diff --git a/crates/libs/bindgen/default/Windows.Wdk.winmd b/crates/libs/bindgen/default/Windows.Wdk.winmd index eba971d094..d006fdba8c 100644 Binary files a/crates/libs/bindgen/default/Windows.Wdk.winmd and b/crates/libs/bindgen/default/Windows.Wdk.winmd differ diff --git a/crates/libs/bindgen/default/Windows.Win32.winmd b/crates/libs/bindgen/default/Windows.Win32.winmd index 040025f3e9..36f99f91b6 100644 Binary files a/crates/libs/bindgen/default/Windows.Win32.winmd and b/crates/libs/bindgen/default/Windows.Win32.winmd differ diff --git a/crates/libs/bindgen/default/readme.md b/crates/libs/bindgen/default/readme.md index 08b58afca9..81f243032e 100644 --- a/crates/libs/bindgen/default/readme.md +++ b/crates/libs/bindgen/default/readme.md @@ -5,12 +5,12 @@ like [ILSpy](https://github.com/icsharpcode/ILSpy). ## `Windows.Win32.winmd` - Source: -- Version: `58.0.18` +- Version: `61.0.15` ## `Windows.Wdk.winmd` - Source: -- Version: `0.10.7` +- Version: `0.12.8` ## `Windows.winmd` diff --git a/crates/libs/bindgen/src/rust/handles.rs b/crates/libs/bindgen/src/rust/handles.rs index 4724f125e5..c74a71f33e 100644 --- a/crates/libs/bindgen/src/rust/handles.rs +++ b/crates/libs/bindgen/src/rust/handles.rs @@ -11,17 +11,10 @@ pub fn writer(writer: &Writer, def: metadata::TypeDef) -> TokenStream { pub fn gen_sys_handle(writer: &Writer, def: metadata::TypeDef) -> TokenStream { let ident = to_ident(def.name()); - match def.underlying_type() { - metadata::Type::ISize if writer.std => quote! { - pub type #ident = *mut core::ffi::c_void; - }, - underlying_type => { - let signature = writer.type_default_name(&underlying_type); + let signature = writer.type_default_name(&def.underlying_type()); - quote! { - pub type #ident = #signature; - } - } + quote! { + pub type #ident = #signature; } } @@ -84,6 +77,7 @@ pub fn gen_win_handle(writer: &Writer, def: metadata::TypeDef) -> TokenStream { quote! { impl windows_core::Free for #ident { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { #result #name(*self #tail); diff --git a/crates/libs/core/src/imp/bindings.rs b/crates/libs/core/src/imp/bindings.rs index 0492583977..b03b763bd9 100644 --- a/crates/libs/core/src/imp/bindings.rs +++ b/crates/libs/core/src/imp/bindings.rs @@ -216,7 +216,7 @@ pub struct CLIPDATA { pub ulClipFmt: i32, pub pClipData: *mut u8, } -pub type CO_MTA_USAGE_COOKIE = isize; +pub type CO_MTA_USAGE_COOKIE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub union CY { @@ -339,9 +339,9 @@ impl GUID { } } } -pub type HANDLE = isize; +pub type HANDLE = *mut core::ffi::c_void; pub type HEAP_FLAGS = u32; -pub type HMODULE = isize; +pub type HMODULE = *mut core::ffi::c_void; pub type HRESULT = i32; #[repr(C)] #[derive(Clone, Copy)] diff --git a/crates/libs/core/src/imp/delay_load.rs b/crates/libs/core/src/imp/delay_load.rs index e9e81ae308..27c85dab13 100644 --- a/crates/libs/core/src/imp/delay_load.rs +++ b/crates/libs/core/src/imp/delay_load.rs @@ -8,9 +8,13 @@ use super::*; /// /// * Both the library and function names must be valid null-terminated strings. pub unsafe fn delay_load(library: crate::PCSTR, function: crate::PCSTR) -> Option { - let library = LoadLibraryExA(library.0, 0, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS); + let library = LoadLibraryExA( + library.0, + core::ptr::null_mut(), + LOAD_LIBRARY_SEARCH_DEFAULT_DIRS, + ); - if library == 0 { + if library.is_null() { return None; } diff --git a/crates/libs/core/src/imp/factory_cache.rs b/crates/libs/core/src/imp/factory_cache.rs index a6888291a0..e2b03d0b79 100644 --- a/crates/libs/core/src/imp/factory_cache.rs +++ b/crates/libs/core/src/imp/factory_cache.rs @@ -88,7 +88,7 @@ pub fn factory() -> crate::Result { // If RoGetActivationFactory fails because combase hasn't been loaded yet then load combase // automatically so that it "just works" for apartment-agnostic code. if code == CO_E_NOTINITIALIZED { - let mut cookie = 0; + let mut cookie = core::ptr::null_mut(); CoIncrementMTAUsage(&mut cookie); // Now try a second time to get the activation factory via the OS. diff --git a/crates/libs/core/src/imp/waiter.rs b/crates/libs/core/src/imp/waiter.rs index de36ed4eec..67c9e2c1b6 100644 --- a/crates/libs/core/src/imp/waiter.rs +++ b/crates/libs/core/src/imp/waiter.rs @@ -10,7 +10,7 @@ impl Waiter { pub fn new() -> crate::Result<(Waiter, WaiterSignaler)> { unsafe { let handle = CreateEventW(core::ptr::null(), 1, 0, core::ptr::null()); - if handle == 0 { + if handle.is_null() { Err(crate::Error::from_win32()) } else { Ok((Waiter(handle), WaiterSignaler(handle))) diff --git a/crates/libs/registry/Cargo.toml b/crates/libs/registry/Cargo.toml index 37bdaee963..3ca2174d38 100644 --- a/crates/libs/registry/Cargo.toml +++ b/crates/libs/registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-registry" -version = "0.1.2" +version = "0.2.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" diff --git a/crates/libs/registry/src/bindings.rs b/crates/libs/registry/src/bindings.rs index 076dc7c6e2..0e52bd79b3 100644 --- a/crates/libs/registry/src/bindings.rs +++ b/crates/libs/registry/src/bindings.rs @@ -28,9 +28,9 @@ pub struct FILETIME { pub dwLowDateTime: u32, pub dwHighDateTime: u32, } -pub type HANDLE = isize; +pub type HANDLE = *mut core::ffi::c_void; pub type HEAP_FLAGS = u32; -pub type HKEY = isize; +pub type HKEY = *mut core::ffi::c_void; pub const HKEY_CLASSES_ROOT: HKEY = -2147483648i32 as _; pub const HKEY_CURRENT_CONFIG: HKEY = -2147483643i32 as _; pub const HKEY_CURRENT_USER: HKEY = -2147483647i32 as _; diff --git a/crates/libs/registry/src/key.rs b/crates/libs/registry/src/key.rs index d62e24a05e..4b0076fca8 100644 --- a/crates/libs/registry/src/key.rs +++ b/crates/libs/registry/src/key.rs @@ -3,13 +3,19 @@ use core::ptr::{null, null_mut}; /// A registry key. #[repr(transparent)] -#[derive(Default, Debug)] +#[derive(Debug)] pub struct Key(pub(crate) HKEY); +impl Default for Key { + fn default() -> Self { + Self(core::ptr::null_mut()) + } +} + impl Key { /// Creates a registry key. If the key already exists, the function opens it. pub fn create>(&self, path: T) -> Result { - let mut handle = 0; + let mut handle = core::ptr::null_mut(); let result = unsafe { RegCreateKeyExW( @@ -30,7 +36,7 @@ impl Key { /// Opens a registry key. pub fn open>(&self, path: T) -> Result { - let mut handle = 0; + let mut handle = core::ptr::null_mut(); let result = unsafe { RegOpenKeyExW(self.0, pcwstr(path).as_ptr(), 0, KEY_READ, &mut handle) }; @@ -44,12 +50,12 @@ impl Key { /// /// This function takes ownership of the handle. /// The handle must be owned by the caller and safe to free with `RegCloseKey`. - pub unsafe fn from_raw(handle: isize) -> Self { + pub unsafe fn from_raw(handle: *mut core::ffi::c_void) -> Self { Self(handle) } /// Returns the underlying registry key handle. - pub fn as_raw(&self) -> isize { + pub fn as_raw(&self) -> *mut core::ffi::c_void { self.0 } diff --git a/crates/libs/result/src/bindings.rs b/crates/libs/result/src/bindings.rs index e7b0d64bfc..6836443f37 100644 --- a/crates/libs/result/src/bindings.rs +++ b/crates/libs/result/src/bindings.rs @@ -44,9 +44,9 @@ impl GUID { } } } -pub type HANDLE = isize; +pub type HANDLE = *mut core::ffi::c_void; pub type HEAP_FLAGS = u32; -pub type HMODULE = isize; +pub type HMODULE = *mut core::ffi::c_void; pub type HRESULT = i32; pub const IID_IErrorInfo: GUID = GUID::from_u128(0x1cf2b120_547d_101b_8e65_08002b2bd119); #[repr(C)] diff --git a/crates/libs/result/src/hresult.rs b/crates/libs/result/src/hresult.rs index f881bc6cf2..48304abc80 100644 --- a/crates/libs/result/src/hresult.rs +++ b/crates/libs/result/src/hresult.rs @@ -68,7 +68,7 @@ impl HRESULT { { let mut message = HeapString::default(); let mut code = self.0; - let mut module = 0; + let mut module = core::ptr::null_mut(); let mut flags = FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM @@ -81,7 +81,7 @@ impl HRESULT { module = LoadLibraryExA( b"ntdll.dll\0".as_ptr(), - 0, + core::ptr::null_mut(), LOAD_LIBRARY_SEARCH_DEFAULT_DIRS, ); } diff --git a/crates/libs/sys/Cargo.toml b/crates/libs/sys/Cargo.toml index 768513a4a0..8f67ab37ab 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -29,6 +29,7 @@ docs = [] # generated features Wdk = ["Win32_Foundation"] Wdk_Devices = ["Wdk"] +Wdk_Devices_Bluetooth = ["Wdk_Devices"] Wdk_Devices_HumanInterfaceDevice = ["Wdk_Devices"] Wdk_Foundation = ["Wdk"] Wdk_Graphics = ["Wdk"] @@ -41,6 +42,7 @@ Wdk_Storage_FileSystem = ["Wdk_Storage"] Wdk_Storage_FileSystem_Minifilters = ["Wdk_Storage_FileSystem"] Wdk_System = ["Wdk"] Wdk_System_IO = ["Wdk_System"] +Wdk_System_Memory = ["Wdk_System"] Wdk_System_OfflineRegistry = ["Wdk_System"] Wdk_System_Registry = ["Wdk_System"] Wdk_System_SystemInformation = ["Wdk_System"] diff --git a/crates/libs/sys/features.json b/crates/libs/sys/features.json index 7c4d9da228..bab0430aa3 100644 --- a/crates/libs/sys/features.json +++ b/crates/libs/sys/features.json @@ -1 +1 @@ -{"namespace_map":["Windows.AI.MachineLearning","Windows.AI.MachineLearning.Preview","Windows.ApplicationModel","Windows.ApplicationModel.Activation","Windows.ApplicationModel.AppExtensions","Windows.ApplicationModel.AppService","Windows.ApplicationModel.Appointments","Windows.ApplicationModel.Appointments.AppointmentsProvider","Windows.ApplicationModel.Appointments.DataProvider","Windows.ApplicationModel.Background","Windows.ApplicationModel.Calls","Windows.ApplicationModel.Calls.Background","Windows.ApplicationModel.Calls.Provider","Windows.ApplicationModel.Chat","Windows.ApplicationModel.CommunicationBlocking","Windows.ApplicationModel.Contacts","Windows.ApplicationModel.Contacts.DataProvider","Windows.ApplicationModel.Contacts.Provider","Windows.ApplicationModel.ConversationalAgent","Windows.ApplicationModel.Core","Windows.ApplicationModel.DataTransfer","Windows.ApplicationModel.DataTransfer.DragDrop","Windows.ApplicationModel.DataTransfer.DragDrop.Core","Windows.ApplicationModel.DataTransfer.ShareTarget","Windows.ApplicationModel.Email","Windows.ApplicationModel.Email.DataProvider","Windows.ApplicationModel.ExtendedExecution","Windows.ApplicationModel.ExtendedExecution.Foreground","Windows.ApplicationModel.Holographic","Windows.ApplicationModel.LockScreen","Windows.ApplicationModel.Payments","Windows.ApplicationModel.Payments.Provider","Windows.ApplicationModel.Preview.Holographic","Windows.ApplicationModel.Preview.InkWorkspace","Windows.ApplicationModel.Preview.Notes","Windows.ApplicationModel.Resources","Windows.ApplicationModel.Resources.Core","Windows.ApplicationModel.Resources.Management","Windows.ApplicationModel.Search","Windows.ApplicationModel.Search.Core","Windows.ApplicationModel.SocialInfo","Windows.ApplicationModel.SocialInfo.Provider","Windows.ApplicationModel.Store","Windows.ApplicationModel.Store.LicenseManagement","Windows.ApplicationModel.Store.Preview","Windows.ApplicationModel.Store.Preview.InstallControl","Windows.ApplicationModel.UserActivities","Windows.ApplicationModel.UserActivities.Core","Windows.ApplicationModel.UserDataAccounts","Windows.ApplicationModel.UserDataAccounts.Provider","Windows.ApplicationModel.UserDataAccounts.SystemAccess","Windows.ApplicationModel.UserDataTasks","Windows.ApplicationModel.UserDataTasks.DataProvider","Windows.ApplicationModel.VoiceCommands","Windows.ApplicationModel.Wallet","Windows.ApplicationModel.Wallet.System","Windows.Data.Html","Windows.Data.Json","Windows.Data.Pdf","Windows.Data.Text","Windows.Data.Xml.Dom","Windows.Data.Xml.Xsl","Windows.Devices","Windows.Devices.Adc","Windows.Devices.Adc.Provider","Windows.Devices.AllJoyn","Windows.Devices.Background","Windows.Devices.Bluetooth","Windows.Devices.Bluetooth.Advertisement","Windows.Devices.Bluetooth.Background","Windows.Devices.Bluetooth.GenericAttributeProfile","Windows.Devices.Bluetooth.Rfcomm","Windows.Devices.Custom","Windows.Devices.Display","Windows.Devices.Display.Core","Windows.Devices.Enumeration","Windows.Devices.Enumeration.Pnp","Windows.Devices.Geolocation","Windows.Devices.Geolocation.Geofencing","Windows.Devices.Geolocation.Provider","Windows.Devices.Gpio","Windows.Devices.Gpio.Provider","Windows.Devices.Haptics","Windows.Devices.HumanInterfaceDevice","Windows.Devices.I2c","Windows.Devices.I2c.Provider","Windows.Devices.Input","Windows.Devices.Input.Preview","Windows.Devices.Lights","Windows.Devices.Lights.Effects","Windows.Devices.Midi","Windows.Devices.Perception","Windows.Devices.Perception.Provider","Windows.Devices.PointOfService","Windows.Devices.PointOfService.Provider","Windows.Devices.Portable","Windows.Devices.Power","Windows.Devices.Printers","Windows.Devices.Printers.Extensions","Windows.Devices.Pwm","Windows.Devices.Pwm.Provider","Windows.Devices.Radios","Windows.Devices.Scanners","Windows.Devices.Sensors","Windows.Devices.Sensors.Custom","Windows.Devices.SerialCommunication","Windows.Devices.SmartCards","Windows.Devices.Sms","Windows.Devices.Spi","Windows.Devices.Spi.Provider","Windows.Devices.Usb","Windows.Devices.WiFi","Windows.Devices.WiFiDirect","Windows.Devices.WiFiDirect.Services","Windows.Embedded.DeviceLockdown","Windows.Foundation","Windows.Foundation.Collections","Windows.Foundation.Diagnostics","Windows.Foundation.Metadata","Windows.Foundation.Numerics","Windows.Gaming.Input","Windows.Gaming.Input.Custom","Windows.Gaming.Input.ForceFeedback","Windows.Gaming.Input.Preview","Windows.Gaming.Preview","Windows.Gaming.Preview.GamesEnumeration","Windows.Gaming.UI","Windows.Gaming.XboxLive","Windows.Gaming.XboxLive.Storage","Windows.Globalization","Windows.Globalization.Collation","Windows.Globalization.DateTimeFormatting","Windows.Globalization.Fonts","Windows.Globalization.NumberFormatting","Windows.Globalization.PhoneNumberFormatting","Windows.Graphics","Windows.Graphics.Capture","Windows.Graphics.DirectX","Windows.Graphics.DirectX.Direct3D11","Windows.Graphics.Display","Windows.Graphics.Display.Core","Windows.Graphics.Effects","Windows.Graphics.Holographic","Windows.Graphics.Imaging","Windows.Graphics.Printing","Windows.Graphics.Printing.OptionDetails","Windows.Graphics.Printing.PrintSupport","Windows.Graphics.Printing.PrintTicket","Windows.Graphics.Printing.Workflow","Windows.Graphics.Printing3D","Windows.Management","Windows.Management.Core","Windows.Management.Deployment","Windows.Management.Deployment.Preview","Windows.Management.Policies","Windows.Management.Update","Windows.Management.Workplace","Windows.Media","Windows.Media.AppBroadcasting","Windows.Media.AppRecording","Windows.Media.Audio","Windows.Media.Capture","Windows.Media.Capture.Core","Windows.Media.Capture.Frames","Windows.Media.Casting","Windows.Media.ClosedCaptioning","Windows.Media.ContentRestrictions","Windows.Media.Control","Windows.Media.Core","Windows.Media.Core.Preview","Windows.Media.Devices","Windows.Media.Devices.Core","Windows.Media.DialProtocol","Windows.Media.Editing","Windows.Media.Effects","Windows.Media.FaceAnalysis","Windows.Media.Import","Windows.Media.MediaProperties","Windows.Media.Miracast","Windows.Media.Ocr","Windows.Media.PlayTo","Windows.Media.Playback","Windows.Media.Playlists","Windows.Media.Protection","Windows.Media.Protection.PlayReady","Windows.Media.Render","Windows.Media.SpeechRecognition","Windows.Media.SpeechSynthesis","Windows.Media.Streaming.Adaptive","Windows.Media.Transcoding","Windows.Networking","Windows.Networking.BackgroundTransfer","Windows.Networking.Connectivity","Windows.Networking.NetworkOperators","Windows.Networking.Proximity","Windows.Networking.PushNotifications","Windows.Networking.ServiceDiscovery.Dnssd","Windows.Networking.Sockets","Windows.Networking.Vpn","Windows.Networking.XboxLive","Windows.Perception","Windows.Perception.Automation.Core","Windows.Perception.People","Windows.Perception.Spatial","Windows.Perception.Spatial.Preview","Windows.Perception.Spatial.Surfaces","Windows.Phone","Windows.Phone.ApplicationModel","Windows.Phone.Devices.Notification","Windows.Phone.Devices.Power","Windows.Phone.Management.Deployment","Windows.Phone.Media.Devices","Windows.Phone.Notification.Management","Windows.Phone.PersonalInformation","Windows.Phone.PersonalInformation.Provisioning","Windows.Phone.Speech.Recognition","Windows.Phone.StartScreen","Windows.Phone.System","Windows.Phone.System.Power","Windows.Phone.System.Profile","Windows.Phone.System.UserProfile.GameServices.Core","Windows.Phone.UI.Input","Windows.Security.Authentication.Identity","Windows.Security.Authentication.Identity.Core","Windows.Security.Authentication.Identity.Provider","Windows.Security.Authentication.OnlineId","Windows.Security.Authentication.Web","Windows.Security.Authentication.Web.Core","Windows.Security.Authentication.Web.Provider","Windows.Security.Authorization.AppCapabilityAccess","Windows.Security.Credentials","Windows.Security.Credentials.UI","Windows.Security.Cryptography","Windows.Security.Cryptography.Certificates","Windows.Security.Cryptography.Core","Windows.Security.Cryptography.DataProtection","Windows.Security.DataProtection","Windows.Security.EnterpriseData","Windows.Security.ExchangeActiveSyncProvisioning","Windows.Security.Isolation","Windows.Services.Cortana","Windows.Services.Maps","Windows.Services.Maps.Guidance","Windows.Services.Maps.LocalSearch","Windows.Services.Maps.OfflineMaps","Windows.Services.Store","Windows.Services.TargetedContent","Windows.Storage","Windows.Storage.AccessCache","Windows.Storage.BulkAccess","Windows.Storage.Compression","Windows.Storage.FileProperties","Windows.Storage.Pickers","Windows.Storage.Pickers.Provider","Windows.Storage.Provider","Windows.Storage.Search","Windows.Storage.Streams","Windows.System","Windows.System.Diagnostics","Windows.System.Diagnostics.DevicePortal","Windows.System.Diagnostics.Telemetry","Windows.System.Diagnostics.TraceReporting","Windows.System.Display","Windows.System.Implementation.FileExplorer","Windows.System.Inventory","Windows.System.Power","Windows.System.Power.Diagnostics","Windows.System.Preview","Windows.System.Profile","Windows.System.Profile.SystemManufacturers","Windows.System.RemoteDesktop","Windows.System.RemoteDesktop.Input","Windows.System.RemoteDesktop.Provider","Windows.System.RemoteSystems","Windows.System.Threading","Windows.System.Threading.Core","Windows.System.Update","Windows.System.UserProfile","Windows.UI","Windows.UI.Accessibility","Windows.UI.ApplicationSettings","Windows.UI.Composition","Windows.UI.Composition.Core","Windows.UI.Composition.Desktop","Windows.UI.Composition.Diagnostics","Windows.UI.Composition.Effects","Windows.UI.Composition.Interactions","Windows.UI.Composition.Scenes","Windows.UI.Core","Windows.UI.Core.AnimationMetrics","Windows.UI.Core.Preview","Windows.UI.Input","Windows.UI.Input.Core","Windows.UI.Input.Inking","Windows.UI.Input.Inking.Analysis","Windows.UI.Input.Inking.Core","Windows.UI.Input.Inking.Preview","Windows.UI.Input.Preview","Windows.UI.Input.Preview.Injection","Windows.UI.Input.Spatial","Windows.UI.Notifications","Windows.UI.Notifications.Management","Windows.UI.Notifications.Preview","Windows.UI.Popups","Windows.UI.Shell","Windows.UI.StartScreen","Windows.UI.Text","Windows.UI.Text.Core","Windows.UI.UIAutomation","Windows.UI.UIAutomation.Core","Windows.UI.ViewManagement","Windows.UI.ViewManagement.Core","Windows.UI.WebUI","Windows.UI.WebUI.Core","Windows.UI.WindowManagement","Windows.UI.WindowManagement.Preview","Windows.UI.Xaml","Windows.UI.Xaml.Automation","Windows.UI.Xaml.Automation.Peers","Windows.UI.Xaml.Automation.Provider","Windows.UI.Xaml.Automation.Text","Windows.UI.Xaml.Controls","Windows.UI.Xaml.Controls.Maps","Windows.UI.Xaml.Controls.Primitives","Windows.UI.Xaml.Core.Direct","Windows.UI.Xaml.Data","Windows.UI.Xaml.Documents","Windows.UI.Xaml.Hosting","Windows.UI.Xaml.Input","Windows.UI.Xaml.Interop","Windows.UI.Xaml.Markup","Windows.UI.Xaml.Media","Windows.UI.Xaml.Media.Animation","Windows.UI.Xaml.Media.Imaging","Windows.UI.Xaml.Media.Media3D","Windows.UI.Xaml.Navigation","Windows.UI.Xaml.Printing","Windows.UI.Xaml.Resources","Windows.UI.Xaml.Shapes","Windows.Wdk.Devices.HumanInterfaceDevice","Windows.Wdk.Foundation","Windows.Wdk.Graphics.Direct3D","Windows.Wdk.NetworkManagement.Ndis","Windows.Wdk.NetworkManagement.WindowsFilteringPlatform","Windows.Wdk.Storage.FileSystem","Windows.Wdk.Storage.FileSystem.Minifilters","Windows.Wdk.System.IO","Windows.Wdk.System.OfflineRegistry","Windows.Wdk.System.Registry","Windows.Wdk.System.SystemInformation","Windows.Wdk.System.SystemServices","Windows.Wdk.System.Threading","Windows.Web","Windows.Web.AtomPub","Windows.Web.Http","Windows.Web.Http.Diagnostics","Windows.Web.Http.Filters","Windows.Web.Http.Headers","Windows.Web.Syndication","Windows.Web.UI","Windows.Web.UI.Interop","Windows.Win32.AI.MachineLearning.DirectML","Windows.Win32.AI.MachineLearning.WinML","Windows.Win32.Data.HtmlHelp","Windows.Win32.Data.RightsManagement","Windows.Win32.Data.Xml.MsXml","Windows.Win32.Data.Xml.XmlLite","Windows.Win32.Devices.AllJoyn","Windows.Win32.Devices.BiometricFramework","Windows.Win32.Devices.Bluetooth","Windows.Win32.Devices.Communication","Windows.Win32.Devices.DeviceAccess","Windows.Win32.Devices.DeviceAndDriverInstallation","Windows.Win32.Devices.DeviceQuery","Windows.Win32.Devices.Display","Windows.Win32.Devices.Enumeration.Pnp","Windows.Win32.Devices.Fax","Windows.Win32.Devices.FunctionDiscovery","Windows.Win32.Devices.Geolocation","Windows.Win32.Devices.HumanInterfaceDevice","Windows.Win32.Devices.ImageAcquisition","Windows.Win32.Devices.PortableDevices","Windows.Win32.Devices.Properties","Windows.Win32.Devices.Pwm","Windows.Win32.Devices.Sensors","Windows.Win32.Devices.SerialCommunication","Windows.Win32.Devices.Tapi","Windows.Win32.Devices.Usb","Windows.Win32.Devices.WebServicesOnDevices","Windows.Win32.Foundation","Windows.Win32.Foundation.Metadata","Windows.Win32.Gaming","Windows.Win32.Globalization","Windows.Win32.Graphics.CompositionSwapchain","Windows.Win32.Graphics.DXCore","Windows.Win32.Graphics.Direct2D","Windows.Win32.Graphics.Direct2D.Common","Windows.Win32.Graphics.Direct3D","Windows.Win32.Graphics.Direct3D.Dxc","Windows.Win32.Graphics.Direct3D.Fxc","Windows.Win32.Graphics.Direct3D10","Windows.Win32.Graphics.Direct3D11","Windows.Win32.Graphics.Direct3D11on12","Windows.Win32.Graphics.Direct3D12","Windows.Win32.Graphics.Direct3D9","Windows.Win32.Graphics.Direct3D9on12","Windows.Win32.Graphics.DirectComposition","Windows.Win32.Graphics.DirectDraw","Windows.Win32.Graphics.DirectManipulation","Windows.Win32.Graphics.DirectWrite","Windows.Win32.Graphics.Dwm","Windows.Win32.Graphics.Dxgi","Windows.Win32.Graphics.Dxgi.Common","Windows.Win32.Graphics.Gdi","Windows.Win32.Graphics.GdiPlus","Windows.Win32.Graphics.Hlsl","Windows.Win32.Graphics.Imaging","Windows.Win32.Graphics.Imaging.D2D","Windows.Win32.Graphics.OpenGL","Windows.Win32.Graphics.Printing","Windows.Win32.Graphics.Printing.PrintTicket","Windows.Win32.Management.MobileDeviceManagementRegistration","Windows.Win32.Media","Windows.Win32.Media.Audio","Windows.Win32.Media.Audio.Apo","Windows.Win32.Media.Audio.DirectMusic","Windows.Win32.Media.Audio.DirectSound","Windows.Win32.Media.Audio.Endpoints","Windows.Win32.Media.Audio.XAudio2","Windows.Win32.Media.DeviceManager","Windows.Win32.Media.DirectShow","Windows.Win32.Media.DirectShow.Tv","Windows.Win32.Media.DirectShow.Xml","Windows.Win32.Media.DxMediaObjects","Windows.Win32.Media.KernelStreaming","Windows.Win32.Media.LibrarySharingServices","Windows.Win32.Media.MediaFoundation","Windows.Win32.Media.MediaPlayer","Windows.Win32.Media.Multimedia","Windows.Win32.Media.PictureAcquisition","Windows.Win32.Media.Speech","Windows.Win32.Media.Streaming","Windows.Win32.Media.WindowsMediaFormat","Windows.Win32.NetworkManagement.Dhcp","Windows.Win32.NetworkManagement.Dns","Windows.Win32.NetworkManagement.InternetConnectionWizard","Windows.Win32.NetworkManagement.IpHelper","Windows.Win32.NetworkManagement.MobileBroadband","Windows.Win32.NetworkManagement.Multicast","Windows.Win32.NetworkManagement.Ndis","Windows.Win32.NetworkManagement.NetBios","Windows.Win32.NetworkManagement.NetManagement","Windows.Win32.NetworkManagement.NetShell","Windows.Win32.NetworkManagement.NetworkDiagnosticsFramework","Windows.Win32.NetworkManagement.NetworkPolicyServer","Windows.Win32.NetworkManagement.P2P","Windows.Win32.NetworkManagement.QoS","Windows.Win32.NetworkManagement.Rras","Windows.Win32.NetworkManagement.Snmp","Windows.Win32.NetworkManagement.WNet","Windows.Win32.NetworkManagement.WebDav","Windows.Win32.NetworkManagement.WiFi","Windows.Win32.NetworkManagement.WindowsConnectNow","Windows.Win32.NetworkManagement.WindowsConnectionManager","Windows.Win32.NetworkManagement.WindowsFilteringPlatform","Windows.Win32.NetworkManagement.WindowsFirewall","Windows.Win32.NetworkManagement.WindowsNetworkVirtualization","Windows.Win32.Networking.ActiveDirectory","Windows.Win32.Networking.BackgroundIntelligentTransferService","Windows.Win32.Networking.Clustering","Windows.Win32.Networking.HttpServer","Windows.Win32.Networking.Ldap","Windows.Win32.Networking.NetworkListManager","Windows.Win32.Networking.RemoteDifferentialCompression","Windows.Win32.Networking.WebSocket","Windows.Win32.Networking.WinHttp","Windows.Win32.Networking.WinInet","Windows.Win32.Networking.WinSock","Windows.Win32.Networking.WindowsWebServices","Windows.Win32.Security","Windows.Win32.Security.AppLocker","Windows.Win32.Security.Authentication.Identity","Windows.Win32.Security.Authentication.Identity.Provider","Windows.Win32.Security.Authorization","Windows.Win32.Security.Authorization.UI","Windows.Win32.Security.ConfigurationSnapin","Windows.Win32.Security.Credentials","Windows.Win32.Security.Cryptography","Windows.Win32.Security.Cryptography.Catalog","Windows.Win32.Security.Cryptography.Certificates","Windows.Win32.Security.Cryptography.Sip","Windows.Win32.Security.Cryptography.UI","Windows.Win32.Security.DiagnosticDataQuery","Windows.Win32.Security.DirectoryServices","Windows.Win32.Security.EnterpriseData","Windows.Win32.Security.ExtensibleAuthenticationProtocol","Windows.Win32.Security.Isolation","Windows.Win32.Security.LicenseProtection","Windows.Win32.Security.NetworkAccessProtection","Windows.Win32.Security.Tpm","Windows.Win32.Security.WinTrust","Windows.Win32.Security.WinWlx","Windows.Win32.Storage.Cabinets","Windows.Win32.Storage.CloudFilters","Windows.Win32.Storage.Compression","Windows.Win32.Storage.DataDeduplication","Windows.Win32.Storage.DistributedFileSystem","Windows.Win32.Storage.EnhancedStorage","Windows.Win32.Storage.FileHistory","Windows.Win32.Storage.FileServerResourceManager","Windows.Win32.Storage.FileSystem","Windows.Win32.Storage.Imapi","Windows.Win32.Storage.IndexServer","Windows.Win32.Storage.InstallableFileSystems","Windows.Win32.Storage.IscsiDisc","Windows.Win32.Storage.Jet","Windows.Win32.Storage.Nvme","Windows.Win32.Storage.OfflineFiles","Windows.Win32.Storage.OperationRecorder","Windows.Win32.Storage.Packaging.Appx","Windows.Win32.Storage.Packaging.Opc","Windows.Win32.Storage.ProjectedFileSystem","Windows.Win32.Storage.StructuredStorage","Windows.Win32.Storage.Vhd","Windows.Win32.Storage.VirtualDiskService","Windows.Win32.Storage.Vss","Windows.Win32.Storage.Xps","Windows.Win32.Storage.Xps.Printing","Windows.Win32.System.AddressBook","Windows.Win32.System.Antimalware","Windows.Win32.System.ApplicationInstallationAndServicing","Windows.Win32.System.ApplicationVerifier","Windows.Win32.System.AssessmentTool","Windows.Win32.System.ClrHosting","Windows.Win32.System.Com","Windows.Win32.System.Com.CallObj","Windows.Win32.System.Com.ChannelCredentials","Windows.Win32.System.Com.Events","Windows.Win32.System.Com.Marshal","Windows.Win32.System.Com.StructuredStorage","Windows.Win32.System.Com.UI","Windows.Win32.System.Com.Urlmon","Windows.Win32.System.ComponentServices","Windows.Win32.System.Console","Windows.Win32.System.Contacts","Windows.Win32.System.CorrelationVector","Windows.Win32.System.DataExchange","Windows.Win32.System.DeploymentServices","Windows.Win32.System.DesktopSharing","Windows.Win32.System.DeveloperLicensing","Windows.Win32.System.Diagnostics.Ceip","Windows.Win32.System.Diagnostics.ClrProfiling","Windows.Win32.System.Diagnostics.Debug","Windows.Win32.System.Diagnostics.Debug.ActiveScript","Windows.Win32.System.Diagnostics.Debug.Extensions","Windows.Win32.System.Diagnostics.Debug.WebApp","Windows.Win32.System.Diagnostics.Etw","Windows.Win32.System.Diagnostics.ProcessSnapshotting","Windows.Win32.System.Diagnostics.ToolHelp","Windows.Win32.System.Diagnostics.TraceLogging","Windows.Win32.System.DistributedTransactionCoordinator","Windows.Win32.System.Environment","Windows.Win32.System.ErrorReporting","Windows.Win32.System.EventCollector","Windows.Win32.System.EventLog","Windows.Win32.System.EventNotificationService","Windows.Win32.System.GroupPolicy","Windows.Win32.System.HostCompute","Windows.Win32.System.HostComputeNetwork","Windows.Win32.System.HostComputeSystem","Windows.Win32.System.Hypervisor","Windows.Win32.System.IO","Windows.Win32.System.Iis","Windows.Win32.System.Ioctl","Windows.Win32.System.JobObjects","Windows.Win32.System.Js","Windows.Win32.System.Kernel","Windows.Win32.System.LibraryLoader","Windows.Win32.System.Mailslots","Windows.Win32.System.Mapi","Windows.Win32.System.Memory","Windows.Win32.System.Memory.NonVolatile","Windows.Win32.System.MessageQueuing","Windows.Win32.System.MixedReality","Windows.Win32.System.Mmc","Windows.Win32.System.Ole","Windows.Win32.System.ParentalControls","Windows.Win32.System.PasswordManagement","Windows.Win32.System.Performance","Windows.Win32.System.Performance.HardwareCounterProfiling","Windows.Win32.System.Pipes","Windows.Win32.System.Power","Windows.Win32.System.ProcessStatus","Windows.Win32.System.RealTimeCommunications","Windows.Win32.System.Recovery","Windows.Win32.System.Registry","Windows.Win32.System.RemoteAssistance","Windows.Win32.System.RemoteDesktop","Windows.Win32.System.RemoteManagement","Windows.Win32.System.RestartManager","Windows.Win32.System.Restore","Windows.Win32.System.Rpc","Windows.Win32.System.Search","Windows.Win32.System.Search.Common","Windows.Win32.System.SecurityCenter","Windows.Win32.System.ServerBackup","Windows.Win32.System.Services","Windows.Win32.System.SettingsManagementInfrastructure","Windows.Win32.System.SetupAndMigration","Windows.Win32.System.Shutdown","Windows.Win32.System.SideShow","Windows.Win32.System.StationsAndDesktops","Windows.Win32.System.SubsystemForLinux","Windows.Win32.System.SystemInformation","Windows.Win32.System.SystemServices","Windows.Win32.System.TaskScheduler","Windows.Win32.System.Threading","Windows.Win32.System.Time","Windows.Win32.System.TpmBaseServices","Windows.Win32.System.TransactionServer","Windows.Win32.System.UpdateAgent","Windows.Win32.System.UpdateAssessment","Windows.Win32.System.UserAccessLogging","Windows.Win32.System.Variant","Windows.Win32.System.VirtualDosMachines","Windows.Win32.System.WinRT","Windows.Win32.System.WinRT.AllJoyn","Windows.Win32.System.WinRT.Composition","Windows.Win32.System.WinRT.CoreInputView","Windows.Win32.System.WinRT.Direct3D11","Windows.Win32.System.WinRT.Display","Windows.Win32.System.WinRT.Graphics.Capture","Windows.Win32.System.WinRT.Graphics.Direct2D","Windows.Win32.System.WinRT.Graphics.Imaging","Windows.Win32.System.WinRT.Holographic","Windows.Win32.System.WinRT.Isolation","Windows.Win32.System.WinRT.ML","Windows.Win32.System.WinRT.Media","Windows.Win32.System.WinRT.Metadata","Windows.Win32.System.WinRT.Pdf","Windows.Win32.System.WinRT.Printing","Windows.Win32.System.WinRT.Shell","Windows.Win32.System.WinRT.Storage","Windows.Win32.System.WinRT.Xaml","Windows.Win32.System.WindowsProgramming","Windows.Win32.System.WindowsSync","Windows.Win32.System.Wmi","Windows.Win32.UI.Accessibility","Windows.Win32.UI.Animation","Windows.Win32.UI.ColorSystem","Windows.Win32.UI.Controls","Windows.Win32.UI.Controls.Dialogs","Windows.Win32.UI.Controls.RichEdit","Windows.Win32.UI.HiDpi","Windows.Win32.UI.Input","Windows.Win32.UI.Input.Ime","Windows.Win32.UI.Input.Ink","Windows.Win32.UI.Input.KeyboardAndMouse","Windows.Win32.UI.Input.Pointer","Windows.Win32.UI.Input.Radial","Windows.Win32.UI.Input.Touch","Windows.Win32.UI.Input.XboxController","Windows.Win32.UI.InteractionContext","Windows.Win32.UI.LegacyWindowsEnvironmentFeatures","Windows.Win32.UI.Magnification","Windows.Win32.UI.Notifications","Windows.Win32.UI.Ribbon","Windows.Win32.UI.Shell","Windows.Win32.UI.Shell.Common","Windows.Win32.UI.Shell.PropertiesSystem","Windows.Win32.UI.TabletPC","Windows.Win32.UI.TextServices","Windows.Win32.UI.WindowsAndMessaging","Windows.Win32.UI.Wpf","Windows.Win32.UI.Xaml.Diagnostics","Windows.Win32.Web.InternetExplorer","Windows.Win32.Web.MsHtml"],"feature_map":["Wdk_Devices_HumanInterfaceDevice","Win32_Foundation","Wdk_Foundation","Wdk_System_SystemServices","Win32_Security","Wdk_Storage_FileSystem","Win32_System_IO","Win32_System_Kernel","Win32_System_Power","Wdk_Graphics_Direct3D","Win32_Graphics_Direct3D9","Win32_Graphics_DirectDraw","Win32_Graphics_Gdi","Foundation_Numerics","Wdk_NetworkManagement_Ndis","Win32_Networking_WinSock","Win32_NetworkManagement_Ndis","Wdk_NetworkManagement_WindowsFilteringPlatform","Win32_NetworkManagement_WindowsFilteringPlatform","Win32_System_Rpc","Win32_System_Memory","Win32_Storage_FileSystem","Win32_System_Ioctl","Win32_Security_Authentication_Identity","Wdk_Storage_FileSystem_Minifilters","Win32_Storage_InstallableFileSystems","Wdk_System_IO","Wdk_System_OfflineRegistry","Wdk_System_Registry","Wdk_System_SystemInformation","Win32_System_Diagnostics_Debug","Win32_System_Diagnostics_Etw","Win32_System_SystemInformation","Win32_Storage_IscsiDisc","Win32_System_WindowsProgramming","Win32_Devices_Properties","Win32_System_SystemServices","Win32_System_Threading","Wdk_System_Threading","Win32_Data_HtmlHelp","Win32_UI_Controls","Win32_System_Com","Win32_System_Variant","Win32_Data_RightsManagement","Win32_Devices_AllJoyn","Win32_Devices_BiometricFramework","Win32_Devices_Bluetooth","Win32_Devices_Communication","Win32_Devices_DeviceAndDriverInstallation","Win32_System_Registry","Win32_UI_WindowsAndMessaging","Win32_Devices_DeviceQuery","Win32_Devices_Display","Win32_System_Console","Win32_Graphics_OpenGL","Win32_UI_ColorSystem","Win32_Devices_Enumeration_Pnp","Win32_Devices_Fax","Win32_Devices_HumanInterfaceDevice","Win32_Devices_PortableDevices","Win32_UI_Shell_PropertiesSystem","Win32_Devices_Pwm","Win32_Devices_Sensors","Win32_System_Com_StructuredStorage","Win32_Devices_SerialCommunication","Win32_Devices_Tapi","Win32_Devices_Usb","Win32_Devices_WebServicesOnDevices","Win32_Security_Cryptography","Win32_Gaming","Win32_Globalization","Win32_Graphics_Dwm","Win32_Graphics_GdiPlus","Win32_Graphics_Hlsl","Win32_Graphics_Printing","Win32_Storage_Xps","Win32_Graphics_Printing_PrintTicket","Win32_Management_MobileDeviceManagementRegistration","Win32_Media","Win32_Media_Multimedia","Win32_Media_Audio","Win32_Media_DxMediaObjects","Win32_Media_KernelStreaming","Win32_Media_MediaFoundation","Win32_UI_Controls_Dialogs","Win32_Media_Streaming","Win32_Media_WindowsMediaFormat","Win32_NetworkManagement_Dhcp","Win32_NetworkManagement_Dns","Win32_NetworkManagement_InternetConnectionWizard","Win32_NetworkManagement_IpHelper","Win32_NetworkManagement_Multicast","Win32_NetworkManagement_NetBios","Win32_NetworkManagement_NetManagement","Win32_NetworkManagement_NetShell","Win32_NetworkManagement_NetworkDiagnosticsFramework","Win32_NetworkManagement_P2P","Win32_NetworkManagement_QoS","Win32_NetworkManagement_Rras","Win32_NetworkManagement_Snmp","Win32_NetworkManagement_WNet","Win32_NetworkManagement_WebDav","Win32_NetworkManagement_WiFi","Win32_Security_ExtensibleAuthenticationProtocol","Win32_System_RemoteDesktop","Win32_NetworkManagement_WindowsConnectionManager","Win32_NetworkManagement_WindowsFirewall","Win32_NetworkManagement_WindowsNetworkVirtualization","Win32_Networking_ActiveDirectory","Win32_UI_Shell","Win32_Networking_Clustering","Win32_Networking_HttpServer","Win32_Networking_Ldap","Win32_Networking_WebSocket","Win32_Networking_WinHttp","Win32_Networking_WinInet","Win32_Networking_WindowsWebServices","Win32_Security_AppLocker","Win32_Security_Credentials","Win32_System_PasswordManagement","Win32_Security_Authorization","Win32_Security_Cryptography_Catalog","Win32_Security_Cryptography_Sip","Win32_Security_Cryptography_Certificates","Win32_Security_Cryptography_UI","Win32_Security_WinTrust","Win32_Security_DiagnosticDataQuery","Win32_Security_DirectoryServices","Win32_Security_EnterpriseData","Win32_Storage_Packaging_Appx","Win32_Security_Isolation","Win32_Security_LicenseProtection","Win32_Security_NetworkAccessProtection","Win32_Security_WinWlx","Win32_System_StationsAndDesktops","Win32_Storage_Cabinets","Win32_Storage_CloudFilters","Win32_System_CorrelationVector","Win32_Storage_Compression","Win32_Storage_DistributedFileSystem","Win32_Storage_FileHistory","Win32_Storage_Imapi","Win32_System_AddressBook","Win32_Storage_IndexServer","Win32_Storage_Jet","Win32_Storage_StructuredStorage","Win32_Storage_Nvme","Win32_Storage_OfflineFiles","Win32_Storage_OperationRecorder","Win32_Storage_ProjectedFileSystem","Win32_Storage_Vhd","Win32_System_Antimalware","Win32_System_ApplicationInstallationAndServicing","Win32_System_ApplicationVerifier","Win32_System_ClrHosting","Win32_System_Ole","Win32_System_Com_Marshal","Win32_System_Com_Urlmon","Win32_System_ComponentServices","Win32_System_DataExchange","Win32_System_DeploymentServices","Win32_System_DeveloperLicensing","Win32_System_Diagnostics_Ceip","Win32_System_Time","Win32_System_Diagnostics_Debug_Extensions","Win32_System_Diagnostics_ProcessSnapshotting","Win32_System_Diagnostics_ToolHelp","Win32_System_Diagnostics_TraceLogging","Win32_System_DistributedTransactionCoordinator","Win32_System_Environment","Win32_System_ErrorReporting","Win32_System_EventCollector","Win32_System_EventLog","Win32_System_EventNotificationService","Win32_System_GroupPolicy","Win32_System_HostCompute","Win32_System_HostComputeNetwork","Win32_System_HostComputeSystem","Win32_System_Hypervisor","Win32_System_Iis","Win32_System_JobObjects","Win32_System_Js","Win32_System_Diagnostics_Debug_ActiveScript","Win32_System_LibraryLoader","Win32_System_Mailslots","Win32_System_Mapi","Win32_System_Memory_NonVolatile","Win32_System_MessageQueuing","Win32_System_MixedReality","Win32_System_Performance","Win32_System_Performance_HardwareCounterProfiling","Win32_System_Pipes","Win32_System_ProcessStatus","Win32_System_Recovery","Win32_System_RemoteManagement","Win32_System_RestartManager","Win32_System_Restore","Win32_System_Search","Win32_System_Search_Common","Win32_System_SecurityCenter","Win32_System_Services","Win32_System_SetupAndMigration","Win32_System_Shutdown","Win32_System_SubsystemForLinux","Win32_System_TpmBaseServices","Win32_System_UserAccessLogging","Win32_System_VirtualDosMachines","Win32_System_Wmi","Win32_UI_Accessibility","Win32_UI_Input_Pointer","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_Ime","Win32_UI_TextServices","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Input_Touch","Win32_UI_Input_XboxController","Win32_UI_InteractionContext","Win32_UI_Magnification","Win32_UI_Shell_Common","Win32_UI_TabletPC","Win32_Web_InternetExplorer"],"namespaces":{"339":[{"name":"EVT_VHF_ASYNC_OPERATION","features":[0]},{"name":"EVT_VHF_CLEANUP","features":[0]},{"name":"EVT_VHF_READY_FOR_NEXT_READ_REPORT","features":[0]},{"name":"HID_XFER_PACKET","features":[0]},{"name":"PEVT_VHF_ASYNC_OPERATION","features":[0]},{"name":"PEVT_VHF_CLEANUP","features":[0]},{"name":"PEVT_VHF_READY_FOR_NEXT_READ_REPORT","features":[0]},{"name":"VHF_CONFIG","features":[0,1]},{"name":"VhfAsyncOperationComplete","features":[0,1]},{"name":"VhfCreate","features":[0,1]},{"name":"VhfDelete","features":[0,1]},{"name":"VhfReadReportSubmit","features":[0,1]},{"name":"VhfStart","features":[0,1]}],"340":[{"name":"ACCESS_STATE","features":[2,3,1,4]},{"name":"DEVICE_OBJECT","features":[2,5,3,1,4,6,7,8]},{"name":"DEVOBJ_EXTENSION","features":[2,5,3,1,4,6,7,8]},{"name":"DISPATCHER_HEADER","features":[2,1,7]},{"name":"DMA_COMMON_BUFFER_VECTOR","features":[2]},{"name":"DRIVER_ADD_DEVICE","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_CANCEL","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_CONTROL","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_DISPATCH","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_DISPATCH_PAGED","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_EXTENSION","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_FS_NOTIFICATION","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_INITIALIZE","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_NOTIFICATION_CALLBACK_ROUTINE","features":[2,1]},{"name":"DRIVER_OBJECT","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_REINITIALIZE","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_STARTIO","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_UNLOAD","features":[2,5,3,1,4,6,7,8]},{"name":"DontUseThisType","features":[2]},{"name":"DontUseThisTypeSession","features":[2]},{"name":"ECP_HEADER","features":[2]},{"name":"ECP_LIST","features":[2]},{"name":"ERESOURCE","features":[2,7]},{"name":"FAST_IO_ACQUIRE_FILE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_ACQUIRE_FOR_CCFLUSH","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_ACQUIRE_FOR_MOD_WRITE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_CHECK_IF_POSSIBLE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_DETACH_DEVICE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_DEVICE_CONTROL","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_DISPATCH","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_LOCK","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_MDL_READ","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_MDL_READ_COMPLETE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_MDL_READ_COMPLETE_COMPRESSED","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_MDL_WRITE_COMPLETE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_PREPARE_MDL_WRITE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_QUERY_BASIC_INFO","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_QUERY_NETWORK_OPEN_INFO","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_QUERY_OPEN","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_QUERY_STANDARD_INFO","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_READ","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_READ_COMPRESSED","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_RELEASE_FILE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_RELEASE_FOR_CCFLUSH","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_RELEASE_FOR_MOD_WRITE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_UNLOCK_ALL","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_UNLOCK_ALL_BY_KEY","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_UNLOCK_SINGLE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_WRITE","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_IO_WRITE_COMPRESSED","features":[2,5,3,1,4,6,7,8]},{"name":"FAST_MUTEX","features":[2,1,7]},{"name":"FILE_OBJECT","features":[2,5,3,1,4,6,7,8]},{"name":"IOMMU_DMA_DEVICE","features":[2]},{"name":"IOMMU_DMA_DOMAIN","features":[2]},{"name":"IO_COMPLETION_CONTEXT","features":[2]},{"name":"IO_PRIORITY_HINT","features":[2]},{"name":"IO_SECURITY_CONTEXT","features":[2,3,1,4]},{"name":"IO_STACK_LOCATION","features":[2,5,3,1,4,6,7,8]},{"name":"IRP","features":[2,5,3,1,4,6,7,8]},{"name":"IoPriorityCritical","features":[2]},{"name":"IoPriorityHigh","features":[2]},{"name":"IoPriorityLow","features":[2]},{"name":"IoPriorityNormal","features":[2]},{"name":"IoPriorityVeryLow","features":[2]},{"name":"KDEVICE_QUEUE","features":[2,1,7]},{"name":"KDPC","features":[2,7]},{"name":"KENLISTMENT","features":[2]},{"name":"KEVENT","features":[2,1,7]},{"name":"KGDT","features":[2]},{"name":"KIDT","features":[2]},{"name":"KMUTANT","features":[2,1,7]},{"name":"KPCR","features":[2]},{"name":"KPRCB","features":[2]},{"name":"KQUEUE","features":[2,1,7]},{"name":"KRESOURCEMANAGER","features":[2]},{"name":"KSPIN_LOCK_QUEUE_NUMBER","features":[2]},{"name":"KTM","features":[2]},{"name":"KTRANSACTION","features":[2]},{"name":"KTSS","features":[2]},{"name":"KWAIT_BLOCK","features":[2,1,7]},{"name":"LOADER_PARAMETER_BLOCK","features":[2]},{"name":"LockQueueAfdWorkQueueLock","features":[2]},{"name":"LockQueueBcbLock","features":[2]},{"name":"LockQueueIoCancelLock","features":[2]},{"name":"LockQueueIoCompletionLock","features":[2]},{"name":"LockQueueIoDatabaseLock","features":[2]},{"name":"LockQueueIoVpbLock","features":[2]},{"name":"LockQueueMasterLock","features":[2]},{"name":"LockQueueMaximumLock","features":[2]},{"name":"LockQueueNonPagedPoolLock","features":[2]},{"name":"LockQueueNtfsStructLock","features":[2]},{"name":"LockQueueUnusedSpare0","features":[2]},{"name":"LockQueueUnusedSpare1","features":[2]},{"name":"LockQueueUnusedSpare15","features":[2]},{"name":"LockQueueUnusedSpare16","features":[2]},{"name":"LockQueueUnusedSpare2","features":[2]},{"name":"LockQueueUnusedSpare3","features":[2]},{"name":"LockQueueUnusedSpare8","features":[2]},{"name":"LockQueueVacbLock","features":[2]},{"name":"MDL","features":[2]},{"name":"MaxIoPriorityTypes","features":[2]},{"name":"MaxPoolType","features":[2]},{"name":"NTSTRSAFE_MAX_CCH","features":[2]},{"name":"NTSTRSAFE_MAX_LENGTH","features":[2]},{"name":"NTSTRSAFE_UNICODE_STRING_MAX_CCH","features":[2]},{"name":"NTSTRSAFE_USE_SECURE_CRT","features":[2]},{"name":"NonPagedPool","features":[2]},{"name":"NonPagedPoolBase","features":[2]},{"name":"NonPagedPoolBaseCacheAligned","features":[2]},{"name":"NonPagedPoolBaseCacheAlignedMustS","features":[2]},{"name":"NonPagedPoolBaseMustSucceed","features":[2]},{"name":"NonPagedPoolCacheAligned","features":[2]},{"name":"NonPagedPoolCacheAlignedMustS","features":[2]},{"name":"NonPagedPoolCacheAlignedMustSSession","features":[2]},{"name":"NonPagedPoolCacheAlignedSession","features":[2]},{"name":"NonPagedPoolExecute","features":[2]},{"name":"NonPagedPoolMustSucceed","features":[2]},{"name":"NonPagedPoolMustSucceedSession","features":[2]},{"name":"NonPagedPoolNx","features":[2]},{"name":"NonPagedPoolNxCacheAligned","features":[2]},{"name":"NonPagedPoolSession","features":[2]},{"name":"NonPagedPoolSessionNx","features":[2]},{"name":"NtClose","features":[2,1]},{"name":"NtQueryObject","features":[2,1]},{"name":"OBJECT_ATTRIBUTES","features":[2,1]},{"name":"OBJECT_ATTRIBUTES32","features":[2]},{"name":"OBJECT_ATTRIBUTES64","features":[2]},{"name":"OBJECT_INFORMATION_CLASS","features":[2]},{"name":"OBJECT_NAME_INFORMATION","features":[2,1]},{"name":"OWNER_ENTRY","features":[2]},{"name":"ObjectBasicInformation","features":[2]},{"name":"ObjectTypeInformation","features":[2]},{"name":"PAFFINITY_TOKEN","features":[2]},{"name":"PBUS_HANDLER","features":[2]},{"name":"PCALLBACK_OBJECT","features":[2]},{"name":"PDEVICE_HANDLER_OBJECT","features":[2]},{"name":"PEJOB","features":[2]},{"name":"PEPROCESS","features":[2]},{"name":"PESILO","features":[2]},{"name":"PETHREAD","features":[2]},{"name":"PEX_RUNDOWN_REF_CACHE_AWARE","features":[2]},{"name":"PEX_TIMER","features":[2]},{"name":"PFREE_FUNCTION","features":[2]},{"name":"PIO_COMPLETION_ROUTINE","features":[2,1]},{"name":"PIO_REMOVE_LOCK_TRACKING_BLOCK","features":[2]},{"name":"PIO_TIMER","features":[2]},{"name":"PIO_WORKITEM","features":[2]},{"name":"PKDEFERRED_ROUTINE","features":[2]},{"name":"PKINTERRUPT","features":[2]},{"name":"PKPROCESS","features":[2]},{"name":"PKTHREAD","features":[2]},{"name":"PNOTIFY_SYNC","features":[2]},{"name":"POBJECT_TYPE","features":[2]},{"name":"POHANDLE","features":[2]},{"name":"POOL_TYPE","features":[2]},{"name":"PPCW_BUFFER","features":[2]},{"name":"PPCW_INSTANCE","features":[2]},{"name":"PPCW_REGISTRATION","features":[2]},{"name":"PRKPROCESS","features":[2]},{"name":"PRKTHREAD","features":[2]},{"name":"PSILO_MONITOR","features":[2]},{"name":"PWORKER_THREAD_ROUTINE","features":[2]},{"name":"PagedPool","features":[2]},{"name":"PagedPoolCacheAligned","features":[2]},{"name":"PagedPoolCacheAlignedSession","features":[2]},{"name":"PagedPoolSession","features":[2]},{"name":"RTL_SPLAY_LINKS","features":[2]},{"name":"SECTION_OBJECT_POINTERS","features":[2]},{"name":"SECURITY_SUBJECT_CONTEXT","features":[2,4]},{"name":"STRSAFE_FILL_BEHIND","features":[2]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[2]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[2]},{"name":"STRSAFE_IGNORE_NULLS","features":[2]},{"name":"STRSAFE_NO_TRUNCATION","features":[2]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[2]},{"name":"STRSAFE_ZERO_LENGTH_ON_FAILURE","features":[2]},{"name":"SspiAsyncContext","features":[2]},{"name":"TARGET_DEVICE_CUSTOM_NOTIFICATION","features":[2,5,3,1,4,6,7,8]},{"name":"VPB","features":[2,5,3,1,4,6,7,8]},{"name":"WORK_QUEUE_ITEM","features":[2,7]},{"name":"_DEVICE_OBJECT_POWER_EXTENSION","features":[2]},{"name":"_IORING_OBJECT","features":[2]},{"name":"_SCSI_REQUEST_BLOCK","features":[2]},{"name":"__WARNING_BANNED_API_USAGE","features":[2]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[2]},{"name":"__WARNING_DEREF_NULL_PTR","features":[2]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[2]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[2]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[2]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[2]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[2]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[2]},{"name":"__WARNING_POST_EXPECTED","features":[2]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[2]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[2]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[2]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[2]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[2]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[2]},{"name":"__WARNING_USING_UNINIT_VAR","features":[2]}],"341":[{"name":"D3DCAPS8","features":[9,10]},{"name":"D3DCLEAR_COMPUTERECTS","features":[9]},{"name":"D3DDDIARG_CREATERESOURCE","features":[9,1]},{"name":"D3DDDIARG_CREATERESOURCE2","features":[9,1]},{"name":"D3DDDICB_DESTROYALLOCATION2FLAGS","features":[9]},{"name":"D3DDDICB_LOCK2FLAGS","features":[9]},{"name":"D3DDDICB_LOCKFLAGS","features":[9]},{"name":"D3DDDICB_SIGNALFLAGS","features":[9]},{"name":"D3DDDIFMT_A1","features":[9]},{"name":"D3DDDIFMT_A16B16G16R16","features":[9]},{"name":"D3DDDIFMT_A16B16G16R16F","features":[9]},{"name":"D3DDDIFMT_A1R5G5B5","features":[9]},{"name":"D3DDDIFMT_A2B10G10R10","features":[9]},{"name":"D3DDDIFMT_A2B10G10R10_XR_BIAS","features":[9]},{"name":"D3DDDIFMT_A2R10G10B10","features":[9]},{"name":"D3DDDIFMT_A2W10V10U10","features":[9]},{"name":"D3DDDIFMT_A32B32G32R32F","features":[9]},{"name":"D3DDDIFMT_A4L4","features":[9]},{"name":"D3DDDIFMT_A4R4G4B4","features":[9]},{"name":"D3DDDIFMT_A8","features":[9]},{"name":"D3DDDIFMT_A8B8G8R8","features":[9]},{"name":"D3DDDIFMT_A8L8","features":[9]},{"name":"D3DDDIFMT_A8P8","features":[9]},{"name":"D3DDDIFMT_A8R3G3B2","features":[9]},{"name":"D3DDDIFMT_A8R8G8B8","features":[9]},{"name":"D3DDDIFMT_BINARYBUFFER","features":[9]},{"name":"D3DDDIFMT_BITSTREAMDATA","features":[9]},{"name":"D3DDDIFMT_CxV8U8","features":[9]},{"name":"D3DDDIFMT_D15S1","features":[9]},{"name":"D3DDDIFMT_D16","features":[9]},{"name":"D3DDDIFMT_D16_LOCKABLE","features":[9]},{"name":"D3DDDIFMT_D24FS8","features":[9]},{"name":"D3DDDIFMT_D24S8","features":[9]},{"name":"D3DDDIFMT_D24X4S4","features":[9]},{"name":"D3DDDIFMT_D24X8","features":[9]},{"name":"D3DDDIFMT_D32","features":[9]},{"name":"D3DDDIFMT_D32F_LOCKABLE","features":[9]},{"name":"D3DDDIFMT_D32_LOCKABLE","features":[9]},{"name":"D3DDDIFMT_DEBLOCKINGDATA","features":[9]},{"name":"D3DDDIFMT_DXT1","features":[9]},{"name":"D3DDDIFMT_DXT2","features":[9]},{"name":"D3DDDIFMT_DXT3","features":[9]},{"name":"D3DDDIFMT_DXT4","features":[9]},{"name":"D3DDDIFMT_DXT5","features":[9]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_BASE","features":[9]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_MAX","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED10","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED11","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED12","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED13","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED14","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED15","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED16","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED17","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED18","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED19","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED20","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED21","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED22","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED23","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED24","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED25","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED26","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED27","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED28","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED29","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED30","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED31","features":[9]},{"name":"D3DDDIFMT_DXVA_RESERVED9","features":[9]},{"name":"D3DDDIFMT_FILMGRAINBUFFER","features":[9]},{"name":"D3DDDIFMT_G16R16","features":[9]},{"name":"D3DDDIFMT_G16R16F","features":[9]},{"name":"D3DDDIFMT_G32R32F","features":[9]},{"name":"D3DDDIFMT_G8R8","features":[9]},{"name":"D3DDDIFMT_G8R8_G8B8","features":[9]},{"name":"D3DDDIFMT_INDEX16","features":[9]},{"name":"D3DDDIFMT_INDEX32","features":[9]},{"name":"D3DDDIFMT_INVERSEQUANTIZATIONDATA","features":[9]},{"name":"D3DDDIFMT_L16","features":[9]},{"name":"D3DDDIFMT_L6V5U5","features":[9]},{"name":"D3DDDIFMT_L8","features":[9]},{"name":"D3DDDIFMT_MACROBLOCKDATA","features":[9]},{"name":"D3DDDIFMT_MOTIONVECTORBUFFER","features":[9]},{"name":"D3DDDIFMT_MULTI2_ARGB8","features":[9]},{"name":"D3DDDIFMT_P8","features":[9]},{"name":"D3DDDIFMT_PICTUREPARAMSDATA","features":[9]},{"name":"D3DDDIFMT_Q16W16V16U16","features":[9]},{"name":"D3DDDIFMT_Q8W8V8U8","features":[9]},{"name":"D3DDDIFMT_R16F","features":[9]},{"name":"D3DDDIFMT_R32F","features":[9]},{"name":"D3DDDIFMT_R3G3B2","features":[9]},{"name":"D3DDDIFMT_R5G6B5","features":[9]},{"name":"D3DDDIFMT_R8","features":[9]},{"name":"D3DDDIFMT_R8G8B8","features":[9]},{"name":"D3DDDIFMT_R8G8_B8G8","features":[9]},{"name":"D3DDDIFMT_RESIDUALDIFFERENCEDATA","features":[9]},{"name":"D3DDDIFMT_S1D15","features":[9]},{"name":"D3DDDIFMT_S8D24","features":[9]},{"name":"D3DDDIFMT_S8_LOCKABLE","features":[9]},{"name":"D3DDDIFMT_SLICECONTROLDATA","features":[9]},{"name":"D3DDDIFMT_UNKNOWN","features":[9]},{"name":"D3DDDIFMT_UYVY","features":[9]},{"name":"D3DDDIFMT_V16U16","features":[9]},{"name":"D3DDDIFMT_V8U8","features":[9]},{"name":"D3DDDIFMT_VERTEXDATA","features":[9]},{"name":"D3DDDIFMT_W11V11U10","features":[9]},{"name":"D3DDDIFMT_X1R5G5B5","features":[9]},{"name":"D3DDDIFMT_X4R4G4B4","features":[9]},{"name":"D3DDDIFMT_X4S4D24","features":[9]},{"name":"D3DDDIFMT_X8B8G8R8","features":[9]},{"name":"D3DDDIFMT_X8D24","features":[9]},{"name":"D3DDDIFMT_X8L8V8U8","features":[9]},{"name":"D3DDDIFMT_X8R8G8B8","features":[9]},{"name":"D3DDDIFMT_YUY2","features":[9]},{"name":"D3DDDIFORMAT","features":[9]},{"name":"D3DDDIGPUVIRTUALADDRESS_PROTECTION_TYPE","features":[9]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVATION_TYPE","features":[9]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_ACCESS","features":[9]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_COMMIT","features":[9]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_ZERO","features":[9]},{"name":"D3DDDIMULTISAMPLE_10_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_11_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_12_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_13_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_14_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_15_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_16_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_2_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_3_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_4_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_5_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_6_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_7_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_8_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_9_SAMPLES","features":[9]},{"name":"D3DDDIMULTISAMPLE_NONE","features":[9]},{"name":"D3DDDIMULTISAMPLE_NONMASKABLE","features":[9]},{"name":"D3DDDIMULTISAMPLE_TYPE","features":[9]},{"name":"D3DDDIPOOL_LOCALVIDMEM","features":[9]},{"name":"D3DDDIPOOL_NONLOCALVIDMEM","features":[9]},{"name":"D3DDDIPOOL_STAGINGMEM","features":[9]},{"name":"D3DDDIPOOL_SYSTEMMEM","features":[9]},{"name":"D3DDDIPOOL_VIDEOMEMORY","features":[9]},{"name":"D3DDDIRECT","features":[9]},{"name":"D3DDDI_ALLOCATIONINFO","features":[9]},{"name":"D3DDDI_ALLOCATIONINFO2","features":[9,1]},{"name":"D3DDDI_ALLOCATIONLIST","features":[9]},{"name":"D3DDDI_ALLOCATIONPRIORITY_HIGH","features":[9]},{"name":"D3DDDI_ALLOCATIONPRIORITY_LOW","features":[9]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MAXIMUM","features":[9]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MINIMUM","features":[9]},{"name":"D3DDDI_ALLOCATIONPRIORITY_NORMAL","features":[9]},{"name":"D3DDDI_COLOR_SPACE_CUSTOM","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RESERVED","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G10_NONE_P709","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P709","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G2084_NONE_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P709","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P709","features":[9]},{"name":"D3DDDI_COLOR_SPACE_TYPE","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P601","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P709","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_GHLG_TOPLEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_LEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_TOPLEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_TOPLEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P709","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_TOPLEFT_P2020","features":[9]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_GHLG_TOPLEFT_P2020","features":[9]},{"name":"D3DDDI_CPU_NOTIFICATION","features":[9]},{"name":"D3DDDI_CREATECONTEXTFLAGS","features":[9]},{"name":"D3DDDI_CREATEHWCONTEXTFLAGS","features":[9]},{"name":"D3DDDI_CREATEHWQUEUEFLAGS","features":[9]},{"name":"D3DDDI_CREATENATIVEFENCEINFO","features":[9]},{"name":"D3DDDI_DESTROYPAGINGQUEUE","features":[9]},{"name":"D3DDDI_DOORBELLSTATUS","features":[9]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED","features":[9]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED_NOTIFY_KMD","features":[9]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_ABORT","features":[9]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_RETRY","features":[9]},{"name":"D3DDDI_DOORBELL_PRIVATEDATA_MAX_BYTES_WDDM3_1","features":[9]},{"name":"D3DDDI_DRIVERESCAPETYPE","features":[9]},{"name":"D3DDDI_DRIVERESCAPETYPE_CPUEVENTUSAGE","features":[9]},{"name":"D3DDDI_DRIVERESCAPETYPE_MAX","features":[9]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATEALLOCATIONHANDLE","features":[9]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATERESOURCEHANDLE","features":[9]},{"name":"D3DDDI_DRIVERESCAPE_CPUEVENTUSAGE","features":[9]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATEALLOCATIONEHANDLE","features":[9]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATERESOURCEHANDLE","features":[9]},{"name":"D3DDDI_DXGI_RGB","features":[9]},{"name":"D3DDDI_ESCAPEFLAGS","features":[9]},{"name":"D3DDDI_EVICT_FLAGS","features":[9]},{"name":"D3DDDI_FENCE","features":[9]},{"name":"D3DDDI_FLIPINTERVAL_FOUR","features":[9]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE","features":[9]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE_ALLOW_TEARING","features":[9]},{"name":"D3DDDI_FLIPINTERVAL_ONE","features":[9]},{"name":"D3DDDI_FLIPINTERVAL_THREE","features":[9]},{"name":"D3DDDI_FLIPINTERVAL_TWO","features":[9]},{"name":"D3DDDI_FLIPINTERVAL_TYPE","features":[9]},{"name":"D3DDDI_GAMMARAMP_DEFAULT","features":[9]},{"name":"D3DDDI_GAMMARAMP_DXGI_1","features":[9]},{"name":"D3DDDI_GAMMARAMP_MATRIX_3x4","features":[9]},{"name":"D3DDDI_GAMMARAMP_MATRIX_V2","features":[9]},{"name":"D3DDDI_GAMMARAMP_RGB256x3x16","features":[9]},{"name":"D3DDDI_GAMMARAMP_TYPE","features":[9]},{"name":"D3DDDI_GAMMARAMP_UNINITIALIZED","features":[9]},{"name":"D3DDDI_GAMMA_RAMP_DXGI_1","features":[9]},{"name":"D3DDDI_GAMMA_RAMP_RGB256x3x16","features":[9]},{"name":"D3DDDI_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[9]},{"name":"D3DDDI_HDR_METADATA_HDR10","features":[9]},{"name":"D3DDDI_HDR_METADATA_HDR10PLUS","features":[9]},{"name":"D3DDDI_HDR_METADATA_TYPE","features":[9]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10","features":[9]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10PLUS","features":[9]},{"name":"D3DDDI_HDR_METADATA_TYPE_NONE","features":[9]},{"name":"D3DDDI_KERNELOVERLAYINFO","features":[9]},{"name":"D3DDDI_MAKERESIDENT","features":[9]},{"name":"D3DDDI_MAKERESIDENT_FLAGS","features":[9]},{"name":"D3DDDI_MAPGPUVIRTUALADDRESS","features":[9]},{"name":"D3DDDI_MAX_BROADCAST_CONTEXT","features":[9]},{"name":"D3DDDI_MAX_MPO_PRESENT_DIRTY_RECTS","features":[9]},{"name":"D3DDDI_MAX_OBJECT_SIGNALED","features":[9]},{"name":"D3DDDI_MAX_OBJECT_WAITED_ON","features":[9]},{"name":"D3DDDI_MAX_WRITTEN_PRIMARIES","features":[9]},{"name":"D3DDDI_MONITORED_FENCE","features":[9]},{"name":"D3DDDI_MULTISAMPLINGMETHOD","features":[9]},{"name":"D3DDDI_NATIVEFENCEMAPPING","features":[9]},{"name":"D3DDDI_OFFER_FLAGS","features":[9]},{"name":"D3DDDI_OFFER_PRIORITY","features":[9]},{"name":"D3DDDI_OFFER_PRIORITY_AUTO","features":[9]},{"name":"D3DDDI_OFFER_PRIORITY_HIGH","features":[9]},{"name":"D3DDDI_OFFER_PRIORITY_LOW","features":[9]},{"name":"D3DDDI_OFFER_PRIORITY_NONE","features":[9]},{"name":"D3DDDI_OFFER_PRIORITY_NORMAL","features":[9]},{"name":"D3DDDI_OPENALLOCATIONINFO","features":[9]},{"name":"D3DDDI_OPENALLOCATIONINFO2","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[9]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[9]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY","features":[9]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_ABOVE_NORMAL","features":[9]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_BELOW_NORMAL","features":[9]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_NORMAL","features":[9]},{"name":"D3DDDI_PATCHLOCATIONLIST","features":[9]},{"name":"D3DDDI_PERIODIC_MONITORED_FENCE","features":[9]},{"name":"D3DDDI_POOL","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_ADAPTERKEY","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERIMAGEPATH","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERSTOREPATH","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_FLAGS","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_INFO","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_MAX","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_SERVICEKEY","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_STATUS","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_BUFFER_OVERFLOW","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_FAIL","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_MAX","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_SUCCESS","features":[9]},{"name":"D3DDDI_QUERYREGISTRY_TYPE","features":[9]},{"name":"D3DDDI_RATIONAL","features":[9]},{"name":"D3DDDI_RECLAIM_RESULT","features":[9]},{"name":"D3DDDI_RECLAIM_RESULT_DISCARDED","features":[9]},{"name":"D3DDDI_RECLAIM_RESULT_NOT_COMMITTED","features":[9]},{"name":"D3DDDI_RECLAIM_RESULT_OK","features":[9]},{"name":"D3DDDI_RESERVEGPUVIRTUALADDRESS","features":[9]},{"name":"D3DDDI_RESOURCEFLAGS","features":[9]},{"name":"D3DDDI_RESOURCEFLAGS2","features":[9]},{"name":"D3DDDI_ROTATION","features":[9]},{"name":"D3DDDI_ROTATION_180","features":[9]},{"name":"D3DDDI_ROTATION_270","features":[9]},{"name":"D3DDDI_ROTATION_90","features":[9]},{"name":"D3DDDI_ROTATION_IDENTITY","features":[9]},{"name":"D3DDDI_SCANLINEORDERING","features":[9]},{"name":"D3DDDI_SCANLINEORDERING_INTERLACED","features":[9]},{"name":"D3DDDI_SCANLINEORDERING_PROGRESSIVE","features":[9]},{"name":"D3DDDI_SCANLINEORDERING_UNKNOWN","features":[9]},{"name":"D3DDDI_SEGMENTPREFERENCE","features":[9]},{"name":"D3DDDI_SEMAPHORE","features":[9]},{"name":"D3DDDI_SURFACEINFO","features":[9]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO","features":[9,1]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO2","features":[9,1]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_FLAGS","features":[9]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_TYPE","features":[9]},{"name":"D3DDDI_SYNCHRONIZATION_MUTEX","features":[9]},{"name":"D3DDDI_SYNCHRONIZATION_TYPE_LIMIT","features":[9]},{"name":"D3DDDI_SYNC_OBJECT_SIGNAL","features":[9]},{"name":"D3DDDI_SYNC_OBJECT_WAIT","features":[9]},{"name":"D3DDDI_TRIMRESIDENCYSET_FLAGS","features":[9]},{"name":"D3DDDI_UPDATEALLOCPROPERTY","features":[9]},{"name":"D3DDDI_UPDATEALLOCPROPERTY_FLAGS","features":[9]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_COPY","features":[9]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP","features":[9]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP_PROTECT","features":[9]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION","features":[9]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION_TYPE","features":[9]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_UNMAP","features":[9]},{"name":"D3DDDI_VIDEO_SIGNAL_SCANLINE_ORDERING","features":[9]},{"name":"D3DDDI_VSSLO_INTERLACED_LOWERFIELDFIRST","features":[9]},{"name":"D3DDDI_VSSLO_INTERLACED_UPPERFIELDFIRST","features":[9]},{"name":"D3DDDI_VSSLO_OTHER","features":[9]},{"name":"D3DDDI_VSSLO_PROGRESSIVE","features":[9]},{"name":"D3DDDI_VSSLO_UNINITIALIZED","features":[9]},{"name":"D3DDDI_WAITFORSYNCHRONIZATIONOBJECTFROMCPU_FLAGS","features":[9]},{"name":"D3DDEVCAPS_HWINDEXBUFFER","features":[9]},{"name":"D3DDEVCAPS_HWVERTEXBUFFER","features":[9]},{"name":"D3DDEVCAPS_SUBVOLUMELOCK","features":[9]},{"name":"D3DDEVICEDESC_V1","features":[9,1,10]},{"name":"D3DDEVICEDESC_V2","features":[9,1,10]},{"name":"D3DDEVICEDESC_V3","features":[9,1,10]},{"name":"D3DDEVINFOID_VCACHE","features":[9]},{"name":"D3DDP2OP_ADDDIRTYBOX","features":[9]},{"name":"D3DDP2OP_ADDDIRTYRECT","features":[9]},{"name":"D3DDP2OP_BLT","features":[9]},{"name":"D3DDP2OP_BUFFERBLT","features":[9]},{"name":"D3DDP2OP_CLEAR","features":[9]},{"name":"D3DDP2OP_CLIPPEDTRIANGLEFAN","features":[9]},{"name":"D3DDP2OP_COLORFILL","features":[9]},{"name":"D3DDP2OP_COMPOSERECTS","features":[9]},{"name":"D3DDP2OP_CREATELIGHT","features":[9]},{"name":"D3DDP2OP_CREATEPIXELSHADER","features":[9]},{"name":"D3DDP2OP_CREATEQUERY","features":[9]},{"name":"D3DDP2OP_CREATEVERTEXSHADER","features":[9]},{"name":"D3DDP2OP_CREATEVERTEXSHADERDECL","features":[9]},{"name":"D3DDP2OP_CREATEVERTEXSHADERFUNC","features":[9]},{"name":"D3DDP2OP_DELETEPIXELSHADER","features":[9]},{"name":"D3DDP2OP_DELETEQUERY","features":[9]},{"name":"D3DDP2OP_DELETEVERTEXSHADER","features":[9]},{"name":"D3DDP2OP_DELETEVERTEXSHADERDECL","features":[9]},{"name":"D3DDP2OP_DELETEVERTEXSHADERFUNC","features":[9]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE","features":[9]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE2","features":[9]},{"name":"D3DDP2OP_DRAWPRIMITIVE","features":[9]},{"name":"D3DDP2OP_DRAWPRIMITIVE2","features":[9]},{"name":"D3DDP2OP_DRAWRECTPATCH","features":[9]},{"name":"D3DDP2OP_DRAWTRIPATCH","features":[9]},{"name":"D3DDP2OP_GENERATEMIPSUBLEVELS","features":[9]},{"name":"D3DDP2OP_INDEXEDLINELIST","features":[9]},{"name":"D3DDP2OP_INDEXEDLINELIST2","features":[9]},{"name":"D3DDP2OP_INDEXEDLINESTRIP","features":[9]},{"name":"D3DDP2OP_INDEXEDTRIANGLEFAN","features":[9]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST","features":[9]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST2","features":[9]},{"name":"D3DDP2OP_INDEXEDTRIANGLESTRIP","features":[9]},{"name":"D3DDP2OP_ISSUEQUERY","features":[9]},{"name":"D3DDP2OP_LINELIST","features":[9]},{"name":"D3DDP2OP_LINELIST_IMM","features":[9]},{"name":"D3DDP2OP_LINESTRIP","features":[9]},{"name":"D3DDP2OP_MULTIPLYTRANSFORM","features":[9]},{"name":"D3DDP2OP_POINTS","features":[9]},{"name":"D3DDP2OP_RENDERSTATE","features":[9]},{"name":"D3DDP2OP_RESPONSECONTINUE","features":[9]},{"name":"D3DDP2OP_RESPONSEQUERY","features":[9]},{"name":"D3DDP2OP_SETCLIPPLANE","features":[9]},{"name":"D3DDP2OP_SETCONVOLUTIONKERNELMONO","features":[9]},{"name":"D3DDP2OP_SETDEPTHSTENCIL","features":[9]},{"name":"D3DDP2OP_SETINDICES","features":[9]},{"name":"D3DDP2OP_SETLIGHT","features":[9]},{"name":"D3DDP2OP_SETMATERIAL","features":[9]},{"name":"D3DDP2OP_SETPALETTE","features":[9]},{"name":"D3DDP2OP_SETPIXELSHADER","features":[9]},{"name":"D3DDP2OP_SETPIXELSHADERCONST","features":[9]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTB","features":[9]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTI","features":[9]},{"name":"D3DDP2OP_SETPRIORITY","features":[9]},{"name":"D3DDP2OP_SETRENDERTARGET","features":[9]},{"name":"D3DDP2OP_SETRENDERTARGET2","features":[9]},{"name":"D3DDP2OP_SETSCISSORRECT","features":[9]},{"name":"D3DDP2OP_SETSTREAMSOURCE","features":[9]},{"name":"D3DDP2OP_SETSTREAMSOURCE2","features":[9]},{"name":"D3DDP2OP_SETSTREAMSOURCEFREQ","features":[9]},{"name":"D3DDP2OP_SETSTREAMSOURCEUM","features":[9]},{"name":"D3DDP2OP_SETTEXLOD","features":[9]},{"name":"D3DDP2OP_SETTRANSFORM","features":[9]},{"name":"D3DDP2OP_SETVERTEXSHADER","features":[9]},{"name":"D3DDP2OP_SETVERTEXSHADERCONST","features":[9]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTB","features":[9]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTI","features":[9]},{"name":"D3DDP2OP_SETVERTEXSHADERDECL","features":[9]},{"name":"D3DDP2OP_SETVERTEXSHADERFUNC","features":[9]},{"name":"D3DDP2OP_STATESET","features":[9]},{"name":"D3DDP2OP_SURFACEBLT","features":[9]},{"name":"D3DDP2OP_TEXBLT","features":[9]},{"name":"D3DDP2OP_TEXTURESTAGESTATE","features":[9]},{"name":"D3DDP2OP_TRIANGLEFAN","features":[9]},{"name":"D3DDP2OP_TRIANGLEFAN_IMM","features":[9]},{"name":"D3DDP2OP_TRIANGLELIST","features":[9]},{"name":"D3DDP2OP_TRIANGLESTRIP","features":[9]},{"name":"D3DDP2OP_UPDATEPALETTE","features":[9]},{"name":"D3DDP2OP_VIEWPORTINFO","features":[9]},{"name":"D3DDP2OP_VOLUMEBLT","features":[9]},{"name":"D3DDP2OP_WINFO","features":[9]},{"name":"D3DDP2OP_ZRANGE","features":[9]},{"name":"D3DFVF_FOG","features":[9]},{"name":"D3DGDI2_MAGIC","features":[9]},{"name":"D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[9]},{"name":"D3DGDI2_TYPE_DEFER_AGP_FREES","features":[9]},{"name":"D3DGDI2_TYPE_DXVERSION","features":[9]},{"name":"D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[9]},{"name":"D3DGDI2_TYPE_GETADAPTERGROUP","features":[9]},{"name":"D3DGDI2_TYPE_GETD3DCAPS8","features":[9]},{"name":"D3DGDI2_TYPE_GETD3DCAPS9","features":[9]},{"name":"D3DGDI2_TYPE_GETD3DQUERY","features":[9]},{"name":"D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[9]},{"name":"D3DGDI2_TYPE_GETDDIVERSION","features":[9]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODE","features":[9]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[9]},{"name":"D3DGDI2_TYPE_GETFORMAT","features":[9]},{"name":"D3DGDI2_TYPE_GETFORMATCOUNT","features":[9]},{"name":"D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[9]},{"name":"D3DGPU_NULL","features":[9]},{"name":"D3DGPU_PHYSICAL_ADDRESS","features":[9]},{"name":"D3DHAL2_CB32_CLEAR","features":[9]},{"name":"D3DHAL2_CB32_DRAWONEINDEXEDPRIMITIVE","features":[9]},{"name":"D3DHAL2_CB32_DRAWONEPRIMITIVE","features":[9]},{"name":"D3DHAL2_CB32_DRAWPRIMITIVES","features":[9]},{"name":"D3DHAL2_CB32_SETRENDERTARGET","features":[9]},{"name":"D3DHAL3_CB32_CLEAR2","features":[9]},{"name":"D3DHAL3_CB32_DRAWPRIMITIVES2","features":[9]},{"name":"D3DHAL3_CB32_RESERVED","features":[9]},{"name":"D3DHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[9]},{"name":"D3DHALDP2_EXECUTEBUFFER","features":[9]},{"name":"D3DHALDP2_REQCOMMANDBUFSIZE","features":[9]},{"name":"D3DHALDP2_REQVERTEXBUFSIZE","features":[9]},{"name":"D3DHALDP2_SWAPCOMMANDBUFFER","features":[9]},{"name":"D3DHALDP2_SWAPVERTEXBUFFER","features":[9]},{"name":"D3DHALDP2_USERMEMVERTICES","features":[9]},{"name":"D3DHALDP2_VIDMEMCOMMANDBUF","features":[9]},{"name":"D3DHALDP2_VIDMEMVERTEXBUF","features":[9]},{"name":"D3DHALSTATE_GET_LIGHT","features":[9]},{"name":"D3DHALSTATE_GET_RENDER","features":[9]},{"name":"D3DHALSTATE_GET_TRANSFORM","features":[9]},{"name":"D3DHAL_CALLBACKS","features":[9,1,10,11,12]},{"name":"D3DHAL_CALLBACKS2","features":[9,1,10,11,12]},{"name":"D3DHAL_CALLBACKS3","features":[9,1,10,11,12]},{"name":"D3DHAL_CLEAR2DATA","features":[9,10]},{"name":"D3DHAL_CLEARDATA","features":[9,10]},{"name":"D3DHAL_CLIPPEDTRIANGLEFAN","features":[9]},{"name":"D3DHAL_COL_WEIGHTS","features":[9]},{"name":"D3DHAL_CONTEXTCREATEDATA","features":[9,1,11,12]},{"name":"D3DHAL_CONTEXTDESTROYALLDATA","features":[9]},{"name":"D3DHAL_CONTEXTDESTROYDATA","features":[9]},{"name":"D3DHAL_CONTEXT_BAD","features":[9]},{"name":"D3DHAL_D3DDX6EXTENDEDCAPS","features":[9]},{"name":"D3DHAL_D3DEXTENDEDCAPS","features":[9]},{"name":"D3DHAL_DP2ADDDIRTYBOX","features":[9,10]},{"name":"D3DHAL_DP2ADDDIRTYRECT","features":[9,1]},{"name":"D3DHAL_DP2BLT","features":[9,1]},{"name":"D3DHAL_DP2BUFFERBLT","features":[9,10]},{"name":"D3DHAL_DP2CLEAR","features":[9,1]},{"name":"D3DHAL_DP2COLORFILL","features":[9,1]},{"name":"D3DHAL_DP2COMMAND","features":[9]},{"name":"D3DHAL_DP2COMPOSERECTS","features":[9,10]},{"name":"D3DHAL_DP2CREATELIGHT","features":[9]},{"name":"D3DHAL_DP2CREATEPIXELSHADER","features":[9]},{"name":"D3DHAL_DP2CREATEQUERY","features":[9,10]},{"name":"D3DHAL_DP2CREATEVERTEXSHADER","features":[9]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERDECL","features":[9]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERFUNC","features":[9]},{"name":"D3DHAL_DP2DELETEQUERY","features":[9]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE","features":[9,10]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[9,10]},{"name":"D3DHAL_DP2DRAWPRIMITIVE","features":[9,10]},{"name":"D3DHAL_DP2DRAWPRIMITIVE2","features":[9,10]},{"name":"D3DHAL_DP2DRAWRECTPATCH","features":[9]},{"name":"D3DHAL_DP2DRAWTRIPATCH","features":[9]},{"name":"D3DHAL_DP2EXT","features":[9]},{"name":"D3DHAL_DP2GENERATEMIPSUBLEVELS","features":[9,10]},{"name":"D3DHAL_DP2INDEXEDLINELIST","features":[9]},{"name":"D3DHAL_DP2INDEXEDLINESTRIP","features":[9]},{"name":"D3DHAL_DP2INDEXEDTRIANGLEFAN","features":[9]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST","features":[9]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST2","features":[9]},{"name":"D3DHAL_DP2INDEXEDTRIANGLESTRIP","features":[9]},{"name":"D3DHAL_DP2ISSUEQUERY","features":[9]},{"name":"D3DHAL_DP2LINELIST","features":[9]},{"name":"D3DHAL_DP2LINESTRIP","features":[9]},{"name":"D3DHAL_DP2MULTIPLYTRANSFORM","features":[13,9,10]},{"name":"D3DHAL_DP2OPERATION","features":[9]},{"name":"D3DHAL_DP2PIXELSHADER","features":[9]},{"name":"D3DHAL_DP2POINTS","features":[9]},{"name":"D3DHAL_DP2RENDERSTATE","features":[9,10]},{"name":"D3DHAL_DP2RESPONSE","features":[9]},{"name":"D3DHAL_DP2RESPONSEQUERY","features":[9]},{"name":"D3DHAL_DP2SETCLIPPLANE","features":[9]},{"name":"D3DHAL_DP2SETCONVOLUTIONKERNELMONO","features":[9]},{"name":"D3DHAL_DP2SETDEPTHSTENCIL","features":[9]},{"name":"D3DHAL_DP2SETINDICES","features":[9]},{"name":"D3DHAL_DP2SETLIGHT","features":[9]},{"name":"D3DHAL_DP2SETPALETTE","features":[9]},{"name":"D3DHAL_DP2SETPIXELSHADERCONST","features":[9]},{"name":"D3DHAL_DP2SETPRIORITY","features":[9]},{"name":"D3DHAL_DP2SETRENDERTARGET","features":[9]},{"name":"D3DHAL_DP2SETRENDERTARGET2","features":[9]},{"name":"D3DHAL_DP2SETSTREAMSOURCE","features":[9]},{"name":"D3DHAL_DP2SETSTREAMSOURCE2","features":[9]},{"name":"D3DHAL_DP2SETSTREAMSOURCEFREQ","features":[9]},{"name":"D3DHAL_DP2SETSTREAMSOURCEUM","features":[9]},{"name":"D3DHAL_DP2SETTEXLOD","features":[9]},{"name":"D3DHAL_DP2SETTRANSFORM","features":[13,9,10]},{"name":"D3DHAL_DP2SETVERTEXSHADERCONST","features":[9]},{"name":"D3DHAL_DP2STARTVERTEX","features":[9]},{"name":"D3DHAL_DP2STATESET","features":[9,10]},{"name":"D3DHAL_DP2SURFACEBLT","features":[9,1]},{"name":"D3DHAL_DP2TEXBLT","features":[9,1]},{"name":"D3DHAL_DP2TEXTURESTAGESTATE","features":[9]},{"name":"D3DHAL_DP2TRIANGLEFAN","features":[9]},{"name":"D3DHAL_DP2TRIANGLEFAN_IMM","features":[9]},{"name":"D3DHAL_DP2TRIANGLELIST","features":[9]},{"name":"D3DHAL_DP2TRIANGLESTRIP","features":[9]},{"name":"D3DHAL_DP2UPDATEPALETTE","features":[9]},{"name":"D3DHAL_DP2VERTEXSHADER","features":[9]},{"name":"D3DHAL_DP2VIEWPORTINFO","features":[9]},{"name":"D3DHAL_DP2VOLUMEBLT","features":[9,10]},{"name":"D3DHAL_DP2WINFO","features":[9]},{"name":"D3DHAL_DP2ZRANGE","features":[9]},{"name":"D3DHAL_DRAWONEINDEXEDPRIMITIVEDATA","features":[9,10]},{"name":"D3DHAL_DRAWONEPRIMITIVEDATA","features":[9,10]},{"name":"D3DHAL_DRAWPRIMCOUNTS","features":[9]},{"name":"D3DHAL_DRAWPRIMITIVES2DATA","features":[9,1,11,12]},{"name":"D3DHAL_DRAWPRIMITIVESDATA","features":[9]},{"name":"D3DHAL_EXECUTE_ABORT","features":[9]},{"name":"D3DHAL_EXECUTE_NORMAL","features":[9]},{"name":"D3DHAL_EXECUTE_OVERRIDE","features":[9]},{"name":"D3DHAL_EXECUTE_UNHANDLED","features":[9]},{"name":"D3DHAL_GETSTATEDATA","features":[9,10]},{"name":"D3DHAL_GLOBALDRIVERDATA","features":[9,1,10,11]},{"name":"D3DHAL_MAX_RSTATES","features":[9]},{"name":"D3DHAL_MAX_RSTATES_DX6","features":[9]},{"name":"D3DHAL_MAX_RSTATES_DX7","features":[9]},{"name":"D3DHAL_MAX_RSTATES_DX8","features":[9]},{"name":"D3DHAL_MAX_RSTATES_DX9","features":[9]},{"name":"D3DHAL_MAX_TEXTURESTATES","features":[9]},{"name":"D3DHAL_NUMCLIPVERTICES","features":[9]},{"name":"D3DHAL_OUTOFCONTEXTS","features":[9]},{"name":"D3DHAL_RENDERPRIMITIVEDATA","features":[9,10]},{"name":"D3DHAL_RENDERSTATEDATA","features":[9]},{"name":"D3DHAL_ROW_WEIGHTS","features":[9]},{"name":"D3DHAL_SAMPLER_MAXSAMP","features":[9]},{"name":"D3DHAL_SAMPLER_MAXVERTEXSAMP","features":[9]},{"name":"D3DHAL_SCENECAPTUREDATA","features":[9]},{"name":"D3DHAL_SCENE_CAPTURE_END","features":[9]},{"name":"D3DHAL_SCENE_CAPTURE_START","features":[9]},{"name":"D3DHAL_SETLIGHT_DATA","features":[9]},{"name":"D3DHAL_SETLIGHT_DISABLE","features":[9]},{"name":"D3DHAL_SETLIGHT_ENABLE","features":[9]},{"name":"D3DHAL_SETRENDERTARGETDATA","features":[9,1,11,12]},{"name":"D3DHAL_STATESETBEGIN","features":[9]},{"name":"D3DHAL_STATESETCAPTURE","features":[9]},{"name":"D3DHAL_STATESETCREATE","features":[9]},{"name":"D3DHAL_STATESETDELETE","features":[9]},{"name":"D3DHAL_STATESETEND","features":[9]},{"name":"D3DHAL_STATESETEXECUTE","features":[9]},{"name":"D3DHAL_TEXTURECREATEDATA","features":[9]},{"name":"D3DHAL_TEXTUREDESTROYDATA","features":[9]},{"name":"D3DHAL_TEXTUREGETSURFDATA","features":[9]},{"name":"D3DHAL_TEXTURESTATEBUF_SIZE","features":[9]},{"name":"D3DHAL_TEXTURESWAPDATA","features":[9]},{"name":"D3DHAL_TSS_MAXSTAGES","features":[9]},{"name":"D3DHAL_TSS_RENDERSTATEBASE","features":[9]},{"name":"D3DHAL_TSS_STATESPERSTAGE","features":[9]},{"name":"D3DHAL_VALIDATETEXTURESTAGESTATEDATA","features":[9]},{"name":"D3DINFINITEINSTRUCTIONS","features":[9]},{"name":"D3DKMDT_2DREGION","features":[9]},{"name":"D3DKMDT_3x4_COLORSPACE_TRANSFORM","features":[9]},{"name":"D3DKMDT_BITS_PER_COMPONENT_06","features":[9]},{"name":"D3DKMDT_BITS_PER_COMPONENT_08","features":[9]},{"name":"D3DKMDT_BITS_PER_COMPONENT_10","features":[9]},{"name":"D3DKMDT_BITS_PER_COMPONENT_12","features":[9]},{"name":"D3DKMDT_BITS_PER_COMPONENT_14","features":[9]},{"name":"D3DKMDT_BITS_PER_COMPONENT_16","features":[9]},{"name":"D3DKMDT_CB_INTENSITY","features":[9]},{"name":"D3DKMDT_CB_SCRGB","features":[9]},{"name":"D3DKMDT_CB_SRGB","features":[9]},{"name":"D3DKMDT_CB_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_CB_YCBCR","features":[9]},{"name":"D3DKMDT_CB_YPBPR","features":[9]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_MATRIX_V2","features":[9]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[9]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_BYPASS","features":[9]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_ENABLE","features":[9]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_NO_CHANGE","features":[9]},{"name":"D3DKMDT_COLOR_BASIS","features":[9]},{"name":"D3DKMDT_COLOR_COEFF_DYNAMIC_RANGES","features":[9]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DISPATCH_BOUNDARY","features":[9]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[9]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_GRANULARITY","features":[9]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_NONE","features":[9]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_SHADER_BOUNDARY","features":[9]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_BOUNDARY","features":[9]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_GROUP_BOUNDARY","features":[9]},{"name":"D3DKMDT_DISPLAYMODE_FLAGS","features":[9]},{"name":"D3DKMDT_ENUMCOFUNCMODALITY_PIVOT_TYPE","features":[9]},{"name":"D3DKMDT_EPT_NOPIVOT","features":[9]},{"name":"D3DKMDT_EPT_ROTATION","features":[9]},{"name":"D3DKMDT_EPT_SCALING","features":[9]},{"name":"D3DKMDT_EPT_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_EPT_VIDPNSOURCE","features":[9]},{"name":"D3DKMDT_EPT_VIDPNTARGET","features":[9]},{"name":"D3DKMDT_FREQUENCY_RANGE","features":[9]},{"name":"D3DKMDT_GAMMA_RAMP","features":[9]},{"name":"D3DKMDT_GDISURFACEDATA","features":[9]},{"name":"D3DKMDT_GDISURFACEFLAGS","features":[9]},{"name":"D3DKMDT_GDISURFACETYPE","features":[9]},{"name":"D3DKMDT_GDISURFACE_EXISTINGSYSMEM","features":[9]},{"name":"D3DKMDT_GDISURFACE_INVALID","features":[9]},{"name":"D3DKMDT_GDISURFACE_LOOKUPTABLE","features":[9]},{"name":"D3DKMDT_GDISURFACE_STAGING","features":[9]},{"name":"D3DKMDT_GDISURFACE_STAGING_CPUVISIBLE","features":[9]},{"name":"D3DKMDT_GDISURFACE_TEXTURE","features":[9]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE","features":[9]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE_CROSSADAPTER","features":[9]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CROSSADAPTER","features":[9]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[9]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_GRANULARITY","features":[9]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_NONE","features":[9]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PIXEL_BOUNDARY","features":[9]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PRIMITIVE_BOUNDARY","features":[9]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_SHADER_BOUNDARY","features":[9]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_TRIANGLE_BOUNDARY","features":[9]},{"name":"D3DKMDT_GRAPHICS_RENDERING_FORMAT","features":[9]},{"name":"D3DKMDT_GTFCOMPLIANCE","features":[9]},{"name":"D3DKMDT_GTF_COMPLIANT","features":[9]},{"name":"D3DKMDT_GTF_NOTCOMPLIANT","features":[9]},{"name":"D3DKMDT_GTF_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MACROVISION_OEMCOPYPROTECTION_SIZE","features":[9]},{"name":"D3DKMDT_MAX_OVERLAYS_BITCOUNT","features":[9]},{"name":"D3DKMDT_MAX_VIDPN_SOURCES_BITCOUNT","features":[9]},{"name":"D3DKMDT_MCC_ENFORCE","features":[9]},{"name":"D3DKMDT_MCC_IGNORE","features":[9]},{"name":"D3DKMDT_MCC_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MCO_DEFAULTMONITORPROFILE","features":[9]},{"name":"D3DKMDT_MCO_DRIVER","features":[9]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR","features":[9]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR_REGISTRYOVERRIDE","features":[9]},{"name":"D3DKMDT_MCO_SPECIFICCAP_REGISTRYOVERRIDE","features":[9]},{"name":"D3DKMDT_MCO_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MDT_OTHER","features":[9]},{"name":"D3DKMDT_MDT_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BASEBLOCK","features":[9]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BLOCKMAP","features":[9]},{"name":"D3DKMDT_MFRC_ACTIVESIZE","features":[9]},{"name":"D3DKMDT_MFRC_MAXPIXELRATE","features":[9]},{"name":"D3DKMDT_MFRC_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MOA_INTERRUPTIBLE","features":[9]},{"name":"D3DKMDT_MOA_NONE","features":[9]},{"name":"D3DKMDT_MOA_POLLED","features":[9]},{"name":"D3DKMDT_MOA_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MODE_PREFERENCE","features":[9]},{"name":"D3DKMDT_MODE_PRUNING_REASON","features":[9]},{"name":"D3DKMDT_MONITOR_CAPABILITIES_ORIGIN","features":[9]},{"name":"D3DKMDT_MONITOR_CONNECTIVITY_CHECKS","features":[9]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR","features":[9]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR_TYPE","features":[9]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE","features":[9]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE_CONSTRAINT","features":[9]},{"name":"D3DKMDT_MONITOR_ORIENTATION","features":[9]},{"name":"D3DKMDT_MONITOR_ORIENTATION_AWARENESS","features":[9]},{"name":"D3DKMDT_MONITOR_SOURCE_MODE","features":[9]},{"name":"D3DKMDT_MONITOR_TIMING_TYPE","features":[9]},{"name":"D3DKMDT_MO_0DEG","features":[9]},{"name":"D3DKMDT_MO_180DEG","features":[9]},{"name":"D3DKMDT_MO_270DEG","features":[9]},{"name":"D3DKMDT_MO_90DEG","features":[9]},{"name":"D3DKMDT_MO_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MPR_ALLCAPS","features":[9]},{"name":"D3DKMDT_MPR_CLONE_PATH_PRUNED","features":[9]},{"name":"D3DKMDT_MPR_DEFAULT_PROFILE_MONITOR_SOURCE_MODE","features":[9]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_FREQUENCY_RANGE","features":[9]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_SOURCE_MODE","features":[9]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_FREQUENCY_RANGE","features":[9]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_SOURCE_MODE","features":[9]},{"name":"D3DKMDT_MPR_DRIVER_RECOMMENDED_MONITOR_SOURCE_MODE","features":[9]},{"name":"D3DKMDT_MPR_MAXVALID","features":[9]},{"name":"D3DKMDT_MPR_MONITOR_FREQUENCY_RANGE_OVERRIDE","features":[9]},{"name":"D3DKMDT_MPR_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MP_NOTPREFERRED","features":[9]},{"name":"D3DKMDT_MP_PREFERRED","features":[9]},{"name":"D3DKMDT_MP_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_MTT_DEFAULTMONITORPROFILE","features":[9]},{"name":"D3DKMDT_MTT_DETAILED","features":[9]},{"name":"D3DKMDT_MTT_DRIVER","features":[9]},{"name":"D3DKMDT_MTT_ESTABLISHED","features":[9]},{"name":"D3DKMDT_MTT_EXTRASTANDARD","features":[9]},{"name":"D3DKMDT_MTT_STANDARD","features":[9]},{"name":"D3DKMDT_MTT_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_PALETTEDATA","features":[9]},{"name":"D3DKMDT_PIXEL_VALUE_ACCESS_MODE","features":[9]},{"name":"D3DKMDT_PREEMPTION_CAPS","features":[9]},{"name":"D3DKMDT_PVAM_DIRECT","features":[9]},{"name":"D3DKMDT_PVAM_PRESETPALETTE","features":[9]},{"name":"D3DKMDT_PVAM_SETTABLEPALETTE","features":[9]},{"name":"D3DKMDT_PVAM_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_RMT_GRAPHICS","features":[9]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO","features":[9]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO_ADVANCED_SCAN","features":[9]},{"name":"D3DKMDT_RMT_TEXT","features":[9]},{"name":"D3DKMDT_RMT_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_SHADOWSURFACEDATA","features":[9]},{"name":"D3DKMDT_SHAREDPRIMARYSURFACEDATA","features":[9]},{"name":"D3DKMDT_STAGINGSURFACEDATA","features":[9]},{"name":"D3DKMDT_STANDARDALLOCATION_GDISURFACE","features":[9]},{"name":"D3DKMDT_STANDARDALLOCATION_SHADOWSURFACE","features":[9]},{"name":"D3DKMDT_STANDARDALLOCATION_SHAREDPRIMARYSURFACE","features":[9]},{"name":"D3DKMDT_STANDARDALLOCATION_STAGINGSURFACE","features":[9]},{"name":"D3DKMDT_STANDARDALLOCATION_TYPE","features":[9]},{"name":"D3DKMDT_STANDARDALLOCATION_VGPU","features":[9]},{"name":"D3DKMDT_TEXT_RENDERING_FORMAT","features":[9]},{"name":"D3DKMDT_TRF_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VIDEO_OUTPUT_TECHNOLOGY","features":[9]},{"name":"D3DKMDT_VIDEO_PRESENT_SOURCE","features":[9]},{"name":"D3DKMDT_VIDEO_PRESENT_TARGET","features":[9,1]},{"name":"D3DKMDT_VIDEO_SIGNAL_INFO","features":[9]},{"name":"D3DKMDT_VIDEO_SIGNAL_STANDARD","features":[9]},{"name":"D3DKMDT_VIDPN_HW_CAPABILITY","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_CONTENT","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_SUPPORT","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_TYPE","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_IMPORTANCE","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION_SUPPORT","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING_SUPPORT","features":[9]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_TRANSFORMATION","features":[9]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE","features":[9]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE_TYPE","features":[9]},{"name":"D3DKMDT_VIDPN_TARGET_MODE","features":[9]},{"name":"D3DKMDT_VIRTUALGPUSURFACEDATA","features":[9]},{"name":"D3DKMDT_VOT_BNC","features":[9]},{"name":"D3DKMDT_VOT_COMPONENT_VIDEO","features":[9]},{"name":"D3DKMDT_VOT_COMPOSITE_VIDEO","features":[9]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EMBEDDED","features":[9]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EXTERNAL","features":[9]},{"name":"D3DKMDT_VOT_DVI","features":[9]},{"name":"D3DKMDT_VOT_D_JPN","features":[9]},{"name":"D3DKMDT_VOT_HD15","features":[9]},{"name":"D3DKMDT_VOT_HDMI","features":[9]},{"name":"D3DKMDT_VOT_INDIRECT_WIRED","features":[9]},{"name":"D3DKMDT_VOT_INTERNAL","features":[9]},{"name":"D3DKMDT_VOT_LVDS","features":[9]},{"name":"D3DKMDT_VOT_MIRACAST","features":[9]},{"name":"D3DKMDT_VOT_OTHER","features":[9]},{"name":"D3DKMDT_VOT_RCA_3COMPONENT","features":[9]},{"name":"D3DKMDT_VOT_RF","features":[9]},{"name":"D3DKMDT_VOT_SDI","features":[9]},{"name":"D3DKMDT_VOT_SDTVDONGLE","features":[9]},{"name":"D3DKMDT_VOT_SVIDEO","features":[9]},{"name":"D3DKMDT_VOT_SVIDEO_4PIN","features":[9]},{"name":"D3DKMDT_VOT_SVIDEO_7PIN","features":[9]},{"name":"D3DKMDT_VOT_UDI_EMBEDDED","features":[9]},{"name":"D3DKMDT_VOT_UDI_EXTERNAL","features":[9]},{"name":"D3DKMDT_VOT_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VPPC_GRAPHICS","features":[9]},{"name":"D3DKMDT_VPPC_NOTSPECIFIED","features":[9]},{"name":"D3DKMDT_VPPC_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VPPC_VIDEO","features":[9]},{"name":"D3DKMDT_VPPI_DENARY","features":[9]},{"name":"D3DKMDT_VPPI_NONARY","features":[9]},{"name":"D3DKMDT_VPPI_OCTONARY","features":[9]},{"name":"D3DKMDT_VPPI_PRIMARY","features":[9]},{"name":"D3DKMDT_VPPI_QUATERNARY","features":[9]},{"name":"D3DKMDT_VPPI_QUINARY","features":[9]},{"name":"D3DKMDT_VPPI_SECONDARY","features":[9]},{"name":"D3DKMDT_VPPI_SENARY","features":[9]},{"name":"D3DKMDT_VPPI_SEPTENARY","features":[9]},{"name":"D3DKMDT_VPPI_TERTIARY","features":[9]},{"name":"D3DKMDT_VPPI_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VPPMT_MACROVISION_APSTRIGGER","features":[9]},{"name":"D3DKMDT_VPPMT_MACROVISION_FULLSUPPORT","features":[9]},{"name":"D3DKMDT_VPPMT_NOPROTECTION","features":[9]},{"name":"D3DKMDT_VPPMT_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VPPR_IDENTITY","features":[9]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET180","features":[9]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET270","features":[9]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET90","features":[9]},{"name":"D3DKMDT_VPPR_NOTSPECIFIED","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE180","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET180","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET270","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET90","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE270","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET180","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET270","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET90","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE90","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET180","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET270","features":[9]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET90","features":[9]},{"name":"D3DKMDT_VPPR_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VPPR_UNPINNED","features":[9]},{"name":"D3DKMDT_VPPS_ASPECTRATIOCENTEREDMAX","features":[9]},{"name":"D3DKMDT_VPPS_CENTERED","features":[9]},{"name":"D3DKMDT_VPPS_CUSTOM","features":[9]},{"name":"D3DKMDT_VPPS_IDENTITY","features":[9]},{"name":"D3DKMDT_VPPS_NOTSPECIFIED","features":[9]},{"name":"D3DKMDT_VPPS_RESERVED1","features":[9]},{"name":"D3DKMDT_VPPS_STRETCHED","features":[9]},{"name":"D3DKMDT_VPPS_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VPPS_UNPINNED","features":[9]},{"name":"D3DKMDT_VSS_APPLE","features":[9]},{"name":"D3DKMDT_VSS_EIA_861","features":[9]},{"name":"D3DKMDT_VSS_EIA_861A","features":[9]},{"name":"D3DKMDT_VSS_EIA_861B","features":[9]},{"name":"D3DKMDT_VSS_IBM","features":[9]},{"name":"D3DKMDT_VSS_NTSC_443","features":[9]},{"name":"D3DKMDT_VSS_NTSC_J","features":[9]},{"name":"D3DKMDT_VSS_NTSC_M","features":[9]},{"name":"D3DKMDT_VSS_OTHER","features":[9]},{"name":"D3DKMDT_VSS_PAL_B","features":[9]},{"name":"D3DKMDT_VSS_PAL_B1","features":[9]},{"name":"D3DKMDT_VSS_PAL_D","features":[9]},{"name":"D3DKMDT_VSS_PAL_G","features":[9]},{"name":"D3DKMDT_VSS_PAL_H","features":[9]},{"name":"D3DKMDT_VSS_PAL_I","features":[9]},{"name":"D3DKMDT_VSS_PAL_K","features":[9]},{"name":"D3DKMDT_VSS_PAL_K1","features":[9]},{"name":"D3DKMDT_VSS_PAL_L","features":[9]},{"name":"D3DKMDT_VSS_PAL_M","features":[9]},{"name":"D3DKMDT_VSS_PAL_N","features":[9]},{"name":"D3DKMDT_VSS_PAL_NC","features":[9]},{"name":"D3DKMDT_VSS_SECAM_B","features":[9]},{"name":"D3DKMDT_VSS_SECAM_D","features":[9]},{"name":"D3DKMDT_VSS_SECAM_G","features":[9]},{"name":"D3DKMDT_VSS_SECAM_H","features":[9]},{"name":"D3DKMDT_VSS_SECAM_K","features":[9]},{"name":"D3DKMDT_VSS_SECAM_K1","features":[9]},{"name":"D3DKMDT_VSS_SECAM_L","features":[9]},{"name":"D3DKMDT_VSS_SECAM_L1","features":[9]},{"name":"D3DKMDT_VSS_UNINITIALIZED","features":[9]},{"name":"D3DKMDT_VSS_VESA_CVT","features":[9]},{"name":"D3DKMDT_VSS_VESA_DMT","features":[9]},{"name":"D3DKMDT_VSS_VESA_GTF","features":[9]},{"name":"D3DKMDT_WIRE_FORMAT_AND_PREFERENCE","features":[9]},{"name":"D3DKMTAcquireKeyedMutex","features":[9,1]},{"name":"D3DKMTAcquireKeyedMutex2","features":[9,1]},{"name":"D3DKMTAdjustFullscreenGamma","features":[9,1]},{"name":"D3DKMTCancelPresents","features":[9,1]},{"name":"D3DKMTChangeSurfacePointer","features":[9,1,12]},{"name":"D3DKMTChangeVideoMemoryReservation","features":[9,1]},{"name":"D3DKMTCheckExclusiveOwnership","features":[9,1]},{"name":"D3DKMTCheckMonitorPowerState","features":[9,1]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport","features":[9,1]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport2","features":[9,1]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport3","features":[9,1]},{"name":"D3DKMTCheckOcclusion","features":[9,1]},{"name":"D3DKMTCheckSharedResourceAccess","features":[9,1]},{"name":"D3DKMTCheckVidPnExclusiveOwnership","features":[9,1]},{"name":"D3DKMTCloseAdapter","features":[9,1]},{"name":"D3DKMTConfigureSharedResource","features":[9,1]},{"name":"D3DKMTCreateAllocation","features":[9,1]},{"name":"D3DKMTCreateAllocation2","features":[9,1]},{"name":"D3DKMTCreateContext","features":[9,1]},{"name":"D3DKMTCreateContextVirtual","features":[9,1]},{"name":"D3DKMTCreateDCFromMemory","features":[9,1,12]},{"name":"D3DKMTCreateDevice","features":[9,1]},{"name":"D3DKMTCreateHwContext","features":[9,1]},{"name":"D3DKMTCreateHwQueue","features":[9,1]},{"name":"D3DKMTCreateKeyedMutex","features":[9,1]},{"name":"D3DKMTCreateKeyedMutex2","features":[9,1]},{"name":"D3DKMTCreateOutputDupl","features":[9,1]},{"name":"D3DKMTCreateOverlay","features":[9,1]},{"name":"D3DKMTCreatePagingQueue","features":[9,1]},{"name":"D3DKMTCreateProtectedSession","features":[9,1]},{"name":"D3DKMTCreateSynchronizationObject","features":[9,1]},{"name":"D3DKMTCreateSynchronizationObject2","features":[9,1]},{"name":"D3DKMTDestroyAllocation","features":[9,1]},{"name":"D3DKMTDestroyAllocation2","features":[9,1]},{"name":"D3DKMTDestroyContext","features":[9,1]},{"name":"D3DKMTDestroyDCFromMemory","features":[9,1,12]},{"name":"D3DKMTDestroyDevice","features":[9,1]},{"name":"D3DKMTDestroyHwContext","features":[9,1]},{"name":"D3DKMTDestroyHwQueue","features":[9,1]},{"name":"D3DKMTDestroyKeyedMutex","features":[9,1]},{"name":"D3DKMTDestroyOutputDupl","features":[9,1]},{"name":"D3DKMTDestroyOverlay","features":[9,1]},{"name":"D3DKMTDestroyPagingQueue","features":[9,1]},{"name":"D3DKMTDestroyProtectedSession","features":[9,1]},{"name":"D3DKMTDestroySynchronizationObject","features":[9,1]},{"name":"D3DKMTEnumAdapters","features":[9,1]},{"name":"D3DKMTEnumAdapters2","features":[9,1]},{"name":"D3DKMTEnumAdapters3","features":[9,1]},{"name":"D3DKMTEscape","features":[9,1]},{"name":"D3DKMTEvict","features":[9,1]},{"name":"D3DKMTFlipOverlay","features":[9,1]},{"name":"D3DKMTFlushHeapTransitions","features":[9,1]},{"name":"D3DKMTFreeGpuVirtualAddress","features":[9,1]},{"name":"D3DKMTGetAllocationPriority","features":[9,1]},{"name":"D3DKMTGetContextInProcessSchedulingPriority","features":[9,1]},{"name":"D3DKMTGetContextSchedulingPriority","features":[9,1]},{"name":"D3DKMTGetDWMVerticalBlankEvent","features":[9,1]},{"name":"D3DKMTGetDeviceState","features":[9,1]},{"name":"D3DKMTGetDisplayModeList","features":[9,1]},{"name":"D3DKMTGetMultiPlaneOverlayCaps","features":[9,1]},{"name":"D3DKMTGetMultisampleMethodList","features":[9,1]},{"name":"D3DKMTGetOverlayState","features":[9,1]},{"name":"D3DKMTGetPostCompositionCaps","features":[9,1]},{"name":"D3DKMTGetPresentHistory","features":[9,1]},{"name":"D3DKMTGetPresentQueueEvent","features":[9,1]},{"name":"D3DKMTGetProcessDeviceRemovalSupport","features":[9,1]},{"name":"D3DKMTGetProcessSchedulingPriorityClass","features":[9,1]},{"name":"D3DKMTGetResourcePresentPrivateDriverData","features":[9,1]},{"name":"D3DKMTGetRuntimeData","features":[9,1]},{"name":"D3DKMTGetScanLine","features":[9,1]},{"name":"D3DKMTGetSharedPrimaryHandle","features":[9,1]},{"name":"D3DKMTGetSharedResourceAdapterLuid","features":[9,1]},{"name":"D3DKMTInvalidateActiveVidPn","features":[9,1]},{"name":"D3DKMTInvalidateCache","features":[9,1]},{"name":"D3DKMTLock","features":[9,1]},{"name":"D3DKMTLock2","features":[9,1]},{"name":"D3DKMTMakeResident","features":[9,1]},{"name":"D3DKMTMapGpuVirtualAddress","features":[9,1]},{"name":"D3DKMTMarkDeviceAsError","features":[9,1]},{"name":"D3DKMTOfferAllocations","features":[9,1]},{"name":"D3DKMTOpenAdapterFromDeviceName","features":[9,1]},{"name":"D3DKMTOpenAdapterFromGdiDisplayName","features":[9,1]},{"name":"D3DKMTOpenAdapterFromHdc","features":[9,1,12]},{"name":"D3DKMTOpenAdapterFromLuid","features":[9,1]},{"name":"D3DKMTOpenKeyedMutex","features":[9,1]},{"name":"D3DKMTOpenKeyedMutex2","features":[9,1]},{"name":"D3DKMTOpenKeyedMutexFromNtHandle","features":[9,1]},{"name":"D3DKMTOpenNtHandleFromName","features":[2,9,1]},{"name":"D3DKMTOpenProtectedSessionFromNtHandle","features":[9,1]},{"name":"D3DKMTOpenResource","features":[9,1]},{"name":"D3DKMTOpenResource2","features":[9,1]},{"name":"D3DKMTOpenResourceFromNtHandle","features":[9,1]},{"name":"D3DKMTOpenSyncObjectFromNtHandle","features":[9,1]},{"name":"D3DKMTOpenSyncObjectFromNtHandle2","features":[9,1]},{"name":"D3DKMTOpenSyncObjectNtHandleFromName","features":[2,9,1]},{"name":"D3DKMTOpenSynchronizationObject","features":[9,1]},{"name":"D3DKMTOutputDuplGetFrameInfo","features":[9,1]},{"name":"D3DKMTOutputDuplGetMetaData","features":[9,1]},{"name":"D3DKMTOutputDuplGetPointerShapeData","features":[9,1]},{"name":"D3DKMTOutputDuplPresent","features":[9,1]},{"name":"D3DKMTOutputDuplPresentToHwQueue","features":[9,1]},{"name":"D3DKMTOutputDuplReleaseFrame","features":[9,1]},{"name":"D3DKMTPollDisplayChildren","features":[9,1]},{"name":"D3DKMTPresent","features":[9,1]},{"name":"D3DKMTPresentMultiPlaneOverlay","features":[9,1]},{"name":"D3DKMTPresentMultiPlaneOverlay2","features":[9,1]},{"name":"D3DKMTPresentMultiPlaneOverlay3","features":[9,1]},{"name":"D3DKMTPresentRedirected","features":[9,1]},{"name":"D3DKMTQueryAdapterInfo","features":[9,1]},{"name":"D3DKMTQueryAllocationResidency","features":[9,1]},{"name":"D3DKMTQueryClockCalibration","features":[9,1]},{"name":"D3DKMTQueryFSEBlock","features":[9,1]},{"name":"D3DKMTQueryProcessOfferInfo","features":[9,1]},{"name":"D3DKMTQueryProtectedSessionInfoFromNtHandle","features":[9,1]},{"name":"D3DKMTQueryProtectedSessionStatus","features":[9,1]},{"name":"D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName","features":[9,1]},{"name":"D3DKMTQueryResourceInfo","features":[9,1]},{"name":"D3DKMTQueryResourceInfoFromNtHandle","features":[9,1]},{"name":"D3DKMTQueryStatistics","features":[9,1]},{"name":"D3DKMTQueryVidPnExclusiveOwnership","features":[9,1]},{"name":"D3DKMTQueryVideoMemoryInfo","features":[9,1]},{"name":"D3DKMTReclaimAllocations","features":[9,1]},{"name":"D3DKMTReclaimAllocations2","features":[9,1]},{"name":"D3DKMTRegisterTrimNotification","features":[9,1]},{"name":"D3DKMTRegisterVailProcess","features":[9,1]},{"name":"D3DKMTReleaseKeyedMutex","features":[9,1]},{"name":"D3DKMTReleaseKeyedMutex2","features":[9,1]},{"name":"D3DKMTReleaseProcessVidPnSourceOwners","features":[9,1]},{"name":"D3DKMTRender","features":[9,1]},{"name":"D3DKMTReserveGpuVirtualAddress","features":[9,1]},{"name":"D3DKMTSetAllocationPriority","features":[9,1]},{"name":"D3DKMTSetContextInProcessSchedulingPriority","features":[9,1]},{"name":"D3DKMTSetContextSchedulingPriority","features":[9,1]},{"name":"D3DKMTSetDisplayMode","features":[9,1]},{"name":"D3DKMTSetDisplayPrivateDriverFormat","features":[9,1]},{"name":"D3DKMTSetFSEBlock","features":[9,1]},{"name":"D3DKMTSetGammaRamp","features":[9,1]},{"name":"D3DKMTSetHwProtectionTeardownRecovery","features":[9,1]},{"name":"D3DKMTSetMonitorColorSpaceTransform","features":[9,1]},{"name":"D3DKMTSetProcessSchedulingPriorityClass","features":[9,1]},{"name":"D3DKMTSetQueuedLimit","features":[9,1]},{"name":"D3DKMTSetStablePowerState","features":[9,1]},{"name":"D3DKMTSetSyncRefreshCountWaitTarget","features":[9,1]},{"name":"D3DKMTSetVidPnSourceHwProtection","features":[9,1]},{"name":"D3DKMTSetVidPnSourceOwner","features":[9,1]},{"name":"D3DKMTSetVidPnSourceOwner1","features":[9,1]},{"name":"D3DKMTSetVidPnSourceOwner2","features":[9,1]},{"name":"D3DKMTShareObjects","features":[2,9,1]},{"name":"D3DKMTSharedPrimaryLockNotification","features":[9,1]},{"name":"D3DKMTSharedPrimaryUnLockNotification","features":[9,1]},{"name":"D3DKMTSignalSynchronizationObject","features":[9,1]},{"name":"D3DKMTSignalSynchronizationObject2","features":[9,1]},{"name":"D3DKMTSignalSynchronizationObjectFromCpu","features":[9,1]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu","features":[9,1]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu2","features":[9,1]},{"name":"D3DKMTSubmitCommand","features":[9,1]},{"name":"D3DKMTSubmitCommandToHwQueue","features":[9,1]},{"name":"D3DKMTSubmitPresentBltToHwQueue","features":[9,1]},{"name":"D3DKMTSubmitPresentToHwQueue","features":[9,1]},{"name":"D3DKMTSubmitSignalSyncObjectsToHwQueue","features":[9,1]},{"name":"D3DKMTSubmitWaitForSyncObjectsToHwQueue","features":[9,1]},{"name":"D3DKMTTrimProcessCommitment","features":[9,1]},{"name":"D3DKMTUnlock","features":[9,1]},{"name":"D3DKMTUnlock2","features":[9,1]},{"name":"D3DKMTUnregisterTrimNotification","features":[9,1]},{"name":"D3DKMTUpdateAllocationProperty","features":[9,1]},{"name":"D3DKMTUpdateGpuVirtualAddress","features":[9,1]},{"name":"D3DKMTUpdateOverlay","features":[9,1]},{"name":"D3DKMTWaitForIdle","features":[9,1]},{"name":"D3DKMTWaitForSynchronizationObject","features":[9,1]},{"name":"D3DKMTWaitForSynchronizationObject2","features":[9,1]},{"name":"D3DKMTWaitForSynchronizationObjectFromCpu","features":[9,1]},{"name":"D3DKMTWaitForSynchronizationObjectFromGpu","features":[9,1]},{"name":"D3DKMTWaitForVerticalBlankEvent","features":[9,1]},{"name":"D3DKMTWaitForVerticalBlankEvent2","features":[9,1]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX","features":[9]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX2","features":[9]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_ESCAPE","features":[9,1]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE","features":[9]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_EXTRA_CCD_DATABASE_INFO","features":[9]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_MODES_PRUNED","features":[9]},{"name":"D3DKMT_ADAPTERADDRESS","features":[9]},{"name":"D3DKMT_ADAPTERINFO","features":[9,1]},{"name":"D3DKMT_ADAPTERREGISTRYINFO","features":[9]},{"name":"D3DKMT_ADAPTERTYPE","features":[9]},{"name":"D3DKMT_ADAPTER_PERFDATA","features":[9]},{"name":"D3DKMT_ADAPTER_PERFDATACAPS","features":[9]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION","features":[9]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_DATA","features":[9]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_TYPE","features":[9]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_FLAGS","features":[9]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_TRIM_INTERVAL","features":[9]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_FLAGS","features":[9]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_TRIM_INTERVAL","features":[9]},{"name":"D3DKMT_ADJUSTFULLSCREENGAMMA","features":[9]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS","features":[9]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_NOTRESIDENT","features":[9]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINGPUMEMORY","features":[9]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINSHAREDMEMORY","features":[9]},{"name":"D3DKMT_AUXILIARYPRESENTINFO","features":[9]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE","features":[9]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE_FLIPMANAGER","features":[9]},{"name":"D3DKMT_AllocationPriorityClassHigh","features":[9]},{"name":"D3DKMT_AllocationPriorityClassLow","features":[9]},{"name":"D3DKMT_AllocationPriorityClassMaximum","features":[9]},{"name":"D3DKMT_AllocationPriorityClassMinimum","features":[9]},{"name":"D3DKMT_AllocationPriorityClassNormal","features":[9]},{"name":"D3DKMT_BDDFALLBACK_CTL","features":[9,1]},{"name":"D3DKMT_BLOCKLIST_INFO","features":[9]},{"name":"D3DKMT_BLTMODEL_PRESENTHISTORYTOKEN","features":[9,1]},{"name":"D3DKMT_BRIGHTNESS_INFO","features":[9,1]},{"name":"D3DKMT_BRIGHTNESS_INFO_BEGIN_MANUAL_MODE","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_END_MANUAL_MODE","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_CAPS","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_NIT_RANGES","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_POSSIBLE_LEVELS","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_REDUCTION","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_OPTIMIZATION","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_STATE","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_TOGGLE_LOGGING","features":[9]},{"name":"D3DKMT_BRIGHTNESS_INFO_TYPE","features":[9]},{"name":"D3DKMT_BRIGHTNESS_POSSIBLE_LEVELS","features":[9]},{"name":"D3DKMT_BUDGETCHANGENOTIFICATION","features":[9]},{"name":"D3DKMT_CANCEL_PRESENTS","features":[9,1]},{"name":"D3DKMT_CANCEL_PRESENTS_FLAGS","features":[9]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION","features":[9]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_CANCEL_FROM","features":[9]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_REPROGRAM_INTERRUPT","features":[9]},{"name":"D3DKMT_CHANGESURFACEPOINTER","features":[9,1,12]},{"name":"D3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[9,1]},{"name":"D3DKMT_CHECKMONITORPOWERSTATE","features":[9]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[9,1]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[9,1]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[9,1]},{"name":"D3DKMT_CHECKOCCLUSION","features":[9,1]},{"name":"D3DKMT_CHECKSHAREDRESOURCEACCESS","features":[9]},{"name":"D3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[9]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE","features":[9,1]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE2","features":[9,1]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE3","features":[9,1]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO","features":[9]},{"name":"D3DKMT_CLIENTHINT","features":[9]},{"name":"D3DKMT_CLIENTHINT_11ON12","features":[9]},{"name":"D3DKMT_CLIENTHINT_9ON12","features":[9]},{"name":"D3DKMT_CLIENTHINT_CDD","features":[9]},{"name":"D3DKMT_CLIENTHINT_CLON12","features":[9]},{"name":"D3DKMT_CLIENTHINT_CUDA","features":[9]},{"name":"D3DKMT_CLIENTHINT_DML_PYTORCH","features":[9]},{"name":"D3DKMT_CLIENTHINT_DML_TENSORFLOW","features":[9]},{"name":"D3DKMT_CLIENTHINT_DX10","features":[9]},{"name":"D3DKMT_CLIENTHINT_DX11","features":[9]},{"name":"D3DKMT_CLIENTHINT_DX12","features":[9]},{"name":"D3DKMT_CLIENTHINT_DX7","features":[9]},{"name":"D3DKMT_CLIENTHINT_DX8","features":[9]},{"name":"D3DKMT_CLIENTHINT_DX9","features":[9]},{"name":"D3DKMT_CLIENTHINT_GLON12","features":[9]},{"name":"D3DKMT_CLIENTHINT_MAX","features":[9]},{"name":"D3DKMT_CLIENTHINT_MFT_ENCODE","features":[9]},{"name":"D3DKMT_CLIENTHINT_ONEAPI_LEVEL0","features":[9]},{"name":"D3DKMT_CLIENTHINT_OPENCL","features":[9]},{"name":"D3DKMT_CLIENTHINT_OPENGL","features":[9]},{"name":"D3DKMT_CLIENTHINT_RESERVED","features":[9]},{"name":"D3DKMT_CLIENTHINT_UNKNOWN","features":[9]},{"name":"D3DKMT_CLIENTHINT_VULKAN","features":[9]},{"name":"D3DKMT_CLOSEADAPTER","features":[9]},{"name":"D3DKMT_COMPOSITION_PRESENTHISTORYTOKEN","features":[9]},{"name":"D3DKMT_CONFIGURESHAREDRESOURCE","features":[9,1]},{"name":"D3DKMT_CONNECT_DOORBELL","features":[9]},{"name":"D3DKMT_CONNECT_DOORBELL_FLAGS","features":[9]},{"name":"D3DKMT_CPDRIVERNAME","features":[9]},{"name":"D3DKMT_CREATEALLOCATION","features":[9,1]},{"name":"D3DKMT_CREATEALLOCATIONFLAGS","features":[9]},{"name":"D3DKMT_CREATECONTEXT","features":[9]},{"name":"D3DKMT_CREATECONTEXTVIRTUAL","features":[9]},{"name":"D3DKMT_CREATEDCFROMMEMORY","features":[9,1,12]},{"name":"D3DKMT_CREATEDEVICE","features":[9]},{"name":"D3DKMT_CREATEDEVICEFLAGS","features":[9]},{"name":"D3DKMT_CREATEHWCONTEXT","features":[9]},{"name":"D3DKMT_CREATEHWQUEUE","features":[9]},{"name":"D3DKMT_CREATEKEYEDMUTEX","features":[9]},{"name":"D3DKMT_CREATEKEYEDMUTEX2","features":[9]},{"name":"D3DKMT_CREATEKEYEDMUTEX2_FLAGS","features":[9]},{"name":"D3DKMT_CREATENATIVEFENCE","features":[9]},{"name":"D3DKMT_CREATEOVERLAY","features":[9]},{"name":"D3DKMT_CREATEPAGINGQUEUE","features":[9]},{"name":"D3DKMT_CREATEPROTECTEDSESSION","features":[9]},{"name":"D3DKMT_CREATESTANDARDALLOCATION","features":[9]},{"name":"D3DKMT_CREATESTANDARDALLOCATIONFLAGS","features":[9]},{"name":"D3DKMT_CREATESYNCFILE","features":[9]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[9,1]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[9,1]},{"name":"D3DKMT_CREATE_DOORBELL","features":[9]},{"name":"D3DKMT_CREATE_DOORBELL_FLAGS","features":[9]},{"name":"D3DKMT_CREATE_OUTPUTDUPL","features":[9,1]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT","features":[9]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER","features":[9]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_COPY","features":[9]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_NONE","features":[9]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_SCANOUT","features":[9]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_TEXTURE","features":[9]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_HEIGHT_ALIGNMENT","features":[9]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_PITCH_ALIGNMENT","features":[9]},{"name":"D3DKMT_CURRENTDISPLAYMODE","features":[9]},{"name":"D3DKMT_ClientPagingBuffer","features":[9]},{"name":"D3DKMT_ClientRenderBuffer","features":[9]},{"name":"D3DKMT_DEBUG_SNAPSHOT_ESCAPE","features":[9]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_DOWNWARD","features":[9]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_PASS","features":[9]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_UPWARD","features":[9]},{"name":"D3DKMT_DEFRAG_ESCAPE_GET_FRAGMENTATION_STATS","features":[9]},{"name":"D3DKMT_DEFRAG_ESCAPE_OPERATION","features":[9]},{"name":"D3DKMT_DEFRAG_ESCAPE_VERIFY_TRANSFER","features":[9]},{"name":"D3DKMT_DESTROYALLOCATION","features":[9]},{"name":"D3DKMT_DESTROYALLOCATION2","features":[9]},{"name":"D3DKMT_DESTROYCONTEXT","features":[9]},{"name":"D3DKMT_DESTROYDCFROMMEMORY","features":[9,1,12]},{"name":"D3DKMT_DESTROYDEVICE","features":[9]},{"name":"D3DKMT_DESTROYHWCONTEXT","features":[9]},{"name":"D3DKMT_DESTROYHWQUEUE","features":[9]},{"name":"D3DKMT_DESTROYKEYEDMUTEX","features":[9]},{"name":"D3DKMT_DESTROYOVERLAY","features":[9]},{"name":"D3DKMT_DESTROYPROTECTEDSESSION","features":[9]},{"name":"D3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[9]},{"name":"D3DKMT_DESTROY_DOORBELL","features":[9]},{"name":"D3DKMT_DESTROY_OUTPUTDUPL","features":[9,1]},{"name":"D3DKMT_DEVICEESCAPE_RESTOREGAMMA","features":[9]},{"name":"D3DKMT_DEVICEESCAPE_TYPE","features":[9]},{"name":"D3DKMT_DEVICEESCAPE_VIDPNFROMALLOCATION","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_ACTIVE","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAFAULT","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAPAGEFAULT","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_OUTOFMEMORY","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_HUNG","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_RESET","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_STATE","features":[9]},{"name":"D3DKMT_DEVICEEXECUTION_STOPPED","features":[9]},{"name":"D3DKMT_DEVICEPAGEFAULT_STATE","features":[9]},{"name":"D3DKMT_DEVICEPRESENT_QUEUE_STATE","features":[9,1]},{"name":"D3DKMT_DEVICEPRESENT_STATE","features":[9]},{"name":"D3DKMT_DEVICEPRESENT_STATE_DWM","features":[9]},{"name":"D3DKMT_DEVICERESET_STATE","features":[9]},{"name":"D3DKMT_DEVICESTATE_EXECUTION","features":[9]},{"name":"D3DKMT_DEVICESTATE_PAGE_FAULT","features":[9]},{"name":"D3DKMT_DEVICESTATE_PRESENT","features":[9]},{"name":"D3DKMT_DEVICESTATE_PRESENT_DWM","features":[9]},{"name":"D3DKMT_DEVICESTATE_PRESENT_QUEUE","features":[9]},{"name":"D3DKMT_DEVICESTATE_RESET","features":[9]},{"name":"D3DKMT_DEVICESTATE_TYPE","features":[9]},{"name":"D3DKMT_DEVICE_ERROR_REASON","features":[9]},{"name":"D3DKMT_DEVICE_ERROR_REASON_DRIVER_ERROR","features":[9]},{"name":"D3DKMT_DEVICE_ERROR_REASON_GENERIC","features":[9]},{"name":"D3DKMT_DEVICE_ESCAPE","features":[9]},{"name":"D3DKMT_DEVICE_IDS","features":[9]},{"name":"D3DKMT_DIRECTFLIP_SUPPORT","features":[9,1]},{"name":"D3DKMT_DIRTYREGIONS","features":[9,1]},{"name":"D3DKMT_DISPLAYMODE","features":[9]},{"name":"D3DKMT_DISPLAYMODELIST","features":[9]},{"name":"D3DKMT_DISPLAY_CAPS","features":[9]},{"name":"D3DKMT_DISPLAY_UMD_FILENAMEINFO","features":[9]},{"name":"D3DKMT_DLIST_DRIVER_NAME","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_COFUNCPATHMODALITY_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_SOURCEMODESET_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_GET_ACTIVEVIDPN_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_GET_LASTCLIENTCOMMITTEDVIDPN_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_GET_MONITORS_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_GET_SUMMARY_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VERSION_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_SOURCES_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_TARGETS_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_COMMITTED_VIDPNS_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_RECOMMENDED_VIDPNS_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MODECHANGE_REQUESTS_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MONITOR_PRESENCE_EVENTS_INFO","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_UNINITIALIZED","features":[9]},{"name":"D3DKMT_DMMESCAPETYPE_VIDPN_MGR_DIAGNOSTICS","features":[9]},{"name":"D3DKMT_DMM_ESCAPE","features":[9]},{"name":"D3DKMT_DOD_SET_DIRTYRECT_MODE","features":[9,1]},{"name":"D3DKMT_DRIVERCAPS_EXT","features":[9]},{"name":"D3DKMT_DRIVERVERSION","features":[9]},{"name":"D3DKMT_DRIVER_DESCRIPTION","features":[9]},{"name":"D3DKMT_DeferredCommandBuffer","features":[9]},{"name":"D3DKMT_DeviceCommandBuffer","features":[9]},{"name":"D3DKMT_DmaPacketTypeMax","features":[9]},{"name":"D3DKMT_ENUMADAPTERS","features":[9,1]},{"name":"D3DKMT_ENUMADAPTERS2","features":[9,1]},{"name":"D3DKMT_ENUMADAPTERS3","features":[9,1]},{"name":"D3DKMT_ENUMADAPTERS_FILTER","features":[9]},{"name":"D3DKMT_ESCAPE","features":[9]},{"name":"D3DKMT_ESCAPETYPE","features":[9]},{"name":"D3DKMT_ESCAPE_ACTIVATE_SPECIFIC_DIAG","features":[9]},{"name":"D3DKMT_ESCAPE_ADAPTER_VERIFIER_OPTION","features":[9]},{"name":"D3DKMT_ESCAPE_BDD_FALLBACK","features":[9]},{"name":"D3DKMT_ESCAPE_BDD_PNP","features":[9]},{"name":"D3DKMT_ESCAPE_BRIGHTNESS","features":[9]},{"name":"D3DKMT_ESCAPE_CCD_DATABASE","features":[9]},{"name":"D3DKMT_ESCAPE_DEBUG_SNAPSHOT","features":[9]},{"name":"D3DKMT_ESCAPE_DEVICE","features":[9]},{"name":"D3DKMT_ESCAPE_DIAGNOSTICS","features":[9]},{"name":"D3DKMT_ESCAPE_DMM","features":[9]},{"name":"D3DKMT_ESCAPE_DOD_SET_DIRTYRECT_MODE","features":[9]},{"name":"D3DKMT_ESCAPE_DRIVERPRIVATE","features":[9]},{"name":"D3DKMT_ESCAPE_DRT_TEST","features":[9]},{"name":"D3DKMT_ESCAPE_EDID_CACHE","features":[9]},{"name":"D3DKMT_ESCAPE_FORCE_BDDFALLBACK_HEADLESS","features":[9]},{"name":"D3DKMT_ESCAPE_GET_DISPLAY_CONFIGURATIONS","features":[9]},{"name":"D3DKMT_ESCAPE_GET_EXTERNAL_DIAGNOSTICS","features":[9]},{"name":"D3DKMT_ESCAPE_HISTORY_BUFFER_STATUS","features":[9]},{"name":"D3DKMT_ESCAPE_IDD_REQUEST","features":[9]},{"name":"D3DKMT_ESCAPE_LOG_CODEPOINT_PACKET","features":[9]},{"name":"D3DKMT_ESCAPE_LOG_USERMODE_DAIG_PACKET","features":[9]},{"name":"D3DKMT_ESCAPE_MIRACAST_ADAPTER_DIAG_INFO","features":[9]},{"name":"D3DKMT_ESCAPE_MIRACAST_DISPLAY_REQUEST","features":[9]},{"name":"D3DKMT_ESCAPE_MODES_PRUNED_OUT","features":[9]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_DIAGNOSTICS","features":[9]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_SNAPSHOT","features":[9]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_COMMAND","features":[9]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_DEFAULT","features":[9]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_CPU","features":[9]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_GPU","features":[9]},{"name":"D3DKMT_ESCAPE_PROCESS_VERIFIER_OPTION","features":[9]},{"name":"D3DKMT_ESCAPE_QUERY_DMA_REMAPPING_STATUS","features":[9]},{"name":"D3DKMT_ESCAPE_QUERY_IOMMU_STATUS","features":[9]},{"name":"D3DKMT_ESCAPE_REQUEST_MACHINE_CRASH","features":[9]},{"name":"D3DKMT_ESCAPE_SOFTGPU_ENABLE_DISABLE_HMD","features":[9]},{"name":"D3DKMT_ESCAPE_TDRDBGCTRL","features":[9]},{"name":"D3DKMT_ESCAPE_VIDMM","features":[9]},{"name":"D3DKMT_ESCAPE_VIDSCH","features":[9]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE","features":[9,1]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE","features":[9]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_BASE_DESKTOP_DURATION","features":[9]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_PROCESS_BOOST_ELIGIBLE","features":[9]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_VSYNC_MULTIPLIER","features":[9]},{"name":"D3DKMT_ESCAPE_WHQL_INFO","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_BDD_FALLBACK","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_COLOR_PROFILE_INFO","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_DDA_TEST_CTL","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_DISPBROKER_TEST","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_DPI_INFO","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_HIP_DEVICE_INFO","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_PRESENTER_VIEW_INFO","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_QUERY_CD_ROTATION_BLOCK","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_SET_DIMMED_STATE","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_SPECIALIZED_DISPLAY_TEST","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_START","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_SYSTEM_DPI","features":[9]},{"name":"D3DKMT_ESCAPE_WIN32K_USER_DETECTED_BLACK_SCREEN","features":[9]},{"name":"D3DKMT_EVICT","features":[9]},{"name":"D3DKMT_EVICTION_CRITERIA","features":[9]},{"name":"D3DKMT_FENCE_PRESENTHISTORYTOKEN","features":[9]},{"name":"D3DKMT_FLIPINFOFLAGS","features":[9]},{"name":"D3DKMT_FLIPMANAGER_AUXILIARYPRESENTINFO","features":[9,1]},{"name":"D3DKMT_FLIPMANAGER_PRESENTHISTORYTOKEN","features":[9]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE","features":[9]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_COMPLETE","features":[9]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_SUBMITTED","features":[9]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKEN","features":[9,1]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKENFLAGS","features":[9]},{"name":"D3DKMT_FLIPOVERLAY","features":[9]},{"name":"D3DKMT_FLIPQUEUEINFO","features":[9]},{"name":"D3DKMT_FLUSHHEAPTRANSITIONS","features":[9]},{"name":"D3DKMT_FREEGPUVIRTUALADDRESS","features":[9]},{"name":"D3DKMT_GDIMODEL_PRESENTHISTORYTOKEN","features":[9,1]},{"name":"D3DKMT_GDIMODEL_SYSMEM_PRESENTHISTORYTOKEN","features":[9]},{"name":"D3DKMT_GDI_STYLE_HANDLE_DECORATION","features":[9]},{"name":"D3DKMT_GETALLOCATIONPRIORITY","features":[9]},{"name":"D3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[9]},{"name":"D3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[9]},{"name":"D3DKMT_GETDEVICESTATE","features":[9,1]},{"name":"D3DKMT_GETDISPLAYMODELIST","features":[9]},{"name":"D3DKMT_GETMULTISAMPLEMETHODLIST","features":[9]},{"name":"D3DKMT_GETOVERLAYSTATE","features":[9,1]},{"name":"D3DKMT_GETPRESENTHISTORY","features":[9,1]},{"name":"D3DKMT_GETPRESENTHISTORY_MAXTOKENS","features":[9]},{"name":"D3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[9,1]},{"name":"D3DKMT_GETRUNTIMEDATA","features":[9]},{"name":"D3DKMT_GETSCANLINE","features":[9,1]},{"name":"D3DKMT_GETSHAREDPRIMARYHANDLE","features":[9]},{"name":"D3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[9,1]},{"name":"D3DKMT_GETVERTICALBLANKEVENT","features":[9]},{"name":"D3DKMT_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[9,1]},{"name":"D3DKMT_GET_GPUMMU_CAPS","features":[9,1]},{"name":"D3DKMT_GET_MULTIPLANE_OVERLAY_CAPS","features":[9]},{"name":"D3DKMT_GET_POST_COMPOSITION_CAPS","features":[9]},{"name":"D3DKMT_GET_PTE","features":[9,1]},{"name":"D3DKMT_GET_PTE_MAX","features":[9]},{"name":"D3DKMT_GET_QUEUEDLIMIT_PRESENT","features":[9]},{"name":"D3DKMT_GET_SEGMENT_CAPS","features":[9,1]},{"name":"D3DKMT_GPUMMU_CAPS","features":[9]},{"name":"D3DKMT_GPUVERSION","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_STATE","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_TYPE","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_HIGH_PERFORMANCE","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_MINIMUM_POWER","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_NOT_FOUND","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNINITIALIZED","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNSPECIFIED","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_USER_SPECIFIED_GPU","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_DX_DATABASE","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_IHV_DLIST","features":[9]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_USER_PREFERENCE","features":[9]},{"name":"D3DKMT_HISTORY_BUFFER_STATUS","features":[9,1]},{"name":"D3DKMT_HWDRM_SUPPORT","features":[9,1]},{"name":"D3DKMT_HYBRID_DLIST_DLL_SUPPORT","features":[9,1]},{"name":"D3DKMT_HYBRID_LIST","features":[9,1]},{"name":"D3DKMT_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[9,1]},{"name":"D3DKMT_INDEPENDENTFLIP_SUPPORT","features":[9,1]},{"name":"D3DKMT_INVALIDATEACTIVEVIDPN","features":[9]},{"name":"D3DKMT_INVALIDATECACHE","features":[9]},{"name":"D3DKMT_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[9,1]},{"name":"D3DKMT_KMD_DRIVER_VERSION","features":[9]},{"name":"D3DKMT_LOCK","features":[9]},{"name":"D3DKMT_LOCK2","features":[9]},{"name":"D3DKMT_MARKDEVICEASERROR","features":[9]},{"name":"D3DKMT_MAX_BUNDLE_OBJECTS_PER_HANDLE","features":[9]},{"name":"D3DKMT_MAX_DMM_ESCAPE_DATASIZE","features":[9]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_ALLOCATIONS_PER_PLANE","features":[9]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_PLANES","features":[9]},{"name":"D3DKMT_MAX_OBJECTS_PER_HANDLE","features":[9]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_RECTS","features":[9]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_SCATTERBLTS","features":[9]},{"name":"D3DKMT_MAX_SEGMENT_COUNT","features":[9]},{"name":"D3DKMT_MAX_WAITFORVERTICALBLANK_OBJECTS","features":[9]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP","features":[9]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_LOCAL","features":[9]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_NON_LOCAL","features":[9]},{"name":"D3DKMT_MIRACASTCOMPANIONDRIVERNAME","features":[9]},{"name":"D3DKMT_MIRACAST_CHUNK_DATA","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_CANCELLED","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_ERROR","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_FOUND","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_STARTED","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_GPU_RESOURCE_IN_USE","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_BANDWIDTH","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_MEMORY","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INVALID_PARAMETER","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_PENDING","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_REMOTE_SESSION","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS_NO_MONITOR","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_ERROR","features":[9]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_PAIRING","features":[9]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_CAPS","features":[9,1]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATE","features":[9]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATUS","features":[9]},{"name":"D3DKMT_MIRACAST_DISPLAY_STOP_SESSIONS","features":[9,1]},{"name":"D3DKMT_MIRACAST_DRIVER_IHV","features":[9]},{"name":"D3DKMT_MIRACAST_DRIVER_MS","features":[9]},{"name":"D3DKMT_MIRACAST_DRIVER_NOT_SUPPORTED","features":[9]},{"name":"D3DKMT_MIRACAST_DRIVER_TYPE","features":[9]},{"name":"D3DKMT_MOVE_RECT","features":[9,1]},{"name":"D3DKMT_MPO3DDI_SUPPORT","features":[9,1]},{"name":"D3DKMT_MPOKERNELCAPS_SUPPORT","features":[9,1]},{"name":"D3DKMT_MULIIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_PROGRESSIVE","features":[9]},{"name":"D3DKMT_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[9,1]},{"name":"D3DKMT_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[9,1]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[9,1]},{"name":"D3DKMT_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[9,1]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SUPPORT","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY2","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY3","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES2","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES3","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_ALPHABLEND","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_OPAQUE","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_CAPS","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAGS","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_HORIZONTAL_FLIP","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_STATIC_CHECK","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_VERTICAL_FLIP","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_WITH_SOURCE","features":[9,1]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_HORIZONTAL","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_VERTICAL","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAGS","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE","features":[9]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_xvYCC","features":[9]},{"name":"D3DKMT_MULTISAMPLEMETHOD","features":[9]},{"name":"D3DKMT_MaxAllocationPriorityClass","features":[9]},{"name":"D3DKMT_MmIoFlipCommandBuffer","features":[9]},{"name":"D3DKMT_NODEMETADATA","features":[9,1]},{"name":"D3DKMT_NODE_PERFDATA","features":[9]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION","features":[9]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION_FLAGS","features":[9]},{"name":"D3DKMT_OFFERALLOCATIONS","features":[9]},{"name":"D3DKMT_OFFER_FLAGS","features":[9]},{"name":"D3DKMT_OFFER_PRIORITY","features":[9]},{"name":"D3DKMT_OFFER_PRIORITY_AUTO","features":[9]},{"name":"D3DKMT_OFFER_PRIORITY_HIGH","features":[9]},{"name":"D3DKMT_OFFER_PRIORITY_LOW","features":[9]},{"name":"D3DKMT_OFFER_PRIORITY_NORMAL","features":[9]},{"name":"D3DKMT_OPENADAPTERFROMDEVICENAME","features":[9,1]},{"name":"D3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[9,1]},{"name":"D3DKMT_OPENADAPTERFROMHDC","features":[9,1,12]},{"name":"D3DKMT_OPENADAPTERFROMLUID","features":[9,1]},{"name":"D3DKMT_OPENGLINFO","features":[9]},{"name":"D3DKMT_OPENKEYEDMUTEX","features":[9]},{"name":"D3DKMT_OPENKEYEDMUTEX2","features":[9]},{"name":"D3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[9,1]},{"name":"D3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[9,1]},{"name":"D3DKMT_OPENNTHANDLEFROMNAME","features":[2,9,1]},{"name":"D3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[9,1]},{"name":"D3DKMT_OPENRESOURCE","features":[9]},{"name":"D3DKMT_OPENRESOURCEFROMNTHANDLE","features":[9,1]},{"name":"D3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[9]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[9,1]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[9,1]},{"name":"D3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[2,9,1]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_INFO","features":[9,1]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE","features":[9]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_COLOR","features":[9]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR","features":[9]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MONOCHROME","features":[9]},{"name":"D3DKMT_OUTPUTDUPLCONTEXTSCOUNT","features":[9]},{"name":"D3DKMT_OUTPUTDUPLCREATIONFLAGS","features":[9]},{"name":"D3DKMT_OUTPUTDUPLPRESENT","features":[9,1]},{"name":"D3DKMT_OUTPUTDUPLPRESENTFLAGS","features":[9]},{"name":"D3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[9,1]},{"name":"D3DKMT_OUTPUTDUPL_FRAMEINFO","features":[9,1]},{"name":"D3DKMT_OUTPUTDUPL_GET_FRAMEINFO","features":[9,1]},{"name":"D3DKMT_OUTPUTDUPL_GET_POINTER_SHAPE_DATA","features":[9,1]},{"name":"D3DKMT_OUTPUTDUPL_KEYEDMUTEX","features":[9,1]},{"name":"D3DKMT_OUTPUTDUPL_METADATA","features":[9]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE","features":[9]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_DIRTY_RECTS","features":[9]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_MOVE_RECTS","features":[9]},{"name":"D3DKMT_OUTPUTDUPL_POINTER_POSITION","features":[9,1]},{"name":"D3DKMT_OUTPUTDUPL_RELEASE_FRAME","features":[9]},{"name":"D3DKMT_OUTPUTDUPL_SNAPSHOT","features":[9,1]},{"name":"D3DKMT_PAGE_TABLE_LEVEL_DESC","features":[9]},{"name":"D3DKMT_PANELFITTER_SUPPORT","features":[9,1]},{"name":"D3DKMT_PARAVIRTUALIZATION","features":[9,1]},{"name":"D3DKMT_PHYSICAL_ADAPTER_COUNT","features":[9]},{"name":"D3DKMT_PINDIRECTFLIPRESOURCES","features":[9]},{"name":"D3DKMT_PLANE_SPECIFIC_INPUT_FLAGS","features":[9]},{"name":"D3DKMT_PLANE_SPECIFIC_OUTPUT_FLAGS","features":[9]},{"name":"D3DKMT_PM_FLIPMANAGER","features":[9]},{"name":"D3DKMT_PM_REDIRECTED_BLT","features":[9]},{"name":"D3DKMT_PM_REDIRECTED_COMPOSITION","features":[9]},{"name":"D3DKMT_PM_REDIRECTED_FLIP","features":[9]},{"name":"D3DKMT_PM_REDIRECTED_GDI","features":[9]},{"name":"D3DKMT_PM_REDIRECTED_GDI_SYSMEM","features":[9]},{"name":"D3DKMT_PM_REDIRECTED_VISTABLT","features":[9]},{"name":"D3DKMT_PM_SCREENCAPTUREFENCE","features":[9]},{"name":"D3DKMT_PM_SURFACECOMPLETE","features":[9]},{"name":"D3DKMT_PM_UNINITIALIZED","features":[9]},{"name":"D3DKMT_PNP_KEY_HARDWARE","features":[9]},{"name":"D3DKMT_PNP_KEY_SOFTWARE","features":[9]},{"name":"D3DKMT_PNP_KEY_TYPE","features":[9]},{"name":"D3DKMT_POLLDISPLAYCHILDREN","features":[9]},{"name":"D3DKMT_PRESENT","features":[9,1]},{"name":"D3DKMT_PRESENTFLAGS","features":[9]},{"name":"D3DKMT_PRESENTHISTORYTOKEN","features":[9,1]},{"name":"D3DKMT_PRESENT_MODEL","features":[9]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY","features":[9,1]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY2","features":[9,1]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY3","features":[9,1]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY_FLAGS","features":[9]},{"name":"D3DKMT_PRESENT_REDIRECTED","features":[9,1]},{"name":"D3DKMT_PRESENT_REDIRECTED_FLAGS","features":[9]},{"name":"D3DKMT_PRESENT_RGNS","features":[9,1]},{"name":"D3DKMT_PRESENT_STATS","features":[9]},{"name":"D3DKMT_PRESENT_STATS_DWM","features":[9]},{"name":"D3DKMT_PRESENT_STATS_DWM2","features":[9]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION","features":[9,1]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_DATA","features":[9]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_TYPE","features":[9]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_FLAGS","features":[9]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_RESTRICT_BUDGET","features":[9]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_FLAGS","features":[9]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_RESTRICT_BUDGET","features":[9]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS","features":[9]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_INVALID","features":[9]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_OK","features":[9]},{"name":"D3DKMT_PreemptionAttempt","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyPreempting","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyRunning","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissFenceCommand","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissGlobalBlock","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissLessPriority","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissNextFence","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissNoCommand","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissNotEnabled","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissNotMakingProgress","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissPagingCommand","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissRemainingPreemptionQuantum","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissRemainingQuantum","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissRenderPendingFlip","features":[9]},{"name":"D3DKMT_PreemptionAttemptMissSplittedCommand","features":[9]},{"name":"D3DKMT_PreemptionAttemptStatisticsMax","features":[9]},{"name":"D3DKMT_PreemptionAttemptSuccess","features":[9]},{"name":"D3DKMT_QUERYADAPTERINFO","features":[9]},{"name":"D3DKMT_QUERYALLOCATIONRESIDENCY","features":[9]},{"name":"D3DKMT_QUERYCLOCKCALIBRATION","features":[9]},{"name":"D3DKMT_QUERYFSEBLOCK","features":[9,1]},{"name":"D3DKMT_QUERYFSEBLOCKFLAGS","features":[9]},{"name":"D3DKMT_QUERYPROCESSOFFERINFO","features":[9,1]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[9,1]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[9]},{"name":"D3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[9]},{"name":"D3DKMT_QUERYRESOURCEINFO","features":[9]},{"name":"D3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[9,1]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT","features":[9]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT_MAX","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS","features":[9,1]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION_FLAGS","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS_MAX","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_COMMITMENT_DATA","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_COUNTER","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_BUFFER","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_MAX","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY_USAGE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_NODE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_NODE2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_NODE_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PACKET_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_POLICY","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PREEMPTION_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_BUCKET_COUNT","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_COUNTERS","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_POLICY","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER_INFORMATION2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PHYSICAL_ADAPTER","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PROCESS_SEGMENT_GROUP2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_GROUP_USAGE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_USAGE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_VIDPNSOURCE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_MAX","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_RESULT","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT2","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_GROUP_USAGE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_PREFERENCE_MAX","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_APERTURE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_MEMORY","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_SYSMEM","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_USAGE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_SYSTEM_MEMORY","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_TYPE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_VIDEO_MEMORY","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE","features":[9]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE_INFORMATION","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_ALLOCATIONS","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_LOCKS","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_FAULT","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_TRANSFER","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_PREPRATION","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_REFERENCE_DMA_BUFFER","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_RENAMING","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_SWIZZLING_RANGE","features":[9]},{"name":"D3DKMT_QUERYSTATSTICS_TERMINATIONS","features":[9]},{"name":"D3DKMT_QUERYVIDEOMEMORYINFO","features":[9,1]},{"name":"D3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[9,1]},{"name":"D3DKMT_QUERY_ADAPTER_UNIQUE_GUID","features":[9]},{"name":"D3DKMT_QUERY_DEVICE_IDS","features":[9]},{"name":"D3DKMT_QUERY_GPUMMU_CAPS","features":[9]},{"name":"D3DKMT_QUERY_MIRACAST_DRIVER_TYPE","features":[9]},{"name":"D3DKMT_QUERY_PHYSICAL_ADAPTER_PNP_KEY","features":[9]},{"name":"D3DKMT_QUERY_SCANOUT_CAPS","features":[9]},{"name":"D3DKMT_QUEUEDLIMIT_TYPE","features":[9]},{"name":"D3DKMT_QueuePacketTypeMax","features":[9]},{"name":"D3DKMT_RECLAIMALLOCATIONS","features":[9,1]},{"name":"D3DKMT_RECLAIMALLOCATIONS2","features":[9,1]},{"name":"D3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[9]},{"name":"D3DKMT_REGISTERTRIMNOTIFICATION","features":[9,1]},{"name":"D3DKMT_RELEASEKEYEDMUTEX","features":[9]},{"name":"D3DKMT_RELEASEKEYEDMUTEX2","features":[9]},{"name":"D3DKMT_RENDER","features":[9]},{"name":"D3DKMT_RENDERFLAGS","features":[9]},{"name":"D3DKMT_REQUEST_MACHINE_CRASH_ESCAPE","features":[9]},{"name":"D3DKMT_RenderCommandBuffer","features":[9]},{"name":"D3DKMT_SCATTERBLT","features":[9,1]},{"name":"D3DKMT_SCATTERBLTS","features":[9,1]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS","features":[9]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_ABOVE_NORMAL","features":[9]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_BELOW_NORMAL","features":[9]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_HIGH","features":[9]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_IDLE","features":[9]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_NORMAL","features":[9]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME","features":[9]},{"name":"D3DKMT_SEGMENTGROUPSIZEINFO","features":[9]},{"name":"D3DKMT_SEGMENTSIZEINFO","features":[9]},{"name":"D3DKMT_SEGMENT_CAPS","features":[9,1]},{"name":"D3DKMT_SETALLOCATIONPRIORITY","features":[9]},{"name":"D3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[9]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[9]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY_ABSOLUTE","features":[9]},{"name":"D3DKMT_SETDISPLAYMODE","features":[9]},{"name":"D3DKMT_SETDISPLAYMODE_FLAGS","features":[9]},{"name":"D3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[9]},{"name":"D3DKMT_SETFSEBLOCK","features":[9,1]},{"name":"D3DKMT_SETFSEBLOCKFLAGS","features":[9]},{"name":"D3DKMT_SETGAMMARAMP","features":[9]},{"name":"D3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[9,1]},{"name":"D3DKMT_SETQUEUEDLIMIT","features":[9]},{"name":"D3DKMT_SETSTABLEPOWERSTATE","features":[9,1]},{"name":"D3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[9]},{"name":"D3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[9,1]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER","features":[9]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER1","features":[9]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER2","features":[9]},{"name":"D3DKMT_SET_COLORSPACE_TRANSFORM","features":[9,1]},{"name":"D3DKMT_SET_QUEUEDLIMIT_PRESENT","features":[9]},{"name":"D3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[9,1]},{"name":"D3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[9,1]},{"name":"D3DKMT_SHAREOBJECTWITHHOST","features":[9]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[9]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[9,1]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[9]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[9]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[9,1]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE","features":[9]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_EXISTINGHEAP","features":[9]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_INTERNALBACKINGSTORE","features":[9]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_MAX","features":[9]},{"name":"D3DKMT_STANDARDALLOCATION_EXISTINGHEAP","features":[9]},{"name":"D3DKMT_SUBKEY_DX9","features":[9]},{"name":"D3DKMT_SUBKEY_OPENGL","features":[9]},{"name":"D3DKMT_SUBMITCOMMAND","features":[9]},{"name":"D3DKMT_SUBMITCOMMANDFLAGS","features":[9]},{"name":"D3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[9]},{"name":"D3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[9,1]},{"name":"D3DKMT_SUBMITPRESENTTOHWQUEUE","features":[9,1]},{"name":"D3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[9]},{"name":"D3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[9]},{"name":"D3DKMT_SURFACECOMPLETE_PRESENTHISTORYTOKEN","features":[9]},{"name":"D3DKMT_SignalCommandBuffer","features":[9]},{"name":"D3DKMT_SoftwareCommandBuffer","features":[9]},{"name":"D3DKMT_SystemCommandBuffer","features":[9]},{"name":"D3DKMT_SystemPagingBuffer","features":[9]},{"name":"D3DKMT_SystemPreemptionBuffer","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_DISABLEBREAK","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENABLEBREAK","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENGINETDR","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODTDR","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODVSYNCTDR","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCETDR","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_GPUTDR","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_UNCONDITIONAL","features":[9]},{"name":"D3DKMT_TDRDBGCTRLTYPE_VSYNCTDR","features":[9]},{"name":"D3DKMT_TDRDBGCTRL_ESCAPE","features":[9]},{"name":"D3DKMT_TRACKEDWORKLOAD_SUPPORT","features":[9,1]},{"name":"D3DKMT_TRIMNOTIFICATION","features":[9]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT","features":[9,1]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT_FLAGS","features":[9]},{"name":"D3DKMT_UMDFILENAMEINFO","features":[9]},{"name":"D3DKMT_UMD_DRIVER_VERSION","features":[9]},{"name":"D3DKMT_UNLOCK","features":[9]},{"name":"D3DKMT_UNLOCK2","features":[9]},{"name":"D3DKMT_UNPINDIRECTFLIPRESOURCES","features":[9]},{"name":"D3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[9]},{"name":"D3DKMT_UNREGISTERTRIMNOTIFICATION","features":[9]},{"name":"D3DKMT_UPDATEGPUVIRTUALADDRESS","features":[9]},{"name":"D3DKMT_UPDATEOVERLAY","features":[9]},{"name":"D3DKMT_VAD_DESC","features":[9]},{"name":"D3DKMT_VAD_ESCAPE_COMMAND","features":[9]},{"name":"D3DKMT_VAD_ESCAPE_GETNUMVADS","features":[9]},{"name":"D3DKMT_VAD_ESCAPE_GETVAD","features":[9]},{"name":"D3DKMT_VAD_ESCAPE_GETVADRANGE","features":[9]},{"name":"D3DKMT_VAD_ESCAPE_GET_GPUMMU_CAPS","features":[9]},{"name":"D3DKMT_VAD_ESCAPE_GET_PTE","features":[9]},{"name":"D3DKMT_VAD_ESCAPE_GET_SEGMENT_CAPS","features":[9]},{"name":"D3DKMT_VA_RANGE_DESC","features":[9]},{"name":"D3DKMT_VERIFIER_OPTION_MODE","features":[9]},{"name":"D3DKMT_VERIFIER_OPTION_QUERY","features":[9]},{"name":"D3DKMT_VERIFIER_OPTION_SET","features":[9]},{"name":"D3DKMT_VGPUINTERFACEID","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_APERTURE_CORRUPTION_CHECK","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_DEFRAG","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_DELAYEXECUTION","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_CRITERIA","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_NT_HANDLE","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_BUDGET","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_VAD_INFO","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_RESUME_PROCESS","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_COHERENCY_TEST","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_UNMAP_TO_DUMMY_PAGE_TEST","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_SETFAULT","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_BUDGET","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_EVICTION_CONFIG","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_TRIM_INTERVALS","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_CPU_ACCESS_TEST","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_PROCESS","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_VALIDATE_INTEGRITY","features":[9]},{"name":"D3DKMT_VIDMMESCAPETYPE_WAKE","features":[9]},{"name":"D3DKMT_VIDMM_ESCAPE","features":[9,1]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EMULATED","features":[9]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE","features":[9]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVEGDI","features":[9]},{"name":"D3DKMT_VIDPNSOURCEOWNER_FLAGS","features":[9]},{"name":"D3DKMT_VIDPNSOURCEOWNER_SHARED","features":[9]},{"name":"D3DKMT_VIDPNSOURCEOWNER_TYPE","features":[9]},{"name":"D3DKMT_VIDPNSOURCEOWNER_UNOWNED","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_CONFIGURE_TDR_LIMIT","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_ENABLECONTEXTDELAY","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PFN_CONTROL","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PREEMPTIONCONTROL","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDRESUME","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDSCHEDULER","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_TDRCONTROL","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VGPU_RESET","features":[9]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VIRTUAL_REFRESH_RATE","features":[9]},{"name":"D3DKMT_VIDSCH_ESCAPE","features":[9,1]},{"name":"D3DKMT_VIRTUALADDRESSFLAGS","features":[9]},{"name":"D3DKMT_VIRTUALADDRESSINFO","features":[9]},{"name":"D3DKMT_WAITFORIDLE","features":[9]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[9]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[9]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[9,1]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[9]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT","features":[9]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT2","features":[9]},{"name":"D3DKMT_WDDM_1_2_CAPS","features":[9]},{"name":"D3DKMT_WDDM_1_3_CAPS","features":[9]},{"name":"D3DKMT_WDDM_2_0_CAPS","features":[9]},{"name":"D3DKMT_WDDM_2_7_CAPS","features":[9]},{"name":"D3DKMT_WDDM_2_9_CAPS","features":[9]},{"name":"D3DKMT_WDDM_3_0_CAPS","features":[9]},{"name":"D3DKMT_WDDM_3_1_CAPS","features":[9]},{"name":"D3DKMT_WORKINGSETFLAGS","features":[9]},{"name":"D3DKMT_WORKINGSETINFO","features":[9]},{"name":"D3DKMT_WSAUMDIMAGENAME","features":[9]},{"name":"D3DKMT_WaitCommandBuffer","features":[9]},{"name":"D3DKMT_XBOX","features":[9,1]},{"name":"D3DLINEPATTERN","features":[9]},{"name":"D3DNTCLEAR_COMPUTERECTS","features":[9]},{"name":"D3DNTDEVICEDESC_V3","features":[9,1,10]},{"name":"D3DNTDP2OP_ADDDIRTYBOX","features":[9]},{"name":"D3DNTDP2OP_ADDDIRTYRECT","features":[9]},{"name":"D3DNTDP2OP_BLT","features":[9]},{"name":"D3DNTDP2OP_BUFFERBLT","features":[9]},{"name":"D3DNTDP2OP_CLEAR","features":[9]},{"name":"D3DNTDP2OP_CLIPPEDTRIANGLEFAN","features":[9]},{"name":"D3DNTDP2OP_COLORFILL","features":[9]},{"name":"D3DNTDP2OP_COMPOSERECTS","features":[9]},{"name":"D3DNTDP2OP_CREATELIGHT","features":[9]},{"name":"D3DNTDP2OP_CREATEPIXELSHADER","features":[9]},{"name":"D3DNTDP2OP_CREATEQUERY","features":[9]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADER","features":[9]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERDECL","features":[9]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERFUNC","features":[9]},{"name":"D3DNTDP2OP_DELETEPIXELSHADER","features":[9]},{"name":"D3DNTDP2OP_DELETEQUERY","features":[9]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADER","features":[9]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERDECL","features":[9]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERFUNC","features":[9]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE","features":[9]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE2","features":[9]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE","features":[9]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE2","features":[9]},{"name":"D3DNTDP2OP_DRAWRECTPATCH","features":[9]},{"name":"D3DNTDP2OP_DRAWTRIPATCH","features":[9]},{"name":"D3DNTDP2OP_GENERATEMIPSUBLEVELS","features":[9]},{"name":"D3DNTDP2OP_INDEXEDLINELIST","features":[9]},{"name":"D3DNTDP2OP_INDEXEDLINELIST2","features":[9]},{"name":"D3DNTDP2OP_INDEXEDLINESTRIP","features":[9]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLEFAN","features":[9]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST","features":[9]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST2","features":[9]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLESTRIP","features":[9]},{"name":"D3DNTDP2OP_ISSUEQUERY","features":[9]},{"name":"D3DNTDP2OP_LINELIST","features":[9]},{"name":"D3DNTDP2OP_LINELIST_IMM","features":[9]},{"name":"D3DNTDP2OP_LINESTRIP","features":[9]},{"name":"D3DNTDP2OP_MULTIPLYTRANSFORM","features":[9]},{"name":"D3DNTDP2OP_POINTS","features":[9]},{"name":"D3DNTDP2OP_RENDERSTATE","features":[9]},{"name":"D3DNTDP2OP_RESPONSECONTINUE","features":[9]},{"name":"D3DNTDP2OP_RESPONSEQUERY","features":[9]},{"name":"D3DNTDP2OP_SETCLIPPLANE","features":[9]},{"name":"D3DNTDP2OP_SETCONVOLUTIONKERNELMONO","features":[9]},{"name":"D3DNTDP2OP_SETDEPTHSTENCIL","features":[9]},{"name":"D3DNTDP2OP_SETINDICES","features":[9]},{"name":"D3DNTDP2OP_SETLIGHT","features":[9]},{"name":"D3DNTDP2OP_SETMATERIAL","features":[9]},{"name":"D3DNTDP2OP_SETPALETTE","features":[9]},{"name":"D3DNTDP2OP_SETPIXELSHADER","features":[9]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONST","features":[9]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTB","features":[9]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTI","features":[9]},{"name":"D3DNTDP2OP_SETPRIORITY","features":[9]},{"name":"D3DNTDP2OP_SETRENDERTARGET","features":[9]},{"name":"D3DNTDP2OP_SETRENDERTARGET2","features":[9]},{"name":"D3DNTDP2OP_SETSCISSORRECT","features":[9]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE","features":[9]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE2","features":[9]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEFREQ","features":[9]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEUM","features":[9]},{"name":"D3DNTDP2OP_SETTEXLOD","features":[9]},{"name":"D3DNTDP2OP_SETTRANSFORM","features":[9]},{"name":"D3DNTDP2OP_SETVERTEXSHADER","features":[9]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONST","features":[9]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTB","features":[9]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTI","features":[9]},{"name":"D3DNTDP2OP_SETVERTEXSHADERDECL","features":[9]},{"name":"D3DNTDP2OP_SETVERTEXSHADERFUNC","features":[9]},{"name":"D3DNTDP2OP_STATESET","features":[9]},{"name":"D3DNTDP2OP_SURFACEBLT","features":[9]},{"name":"D3DNTDP2OP_TEXBLT","features":[9]},{"name":"D3DNTDP2OP_TEXTURESTAGESTATE","features":[9]},{"name":"D3DNTDP2OP_TRIANGLEFAN","features":[9]},{"name":"D3DNTDP2OP_TRIANGLEFAN_IMM","features":[9]},{"name":"D3DNTDP2OP_TRIANGLELIST","features":[9]},{"name":"D3DNTDP2OP_TRIANGLESTRIP","features":[9]},{"name":"D3DNTDP2OP_UPDATEPALETTE","features":[9]},{"name":"D3DNTDP2OP_VIEWPORTINFO","features":[9]},{"name":"D3DNTDP2OP_VOLUMEBLT","features":[9]},{"name":"D3DNTDP2OP_WINFO","features":[9]},{"name":"D3DNTDP2OP_ZRANGE","features":[9]},{"name":"D3DNTHAL2_CB32_SETRENDERTARGET","features":[9]},{"name":"D3DNTHAL3_CB32_CLEAR2","features":[9]},{"name":"D3DNTHAL3_CB32_DRAWPRIMITIVES2","features":[9]},{"name":"D3DNTHAL3_CB32_RESERVED","features":[9]},{"name":"D3DNTHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[9]},{"name":"D3DNTHALDEVICEDESC_V1","features":[9,1,10]},{"name":"D3DNTHALDEVICEDESC_V2","features":[9,1,10]},{"name":"D3DNTHALDP2_EXECUTEBUFFER","features":[9]},{"name":"D3DNTHALDP2_REQCOMMANDBUFSIZE","features":[9]},{"name":"D3DNTHALDP2_REQVERTEXBUFSIZE","features":[9]},{"name":"D3DNTHALDP2_SWAPCOMMANDBUFFER","features":[9]},{"name":"D3DNTHALDP2_SWAPVERTEXBUFFER","features":[9]},{"name":"D3DNTHALDP2_USERMEMVERTICES","features":[9]},{"name":"D3DNTHALDP2_VIDMEMCOMMANDBUF","features":[9]},{"name":"D3DNTHALDP2_VIDMEMVERTEXBUF","features":[9]},{"name":"D3DNTHAL_CALLBACKS","features":[9,1,11]},{"name":"D3DNTHAL_CALLBACKS2","features":[9,1,11]},{"name":"D3DNTHAL_CALLBACKS3","features":[9,1,10,11]},{"name":"D3DNTHAL_CLEAR2DATA","features":[9,10]},{"name":"D3DNTHAL_CLIPPEDTRIANGLEFAN","features":[9]},{"name":"D3DNTHAL_COL_WEIGHTS","features":[9]},{"name":"D3DNTHAL_CONTEXTCREATEDATA","features":[9,1,11]},{"name":"D3DNTHAL_CONTEXTDESTROYALLDATA","features":[9]},{"name":"D3DNTHAL_CONTEXTDESTROYDATA","features":[9]},{"name":"D3DNTHAL_CONTEXT_BAD","features":[9]},{"name":"D3DNTHAL_D3DDX6EXTENDEDCAPS","features":[9]},{"name":"D3DNTHAL_D3DEXTENDEDCAPS","features":[9]},{"name":"D3DNTHAL_DP2ADDDIRTYBOX","features":[9,10]},{"name":"D3DNTHAL_DP2ADDDIRTYRECT","features":[9,1]},{"name":"D3DNTHAL_DP2BLT","features":[9,1]},{"name":"D3DNTHAL_DP2BUFFERBLT","features":[9,10]},{"name":"D3DNTHAL_DP2CLEAR","features":[9,1]},{"name":"D3DNTHAL_DP2COLORFILL","features":[9,1]},{"name":"D3DNTHAL_DP2COMMAND","features":[9]},{"name":"D3DNTHAL_DP2COMPOSERECTS","features":[9,10]},{"name":"D3DNTHAL_DP2CREATELIGHT","features":[9]},{"name":"D3DNTHAL_DP2CREATEPIXELSHADER","features":[9]},{"name":"D3DNTHAL_DP2CREATEQUERY","features":[9,10]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADER","features":[9]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERDECL","features":[9]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERFUNC","features":[9]},{"name":"D3DNTHAL_DP2DELETEQUERY","features":[9]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE","features":[9,10]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[9,10]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE","features":[9,10]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE2","features":[9,10]},{"name":"D3DNTHAL_DP2DRAWRECTPATCH","features":[9]},{"name":"D3DNTHAL_DP2DRAWTRIPATCH","features":[9]},{"name":"D3DNTHAL_DP2EXT","features":[9]},{"name":"D3DNTHAL_DP2GENERATEMIPSUBLEVELS","features":[9,10]},{"name":"D3DNTHAL_DP2INDEXEDLINELIST","features":[9]},{"name":"D3DNTHAL_DP2INDEXEDLINESTRIP","features":[9]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLEFAN","features":[9]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST","features":[9]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST2","features":[9]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLESTRIP","features":[9]},{"name":"D3DNTHAL_DP2ISSUEQUERY","features":[9]},{"name":"D3DNTHAL_DP2LINELIST","features":[9]},{"name":"D3DNTHAL_DP2LINESTRIP","features":[9]},{"name":"D3DNTHAL_DP2MULTIPLYTRANSFORM","features":[13,9,10]},{"name":"D3DNTHAL_DP2OPERATION","features":[9]},{"name":"D3DNTHAL_DP2PIXELSHADER","features":[9]},{"name":"D3DNTHAL_DP2POINTS","features":[9]},{"name":"D3DNTHAL_DP2RENDERSTATE","features":[9,10]},{"name":"D3DNTHAL_DP2RESPONSE","features":[9]},{"name":"D3DNTHAL_DP2RESPONSEQUERY","features":[9]},{"name":"D3DNTHAL_DP2SETCLIPPLANE","features":[9]},{"name":"D3DNTHAL_DP2SETCONVOLUTIONKERNELMONO","features":[9]},{"name":"D3DNTHAL_DP2SETDEPTHSTENCIL","features":[9]},{"name":"D3DNTHAL_DP2SETINDICES","features":[9]},{"name":"D3DNTHAL_DP2SETLIGHT","features":[9]},{"name":"D3DNTHAL_DP2SETPALETTE","features":[9]},{"name":"D3DNTHAL_DP2SETPIXELSHADERCONST","features":[9]},{"name":"D3DNTHAL_DP2SETPRIORITY","features":[9]},{"name":"D3DNTHAL_DP2SETRENDERTARGET","features":[9]},{"name":"D3DNTHAL_DP2SETRENDERTARGET2","features":[9]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE","features":[9]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE2","features":[9]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEFREQ","features":[9]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEUM","features":[9]},{"name":"D3DNTHAL_DP2SETTEXLOD","features":[9]},{"name":"D3DNTHAL_DP2SETTRANSFORM","features":[13,9,10]},{"name":"D3DNTHAL_DP2SETVERTEXSHADERCONST","features":[9]},{"name":"D3DNTHAL_DP2STARTVERTEX","features":[9]},{"name":"D3DNTHAL_DP2STATESET","features":[9,10]},{"name":"D3DNTHAL_DP2SURFACEBLT","features":[9,1]},{"name":"D3DNTHAL_DP2TEXBLT","features":[9,1]},{"name":"D3DNTHAL_DP2TEXTURESTAGESTATE","features":[9]},{"name":"D3DNTHAL_DP2TRIANGLEFAN","features":[9]},{"name":"D3DNTHAL_DP2TRIANGLEFAN_IMM","features":[9]},{"name":"D3DNTHAL_DP2TRIANGLELIST","features":[9]},{"name":"D3DNTHAL_DP2TRIANGLESTRIP","features":[9]},{"name":"D3DNTHAL_DP2UPDATEPALETTE","features":[9]},{"name":"D3DNTHAL_DP2VERTEXSHADER","features":[9]},{"name":"D3DNTHAL_DP2VIEWPORTINFO","features":[9]},{"name":"D3DNTHAL_DP2VOLUMEBLT","features":[9,10]},{"name":"D3DNTHAL_DP2WINFO","features":[9]},{"name":"D3DNTHAL_DP2ZRANGE","features":[9]},{"name":"D3DNTHAL_DRAWPRIMITIVES2DATA","features":[9,1,11]},{"name":"D3DNTHAL_GLOBALDRIVERDATA","features":[9,1,10,11]},{"name":"D3DNTHAL_NUMCLIPVERTICES","features":[9]},{"name":"D3DNTHAL_OUTOFCONTEXTS","features":[9]},{"name":"D3DNTHAL_ROW_WEIGHTS","features":[9]},{"name":"D3DNTHAL_SCENECAPTUREDATA","features":[9]},{"name":"D3DNTHAL_SCENE_CAPTURE_END","features":[9]},{"name":"D3DNTHAL_SCENE_CAPTURE_START","features":[9]},{"name":"D3DNTHAL_SETRENDERTARGETDATA","features":[9,1,11]},{"name":"D3DNTHAL_STATESETCREATE","features":[9]},{"name":"D3DNTHAL_TEXTURECREATEDATA","features":[9,1]},{"name":"D3DNTHAL_TEXTUREDESTROYDATA","features":[9]},{"name":"D3DNTHAL_TEXTUREGETSURFDATA","features":[9,1]},{"name":"D3DNTHAL_TEXTURESWAPDATA","features":[9]},{"name":"D3DNTHAL_TSS_MAXSTAGES","features":[9]},{"name":"D3DNTHAL_TSS_RENDERSTATEBASE","features":[9]},{"name":"D3DNTHAL_TSS_STATESPERSTAGE","features":[9]},{"name":"D3DNTHAL_VALIDATETEXTURESTAGESTATEDATA","features":[9]},{"name":"D3DPMISCCAPS_FOGINFVF","features":[9]},{"name":"D3DPMISCCAPS_LINEPATTERNREP","features":[9]},{"name":"D3DPRASTERCAPS_PAT","features":[9]},{"name":"D3DPRASTERCAPS_STRETCHBLTMULTISAMPLE","features":[9]},{"name":"D3DPS_COLOROUT_MAX_V2_0","features":[9]},{"name":"D3DPS_COLOROUT_MAX_V2_1","features":[9]},{"name":"D3DPS_COLOROUT_MAX_V3_0","features":[9]},{"name":"D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[9]},{"name":"D3DPS_CONSTBOOLREG_MAX_V2_1","features":[9]},{"name":"D3DPS_CONSTBOOLREG_MAX_V3_0","features":[9]},{"name":"D3DPS_CONSTINTREG_MAX_SW_DX9","features":[9]},{"name":"D3DPS_CONSTINTREG_MAX_V2_1","features":[9]},{"name":"D3DPS_CONSTINTREG_MAX_V3_0","features":[9]},{"name":"D3DPS_CONSTREG_MAX_DX8","features":[9]},{"name":"D3DPS_CONSTREG_MAX_SW_DX9","features":[9]},{"name":"D3DPS_CONSTREG_MAX_V1_1","features":[9]},{"name":"D3DPS_CONSTREG_MAX_V1_2","features":[9]},{"name":"D3DPS_CONSTREG_MAX_V1_3","features":[9]},{"name":"D3DPS_CONSTREG_MAX_V1_4","features":[9]},{"name":"D3DPS_CONSTREG_MAX_V2_0","features":[9]},{"name":"D3DPS_CONSTREG_MAX_V2_1","features":[9]},{"name":"D3DPS_CONSTREG_MAX_V3_0","features":[9]},{"name":"D3DPS_INPUTREG_MAX_DX8","features":[9]},{"name":"D3DPS_INPUTREG_MAX_SW_DX9","features":[9]},{"name":"D3DPS_INPUTREG_MAX_V1_1","features":[9]},{"name":"D3DPS_INPUTREG_MAX_V1_2","features":[9]},{"name":"D3DPS_INPUTREG_MAX_V1_3","features":[9]},{"name":"D3DPS_INPUTREG_MAX_V1_4","features":[9]},{"name":"D3DPS_INPUTREG_MAX_V2_0","features":[9]},{"name":"D3DPS_INPUTREG_MAX_V2_1","features":[9]},{"name":"D3DPS_INPUTREG_MAX_V3_0","features":[9]},{"name":"D3DPS_MAXLOOPINITVALUE_V2_1","features":[9]},{"name":"D3DPS_MAXLOOPINITVALUE_V3_0","features":[9]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[9]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[9]},{"name":"D3DPS_MAXLOOPSTEP_V2_1","features":[9]},{"name":"D3DPS_MAXLOOPSTEP_V3_0","features":[9]},{"name":"D3DPS_PREDICATE_MAX_V2_1","features":[9]},{"name":"D3DPS_PREDICATE_MAX_V3_0","features":[9]},{"name":"D3DPS_TEMPREG_MAX_DX8","features":[9]},{"name":"D3DPS_TEMPREG_MAX_V1_1","features":[9]},{"name":"D3DPS_TEMPREG_MAX_V1_2","features":[9]},{"name":"D3DPS_TEMPREG_MAX_V1_3","features":[9]},{"name":"D3DPS_TEMPREG_MAX_V1_4","features":[9]},{"name":"D3DPS_TEMPREG_MAX_V2_0","features":[9]},{"name":"D3DPS_TEMPREG_MAX_V2_1","features":[9]},{"name":"D3DPS_TEMPREG_MAX_V3_0","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_DX8","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_V1_1","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_V1_2","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_V1_3","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_V1_4","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_V2_0","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_V2_1","features":[9]},{"name":"D3DPS_TEXTUREREG_MAX_V3_0","features":[9]},{"name":"D3DRENDERSTATE_EVICTMANAGEDTEXTURES","features":[9]},{"name":"D3DRENDERSTATE_SCENECAPTURE","features":[9]},{"name":"D3DRS_DELETERTPATCH","features":[9]},{"name":"D3DRS_MAXPIXELSHADERINST","features":[9]},{"name":"D3DRS_MAXVERTEXSHADERINST","features":[9]},{"name":"D3DTEXF_FLATCUBIC","features":[9]},{"name":"D3DTEXF_GAUSSIANCUBIC","features":[9]},{"name":"D3DTRANSFORMSTATE_WORLD1_DX7","features":[9]},{"name":"D3DTRANSFORMSTATE_WORLD2_DX7","features":[9]},{"name":"D3DTRANSFORMSTATE_WORLD3_DX7","features":[9]},{"name":"D3DTRANSFORMSTATE_WORLD_DX7","features":[9]},{"name":"D3DTSS_TEXTUREMAP","features":[9]},{"name":"D3DVSDE_BLENDINDICES","features":[9]},{"name":"D3DVSDE_BLENDWEIGHT","features":[9]},{"name":"D3DVSDE_DIFFUSE","features":[9]},{"name":"D3DVSDE_NORMAL","features":[9]},{"name":"D3DVSDE_NORMAL2","features":[9]},{"name":"D3DVSDE_POSITION","features":[9]},{"name":"D3DVSDE_POSITION2","features":[9]},{"name":"D3DVSDE_PSIZE","features":[9]},{"name":"D3DVSDE_SPECULAR","features":[9]},{"name":"D3DVSDE_TEXCOORD0","features":[9]},{"name":"D3DVSDE_TEXCOORD1","features":[9]},{"name":"D3DVSDE_TEXCOORD2","features":[9]},{"name":"D3DVSDE_TEXCOORD3","features":[9]},{"name":"D3DVSDE_TEXCOORD4","features":[9]},{"name":"D3DVSDE_TEXCOORD5","features":[9]},{"name":"D3DVSDE_TEXCOORD6","features":[9]},{"name":"D3DVSDE_TEXCOORD7","features":[9]},{"name":"D3DVSDT_D3DCOLOR","features":[9]},{"name":"D3DVSDT_FLOAT1","features":[9]},{"name":"D3DVSDT_FLOAT2","features":[9]},{"name":"D3DVSDT_FLOAT3","features":[9]},{"name":"D3DVSDT_FLOAT4","features":[9]},{"name":"D3DVSDT_SHORT2","features":[9]},{"name":"D3DVSDT_SHORT4","features":[9]},{"name":"D3DVSDT_UBYTE4","features":[9]},{"name":"D3DVSD_CONSTADDRESSSHIFT","features":[9]},{"name":"D3DVSD_CONSTCOUNTSHIFT","features":[9]},{"name":"D3DVSD_CONSTRSSHIFT","features":[9]},{"name":"D3DVSD_DATALOADTYPESHIFT","features":[9]},{"name":"D3DVSD_DATATYPESHIFT","features":[9]},{"name":"D3DVSD_EXTCOUNTSHIFT","features":[9]},{"name":"D3DVSD_EXTINFOSHIFT","features":[9]},{"name":"D3DVSD_SKIPCOUNTSHIFT","features":[9]},{"name":"D3DVSD_STREAMNUMBERSHIFT","features":[9]},{"name":"D3DVSD_STREAMTESSSHIFT","features":[9]},{"name":"D3DVSD_TOKENTYPE","features":[9]},{"name":"D3DVSD_TOKENTYPESHIFT","features":[9]},{"name":"D3DVSD_TOKEN_CONSTMEM","features":[9]},{"name":"D3DVSD_TOKEN_END","features":[9]},{"name":"D3DVSD_TOKEN_EXT","features":[9]},{"name":"D3DVSD_TOKEN_NOP","features":[9]},{"name":"D3DVSD_TOKEN_STREAM","features":[9]},{"name":"D3DVSD_TOKEN_STREAMDATA","features":[9]},{"name":"D3DVSD_TOKEN_TESSELLATOR","features":[9]},{"name":"D3DVSD_VERTEXREGINSHIFT","features":[9]},{"name":"D3DVSD_VERTEXREGSHIFT","features":[9]},{"name":"D3DVS_ADDRREG_MAX_V1_1","features":[9]},{"name":"D3DVS_ADDRREG_MAX_V2_0","features":[9]},{"name":"D3DVS_ADDRREG_MAX_V2_1","features":[9]},{"name":"D3DVS_ADDRREG_MAX_V3_0","features":[9]},{"name":"D3DVS_ATTROUTREG_MAX_V1_1","features":[9]},{"name":"D3DVS_ATTROUTREG_MAX_V2_0","features":[9]},{"name":"D3DVS_ATTROUTREG_MAX_V2_1","features":[9]},{"name":"D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[9]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_0","features":[9]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_1","features":[9]},{"name":"D3DVS_CONSTBOOLREG_MAX_V3_0","features":[9]},{"name":"D3DVS_CONSTINTREG_MAX_SW_DX9","features":[9]},{"name":"D3DVS_CONSTINTREG_MAX_V2_0","features":[9]},{"name":"D3DVS_CONSTINTREG_MAX_V2_1","features":[9]},{"name":"D3DVS_CONSTINTREG_MAX_V3_0","features":[9]},{"name":"D3DVS_CONSTREG_MAX_V1_1","features":[9]},{"name":"D3DVS_CONSTREG_MAX_V2_0","features":[9]},{"name":"D3DVS_CONSTREG_MAX_V2_1","features":[9]},{"name":"D3DVS_CONSTREG_MAX_V3_0","features":[9]},{"name":"D3DVS_INPUTREG_MAX_V1_1","features":[9]},{"name":"D3DVS_INPUTREG_MAX_V2_0","features":[9]},{"name":"D3DVS_INPUTREG_MAX_V2_1","features":[9]},{"name":"D3DVS_INPUTREG_MAX_V3_0","features":[9]},{"name":"D3DVS_LABEL_MAX_V3_0","features":[9]},{"name":"D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[9]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_0","features":[9]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_1","features":[9]},{"name":"D3DVS_MAXLOOPINITVALUE_V3_0","features":[9]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[9]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[9]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[9]},{"name":"D3DVS_MAXLOOPSTEP_V2_0","features":[9]},{"name":"D3DVS_MAXLOOPSTEP_V2_1","features":[9]},{"name":"D3DVS_MAXLOOPSTEP_V3_0","features":[9]},{"name":"D3DVS_OUTPUTREG_MAX_SW_DX9","features":[9]},{"name":"D3DVS_OUTPUTREG_MAX_V3_0","features":[9]},{"name":"D3DVS_PREDICATE_MAX_V2_1","features":[9]},{"name":"D3DVS_PREDICATE_MAX_V3_0","features":[9]},{"name":"D3DVS_TCRDOUTREG_MAX_V1_1","features":[9]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_0","features":[9]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_1","features":[9]},{"name":"D3DVS_TEMPREG_MAX_V1_1","features":[9]},{"name":"D3DVS_TEMPREG_MAX_V2_0","features":[9]},{"name":"D3DVS_TEMPREG_MAX_V2_1","features":[9]},{"name":"D3DVS_TEMPREG_MAX_V3_0","features":[9]},{"name":"D3DVTXPCAPS_NO_VSDT_UBYTE4","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_VISTA","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM1_3","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1_3","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M2_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_3","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_4","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_3","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_3","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_4","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_2","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1_1","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN7","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_CP","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_M3","features":[9]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_RC","features":[9]},{"name":"DDBLT_EXTENDED_PRESENTATION_STRETCHFACTOR","features":[9]},{"name":"DDNT_DEFERRED_AGP_AWARE_DATA","features":[9]},{"name":"DDNT_DXVERSION","features":[9]},{"name":"DDNT_FREE_DEFERRED_AGP_DATA","features":[9]},{"name":"DDNT_GETADAPTERGROUPDATA","features":[9]},{"name":"DDNT_GETD3DQUERYCOUNTDATA","features":[9]},{"name":"DDNT_GETD3DQUERYDATA","features":[9,10]},{"name":"DDNT_GETDDIVERSIONDATA","features":[9]},{"name":"DDNT_GETDRIVERINFO2DATA","features":[9]},{"name":"DDNT_GETEXTENDEDMODECOUNTDATA","features":[9]},{"name":"DDNT_GETEXTENDEDMODEDATA","features":[9,10]},{"name":"DDNT_GETFORMATCOUNTDATA","features":[9]},{"name":"DDNT_GETFORMATDATA","features":[9,11]},{"name":"DDNT_MULTISAMPLEQUALITYLEVELSDATA","features":[9,10]},{"name":"DD_DEFERRED_AGP_AWARE_DATA","features":[9]},{"name":"DD_DXVERSION","features":[9]},{"name":"DD_FREE_DEFERRED_AGP_DATA","features":[9]},{"name":"DD_GETADAPTERGROUPDATA","features":[9]},{"name":"DD_GETD3DQUERYCOUNTDATA","features":[9]},{"name":"DD_GETD3DQUERYDATA","features":[9,10]},{"name":"DD_GETDDIVERSIONDATA","features":[9]},{"name":"DD_GETDRIVERINFO2DATA","features":[9]},{"name":"DD_GETEXTENDEDMODECOUNTDATA","features":[9]},{"name":"DD_GETEXTENDEDMODEDATA","features":[9,10]},{"name":"DD_GETFORMATCOUNTDATA","features":[9]},{"name":"DD_GETFORMATDATA","features":[9,11]},{"name":"DD_MULTISAMPLEQUALITYLEVELSDATA","features":[9,10]},{"name":"DIDDT1_AspectRatio_15x9","features":[9]},{"name":"DIDDT1_AspectRatio_16x10","features":[9]},{"name":"DIDDT1_AspectRatio_16x9","features":[9]},{"name":"DIDDT1_AspectRatio_1x1","features":[9]},{"name":"DIDDT1_AspectRatio_4x3","features":[9]},{"name":"DIDDT1_AspectRatio_5x4","features":[9]},{"name":"DIDDT1_Dependent","features":[9]},{"name":"DIDDT1_Interlaced","features":[9]},{"name":"DIDDT1_Monoscopic","features":[9]},{"name":"DIDDT1_Progressive","features":[9]},{"name":"DIDDT1_Stereo","features":[9]},{"name":"DIDDT1_Sync_Negative","features":[9]},{"name":"DIDDT1_Sync_Positive","features":[9]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I","features":[9]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_ASPECT_RATIO","features":[9]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SCANNING_MODE","features":[9]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SIZE","features":[9]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_STEREO_MODE","features":[9]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SYNC_POLARITY","features":[9]},{"name":"DP2BLT_LINEAR","features":[9]},{"name":"DP2BLT_POINT","features":[9]},{"name":"DX9_DDI_VERSION","features":[9]},{"name":"DXGKARG_SETPALETTE","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA_SP1","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3_PATH_INDEPENDENT_ROTATION","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_0","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_5","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_6","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_2","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_3","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_4","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_5","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_6","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_7","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_8","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_9","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_0","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_1","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN7","features":[9]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN8","features":[9]},{"name":"DXGKDT_OPM_DVI_CHARACTERISTICS","features":[9]},{"name":"DXGKMDT_CERTIFICATE_TYPE","features":[9]},{"name":"DXGKMDT_COPP_CERTIFICATE","features":[9]},{"name":"DXGKMDT_I2C_DEVICE_TRANSMITS_DATA_LENGTH","features":[9]},{"name":"DXGKMDT_I2C_NO_FLAGS","features":[9]},{"name":"DXGKMDT_INDIRECT_DISPLAY_CERTIFICATE","features":[9]},{"name":"DXGKMDT_OPM_128_BIT_RANDOM_NUMBER_SIZE","features":[9]},{"name":"DXGKMDT_OPM_ACP_AND_CGMSA_SIGNALING","features":[9]},{"name":"DXGKMDT_OPM_ACP_LEVEL_ONE","features":[9]},{"name":"DXGKMDT_OPM_ACP_LEVEL_THREE","features":[9]},{"name":"DXGKMDT_OPM_ACP_LEVEL_TWO","features":[9]},{"name":"DXGKMDT_OPM_ACP_OFF","features":[9]},{"name":"DXGKMDT_OPM_ACP_PROTECTION_LEVEL","features":[9]},{"name":"DXGKMDT_OPM_ACTUAL_OUTPUT_FORMAT","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_CENTER","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_TOP","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_CENTER","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_TOP","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_GT_16_BY_9_CENTER","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_16_BY_9_ANAMORPHIC","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3","features":[9]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3_PROTECTED_CENTER","features":[9]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[9]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[9]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_INSIDE_OF_CHIPSET","features":[9]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_NON_STANDARD","features":[9]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[9]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[9]},{"name":"DXGKMDT_OPM_BUS_TYPE_AGP","features":[9]},{"name":"DXGKMDT_OPM_BUS_TYPE_AND_IMPLEMENTATION","features":[9]},{"name":"DXGKMDT_OPM_BUS_TYPE_OTHER","features":[9]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCI","features":[9]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIEXPRESS","features":[9]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIX","features":[9]},{"name":"DXGKMDT_OPM_CERTIFICATE","features":[9]},{"name":"DXGKMDT_OPM_CGMSA","features":[9]},{"name":"DXGKMDT_OPM_CGMSA_COPY_FREELY","features":[9]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NEVER","features":[9]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NO_MORE","features":[9]},{"name":"DXGKMDT_OPM_CGMSA_COPY_ONE_GENERATION","features":[9]},{"name":"DXGKMDT_OPM_CGMSA_OFF","features":[9]},{"name":"DXGKMDT_OPM_CONFIGURE_PARAMETERS","features":[9]},{"name":"DXGKMDT_OPM_CONFIGURE_SETTING_DATA_SIZE","features":[9]},{"name":"DXGKMDT_OPM_CONNECTED_HDCP_DEVICE_INFORMATION","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPONENT_VIDEO","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPOSITE_VIDEO","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EMBEDDED","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EXTERNAL","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DVI","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_D_JPN","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HD15","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HDMI","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_LVDS","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_MIRACAST","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_OTHER","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_RESERVED","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SDI","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SVIDEO","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EMBEDDED","features":[9]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EXTERNAL","features":[9]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_BUS_TYPE_INTEGRATED","features":[9]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_CONNECTOR_TYPE_INTERNAL","features":[9]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_GET_INFO_PARAMETERS","features":[9]},{"name":"DXGKMDT_OPM_CREATE_VIDEO_OUTPUT_FOR_TARGET_PARAMETERS","features":[9,1]},{"name":"DXGKMDT_OPM_DPCP_OFF","features":[9]},{"name":"DXGKMDT_OPM_DPCP_ON","features":[9]},{"name":"DXGKMDT_OPM_DPCP_PROTECTION_LEVEL","features":[9]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_0","features":[9]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_1_OR_ABOVE","features":[9]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS","features":[9]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS_SIZE","features":[9]},{"name":"DXGKMDT_OPM_GET_ACP_AND_CGMSA_SIGNALING","features":[9]},{"name":"DXGKMDT_OPM_GET_ACTUAL_OUTPUT_FORMAT","features":[9]},{"name":"DXGKMDT_OPM_GET_ACTUAL_PROTECTION_LEVEL","features":[9]},{"name":"DXGKMDT_OPM_GET_ADAPTER_BUS_TYPE","features":[9]},{"name":"DXGKMDT_OPM_GET_CODEC_INFO","features":[9]},{"name":"DXGKMDT_OPM_GET_CONNECTED_HDCP_DEVICE_INFORMATION","features":[9]},{"name":"DXGKMDT_OPM_GET_CONNECTOR_TYPE","features":[9]},{"name":"DXGKMDT_OPM_GET_CURRENT_HDCP_SRM_VERSION","features":[9]},{"name":"DXGKMDT_OPM_GET_DVI_CHARACTERISTICS","features":[9]},{"name":"DXGKMDT_OPM_GET_INFORMATION_PARAMETERS_SIZE","features":[9]},{"name":"DXGKMDT_OPM_GET_INFO_PARAMETERS","features":[9]},{"name":"DXGKMDT_OPM_GET_OUTPUT_HARDWARE_PROTECTION_SUPPORT","features":[9]},{"name":"DXGKMDT_OPM_GET_OUTPUT_ID","features":[9]},{"name":"DXGKMDT_OPM_GET_SUPPORTED_PROTECTION_TYPES","features":[9]},{"name":"DXGKMDT_OPM_GET_VIRTUAL_PROTECTION_LEVEL","features":[9]},{"name":"DXGKMDT_OPM_HDCP_FLAG","features":[9]},{"name":"DXGKMDT_OPM_HDCP_FLAG_NONE","features":[9]},{"name":"DXGKMDT_OPM_HDCP_FLAG_REPEATER","features":[9]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR","features":[9]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR_SIZE","features":[9]},{"name":"DXGKMDT_OPM_HDCP_OFF","features":[9]},{"name":"DXGKMDT_OPM_HDCP_ON","features":[9]},{"name":"DXGKMDT_OPM_HDCP_PROTECTION_LEVEL","features":[9]},{"name":"DXGKMDT_OPM_IMAGE_ASPECT_RATIO_EN300294","features":[9]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT","features":[9]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_EVEN_FIRST","features":[9]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_ODD_FIRST","features":[9]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_OTHER","features":[9]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_PROGRESSIVE","features":[9]},{"name":"DXGKMDT_OPM_OMAC","features":[9]},{"name":"DXGKMDT_OPM_OMAC_SIZE","features":[9]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION","features":[9]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_NOT_SUPPORTED","features":[9]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_SUPPORTED","features":[9]},{"name":"DXGKMDT_OPM_OUTPUT_ID","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_1125I","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525I","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525P","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_750P","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_1125I","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_525P","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_750P","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_1125I","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_525P","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_750P","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EIA608B_525","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EN300294_625I","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_2_525I","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_525I","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC62375_625P","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_NONE","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_OTHER","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_ACP","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_CGMSA","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_COPP_COMPATIBLE_HDCP","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_DPCP","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_HDCP","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_MASK","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_NONE","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_OTHER","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_SIZE","features":[9]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_TYPE_ENFORCEMENT_HDCP","features":[9]},{"name":"DXGKMDT_OPM_RANDOM_NUMBER","features":[9]},{"name":"DXGKMDT_OPM_REDISTRIBUTION_CONTROL_REQUIRED","features":[9]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION","features":[9]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION_SIZE","features":[9]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING","features":[9]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING_PARAMETERS","features":[9]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM","features":[9]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM_PARAMETERS","features":[9]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL","features":[9]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_ACCORDING_TO_CSS_DVD","features":[9]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_PARAMETERS","features":[9]},{"name":"DXGKMDT_OPM_STANDARD_INFORMATION","features":[9]},{"name":"DXGKMDT_OPM_STATUS","features":[9]},{"name":"DXGKMDT_OPM_STATUS_LINK_LOST","features":[9]},{"name":"DXGKMDT_OPM_STATUS_NORMAL","features":[9]},{"name":"DXGKMDT_OPM_STATUS_RENEGOTIATION_REQUIRED","features":[9]},{"name":"DXGKMDT_OPM_STATUS_REVOKED_HDCP_DEVICE_ATTACHED","features":[9]},{"name":"DXGKMDT_OPM_STATUS_TAMPERING_DETECTED","features":[9]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_OFF","features":[9]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_NO_TYPE_RESTRICTION","features":[9]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_TYPE1_RESTRICTION","features":[9]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_PROTECTION_LEVEL","features":[9]},{"name":"DXGKMDT_OPM_VIDEO_OUTPUT_SEMANTICS","features":[9]},{"name":"DXGKMDT_OPM_VOS_COPP_SEMANTICS","features":[9]},{"name":"DXGKMDT_OPM_VOS_OPM_INDIRECT_DISPLAY","features":[9]},{"name":"DXGKMDT_OPM_VOS_OPM_SEMANTICS","features":[9]},{"name":"DXGKMDT_UAB_CERTIFICATE","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME0","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME1","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_MODE","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_NONE","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_CHECKERBOARD","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_COLUMN_INTERLEAVED","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO_OFFSET","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_ROW_INTERLEAVED","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_SEPARATE","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_BILINEAR","features":[9]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_HIGH","features":[9]},{"name":"DXGKMT_POWER_SHARED_TYPE","features":[9]},{"name":"DXGKMT_POWER_SHARED_TYPE_AUDIO","features":[9]},{"name":"DXGKVGPU_ESCAPE_HEAD","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_INITIALIZE","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_PAUSE","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_POWERTRANSITIONCOMPLETE","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_READ_PCI_CONFIG","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_READ_VGPU_TYPE","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_RELEASE","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_RESUME","features":[9,1]},{"name":"DXGKVGPU_ESCAPE_TYPE","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_GET_VGPU_TYPE","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_INITIALIZE","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_PAUSE","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_POWERTRANSITIONCOMPLETE","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_READ_PCI_CONFIG","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_RELEASE","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_RESUME","features":[9]},{"name":"DXGKVGPU_ESCAPE_TYPE_WRITE_PCI_CONFIG","features":[9]},{"name":"DXGKVGPU_ESCAPE_WRITE_PCI_CONFIG","features":[9,1]},{"name":"DXGK_ADAPTER_PERFDATA","features":[9]},{"name":"DXGK_ADAPTER_PERFDATACAPS","features":[9]},{"name":"DXGK_BACKLIGHT_INFO","features":[9]},{"name":"DXGK_BACKLIGHT_OPTIMIZATION_LEVEL","features":[9]},{"name":"DXGK_BRIGHTNESS_CAPS","features":[9]},{"name":"DXGK_BRIGHTNESS_GET_NIT_RANGES_OUT","features":[9]},{"name":"DXGK_BRIGHTNESS_GET_OUT","features":[9]},{"name":"DXGK_BRIGHTNESS_MAXIMUM_NIT_RANGE_COUNT","features":[9]},{"name":"DXGK_BRIGHTNESS_NIT_RANGE","features":[9]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA","features":[9]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA_CHROMATICITY","features":[9]},{"name":"DXGK_BRIGHTNESS_SET_IN","features":[9]},{"name":"DXGK_BRIGHTNESS_STATE","features":[9]},{"name":"DXGK_CHILD_DEVICE_HPD_AWARENESS","features":[9]},{"name":"DXGK_DDT_DISPLAYID","features":[9]},{"name":"DXGK_DDT_EDID","features":[9]},{"name":"DXGK_DDT_INVALID","features":[9]},{"name":"DXGK_DIAG_PROCESS_NAME_LENGTH","features":[9]},{"name":"DXGK_DISPLAY_DESCRIPTOR_TYPE","features":[9]},{"name":"DXGK_DISPLAY_INFORMATION","features":[9]},{"name":"DXGK_DISPLAY_TECHNOLOGY","features":[9]},{"name":"DXGK_DISPLAY_USAGE","features":[9]},{"name":"DXGK_DT_INVALID","features":[9]},{"name":"DXGK_DT_LCD","features":[9]},{"name":"DXGK_DT_MAX","features":[9]},{"name":"DXGK_DT_OLED","features":[9]},{"name":"DXGK_DT_OTHER","features":[9]},{"name":"DXGK_DT_PROJECTOR","features":[9]},{"name":"DXGK_DU_ACCESSORY","features":[9]},{"name":"DXGK_DU_AR","features":[9]},{"name":"DXGK_DU_GENERIC","features":[9]},{"name":"DXGK_DU_INVALID","features":[9]},{"name":"DXGK_DU_MAX","features":[9]},{"name":"DXGK_DU_MEDICAL_IMAGING","features":[9]},{"name":"DXGK_DU_VR","features":[9]},{"name":"DXGK_ENGINE_TYPE","features":[9]},{"name":"DXGK_ENGINE_TYPE_3D","features":[9]},{"name":"DXGK_ENGINE_TYPE_COPY","features":[9]},{"name":"DXGK_ENGINE_TYPE_CRYPTO","features":[9]},{"name":"DXGK_ENGINE_TYPE_MAX","features":[9]},{"name":"DXGK_ENGINE_TYPE_OTHER","features":[9]},{"name":"DXGK_ENGINE_TYPE_OVERLAY","features":[9]},{"name":"DXGK_ENGINE_TYPE_SCENE_ASSEMBLY","features":[9]},{"name":"DXGK_ENGINE_TYPE_VIDEO_DECODE","features":[9]},{"name":"DXGK_ENGINE_TYPE_VIDEO_ENCODE","features":[9]},{"name":"DXGK_ENGINE_TYPE_VIDEO_PROCESSING","features":[9]},{"name":"DXGK_ESCAPE_GPUMMUCAPS","features":[9,1]},{"name":"DXGK_FAULT_ERROR_CODE","features":[9]},{"name":"DXGK_GENERAL_ERROR_CODE","features":[9]},{"name":"DXGK_GENERAL_ERROR_INVALID_INSTRUCTION","features":[9]},{"name":"DXGK_GENERAL_ERROR_PAGE_FAULT","features":[9]},{"name":"DXGK_GPUCLOCKDATA","features":[9]},{"name":"DXGK_GPUCLOCKDATA_FLAGS","features":[9]},{"name":"DXGK_GPUVERSION","features":[9]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_INPUT_V_1_2","features":[9,1,8]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_OUTPUT","features":[9,1,8]},{"name":"DXGK_GRAPHICSPOWER_VERSION","features":[9]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_0","features":[9]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_1","features":[9]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_2","features":[9]},{"name":"DXGK_MAX_GPUVERSION_NAME_LENGTH","features":[9]},{"name":"DXGK_MAX_METADATA_NAME_LENGTH","features":[9]},{"name":"DXGK_MAX_PAGE_TABLE_LEVEL_COUNT","features":[9]},{"name":"DXGK_MIN_PAGE_TABLE_LEVEL_COUNT","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_ID","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_INFO","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_COLOR_CONVERT_COMPLETE","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_COMPLETE","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_1","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_2","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_DROPPED","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_START","features":[9]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_UNKNOWN","features":[9]},{"name":"DXGK_MONITORLINKINFO_CAPABILITIES","features":[9]},{"name":"DXGK_MONITORLINKINFO_USAGEHINTS","features":[9]},{"name":"DXGK_NODEMETADATA","features":[9,1]},{"name":"DXGK_NODEMETADATA_FLAGS","features":[9]},{"name":"DXGK_NODE_PERFDATA","features":[9]},{"name":"DXGK_PAGE_FAULT_ADAPTER_RESET_REQUIRED","features":[9]},{"name":"DXGK_PAGE_FAULT_ENGINE_RESET_REQUIRED","features":[9]},{"name":"DXGK_PAGE_FAULT_FATAL_HARDWARE_ERROR","features":[9]},{"name":"DXGK_PAGE_FAULT_FENCE_INVALID","features":[9]},{"name":"DXGK_PAGE_FAULT_FLAGS","features":[9]},{"name":"DXGK_PAGE_FAULT_HW_CONTEXT_VALID","features":[9]},{"name":"DXGK_PAGE_FAULT_IOMMU","features":[9]},{"name":"DXGK_PAGE_FAULT_PROCESS_HANDLE_VALID","features":[9]},{"name":"DXGK_PAGE_FAULT_WRITE","features":[9]},{"name":"DXGK_PTE","features":[9]},{"name":"DXGK_PTE_PAGE_SIZE","features":[9]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_4KB","features":[9]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_64KB","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_GEOMETRY_SHADER","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_INPUT_ASSEMBLER","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_OUTPUT_MERGER","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_PIXEL_SHADER","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_RASTERIZER","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_STREAM_OUTPUT","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_UNKNOWN","features":[9]},{"name":"DXGK_RENDER_PIPELINE_STAGE_VERTEX_SHADER","features":[9]},{"name":"DXGK_TARGETMODE_DETAIL_TIMING","features":[9]},{"name":"DxgkBacklightOptimizationDesktop","features":[9]},{"name":"DxgkBacklightOptimizationDimmed","features":[9]},{"name":"DxgkBacklightOptimizationDisable","features":[9]},{"name":"DxgkBacklightOptimizationDynamic","features":[9]},{"name":"DxgkBacklightOptimizationEDR","features":[9]},{"name":"FLIPEX_TIMEOUT_USER","features":[9]},{"name":"GPUP_DRIVER_ESCAPE_INPUT","features":[9,1]},{"name":"GUID_DEVINTERFACE_GRAPHICSPOWER","features":[9]},{"name":"HpdAwarenessAlwaysConnected","features":[9]},{"name":"HpdAwarenessInterruptible","features":[9]},{"name":"HpdAwarenessNone","features":[9]},{"name":"HpdAwarenessPolled","features":[9]},{"name":"HpdAwarenessUninitialized","features":[9]},{"name":"IOCTL_GPUP_DRIVER_ESCAPE","features":[9]},{"name":"IOCTL_INTERNAL_GRAPHICSPOWER_REGISTER","features":[9]},{"name":"KMTQAITYPE_ADAPTERADDRESS","features":[9]},{"name":"KMTQAITYPE_ADAPTERADDRESS_RENDER","features":[9]},{"name":"KMTQAITYPE_ADAPTERGUID","features":[9]},{"name":"KMTQAITYPE_ADAPTERGUID_RENDER","features":[9]},{"name":"KMTQAITYPE_ADAPTERPERFDATA","features":[9]},{"name":"KMTQAITYPE_ADAPTERPERFDATA_CAPS","features":[9]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO","features":[9]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO_RENDER","features":[9]},{"name":"KMTQAITYPE_ADAPTERTYPE","features":[9]},{"name":"KMTQAITYPE_ADAPTERTYPE_RENDER","features":[9]},{"name":"KMTQAITYPE_BLOCKLIST_KERNEL","features":[9]},{"name":"KMTQAITYPE_BLOCKLIST_RUNTIME","features":[9]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS","features":[9]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS_RENDER","features":[9]},{"name":"KMTQAITYPE_CPDRIVERNAME","features":[9]},{"name":"KMTQAITYPE_CROSSADAPTERRESOURCE_SUPPORT","features":[9]},{"name":"KMTQAITYPE_CURRENTDISPLAYMODE","features":[9]},{"name":"KMTQAITYPE_DIRECTFLIP_SUPPORT","features":[9]},{"name":"KMTQAITYPE_DISPLAY_CAPS","features":[9]},{"name":"KMTQAITYPE_DISPLAY_UMDRIVERNAME","features":[9]},{"name":"KMTQAITYPE_DLIST_DRIVER_NAME","features":[9]},{"name":"KMTQAITYPE_DRIVERCAPS_EXT","features":[9]},{"name":"KMTQAITYPE_DRIVERVERSION","features":[9]},{"name":"KMTQAITYPE_DRIVERVERSION_RENDER","features":[9]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION","features":[9]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION_RENDER","features":[9]},{"name":"KMTQAITYPE_FLIPQUEUEINFO","features":[9]},{"name":"KMTQAITYPE_GETSEGMENTGROUPSIZE","features":[9]},{"name":"KMTQAITYPE_GETSEGMENTSIZE","features":[9]},{"name":"KMTQAITYPE_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[9]},{"name":"KMTQAITYPE_HWDRM_SUPPORT","features":[9]},{"name":"KMTQAITYPE_HYBRID_DLIST_DLL_SUPPORT","features":[9]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[9]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SUPPORT","features":[9]},{"name":"KMTQAITYPE_KMD_DRIVER_VERSION","features":[9]},{"name":"KMTQAITYPE_MIRACASTCOMPANIONDRIVERNAME","features":[9]},{"name":"KMTQAITYPE_MODELIST","features":[9]},{"name":"KMTQAITYPE_MPO3DDI_SUPPORT","features":[9]},{"name":"KMTQAITYPE_MPOKERNELCAPS_SUPPORT","features":[9]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[9]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[9]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[9]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SUPPORT","features":[9]},{"name":"KMTQAITYPE_NODEMETADATA","features":[9]},{"name":"KMTQAITYPE_NODEPERFDATA","features":[9]},{"name":"KMTQAITYPE_OUTPUTDUPLCONTEXTSCOUNT","features":[9]},{"name":"KMTQAITYPE_PANELFITTER_SUPPORT","features":[9]},{"name":"KMTQAITYPE_PARAVIRTUALIZATION_RENDER","features":[9]},{"name":"KMTQAITYPE_PHYSICALADAPTERCOUNT","features":[9]},{"name":"KMTQAITYPE_PHYSICALADAPTERDEVICEIDS","features":[9]},{"name":"KMTQAITYPE_PHYSICALADAPTERPNPKEY","features":[9]},{"name":"KMTQAITYPE_QUERYREGISTRY","features":[9]},{"name":"KMTQAITYPE_QUERY_ADAPTER_UNIQUE_GUID","features":[9]},{"name":"KMTQAITYPE_QUERY_GPUMMU_CAPS","features":[9]},{"name":"KMTQAITYPE_QUERY_HW_PROTECTION_TEARDOWN_COUNT","features":[9]},{"name":"KMTQAITYPE_QUERY_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[9]},{"name":"KMTQAITYPE_QUERY_MIRACAST_DRIVER_TYPE","features":[9]},{"name":"KMTQAITYPE_QUERY_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[9]},{"name":"KMTQAITYPE_SCANOUT_CAPS","features":[9]},{"name":"KMTQAITYPE_SERVICENAME","features":[9]},{"name":"KMTQAITYPE_SETWORKINGSETINFO","features":[9]},{"name":"KMTQAITYPE_TRACKEDWORKLOAD_SUPPORT","features":[9]},{"name":"KMTQAITYPE_UMDRIVERNAME","features":[9]},{"name":"KMTQAITYPE_UMDRIVERPRIVATE","features":[9]},{"name":"KMTQAITYPE_UMD_DRIVER_VERSION","features":[9]},{"name":"KMTQAITYPE_UMOPENGLINFO","features":[9]},{"name":"KMTQAITYPE_VGPUINTERFACEID","features":[9]},{"name":"KMTQAITYPE_VIRTUALADDRESSINFO","features":[9]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS","features":[9]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS_RENDER","features":[9]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS","features":[9]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS_RENDER","features":[9]},{"name":"KMTQAITYPE_WDDM_2_0_CAPS","features":[9]},{"name":"KMTQAITYPE_WDDM_2_7_CAPS","features":[9]},{"name":"KMTQAITYPE_WDDM_2_9_CAPS","features":[9]},{"name":"KMTQAITYPE_WDDM_3_0_CAPS","features":[9]},{"name":"KMTQAITYPE_WDDM_3_1_CAPS","features":[9]},{"name":"KMTQAITYPE_WSAUMDIMAGENAME","features":[9]},{"name":"KMTQAITYPE_XBOX","features":[9]},{"name":"KMTQUERYADAPTERINFOTYPE","features":[9]},{"name":"KMTQUITYPE_GPUVERSION","features":[9]},{"name":"KMTUMDVERSION","features":[9]},{"name":"KMTUMDVERSION_DX10","features":[9]},{"name":"KMTUMDVERSION_DX11","features":[9]},{"name":"KMTUMDVERSION_DX12","features":[9]},{"name":"KMTUMDVERSION_DX12_WSA32","features":[9]},{"name":"KMTUMDVERSION_DX12_WSA64","features":[9]},{"name":"KMTUMDVERSION_DX9","features":[9]},{"name":"KMT_DISPLAY_UMDVERSION_1","features":[9]},{"name":"KMT_DISPLAY_UMD_VERSION","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_1_0","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_1_1","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_1_1_PRERELEASE","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_1_2","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_1_3","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_0","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_1","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_2","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_3","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_4","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_5","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_6","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_7","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_8","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_2_9","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_3_0","features":[9]},{"name":"KMT_DRIVERVERSION_WDDM_3_1","features":[9]},{"name":"LPD3DHAL_CLEAR2CB","features":[9,10]},{"name":"LPD3DHAL_CLEARCB","features":[9,10]},{"name":"LPD3DHAL_CONTEXTCREATECB","features":[9,1,11,12]},{"name":"LPD3DHAL_CONTEXTDESTROYALLCB","features":[9]},{"name":"LPD3DHAL_CONTEXTDESTROYCB","features":[9]},{"name":"LPD3DHAL_DRAWONEINDEXEDPRIMITIVECB","features":[9,10]},{"name":"LPD3DHAL_DRAWONEPRIMITIVECB","features":[9,10]},{"name":"LPD3DHAL_DRAWPRIMITIVES2CB","features":[9,1,11,12]},{"name":"LPD3DHAL_DRAWPRIMITIVESCB","features":[9]},{"name":"LPD3DHAL_GETSTATECB","features":[9,10]},{"name":"LPD3DHAL_RENDERPRIMITIVECB","features":[9,10]},{"name":"LPD3DHAL_RENDERSTATECB","features":[9]},{"name":"LPD3DHAL_SCENECAPTURECB","features":[9]},{"name":"LPD3DHAL_SETRENDERTARGETCB","features":[9,1,11,12]},{"name":"LPD3DHAL_TEXTURECREATECB","features":[9]},{"name":"LPD3DHAL_TEXTUREDESTROYCB","features":[9]},{"name":"LPD3DHAL_TEXTUREGETSURFCB","features":[9]},{"name":"LPD3DHAL_TEXTURESWAPCB","features":[9]},{"name":"LPD3DHAL_VALIDATETEXTURESTAGESTATECB","features":[9]},{"name":"LPD3DNTHAL_CLEAR2CB","features":[9,10]},{"name":"LPD3DNTHAL_CONTEXTCREATECB","features":[9,1,11]},{"name":"LPD3DNTHAL_CONTEXTDESTROYALLCB","features":[9]},{"name":"LPD3DNTHAL_CONTEXTDESTROYCB","features":[9]},{"name":"LPD3DNTHAL_DRAWPRIMITIVES2CB","features":[9,1,11]},{"name":"LPD3DNTHAL_SCENECAPTURECB","features":[9]},{"name":"LPD3DNTHAL_SETRENDERTARGETCB","features":[9,1,11]},{"name":"LPD3DNTHAL_TEXTURECREATECB","features":[9,1]},{"name":"LPD3DNTHAL_TEXTUREDESTROYCB","features":[9]},{"name":"LPD3DNTHAL_TEXTUREGETSURFCB","features":[9,1]},{"name":"LPD3DNTHAL_TEXTURESWAPCB","features":[9]},{"name":"LPD3DNTHAL_VALIDATETEXTURESTAGESTATECB","features":[9]},{"name":"MAX_ENUM_ADAPTERS","features":[9]},{"name":"MiracastStartPending","features":[9]},{"name":"MiracastStarted","features":[9]},{"name":"MiracastStopPending","features":[9]},{"name":"MiracastStopped","features":[9]},{"name":"NUM_KMTUMDVERSIONS","features":[9]},{"name":"NUM_KMT_DISPLAY_UMDVERSIONS","features":[9]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_INFO","features":[9,1]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS","features":[9]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_ACTIVE","features":[9]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_INACTIVE","features":[9]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_PENDING_DESTROY","features":[9]},{"name":"OUTPUTDUPL_CREATE_MAX_KEYEDMUTXES","features":[9]},{"name":"PDXGK_FSTATE_NOTIFICATION","features":[9,1]},{"name":"PDXGK_GRAPHICSPOWER_UNREGISTER","features":[9,1]},{"name":"PDXGK_INITIAL_COMPONENT_STATE","features":[9,1]},{"name":"PDXGK_POWER_NOTIFICATION","features":[9,1,8]},{"name":"PDXGK_REMOVAL_NOTIFICATION","features":[9]},{"name":"PDXGK_SET_SHARED_POWER_COMPONENT_STATE","features":[9,1]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX","features":[9,1]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX2","features":[9,1]},{"name":"PFND3DKMT_ADJUSTFULLSCREENGAMMA","features":[9,1]},{"name":"PFND3DKMT_BUDGETCHANGENOTIFICATIONCALLBACK","features":[9]},{"name":"PFND3DKMT_CANCELPRESENTS","features":[9,1]},{"name":"PFND3DKMT_CHANGESURFACEPOINTER","features":[9,1,12]},{"name":"PFND3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[9,1]},{"name":"PFND3DKMT_CHECKEXCLUSIVEOWNERSHIP","features":[9,1]},{"name":"PFND3DKMT_CHECKMONITORPOWERSTATE","features":[9,1]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[9,1]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[9,1]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[9,1]},{"name":"PFND3DKMT_CHECKOCCLUSION","features":[9,1]},{"name":"PFND3DKMT_CHECKSHAREDRESOURCEACCESS","features":[9,1]},{"name":"PFND3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[9,1]},{"name":"PFND3DKMT_CLOSEADAPTER","features":[9,1]},{"name":"PFND3DKMT_CONFIGURESHAREDRESOURCE","features":[9,1]},{"name":"PFND3DKMT_CONNECTDOORBELL","features":[9,1]},{"name":"PFND3DKMT_CREATEALLOCATION","features":[9,1]},{"name":"PFND3DKMT_CREATEALLOCATION2","features":[9,1]},{"name":"PFND3DKMT_CREATECONTEXT","features":[9,1]},{"name":"PFND3DKMT_CREATECONTEXTVIRTUAL","features":[9,1]},{"name":"PFND3DKMT_CREATEDCFROMMEMORY","features":[9,1,12]},{"name":"PFND3DKMT_CREATEDEVICE","features":[9,1]},{"name":"PFND3DKMT_CREATEDOORBELL","features":[9,1]},{"name":"PFND3DKMT_CREATEHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX","features":[9,1]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX2","features":[9,1]},{"name":"PFND3DKMT_CREATENATIVEFENCE","features":[9,1]},{"name":"PFND3DKMT_CREATEOUTPUTDUPL","features":[9,1]},{"name":"PFND3DKMT_CREATEOVERLAY","features":[9,1]},{"name":"PFND3DKMT_CREATEPAGINGQUEUE","features":[9,1]},{"name":"PFND3DKMT_CREATEPROTECTEDSESSION","features":[9,1]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[9,1]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[9,1]},{"name":"PFND3DKMT_DESTROYALLOCATION","features":[9,1]},{"name":"PFND3DKMT_DESTROYALLOCATION2","features":[9,1]},{"name":"PFND3DKMT_DESTROYCONTEXT","features":[9,1]},{"name":"PFND3DKMT_DESTROYDCFROMMEMORY","features":[9,1,12]},{"name":"PFND3DKMT_DESTROYDEVICE","features":[9,1]},{"name":"PFND3DKMT_DESTROYDOORBELL","features":[9,1]},{"name":"PFND3DKMT_DESTROYHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_DESTROYKEYEDMUTEX","features":[9,1]},{"name":"PFND3DKMT_DESTROYOUTPUTDUPL","features":[9,1]},{"name":"PFND3DKMT_DESTROYOVERLAY","features":[9,1]},{"name":"PFND3DKMT_DESTROYPAGINGQUEUE","features":[9,1]},{"name":"PFND3DKMT_DESTROYPROTECTEDSESSION","features":[9,1]},{"name":"PFND3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[9,1]},{"name":"PFND3DKMT_ENUMADAPTERS","features":[9,1]},{"name":"PFND3DKMT_ENUMADAPTERS2","features":[9,1]},{"name":"PFND3DKMT_ENUMADAPTERS3","features":[9,1]},{"name":"PFND3DKMT_ESCAPE","features":[9,1]},{"name":"PFND3DKMT_EVICT","features":[9,1]},{"name":"PFND3DKMT_FLIPOVERLAY","features":[9,1]},{"name":"PFND3DKMT_FLUSHHEAPTRANSITIONS","features":[9,1]},{"name":"PFND3DKMT_FREEGPUVIRTUALADDRESS","features":[9,1]},{"name":"PFND3DKMT_GETALLOCATIONPRIORITY","features":[9,1]},{"name":"PFND3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[9,1]},{"name":"PFND3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[9,1]},{"name":"PFND3DKMT_GETDEVICESTATE","features":[9,1]},{"name":"PFND3DKMT_GETDISPLAYMODELIST","features":[9,1]},{"name":"PFND3DKMT_GETDWMVERTICALBLANKEVENT","features":[9,1]},{"name":"PFND3DKMT_GETMULTIPLANEOVERLAYCAPS","features":[9,1]},{"name":"PFND3DKMT_GETMULTISAMPLEMETHODLIST","features":[9,1]},{"name":"PFND3DKMT_GETOVERLAYSTATE","features":[9,1]},{"name":"PFND3DKMT_GETPOSTCOMPOSITIONCAPS","features":[9,1]},{"name":"PFND3DKMT_GETPRESENTHISTORY","features":[9,1]},{"name":"PFND3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[9,1]},{"name":"PFND3DKMT_GETPROCESSSCHEDULINGPRIORITYCLASS","features":[9,1]},{"name":"PFND3DKMT_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[9,1]},{"name":"PFND3DKMT_GETRUNTIMEDATA","features":[9,1]},{"name":"PFND3DKMT_GETSCANLINE","features":[9,1]},{"name":"PFND3DKMT_GETSHAREDPRIMARYHANDLE","features":[9,1]},{"name":"PFND3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[9,1]},{"name":"PFND3DKMT_INVALIDATEACTIVEVIDPN","features":[9,1]},{"name":"PFND3DKMT_INVALIDATECACHE","features":[9,1]},{"name":"PFND3DKMT_LOCK","features":[9,1]},{"name":"PFND3DKMT_LOCK2","features":[9,1]},{"name":"PFND3DKMT_MAKERESIDENT","features":[9,1]},{"name":"PFND3DKMT_MAPGPUVIRTUALADDRESS","features":[9,1]},{"name":"PFND3DKMT_MARKDEVICEASERROR","features":[9,1]},{"name":"PFND3DKMT_NOTIFYWORKSUBMISSION","features":[9,1]},{"name":"PFND3DKMT_OFFERALLOCATIONS","features":[9,1]},{"name":"PFND3DKMT_OPENADAPTERFROMDEVICENAME","features":[9,1]},{"name":"PFND3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[9,1]},{"name":"PFND3DKMT_OPENADAPTERFROMHDC","features":[9,1,12]},{"name":"PFND3DKMT_OPENADAPTERFROMLUID","features":[9,1]},{"name":"PFND3DKMT_OPENKEYEDMUTEX","features":[9,1]},{"name":"PFND3DKMT_OPENKEYEDMUTEX2","features":[9,1]},{"name":"PFND3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[9,1]},{"name":"PFND3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[9,1]},{"name":"PFND3DKMT_OPENNTHANDLEFROMNAME","features":[2,9,1]},{"name":"PFND3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[9,1]},{"name":"PFND3DKMT_OPENRESOURCE","features":[9,1]},{"name":"PFND3DKMT_OPENRESOURCE2","features":[9,1]},{"name":"PFND3DKMT_OPENRESOURCEFROMNTHANDLE","features":[9,1]},{"name":"PFND3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[9,1]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[9,1]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[9,1]},{"name":"PFND3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[2,9,1]},{"name":"PFND3DKMT_OUTPUTDUPLGETFRAMEINFO","features":[9,1]},{"name":"PFND3DKMT_OUTPUTDUPLGETMETADATA","features":[9,1]},{"name":"PFND3DKMT_OUTPUTDUPLGETPOINTERSHAPEDATA","features":[9,1]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENT","features":[9,1]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_OUTPUTDUPLRELEASEFRAME","features":[9,1]},{"name":"PFND3DKMT_PINDIRECTFLIPRESOURCES","features":[9,1]},{"name":"PFND3DKMT_POLLDISPLAYCHILDREN","features":[9,1]},{"name":"PFND3DKMT_PRESENT","features":[9,1]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY","features":[9,1]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY2","features":[9,1]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY3","features":[9,1]},{"name":"PFND3DKMT_QUERYADAPTERINFO","features":[9,1]},{"name":"PFND3DKMT_QUERYALLOCATIONRESIDENCY","features":[9,1]},{"name":"PFND3DKMT_QUERYCLOCKCALIBRATION","features":[9,1]},{"name":"PFND3DKMT_QUERYFSEBLOCK","features":[9,1]},{"name":"PFND3DKMT_QUERYHYBRIDLISTVALUE","features":[9,1]},{"name":"PFND3DKMT_QUERYPROCESSOFFERINFO","features":[9,1]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[9,1]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[9,1]},{"name":"PFND3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[9,1]},{"name":"PFND3DKMT_QUERYRESOURCEINFO","features":[9,1]},{"name":"PFND3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[9,1]},{"name":"PFND3DKMT_QUERYSTATISTICS","features":[9,1]},{"name":"PFND3DKMT_QUERYVIDEOMEMORYINFO","features":[9,1]},{"name":"PFND3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[9,1]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS","features":[9,1]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS2","features":[9,1]},{"name":"PFND3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[9,1]},{"name":"PFND3DKMT_REGISTERTRIMNOTIFICATION","features":[9,1]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX","features":[9,1]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX2","features":[9,1]},{"name":"PFND3DKMT_RELEASEPROCESSVIDPNSOURCEOWNERS","features":[9,1]},{"name":"PFND3DKMT_RENDER","features":[9,1]},{"name":"PFND3DKMT_RESERVEGPUVIRTUALADDRESS","features":[9,1]},{"name":"PFND3DKMT_SETALLOCATIONPRIORITY","features":[9,1]},{"name":"PFND3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[9,1]},{"name":"PFND3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[9,1]},{"name":"PFND3DKMT_SETDISPLAYMODE","features":[9,1]},{"name":"PFND3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[9,1]},{"name":"PFND3DKMT_SETFSEBLOCK","features":[9,1]},{"name":"PFND3DKMT_SETGAMMARAMP","features":[9,1]},{"name":"PFND3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[9,1]},{"name":"PFND3DKMT_SETHYBRIDLISTVVALUE","features":[9,1]},{"name":"PFND3DKMT_SETPROCESSSCHEDULINGPRIORITYCLASS","features":[9,1]},{"name":"PFND3DKMT_SETQUEUEDLIMIT","features":[9,1]},{"name":"PFND3DKMT_SETSTABLEPOWERSTATE","features":[9,1]},{"name":"PFND3DKMT_SETSTEREOENABLED","features":[9,1]},{"name":"PFND3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[9,1]},{"name":"PFND3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[9,1]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER","features":[9,1]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER1","features":[9,1]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER2","features":[9,1]},{"name":"PFND3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[9,1]},{"name":"PFND3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[9,1]},{"name":"PFND3DKMT_SHAREOBJECTS","features":[2,9,1]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[9,1]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[9,1]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[9,1]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[9,1]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[9,1]},{"name":"PFND3DKMT_SUBMITCOMMAND","features":[9,1]},{"name":"PFND3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_SUBMITPRESENTTOHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[9,1]},{"name":"PFND3DKMT_TRIMNOTIFICATIONCALLBACK","features":[9]},{"name":"PFND3DKMT_TRIMPROCESSCOMMITMENT","features":[9,1]},{"name":"PFND3DKMT_UNLOCK","features":[9,1]},{"name":"PFND3DKMT_UNLOCK2","features":[9,1]},{"name":"PFND3DKMT_UNPINDIRECTFLIPRESOURCES","features":[9,1]},{"name":"PFND3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[9,1]},{"name":"PFND3DKMT_UNREGISTERTRIMNOTIFICATION","features":[9,1]},{"name":"PFND3DKMT_UPDATEALLOCATIONPROPERTY","features":[9,1]},{"name":"PFND3DKMT_UPDATEGPUVIRTUALADDRESS","features":[9,1]},{"name":"PFND3DKMT_UPDATEOVERLAY","features":[9,1]},{"name":"PFND3DKMT_WAITFORIDLE","features":[9,1]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[9,1]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[9,1]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[9,1]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[9,1]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT","features":[9,1]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT2","features":[9,1]},{"name":"PFND3DNTPARSEUNKNOWNCOMMAND","features":[9]},{"name":"PFND3DPARSEUNKNOWNCOMMAND","features":[9]},{"name":"RTPATCHFLAG_HASINFO","features":[9]},{"name":"RTPATCHFLAG_HASSEGS","features":[9]},{"name":"SHARED_ALLOCATION_WRITE","features":[9]},{"name":"_NT_D3DDEVCAPS_HWINDEXBUFFER","features":[9]},{"name":"_NT_D3DDEVCAPS_HWVERTEXBUFFER","features":[9]},{"name":"_NT_D3DDEVCAPS_SUBVOLUMELOCK","features":[9]},{"name":"_NT_D3DFVF_FOG","features":[9]},{"name":"_NT_D3DGDI2_MAGIC","features":[9]},{"name":"_NT_D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[9]},{"name":"_NT_D3DGDI2_TYPE_DEFER_AGP_FREES","features":[9]},{"name":"_NT_D3DGDI2_TYPE_DXVERSION","features":[9]},{"name":"_NT_D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETADAPTERGROUP","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS8","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS9","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERY","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETDDIVERSION","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODE","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETFORMAT","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETFORMATCOUNT","features":[9]},{"name":"_NT_D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[9]},{"name":"_NT_D3DLINEPATTERN","features":[9]},{"name":"_NT_D3DPMISCCAPS_FOGINFVF","features":[9]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_0","features":[9]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_COLOROUT_MAX_V3_0","features":[9]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[9]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_SW_DX9","features":[9]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_DX8","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_SW_DX9","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_2","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_3","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_4","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_CONSTREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_DX8","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_2","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_3","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_4","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_INPUTREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V2_1","features":[9]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V3_0","features":[9]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[9]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[9]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V2_1","features":[9]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V3_0","features":[9]},{"name":"_NT_D3DPS_PREDICATE_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_PREDICATE_MAX_V3_0","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_DX8","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_2","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_3","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_4","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_TEMPREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_DX8","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_2","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_3","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_4","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DRS_DELETERTPATCH","features":[9]},{"name":"_NT_D3DVS_ADDRREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_ADDRREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[9]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_SW_DX9","features":[9]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_CONSTREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_CONSTREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_INPUTREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_INPUTREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_LABEL_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[9]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_0","features":[9]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_1","features":[9]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V3_0","features":[9]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[9]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[9]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[9]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_0","features":[9]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_1","features":[9]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V3_0","features":[9]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_SW_DX9","features":[9]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_PREDICATE_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_PREDICATE_MAX_V3_0","features":[9]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_TEMPREG_MAX_V1_1","features":[9]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_0","features":[9]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_1","features":[9]},{"name":"_NT_D3DVS_TEMPREG_MAX_V3_0","features":[9]},{"name":"_NT_RTPATCHFLAG_HASINFO","features":[9]},{"name":"_NT_RTPATCHFLAG_HASSEGS","features":[9]}],"342":[{"name":"AUTHENTICATE","features":[14]},{"name":"BINARY_COMPATIBLE","features":[14]},{"name":"BINARY_DATA","features":[14]},{"name":"BROADCAST_VC","features":[14]},{"name":"BSSID_INFO","features":[14]},{"name":"CALL_PARAMETERS_CHANGED","features":[14]},{"name":"CLOCK_NETWORK_DERIVED","features":[14]},{"name":"CLOCK_PRECISION","features":[14]},{"name":"CL_ADD_PARTY_COMPLETE_HANDLER","features":[14]},{"name":"CL_CALL_CONNECTED_HANDLER","features":[14]},{"name":"CL_CLOSE_AF_COMPLETE_HANDLER","features":[14]},{"name":"CL_CLOSE_CALL_COMPLETE_HANDLER","features":[14]},{"name":"CL_DEREG_SAP_COMPLETE_HANDLER","features":[14]},{"name":"CL_DROP_PARTY_COMPLETE_HANDLER","features":[14]},{"name":"CL_INCOMING_CALL_HANDLER","features":[14]},{"name":"CL_INCOMING_CALL_QOS_CHANGE_HANDLER","features":[14]},{"name":"CL_INCOMING_CLOSE_CALL_HANDLER","features":[14]},{"name":"CL_INCOMING_DROP_PARTY_HANDLER","features":[14]},{"name":"CL_MAKE_CALL_COMPLETE_HANDLER","features":[14]},{"name":"CL_MODIFY_CALL_QOS_COMPLETE_HANDLER","features":[14]},{"name":"CL_OPEN_AF_COMPLETE_HANDLER","features":[14]},{"name":"CL_REG_SAP_COMPLETE_HANDLER","features":[14]},{"name":"CM_ACTIVATE_VC_COMPLETE_HANDLER","features":[14]},{"name":"CM_ADD_PARTY_HANDLER","features":[14]},{"name":"CM_CLOSE_AF_HANDLER","features":[14]},{"name":"CM_CLOSE_CALL_HANDLER","features":[14]},{"name":"CM_DEACTIVATE_VC_COMPLETE_HANDLER","features":[14]},{"name":"CM_DEREG_SAP_HANDLER","features":[14]},{"name":"CM_DROP_PARTY_HANDLER","features":[14]},{"name":"CM_INCOMING_CALL_COMPLETE_HANDLER","features":[14]},{"name":"CM_MAKE_CALL_HANDLER","features":[14]},{"name":"CM_MODIFY_CALL_QOS_HANDLER","features":[14]},{"name":"CM_OPEN_AF_HANDLER","features":[14]},{"name":"CM_REG_SAP_HANDLER","features":[14]},{"name":"CO_ADDRESS","features":[14]},{"name":"CO_ADDRESS_FAMILY","features":[14]},{"name":"CO_ADDRESS_FAMILY_PROXY","features":[14]},{"name":"CO_ADDRESS_LIST","features":[14]},{"name":"CO_AF_REGISTER_NOTIFY_HANDLER","features":[14]},{"name":"CO_CALL_MANAGER_PARAMETERS","features":[14,15]},{"name":"CO_CALL_PARAMETERS","features":[14]},{"name":"CO_CREATE_VC_HANDLER","features":[14]},{"name":"CO_DELETE_VC_HANDLER","features":[14]},{"name":"CO_MEDIA_PARAMETERS","features":[14]},{"name":"CO_PVC","features":[14]},{"name":"CO_SAP","features":[14]},{"name":"CO_SEND_FLAG_SET_DISCARD_ELIBILITY","features":[14]},{"name":"CO_SPECIFIC_PARAMETERS","features":[14]},{"name":"CRYPTO_GENERIC_ERROR","features":[14]},{"name":"CRYPTO_INVALID_PACKET_SYNTAX","features":[14]},{"name":"CRYPTO_INVALID_PROTOCOL","features":[14]},{"name":"CRYPTO_SUCCESS","features":[14]},{"name":"CRYPTO_TRANSPORT_AH_AUTH_FAILED","features":[14]},{"name":"CRYPTO_TRANSPORT_ESP_AUTH_FAILED","features":[14]},{"name":"CRYPTO_TUNNEL_AH_AUTH_FAILED","features":[14]},{"name":"CRYPTO_TUNNEL_ESP_AUTH_FAILED","features":[14]},{"name":"CachedNetBufferList","features":[14]},{"name":"ClassificationHandlePacketInfo","features":[14]},{"name":"DD_NDIS_DEVICE_NAME","features":[14]},{"name":"DOT11_RSN_KCK_LENGTH","features":[14]},{"name":"DOT11_RSN_KEK_LENGTH","features":[14]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[14]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[14]},{"name":"ENCRYPT","features":[14]},{"name":"ERRED_PACKET_INDICATION","features":[14]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[14]},{"name":"ETH_FILTER","features":[14]},{"name":"FILTERDBS","features":[14]},{"name":"GEN_GET_NETCARD_TIME","features":[14]},{"name":"GEN_GET_TIME_CAPS","features":[14]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[14]},{"name":"GUID_NDIS_NDK_STATE","features":[14]},{"name":"INDICATE_END_OF_TX","features":[14]},{"name":"INDICATE_ERRED_PACKETS","features":[14]},{"name":"IOCTL_NDIS_RESERVED5","features":[14]},{"name":"IOCTL_NDIS_RESERVED6","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[14]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[14]},{"name":"IPSEC_OFFLOAD_V2_ESN_SA","features":[14]},{"name":"IPSEC_OFFLOAD_V2_INBOUND","features":[14]},{"name":"IPSEC_OFFLOAD_V2_IPv6","features":[14]},{"name":"IPSEC_OFFLOAD_V2_MAX_EXTENSION_HEADERS","features":[14]},{"name":"IPSEC_OFFLOAD_V2_TRANSPORT_OVER_UDP_ESP_ENCAPSULATION_TUNNEL","features":[14]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_NONE","features":[14]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT","features":[14]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT_OVER_TUNNEL","features":[14]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TUNNEL","features":[14]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_IKE","features":[14]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_OTHER","features":[14]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_IKE","features":[14]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_OTHER","features":[14]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_IKE","features":[14]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_OTHER","features":[14]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_IKE","features":[14]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_OTHER","features":[14]},{"name":"Ieee8021QInfo","features":[14]},{"name":"IpSecPacketInfo","features":[14]},{"name":"LOCK_STATE","features":[14]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[14]},{"name":"MAX_HASHES","features":[14]},{"name":"MEDIA_SPECIFIC_INFORMATION","features":[14]},{"name":"MINIPORT_CO_ACTIVATE_VC","features":[14]},{"name":"MINIPORT_CO_CREATE_VC","features":[14]},{"name":"MINIPORT_CO_DEACTIVATE_VC","features":[14]},{"name":"MINIPORT_CO_DELETE_VC","features":[14]},{"name":"MULTIPOINT_VC","features":[14]},{"name":"MaxPerPacketInfo","features":[14]},{"name":"NBL_FLAGS_MINIPORT_RESERVED","features":[14]},{"name":"NBL_FLAGS_NDIS_RESERVED","features":[14]},{"name":"NBL_FLAGS_PROTOCOL_RESERVED","features":[14]},{"name":"NBL_FLAGS_SCRATCH","features":[14]},{"name":"NBL_PROT_RSVD_FLAGS","features":[14]},{"name":"NDIS630_MINIPORT","features":[14]},{"name":"NDIS685_MINIPORT","features":[14]},{"name":"NDIS_802_11_AI_REQFI","features":[14]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[14]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[14]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[14]},{"name":"NDIS_802_11_AI_RESFI","features":[14]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[14]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[14]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[14]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[14]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[14]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[14]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[14]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[14]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[14]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[14]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[14]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[14]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[14]},{"name":"NDIS_802_11_BSSID_LIST","features":[14]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[14]},{"name":"NDIS_802_11_CAPABILITY","features":[14]},{"name":"NDIS_802_11_CONFIGURATION","features":[14]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[14]},{"name":"NDIS_802_11_FIXED_IEs","features":[14]},{"name":"NDIS_802_11_KEY","features":[14]},{"name":"NDIS_802_11_LENGTH_RATES","features":[14]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[14]},{"name":"NDIS_802_11_LENGTH_SSID","features":[14]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[14]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[14]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[14]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[14]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[14]},{"name":"NDIS_802_11_PMKID","features":[14]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[14]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[14]},{"name":"NDIS_802_11_POWER_MODE","features":[14]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[14]},{"name":"NDIS_802_11_RADIO_STATUS","features":[14]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[14]},{"name":"NDIS_802_11_REMOVE_KEY","features":[14]},{"name":"NDIS_802_11_SSID","features":[14]},{"name":"NDIS_802_11_STATISTICS","features":[14]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[14]},{"name":"NDIS_802_11_STATUS_TYPE","features":[14]},{"name":"NDIS_802_11_TEST","features":[14]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[14]},{"name":"NDIS_802_11_WEP","features":[14]},{"name":"NDIS_802_11_WEP_STATUS","features":[14]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[14]},{"name":"NDIS_802_5_RING_STATE","features":[14]},{"name":"NDIS_AF_LIST","features":[14]},{"name":"NDIS_ANY_NUMBER_OF_NBLS","features":[14]},{"name":"NDIS_ATTRIBUTE_BUS_MASTER","features":[14]},{"name":"NDIS_ATTRIBUTE_DESERIALIZE","features":[14]},{"name":"NDIS_ATTRIBUTE_DO_NOT_BIND_TO_ALL_CO","features":[14]},{"name":"NDIS_ATTRIBUTE_IGNORE_PACKET_TIMEOUT","features":[14]},{"name":"NDIS_ATTRIBUTE_IGNORE_REQUEST_TIMEOUT","features":[14]},{"name":"NDIS_ATTRIBUTE_IGNORE_TOKEN_RING_ERRORS","features":[14]},{"name":"NDIS_ATTRIBUTE_INTERMEDIATE_DRIVER","features":[14]},{"name":"NDIS_ATTRIBUTE_MINIPORT_PADS_SHORT_PACKETS","features":[14]},{"name":"NDIS_ATTRIBUTE_NOT_CO_NDIS","features":[14]},{"name":"NDIS_ATTRIBUTE_NO_HALT_ON_SUSPEND","features":[14]},{"name":"NDIS_ATTRIBUTE_SURPRISE_REMOVE_OK","features":[14]},{"name":"NDIS_ATTRIBUTE_USES_SAFE_BUFFER_APIS","features":[14]},{"name":"NDIS_BIND_FAILED_NOTIFICATION_REVISION_1","features":[14]},{"name":"NDIS_BIND_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_BIND_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_BIND_PARAMETERS_REVISION_3","features":[14]},{"name":"NDIS_BIND_PARAMETERS_REVISION_4","features":[14]},{"name":"NDIS_CALL_MANAGER_CHARACTERISTICS","features":[14]},{"name":"NDIS_CLASS_ID","features":[14]},{"name":"NDIS_CLONE_FLAGS_RESERVED","features":[14]},{"name":"NDIS_CLONE_FLAGS_USE_ORIGINAL_MDLS","features":[14]},{"name":"NDIS_CONFIGURATION_OBJECT_REVISION_1","features":[14]},{"name":"NDIS_CONFIGURATION_PARAMETER","features":[14,1]},{"name":"NDIS_CONFIG_FLAG_FILTER_INSTANCE_CONFIGURATION","features":[14]},{"name":"NDIS_CO_CALL_MANAGER_OPTIONAL_HANDLERS_REVISION_1","features":[14]},{"name":"NDIS_CO_CLIENT_OPTIONAL_HANDLERS_REVISION_1","features":[14]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[14]},{"name":"NDIS_CO_LINK_SPEED","features":[14]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[14]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[14]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[14]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[14]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[14]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[14]},{"name":"NDIS_DEVICE_OBJECT_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_DEVICE_PNP_EVENT","features":[14]},{"name":"NDIS_DEVICE_POWER_STATE","features":[14]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[14]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[14]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[14]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[14]},{"name":"NDIS_DMA_BLOCK","features":[2,14,1,7]},{"name":"NDIS_DMA_DESCRIPTION","features":[14,3,1]},{"name":"NDIS_DRIVER_FLAGS_RESERVED","features":[14]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[14]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[14]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[14]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[14]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[14]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[14]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[14]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[14]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[14]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[14]},{"name":"NDIS_ENCAPSULATION_NULL","features":[14]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[14]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[14]},{"name":"NDIS_ENUM_FILTERS_REVISION_1","features":[14]},{"name":"NDIS_ENVIRONMENT_TYPE","features":[14]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[14]},{"name":"NDIS_ETH_TYPE_802_1X","features":[14]},{"name":"NDIS_ETH_TYPE_ARP","features":[14]},{"name":"NDIS_ETH_TYPE_IPV4","features":[14]},{"name":"NDIS_ETH_TYPE_IPV6","features":[14]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[14]},{"name":"NDIS_EVENT","features":[2,14,1,7]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[14]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[14]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[14]},{"name":"NDIS_FILTER_ATTACH_FLAGS_IGNORE_MANDATORY","features":[14]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_3","features":[14]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_4","features":[14]},{"name":"NDIS_FILTER_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_2","features":[14]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_3","features":[14]},{"name":"NDIS_FILTER_DRIVER_MANDATORY","features":[14]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[14]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[14]},{"name":"NDIS_FILTER_INTERFACE_IM_FILTER","features":[14]},{"name":"NDIS_FILTER_INTERFACE_LW_FILTER","features":[14]},{"name":"NDIS_FILTER_INTERFACE_RECEIVE_BYPASS","features":[14]},{"name":"NDIS_FILTER_INTERFACE_REVISION_1","features":[14]},{"name":"NDIS_FILTER_INTERFACE_REVISION_2","features":[14]},{"name":"NDIS_FILTER_INTERFACE_SEND_BYPASS","features":[14]},{"name":"NDIS_FILTER_MAJOR_VERSION","features":[14]},{"name":"NDIS_FILTER_MINIMUM_MAJOR_VERSION","features":[14]},{"name":"NDIS_FILTER_MINIMUM_MINOR_VERSION","features":[14]},{"name":"NDIS_FILTER_MINOR_VERSION","features":[14]},{"name":"NDIS_FILTER_PARTIAL_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_FILTER_PAUSE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_FILTER_RESTART_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_FLAGS_DONT_LOOPBACK","features":[14]},{"name":"NDIS_FLAGS_DOUBLE_BUFFERED","features":[14]},{"name":"NDIS_FLAGS_IS_LOOPBACK_PACKET","features":[14]},{"name":"NDIS_FLAGS_LOOPBACK_ONLY","features":[14]},{"name":"NDIS_FLAGS_MULTICAST_PACKET","features":[14]},{"name":"NDIS_FLAGS_PADDED","features":[14]},{"name":"NDIS_FLAGS_PROTOCOL_ID_MASK","features":[14]},{"name":"NDIS_FLAGS_RESERVED2","features":[14]},{"name":"NDIS_FLAGS_RESERVED3","features":[14]},{"name":"NDIS_FLAGS_RESERVED4","features":[14]},{"name":"NDIS_FLAGS_SENT_AT_DPC","features":[14]},{"name":"NDIS_FLAGS_USES_ORIGINAL_PACKET","features":[14]},{"name":"NDIS_FLAGS_USES_SG_BUFFER_LIST","features":[14]},{"name":"NDIS_FLAGS_XLATE_AT_TOP","features":[14]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[14]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[14]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[14]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[14]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[14]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[14]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[14]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[14]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[14]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[14]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[14]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[14]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[14]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[14]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[14]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[14]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[14]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[14]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[14]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[14]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[14]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[14]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[14]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[14]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[14]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[14]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[14]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[14]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[14]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[14]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[14]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[14]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[14]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[14]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[14]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[14]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[14]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[14]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[14]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[14]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[14]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[14]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[14]},{"name":"NDIS_GFT_OFFLOAD_INFO_COPY_PACKET","features":[14]},{"name":"NDIS_GFT_OFFLOAD_INFO_DIRECTION_INGRESS","features":[14]},{"name":"NDIS_GFT_OFFLOAD_INFO_EXCEPTION_PACKET","features":[14]},{"name":"NDIS_GFT_OFFLOAD_INFO_SAMPLE_PACKET","features":[14]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[14]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[14]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[14]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[14]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[14]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[14]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[14]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[14]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[14]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[14]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[14]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[14]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[14]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[14]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[14]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[14]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[14]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[14]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[14]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[14]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[14]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[14]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[14]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[14]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[14]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[14]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[14]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[14]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[14]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[14]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[14]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[14]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[14]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[14]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[14]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[14]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[14]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[14]},{"name":"NDIS_GUID","features":[14]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[14]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[14]},{"name":"NDIS_HARDWARE_STATUS","features":[14]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[14]},{"name":"NDIS_HASH_IPV4","features":[14]},{"name":"NDIS_HASH_IPV6","features":[14]},{"name":"NDIS_HASH_IPV6_EX","features":[14]},{"name":"NDIS_HASH_TCP_IPV4","features":[14]},{"name":"NDIS_HASH_TCP_IPV6","features":[14]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[14]},{"name":"NDIS_HASH_TYPE_MASK","features":[14]},{"name":"NDIS_HASH_UDP_IPV4","features":[14]},{"name":"NDIS_HASH_UDP_IPV6","features":[14]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[14]},{"name":"NDIS_HD_SPLIT_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[14]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[14]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[14]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[14]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[14]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[14]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[14]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[14]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[14]},{"name":"NDIS_INTERFACE_TYPE","features":[14]},{"name":"NDIS_INTERMEDIATE_DRIVER","features":[14]},{"name":"NDIS_INTERRUPT_MODERATION","features":[14]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[14]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[14]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[14]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[14]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_EX_REVISION_1","features":[14]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_REVISION_1","features":[14]},{"name":"NDIS_IPSEC_OFFLOAD_V2_DELETE_SA_REVISION_1","features":[14]},{"name":"NDIS_IPSEC_OFFLOAD_V2_UPDATE_SA_REVISION_1","features":[14]},{"name":"NDIS_IP_OPER_STATE","features":[14,16]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[14]},{"name":"NDIS_IP_OPER_STATUS","features":[14,16]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[14,16]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[14]},{"name":"NDIS_IRDA_PACKET_INFO","features":[14]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[14]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_KDNET_ADD_PF_REVISION_1","features":[14]},{"name":"NDIS_KDNET_ENUMERATE_PFS_REVISION_1","features":[14]},{"name":"NDIS_KDNET_PF_ENUM_ELEMENT_REVISION_1","features":[14]},{"name":"NDIS_KDNET_QUERY_PF_INFORMATION_REVISION_1","features":[14]},{"name":"NDIS_KDNET_REMOVE_PF_REVISION_1","features":[14]},{"name":"NDIS_LARGE_SEND_OFFLOAD_MAX_HEADER_LENGTH","features":[14]},{"name":"NDIS_LEGACY_DRIVER","features":[14]},{"name":"NDIS_LEGACY_MINIPORT","features":[14]},{"name":"NDIS_LEGACY_PROTOCOL","features":[14]},{"name":"NDIS_LINK_PARAMETERS","features":[14,16]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_LINK_SPEED","features":[14]},{"name":"NDIS_LINK_STATE","features":[14,16]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[14]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[14]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[14]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[14]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[14]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[14]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[14]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[14]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[14]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[14]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[14]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[14]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[14]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[14]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[14]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[14]},{"name":"NDIS_MAXIMUM_PORTS","features":[14]},{"name":"NDIS_MAX_LOOKAHEAD_SIZE_ACCESSED_UNDEFINED","features":[14]},{"name":"NDIS_MAX_PROCESSOR_COUNT","features":[14]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[14]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[14]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_EAPOL","features":[14]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_FCOE","features":[14]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_LLDP","features":[14]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TIMESYNC","features":[14]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TUNDL","features":[14]},{"name":"NDIS_MEDIA_STATE","features":[14]},{"name":"NDIS_MEDIUM","features":[14]},{"name":"NDIS_MEMORY_CONTIGUOUS","features":[14]},{"name":"NDIS_MEMORY_NONCACHED","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_2","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_3","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_2","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_2","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_3","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_4","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_NDK_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_2","features":[14]},{"name":"NDIS_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_BUS_MASTER","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_CONTROLS_DEFAULT_PORT","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_DO_NOT_BIND_TO_ALL_CO","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_HARDWARE_DEVICE","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NDIS_WDM","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NOT_CO_NDIS","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_HALT_ON_SUSPEND","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_OID_INTERCEPT_ON_NONDEFAULT_PORTS","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_PAUSE_ON_SUSPEND","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_REGISTER_BUGCHECK_CALLBACK","features":[14]},{"name":"NDIS_MINIPORT_ATTRIBUTES_SURPRISE_REMOVE_OK","features":[14]},{"name":"NDIS_MINIPORT_BLOCK","features":[14]},{"name":"NDIS_MINIPORT_CO_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_DRIVER","features":[14]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_2","features":[14]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_3","features":[14]},{"name":"NDIS_MINIPORT_INIT_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_INTERRUPT_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_MAJOR_VERSION","features":[14]},{"name":"NDIS_MINIPORT_MINIMUM_MAJOR_VERSION","features":[14]},{"name":"NDIS_MINIPORT_MINIMUM_MINOR_VERSION","features":[14]},{"name":"NDIS_MINIPORT_MINOR_VERSION","features":[14]},{"name":"NDIS_MINIPORT_PAUSE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_PNP_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_RESTART_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_SS_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_MINIPORT_TIMER","features":[2,14,3,1,7]},{"name":"NDIS_MIN_API","features":[14]},{"name":"NDIS_MONITOR_CONFIG_REVISION_1","features":[14]},{"name":"NDIS_MSIX_CONFIG_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_M_DRIVER_BLOCK","features":[14]},{"name":"NDIS_M_MAX_LOOKAHEAD","features":[14]},{"name":"NDIS_NBL_FLAGS_CAPTURE_TIMESTAMP_ON_TRANSMIT","features":[14]},{"name":"NDIS_NBL_FLAGS_HD_SPLIT","features":[14]},{"name":"NDIS_NBL_FLAGS_IS_IPV4","features":[14]},{"name":"NDIS_NBL_FLAGS_IS_IPV6","features":[14]},{"name":"NDIS_NBL_FLAGS_IS_LOOPBACK_PACKET","features":[14]},{"name":"NDIS_NBL_FLAGS_IS_TCP","features":[14]},{"name":"NDIS_NBL_FLAGS_IS_UDP","features":[14]},{"name":"NDIS_NBL_FLAGS_RECV_READ_ONLY","features":[14]},{"name":"NDIS_NBL_FLAGS_SEND_READ_ONLY","features":[14]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_HEADER","features":[14]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_PAYLOAD","features":[14]},{"name":"NDIS_NBL_MEDIA_SPECIFIC_INFO_REVISION_1","features":[14]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[14]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[14]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[14]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[14]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[14]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[14]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[14]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[14]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[14]},{"name":"NDIS_NT","features":[14]},{"name":"NDIS_OBJECT_HEADER","features":[14]},{"name":"NDIS_OBJECT_REVISION_1","features":[14]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[14]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[14]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[14]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_REVISION_1","features":[14]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[14]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[14]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[14]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[14]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[14]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[14]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[14]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[14]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[14]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[14]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[14]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[14]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[14]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[14]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[14]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[14]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[14]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[14]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[14]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[14]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[14]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[14]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[14]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[14]},{"name":"NDIS_OFFLOAD","features":[14]},{"name":"NDIS_OFFLOAD_ENCAPSULATION_REVISION_1","features":[14]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[14]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[14]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[14]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[14]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[14]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[14]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[14]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[14]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[14]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[14]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[14]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[14]},{"name":"NDIS_OFFLOAD_SET_ON","features":[14]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[14]},{"name":"NDIS_OID_REQUEST_FLAGS_VPORT_ID_VALID","features":[14]},{"name":"NDIS_OID_REQUEST_NDIS_RESERVED_SIZE","features":[14]},{"name":"NDIS_OID_REQUEST_REVISION_1","features":[14]},{"name":"NDIS_OID_REQUEST_REVISION_2","features":[14]},{"name":"NDIS_OID_REQUEST_TIMEOUT_INFINITE","features":[14]},{"name":"NDIS_OPEN_BLOCK","features":[14]},{"name":"NDIS_OPEN_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_OPEN_RECEIVE_NOT_REENTRANT","features":[14]},{"name":"NDIS_OPER_STATE","features":[14,16]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[14]},{"name":"NDIS_PACKET_8021Q_INFO","features":[14]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[14]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[14]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[14]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[14]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[14]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[14]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[14]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[14]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[14]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[14]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[14]},{"name":"NDIS_PACKET_TYPE_SMT","features":[14]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[14]},{"name":"NDIS_PARAMETER_TYPE","features":[14]},{"name":"NDIS_PAUSE_ATTACH_FILTER","features":[14]},{"name":"NDIS_PAUSE_BIND_PROTOCOL","features":[14]},{"name":"NDIS_PAUSE_DETACH_FILTER","features":[14]},{"name":"NDIS_PAUSE_FILTER_RESTART_STACK","features":[14]},{"name":"NDIS_PAUSE_LOW_POWER","features":[14]},{"name":"NDIS_PAUSE_MINIPORT_DEVICE_REMOVE","features":[14]},{"name":"NDIS_PAUSE_NDIS_INTERNAL","features":[14]},{"name":"NDIS_PAUSE_UNBIND_PROTOCOL","features":[14]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[14]},{"name":"NDIS_PD_ACQUIRE_QUEUES_FLAG_DRAIN_NOTIFICATION","features":[14]},{"name":"NDIS_PD_ACQUIRE_QUEUES_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[14]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[14]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[14]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[14]},{"name":"NDIS_PD_CLOSE_PROVIDER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[14]},{"name":"NDIS_PD_COUNTER_HANDLE","features":[14]},{"name":"NDIS_PD_COUNTER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PD_FILTER_HANDLE","features":[14]},{"name":"NDIS_PD_FILTER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PD_OPEN_PROVIDER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PD_PROVIDER_DISPATCH_REVISION_1","features":[14]},{"name":"NDIS_PD_PROVIDER_HANDLE","features":[14]},{"name":"NDIS_PD_QUEUE_DISPATCH_REVISION_1","features":[14]},{"name":"NDIS_PD_QUEUE_FLAG_DRAIN_NOTIFICATION","features":[14]},{"name":"NDIS_PD_QUEUE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PD_QUEUE_REVISION_1","features":[14]},{"name":"NDIS_PER_PACKET_INFO","features":[14]},{"name":"NDIS_PHYSICAL_ADDRESS_UNIT","features":[14]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[14]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[14]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[14]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[14]},{"name":"NDIS_PM_PACKET_PATTERN","features":[14]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[14]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[14]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[14]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[14]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[14]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[14]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[14]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[14]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[14]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[14]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[14]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[14]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[14]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[14]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[14]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[14]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[14]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[14]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[14]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[14]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[14]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[14]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[14]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[14]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[14]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[14]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[14]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[14]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[14]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[14]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[14]},{"name":"NDIS_PNP_CAPABILITIES","features":[14]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[14]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[14]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[14]},{"name":"NDIS_POLL_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_POLL_DATA_REVISION_1","features":[14]},{"name":"NDIS_POLL_HANDLE","features":[14]},{"name":"NDIS_POLL_NOTIFICATION_REVISION_1","features":[14]},{"name":"NDIS_PORT","features":[14,16]},{"name":"NDIS_PORT_ARRAY","features":[14,16]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[14]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[14]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[14,16]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[14]},{"name":"NDIS_PORT_CONTROL_STATE","features":[14]},{"name":"NDIS_PORT_STATE","features":[14,16]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[14]},{"name":"NDIS_PORT_TYPE","features":[14]},{"name":"NDIS_POWER_PROFILE","features":[14]},{"name":"NDIS_PROC","features":[14]},{"name":"NDIS_PROCESSOR_TYPE","features":[14]},{"name":"NDIS_PROCESSOR_VENDOR","features":[14]},{"name":"NDIS_PROC_CALLBACK","features":[14]},{"name":"NDIS_PROTOCOL_BLOCK","features":[14]},{"name":"NDIS_PROTOCOL_CO_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_2","features":[14]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[14]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[14]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[14]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[14]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[14]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[14]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[14]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[14]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[14]},{"name":"NDIS_PROTOCOL_MAJOR_VERSION","features":[14]},{"name":"NDIS_PROTOCOL_MINIMUM_MAJOR_VERSION","features":[14]},{"name":"NDIS_PROTOCOL_MINIMUM_MINOR_VERSION","features":[14]},{"name":"NDIS_PROTOCOL_MINOR_VERSION","features":[14]},{"name":"NDIS_PROTOCOL_PAUSE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PROTOCOL_RESTART_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[14]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[14]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[14]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[14]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[14]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[14]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[14]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[14]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[14]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[14]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[14]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[14]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[14]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[14]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[14]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[14]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[14]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[14]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[14]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[14]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[14]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[14]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[14]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[14]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[14]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[14]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[14]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[14]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[14]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[14]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[14]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[14]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[14]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[14]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[14]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[14]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[14]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[14]},{"name":"NDIS_QOS_TSA_CBS","features":[14]},{"name":"NDIS_QOS_TSA_ETS","features":[14]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[14]},{"name":"NDIS_QOS_TSA_STRICT","features":[14]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[14]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[14]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[14]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[14]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[14]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[14]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_FILTER_QUEUE_STATE_CHANGE_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[14]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_DISPATCH_LEVEL","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_MORE_NBLS","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_PERFECT_FILTERED","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_RESOURCES","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_SHARED_MEMORY_INFO_VALID","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_ETHER_TYPE","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_QUEUE","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_VLAN","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_DESTINATION_GROUP","features":[14]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_SINGLE_SOURCE","features":[14]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[14]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[14]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[14]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[14]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_QUEUE_STATE_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[14]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[14]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[14]},{"name":"NDIS_REQUEST_TYPE","features":[14]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_MAX_LOOKAHEAD_ACCESSED_DEFINED","features":[14]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_1","features":[14]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_2","features":[14]},{"name":"NDIS_RETURN_FLAGS_DISPATCH_LEVEL","features":[14]},{"name":"NDIS_RETURN_FLAGS_SINGLE_QUEUE","features":[14]},{"name":"NDIS_RETURN_FLAGS_SWITCH_SINGLE_SOURCE","features":[14]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[14]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[14]},{"name":"NDIS_RING_HARD_ERROR","features":[14]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[14]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[14]},{"name":"NDIS_RING_RING_RECOVERY","features":[14]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[14]},{"name":"NDIS_RING_SINGLE_STATION","features":[14]},{"name":"NDIS_RING_SOFT_ERROR","features":[14]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[14]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[14]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[14]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[14]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[14]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[14]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[14]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[14]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[14]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[14]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[14]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[14]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[14]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[14]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[14]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[14]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[14]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[14]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[14]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[14]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[14]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[14]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[14]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[14]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[14]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[14]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[14]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[14]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[14]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[14]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[14]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[14]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[14]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[14]},{"name":"NDIS_RUNTIME_VERSION_60","features":[14]},{"name":"NDIS_RWL_AT_DISPATCH_LEVEL","features":[14]},{"name":"NDIS_RW_LOCK","features":[14,1]},{"name":"NDIS_RW_LOCK_REFCOUNT","features":[14]},{"name":"NDIS_SCATTER_GATHER_LIST_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SEND_COMPLETE_FLAGS_DISPATCH_LEVEL","features":[14]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SINGLE_QUEUE","features":[14]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SWITCH_SINGLE_SOURCE","features":[14]},{"name":"NDIS_SEND_FLAGS_CHECK_FOR_LOOPBACK","features":[14]},{"name":"NDIS_SEND_FLAGS_DISPATCH_LEVEL","features":[14]},{"name":"NDIS_SEND_FLAGS_SINGLE_QUEUE","features":[14]},{"name":"NDIS_SEND_FLAGS_SWITCH_DESTINATION_GROUP","features":[14]},{"name":"NDIS_SEND_FLAGS_SWITCH_SINGLE_SOURCE","features":[14]},{"name":"NDIS_SG_DMA_64_BIT_ADDRESS","features":[14]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_1","features":[14]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_2","features":[14]},{"name":"NDIS_SG_DMA_HYBRID_DMA","features":[14]},{"name":"NDIS_SG_DMA_V3_HAL_API","features":[14]},{"name":"NDIS_SG_LIST_WRITE_TO_DEVICE","features":[14]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHAR_SUPPORTS_PF_VPORTS","features":[14]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGOUS","features":[14]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGUOUS","features":[14]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[14]},{"name":"NDIS_SPIN_LOCK","features":[14]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[14]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[14]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[14]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[14]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_RCV_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_XMIT_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_RCV_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_XMIT_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_BYTES_RCV_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_BYTES_XMIT_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_RCV_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_XMIT_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_RCV_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_XMIT_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[14]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[14]},{"name":"NDIS_STATISTICS_GEN_STATISTICS_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_INFO","features":[14]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[14]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_RCV_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_XMIT_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_RCV_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_XMIT_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_RCV_CRC_ERROR_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_RCV_DISCARDS_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_RCV_ERROR_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_RCV_NO_BUFFER_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_RCV_OK_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_TRANSMIT_QUEUE_LENGTH_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_VALUE","features":[14]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[14]},{"name":"NDIS_STATISTICS_XMIT_DISCARDS_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_XMIT_ERROR_SUPPORTED","features":[14]},{"name":"NDIS_STATISTICS_XMIT_OK_SUPPORTED","features":[14]},{"name":"NDIS_STATUS_INDICATION_FLAGS_MEDIA_CONNECT_TO_CONNECT","features":[14]},{"name":"NDIS_STATUS_INDICATION_FLAGS_NDIS_RESERVED","features":[14]},{"name":"NDIS_STATUS_INDICATION_REVISION_1","features":[14]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[14]},{"name":"NDIS_SUPPORT_60_COMPATIBLE_API","features":[14]},{"name":"NDIS_SUPPORT_NDIS6","features":[14]},{"name":"NDIS_SUPPORT_NDIS61","features":[14]},{"name":"NDIS_SUPPORT_NDIS620","features":[14]},{"name":"NDIS_SUPPORT_NDIS630","features":[14]},{"name":"NDIS_SUPPORT_NDIS640","features":[14]},{"name":"NDIS_SUPPORT_NDIS650","features":[14]},{"name":"NDIS_SUPPORT_NDIS651","features":[14]},{"name":"NDIS_SUPPORT_NDIS660","features":[14]},{"name":"NDIS_SUPPORT_NDIS670","features":[14]},{"name":"NDIS_SUPPORT_NDIS680","features":[14]},{"name":"NDIS_SUPPORT_NDIS681","features":[14]},{"name":"NDIS_SUPPORT_NDIS682","features":[14]},{"name":"NDIS_SUPPORT_NDIS683","features":[14]},{"name":"NDIS_SUPPORT_NDIS684","features":[14]},{"name":"NDIS_SUPPORT_NDIS685","features":[14]},{"name":"NDIS_SUPPORT_NDIS686","features":[14]},{"name":"NDIS_SUPPORT_NDIS687","features":[14]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_DESTINATIONS","features":[14]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_SWITCH_INFO_ONLY","features":[14]},{"name":"NDIS_SWITCH_DEFAULT_NIC_INDEX","features":[14]},{"name":"NDIS_SWITCH_DEFAULT_PORT_ID","features":[14]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_FORWARDING_DESTINATION_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_NET_BUFFER_LIST_CONTEXT_TYPE_INFO_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[14]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[14]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[14]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[14]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[14]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[14]},{"name":"NDIS_SWITCH_NIC_STATUS_INDICATION_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[14]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_PD_RESERVED_SIZE","features":[14]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_2","features":[14]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[14]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[14]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[14]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_SWITCH_REPORT_FILTERED_NBL_FLAGS_IS_INCOMING","features":[14]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[14]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_REVISION_1","features":[14]},{"name":"NDIS_TASK_OFFLOAD_VERSION","features":[14]},{"name":"NDIS_TASK_TCP_LARGE_SEND_V0","features":[14]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[14]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[14]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[14]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[14]},{"name":"NDIS_TCP_IP_CHECKSUM_PACKET_INFO","features":[14]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv4","features":[14]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv6","features":[14]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[14]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1_TYPE","features":[14]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[14]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE","features":[14]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[14]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[14]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_TIMER","features":[2,14,3,1,7]},{"name":"NDIS_TIMER_CHARACTERISTICS_REVISION_1","features":[14]},{"name":"NDIS_TIMER_FUNCTION","features":[14]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[14,1]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[14,1]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV4","features":[14]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV6","features":[14]},{"name":"NDIS_VAR_DATA_DESC","features":[14]},{"name":"NDIS_WAN_FRAGMENT","features":[14]},{"name":"NDIS_WAN_GET_STATS","features":[14]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[14]},{"name":"NDIS_WAN_LINE_DOWN","features":[14]},{"name":"NDIS_WAN_LINE_UP","features":[14,1]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[14]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[14]},{"name":"NDIS_WAN_QUALITY","features":[14]},{"name":"NDIS_WDF","features":[14]},{"name":"NDIS_WDM","features":[14]},{"name":"NDIS_WDM_DRIVER","features":[14]},{"name":"NDIS_WLAN_BSSID","features":[14]},{"name":"NDIS_WLAN_BSSID_EX","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[14]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[14]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[14]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[14,16]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[14]},{"name":"NDIS_WMI_EVENT_HEADER","features":[14,16]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[14]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[14]},{"name":"NDIS_WMI_METHOD_HEADER","features":[14,16]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[14]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[14]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[14]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[14]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[14]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[14]},{"name":"NDIS_WMI_OFFLOAD","features":[14]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[14]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[14]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[14]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[14]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[14]},{"name":"NDIS_WMI_SET_HEADER","features":[14,16]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[14]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[14]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[14]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[14]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[14]},{"name":"NDIS_WORK_ITEM","features":[14]},{"name":"NDIS_WRAPPER_HANDLE","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[14]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[14]},{"name":"NETWORK_ADDRESS","features":[14]},{"name":"NETWORK_ADDRESS_IP","features":[14]},{"name":"NETWORK_ADDRESS_IP6","features":[14]},{"name":"NETWORK_ADDRESS_IPX","features":[14]},{"name":"NETWORK_ADDRESS_LIST","features":[14]},{"name":"NET_BUFFER_LIST_POOL_FLAG_VERIFY","features":[14]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_1","features":[14]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_2","features":[14]},{"name":"NET_BUFFER_POOL_FLAG_VERIFY","features":[14]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_1","features":[14]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_2","features":[14]},{"name":"NET_DEVICE_PNP_EVENT_REVISION_1","features":[14]},{"name":"NET_EVENT_FLAGS_VPORT_ID_VALID","features":[14]},{"name":"NET_EVENT_HALT_MINIPORT_ON_LOW_POWER","features":[14]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_1","features":[14]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_2","features":[14]},{"name":"NULL_FILTER","features":[14]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[14]},{"name":"Ndis802_11AuthModeMax","features":[14]},{"name":"Ndis802_11AuthModeOpen","features":[14]},{"name":"Ndis802_11AuthModeShared","features":[14]},{"name":"Ndis802_11AuthModeWPA","features":[14]},{"name":"Ndis802_11AuthModeWPA2","features":[14]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[14]},{"name":"Ndis802_11AuthModeWPA3","features":[14]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[14]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[14]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[14]},{"name":"Ndis802_11AuthModeWPANone","features":[14]},{"name":"Ndis802_11AuthModeWPAPSK","features":[14]},{"name":"Ndis802_11AutoUnknown","features":[14]},{"name":"Ndis802_11Automode","features":[14]},{"name":"Ndis802_11DS","features":[14]},{"name":"Ndis802_11Encryption1Enabled","features":[14]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[14]},{"name":"Ndis802_11Encryption2Enabled","features":[14]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[14]},{"name":"Ndis802_11Encryption3Enabled","features":[14]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[14]},{"name":"Ndis802_11EncryptionDisabled","features":[14]},{"name":"Ndis802_11EncryptionNotSupported","features":[14]},{"name":"Ndis802_11FH","features":[14]},{"name":"Ndis802_11IBSS","features":[14]},{"name":"Ndis802_11Infrastructure","features":[14]},{"name":"Ndis802_11InfrastructureMax","features":[14]},{"name":"Ndis802_11MediaStreamOff","features":[14]},{"name":"Ndis802_11MediaStreamOn","features":[14]},{"name":"Ndis802_11NetworkTypeMax","features":[14]},{"name":"Ndis802_11OFDM24","features":[14]},{"name":"Ndis802_11OFDM5","features":[14]},{"name":"Ndis802_11PowerModeCAM","features":[14]},{"name":"Ndis802_11PowerModeFast_PSP","features":[14]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[14]},{"name":"Ndis802_11PowerModeMax","features":[14]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[14]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[14]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[14]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[14]},{"name":"Ndis802_11RadioStatusMax","features":[14]},{"name":"Ndis802_11RadioStatusOn","features":[14]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[14]},{"name":"Ndis802_11ReloadWEPKeys","features":[14]},{"name":"Ndis802_11StatusTypeMax","features":[14]},{"name":"Ndis802_11StatusType_Authentication","features":[14]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[14]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[14]},{"name":"Ndis802_11WEPDisabled","features":[14]},{"name":"Ndis802_11WEPEnabled","features":[14]},{"name":"Ndis802_11WEPKeyAbsent","features":[14]},{"name":"Ndis802_11WEPNotSupported","features":[14]},{"name":"NdisAcquireReadWriteLock","features":[14,1]},{"name":"NdisAllocateMemoryWithTag","features":[14]},{"name":"NdisCancelTimer","features":[2,14,3,1,7]},{"name":"NdisClAddParty","features":[14]},{"name":"NdisClCloseAddressFamily","features":[14]},{"name":"NdisClCloseCall","features":[14]},{"name":"NdisClDeregisterSap","features":[14]},{"name":"NdisClDropParty","features":[14]},{"name":"NdisClGetProtocolVcContextFromTapiCallId","features":[14,1]},{"name":"NdisClIncomingCallComplete","features":[14]},{"name":"NdisClMakeCall","features":[14]},{"name":"NdisClModifyCallQoS","features":[14]},{"name":"NdisClRegisterSap","features":[14]},{"name":"NdisClass802_3Priority","features":[14]},{"name":"NdisClassAtmAALInfo","features":[14]},{"name":"NdisClassIrdaPacketInfo","features":[14]},{"name":"NdisClassWirelessWanMbxMailbox","features":[14]},{"name":"NdisCloseConfiguration","features":[14]},{"name":"NdisCloseFile","features":[14]},{"name":"NdisCmActivateVc","features":[14]},{"name":"NdisCmAddPartyComplete","features":[14]},{"name":"NdisCmCloseAddressFamilyComplete","features":[14]},{"name":"NdisCmCloseCallComplete","features":[14]},{"name":"NdisCmDeactivateVc","features":[14]},{"name":"NdisCmDeregisterSapComplete","features":[14]},{"name":"NdisCmDispatchCallConnected","features":[14]},{"name":"NdisCmDispatchIncomingCall","features":[14]},{"name":"NdisCmDispatchIncomingCallQoSChange","features":[14]},{"name":"NdisCmDispatchIncomingCloseCall","features":[14]},{"name":"NdisCmDispatchIncomingDropParty","features":[14]},{"name":"NdisCmDropPartyComplete","features":[14]},{"name":"NdisCmMakeCallComplete","features":[14]},{"name":"NdisCmModifyCallQoSComplete","features":[14]},{"name":"NdisCmOpenAddressFamilyComplete","features":[14]},{"name":"NdisCmRegisterSapComplete","features":[14]},{"name":"NdisCoAssignInstanceName","features":[14,1]},{"name":"NdisCoCreateVc","features":[14]},{"name":"NdisCoDeleteVc","features":[14]},{"name":"NdisCoGetTapiCallId","features":[14]},{"name":"NdisCompleteDmaTransfer","features":[2,14,1]},{"name":"NdisCopyBuffer","features":[2,14]},{"name":"NdisDefinitelyNetworkChange","features":[14]},{"name":"NdisDeregisterTdiCallBack","features":[14]},{"name":"NdisDevicePnPEventMaximum","features":[14]},{"name":"NdisDevicePnPEventPowerProfileChanged","features":[14]},{"name":"NdisDevicePnPEventQueryRemoved","features":[14]},{"name":"NdisDevicePnPEventQueryStopped","features":[14]},{"name":"NdisDevicePnPEventRemoved","features":[14]},{"name":"NdisDevicePnPEventStopped","features":[14]},{"name":"NdisDevicePnPEventSurpriseRemoved","features":[14]},{"name":"NdisDeviceStateD0","features":[14]},{"name":"NdisDeviceStateD1","features":[14]},{"name":"NdisDeviceStateD2","features":[14]},{"name":"NdisDeviceStateD3","features":[14]},{"name":"NdisDeviceStateMaximum","features":[14]},{"name":"NdisDeviceStateUnspecified","features":[14]},{"name":"NdisEnvironmentWindows","features":[14]},{"name":"NdisEnvironmentWindowsNt","features":[14]},{"name":"NdisFddiRingDetect","features":[14]},{"name":"NdisFddiRingDirected","features":[14]},{"name":"NdisFddiRingIsolated","features":[14]},{"name":"NdisFddiRingNonOperational","features":[14]},{"name":"NdisFddiRingNonOperationalDup","features":[14]},{"name":"NdisFddiRingOperational","features":[14]},{"name":"NdisFddiRingOperationalDup","features":[14]},{"name":"NdisFddiRingTrace","features":[14]},{"name":"NdisFddiStateActive","features":[14]},{"name":"NdisFddiStateBreak","features":[14]},{"name":"NdisFddiStateConnect","features":[14]},{"name":"NdisFddiStateJoin","features":[14]},{"name":"NdisFddiStateMaintenance","features":[14]},{"name":"NdisFddiStateNext","features":[14]},{"name":"NdisFddiStateOff","features":[14]},{"name":"NdisFddiStateSignal","features":[14]},{"name":"NdisFddiStateTrace","features":[14]},{"name":"NdisFddiStateVerify","features":[14]},{"name":"NdisFddiTypeCWrapA","features":[14]},{"name":"NdisFddiTypeCWrapB","features":[14]},{"name":"NdisFddiTypeCWrapS","features":[14]},{"name":"NdisFddiTypeIsolated","features":[14]},{"name":"NdisFddiTypeLocalA","features":[14]},{"name":"NdisFddiTypeLocalAB","features":[14]},{"name":"NdisFddiTypeLocalB","features":[14]},{"name":"NdisFddiTypeLocalS","features":[14]},{"name":"NdisFddiTypeThrough","features":[14]},{"name":"NdisFddiTypeWrapA","features":[14]},{"name":"NdisFddiTypeWrapAB","features":[14]},{"name":"NdisFddiTypeWrapB","features":[14]},{"name":"NdisFddiTypeWrapS","features":[14]},{"name":"NdisFreeMemory","features":[14]},{"name":"NdisGeneratePartialCancelId","features":[14]},{"name":"NdisGetCurrentProcessorCounts","features":[14]},{"name":"NdisGetCurrentProcessorCpuUsage","features":[14]},{"name":"NdisGetRoutineAddress","features":[14,1]},{"name":"NdisGetSharedDataAlignment","features":[14]},{"name":"NdisGetVersion","features":[14]},{"name":"NdisHardwareStatusClosing","features":[14]},{"name":"NdisHardwareStatusInitializing","features":[14]},{"name":"NdisHardwareStatusNotReady","features":[14]},{"name":"NdisHardwareStatusReady","features":[14]},{"name":"NdisHardwareStatusReset","features":[14]},{"name":"NdisHashFunctionReserved1","features":[14]},{"name":"NdisHashFunctionReserved2","features":[14]},{"name":"NdisHashFunctionReserved3","features":[14]},{"name":"NdisHashFunctionToeplitz","features":[14]},{"name":"NdisIMAssociateMiniport","features":[14]},{"name":"NdisIMCancelInitializeDeviceInstance","features":[14,1]},{"name":"NdisIMDeInitializeDeviceInstance","features":[14]},{"name":"NdisIMGetBindingContext","features":[14]},{"name":"NdisIMInitializeDeviceInstanceEx","features":[14,1]},{"name":"NdisInitializeEvent","features":[2,14,1,7]},{"name":"NdisInitializeReadWriteLock","features":[14,1]},{"name":"NdisInitializeString","features":[14,1]},{"name":"NdisInitializeTimer","features":[2,14,3,1,7]},{"name":"NdisInterface1394","features":[14]},{"name":"NdisInterfaceCBus","features":[14]},{"name":"NdisInterfaceEisa","features":[14]},{"name":"NdisInterfaceInternal","features":[14]},{"name":"NdisInterfaceInternalPowerBus","features":[14]},{"name":"NdisInterfaceIrda","features":[14]},{"name":"NdisInterfaceIsa","features":[14]},{"name":"NdisInterfaceMPIBus","features":[14]},{"name":"NdisInterfaceMPSABus","features":[14]},{"name":"NdisInterfaceMca","features":[14]},{"name":"NdisInterfacePNPBus","features":[14]},{"name":"NdisInterfacePNPISABus","features":[14]},{"name":"NdisInterfacePcMcia","features":[14]},{"name":"NdisInterfacePci","features":[14]},{"name":"NdisInterfaceProcessorInternal","features":[14]},{"name":"NdisInterfaceTurboChannel","features":[14]},{"name":"NdisInterfaceUSB","features":[14]},{"name":"NdisInterruptModerationDisabled","features":[14]},{"name":"NdisInterruptModerationEnabled","features":[14]},{"name":"NdisInterruptModerationNotSupported","features":[14]},{"name":"NdisInterruptModerationUnknown","features":[14]},{"name":"NdisMAllocateSharedMemory","features":[14,1]},{"name":"NdisMAllocateSharedMemoryAsync","features":[14,1]},{"name":"NdisMCancelTimer","features":[2,14,3,1,7]},{"name":"NdisMCloseLog","features":[14]},{"name":"NdisMCmActivateVc","features":[14]},{"name":"NdisMCmCreateVc","features":[14]},{"name":"NdisMCmDeactivateVc","features":[14]},{"name":"NdisMCmDeleteVc","features":[14]},{"name":"NdisMCmRegisterAddressFamily","features":[14]},{"name":"NdisMCoActivateVcComplete","features":[14]},{"name":"NdisMCoDeactivateVcComplete","features":[14]},{"name":"NdisMCreateLog","features":[14]},{"name":"NdisMDeregisterDmaChannel","features":[14]},{"name":"NdisMDeregisterIoPortRange","features":[14]},{"name":"NdisMFlushLog","features":[14]},{"name":"NdisMFreeSharedMemory","features":[14,1]},{"name":"NdisMGetDeviceProperty","features":[2,14,5,3,1,4,6,7,8]},{"name":"NdisMGetDmaAlignment","features":[14]},{"name":"NdisMInitializeTimer","features":[2,14,3,1,7]},{"name":"NdisMMapIoSpace","features":[14]},{"name":"NdisMQueryAdapterInstanceName","features":[14,1]},{"name":"NdisMReadDmaCounter","features":[14]},{"name":"NdisMRegisterDmaChannel","features":[14,3,1]},{"name":"NdisMRegisterIoPortRange","features":[14]},{"name":"NdisMRemoveMiniport","features":[14]},{"name":"NdisMSetPeriodicTimer","features":[2,14,3,1,7]},{"name":"NdisMSleep","features":[14]},{"name":"NdisMUnmapIoSpace","features":[14]},{"name":"NdisMWriteLogData","features":[14]},{"name":"NdisMapFile","features":[14]},{"name":"NdisMaximumInterfaceType","features":[14]},{"name":"NdisMediaStateConnected","features":[14]},{"name":"NdisMediaStateDisconnected","features":[14]},{"name":"NdisMedium1394","features":[14]},{"name":"NdisMedium802_3","features":[14]},{"name":"NdisMedium802_5","features":[14]},{"name":"NdisMediumArcnet878_2","features":[14]},{"name":"NdisMediumArcnetRaw","features":[14]},{"name":"NdisMediumAtm","features":[14]},{"name":"NdisMediumBpc","features":[14]},{"name":"NdisMediumCoWan","features":[14]},{"name":"NdisMediumDix","features":[14]},{"name":"NdisMediumFddi","features":[14]},{"name":"NdisMediumIP","features":[14]},{"name":"NdisMediumInfiniBand","features":[14]},{"name":"NdisMediumIrda","features":[14]},{"name":"NdisMediumLocalTalk","features":[14]},{"name":"NdisMediumLoopback","features":[14]},{"name":"NdisMediumMax","features":[14]},{"name":"NdisMediumNative802_11","features":[14]},{"name":"NdisMediumTunnel","features":[14]},{"name":"NdisMediumWan","features":[14]},{"name":"NdisMediumWiMAX","features":[14]},{"name":"NdisMediumWirelessWan","features":[14]},{"name":"NdisNetworkChangeFromMediaConnect","features":[14]},{"name":"NdisNetworkChangeMax","features":[14]},{"name":"NdisOpenConfigurationKeyByIndex","features":[14,1]},{"name":"NdisOpenConfigurationKeyByName","features":[14,1]},{"name":"NdisOpenFile","features":[14,1]},{"name":"NdisParameterBinary","features":[14]},{"name":"NdisParameterHexInteger","features":[14]},{"name":"NdisParameterInteger","features":[14]},{"name":"NdisParameterMultiString","features":[14]},{"name":"NdisParameterString","features":[14]},{"name":"NdisPauseFunctionsReceiveOnly","features":[14]},{"name":"NdisPauseFunctionsSendAndReceive","features":[14]},{"name":"NdisPauseFunctionsSendOnly","features":[14]},{"name":"NdisPauseFunctionsUnknown","features":[14]},{"name":"NdisPauseFunctionsUnsupported","features":[14]},{"name":"NdisPhysicalMedium1394","features":[14]},{"name":"NdisPhysicalMedium802_3","features":[14]},{"name":"NdisPhysicalMedium802_5","features":[14]},{"name":"NdisPhysicalMediumBluetooth","features":[14]},{"name":"NdisPhysicalMediumCableModem","features":[14]},{"name":"NdisPhysicalMediumDSL","features":[14]},{"name":"NdisPhysicalMediumFibreChannel","features":[14]},{"name":"NdisPhysicalMediumInfiniband","features":[14]},{"name":"NdisPhysicalMediumIrda","features":[14]},{"name":"NdisPhysicalMediumMax","features":[14]},{"name":"NdisPhysicalMediumNative802_11","features":[14]},{"name":"NdisPhysicalMediumNative802_15_4","features":[14]},{"name":"NdisPhysicalMediumOther","features":[14]},{"name":"NdisPhysicalMediumPhoneLine","features":[14]},{"name":"NdisPhysicalMediumPowerLine","features":[14]},{"name":"NdisPhysicalMediumUWB","features":[14]},{"name":"NdisPhysicalMediumUnspecified","features":[14]},{"name":"NdisPhysicalMediumWiMax","features":[14]},{"name":"NdisPhysicalMediumWiredCoWan","features":[14]},{"name":"NdisPhysicalMediumWiredWAN","features":[14]},{"name":"NdisPhysicalMediumWirelessLan","features":[14]},{"name":"NdisPhysicalMediumWirelessWan","features":[14]},{"name":"NdisPortAuthorizationUnknown","features":[14]},{"name":"NdisPortAuthorized","features":[14]},{"name":"NdisPortControlStateControlled","features":[14]},{"name":"NdisPortControlStateUncontrolled","features":[14]},{"name":"NdisPortControlStateUnknown","features":[14]},{"name":"NdisPortReauthorizing","features":[14]},{"name":"NdisPortType8021xSupplicant","features":[14]},{"name":"NdisPortTypeBridge","features":[14]},{"name":"NdisPortTypeMax","features":[14]},{"name":"NdisPortTypeRasConnection","features":[14]},{"name":"NdisPortTypeUndefined","features":[14]},{"name":"NdisPortUnauthorized","features":[14]},{"name":"NdisPossibleNetworkChange","features":[14]},{"name":"NdisPowerProfileAcOnLine","features":[14]},{"name":"NdisPowerProfileBattery","features":[14]},{"name":"NdisProcessorAlpha","features":[14]},{"name":"NdisProcessorAmd64","features":[14]},{"name":"NdisProcessorArm","features":[14]},{"name":"NdisProcessorArm64","features":[14]},{"name":"NdisProcessorIA64","features":[14]},{"name":"NdisProcessorMips","features":[14]},{"name":"NdisProcessorPpc","features":[14]},{"name":"NdisProcessorVendorAuthenticAMD","features":[14]},{"name":"NdisProcessorVendorGenuinIntel","features":[14]},{"name":"NdisProcessorVendorGenuineIntel","features":[14]},{"name":"NdisProcessorVendorUnknown","features":[14]},{"name":"NdisProcessorX86","features":[14]},{"name":"NdisQueryAdapterInstanceName","features":[14,1]},{"name":"NdisQueryBindInstanceName","features":[14,1]},{"name":"NdisReEnumerateProtocolBindings","features":[14]},{"name":"NdisReadConfiguration","features":[14,1]},{"name":"NdisReadNetworkAddress","features":[14]},{"name":"NdisRegisterTdiCallBack","features":[14,1]},{"name":"NdisReleaseReadWriteLock","features":[14,1]},{"name":"NdisRequestClose","features":[14]},{"name":"NdisRequestGeneric1","features":[14]},{"name":"NdisRequestGeneric2","features":[14]},{"name":"NdisRequestGeneric3","features":[14]},{"name":"NdisRequestGeneric4","features":[14]},{"name":"NdisRequestOpen","features":[14]},{"name":"NdisRequestQueryInformation","features":[14]},{"name":"NdisRequestQueryStatistics","features":[14]},{"name":"NdisRequestReset","features":[14]},{"name":"NdisRequestSend","features":[14]},{"name":"NdisRequestSetInformation","features":[14]},{"name":"NdisRequestTransferData","features":[14]},{"name":"NdisReserved","features":[14]},{"name":"NdisResetEvent","features":[2,14,1,7]},{"name":"NdisRingStateClosed","features":[14]},{"name":"NdisRingStateClosing","features":[14]},{"name":"NdisRingStateOpenFailure","features":[14]},{"name":"NdisRingStateOpened","features":[14]},{"name":"NdisRingStateOpening","features":[14]},{"name":"NdisRingStateRingFailure","features":[14]},{"name":"NdisSetEvent","features":[2,14,1,7]},{"name":"NdisSetPeriodicTimer","features":[2,14,3,1,7]},{"name":"NdisSetTimer","features":[2,14,3,1,7]},{"name":"NdisSetTimerEx","features":[2,14,3,1,7]},{"name":"NdisSetupDmaTransfer","features":[2,14,1]},{"name":"NdisSystemProcessorCount","features":[14]},{"name":"NdisUnmapFile","features":[14]},{"name":"NdisUpdateSharedMemory","features":[14]},{"name":"NdisWaitEvent","features":[2,14,1,7]},{"name":"NdisWanErrorControl","features":[14]},{"name":"NdisWanHeaderEthernet","features":[14]},{"name":"NdisWanHeaderNative","features":[14]},{"name":"NdisWanMediumAgileVPN","features":[14]},{"name":"NdisWanMediumAtm","features":[14]},{"name":"NdisWanMediumFrameRelay","features":[14]},{"name":"NdisWanMediumGre","features":[14]},{"name":"NdisWanMediumHub","features":[14]},{"name":"NdisWanMediumIrda","features":[14]},{"name":"NdisWanMediumIsdn","features":[14]},{"name":"NdisWanMediumL2TP","features":[14]},{"name":"NdisWanMediumPPTP","features":[14]},{"name":"NdisWanMediumParallel","features":[14]},{"name":"NdisWanMediumPppoe","features":[14]},{"name":"NdisWanMediumSSTP","features":[14]},{"name":"NdisWanMediumSW56K","features":[14]},{"name":"NdisWanMediumSerial","features":[14]},{"name":"NdisWanMediumSonet","features":[14]},{"name":"NdisWanMediumSubTypeMax","features":[14]},{"name":"NdisWanMediumX_25","features":[14]},{"name":"NdisWanRaw","features":[14]},{"name":"NdisWanReliable","features":[14]},{"name":"NdisWriteConfiguration","features":[14,1]},{"name":"NdisWriteErrorLogEntry","features":[14]},{"name":"NdisWriteEventLogEntry","features":[14]},{"name":"OFFLOAD_ALGO_INFO","features":[14]},{"name":"OFFLOAD_CONF_ALGO","features":[14]},{"name":"OFFLOAD_INBOUND_SA","features":[14]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[14]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[14,1]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[14,1]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[14]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[14]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[14]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[14]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[14]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[14,1]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[14,1]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[14]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[14]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[14]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[14]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[14]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[14]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[14]},{"name":"OFFLOAD_MAX_SAS","features":[14]},{"name":"OFFLOAD_OPERATION_E","features":[14]},{"name":"OFFLOAD_OUTBOUND_SA","features":[14]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[14]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[14]},{"name":"OID_1394_VC_INFO","features":[14]},{"name":"OID_802_11_ADD_KEY","features":[14]},{"name":"OID_802_11_ADD_WEP","features":[14]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[14]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[14]},{"name":"OID_802_11_BSSID","features":[14]},{"name":"OID_802_11_BSSID_LIST","features":[14]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[14]},{"name":"OID_802_11_CAPABILITY","features":[14]},{"name":"OID_802_11_CONFIGURATION","features":[14]},{"name":"OID_802_11_DESIRED_RATES","features":[14]},{"name":"OID_802_11_DISASSOCIATE","features":[14]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[14]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[14]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[14]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[14]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[14]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[14]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[14]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[14]},{"name":"OID_802_11_PMKID","features":[14]},{"name":"OID_802_11_POWER_MODE","features":[14]},{"name":"OID_802_11_PRIVACY_FILTER","features":[14]},{"name":"OID_802_11_RADIO_STATUS","features":[14]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[14]},{"name":"OID_802_11_REMOVE_KEY","features":[14]},{"name":"OID_802_11_REMOVE_WEP","features":[14]},{"name":"OID_802_11_RSSI","features":[14]},{"name":"OID_802_11_RSSI_TRIGGER","features":[14]},{"name":"OID_802_11_RTS_THRESHOLD","features":[14]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[14]},{"name":"OID_802_11_SSID","features":[14]},{"name":"OID_802_11_STATISTICS","features":[14]},{"name":"OID_802_11_SUPPORTED_RATES","features":[14]},{"name":"OID_802_11_TEST","features":[14]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[14]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[14]},{"name":"OID_802_11_WEP_STATUS","features":[14]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[14]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[14]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[14]},{"name":"OID_802_3_MAC_OPTIONS","features":[14]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[14]},{"name":"OID_802_3_MULTICAST_LIST","features":[14]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[14]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[14]},{"name":"OID_802_3_RCV_OVERRUN","features":[14]},{"name":"OID_802_3_XMIT_DEFERRED","features":[14]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[14]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[14]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[14]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[14]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[14]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[14]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[14]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[14]},{"name":"OID_802_5_AC_ERRORS","features":[14]},{"name":"OID_802_5_BURST_ERRORS","features":[14]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[14]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[14]},{"name":"OID_802_5_CURRENT_GROUP","features":[14]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[14]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[14]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[14]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[14]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[14]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[14]},{"name":"OID_802_5_LINE_ERRORS","features":[14]},{"name":"OID_802_5_LOST_FRAMES","features":[14]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[14]},{"name":"OID_802_5_TOKEN_ERRORS","features":[14]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[14]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[14]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[14]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[14]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[14]},{"name":"OID_ATM_ASSIGNED_VPI","features":[14]},{"name":"OID_ATM_CALL_ALERTING","features":[14]},{"name":"OID_ATM_CALL_NOTIFY","features":[14]},{"name":"OID_ATM_CALL_PROCEEDING","features":[14]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[14]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[14]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[14]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[14]},{"name":"OID_ATM_ILMI_VPIVCI","features":[14]},{"name":"OID_ATM_LECS_ADDRESS","features":[14]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[14]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[14]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[14]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[14]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[14]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[14]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[14]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[14]},{"name":"OID_ATM_PARTY_ALERTING","features":[14]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[14]},{"name":"OID_ATM_RCV_CELLS_OK","features":[14]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[14]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[14]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[14]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[14]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[14]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[14]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[14]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[14]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[14]},{"name":"OID_CO_ADDRESS_CHANGE","features":[14]},{"name":"OID_CO_ADD_ADDRESS","features":[14]},{"name":"OID_CO_ADD_PVC","features":[14]},{"name":"OID_CO_AF_CLOSE","features":[14]},{"name":"OID_CO_DELETE_ADDRESS","features":[14]},{"name":"OID_CO_DELETE_PVC","features":[14]},{"name":"OID_CO_GET_ADDRESSES","features":[14]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[14]},{"name":"OID_CO_SIGNALING_DISABLED","features":[14]},{"name":"OID_CO_SIGNALING_ENABLED","features":[14]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[14]},{"name":"OID_CO_TAPI_CM_CAPS","features":[14]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[14]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[14]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[14]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[14]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[14]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[14]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[14]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[14]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[14]},{"name":"OID_FDDI_FRAMES_LOST","features":[14]},{"name":"OID_FDDI_FRAME_ERRORS","features":[14]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[14]},{"name":"OID_FDDI_IF_DESCR","features":[14]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[14]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[14]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[14]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[14]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[14]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[14]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[14]},{"name":"OID_FDDI_IF_MTU","features":[14]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[14]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[14]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[14]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[14]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[14]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[14]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[14]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[14]},{"name":"OID_FDDI_IF_SPECIFIC","features":[14]},{"name":"OID_FDDI_IF_SPEED","features":[14]},{"name":"OID_FDDI_IF_TYPE","features":[14]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[14]},{"name":"OID_FDDI_LCT_FAILURES","features":[14]},{"name":"OID_FDDI_LEM_REJECTS","features":[14]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[14]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[14]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[14]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[14]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[14]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[14]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[14]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[14]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[14]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[14]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[14]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[14]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[14]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[14]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[14]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[14]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[14]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[14]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[14]},{"name":"OID_FDDI_MAC_INDEX","features":[14]},{"name":"OID_FDDI_MAC_LATE_CT","features":[14]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[14]},{"name":"OID_FDDI_MAC_LOST_CT","features":[14]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[14]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[14]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[14]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[14]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[14]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[14]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[14]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[14]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[14]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[14]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[14]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[14]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[14]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[14]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[14]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[14]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[14]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[14]},{"name":"OID_FDDI_MAC_T_MAX","features":[14]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[14]},{"name":"OID_FDDI_MAC_T_NEG","features":[14]},{"name":"OID_FDDI_MAC_T_PRI0","features":[14]},{"name":"OID_FDDI_MAC_T_PRI1","features":[14]},{"name":"OID_FDDI_MAC_T_PRI2","features":[14]},{"name":"OID_FDDI_MAC_T_PRI3","features":[14]},{"name":"OID_FDDI_MAC_T_PRI4","features":[14]},{"name":"OID_FDDI_MAC_T_PRI5","features":[14]},{"name":"OID_FDDI_MAC_T_PRI6","features":[14]},{"name":"OID_FDDI_MAC_T_REQ","features":[14]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[14]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[14]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[14]},{"name":"OID_FDDI_PATH_INDEX","features":[14]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[14]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[14]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[14]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[14]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[14]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[14]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[14]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[14]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[14]},{"name":"OID_FDDI_PORT_ACTION","features":[14]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[14]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[14]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[14]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[14]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[14]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[14]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[14]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[14]},{"name":"OID_FDDI_PORT_INDEX","features":[14]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[14]},{"name":"OID_FDDI_PORT_LEM_CT","features":[14]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[14]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[14]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[14]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[14]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[14]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[14]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[14]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[14]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[14]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[14]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[14]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[14]},{"name":"OID_FDDI_PORT_PC_LS","features":[14]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[14]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[14]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[14]},{"name":"OID_FDDI_RING_MGT_STATE","features":[14]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[14]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[14]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[14]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[14]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[14]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[14]},{"name":"OID_FDDI_SMT_CF_STATE","features":[14]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[14]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[14]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[14]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[14]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[14]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[14]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[14]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[14]},{"name":"OID_FDDI_SMT_MAC_CT","features":[14]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[14]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[14]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[14]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[14]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[14]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[14]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[14]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[14]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[14]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[14]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[14]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[14]},{"name":"OID_FDDI_SMT_STATION_ID","features":[14]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[14]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[14]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[14]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[14]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[14]},{"name":"OID_FDDI_SMT_USER_DATA","features":[14]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[14]},{"name":"OID_FFP_ADAPTER_STATS","features":[14]},{"name":"OID_FFP_CONTROL","features":[14]},{"name":"OID_FFP_DATA","features":[14]},{"name":"OID_FFP_DRIVER_STATS","features":[14]},{"name":"OID_FFP_FLUSH","features":[14]},{"name":"OID_FFP_PARAMS","features":[14]},{"name":"OID_FFP_SUPPORT","features":[14]},{"name":"OID_GEN_ADMIN_STATUS","features":[14]},{"name":"OID_GEN_ALIAS","features":[14]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[14]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[14]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[14]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[14]},{"name":"OID_GEN_BYTES_RCV","features":[14]},{"name":"OID_GEN_BYTES_XMIT","features":[14]},{"name":"OID_GEN_CO_BYTES_RCV","features":[14]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[14]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[14]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[14]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[14]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[14]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[14]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[14]},{"name":"OID_GEN_CO_LINK_SPEED","features":[14]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[14]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[14]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[14]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[14]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[14]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[14]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[14]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[14]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[14]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[14]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[14]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[14]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[14]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[14]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[14]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[14]},{"name":"OID_GEN_CO_VENDOR_ID","features":[14]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[14]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[14]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[14]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[14]},{"name":"OID_GEN_DEVICE_PROFILE","features":[14]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[14]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[14]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[14]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[14]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[14]},{"name":"OID_GEN_DRIVER_VERSION","features":[14]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[14]},{"name":"OID_GEN_FRIENDLY_NAME","features":[14]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[14]},{"name":"OID_GEN_GET_TIME_CAPS","features":[14]},{"name":"OID_GEN_HARDWARE_STATUS","features":[14]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[14]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[14]},{"name":"OID_GEN_INIT_TIME_MS","features":[14]},{"name":"OID_GEN_INTERFACE_INFO","features":[14]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[14]},{"name":"OID_GEN_IP_OPER_STATUS","features":[14]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[14]},{"name":"OID_GEN_LAST_CHANGE","features":[14]},{"name":"OID_GEN_LINK_PARAMETERS","features":[14]},{"name":"OID_GEN_LINK_SPEED","features":[14]},{"name":"OID_GEN_LINK_SPEED_EX","features":[14]},{"name":"OID_GEN_LINK_STATE","features":[14]},{"name":"OID_GEN_MACHINE_NAME","features":[14]},{"name":"OID_GEN_MAC_ADDRESS","features":[14]},{"name":"OID_GEN_MAC_OPTIONS","features":[14]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[14]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[14]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[14]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[14]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[14]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[14]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[14]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[14]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[14]},{"name":"OID_GEN_MEDIA_IN_USE","features":[14]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[14]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[14]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[14]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[14]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[14]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[14]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[14]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[14]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[14]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[14]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[14]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[14]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[14]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[14]},{"name":"OID_GEN_NETCARD_LOAD","features":[14]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[14]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[14]},{"name":"OID_GEN_PACKET_MONITOR","features":[14]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[14]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[14]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[14]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[14]},{"name":"OID_GEN_PORT_STATE","features":[14]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[14]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[14]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[14]},{"name":"OID_GEN_RCV_DISCARDS","features":[14]},{"name":"OID_GEN_RCV_ERROR","features":[14]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[14]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[14]},{"name":"OID_GEN_RCV_OK","features":[14]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[14]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[14]},{"name":"OID_GEN_RECEIVE_HASH","features":[14]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[14]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[14]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[14]},{"name":"OID_GEN_RESET_COUNTS","features":[14]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[14]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[14]},{"name":"OID_GEN_STATISTICS","features":[14]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[14]},{"name":"OID_GEN_SUPPORTED_LIST","features":[14]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[14]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[14]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[14]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[14]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[14]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[14]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[14]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[14]},{"name":"OID_GEN_VENDOR_ID","features":[14]},{"name":"OID_GEN_VLAN_ID","features":[14]},{"name":"OID_GEN_XMIT_DISCARDS","features":[14]},{"name":"OID_GEN_XMIT_ERROR","features":[14]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[14]},{"name":"OID_GEN_XMIT_OK","features":[14]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[14]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[14]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[14]},{"name":"OID_GFT_COUNTER_VALUES","features":[14]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[14]},{"name":"OID_GFT_CREATE_TABLE","features":[14]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[14]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[14]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[14]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[14]},{"name":"OID_GFT_DELETE_PROFILE","features":[14]},{"name":"OID_GFT_DELETE_TABLE","features":[14]},{"name":"OID_GFT_ENUM_COUNTERS","features":[14]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[14]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[14]},{"name":"OID_GFT_ENUM_PROFILES","features":[14]},{"name":"OID_GFT_ENUM_TABLES","features":[14]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[14]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[14]},{"name":"OID_GFT_FREE_COUNTERS","features":[14]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[14]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[14]},{"name":"OID_GFT_STATISTICS","features":[14]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[14]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[14]},{"name":"OID_IP4_OFFLOAD_STATS","features":[14]},{"name":"OID_IP6_OFFLOAD_STATS","features":[14]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[14]},{"name":"OID_IRDA_LINK_SPEED","features":[14]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[14]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[14]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[14]},{"name":"OID_IRDA_MEDIA_BUSY","features":[14]},{"name":"OID_IRDA_RATE_SNIFF","features":[14]},{"name":"OID_IRDA_RECEIVING","features":[14]},{"name":"OID_IRDA_RESERVED1","features":[14]},{"name":"OID_IRDA_RESERVED2","features":[14]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[14]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[14]},{"name":"OID_IRDA_UNICAST_LIST","features":[14]},{"name":"OID_KDNET_ADD_PF","features":[14]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[14]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[14]},{"name":"OID_KDNET_REMOVE_PF","features":[14]},{"name":"OID_LTALK_COLLISIONS","features":[14]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[14]},{"name":"OID_LTALK_DEFERS","features":[14]},{"name":"OID_LTALK_FCS_ERRORS","features":[14]},{"name":"OID_LTALK_IN_BROADCASTS","features":[14]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[14]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[14]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[14]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[14]},{"name":"OID_NDK_CONNECTIONS","features":[14]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[14]},{"name":"OID_NDK_SET_STATE","features":[14]},{"name":"OID_NDK_STATISTICS","features":[14]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[14]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[14]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[14]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[14]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[14]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[14]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[14]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[14]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[14]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[14]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[14]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[14]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[14]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[14]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[14]},{"name":"OID_PD_CLOSE_PROVIDER","features":[14]},{"name":"OID_PD_OPEN_PROVIDER","features":[14]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[14]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[14]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[14]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[14]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[14]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_PM_PARAMETERS","features":[14]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[14]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[14]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[14]},{"name":"OID_PM_RESERVED_1","features":[14]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[14]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[14]},{"name":"OID_PNP_CAPABILITIES","features":[14]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[14]},{"name":"OID_PNP_QUERY_POWER","features":[14]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[14]},{"name":"OID_PNP_SET_POWER","features":[14]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[14]},{"name":"OID_PNP_WAKE_UP_OK","features":[14]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[14]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[14]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[14]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[14]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[14]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[14]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[14]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[14]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[14]},{"name":"OID_QOS_PARAMETERS","features":[14]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[14]},{"name":"OID_QOS_RESERVED1","features":[14]},{"name":"OID_QOS_RESERVED10","features":[14]},{"name":"OID_QOS_RESERVED11","features":[14]},{"name":"OID_QOS_RESERVED12","features":[14]},{"name":"OID_QOS_RESERVED13","features":[14]},{"name":"OID_QOS_RESERVED14","features":[14]},{"name":"OID_QOS_RESERVED15","features":[14]},{"name":"OID_QOS_RESERVED16","features":[14]},{"name":"OID_QOS_RESERVED17","features":[14]},{"name":"OID_QOS_RESERVED18","features":[14]},{"name":"OID_QOS_RESERVED19","features":[14]},{"name":"OID_QOS_RESERVED2","features":[14]},{"name":"OID_QOS_RESERVED20","features":[14]},{"name":"OID_QOS_RESERVED3","features":[14]},{"name":"OID_QOS_RESERVED4","features":[14]},{"name":"OID_QOS_RESERVED5","features":[14]},{"name":"OID_QOS_RESERVED6","features":[14]},{"name":"OID_QOS_RESERVED7","features":[14]},{"name":"OID_QOS_RESERVED8","features":[14]},{"name":"OID_QOS_RESERVED9","features":[14]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[14]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[14]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[14]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[14]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[14]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[14]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[14]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[14]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[14]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[14]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[14]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[14]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[14]},{"name":"OID_SRIOV_CONFIG_STATE","features":[14]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[14]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[14]},{"name":"OID_SRIOV_PF_LUID","features":[14]},{"name":"OID_SRIOV_PROBED_BARS","features":[14]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[14]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[14]},{"name":"OID_SRIOV_RESET_VF","features":[14]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[14]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[14]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[14]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[14]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[14]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[14]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[14]},{"name":"OID_SWITCH_NIC_ARRAY","features":[14]},{"name":"OID_SWITCH_NIC_CONNECT","features":[14]},{"name":"OID_SWITCH_NIC_CREATE","features":[14]},{"name":"OID_SWITCH_NIC_DELETE","features":[14]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[14]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[14]},{"name":"OID_SWITCH_NIC_REQUEST","features":[14]},{"name":"OID_SWITCH_NIC_RESTORE","features":[14]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[14]},{"name":"OID_SWITCH_NIC_RESUME","features":[14]},{"name":"OID_SWITCH_NIC_SAVE","features":[14]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[14]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[14]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[14]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[14]},{"name":"OID_SWITCH_NIC_UPDATED","features":[14]},{"name":"OID_SWITCH_PARAMETERS","features":[14]},{"name":"OID_SWITCH_PORT_ARRAY","features":[14]},{"name":"OID_SWITCH_PORT_CREATE","features":[14]},{"name":"OID_SWITCH_PORT_DELETE","features":[14]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[14]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[14]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[14]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[14]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[14]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[14]},{"name":"OID_SWITCH_PORT_UPDATED","features":[14]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[14]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[14]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[14]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[14]},{"name":"OID_TAPI_ACCEPT","features":[14]},{"name":"OID_TAPI_ANSWER","features":[14]},{"name":"OID_TAPI_CLOSE","features":[14]},{"name":"OID_TAPI_CLOSE_CALL","features":[14]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[14]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[14]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[14]},{"name":"OID_TAPI_DIAL","features":[14]},{"name":"OID_TAPI_DROP","features":[14]},{"name":"OID_TAPI_GATHER_DIGITS","features":[14]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[14]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[14]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[14]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[14]},{"name":"OID_TAPI_GET_CALL_INFO","features":[14]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[14]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[14]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[14]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[14]},{"name":"OID_TAPI_GET_ID","features":[14]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[14]},{"name":"OID_TAPI_MAKE_CALL","features":[14]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[14]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[14]},{"name":"OID_TAPI_OPEN","features":[14]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[14]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[14]},{"name":"OID_TAPI_SECURE_CALL","features":[14]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[14]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[14]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[14]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[14]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[14]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[14]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[14]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[14]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[14]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[14]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[14]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[14]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[14]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[14]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[14]},{"name":"OID_TCP_RSC_STATISTICS","features":[14]},{"name":"OID_TCP_SAN_SUPPORT","features":[14]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[14]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[14]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[14]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[14]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[14]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[14]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[14]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[14]},{"name":"OID_TCP_TASK_OFFLOAD","features":[14]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[14]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[14]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[14]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[14]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[14]},{"name":"OID_VLAN_RESERVED1","features":[14]},{"name":"OID_VLAN_RESERVED2","features":[14]},{"name":"OID_VLAN_RESERVED3","features":[14]},{"name":"OID_VLAN_RESERVED4","features":[14]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[14]},{"name":"OID_WAN_CO_GET_INFO","features":[14]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[14]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[14]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[14]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[14]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[14]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[14]},{"name":"OID_WAN_GET_COMP_INFO","features":[14]},{"name":"OID_WAN_GET_INFO","features":[14]},{"name":"OID_WAN_GET_LINK_INFO","features":[14]},{"name":"OID_WAN_GET_STATS_INFO","features":[14]},{"name":"OID_WAN_HEADER_FORMAT","features":[14]},{"name":"OID_WAN_LINE_COUNT","features":[14]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[14]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[14]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[14]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[14]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[14]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[14]},{"name":"OID_WAN_SET_COMP_INFO","features":[14]},{"name":"OID_WAN_SET_LINK_INFO","features":[14]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[14]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[14]},{"name":"OID_WWAN_CONNECT","features":[14]},{"name":"OID_WWAN_CREATE_MAC","features":[14]},{"name":"OID_WWAN_DELETE_MAC","features":[14]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[14]},{"name":"OID_WWAN_DEVICE_CAPS","features":[14]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[14]},{"name":"OID_WWAN_DEVICE_RESET","features":[14]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[14]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[14]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[14]},{"name":"OID_WWAN_DRIVER_CAPS","features":[14]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[14]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[14]},{"name":"OID_WWAN_HOME_PROVIDER","features":[14]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[14]},{"name":"OID_WWAN_LOCATION_STATE","features":[14]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[14]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[14]},{"name":"OID_WWAN_MBIM_VERSION","features":[14]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[14]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[14]},{"name":"OID_WWAN_MPDP","features":[14]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[14]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[14]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[14]},{"name":"OID_WWAN_NITZ","features":[14]},{"name":"OID_WWAN_PACKET_SERVICE","features":[14]},{"name":"OID_WWAN_PCO","features":[14]},{"name":"OID_WWAN_PIN","features":[14]},{"name":"OID_WWAN_PIN_EX","features":[14]},{"name":"OID_WWAN_PIN_EX2","features":[14]},{"name":"OID_WWAN_PIN_LIST","features":[14]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[14]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[14]},{"name":"OID_WWAN_PRESHUTDOWN","features":[14]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[14]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[14]},{"name":"OID_WWAN_RADIO_STATE","features":[14]},{"name":"OID_WWAN_READY_INFO","features":[14]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[14]},{"name":"OID_WWAN_REGISTER_STATE","features":[14]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[14]},{"name":"OID_WWAN_SAR_CONFIG","features":[14]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[14]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[14]},{"name":"OID_WWAN_SIGNAL_STATE","features":[14]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[14]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[14]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[14]},{"name":"OID_WWAN_SMS_DELETE","features":[14]},{"name":"OID_WWAN_SMS_READ","features":[14]},{"name":"OID_WWAN_SMS_SEND","features":[14]},{"name":"OID_WWAN_SMS_STATUS","features":[14]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[14]},{"name":"OID_WWAN_SYS_CAPS","features":[14]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[14]},{"name":"OID_WWAN_UE_POLICY","features":[14]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[14]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[14]},{"name":"OID_WWAN_UICC_APDU","features":[14]},{"name":"OID_WWAN_UICC_APP_LIST","features":[14]},{"name":"OID_WWAN_UICC_ATR","features":[14]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[14]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[14]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[14]},{"name":"OID_WWAN_UICC_RESET","features":[14]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[14]},{"name":"OID_WWAN_USSD","features":[14]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[14]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[14]},{"name":"OID_XBOX_ACC_RESERVED0","features":[14]},{"name":"OriginalNetBufferList","features":[14]},{"name":"OriginalPacketInfo","features":[14]},{"name":"PD_BUFFER_ATTR_BUILT_IN_DATA_BUFFER","features":[14]},{"name":"PD_BUFFER_FLAG_PARTIAL_PACKET_HEAD","features":[14]},{"name":"PD_BUFFER_MIN_RX_DATA_START_ALIGNMENT","features":[14]},{"name":"PD_BUFFER_MIN_RX_DATA_START_VALUE","features":[14]},{"name":"PD_BUFFER_MIN_TX_DATA_START_ALIGNMENT","features":[14]},{"name":"PERMANENT_VC","features":[14]},{"name":"PMKID_CANDIDATE","features":[14]},{"name":"PNDIS_TIMER_FUNCTION","features":[14]},{"name":"PROTCOL_CO_AF_REGISTER_NOTIFY","features":[14]},{"name":"PROTOCOL_CL_ADD_PARTY_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_CALL_CONNECTED","features":[14]},{"name":"PROTOCOL_CL_CLOSE_AF_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_CLOSE_CALL_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_DEREGISTER_SAP_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_DROP_PARTY_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_INCOMING_CALL","features":[14]},{"name":"PROTOCOL_CL_INCOMING_CALL_QOS_CHANGE","features":[14]},{"name":"PROTOCOL_CL_INCOMING_CLOSE_CALL","features":[14]},{"name":"PROTOCOL_CL_INCOMING_DROP_PARTY","features":[14]},{"name":"PROTOCOL_CL_MAKE_CALL_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_MODIFY_CALL_QOS_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_OPEN_AF_COMPLETE","features":[14]},{"name":"PROTOCOL_CL_REGISTER_SAP_COMPLETE","features":[14]},{"name":"PROTOCOL_CM_ACTIVATE_VC_COMPLETE","features":[14]},{"name":"PROTOCOL_CM_ADD_PARTY","features":[14]},{"name":"PROTOCOL_CM_CLOSE_AF","features":[14]},{"name":"PROTOCOL_CM_CLOSE_CALL","features":[14]},{"name":"PROTOCOL_CM_DEACTIVATE_VC_COMPLETE","features":[14]},{"name":"PROTOCOL_CM_DEREGISTER_SAP","features":[14]},{"name":"PROTOCOL_CM_DROP_PARTY","features":[14]},{"name":"PROTOCOL_CM_INCOMING_CALL_COMPLETE","features":[14]},{"name":"PROTOCOL_CM_MAKE_CALL","features":[14]},{"name":"PROTOCOL_CM_MODIFY_QOS_CALL","features":[14]},{"name":"PROTOCOL_CM_OPEN_AF","features":[14]},{"name":"PROTOCOL_CM_REG_SAP","features":[14]},{"name":"PROTOCOL_CO_AF_REGISTER_NOTIFY","features":[14]},{"name":"PROTOCOL_CO_CREATE_VC","features":[14]},{"name":"PROTOCOL_CO_DELETE_VC","features":[14]},{"name":"PacketCancelId","features":[14]},{"name":"QUERY_CALL_PARAMETERS","features":[14]},{"name":"READABLE_LOCAL_CLOCK","features":[14]},{"name":"RECEIVE_TIME_INDICATION","features":[14]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[14]},{"name":"RECEIVE_VC","features":[14]},{"name":"REFERENCE","features":[14,1]},{"name":"RESERVE_RESOURCES_VC","features":[14]},{"name":"ROUND_DOWN_FLOW","features":[14]},{"name":"ROUND_UP_FLOW","features":[14]},{"name":"STRINGFORMAT_ASCII","features":[14]},{"name":"STRINGFORMAT_BINARY","features":[14]},{"name":"STRINGFORMAT_DBCS","features":[14]},{"name":"STRINGFORMAT_UNICODE","features":[14]},{"name":"ScatterGatherListPacketInfo","features":[14]},{"name":"ShortPacketPaddingInfo","features":[14]},{"name":"TDI_PNP_HANDLER","features":[14,1]},{"name":"TDI_REGISTER_CALLBACK","features":[14,1]},{"name":"TIMED_SEND_CAPABLE","features":[14]},{"name":"TIME_STAMP_CAPABLE","features":[14]},{"name":"TRANSMIT_VC","features":[14]},{"name":"TRANSPORT_HEADER_OFFSET","features":[14]},{"name":"TRUNCATED_HASH_LEN","features":[14]},{"name":"TR_FILTER","features":[14]},{"name":"TcpIpChecksumPacketInfo","features":[14]},{"name":"TcpLargeSendPacketInfo","features":[14]},{"name":"UDP_ENCAP_TYPE","features":[14]},{"name":"USE_TIME_STAMPS","features":[14]},{"name":"VAR_STRING","features":[14]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[14]},{"name":"W_CO_ACTIVATE_VC_HANDLER","features":[14]},{"name":"W_CO_CREATE_VC_HANDLER","features":[14]},{"name":"W_CO_DEACTIVATE_VC_HANDLER","features":[14]},{"name":"W_CO_DELETE_VC_HANDLER","features":[14]},{"name":"fNDIS_GUID_ALLOW_READ","features":[14]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[14]},{"name":"fNDIS_GUID_ANSI_STRING","features":[14]},{"name":"fNDIS_GUID_ARRAY","features":[14]},{"name":"fNDIS_GUID_METHOD","features":[14]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[14]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[14]},{"name":"fNDIS_GUID_TO_OID","features":[14]},{"name":"fNDIS_GUID_TO_STATUS","features":[14]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[14]},{"name":"fPACKET_ALLOCATED_BY_NDIS","features":[14]},{"name":"fPACKET_CONTAINS_MEDIA_SPECIFIC_INFO","features":[14]},{"name":"fPACKET_WRAPPER_RESERVED","features":[14]}],"343":[{"name":"FWPM_SERVICE_STATE_CHANGE_CALLBACK0","features":[17,18]},{"name":"FwpmBfeStateGet0","features":[17,18]},{"name":"FwpmBfeStateSubscribeChanges0","features":[17,1,18]},{"name":"FwpmBfeStateUnsubscribeChanges0","features":[17,1]},{"name":"FwpmCalloutAdd0","features":[17,1,18,4]},{"name":"FwpmCalloutCreateEnumHandle0","features":[17,1,18]},{"name":"FwpmCalloutDeleteById0","features":[17,1]},{"name":"FwpmCalloutDeleteByKey0","features":[17,1]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[17,1]},{"name":"FwpmCalloutEnum0","features":[17,1,18]},{"name":"FwpmCalloutGetById0","features":[17,1,18]},{"name":"FwpmCalloutGetByKey0","features":[17,1,18]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmConnectionCreateEnumHandle0","features":[17,1,18]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[17,1]},{"name":"FwpmConnectionEnum0","features":[17,1,18]},{"name":"FwpmConnectionGetById0","features":[17,1,18]},{"name":"FwpmConnectionGetSecurityInfo0","features":[17,1,4]},{"name":"FwpmConnectionSetSecurityInfo0","features":[17,1,4]},{"name":"FwpmEngineClose0","features":[17,1]},{"name":"FwpmEngineGetOption0","features":[17,1,18,4]},{"name":"FwpmEngineGetSecurityInfo0","features":[17,1,4]},{"name":"FwpmEngineOpen0","features":[17,1,18,4,19]},{"name":"FwpmEngineSetOption0","features":[17,1,18,4]},{"name":"FwpmEngineSetSecurityInfo0","features":[17,1,4]},{"name":"FwpmFilterAdd0","features":[17,1,18,4]},{"name":"FwpmFilterCreateEnumHandle0","features":[17,1,18,4]},{"name":"FwpmFilterDeleteById0","features":[17,1]},{"name":"FwpmFilterDeleteByKey0","features":[17,1]},{"name":"FwpmFilterDestroyEnumHandle0","features":[17,1]},{"name":"FwpmFilterEnum0","features":[17,1,18,4]},{"name":"FwpmFilterGetById0","features":[17,1,18,4]},{"name":"FwpmFilterGetByKey0","features":[17,1,18,4]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmFreeMemory0","features":[17]},{"name":"FwpmIPsecTunnelAdd0","features":[17,1,18,4]},{"name":"FwpmIPsecTunnelAdd1","features":[17,1,18,4]},{"name":"FwpmIPsecTunnelAdd2","features":[17,1,18,4]},{"name":"FwpmIPsecTunnelAdd3","features":[17,1,18,4]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[17,1]},{"name":"FwpmLayerCreateEnumHandle0","features":[17,1,18]},{"name":"FwpmLayerDestroyEnumHandle0","features":[17,1]},{"name":"FwpmLayerEnum0","features":[17,1,18]},{"name":"FwpmLayerGetById0","features":[17,1,18]},{"name":"FwpmLayerGetByKey0","features":[17,1,18]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmNetEventCreateEnumHandle0","features":[17,1,18,4]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[17,1]},{"name":"FwpmNetEventEnum0","features":[17,1,18,4]},{"name":"FwpmNetEventEnum1","features":[17,1,18,4]},{"name":"FwpmNetEventEnum2","features":[17,1,18,4]},{"name":"FwpmNetEventEnum3","features":[17,1,18,4]},{"name":"FwpmNetEventEnum4","features":[17,1,18,4]},{"name":"FwpmNetEventEnum5","features":[17,1,18,4]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[17,1,4]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[17,1,4]},{"name":"FwpmProviderAdd0","features":[17,1,18,4]},{"name":"FwpmProviderContextAdd0","features":[17,1,18,4]},{"name":"FwpmProviderContextAdd1","features":[17,1,18,4]},{"name":"FwpmProviderContextAdd2","features":[17,1,18,4]},{"name":"FwpmProviderContextAdd3","features":[17,1,18,4]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[17,1,18]},{"name":"FwpmProviderContextDeleteById0","features":[17,1]},{"name":"FwpmProviderContextDeleteByKey0","features":[17,1]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[17,1]},{"name":"FwpmProviderContextEnum0","features":[17,1,18,4]},{"name":"FwpmProviderContextEnum1","features":[17,1,18,4]},{"name":"FwpmProviderContextEnum2","features":[17,1,18,4]},{"name":"FwpmProviderContextEnum3","features":[17,1,18,4]},{"name":"FwpmProviderContextGetById0","features":[17,1,18,4]},{"name":"FwpmProviderContextGetById1","features":[17,1,18,4]},{"name":"FwpmProviderContextGetById2","features":[17,1,18,4]},{"name":"FwpmProviderContextGetById3","features":[17,1,18,4]},{"name":"FwpmProviderContextGetByKey0","features":[17,1,18,4]},{"name":"FwpmProviderContextGetByKey1","features":[17,1,18,4]},{"name":"FwpmProviderContextGetByKey2","features":[17,1,18,4]},{"name":"FwpmProviderContextGetByKey3","features":[17,1,18,4]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmProviderCreateEnumHandle0","features":[17,1,18]},{"name":"FwpmProviderDeleteByKey0","features":[17,1]},{"name":"FwpmProviderDestroyEnumHandle0","features":[17,1]},{"name":"FwpmProviderEnum0","features":[17,1,18]},{"name":"FwpmProviderGetByKey0","features":[17,1,18]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmSessionCreateEnumHandle0","features":[17,1,18]},{"name":"FwpmSessionDestroyEnumHandle0","features":[17,1]},{"name":"FwpmSessionEnum0","features":[17,1,18,4]},{"name":"FwpmSubLayerAdd0","features":[17,1,18,4]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[17,1,18]},{"name":"FwpmSubLayerDeleteByKey0","features":[17,1]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[17,1]},{"name":"FwpmSubLayerEnum0","features":[17,1,18]},{"name":"FwpmSubLayerGetByKey0","features":[17,1,18]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[17,1,4]},{"name":"FwpmTransactionAbort0","features":[17,1]},{"name":"FwpmTransactionBegin0","features":[17,1]},{"name":"FwpmTransactionCommit0","features":[17,1]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[17,1,4]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[17,1,4]},{"name":"IPsecDospGetSecurityInfo0","features":[17,1,4]},{"name":"IPsecDospGetStatistics0","features":[17,1,18]},{"name":"IPsecDospSetSecurityInfo0","features":[17,1,4]},{"name":"IPsecDospStateCreateEnumHandle0","features":[17,1,18]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[17,1]},{"name":"IPsecDospStateEnum0","features":[17,1,18]},{"name":"IPsecGetStatistics0","features":[17,1,18]},{"name":"IPsecGetStatistics1","features":[17,1,18]},{"name":"IPsecSaContextAddInbound0","features":[17,1,18]},{"name":"IPsecSaContextAddInbound1","features":[17,1,18]},{"name":"IPsecSaContextAddOutbound0","features":[17,1,18]},{"name":"IPsecSaContextAddOutbound1","features":[17,1,18]},{"name":"IPsecSaContextCreate0","features":[17,1,18]},{"name":"IPsecSaContextCreate1","features":[17,1,18]},{"name":"IPsecSaContextCreateEnumHandle0","features":[17,1,18,4]},{"name":"IPsecSaContextDeleteById0","features":[17,1]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[17,1]},{"name":"IPsecSaContextEnum0","features":[17,1,18,4]},{"name":"IPsecSaContextEnum1","features":[17,1,18,4]},{"name":"IPsecSaContextExpire0","features":[17,1]},{"name":"IPsecSaContextGetById0","features":[17,1,18,4]},{"name":"IPsecSaContextGetById1","features":[17,1,18,4]},{"name":"IPsecSaContextGetSpi0","features":[17,1,18]},{"name":"IPsecSaContextGetSpi1","features":[17,1,18]},{"name":"IPsecSaContextSetSpi0","features":[17,1,18]},{"name":"IPsecSaContextUpdate0","features":[17,1,18,4]},{"name":"IPsecSaCreateEnumHandle0","features":[17,1,18]},{"name":"IPsecSaDbGetSecurityInfo0","features":[17,1,4]},{"name":"IPsecSaDbSetSecurityInfo0","features":[17,1,4]},{"name":"IPsecSaDestroyEnumHandle0","features":[17,1]},{"name":"IPsecSaEnum0","features":[17,1,18,4]},{"name":"IPsecSaEnum1","features":[17,1,18,4]},{"name":"IkeextGetStatistics0","features":[17,1,18]},{"name":"IkeextGetStatistics1","features":[17,1,18]},{"name":"IkeextSaCreateEnumHandle0","features":[17,1,18,4]},{"name":"IkeextSaDbGetSecurityInfo0","features":[17,1,4]},{"name":"IkeextSaDbSetSecurityInfo0","features":[17,1,4]},{"name":"IkeextSaDeleteById0","features":[17,1]},{"name":"IkeextSaDestroyEnumHandle0","features":[17,1]},{"name":"IkeextSaEnum0","features":[17,1,18]},{"name":"IkeextSaEnum1","features":[17,1,18]},{"name":"IkeextSaEnum2","features":[17,1,18]},{"name":"IkeextSaGetById0","features":[17,1,18]},{"name":"IkeextSaGetById1","features":[17,1,18]},{"name":"IkeextSaGetById2","features":[17,1,18]}],"344":[{"name":"ACE_HEADER","features":[5]},{"name":"ALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[5,1,20]},{"name":"ATOMIC_CREATE_ECP_CONTEXT","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_BEST_EFFORT","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_EOF_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_FILE_ATTRIBUTES_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_GEN_FLAGS_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_MARK_USN_SOURCE_INFO","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OPERATION_MASK","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OP_FLAGS_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_REPARSE_POINT_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SPARSE_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_DIR_CHANGE_NOTIFY","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_FILE_ATTRIBUTE_INHERITANCE","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_PARENT_TIMESTAMPS_UPDATE","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_TIMESTAMPS_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_VDL_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_WRITE_USN_CLOSE_RECORD","features":[5]},{"name":"ATOMIC_CREATE_ECP_IN_OP_FLAG_CASE_SENSITIVE_FLAGS_SPECIFIED","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_EOF_SET","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_RETURNED","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_SET","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTE_INHERITANCE_SUPPRESSED","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OPERATION_MASK","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OP_FLAGS_HONORED","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_REPARSE_POINT_SET","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_SPARSE_SET","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_RETURNED","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_SET","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_CLOSE_RECORD_WRITTEN","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_RETURNED","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_SOURCE_INFO_MARKED","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_VDL_SET","features":[5]},{"name":"ATOMIC_CREATE_ECP_OUT_OP_FLAG_CASE_SENSITIVE_FLAGS_SET","features":[5]},{"name":"ApplyControlToken","features":[5]},{"name":"AuditAccessCheck","features":[5]},{"name":"AuditCloseNonObject","features":[5]},{"name":"AuditCloseObject","features":[5]},{"name":"AuditDeleteObject","features":[5]},{"name":"AuditHandleCreation","features":[5]},{"name":"AuditObjectReference","features":[5]},{"name":"AuditOpenNonObject","features":[5]},{"name":"AuditOpenObject","features":[5]},{"name":"AuditOpenObjectForDelete","features":[5]},{"name":"AuditOpenObjectForDeleteWithTransaction","features":[5]},{"name":"AuditOpenObjectWithTransaction","features":[5]},{"name":"AuditPrivilegeObject","features":[5]},{"name":"AuditPrivilegeService","features":[5]},{"name":"BASE_MCB","features":[5]},{"name":"BOOT_AREA_INFO","features":[5]},{"name":"CACHE_MANAGER_CALLBACKS","features":[5,1]},{"name":"CACHE_MANAGER_CALLBACKS_EX","features":[5,1]},{"name":"CACHE_MANAGER_CALLBACKS_EX_V1","features":[5]},{"name":"CACHE_MANAGER_CALLBACK_FUNCTIONS","features":[5,1]},{"name":"CACHE_UNINITIALIZE_EVENT","features":[2,5,1,7]},{"name":"CACHE_USE_DIRECT_ACCESS_MAPPING","features":[5]},{"name":"CACHE_VALID_FLAGS","features":[5]},{"name":"CC_ACQUIRE_DONT_WAIT","features":[5]},{"name":"CC_ACQUIRE_SUPPORTS_ASYNC_LAZYWRITE","features":[5]},{"name":"CC_AGGRESSIVE_UNMAP_BEHIND","features":[5]},{"name":"CC_ASYNC_READ_CONTEXT","features":[2,5,1]},{"name":"CC_DISABLE_DIRTY_PAGE_TRACKING","features":[5]},{"name":"CC_DISABLE_READ_AHEAD","features":[5]},{"name":"CC_DISABLE_UNMAP_BEHIND","features":[5]},{"name":"CC_DISABLE_WRITE_BEHIND","features":[5]},{"name":"CC_ENABLE_CPU_CACHE","features":[5]},{"name":"CC_ENABLE_DISK_IO_ACCOUNTING","features":[5]},{"name":"CC_ERROR_CALLBACK_CONTEXT","features":[5,1]},{"name":"CC_FILE_SIZES","features":[5]},{"name":"CC_FLUSH_AND_PURGE_GATHER_DIRTY_BITS","features":[5]},{"name":"CC_FLUSH_AND_PURGE_NO_PURGE","features":[5]},{"name":"CC_FLUSH_AND_PURGE_WRITEABLE_VIEWS_NOTSEEN","features":[5]},{"name":"COMPRESSED_DATA_INFO","features":[5]},{"name":"COMPRESSION_ENGINE_MASK","features":[5]},{"name":"COMPRESSION_ENGINE_MAX","features":[5]},{"name":"COMPRESSION_FORMAT_MASK","features":[5]},{"name":"COMPRESSION_FORMAT_MAX","features":[5]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[5]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[5]},{"name":"CONTAINER_VOLUME_STATE","features":[5]},{"name":"COPY_INFORMATION","features":[2,5,3,1,4,6,7,8]},{"name":"CPTABLEINFO","features":[5]},{"name":"CREATE_REDIRECTION_ECP_CONTEXT","features":[5,21]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_LAYER","features":[5]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REGISTERED_LAYER","features":[5]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REMOTE_LAYER","features":[5]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_SCRATCH","features":[5]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_USER_MODE","features":[5]},{"name":"CREATE_USN_JOURNAL_DATA","features":[5]},{"name":"CSV_DOWN_LEVEL_FILE_TYPE","features":[5]},{"name":"CSV_DOWN_LEVEL_OPEN_ECP_CONTEXT","features":[5,1]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT","features":[5]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT_FILE_ID_128","features":[5,21]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT","features":[5]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[5]},{"name":"CcAsyncCopyRead","features":[2,5,3,1,4,6,7,8]},{"name":"CcCanIWrite","features":[2,5,3,1,4,6,7,8]},{"name":"CcCoherencyFlushAndPurgeCache","features":[2,5,1,6]},{"name":"CcCopyRead","features":[2,5,3,1,4,6,7,8]},{"name":"CcCopyReadEx","features":[2,5,3,1,4,6,7,8]},{"name":"CcCopyWrite","features":[2,5,3,1,4,6,7,8]},{"name":"CcCopyWriteEx","features":[2,5,3,1,4,6,7,8]},{"name":"CcCopyWriteWontFlush","features":[2,5,3,1,4,6,7,8]},{"name":"CcDeferWrite","features":[2,5,3,1,4,6,7,8]},{"name":"CcErrorCallbackRoutine","features":[5,1]},{"name":"CcFastCopyRead","features":[2,5,3,1,4,6,7,8]},{"name":"CcFastCopyWrite","features":[2,5,3,1,4,6,7,8]},{"name":"CcFlushCache","features":[2,5,1,6]},{"name":"CcGetDirtyPages","features":[2,5,3,1,4,6,7,8]},{"name":"CcGetFileObjectFromBcb","features":[2,5,3,1,4,6,7,8]},{"name":"CcGetFileObjectFromSectionPtrs","features":[2,5,3,1,4,6,7,8]},{"name":"CcGetFileObjectFromSectionPtrsRef","features":[2,5,3,1,4,6,7,8]},{"name":"CcGetFlushedValidData","features":[2,5,1]},{"name":"CcInitializeCacheMap","features":[2,5,3,1,4,6,7,8]},{"name":"CcInitializeCacheMapEx","features":[2,5,3,1,4,6,7,8]},{"name":"CcIsCacheManagerCallbackNeeded","features":[5,1]},{"name":"CcIsThereDirtyData","features":[2,5,3,1,4,6,7,8]},{"name":"CcIsThereDirtyDataEx","features":[2,5,3,1,4,6,7,8]},{"name":"CcMapData","features":[2,5,3,1,4,6,7,8]},{"name":"CcMdlRead","features":[2,5,3,1,4,6,7,8]},{"name":"CcMdlReadComplete","features":[2,5,3,1,4,6,7,8]},{"name":"CcMdlWriteAbort","features":[2,5,3,1,4,6,7,8]},{"name":"CcMdlWriteComplete","features":[2,5,3,1,4,6,7,8]},{"name":"CcPinMappedData","features":[2,5,3,1,4,6,7,8]},{"name":"CcPinRead","features":[2,5,3,1,4,6,7,8]},{"name":"CcPrepareMdlWrite","features":[2,5,3,1,4,6,7,8]},{"name":"CcPreparePinWrite","features":[2,5,3,1,4,6,7,8]},{"name":"CcPurgeCacheSection","features":[2,5,1]},{"name":"CcRemapBcb","features":[5]},{"name":"CcRepinBcb","features":[5]},{"name":"CcScheduleReadAhead","features":[2,5,3,1,4,6,7,8]},{"name":"CcScheduleReadAheadEx","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetAdditionalCacheAttributes","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetAdditionalCacheAttributesEx","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetBcbOwnerPointer","features":[5]},{"name":"CcSetDirtyPageThreshold","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetDirtyPinnedData","features":[5]},{"name":"CcSetFileSizes","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetFileSizesEx","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetLogHandleForFile","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetParallelFlushFile","features":[2,5,3,1,4,6,7,8]},{"name":"CcSetReadAheadGranularity","features":[2,5,3,1,4,6,7,8]},{"name":"CcUninitializeCacheMap","features":[2,5,3,1,4,6,7,8]},{"name":"CcUnpinData","features":[5]},{"name":"CcUnpinDataForThread","features":[5]},{"name":"CcUnpinRepinnedBcb","features":[5,1,6]},{"name":"CcWaitForCurrentLazyWriterActivity","features":[5,1]},{"name":"CcZeroData","features":[2,5,3,1,4,6,7,8]},{"name":"ChangeDataControlArea","features":[5]},{"name":"ChangeImageControlArea","features":[5]},{"name":"ChangeSharedCacheMap","features":[5]},{"name":"CompleteAuthToken","features":[5]},{"name":"CsvCsvFsInternalFileObject","features":[5]},{"name":"CsvDownLevelFileObject","features":[5]},{"name":"DD_MUP_DEVICE_NAME","features":[5]},{"name":"DEVICE_RESET_KEEP_STACK","features":[5]},{"name":"DEVICE_RESET_RESERVED_0","features":[5]},{"name":"DEVICE_RESET_RESERVED_1","features":[5]},{"name":"DO_BOOT_CRITICAL","features":[5]},{"name":"DO_BUFFERED_IO","features":[5]},{"name":"DO_BUS_ENUMERATED_DEVICE","features":[5]},{"name":"DO_DAX_VOLUME","features":[5]},{"name":"DO_DEVICE_HAS_NAME","features":[5]},{"name":"DO_DEVICE_INITIALIZING","features":[5]},{"name":"DO_DEVICE_IRP_REQUIRES_EXTENSION","features":[5]},{"name":"DO_DEVICE_TO_BE_RESET","features":[5]},{"name":"DO_DIRECT_IO","features":[5]},{"name":"DO_DISALLOW_EXECUTE","features":[5]},{"name":"DO_EXCLUSIVE","features":[5]},{"name":"DO_FORCE_NEITHER_IO","features":[5]},{"name":"DO_LONG_TERM_REQUESTS","features":[5]},{"name":"DO_LOW_PRIORITY_FILESYSTEM","features":[5]},{"name":"DO_MAP_IO_BUFFER","features":[5]},{"name":"DO_NEVER_LAST_DEVICE","features":[5]},{"name":"DO_NOT_PURGE_DIRTY_PAGES","features":[5]},{"name":"DO_NOT_RETRY_PURGE","features":[5]},{"name":"DO_POWER_INRUSH","features":[5]},{"name":"DO_POWER_PAGABLE","features":[5]},{"name":"DO_SHUTDOWN_REGISTERED","features":[5]},{"name":"DO_SUPPORTS_PERSISTENT_ACLS","features":[5]},{"name":"DO_SUPPORTS_TRANSACTIONS","features":[5]},{"name":"DO_SYSTEM_BOOT_PARTITION","features":[5]},{"name":"DO_SYSTEM_CRITICAL_PARTITION","features":[5]},{"name":"DO_SYSTEM_SYSTEM_PARTITION","features":[5]},{"name":"DO_VERIFY_VOLUME","features":[5]},{"name":"DO_VOLUME_DEVICE_OBJECT","features":[5]},{"name":"DUAL_OPLOCK_KEY_ECP_CONTEXT","features":[5,1]},{"name":"DUPLICATE_CLUSTER_DATA","features":[5]},{"name":"DfsLinkTrackingInformation","features":[5]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY","features":[5]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY_U","features":[5]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY","features":[5]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY_U","features":[5]},{"name":"ECP_OPEN_PARAMETERS","features":[5]},{"name":"ECP_OPEN_PARAMETERS_FLAG_FAIL_ON_CASE_SENSITIVE_DIR","features":[5]},{"name":"ECP_OPEN_PARAMETERS_FLAG_IGNORE_DIR_CASE_SENSITIVITY","features":[5]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_DELETE","features":[5]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_READ","features":[5]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_WRITE","features":[5]},{"name":"ECP_TYPE_CLFS_CREATE_CONTAINER","features":[5]},{"name":"ECP_TYPE_IO_STOP_ON_SYMLINK_FILTER_GUID","features":[5]},{"name":"ECP_TYPE_OPEN_REPARSE_GUID","features":[5]},{"name":"EOF_WAIT_BLOCK","features":[2,5,1,7]},{"name":"EVENT_INCREMENT","features":[5]},{"name":"EXTENT_READ_CACHE_INFO_BUFFER","features":[5]},{"name":"EqualTo","features":[5]},{"name":"ExDisableResourceBoostLite","features":[2,5,7]},{"name":"ExQueryPoolBlockSize","features":[5,1]},{"name":"ExportSecurityContext","features":[5]},{"name":"FAST_IO_POSSIBLE","features":[5]},{"name":"FILE_ACCESS_INFORMATION","features":[5]},{"name":"FILE_ACTION_ADDED_STREAM","features":[5]},{"name":"FILE_ACTION_ID_NOT_TUNNELLED","features":[5]},{"name":"FILE_ACTION_MODIFIED_STREAM","features":[5]},{"name":"FILE_ACTION_REMOVED_BY_DELETE","features":[5]},{"name":"FILE_ACTION_REMOVED_STREAM","features":[5]},{"name":"FILE_ACTION_TUNNELLED_ID_COLLISION","features":[5]},{"name":"FILE_ALIGNMENT_INFORMATION","features":[5]},{"name":"FILE_ALLOCATION_INFORMATION","features":[5]},{"name":"FILE_ALL_INFORMATION","features":[5,1]},{"name":"FILE_BASIC_INFORMATION","features":[5]},{"name":"FILE_BOTH_DIR_INFORMATION","features":[5]},{"name":"FILE_CASE_SENSITIVE_INFORMATION","features":[5]},{"name":"FILE_CLEANUP_FILE_DELETED","features":[5]},{"name":"FILE_CLEANUP_FILE_REMAINS","features":[5]},{"name":"FILE_CLEANUP_LINK_DELETED","features":[5]},{"name":"FILE_CLEANUP_POSIX_STYLE_DELETE","features":[5]},{"name":"FILE_CLEANUP_STREAM_DELETED","features":[5]},{"name":"FILE_CLEANUP_UNKNOWN","features":[5]},{"name":"FILE_CLEANUP_WRONG_DEVICE","features":[5]},{"name":"FILE_COMPLETE_IF_OPLOCKED","features":[5]},{"name":"FILE_COMPLETION_INFORMATION","features":[5,1]},{"name":"FILE_COMPRESSION_INFORMATION","features":[5]},{"name":"FILE_CONTAINS_EXTENDED_CREATE_INFORMATION","features":[5]},{"name":"FILE_CREATE","features":[5]},{"name":"FILE_CREATE_TREE_CONNECTION","features":[5]},{"name":"FILE_DELETE_ON_CLOSE","features":[5]},{"name":"FILE_DIRECTORY_FILE","features":[5]},{"name":"FILE_DIRECTORY_INFORMATION","features":[5]},{"name":"FILE_DISALLOW_EXCLUSIVE","features":[5]},{"name":"FILE_DISPOSITION_DELETE","features":[5]},{"name":"FILE_DISPOSITION_DO_NOT_DELETE","features":[5]},{"name":"FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK","features":[5]},{"name":"FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE","features":[5]},{"name":"FILE_DISPOSITION_INFORMATION","features":[5,1]},{"name":"FILE_DISPOSITION_INFORMATION_EX","features":[5]},{"name":"FILE_DISPOSITION_INFORMATION_EX_FLAGS","features":[5]},{"name":"FILE_DISPOSITION_ON_CLOSE","features":[5]},{"name":"FILE_DISPOSITION_POSIX_SEMANTICS","features":[5]},{"name":"FILE_EA_INFORMATION","features":[5]},{"name":"FILE_EA_TYPE_ASCII","features":[5]},{"name":"FILE_EA_TYPE_ASN1","features":[5]},{"name":"FILE_EA_TYPE_BINARY","features":[5]},{"name":"FILE_EA_TYPE_BITMAP","features":[5]},{"name":"FILE_EA_TYPE_EA","features":[5]},{"name":"FILE_EA_TYPE_FAMILY_IDS","features":[5]},{"name":"FILE_EA_TYPE_ICON","features":[5]},{"name":"FILE_EA_TYPE_METAFILE","features":[5]},{"name":"FILE_EA_TYPE_MVMT","features":[5]},{"name":"FILE_EA_TYPE_MVST","features":[5]},{"name":"FILE_END_OF_FILE_INFORMATION_EX","features":[5]},{"name":"FILE_FS_ATTRIBUTE_INFORMATION","features":[5]},{"name":"FILE_FS_CONTROL_INFORMATION","features":[5]},{"name":"FILE_FS_DATA_COPY_INFORMATION","features":[5]},{"name":"FILE_FS_DRIVER_PATH_INFORMATION","features":[5,1]},{"name":"FILE_FS_SECTOR_SIZE_INFORMATION","features":[5]},{"name":"FILE_FS_VOLUME_FLAGS_INFORMATION","features":[5]},{"name":"FILE_FULL_DIR_INFORMATION","features":[5]},{"name":"FILE_FULL_EA_INFORMATION","features":[5]},{"name":"FILE_GET_EA_INFORMATION","features":[5]},{"name":"FILE_GET_QUOTA_INFORMATION","features":[5,4]},{"name":"FILE_ID_BOTH_DIR_INFORMATION","features":[5]},{"name":"FILE_ID_EXTD_BOTH_DIR_INFORMATION","features":[5,21]},{"name":"FILE_ID_EXTD_DIR_INFORMATION","features":[5,21]},{"name":"FILE_ID_FULL_DIR_INFORMATION","features":[5]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFORMATION","features":[5]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_OUTSIDE_TX","features":[5]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_TO_TX","features":[5]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_WRITELOCKED","features":[5]},{"name":"FILE_ID_INFORMATION","features":[5,21]},{"name":"FILE_INFORMATION_CLASS","features":[5]},{"name":"FILE_INFORMATION_DEFINITION","features":[5]},{"name":"FILE_INTERNAL_INFORMATION","features":[5]},{"name":"FILE_KNOWN_FOLDER_INFORMATION","features":[5]},{"name":"FILE_KNOWN_FOLDER_TYPE","features":[5]},{"name":"FILE_LINKS_FULL_ID_INFORMATION","features":[5,21]},{"name":"FILE_LINKS_INFORMATION","features":[5]},{"name":"FILE_LINK_ENTRY_FULL_ID_INFORMATION","features":[5,21]},{"name":"FILE_LINK_ENTRY_INFORMATION","features":[5]},{"name":"FILE_LINK_FORCE_RESIZE_SOURCE_SR","features":[5]},{"name":"FILE_LINK_FORCE_RESIZE_SR","features":[5]},{"name":"FILE_LINK_FORCE_RESIZE_TARGET_SR","features":[5]},{"name":"FILE_LINK_IGNORE_READONLY_ATTRIBUTE","features":[5]},{"name":"FILE_LINK_INFORMATION","features":[5,1]},{"name":"FILE_LINK_NO_DECREASE_AVAILABLE_SPACE","features":[5]},{"name":"FILE_LINK_NO_INCREASE_AVAILABLE_SPACE","features":[5]},{"name":"FILE_LINK_POSIX_SEMANTICS","features":[5]},{"name":"FILE_LINK_PRESERVE_AVAILABLE_SPACE","features":[5]},{"name":"FILE_LINK_REPLACE_IF_EXISTS","features":[5]},{"name":"FILE_LINK_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[5]},{"name":"FILE_LOCK","features":[2,5,3,1,4,6,7,8]},{"name":"FILE_LOCK_INFO","features":[2,5,3,1,4,6,7,8]},{"name":"FILE_MAILSLOT_QUERY_INFORMATION","features":[5]},{"name":"FILE_MAILSLOT_SET_INFORMATION","features":[5]},{"name":"FILE_MODE_INFORMATION","features":[5]},{"name":"FILE_MOVE_CLUSTER_INFORMATION","features":[5,1]},{"name":"FILE_NAMES_INFORMATION","features":[5]},{"name":"FILE_NAME_INFORMATION","features":[5]},{"name":"FILE_NEED_EA","features":[5]},{"name":"FILE_NETWORK_OPEN_INFORMATION","features":[5]},{"name":"FILE_NETWORK_PHYSICAL_NAME_INFORMATION","features":[5]},{"name":"FILE_NON_DIRECTORY_FILE","features":[5]},{"name":"FILE_NOTIFY_CHANGE_EA","features":[5]},{"name":"FILE_NOTIFY_CHANGE_NAME","features":[5]},{"name":"FILE_NOTIFY_CHANGE_STREAM_NAME","features":[5]},{"name":"FILE_NOTIFY_CHANGE_STREAM_SIZE","features":[5]},{"name":"FILE_NOTIFY_CHANGE_STREAM_WRITE","features":[5]},{"name":"FILE_NOTIFY_VALID_MASK","features":[5]},{"name":"FILE_NO_COMPRESSION","features":[5]},{"name":"FILE_NO_EA_KNOWLEDGE","features":[5]},{"name":"FILE_NO_INTERMEDIATE_BUFFERING","features":[5]},{"name":"FILE_OBJECTID_INFORMATION","features":[5]},{"name":"FILE_OPBATCH_BREAK_UNDERWAY","features":[5]},{"name":"FILE_OPEN","features":[5]},{"name":"FILE_OPEN_BY_FILE_ID","features":[5]},{"name":"FILE_OPEN_FOR_BACKUP_INTENT","features":[5]},{"name":"FILE_OPEN_FOR_FREE_SPACE_QUERY","features":[5]},{"name":"FILE_OPEN_IF","features":[5]},{"name":"FILE_OPEN_NO_RECALL","features":[5]},{"name":"FILE_OPEN_REPARSE_POINT","features":[5]},{"name":"FILE_OPEN_REQUIRING_OPLOCK","features":[5]},{"name":"FILE_OPLOCK_BROKEN_TO_LEVEL_2","features":[5]},{"name":"FILE_OPLOCK_BROKEN_TO_NONE","features":[5]},{"name":"FILE_OVERWRITE","features":[5]},{"name":"FILE_OVERWRITE_IF","features":[5]},{"name":"FILE_PIPE_ACCEPT_REMOTE_CLIENTS","features":[5]},{"name":"FILE_PIPE_ASSIGN_EVENT_BUFFER","features":[5,1]},{"name":"FILE_PIPE_BYTE_STREAM_MODE","features":[5]},{"name":"FILE_PIPE_BYTE_STREAM_TYPE","features":[5]},{"name":"FILE_PIPE_CLIENT_END","features":[5]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER","features":[5]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_EX","features":[5]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_V2","features":[5]},{"name":"FILE_PIPE_CLOSING_STATE","features":[5]},{"name":"FILE_PIPE_COMPLETE_OPERATION","features":[5]},{"name":"FILE_PIPE_COMPUTER_NAME_LENGTH","features":[5]},{"name":"FILE_PIPE_CONNECTED_STATE","features":[5]},{"name":"FILE_PIPE_CREATE_SYMLINK_INPUT","features":[5]},{"name":"FILE_PIPE_DELETE_SYMLINK_INPUT","features":[5]},{"name":"FILE_PIPE_DISCONNECTED_STATE","features":[5]},{"name":"FILE_PIPE_EVENT_BUFFER","features":[5]},{"name":"FILE_PIPE_FULL_DUPLEX","features":[5]},{"name":"FILE_PIPE_INBOUND","features":[5]},{"name":"FILE_PIPE_INFORMATION","features":[5]},{"name":"FILE_PIPE_LISTENING_STATE","features":[5]},{"name":"FILE_PIPE_LOCAL_INFORMATION","features":[5]},{"name":"FILE_PIPE_MESSAGE_MODE","features":[5]},{"name":"FILE_PIPE_MESSAGE_TYPE","features":[5]},{"name":"FILE_PIPE_OUTBOUND","features":[5]},{"name":"FILE_PIPE_PEEK_BUFFER","features":[5]},{"name":"FILE_PIPE_QUEUE_OPERATION","features":[5]},{"name":"FILE_PIPE_READ_DATA","features":[5]},{"name":"FILE_PIPE_REJECT_REMOTE_CLIENTS","features":[5]},{"name":"FILE_PIPE_REMOTE_INFORMATION","features":[5]},{"name":"FILE_PIPE_SERVER_END","features":[5]},{"name":"FILE_PIPE_SILO_ARRIVAL_INPUT","features":[5,1]},{"name":"FILE_PIPE_SYMLINK_FLAG_GLOBAL","features":[5]},{"name":"FILE_PIPE_SYMLINK_FLAG_RELATIVE","features":[5]},{"name":"FILE_PIPE_TYPE_VALID_MASK","features":[5]},{"name":"FILE_PIPE_WAIT_FOR_BUFFER","features":[5,1]},{"name":"FILE_PIPE_WRITE_SPACE","features":[5]},{"name":"FILE_POSITION_INFORMATION","features":[5]},{"name":"FILE_QUOTA_INFORMATION","features":[5,4]},{"name":"FILE_RANDOM_ACCESS","features":[5]},{"name":"FILE_REMOTE_PROTOCOL_INFORMATION","features":[5]},{"name":"FILE_RENAME_FORCE_RESIZE_SOURCE_SR","features":[5]},{"name":"FILE_RENAME_FORCE_RESIZE_SR","features":[5]},{"name":"FILE_RENAME_FORCE_RESIZE_TARGET_SR","features":[5]},{"name":"FILE_RENAME_IGNORE_READONLY_ATTRIBUTE","features":[5]},{"name":"FILE_RENAME_INFORMATION","features":[5,1]},{"name":"FILE_RENAME_NO_DECREASE_AVAILABLE_SPACE","features":[5]},{"name":"FILE_RENAME_NO_INCREASE_AVAILABLE_SPACE","features":[5]},{"name":"FILE_RENAME_POSIX_SEMANTICS","features":[5]},{"name":"FILE_RENAME_PRESERVE_AVAILABLE_SPACE","features":[5]},{"name":"FILE_RENAME_REPLACE_IF_EXISTS","features":[5]},{"name":"FILE_RENAME_SUPPRESS_PIN_STATE_INHERITANCE","features":[5]},{"name":"FILE_RENAME_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[5]},{"name":"FILE_REPARSE_POINT_INFORMATION","features":[5]},{"name":"FILE_RESERVE_OPFILTER","features":[5]},{"name":"FILE_SEQUENTIAL_ONLY","features":[5]},{"name":"FILE_SESSION_AWARE","features":[5]},{"name":"FILE_STANDARD_INFORMATION","features":[5,1]},{"name":"FILE_STANDARD_LINK_INFORMATION","features":[5,1]},{"name":"FILE_STAT_INFORMATION","features":[5]},{"name":"FILE_STAT_LX_INFORMATION","features":[5]},{"name":"FILE_STORAGE_RESERVE_ID_INFORMATION","features":[5,22]},{"name":"FILE_STREAM_INFORMATION","features":[5]},{"name":"FILE_SUPERSEDE","features":[5]},{"name":"FILE_SYNCHRONOUS_IO_ALERT","features":[5]},{"name":"FILE_SYNCHRONOUS_IO_NONALERT","features":[5]},{"name":"FILE_TIMESTAMPS","features":[5]},{"name":"FILE_TRACKING_INFORMATION","features":[5,1]},{"name":"FILE_VC_CONTENT_INDEX_DISABLED","features":[5]},{"name":"FILE_VC_LOG_QUOTA_LIMIT","features":[5]},{"name":"FILE_VC_LOG_QUOTA_THRESHOLD","features":[5]},{"name":"FILE_VC_LOG_VOLUME_LIMIT","features":[5]},{"name":"FILE_VC_LOG_VOLUME_THRESHOLD","features":[5]},{"name":"FILE_VC_QUOTAS_INCOMPLETE","features":[5]},{"name":"FILE_VC_QUOTAS_REBUILDING","features":[5]},{"name":"FILE_VC_QUOTA_ENFORCE","features":[5]},{"name":"FILE_VC_QUOTA_MASK","features":[5]},{"name":"FILE_VC_QUOTA_NONE","features":[5]},{"name":"FILE_VC_QUOTA_TRACK","features":[5]},{"name":"FILE_VC_VALID_MASK","features":[5]},{"name":"FILE_VOLUME_NAME_INFORMATION","features":[5]},{"name":"FILE_WRITE_THROUGH","features":[5]},{"name":"FLAGS_DELAY_REASONS_BITMAP_SCANNED","features":[5]},{"name":"FLAGS_DELAY_REASONS_LOG_FILE_FULL","features":[5]},{"name":"FLAGS_END_OF_FILE_INFO_EX_EXTEND_PAGING","features":[5]},{"name":"FLAGS_END_OF_FILE_INFO_EX_NO_EXTRA_PAGING_EXTEND","features":[5]},{"name":"FLAGS_END_OF_FILE_INFO_EX_TIME_CONSTRAINED","features":[5]},{"name":"FREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[5,1]},{"name":"FSCTL_GHOST_FILE_EXTENTS_INPUT_BUFFER","features":[5]},{"name":"FSCTL_LMR_GET_LINK_TRACKING_INFORMATION","features":[5]},{"name":"FSCTL_LMR_SET_LINK_TRACKING_INFORMATION","features":[5]},{"name":"FSCTL_MAILSLOT_PEEK","features":[5]},{"name":"FSCTL_PIPE_ASSIGN_EVENT","features":[5]},{"name":"FSCTL_PIPE_CREATE_SYMLINK","features":[5]},{"name":"FSCTL_PIPE_DELETE_SYMLINK","features":[5]},{"name":"FSCTL_PIPE_DISABLE_IMPERSONATE","features":[5]},{"name":"FSCTL_PIPE_DISCONNECT","features":[5]},{"name":"FSCTL_PIPE_FLUSH","features":[5]},{"name":"FSCTL_PIPE_GET_CONNECTION_ATTRIBUTE","features":[5]},{"name":"FSCTL_PIPE_GET_HANDLE_ATTRIBUTE","features":[5]},{"name":"FSCTL_PIPE_GET_PIPE_ATTRIBUTE","features":[5]},{"name":"FSCTL_PIPE_IMPERSONATE","features":[5]},{"name":"FSCTL_PIPE_INTERNAL_READ","features":[5]},{"name":"FSCTL_PIPE_INTERNAL_READ_OVFLOW","features":[5]},{"name":"FSCTL_PIPE_INTERNAL_TRANSCEIVE","features":[5]},{"name":"FSCTL_PIPE_INTERNAL_WRITE","features":[5]},{"name":"FSCTL_PIPE_LISTEN","features":[5]},{"name":"FSCTL_PIPE_PEEK","features":[5]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS","features":[5]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS_V2","features":[5]},{"name":"FSCTL_PIPE_QUERY_EVENT","features":[5]},{"name":"FSCTL_PIPE_SET_CLIENT_PROCESS","features":[5]},{"name":"FSCTL_PIPE_SET_CONNECTION_ATTRIBUTE","features":[5]},{"name":"FSCTL_PIPE_SET_HANDLE_ATTRIBUTE","features":[5]},{"name":"FSCTL_PIPE_SET_PIPE_ATTRIBUTE","features":[5]},{"name":"FSCTL_PIPE_SILO_ARRIVAL","features":[5]},{"name":"FSCTL_PIPE_TRANSCEIVE","features":[5]},{"name":"FSCTL_PIPE_WAIT","features":[5]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_INPUT_RANGE","features":[5]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_OUTPUT","features":[5]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO_OUTPUT","features":[5]},{"name":"FSCTL_UNMAP_SPACE_INPUT_BUFFER","features":[5]},{"name":"FSCTL_UNMAP_SPACE_OUTPUT","features":[5]},{"name":"FSRTL_ADD_TC_CASE_SENSITIVE","features":[5]},{"name":"FSRTL_ADD_TC_KEY_BY_SHORT_NAME","features":[5]},{"name":"FSRTL_ADVANCED_FCB_HEADER","features":[2,5,1,7]},{"name":"FSRTL_ALLOCATE_ECPLIST_FLAG_CHARGE_QUOTA","features":[5]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_CHARGE_QUOTA","features":[5]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_NONPAGED_POOL","features":[5]},{"name":"FSRTL_AUXILIARY_BUFFER","features":[2,5]},{"name":"FSRTL_AUXILIARY_FLAG_DEALLOCATE","features":[5]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_HARD_ERROR","features":[5]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_LOG_ENTRY","features":[5]},{"name":"FSRTL_CHANGE_BACKING_TYPE","features":[5]},{"name":"FSRTL_COMMON_FCB_HEADER","features":[2,5,7]},{"name":"FSRTL_COMPARISON_RESULT","features":[5]},{"name":"FSRTL_DRIVER_BACKING_FLAG_USE_PAGE_FILE","features":[5]},{"name":"FSRTL_ECP_LOOKASIDE_FLAG_NONPAGED_POOL","features":[5]},{"name":"FSRTL_FAT_LEGAL","features":[5]},{"name":"FSRTL_FCB_HEADER_V0","features":[5]},{"name":"FSRTL_FCB_HEADER_V1","features":[5]},{"name":"FSRTL_FCB_HEADER_V2","features":[5]},{"name":"FSRTL_FCB_HEADER_V3","features":[5]},{"name":"FSRTL_FCB_HEADER_V4","features":[5]},{"name":"FSRTL_FIND_TC_CASE_SENSITIVE","features":[5]},{"name":"FSRTL_FLAG2_BYPASSIO_STREAM_PAUSED","features":[5]},{"name":"FSRTL_FLAG2_DO_MODIFIED_WRITE","features":[5]},{"name":"FSRTL_FLAG2_IS_PAGING_FILE","features":[5]},{"name":"FSRTL_FLAG2_PURGE_WHEN_MAPPED","features":[5]},{"name":"FSRTL_FLAG2_SUPPORTS_FILTER_CONTEXTS","features":[5]},{"name":"FSRTL_FLAG2_WRITABLE_USER_MAPPED_FILE","features":[5]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_EX","features":[5]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_SH","features":[5]},{"name":"FSRTL_FLAG_ADVANCED_HEADER","features":[5]},{"name":"FSRTL_FLAG_EOF_ADVANCE_ACTIVE","features":[5]},{"name":"FSRTL_FLAG_FILE_LENGTH_CHANGED","features":[5]},{"name":"FSRTL_FLAG_FILE_MODIFIED","features":[5]},{"name":"FSRTL_FLAG_LIMIT_MODIFIED_PAGES","features":[5]},{"name":"FSRTL_FLAG_USER_MAPPED_FILE","features":[5]},{"name":"FSRTL_HPFS_LEGAL","features":[5]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_1","features":[5]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_2","features":[5,1]},{"name":"FSRTL_NTFS_LEGAL","features":[5]},{"name":"FSRTL_OLE_LEGAL","features":[5]},{"name":"FSRTL_PER_FILEOBJECT_CONTEXT","features":[5,7]},{"name":"FSRTL_PER_FILE_CONTEXT","features":[2,5,7]},{"name":"FSRTL_PER_STREAM_CONTEXT","features":[2,5,7]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_INTEGRITY","features":[5]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_MUTUAL_AUTH","features":[5]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_PRIVACY","features":[5]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CONTAINER_AWARE","features":[5]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CSC_ENABLED","features":[5]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_DOMAIN_SVC_AWARE","features":[5]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_MAILSLOTS_SUPPORTED","features":[5]},{"name":"FSRTL_UNC_PROVIDER_REGISTRATION","features":[5]},{"name":"FSRTL_UNC_REGISTRATION_CURRENT_VERSION","features":[5]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0200","features":[5]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0201","features":[5]},{"name":"FSRTL_VIRTDISK_FULLY_ALLOCATED","features":[5]},{"name":"FSRTL_VIRTDISK_NO_DRIVE_LETTER","features":[5]},{"name":"FSRTL_VOLUME_BACKGROUND_FORMAT","features":[5]},{"name":"FSRTL_VOLUME_CHANGE_SIZE","features":[5]},{"name":"FSRTL_VOLUME_DISMOUNT","features":[5]},{"name":"FSRTL_VOLUME_DISMOUNT_FAILED","features":[5]},{"name":"FSRTL_VOLUME_FORCED_CLOSED","features":[5]},{"name":"FSRTL_VOLUME_INFO_MAKE_COMPAT","features":[5]},{"name":"FSRTL_VOLUME_LOCK","features":[5]},{"name":"FSRTL_VOLUME_LOCK_FAILED","features":[5]},{"name":"FSRTL_VOLUME_MOUNT","features":[5]},{"name":"FSRTL_VOLUME_NEEDS_CHKDSK","features":[5]},{"name":"FSRTL_VOLUME_PREPARING_EJECT","features":[5]},{"name":"FSRTL_VOLUME_UNLOCK","features":[5]},{"name":"FSRTL_VOLUME_WEARING_OUT","features":[5]},{"name":"FSRTL_VOLUME_WORM_NEAR_FULL","features":[5]},{"name":"FSRTL_WILD_CHARACTER","features":[5]},{"name":"FS_BPIO_INFO","features":[5]},{"name":"FS_BPIO_INPUT","features":[5,22]},{"name":"FS_FILTER_ACQUIRE_FOR_CC_FLUSH","features":[5]},{"name":"FS_FILTER_ACQUIRE_FOR_MOD_WRITE","features":[5]},{"name":"FS_FILTER_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[5]},{"name":"FS_FILTER_CALLBACKS","features":[2,5,3,1,4,6,7,8]},{"name":"FS_FILTER_CALLBACK_DATA","features":[2,5,3,1,4,6,7,8]},{"name":"FS_FILTER_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"FS_FILTER_QUERY_OPEN","features":[5]},{"name":"FS_FILTER_RELEASE_FOR_CC_FLUSH","features":[5]},{"name":"FS_FILTER_RELEASE_FOR_MOD_WRITE","features":[5]},{"name":"FS_FILTER_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_IMAGE_EXTENTS_ARE_NOT_RVA","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_ACCESS","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_WRITE","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_OUTPUT","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_ASYNC_PARALLEL_IO","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_DATA","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_IMAGE","features":[5]},{"name":"FS_FILTER_SECTION_SYNC_TYPE","features":[5]},{"name":"FS_FILTER_STREAM_FO_NOTIFICATION_TYPE","features":[5]},{"name":"FS_INFORMATION_CLASS","features":[5]},{"name":"FastIoIsNotPossible","features":[5]},{"name":"FastIoIsPossible","features":[5]},{"name":"FastIoIsQuestionable","features":[5]},{"name":"FileAccessInformation","features":[5]},{"name":"FileAlignmentInformation","features":[5]},{"name":"FileAllInformation","features":[5]},{"name":"FileAllocationInformation","features":[5]},{"name":"FileAlternateNameInformation","features":[5]},{"name":"FileAttributeTagInformation","features":[5]},{"name":"FileBasicInformation","features":[5]},{"name":"FileBothDirectoryInformation","features":[5]},{"name":"FileCaseSensitiveInformation","features":[5]},{"name":"FileCaseSensitiveInformationForceAccessCheck","features":[5]},{"name":"FileCompletionInformation","features":[5]},{"name":"FileCompressionInformation","features":[5]},{"name":"FileDesiredStorageClassInformation","features":[5]},{"name":"FileDirectoryInformation","features":[5]},{"name":"FileDispositionInformation","features":[5]},{"name":"FileDispositionInformationEx","features":[5]},{"name":"FileEaInformation","features":[5]},{"name":"FileEndOfFileInformation","features":[5]},{"name":"FileFsAttributeInformation","features":[5]},{"name":"FileFsControlInformation","features":[5]},{"name":"FileFsDataCopyInformation","features":[5]},{"name":"FileFsDeviceInformation","features":[5]},{"name":"FileFsDriverPathInformation","features":[5]},{"name":"FileFsFullSizeInformation","features":[5]},{"name":"FileFsFullSizeInformationEx","features":[5]},{"name":"FileFsLabelInformation","features":[5]},{"name":"FileFsMaximumInformation","features":[5]},{"name":"FileFsMetadataSizeInformation","features":[5]},{"name":"FileFsObjectIdInformation","features":[5]},{"name":"FileFsSectorSizeInformation","features":[5]},{"name":"FileFsSizeInformation","features":[5]},{"name":"FileFsVolumeFlagsInformation","features":[5]},{"name":"FileFsVolumeInformation","features":[5]},{"name":"FileFullDirectoryInformation","features":[5]},{"name":"FileFullEaInformation","features":[5]},{"name":"FileHardLinkFullIdInformation","features":[5]},{"name":"FileHardLinkInformation","features":[5]},{"name":"FileIdBothDirectoryInformation","features":[5]},{"name":"FileIdExtdBothDirectoryInformation","features":[5]},{"name":"FileIdExtdDirectoryInformation","features":[5]},{"name":"FileIdFullDirectoryInformation","features":[5]},{"name":"FileIdGlobalTxDirectoryInformation","features":[5]},{"name":"FileIdInformation","features":[5]},{"name":"FileInternalInformation","features":[5]},{"name":"FileIoCompletionNotificationInformation","features":[5]},{"name":"FileIoPriorityHintInformation","features":[5]},{"name":"FileIoStatusBlockRangeInformation","features":[5]},{"name":"FileIsRemoteDeviceInformation","features":[5]},{"name":"FileKnownFolderInformation","features":[5]},{"name":"FileLinkInformation","features":[5]},{"name":"FileLinkInformationBypassAccessCheck","features":[5]},{"name":"FileLinkInformationEx","features":[5]},{"name":"FileLinkInformationExBypassAccessCheck","features":[5]},{"name":"FileMailslotQueryInformation","features":[5]},{"name":"FileMailslotSetInformation","features":[5]},{"name":"FileMaximumInformation","features":[5]},{"name":"FileMemoryPartitionInformation","features":[5]},{"name":"FileModeInformation","features":[5]},{"name":"FileMoveClusterInformation","features":[5]},{"name":"FileNameInformation","features":[5]},{"name":"FileNamesInformation","features":[5]},{"name":"FileNetworkOpenInformation","features":[5]},{"name":"FileNetworkPhysicalNameInformation","features":[5]},{"name":"FileNormalizedNameInformation","features":[5]},{"name":"FileNumaNodeInformation","features":[5]},{"name":"FileObjectIdInformation","features":[5]},{"name":"FilePipeInformation","features":[5]},{"name":"FilePipeLocalInformation","features":[5]},{"name":"FilePipeRemoteInformation","features":[5]},{"name":"FilePositionInformation","features":[5]},{"name":"FileProcessIdsUsingFileInformation","features":[5]},{"name":"FileQuotaInformation","features":[5]},{"name":"FileRemoteProtocolInformation","features":[5]},{"name":"FileRenameInformation","features":[5]},{"name":"FileRenameInformationBypassAccessCheck","features":[5]},{"name":"FileRenameInformationEx","features":[5]},{"name":"FileRenameInformationExBypassAccessCheck","features":[5]},{"name":"FileReparsePointInformation","features":[5]},{"name":"FileReplaceCompletionInformation","features":[5]},{"name":"FileSfioReserveInformation","features":[5]},{"name":"FileSfioVolumeInformation","features":[5]},{"name":"FileShortNameInformation","features":[5]},{"name":"FileStandardInformation","features":[5]},{"name":"FileStandardLinkInformation","features":[5]},{"name":"FileStatInformation","features":[5]},{"name":"FileStatLxInformation","features":[5]},{"name":"FileStorageReserveIdInformation","features":[5]},{"name":"FileStreamInformation","features":[5]},{"name":"FileTrackingInformation","features":[5]},{"name":"FileUnusedInformation","features":[5]},{"name":"FileValidDataLengthInformation","features":[5]},{"name":"FileVolumeNameInformation","features":[5]},{"name":"FsRtlAcknowledgeEcp","features":[5]},{"name":"FsRtlAcquireFileExclusive","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlAddBaseMcbEntry","features":[5,1]},{"name":"FsRtlAddBaseMcbEntryEx","features":[5,1]},{"name":"FsRtlAddLargeMcbEntry","features":[2,5,1,7]},{"name":"FsRtlAddMcbEntry","features":[2,5,1,7]},{"name":"FsRtlAddToTunnelCache","features":[2,5,1,7]},{"name":"FsRtlAddToTunnelCacheEx","features":[2,5,1,7]},{"name":"FsRtlAllocateAePushLock","features":[2,5]},{"name":"FsRtlAllocateExtraCreateParameter","features":[5,1]},{"name":"FsRtlAllocateExtraCreateParameterFromLookasideList","features":[5,1]},{"name":"FsRtlAllocateExtraCreateParameterList","features":[2,5,1]},{"name":"FsRtlAllocateFileLock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlAllocateResource","features":[2,5,7]},{"name":"FsRtlAreNamesEqual","features":[5,1]},{"name":"FsRtlAreThereCurrentOrInProgressFileLocks","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlAreThereWaitingFileLocks","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlAreVolumeStartupApplicationsComplete","features":[5,1]},{"name":"FsRtlBalanceReads","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCancellableWaitForMultipleObjects","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCancellableWaitForSingleObject","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlChangeBackingFileObject","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCheckLockForOplockRequest","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCheckLockForReadAccess","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCheckLockForWriteAccess","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCheckOplock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCheckOplockEx","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCheckOplockEx2","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCheckUpperOplock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCopyRead","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCopyWrite","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCreateSectionForDataScan","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlCurrentBatchOplock","features":[5,1]},{"name":"FsRtlCurrentOplock","features":[5,1]},{"name":"FsRtlCurrentOplockH","features":[5,1]},{"name":"FsRtlDeleteExtraCreateParameterLookasideList","features":[5]},{"name":"FsRtlDeleteKeyFromTunnelCache","features":[2,5,1,7]},{"name":"FsRtlDeleteTunnelCache","features":[2,5,1,7]},{"name":"FsRtlDeregisterUncProvider","features":[5,1]},{"name":"FsRtlDismountComplete","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlDissectDbcs","features":[5,7]},{"name":"FsRtlDissectName","features":[5,1]},{"name":"FsRtlDoesDbcsContainWildCards","features":[5,1,7]},{"name":"FsRtlDoesNameContainWildCards","features":[5,1]},{"name":"FsRtlFastCheckLockForRead","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlFastCheckLockForWrite","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlFastUnlockAll","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlFastUnlockAllByKey","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlFastUnlockSingle","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlFindExtraCreateParameter","features":[2,5,1]},{"name":"FsRtlFindInTunnelCache","features":[2,5,1,7]},{"name":"FsRtlFindInTunnelCacheEx","features":[2,5,1,7]},{"name":"FsRtlFreeAePushLock","features":[5]},{"name":"FsRtlFreeExtraCreateParameter","features":[5]},{"name":"FsRtlFreeExtraCreateParameterList","features":[2,5]},{"name":"FsRtlFreeFileLock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlGetCurrentProcessLoaderList","features":[5,7]},{"name":"FsRtlGetEcpListFromIrp","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlGetFileSize","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlGetNextBaseMcbEntry","features":[5,1]},{"name":"FsRtlGetNextExtraCreateParameter","features":[2,5,1]},{"name":"FsRtlGetNextFileLock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlGetNextLargeMcbEntry","features":[2,5,1,7]},{"name":"FsRtlGetNextMcbEntry","features":[2,5,1,7]},{"name":"FsRtlGetSectorSizeInformation","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlGetSupportedFeatures","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlGetVirtualDiskNestingLevel","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlIncrementCcFastMdlReadWait","features":[5]},{"name":"FsRtlIncrementCcFastReadNoWait","features":[5]},{"name":"FsRtlIncrementCcFastReadNotPossible","features":[5]},{"name":"FsRtlIncrementCcFastReadResourceMiss","features":[5]},{"name":"FsRtlIncrementCcFastReadWait","features":[5]},{"name":"FsRtlInitExtraCreateParameterLookasideList","features":[5]},{"name":"FsRtlInitializeBaseMcb","features":[2,5]},{"name":"FsRtlInitializeBaseMcbEx","features":[2,5,1]},{"name":"FsRtlInitializeExtraCreateParameter","features":[2,5]},{"name":"FsRtlInitializeExtraCreateParameterList","features":[2,5,1]},{"name":"FsRtlInitializeFileLock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlInitializeLargeMcb","features":[2,5,1,7]},{"name":"FsRtlInitializeMcb","features":[2,5,1,7]},{"name":"FsRtlInitializeOplock","features":[5]},{"name":"FsRtlInitializeTunnelCache","features":[2,5,1,7]},{"name":"FsRtlInsertExtraCreateParameter","features":[2,5,1]},{"name":"FsRtlInsertPerFileContext","features":[2,5,1,7]},{"name":"FsRtlInsertPerFileObjectContext","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlInsertPerStreamContext","features":[2,5,1,7]},{"name":"FsRtlIs32BitProcess","features":[2,5,1]},{"name":"FsRtlIsDaxVolume","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlIsDbcsInExpression","features":[5,1,7]},{"name":"FsRtlIsEcpAcknowledged","features":[5,1]},{"name":"FsRtlIsEcpFromUserMode","features":[5,1]},{"name":"FsRtlIsExtentDangling","features":[5]},{"name":"FsRtlIsFatDbcsLegal","features":[5,1,7]},{"name":"FsRtlIsHpfsDbcsLegal","features":[5,1,7]},{"name":"FsRtlIsMobileOS","features":[5,1]},{"name":"FsRtlIsNameInExpression","features":[5,1]},{"name":"FsRtlIsNameInUnUpcasedExpression","features":[5,1]},{"name":"FsRtlIsNonEmptyDirectoryReparsePointAllowed","features":[5,1]},{"name":"FsRtlIsNtstatusExpected","features":[5,1]},{"name":"FsRtlIsPagingFile","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlIsSystemPagingFile","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlIssueDeviceIoControl","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlKernelFsControlFile","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlLogCcFlushError","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlLookupBaseMcbEntry","features":[5,1]},{"name":"FsRtlLookupLargeMcbEntry","features":[2,5,1,7]},{"name":"FsRtlLookupLastBaseMcbEntry","features":[5,1]},{"name":"FsRtlLookupLastBaseMcbEntryAndIndex","features":[5,1]},{"name":"FsRtlLookupLastLargeMcbEntry","features":[2,5,1,7]},{"name":"FsRtlLookupLastLargeMcbEntryAndIndex","features":[2,5,1,7]},{"name":"FsRtlLookupLastMcbEntry","features":[2,5,1,7]},{"name":"FsRtlLookupMcbEntry","features":[2,5,1,7]},{"name":"FsRtlLookupPerFileContext","features":[2,5,7]},{"name":"FsRtlLookupPerFileObjectContext","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlLookupPerStreamContextInternal","features":[2,5,1,7]},{"name":"FsRtlMdlReadCompleteDev","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlMdlReadDev","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlMdlReadEx","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlMdlWriteCompleteDev","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlMupGetProviderIdFromName","features":[5,1]},{"name":"FsRtlMupGetProviderInfoFromFileObject","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlNormalizeNtstatus","features":[5,1]},{"name":"FsRtlNotifyCleanup","features":[2,5,7]},{"name":"FsRtlNotifyCleanupAll","features":[2,5,7]},{"name":"FsRtlNotifyFilterChangeDirectory","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlNotifyFilterReportChange","features":[2,5,7]},{"name":"FsRtlNotifyFullChangeDirectory","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlNotifyFullReportChange","features":[2,5,7]},{"name":"FsRtlNotifyInitializeSync","features":[2,5]},{"name":"FsRtlNotifyUninitializeSync","features":[2,5]},{"name":"FsRtlNotifyVolumeEvent","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlNotifyVolumeEventEx","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlNumberOfRunsInBaseMcb","features":[5]},{"name":"FsRtlNumberOfRunsInLargeMcb","features":[2,5,1,7]},{"name":"FsRtlNumberOfRunsInMcb","features":[2,5,1,7]},{"name":"FsRtlOplockBreakH","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlOplockBreakH2","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlOplockBreakToNone","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlOplockBreakToNoneEx","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlOplockFsctrl","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlOplockFsctrlEx","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlOplockGetAnyBreakOwnerProcess","features":[2,5]},{"name":"FsRtlOplockIsFastIoPossible","features":[5,1]},{"name":"FsRtlOplockIsSharedRequest","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlOplockKeysEqual","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlPostPagingFileStackOverflow","features":[2,5,1,7]},{"name":"FsRtlPostStackOverflow","features":[2,5,1,7]},{"name":"FsRtlPrepareMdlWriteDev","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlPrepareMdlWriteEx","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlPrepareToReuseEcp","features":[5]},{"name":"FsRtlPrivateLock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlProcessFileLock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlQueryCachedVdl","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlQueryInformationFile","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlQueryKernelEaFile","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlQueryMaximumVirtualDiskNestingLevel","features":[5]},{"name":"FsRtlRegisterFileSystemFilterCallbacks","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlRegisterUncProvider","features":[5,1]},{"name":"FsRtlRegisterUncProviderEx","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlRegisterUncProviderEx2","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlReleaseFile","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlRemoveBaseMcbEntry","features":[5,1]},{"name":"FsRtlRemoveDotsFromPath","features":[5,1]},{"name":"FsRtlRemoveExtraCreateParameter","features":[2,5,1]},{"name":"FsRtlRemoveLargeMcbEntry","features":[2,5,1,7]},{"name":"FsRtlRemoveMcbEntry","features":[2,5,1,7]},{"name":"FsRtlRemovePerFileContext","features":[2,5,7]},{"name":"FsRtlRemovePerFileObjectContext","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlRemovePerStreamContext","features":[2,5,1,7]},{"name":"FsRtlResetBaseMcb","features":[5]},{"name":"FsRtlResetLargeMcb","features":[2,5,1,7]},{"name":"FsRtlSetDriverBacking","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlSetEcpListIntoIrp","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlSetKernelEaFile","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlSplitBaseMcb","features":[5,1]},{"name":"FsRtlSplitLargeMcb","features":[2,5,1,7]},{"name":"FsRtlTeardownPerFileContexts","features":[5]},{"name":"FsRtlTeardownPerStreamContexts","features":[2,5,1,7]},{"name":"FsRtlTruncateBaseMcb","features":[5]},{"name":"FsRtlTruncateLargeMcb","features":[2,5,1,7]},{"name":"FsRtlTruncateMcb","features":[2,5,1,7]},{"name":"FsRtlUninitializeBaseMcb","features":[5]},{"name":"FsRtlUninitializeFileLock","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlUninitializeLargeMcb","features":[2,5,1,7]},{"name":"FsRtlUninitializeMcb","features":[2,5,1,7]},{"name":"FsRtlUninitializeOplock","features":[5]},{"name":"FsRtlUpdateDiskCounters","features":[5]},{"name":"FsRtlUpperOplockFsctrl","features":[2,5,3,1,4,6,7,8]},{"name":"FsRtlValidateReparsePointBuffer","features":[5,1]},{"name":"FsRtlVolumeDeviceToCorrelationId","features":[2,5,3,1,4,6,7,8]},{"name":"GCR_ALLOW_LM","features":[5]},{"name":"GCR_ALLOW_NO_TARGET","features":[5]},{"name":"GCR_ALLOW_NTLM","features":[5]},{"name":"GCR_MACHINE_CREDENTIAL","features":[5]},{"name":"GCR_NTLM3_PARMS","features":[5]},{"name":"GCR_TARGET_INFO","features":[5]},{"name":"GCR_USE_OEM_SET","features":[5]},{"name":"GCR_USE_OWF_PASSWORD","features":[5]},{"name":"GCR_VSM_PROTECTED_PASSWORD","features":[5]},{"name":"GENERATE_CLIENT_CHALLENGE","features":[5]},{"name":"GENERATE_NAME_CONTEXT","features":[5,1]},{"name":"GHOSTED_FILE_EXTENT","features":[5]},{"name":"GUID_ECP_ATOMIC_CREATE","features":[5]},{"name":"GUID_ECP_CLOUDFILES_ATTRIBUTION","features":[5]},{"name":"GUID_ECP_CREATE_REDIRECTION","features":[5]},{"name":"GUID_ECP_CSV_DOWN_LEVEL_OPEN","features":[5]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION","features":[5]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[5]},{"name":"GUID_ECP_CSV_SET_HANDLE_PROPERTIES","features":[5]},{"name":"GUID_ECP_DUAL_OPLOCK_KEY","features":[5]},{"name":"GUID_ECP_IO_DEVICE_HINT","features":[5]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE","features":[5]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE_VERSION","features":[5]},{"name":"GUID_ECP_NETWORK_OPEN_CONTEXT","features":[5]},{"name":"GUID_ECP_NFS_OPEN","features":[5]},{"name":"GUID_ECP_OPEN_PARAMETERS","features":[5]},{"name":"GUID_ECP_OPLOCK_KEY","features":[5]},{"name":"GUID_ECP_PREFETCH_OPEN","features":[5]},{"name":"GUID_ECP_QUERY_ON_CREATE","features":[5]},{"name":"GUID_ECP_RKF_BYPASS","features":[5]},{"name":"GUID_ECP_SRV_OPEN","features":[5]},{"name":"GetSecurityUserInfo","features":[5,1,23]},{"name":"GreaterThan","features":[5]},{"name":"HEAP_CLASS_0","features":[5]},{"name":"HEAP_CLASS_1","features":[5]},{"name":"HEAP_CLASS_2","features":[5]},{"name":"HEAP_CLASS_3","features":[5]},{"name":"HEAP_CLASS_4","features":[5]},{"name":"HEAP_CLASS_5","features":[5]},{"name":"HEAP_CLASS_6","features":[5]},{"name":"HEAP_CLASS_7","features":[5]},{"name":"HEAP_CLASS_8","features":[5]},{"name":"HEAP_CLASS_MASK","features":[5]},{"name":"HEAP_CREATE_ALIGN_16","features":[5]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[5]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[5]},{"name":"HEAP_CREATE_HARDENED","features":[5]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[5]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[5]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[5]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[5]},{"name":"HEAP_GLOBAL_TAG","features":[5]},{"name":"HEAP_GROWABLE","features":[5]},{"name":"HEAP_MAXIMUM_TAG","features":[5]},{"name":"HEAP_MEMORY_INFO_CLASS","features":[5]},{"name":"HEAP_NO_SERIALIZE","features":[5]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[5]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[5]},{"name":"HEAP_SETTABLE_USER_FLAG1","features":[5]},{"name":"HEAP_SETTABLE_USER_FLAG2","features":[5]},{"name":"HEAP_SETTABLE_USER_FLAG3","features":[5]},{"name":"HEAP_SETTABLE_USER_FLAGS","features":[5]},{"name":"HEAP_SETTABLE_USER_VALUE","features":[5]},{"name":"HEAP_TAG_SHIFT","features":[5]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[5]},{"name":"HEAP_ZERO_MEMORY","features":[5]},{"name":"HeapMemoryBasicInformation","features":[5]},{"name":"INVALID_PROCESSOR_INDEX","features":[5]},{"name":"IOCTL_LMR_ARE_FILE_OBJECTS_ON_SAME_SERVER","features":[5]},{"name":"IOCTL_REDIR_QUERY_PATH","features":[5]},{"name":"IOCTL_REDIR_QUERY_PATH_EX","features":[5]},{"name":"IOCTL_VOLSNAP_FLUSH_AND_HOLD_WRITES","features":[5]},{"name":"IO_CD_ROM_INCREMENT","features":[5]},{"name":"IO_CREATE_STREAM_FILE_LITE","features":[5]},{"name":"IO_CREATE_STREAM_FILE_OPTIONS","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CREATE_STREAM_FILE_RAISE_ON_ERROR","features":[5]},{"name":"IO_DEVICE_HINT_ECP_CONTEXT","features":[2,5,3,1,4,6,7,8]},{"name":"IO_DISK_INCREMENT","features":[5]},{"name":"IO_FILE_OBJECT_NON_PAGED_POOL_CHARGE","features":[5]},{"name":"IO_FILE_OBJECT_PAGED_POOL_CHARGE","features":[5]},{"name":"IO_IGNORE_READONLY_ATTRIBUTE","features":[5]},{"name":"IO_MAILSLOT_INCREMENT","features":[5]},{"name":"IO_MM_PAGING_FILE","features":[5]},{"name":"IO_NAMED_PIPE_INCREMENT","features":[5]},{"name":"IO_NETWORK_INCREMENT","features":[5]},{"name":"IO_NO_INCREMENT","features":[5]},{"name":"IO_OPEN_PAGING_FILE","features":[5]},{"name":"IO_OPEN_TARGET_DIRECTORY","features":[5]},{"name":"IO_PRIORITY_INFO","features":[2,5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_0","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_1","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_2","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_3","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_4","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_5","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_6","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_7","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_8","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_9","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_A","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_B","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_C","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_D","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_E","features":[5]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_F","features":[5]},{"name":"IO_REPARSE_TAG_ACTIVISION_HSM","features":[5]},{"name":"IO_REPARSE_TAG_ADA_HSM","features":[5]},{"name":"IO_REPARSE_TAG_ADOBE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_ALERTBOOT","features":[5]},{"name":"IO_REPARSE_TAG_ALTIRIS_HSM","features":[5]},{"name":"IO_REPARSE_TAG_APPXSTRM","features":[5]},{"name":"IO_REPARSE_TAG_ARCO_BACKUP","features":[5]},{"name":"IO_REPARSE_TAG_ARKIVIO","features":[5]},{"name":"IO_REPARSE_TAG_AURISTOR_FS","features":[5]},{"name":"IO_REPARSE_TAG_AUTN_HSM","features":[5]},{"name":"IO_REPARSE_TAG_BRIDGEHEAD_HSM","features":[5]},{"name":"IO_REPARSE_TAG_C2CSYSTEMS_HSM","features":[5]},{"name":"IO_REPARSE_TAG_CARINGO_HSM","features":[5]},{"name":"IO_REPARSE_TAG_CARROLL_HSM","features":[5]},{"name":"IO_REPARSE_TAG_CITRIX_PM","features":[5]},{"name":"IO_REPARSE_TAG_COMMVAULT","features":[5]},{"name":"IO_REPARSE_TAG_COMMVAULT_HSM","features":[5]},{"name":"IO_REPARSE_TAG_COMTRADE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_CTERA_HSM","features":[5]},{"name":"IO_REPARSE_TAG_DATAFIRST_HSM","features":[5]},{"name":"IO_REPARSE_TAG_DATAGLOBAL_HSM","features":[5]},{"name":"IO_REPARSE_TAG_DATASTOR_SIS","features":[5]},{"name":"IO_REPARSE_TAG_DFM","features":[5]},{"name":"IO_REPARSE_TAG_DOR_HSM","features":[5]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_SIS","features":[5]},{"name":"IO_REPARSE_TAG_DRIVE_EXTENDER","features":[5]},{"name":"IO_REPARSE_TAG_DROPBOX_HSM","features":[5]},{"name":"IO_REPARSE_TAG_EASEFILTER_HSM","features":[5]},{"name":"IO_REPARSE_TAG_EASEVAULT_HSM","features":[5]},{"name":"IO_REPARSE_TAG_EDSI_HSM","features":[5]},{"name":"IO_REPARSE_TAG_ELTAN_HSM","features":[5]},{"name":"IO_REPARSE_TAG_EMC_HSM","features":[5]},{"name":"IO_REPARSE_TAG_ENIGMA_HSM","features":[5]},{"name":"IO_REPARSE_TAG_FILTER_MANAGER","features":[5]},{"name":"IO_REPARSE_TAG_GLOBAL360_HSM","features":[5]},{"name":"IO_REPARSE_TAG_GOOGLE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_GRAU_DATASTORAGE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_HDS_HCP_HSM","features":[5]},{"name":"IO_REPARSE_TAG_HDS_HSM","features":[5]},{"name":"IO_REPARSE_TAG_HERMES_HSM","features":[5]},{"name":"IO_REPARSE_TAG_HP_BACKUP","features":[5]},{"name":"IO_REPARSE_TAG_HP_DATA_PROTECT","features":[5]},{"name":"IO_REPARSE_TAG_HP_HSM","features":[5]},{"name":"IO_REPARSE_TAG_HSAG_HSM","features":[5]},{"name":"IO_REPARSE_TAG_HUBSTOR_HSM","features":[5]},{"name":"IO_REPARSE_TAG_IFSTEST_CONGRUENT","features":[5]},{"name":"IO_REPARSE_TAG_IIS_CACHE","features":[5]},{"name":"IO_REPARSE_TAG_IMANAGE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_INTERCOPE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_ITSTATION","features":[5]},{"name":"IO_REPARSE_TAG_KOM_NETWORKS_HSM","features":[5]},{"name":"IO_REPARSE_TAG_LX_BLK","features":[5]},{"name":"IO_REPARSE_TAG_LX_CHR","features":[5]},{"name":"IO_REPARSE_TAG_LX_FIFO","features":[5]},{"name":"IO_REPARSE_TAG_LX_SYMLINK","features":[5]},{"name":"IO_REPARSE_TAG_MAGINATICS_RDR","features":[5]},{"name":"IO_REPARSE_TAG_MAXISCALE_HSM","features":[5]},{"name":"IO_REPARSE_TAG_MEMORY_TECH_HSM","features":[5]},{"name":"IO_REPARSE_TAG_MIMOSA_HSM","features":[5]},{"name":"IO_REPARSE_TAG_MOONWALK_HSM","features":[5]},{"name":"IO_REPARSE_TAG_MTALOS","features":[5]},{"name":"IO_REPARSE_TAG_NEUSHIELD","features":[5]},{"name":"IO_REPARSE_TAG_NEXSAN_HSM","features":[5]},{"name":"IO_REPARSE_TAG_NIPPON_HSM","features":[5]},{"name":"IO_REPARSE_TAG_NVIDIA_UNIONFS","features":[5]},{"name":"IO_REPARSE_TAG_OPENAFS_DFS","features":[5]},{"name":"IO_REPARSE_TAG_OSR_SAMPLE","features":[5]},{"name":"IO_REPARSE_TAG_OVERTONE","features":[5]},{"name":"IO_REPARSE_TAG_POINTSOFT_HSM","features":[5]},{"name":"IO_REPARSE_TAG_QI_TECH_HSM","features":[5]},{"name":"IO_REPARSE_TAG_QUADDRA_HSM","features":[5]},{"name":"IO_REPARSE_TAG_QUEST_HSM","features":[5]},{"name":"IO_REPARSE_TAG_REDSTOR_HSM","features":[5]},{"name":"IO_REPARSE_TAG_RIVERBED_HSM","features":[5]},{"name":"IO_REPARSE_TAG_SER_HSM","features":[5]},{"name":"IO_REPARSE_TAG_SHX_BACKUP","features":[5]},{"name":"IO_REPARSE_TAG_SOLUTIONSOFT","features":[5]},{"name":"IO_REPARSE_TAG_SONY_HSM","features":[5]},{"name":"IO_REPARSE_TAG_SPHARSOFT","features":[5]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM","features":[5]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM2","features":[5]},{"name":"IO_REPARSE_TAG_TSINGHUA_UNIVERSITY_RESEARCH","features":[5]},{"name":"IO_REPARSE_TAG_UTIXO_HSM","features":[5]},{"name":"IO_REPARSE_TAG_VALID_VALUES","features":[5]},{"name":"IO_REPARSE_TAG_VMWARE_PM","features":[5]},{"name":"IO_REPARSE_TAG_WATERFORD","features":[5]},{"name":"IO_REPARSE_TAG_WISDATA_HSM","features":[5]},{"name":"IO_REPARSE_TAG_ZLTI_HSM","features":[5]},{"name":"IO_STOP_ON_SYMLINK","features":[5]},{"name":"IO_STOP_ON_SYMLINK_FILTER_ECP_v0","features":[5]},{"name":"IoAcquireVpbSpinLock","features":[5]},{"name":"IoApplyPriorityInfoThread","features":[2,5,1]},{"name":"IoCheckDesiredAccess","features":[5,1]},{"name":"IoCheckEaBufferValidity","features":[5,1]},{"name":"IoCheckFunctionAccess","features":[5,1]},{"name":"IoCheckQuerySetFileInformation","features":[5,1]},{"name":"IoCheckQuerySetVolumeInformation","features":[5,1]},{"name":"IoCheckQuotaBufferValidity","features":[5,1,4]},{"name":"IoClearFsTrackOffsetState","features":[2,5,3,1,4,6,7,8]},{"name":"IoCreateStreamFileObject","features":[2,5,3,1,4,6,7,8]},{"name":"IoCreateStreamFileObjectEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoCreateStreamFileObjectEx2","features":[2,5,3,1,4,6,7,8]},{"name":"IoCreateStreamFileObjectLite","features":[2,5,3,1,4,6,7,8]},{"name":"IoEnumerateDeviceObjectList","features":[2,5,3,1,4,6,7,8]},{"name":"IoEnumerateRegisteredFiltersList","features":[2,5,3,1,4,6,7,8]},{"name":"IoFastQueryNetworkAttributes","features":[2,5,1,6]},{"name":"IoGetAttachedDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetBaseFileSystemDeviceObject","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDeviceAttachmentBaseRef","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDeviceToVerify","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDiskDeviceObject","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetFsTrackOffsetState","features":[2,5,3,1,4,6,22,7,8]},{"name":"IoGetLowerDeviceObject","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetOplockKeyContext","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetOplockKeyContextEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetRequestorProcess","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetRequestorProcessId","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetRequestorSessionId","features":[2,5,3,1,4,6,7,8]},{"name":"IoIrpHasFsTrackOffsetExtensionType","features":[2,5,3,1,4,6,7,8]},{"name":"IoIsOperationSynchronous","features":[2,5,3,1,4,6,7,8]},{"name":"IoIsSystemThread","features":[2,5,1]},{"name":"IoIsValidNameGraftingBuffer","features":[2,5,3,1,4,6,7,8]},{"name":"IoPageRead","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueryFileDosDeviceName","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueryFileInformation","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueryVolumeInformation","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueueThreadIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterFileSystem","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterFsRegistrationChange","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterFsRegistrationChangeMountAware","features":[2,5,3,1,4,6,7,8]},{"name":"IoReleaseVpbSpinLock","features":[5]},{"name":"IoReplaceFileObjectName","features":[2,5,3,1,4,6,7,8]},{"name":"IoRequestDeviceRemovalForReset","features":[2,5,3,1,4,6,7,8]},{"name":"IoRetrievePriorityInfo","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetDeviceToVerify","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetFsTrackOffsetState","features":[2,5,3,1,4,6,22,7,8]},{"name":"IoSetInformation","features":[2,5,3,1,4,6,7,8]},{"name":"IoSynchronousPageWrite","features":[2,5,3,1,4,6,7,8]},{"name":"IoThreadToProcess","features":[2,5]},{"name":"IoUnregisterFileSystem","features":[2,5,3,1,4,6,7,8]},{"name":"IoUnregisterFsRegistrationChange","features":[2,5,3,1,4,6,7,8]},{"name":"IoVerifyVolume","features":[2,5,3,1,4,6,7,8]},{"name":"KAPC_STATE","features":[5,1,7]},{"name":"KeAcquireQueuedSpinLock","features":[2,5]},{"name":"KeAcquireSpinLockRaiseToSynch","features":[5]},{"name":"KeAttachProcess","features":[2,5]},{"name":"KeDetachProcess","features":[5]},{"name":"KeInitializeMutant","features":[2,5,1,7]},{"name":"KeInitializeQueue","features":[2,5,1,7]},{"name":"KeInsertHeadQueue","features":[2,5,1,7]},{"name":"KeInsertQueue","features":[2,5,1,7]},{"name":"KeReadStateMutant","features":[2,5,1,7]},{"name":"KeReadStateQueue","features":[2,5,1,7]},{"name":"KeReleaseMutant","features":[2,5,1,7]},{"name":"KeReleaseQueuedSpinLock","features":[2,5]},{"name":"KeRemoveQueue","features":[2,5,1,7]},{"name":"KeRemoveQueueEx","features":[2,5,1,7]},{"name":"KeRundownQueue","features":[2,5,1,7]},{"name":"KeSetIdealProcessorThread","features":[2,5]},{"name":"KeSetKernelStackSwapEnable","features":[5,1]},{"name":"KeStackAttachProcess","features":[2,5,1,7]},{"name":"KeTryToAcquireQueuedSpinLock","features":[2,5]},{"name":"KeUnstackDetachProcess","features":[5,1,7]},{"name":"KnownFolderDesktop","features":[5]},{"name":"KnownFolderDocuments","features":[5]},{"name":"KnownFolderDownloads","features":[5]},{"name":"KnownFolderMax","features":[5]},{"name":"KnownFolderMusic","features":[5]},{"name":"KnownFolderNone","features":[5]},{"name":"KnownFolderOther","features":[5]},{"name":"KnownFolderPictures","features":[5]},{"name":"KnownFolderVideos","features":[5]},{"name":"LARGE_MCB","features":[2,5,1,7]},{"name":"LCN_CHECKSUM_VALID","features":[5]},{"name":"LCN_WEAK_REFERENCE_BUFFER","features":[5]},{"name":"LCN_WEAK_REFERENCE_CREATE_INPUT_BUFFER","features":[5]},{"name":"LCN_WEAK_REFERENCE_VALID","features":[5]},{"name":"LINK_TRACKING_INFORMATION","features":[5]},{"name":"LINK_TRACKING_INFORMATION_TYPE","features":[5]},{"name":"LX_FILE_CASE_SENSITIVE_DIR","features":[5]},{"name":"LX_FILE_METADATA_DEVICE_ID_EA_NAME","features":[5]},{"name":"LX_FILE_METADATA_GID_EA_NAME","features":[5]},{"name":"LX_FILE_METADATA_HAS_DEVICE_ID","features":[5]},{"name":"LX_FILE_METADATA_HAS_GID","features":[5]},{"name":"LX_FILE_METADATA_HAS_MODE","features":[5]},{"name":"LX_FILE_METADATA_HAS_UID","features":[5]},{"name":"LX_FILE_METADATA_MODE_EA_NAME","features":[5]},{"name":"LX_FILE_METADATA_UID_EA_NAME","features":[5]},{"name":"LessThan","features":[5]},{"name":"MAP_DISABLE_PAGEFAULT_CLUSTERING","features":[5]},{"name":"MAP_HIGH_PRIORITY","features":[5]},{"name":"MAP_NO_READ","features":[5]},{"name":"MAP_WAIT","features":[5]},{"name":"MAXIMUM_LEADBYTES","features":[5]},{"name":"MAX_UNICODE_STACK_BUFFER_LENGTH","features":[5]},{"name":"MCB","features":[2,5,1,7]},{"name":"MCB_FLAG_RAISE_ON_ALLOCATION_FAILURE","features":[5]},{"name":"MEMORY_INFORMATION_CLASS","features":[5]},{"name":"MEMORY_RANGE_ENTRY","features":[5]},{"name":"MFT_ENUM_DATA","features":[5]},{"name":"MMFLUSH_TYPE","features":[5]},{"name":"MM_FORCE_CLOSED_DATA","features":[5]},{"name":"MM_FORCE_CLOSED_IMAGE","features":[5]},{"name":"MM_FORCE_CLOSED_LATER_OK","features":[5]},{"name":"MM_IS_FILE_SECTION_ACTIVE_DATA","features":[5]},{"name":"MM_IS_FILE_SECTION_ACTIVE_IMAGE","features":[5]},{"name":"MM_IS_FILE_SECTION_ACTIVE_USER","features":[5]},{"name":"MM_PREFETCH_FLAGS","features":[5]},{"name":"MSV1_0_AVID","features":[5]},{"name":"MSV1_0_ENUMUSERS_REQUEST","features":[5,23]},{"name":"MSV1_0_ENUMUSERS_RESPONSE","features":[5,1,23]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST","features":[5,1,23]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST_V1","features":[5,1,23]},{"name":"MSV1_0_GETCHALLENRESP_RESPONSE","features":[5,1,23,7]},{"name":"MSV1_0_GETUSERINFO_REQUEST","features":[5,1,23]},{"name":"MSV1_0_GETUSERINFO_RESPONSE","features":[5,1,23]},{"name":"MSV1_0_LM20_CHALLENGE_REQUEST","features":[5,23]},{"name":"MSV1_0_LM20_CHALLENGE_RESPONSE","features":[5,23]},{"name":"MakeSignature","features":[5]},{"name":"MapSecurityError","features":[5,1]},{"name":"MemoryBasicInformation","features":[5]},{"name":"MemoryType64KPage","features":[5]},{"name":"MemoryTypeCustom","features":[5]},{"name":"MemoryTypeHugePage","features":[5]},{"name":"MemoryTypeLargePage","features":[5]},{"name":"MemoryTypeMax","features":[5]},{"name":"MemoryTypeNonPaged","features":[5]},{"name":"MemoryTypePaged","features":[5]},{"name":"MmCanFileBeTruncated","features":[2,5,1]},{"name":"MmDoesFileHaveUserWritableReferences","features":[2,5]},{"name":"MmFlushForDelete","features":[5]},{"name":"MmFlushForWrite","features":[5]},{"name":"MmFlushImageSection","features":[2,5,1]},{"name":"MmForceSectionClosed","features":[2,5,1]},{"name":"MmForceSectionClosedEx","features":[2,5,1]},{"name":"MmGetMaximumFileSectionSize","features":[5]},{"name":"MmIsFileSectionActive","features":[2,5,1]},{"name":"MmIsRecursiveIoFault","features":[5,1]},{"name":"MmMdlPagesAreZero","features":[2,5]},{"name":"MmPrefetchPages","features":[2,5,3,1,4,21,6,7,8]},{"name":"MmSetAddressRangeModified","features":[5,1]},{"name":"MsvAvChannelBindings","features":[5]},{"name":"MsvAvDnsComputerName","features":[5]},{"name":"MsvAvDnsDomainName","features":[5]},{"name":"MsvAvDnsTreeName","features":[5]},{"name":"MsvAvEOL","features":[5]},{"name":"MsvAvFlags","features":[5]},{"name":"MsvAvNbComputerName","features":[5]},{"name":"MsvAvNbDomainName","features":[5]},{"name":"MsvAvRestrictions","features":[5]},{"name":"MsvAvTargetName","features":[5]},{"name":"MsvAvTimestamp","features":[5]},{"name":"NETWORK_APP_INSTANCE_ECP_CONTEXT","features":[5]},{"name":"NETWORK_APP_INSTANCE_VERSION_ECP_CONTEXT","features":[5]},{"name":"NETWORK_OPEN_ECP_CONTEXT","features":[5]},{"name":"NETWORK_OPEN_ECP_CONTEXT_V0","features":[5]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_COLLAPSING","features":[5]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_DURABILITY","features":[5]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_OPLOCKS","features":[5]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_BUFFERED_SYNCHRONOUS_IO_HACK","features":[5]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_MAX_EOF_HACK","features":[5]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_REQ_MUTUAL_AUTH","features":[5]},{"name":"NETWORK_OPEN_ECP_OUT_FLAG_RET_MUTUAL_AUTH","features":[5]},{"name":"NETWORK_OPEN_INTEGRITY_QUALIFIER","features":[5]},{"name":"NETWORK_OPEN_LOCATION_QUALIFIER","features":[5]},{"name":"NFS_OPEN_ECP_CONTEXT","features":[5,1,15]},{"name":"NLSTABLEINFO","features":[5]},{"name":"NO_8DOT3_NAME_PRESENT","features":[5]},{"name":"NTCREATEFILE_CREATE_DISPOSITION","features":[5]},{"name":"NTCREATEFILE_CREATE_OPTIONS","features":[5]},{"name":"NetworkOpenIntegrityAny","features":[5]},{"name":"NetworkOpenIntegrityEncrypted","features":[5]},{"name":"NetworkOpenIntegrityMaximum","features":[5]},{"name":"NetworkOpenIntegrityNone","features":[5]},{"name":"NetworkOpenIntegritySigned","features":[5]},{"name":"NetworkOpenLocationAny","features":[5]},{"name":"NetworkOpenLocationLoopback","features":[5]},{"name":"NetworkOpenLocationRemote","features":[5]},{"name":"NotifyTypeCreate","features":[5]},{"name":"NotifyTypeRetired","features":[5]},{"name":"NtAccessCheckAndAuditAlarm","features":[5,1,4]},{"name":"NtAccessCheckByTypeAndAuditAlarm","features":[5,1,4]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarm","features":[5,1,4]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarmByHandle","features":[5,1,4]},{"name":"NtAdjustGroupsToken","features":[5,1,4]},{"name":"NtAdjustPrivilegesToken","features":[5,1,4]},{"name":"NtAllocateVirtualMemory","features":[5,1]},{"name":"NtCancelIoFileEx","features":[5,1,6]},{"name":"NtCloseObjectAuditAlarm","features":[5,1]},{"name":"NtCreateFile","features":[2,5,1,21,6]},{"name":"NtCreateSection","features":[2,5,1]},{"name":"NtCreateSectionEx","features":[2,5,1,20]},{"name":"NtDeleteObjectAuditAlarm","features":[5,1]},{"name":"NtDuplicateToken","features":[2,5,1,4]},{"name":"NtFilterToken","features":[5,1,4]},{"name":"NtFlushBuffersFileEx","features":[5,1,6]},{"name":"NtFreeVirtualMemory","features":[5,1]},{"name":"NtFsControlFile","features":[5,1,6]},{"name":"NtImpersonateAnonymousToken","features":[5,1]},{"name":"NtLockFile","features":[5,1,6]},{"name":"NtOpenFile","features":[2,5,1,6]},{"name":"NtOpenObjectAuditAlarm","features":[5,1,4]},{"name":"NtOpenProcessToken","features":[5,1]},{"name":"NtOpenProcessTokenEx","features":[5,1]},{"name":"NtOpenThreadToken","features":[5,1]},{"name":"NtOpenThreadTokenEx","features":[5,1]},{"name":"NtPrivilegeCheck","features":[5,1,4]},{"name":"NtPrivilegeObjectAuditAlarm","features":[5,1,4]},{"name":"NtPrivilegedServiceAuditAlarm","features":[5,1,4]},{"name":"NtQueryDirectoryFile","features":[5,1,6]},{"name":"NtQueryDirectoryFileEx","features":[5,1,6]},{"name":"NtQueryInformationByName","features":[2,5,1,6]},{"name":"NtQueryInformationFile","features":[5,1,6]},{"name":"NtQueryInformationToken","features":[5,1,4]},{"name":"NtQueryQuotaInformationFile","features":[5,1,6]},{"name":"NtQuerySecurityObject","features":[5,1,4]},{"name":"NtQueryVirtualMemory","features":[5,1]},{"name":"NtQueryVolumeInformationFile","features":[5,1,6]},{"name":"NtReadFile","features":[5,1,6]},{"name":"NtSetInformationFile","features":[5,1,6]},{"name":"NtSetInformationToken","features":[5,1,4]},{"name":"NtSetInformationVirtualMemory","features":[5,1]},{"name":"NtSetQuotaInformationFile","features":[5,1,6]},{"name":"NtSetSecurityObject","features":[5,1,4]},{"name":"NtSetVolumeInformationFile","features":[5,1,6]},{"name":"NtUnlockFile","features":[5,1,6]},{"name":"NtWriteFile","features":[5,1,6]},{"name":"NtfsLinkTrackingInformation","features":[5]},{"name":"OPEN_REPARSE_LIST","features":[5,7]},{"name":"OPEN_REPARSE_LIST_ENTRY","features":[5,7]},{"name":"OPEN_REPARSE_POINT_OVERRIDE_CREATE_OPTION","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_ALWAYS","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_EXISTS","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_NOT_EXISTS","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT_ALWAYS","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT_ALWAYS","features":[5]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_FINAL_COMPONENT","features":[5]},{"name":"OPEN_REPARSE_POINT_RETURN_REPARSE_DATA_BUFFER","features":[5]},{"name":"OPEN_REPARSE_POINT_TAG_ENCOUNTERED","features":[5]},{"name":"OPEN_REPARSE_POINT_VERSION_EX","features":[5]},{"name":"OPLOCK_FLAG_BACK_OUT_ATOMIC_OPLOCK","features":[5]},{"name":"OPLOCK_FLAG_BREAKING_FOR_SHARING_VIOLATION","features":[5]},{"name":"OPLOCK_FLAG_CLOSING_DELETE_ON_CLOSE","features":[5]},{"name":"OPLOCK_FLAG_COMPLETE_IF_OPLOCKED","features":[5]},{"name":"OPLOCK_FLAG_IGNORE_OPLOCK_KEYS","features":[5]},{"name":"OPLOCK_FLAG_OPLOCK_KEY_CHECK_ONLY","features":[5]},{"name":"OPLOCK_FLAG_PARENT_OBJECT","features":[5]},{"name":"OPLOCK_FLAG_REMOVING_FILE_OR_LINK","features":[5]},{"name":"OPLOCK_FSCTRL_FLAG_ALL_KEYS_MATCH","features":[5]},{"name":"OPLOCK_KEY_CONTEXT","features":[5]},{"name":"OPLOCK_KEY_ECP_CONTEXT","features":[5]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_INTERIM_TIMEOUT","features":[5]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_TERMINATED","features":[5]},{"name":"OPLOCK_NOTIFY_PARAMS","features":[2,5,3,1,4,6,7,8]},{"name":"OPLOCK_NOTIFY_REASON","features":[5]},{"name":"OPLOCK_UPPER_FLAG_CHECK_NO_BREAK","features":[5]},{"name":"OPLOCK_UPPER_FLAG_NOTIFY_REFRESH_READ","features":[5]},{"name":"ObInsertObject","features":[2,5,3,1,4]},{"name":"ObIsKernelHandle","features":[5,1]},{"name":"ObMakeTemporaryObject","features":[5]},{"name":"ObOpenObjectByPointer","features":[2,5,3,1,4]},{"name":"ObOpenObjectByPointerWithTag","features":[2,5,3,1,4]},{"name":"ObQueryNameString","features":[2,5,1]},{"name":"ObQueryObjectAuditingByHandle","features":[5,1]},{"name":"PACQUIRE_FOR_LAZY_WRITE","features":[5,1]},{"name":"PACQUIRE_FOR_LAZY_WRITE_EX","features":[5,1]},{"name":"PACQUIRE_FOR_READ_AHEAD","features":[5,1]},{"name":"PALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[5,1]},{"name":"PASYNC_READ_COMPLETION_CALLBACK","features":[5,1]},{"name":"PCC_POST_DEFERRED_WRITE","features":[5]},{"name":"PCHECK_FOR_TRAVERSE_ACCESS","features":[2,5,1,4]},{"name":"PCOMPLETE_LOCK_IRP_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"PDIRTY_PAGE_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"PFILTER_REPORT_CHANGE","features":[5,1]},{"name":"PFLUSH_TO_LSN","features":[5]},{"name":"PFN_FSRTLTEARDOWNPERSTREAMCONTEXTS","features":[2,5,1,7]},{"name":"PFREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[5,1]},{"name":"PFSRTL_EXTRA_CREATE_PARAMETER_CLEANUP_CALLBACK","features":[5]},{"name":"PFSRTL_STACK_OVERFLOW_ROUTINE","features":[2,5,1,7]},{"name":"PFS_FILTER_CALLBACK","features":[2,5,3,1,4,6,7,8]},{"name":"PFS_FILTER_COMPLETION_CALLBACK","features":[2,5,3,1,4,6,7,8]},{"name":"PHYSICAL_EXTENTS_DESCRIPTOR","features":[5]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR","features":[5]},{"name":"PHYSICAL_MEMORY_RUN","features":[5]},{"name":"PIN_CALLER_TRACKS_DIRTY_DATA","features":[5]},{"name":"PIN_EXCLUSIVE","features":[5]},{"name":"PIN_HIGH_PRIORITY","features":[5]},{"name":"PIN_IF_BCB","features":[5]},{"name":"PIN_NO_READ","features":[5]},{"name":"PIN_VERIFY_REQUIRED","features":[5]},{"name":"PIN_WAIT","features":[5]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[5]},{"name":"POPLOCK_FS_PREPOST_IRP","features":[2,5,3,1,4,6,7,8]},{"name":"POPLOCK_NOTIFY_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"POPLOCK_WAIT_COMPLETE_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"PO_CB_AC_STATUS","features":[5]},{"name":"PO_CB_BUTTON_COLLISION","features":[5]},{"name":"PO_CB_LID_SWITCH_STATE","features":[5]},{"name":"PO_CB_PROCESSOR_POWER_POLICY","features":[5]},{"name":"PO_CB_SYSTEM_POWER_POLICY","features":[5]},{"name":"PO_CB_SYSTEM_STATE_LOCK","features":[5]},{"name":"PQUERY_LOG_USAGE","features":[5]},{"name":"PQUERY_VIRTUAL_MEMORY_CALLBACK","features":[5,1]},{"name":"PREFETCH_OPEN_ECP_CONTEXT","features":[5]},{"name":"PREFIX_TABLE","features":[2,5,7]},{"name":"PREFIX_TABLE_ENTRY","features":[2,5,7]},{"name":"PRELEASE_FROM_LAZY_WRITE","features":[5]},{"name":"PRELEASE_FROM_READ_AHEAD","features":[5]},{"name":"PRTL_ALLOCATE_STRING_ROUTINE","features":[5]},{"name":"PRTL_FREE_STRING_ROUTINE","features":[5]},{"name":"PRTL_HEAP_COMMIT_ROUTINE","features":[5,1]},{"name":"PRTL_REALLOCATE_STRING_ROUTINE","features":[5]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE","features":[5,1]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[5,1]},{"name":"PSMP_MAXIMUM_SYSAPP_CLAIM_VALUES","features":[5]},{"name":"PSMP_MINIMUM_SYSAPP_CLAIM_VALUES","features":[5]},{"name":"PUBLIC_BCB","features":[5]},{"name":"PUNLOCK_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"PURGE_WITH_ACTIVE_VIEWS","features":[5]},{"name":"PfxFindPrefix","features":[2,5,7]},{"name":"PfxInitialize","features":[2,5,7]},{"name":"PfxInsertPrefix","features":[2,5,1,7]},{"name":"PfxRemovePrefix","features":[2,5,7]},{"name":"PoQueueShutdownWorkItem","features":[2,5,1,7]},{"name":"PsAssignImpersonationToken","features":[2,5,1]},{"name":"PsChargePoolQuota","features":[2,5]},{"name":"PsChargeProcessPoolQuota","features":[2,5,1]},{"name":"PsDereferenceImpersonationToken","features":[5]},{"name":"PsDereferencePrimaryToken","features":[5]},{"name":"PsDisableImpersonation","features":[2,5,1,4]},{"name":"PsGetProcessExitTime","features":[5]},{"name":"PsGetThreadProcess","features":[2,5]},{"name":"PsImpersonateClient","features":[2,5,1,4]},{"name":"PsIsDiskCountersEnabled","features":[5,1]},{"name":"PsIsSystemThread","features":[2,5,1]},{"name":"PsIsThreadTerminating","features":[2,5,1]},{"name":"PsLookupProcessByProcessId","features":[2,5,1]},{"name":"PsLookupThreadByThreadId","features":[2,5,1]},{"name":"PsReferenceImpersonationToken","features":[2,5,1,4]},{"name":"PsReferencePrimaryToken","features":[2,5]},{"name":"PsRestoreImpersonation","features":[2,5,1,4]},{"name":"PsReturnPoolQuota","features":[2,5]},{"name":"PsRevertToSelf","features":[5]},{"name":"PsUpdateDiskCounters","features":[2,5]},{"name":"QUERY_BAD_RANGES_INPUT","features":[5,22]},{"name":"QUERY_DIRECT_ACCESS_DATA_EXTENTS","features":[5]},{"name":"QUERY_DIRECT_ACCESS_EXTENTS","features":[5]},{"name":"QUERY_DIRECT_ACCESS_IMAGE_EXTENTS","features":[5]},{"name":"QUERY_ON_CREATE_EA_INFORMATION","features":[5]},{"name":"QUERY_ON_CREATE_ECP_CONTEXT","features":[5]},{"name":"QUERY_ON_CREATE_FILE_LX_INFORMATION","features":[5]},{"name":"QUERY_ON_CREATE_FILE_STAT_INFORMATION","features":[5]},{"name":"QUERY_PATH_REQUEST","features":[2,5,3,1,4]},{"name":"QUERY_PATH_REQUEST_EX","features":[2,5,3,1,4]},{"name":"QUERY_PATH_RESPONSE","features":[5]},{"name":"QUERY_VIRTUAL_MEMORY_CALLBACK","features":[5,1]},{"name":"QoCFileEaInformation","features":[5]},{"name":"QoCFileLxInformation","features":[5]},{"name":"QoCFileStatInformation","features":[5]},{"name":"QuerySecurityContextToken","features":[5]},{"name":"READ_AHEAD_PARAMETERS","features":[5]},{"name":"READ_LIST","features":[2,5,3,1,4,21,6,7,8]},{"name":"READ_USN_JOURNAL_DATA","features":[5]},{"name":"REFS_COMPRESSION_FORMATS","features":[5]},{"name":"REFS_COMPRESSION_FORMAT_LZ4","features":[5]},{"name":"REFS_COMPRESSION_FORMAT_MAX","features":[5]},{"name":"REFS_COMPRESSION_FORMAT_UNCOMPRESSED","features":[5]},{"name":"REFS_COMPRESSION_FORMAT_ZSTD","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_CAA","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_MAA","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_NONE","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_SAA","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER_EX","features":[5]},{"name":"REFS_DEALLOCATE_RANGES_RANGE","features":[5]},{"name":"REFS_QUERY_VOLUME_COMPRESSION_INFO_OUTPUT_BUFFER","features":[5]},{"name":"REFS_QUERY_VOLUME_DEDUP_INFO_OUTPUT_BUFFER","features":[5,1]},{"name":"REFS_REMOVE_HARDLINK_BACKPOINTER","features":[5]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAGS","features":[5]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_COMPRESS_SYNC","features":[5]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_MAX","features":[5]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_INPUT_BUFFER","features":[5]},{"name":"REFS_SET_VOLUME_DEDUP_INFO_INPUT_BUFFER","features":[5,1]},{"name":"REFS_STREAM_EXTENT","features":[5]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC32","features":[5]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC64","features":[5]},{"name":"REFS_STREAM_EXTENT_PROPERTY_GHOSTED","features":[5]},{"name":"REFS_STREAM_EXTENT_PROPERTY_READONLY","features":[5]},{"name":"REFS_STREAM_EXTENT_PROPERTY_SPARSE","features":[5]},{"name":"REFS_STREAM_EXTENT_PROPERTY_STREAM_RESERVED","features":[5]},{"name":"REFS_STREAM_EXTENT_PROPERTY_VALID","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER_ENTRY","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_MANAGEMENT_INPUT_BUFFER","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CLEAR_SHADOW_BTREE","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CREATE","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_INVALID","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_LIST","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_MAX","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_QUERY_DELTAS","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_REVERT","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_SET_SHADOW_BTREE","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_INPUT_BUFFER","features":[5]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_OUTPUT_BUFFER","features":[5]},{"name":"REFS_VOLUME_COUNTER_INFO_INPUT_BUFFER","features":[5,1]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[5]},{"name":"REMOTE_LINK_TRACKING_INFORMATION","features":[5]},{"name":"REMOTE_PROTOCOL_FLAG_INTEGRITY","features":[5]},{"name":"REMOTE_PROTOCOL_FLAG_LOOPBACK","features":[5]},{"name":"REMOTE_PROTOCOL_FLAG_MUTUAL_AUTH","features":[5]},{"name":"REMOTE_PROTOCOL_FLAG_OFFLINE","features":[5]},{"name":"REMOTE_PROTOCOL_FLAG_PERSISTENT_HANDLE","features":[5]},{"name":"REMOTE_PROTOCOL_FLAG_PRIVACY","features":[5]},{"name":"REMOVED_8DOT3_NAME","features":[5]},{"name":"REPARSE_DATA_BUFFER","features":[5]},{"name":"REPARSE_DATA_BUFFER_EX","features":[5,21]},{"name":"REPARSE_DATA_EX_FLAG_GIVEN_TAG_OR_NONE","features":[5]},{"name":"REPARSE_INDEX_KEY","features":[5]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[5]},{"name":"RETURN_NON_NT_USER_SESSION_KEY","features":[5]},{"name":"RETURN_PRIMARY_LOGON_DOMAINNAME","features":[5]},{"name":"RETURN_PRIMARY_USERNAME","features":[5]},{"name":"RETURN_RESERVED_PARAMETER","features":[5]},{"name":"RKF_BYPASS_ECP_CONTEXT","features":[5]},{"name":"RPI_SMB2_SERVERCAP_DFS","features":[5]},{"name":"RPI_SMB2_SERVERCAP_DIRECTORY_LEASING","features":[5]},{"name":"RPI_SMB2_SERVERCAP_ENCRYPTION_AWARE","features":[5]},{"name":"RPI_SMB2_SERVERCAP_LARGEMTU","features":[5]},{"name":"RPI_SMB2_SERVERCAP_LEASING","features":[5]},{"name":"RPI_SMB2_SERVERCAP_MULTICHANNEL","features":[5]},{"name":"RPI_SMB2_SERVERCAP_PERSISTENT_HANDLES","features":[5]},{"name":"RPI_SMB2_SHARECAP_ACCESS_BASED_DIRECTORY_ENUM","features":[5]},{"name":"RPI_SMB2_SHARECAP_ASYMMETRIC_SCALEOUT","features":[5]},{"name":"RPI_SMB2_SHARECAP_CLUSTER","features":[5]},{"name":"RPI_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[5]},{"name":"RPI_SMB2_SHARECAP_DFS","features":[5]},{"name":"RPI_SMB2_SHARECAP_ENCRYPTED","features":[5]},{"name":"RPI_SMB2_SHARECAP_IDENTITY_REMOTING","features":[5]},{"name":"RPI_SMB2_SHARECAP_SCALEOUT","features":[5]},{"name":"RPI_SMB2_SHARECAP_TIMEWARP","features":[5]},{"name":"RPI_SMB2_SHARETYPE_DISK","features":[5]},{"name":"RPI_SMB2_SHARETYPE_PIPE","features":[5]},{"name":"RPI_SMB2_SHARETYPE_PRINT","features":[5]},{"name":"RTL_ALLOCATE_STRING_ROUTINE","features":[5]},{"name":"RTL_DUPLICATE_UNICODE_STRING_ALLOCATE_NULL_STRING","features":[5]},{"name":"RTL_DUPLICATE_UNICODE_STRING_NULL_TERMINATE","features":[5]},{"name":"RTL_FREE_STRING_ROUTINE","features":[5]},{"name":"RTL_HEAP_COMMIT_ROUTINE","features":[5,1]},{"name":"RTL_HEAP_MEMORY_LIMIT_CURRENT_VERSION","features":[5]},{"name":"RTL_HEAP_MEMORY_LIMIT_DATA","features":[5]},{"name":"RTL_HEAP_MEMORY_LIMIT_INFO","features":[5]},{"name":"RTL_HEAP_PARAMETERS","features":[5,1]},{"name":"RTL_MEMORY_TYPE","features":[5]},{"name":"RTL_NLS_STATE","features":[5]},{"name":"RTL_REALLOCATE_STRING_ROUTINE","features":[5]},{"name":"RTL_SEGMENT_HEAP_MEMORY_SOURCE","features":[5,1]},{"name":"RTL_SEGMENT_HEAP_PARAMETERS","features":[5,1]},{"name":"RTL_SEGMENT_HEAP_VA_CALLBACKS","features":[5,1]},{"name":"RTL_SYSTEM_VOLUME_INFORMATION_FOLDER","features":[5]},{"name":"RtlAbsoluteToSelfRelativeSD","features":[5,1,4]},{"name":"RtlAddAccessAllowedAce","features":[5,1,4]},{"name":"RtlAddAccessAllowedAceEx","features":[5,1,4]},{"name":"RtlAddAce","features":[5,1,4]},{"name":"RtlAllocateAndInitializeSid","features":[5,1,4]},{"name":"RtlAllocateAndInitializeSidEx","features":[5,1,4]},{"name":"RtlAllocateHeap","features":[5]},{"name":"RtlAppendStringToString","features":[5,1,7]},{"name":"RtlCompareAltitudes","features":[5,1]},{"name":"RtlCompareMemoryUlong","features":[5]},{"name":"RtlCompressBuffer","features":[5,1]},{"name":"RtlCompressChunks","features":[5,1]},{"name":"RtlCopyLuid","features":[5,1]},{"name":"RtlCopySid","features":[5,1]},{"name":"RtlCreateAcl","features":[5,1,4]},{"name":"RtlCreateHeap","features":[5,1]},{"name":"RtlCreateServiceSid","features":[5,1]},{"name":"RtlCreateSystemVolumeInformationFolder","features":[5,1]},{"name":"RtlCreateUnicodeString","features":[5,1]},{"name":"RtlCreateVirtualAccountSid","features":[5,1]},{"name":"RtlCustomCPToUnicodeN","features":[5,1]},{"name":"RtlDecompressBuffer","features":[5,1]},{"name":"RtlDecompressBufferEx","features":[5,1]},{"name":"RtlDecompressBufferEx2","features":[5,1]},{"name":"RtlDecompressChunks","features":[5,1]},{"name":"RtlDecompressFragment","features":[5,1]},{"name":"RtlDecompressFragmentEx","features":[5,1]},{"name":"RtlDeleteAce","features":[5,1,4]},{"name":"RtlDescribeChunk","features":[5,1]},{"name":"RtlDestroyHeap","features":[5]},{"name":"RtlDowncaseUnicodeString","features":[5,1]},{"name":"RtlDuplicateUnicodeString","features":[5,1]},{"name":"RtlEqualPrefixSid","features":[5,1]},{"name":"RtlEqualSid","features":[5,1]},{"name":"RtlFindUnicodePrefix","features":[2,5,1]},{"name":"RtlFreeHeap","features":[5]},{"name":"RtlFreeSid","features":[5,1]},{"name":"RtlGenerate8dot3Name","features":[5,1]},{"name":"RtlGetAce","features":[5,1,4]},{"name":"RtlGetCompressionWorkSpaceSize","features":[5,1]},{"name":"RtlGetDaclSecurityDescriptor","features":[5,1,4]},{"name":"RtlGetGroupSecurityDescriptor","features":[5,1,4]},{"name":"RtlGetOwnerSecurityDescriptor","features":[5,1,4]},{"name":"RtlGetSaclSecurityDescriptor","features":[5,1,4]},{"name":"RtlIdentifierAuthoritySid","features":[5,1,4]},{"name":"RtlIdnToAscii","features":[5,1]},{"name":"RtlIdnToNameprepUnicode","features":[5,1]},{"name":"RtlIdnToUnicode","features":[5,1]},{"name":"RtlInitCodePageTable","features":[5]},{"name":"RtlInitUnicodeStringEx","features":[5,1]},{"name":"RtlInitializeSid","features":[5,1,4]},{"name":"RtlInitializeSidEx","features":[5,1,4]},{"name":"RtlInitializeUnicodePrefix","features":[2,5,1]},{"name":"RtlInsertUnicodePrefix","features":[2,5,1]},{"name":"RtlIsCloudFilesPlaceholder","features":[5,1]},{"name":"RtlIsNonEmptyDirectoryReparsePointAllowed","features":[5,1]},{"name":"RtlIsNormalizedString","features":[5,1]},{"name":"RtlIsPartialPlaceholder","features":[5,1]},{"name":"RtlIsPartialPlaceholderFileHandle","features":[5,1]},{"name":"RtlIsPartialPlaceholderFileInfo","features":[5,1]},{"name":"RtlIsSandboxedToken","features":[2,5,1,4]},{"name":"RtlIsValidOemCharacter","features":[5,1]},{"name":"RtlLengthRequiredSid","features":[5]},{"name":"RtlLengthSid","features":[5,1]},{"name":"RtlMultiByteToUnicodeN","features":[5,1]},{"name":"RtlMultiByteToUnicodeSize","features":[5,1]},{"name":"RtlNextUnicodePrefix","features":[2,5,1]},{"name":"RtlNormalizeString","features":[5,1]},{"name":"RtlNtStatusToDosErrorNoTeb","features":[5,1]},{"name":"RtlOemStringToCountedUnicodeString","features":[5,1,7]},{"name":"RtlOemStringToUnicodeString","features":[5,1,7]},{"name":"RtlOemToUnicodeN","features":[5,1]},{"name":"RtlPrefixString","features":[5,1,7]},{"name":"RtlQueryPackageIdentity","features":[5,1]},{"name":"RtlQueryPackageIdentityEx","features":[5,1]},{"name":"RtlQueryProcessPlaceholderCompatibilityMode","features":[5]},{"name":"RtlQueryThreadPlaceholderCompatibilityMode","features":[5]},{"name":"RtlRandom","features":[5]},{"name":"RtlRandomEx","features":[5]},{"name":"RtlRemoveUnicodePrefix","features":[2,5,1]},{"name":"RtlReplaceSidInSd","features":[5,1,4]},{"name":"RtlReserveChunk","features":[5,1]},{"name":"RtlSecondsSince1970ToTime","features":[5]},{"name":"RtlSecondsSince1980ToTime","features":[5]},{"name":"RtlSelfRelativeToAbsoluteSD","features":[5,1,4]},{"name":"RtlSetGroupSecurityDescriptor","features":[5,1,4]},{"name":"RtlSetOwnerSecurityDescriptor","features":[5,1,4]},{"name":"RtlSetProcessPlaceholderCompatibilityMode","features":[5]},{"name":"RtlSetThreadPlaceholderCompatibilityMode","features":[5]},{"name":"RtlSubAuthorityCountSid","features":[5,1]},{"name":"RtlSubAuthoritySid","features":[5,1]},{"name":"RtlTimeToSecondsSince1980","features":[5,1]},{"name":"RtlUnicodeStringToCountedOemString","features":[5,1,7]},{"name":"RtlUnicodeToCustomCPN","features":[5,1]},{"name":"RtlUnicodeToMultiByteN","features":[5,1]},{"name":"RtlUnicodeToOemN","features":[5,1]},{"name":"RtlUpcaseUnicodeStringToCountedOemString","features":[5,1,7]},{"name":"RtlUpcaseUnicodeStringToOemString","features":[5,1,7]},{"name":"RtlUpcaseUnicodeToCustomCPN","features":[5,1]},{"name":"RtlUpcaseUnicodeToMultiByteN","features":[5,1]},{"name":"RtlUpcaseUnicodeToOemN","features":[5,1]},{"name":"RtlValidSid","features":[5,1]},{"name":"RtlValidateUnicodeString","features":[5,1]},{"name":"RtlxOemStringToUnicodeSize","features":[5,7]},{"name":"RtlxUnicodeStringToOemSize","features":[5,1]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[5]},{"name":"SECURITY_CLIENT_CONTEXT","features":[5,1,4]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[5,23]},{"name":"SEC_DTLS_MTU","features":[5]},{"name":"SEC_FLAGS","features":[5]},{"name":"SEC_NEGOTIATION_INFO","features":[5]},{"name":"SEC_PRESHAREDKEY","features":[5]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[5]},{"name":"SEGMENT_HEAP_FLG_USE_PAGE_HEAP","features":[5]},{"name":"SEGMENT_HEAP_PARAMETERS_VERSION","features":[5]},{"name":"SEGMENT_HEAP_PARAMS_VALID_FLAGS","features":[5]},{"name":"SEMAPHORE_INCREMENT","features":[5]},{"name":"SET_CACHED_RUNS_STATE_INPUT_BUFFER","features":[5,1]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[5]},{"name":"SE_AUDIT_INFO","features":[5,1,4]},{"name":"SE_AUDIT_OPERATION","features":[5]},{"name":"SE_BACKUP_PRIVILEGES_CHECKED","features":[5]},{"name":"SE_DACL_UNTRUSTED","features":[5]},{"name":"SE_EXPORTS","features":[5,1]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE","features":[5,1]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[2,5,1]},{"name":"SE_SERVER_SECURITY","features":[5]},{"name":"SPECIAL_ENCRYPTED_OPEN","features":[5]},{"name":"SRV_INSTANCE_TYPE","features":[5]},{"name":"SRV_OPEN_ECP_CONTEXT","features":[5,1,15]},{"name":"SRV_OPEN_ECP_CONTEXT_VERSION_2","features":[5]},{"name":"SUPPORTED_FS_FEATURES_BYPASS_IO","features":[5]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_READ","features":[5]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_WRITE","features":[5]},{"name":"SUPPORTED_FS_FEATURES_QUERY_OPEN","features":[5]},{"name":"SYMLINK_DIRECTORY","features":[5]},{"name":"SYMLINK_FILE","features":[5]},{"name":"SYMLINK_FLAG_RELATIVE","features":[5]},{"name":"SYMLINK_RESERVED_MASK","features":[5]},{"name":"SYSTEM_PAGE_PRIORITY_BITS","features":[5]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[5]},{"name":"SeAccessCheckFromState","features":[5,1,4]},{"name":"SeAccessCheckFromStateEx","features":[5,1,4]},{"name":"SeAdjustAccessStateForAccessConstraints","features":[2,5,3,1,4]},{"name":"SeAdjustAccessStateForTrustLabel","features":[2,5,3,1,4]},{"name":"SeAdjustObjectSecurity","features":[2,5,1,4]},{"name":"SeAppendPrivileges","features":[2,5,3,1,4]},{"name":"SeAuditFipsCryptoSelftests","features":[5,1]},{"name":"SeAuditHardLinkCreation","features":[5,1]},{"name":"SeAuditHardLinkCreationWithTransaction","features":[5,1]},{"name":"SeAuditTransactionStateChange","features":[5]},{"name":"SeAuditingAnyFileEventsWithContext","features":[2,5,1,4]},{"name":"SeAuditingAnyFileEventsWithContextEx","features":[2,5,1,4]},{"name":"SeAuditingFileEvents","features":[5,1,4]},{"name":"SeAuditingFileEventsWithContext","features":[2,5,1,4]},{"name":"SeAuditingFileEventsWithContextEx","features":[2,5,1,4]},{"name":"SeAuditingFileOrGlobalEvents","features":[2,5,1,4]},{"name":"SeAuditingHardLinkEvents","features":[5,1,4]},{"name":"SeAuditingHardLinkEventsWithContext","features":[2,5,1,4]},{"name":"SeCaptureSubjectContextEx","features":[2,5,4]},{"name":"SeCheckForCriticalAceRemoval","features":[2,5,1,4]},{"name":"SeCreateClientSecurity","features":[2,5,1,4]},{"name":"SeCreateClientSecurityFromSubjectContext","features":[2,5,1,4]},{"name":"SeDeleteClientSecurity","features":[5,1,4]},{"name":"SeDeleteObjectAuditAlarm","features":[5,1]},{"name":"SeDeleteObjectAuditAlarmWithTransaction","features":[5,1]},{"name":"SeExamineSacl","features":[5,1,4]},{"name":"SeFilterToken","features":[5,1,4]},{"name":"SeFreePrivileges","features":[5,1,4]},{"name":"SeImpersonateClient","features":[2,5,1,4]},{"name":"SeImpersonateClientEx","features":[2,5,1,4]},{"name":"SeLocateProcessImageName","features":[2,5,1]},{"name":"SeMarkLogonSessionForTerminationNotification","features":[5,1]},{"name":"SeMarkLogonSessionForTerminationNotificationEx","features":[2,5,1]},{"name":"SeOpenObjectAuditAlarm","features":[2,5,3,1,4]},{"name":"SeOpenObjectAuditAlarmWithTransaction","features":[2,5,3,1,4]},{"name":"SeOpenObjectForDeleteAuditAlarm","features":[2,5,3,1,4]},{"name":"SeOpenObjectForDeleteAuditAlarmWithTransaction","features":[2,5,3,1,4]},{"name":"SePrivilegeCheck","features":[2,5,1,4]},{"name":"SeQueryAuthenticationIdToken","features":[5,1]},{"name":"SeQueryInformationToken","features":[5,1,4]},{"name":"SeQuerySecurityDescriptorInfo","features":[5,1,4]},{"name":"SeQueryServerSiloToken","features":[2,5,1]},{"name":"SeQuerySessionIdToken","features":[5,1]},{"name":"SeQuerySessionIdTokenEx","features":[5,1]},{"name":"SeRegisterLogonSessionTerminatedRoutine","features":[5,1]},{"name":"SeRegisterLogonSessionTerminatedRoutineEx","features":[5,1]},{"name":"SeReportSecurityEventWithSubCategory","features":[5,1,23]},{"name":"SeSetAccessStateGenericMapping","features":[2,5,3,1,4]},{"name":"SeSetSecurityDescriptorInfo","features":[2,5,1,4]},{"name":"SeSetSecurityDescriptorInfoEx","features":[2,5,1,4]},{"name":"SeShouldCheckForAccessRightsFromParent","features":[2,5,3,1,4]},{"name":"SeTokenFromAccessInformation","features":[5,1,4]},{"name":"SeTokenIsAdmin","features":[5,1]},{"name":"SeTokenIsRestricted","features":[5,1]},{"name":"SeTokenIsWriteRestricted","features":[5,1]},{"name":"SeTokenType","features":[5,4]},{"name":"SeUnregisterLogonSessionTerminatedRoutine","features":[5,1]},{"name":"SeUnregisterLogonSessionTerminatedRoutineEx","features":[5,1]},{"name":"SecBuffer","features":[5]},{"name":"SecBufferDesc","features":[5]},{"name":"SecHandle","features":[5]},{"name":"SecLookupAccountName","features":[5,1,4]},{"name":"SecLookupAccountSid","features":[5,1,4]},{"name":"SecLookupWellKnownSid","features":[5,1,4]},{"name":"SecMakeSPN","features":[5,1]},{"name":"SecMakeSPNEx","features":[5,1]},{"name":"SecMakeSPNEx2","features":[5,1]},{"name":"SetContextAttributesW","features":[5]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[5]},{"name":"SharedVirtualDiskHandleState","features":[5]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[5]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[5]},{"name":"SharedVirtualDiskHandleStateNone","features":[5]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[5]},{"name":"SharedVirtualDiskSupportType","features":[5]},{"name":"SharedVirtualDisksSupported","features":[5]},{"name":"SharedVirtualDisksUnsupported","features":[5]},{"name":"SrvInstanceTypeCsv","features":[5]},{"name":"SrvInstanceTypePrimary","features":[5]},{"name":"SrvInstanceTypeSBL","features":[5]},{"name":"SrvInstanceTypeSR","features":[5]},{"name":"SrvInstanceTypeUndefined","features":[5]},{"name":"SrvInstanceTypeVSMB","features":[5]},{"name":"SspiAcceptSecurityContextAsync","features":[2,5]},{"name":"SspiAcquireCredentialsHandleAsyncA","features":[2,5,23]},{"name":"SspiAcquireCredentialsHandleAsyncW","features":[2,5,1,23]},{"name":"SspiAsyncNotifyCallback","features":[2,5]},{"name":"SspiCreateAsyncContext","features":[2,5]},{"name":"SspiDeleteSecurityContextAsync","features":[2,5]},{"name":"SspiFreeAsyncContext","features":[2,5]},{"name":"SspiFreeCredentialsHandleAsync","features":[2,5]},{"name":"SspiGetAsyncCallStatus","features":[2,5]},{"name":"SspiInitializeSecurityContextAsyncA","features":[2,5]},{"name":"SspiInitializeSecurityContextAsyncW","features":[2,5,1]},{"name":"SspiReinitAsyncContext","features":[2,5,1]},{"name":"SspiSetAsyncNotifyCallback","features":[2,5]},{"name":"SyncTypeCreateSection","features":[5]},{"name":"SyncTypeOther","features":[5]},{"name":"TOKEN_AUDIT_NO_CHILD_PROCESS","features":[5]},{"name":"TOKEN_AUDIT_REDIRECTION_TRUST","features":[5]},{"name":"TOKEN_DO_NOT_USE_GLOBAL_ATTRIBS_FOR_QUERY","features":[5]},{"name":"TOKEN_ENFORCE_REDIRECTION_TRUST","features":[5]},{"name":"TOKEN_HAS_BACKUP_PRIVILEGE","features":[5]},{"name":"TOKEN_HAS_IMPERSONATE_PRIVILEGE","features":[5]},{"name":"TOKEN_HAS_OWN_CLAIM_ATTRIBUTES","features":[5]},{"name":"TOKEN_HAS_RESTORE_PRIVILEGE","features":[5]},{"name":"TOKEN_HAS_TRAVERSE_PRIVILEGE","features":[5]},{"name":"TOKEN_IS_FILTERED","features":[5]},{"name":"TOKEN_IS_RESTRICTED","features":[5]},{"name":"TOKEN_LEARNING_MODE_LOGGING","features":[5]},{"name":"TOKEN_LOWBOX","features":[5]},{"name":"TOKEN_NOT_LOW","features":[5]},{"name":"TOKEN_NO_CHILD_PROCESS","features":[5]},{"name":"TOKEN_NO_CHILD_PROCESS_UNLESS_SECURE","features":[5]},{"name":"TOKEN_PERMISSIVE_LEARNING_MODE","features":[5]},{"name":"TOKEN_PRIVATE_NAMESPACE","features":[5]},{"name":"TOKEN_SANDBOX_INERT","features":[5]},{"name":"TOKEN_SESSION_NOT_REFERENCED","features":[5]},{"name":"TOKEN_UIACCESS","features":[5]},{"name":"TOKEN_VIRTUALIZE_ALLOWED","features":[5]},{"name":"TOKEN_VIRTUALIZE_ENABLED","features":[5]},{"name":"TOKEN_WRITE_RESTRICTED","features":[5]},{"name":"TUNNEL","features":[2,5,1,7]},{"name":"UNICODE_PREFIX_TABLE","features":[2,5,1]},{"name":"UNICODE_PREFIX_TABLE_ENTRY","features":[2,5,1]},{"name":"UNINITIALIZE_CACHE_MAPS","features":[5]},{"name":"USE_PRIMARY_PASSWORD","features":[5]},{"name":"USN_DELETE_FLAG_DELETE","features":[5]},{"name":"USN_JOURNAL_DATA","features":[5]},{"name":"USN_RECORD","features":[5]},{"name":"VACB_MAPPING_GRANULARITY","features":[5]},{"name":"VACB_OFFSET_SHIFT","features":[5]},{"name":"VALID_INHERIT_FLAGS","features":[5]},{"name":"VCN_RANGE_INPUT_BUFFER","features":[5]},{"name":"VIRTUAL_MEMORY_INFORMATION_CLASS","features":[5]},{"name":"VOLSNAPCONTROLTYPE","features":[5]},{"name":"VOLUME_REFS_INFO_BUFFER","features":[5]},{"name":"VerifySignature","features":[5]},{"name":"VmPrefetchInformation","features":[5]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_LAYER","features":[5]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REGISTERED_LAYER","features":[5]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REMOTE_LAYER","features":[5]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_SCRATCH","features":[5]},{"name":"ZwAllocateVirtualMemory","features":[5,1]},{"name":"ZwAllocateVirtualMemoryEx","features":[5,1,20]},{"name":"ZwCreateEvent","features":[2,5,1,7]},{"name":"ZwDeleteFile","features":[2,5,1]},{"name":"ZwDuplicateObject","features":[5,1]},{"name":"ZwDuplicateToken","features":[2,5,1,4]},{"name":"ZwFlushBuffersFile","features":[5,1,6]},{"name":"ZwFlushBuffersFileEx","features":[5,1,6]},{"name":"ZwFlushVirtualMemory","features":[5,1,6]},{"name":"ZwFreeVirtualMemory","features":[5,1]},{"name":"ZwFsControlFile","features":[5,1,6]},{"name":"ZwLockFile","features":[5,1,6]},{"name":"ZwNotifyChangeKey","features":[5,1,6]},{"name":"ZwOpenDirectoryObject","features":[2,5,1]},{"name":"ZwOpenProcessTokenEx","features":[5,1]},{"name":"ZwOpenThreadTokenEx","features":[5,1]},{"name":"ZwQueryDirectoryFile","features":[5,1,6]},{"name":"ZwQueryDirectoryFileEx","features":[5,1,6]},{"name":"ZwQueryEaFile","features":[5,1,6]},{"name":"ZwQueryFullAttributesFile","features":[2,5,1]},{"name":"ZwQueryInformationToken","features":[5,1,4]},{"name":"ZwQueryObject","features":[2,5,1]},{"name":"ZwQueryQuotaInformationFile","features":[5,1,6]},{"name":"ZwQuerySecurityObject","features":[5,1,4]},{"name":"ZwQueryVirtualMemory","features":[5,1]},{"name":"ZwQueryVolumeInformationFile","features":[5,1,6]},{"name":"ZwSetEaFile","features":[5,1,6]},{"name":"ZwSetEvent","features":[5,1]},{"name":"ZwSetInformationToken","features":[5,1,4]},{"name":"ZwSetInformationVirtualMemory","features":[5,1]},{"name":"ZwSetQuotaInformationFile","features":[5,1,6]},{"name":"ZwSetSecurityObject","features":[5,1,4]},{"name":"ZwSetVolumeInformationFile","features":[5,1,6]},{"name":"ZwUnlockFile","features":[5,1,6]},{"name":"ZwWaitForSingleObject","features":[5,1]},{"name":"_LCN_WEAK_REFERENCE_STATE","features":[5]},{"name":"_REFS_STREAM_EXTENT_PROPERTIES","features":[5]}],"345":[{"name":"FLTFL_CALLBACK_DATA_DIRTY","features":[24]},{"name":"FLTFL_CALLBACK_DATA_DRAINING_IO","features":[24]},{"name":"FLTFL_CALLBACK_DATA_FAST_IO_OPERATION","features":[24]},{"name":"FLTFL_CALLBACK_DATA_FS_FILTER_OPERATION","features":[24]},{"name":"FLTFL_CALLBACK_DATA_GENERATED_IO","features":[24]},{"name":"FLTFL_CALLBACK_DATA_IRP_OPERATION","features":[24]},{"name":"FLTFL_CALLBACK_DATA_NEW_SYSTEM_BUFFER","features":[24]},{"name":"FLTFL_CALLBACK_DATA_POST_OPERATION","features":[24]},{"name":"FLTFL_CALLBACK_DATA_REISSUED_IO","features":[24]},{"name":"FLTFL_CALLBACK_DATA_REISSUE_MASK","features":[24]},{"name":"FLTFL_CALLBACK_DATA_SYSTEM_BUFFER","features":[24]},{"name":"FLTFL_CONTEXT_REGISTRATION_NO_EXACT_SIZE_MATCH","features":[24]},{"name":"FLTFL_FILE_NAME_PARSED_EXTENSION","features":[24]},{"name":"FLTFL_FILE_NAME_PARSED_FINAL_COMPONENT","features":[24]},{"name":"FLTFL_FILE_NAME_PARSED_PARENT_DIR","features":[24]},{"name":"FLTFL_FILE_NAME_PARSED_STREAM","features":[24]},{"name":"FLTFL_FILTER_UNLOAD_MANDATORY","features":[24]},{"name":"FLTFL_INSTANCE_SETUP_AUTOMATIC_ATTACHMENT","features":[24]},{"name":"FLTFL_INSTANCE_SETUP_DETACHED_VOLUME","features":[24]},{"name":"FLTFL_INSTANCE_SETUP_MANUAL_ATTACHMENT","features":[24]},{"name":"FLTFL_INSTANCE_SETUP_NEWLY_MOUNTED_VOLUME","features":[24]},{"name":"FLTFL_INSTANCE_TEARDOWN_FILTER_UNLOAD","features":[24]},{"name":"FLTFL_INSTANCE_TEARDOWN_INTERNAL_ERROR","features":[24]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANDATORY_FILTER_UNLOAD","features":[24]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANUAL","features":[24]},{"name":"FLTFL_INSTANCE_TEARDOWN_VOLUME_DISMOUNT","features":[24]},{"name":"FLTFL_IO_OPERATION_DO_NOT_UPDATE_BYTE_OFFSET","features":[24]},{"name":"FLTFL_IO_OPERATION_NON_CACHED","features":[24]},{"name":"FLTFL_IO_OPERATION_PAGING","features":[24]},{"name":"FLTFL_IO_OPERATION_SYNCHRONOUS_PAGING","features":[24]},{"name":"FLTFL_NORMALIZE_NAME_CASE_SENSITIVE","features":[24]},{"name":"FLTFL_NORMALIZE_NAME_DESTINATION_FILE_NAME","features":[24]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_CACHED_IO","features":[24]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_CACHED_NON_PAGING_IO","features":[24]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_DASD_IO","features":[24]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_PAGING_IO","features":[24]},{"name":"FLTFL_POST_OPERATION_DRAINING","features":[24]},{"name":"FLTFL_REGISTRATION_DO_NOT_SUPPORT_SERVICE_STOP","features":[24]},{"name":"FLTFL_REGISTRATION_SUPPORT_DAX_VOLUME","features":[24]},{"name":"FLTFL_REGISTRATION_SUPPORT_NPFS_MSFS","features":[24]},{"name":"FLTFL_REGISTRATION_SUPPORT_WCOS","features":[24]},{"name":"FLTTCFL_AUTO_REPARSE","features":[24]},{"name":"FLT_ALLOCATE_CALLBACK_DATA_PREALLOCATE_ALL_MEMORY","features":[24]},{"name":"FLT_CALLBACK_DATA","features":[2,24,3,1,4,6,7,8]},{"name":"FLT_CALLBACK_DATA_QUEUE","features":[2,24,3,1,4,6,7,8]},{"name":"FLT_CALLBACK_DATA_QUEUE_FLAGS","features":[24]},{"name":"FLT_CONTEXT_END","features":[24]},{"name":"FLT_CONTEXT_REGISTRATION","features":[2,24]},{"name":"FLT_CREATEFILE_TARGET_ECP_CONTEXT","features":[24,1]},{"name":"FLT_FILE_CONTEXT","features":[24]},{"name":"FLT_FILE_NAME_ALLOW_QUERY_ON_REPARSE","features":[24]},{"name":"FLT_FILE_NAME_DO_NOT_CACHE","features":[24]},{"name":"FLT_FILE_NAME_INFORMATION","features":[24,1]},{"name":"FLT_FILE_NAME_NORMALIZED","features":[24]},{"name":"FLT_FILE_NAME_OPENED","features":[24]},{"name":"FLT_FILE_NAME_QUERY_ALWAYS_ALLOW_CACHE_LOOKUP","features":[24]},{"name":"FLT_FILE_NAME_QUERY_CACHE_ONLY","features":[24]},{"name":"FLT_FILE_NAME_QUERY_DEFAULT","features":[24]},{"name":"FLT_FILE_NAME_QUERY_FILESYSTEM_ONLY","features":[24]},{"name":"FLT_FILE_NAME_REQUEST_FROM_CURRENT_PROVIDER","features":[24]},{"name":"FLT_FILE_NAME_SHORT","features":[24]},{"name":"FLT_FLUSH_TYPE_DATA_SYNC_ONLY","features":[24]},{"name":"FLT_FLUSH_TYPE_FILE_DATA_ONLY","features":[24]},{"name":"FLT_FLUSH_TYPE_FLUSH_AND_PURGE","features":[24]},{"name":"FLT_FLUSH_TYPE_NO_SYNC","features":[24]},{"name":"FLT_INSTANCE_CONTEXT","features":[24]},{"name":"FLT_INTERNAL_OPERATION_COUNT","features":[24]},{"name":"FLT_IO_PARAMETER_BLOCK","features":[2,24,3,1,4,6,7,8]},{"name":"FLT_MAX_DEVICE_REPARSE_ATTEMPTS","features":[24]},{"name":"FLT_NAME_CONTROL","features":[24,1]},{"name":"FLT_OPERATION_REGISTRATION","features":[2,24,3,1,4,6,7,8]},{"name":"FLT_PARAMETERS","features":[2,24,3,1,4,6,7,8]},{"name":"FLT_PORT_CONNECT","features":[24]},{"name":"FLT_POSTOP_CALLBACK_STATUS","features":[24]},{"name":"FLT_POSTOP_DISALLOW_FSFILTER_IO","features":[24]},{"name":"FLT_POSTOP_FINISHED_PROCESSING","features":[24]},{"name":"FLT_POSTOP_MORE_PROCESSING_REQUIRED","features":[24]},{"name":"FLT_PREOP_CALLBACK_STATUS","features":[24]},{"name":"FLT_PREOP_COMPLETE","features":[24]},{"name":"FLT_PREOP_DISALLOW_FASTIO","features":[24]},{"name":"FLT_PREOP_DISALLOW_FSFILTER_IO","features":[24]},{"name":"FLT_PREOP_PENDING","features":[24]},{"name":"FLT_PREOP_SUCCESS_NO_CALLBACK","features":[24]},{"name":"FLT_PREOP_SUCCESS_WITH_CALLBACK","features":[24]},{"name":"FLT_PREOP_SYNCHRONIZE","features":[24]},{"name":"FLT_PUSH_LOCK_DISABLE_AUTO_BOOST","features":[24]},{"name":"FLT_PUSH_LOCK_ENABLE_AUTO_BOOST","features":[24]},{"name":"FLT_PUSH_LOCK_VALID_FLAGS","features":[24]},{"name":"FLT_REGISTRATION","features":[2,24,3,1,4,25,6,7,8]},{"name":"FLT_REGISTRATION_VERSION","features":[24]},{"name":"FLT_REGISTRATION_VERSION_0200","features":[24]},{"name":"FLT_REGISTRATION_VERSION_0201","features":[24]},{"name":"FLT_REGISTRATION_VERSION_0202","features":[24]},{"name":"FLT_REGISTRATION_VERSION_0203","features":[24]},{"name":"FLT_RELATED_CONTEXTS","features":[24]},{"name":"FLT_RELATED_CONTEXTS_EX","features":[24]},{"name":"FLT_RELATED_OBJECTS","features":[2,24,3,1,4,6,7,8]},{"name":"FLT_SECTION_CONTEXT","features":[24]},{"name":"FLT_SET_CONTEXT_KEEP_IF_EXISTS","features":[24]},{"name":"FLT_SET_CONTEXT_OPERATION","features":[24]},{"name":"FLT_SET_CONTEXT_REPLACE_IF_EXISTS","features":[24]},{"name":"FLT_STREAMHANDLE_CONTEXT","features":[24]},{"name":"FLT_STREAM_CONTEXT","features":[24]},{"name":"FLT_TAG_DATA_BUFFER","features":[24]},{"name":"FLT_TRANSACTION_CONTEXT","features":[24]},{"name":"FLT_VALID_FILE_NAME_FLAGS","features":[24]},{"name":"FLT_VALID_FILE_NAME_FORMATS","features":[24]},{"name":"FLT_VALID_FILE_NAME_QUERY_METHODS","features":[24]},{"name":"FLT_VOLUME_CONTEXT","features":[24]},{"name":"FLT_VOLUME_PROPERTIES","features":[24,1]},{"name":"FltAcknowledgeEcp","features":[24]},{"name":"FltAcquirePushLockExclusive","features":[24]},{"name":"FltAcquirePushLockExclusiveEx","features":[24]},{"name":"FltAcquirePushLockShared","features":[24]},{"name":"FltAcquirePushLockSharedEx","features":[24]},{"name":"FltAcquireResourceExclusive","features":[2,24,7]},{"name":"FltAcquireResourceShared","features":[2,24,7]},{"name":"FltAddOpenReparseEntry","features":[2,24,3,1,4,6,7,8]},{"name":"FltAdjustDeviceStackSizeForIoRedirection","features":[24,1]},{"name":"FltAllocateCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltAllocateCallbackDataEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltAllocateContext","features":[2,24,1]},{"name":"FltAllocateDeferredIoWorkItem","features":[24]},{"name":"FltAllocateExtraCreateParameter","features":[24,1]},{"name":"FltAllocateExtraCreateParameterFromLookasideList","features":[24,1]},{"name":"FltAllocateExtraCreateParameterList","features":[2,24,1]},{"name":"FltAllocateFileLock","features":[2,24,3,1,4,6,7,8]},{"name":"FltAllocateGenericWorkItem","features":[24]},{"name":"FltAllocatePoolAlignedWithTag","features":[2,24]},{"name":"FltApplyPriorityInfoThread","features":[2,24,1]},{"name":"FltAttachVolume","features":[24,1]},{"name":"FltAttachVolumeAtAltitude","features":[24,1]},{"name":"FltBuildDefaultSecurityDescriptor","features":[24,1,4]},{"name":"FltCancelFileOpen","features":[2,24,3,1,4,6,7,8]},{"name":"FltCancelIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltCancellableWaitForMultipleObjects","features":[2,24,3,1,4,6,7,8]},{"name":"FltCancellableWaitForSingleObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltCbdqDisable","features":[2,24,3,1,4,6,7,8]},{"name":"FltCbdqEnable","features":[2,24,3,1,4,6,7,8]},{"name":"FltCbdqInitialize","features":[2,24,3,1,4,6,7,8]},{"name":"FltCbdqInsertIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltCbdqRemoveIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltCbdqRemoveNextIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltCheckAndGrowNameControl","features":[24,1]},{"name":"FltCheckLockForReadAccess","features":[2,24,3,1,4,6,7,8]},{"name":"FltCheckLockForWriteAccess","features":[2,24,3,1,4,6,7,8]},{"name":"FltCheckOplock","features":[2,24,3,1,4,6,7,8]},{"name":"FltCheckOplockEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltClearCallbackDataDirty","features":[2,24,3,1,4,6,7,8]},{"name":"FltClearCancelCompletion","features":[2,24,3,1,4,6,7,8]},{"name":"FltClose","features":[24,1]},{"name":"FltCloseClientPort","features":[24]},{"name":"FltCloseCommunicationPort","features":[24]},{"name":"FltCloseSectionForDataScan","features":[24,1]},{"name":"FltCommitComplete","features":[2,24,1]},{"name":"FltCommitFinalizeComplete","features":[2,24,1]},{"name":"FltCompareInstanceAltitudes","features":[24]},{"name":"FltCompletePendedPostOperation","features":[2,24,3,1,4,6,7,8]},{"name":"FltCompletePendedPreOperation","features":[2,24,3,1,4,6,7,8]},{"name":"FltCopyOpenReparseList","features":[2,24,3,1,4,6,7,8]},{"name":"FltCreateCommunicationPort","features":[2,24,1]},{"name":"FltCreateFile","features":[2,24,1,6]},{"name":"FltCreateFileEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltCreateFileEx2","features":[2,24,3,1,4,6,7,8]},{"name":"FltCreateMailslotFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltCreateNamedPipeFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltCreateSectionForDataScan","features":[2,24,3,1,4,6,7,8]},{"name":"FltCreateSystemVolumeInformationFolder","features":[24,1]},{"name":"FltCurrentBatchOplock","features":[24,1]},{"name":"FltCurrentOplock","features":[24,1]},{"name":"FltCurrentOplockH","features":[24,1]},{"name":"FltDecodeParameters","features":[2,24,3,1,4,6,7,8]},{"name":"FltDeleteContext","features":[24]},{"name":"FltDeleteExtraCreateParameterLookasideList","features":[24]},{"name":"FltDeleteFileContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltDeleteInstanceContext","features":[24,1]},{"name":"FltDeletePushLock","features":[24]},{"name":"FltDeleteStreamContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltDeleteStreamHandleContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltDeleteTransactionContext","features":[2,24,1]},{"name":"FltDeleteVolumeContext","features":[24,1]},{"name":"FltDetachVolume","features":[24,1]},{"name":"FltDeviceIoControlFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltDoCompletionProcessingWhenSafe","features":[2,24,3,1,4,6,7,8]},{"name":"FltEnlistInTransaction","features":[2,24,1]},{"name":"FltEnumerateFilterInformation","features":[24,1,25]},{"name":"FltEnumerateFilters","features":[24,1]},{"name":"FltEnumerateInstanceInformationByDeviceObject","features":[2,24,3,1,4,25,6,7,8]},{"name":"FltEnumerateInstanceInformationByFilter","features":[24,1,25]},{"name":"FltEnumerateInstanceInformationByVolume","features":[24,1,25]},{"name":"FltEnumerateInstanceInformationByVolumeName","features":[24,1,25]},{"name":"FltEnumerateInstances","features":[24,1]},{"name":"FltEnumerateVolumeInformation","features":[24,1,25]},{"name":"FltEnumerateVolumes","features":[24,1]},{"name":"FltFastIoMdlRead","features":[2,24,3,1,4,6,7,8]},{"name":"FltFastIoMdlReadComplete","features":[2,24,3,1,4,6,7,8]},{"name":"FltFastIoMdlWriteComplete","features":[2,24,3,1,4,6,7,8]},{"name":"FltFastIoPrepareMdlWrite","features":[2,24,3,1,4,6,7,8]},{"name":"FltFindExtraCreateParameter","features":[2,24,1]},{"name":"FltFlushBuffers","features":[2,24,3,1,4,6,7,8]},{"name":"FltFlushBuffers2","features":[2,24,3,1,4,6,7,8]},{"name":"FltFreeCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltFreeDeferredIoWorkItem","features":[24]},{"name":"FltFreeExtraCreateParameter","features":[24]},{"name":"FltFreeExtraCreateParameterList","features":[2,24]},{"name":"FltFreeFileLock","features":[2,24,3,1,4,6,7,8]},{"name":"FltFreeGenericWorkItem","features":[24]},{"name":"FltFreeOpenReparseList","features":[2,24]},{"name":"FltFreePoolAlignedWithTag","features":[24]},{"name":"FltFreeSecurityDescriptor","features":[24,4]},{"name":"FltFsControlFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetActivityIdCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetBottomInstance","features":[24,1]},{"name":"FltGetContexts","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetContextsEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetDestinationFileNameInformation","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetDeviceObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetDiskDeviceObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetEcpListFromCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetFileContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetFileNameInformation","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetFileNameInformationUnsafe","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetFileSystemType","features":[24,1,25]},{"name":"FltGetFilterFromInstance","features":[24,1]},{"name":"FltGetFilterFromName","features":[24,1]},{"name":"FltGetFilterInformation","features":[24,1,25]},{"name":"FltGetFsZeroingOffset","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetInstanceContext","features":[24,1]},{"name":"FltGetInstanceInformation","features":[24,1,25]},{"name":"FltGetIoAttributionHandleFromCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetIoPriorityHint","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetIoPriorityHintFromCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetIoPriorityHintFromFileObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetIoPriorityHintFromThread","features":[2,24]},{"name":"FltGetIrpName","features":[24]},{"name":"FltGetLowerInstance","features":[24,1]},{"name":"FltGetNewSystemBufferAddress","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetNextExtraCreateParameter","features":[2,24,1]},{"name":"FltGetRequestorProcess","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetRequestorProcessId","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetRequestorProcessIdEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetRequestorSessionId","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetRoutineAddress","features":[24]},{"name":"FltGetSectionContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetStreamContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetStreamHandleContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetSwappedBufferMdlAddress","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetTopInstance","features":[24,1]},{"name":"FltGetTransactionContext","features":[2,24,1]},{"name":"FltGetTunneledName","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetUpperInstance","features":[24,1]},{"name":"FltGetVolumeContext","features":[24,1]},{"name":"FltGetVolumeFromDeviceObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetVolumeFromFileObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltGetVolumeFromInstance","features":[24,1]},{"name":"FltGetVolumeFromName","features":[24,1]},{"name":"FltGetVolumeGuidName","features":[24,1]},{"name":"FltGetVolumeInformation","features":[24,1,25]},{"name":"FltGetVolumeInstanceFromName","features":[24,1]},{"name":"FltGetVolumeName","features":[24,1]},{"name":"FltGetVolumeProperties","features":[24,1]},{"name":"FltInitExtraCreateParameterLookasideList","features":[24]},{"name":"FltInitializeFileLock","features":[2,24,3,1,4,6,7,8]},{"name":"FltInitializeOplock","features":[24]},{"name":"FltInitializePushLock","features":[24]},{"name":"FltInsertExtraCreateParameter","features":[2,24,1]},{"name":"FltIs32bitProcess","features":[2,24,3,1,4,6,7,8]},{"name":"FltIsCallbackDataDirty","features":[2,24,3,1,4,6,7,8]},{"name":"FltIsDirectory","features":[2,24,3,1,4,6,7,8]},{"name":"FltIsEcpAcknowledged","features":[24,1]},{"name":"FltIsEcpFromUserMode","features":[24,1]},{"name":"FltIsFltMgrVolumeDeviceObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltIsIoCanceled","features":[2,24,3,1,4,6,7,8]},{"name":"FltIsIoRedirectionAllowed","features":[24,1]},{"name":"FltIsIoRedirectionAllowedForOperation","features":[2,24,3,1,4,6,7,8]},{"name":"FltIsOperationSynchronous","features":[2,24,3,1,4,6,7,8]},{"name":"FltIsVolumeSnapshot","features":[24,1]},{"name":"FltIsVolumeWritable","features":[24,1]},{"name":"FltLoadFilter","features":[24,1]},{"name":"FltLockUserBuffer","features":[2,24,3,1,4,6,7,8]},{"name":"FltNotifyFilterChangeDirectory","features":[2,24,3,1,4,6,7,8]},{"name":"FltObjectDereference","features":[24]},{"name":"FltObjectReference","features":[24,1]},{"name":"FltOpenVolume","features":[2,24,3,1,4,6,7,8]},{"name":"FltOplockBreakH","features":[2,24,3,1,4,6,7,8]},{"name":"FltOplockBreakToNone","features":[2,24,3,1,4,6,7,8]},{"name":"FltOplockBreakToNoneEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltOplockFsctrl","features":[2,24,3,1,4,6,7,8]},{"name":"FltOplockFsctrlEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltOplockIsFastIoPossible","features":[24,1]},{"name":"FltOplockIsSharedRequest","features":[2,24,3,1,4,6,7,8]},{"name":"FltOplockKeysEqual","features":[2,24,3,1,4,6,7,8]},{"name":"FltParseFileName","features":[24,1]},{"name":"FltParseFileNameInformation","features":[24,1]},{"name":"FltPerformAsynchronousIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltPerformSynchronousIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltPrePrepareComplete","features":[2,24,1]},{"name":"FltPrepareComplete","features":[2,24,1]},{"name":"FltPrepareToReuseEcp","features":[24]},{"name":"FltProcessFileLock","features":[2,24,3,1,4,6,7,8]},{"name":"FltPropagateActivityIdToThread","features":[2,24,3,1,4,6,7,8]},{"name":"FltPropagateIrpExtension","features":[2,24,3,1,4,6,7,8]},{"name":"FltPurgeFileNameInformationCache","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueryDirectoryFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueryDirectoryFileEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueryEaFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueryInformationByName","features":[2,24,3,1,6]},{"name":"FltQueryInformationFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueryQuotaInformationFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltQuerySecurityObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueryVolumeInformation","features":[24,1,6]},{"name":"FltQueryVolumeInformationFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueueDeferredIoWorkItem","features":[2,24,3,1,4,6,7,8]},{"name":"FltQueueGenericWorkItem","features":[24,3,1]},{"name":"FltReadFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltReadFileEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltReferenceContext","features":[24]},{"name":"FltReferenceFileNameInformation","features":[24,1]},{"name":"FltRegisterFilter","features":[2,24,3,1,4,25,6,7,8]},{"name":"FltRegisterForDataScan","features":[24,1]},{"name":"FltReissueSynchronousIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltReleaseContext","features":[24]},{"name":"FltReleaseContexts","features":[24]},{"name":"FltReleaseContextsEx","features":[24]},{"name":"FltReleaseFileNameInformation","features":[24,1]},{"name":"FltReleasePushLock","features":[24]},{"name":"FltReleasePushLockEx","features":[24]},{"name":"FltReleaseResource","features":[2,24,7]},{"name":"FltRemoveExtraCreateParameter","features":[2,24,1]},{"name":"FltRemoveOpenReparseEntry","features":[2,24,3,1,4,6,7,8]},{"name":"FltRequestFileInfoOnCreateCompletion","features":[2,24,3,1,4,6,7,8]},{"name":"FltRequestOperationStatusCallback","features":[2,24,3,1,4,6,7,8]},{"name":"FltRetainSwappedBufferMdlAddress","features":[2,24,3,1,4,6,7,8]},{"name":"FltRetrieveFileInfoOnCreateCompletion","features":[2,24,3,1,4,6,7,8]},{"name":"FltRetrieveFileInfoOnCreateCompletionEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltRetrieveIoPriorityInfo","features":[2,24,3,1,4,6,7,8]},{"name":"FltReuseCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltRollbackComplete","features":[2,24,1]},{"name":"FltRollbackEnlistment","features":[2,24,1]},{"name":"FltSendMessage","features":[24,1]},{"name":"FltSetActivityIdCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetCallbackDataDirty","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetCancelCompletion","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetEaFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetEcpListIntoCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetFileContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetFsZeroingOffset","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetFsZeroingOffsetRequired","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetInformationFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetInstanceContext","features":[24,1]},{"name":"FltSetIoPriorityHintIntoCallbackData","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetIoPriorityHintIntoFileObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetIoPriorityHintIntoThread","features":[2,24,1]},{"name":"FltSetQuotaInformationFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetSecurityObject","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetStreamContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetStreamHandleContext","features":[2,24,3,1,4,6,7,8]},{"name":"FltSetTransactionContext","features":[2,24,1]},{"name":"FltSetVolumeContext","features":[24,1]},{"name":"FltSetVolumeInformation","features":[24,1,6]},{"name":"FltStartFiltering","features":[24,1]},{"name":"FltSupportsFileContexts","features":[2,24,3,1,4,6,7,8]},{"name":"FltSupportsFileContextsEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltSupportsStreamContexts","features":[2,24,3,1,4,6,7,8]},{"name":"FltSupportsStreamHandleContexts","features":[2,24,3,1,4,6,7,8]},{"name":"FltTagFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltTagFileEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltUninitializeFileLock","features":[2,24,3,1,4,6,7,8]},{"name":"FltUninitializeOplock","features":[24]},{"name":"FltUnloadFilter","features":[24,1]},{"name":"FltUnregisterFilter","features":[24]},{"name":"FltUntagFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltVetoBypassIo","features":[2,24,3,1,4,6,7,8]},{"name":"FltWriteFile","features":[2,24,3,1,4,6,7,8]},{"name":"FltWriteFileEx","features":[2,24,3,1,4,6,7,8]},{"name":"FltpTraceRedirectedFileIo","features":[2,24,3,1,4,6,7,8]},{"name":"GUID_ECP_FLT_CREATEFILE_TARGET","features":[24]},{"name":"IRP_MJ_ACQUIRE_FOR_CC_FLUSH","features":[24]},{"name":"IRP_MJ_ACQUIRE_FOR_MOD_WRITE","features":[24]},{"name":"IRP_MJ_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[24]},{"name":"IRP_MJ_FAST_IO_CHECK_IF_POSSIBLE","features":[24]},{"name":"IRP_MJ_MDL_READ","features":[24]},{"name":"IRP_MJ_MDL_READ_COMPLETE","features":[24]},{"name":"IRP_MJ_MDL_WRITE_COMPLETE","features":[24]},{"name":"IRP_MJ_NETWORK_QUERY_OPEN","features":[24]},{"name":"IRP_MJ_OPERATION_END","features":[24]},{"name":"IRP_MJ_PREPARE_MDL_WRITE","features":[24]},{"name":"IRP_MJ_QUERY_OPEN","features":[24]},{"name":"IRP_MJ_RELEASE_FOR_CC_FLUSH","features":[24]},{"name":"IRP_MJ_RELEASE_FOR_MOD_WRITE","features":[24]},{"name":"IRP_MJ_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[24]},{"name":"IRP_MJ_VOLUME_DISMOUNT","features":[24]},{"name":"IRP_MJ_VOLUME_MOUNT","features":[24]},{"name":"PFLTOPLOCK_PREPOST_CALLBACKDATA_ROUTINE","features":[2,24,3,1,4,6,7,8]},{"name":"PFLTOPLOCK_WAIT_COMPLETE_ROUTINE","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_CALLBACK_DATA_QUEUE_ACQUIRE","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_CALLBACK_DATA_QUEUE_COMPLETE_CANCELED_IO","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_CALLBACK_DATA_QUEUE_INSERT_IO","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_CALLBACK_DATA_QUEUE_PEEK_NEXT_IO","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_CALLBACK_DATA_QUEUE_RELEASE","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_CALLBACK_DATA_QUEUE_REMOVE_IO","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_COMPLETED_ASYNC_IO_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_COMPLETE_CANCELED_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_COMPLETE_LOCK_CALLBACK_DATA_ROUTINE","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_CONNECT_NOTIFY","features":[24,1]},{"name":"PFLT_CONTEXT","features":[24]},{"name":"PFLT_CONTEXT_ALLOCATE_CALLBACK","features":[2,24]},{"name":"PFLT_CONTEXT_CLEANUP_CALLBACK","features":[24]},{"name":"PFLT_CONTEXT_FREE_CALLBACK","features":[24]},{"name":"PFLT_DEFERRED_IO_WORKITEM","features":[24]},{"name":"PFLT_DEFERRED_IO_WORKITEM_ROUTINE","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_DISCONNECT_NOTIFY","features":[24]},{"name":"PFLT_FILTER","features":[24]},{"name":"PFLT_FILTER_UNLOAD_CALLBACK","features":[24,1]},{"name":"PFLT_GENERATE_FILE_NAME","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_GENERIC_WORKITEM","features":[24]},{"name":"PFLT_GENERIC_WORKITEM_ROUTINE","features":[24]},{"name":"PFLT_GET_OPERATION_STATUS_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_INSTANCE","features":[24]},{"name":"PFLT_INSTANCE_QUERY_TEARDOWN_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_INSTANCE_SETUP_CALLBACK","features":[2,24,3,1,4,25,6,7,8]},{"name":"PFLT_INSTANCE_TEARDOWN_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_MESSAGE_NOTIFY","features":[24,1]},{"name":"PFLT_NORMALIZE_CONTEXT_CLEANUP","features":[24]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT","features":[24,1]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT_EX","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_PORT","features":[24]},{"name":"PFLT_POST_OPERATION_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_PRE_OPERATION_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_SECTION_CONFLICT_NOTIFICATION_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_TRANSACTION_NOTIFICATION_CALLBACK","features":[2,24,3,1,4,6,7,8]},{"name":"PFLT_VOLUME","features":[24]},{"name":"VOL_PROP_FL_DAX_VOLUME","features":[24]}],"346":[{"name":"NtDeviceIoControlFile","features":[26,1,6]}],"347":[{"name":"ORCloseHive","features":[27,1]},{"name":"ORCloseKey","features":[27,1]},{"name":"ORCreateHive","features":[27,1]},{"name":"ORCreateKey","features":[27,1,4]},{"name":"ORDeleteKey","features":[27,1]},{"name":"ORDeleteValue","features":[27,1]},{"name":"OREnumKey","features":[27,1]},{"name":"OREnumValue","features":[27,1]},{"name":"ORGetKeySecurity","features":[27,1,4]},{"name":"ORGetValue","features":[27,1]},{"name":"ORGetVersion","features":[27,1]},{"name":"ORGetVirtualFlags","features":[27,1]},{"name":"ORHKEY","features":[27]},{"name":"ORMergeHives","features":[27,1]},{"name":"OROpenHive","features":[27,1]},{"name":"OROpenHiveByHandle","features":[27,1]},{"name":"OROpenKey","features":[27,1]},{"name":"ORQueryInfoKey","features":[27,1]},{"name":"ORRenameKey","features":[27,1]},{"name":"ORSaveHive","features":[27,1]},{"name":"ORSetKeySecurity","features":[27,1,4]},{"name":"ORSetValue","features":[27,1]},{"name":"ORSetVirtualFlags","features":[27,1]},{"name":"ORShutdown","features":[27,1]},{"name":"ORStart","features":[27,1]}],"348":[{"name":"KEY_SET_INFORMATION_CLASS","features":[28]},{"name":"KEY_VALUE_ENTRY","features":[28,1]},{"name":"KeyControlFlagsInformation","features":[28]},{"name":"KeySetDebugInformation","features":[28]},{"name":"KeySetHandleTagsInformation","features":[28]},{"name":"KeySetLayerInformation","features":[28]},{"name":"KeySetVirtualizationInformation","features":[28]},{"name":"KeyWow64FlagsInformation","features":[28]},{"name":"KeyWriteTimeInformation","features":[28]},{"name":"MaxKeySetInfoClass","features":[28]},{"name":"NtNotifyChangeMultipleKeys","features":[2,28,1,6]},{"name":"NtQueryMultipleValueKey","features":[28,1]},{"name":"NtRenameKey","features":[28,1]},{"name":"NtSetInformationKey","features":[28,1]},{"name":"REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION","features":[28,1]},{"name":"REG_SET_INFORMATION_KEY_INFORMATION","features":[28]},{"name":"ZwSetInformationKey","features":[28,1]}],"349":[{"name":"NtQuerySystemInformation","features":[29,1]},{"name":"NtQuerySystemTime","features":[29,1]},{"name":"NtQueryTimerResolution","features":[29,1]},{"name":"SYSTEM_INFORMATION_CLASS","features":[29]},{"name":"SystemBasicInformation","features":[29]},{"name":"SystemCodeIntegrityInformation","features":[29]},{"name":"SystemExceptionInformation","features":[29]},{"name":"SystemInterruptInformation","features":[29]},{"name":"SystemLookasideInformation","features":[29]},{"name":"SystemPerformanceInformation","features":[29]},{"name":"SystemPolicyInformation","features":[29]},{"name":"SystemProcessInformation","features":[29]},{"name":"SystemProcessorPerformanceInformation","features":[29]},{"name":"SystemRegistryQuotaInformation","features":[29]},{"name":"SystemTimeOfDayInformation","features":[29]}],"350":[{"name":"ACPIBus","features":[3]},{"name":"ACPI_DEBUGGING_DEVICE_IN_USE","features":[3]},{"name":"ACPI_INTERFACE_STANDARD","features":[2,5,3,1,4,6,7,8]},{"name":"ACPI_INTERFACE_STANDARD2","features":[3,1]},{"name":"ADAPTER_INFO_API_BYPASS","features":[3]},{"name":"ADAPTER_INFO_SYNCHRONOUS_CALLBACK","features":[3]},{"name":"AGP_TARGET_BUS_INTERFACE_STANDARD","features":[3]},{"name":"ALLOCATE_FUNCTION","features":[2,3]},{"name":"ALLOC_DATA_PRAGMA","features":[3]},{"name":"ALLOC_PRAGMA","features":[3]},{"name":"ALTERNATIVE_ARCHITECTURE_TYPE","features":[3]},{"name":"AMD_L1_CACHE_INFO","features":[3]},{"name":"AMD_L2_CACHE_INFO","features":[3]},{"name":"AMD_L3_CACHE_INFO","features":[3]},{"name":"ANY_SIZE","features":[3]},{"name":"APC_LEVEL","features":[3]},{"name":"ARBITER_ACTION","features":[3]},{"name":"ARBITER_ADD_RESERVED_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"ARBITER_BOOT_ALLOCATION_PARAMETERS","features":[3,7]},{"name":"ARBITER_CONFLICT_INFO","features":[2,5,3,1,4,6,7,8]},{"name":"ARBITER_FLAG_BOOT_CONFIG","features":[3]},{"name":"ARBITER_FLAG_OTHER_ENUM","features":[3]},{"name":"ARBITER_FLAG_ROOT_ENUM","features":[3]},{"name":"ARBITER_INTERFACE","features":[2,5,3,1,4,6,7,8]},{"name":"ARBITER_LIST_ENTRY","features":[2,5,3,1,4,6,7,8]},{"name":"ARBITER_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"ARBITER_PARTIAL","features":[3]},{"name":"ARBITER_QUERY_ALLOCATED_RESOURCES_PARAMETERS","features":[3]},{"name":"ARBITER_QUERY_ARBITRATE_PARAMETERS","features":[3,7]},{"name":"ARBITER_QUERY_CONFLICT_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"ARBITER_REQUEST_SOURCE","features":[3]},{"name":"ARBITER_RESULT","features":[3]},{"name":"ARBITER_RETEST_ALLOCATION_PARAMETERS","features":[3,7]},{"name":"ARBITER_TEST_ALLOCATION_PARAMETERS","features":[3,7]},{"name":"ARM64_NT_CONTEXT","features":[3,30]},{"name":"ARM64_PCR_RESERVED_MASK","features":[3]},{"name":"ARM_PROCESSOR_ERROR_SECTION_GUID","features":[3]},{"name":"ATS_DEVICE_SVM_OPTOUT","features":[3]},{"name":"AccessFlagFault","features":[3]},{"name":"AddressSizeFault","features":[3]},{"name":"AgpControl","features":[3]},{"name":"AllLoggerHandlesClass","features":[3]},{"name":"AperturePageSize","features":[3]},{"name":"ApertureSize","features":[3]},{"name":"ApicDestinationModeLogicalClustered","features":[3]},{"name":"ApicDestinationModeLogicalFlat","features":[3]},{"name":"ApicDestinationModePhysical","features":[3]},{"name":"ApicDestinationModeUnknown","features":[3]},{"name":"ArbiterActionAddReserved","features":[3]},{"name":"ArbiterActionBootAllocation","features":[3]},{"name":"ArbiterActionCommitAllocation","features":[3]},{"name":"ArbiterActionQueryAllocatedResources","features":[3]},{"name":"ArbiterActionQueryArbitrate","features":[3]},{"name":"ArbiterActionQueryConflict","features":[3]},{"name":"ArbiterActionRetestAllocation","features":[3]},{"name":"ArbiterActionRollbackAllocation","features":[3]},{"name":"ArbiterActionTestAllocation","features":[3]},{"name":"ArbiterActionWriteReservedResources","features":[3]},{"name":"ArbiterRequestHalReported","features":[3]},{"name":"ArbiterRequestLegacyAssigned","features":[3]},{"name":"ArbiterRequestLegacyReported","features":[3]},{"name":"ArbiterRequestPnpDetected","features":[3]},{"name":"ArbiterRequestPnpEnumerated","features":[3]},{"name":"ArbiterRequestUndefined","features":[3]},{"name":"ArbiterResultExternalConflict","features":[3]},{"name":"ArbiterResultNullRequest","features":[3]},{"name":"ArbiterResultSuccess","features":[3]},{"name":"ArbiterResultUndefined","features":[3]},{"name":"ArcSystem","features":[3]},{"name":"AssignSecurityDescriptor","features":[3]},{"name":"AudioController","features":[3]},{"name":"BDCB_CALLBACK_TYPE","features":[3]},{"name":"BDCB_CLASSIFICATION","features":[3]},{"name":"BDCB_IMAGE_INFORMATION","features":[3,1]},{"name":"BDCB_STATUS_UPDATE_CONTEXT","features":[3]},{"name":"BDCB_STATUS_UPDATE_TYPE","features":[3]},{"name":"BMC_NOTIFY_TYPE_GUID","features":[3]},{"name":"BOOTDISK_INFORMATION","features":[3]},{"name":"BOOTDISK_INFORMATION_EX","features":[3,1]},{"name":"BOOTDISK_INFORMATION_LITE","features":[3]},{"name":"BOOT_DRIVER_CALLBACK_FUNCTION","features":[3,1]},{"name":"BOOT_NOTIFY_TYPE_GUID","features":[3]},{"name":"BOUND_CALLBACK","features":[3]},{"name":"BOUND_CALLBACK_STATUS","features":[3]},{"name":"BUS_DATA_TYPE","features":[3]},{"name":"BUS_INTERFACE_STANDARD","features":[2,5,3,1,4,6,7,8]},{"name":"BUS_QUERY_ID_TYPE","features":[3]},{"name":"BUS_RESOURCE_UPDATE_INTERFACE","features":[3,1]},{"name":"BUS_SPECIFIC_RESET_FLAGS","features":[3]},{"name":"BackgroundWorkQueue","features":[3]},{"name":"BdCbClassificationEnd","features":[3]},{"name":"BdCbClassificationKnownBadImage","features":[3]},{"name":"BdCbClassificationKnownBadImageBootCritical","features":[3]},{"name":"BdCbClassificationKnownGoodImage","features":[3]},{"name":"BdCbClassificationUnknownImage","features":[3]},{"name":"BdCbInitializeImage","features":[3]},{"name":"BdCbStatusPrepareForDependencyLoad","features":[3]},{"name":"BdCbStatusPrepareForDriverLoad","features":[3]},{"name":"BdCbStatusPrepareForUnload","features":[3]},{"name":"BdCbStatusUpdate","features":[3]},{"name":"BoundExceptionContinueSearch","features":[3]},{"name":"BoundExceptionError","features":[3]},{"name":"BoundExceptionHandled","features":[3]},{"name":"BoundExceptionMaximum","features":[3]},{"name":"BufferEmpty","features":[3]},{"name":"BufferFinished","features":[3]},{"name":"BufferIncomplete","features":[3]},{"name":"BufferInserted","features":[3]},{"name":"BufferStarted","features":[3]},{"name":"BusQueryCompatibleIDs","features":[3]},{"name":"BusQueryContainerID","features":[3]},{"name":"BusQueryDeviceID","features":[3]},{"name":"BusQueryDeviceSerialNumber","features":[3]},{"name":"BusQueryHardwareIDs","features":[3]},{"name":"BusQueryInstanceID","features":[3]},{"name":"BusRelations","features":[3]},{"name":"BusWidth32Bits","features":[3]},{"name":"BusWidth64Bits","features":[3]},{"name":"CBus","features":[3]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[3]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION","features":[2,5,3,1,4,21,6,7,8]},{"name":"CLFS_SCAN_BACKWARD","features":[3]},{"name":"CLFS_SCAN_BUFFERED","features":[3]},{"name":"CLFS_SCAN_CLOSE","features":[3]},{"name":"CLFS_SCAN_FORWARD","features":[3]},{"name":"CLFS_SCAN_INIT","features":[3]},{"name":"CLFS_SCAN_INITIALIZED","features":[3]},{"name":"CLOCK1_LEVEL","features":[3]},{"name":"CLOCK2_LEVEL","features":[3]},{"name":"CLOCK_LEVEL","features":[3]},{"name":"CMCI_LEVEL","features":[3]},{"name":"CMCI_NOTIFY_TYPE_GUID","features":[3]},{"name":"CMC_DRIVER_INFO","features":[2,3]},{"name":"CMC_NOTIFY_TYPE_GUID","features":[3]},{"name":"CM_COMPONENT_INFORMATION","features":[3]},{"name":"CM_DISK_GEOMETRY_DEVICE_DATA","features":[3]},{"name":"CM_EISA_FUNCTION_INFORMATION","features":[3]},{"name":"CM_EISA_SLOT_INFORMATION","features":[3]},{"name":"CM_FLOPPY_DEVICE_DATA","features":[3]},{"name":"CM_FULL_RESOURCE_DESCRIPTOR","features":[3]},{"name":"CM_INT13_DRIVE_PARAMETER","features":[3]},{"name":"CM_KEYBOARD_DEVICE_DATA","features":[3]},{"name":"CM_MCA_POS_DATA","features":[3]},{"name":"CM_MONITOR_DEVICE_DATA","features":[3]},{"name":"CM_PARTIAL_RESOURCE_DESCRIPTOR","features":[3]},{"name":"CM_PARTIAL_RESOURCE_LIST","features":[3]},{"name":"CM_PCCARD_DEVICE_DATA","features":[3]},{"name":"CM_PNP_BIOS_DEVICE_NODE","features":[3]},{"name":"CM_PNP_BIOS_INSTALLATION_CHECK","features":[3]},{"name":"CM_POWER_DATA","features":[3,8]},{"name":"CM_RESOURCE_CONNECTION_CLASS_FUNCTION_CONFIG","features":[3]},{"name":"CM_RESOURCE_CONNECTION_CLASS_GPIO","features":[3]},{"name":"CM_RESOURCE_CONNECTION_CLASS_SERIAL","features":[3]},{"name":"CM_RESOURCE_CONNECTION_TYPE_FUNCTION_CONFIG","features":[3]},{"name":"CM_RESOURCE_CONNECTION_TYPE_GPIO_IO","features":[3]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_I2C","features":[3]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_SPI","features":[3]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_UART","features":[3]},{"name":"CM_RESOURCE_DMA_16","features":[3]},{"name":"CM_RESOURCE_DMA_32","features":[3]},{"name":"CM_RESOURCE_DMA_8","features":[3]},{"name":"CM_RESOURCE_DMA_8_AND_16","features":[3]},{"name":"CM_RESOURCE_DMA_BUS_MASTER","features":[3]},{"name":"CM_RESOURCE_DMA_TYPE_A","features":[3]},{"name":"CM_RESOURCE_DMA_TYPE_B","features":[3]},{"name":"CM_RESOURCE_DMA_TYPE_F","features":[3]},{"name":"CM_RESOURCE_DMA_V3","features":[3]},{"name":"CM_RESOURCE_INTERRUPT_LATCHED","features":[3]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_LATCHED_BITS","features":[3]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_SENSITIVE","features":[3]},{"name":"CM_RESOURCE_INTERRUPT_MESSAGE","features":[3]},{"name":"CM_RESOURCE_INTERRUPT_POLICY_INCLUDED","features":[3]},{"name":"CM_RESOURCE_INTERRUPT_SECONDARY_INTERRUPT","features":[3]},{"name":"CM_RESOURCE_INTERRUPT_WAKE_HINT","features":[3]},{"name":"CM_RESOURCE_LIST","features":[3]},{"name":"CM_RESOURCE_MEMORY_24","features":[3]},{"name":"CM_RESOURCE_MEMORY_BAR","features":[3]},{"name":"CM_RESOURCE_MEMORY_CACHEABLE","features":[3]},{"name":"CM_RESOURCE_MEMORY_COMBINEDWRITE","features":[3]},{"name":"CM_RESOURCE_MEMORY_COMPAT_FOR_INACCESSIBLE_RANGE","features":[3]},{"name":"CM_RESOURCE_MEMORY_LARGE","features":[3]},{"name":"CM_RESOURCE_MEMORY_LARGE_40","features":[3]},{"name":"CM_RESOURCE_MEMORY_LARGE_40_MAXLEN","features":[3]},{"name":"CM_RESOURCE_MEMORY_LARGE_48","features":[3]},{"name":"CM_RESOURCE_MEMORY_LARGE_48_MAXLEN","features":[3]},{"name":"CM_RESOURCE_MEMORY_LARGE_64","features":[3]},{"name":"CM_RESOURCE_MEMORY_LARGE_64_MAXLEN","features":[3]},{"name":"CM_RESOURCE_MEMORY_PREFETCHABLE","features":[3]},{"name":"CM_RESOURCE_MEMORY_READ_ONLY","features":[3]},{"name":"CM_RESOURCE_MEMORY_READ_WRITE","features":[3]},{"name":"CM_RESOURCE_MEMORY_WINDOW_DECODE","features":[3]},{"name":"CM_RESOURCE_MEMORY_WRITEABILITY_MASK","features":[3]},{"name":"CM_RESOURCE_MEMORY_WRITE_ONLY","features":[3]},{"name":"CM_RESOURCE_PORT_10_BIT_DECODE","features":[3]},{"name":"CM_RESOURCE_PORT_12_BIT_DECODE","features":[3]},{"name":"CM_RESOURCE_PORT_16_BIT_DECODE","features":[3]},{"name":"CM_RESOURCE_PORT_BAR","features":[3]},{"name":"CM_RESOURCE_PORT_IO","features":[3]},{"name":"CM_RESOURCE_PORT_MEMORY","features":[3]},{"name":"CM_RESOURCE_PORT_PASSIVE_DECODE","features":[3]},{"name":"CM_RESOURCE_PORT_POSITIVE_DECODE","features":[3]},{"name":"CM_RESOURCE_PORT_WINDOW_DECODE","features":[3]},{"name":"CM_ROM_BLOCK","features":[3]},{"name":"CM_SCSI_DEVICE_DATA","features":[3]},{"name":"CM_SERIAL_DEVICE_DATA","features":[3]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[3]},{"name":"CM_SHARE_DISPOSITION","features":[3]},{"name":"CM_SONIC_DEVICE_DATA","features":[3]},{"name":"CM_VIDEO_DEVICE_DATA","features":[3]},{"name":"CONFIGURATION_INFORMATION","features":[3,1]},{"name":"CONFIGURATION_TYPE","features":[3]},{"name":"CONNECT_CURRENT_VERSION","features":[3]},{"name":"CONNECT_FULLY_SPECIFIED","features":[3]},{"name":"CONNECT_FULLY_SPECIFIED_GROUP","features":[3]},{"name":"CONNECT_LINE_BASED","features":[3]},{"name":"CONNECT_MESSAGE_BASED","features":[3]},{"name":"CONNECT_MESSAGE_BASED_PASSIVE","features":[3]},{"name":"CONTROLLER_OBJECT","features":[2,3,1,7]},{"name":"COUNTED_REASON_CONTEXT","features":[3,1]},{"name":"CP15_PCR_RESERVED_MASK","features":[3]},{"name":"CPER_EMPTY_GUID","features":[3]},{"name":"CPE_DRIVER_INFO","features":[2,3]},{"name":"CPE_NOTIFY_TYPE_GUID","features":[3]},{"name":"CP_GET_ERROR","features":[3]},{"name":"CP_GET_NODATA","features":[3]},{"name":"CP_GET_SUCCESS","features":[3]},{"name":"CRASHDUMP_FUNCTIONS_INTERFACE","features":[3,1]},{"name":"CREATE_FILE_TYPE","features":[3]},{"name":"CREATE_USER_PROCESS_ECP_CONTEXT","features":[3]},{"name":"CardPresent","features":[3]},{"name":"CbusConfiguration","features":[3]},{"name":"CdromController","features":[3]},{"name":"CentralProcessor","features":[3]},{"name":"ClfsAddLogContainer","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsAddLogContainerSet","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsAdvanceLogBase","features":[3,1,21]},{"name":"ClfsAlignReservedLog","features":[3,1]},{"name":"ClfsAllocReservedLog","features":[3,1]},{"name":"ClfsClientRecord","features":[3]},{"name":"ClfsCloseAndResetLogFile","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsCloseLogFileObject","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsContainerActive","features":[3]},{"name":"ClfsContainerActivePendingDelete","features":[3]},{"name":"ClfsContainerInactive","features":[3]},{"name":"ClfsContainerInitializing","features":[3]},{"name":"ClfsContainerPendingArchive","features":[3]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[3]},{"name":"ClfsCreateLogFile","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsCreateMarshallingArea","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsCreateMarshallingAreaEx","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsCreateScanContext","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsDataRecord","features":[3]},{"name":"ClfsDeleteLogByPointer","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsDeleteLogFile","features":[3,1]},{"name":"ClfsDeleteMarshallingArea","features":[3,1]},{"name":"ClfsEarlierLsn","features":[3,21]},{"name":"ClfsFinalize","features":[3]},{"name":"ClfsFlushBuffers","features":[3,1]},{"name":"ClfsFlushToLsn","features":[3,1,21]},{"name":"ClfsFreeReservedLog","features":[3,1]},{"name":"ClfsGetContainerName","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsGetIoStatistics","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsGetLogFileInformation","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsInitialize","features":[3,1]},{"name":"ClfsLaterLsn","features":[3,21]},{"name":"ClfsLsnBlockOffset","features":[3,21]},{"name":"ClfsLsnContainer","features":[3,21]},{"name":"ClfsLsnCreate","features":[3,21]},{"name":"ClfsLsnDifference","features":[3,1,21]},{"name":"ClfsLsnEqual","features":[3,1,21]},{"name":"ClfsLsnGreater","features":[3,1,21]},{"name":"ClfsLsnInvalid","features":[3,1,21]},{"name":"ClfsLsnLess","features":[3,1,21]},{"name":"ClfsLsnNull","features":[3,1,21]},{"name":"ClfsLsnRecordSequence","features":[3,21]},{"name":"ClfsMgmtDeregisterManagedClient","features":[3,1]},{"name":"ClfsMgmtHandleLogFileFull","features":[3,1]},{"name":"ClfsMgmtInstallPolicy","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsMgmtQueryPolicy","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsMgmtRegisterManagedClient","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsMgmtRemovePolicy","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsMgmtSetLogFileSize","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsMgmtSetLogFileSizeAsClient","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsMgmtTailAdvanceFailure","features":[3,1]},{"name":"ClfsNullRecord","features":[3]},{"name":"ClfsQueryLogFileInformation","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsReadLogRecord","features":[3,1,21]},{"name":"ClfsReadNextLogRecord","features":[3,1,21]},{"name":"ClfsReadPreviousRestartArea","features":[3,1,21]},{"name":"ClfsReadRestartArea","features":[3,1,21]},{"name":"ClfsRemoveLogContainer","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsRemoveLogContainerSet","features":[2,5,3,1,4,6,7,8]},{"name":"ClfsReserveAndAppendLog","features":[3,1,21]},{"name":"ClfsReserveAndAppendLogAligned","features":[3,1,21]},{"name":"ClfsRestartRecord","features":[3]},{"name":"ClfsScanLogContainers","features":[3,1,21]},{"name":"ClfsSetArchiveTail","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsSetEndOfLog","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsSetLogFileInformation","features":[2,5,3,1,4,21,6,7,8]},{"name":"ClfsTerminateReadLog","features":[3,1]},{"name":"ClfsWriteRestartArea","features":[3,1,21]},{"name":"ClsContainerActive","features":[3]},{"name":"ClsContainerActivePendingDelete","features":[3]},{"name":"ClsContainerInactive","features":[3]},{"name":"ClsContainerInitializing","features":[3]},{"name":"ClsContainerPendingArchive","features":[3]},{"name":"ClsContainerPendingArchiveAndDelete","features":[3]},{"name":"CmCallbackGetKeyObjectID","features":[3,1]},{"name":"CmCallbackGetKeyObjectIDEx","features":[3,1]},{"name":"CmCallbackReleaseKeyObjectIDEx","features":[3,1]},{"name":"CmGetBoundTransaction","features":[3]},{"name":"CmGetCallbackVersion","features":[3]},{"name":"CmRegisterCallback","features":[3,1]},{"name":"CmRegisterCallbackEx","features":[3,1]},{"name":"CmResourceShareDeviceExclusive","features":[3]},{"name":"CmResourceShareDriverExclusive","features":[3]},{"name":"CmResourceShareShared","features":[3]},{"name":"CmResourceShareUndetermined","features":[3]},{"name":"CmResourceTypeBusNumber","features":[3]},{"name":"CmResourceTypeConfigData","features":[3]},{"name":"CmResourceTypeConnection","features":[3]},{"name":"CmResourceTypeDevicePrivate","features":[3]},{"name":"CmResourceTypeDeviceSpecific","features":[3]},{"name":"CmResourceTypeDma","features":[3]},{"name":"CmResourceTypeInterrupt","features":[3]},{"name":"CmResourceTypeMaximum","features":[3]},{"name":"CmResourceTypeMemory","features":[3]},{"name":"CmResourceTypeMemoryLarge","features":[3]},{"name":"CmResourceTypeMfCardConfig","features":[3]},{"name":"CmResourceTypeNonArbitrated","features":[3]},{"name":"CmResourceTypeNull","features":[3]},{"name":"CmResourceTypePcCardConfig","features":[3]},{"name":"CmResourceTypePort","features":[3]},{"name":"CmSetCallbackObjectContext","features":[3,1]},{"name":"CmUnRegisterCallback","features":[3,1]},{"name":"Cmos","features":[3]},{"name":"CommonBufferConfigTypeHardwareAccessPermissions","features":[3]},{"name":"CommonBufferConfigTypeLogicalAddressLimits","features":[3]},{"name":"CommonBufferConfigTypeMax","features":[3]},{"name":"CommonBufferConfigTypeSubSection","features":[3]},{"name":"CommonBufferHardwareAccessMax","features":[3]},{"name":"CommonBufferHardwareAccessReadOnly","features":[3]},{"name":"CommonBufferHardwareAccessReadWrite","features":[3]},{"name":"CommonBufferHardwareAccessWriteOnly","features":[3]},{"name":"Compatible","features":[3]},{"name":"ConfigurationSpaceUndefined","features":[3]},{"name":"ContinueCompletion","features":[3]},{"name":"CreateFileTypeMailslot","features":[3]},{"name":"CreateFileTypeNamedPipe","features":[3]},{"name":"CreateFileTypeNone","features":[3]},{"name":"CriticalWorkQueue","features":[3]},{"name":"CustomPriorityWorkQueue","features":[3]},{"name":"D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[3,1]},{"name":"D3COLD_LAST_TRANSITION_STATUS","features":[3]},{"name":"D3COLD_REQUEST_AUX_POWER","features":[3,1]},{"name":"D3COLD_REQUEST_CORE_POWER_RAIL","features":[3,1]},{"name":"D3COLD_REQUEST_PERST_DELAY","features":[3,1]},{"name":"D3COLD_SUPPORT_INTERFACE","features":[3,1]},{"name":"D3COLD_SUPPORT_INTERFACE_VERSION","features":[3]},{"name":"DBG_DEVICE_FLAG_BARS_MAPPED","features":[3]},{"name":"DBG_DEVICE_FLAG_HAL_SCRATCH_ALLOCATED","features":[3]},{"name":"DBG_DEVICE_FLAG_HOST_VISIBLE_ALLOCATED","features":[3]},{"name":"DBG_DEVICE_FLAG_SCRATCH_ALLOCATED","features":[3]},{"name":"DBG_DEVICE_FLAG_SYNTHETIC","features":[3]},{"name":"DBG_DEVICE_FLAG_UNCACHED_MEMORY","features":[3]},{"name":"DBG_STATUS_BUGCHECK_FIRST","features":[3]},{"name":"DBG_STATUS_BUGCHECK_SECOND","features":[3]},{"name":"DBG_STATUS_CONTROL_C","features":[3]},{"name":"DBG_STATUS_DEBUG_CONTROL","features":[3]},{"name":"DBG_STATUS_FATAL","features":[3]},{"name":"DBG_STATUS_SYSRQ","features":[3]},{"name":"DBG_STATUS_WORKER","features":[3]},{"name":"DEBUGGING_DEVICE_IN_USE","features":[3]},{"name":"DEBUGGING_DEVICE_IN_USE_INFORMATION","features":[3]},{"name":"DEBUG_DEVICE_ADDRESS","features":[3,1]},{"name":"DEBUG_DEVICE_DESCRIPTOR","features":[3,1]},{"name":"DEBUG_EFI_IOMMU_DATA","features":[3]},{"name":"DEBUG_MEMORY_REQUIREMENTS","features":[3,1]},{"name":"DEBUG_TRANSPORT_DATA","features":[3,1]},{"name":"DEFAULT_DEVICE_DRIVER_CREATOR_GUID","features":[3]},{"name":"DEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[3,1]},{"name":"DEVICE_BUS_SPECIFIC_RESET_INFO","features":[3]},{"name":"DEVICE_BUS_SPECIFIC_RESET_TYPE","features":[3]},{"name":"DEVICE_CAPABILITIES","features":[3,8]},{"name":"DEVICE_CHANGE_COMPLETE_CALLBACK","features":[3]},{"name":"DEVICE_DESCRIPTION","features":[3,1]},{"name":"DEVICE_DESCRIPTION_VERSION","features":[3]},{"name":"DEVICE_DESCRIPTION_VERSION1","features":[3]},{"name":"DEVICE_DESCRIPTION_VERSION2","features":[3]},{"name":"DEVICE_DESCRIPTION_VERSION3","features":[3]},{"name":"DEVICE_DIRECTORY_TYPE","features":[3]},{"name":"DEVICE_DRIVER_NOTIFY_TYPE_GUID","features":[3]},{"name":"DEVICE_FAULT_CONFIGURATION","features":[3]},{"name":"DEVICE_FLAGS","features":[3]},{"name":"DEVICE_INSTALL_STATE","features":[3]},{"name":"DEVICE_INTERFACE_CHANGE_NOTIFICATION","features":[3,1]},{"name":"DEVICE_INTERFACE_INCLUDE_NONACTIVE","features":[3]},{"name":"DEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[3,1]},{"name":"DEVICE_REGISTRY_PROPERTY","features":[3]},{"name":"DEVICE_RELATIONS","features":[2,5,3,1,4,6,7,8]},{"name":"DEVICE_RELATION_TYPE","features":[3]},{"name":"DEVICE_REMOVAL_POLICY","features":[3]},{"name":"DEVICE_RESET_COMPLETION","features":[3,1]},{"name":"DEVICE_RESET_HANDLER","features":[3,1]},{"name":"DEVICE_RESET_INTERFACE_STANDARD","features":[3,1]},{"name":"DEVICE_RESET_INTERFACE_VERSION","features":[3]},{"name":"DEVICE_RESET_INTERFACE_VERSION_1","features":[3]},{"name":"DEVICE_RESET_INTERFACE_VERSION_2","features":[3]},{"name":"DEVICE_RESET_INTERFACE_VERSION_3","features":[3]},{"name":"DEVICE_RESET_STATUS_FLAGS","features":[3]},{"name":"DEVICE_RESET_TYPE","features":[3]},{"name":"DEVICE_TEXT_TYPE","features":[3]},{"name":"DEVICE_USAGE_NOTIFICATION_TYPE","features":[3]},{"name":"DEVICE_WAKE_DEPTH","features":[3]},{"name":"DIRECTORY_CREATE_OBJECT","features":[3]},{"name":"DIRECTORY_CREATE_SUBDIRECTORY","features":[3]},{"name":"DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[3]},{"name":"DIRECTORY_QUERY","features":[3]},{"name":"DIRECTORY_TRAVERSE","features":[3]},{"name":"DISK_SIGNATURE","features":[3]},{"name":"DISPATCH_LEVEL","features":[3]},{"name":"DMAV3_TRANFER_WIDTH_128","features":[3]},{"name":"DMAV3_TRANFER_WIDTH_16","features":[3]},{"name":"DMAV3_TRANFER_WIDTH_256","features":[3]},{"name":"DMAV3_TRANFER_WIDTH_32","features":[3]},{"name":"DMAV3_TRANFER_WIDTH_64","features":[3]},{"name":"DMAV3_TRANFER_WIDTH_8","features":[3]},{"name":"DMA_ADAPTER","features":[2,5,3,1,4,6,7,8]},{"name":"DMA_ADAPTER_INFO","features":[3,1]},{"name":"DMA_ADAPTER_INFO_CRASHDUMP","features":[3,1]},{"name":"DMA_ADAPTER_INFO_V1","features":[3]},{"name":"DMA_ADAPTER_INFO_VERSION1","features":[3]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION","features":[3]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_ACCESS_TYPE","features":[3]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_TYPE","features":[3]},{"name":"DMA_COMPLETION_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"DMA_COMPLETION_STATUS","features":[3]},{"name":"DMA_CONFIGURATION_BYTE0","features":[3]},{"name":"DMA_CONFIGURATION_BYTE1","features":[3]},{"name":"DMA_FAIL_ON_BOUNCE","features":[3]},{"name":"DMA_IOMMU_INTERFACE","features":[3,1]},{"name":"DMA_IOMMU_INTERFACE_EX","features":[3,1]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION","features":[3]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_1","features":[3]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_2","features":[3]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MAX","features":[3]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MIN","features":[3]},{"name":"DMA_IOMMU_INTERFACE_V1","features":[3,1]},{"name":"DMA_IOMMU_INTERFACE_V2","features":[3,1]},{"name":"DMA_IOMMU_INTERFACE_VERSION","features":[3]},{"name":"DMA_IOMMU_INTERFACE_VERSION_1","features":[3]},{"name":"DMA_OPERATIONS","features":[2,5,3,1,4,6,7,8]},{"name":"DMA_SPEED","features":[3]},{"name":"DMA_SYNCHRONOUS_CALLBACK","features":[3]},{"name":"DMA_TRANSFER_CONTEXT_SIZE_V1","features":[3]},{"name":"DMA_TRANSFER_CONTEXT_VERSION1","features":[3]},{"name":"DMA_TRANSFER_INFO","features":[3]},{"name":"DMA_TRANSFER_INFO_V1","features":[3]},{"name":"DMA_TRANSFER_INFO_V2","features":[3]},{"name":"DMA_TRANSFER_INFO_VERSION1","features":[3]},{"name":"DMA_TRANSFER_INFO_VERSION2","features":[3]},{"name":"DMA_WIDTH","features":[3]},{"name":"DMA_ZERO_BUFFERS","features":[3]},{"name":"DOMAIN_COMMON_BUFFER_LARGE_PAGE","features":[3]},{"name":"DOMAIN_CONFIGURATION","features":[3,1]},{"name":"DOMAIN_CONFIGURATION_ARCH","features":[3]},{"name":"DOMAIN_CONFIGURATION_ARM64","features":[3,1]},{"name":"DOMAIN_CONFIGURATION_X64","features":[3,1]},{"name":"DPC_NORMAL","features":[3]},{"name":"DPC_THREADED","features":[3]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK","features":[3]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_REVISION_1","features":[3]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_SIGNATURE","features":[3]},{"name":"DRIVER_DIRECTORY_TYPE","features":[3]},{"name":"DRIVER_LIST_CONTROL","features":[2,5,3,1,4,6,7,8]},{"name":"DRIVER_REGKEY_TYPE","features":[3]},{"name":"DRIVER_RUNTIME_INIT_FLAGS","features":[3]},{"name":"DRIVER_VERIFIER_FORCE_IRQL_CHECKING","features":[3]},{"name":"DRIVER_VERIFIER_INJECT_ALLOCATION_FAILURES","features":[3]},{"name":"DRIVER_VERIFIER_IO_CHECKING","features":[3]},{"name":"DRIVER_VERIFIER_SPECIAL_POOLING","features":[3]},{"name":"DRIVER_VERIFIER_THUNK_PAIRS","features":[3]},{"name":"DRIVER_VERIFIER_TRACK_POOL_ALLOCATIONS","features":[3]},{"name":"DRS_LEVEL","features":[3]},{"name":"DRVO_BOOTREINIT_REGISTERED","features":[3]},{"name":"DRVO_BUILTIN_DRIVER","features":[3]},{"name":"DRVO_INITIALIZED","features":[3]},{"name":"DRVO_LEGACY_DRIVER","features":[3]},{"name":"DRVO_LEGACY_RESOURCES","features":[3]},{"name":"DRVO_REINIT_REGISTERED","features":[3]},{"name":"DRVO_UNLOAD_INVOKED","features":[3]},{"name":"DUPLICATE_SAME_ATTRIBUTES","features":[3]},{"name":"DbgBreakPointWithStatus","features":[3]},{"name":"DbgPrint","features":[3]},{"name":"DbgPrintEx","features":[3]},{"name":"DbgPrintReturnControlC","features":[3]},{"name":"DbgPrompt","features":[3]},{"name":"DbgQueryDebugFilterState","features":[3,1]},{"name":"DbgSetDebugFilterState","features":[3,1]},{"name":"DbgSetDebugPrintCallback","features":[3,1,7]},{"name":"DeallocateObject","features":[3]},{"name":"DeallocateObjectKeepRegisters","features":[3]},{"name":"DelayExecution","features":[3]},{"name":"DelayedWorkQueue","features":[3]},{"name":"DeleteSecurityDescriptor","features":[3]},{"name":"DeviceDirectoryData","features":[3]},{"name":"DevicePowerState","features":[3]},{"name":"DevicePropertyAddress","features":[3]},{"name":"DevicePropertyAllocatedResources","features":[3]},{"name":"DevicePropertyBootConfiguration","features":[3]},{"name":"DevicePropertyBootConfigurationTranslated","features":[3]},{"name":"DevicePropertyBusNumber","features":[3]},{"name":"DevicePropertyBusTypeGuid","features":[3]},{"name":"DevicePropertyClassGuid","features":[3]},{"name":"DevicePropertyClassName","features":[3]},{"name":"DevicePropertyCompatibleIDs","features":[3]},{"name":"DevicePropertyContainerID","features":[3]},{"name":"DevicePropertyDeviceDescription","features":[3]},{"name":"DevicePropertyDriverKeyName","features":[3]},{"name":"DevicePropertyEnumeratorName","features":[3]},{"name":"DevicePropertyFriendlyName","features":[3]},{"name":"DevicePropertyHardwareID","features":[3]},{"name":"DevicePropertyInstallState","features":[3]},{"name":"DevicePropertyLegacyBusType","features":[3]},{"name":"DevicePropertyLocationInformation","features":[3]},{"name":"DevicePropertyManufacturer","features":[3]},{"name":"DevicePropertyPhysicalDeviceObjectName","features":[3]},{"name":"DevicePropertyRemovalPolicy","features":[3]},{"name":"DevicePropertyResourceRequirements","features":[3]},{"name":"DevicePropertyUINumber","features":[3]},{"name":"DeviceTextDescription","features":[3]},{"name":"DeviceTextLocationInformation","features":[3]},{"name":"DeviceUsageTypeBoot","features":[3]},{"name":"DeviceUsageTypeDumpFile","features":[3]},{"name":"DeviceUsageTypeGuestAssigned","features":[3]},{"name":"DeviceUsageTypeHibernation","features":[3]},{"name":"DeviceUsageTypePaging","features":[3]},{"name":"DeviceUsageTypePostDisplay","features":[3]},{"name":"DeviceUsageTypeUndefined","features":[3]},{"name":"DeviceWakeDepthD0","features":[3]},{"name":"DeviceWakeDepthD1","features":[3]},{"name":"DeviceWakeDepthD2","features":[3]},{"name":"DeviceWakeDepthD3cold","features":[3]},{"name":"DeviceWakeDepthD3hot","features":[3]},{"name":"DeviceWakeDepthMaximum","features":[3]},{"name":"DeviceWakeDepthNotWakeable","features":[3]},{"name":"DirectoryNotifyExtendedInformation","features":[3]},{"name":"DirectoryNotifyFullInformation","features":[3]},{"name":"DirectoryNotifyInformation","features":[3]},{"name":"DirectoryNotifyMaximumInformation","features":[3]},{"name":"DisabledControl","features":[3]},{"name":"DiskController","features":[3]},{"name":"DiskIoNotifyRoutinesClass","features":[3]},{"name":"DiskPeripheral","features":[3]},{"name":"DisplayController","features":[3]},{"name":"DmaAborted","features":[3]},{"name":"DmaCancelled","features":[3]},{"name":"DmaComplete","features":[3]},{"name":"DmaError","features":[3]},{"name":"DockingInformation","features":[3]},{"name":"DomainConfigurationArm64","features":[3]},{"name":"DomainConfigurationInvalid","features":[3]},{"name":"DomainConfigurationX64","features":[3]},{"name":"DomainTypeMax","features":[3]},{"name":"DomainTypePassThrough","features":[3]},{"name":"DomainTypeTranslate","features":[3]},{"name":"DomainTypeUnmanaged","features":[3]},{"name":"DriverDirectoryData","features":[3]},{"name":"DriverDirectoryImage","features":[3]},{"name":"DriverDirectorySharedData","features":[3]},{"name":"DriverRegKeyParameters","features":[3]},{"name":"DriverRegKeyPersistentState","features":[3]},{"name":"DriverRegKeySharedPersistentState","features":[3]},{"name":"DrvRtPoolNxOptIn","features":[3]},{"name":"DtiAdapter","features":[3]},{"name":"EFI_ACPI_RAS_SIGNAL_TABLE","features":[3]},{"name":"EFLAG_SIGN","features":[3]},{"name":"EFLAG_ZERO","features":[3]},{"name":"EISA_DMA_CONFIGURATION","features":[3]},{"name":"EISA_EMPTY_SLOT","features":[3]},{"name":"EISA_FREE_FORM_DATA","features":[3]},{"name":"EISA_FUNCTION_ENABLED","features":[3]},{"name":"EISA_HAS_DMA_ENTRY","features":[3]},{"name":"EISA_HAS_IRQ_ENTRY","features":[3]},{"name":"EISA_HAS_MEMORY_ENTRY","features":[3]},{"name":"EISA_HAS_PORT_INIT_ENTRY","features":[3]},{"name":"EISA_HAS_PORT_RANGE","features":[3]},{"name":"EISA_HAS_TYPE_ENTRY","features":[3]},{"name":"EISA_INVALID_BIOS_CALL","features":[3]},{"name":"EISA_INVALID_CONFIGURATION","features":[3]},{"name":"EISA_INVALID_FUNCTION","features":[3]},{"name":"EISA_INVALID_SLOT","features":[3]},{"name":"EISA_IRQ_CONFIGURATION","features":[3]},{"name":"EISA_IRQ_DESCRIPTOR","features":[3]},{"name":"EISA_MEMORY_CONFIGURATION","features":[3]},{"name":"EISA_MEMORY_TYPE","features":[3]},{"name":"EISA_MEMORY_TYPE_RAM","features":[3]},{"name":"EISA_MORE_ENTRIES","features":[3]},{"name":"EISA_PORT_CONFIGURATION","features":[3]},{"name":"EISA_PORT_DESCRIPTOR","features":[3]},{"name":"EISA_SYSTEM_MEMORY","features":[3]},{"name":"ENABLE_VIRTUALIZATION","features":[3,1]},{"name":"ERROR_LOG_LIMIT_SIZE","features":[3]},{"name":"ERROR_MAJOR_REVISION_SAL_03_00","features":[3]},{"name":"ERROR_MEMORY_GUID","features":[3]},{"name":"ERROR_MINOR_REVISION_SAL_03_00","features":[3]},{"name":"ERROR_PCI_BUS_GUID","features":[3]},{"name":"ERROR_PCI_COMPONENT_GUID","features":[3]},{"name":"ERROR_PLATFORM_BUS_GUID","features":[3]},{"name":"ERROR_PLATFORM_HOST_CONTROLLER_GUID","features":[3]},{"name":"ERROR_PLATFORM_SPECIFIC_GUID","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_MASK","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_SHIFT","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_MASK","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_SHIFT","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_MASK","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_SHIFT","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_MASK","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_SHIFT","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_MASK","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_SHIFT","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_MASK","features":[3]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_SHIFT","features":[3]},{"name":"ERROR_SMBIOS_GUID","features":[3]},{"name":"ERROR_SYSTEM_EVENT_LOG_GUID","features":[3]},{"name":"ERRTYP_BUS","features":[3]},{"name":"ERRTYP_CACHE","features":[3]},{"name":"ERRTYP_FLOW","features":[3]},{"name":"ERRTYP_FUNCTION","features":[3]},{"name":"ERRTYP_IMPROPER","features":[3]},{"name":"ERRTYP_INTERNAL","features":[3]},{"name":"ERRTYP_LOSSOFLOCKSTEP","features":[3]},{"name":"ERRTYP_MAP","features":[3]},{"name":"ERRTYP_MEM","features":[3]},{"name":"ERRTYP_PARITY","features":[3]},{"name":"ERRTYP_PATHERROR","features":[3]},{"name":"ERRTYP_POISONED","features":[3]},{"name":"ERRTYP_PROTOCOL","features":[3]},{"name":"ERRTYP_RESPONSE","features":[3]},{"name":"ERRTYP_SELFTEST","features":[3]},{"name":"ERRTYP_TIMEOUT","features":[3]},{"name":"ERRTYP_TLB","features":[3]},{"name":"ERRTYP_UNIMPL","features":[3]},{"name":"ETWENABLECALLBACK","features":[3,31]},{"name":"ETW_TRACE_SESSION_SETTINGS","features":[3]},{"name":"EVENT_QUERY_STATE","features":[3]},{"name":"EXCEPTION_ALIGNMENT_CHECK","features":[3]},{"name":"EXCEPTION_BOUND_CHECK","features":[3]},{"name":"EXCEPTION_CP_FAULT","features":[3]},{"name":"EXCEPTION_DEBUG","features":[3]},{"name":"EXCEPTION_DIVIDED_BY_ZERO","features":[3]},{"name":"EXCEPTION_DOUBLE_FAULT","features":[3]},{"name":"EXCEPTION_GP_FAULT","features":[3]},{"name":"EXCEPTION_INT3","features":[3]},{"name":"EXCEPTION_INVALID_OPCODE","features":[3]},{"name":"EXCEPTION_INVALID_TSS","features":[3]},{"name":"EXCEPTION_NMI","features":[3]},{"name":"EXCEPTION_NPX_ERROR","features":[3]},{"name":"EXCEPTION_NPX_NOT_AVAILABLE","features":[3]},{"name":"EXCEPTION_NPX_OVERRUN","features":[3]},{"name":"EXCEPTION_RESERVED_TRAP","features":[3]},{"name":"EXCEPTION_SEGMENT_NOT_PRESENT","features":[3]},{"name":"EXCEPTION_SE_FAULT","features":[3]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[3]},{"name":"EXCEPTION_STACK_FAULT","features":[3]},{"name":"EXCEPTION_VIRTUALIZATION_FAULT","features":[3]},{"name":"EXPAND_STACK_CALLOUT","features":[3]},{"name":"EXTENDED_AGP_REGISTER","features":[3]},{"name":"EXTENDED_CREATE_INFORMATION","features":[3]},{"name":"EXTENDED_CREATE_INFORMATION_32","features":[3]},{"name":"EXTINT_NOTIFY_TYPE_GUID","features":[3]},{"name":"EXT_CALLBACK","features":[2,3]},{"name":"EXT_DELETE_CALLBACK","features":[3]},{"name":"EXT_DELETE_PARAMETERS","features":[3]},{"name":"EX_CALLBACK_FUNCTION","features":[3,1]},{"name":"EX_CARR_ALLOCATE_NONPAGED_POOL","features":[3]},{"name":"EX_CARR_ALLOCATE_PAGED_POOL","features":[3]},{"name":"EX_CARR_DISABLE_EXPANSION","features":[3]},{"name":"EX_CREATE_FLAG_FILE_DEST_OPEN_FOR_COPY","features":[3]},{"name":"EX_CREATE_FLAG_FILE_SOURCE_OPEN_FOR_COPY","features":[3]},{"name":"EX_DEFAULT_PUSH_LOCK_FLAGS","features":[3]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_FAIL_NO_RAISE","features":[3]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_RAISE_ON_FAIL","features":[3]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_BASE","features":[3]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_LIMIT","features":[3]},{"name":"EX_POOL_PRIORITY","features":[3]},{"name":"EX_RUNDOWN_ACTIVE","features":[3]},{"name":"EX_RUNDOWN_COUNT_SHIFT","features":[3]},{"name":"EX_RUNDOWN_REF","features":[3]},{"name":"EX_TIMER_HIGH_RESOLUTION","features":[3]},{"name":"EX_TIMER_NO_WAKE","features":[3]},{"name":"Eisa","features":[3]},{"name":"EisaAdapter","features":[3]},{"name":"EisaConfiguration","features":[3]},{"name":"EjectionRelations","features":[3]},{"name":"EndAlternatives","features":[3]},{"name":"EtwActivityIdControl","features":[3,1]},{"name":"EtwEventEnabled","features":[3,1,31]},{"name":"EtwProviderEnabled","features":[3,1]},{"name":"EtwRegister","features":[3,1]},{"name":"EtwSetInformation","features":[3,1,31]},{"name":"EtwUnregister","features":[3,1]},{"name":"EtwWrite","features":[3,1,31]},{"name":"EtwWriteEx","features":[3,1,31]},{"name":"EtwWriteString","features":[3,1]},{"name":"EtwWriteTransfer","features":[3,1,31]},{"name":"EventCategoryDeviceInterfaceChange","features":[3]},{"name":"EventCategoryHardwareProfileChange","features":[3]},{"name":"EventCategoryKernelSoftRestart","features":[3]},{"name":"EventCategoryReserved","features":[3]},{"name":"EventCategoryTargetDeviceChange","features":[3]},{"name":"EventLoggerHandleClass","features":[3]},{"name":"ExAcquireFastMutex","features":[2,3,1,7]},{"name":"ExAcquireFastMutexUnsafe","features":[2,3,1,7]},{"name":"ExAcquirePushLockExclusiveEx","features":[3]},{"name":"ExAcquirePushLockSharedEx","features":[3]},{"name":"ExAcquireResourceExclusiveLite","features":[2,3,1,7]},{"name":"ExAcquireResourceSharedLite","features":[2,3,1,7]},{"name":"ExAcquireRundownProtection","features":[3,1]},{"name":"ExAcquireRundownProtectionCacheAware","features":[2,3,1]},{"name":"ExAcquireRundownProtectionCacheAwareEx","features":[2,3,1]},{"name":"ExAcquireRundownProtectionEx","features":[3,1]},{"name":"ExAcquireSharedStarveExclusive","features":[2,3,1,7]},{"name":"ExAcquireSharedWaitForExclusive","features":[2,3,1,7]},{"name":"ExAcquireSpinLockExclusive","features":[3]},{"name":"ExAcquireSpinLockExclusiveAtDpcLevel","features":[3]},{"name":"ExAcquireSpinLockShared","features":[3]},{"name":"ExAcquireSpinLockSharedAtDpcLevel","features":[3]},{"name":"ExAllocateCacheAwareRundownProtection","features":[2,3]},{"name":"ExAllocatePool","features":[2,3]},{"name":"ExAllocatePool2","features":[3]},{"name":"ExAllocatePool3","features":[3,1]},{"name":"ExAllocatePoolWithQuota","features":[2,3]},{"name":"ExAllocatePoolWithQuotaTag","features":[2,3]},{"name":"ExAllocatePoolWithTag","features":[2,3]},{"name":"ExAllocatePoolWithTagPriority","features":[2,3]},{"name":"ExAllocateTimer","features":[2,3]},{"name":"ExCancelTimer","features":[2,3,1]},{"name":"ExCleanupRundownProtectionCacheAware","features":[2,3]},{"name":"ExConvertExclusiveToSharedLite","features":[2,3,7]},{"name":"ExCreateCallback","features":[2,3,1]},{"name":"ExCreatePool","features":[3,1]},{"name":"ExDeleteResourceLite","features":[2,3,1,7]},{"name":"ExDeleteTimer","features":[2,3,1]},{"name":"ExDestroyPool","features":[3,1]},{"name":"ExEnterCriticalRegionAndAcquireResourceExclusive","features":[2,3,7]},{"name":"ExEnterCriticalRegionAndAcquireResourceShared","features":[2,3,7]},{"name":"ExEnterCriticalRegionAndAcquireSharedWaitForExclusive","features":[2,3,7]},{"name":"ExEnumerateSystemFirmwareTables","features":[3,1]},{"name":"ExExtendZone","features":[3,1,7]},{"name":"ExFreeCacheAwareRundownProtection","features":[2,3]},{"name":"ExFreePool","features":[3]},{"name":"ExFreePool2","features":[3,1]},{"name":"ExFreePoolWithTag","features":[3]},{"name":"ExGetExclusiveWaiterCount","features":[2,3,7]},{"name":"ExGetFirmwareEnvironmentVariable","features":[3,1]},{"name":"ExGetFirmwareType","features":[3,32]},{"name":"ExGetPreviousMode","features":[3]},{"name":"ExGetSharedWaiterCount","features":[2,3,7]},{"name":"ExGetSystemFirmwareTable","features":[3,1]},{"name":"ExInitializePushLock","features":[3]},{"name":"ExInitializeResourceLite","features":[2,3,1,7]},{"name":"ExInitializeRundownProtection","features":[3]},{"name":"ExInitializeRundownProtectionCacheAware","features":[2,3]},{"name":"ExInitializeRundownProtectionCacheAwareEx","features":[2,3]},{"name":"ExInitializeZone","features":[3,1,7]},{"name":"ExInterlockedAddLargeInteger","features":[3]},{"name":"ExInterlockedExtendZone","features":[3,1,7]},{"name":"ExIsManufacturingModeEnabled","features":[3,1]},{"name":"ExIsProcessorFeaturePresent","features":[3,1]},{"name":"ExIsResourceAcquiredExclusiveLite","features":[2,3,1,7]},{"name":"ExIsResourceAcquiredSharedLite","features":[2,3,7]},{"name":"ExIsSoftBoot","features":[3,1]},{"name":"ExLocalTimeToSystemTime","features":[3]},{"name":"ExNotifyCallback","features":[3]},{"name":"ExQueryTimerResolution","features":[3]},{"name":"ExQueueWorkItem","features":[2,3,7]},{"name":"ExRaiseAccessViolation","features":[3]},{"name":"ExRaiseDatatypeMisalignment","features":[3]},{"name":"ExRaiseStatus","features":[3,1]},{"name":"ExReInitializeRundownProtection","features":[3]},{"name":"ExReInitializeRundownProtectionCacheAware","features":[2,3]},{"name":"ExRegisterCallback","features":[2,3]},{"name":"ExReinitializeResourceLite","features":[2,3,1,7]},{"name":"ExReleaseFastMutex","features":[2,3,1,7]},{"name":"ExReleaseFastMutexUnsafe","features":[2,3,1,7]},{"name":"ExReleasePushLockExclusiveEx","features":[3]},{"name":"ExReleasePushLockSharedEx","features":[3]},{"name":"ExReleaseResourceAndLeaveCriticalRegion","features":[2,3,7]},{"name":"ExReleaseResourceForThreadLite","features":[2,3,7]},{"name":"ExReleaseResourceLite","features":[2,3,7]},{"name":"ExReleaseRundownProtection","features":[3]},{"name":"ExReleaseRundownProtectionCacheAware","features":[2,3]},{"name":"ExReleaseRundownProtectionCacheAwareEx","features":[2,3]},{"name":"ExReleaseRundownProtectionEx","features":[3]},{"name":"ExReleaseSpinLockExclusive","features":[3]},{"name":"ExReleaseSpinLockExclusiveFromDpcLevel","features":[3]},{"name":"ExReleaseSpinLockShared","features":[3]},{"name":"ExReleaseSpinLockSharedFromDpcLevel","features":[3]},{"name":"ExRundownCompleted","features":[3]},{"name":"ExRundownCompletedCacheAware","features":[2,3]},{"name":"ExSecurePoolUpdate","features":[3,1]},{"name":"ExSecurePoolValidate","features":[3,1]},{"name":"ExSetFirmwareEnvironmentVariable","features":[3,1]},{"name":"ExSetResourceOwnerPointer","features":[2,3,7]},{"name":"ExSetResourceOwnerPointerEx","features":[2,3,7]},{"name":"ExSetTimer","features":[2,3,1]},{"name":"ExSetTimerResolution","features":[3,1]},{"name":"ExSizeOfRundownProtectionCacheAware","features":[3]},{"name":"ExSystemTimeToLocalTime","features":[3]},{"name":"ExTryAcquireSpinLockExclusiveAtDpcLevel","features":[3]},{"name":"ExTryAcquireSpinLockSharedAtDpcLevel","features":[3]},{"name":"ExTryConvertSharedSpinLockExclusive","features":[3]},{"name":"ExTryToAcquireFastMutex","features":[2,3,1,7]},{"name":"ExUnregisterCallback","features":[3]},{"name":"ExUuidCreate","features":[3,1]},{"name":"ExVerifySuite","features":[3,1,7]},{"name":"ExWaitForRundownProtectionRelease","features":[3]},{"name":"ExWaitForRundownProtectionReleaseCacheAware","features":[2,3]},{"name":"Executive","features":[3]},{"name":"ExternalFault","features":[3]},{"name":"FAULT_INFORMATION","features":[2,5,3,1,4,6,7,8]},{"name":"FAULT_INFORMATION_ARCH","features":[3]},{"name":"FAULT_INFORMATION_ARM64","features":[2,5,3,1,4,6,7,8]},{"name":"FAULT_INFORMATION_ARM64_FLAGS","features":[3]},{"name":"FAULT_INFORMATION_ARM64_TYPE","features":[3]},{"name":"FAULT_INFORMATION_X64","features":[3]},{"name":"FAULT_INFORMATION_X64_FLAGS","features":[3]},{"name":"FILE_128_BYTE_ALIGNMENT","features":[3]},{"name":"FILE_256_BYTE_ALIGNMENT","features":[3]},{"name":"FILE_32_BYTE_ALIGNMENT","features":[3]},{"name":"FILE_512_BYTE_ALIGNMENT","features":[3]},{"name":"FILE_64_BYTE_ALIGNMENT","features":[3]},{"name":"FILE_ATTRIBUTE_TAG_INFORMATION","features":[3]},{"name":"FILE_ATTRIBUTE_VALID_FLAGS","features":[3]},{"name":"FILE_ATTRIBUTE_VALID_KERNEL_SET_FLAGS","features":[3]},{"name":"FILE_ATTRIBUTE_VALID_SET_FLAGS","features":[3]},{"name":"FILE_AUTOGENERATED_DEVICE_NAME","features":[3]},{"name":"FILE_BYTE_ALIGNMENT","features":[3]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL","features":[3]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_DEPRECATED","features":[3]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_EX","features":[3]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL","features":[3]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_DEPRECATED","features":[3]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_EX","features":[3]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK","features":[3]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_DEPRECATED","features":[3]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_EX","features":[3]},{"name":"FILE_CHARACTERISTIC_CSV","features":[3]},{"name":"FILE_CHARACTERISTIC_PNP_DEVICE","features":[3]},{"name":"FILE_CHARACTERISTIC_TS_DEVICE","features":[3]},{"name":"FILE_CHARACTERISTIC_WEBDAV_DEVICE","features":[3]},{"name":"FILE_DEVICE_ALLOW_APPCONTAINER_TRAVERSAL","features":[3]},{"name":"FILE_DEVICE_IS_MOUNTED","features":[3]},{"name":"FILE_DEVICE_REQUIRE_SECURITY_CHECK","features":[3]},{"name":"FILE_DEVICE_SECURE_OPEN","features":[3]},{"name":"FILE_END_OF_FILE_INFORMATION","features":[3]},{"name":"FILE_FLOPPY_DISKETTE","features":[3]},{"name":"FILE_FS_DEVICE_INFORMATION","features":[3]},{"name":"FILE_FS_FULL_SIZE_INFORMATION","features":[3]},{"name":"FILE_FS_FULL_SIZE_INFORMATION_EX","features":[3]},{"name":"FILE_FS_LABEL_INFORMATION","features":[3]},{"name":"FILE_FS_METADATA_SIZE_INFORMATION","features":[3]},{"name":"FILE_FS_OBJECTID_INFORMATION","features":[3]},{"name":"FILE_FS_SIZE_INFORMATION","features":[3]},{"name":"FILE_FS_VOLUME_INFORMATION","features":[3,1]},{"name":"FILE_IOSTATUSBLOCK_RANGE_INFORMATION","features":[3]},{"name":"FILE_IO_COMPLETION_NOTIFICATION_INFORMATION","features":[3]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION","features":[2,3]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION_EX","features":[2,3,1]},{"name":"FILE_IS_REMOTE_DEVICE_INFORMATION","features":[3,1]},{"name":"FILE_LONG_ALIGNMENT","features":[3]},{"name":"FILE_MEMORY_PARTITION_INFORMATION","features":[3]},{"name":"FILE_NUMA_NODE_INFORMATION","features":[3]},{"name":"FILE_OCTA_ALIGNMENT","features":[3]},{"name":"FILE_PORTABLE_DEVICE","features":[3]},{"name":"FILE_PROCESS_IDS_USING_FILE_INFORMATION","features":[3]},{"name":"FILE_QUAD_ALIGNMENT","features":[3]},{"name":"FILE_QUERY_INDEX_SPECIFIED","features":[3]},{"name":"FILE_QUERY_NO_CURSOR_UPDATE","features":[3]},{"name":"FILE_QUERY_RESTART_SCAN","features":[3]},{"name":"FILE_QUERY_RETURN_ON_DISK_ENTRIES_ONLY","features":[3]},{"name":"FILE_QUERY_RETURN_SINGLE_ENTRY","features":[3]},{"name":"FILE_READ_ONLY_DEVICE","features":[3]},{"name":"FILE_REMOTE_DEVICE","features":[3]},{"name":"FILE_REMOTE_DEVICE_VSMB","features":[3]},{"name":"FILE_REMOVABLE_MEDIA","features":[3]},{"name":"FILE_SFIO_RESERVE_INFORMATION","features":[3,1]},{"name":"FILE_SFIO_VOLUME_INFORMATION","features":[3]},{"name":"FILE_SHARE_VALID_FLAGS","features":[3]},{"name":"FILE_SKIP_SET_USER_EVENT_ON_FAST_IO","features":[3]},{"name":"FILE_STANDARD_INFORMATION_EX","features":[3,1]},{"name":"FILE_USE_FILE_POINTER_POSITION","features":[3]},{"name":"FILE_VALID_DATA_LENGTH_INFORMATION","features":[3]},{"name":"FILE_VALID_EXTENDED_OPTION_FLAGS","features":[3]},{"name":"FILE_VIRTUAL_VOLUME","features":[3]},{"name":"FILE_WORD_ALIGNMENT","features":[3]},{"name":"FILE_WRITE_ONCE_MEDIA","features":[3]},{"name":"FILE_WRITE_TO_END_OF_FILE","features":[3]},{"name":"FIRMWARE_ERROR_RECORD_REFERENCE_GUID","features":[3]},{"name":"FLAG_OWNER_POINTER_IS_THREAD","features":[3]},{"name":"FLOATING_SAVE_AREA","features":[3]},{"name":"FLUSH_MULTIPLE_MAXIMUM","features":[3]},{"name":"FM_LOCK_BIT","features":[3]},{"name":"FM_LOCK_BIT_V","features":[3]},{"name":"FO_ALERTABLE_IO","features":[3]},{"name":"FO_BYPASS_IO_ENABLED","features":[3]},{"name":"FO_CACHE_SUPPORTED","features":[3]},{"name":"FO_CLEANUP_COMPLETE","features":[3]},{"name":"FO_DELETE_ON_CLOSE","features":[3]},{"name":"FO_DIRECT_DEVICE_OPEN","features":[3]},{"name":"FO_DISALLOW_EXCLUSIVE","features":[3]},{"name":"FO_FILE_FAST_IO_READ","features":[3]},{"name":"FO_FILE_MODIFIED","features":[3]},{"name":"FO_FILE_OPEN","features":[3]},{"name":"FO_FILE_OPEN_CANCELLED","features":[3]},{"name":"FO_FILE_SIZE_CHANGED","features":[3]},{"name":"FO_FLAGS_VALID_ONLY_DURING_CREATE","features":[3]},{"name":"FO_GENERATE_AUDIT_ON_CLOSE","features":[3]},{"name":"FO_HANDLE_CREATED","features":[3]},{"name":"FO_INDIRECT_WAIT_OBJECT","features":[3]},{"name":"FO_MAILSLOT","features":[3]},{"name":"FO_NAMED_PIPE","features":[3]},{"name":"FO_NO_INTERMEDIATE_BUFFERING","features":[3]},{"name":"FO_OPENED_CASE_SENSITIVE","features":[3]},{"name":"FO_QUEUE_IRP_TO_THREAD","features":[3]},{"name":"FO_RANDOM_ACCESS","features":[3]},{"name":"FO_REMOTE_ORIGIN","features":[3]},{"name":"FO_SECTION_MINSTORE_TREATMENT","features":[3]},{"name":"FO_SEQUENTIAL_ONLY","features":[3]},{"name":"FO_SKIP_COMPLETION_PORT","features":[3]},{"name":"FO_SKIP_SET_EVENT","features":[3]},{"name":"FO_SKIP_SET_FAST_IO","features":[3]},{"name":"FO_STREAM_FILE","features":[3]},{"name":"FO_SYNCHRONOUS_IO","features":[3]},{"name":"FO_TEMPORARY_FILE","features":[3]},{"name":"FO_VOLUME_OPEN","features":[3]},{"name":"FO_WRITE_THROUGH","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_16GB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1GB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1MB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_256MB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_2GB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_32GB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_4GB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_512MB","features":[3]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_8GB","features":[3]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_16MB","features":[3]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_1MB","features":[3]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_2MB","features":[3]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_4MB","features":[3]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_8MB","features":[3]},{"name":"FPB_MEM_VECTOR_GRANULARITY_1B","features":[3]},{"name":"FPB_RID_VECTOR_GRANULARITY_256RIDS","features":[3]},{"name":"FPB_RID_VECTOR_GRANULARITY_64RIDS","features":[3]},{"name":"FPB_RID_VECTOR_GRANULARITY_8RIDS","features":[3]},{"name":"FPB_VECTOR_SELECT_MEM_HIGH","features":[3]},{"name":"FPB_VECTOR_SELECT_MEM_LOW","features":[3]},{"name":"FPB_VECTOR_SELECT_RID","features":[3]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_1KBITS","features":[3]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_256BITS","features":[3]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_2KBITS","features":[3]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_4KBITS","features":[3]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_512BITS","features":[3]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_8KBITS","features":[3]},{"name":"FPGA_BUS_SCAN","features":[3]},{"name":"FPGA_CONTROL_CONFIG_SPACE","features":[3,1]},{"name":"FPGA_CONTROL_ERROR_REPORTING","features":[3,1]},{"name":"FPGA_CONTROL_INTERFACE","features":[3,1]},{"name":"FPGA_CONTROL_LINK","features":[3,1]},{"name":"FREE_FUNCTION","features":[3]},{"name":"FUNCTION_LEVEL_DEVICE_RESET_PARAMETERS","features":[3]},{"name":"FWMI_NOTIFICATION_CALLBACK","features":[3]},{"name":"FailControl","features":[3]},{"name":"FaultInformationArm64","features":[3]},{"name":"FaultInformationInvalid","features":[3]},{"name":"FaultInformationX64","features":[3]},{"name":"FloatingPointProcessor","features":[3]},{"name":"FloppyDiskPeripheral","features":[3]},{"name":"FltIoNotifyRoutinesClass","features":[3]},{"name":"FreePage","features":[3]},{"name":"FsRtlIsTotalDeviceFailure","features":[3,1]},{"name":"FunctionLevelDeviceReset","features":[3]},{"name":"GENERIC_NOTIFY_TYPE_GUID","features":[3]},{"name":"GENERIC_SECTION_GUID","features":[3]},{"name":"GENPROC_FLAGS_CORRECTED","features":[3]},{"name":"GENPROC_FLAGS_OVERFLOW","features":[3]},{"name":"GENPROC_FLAGS_PRECISEIP","features":[3]},{"name":"GENPROC_FLAGS_RESTARTABLE","features":[3]},{"name":"GENPROC_OP_DATAREAD","features":[3]},{"name":"GENPROC_OP_DATAWRITE","features":[3]},{"name":"GENPROC_OP_GENERIC","features":[3]},{"name":"GENPROC_OP_INSTRUCTIONEXE","features":[3]},{"name":"GENPROC_PROCERRTYPE_BUS","features":[3]},{"name":"GENPROC_PROCERRTYPE_CACHE","features":[3]},{"name":"GENPROC_PROCERRTYPE_MAE","features":[3]},{"name":"GENPROC_PROCERRTYPE_TLB","features":[3]},{"name":"GENPROC_PROCERRTYPE_UNKNOWN","features":[3]},{"name":"GENPROC_PROCISA_ARM32","features":[3]},{"name":"GENPROC_PROCISA_ARM64","features":[3]},{"name":"GENPROC_PROCISA_IPF","features":[3]},{"name":"GENPROC_PROCISA_X64","features":[3]},{"name":"GENPROC_PROCISA_X86","features":[3]},{"name":"GENPROC_PROCTYPE_ARM","features":[3]},{"name":"GENPROC_PROCTYPE_IPF","features":[3]},{"name":"GENPROC_PROCTYPE_XPF","features":[3]},{"name":"GET_D3COLD_CAPABILITY","features":[3,1]},{"name":"GET_D3COLD_LAST_TRANSITION_STATUS","features":[3]},{"name":"GET_DEVICE_RESET_STATUS","features":[3,1]},{"name":"GET_DMA_ADAPTER","features":[2,5,3,1,4,6,7,8]},{"name":"GET_IDLE_WAKE_INFO","features":[3,1,8]},{"name":"GET_SDEV_IDENTIFIER","features":[3]},{"name":"GET_SET_DEVICE_DATA","features":[3]},{"name":"GET_UPDATED_BUS_RESOURCE","features":[3,1]},{"name":"GET_VIRTUAL_DEVICE_DATA","features":[3]},{"name":"GET_VIRTUAL_DEVICE_LOCATION","features":[3,1]},{"name":"GET_VIRTUAL_DEVICE_RESOURCES","features":[3]},{"name":"GET_VIRTUAL_FUNCTION_PROBED_BARS","features":[3,1]},{"name":"GUID_ECP_CREATE_USER_PROCESS","features":[3]},{"name":"GartHigh","features":[3]},{"name":"GartLow","features":[3]},{"name":"GenericEqual","features":[3]},{"name":"GenericGreaterThan","features":[3]},{"name":"GenericLessThan","features":[3]},{"name":"GlobalLoggerHandleClass","features":[3]},{"name":"GroupAffinityAllGroupZero","features":[3]},{"name":"GroupAffinityDontCare","features":[3]},{"name":"HAL_AMLI_BAD_IO_ADDRESS_LIST","features":[3,1]},{"name":"HAL_APIC_DESTINATION_MODE","features":[3]},{"name":"HAL_BUS_INFORMATION","features":[3]},{"name":"HAL_CALLBACKS","features":[2,3]},{"name":"HAL_DISPATCH","features":[2,5,3,1,4,6,22,7,8]},{"name":"HAL_DISPATCH_VERSION","features":[3]},{"name":"HAL_DISPLAY_BIOS_INFORMATION","features":[3]},{"name":"HAL_DMA_ADAPTER_VERSION_1","features":[3]},{"name":"HAL_DMA_CRASH_DUMP_REGISTER_TYPE","features":[3]},{"name":"HAL_ERROR_INFO","features":[3]},{"name":"HAL_MASK_UNMASK_FLAGS_NONE","features":[3]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_COMPLETE","features":[3]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_DEFERRED","features":[3]},{"name":"HAL_MCA_INTERFACE","features":[3,1]},{"name":"HAL_MCA_RECORD","features":[3]},{"name":"HAL_MCE_RECORD","features":[3]},{"name":"HAL_PLATFORM_ACPI_TABLES_CACHED","features":[3]},{"name":"HAL_PLATFORM_DISABLE_PTCG","features":[3]},{"name":"HAL_PLATFORM_DISABLE_UC_MAIN_MEMORY","features":[3]},{"name":"HAL_PLATFORM_DISABLE_WRITE_COMBINING","features":[3]},{"name":"HAL_PLATFORM_ENABLE_WRITE_COMBINING_MMIO","features":[3]},{"name":"HAL_PLATFORM_INFORMATION","features":[3]},{"name":"HAL_POWER_INFORMATION","features":[3]},{"name":"HAL_PROCESSOR_FEATURE","features":[3]},{"name":"HAL_PROCESSOR_SPEED_INFORMATION","features":[3]},{"name":"HAL_QUERY_INFORMATION_CLASS","features":[3]},{"name":"HAL_SET_INFORMATION_CLASS","features":[3]},{"name":"HARDWARE_COUNTER","features":[3]},{"name":"HARDWARE_COUNTER_TYPE","features":[3]},{"name":"HASH_STRING_ALGORITHM_DEFAULT","features":[3]},{"name":"HASH_STRING_ALGORITHM_INVALID","features":[3]},{"name":"HASH_STRING_ALGORITHM_X65599","features":[3]},{"name":"HIGH_LEVEL","features":[3]},{"name":"HIGH_PRIORITY","features":[3]},{"name":"HVL_WHEA_ERROR_NOTIFICATION","features":[3,1]},{"name":"HWPROFILE_CHANGE_NOTIFICATION","features":[3]},{"name":"HalAcpiAuditInformation","features":[3]},{"name":"HalAcquireDisplayOwnership","features":[3,1]},{"name":"HalAllocateAdapterChannel","features":[2,5,3,1,4,33,6,7,8]},{"name":"HalAllocateCommonBuffer","features":[3,1,33]},{"name":"HalAllocateCrashDumpRegisters","features":[3,33]},{"name":"HalAllocateHardwareCounters","features":[3,1,32]},{"name":"HalAssignSlotResources","features":[2,5,3,1,4,6,7,8]},{"name":"HalBugCheckSystem","features":[3,1,30]},{"name":"HalCallbackInformation","features":[3]},{"name":"HalChannelTopologyInformation","features":[3]},{"name":"HalCmcLog","features":[3]},{"name":"HalCmcLogInformation","features":[3]},{"name":"HalCmcRegisterDriver","features":[3]},{"name":"HalCpeLog","features":[3]},{"name":"HalCpeLogInformation","features":[3]},{"name":"HalCpeRegisterDriver","features":[3]},{"name":"HalDisplayBiosInformation","features":[3]},{"name":"HalDisplayEmulatedBios","features":[3]},{"name":"HalDisplayInt10Bios","features":[3]},{"name":"HalDisplayNoBios","features":[3]},{"name":"HalDmaAllocateCrashDumpRegistersEx","features":[3,1,33]},{"name":"HalDmaCrashDumpRegisterSet1","features":[3]},{"name":"HalDmaCrashDumpRegisterSet2","features":[3]},{"name":"HalDmaCrashDumpRegisterSetMax","features":[3]},{"name":"HalDmaFreeCrashDumpRegistersEx","features":[3,1,33]},{"name":"HalDmaRemappingInformation","features":[3]},{"name":"HalEnlightenment","features":[3]},{"name":"HalErrorInformation","features":[3]},{"name":"HalExamineMBR","features":[2,5,3,1,4,6,7,8]},{"name":"HalExternalCacheInformation","features":[3]},{"name":"HalFrameBufferCachingInformation","features":[3]},{"name":"HalFreeCommonBuffer","features":[3,1,33]},{"name":"HalFreeHardwareCounters","features":[3,1]},{"name":"HalFrequencyInformation","features":[3]},{"name":"HalFwBootPerformanceInformation","features":[3]},{"name":"HalFwS3PerformanceInformation","features":[3]},{"name":"HalGenerateCmcInterrupt","features":[3]},{"name":"HalGetAdapter","features":[3,1,33]},{"name":"HalGetBusData","features":[3]},{"name":"HalGetBusDataByOffset","features":[3]},{"name":"HalGetChannelPowerInformation","features":[3]},{"name":"HalGetInterruptVector","features":[3]},{"name":"HalHardwareWatchdogInformation","features":[3]},{"name":"HalHeterogeneousMemoryAttributesInterface","features":[3]},{"name":"HalHypervisorInformation","features":[3]},{"name":"HalI386ExceptionChainTerminatorInformation","features":[3]},{"name":"HalInformationClassUnused1","features":[3]},{"name":"HalInitLogInformation","features":[3]},{"name":"HalInstalledBusInformation","features":[3]},{"name":"HalInterruptControllerInformation","features":[3]},{"name":"HalIrtInformation","features":[3]},{"name":"HalKernelErrorHandler","features":[3]},{"name":"HalMakeBeep","features":[3,1]},{"name":"HalMapRegisterInformation","features":[3]},{"name":"HalMcaLog","features":[3]},{"name":"HalMcaLogInformation","features":[3]},{"name":"HalMcaRegisterDriver","features":[3]},{"name":"HalNumaRangeTableInformation","features":[3]},{"name":"HalNumaTopologyInterface","features":[3]},{"name":"HalParkingPageInformation","features":[3]},{"name":"HalPartitionIpiInterface","features":[3]},{"name":"HalPlatformInformation","features":[3]},{"name":"HalPlatformTimerInformation","features":[3]},{"name":"HalPowerInformation","features":[3]},{"name":"HalProcessorBrandString","features":[3]},{"name":"HalProcessorFeatureInformation","features":[3]},{"name":"HalProcessorSpeedInformation","features":[3]},{"name":"HalProfileDpgoSourceInterruptHandler","features":[3]},{"name":"HalProfileSourceAdd","features":[3]},{"name":"HalProfileSourceInformation","features":[3]},{"name":"HalProfileSourceInterruptHandler","features":[3]},{"name":"HalProfileSourceInterval","features":[3]},{"name":"HalProfileSourceRemove","features":[3]},{"name":"HalProfileSourceTimerHandler","features":[3]},{"name":"HalPsciInformation","features":[3]},{"name":"HalQueryAMLIIllegalIOPortAddresses","features":[3]},{"name":"HalQueryAcpiWakeAlarmSystemPowerStateInformation","features":[3]},{"name":"HalQueryArmErrataInformation","features":[3]},{"name":"HalQueryDebuggerInformation","features":[3]},{"name":"HalQueryHyperlaunchEntrypoint","features":[3]},{"name":"HalQueryIommuReservedRegionInformation","features":[3]},{"name":"HalQueryMaxHotPlugMemoryAddress","features":[3]},{"name":"HalQueryMcaInterface","features":[3]},{"name":"HalQueryPerDeviceMsiLimitInformation","features":[3]},{"name":"HalQueryProcessorEfficiencyInformation","features":[3]},{"name":"HalQueryProfileCorruptionStatus","features":[3]},{"name":"HalQueryProfileCounterOwnership","features":[3]},{"name":"HalQueryProfileNumberOfCounters","features":[3]},{"name":"HalQueryProfileSourceList","features":[3]},{"name":"HalQueryStateElementInformation","features":[3]},{"name":"HalQueryUnused0001","features":[3]},{"name":"HalReadDmaCounter","features":[3,33]},{"name":"HalRegisterSecondaryInterruptInterface","features":[3]},{"name":"HalSecondaryInterruptInformation","features":[3]},{"name":"HalSetBusData","features":[3]},{"name":"HalSetBusDataByOffset","features":[3]},{"name":"HalSetChannelPowerInformation","features":[3]},{"name":"HalSetClockTimerMinimumInterval","features":[3]},{"name":"HalSetHvciEnabled","features":[3]},{"name":"HalSetProcessorTraceInterruptHandler","features":[3]},{"name":"HalSetPsciSuspendMode","features":[3]},{"name":"HalSetResetParkDisposition","features":[3]},{"name":"HalSetSwInterruptHandler","features":[3]},{"name":"HalTranslateBusAddress","features":[3,1]},{"name":"HighImportance","features":[3]},{"name":"HighPagePriority","features":[3]},{"name":"HighPoolPriority","features":[3]},{"name":"HighPoolPrioritySpecialPoolOverrun","features":[3]},{"name":"HighPoolPrioritySpecialPoolUnderrun","features":[3]},{"name":"HotSpareControl","features":[3]},{"name":"HvlRegisterWheaErrorNotification","features":[3,1]},{"name":"HvlUnregisterWheaErrorNotification","features":[3,1]},{"name":"HyperCriticalWorkQueue","features":[3]},{"name":"IMAGE_ADDRESSING_MODE_32BIT","features":[3]},{"name":"IMAGE_INFO","features":[3]},{"name":"IMAGE_INFO_EX","features":[2,5,3,1,4,6,7,8]},{"name":"INITIAL_PRIVILEGE_COUNT","features":[3]},{"name":"INITIAL_PRIVILEGE_SET","features":[3,1,4]},{"name":"INIT_NOTIFY_TYPE_GUID","features":[3]},{"name":"INJECT_ERRTYPE_MEMORY_CORRECTABLE","features":[3]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLEFATAL","features":[3]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLENONFATAL","features":[3]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_CORRECTABLE","features":[3]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLEFATAL","features":[3]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLENONFATAL","features":[3]},{"name":"INJECT_ERRTYPE_PLATFORM_CORRECTABLE","features":[3]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLEFATAL","features":[3]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLENONFATAL","features":[3]},{"name":"INJECT_ERRTYPE_PROCESSOR_CORRECTABLE","features":[3]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLEFATAL","features":[3]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLENONFATAL","features":[3]},{"name":"INPUT_MAPPING_ELEMENT","features":[3]},{"name":"INTEL_CACHE_INFO_EAX","features":[3]},{"name":"INTEL_CACHE_INFO_EBX","features":[3]},{"name":"INTEL_CACHE_TYPE","features":[3]},{"name":"INTERFACE","features":[3]},{"name":"INTERFACE_TYPE","features":[3]},{"name":"INTERLOCKED_RESULT","features":[3]},{"name":"IOCTL_CANCEL_DEVICE_WAKE","features":[3]},{"name":"IOCTL_QUERY_DEVICE_POWER_STATE","features":[3]},{"name":"IOCTL_SET_DEVICE_WAKE","features":[3]},{"name":"IOMMU_ACCESS_NONE","features":[3]},{"name":"IOMMU_ACCESS_READ","features":[3]},{"name":"IOMMU_ACCESS_WRITE","features":[3]},{"name":"IOMMU_DEVICE_CREATE","features":[2,5,3,1,4,6,7,8]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION","features":[3,7]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_ACPI","features":[3]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_TYPE","features":[3]},{"name":"IOMMU_DEVICE_DELETE","features":[2,3,1]},{"name":"IOMMU_DEVICE_FAULT_HANDLER","features":[2,5,3,1,4,6,7,8]},{"name":"IOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[2,3]},{"name":"IOMMU_DMA_DOMAIN_CREATION_FLAGS","features":[3]},{"name":"IOMMU_DMA_DOMAIN_TYPE","features":[3]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN","features":[3]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN_MAPPED_SEGMENT","features":[3]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_CONFIG","features":[3]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_TYPE","features":[3]},{"name":"IOMMU_DMA_RESERVED_REGION","features":[3,1]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE","features":[2,5,3,1,4,6,7,8]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[2,3,1]},{"name":"IOMMU_DOMAIN_CONFIGURE","features":[2,3,1]},{"name":"IOMMU_DOMAIN_CREATE","features":[2,3,1]},{"name":"IOMMU_DOMAIN_CREATE_EX","features":[2,3,1]},{"name":"IOMMU_DOMAIN_DELETE","features":[2,3,1]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE","features":[2,5,3,1,4,6,7,8]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE_EX","features":[2,3,1]},{"name":"IOMMU_FLUSH_DOMAIN","features":[2,3,1]},{"name":"IOMMU_FLUSH_DOMAIN_VA_LIST","features":[2,3,1]},{"name":"IOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[3,1]},{"name":"IOMMU_INTERFACE_STATE_CHANGE","features":[3]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[3]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_FIELDS","features":[3]},{"name":"IOMMU_MAP_IDENTITY_RANGE","features":[2,3,1]},{"name":"IOMMU_MAP_IDENTITY_RANGE_EX","features":[2,3,1]},{"name":"IOMMU_MAP_LOGICAL_RANGE","features":[2,3,1]},{"name":"IOMMU_MAP_LOGICAL_RANGE_EX","features":[2,3,1]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS","features":[2,3]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS_TYPE","features":[3]},{"name":"IOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[2,3,1]},{"name":"IOMMU_QUERY_INPUT_MAPPINGS","features":[2,5,3,1,4,6,7,8]},{"name":"IOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[2,3,1]},{"name":"IOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[2,3,1]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING","features":[2,5,3,1,4,6,7,8]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[2,3,1]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE","features":[2,3,1]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE_EX","features":[2,3,1]},{"name":"IOMMU_UNMAP_LOGICAL_RANGE","features":[2,3,1]},{"name":"IOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[3,1]},{"name":"IOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[2,3,1]},{"name":"IO_ACCESS_MODE","features":[3]},{"name":"IO_ACCESS_TYPE","features":[3]},{"name":"IO_ALLOCATION_ACTION","features":[3]},{"name":"IO_ATTACH_DEVICE","features":[3]},{"name":"IO_ATTRIBUTION_INFORMATION","features":[3]},{"name":"IO_ATTRIBUTION_INFO_V1","features":[3]},{"name":"IO_CHECK_CREATE_PARAMETERS","features":[3]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_DELETE","features":[3]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_READ","features":[3]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_WRITE","features":[3]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_UPDATE_FILE_OBJECT","features":[3]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_CHECK","features":[3]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_USING_SCB","features":[3]},{"name":"IO_CHECK_SHARE_ACCESS_UPDATE_SHARE_ACCESS","features":[3]},{"name":"IO_COMPLETION_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"IO_COMPLETION_ROUTINE_RESULT","features":[3]},{"name":"IO_CONNECT_INTERRUPT_FULLY_SPECIFIED_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CONNECT_INTERRUPT_LINE_BASED_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CONNECT_INTERRUPT_MESSAGE_BASED_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CONNECT_INTERRUPT_PARAMETERS","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CONTAINER_INFORMATION_CLASS","features":[3]},{"name":"IO_CONTAINER_NOTIFICATION_CLASS","features":[3]},{"name":"IO_CSQ","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_ACQUIRE_LOCK","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_COMPLETE_CANCELED_IRP","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_INSERT_IRP","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_INSERT_IRP_EX","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_IRP_CONTEXT","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_PEEK_NEXT_IRP","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_RELEASE_LOCK","features":[2,5,3,1,4,6,7,8]},{"name":"IO_CSQ_REMOVE_IRP","features":[2,5,3,1,4,6,7,8]},{"name":"IO_DISCONNECT_INTERRUPT_PARAMETERS","features":[2,3]},{"name":"IO_DPC_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"IO_DRIVER_CREATE_CONTEXT","features":[2,3]},{"name":"IO_ERROR_LOG_MESSAGE","features":[3,1]},{"name":"IO_ERROR_LOG_PACKET","features":[3,1]},{"name":"IO_FOEXT_SHADOW_FILE","features":[2,5,3,1,4,6,7,8]},{"name":"IO_FOEXT_SILO_PARAMETERS","features":[2,3]},{"name":"IO_FORCE_ACCESS_CHECK","features":[3]},{"name":"IO_IGNORE_SHARE_ACCESS_CHECK","features":[3]},{"name":"IO_INTERRUPT_MESSAGE_INFO","features":[2,3]},{"name":"IO_INTERRUPT_MESSAGE_INFO_ENTRY","features":[2,3]},{"name":"IO_KEYBOARD_INCREMENT","features":[3]},{"name":"IO_MOUSE_INCREMENT","features":[3]},{"name":"IO_NOTIFICATION_EVENT_CATEGORY","features":[3]},{"name":"IO_NO_PARAMETER_CHECKING","features":[3]},{"name":"IO_PAGING_PRIORITY","features":[3]},{"name":"IO_PARALLEL_INCREMENT","features":[3]},{"name":"IO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[2,5,3,1,4,6,7,8]},{"name":"IO_QUERY_DEVICE_DATA_FORMAT","features":[3]},{"name":"IO_REMOUNT","features":[3]},{"name":"IO_REMOVE_LOCK","features":[2,3,1,7]},{"name":"IO_REMOVE_LOCK_COMMON_BLOCK","features":[2,3,1,7]},{"name":"IO_REMOVE_LOCK_DBG_BLOCK","features":[2,3,7]},{"name":"IO_REPARSE","features":[3]},{"name":"IO_REPARSE_GLOBAL","features":[3]},{"name":"IO_REPORT_INTERRUPT_ACTIVE_STATE_PARAMETERS","features":[2,3]},{"name":"IO_RESOURCE_ALTERNATIVE","features":[3]},{"name":"IO_RESOURCE_DEFAULT","features":[3]},{"name":"IO_RESOURCE_DESCRIPTOR","features":[3]},{"name":"IO_RESOURCE_LIST","features":[3]},{"name":"IO_RESOURCE_PREFERRED","features":[3]},{"name":"IO_RESOURCE_REQUIREMENTS_LIST","features":[3]},{"name":"IO_SERIAL_INCREMENT","features":[3]},{"name":"IO_SESSION_CONNECT_INFO","features":[3,1]},{"name":"IO_SESSION_EVENT","features":[3]},{"name":"IO_SESSION_MAX_PAYLOAD_SIZE","features":[3]},{"name":"IO_SESSION_NOTIFICATION_FUNCTION","features":[3,1]},{"name":"IO_SESSION_STATE","features":[3]},{"name":"IO_SESSION_STATE_ALL_EVENTS","features":[3]},{"name":"IO_SESSION_STATE_CONNECT_EVENT","features":[3]},{"name":"IO_SESSION_STATE_CREATION_EVENT","features":[3]},{"name":"IO_SESSION_STATE_DISCONNECT_EVENT","features":[3]},{"name":"IO_SESSION_STATE_INFORMATION","features":[3,1]},{"name":"IO_SESSION_STATE_LOGOFF_EVENT","features":[3]},{"name":"IO_SESSION_STATE_LOGON_EVENT","features":[3]},{"name":"IO_SESSION_STATE_NOTIFICATION","features":[3]},{"name":"IO_SESSION_STATE_TERMINATION_EVENT","features":[3]},{"name":"IO_SESSION_STATE_VALID_EVENT_MASK","features":[3]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FLAGS_MASK","features":[3]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_PROCESS","features":[3]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_THREAD","features":[3]},{"name":"IO_SHARE_ACCESS_NON_PRIMARY_STREAM","features":[3]},{"name":"IO_SHARE_ACCESS_NO_WRITE_PERMISSION","features":[3]},{"name":"IO_SOUND_INCREMENT","features":[3]},{"name":"IO_STATUS_BLOCK32","features":[3,1]},{"name":"IO_STATUS_BLOCK64","features":[3,1]},{"name":"IO_TIMER_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"IO_TYPE_ADAPTER","features":[3]},{"name":"IO_TYPE_CONTROLLER","features":[3]},{"name":"IO_TYPE_CSQ","features":[3]},{"name":"IO_TYPE_CSQ_EX","features":[3]},{"name":"IO_TYPE_CSQ_IRP_CONTEXT","features":[3]},{"name":"IO_TYPE_DEVICE","features":[3]},{"name":"IO_TYPE_DEVICE_OBJECT_EXTENSION","features":[3]},{"name":"IO_TYPE_DRIVER","features":[3]},{"name":"IO_TYPE_ERROR_LOG","features":[3]},{"name":"IO_TYPE_ERROR_MESSAGE","features":[3]},{"name":"IO_TYPE_FILE","features":[3]},{"name":"IO_TYPE_IORING","features":[3]},{"name":"IO_TYPE_IRP","features":[3]},{"name":"IO_TYPE_MASTER_ADAPTER","features":[3]},{"name":"IO_TYPE_OPEN_PACKET","features":[3]},{"name":"IO_TYPE_TIMER","features":[3]},{"name":"IO_TYPE_VPB","features":[3]},{"name":"IO_VIDEO_INCREMENT","features":[3]},{"name":"IO_WORKITEM_ROUTINE","features":[2,5,3,1,4,6,7,8]},{"name":"IO_WORKITEM_ROUTINE_EX","features":[2,3]},{"name":"IPF_SAL_RECORD_SECTION_GUID","features":[3]},{"name":"IPI_LEVEL","features":[3]},{"name":"IPMI_MSR_DUMP_SECTION_GUID","features":[3]},{"name":"IRP_ALLOCATED_FIXED_SIZE","features":[3]},{"name":"IRP_ALLOCATED_MUST_SUCCEED","features":[3]},{"name":"IRP_ASSOCIATED_IRP","features":[3]},{"name":"IRP_BUFFERED_IO","features":[3]},{"name":"IRP_CLOSE_OPERATION","features":[3]},{"name":"IRP_CREATE_OPERATION","features":[3]},{"name":"IRP_DEALLOCATE_BUFFER","features":[3]},{"name":"IRP_DEFER_IO_COMPLETION","features":[3]},{"name":"IRP_HOLD_DEVICE_QUEUE","features":[3]},{"name":"IRP_INPUT_OPERATION","features":[3]},{"name":"IRP_LOOKASIDE_ALLOCATION","features":[3]},{"name":"IRP_MJ_CLEANUP","features":[3]},{"name":"IRP_MJ_CLOSE","features":[3]},{"name":"IRP_MJ_CREATE","features":[3]},{"name":"IRP_MJ_CREATE_MAILSLOT","features":[3]},{"name":"IRP_MJ_CREATE_NAMED_PIPE","features":[3]},{"name":"IRP_MJ_DEVICE_CHANGE","features":[3]},{"name":"IRP_MJ_DEVICE_CONTROL","features":[3]},{"name":"IRP_MJ_DIRECTORY_CONTROL","features":[3]},{"name":"IRP_MJ_FILE_SYSTEM_CONTROL","features":[3]},{"name":"IRP_MJ_FLUSH_BUFFERS","features":[3]},{"name":"IRP_MJ_INTERNAL_DEVICE_CONTROL","features":[3]},{"name":"IRP_MJ_LOCK_CONTROL","features":[3]},{"name":"IRP_MJ_MAXIMUM_FUNCTION","features":[3]},{"name":"IRP_MJ_PNP","features":[3]},{"name":"IRP_MJ_PNP_POWER","features":[3]},{"name":"IRP_MJ_POWER","features":[3]},{"name":"IRP_MJ_QUERY_EA","features":[3]},{"name":"IRP_MJ_QUERY_INFORMATION","features":[3]},{"name":"IRP_MJ_QUERY_QUOTA","features":[3]},{"name":"IRP_MJ_QUERY_SECURITY","features":[3]},{"name":"IRP_MJ_QUERY_VOLUME_INFORMATION","features":[3]},{"name":"IRP_MJ_READ","features":[3]},{"name":"IRP_MJ_SCSI","features":[3]},{"name":"IRP_MJ_SET_EA","features":[3]},{"name":"IRP_MJ_SET_INFORMATION","features":[3]},{"name":"IRP_MJ_SET_QUOTA","features":[3]},{"name":"IRP_MJ_SET_SECURITY","features":[3]},{"name":"IRP_MJ_SET_VOLUME_INFORMATION","features":[3]},{"name":"IRP_MJ_SHUTDOWN","features":[3]},{"name":"IRP_MJ_SYSTEM_CONTROL","features":[3]},{"name":"IRP_MJ_WRITE","features":[3]},{"name":"IRP_MN_CANCEL_REMOVE_DEVICE","features":[3]},{"name":"IRP_MN_CANCEL_STOP_DEVICE","features":[3]},{"name":"IRP_MN_CHANGE_SINGLE_INSTANCE","features":[3]},{"name":"IRP_MN_CHANGE_SINGLE_ITEM","features":[3]},{"name":"IRP_MN_COMPLETE","features":[3]},{"name":"IRP_MN_COMPRESSED","features":[3]},{"name":"IRP_MN_DEVICE_ENUMERATED","features":[3]},{"name":"IRP_MN_DEVICE_USAGE_NOTIFICATION","features":[3]},{"name":"IRP_MN_DISABLE_COLLECTION","features":[3]},{"name":"IRP_MN_DISABLE_EVENTS","features":[3]},{"name":"IRP_MN_DPC","features":[3]},{"name":"IRP_MN_EJECT","features":[3]},{"name":"IRP_MN_ENABLE_COLLECTION","features":[3]},{"name":"IRP_MN_ENABLE_EVENTS","features":[3]},{"name":"IRP_MN_EXECUTE_METHOD","features":[3]},{"name":"IRP_MN_FILTER_RESOURCE_REQUIREMENTS","features":[3]},{"name":"IRP_MN_FLUSH_AND_PURGE","features":[3]},{"name":"IRP_MN_FLUSH_DATA_ONLY","features":[3]},{"name":"IRP_MN_FLUSH_DATA_SYNC_ONLY","features":[3]},{"name":"IRP_MN_FLUSH_NO_SYNC","features":[3]},{"name":"IRP_MN_KERNEL_CALL","features":[3]},{"name":"IRP_MN_LOAD_FILE_SYSTEM","features":[3]},{"name":"IRP_MN_LOCK","features":[3]},{"name":"IRP_MN_MDL","features":[3]},{"name":"IRP_MN_MOUNT_VOLUME","features":[3]},{"name":"IRP_MN_NORMAL","features":[3]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY","features":[3]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY_EX","features":[3]},{"name":"IRP_MN_POWER_SEQUENCE","features":[3]},{"name":"IRP_MN_QUERY_ALL_DATA","features":[3]},{"name":"IRP_MN_QUERY_BUS_INFORMATION","features":[3]},{"name":"IRP_MN_QUERY_CAPABILITIES","features":[3]},{"name":"IRP_MN_QUERY_DEVICE_RELATIONS","features":[3]},{"name":"IRP_MN_QUERY_DEVICE_TEXT","features":[3]},{"name":"IRP_MN_QUERY_DIRECTORY","features":[3]},{"name":"IRP_MN_QUERY_ID","features":[3]},{"name":"IRP_MN_QUERY_INTERFACE","features":[3]},{"name":"IRP_MN_QUERY_LEGACY_BUS_INFORMATION","features":[3]},{"name":"IRP_MN_QUERY_PNP_DEVICE_STATE","features":[3]},{"name":"IRP_MN_QUERY_POWER","features":[3]},{"name":"IRP_MN_QUERY_REMOVE_DEVICE","features":[3]},{"name":"IRP_MN_QUERY_RESOURCES","features":[3]},{"name":"IRP_MN_QUERY_RESOURCE_REQUIREMENTS","features":[3]},{"name":"IRP_MN_QUERY_SINGLE_INSTANCE","features":[3]},{"name":"IRP_MN_QUERY_STOP_DEVICE","features":[3]},{"name":"IRP_MN_READ_CONFIG","features":[3]},{"name":"IRP_MN_REGINFO","features":[3]},{"name":"IRP_MN_REGINFO_EX","features":[3]},{"name":"IRP_MN_REMOVE_DEVICE","features":[3]},{"name":"IRP_MN_SCSI_CLASS","features":[3]},{"name":"IRP_MN_SET_LOCK","features":[3]},{"name":"IRP_MN_SET_POWER","features":[3]},{"name":"IRP_MN_START_DEVICE","features":[3]},{"name":"IRP_MN_STOP_DEVICE","features":[3]},{"name":"IRP_MN_SURPRISE_REMOVAL","features":[3]},{"name":"IRP_MN_TRACK_LINK","features":[3]},{"name":"IRP_MN_UNLOCK_ALL","features":[3]},{"name":"IRP_MN_UNLOCK_ALL_BY_KEY","features":[3]},{"name":"IRP_MN_UNLOCK_SINGLE","features":[3]},{"name":"IRP_MN_USER_FS_REQUEST","features":[3]},{"name":"IRP_MN_VERIFY_VOLUME","features":[3]},{"name":"IRP_MN_WAIT_WAKE","features":[3]},{"name":"IRP_MN_WRITE_CONFIG","features":[3]},{"name":"IRP_MOUNT_COMPLETION","features":[3]},{"name":"IRP_NOCACHE","features":[3]},{"name":"IRP_OB_QUERY_NAME","features":[3]},{"name":"IRP_PAGING_IO","features":[3]},{"name":"IRP_QUOTA_CHARGED","features":[3]},{"name":"IRP_READ_OPERATION","features":[3]},{"name":"IRP_SYNCHRONOUS_API","features":[3]},{"name":"IRP_SYNCHRONOUS_PAGING_IO","features":[3]},{"name":"IRP_UM_DRIVER_INITIATED_IO","features":[3]},{"name":"IRP_WRITE_OPERATION","features":[3]},{"name":"IRQ_DEVICE_POLICY","features":[3]},{"name":"IRQ_GROUP_POLICY","features":[3]},{"name":"IRQ_PRIORITY","features":[3]},{"name":"InACriticalArrayControl","features":[3]},{"name":"InAFailedArrayControl","features":[3]},{"name":"IndicatorBlink","features":[3]},{"name":"IndicatorOff","features":[3]},{"name":"IndicatorOn","features":[3]},{"name":"InitiateReset","features":[3]},{"name":"InstallStateFailedInstall","features":[3]},{"name":"InstallStateFinishInstall","features":[3]},{"name":"InstallStateInstalled","features":[3]},{"name":"InstallStateNeedsReinstall","features":[3]},{"name":"IntelCacheData","features":[3]},{"name":"IntelCacheInstruction","features":[3]},{"name":"IntelCacheNull","features":[3]},{"name":"IntelCacheRam","features":[3]},{"name":"IntelCacheTrace","features":[3]},{"name":"IntelCacheUnified","features":[3]},{"name":"InterfaceTypeUndefined","features":[3]},{"name":"Internal","features":[3]},{"name":"InternalPowerBus","features":[3]},{"name":"InterruptActiveBoth","features":[3]},{"name":"InterruptActiveBothTriggerHigh","features":[3]},{"name":"InterruptActiveBothTriggerLow","features":[3]},{"name":"InterruptActiveHigh","features":[3]},{"name":"InterruptActiveLow","features":[3]},{"name":"InterruptFallingEdge","features":[3]},{"name":"InterruptPolarityUnknown","features":[3]},{"name":"InterruptRisingEdge","features":[3]},{"name":"InvalidDeviceTypeControl","features":[3]},{"name":"IoAcquireCancelSpinLock","features":[3]},{"name":"IoAcquireKsrPersistentMemory","features":[2,5,3,1,4,6,7,8]},{"name":"IoAcquireKsrPersistentMemoryEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoAcquireRemoveLockEx","features":[2,3,1,7]},{"name":"IoAllocateAdapterChannel","features":[2,5,3,1,4,33,6,7,8]},{"name":"IoAllocateController","features":[2,5,3,1,4,6,7,8]},{"name":"IoAllocateDriverObjectExtension","features":[2,5,3,1,4,6,7,8]},{"name":"IoAllocateErrorLogEntry","features":[3]},{"name":"IoAllocateIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoAllocateIrpEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoAllocateMdl","features":[2,5,3,1,4,6,7,8]},{"name":"IoAllocateSfioStreamIdentifier","features":[2,5,3,1,4,6,7,8]},{"name":"IoAllocateWorkItem","features":[2,5,3,1,4,6,7,8]},{"name":"IoAssignResources","features":[2,5,3,1,4,6,7,8]},{"name":"IoAttachDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoAttachDeviceByPointer","features":[2,5,3,1,4,6,7,8]},{"name":"IoAttachDeviceToDeviceStack","features":[2,5,3,1,4,6,7,8]},{"name":"IoAttachDeviceToDeviceStackSafe","features":[2,5,3,1,4,6,7,8]},{"name":"IoBuildAsynchronousFsdRequest","features":[2,5,3,1,4,6,7,8]},{"name":"IoBuildDeviceIoControlRequest","features":[2,5,3,1,4,6,7,8]},{"name":"IoBuildPartialMdl","features":[2,3]},{"name":"IoBuildSynchronousFsdRequest","features":[2,5,3,1,4,6,7,8]},{"name":"IoCancelFileOpen","features":[2,5,3,1,4,6,7,8]},{"name":"IoCancelIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoCheckLinkShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoCheckShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoCheckShareAccessEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoCleanupIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoClearActivityIdThread","features":[3]},{"name":"IoClearIrpExtraCreateParameter","features":[2,5,3,1,4,6,7,8]},{"name":"IoConnectInterrupt","features":[2,3,1]},{"name":"IoConnectInterruptEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoCreateController","features":[2,3,1,7]},{"name":"IoCreateDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoCreateDisk","features":[2,5,3,1,4,6,22,7,8]},{"name":"IoCreateFile","features":[2,3,1,6]},{"name":"IoCreateFileEx","features":[2,3,1,6]},{"name":"IoCreateFileSpecifyDeviceObjectHint","features":[2,3,1,6]},{"name":"IoCreateNotificationEvent","features":[2,3,1,7]},{"name":"IoCreateSymbolicLink","features":[3,1]},{"name":"IoCreateSynchronizationEvent","features":[2,3,1,7]},{"name":"IoCreateSystemThread","features":[2,3,1,34]},{"name":"IoCreateUnprotectedSymbolicLink","features":[3,1]},{"name":"IoCsqInitialize","features":[2,5,3,1,4,6,7,8]},{"name":"IoCsqInitializeEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoCsqInsertIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoCsqInsertIrpEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoCsqRemoveIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoCsqRemoveNextIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoDecrementKeepAliveCount","features":[2,5,3,1,4,6,7,8]},{"name":"IoDeleteController","features":[2,3,1,7]},{"name":"IoDeleteDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoDeleteSymbolicLink","features":[3,1]},{"name":"IoDetachDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoDisconnectInterrupt","features":[2,3]},{"name":"IoDisconnectInterruptEx","features":[2,3]},{"name":"IoEnumerateKsrPersistentMemoryEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoFlushAdapterBuffers","features":[2,3,1,33]},{"name":"IoForwardIrpSynchronously","features":[2,5,3,1,4,6,7,8]},{"name":"IoFreeAdapterChannel","features":[3,33]},{"name":"IoFreeController","features":[2,3,1,7]},{"name":"IoFreeErrorLogEntry","features":[3]},{"name":"IoFreeIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoFreeKsrPersistentMemory","features":[3,1]},{"name":"IoFreeMapRegisters","features":[3,33]},{"name":"IoFreeMdl","features":[2,3]},{"name":"IoFreeSfioStreamIdentifier","features":[2,5,3,1,4,6,7,8]},{"name":"IoFreeWorkItem","features":[2,3]},{"name":"IoGetActivityIdIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetActivityIdThread","features":[3]},{"name":"IoGetAffinityInterrupt","features":[2,3,1,32]},{"name":"IoGetAttachedDeviceReference","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetBootDiskInformation","features":[3,1]},{"name":"IoGetBootDiskInformationLite","features":[3,1]},{"name":"IoGetConfigurationInformation","features":[3,1]},{"name":"IoGetContainerInformation","features":[3,1]},{"name":"IoGetCurrentProcess","features":[2,3]},{"name":"IoGetDeviceDirectory","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDeviceInterfaceAlias","features":[3,1]},{"name":"IoGetDeviceInterfacePropertyData","features":[3,35,1]},{"name":"IoGetDeviceInterfaces","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDeviceNumaNode","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDeviceObjectPointer","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDeviceProperty","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDevicePropertyData","features":[2,5,3,35,1,4,6,7,8]},{"name":"IoGetDmaAdapter","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDriverDirectory","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetDriverObjectExtension","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetFileObjectGenericMapping","features":[3,4]},{"name":"IoGetFsZeroingOffset","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetInitialStack","features":[3]},{"name":"IoGetInitiatorProcess","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetIoAttributionHandle","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetIoPriorityHint","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetIommuInterface","features":[3,1]},{"name":"IoGetIommuInterfaceEx","features":[3,1]},{"name":"IoGetIrpExtraCreateParameter","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetPagingIoPriority","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetRelatedDeviceObject","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetSfioStreamIdentifier","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetSilo","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetSiloParameters","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetStackLimits","features":[3]},{"name":"IoGetTopLevelIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoGetTransactionParameterBlock","features":[2,5,3,1,4,6,7,8]},{"name":"IoIncrementKeepAliveCount","features":[2,5,3,1,4,6,7,8]},{"name":"IoInitializeIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoInitializeIrpEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoInitializeRemoveLockEx","features":[2,3,1,7]},{"name":"IoInitializeTimer","features":[2,5,3,1,4,6,7,8]},{"name":"IoInitializeWorkItem","features":[2,3]},{"name":"IoInvalidateDeviceRelations","features":[2,5,3,1,4,6,7,8]},{"name":"IoInvalidateDeviceState","features":[2,5,3,1,4,6,7,8]},{"name":"IoIs32bitProcess","features":[2,5,3,1,4,6,7,8]},{"name":"IoIsFileObjectIgnoringSharing","features":[2,5,3,1,4,6,7,8]},{"name":"IoIsFileOriginRemote","features":[2,5,3,1,4,6,7,8]},{"name":"IoIsInitiator32bitProcess","features":[2,5,3,1,4,6,7,8]},{"name":"IoIsValidIrpStatus","features":[3,1]},{"name":"IoIsWdmVersionAvailable","features":[3,1]},{"name":"IoMakeAssociatedIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoMakeAssociatedIrpEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoMapTransfer","features":[2,3,1,33]},{"name":"IoMaxContainerInformationClass","features":[3]},{"name":"IoMaxContainerNotificationClass","features":[3]},{"name":"IoModifyAccess","features":[3]},{"name":"IoOpenDeviceInterfaceRegistryKey","features":[3,1]},{"name":"IoOpenDeviceRegistryKey","features":[2,5,3,1,4,6,7,8]},{"name":"IoOpenDriverRegistryKey","features":[2,5,3,1,4,6,7,8]},{"name":"IoPagingPriorityHigh","features":[3]},{"name":"IoPagingPriorityInvalid","features":[3]},{"name":"IoPagingPriorityNormal","features":[3]},{"name":"IoPagingPriorityReserved1","features":[3]},{"name":"IoPagingPriorityReserved2","features":[3]},{"name":"IoPropagateActivityIdToThread","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueryDeviceComponentInformation","features":[3]},{"name":"IoQueryDeviceConfigurationData","features":[3]},{"name":"IoQueryDeviceDescription","features":[3,1]},{"name":"IoQueryDeviceIdentifier","features":[3]},{"name":"IoQueryDeviceMaxData","features":[3]},{"name":"IoQueryFullDriverPath","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueryInformationByName","features":[2,5,3,1,6]},{"name":"IoQueryKsrPersistentMemorySize","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueryKsrPersistentMemorySizeEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoQueueWorkItem","features":[2,3]},{"name":"IoQueueWorkItemEx","features":[2,3]},{"name":"IoRaiseHardError","features":[2,5,3,1,4,6,7,8]},{"name":"IoRaiseInformationalHardError","features":[2,3,1]},{"name":"IoReadAccess","features":[3]},{"name":"IoReadDiskSignature","features":[2,5,3,1,4,6,7,8]},{"name":"IoReadPartitionTable","features":[2,5,3,1,4,6,22,7,8]},{"name":"IoReadPartitionTableEx","features":[2,5,3,1,4,6,22,7,8]},{"name":"IoRecordIoAttribution","features":[3,1]},{"name":"IoRegisterBootDriverCallback","features":[3]},{"name":"IoRegisterBootDriverReinitialization","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterContainerNotification","features":[3,1]},{"name":"IoRegisterDeviceInterface","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterDriverReinitialization","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterLastChanceShutdownNotification","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterPlugPlayNotification","features":[2,5,3,1,4,6,7,8]},{"name":"IoRegisterShutdownNotification","features":[2,5,3,1,4,6,7,8]},{"name":"IoReleaseCancelSpinLock","features":[3]},{"name":"IoReleaseRemoveLockAndWaitEx","features":[2,3,1,7]},{"name":"IoReleaseRemoveLockEx","features":[2,3,1,7]},{"name":"IoRemoveLinkShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoRemoveLinkShareAccessEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoRemoveShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoReplacePartitionUnit","features":[2,5,3,1,4,6,7,8]},{"name":"IoReportDetectedDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoReportInterruptActive","features":[2,3]},{"name":"IoReportInterruptInactive","features":[2,3]},{"name":"IoReportResourceForDetection","features":[2,5,3,1,4,6,7,8]},{"name":"IoReportResourceUsage","features":[2,5,3,1,4,6,7,8]},{"name":"IoReportRootDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoReportTargetDeviceChange","features":[2,5,3,1,4,6,7,8]},{"name":"IoReportTargetDeviceChangeAsynchronous","features":[2,5,3,1,4,6,7,8]},{"name":"IoRequestDeviceEject","features":[2,5,3,1,4,6,7,8]},{"name":"IoRequestDeviceEjectEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoReserveKsrPersistentMemory","features":[2,5,3,1,4,6,7,8]},{"name":"IoReserveKsrPersistentMemoryEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoReuseIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoSessionEventConnected","features":[3]},{"name":"IoSessionEventCreated","features":[3]},{"name":"IoSessionEventDisconnected","features":[3]},{"name":"IoSessionEventIgnore","features":[3]},{"name":"IoSessionEventLogoff","features":[3]},{"name":"IoSessionEventLogon","features":[3]},{"name":"IoSessionEventMax","features":[3]},{"name":"IoSessionEventTerminated","features":[3]},{"name":"IoSessionStateConnected","features":[3]},{"name":"IoSessionStateCreated","features":[3]},{"name":"IoSessionStateDisconnected","features":[3]},{"name":"IoSessionStateDisconnectedLoggedOn","features":[3]},{"name":"IoSessionStateInformation","features":[3]},{"name":"IoSessionStateInitialized","features":[3]},{"name":"IoSessionStateLoggedOff","features":[3]},{"name":"IoSessionStateLoggedOn","features":[3]},{"name":"IoSessionStateMax","features":[3]},{"name":"IoSessionStateNotification","features":[3]},{"name":"IoSessionStateTerminated","features":[3]},{"name":"IoSetActivityIdIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetActivityIdThread","features":[3]},{"name":"IoSetCompletionRoutineEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetDeviceInterfacePropertyData","features":[3,35,1]},{"name":"IoSetDeviceInterfaceState","features":[3,1]},{"name":"IoSetDevicePropertyData","features":[2,5,3,35,1,4,6,7,8]},{"name":"IoSetFileObjectIgnoreSharing","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetFileOrigin","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetFsZeroingOffset","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetFsZeroingOffsetRequired","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetHardErrorOrVerifyDevice","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetIoAttributionIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetIoPriorityHint","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetIrpExtraCreateParameter","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetLinkShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetMasterIrpStatus","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetPartitionInformation","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetPartitionInformationEx","features":[2,5,3,1,4,6,22,7,8]},{"name":"IoSetShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetShareAccessEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetStartIoAttributes","features":[2,5,3,1,4,6,7,8]},{"name":"IoSetSystemPartition","features":[3,1]},{"name":"IoSetThreadHardErrorMode","features":[3,1]},{"name":"IoSetTopLevelIrp","features":[2,5,3,1,4,6,7,8]},{"name":"IoSizeOfIrpEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoSizeofWorkItem","features":[3]},{"name":"IoStartNextPacket","features":[2,5,3,1,4,6,7,8]},{"name":"IoStartNextPacketByKey","features":[2,5,3,1,4,6,7,8]},{"name":"IoStartPacket","features":[2,5,3,1,4,6,7,8]},{"name":"IoStartTimer","features":[2,5,3,1,4,6,7,8]},{"name":"IoStopTimer","features":[2,5,3,1,4,6,7,8]},{"name":"IoSynchronousCallDriver","features":[2,5,3,1,4,6,7,8]},{"name":"IoTransferActivityId","features":[3]},{"name":"IoTranslateBusAddress","features":[3,1]},{"name":"IoTryQueueWorkItem","features":[2,3,1]},{"name":"IoUninitializeWorkItem","features":[2,3]},{"name":"IoUnregisterBootDriverCallback","features":[3]},{"name":"IoUnregisterContainerNotification","features":[3]},{"name":"IoUnregisterPlugPlayNotification","features":[3,1]},{"name":"IoUnregisterPlugPlayNotificationEx","features":[3,1]},{"name":"IoUnregisterShutdownNotification","features":[2,5,3,1,4,6,7,8]},{"name":"IoUpdateLinkShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoUpdateLinkShareAccessEx","features":[2,5,3,1,4,6,7,8]},{"name":"IoUpdateShareAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoValidateDeviceIoControlAccess","features":[2,5,3,1,4,6,7,8]},{"name":"IoVerifyPartitionTable","features":[2,5,3,1,4,6,7,8]},{"name":"IoVolumeDeviceNameToGuid","features":[3,1]},{"name":"IoVolumeDeviceNameToGuidPath","features":[3,1]},{"name":"IoVolumeDeviceToDosName","features":[3,1]},{"name":"IoVolumeDeviceToGuid","features":[3,1]},{"name":"IoVolumeDeviceToGuidPath","features":[3,1]},{"name":"IoWMIAllocateInstanceIds","features":[3,1]},{"name":"IoWMIDeviceObjectToInstanceName","features":[2,5,3,1,4,6,7,8]},{"name":"IoWMIExecuteMethod","features":[3,1]},{"name":"IoWMIHandleToInstanceName","features":[3,1]},{"name":"IoWMIOpenBlock","features":[3,1]},{"name":"IoWMIQueryAllData","features":[3,1]},{"name":"IoWMIQueryAllDataMultiple","features":[3,1]},{"name":"IoWMIQuerySingleInstance","features":[3,1]},{"name":"IoWMIQuerySingleInstanceMultiple","features":[3,1]},{"name":"IoWMIRegistrationControl","features":[2,5,3,1,4,6,7,8]},{"name":"IoWMISetNotificationCallback","features":[3,1]},{"name":"IoWMISetSingleInstance","features":[3,1]},{"name":"IoWMISetSingleItem","features":[3,1]},{"name":"IoWMISuggestInstanceName","features":[2,5,3,1,4,6,7,8]},{"name":"IoWMIWriteEvent","features":[3,1]},{"name":"IoWithinStackLimits","features":[3]},{"name":"IoWriteAccess","features":[3]},{"name":"IoWriteErrorLogEntry","features":[3]},{"name":"IoWriteKsrPersistentMemory","features":[3,1]},{"name":"IoWritePartitionTable","features":[2,5,3,1,4,6,22,7,8]},{"name":"IoWritePartitionTableEx","features":[2,5,3,1,4,6,22,7,8]},{"name":"IofCallDriver","features":[2,5,3,1,4,6,7,8]},{"name":"IofCompleteRequest","features":[2,5,3,1,4,6,7,8]},{"name":"IommuDeviceCreationConfigTypeAcpi","features":[3]},{"name":"IommuDeviceCreationConfigTypeDeviceId","features":[3]},{"name":"IommuDeviceCreationConfigTypeMax","features":[3]},{"name":"IommuDeviceCreationConfigTypeNone","features":[3]},{"name":"IommuDmaLogicalAllocatorBuddy","features":[3]},{"name":"IommuDmaLogicalAllocatorMax","features":[3]},{"name":"IommuDmaLogicalAllocatorNone","features":[3]},{"name":"IrqPolicyAllCloseProcessors","features":[3]},{"name":"IrqPolicyAllProcessorsInMachine","features":[3]},{"name":"IrqPolicyAllProcessorsInMachineWhenSteered","features":[3]},{"name":"IrqPolicyMachineDefault","features":[3]},{"name":"IrqPolicyOneCloseProcessor","features":[3]},{"name":"IrqPolicySpecifiedProcessors","features":[3]},{"name":"IrqPolicySpreadMessagesAcrossAllProcessors","features":[3]},{"name":"IrqPriorityHigh","features":[3]},{"name":"IrqPriorityLow","features":[3]},{"name":"IrqPriorityNormal","features":[3]},{"name":"IrqPriorityUndefined","features":[3]},{"name":"Isa","features":[3]},{"name":"IsochCommand","features":[3]},{"name":"IsochStatus","features":[3]},{"name":"KADDRESS_BASE","features":[3]},{"name":"KADDRESS_RANGE","features":[3]},{"name":"KADDRESS_RANGE_DESCRIPTOR","features":[3]},{"name":"KAPC","features":[3,1,7]},{"name":"KBUGCHECK_ADD_PAGES","features":[3]},{"name":"KBUGCHECK_BUFFER_DUMP_STATE","features":[3]},{"name":"KBUGCHECK_CALLBACK_REASON","features":[3]},{"name":"KBUGCHECK_CALLBACK_RECORD","features":[3,7]},{"name":"KBUGCHECK_CALLBACK_ROUTINE","features":[3]},{"name":"KBUGCHECK_DUMP_IO","features":[3]},{"name":"KBUGCHECK_DUMP_IO_TYPE","features":[3]},{"name":"KBUGCHECK_REASON_CALLBACK_RECORD","features":[3,7]},{"name":"KBUGCHECK_REASON_CALLBACK_ROUTINE","features":[3,7]},{"name":"KBUGCHECK_REMOVE_PAGES","features":[3]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA","features":[3]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA_EX","features":[3]},{"name":"KBUGCHECK_TRIAGE_DUMP_DATA","features":[3,7]},{"name":"KB_ADD_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[3]},{"name":"KB_ADD_PAGES_FLAG_PHYSICAL_ADDRESS","features":[3]},{"name":"KB_ADD_PAGES_FLAG_VIRTUAL_ADDRESS","features":[3]},{"name":"KB_REMOVE_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[3]},{"name":"KB_REMOVE_PAGES_FLAG_PHYSICAL_ADDRESS","features":[3]},{"name":"KB_REMOVE_PAGES_FLAG_VIRTUAL_ADDRESS","features":[3]},{"name":"KB_SECONDARY_DATA_FLAG_ADDITIONAL_DATA","features":[3]},{"name":"KB_SECONDARY_DATA_FLAG_NO_DEVICE_ACCESS","features":[3]},{"name":"KB_TRIAGE_DUMP_DATA_FLAG_BUGCHECK_ACTIVE","features":[3]},{"name":"KDEFERRED_ROUTINE","features":[2,3,7]},{"name":"KDEVICE_QUEUE_ENTRY","features":[3,1,7]},{"name":"KDPC_IMPORTANCE","features":[3]},{"name":"KDPC_WATCHDOG_INFORMATION","features":[3]},{"name":"KD_CALLBACK_ACTION","features":[3]},{"name":"KD_NAMESPACE_ENUM","features":[3]},{"name":"KD_OPTION","features":[3]},{"name":"KD_OPTION_SET_BLOCK_ENABLE","features":[3]},{"name":"KENCODED_TIMER_PROCESSOR","features":[3]},{"name":"KERNEL_LARGE_STACK_COMMIT","features":[3]},{"name":"KERNEL_LARGE_STACK_SIZE","features":[3]},{"name":"KERNEL_MCA_EXCEPTION_STACK_SIZE","features":[3]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION","features":[3]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION_VERSION","features":[3]},{"name":"KERNEL_STACK_SIZE","features":[3]},{"name":"KERNEL_USER_TIMES","features":[3]},{"name":"KEY_BASIC_INFORMATION","features":[3]},{"name":"KEY_CACHED_INFORMATION","features":[3]},{"name":"KEY_CONTROL_FLAGS_INFORMATION","features":[3]},{"name":"KEY_FULL_INFORMATION","features":[3]},{"name":"KEY_INFORMATION_CLASS","features":[3]},{"name":"KEY_LAYER_INFORMATION","features":[3]},{"name":"KEY_NAME_INFORMATION","features":[3]},{"name":"KEY_NODE_INFORMATION","features":[3]},{"name":"KEY_SET_VIRTUALIZATION_INFORMATION","features":[3]},{"name":"KEY_TRUST_INFORMATION","features":[3]},{"name":"KEY_VALUE_BASIC_INFORMATION","features":[3]},{"name":"KEY_VALUE_FULL_INFORMATION","features":[3]},{"name":"KEY_VALUE_INFORMATION_CLASS","features":[3]},{"name":"KEY_VALUE_LAYER_INFORMATION","features":[3]},{"name":"KEY_VALUE_PARTIAL_INFORMATION","features":[3]},{"name":"KEY_VALUE_PARTIAL_INFORMATION_ALIGN64","features":[3]},{"name":"KEY_VIRTUALIZATION_INFORMATION","features":[3]},{"name":"KEY_WOW64_FLAGS_INFORMATION","features":[3]},{"name":"KEY_WRITE_TIME_INFORMATION","features":[3]},{"name":"KE_MAX_TRIAGE_DUMP_DATA_MEMORY_SIZE","features":[3]},{"name":"KE_PROCESSOR_CHANGE_ADD_EXISTING","features":[3]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_CONTEXT","features":[3,1,7]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_STATE","features":[3]},{"name":"KFLOATING_SAVE","features":[3]},{"name":"KGATE","features":[2,3,1,7]},{"name":"KINTERRUPT_MODE","features":[3]},{"name":"KINTERRUPT_POLARITY","features":[3]},{"name":"KIPI_BROADCAST_WORKER","features":[3]},{"name":"KI_USER_SHARED_DATA","features":[3]},{"name":"KLOCK_QUEUE_HANDLE","features":[3]},{"name":"KMESSAGE_SERVICE_ROUTINE","features":[3,1]},{"name":"KPROFILE_SOURCE","features":[3]},{"name":"KSEMAPHORE","features":[2,3,1,7]},{"name":"KSERVICE_ROUTINE","features":[3,1]},{"name":"KSPIN_LOCK_QUEUE","features":[3]},{"name":"KSTART_ROUTINE","features":[3]},{"name":"KSYNCHRONIZE_ROUTINE","features":[3,1]},{"name":"KSYSTEM_TIME","features":[3]},{"name":"KTIMER","features":[2,3,1,7]},{"name":"KTRIAGE_DUMP_DATA_ARRAY","features":[3,7]},{"name":"KUMS_UCH_VOLATILE_BIT","features":[3]},{"name":"KUSER_SHARED_DATA","features":[3,1,30,7]},{"name":"KWAIT_CHAIN","features":[3]},{"name":"KWAIT_REASON","features":[3]},{"name":"KbCallbackAddPages","features":[3]},{"name":"KbCallbackDumpIo","features":[3]},{"name":"KbCallbackInvalid","features":[3]},{"name":"KbCallbackRemovePages","features":[3]},{"name":"KbCallbackReserved1","features":[3]},{"name":"KbCallbackReserved2","features":[3]},{"name":"KbCallbackSecondaryDumpData","features":[3]},{"name":"KbCallbackSecondaryMultiPartDumpData","features":[3]},{"name":"KbCallbackTriageDumpData","features":[3]},{"name":"KbDumpIoBody","features":[3]},{"name":"KbDumpIoComplete","features":[3]},{"name":"KbDumpIoHeader","features":[3]},{"name":"KbDumpIoInvalid","features":[3]},{"name":"KbDumpIoSecondaryData","features":[3]},{"name":"KdChangeOption","features":[3,1]},{"name":"KdConfigureDeviceAndContinue","features":[3]},{"name":"KdConfigureDeviceAndStop","features":[3]},{"name":"KdDisableDebugger","features":[3,1]},{"name":"KdEnableDebugger","features":[3,1]},{"name":"KdNameSpaceACPI","features":[3]},{"name":"KdNameSpaceAny","features":[3]},{"name":"KdNameSpaceMax","features":[3]},{"name":"KdNameSpaceNone","features":[3]},{"name":"KdNameSpacePCI","features":[3]},{"name":"KdRefreshDebuggerNotPresent","features":[3,1]},{"name":"KdSkipDeviceAndContinue","features":[3]},{"name":"KdSkipDeviceAndStop","features":[3]},{"name":"KeAcquireGuardedMutex","features":[2,3,1,7]},{"name":"KeAcquireGuardedMutexUnsafe","features":[2,3,1,7]},{"name":"KeAcquireInStackQueuedSpinLock","features":[3]},{"name":"KeAcquireInStackQueuedSpinLockAtDpcLevel","features":[3]},{"name":"KeAcquireInStackQueuedSpinLockForDpc","features":[3]},{"name":"KeAcquireInterruptSpinLock","features":[2,3]},{"name":"KeAcquireSpinLockForDpc","features":[3]},{"name":"KeAddTriageDumpDataBlock","features":[3,1,7]},{"name":"KeAreAllApcsDisabled","features":[3,1]},{"name":"KeAreApcsDisabled","features":[3,1]},{"name":"KeBugCheck","features":[3,30]},{"name":"KeBugCheckEx","features":[3,30]},{"name":"KeCancelTimer","features":[2,3,1,7]},{"name":"KeClearEvent","features":[2,3,1,7]},{"name":"KeConvertAuxiliaryCounterToPerformanceCounter","features":[3,1]},{"name":"KeConvertPerformanceCounterToAuxiliaryCounter","features":[3,1]},{"name":"KeDelayExecutionThread","features":[3,1]},{"name":"KeDeregisterBoundCallback","features":[3,1]},{"name":"KeDeregisterBugCheckCallback","features":[3,1,7]},{"name":"KeDeregisterBugCheckReasonCallback","features":[3,1,7]},{"name":"KeDeregisterNmiCallback","features":[3,1]},{"name":"KeDeregisterProcessorChangeCallback","features":[3]},{"name":"KeEnterCriticalRegion","features":[3]},{"name":"KeEnterGuardedRegion","features":[3]},{"name":"KeExpandKernelStackAndCallout","features":[3,1]},{"name":"KeExpandKernelStackAndCalloutEx","features":[3,1]},{"name":"KeFlushIoBuffers","features":[2,3,1]},{"name":"KeFlushQueuedDpcs","features":[3]},{"name":"KeFlushWriteBuffer","features":[3]},{"name":"KeGetCurrentIrql","features":[3]},{"name":"KeGetCurrentNodeNumber","features":[3]},{"name":"KeGetCurrentProcessorNumberEx","features":[3,7]},{"name":"KeGetProcessorIndexFromNumber","features":[3,7]},{"name":"KeGetProcessorNumberFromIndex","features":[3,1,7]},{"name":"KeGetRecommendedSharedDataAlignment","features":[3]},{"name":"KeInitializeCrashDumpHeader","features":[3,1]},{"name":"KeInitializeDeviceQueue","features":[2,3,1,7]},{"name":"KeInitializeDpc","features":[2,3,7]},{"name":"KeInitializeEvent","features":[2,3,1,7]},{"name":"KeInitializeGuardedMutex","features":[2,3,1,7]},{"name":"KeInitializeMutex","features":[2,3,1,7]},{"name":"KeInitializeSemaphore","features":[2,3,1,7]},{"name":"KeInitializeSpinLock","features":[3]},{"name":"KeInitializeThreadedDpc","features":[2,3,7]},{"name":"KeInitializeTimer","features":[2,3,1,7]},{"name":"KeInitializeTimerEx","features":[2,3,1,7]},{"name":"KeInitializeTriageDumpDataArray","features":[3,1,7]},{"name":"KeInsertByKeyDeviceQueue","features":[2,3,1,7]},{"name":"KeInsertDeviceQueue","features":[2,3,1,7]},{"name":"KeInsertQueueDpc","features":[2,3,1,7]},{"name":"KeInvalidateAllCaches","features":[3,1]},{"name":"KeInvalidateRangeAllCaches","features":[3]},{"name":"KeIpiGenericCall","features":[3]},{"name":"KeIsExecutingDpc","features":[3]},{"name":"KeLeaveCriticalRegion","features":[3]},{"name":"KeLeaveGuardedRegion","features":[3]},{"name":"KeProcessorAddCompleteNotify","features":[3]},{"name":"KeProcessorAddFailureNotify","features":[3]},{"name":"KeProcessorAddStartNotify","features":[3]},{"name":"KePulseEvent","features":[2,3,1,7]},{"name":"KeQueryActiveGroupCount","features":[3]},{"name":"KeQueryActiveProcessorCount","features":[3]},{"name":"KeQueryActiveProcessorCountEx","features":[3]},{"name":"KeQueryActiveProcessors","features":[3]},{"name":"KeQueryAuxiliaryCounterFrequency","features":[3,1]},{"name":"KeQueryDpcWatchdogInformation","features":[3,1]},{"name":"KeQueryGroupAffinity","features":[3]},{"name":"KeQueryHardwareCounterConfiguration","features":[3,1]},{"name":"KeQueryHighestNodeNumber","features":[3]},{"name":"KeQueryInterruptTimePrecise","features":[3]},{"name":"KeQueryLogicalProcessorRelationship","features":[3,1,7,32]},{"name":"KeQueryMaximumGroupCount","features":[3]},{"name":"KeQueryMaximumProcessorCount","features":[3]},{"name":"KeQueryMaximumProcessorCountEx","features":[3]},{"name":"KeQueryNodeActiveAffinity","features":[3,32]},{"name":"KeQueryNodeActiveAffinity2","features":[3,1,32]},{"name":"KeQueryNodeActiveProcessorCount","features":[3]},{"name":"KeQueryNodeMaximumProcessorCount","features":[3]},{"name":"KeQueryPerformanceCounter","features":[3]},{"name":"KeQueryPriorityThread","features":[2,3]},{"name":"KeQueryRuntimeThread","features":[2,3]},{"name":"KeQuerySystemTimePrecise","features":[3]},{"name":"KeQueryTimeIncrement","features":[3]},{"name":"KeQueryTotalCycleTimeThread","features":[2,3]},{"name":"KeQueryUnbiasedInterruptTime","features":[3]},{"name":"KeQueryUnbiasedInterruptTimePrecise","features":[3]},{"name":"KeReadStateEvent","features":[2,3,1,7]},{"name":"KeReadStateMutex","features":[2,3,1,7]},{"name":"KeReadStateSemaphore","features":[2,3,1,7]},{"name":"KeReadStateTimer","features":[2,3,1,7]},{"name":"KeRegisterBoundCallback","features":[3]},{"name":"KeRegisterBugCheckCallback","features":[3,1,7]},{"name":"KeRegisterBugCheckReasonCallback","features":[3,1,7]},{"name":"KeRegisterNmiCallback","features":[3,1]},{"name":"KeRegisterProcessorChangeCallback","features":[3]},{"name":"KeReleaseGuardedMutex","features":[2,3,1,7]},{"name":"KeReleaseGuardedMutexUnsafe","features":[2,3,1,7]},{"name":"KeReleaseInStackQueuedSpinLock","features":[3]},{"name":"KeReleaseInStackQueuedSpinLockForDpc","features":[3]},{"name":"KeReleaseInStackQueuedSpinLockFromDpcLevel","features":[3]},{"name":"KeReleaseInterruptSpinLock","features":[2,3]},{"name":"KeReleaseMutex","features":[2,3,1,7]},{"name":"KeReleaseSemaphore","features":[2,3,1,7]},{"name":"KeReleaseSpinLockForDpc","features":[3]},{"name":"KeRemoveByKeyDeviceQueue","features":[2,3,1,7]},{"name":"KeRemoveByKeyDeviceQueueIfBusy","features":[2,3,1,7]},{"name":"KeRemoveDeviceQueue","features":[2,3,1,7]},{"name":"KeRemoveEntryDeviceQueue","features":[2,3,1,7]},{"name":"KeRemoveQueueDpc","features":[2,3,1,7]},{"name":"KeRemoveQueueDpcEx","features":[2,3,1,7]},{"name":"KeResetEvent","features":[2,3,1,7]},{"name":"KeRestoreExtendedProcessorState","features":[3,30]},{"name":"KeRevertToUserAffinityThread","features":[3]},{"name":"KeRevertToUserAffinityThreadEx","features":[3]},{"name":"KeRevertToUserGroupAffinityThread","features":[3,32]},{"name":"KeSaveExtendedProcessorState","features":[3,1,30]},{"name":"KeSetBasePriorityThread","features":[2,3]},{"name":"KeSetCoalescableTimer","features":[2,3,1,7]},{"name":"KeSetEvent","features":[2,3,1,7]},{"name":"KeSetHardwareCounterConfiguration","features":[3,1]},{"name":"KeSetImportanceDpc","features":[2,3,7]},{"name":"KeSetPriorityThread","features":[2,3]},{"name":"KeSetSystemAffinityThread","features":[3]},{"name":"KeSetSystemAffinityThreadEx","features":[3]},{"name":"KeSetSystemGroupAffinityThread","features":[3,32]},{"name":"KeSetTargetProcessorDpc","features":[2,3,7]},{"name":"KeSetTargetProcessorDpcEx","features":[2,3,1,7]},{"name":"KeSetTimer","features":[2,3,1,7]},{"name":"KeSetTimerEx","features":[2,3,1,7]},{"name":"KeShouldYieldProcessor","features":[3]},{"name":"KeStallExecutionProcessor","features":[3]},{"name":"KeSynchronizeExecution","features":[2,3,1]},{"name":"KeTestSpinLock","features":[3,1]},{"name":"KeTryToAcquireGuardedMutex","features":[2,3,1,7]},{"name":"KeTryToAcquireSpinLockAtDpcLevel","features":[3,1]},{"name":"KeWaitForMultipleObjects","features":[2,3,1,7]},{"name":"KeWaitForSingleObject","features":[3,1]},{"name":"KeepObject","features":[3]},{"name":"KernelMode","features":[3]},{"name":"KeyBasicInformation","features":[3]},{"name":"KeyCachedInformation","features":[3]},{"name":"KeyFlagsInformation","features":[3]},{"name":"KeyFullInformation","features":[3]},{"name":"KeyHandleTagsInformation","features":[3]},{"name":"KeyLayerInformation","features":[3]},{"name":"KeyNameInformation","features":[3]},{"name":"KeyNodeInformation","features":[3]},{"name":"KeyTrustInformation","features":[3]},{"name":"KeyValueBasicInformation","features":[3]},{"name":"KeyValueFullInformation","features":[3]},{"name":"KeyValueFullInformationAlign64","features":[3]},{"name":"KeyValueLayerInformation","features":[3]},{"name":"KeyValuePartialInformation","features":[3]},{"name":"KeyValuePartialInformationAlign64","features":[3]},{"name":"KeyVirtualizationInformation","features":[3]},{"name":"KeyboardController","features":[3]},{"name":"KeyboardPeripheral","features":[3]},{"name":"KfRaiseIrql","features":[3]},{"name":"L0sAndL1EntryDisabled","features":[3]},{"name":"L0sAndL1EntryEnabled","features":[3]},{"name":"L0sAndL1EntrySupport","features":[3]},{"name":"L0sEntryEnabled","features":[3]},{"name":"L0sEntrySupport","features":[3]},{"name":"L0s_128ns_256ns","features":[3]},{"name":"L0s_1us_2us","features":[3]},{"name":"L0s_256ns_512ns","features":[3]},{"name":"L0s_2us_4us","features":[3]},{"name":"L0s_512ns_1us","features":[3]},{"name":"L0s_64ns_128ns","features":[3]},{"name":"L0s_Above4us","features":[3]},{"name":"L0s_Below64ns","features":[3]},{"name":"L1EntryEnabled","features":[3]},{"name":"L1EntrySupport","features":[3]},{"name":"L1_16us_32us","features":[3]},{"name":"L1_1us_2us","features":[3]},{"name":"L1_2us_4us","features":[3]},{"name":"L1_32us_64us","features":[3]},{"name":"L1_4us_8us","features":[3]},{"name":"L1_8us_16us","features":[3]},{"name":"L1_Above64us","features":[3]},{"name":"L1_Below1us","features":[3]},{"name":"LEGACY_BUS_INFORMATION","features":[3]},{"name":"LINK_SHARE_ACCESS","features":[3]},{"name":"LOADER_PARTITION_INFORMATION_EX","features":[3]},{"name":"LOCK_OPERATION","features":[3]},{"name":"LOCK_QUEUE_HALTED","features":[3]},{"name":"LOCK_QUEUE_HALTED_BIT","features":[3]},{"name":"LOCK_QUEUE_OWNER","features":[3]},{"name":"LOCK_QUEUE_OWNER_BIT","features":[3]},{"name":"LOCK_QUEUE_WAIT","features":[3]},{"name":"LOCK_QUEUE_WAIT_BIT","features":[3]},{"name":"LONG_2ND_MOST_SIGNIFICANT_BIT","features":[3]},{"name":"LONG_3RD_MOST_SIGNIFICANT_BIT","features":[3]},{"name":"LONG_LEAST_SIGNIFICANT_BIT","features":[3]},{"name":"LONG_MOST_SIGNIFICANT_BIT","features":[3]},{"name":"LOWBYTE_MASK","features":[3]},{"name":"LOW_LEVEL","features":[3]},{"name":"LOW_PRIORITY","features":[3]},{"name":"LOW_REALTIME_PRIORITY","features":[3]},{"name":"LastDStateTransitionD3cold","features":[3]},{"name":"LastDStateTransitionD3hot","features":[3]},{"name":"LastDStateTransitionStatusUnknown","features":[3]},{"name":"LastDrvRtFlag","features":[3]},{"name":"Latched","features":[3]},{"name":"LevelSensitive","features":[3]},{"name":"LinePeripheral","features":[3]},{"name":"LocateControl","features":[3]},{"name":"LocationTypeFileSystem","features":[3]},{"name":"LocationTypeMaximum","features":[3]},{"name":"LocationTypeRegistry","features":[3]},{"name":"LoggerEventsLoggedClass","features":[3]},{"name":"LoggerEventsLostClass","features":[3]},{"name":"LowImportance","features":[3]},{"name":"LowPagePriority","features":[3]},{"name":"LowPoolPriority","features":[3]},{"name":"LowPoolPrioritySpecialPoolOverrun","features":[3]},{"name":"LowPoolPrioritySpecialPoolUnderrun","features":[3]},{"name":"MAILSLOT_CREATE_PARAMETERS","features":[3,1]},{"name":"MAP_REGISTER_ENTRY","features":[3,1]},{"name":"MAXIMUM_DEBUG_BARS","features":[3]},{"name":"MAXIMUM_FILENAME_LENGTH","features":[3]},{"name":"MAXIMUM_PRIORITY","features":[3]},{"name":"MAX_EVENT_COUNTERS","features":[3]},{"name":"MCA_DRIVER_INFO","features":[2,3]},{"name":"MCA_EXCEPTION","features":[3]},{"name":"MCA_EXCEPTION_TYPE","features":[3]},{"name":"MCA_EXTREG_V2MAX","features":[3]},{"name":"MCE_NOTIFY_TYPE_GUID","features":[3]},{"name":"MCG_CAP","features":[3]},{"name":"MCG_STATUS","features":[3]},{"name":"MCI_ADDR","features":[3]},{"name":"MCI_STATS","features":[3]},{"name":"MCI_STATUS","features":[3]},{"name":"MCI_STATUS_AMD_BITS","features":[3]},{"name":"MCI_STATUS_BITS_COMMON","features":[3]},{"name":"MCI_STATUS_INTEL_BITS","features":[3]},{"name":"MDL_ALLOCATED_FIXED_SIZE","features":[3]},{"name":"MDL_DESCRIBES_AWE","features":[3]},{"name":"MDL_FREE_EXTRA_PTES","features":[3]},{"name":"MDL_INTERNAL","features":[3]},{"name":"MDL_LOCKED_PAGE_TABLES","features":[3]},{"name":"MDL_PAGE_CONTENTS_INVARIANT","features":[3]},{"name":"MEMORY_CACHING_TYPE","features":[3]},{"name":"MEMORY_CACHING_TYPE_ORIG","features":[3]},{"name":"MEMORY_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[3]},{"name":"MEMORY_ERROR_SECTION_GUID","features":[3]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_OPEN_INFORMATION","features":[3,1]},{"name":"MEM_COMMIT","features":[3]},{"name":"MEM_DECOMMIT","features":[3]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[3]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[3]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[3]},{"name":"MEM_LARGE_PAGES","features":[3]},{"name":"MEM_MAPPED","features":[3]},{"name":"MEM_PRIVATE","features":[3]},{"name":"MEM_RELEASE","features":[3]},{"name":"MEM_RESERVE","features":[3]},{"name":"MEM_RESET","features":[3]},{"name":"MEM_RESET_UNDO","features":[3]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[3]},{"name":"MEM_TOP_DOWN","features":[3]},{"name":"MM_ADD_PHYSICAL_MEMORY_ALREADY_ZEROED","features":[3]},{"name":"MM_ADD_PHYSICAL_MEMORY_HUGE_PAGES_ONLY","features":[3]},{"name":"MM_ADD_PHYSICAL_MEMORY_LARGE_PAGES_ONLY","features":[3]},{"name":"MM_ALLOCATE_AND_HOT_REMOVE","features":[3]},{"name":"MM_ALLOCATE_CONTIGUOUS_MEMORY_FAST_ONLY","features":[3]},{"name":"MM_ALLOCATE_FAST_LARGE_PAGES","features":[3]},{"name":"MM_ALLOCATE_FROM_LOCAL_NODE_ONLY","features":[3]},{"name":"MM_ALLOCATE_FULLY_REQUIRED","features":[3]},{"name":"MM_ALLOCATE_NO_WAIT","features":[3]},{"name":"MM_ALLOCATE_PREFER_CONTIGUOUS","features":[3]},{"name":"MM_ALLOCATE_REQUIRE_CONTIGUOUS_CHUNKS","features":[3]},{"name":"MM_ALLOCATE_TRIM_IF_NECESSARY","features":[3]},{"name":"MM_ANY_NODE_OK","features":[3]},{"name":"MM_COPY_ADDRESS","features":[3]},{"name":"MM_COPY_MEMORY_PHYSICAL","features":[3]},{"name":"MM_COPY_MEMORY_VIRTUAL","features":[3]},{"name":"MM_DONT_ZERO_ALLOCATION","features":[3]},{"name":"MM_DUMP_MAP_CACHED","features":[3]},{"name":"MM_DUMP_MAP_INVALIDATE","features":[3]},{"name":"MM_FREE_MDL_PAGES_ZERO","features":[3]},{"name":"MM_GET_CACHE_ATTRIBUTE_IO_SPACE","features":[3]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_ALL_PARTITIONS","features":[3]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_FILE_ONLY","features":[3]},{"name":"MM_MAPPING_ADDRESS_DIVISIBLE","features":[3]},{"name":"MM_MAXIMUM_DISK_IO_SIZE","features":[3]},{"name":"MM_MDL_PAGE_CONTENTS_STATE","features":[3]},{"name":"MM_MDL_ROUTINE","features":[3]},{"name":"MM_PAGE_PRIORITY","features":[3]},{"name":"MM_PERMANENT_ADDRESS_IS_IO_SPACE","features":[3]},{"name":"MM_PHYSICAL_ADDRESS_LIST","features":[3]},{"name":"MM_PROTECT_DRIVER_SECTION_ALLOW_UNLOAD","features":[3]},{"name":"MM_PROTECT_DRIVER_SECTION_VALID_FLAGS","features":[3]},{"name":"MM_REMOVE_PHYSICAL_MEMORY_BAD_ONLY","features":[3]},{"name":"MM_ROTATE_DIRECTION","features":[3]},{"name":"MM_SECURE_EXCLUSIVE","features":[3]},{"name":"MM_SECURE_NO_CHANGE","features":[3]},{"name":"MM_SECURE_NO_INHERIT","features":[3]},{"name":"MM_SECURE_USER_MODE_ONLY","features":[3]},{"name":"MM_SYSTEMSIZE","features":[3]},{"name":"MM_SYSTEM_SPACE_END","features":[3]},{"name":"MM_SYSTEM_VIEW_EXCEPTIONS_FOR_INPAGE_ERRORS","features":[3]},{"name":"MODE","features":[3]},{"name":"MPIBus","features":[3]},{"name":"MPIConfiguration","features":[3]},{"name":"MPSABus","features":[3]},{"name":"MPSAConfiguration","features":[3]},{"name":"MRLClosed","features":[3]},{"name":"MRLOpen","features":[3]},{"name":"MU_TELEMETRY_SECTION","features":[3]},{"name":"MU_TELEMETRY_SECTION_GUID","features":[3]},{"name":"MapPhysicalAddressTypeContiguousRange","features":[3]},{"name":"MapPhysicalAddressTypeMax","features":[3]},{"name":"MapPhysicalAddressTypeMdl","features":[3]},{"name":"MapPhysicalAddressTypePfn","features":[3]},{"name":"MaxFaultType","features":[3]},{"name":"MaxHardwareCounterType","features":[3]},{"name":"MaxKeyInfoClass","features":[3]},{"name":"MaxKeyValueInfoClass","features":[3]},{"name":"MaxPayload1024Bytes","features":[3]},{"name":"MaxPayload128Bytes","features":[3]},{"name":"MaxPayload2048Bytes","features":[3]},{"name":"MaxPayload256Bytes","features":[3]},{"name":"MaxPayload4096Bytes","features":[3]},{"name":"MaxPayload512Bytes","features":[3]},{"name":"MaxRegNtNotifyClass","features":[3]},{"name":"MaxSubsystemInformationType","features":[3]},{"name":"MaxTimerInfoClass","features":[3]},{"name":"MaxTraceInformationClass","features":[3]},{"name":"MaximumBusDataType","features":[3]},{"name":"MaximumDmaSpeed","features":[3]},{"name":"MaximumDmaWidth","features":[3]},{"name":"MaximumInterfaceType","features":[3]},{"name":"MaximumMode","features":[3]},{"name":"MaximumType","features":[3]},{"name":"MaximumWaitReason","features":[3]},{"name":"MaximumWorkQueue","features":[3]},{"name":"MdlMappingNoExecute","features":[3]},{"name":"MdlMappingNoWrite","features":[3]},{"name":"MdlMappingWithGuardPtes","features":[3]},{"name":"MediumHighImportance","features":[3]},{"name":"MediumImportance","features":[3]},{"name":"MemDedicatedAttributeMax","features":[3]},{"name":"MemDedicatedAttributeReadBandwidth","features":[3]},{"name":"MemDedicatedAttributeReadLatency","features":[3]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[3]},{"name":"MemDedicatedAttributeWriteLatency","features":[3]},{"name":"MemSectionExtendedParameterInvalidType","features":[3]},{"name":"MemSectionExtendedParameterMax","features":[3]},{"name":"MemSectionExtendedParameterNumaNode","features":[3]},{"name":"MemSectionExtendedParameterSigningLevel","features":[3]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[3]},{"name":"MicroChannel","features":[3]},{"name":"MmAddPhysicalMemory","features":[3,1]},{"name":"MmAddVerifierSpecialThunks","features":[3,1]},{"name":"MmAddVerifierThunks","features":[3,1]},{"name":"MmAdvanceMdl","features":[2,3,1]},{"name":"MmAllocateContiguousMemory","features":[3]},{"name":"MmAllocateContiguousMemoryEx","features":[3,1]},{"name":"MmAllocateContiguousMemorySpecifyCache","features":[3]},{"name":"MmAllocateContiguousMemorySpecifyCacheNode","features":[3]},{"name":"MmAllocateContiguousNodeMemory","features":[3]},{"name":"MmAllocateMappingAddress","features":[3]},{"name":"MmAllocateMappingAddressEx","features":[3]},{"name":"MmAllocateMdlForIoSpace","features":[2,3,1]},{"name":"MmAllocateNodePagesForMdlEx","features":[2,3]},{"name":"MmAllocateNonCachedMemory","features":[3]},{"name":"MmAllocatePagesForMdl","features":[2,3]},{"name":"MmAllocatePagesForMdlEx","features":[2,3]},{"name":"MmAllocatePartitionNodePagesForMdlEx","features":[2,3]},{"name":"MmAreMdlPagesCached","features":[2,3]},{"name":"MmBuildMdlForNonPagedPool","features":[2,3]},{"name":"MmCached","features":[3]},{"name":"MmCopyMemory","features":[3,1]},{"name":"MmCreateMdl","features":[2,3]},{"name":"MmCreateMirror","features":[3,1]},{"name":"MmFrameBufferCached","features":[3]},{"name":"MmFreeContiguousMemory","features":[3]},{"name":"MmFreeContiguousMemorySpecifyCache","features":[3]},{"name":"MmFreeMappingAddress","features":[3]},{"name":"MmFreeNonCachedMemory","features":[3]},{"name":"MmFreePagesFromMdl","features":[2,3]},{"name":"MmFreePagesFromMdlEx","features":[2,3]},{"name":"MmGetCacheAttribute","features":[3,1]},{"name":"MmGetCacheAttributeEx","features":[3,1]},{"name":"MmGetPhysicalAddress","features":[3]},{"name":"MmGetPhysicalMemoryRanges","features":[3]},{"name":"MmGetPhysicalMemoryRangesEx","features":[3]},{"name":"MmGetPhysicalMemoryRangesEx2","features":[3]},{"name":"MmGetSystemRoutineAddress","features":[3,1]},{"name":"MmGetVirtualForPhysical","features":[3]},{"name":"MmHardwareCoherentCached","features":[3]},{"name":"MmIsAddressValid","features":[3,1]},{"name":"MmIsDriverSuspectForVerifier","features":[2,5,3,1,4,6,7,8]},{"name":"MmIsDriverVerifying","features":[2,5,3,1,4,6,7,8]},{"name":"MmIsDriverVerifyingByAddress","features":[3]},{"name":"MmIsIoSpaceActive","features":[3]},{"name":"MmIsNonPagedSystemAddressValid","features":[3,1]},{"name":"MmIsThisAnNtAsSystem","features":[3,1]},{"name":"MmIsVerifierEnabled","features":[3,1]},{"name":"MmLargeSystem","features":[3]},{"name":"MmLockPagableDataSection","features":[3]},{"name":"MmLockPagableSectionByHandle","features":[3]},{"name":"MmMapIoSpace","features":[3]},{"name":"MmMapIoSpaceEx","features":[3]},{"name":"MmMapLockedPages","features":[2,3]},{"name":"MmMapLockedPagesSpecifyCache","features":[2,3]},{"name":"MmMapLockedPagesWithReservedMapping","features":[2,3]},{"name":"MmMapMdl","features":[2,3,1]},{"name":"MmMapMemoryDumpMdlEx","features":[2,3,1]},{"name":"MmMapUserAddressesToPage","features":[3,1]},{"name":"MmMapVideoDisplay","features":[3]},{"name":"MmMapViewInSessionSpace","features":[3,1]},{"name":"MmMapViewInSessionSpaceEx","features":[3,1]},{"name":"MmMapViewInSystemSpace","features":[3,1]},{"name":"MmMapViewInSystemSpaceEx","features":[3,1]},{"name":"MmMaximumCacheType","features":[3]},{"name":"MmMaximumRotateDirection","features":[3]},{"name":"MmMdlPageContentsDynamic","features":[3]},{"name":"MmMdlPageContentsInvariant","features":[3]},{"name":"MmMdlPageContentsQuery","features":[3]},{"name":"MmMdlPageContentsState","features":[2,3]},{"name":"MmMediumSystem","features":[3]},{"name":"MmNonCached","features":[3]},{"name":"MmNonCachedUnordered","features":[3]},{"name":"MmNotMapped","features":[3]},{"name":"MmPageEntireDriver","features":[3]},{"name":"MmProbeAndLockPages","features":[2,3]},{"name":"MmProbeAndLockProcessPages","features":[2,3]},{"name":"MmProbeAndLockSelectedPages","features":[2,3,21]},{"name":"MmProtectDriverSection","features":[3,1]},{"name":"MmProtectMdlSystemAddress","features":[2,3,1]},{"name":"MmQuerySystemSize","features":[3]},{"name":"MmRemovePhysicalMemory","features":[3,1]},{"name":"MmResetDriverPaging","features":[3]},{"name":"MmRotatePhysicalView","features":[2,3,1]},{"name":"MmSecureVirtualMemory","features":[3,1]},{"name":"MmSecureVirtualMemoryEx","features":[3,1]},{"name":"MmSetPermanentCacheAttribute","features":[3,1]},{"name":"MmSizeOfMdl","features":[3]},{"name":"MmSmallSystem","features":[3]},{"name":"MmToFrameBuffer","features":[3]},{"name":"MmToFrameBufferNoCopy","features":[3]},{"name":"MmToRegularMemory","features":[3]},{"name":"MmToRegularMemoryNoCopy","features":[3]},{"name":"MmUSWCCached","features":[3]},{"name":"MmUnlockPagableImageSection","features":[3]},{"name":"MmUnlockPages","features":[2,3]},{"name":"MmUnmapIoSpace","features":[3]},{"name":"MmUnmapLockedPages","features":[2,3]},{"name":"MmUnmapReservedMapping","features":[2,3]},{"name":"MmUnmapVideoDisplay","features":[3]},{"name":"MmUnmapViewInSessionSpace","features":[3,1]},{"name":"MmUnmapViewInSystemSpace","features":[3,1]},{"name":"MmUnsecureVirtualMemory","features":[3,1]},{"name":"MmWriteCombined","features":[3]},{"name":"ModemPeripheral","features":[3]},{"name":"ModifyAccess","features":[3]},{"name":"MonitorPeripheral","features":[3]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[3]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[3]},{"name":"MonitorRequestReasonBatteryCountChange","features":[3]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[3]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[3]},{"name":"MonitorRequestReasonBuiltinPanel","features":[3]},{"name":"MonitorRequestReasonDP","features":[3]},{"name":"MonitorRequestReasonDim","features":[3]},{"name":"MonitorRequestReasonDirectedDrips","features":[3]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[3]},{"name":"MonitorRequestReasonFullWake","features":[3]},{"name":"MonitorRequestReasonGracePeriod","features":[3]},{"name":"MonitorRequestReasonIdleTimeout","features":[3]},{"name":"MonitorRequestReasonLid","features":[3]},{"name":"MonitorRequestReasonMax","features":[3]},{"name":"MonitorRequestReasonNearProximity","features":[3]},{"name":"MonitorRequestReasonPdcSignal","features":[3]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[3]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[3]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[3]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[3]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[3]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[3]},{"name":"MonitorRequestReasonPnP","features":[3]},{"name":"MonitorRequestReasonPoSetSystemState","features":[3]},{"name":"MonitorRequestReasonPolicyChange","features":[3]},{"name":"MonitorRequestReasonPowerButton","features":[3]},{"name":"MonitorRequestReasonRemoteConnection","features":[3]},{"name":"MonitorRequestReasonResumeModernStandby","features":[3]},{"name":"MonitorRequestReasonResumePdc","features":[3]},{"name":"MonitorRequestReasonResumeS4","features":[3]},{"name":"MonitorRequestReasonScMonitorpower","features":[3]},{"name":"MonitorRequestReasonScreenOffRequest","features":[3]},{"name":"MonitorRequestReasonSessionUnlock","features":[3]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[3]},{"name":"MonitorRequestReasonSleepButton","features":[3]},{"name":"MonitorRequestReasonSxTransition","features":[3]},{"name":"MonitorRequestReasonSystemIdle","features":[3]},{"name":"MonitorRequestReasonSystemStateEntered","features":[3]},{"name":"MonitorRequestReasonTerminal","features":[3]},{"name":"MonitorRequestReasonTerminalInit","features":[3]},{"name":"MonitorRequestReasonThermalStandby","features":[3]},{"name":"MonitorRequestReasonUnknown","features":[3]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[3]},{"name":"MonitorRequestReasonUserInput","features":[3]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[3]},{"name":"MonitorRequestReasonUserInputHid","features":[3]},{"name":"MonitorRequestReasonUserInputInitialization","features":[3]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[3]},{"name":"MonitorRequestReasonUserInputMouse","features":[3]},{"name":"MonitorRequestReasonUserInputPen","features":[3]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[3]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[3]},{"name":"MonitorRequestReasonUserInputTouch","features":[3]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[3]},{"name":"MonitorRequestReasonWinrt","features":[3]},{"name":"MonitorRequestTypeOff","features":[3]},{"name":"MonitorRequestTypeOnAndPresent","features":[3]},{"name":"MonitorRequestTypeToggleOn","features":[3]},{"name":"MultiFunctionAdapter","features":[3]},{"name":"NAMED_PIPE_CREATE_PARAMETERS","features":[3,1]},{"name":"NEC98x86","features":[3]},{"name":"NMI_CALLBACK","features":[3,1]},{"name":"NMI_NOTIFY_TYPE_GUID","features":[3]},{"name":"NMI_SECTION_GUID","features":[3]},{"name":"NPEM_CAPABILITY_STANDARD","features":[3]},{"name":"NPEM_CONTROL_ENABLE_DISABLE","features":[3,1]},{"name":"NPEM_CONTROL_INTERFACE","features":[3,1]},{"name":"NPEM_CONTROL_INTERFACE_CURRENT_VERSION","features":[3]},{"name":"NPEM_CONTROL_INTERFACE_VERSION1","features":[3]},{"name":"NPEM_CONTROL_INTERFACE_VERSION2","features":[3]},{"name":"NPEM_CONTROL_QUERY_CONTROL","features":[3]},{"name":"NPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[3,1]},{"name":"NPEM_CONTROL_SET_STANDARD_CONTROL","features":[3,1]},{"name":"NPEM_CONTROL_STANDARD_CONTROL_BIT","features":[3]},{"name":"NTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[3,4]},{"name":"NT_PAGING_LEVELS","features":[3]},{"name":"NT_TIB32","features":[3]},{"name":"NX_SUPPORT_POLICY_ALWAYSOFF","features":[3]},{"name":"NX_SUPPORT_POLICY_ALWAYSON","features":[3]},{"name":"NX_SUPPORT_POLICY_OPTIN","features":[3]},{"name":"NX_SUPPORT_POLICY_OPTOUT","features":[3]},{"name":"NetworkController","features":[3]},{"name":"NetworkPeripheral","features":[3]},{"name":"NoAspmSupport","features":[3]},{"name":"NormalPagePriority","features":[3]},{"name":"NormalPoolPriority","features":[3]},{"name":"NormalPoolPrioritySpecialPoolOverrun","features":[3]},{"name":"NormalPoolPrioritySpecialPoolUnderrun","features":[3]},{"name":"NormalWorkQueue","features":[3]},{"name":"NtCommitComplete","features":[3,1]},{"name":"NtCommitEnlistment","features":[3,1]},{"name":"NtCommitTransaction","features":[3,1]},{"name":"NtCreateEnlistment","features":[2,3,1]},{"name":"NtCreateResourceManager","features":[2,3,1]},{"name":"NtCreateTransaction","features":[2,3,1]},{"name":"NtCreateTransactionManager","features":[2,3,1]},{"name":"NtEnumerateTransactionObject","features":[3,1,36]},{"name":"NtGetNotificationResourceManager","features":[3,1,21]},{"name":"NtManagePartition","features":[3,1]},{"name":"NtOpenEnlistment","features":[2,3,1]},{"name":"NtOpenProcess","features":[2,3,1,34]},{"name":"NtOpenRegistryTransaction","features":[2,3,1]},{"name":"NtOpenResourceManager","features":[2,3,1]},{"name":"NtOpenTransaction","features":[2,3,1]},{"name":"NtOpenTransactionManager","features":[2,3,1]},{"name":"NtPowerInformation","features":[3,1,8]},{"name":"NtPrePrepareComplete","features":[3,1]},{"name":"NtPrePrepareEnlistment","features":[3,1]},{"name":"NtPrepareComplete","features":[3,1]},{"name":"NtPrepareEnlistment","features":[3,1]},{"name":"NtPropagationComplete","features":[3,1]},{"name":"NtPropagationFailed","features":[3,1]},{"name":"NtQueryInformationEnlistment","features":[3,1,36]},{"name":"NtQueryInformationResourceManager","features":[3,1,36]},{"name":"NtQueryInformationTransaction","features":[3,1,36]},{"name":"NtQueryInformationTransactionManager","features":[3,1,36]},{"name":"NtReadOnlyEnlistment","features":[3,1]},{"name":"NtRecoverEnlistment","features":[3,1]},{"name":"NtRecoverResourceManager","features":[3,1]},{"name":"NtRecoverTransactionManager","features":[3,1]},{"name":"NtRegisterProtocolAddressInformation","features":[3,1]},{"name":"NtRenameTransactionManager","features":[3,1]},{"name":"NtRollbackComplete","features":[3,1]},{"name":"NtRollbackEnlistment","features":[3,1]},{"name":"NtRollbackRegistryTransaction","features":[3,1]},{"name":"NtRollbackTransaction","features":[3,1]},{"name":"NtRollforwardTransactionManager","features":[3,1]},{"name":"NtSetInformationEnlistment","features":[3,1,36]},{"name":"NtSetInformationResourceManager","features":[3,1,36]},{"name":"NtSetInformationTransaction","features":[3,1,36]},{"name":"NtSetInformationTransactionManager","features":[3,1,36]},{"name":"NtSinglePhaseReject","features":[3,1]},{"name":"NuBus","features":[3]},{"name":"NuBusConfiguration","features":[3]},{"name":"OBJECT_HANDLE_INFORMATION","features":[3]},{"name":"OBJECT_TYPE_CREATE","features":[3]},{"name":"OB_CALLBACK_REGISTRATION","features":[2,3,1]},{"name":"OB_FLT_REGISTRATION_VERSION","features":[3]},{"name":"OB_FLT_REGISTRATION_VERSION_0100","features":[3]},{"name":"OB_OPERATION_HANDLE_CREATE","features":[3]},{"name":"OB_OPERATION_HANDLE_DUPLICATE","features":[3]},{"name":"OB_OPERATION_REGISTRATION","features":[2,3,1]},{"name":"OB_POST_CREATE_HANDLE_INFORMATION","features":[3]},{"name":"OB_POST_DUPLICATE_HANDLE_INFORMATION","features":[3]},{"name":"OB_POST_OPERATION_INFORMATION","features":[2,3,1]},{"name":"OB_POST_OPERATION_PARAMETERS","features":[3]},{"name":"OB_PREOP_CALLBACK_STATUS","features":[3]},{"name":"OB_PREOP_SUCCESS","features":[3]},{"name":"OB_PRE_CREATE_HANDLE_INFORMATION","features":[3]},{"name":"OB_PRE_DUPLICATE_HANDLE_INFORMATION","features":[3]},{"name":"OB_PRE_OPERATION_INFORMATION","features":[2,3]},{"name":"OB_PRE_OPERATION_PARAMETERS","features":[3]},{"name":"OPLOCK_KEY_FLAG_PARENT_KEY","features":[3]},{"name":"OPLOCK_KEY_FLAG_TARGET_KEY","features":[3]},{"name":"OPLOCK_KEY_VERSION_WIN7","features":[3]},{"name":"OPLOCK_KEY_VERSION_WIN8","features":[3]},{"name":"OSC_CAPABILITIES_MASKED","features":[3]},{"name":"OSC_FIRMWARE_FAILURE","features":[3]},{"name":"OSC_UNRECOGNIZED_REVISION","features":[3]},{"name":"OSC_UNRECOGNIZED_UUID","features":[3]},{"name":"ObCloseHandle","features":[3,1]},{"name":"ObDereferenceObjectDeferDelete","features":[3]},{"name":"ObDereferenceObjectDeferDeleteWithTag","features":[3]},{"name":"ObGetFilterVersion","features":[3]},{"name":"ObGetObjectSecurity","features":[3,1,4]},{"name":"ObReferenceObjectByHandle","features":[2,3,1]},{"name":"ObReferenceObjectByHandleWithTag","features":[2,3,1]},{"name":"ObReferenceObjectByPointer","features":[2,3,1]},{"name":"ObReferenceObjectByPointerWithTag","features":[2,3,1]},{"name":"ObReferenceObjectSafe","features":[3,1]},{"name":"ObReferenceObjectSafeWithTag","features":[3,1]},{"name":"ObRegisterCallbacks","features":[2,3,1]},{"name":"ObReleaseObjectSecurity","features":[3,1,4]},{"name":"ObUnRegisterCallbacks","features":[3]},{"name":"ObfDereferenceObject","features":[3]},{"name":"ObfDereferenceObjectWithTag","features":[3]},{"name":"ObfReferenceObject","features":[3]},{"name":"ObfReferenceObjectWithTag","features":[3]},{"name":"OkControl","features":[3]},{"name":"OtherController","features":[3]},{"name":"OtherPeripheral","features":[3]},{"name":"PAGE_ENCLAVE_NO_CHANGE","features":[3]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[3]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[3]},{"name":"PAGE_EXECUTE","features":[3]},{"name":"PAGE_EXECUTE_READ","features":[3]},{"name":"PAGE_EXECUTE_READWRITE","features":[3]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[3]},{"name":"PAGE_GRAPHICS_COHERENT","features":[3]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[3]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[3]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[3]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[3]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[3]},{"name":"PAGE_GRAPHICS_READONLY","features":[3]},{"name":"PAGE_GRAPHICS_READWRITE","features":[3]},{"name":"PAGE_GUARD","features":[3]},{"name":"PAGE_NOACCESS","features":[3]},{"name":"PAGE_NOCACHE","features":[3]},{"name":"PAGE_PRIORITY_INFORMATION","features":[3]},{"name":"PAGE_READONLY","features":[3]},{"name":"PAGE_READWRITE","features":[3]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[3]},{"name":"PAGE_SHIFT","features":[3]},{"name":"PAGE_SIZE","features":[3]},{"name":"PAGE_TARGETS_INVALID","features":[3]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[3]},{"name":"PAGE_WRITECOMBINE","features":[3]},{"name":"PAGE_WRITECOPY","features":[3]},{"name":"PALLOCATE_ADAPTER_CHANNEL","features":[2,5,3,1,4,6,7,8]},{"name":"PALLOCATE_ADAPTER_CHANNEL_EX","features":[2,5,3,1,4,6,7,8]},{"name":"PALLOCATE_COMMON_BUFFER","features":[2,5,3,1,4,6,7,8]},{"name":"PALLOCATE_COMMON_BUFFER_EX","features":[2,5,3,1,4,6,7,8]},{"name":"PALLOCATE_COMMON_BUFFER_VECTOR","features":[2,5,3,1,4,6,7,8]},{"name":"PALLOCATE_COMMON_BUFFER_WITH_BOUNDS","features":[2,5,3,1,4,6,7,8]},{"name":"PALLOCATE_DOMAIN_COMMON_BUFFER","features":[2,5,3,1,4,6,7,8]},{"name":"PALLOCATE_FUNCTION","features":[3]},{"name":"PALLOCATE_FUNCTION_EX","features":[3]},{"name":"PARBITER_HANDLER","features":[2,5,3,1,4,6,7,8]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[3]},{"name":"PARTITION_INFORMATION_CLASS","features":[3]},{"name":"PASSIVE_LEVEL","features":[3]},{"name":"PBOOT_DRIVER_CALLBACK_FUNCTION","features":[3]},{"name":"PBOUND_CALLBACK","features":[3]},{"name":"PBUILD_MDL_FROM_SCATTER_GATHER_LIST","features":[2,5,3,1,4,6,7,8]},{"name":"PBUILD_SCATTER_GATHER_LIST","features":[2,5,3,1,4,6,7,8]},{"name":"PBUILD_SCATTER_GATHER_LIST_EX","features":[2,5,3,1,4,6,7,8]},{"name":"PCALCULATE_SCATTER_GATHER_LIST_SIZE","features":[2,5,3,1,4,6,7,8]},{"name":"PCALLBACK_FUNCTION","features":[3]},{"name":"PCANCEL_ADAPTER_CHANNEL","features":[2,5,3,1,4,6,7,8]},{"name":"PCANCEL_MAPPED_TRANSFER","features":[2,5,3,1,4,6,7,8]},{"name":"PCCARD_DEVICE_PCI","features":[3]},{"name":"PCCARD_DUP_LEGACY_BASE","features":[3]},{"name":"PCCARD_MAP_ERROR","features":[3]},{"name":"PCCARD_MAP_ZERO","features":[3]},{"name":"PCCARD_NO_CONTROLLERS","features":[3]},{"name":"PCCARD_NO_LEGACY_BASE","features":[3]},{"name":"PCCARD_NO_PIC","features":[3]},{"name":"PCCARD_NO_TIMER","features":[3]},{"name":"PCCARD_SCAN_DISABLED","features":[3]},{"name":"PCIBUSDATA","features":[3]},{"name":"PCIBus","features":[3]},{"name":"PCIConfiguration","features":[3]},{"name":"PCIEXPRESS_ERROR_SECTION_GUID","features":[3]},{"name":"PCIE_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[3]},{"name":"PCIXBUS_ERROR_SECTION_GUID","features":[3]},{"name":"PCIXBUS_ERRTYPE_ADDRESSPARITY","features":[3]},{"name":"PCIXBUS_ERRTYPE_BUSTIMEOUT","features":[3]},{"name":"PCIXBUS_ERRTYPE_COMMANDPARITY","features":[3]},{"name":"PCIXBUS_ERRTYPE_DATAPARITY","features":[3]},{"name":"PCIXBUS_ERRTYPE_MASTERABORT","features":[3]},{"name":"PCIXBUS_ERRTYPE_MASTERDATAPARITY","features":[3]},{"name":"PCIXBUS_ERRTYPE_SYSTEM","features":[3]},{"name":"PCIXBUS_ERRTYPE_UNKNOWN","features":[3]},{"name":"PCIXDEVICE_ERROR_SECTION_GUID","features":[3]},{"name":"PCIX_BRIDGE_CAPABILITY","features":[3]},{"name":"PCIX_MODE1_100MHZ","features":[3]},{"name":"PCIX_MODE1_133MHZ","features":[3]},{"name":"PCIX_MODE1_66MHZ","features":[3]},{"name":"PCIX_MODE2_266_100MHZ","features":[3]},{"name":"PCIX_MODE2_266_133MHZ","features":[3]},{"name":"PCIX_MODE2_266_66MHZ","features":[3]},{"name":"PCIX_MODE2_533_100MHZ","features":[3]},{"name":"PCIX_MODE2_533_133MHZ","features":[3]},{"name":"PCIX_MODE2_533_66MHZ","features":[3]},{"name":"PCIX_MODE_CONVENTIONAL_PCI","features":[3]},{"name":"PCIX_VERSION_DUAL_MODE_ECC","features":[3]},{"name":"PCIX_VERSION_MODE1_ONLY","features":[3]},{"name":"PCIX_VERSION_MODE2_ECC","features":[3]},{"name":"PCI_ACS_ALLOWED","features":[3]},{"name":"PCI_ACS_BIT","features":[3]},{"name":"PCI_ACS_BLOCKED","features":[3]},{"name":"PCI_ACS_REDIRECTED","features":[3]},{"name":"PCI_ADDRESS_IO_ADDRESS_MASK","features":[3]},{"name":"PCI_ADDRESS_IO_SPACE","features":[3]},{"name":"PCI_ADDRESS_MEMORY_ADDRESS_MASK","features":[3]},{"name":"PCI_ADDRESS_MEMORY_PREFETCHABLE","features":[3]},{"name":"PCI_ADDRESS_MEMORY_TYPE_MASK","features":[3]},{"name":"PCI_ADDRESS_ROM_ADDRESS_MASK","features":[3]},{"name":"PCI_ADVANCED_FEATURES_CAPABILITY","features":[3]},{"name":"PCI_AGP_APERTURE_PAGE_SIZE","features":[3]},{"name":"PCI_AGP_CAPABILITY","features":[3]},{"name":"PCI_AGP_CONTROL","features":[3]},{"name":"PCI_AGP_EXTENDED_CAPABILITY","features":[3]},{"name":"PCI_AGP_ISOCH_COMMAND","features":[3]},{"name":"PCI_AGP_ISOCH_STATUS","features":[3]},{"name":"PCI_AGP_RATE_1X","features":[3]},{"name":"PCI_AGP_RATE_2X","features":[3]},{"name":"PCI_AGP_RATE_4X","features":[3]},{"name":"PCI_ATS_INTERFACE","features":[3,1]},{"name":"PCI_ATS_INTERFACE_VERSION","features":[3]},{"name":"PCI_BRIDGE_TYPE","features":[3]},{"name":"PCI_BUS_INTERFACE_STANDARD","features":[3]},{"name":"PCI_BUS_INTERFACE_STANDARD_VERSION","features":[3]},{"name":"PCI_BUS_WIDTH","features":[3]},{"name":"PCI_CAPABILITIES_HEADER","features":[3]},{"name":"PCI_CAPABILITY_ID_ADVANCED_FEATURES","features":[3]},{"name":"PCI_CAPABILITY_ID_AGP","features":[3]},{"name":"PCI_CAPABILITY_ID_AGP_TARGET","features":[3]},{"name":"PCI_CAPABILITY_ID_CPCI_HOTSWAP","features":[3]},{"name":"PCI_CAPABILITY_ID_CPCI_RES_CTRL","features":[3]},{"name":"PCI_CAPABILITY_ID_DEBUG_PORT","features":[3]},{"name":"PCI_CAPABILITY_ID_FPB","features":[3]},{"name":"PCI_CAPABILITY_ID_HYPERTRANSPORT","features":[3]},{"name":"PCI_CAPABILITY_ID_MSI","features":[3]},{"name":"PCI_CAPABILITY_ID_MSIX","features":[3]},{"name":"PCI_CAPABILITY_ID_P2P_SSID","features":[3]},{"name":"PCI_CAPABILITY_ID_PCIX","features":[3]},{"name":"PCI_CAPABILITY_ID_PCI_EXPRESS","features":[3]},{"name":"PCI_CAPABILITY_ID_POWER_MANAGEMENT","features":[3]},{"name":"PCI_CAPABILITY_ID_SATA_CONFIG","features":[3]},{"name":"PCI_CAPABILITY_ID_SECURE","features":[3]},{"name":"PCI_CAPABILITY_ID_SHPC","features":[3]},{"name":"PCI_CAPABILITY_ID_SLOT_ID","features":[3]},{"name":"PCI_CAPABILITY_ID_VENDOR_SPECIFIC","features":[3]},{"name":"PCI_CAPABILITY_ID_VPD","features":[3]},{"name":"PCI_CARDBUS_BRIDGE_TYPE","features":[3]},{"name":"PCI_CLASS_BASE_SYSTEM_DEV","features":[3]},{"name":"PCI_CLASS_BRIDGE_DEV","features":[3]},{"name":"PCI_CLASS_DATA_ACQ_SIGNAL_PROC","features":[3]},{"name":"PCI_CLASS_DISPLAY_CTLR","features":[3]},{"name":"PCI_CLASS_DOCKING_STATION","features":[3]},{"name":"PCI_CLASS_ENCRYPTION_DECRYPTION","features":[3]},{"name":"PCI_CLASS_INPUT_DEV","features":[3]},{"name":"PCI_CLASS_INTELLIGENT_IO_CTLR","features":[3]},{"name":"PCI_CLASS_MASS_STORAGE_CTLR","features":[3]},{"name":"PCI_CLASS_MEMORY_CTLR","features":[3]},{"name":"PCI_CLASS_MULTIMEDIA_DEV","features":[3]},{"name":"PCI_CLASS_NETWORK_CTLR","features":[3]},{"name":"PCI_CLASS_NOT_DEFINED","features":[3]},{"name":"PCI_CLASS_PRE_20","features":[3]},{"name":"PCI_CLASS_PROCESSOR","features":[3]},{"name":"PCI_CLASS_SATELLITE_COMMS_CTLR","features":[3]},{"name":"PCI_CLASS_SERIAL_BUS_CTLR","features":[3]},{"name":"PCI_CLASS_SIMPLE_COMMS_CTLR","features":[3]},{"name":"PCI_CLASS_WIRELESS_CTLR","features":[3]},{"name":"PCI_COMMON_CONFIG","features":[3]},{"name":"PCI_COMMON_HEADER","features":[3]},{"name":"PCI_DATA_VERSION","features":[3]},{"name":"PCI_DEBUGGING_DEVICE_IN_USE","features":[3]},{"name":"PCI_DEVICE_D3COLD_STATE_REASON","features":[3]},{"name":"PCI_DEVICE_PRESENCE_PARAMETERS","features":[3]},{"name":"PCI_DEVICE_PRESENT_INTERFACE","features":[3,1]},{"name":"PCI_DEVICE_PRESENT_INTERFACE_VERSION","features":[3]},{"name":"PCI_DEVICE_TYPE","features":[3]},{"name":"PCI_DISABLE_LEVEL_INTERRUPT","features":[3]},{"name":"PCI_ENABLE_BUS_MASTER","features":[3]},{"name":"PCI_ENABLE_FAST_BACK_TO_BACK","features":[3]},{"name":"PCI_ENABLE_IO_SPACE","features":[3]},{"name":"PCI_ENABLE_MEMORY_SPACE","features":[3]},{"name":"PCI_ENABLE_PARITY","features":[3]},{"name":"PCI_ENABLE_SERR","features":[3]},{"name":"PCI_ENABLE_SPECIAL_CYCLES","features":[3]},{"name":"PCI_ENABLE_VGA_COMPATIBLE_PALETTE","features":[3]},{"name":"PCI_ENABLE_WAIT_CYCLE","features":[3]},{"name":"PCI_ENABLE_WRITE_AND_INVALIDATE","features":[3]},{"name":"PCI_ERROR_HANDLER_CALLBACK","features":[3]},{"name":"PCI_EXPRESS_ACCESS_CONTROL_SERVICES_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_ACS_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_ACS_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_ACS_CONTROL","features":[3]},{"name":"PCI_EXPRESS_ADVANCED_ERROR_REPORTING_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_AER_CAPABILITIES","features":[3]},{"name":"PCI_EXPRESS_AER_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_ARI_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_ARI_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_ARI_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_ARI_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_ASPM_CONTROL","features":[3]},{"name":"PCI_EXPRESS_ASPM_SUPPORT","features":[3]},{"name":"PCI_EXPRESS_ATS_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_ATS_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_ATS_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_ATS_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_BRIDGE_AER_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_CAPABILITIES_REGISTER","features":[3]},{"name":"PCI_EXPRESS_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_CARD_PRESENCE","features":[3]},{"name":"PCI_EXPRESS_CONFIGURATION_ACCESS_CORRELATION_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_MASK","features":[3]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_STATUS","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_REGISTER_V11","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_V11","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_LOCK_REGISTER","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_HIGH_REGISTER","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_LOW_REGISTER","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_HIGH_REGISTER","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_LOW_REGISTER_V11","features":[3]},{"name":"PCI_EXPRESS_CXL_DVSEC_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_1","features":[3]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_2","features":[3]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_2_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_2_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DEVICE_SERIAL_NUMBER_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_DEVICE_STATUS_2_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DEVICE_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DEVICE_TYPE","features":[3]},{"name":"PCI_EXPRESS_DPA_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_DPC_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_DPC_CAPS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_DPC_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_ERROR_SOURCE_ID","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_EXCEPTION_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_HEADERLOG_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_IMPSPECLOG_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_MASK_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SEVERITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SYSERR_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_RP_PIO_TLPPREFIXLOG_REGISTER","features":[3]},{"name":"PCI_EXPRESS_DPC_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_ENHANCED_CAPABILITY_HEADER","features":[3]},{"name":"PCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[3,1]},{"name":"PCI_EXPRESS_ERROR_SOURCE_ID","features":[3]},{"name":"PCI_EXPRESS_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[3,1]},{"name":"PCI_EXPRESS_FRS_QUEUEING_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_INDICATOR_STATE","features":[3]},{"name":"PCI_EXPRESS_L0s_EXIT_LATENCY","features":[3]},{"name":"PCI_EXPRESS_L1_EXIT_LATENCY","features":[3]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITIES_REGISTER","features":[3]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_L1_PM_SS_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_1_REGISTER","features":[3]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_2_REGISTER","features":[3]},{"name":"PCI_EXPRESS_LANE_ERROR_STATUS","features":[3]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_2_REGISTER","features":[3]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_REGISTER","features":[3]},{"name":"PCI_EXPRESS_LINK_CONTROL3","features":[3]},{"name":"PCI_EXPRESS_LINK_CONTROL_2_REGISTER","features":[3]},{"name":"PCI_EXPRESS_LINK_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[3,1]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE_VERSION","features":[3]},{"name":"PCI_EXPRESS_LINK_STATUS_2_REGISTER","features":[3]},{"name":"PCI_EXPRESS_LINK_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_LINK_SUBSTATE","features":[3]},{"name":"PCI_EXPRESS_LN_REQUESTER_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_LTR_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_LTR_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_LTR_MAX_LATENCY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_MAX_PAYLOAD_SIZE","features":[3]},{"name":"PCI_EXPRESS_MFVC_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_MPCIE_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_MRL_STATE","features":[3]},{"name":"PCI_EXPRESS_MULTICAST_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_MULTI_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_NPEM_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_NPEM_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_NPEM_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_PAGE_REQUEST_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_PASID_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_PASID_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_PASID_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_PASID_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_PME_REQUESTOR_ID","features":[3]},{"name":"PCI_EXPRESS_PMUX_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_POWER_BUDGETING_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_POWER_STATE","features":[3]},{"name":"PCI_EXPRESS_PRI_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_PRI_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_PRI_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_PTM_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_PTM_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_PTM_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_PTM_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_RCB","features":[3]},{"name":"PCI_EXPRESS_RCRB_HEADER_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_RC_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_RC_INTERNAL_LINK_CONTROL_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_RC_LINK_DECLARATION_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_READINESS_TIME_REPORTING_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_RESERVED_FOR_AMD_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_ENTRY","features":[3]},{"name":"PCI_EXPRESS_ROOTPORT_AER_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_ROOT_CAPABILITIES_REGISTER","features":[3]},{"name":"PCI_EXPRESS_ROOT_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_ROOT_ERROR_COMMAND","features":[3]},{"name":"PCI_EXPRESS_ROOT_ERROR_STATUS","features":[3]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[3]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE_VERSION","features":[3]},{"name":"PCI_EXPRESS_ROOT_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_SECONDARY_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_SECONDARY_PCI_EXPRESS_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_SEC_AER_CAPABILITIES","features":[3]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_MASK","features":[3]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_SEVERITY","features":[3]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_STATUS","features":[3]},{"name":"PCI_EXPRESS_SERIAL_NUMBER_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_SINGLE_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_SLOT_CAPABILITIES_REGISTER","features":[3]},{"name":"PCI_EXPRESS_SLOT_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_SLOT_STATUS_REGISTER","features":[3]},{"name":"PCI_EXPRESS_SRIOV_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_SRIOV_CAPS","features":[3]},{"name":"PCI_EXPRESS_SRIOV_CONTROL","features":[3]},{"name":"PCI_EXPRESS_SRIOV_MIGRATION_STATE_ARRAY","features":[3]},{"name":"PCI_EXPRESS_SRIOV_STATUS","features":[3]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY_REGISTER","features":[3]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CONTROL_REGISTER","features":[3]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_MSIX_TABLE","features":[3]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_NONE","features":[3]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_RESERVED","features":[3]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_TPH_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_TPH_ST_TABLE_ENTRY","features":[3]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_MASK","features":[3]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_SEVERITY","features":[3]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_STATUS","features":[3]},{"name":"PCI_EXPRESS_VC_AND_MFVC_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAPABILITY","features":[3]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAP_ID","features":[3]},{"name":"PCI_EXPRESS_WAKE_CONTROL","features":[3,1]},{"name":"PCI_EXTENDED_CONFIG_LENGTH","features":[3]},{"name":"PCI_FIRMWARE_BUS_CAPS","features":[3]},{"name":"PCI_FIRMWARE_BUS_CAPS_RETURN_BUFFER","features":[3]},{"name":"PCI_FPB_CAPABILITIES_REGISTER","features":[3]},{"name":"PCI_FPB_CAPABILITY","features":[3]},{"name":"PCI_FPB_CAPABILITY_HEADER","features":[3]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL1_REGISTER","features":[3]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL2_REGISTER","features":[3]},{"name":"PCI_FPB_MEM_LOW_VECTOR_CONTROL_REGISTER","features":[3]},{"name":"PCI_FPB_RID_VECTOR_CONTROL1_REGISTER","features":[3]},{"name":"PCI_FPB_RID_VECTOR_CONTROL2_REGISTER","features":[3]},{"name":"PCI_FPB_VECTOR_ACCESS_CONTROL_REGISTER","features":[3]},{"name":"PCI_FPB_VECTOR_ACCESS_DATA_REGISTER","features":[3]},{"name":"PCI_HARDWARE_INTERFACE","features":[3]},{"name":"PCI_INVALID_ALTERNATE_FUNCTION_NUMBER","features":[3]},{"name":"PCI_INVALID_VENDORID","features":[3]},{"name":"PCI_IS_DEVICE_PRESENT","features":[3,1]},{"name":"PCI_IS_DEVICE_PRESENT_EX","features":[3,1]},{"name":"PCI_LINE_TO_PIN","features":[3]},{"name":"PCI_MAX_BRIDGE_NUMBER","features":[3]},{"name":"PCI_MAX_DEVICES","features":[3]},{"name":"PCI_MAX_FUNCTION","features":[3]},{"name":"PCI_MAX_SEGMENT_NUMBER","features":[3]},{"name":"PCI_MSIX_GET_ENTRY","features":[3,1]},{"name":"PCI_MSIX_GET_TABLE_SIZE","features":[3,1]},{"name":"PCI_MSIX_MASKUNMASK_ENTRY","features":[3,1]},{"name":"PCI_MSIX_SET_ENTRY","features":[3,1]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE","features":[3,1]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE_VERSION","features":[3]},{"name":"PCI_MULTIFUNCTION","features":[3]},{"name":"PCI_PIN_TO_LINE","features":[3]},{"name":"PCI_PMC","features":[3]},{"name":"PCI_PMCSR","features":[3]},{"name":"PCI_PMCSR_BSE","features":[3]},{"name":"PCI_PM_CAPABILITY","features":[3]},{"name":"PCI_PREPARE_MULTISTAGE_RESUME","features":[3]},{"name":"PCI_PROGRAMMING_INTERFACE_MSC_NVM_EXPRESS","features":[3]},{"name":"PCI_PTM_TIME_SOURCE_AUX","features":[3]},{"name":"PCI_READ_WRITE_CONFIG","features":[3]},{"name":"PCI_RECOVERY_SECTION_GUID","features":[3]},{"name":"PCI_ROMADDRESS_ENABLED","features":[3]},{"name":"PCI_ROOT_BUS_CAPABILITY","features":[3,1]},{"name":"PCI_ROOT_BUS_HARDWARE_CAPABILITY","features":[3,1]},{"name":"PCI_ROOT_BUS_OSC_CONTROL_FIELD","features":[3]},{"name":"PCI_ROOT_BUS_OSC_METHOD_CAPABILITY_REVISION","features":[3]},{"name":"PCI_ROOT_BUS_OSC_SUPPORT_FIELD","features":[3]},{"name":"PCI_SECURITY_DIRECT_TRANSLATED_P2P","features":[3]},{"name":"PCI_SECURITY_ENHANCED","features":[3]},{"name":"PCI_SECURITY_FULLY_SUPPORTED","features":[3]},{"name":"PCI_SECURITY_GUEST_ASSIGNED","features":[3]},{"name":"PCI_SECURITY_INTERFACE","features":[3,1]},{"name":"PCI_SECURITY_INTERFACE2","features":[3,1]},{"name":"PCI_SECURITY_INTERFACE_VERSION","features":[3]},{"name":"PCI_SECURITY_INTERFACE_VERSION2","features":[3]},{"name":"PCI_SECURITY_SRIOV_DIRECT_TRANSLATED_P2P","features":[3]},{"name":"PCI_SEGMENT_BUS_NUMBER","features":[3]},{"name":"PCI_SET_ACS","features":[3,1]},{"name":"PCI_SET_ACS2","features":[3,1]},{"name":"PCI_SET_ATS","features":[3,1]},{"name":"PCI_SLOT_NUMBER","features":[3]},{"name":"PCI_STATUS_66MHZ_CAPABLE","features":[3]},{"name":"PCI_STATUS_CAPABILITIES_LIST","features":[3]},{"name":"PCI_STATUS_DATA_PARITY_DETECTED","features":[3]},{"name":"PCI_STATUS_DETECTED_PARITY_ERROR","features":[3]},{"name":"PCI_STATUS_DEVSEL","features":[3]},{"name":"PCI_STATUS_FAST_BACK_TO_BACK","features":[3]},{"name":"PCI_STATUS_IMMEDIATE_READINESS","features":[3]},{"name":"PCI_STATUS_INTERRUPT_PENDING","features":[3]},{"name":"PCI_STATUS_RECEIVED_MASTER_ABORT","features":[3]},{"name":"PCI_STATUS_RECEIVED_TARGET_ABORT","features":[3]},{"name":"PCI_STATUS_SIGNALED_SYSTEM_ERROR","features":[3]},{"name":"PCI_STATUS_SIGNALED_TARGET_ABORT","features":[3]},{"name":"PCI_STATUS_UDF_SUPPORTED","features":[3]},{"name":"PCI_SUBCLASS_BR_CARDBUS","features":[3]},{"name":"PCI_SUBCLASS_BR_EISA","features":[3]},{"name":"PCI_SUBCLASS_BR_HOST","features":[3]},{"name":"PCI_SUBCLASS_BR_ISA","features":[3]},{"name":"PCI_SUBCLASS_BR_MCA","features":[3]},{"name":"PCI_SUBCLASS_BR_NUBUS","features":[3]},{"name":"PCI_SUBCLASS_BR_OTHER","features":[3]},{"name":"PCI_SUBCLASS_BR_PCI_TO_PCI","features":[3]},{"name":"PCI_SUBCLASS_BR_PCMCIA","features":[3]},{"name":"PCI_SUBCLASS_BR_RACEWAY","features":[3]},{"name":"PCI_SUBCLASS_COM_MODEM","features":[3]},{"name":"PCI_SUBCLASS_COM_MULTIPORT","features":[3]},{"name":"PCI_SUBCLASS_COM_OTHER","features":[3]},{"name":"PCI_SUBCLASS_COM_PARALLEL","features":[3]},{"name":"PCI_SUBCLASS_COM_SERIAL","features":[3]},{"name":"PCI_SUBCLASS_CRYPTO_ENTERTAINMENT","features":[3]},{"name":"PCI_SUBCLASS_CRYPTO_NET_COMP","features":[3]},{"name":"PCI_SUBCLASS_CRYPTO_OTHER","features":[3]},{"name":"PCI_SUBCLASS_DASP_DPIO","features":[3]},{"name":"PCI_SUBCLASS_DASP_OTHER","features":[3]},{"name":"PCI_SUBCLASS_DOC_GENERIC","features":[3]},{"name":"PCI_SUBCLASS_DOC_OTHER","features":[3]},{"name":"PCI_SUBCLASS_INP_DIGITIZER","features":[3]},{"name":"PCI_SUBCLASS_INP_GAMEPORT","features":[3]},{"name":"PCI_SUBCLASS_INP_KEYBOARD","features":[3]},{"name":"PCI_SUBCLASS_INP_MOUSE","features":[3]},{"name":"PCI_SUBCLASS_INP_OTHER","features":[3]},{"name":"PCI_SUBCLASS_INP_SCANNER","features":[3]},{"name":"PCI_SUBCLASS_INTIO_I2O","features":[3]},{"name":"PCI_SUBCLASS_MEM_FLASH","features":[3]},{"name":"PCI_SUBCLASS_MEM_OTHER","features":[3]},{"name":"PCI_SUBCLASS_MEM_RAM","features":[3]},{"name":"PCI_SUBCLASS_MM_AUDIO_DEV","features":[3]},{"name":"PCI_SUBCLASS_MM_OTHER","features":[3]},{"name":"PCI_SUBCLASS_MM_TELEPHONY_DEV","features":[3]},{"name":"PCI_SUBCLASS_MM_VIDEO_DEV","features":[3]},{"name":"PCI_SUBCLASS_MSC_AHCI_CTLR","features":[3]},{"name":"PCI_SUBCLASS_MSC_FLOPPY_CTLR","features":[3]},{"name":"PCI_SUBCLASS_MSC_IDE_CTLR","features":[3]},{"name":"PCI_SUBCLASS_MSC_IPI_CTLR","features":[3]},{"name":"PCI_SUBCLASS_MSC_NVM_CTLR","features":[3]},{"name":"PCI_SUBCLASS_MSC_OTHER","features":[3]},{"name":"PCI_SUBCLASS_MSC_RAID_CTLR","features":[3]},{"name":"PCI_SUBCLASS_MSC_SCSI_BUS_CTLR","features":[3]},{"name":"PCI_SUBCLASS_NET_ATM_CTLR","features":[3]},{"name":"PCI_SUBCLASS_NET_ETHERNET_CTLR","features":[3]},{"name":"PCI_SUBCLASS_NET_FDDI_CTLR","features":[3]},{"name":"PCI_SUBCLASS_NET_ISDN_CTLR","features":[3]},{"name":"PCI_SUBCLASS_NET_OTHER","features":[3]},{"name":"PCI_SUBCLASS_NET_TOKEN_RING_CTLR","features":[3]},{"name":"PCI_SUBCLASS_PRE_20_NON_VGA","features":[3]},{"name":"PCI_SUBCLASS_PRE_20_VGA","features":[3]},{"name":"PCI_SUBCLASS_PROC_386","features":[3]},{"name":"PCI_SUBCLASS_PROC_486","features":[3]},{"name":"PCI_SUBCLASS_PROC_ALPHA","features":[3]},{"name":"PCI_SUBCLASS_PROC_COPROCESSOR","features":[3]},{"name":"PCI_SUBCLASS_PROC_PENTIUM","features":[3]},{"name":"PCI_SUBCLASS_PROC_POWERPC","features":[3]},{"name":"PCI_SUBCLASS_SAT_AUDIO","features":[3]},{"name":"PCI_SUBCLASS_SAT_DATA","features":[3]},{"name":"PCI_SUBCLASS_SAT_TV","features":[3]},{"name":"PCI_SUBCLASS_SAT_VOICE","features":[3]},{"name":"PCI_SUBCLASS_SB_ACCESS","features":[3]},{"name":"PCI_SUBCLASS_SB_FIBRE_CHANNEL","features":[3]},{"name":"PCI_SUBCLASS_SB_IEEE1394","features":[3]},{"name":"PCI_SUBCLASS_SB_SMBUS","features":[3]},{"name":"PCI_SUBCLASS_SB_SSA","features":[3]},{"name":"PCI_SUBCLASS_SB_THUNDERBOLT","features":[3]},{"name":"PCI_SUBCLASS_SB_USB","features":[3]},{"name":"PCI_SUBCLASS_SYS_DMA_CTLR","features":[3]},{"name":"PCI_SUBCLASS_SYS_GEN_HOTPLUG_CTLR","features":[3]},{"name":"PCI_SUBCLASS_SYS_INTERRUPT_CTLR","features":[3]},{"name":"PCI_SUBCLASS_SYS_OTHER","features":[3]},{"name":"PCI_SUBCLASS_SYS_RCEC","features":[3]},{"name":"PCI_SUBCLASS_SYS_REAL_TIME_CLOCK","features":[3]},{"name":"PCI_SUBCLASS_SYS_SDIO_CTRL","features":[3]},{"name":"PCI_SUBCLASS_SYS_SYSTEM_TIMER","features":[3]},{"name":"PCI_SUBCLASS_VID_OTHER","features":[3]},{"name":"PCI_SUBCLASS_VID_VGA_CTLR","features":[3]},{"name":"PCI_SUBCLASS_VID_XGA_CTLR","features":[3]},{"name":"PCI_SUBCLASS_WIRELESS_CON_IR","features":[3]},{"name":"PCI_SUBCLASS_WIRELESS_IRDA","features":[3]},{"name":"PCI_SUBCLASS_WIRELESS_OTHER","features":[3]},{"name":"PCI_SUBCLASS_WIRELESS_RF","features":[3]},{"name":"PCI_SUBLCASS_VID_3D_CTLR","features":[3]},{"name":"PCI_SUBSYSTEM_IDS_CAPABILITY","features":[3]},{"name":"PCI_TYPE0_ADDRESSES","features":[3]},{"name":"PCI_TYPE1_ADDRESSES","features":[3]},{"name":"PCI_TYPE2_ADDRESSES","features":[3]},{"name":"PCI_TYPE_20BIT","features":[3]},{"name":"PCI_TYPE_32BIT","features":[3]},{"name":"PCI_TYPE_64BIT","features":[3]},{"name":"PCI_USE_CLASS_SUBCLASS","features":[3]},{"name":"PCI_USE_LOCAL_BUS","features":[3]},{"name":"PCI_USE_LOCAL_DEVICE","features":[3]},{"name":"PCI_USE_PROGIF","features":[3]},{"name":"PCI_USE_REVISION","features":[3]},{"name":"PCI_USE_SUBSYSTEM_IDS","features":[3]},{"name":"PCI_USE_VENDEV_IDS","features":[3]},{"name":"PCI_VENDOR_SPECIFIC_CAPABILITY","features":[3]},{"name":"PCI_VIRTUALIZATION_INTERFACE","features":[3,1]},{"name":"PCI_WHICHSPACE_CONFIG","features":[3]},{"name":"PCI_WHICHSPACE_ROM","features":[3]},{"name":"PCI_X_CAPABILITY","features":[3]},{"name":"PCIe_NOTIFY_TYPE_GUID","features":[3]},{"name":"PCLFS_CLIENT_ADVANCE_TAIL_CALLBACK","features":[2,5,3,1,4,21,6,7,8]},{"name":"PCLFS_CLIENT_LFF_HANDLER_COMPLETE_CALLBACK","features":[2,5,3,1,4,6,7,8]},{"name":"PCLFS_CLIENT_LOG_UNPINNED_CALLBACK","features":[2,5,3,1,4,6,7,8]},{"name":"PCLFS_SET_LOG_SIZE_COMPLETE_CALLBACK","features":[2,5,3,1,4,6,7,8]},{"name":"PCMCIABus","features":[3]},{"name":"PCMCIAConfiguration","features":[3]},{"name":"PCONFIGURE_ADAPTER_CHANNEL","features":[2,5,3,1,4,6,7,8]},{"name":"PCRASHDUMP_POWER_ON","features":[3,1]},{"name":"PCREATE_COMMON_BUFFER_FROM_MDL","features":[2,5,3,1,4,6,7,8]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE","features":[3,1]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE_EX","features":[2,5,3,1,4,6,7,8,34]},{"name":"PCREATE_THREAD_NOTIFY_ROUTINE","features":[3,1]},{"name":"PCR_BTI_MITIGATION_CSWAP_HVC","features":[3]},{"name":"PCR_BTI_MITIGATION_CSWAP_SMC","features":[3]},{"name":"PCR_BTI_MITIGATION_NONE","features":[3]},{"name":"PCR_BTI_MITIGATION_VBAR_MASK","features":[3]},{"name":"PCR_MAJOR_VERSION","features":[3]},{"name":"PCR_MINOR_VERSION","features":[3]},{"name":"PCW_CALLBACK","features":[2,3,1,7]},{"name":"PCW_CALLBACK_INFORMATION","features":[2,3,1,7]},{"name":"PCW_CALLBACK_TYPE","features":[3]},{"name":"PCW_COUNTER_DESCRIPTOR","features":[3]},{"name":"PCW_COUNTER_INFORMATION","features":[3,1]},{"name":"PCW_CURRENT_VERSION","features":[3]},{"name":"PCW_DATA","features":[3]},{"name":"PCW_MASK_INFORMATION","features":[2,3,1,7]},{"name":"PCW_REGISTRATION_FLAGS","features":[3]},{"name":"PCW_REGISTRATION_INFORMATION","features":[3,1]},{"name":"PCW_VERSION_1","features":[3]},{"name":"PCW_VERSION_2","features":[3]},{"name":"PD3COLD_REQUEST_AUX_POWER","features":[3,1]},{"name":"PD3COLD_REQUEST_CORE_POWER_RAIL","features":[3]},{"name":"PD3COLD_REQUEST_PERST_DELAY","features":[3,1]},{"name":"PDEBUG_DEVICE_FOUND_FUNCTION","features":[3,1]},{"name":"PDEBUG_PRINT_CALLBACK","features":[3,7]},{"name":"PDEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[3,1]},{"name":"PDEVICE_CHANGE_COMPLETE_CALLBACK","features":[3]},{"name":"PDEVICE_NOTIFY_CALLBACK","features":[3]},{"name":"PDEVICE_NOTIFY_CALLBACK2","features":[3]},{"name":"PDEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[3,1]},{"name":"PDEVICE_RESET_COMPLETION","features":[3]},{"name":"PDEVICE_RESET_HANDLER","features":[3,1]},{"name":"PDE_BASE","features":[3]},{"name":"PDE_PER_PAGE","features":[3]},{"name":"PDE_TOP","features":[3]},{"name":"PDI_SHIFT","features":[3]},{"name":"PDMA_COMPLETION_ROUTINE","features":[3]},{"name":"PDRIVER_CMC_EXCEPTION_CALLBACK","features":[3]},{"name":"PDRIVER_CPE_EXCEPTION_CALLBACK","features":[3]},{"name":"PDRIVER_EXCPTN_CALLBACK","features":[3]},{"name":"PDRIVER_VERIFIER_THUNK_ROUTINE","features":[3]},{"name":"PEI_NOTIFY_TYPE_GUID","features":[3]},{"name":"PENABLE_VIRTUALIZATION","features":[3,1]},{"name":"PETWENABLECALLBACK","features":[3]},{"name":"PEXPAND_STACK_CALLOUT","features":[3]},{"name":"PEXT_CALLBACK","features":[3]},{"name":"PEXT_DELETE_CALLBACK","features":[3]},{"name":"PEX_CALLBACK_FUNCTION","features":[3,1]},{"name":"PFAControl","features":[3]},{"name":"PFLUSH_ADAPTER_BUFFERS","features":[2,5,3,1,4,6,7,8]},{"name":"PFLUSH_ADAPTER_BUFFERS_EX","features":[2,5,3,1,4,6,7,8]},{"name":"PFLUSH_DMA_BUFFER","features":[2,5,3,1,4,6,7,8]},{"name":"PFNFTH","features":[3,1]},{"name":"PFN_IN_USE_PAGE_OFFLINE_NOTIFY","features":[3,1]},{"name":"PFN_NT_COMMIT_TRANSACTION","features":[3,1]},{"name":"PFN_NT_CREATE_TRANSACTION","features":[2,3,1]},{"name":"PFN_NT_OPEN_TRANSACTION","features":[2,3,1]},{"name":"PFN_NT_QUERY_INFORMATION_TRANSACTION","features":[3,1,36]},{"name":"PFN_NT_ROLLBACK_TRANSACTION","features":[3,1]},{"name":"PFN_NT_SET_INFORMATION_TRANSACTION","features":[3,1,36]},{"name":"PFN_RTL_IS_NTDDI_VERSION_AVAILABLE","features":[3,1]},{"name":"PFN_RTL_IS_SERVICE_PACK_VERSION_INSTALLED","features":[3,1]},{"name":"PFN_WHEA_HIGH_IRQL_LOG_SEL_EVENT_HANDLER","features":[3,1,30]},{"name":"PFPGA_BUS_SCAN","features":[3]},{"name":"PFPGA_CONTROL_CONFIG_SPACE","features":[3,1]},{"name":"PFPGA_CONTROL_ERROR_REPORTING","features":[3,1]},{"name":"PFPGA_CONTROL_LINK","features":[3,1]},{"name":"PFREE_ADAPTER_CHANNEL","features":[2,5,3,1,4,6,7,8]},{"name":"PFREE_ADAPTER_OBJECT","features":[2,5,3,1,4,6,7,8]},{"name":"PFREE_COMMON_BUFFER","features":[2,5,3,1,4,6,7,8]},{"name":"PFREE_COMMON_BUFFER_FROM_VECTOR","features":[2,5,3,1,4,6,7,8]},{"name":"PFREE_COMMON_BUFFER_VECTOR","features":[2,5,3,1,4,6,7,8]},{"name":"PFREE_FUNCTION_EX","features":[3]},{"name":"PFREE_MAP_REGISTERS","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_COMMON_BUFFER_FROM_VECTOR_BY_INDEX","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_D3COLD_CAPABILITY","features":[3,1]},{"name":"PGET_D3COLD_LAST_TRANSITION_STATUS","features":[3]},{"name":"PGET_DEVICE_RESET_STATUS","features":[3,1]},{"name":"PGET_DMA_ADAPTER","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_DMA_ADAPTER_INFO","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_DMA_ALIGNMENT","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_DMA_DOMAIN","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_DMA_TRANSFER_INFO","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_IDLE_WAKE_INFO","features":[3,1]},{"name":"PGET_LOCATION_STRING","features":[3,1]},{"name":"PGET_SCATTER_GATHER_LIST","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_SCATTER_GATHER_LIST_EX","features":[2,5,3,1,4,6,7,8]},{"name":"PGET_SDEV_IDENTIFIER","features":[3]},{"name":"PGET_SET_DEVICE_DATA","features":[3]},{"name":"PGET_UPDATED_BUS_RESOURCE","features":[3,1]},{"name":"PGET_VIRTUAL_DEVICE_DATA","features":[3]},{"name":"PGET_VIRTUAL_DEVICE_LOCATION","features":[3,1]},{"name":"PGET_VIRTUAL_DEVICE_RESOURCES","features":[3]},{"name":"PGET_VIRTUAL_FUNCTION_PROBED_BARS","features":[3,1]},{"name":"PGPE_CLEAR_STATUS","features":[2,5,3,1,4,6,7,8]},{"name":"PGPE_CLEAR_STATUS2","features":[3,1]},{"name":"PGPE_CONNECT_VECTOR","features":[2,5,3,1,4,6,7,8]},{"name":"PGPE_CONNECT_VECTOR2","features":[3,1]},{"name":"PGPE_DISABLE_EVENT","features":[2,5,3,1,4,6,7,8]},{"name":"PGPE_DISABLE_EVENT2","features":[3,1]},{"name":"PGPE_DISCONNECT_VECTOR","features":[3,1]},{"name":"PGPE_DISCONNECT_VECTOR2","features":[3,1]},{"name":"PGPE_ENABLE_EVENT","features":[2,5,3,1,4,6,7,8]},{"name":"PGPE_ENABLE_EVENT2","features":[3,1]},{"name":"PGPE_SERVICE_ROUTINE","features":[3,1]},{"name":"PGPE_SERVICE_ROUTINE2","features":[3,1]},{"name":"PHALIOREADWRITEHANDLER","features":[3,1]},{"name":"PHALMCAINTERFACELOCK","features":[3]},{"name":"PHALMCAINTERFACEREADREGISTER","features":[3,1]},{"name":"PHALMCAINTERFACEUNLOCK","features":[3]},{"name":"PHAL_RESET_DISPLAY_PARAMETERS","features":[3,1]},{"name":"PHVL_WHEA_ERROR_NOTIFICATION","features":[3,1]},{"name":"PHYSICAL_COUNTER_EVENT_BUFFER_CONFIGURATION","features":[3,1]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR","features":[3,1]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR_TYPE","features":[3]},{"name":"PHYSICAL_COUNTER_RESOURCE_LIST","features":[3,1]},{"name":"PHYSICAL_MEMORY_RANGE","features":[3]},{"name":"PINITIALIZE_DMA_TRANSFER_CONTEXT","features":[2,5,3,1,4,6,7,8]},{"name":"PINTERFACE_DEREFERENCE","features":[3]},{"name":"PINTERFACE_REFERENCE","features":[3]},{"name":"PIOMMU_DEVICE_CREATE","features":[3,1]},{"name":"PIOMMU_DEVICE_DELETE","features":[3,1]},{"name":"PIOMMU_DEVICE_FAULT_HANDLER","features":[3]},{"name":"PIOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[3]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE","features":[3,1]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[3,1]},{"name":"PIOMMU_DOMAIN_CONFIGURE","features":[3,1]},{"name":"PIOMMU_DOMAIN_CREATE","features":[3,1]},{"name":"PIOMMU_DOMAIN_CREATE_EX","features":[3,1]},{"name":"PIOMMU_DOMAIN_DELETE","features":[3,1]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE","features":[3,1]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE_EX","features":[3,1]},{"name":"PIOMMU_FLUSH_DOMAIN","features":[3,1]},{"name":"PIOMMU_FLUSH_DOMAIN_VA_LIST","features":[3,1]},{"name":"PIOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[3,1]},{"name":"PIOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[3]},{"name":"PIOMMU_MAP_IDENTITY_RANGE","features":[3,1]},{"name":"PIOMMU_MAP_IDENTITY_RANGE_EX","features":[3,1]},{"name":"PIOMMU_MAP_LOGICAL_RANGE","features":[3,1]},{"name":"PIOMMU_MAP_LOGICAL_RANGE_EX","features":[3,1]},{"name":"PIOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[3,1]},{"name":"PIOMMU_QUERY_INPUT_MAPPINGS","features":[3,1]},{"name":"PIOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[3,1]},{"name":"PIOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[3,1]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING","features":[3,1]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[3,1]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE","features":[3,1]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE_EX","features":[3,1]},{"name":"PIOMMU_UNMAP_LOGICAL_RANGE","features":[3,1]},{"name":"PIOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[3,1]},{"name":"PIOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[3,1]},{"name":"PIO_CONTAINER_NOTIFICATION_FUNCTION","features":[3,1]},{"name":"PIO_CSQ_ACQUIRE_LOCK","features":[3]},{"name":"PIO_CSQ_COMPLETE_CANCELED_IRP","features":[3]},{"name":"PIO_CSQ_INSERT_IRP","features":[3]},{"name":"PIO_CSQ_INSERT_IRP_EX","features":[3,1]},{"name":"PIO_CSQ_PEEK_NEXT_IRP","features":[2,5,3,1,4,6,7,8]},{"name":"PIO_CSQ_RELEASE_LOCK","features":[3]},{"name":"PIO_CSQ_REMOVE_IRP","features":[3]},{"name":"PIO_DEVICE_EJECT_CALLBACK","features":[3,1]},{"name":"PIO_DPC_ROUTINE","features":[3]},{"name":"PIO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[3,1]},{"name":"PIO_QUERY_DEVICE_ROUTINE","features":[3,1]},{"name":"PIO_SESSION_NOTIFICATION_FUNCTION","features":[3,1]},{"name":"PIO_TIMER_ROUTINE","features":[3]},{"name":"PIO_WORKITEM_ROUTINE","features":[3]},{"name":"PIO_WORKITEM_ROUTINE_EX","features":[3]},{"name":"PJOIN_DMA_DOMAIN","features":[2,5,3,1,4,6,7,8]},{"name":"PKBUGCHECK_CALLBACK_ROUTINE","features":[3]},{"name":"PKBUGCHECK_REASON_CALLBACK_ROUTINE","features":[3]},{"name":"PKIPI_BROADCAST_WORKER","features":[3]},{"name":"PKMESSAGE_SERVICE_ROUTINE","features":[3,1]},{"name":"PKSERVICE_ROUTINE","features":[3,1]},{"name":"PKSTART_ROUTINE","features":[3]},{"name":"PKSYNCHRONIZE_ROUTINE","features":[3,1]},{"name":"PLEAVE_DMA_DOMAIN","features":[2,5,3,1,4,6,7,8]},{"name":"PLOAD_IMAGE_NOTIFY_ROUTINE","features":[3,1]},{"name":"PLUGPLAY_NOTIFICATION_HEADER","features":[3]},{"name":"PLUGPLAY_PROPERTY_PERSISTENT","features":[3]},{"name":"PLUGPLAY_REGKEY_CURRENT_HWPROFILE","features":[3]},{"name":"PLUGPLAY_REGKEY_DEVICE","features":[3]},{"name":"PLUGPLAY_REGKEY_DRIVER","features":[3]},{"name":"PMAP_TRANSFER","features":[2,5,3,1,4,6,7,8]},{"name":"PMAP_TRANSFER_EX","features":[2,5,3,1,4,6,7,8]},{"name":"PMCCounter","features":[3]},{"name":"PMEM_ERROR_SECTION_GUID","features":[3]},{"name":"PMM_DLL_INITIALIZE","features":[3,1]},{"name":"PMM_DLL_UNLOAD","features":[3,1]},{"name":"PMM_GET_SYSTEM_ROUTINE_ADDRESS_EX","features":[3,1]},{"name":"PMM_MDL_ROUTINE","features":[3]},{"name":"PMM_ROTATE_COPY_CALLBACK_FUNCTION","features":[2,3,1]},{"name":"PM_DISPATCH_TABLE","features":[3]},{"name":"PNMI_CALLBACK","features":[3,1]},{"name":"PNPBus","features":[3]},{"name":"PNPEM_CONTROL_ENABLE_DISABLE","features":[3,1]},{"name":"PNPEM_CONTROL_QUERY_CONTROL","features":[3]},{"name":"PNPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[3,1]},{"name":"PNPEM_CONTROL_SET_STANDARD_CONTROL","features":[3,1]},{"name":"PNPISABus","features":[3]},{"name":"PNPISAConfiguration","features":[3]},{"name":"PNPNOTIFY_DEVICE_INTERFACE_INCLUDE_EXISTING_INTERFACES","features":[3]},{"name":"PNP_BUS_INFORMATION","features":[3]},{"name":"PNP_DEVICE_ASSIGNED_TO_GUEST","features":[3]},{"name":"PNP_DEVICE_DISABLED","features":[3]},{"name":"PNP_DEVICE_DISCONNECTED","features":[3]},{"name":"PNP_DEVICE_DONT_DISPLAY_IN_UI","features":[3]},{"name":"PNP_DEVICE_FAILED","features":[3]},{"name":"PNP_DEVICE_NOT_DISABLEABLE","features":[3]},{"name":"PNP_DEVICE_REMOVED","features":[3]},{"name":"PNP_DEVICE_RESOURCE_REQUIREMENTS_CHANGED","features":[3]},{"name":"PNP_DEVICE_RESOURCE_UPDATED","features":[3]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE","features":[3]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE_VERSION","features":[3]},{"name":"PNP_LOCATION_INTERFACE","features":[3,1]},{"name":"PNP_REPLACE_DRIVER_INTERFACE","features":[3,1]},{"name":"PNP_REPLACE_DRIVER_INTERFACE_VERSION","features":[3]},{"name":"PNP_REPLACE_HARDWARE_MEMORY_MIRRORING","features":[3]},{"name":"PNP_REPLACE_HARDWARE_PAGE_COPY","features":[3]},{"name":"PNP_REPLACE_HARDWARE_QUIESCE","features":[3]},{"name":"PNP_REPLACE_MEMORY_LIST","features":[3]},{"name":"PNP_REPLACE_MEMORY_SUPPORTED","features":[3]},{"name":"PNP_REPLACE_PARAMETERS","features":[3,1]},{"name":"PNP_REPLACE_PARAMETERS_VERSION","features":[3]},{"name":"PNP_REPLACE_PROCESSOR_LIST","features":[3]},{"name":"PNP_REPLACE_PROCESSOR_LIST_V1","features":[3]},{"name":"PNP_REPLACE_PROCESSOR_SUPPORTED","features":[3]},{"name":"PNTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[3]},{"name":"POB_POST_OPERATION_CALLBACK","features":[2,3,1]},{"name":"POB_PRE_OPERATION_CALLBACK","features":[2,3]},{"name":"POOLED_USAGE_AND_LIMITS","features":[3]},{"name":"POOL_COLD_ALLOCATION","features":[3]},{"name":"POOL_CREATE_EXTENDED_PARAMS","features":[3]},{"name":"POOL_CREATE_FLG_SECURE_POOL","features":[3]},{"name":"POOL_CREATE_FLG_USE_GLOBAL_POOL","features":[3]},{"name":"POOL_CREATE_PARAMS_VERSION","features":[3]},{"name":"POOL_EXTENDED_PARAMETER","features":[3,1]},{"name":"POOL_EXTENDED_PARAMETER_REQUIRED_FIELD_BITS","features":[3]},{"name":"POOL_EXTENDED_PARAMETER_TYPE","features":[3]},{"name":"POOL_EXTENDED_PARAMETER_TYPE_BITS","features":[3]},{"name":"POOL_EXTENDED_PARAMS_SECURE_POOL","features":[3,1]},{"name":"POOL_NX_ALLOCATION","features":[3]},{"name":"POOL_NX_OPTIN_AUTO","features":[3]},{"name":"POOL_QUOTA_FAIL_INSTEAD_OF_RAISE","features":[3]},{"name":"POOL_RAISE_IF_ALLOCATION_FAILURE","features":[3]},{"name":"POOL_TAGGING","features":[3]},{"name":"POOL_ZEROING_INFORMATION","features":[3]},{"name":"POOL_ZERO_ALLOCATION","features":[3]},{"name":"PORT_MAXIMUM_MESSAGE_LENGTH","features":[3]},{"name":"POWER_LEVEL","features":[3]},{"name":"POWER_MONITOR_INVOCATION","features":[3,1]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[3]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[3]},{"name":"POWER_PLATFORM_INFORMATION","features":[3,1]},{"name":"POWER_PLATFORM_ROLE","features":[3]},{"name":"POWER_PLATFORM_ROLE_V1","features":[3]},{"name":"POWER_PLATFORM_ROLE_V2","features":[3]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[3]},{"name":"POWER_SEQUENCE","features":[3]},{"name":"POWER_SESSION_CONNECT","features":[3,1]},{"name":"POWER_SESSION_RIT_STATE","features":[3,1]},{"name":"POWER_SESSION_TIMEOUTS","features":[3]},{"name":"POWER_SESSION_WINLOGON","features":[3,1]},{"name":"POWER_SETTING_CALLBACK","features":[3,1]},{"name":"POWER_SETTING_VALUE_VERSION","features":[3]},{"name":"POWER_STATE","features":[3,8]},{"name":"POWER_STATE_TYPE","features":[3]},{"name":"POWER_THROTTLING_PROCESS_CURRENT_VERSION","features":[3]},{"name":"POWER_THROTTLING_PROCESS_DELAYTIMERS","features":[3]},{"name":"POWER_THROTTLING_PROCESS_EXECUTION_SPEED","features":[3]},{"name":"POWER_THROTTLING_PROCESS_IGNORE_TIMER_RESOLUTION","features":[3]},{"name":"POWER_THROTTLING_PROCESS_STATE","features":[3]},{"name":"POWER_THROTTLING_THREAD_CURRENT_VERSION","features":[3]},{"name":"POWER_THROTTLING_THREAD_EXECUTION_SPEED","features":[3]},{"name":"POWER_THROTTLING_THREAD_STATE","features":[3]},{"name":"POWER_THROTTLING_THREAD_VALID_FLAGS","features":[3]},{"name":"POWER_USER_PRESENCE_TYPE","features":[3]},{"name":"PO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[3]},{"name":"PO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[3,1]},{"name":"PO_FX_COMPONENT_FLAG_F0_ON_DX","features":[3]},{"name":"PO_FX_COMPONENT_FLAG_NO_DEBOUNCE","features":[3]},{"name":"PO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[3]},{"name":"PO_FX_COMPONENT_IDLE_STATE","features":[3]},{"name":"PO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[3]},{"name":"PO_FX_COMPONENT_PERF_INFO","features":[3,1]},{"name":"PO_FX_COMPONENT_PERF_SET","features":[3,1]},{"name":"PO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[3,1]},{"name":"PO_FX_COMPONENT_V1","features":[3]},{"name":"PO_FX_COMPONENT_V2","features":[3]},{"name":"PO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[3]},{"name":"PO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[3]},{"name":"PO_FX_DEVICE_V1","features":[3,1]},{"name":"PO_FX_DEVICE_V2","features":[3,1]},{"name":"PO_FX_DEVICE_V3","features":[3,1]},{"name":"PO_FX_DIRECTED_FX_DEFAULT_IDLE_TIMEOUT","features":[3]},{"name":"PO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[3]},{"name":"PO_FX_DIRECTED_POWER_UP_CALLBACK","features":[3]},{"name":"PO_FX_DRIPS_WATCHDOG_CALLBACK","features":[2,5,3,1,4,6,7,8]},{"name":"PO_FX_FLAG_ASYNC_ONLY","features":[3]},{"name":"PO_FX_FLAG_BLOCKING","features":[3]},{"name":"PO_FX_FLAG_PERF_PEP_OPTIONAL","features":[3]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_ALL_IDLE_STATES","features":[3]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_F0","features":[3]},{"name":"PO_FX_PERF_STATE","features":[3]},{"name":"PO_FX_PERF_STATE_CHANGE","features":[3]},{"name":"PO_FX_PERF_STATE_TYPE","features":[3]},{"name":"PO_FX_PERF_STATE_UNIT","features":[3]},{"name":"PO_FX_POWER_CONTROL_CALLBACK","features":[3,1]},{"name":"PO_FX_UNKNOWN_POWER","features":[3]},{"name":"PO_FX_UNKNOWN_TIME","features":[3]},{"name":"PO_FX_VERSION","features":[3]},{"name":"PO_FX_VERSION_V1","features":[3]},{"name":"PO_FX_VERSION_V2","features":[3]},{"name":"PO_FX_VERSION_V3","features":[3]},{"name":"PO_MEM_BOOT_PHASE","features":[3]},{"name":"PO_MEM_CLONE","features":[3]},{"name":"PO_MEM_CL_OR_NCHK","features":[3]},{"name":"PO_MEM_DISCARD","features":[3]},{"name":"PO_MEM_PAGE_ADDRESS","features":[3]},{"name":"PO_MEM_PRESERVE","features":[3]},{"name":"PO_THERMAL_REQUEST_TYPE","features":[3]},{"name":"PPCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[3,1]},{"name":"PPCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[3,1]},{"name":"PPCI_EXPRESS_ROOT_PORT_READ_CONFIG_SPACE","features":[3]},{"name":"PPCI_EXPRESS_ROOT_PORT_WRITE_CONFIG_SPACE","features":[3]},{"name":"PPCI_EXPRESS_WAKE_CONTROL","features":[3]},{"name":"PPCI_IS_DEVICE_PRESENT","features":[3,1]},{"name":"PPCI_IS_DEVICE_PRESENT_EX","features":[3,1]},{"name":"PPCI_LINE_TO_PIN","features":[3]},{"name":"PPCI_MSIX_GET_ENTRY","features":[3,1]},{"name":"PPCI_MSIX_GET_TABLE_SIZE","features":[3,1]},{"name":"PPCI_MSIX_MASKUNMASK_ENTRY","features":[3,1]},{"name":"PPCI_MSIX_SET_ENTRY","features":[3,1]},{"name":"PPCI_PIN_TO_LINE","features":[3]},{"name":"PPCI_PREPARE_MULTISTAGE_RESUME","features":[3]},{"name":"PPCI_READ_WRITE_CONFIG","features":[3]},{"name":"PPCI_ROOT_BUS_CAPABILITY","features":[3]},{"name":"PPCI_SET_ACS","features":[3,1]},{"name":"PPCI_SET_ACS2","features":[3,1]},{"name":"PPCI_SET_ATS","features":[3,1]},{"name":"PPCW_CALLBACK","features":[3,1]},{"name":"PPHYSICAL_COUNTER_EVENT_BUFFER_OVERFLOW_HANDLER","features":[3,1]},{"name":"PPHYSICAL_COUNTER_OVERFLOW_HANDLER","features":[3,1]},{"name":"PPI_SHIFT","features":[3]},{"name":"PPOWER_SETTING_CALLBACK","features":[3,1]},{"name":"PPO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[3]},{"name":"PPO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[3]},{"name":"PPO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[3]},{"name":"PPO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[3]},{"name":"PPO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[3]},{"name":"PPO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[3]},{"name":"PPO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[3]},{"name":"PPO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[3]},{"name":"PPO_FX_DIRECTED_POWER_UP_CALLBACK","features":[3]},{"name":"PPO_FX_DRIPS_WATCHDOG_CALLBACK","features":[3]},{"name":"PPO_FX_POWER_CONTROL_CALLBACK","features":[3,1]},{"name":"PPROCESSOR_CALLBACK_FUNCTION","features":[3]},{"name":"PPROCESSOR_HALT_ROUTINE","features":[3,1]},{"name":"PPTM_DEVICE_DISABLE","features":[3,1]},{"name":"PPTM_DEVICE_ENABLE","features":[3,1]},{"name":"PPTM_DEVICE_QUERY_GRANULARITY","features":[3,1]},{"name":"PPTM_DEVICE_QUERY_TIME_SOURCE","features":[3,1]},{"name":"PPUT_DMA_ADAPTER","features":[2,5,3,1,4,6,7,8]},{"name":"PPUT_SCATTER_GATHER_LIST","features":[2,5,3,1,4,6,7,8]},{"name":"PQUERYEXTENDEDADDRESS","features":[3]},{"name":"PREAD_DMA_COUNTER","features":[2,5,3,1,4,6,7,8]},{"name":"PREENUMERATE_SELF","features":[3]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[2,5,3,1,4,6,7,8]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[3,1]},{"name":"PREPLACE_BEGIN","features":[3,1]},{"name":"PREPLACE_DRIVER_INIT","features":[3,1]},{"name":"PREPLACE_ENABLE_DISABLE_HARDWARE_QUIESCE","features":[3,1]},{"name":"PREPLACE_END","features":[3,1]},{"name":"PREPLACE_GET_MEMORY_DESTINATION","features":[3,1]},{"name":"PREPLACE_INITIATE_HARDWARE_MIRROR","features":[3,1]},{"name":"PREPLACE_MAP_MEMORY","features":[3,1]},{"name":"PREPLACE_MIRROR_PHYSICAL_MEMORY","features":[3,1]},{"name":"PREPLACE_MIRROR_PLATFORM_MEMORY","features":[3,1]},{"name":"PREPLACE_SET_PROCESSOR_ID","features":[3,1]},{"name":"PREPLACE_SWAP","features":[3,1]},{"name":"PREPLACE_UNLOAD","features":[3]},{"name":"PREQUEST_POWER_COMPLETE","features":[3]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[3]},{"name":"PROCESSOR_CALLBACK_FUNCTION","features":[3,1,7]},{"name":"PROCESSOR_FEATURE_MAX","features":[3]},{"name":"PROCESSOR_GENERIC_ERROR_SECTION_GUID","features":[3]},{"name":"PROCESSOR_HALT_ROUTINE","features":[3,1]},{"name":"PROCESS_ACCESS_TOKEN","features":[3,1]},{"name":"PROCESS_DEVICEMAP_INFORMATION","features":[3,1]},{"name":"PROCESS_DEVICEMAP_INFORMATION_EX","features":[3,1]},{"name":"PROCESS_EXCEPTION_PORT","features":[3,1]},{"name":"PROCESS_EXCEPTION_PORT_ALL_STATE_BITS","features":[3]},{"name":"PROCESS_EXTENDED_BASIC_INFORMATION","features":[3,1,7,37]},{"name":"PROCESS_HANDLE_EXCEPTIONS_ENABLED","features":[3]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_DISABLED","features":[3]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_ENABLED","features":[3]},{"name":"PROCESS_HANDLE_TRACING_ENABLE","features":[3]},{"name":"PROCESS_HANDLE_TRACING_ENABLE_EX","features":[3]},{"name":"PROCESS_HANDLE_TRACING_ENTRY","features":[3,1,34]},{"name":"PROCESS_HANDLE_TRACING_MAX_STACKS","features":[3]},{"name":"PROCESS_HANDLE_TRACING_QUERY","features":[3,1,34]},{"name":"PROCESS_KEEPALIVE_COUNT_INFORMATION","features":[3]},{"name":"PROCESS_LUID_DOSDEVICES_ONLY","features":[3]},{"name":"PROCESS_MEMBERSHIP_INFORMATION","features":[3]},{"name":"PROCESS_REVOKE_FILE_HANDLES_INFORMATION","features":[3,1]},{"name":"PROCESS_SESSION_INFORMATION","features":[3]},{"name":"PROCESS_SYSCALL_PROVIDER_INFORMATION","features":[3]},{"name":"PROCESS_WS_WATCH_INFORMATION","features":[3]},{"name":"PROFILE_LEVEL","features":[3]},{"name":"PROTECTED_POOL","features":[3]},{"name":"PRTL_AVL_ALLOCATE_ROUTINE","features":[3]},{"name":"PRTL_AVL_COMPARE_ROUTINE","features":[3]},{"name":"PRTL_AVL_FREE_ROUTINE","features":[3]},{"name":"PRTL_AVL_MATCH_FUNCTION","features":[3,1]},{"name":"PRTL_GENERIC_ALLOCATE_ROUTINE","features":[3]},{"name":"PRTL_GENERIC_COMPARE_ROUTINE","features":[3]},{"name":"PRTL_GENERIC_FREE_ROUTINE","features":[3]},{"name":"PRTL_QUERY_REGISTRY_ROUTINE","features":[3,1]},{"name":"PRTL_RUN_ONCE_INIT_FN","features":[3]},{"name":"PSCREATEPROCESSNOTIFYTYPE","features":[3]},{"name":"PSCREATETHREADNOTIFYTYPE","features":[3]},{"name":"PSECURE_DRIVER_PROCESS_DEREFERENCE","features":[3]},{"name":"PSECURE_DRIVER_PROCESS_REFERENCE","features":[2,3]},{"name":"PSET_D3COLD_SUPPORT","features":[3]},{"name":"PSET_VIRTUAL_DEVICE_DATA","features":[3]},{"name":"PSE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[3]},{"name":"PSHED_PI_ATTEMPT_ERROR_RECOVERY","features":[3,1]},{"name":"PSHED_PI_CLEAR_ERROR_RECORD","features":[3,1]},{"name":"PSHED_PI_CLEAR_ERROR_STATUS","features":[3,1,30]},{"name":"PSHED_PI_DISABLE_ERROR_SOURCE","features":[3,1,30]},{"name":"PSHED_PI_ENABLE_ERROR_SOURCE","features":[3,1,30]},{"name":"PSHED_PI_ERR_READING_PCIE_OVERRIDES","features":[3]},{"name":"PSHED_PI_FINALIZE_ERROR_RECORD","features":[3,1,30]},{"name":"PSHED_PI_GET_ALL_ERROR_SOURCES","features":[3,1,30]},{"name":"PSHED_PI_GET_ERROR_SOURCE_INFO","features":[3,1,30]},{"name":"PSHED_PI_GET_INJECTION_CAPABILITIES","features":[3,1]},{"name":"PSHED_PI_INJECT_ERROR","features":[3,1]},{"name":"PSHED_PI_READ_ERROR_RECORD","features":[3,1]},{"name":"PSHED_PI_RETRIEVE_ERROR_INFO","features":[3,1,30]},{"name":"PSHED_PI_SET_ERROR_SOURCE_INFO","features":[3,1,30]},{"name":"PSHED_PI_WRITE_ERROR_RECORD","features":[3,1]},{"name":"PS_CREATE_NOTIFY_INFO","features":[2,5,3,1,4,6,7,8,34]},{"name":"PS_IMAGE_NOTIFY_CONFLICTING_ARCHITECTURE","features":[3]},{"name":"PS_INVALID_SILO_CONTEXT_SLOT","features":[3]},{"name":"PTE_BASE","features":[3]},{"name":"PTE_PER_PAGE","features":[3]},{"name":"PTE_TOP","features":[3]},{"name":"PTIMER_APC_ROUTINE","features":[3]},{"name":"PTI_SHIFT","features":[3]},{"name":"PTM_CONTROL_INTERFACE","features":[3,1]},{"name":"PTM_DEVICE_DISABLE","features":[3,1]},{"name":"PTM_DEVICE_ENABLE","features":[3,1]},{"name":"PTM_DEVICE_QUERY_GRANULARITY","features":[3,1]},{"name":"PTM_DEVICE_QUERY_TIME_SOURCE","features":[3,1]},{"name":"PTM_PROPAGATE_ROUTINE","features":[3,1]},{"name":"PTM_RM_NOTIFICATION","features":[2,3,1]},{"name":"PTRANSLATE_BUS_ADDRESS","features":[3,1]},{"name":"PTRANSLATE_RESOURCE_HANDLER","features":[2,5,3,1,4,6,7,8]},{"name":"PTRANSLATE_RESOURCE_REQUIREMENTS_HANDLER","features":[2,5,3,1,4,6,7,8]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[2,5,3,1,4,6,7,8]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[3]},{"name":"PageIn","features":[3]},{"name":"ParallelController","features":[3]},{"name":"PciAcsBitDisable","features":[3]},{"name":"PciAcsBitDontCare","features":[3]},{"name":"PciAcsBitEnable","features":[3]},{"name":"PciAcsReserved","features":[3]},{"name":"PciAddressParityError","features":[3]},{"name":"PciBusDataParityError","features":[3]},{"name":"PciBusMasterAbort","features":[3]},{"name":"PciBusSystemError","features":[3]},{"name":"PciBusTimeOut","features":[3]},{"name":"PciBusUnknownError","features":[3]},{"name":"PciCommandParityError","features":[3]},{"name":"PciConventional","features":[3]},{"name":"PciDeviceD3Cold_Reason_Default_State_BitIndex","features":[3]},{"name":"PciDeviceD3Cold_Reason_INF_BitIndex","features":[3]},{"name":"PciDeviceD3Cold_Reason_Interface_Api_BitIndex","features":[3]},{"name":"PciDeviceD3Cold_State_Disabled_BitIndex","features":[3]},{"name":"PciDeviceD3Cold_State_Disabled_Bridge_HackFlags_BitIndex","features":[3]},{"name":"PciDeviceD3Cold_State_Enabled_BitIndex","features":[3]},{"name":"PciDeviceD3Cold_State_ParentRootPortS0WakeSupported_BitIndex","features":[3]},{"name":"PciExpress","features":[3]},{"name":"PciExpressASPMLinkSubState_L11_BitIndex","features":[3]},{"name":"PciExpressASPMLinkSubState_L12_BitIndex","features":[3]},{"name":"PciExpressDownstreamSwitchPort","features":[3]},{"name":"PciExpressEndpoint","features":[3]},{"name":"PciExpressLegacyEndpoint","features":[3]},{"name":"PciExpressPciPmLinkSubState_L11_BitIndex","features":[3]},{"name":"PciExpressPciPmLinkSubState_L12_BitIndex","features":[3]},{"name":"PciExpressRootComplexEventCollector","features":[3]},{"name":"PciExpressRootComplexIntegratedEndpoint","features":[3]},{"name":"PciExpressRootPort","features":[3]},{"name":"PciExpressToPciXBridge","features":[3]},{"name":"PciExpressUpstreamSwitchPort","features":[3]},{"name":"PciLine2Pin","features":[3]},{"name":"PciMasterDataParityError","features":[3]},{"name":"PciPin2Line","features":[3]},{"name":"PciReadWriteConfig","features":[3]},{"name":"PciXMode1","features":[3]},{"name":"PciXMode2","features":[3]},{"name":"PciXToExpressBridge","features":[3]},{"name":"PcwAddInstance","features":[2,3,1]},{"name":"PcwCallbackAddCounter","features":[3]},{"name":"PcwCallbackCollectData","features":[3]},{"name":"PcwCallbackEnumerateInstances","features":[3]},{"name":"PcwCallbackRemoveCounter","features":[3]},{"name":"PcwCloseInstance","features":[2,3]},{"name":"PcwCreateInstance","features":[2,3,1]},{"name":"PcwRegister","features":[2,3,1]},{"name":"PcwRegistrationNone","features":[3]},{"name":"PcwRegistrationSiloNeutral","features":[3]},{"name":"PcwUnregister","features":[2,3]},{"name":"PermissionFault","features":[3]},{"name":"PlatformLevelDeviceReset","features":[3]},{"name":"PlatformRoleAppliancePC","features":[3]},{"name":"PlatformRoleDesktop","features":[3]},{"name":"PlatformRoleEnterpriseServer","features":[3]},{"name":"PlatformRoleMaximum","features":[3]},{"name":"PlatformRoleMobile","features":[3]},{"name":"PlatformRolePerformanceServer","features":[3]},{"name":"PlatformRoleSOHOServer","features":[3]},{"name":"PlatformRoleSlate","features":[3]},{"name":"PlatformRoleUnspecified","features":[3]},{"name":"PlatformRoleWorkstation","features":[3]},{"name":"PoAc","features":[3]},{"name":"PoCallDriver","features":[2,5,3,1,4,6,7,8]},{"name":"PoClearPowerRequest","features":[3,1,8]},{"name":"PoConditionMaximum","features":[3]},{"name":"PoCreatePowerRequest","features":[2,5,3,1,4,6,7,8]},{"name":"PoCreateThermalRequest","features":[2,5,3,1,4,6,7,8]},{"name":"PoDc","features":[3]},{"name":"PoDeletePowerRequest","features":[3]},{"name":"PoDeleteThermalRequest","features":[3]},{"name":"PoEndDeviceBusy","features":[3]},{"name":"PoFxActivateComponent","features":[2,3]},{"name":"PoFxCompleteDevicePowerNotRequired","features":[2,3]},{"name":"PoFxCompleteDirectedPowerDown","features":[2,3]},{"name":"PoFxCompleteIdleCondition","features":[2,3]},{"name":"PoFxCompleteIdleState","features":[2,3]},{"name":"PoFxIdleComponent","features":[2,3]},{"name":"PoFxIssueComponentPerfStateChange","features":[2,3]},{"name":"PoFxIssueComponentPerfStateChangeMultiple","features":[2,3]},{"name":"PoFxNotifySurprisePowerOn","features":[2,5,3,1,4,6,7,8]},{"name":"PoFxPerfStateTypeDiscrete","features":[3]},{"name":"PoFxPerfStateTypeMaximum","features":[3]},{"name":"PoFxPerfStateTypeRange","features":[3]},{"name":"PoFxPerfStateUnitBandwidth","features":[3]},{"name":"PoFxPerfStateUnitFrequency","features":[3]},{"name":"PoFxPerfStateUnitMaximum","features":[3]},{"name":"PoFxPerfStateUnitOther","features":[3]},{"name":"PoFxPowerControl","features":[2,3,1]},{"name":"PoFxPowerOnCrashdumpDevice","features":[2,3,1]},{"name":"PoFxQueryCurrentComponentPerfState","features":[2,3,1]},{"name":"PoFxRegisterComponentPerfStates","features":[2,3,1]},{"name":"PoFxRegisterCrashdumpDevice","features":[2,3,1]},{"name":"PoFxRegisterDevice","features":[2,5,3,1,4,6,7,8]},{"name":"PoFxRegisterDripsWatchdogCallback","features":[2,5,3,1,4,6,7,8]},{"name":"PoFxReportDevicePoweredOn","features":[2,3]},{"name":"PoFxSetComponentLatency","features":[2,3]},{"name":"PoFxSetComponentResidency","features":[2,3]},{"name":"PoFxSetComponentWake","features":[2,3,1]},{"name":"PoFxSetDeviceIdleTimeout","features":[2,3]},{"name":"PoFxSetTargetDripsDevicePowerState","features":[2,3,1,8]},{"name":"PoFxStartDevicePowerManagement","features":[2,3]},{"name":"PoFxUnregisterDevice","features":[2,3]},{"name":"PoGetSystemWake","features":[2,5,3,1,4,6,7,8]},{"name":"PoGetThermalRequestSupport","features":[3,1]},{"name":"PoHot","features":[3]},{"name":"PoQueryWatchdogTime","features":[2,5,3,1,4,6,7,8]},{"name":"PoRegisterDeviceForIdleDetection","features":[2,5,3,1,4,6,7,8]},{"name":"PoRegisterPowerSettingCallback","features":[2,5,3,1,4,6,7,8]},{"name":"PoRegisterSystemState","features":[3]},{"name":"PoRequestPowerIrp","features":[2,5,3,1,4,6,7,8]},{"name":"PoSetDeviceBusyEx","features":[3]},{"name":"PoSetHiberRange","features":[3]},{"name":"PoSetPowerRequest","features":[3,1,8]},{"name":"PoSetPowerState","features":[2,5,3,1,4,6,7,8]},{"name":"PoSetSystemState","features":[3]},{"name":"PoSetSystemWake","features":[2,5,3,1,4,6,7,8]},{"name":"PoSetSystemWakeDevice","features":[2,5,3,1,4,6,7,8]},{"name":"PoSetThermalActiveCooling","features":[3,1]},{"name":"PoSetThermalPassiveCooling","features":[3,1]},{"name":"PoStartDeviceBusy","features":[3]},{"name":"PoStartNextPowerIrp","features":[2,5,3,1,4,6,7,8]},{"name":"PoThermalRequestActive","features":[3]},{"name":"PoThermalRequestPassive","features":[3]},{"name":"PoUnregisterPowerSettingCallback","features":[3,1]},{"name":"PoUnregisterSystemState","features":[3]},{"name":"PointerController","features":[3]},{"name":"PointerPeripheral","features":[3]},{"name":"PoolAllocation","features":[3]},{"name":"PoolExtendedParameterInvalidType","features":[3]},{"name":"PoolExtendedParameterMax","features":[3]},{"name":"PoolExtendedParameterNumaNode","features":[3]},{"name":"PoolExtendedParameterPriority","features":[3]},{"name":"PoolExtendedParameterSecurePool","features":[3]},{"name":"Pos","features":[3]},{"name":"PowerOff","features":[3]},{"name":"PowerOn","features":[3]},{"name":"PowerRelations","features":[3]},{"name":"PrimaryDcache","features":[3]},{"name":"PrimaryIcache","features":[3]},{"name":"PrinterPeripheral","features":[3]},{"name":"ProbeForRead","features":[3]},{"name":"ProbeForWrite","features":[3]},{"name":"ProcessorInternal","features":[3]},{"name":"Profile2Issue","features":[3]},{"name":"Profile3Issue","features":[3]},{"name":"Profile4Issue","features":[3]},{"name":"ProfileAlignmentFixup","features":[3]},{"name":"ProfileBranchInstructions","features":[3]},{"name":"ProfileBranchMispredictions","features":[3]},{"name":"ProfileCacheMisses","features":[3]},{"name":"ProfileDcacheAccesses","features":[3]},{"name":"ProfileDcacheMisses","features":[3]},{"name":"ProfileFpInstructions","features":[3]},{"name":"ProfileIcacheIssues","features":[3]},{"name":"ProfileIcacheMisses","features":[3]},{"name":"ProfileIntegerInstructions","features":[3]},{"name":"ProfileLoadInstructions","features":[3]},{"name":"ProfileLoadLinkedIssues","features":[3]},{"name":"ProfileMaximum","features":[3]},{"name":"ProfileMemoryBarrierCycles","features":[3]},{"name":"ProfilePipelineDry","features":[3]},{"name":"ProfilePipelineFrozen","features":[3]},{"name":"ProfileSpecialInstructions","features":[3]},{"name":"ProfileStoreInstructions","features":[3]},{"name":"ProfileTime","features":[3]},{"name":"ProfileTotalCycles","features":[3]},{"name":"ProfileTotalIssues","features":[3]},{"name":"ProfileTotalNonissues","features":[3]},{"name":"PsAcquireSiloHardReference","features":[2,3,1]},{"name":"PsAllocSiloContextSlot","features":[3,1]},{"name":"PsAllocateAffinityToken","features":[2,3,1]},{"name":"PsAttachSiloToCurrentThread","features":[2,3]},{"name":"PsCreateProcessNotifySubsystems","features":[3]},{"name":"PsCreateSiloContext","features":[2,3,1]},{"name":"PsCreateSystemThread","features":[2,3,1,34]},{"name":"PsCreateThreadNotifyNonSystem","features":[3]},{"name":"PsCreateThreadNotifySubsystems","features":[3]},{"name":"PsDereferenceSiloContext","features":[3]},{"name":"PsDetachSiloFromCurrentThread","features":[2,3]},{"name":"PsFreeAffinityToken","features":[2,3]},{"name":"PsFreeSiloContextSlot","features":[3,1]},{"name":"PsGetCurrentProcessId","features":[3,1]},{"name":"PsGetCurrentServerSilo","features":[2,3]},{"name":"PsGetCurrentServerSiloName","features":[3,1]},{"name":"PsGetCurrentSilo","features":[2,3]},{"name":"PsGetCurrentThreadId","features":[3,1]},{"name":"PsGetCurrentThreadTeb","features":[3]},{"name":"PsGetEffectiveServerSilo","features":[2,3]},{"name":"PsGetHostSilo","features":[2,3]},{"name":"PsGetJobServerSilo","features":[2,3,1]},{"name":"PsGetJobSilo","features":[2,3,1]},{"name":"PsGetParentSilo","features":[2,3]},{"name":"PsGetPermanentSiloContext","features":[2,3,1]},{"name":"PsGetProcessCreateTimeQuadPart","features":[2,3]},{"name":"PsGetProcessExitStatus","features":[2,3,1]},{"name":"PsGetProcessId","features":[2,3,1]},{"name":"PsGetProcessStartKey","features":[2,3]},{"name":"PsGetServerSiloServiceSessionId","features":[2,3]},{"name":"PsGetSiloContainerId","features":[2,3]},{"name":"PsGetSiloContext","features":[2,3,1]},{"name":"PsGetSiloMonitorContextSlot","features":[2,3]},{"name":"PsGetThreadCreateTime","features":[2,3]},{"name":"PsGetThreadExitStatus","features":[2,3,1]},{"name":"PsGetThreadId","features":[2,3,1]},{"name":"PsGetThreadProcessId","features":[2,3,1]},{"name":"PsGetThreadProperty","features":[2,3]},{"name":"PsGetThreadServerSilo","features":[2,3]},{"name":"PsGetVersion","features":[3,1]},{"name":"PsInsertPermanentSiloContext","features":[2,3,1]},{"name":"PsInsertSiloContext","features":[2,3,1]},{"name":"PsIsCurrentThreadInServerSilo","features":[3,1]},{"name":"PsIsCurrentThreadPrefetching","features":[3,1]},{"name":"PsIsHostSilo","features":[2,3,1]},{"name":"PsMakeSiloContextPermanent","features":[2,3,1]},{"name":"PsQueryTotalCycleTimeProcess","features":[2,3]},{"name":"PsReferenceSiloContext","features":[3]},{"name":"PsRegisterSiloMonitor","features":[2,3,1]},{"name":"PsReleaseSiloHardReference","features":[2,3]},{"name":"PsRemoveCreateThreadNotifyRoutine","features":[3,1]},{"name":"PsRemoveLoadImageNotifyRoutine","features":[3,1]},{"name":"PsRemoveSiloContext","features":[2,3,1]},{"name":"PsReplaceSiloContext","features":[2,3,1]},{"name":"PsRevertToUserMultipleGroupAffinityThread","features":[2,3]},{"name":"PsSetCreateProcessNotifyRoutine","features":[3,1]},{"name":"PsSetCreateProcessNotifyRoutineEx","features":[2,5,3,1,4,6,7,8,34]},{"name":"PsSetCreateProcessNotifyRoutineEx2","features":[3,1]},{"name":"PsSetCreateThreadNotifyRoutine","features":[3,1]},{"name":"PsSetCreateThreadNotifyRoutineEx","features":[3,1]},{"name":"PsSetCurrentThreadPrefetching","features":[3,1]},{"name":"PsSetLoadImageNotifyRoutine","features":[3,1]},{"name":"PsSetLoadImageNotifyRoutineEx","features":[3,1]},{"name":"PsSetSystemMultipleGroupAffinityThread","features":[2,3,1,32]},{"name":"PsStartSiloMonitor","features":[2,3,1]},{"name":"PsTerminateServerSilo","features":[2,3,1]},{"name":"PsTerminateSystemThread","features":[3,1]},{"name":"PsUnregisterSiloMonitor","features":[2,3]},{"name":"PsWrapApcWow64Thread","features":[3,1]},{"name":"PshedAllocateMemory","features":[3]},{"name":"PshedFADiscovery","features":[3]},{"name":"PshedFAErrorInfoRetrieval","features":[3]},{"name":"PshedFAErrorInjection","features":[3]},{"name":"PshedFAErrorRecordPersistence","features":[3]},{"name":"PshedFAErrorRecovery","features":[3]},{"name":"PshedFAErrorSourceControl","features":[3]},{"name":"PshedFreeMemory","features":[3]},{"name":"PshedIsSystemWheaEnabled","features":[3,1]},{"name":"PshedPiEnableNotifyErrorCreateNotifyEvent","features":[3]},{"name":"PshedPiEnableNotifyErrorCreateSystemThread","features":[3]},{"name":"PshedPiEnableNotifyErrorMax","features":[3]},{"name":"PshedPiErrReadingPcieOverridesBadSignature","features":[3]},{"name":"PshedPiErrReadingPcieOverridesBadSize","features":[3]},{"name":"PshedPiErrReadingPcieOverridesNoCapOffset","features":[3]},{"name":"PshedPiErrReadingPcieOverridesNoErr","features":[3]},{"name":"PshedPiErrReadingPcieOverridesNoMemory","features":[3]},{"name":"PshedPiErrReadingPcieOverridesNotBinary","features":[3]},{"name":"PshedPiErrReadingPcieOverridesQueryErr","features":[3]},{"name":"PshedRegisterPlugin","features":[3,1,30]},{"name":"PshedSynchronizeExecution","features":[3,1,30]},{"name":"PshedUnregisterPlugin","features":[3]},{"name":"QuerySecurityDescriptor","features":[3]},{"name":"RCB128Bytes","features":[3]},{"name":"RCB64Bytes","features":[3]},{"name":"RECOVERY_INFO_SECTION_GUID","features":[3]},{"name":"REENUMERATE_SELF_INTERFACE_STANDARD","features":[3]},{"name":"REG_CALLBACK_CONTEXT_CLEANUP_INFORMATION","features":[3]},{"name":"REG_CREATE_KEY_INFORMATION","features":[3,1]},{"name":"REG_CREATE_KEY_INFORMATION_V1","features":[3,1]},{"name":"REG_DELETE_KEY_INFORMATION","features":[3]},{"name":"REG_DELETE_VALUE_KEY_INFORMATION","features":[3,1]},{"name":"REG_ENUMERATE_KEY_INFORMATION","features":[3]},{"name":"REG_ENUMERATE_VALUE_KEY_INFORMATION","features":[3]},{"name":"REG_KEY_HANDLE_CLOSE_INFORMATION","features":[3]},{"name":"REG_LOAD_KEY_INFORMATION","features":[3,1]},{"name":"REG_LOAD_KEY_INFORMATION_V2","features":[3,1]},{"name":"REG_NOTIFY_CLASS","features":[3]},{"name":"REG_POST_CREATE_KEY_INFORMATION","features":[3,1]},{"name":"REG_POST_OPERATION_INFORMATION","features":[3,1]},{"name":"REG_PRE_CREATE_KEY_INFORMATION","features":[3,1]},{"name":"REG_QUERY_KEY_INFORMATION","features":[3]},{"name":"REG_QUERY_KEY_NAME","features":[2,3,1]},{"name":"REG_QUERY_KEY_SECURITY_INFORMATION","features":[3,4]},{"name":"REG_QUERY_VALUE_KEY_INFORMATION","features":[3,1]},{"name":"REG_RENAME_KEY_INFORMATION","features":[3,1]},{"name":"REG_REPLACE_KEY_INFORMATION","features":[3,1]},{"name":"REG_RESTORE_KEY_INFORMATION","features":[3,1]},{"name":"REG_SAVE_KEY_INFORMATION","features":[3,1]},{"name":"REG_SAVE_MERGED_KEY_INFORMATION","features":[3,1]},{"name":"REG_SET_KEY_SECURITY_INFORMATION","features":[3,4]},{"name":"REG_SET_VALUE_KEY_INFORMATION","features":[3,1]},{"name":"REG_UNLOAD_KEY_INFORMATION","features":[3]},{"name":"REQUEST_POWER_COMPLETE","features":[2,5,3,1,4,6,7,8]},{"name":"RESOURCE_HASH_ENTRY","features":[3,7]},{"name":"RESOURCE_HASH_TABLE_SIZE","features":[3]},{"name":"RESOURCE_PERFORMANCE_DATA","features":[3,7]},{"name":"RESOURCE_TRANSLATION_DIRECTION","features":[3]},{"name":"RESULT_NEGATIVE","features":[3]},{"name":"RESULT_POSITIVE","features":[3]},{"name":"RESULT_ZERO","features":[3]},{"name":"ROOT_CMD_ENABLE_CORRECTABLE_ERROR_REPORTING","features":[3]},{"name":"ROOT_CMD_ENABLE_FATAL_ERROR_REPORTING","features":[3]},{"name":"ROOT_CMD_ENABLE_NONFATAL_ERROR_REPORTING","features":[3]},{"name":"RTL_AVL_ALLOCATE_ROUTINE","features":[3]},{"name":"RTL_AVL_COMPARE_ROUTINE","features":[3]},{"name":"RTL_AVL_FREE_ROUTINE","features":[3]},{"name":"RTL_AVL_MATCH_FUNCTION","features":[3,1]},{"name":"RTL_AVL_TABLE","features":[3]},{"name":"RTL_BALANCED_LINKS","features":[3]},{"name":"RTL_BITMAP","features":[3]},{"name":"RTL_BITMAP_RUN","features":[3]},{"name":"RTL_DYNAMIC_HASH_TABLE","features":[3]},{"name":"RTL_DYNAMIC_HASH_TABLE_CONTEXT","features":[3,7]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENTRY","features":[3,7]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENUMERATOR","features":[3,7]},{"name":"RTL_GENERIC_ALLOCATE_ROUTINE","features":[2,3,7]},{"name":"RTL_GENERIC_COMPARE_RESULTS","features":[3]},{"name":"RTL_GENERIC_COMPARE_ROUTINE","features":[2,3,7]},{"name":"RTL_GENERIC_FREE_ROUTINE","features":[2,3,7]},{"name":"RTL_GENERIC_TABLE","features":[2,3,7]},{"name":"RTL_GUID_STRING_SIZE","features":[3]},{"name":"RTL_HASH_ALLOCATED_HEADER","features":[3]},{"name":"RTL_HASH_RESERVED_SIGNATURE","features":[3]},{"name":"RTL_QUERY_REGISTRY_DELETE","features":[3]},{"name":"RTL_QUERY_REGISTRY_DIRECT","features":[3]},{"name":"RTL_QUERY_REGISTRY_NOEXPAND","features":[3]},{"name":"RTL_QUERY_REGISTRY_NOSTRING","features":[3]},{"name":"RTL_QUERY_REGISTRY_NOVALUE","features":[3]},{"name":"RTL_QUERY_REGISTRY_REQUIRED","features":[3]},{"name":"RTL_QUERY_REGISTRY_ROUTINE","features":[3,1]},{"name":"RTL_QUERY_REGISTRY_SUBKEY","features":[3]},{"name":"RTL_QUERY_REGISTRY_TABLE","features":[3,1]},{"name":"RTL_QUERY_REGISTRY_TOPKEY","features":[3]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK","features":[3]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK_SHIFT","features":[3]},{"name":"RTL_REGISTRY_ABSOLUTE","features":[3]},{"name":"RTL_REGISTRY_CONTROL","features":[3]},{"name":"RTL_REGISTRY_DEVICEMAP","features":[3]},{"name":"RTL_REGISTRY_HANDLE","features":[3]},{"name":"RTL_REGISTRY_MAXIMUM","features":[3]},{"name":"RTL_REGISTRY_OPTIONAL","features":[3]},{"name":"RTL_REGISTRY_SERVICES","features":[3]},{"name":"RTL_REGISTRY_USER","features":[3]},{"name":"RTL_REGISTRY_WINDOWS_NT","features":[3]},{"name":"RTL_RUN_ONCE_INIT_FN","features":[3,37]},{"name":"RTL_STACK_WALKING_MODE_FRAMES_TO_SKIP_SHIFT","features":[3]},{"name":"RandomAccess","features":[3]},{"name":"ReadAccess","features":[3]},{"name":"RealModeIrqRoutingTable","features":[3]},{"name":"RealModePCIEnumeration","features":[3]},{"name":"RealTimeWorkQueue","features":[3]},{"name":"RebuildControl","features":[3]},{"name":"RegNtCallbackObjectContextCleanup","features":[3]},{"name":"RegNtDeleteKey","features":[3]},{"name":"RegNtDeleteValueKey","features":[3]},{"name":"RegNtEnumerateKey","features":[3]},{"name":"RegNtEnumerateValueKey","features":[3]},{"name":"RegNtKeyHandleClose","features":[3]},{"name":"RegNtPostCreateKey","features":[3]},{"name":"RegNtPostCreateKeyEx","features":[3]},{"name":"RegNtPostDeleteKey","features":[3]},{"name":"RegNtPostDeleteValueKey","features":[3]},{"name":"RegNtPostEnumerateKey","features":[3]},{"name":"RegNtPostEnumerateValueKey","features":[3]},{"name":"RegNtPostFlushKey","features":[3]},{"name":"RegNtPostKeyHandleClose","features":[3]},{"name":"RegNtPostLoadKey","features":[3]},{"name":"RegNtPostOpenKey","features":[3]},{"name":"RegNtPostOpenKeyEx","features":[3]},{"name":"RegNtPostQueryKey","features":[3]},{"name":"RegNtPostQueryKeyName","features":[3]},{"name":"RegNtPostQueryKeySecurity","features":[3]},{"name":"RegNtPostQueryMultipleValueKey","features":[3]},{"name":"RegNtPostQueryValueKey","features":[3]},{"name":"RegNtPostRenameKey","features":[3]},{"name":"RegNtPostReplaceKey","features":[3]},{"name":"RegNtPostRestoreKey","features":[3]},{"name":"RegNtPostSaveKey","features":[3]},{"name":"RegNtPostSaveMergedKey","features":[3]},{"name":"RegNtPostSetInformationKey","features":[3]},{"name":"RegNtPostSetKeySecurity","features":[3]},{"name":"RegNtPostSetValueKey","features":[3]},{"name":"RegNtPostUnLoadKey","features":[3]},{"name":"RegNtPreCreateKey","features":[3]},{"name":"RegNtPreCreateKeyEx","features":[3]},{"name":"RegNtPreDeleteKey","features":[3]},{"name":"RegNtPreDeleteValueKey","features":[3]},{"name":"RegNtPreEnumerateKey","features":[3]},{"name":"RegNtPreEnumerateValueKey","features":[3]},{"name":"RegNtPreFlushKey","features":[3]},{"name":"RegNtPreKeyHandleClose","features":[3]},{"name":"RegNtPreLoadKey","features":[3]},{"name":"RegNtPreOpenKey","features":[3]},{"name":"RegNtPreOpenKeyEx","features":[3]},{"name":"RegNtPreQueryKey","features":[3]},{"name":"RegNtPreQueryKeyName","features":[3]},{"name":"RegNtPreQueryKeySecurity","features":[3]},{"name":"RegNtPreQueryMultipleValueKey","features":[3]},{"name":"RegNtPreQueryValueKey","features":[3]},{"name":"RegNtPreRenameKey","features":[3]},{"name":"RegNtPreReplaceKey","features":[3]},{"name":"RegNtPreRestoreKey","features":[3]},{"name":"RegNtPreSaveKey","features":[3]},{"name":"RegNtPreSaveMergedKey","features":[3]},{"name":"RegNtPreSetInformationKey","features":[3]},{"name":"RegNtPreSetKeySecurity","features":[3]},{"name":"RegNtPreSetValueKey","features":[3]},{"name":"RegNtPreUnLoadKey","features":[3]},{"name":"RegNtQueryKey","features":[3]},{"name":"RegNtQueryMultipleValueKey","features":[3]},{"name":"RegNtQueryValueKey","features":[3]},{"name":"RegNtRenameKey","features":[3]},{"name":"RegNtSetInformationKey","features":[3]},{"name":"RegNtSetValueKey","features":[3]},{"name":"RemovalPolicyExpectNoRemoval","features":[3]},{"name":"RemovalPolicyExpectOrderlyRemoval","features":[3]},{"name":"RemovalPolicyExpectSurpriseRemoval","features":[3]},{"name":"RemovalRelations","features":[3]},{"name":"ResourceNeverExclusive","features":[3]},{"name":"ResourceOwnedExclusive","features":[3]},{"name":"ResourceReleaseByOtherThread","features":[3]},{"name":"ResourceTypeEventBuffer","features":[3]},{"name":"ResourceTypeExtendedCounterConfiguration","features":[3]},{"name":"ResourceTypeIdenitificationTag","features":[3]},{"name":"ResourceTypeMax","features":[3]},{"name":"ResourceTypeOverflow","features":[3]},{"name":"ResourceTypeRange","features":[3]},{"name":"ResourceTypeSingle","features":[3]},{"name":"ResultNegative","features":[3]},{"name":"ResultPositive","features":[3]},{"name":"ResultZero","features":[3]},{"name":"RtlAppendUnicodeStringToString","features":[3,1]},{"name":"RtlAppendUnicodeToString","features":[3,1]},{"name":"RtlAreBitsClear","features":[3,1]},{"name":"RtlAreBitsSet","features":[3,1]},{"name":"RtlAssert","features":[3]},{"name":"RtlCheckRegistryKey","features":[3,1]},{"name":"RtlClearAllBits","features":[3]},{"name":"RtlClearBit","features":[3]},{"name":"RtlClearBits","features":[3]},{"name":"RtlCmDecodeMemIoResource","features":[3]},{"name":"RtlCmEncodeMemIoResource","features":[3,1]},{"name":"RtlCompareString","features":[3,1,7]},{"name":"RtlCompareUnicodeString","features":[3,1]},{"name":"RtlCompareUnicodeStrings","features":[3,1]},{"name":"RtlContractHashTable","features":[3,1]},{"name":"RtlCopyBitMap","features":[3]},{"name":"RtlCopyString","features":[3,7]},{"name":"RtlCopyUnicodeString","features":[3,1]},{"name":"RtlCreateHashTable","features":[3,1]},{"name":"RtlCreateHashTableEx","features":[3,1]},{"name":"RtlCreateRegistryKey","features":[3,1]},{"name":"RtlCreateSecurityDescriptor","features":[3,1,4]},{"name":"RtlDelete","features":[2,3]},{"name":"RtlDeleteElementGenericTable","features":[2,3,1,7]},{"name":"RtlDeleteElementGenericTableAvl","features":[3,1]},{"name":"RtlDeleteElementGenericTableAvlEx","features":[3]},{"name":"RtlDeleteHashTable","features":[3]},{"name":"RtlDeleteNoSplay","features":[2,3]},{"name":"RtlDeleteRegistryValue","features":[3,1]},{"name":"RtlDowncaseUnicodeChar","features":[3]},{"name":"RtlEndEnumerationHashTable","features":[3,7]},{"name":"RtlEndStrongEnumerationHashTable","features":[3,7]},{"name":"RtlEndWeakEnumerationHashTable","features":[3,7]},{"name":"RtlEnumerateEntryHashTable","features":[3,7]},{"name":"RtlEnumerateGenericTable","features":[2,3,1,7]},{"name":"RtlEnumerateGenericTableAvl","features":[3,1]},{"name":"RtlEnumerateGenericTableLikeADirectory","features":[3,1]},{"name":"RtlEnumerateGenericTableWithoutSplaying","features":[2,3,7]},{"name":"RtlEnumerateGenericTableWithoutSplayingAvl","features":[3]},{"name":"RtlEqualString","features":[3,1,7]},{"name":"RtlEqualUnicodeString","features":[3,1]},{"name":"RtlExpandHashTable","features":[3,1]},{"name":"RtlExtractBitMap","features":[3]},{"name":"RtlFindClearBits","features":[3]},{"name":"RtlFindClearBitsAndSet","features":[3]},{"name":"RtlFindClearRuns","features":[3,1]},{"name":"RtlFindClosestEncodableLength","features":[3,1]},{"name":"RtlFindFirstRunClear","features":[3]},{"name":"RtlFindLastBackwardRunClear","features":[3]},{"name":"RtlFindLeastSignificantBit","features":[3]},{"name":"RtlFindLongestRunClear","features":[3]},{"name":"RtlFindMostSignificantBit","features":[3]},{"name":"RtlFindNextForwardRunClear","features":[3]},{"name":"RtlFindSetBits","features":[3]},{"name":"RtlFindSetBitsAndClear","features":[3]},{"name":"RtlFreeUTF8String","features":[3,7]},{"name":"RtlGUIDFromString","features":[3,1]},{"name":"RtlGenerateClass5Guid","features":[3,1]},{"name":"RtlGetActiveConsoleId","features":[3]},{"name":"RtlGetCallersAddress","features":[3]},{"name":"RtlGetConsoleSessionForegroundProcessId","features":[3]},{"name":"RtlGetElementGenericTable","features":[2,3,7]},{"name":"RtlGetElementGenericTableAvl","features":[3]},{"name":"RtlGetEnabledExtendedFeatures","features":[3]},{"name":"RtlGetNextEntryHashTable","features":[3,7]},{"name":"RtlGetNtProductType","features":[3,1,7]},{"name":"RtlGetNtSystemRoot","features":[3]},{"name":"RtlGetPersistedStateLocation","features":[3,1]},{"name":"RtlGetSuiteMask","features":[3]},{"name":"RtlGetVersion","features":[3,1,32]},{"name":"RtlHashUnicodeString","features":[3,1]},{"name":"RtlInitEnumerationHashTable","features":[3,1,7]},{"name":"RtlInitStrongEnumerationHashTable","features":[3,1,7]},{"name":"RtlInitUTF8String","features":[3,7]},{"name":"RtlInitUTF8StringEx","features":[3,1,7]},{"name":"RtlInitWeakEnumerationHashTable","features":[3,1,7]},{"name":"RtlInitializeBitMap","features":[3]},{"name":"RtlInitializeGenericTable","features":[2,3,7]},{"name":"RtlInitializeGenericTableAvl","features":[3]},{"name":"RtlInsertElementGenericTable","features":[2,3,1,7]},{"name":"RtlInsertElementGenericTableAvl","features":[3,1]},{"name":"RtlInsertElementGenericTableFull","features":[2,3,1,7]},{"name":"RtlInsertElementGenericTableFullAvl","features":[3,1]},{"name":"RtlInsertEntryHashTable","features":[3,1,7]},{"name":"RtlInt64ToUnicodeString","features":[3,1]},{"name":"RtlIntegerToUnicodeString","features":[3,1]},{"name":"RtlIoDecodeMemIoResource","features":[3]},{"name":"RtlIoEncodeMemIoResource","features":[3,1]},{"name":"RtlIsApiSetImplemented","features":[3,1]},{"name":"RtlIsGenericTableEmpty","features":[2,3,1,7]},{"name":"RtlIsGenericTableEmptyAvl","features":[3,1]},{"name":"RtlIsMultiSessionSku","features":[3,1]},{"name":"RtlIsMultiUsersInSessionSku","features":[3,1]},{"name":"RtlIsNtDdiVersionAvailable","features":[3,1]},{"name":"RtlIsServicePackVersionInstalled","features":[3,1]},{"name":"RtlIsStateSeparationEnabled","features":[3,1]},{"name":"RtlIsUntrustedObject","features":[3,1]},{"name":"RtlLengthSecurityDescriptor","features":[3,4]},{"name":"RtlLookupElementGenericTable","features":[2,3,7]},{"name":"RtlLookupElementGenericTableAvl","features":[3]},{"name":"RtlLookupElementGenericTableFull","features":[2,3,7]},{"name":"RtlLookupElementGenericTableFullAvl","features":[3]},{"name":"RtlLookupEntryHashTable","features":[3,7]},{"name":"RtlLookupFirstMatchingElementGenericTableAvl","features":[3]},{"name":"RtlMapGenericMask","features":[3,4]},{"name":"RtlNormalizeSecurityDescriptor","features":[3,1,4]},{"name":"RtlNumberGenericTableElements","features":[2,3,7]},{"name":"RtlNumberGenericTableElementsAvl","features":[3]},{"name":"RtlNumberOfClearBits","features":[3]},{"name":"RtlNumberOfClearBitsInRange","features":[3]},{"name":"RtlNumberOfSetBits","features":[3]},{"name":"RtlNumberOfSetBitsInRange","features":[3]},{"name":"RtlNumberOfSetBitsUlongPtr","features":[3]},{"name":"RtlPrefetchMemoryNonTemporal","features":[3]},{"name":"RtlPrefixUnicodeString","features":[3,1]},{"name":"RtlQueryRegistryValueWithFallback","features":[3,1]},{"name":"RtlQueryRegistryValues","features":[3,1]},{"name":"RtlQueryValidationRunlevel","features":[3,1]},{"name":"RtlRealPredecessor","features":[2,3]},{"name":"RtlRealSuccessor","features":[2,3]},{"name":"RtlRemoveEntryHashTable","features":[3,1,7]},{"name":"RtlRunOnceBeginInitialize","features":[3,1,37]},{"name":"RtlRunOnceComplete","features":[3,1,37]},{"name":"RtlRunOnceExecuteOnce","features":[3,1,37]},{"name":"RtlRunOnceInitialize","features":[3,37]},{"name":"RtlSetAllBits","features":[3]},{"name":"RtlSetBit","features":[3]},{"name":"RtlSetBits","features":[3]},{"name":"RtlSetDaclSecurityDescriptor","features":[3,1,4]},{"name":"RtlSetSystemGlobalData","features":[3,1,32]},{"name":"RtlSplay","features":[2,3]},{"name":"RtlStringFromGUID","features":[3,1]},{"name":"RtlStronglyEnumerateEntryHashTable","features":[3,7]},{"name":"RtlSubtreePredecessor","features":[2,3]},{"name":"RtlSubtreeSuccessor","features":[2,3]},{"name":"RtlSuffixUnicodeString","features":[3,1]},{"name":"RtlTestBit","features":[3,1]},{"name":"RtlTimeFieldsToTime","features":[3,1]},{"name":"RtlTimeToTimeFields","features":[3]},{"name":"RtlUTF8StringToUnicodeString","features":[3,1,7]},{"name":"RtlUTF8ToUnicodeN","features":[3,1]},{"name":"RtlUnicodeStringToInt64","features":[3,1]},{"name":"RtlUnicodeStringToInteger","features":[3,1]},{"name":"RtlUnicodeStringToUTF8String","features":[3,1,7]},{"name":"RtlUnicodeToUTF8N","features":[3,1]},{"name":"RtlUpcaseUnicodeChar","features":[3]},{"name":"RtlUpcaseUnicodeString","features":[3,1]},{"name":"RtlUpperChar","features":[3]},{"name":"RtlUpperString","features":[3,7]},{"name":"RtlValidRelativeSecurityDescriptor","features":[3,1,4]},{"name":"RtlValidSecurityDescriptor","features":[3,1,4]},{"name":"RtlVerifyVersionInfo","features":[3,1,32]},{"name":"RtlVolumeDeviceToDosName","features":[3,1]},{"name":"RtlWalkFrameChain","features":[3]},{"name":"RtlWeaklyEnumerateEntryHashTable","features":[3,7]},{"name":"RtlWriteRegistryValue","features":[3,1]},{"name":"RtlxAnsiStringToUnicodeSize","features":[3,7]},{"name":"RtlxUnicodeStringToAnsiSize","features":[3,1]},{"name":"SCATTER_GATHER_ELEMENT","features":[3]},{"name":"SCATTER_GATHER_LIST","features":[3]},{"name":"SCI_NOTIFY_TYPE_GUID","features":[3]},{"name":"SDEV_IDENTIFIER_INTERFACE","features":[3]},{"name":"SDEV_IDENTIFIER_INTERFACE_VERSION","features":[3]},{"name":"SEA_NOTIFY_TYPE_GUID","features":[3]},{"name":"SEA_SECTION_GUID","features":[3]},{"name":"SECTION_INHERIT","features":[3]},{"name":"SECTION_MAP_EXECUTE","features":[3]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[3]},{"name":"SECTION_MAP_READ","features":[3]},{"name":"SECTION_MAP_WRITE","features":[3]},{"name":"SECTION_QUERY","features":[3]},{"name":"SECURE_DRIVER_INTERFACE","features":[2,3]},{"name":"SECURE_DRIVER_INTERFACE_VERSION","features":[3]},{"name":"SECURE_DRIVER_PROCESS_DEREFERENCE","features":[2,3]},{"name":"SECURE_DRIVER_PROCESS_REFERENCE","features":[2,3]},{"name":"SECURE_POOL_FLAGS_FREEABLE","features":[3]},{"name":"SECURE_POOL_FLAGS_MODIFIABLE","features":[3]},{"name":"SECURE_POOL_FLAGS_NONE","features":[3]},{"name":"SECURE_SECTION_ALLOW_PARTIAL_MDL","features":[3]},{"name":"SECURITY_CONTEXT_TRACKING_MODE","features":[3]},{"name":"SECURITY_OPERATION_CODE","features":[3]},{"name":"SEC_LARGE_PAGES","features":[3]},{"name":"SEH_VALIDATION_POLICY_DEFER","features":[3]},{"name":"SEH_VALIDATION_POLICY_OFF","features":[3]},{"name":"SEH_VALIDATION_POLICY_ON","features":[3]},{"name":"SEH_VALIDATION_POLICY_TELEMETRY","features":[3]},{"name":"SEI_NOTIFY_TYPE_GUID","features":[3]},{"name":"SEI_SECTION_GUID","features":[3]},{"name":"SEMAPHORE_QUERY_STATE","features":[3]},{"name":"SET_D3COLD_SUPPORT","features":[3,1]},{"name":"SET_VIRTUAL_DEVICE_DATA","features":[3]},{"name":"SE_ASSIGNPRIMARYTOKEN_PRIVILEGE","features":[3]},{"name":"SE_AUDIT_PRIVILEGE","features":[3]},{"name":"SE_BACKUP_PRIVILEGE","features":[3]},{"name":"SE_CHANGE_NOTIFY_PRIVILEGE","features":[3]},{"name":"SE_CREATE_GLOBAL_PRIVILEGE","features":[3]},{"name":"SE_CREATE_PAGEFILE_PRIVILEGE","features":[3]},{"name":"SE_CREATE_PERMANENT_PRIVILEGE","features":[3]},{"name":"SE_CREATE_SYMBOLIC_LINK_PRIVILEGE","features":[3]},{"name":"SE_CREATE_TOKEN_PRIVILEGE","features":[3]},{"name":"SE_DEBUG_PRIVILEGE","features":[3]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_PRIVILEGE","features":[3]},{"name":"SE_ENABLE_DELEGATION_PRIVILEGE","features":[3]},{"name":"SE_IMAGE_TYPE","features":[3]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[3,1]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_TYPE","features":[3]},{"name":"SE_IMPERSONATE_PRIVILEGE","features":[3]},{"name":"SE_INCREASE_QUOTA_PRIVILEGE","features":[3]},{"name":"SE_INC_BASE_PRIORITY_PRIVILEGE","features":[3]},{"name":"SE_INC_WORKING_SET_PRIVILEGE","features":[3]},{"name":"SE_LOAD_DRIVER_PRIVILEGE","features":[3]},{"name":"SE_LOCK_MEMORY_PRIVILEGE","features":[3]},{"name":"SE_MACHINE_ACCOUNT_PRIVILEGE","features":[3]},{"name":"SE_MANAGE_VOLUME_PRIVILEGE","features":[3]},{"name":"SE_MAX_WELL_KNOWN_PRIVILEGE","features":[3]},{"name":"SE_MIN_WELL_KNOWN_PRIVILEGE","features":[3]},{"name":"SE_PROF_SINGLE_PROCESS_PRIVILEGE","features":[3]},{"name":"SE_RELABEL_PRIVILEGE","features":[3]},{"name":"SE_REMOTE_SHUTDOWN_PRIVILEGE","features":[3]},{"name":"SE_RESTORE_PRIVILEGE","features":[3]},{"name":"SE_SECURITY_PRIVILEGE","features":[3]},{"name":"SE_SHUTDOWN_PRIVILEGE","features":[3]},{"name":"SE_SYNC_AGENT_PRIVILEGE","features":[3]},{"name":"SE_SYSTEMTIME_PRIVILEGE","features":[3]},{"name":"SE_SYSTEM_ENVIRONMENT_PRIVILEGE","features":[3]},{"name":"SE_SYSTEM_PROFILE_PRIVILEGE","features":[3]},{"name":"SE_TAKE_OWNERSHIP_PRIVILEGE","features":[3]},{"name":"SE_TCB_PRIVILEGE","features":[3]},{"name":"SE_TIME_ZONE_PRIVILEGE","features":[3]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_PRIVILEGE","features":[3]},{"name":"SE_UNDOCK_PRIVILEGE","features":[3]},{"name":"SE_UNSOLICITED_INPUT_PRIVILEGE","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_CLEAR_GLOBAL_DATA_FLAG","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_CONSOLE_BROKER_ENABLED_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_DYNAMIC_PROC_ENABLED_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_ELEVATION_ENABLED_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_ERROR_PORT_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_INSTALLER_DETECT_ENABLED_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_LKG_ENABLED_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_MULTIUSERS_IN_SESSION_SKU_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_MULTI_SESSION_SKU_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_A73_ERRATA","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_DISABLE_32BIT","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_ENABLED","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_HV_PAGE","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_LFENCE","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_MFENCE","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_RDTSCP","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_SECURE_BOOT_ENABLED_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_SET_GLOBAL_DATA_FLAG","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_STATE_SEPARATION_ENABLED_V","features":[3]},{"name":"SHARED_GLOBAL_FLAGS_VIRT_ENABLED_V","features":[3]},{"name":"SHARE_ACCESS","features":[3]},{"name":"SHORT_LEAST_SIGNIFICANT_BIT","features":[3]},{"name":"SHORT_MOST_SIGNIFICANT_BIT","features":[3]},{"name":"SIGNAL_REG_VALUE","features":[3]},{"name":"SILO_CONTEXT_CLEANUP_CALLBACK","features":[3]},{"name":"SILO_MONITOR_CREATE_CALLBACK","features":[2,3,1]},{"name":"SILO_MONITOR_REGISTRATION","features":[2,3,1]},{"name":"SILO_MONITOR_REGISTRATION_VERSION","features":[3]},{"name":"SILO_MONITOR_TERMINATE_CALLBACK","features":[2,3]},{"name":"SINGLE_GROUP_LEGACY_API","features":[3]},{"name":"SL_ALLOW_RAW_MOUNT","features":[3]},{"name":"SL_BYPASS_ACCESS_CHECK","features":[3]},{"name":"SL_BYPASS_IO","features":[3]},{"name":"SL_CASE_SENSITIVE","features":[3]},{"name":"SL_ERROR_RETURNED","features":[3]},{"name":"SL_EXCLUSIVE_LOCK","features":[3]},{"name":"SL_FAIL_IMMEDIATELY","features":[3]},{"name":"SL_FORCE_ACCESS_CHECK","features":[3]},{"name":"SL_FORCE_ASYNCHRONOUS","features":[3]},{"name":"SL_FORCE_DIRECT_WRITE","features":[3]},{"name":"SL_FT_SEQUENTIAL_WRITE","features":[3]},{"name":"SL_IGNORE_READONLY_ATTRIBUTE","features":[3]},{"name":"SL_INDEX_SPECIFIED","features":[3]},{"name":"SL_INFO_FORCE_ACCESS_CHECK","features":[3]},{"name":"SL_INFO_IGNORE_READONLY_ATTRIBUTE","features":[3]},{"name":"SL_INVOKE_ON_CANCEL","features":[3]},{"name":"SL_INVOKE_ON_ERROR","features":[3]},{"name":"SL_INVOKE_ON_SUCCESS","features":[3]},{"name":"SL_KEY_SPECIFIED","features":[3]},{"name":"SL_NO_CURSOR_UPDATE","features":[3]},{"name":"SL_OPEN_PAGING_FILE","features":[3]},{"name":"SL_OPEN_TARGET_DIRECTORY","features":[3]},{"name":"SL_OVERRIDE_VERIFY_VOLUME","features":[3]},{"name":"SL_PENDING_RETURNED","features":[3]},{"name":"SL_PERSISTENT_MEMORY_FIXED_MAPPING","features":[3]},{"name":"SL_QUERY_DIRECTORY_MASK","features":[3]},{"name":"SL_READ_ACCESS_GRANTED","features":[3]},{"name":"SL_REALTIME_STREAM","features":[3]},{"name":"SL_RESTART_SCAN","features":[3]},{"name":"SL_RETURN_ON_DISK_ENTRIES_ONLY","features":[3]},{"name":"SL_RETURN_SINGLE_ENTRY","features":[3]},{"name":"SL_STOP_ON_SYMLINK","features":[3]},{"name":"SL_WATCH_TREE","features":[3]},{"name":"SL_WRITE_ACCESS_GRANTED","features":[3]},{"name":"SL_WRITE_THROUGH","features":[3]},{"name":"SOC_SUBSYSTEM_FAILURE_DETAILS","features":[3]},{"name":"SOC_SUBSYSTEM_TYPE","features":[3]},{"name":"SOC_SUBSYS_AUDIO_DSP","features":[3]},{"name":"SOC_SUBSYS_COMPUTE_DSP","features":[3]},{"name":"SOC_SUBSYS_SECURE_PROC","features":[3]},{"name":"SOC_SUBSYS_SENSORS","features":[3]},{"name":"SOC_SUBSYS_VENDOR_DEFINED","features":[3]},{"name":"SOC_SUBSYS_WIRELESS_MODEM","features":[3]},{"name":"SOC_SUBSYS_WIRELSS_CONNECTIVITY","features":[3]},{"name":"SSINFO_FLAGS_ALIGNED_DEVICE","features":[3]},{"name":"SSINFO_FLAGS_BYTE_ADDRESSABLE","features":[3]},{"name":"SSINFO_FLAGS_NO_SEEK_PENALTY","features":[3]},{"name":"SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[3]},{"name":"SSINFO_FLAGS_TRIM_ENABLED","features":[3]},{"name":"SSINFO_OFFSET_UNKNOWN","features":[3]},{"name":"STATE_LOCATION_TYPE","features":[3]},{"name":"SUBSYSTEM_INFORMATION_TYPE","features":[3]},{"name":"SYMBOLIC_LINK_QUERY","features":[3]},{"name":"SYMBOLIC_LINK_SET","features":[3]},{"name":"SYSTEM_CALL_INT_2E","features":[3]},{"name":"SYSTEM_CALL_SYSCALL","features":[3]},{"name":"SYSTEM_FIRMWARE_TABLE_ACTION","features":[3]},{"name":"SYSTEM_FIRMWARE_TABLE_HANDLER","features":[3,1]},{"name":"SYSTEM_FIRMWARE_TABLE_INFORMATION","features":[3]},{"name":"SYSTEM_POWER_CONDITION","features":[3]},{"name":"SYSTEM_POWER_STATE_CONTEXT","features":[3]},{"name":"ScsiAdapter","features":[3]},{"name":"SeAccessCheck","features":[2,3,1,4]},{"name":"SeAssignSecurity","features":[2,3,1,4]},{"name":"SeAssignSecurityEx","features":[2,3,1,4]},{"name":"SeCaptureSubjectContext","features":[2,3,4]},{"name":"SeComputeAutoInheritByObjectType","features":[3,4]},{"name":"SeDeassignSecurity","features":[3,1,4]},{"name":"SeEtwWriteKMCveEvent","features":[3,1]},{"name":"SeImageTypeDriver","features":[3]},{"name":"SeImageTypeDynamicCodeFile","features":[3]},{"name":"SeImageTypeElamDriver","features":[3]},{"name":"SeImageTypeMax","features":[3]},{"name":"SeImageTypePlatformSecureFile","features":[3]},{"name":"SeImageVerificationCallbackInformational","features":[3]},{"name":"SeLockSubjectContext","features":[2,3,4]},{"name":"SeRegisterImageVerificationCallback","features":[3,1]},{"name":"SeReleaseSubjectContext","features":[2,3,4]},{"name":"SeReportSecurityEvent","features":[3,1,23]},{"name":"SeSetAuditParameter","features":[3,1,23]},{"name":"SeSinglePrivilegeCheck","features":[3,1]},{"name":"SeUnlockSubjectContext","features":[2,3,4]},{"name":"SeUnregisterImageVerificationCallback","features":[3]},{"name":"SeValidSecurityDescriptor","features":[3,1,4]},{"name":"SecondaryCache","features":[3]},{"name":"SecondaryDcache","features":[3]},{"name":"SecondaryIcache","features":[3]},{"name":"SequentialAccess","features":[3]},{"name":"SerialController","features":[3]},{"name":"SetSecurityDescriptor","features":[3]},{"name":"SgiInternalConfiguration","features":[3]},{"name":"SharedInterruptTime","features":[3]},{"name":"SharedSystemTime","features":[3]},{"name":"SharedTickCount","features":[3]},{"name":"SingleBusRelations","features":[3]},{"name":"SlotEmpty","features":[3]},{"name":"StandardDesign","features":[3]},{"name":"StopCompletion","features":[3]},{"name":"SubsystemInformationTypeWSL","features":[3]},{"name":"SubsystemInformationTypeWin32","features":[3]},{"name":"SuperCriticalWorkQueue","features":[3]},{"name":"Suspended","features":[3]},{"name":"SystemFirmwareTable_Enumerate","features":[3]},{"name":"SystemFirmwareTable_Get","features":[3]},{"name":"SystemMemory","features":[3]},{"name":"SystemMemoryPartitionDedicatedMemoryInformation","features":[3]},{"name":"SystemMemoryPartitionInformation","features":[3]},{"name":"SystemMemoryPartitionOpenDedicatedMemory","features":[3]},{"name":"SystemPowerState","features":[3]},{"name":"TABLE_SEARCH_RESULT","features":[3]},{"name":"TARGET_DEVICE_REMOVAL_NOTIFICATION","features":[2,5,3,1,4,6,7,8]},{"name":"THREAD_ALERT","features":[3]},{"name":"THREAD_CSWITCH_PMU_DISABLE","features":[3]},{"name":"THREAD_CSWITCH_PMU_ENABLE","features":[3]},{"name":"THREAD_GET_CONTEXT","features":[3]},{"name":"THREAD_WAIT_OBJECTS","features":[3]},{"name":"TIMER_EXPIRED_INDEX_BITS","features":[3]},{"name":"TIMER_PROCESSOR_INDEX_BITS","features":[3]},{"name":"TIMER_SET_COALESCABLE_TIMER_INFO","features":[3,1]},{"name":"TIMER_SET_INFORMATION_CLASS","features":[3]},{"name":"TIMER_TOLERABLE_DELAY_BITS","features":[3]},{"name":"TIME_FIELDS","features":[3]},{"name":"TRACE_INFORMATION_CLASS","features":[3]},{"name":"TRANSLATE_BUS_ADDRESS","features":[3,1]},{"name":"TRANSLATOR_INTERFACE","features":[2,5,3,1,4,6,7,8]},{"name":"TREE_CONNECT_NO_CLIENT_BUFFERING","features":[3]},{"name":"TREE_CONNECT_WRITE_THROUGH","features":[3]},{"name":"TXF_MINIVERSION_DEFAULT_VIEW","features":[3]},{"name":"TXN_PARAMETER_BLOCK","features":[3]},{"name":"TableEmptyTree","features":[3]},{"name":"TableFoundNode","features":[3]},{"name":"TableInsertAsLeft","features":[3]},{"name":"TableInsertAsRight","features":[3]},{"name":"TapeController","features":[3]},{"name":"TapePeripheral","features":[3]},{"name":"TargetDeviceRelation","features":[3]},{"name":"TcAdapter","features":[3]},{"name":"TerminalPeripheral","features":[3]},{"name":"TimerSetCoalescableTimer","features":[3]},{"name":"TlbMatchConflict","features":[3]},{"name":"TmCommitComplete","features":[2,3,1]},{"name":"TmCommitEnlistment","features":[2,3,1]},{"name":"TmCommitTransaction","features":[2,3,1]},{"name":"TmCreateEnlistment","features":[2,3,1]},{"name":"TmDereferenceEnlistmentKey","features":[2,3,1]},{"name":"TmEnableCallbacks","features":[2,3,1]},{"name":"TmGetTransactionId","features":[2,3]},{"name":"TmInitializeTransactionManager","features":[3,1]},{"name":"TmIsTransactionActive","features":[2,3,1]},{"name":"TmPrePrepareComplete","features":[2,3,1]},{"name":"TmPrePrepareEnlistment","features":[2,3,1]},{"name":"TmPrepareComplete","features":[2,3,1]},{"name":"TmPrepareEnlistment","features":[2,3,1]},{"name":"TmPropagationComplete","features":[2,3,1]},{"name":"TmPropagationFailed","features":[2,3,1]},{"name":"TmReadOnlyEnlistment","features":[2,3,1]},{"name":"TmRecoverEnlistment","features":[2,3,1]},{"name":"TmRecoverResourceManager","features":[2,3,1]},{"name":"TmRecoverTransactionManager","features":[2,3,1]},{"name":"TmReferenceEnlistmentKey","features":[2,3,1]},{"name":"TmRenameTransactionManager","features":[3,1]},{"name":"TmRequestOutcomeEnlistment","features":[2,3,1]},{"name":"TmRollbackComplete","features":[2,3,1]},{"name":"TmRollbackEnlistment","features":[2,3,1]},{"name":"TmRollbackTransaction","features":[2,3,1]},{"name":"TmSinglePhaseReject","features":[2,3,1]},{"name":"TraceEnableFlagsClass","features":[3]},{"name":"TraceEnableLevelClass","features":[3]},{"name":"TraceHandleByNameClass","features":[3]},{"name":"TraceHandleClass","features":[3]},{"name":"TraceIdClass","features":[3]},{"name":"TraceInformationClassReserved1","features":[3]},{"name":"TraceInformationClassReserved2","features":[3]},{"name":"TraceSessionSettingsClass","features":[3]},{"name":"TranslateChildToParent","features":[3]},{"name":"TranslateParentToChild","features":[3]},{"name":"TranslationFault","features":[3]},{"name":"TransportRelations","features":[3]},{"name":"TurboChannel","features":[3]},{"name":"TypeA","features":[3]},{"name":"TypeB","features":[3]},{"name":"TypeC","features":[3]},{"name":"TypeF","features":[3]},{"name":"UADDRESS_BASE","features":[3]},{"name":"UnsupportedUpstreamTransaction","features":[3]},{"name":"UserMode","features":[3]},{"name":"UserNotPresent","features":[3]},{"name":"UserPresent","features":[3]},{"name":"UserRequest","features":[3]},{"name":"UserUnknown","features":[3]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES1","features":[3]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES2","features":[3]},{"name":"VIRTUAL_CHANNEL_CONTROL","features":[3]},{"name":"VIRTUAL_CHANNEL_STATUS","features":[3]},{"name":"VIRTUAL_RESOURCE","features":[3]},{"name":"VIRTUAL_RESOURCE_CAPABILITY","features":[3]},{"name":"VIRTUAL_RESOURCE_CONTROL","features":[3]},{"name":"VIRTUAL_RESOURCE_STATUS","features":[3]},{"name":"VMEBus","features":[3]},{"name":"VMEConfiguration","features":[3]},{"name":"VM_COUNTERS","features":[3]},{"name":"VM_COUNTERS_EX","features":[3]},{"name":"VM_COUNTERS_EX2","features":[3]},{"name":"VPB_DIRECT_WRITES_ALLOWED","features":[3]},{"name":"VPB_DISMOUNTING","features":[3]},{"name":"VPB_FLAGS_BYPASSIO_BLOCKED","features":[3]},{"name":"VPB_LOCKED","features":[3]},{"name":"VPB_MOUNTED","features":[3]},{"name":"VPB_PERSISTENT","features":[3]},{"name":"VPB_RAW_MOUNT","features":[3]},{"name":"VPB_REMOVE_PENDING","features":[3]},{"name":"ViewShare","features":[3]},{"name":"ViewUnmap","features":[3]},{"name":"Vmcs","features":[3]},{"name":"VslCreateSecureSection","features":[2,3,1]},{"name":"VslDeleteSecureSection","features":[3,1]},{"name":"WAIT_CONTEXT_BLOCK","features":[2,5,3,1,4,6,7,8]},{"name":"WCS_RAS_REGISTER_NAME_MAX_LENGTH","features":[3]},{"name":"WDM_MAJORVERSION","features":[3]},{"name":"WDM_MINORVERSION","features":[3]},{"name":"WHEA128A","features":[3]},{"name":"WHEAP_ACPI_TIMEOUT_EVENT","features":[3]},{"name":"WHEAP_ADD_REMOVE_ERROR_SOURCE_EVENT","features":[3,1,30]},{"name":"WHEAP_ATTEMPT_RECOVERY_EVENT","features":[3,1]},{"name":"WHEAP_BAD_HEST_NOTIFY_DATA_EVENT","features":[3,30]},{"name":"WHEAP_CLEARED_POISON_EVENT","features":[3]},{"name":"WHEAP_CMCI_IMPLEMENTED_EVENT","features":[3,1]},{"name":"WHEAP_CMCI_INITERR_EVENT","features":[3]},{"name":"WHEAP_CMCI_RESTART_EVENT","features":[3]},{"name":"WHEAP_CREATE_GENERIC_RECORD_EVENT","features":[3,1]},{"name":"WHEAP_DEFERRED_EVENT","features":[3,7]},{"name":"WHEAP_DEVICE_DRV_EVENT","features":[3]},{"name":"WHEAP_DPC_ERROR_EVENT","features":[3]},{"name":"WHEAP_DPC_ERROR_EVENT_TYPE","features":[3]},{"name":"WHEAP_DROPPED_CORRECTED_ERROR_EVENT","features":[3,30]},{"name":"WHEAP_EDPC_ENABLED_EVENT","features":[3,1]},{"name":"WHEAP_ERROR_CLEARED_EVENT","features":[3]},{"name":"WHEAP_ERROR_RECORD_EVENT","features":[3]},{"name":"WHEAP_ERR_SRC_ARRAY_INVALID_EVENT","features":[3]},{"name":"WHEAP_ERR_SRC_INVALID_EVENT","features":[3,1,30]},{"name":"WHEAP_FOUND_ERROR_IN_BANK_EVENT","features":[3]},{"name":"WHEAP_GENERIC_ERR_MEM_MAP_EVENT","features":[3]},{"name":"WHEAP_OSC_IMPLEMENTED","features":[3,1]},{"name":"WHEAP_PCIE_CONFIG_INFO","features":[3]},{"name":"WHEAP_PCIE_OVERRIDE_INFO","features":[3]},{"name":"WHEAP_PCIE_READ_OVERRIDES_ERR","features":[3,1]},{"name":"WHEAP_PFA_MEMORY_OFFLINED","features":[3,1]},{"name":"WHEAP_PFA_MEMORY_POLICY","features":[3,1]},{"name":"WHEAP_PFA_MEMORY_REMOVE_MONITOR","features":[3]},{"name":"WHEAP_PFA_OFFLINE_DECISION_TYPE","features":[3]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_CORRUPT","features":[3]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_FULL_EVENT","features":[3]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_UEFI_VAR_FAILED","features":[3]},{"name":"WHEAP_PLUGIN_PFA_EVENT","features":[3,1]},{"name":"WHEAP_PROCESS_EINJ_EVENT","features":[3,1]},{"name":"WHEAP_PROCESS_HEST_EVENT","features":[3,1]},{"name":"WHEAP_PSHED_INJECT_ERROR","features":[3,1]},{"name":"WHEAP_PSHED_PLUGIN_REGISTER","features":[3,1]},{"name":"WHEAP_ROW_FAILURE_EVENT","features":[3]},{"name":"WHEAP_SPURIOUS_AER_EVENT","features":[3]},{"name":"WHEAP_STARTED_REPORT_HW_ERROR","features":[3,30]},{"name":"WHEAP_STUCK_ERROR_EVENT","features":[3]},{"name":"WHEA_ACPI_HEADER","features":[3]},{"name":"WHEA_AMD_EXTENDED_REGISTERS","features":[3]},{"name":"WHEA_AMD_EXT_REG_NUM","features":[3]},{"name":"WHEA_ARMV8_AARCH32_GPRS","features":[3]},{"name":"WHEA_ARMV8_AARCH64_EL3_CSR","features":[3]},{"name":"WHEA_ARMV8_AARCH64_GPRS","features":[3]},{"name":"WHEA_ARM_AARCH32_EL1_CSR","features":[3]},{"name":"WHEA_ARM_AARCH32_EL2_CSR","features":[3]},{"name":"WHEA_ARM_AARCH32_SECURE_CSR","features":[3]},{"name":"WHEA_ARM_AARCH64_EL1_CSR","features":[3]},{"name":"WHEA_ARM_AARCH64_EL2_CSR","features":[3]},{"name":"WHEA_ARM_BUS_ERROR","features":[3]},{"name":"WHEA_ARM_BUS_ERROR_VALID_BITS","features":[3]},{"name":"WHEA_ARM_CACHE_ERROR","features":[3]},{"name":"WHEA_ARM_CACHE_ERROR_VALID_BITS","features":[3]},{"name":"WHEA_ARM_MISC_CSR","features":[3]},{"name":"WHEA_ARM_PROCESSOR_ERROR","features":[3]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER","features":[3]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER_FLAGS","features":[3]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION","features":[3]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION_VALID_BITS","features":[3]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION","features":[3]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION_VALID_BITS","features":[3]},{"name":"WHEA_ARM_TLB_ERROR","features":[3]},{"name":"WHEA_ARM_TLB_ERROR_VALID_BITS","features":[3]},{"name":"WHEA_AZCC_ROOT_BUS_ERR_EVENT","features":[3,1]},{"name":"WHEA_AZCC_ROOT_BUS_LIST_EVENT","features":[3]},{"name":"WHEA_AZCC_SET_POISON_EVENT","features":[3,1]},{"name":"WHEA_BUGCHECK_RECOVERY_LOG_TYPE","features":[3]},{"name":"WHEA_BUSCHECK_GUID","features":[3]},{"name":"WHEA_CACHECHECK_GUID","features":[3]},{"name":"WHEA_CPU_VENDOR","features":[3]},{"name":"WHEA_DEVICE_ERROR_SUMMARY_GUID","features":[3]},{"name":"WHEA_DPC_CAPABILITY_SECTION_GUID","features":[3]},{"name":"WHEA_ERROR_INJECTION_CAPABILITIES","features":[3]},{"name":"WHEA_ERROR_LOG_ENTRY_VERSION","features":[3]},{"name":"WHEA_ERROR_PACKET_DATA_FORMAT","features":[3]},{"name":"WHEA_ERROR_PACKET_FLAGS","features":[3]},{"name":"WHEA_ERROR_PACKET_SECTION_GUID","features":[3]},{"name":"WHEA_ERROR_PACKET_V1","features":[3,30]},{"name":"WHEA_ERROR_PACKET_V1_VERSION","features":[3]},{"name":"WHEA_ERROR_PACKET_V2","features":[3,30]},{"name":"WHEA_ERROR_PACKET_V2_VERSION","features":[3]},{"name":"WHEA_ERROR_PACKET_VERSION","features":[3]},{"name":"WHEA_ERROR_PKT_VERSION","features":[3]},{"name":"WHEA_ERROR_RECORD","features":[3]},{"name":"WHEA_ERROR_RECORD_FLAGS_DEVICE_DRIVER","features":[3]},{"name":"WHEA_ERROR_RECORD_FLAGS_PREVIOUSERROR","features":[3]},{"name":"WHEA_ERROR_RECORD_FLAGS_RECOVERED","features":[3]},{"name":"WHEA_ERROR_RECORD_FLAGS_SIMULATED","features":[3]},{"name":"WHEA_ERROR_RECORD_HEADER","features":[3]},{"name":"WHEA_ERROR_RECORD_HEADER_FLAGS","features":[3]},{"name":"WHEA_ERROR_RECORD_HEADER_VALIDBITS","features":[3]},{"name":"WHEA_ERROR_RECORD_REVISION","features":[3]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR","features":[3]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_FLAGS","features":[3]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_REVISION","features":[3]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS","features":[3]},{"name":"WHEA_ERROR_RECORD_SIGNATURE_END","features":[3]},{"name":"WHEA_ERROR_RECORD_VALID_PARTITIONID","features":[3]},{"name":"WHEA_ERROR_RECORD_VALID_PLATFORMID","features":[3]},{"name":"WHEA_ERROR_RECORD_VALID_TIMESTAMP","features":[3]},{"name":"WHEA_ERROR_RECOVERY_INFO_SECTION","features":[3,1]},{"name":"WHEA_ERROR_SEVERITY","features":[3]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION","features":[3,1]},{"name":"WHEA_ERROR_SOURCE_CORRECT","features":[3,1]},{"name":"WHEA_ERROR_SOURCE_CREATE_RECORD","features":[3,1]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE","features":[3,1]},{"name":"WHEA_ERROR_SOURCE_OVERRIDE_SETTINGS","features":[3,30]},{"name":"WHEA_ERROR_SOURCE_RECOVER","features":[3,1]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE","features":[3]},{"name":"WHEA_ERROR_STATUS","features":[3]},{"name":"WHEA_ERROR_TEXT_LEN","features":[3]},{"name":"WHEA_ERROR_TYPE","features":[3]},{"name":"WHEA_ERR_SRC_OVERRIDE_FLAG","features":[3]},{"name":"WHEA_ETW_OVERFLOW_EVENT","features":[3]},{"name":"WHEA_EVENT_LOG_ENTRY","features":[3]},{"name":"WHEA_EVENT_LOG_ENTRY_FLAGS","features":[3]},{"name":"WHEA_EVENT_LOG_ENTRY_HEADER","features":[3]},{"name":"WHEA_EVENT_LOG_ENTRY_ID","features":[3]},{"name":"WHEA_EVENT_LOG_ENTRY_TYPE","features":[3]},{"name":"WHEA_FAILED_ADD_DEFECT_LIST_EVENT","features":[3]},{"name":"WHEA_FIRMWARE_ERROR_RECORD_REFERENCE","features":[3]},{"name":"WHEA_FIRMWARE_RECORD_TYPE_IPFSAL","features":[3]},{"name":"WHEA_GENERIC_ENTRY_TEXT_LEN","features":[3]},{"name":"WHEA_GENERIC_ENTRY_V2_VERSION","features":[3]},{"name":"WHEA_GENERIC_ENTRY_VERSION","features":[3]},{"name":"WHEA_GENERIC_ERROR","features":[3]},{"name":"WHEA_GENERIC_ERROR_BLOCKSTATUS","features":[3]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V1","features":[3]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V2","features":[3]},{"name":"WHEA_INVALID_ERR_SRC_ID","features":[3]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAGS","features":[3]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_NOTIFYALL","features":[3]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PAGEOFFLINED","features":[3]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PLATFORMDIRECTED","features":[3]},{"name":"WHEA_MAX_LOG_DATA_LEN","features":[3]},{"name":"WHEA_MEMERRTYPE_INVALIDADDRESS","features":[3]},{"name":"WHEA_MEMERRTYPE_MASTERABORT","features":[3]},{"name":"WHEA_MEMERRTYPE_MEMORYSPARING","features":[3]},{"name":"WHEA_MEMERRTYPE_MIRRORBROKEN","features":[3]},{"name":"WHEA_MEMERRTYPE_MULTIBITECC","features":[3]},{"name":"WHEA_MEMERRTYPE_MULTISYMCHIPKILL","features":[3]},{"name":"WHEA_MEMERRTYPE_NOERROR","features":[3]},{"name":"WHEA_MEMERRTYPE_PARITYERROR","features":[3]},{"name":"WHEA_MEMERRTYPE_SINGLEBITECC","features":[3]},{"name":"WHEA_MEMERRTYPE_SINGLESYMCHIPKILL","features":[3]},{"name":"WHEA_MEMERRTYPE_TARGETABORT","features":[3]},{"name":"WHEA_MEMERRTYPE_UNKNOWN","features":[3]},{"name":"WHEA_MEMERRTYPE_WATCHDOGTIMEOUT","features":[3]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_DATA","features":[3]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_HEADER","features":[3]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION","features":[3]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_MEMORY_ERROR_SECTION","features":[3]},{"name":"WHEA_MEMORY_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_MEMORY_THROTTLE_SUMMARY_FAILED_EVENT","features":[3,1]},{"name":"WHEA_MSCHECK_GUID","features":[3]},{"name":"WHEA_MSR_DUMP_SECTION","features":[3]},{"name":"WHEA_NMI_ERROR_SECTION","features":[3]},{"name":"WHEA_NMI_ERROR_SECTION_FLAGS","features":[3]},{"name":"WHEA_OFFLINE_DONE_EVENT","features":[3]},{"name":"WHEA_PACKET_LOG_DATA","features":[3]},{"name":"WHEA_PCIEXPRESS_BRIDGE_CONTROL_STATUS","features":[3]},{"name":"WHEA_PCIEXPRESS_COMMAND_STATUS","features":[3]},{"name":"WHEA_PCIEXPRESS_DEVICE_ID","features":[3]},{"name":"WHEA_PCIEXPRESS_DEVICE_TYPE","features":[3]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION","features":[3]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_PCIEXPRESS_VERSION","features":[3]},{"name":"WHEA_PCIE_ADDRESS","features":[3]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES","features":[3]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES_VALIDBITS","features":[3]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION","features":[3]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_COUNT_SIZE","features":[3]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_HEADER","features":[3]},{"name":"WHEA_PCIXBUS_COMMAND","features":[3]},{"name":"WHEA_PCIXBUS_ERROR_SECTION","features":[3]},{"name":"WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_PCIXBUS_ID","features":[3]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION","features":[3]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_PCIXDEVICE_ID","features":[3]},{"name":"WHEA_PCIXDEVICE_REGISTER_PAIR","features":[3]},{"name":"WHEA_PCI_RECOVERY_SECTION","features":[3,1]},{"name":"WHEA_PCI_RECOVERY_SIGNAL","features":[3]},{"name":"WHEA_PCI_RECOVERY_STATUS","features":[3]},{"name":"WHEA_PERSISTENCE_INFO","features":[3]},{"name":"WHEA_PFA_REMOVE_TRIGGER","features":[3]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V1","features":[3]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V2","features":[3]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_VERSION","features":[3]},{"name":"WHEA_PMEM_ERROR_SECTION","features":[3]},{"name":"WHEA_PMEM_ERROR_SECTION_LOCATION_INFO_SIZE","features":[3]},{"name":"WHEA_PMEM_ERROR_SECTION_MAX_PAGES","features":[3]},{"name":"WHEA_PMEM_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_PMEM_PAGE_RANGE","features":[3]},{"name":"WHEA_PROCESSOR_FAMILY_INFO","features":[3]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION","features":[3]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_PSHED_PI_CPU_BUSES_INIT_FAILED_EVENT","features":[3,1]},{"name":"WHEA_PSHED_PI_TRACE_EVENT","features":[3]},{"name":"WHEA_PSHED_PLUGIN_CALLBACKS","features":[3,1,30]},{"name":"WHEA_PSHED_PLUGIN_DIMM_MISMATCH","features":[3]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_ERRORS","features":[3]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_FAILED_EVENT","features":[3]},{"name":"WHEA_PSHED_PLUGIN_HEARTBEAT","features":[3]},{"name":"WHEA_PSHED_PLUGIN_INIT_FAILED_EVENT","features":[3,1]},{"name":"WHEA_PSHED_PLUGIN_LOAD_EVENT","features":[3]},{"name":"WHEA_PSHED_PLUGIN_PLATFORM_SUPPORT_EVENT","features":[3,1]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V1","features":[3,1,30]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V2","features":[3,1,30]},{"name":"WHEA_PSHED_PLUGIN_UNLOAD_EVENT","features":[3]},{"name":"WHEA_RAW_DATA_FORMAT","features":[3]},{"name":"WHEA_RECORD_CREATOR_GUID","features":[3]},{"name":"WHEA_RECOVERY_ACTION","features":[3]},{"name":"WHEA_RECOVERY_CONTEXT","features":[3,1]},{"name":"WHEA_RECOVERY_CONTEXT_ERROR_TYPE","features":[3]},{"name":"WHEA_RECOVERY_FAILURE_REASON","features":[3]},{"name":"WHEA_RECOVERY_TYPE","features":[3]},{"name":"WHEA_REGISTER_KEY_NOTIFICATION_FAILED_EVENT","features":[3]},{"name":"WHEA_REPORT_HW_ERROR_DEVICE_DRIVER_FLAGS","features":[3]},{"name":"WHEA_REVISION","features":[3]},{"name":"WHEA_SEA_SECTION","features":[3,1]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_CONTAINMENTWRN","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_FRU_TEXT_BY_PLUGIN","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_LATENTERROR","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PRIMARY","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PROPAGATED","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESET","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESOURCENA","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_THRESHOLDEXCEEDED","features":[3]},{"name":"WHEA_SECTION_DESCRIPTOR_REVISION","features":[3]},{"name":"WHEA_SEI_SECTION","features":[3]},{"name":"WHEA_SEL_BUGCHECK_PROGRESS","features":[3]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_MULTIPLE_BUGCHECK_EVENT","features":[3,1]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_EVENT","features":[3,1]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_VERSION","features":[3]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE2_EVENT","features":[3,1]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_START_EVENT","features":[3]},{"name":"WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[3,1]},{"name":"WHEA_SRAR_DETAIL_EVENT","features":[3,1]},{"name":"WHEA_SRAS_TABLE_ENTRIES_EVENT","features":[3]},{"name":"WHEA_SRAS_TABLE_ERROR","features":[3]},{"name":"WHEA_SRAS_TABLE_NOT_FOUND","features":[3]},{"name":"WHEA_THROTTLE_ADD_ERR_SRC_FAILED_EVENT","features":[3]},{"name":"WHEA_THROTTLE_MEMORY_ADD_OR_REMOVE_EVENT","features":[3]},{"name":"WHEA_THROTTLE_PCIE_ADD_EVENT","features":[3,1]},{"name":"WHEA_THROTTLE_PCIE_REMOVE_EVENT","features":[3]},{"name":"WHEA_THROTTLE_REGISTRY_CORRUPT_EVENT","features":[3]},{"name":"WHEA_THROTTLE_REG_DATA_IGNORED_EVENT","features":[3]},{"name":"WHEA_THROTTLE_TYPE","features":[3]},{"name":"WHEA_TIMESTAMP","features":[3]},{"name":"WHEA_TLBCHECK_GUID","features":[3]},{"name":"WHEA_WRITE_FLAG_DUMMY","features":[3]},{"name":"WHEA_X64_REGISTER_STATE","features":[3]},{"name":"WHEA_X86_REGISTER_STATE","features":[3]},{"name":"WHEA_XPF_BUS_CHECK","features":[3]},{"name":"WHEA_XPF_CACHE_CHECK","features":[3]},{"name":"WHEA_XPF_CONTEXT_INFO","features":[3]},{"name":"WHEA_XPF_MCA_EXTREG_MAX_COUNT","features":[3]},{"name":"WHEA_XPF_MCA_SECTION","features":[3,1]},{"name":"WHEA_XPF_MCA_SECTION_VERSION","features":[3]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_2","features":[3]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_3","features":[3]},{"name":"WHEA_XPF_MS_CHECK","features":[3]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION","features":[3]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS","features":[3]},{"name":"WHEA_XPF_PROCINFO","features":[3]},{"name":"WHEA_XPF_PROCINFO_VALIDBITS","features":[3]},{"name":"WHEA_XPF_TLB_CHECK","features":[3]},{"name":"WMIREGISTER","features":[3]},{"name":"WMIREG_ACTION_BLOCK_IRPS","features":[3]},{"name":"WMIREG_ACTION_DEREGISTER","features":[3]},{"name":"WMIREG_ACTION_REGISTER","features":[3]},{"name":"WMIREG_ACTION_REREGISTER","features":[3]},{"name":"WMIREG_ACTION_UPDATE_GUIDS","features":[3]},{"name":"WMIUPDATE","features":[3]},{"name":"WMI_NOTIFICATION_CALLBACK","features":[3]},{"name":"WORKER_THREAD_ROUTINE","features":[3]},{"name":"WORK_QUEUE_TYPE","features":[3]},{"name":"WdfNotifyRoutinesClass","features":[3]},{"name":"WheaAddErrorSource","features":[3,1,30]},{"name":"WheaAddErrorSourceDeviceDriver","features":[3,1,30]},{"name":"WheaAddErrorSourceDeviceDriverV1","features":[3,1,30]},{"name":"WheaAddHwErrorReportSectionDeviceDriver","features":[3,1,30]},{"name":"WheaConfigureErrorSource","features":[3,1,30]},{"name":"WheaCpuVendorAmd","features":[3]},{"name":"WheaCpuVendorIntel","features":[3]},{"name":"WheaCpuVendorOther","features":[3]},{"name":"WheaCreateHwErrorReportDeviceDriver","features":[2,5,3,1,4,6,7,8]},{"name":"WheaDataFormatGeneric","features":[3]},{"name":"WheaDataFormatIPFSalRecord","features":[3]},{"name":"WheaDataFormatMax","features":[3]},{"name":"WheaDataFormatMemory","features":[3]},{"name":"WheaDataFormatNMIPort","features":[3]},{"name":"WheaDataFormatPCIExpress","features":[3]},{"name":"WheaDataFormatPCIXBus","features":[3]},{"name":"WheaDataFormatPCIXDevice","features":[3]},{"name":"WheaDataFormatXPFMCA","features":[3]},{"name":"WheaErrSevCorrected","features":[3]},{"name":"WheaErrSevFatal","features":[3]},{"name":"WheaErrSevInformational","features":[3]},{"name":"WheaErrSevRecoverable","features":[3]},{"name":"WheaErrTypeGeneric","features":[3]},{"name":"WheaErrTypeMemory","features":[3]},{"name":"WheaErrTypeNMI","features":[3]},{"name":"WheaErrTypePCIExpress","features":[3]},{"name":"WheaErrTypePCIXBus","features":[3]},{"name":"WheaErrTypePCIXDevice","features":[3]},{"name":"WheaErrTypePmem","features":[3]},{"name":"WheaErrTypeProcessor","features":[3]},{"name":"WheaErrorSourceGetState","features":[3,30]},{"name":"WheaEventBugCheckRecoveryEntry","features":[3]},{"name":"WheaEventBugCheckRecoveryMax","features":[3]},{"name":"WheaEventBugCheckRecoveryReturn","features":[3]},{"name":"WheaEventLogAzccRootBusList","features":[3]},{"name":"WheaEventLogAzccRootBusPoisonSet","features":[3]},{"name":"WheaEventLogAzccRootBusSearchErr","features":[3]},{"name":"WheaEventLogCmciFinalRestart","features":[3]},{"name":"WheaEventLogCmciRestart","features":[3]},{"name":"WheaEventLogEntryEarlyError","features":[3]},{"name":"WheaEventLogEntryEtwOverFlow","features":[3]},{"name":"WheaEventLogEntryIdAcpiTimeOut","features":[3]},{"name":"WheaEventLogEntryIdAddRemoveErrorSource","features":[3]},{"name":"WheaEventLogEntryIdAerNotGrantedToOs","features":[3]},{"name":"WheaEventLogEntryIdAttemptErrorRecovery","features":[3]},{"name":"WheaEventLogEntryIdBadHestNotifyData","features":[3]},{"name":"WheaEventLogEntryIdBadPageLimitReached","features":[3]},{"name":"WheaEventLogEntryIdClearedPoison","features":[3]},{"name":"WheaEventLogEntryIdCmcPollingTimeout","features":[3]},{"name":"WheaEventLogEntryIdCmcSwitchToPolling","features":[3]},{"name":"WheaEventLogEntryIdCmciImplPresent","features":[3]},{"name":"WheaEventLogEntryIdCmciInitError","features":[3]},{"name":"WheaEventLogEntryIdCpuBusesInitFailed","features":[3]},{"name":"WheaEventLogEntryIdCpusFrozen","features":[3]},{"name":"WheaEventLogEntryIdCpusFrozenNoCrashDump","features":[3]},{"name":"WheaEventLogEntryIdCreateGenericRecord","features":[3]},{"name":"WheaEventLogEntryIdDefectListCorrupt","features":[3]},{"name":"WheaEventLogEntryIdDefectListFull","features":[3]},{"name":"WheaEventLogEntryIdDefectListUEFIVarFailed","features":[3]},{"name":"WheaEventLogEntryIdDeviceDriver","features":[3]},{"name":"WheaEventLogEntryIdDroppedCorrectedError","features":[3]},{"name":"WheaEventLogEntryIdDrvErrSrcInvalid","features":[3]},{"name":"WheaEventLogEntryIdDrvHandleBusy","features":[3]},{"name":"WheaEventLogEntryIdEnableKeyNotifFailed","features":[3]},{"name":"WheaEventLogEntryIdErrDimmInfoMismatch","features":[3]},{"name":"WheaEventLogEntryIdErrSrcArrayInvalid","features":[3]},{"name":"WheaEventLogEntryIdErrSrcInvalid","features":[3]},{"name":"WheaEventLogEntryIdErrorRecord","features":[3]},{"name":"WheaEventLogEntryIdErrorRecordLimit","features":[3]},{"name":"WheaEventLogEntryIdFailedAddToDefectList","features":[3]},{"name":"WheaEventLogEntryIdGenericErrMemMap","features":[3]},{"name":"WheaEventLogEntryIdKeyNotificationFailed","features":[3]},{"name":"WheaEventLogEntryIdMcaErrorCleared","features":[3]},{"name":"WheaEventLogEntryIdMcaFoundErrorInBank","features":[3]},{"name":"WheaEventLogEntryIdMcaStuckErrorCheck","features":[3]},{"name":"WheaEventLogEntryIdMemoryAddDevice","features":[3]},{"name":"WheaEventLogEntryIdMemoryRemoveDevice","features":[3]},{"name":"WheaEventLogEntryIdMemorySummaryFailed","features":[3]},{"name":"WheaEventLogEntryIdOscCapabilities","features":[3]},{"name":"WheaEventLogEntryIdPFAMemoryOfflined","features":[3]},{"name":"WheaEventLogEntryIdPFAMemoryPolicy","features":[3]},{"name":"WheaEventLogEntryIdPFAMemoryRemoveMonitor","features":[3]},{"name":"WheaEventLogEntryIdPcieAddDevice","features":[3]},{"name":"WheaEventLogEntryIdPcieConfigInfo","features":[3]},{"name":"WheaEventLogEntryIdPcieDpcError","features":[3]},{"name":"WheaEventLogEntryIdPcieOverrideInfo","features":[3]},{"name":"WheaEventLogEntryIdPcieRemoveDevice","features":[3]},{"name":"WheaEventLogEntryIdPcieSpuriousErrSource","features":[3]},{"name":"WheaEventLogEntryIdPcieSummaryFailed","features":[3]},{"name":"WheaEventLogEntryIdProcessEINJ","features":[3]},{"name":"WheaEventLogEntryIdProcessHEST","features":[3]},{"name":"WheaEventLogEntryIdPshedCallbackCollision","features":[3]},{"name":"WheaEventLogEntryIdPshedInjectError","features":[3]},{"name":"WheaEventLogEntryIdPshedPiTraceLog","features":[3]},{"name":"WheaEventLogEntryIdPshedPluginInitFailed","features":[3]},{"name":"WheaEventLogEntryIdPshedPluginLoad","features":[3]},{"name":"WheaEventLogEntryIdPshedPluginRegister","features":[3]},{"name":"WheaEventLogEntryIdPshedPluginSupported","features":[3]},{"name":"WheaEventLogEntryIdPshedPluginUnload","features":[3]},{"name":"WheaEventLogEntryIdReadPcieOverridesErr","features":[3]},{"name":"WheaEventLogEntryIdRowFailure","features":[3]},{"name":"WheaEventLogEntryIdSELBugCheckInfo","features":[3]},{"name":"WheaEventLogEntryIdSELBugCheckProgress","features":[3]},{"name":"WheaEventLogEntryIdSELBugCheckRecovery","features":[3]},{"name":"WheaEventLogEntryIdSrasTableEntries","features":[3]},{"name":"WheaEventLogEntryIdSrasTableError","features":[3]},{"name":"WheaEventLogEntryIdSrasTableNotFound","features":[3]},{"name":"WheaEventLogEntryIdStartedReportHwError","features":[3]},{"name":"WheaEventLogEntryIdThrottleAddErrSrcFailed","features":[3]},{"name":"WheaEventLogEntryIdThrottleRegCorrupt","features":[3]},{"name":"WheaEventLogEntryIdThrottleRegDataIgnored","features":[3]},{"name":"WheaEventLogEntryIdWheaHeartbeat","features":[3]},{"name":"WheaEventLogEntryIdWheaInit","features":[3]},{"name":"WheaEventLogEntryIdWorkQueueItem","features":[3]},{"name":"WheaEventLogEntryIdeDpcEnabled","features":[3]},{"name":"WheaEventLogEntryPageOfflineDone","features":[3]},{"name":"WheaEventLogEntryPageOfflinePendMax","features":[3]},{"name":"WheaEventLogEntrySrarDetail","features":[3]},{"name":"WheaEventLogEntryTypeError","features":[3]},{"name":"WheaEventLogEntryTypeInformational","features":[3]},{"name":"WheaEventLogEntryTypeWarning","features":[3]},{"name":"WheaGetNotifyAllOfflinesPolicy","features":[3,1]},{"name":"WheaHighIrqlLogSelEventHandlerRegister","features":[3,1,30]},{"name":"WheaHighIrqlLogSelEventHandlerUnregister","features":[3]},{"name":"WheaHwErrorReportAbandonDeviceDriver","features":[3,1]},{"name":"WheaHwErrorReportSetSectionNameDeviceDriver","features":[3,1,30]},{"name":"WheaHwErrorReportSetSeverityDeviceDriver","features":[3,1]},{"name":"WheaHwErrorReportSubmitDeviceDriver","features":[3,1]},{"name":"WheaInitializeRecordHeader","features":[3,1]},{"name":"WheaIsCriticalState","features":[3,1]},{"name":"WheaLogInternalEvent","features":[3]},{"name":"WheaMemoryThrottle","features":[3]},{"name":"WheaPciExpressDownstreamSwitchPort","features":[3]},{"name":"WheaPciExpressEndpoint","features":[3]},{"name":"WheaPciExpressLegacyEndpoint","features":[3]},{"name":"WheaPciExpressRootComplexEventCollector","features":[3]},{"name":"WheaPciExpressRootComplexIntegratedEndpoint","features":[3]},{"name":"WheaPciExpressRootPort","features":[3]},{"name":"WheaPciExpressToPciXBridge","features":[3]},{"name":"WheaPciExpressUpstreamSwitchPort","features":[3]},{"name":"WheaPciREcoveryStatusUnknown","features":[3]},{"name":"WheaPciRecoverySignalAer","features":[3]},{"name":"WheaPciRecoverySignalDpc","features":[3]},{"name":"WheaPciRecoverySignalUnknown","features":[3]},{"name":"WheaPciRecoveryStatusBusNotFound","features":[3]},{"name":"WheaPciRecoveryStatusComplexTree","features":[3]},{"name":"WheaPciRecoveryStatusLinkDisableTimeout","features":[3]},{"name":"WheaPciRecoveryStatusLinkEnableTimeout","features":[3]},{"name":"WheaPciRecoveryStatusNoError","features":[3]},{"name":"WheaPciRecoveryStatusRpBusyTimeout","features":[3]},{"name":"WheaPciXToExpressBridge","features":[3]},{"name":"WheaPcieThrottle","features":[3]},{"name":"WheaPfaRemoveCapacity","features":[3]},{"name":"WheaPfaRemoveErrorThreshold","features":[3]},{"name":"WheaPfaRemoveTimeout","features":[3]},{"name":"WheaRawDataFormatAMD64MCA","features":[3]},{"name":"WheaRawDataFormatGeneric","features":[3]},{"name":"WheaRawDataFormatIA32MCA","features":[3]},{"name":"WheaRawDataFormatIPFSalRecord","features":[3]},{"name":"WheaRawDataFormatIntel64MCA","features":[3]},{"name":"WheaRawDataFormatMax","features":[3]},{"name":"WheaRawDataFormatMemory","features":[3]},{"name":"WheaRawDataFormatNMIPort","features":[3]},{"name":"WheaRawDataFormatPCIExpress","features":[3]},{"name":"WheaRawDataFormatPCIXBus","features":[3]},{"name":"WheaRawDataFormatPCIXDevice","features":[3]},{"name":"WheaRecoveryContextErrorTypeMax","features":[3]},{"name":"WheaRecoveryContextErrorTypeMemory","features":[3]},{"name":"WheaRecoveryContextErrorTypePmem","features":[3]},{"name":"WheaRecoveryFailureReasonFarNotValid","features":[3]},{"name":"WheaRecoveryFailureReasonHighIrql","features":[3]},{"name":"WheaRecoveryFailureReasonInsufficientAltContextWrappers","features":[3]},{"name":"WheaRecoveryFailureReasonInterruptsDisabled","features":[3]},{"name":"WheaRecoveryFailureReasonInvalidAddressMode","features":[3]},{"name":"WheaRecoveryFailureReasonKernelCouldNotMarkMemoryBad","features":[3]},{"name":"WheaRecoveryFailureReasonKernelMarkMemoryBadTimedOut","features":[3]},{"name":"WheaRecoveryFailureReasonKernelWillPageFaultBCAtCurrentIrql","features":[3]},{"name":"WheaRecoveryFailureReasonMax","features":[3]},{"name":"WheaRecoveryFailureReasonMiscOrAddrNotValid","features":[3]},{"name":"WheaRecoveryFailureReasonNoRecoveryContext","features":[3]},{"name":"WheaRecoveryFailureReasonNotContinuable","features":[3]},{"name":"WheaRecoveryFailureReasonNotSupported","features":[3]},{"name":"WheaRecoveryFailureReasonOverflow","features":[3]},{"name":"WheaRecoveryFailureReasonPcc","features":[3]},{"name":"WheaRecoveryFailureReasonStackOverflow","features":[3]},{"name":"WheaRecoveryFailureReasonSwapBusy","features":[3]},{"name":"WheaRecoveryFailureReasonUnexpectedFailure","features":[3]},{"name":"WheaRecoveryTypeActionOptional","features":[3]},{"name":"WheaRecoveryTypeActionRequired","features":[3]},{"name":"WheaRecoveryTypeMax","features":[3]},{"name":"WheaRegisterInUsePageOfflineNotification","features":[3,1]},{"name":"WheaRemoveErrorSource","features":[3]},{"name":"WheaRemoveErrorSourceDeviceDriver","features":[3,1]},{"name":"WheaReportHwError","features":[3,1,30]},{"name":"WheaReportHwErrorDeviceDriver","features":[2,5,3,1,4,6,7,8]},{"name":"WheaUnconfigureErrorSource","features":[3,1,30]},{"name":"WheaUnregisterInUsePageOfflineNotification","features":[3,1]},{"name":"WheapDpcErrBusNotFound","features":[3]},{"name":"WheapDpcErrDeviceIdBad","features":[3]},{"name":"WheapDpcErrDpcedSubtree","features":[3]},{"name":"WheapDpcErrNoChildren","features":[3]},{"name":"WheapDpcErrNoErr","features":[3]},{"name":"WheapDpcErrResetFailed","features":[3]},{"name":"WheapPfaOfflinePredictiveFailure","features":[3]},{"name":"WheapPfaOfflineUncorrectedError","features":[3]},{"name":"Width16Bits","features":[3]},{"name":"Width32Bits","features":[3]},{"name":"Width64Bits","features":[3]},{"name":"Width8Bits","features":[3]},{"name":"WidthNoWrap","features":[3]},{"name":"WmiQueryTraceInformation","features":[3,1]},{"name":"WormController","features":[3]},{"name":"WrAlertByThreadId","features":[3]},{"name":"WrCalloutStack","features":[3]},{"name":"WrCpuRateControl","features":[3]},{"name":"WrDeferredPreempt","features":[3]},{"name":"WrDelayExecution","features":[3]},{"name":"WrDispatchInt","features":[3]},{"name":"WrExecutive","features":[3]},{"name":"WrFastMutex","features":[3]},{"name":"WrFreePage","features":[3]},{"name":"WrGuardedMutex","features":[3]},{"name":"WrIoRing","features":[3]},{"name":"WrKernel","features":[3]},{"name":"WrKeyedEvent","features":[3]},{"name":"WrLpcReceive","features":[3]},{"name":"WrLpcReply","features":[3]},{"name":"WrMdlCache","features":[3]},{"name":"WrMutex","features":[3]},{"name":"WrPageIn","features":[3]},{"name":"WrPageOut","features":[3]},{"name":"WrPhysicalFault","features":[3]},{"name":"WrPoolAllocation","features":[3]},{"name":"WrPreempted","features":[3]},{"name":"WrProcessInSwap","features":[3]},{"name":"WrPushLock","features":[3]},{"name":"WrQuantumEnd","features":[3]},{"name":"WrQueue","features":[3]},{"name":"WrRendezvous","features":[3]},{"name":"WrResource","features":[3]},{"name":"WrRundown","features":[3]},{"name":"WrSpare0","features":[3]},{"name":"WrSuspended","features":[3]},{"name":"WrTerminated","features":[3]},{"name":"WrUserRequest","features":[3]},{"name":"WrVirtualMemory","features":[3]},{"name":"WrYieldExecution","features":[3]},{"name":"WriteAccess","features":[3]},{"name":"XPF_BUS_CHECK_ADDRESS_IO","features":[3]},{"name":"XPF_BUS_CHECK_ADDRESS_MEMORY","features":[3]},{"name":"XPF_BUS_CHECK_ADDRESS_OTHER","features":[3]},{"name":"XPF_BUS_CHECK_ADDRESS_RESERVED","features":[3]},{"name":"XPF_BUS_CHECK_OPERATION_DATAREAD","features":[3]},{"name":"XPF_BUS_CHECK_OPERATION_DATAWRITE","features":[3]},{"name":"XPF_BUS_CHECK_OPERATION_GENERIC","features":[3]},{"name":"XPF_BUS_CHECK_OPERATION_GENREAD","features":[3]},{"name":"XPF_BUS_CHECK_OPERATION_GENWRITE","features":[3]},{"name":"XPF_BUS_CHECK_OPERATION_INSTRUCTIONFETCH","features":[3]},{"name":"XPF_BUS_CHECK_OPERATION_PREFETCH","features":[3]},{"name":"XPF_BUS_CHECK_PARTICIPATION_GENERIC","features":[3]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCOBSERVED","features":[3]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCORIGINATED","features":[3]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCRESPONDED","features":[3]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[3]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_GENERIC","features":[3]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAREAD","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAWRITE","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_EVICTION","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_GENERIC","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_GENREAD","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_GENWRITE","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_INSTRUCTIONFETCH","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_PREFETCH","features":[3]},{"name":"XPF_CACHE_CHECK_OPERATION_SNOOP","features":[3]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[3]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_GENERIC","features":[3]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[3]},{"name":"XPF_CONTEXT_INFO_32BITCONTEXT","features":[3]},{"name":"XPF_CONTEXT_INFO_32BITDEBUGREGS","features":[3]},{"name":"XPF_CONTEXT_INFO_64BITCONTEXT","features":[3]},{"name":"XPF_CONTEXT_INFO_64BITDEBUGREGS","features":[3]},{"name":"XPF_CONTEXT_INFO_FXSAVE","features":[3]},{"name":"XPF_CONTEXT_INFO_MMREGISTERS","features":[3]},{"name":"XPF_CONTEXT_INFO_MSRREGISTERS","features":[3]},{"name":"XPF_CONTEXT_INFO_UNCLASSIFIEDDATA","features":[3]},{"name":"XPF_MCA_SECTION_GUID","features":[3]},{"name":"XPF_MS_CHECK_ERRORTYPE_EXTERNAL","features":[3]},{"name":"XPF_MS_CHECK_ERRORTYPE_FRC","features":[3]},{"name":"XPF_MS_CHECK_ERRORTYPE_INTERNALUNCLASSIFIED","features":[3]},{"name":"XPF_MS_CHECK_ERRORTYPE_MCROMPARITY","features":[3]},{"name":"XPF_MS_CHECK_ERRORTYPE_NOERROR","features":[3]},{"name":"XPF_MS_CHECK_ERRORTYPE_UNCLASSIFIED","features":[3]},{"name":"XPF_PROCESSOR_ERROR_SECTION_GUID","features":[3]},{"name":"XPF_RECOVERY_INFO","features":[3,1]},{"name":"XPF_TLB_CHECK_OPERATION_DATAREAD","features":[3]},{"name":"XPF_TLB_CHECK_OPERATION_DATAWRITE","features":[3]},{"name":"XPF_TLB_CHECK_OPERATION_GENERIC","features":[3]},{"name":"XPF_TLB_CHECK_OPERATION_GENREAD","features":[3]},{"name":"XPF_TLB_CHECK_OPERATION_GENWRITE","features":[3]},{"name":"XPF_TLB_CHECK_OPERATION_INSTRUCTIONFETCH","features":[3]},{"name":"XPF_TLB_CHECK_OPERATION_PREFETCH","features":[3]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[3]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_GENERIC","features":[3]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[3]},{"name":"XSAVE_FORMAT","features":[3,30]},{"name":"XSTATE_CONTEXT","features":[3,30]},{"name":"XSTATE_SAVE","features":[3,30]},{"name":"ZONE_HEADER","features":[3,7]},{"name":"ZONE_SEGMENT_HEADER","features":[3,7]},{"name":"ZwAllocateLocallyUniqueId","features":[3,1]},{"name":"ZwCancelTimer","features":[3,1]},{"name":"ZwClose","features":[3,1]},{"name":"ZwCommitComplete","features":[3,1]},{"name":"ZwCommitEnlistment","features":[3,1]},{"name":"ZwCommitRegistryTransaction","features":[3,1]},{"name":"ZwCommitTransaction","features":[3,1]},{"name":"ZwCreateDirectoryObject","features":[2,3,1]},{"name":"ZwCreateEnlistment","features":[2,3,1]},{"name":"ZwCreateFile","features":[2,3,1,6]},{"name":"ZwCreateKey","features":[2,3,1]},{"name":"ZwCreateKeyTransacted","features":[2,3,1]},{"name":"ZwCreateRegistryTransaction","features":[2,3,1]},{"name":"ZwCreateResourceManager","features":[2,3,1]},{"name":"ZwCreateSection","features":[2,3,1]},{"name":"ZwCreateTimer","features":[2,3,1,7]},{"name":"ZwCreateTransaction","features":[2,3,1]},{"name":"ZwCreateTransactionManager","features":[2,3,1]},{"name":"ZwDeleteKey","features":[3,1]},{"name":"ZwDeleteValueKey","features":[3,1]},{"name":"ZwDeviceIoControlFile","features":[3,1,6]},{"name":"ZwDisplayString","features":[3,1]},{"name":"ZwEnumerateKey","features":[3,1]},{"name":"ZwEnumerateTransactionObject","features":[3,1,36]},{"name":"ZwEnumerateValueKey","features":[3,1]},{"name":"ZwFlushKey","features":[3,1]},{"name":"ZwGetNotificationResourceManager","features":[3,1,21]},{"name":"ZwLoadDriver","features":[3,1]},{"name":"ZwMakeTemporaryObject","features":[3,1]},{"name":"ZwMapViewOfSection","features":[3,1]},{"name":"ZwOpenEnlistment","features":[2,3,1]},{"name":"ZwOpenEvent","features":[2,3,1]},{"name":"ZwOpenFile","features":[2,3,1,6]},{"name":"ZwOpenKey","features":[2,3,1]},{"name":"ZwOpenKeyEx","features":[2,3,1]},{"name":"ZwOpenKeyTransacted","features":[2,3,1]},{"name":"ZwOpenKeyTransactedEx","features":[2,3,1]},{"name":"ZwOpenProcess","features":[2,3,1,34]},{"name":"ZwOpenResourceManager","features":[2,3,1]},{"name":"ZwOpenSection","features":[2,3,1]},{"name":"ZwOpenSymbolicLinkObject","features":[2,3,1]},{"name":"ZwOpenTimer","features":[2,3,1]},{"name":"ZwOpenTransaction","features":[2,3,1]},{"name":"ZwOpenTransactionManager","features":[2,3,1]},{"name":"ZwPowerInformation","features":[3,1,8]},{"name":"ZwPrePrepareComplete","features":[3,1]},{"name":"ZwPrePrepareEnlistment","features":[3,1]},{"name":"ZwPrepareComplete","features":[3,1]},{"name":"ZwPrepareEnlistment","features":[3,1]},{"name":"ZwQueryInformationByName","features":[2,5,3,1,6]},{"name":"ZwQueryInformationEnlistment","features":[3,1,36]},{"name":"ZwQueryInformationFile","features":[5,3,1,6]},{"name":"ZwQueryInformationResourceManager","features":[3,1,36]},{"name":"ZwQueryInformationTransaction","features":[3,1,36]},{"name":"ZwQueryInformationTransactionManager","features":[3,1,36]},{"name":"ZwQueryKey","features":[3,1]},{"name":"ZwQuerySymbolicLinkObject","features":[3,1]},{"name":"ZwQueryValueKey","features":[3,1]},{"name":"ZwReadFile","features":[3,1,6]},{"name":"ZwReadOnlyEnlistment","features":[3,1]},{"name":"ZwRecoverEnlistment","features":[3,1]},{"name":"ZwRecoverResourceManager","features":[3,1]},{"name":"ZwRecoverTransactionManager","features":[3,1]},{"name":"ZwRenameKey","features":[3,1]},{"name":"ZwRestoreKey","features":[3,1]},{"name":"ZwRollbackComplete","features":[3,1]},{"name":"ZwRollbackEnlistment","features":[3,1]},{"name":"ZwRollbackTransaction","features":[3,1]},{"name":"ZwRollforwardTransactionManager","features":[3,1]},{"name":"ZwSaveKey","features":[3,1]},{"name":"ZwSaveKeyEx","features":[3,1]},{"name":"ZwSetInformationEnlistment","features":[3,1,36]},{"name":"ZwSetInformationFile","features":[5,3,1,6]},{"name":"ZwSetInformationResourceManager","features":[3,1,36]},{"name":"ZwSetInformationTransaction","features":[3,1,36]},{"name":"ZwSetInformationTransactionManager","features":[3,1,36]},{"name":"ZwSetTimer","features":[3,1]},{"name":"ZwSetTimerEx","features":[3,1]},{"name":"ZwSetValueKey","features":[3,1]},{"name":"ZwSinglePhaseReject","features":[3,1]},{"name":"ZwTerminateProcess","features":[3,1]},{"name":"ZwUnloadDriver","features":[3,1]},{"name":"ZwUnmapViewOfSection","features":[3,1]},{"name":"ZwWriteFile","features":[3,1,6]},{"name":"_EXT_SET_PARAMETERS_V0","features":[3]},{"name":"_STRSAFE_USE_SECURE_CRT","features":[3]},{"name":"_WHEA_ERROR_SOURCE_CORRECT","features":[3,1,30]},{"name":"_WHEA_ERROR_SOURCE_CREATE_RECORD","features":[3,1,30]},{"name":"_WHEA_ERROR_SOURCE_INITIALIZE","features":[3,1,30]},{"name":"_WHEA_ERROR_SOURCE_RECOVER","features":[3,1]},{"name":"_WHEA_ERROR_SOURCE_UNINITIALIZE","features":[3]},{"name":"_WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[3,1]},{"name":"__guid_type","features":[3]},{"name":"__multiString_type","features":[3]},{"name":"__string_type","features":[3]},{"name":"pHalAssignSlotResources","features":[2,5,3,1,4,6,7,8]},{"name":"pHalEndMirroring","features":[3,1]},{"name":"pHalEndOfBoot","features":[3]},{"name":"pHalExamineMBR","features":[2,5,3,1,4,6,7,8]},{"name":"pHalFindBusAddressTranslation","features":[3,1]},{"name":"pHalGetAcpiTable","features":[3]},{"name":"pHalGetDmaAdapter","features":[2,5,3,1,4,6,7,8]},{"name":"pHalGetInterruptTranslator","features":[2,5,3,1,4,6,7,8]},{"name":"pHalGetPrmCache","features":[3,7]},{"name":"pHalHaltSystem","features":[3]},{"name":"pHalHandlerForBus","features":[2,3]},{"name":"pHalInitPnpDriver","features":[3,1]},{"name":"pHalInitPowerManagement","features":[3,1]},{"name":"pHalIoReadPartitionTable","features":[2,5,3,1,4,6,22,7,8]},{"name":"pHalIoSetPartitionInformation","features":[2,5,3,1,4,6,7,8]},{"name":"pHalIoWritePartitionTable","features":[2,5,3,1,4,6,22,7,8]},{"name":"pHalMirrorPhysicalMemory","features":[3,1]},{"name":"pHalMirrorVerify","features":[3,1]},{"name":"pHalQueryBusSlots","features":[2,3,1]},{"name":"pHalQuerySystemInformation","features":[3,1]},{"name":"pHalReferenceBusHandler","features":[2,3]},{"name":"pHalResetDisplay","features":[3,1]},{"name":"pHalSetPciErrorHandlerCallback","features":[3]},{"name":"pHalSetSystemInformation","features":[3,1]},{"name":"pHalStartMirroring","features":[3,1]},{"name":"pHalTranslateBusAddress","features":[3,1]},{"name":"pHalVectorToIDTEntry","features":[3]},{"name":"pKdCheckPowerButton","features":[3]},{"name":"pKdEnumerateDebuggingDevices","features":[3,1]},{"name":"pKdGetAcpiTablePhase0","features":[3]},{"name":"pKdGetPciDataByOffset","features":[3]},{"name":"pKdMapPhysicalMemory64","features":[3,1]},{"name":"pKdReleaseIntegratedDeviceForDebugging","features":[3,1]},{"name":"pKdReleasePciDeviceForDebugging","features":[3,1]},{"name":"pKdSetPciDataByOffset","features":[3]},{"name":"pKdSetupIntegratedDeviceForDebugging","features":[3,1]},{"name":"pKdSetupPciDeviceForDebugging","features":[3,1]},{"name":"pKdUnmapVirtualAddress","features":[3,1]},{"name":"vDbgPrintEx","features":[3]},{"name":"vDbgPrintExWithPrefix","features":[3]}],"351":[{"name":"MaxProcessInfoClass","features":[38]},{"name":"MaxThreadInfoClass","features":[38]},{"name":"NtQueryInformationProcess","features":[38,1]},{"name":"NtQueryInformationThread","features":[38,1]},{"name":"NtSetInformationThread","features":[38,1]},{"name":"NtWaitForSingleObject","features":[38,1]},{"name":"PROCESSINFOCLASS","features":[38]},{"name":"ProcessAccessToken","features":[38]},{"name":"ProcessAffinityMask","features":[38]},{"name":"ProcessAffinityUpdateMode","features":[38]},{"name":"ProcessBasePriority","features":[38]},{"name":"ProcessBasicInformation","features":[38]},{"name":"ProcessBreakOnTermination","features":[38]},{"name":"ProcessCheckStackExtentsMode","features":[38]},{"name":"ProcessCommandLineInformation","features":[38]},{"name":"ProcessCommitReleaseInformation","features":[38]},{"name":"ProcessCookie","features":[38]},{"name":"ProcessCycleTime","features":[38]},{"name":"ProcessDebugFlags","features":[38]},{"name":"ProcessDebugObjectHandle","features":[38]},{"name":"ProcessDebugPort","features":[38]},{"name":"ProcessDefaultHardErrorMode","features":[38]},{"name":"ProcessDeviceMap","features":[38]},{"name":"ProcessDynamicFunctionTableInformation","features":[38]},{"name":"ProcessEnableAlignmentFaultFixup","features":[38]},{"name":"ProcessEnergyTrackingState","features":[38]},{"name":"ProcessExceptionPort","features":[38]},{"name":"ProcessExecuteFlags","features":[38]},{"name":"ProcessFaultInformation","features":[38]},{"name":"ProcessForegroundInformation","features":[38]},{"name":"ProcessGroupInformation","features":[38]},{"name":"ProcessHandleCheckingMode","features":[38]},{"name":"ProcessHandleCount","features":[38]},{"name":"ProcessHandleInformation","features":[38]},{"name":"ProcessHandleTable","features":[38]},{"name":"ProcessHandleTracing","features":[38]},{"name":"ProcessImageFileMapping","features":[38]},{"name":"ProcessImageFileName","features":[38]},{"name":"ProcessImageFileNameWin32","features":[38]},{"name":"ProcessImageInformation","features":[38]},{"name":"ProcessInPrivate","features":[38]},{"name":"ProcessInstrumentationCallback","features":[38]},{"name":"ProcessIoCounters","features":[38]},{"name":"ProcessIoPortHandlers","features":[38]},{"name":"ProcessIoPriority","features":[38]},{"name":"ProcessKeepAliveCount","features":[38]},{"name":"ProcessLUIDDeviceMapsEnabled","features":[38]},{"name":"ProcessLdtInformation","features":[38]},{"name":"ProcessLdtSize","features":[38]},{"name":"ProcessMemoryAllocationMode","features":[38]},{"name":"ProcessMemoryExhaustion","features":[38]},{"name":"ProcessMitigationPolicy","features":[38]},{"name":"ProcessOwnerInformation","features":[38]},{"name":"ProcessPagePriority","features":[38]},{"name":"ProcessPooledUsageAndLimits","features":[38]},{"name":"ProcessPriorityBoost","features":[38]},{"name":"ProcessPriorityClass","features":[38]},{"name":"ProcessProtectionInformation","features":[38]},{"name":"ProcessQuotaLimits","features":[38]},{"name":"ProcessRaisePriority","features":[38]},{"name":"ProcessRaiseUMExceptionOnInvalidHandleClose","features":[38]},{"name":"ProcessReserved1Information","features":[38]},{"name":"ProcessReserved2Information","features":[38]},{"name":"ProcessRevokeFileHandles","features":[38]},{"name":"ProcessSessionInformation","features":[38]},{"name":"ProcessSubsystemInformation","features":[38]},{"name":"ProcessSubsystemProcess","features":[38]},{"name":"ProcessTelemetryIdInformation","features":[38]},{"name":"ProcessThreadStackAllocation","features":[38]},{"name":"ProcessTimes","features":[38]},{"name":"ProcessTlsInformation","features":[38]},{"name":"ProcessTokenVirtualizationEnabled","features":[38]},{"name":"ProcessUserModeIOPL","features":[38]},{"name":"ProcessVmCounters","features":[38]},{"name":"ProcessWin32kSyscallFilterInformation","features":[38]},{"name":"ProcessWindowInformation","features":[38]},{"name":"ProcessWorkingSetControl","features":[38]},{"name":"ProcessWorkingSetWatch","features":[38]},{"name":"ProcessWorkingSetWatchEx","features":[38]},{"name":"ProcessWow64Information","features":[38]},{"name":"ProcessWx86Information","features":[38]},{"name":"THREADINFOCLASS","features":[38]},{"name":"ThreadActualBasePriority","features":[38]},{"name":"ThreadActualGroupAffinity","features":[38]},{"name":"ThreadAffinityMask","features":[38]},{"name":"ThreadAmILastThread","features":[38]},{"name":"ThreadBasePriority","features":[38]},{"name":"ThreadBasicInformation","features":[38]},{"name":"ThreadBreakOnTermination","features":[38]},{"name":"ThreadCSwitchMon","features":[38]},{"name":"ThreadCSwitchPmu","features":[38]},{"name":"ThreadCounterProfiling","features":[38]},{"name":"ThreadCpuAccountingInformation","features":[38]},{"name":"ThreadCycleTime","features":[38]},{"name":"ThreadDescriptorTableEntry","features":[38]},{"name":"ThreadDynamicCodePolicyInfo","features":[38]},{"name":"ThreadEnableAlignmentFaultFixup","features":[38]},{"name":"ThreadEventPair_Reusable","features":[38]},{"name":"ThreadGroupInformation","features":[38]},{"name":"ThreadHideFromDebugger","features":[38]},{"name":"ThreadIdealProcessor","features":[38]},{"name":"ThreadIdealProcessorEx","features":[38]},{"name":"ThreadImpersonationToken","features":[38]},{"name":"ThreadIoPriority","features":[38]},{"name":"ThreadIsIoPending","features":[38]},{"name":"ThreadIsTerminated","features":[38]},{"name":"ThreadLastSystemCall","features":[38]},{"name":"ThreadPagePriority","features":[38]},{"name":"ThreadPerformanceCount","features":[38]},{"name":"ThreadPriority","features":[38]},{"name":"ThreadPriorityBoost","features":[38]},{"name":"ThreadQuerySetWin32StartAddress","features":[38]},{"name":"ThreadSetTlsArrayAddress","features":[38]},{"name":"ThreadSubsystemInformation","features":[38]},{"name":"ThreadSuspendCount","features":[38]},{"name":"ThreadSwitchLegacyState","features":[38]},{"name":"ThreadTebInformation","features":[38]},{"name":"ThreadTimes","features":[38]},{"name":"ThreadUmsInformation","features":[38]},{"name":"ThreadWow64Context","features":[38]},{"name":"ThreadZeroTlsCell","features":[38]},{"name":"ZwSetInformationThread","features":[38,1]}],"363":[{"name":"CLSID_IITCmdInt","features":[39]},{"name":"CLSID_IITDatabase","features":[39]},{"name":"CLSID_IITDatabaseLocal","features":[39]},{"name":"CLSID_IITGroupUpdate","features":[39]},{"name":"CLSID_IITIndexBuild","features":[39]},{"name":"CLSID_IITPropList","features":[39]},{"name":"CLSID_IITResultSet","features":[39]},{"name":"CLSID_IITSvMgr","features":[39]},{"name":"CLSID_IITWWFilterBuild","features":[39]},{"name":"CLSID_IITWordWheel","features":[39]},{"name":"CLSID_IITWordWheelLocal","features":[39]},{"name":"CLSID_IITWordWheelUpdate","features":[39]},{"name":"CLSID_ITEngStemmer","features":[39]},{"name":"CLSID_ITStdBreaker","features":[39]},{"name":"COLUMNSTATUS","features":[39]},{"name":"CProperty","features":[39,1]},{"name":"E_ALL_WILD","features":[39]},{"name":"E_ALREADYINIT","features":[39]},{"name":"E_ALREADYOPEN","features":[39]},{"name":"E_ASSERT","features":[39]},{"name":"E_BADBREAKER","features":[39]},{"name":"E_BADFILE","features":[39]},{"name":"E_BADFILTERSIZE","features":[39]},{"name":"E_BADFORMAT","features":[39]},{"name":"E_BADINDEXFLAGS","features":[39]},{"name":"E_BADPARAM","features":[39]},{"name":"E_BADRANGEOP","features":[39]},{"name":"E_BADVALUE","features":[39]},{"name":"E_BADVERSION","features":[39]},{"name":"E_CANTFINDDLL","features":[39]},{"name":"E_DISKFULL","features":[39]},{"name":"E_DUPLICATE","features":[39]},{"name":"E_EXPECTEDTERM","features":[39]},{"name":"E_FILECLOSE","features":[39]},{"name":"E_FILECREATE","features":[39]},{"name":"E_FILEDELETE","features":[39]},{"name":"E_FILEINVALID","features":[39]},{"name":"E_FILENOTFOUND","features":[39]},{"name":"E_FILEREAD","features":[39]},{"name":"E_FILESEEK","features":[39]},{"name":"E_FILEWRITE","features":[39]},{"name":"E_GETLASTERROR","features":[39]},{"name":"E_GROUPIDTOOBIG","features":[39]},{"name":"E_INTERRUPT","features":[39]},{"name":"E_INVALIDSTATE","features":[39]},{"name":"E_MISSINGPROP","features":[39]},{"name":"E_MISSLPAREN","features":[39]},{"name":"E_MISSQUOTE","features":[39]},{"name":"E_MISSRPAREN","features":[39]},{"name":"E_NAMETOOLONG","features":[39]},{"name":"E_NOHANDLE","features":[39]},{"name":"E_NOKEYPROP","features":[39]},{"name":"E_NOMERGEDDATA","features":[39]},{"name":"E_NOPERMISSION","features":[39]},{"name":"E_NOSTEMMER","features":[39]},{"name":"E_NOTEXIST","features":[39]},{"name":"E_NOTFOUND","features":[39]},{"name":"E_NOTINIT","features":[39]},{"name":"E_NOTOPEN","features":[39]},{"name":"E_NOTSUPPORTED","features":[39]},{"name":"E_NULLQUERY","features":[39]},{"name":"E_OUTOFRANGE","features":[39]},{"name":"E_PROPLISTEMPTY","features":[39]},{"name":"E_PROPLISTNOTEMPTY","features":[39]},{"name":"E_RESULTSETEMPTY","features":[39]},{"name":"E_STOPWORD","features":[39]},{"name":"E_TOODEEP","features":[39]},{"name":"E_TOOMANYCOLUMNS","features":[39]},{"name":"E_TOOMANYDUPS","features":[39]},{"name":"E_TOOMANYOBJECTS","features":[39]},{"name":"E_TOOMANYTITLES","features":[39]},{"name":"E_TOOMANYTOPICS","features":[39]},{"name":"E_TREETOOBIG","features":[39]},{"name":"E_UNKNOWN_TRANSPORT","features":[39]},{"name":"E_UNMATCHEDTYPE","features":[39]},{"name":"E_UNSUPPORTED_TRANSPORT","features":[39]},{"name":"E_WILD_IN_DTYPE","features":[39]},{"name":"E_WORDTOOLONG","features":[39]},{"name":"HHACT_BACK","features":[39]},{"name":"HHACT_CONTRACT","features":[39]},{"name":"HHACT_CUSTOMIZE","features":[39]},{"name":"HHACT_EXPAND","features":[39]},{"name":"HHACT_FORWARD","features":[39]},{"name":"HHACT_HIGHLIGHT","features":[39]},{"name":"HHACT_HOME","features":[39]},{"name":"HHACT_JUMP1","features":[39]},{"name":"HHACT_JUMP2","features":[39]},{"name":"HHACT_LAST_ENUM","features":[39]},{"name":"HHACT_NOTES","features":[39]},{"name":"HHACT_OPTIONS","features":[39]},{"name":"HHACT_PRINT","features":[39]},{"name":"HHACT_REFRESH","features":[39]},{"name":"HHACT_STOP","features":[39]},{"name":"HHACT_SYNC","features":[39]},{"name":"HHACT_TAB_CONTENTS","features":[39]},{"name":"HHACT_TAB_FAVORITES","features":[39]},{"name":"HHACT_TAB_HISTORY","features":[39]},{"name":"HHACT_TAB_INDEX","features":[39]},{"name":"HHACT_TAB_SEARCH","features":[39]},{"name":"HHACT_TOC_NEXT","features":[39]},{"name":"HHACT_TOC_PREV","features":[39]},{"name":"HHACT_ZOOM","features":[39]},{"name":"HHNTRACK","features":[39,1,40]},{"name":"HHN_FIRST","features":[39]},{"name":"HHN_LAST","features":[39]},{"name":"HHN_NAVCOMPLETE","features":[39]},{"name":"HHN_NOTIFY","features":[39,1,40]},{"name":"HHN_TRACK","features":[39]},{"name":"HHN_WINDOW_CREATE","features":[39]},{"name":"HHWIN_BUTTON_BACK","features":[39]},{"name":"HHWIN_BUTTON_BROWSE_BCK","features":[39]},{"name":"HHWIN_BUTTON_BROWSE_FWD","features":[39]},{"name":"HHWIN_BUTTON_CONTENTS","features":[39]},{"name":"HHWIN_BUTTON_EXPAND","features":[39]},{"name":"HHWIN_BUTTON_FAVORITES","features":[39]},{"name":"HHWIN_BUTTON_FORWARD","features":[39]},{"name":"HHWIN_BUTTON_HISTORY","features":[39]},{"name":"HHWIN_BUTTON_HOME","features":[39]},{"name":"HHWIN_BUTTON_INDEX","features":[39]},{"name":"HHWIN_BUTTON_JUMP1","features":[39]},{"name":"HHWIN_BUTTON_JUMP2","features":[39]},{"name":"HHWIN_BUTTON_NOTES","features":[39]},{"name":"HHWIN_BUTTON_OPTIONS","features":[39]},{"name":"HHWIN_BUTTON_PRINT","features":[39]},{"name":"HHWIN_BUTTON_REFRESH","features":[39]},{"name":"HHWIN_BUTTON_SEARCH","features":[39]},{"name":"HHWIN_BUTTON_STOP","features":[39]},{"name":"HHWIN_BUTTON_SYNC","features":[39]},{"name":"HHWIN_BUTTON_TOC_NEXT","features":[39]},{"name":"HHWIN_BUTTON_TOC_PREV","features":[39]},{"name":"HHWIN_BUTTON_ZOOM","features":[39]},{"name":"HHWIN_NAVTAB_BOTTOM","features":[39]},{"name":"HHWIN_NAVTAB_LEFT","features":[39]},{"name":"HHWIN_NAVTAB_TOP","features":[39]},{"name":"HHWIN_NAVTYPE_AUTHOR","features":[39]},{"name":"HHWIN_NAVTYPE_CUSTOM_FIRST","features":[39]},{"name":"HHWIN_NAVTYPE_FAVORITES","features":[39]},{"name":"HHWIN_NAVTYPE_HISTORY","features":[39]},{"name":"HHWIN_NAVTYPE_INDEX","features":[39]},{"name":"HHWIN_NAVTYPE_SEARCH","features":[39]},{"name":"HHWIN_NAVTYPE_TOC","features":[39]},{"name":"HHWIN_PARAM_CUR_TAB","features":[39]},{"name":"HHWIN_PARAM_EXPANSION","features":[39]},{"name":"HHWIN_PARAM_EXSTYLES","features":[39]},{"name":"HHWIN_PARAM_HISTORY_COUNT","features":[39]},{"name":"HHWIN_PARAM_INFOTYPES","features":[39]},{"name":"HHWIN_PARAM_NAV_WIDTH","features":[39]},{"name":"HHWIN_PARAM_PROPERTIES","features":[39]},{"name":"HHWIN_PARAM_RECT","features":[39]},{"name":"HHWIN_PARAM_SHOWSTATE","features":[39]},{"name":"HHWIN_PARAM_STYLES","features":[39]},{"name":"HHWIN_PARAM_TABORDER","features":[39]},{"name":"HHWIN_PARAM_TABPOS","features":[39]},{"name":"HHWIN_PARAM_TB_FLAGS","features":[39]},{"name":"HHWIN_PROP_AUTO_SYNC","features":[39]},{"name":"HHWIN_PROP_CHANGE_TITLE","features":[39]},{"name":"HHWIN_PROP_MENU","features":[39]},{"name":"HHWIN_PROP_NAV_ONLY_WIN","features":[39]},{"name":"HHWIN_PROP_NODEF_EXSTYLES","features":[39]},{"name":"HHWIN_PROP_NODEF_STYLES","features":[39]},{"name":"HHWIN_PROP_NOTB_TEXT","features":[39]},{"name":"HHWIN_PROP_NOTITLEBAR","features":[39]},{"name":"HHWIN_PROP_NO_TOOLBAR","features":[39]},{"name":"HHWIN_PROP_ONTOP","features":[39]},{"name":"HHWIN_PROP_POST_QUIT","features":[39]},{"name":"HHWIN_PROP_TAB_ADVSEARCH","features":[39]},{"name":"HHWIN_PROP_TAB_AUTOHIDESHOW","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM1","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM2","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM3","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM4","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM5","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM6","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM7","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM8","features":[39]},{"name":"HHWIN_PROP_TAB_CUSTOM9","features":[39]},{"name":"HHWIN_PROP_TAB_FAVORITES","features":[39]},{"name":"HHWIN_PROP_TAB_HISTORY","features":[39]},{"name":"HHWIN_PROP_TAB_SEARCH","features":[39]},{"name":"HHWIN_PROP_TRACKING","features":[39]},{"name":"HHWIN_PROP_TRI_PANE","features":[39]},{"name":"HHWIN_PROP_USER_POS","features":[39]},{"name":"HHWIN_TB_MARGIN","features":[39]},{"name":"HH_AKLINK","features":[39,1]},{"name":"HH_ALINK_LOOKUP","features":[39]},{"name":"HH_CLOSE_ALL","features":[39]},{"name":"HH_DISPLAY_INDEX","features":[39]},{"name":"HH_DISPLAY_SEARCH","features":[39]},{"name":"HH_DISPLAY_TEXT_POPUP","features":[39]},{"name":"HH_DISPLAY_TOC","features":[39]},{"name":"HH_DISPLAY_TOPIC","features":[39]},{"name":"HH_ENUM_CAT","features":[39]},{"name":"HH_ENUM_CATEGORY","features":[39]},{"name":"HH_ENUM_CATEGORY_IT","features":[39]},{"name":"HH_ENUM_INFO_TYPE","features":[39]},{"name":"HH_ENUM_IT","features":[39]},{"name":"HH_FTS_DEFAULT_PROXIMITY","features":[39]},{"name":"HH_FTS_QUERY","features":[39,1]},{"name":"HH_GET_LAST_ERROR","features":[39]},{"name":"HH_GET_WIN_HANDLE","features":[39]},{"name":"HH_GET_WIN_TYPE","features":[39]},{"name":"HH_GLOBAL_PROPERTY","features":[39,1,41,42]},{"name":"HH_GPROPID","features":[39]},{"name":"HH_GPROPID_CONTENT_LANGUAGE","features":[39]},{"name":"HH_GPROPID_CURRENT_SUBSET","features":[39]},{"name":"HH_GPROPID_SINGLETHREAD","features":[39]},{"name":"HH_GPROPID_TOOLBAR_MARGIN","features":[39]},{"name":"HH_GPROPID_UI_LANGUAGE","features":[39]},{"name":"HH_HELP_CONTEXT","features":[39]},{"name":"HH_HELP_FINDER","features":[39]},{"name":"HH_INITIALIZE","features":[39]},{"name":"HH_KEYWORD_LOOKUP","features":[39]},{"name":"HH_MAX_TABS","features":[39]},{"name":"HH_MAX_TABS_CUSTOM","features":[39]},{"name":"HH_POPUP","features":[39,1]},{"name":"HH_PRETRANSLATEMESSAGE","features":[39]},{"name":"HH_RESERVED1","features":[39]},{"name":"HH_RESERVED2","features":[39]},{"name":"HH_RESERVED3","features":[39]},{"name":"HH_RESET_IT_FILTER","features":[39]},{"name":"HH_SAFE_DISPLAY_TOPIC","features":[39]},{"name":"HH_SET_EXCLUSIVE_FILTER","features":[39]},{"name":"HH_SET_GLOBAL_PROPERTY","features":[39]},{"name":"HH_SET_INCLUSIVE_FILTER","features":[39]},{"name":"HH_SET_INFOTYPE","features":[39]},{"name":"HH_SET_INFO_TYPE","features":[39]},{"name":"HH_SET_QUERYSERVICE","features":[39]},{"name":"HH_SET_WIN_TYPE","features":[39]},{"name":"HH_SYNC","features":[39]},{"name":"HH_TAB_AUTHOR","features":[39]},{"name":"HH_TAB_CONTENTS","features":[39]},{"name":"HH_TAB_CUSTOM_FIRST","features":[39]},{"name":"HH_TAB_CUSTOM_LAST","features":[39]},{"name":"HH_TAB_FAVORITES","features":[39]},{"name":"HH_TAB_HISTORY","features":[39]},{"name":"HH_TAB_INDEX","features":[39]},{"name":"HH_TAB_SEARCH","features":[39]},{"name":"HH_TP_HELP_CONTEXTMENU","features":[39]},{"name":"HH_TP_HELP_WM_HELP","features":[39]},{"name":"HH_UNINITIALIZE","features":[39]},{"name":"HH_WINTYPE","features":[39,1]},{"name":"HTML_HELP_COMMAND","features":[39]},{"name":"HtmlHelpA","features":[39,1]},{"name":"HtmlHelpW","features":[39,1]},{"name":"IDTB_BACK","features":[39]},{"name":"IDTB_BROWSE_BACK","features":[39]},{"name":"IDTB_BROWSE_FWD","features":[39]},{"name":"IDTB_CONTENTS","features":[39]},{"name":"IDTB_CONTRACT","features":[39]},{"name":"IDTB_CUSTOMIZE","features":[39]},{"name":"IDTB_EXPAND","features":[39]},{"name":"IDTB_FAVORITES","features":[39]},{"name":"IDTB_FORWARD","features":[39]},{"name":"IDTB_HISTORY","features":[39]},{"name":"IDTB_HOME","features":[39]},{"name":"IDTB_INDEX","features":[39]},{"name":"IDTB_JUMP1","features":[39]},{"name":"IDTB_JUMP2","features":[39]},{"name":"IDTB_NOTES","features":[39]},{"name":"IDTB_OPTIONS","features":[39]},{"name":"IDTB_PRINT","features":[39]},{"name":"IDTB_REFRESH","features":[39]},{"name":"IDTB_SEARCH","features":[39]},{"name":"IDTB_STOP","features":[39]},{"name":"IDTB_SYNC","features":[39]},{"name":"IDTB_TOC_NEXT","features":[39]},{"name":"IDTB_TOC_PREV","features":[39]},{"name":"IDTB_ZOOM","features":[39]},{"name":"IITDatabase","features":[39]},{"name":"IITPropList","features":[39]},{"name":"IITResultSet","features":[39]},{"name":"IITWBC_BREAK_ACCEPT_WILDCARDS","features":[39]},{"name":"IITWBC_BREAK_AND_STEM","features":[39]},{"name":"IStemSink","features":[39]},{"name":"IStemmerConfig","features":[39]},{"name":"ITWW_CBKEY_MAX","features":[39]},{"name":"ITWW_OPEN_NOCONNECT","features":[39]},{"name":"IT_EXCLUSIVE","features":[39]},{"name":"IT_HIDDEN","features":[39]},{"name":"IT_INCLUSIVE","features":[39]},{"name":"IWordBreakerConfig","features":[39]},{"name":"MAX_COLUMNS","features":[39]},{"name":"PFNCOLHEAPFREE","features":[39]},{"name":"PRIORITY","features":[39]},{"name":"PRIORITY_HIGH","features":[39]},{"name":"PRIORITY_LOW","features":[39]},{"name":"PRIORITY_NORMAL","features":[39]},{"name":"PROP_ADD","features":[39]},{"name":"PROP_DELETE","features":[39]},{"name":"PROP_UPDATE","features":[39]},{"name":"ROWSTATUS","features":[39]},{"name":"STDPROP_DISPLAYKEY","features":[39]},{"name":"STDPROP_INDEX_BREAK","features":[39]},{"name":"STDPROP_INDEX_DTYPE","features":[39]},{"name":"STDPROP_INDEX_LENGTH","features":[39]},{"name":"STDPROP_INDEX_TERM","features":[39]},{"name":"STDPROP_INDEX_TERM_RAW_LENGTH","features":[39]},{"name":"STDPROP_INDEX_TEXT","features":[39]},{"name":"STDPROP_INDEX_VFLD","features":[39]},{"name":"STDPROP_KEY","features":[39]},{"name":"STDPROP_SORTKEY","features":[39]},{"name":"STDPROP_SORTORDINAL","features":[39]},{"name":"STDPROP_TITLE","features":[39]},{"name":"STDPROP_UID","features":[39]},{"name":"STDPROP_USERDATA","features":[39]},{"name":"STDPROP_USERPROP_BASE","features":[39]},{"name":"STDPROP_USERPROP_MAX","features":[39]},{"name":"SZ_WWDEST_GLOBAL","features":[39]},{"name":"SZ_WWDEST_KEY","features":[39]},{"name":"SZ_WWDEST_OCC","features":[39]},{"name":"TYPE_POINTER","features":[39]},{"name":"TYPE_STRING","features":[39]},{"name":"TYPE_VALUE","features":[39]}],"364":[{"name":"DRMACTSERVINFOVERSION","features":[43]},{"name":"DRMATTESTTYPE","features":[43]},{"name":"DRMATTESTTYPE_FULLENVIRONMENT","features":[43]},{"name":"DRMATTESTTYPE_HASHONLY","features":[43]},{"name":"DRMAcquireAdvisories","features":[43]},{"name":"DRMAcquireIssuanceLicenseTemplate","features":[43]},{"name":"DRMAcquireLicense","features":[43]},{"name":"DRMActivate","features":[43,1]},{"name":"DRMAddLicense","features":[43]},{"name":"DRMAddRightWithUser","features":[43]},{"name":"DRMAttest","features":[43]},{"name":"DRMBINDINGFLAGS_IGNORE_VALIDITY_INTERVALS","features":[43]},{"name":"DRMBOUNDLICENSEPARAMS","features":[43]},{"name":"DRMBOUNDLICENSEPARAMSVERSION","features":[43]},{"name":"DRMCALLBACK","features":[43]},{"name":"DRMCALLBACKVERSION","features":[43]},{"name":"DRMCLIENTSTRUCTVERSION","features":[43]},{"name":"DRMCheckSecurity","features":[43]},{"name":"DRMClearAllRights","features":[43]},{"name":"DRMCloseEnvironmentHandle","features":[43]},{"name":"DRMCloseHandle","features":[43]},{"name":"DRMClosePubHandle","features":[43]},{"name":"DRMCloseQueryHandle","features":[43]},{"name":"DRMCloseSession","features":[43]},{"name":"DRMConstructCertificateChain","features":[43]},{"name":"DRMCreateBoundLicense","features":[43]},{"name":"DRMCreateClientSession","features":[43]},{"name":"DRMCreateEnablingBitsDecryptor","features":[43]},{"name":"DRMCreateEnablingBitsEncryptor","features":[43]},{"name":"DRMCreateEnablingPrincipal","features":[43]},{"name":"DRMCreateIssuanceLicense","features":[43,1]},{"name":"DRMCreateLicenseStorageSession","features":[43]},{"name":"DRMCreateRight","features":[43,1]},{"name":"DRMCreateUser","features":[43]},{"name":"DRMDecode","features":[43]},{"name":"DRMDeconstructCertificateChain","features":[43]},{"name":"DRMDecrypt","features":[43]},{"name":"DRMDeleteLicense","features":[43]},{"name":"DRMDuplicateEnvironmentHandle","features":[43]},{"name":"DRMDuplicateHandle","features":[43]},{"name":"DRMDuplicatePubHandle","features":[43]},{"name":"DRMDuplicateSession","features":[43]},{"name":"DRMENCODINGTYPE","features":[43]},{"name":"DRMENCODINGTYPE_BASE64","features":[43]},{"name":"DRMENCODINGTYPE_LONG","features":[43]},{"name":"DRMENCODINGTYPE_RAW","features":[43]},{"name":"DRMENCODINGTYPE_STRING","features":[43]},{"name":"DRMENCODINGTYPE_TIME","features":[43]},{"name":"DRMENCODINGTYPE_UINT","features":[43]},{"name":"DRMENVHANDLE_INVALID","features":[43]},{"name":"DRMEncode","features":[43]},{"name":"DRMEncrypt","features":[43]},{"name":"DRMEnumerateLicense","features":[43,1]},{"name":"DRMGLOBALOPTIONS","features":[43]},{"name":"DRMGLOBALOPTIONS_USE_SERVERSECURITYPROCESSOR","features":[43]},{"name":"DRMGLOBALOPTIONS_USE_WINHTTP","features":[43]},{"name":"DRMGetApplicationSpecificData","features":[43]},{"name":"DRMGetBoundLicenseAttribute","features":[43]},{"name":"DRMGetBoundLicenseAttributeCount","features":[43]},{"name":"DRMGetBoundLicenseObject","features":[43]},{"name":"DRMGetBoundLicenseObjectCount","features":[43]},{"name":"DRMGetCertificateChainCount","features":[43]},{"name":"DRMGetClientVersion","features":[43]},{"name":"DRMGetEnvironmentInfo","features":[43]},{"name":"DRMGetInfo","features":[43]},{"name":"DRMGetIntervalTime","features":[43]},{"name":"DRMGetIssuanceLicenseInfo","features":[43,1]},{"name":"DRMGetIssuanceLicenseTemplate","features":[43]},{"name":"DRMGetMetaData","features":[43]},{"name":"DRMGetNameAndDescription","features":[43]},{"name":"DRMGetOwnerLicense","features":[43]},{"name":"DRMGetProcAddress","features":[43,1]},{"name":"DRMGetRevocationPoint","features":[43,1]},{"name":"DRMGetRightExtendedInfo","features":[43]},{"name":"DRMGetRightInfo","features":[43,1]},{"name":"DRMGetSecurityProvider","features":[43]},{"name":"DRMGetServiceLocation","features":[43]},{"name":"DRMGetSignedIssuanceLicense","features":[43]},{"name":"DRMGetSignedIssuanceLicenseEx","features":[43]},{"name":"DRMGetTime","features":[43,1]},{"name":"DRMGetUnboundLicenseAttribute","features":[43]},{"name":"DRMGetUnboundLicenseAttributeCount","features":[43]},{"name":"DRMGetUnboundLicenseObject","features":[43]},{"name":"DRMGetUnboundLicenseObjectCount","features":[43]},{"name":"DRMGetUsagePolicy","features":[43,1]},{"name":"DRMGetUserInfo","features":[43]},{"name":"DRMGetUserRights","features":[43]},{"name":"DRMGetUsers","features":[43]},{"name":"DRMHANDLE_INVALID","features":[43]},{"name":"DRMHSESSION_INVALID","features":[43]},{"name":"DRMID","features":[43]},{"name":"DRMIDVERSION","features":[43]},{"name":"DRMInitEnvironment","features":[43]},{"name":"DRMIsActivated","features":[43]},{"name":"DRMIsWindowProtected","features":[43,1]},{"name":"DRMLICENSEACQDATAVERSION","features":[43]},{"name":"DRMLoadLibrary","features":[43]},{"name":"DRMPUBHANDLE_INVALID","features":[43]},{"name":"DRMParseUnboundLicense","features":[43]},{"name":"DRMQUERYHANDLE_INVALID","features":[43]},{"name":"DRMRegisterContent","features":[43,1]},{"name":"DRMRegisterProtectedWindow","features":[43,1]},{"name":"DRMRegisterRevocationList","features":[43]},{"name":"DRMRepair","features":[43]},{"name":"DRMSECURITYPROVIDERTYPE","features":[43]},{"name":"DRMSECURITYPROVIDERTYPE_SOFTWARESECREP","features":[43]},{"name":"DRMSPECTYPE","features":[43]},{"name":"DRMSPECTYPE_FILENAME","features":[43]},{"name":"DRMSPECTYPE_UNKNOWN","features":[43]},{"name":"DRMSetApplicationSpecificData","features":[43,1]},{"name":"DRMSetGlobalOptions","features":[43]},{"name":"DRMSetIntervalTime","features":[43]},{"name":"DRMSetMetaData","features":[43]},{"name":"DRMSetNameAndDescription","features":[43,1]},{"name":"DRMSetRevocationPoint","features":[43,1]},{"name":"DRMSetUsagePolicy","features":[43,1]},{"name":"DRMTIMETYPE","features":[43]},{"name":"DRMTIMETYPE_SYSTEMLOCAL","features":[43]},{"name":"DRMTIMETYPE_SYSTEMUTC","features":[43]},{"name":"DRMVerify","features":[43]},{"name":"DRM_ACTIVATE_CANCEL","features":[43]},{"name":"DRM_ACTIVATE_DELAYED","features":[43]},{"name":"DRM_ACTIVATE_GROUPIDENTITY","features":[43]},{"name":"DRM_ACTIVATE_MACHINE","features":[43]},{"name":"DRM_ACTIVATE_SHARED_GROUPIDENTITY","features":[43]},{"name":"DRM_ACTIVATE_SILENT","features":[43]},{"name":"DRM_ACTIVATE_TEMPORARY","features":[43]},{"name":"DRM_ACTSERV_INFO","features":[43]},{"name":"DRM_ADD_LICENSE_NOPERSIST","features":[43]},{"name":"DRM_ADD_LICENSE_PERSIST","features":[43]},{"name":"DRM_AILT_CANCEL","features":[43]},{"name":"DRM_AILT_NONSILENT","features":[43]},{"name":"DRM_AILT_OBTAIN_ALL","features":[43]},{"name":"DRM_AL_CANCEL","features":[43]},{"name":"DRM_AL_FETCHNOADVISORY","features":[43]},{"name":"DRM_AL_NONSILENT","features":[43]},{"name":"DRM_AL_NOPERSIST","features":[43]},{"name":"DRM_AL_NOUI","features":[43]},{"name":"DRM_AUTO_GENERATE_KEY","features":[43]},{"name":"DRM_CLIENT_VERSION_INFO","features":[43]},{"name":"DRM_DEFAULTGROUPIDTYPE_PASSPORT","features":[43]},{"name":"DRM_DEFAULTGROUPIDTYPE_WINDOWSAUTH","features":[43]},{"name":"DRM_DISTRIBUTION_POINT_INFO","features":[43]},{"name":"DRM_DISTRIBUTION_POINT_LICENSE_ACQUISITION","features":[43]},{"name":"DRM_DISTRIBUTION_POINT_PUBLISHING","features":[43]},{"name":"DRM_DISTRIBUTION_POINT_REFERRAL_INFO","features":[43]},{"name":"DRM_EL_CLIENTLICENSOR","features":[43]},{"name":"DRM_EL_CLIENTLICENSOR_LID","features":[43]},{"name":"DRM_EL_EUL","features":[43]},{"name":"DRM_EL_EUL_LID","features":[43]},{"name":"DRM_EL_EXPIRED","features":[43]},{"name":"DRM_EL_GROUPIDENTITY","features":[43]},{"name":"DRM_EL_GROUPIDENTITY_LID","features":[43]},{"name":"DRM_EL_GROUPIDENTITY_NAME","features":[43]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE","features":[43]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE_LID","features":[43]},{"name":"DRM_EL_ISSUERNAME","features":[43]},{"name":"DRM_EL_MACHINE","features":[43]},{"name":"DRM_EL_REVOCATIONLIST","features":[43]},{"name":"DRM_EL_REVOCATIONLIST_LID","features":[43]},{"name":"DRM_EL_SPECIFIED_CLIENTLICENSOR","features":[43]},{"name":"DRM_EL_SPECIFIED_GROUPIDENTITY","features":[43]},{"name":"DRM_LICENSE_ACQ_DATA","features":[43]},{"name":"DRM_LOCKBOXTYPE_BLACKBOX","features":[43]},{"name":"DRM_LOCKBOXTYPE_DEFAULT","features":[43]},{"name":"DRM_LOCKBOXTYPE_NONE","features":[43]},{"name":"DRM_LOCKBOXTYPE_WHITEBOX","features":[43]},{"name":"DRM_MSG_ACQUIRE_ADVISORY","features":[43]},{"name":"DRM_MSG_ACQUIRE_CLIENTLICENSOR","features":[43]},{"name":"DRM_MSG_ACQUIRE_ISSUANCE_LICENSE_TEMPLATE","features":[43]},{"name":"DRM_MSG_ACQUIRE_LICENSE","features":[43]},{"name":"DRM_MSG_ACTIVATE_GROUPIDENTITY","features":[43]},{"name":"DRM_MSG_ACTIVATE_MACHINE","features":[43]},{"name":"DRM_MSG_SIGN_ISSUANCE_LICENSE","features":[43]},{"name":"DRM_OWNER_LICENSE_NOPERSIST","features":[43]},{"name":"DRM_REUSE_KEY","features":[43]},{"name":"DRM_SERVER_ISSUANCELICENSE","features":[43]},{"name":"DRM_SERVICE_LOCATION_ENTERPRISE","features":[43]},{"name":"DRM_SERVICE_LOCATION_INTERNET","features":[43]},{"name":"DRM_SERVICE_TYPE_ACTIVATION","features":[43]},{"name":"DRM_SERVICE_TYPE_CERTIFICATION","features":[43]},{"name":"DRM_SERVICE_TYPE_CLIENTLICENSOR","features":[43]},{"name":"DRM_SERVICE_TYPE_PUBLISHING","features":[43]},{"name":"DRM_SERVICE_TYPE_SILENT","features":[43]},{"name":"DRM_SIGN_CANCEL","features":[43]},{"name":"DRM_SIGN_OFFLINE","features":[43]},{"name":"DRM_SIGN_ONLINE","features":[43]},{"name":"DRM_STATUS_MSG","features":[43]},{"name":"DRM_USAGEPOLICY_TYPE","features":[43]},{"name":"DRM_USAGEPOLICY_TYPE_BYDIGEST","features":[43]},{"name":"DRM_USAGEPOLICY_TYPE_BYNAME","features":[43]},{"name":"DRM_USAGEPOLICY_TYPE_BYPUBLICKEY","features":[43]},{"name":"DRM_USAGEPOLICY_TYPE_OSEXCLUSION","features":[43]},{"name":"MSDRM_CLIENT_ZONE","features":[43]},{"name":"MSDRM_POLICY_ZONE","features":[43]}],"367":[{"name":"AJ_IFC_SECURITY_INHERIT","features":[44]},{"name":"AJ_IFC_SECURITY_OFF","features":[44]},{"name":"AJ_IFC_SECURITY_REQUIRED","features":[44]},{"name":"ALLJOYN_ARRAY","features":[44]},{"name":"ALLJOYN_BIG_ENDIAN","features":[44]},{"name":"ALLJOYN_BOOLEAN","features":[44]},{"name":"ALLJOYN_BOOLEAN_ARRAY","features":[44]},{"name":"ALLJOYN_BYTE","features":[44]},{"name":"ALLJOYN_BYTE_ARRAY","features":[44]},{"name":"ALLJOYN_CRED_CERT_CHAIN","features":[44]},{"name":"ALLJOYN_CRED_EXPIRATION","features":[44]},{"name":"ALLJOYN_CRED_LOGON_ENTRY","features":[44]},{"name":"ALLJOYN_CRED_NEW_PASSWORD","features":[44]},{"name":"ALLJOYN_CRED_ONE_TIME_PWD","features":[44]},{"name":"ALLJOYN_CRED_PASSWORD","features":[44]},{"name":"ALLJOYN_CRED_PRIVATE_KEY","features":[44]},{"name":"ALLJOYN_CRED_USER_NAME","features":[44]},{"name":"ALLJOYN_DICT_ENTRY","features":[44]},{"name":"ALLJOYN_DICT_ENTRY_CLOSE","features":[44]},{"name":"ALLJOYN_DICT_ENTRY_OPEN","features":[44]},{"name":"ALLJOYN_DISCONNECTED","features":[44]},{"name":"ALLJOYN_DOUBLE","features":[44]},{"name":"ALLJOYN_DOUBLE_ARRAY","features":[44]},{"name":"ALLJOYN_HANDLE","features":[44]},{"name":"ALLJOYN_INT16","features":[44]},{"name":"ALLJOYN_INT16_ARRAY","features":[44]},{"name":"ALLJOYN_INT32","features":[44]},{"name":"ALLJOYN_INT32_ARRAY","features":[44]},{"name":"ALLJOYN_INT64","features":[44]},{"name":"ALLJOYN_INT64_ARRAY","features":[44]},{"name":"ALLJOYN_INVALID","features":[44]},{"name":"ALLJOYN_LITTLE_ENDIAN","features":[44]},{"name":"ALLJOYN_MEMBER_ANNOTATE_DEPRECATED","features":[44]},{"name":"ALLJOYN_MEMBER_ANNOTATE_GLOBAL_BROADCAST","features":[44]},{"name":"ALLJOYN_MEMBER_ANNOTATE_NO_REPLY","features":[44]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONCAST","features":[44]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONLESS","features":[44]},{"name":"ALLJOYN_MEMBER_ANNOTATE_UNICAST","features":[44]},{"name":"ALLJOYN_MESSAGE_DEFAULT_TIMEOUT","features":[44]},{"name":"ALLJOYN_MESSAGE_ERROR","features":[44]},{"name":"ALLJOYN_MESSAGE_FLAG_ALLOW_REMOTE_MSG","features":[44]},{"name":"ALLJOYN_MESSAGE_FLAG_AUTO_START","features":[44]},{"name":"ALLJOYN_MESSAGE_FLAG_ENCRYPTED","features":[44]},{"name":"ALLJOYN_MESSAGE_FLAG_GLOBAL_BROADCAST","features":[44]},{"name":"ALLJOYN_MESSAGE_FLAG_NO_REPLY_EXPECTED","features":[44]},{"name":"ALLJOYN_MESSAGE_FLAG_SESSIONLESS","features":[44]},{"name":"ALLJOYN_MESSAGE_INVALID","features":[44]},{"name":"ALLJOYN_MESSAGE_METHOD_CALL","features":[44]},{"name":"ALLJOYN_MESSAGE_METHOD_RET","features":[44]},{"name":"ALLJOYN_MESSAGE_SIGNAL","features":[44]},{"name":"ALLJOYN_NAMED_PIPE_CONNECT_SPEC","features":[44]},{"name":"ALLJOYN_OBJECT_PATH","features":[44]},{"name":"ALLJOYN_PROP_ACCESS_READ","features":[44]},{"name":"ALLJOYN_PROP_ACCESS_RW","features":[44]},{"name":"ALLJOYN_PROP_ACCESS_WRITE","features":[44]},{"name":"ALLJOYN_PROXIMITY_ANY","features":[44]},{"name":"ALLJOYN_PROXIMITY_NETWORK","features":[44]},{"name":"ALLJOYN_PROXIMITY_PHYSICAL","features":[44]},{"name":"ALLJOYN_READ_READY","features":[44]},{"name":"ALLJOYN_SESSIONLOST_INVALID","features":[44]},{"name":"ALLJOYN_SESSIONLOST_LINK_TIMEOUT","features":[44]},{"name":"ALLJOYN_SESSIONLOST_REASON_OTHER","features":[44]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_CLOSED_ABRUPTLY","features":[44]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_LEFT_SESSION","features":[44]},{"name":"ALLJOYN_SESSIONLOST_REMOVED_BY_BINDER","features":[44]},{"name":"ALLJOYN_SIGNATURE","features":[44]},{"name":"ALLJOYN_STRING","features":[44]},{"name":"ALLJOYN_STRUCT","features":[44]},{"name":"ALLJOYN_STRUCT_CLOSE","features":[44]},{"name":"ALLJOYN_STRUCT_OPEN","features":[44]},{"name":"ALLJOYN_TRAFFIC_TYPE_MESSAGES","features":[44]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_RELIABLE","features":[44]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_UNRELIABLE","features":[44]},{"name":"ALLJOYN_UINT16","features":[44]},{"name":"ALLJOYN_UINT16_ARRAY","features":[44]},{"name":"ALLJOYN_UINT32","features":[44]},{"name":"ALLJOYN_UINT32_ARRAY","features":[44]},{"name":"ALLJOYN_UINT64","features":[44]},{"name":"ALLJOYN_UINT64_ARRAY","features":[44]},{"name":"ALLJOYN_VARIANT","features":[44]},{"name":"ALLJOYN_WILDCARD","features":[44]},{"name":"ALLJOYN_WRITE_READY","features":[44]},{"name":"ANNOUNCED","features":[44]},{"name":"AllJoynAcceptBusConnection","features":[44,1]},{"name":"AllJoynCloseBusHandle","features":[44,1]},{"name":"AllJoynConnectToBus","features":[44,1]},{"name":"AllJoynCreateBus","features":[44,1,4]},{"name":"AllJoynEnumEvents","features":[44,1]},{"name":"AllJoynEventSelect","features":[44,1]},{"name":"AllJoynReceiveFromBus","features":[44,1]},{"name":"AllJoynSendToBus","features":[44,1]},{"name":"CAPABLE_ECDHE_ECDSA","features":[44]},{"name":"CAPABLE_ECDHE_NULL","features":[44]},{"name":"CAPABLE_ECDHE_SPEKE","features":[44]},{"name":"CLAIMABLE","features":[44]},{"name":"CLAIMED","features":[44]},{"name":"ER_ABOUT_ABOUTDATA_MISSING_REQUIRED_FIELD","features":[44]},{"name":"ER_ABOUT_DEFAULT_LANGUAGE_NOT_SPECIFIED","features":[44]},{"name":"ER_ABOUT_FIELD_ALREADY_SPECIFIED","features":[44]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_APPID_SIZE","features":[44]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_VALUE","features":[44]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_LISTENER","features":[44]},{"name":"ER_ABOUT_SESSIONPORT_NOT_BOUND","features":[44]},{"name":"ER_ALERTED_THREAD","features":[44]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_ERROR","features":[44]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_WARNING","features":[44]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_ALREADY_ADVERTISING","features":[44]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[44]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_ALREADY_EXISTS","features":[44]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_INVALID_OPTS","features":[44]},{"name":"ER_ALLJOYN_CANCELADVERTISENAME_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_CANCELFINDADVERTISEDNAME_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_ALREADY_DISCOVERING","features":[44]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[44]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_ALREADY_JOINED","features":[44]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_BAD_SESSION_OPTS","features":[44]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_CONNECT_FAILED","features":[44]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_NO_SESSION","features":[44]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_REJECTED","features":[44]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_UNREACHABLE","features":[44]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_NO_SESSION","features":[44]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_UNSUPPORTED","features":[44]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_UNSUPPORTED","features":[44]},{"name":"ER_ALLJOYN_PING_FAILED","features":[44]},{"name":"ER_ALLJOYN_PING_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_PING_REPLY_INCOMPATIBLE_REMOTE_ROUTING_NODE","features":[44]},{"name":"ER_ALLJOYN_PING_REPLY_IN_PROGRESS","features":[44]},{"name":"ER_ALLJOYN_PING_REPLY_TIMEOUT","features":[44]},{"name":"ER_ALLJOYN_PING_REPLY_UNKNOWN_NAME","features":[44]},{"name":"ER_ALLJOYN_PING_REPLY_UNREACHABLE","features":[44]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_INCOMPATIBLE_REMOTE_DAEMON","features":[44]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_BINDER","features":[44]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_FOUND","features":[44]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_MULTIPOINT","features":[44]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_NO_SESSION","features":[44]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_FAILED","features":[44]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NOT_SUPPORTED","features":[44]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NO_DEST_SUPPORT","features":[44]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_BAD_PORT","features":[44]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_FAILED","features":[44]},{"name":"ER_APPLICATION_STATE_LISTENER_ALREADY_EXISTS","features":[44]},{"name":"ER_APPLICATION_STATE_LISTENER_NO_SUCH_LISTENER","features":[44]},{"name":"ER_ARDP_BACKPRESSURE","features":[44]},{"name":"ER_ARDP_DISCONNECTING","features":[44]},{"name":"ER_ARDP_INVALID_CONNECTION","features":[44]},{"name":"ER_ARDP_INVALID_RESPONSE","features":[44]},{"name":"ER_ARDP_INVALID_STATE","features":[44]},{"name":"ER_ARDP_PERSIST_TIMEOUT","features":[44]},{"name":"ER_ARDP_PROBE_TIMEOUT","features":[44]},{"name":"ER_ARDP_REMOTE_CONNECTION_RESET","features":[44]},{"name":"ER_ARDP_TTL_EXPIRED","features":[44]},{"name":"ER_ARDP_VERSION_NOT_SUPPORTED","features":[44]},{"name":"ER_ARDP_WRITE_BLOCKED","features":[44]},{"name":"ER_AUTH_FAIL","features":[44]},{"name":"ER_AUTH_USER_REJECT","features":[44]},{"name":"ER_BAD_ARG_1","features":[44]},{"name":"ER_BAD_ARG_2","features":[44]},{"name":"ER_BAD_ARG_3","features":[44]},{"name":"ER_BAD_ARG_4","features":[44]},{"name":"ER_BAD_ARG_5","features":[44]},{"name":"ER_BAD_ARG_6","features":[44]},{"name":"ER_BAD_ARG_7","features":[44]},{"name":"ER_BAD_ARG_8","features":[44]},{"name":"ER_BAD_ARG_COUNT","features":[44]},{"name":"ER_BAD_HOSTNAME","features":[44]},{"name":"ER_BAD_STRING_ENCODING","features":[44]},{"name":"ER_BAD_TRANSPORT_MASK","features":[44]},{"name":"ER_BUFFER_TOO_SMALL","features":[44]},{"name":"ER_BUS_ALREADY_CONNECTED","features":[44]},{"name":"ER_BUS_ALREADY_LISTENING","features":[44]},{"name":"ER_BUS_ANNOTATION_ALREADY_EXISTS","features":[44]},{"name":"ER_BUS_AUTHENTICATION_PENDING","features":[44]},{"name":"ER_BUS_BAD_BODY_LEN","features":[44]},{"name":"ER_BUS_BAD_BUS_NAME","features":[44]},{"name":"ER_BUS_BAD_CHILD_PATH","features":[44]},{"name":"ER_BUS_BAD_ERROR_NAME","features":[44]},{"name":"ER_BUS_BAD_HDR_FLAGS","features":[44]},{"name":"ER_BUS_BAD_HEADER_FIELD","features":[44]},{"name":"ER_BUS_BAD_HEADER_LEN","features":[44]},{"name":"ER_BUS_BAD_INTERFACE_NAME","features":[44]},{"name":"ER_BUS_BAD_LENGTH","features":[44]},{"name":"ER_BUS_BAD_MEMBER_NAME","features":[44]},{"name":"ER_BUS_BAD_OBJ_PATH","features":[44]},{"name":"ER_BUS_BAD_SENDER_ID","features":[44]},{"name":"ER_BUS_BAD_SEND_PARAMETER","features":[44]},{"name":"ER_BUS_BAD_SESSION_OPTS","features":[44]},{"name":"ER_BUS_BAD_SIGNATURE","features":[44]},{"name":"ER_BUS_BAD_TRANSPORT_ARGS","features":[44]},{"name":"ER_BUS_BAD_VALUE","features":[44]},{"name":"ER_BUS_BAD_VALUE_TYPE","features":[44]},{"name":"ER_BUS_BAD_XML","features":[44]},{"name":"ER_BUS_BLOCKING_CALL_NOT_ALLOWED","features":[44]},{"name":"ER_BUS_BUS_ALREADY_STARTED","features":[44]},{"name":"ER_BUS_BUS_NOT_STARTED","features":[44]},{"name":"ER_BUS_CANNOT_ADD_HANDLER","features":[44]},{"name":"ER_BUS_CANNOT_ADD_INTERFACE","features":[44]},{"name":"ER_BUS_CANNOT_EXPAND_MESSAGE","features":[44]},{"name":"ER_BUS_CONNECTION_REJECTED","features":[44]},{"name":"ER_BUS_CONNECT_FAILED","features":[44]},{"name":"ER_BUS_CORRUPT_KEYSTORE","features":[44]},{"name":"ER_BUS_DESCRIPTION_ALREADY_EXISTS","features":[44]},{"name":"ER_BUS_DESTINATION_NOT_AUTHENTICATED","features":[44]},{"name":"ER_BUS_ELEMENT_NOT_FOUND","features":[44]},{"name":"ER_BUS_EMPTY_MESSAGE","features":[44]},{"name":"ER_BUS_ENDPOINT_CLOSING","features":[44]},{"name":"ER_BUS_ENDPOINT_REDIRECTED","features":[44]},{"name":"ER_BUS_ERRORS","features":[44]},{"name":"ER_BUS_ERROR_NAME_MISSING","features":[44]},{"name":"ER_BUS_ERROR_RESPONSE","features":[44]},{"name":"ER_BUS_ESTABLISH_FAILED","features":[44]},{"name":"ER_BUS_HANDLES_MISMATCH","features":[44]},{"name":"ER_BUS_HANDLES_NOT_ENABLED","features":[44]},{"name":"ER_BUS_HDR_EXPANSION_INVALID","features":[44]},{"name":"ER_BUS_IFACE_ALREADY_EXISTS","features":[44]},{"name":"ER_BUS_INCOMPATIBLE_DAEMON","features":[44]},{"name":"ER_BUS_INTERFACE_ACTIVATED","features":[44]},{"name":"ER_BUS_INTERFACE_MISMATCH","features":[44]},{"name":"ER_BUS_INTERFACE_MISSING","features":[44]},{"name":"ER_BUS_INTERFACE_NO_SUCH_MEMBER","features":[44]},{"name":"ER_BUS_INVALID_AUTH_MECHANISM","features":[44]},{"name":"ER_BUS_INVALID_HEADER_CHECKSUM","features":[44]},{"name":"ER_BUS_INVALID_HEADER_SERIAL","features":[44]},{"name":"ER_BUS_KEYBLOB_OP_INVALID","features":[44]},{"name":"ER_BUS_KEYSTORE_NOT_LOADED","features":[44]},{"name":"ER_BUS_KEYSTORE_VERSION_MISMATCH","features":[44]},{"name":"ER_BUS_KEY_EXPIRED","features":[44]},{"name":"ER_BUS_KEY_STORE_NOT_LOADED","features":[44]},{"name":"ER_BUS_KEY_UNAVAILABLE","features":[44]},{"name":"ER_BUS_LISTENER_ALREADY_SET","features":[44]},{"name":"ER_BUS_MATCH_RULE_NOT_FOUND","features":[44]},{"name":"ER_BUS_MEMBER_ALREADY_EXISTS","features":[44]},{"name":"ER_BUS_MEMBER_MISSING","features":[44]},{"name":"ER_BUS_MEMBER_NO_SUCH_SIGNATURE","features":[44]},{"name":"ER_BUS_MESSAGE_DECRYPTION_FAILED","features":[44]},{"name":"ER_BUS_MESSAGE_NOT_ENCRYPTED","features":[44]},{"name":"ER_BUS_METHOD_CALL_ABORTED","features":[44]},{"name":"ER_BUS_MISSING_COMPRESSION_TOKEN","features":[44]},{"name":"ER_BUS_NAME_TOO_LONG","features":[44]},{"name":"ER_BUS_NOT_ALLOWED","features":[44]},{"name":"ER_BUS_NOT_AUTHENTICATING","features":[44]},{"name":"ER_BUS_NOT_AUTHORIZED","features":[44]},{"name":"ER_BUS_NOT_A_COMPLETE_TYPE","features":[44]},{"name":"ER_BUS_NOT_A_DICTIONARY","features":[44]},{"name":"ER_BUS_NOT_COMPRESSED","features":[44]},{"name":"ER_BUS_NOT_CONNECTED","features":[44]},{"name":"ER_BUS_NOT_NUL_TERMINATED","features":[44]},{"name":"ER_BUS_NOT_OWNER","features":[44]},{"name":"ER_BUS_NO_AUTHENTICATION_MECHANISM","features":[44]},{"name":"ER_BUS_NO_CALL_FOR_REPLY","features":[44]},{"name":"ER_BUS_NO_ENDPOINT","features":[44]},{"name":"ER_BUS_NO_LISTENER","features":[44]},{"name":"ER_BUS_NO_PEER_GUID","features":[44]},{"name":"ER_BUS_NO_ROUTE","features":[44]},{"name":"ER_BUS_NO_SESSION","features":[44]},{"name":"ER_BUS_NO_SUCH_ANNOTATION","features":[44]},{"name":"ER_BUS_NO_SUCH_HANDLE","features":[44]},{"name":"ER_BUS_NO_SUCH_INTERFACE","features":[44]},{"name":"ER_BUS_NO_SUCH_MESSAGE","features":[44]},{"name":"ER_BUS_NO_SUCH_OBJECT","features":[44]},{"name":"ER_BUS_NO_SUCH_PROPERTY","features":[44]},{"name":"ER_BUS_NO_SUCH_SERVICE","features":[44]},{"name":"ER_BUS_NO_TRANSPORTS","features":[44]},{"name":"ER_BUS_OBJECT_NOT_REGISTERED","features":[44]},{"name":"ER_BUS_OBJECT_NO_SUCH_INTERFACE","features":[44]},{"name":"ER_BUS_OBJECT_NO_SUCH_MEMBER","features":[44]},{"name":"ER_BUS_OBJ_ALREADY_EXISTS","features":[44]},{"name":"ER_BUS_OBJ_NOT_FOUND","features":[44]},{"name":"ER_BUS_PATH_MISSING","features":[44]},{"name":"ER_BUS_PEER_AUTH_VERSION_MISMATCH","features":[44]},{"name":"ER_BUS_PING_GROUP_NOT_FOUND","features":[44]},{"name":"ER_BUS_POLICY_VIOLATION","features":[44]},{"name":"ER_BUS_PROPERTY_ACCESS_DENIED","features":[44]},{"name":"ER_BUS_PROPERTY_ALREADY_EXISTS","features":[44]},{"name":"ER_BUS_PROPERTY_VALUE_NOT_SET","features":[44]},{"name":"ER_BUS_READ_ERROR","features":[44]},{"name":"ER_BUS_REMOVED_BY_BINDER","features":[44]},{"name":"ER_BUS_REMOVED_BY_BINDER_SELF","features":[44]},{"name":"ER_BUS_REPLY_IS_ERROR_MESSAGE","features":[44]},{"name":"ER_BUS_REPLY_SERIAL_MISSING","features":[44]},{"name":"ER_BUS_SECURITY_FATAL","features":[44]},{"name":"ER_BUS_SECURITY_NOT_ENABLED","features":[44]},{"name":"ER_BUS_SELF_CONNECT","features":[44]},{"name":"ER_BUS_SET_PROPERTY_REJECTED","features":[44]},{"name":"ER_BUS_SET_WRONG_SIGNATURE","features":[44]},{"name":"ER_BUS_SIGNATURE_MISMATCH","features":[44]},{"name":"ER_BUS_STOPPING","features":[44]},{"name":"ER_BUS_TIME_TO_LIVE_EXPIRED","features":[44]},{"name":"ER_BUS_TRANSPORT_ACCESS_DENIED","features":[44]},{"name":"ER_BUS_TRANSPORT_NOT_AVAILABLE","features":[44]},{"name":"ER_BUS_TRANSPORT_NOT_STARTED","features":[44]},{"name":"ER_BUS_TRUNCATED","features":[44]},{"name":"ER_BUS_UNEXPECTED_DISPOSITION","features":[44]},{"name":"ER_BUS_UNEXPECTED_SIGNATURE","features":[44]},{"name":"ER_BUS_UNKNOWN_INTERFACE","features":[44]},{"name":"ER_BUS_UNKNOWN_PATH","features":[44]},{"name":"ER_BUS_UNKNOWN_SERIAL","features":[44]},{"name":"ER_BUS_UNMATCHED_REPLY_SERIAL","features":[44]},{"name":"ER_BUS_WAIT_FAILED","features":[44]},{"name":"ER_BUS_WRITE_ERROR","features":[44]},{"name":"ER_BUS_WRITE_QUEUE_FULL","features":[44]},{"name":"ER_CERTIFICATE_NOT_FOUND","features":[44]},{"name":"ER_COMMON_ERRORS","features":[44]},{"name":"ER_CONNECTION_LIMIT_EXCEEDED","features":[44]},{"name":"ER_CONN_REFUSED","features":[44]},{"name":"ER_CORRUPT_KEYBLOB","features":[44]},{"name":"ER_CRYPTO_ERROR","features":[44]},{"name":"ER_CRYPTO_HASH_UNINITIALIZED","features":[44]},{"name":"ER_CRYPTO_ILLEGAL_PARAMETERS","features":[44]},{"name":"ER_CRYPTO_INSUFFICIENT_SECURITY","features":[44]},{"name":"ER_CRYPTO_KEY_UNAVAILABLE","features":[44]},{"name":"ER_CRYPTO_KEY_UNUSABLE","features":[44]},{"name":"ER_CRYPTO_TRUNCATED","features":[44]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NON_EXISTENT","features":[44]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NOT_OWNER","features":[44]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_RELEASED","features":[44]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER","features":[44]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_EXISTS","features":[44]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_IN_QUEUE","features":[44]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER","features":[44]},{"name":"ER_DBUS_START_REPLY_ALREADY_RUNNING","features":[44]},{"name":"ER_DEADLOCK","features":[44]},{"name":"ER_DEAD_THREAD","features":[44]},{"name":"ER_DIGEST_MISMATCH","features":[44]},{"name":"ER_DUPLICATE_CERTIFICATE","features":[44]},{"name":"ER_DUPLICATE_KEY","features":[44]},{"name":"ER_EMPTY_KEY_BLOB","features":[44]},{"name":"ER_END_OF_DATA","features":[44]},{"name":"ER_EOF","features":[44]},{"name":"ER_EXTERNAL_THREAD","features":[44]},{"name":"ER_FAIL","features":[44]},{"name":"ER_FEATURE_NOT_AVAILABLE","features":[44]},{"name":"ER_INIT_FAILED","features":[44]},{"name":"ER_INVALID_ADDRESS","features":[44]},{"name":"ER_INVALID_APPLICATION_STATE","features":[44]},{"name":"ER_INVALID_CERTIFICATE","features":[44]},{"name":"ER_INVALID_CERTIFICATE_USAGE","features":[44]},{"name":"ER_INVALID_CERT_CHAIN","features":[44]},{"name":"ER_INVALID_CONFIG","features":[44]},{"name":"ER_INVALID_DATA","features":[44]},{"name":"ER_INVALID_GUID","features":[44]},{"name":"ER_INVALID_HTTP_METHOD_USED_FOR_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[44]},{"name":"ER_INVALID_KEY_ENCODING","features":[44]},{"name":"ER_INVALID_ON_DEMAND_CONNECTION_MESSAGE_RESPONSE","features":[44]},{"name":"ER_INVALID_PERSISTENT_CONNECTION_MESSAGE_RESPONSE","features":[44]},{"name":"ER_INVALID_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[44]},{"name":"ER_INVALID_SIGNAL_EMISSION_TYPE","features":[44]},{"name":"ER_INVALID_STREAM","features":[44]},{"name":"ER_IODISPATCH_STOPPING","features":[44]},{"name":"ER_KEY_STORE_ALREADY_INITIALIZED","features":[44]},{"name":"ER_KEY_STORE_ID_NOT_YET_SET","features":[44]},{"name":"ER_LANGUAGE_NOT_SUPPORTED","features":[44]},{"name":"ER_MANAGEMENT_ALREADY_STARTED","features":[44]},{"name":"ER_MANAGEMENT_NOT_STARTED","features":[44]},{"name":"ER_MANIFEST_NOT_FOUND","features":[44]},{"name":"ER_MANIFEST_REJECTED","features":[44]},{"name":"ER_MISSING_DIGEST_IN_CERTIFICATE","features":[44]},{"name":"ER_NONE","features":[44]},{"name":"ER_NOT_CONN","features":[44]},{"name":"ER_NOT_CONNECTED_TO_RENDEZVOUS_SERVER","features":[44]},{"name":"ER_NOT_IMPLEMENTED","features":[44]},{"name":"ER_NO_COMMON_TRUST","features":[44]},{"name":"ER_NO_SUCH_ALARM","features":[44]},{"name":"ER_NO_SUCH_DEVICE","features":[44]},{"name":"ER_NO_TRUST_ANCHOR","features":[44]},{"name":"ER_OK","features":[44]},{"name":"ER_OPEN_FAILED","features":[44]},{"name":"ER_OS_ERROR","features":[44]},{"name":"ER_OUT_OF_MEMORY","features":[44]},{"name":"ER_P2P","features":[44]},{"name":"ER_P2P_BUSY","features":[44]},{"name":"ER_P2P_DISABLED","features":[44]},{"name":"ER_P2P_FORBIDDEN","features":[44]},{"name":"ER_P2P_NOT_CONNECTED","features":[44]},{"name":"ER_P2P_NO_GO","features":[44]},{"name":"ER_P2P_NO_STA","features":[44]},{"name":"ER_P2P_TIMEOUT","features":[44]},{"name":"ER_PACKET_BAD_CRC","features":[44]},{"name":"ER_PACKET_BAD_FORMAT","features":[44]},{"name":"ER_PACKET_BAD_PARAMETER","features":[44]},{"name":"ER_PACKET_BUS_NO_SUCH_CHANNEL","features":[44]},{"name":"ER_PACKET_CHANNEL_FAIL","features":[44]},{"name":"ER_PACKET_CONNECT_TIMEOUT","features":[44]},{"name":"ER_PACKET_TOO_LARGE","features":[44]},{"name":"ER_PARSE_ERROR","features":[44]},{"name":"ER_PERMISSION_DENIED","features":[44]},{"name":"ER_POLICY_NOT_NEWER","features":[44]},{"name":"ER_PROXIMITY_CONNECTION_ESTABLISH_FAIL","features":[44]},{"name":"ER_PROXIMITY_NO_PEERS_FOUND","features":[44]},{"name":"ER_READ_ERROR","features":[44]},{"name":"ER_RENDEZVOUS_SERVER_DEACTIVATED_USER","features":[44]},{"name":"ER_RENDEZVOUS_SERVER_ERR401_UNAUTHORIZED_REQUEST","features":[44]},{"name":"ER_RENDEZVOUS_SERVER_ERR500_INTERNAL_ERROR","features":[44]},{"name":"ER_RENDEZVOUS_SERVER_ERR503_STATUS_UNAVAILABLE","features":[44]},{"name":"ER_RENDEZVOUS_SERVER_ROOT_CERTIFICATE_UNINITIALIZED","features":[44]},{"name":"ER_RENDEZVOUS_SERVER_UNKNOWN_USER","features":[44]},{"name":"ER_RENDEZVOUS_SERVER_UNRECOVERABLE_ERROR","features":[44]},{"name":"ER_SLAP_CRC_ERROR","features":[44]},{"name":"ER_SLAP_ERROR","features":[44]},{"name":"ER_SLAP_HDR_CHECKSUM_ERROR","features":[44]},{"name":"ER_SLAP_INVALID_PACKET_LEN","features":[44]},{"name":"ER_SLAP_INVALID_PACKET_TYPE","features":[44]},{"name":"ER_SLAP_LEN_MISMATCH","features":[44]},{"name":"ER_SLAP_OTHER_END_CLOSED","features":[44]},{"name":"ER_SLAP_PACKET_TYPE_MISMATCH","features":[44]},{"name":"ER_SOCKET_BIND_ERROR","features":[44]},{"name":"ER_SOCK_CLOSING","features":[44]},{"name":"ER_SOCK_OTHER_END_CLOSED","features":[44]},{"name":"ER_SSL_CONNECT","features":[44]},{"name":"ER_SSL_ERRORS","features":[44]},{"name":"ER_SSL_INIT","features":[44]},{"name":"ER_SSL_VERIFY","features":[44]},{"name":"ER_STOPPING_THREAD","features":[44]},{"name":"ER_TCP_MAX_UNTRUSTED","features":[44]},{"name":"ER_THREADPOOL_EXHAUSTED","features":[44]},{"name":"ER_THREADPOOL_STOPPING","features":[44]},{"name":"ER_THREAD_NO_WAIT","features":[44]},{"name":"ER_THREAD_RUNNING","features":[44]},{"name":"ER_THREAD_STOPPING","features":[44]},{"name":"ER_TIMEOUT","features":[44]},{"name":"ER_TIMER_EXITING","features":[44]},{"name":"ER_TIMER_FALLBEHIND","features":[44]},{"name":"ER_TIMER_FULL","features":[44]},{"name":"ER_TIMER_NOT_ALLOWED","features":[44]},{"name":"ER_UDP_BACKPRESSURE","features":[44]},{"name":"ER_UDP_BUSHELLO","features":[44]},{"name":"ER_UDP_DEMUX_NO_ENDPOINT","features":[44]},{"name":"ER_UDP_DISCONNECT","features":[44]},{"name":"ER_UDP_EARLY_EXIT","features":[44]},{"name":"ER_UDP_ENDPOINT_NOT_STARTED","features":[44]},{"name":"ER_UDP_ENDPOINT_REMOVED","features":[44]},{"name":"ER_UDP_ENDPOINT_STALLED","features":[44]},{"name":"ER_UDP_INVALID","features":[44]},{"name":"ER_UDP_LOCAL_DISCONNECT","features":[44]},{"name":"ER_UDP_LOCAL_DISCONNECT_FAIL","features":[44]},{"name":"ER_UDP_MESSAGE","features":[44]},{"name":"ER_UDP_MSG_TOO_LONG","features":[44]},{"name":"ER_UDP_NOT_DISCONNECTED","features":[44]},{"name":"ER_UDP_NOT_IMPLEMENTED","features":[44]},{"name":"ER_UDP_NO_LISTENER","features":[44]},{"name":"ER_UDP_NO_NETWORK","features":[44]},{"name":"ER_UDP_STOPPING","features":[44]},{"name":"ER_UDP_UNEXPECTED_FLOW","features":[44]},{"name":"ER_UDP_UNEXPECTED_LENGTH","features":[44]},{"name":"ER_UDP_UNSUPPORTED","features":[44]},{"name":"ER_UNABLE_TO_CONNECT_TO_RENDEZVOUS_SERVER","features":[44]},{"name":"ER_UNABLE_TO_SEND_MESSAGE_TO_RENDEZVOUS_SERVER","features":[44]},{"name":"ER_UNKNOWN_CERTIFICATE","features":[44]},{"name":"ER_UTF_CONVERSION_FAILED","features":[44]},{"name":"ER_WARNING","features":[44]},{"name":"ER_WOULDBLOCK","features":[44]},{"name":"ER_WRITE_ERROR","features":[44]},{"name":"ER_XML_ACLS_MISSING","features":[44]},{"name":"ER_XML_ACL_ALL_TYPE_PEER_WITH_OTHERS","features":[44]},{"name":"ER_XML_ACL_PEERS_MISSING","features":[44]},{"name":"ER_XML_ACL_PEER_NOT_UNIQUE","features":[44]},{"name":"ER_XML_ACL_PEER_PUBLIC_KEY_SET","features":[44]},{"name":"ER_XML_ANNOTATION_NOT_UNIQUE","features":[44]},{"name":"ER_XML_CONVERTER_ERROR","features":[44]},{"name":"ER_XML_INTERFACE_MEMBERS_MISSING","features":[44]},{"name":"ER_XML_INTERFACE_NAME_NOT_UNIQUE","features":[44]},{"name":"ER_XML_INVALID_ACL_PEER_CHILDREN_COUNT","features":[44]},{"name":"ER_XML_INVALID_ACL_PEER_PUBLIC_KEY","features":[44]},{"name":"ER_XML_INVALID_ACL_PEER_TYPE","features":[44]},{"name":"ER_XML_INVALID_ANNOTATIONS_COUNT","features":[44]},{"name":"ER_XML_INVALID_ATTRIBUTE_VALUE","features":[44]},{"name":"ER_XML_INVALID_BASE64","features":[44]},{"name":"ER_XML_INVALID_ELEMENT_CHILDREN_COUNT","features":[44]},{"name":"ER_XML_INVALID_ELEMENT_NAME","features":[44]},{"name":"ER_XML_INVALID_INTERFACE_NAME","features":[44]},{"name":"ER_XML_INVALID_MANIFEST_VERSION","features":[44]},{"name":"ER_XML_INVALID_MEMBER_ACTION","features":[44]},{"name":"ER_XML_INVALID_MEMBER_NAME","features":[44]},{"name":"ER_XML_INVALID_MEMBER_TYPE","features":[44]},{"name":"ER_XML_INVALID_OBJECT_PATH","features":[44]},{"name":"ER_XML_INVALID_OID","features":[44]},{"name":"ER_XML_INVALID_POLICY_SERIAL_NUMBER","features":[44]},{"name":"ER_XML_INVALID_POLICY_VERSION","features":[44]},{"name":"ER_XML_INVALID_RULES_COUNT","features":[44]},{"name":"ER_XML_INVALID_SECURITY_LEVEL_ANNOTATION_VALUE","features":[44]},{"name":"ER_XML_MALFORMED","features":[44]},{"name":"ER_XML_MEMBER_DENY_ACTION_WITH_OTHER","features":[44]},{"name":"ER_XML_MEMBER_NAME_NOT_UNIQUE","features":[44]},{"name":"ER_XML_OBJECT_PATH_NOT_UNIQUE","features":[44]},{"name":"NEED_UPDATE","features":[44]},{"name":"NOT_CLAIMABLE","features":[44]},{"name":"PASSWORD_GENERATED_BY_APPLICATION","features":[44]},{"name":"PASSWORD_GENERATED_BY_SECURITY_MANAGER","features":[44]},{"name":"QCC_FALSE","features":[44]},{"name":"QCC_StatusText","features":[44]},{"name":"QCC_TRUE","features":[44]},{"name":"QStatus","features":[44]},{"name":"UNANNOUNCED","features":[44]},{"name":"alljoyn_about_announced_ptr","features":[44]},{"name":"alljoyn_about_announceflag","features":[44]},{"name":"alljoyn_aboutdata","features":[44]},{"name":"alljoyn_aboutdata_create","features":[44]},{"name":"alljoyn_aboutdata_create_empty","features":[44]},{"name":"alljoyn_aboutdata_create_full","features":[44]},{"name":"alljoyn_aboutdata_createfrommsgarg","features":[44]},{"name":"alljoyn_aboutdata_createfromxml","features":[44]},{"name":"alljoyn_aboutdata_destroy","features":[44]},{"name":"alljoyn_aboutdata_getaboutdata","features":[44]},{"name":"alljoyn_aboutdata_getajsoftwareversion","features":[44]},{"name":"alljoyn_aboutdata_getannouncedaboutdata","features":[44]},{"name":"alljoyn_aboutdata_getappid","features":[44]},{"name":"alljoyn_aboutdata_getappname","features":[44]},{"name":"alljoyn_aboutdata_getdateofmanufacture","features":[44]},{"name":"alljoyn_aboutdata_getdefaultlanguage","features":[44]},{"name":"alljoyn_aboutdata_getdescription","features":[44]},{"name":"alljoyn_aboutdata_getdeviceid","features":[44]},{"name":"alljoyn_aboutdata_getdevicename","features":[44]},{"name":"alljoyn_aboutdata_getfield","features":[44]},{"name":"alljoyn_aboutdata_getfields","features":[44]},{"name":"alljoyn_aboutdata_getfieldsignature","features":[44]},{"name":"alljoyn_aboutdata_gethardwareversion","features":[44]},{"name":"alljoyn_aboutdata_getmanufacturer","features":[44]},{"name":"alljoyn_aboutdata_getmodelnumber","features":[44]},{"name":"alljoyn_aboutdata_getsoftwareversion","features":[44]},{"name":"alljoyn_aboutdata_getsupportedlanguages","features":[44]},{"name":"alljoyn_aboutdata_getsupporturl","features":[44]},{"name":"alljoyn_aboutdata_isfieldannounced","features":[44]},{"name":"alljoyn_aboutdata_isfieldlocalized","features":[44]},{"name":"alljoyn_aboutdata_isfieldrequired","features":[44]},{"name":"alljoyn_aboutdata_isvalid","features":[44]},{"name":"alljoyn_aboutdata_setappid","features":[44]},{"name":"alljoyn_aboutdata_setappid_fromstring","features":[44]},{"name":"alljoyn_aboutdata_setappname","features":[44]},{"name":"alljoyn_aboutdata_setdateofmanufacture","features":[44]},{"name":"alljoyn_aboutdata_setdefaultlanguage","features":[44]},{"name":"alljoyn_aboutdata_setdescription","features":[44]},{"name":"alljoyn_aboutdata_setdeviceid","features":[44]},{"name":"alljoyn_aboutdata_setdevicename","features":[44]},{"name":"alljoyn_aboutdata_setfield","features":[44]},{"name":"alljoyn_aboutdata_sethardwareversion","features":[44]},{"name":"alljoyn_aboutdata_setmanufacturer","features":[44]},{"name":"alljoyn_aboutdata_setmodelnumber","features":[44]},{"name":"alljoyn_aboutdata_setsoftwareversion","features":[44]},{"name":"alljoyn_aboutdata_setsupportedlanguage","features":[44]},{"name":"alljoyn_aboutdata_setsupporturl","features":[44]},{"name":"alljoyn_aboutdatalistener","features":[44]},{"name":"alljoyn_aboutdatalistener_callbacks","features":[44]},{"name":"alljoyn_aboutdatalistener_create","features":[44]},{"name":"alljoyn_aboutdatalistener_destroy","features":[44]},{"name":"alljoyn_aboutdatalistener_getaboutdata_ptr","features":[44]},{"name":"alljoyn_aboutdatalistener_getannouncedaboutdata_ptr","features":[44]},{"name":"alljoyn_abouticon","features":[44]},{"name":"alljoyn_abouticon_clear","features":[44]},{"name":"alljoyn_abouticon_create","features":[44]},{"name":"alljoyn_abouticon_destroy","features":[44]},{"name":"alljoyn_abouticon_getcontent","features":[44]},{"name":"alljoyn_abouticon_geturl","features":[44]},{"name":"alljoyn_abouticon_setcontent","features":[44]},{"name":"alljoyn_abouticon_setcontent_frommsgarg","features":[44]},{"name":"alljoyn_abouticon_seturl","features":[44]},{"name":"alljoyn_abouticonobj","features":[44]},{"name":"alljoyn_abouticonobj_create","features":[44]},{"name":"alljoyn_abouticonobj_destroy","features":[44]},{"name":"alljoyn_abouticonproxy","features":[44]},{"name":"alljoyn_abouticonproxy_create","features":[44]},{"name":"alljoyn_abouticonproxy_destroy","features":[44]},{"name":"alljoyn_abouticonproxy_geticon","features":[44]},{"name":"alljoyn_abouticonproxy_getversion","features":[44]},{"name":"alljoyn_aboutlistener","features":[44]},{"name":"alljoyn_aboutlistener_callback","features":[44]},{"name":"alljoyn_aboutlistener_create","features":[44]},{"name":"alljoyn_aboutlistener_destroy","features":[44]},{"name":"alljoyn_aboutobj","features":[44]},{"name":"alljoyn_aboutobj_announce","features":[44]},{"name":"alljoyn_aboutobj_announce_using_datalistener","features":[44]},{"name":"alljoyn_aboutobj_create","features":[44]},{"name":"alljoyn_aboutobj_destroy","features":[44]},{"name":"alljoyn_aboutobj_unannounce","features":[44]},{"name":"alljoyn_aboutobjectdescription","features":[44]},{"name":"alljoyn_aboutobjectdescription_clear","features":[44]},{"name":"alljoyn_aboutobjectdescription_create","features":[44]},{"name":"alljoyn_aboutobjectdescription_create_full","features":[44]},{"name":"alljoyn_aboutobjectdescription_createfrommsgarg","features":[44]},{"name":"alljoyn_aboutobjectdescription_destroy","features":[44]},{"name":"alljoyn_aboutobjectdescription_getinterfacepaths","features":[44]},{"name":"alljoyn_aboutobjectdescription_getinterfaces","features":[44]},{"name":"alljoyn_aboutobjectdescription_getmsgarg","features":[44]},{"name":"alljoyn_aboutobjectdescription_getpaths","features":[44]},{"name":"alljoyn_aboutobjectdescription_hasinterface","features":[44]},{"name":"alljoyn_aboutobjectdescription_hasinterfaceatpath","features":[44]},{"name":"alljoyn_aboutobjectdescription_haspath","features":[44]},{"name":"alljoyn_aboutproxy","features":[44]},{"name":"alljoyn_aboutproxy_create","features":[44]},{"name":"alljoyn_aboutproxy_destroy","features":[44]},{"name":"alljoyn_aboutproxy_getaboutdata","features":[44]},{"name":"alljoyn_aboutproxy_getobjectdescription","features":[44]},{"name":"alljoyn_aboutproxy_getversion","features":[44]},{"name":"alljoyn_applicationstate","features":[44]},{"name":"alljoyn_applicationstatelistener","features":[44]},{"name":"alljoyn_applicationstatelistener_callbacks","features":[44]},{"name":"alljoyn_applicationstatelistener_create","features":[44]},{"name":"alljoyn_applicationstatelistener_destroy","features":[44]},{"name":"alljoyn_applicationstatelistener_state_ptr","features":[44]},{"name":"alljoyn_authlistener","features":[44]},{"name":"alljoyn_authlistener_authenticationcomplete_ptr","features":[44]},{"name":"alljoyn_authlistener_callbacks","features":[44]},{"name":"alljoyn_authlistener_create","features":[44]},{"name":"alljoyn_authlistener_destroy","features":[44]},{"name":"alljoyn_authlistener_requestcredentials_ptr","features":[44]},{"name":"alljoyn_authlistener_requestcredentialsasync_ptr","features":[44]},{"name":"alljoyn_authlistener_requestcredentialsresponse","features":[44]},{"name":"alljoyn_authlistener_securityviolation_ptr","features":[44]},{"name":"alljoyn_authlistener_setsharedsecret","features":[44]},{"name":"alljoyn_authlistener_verifycredentials_ptr","features":[44]},{"name":"alljoyn_authlistener_verifycredentialsasync_ptr","features":[44]},{"name":"alljoyn_authlistener_verifycredentialsresponse","features":[44]},{"name":"alljoyn_authlistenerasync_callbacks","features":[44]},{"name":"alljoyn_authlistenerasync_create","features":[44]},{"name":"alljoyn_authlistenerasync_destroy","features":[44]},{"name":"alljoyn_autopinger","features":[44]},{"name":"alljoyn_autopinger_adddestination","features":[44]},{"name":"alljoyn_autopinger_addpinggroup","features":[44]},{"name":"alljoyn_autopinger_create","features":[44]},{"name":"alljoyn_autopinger_destination_found_ptr","features":[44]},{"name":"alljoyn_autopinger_destination_lost_ptr","features":[44]},{"name":"alljoyn_autopinger_destroy","features":[44]},{"name":"alljoyn_autopinger_pause","features":[44]},{"name":"alljoyn_autopinger_removedestination","features":[44]},{"name":"alljoyn_autopinger_removepinggroup","features":[44]},{"name":"alljoyn_autopinger_resume","features":[44]},{"name":"alljoyn_autopinger_setpinginterval","features":[44]},{"name":"alljoyn_busattachment","features":[44]},{"name":"alljoyn_busattachment_addlogonentry","features":[44]},{"name":"alljoyn_busattachment_addmatch","features":[44]},{"name":"alljoyn_busattachment_advertisename","features":[44]},{"name":"alljoyn_busattachment_bindsessionport","features":[44]},{"name":"alljoyn_busattachment_canceladvertisename","features":[44]},{"name":"alljoyn_busattachment_cancelfindadvertisedname","features":[44]},{"name":"alljoyn_busattachment_cancelfindadvertisednamebytransport","features":[44]},{"name":"alljoyn_busattachment_cancelwhoimplements_interface","features":[44]},{"name":"alljoyn_busattachment_cancelwhoimplements_interfaces","features":[44]},{"name":"alljoyn_busattachment_clearkeys","features":[44]},{"name":"alljoyn_busattachment_clearkeystore","features":[44]},{"name":"alljoyn_busattachment_connect","features":[44]},{"name":"alljoyn_busattachment_create","features":[44]},{"name":"alljoyn_busattachment_create_concurrency","features":[44]},{"name":"alljoyn_busattachment_createinterface","features":[44]},{"name":"alljoyn_busattachment_createinterface_secure","features":[44]},{"name":"alljoyn_busattachment_createinterfacesfromxml","features":[44]},{"name":"alljoyn_busattachment_deletedefaultkeystore","features":[44]},{"name":"alljoyn_busattachment_deleteinterface","features":[44]},{"name":"alljoyn_busattachment_destroy","features":[44]},{"name":"alljoyn_busattachment_disconnect","features":[44]},{"name":"alljoyn_busattachment_enableconcurrentcallbacks","features":[44]},{"name":"alljoyn_busattachment_enablepeersecurity","features":[44]},{"name":"alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener","features":[44]},{"name":"alljoyn_busattachment_findadvertisedname","features":[44]},{"name":"alljoyn_busattachment_findadvertisednamebytransport","features":[44]},{"name":"alljoyn_busattachment_getalljoyndebugobj","features":[44]},{"name":"alljoyn_busattachment_getalljoynproxyobj","features":[44]},{"name":"alljoyn_busattachment_getconcurrency","features":[44]},{"name":"alljoyn_busattachment_getconnectspec","features":[44]},{"name":"alljoyn_busattachment_getdbusproxyobj","features":[44]},{"name":"alljoyn_busattachment_getglobalguidstring","features":[44]},{"name":"alljoyn_busattachment_getinterface","features":[44]},{"name":"alljoyn_busattachment_getinterfaces","features":[44]},{"name":"alljoyn_busattachment_getkeyexpiration","features":[44]},{"name":"alljoyn_busattachment_getpeerguid","features":[44]},{"name":"alljoyn_busattachment_getpermissionconfigurator","features":[44]},{"name":"alljoyn_busattachment_gettimestamp","features":[44]},{"name":"alljoyn_busattachment_getuniquename","features":[44]},{"name":"alljoyn_busattachment_isconnected","features":[44]},{"name":"alljoyn_busattachment_ispeersecurityenabled","features":[44]},{"name":"alljoyn_busattachment_isstarted","features":[44]},{"name":"alljoyn_busattachment_isstopping","features":[44]},{"name":"alljoyn_busattachment_join","features":[44]},{"name":"alljoyn_busattachment_joinsession","features":[44]},{"name":"alljoyn_busattachment_joinsessionasync","features":[44]},{"name":"alljoyn_busattachment_joinsessioncb_ptr","features":[44]},{"name":"alljoyn_busattachment_leavesession","features":[44]},{"name":"alljoyn_busattachment_namehasowner","features":[44]},{"name":"alljoyn_busattachment_ping","features":[44]},{"name":"alljoyn_busattachment_registeraboutlistener","features":[44]},{"name":"alljoyn_busattachment_registerapplicationstatelistener","features":[44]},{"name":"alljoyn_busattachment_registerbuslistener","features":[44]},{"name":"alljoyn_busattachment_registerbusobject","features":[44]},{"name":"alljoyn_busattachment_registerbusobject_secure","features":[44]},{"name":"alljoyn_busattachment_registerkeystorelistener","features":[44]},{"name":"alljoyn_busattachment_registersignalhandler","features":[44]},{"name":"alljoyn_busattachment_registersignalhandlerwithrule","features":[44]},{"name":"alljoyn_busattachment_releasename","features":[44]},{"name":"alljoyn_busattachment_reloadkeystore","features":[44]},{"name":"alljoyn_busattachment_removematch","features":[44]},{"name":"alljoyn_busattachment_removesessionmember","features":[44]},{"name":"alljoyn_busattachment_requestname","features":[44]},{"name":"alljoyn_busattachment_secureconnection","features":[44]},{"name":"alljoyn_busattachment_secureconnectionasync","features":[44]},{"name":"alljoyn_busattachment_setdaemondebug","features":[44]},{"name":"alljoyn_busattachment_setkeyexpiration","features":[44]},{"name":"alljoyn_busattachment_setlinktimeout","features":[44]},{"name":"alljoyn_busattachment_setlinktimeoutasync","features":[44]},{"name":"alljoyn_busattachment_setlinktimeoutcb_ptr","features":[44]},{"name":"alljoyn_busattachment_setsessionlistener","features":[44]},{"name":"alljoyn_busattachment_start","features":[44]},{"name":"alljoyn_busattachment_stop","features":[44]},{"name":"alljoyn_busattachment_unbindsessionport","features":[44]},{"name":"alljoyn_busattachment_unregisteraboutlistener","features":[44]},{"name":"alljoyn_busattachment_unregisterallaboutlisteners","features":[44]},{"name":"alljoyn_busattachment_unregisterallhandlers","features":[44]},{"name":"alljoyn_busattachment_unregisterapplicationstatelistener","features":[44]},{"name":"alljoyn_busattachment_unregisterbuslistener","features":[44]},{"name":"alljoyn_busattachment_unregisterbusobject","features":[44]},{"name":"alljoyn_busattachment_unregistersignalhandler","features":[44]},{"name":"alljoyn_busattachment_unregistersignalhandlerwithrule","features":[44]},{"name":"alljoyn_busattachment_whoimplements_interface","features":[44]},{"name":"alljoyn_busattachment_whoimplements_interfaces","features":[44]},{"name":"alljoyn_buslistener","features":[44]},{"name":"alljoyn_buslistener_bus_disconnected_ptr","features":[44]},{"name":"alljoyn_buslistener_bus_prop_changed_ptr","features":[44]},{"name":"alljoyn_buslistener_bus_stopping_ptr","features":[44]},{"name":"alljoyn_buslistener_callbacks","features":[44]},{"name":"alljoyn_buslistener_create","features":[44]},{"name":"alljoyn_buslistener_destroy","features":[44]},{"name":"alljoyn_buslistener_found_advertised_name_ptr","features":[44]},{"name":"alljoyn_buslistener_listener_registered_ptr","features":[44]},{"name":"alljoyn_buslistener_listener_unregistered_ptr","features":[44]},{"name":"alljoyn_buslistener_lost_advertised_name_ptr","features":[44]},{"name":"alljoyn_buslistener_name_owner_changed_ptr","features":[44]},{"name":"alljoyn_busobject","features":[44]},{"name":"alljoyn_busobject_addinterface","features":[44]},{"name":"alljoyn_busobject_addinterface_announced","features":[44]},{"name":"alljoyn_busobject_addmethodhandler","features":[44]},{"name":"alljoyn_busobject_addmethodhandlers","features":[44]},{"name":"alljoyn_busobject_callbacks","features":[44]},{"name":"alljoyn_busobject_cancelsessionlessmessage","features":[44]},{"name":"alljoyn_busobject_cancelsessionlessmessage_serial","features":[44]},{"name":"alljoyn_busobject_create","features":[44]},{"name":"alljoyn_busobject_destroy","features":[44]},{"name":"alljoyn_busobject_emitpropertieschanged","features":[44]},{"name":"alljoyn_busobject_emitpropertychanged","features":[44]},{"name":"alljoyn_busobject_getannouncedinterfacenames","features":[44]},{"name":"alljoyn_busobject_getbusattachment","features":[44]},{"name":"alljoyn_busobject_getname","features":[44]},{"name":"alljoyn_busobject_getpath","features":[44]},{"name":"alljoyn_busobject_issecure","features":[44]},{"name":"alljoyn_busobject_methodentry","features":[44]},{"name":"alljoyn_busobject_methodreply_args","features":[44]},{"name":"alljoyn_busobject_methodreply_err","features":[44]},{"name":"alljoyn_busobject_methodreply_status","features":[44]},{"name":"alljoyn_busobject_object_registration_ptr","features":[44]},{"name":"alljoyn_busobject_prop_get_ptr","features":[44]},{"name":"alljoyn_busobject_prop_set_ptr","features":[44]},{"name":"alljoyn_busobject_setannounceflag","features":[44]},{"name":"alljoyn_busobject_signal","features":[44]},{"name":"alljoyn_certificateid","features":[44]},{"name":"alljoyn_certificateidarray","features":[44]},{"name":"alljoyn_claimcapability_masks","features":[44]},{"name":"alljoyn_claimcapabilityadditionalinfo_masks","features":[44]},{"name":"alljoyn_credentials","features":[44]},{"name":"alljoyn_credentials_clear","features":[44]},{"name":"alljoyn_credentials_create","features":[44]},{"name":"alljoyn_credentials_destroy","features":[44]},{"name":"alljoyn_credentials_getcertchain","features":[44]},{"name":"alljoyn_credentials_getexpiration","features":[44]},{"name":"alljoyn_credentials_getlogonentry","features":[44]},{"name":"alljoyn_credentials_getpassword","features":[44]},{"name":"alljoyn_credentials_getprivateKey","features":[44]},{"name":"alljoyn_credentials_getusername","features":[44]},{"name":"alljoyn_credentials_isset","features":[44]},{"name":"alljoyn_credentials_setcertchain","features":[44]},{"name":"alljoyn_credentials_setexpiration","features":[44]},{"name":"alljoyn_credentials_setlogonentry","features":[44]},{"name":"alljoyn_credentials_setpassword","features":[44]},{"name":"alljoyn_credentials_setprivatekey","features":[44]},{"name":"alljoyn_credentials_setusername","features":[44]},{"name":"alljoyn_getbuildinfo","features":[44]},{"name":"alljoyn_getnumericversion","features":[44]},{"name":"alljoyn_getversion","features":[44]},{"name":"alljoyn_init","features":[44]},{"name":"alljoyn_interfacedescription","features":[44]},{"name":"alljoyn_interfacedescription_activate","features":[44]},{"name":"alljoyn_interfacedescription_addannotation","features":[44]},{"name":"alljoyn_interfacedescription_addargannotation","features":[44]},{"name":"alljoyn_interfacedescription_addmember","features":[44]},{"name":"alljoyn_interfacedescription_addmemberannotation","features":[44]},{"name":"alljoyn_interfacedescription_addmethod","features":[44]},{"name":"alljoyn_interfacedescription_addproperty","features":[44]},{"name":"alljoyn_interfacedescription_addpropertyannotation","features":[44]},{"name":"alljoyn_interfacedescription_addsignal","features":[44]},{"name":"alljoyn_interfacedescription_eql","features":[44]},{"name":"alljoyn_interfacedescription_getannotation","features":[44]},{"name":"alljoyn_interfacedescription_getannotationatindex","features":[44]},{"name":"alljoyn_interfacedescription_getannotationscount","features":[44]},{"name":"alljoyn_interfacedescription_getargdescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_getdescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages","features":[44]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages2","features":[44]},{"name":"alljoyn_interfacedescription_getdescriptiontranslationcallback","features":[44]},{"name":"alljoyn_interfacedescription_getmember","features":[44]},{"name":"alljoyn_interfacedescription_getmemberannotation","features":[44]},{"name":"alljoyn_interfacedescription_getmemberargannotation","features":[44]},{"name":"alljoyn_interfacedescription_getmemberdescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_getmembers","features":[44]},{"name":"alljoyn_interfacedescription_getmethod","features":[44]},{"name":"alljoyn_interfacedescription_getname","features":[44]},{"name":"alljoyn_interfacedescription_getproperties","features":[44]},{"name":"alljoyn_interfacedescription_getproperty","features":[44]},{"name":"alljoyn_interfacedescription_getpropertyannotation","features":[44]},{"name":"alljoyn_interfacedescription_getpropertydescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_getsecuritypolicy","features":[44]},{"name":"alljoyn_interfacedescription_getsignal","features":[44]},{"name":"alljoyn_interfacedescription_hasdescription","features":[44]},{"name":"alljoyn_interfacedescription_hasmember","features":[44]},{"name":"alljoyn_interfacedescription_hasproperties","features":[44]},{"name":"alljoyn_interfacedescription_hasproperty","features":[44]},{"name":"alljoyn_interfacedescription_introspect","features":[44]},{"name":"alljoyn_interfacedescription_issecure","features":[44]},{"name":"alljoyn_interfacedescription_member","features":[44]},{"name":"alljoyn_interfacedescription_member_eql","features":[44]},{"name":"alljoyn_interfacedescription_member_getannotation","features":[44]},{"name":"alljoyn_interfacedescription_member_getannotationatindex","features":[44]},{"name":"alljoyn_interfacedescription_member_getannotationscount","features":[44]},{"name":"alljoyn_interfacedescription_member_getargannotation","features":[44]},{"name":"alljoyn_interfacedescription_member_getargannotationatindex","features":[44]},{"name":"alljoyn_interfacedescription_member_getargannotationscount","features":[44]},{"name":"alljoyn_interfacedescription_property","features":[44]},{"name":"alljoyn_interfacedescription_property_eql","features":[44]},{"name":"alljoyn_interfacedescription_property_getannotation","features":[44]},{"name":"alljoyn_interfacedescription_property_getannotationatindex","features":[44]},{"name":"alljoyn_interfacedescription_property_getannotationscount","features":[44]},{"name":"alljoyn_interfacedescription_securitypolicy","features":[44]},{"name":"alljoyn_interfacedescription_setargdescription","features":[44]},{"name":"alljoyn_interfacedescription_setargdescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_setdescription","features":[44]},{"name":"alljoyn_interfacedescription_setdescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_setdescriptionlanguage","features":[44]},{"name":"alljoyn_interfacedescription_setdescriptiontranslationcallback","features":[44]},{"name":"alljoyn_interfacedescription_setmemberdescription","features":[44]},{"name":"alljoyn_interfacedescription_setmemberdescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_setpropertydescription","features":[44]},{"name":"alljoyn_interfacedescription_setpropertydescriptionforlanguage","features":[44]},{"name":"alljoyn_interfacedescription_translation_callback_ptr","features":[44]},{"name":"alljoyn_keystore","features":[44]},{"name":"alljoyn_keystorelistener","features":[44]},{"name":"alljoyn_keystorelistener_acquireexclusivelock_ptr","features":[44]},{"name":"alljoyn_keystorelistener_callbacks","features":[44]},{"name":"alljoyn_keystorelistener_create","features":[44]},{"name":"alljoyn_keystorelistener_destroy","features":[44]},{"name":"alljoyn_keystorelistener_getkeys","features":[44]},{"name":"alljoyn_keystorelistener_loadrequest_ptr","features":[44]},{"name":"alljoyn_keystorelistener_putkeys","features":[44]},{"name":"alljoyn_keystorelistener_releaseexclusivelock_ptr","features":[44]},{"name":"alljoyn_keystorelistener_storerequest_ptr","features":[44]},{"name":"alljoyn_keystorelistener_with_synchronization_callbacks","features":[44]},{"name":"alljoyn_keystorelistener_with_synchronization_create","features":[44]},{"name":"alljoyn_manifestarray","features":[44]},{"name":"alljoyn_message","features":[44]},{"name":"alljoyn_message_create","features":[44]},{"name":"alljoyn_message_description","features":[44]},{"name":"alljoyn_message_destroy","features":[44]},{"name":"alljoyn_message_eql","features":[44]},{"name":"alljoyn_message_getarg","features":[44]},{"name":"alljoyn_message_getargs","features":[44]},{"name":"alljoyn_message_getauthmechanism","features":[44]},{"name":"alljoyn_message_getcallserial","features":[44]},{"name":"alljoyn_message_getcompressiontoken","features":[44]},{"name":"alljoyn_message_getdestination","features":[44]},{"name":"alljoyn_message_geterrorname","features":[44]},{"name":"alljoyn_message_getflags","features":[44]},{"name":"alljoyn_message_getinterface","features":[44]},{"name":"alljoyn_message_getmembername","features":[44]},{"name":"alljoyn_message_getobjectpath","features":[44]},{"name":"alljoyn_message_getreceiveendpointname","features":[44]},{"name":"alljoyn_message_getreplyserial","features":[44]},{"name":"alljoyn_message_getsender","features":[44]},{"name":"alljoyn_message_getsessionid","features":[44]},{"name":"alljoyn_message_getsignature","features":[44]},{"name":"alljoyn_message_gettimestamp","features":[44]},{"name":"alljoyn_message_gettype","features":[44]},{"name":"alljoyn_message_isbroadcastsignal","features":[44]},{"name":"alljoyn_message_isencrypted","features":[44]},{"name":"alljoyn_message_isexpired","features":[44]},{"name":"alljoyn_message_isglobalbroadcast","features":[44]},{"name":"alljoyn_message_issessionless","features":[44]},{"name":"alljoyn_message_isunreliable","features":[44]},{"name":"alljoyn_message_parseargs","features":[44]},{"name":"alljoyn_message_setendianess","features":[44]},{"name":"alljoyn_message_tostring","features":[44]},{"name":"alljoyn_messagereceiver_methodhandler_ptr","features":[44]},{"name":"alljoyn_messagereceiver_replyhandler_ptr","features":[44]},{"name":"alljoyn_messagereceiver_signalhandler_ptr","features":[44]},{"name":"alljoyn_messagetype","features":[44]},{"name":"alljoyn_msgarg","features":[44]},{"name":"alljoyn_msgarg_array_create","features":[44]},{"name":"alljoyn_msgarg_array_element","features":[44]},{"name":"alljoyn_msgarg_array_get","features":[44]},{"name":"alljoyn_msgarg_array_set","features":[44]},{"name":"alljoyn_msgarg_array_set_offset","features":[44]},{"name":"alljoyn_msgarg_array_signature","features":[44]},{"name":"alljoyn_msgarg_array_tostring","features":[44]},{"name":"alljoyn_msgarg_clear","features":[44]},{"name":"alljoyn_msgarg_clone","features":[44]},{"name":"alljoyn_msgarg_copy","features":[44]},{"name":"alljoyn_msgarg_create","features":[44]},{"name":"alljoyn_msgarg_create_and_set","features":[44]},{"name":"alljoyn_msgarg_destroy","features":[44]},{"name":"alljoyn_msgarg_equal","features":[44]},{"name":"alljoyn_msgarg_get","features":[44]},{"name":"alljoyn_msgarg_get_array_element","features":[44]},{"name":"alljoyn_msgarg_get_array_elementsignature","features":[44]},{"name":"alljoyn_msgarg_get_array_numberofelements","features":[44]},{"name":"alljoyn_msgarg_get_bool","features":[44]},{"name":"alljoyn_msgarg_get_bool_array","features":[44]},{"name":"alljoyn_msgarg_get_double","features":[44]},{"name":"alljoyn_msgarg_get_double_array","features":[44]},{"name":"alljoyn_msgarg_get_int16","features":[44]},{"name":"alljoyn_msgarg_get_int16_array","features":[44]},{"name":"alljoyn_msgarg_get_int32","features":[44]},{"name":"alljoyn_msgarg_get_int32_array","features":[44]},{"name":"alljoyn_msgarg_get_int64","features":[44]},{"name":"alljoyn_msgarg_get_int64_array","features":[44]},{"name":"alljoyn_msgarg_get_objectpath","features":[44]},{"name":"alljoyn_msgarg_get_signature","features":[44]},{"name":"alljoyn_msgarg_get_string","features":[44]},{"name":"alljoyn_msgarg_get_uint16","features":[44]},{"name":"alljoyn_msgarg_get_uint16_array","features":[44]},{"name":"alljoyn_msgarg_get_uint32","features":[44]},{"name":"alljoyn_msgarg_get_uint32_array","features":[44]},{"name":"alljoyn_msgarg_get_uint64","features":[44]},{"name":"alljoyn_msgarg_get_uint64_array","features":[44]},{"name":"alljoyn_msgarg_get_uint8","features":[44]},{"name":"alljoyn_msgarg_get_uint8_array","features":[44]},{"name":"alljoyn_msgarg_get_variant","features":[44]},{"name":"alljoyn_msgarg_get_variant_array","features":[44]},{"name":"alljoyn_msgarg_getdictelement","features":[44]},{"name":"alljoyn_msgarg_getkey","features":[44]},{"name":"alljoyn_msgarg_getmember","features":[44]},{"name":"alljoyn_msgarg_getnummembers","features":[44]},{"name":"alljoyn_msgarg_gettype","features":[44]},{"name":"alljoyn_msgarg_getvalue","features":[44]},{"name":"alljoyn_msgarg_hassignature","features":[44]},{"name":"alljoyn_msgarg_set","features":[44]},{"name":"alljoyn_msgarg_set_and_stabilize","features":[44]},{"name":"alljoyn_msgarg_set_bool","features":[44]},{"name":"alljoyn_msgarg_set_bool_array","features":[44]},{"name":"alljoyn_msgarg_set_double","features":[44]},{"name":"alljoyn_msgarg_set_double_array","features":[44]},{"name":"alljoyn_msgarg_set_int16","features":[44]},{"name":"alljoyn_msgarg_set_int16_array","features":[44]},{"name":"alljoyn_msgarg_set_int32","features":[44]},{"name":"alljoyn_msgarg_set_int32_array","features":[44]},{"name":"alljoyn_msgarg_set_int64","features":[44]},{"name":"alljoyn_msgarg_set_int64_array","features":[44]},{"name":"alljoyn_msgarg_set_objectpath","features":[44]},{"name":"alljoyn_msgarg_set_objectpath_array","features":[44]},{"name":"alljoyn_msgarg_set_signature","features":[44]},{"name":"alljoyn_msgarg_set_signature_array","features":[44]},{"name":"alljoyn_msgarg_set_string","features":[44]},{"name":"alljoyn_msgarg_set_string_array","features":[44]},{"name":"alljoyn_msgarg_set_uint16","features":[44]},{"name":"alljoyn_msgarg_set_uint16_array","features":[44]},{"name":"alljoyn_msgarg_set_uint32","features":[44]},{"name":"alljoyn_msgarg_set_uint32_array","features":[44]},{"name":"alljoyn_msgarg_set_uint64","features":[44]},{"name":"alljoyn_msgarg_set_uint64_array","features":[44]},{"name":"alljoyn_msgarg_set_uint8","features":[44]},{"name":"alljoyn_msgarg_set_uint8_array","features":[44]},{"name":"alljoyn_msgarg_setdictentry","features":[44]},{"name":"alljoyn_msgarg_setstruct","features":[44]},{"name":"alljoyn_msgarg_signature","features":[44]},{"name":"alljoyn_msgarg_stabilize","features":[44]},{"name":"alljoyn_msgarg_tostring","features":[44]},{"name":"alljoyn_observer","features":[44]},{"name":"alljoyn_observer_create","features":[44]},{"name":"alljoyn_observer_destroy","features":[44]},{"name":"alljoyn_observer_get","features":[44]},{"name":"alljoyn_observer_getfirst","features":[44]},{"name":"alljoyn_observer_getnext","features":[44]},{"name":"alljoyn_observer_object_discovered_ptr","features":[44]},{"name":"alljoyn_observer_object_lost_ptr","features":[44]},{"name":"alljoyn_observer_registerlistener","features":[44]},{"name":"alljoyn_observer_unregisteralllisteners","features":[44]},{"name":"alljoyn_observer_unregisterlistener","features":[44]},{"name":"alljoyn_observerlistener","features":[44]},{"name":"alljoyn_observerlistener_callback","features":[44]},{"name":"alljoyn_observerlistener_create","features":[44]},{"name":"alljoyn_observerlistener_destroy","features":[44]},{"name":"alljoyn_passwordmanager_setcredentials","features":[44]},{"name":"alljoyn_permissionconfigurationlistener","features":[44]},{"name":"alljoyn_permissionconfigurationlistener_callbacks","features":[44]},{"name":"alljoyn_permissionconfigurationlistener_create","features":[44]},{"name":"alljoyn_permissionconfigurationlistener_destroy","features":[44]},{"name":"alljoyn_permissionconfigurationlistener_endmanagement_ptr","features":[44]},{"name":"alljoyn_permissionconfigurationlistener_factoryreset_ptr","features":[44]},{"name":"alljoyn_permissionconfigurationlistener_policychanged_ptr","features":[44]},{"name":"alljoyn_permissionconfigurationlistener_startmanagement_ptr","features":[44]},{"name":"alljoyn_permissionconfigurator","features":[44]},{"name":"alljoyn_permissionconfigurator_certificatechain_destroy","features":[44]},{"name":"alljoyn_permissionconfigurator_certificateid_cleanup","features":[44]},{"name":"alljoyn_permissionconfigurator_certificateidarray_cleanup","features":[44]},{"name":"alljoyn_permissionconfigurator_claim","features":[44]},{"name":"alljoyn_permissionconfigurator_endmanagement","features":[44]},{"name":"alljoyn_permissionconfigurator_getapplicationstate","features":[44]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilities","features":[44]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo","features":[44]},{"name":"alljoyn_permissionconfigurator_getdefaultclaimcapabilities","features":[44]},{"name":"alljoyn_permissionconfigurator_getdefaultpolicy","features":[44]},{"name":"alljoyn_permissionconfigurator_getidentity","features":[44]},{"name":"alljoyn_permissionconfigurator_getidentitycertificateid","features":[44]},{"name":"alljoyn_permissionconfigurator_getmanifests","features":[44]},{"name":"alljoyn_permissionconfigurator_getmanifesttemplate","features":[44]},{"name":"alljoyn_permissionconfigurator_getmembershipsummaries","features":[44]},{"name":"alljoyn_permissionconfigurator_getpolicy","features":[44]},{"name":"alljoyn_permissionconfigurator_getpublickey","features":[44]},{"name":"alljoyn_permissionconfigurator_installmanifests","features":[44]},{"name":"alljoyn_permissionconfigurator_installmembership","features":[44]},{"name":"alljoyn_permissionconfigurator_manifestarray_cleanup","features":[44]},{"name":"alljoyn_permissionconfigurator_manifesttemplate_destroy","features":[44]},{"name":"alljoyn_permissionconfigurator_policy_destroy","features":[44]},{"name":"alljoyn_permissionconfigurator_publickey_destroy","features":[44]},{"name":"alljoyn_permissionconfigurator_removemembership","features":[44]},{"name":"alljoyn_permissionconfigurator_reset","features":[44]},{"name":"alljoyn_permissionconfigurator_resetpolicy","features":[44]},{"name":"alljoyn_permissionconfigurator_setapplicationstate","features":[44]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilities","features":[44]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo","features":[44]},{"name":"alljoyn_permissionconfigurator_setmanifesttemplatefromxml","features":[44]},{"name":"alljoyn_permissionconfigurator_startmanagement","features":[44]},{"name":"alljoyn_permissionconfigurator_updateidentity","features":[44]},{"name":"alljoyn_permissionconfigurator_updatepolicy","features":[44]},{"name":"alljoyn_pinglistener","features":[44]},{"name":"alljoyn_pinglistener_callback","features":[44]},{"name":"alljoyn_pinglistener_create","features":[44]},{"name":"alljoyn_pinglistener_destroy","features":[44]},{"name":"alljoyn_proxybusobject","features":[44]},{"name":"alljoyn_proxybusobject_addchild","features":[44]},{"name":"alljoyn_proxybusobject_addinterface","features":[44]},{"name":"alljoyn_proxybusobject_addinterface_by_name","features":[44]},{"name":"alljoyn_proxybusobject_copy","features":[44]},{"name":"alljoyn_proxybusobject_create","features":[44]},{"name":"alljoyn_proxybusobject_create_secure","features":[44]},{"name":"alljoyn_proxybusobject_destroy","features":[44]},{"name":"alljoyn_proxybusobject_enablepropertycaching","features":[44]},{"name":"alljoyn_proxybusobject_getallproperties","features":[44]},{"name":"alljoyn_proxybusobject_getallpropertiesasync","features":[44]},{"name":"alljoyn_proxybusobject_getchild","features":[44]},{"name":"alljoyn_proxybusobject_getchildren","features":[44]},{"name":"alljoyn_proxybusobject_getinterface","features":[44]},{"name":"alljoyn_proxybusobject_getinterfaces","features":[44]},{"name":"alljoyn_proxybusobject_getpath","features":[44]},{"name":"alljoyn_proxybusobject_getproperty","features":[44]},{"name":"alljoyn_proxybusobject_getpropertyasync","features":[44]},{"name":"alljoyn_proxybusobject_getservicename","features":[44]},{"name":"alljoyn_proxybusobject_getsessionid","features":[44]},{"name":"alljoyn_proxybusobject_getuniquename","features":[44]},{"name":"alljoyn_proxybusobject_implementsinterface","features":[44]},{"name":"alljoyn_proxybusobject_introspectremoteobject","features":[44]},{"name":"alljoyn_proxybusobject_introspectremoteobjectasync","features":[44]},{"name":"alljoyn_proxybusobject_issecure","features":[44]},{"name":"alljoyn_proxybusobject_isvalid","features":[44]},{"name":"alljoyn_proxybusobject_listener_getallpropertiescb_ptr","features":[44]},{"name":"alljoyn_proxybusobject_listener_getpropertycb_ptr","features":[44]},{"name":"alljoyn_proxybusobject_listener_introspectcb_ptr","features":[44]},{"name":"alljoyn_proxybusobject_listener_propertieschanged_ptr","features":[44]},{"name":"alljoyn_proxybusobject_listener_setpropertycb_ptr","features":[44]},{"name":"alljoyn_proxybusobject_methodcall","features":[44]},{"name":"alljoyn_proxybusobject_methodcall_member","features":[44]},{"name":"alljoyn_proxybusobject_methodcall_member_noreply","features":[44]},{"name":"alljoyn_proxybusobject_methodcall_noreply","features":[44]},{"name":"alljoyn_proxybusobject_methodcallasync","features":[44]},{"name":"alljoyn_proxybusobject_methodcallasync_member","features":[44]},{"name":"alljoyn_proxybusobject_parsexml","features":[44]},{"name":"alljoyn_proxybusobject_ref","features":[44]},{"name":"alljoyn_proxybusobject_ref_create","features":[44]},{"name":"alljoyn_proxybusobject_ref_decref","features":[44]},{"name":"alljoyn_proxybusobject_ref_get","features":[44]},{"name":"alljoyn_proxybusobject_ref_incref","features":[44]},{"name":"alljoyn_proxybusobject_registerpropertieschangedlistener","features":[44]},{"name":"alljoyn_proxybusobject_removechild","features":[44]},{"name":"alljoyn_proxybusobject_secureconnection","features":[44]},{"name":"alljoyn_proxybusobject_secureconnectionasync","features":[44]},{"name":"alljoyn_proxybusobject_setproperty","features":[44]},{"name":"alljoyn_proxybusobject_setpropertyasync","features":[44]},{"name":"alljoyn_proxybusobject_unregisterpropertieschangedlistener","features":[44]},{"name":"alljoyn_routerinit","features":[44]},{"name":"alljoyn_routerinitwithconfig","features":[44]},{"name":"alljoyn_routershutdown","features":[44]},{"name":"alljoyn_securityapplicationproxy","features":[44]},{"name":"alljoyn_securityapplicationproxy_claim","features":[44]},{"name":"alljoyn_securityapplicationproxy_computemanifestdigest","features":[44]},{"name":"alljoyn_securityapplicationproxy_create","features":[44]},{"name":"alljoyn_securityapplicationproxy_destroy","features":[44]},{"name":"alljoyn_securityapplicationproxy_digest_destroy","features":[44]},{"name":"alljoyn_securityapplicationproxy_eccpublickey_destroy","features":[44]},{"name":"alljoyn_securityapplicationproxy_endmanagement","features":[44]},{"name":"alljoyn_securityapplicationproxy_getapplicationstate","features":[44]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilities","features":[44]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo","features":[44]},{"name":"alljoyn_securityapplicationproxy_getdefaultpolicy","features":[44]},{"name":"alljoyn_securityapplicationproxy_geteccpublickey","features":[44]},{"name":"alljoyn_securityapplicationproxy_getmanifesttemplate","features":[44]},{"name":"alljoyn_securityapplicationproxy_getpermissionmanagementsessionport","features":[44]},{"name":"alljoyn_securityapplicationproxy_getpolicy","features":[44]},{"name":"alljoyn_securityapplicationproxy_installmembership","features":[44]},{"name":"alljoyn_securityapplicationproxy_manifest_destroy","features":[44]},{"name":"alljoyn_securityapplicationproxy_manifesttemplate_destroy","features":[44]},{"name":"alljoyn_securityapplicationproxy_policy_destroy","features":[44]},{"name":"alljoyn_securityapplicationproxy_reset","features":[44]},{"name":"alljoyn_securityapplicationproxy_resetpolicy","features":[44]},{"name":"alljoyn_securityapplicationproxy_setmanifestsignature","features":[44]},{"name":"alljoyn_securityapplicationproxy_signmanifest","features":[44]},{"name":"alljoyn_securityapplicationproxy_startmanagement","features":[44]},{"name":"alljoyn_securityapplicationproxy_updateidentity","features":[44]},{"name":"alljoyn_securityapplicationproxy_updatepolicy","features":[44]},{"name":"alljoyn_sessionlistener","features":[44]},{"name":"alljoyn_sessionlistener_callbacks","features":[44]},{"name":"alljoyn_sessionlistener_create","features":[44]},{"name":"alljoyn_sessionlistener_destroy","features":[44]},{"name":"alljoyn_sessionlistener_sessionlost_ptr","features":[44]},{"name":"alljoyn_sessionlistener_sessionmemberadded_ptr","features":[44]},{"name":"alljoyn_sessionlistener_sessionmemberremoved_ptr","features":[44]},{"name":"alljoyn_sessionlostreason","features":[44]},{"name":"alljoyn_sessionopts","features":[44]},{"name":"alljoyn_sessionopts_cmp","features":[44]},{"name":"alljoyn_sessionopts_create","features":[44]},{"name":"alljoyn_sessionopts_destroy","features":[44]},{"name":"alljoyn_sessionopts_get_multipoint","features":[44]},{"name":"alljoyn_sessionopts_get_proximity","features":[44]},{"name":"alljoyn_sessionopts_get_traffic","features":[44]},{"name":"alljoyn_sessionopts_get_transports","features":[44]},{"name":"alljoyn_sessionopts_iscompatible","features":[44]},{"name":"alljoyn_sessionopts_set_multipoint","features":[44]},{"name":"alljoyn_sessionopts_set_proximity","features":[44]},{"name":"alljoyn_sessionopts_set_traffic","features":[44]},{"name":"alljoyn_sessionopts_set_transports","features":[44]},{"name":"alljoyn_sessionportlistener","features":[44]},{"name":"alljoyn_sessionportlistener_acceptsessionjoiner_ptr","features":[44]},{"name":"alljoyn_sessionportlistener_callbacks","features":[44]},{"name":"alljoyn_sessionportlistener_create","features":[44]},{"name":"alljoyn_sessionportlistener_destroy","features":[44]},{"name":"alljoyn_sessionportlistener_sessionjoined_ptr","features":[44]},{"name":"alljoyn_shutdown","features":[44]},{"name":"alljoyn_typeid","features":[44]},{"name":"alljoyn_unity_deferred_callbacks_process","features":[44]},{"name":"alljoyn_unity_set_deferred_callback_mainthread_only","features":[44]}],"368":[{"name":"FACILITY_NONE","features":[45]},{"name":"FACILITY_WINBIO","features":[45]},{"name":"GUID_DEVINTERFACE_BIOMETRIC_READER","features":[45]},{"name":"IOCTL_BIOMETRIC_VENDOR","features":[45]},{"name":"PIBIO_ENGINE_ACCEPT_PRIVATE_SENSOR_TYPE_INFO_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_ACCEPT_SAMPLE_DATA_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_ACTIVATE_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_ATTACH_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_CHECK_FOR_DUPLICATE_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_CLEAR_CONTEXT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_COMMIT_ENROLLMENT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_PRIVILEGED_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_AUTHENTICATED_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_CREATE_KEY_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_DEACTIVATE_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_DETACH_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_DISCARD_ENROLLMENT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_EXPORT_ENGINE_DATA_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_HASH_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_STATUS_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_IDENTIFY_ALL_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_AUTHENTICATED_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_SECURE_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_NOTIFY_POWER_CHANGE_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_PIPELINE_CLEANUP_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_PIPELINE_INIT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_QUERY_CALIBRATION_DATA_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_ENROLLMENT_STATUS_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_INFO_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_QUERY_HASH_ALGORITHMS_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_QUERY_INDEX_VECTOR_SIZE_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_QUERY_PREFERRED_FORMAT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_QUERY_SAMPLE_HINT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_REFRESH_CACHE_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_RESERVED_1_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_SELECT_CALIBRATION_FORMAT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_SET_ACCOUNT_POLICY_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_PARAMETERS_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_SELECTOR_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_SET_HASH_ALGORITHM_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_UPDATE_ENROLLMENT_FN","features":[45,1,6]},{"name":"PIBIO_ENGINE_VERIFY_FEATURE_SET_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_ALLOCATE_MEMORY_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_FREE_MEMORY_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_GET_PROPERTY_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_LOCK_AND_VALIDATE_SECURE_BUFFER_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_RELEASE_SECURE_BUFFER_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_SET_UNIT_STATUS_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_CLEAR_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_BEGIN_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_END_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_NEXT_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_BEGIN_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_END_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_NEXT_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_DECRYPT_SAMPLE_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_QUERY_AUTHORIZED_ENROLLMENTS_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_1_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_2_FN","features":[45,1,6]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_3_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_ACCEPT_CALIBRATION_DATA_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_ACTIVATE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_RAW_BUFFER_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_SECURE_BUFFER_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_ATTACH_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_CANCEL_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_CLEAR_CONTEXT_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_CONNECT_SECURE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_PRIVILEGED_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_DEACTIVATE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_DETACH_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_EXPORT_SENSOR_DATA_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_FINISH_CAPTURE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_FINISH_NOTIFY_WAKE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_GET_INDICATOR_STATUS_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_NOTIFY_POWER_CHANGE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_PIPELINE_CLEANUP_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_PIPELINE_INIT_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_PUSH_DATA_TO_ENGINE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_QUERY_CALIBRATION_FORMATS_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_QUERY_EXTENDED_INFO_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_QUERY_PRIVATE_SENSOR_TYPE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_QUERY_STATUS_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_RESET_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_SET_CALIBRATION_FORMAT_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_SET_INDICATOR_STATUS_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_SET_MODE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_START_CAPTURE_EX_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_START_CAPTURE_FN","features":[45,1,6]},{"name":"PIBIO_SENSOR_START_NOTIFY_WAKE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_ACTIVATE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_ADD_RECORD_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_ATTACH_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_CLEAR_CONTEXT_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_CLOSE_DATABASE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_PRIVILEGED_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_CREATE_DATABASE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_DEACTIVATE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_DELETE_RECORD_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_DETACH_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_ERASE_DATABASE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_FIRST_RECORD_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_GET_CURRENT_RECORD_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_GET_DATABASE_SIZE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_GET_DATA_FORMAT_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_GET_RECORD_COUNT_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_NEXT_RECORD_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_NOTIFY_DATABASE_CHANGE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_NOTIFY_POWER_CHANGE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_OPEN_DATABASE_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_PIPELINE_CLEANUP_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_PIPELINE_INIT_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_QUERY_BY_CONTENT_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_QUERY_BY_SUBJECT_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_QUERY_EXTENDED_INFO_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_RESERVED_1_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_RESERVED_2_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_BEGIN_FN","features":[45,1,6]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_COMMIT_FN","features":[45,1,6]},{"name":"PWINBIO_ASYNC_COMPLETION_CALLBACK","features":[45,1]},{"name":"PWINBIO_CAPTURE_CALLBACK","features":[45]},{"name":"PWINBIO_ENROLL_CAPTURE_CALLBACK","features":[45]},{"name":"PWINBIO_EVENT_CALLBACK","features":[45]},{"name":"PWINBIO_IDENTIFY_CALLBACK","features":[45]},{"name":"PWINBIO_LOCATE_SENSOR_CALLBACK","features":[45]},{"name":"PWINBIO_QUERY_ENGINE_INTERFACE_FN","features":[45,1,6]},{"name":"PWINBIO_QUERY_SENSOR_INTERFACE_FN","features":[45,1,6]},{"name":"PWINBIO_QUERY_STORAGE_INTERFACE_FN","features":[45,1,6]},{"name":"PWINBIO_VERIFY_CALLBACK","features":[45,1]},{"name":"WINBIO_ACCOUNT_POLICY","features":[45]},{"name":"WINBIO_ADAPTER_INTERFACE_VERSION","features":[45]},{"name":"WINBIO_ANSI_381_IMG_BIT_PACKED","features":[45]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG","features":[45]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG2000","features":[45]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_PNG","features":[45]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_WSQ","features":[45]},{"name":"WINBIO_ANSI_381_IMG_UNCOMPRESSED","features":[45]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LATENT","features":[45]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_CONTACTLESS","features":[45]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_PLAIN","features":[45]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_ROLLED","features":[45]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_PLAIN","features":[45]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_ROLLED","features":[45]},{"name":"WINBIO_ANSI_381_IMP_TYPE_SWIPE","features":[45]},{"name":"WINBIO_ANSI_381_PIXELS_PER_CM","features":[45]},{"name":"WINBIO_ANSI_381_PIXELS_PER_INCH","features":[45]},{"name":"WINBIO_ANTI_SPOOF_DISABLE","features":[45]},{"name":"WINBIO_ANTI_SPOOF_ENABLE","features":[45]},{"name":"WINBIO_ANTI_SPOOF_POLICY","features":[45]},{"name":"WINBIO_ANTI_SPOOF_POLICY_ACTION","features":[45]},{"name":"WINBIO_ANTI_SPOOF_REMOVE","features":[45]},{"name":"WINBIO_ASYNC_NOTIFICATION_METHOD","features":[45]},{"name":"WINBIO_ASYNC_NOTIFY_CALLBACK","features":[45]},{"name":"WINBIO_ASYNC_NOTIFY_MAXIMUM_VALUE","features":[45]},{"name":"WINBIO_ASYNC_NOTIFY_MESSAGE","features":[45]},{"name":"WINBIO_ASYNC_NOTIFY_NONE","features":[45]},{"name":"WINBIO_ASYNC_RESULT","features":[45,1]},{"name":"WINBIO_BDB_ANSI_381_HEADER","features":[45]},{"name":"WINBIO_BDB_ANSI_381_RECORD","features":[45]},{"name":"WINBIO_BIR","features":[45]},{"name":"WINBIO_BIR_ALGIN_SIZE","features":[45]},{"name":"WINBIO_BIR_ALIGN_SIZE","features":[45]},{"name":"WINBIO_BIR_DATA","features":[45]},{"name":"WINBIO_BIR_HEADER","features":[45]},{"name":"WINBIO_BLANK_PAYLOAD","features":[45]},{"name":"WINBIO_BSP_SCHEMA","features":[45]},{"name":"WINBIO_CALIBRATION_INFO","features":[45]},{"name":"WINBIO_CAPTURE_DATA","features":[45]},{"name":"WINBIO_CAPTURE_PARAMETERS","features":[45]},{"name":"WINBIO_COMPONENT","features":[45]},{"name":"WINBIO_COMPONENT_ENGINE","features":[45]},{"name":"WINBIO_COMPONENT_SENSOR","features":[45]},{"name":"WINBIO_COMPONENT_STORAGE","features":[45]},{"name":"WINBIO_CREDENTIAL_ALL","features":[45]},{"name":"WINBIO_CREDENTIAL_FORMAT","features":[45]},{"name":"WINBIO_CREDENTIAL_NOT_SET","features":[45]},{"name":"WINBIO_CREDENTIAL_PASSWORD","features":[45]},{"name":"WINBIO_CREDENTIAL_SET","features":[45]},{"name":"WINBIO_CREDENTIAL_STATE","features":[45]},{"name":"WINBIO_CREDENTIAL_TYPE","features":[45]},{"name":"WINBIO_DATA","features":[45]},{"name":"WINBIO_DATA_FLAG_INTEGRITY","features":[45]},{"name":"WINBIO_DATA_FLAG_INTERMEDIATE","features":[45]},{"name":"WINBIO_DATA_FLAG_OPTION_MASK_PRESENT","features":[45]},{"name":"WINBIO_DATA_FLAG_PRIVACY","features":[45]},{"name":"WINBIO_DATA_FLAG_PROCESSED","features":[45]},{"name":"WINBIO_DATA_FLAG_RAW","features":[45]},{"name":"WINBIO_DATA_FLAG_SIGNED","features":[45]},{"name":"WINBIO_DIAGNOSTICS","features":[45]},{"name":"WINBIO_ENCRYPTED_CAPTURE_PARAMS","features":[45]},{"name":"WINBIO_ENGINE_INTERFACE","features":[45,1,6]},{"name":"WINBIO_EVENT","features":[45]},{"name":"WINBIO_EXTENDED_ENGINE_INFO","features":[45]},{"name":"WINBIO_EXTENDED_ENROLLMENT_PARAMETERS","features":[45]},{"name":"WINBIO_EXTENDED_ENROLLMENT_STATUS","features":[45,1]},{"name":"WINBIO_EXTENDED_SENSOR_INFO","features":[45,1]},{"name":"WINBIO_EXTENDED_STORAGE_INFO","features":[45]},{"name":"WINBIO_EXTENDED_UNIT_STATUS","features":[45]},{"name":"WINBIO_E_ADAPTER_INTEGRITY_FAILURE","features":[45]},{"name":"WINBIO_E_AUTO_LOGON_DISABLED","features":[45]},{"name":"WINBIO_E_BAD_CAPTURE","features":[45]},{"name":"WINBIO_E_CALIBRATION_BUFFER_INVALID","features":[45]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_LARGE","features":[45]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_SMALL","features":[45]},{"name":"WINBIO_E_CANCELED","features":[45]},{"name":"WINBIO_E_CAPTURE_ABORTED","features":[45]},{"name":"WINBIO_E_CONFIGURATION_FAILURE","features":[45]},{"name":"WINBIO_E_CRED_PROV_DISABLED","features":[45]},{"name":"WINBIO_E_CRED_PROV_NO_CREDENTIAL","features":[45]},{"name":"WINBIO_E_CRED_PROV_SECURITY_LOCKOUT","features":[45]},{"name":"WINBIO_E_DATABASE_ALREADY_EXISTS","features":[45]},{"name":"WINBIO_E_DATABASE_BAD_INDEX_VECTOR","features":[45]},{"name":"WINBIO_E_DATABASE_CANT_CLOSE","features":[45]},{"name":"WINBIO_E_DATABASE_CANT_CREATE","features":[45]},{"name":"WINBIO_E_DATABASE_CANT_ERASE","features":[45]},{"name":"WINBIO_E_DATABASE_CANT_FIND","features":[45]},{"name":"WINBIO_E_DATABASE_CANT_OPEN","features":[45]},{"name":"WINBIO_E_DATABASE_CORRUPTED","features":[45]},{"name":"WINBIO_E_DATABASE_EOF","features":[45]},{"name":"WINBIO_E_DATABASE_FULL","features":[45]},{"name":"WINBIO_E_DATABASE_LOCKED","features":[45]},{"name":"WINBIO_E_DATABASE_NO_MORE_RECORDS","features":[45]},{"name":"WINBIO_E_DATABASE_NO_RESULTS","features":[45]},{"name":"WINBIO_E_DATABASE_NO_SUCH_RECORD","features":[45]},{"name":"WINBIO_E_DATABASE_READ_ERROR","features":[45]},{"name":"WINBIO_E_DATABASE_WRITE_ERROR","features":[45]},{"name":"WINBIO_E_DATA_COLLECTION_IN_PROGRESS","features":[45]},{"name":"WINBIO_E_DATA_PROTECTION_FAILURE","features":[45]},{"name":"WINBIO_E_DEADLOCK_DETECTED","features":[45]},{"name":"WINBIO_E_DEVICE_BUSY","features":[45]},{"name":"WINBIO_E_DEVICE_FAILURE","features":[45]},{"name":"WINBIO_E_DISABLED","features":[45]},{"name":"WINBIO_E_DUPLICATE_ENROLLMENT","features":[45]},{"name":"WINBIO_E_DUPLICATE_TEMPLATE","features":[45]},{"name":"WINBIO_E_ENROLLMENT_CANCELED_BY_SUSPEND","features":[45]},{"name":"WINBIO_E_ENROLLMENT_IN_PROGRESS","features":[45]},{"name":"WINBIO_E_EVENT_MONITOR_ACTIVE","features":[45]},{"name":"WINBIO_E_FAST_USER_SWITCH_DISABLED","features":[45]},{"name":"WINBIO_E_INCORRECT_BSP","features":[45]},{"name":"WINBIO_E_INCORRECT_SENSOR_POOL","features":[45]},{"name":"WINBIO_E_INCORRECT_SESSION_TYPE","features":[45]},{"name":"WINBIO_E_INSECURE_SENSOR","features":[45]},{"name":"WINBIO_E_INVALID_BUFFER","features":[45]},{"name":"WINBIO_E_INVALID_BUFFER_ID","features":[45]},{"name":"WINBIO_E_INVALID_CALIBRATION_FORMAT_ARRAY","features":[45]},{"name":"WINBIO_E_INVALID_CONTROL_CODE","features":[45]},{"name":"WINBIO_E_INVALID_DEVICE_STATE","features":[45]},{"name":"WINBIO_E_INVALID_KEY_IDENTIFIER","features":[45]},{"name":"WINBIO_E_INVALID_OPERATION","features":[45]},{"name":"WINBIO_E_INVALID_PROPERTY_ID","features":[45]},{"name":"WINBIO_E_INVALID_PROPERTY_TYPE","features":[45]},{"name":"WINBIO_E_INVALID_SENSOR_MODE","features":[45]},{"name":"WINBIO_E_INVALID_SUBFACTOR","features":[45]},{"name":"WINBIO_E_INVALID_TICKET","features":[45]},{"name":"WINBIO_E_INVALID_UNIT","features":[45]},{"name":"WINBIO_E_KEY_CREATION_FAILED","features":[45]},{"name":"WINBIO_E_KEY_IDENTIFIER_BUFFER_TOO_SMALL","features":[45]},{"name":"WINBIO_E_LOCK_VIOLATION","features":[45]},{"name":"WINBIO_E_MAX_ERROR_COUNT_EXCEEDED","features":[45]},{"name":"WINBIO_E_NOT_ACTIVE_CONSOLE","features":[45]},{"name":"WINBIO_E_NO_CAPTURE_DATA","features":[45]},{"name":"WINBIO_E_NO_MATCH","features":[45]},{"name":"WINBIO_E_NO_PREBOOT_IDENTITY","features":[45]},{"name":"WINBIO_E_NO_SUPPORTED_CALIBRATION_FORMAT","features":[45]},{"name":"WINBIO_E_POLICY_PROTECTION_UNAVAILABLE","features":[45]},{"name":"WINBIO_E_PRESENCE_MONITOR_ACTIVE","features":[45]},{"name":"WINBIO_E_PROPERTY_UNAVAILABLE","features":[45]},{"name":"WINBIO_E_SAS_ENABLED","features":[45]},{"name":"WINBIO_E_SELECTION_REQUIRED","features":[45]},{"name":"WINBIO_E_SENSOR_UNAVAILABLE","features":[45]},{"name":"WINBIO_E_SESSION_BUSY","features":[45]},{"name":"WINBIO_E_SESSION_HANDLE_CLOSED","features":[45]},{"name":"WINBIO_E_TICKET_QUOTA_EXCEEDED","features":[45]},{"name":"WINBIO_E_TRUSTLET_INTEGRITY_FAIL","features":[45]},{"name":"WINBIO_E_UNKNOWN_ID","features":[45]},{"name":"WINBIO_E_UNSUPPORTED_DATA_FORMAT","features":[45]},{"name":"WINBIO_E_UNSUPPORTED_DATA_TYPE","features":[45]},{"name":"WINBIO_E_UNSUPPORTED_FACTOR","features":[45]},{"name":"WINBIO_E_UNSUPPORTED_POOL_TYPE","features":[45]},{"name":"WINBIO_E_UNSUPPORTED_PROPERTY","features":[45]},{"name":"WINBIO_E_UNSUPPORTED_PURPOSE","features":[45]},{"name":"WINBIO_E_UNSUPPORTED_SENSOR_CALIBRATION_FORMAT","features":[45]},{"name":"WINBIO_FP_BU_STATE","features":[45,1]},{"name":"WINBIO_FRAMEWORK_INTERFACE","features":[45,1,6]},{"name":"WINBIO_GESTURE_METADATA","features":[45]},{"name":"WINBIO_GET_INDICATOR","features":[45]},{"name":"WINBIO_IDENTITY","features":[45]},{"name":"WINBIO_I_EXTENDED_STATUS_INFORMATION","features":[45]},{"name":"WINBIO_I_MORE_DATA","features":[45]},{"name":"WINBIO_MAX_STRING_LEN","features":[45]},{"name":"WINBIO_NOTIFY_WAKE","features":[45]},{"name":"WINBIO_PASSWORD_GENERIC","features":[45]},{"name":"WINBIO_PASSWORD_PACKED","features":[45]},{"name":"WINBIO_PASSWORD_PROTECTED","features":[45]},{"name":"WINBIO_PIPELINE","features":[45,1,6]},{"name":"WINBIO_POLICY_ADMIN","features":[45]},{"name":"WINBIO_POLICY_DEFAULT","features":[45]},{"name":"WINBIO_POLICY_LOCAL","features":[45]},{"name":"WINBIO_POLICY_SOURCE","features":[45]},{"name":"WINBIO_POLICY_UNKNOWN","features":[45]},{"name":"WINBIO_POOL","features":[45]},{"name":"WINBIO_POOL_PRIVATE","features":[45]},{"name":"WINBIO_POOL_SYSTEM","features":[45]},{"name":"WINBIO_PRESENCE","features":[45,1]},{"name":"WINBIO_PRESENCE_PROPERTIES","features":[45,1]},{"name":"WINBIO_PRIVATE_SENSOR_TYPE_INFO","features":[45]},{"name":"WINBIO_PROTECTION_POLICY","features":[45]},{"name":"WINBIO_REGISTERED_FORMAT","features":[45]},{"name":"WINBIO_SCP_CURVE_FIELD_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_DIGEST_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_ENCRYPTION_BLOCK_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_ENCRYPTION_KEY_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_PRIVATE_KEY_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_PUBLIC_KEY_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_RANDOM_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_SIGNATURE_SIZE_V1","features":[45]},{"name":"WINBIO_SCP_VERSION_1","features":[45]},{"name":"WINBIO_SECURE_BUFFER_HEADER_V1","features":[45]},{"name":"WINBIO_SECURE_CONNECTION_DATA","features":[45]},{"name":"WINBIO_SECURE_CONNECTION_PARAMS","features":[45]},{"name":"WINBIO_SENSOR_ATTRIBUTES","features":[45]},{"name":"WINBIO_SENSOR_INTERFACE","features":[45,1,6]},{"name":"WINBIO_SETTING_SOURCE","features":[45]},{"name":"WINBIO_SETTING_SOURCE_DEFAULT","features":[45]},{"name":"WINBIO_SETTING_SOURCE_INVALID","features":[45]},{"name":"WINBIO_SETTING_SOURCE_LOCAL","features":[45]},{"name":"WINBIO_SETTING_SOURCE_POLICY","features":[45]},{"name":"WINBIO_SET_INDICATOR","features":[45]},{"name":"WINBIO_STORAGE_INTERFACE","features":[45,1,6]},{"name":"WINBIO_STORAGE_RECORD","features":[45]},{"name":"WINBIO_STORAGE_SCHEMA","features":[45]},{"name":"WINBIO_SUPPORTED_ALGORITHMS","features":[45]},{"name":"WINBIO_UNIT_SCHEMA","features":[45]},{"name":"WINBIO_UPDATE_FIRMWARE","features":[45]},{"name":"WINBIO_VERSION","features":[45]},{"name":"WINBIO_WBDI_MAJOR_VERSION","features":[45]},{"name":"WINBIO_WBDI_MINOR_VERSION","features":[45]},{"name":"WINIBIO_ENGINE_CONTEXT","features":[45]},{"name":"WINIBIO_SENSOR_CONTEXT","features":[45]},{"name":"WINIBIO_STORAGE_CONTEXT","features":[45]},{"name":"WinBioAcquireFocus","features":[45]},{"name":"WinBioAsyncEnumBiometricUnits","features":[45]},{"name":"WinBioAsyncEnumDatabases","features":[45]},{"name":"WinBioAsyncEnumServiceProviders","features":[45]},{"name":"WinBioAsyncMonitorFrameworkChanges","features":[45]},{"name":"WinBioAsyncOpenFramework","features":[45,1]},{"name":"WinBioAsyncOpenSession","features":[45,1]},{"name":"WinBioCancel","features":[45]},{"name":"WinBioCaptureSample","features":[45]},{"name":"WinBioCaptureSampleWithCallback","features":[45]},{"name":"WinBioCloseFramework","features":[45]},{"name":"WinBioCloseSession","features":[45]},{"name":"WinBioControlUnit","features":[45]},{"name":"WinBioControlUnitPrivileged","features":[45]},{"name":"WinBioDeleteTemplate","features":[45]},{"name":"WinBioEnrollBegin","features":[45]},{"name":"WinBioEnrollCapture","features":[45]},{"name":"WinBioEnrollCaptureWithCallback","features":[45]},{"name":"WinBioEnrollCommit","features":[45]},{"name":"WinBioEnrollDiscard","features":[45]},{"name":"WinBioEnrollSelect","features":[45]},{"name":"WinBioEnumBiometricUnits","features":[45]},{"name":"WinBioEnumDatabases","features":[45]},{"name":"WinBioEnumEnrollments","features":[45]},{"name":"WinBioEnumServiceProviders","features":[45]},{"name":"WinBioFree","features":[45]},{"name":"WinBioGetCredentialState","features":[45]},{"name":"WinBioGetDomainLogonSetting","features":[45]},{"name":"WinBioGetEnabledSetting","features":[45]},{"name":"WinBioGetEnrolledFactors","features":[45]},{"name":"WinBioGetLogonSetting","features":[45]},{"name":"WinBioGetProperty","features":[45]},{"name":"WinBioIdentify","features":[45]},{"name":"WinBioIdentifyWithCallback","features":[45]},{"name":"WinBioImproveBegin","features":[45]},{"name":"WinBioImproveEnd","features":[45]},{"name":"WinBioLocateSensor","features":[45]},{"name":"WinBioLocateSensorWithCallback","features":[45]},{"name":"WinBioLockUnit","features":[45]},{"name":"WinBioLogonIdentifiedUser","features":[45]},{"name":"WinBioMonitorPresence","features":[45]},{"name":"WinBioOpenSession","features":[45]},{"name":"WinBioRegisterEventMonitor","features":[45]},{"name":"WinBioReleaseFocus","features":[45]},{"name":"WinBioRemoveAllCredentials","features":[45]},{"name":"WinBioRemoveAllDomainCredentials","features":[45]},{"name":"WinBioRemoveCredential","features":[45]},{"name":"WinBioSetCredential","features":[45]},{"name":"WinBioSetProperty","features":[45]},{"name":"WinBioUnlockUnit","features":[45]},{"name":"WinBioUnregisterEventMonitor","features":[45]},{"name":"WinBioVerify","features":[45]},{"name":"WinBioVerifyWithCallback","features":[45,1]},{"name":"WinBioWait","features":[45]}],"369":[{"name":"A2DP_SINK_SUPPORTED_FEATURES_AMPLIFIER","features":[46]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_HEADPHONE","features":[46]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_RECORDER","features":[46]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_SPEAKER","features":[46]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MICROPHONE","features":[46]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MIXER","features":[46]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_PLAYER","features":[46]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_TUNER","features":[46]},{"name":"AF_BTH","features":[46]},{"name":"ATT_PROTOCOL_UUID16","features":[46]},{"name":"AUTHENTICATION_REQUIREMENTS","features":[46]},{"name":"AVCTP_PROTOCOL_UUID16","features":[46]},{"name":"AVDTP_PROTOCOL_UUID16","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_1","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_2","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_3","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_4","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_BROWSING","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE_PROPERTIES","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_LINKED_THUMBNAIL","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_BROWSING","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_COVER_ART","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_GROUP_NAVIGATION","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_MULTIPLE_PLAYER_APPLICATIONS","features":[46]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_PLAYER_APPLICATION_SETTINGS","features":[46]},{"name":"AVRemoteControlControllerServiceClass_UUID16","features":[46]},{"name":"AVRemoteControlServiceClassID_UUID16","features":[46]},{"name":"AVRemoteControlTargetServiceClassID_UUID16","features":[46]},{"name":"AdvancedAudioDistributionProfileID_UUID16","features":[46]},{"name":"AdvancedAudioDistributionServiceClassID_UUID16","features":[46]},{"name":"AudioSinkServiceClassID_UUID16","features":[46]},{"name":"AudioSinkSourceServiceClassID_UUID16","features":[46]},{"name":"AudioSourceServiceClassID_UUID16","features":[46]},{"name":"AudioVideoServiceClassID_UUID16","features":[46]},{"name":"AudioVideoServiceClass_UUID16","features":[46]},{"name":"BDIF_ADDRESS","features":[46]},{"name":"BDIF_BR","features":[46]},{"name":"BDIF_BR_SECURE_CONNECTION_PAIRED","features":[46]},{"name":"BDIF_COD","features":[46]},{"name":"BDIF_CONNECTED","features":[46]},{"name":"BDIF_DEBUGKEY","features":[46]},{"name":"BDIF_EIR","features":[46]},{"name":"BDIF_LE","features":[46]},{"name":"BDIF_LE_CONNECTABLE","features":[46]},{"name":"BDIF_LE_CONNECTED","features":[46]},{"name":"BDIF_LE_DEBUGKEY","features":[46]},{"name":"BDIF_LE_DISCOVERABLE","features":[46]},{"name":"BDIF_LE_MITM_PROTECTED","features":[46]},{"name":"BDIF_LE_NAME","features":[46]},{"name":"BDIF_LE_PAIRED","features":[46]},{"name":"BDIF_LE_PERSONAL","features":[46]},{"name":"BDIF_LE_PRIVACY_ENABLED","features":[46]},{"name":"BDIF_LE_RANDOM_ADDRESS_TYPE","features":[46]},{"name":"BDIF_LE_SECURE_CONNECTION_PAIRED","features":[46]},{"name":"BDIF_LE_VISIBLE","features":[46]},{"name":"BDIF_NAME","features":[46]},{"name":"BDIF_PAIRED","features":[46]},{"name":"BDIF_PERSONAL","features":[46]},{"name":"BDIF_RSSI","features":[46]},{"name":"BDIF_SHORT_NAME","features":[46]},{"name":"BDIF_SSP_MITM_PROTECTED","features":[46]},{"name":"BDIF_SSP_PAIRED","features":[46]},{"name":"BDIF_SSP_SUPPORTED","features":[46]},{"name":"BDIF_TX_POWER","features":[46]},{"name":"BDIF_VISIBLE","features":[46]},{"name":"BLUETOOTH_ADDRESS","features":[46]},{"name":"BLUETOOTH_AUTHENTICATE_RESPONSE","features":[46]},{"name":"BLUETOOTH_AUTHENTICATION_CALLBACK_PARAMS","features":[46,1]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD","features":[46]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_LEGACY","features":[46]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_NUMERIC_COMPARISON","features":[46]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_OOB","features":[46]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY","features":[46]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY_NOTIFICATION","features":[46]},{"name":"BLUETOOTH_AUTHENTICATION_REQUIREMENTS","features":[46]},{"name":"BLUETOOTH_COD_PAIRS","features":[46]},{"name":"BLUETOOTH_DEVICE_INFO","features":[46,1]},{"name":"BLUETOOTH_DEVICE_NAME_SIZE","features":[46]},{"name":"BLUETOOTH_DEVICE_SEARCH_PARAMS","features":[46,1]},{"name":"BLUETOOTH_FIND_RADIO_PARAMS","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_AUTHENTICATED","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_ENCRYPTED","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_CACHE","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_DEVICE","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_NONE","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_RETURN_ALL","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_SIGNED_WRITE","features":[46]},{"name":"BLUETOOTH_GATT_FLAG_WRITE_WITHOUT_RESPONSE","features":[46]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT","features":[46]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT_REGISTRATION","features":[46,1]},{"name":"BLUETOOTH_IO_CAPABILITY","features":[46]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYONLY","features":[46]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYYESNO","features":[46]},{"name":"BLUETOOTH_IO_CAPABILITY_KEYBOARDONLY","features":[46]},{"name":"BLUETOOTH_IO_CAPABILITY_NOINPUTNOOUTPUT","features":[46]},{"name":"BLUETOOTH_IO_CAPABILITY_UNDEFINED","features":[46]},{"name":"BLUETOOTH_LOCAL_SERVICE_INFO","features":[46,1]},{"name":"BLUETOOTH_MAX_NAME_SIZE","features":[46]},{"name":"BLUETOOTH_MAX_PASSKEY_BUFFER_SIZE","features":[46]},{"name":"BLUETOOTH_MAX_PASSKEY_SIZE","features":[46]},{"name":"BLUETOOTH_MAX_SERVICE_NAME_SIZE","features":[46]},{"name":"BLUETOOTH_MITM_ProtectionNotDefined","features":[46]},{"name":"BLUETOOTH_MITM_ProtectionNotRequired","features":[46]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredBonding","features":[46]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredGeneralBonding","features":[46]},{"name":"BLUETOOTH_MITM_ProtectionRequired","features":[46]},{"name":"BLUETOOTH_MITM_ProtectionRequiredBonding","features":[46]},{"name":"BLUETOOTH_MITM_ProtectionRequiredGeneralBonding","features":[46]},{"name":"BLUETOOTH_NUMERIC_COMPARISON_INFO","features":[46]},{"name":"BLUETOOTH_OOB_DATA_INFO","features":[46]},{"name":"BLUETOOTH_PASSKEY_INFO","features":[46]},{"name":"BLUETOOTH_PIN_INFO","features":[46]},{"name":"BLUETOOTH_RADIO_INFO","features":[46]},{"name":"BLUETOOTH_SELECT_DEVICE_PARAMS","features":[46,1]},{"name":"BLUETOOTH_SERVICE_DISABLE","features":[46]},{"name":"BLUETOOTH_SERVICE_ENABLE","features":[46]},{"name":"BNEP_PROTOCOL_UUID16","features":[46]},{"name":"BTHLEENUM_ATT_MTU_DEFAULT","features":[46]},{"name":"BTHLEENUM_ATT_MTU_INITIAL_NEGOTIATION","features":[46]},{"name":"BTHLEENUM_ATT_MTU_MAX","features":[46]},{"name":"BTHLEENUM_ATT_MTU_MIN","features":[46]},{"name":"BTHNS_RESULT_DEVICE_AUTHENTICATED","features":[46]},{"name":"BTHNS_RESULT_DEVICE_CONNECTED","features":[46]},{"name":"BTHNS_RESULT_DEVICE_REMEMBERED","features":[46]},{"name":"BTHPROTO_L2CAP","features":[46]},{"name":"BTHPROTO_RFCOMM","features":[46]},{"name":"BTH_ADDR_GIAC","features":[46]},{"name":"BTH_ADDR_IAC_FIRST","features":[46]},{"name":"BTH_ADDR_IAC_LAST","features":[46]},{"name":"BTH_ADDR_LIAC","features":[46]},{"name":"BTH_ADDR_STRING_SIZE","features":[46]},{"name":"BTH_DEVICE_INFO","features":[46]},{"name":"BTH_EIR_128_UUIDS_COMPLETE_ID","features":[46]},{"name":"BTH_EIR_128_UUIDS_PARTIAL_ID","features":[46]},{"name":"BTH_EIR_16_UUIDS_COMPLETE_ID","features":[46]},{"name":"BTH_EIR_16_UUIDS_PARTIAL_ID","features":[46]},{"name":"BTH_EIR_32_UUIDS_COMPLETE_ID","features":[46]},{"name":"BTH_EIR_32_UUIDS_PARTIAL_ID","features":[46]},{"name":"BTH_EIR_FLAGS_ID","features":[46]},{"name":"BTH_EIR_LOCAL_NAME_COMPLETE_ID","features":[46]},{"name":"BTH_EIR_LOCAL_NAME_PARTIAL_ID","features":[46]},{"name":"BTH_EIR_MANUFACTURER_ID","features":[46]},{"name":"BTH_EIR_OOB_BD_ADDR_ID","features":[46]},{"name":"BTH_EIR_OOB_COD_ID","features":[46]},{"name":"BTH_EIR_OOB_OPT_DATA_LEN_ID","features":[46]},{"name":"BTH_EIR_OOB_SP_HASH_ID","features":[46]},{"name":"BTH_EIR_OOB_SP_RANDOMIZER_ID","features":[46]},{"name":"BTH_EIR_SIZE","features":[46]},{"name":"BTH_EIR_TX_POWER_LEVEL_ID","features":[46]},{"name":"BTH_ERROR_ACL_CONNECTION_ALREADY_EXISTS","features":[46]},{"name":"BTH_ERROR_AUTHENTICATION_FAILURE","features":[46]},{"name":"BTH_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED","features":[46]},{"name":"BTH_ERROR_COARSE_CLOCK_ADJUSTMENT_REJECTED","features":[46]},{"name":"BTH_ERROR_COMMAND_DISALLOWED","features":[46]},{"name":"BTH_ERROR_CONNECTION_FAILED_TO_BE_ESTABLISHED","features":[46]},{"name":"BTH_ERROR_CONNECTION_REJECTED_DUE_TO_NO_SUITABLE_CHANNEL_FOUND","features":[46]},{"name":"BTH_ERROR_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE","features":[46]},{"name":"BTH_ERROR_CONNECTION_TIMEOUT","features":[46]},{"name":"BTH_ERROR_CONTROLLER_BUSY","features":[46]},{"name":"BTH_ERROR_DIFFERENT_TRANSACTION_COLLISION","features":[46]},{"name":"BTH_ERROR_DIRECTED_ADVERTISING_TIMEOUT","features":[46]},{"name":"BTH_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE","features":[46]},{"name":"BTH_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE","features":[46]},{"name":"BTH_ERROR_HARDWARE_FAILURE","features":[46]},{"name":"BTH_ERROR_HOST_BUSY_PAIRING","features":[46]},{"name":"BTH_ERROR_HOST_REJECTED_LIMITED_RESOURCES","features":[46]},{"name":"BTH_ERROR_HOST_REJECTED_PERSONAL_DEVICE","features":[46]},{"name":"BTH_ERROR_HOST_REJECTED_SECURITY_REASONS","features":[46]},{"name":"BTH_ERROR_HOST_TIMEOUT","features":[46]},{"name":"BTH_ERROR_INSTANT_PASSED","features":[46]},{"name":"BTH_ERROR_INSUFFICIENT_SECURITY","features":[46]},{"name":"BTH_ERROR_INVALID_HCI_PARAMETER","features":[46]},{"name":"BTH_ERROR_INVALID_LMP_PARAMETERS","features":[46]},{"name":"BTH_ERROR_KEY_MISSING","features":[46]},{"name":"BTH_ERROR_LIMIT_REACHED","features":[46]},{"name":"BTH_ERROR_LMP_PDU_NOT_ALLOWED","features":[46]},{"name":"BTH_ERROR_LMP_RESPONSE_TIMEOUT","features":[46]},{"name":"BTH_ERROR_LMP_TRANSACTION_COLLISION","features":[46]},{"name":"BTH_ERROR_LOCAL_HOST_TERMINATED_CONNECTION","features":[46]},{"name":"BTH_ERROR_MAC_CONNECTION_FAILED","features":[46]},{"name":"BTH_ERROR_MAX_NUMBER_OF_CONNECTIONS","features":[46]},{"name":"BTH_ERROR_MAX_NUMBER_OF_SCO_CONNECTIONS","features":[46]},{"name":"BTH_ERROR_MEMORY_FULL","features":[46]},{"name":"BTH_ERROR_NO_CONNECTION","features":[46]},{"name":"BTH_ERROR_OPERATION_CANCELLED_BY_HOST","features":[46]},{"name":"BTH_ERROR_PACKET_TOO_LONG","features":[46]},{"name":"BTH_ERROR_PAGE_TIMEOUT","features":[46]},{"name":"BTH_ERROR_PAIRING_NOT_ALLOWED","features":[46]},{"name":"BTH_ERROR_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED","features":[46]},{"name":"BTH_ERROR_PARAMETER_OUT_OF_MANDATORY_RANGE","features":[46]},{"name":"BTH_ERROR_QOS_IS_NOT_SUPPORTED","features":[46]},{"name":"BTH_ERROR_QOS_REJECTED","features":[46]},{"name":"BTH_ERROR_QOS_UNACCEPTABLE_PARAMETER","features":[46]},{"name":"BTH_ERROR_REMOTE_LOW_RESOURCES","features":[46]},{"name":"BTH_ERROR_REMOTE_POWERING_OFF","features":[46]},{"name":"BTH_ERROR_REMOTE_USER_ENDED_CONNECTION","features":[46]},{"name":"BTH_ERROR_REPEATED_ATTEMPTS","features":[46]},{"name":"BTH_ERROR_RESERVED_SLOT_VIOLATION","features":[46]},{"name":"BTH_ERROR_ROLE_CHANGE_NOT_ALLOWED","features":[46]},{"name":"BTH_ERROR_ROLE_SWITCH_FAILED","features":[46]},{"name":"BTH_ERROR_ROLE_SWITCH_PENDING","features":[46]},{"name":"BTH_ERROR_SCO_AIRMODE_REJECTED","features":[46]},{"name":"BTH_ERROR_SCO_INTERVAL_REJECTED","features":[46]},{"name":"BTH_ERROR_SCO_OFFSET_REJECTED","features":[46]},{"name":"BTH_ERROR_SECURE_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST","features":[46]},{"name":"BTH_ERROR_SUCCESS","features":[46]},{"name":"BTH_ERROR_TYPE_0_SUBMAP_NOT_DEFINED","features":[46]},{"name":"BTH_ERROR_UKNOWN_LMP_PDU","features":[46]},{"name":"BTH_ERROR_UNACCEPTABLE_CONNECTION_INTERVAL","features":[46]},{"name":"BTH_ERROR_UNIT_KEY_NOT_USED","features":[46]},{"name":"BTH_ERROR_UNKNOWN_ADVERTISING_IDENTIFIER","features":[46]},{"name":"BTH_ERROR_UNKNOWN_HCI_COMMAND","features":[46]},{"name":"BTH_ERROR_UNSPECIFIED","features":[46]},{"name":"BTH_ERROR_UNSPECIFIED_ERROR","features":[46]},{"name":"BTH_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER","features":[46]},{"name":"BTH_ERROR_UNSUPPORTED_LMP_PARM_VALUE","features":[46]},{"name":"BTH_ERROR_UNSUPPORTED_REMOTE_FEATURE","features":[46]},{"name":"BTH_HCI_EVENT_INFO","features":[46]},{"name":"BTH_HOST_FEATURE_ENHANCED_RETRANSMISSION_MODE","features":[46]},{"name":"BTH_HOST_FEATURE_LOW_ENERGY","features":[46]},{"name":"BTH_HOST_FEATURE_SCO_HCI","features":[46]},{"name":"BTH_HOST_FEATURE_SCO_HCIBYPASS","features":[46]},{"name":"BTH_HOST_FEATURE_STREAMING_MODE","features":[46]},{"name":"BTH_INFO_REQ","features":[46]},{"name":"BTH_INFO_RSP","features":[46]},{"name":"BTH_IOCTL_BASE","features":[46]},{"name":"BTH_L2CAP_EVENT_INFO","features":[46]},{"name":"BTH_LE_ATT_BLUETOOTH_BASE_GUID","features":[46]},{"name":"BTH_LE_ATT_CID","features":[46]},{"name":"BTH_LE_ATT_MAX_VALUE_SIZE","features":[46]},{"name":"BTH_LE_ATT_TRANSACTION_TIMEOUT","features":[46]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_FOUND","features":[46]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_LONG","features":[46]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHENTICATION","features":[46]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHORIZATION","features":[46]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION","features":[46]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[46]},{"name":"BTH_LE_ERROR_INSUFFICIENT_RESOURCES","features":[46]},{"name":"BTH_LE_ERROR_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[46]},{"name":"BTH_LE_ERROR_INVALID_HANDLE","features":[46]},{"name":"BTH_LE_ERROR_INVALID_OFFSET","features":[46]},{"name":"BTH_LE_ERROR_INVALID_PDU","features":[46]},{"name":"BTH_LE_ERROR_PREPARE_QUEUE_FULL","features":[46]},{"name":"BTH_LE_ERROR_READ_NOT_PERMITTED","features":[46]},{"name":"BTH_LE_ERROR_REQUEST_NOT_SUPPORTED","features":[46]},{"name":"BTH_LE_ERROR_UNKNOWN","features":[46]},{"name":"BTH_LE_ERROR_UNLIKELY","features":[46]},{"name":"BTH_LE_ERROR_UNSUPPORTED_GROUP_TYPE","features":[46]},{"name":"BTH_LE_ERROR_WRITE_NOT_PERMITTED","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_BOOKSHELF_SPEAKER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SOUNDBAR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SPEAKERPHONE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDALONE_SPEAKER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDMOUNTED_SPEAKER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_ALARM","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_AUDITORIUM","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BELL","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_ROOM","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_HORN","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_KIOSK","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_MICROPHONE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_SERVICE_DESK","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_ARM","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_WRIST","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_ACCESS_CONTROL","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIRCRAFT","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIR_CONDITIONING","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SINK","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SOURCE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AV_EQUIPMENT","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BARCODE_SCANNER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BLOOD_PRESSURE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CLOCK","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_COMPUTER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTINUOUS_GLUCOSE_MONITOR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTROL_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CYCLING","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY_EQUIPMENT","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DOMESTIC_APPLIANCE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_EYE_GLASSES","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_FAN","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GAMING","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GLUCOSE_METER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEARING_AID","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEART_RATE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEATING","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HID","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HUMIDIFIER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HVAC","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_INSULIN_PUMP","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_KEYRING","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_FIXTURES","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_SOURCE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MASK","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDIA_PLAYER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDICATION_DELIVERY","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_VEHICLE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_NETWORK_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OFFSET","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OUTDOOR_SPORTS_ACTIVITY","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PERSONAL_MOBILITY_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PHONE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PLUSE_OXIMETER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_POWER_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_REMOTE_CONTROL","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_RUNNING_WALKING_SENSOR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SENSOR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SIGNAGE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_TAG","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_THERMOMETER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_UNCATEGORIZED","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WATCH","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEARABLE_AUDIO_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEIGHT_SCALE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WINDOW_COVERING","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CADENCE_SENSOR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CYCLING_COMPUTER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_POWER_SENSOR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_AND_CADENCE_SENSOR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_SENSOR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_BEHIND_EAR_HEARING_AID","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_COCHLEAR_IMPLANT","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_IN_EAR_HEARING_AID","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HEART_RATE_SUBCATEGORY_HEART_RATE_BELT","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_BARCODE_SCANNER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_CARD_READER","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITAL_PEN","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITIZER_TABLET","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_GAMEPAD","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_JOYSTICK","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_KEYBOARD","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_MOUSE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_DISPLAY_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_DISPLAY_DEVICE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_POD","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_POD","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_FINGERTIP","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_WRIST_WORN","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_IN_SHOE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_HIP","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_SHOE","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_SUBCATEGORY_GENERIC","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_SUB_CATEGORY_MASK","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_THERMOMETER_SUBCATEGORY_EAR","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_WATCH_SUBCATEGORY_SPORTS_WATCH","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_EARBUD","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADPHONES","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADSET","features":[46]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_NECKBAND","features":[46]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_CHARACTERISTIC","features":[46]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_INCLUDE","features":[46]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_PRIMARY_SERVICE","features":[46]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_SECONDARY_SERVICE","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC","features":[46,1]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_AGGREGATE_FORMAT","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_CLIENT_CONFIGURATION","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_EXTENDED_PROPERTIES","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_FORMAT","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_SERVER_CONFIGURATION","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_USER_DESCRIPTION","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_APPEARANCE","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_DEVICE_NAME","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PREFERED_CONNECTION_PARAMETER","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PRIVACY_FLAG","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_RECONNECTION_ADDRESS","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_SERVICE_CHANGED","features":[46]},{"name":"BTH_LE_GATT_CHARACTERISTIC_VALUE","features":[46]},{"name":"BTH_LE_GATT_DEFAULT_MAX_INCLUDED_SERVICES_DEPTH","features":[46]},{"name":"BTH_LE_GATT_DESCRIPTOR","features":[46,1]},{"name":"BTH_LE_GATT_DESCRIPTOR_TYPE","features":[46]},{"name":"BTH_LE_GATT_DESCRIPTOR_VALUE","features":[46,1]},{"name":"BTH_LE_GATT_EVENT_TYPE","features":[46]},{"name":"BTH_LE_GATT_SERVICE","features":[46,1]},{"name":"BTH_LE_SERVICE_GAP","features":[46]},{"name":"BTH_LE_SERVICE_GATT","features":[46]},{"name":"BTH_LE_UUID","features":[46,1]},{"name":"BTH_LINK_KEY_LENGTH","features":[46]},{"name":"BTH_MAJORVERSION","features":[46]},{"name":"BTH_MAX_NAME_SIZE","features":[46]},{"name":"BTH_MAX_PIN_SIZE","features":[46]},{"name":"BTH_MAX_SERVICE_NAME_SIZE","features":[46]},{"name":"BTH_MFG_3COM","features":[46]},{"name":"BTH_MFG_ALCATEL","features":[46]},{"name":"BTH_MFG_APPLE","features":[46]},{"name":"BTH_MFG_ARUBA_NETWORKS","features":[46]},{"name":"BTH_MFG_ATMEL","features":[46]},{"name":"BTH_MFG_AVM_BERLIN","features":[46]},{"name":"BTH_MFG_BANDSPEED","features":[46]},{"name":"BTH_MFG_BROADCOM","features":[46]},{"name":"BTH_MFG_CONEXANT","features":[46]},{"name":"BTH_MFG_CSR","features":[46]},{"name":"BTH_MFG_C_TECHNOLOGIES","features":[46]},{"name":"BTH_MFG_DIGIANSWER","features":[46]},{"name":"BTH_MFG_ERICSSON","features":[46]},{"name":"BTH_MFG_HITACHI","features":[46]},{"name":"BTH_MFG_IBM","features":[46]},{"name":"BTH_MFG_INFINEON","features":[46]},{"name":"BTH_MFG_INTEL","features":[46]},{"name":"BTH_MFG_INTERNAL_USE","features":[46]},{"name":"BTH_MFG_INVENTEL","features":[46]},{"name":"BTH_MFG_KC_TECHNOLOGY","features":[46]},{"name":"BTH_MFG_LUCENT","features":[46]},{"name":"BTH_MFG_MACRONIX_INTERNATIONAL","features":[46]},{"name":"BTH_MFG_MANSELLA","features":[46]},{"name":"BTH_MFG_MARVELL","features":[46]},{"name":"BTH_MFG_MICROSOFT","features":[46]},{"name":"BTH_MFG_MITEL","features":[46]},{"name":"BTH_MFG_MITSIBUSHI","features":[46]},{"name":"BTH_MFG_MOTOROLA","features":[46]},{"name":"BTH_MFG_NEC","features":[46]},{"name":"BTH_MFG_NEWLOGIC","features":[46]},{"name":"BTH_MFG_NOKIA","features":[46]},{"name":"BTH_MFG_NORDIC_SEMICONDUCTORS_ASA","features":[46]},{"name":"BTH_MFG_OPEN_INTERFACE","features":[46]},{"name":"BTH_MFG_PARTHUS","features":[46]},{"name":"BTH_MFG_PHILIPS_SEMICONDUCTOR","features":[46]},{"name":"BTH_MFG_QUALCOMM","features":[46]},{"name":"BTH_MFG_RF_MICRO_DEVICES","features":[46]},{"name":"BTH_MFG_ROHDE_SCHWARZ","features":[46]},{"name":"BTH_MFG_RTX_TELECOM","features":[46]},{"name":"BTH_MFG_SIGNIA","features":[46]},{"name":"BTH_MFG_SILICONWAVE","features":[46]},{"name":"BTH_MFG_SYMBOL_TECHNOLOGIES","features":[46]},{"name":"BTH_MFG_TENOVIS","features":[46]},{"name":"BTH_MFG_TI","features":[46]},{"name":"BTH_MFG_TOSHIBA","features":[46]},{"name":"BTH_MFG_TRANSILICA","features":[46]},{"name":"BTH_MFG_TTPCOM","features":[46]},{"name":"BTH_MFG_WAVEPLUS_TECHNOLOGY_CO","features":[46]},{"name":"BTH_MFG_WIDCOMM","features":[46]},{"name":"BTH_MFG_ZEEVO","features":[46]},{"name":"BTH_MINORVERSION","features":[46]},{"name":"BTH_PING_REQ","features":[46]},{"name":"BTH_PING_RSP","features":[46]},{"name":"BTH_QUERY_DEVICE","features":[46]},{"name":"BTH_QUERY_SERVICE","features":[46]},{"name":"BTH_RADIO_IN_RANGE","features":[46]},{"name":"BTH_SDP_VERSION","features":[46]},{"name":"BTH_SET_SERVICE","features":[46,1]},{"name":"BTH_VID_DEFAULT_VALUE","features":[46]},{"name":"BT_PORT_DYN_FIRST","features":[46]},{"name":"BT_PORT_MAX","features":[46]},{"name":"BT_PORT_MIN","features":[46]},{"name":"BasicPrintingProfileID_UUID16","features":[46]},{"name":"BasicPrintingServiceClassID_UUID16","features":[46]},{"name":"BluetoothAuthenticateDevice","features":[46,1]},{"name":"BluetoothAuthenticateDeviceEx","features":[46,1]},{"name":"BluetoothAuthenticateMultipleDevices","features":[46,1]},{"name":"BluetoothDisplayDeviceProperties","features":[46,1]},{"name":"BluetoothEnableDiscovery","features":[46,1]},{"name":"BluetoothEnableIncomingConnections","features":[46,1]},{"name":"BluetoothEnumerateInstalledServices","features":[46,1]},{"name":"BluetoothFindDeviceClose","features":[46,1]},{"name":"BluetoothFindFirstDevice","features":[46,1]},{"name":"BluetoothFindFirstRadio","features":[46,1]},{"name":"BluetoothFindNextDevice","features":[46,1]},{"name":"BluetoothFindNextRadio","features":[46,1]},{"name":"BluetoothFindRadioClose","features":[46,1]},{"name":"BluetoothGATTAbortReliableWrite","features":[46,1]},{"name":"BluetoothGATTBeginReliableWrite","features":[46,1]},{"name":"BluetoothGATTEndReliableWrite","features":[46,1]},{"name":"BluetoothGATTGetCharacteristicValue","features":[46,1]},{"name":"BluetoothGATTGetCharacteristics","features":[46,1]},{"name":"BluetoothGATTGetDescriptorValue","features":[46,1]},{"name":"BluetoothGATTGetDescriptors","features":[46,1]},{"name":"BluetoothGATTGetIncludedServices","features":[46,1]},{"name":"BluetoothGATTGetServices","features":[46,1]},{"name":"BluetoothGATTRegisterEvent","features":[46,1]},{"name":"BluetoothGATTSetCharacteristicValue","features":[46,1]},{"name":"BluetoothGATTSetDescriptorValue","features":[46,1]},{"name":"BluetoothGATTUnregisterEvent","features":[46]},{"name":"BluetoothGetDeviceInfo","features":[46,1]},{"name":"BluetoothGetRadioInfo","features":[46,1]},{"name":"BluetoothIsConnectable","features":[46,1]},{"name":"BluetoothIsDiscoverable","features":[46,1]},{"name":"BluetoothIsVersionAvailable","features":[46,1]},{"name":"BluetoothRegisterForAuthentication","features":[46,1]},{"name":"BluetoothRegisterForAuthenticationEx","features":[46,1]},{"name":"BluetoothRemoveDevice","features":[46]},{"name":"BluetoothSdpEnumAttributes","features":[46,1]},{"name":"BluetoothSdpGetAttributeValue","features":[46]},{"name":"BluetoothSdpGetContainerElementData","features":[46]},{"name":"BluetoothSdpGetElementData","features":[46]},{"name":"BluetoothSdpGetString","features":[46]},{"name":"BluetoothSelectDevices","features":[46,1]},{"name":"BluetoothSelectDevicesFree","features":[46,1]},{"name":"BluetoothSendAuthenticationResponse","features":[46,1]},{"name":"BluetoothSendAuthenticationResponseEx","features":[46,1]},{"name":"BluetoothSetLocalServiceInfo","features":[46,1]},{"name":"BluetoothSetServiceState","features":[46,1]},{"name":"BluetoothUnregisterAuthentication","features":[46,1]},{"name":"BluetoothUpdateDeviceRecord","features":[46,1]},{"name":"Bluetooth_Base_UUID","features":[46]},{"name":"BrowseGroupDescriptorServiceClassID_UUID16","features":[46]},{"name":"CMPT_PROTOCOL_UUID16","features":[46]},{"name":"COD_AUDIO_MINOR_CAMCORDER","features":[46]},{"name":"COD_AUDIO_MINOR_CAR_AUDIO","features":[46]},{"name":"COD_AUDIO_MINOR_GAMING_TOY","features":[46]},{"name":"COD_AUDIO_MINOR_HANDS_FREE","features":[46]},{"name":"COD_AUDIO_MINOR_HEADPHONES","features":[46]},{"name":"COD_AUDIO_MINOR_HEADSET","features":[46]},{"name":"COD_AUDIO_MINOR_HEADSET_HANDS_FREE","features":[46]},{"name":"COD_AUDIO_MINOR_HIFI_AUDIO","features":[46]},{"name":"COD_AUDIO_MINOR_LOUDSPEAKER","features":[46]},{"name":"COD_AUDIO_MINOR_MICROPHONE","features":[46]},{"name":"COD_AUDIO_MINOR_PORTABLE_AUDIO","features":[46]},{"name":"COD_AUDIO_MINOR_SET_TOP_BOX","features":[46]},{"name":"COD_AUDIO_MINOR_UNCLASSIFIED","features":[46]},{"name":"COD_AUDIO_MINOR_VCR","features":[46]},{"name":"COD_AUDIO_MINOR_VIDEO_CAMERA","features":[46]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_CONFERENCING","features":[46]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_LOUDSPEAKER","features":[46]},{"name":"COD_AUDIO_MINOR_VIDEO_MONITOR","features":[46]},{"name":"COD_COMPUTER_MINOR_DESKTOP","features":[46]},{"name":"COD_COMPUTER_MINOR_HANDHELD","features":[46]},{"name":"COD_COMPUTER_MINOR_LAPTOP","features":[46]},{"name":"COD_COMPUTER_MINOR_PALM","features":[46]},{"name":"COD_COMPUTER_MINOR_SERVER","features":[46]},{"name":"COD_COMPUTER_MINOR_UNCLASSIFIED","features":[46]},{"name":"COD_COMPUTER_MINOR_WEARABLE","features":[46]},{"name":"COD_FORMAT_BIT_OFFSET","features":[46]},{"name":"COD_FORMAT_MASK","features":[46]},{"name":"COD_HEALTH_MINOR_BLOOD_PRESSURE_MONITOR","features":[46]},{"name":"COD_HEALTH_MINOR_GLUCOSE_METER","features":[46]},{"name":"COD_HEALTH_MINOR_HEALTH_DATA_DISPLAY","features":[46]},{"name":"COD_HEALTH_MINOR_HEART_PULSE_MONITOR","features":[46]},{"name":"COD_HEALTH_MINOR_PULSE_OXIMETER","features":[46]},{"name":"COD_HEALTH_MINOR_STEP_COUNTER","features":[46]},{"name":"COD_HEALTH_MINOR_THERMOMETER","features":[46]},{"name":"COD_HEALTH_MINOR_WEIGHING_SCALE","features":[46]},{"name":"COD_IMAGING_MINOR_CAMERA_MASK","features":[46]},{"name":"COD_IMAGING_MINOR_DISPLAY_MASK","features":[46]},{"name":"COD_IMAGING_MINOR_PRINTER_MASK","features":[46]},{"name":"COD_IMAGING_MINOR_SCANNER_MASK","features":[46]},{"name":"COD_LAN_ACCESS_0_USED","features":[46]},{"name":"COD_LAN_ACCESS_17_USED","features":[46]},{"name":"COD_LAN_ACCESS_33_USED","features":[46]},{"name":"COD_LAN_ACCESS_50_USED","features":[46]},{"name":"COD_LAN_ACCESS_67_USED","features":[46]},{"name":"COD_LAN_ACCESS_83_USED","features":[46]},{"name":"COD_LAN_ACCESS_99_USED","features":[46]},{"name":"COD_LAN_ACCESS_BIT_OFFSET","features":[46]},{"name":"COD_LAN_ACCESS_FULL","features":[46]},{"name":"COD_LAN_ACCESS_MASK","features":[46]},{"name":"COD_LAN_MINOR_MASK","features":[46]},{"name":"COD_LAN_MINOR_UNCLASSIFIED","features":[46]},{"name":"COD_MAJOR_AUDIO","features":[46]},{"name":"COD_MAJOR_COMPUTER","features":[46]},{"name":"COD_MAJOR_HEALTH","features":[46]},{"name":"COD_MAJOR_IMAGING","features":[46]},{"name":"COD_MAJOR_LAN_ACCESS","features":[46]},{"name":"COD_MAJOR_MASK","features":[46]},{"name":"COD_MAJOR_MISCELLANEOUS","features":[46]},{"name":"COD_MAJOR_PERIPHERAL","features":[46]},{"name":"COD_MAJOR_PHONE","features":[46]},{"name":"COD_MAJOR_TOY","features":[46]},{"name":"COD_MAJOR_UNCLASSIFIED","features":[46]},{"name":"COD_MAJOR_WEARABLE","features":[46]},{"name":"COD_MINOR_BIT_OFFSET","features":[46]},{"name":"COD_MINOR_MASK","features":[46]},{"name":"COD_PERIPHERAL_MINOR_GAMEPAD","features":[46]},{"name":"COD_PERIPHERAL_MINOR_JOYSTICK","features":[46]},{"name":"COD_PERIPHERAL_MINOR_KEYBOARD_MASK","features":[46]},{"name":"COD_PERIPHERAL_MINOR_NO_CATEGORY","features":[46]},{"name":"COD_PERIPHERAL_MINOR_POINTER_MASK","features":[46]},{"name":"COD_PERIPHERAL_MINOR_REMOTE_CONTROL","features":[46]},{"name":"COD_PERIPHERAL_MINOR_SENSING","features":[46]},{"name":"COD_PHONE_MINOR_CELLULAR","features":[46]},{"name":"COD_PHONE_MINOR_CORDLESS","features":[46]},{"name":"COD_PHONE_MINOR_SMART","features":[46]},{"name":"COD_PHONE_MINOR_UNCLASSIFIED","features":[46]},{"name":"COD_PHONE_MINOR_WIRED_MODEM","features":[46]},{"name":"COD_SERVICE_AUDIO","features":[46]},{"name":"COD_SERVICE_CAPTURING","features":[46]},{"name":"COD_SERVICE_INFORMATION","features":[46]},{"name":"COD_SERVICE_LE_AUDIO","features":[46]},{"name":"COD_SERVICE_LIMITED","features":[46]},{"name":"COD_SERVICE_MASK","features":[46]},{"name":"COD_SERVICE_MAX_COUNT","features":[46]},{"name":"COD_SERVICE_NETWORKING","features":[46]},{"name":"COD_SERVICE_OBJECT_XFER","features":[46]},{"name":"COD_SERVICE_POSITIONING","features":[46]},{"name":"COD_SERVICE_RENDERING","features":[46]},{"name":"COD_SERVICE_TELEPHONY","features":[46]},{"name":"COD_TOY_MINOR_CONTROLLER","features":[46]},{"name":"COD_TOY_MINOR_DOLL_ACTION_FIGURE","features":[46]},{"name":"COD_TOY_MINOR_GAME","features":[46]},{"name":"COD_TOY_MINOR_ROBOT","features":[46]},{"name":"COD_TOY_MINOR_VEHICLE","features":[46]},{"name":"COD_VERSION","features":[46]},{"name":"COD_WEARABLE_MINOR_GLASSES","features":[46]},{"name":"COD_WEARABLE_MINOR_HELMET","features":[46]},{"name":"COD_WEARABLE_MINOR_JACKET","features":[46]},{"name":"COD_WEARABLE_MINOR_PAGER","features":[46]},{"name":"COD_WEARABLE_MINOR_WRIST_WATCH","features":[46]},{"name":"CORDLESS_EXTERNAL_NETWORK_ANALOG_CELLULAR","features":[46]},{"name":"CORDLESS_EXTERNAL_NETWORK_CDMA","features":[46]},{"name":"CORDLESS_EXTERNAL_NETWORK_GSM","features":[46]},{"name":"CORDLESS_EXTERNAL_NETWORK_ISDN","features":[46]},{"name":"CORDLESS_EXTERNAL_NETWORK_OTHER","features":[46]},{"name":"CORDLESS_EXTERNAL_NETWORK_PACKET_SWITCHED","features":[46]},{"name":"CORDLESS_EXTERNAL_NETWORK_PSTN","features":[46]},{"name":"CTNAccessServiceClassID_UUID16","features":[46]},{"name":"CTNNotificationServiceClassID_UUID16","features":[46]},{"name":"CTNProfileID_UUID16","features":[46]},{"name":"CharacteristicAggregateFormat","features":[46]},{"name":"CharacteristicExtendedProperties","features":[46]},{"name":"CharacteristicFormat","features":[46]},{"name":"CharacteristicUserDescription","features":[46]},{"name":"CharacteristicValueChangedEvent","features":[46]},{"name":"ClientCharacteristicConfiguration","features":[46]},{"name":"CommonISDNAccessServiceClassID_UUID16","features":[46]},{"name":"CommonISDNAccessServiceClass_UUID16","features":[46]},{"name":"CordlessServiceClassID_UUID16","features":[46]},{"name":"CordlessTelephonyServiceClassID_UUID16","features":[46]},{"name":"CustomDescriptor","features":[46]},{"name":"DI_VENDOR_ID_SOURCE_BLUETOOTH_SIG","features":[46]},{"name":"DI_VENDOR_ID_SOURCE_USB_IF","features":[46]},{"name":"DialupNetworkingServiceClassID_UUID16","features":[46]},{"name":"DirectPrintingReferenceObjectsServiceClassID_UUID16","features":[46]},{"name":"DirectPrintingServiceClassID_UUID16","features":[46]},{"name":"ENCODING_UTF_8","features":[46]},{"name":"ESdpUpnpIpLapServiceClassID_UUID16","features":[46]},{"name":"ESdpUpnpIpPanServiceClassID_UUID16","features":[46]},{"name":"ESdpUpnpL2capServiceClassID_UUID16","features":[46]},{"name":"FTP_PROTOCOL_UUID16","features":[46]},{"name":"FaxServiceClassID_UUID16","features":[46]},{"name":"GNSSProfileID_UUID16","features":[46]},{"name":"GNSSServerServiceClassID_UUID16","features":[46]},{"name":"GNServiceClassID_UUID16","features":[46]},{"name":"GUID_BLUETOOTHLE_DEVICE_INTERFACE","features":[46]},{"name":"GUID_BLUETOOTH_AUTHENTICATION_REQUEST","features":[46]},{"name":"GUID_BLUETOOTH_GATT_SERVICE_DEVICE_INTERFACE","features":[46]},{"name":"GUID_BLUETOOTH_HCI_EVENT","features":[46]},{"name":"GUID_BLUETOOTH_HCI_VENDOR_EVENT","features":[46]},{"name":"GUID_BLUETOOTH_KEYPRESS_EVENT","features":[46]},{"name":"GUID_BLUETOOTH_L2CAP_EVENT","features":[46]},{"name":"GUID_BLUETOOTH_RADIO_IN_RANGE","features":[46]},{"name":"GUID_BLUETOOTH_RADIO_OUT_OF_RANGE","features":[46]},{"name":"GUID_BTHPORT_DEVICE_INTERFACE","features":[46]},{"name":"GUID_BTH_RFCOMM_SERVICE_DEVICE_INTERFACE","features":[46]},{"name":"GenericAudioServiceClassID_UUID16","features":[46]},{"name":"GenericFileTransferServiceClassID_UUID16","features":[46]},{"name":"GenericNetworkingServiceClassID_UUID16","features":[46]},{"name":"GenericTelephonyServiceClassID_UUID16","features":[46]},{"name":"HANDLE_SDP_TYPE","features":[46]},{"name":"HBLUETOOTH_DEVICE_FIND","features":[46]},{"name":"HBLUETOOTH_RADIO_FIND","features":[46]},{"name":"HCCC_PROTOCOL_UUID16","features":[46]},{"name":"HCDC_PROTOCOL_UUID16","features":[46]},{"name":"HCI_CONNECTION_TYPE_ACL","features":[46]},{"name":"HCI_CONNECTION_TYPE_LE","features":[46]},{"name":"HCI_CONNECTION_TYPE_SCO","features":[46]},{"name":"HCI_CONNNECTION_TYPE_ACL","features":[46]},{"name":"HCI_CONNNECTION_TYPE_SCO","features":[46]},{"name":"HCN_PROTOCOL_UUID16","features":[46]},{"name":"HCRPrintServiceClassID_UUID16","features":[46]},{"name":"HCRScanServiceClassID_UUID16","features":[46]},{"name":"HID_PROTOCOL_UUID16","features":[46]},{"name":"HTTP_PROTOCOL_UUID16","features":[46]},{"name":"HandsfreeAudioGatewayServiceClassID_UUID16","features":[46]},{"name":"HandsfreeServiceClassID_UUID16","features":[46]},{"name":"HardcopyCableReplacementProfileID_UUID16","features":[46]},{"name":"HardcopyCableReplacementServiceClassID_UUID16","features":[46]},{"name":"HeadsetAudioGatewayServiceClassID_UUID16","features":[46]},{"name":"HeadsetHSServiceClassID_UUID16","features":[46]},{"name":"HeadsetServiceClassID_UUID16","features":[46]},{"name":"HealthDeviceProfileID_UUID16","features":[46]},{"name":"HealthDeviceProfileSinkServiceClassID_UUID16","features":[46]},{"name":"HealthDeviceProfileSourceServiceClassID_UUID16","features":[46]},{"name":"HumanInterfaceDeviceServiceClassID_UUID16","features":[46]},{"name":"IO_CAPABILITY","features":[46]},{"name":"IP_PROTOCOL_UUID16","features":[46]},{"name":"ImagingAutomaticArchiveServiceClassID_UUID16","features":[46]},{"name":"ImagingReferenceObjectsServiceClassID_UUID16","features":[46]},{"name":"ImagingResponderServiceClassID_UUID16","features":[46]},{"name":"ImagingServiceClassID_UUID16","features":[46]},{"name":"ImagingServiceProfileID_UUID16","features":[46]},{"name":"IntercomServiceClassID_UUID16","features":[46]},{"name":"IoCaps_DisplayOnly","features":[46]},{"name":"IoCaps_DisplayYesNo","features":[46]},{"name":"IoCaps_KeyboardOnly","features":[46]},{"name":"IoCaps_NoInputNoOutput","features":[46]},{"name":"IoCaps_Undefined","features":[46]},{"name":"IrMCSyncServiceClassID_UUID16","features":[46]},{"name":"IrMcSyncCommandServiceClassID_UUID16","features":[46]},{"name":"L2CAP_DEFAULT_MTU","features":[46]},{"name":"L2CAP_MAX_MTU","features":[46]},{"name":"L2CAP_MIN_MTU","features":[46]},{"name":"L2CAP_PROTOCOL_UUID16","features":[46]},{"name":"LANAccessUsingPPPServiceClassID_UUID16","features":[46]},{"name":"LANGUAGE_EN_US","features":[46]},{"name":"LANG_BASE_ENCODING_INDEX","features":[46]},{"name":"LANG_BASE_LANGUAGE_INDEX","features":[46]},{"name":"LANG_BASE_OFFSET_INDEX","features":[46]},{"name":"LANG_DEFAULT_ID","features":[46]},{"name":"LAP_GIAC_VALUE","features":[46]},{"name":"LAP_LIAC_VALUE","features":[46]},{"name":"MAX_L2CAP_INFO_DATA_LENGTH","features":[46]},{"name":"MAX_L2CAP_PING_DATA_LENGTH","features":[46]},{"name":"MAX_UUIDS_IN_QUERY","features":[46]},{"name":"MITMProtectionNotDefined","features":[46]},{"name":"MITMProtectionNotRequired","features":[46]},{"name":"MITMProtectionNotRequiredBonding","features":[46]},{"name":"MITMProtectionNotRequiredGeneralBonding","features":[46]},{"name":"MITMProtectionRequired","features":[46]},{"name":"MITMProtectionRequiredBonding","features":[46]},{"name":"MITMProtectionRequiredGeneralBonding","features":[46]},{"name":"MPSProfileID_UUID16","features":[46]},{"name":"MPSServiceClassID_UUID16","features":[46]},{"name":"MessageAccessProfileID_UUID16","features":[46]},{"name":"MessageAccessServerServiceClassID_UUID16","features":[46]},{"name":"MessageNotificationServerServiceClassID_UUID16","features":[46]},{"name":"NAPServiceClassID_UUID16","features":[46]},{"name":"NS_BTH","features":[46]},{"name":"NodeContainerType","features":[46]},{"name":"NodeContainerTypeAlternative","features":[46]},{"name":"NodeContainerTypeSequence","features":[46]},{"name":"OBEXFileTransferServiceClassID_UUID16","features":[46]},{"name":"OBEXObjectPushServiceClassID_UUID16","features":[46]},{"name":"OBEX_PROTOCOL_UUID16","features":[46]},{"name":"OBJECT_PUSH_FORMAT_ANY","features":[46]},{"name":"OBJECT_PUSH_FORMAT_ICAL_2_0","features":[46]},{"name":"OBJECT_PUSH_FORMAT_VCAL_1_0","features":[46]},{"name":"OBJECT_PUSH_FORMAT_VCARD_2_1","features":[46]},{"name":"OBJECT_PUSH_FORMAT_VCARD_3_0","features":[46]},{"name":"OBJECT_PUSH_FORMAT_VMESSAGE","features":[46]},{"name":"OBJECT_PUSH_FORMAT_VNOTE","features":[46]},{"name":"PANUServiceClassID_UUID16","features":[46]},{"name":"PFNBLUETOOTH_GATT_EVENT_CALLBACK","features":[46]},{"name":"PFN_AUTHENTICATION_CALLBACK","features":[46,1]},{"name":"PFN_AUTHENTICATION_CALLBACK_EX","features":[46,1]},{"name":"PFN_BLUETOOTH_ENUM_ATTRIBUTES_CALLBACK","features":[46,1]},{"name":"PFN_DEVICE_CALLBACK","features":[46,1]},{"name":"PF_BTH","features":[46]},{"name":"PSM_3DSP","features":[46]},{"name":"PSM_ATT","features":[46]},{"name":"PSM_AVCTP","features":[46]},{"name":"PSM_AVCTP_BROWSE","features":[46]},{"name":"PSM_AVDTP","features":[46]},{"name":"PSM_BNEP","features":[46]},{"name":"PSM_HID_CONTROL","features":[46]},{"name":"PSM_HID_INTERRUPT","features":[46]},{"name":"PSM_LE_IPSP","features":[46]},{"name":"PSM_RFCOMM","features":[46]},{"name":"PSM_SDP","features":[46]},{"name":"PSM_TCS_BIN","features":[46]},{"name":"PSM_TCS_BIN_CORDLESS","features":[46]},{"name":"PSM_UDI_C_PLANE","features":[46]},{"name":"PSM_UPNP","features":[46]},{"name":"PhonebookAccessPceServiceClassID_UUID16","features":[46]},{"name":"PhonebookAccessProfileID_UUID16","features":[46]},{"name":"PhonebookAccessPseServiceClassID_UUID16","features":[46]},{"name":"PnPInformationServiceClassID_UUID16","features":[46]},{"name":"PrintingStatusServiceClassID_UUID16","features":[46]},{"name":"PublicBrowseGroupServiceClassID_UUID16","features":[46]},{"name":"RFCOMM_CMD_MSC","features":[46]},{"name":"RFCOMM_CMD_NONE","features":[46]},{"name":"RFCOMM_CMD_RLS","features":[46]},{"name":"RFCOMM_CMD_RPN","features":[46]},{"name":"RFCOMM_CMD_RPN_REQUEST","features":[46]},{"name":"RFCOMM_CMD_RPN_RESPONSE","features":[46]},{"name":"RFCOMM_COMMAND","features":[46]},{"name":"RFCOMM_MAX_MTU","features":[46]},{"name":"RFCOMM_MIN_MTU","features":[46]},{"name":"RFCOMM_MSC_DATA","features":[46]},{"name":"RFCOMM_PROTOCOL_UUID16","features":[46]},{"name":"RFCOMM_RLS_DATA","features":[46]},{"name":"RFCOMM_RPN_DATA","features":[46]},{"name":"RLS_ERROR","features":[46]},{"name":"RLS_FRAMING","features":[46]},{"name":"RLS_OVERRUN","features":[46]},{"name":"RLS_PARITY","features":[46]},{"name":"RPN_BAUD_115200","features":[46]},{"name":"RPN_BAUD_19200","features":[46]},{"name":"RPN_BAUD_230400","features":[46]},{"name":"RPN_BAUD_2400","features":[46]},{"name":"RPN_BAUD_38400","features":[46]},{"name":"RPN_BAUD_4800","features":[46]},{"name":"RPN_BAUD_57600","features":[46]},{"name":"RPN_BAUD_7200","features":[46]},{"name":"RPN_BAUD_9600","features":[46]},{"name":"RPN_DATA_5","features":[46]},{"name":"RPN_DATA_6","features":[46]},{"name":"RPN_DATA_7","features":[46]},{"name":"RPN_DATA_8","features":[46]},{"name":"RPN_FLOW_RTC_IN","features":[46]},{"name":"RPN_FLOW_RTC_OUT","features":[46]},{"name":"RPN_FLOW_RTR_IN","features":[46]},{"name":"RPN_FLOW_RTR_OUT","features":[46]},{"name":"RPN_FLOW_X_IN","features":[46]},{"name":"RPN_FLOW_X_OUT","features":[46]},{"name":"RPN_PARAM_BAUD","features":[46]},{"name":"RPN_PARAM_DATA","features":[46]},{"name":"RPN_PARAM_PARITY","features":[46]},{"name":"RPN_PARAM_P_TYPE","features":[46]},{"name":"RPN_PARAM_RTC_IN","features":[46]},{"name":"RPN_PARAM_RTC_OUT","features":[46]},{"name":"RPN_PARAM_RTR_IN","features":[46]},{"name":"RPN_PARAM_RTR_OUT","features":[46]},{"name":"RPN_PARAM_STOP","features":[46]},{"name":"RPN_PARAM_XOFF","features":[46]},{"name":"RPN_PARAM_XON","features":[46]},{"name":"RPN_PARAM_X_IN","features":[46]},{"name":"RPN_PARAM_X_OUT","features":[46]},{"name":"RPN_PARITY_EVEN","features":[46]},{"name":"RPN_PARITY_MARK","features":[46]},{"name":"RPN_PARITY_NONE","features":[46]},{"name":"RPN_PARITY_ODD","features":[46]},{"name":"RPN_PARITY_SPACE","features":[46]},{"name":"RPN_STOP_1","features":[46]},{"name":"RPN_STOP_1_5","features":[46]},{"name":"ReferencePrintingServiceClassID_UUID16","features":[46]},{"name":"ReflectsUIServiceClassID_UUID16","features":[46]},{"name":"SAP_BIT_OFFSET","features":[46]},{"name":"SDP_ATTRIB_A2DP_SUPPORTED_FEATURES","features":[46]},{"name":"SDP_ATTRIB_ADDITIONAL_PROTOCOL_DESCRIPTOR_LIST","features":[46]},{"name":"SDP_ATTRIB_AVAILABILITY","features":[46]},{"name":"SDP_ATTRIB_AVRCP_SUPPORTED_FEATURES","features":[46]},{"name":"SDP_ATTRIB_BROWSE_GROUP_ID","features":[46]},{"name":"SDP_ATTRIB_BROWSE_GROUP_LIST","features":[46]},{"name":"SDP_ATTRIB_CLASS_ID_LIST","features":[46]},{"name":"SDP_ATTRIB_CLIENT_EXECUTABLE_URL","features":[46]},{"name":"SDP_ATTRIB_CORDLESS_EXTERNAL_NETWORK","features":[46]},{"name":"SDP_ATTRIB_DI_PRIMARY_RECORD","features":[46]},{"name":"SDP_ATTRIB_DI_PRODUCT_ID","features":[46]},{"name":"SDP_ATTRIB_DI_SPECIFICATION_ID","features":[46]},{"name":"SDP_ATTRIB_DI_VENDOR_ID","features":[46]},{"name":"SDP_ATTRIB_DI_VENDOR_ID_SOURCE","features":[46]},{"name":"SDP_ATTRIB_DI_VERSION","features":[46]},{"name":"SDP_ATTRIB_DOCUMENTATION_URL","features":[46]},{"name":"SDP_ATTRIB_FAX_AUDIO_FEEDBACK_SUPPORT","features":[46]},{"name":"SDP_ATTRIB_FAX_CLASS_1_SUPPORT","features":[46]},{"name":"SDP_ATTRIB_FAX_CLASS_2_0_SUPPORT","features":[46]},{"name":"SDP_ATTRIB_FAX_CLASS_2_SUPPORT","features":[46]},{"name":"SDP_ATTRIB_HEADSET_REMOTE_AUDIO_VOLUME_CONTROL","features":[46]},{"name":"SDP_ATTRIB_HFP_SUPPORTED_FEATURES","features":[46]},{"name":"SDP_ATTRIB_HID_BATTERY_POWER","features":[46]},{"name":"SDP_ATTRIB_HID_BOOT_DEVICE","features":[46]},{"name":"SDP_ATTRIB_HID_COUNTRY_CODE","features":[46]},{"name":"SDP_ATTRIB_HID_DESCRIPTOR_LIST","features":[46]},{"name":"SDP_ATTRIB_HID_DEVICE_RELEASE_NUMBER","features":[46]},{"name":"SDP_ATTRIB_HID_DEVICE_SUBCLASS","features":[46]},{"name":"SDP_ATTRIB_HID_LANG_ID_BASE_LIST","features":[46]},{"name":"SDP_ATTRIB_HID_NORMALLY_CONNECTABLE","features":[46]},{"name":"SDP_ATTRIB_HID_PARSER_VERSION","features":[46]},{"name":"SDP_ATTRIB_HID_PROFILE_VERSION","features":[46]},{"name":"SDP_ATTRIB_HID_RECONNECT_INITIATE","features":[46]},{"name":"SDP_ATTRIB_HID_REMOTE_WAKE","features":[46]},{"name":"SDP_ATTRIB_HID_SDP_DISABLE","features":[46]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MAX_LATENCY","features":[46]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MIN_TIMEOUT","features":[46]},{"name":"SDP_ATTRIB_HID_SUPERVISION_TIMEOUT","features":[46]},{"name":"SDP_ATTRIB_HID_VIRTUAL_CABLE","features":[46]},{"name":"SDP_ATTRIB_ICON_URL","features":[46]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_CAPABILITIES","features":[46]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FEATURES","features":[46]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FUNCTIONS","features":[46]},{"name":"SDP_ATTRIB_IMAGING_TOTAL_DATA_CAPACITY","features":[46]},{"name":"SDP_ATTRIB_INFO_TIME_TO_LIVE","features":[46]},{"name":"SDP_ATTRIB_LANG_BASE_ATTRIB_ID_LIST","features":[46]},{"name":"SDP_ATTRIB_LAN_LPSUBNET","features":[46]},{"name":"SDP_ATTRIB_OBJECT_PUSH_SUPPORTED_FORMATS_LIST","features":[46]},{"name":"SDP_ATTRIB_PAN_HOME_PAGE_URL","features":[46]},{"name":"SDP_ATTRIB_PAN_MAX_NET_ACCESS_RATE","features":[46]},{"name":"SDP_ATTRIB_PAN_NETWORK_ADDRESS","features":[46]},{"name":"SDP_ATTRIB_PAN_NET_ACCESS_TYPE","features":[46]},{"name":"SDP_ATTRIB_PAN_SECURITY_DESCRIPTION","features":[46]},{"name":"SDP_ATTRIB_PAN_WAP_GATEWAY","features":[46]},{"name":"SDP_ATTRIB_PAN_WAP_STACK_TYPE","features":[46]},{"name":"SDP_ATTRIB_PROFILE_DESCRIPTOR_LIST","features":[46]},{"name":"SDP_ATTRIB_PROFILE_SPECIFIC","features":[46]},{"name":"SDP_ATTRIB_PROTOCOL_DESCRIPTOR_LIST","features":[46]},{"name":"SDP_ATTRIB_RECORD_HANDLE","features":[46]},{"name":"SDP_ATTRIB_RECORD_STATE","features":[46]},{"name":"SDP_ATTRIB_SDP_DATABASE_STATE","features":[46]},{"name":"SDP_ATTRIB_SDP_VERSION_NUMBER_LIST","features":[46]},{"name":"SDP_ATTRIB_SERVICE_ID","features":[46]},{"name":"SDP_ATTRIB_SERVICE_VERSION","features":[46]},{"name":"SDP_ATTRIB_SYNCH_SUPPORTED_DATA_STORES_LIST","features":[46]},{"name":"SDP_CONNECT_ALLOW_PIN","features":[46]},{"name":"SDP_CONNECT_CACHE","features":[46]},{"name":"SDP_DEFAULT_INQUIRY_MAX_RESPONSES","features":[46]},{"name":"SDP_DEFAULT_INQUIRY_SECONDS","features":[46]},{"name":"SDP_ELEMENT_DATA","features":[46]},{"name":"SDP_ERROR_INSUFFICIENT_RESOURCES","features":[46]},{"name":"SDP_ERROR_INVALID_CONTINUATION_STATE","features":[46]},{"name":"SDP_ERROR_INVALID_PDU_SIZE","features":[46]},{"name":"SDP_ERROR_INVALID_RECORD_HANDLE","features":[46]},{"name":"SDP_ERROR_INVALID_REQUEST_SYNTAX","features":[46]},{"name":"SDP_ERROR_INVALID_SDP_VERSION","features":[46]},{"name":"SDP_LARGE_INTEGER_16","features":[46]},{"name":"SDP_MAX_INQUIRY_SECONDS","features":[46]},{"name":"SDP_PROTOCOL_UUID16","features":[46]},{"name":"SDP_REQUEST_TO_DEFAULT","features":[46]},{"name":"SDP_REQUEST_TO_MAX","features":[46]},{"name":"SDP_REQUEST_TO_MIN","features":[46]},{"name":"SDP_SEARCH_NO_FORMAT_CHECK","features":[46]},{"name":"SDP_SEARCH_NO_PARSE_CHECK","features":[46]},{"name":"SDP_SERVICE_ATTRIBUTE_REQUEST","features":[46]},{"name":"SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST","features":[46]},{"name":"SDP_SERVICE_SEARCH_REQUEST","features":[46]},{"name":"SDP_SPECIFICTYPE","features":[46]},{"name":"SDP_STRING_TYPE_DATA","features":[46]},{"name":"SDP_ST_INT128","features":[46]},{"name":"SDP_ST_INT16","features":[46]},{"name":"SDP_ST_INT32","features":[46]},{"name":"SDP_ST_INT64","features":[46]},{"name":"SDP_ST_INT8","features":[46]},{"name":"SDP_ST_NONE","features":[46]},{"name":"SDP_ST_UINT128","features":[46]},{"name":"SDP_ST_UINT16","features":[46]},{"name":"SDP_ST_UINT32","features":[46]},{"name":"SDP_ST_UINT64","features":[46]},{"name":"SDP_ST_UINT8","features":[46]},{"name":"SDP_ST_UUID128","features":[46]},{"name":"SDP_ST_UUID16","features":[46]},{"name":"SDP_ST_UUID32","features":[46]},{"name":"SDP_TYPE","features":[46]},{"name":"SDP_TYPE_ALTERNATIVE","features":[46]},{"name":"SDP_TYPE_BOOLEAN","features":[46]},{"name":"SDP_TYPE_CONTAINER","features":[46]},{"name":"SDP_TYPE_INT","features":[46]},{"name":"SDP_TYPE_NIL","features":[46]},{"name":"SDP_TYPE_SEQUENCE","features":[46]},{"name":"SDP_TYPE_STRING","features":[46]},{"name":"SDP_TYPE_UINT","features":[46]},{"name":"SDP_TYPE_URL","features":[46]},{"name":"SDP_TYPE_UUID","features":[46]},{"name":"SDP_ULARGE_INTEGER_16","features":[46]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH","features":[46]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH_EIR","features":[46]},{"name":"SERVICE_OPTION_NO_PUBLIC_BROWSE","features":[46]},{"name":"SERVICE_SECURITY_AUTHENTICATE","features":[46]},{"name":"SERVICE_SECURITY_AUTHORIZE","features":[46]},{"name":"SERVICE_SECURITY_DISABLED","features":[46]},{"name":"SERVICE_SECURITY_ENCRYPT_OPTIONAL","features":[46]},{"name":"SERVICE_SECURITY_ENCRYPT_REQUIRED","features":[46]},{"name":"SERVICE_SECURITY_NONE","features":[46]},{"name":"SERVICE_SECURITY_NO_ASK","features":[46]},{"name":"SERVICE_SECURITY_USE_DEFAULTS","features":[46]},{"name":"SOCKADDR_BTH","features":[46]},{"name":"SOL_L2CAP","features":[46]},{"name":"SOL_RFCOMM","features":[46]},{"name":"SOL_SDP","features":[46]},{"name":"SO_BTH_AUTHENTICATE","features":[46]},{"name":"SO_BTH_ENCRYPT","features":[46]},{"name":"SO_BTH_MTU","features":[46]},{"name":"SO_BTH_MTU_MAX","features":[46]},{"name":"SO_BTH_MTU_MIN","features":[46]},{"name":"STRING_DESCRIPTION_OFFSET","features":[46]},{"name":"STRING_NAME_OFFSET","features":[46]},{"name":"STRING_PROVIDER_NAME_OFFSET","features":[46]},{"name":"STR_ADDR_FMT","features":[46]},{"name":"STR_ADDR_FMTA","features":[46]},{"name":"STR_ADDR_FMTW","features":[46]},{"name":"STR_ADDR_SHORT_FMT","features":[46]},{"name":"STR_ADDR_SHORT_FMTA","features":[46]},{"name":"STR_ADDR_SHORT_FMTW","features":[46]},{"name":"STR_USBHCI_CLASS_HARDWAREID","features":[46]},{"name":"STR_USBHCI_CLASS_HARDWAREIDA","features":[46]},{"name":"STR_USBHCI_CLASS_HARDWAREIDW","features":[46]},{"name":"SVCID_BTH_PROVIDER","features":[46]},{"name":"SYNCH_DATA_STORE_CALENDAR","features":[46]},{"name":"SYNCH_DATA_STORE_MESSAGES","features":[46]},{"name":"SYNCH_DATA_STORE_NOTES","features":[46]},{"name":"SYNCH_DATA_STORE_PHONEBOOK","features":[46]},{"name":"SdpAttributeRange","features":[46]},{"name":"SdpQueryUuid","features":[46]},{"name":"SdpQueryUuidUnion","features":[46]},{"name":"SerialPortServiceClassID_UUID16","features":[46]},{"name":"ServerCharacteristicConfiguration","features":[46]},{"name":"ServiceDiscoveryServerServiceClassID_UUID16","features":[46]},{"name":"SimAccessServiceClassID_UUID16","features":[46]},{"name":"TCP_PROTOCOL_UUID16","features":[46]},{"name":"TCSAT_PROTOCOL_UUID16","features":[46]},{"name":"TCSBIN_PROTOCOL_UUID16","features":[46]},{"name":"ThreeDimensionalDisplayServiceClassID_UUID16","features":[46]},{"name":"ThreeDimensionalGlassesServiceClassID_UUID16","features":[46]},{"name":"ThreeDimensionalSynchronizationProfileID_UUID16","features":[46]},{"name":"UDIMTServiceClassID_UUID16","features":[46]},{"name":"UDIMTServiceClass_UUID16","features":[46]},{"name":"UDITAServiceClassID_UUID16","features":[46]},{"name":"UDITAServiceClass_UUID16","features":[46]},{"name":"UDI_C_PLANE_PROTOCOL_UUID16","features":[46]},{"name":"UDP_PROTOCOL_UUID16","features":[46]},{"name":"UPNP_PROTOCOL_UUID16","features":[46]},{"name":"UPnpIpServiceClassID_UUID16","features":[46]},{"name":"UPnpServiceClassID_UUID16","features":[46]},{"name":"VideoConferencingGWServiceClassID_UUID16","features":[46]},{"name":"VideoConferencingGWServiceClass_UUID16","features":[46]},{"name":"VideoConferencingServiceClassID_UUID16","features":[46]},{"name":"VideoDistributionProfileID_UUID16","features":[46]},{"name":"VideoSinkServiceClassID_UUID16","features":[46]},{"name":"VideoSourceServiceClassID_UUID16","features":[46]},{"name":"WAPClientServiceClassID_UUID16","features":[46]},{"name":"WAPServiceClassID_UUID16","features":[46]},{"name":"WSP_PROTOCOL_UUID16","features":[46]}],"370":[{"name":"BuildCommDCBA","features":[47,1]},{"name":"BuildCommDCBAndTimeoutsA","features":[47,1]},{"name":"BuildCommDCBAndTimeoutsW","features":[47,1]},{"name":"BuildCommDCBW","features":[47,1]},{"name":"CE_BREAK","features":[47]},{"name":"CE_FRAME","features":[47]},{"name":"CE_OVERRUN","features":[47]},{"name":"CE_RXOVER","features":[47]},{"name":"CE_RXPARITY","features":[47]},{"name":"CLEAR_COMM_ERROR_FLAGS","features":[47]},{"name":"CLRBREAK","features":[47]},{"name":"CLRDTR","features":[47]},{"name":"CLRRTS","features":[47]},{"name":"COMMCONFIG","features":[47]},{"name":"COMMPROP","features":[47]},{"name":"COMMPROP_STOP_PARITY","features":[47]},{"name":"COMMTIMEOUTS","features":[47]},{"name":"COMM_EVENT_MASK","features":[47]},{"name":"COMSTAT","features":[47]},{"name":"ClearCommBreak","features":[47,1]},{"name":"ClearCommError","features":[47,1]},{"name":"CommConfigDialogA","features":[47,1]},{"name":"CommConfigDialogW","features":[47,1]},{"name":"DCB","features":[47]},{"name":"DCB_PARITY","features":[47]},{"name":"DCB_STOP_BITS","features":[47]},{"name":"DIALOPTION_BILLING","features":[47]},{"name":"DIALOPTION_DIALTONE","features":[47]},{"name":"DIALOPTION_QUIET","features":[47]},{"name":"ESCAPE_COMM_FUNCTION","features":[47]},{"name":"EVENPARITY","features":[47]},{"name":"EV_BREAK","features":[47]},{"name":"EV_CTS","features":[47]},{"name":"EV_DSR","features":[47]},{"name":"EV_ERR","features":[47]},{"name":"EV_EVENT1","features":[47]},{"name":"EV_EVENT2","features":[47]},{"name":"EV_PERR","features":[47]},{"name":"EV_RING","features":[47]},{"name":"EV_RLSD","features":[47]},{"name":"EV_RX80FULL","features":[47]},{"name":"EV_RXCHAR","features":[47]},{"name":"EV_RXFLAG","features":[47]},{"name":"EV_TXEMPTY","features":[47]},{"name":"EscapeCommFunction","features":[47,1]},{"name":"GetCommConfig","features":[47,1]},{"name":"GetCommMask","features":[47,1]},{"name":"GetCommModemStatus","features":[47,1]},{"name":"GetCommPorts","features":[47]},{"name":"GetCommProperties","features":[47,1]},{"name":"GetCommState","features":[47,1]},{"name":"GetCommTimeouts","features":[47,1]},{"name":"GetDefaultCommConfigA","features":[47,1]},{"name":"GetDefaultCommConfigW","features":[47,1]},{"name":"MARKPARITY","features":[47]},{"name":"MAXLENGTH_NAI","features":[47]},{"name":"MAXLENGTH_UICCDATASTORE","features":[47]},{"name":"MDMSPKRFLAG_CALLSETUP","features":[47]},{"name":"MDMSPKRFLAG_DIAL","features":[47]},{"name":"MDMSPKRFLAG_OFF","features":[47]},{"name":"MDMSPKRFLAG_ON","features":[47]},{"name":"MDMSPKR_CALLSETUP","features":[47]},{"name":"MDMSPKR_DIAL","features":[47]},{"name":"MDMSPKR_OFF","features":[47]},{"name":"MDMSPKR_ON","features":[47]},{"name":"MDMVOLFLAG_HIGH","features":[47]},{"name":"MDMVOLFLAG_LOW","features":[47]},{"name":"MDMVOLFLAG_MEDIUM","features":[47]},{"name":"MDMVOL_HIGH","features":[47]},{"name":"MDMVOL_LOW","features":[47]},{"name":"MDMVOL_MEDIUM","features":[47]},{"name":"MDM_ANALOG_RLP_OFF","features":[47]},{"name":"MDM_ANALOG_RLP_ON","features":[47]},{"name":"MDM_ANALOG_V34","features":[47]},{"name":"MDM_AUTO_ML_2","features":[47]},{"name":"MDM_AUTO_ML_DEFAULT","features":[47]},{"name":"MDM_AUTO_ML_NONE","features":[47]},{"name":"MDM_AUTO_SPEED_DEFAULT","features":[47]},{"name":"MDM_BEARERMODE_ANALOG","features":[47]},{"name":"MDM_BEARERMODE_GSM","features":[47]},{"name":"MDM_BEARERMODE_ISDN","features":[47]},{"name":"MDM_BLIND_DIAL","features":[47]},{"name":"MDM_CCITT_OVERRIDE","features":[47]},{"name":"MDM_CELLULAR","features":[47]},{"name":"MDM_COMPRESSION","features":[47]},{"name":"MDM_DIAGNOSTICS","features":[47]},{"name":"MDM_ERROR_CONTROL","features":[47]},{"name":"MDM_FLOWCONTROL_HARD","features":[47]},{"name":"MDM_FLOWCONTROL_SOFT","features":[47]},{"name":"MDM_FORCED_EC","features":[47]},{"name":"MDM_HDLCPPP_AUTH_CHAP","features":[47]},{"name":"MDM_HDLCPPP_AUTH_DEFAULT","features":[47]},{"name":"MDM_HDLCPPP_AUTH_MSCHAP","features":[47]},{"name":"MDM_HDLCPPP_AUTH_NONE","features":[47]},{"name":"MDM_HDLCPPP_AUTH_PAP","features":[47]},{"name":"MDM_HDLCPPP_ML_2","features":[47]},{"name":"MDM_HDLCPPP_ML_DEFAULT","features":[47]},{"name":"MDM_HDLCPPP_ML_NONE","features":[47]},{"name":"MDM_HDLCPPP_SPEED_56K","features":[47]},{"name":"MDM_HDLCPPP_SPEED_64K","features":[47]},{"name":"MDM_HDLCPPP_SPEED_DEFAULT","features":[47]},{"name":"MDM_MASK_AUTO_SPEED","features":[47]},{"name":"MDM_MASK_BEARERMODE","features":[47]},{"name":"MDM_MASK_HDLCPPP_SPEED","features":[47]},{"name":"MDM_MASK_PROTOCOLDATA","features":[47]},{"name":"MDM_MASK_PROTOCOLID","features":[47]},{"name":"MDM_MASK_V110_SPEED","features":[47]},{"name":"MDM_MASK_V120_SPEED","features":[47]},{"name":"MDM_MASK_X75_DATA","features":[47]},{"name":"MDM_PIAFS_INCOMING","features":[47]},{"name":"MDM_PIAFS_OUTGOING","features":[47]},{"name":"MDM_PROTOCOLID_ANALOG","features":[47]},{"name":"MDM_PROTOCOLID_AUTO","features":[47]},{"name":"MDM_PROTOCOLID_DEFAULT","features":[47]},{"name":"MDM_PROTOCOLID_GPRS","features":[47]},{"name":"MDM_PROTOCOLID_HDLCPPP","features":[47]},{"name":"MDM_PROTOCOLID_PIAFS","features":[47]},{"name":"MDM_PROTOCOLID_V110","features":[47]},{"name":"MDM_PROTOCOLID_V120","features":[47]},{"name":"MDM_PROTOCOLID_V128","features":[47]},{"name":"MDM_PROTOCOLID_X75","features":[47]},{"name":"MDM_SHIFT_AUTO_ML","features":[47]},{"name":"MDM_SHIFT_AUTO_SPEED","features":[47]},{"name":"MDM_SHIFT_BEARERMODE","features":[47]},{"name":"MDM_SHIFT_EXTENDEDINFO","features":[47]},{"name":"MDM_SHIFT_HDLCPPP_AUTH","features":[47]},{"name":"MDM_SHIFT_HDLCPPP_ML","features":[47]},{"name":"MDM_SHIFT_HDLCPPP_SPEED","features":[47]},{"name":"MDM_SHIFT_PROTOCOLDATA","features":[47]},{"name":"MDM_SHIFT_PROTOCOLID","features":[47]},{"name":"MDM_SHIFT_PROTOCOLINFO","features":[47]},{"name":"MDM_SHIFT_V110_SPEED","features":[47]},{"name":"MDM_SHIFT_V120_ML","features":[47]},{"name":"MDM_SHIFT_V120_SPEED","features":[47]},{"name":"MDM_SHIFT_X75_DATA","features":[47]},{"name":"MDM_SPEED_ADJUST","features":[47]},{"name":"MDM_TONE_DIAL","features":[47]},{"name":"MDM_V110_SPEED_12DOT0K","features":[47]},{"name":"MDM_V110_SPEED_14DOT4K","features":[47]},{"name":"MDM_V110_SPEED_19DOT2K","features":[47]},{"name":"MDM_V110_SPEED_1DOT2K","features":[47]},{"name":"MDM_V110_SPEED_28DOT8K","features":[47]},{"name":"MDM_V110_SPEED_2DOT4K","features":[47]},{"name":"MDM_V110_SPEED_38DOT4K","features":[47]},{"name":"MDM_V110_SPEED_4DOT8K","features":[47]},{"name":"MDM_V110_SPEED_57DOT6K","features":[47]},{"name":"MDM_V110_SPEED_9DOT6K","features":[47]},{"name":"MDM_V110_SPEED_DEFAULT","features":[47]},{"name":"MDM_V120_ML_2","features":[47]},{"name":"MDM_V120_ML_DEFAULT","features":[47]},{"name":"MDM_V120_ML_NONE","features":[47]},{"name":"MDM_V120_SPEED_56K","features":[47]},{"name":"MDM_V120_SPEED_64K","features":[47]},{"name":"MDM_V120_SPEED_DEFAULT","features":[47]},{"name":"MDM_V23_OVERRIDE","features":[47]},{"name":"MDM_X75_DATA_128K","features":[47]},{"name":"MDM_X75_DATA_64K","features":[47]},{"name":"MDM_X75_DATA_BTX","features":[47]},{"name":"MDM_X75_DATA_DEFAULT","features":[47]},{"name":"MDM_X75_DATA_T_70","features":[47]},{"name":"MODEMDEVCAPS","features":[47]},{"name":"MODEMDEVCAPS_DIAL_OPTIONS","features":[47]},{"name":"MODEMDEVCAPS_SPEAKER_MODE","features":[47]},{"name":"MODEMDEVCAPS_SPEAKER_VOLUME","features":[47]},{"name":"MODEMSETTINGS","features":[47]},{"name":"MODEMSETTINGS_SPEAKER_MODE","features":[47]},{"name":"MODEM_SPEAKER_VOLUME","features":[47]},{"name":"MODEM_STATUS_FLAGS","features":[47]},{"name":"MS_CTS_ON","features":[47]},{"name":"MS_DSR_ON","features":[47]},{"name":"MS_RING_ON","features":[47]},{"name":"MS_RLSD_ON","features":[47]},{"name":"NOPARITY","features":[47]},{"name":"ODDPARITY","features":[47]},{"name":"ONE5STOPBITS","features":[47]},{"name":"ONESTOPBIT","features":[47]},{"name":"OpenCommPort","features":[47,1]},{"name":"PARITY_EVEN","features":[47]},{"name":"PARITY_MARK","features":[47]},{"name":"PARITY_NONE","features":[47]},{"name":"PARITY_ODD","features":[47]},{"name":"PARITY_SPACE","features":[47]},{"name":"PURGE_COMM_FLAGS","features":[47]},{"name":"PURGE_RXABORT","features":[47]},{"name":"PURGE_RXCLEAR","features":[47]},{"name":"PURGE_TXABORT","features":[47]},{"name":"PURGE_TXCLEAR","features":[47]},{"name":"PurgeComm","features":[47,1]},{"name":"SETBREAK","features":[47]},{"name":"SETDTR","features":[47]},{"name":"SETRTS","features":[47]},{"name":"SETXOFF","features":[47]},{"name":"SETXON","features":[47]},{"name":"SID_3GPP_SUPSVCMODEL","features":[47]},{"name":"SPACEPARITY","features":[47]},{"name":"STOPBITS_10","features":[47]},{"name":"STOPBITS_15","features":[47]},{"name":"STOPBITS_20","features":[47]},{"name":"SetCommBreak","features":[47,1]},{"name":"SetCommConfig","features":[47,1]},{"name":"SetCommMask","features":[47,1]},{"name":"SetCommState","features":[47,1]},{"name":"SetCommTimeouts","features":[47,1]},{"name":"SetDefaultCommConfigA","features":[47,1]},{"name":"SetDefaultCommConfigW","features":[47,1]},{"name":"SetupComm","features":[47,1]},{"name":"TWOSTOPBITS","features":[47]},{"name":"TransmitCommChar","features":[47,1]},{"name":"WaitCommEvent","features":[47,1,6]}],"372":[{"name":"ALLOC_LOG_CONF","features":[48]},{"name":"BASIC_LOG_CONF","features":[48]},{"name":"BOOT_LOG_CONF","features":[48]},{"name":"BUSNUMBER_DES","features":[48]},{"name":"BUSNUMBER_RANGE","features":[48]},{"name":"BUSNUMBER_RESOURCE","features":[48]},{"name":"CABINET_INFO_A","features":[48]},{"name":"CABINET_INFO_A","features":[48]},{"name":"CABINET_INFO_W","features":[48]},{"name":"CABINET_INFO_W","features":[48]},{"name":"CMP_WaitNoPendingInstallEvents","features":[48]},{"name":"CM_ADD_ID_BITS","features":[48]},{"name":"CM_ADD_ID_COMPATIBLE","features":[48]},{"name":"CM_ADD_ID_HARDWARE","features":[48]},{"name":"CM_ADD_RANGE_ADDIFCONFLICT","features":[48]},{"name":"CM_ADD_RANGE_BITS","features":[48]},{"name":"CM_ADD_RANGE_DONOTADDIFCONFLICT","features":[48]},{"name":"CM_Add_Empty_Log_Conf","features":[39,48]},{"name":"CM_Add_Empty_Log_Conf_Ex","features":[39,48]},{"name":"CM_Add_IDA","features":[48]},{"name":"CM_Add_IDW","features":[48]},{"name":"CM_Add_ID_ExA","features":[48]},{"name":"CM_Add_ID_ExW","features":[48]},{"name":"CM_Add_Range","features":[48]},{"name":"CM_Add_Res_Des","features":[48]},{"name":"CM_Add_Res_Des_Ex","features":[48]},{"name":"CM_CDFLAGS","features":[48]},{"name":"CM_CDFLAGS_DRIVER","features":[48]},{"name":"CM_CDFLAGS_RESERVED","features":[48]},{"name":"CM_CDFLAGS_ROOT_OWNED","features":[48]},{"name":"CM_CDMASK","features":[48]},{"name":"CM_CDMASK_DESCRIPTION","features":[48]},{"name":"CM_CDMASK_DEVINST","features":[48]},{"name":"CM_CDMASK_FLAGS","features":[48]},{"name":"CM_CDMASK_RESDES","features":[48]},{"name":"CM_CDMASK_VALID","features":[48]},{"name":"CM_CLASS_PROPERTY_BITS","features":[48]},{"name":"CM_CLASS_PROPERTY_INSTALLER","features":[48]},{"name":"CM_CLASS_PROPERTY_INTERFACE","features":[48]},{"name":"CM_CREATE_DEVINST_BITS","features":[48]},{"name":"CM_CREATE_DEVINST_DO_NOT_INSTALL","features":[48]},{"name":"CM_CREATE_DEVINST_GENERATE_ID","features":[48]},{"name":"CM_CREATE_DEVINST_NORMAL","features":[48]},{"name":"CM_CREATE_DEVINST_NO_WAIT_INSTALL","features":[48]},{"name":"CM_CREATE_DEVINST_PHANTOM","features":[48]},{"name":"CM_CREATE_DEVNODE_BITS","features":[48]},{"name":"CM_CREATE_DEVNODE_DO_NOT_INSTALL","features":[48]},{"name":"CM_CREATE_DEVNODE_GENERATE_ID","features":[48]},{"name":"CM_CREATE_DEVNODE_NORMAL","features":[48]},{"name":"CM_CREATE_DEVNODE_NO_WAIT_INSTALL","features":[48]},{"name":"CM_CREATE_DEVNODE_PHANTOM","features":[48]},{"name":"CM_CRP_CHARACTERISTICS","features":[48]},{"name":"CM_CRP_DEVTYPE","features":[48]},{"name":"CM_CRP_EXCLUSIVE","features":[48]},{"name":"CM_CRP_LOWERFILTERS","features":[48]},{"name":"CM_CRP_MAX","features":[48]},{"name":"CM_CRP_MIN","features":[48]},{"name":"CM_CRP_SECURITY","features":[48]},{"name":"CM_CRP_SECURITY_SDS","features":[48]},{"name":"CM_CRP_UPPERFILTERS","features":[48]},{"name":"CM_CUSTOMDEVPROP_BITS","features":[48]},{"name":"CM_CUSTOMDEVPROP_MERGE_MULTISZ","features":[48]},{"name":"CM_Connect_MachineA","features":[48]},{"name":"CM_Connect_MachineW","features":[48]},{"name":"CM_Create_DevNodeA","features":[48]},{"name":"CM_Create_DevNodeW","features":[48]},{"name":"CM_Create_DevNode_ExA","features":[48]},{"name":"CM_Create_DevNode_ExW","features":[48]},{"name":"CM_Create_Range_List","features":[48]},{"name":"CM_DELETE_CLASS_BITS","features":[48]},{"name":"CM_DELETE_CLASS_INTERFACE","features":[48]},{"name":"CM_DELETE_CLASS_ONLY","features":[48]},{"name":"CM_DELETE_CLASS_SUBKEYS","features":[48]},{"name":"CM_DETECT_BITS","features":[48]},{"name":"CM_DETECT_CRASHED","features":[48]},{"name":"CM_DETECT_HWPROF_FIRST_BOOT","features":[48]},{"name":"CM_DETECT_NEW_PROFILE","features":[48]},{"name":"CM_DETECT_RUN","features":[48]},{"name":"CM_DEVCAP","features":[48]},{"name":"CM_DEVCAP_DOCKDEVICE","features":[48]},{"name":"CM_DEVCAP_EJECTSUPPORTED","features":[48]},{"name":"CM_DEVCAP_HARDWAREDISABLED","features":[48]},{"name":"CM_DEVCAP_LOCKSUPPORTED","features":[48]},{"name":"CM_DEVCAP_NONDYNAMIC","features":[48]},{"name":"CM_DEVCAP_RAWDEVICEOK","features":[48]},{"name":"CM_DEVCAP_REMOVABLE","features":[48]},{"name":"CM_DEVCAP_SECUREDEVICE","features":[48]},{"name":"CM_DEVCAP_SILENTINSTALL","features":[48]},{"name":"CM_DEVCAP_SURPRISEREMOVALOK","features":[48]},{"name":"CM_DEVCAP_UNIQUEID","features":[48]},{"name":"CM_DEVICE_PANEL_EDGE_BOTTOM","features":[48]},{"name":"CM_DEVICE_PANEL_EDGE_LEFT","features":[48]},{"name":"CM_DEVICE_PANEL_EDGE_RIGHT","features":[48]},{"name":"CM_DEVICE_PANEL_EDGE_TOP","features":[48]},{"name":"CM_DEVICE_PANEL_EDGE_UNKNOWN","features":[48]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_HINGE","features":[48]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PIVOT","features":[48]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PLANAR","features":[48]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_SWIVEL","features":[48]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_UNKNOWN","features":[48]},{"name":"CM_DEVICE_PANEL_ORIENTATION_HORIZONTAL","features":[48]},{"name":"CM_DEVICE_PANEL_ORIENTATION_VERTICAL","features":[48]},{"name":"CM_DEVICE_PANEL_SHAPE_OVAL","features":[48]},{"name":"CM_DEVICE_PANEL_SHAPE_RECTANGLE","features":[48]},{"name":"CM_DEVICE_PANEL_SHAPE_UNKNOWN","features":[48]},{"name":"CM_DEVICE_PANEL_SIDE_BACK","features":[48]},{"name":"CM_DEVICE_PANEL_SIDE_BOTTOM","features":[48]},{"name":"CM_DEVICE_PANEL_SIDE_FRONT","features":[48]},{"name":"CM_DEVICE_PANEL_SIDE_LEFT","features":[48]},{"name":"CM_DEVICE_PANEL_SIDE_RIGHT","features":[48]},{"name":"CM_DEVICE_PANEL_SIDE_TOP","features":[48]},{"name":"CM_DEVICE_PANEL_SIDE_UNKNOWN","features":[48]},{"name":"CM_DEVNODE_STATUS_FLAGS","features":[48]},{"name":"CM_DISABLE_ABSOLUTE","features":[48]},{"name":"CM_DISABLE_BITS","features":[48]},{"name":"CM_DISABLE_HARDWARE","features":[48]},{"name":"CM_DISABLE_PERSIST","features":[48]},{"name":"CM_DISABLE_POLITE","features":[48]},{"name":"CM_DISABLE_UI_NOT_OK","features":[48]},{"name":"CM_DRP_ADDRESS","features":[48]},{"name":"CM_DRP_BASE_CONTAINERID","features":[48]},{"name":"CM_DRP_BUSNUMBER","features":[48]},{"name":"CM_DRP_BUSTYPEGUID","features":[48]},{"name":"CM_DRP_CAPABILITIES","features":[48]},{"name":"CM_DRP_CHARACTERISTICS","features":[48]},{"name":"CM_DRP_CLASS","features":[48]},{"name":"CM_DRP_CLASSGUID","features":[48]},{"name":"CM_DRP_COMPATIBLEIDS","features":[48]},{"name":"CM_DRP_CONFIGFLAGS","features":[48]},{"name":"CM_DRP_DEVICEDESC","features":[48]},{"name":"CM_DRP_DEVICE_POWER_DATA","features":[48]},{"name":"CM_DRP_DEVTYPE","features":[48]},{"name":"CM_DRP_DRIVER","features":[48]},{"name":"CM_DRP_ENUMERATOR_NAME","features":[48]},{"name":"CM_DRP_EXCLUSIVE","features":[48]},{"name":"CM_DRP_FRIENDLYNAME","features":[48]},{"name":"CM_DRP_HARDWAREID","features":[48]},{"name":"CM_DRP_INSTALL_STATE","features":[48]},{"name":"CM_DRP_LEGACYBUSTYPE","features":[48]},{"name":"CM_DRP_LOCATION_INFORMATION","features":[48]},{"name":"CM_DRP_LOCATION_PATHS","features":[48]},{"name":"CM_DRP_LOWERFILTERS","features":[48]},{"name":"CM_DRP_MAX","features":[48]},{"name":"CM_DRP_MFG","features":[48]},{"name":"CM_DRP_MIN","features":[48]},{"name":"CM_DRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[48]},{"name":"CM_DRP_REMOVAL_POLICY","features":[48]},{"name":"CM_DRP_REMOVAL_POLICY_HW_DEFAULT","features":[48]},{"name":"CM_DRP_REMOVAL_POLICY_OVERRIDE","features":[48]},{"name":"CM_DRP_SECURITY","features":[48]},{"name":"CM_DRP_SECURITY_SDS","features":[48]},{"name":"CM_DRP_SERVICE","features":[48]},{"name":"CM_DRP_UI_NUMBER","features":[48]},{"name":"CM_DRP_UI_NUMBER_DESC_FORMAT","features":[48]},{"name":"CM_DRP_UNUSED0","features":[48]},{"name":"CM_DRP_UNUSED1","features":[48]},{"name":"CM_DRP_UNUSED2","features":[48]},{"name":"CM_DRP_UPPERFILTERS","features":[48]},{"name":"CM_Delete_Class_Key","features":[48]},{"name":"CM_Delete_Class_Key_Ex","features":[48]},{"name":"CM_Delete_DevNode_Key","features":[48]},{"name":"CM_Delete_DevNode_Key_Ex","features":[48]},{"name":"CM_Delete_Device_Interface_KeyA","features":[48]},{"name":"CM_Delete_Device_Interface_KeyW","features":[48]},{"name":"CM_Delete_Device_Interface_Key_ExA","features":[48]},{"name":"CM_Delete_Device_Interface_Key_ExW","features":[48]},{"name":"CM_Delete_Range","features":[48]},{"name":"CM_Detect_Resource_Conflict","features":[48,1]},{"name":"CM_Detect_Resource_Conflict_Ex","features":[48,1]},{"name":"CM_Disable_DevNode","features":[48]},{"name":"CM_Disable_DevNode_Ex","features":[48]},{"name":"CM_Disconnect_Machine","features":[48]},{"name":"CM_Dup_Range_List","features":[48]},{"name":"CM_ENUMERATE_CLASSES_BITS","features":[48]},{"name":"CM_ENUMERATE_CLASSES_INSTALLER","features":[48]},{"name":"CM_ENUMERATE_CLASSES_INTERFACE","features":[48]},{"name":"CM_ENUMERATE_FLAGS","features":[48]},{"name":"CM_Enable_DevNode","features":[48]},{"name":"CM_Enable_DevNode_Ex","features":[48]},{"name":"CM_Enumerate_Classes","features":[48]},{"name":"CM_Enumerate_Classes_Ex","features":[48]},{"name":"CM_Enumerate_EnumeratorsA","features":[48]},{"name":"CM_Enumerate_EnumeratorsW","features":[48]},{"name":"CM_Enumerate_Enumerators_ExA","features":[48]},{"name":"CM_Enumerate_Enumerators_ExW","features":[48]},{"name":"CM_Find_Range","features":[48]},{"name":"CM_First_Range","features":[48]},{"name":"CM_Free_Log_Conf","features":[48]},{"name":"CM_Free_Log_Conf_Ex","features":[48]},{"name":"CM_Free_Log_Conf_Handle","features":[48]},{"name":"CM_Free_Range_List","features":[48]},{"name":"CM_Free_Res_Des","features":[48]},{"name":"CM_Free_Res_Des_Ex","features":[48]},{"name":"CM_Free_Res_Des_Handle","features":[48]},{"name":"CM_Free_Resource_Conflict_Handle","features":[48]},{"name":"CM_GETIDLIST_DONOTGENERATE","features":[48]},{"name":"CM_GETIDLIST_FILTER_BITS","features":[48]},{"name":"CM_GETIDLIST_FILTER_BUSRELATIONS","features":[48]},{"name":"CM_GETIDLIST_FILTER_CLASS","features":[48]},{"name":"CM_GETIDLIST_FILTER_EJECTRELATIONS","features":[48]},{"name":"CM_GETIDLIST_FILTER_ENUMERATOR","features":[48]},{"name":"CM_GETIDLIST_FILTER_NONE","features":[48]},{"name":"CM_GETIDLIST_FILTER_POWERRELATIONS","features":[48]},{"name":"CM_GETIDLIST_FILTER_PRESENT","features":[48]},{"name":"CM_GETIDLIST_FILTER_REMOVALRELATIONS","features":[48]},{"name":"CM_GETIDLIST_FILTER_SERVICE","features":[48]},{"name":"CM_GETIDLIST_FILTER_TRANSPORTRELATIONS","features":[48]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_ALL_DEVICES","features":[48]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_BITS","features":[48]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_FLAGS","features":[48]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_PRESENT","features":[48]},{"name":"CM_GLOBAL_STATE_CAN_DO_UI","features":[48]},{"name":"CM_GLOBAL_STATE_DETECTION_PENDING","features":[48]},{"name":"CM_GLOBAL_STATE_ON_BIG_STACK","features":[48]},{"name":"CM_GLOBAL_STATE_REBOOT_REQUIRED","features":[48]},{"name":"CM_GLOBAL_STATE_SERVICES_AVAILABLE","features":[48]},{"name":"CM_GLOBAL_STATE_SHUTTING_DOWN","features":[48]},{"name":"CM_Get_Child","features":[48]},{"name":"CM_Get_Child_Ex","features":[48]},{"name":"CM_Get_Class_Key_NameA","features":[48]},{"name":"CM_Get_Class_Key_NameW","features":[48]},{"name":"CM_Get_Class_Key_Name_ExA","features":[48]},{"name":"CM_Get_Class_Key_Name_ExW","features":[48]},{"name":"CM_Get_Class_NameA","features":[48]},{"name":"CM_Get_Class_NameW","features":[48]},{"name":"CM_Get_Class_Name_ExA","features":[48]},{"name":"CM_Get_Class_Name_ExW","features":[48]},{"name":"CM_Get_Class_PropertyW","features":[48,35]},{"name":"CM_Get_Class_Property_ExW","features":[48,35]},{"name":"CM_Get_Class_Property_Keys","features":[48,35]},{"name":"CM_Get_Class_Property_Keys_Ex","features":[48,35]},{"name":"CM_Get_Class_Registry_PropertyA","features":[48]},{"name":"CM_Get_Class_Registry_PropertyW","features":[48]},{"name":"CM_Get_Depth","features":[48]},{"name":"CM_Get_Depth_Ex","features":[48]},{"name":"CM_Get_DevNode_Custom_PropertyA","features":[48]},{"name":"CM_Get_DevNode_Custom_PropertyW","features":[48]},{"name":"CM_Get_DevNode_Custom_Property_ExA","features":[48]},{"name":"CM_Get_DevNode_Custom_Property_ExW","features":[48]},{"name":"CM_Get_DevNode_PropertyW","features":[48,35]},{"name":"CM_Get_DevNode_Property_ExW","features":[48,35]},{"name":"CM_Get_DevNode_Property_Keys","features":[48,35]},{"name":"CM_Get_DevNode_Property_Keys_Ex","features":[48,35]},{"name":"CM_Get_DevNode_Registry_PropertyA","features":[48]},{"name":"CM_Get_DevNode_Registry_PropertyW","features":[48]},{"name":"CM_Get_DevNode_Registry_Property_ExA","features":[48]},{"name":"CM_Get_DevNode_Registry_Property_ExW","features":[48]},{"name":"CM_Get_DevNode_Status","features":[48]},{"name":"CM_Get_DevNode_Status_Ex","features":[48]},{"name":"CM_Get_Device_IDA","features":[48]},{"name":"CM_Get_Device_IDW","features":[48]},{"name":"CM_Get_Device_ID_ExA","features":[48]},{"name":"CM_Get_Device_ID_ExW","features":[48]},{"name":"CM_Get_Device_ID_ListA","features":[48]},{"name":"CM_Get_Device_ID_ListW","features":[48]},{"name":"CM_Get_Device_ID_List_ExA","features":[48]},{"name":"CM_Get_Device_ID_List_ExW","features":[48]},{"name":"CM_Get_Device_ID_List_SizeA","features":[48]},{"name":"CM_Get_Device_ID_List_SizeW","features":[48]},{"name":"CM_Get_Device_ID_List_Size_ExA","features":[48]},{"name":"CM_Get_Device_ID_List_Size_ExW","features":[48]},{"name":"CM_Get_Device_ID_Size","features":[48]},{"name":"CM_Get_Device_ID_Size_Ex","features":[48]},{"name":"CM_Get_Device_Interface_AliasA","features":[48]},{"name":"CM_Get_Device_Interface_AliasW","features":[48]},{"name":"CM_Get_Device_Interface_Alias_ExA","features":[48]},{"name":"CM_Get_Device_Interface_Alias_ExW","features":[48]},{"name":"CM_Get_Device_Interface_ListA","features":[48]},{"name":"CM_Get_Device_Interface_ListW","features":[48]},{"name":"CM_Get_Device_Interface_List_ExA","features":[48]},{"name":"CM_Get_Device_Interface_List_ExW","features":[48]},{"name":"CM_Get_Device_Interface_List_SizeA","features":[48]},{"name":"CM_Get_Device_Interface_List_SizeW","features":[48]},{"name":"CM_Get_Device_Interface_List_Size_ExA","features":[48]},{"name":"CM_Get_Device_Interface_List_Size_ExW","features":[48]},{"name":"CM_Get_Device_Interface_PropertyW","features":[48,35]},{"name":"CM_Get_Device_Interface_Property_ExW","features":[48,35]},{"name":"CM_Get_Device_Interface_Property_KeysW","features":[48,35]},{"name":"CM_Get_Device_Interface_Property_Keys_ExW","features":[48,35]},{"name":"CM_Get_First_Log_Conf","features":[48]},{"name":"CM_Get_First_Log_Conf_Ex","features":[48]},{"name":"CM_Get_Global_State","features":[48]},{"name":"CM_Get_Global_State_Ex","features":[48]},{"name":"CM_Get_HW_Prof_FlagsA","features":[48]},{"name":"CM_Get_HW_Prof_FlagsW","features":[48]},{"name":"CM_Get_HW_Prof_Flags_ExA","features":[48]},{"name":"CM_Get_HW_Prof_Flags_ExW","features":[48]},{"name":"CM_Get_Hardware_Profile_InfoA","features":[48]},{"name":"CM_Get_Hardware_Profile_InfoW","features":[48]},{"name":"CM_Get_Hardware_Profile_Info_ExA","features":[48]},{"name":"CM_Get_Hardware_Profile_Info_ExW","features":[48]},{"name":"CM_Get_Log_Conf_Priority","features":[48]},{"name":"CM_Get_Log_Conf_Priority_Ex","features":[48]},{"name":"CM_Get_Next_Log_Conf","features":[48]},{"name":"CM_Get_Next_Log_Conf_Ex","features":[48]},{"name":"CM_Get_Next_Res_Des","features":[48]},{"name":"CM_Get_Next_Res_Des_Ex","features":[48]},{"name":"CM_Get_Parent","features":[48]},{"name":"CM_Get_Parent_Ex","features":[48]},{"name":"CM_Get_Res_Des_Data","features":[48]},{"name":"CM_Get_Res_Des_Data_Ex","features":[48]},{"name":"CM_Get_Res_Des_Data_Size","features":[48]},{"name":"CM_Get_Res_Des_Data_Size_Ex","features":[48]},{"name":"CM_Get_Resource_Conflict_Count","features":[48]},{"name":"CM_Get_Resource_Conflict_DetailsA","features":[48]},{"name":"CM_Get_Resource_Conflict_DetailsW","features":[48]},{"name":"CM_Get_Sibling","features":[48]},{"name":"CM_Get_Sibling_Ex","features":[48]},{"name":"CM_Get_Version","features":[48]},{"name":"CM_Get_Version_Ex","features":[48]},{"name":"CM_HWPI_DOCKED","features":[48]},{"name":"CM_HWPI_NOT_DOCKABLE","features":[48]},{"name":"CM_HWPI_UNDOCKED","features":[48]},{"name":"CM_INSTALL_STATE","features":[48]},{"name":"CM_INSTALL_STATE_FAILED_INSTALL","features":[48]},{"name":"CM_INSTALL_STATE_FINISH_INSTALL","features":[48]},{"name":"CM_INSTALL_STATE_INSTALLED","features":[48]},{"name":"CM_INSTALL_STATE_NEEDS_REINSTALL","features":[48]},{"name":"CM_Intersect_Range_List","features":[48]},{"name":"CM_Invert_Range_List","features":[48]},{"name":"CM_Is_Dock_Station_Present","features":[48,1]},{"name":"CM_Is_Dock_Station_Present_Ex","features":[48,1]},{"name":"CM_Is_Version_Available","features":[48,1]},{"name":"CM_Is_Version_Available_Ex","features":[48,1]},{"name":"CM_LOCATE_DEVNODE_BITS","features":[48]},{"name":"CM_LOCATE_DEVNODE_CANCELREMOVE","features":[48]},{"name":"CM_LOCATE_DEVNODE_FLAGS","features":[48]},{"name":"CM_LOCATE_DEVNODE_NORMAL","features":[48]},{"name":"CM_LOCATE_DEVNODE_NOVALIDATION","features":[48]},{"name":"CM_LOCATE_DEVNODE_PHANTOM","features":[48]},{"name":"CM_LOG_CONF","features":[48]},{"name":"CM_Locate_DevNodeA","features":[48]},{"name":"CM_Locate_DevNodeW","features":[48]},{"name":"CM_Locate_DevNode_ExA","features":[48]},{"name":"CM_Locate_DevNode_ExW","features":[48]},{"name":"CM_MapCrToWin32Err","features":[48]},{"name":"CM_Merge_Range_List","features":[48]},{"name":"CM_Modify_Res_Des","features":[48]},{"name":"CM_Modify_Res_Des_Ex","features":[48]},{"name":"CM_Move_DevNode","features":[48]},{"name":"CM_Move_DevNode_Ex","features":[48]},{"name":"CM_NAME_ATTRIBUTE_NAME_RETRIEVED_FROM_DEVICE","features":[48]},{"name":"CM_NAME_ATTRIBUTE_USER_ASSIGNED_NAME","features":[48]},{"name":"CM_NOTIFY_ACTION","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICECUSTOMEVENT","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEENUMERATED","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEREMOVED","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCESTARTED","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEARRIVAL","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEREMOVAL","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVE","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVEFAILED","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVECOMPLETE","features":[48]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVEPENDING","features":[48]},{"name":"CM_NOTIFY_ACTION_MAX","features":[48]},{"name":"CM_NOTIFY_EVENT_DATA","features":[48]},{"name":"CM_NOTIFY_FILTER","features":[48,1]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_DEVICE_INSTANCES","features":[48]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_INTERFACE_CLASSES","features":[48]},{"name":"CM_NOTIFY_FILTER_TYPE","features":[48]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEHANDLE","features":[48]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINSTANCE","features":[48]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINTERFACE","features":[48]},{"name":"CM_NOTIFY_FILTER_TYPE_MAX","features":[48]},{"name":"CM_Next_Range","features":[48]},{"name":"CM_OPEN_CLASS_KEY_BITS","features":[48]},{"name":"CM_OPEN_CLASS_KEY_INSTALLER","features":[48]},{"name":"CM_OPEN_CLASS_KEY_INTERFACE","features":[48]},{"name":"CM_Open_Class_KeyA","features":[48,49]},{"name":"CM_Open_Class_KeyW","features":[48,49]},{"name":"CM_Open_Class_Key_ExA","features":[48,49]},{"name":"CM_Open_Class_Key_ExW","features":[48,49]},{"name":"CM_Open_DevNode_Key","features":[48,49]},{"name":"CM_Open_DevNode_Key_Ex","features":[48,49]},{"name":"CM_Open_Device_Interface_KeyA","features":[48,49]},{"name":"CM_Open_Device_Interface_KeyW","features":[48,49]},{"name":"CM_Open_Device_Interface_Key_ExA","features":[48,49]},{"name":"CM_Open_Device_Interface_Key_ExW","features":[48,49]},{"name":"CM_PROB","features":[48]},{"name":"CM_PROB_BIOS_TABLE","features":[48]},{"name":"CM_PROB_BOOT_CONFIG_CONFLICT","features":[48]},{"name":"CM_PROB_CANT_SHARE_IRQ","features":[48]},{"name":"CM_PROB_CONSOLE_LOCKED","features":[48]},{"name":"CM_PROB_DEVICE_NOT_THERE","features":[48]},{"name":"CM_PROB_DEVICE_RESET","features":[48]},{"name":"CM_PROB_DEVLOADER_FAILED","features":[48]},{"name":"CM_PROB_DEVLOADER_NOT_FOUND","features":[48]},{"name":"CM_PROB_DEVLOADER_NOT_READY","features":[48]},{"name":"CM_PROB_DISABLED","features":[48]},{"name":"CM_PROB_DISABLED_SERVICE","features":[48]},{"name":"CM_PROB_DRIVER_BLOCKED","features":[48]},{"name":"CM_PROB_DRIVER_FAILED_LOAD","features":[48]},{"name":"CM_PROB_DRIVER_FAILED_PRIOR_UNLOAD","features":[48]},{"name":"CM_PROB_DRIVER_SERVICE_KEY_INVALID","features":[48]},{"name":"CM_PROB_DUPLICATE_DEVICE","features":[48]},{"name":"CM_PROB_ENTRY_IS_WRONG_TYPE","features":[48]},{"name":"CM_PROB_FAILED_ADD","features":[48]},{"name":"CM_PROB_FAILED_DRIVER_ENTRY","features":[48]},{"name":"CM_PROB_FAILED_FILTER","features":[48]},{"name":"CM_PROB_FAILED_INSTALL","features":[48]},{"name":"CM_PROB_FAILED_POST_START","features":[48]},{"name":"CM_PROB_FAILED_START","features":[48]},{"name":"CM_PROB_GUEST_ASSIGNMENT_FAILED","features":[48]},{"name":"CM_PROB_HALTED","features":[48]},{"name":"CM_PROB_HARDWARE_DISABLED","features":[48]},{"name":"CM_PROB_HELD_FOR_EJECT","features":[48]},{"name":"CM_PROB_INVALID_DATA","features":[48]},{"name":"CM_PROB_IRQ_TRANSLATION_FAILED","features":[48]},{"name":"CM_PROB_LACKED_ARBITRATOR","features":[48]},{"name":"CM_PROB_LEGACY_SERVICE_NO_DEVICES","features":[48]},{"name":"CM_PROB_LIAR","features":[48]},{"name":"CM_PROB_MOVED","features":[48]},{"name":"CM_PROB_NEED_CLASS_CONFIG","features":[48]},{"name":"CM_PROB_NEED_RESTART","features":[48]},{"name":"CM_PROB_NORMAL_CONFLICT","features":[48]},{"name":"CM_PROB_NOT_CONFIGURED","features":[48]},{"name":"CM_PROB_NOT_VERIFIED","features":[48]},{"name":"CM_PROB_NO_SOFTCONFIG","features":[48]},{"name":"CM_PROB_NO_VALID_LOG_CONF","features":[48]},{"name":"CM_PROB_OUT_OF_MEMORY","features":[48]},{"name":"CM_PROB_PARTIAL_LOG_CONF","features":[48]},{"name":"CM_PROB_PHANTOM","features":[48]},{"name":"CM_PROB_REENUMERATION","features":[48]},{"name":"CM_PROB_REGISTRY","features":[48]},{"name":"CM_PROB_REGISTRY_TOO_LARGE","features":[48]},{"name":"CM_PROB_REINSTALL","features":[48]},{"name":"CM_PROB_SETPROPERTIES_FAILED","features":[48]},{"name":"CM_PROB_SYSTEM_SHUTDOWN","features":[48]},{"name":"CM_PROB_TOO_EARLY","features":[48]},{"name":"CM_PROB_TRANSLATION_FAILED","features":[48]},{"name":"CM_PROB_UNKNOWN_RESOURCE","features":[48]},{"name":"CM_PROB_UNSIGNED_DRIVER","features":[48]},{"name":"CM_PROB_USED_BY_DEBUGGER","features":[48]},{"name":"CM_PROB_VXDLDR","features":[48]},{"name":"CM_PROB_WAITING_ON_DEPENDENCY","features":[48]},{"name":"CM_PROB_WILL_BE_REMOVED","features":[48]},{"name":"CM_QUERY_ARBITRATOR_BITS","features":[48]},{"name":"CM_QUERY_ARBITRATOR_RAW","features":[48]},{"name":"CM_QUERY_ARBITRATOR_TRANSLATED","features":[48]},{"name":"CM_QUERY_REMOVE_UI_NOT_OK","features":[48]},{"name":"CM_QUERY_REMOVE_UI_OK","features":[48]},{"name":"CM_Query_And_Remove_SubTreeA","features":[48]},{"name":"CM_Query_And_Remove_SubTreeW","features":[48]},{"name":"CM_Query_And_Remove_SubTree_ExA","features":[48]},{"name":"CM_Query_And_Remove_SubTree_ExW","features":[48]},{"name":"CM_Query_Arbitrator_Free_Data","features":[48]},{"name":"CM_Query_Arbitrator_Free_Data_Ex","features":[48]},{"name":"CM_Query_Arbitrator_Free_Size","features":[48]},{"name":"CM_Query_Arbitrator_Free_Size_Ex","features":[48]},{"name":"CM_Query_Remove_SubTree","features":[48]},{"name":"CM_Query_Remove_SubTree_Ex","features":[48]},{"name":"CM_Query_Resource_Conflict_List","features":[48]},{"name":"CM_REENUMERATE_ASYNCHRONOUS","features":[48]},{"name":"CM_REENUMERATE_BITS","features":[48]},{"name":"CM_REENUMERATE_FLAGS","features":[48]},{"name":"CM_REENUMERATE_NORMAL","features":[48]},{"name":"CM_REENUMERATE_RETRY_INSTALLATION","features":[48]},{"name":"CM_REENUMERATE_SYNCHRONOUS","features":[48]},{"name":"CM_REGISTER_DEVICE_DRIVER_BITS","features":[48]},{"name":"CM_REGISTER_DEVICE_DRIVER_DISABLEABLE","features":[48]},{"name":"CM_REGISTER_DEVICE_DRIVER_REMOVABLE","features":[48]},{"name":"CM_REGISTER_DEVICE_DRIVER_STATIC","features":[48]},{"name":"CM_REGISTRY_BITS","features":[48]},{"name":"CM_REGISTRY_CONFIG","features":[48]},{"name":"CM_REGISTRY_HARDWARE","features":[48]},{"name":"CM_REGISTRY_SOFTWARE","features":[48]},{"name":"CM_REGISTRY_USER","features":[48]},{"name":"CM_REMOVAL_POLICY","features":[48]},{"name":"CM_REMOVAL_POLICY_EXPECT_NO_REMOVAL","features":[48]},{"name":"CM_REMOVAL_POLICY_EXPECT_ORDERLY_REMOVAL","features":[48]},{"name":"CM_REMOVAL_POLICY_EXPECT_SURPRISE_REMOVAL","features":[48]},{"name":"CM_REMOVE_BITS","features":[48]},{"name":"CM_REMOVE_DISABLE","features":[48]},{"name":"CM_REMOVE_NO_RESTART","features":[48]},{"name":"CM_REMOVE_UI_NOT_OK","features":[48]},{"name":"CM_REMOVE_UI_OK","features":[48]},{"name":"CM_RESDES_WIDTH_32","features":[48]},{"name":"CM_RESDES_WIDTH_64","features":[48]},{"name":"CM_RESDES_WIDTH_BITS","features":[48]},{"name":"CM_RESDES_WIDTH_DEFAULT","features":[48]},{"name":"CM_RESTYPE","features":[48]},{"name":"CM_Reenumerate_DevNode","features":[48]},{"name":"CM_Reenumerate_DevNode_Ex","features":[48]},{"name":"CM_Register_Device_Driver","features":[48]},{"name":"CM_Register_Device_Driver_Ex","features":[48]},{"name":"CM_Register_Device_InterfaceA","features":[48]},{"name":"CM_Register_Device_InterfaceW","features":[48]},{"name":"CM_Register_Device_Interface_ExA","features":[48]},{"name":"CM_Register_Device_Interface_ExW","features":[48]},{"name":"CM_Register_Notification","features":[48,1]},{"name":"CM_Remove_SubTree","features":[48]},{"name":"CM_Remove_SubTree_Ex","features":[48]},{"name":"CM_Request_Device_EjectA","features":[48]},{"name":"CM_Request_Device_EjectW","features":[48]},{"name":"CM_Request_Device_Eject_ExA","features":[48]},{"name":"CM_Request_Device_Eject_ExW","features":[48]},{"name":"CM_Request_Eject_PC","features":[48]},{"name":"CM_Request_Eject_PC_Ex","features":[48]},{"name":"CM_Run_Detection","features":[48]},{"name":"CM_Run_Detection_Ex","features":[48]},{"name":"CM_SETUP_BITS","features":[48]},{"name":"CM_SETUP_DEVINST_CONFIG","features":[48]},{"name":"CM_SETUP_DEVINST_CONFIG_CLASS","features":[48]},{"name":"CM_SETUP_DEVINST_CONFIG_EXTENSIONS","features":[48]},{"name":"CM_SETUP_DEVINST_CONFIG_RESET","features":[48]},{"name":"CM_SETUP_DEVINST_READY","features":[48]},{"name":"CM_SETUP_DEVINST_RESET","features":[48]},{"name":"CM_SETUP_DEVNODE_CONFIG","features":[48]},{"name":"CM_SETUP_DEVNODE_CONFIG_CLASS","features":[48]},{"name":"CM_SETUP_DEVNODE_CONFIG_EXTENSIONS","features":[48]},{"name":"CM_SETUP_DEVNODE_CONFIG_RESET","features":[48]},{"name":"CM_SETUP_DEVNODE_READY","features":[48]},{"name":"CM_SETUP_DEVNODE_RESET","features":[48]},{"name":"CM_SETUP_DOWNLOAD","features":[48]},{"name":"CM_SETUP_PROP_CHANGE","features":[48]},{"name":"CM_SETUP_WRITE_LOG_CONFS","features":[48]},{"name":"CM_SET_DEVINST_PROBLEM_BITS","features":[48]},{"name":"CM_SET_DEVINST_PROBLEM_NORMAL","features":[48]},{"name":"CM_SET_DEVINST_PROBLEM_OVERRIDE","features":[48]},{"name":"CM_SET_DEVNODE_PROBLEM_BITS","features":[48]},{"name":"CM_SET_DEVNODE_PROBLEM_NORMAL","features":[48]},{"name":"CM_SET_DEVNODE_PROBLEM_OVERRIDE","features":[48]},{"name":"CM_SET_HW_PROF_FLAGS_BITS","features":[48]},{"name":"CM_SET_HW_PROF_FLAGS_UI_NOT_OK","features":[48]},{"name":"CM_Set_Class_PropertyW","features":[48,35]},{"name":"CM_Set_Class_Property_ExW","features":[48,35]},{"name":"CM_Set_Class_Registry_PropertyA","features":[48]},{"name":"CM_Set_Class_Registry_PropertyW","features":[48]},{"name":"CM_Set_DevNode_Problem","features":[48]},{"name":"CM_Set_DevNode_Problem_Ex","features":[48]},{"name":"CM_Set_DevNode_PropertyW","features":[48,35]},{"name":"CM_Set_DevNode_Property_ExW","features":[48,35]},{"name":"CM_Set_DevNode_Registry_PropertyA","features":[48]},{"name":"CM_Set_DevNode_Registry_PropertyW","features":[48]},{"name":"CM_Set_DevNode_Registry_Property_ExA","features":[48]},{"name":"CM_Set_DevNode_Registry_Property_ExW","features":[48]},{"name":"CM_Set_Device_Interface_PropertyW","features":[48,35]},{"name":"CM_Set_Device_Interface_Property_ExW","features":[48,35]},{"name":"CM_Set_HW_Prof","features":[48]},{"name":"CM_Set_HW_Prof_Ex","features":[48]},{"name":"CM_Set_HW_Prof_FlagsA","features":[48]},{"name":"CM_Set_HW_Prof_FlagsW","features":[48]},{"name":"CM_Set_HW_Prof_Flags_ExA","features":[48]},{"name":"CM_Set_HW_Prof_Flags_ExW","features":[48]},{"name":"CM_Setup_DevNode","features":[48]},{"name":"CM_Setup_DevNode_Ex","features":[48]},{"name":"CM_Test_Range_Available","features":[48]},{"name":"CM_Uninstall_DevNode","features":[48]},{"name":"CM_Uninstall_DevNode_Ex","features":[48]},{"name":"CM_Unregister_Device_InterfaceA","features":[48]},{"name":"CM_Unregister_Device_InterfaceW","features":[48]},{"name":"CM_Unregister_Device_Interface_ExA","features":[48]},{"name":"CM_Unregister_Device_Interface_ExW","features":[48]},{"name":"CM_Unregister_Notification","features":[48]},{"name":"COINSTALLER_CONTEXT_DATA","features":[48,1]},{"name":"COINSTALLER_CONTEXT_DATA","features":[48,1]},{"name":"CONFIGFLAG_BOOT_DEVICE","features":[48]},{"name":"CONFIGFLAG_CANTSTOPACHILD","features":[48]},{"name":"CONFIGFLAG_DISABLED","features":[48]},{"name":"CONFIGFLAG_FAILEDINSTALL","features":[48]},{"name":"CONFIGFLAG_FINISHINSTALL_ACTION","features":[48]},{"name":"CONFIGFLAG_FINISHINSTALL_UI","features":[48]},{"name":"CONFIGFLAG_FINISH_INSTALL","features":[48]},{"name":"CONFIGFLAG_IGNORE_BOOT_LC","features":[48]},{"name":"CONFIGFLAG_MANUAL_INSTALL","features":[48]},{"name":"CONFIGFLAG_NEEDS_CLASS_CONFIG","features":[48]},{"name":"CONFIGFLAG_NEEDS_FORCED_CONFIG","features":[48]},{"name":"CONFIGFLAG_NETBOOT_CARD","features":[48]},{"name":"CONFIGFLAG_NET_BOOT","features":[48]},{"name":"CONFIGFLAG_NOREMOVEEXIT","features":[48]},{"name":"CONFIGFLAG_OKREMOVEROM","features":[48]},{"name":"CONFIGFLAG_PARTIAL_LOG_CONF","features":[48]},{"name":"CONFIGFLAG_REINSTALL","features":[48]},{"name":"CONFIGFLAG_REMOVED","features":[48]},{"name":"CONFIGFLAG_SUPPRESS_SURPRISE","features":[48]},{"name":"CONFIGFLAG_VERIFY_HARDWARE","features":[48]},{"name":"CONFIGMG_VERSION","features":[48]},{"name":"CONFIGRET","features":[48]},{"name":"CONFLICT_DETAILS_A","features":[48]},{"name":"CONFLICT_DETAILS_W","features":[48]},{"name":"CONNECTION_DES","features":[48]},{"name":"CONNECTION_RESOURCE","features":[48]},{"name":"COPYFLG_FORCE_FILE_IN_USE","features":[48]},{"name":"COPYFLG_IN_USE_TRY_RENAME","features":[48]},{"name":"COPYFLG_NODECOMP","features":[48]},{"name":"COPYFLG_NOPRUNE","features":[48]},{"name":"COPYFLG_NOSKIP","features":[48]},{"name":"COPYFLG_NOVERSIONCHECK","features":[48]},{"name":"COPYFLG_NO_OVERWRITE","features":[48]},{"name":"COPYFLG_NO_VERSION_DIALOG","features":[48]},{"name":"COPYFLG_OVERWRITE_OLDER_ONLY","features":[48]},{"name":"COPYFLG_PROTECTED_WINDOWS_DRIVER_FILE","features":[48]},{"name":"COPYFLG_REPLACEONLY","features":[48]},{"name":"COPYFLG_REPLACE_BOOT_FILE","features":[48]},{"name":"COPYFLG_WARN_IF_SKIP","features":[48]},{"name":"CR_ACCESS_DENIED","features":[48]},{"name":"CR_ALREADY_SUCH_DEVINST","features":[48]},{"name":"CR_ALREADY_SUCH_DEVNODE","features":[48]},{"name":"CR_APM_VETOED","features":[48]},{"name":"CR_BUFFER_SMALL","features":[48]},{"name":"CR_CALL_NOT_IMPLEMENTED","features":[48]},{"name":"CR_CANT_SHARE_IRQ","features":[48]},{"name":"CR_CREATE_BLOCKED","features":[48]},{"name":"CR_DEFAULT","features":[48]},{"name":"CR_DEVICE_INTERFACE_ACTIVE","features":[48]},{"name":"CR_DEVICE_NOT_THERE","features":[48]},{"name":"CR_DEVINST_HAS_REQS","features":[48]},{"name":"CR_DEVLOADER_NOT_READY","features":[48]},{"name":"CR_DEVNODE_HAS_REQS","features":[48]},{"name":"CR_DLVXD_NOT_FOUND","features":[48]},{"name":"CR_FAILURE","features":[48]},{"name":"CR_FREE_RESOURCES","features":[48]},{"name":"CR_INVALID_API","features":[48]},{"name":"CR_INVALID_ARBITRATOR","features":[48]},{"name":"CR_INVALID_CONFLICT_LIST","features":[48]},{"name":"CR_INVALID_DATA","features":[48]},{"name":"CR_INVALID_DEVICE_ID","features":[48]},{"name":"CR_INVALID_DEVINST","features":[48]},{"name":"CR_INVALID_DEVNODE","features":[48]},{"name":"CR_INVALID_FLAG","features":[48]},{"name":"CR_INVALID_INDEX","features":[48]},{"name":"CR_INVALID_LOAD_TYPE","features":[48]},{"name":"CR_INVALID_LOG_CONF","features":[48]},{"name":"CR_INVALID_MACHINENAME","features":[48]},{"name":"CR_INVALID_NODELIST","features":[48]},{"name":"CR_INVALID_POINTER","features":[48]},{"name":"CR_INVALID_PRIORITY","features":[48]},{"name":"CR_INVALID_PROPERTY","features":[48]},{"name":"CR_INVALID_RANGE","features":[48]},{"name":"CR_INVALID_RANGE_LIST","features":[48]},{"name":"CR_INVALID_REFERENCE_STRING","features":[48]},{"name":"CR_INVALID_RESOURCEID","features":[48]},{"name":"CR_INVALID_RES_DES","features":[48]},{"name":"CR_INVALID_STRUCTURE_SIZE","features":[48]},{"name":"CR_MACHINE_UNAVAILABLE","features":[48]},{"name":"CR_NEED_RESTART","features":[48]},{"name":"CR_NOT_DISABLEABLE","features":[48]},{"name":"CR_NOT_SYSTEM_VM","features":[48]},{"name":"CR_NO_ARBITRATOR","features":[48]},{"name":"CR_NO_CM_SERVICES","features":[48]},{"name":"CR_NO_DEPENDENT","features":[48]},{"name":"CR_NO_MORE_HW_PROFILES","features":[48]},{"name":"CR_NO_MORE_LOG_CONF","features":[48]},{"name":"CR_NO_MORE_RES_DES","features":[48]},{"name":"CR_NO_REGISTRY_HANDLE","features":[48]},{"name":"CR_NO_SUCH_DEVICE_INTERFACE","features":[48]},{"name":"CR_NO_SUCH_DEVINST","features":[48]},{"name":"CR_NO_SUCH_DEVNODE","features":[48]},{"name":"CR_NO_SUCH_LOGICAL_DEV","features":[48]},{"name":"CR_NO_SUCH_REGISTRY_KEY","features":[48]},{"name":"CR_NO_SUCH_VALUE","features":[48]},{"name":"CR_OUT_OF_MEMORY","features":[48]},{"name":"CR_QUERY_VETOED","features":[48]},{"name":"CR_REGISTRY_ERROR","features":[48]},{"name":"CR_REMOTE_COMM_FAILURE","features":[48]},{"name":"CR_REMOVE_VETOED","features":[48]},{"name":"CR_SAME_RESOURCES","features":[48]},{"name":"CR_SUCCESS","features":[48]},{"name":"CR_WRONG_TYPE","features":[48]},{"name":"CS_DES","features":[48]},{"name":"CS_RESOURCE","features":[48]},{"name":"DD_FLAGS","features":[48]},{"name":"DELFLG_IN_USE","features":[48]},{"name":"DELFLG_IN_USE1","features":[48]},{"name":"DEVPRIVATE_DES","features":[48]},{"name":"DEVPRIVATE_RANGE","features":[48]},{"name":"DEVPRIVATE_RESOURCE","features":[48]},{"name":"DIBCI_NODISPLAYCLASS","features":[48]},{"name":"DIBCI_NOINSTALLCLASS","features":[48]},{"name":"DICD_GENERATE_ID","features":[48]},{"name":"DICD_INHERIT_CLASSDRVS","features":[48]},{"name":"DICLASSPROP_INSTALLER","features":[48]},{"name":"DICLASSPROP_INTERFACE","features":[48]},{"name":"DICS_DISABLE","features":[48]},{"name":"DICS_ENABLE","features":[48]},{"name":"DICS_FLAG_CONFIGGENERAL","features":[48]},{"name":"DICS_FLAG_CONFIGSPECIFIC","features":[48]},{"name":"DICS_FLAG_GLOBAL","features":[48]},{"name":"DICS_PROPCHANGE","features":[48]},{"name":"DICS_START","features":[48]},{"name":"DICS_STOP","features":[48]},{"name":"DICUSTOMDEVPROP_MERGE_MULTISZ","features":[48]},{"name":"DIF_ADDPROPERTYPAGE_ADVANCED","features":[48]},{"name":"DIF_ADDPROPERTYPAGE_BASIC","features":[48]},{"name":"DIF_ADDREMOTEPROPERTYPAGE_ADVANCED","features":[48]},{"name":"DIF_ALLOW_INSTALL","features":[48]},{"name":"DIF_ASSIGNRESOURCES","features":[48]},{"name":"DIF_CALCDISKSPACE","features":[48]},{"name":"DIF_DESTROYPRIVATEDATA","features":[48]},{"name":"DIF_DESTROYWIZARDDATA","features":[48]},{"name":"DIF_DETECT","features":[48]},{"name":"DIF_DETECTCANCEL","features":[48]},{"name":"DIF_DETECTVERIFY","features":[48]},{"name":"DIF_ENABLECLASS","features":[48]},{"name":"DIF_FINISHINSTALL_ACTION","features":[48]},{"name":"DIF_FIRSTTIMESETUP","features":[48]},{"name":"DIF_FOUNDDEVICE","features":[48]},{"name":"DIF_INSTALLCLASSDRIVERS","features":[48]},{"name":"DIF_INSTALLDEVICE","features":[48]},{"name":"DIF_INSTALLDEVICEFILES","features":[48]},{"name":"DIF_INSTALLINTERFACES","features":[48]},{"name":"DIF_INSTALLWIZARD","features":[48]},{"name":"DIF_MOVEDEVICE","features":[48]},{"name":"DIF_NEWDEVICEWIZARD_FINISHINSTALL","features":[48]},{"name":"DIF_NEWDEVICEWIZARD_POSTANALYZE","features":[48]},{"name":"DIF_NEWDEVICEWIZARD_PREANALYZE","features":[48]},{"name":"DIF_NEWDEVICEWIZARD_PRESELECT","features":[48]},{"name":"DIF_NEWDEVICEWIZARD_SELECT","features":[48]},{"name":"DIF_POWERMESSAGEWAKE","features":[48]},{"name":"DIF_PROPERTIES","features":[48]},{"name":"DIF_PROPERTYCHANGE","features":[48]},{"name":"DIF_REGISTERDEVICE","features":[48]},{"name":"DIF_REGISTER_COINSTALLERS","features":[48]},{"name":"DIF_REMOVE","features":[48]},{"name":"DIF_RESERVED1","features":[48]},{"name":"DIF_RESERVED2","features":[48]},{"name":"DIF_SELECTBESTCOMPATDRV","features":[48]},{"name":"DIF_SELECTCLASSDRIVERS","features":[48]},{"name":"DIF_SELECTDEVICE","features":[48]},{"name":"DIF_TROUBLESHOOTER","features":[48]},{"name":"DIF_UNREMOVE","features":[48]},{"name":"DIF_UNUSED1","features":[48]},{"name":"DIF_UPDATEDRIVER_UI","features":[48]},{"name":"DIF_VALIDATECLASSDRIVERS","features":[48]},{"name":"DIF_VALIDATEDRIVER","features":[48]},{"name":"DIGCDP_FLAG_ADVANCED","features":[48]},{"name":"DIGCDP_FLAG_BASIC","features":[48]},{"name":"DIGCDP_FLAG_REMOTE_ADVANCED","features":[48]},{"name":"DIGCDP_FLAG_REMOTE_BASIC","features":[48]},{"name":"DIGCF_ALLCLASSES","features":[48]},{"name":"DIGCF_DEFAULT","features":[48]},{"name":"DIGCF_DEVICEINTERFACE","features":[48]},{"name":"DIGCF_INTERFACEDEVICE","features":[48]},{"name":"DIGCF_PRESENT","features":[48]},{"name":"DIGCF_PROFILE","features":[48]},{"name":"DIIDFLAG_BITS","features":[48]},{"name":"DIIDFLAG_INSTALLCOPYINFDRIVERS","features":[48]},{"name":"DIIDFLAG_INSTALLNULLDRIVER","features":[48]},{"name":"DIIDFLAG_NOFINISHINSTALLUI","features":[48]},{"name":"DIIDFLAG_SHOWSEARCHUI","features":[48]},{"name":"DIINSTALLDEVICE_FLAGS","features":[48]},{"name":"DIINSTALLDRIVER_FLAGS","features":[48]},{"name":"DIIRFLAG_BITS","features":[48]},{"name":"DIIRFLAG_FORCE_INF","features":[48]},{"name":"DIIRFLAG_HOTPATCH","features":[48]},{"name":"DIIRFLAG_HW_USING_THE_INF","features":[48]},{"name":"DIIRFLAG_INF_ALREADY_COPIED","features":[48]},{"name":"DIIRFLAG_INSTALL_AS_SET","features":[48]},{"name":"DIIRFLAG_NOBACKUP","features":[48]},{"name":"DIIRFLAG_PRE_CONFIGURE_INF","features":[48]},{"name":"DIIRFLAG_SYSTEM_BITS","features":[48]},{"name":"DIOCR_INSTALLER","features":[48]},{"name":"DIOCR_INTERFACE","features":[48]},{"name":"DIODI_NO_ADD","features":[48]},{"name":"DIOD_CANCEL_REMOVE","features":[48]},{"name":"DIOD_INHERIT_CLASSDRVS","features":[48]},{"name":"DIREG_BOTH","features":[48]},{"name":"DIREG_DEV","features":[48]},{"name":"DIREG_DRV","features":[48]},{"name":"DIRID_ABSOLUTE","features":[48]},{"name":"DIRID_ABSOLUTE_16BIT","features":[48]},{"name":"DIRID_APPS","features":[48]},{"name":"DIRID_BOOT","features":[48]},{"name":"DIRID_COLOR","features":[48]},{"name":"DIRID_COMMON_APPDATA","features":[48]},{"name":"DIRID_COMMON_DESKTOPDIRECTORY","features":[48]},{"name":"DIRID_COMMON_DOCUMENTS","features":[48]},{"name":"DIRID_COMMON_FAVORITES","features":[48]},{"name":"DIRID_COMMON_PROGRAMS","features":[48]},{"name":"DIRID_COMMON_STARTMENU","features":[48]},{"name":"DIRID_COMMON_STARTUP","features":[48]},{"name":"DIRID_COMMON_TEMPLATES","features":[48]},{"name":"DIRID_DEFAULT","features":[48]},{"name":"DIRID_DRIVERS","features":[48]},{"name":"DIRID_DRIVER_STORE","features":[48]},{"name":"DIRID_FONTS","features":[48]},{"name":"DIRID_HELP","features":[48]},{"name":"DIRID_INF","features":[48]},{"name":"DIRID_IOSUBSYS","features":[48]},{"name":"DIRID_LOADER","features":[48]},{"name":"DIRID_NULL","features":[48]},{"name":"DIRID_PRINTPROCESSOR","features":[48]},{"name":"DIRID_PROGRAM_FILES","features":[48]},{"name":"DIRID_PROGRAM_FILES_COMMON","features":[48]},{"name":"DIRID_PROGRAM_FILES_COMMONX86","features":[48]},{"name":"DIRID_PROGRAM_FILES_X86","features":[48]},{"name":"DIRID_SHARED","features":[48]},{"name":"DIRID_SPOOL","features":[48]},{"name":"DIRID_SPOOLDRIVERS","features":[48]},{"name":"DIRID_SRCPATH","features":[48]},{"name":"DIRID_SYSTEM","features":[48]},{"name":"DIRID_SYSTEM16","features":[48]},{"name":"DIRID_SYSTEM_X86","features":[48]},{"name":"DIRID_USER","features":[48]},{"name":"DIRID_USERPROFILE","features":[48]},{"name":"DIRID_VIEWERS","features":[48]},{"name":"DIRID_WINDOWS","features":[48]},{"name":"DIROLLBACKDRIVER_FLAGS","features":[48]},{"name":"DIUNINSTALLDRIVER_FLAGS","features":[48]},{"name":"DIURFLAG_NO_REMOVE_INF","features":[48]},{"name":"DIURFLAG_RESERVED","features":[48]},{"name":"DIURFLAG_VALID","features":[48]},{"name":"DI_AUTOASSIGNRES","features":[48]},{"name":"DI_CLASSINSTALLPARAMS","features":[48]},{"name":"DI_COMPAT_FROM_CLASS","features":[48]},{"name":"DI_DIDCLASS","features":[48]},{"name":"DI_DIDCOMPAT","features":[48]},{"name":"DI_DISABLED","features":[48]},{"name":"DI_DONOTCALLCONFIGMG","features":[48]},{"name":"DI_DRIVERPAGE_ADDED","features":[48]},{"name":"DI_ENUMSINGLEINF","features":[48]},{"name":"DI_FLAGSEX_ALLOWEXCLUDEDDRVS","features":[48]},{"name":"DI_FLAGSEX_ALTPLATFORM_DRVSEARCH","features":[48]},{"name":"DI_FLAGSEX_ALWAYSWRITEIDS","features":[48]},{"name":"DI_FLAGSEX_APPENDDRIVERLIST","features":[48]},{"name":"DI_FLAGSEX_BACKUPONREPLACE","features":[48]},{"name":"DI_FLAGSEX_CI_FAILED","features":[48]},{"name":"DI_FLAGSEX_DEVICECHANGE","features":[48]},{"name":"DI_FLAGSEX_DIDCOMPATINFO","features":[48]},{"name":"DI_FLAGSEX_DIDINFOLIST","features":[48]},{"name":"DI_FLAGSEX_DRIVERLIST_FROM_URL","features":[48]},{"name":"DI_FLAGSEX_EXCLUDE_OLD_INET_DRIVERS","features":[48]},{"name":"DI_FLAGSEX_FILTERCLASSES","features":[48]},{"name":"DI_FLAGSEX_FILTERSIMILARDRIVERS","features":[48]},{"name":"DI_FLAGSEX_FINISHINSTALL_ACTION","features":[48]},{"name":"DI_FLAGSEX_INET_DRIVER","features":[48]},{"name":"DI_FLAGSEX_INSTALLEDDRIVER","features":[48]},{"name":"DI_FLAGSEX_IN_SYSTEM_SETUP","features":[48]},{"name":"DI_FLAGSEX_NOUIONQUERYREMOVE","features":[48]},{"name":"DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE","features":[48]},{"name":"DI_FLAGSEX_NO_DRVREG_MODIFY","features":[48]},{"name":"DI_FLAGSEX_POWERPAGE_ADDED","features":[48]},{"name":"DI_FLAGSEX_PREINSTALLBACKUP","features":[48]},{"name":"DI_FLAGSEX_PROPCHANGE_PENDING","features":[48]},{"name":"DI_FLAGSEX_RECURSIVESEARCH","features":[48]},{"name":"DI_FLAGSEX_RESERVED1","features":[48]},{"name":"DI_FLAGSEX_RESERVED2","features":[48]},{"name":"DI_FLAGSEX_RESERVED3","features":[48]},{"name":"DI_FLAGSEX_RESERVED4","features":[48]},{"name":"DI_FLAGSEX_RESTART_DEVICE_ONLY","features":[48]},{"name":"DI_FLAGSEX_SEARCH_PUBLISHED_INFS","features":[48]},{"name":"DI_FLAGSEX_SETFAILEDINSTALL","features":[48]},{"name":"DI_FLAGSEX_USECLASSFORCOMPAT","features":[48]},{"name":"DI_FORCECOPY","features":[48]},{"name":"DI_FUNCTION","features":[48]},{"name":"DI_GENERALPAGE_ADDED","features":[48]},{"name":"DI_INF_IS_SORTED","features":[48]},{"name":"DI_INSTALLDISABLED","features":[48]},{"name":"DI_MULTMFGS","features":[48]},{"name":"DI_NEEDREBOOT","features":[48]},{"name":"DI_NEEDRESTART","features":[48]},{"name":"DI_NOBROWSE","features":[48]},{"name":"DI_NODI_DEFAULTACTION","features":[48]},{"name":"DI_NOFILECOPY","features":[48]},{"name":"DI_NOSELECTICONS","features":[48]},{"name":"DI_NOVCP","features":[48]},{"name":"DI_NOWRITE_IDS","features":[48]},{"name":"DI_OVERRIDE_INFFLAGS","features":[48]},{"name":"DI_PROPERTIES_CHANGE","features":[48]},{"name":"DI_PROPS_NOCHANGEUSAGE","features":[48]},{"name":"DI_QUIETINSTALL","features":[48]},{"name":"DI_REMOVEDEVICE_CONFIGSPECIFIC","features":[48]},{"name":"DI_REMOVEDEVICE_GLOBAL","features":[48]},{"name":"DI_RESOURCEPAGE_ADDED","features":[48]},{"name":"DI_SHOWALL","features":[48]},{"name":"DI_SHOWCLASS","features":[48]},{"name":"DI_SHOWCOMPAT","features":[48]},{"name":"DI_SHOWOEM","features":[48]},{"name":"DI_UNREMOVEDEVICE_CONFIGSPECIFIC","features":[48]},{"name":"DI_USECI_SELECTSTRINGS","features":[48]},{"name":"DMA_DES","features":[48]},{"name":"DMA_RANGE","features":[48]},{"name":"DMA_RESOURCE","features":[48]},{"name":"DMI_BKCOLOR","features":[48]},{"name":"DMI_MASK","features":[48]},{"name":"DMI_USERECT","features":[48]},{"name":"DNF_ALWAYSEXCLUDEFROMLIST","features":[48]},{"name":"DNF_AUTHENTICODE_SIGNED","features":[48]},{"name":"DNF_BAD_DRIVER","features":[48]},{"name":"DNF_BASIC_DRIVER","features":[48]},{"name":"DNF_CLASS_DRIVER","features":[48]},{"name":"DNF_COMPATIBLE_DRIVER","features":[48]},{"name":"DNF_DUPDESC","features":[48]},{"name":"DNF_DUPDRIVERVER","features":[48]},{"name":"DNF_DUPPROVIDER","features":[48]},{"name":"DNF_EXCLUDEFROMLIST","features":[48]},{"name":"DNF_INBOX_DRIVER","features":[48]},{"name":"DNF_INET_DRIVER","features":[48]},{"name":"DNF_INF_IS_SIGNED","features":[48]},{"name":"DNF_INSTALLEDDRIVER","features":[48]},{"name":"DNF_LEGACYINF","features":[48]},{"name":"DNF_NODRIVER","features":[48]},{"name":"DNF_OEM_F6_INF","features":[48]},{"name":"DNF_OLDDRIVER","features":[48]},{"name":"DNF_OLD_INET_DRIVER","features":[48]},{"name":"DNF_REQUESTADDITIONALSOFTWARE","features":[48]},{"name":"DNF_UNUSED1","features":[48]},{"name":"DNF_UNUSED2","features":[48]},{"name":"DNF_UNUSED_22","features":[48]},{"name":"DNF_UNUSED_23","features":[48]},{"name":"DNF_UNUSED_24","features":[48]},{"name":"DNF_UNUSED_25","features":[48]},{"name":"DNF_UNUSED_26","features":[48]},{"name":"DNF_UNUSED_27","features":[48]},{"name":"DNF_UNUSED_28","features":[48]},{"name":"DNF_UNUSED_29","features":[48]},{"name":"DNF_UNUSED_30","features":[48]},{"name":"DNF_UNUSED_31","features":[48]},{"name":"DN_APM_DRIVER","features":[48]},{"name":"DN_APM_ENUMERATOR","features":[48]},{"name":"DN_ARM_WAKEUP","features":[48]},{"name":"DN_BAD_PARTIAL","features":[48]},{"name":"DN_BOOT_LOG_PROB","features":[48]},{"name":"DN_CHANGEABLE_FLAGS","features":[48]},{"name":"DN_CHILD_WITH_INVALID_ID","features":[48]},{"name":"DN_DEVICE_DISCONNECTED","features":[48]},{"name":"DN_DISABLEABLE","features":[48]},{"name":"DN_DRIVER_BLOCKED","features":[48]},{"name":"DN_DRIVER_LOADED","features":[48]},{"name":"DN_ENUM_LOADED","features":[48]},{"name":"DN_FILTERED","features":[48]},{"name":"DN_HARDWARE_ENUM","features":[48]},{"name":"DN_HAS_MARK","features":[48]},{"name":"DN_HAS_PROBLEM","features":[48]},{"name":"DN_LEGACY_DRIVER","features":[48]},{"name":"DN_LIAR","features":[48]},{"name":"DN_MANUAL","features":[48]},{"name":"DN_MF_CHILD","features":[48]},{"name":"DN_MF_PARENT","features":[48]},{"name":"DN_MOVED","features":[48]},{"name":"DN_NEEDS_LOCKING","features":[48]},{"name":"DN_NEED_RESTART","features":[48]},{"name":"DN_NEED_TO_ENUM","features":[48]},{"name":"DN_NOT_FIRST_TIME","features":[48]},{"name":"DN_NOT_FIRST_TIMEE","features":[48]},{"name":"DN_NO_SHOW_IN_DM","features":[48]},{"name":"DN_NT_DRIVER","features":[48]},{"name":"DN_NT_ENUMERATOR","features":[48]},{"name":"DN_PRIVATE_PROBLEM","features":[48]},{"name":"DN_QUERY_REMOVE_ACTIVE","features":[48]},{"name":"DN_QUERY_REMOVE_PENDING","features":[48]},{"name":"DN_REBAL_CANDIDATE","features":[48]},{"name":"DN_REMOVABLE","features":[48]},{"name":"DN_ROOT_ENUMERATED","features":[48]},{"name":"DN_SILENT_INSTALL","features":[48]},{"name":"DN_STARTED","features":[48]},{"name":"DN_STOP_FREE_RES","features":[48]},{"name":"DN_WILL_BE_REMOVED","features":[48]},{"name":"DPROMPT_BUFFERTOOSMALL","features":[48]},{"name":"DPROMPT_CANCEL","features":[48]},{"name":"DPROMPT_OUTOFMEMORY","features":[48]},{"name":"DPROMPT_SKIPFILE","features":[48]},{"name":"DPROMPT_SUCCESS","features":[48]},{"name":"DRIVER_COMPATID_RANK","features":[48]},{"name":"DRIVER_HARDWAREID_MASK","features":[48]},{"name":"DRIVER_HARDWAREID_RANK","features":[48]},{"name":"DRIVER_UNTRUSTED_COMPATID_RANK","features":[48]},{"name":"DRIVER_UNTRUSTED_HARDWAREID_RANK","features":[48]},{"name":"DRIVER_UNTRUSTED_RANK","features":[48]},{"name":"DRIVER_W9X_SUSPECT_COMPATID_RANK","features":[48]},{"name":"DRIVER_W9X_SUSPECT_HARDWAREID_RANK","features":[48]},{"name":"DRIVER_W9X_SUSPECT_RANK","features":[48]},{"name":"DWORD_MAX","features":[48]},{"name":"DYNAWIZ_FLAG_ANALYZE_HANDLECONFLICT","features":[48]},{"name":"DYNAWIZ_FLAG_INSTALLDET_NEXT","features":[48]},{"name":"DYNAWIZ_FLAG_INSTALLDET_PREV","features":[48]},{"name":"DYNAWIZ_FLAG_PAGESADDED","features":[48]},{"name":"DiInstallDevice","features":[48,1]},{"name":"DiInstallDriverA","features":[48,1]},{"name":"DiInstallDriverW","features":[48,1]},{"name":"DiRollbackDriver","features":[48,1]},{"name":"DiShowUpdateDevice","features":[48,1]},{"name":"DiShowUpdateDriver","features":[48,1]},{"name":"DiUninstallDevice","features":[48,1]},{"name":"DiUninstallDriverA","features":[48,1]},{"name":"DiUninstallDriverW","features":[48,1]},{"name":"ENABLECLASS_FAILURE","features":[48]},{"name":"ENABLECLASS_QUERY","features":[48]},{"name":"ENABLECLASS_SUCCESS","features":[48]},{"name":"FILEOP_ABORT","features":[48]},{"name":"FILEOP_BACKUP","features":[48]},{"name":"FILEOP_COPY","features":[48]},{"name":"FILEOP_DELETE","features":[48]},{"name":"FILEOP_DOIT","features":[48]},{"name":"FILEOP_NEWPATH","features":[48]},{"name":"FILEOP_RENAME","features":[48]},{"name":"FILEOP_RETRY","features":[48]},{"name":"FILEOP_SKIP","features":[48]},{"name":"FILEPATHS_A","features":[48]},{"name":"FILEPATHS_A","features":[48]},{"name":"FILEPATHS_SIGNERINFO_A","features":[48]},{"name":"FILEPATHS_SIGNERINFO_A","features":[48]},{"name":"FILEPATHS_SIGNERINFO_W","features":[48]},{"name":"FILEPATHS_SIGNERINFO_W","features":[48]},{"name":"FILEPATHS_W","features":[48]},{"name":"FILEPATHS_W","features":[48]},{"name":"FILE_COMPRESSION_MSZIP","features":[48]},{"name":"FILE_COMPRESSION_NONE","features":[48]},{"name":"FILE_COMPRESSION_NTCAB","features":[48]},{"name":"FILE_COMPRESSION_WINLZA","features":[48]},{"name":"FILE_IN_CABINET_INFO_A","features":[48]},{"name":"FILE_IN_CABINET_INFO_A","features":[48]},{"name":"FILE_IN_CABINET_INFO_W","features":[48]},{"name":"FILE_IN_CABINET_INFO_W","features":[48]},{"name":"FILTERED_LOG_CONF","features":[48]},{"name":"FLG_ADDPROPERTY_AND","features":[48]},{"name":"FLG_ADDPROPERTY_APPEND","features":[48]},{"name":"FLG_ADDPROPERTY_NOCLOBBER","features":[48]},{"name":"FLG_ADDPROPERTY_OR","features":[48]},{"name":"FLG_ADDPROPERTY_OVERWRITEONLY","features":[48]},{"name":"FLG_ADDREG_32BITKEY","features":[48]},{"name":"FLG_ADDREG_64BITKEY","features":[48]},{"name":"FLG_ADDREG_APPEND","features":[48]},{"name":"FLG_ADDREG_BINVALUETYPE","features":[48]},{"name":"FLG_ADDREG_DELREG_BIT","features":[48]},{"name":"FLG_ADDREG_DELVAL","features":[48]},{"name":"FLG_ADDREG_KEYONLY","features":[48]},{"name":"FLG_ADDREG_KEYONLY_COMMON","features":[48]},{"name":"FLG_ADDREG_NOCLOBBER","features":[48]},{"name":"FLG_ADDREG_OVERWRITEONLY","features":[48]},{"name":"FLG_ADDREG_TYPE_EXPAND_SZ","features":[48]},{"name":"FLG_ADDREG_TYPE_MULTI_SZ","features":[48]},{"name":"FLG_ADDREG_TYPE_SZ","features":[48]},{"name":"FLG_BITREG_32BITKEY","features":[48]},{"name":"FLG_BITREG_64BITKEY","features":[48]},{"name":"FLG_BITREG_CLEARBITS","features":[48]},{"name":"FLG_BITREG_SETBITS","features":[48]},{"name":"FLG_DELPROPERTY_MULTI_SZ_DELSTRING","features":[48]},{"name":"FLG_DELREG_32BITKEY","features":[48]},{"name":"FLG_DELREG_64BITKEY","features":[48]},{"name":"FLG_DELREG_KEYONLY_COMMON","features":[48]},{"name":"FLG_DELREG_OPERATION_MASK","features":[48]},{"name":"FLG_DELREG_TYPE_EXPAND_SZ","features":[48]},{"name":"FLG_DELREG_TYPE_MULTI_SZ","features":[48]},{"name":"FLG_DELREG_TYPE_SZ","features":[48]},{"name":"FLG_DELREG_VALUE","features":[48]},{"name":"FLG_INI2REG_32BITKEY","features":[48]},{"name":"FLG_INI2REG_64BITKEY","features":[48]},{"name":"FLG_PROFITEM_CSIDL","features":[48]},{"name":"FLG_PROFITEM_CURRENTUSER","features":[48]},{"name":"FLG_PROFITEM_DELETE","features":[48]},{"name":"FLG_PROFITEM_GROUP","features":[48]},{"name":"FLG_REGSVR_DLLINSTALL","features":[48]},{"name":"FLG_REGSVR_DLLREGISTER","features":[48]},{"name":"FORCED_LOG_CONF","features":[48]},{"name":"GUID_ACPI_CMOS_INTERFACE_STANDARD","features":[48]},{"name":"GUID_ACPI_INTERFACE_STANDARD","features":[48]},{"name":"GUID_ACPI_INTERFACE_STANDARD2","features":[48]},{"name":"GUID_ACPI_PORT_RANGES_INTERFACE_STANDARD","features":[48]},{"name":"GUID_ACPI_REGS_INTERFACE_STANDARD","features":[48]},{"name":"GUID_AGP_TARGET_BUS_INTERFACE_STANDARD","features":[48]},{"name":"GUID_ARBITER_INTERFACE_STANDARD","features":[48]},{"name":"GUID_BUS_INTERFACE_STANDARD","features":[48]},{"name":"GUID_BUS_RESOURCE_UPDATE_INTERFACE","features":[48]},{"name":"GUID_BUS_TYPE_1394","features":[48]},{"name":"GUID_BUS_TYPE_ACPI","features":[48]},{"name":"GUID_BUS_TYPE_AVC","features":[48]},{"name":"GUID_BUS_TYPE_DOT4PRT","features":[48]},{"name":"GUID_BUS_TYPE_EISA","features":[48]},{"name":"GUID_BUS_TYPE_HID","features":[48]},{"name":"GUID_BUS_TYPE_INTERNAL","features":[48]},{"name":"GUID_BUS_TYPE_IRDA","features":[48]},{"name":"GUID_BUS_TYPE_ISAPNP","features":[48]},{"name":"GUID_BUS_TYPE_LPTENUM","features":[48]},{"name":"GUID_BUS_TYPE_MCA","features":[48]},{"name":"GUID_BUS_TYPE_PCI","features":[48]},{"name":"GUID_BUS_TYPE_PCMCIA","features":[48]},{"name":"GUID_BUS_TYPE_SCM","features":[48]},{"name":"GUID_BUS_TYPE_SD","features":[48]},{"name":"GUID_BUS_TYPE_SERENUM","features":[48]},{"name":"GUID_BUS_TYPE_SW_DEVICE","features":[48]},{"name":"GUID_BUS_TYPE_USB","features":[48]},{"name":"GUID_BUS_TYPE_USBPRINT","features":[48]},{"name":"GUID_D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[48]},{"name":"GUID_D3COLD_SUPPORT_INTERFACE","features":[48]},{"name":"GUID_DEVCLASS_1394","features":[48]},{"name":"GUID_DEVCLASS_1394DEBUG","features":[48]},{"name":"GUID_DEVCLASS_61883","features":[48]},{"name":"GUID_DEVCLASS_ADAPTER","features":[48]},{"name":"GUID_DEVCLASS_APMSUPPORT","features":[48]},{"name":"GUID_DEVCLASS_AVC","features":[48]},{"name":"GUID_DEVCLASS_BATTERY","features":[48]},{"name":"GUID_DEVCLASS_BIOMETRIC","features":[48]},{"name":"GUID_DEVCLASS_BLUETOOTH","features":[48]},{"name":"GUID_DEVCLASS_CAMERA","features":[48]},{"name":"GUID_DEVCLASS_CDROM","features":[48]},{"name":"GUID_DEVCLASS_COMPUTEACCELERATOR","features":[48]},{"name":"GUID_DEVCLASS_COMPUTER","features":[48]},{"name":"GUID_DEVCLASS_DECODER","features":[48]},{"name":"GUID_DEVCLASS_DISKDRIVE","features":[48]},{"name":"GUID_DEVCLASS_DISPLAY","features":[48]},{"name":"GUID_DEVCLASS_DOT4","features":[48]},{"name":"GUID_DEVCLASS_DOT4PRINT","features":[48]},{"name":"GUID_DEVCLASS_EHSTORAGESILO","features":[48]},{"name":"GUID_DEVCLASS_ENUM1394","features":[48]},{"name":"GUID_DEVCLASS_EXTENSION","features":[48]},{"name":"GUID_DEVCLASS_FDC","features":[48]},{"name":"GUID_DEVCLASS_FIRMWARE","features":[48]},{"name":"GUID_DEVCLASS_FLOPPYDISK","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_ACTIVITYMONITOR","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_ANTIVIRUS","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_BOTTOM","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_CFSMETADATASERVER","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_COMPRESSION","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_CONTENTSCREENER","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_CONTINUOUSBACKUP","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_COPYPROTECTION","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_ENCRYPTION","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_HSM","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_INFRASTRUCTURE","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_OPENFILEBACKUP","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAMANAGEMENT","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_QUOTAMANAGEMENT","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_REPLICATION","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_SECURITYENHANCER","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEM","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEMRECOVERY","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_TOP","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_UNDELETE","features":[48]},{"name":"GUID_DEVCLASS_FSFILTER_VIRTUALIZATION","features":[48]},{"name":"GUID_DEVCLASS_GENERIC","features":[48]},{"name":"GUID_DEVCLASS_GPS","features":[48]},{"name":"GUID_DEVCLASS_HDC","features":[48]},{"name":"GUID_DEVCLASS_HIDCLASS","features":[48]},{"name":"GUID_DEVCLASS_HOLOGRAPHIC","features":[48]},{"name":"GUID_DEVCLASS_IMAGE","features":[48]},{"name":"GUID_DEVCLASS_INFINIBAND","features":[48]},{"name":"GUID_DEVCLASS_INFRARED","features":[48]},{"name":"GUID_DEVCLASS_KEYBOARD","features":[48]},{"name":"GUID_DEVCLASS_LEGACYDRIVER","features":[48]},{"name":"GUID_DEVCLASS_MEDIA","features":[48]},{"name":"GUID_DEVCLASS_MEDIUM_CHANGER","features":[48]},{"name":"GUID_DEVCLASS_MEMORY","features":[48]},{"name":"GUID_DEVCLASS_MODEM","features":[48]},{"name":"GUID_DEVCLASS_MONITOR","features":[48]},{"name":"GUID_DEVCLASS_MOUSE","features":[48]},{"name":"GUID_DEVCLASS_MTD","features":[48]},{"name":"GUID_DEVCLASS_MULTIFUNCTION","features":[48]},{"name":"GUID_DEVCLASS_MULTIPORTSERIAL","features":[48]},{"name":"GUID_DEVCLASS_NET","features":[48]},{"name":"GUID_DEVCLASS_NETCLIENT","features":[48]},{"name":"GUID_DEVCLASS_NETDRIVER","features":[48]},{"name":"GUID_DEVCLASS_NETSERVICE","features":[48]},{"name":"GUID_DEVCLASS_NETTRANS","features":[48]},{"name":"GUID_DEVCLASS_NETUIO","features":[48]},{"name":"GUID_DEVCLASS_NODRIVER","features":[48]},{"name":"GUID_DEVCLASS_PCMCIA","features":[48]},{"name":"GUID_DEVCLASS_PNPPRINTERS","features":[48]},{"name":"GUID_DEVCLASS_PORTS","features":[48]},{"name":"GUID_DEVCLASS_PRIMITIVE","features":[48]},{"name":"GUID_DEVCLASS_PRINTER","features":[48]},{"name":"GUID_DEVCLASS_PRINTERUPGRADE","features":[48]},{"name":"GUID_DEVCLASS_PRINTQUEUE","features":[48]},{"name":"GUID_DEVCLASS_PROCESSOR","features":[48]},{"name":"GUID_DEVCLASS_SBP2","features":[48]},{"name":"GUID_DEVCLASS_SCMDISK","features":[48]},{"name":"GUID_DEVCLASS_SCMVOLUME","features":[48]},{"name":"GUID_DEVCLASS_SCSIADAPTER","features":[48]},{"name":"GUID_DEVCLASS_SECURITYACCELERATOR","features":[48]},{"name":"GUID_DEVCLASS_SENSOR","features":[48]},{"name":"GUID_DEVCLASS_SIDESHOW","features":[48]},{"name":"GUID_DEVCLASS_SMARTCARDREADER","features":[48]},{"name":"GUID_DEVCLASS_SMRDISK","features":[48]},{"name":"GUID_DEVCLASS_SMRVOLUME","features":[48]},{"name":"GUID_DEVCLASS_SOFTWARECOMPONENT","features":[48]},{"name":"GUID_DEVCLASS_SOUND","features":[48]},{"name":"GUID_DEVCLASS_SYSTEM","features":[48]},{"name":"GUID_DEVCLASS_TAPEDRIVE","features":[48]},{"name":"GUID_DEVCLASS_UCM","features":[48]},{"name":"GUID_DEVCLASS_UNKNOWN","features":[48]},{"name":"GUID_DEVCLASS_USB","features":[48]},{"name":"GUID_DEVCLASS_VOLUME","features":[48]},{"name":"GUID_DEVCLASS_VOLUMESNAPSHOT","features":[48]},{"name":"GUID_DEVCLASS_WCEUSBS","features":[48]},{"name":"GUID_DEVCLASS_WPD","features":[48]},{"name":"GUID_DEVICE_INTERFACE_ARRIVAL","features":[48]},{"name":"GUID_DEVICE_INTERFACE_REMOVAL","features":[48]},{"name":"GUID_DEVICE_RESET_INTERFACE_STANDARD","features":[48]},{"name":"GUID_DMA_CACHE_COHERENCY_INTERFACE","features":[48]},{"name":"GUID_HWPROFILE_CHANGE_CANCELLED","features":[48]},{"name":"GUID_HWPROFILE_CHANGE_COMPLETE","features":[48]},{"name":"GUID_HWPROFILE_QUERY_CHANGE","features":[48]},{"name":"GUID_INT_ROUTE_INTERFACE_STANDARD","features":[48]},{"name":"GUID_IOMMU_BUS_INTERFACE","features":[48]},{"name":"GUID_KERNEL_SOFT_RESTART_CANCEL","features":[48]},{"name":"GUID_KERNEL_SOFT_RESTART_FINALIZE","features":[48]},{"name":"GUID_KERNEL_SOFT_RESTART_PREPARE","features":[48]},{"name":"GUID_LEGACY_DEVICE_DETECTION_STANDARD","features":[48]},{"name":"GUID_MF_ENUMERATION_INTERFACE","features":[48]},{"name":"GUID_MSIX_TABLE_CONFIG_INTERFACE","features":[48]},{"name":"GUID_NPEM_CONTROL_INTERFACE","features":[48]},{"name":"GUID_PARTITION_UNIT_INTERFACE_STANDARD","features":[48]},{"name":"GUID_PCC_INTERFACE_INTERNAL","features":[48]},{"name":"GUID_PCC_INTERFACE_STANDARD","features":[48]},{"name":"GUID_PCI_ATS_INTERFACE","features":[48]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD","features":[48]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD2","features":[48]},{"name":"GUID_PCI_DEVICE_PRESENT_INTERFACE","features":[48]},{"name":"GUID_PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[48]},{"name":"GUID_PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[48]},{"name":"GUID_PCI_FPGA_CONTROL_INTERFACE","features":[48]},{"name":"GUID_PCI_PTM_CONTROL_INTERFACE","features":[48]},{"name":"GUID_PCI_SECURITY_INTERFACE","features":[48]},{"name":"GUID_PCI_VIRTUALIZATION_INTERFACE","features":[48]},{"name":"GUID_PCMCIA_BUS_INTERFACE_STANDARD","features":[48]},{"name":"GUID_PNP_CUSTOM_NOTIFICATION","features":[48]},{"name":"GUID_PNP_EXTENDED_ADDRESS_INTERFACE","features":[48]},{"name":"GUID_PNP_LOCATION_INTERFACE","features":[48]},{"name":"GUID_PNP_POWER_NOTIFICATION","features":[48]},{"name":"GUID_PNP_POWER_SETTING_CHANGE","features":[48]},{"name":"GUID_POWER_DEVICE_ENABLE","features":[48]},{"name":"GUID_POWER_DEVICE_TIMEOUTS","features":[48]},{"name":"GUID_POWER_DEVICE_WAKE_ENABLE","features":[48]},{"name":"GUID_PROCESSOR_PCC_INTERFACE_STANDARD","features":[48]},{"name":"GUID_QUERY_CRASHDUMP_FUNCTIONS","features":[48]},{"name":"GUID_RECOVERY_NVMED_PREPARE_SHUTDOWN","features":[48]},{"name":"GUID_RECOVERY_PCI_PREPARE_SHUTDOWN","features":[48]},{"name":"GUID_REENUMERATE_SELF_INTERFACE_STANDARD","features":[48]},{"name":"GUID_SCM_BUS_INTERFACE","features":[48]},{"name":"GUID_SCM_BUS_LD_INTERFACE","features":[48]},{"name":"GUID_SCM_BUS_NVD_INTERFACE","features":[48]},{"name":"GUID_SCM_PHYSICAL_NVDIMM_INTERFACE","features":[48]},{"name":"GUID_SDEV_IDENTIFIER_INTERFACE","features":[48]},{"name":"GUID_SECURE_DRIVER_INTERFACE","features":[48]},{"name":"GUID_TARGET_DEVICE_QUERY_REMOVE","features":[48]},{"name":"GUID_TARGET_DEVICE_REMOVE_CANCELLED","features":[48]},{"name":"GUID_TARGET_DEVICE_REMOVE_COMPLETE","features":[48]},{"name":"GUID_TARGET_DEVICE_TRANSPORT_RELATIONS_CHANGED","features":[48]},{"name":"GUID_THERMAL_COOLING_INTERFACE","features":[48]},{"name":"GUID_TRANSLATOR_INTERFACE_STANDARD","features":[48]},{"name":"GUID_WUDF_DEVICE_HOST_PROBLEM","features":[48]},{"name":"HCMNOTIFICATION","features":[48]},{"name":"HDEVINFO","features":[48]},{"name":"HWPROFILEINFO_A","features":[48]},{"name":"HWPROFILEINFO_W","features":[48]},{"name":"IDD_DYNAWIZ_ANALYZEDEV_PAGE","features":[48]},{"name":"IDD_DYNAWIZ_ANALYZE_NEXTPAGE","features":[48]},{"name":"IDD_DYNAWIZ_ANALYZE_PREVPAGE","features":[48]},{"name":"IDD_DYNAWIZ_FIRSTPAGE","features":[48]},{"name":"IDD_DYNAWIZ_INSTALLDETECTEDDEVS_PAGE","features":[48]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NEXTPAGE","features":[48]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NODEVS","features":[48]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_PREVPAGE","features":[48]},{"name":"IDD_DYNAWIZ_SELECTCLASS_PAGE","features":[48]},{"name":"IDD_DYNAWIZ_SELECTDEV_PAGE","features":[48]},{"name":"IDD_DYNAWIZ_SELECT_NEXTPAGE","features":[48]},{"name":"IDD_DYNAWIZ_SELECT_PREVPAGE","features":[48]},{"name":"IDF_CHECKFIRST","features":[48]},{"name":"IDF_NOBEEP","features":[48]},{"name":"IDF_NOBROWSE","features":[48]},{"name":"IDF_NOCOMPRESSED","features":[48]},{"name":"IDF_NODETAILS","features":[48]},{"name":"IDF_NOFOREGROUND","features":[48]},{"name":"IDF_NOREMOVABLEMEDIAPROMPT","features":[48]},{"name":"IDF_NOSKIP","features":[48]},{"name":"IDF_OEMDISK","features":[48]},{"name":"IDF_USEDISKNAMEASPROMPT","features":[48]},{"name":"IDF_WARNIFSKIP","features":[48]},{"name":"IDI_CLASSICON_OVERLAYFIRST","features":[48]},{"name":"IDI_CLASSICON_OVERLAYLAST","features":[48]},{"name":"IDI_CONFLICT","features":[48]},{"name":"IDI_DISABLED_OVL","features":[48]},{"name":"IDI_FORCED_OVL","features":[48]},{"name":"IDI_PROBLEM_OVL","features":[48]},{"name":"IDI_RESOURCE","features":[48]},{"name":"IDI_RESOURCEFIRST","features":[48]},{"name":"IDI_RESOURCELAST","features":[48]},{"name":"IDI_RESOURCEOVERLAYFIRST","features":[48]},{"name":"IDI_RESOURCEOVERLAYLAST","features":[48]},{"name":"INFCONTEXT","features":[48]},{"name":"INFCONTEXT","features":[48]},{"name":"INFINFO_DEFAULT_SEARCH","features":[48]},{"name":"INFINFO_INF_NAME_IS_ABSOLUTE","features":[48]},{"name":"INFINFO_INF_PATH_LIST_SEARCH","features":[48]},{"name":"INFINFO_INF_SPEC_IS_HINF","features":[48]},{"name":"INFINFO_REVERSE_DEFAULT_SEARCH","features":[48]},{"name":"INFSTR_BUS_ALL","features":[48]},{"name":"INFSTR_BUS_EISA","features":[48]},{"name":"INFSTR_BUS_ISA","features":[48]},{"name":"INFSTR_BUS_MCA","features":[48]},{"name":"INFSTR_CFGPRI_DESIRED","features":[48]},{"name":"INFSTR_CFGPRI_DISABLED","features":[48]},{"name":"INFSTR_CFGPRI_FORCECONFIG","features":[48]},{"name":"INFSTR_CFGPRI_HARDRECONFIG","features":[48]},{"name":"INFSTR_CFGPRI_HARDWIRED","features":[48]},{"name":"INFSTR_CFGPRI_NORMAL","features":[48]},{"name":"INFSTR_CFGPRI_POWEROFF","features":[48]},{"name":"INFSTR_CFGPRI_REBOOT","features":[48]},{"name":"INFSTR_CFGPRI_RESTART","features":[48]},{"name":"INFSTR_CFGPRI_SUBOPTIMAL","features":[48]},{"name":"INFSTR_CFGTYPE_BASIC","features":[48]},{"name":"INFSTR_CFGTYPE_FORCED","features":[48]},{"name":"INFSTR_CFGTYPE_OVERRIDE","features":[48]},{"name":"INFSTR_CLASS_SAFEEXCL","features":[48]},{"name":"INFSTR_CONTROLFLAGS_SECTION","features":[48]},{"name":"INFSTR_DRIVERSELECT_FUNCTIONS","features":[48]},{"name":"INFSTR_DRIVERSELECT_SECTION","features":[48]},{"name":"INFSTR_DRIVERVERSION_SECTION","features":[48]},{"name":"INFSTR_KEY_ACTION","features":[48]},{"name":"INFSTR_KEY_ALWAYSEXCLUDEFROMSELECT","features":[48]},{"name":"INFSTR_KEY_BUFFER_SIZE","features":[48]},{"name":"INFSTR_KEY_CATALOGFILE","features":[48]},{"name":"INFSTR_KEY_CHANNEL_ACCESS","features":[48]},{"name":"INFSTR_KEY_CHANNEL_ENABLED","features":[48]},{"name":"INFSTR_KEY_CHANNEL_ISOLATION","features":[48]},{"name":"INFSTR_KEY_CHANNEL_VALUE","features":[48]},{"name":"INFSTR_KEY_CLASS","features":[48]},{"name":"INFSTR_KEY_CLASSGUID","features":[48]},{"name":"INFSTR_KEY_CLOCK_TYPE","features":[48]},{"name":"INFSTR_KEY_CONFIGPRIORITY","features":[48]},{"name":"INFSTR_KEY_COPYFILESONLY","features":[48]},{"name":"INFSTR_KEY_DATA_ITEM","features":[48]},{"name":"INFSTR_KEY_DELAYEDAUTOSTART","features":[48]},{"name":"INFSTR_KEY_DEPENDENCIES","features":[48]},{"name":"INFSTR_KEY_DESCRIPTION","features":[48]},{"name":"INFSTR_KEY_DETECTLIST","features":[48]},{"name":"INFSTR_KEY_DETPARAMS","features":[48]},{"name":"INFSTR_KEY_DISABLE_REALTIME_PERSISTENCE","features":[48]},{"name":"INFSTR_KEY_DISPLAYNAME","features":[48]},{"name":"INFSTR_KEY_DMA","features":[48]},{"name":"INFSTR_KEY_DMACONFIG","features":[48]},{"name":"INFSTR_KEY_DRIVERSET","features":[48]},{"name":"INFSTR_KEY_ENABLED","features":[48]},{"name":"INFSTR_KEY_ENABLE_FLAGS","features":[48]},{"name":"INFSTR_KEY_ENABLE_LEVEL","features":[48]},{"name":"INFSTR_KEY_ENABLE_PROPERTY","features":[48]},{"name":"INFSTR_KEY_ERRORCONTROL","features":[48]},{"name":"INFSTR_KEY_EXCLUDEFROMSELECT","features":[48]},{"name":"INFSTR_KEY_EXCLUDERES","features":[48]},{"name":"INFSTR_KEY_EXTENSIONID","features":[48]},{"name":"INFSTR_KEY_FAILURE_ACTION","features":[48]},{"name":"INFSTR_KEY_FILE_MAX","features":[48]},{"name":"INFSTR_KEY_FILE_NAME","features":[48]},{"name":"INFSTR_KEY_FLUSH_TIMER","features":[48]},{"name":"INFSTR_KEY_FROMINET","features":[48]},{"name":"INFSTR_KEY_HARDWARE_CLASS","features":[48]},{"name":"INFSTR_KEY_HARDWARE_CLASSGUID","features":[48]},{"name":"INFSTR_KEY_INTERACTIVEINSTALL","features":[48]},{"name":"INFSTR_KEY_IO","features":[48]},{"name":"INFSTR_KEY_IOCONFIG","features":[48]},{"name":"INFSTR_KEY_IRQ","features":[48]},{"name":"INFSTR_KEY_IRQCONFIG","features":[48]},{"name":"INFSTR_KEY_LOADORDERGROUP","features":[48]},{"name":"INFSTR_KEY_LOGGING_AUTOBACKUP","features":[48]},{"name":"INFSTR_KEY_LOGGING_MAXSIZE","features":[48]},{"name":"INFSTR_KEY_LOGGING_RETENTION","features":[48]},{"name":"INFSTR_KEY_LOG_FILE_MODE","features":[48]},{"name":"INFSTR_KEY_MATCH_ALL_KEYWORD","features":[48]},{"name":"INFSTR_KEY_MATCH_ANY_KEYWORD","features":[48]},{"name":"INFSTR_KEY_MAXIMUM_BUFFERS","features":[48]},{"name":"INFSTR_KEY_MAX_FILE_SIZE","features":[48]},{"name":"INFSTR_KEY_MEM","features":[48]},{"name":"INFSTR_KEY_MEMCONFIG","features":[48]},{"name":"INFSTR_KEY_MEMLARGECONFIG","features":[48]},{"name":"INFSTR_KEY_MESSAGE_FILE","features":[48]},{"name":"INFSTR_KEY_MFCARDCONFIG","features":[48]},{"name":"INFSTR_KEY_MINIMUM_BUFFERS","features":[48]},{"name":"INFSTR_KEY_NAME","features":[48]},{"name":"INFSTR_KEY_NON_CRASH_FAILURES","features":[48]},{"name":"INFSTR_KEY_NOSETUPINF","features":[48]},{"name":"INFSTR_KEY_PARAMETER_FILE","features":[48]},{"name":"INFSTR_KEY_PATH","features":[48]},{"name":"INFSTR_KEY_PCCARDCONFIG","features":[48]},{"name":"INFSTR_KEY_PNPLOCKDOWN","features":[48]},{"name":"INFSTR_KEY_PROVIDER","features":[48]},{"name":"INFSTR_KEY_PROVIDER_NAME","features":[48]},{"name":"INFSTR_KEY_REQUESTADDITIONALSOFTWARE","features":[48]},{"name":"INFSTR_KEY_REQUIREDPRIVILEGES","features":[48]},{"name":"INFSTR_KEY_RESET_PERIOD","features":[48]},{"name":"INFSTR_KEY_RESOURCE_FILE","features":[48]},{"name":"INFSTR_KEY_SECURITY","features":[48]},{"name":"INFSTR_KEY_SERVICEBINARY","features":[48]},{"name":"INFSTR_KEY_SERVICESIDTYPE","features":[48]},{"name":"INFSTR_KEY_SERVICETYPE","features":[48]},{"name":"INFSTR_KEY_SIGNATURE","features":[48]},{"name":"INFSTR_KEY_SKIPLIST","features":[48]},{"name":"INFSTR_KEY_START","features":[48]},{"name":"INFSTR_KEY_STARTNAME","features":[48]},{"name":"INFSTR_KEY_STARTTYPE","features":[48]},{"name":"INFSTR_KEY_SUB_TYPE","features":[48]},{"name":"INFSTR_KEY_TRIGGER_TYPE","features":[48]},{"name":"INFSTR_PLATFORM_NT","features":[48]},{"name":"INFSTR_PLATFORM_NTALPHA","features":[48]},{"name":"INFSTR_PLATFORM_NTAMD64","features":[48]},{"name":"INFSTR_PLATFORM_NTARM","features":[48]},{"name":"INFSTR_PLATFORM_NTARM64","features":[48]},{"name":"INFSTR_PLATFORM_NTAXP64","features":[48]},{"name":"INFSTR_PLATFORM_NTIA64","features":[48]},{"name":"INFSTR_PLATFORM_NTMIPS","features":[48]},{"name":"INFSTR_PLATFORM_NTPPC","features":[48]},{"name":"INFSTR_PLATFORM_NTX86","features":[48]},{"name":"INFSTR_PLATFORM_WIN","features":[48]},{"name":"INFSTR_REBOOT","features":[48]},{"name":"INFSTR_RESTART","features":[48]},{"name":"INFSTR_RISK_BIOSROMRD","features":[48]},{"name":"INFSTR_RISK_DELICATE","features":[48]},{"name":"INFSTR_RISK_IORD","features":[48]},{"name":"INFSTR_RISK_IOWR","features":[48]},{"name":"INFSTR_RISK_LOW","features":[48]},{"name":"INFSTR_RISK_MEMRD","features":[48]},{"name":"INFSTR_RISK_MEMWR","features":[48]},{"name":"INFSTR_RISK_NONE","features":[48]},{"name":"INFSTR_RISK_QUERYDRV","features":[48]},{"name":"INFSTR_RISK_SWINT","features":[48]},{"name":"INFSTR_RISK_UNRELIABLE","features":[48]},{"name":"INFSTR_RISK_VERYHIGH","features":[48]},{"name":"INFSTR_RISK_VERYLOW","features":[48]},{"name":"INFSTR_SECT_AUTOEXECBAT","features":[48]},{"name":"INFSTR_SECT_AVOIDCFGSYSDEV","features":[48]},{"name":"INFSTR_SECT_AVOIDENVDEV","features":[48]},{"name":"INFSTR_SECT_AVOIDINIDEV","features":[48]},{"name":"INFSTR_SECT_BADACPIBIOS","features":[48]},{"name":"INFSTR_SECT_BADDISKBIOS","features":[48]},{"name":"INFSTR_SECT_BADDSBIOS","features":[48]},{"name":"INFSTR_SECT_BADPMCALLBIOS","features":[48]},{"name":"INFSTR_SECT_BADPNPBIOS","features":[48]},{"name":"INFSTR_SECT_BADRMCALLBIOS","features":[48]},{"name":"INFSTR_SECT_BADROUTINGTABLEBIOS","features":[48]},{"name":"INFSTR_SECT_CFGSYS","features":[48]},{"name":"INFSTR_SECT_CLASS_INSTALL","features":[48]},{"name":"INFSTR_SECT_CLASS_INSTALL_32","features":[48]},{"name":"INFSTR_SECT_DEFAULT_INSTALL","features":[48]},{"name":"INFSTR_SECT_DEFAULT_UNINSTALL","features":[48]},{"name":"INFSTR_SECT_DETCLASSINFO","features":[48]},{"name":"INFSTR_SECT_DETMODULES","features":[48]},{"name":"INFSTR_SECT_DETOPTIONS","features":[48]},{"name":"INFSTR_SECT_DEVINFS","features":[48]},{"name":"INFSTR_SECT_DISPLAY_CLEANUP","features":[48]},{"name":"INFSTR_SECT_EXTENSIONCONTRACTS","features":[48]},{"name":"INFSTR_SECT_FORCEHWVERIFY","features":[48]},{"name":"INFSTR_SECT_GOODACPIBIOS","features":[48]},{"name":"INFSTR_SECT_HPOMNIBOOK","features":[48]},{"name":"INFSTR_SECT_INTERFACE_INSTALL_32","features":[48]},{"name":"INFSTR_SECT_MACHINEIDBIOS","features":[48]},{"name":"INFSTR_SECT_MANUALDEV","features":[48]},{"name":"INFSTR_SECT_MFG","features":[48]},{"name":"INFSTR_SECT_REGCFGSYSDEV","features":[48]},{"name":"INFSTR_SECT_REGENVDEV","features":[48]},{"name":"INFSTR_SECT_REGINIDEV","features":[48]},{"name":"INFSTR_SECT_SYSINI","features":[48]},{"name":"INFSTR_SECT_SYSINIDRV","features":[48]},{"name":"INFSTR_SECT_TARGETCOMPUTERS","features":[48]},{"name":"INFSTR_SECT_VERSION","features":[48]},{"name":"INFSTR_SECT_WININIRUN","features":[48]},{"name":"INFSTR_SOFTWAREVERSION_SECTION","features":[48]},{"name":"INFSTR_STRKEY_DRVDESC","features":[48]},{"name":"INFSTR_SUBKEY_COINSTALLERS","features":[48]},{"name":"INFSTR_SUBKEY_CTL","features":[48]},{"name":"INFSTR_SUBKEY_DET","features":[48]},{"name":"INFSTR_SUBKEY_EVENTS","features":[48]},{"name":"INFSTR_SUBKEY_FACTDEF","features":[48]},{"name":"INFSTR_SUBKEY_FILTERS","features":[48]},{"name":"INFSTR_SUBKEY_HW","features":[48]},{"name":"INFSTR_SUBKEY_INTERFACES","features":[48]},{"name":"INFSTR_SUBKEY_LOGCONFIG","features":[48]},{"name":"INFSTR_SUBKEY_LOGCONFIGOVERRIDE","features":[48]},{"name":"INFSTR_SUBKEY_NORESOURCEDUPS","features":[48]},{"name":"INFSTR_SUBKEY_POSSIBLEDUPS","features":[48]},{"name":"INFSTR_SUBKEY_SERVICES","features":[48]},{"name":"INFSTR_SUBKEY_SOFTWARE","features":[48]},{"name":"INFSTR_SUBKEY_WMI","features":[48]},{"name":"INF_STYLE","features":[48]},{"name":"INF_STYLE_CACHE_DISABLE","features":[48]},{"name":"INF_STYLE_CACHE_ENABLE","features":[48]},{"name":"INF_STYLE_CACHE_IGNORE","features":[48]},{"name":"INF_STYLE_NONE","features":[48]},{"name":"INF_STYLE_OLDNT","features":[48]},{"name":"INF_STYLE_WIN4","features":[48]},{"name":"INSTALLFLAG_BITS","features":[48]},{"name":"INSTALLFLAG_FORCE","features":[48]},{"name":"INSTALLFLAG_NONINTERACTIVE","features":[48]},{"name":"INSTALLFLAG_READONLY","features":[48]},{"name":"IOA_Local","features":[48]},{"name":"IOD_DESFLAGS","features":[48]},{"name":"IO_ALIAS_10_BIT_DECODE","features":[48]},{"name":"IO_ALIAS_12_BIT_DECODE","features":[48]},{"name":"IO_ALIAS_16_BIT_DECODE","features":[48]},{"name":"IO_ALIAS_POSITIVE_DECODE","features":[48]},{"name":"IO_DES","features":[48]},{"name":"IO_RANGE","features":[48]},{"name":"IO_RESOURCE","features":[48]},{"name":"IRQD_FLAGS","features":[48]},{"name":"IRQ_DES_32","features":[48]},{"name":"IRQ_DES_64","features":[48]},{"name":"IRQ_RANGE","features":[48]},{"name":"IRQ_RESOURCE_32","features":[48]},{"name":"IRQ_RESOURCE_64","features":[48]},{"name":"InstallHinfSectionA","features":[48,1]},{"name":"InstallHinfSectionW","features":[48,1]},{"name":"LCPRI_BOOTCONFIG","features":[48]},{"name":"LCPRI_DESIRED","features":[48]},{"name":"LCPRI_DISABLED","features":[48]},{"name":"LCPRI_FORCECONFIG","features":[48]},{"name":"LCPRI_HARDRECONFIG","features":[48]},{"name":"LCPRI_HARDWIRED","features":[48]},{"name":"LCPRI_IMPOSSIBLE","features":[48]},{"name":"LCPRI_LASTBESTCONFIG","features":[48]},{"name":"LCPRI_LASTSOFTCONFIG","features":[48]},{"name":"LCPRI_NORMAL","features":[48]},{"name":"LCPRI_POWEROFF","features":[48]},{"name":"LCPRI_REBOOT","features":[48]},{"name":"LCPRI_RESTART","features":[48]},{"name":"LCPRI_SUBOPTIMAL","features":[48]},{"name":"LINE_LEN","features":[48]},{"name":"LOG_CONF_BITS","features":[48]},{"name":"LogSevError","features":[48]},{"name":"LogSevFatalError","features":[48]},{"name":"LogSevInformation","features":[48]},{"name":"LogSevMaximum","features":[48]},{"name":"LogSevWarning","features":[48]},{"name":"MAX_CLASS_NAME_LEN","features":[48]},{"name":"MAX_CONFIG_VALUE","features":[48]},{"name":"MAX_DEVICE_ID_LEN","features":[48]},{"name":"MAX_DEVNODE_ID_LEN","features":[48]},{"name":"MAX_DMA_CHANNELS","features":[48]},{"name":"MAX_GUID_STRING_LEN","features":[48]},{"name":"MAX_IDD_DYNAWIZ_RESOURCE_ID","features":[48]},{"name":"MAX_INFSTR_STRKEY_LEN","features":[48]},{"name":"MAX_INF_FLAG","features":[48]},{"name":"MAX_INF_SECTION_NAME_LENGTH","features":[48]},{"name":"MAX_INF_STRING_LENGTH","features":[48]},{"name":"MAX_INSTALLWIZARD_DYNAPAGES","features":[48]},{"name":"MAX_INSTANCE_VALUE","features":[48]},{"name":"MAX_INSTRUCTION_LEN","features":[48]},{"name":"MAX_IO_PORTS","features":[48]},{"name":"MAX_IRQS","features":[48]},{"name":"MAX_KEY_LEN","features":[48]},{"name":"MAX_LABEL_LEN","features":[48]},{"name":"MAX_LCPRI","features":[48]},{"name":"MAX_MEM_REGISTERS","features":[48]},{"name":"MAX_PRIORITYSTR_LEN","features":[48]},{"name":"MAX_PROFILE_LEN","features":[48]},{"name":"MAX_SERVICE_NAME_LEN","features":[48]},{"name":"MAX_SUBTITLE_LEN","features":[48]},{"name":"MAX_TITLE_LEN","features":[48]},{"name":"MD_FLAGS","features":[48]},{"name":"MEM_DES","features":[48]},{"name":"MEM_LARGE_DES","features":[48]},{"name":"MEM_LARGE_RANGE","features":[48]},{"name":"MEM_LARGE_RESOURCE","features":[48]},{"name":"MEM_RANGE","features":[48]},{"name":"MEM_RESOURCE","features":[48]},{"name":"MFCARD_DES","features":[48]},{"name":"MFCARD_RESOURCE","features":[48]},{"name":"MIN_IDD_DYNAWIZ_RESOURCE_ID","features":[48]},{"name":"NDW_INSTALLFLAG_CI_PICKED_OEM","features":[48]},{"name":"NDW_INSTALLFLAG_DIDFACTDEFS","features":[48]},{"name":"NDW_INSTALLFLAG_EXPRESSINTRO","features":[48]},{"name":"NDW_INSTALLFLAG_HARDWAREALLREADYIN","features":[48]},{"name":"NDW_INSTALLFLAG_INSTALLSPECIFIC","features":[48]},{"name":"NDW_INSTALLFLAG_KNOWNCLASS","features":[48]},{"name":"NDW_INSTALLFLAG_NEEDSHUTDOWN","features":[48]},{"name":"NDW_INSTALLFLAG_NODETECTEDDEVS","features":[48]},{"name":"NDW_INSTALLFLAG_PCMCIADEVICE","features":[48]},{"name":"NDW_INSTALLFLAG_PCMCIAMODE","features":[48]},{"name":"NDW_INSTALLFLAG_SKIPCLASSLIST","features":[48]},{"name":"NDW_INSTALLFLAG_SKIPISDEVINSTALLED","features":[48]},{"name":"NDW_INSTALLFLAG_USERCANCEL","features":[48]},{"name":"NUM_CM_PROB","features":[48]},{"name":"NUM_CM_PROB_V1","features":[48]},{"name":"NUM_CM_PROB_V2","features":[48]},{"name":"NUM_CM_PROB_V3","features":[48]},{"name":"NUM_CM_PROB_V4","features":[48]},{"name":"NUM_CM_PROB_V5","features":[48]},{"name":"NUM_CM_PROB_V6","features":[48]},{"name":"NUM_CM_PROB_V7","features":[48]},{"name":"NUM_CM_PROB_V8","features":[48]},{"name":"NUM_CM_PROB_V9","features":[48]},{"name":"NUM_CR_RESULTS","features":[48]},{"name":"NUM_LOG_CONF","features":[48]},{"name":"OEM_SOURCE_MEDIA_TYPE","features":[48]},{"name":"OVERRIDE_LOG_CONF","features":[48]},{"name":"PCCARD_DES","features":[48]},{"name":"PCCARD_RESOURCE","features":[48]},{"name":"PCD_FLAGS","features":[48]},{"name":"PCD_MAX_IO","features":[48]},{"name":"PCD_MAX_MEMORY","features":[48]},{"name":"PCM_NOTIFY_CALLBACK","features":[48]},{"name":"PDETECT_PROGRESS_NOTIFY","features":[48,1]},{"name":"PMF_FLAGS","features":[48]},{"name":"PNP_VETO_TYPE","features":[48]},{"name":"PNP_VetoAlreadyRemoved","features":[48]},{"name":"PNP_VetoDevice","features":[48]},{"name":"PNP_VetoDriver","features":[48]},{"name":"PNP_VetoIllegalDeviceRequest","features":[48]},{"name":"PNP_VetoInsufficientPower","features":[48]},{"name":"PNP_VetoInsufficientRights","features":[48]},{"name":"PNP_VetoLegacyDevice","features":[48]},{"name":"PNP_VetoLegacyDriver","features":[48]},{"name":"PNP_VetoNonDisableable","features":[48]},{"name":"PNP_VetoOutstandingOpen","features":[48]},{"name":"PNP_VetoPendingClose","features":[48]},{"name":"PNP_VetoTypeUnknown","features":[48]},{"name":"PNP_VetoWindowsApp","features":[48]},{"name":"PNP_VetoWindowsService","features":[48]},{"name":"PRIORITY_BIT","features":[48]},{"name":"PRIORITY_EQUAL_FIRST","features":[48]},{"name":"PRIORITY_EQUAL_LAST","features":[48]},{"name":"PSP_DETSIG_CMPPROC","features":[48]},{"name":"PSP_FILE_CALLBACK_A","features":[48]},{"name":"PSP_FILE_CALLBACK_W","features":[48]},{"name":"ROLLBACK_BITS","features":[48]},{"name":"ROLLBACK_FLAG_NO_UI","features":[48]},{"name":"RegDisposition_Bits","features":[48]},{"name":"RegDisposition_OpenAlways","features":[48]},{"name":"RegDisposition_OpenExisting","features":[48]},{"name":"ResType_All","features":[48]},{"name":"ResType_BusNumber","features":[48]},{"name":"ResType_ClassSpecific","features":[48]},{"name":"ResType_Connection","features":[48]},{"name":"ResType_DMA","features":[48]},{"name":"ResType_DevicePrivate","features":[48]},{"name":"ResType_DoNotUse","features":[48]},{"name":"ResType_IO","features":[48]},{"name":"ResType_IRQ","features":[48]},{"name":"ResType_Ignored_Bit","features":[48]},{"name":"ResType_MAX","features":[48]},{"name":"ResType_Mem","features":[48]},{"name":"ResType_MemLarge","features":[48]},{"name":"ResType_MfCardConfig","features":[48]},{"name":"ResType_None","features":[48]},{"name":"ResType_PcCardConfig","features":[48]},{"name":"ResType_Reserved","features":[48]},{"name":"SCWMI_CLOBBER_SECURITY","features":[48]},{"name":"SETDIRID_NOT_FULL_PATH","features":[48]},{"name":"SETUPSCANFILEQUEUE_FLAGS","features":[48]},{"name":"SETUP_DI_DEVICE_CONFIGURATION_FLAGS","features":[48]},{"name":"SETUP_DI_DEVICE_CREATION_FLAGS","features":[48]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS","features":[48]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS_EX","features":[48]},{"name":"SETUP_DI_DRIVER_INSTALL_FLAGS","features":[48]},{"name":"SETUP_DI_DRIVER_TYPE","features":[48]},{"name":"SETUP_DI_GET_CLASS_DEVS_FLAGS","features":[48]},{"name":"SETUP_DI_PROPERTY_CHANGE_SCOPE","features":[48]},{"name":"SETUP_DI_REGISTRY_PROPERTY","features":[48]},{"name":"SETUP_DI_REMOVE_DEVICE_SCOPE","features":[48]},{"name":"SETUP_DI_STATE_CHANGE","features":[48]},{"name":"SETUP_FILE_OPERATION","features":[48]},{"name":"SIGNERSCORE_AUTHENTICODE","features":[48]},{"name":"SIGNERSCORE_INBOX","features":[48]},{"name":"SIGNERSCORE_LOGO_PREMIUM","features":[48]},{"name":"SIGNERSCORE_LOGO_STANDARD","features":[48]},{"name":"SIGNERSCORE_MASK","features":[48]},{"name":"SIGNERSCORE_SIGNED_MASK","features":[48]},{"name":"SIGNERSCORE_UNCLASSIFIED","features":[48]},{"name":"SIGNERSCORE_UNKNOWN","features":[48]},{"name":"SIGNERSCORE_UNSIGNED","features":[48]},{"name":"SIGNERSCORE_W9X_SUSPECT","features":[48]},{"name":"SIGNERSCORE_WHQL","features":[48]},{"name":"SOURCE_MEDIA_A","features":[48]},{"name":"SOURCE_MEDIA_A","features":[48]},{"name":"SOURCE_MEDIA_W","features":[48]},{"name":"SOURCE_MEDIA_W","features":[48]},{"name":"SPCRP_CHARACTERISTICS","features":[48]},{"name":"SPCRP_DEVTYPE","features":[48]},{"name":"SPCRP_EXCLUSIVE","features":[48]},{"name":"SPCRP_LOWERFILTERS","features":[48]},{"name":"SPCRP_MAXIMUM_PROPERTY","features":[48]},{"name":"SPCRP_SECURITY","features":[48]},{"name":"SPCRP_SECURITY_SDS","features":[48]},{"name":"SPCRP_UPPERFILTERS","features":[48]},{"name":"SPDIT_CLASSDRIVER","features":[48]},{"name":"SPDIT_COMPATDRIVER","features":[48]},{"name":"SPDIT_NODRIVER","features":[48]},{"name":"SPDRP_ADDRESS","features":[48]},{"name":"SPDRP_BASE_CONTAINERID","features":[48]},{"name":"SPDRP_BUSNUMBER","features":[48]},{"name":"SPDRP_BUSTYPEGUID","features":[48]},{"name":"SPDRP_CAPABILITIES","features":[48]},{"name":"SPDRP_CHARACTERISTICS","features":[48]},{"name":"SPDRP_CLASS","features":[48]},{"name":"SPDRP_CLASSGUID","features":[48]},{"name":"SPDRP_COMPATIBLEIDS","features":[48]},{"name":"SPDRP_CONFIGFLAGS","features":[48]},{"name":"SPDRP_DEVICEDESC","features":[48]},{"name":"SPDRP_DEVICE_POWER_DATA","features":[48]},{"name":"SPDRP_DEVTYPE","features":[48]},{"name":"SPDRP_DRIVER","features":[48]},{"name":"SPDRP_ENUMERATOR_NAME","features":[48]},{"name":"SPDRP_EXCLUSIVE","features":[48]},{"name":"SPDRP_FRIENDLYNAME","features":[48]},{"name":"SPDRP_HARDWAREID","features":[48]},{"name":"SPDRP_INSTALL_STATE","features":[48]},{"name":"SPDRP_LEGACYBUSTYPE","features":[48]},{"name":"SPDRP_LOCATION_INFORMATION","features":[48]},{"name":"SPDRP_LOCATION_PATHS","features":[48]},{"name":"SPDRP_LOWERFILTERS","features":[48]},{"name":"SPDRP_MAXIMUM_PROPERTY","features":[48]},{"name":"SPDRP_MFG","features":[48]},{"name":"SPDRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[48]},{"name":"SPDRP_REMOVAL_POLICY","features":[48]},{"name":"SPDRP_REMOVAL_POLICY_HW_DEFAULT","features":[48]},{"name":"SPDRP_REMOVAL_POLICY_OVERRIDE","features":[48]},{"name":"SPDRP_SECURITY","features":[48]},{"name":"SPDRP_SECURITY_SDS","features":[48]},{"name":"SPDRP_SERVICE","features":[48]},{"name":"SPDRP_UI_NUMBER","features":[48]},{"name":"SPDRP_UI_NUMBER_DESC_FORMAT","features":[48]},{"name":"SPDRP_UNUSED0","features":[48]},{"name":"SPDRP_UNUSED1","features":[48]},{"name":"SPDRP_UNUSED2","features":[48]},{"name":"SPDRP_UPPERFILTERS","features":[48]},{"name":"SPDSL_DISALLOW_NEGATIVE_ADJUST","features":[48]},{"name":"SPDSL_IGNORE_DISK","features":[48]},{"name":"SPFILELOG_FORCENEW","features":[48]},{"name":"SPFILELOG_OEMFILE","features":[48]},{"name":"SPFILELOG_QUERYONLY","features":[48]},{"name":"SPFILELOG_SYSTEMLOG","features":[48]},{"name":"SPFILENOTIFY_BACKUPERROR","features":[48]},{"name":"SPFILENOTIFY_CABINETINFO","features":[48]},{"name":"SPFILENOTIFY_COPYERROR","features":[48]},{"name":"SPFILENOTIFY_DELETEERROR","features":[48]},{"name":"SPFILENOTIFY_ENDBACKUP","features":[48]},{"name":"SPFILENOTIFY_ENDCOPY","features":[48]},{"name":"SPFILENOTIFY_ENDDELETE","features":[48]},{"name":"SPFILENOTIFY_ENDQUEUE","features":[48]},{"name":"SPFILENOTIFY_ENDREGISTRATION","features":[48]},{"name":"SPFILENOTIFY_ENDRENAME","features":[48]},{"name":"SPFILENOTIFY_ENDSUBQUEUE","features":[48]},{"name":"SPFILENOTIFY_FILEEXTRACTED","features":[48]},{"name":"SPFILENOTIFY_FILEINCABINET","features":[48]},{"name":"SPFILENOTIFY_FILEOPDELAYED","features":[48]},{"name":"SPFILENOTIFY_LANGMISMATCH","features":[48]},{"name":"SPFILENOTIFY_NEEDMEDIA","features":[48]},{"name":"SPFILENOTIFY_NEEDNEWCABINET","features":[48]},{"name":"SPFILENOTIFY_QUEUESCAN","features":[48]},{"name":"SPFILENOTIFY_QUEUESCAN_EX","features":[48]},{"name":"SPFILENOTIFY_QUEUESCAN_SIGNERINFO","features":[48]},{"name":"SPFILENOTIFY_RENAMEERROR","features":[48]},{"name":"SPFILENOTIFY_STARTBACKUP","features":[48]},{"name":"SPFILENOTIFY_STARTCOPY","features":[48]},{"name":"SPFILENOTIFY_STARTDELETE","features":[48]},{"name":"SPFILENOTIFY_STARTQUEUE","features":[48]},{"name":"SPFILENOTIFY_STARTREGISTRATION","features":[48]},{"name":"SPFILENOTIFY_STARTRENAME","features":[48]},{"name":"SPFILENOTIFY_STARTSUBQUEUE","features":[48]},{"name":"SPFILENOTIFY_TARGETEXISTS","features":[48]},{"name":"SPFILENOTIFY_TARGETNEWER","features":[48]},{"name":"SPFILEQ_FILE_IN_USE","features":[48]},{"name":"SPFILEQ_REBOOT_IN_PROGRESS","features":[48]},{"name":"SPFILEQ_REBOOT_RECOMMENDED","features":[48]},{"name":"SPID_ACTIVE","features":[48]},{"name":"SPID_DEFAULT","features":[48]},{"name":"SPID_REMOVED","features":[48]},{"name":"SPINST_ALL","features":[48]},{"name":"SPINST_BITREG","features":[48]},{"name":"SPINST_COPYINF","features":[48]},{"name":"SPINST_DEVICEINSTALL","features":[48]},{"name":"SPINST_FILES","features":[48]},{"name":"SPINST_INI2REG","features":[48]},{"name":"SPINST_INIFILES","features":[48]},{"name":"SPINST_LOGCONFIG","features":[48]},{"name":"SPINST_LOGCONFIGS_ARE_OVERRIDES","features":[48]},{"name":"SPINST_LOGCONFIG_IS_FORCED","features":[48]},{"name":"SPINST_PROFILEITEMS","features":[48]},{"name":"SPINST_PROPERTIES","features":[48]},{"name":"SPINST_REGISTERCALLBACKAWARE","features":[48]},{"name":"SPINST_REGISTRY","features":[48]},{"name":"SPINST_REGSVR","features":[48]},{"name":"SPINST_SINGLESECTION","features":[48]},{"name":"SPINST_UNREGSVR","features":[48]},{"name":"SPINT_ACTIVE","features":[48]},{"name":"SPINT_DEFAULT","features":[48]},{"name":"SPINT_REMOVED","features":[48]},{"name":"SPOST_MAX","features":[48]},{"name":"SPOST_NONE","features":[48]},{"name":"SPOST_PATH","features":[48]},{"name":"SPOST_URL","features":[48]},{"name":"SPPSR_ENUM_ADV_DEVICE_PROPERTIES","features":[48]},{"name":"SPPSR_ENUM_BASIC_DEVICE_PROPERTIES","features":[48]},{"name":"SPPSR_SELECT_DEVICE_RESOURCES","features":[48]},{"name":"SPQ_DELAYED_COPY","features":[48]},{"name":"SPQ_FLAG_ABORT_IF_UNSIGNED","features":[48]},{"name":"SPQ_FLAG_BACKUP_AWARE","features":[48]},{"name":"SPQ_FLAG_DO_SHUFFLEMOVE","features":[48]},{"name":"SPQ_FLAG_FILES_MODIFIED","features":[48]},{"name":"SPQ_FLAG_VALID","features":[48]},{"name":"SPQ_SCAN_ACTIVATE_DRP","features":[48]},{"name":"SPQ_SCAN_FILE_COMPARISON","features":[48]},{"name":"SPQ_SCAN_FILE_PRESENCE","features":[48]},{"name":"SPQ_SCAN_FILE_PRESENCE_WITHOUT_SOURCE","features":[48]},{"name":"SPQ_SCAN_FILE_VALIDITY","features":[48]},{"name":"SPQ_SCAN_INFORM_USER","features":[48]},{"name":"SPQ_SCAN_PRUNE_COPY_QUEUE","features":[48]},{"name":"SPQ_SCAN_PRUNE_DELREN","features":[48]},{"name":"SPQ_SCAN_USE_CALLBACK","features":[48]},{"name":"SPQ_SCAN_USE_CALLBACKEX","features":[48]},{"name":"SPQ_SCAN_USE_CALLBACK_SIGNERINFO","features":[48]},{"name":"SPRDI_FIND_DUPS","features":[48]},{"name":"SPREG_DLLINSTALL","features":[48]},{"name":"SPREG_GETPROCADDR","features":[48]},{"name":"SPREG_LOADLIBRARY","features":[48]},{"name":"SPREG_REGSVR","features":[48]},{"name":"SPREG_SUCCESS","features":[48]},{"name":"SPREG_TIMEOUT","features":[48]},{"name":"SPREG_UNKNOWN","features":[48]},{"name":"SPSVCINST_ASSOCSERVICE","features":[48]},{"name":"SPSVCINST_CLOBBER_SECURITY","features":[48]},{"name":"SPSVCINST_DELETEEVENTLOGENTRY","features":[48]},{"name":"SPSVCINST_FLAGS","features":[48]},{"name":"SPSVCINST_NOCLOBBER_DELAYEDAUTOSTART","features":[48]},{"name":"SPSVCINST_NOCLOBBER_DEPENDENCIES","features":[48]},{"name":"SPSVCINST_NOCLOBBER_DESCRIPTION","features":[48]},{"name":"SPSVCINST_NOCLOBBER_DISPLAYNAME","features":[48]},{"name":"SPSVCINST_NOCLOBBER_ERRORCONTROL","features":[48]},{"name":"SPSVCINST_NOCLOBBER_FAILUREACTIONS","features":[48]},{"name":"SPSVCINST_NOCLOBBER_LOADORDERGROUP","features":[48]},{"name":"SPSVCINST_NOCLOBBER_REQUIREDPRIVILEGES","features":[48]},{"name":"SPSVCINST_NOCLOBBER_SERVICESIDTYPE","features":[48]},{"name":"SPSVCINST_NOCLOBBER_STARTTYPE","features":[48]},{"name":"SPSVCINST_NOCLOBBER_TRIGGERS","features":[48]},{"name":"SPSVCINST_STARTSERVICE","features":[48]},{"name":"SPSVCINST_STOPSERVICE","features":[48]},{"name":"SPSVCINST_TAGTOFRONT","features":[48]},{"name":"SPSVCINST_UNIQUE_NAME","features":[48]},{"name":"SPWPT_SELECTDEVICE","features":[48]},{"name":"SPWP_USE_DEVINFO_DATA","features":[48]},{"name":"SP_ALTPLATFORM_FLAGS_SUITE_MASK","features":[48]},{"name":"SP_ALTPLATFORM_FLAGS_VERSION_RANGE","features":[48]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[48,30]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[48,30]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[48,30,32]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[48,30,32]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[48]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[48]},{"name":"SP_BACKUP_BACKUPPASS","features":[48]},{"name":"SP_BACKUP_BOOTFILE","features":[48]},{"name":"SP_BACKUP_DEMANDPASS","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[48]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[48]},{"name":"SP_BACKUP_SPECIAL","features":[48]},{"name":"SP_CLASSIMAGELIST_DATA","features":[48,40]},{"name":"SP_CLASSIMAGELIST_DATA","features":[48,40]},{"name":"SP_CLASSINSTALL_HEADER","features":[48]},{"name":"SP_CLASSINSTALL_HEADER","features":[48]},{"name":"SP_COPY_ALREADYDECOMP","features":[48]},{"name":"SP_COPY_DELETESOURCE","features":[48]},{"name":"SP_COPY_FORCE_IN_USE","features":[48]},{"name":"SP_COPY_FORCE_NEWER","features":[48]},{"name":"SP_COPY_FORCE_NOOVERWRITE","features":[48]},{"name":"SP_COPY_HARDLINK","features":[48]},{"name":"SP_COPY_INBOX_INF","features":[48]},{"name":"SP_COPY_IN_USE_NEEDS_REBOOT","features":[48]},{"name":"SP_COPY_IN_USE_TRY_RENAME","features":[48]},{"name":"SP_COPY_LANGUAGEAWARE","features":[48]},{"name":"SP_COPY_NEWER","features":[48]},{"name":"SP_COPY_NEWER_ONLY","features":[48]},{"name":"SP_COPY_NEWER_OR_SAME","features":[48]},{"name":"SP_COPY_NOBROWSE","features":[48]},{"name":"SP_COPY_NODECOMP","features":[48]},{"name":"SP_COPY_NOOVERWRITE","features":[48]},{"name":"SP_COPY_NOPRUNE","features":[48]},{"name":"SP_COPY_NOSKIP","features":[48]},{"name":"SP_COPY_OEMINF_CATALOG_ONLY","features":[48]},{"name":"SP_COPY_OEM_F6_INF","features":[48]},{"name":"SP_COPY_PNPLOCKED","features":[48]},{"name":"SP_COPY_REPLACEONLY","features":[48]},{"name":"SP_COPY_REPLACE_BOOT_FILE","features":[48]},{"name":"SP_COPY_RESERVED","features":[48]},{"name":"SP_COPY_SOURCEPATH_ABSOLUTE","features":[48]},{"name":"SP_COPY_SOURCE_ABSOLUTE","features":[48]},{"name":"SP_COPY_STYLE","features":[48]},{"name":"SP_COPY_WARNIFSKIP","features":[48]},{"name":"SP_COPY_WINDOWS_SIGNED","features":[48]},{"name":"SP_DETECTDEVICE_PARAMS","features":[48,1]},{"name":"SP_DETECTDEVICE_PARAMS","features":[48,1]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[48]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[48]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[48]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[48]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[48]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[48]},{"name":"SP_DEVINFO_DATA","features":[48]},{"name":"SP_DEVINFO_DATA","features":[48]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[48,1]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[48,1]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[48,1]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[48,1]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[48,1]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[48,1]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[48,1]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[48,1]},{"name":"SP_DRVINFO_DATA_V1_A","features":[48]},{"name":"SP_DRVINFO_DATA_V1_A","features":[48]},{"name":"SP_DRVINFO_DATA_V1_W","features":[48]},{"name":"SP_DRVINFO_DATA_V1_W","features":[48]},{"name":"SP_DRVINFO_DATA_V2_A","features":[48,1]},{"name":"SP_DRVINFO_DATA_V2_A","features":[48,1]},{"name":"SP_DRVINFO_DATA_V2_W","features":[48,1]},{"name":"SP_DRVINFO_DATA_V2_W","features":[48,1]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[48,1]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[48,1]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[48,1]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[48,1]},{"name":"SP_DRVINSTALL_PARAMS","features":[48]},{"name":"SP_DRVINSTALL_PARAMS","features":[48]},{"name":"SP_ENABLECLASS_PARAMS","features":[48]},{"name":"SP_ENABLECLASS_PARAMS","features":[48]},{"name":"SP_FILE_COPY_PARAMS_A","features":[48]},{"name":"SP_FILE_COPY_PARAMS_A","features":[48]},{"name":"SP_FILE_COPY_PARAMS_W","features":[48]},{"name":"SP_FILE_COPY_PARAMS_W","features":[48]},{"name":"SP_FLAG_CABINETCONTINUATION","features":[48]},{"name":"SP_INF_INFORMATION","features":[48]},{"name":"SP_INF_INFORMATION","features":[48]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[48]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[48]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[48]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[48]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[48]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[48]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[48]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[48]},{"name":"SP_INSTALLWIZARD_DATA","features":[48,1,40]},{"name":"SP_INSTALLWIZARD_DATA","features":[48,1,40]},{"name":"SP_MAX_MACHINENAME_LENGTH","features":[48]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[48,1,40]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[48,1,40]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[48]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[48]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[48]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[48]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_A","features":[48]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[48]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[48]},{"name":"SP_PROPCHANGE_PARAMS","features":[48]},{"name":"SP_PROPCHANGE_PARAMS","features":[48]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[48]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[48]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[48]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[48]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[48]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[48]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[48]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[48]},{"name":"SP_SELECTDEVICE_PARAMS_A","features":[48]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[48]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[48]},{"name":"SP_TROUBLESHOOTER_PARAMS_A","features":[48]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[48]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[48]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[48]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[48]},{"name":"SRCINFO_DESCRIPTION","features":[48]},{"name":"SRCINFO_FLAGS","features":[48]},{"name":"SRCINFO_PATH","features":[48]},{"name":"SRCINFO_TAGFILE","features":[48]},{"name":"SRCINFO_TAGFILE2","features":[48]},{"name":"SRCLIST_APPEND","features":[48]},{"name":"SRCLIST_NOBROWSE","features":[48]},{"name":"SRCLIST_NOSTRIPPLATFORM","features":[48]},{"name":"SRCLIST_SUBDIRS","features":[48]},{"name":"SRCLIST_SYSIFADMIN","features":[48]},{"name":"SRCLIST_SYSTEM","features":[48]},{"name":"SRCLIST_TEMPORARY","features":[48]},{"name":"SRCLIST_USER","features":[48]},{"name":"SRC_FLAGS_CABFILE","features":[48]},{"name":"SUOI_FORCEDELETE","features":[48]},{"name":"SUOI_INTERNAL1","features":[48]},{"name":"SZ_KEY_ADDAUTOLOGGER","features":[48]},{"name":"SZ_KEY_ADDAUTOLOGGERPROVIDER","features":[48]},{"name":"SZ_KEY_ADDCHANNEL","features":[48]},{"name":"SZ_KEY_ADDEVENTPROVIDER","features":[48]},{"name":"SZ_KEY_ADDFILTER","features":[48]},{"name":"SZ_KEY_ADDIME","features":[48]},{"name":"SZ_KEY_ADDINTERFACE","features":[48]},{"name":"SZ_KEY_ADDPOWERSETTING","features":[48]},{"name":"SZ_KEY_ADDPROP","features":[48]},{"name":"SZ_KEY_ADDREG","features":[48]},{"name":"SZ_KEY_ADDREGNOCLOBBER","features":[48]},{"name":"SZ_KEY_ADDSERVICE","features":[48]},{"name":"SZ_KEY_ADDTRIGGER","features":[48]},{"name":"SZ_KEY_BITREG","features":[48]},{"name":"SZ_KEY_CLEANONLY","features":[48]},{"name":"SZ_KEY_COPYFILES","features":[48]},{"name":"SZ_KEY_COPYINF","features":[48]},{"name":"SZ_KEY_DEFAULTOPTION","features":[48]},{"name":"SZ_KEY_DEFDESTDIR","features":[48]},{"name":"SZ_KEY_DELFILES","features":[48]},{"name":"SZ_KEY_DELIME","features":[48]},{"name":"SZ_KEY_DELPROP","features":[48]},{"name":"SZ_KEY_DELREG","features":[48]},{"name":"SZ_KEY_DELSERVICE","features":[48]},{"name":"SZ_KEY_DESTDIRS","features":[48]},{"name":"SZ_KEY_EXCLUDEID","features":[48]},{"name":"SZ_KEY_FAILUREACTIONS","features":[48]},{"name":"SZ_KEY_FEATURESCORE","features":[48]},{"name":"SZ_KEY_FILTERLEVEL","features":[48]},{"name":"SZ_KEY_FILTERPOSITION","features":[48]},{"name":"SZ_KEY_HARDWARE","features":[48]},{"name":"SZ_KEY_IMPORTCHANNEL","features":[48]},{"name":"SZ_KEY_INI2REG","features":[48]},{"name":"SZ_KEY_LAYOUT_FILE","features":[48]},{"name":"SZ_KEY_LDIDOEM","features":[48]},{"name":"SZ_KEY_LFN_SECTION","features":[48]},{"name":"SZ_KEY_LISTOPTIONS","features":[48]},{"name":"SZ_KEY_LOGCONFIG","features":[48]},{"name":"SZ_KEY_MODULES","features":[48]},{"name":"SZ_KEY_OPTIONDESC","features":[48]},{"name":"SZ_KEY_PHASE1","features":[48]},{"name":"SZ_KEY_PROFILEITEMS","features":[48]},{"name":"SZ_KEY_REGSVR","features":[48]},{"name":"SZ_KEY_RENFILES","features":[48]},{"name":"SZ_KEY_SFN_SECTION","features":[48]},{"name":"SZ_KEY_SRCDISKFILES","features":[48]},{"name":"SZ_KEY_SRCDISKNAMES","features":[48]},{"name":"SZ_KEY_STRINGS","features":[48]},{"name":"SZ_KEY_UNREGSVR","features":[48]},{"name":"SZ_KEY_UPDATEAUTOLOGGER","features":[48]},{"name":"SZ_KEY_UPDATEINIFIELDS","features":[48]},{"name":"SZ_KEY_UPDATEINIS","features":[48]},{"name":"SZ_KEY_UPGRADEONLY","features":[48]},{"name":"SetupAddInstallSectionToDiskSpaceListA","features":[48,1]},{"name":"SetupAddInstallSectionToDiskSpaceListW","features":[48,1]},{"name":"SetupAddSectionToDiskSpaceListA","features":[48,1]},{"name":"SetupAddSectionToDiskSpaceListW","features":[48,1]},{"name":"SetupAddToDiskSpaceListA","features":[48,1]},{"name":"SetupAddToDiskSpaceListW","features":[48,1]},{"name":"SetupAddToSourceListA","features":[48,1]},{"name":"SetupAddToSourceListW","features":[48,1]},{"name":"SetupAdjustDiskSpaceListA","features":[48,1]},{"name":"SetupAdjustDiskSpaceListW","features":[48,1]},{"name":"SetupBackupErrorA","features":[48,1]},{"name":"SetupBackupErrorW","features":[48,1]},{"name":"SetupCancelTemporarySourceList","features":[48,1]},{"name":"SetupCloseFileQueue","features":[48,1]},{"name":"SetupCloseInfFile","features":[48]},{"name":"SetupCloseLog","features":[48]},{"name":"SetupCommitFileQueueA","features":[48,1]},{"name":"SetupCommitFileQueueW","features":[48,1]},{"name":"SetupConfigureWmiFromInfSectionA","features":[48,1]},{"name":"SetupConfigureWmiFromInfSectionW","features":[48,1]},{"name":"SetupCopyErrorA","features":[48,1]},{"name":"SetupCopyErrorW","features":[48,1]},{"name":"SetupCopyOEMInfA","features":[48,1]},{"name":"SetupCopyOEMInfW","features":[48,1]},{"name":"SetupCreateDiskSpaceListA","features":[48]},{"name":"SetupCreateDiskSpaceListW","features":[48]},{"name":"SetupDecompressOrCopyFileA","features":[48]},{"name":"SetupDecompressOrCopyFileW","features":[48]},{"name":"SetupDefaultQueueCallbackA","features":[48]},{"name":"SetupDefaultQueueCallbackW","features":[48]},{"name":"SetupDeleteErrorA","features":[48,1]},{"name":"SetupDeleteErrorW","features":[48,1]},{"name":"SetupDestroyDiskSpaceList","features":[48,1]},{"name":"SetupDiAskForOEMDisk","features":[48,1]},{"name":"SetupDiBuildClassInfoList","features":[48,1]},{"name":"SetupDiBuildClassInfoListExA","features":[48,1]},{"name":"SetupDiBuildClassInfoListExW","features":[48,1]},{"name":"SetupDiBuildDriverInfoList","features":[48,1]},{"name":"SetupDiCallClassInstaller","features":[48,1]},{"name":"SetupDiCancelDriverInfoSearch","features":[48,1]},{"name":"SetupDiChangeState","features":[48,1]},{"name":"SetupDiClassGuidsFromNameA","features":[48,1]},{"name":"SetupDiClassGuidsFromNameExA","features":[48,1]},{"name":"SetupDiClassGuidsFromNameExW","features":[48,1]},{"name":"SetupDiClassGuidsFromNameW","features":[48,1]},{"name":"SetupDiClassNameFromGuidA","features":[48,1]},{"name":"SetupDiClassNameFromGuidExA","features":[48,1]},{"name":"SetupDiClassNameFromGuidExW","features":[48,1]},{"name":"SetupDiClassNameFromGuidW","features":[48,1]},{"name":"SetupDiCreateDevRegKeyA","features":[48,49]},{"name":"SetupDiCreateDevRegKeyW","features":[48,49]},{"name":"SetupDiCreateDeviceInfoA","features":[48,1]},{"name":"SetupDiCreateDeviceInfoList","features":[48,1]},{"name":"SetupDiCreateDeviceInfoListExA","features":[48,1]},{"name":"SetupDiCreateDeviceInfoListExW","features":[48,1]},{"name":"SetupDiCreateDeviceInfoW","features":[48,1]},{"name":"SetupDiCreateDeviceInterfaceA","features":[48,1]},{"name":"SetupDiCreateDeviceInterfaceRegKeyA","features":[48,49]},{"name":"SetupDiCreateDeviceInterfaceRegKeyW","features":[48,49]},{"name":"SetupDiCreateDeviceInterfaceW","features":[48,1]},{"name":"SetupDiDeleteDevRegKey","features":[48,1]},{"name":"SetupDiDeleteDeviceInfo","features":[48,1]},{"name":"SetupDiDeleteDeviceInterfaceData","features":[48,1]},{"name":"SetupDiDeleteDeviceInterfaceRegKey","features":[48,1]},{"name":"SetupDiDestroyClassImageList","features":[48,1,40]},{"name":"SetupDiDestroyDeviceInfoList","features":[48,1]},{"name":"SetupDiDestroyDriverInfoList","features":[48,1]},{"name":"SetupDiDrawMiniIcon","features":[48,1,12]},{"name":"SetupDiEnumDeviceInfo","features":[48,1]},{"name":"SetupDiEnumDeviceInterfaces","features":[48,1]},{"name":"SetupDiEnumDriverInfoA","features":[48,1]},{"name":"SetupDiEnumDriverInfoW","features":[48,1]},{"name":"SetupDiGetActualModelsSectionA","features":[48,1,30,32]},{"name":"SetupDiGetActualModelsSectionW","features":[48,1,30,32]},{"name":"SetupDiGetActualSectionToInstallA","features":[48,1]},{"name":"SetupDiGetActualSectionToInstallExA","features":[48,1,30,32]},{"name":"SetupDiGetActualSectionToInstallExW","features":[48,1,30,32]},{"name":"SetupDiGetActualSectionToInstallW","features":[48,1]},{"name":"SetupDiGetClassBitmapIndex","features":[48,1]},{"name":"SetupDiGetClassDescriptionA","features":[48,1]},{"name":"SetupDiGetClassDescriptionExA","features":[48,1]},{"name":"SetupDiGetClassDescriptionExW","features":[48,1]},{"name":"SetupDiGetClassDescriptionW","features":[48,1]},{"name":"SetupDiGetClassDevPropertySheetsA","features":[48,1,12,40,50]},{"name":"SetupDiGetClassDevPropertySheetsW","features":[48,1,12,40,50]},{"name":"SetupDiGetClassDevsA","features":[48,1]},{"name":"SetupDiGetClassDevsExA","features":[48,1]},{"name":"SetupDiGetClassDevsExW","features":[48,1]},{"name":"SetupDiGetClassDevsW","features":[48,1]},{"name":"SetupDiGetClassImageIndex","features":[48,1,40]},{"name":"SetupDiGetClassImageList","features":[48,1,40]},{"name":"SetupDiGetClassImageListExA","features":[48,1,40]},{"name":"SetupDiGetClassImageListExW","features":[48,1,40]},{"name":"SetupDiGetClassInstallParamsA","features":[48,1]},{"name":"SetupDiGetClassInstallParamsW","features":[48,1]},{"name":"SetupDiGetClassPropertyExW","features":[48,35,1]},{"name":"SetupDiGetClassPropertyKeys","features":[48,35,1]},{"name":"SetupDiGetClassPropertyKeysExW","features":[48,35,1]},{"name":"SetupDiGetClassPropertyW","features":[48,35,1]},{"name":"SetupDiGetClassRegistryPropertyA","features":[48,1]},{"name":"SetupDiGetClassRegistryPropertyW","features":[48,1]},{"name":"SetupDiGetCustomDevicePropertyA","features":[48,1]},{"name":"SetupDiGetCustomDevicePropertyW","features":[48,1]},{"name":"SetupDiGetDeviceInfoListClass","features":[48,1]},{"name":"SetupDiGetDeviceInfoListDetailA","features":[48,1]},{"name":"SetupDiGetDeviceInfoListDetailW","features":[48,1]},{"name":"SetupDiGetDeviceInstallParamsA","features":[48,1]},{"name":"SetupDiGetDeviceInstallParamsW","features":[48,1]},{"name":"SetupDiGetDeviceInstanceIdA","features":[48,1]},{"name":"SetupDiGetDeviceInstanceIdW","features":[48,1]},{"name":"SetupDiGetDeviceInterfaceAlias","features":[48,1]},{"name":"SetupDiGetDeviceInterfaceDetailA","features":[48,1]},{"name":"SetupDiGetDeviceInterfaceDetailW","features":[48,1]},{"name":"SetupDiGetDeviceInterfacePropertyKeys","features":[48,35,1]},{"name":"SetupDiGetDeviceInterfacePropertyW","features":[48,35,1]},{"name":"SetupDiGetDevicePropertyKeys","features":[48,35,1]},{"name":"SetupDiGetDevicePropertyW","features":[48,35,1]},{"name":"SetupDiGetDeviceRegistryPropertyA","features":[48,1]},{"name":"SetupDiGetDeviceRegistryPropertyW","features":[48,1]},{"name":"SetupDiGetDriverInfoDetailA","features":[48,1]},{"name":"SetupDiGetDriverInfoDetailW","features":[48,1]},{"name":"SetupDiGetDriverInstallParamsA","features":[48,1]},{"name":"SetupDiGetDriverInstallParamsW","features":[48,1]},{"name":"SetupDiGetHwProfileFriendlyNameA","features":[48,1]},{"name":"SetupDiGetHwProfileFriendlyNameExA","features":[48,1]},{"name":"SetupDiGetHwProfileFriendlyNameExW","features":[48,1]},{"name":"SetupDiGetHwProfileFriendlyNameW","features":[48,1]},{"name":"SetupDiGetHwProfileList","features":[48,1]},{"name":"SetupDiGetHwProfileListExA","features":[48,1]},{"name":"SetupDiGetHwProfileListExW","features":[48,1]},{"name":"SetupDiGetINFClassA","features":[48,1]},{"name":"SetupDiGetINFClassW","features":[48,1]},{"name":"SetupDiGetSelectedDevice","features":[48,1]},{"name":"SetupDiGetSelectedDriverA","features":[48,1]},{"name":"SetupDiGetSelectedDriverW","features":[48,1]},{"name":"SetupDiGetWizardPage","features":[48,1,40]},{"name":"SetupDiInstallClassA","features":[48,1]},{"name":"SetupDiInstallClassExA","features":[48,1]},{"name":"SetupDiInstallClassExW","features":[48,1]},{"name":"SetupDiInstallClassW","features":[48,1]},{"name":"SetupDiInstallDevice","features":[48,1]},{"name":"SetupDiInstallDeviceInterfaces","features":[48,1]},{"name":"SetupDiInstallDriverFiles","features":[48,1]},{"name":"SetupDiLoadClassIcon","features":[48,1,50]},{"name":"SetupDiLoadDeviceIcon","features":[48,1,50]},{"name":"SetupDiOpenClassRegKey","features":[48,49]},{"name":"SetupDiOpenClassRegKeyExA","features":[48,49]},{"name":"SetupDiOpenClassRegKeyExW","features":[48,49]},{"name":"SetupDiOpenDevRegKey","features":[48,49]},{"name":"SetupDiOpenDeviceInfoA","features":[48,1]},{"name":"SetupDiOpenDeviceInfoW","features":[48,1]},{"name":"SetupDiOpenDeviceInterfaceA","features":[48,1]},{"name":"SetupDiOpenDeviceInterfaceRegKey","features":[48,49]},{"name":"SetupDiOpenDeviceInterfaceW","features":[48,1]},{"name":"SetupDiRegisterCoDeviceInstallers","features":[48,1]},{"name":"SetupDiRegisterDeviceInfo","features":[48,1]},{"name":"SetupDiRemoveDevice","features":[48,1]},{"name":"SetupDiRemoveDeviceInterface","features":[48,1]},{"name":"SetupDiRestartDevices","features":[48,1]},{"name":"SetupDiSelectBestCompatDrv","features":[48,1]},{"name":"SetupDiSelectDevice","features":[48,1]},{"name":"SetupDiSelectOEMDrv","features":[48,1]},{"name":"SetupDiSetClassInstallParamsA","features":[48,1]},{"name":"SetupDiSetClassInstallParamsW","features":[48,1]},{"name":"SetupDiSetClassPropertyExW","features":[48,35,1]},{"name":"SetupDiSetClassPropertyW","features":[48,35,1]},{"name":"SetupDiSetClassRegistryPropertyA","features":[48,1]},{"name":"SetupDiSetClassRegistryPropertyW","features":[48,1]},{"name":"SetupDiSetDeviceInstallParamsA","features":[48,1]},{"name":"SetupDiSetDeviceInstallParamsW","features":[48,1]},{"name":"SetupDiSetDeviceInterfaceDefault","features":[48,1]},{"name":"SetupDiSetDeviceInterfacePropertyW","features":[48,35,1]},{"name":"SetupDiSetDevicePropertyW","features":[48,35,1]},{"name":"SetupDiSetDeviceRegistryPropertyA","features":[48,1]},{"name":"SetupDiSetDeviceRegistryPropertyW","features":[48,1]},{"name":"SetupDiSetDriverInstallParamsA","features":[48,1]},{"name":"SetupDiSetDriverInstallParamsW","features":[48,1]},{"name":"SetupDiSetSelectedDevice","features":[48,1]},{"name":"SetupDiSetSelectedDriverA","features":[48,1]},{"name":"SetupDiSetSelectedDriverW","features":[48,1]},{"name":"SetupDiUnremoveDevice","features":[48,1]},{"name":"SetupDuplicateDiskSpaceListA","features":[48]},{"name":"SetupDuplicateDiskSpaceListW","features":[48]},{"name":"SetupEnumInfSectionsA","features":[48,1]},{"name":"SetupEnumInfSectionsW","features":[48,1]},{"name":"SetupFileLogChecksum","features":[48]},{"name":"SetupFileLogDiskDescription","features":[48]},{"name":"SetupFileLogDiskTagfile","features":[48]},{"name":"SetupFileLogInfo","features":[48]},{"name":"SetupFileLogMax","features":[48]},{"name":"SetupFileLogOtherInfo","features":[48]},{"name":"SetupFileLogSourceFilename","features":[48]},{"name":"SetupFindFirstLineA","features":[48,1]},{"name":"SetupFindFirstLineW","features":[48,1]},{"name":"SetupFindNextLine","features":[48,1]},{"name":"SetupFindNextMatchLineA","features":[48,1]},{"name":"SetupFindNextMatchLineW","features":[48,1]},{"name":"SetupFreeSourceListA","features":[48,1]},{"name":"SetupFreeSourceListW","features":[48,1]},{"name":"SetupGetBackupInformationA","features":[48,1]},{"name":"SetupGetBackupInformationW","features":[48,1]},{"name":"SetupGetBinaryField","features":[48,1]},{"name":"SetupGetFieldCount","features":[48]},{"name":"SetupGetFileCompressionInfoA","features":[48]},{"name":"SetupGetFileCompressionInfoExA","features":[48,1]},{"name":"SetupGetFileCompressionInfoExW","features":[48,1]},{"name":"SetupGetFileCompressionInfoW","features":[48]},{"name":"SetupGetFileQueueCount","features":[48,1]},{"name":"SetupGetFileQueueFlags","features":[48,1]},{"name":"SetupGetInfDriverStoreLocationA","features":[48,1,30,32]},{"name":"SetupGetInfDriverStoreLocationW","features":[48,1,30,32]},{"name":"SetupGetInfFileListA","features":[48,1]},{"name":"SetupGetInfFileListW","features":[48,1]},{"name":"SetupGetInfInformationA","features":[48,1]},{"name":"SetupGetInfInformationW","features":[48,1]},{"name":"SetupGetInfPublishedNameA","features":[48,1]},{"name":"SetupGetInfPublishedNameW","features":[48,1]},{"name":"SetupGetIntField","features":[48,1]},{"name":"SetupGetLineByIndexA","features":[48,1]},{"name":"SetupGetLineByIndexW","features":[48,1]},{"name":"SetupGetLineCountA","features":[48]},{"name":"SetupGetLineCountW","features":[48]},{"name":"SetupGetLineTextA","features":[48,1]},{"name":"SetupGetLineTextW","features":[48,1]},{"name":"SetupGetMultiSzFieldA","features":[48,1]},{"name":"SetupGetMultiSzFieldW","features":[48,1]},{"name":"SetupGetNonInteractiveMode","features":[48,1]},{"name":"SetupGetSourceFileLocationA","features":[48,1]},{"name":"SetupGetSourceFileLocationW","features":[48,1]},{"name":"SetupGetSourceFileSizeA","features":[48,1]},{"name":"SetupGetSourceFileSizeW","features":[48,1]},{"name":"SetupGetSourceInfoA","features":[48,1]},{"name":"SetupGetSourceInfoW","features":[48,1]},{"name":"SetupGetStringFieldA","features":[48,1]},{"name":"SetupGetStringFieldW","features":[48,1]},{"name":"SetupGetTargetPathA","features":[48,1]},{"name":"SetupGetTargetPathW","features":[48,1]},{"name":"SetupGetThreadLogToken","features":[48]},{"name":"SetupInitDefaultQueueCallback","features":[48,1]},{"name":"SetupInitDefaultQueueCallbackEx","features":[48,1]},{"name":"SetupInitializeFileLogA","features":[48]},{"name":"SetupInitializeFileLogW","features":[48]},{"name":"SetupInstallFileA","features":[48,1]},{"name":"SetupInstallFileExA","features":[48,1]},{"name":"SetupInstallFileExW","features":[48,1]},{"name":"SetupInstallFileW","features":[48,1]},{"name":"SetupInstallFilesFromInfSectionA","features":[48,1]},{"name":"SetupInstallFilesFromInfSectionW","features":[48,1]},{"name":"SetupInstallFromInfSectionA","features":[48,1,49]},{"name":"SetupInstallFromInfSectionW","features":[48,1,49]},{"name":"SetupInstallServicesFromInfSectionA","features":[48,1]},{"name":"SetupInstallServicesFromInfSectionExA","features":[48,1]},{"name":"SetupInstallServicesFromInfSectionExW","features":[48,1]},{"name":"SetupInstallServicesFromInfSectionW","features":[48,1]},{"name":"SetupIterateCabinetA","features":[48,1]},{"name":"SetupIterateCabinetW","features":[48,1]},{"name":"SetupLogErrorA","features":[48,1]},{"name":"SetupLogErrorW","features":[48,1]},{"name":"SetupLogFileA","features":[48,1]},{"name":"SetupLogFileW","features":[48,1]},{"name":"SetupOpenAppendInfFileA","features":[48,1]},{"name":"SetupOpenAppendInfFileW","features":[48,1]},{"name":"SetupOpenFileQueue","features":[48]},{"name":"SetupOpenInfFileA","features":[48]},{"name":"SetupOpenInfFileW","features":[48]},{"name":"SetupOpenLog","features":[48,1]},{"name":"SetupOpenMasterInf","features":[48]},{"name":"SetupPrepareQueueForRestoreA","features":[48,1]},{"name":"SetupPrepareQueueForRestoreW","features":[48,1]},{"name":"SetupPromptForDiskA","features":[48,1]},{"name":"SetupPromptForDiskW","features":[48,1]},{"name":"SetupPromptReboot","features":[48,1]},{"name":"SetupQueryDrivesInDiskSpaceListA","features":[48,1]},{"name":"SetupQueryDrivesInDiskSpaceListW","features":[48,1]},{"name":"SetupQueryFileLogA","features":[48,1]},{"name":"SetupQueryFileLogW","features":[48,1]},{"name":"SetupQueryInfFileInformationA","features":[48,1]},{"name":"SetupQueryInfFileInformationW","features":[48,1]},{"name":"SetupQueryInfOriginalFileInformationA","features":[48,1,30,32]},{"name":"SetupQueryInfOriginalFileInformationW","features":[48,1,30,32]},{"name":"SetupQueryInfVersionInformationA","features":[48,1]},{"name":"SetupQueryInfVersionInformationW","features":[48,1]},{"name":"SetupQuerySourceListA","features":[48,1]},{"name":"SetupQuerySourceListW","features":[48,1]},{"name":"SetupQuerySpaceRequiredOnDriveA","features":[48,1]},{"name":"SetupQuerySpaceRequiredOnDriveW","features":[48,1]},{"name":"SetupQueueCopyA","features":[48,1]},{"name":"SetupQueueCopyIndirectA","features":[48,1]},{"name":"SetupQueueCopyIndirectW","features":[48,1]},{"name":"SetupQueueCopySectionA","features":[48,1]},{"name":"SetupQueueCopySectionW","features":[48,1]},{"name":"SetupQueueCopyW","features":[48,1]},{"name":"SetupQueueDefaultCopyA","features":[48,1]},{"name":"SetupQueueDefaultCopyW","features":[48,1]},{"name":"SetupQueueDeleteA","features":[48,1]},{"name":"SetupQueueDeleteSectionA","features":[48,1]},{"name":"SetupQueueDeleteSectionW","features":[48,1]},{"name":"SetupQueueDeleteW","features":[48,1]},{"name":"SetupQueueRenameA","features":[48,1]},{"name":"SetupQueueRenameSectionA","features":[48,1]},{"name":"SetupQueueRenameSectionW","features":[48,1]},{"name":"SetupQueueRenameW","features":[48,1]},{"name":"SetupRemoveFileLogEntryA","features":[48,1]},{"name":"SetupRemoveFileLogEntryW","features":[48,1]},{"name":"SetupRemoveFromDiskSpaceListA","features":[48,1]},{"name":"SetupRemoveFromDiskSpaceListW","features":[48,1]},{"name":"SetupRemoveFromSourceListA","features":[48,1]},{"name":"SetupRemoveFromSourceListW","features":[48,1]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListA","features":[48,1]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListW","features":[48,1]},{"name":"SetupRemoveSectionFromDiskSpaceListA","features":[48,1]},{"name":"SetupRemoveSectionFromDiskSpaceListW","features":[48,1]},{"name":"SetupRenameErrorA","features":[48,1]},{"name":"SetupRenameErrorW","features":[48,1]},{"name":"SetupScanFileQueueA","features":[48,1]},{"name":"SetupScanFileQueueW","features":[48,1]},{"name":"SetupSetDirectoryIdA","features":[48,1]},{"name":"SetupSetDirectoryIdExA","features":[48,1]},{"name":"SetupSetDirectoryIdExW","features":[48,1]},{"name":"SetupSetDirectoryIdW","features":[48,1]},{"name":"SetupSetFileQueueAlternatePlatformA","features":[48,1,30,32]},{"name":"SetupSetFileQueueAlternatePlatformW","features":[48,1,30,32]},{"name":"SetupSetFileQueueFlags","features":[48,1]},{"name":"SetupSetNonInteractiveMode","features":[48,1]},{"name":"SetupSetPlatformPathOverrideA","features":[48,1]},{"name":"SetupSetPlatformPathOverrideW","features":[48,1]},{"name":"SetupSetSourceListA","features":[48,1]},{"name":"SetupSetSourceListW","features":[48,1]},{"name":"SetupSetThreadLogToken","features":[48]},{"name":"SetupTermDefaultQueueCallback","features":[48]},{"name":"SetupTerminateFileLog","features":[48,1]},{"name":"SetupUninstallNewlyCopiedInfs","features":[48,1]},{"name":"SetupUninstallOEMInfA","features":[48,1]},{"name":"SetupUninstallOEMInfW","features":[48,1]},{"name":"SetupVerifyInfFileA","features":[48,1,30,32]},{"name":"SetupVerifyInfFileW","features":[48,1,30,32]},{"name":"SetupWriteTextLog","features":[48]},{"name":"SetupWriteTextLogError","features":[48]},{"name":"SetupWriteTextLogInfLine","features":[48]},{"name":"UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS","features":[48]},{"name":"UpdateDriverForPlugAndPlayDevicesA","features":[48,1]},{"name":"UpdateDriverForPlugAndPlayDevicesW","features":[48,1]},{"name":"fDD_BYTE","features":[48]},{"name":"fDD_BYTE_AND_WORD","features":[48]},{"name":"fDD_BusMaster","features":[48]},{"name":"fDD_DWORD","features":[48]},{"name":"fDD_NoBusMaster","features":[48]},{"name":"fDD_TypeA","features":[48]},{"name":"fDD_TypeB","features":[48]},{"name":"fDD_TypeF","features":[48]},{"name":"fDD_TypeStandard","features":[48]},{"name":"fDD_WORD","features":[48]},{"name":"fIOD_10_BIT_DECODE","features":[48]},{"name":"fIOD_12_BIT_DECODE","features":[48]},{"name":"fIOD_16_BIT_DECODE","features":[48]},{"name":"fIOD_DECODE","features":[48]},{"name":"fIOD_IO","features":[48]},{"name":"fIOD_Memory","features":[48]},{"name":"fIOD_PASSIVE_DECODE","features":[48]},{"name":"fIOD_PORT_BAR","features":[48]},{"name":"fIOD_POSITIVE_DECODE","features":[48]},{"name":"fIOD_PortType","features":[48]},{"name":"fIOD_WINDOW_DECODE","features":[48]},{"name":"fIRQD_Edge","features":[48]},{"name":"fIRQD_Exclusive","features":[48]},{"name":"fIRQD_Level","features":[48]},{"name":"fIRQD_Level_Bit","features":[48]},{"name":"fIRQD_Share","features":[48]},{"name":"fIRQD_Share_Bit","features":[48]},{"name":"fMD_24","features":[48]},{"name":"fMD_32","features":[48]},{"name":"fMD_32_24","features":[48]},{"name":"fMD_Cacheable","features":[48]},{"name":"fMD_CombinedWrite","features":[48]},{"name":"fMD_CombinedWriteAllowed","features":[48]},{"name":"fMD_CombinedWriteDisallowed","features":[48]},{"name":"fMD_MEMORY_BAR","features":[48]},{"name":"fMD_MemoryType","features":[48]},{"name":"fMD_NonCacheable","features":[48]},{"name":"fMD_Pref","features":[48]},{"name":"fMD_PrefetchAllowed","features":[48]},{"name":"fMD_PrefetchDisallowed","features":[48]},{"name":"fMD_Prefetchable","features":[48]},{"name":"fMD_RAM","features":[48]},{"name":"fMD_ROM","features":[48]},{"name":"fMD_ReadAllowed","features":[48]},{"name":"fMD_ReadDisallowed","features":[48]},{"name":"fMD_Readable","features":[48]},{"name":"fMD_WINDOW_DECODE","features":[48]},{"name":"fPCD_ATTRIBUTES_PER_WINDOW","features":[48]},{"name":"fPCD_IO1_16","features":[48]},{"name":"fPCD_IO1_SRC_16","features":[48]},{"name":"fPCD_IO1_WS_16","features":[48]},{"name":"fPCD_IO1_ZW_8","features":[48]},{"name":"fPCD_IO2_16","features":[48]},{"name":"fPCD_IO2_SRC_16","features":[48]},{"name":"fPCD_IO2_WS_16","features":[48]},{"name":"fPCD_IO2_ZW_8","features":[48]},{"name":"fPCD_IO_16","features":[48]},{"name":"fPCD_IO_8","features":[48]},{"name":"fPCD_IO_SRC_16","features":[48]},{"name":"fPCD_IO_WS_16","features":[48]},{"name":"fPCD_IO_ZW_8","features":[48]},{"name":"fPCD_MEM1_16","features":[48]},{"name":"fPCD_MEM1_A","features":[48]},{"name":"fPCD_MEM1_WS_ONE","features":[48]},{"name":"fPCD_MEM1_WS_THREE","features":[48]},{"name":"fPCD_MEM1_WS_TWO","features":[48]},{"name":"fPCD_MEM2_16","features":[48]},{"name":"fPCD_MEM2_A","features":[48]},{"name":"fPCD_MEM2_WS_ONE","features":[48]},{"name":"fPCD_MEM2_WS_THREE","features":[48]},{"name":"fPCD_MEM2_WS_TWO","features":[48]},{"name":"fPCD_MEM_16","features":[48]},{"name":"fPCD_MEM_8","features":[48]},{"name":"fPCD_MEM_A","features":[48]},{"name":"fPCD_MEM_WS_ONE","features":[48]},{"name":"fPCD_MEM_WS_THREE","features":[48]},{"name":"fPCD_MEM_WS_TWO","features":[48]},{"name":"fPMF_AUDIO_ENABLE","features":[48]},{"name":"mDD_BusMaster","features":[48]},{"name":"mDD_Type","features":[48]},{"name":"mDD_Width","features":[48]},{"name":"mIRQD_Edge_Level","features":[48]},{"name":"mIRQD_Share","features":[48]},{"name":"mMD_32_24","features":[48]},{"name":"mMD_Cacheable","features":[48]},{"name":"mMD_CombinedWrite","features":[48]},{"name":"mMD_MemoryType","features":[48]},{"name":"mMD_Prefetchable","features":[48]},{"name":"mMD_Readable","features":[48]},{"name":"mPCD_IO_8_16","features":[48]},{"name":"mPCD_MEM1_WS","features":[48]},{"name":"mPCD_MEM2_WS","features":[48]},{"name":"mPCD_MEM_8_16","features":[48]},{"name":"mPCD_MEM_A_C","features":[48]},{"name":"mPCD_MEM_WS","features":[48]},{"name":"mPMF_AUDIO_ENABLE","features":[48]}],"373":[{"name":"DEVPROP_FILTER_EXPRESSION","features":[51,35]},{"name":"DEVPROP_OPERATOR","features":[51]},{"name":"DEVPROP_OPERATOR_AND_CLOSE","features":[51]},{"name":"DEVPROP_OPERATOR_AND_OPEN","features":[51]},{"name":"DEVPROP_OPERATOR_ARRAY_CONTAINS","features":[51]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH","features":[51]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_BITWISE_AND","features":[51]},{"name":"DEVPROP_OPERATOR_BITWISE_OR","features":[51]},{"name":"DEVPROP_OPERATOR_CONTAINS","features":[51]},{"name":"DEVPROP_OPERATOR_CONTAINS_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_ENDS_WITH","features":[51]},{"name":"DEVPROP_OPERATOR_ENDS_WITH_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_EQUALS","features":[51]},{"name":"DEVPROP_OPERATOR_EQUALS_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_EXISTS","features":[51]},{"name":"DEVPROP_OPERATOR_GREATER_THAN","features":[51]},{"name":"DEVPROP_OPERATOR_GREATER_THAN_EQUALS","features":[51]},{"name":"DEVPROP_OPERATOR_LESS_THAN","features":[51]},{"name":"DEVPROP_OPERATOR_LESS_THAN_EQUALS","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH","features":[51]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_MASK_ARRAY","features":[51]},{"name":"DEVPROP_OPERATOR_MASK_EVAL","features":[51]},{"name":"DEVPROP_OPERATOR_MASK_LIST","features":[51]},{"name":"DEVPROP_OPERATOR_MASK_LOGICAL","features":[51]},{"name":"DEVPROP_OPERATOR_MASK_MODIFIER","features":[51]},{"name":"DEVPROP_OPERATOR_MASK_NOT_LOGICAL","features":[51]},{"name":"DEVPROP_OPERATOR_MODIFIER_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_MODIFIER_NOT","features":[51]},{"name":"DEVPROP_OPERATOR_NONE","features":[51]},{"name":"DEVPROP_OPERATOR_NOT_CLOSE","features":[51]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS","features":[51]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS_IGNORE_CASE","features":[51]},{"name":"DEVPROP_OPERATOR_NOT_EXISTS","features":[51]},{"name":"DEVPROP_OPERATOR_NOT_OPEN","features":[51]},{"name":"DEVPROP_OPERATOR_OR_CLOSE","features":[51]},{"name":"DEVPROP_OPERATOR_OR_OPEN","features":[51]},{"name":"DEV_OBJECT","features":[51,35]},{"name":"DEV_OBJECT_TYPE","features":[51]},{"name":"DEV_QUERY_FLAGS","features":[51]},{"name":"DEV_QUERY_PARAMETER","features":[51,35]},{"name":"DEV_QUERY_RESULT_ACTION","features":[51]},{"name":"DEV_QUERY_RESULT_ACTION_DATA","features":[51,35]},{"name":"DEV_QUERY_STATE","features":[51]},{"name":"DevCloseObjectQuery","features":[51]},{"name":"DevCreateObjectQuery","features":[51,35]},{"name":"DevCreateObjectQueryEx","features":[51,35]},{"name":"DevCreateObjectQueryFromId","features":[51,35]},{"name":"DevCreateObjectQueryFromIdEx","features":[51,35]},{"name":"DevCreateObjectQueryFromIds","features":[51,35]},{"name":"DevCreateObjectQueryFromIdsEx","features":[51,35]},{"name":"DevFindProperty","features":[51,35]},{"name":"DevFreeObjectProperties","features":[51,35]},{"name":"DevFreeObjects","features":[51,35]},{"name":"DevGetObjectProperties","features":[51,35]},{"name":"DevGetObjectPropertiesEx","features":[51,35]},{"name":"DevGetObjects","features":[51,35]},{"name":"DevGetObjectsEx","features":[51,35]},{"name":"DevObjectTypeAEP","features":[51]},{"name":"DevObjectTypeAEPContainer","features":[51]},{"name":"DevObjectTypeAEPService","features":[51]},{"name":"DevObjectTypeDevice","features":[51]},{"name":"DevObjectTypeDeviceContainer","features":[51]},{"name":"DevObjectTypeDeviceContainerDisplay","features":[51]},{"name":"DevObjectTypeDeviceInstallerClass","features":[51]},{"name":"DevObjectTypeDeviceInterface","features":[51]},{"name":"DevObjectTypeDeviceInterfaceClass","features":[51]},{"name":"DevObjectTypeDeviceInterfaceDisplay","features":[51]},{"name":"DevObjectTypeDevicePanel","features":[51]},{"name":"DevObjectTypeUnknown","features":[51]},{"name":"DevQueryFlagAllProperties","features":[51]},{"name":"DevQueryFlagAsyncClose","features":[51]},{"name":"DevQueryFlagLocalize","features":[51]},{"name":"DevQueryFlagNone","features":[51]},{"name":"DevQueryFlagUpdateResults","features":[51]},{"name":"DevQueryResultAdd","features":[51]},{"name":"DevQueryResultRemove","features":[51]},{"name":"DevQueryResultStateChange","features":[51]},{"name":"DevQueryResultUpdate","features":[51]},{"name":"DevQueryStateAborted","features":[51]},{"name":"DevQueryStateClosed","features":[51]},{"name":"DevQueryStateEnumCompleted","features":[51]},{"name":"DevQueryStateInitialized","features":[51]},{"name":"HDEVQUERY","features":[51]},{"name":"PDEV_QUERY_RESULT_CALLBACK","features":[51,35]}],"374":[{"name":"AR_DISABLED","features":[52]},{"name":"AR_DOCKED","features":[52]},{"name":"AR_ENABLED","features":[52]},{"name":"AR_LAPTOP","features":[52]},{"name":"AR_MULTIMON","features":[52]},{"name":"AR_NOSENSOR","features":[52]},{"name":"AR_NOT_SUPPORTED","features":[52]},{"name":"AR_REMOTESESSION","features":[52]},{"name":"AR_STATE","features":[52]},{"name":"AR_SUPPRESSED","features":[52]},{"name":"Adapter","features":[52]},{"name":"Adapters","features":[52]},{"name":"BACKLIGHT_OPTIMIZATION_LEVEL","features":[52]},{"name":"BACKLIGHT_REDUCTION_GAMMA_RAMP","features":[52]},{"name":"BANK_POSITION","features":[52]},{"name":"BITMAP_ARRAY_BYTE","features":[52]},{"name":"BITMAP_BITS_BYTE_ALIGN","features":[52]},{"name":"BITMAP_BITS_PIXEL","features":[52]},{"name":"BITMAP_BITS_WORD_ALIGN","features":[52]},{"name":"BITMAP_PLANES","features":[52]},{"name":"BLENDOBJ","features":[52,12]},{"name":"BMF_16BPP","features":[52]},{"name":"BMF_1BPP","features":[52]},{"name":"BMF_24BPP","features":[52]},{"name":"BMF_32BPP","features":[52]},{"name":"BMF_4BPP","features":[52]},{"name":"BMF_4RLE","features":[52]},{"name":"BMF_8BPP","features":[52]},{"name":"BMF_8RLE","features":[52]},{"name":"BMF_ACC_NOTIFY","features":[52]},{"name":"BMF_DONTCACHE","features":[52]},{"name":"BMF_JPEG","features":[52]},{"name":"BMF_KMSECTION","features":[52]},{"name":"BMF_NOTSYSMEM","features":[52]},{"name":"BMF_NOZEROINIT","features":[52]},{"name":"BMF_PNG","features":[52]},{"name":"BMF_RESERVED","features":[52]},{"name":"BMF_RMT_ENTER","features":[52]},{"name":"BMF_TEMP_ALPHA","features":[52]},{"name":"BMF_TOPDOWN","features":[52]},{"name":"BMF_UMPDMEM","features":[52]},{"name":"BMF_USERMEM","features":[52]},{"name":"BMF_WINDOW_BLT","features":[52]},{"name":"BRIGHTNESS_INTERFACE_VERSION","features":[52]},{"name":"BRIGHTNESS_INTERFACE_VERSION_1","features":[52]},{"name":"BRIGHTNESS_INTERFACE_VERSION_2","features":[52]},{"name":"BRIGHTNESS_INTERFACE_VERSION_3","features":[52]},{"name":"BRIGHTNESS_LEVEL","features":[52]},{"name":"BRIGHTNESS_MAX_LEVEL_COUNT","features":[52]},{"name":"BRIGHTNESS_MAX_NIT_RANGE_COUNT","features":[52]},{"name":"BRIGHTNESS_NIT_RANGE","features":[52]},{"name":"BRIGHTNESS_NIT_RANGES","features":[52]},{"name":"BRUSHOBJ","features":[52]},{"name":"BRUSHOBJ_hGetColorTransform","features":[52,1]},{"name":"BRUSHOBJ_pvAllocRbrush","features":[52]},{"name":"BRUSHOBJ_pvGetRbrush","features":[52]},{"name":"BRUSHOBJ_ulGetBrushColor","features":[52]},{"name":"BR_CMYKCOLOR","features":[52]},{"name":"BR_DEVICE_ICM","features":[52]},{"name":"BR_HOST_ICM","features":[52]},{"name":"BR_ORIGCOLOR","features":[52]},{"name":"BacklightOptimizationDesktop","features":[52]},{"name":"BacklightOptimizationDimmed","features":[52]},{"name":"BacklightOptimizationDisable","features":[52]},{"name":"BacklightOptimizationDynamic","features":[52]},{"name":"BacklightOptimizationEDR","features":[52]},{"name":"BlackScreenDiagnosticsCalloutParam","features":[52]},{"name":"BlackScreenDiagnosticsData","features":[52]},{"name":"BlackScreenDisplayRecovery","features":[52]},{"name":"CDBEX_CROSSADAPTER","features":[52]},{"name":"CDBEX_DXINTEROP","features":[52]},{"name":"CDBEX_NTSHAREDSURFACEHANDLE","features":[52]},{"name":"CDBEX_REDIRECTION","features":[52]},{"name":"CDBEX_REUSE","features":[52]},{"name":"CDDDXGK_REDIRBITMAPPRESENTINFO","features":[52,1]},{"name":"CD_ANY","features":[52]},{"name":"CD_LEFTDOWN","features":[52]},{"name":"CD_LEFTUP","features":[52]},{"name":"CD_LEFTWARDS","features":[52]},{"name":"CD_RIGHTDOWN","features":[52]},{"name":"CD_RIGHTUP","features":[52]},{"name":"CD_UPWARDS","features":[52]},{"name":"CHAR_IMAGE_INFO","features":[52,53]},{"name":"CHAR_TYPE_LEADING","features":[52]},{"name":"CHAR_TYPE_SBCS","features":[52]},{"name":"CHAR_TYPE_TRAILING","features":[52]},{"name":"CHROMATICITY_COORDINATE","features":[52]},{"name":"CIECHROMA","features":[52]},{"name":"CLIPLINE","features":[52]},{"name":"CLIPOBJ","features":[52,1]},{"name":"CLIPOBJ_bEnum","features":[52,1]},{"name":"CLIPOBJ_cEnumStart","features":[52,1]},{"name":"CLIPOBJ_ppoGetPath","features":[52,1]},{"name":"COLORINFO","features":[52]},{"name":"COLORSPACE_TRANSFORM","features":[52]},{"name":"COLORSPACE_TRANSFORM_1DLUT_CAP","features":[52]},{"name":"COLORSPACE_TRANSFORM_3x4","features":[52]},{"name":"COLORSPACE_TRANSFORM_DATA_CAP","features":[52]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE","features":[52]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FIXED_POINT","features":[52]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FLOAT","features":[52]},{"name":"COLORSPACE_TRANSFORM_MATRIX_CAP","features":[52]},{"name":"COLORSPACE_TRANSFORM_MATRIX_V2","features":[52]},{"name":"COLORSPACE_TRANSFORM_SET_INPUT","features":[52]},{"name":"COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[52]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS","features":[52]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS_VERSION","features":[52]},{"name":"COLORSPACE_TRANSFORM_TYPE","features":[52]},{"name":"COLORSPACE_TRANSFORM_TYPE_DEFAULT","features":[52]},{"name":"COLORSPACE_TRANSFORM_TYPE_DXGI_1","features":[52]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_3x4","features":[52]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_V2","features":[52]},{"name":"COLORSPACE_TRANSFORM_TYPE_RGB256x3x16","features":[52]},{"name":"COLORSPACE_TRANSFORM_TYPE_UNINITIALIZED","features":[52]},{"name":"COLORSPACE_TRANSFORM_VERSION_1","features":[52]},{"name":"COLORSPACE_TRANSFORM_VERSION_DEFAULT","features":[52]},{"name":"COLORSPACE_TRANSFORM_VERSION_NOT_SUPPORTED","features":[52]},{"name":"CT_RECTANGLES","features":[52]},{"name":"CapabilitiesRequestAndCapabilitiesReply","features":[52,1]},{"name":"ColorSpaceTransformStageControl_Bypass","features":[52]},{"name":"ColorSpaceTransformStageControl_Enable","features":[52]},{"name":"ColorSpaceTransformStageControl_No_Change","features":[52]},{"name":"DCR_DRIVER","features":[52]},{"name":"DCR_HALFTONE","features":[52]},{"name":"DCR_SOLID","features":[52]},{"name":"DCT_DEFAULT","features":[52]},{"name":"DCT_FORCE_HIGH_PERFORMANCE","features":[52]},{"name":"DCT_FORCE_LOW_POWER","features":[52]},{"name":"DC_COMPLEX","features":[52]},{"name":"DC_RECT","features":[52]},{"name":"DC_TRIVIAL","features":[52]},{"name":"DDI_DRIVER_VERSION_NT4","features":[52]},{"name":"DDI_DRIVER_VERSION_NT5","features":[52]},{"name":"DDI_DRIVER_VERSION_NT5_01","features":[52]},{"name":"DDI_DRIVER_VERSION_NT5_01_SP1","features":[52]},{"name":"DDI_DRIVER_VERSION_SP3","features":[52]},{"name":"DDI_ERROR","features":[52]},{"name":"DD_FULLSCREEN_VIDEO_DEVICE_NAME","features":[52]},{"name":"DEVHTADJDATA","features":[52]},{"name":"DEVHTADJF_ADDITIVE_DEVICE","features":[52]},{"name":"DEVHTADJF_COLOR_DEVICE","features":[52]},{"name":"DEVHTINFO","features":[52]},{"name":"DEVINFO","features":[52,12]},{"name":"DEVPKEY_Device_ActivityId","features":[52,35]},{"name":"DEVPKEY_Device_AdapterLuid","features":[52,35]},{"name":"DEVPKEY_Device_TerminalLuid","features":[52,35]},{"name":"DEVPKEY_IndirectDisplay","features":[52,35]},{"name":"DHPDEV","features":[52]},{"name":"DHSURF","features":[52]},{"name":"DISPLAYCONFIG_2DREGION","features":[52]},{"name":"DISPLAYCONFIG_ADAPTER_NAME","features":[52,1]},{"name":"DISPLAYCONFIG_DESKTOP_IMAGE_INFO","features":[52,1]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADAPTER_NAME","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADVANCED_COLOR_INFO","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_MONITOR_SPECIALIZATION","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SDR_WHITE_LEVEL","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SOURCE_NAME","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SUPPORT_VIRTUAL_RESOLUTION","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_BASE_TYPE","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_NAME","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_PREFERRED_MODE","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_HEADER","features":[52,1]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_ADVANCED_COLOR_STATE","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_MONITOR_SPECIALIZATION","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_SUPPORT_VIRTUAL_RESOLUTION","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_TARGET_PERSISTENCE","features":[52]},{"name":"DISPLAYCONFIG_DEVICE_INFO_TYPE","features":[52]},{"name":"DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO","features":[52,1,12]},{"name":"DISPLAYCONFIG_GET_MONITOR_SPECIALIZATION","features":[52,1]},{"name":"DISPLAYCONFIG_MODE_INFO","features":[52,1]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE","features":[52]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_DESKTOP_IMAGE","features":[52]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_SOURCE","features":[52]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_TARGET","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPONENT_VIDEO","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPOSITE_VIDEO","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EMBEDDED","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EXTERNAL","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_USB_TUNNEL","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DVI","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HD15","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HDMI","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_VIRTUAL","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_WIRED","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INTERNAL","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_LVDS","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_MIRACAST","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_OTHER","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDI","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDTVDONGLE","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SVIDEO","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EMBEDDED","features":[52]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EXTERNAL","features":[52]},{"name":"DISPLAYCONFIG_PATH_INFO","features":[52,1]},{"name":"DISPLAYCONFIG_PATH_SOURCE_INFO","features":[52,1]},{"name":"DISPLAYCONFIG_PATH_TARGET_INFO","features":[52,1]},{"name":"DISPLAYCONFIG_PIXELFORMAT","features":[52]},{"name":"DISPLAYCONFIG_PIXELFORMAT_16BPP","features":[52]},{"name":"DISPLAYCONFIG_PIXELFORMAT_24BPP","features":[52]},{"name":"DISPLAYCONFIG_PIXELFORMAT_32BPP","features":[52]},{"name":"DISPLAYCONFIG_PIXELFORMAT_8BPP","features":[52]},{"name":"DISPLAYCONFIG_PIXELFORMAT_NONGDI","features":[52]},{"name":"DISPLAYCONFIG_RATIONAL","features":[52]},{"name":"DISPLAYCONFIG_ROTATION","features":[52]},{"name":"DISPLAYCONFIG_ROTATION_IDENTITY","features":[52]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE180","features":[52]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE270","features":[52]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE90","features":[52]},{"name":"DISPLAYCONFIG_SCALING","features":[52]},{"name":"DISPLAYCONFIG_SCALING_ASPECTRATIOCENTEREDMAX","features":[52]},{"name":"DISPLAYCONFIG_SCALING_CENTERED","features":[52]},{"name":"DISPLAYCONFIG_SCALING_CUSTOM","features":[52]},{"name":"DISPLAYCONFIG_SCALING_IDENTITY","features":[52]},{"name":"DISPLAYCONFIG_SCALING_PREFERRED","features":[52]},{"name":"DISPLAYCONFIG_SCALING_STRETCHED","features":[52]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING","features":[52]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED","features":[52]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_LOWERFIELDFIRST","features":[52]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_UPPERFIELDFIRST","features":[52]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_PROGRESSIVE","features":[52]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_UNSPECIFIED","features":[52]},{"name":"DISPLAYCONFIG_SDR_WHITE_LEVEL","features":[52,1]},{"name":"DISPLAYCONFIG_SET_ADVANCED_COLOR_STATE","features":[52,1]},{"name":"DISPLAYCONFIG_SET_MONITOR_SPECIALIZATION","features":[52,1]},{"name":"DISPLAYCONFIG_SET_TARGET_PERSISTENCE","features":[52,1]},{"name":"DISPLAYCONFIG_SOURCE_DEVICE_NAME","features":[52,1]},{"name":"DISPLAYCONFIG_SOURCE_MODE","features":[52,1]},{"name":"DISPLAYCONFIG_SUPPORT_VIRTUAL_RESOLUTION","features":[52,1]},{"name":"DISPLAYCONFIG_TARGET_BASE_TYPE","features":[52,1]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME","features":[52,1]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME_FLAGS","features":[52]},{"name":"DISPLAYCONFIG_TARGET_MODE","features":[52]},{"name":"DISPLAYCONFIG_TARGET_PREFERRED_MODE","features":[52,1]},{"name":"DISPLAYCONFIG_TOPOLOGY_CLONE","features":[52]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTEND","features":[52]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTERNAL","features":[52]},{"name":"DISPLAYCONFIG_TOPOLOGY_ID","features":[52]},{"name":"DISPLAYCONFIG_TOPOLOGY_INTERNAL","features":[52]},{"name":"DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY","features":[52]},{"name":"DISPLAYCONFIG_VIDEO_SIGNAL_INFO","features":[52]},{"name":"DISPLAYPOLICY_AC","features":[52]},{"name":"DISPLAYPOLICY_DC","features":[52]},{"name":"DISPLAY_BRIGHTNESS","features":[52]},{"name":"DM_DEFAULT","features":[52]},{"name":"DM_MONOCHROME","features":[52]},{"name":"DN_ACCELERATION_LEVEL","features":[52]},{"name":"DN_ASSOCIATE_WINDOW","features":[52]},{"name":"DN_COMPOSITION_CHANGED","features":[52]},{"name":"DN_DEVICE_ORIGIN","features":[52]},{"name":"DN_DRAWING_BEGIN","features":[52]},{"name":"DN_DRAWING_BEGIN_APIBITMAP","features":[52]},{"name":"DN_SLEEP_MODE","features":[52]},{"name":"DN_SURFOBJ_DESTRUCTION","features":[52]},{"name":"DRD_ERROR","features":[52]},{"name":"DRD_SUCCESS","features":[52]},{"name":"DRH_APIBITMAP","features":[52]},{"name":"DRH_APIBITMAPDATA","features":[52,1]},{"name":"DRIVEROBJ","features":[52,1]},{"name":"DRVENABLEDATA","features":[52]},{"name":"DRVFN","features":[52]},{"name":"DRVQUERY_USERMODE","features":[52]},{"name":"DSI_CHECKSUM_ERROR_CORRECTED","features":[52]},{"name":"DSI_CHECKSUM_ERROR_NOT_CORRECTED","features":[52]},{"name":"DSI_CONTENTION_DETECTED","features":[52]},{"name":"DSI_CONTROL_TRANSMISSION_MODE","features":[52]},{"name":"DSI_DSI_DATA_TYPE_NOT_RECOGNIZED","features":[52]},{"name":"DSI_DSI_PROTOCOL_VIOLATION","features":[52]},{"name":"DSI_DSI_VC_ID_INVALID","features":[52]},{"name":"DSI_EOT_SYNC_ERROR","features":[52]},{"name":"DSI_ESCAPE_MODE_ENTRY_COMMAND_ERROR","features":[52]},{"name":"DSI_FALSE_CONTROL_ERROR","features":[52]},{"name":"DSI_INVALID_PACKET_INDEX","features":[52]},{"name":"DSI_INVALID_TRANSMISSION_LENGTH","features":[52]},{"name":"DSI_LONG_PACKET_PAYLOAD_CHECKSUM_ERROR","features":[52]},{"name":"DSI_LOW_POWER_TRANSMIT_SYNC_ERROR","features":[52]},{"name":"DSI_PACKET_EMBEDDED_PAYLOAD_SIZE","features":[52]},{"name":"DSI_PERIPHERAL_TIMEOUT_ERROR","features":[52]},{"name":"DSI_SOT_ERROR","features":[52]},{"name":"DSI_SOT_SYNC_ERROR","features":[52]},{"name":"DSS_FLUSH_EVENT","features":[52]},{"name":"DSS_RESERVED","features":[52]},{"name":"DSS_RESERVED1","features":[52]},{"name":"DSS_RESERVED2","features":[52]},{"name":"DSS_TIMER_EVENT","features":[52]},{"name":"DXGK_WIN32K_PARAM_DATA","features":[52]},{"name":"DXGK_WIN32K_PARAM_FLAG_DISABLEVIEW","features":[52]},{"name":"DXGK_WIN32K_PARAM_FLAG_MODESWITCH","features":[52]},{"name":"DXGK_WIN32K_PARAM_FLAG_UPDATEREGISTRY","features":[52]},{"name":"DegaussMonitor","features":[52,1]},{"name":"DestroyPhysicalMonitor","features":[52,1]},{"name":"DestroyPhysicalMonitors","features":[52,1]},{"name":"DisplayConfigGetDeviceInfo","features":[52,1]},{"name":"DisplayConfigSetDeviceInfo","features":[52,1]},{"name":"DisplayMode","features":[52,1,12]},{"name":"DisplayModes","features":[52,1,12]},{"name":"ECS_REDRAW","features":[52]},{"name":"ECS_TEARDOWN","features":[52]},{"name":"ED_ABORTDOC","features":[52]},{"name":"EHN_ERROR","features":[52]},{"name":"EHN_RESTORED","features":[52]},{"name":"EMFINFO","features":[52,12]},{"name":"ENDCAP_BUTT","features":[52]},{"name":"ENDCAP_ROUND","features":[52]},{"name":"ENDCAP_SQUARE","features":[52]},{"name":"ENGSAFESEMAPHORE","features":[52]},{"name":"ENG_DEVICE_ATTRIBUTE","features":[52]},{"name":"ENG_EVENT","features":[52]},{"name":"ENG_FNT_CACHE_READ_FAULT","features":[52]},{"name":"ENG_FNT_CACHE_WRITE_FAULT","features":[52]},{"name":"ENG_SYSTEM_ATTRIBUTE","features":[52]},{"name":"ENG_TIME_FIELDS","features":[52]},{"name":"ENUMRECTS","features":[52,1]},{"name":"EngAcquireSemaphore","features":[52]},{"name":"EngAlphaBlend","features":[52,1,12]},{"name":"EngAssociateSurface","features":[52,1]},{"name":"EngBitBlt","features":[52,1]},{"name":"EngCheckAbort","features":[52,1]},{"name":"EngComputeGlyphSet","features":[52]},{"name":"EngCopyBits","features":[52,1]},{"name":"EngCreateBitmap","features":[52,1,12]},{"name":"EngCreateClip","features":[52,1]},{"name":"EngCreateDeviceBitmap","features":[52,1,12]},{"name":"EngCreateDeviceSurface","features":[52,1]},{"name":"EngCreatePalette","features":[52,12]},{"name":"EngCreateSemaphore","features":[52]},{"name":"EngDeleteClip","features":[52,1]},{"name":"EngDeletePalette","features":[52,1,12]},{"name":"EngDeletePath","features":[52]},{"name":"EngDeleteSemaphore","features":[52]},{"name":"EngDeleteSurface","features":[52,1]},{"name":"EngEraseSurface","features":[52,1]},{"name":"EngFillPath","features":[52,1]},{"name":"EngFindResource","features":[52,1]},{"name":"EngFreeModule","features":[52,1]},{"name":"EngGetCurrentCodePage","features":[52]},{"name":"EngGetDriverName","features":[52]},{"name":"EngGetPrinterDataFileName","features":[52]},{"name":"EngGradientFill","features":[52,1,12]},{"name":"EngLineTo","features":[52,1]},{"name":"EngLoadModule","features":[52,1]},{"name":"EngLockSurface","features":[52,1]},{"name":"EngMarkBandingSurface","features":[52,1]},{"name":"EngMultiByteToUnicodeN","features":[52]},{"name":"EngMultiByteToWideChar","features":[52]},{"name":"EngNumberOfProcessors","features":[52]},{"name":"EngOptimumAvailableSystemMemory","features":[52]},{"name":"EngOptimumAvailableUserMemory","features":[52]},{"name":"EngPaint","features":[52,1]},{"name":"EngPlgBlt","features":[52,1,12]},{"name":"EngProcessorFeature","features":[52]},{"name":"EngQueryEMFInfo","features":[52,1,12]},{"name":"EngQueryLocalTime","features":[52]},{"name":"EngReleaseSemaphore","features":[52]},{"name":"EngStretchBlt","features":[52,1,12]},{"name":"EngStretchBltROP","features":[52,1,12]},{"name":"EngStrokeAndFillPath","features":[52,1]},{"name":"EngStrokePath","features":[52,1]},{"name":"EngTextOut","features":[52,1]},{"name":"EngTransparentBlt","features":[52,1]},{"name":"EngUnicodeToMultiByteN","features":[52]},{"name":"EngUnlockSurface","features":[52,1]},{"name":"EngWideCharToMultiByte","features":[52]},{"name":"FC_COMPLEX","features":[52]},{"name":"FC_RECT","features":[52]},{"name":"FC_RECT4","features":[52]},{"name":"FDM_TYPE_BM_SIDE_CONST","features":[52]},{"name":"FDM_TYPE_CHAR_INC_EQUAL_BM_BASE","features":[52]},{"name":"FDM_TYPE_CONST_BEARINGS","features":[52]},{"name":"FDM_TYPE_MAXEXT_EQUAL_BM_SIDE","features":[52]},{"name":"FDM_TYPE_ZERO_BEARINGS","features":[52]},{"name":"FD_DEVICEMETRICS","features":[52,1]},{"name":"FD_ERROR","features":[52]},{"name":"FD_GLYPHATTR","features":[52]},{"name":"FD_GLYPHSET","features":[52]},{"name":"FD_KERNINGPAIR","features":[52]},{"name":"FD_LIGATURE","features":[52]},{"name":"FD_NEGATIVE_FONT","features":[52]},{"name":"FD_XFORM","features":[52]},{"name":"FD_XFORM","features":[52]},{"name":"FF_IGNORED_SIGNATURE","features":[52]},{"name":"FF_SIGNATURE_VERIFIED","features":[52]},{"name":"FLOATOBJ","features":[52]},{"name":"FLOATOBJ_XFORM","features":[52]},{"name":"FLOATOBJ_XFORM","features":[52]},{"name":"FLOAT_LONG","features":[52]},{"name":"FLOAT_LONG","features":[52]},{"name":"FL_NONPAGED_MEMORY","features":[52]},{"name":"FL_NON_SESSION","features":[52]},{"name":"FL_ZERO_MEMORY","features":[52]},{"name":"FM_EDITABLE_EMBED","features":[52]},{"name":"FM_INFO_16BPP","features":[52]},{"name":"FM_INFO_1BPP","features":[52]},{"name":"FM_INFO_24BPP","features":[52]},{"name":"FM_INFO_32BPP","features":[52]},{"name":"FM_INFO_4BPP","features":[52]},{"name":"FM_INFO_8BPP","features":[52]},{"name":"FM_INFO_90DEGREE_ROTATIONS","features":[52]},{"name":"FM_INFO_ANISOTROPIC_SCALING_ONLY","features":[52]},{"name":"FM_INFO_ARB_XFORMS","features":[52]},{"name":"FM_INFO_CONSTANT_WIDTH","features":[52]},{"name":"FM_INFO_DBCS_FIXED_PITCH","features":[52]},{"name":"FM_INFO_DO_NOT_ENUMERATE","features":[52]},{"name":"FM_INFO_DSIG","features":[52]},{"name":"FM_INFO_FAMILY_EQUIV","features":[52]},{"name":"FM_INFO_IGNORE_TC_RA_ABLE","features":[52]},{"name":"FM_INFO_INTEGER_WIDTH","features":[52]},{"name":"FM_INFO_INTEGRAL_SCALING","features":[52]},{"name":"FM_INFO_ISOTROPIC_SCALING_ONLY","features":[52]},{"name":"FM_INFO_NONNEGATIVE_AC","features":[52]},{"name":"FM_INFO_NOT_CONTIGUOUS","features":[52]},{"name":"FM_INFO_OPTICALLY_FIXED_PITCH","features":[52]},{"name":"FM_INFO_RETURNS_BITMAPS","features":[52]},{"name":"FM_INFO_RETURNS_OUTLINES","features":[52]},{"name":"FM_INFO_RETURNS_STROKES","features":[52]},{"name":"FM_INFO_RIGHT_HANDED","features":[52]},{"name":"FM_INFO_TECH_BITMAP","features":[52]},{"name":"FM_INFO_TECH_CFF","features":[52]},{"name":"FM_INFO_TECH_MM","features":[52]},{"name":"FM_INFO_TECH_OUTLINE_NOT_TRUETYPE","features":[52]},{"name":"FM_INFO_TECH_STROKE","features":[52]},{"name":"FM_INFO_TECH_TRUETYPE","features":[52]},{"name":"FM_INFO_TECH_TYPE1","features":[52]},{"name":"FM_NO_EMBEDDING","features":[52]},{"name":"FM_PANOSE_CULTURE_LATIN","features":[52]},{"name":"FM_READONLY_EMBED","features":[52]},{"name":"FM_SEL_BOLD","features":[52]},{"name":"FM_SEL_ITALIC","features":[52]},{"name":"FM_SEL_NEGATIVE","features":[52]},{"name":"FM_SEL_OUTLINED","features":[52]},{"name":"FM_SEL_REGULAR","features":[52]},{"name":"FM_SEL_STRIKEOUT","features":[52]},{"name":"FM_SEL_UNDERSCORE","features":[52]},{"name":"FM_TYPE_LICENSED","features":[52]},{"name":"FM_VERSION_NUMBER","features":[52]},{"name":"FONTDIFF","features":[52,1]},{"name":"FONTINFO","features":[52]},{"name":"FONTOBJ","features":[52,1]},{"name":"FONTOBJ_cGetAllGlyphHandles","features":[52,1]},{"name":"FONTOBJ_cGetGlyphs","features":[52,1]},{"name":"FONTOBJ_pQueryGlyphAttrs","features":[52,1]},{"name":"FONTOBJ_pfdg","features":[52,1]},{"name":"FONTOBJ_pifi","features":[52,1,12]},{"name":"FONTOBJ_pvTrueTypeFontFile","features":[52,1]},{"name":"FONTOBJ_pxoGetXform","features":[52,1]},{"name":"FONTOBJ_vGetInfo","features":[52,1]},{"name":"FONTSIM","features":[52]},{"name":"FONT_IMAGE_INFO","features":[52,53]},{"name":"FO_ATTR_MODE_ROTATE","features":[52]},{"name":"FO_CFF","features":[52]},{"name":"FO_CLEARTYPENATURAL_X","features":[52]},{"name":"FO_CLEARTYPE_X","features":[52]},{"name":"FO_CLEARTYPE_Y","features":[52]},{"name":"FO_DBCS_FONT","features":[52]},{"name":"FO_DEVICE_FONT","features":[52]},{"name":"FO_EM_HEIGHT","features":[52]},{"name":"FO_GLYPHBITS","features":[52]},{"name":"FO_GRAY16","features":[52]},{"name":"FO_HGLYPHS","features":[52]},{"name":"FO_MULTIPLEMASTER","features":[52]},{"name":"FO_NOCLEARTYPE","features":[52]},{"name":"FO_NOGRAY16","features":[52]},{"name":"FO_NOHINTS","features":[52]},{"name":"FO_NO_CHOICE","features":[52]},{"name":"FO_OUTLINE_CAPABLE","features":[52]},{"name":"FO_PATHOBJ","features":[52]},{"name":"FO_POSTSCRIPT","features":[52]},{"name":"FO_SIM_BOLD","features":[52]},{"name":"FO_SIM_ITALIC","features":[52]},{"name":"FO_VERT_FACE","features":[52]},{"name":"FP_ALTERNATEMODE","features":[52]},{"name":"FP_WINDINGMODE","features":[52]},{"name":"FREEOBJPROC","features":[52,1]},{"name":"FSCNTL_SCREEN_INFO","features":[52,53]},{"name":"FSVIDEO_COPY_FRAME_BUFFER","features":[52,53]},{"name":"FSVIDEO_CURSOR_POSITION","features":[52]},{"name":"FSVIDEO_MODE_INFORMATION","features":[52]},{"name":"FSVIDEO_REVERSE_MOUSE_POINTER","features":[52,53]},{"name":"FSVIDEO_SCREEN_INFORMATION","features":[52,53]},{"name":"FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[52,53]},{"name":"GAMMARAMP","features":[52]},{"name":"GAMMA_RAMP_DXGI_1","features":[52]},{"name":"GAMMA_RAMP_RGB","features":[52]},{"name":"GAMMA_RAMP_RGB256x3x16","features":[52]},{"name":"GCAPS2_ACC_DRIVER","features":[52]},{"name":"GCAPS2_ALPHACURSOR","features":[52]},{"name":"GCAPS2_BITMAPEXREUSE","features":[52]},{"name":"GCAPS2_CHANGEGAMMARAMP","features":[52]},{"name":"GCAPS2_CLEARTYPE","features":[52]},{"name":"GCAPS2_EXCLUDELAYERED","features":[52]},{"name":"GCAPS2_ICD_MULTIMON","features":[52]},{"name":"GCAPS2_INCLUDEAPIBITMAPS","features":[52]},{"name":"GCAPS2_JPEGSRC","features":[52]},{"name":"GCAPS2_MOUSETRAILS","features":[52]},{"name":"GCAPS2_PNGSRC","features":[52]},{"name":"GCAPS2_REMOTEDRIVER","features":[52]},{"name":"GCAPS2_RESERVED1","features":[52]},{"name":"GCAPS2_SHOWHIDDENPOINTER","features":[52]},{"name":"GCAPS2_SYNCFLUSH","features":[52]},{"name":"GCAPS2_SYNCTIMER","features":[52]},{"name":"GCAPS2_xxxx","features":[52]},{"name":"GCAPS_ALTERNATEFILL","features":[52]},{"name":"GCAPS_ARBRUSHOPAQUE","features":[52]},{"name":"GCAPS_ARBRUSHTEXT","features":[52]},{"name":"GCAPS_ASYNCCHANGE","features":[52]},{"name":"GCAPS_ASYNCMOVE","features":[52]},{"name":"GCAPS_BEZIERS","features":[52]},{"name":"GCAPS_CMYKCOLOR","features":[52]},{"name":"GCAPS_COLOR_DITHER","features":[52]},{"name":"GCAPS_DIRECTDRAW","features":[52]},{"name":"GCAPS_DITHERONREALIZE","features":[52]},{"name":"GCAPS_DONTJOURNAL","features":[52]},{"name":"GCAPS_FONT_RASTERIZER","features":[52]},{"name":"GCAPS_FORCEDITHER","features":[52]},{"name":"GCAPS_GEOMETRICWIDE","features":[52]},{"name":"GCAPS_GRAY16","features":[52]},{"name":"GCAPS_HALFTONE","features":[52]},{"name":"GCAPS_HIGHRESTEXT","features":[52]},{"name":"GCAPS_HORIZSTRIKE","features":[52]},{"name":"GCAPS_ICM","features":[52]},{"name":"GCAPS_LAYERED","features":[52]},{"name":"GCAPS_MONO_DITHER","features":[52]},{"name":"GCAPS_NO64BITMEMACCESS","features":[52]},{"name":"GCAPS_NUP","features":[52]},{"name":"GCAPS_OPAQUERECT","features":[52]},{"name":"GCAPS_PALMANAGED","features":[52]},{"name":"GCAPS_PANNING","features":[52]},{"name":"GCAPS_SCREENPRECISION","features":[52]},{"name":"GCAPS_VECTORFONT","features":[52]},{"name":"GCAPS_VERTSTRIKE","features":[52]},{"name":"GCAPS_WINDINGFILL","features":[52]},{"name":"GDIINFO","features":[52,1]},{"name":"GDI_DRIVER_VERSION","features":[52]},{"name":"GETCONNECTEDIDS_SOURCE","features":[52]},{"name":"GETCONNECTEDIDS_TARGET","features":[52]},{"name":"GLYPHBITS","features":[52,1]},{"name":"GLYPHDATA","features":[52,1]},{"name":"GLYPHDEF","features":[52,1]},{"name":"GLYPHPOS","features":[52,1]},{"name":"GS_16BIT_HANDLES","features":[52]},{"name":"GS_8BIT_HANDLES","features":[52]},{"name":"GS_UNICODE_HANDLES","features":[52]},{"name":"GUID_DEVINTERFACE_DISPLAY_ADAPTER","features":[52]},{"name":"GUID_DEVINTERFACE_MONITOR","features":[52]},{"name":"GUID_DEVINTERFACE_VIDEO_OUTPUT_ARRIVAL","features":[52]},{"name":"GUID_DISPLAY_DEVICE_ARRIVAL","features":[52]},{"name":"GUID_MONITOR_OVERRIDE_PSEUDO_SPECIALIZED","features":[52]},{"name":"GX_GENERAL","features":[52]},{"name":"GX_IDENTITY","features":[52]},{"name":"GX_OFFSET","features":[52]},{"name":"GX_SCALE","features":[52]},{"name":"GetAutoRotationState","features":[52,1]},{"name":"GetCapabilitiesStringLength","features":[52,1]},{"name":"GetDisplayAutoRotationPreferences","features":[52,1]},{"name":"GetDisplayConfigBufferSizes","features":[52,1]},{"name":"GetMonitorBrightness","features":[52,1]},{"name":"GetMonitorCapabilities","features":[52,1]},{"name":"GetMonitorColorTemperature","features":[52,1]},{"name":"GetMonitorContrast","features":[52,1]},{"name":"GetMonitorDisplayAreaPosition","features":[52,1]},{"name":"GetMonitorDisplayAreaSize","features":[52,1]},{"name":"GetMonitorRedGreenOrBlueDrive","features":[52,1]},{"name":"GetMonitorRedGreenOrBlueGain","features":[52,1]},{"name":"GetMonitorTechnologyType","features":[52,1]},{"name":"GetNumberOfPhysicalMonitorsFromHMONITOR","features":[52,1,12]},{"name":"GetNumberOfPhysicalMonitorsFromIDirect3DDevice9","features":[52]},{"name":"GetPhysicalMonitorsFromHMONITOR","features":[52,1,12]},{"name":"GetPhysicalMonitorsFromIDirect3DDevice9","features":[52,1]},{"name":"GetTimingReport","features":[52,1]},{"name":"GetVCPFeatureAndVCPFeatureReply","features":[52,1]},{"name":"HBM","features":[52]},{"name":"HDEV","features":[52]},{"name":"HDRVOBJ","features":[52]},{"name":"HFASTMUTEX","features":[52]},{"name":"HOOK_ALPHABLEND","features":[52]},{"name":"HOOK_BITBLT","features":[52]},{"name":"HOOK_COPYBITS","features":[52]},{"name":"HOOK_FILLPATH","features":[52]},{"name":"HOOK_FLAGS","features":[52]},{"name":"HOOK_GRADIENTFILL","features":[52]},{"name":"HOOK_LINETO","features":[52]},{"name":"HOOK_MOVEPANNING","features":[52]},{"name":"HOOK_PAINT","features":[52]},{"name":"HOOK_PLGBLT","features":[52]},{"name":"HOOK_STRETCHBLT","features":[52]},{"name":"HOOK_STRETCHBLTROP","features":[52]},{"name":"HOOK_STROKEANDFILLPATH","features":[52]},{"name":"HOOK_STROKEPATH","features":[52]},{"name":"HOOK_SYNCHRONIZE","features":[52]},{"name":"HOOK_SYNCHRONIZEACCESS","features":[52]},{"name":"HOOK_TEXTOUT","features":[52]},{"name":"HOOK_TRANSPARENTBLT","features":[52]},{"name":"HOST_DSI_BAD_TRANSMISSION_MODE","features":[52]},{"name":"HOST_DSI_DEVICE_NOT_READY","features":[52]},{"name":"HOST_DSI_DEVICE_RESET","features":[52]},{"name":"HOST_DSI_DRIVER_REJECTED_PACKET","features":[52]},{"name":"HOST_DSI_INTERFACE_RESET","features":[52]},{"name":"HOST_DSI_INVALID_TRANSMISSION","features":[52]},{"name":"HOST_DSI_OS_REJECTED_PACKET","features":[52]},{"name":"HOST_DSI_TRANSMISSION_CANCELLED","features":[52]},{"name":"HOST_DSI_TRANSMISSION_DROPPED","features":[52]},{"name":"HOST_DSI_TRANSMISSION_TIMEOUT","features":[52]},{"name":"HSEMAPHORE","features":[52]},{"name":"HSURF","features":[52]},{"name":"HS_DDI_MAX","features":[52]},{"name":"HT_FLAG_8BPP_CMY332_MASK","features":[52]},{"name":"HT_FLAG_ADDITIVE_PRIMS","features":[52]},{"name":"HT_FLAG_DO_DEVCLR_XFORM","features":[52]},{"name":"HT_FLAG_HAS_BLACK_DYE","features":[52]},{"name":"HT_FLAG_INK_ABSORPTION_IDX0","features":[52]},{"name":"HT_FLAG_INK_ABSORPTION_IDX1","features":[52]},{"name":"HT_FLAG_INK_ABSORPTION_IDX2","features":[52]},{"name":"HT_FLAG_INK_ABSORPTION_IDX3","features":[52]},{"name":"HT_FLAG_INK_ABSORPTION_INDICES","features":[52]},{"name":"HT_FLAG_INK_HIGH_ABSORPTION","features":[52]},{"name":"HT_FLAG_INVERT_8BPP_BITMASK_IDX","features":[52]},{"name":"HT_FLAG_LOWER_INK_ABSORPTION","features":[52]},{"name":"HT_FLAG_LOWEST_INK_ABSORPTION","features":[52]},{"name":"HT_FLAG_LOW_INK_ABSORPTION","features":[52]},{"name":"HT_FLAG_NORMAL_INK_ABSORPTION","features":[52]},{"name":"HT_FLAG_OUTPUT_CMY","features":[52]},{"name":"HT_FLAG_PRINT_DRAFT_MODE","features":[52]},{"name":"HT_FLAG_SQUARE_DEVICE_PEL","features":[52]},{"name":"HT_FLAG_USE_8BPP_BITMASK","features":[52]},{"name":"HT_FORMAT_16BPP","features":[52]},{"name":"HT_FORMAT_1BPP","features":[52]},{"name":"HT_FORMAT_24BPP","features":[52]},{"name":"HT_FORMAT_32BPP","features":[52]},{"name":"HT_FORMAT_4BPP","features":[52]},{"name":"HT_FORMAT_4BPP_IRGB","features":[52]},{"name":"HT_FORMAT_8BPP","features":[52]},{"name":"HT_Get8BPPFormatPalette","features":[52,12]},{"name":"HT_Get8BPPMaskPalette","features":[52,1,12]},{"name":"HT_PATSIZE_10x10","features":[52]},{"name":"HT_PATSIZE_10x10_M","features":[52]},{"name":"HT_PATSIZE_12x12","features":[52]},{"name":"HT_PATSIZE_12x12_M","features":[52]},{"name":"HT_PATSIZE_14x14","features":[52]},{"name":"HT_PATSIZE_14x14_M","features":[52]},{"name":"HT_PATSIZE_16x16","features":[52]},{"name":"HT_PATSIZE_16x16_M","features":[52]},{"name":"HT_PATSIZE_2x2","features":[52]},{"name":"HT_PATSIZE_2x2_M","features":[52]},{"name":"HT_PATSIZE_4x4","features":[52]},{"name":"HT_PATSIZE_4x4_M","features":[52]},{"name":"HT_PATSIZE_6x6","features":[52]},{"name":"HT_PATSIZE_6x6_M","features":[52]},{"name":"HT_PATSIZE_8x8","features":[52]},{"name":"HT_PATSIZE_8x8_M","features":[52]},{"name":"HT_PATSIZE_DEFAULT","features":[52]},{"name":"HT_PATSIZE_MAX_INDEX","features":[52]},{"name":"HT_PATSIZE_SUPERCELL","features":[52]},{"name":"HT_PATSIZE_SUPERCELL_M","features":[52]},{"name":"HT_PATSIZE_USER","features":[52]},{"name":"HT_USERPAT_CX_MAX","features":[52]},{"name":"HT_USERPAT_CX_MIN","features":[52]},{"name":"HT_USERPAT_CY_MAX","features":[52]},{"name":"HT_USERPAT_CY_MIN","features":[52]},{"name":"ICloneViewHelper","features":[52]},{"name":"IFIEXTRA","features":[52]},{"name":"IFIMETRICS","features":[52,1,12]},{"name":"IFIMETRICS","features":[52,1,12]},{"name":"IGRF_RGB_256BYTES","features":[52]},{"name":"IGRF_RGB_256WORDS","features":[52]},{"name":"INDEX_DrvAccumulateD3DDirtyRect","features":[52]},{"name":"INDEX_DrvAlphaBlend","features":[52]},{"name":"INDEX_DrvAssertMode","features":[52]},{"name":"INDEX_DrvAssociateSharedSurface","features":[52]},{"name":"INDEX_DrvBitBlt","features":[52]},{"name":"INDEX_DrvCompletePDEV","features":[52]},{"name":"INDEX_DrvCopyBits","features":[52]},{"name":"INDEX_DrvCreateDeviceBitmap","features":[52]},{"name":"INDEX_DrvCreateDeviceBitmapEx","features":[52]},{"name":"INDEX_DrvDeleteDeviceBitmap","features":[52]},{"name":"INDEX_DrvDeleteDeviceBitmapEx","features":[52]},{"name":"INDEX_DrvDeriveSurface","features":[52]},{"name":"INDEX_DrvDescribePixelFormat","features":[52]},{"name":"INDEX_DrvDestroyFont","features":[52]},{"name":"INDEX_DrvDisableDirectDraw","features":[52]},{"name":"INDEX_DrvDisableDriver","features":[52]},{"name":"INDEX_DrvDisablePDEV","features":[52]},{"name":"INDEX_DrvDisableSurface","features":[52]},{"name":"INDEX_DrvDitherColor","features":[52]},{"name":"INDEX_DrvDrawEscape","features":[52]},{"name":"INDEX_DrvEnableDirectDraw","features":[52]},{"name":"INDEX_DrvEnablePDEV","features":[52]},{"name":"INDEX_DrvEnableSurface","features":[52]},{"name":"INDEX_DrvEndDoc","features":[52]},{"name":"INDEX_DrvEndDxInterop","features":[52]},{"name":"INDEX_DrvEscape","features":[52]},{"name":"INDEX_DrvFillPath","features":[52]},{"name":"INDEX_DrvFontManagement","features":[52]},{"name":"INDEX_DrvFree","features":[52]},{"name":"INDEX_DrvGetDirectDrawInfo","features":[52]},{"name":"INDEX_DrvGetGlyphMode","features":[52]},{"name":"INDEX_DrvGetModes","features":[52]},{"name":"INDEX_DrvGetSynthesizedFontFiles","features":[52]},{"name":"INDEX_DrvGetTrueTypeFile","features":[52]},{"name":"INDEX_DrvGradientFill","features":[52]},{"name":"INDEX_DrvIcmCheckBitmapBits","features":[52]},{"name":"INDEX_DrvIcmCreateColorTransform","features":[52]},{"name":"INDEX_DrvIcmDeleteColorTransform","features":[52]},{"name":"INDEX_DrvIcmSetDeviceGammaRamp","features":[52]},{"name":"INDEX_DrvLineTo","features":[52]},{"name":"INDEX_DrvLoadFontFile","features":[52]},{"name":"INDEX_DrvLockDisplayArea","features":[52]},{"name":"INDEX_DrvMovePanning","features":[52]},{"name":"INDEX_DrvMovePointer","features":[52]},{"name":"INDEX_DrvNextBand","features":[52]},{"name":"INDEX_DrvNotify","features":[52]},{"name":"INDEX_DrvOffset","features":[52]},{"name":"INDEX_DrvPaint","features":[52]},{"name":"INDEX_DrvPlgBlt","features":[52]},{"name":"INDEX_DrvQueryAdvanceWidths","features":[52]},{"name":"INDEX_DrvQueryDeviceSupport","features":[52]},{"name":"INDEX_DrvQueryFont","features":[52]},{"name":"INDEX_DrvQueryFontCaps","features":[52]},{"name":"INDEX_DrvQueryFontData","features":[52]},{"name":"INDEX_DrvQueryFontFile","features":[52]},{"name":"INDEX_DrvQueryFontTree","features":[52]},{"name":"INDEX_DrvQueryGlyphAttrs","features":[52]},{"name":"INDEX_DrvQueryPerBandInfo","features":[52]},{"name":"INDEX_DrvQuerySpoolType","features":[52]},{"name":"INDEX_DrvQueryTrueTypeOutline","features":[52]},{"name":"INDEX_DrvQueryTrueTypeTable","features":[52]},{"name":"INDEX_DrvRealizeBrush","features":[52]},{"name":"INDEX_DrvRenderHint","features":[52]},{"name":"INDEX_DrvReserved1","features":[52]},{"name":"INDEX_DrvReserved10","features":[52]},{"name":"INDEX_DrvReserved11","features":[52]},{"name":"INDEX_DrvReserved2","features":[52]},{"name":"INDEX_DrvReserved3","features":[52]},{"name":"INDEX_DrvReserved4","features":[52]},{"name":"INDEX_DrvReserved5","features":[52]},{"name":"INDEX_DrvReserved6","features":[52]},{"name":"INDEX_DrvReserved7","features":[52]},{"name":"INDEX_DrvReserved8","features":[52]},{"name":"INDEX_DrvReserved9","features":[52]},{"name":"INDEX_DrvResetDevice","features":[52]},{"name":"INDEX_DrvResetPDEV","features":[52]},{"name":"INDEX_DrvSaveScreenBits","features":[52]},{"name":"INDEX_DrvSendPage","features":[52]},{"name":"INDEX_DrvSetPalette","features":[52]},{"name":"INDEX_DrvSetPixelFormat","features":[52]},{"name":"INDEX_DrvSetPointerShape","features":[52]},{"name":"INDEX_DrvStartBanding","features":[52]},{"name":"INDEX_DrvStartDoc","features":[52]},{"name":"INDEX_DrvStartDxInterop","features":[52]},{"name":"INDEX_DrvStartPage","features":[52]},{"name":"INDEX_DrvStretchBlt","features":[52]},{"name":"INDEX_DrvStretchBltROP","features":[52]},{"name":"INDEX_DrvStrokeAndFillPath","features":[52]},{"name":"INDEX_DrvStrokePath","features":[52]},{"name":"INDEX_DrvSurfaceComplete","features":[52]},{"name":"INDEX_DrvSwapBuffers","features":[52]},{"name":"INDEX_DrvSynchronize","features":[52]},{"name":"INDEX_DrvSynchronizeRedirectionBitmaps","features":[52]},{"name":"INDEX_DrvSynchronizeSurface","features":[52]},{"name":"INDEX_DrvSynthesizeFont","features":[52]},{"name":"INDEX_DrvTextOut","features":[52]},{"name":"INDEX_DrvTransparentBlt","features":[52]},{"name":"INDEX_DrvUnloadFontFile","features":[52]},{"name":"INDEX_DrvUnlockDisplayArea","features":[52]},{"name":"INDEX_LAST","features":[52]},{"name":"INDIRECT_DISPLAY_INFO","features":[52,1]},{"name":"INDIRECT_DISPLAY_INFO_FLAGS_CREATED_IDDCX_ADAPTER","features":[52]},{"name":"IOCTL_COLORSPACE_TRANSFORM_QUERY_TARGET_CAPS","features":[52]},{"name":"IOCTL_COLORSPACE_TRANSFORM_SET","features":[52]},{"name":"IOCTL_FSVIDEO_COPY_FRAME_BUFFER","features":[52]},{"name":"IOCTL_FSVIDEO_REVERSE_MOUSE_POINTER","features":[52]},{"name":"IOCTL_FSVIDEO_SET_CURRENT_MODE","features":[52]},{"name":"IOCTL_FSVIDEO_SET_CURSOR_POSITION","features":[52]},{"name":"IOCTL_FSVIDEO_SET_SCREEN_INFORMATION","features":[52]},{"name":"IOCTL_FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[52]},{"name":"IOCTL_MIPI_DSI_QUERY_CAPS","features":[52]},{"name":"IOCTL_MIPI_DSI_RESET","features":[52]},{"name":"IOCTL_MIPI_DSI_TRANSMISSION","features":[52]},{"name":"IOCTL_PANEL_GET_BACKLIGHT_REDUCTION","features":[52]},{"name":"IOCTL_PANEL_GET_BRIGHTNESS","features":[52]},{"name":"IOCTL_PANEL_GET_MANUFACTURING_MODE","features":[52]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_CAPS","features":[52]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_RANGES","features":[52]},{"name":"IOCTL_PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[52]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS","features":[52]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS_STATE","features":[52]},{"name":"IOCTL_SET_ACTIVE_COLOR_PROFILE_NAME","features":[52]},{"name":"IOCTL_VIDEO_DISABLE_CURSOR","features":[52]},{"name":"IOCTL_VIDEO_DISABLE_POINTER","features":[52]},{"name":"IOCTL_VIDEO_DISABLE_VDM","features":[52]},{"name":"IOCTL_VIDEO_ENABLE_CURSOR","features":[52]},{"name":"IOCTL_VIDEO_ENABLE_POINTER","features":[52]},{"name":"IOCTL_VIDEO_ENABLE_VDM","features":[52]},{"name":"IOCTL_VIDEO_ENUM_MONITOR_PDO","features":[52]},{"name":"IOCTL_VIDEO_FREE_PUBLIC_ACCESS_RANGES","features":[52]},{"name":"IOCTL_VIDEO_GET_BANK_SELECT_CODE","features":[52]},{"name":"IOCTL_VIDEO_GET_CHILD_STATE","features":[52]},{"name":"IOCTL_VIDEO_GET_OUTPUT_DEVICE_POWER_STATE","features":[52]},{"name":"IOCTL_VIDEO_GET_POWER_MANAGEMENT","features":[52]},{"name":"IOCTL_VIDEO_HANDLE_VIDEOPARAMETERS","features":[52]},{"name":"IOCTL_VIDEO_INIT_WIN32K_CALLBACKS","features":[52]},{"name":"IOCTL_VIDEO_IS_VGA_DEVICE","features":[52]},{"name":"IOCTL_VIDEO_LOAD_AND_SET_FONT","features":[52]},{"name":"IOCTL_VIDEO_MAP_VIDEO_MEMORY","features":[52]},{"name":"IOCTL_VIDEO_MONITOR_DEVICE","features":[52]},{"name":"IOCTL_VIDEO_PREPARE_FOR_EARECOVERY","features":[52]},{"name":"IOCTL_VIDEO_QUERY_AVAIL_MODES","features":[52]},{"name":"IOCTL_VIDEO_QUERY_COLOR_CAPABILITIES","features":[52]},{"name":"IOCTL_VIDEO_QUERY_CURRENT_MODE","features":[52]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_ATTR","features":[52]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_POSITION","features":[52]},{"name":"IOCTL_VIDEO_QUERY_DISPLAY_BRIGHTNESS","features":[52]},{"name":"IOCTL_VIDEO_QUERY_NUM_AVAIL_MODES","features":[52]},{"name":"IOCTL_VIDEO_QUERY_POINTER_ATTR","features":[52]},{"name":"IOCTL_VIDEO_QUERY_POINTER_CAPABILITIES","features":[52]},{"name":"IOCTL_VIDEO_QUERY_POINTER_POSITION","features":[52]},{"name":"IOCTL_VIDEO_QUERY_PUBLIC_ACCESS_RANGES","features":[52]},{"name":"IOCTL_VIDEO_QUERY_SUPPORTED_BRIGHTNESS","features":[52]},{"name":"IOCTL_VIDEO_REGISTER_VDM","features":[52]},{"name":"IOCTL_VIDEO_RESET_DEVICE","features":[52]},{"name":"IOCTL_VIDEO_RESTORE_HARDWARE_STATE","features":[52]},{"name":"IOCTL_VIDEO_SAVE_HARDWARE_STATE","features":[52]},{"name":"IOCTL_VIDEO_SET_BANK_POSITION","features":[52]},{"name":"IOCTL_VIDEO_SET_CHILD_STATE_CONFIGURATION","features":[52]},{"name":"IOCTL_VIDEO_SET_COLOR_LUT_DATA","features":[52]},{"name":"IOCTL_VIDEO_SET_COLOR_REGISTERS","features":[52]},{"name":"IOCTL_VIDEO_SET_CURRENT_MODE","features":[52]},{"name":"IOCTL_VIDEO_SET_CURSOR_ATTR","features":[52]},{"name":"IOCTL_VIDEO_SET_CURSOR_POSITION","features":[52]},{"name":"IOCTL_VIDEO_SET_DISPLAY_BRIGHTNESS","features":[52]},{"name":"IOCTL_VIDEO_SET_OUTPUT_DEVICE_POWER_STATE","features":[52]},{"name":"IOCTL_VIDEO_SET_PALETTE_REGISTERS","features":[52]},{"name":"IOCTL_VIDEO_SET_POINTER_ATTR","features":[52]},{"name":"IOCTL_VIDEO_SET_POINTER_POSITION","features":[52]},{"name":"IOCTL_VIDEO_SET_POWER_MANAGEMENT","features":[52]},{"name":"IOCTL_VIDEO_SHARE_VIDEO_MEMORY","features":[52]},{"name":"IOCTL_VIDEO_SWITCH_DUALVIEW","features":[52]},{"name":"IOCTL_VIDEO_UNMAP_VIDEO_MEMORY","features":[52]},{"name":"IOCTL_VIDEO_UNSHARE_VIDEO_MEMORY","features":[52]},{"name":"IOCTL_VIDEO_USE_DEVICE_IN_SESSION","features":[52]},{"name":"IOCTL_VIDEO_VALIDATE_CHILD_STATE_CONFIGURATION","features":[52]},{"name":"IViewHelper","features":[52]},{"name":"JOIN_BEVEL","features":[52]},{"name":"JOIN_MITER","features":[52]},{"name":"JOIN_ROUND","features":[52]},{"name":"LA_ALTERNATE","features":[52]},{"name":"LA_GEOMETRIC","features":[52]},{"name":"LA_STARTGAP","features":[52]},{"name":"LA_STYLED","features":[52]},{"name":"LIGATURE","features":[52]},{"name":"LINEATTRS","features":[52]},{"name":"LINEATTRS","features":[52]},{"name":"MAXCHARSETS","features":[52]},{"name":"MAX_PACKET_COUNT","features":[52]},{"name":"MC_APERTURE_GRILL_CATHODE_RAY_TUBE","features":[52]},{"name":"MC_BLUE_DRIVE","features":[52]},{"name":"MC_BLUE_GAIN","features":[52]},{"name":"MC_CAPS_BRIGHTNESS","features":[52]},{"name":"MC_CAPS_COLOR_TEMPERATURE","features":[52]},{"name":"MC_CAPS_CONTRAST","features":[52]},{"name":"MC_CAPS_DEGAUSS","features":[52]},{"name":"MC_CAPS_DISPLAY_AREA_POSITION","features":[52]},{"name":"MC_CAPS_DISPLAY_AREA_SIZE","features":[52]},{"name":"MC_CAPS_MONITOR_TECHNOLOGY_TYPE","features":[52]},{"name":"MC_CAPS_NONE","features":[52]},{"name":"MC_CAPS_RED_GREEN_BLUE_DRIVE","features":[52]},{"name":"MC_CAPS_RED_GREEN_BLUE_GAIN","features":[52]},{"name":"MC_CAPS_RESTORE_FACTORY_COLOR_DEFAULTS","features":[52]},{"name":"MC_CAPS_RESTORE_FACTORY_DEFAULTS","features":[52]},{"name":"MC_COLOR_TEMPERATURE","features":[52]},{"name":"MC_COLOR_TEMPERATURE_10000K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_11500K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_4000K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_5000K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_6500K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_7500K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_8200K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_9300K","features":[52]},{"name":"MC_COLOR_TEMPERATURE_UNKNOWN","features":[52]},{"name":"MC_DISPLAY_TECHNOLOGY_TYPE","features":[52]},{"name":"MC_DRIVE_TYPE","features":[52]},{"name":"MC_ELECTROLUMINESCENT","features":[52]},{"name":"MC_FIELD_EMISSION_DEVICE","features":[52]},{"name":"MC_GAIN_TYPE","features":[52]},{"name":"MC_GREEN_DRIVE","features":[52]},{"name":"MC_GREEN_GAIN","features":[52]},{"name":"MC_HEIGHT","features":[52]},{"name":"MC_HORIZONTAL_POSITION","features":[52]},{"name":"MC_LIQUID_CRYSTAL_ON_SILICON","features":[52]},{"name":"MC_MICROELECTROMECHANICAL","features":[52]},{"name":"MC_MOMENTARY","features":[52]},{"name":"MC_ORGANIC_LIGHT_EMITTING_DIODE","features":[52]},{"name":"MC_PLASMA","features":[52]},{"name":"MC_POSITION_TYPE","features":[52]},{"name":"MC_RED_DRIVE","features":[52]},{"name":"MC_RED_GAIN","features":[52]},{"name":"MC_RESTORE_FACTORY_DEFAULTS_ENABLES_MONITOR_SETTINGS","features":[52]},{"name":"MC_SET_PARAMETER","features":[52]},{"name":"MC_SHADOW_MASK_CATHODE_RAY_TUBE","features":[52]},{"name":"MC_SIZE_TYPE","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_10000K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_11500K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_4000K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_5000K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_6500K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_7500K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_8200K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_9300K","features":[52]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_NONE","features":[52]},{"name":"MC_THIN_FILM_TRANSISTOR","features":[52]},{"name":"MC_TIMING_REPORT","features":[52]},{"name":"MC_VCP_CODE_TYPE","features":[52]},{"name":"MC_VERTICAL_POSITION","features":[52]},{"name":"MC_WIDTH","features":[52]},{"name":"MIPI_DSI_CAPS","features":[52]},{"name":"MIPI_DSI_PACKET","features":[52]},{"name":"MIPI_DSI_RESET","features":[52]},{"name":"MIPI_DSI_TRANSMISSION","features":[52]},{"name":"MS_CDDDEVICEBITMAP","features":[52]},{"name":"MS_NOTSYSTEMMEMORY","features":[52]},{"name":"MS_REUSEDDEVICEBITMAP","features":[52]},{"name":"MS_SHAREDACCESS","features":[52]},{"name":"NumVideoBankTypes","features":[52]},{"name":"OC_BANK_CLIP","features":[52]},{"name":"OPENGL_CMD","features":[52]},{"name":"OPENGL_GETINFO","features":[52]},{"name":"ORIENTATION_PREFERENCE","features":[52]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE","features":[52]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE_FLIPPED","features":[52]},{"name":"ORIENTATION_PREFERENCE_NONE","features":[52]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT","features":[52]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT_FLIPPED","features":[52]},{"name":"OUTPUT_COLOR_ENCODING","features":[52]},{"name":"OUTPUT_COLOR_ENCODING_INTENSITY","features":[52]},{"name":"OUTPUT_COLOR_ENCODING_RGB","features":[52]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR420","features":[52]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR422","features":[52]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR444","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[52]},{"name":"OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[52]},{"name":"OUTPUT_WIRE_FORMAT","features":[52]},{"name":"PALOBJ","features":[52]},{"name":"PAL_BGR","features":[52]},{"name":"PAL_BITFIELDS","features":[52]},{"name":"PAL_CMYK","features":[52]},{"name":"PAL_INDEXED","features":[52]},{"name":"PAL_RGB","features":[52]},{"name":"PANEL_BRIGHTNESS_SENSOR_DATA","features":[52]},{"name":"PANEL_GET_BACKLIGHT_REDUCTION","features":[52]},{"name":"PANEL_GET_BRIGHTNESS","features":[52]},{"name":"PANEL_QUERY_BRIGHTNESS_CAPS","features":[52]},{"name":"PANEL_QUERY_BRIGHTNESS_RANGES","features":[52]},{"name":"PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[52]},{"name":"PANEL_SET_BRIGHTNESS","features":[52]},{"name":"PANEL_SET_BRIGHTNESS_STATE","features":[52]},{"name":"PATHDATA","features":[52]},{"name":"PATHOBJ","features":[52]},{"name":"PATHOBJ_bEnum","features":[52,1]},{"name":"PATHOBJ_bEnumClipLines","features":[52,1]},{"name":"PATHOBJ_vEnumStart","features":[52]},{"name":"PATHOBJ_vEnumStartClipLines","features":[52,1]},{"name":"PATHOBJ_vGetBounds","features":[52]},{"name":"PD_BEGINSUBPATH","features":[52]},{"name":"PD_BEZIERS","features":[52]},{"name":"PD_CLOSEFIGURE","features":[52]},{"name":"PD_ENDSUBPATH","features":[52]},{"name":"PD_RESETSTYLE","features":[52]},{"name":"PERBANDINFO","features":[52,1]},{"name":"PFN","features":[52]},{"name":"PFN_DrvAccumulateD3DDirtyRect","features":[52,1]},{"name":"PFN_DrvAlphaBlend","features":[52,1,12]},{"name":"PFN_DrvAssertMode","features":[52,1]},{"name":"PFN_DrvAssociateSharedSurface","features":[52,1]},{"name":"PFN_DrvBitBlt","features":[52,1]},{"name":"PFN_DrvCompletePDEV","features":[52]},{"name":"PFN_DrvCopyBits","features":[52,1]},{"name":"PFN_DrvCreateDeviceBitmap","features":[52,1,12]},{"name":"PFN_DrvCreateDeviceBitmapEx","features":[52,1,12]},{"name":"PFN_DrvDeleteDeviceBitmap","features":[52]},{"name":"PFN_DrvDeleteDeviceBitmapEx","features":[52]},{"name":"PFN_DrvDeriveSurface","features":[52,1,11,12]},{"name":"PFN_DrvDescribePixelFormat","features":[52,54]},{"name":"PFN_DrvDestroyFont","features":[52,1]},{"name":"PFN_DrvDisableDirectDraw","features":[52]},{"name":"PFN_DrvDisableDriver","features":[52]},{"name":"PFN_DrvDisablePDEV","features":[52]},{"name":"PFN_DrvDisableSurface","features":[52]},{"name":"PFN_DrvDitherColor","features":[52]},{"name":"PFN_DrvDrawEscape","features":[52,1]},{"name":"PFN_DrvEnableDirectDraw","features":[52,1,11,12]},{"name":"PFN_DrvEnableDriver","features":[52,1]},{"name":"PFN_DrvEnablePDEV","features":[52,1,12]},{"name":"PFN_DrvEnableSurface","features":[52]},{"name":"PFN_DrvEndDoc","features":[52,1]},{"name":"PFN_DrvEndDxInterop","features":[52,1]},{"name":"PFN_DrvEscape","features":[52,1]},{"name":"PFN_DrvFillPath","features":[52,1]},{"name":"PFN_DrvFontManagement","features":[52,1]},{"name":"PFN_DrvFree","features":[52]},{"name":"PFN_DrvGetDirectDrawInfo","features":[52,1,11]},{"name":"PFN_DrvGetGlyphMode","features":[52,1]},{"name":"PFN_DrvGetModes","features":[52,1,12]},{"name":"PFN_DrvGetTrueTypeFile","features":[52]},{"name":"PFN_DrvGradientFill","features":[52,1,12]},{"name":"PFN_DrvIcmCheckBitmapBits","features":[52,1]},{"name":"PFN_DrvIcmCreateColorTransform","features":[52,1,12,55]},{"name":"PFN_DrvIcmDeleteColorTransform","features":[52,1]},{"name":"PFN_DrvIcmSetDeviceGammaRamp","features":[52,1]},{"name":"PFN_DrvLineTo","features":[52,1]},{"name":"PFN_DrvLoadFontFile","features":[52,12]},{"name":"PFN_DrvLockDisplayArea","features":[52,1]},{"name":"PFN_DrvMovePointer","features":[52,1]},{"name":"PFN_DrvNextBand","features":[52,1]},{"name":"PFN_DrvNotify","features":[52,1]},{"name":"PFN_DrvPaint","features":[52,1]},{"name":"PFN_DrvPlgBlt","features":[52,1,12]},{"name":"PFN_DrvQueryAdvanceWidths","features":[52,1]},{"name":"PFN_DrvQueryDeviceSupport","features":[52,1]},{"name":"PFN_DrvQueryFont","features":[52,1,12]},{"name":"PFN_DrvQueryFontCaps","features":[52]},{"name":"PFN_DrvQueryFontData","features":[52,1]},{"name":"PFN_DrvQueryFontFile","features":[52]},{"name":"PFN_DrvQueryFontTree","features":[52]},{"name":"PFN_DrvQueryGlyphAttrs","features":[52,1]},{"name":"PFN_DrvQueryPerBandInfo","features":[52,1]},{"name":"PFN_DrvQuerySpoolType","features":[52,1]},{"name":"PFN_DrvQueryTrueTypeOutline","features":[52,1,12]},{"name":"PFN_DrvQueryTrueTypeSection","features":[52,1]},{"name":"PFN_DrvQueryTrueTypeTable","features":[52]},{"name":"PFN_DrvRealizeBrush","features":[52,1]},{"name":"PFN_DrvRenderHint","features":[52]},{"name":"PFN_DrvResetDevice","features":[52]},{"name":"PFN_DrvResetPDEV","features":[52,1]},{"name":"PFN_DrvSaveScreenBits","features":[52,1]},{"name":"PFN_DrvSendPage","features":[52,1]},{"name":"PFN_DrvSetPalette","features":[52,1]},{"name":"PFN_DrvSetPixelFormat","features":[52,1]},{"name":"PFN_DrvSetPointerShape","features":[52,1]},{"name":"PFN_DrvStartBanding","features":[52,1]},{"name":"PFN_DrvStartDoc","features":[52,1]},{"name":"PFN_DrvStartDxInterop","features":[52,1]},{"name":"PFN_DrvStartPage","features":[52,1]},{"name":"PFN_DrvStretchBlt","features":[52,1,12]},{"name":"PFN_DrvStretchBltROP","features":[52,1,12]},{"name":"PFN_DrvStrokeAndFillPath","features":[52,1]},{"name":"PFN_DrvStrokePath","features":[52,1]},{"name":"PFN_DrvSurfaceComplete","features":[52,1]},{"name":"PFN_DrvSwapBuffers","features":[52,1]},{"name":"PFN_DrvSynchronize","features":[52,1]},{"name":"PFN_DrvSynchronizeRedirectionBitmaps","features":[52,1]},{"name":"PFN_DrvSynchronizeSurface","features":[52,1]},{"name":"PFN_DrvTextOut","features":[52,1]},{"name":"PFN_DrvTransparentBlt","features":[52,1]},{"name":"PFN_DrvUnloadFontFile","features":[52,1]},{"name":"PFN_DrvUnlockDisplayArea","features":[52,1]},{"name":"PFN_EngCombineRgn","features":[52,1]},{"name":"PFN_EngCopyRgn","features":[52,1]},{"name":"PFN_EngCreateRectRgn","features":[52,1]},{"name":"PFN_EngDeleteRgn","features":[52,1]},{"name":"PFN_EngIntersectRgn","features":[52,1]},{"name":"PFN_EngSubtractRgn","features":[52,1]},{"name":"PFN_EngUnionRgn","features":[52,1]},{"name":"PFN_EngXorRgn","features":[52,1]},{"name":"PHYSICAL_MONITOR","features":[52,1]},{"name":"PHYSICAL_MONITOR_DESCRIPTION_SIZE","features":[52]},{"name":"PLANAR_HC","features":[52]},{"name":"POINTE","features":[52]},{"name":"POINTE","features":[52]},{"name":"POINTFIX","features":[52]},{"name":"POINTQF","features":[52]},{"name":"PO_ALL_INTEGERS","features":[52]},{"name":"PO_BEZIERS","features":[52]},{"name":"PO_ELLIPSE","features":[52]},{"name":"PO_ENUM_AS_INTEGERS","features":[52]},{"name":"PO_WIDENED","features":[52]},{"name":"PPC_BGR_ORDER_HORIZONTAL_STRIPES","features":[52]},{"name":"PPC_BGR_ORDER_VERTICAL_STRIPES","features":[52]},{"name":"PPC_DEFAULT","features":[52]},{"name":"PPC_RGB_ORDER_HORIZONTAL_STRIPES","features":[52]},{"name":"PPC_RGB_ORDER_VERTICAL_STRIPES","features":[52]},{"name":"PPC_UNDEFINED","features":[52]},{"name":"PPG_DEFAULT","features":[52]},{"name":"PPG_SRGB","features":[52]},{"name":"PRIMARY_ORDER_ABC","features":[52]},{"name":"PRIMARY_ORDER_ACB","features":[52]},{"name":"PRIMARY_ORDER_BAC","features":[52]},{"name":"PRIMARY_ORDER_BCA","features":[52]},{"name":"PRIMARY_ORDER_CAB","features":[52]},{"name":"PRIMARY_ORDER_CBA","features":[52]},{"name":"PVIDEO_WIN32K_CALLOUT","features":[52]},{"name":"QAW_GETEASYWIDTHS","features":[52]},{"name":"QAW_GETWIDTHS","features":[52]},{"name":"QC_1BIT","features":[52]},{"name":"QC_4BIT","features":[52]},{"name":"QC_OUTLINES","features":[52]},{"name":"QDA_ACCELERATION_LEVEL","features":[52]},{"name":"QDA_RESERVED","features":[52]},{"name":"QDC_ALL_PATHS","features":[52]},{"name":"QDC_DATABASE_CURRENT","features":[52]},{"name":"QDC_INCLUDE_HMD","features":[52]},{"name":"QDC_ONLY_ACTIVE_PATHS","features":[52]},{"name":"QDC_VIRTUAL_MODE_AWARE","features":[52]},{"name":"QDC_VIRTUAL_REFRESH_RATE_AWARE","features":[52]},{"name":"QDS_CHECKJPEGFORMAT","features":[52]},{"name":"QDS_CHECKPNGFORMAT","features":[52]},{"name":"QFD_GLYPHANDBITMAP","features":[52]},{"name":"QFD_GLYPHANDOUTLINE","features":[52]},{"name":"QFD_MAXEXTENTS","features":[52]},{"name":"QFD_TT_GLYPHANDBITMAP","features":[52]},{"name":"QFD_TT_GRAY1_BITMAP","features":[52]},{"name":"QFD_TT_GRAY2_BITMAP","features":[52]},{"name":"QFD_TT_GRAY4_BITMAP","features":[52]},{"name":"QFD_TT_GRAY8_BITMAP","features":[52]},{"name":"QFD_TT_MONO_BITMAP","features":[52]},{"name":"QFF_DESCRIPTION","features":[52]},{"name":"QFF_NUMFACES","features":[52]},{"name":"QFT_GLYPHSET","features":[52]},{"name":"QFT_KERNPAIRS","features":[52]},{"name":"QFT_LIGATURES","features":[52]},{"name":"QSA_3DNOW","features":[52]},{"name":"QSA_MMX","features":[52]},{"name":"QSA_SSE","features":[52]},{"name":"QSA_SSE1","features":[52]},{"name":"QSA_SSE2","features":[52]},{"name":"QSA_SSE3","features":[52]},{"name":"QUERY_DISPLAY_CONFIG_FLAGS","features":[52]},{"name":"QueryDisplayConfig","features":[52,1]},{"name":"RB_DITHERCOLOR","features":[52]},{"name":"RECTFX","features":[52]},{"name":"RUN","features":[52]},{"name":"RestoreMonitorFactoryColorDefaults","features":[52,1]},{"name":"RestoreMonitorFactoryDefaults","features":[52,1]},{"name":"SDC_ALLOW_CHANGES","features":[52]},{"name":"SDC_ALLOW_PATH_ORDER_CHANGES","features":[52]},{"name":"SDC_APPLY","features":[52]},{"name":"SDC_FORCE_MODE_ENUMERATION","features":[52]},{"name":"SDC_NO_OPTIMIZATION","features":[52]},{"name":"SDC_PATH_PERSIST_IF_REQUIRED","features":[52]},{"name":"SDC_SAVE_TO_DATABASE","features":[52]},{"name":"SDC_TOPOLOGY_CLONE","features":[52]},{"name":"SDC_TOPOLOGY_EXTEND","features":[52]},{"name":"SDC_TOPOLOGY_EXTERNAL","features":[52]},{"name":"SDC_TOPOLOGY_INTERNAL","features":[52]},{"name":"SDC_TOPOLOGY_SUPPLIED","features":[52]},{"name":"SDC_USE_DATABASE_CURRENT","features":[52]},{"name":"SDC_USE_SUPPLIED_DISPLAY_CONFIG","features":[52]},{"name":"SDC_VALIDATE","features":[52]},{"name":"SDC_VIRTUAL_MODE_AWARE","features":[52]},{"name":"SDC_VIRTUAL_REFRESH_RATE_AWARE","features":[52]},{"name":"SETCONFIGURATION_STATUS_ADDITIONAL","features":[52]},{"name":"SETCONFIGURATION_STATUS_APPLIED","features":[52]},{"name":"SETCONFIGURATION_STATUS_OVERRIDDEN","features":[52]},{"name":"SET_ACTIVE_COLOR_PROFILE_NAME","features":[52]},{"name":"SET_DISPLAY_CONFIG_FLAGS","features":[52]},{"name":"SGI_EXTRASPACE","features":[52]},{"name":"SORTCOMP","features":[52]},{"name":"SO_BREAK_EXTRA","features":[52]},{"name":"SO_CHARACTER_EXTRA","features":[52]},{"name":"SO_CHAR_INC_EQUAL_BM_BASE","features":[52]},{"name":"SO_DO_NOT_SUBSTITUTE_DEVICE_FONT","features":[52]},{"name":"SO_DXDY","features":[52]},{"name":"SO_ESC_NOT_ORIENT","features":[52]},{"name":"SO_FLAG_DEFAULT_PLACEMENT","features":[52]},{"name":"SO_GLYPHINDEX_TEXTOUT","features":[52]},{"name":"SO_HORIZONTAL","features":[52]},{"name":"SO_MAXEXT_EQUAL_BM_SIDE","features":[52]},{"name":"SO_REVERSED","features":[52]},{"name":"SO_VERTICAL","features":[52]},{"name":"SO_ZERO_BEARINGS","features":[52]},{"name":"SPS_ACCEPT_EXCLUDE","features":[52]},{"name":"SPS_ACCEPT_NOEXCLUDE","features":[52]},{"name":"SPS_ACCEPT_SYNCHRONOUS","features":[52]},{"name":"SPS_ALPHA","features":[52]},{"name":"SPS_ANIMATESTART","features":[52]},{"name":"SPS_ANIMATEUPDATE","features":[52]},{"name":"SPS_ASYNCCHANGE","features":[52]},{"name":"SPS_CHANGE","features":[52]},{"name":"SPS_DECLINE","features":[52]},{"name":"SPS_ERROR","features":[52]},{"name":"SPS_FLAGSMASK","features":[52]},{"name":"SPS_FREQMASK","features":[52]},{"name":"SPS_LENGTHMASK","features":[52]},{"name":"SPS_RESERVED","features":[52]},{"name":"SPS_RESERVED1","features":[52]},{"name":"SS_FREE","features":[52]},{"name":"SS_RESTORE","features":[52]},{"name":"SS_SAVE","features":[52]},{"name":"STROBJ","features":[52,1]},{"name":"STROBJ_bEnum","features":[52,1]},{"name":"STROBJ_bEnumPositionsOnly","features":[52,1]},{"name":"STROBJ_bGetAdvanceWidths","features":[52,1]},{"name":"STROBJ_dwGetCodePage","features":[52,1]},{"name":"STROBJ_vEnumStart","features":[52,1]},{"name":"STYPE_BITMAP","features":[52]},{"name":"STYPE_DEVBITMAP","features":[52]},{"name":"SURFOBJ","features":[52,1]},{"name":"S_INIT","features":[52]},{"name":"SaveCurrentMonitorSettings","features":[52,1]},{"name":"SaveCurrentSettings","features":[52,1]},{"name":"SetDisplayAutoRotationPreferences","features":[52,1]},{"name":"SetDisplayConfig","features":[52,1]},{"name":"SetMonitorBrightness","features":[52,1]},{"name":"SetMonitorColorTemperature","features":[52,1]},{"name":"SetMonitorContrast","features":[52,1]},{"name":"SetMonitorDisplayAreaPosition","features":[52,1]},{"name":"SetMonitorDisplayAreaSize","features":[52,1]},{"name":"SetMonitorRedGreenOrBlueDrive","features":[52,1]},{"name":"SetMonitorRedGreenOrBlueGain","features":[52,1]},{"name":"SetVCPFeature","features":[52,1]},{"name":"Sources","features":[52]},{"name":"TC_PATHOBJ","features":[52]},{"name":"TC_RECTANGLES","features":[52]},{"name":"TTO_METRICS_ONLY","features":[52]},{"name":"TTO_QUBICS","features":[52]},{"name":"TTO_UNHINTED","features":[52]},{"name":"TYPE1_FONT","features":[52,1]},{"name":"VGA_CHAR","features":[52]},{"name":"VIDEOPARAMETERS","features":[52]},{"name":"VIDEO_BANK_SELECT","features":[52]},{"name":"VIDEO_BANK_TYPE","features":[52]},{"name":"VIDEO_BRIGHTNESS_POLICY","features":[52,1]},{"name":"VIDEO_CLUT","features":[52]},{"name":"VIDEO_CLUTDATA","features":[52]},{"name":"VIDEO_COLOR_CAPABILITIES","features":[52]},{"name":"VIDEO_COLOR_LUT_DATA","features":[52]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_PRIVATEFORMAT","features":[52]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_RGB256WORDS","features":[52]},{"name":"VIDEO_CURSOR_ATTRIBUTES","features":[52]},{"name":"VIDEO_CURSOR_POSITION","features":[52]},{"name":"VIDEO_DEVICE_COLOR","features":[52]},{"name":"VIDEO_DEVICE_NAME","features":[52]},{"name":"VIDEO_DEVICE_SESSION_STATUS","features":[52]},{"name":"VIDEO_DUALVIEW_PRIMARY","features":[52]},{"name":"VIDEO_DUALVIEW_REMOVABLE","features":[52]},{"name":"VIDEO_DUALVIEW_SECONDARY","features":[52]},{"name":"VIDEO_DUALVIEW_WDDM_VGA","features":[52]},{"name":"VIDEO_HARDWARE_STATE","features":[52]},{"name":"VIDEO_HARDWARE_STATE_HEADER","features":[52]},{"name":"VIDEO_LOAD_FONT_INFORMATION","features":[52]},{"name":"VIDEO_LUT_RGB256WORDS","features":[52]},{"name":"VIDEO_MAX_REASON","features":[52]},{"name":"VIDEO_MEMORY","features":[52]},{"name":"VIDEO_MEMORY_INFORMATION","features":[52]},{"name":"VIDEO_MODE","features":[52]},{"name":"VIDEO_MODE_ANIMATE_START","features":[52]},{"name":"VIDEO_MODE_ANIMATE_UPDATE","features":[52]},{"name":"VIDEO_MODE_ASYNC_POINTER","features":[52]},{"name":"VIDEO_MODE_BANKED","features":[52]},{"name":"VIDEO_MODE_COLOR","features":[52]},{"name":"VIDEO_MODE_COLOR_POINTER","features":[52]},{"name":"VIDEO_MODE_GRAPHICS","features":[52]},{"name":"VIDEO_MODE_INFORMATION","features":[52]},{"name":"VIDEO_MODE_INTERLACED","features":[52]},{"name":"VIDEO_MODE_LINEAR","features":[52]},{"name":"VIDEO_MODE_MANAGED_PALETTE","features":[52]},{"name":"VIDEO_MODE_MAP_MEM_LINEAR","features":[52]},{"name":"VIDEO_MODE_MONO_POINTER","features":[52]},{"name":"VIDEO_MODE_NO_64_BIT_ACCESS","features":[52]},{"name":"VIDEO_MODE_NO_OFF_SCREEN","features":[52]},{"name":"VIDEO_MODE_NO_ZERO_MEMORY","features":[52]},{"name":"VIDEO_MODE_PALETTE_DRIVEN","features":[52]},{"name":"VIDEO_MONITOR_DESCRIPTOR","features":[52]},{"name":"VIDEO_NUM_MODES","features":[52]},{"name":"VIDEO_OPTIONAL_GAMMET_TABLE","features":[52]},{"name":"VIDEO_PALETTE_DATA","features":[52]},{"name":"VIDEO_PERFORMANCE_COUNTER","features":[52]},{"name":"VIDEO_POINTER_ATTRIBUTES","features":[52]},{"name":"VIDEO_POINTER_CAPABILITIES","features":[52]},{"name":"VIDEO_POINTER_POSITION","features":[52]},{"name":"VIDEO_POWER_MANAGEMENT","features":[52]},{"name":"VIDEO_POWER_STATE","features":[52]},{"name":"VIDEO_PUBLIC_ACCESS_RANGES","features":[52]},{"name":"VIDEO_QUERY_PERFORMANCE_COUNTER","features":[52]},{"name":"VIDEO_REASON_ALLOCATION","features":[52]},{"name":"VIDEO_REASON_CONFIGURATION","features":[52]},{"name":"VIDEO_REASON_FAILED_ROTATION","features":[52]},{"name":"VIDEO_REASON_LOCK","features":[52]},{"name":"VIDEO_REASON_NONE","features":[52]},{"name":"VIDEO_REASON_POLICY1","features":[52]},{"name":"VIDEO_REASON_POLICY2","features":[52]},{"name":"VIDEO_REASON_POLICY3","features":[52]},{"name":"VIDEO_REASON_POLICY4","features":[52]},{"name":"VIDEO_REASON_SCRATCH","features":[52]},{"name":"VIDEO_REGISTER_VDM","features":[52]},{"name":"VIDEO_SHARE_MEMORY","features":[52,1]},{"name":"VIDEO_SHARE_MEMORY_INFORMATION","features":[52]},{"name":"VIDEO_STATE_NON_STANDARD_VGA","features":[52]},{"name":"VIDEO_STATE_PACKED_CHAIN4_MODE","features":[52]},{"name":"VIDEO_STATE_UNEMULATED_VGA_STATE","features":[52]},{"name":"VIDEO_VDM","features":[52,1]},{"name":"VIDEO_WIN32K_CALLBACKS","features":[52,1]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS","features":[52,1]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS_TYPE","features":[52]},{"name":"VideoBanked1R1W","features":[52]},{"name":"VideoBanked1RW","features":[52]},{"name":"VideoBanked2RW","features":[52]},{"name":"VideoBlackScreenDiagnostics","features":[52]},{"name":"VideoDesktopDuplicationChange","features":[52]},{"name":"VideoDisableMultiPlaneOverlay","features":[52]},{"name":"VideoDxgkDisplaySwitchCallout","features":[52]},{"name":"VideoDxgkFindAdapterTdrCallout","features":[52]},{"name":"VideoDxgkHardwareProtectionTeardown","features":[52]},{"name":"VideoEnumChildPdoNotifyCallout","features":[52]},{"name":"VideoFindAdapterCallout","features":[52]},{"name":"VideoNotBanked","features":[52]},{"name":"VideoPnpNotifyCallout","features":[52]},{"name":"VideoPowerHibernate","features":[52]},{"name":"VideoPowerMaximum","features":[52]},{"name":"VideoPowerNotifyCallout","features":[52]},{"name":"VideoPowerOff","features":[52]},{"name":"VideoPowerOn","features":[52]},{"name":"VideoPowerShutdown","features":[52]},{"name":"VideoPowerStandBy","features":[52]},{"name":"VideoPowerSuspend","features":[52]},{"name":"VideoPowerUnspecified","features":[52]},{"name":"VideoRepaintDesktop","features":[52]},{"name":"VideoUpdateCursor","features":[52]},{"name":"WCRUN","features":[52]},{"name":"WINDDI_MAXSETPALETTECOLORINDEX","features":[52]},{"name":"WINDDI_MAXSETPALETTECOLORS","features":[52]},{"name":"WINDDI_MAX_BROADCAST_CONTEXT","features":[52]},{"name":"WNDOBJ","features":[52,1]},{"name":"WNDOBJCHANGEPROC","features":[52,1]},{"name":"WNDOBJ_SETUP","features":[52]},{"name":"WOC_CHANGED","features":[52]},{"name":"WOC_DELETE","features":[52]},{"name":"WOC_DRAWN","features":[52]},{"name":"WOC_RGN_CLIENT","features":[52]},{"name":"WOC_RGN_CLIENT_DELTA","features":[52]},{"name":"WOC_RGN_SPRITE","features":[52]},{"name":"WOC_RGN_SURFACE","features":[52]},{"name":"WOC_RGN_SURFACE_DELTA","features":[52]},{"name":"WOC_SPRITE_NO_OVERLAP","features":[52]},{"name":"WOC_SPRITE_OVERLAP","features":[52]},{"name":"WO_DRAW_NOTIFY","features":[52]},{"name":"WO_RGN_CLIENT","features":[52]},{"name":"WO_RGN_CLIENT_DELTA","features":[52]},{"name":"WO_RGN_DESKTOP_COORD","features":[52]},{"name":"WO_RGN_SPRITE","features":[52]},{"name":"WO_RGN_SURFACE","features":[52]},{"name":"WO_RGN_SURFACE_DELTA","features":[52]},{"name":"WO_RGN_UPDATE_ALL","features":[52]},{"name":"WO_RGN_WINDOW","features":[52]},{"name":"WO_SPRITE_NOTIFY","features":[52]},{"name":"WVIDEO_DEVICE_NAME","features":[52]},{"name":"XFORML","features":[52]},{"name":"XFORML","features":[52]},{"name":"XFORMOBJ","features":[52]},{"name":"XFORMOBJ_bApplyXform","features":[52,1]},{"name":"XFORMOBJ_iGetXform","features":[52]},{"name":"XF_INV_FXTOL","features":[52]},{"name":"XF_INV_LTOL","features":[52]},{"name":"XF_LTOFX","features":[52]},{"name":"XF_LTOL","features":[52]},{"name":"XLATEOBJ","features":[52]},{"name":"XLATEOBJ_cGetPalette","features":[52]},{"name":"XLATEOBJ_hGetColorTransform","features":[52,1]},{"name":"XLATEOBJ_iXlate","features":[52]},{"name":"XLATEOBJ_piVector","features":[52]},{"name":"XO_DESTBITFIELDS","features":[52]},{"name":"XO_DESTDCPALETTE","features":[52]},{"name":"XO_DESTPALETTE","features":[52]},{"name":"XO_DEVICE_ICM","features":[52]},{"name":"XO_FROM_CMYK","features":[52]},{"name":"XO_HOST_ICM","features":[52]},{"name":"XO_SRCBITFIELDS","features":[52]},{"name":"XO_SRCPALETTE","features":[52]},{"name":"XO_TABLE","features":[52]},{"name":"XO_TO_MONO","features":[52]},{"name":"XO_TRIVIAL","features":[52]}],"375":[{"name":"ADDRESS_FAMILY_VALUE_NAME","features":[56]},{"name":"FAULT_ACTION_SPECIFIC_BASE","features":[56]},{"name":"FAULT_ACTION_SPECIFIC_MAX","features":[56]},{"name":"FAULT_DEVICE_INTERNAL_ERROR","features":[56]},{"name":"FAULT_INVALID_ACTION","features":[56]},{"name":"FAULT_INVALID_ARG","features":[56]},{"name":"FAULT_INVALID_SEQUENCE_NUMBER","features":[56]},{"name":"FAULT_INVALID_VARIABLE","features":[56]},{"name":"HSWDEVICE","features":[56]},{"name":"IUPnPAddressFamilyControl","features":[56]},{"name":"IUPnPAsyncResult","features":[56]},{"name":"IUPnPDescriptionDocument","features":[56]},{"name":"IUPnPDescriptionDocumentCallback","features":[56]},{"name":"IUPnPDevice","features":[56]},{"name":"IUPnPDeviceControl","features":[56]},{"name":"IUPnPDeviceControlHttpHeaders","features":[56]},{"name":"IUPnPDeviceDocumentAccess","features":[56]},{"name":"IUPnPDeviceDocumentAccessEx","features":[56]},{"name":"IUPnPDeviceFinder","features":[56]},{"name":"IUPnPDeviceFinderAddCallbackWithInterface","features":[56]},{"name":"IUPnPDeviceFinderCallback","features":[56]},{"name":"IUPnPDeviceProvider","features":[56]},{"name":"IUPnPDevices","features":[56]},{"name":"IUPnPEventSink","features":[56]},{"name":"IUPnPEventSource","features":[56]},{"name":"IUPnPHttpHeaderControl","features":[56]},{"name":"IUPnPRegistrar","features":[56]},{"name":"IUPnPRemoteEndpointInfo","features":[56]},{"name":"IUPnPReregistrar","features":[56]},{"name":"IUPnPService","features":[56]},{"name":"IUPnPServiceAsync","features":[56]},{"name":"IUPnPServiceCallback","features":[56]},{"name":"IUPnPServiceDocumentAccess","features":[56]},{"name":"IUPnPServiceEnumProperty","features":[56]},{"name":"IUPnPServices","features":[56]},{"name":"REMOTE_ADDRESS_VALUE_NAME","features":[56]},{"name":"SWDeviceCapabilitiesDriverRequired","features":[56]},{"name":"SWDeviceCapabilitiesNoDisplayInUI","features":[56]},{"name":"SWDeviceCapabilitiesNone","features":[56]},{"name":"SWDeviceCapabilitiesRemovable","features":[56]},{"name":"SWDeviceCapabilitiesSilentInstall","features":[56]},{"name":"SWDeviceLifetimeHandle","features":[56]},{"name":"SWDeviceLifetimeMax","features":[56]},{"name":"SWDeviceLifetimeParentPresent","features":[56]},{"name":"SW_DEVICE_CAPABILITIES","features":[56]},{"name":"SW_DEVICE_CREATE_CALLBACK","features":[56]},{"name":"SW_DEVICE_CREATE_INFO","features":[56,1,4]},{"name":"SW_DEVICE_LIFETIME","features":[56]},{"name":"SwDeviceClose","features":[56]},{"name":"SwDeviceCreate","features":[56,35,1,4]},{"name":"SwDeviceGetLifetime","features":[56]},{"name":"SwDeviceInterfacePropertySet","features":[56,35]},{"name":"SwDeviceInterfaceRegister","features":[56,35,1]},{"name":"SwDeviceInterfaceSetState","features":[56,1]},{"name":"SwDevicePropertySet","features":[56,35]},{"name":"SwDeviceSetLifetime","features":[56]},{"name":"SwMemFree","features":[56]},{"name":"UPNP_ADDRESSFAMILY_BOTH","features":[56]},{"name":"UPNP_ADDRESSFAMILY_IPv4","features":[56]},{"name":"UPNP_ADDRESSFAMILY_IPv6","features":[56]},{"name":"UPNP_E_ACTION_REQUEST_FAILED","features":[56]},{"name":"UPNP_E_ACTION_SPECIFIC_BASE","features":[56]},{"name":"UPNP_E_DEVICE_ELEMENT_EXPECTED","features":[56]},{"name":"UPNP_E_DEVICE_ERROR","features":[56]},{"name":"UPNP_E_DEVICE_NODE_INCOMPLETE","features":[56]},{"name":"UPNP_E_DEVICE_NOTREGISTERED","features":[56]},{"name":"UPNP_E_DEVICE_RUNNING","features":[56]},{"name":"UPNP_E_DEVICE_TIMEOUT","features":[56]},{"name":"UPNP_E_DUPLICATE_NOT_ALLOWED","features":[56]},{"name":"UPNP_E_DUPLICATE_SERVICE_ID","features":[56]},{"name":"UPNP_E_ERROR_PROCESSING_RESPONSE","features":[56]},{"name":"UPNP_E_EVENT_SUBSCRIPTION_FAILED","features":[56]},{"name":"UPNP_E_ICON_ELEMENT_EXPECTED","features":[56]},{"name":"UPNP_E_ICON_NODE_INCOMPLETE","features":[56]},{"name":"UPNP_E_INVALID_ACTION","features":[56]},{"name":"UPNP_E_INVALID_ARGUMENTS","features":[56]},{"name":"UPNP_E_INVALID_DESCRIPTION","features":[56]},{"name":"UPNP_E_INVALID_DOCUMENT","features":[56]},{"name":"UPNP_E_INVALID_ICON","features":[56]},{"name":"UPNP_E_INVALID_ROOT_NAMESPACE","features":[56]},{"name":"UPNP_E_INVALID_SERVICE","features":[56]},{"name":"UPNP_E_INVALID_VARIABLE","features":[56]},{"name":"UPNP_E_INVALID_XML","features":[56]},{"name":"UPNP_E_OUT_OF_SYNC","features":[56]},{"name":"UPNP_E_PROTOCOL_ERROR","features":[56]},{"name":"UPNP_E_REQUIRED_ELEMENT_ERROR","features":[56]},{"name":"UPNP_E_ROOT_ELEMENT_EXPECTED","features":[56]},{"name":"UPNP_E_SERVICE_ELEMENT_EXPECTED","features":[56]},{"name":"UPNP_E_SERVICE_NODE_INCOMPLETE","features":[56]},{"name":"UPNP_E_SUFFIX_TOO_LONG","features":[56]},{"name":"UPNP_E_TRANSPORT_ERROR","features":[56]},{"name":"UPNP_E_URLBASE_PRESENT","features":[56]},{"name":"UPNP_E_VALUE_TOO_LONG","features":[56]},{"name":"UPNP_E_VARIABLE_VALUE_UNKNOWN","features":[56]},{"name":"UPNP_SERVICE_DELAY_SCPD_AND_SUBSCRIPTION","features":[56]},{"name":"UPnPDescriptionDocument","features":[56]},{"name":"UPnPDescriptionDocumentEx","features":[56]},{"name":"UPnPDevice","features":[56]},{"name":"UPnPDeviceFinder","features":[56]},{"name":"UPnPDeviceFinderEx","features":[56]},{"name":"UPnPDevices","features":[56]},{"name":"UPnPRegistrar","features":[56]},{"name":"UPnPRemoteEndpointInfo","features":[56]},{"name":"UPnPService","features":[56]},{"name":"UPnPServices","features":[56]}],"376":[{"name":"CF_MSFAXSRV_DEVICE_ID","features":[57]},{"name":"CF_MSFAXSRV_FSP_GUID","features":[57]},{"name":"CF_MSFAXSRV_ROUTEEXT_NAME","features":[57]},{"name":"CF_MSFAXSRV_ROUTING_METHOD_GUID","features":[57]},{"name":"CF_MSFAXSRV_SERVER_NAME","features":[57]},{"name":"CLSID_Sti","features":[57]},{"name":"CanSendToFaxRecipient","features":[57,1]},{"name":"DEVPKEY_WIA_DeviceType","features":[57,35]},{"name":"DEVPKEY_WIA_USDClassId","features":[57,35]},{"name":"DEV_ID_SRC_FAX","features":[57]},{"name":"DEV_ID_SRC_TAPI","features":[57]},{"name":"DRT_EMAIL","features":[57]},{"name":"DRT_INBOX","features":[57]},{"name":"DRT_NONE","features":[57]},{"name":"FAXDEVRECEIVE_SIZE","features":[57]},{"name":"FAXDEVREPORTSTATUS_SIZE","features":[57]},{"name":"FAXLOG_CATEGORY_INBOUND","features":[57]},{"name":"FAXLOG_CATEGORY_INIT","features":[57]},{"name":"FAXLOG_CATEGORY_OUTBOUND","features":[57]},{"name":"FAXLOG_CATEGORY_UNKNOWN","features":[57]},{"name":"FAXLOG_LEVEL_MAX","features":[57]},{"name":"FAXLOG_LEVEL_MED","features":[57]},{"name":"FAXLOG_LEVEL_MIN","features":[57]},{"name":"FAXLOG_LEVEL_NONE","features":[57]},{"name":"FAXROUTE_ENABLE","features":[57]},{"name":"FAXSRV_DEVICE_NODETYPE_GUID","features":[57]},{"name":"FAXSRV_DEVICE_PROVIDER_NODETYPE_GUID","features":[57]},{"name":"FAXSRV_ROUTING_METHOD_NODETYPE_GUID","features":[57]},{"name":"FAX_ACCESS_RIGHTS_ENUM","features":[57]},{"name":"FAX_ACCESS_RIGHTS_ENUM_2","features":[57]},{"name":"FAX_ACCOUNT_EVENTS_TYPE_ENUM","features":[57]},{"name":"FAX_CONFIGURATIONA","features":[57,1]},{"name":"FAX_CONFIGURATIONW","features":[57,1]},{"name":"FAX_CONFIG_QUERY","features":[57]},{"name":"FAX_CONFIG_SET","features":[57]},{"name":"FAX_CONTEXT_INFOA","features":[57,12]},{"name":"FAX_CONTEXT_INFOW","features":[57,12]},{"name":"FAX_COVERPAGE_INFOA","features":[57,1]},{"name":"FAX_COVERPAGE_INFOW","features":[57,1]},{"name":"FAX_COVERPAGE_TYPE_ENUM","features":[57]},{"name":"FAX_DEVICE_RECEIVE_MODE_ENUM","features":[57]},{"name":"FAX_DEVICE_STATUSA","features":[57,1]},{"name":"FAX_DEVICE_STATUSW","features":[57,1]},{"name":"FAX_DEV_STATUS","features":[57]},{"name":"FAX_ENUM_DELIVERY_REPORT_TYPES","features":[57]},{"name":"FAX_ENUM_DEVICE_ID_SOURCE","features":[57]},{"name":"FAX_ENUM_JOB_COMMANDS","features":[57]},{"name":"FAX_ENUM_JOB_SEND_ATTRIBUTES","features":[57]},{"name":"FAX_ENUM_LOG_CATEGORIES","features":[57]},{"name":"FAX_ENUM_LOG_LEVELS","features":[57]},{"name":"FAX_ENUM_PORT_OPEN_TYPE","features":[57]},{"name":"FAX_ERR_BAD_GROUP_CONFIGURATION","features":[57]},{"name":"FAX_ERR_DEVICE_NUM_LIMIT_EXCEEDED","features":[57]},{"name":"FAX_ERR_DIRECTORY_IN_USE","features":[57]},{"name":"FAX_ERR_END","features":[57]},{"name":"FAX_ERR_FILE_ACCESS_DENIED","features":[57]},{"name":"FAX_ERR_GROUP_IN_USE","features":[57]},{"name":"FAX_ERR_GROUP_NOT_FOUND","features":[57]},{"name":"FAX_ERR_MESSAGE_NOT_FOUND","features":[57]},{"name":"FAX_ERR_NOT_NTFS","features":[57]},{"name":"FAX_ERR_NOT_SUPPORTED_ON_THIS_SKU","features":[57]},{"name":"FAX_ERR_RECIPIENTS_LIMIT","features":[57]},{"name":"FAX_ERR_RULE_NOT_FOUND","features":[57]},{"name":"FAX_ERR_SRV_OUTOFMEMORY","features":[57]},{"name":"FAX_ERR_START","features":[57]},{"name":"FAX_ERR_VERSION_MISMATCH","features":[57]},{"name":"FAX_EVENTA","features":[57,1]},{"name":"FAX_EVENTW","features":[57,1]},{"name":"FAX_E_BAD_GROUP_CONFIGURATION","features":[57]},{"name":"FAX_E_DEVICE_NUM_LIMIT_EXCEEDED","features":[57]},{"name":"FAX_E_DIRECTORY_IN_USE","features":[57]},{"name":"FAX_E_FILE_ACCESS_DENIED","features":[57]},{"name":"FAX_E_GROUP_IN_USE","features":[57]},{"name":"FAX_E_GROUP_NOT_FOUND","features":[57]},{"name":"FAX_E_MESSAGE_NOT_FOUND","features":[57]},{"name":"FAX_E_NOT_NTFS","features":[57]},{"name":"FAX_E_NOT_SUPPORTED_ON_THIS_SKU","features":[57]},{"name":"FAX_E_RECIPIENTS_LIMIT","features":[57]},{"name":"FAX_E_RULE_NOT_FOUND","features":[57]},{"name":"FAX_E_SRV_OUTOFMEMORY","features":[57]},{"name":"FAX_E_VERSION_MISMATCH","features":[57]},{"name":"FAX_GLOBAL_ROUTING_INFOA","features":[57]},{"name":"FAX_GLOBAL_ROUTING_INFOW","features":[57]},{"name":"FAX_GROUP_STATUS_ENUM","features":[57]},{"name":"FAX_JOB_ENTRYA","features":[57,1]},{"name":"FAX_JOB_ENTRYW","features":[57,1]},{"name":"FAX_JOB_EXTENDED_STATUS_ENUM","features":[57]},{"name":"FAX_JOB_MANAGE","features":[57]},{"name":"FAX_JOB_OPERATIONS_ENUM","features":[57]},{"name":"FAX_JOB_PARAMA","features":[57,1]},{"name":"FAX_JOB_PARAMW","features":[57,1]},{"name":"FAX_JOB_QUERY","features":[57]},{"name":"FAX_JOB_STATUS_ENUM","features":[57]},{"name":"FAX_JOB_SUBMIT","features":[57]},{"name":"FAX_JOB_TYPE_ENUM","features":[57]},{"name":"FAX_LOG_CATEGORYA","features":[57]},{"name":"FAX_LOG_CATEGORYW","features":[57]},{"name":"FAX_LOG_LEVEL_ENUM","features":[57]},{"name":"FAX_PORT_INFOA","features":[57]},{"name":"FAX_PORT_INFOW","features":[57]},{"name":"FAX_PORT_QUERY","features":[57]},{"name":"FAX_PORT_SET","features":[57]},{"name":"FAX_PRINT_INFOA","features":[57]},{"name":"FAX_PRINT_INFOW","features":[57]},{"name":"FAX_PRIORITY_TYPE_ENUM","features":[57]},{"name":"FAX_PROVIDER_STATUS_ENUM","features":[57]},{"name":"FAX_RECEIPT_TYPE_ENUM","features":[57]},{"name":"FAX_RECEIVE","features":[57]},{"name":"FAX_ROUTE","features":[57]},{"name":"FAX_ROUTE_CALLBACKROUTINES","features":[57,1]},{"name":"FAX_ROUTING_METHODA","features":[57,1]},{"name":"FAX_ROUTING_METHODW","features":[57,1]},{"name":"FAX_ROUTING_RULE_CODE_ENUM","features":[57]},{"name":"FAX_RULE_STATUS_ENUM","features":[57]},{"name":"FAX_SCHEDULE_TYPE_ENUM","features":[57]},{"name":"FAX_SEND","features":[57,1]},{"name":"FAX_SERVER_APIVERSION_ENUM","features":[57]},{"name":"FAX_SERVER_EVENTS_TYPE_ENUM","features":[57]},{"name":"FAX_SMTP_AUTHENTICATION_TYPE_ENUM","features":[57]},{"name":"FAX_TIME","features":[57]},{"name":"FEI_ABORTING","features":[57]},{"name":"FEI_ANSWERED","features":[57]},{"name":"FEI_BAD_ADDRESS","features":[57]},{"name":"FEI_BUSY","features":[57]},{"name":"FEI_CALL_BLACKLISTED","features":[57]},{"name":"FEI_CALL_DELAYED","features":[57]},{"name":"FEI_COMPLETED","features":[57]},{"name":"FEI_DELETED","features":[57]},{"name":"FEI_DIALING","features":[57]},{"name":"FEI_DISCONNECTED","features":[57]},{"name":"FEI_FATAL_ERROR","features":[57]},{"name":"FEI_FAXSVC_ENDED","features":[57]},{"name":"FEI_FAXSVC_STARTED","features":[57]},{"name":"FEI_HANDLED","features":[57]},{"name":"FEI_IDLE","features":[57]},{"name":"FEI_INITIALIZING","features":[57]},{"name":"FEI_JOB_QUEUED","features":[57]},{"name":"FEI_LINE_UNAVAILABLE","features":[57]},{"name":"FEI_MODEM_POWERED_OFF","features":[57]},{"name":"FEI_MODEM_POWERED_ON","features":[57]},{"name":"FEI_NEVENTS","features":[57]},{"name":"FEI_NOT_FAX_CALL","features":[57]},{"name":"FEI_NO_ANSWER","features":[57]},{"name":"FEI_NO_DIAL_TONE","features":[57]},{"name":"FEI_RECEIVING","features":[57]},{"name":"FEI_RINGING","features":[57]},{"name":"FEI_ROUTING","features":[57]},{"name":"FEI_SENDING","features":[57]},{"name":"FPF_RECEIVE","features":[57]},{"name":"FPF_SEND","features":[57]},{"name":"FPF_VIRTUAL","features":[57]},{"name":"FPS_ABORTING","features":[57]},{"name":"FPS_ANSWERED","features":[57]},{"name":"FPS_AVAILABLE","features":[57]},{"name":"FPS_BAD_ADDRESS","features":[57]},{"name":"FPS_BUSY","features":[57]},{"name":"FPS_CALL_BLACKLISTED","features":[57]},{"name":"FPS_CALL_DELAYED","features":[57]},{"name":"FPS_COMPLETED","features":[57]},{"name":"FPS_DIALING","features":[57]},{"name":"FPS_DISCONNECTED","features":[57]},{"name":"FPS_FATAL_ERROR","features":[57]},{"name":"FPS_HANDLED","features":[57]},{"name":"FPS_INITIALIZING","features":[57]},{"name":"FPS_NOT_FAX_CALL","features":[57]},{"name":"FPS_NO_ANSWER","features":[57]},{"name":"FPS_NO_DIAL_TONE","features":[57]},{"name":"FPS_OFFLINE","features":[57]},{"name":"FPS_RECEIVING","features":[57]},{"name":"FPS_RINGING","features":[57]},{"name":"FPS_ROUTING","features":[57]},{"name":"FPS_SENDING","features":[57]},{"name":"FPS_UNAVAILABLE","features":[57]},{"name":"FS_ANSWERED","features":[57]},{"name":"FS_BAD_ADDRESS","features":[57]},{"name":"FS_BUSY","features":[57]},{"name":"FS_CALL_BLACKLISTED","features":[57]},{"name":"FS_CALL_DELAYED","features":[57]},{"name":"FS_COMPLETED","features":[57]},{"name":"FS_DIALING","features":[57]},{"name":"FS_DISCONNECTED","features":[57]},{"name":"FS_FATAL_ERROR","features":[57]},{"name":"FS_HANDLED","features":[57]},{"name":"FS_INITIALIZING","features":[57]},{"name":"FS_LINE_UNAVAILABLE","features":[57]},{"name":"FS_NOT_FAX_CALL","features":[57]},{"name":"FS_NO_ANSWER","features":[57]},{"name":"FS_NO_DIAL_TONE","features":[57]},{"name":"FS_RECEIVING","features":[57]},{"name":"FS_TRANSMITTING","features":[57]},{"name":"FS_USER_ABORT","features":[57]},{"name":"FaxAbort","features":[57,1]},{"name":"FaxAccessCheck","features":[57,1]},{"name":"FaxAccount","features":[57]},{"name":"FaxAccountFolders","features":[57]},{"name":"FaxAccountIncomingArchive","features":[57]},{"name":"FaxAccountIncomingQueue","features":[57]},{"name":"FaxAccountOutgoingArchive","features":[57]},{"name":"FaxAccountOutgoingQueue","features":[57]},{"name":"FaxAccountSet","features":[57]},{"name":"FaxAccounts","features":[57]},{"name":"FaxActivity","features":[57]},{"name":"FaxActivityLogging","features":[57]},{"name":"FaxClose","features":[57,1]},{"name":"FaxCompleteJobParamsA","features":[57,1]},{"name":"FaxCompleteJobParamsW","features":[57,1]},{"name":"FaxConfiguration","features":[57]},{"name":"FaxConnectFaxServerA","features":[57,1]},{"name":"FaxConnectFaxServerW","features":[57,1]},{"name":"FaxDevice","features":[57]},{"name":"FaxDeviceIds","features":[57]},{"name":"FaxDeviceProvider","features":[57]},{"name":"FaxDeviceProviders","features":[57]},{"name":"FaxDevices","features":[57]},{"name":"FaxDocument","features":[57]},{"name":"FaxEnableRoutingMethodA","features":[57,1]},{"name":"FaxEnableRoutingMethodW","features":[57,1]},{"name":"FaxEnumGlobalRoutingInfoA","features":[57,1]},{"name":"FaxEnumGlobalRoutingInfoW","features":[57,1]},{"name":"FaxEnumJobsA","features":[57,1]},{"name":"FaxEnumJobsW","features":[57,1]},{"name":"FaxEnumPortsA","features":[57,1]},{"name":"FaxEnumPortsW","features":[57,1]},{"name":"FaxEnumRoutingMethodsA","features":[57,1]},{"name":"FaxEnumRoutingMethodsW","features":[57,1]},{"name":"FaxEventLogging","features":[57]},{"name":"FaxFolders","features":[57]},{"name":"FaxFreeBuffer","features":[57]},{"name":"FaxGetConfigurationA","features":[57,1]},{"name":"FaxGetConfigurationW","features":[57,1]},{"name":"FaxGetDeviceStatusA","features":[57,1]},{"name":"FaxGetDeviceStatusW","features":[57,1]},{"name":"FaxGetJobA","features":[57,1]},{"name":"FaxGetJobW","features":[57,1]},{"name":"FaxGetLoggingCategoriesA","features":[57,1]},{"name":"FaxGetLoggingCategoriesW","features":[57,1]},{"name":"FaxGetPageData","features":[57,1]},{"name":"FaxGetPortA","features":[57,1]},{"name":"FaxGetPortW","features":[57,1]},{"name":"FaxGetRoutingInfoA","features":[57,1]},{"name":"FaxGetRoutingInfoW","features":[57,1]},{"name":"FaxInboundRouting","features":[57]},{"name":"FaxInboundRoutingExtension","features":[57]},{"name":"FaxInboundRoutingExtensions","features":[57]},{"name":"FaxInboundRoutingMethod","features":[57]},{"name":"FaxInboundRoutingMethods","features":[57]},{"name":"FaxIncomingArchive","features":[57]},{"name":"FaxIncomingJob","features":[57]},{"name":"FaxIncomingJobs","features":[57]},{"name":"FaxIncomingMessage","features":[57]},{"name":"FaxIncomingMessageIterator","features":[57]},{"name":"FaxIncomingQueue","features":[57]},{"name":"FaxInitializeEventQueue","features":[57,1]},{"name":"FaxJobStatus","features":[57]},{"name":"FaxLoggingOptions","features":[57]},{"name":"FaxOpenPort","features":[57,1]},{"name":"FaxOutboundRouting","features":[57]},{"name":"FaxOutboundRoutingGroup","features":[57]},{"name":"FaxOutboundRoutingGroups","features":[57]},{"name":"FaxOutboundRoutingRule","features":[57]},{"name":"FaxOutboundRoutingRules","features":[57]},{"name":"FaxOutgoingArchive","features":[57]},{"name":"FaxOutgoingJob","features":[57]},{"name":"FaxOutgoingJobs","features":[57]},{"name":"FaxOutgoingMessage","features":[57]},{"name":"FaxOutgoingMessageIterator","features":[57]},{"name":"FaxOutgoingQueue","features":[57]},{"name":"FaxPrintCoverPageA","features":[57,1,12]},{"name":"FaxPrintCoverPageW","features":[57,1,12]},{"name":"FaxReceiptOptions","features":[57]},{"name":"FaxRecipient","features":[57]},{"name":"FaxRecipients","features":[57]},{"name":"FaxRegisterRoutingExtensionW","features":[57,1]},{"name":"FaxRegisterServiceProviderW","features":[57,1]},{"name":"FaxSecurity","features":[57]},{"name":"FaxSecurity2","features":[57]},{"name":"FaxSendDocumentA","features":[57,1]},{"name":"FaxSendDocumentForBroadcastA","features":[57,1]},{"name":"FaxSendDocumentForBroadcastW","features":[57,1]},{"name":"FaxSendDocumentW","features":[57,1]},{"name":"FaxSender","features":[57]},{"name":"FaxServer","features":[57]},{"name":"FaxSetConfigurationA","features":[57,1]},{"name":"FaxSetConfigurationW","features":[57,1]},{"name":"FaxSetGlobalRoutingInfoA","features":[57,1]},{"name":"FaxSetGlobalRoutingInfoW","features":[57,1]},{"name":"FaxSetJobA","features":[57,1]},{"name":"FaxSetJobW","features":[57,1]},{"name":"FaxSetLoggingCategoriesA","features":[57,1]},{"name":"FaxSetLoggingCategoriesW","features":[57,1]},{"name":"FaxSetPortA","features":[57,1]},{"name":"FaxSetPortW","features":[57,1]},{"name":"FaxSetRoutingInfoA","features":[57,1]},{"name":"FaxSetRoutingInfoW","features":[57,1]},{"name":"FaxStartPrintJobA","features":[57,1,12]},{"name":"FaxStartPrintJobW","features":[57,1,12]},{"name":"FaxUnregisterServiceProviderW","features":[57,1]},{"name":"GUID_DeviceArrivedLaunch","features":[57]},{"name":"GUID_STIUserDefined1","features":[57]},{"name":"GUID_STIUserDefined2","features":[57]},{"name":"GUID_STIUserDefined3","features":[57]},{"name":"GUID_ScanFaxImage","features":[57]},{"name":"GUID_ScanImage","features":[57]},{"name":"GUID_ScanPrintImage","features":[57]},{"name":"IFaxAccount","features":[57]},{"name":"IFaxAccountFolders","features":[57]},{"name":"IFaxAccountIncomingArchive","features":[57]},{"name":"IFaxAccountIncomingQueue","features":[57]},{"name":"IFaxAccountNotify","features":[57]},{"name":"IFaxAccountOutgoingArchive","features":[57]},{"name":"IFaxAccountOutgoingQueue","features":[57]},{"name":"IFaxAccountSet","features":[57]},{"name":"IFaxAccounts","features":[57]},{"name":"IFaxActivity","features":[57]},{"name":"IFaxActivityLogging","features":[57]},{"name":"IFaxConfiguration","features":[57]},{"name":"IFaxDevice","features":[57]},{"name":"IFaxDeviceIds","features":[57]},{"name":"IFaxDeviceProvider","features":[57]},{"name":"IFaxDeviceProviders","features":[57]},{"name":"IFaxDevices","features":[57]},{"name":"IFaxDocument","features":[57]},{"name":"IFaxDocument2","features":[57]},{"name":"IFaxEventLogging","features":[57]},{"name":"IFaxFolders","features":[57]},{"name":"IFaxInboundRouting","features":[57]},{"name":"IFaxInboundRoutingExtension","features":[57]},{"name":"IFaxInboundRoutingExtensions","features":[57]},{"name":"IFaxInboundRoutingMethod","features":[57]},{"name":"IFaxInboundRoutingMethods","features":[57]},{"name":"IFaxIncomingArchive","features":[57]},{"name":"IFaxIncomingJob","features":[57]},{"name":"IFaxIncomingJobs","features":[57]},{"name":"IFaxIncomingMessage","features":[57]},{"name":"IFaxIncomingMessage2","features":[57]},{"name":"IFaxIncomingMessageIterator","features":[57]},{"name":"IFaxIncomingQueue","features":[57]},{"name":"IFaxJobStatus","features":[57]},{"name":"IFaxLoggingOptions","features":[57]},{"name":"IFaxOutboundRouting","features":[57]},{"name":"IFaxOutboundRoutingGroup","features":[57]},{"name":"IFaxOutboundRoutingGroups","features":[57]},{"name":"IFaxOutboundRoutingRule","features":[57]},{"name":"IFaxOutboundRoutingRules","features":[57]},{"name":"IFaxOutgoingArchive","features":[57]},{"name":"IFaxOutgoingJob","features":[57]},{"name":"IFaxOutgoingJob2","features":[57]},{"name":"IFaxOutgoingJobs","features":[57]},{"name":"IFaxOutgoingMessage","features":[57]},{"name":"IFaxOutgoingMessage2","features":[57]},{"name":"IFaxOutgoingMessageIterator","features":[57]},{"name":"IFaxOutgoingQueue","features":[57]},{"name":"IFaxReceiptOptions","features":[57]},{"name":"IFaxRecipient","features":[57]},{"name":"IFaxRecipients","features":[57]},{"name":"IFaxSecurity","features":[57]},{"name":"IFaxSecurity2","features":[57]},{"name":"IFaxSender","features":[57]},{"name":"IFaxServer","features":[57]},{"name":"IFaxServer2","features":[57]},{"name":"IFaxServerNotify","features":[57]},{"name":"IFaxServerNotify2","features":[57]},{"name":"IS_DIGITAL_CAMERA_STR","features":[57]},{"name":"IS_DIGITAL_CAMERA_VAL","features":[57]},{"name":"IStiDevice","features":[57]},{"name":"IStiDeviceControl","features":[57]},{"name":"IStiUSD","features":[57]},{"name":"IStillImageW","features":[57]},{"name":"JC_DELETE","features":[57]},{"name":"JC_PAUSE","features":[57]},{"name":"JC_RESUME","features":[57]},{"name":"JC_UNKNOWN","features":[57]},{"name":"JSA_DISCOUNT_PERIOD","features":[57]},{"name":"JSA_NOW","features":[57]},{"name":"JSA_SPECIFIC_TIME","features":[57]},{"name":"JS_DELETING","features":[57]},{"name":"JS_FAILED","features":[57]},{"name":"JS_INPROGRESS","features":[57]},{"name":"JS_NOLINE","features":[57]},{"name":"JS_PAUSED","features":[57]},{"name":"JS_PENDING","features":[57]},{"name":"JS_RETRIES_EXCEEDED","features":[57]},{"name":"JS_RETRYING","features":[57]},{"name":"JT_FAIL_RECEIVE","features":[57]},{"name":"JT_RECEIVE","features":[57]},{"name":"JT_ROUTING","features":[57]},{"name":"JT_SEND","features":[57]},{"name":"JT_UNKNOWN","features":[57]},{"name":"MAX_NOTIFICATION_DATA","features":[57]},{"name":"MS_FAXROUTE_EMAIL_GUID","features":[57]},{"name":"MS_FAXROUTE_FOLDER_GUID","features":[57]},{"name":"MS_FAXROUTE_PRINTING_GUID","features":[57]},{"name":"PFAXABORT","features":[57,1]},{"name":"PFAXACCESSCHECK","features":[57,1]},{"name":"PFAXCLOSE","features":[57,1]},{"name":"PFAXCOMPLETEJOBPARAMSA","features":[57,1]},{"name":"PFAXCOMPLETEJOBPARAMSW","features":[57,1]},{"name":"PFAXCONNECTFAXSERVERA","features":[57,1]},{"name":"PFAXCONNECTFAXSERVERW","features":[57,1]},{"name":"PFAXDEVABORTOPERATION","features":[57,1]},{"name":"PFAXDEVCONFIGURE","features":[57,1,40]},{"name":"PFAXDEVENDJOB","features":[57,1]},{"name":"PFAXDEVINITIALIZE","features":[57,1]},{"name":"PFAXDEVRECEIVE","features":[57,1]},{"name":"PFAXDEVREPORTSTATUS","features":[57,1]},{"name":"PFAXDEVSEND","features":[57,1]},{"name":"PFAXDEVSHUTDOWN","features":[57]},{"name":"PFAXDEVSTARTJOB","features":[57,1]},{"name":"PFAXDEVVIRTUALDEVICECREATION","features":[57,1]},{"name":"PFAXENABLEROUTINGMETHODA","features":[57,1]},{"name":"PFAXENABLEROUTINGMETHODW","features":[57,1]},{"name":"PFAXENUMGLOBALROUTINGINFOA","features":[57,1]},{"name":"PFAXENUMGLOBALROUTINGINFOW","features":[57,1]},{"name":"PFAXENUMJOBSA","features":[57,1]},{"name":"PFAXENUMJOBSW","features":[57,1]},{"name":"PFAXENUMPORTSA","features":[57,1]},{"name":"PFAXENUMPORTSW","features":[57,1]},{"name":"PFAXENUMROUTINGMETHODSA","features":[57,1]},{"name":"PFAXENUMROUTINGMETHODSW","features":[57,1]},{"name":"PFAXFREEBUFFER","features":[57]},{"name":"PFAXGETCONFIGURATIONA","features":[57,1]},{"name":"PFAXGETCONFIGURATIONW","features":[57,1]},{"name":"PFAXGETDEVICESTATUSA","features":[57,1]},{"name":"PFAXGETDEVICESTATUSW","features":[57,1]},{"name":"PFAXGETJOBA","features":[57,1]},{"name":"PFAXGETJOBW","features":[57,1]},{"name":"PFAXGETLOGGINGCATEGORIESA","features":[57,1]},{"name":"PFAXGETLOGGINGCATEGORIESW","features":[57,1]},{"name":"PFAXGETPAGEDATA","features":[57,1]},{"name":"PFAXGETPORTA","features":[57,1]},{"name":"PFAXGETPORTW","features":[57,1]},{"name":"PFAXGETROUTINGINFOA","features":[57,1]},{"name":"PFAXGETROUTINGINFOW","features":[57,1]},{"name":"PFAXINITIALIZEEVENTQUEUE","features":[57,1]},{"name":"PFAXOPENPORT","features":[57,1]},{"name":"PFAXPRINTCOVERPAGEA","features":[57,1,12]},{"name":"PFAXPRINTCOVERPAGEW","features":[57,1,12]},{"name":"PFAXREGISTERROUTINGEXTENSIONW","features":[57,1]},{"name":"PFAXREGISTERSERVICEPROVIDERW","features":[57,1]},{"name":"PFAXROUTEADDFILE","features":[57]},{"name":"PFAXROUTEDELETEFILE","features":[57]},{"name":"PFAXROUTEDEVICECHANGENOTIFICATION","features":[57,1]},{"name":"PFAXROUTEDEVICEENABLE","features":[57,1]},{"name":"PFAXROUTEENUMFILE","features":[57,1]},{"name":"PFAXROUTEENUMFILES","features":[57,1]},{"name":"PFAXROUTEGETFILE","features":[57,1]},{"name":"PFAXROUTEGETROUTINGINFO","features":[57,1]},{"name":"PFAXROUTEINITIALIZE","features":[57,1]},{"name":"PFAXROUTEMETHOD","features":[57,1]},{"name":"PFAXROUTEMODIFYROUTINGDATA","features":[57,1]},{"name":"PFAXROUTESETROUTINGINFO","features":[57,1]},{"name":"PFAXSENDDOCUMENTA","features":[57,1]},{"name":"PFAXSENDDOCUMENTFORBROADCASTA","features":[57,1]},{"name":"PFAXSENDDOCUMENTFORBROADCASTW","features":[57,1]},{"name":"PFAXSENDDOCUMENTW","features":[57,1]},{"name":"PFAXSETCONFIGURATIONA","features":[57,1]},{"name":"PFAXSETCONFIGURATIONW","features":[57,1]},{"name":"PFAXSETGLOBALROUTINGINFOA","features":[57,1]},{"name":"PFAXSETGLOBALROUTINGINFOW","features":[57,1]},{"name":"PFAXSETJOBA","features":[57,1]},{"name":"PFAXSETJOBW","features":[57,1]},{"name":"PFAXSETLOGGINGCATEGORIESA","features":[57,1]},{"name":"PFAXSETLOGGINGCATEGORIESW","features":[57,1]},{"name":"PFAXSETPORTA","features":[57,1]},{"name":"PFAXSETPORTW","features":[57,1]},{"name":"PFAXSETROUTINGINFOA","features":[57,1]},{"name":"PFAXSETROUTINGINFOW","features":[57,1]},{"name":"PFAXSTARTPRINTJOBA","features":[57,1,12]},{"name":"PFAXSTARTPRINTJOBW","features":[57,1,12]},{"name":"PFAXUNREGISTERSERVICEPROVIDERW","features":[57,1]},{"name":"PFAX_EXT_CONFIG_CHANGE","features":[57]},{"name":"PFAX_EXT_FREE_BUFFER","features":[57]},{"name":"PFAX_EXT_GET_DATA","features":[57]},{"name":"PFAX_EXT_INITIALIZE_CONFIG","features":[57,1]},{"name":"PFAX_EXT_REGISTER_FOR_EVENTS","features":[57,1]},{"name":"PFAX_EXT_SET_DATA","features":[57,1]},{"name":"PFAX_EXT_UNREGISTER_FOR_EVENTS","features":[57,1]},{"name":"PFAX_LINECALLBACK","features":[57,1]},{"name":"PFAX_RECIPIENT_CALLBACKA","features":[57,1]},{"name":"PFAX_RECIPIENT_CALLBACKW","features":[57,1]},{"name":"PFAX_ROUTING_INSTALLATION_CALLBACKW","features":[57,1]},{"name":"PFAX_SEND_CALLBACK","features":[57,1]},{"name":"PFAX_SERVICE_CALLBACK","features":[57,1]},{"name":"PORT_OPEN_MODIFY","features":[57]},{"name":"PORT_OPEN_QUERY","features":[57]},{"name":"QUERY_STATUS","features":[57]},{"name":"REGSTR_VAL_BAUDRATE","features":[57]},{"name":"REGSTR_VAL_BAUDRATE_A","features":[57]},{"name":"REGSTR_VAL_DATA_W","features":[57]},{"name":"REGSTR_VAL_DEVICESUBTYPE_W","features":[57]},{"name":"REGSTR_VAL_DEVICETYPE_W","features":[57]},{"name":"REGSTR_VAL_DEVICE_NAME_W","features":[57]},{"name":"REGSTR_VAL_DEV_NAME_W","features":[57]},{"name":"REGSTR_VAL_DRIVER_DESC_W","features":[57]},{"name":"REGSTR_VAL_FRIENDLY_NAME_W","features":[57]},{"name":"REGSTR_VAL_GENERIC_CAPS_W","features":[57]},{"name":"REGSTR_VAL_GUID","features":[57]},{"name":"REGSTR_VAL_GUID_W","features":[57]},{"name":"REGSTR_VAL_HARDWARE","features":[57]},{"name":"REGSTR_VAL_HARDWARE_W","features":[57]},{"name":"REGSTR_VAL_LAUNCHABLE","features":[57]},{"name":"REGSTR_VAL_LAUNCHABLE_W","features":[57]},{"name":"REGSTR_VAL_LAUNCH_APPS","features":[57]},{"name":"REGSTR_VAL_LAUNCH_APPS_W","features":[57]},{"name":"REGSTR_VAL_SHUTDOWNDELAY","features":[57]},{"name":"REGSTR_VAL_SHUTDOWNDELAY_W","features":[57]},{"name":"REGSTR_VAL_TYPE_W","features":[57]},{"name":"REGSTR_VAL_VENDOR_NAME_W","features":[57]},{"name":"SEND_TO_FAX_RECIPIENT_ATTACHMENT","features":[57]},{"name":"STATUS_DISABLE","features":[57]},{"name":"STATUS_ENABLE","features":[57]},{"name":"STIEDFL_ALLDEVICES","features":[57]},{"name":"STIEDFL_ATTACHEDONLY","features":[57]},{"name":"STIERR_ALREADY_INITIALIZED","features":[57]},{"name":"STIERR_BADDRIVER","features":[57]},{"name":"STIERR_BETA_VERSION","features":[57]},{"name":"STIERR_DEVICENOTREG","features":[57]},{"name":"STIERR_DEVICE_LOCKED","features":[57]},{"name":"STIERR_DEVICE_NOTREADY","features":[57]},{"name":"STIERR_GENERIC","features":[57]},{"name":"STIERR_HANDLEEXISTS","features":[57]},{"name":"STIERR_INVALID_DEVICE_NAME","features":[57]},{"name":"STIERR_INVALID_HW_TYPE","features":[57]},{"name":"STIERR_INVALID_PARAM","features":[57]},{"name":"STIERR_NEEDS_LOCK","features":[57]},{"name":"STIERR_NOEVENTS","features":[57]},{"name":"STIERR_NOINTERFACE","features":[57]},{"name":"STIERR_NOTINITIALIZED","features":[57]},{"name":"STIERR_NOT_INITIALIZED","features":[57]},{"name":"STIERR_OBJECTNOTFOUND","features":[57]},{"name":"STIERR_OLD_VERSION","features":[57]},{"name":"STIERR_OUTOFMEMORY","features":[57]},{"name":"STIERR_READONLY","features":[57]},{"name":"STIERR_SHARING_VIOLATION","features":[57]},{"name":"STIERR_UNSUPPORTED","features":[57]},{"name":"STINOTIFY","features":[57]},{"name":"STISUBSCRIBE","features":[57,1]},{"name":"STI_ADD_DEVICE_BROADCAST_ACTION","features":[57]},{"name":"STI_ADD_DEVICE_BROADCAST_STRING","features":[57]},{"name":"STI_CHANGENOEFFECT","features":[57]},{"name":"STI_DEVICE_CREATE_BOTH","features":[57]},{"name":"STI_DEVICE_CREATE_DATA","features":[57]},{"name":"STI_DEVICE_CREATE_FOR_MONITOR","features":[57]},{"name":"STI_DEVICE_CREATE_MASK","features":[57]},{"name":"STI_DEVICE_CREATE_STATUS","features":[57]},{"name":"STI_DEVICE_INFORMATIONW","features":[57]},{"name":"STI_DEVICE_MJ_TYPE","features":[57]},{"name":"STI_DEVICE_STATUS","features":[57]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP","features":[57]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP_A","features":[57]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS","features":[57]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS_A","features":[57]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE","features":[57]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE_A","features":[57]},{"name":"STI_DEVICE_VALUE_ISIS_NAME","features":[57]},{"name":"STI_DEVICE_VALUE_ISIS_NAME_A","features":[57]},{"name":"STI_DEVICE_VALUE_TIMEOUT","features":[57]},{"name":"STI_DEVICE_VALUE_TIMEOUT_A","features":[57]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME","features":[57]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME_A","features":[57]},{"name":"STI_DEVSTATUS_EVENTS_STATE","features":[57]},{"name":"STI_DEVSTATUS_ONLINE_STATE","features":[57]},{"name":"STI_DEV_CAPS","features":[57]},{"name":"STI_DIAG","features":[57]},{"name":"STI_DIAGCODE_HWPRESENCE","features":[57]},{"name":"STI_ERROR_NO_ERROR","features":[57]},{"name":"STI_EVENTHANDLING_ENABLED","features":[57]},{"name":"STI_EVENTHANDLING_PENDING","features":[57]},{"name":"STI_EVENTHANDLING_POLLING","features":[57]},{"name":"STI_GENCAP_AUTO_PORTSELECT","features":[57]},{"name":"STI_GENCAP_COMMON_MASK","features":[57]},{"name":"STI_GENCAP_GENERATE_ARRIVALEVENT","features":[57]},{"name":"STI_GENCAP_NOTIFICATIONS","features":[57]},{"name":"STI_GENCAP_POLLING_NEEDED","features":[57]},{"name":"STI_GENCAP_SUBSET","features":[57]},{"name":"STI_GENCAP_WIA","features":[57]},{"name":"STI_HW_CONFIG_PARALLEL","features":[57]},{"name":"STI_HW_CONFIG_SCSI","features":[57]},{"name":"STI_HW_CONFIG_SERIAL","features":[57]},{"name":"STI_HW_CONFIG_UNKNOWN","features":[57]},{"name":"STI_HW_CONFIG_USB","features":[57]},{"name":"STI_MAX_INTERNAL_NAME_LENGTH","features":[57]},{"name":"STI_NOTCONNECTED","features":[57]},{"name":"STI_OK","features":[57]},{"name":"STI_ONLINESTATE_BUSY","features":[57]},{"name":"STI_ONLINESTATE_ERROR","features":[57]},{"name":"STI_ONLINESTATE_INITIALIZING","features":[57]},{"name":"STI_ONLINESTATE_IO_ACTIVE","features":[57]},{"name":"STI_ONLINESTATE_OFFLINE","features":[57]},{"name":"STI_ONLINESTATE_OPERATIONAL","features":[57]},{"name":"STI_ONLINESTATE_PAPER_JAM","features":[57]},{"name":"STI_ONLINESTATE_PAPER_PROBLEM","features":[57]},{"name":"STI_ONLINESTATE_PAUSED","features":[57]},{"name":"STI_ONLINESTATE_PENDING","features":[57]},{"name":"STI_ONLINESTATE_POWER_SAVE","features":[57]},{"name":"STI_ONLINESTATE_TRANSFERRING","features":[57]},{"name":"STI_ONLINESTATE_USER_INTERVENTION","features":[57]},{"name":"STI_ONLINESTATE_WARMING_UP","features":[57]},{"name":"STI_RAW_RESERVED","features":[57]},{"name":"STI_REMOVE_DEVICE_BROADCAST_ACTION","features":[57]},{"name":"STI_REMOVE_DEVICE_BROADCAST_STRING","features":[57]},{"name":"STI_SUBSCRIBE_FLAG_EVENT","features":[57]},{"name":"STI_SUBSCRIBE_FLAG_WINDOW","features":[57]},{"name":"STI_TRACE_ERROR","features":[57]},{"name":"STI_TRACE_INFORMATION","features":[57]},{"name":"STI_TRACE_WARNING","features":[57]},{"name":"STI_UNICODE","features":[57]},{"name":"STI_USD_CAPS","features":[57]},{"name":"STI_USD_GENCAP_NATIVE_PUSHSUPPORT","features":[57]},{"name":"STI_VERSION","features":[57]},{"name":"STI_VERSION_FLAG_MASK","features":[57]},{"name":"STI_VERSION_FLAG_UNICODE","features":[57]},{"name":"STI_VERSION_MIN_ALLOWED","features":[57]},{"name":"STI_VERSION_REAL","features":[57]},{"name":"STI_WIA_DEVICE_INFORMATIONW","features":[57]},{"name":"SUPPORTS_MSCPLUS_STR","features":[57]},{"name":"SUPPORTS_MSCPLUS_VAL","features":[57]},{"name":"SendToFaxRecipient","features":[57]},{"name":"SendToMode","features":[57]},{"name":"StiCreateInstanceW","features":[57,1]},{"name":"StiDeviceTypeDefault","features":[57]},{"name":"StiDeviceTypeDigitalCamera","features":[57]},{"name":"StiDeviceTypeScanner","features":[57]},{"name":"StiDeviceTypeStreamingVideo","features":[57]},{"name":"WIA_INCOMPAT_XP","features":[57]},{"name":"_ERROR_INFOW","features":[57]},{"name":"faetFXSSVC_ENDED","features":[57]},{"name":"faetIN_ARCHIVE","features":[57]},{"name":"faetIN_QUEUE","features":[57]},{"name":"faetNONE","features":[57]},{"name":"faetOUT_ARCHIVE","features":[57]},{"name":"faetOUT_QUEUE","features":[57]},{"name":"far2MANAGE_ARCHIVES","features":[57]},{"name":"far2MANAGE_CONFIG","features":[57]},{"name":"far2MANAGE_OUT_JOBS","features":[57]},{"name":"far2MANAGE_RECEIVE_FOLDER","features":[57]},{"name":"far2QUERY_ARCHIVES","features":[57]},{"name":"far2QUERY_CONFIG","features":[57]},{"name":"far2QUERY_OUT_JOBS","features":[57]},{"name":"far2SUBMIT_HIGH","features":[57]},{"name":"far2SUBMIT_LOW","features":[57]},{"name":"far2SUBMIT_NORMAL","features":[57]},{"name":"farMANAGE_CONFIG","features":[57]},{"name":"farMANAGE_IN_ARCHIVE","features":[57]},{"name":"farMANAGE_JOBS","features":[57]},{"name":"farMANAGE_OUT_ARCHIVE","features":[57]},{"name":"farQUERY_CONFIG","features":[57]},{"name":"farQUERY_IN_ARCHIVE","features":[57]},{"name":"farQUERY_JOBS","features":[57]},{"name":"farQUERY_OUT_ARCHIVE","features":[57]},{"name":"farSUBMIT_HIGH","features":[57]},{"name":"farSUBMIT_LOW","features":[57]},{"name":"farSUBMIT_NORMAL","features":[57]},{"name":"fcptLOCAL","features":[57]},{"name":"fcptNONE","features":[57]},{"name":"fcptSERVER","features":[57]},{"name":"fdrmAUTO_ANSWER","features":[57]},{"name":"fdrmMANUAL_ANSWER","features":[57]},{"name":"fdrmNO_ANSWER","features":[57]},{"name":"fgsALL_DEV_NOT_VALID","features":[57]},{"name":"fgsALL_DEV_VALID","features":[57]},{"name":"fgsEMPTY","features":[57]},{"name":"fgsSOME_DEV_NOT_VALID","features":[57]},{"name":"fjesANSWERED","features":[57]},{"name":"fjesBAD_ADDRESS","features":[57]},{"name":"fjesBUSY","features":[57]},{"name":"fjesCALL_ABORTED","features":[57]},{"name":"fjesCALL_BLACKLISTED","features":[57]},{"name":"fjesCALL_COMPLETED","features":[57]},{"name":"fjesCALL_DELAYED","features":[57]},{"name":"fjesDIALING","features":[57]},{"name":"fjesDISCONNECTED","features":[57]},{"name":"fjesFATAL_ERROR","features":[57]},{"name":"fjesHANDLED","features":[57]},{"name":"fjesINITIALIZING","features":[57]},{"name":"fjesLINE_UNAVAILABLE","features":[57]},{"name":"fjesNONE","features":[57]},{"name":"fjesNOT_FAX_CALL","features":[57]},{"name":"fjesNO_ANSWER","features":[57]},{"name":"fjesNO_DIAL_TONE","features":[57]},{"name":"fjesPARTIALLY_RECEIVED","features":[57]},{"name":"fjesPROPRIETARY","features":[57]},{"name":"fjesRECEIVING","features":[57]},{"name":"fjesTRANSMITTING","features":[57]},{"name":"fjoDELETE","features":[57]},{"name":"fjoPAUSE","features":[57]},{"name":"fjoRECIPIENT_INFO","features":[57]},{"name":"fjoRESTART","features":[57]},{"name":"fjoRESUME","features":[57]},{"name":"fjoSENDER_INFO","features":[57]},{"name":"fjoVIEW","features":[57]},{"name":"fjsCANCELED","features":[57]},{"name":"fjsCANCELING","features":[57]},{"name":"fjsCOMPLETED","features":[57]},{"name":"fjsFAILED","features":[57]},{"name":"fjsINPROGRESS","features":[57]},{"name":"fjsNOLINE","features":[57]},{"name":"fjsPAUSED","features":[57]},{"name":"fjsPENDING","features":[57]},{"name":"fjsRETRIES_EXCEEDED","features":[57]},{"name":"fjsRETRYING","features":[57]},{"name":"fjsROUTING","features":[57]},{"name":"fjtRECEIVE","features":[57]},{"name":"fjtROUTING","features":[57]},{"name":"fjtSEND","features":[57]},{"name":"fllMAX","features":[57]},{"name":"fllMED","features":[57]},{"name":"fllMIN","features":[57]},{"name":"fllNONE","features":[57]},{"name":"fpsBAD_GUID","features":[57]},{"name":"fpsBAD_VERSION","features":[57]},{"name":"fpsCANT_INIT","features":[57]},{"name":"fpsCANT_LINK","features":[57]},{"name":"fpsCANT_LOAD","features":[57]},{"name":"fpsSERVER_ERROR","features":[57]},{"name":"fpsSUCCESS","features":[57]},{"name":"fptHIGH","features":[57]},{"name":"fptLOW","features":[57]},{"name":"fptNORMAL","features":[57]},{"name":"frrcANY_CODE","features":[57]},{"name":"frsALL_GROUP_DEV_NOT_VALID","features":[57]},{"name":"frsBAD_DEVICE","features":[57]},{"name":"frsEMPTY_GROUP","features":[57]},{"name":"frsSOME_GROUP_DEV_NOT_VALID","features":[57]},{"name":"frsVALID","features":[57]},{"name":"frtMAIL","features":[57]},{"name":"frtMSGBOX","features":[57]},{"name":"frtNONE","features":[57]},{"name":"fsAPI_VERSION_0","features":[57]},{"name":"fsAPI_VERSION_1","features":[57]},{"name":"fsAPI_VERSION_2","features":[57]},{"name":"fsAPI_VERSION_3","features":[57]},{"name":"fsatANONYMOUS","features":[57]},{"name":"fsatBASIC","features":[57]},{"name":"fsatNTLM","features":[57]},{"name":"fsetACTIVITY","features":[57]},{"name":"fsetCONFIG","features":[57]},{"name":"fsetDEVICE_STATUS","features":[57]},{"name":"fsetFXSSVC_ENDED","features":[57]},{"name":"fsetINCOMING_CALL","features":[57]},{"name":"fsetIN_ARCHIVE","features":[57]},{"name":"fsetIN_QUEUE","features":[57]},{"name":"fsetNONE","features":[57]},{"name":"fsetOUT_ARCHIVE","features":[57]},{"name":"fsetOUT_QUEUE","features":[57]},{"name":"fsetQUEUE_STATE","features":[57]},{"name":"fstDISCOUNT_PERIOD","features":[57]},{"name":"fstNOW","features":[57]},{"name":"fstSPECIFIC_TIME","features":[57]},{"name":"lDEFAULT_PREFETCH_SIZE","features":[57]},{"name":"prv_DEFAULT_PREFETCH_SIZE","features":[57]},{"name":"wcharREASSIGN_RECIPIENTS_DELIMITER","features":[57]}],"379":[{"name":"BALLPOINT_I8042_HARDWARE","features":[58]},{"name":"BALLPOINT_SERIAL_HARDWARE","features":[58]},{"name":"BUTTON_BIT_ALLBUTTONSMASK","features":[58]},{"name":"BUTTON_BIT_BACK","features":[58]},{"name":"BUTTON_BIT_CAMERAFOCUS","features":[58]},{"name":"BUTTON_BIT_CAMERALENS","features":[58]},{"name":"BUTTON_BIT_CAMERASHUTTER","features":[58]},{"name":"BUTTON_BIT_HEADSET","features":[58]},{"name":"BUTTON_BIT_HWKBDEPLOY","features":[58]},{"name":"BUTTON_BIT_OEMCUSTOM","features":[58]},{"name":"BUTTON_BIT_OEMCUSTOM2","features":[58]},{"name":"BUTTON_BIT_OEMCUSTOM3","features":[58]},{"name":"BUTTON_BIT_POWER","features":[58]},{"name":"BUTTON_BIT_RINGERTOGGLE","features":[58]},{"name":"BUTTON_BIT_ROTATION_LOCK","features":[58]},{"name":"BUTTON_BIT_SEARCH","features":[58]},{"name":"BUTTON_BIT_VOLUMEDOWN","features":[58]},{"name":"BUTTON_BIT_VOLUMEUP","features":[58]},{"name":"BUTTON_BIT_WINDOWS","features":[58]},{"name":"CLSID_DirectInput","features":[58]},{"name":"CLSID_DirectInput8","features":[58]},{"name":"CLSID_DirectInputDevice","features":[58]},{"name":"CLSID_DirectInputDevice8","features":[58]},{"name":"CPOINT","features":[58]},{"name":"DD_KEYBOARD_DEVICE_NAME","features":[58]},{"name":"DD_KEYBOARD_DEVICE_NAME_U","features":[58]},{"name":"DD_MOUSE_DEVICE_NAME","features":[58]},{"name":"DD_MOUSE_DEVICE_NAME_U","features":[58]},{"name":"DEVPKEY_DeviceInterface_HID_BackgroundAccess","features":[58,35]},{"name":"DEVPKEY_DeviceInterface_HID_IsReadOnly","features":[58,35]},{"name":"DEVPKEY_DeviceInterface_HID_ProductId","features":[58,35]},{"name":"DEVPKEY_DeviceInterface_HID_UsageId","features":[58,35]},{"name":"DEVPKEY_DeviceInterface_HID_UsagePage","features":[58,35]},{"name":"DEVPKEY_DeviceInterface_HID_VendorId","features":[58,35]},{"name":"DEVPKEY_DeviceInterface_HID_VersionNumber","features":[58,35]},{"name":"DEVPKEY_DeviceInterface_HID_WakeScreenOnInputCapable","features":[58,35]},{"name":"DI8DEVCLASS_ALL","features":[58]},{"name":"DI8DEVCLASS_DEVICE","features":[58]},{"name":"DI8DEVCLASS_GAMECTRL","features":[58]},{"name":"DI8DEVCLASS_KEYBOARD","features":[58]},{"name":"DI8DEVCLASS_POINTER","features":[58]},{"name":"DI8DEVTYPE1STPERSON_LIMITED","features":[58]},{"name":"DI8DEVTYPE1STPERSON_SHOOTER","features":[58]},{"name":"DI8DEVTYPE1STPERSON_SIXDOF","features":[58]},{"name":"DI8DEVTYPE1STPERSON_UNKNOWN","features":[58]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION","features":[58]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION_HARDWIRED","features":[58]},{"name":"DI8DEVTYPEDEVICECTRL_UNKNOWN","features":[58]},{"name":"DI8DEVTYPEDRIVING_COMBINEDPEDALS","features":[58]},{"name":"DI8DEVTYPEDRIVING_DUALPEDALS","features":[58]},{"name":"DI8DEVTYPEDRIVING_HANDHELD","features":[58]},{"name":"DI8DEVTYPEDRIVING_LIMITED","features":[58]},{"name":"DI8DEVTYPEDRIVING_THREEPEDALS","features":[58]},{"name":"DI8DEVTYPEFLIGHT_LIMITED","features":[58]},{"name":"DI8DEVTYPEFLIGHT_RC","features":[58]},{"name":"DI8DEVTYPEFLIGHT_STICK","features":[58]},{"name":"DI8DEVTYPEFLIGHT_YOKE","features":[58]},{"name":"DI8DEVTYPEGAMEPAD_LIMITED","features":[58]},{"name":"DI8DEVTYPEGAMEPAD_STANDARD","features":[58]},{"name":"DI8DEVTYPEGAMEPAD_TILT","features":[58]},{"name":"DI8DEVTYPEJOYSTICK_LIMITED","features":[58]},{"name":"DI8DEVTYPEJOYSTICK_STANDARD","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_J3100","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_JAPAN106","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_JAPANAX","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_NEC98","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_NEC98106","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_NEC98LAPTOP","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA1050","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA9140","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_OLIVETTI","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_PCAT","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_PCENH","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_PCXT","features":[58]},{"name":"DI8DEVTYPEKEYBOARD_UNKNOWN","features":[58]},{"name":"DI8DEVTYPEMOUSE_ABSOLUTE","features":[58]},{"name":"DI8DEVTYPEMOUSE_FINGERSTICK","features":[58]},{"name":"DI8DEVTYPEMOUSE_TOUCHPAD","features":[58]},{"name":"DI8DEVTYPEMOUSE_TRACKBALL","features":[58]},{"name":"DI8DEVTYPEMOUSE_TRADITIONAL","features":[58]},{"name":"DI8DEVTYPEMOUSE_UNKNOWN","features":[58]},{"name":"DI8DEVTYPEREMOTE_UNKNOWN","features":[58]},{"name":"DI8DEVTYPESCREENPTR_LIGHTGUN","features":[58]},{"name":"DI8DEVTYPESCREENPTR_LIGHTPEN","features":[58]},{"name":"DI8DEVTYPESCREENPTR_TOUCH","features":[58]},{"name":"DI8DEVTYPESCREENPTR_UNKNOWN","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_2NDHANDCONTROLLER","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_COMBINEDPEDALS","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_DUALPEDALS","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_HANDTRACKER","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_HEADTRACKER","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_RUDDERPEDALS","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTER","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTSTICKGATE","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_SPLITTHROTTLE","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_THREEPEDALS","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_THROTTLE","features":[58]},{"name":"DI8DEVTYPESUPPLEMENTAL_UNKNOWN","features":[58]},{"name":"DI8DEVTYPE_1STPERSON","features":[58]},{"name":"DI8DEVTYPE_DEVICE","features":[58]},{"name":"DI8DEVTYPE_DEVICECTRL","features":[58]},{"name":"DI8DEVTYPE_DRIVING","features":[58]},{"name":"DI8DEVTYPE_FLIGHT","features":[58]},{"name":"DI8DEVTYPE_GAMEPAD","features":[58]},{"name":"DI8DEVTYPE_JOYSTICK","features":[58]},{"name":"DI8DEVTYPE_KEYBOARD","features":[58]},{"name":"DI8DEVTYPE_LIMITEDGAMESUBTYPE","features":[58]},{"name":"DI8DEVTYPE_MOUSE","features":[58]},{"name":"DI8DEVTYPE_REMOTE","features":[58]},{"name":"DI8DEVTYPE_SCREENPOINTER","features":[58]},{"name":"DI8DEVTYPE_SUPPLEMENTAL","features":[58]},{"name":"DIACTIONA","features":[58]},{"name":"DIACTIONFORMATA","features":[58,1]},{"name":"DIACTIONFORMATW","features":[58,1]},{"name":"DIACTIONW","features":[58]},{"name":"DIAFTS_NEWDEVICEHIGH","features":[58]},{"name":"DIAFTS_NEWDEVICELOW","features":[58]},{"name":"DIAFTS_UNUSEDDEVICEHIGH","features":[58]},{"name":"DIAFTS_UNUSEDDEVICELOW","features":[58]},{"name":"DIAH_APPREQUESTED","features":[58]},{"name":"DIAH_DEFAULT","features":[58]},{"name":"DIAH_ERROR","features":[58]},{"name":"DIAH_HWAPP","features":[58]},{"name":"DIAH_HWDEFAULT","features":[58]},{"name":"DIAH_UNMAPPED","features":[58]},{"name":"DIAH_USERCONFIG","features":[58]},{"name":"DIAPPIDFLAG_NOSIZE","features":[58]},{"name":"DIAPPIDFLAG_NOTIME","features":[58]},{"name":"DIAXIS_2DCONTROL_INOUT","features":[58]},{"name":"DIAXIS_2DCONTROL_LATERAL","features":[58]},{"name":"DIAXIS_2DCONTROL_MOVE","features":[58]},{"name":"DIAXIS_2DCONTROL_ROTATEZ","features":[58]},{"name":"DIAXIS_3DCONTROL_INOUT","features":[58]},{"name":"DIAXIS_3DCONTROL_LATERAL","features":[58]},{"name":"DIAXIS_3DCONTROL_MOVE","features":[58]},{"name":"DIAXIS_3DCONTROL_ROTATEX","features":[58]},{"name":"DIAXIS_3DCONTROL_ROTATEY","features":[58]},{"name":"DIAXIS_3DCONTROL_ROTATEZ","features":[58]},{"name":"DIAXIS_ANY_1","features":[58]},{"name":"DIAXIS_ANY_2","features":[58]},{"name":"DIAXIS_ANY_3","features":[58]},{"name":"DIAXIS_ANY_4","features":[58]},{"name":"DIAXIS_ANY_A_1","features":[58]},{"name":"DIAXIS_ANY_A_2","features":[58]},{"name":"DIAXIS_ANY_B_1","features":[58]},{"name":"DIAXIS_ANY_B_2","features":[58]},{"name":"DIAXIS_ANY_C_1","features":[58]},{"name":"DIAXIS_ANY_C_2","features":[58]},{"name":"DIAXIS_ANY_R_1","features":[58]},{"name":"DIAXIS_ANY_R_2","features":[58]},{"name":"DIAXIS_ANY_S_1","features":[58]},{"name":"DIAXIS_ANY_S_2","features":[58]},{"name":"DIAXIS_ANY_U_1","features":[58]},{"name":"DIAXIS_ANY_U_2","features":[58]},{"name":"DIAXIS_ANY_V_1","features":[58]},{"name":"DIAXIS_ANY_V_2","features":[58]},{"name":"DIAXIS_ANY_X_1","features":[58]},{"name":"DIAXIS_ANY_X_2","features":[58]},{"name":"DIAXIS_ANY_Y_1","features":[58]},{"name":"DIAXIS_ANY_Y_2","features":[58]},{"name":"DIAXIS_ANY_Z_1","features":[58]},{"name":"DIAXIS_ANY_Z_2","features":[58]},{"name":"DIAXIS_ARCADEP_LATERAL","features":[58]},{"name":"DIAXIS_ARCADEP_MOVE","features":[58]},{"name":"DIAXIS_ARCADES_LATERAL","features":[58]},{"name":"DIAXIS_ARCADES_MOVE","features":[58]},{"name":"DIAXIS_BASEBALLB_LATERAL","features":[58]},{"name":"DIAXIS_BASEBALLB_MOVE","features":[58]},{"name":"DIAXIS_BASEBALLF_LATERAL","features":[58]},{"name":"DIAXIS_BASEBALLF_MOVE","features":[58]},{"name":"DIAXIS_BASEBALLP_LATERAL","features":[58]},{"name":"DIAXIS_BASEBALLP_MOVE","features":[58]},{"name":"DIAXIS_BBALLD_LATERAL","features":[58]},{"name":"DIAXIS_BBALLD_MOVE","features":[58]},{"name":"DIAXIS_BBALLO_LATERAL","features":[58]},{"name":"DIAXIS_BBALLO_MOVE","features":[58]},{"name":"DIAXIS_BIKINGM_BRAKE","features":[58]},{"name":"DIAXIS_BIKINGM_PEDAL","features":[58]},{"name":"DIAXIS_BIKINGM_TURN","features":[58]},{"name":"DIAXIS_BROWSER_LATERAL","features":[58]},{"name":"DIAXIS_BROWSER_MOVE","features":[58]},{"name":"DIAXIS_BROWSER_VIEW","features":[58]},{"name":"DIAXIS_CADF_INOUT","features":[58]},{"name":"DIAXIS_CADF_LATERAL","features":[58]},{"name":"DIAXIS_CADF_MOVE","features":[58]},{"name":"DIAXIS_CADF_ROTATEX","features":[58]},{"name":"DIAXIS_CADF_ROTATEY","features":[58]},{"name":"DIAXIS_CADF_ROTATEZ","features":[58]},{"name":"DIAXIS_CADM_INOUT","features":[58]},{"name":"DIAXIS_CADM_LATERAL","features":[58]},{"name":"DIAXIS_CADM_MOVE","features":[58]},{"name":"DIAXIS_CADM_ROTATEX","features":[58]},{"name":"DIAXIS_CADM_ROTATEY","features":[58]},{"name":"DIAXIS_CADM_ROTATEZ","features":[58]},{"name":"DIAXIS_DRIVINGC_ACCELERATE","features":[58]},{"name":"DIAXIS_DRIVINGC_ACCEL_AND_BRAKE","features":[58]},{"name":"DIAXIS_DRIVINGC_BRAKE","features":[58]},{"name":"DIAXIS_DRIVINGC_STEER","features":[58]},{"name":"DIAXIS_DRIVINGR_ACCELERATE","features":[58]},{"name":"DIAXIS_DRIVINGR_ACCEL_AND_BRAKE","features":[58]},{"name":"DIAXIS_DRIVINGR_BRAKE","features":[58]},{"name":"DIAXIS_DRIVINGR_STEER","features":[58]},{"name":"DIAXIS_DRIVINGT_ACCELERATE","features":[58]},{"name":"DIAXIS_DRIVINGT_ACCEL_AND_BRAKE","features":[58]},{"name":"DIAXIS_DRIVINGT_BARREL","features":[58]},{"name":"DIAXIS_DRIVINGT_BRAKE","features":[58]},{"name":"DIAXIS_DRIVINGT_ROTATE","features":[58]},{"name":"DIAXIS_DRIVINGT_STEER","features":[58]},{"name":"DIAXIS_FIGHTINGH_LATERAL","features":[58]},{"name":"DIAXIS_FIGHTINGH_MOVE","features":[58]},{"name":"DIAXIS_FIGHTINGH_ROTATE","features":[58]},{"name":"DIAXIS_FISHING_LATERAL","features":[58]},{"name":"DIAXIS_FISHING_MOVE","features":[58]},{"name":"DIAXIS_FISHING_ROTATE","features":[58]},{"name":"DIAXIS_FLYINGC_BANK","features":[58]},{"name":"DIAXIS_FLYINGC_BRAKE","features":[58]},{"name":"DIAXIS_FLYINGC_FLAPS","features":[58]},{"name":"DIAXIS_FLYINGC_PITCH","features":[58]},{"name":"DIAXIS_FLYINGC_RUDDER","features":[58]},{"name":"DIAXIS_FLYINGC_THROTTLE","features":[58]},{"name":"DIAXIS_FLYINGH_BANK","features":[58]},{"name":"DIAXIS_FLYINGH_COLLECTIVE","features":[58]},{"name":"DIAXIS_FLYINGH_PITCH","features":[58]},{"name":"DIAXIS_FLYINGH_THROTTLE","features":[58]},{"name":"DIAXIS_FLYINGH_TORQUE","features":[58]},{"name":"DIAXIS_FLYINGM_BANK","features":[58]},{"name":"DIAXIS_FLYINGM_BRAKE","features":[58]},{"name":"DIAXIS_FLYINGM_FLAPS","features":[58]},{"name":"DIAXIS_FLYINGM_PITCH","features":[58]},{"name":"DIAXIS_FLYINGM_RUDDER","features":[58]},{"name":"DIAXIS_FLYINGM_THROTTLE","features":[58]},{"name":"DIAXIS_FOOTBALLD_LATERAL","features":[58]},{"name":"DIAXIS_FOOTBALLD_MOVE","features":[58]},{"name":"DIAXIS_FOOTBALLO_LATERAL","features":[58]},{"name":"DIAXIS_FOOTBALLO_MOVE","features":[58]},{"name":"DIAXIS_FOOTBALLQ_LATERAL","features":[58]},{"name":"DIAXIS_FOOTBALLQ_MOVE","features":[58]},{"name":"DIAXIS_FPS_LOOKUPDOWN","features":[58]},{"name":"DIAXIS_FPS_MOVE","features":[58]},{"name":"DIAXIS_FPS_ROTATE","features":[58]},{"name":"DIAXIS_FPS_SIDESTEP","features":[58]},{"name":"DIAXIS_GOLF_LATERAL","features":[58]},{"name":"DIAXIS_GOLF_MOVE","features":[58]},{"name":"DIAXIS_HOCKEYD_LATERAL","features":[58]},{"name":"DIAXIS_HOCKEYD_MOVE","features":[58]},{"name":"DIAXIS_HOCKEYG_LATERAL","features":[58]},{"name":"DIAXIS_HOCKEYG_MOVE","features":[58]},{"name":"DIAXIS_HOCKEYO_LATERAL","features":[58]},{"name":"DIAXIS_HOCKEYO_MOVE","features":[58]},{"name":"DIAXIS_HUNTING_LATERAL","features":[58]},{"name":"DIAXIS_HUNTING_MOVE","features":[58]},{"name":"DIAXIS_HUNTING_ROTATE","features":[58]},{"name":"DIAXIS_MECHA_ROTATE","features":[58]},{"name":"DIAXIS_MECHA_STEER","features":[58]},{"name":"DIAXIS_MECHA_THROTTLE","features":[58]},{"name":"DIAXIS_MECHA_TORSO","features":[58]},{"name":"DIAXIS_RACQUET_LATERAL","features":[58]},{"name":"DIAXIS_RACQUET_MOVE","features":[58]},{"name":"DIAXIS_REMOTE_SLIDER","features":[58]},{"name":"DIAXIS_REMOTE_SLIDER2","features":[58]},{"name":"DIAXIS_SKIING_SPEED","features":[58]},{"name":"DIAXIS_SKIING_TURN","features":[58]},{"name":"DIAXIS_SOCCERD_LATERAL","features":[58]},{"name":"DIAXIS_SOCCERD_MOVE","features":[58]},{"name":"DIAXIS_SOCCERO_BEND","features":[58]},{"name":"DIAXIS_SOCCERO_LATERAL","features":[58]},{"name":"DIAXIS_SOCCERO_MOVE","features":[58]},{"name":"DIAXIS_SPACESIM_CLIMB","features":[58]},{"name":"DIAXIS_SPACESIM_LATERAL","features":[58]},{"name":"DIAXIS_SPACESIM_MOVE","features":[58]},{"name":"DIAXIS_SPACESIM_ROTATE","features":[58]},{"name":"DIAXIS_SPACESIM_THROTTLE","features":[58]},{"name":"DIAXIS_STRATEGYR_LATERAL","features":[58]},{"name":"DIAXIS_STRATEGYR_MOVE","features":[58]},{"name":"DIAXIS_STRATEGYR_ROTATE","features":[58]},{"name":"DIAXIS_STRATEGYT_LATERAL","features":[58]},{"name":"DIAXIS_STRATEGYT_MOVE","features":[58]},{"name":"DIAXIS_TPS_MOVE","features":[58]},{"name":"DIAXIS_TPS_STEP","features":[58]},{"name":"DIAXIS_TPS_TURN","features":[58]},{"name":"DIA_APPFIXED","features":[58]},{"name":"DIA_APPMAPPED","features":[58]},{"name":"DIA_APPNOMAP","features":[58]},{"name":"DIA_FORCEFEEDBACK","features":[58]},{"name":"DIA_NORANGE","features":[58]},{"name":"DIBUTTON_2DCONTROL_DEVICE","features":[58]},{"name":"DIBUTTON_2DCONTROL_DISPLAY","features":[58]},{"name":"DIBUTTON_2DCONTROL_MENU","features":[58]},{"name":"DIBUTTON_2DCONTROL_PAUSE","features":[58]},{"name":"DIBUTTON_2DCONTROL_SELECT","features":[58]},{"name":"DIBUTTON_2DCONTROL_SPECIAL","features":[58]},{"name":"DIBUTTON_2DCONTROL_SPECIAL1","features":[58]},{"name":"DIBUTTON_2DCONTROL_SPECIAL2","features":[58]},{"name":"DIBUTTON_3DCONTROL_DEVICE","features":[58]},{"name":"DIBUTTON_3DCONTROL_DISPLAY","features":[58]},{"name":"DIBUTTON_3DCONTROL_MENU","features":[58]},{"name":"DIBUTTON_3DCONTROL_PAUSE","features":[58]},{"name":"DIBUTTON_3DCONTROL_SELECT","features":[58]},{"name":"DIBUTTON_3DCONTROL_SPECIAL","features":[58]},{"name":"DIBUTTON_3DCONTROL_SPECIAL1","features":[58]},{"name":"DIBUTTON_3DCONTROL_SPECIAL2","features":[58]},{"name":"DIBUTTON_ARCADEP_BACK_LINK","features":[58]},{"name":"DIBUTTON_ARCADEP_CROUCH","features":[58]},{"name":"DIBUTTON_ARCADEP_DEVICE","features":[58]},{"name":"DIBUTTON_ARCADEP_FIRE","features":[58]},{"name":"DIBUTTON_ARCADEP_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_ARCADEP_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_ARCADEP_JUMP","features":[58]},{"name":"DIBUTTON_ARCADEP_LEFT_LINK","features":[58]},{"name":"DIBUTTON_ARCADEP_MENU","features":[58]},{"name":"DIBUTTON_ARCADEP_PAUSE","features":[58]},{"name":"DIBUTTON_ARCADEP_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_ARCADEP_SELECT","features":[58]},{"name":"DIBUTTON_ARCADEP_SPECIAL","features":[58]},{"name":"DIBUTTON_ARCADEP_VIEW_DOWN_LINK","features":[58]},{"name":"DIBUTTON_ARCADEP_VIEW_LEFT_LINK","features":[58]},{"name":"DIBUTTON_ARCADEP_VIEW_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_ARCADEP_VIEW_UP_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_ATTACK","features":[58]},{"name":"DIBUTTON_ARCADES_BACK_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_CARRY","features":[58]},{"name":"DIBUTTON_ARCADES_DEVICE","features":[58]},{"name":"DIBUTTON_ARCADES_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_LEFT_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_MENU","features":[58]},{"name":"DIBUTTON_ARCADES_PAUSE","features":[58]},{"name":"DIBUTTON_ARCADES_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_SELECT","features":[58]},{"name":"DIBUTTON_ARCADES_SPECIAL","features":[58]},{"name":"DIBUTTON_ARCADES_THROW","features":[58]},{"name":"DIBUTTON_ARCADES_VIEW_DOWN_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_VIEW_LEFT_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_VIEW_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_ARCADES_VIEW_UP_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLB_BACK_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLB_BOX","features":[58]},{"name":"DIBUTTON_BASEBALLB_BUNT","features":[58]},{"name":"DIBUTTON_BASEBALLB_BURST","features":[58]},{"name":"DIBUTTON_BASEBALLB_CONTACT","features":[58]},{"name":"DIBUTTON_BASEBALLB_DEVICE","features":[58]},{"name":"DIBUTTON_BASEBALLB_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLB_LEFT_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLB_MENU","features":[58]},{"name":"DIBUTTON_BASEBALLB_NORMAL","features":[58]},{"name":"DIBUTTON_BASEBALLB_NOSTEAL","features":[58]},{"name":"DIBUTTON_BASEBALLB_PAUSE","features":[58]},{"name":"DIBUTTON_BASEBALLB_POWER","features":[58]},{"name":"DIBUTTON_BASEBALLB_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLB_SELECT","features":[58]},{"name":"DIBUTTON_BASEBALLB_SLIDE","features":[58]},{"name":"DIBUTTON_BASEBALLB_STEAL","features":[58]},{"name":"DIBUTTON_BASEBALLF_AIM_LEFT_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLF_AIM_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLF_BACK_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLF_BURST","features":[58]},{"name":"DIBUTTON_BASEBALLF_DEVICE","features":[58]},{"name":"DIBUTTON_BASEBALLF_DIVE","features":[58]},{"name":"DIBUTTON_BASEBALLF_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLF_JUMP","features":[58]},{"name":"DIBUTTON_BASEBALLF_MENU","features":[58]},{"name":"DIBUTTON_BASEBALLF_NEAREST","features":[58]},{"name":"DIBUTTON_BASEBALLF_PAUSE","features":[58]},{"name":"DIBUTTON_BASEBALLF_SHIFTIN","features":[58]},{"name":"DIBUTTON_BASEBALLF_SHIFTOUT","features":[58]},{"name":"DIBUTTON_BASEBALLF_THROW1","features":[58]},{"name":"DIBUTTON_BASEBALLF_THROW2","features":[58]},{"name":"DIBUTTON_BASEBALLP_BACK_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLP_BASE","features":[58]},{"name":"DIBUTTON_BASEBALLP_DEVICE","features":[58]},{"name":"DIBUTTON_BASEBALLP_FAKE","features":[58]},{"name":"DIBUTTON_BASEBALLP_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLP_LEFT_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLP_LOOK","features":[58]},{"name":"DIBUTTON_BASEBALLP_MENU","features":[58]},{"name":"DIBUTTON_BASEBALLP_PAUSE","features":[58]},{"name":"DIBUTTON_BASEBALLP_PITCH","features":[58]},{"name":"DIBUTTON_BASEBALLP_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_BASEBALLP_SELECT","features":[58]},{"name":"DIBUTTON_BASEBALLP_THROW","features":[58]},{"name":"DIBUTTON_BASEBALLP_WALK","features":[58]},{"name":"DIBUTTON_BBALLD_BACK_LINK","features":[58]},{"name":"DIBUTTON_BBALLD_BURST","features":[58]},{"name":"DIBUTTON_BBALLD_DEVICE","features":[58]},{"name":"DIBUTTON_BBALLD_FAKE","features":[58]},{"name":"DIBUTTON_BBALLD_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_BBALLD_JUMP","features":[58]},{"name":"DIBUTTON_BBALLD_LEFT_LINK","features":[58]},{"name":"DIBUTTON_BBALLD_MENU","features":[58]},{"name":"DIBUTTON_BBALLD_PAUSE","features":[58]},{"name":"DIBUTTON_BBALLD_PLAY","features":[58]},{"name":"DIBUTTON_BBALLD_PLAYER","features":[58]},{"name":"DIBUTTON_BBALLD_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_BBALLD_SPECIAL","features":[58]},{"name":"DIBUTTON_BBALLD_STEAL","features":[58]},{"name":"DIBUTTON_BBALLD_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_BBALLD_TIMEOUT","features":[58]},{"name":"DIBUTTON_BBALLO_BACK_LINK","features":[58]},{"name":"DIBUTTON_BBALLO_BURST","features":[58]},{"name":"DIBUTTON_BBALLO_CALL","features":[58]},{"name":"DIBUTTON_BBALLO_DEVICE","features":[58]},{"name":"DIBUTTON_BBALLO_DUNK","features":[58]},{"name":"DIBUTTON_BBALLO_FAKE","features":[58]},{"name":"DIBUTTON_BBALLO_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_BBALLO_JAB","features":[58]},{"name":"DIBUTTON_BBALLO_LEFT_LINK","features":[58]},{"name":"DIBUTTON_BBALLO_MENU","features":[58]},{"name":"DIBUTTON_BBALLO_PASS","features":[58]},{"name":"DIBUTTON_BBALLO_PAUSE","features":[58]},{"name":"DIBUTTON_BBALLO_PLAY","features":[58]},{"name":"DIBUTTON_BBALLO_PLAYER","features":[58]},{"name":"DIBUTTON_BBALLO_POST","features":[58]},{"name":"DIBUTTON_BBALLO_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_BBALLO_SCREEN","features":[58]},{"name":"DIBUTTON_BBALLO_SHOOT","features":[58]},{"name":"DIBUTTON_BBALLO_SPECIAL","features":[58]},{"name":"DIBUTTON_BBALLO_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_BBALLO_TIMEOUT","features":[58]},{"name":"DIBUTTON_BIKINGM_BRAKE_BUTTON_LINK","features":[58]},{"name":"DIBUTTON_BIKINGM_CAMERA","features":[58]},{"name":"DIBUTTON_BIKINGM_DEVICE","features":[58]},{"name":"DIBUTTON_BIKINGM_FASTER_LINK","features":[58]},{"name":"DIBUTTON_BIKINGM_JUMP","features":[58]},{"name":"DIBUTTON_BIKINGM_LEFT_LINK","features":[58]},{"name":"DIBUTTON_BIKINGM_MENU","features":[58]},{"name":"DIBUTTON_BIKINGM_PAUSE","features":[58]},{"name":"DIBUTTON_BIKINGM_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_BIKINGM_SELECT","features":[58]},{"name":"DIBUTTON_BIKINGM_SLOWER_LINK","features":[58]},{"name":"DIBUTTON_BIKINGM_SPECIAL1","features":[58]},{"name":"DIBUTTON_BIKINGM_SPECIAL2","features":[58]},{"name":"DIBUTTON_BIKINGM_ZOOM","features":[58]},{"name":"DIBUTTON_BROWSER_DEVICE","features":[58]},{"name":"DIBUTTON_BROWSER_FAVORITES","features":[58]},{"name":"DIBUTTON_BROWSER_HISTORY","features":[58]},{"name":"DIBUTTON_BROWSER_HOME","features":[58]},{"name":"DIBUTTON_BROWSER_MENU","features":[58]},{"name":"DIBUTTON_BROWSER_NEXT","features":[58]},{"name":"DIBUTTON_BROWSER_PAUSE","features":[58]},{"name":"DIBUTTON_BROWSER_PREVIOUS","features":[58]},{"name":"DIBUTTON_BROWSER_PRINT","features":[58]},{"name":"DIBUTTON_BROWSER_REFRESH","features":[58]},{"name":"DIBUTTON_BROWSER_SEARCH","features":[58]},{"name":"DIBUTTON_BROWSER_SELECT","features":[58]},{"name":"DIBUTTON_BROWSER_STOP","features":[58]},{"name":"DIBUTTON_CADF_DEVICE","features":[58]},{"name":"DIBUTTON_CADF_DISPLAY","features":[58]},{"name":"DIBUTTON_CADF_MENU","features":[58]},{"name":"DIBUTTON_CADF_PAUSE","features":[58]},{"name":"DIBUTTON_CADF_SELECT","features":[58]},{"name":"DIBUTTON_CADF_SPECIAL","features":[58]},{"name":"DIBUTTON_CADF_SPECIAL1","features":[58]},{"name":"DIBUTTON_CADF_SPECIAL2","features":[58]},{"name":"DIBUTTON_CADM_DEVICE","features":[58]},{"name":"DIBUTTON_CADM_DISPLAY","features":[58]},{"name":"DIBUTTON_CADM_MENU","features":[58]},{"name":"DIBUTTON_CADM_PAUSE","features":[58]},{"name":"DIBUTTON_CADM_SELECT","features":[58]},{"name":"DIBUTTON_CADM_SPECIAL","features":[58]},{"name":"DIBUTTON_CADM_SPECIAL1","features":[58]},{"name":"DIBUTTON_CADM_SPECIAL2","features":[58]},{"name":"DIBUTTON_DRIVINGC_ACCELERATE_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGC_AIDS","features":[58]},{"name":"DIBUTTON_DRIVINGC_BRAKE","features":[58]},{"name":"DIBUTTON_DRIVINGC_DASHBOARD","features":[58]},{"name":"DIBUTTON_DRIVINGC_DEVICE","features":[58]},{"name":"DIBUTTON_DRIVINGC_FIRE","features":[58]},{"name":"DIBUTTON_DRIVINGC_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_DRIVINGC_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGC_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGC_MENU","features":[58]},{"name":"DIBUTTON_DRIVINGC_PAUSE","features":[58]},{"name":"DIBUTTON_DRIVINGC_SHIFTDOWN","features":[58]},{"name":"DIBUTTON_DRIVINGC_SHIFTUP","features":[58]},{"name":"DIBUTTON_DRIVINGC_STEER_LEFT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGC_STEER_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGC_TARGET","features":[58]},{"name":"DIBUTTON_DRIVINGC_WEAPONS","features":[58]},{"name":"DIBUTTON_DRIVINGR_ACCELERATE_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGR_AIDS","features":[58]},{"name":"DIBUTTON_DRIVINGR_BOOST","features":[58]},{"name":"DIBUTTON_DRIVINGR_BRAKE","features":[58]},{"name":"DIBUTTON_DRIVINGR_DASHBOARD","features":[58]},{"name":"DIBUTTON_DRIVINGR_DEVICE","features":[58]},{"name":"DIBUTTON_DRIVINGR_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGR_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGR_MAP","features":[58]},{"name":"DIBUTTON_DRIVINGR_MENU","features":[58]},{"name":"DIBUTTON_DRIVINGR_PAUSE","features":[58]},{"name":"DIBUTTON_DRIVINGR_PIT","features":[58]},{"name":"DIBUTTON_DRIVINGR_SHIFTDOWN","features":[58]},{"name":"DIBUTTON_DRIVINGR_SHIFTUP","features":[58]},{"name":"DIBUTTON_DRIVINGR_STEER_LEFT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGR_STEER_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGR_VIEW","features":[58]},{"name":"DIBUTTON_DRIVINGT_ACCELERATE_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_BARREL_DOWN_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_BARREL_UP_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_BRAKE","features":[58]},{"name":"DIBUTTON_DRIVINGT_DASHBOARD","features":[58]},{"name":"DIBUTTON_DRIVINGT_DEVICE","features":[58]},{"name":"DIBUTTON_DRIVINGT_FIRE","features":[58]},{"name":"DIBUTTON_DRIVINGT_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_DRIVINGT_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_MENU","features":[58]},{"name":"DIBUTTON_DRIVINGT_PAUSE","features":[58]},{"name":"DIBUTTON_DRIVINGT_ROTATE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_ROTATE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_STEER_LEFT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_STEER_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_DRIVINGT_TARGET","features":[58]},{"name":"DIBUTTON_DRIVINGT_VIEW","features":[58]},{"name":"DIBUTTON_DRIVINGT_WEAPONS","features":[58]},{"name":"DIBUTTON_FIGHTINGH_BACKWARD_LINK","features":[58]},{"name":"DIBUTTON_FIGHTINGH_BLOCK","features":[58]},{"name":"DIBUTTON_FIGHTINGH_CROUCH","features":[58]},{"name":"DIBUTTON_FIGHTINGH_DEVICE","features":[58]},{"name":"DIBUTTON_FIGHTINGH_DISPLAY","features":[58]},{"name":"DIBUTTON_FIGHTINGH_DODGE","features":[58]},{"name":"DIBUTTON_FIGHTINGH_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_FIGHTINGH_JUMP","features":[58]},{"name":"DIBUTTON_FIGHTINGH_KICK","features":[58]},{"name":"DIBUTTON_FIGHTINGH_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FIGHTINGH_MENU","features":[58]},{"name":"DIBUTTON_FIGHTINGH_PAUSE","features":[58]},{"name":"DIBUTTON_FIGHTINGH_PUNCH","features":[58]},{"name":"DIBUTTON_FIGHTINGH_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FIGHTINGH_SELECT","features":[58]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL1","features":[58]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL2","features":[58]},{"name":"DIBUTTON_FISHING_BACK_LINK","features":[58]},{"name":"DIBUTTON_FISHING_BAIT","features":[58]},{"name":"DIBUTTON_FISHING_BINOCULAR","features":[58]},{"name":"DIBUTTON_FISHING_CAST","features":[58]},{"name":"DIBUTTON_FISHING_CROUCH","features":[58]},{"name":"DIBUTTON_FISHING_DEVICE","features":[58]},{"name":"DIBUTTON_FISHING_DISPLAY","features":[58]},{"name":"DIBUTTON_FISHING_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_FISHING_JUMP","features":[58]},{"name":"DIBUTTON_FISHING_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FISHING_MAP","features":[58]},{"name":"DIBUTTON_FISHING_MENU","features":[58]},{"name":"DIBUTTON_FISHING_PAUSE","features":[58]},{"name":"DIBUTTON_FISHING_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FISHING_ROTATE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FISHING_ROTATE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FISHING_TYPE","features":[58]},{"name":"DIBUTTON_FLYINGC_BRAKE_LINK","features":[58]},{"name":"DIBUTTON_FLYINGC_DEVICE","features":[58]},{"name":"DIBUTTON_FLYINGC_DISPLAY","features":[58]},{"name":"DIBUTTON_FLYINGC_FASTER_LINK","features":[58]},{"name":"DIBUTTON_FLYINGC_FLAPSDOWN","features":[58]},{"name":"DIBUTTON_FLYINGC_FLAPSUP","features":[58]},{"name":"DIBUTTON_FLYINGC_GEAR","features":[58]},{"name":"DIBUTTON_FLYINGC_GLANCE_DOWN_LINK","features":[58]},{"name":"DIBUTTON_FLYINGC_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FLYINGC_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FLYINGC_GLANCE_UP_LINK","features":[58]},{"name":"DIBUTTON_FLYINGC_MENU","features":[58]},{"name":"DIBUTTON_FLYINGC_PAUSE","features":[58]},{"name":"DIBUTTON_FLYINGC_SLOWER_LINK","features":[58]},{"name":"DIBUTTON_FLYINGC_VIEW","features":[58]},{"name":"DIBUTTON_FLYINGH_COUNTER","features":[58]},{"name":"DIBUTTON_FLYINGH_DEVICE","features":[58]},{"name":"DIBUTTON_FLYINGH_FASTER_LINK","features":[58]},{"name":"DIBUTTON_FLYINGH_FIRE","features":[58]},{"name":"DIBUTTON_FLYINGH_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_FLYINGH_GEAR","features":[58]},{"name":"DIBUTTON_FLYINGH_GLANCE_DOWN_LINK","features":[58]},{"name":"DIBUTTON_FLYINGH_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FLYINGH_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FLYINGH_GLANCE_UP_LINK","features":[58]},{"name":"DIBUTTON_FLYINGH_MENU","features":[58]},{"name":"DIBUTTON_FLYINGH_PAUSE","features":[58]},{"name":"DIBUTTON_FLYINGH_SLOWER_LINK","features":[58]},{"name":"DIBUTTON_FLYINGH_TARGET","features":[58]},{"name":"DIBUTTON_FLYINGH_VIEW","features":[58]},{"name":"DIBUTTON_FLYINGH_WEAPONS","features":[58]},{"name":"DIBUTTON_FLYINGM_BRAKE_LINK","features":[58]},{"name":"DIBUTTON_FLYINGM_COUNTER","features":[58]},{"name":"DIBUTTON_FLYINGM_DEVICE","features":[58]},{"name":"DIBUTTON_FLYINGM_DISPLAY","features":[58]},{"name":"DIBUTTON_FLYINGM_FASTER_LINK","features":[58]},{"name":"DIBUTTON_FLYINGM_FIRE","features":[58]},{"name":"DIBUTTON_FLYINGM_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_FLYINGM_FLAPSDOWN","features":[58]},{"name":"DIBUTTON_FLYINGM_FLAPSUP","features":[58]},{"name":"DIBUTTON_FLYINGM_GEAR","features":[58]},{"name":"DIBUTTON_FLYINGM_GLANCE_DOWN_LINK","features":[58]},{"name":"DIBUTTON_FLYINGM_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FLYINGM_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FLYINGM_GLANCE_UP_LINK","features":[58]},{"name":"DIBUTTON_FLYINGM_MENU","features":[58]},{"name":"DIBUTTON_FLYINGM_PAUSE","features":[58]},{"name":"DIBUTTON_FLYINGM_SLOWER_LINK","features":[58]},{"name":"DIBUTTON_FLYINGM_TARGET","features":[58]},{"name":"DIBUTTON_FLYINGM_VIEW","features":[58]},{"name":"DIBUTTON_FLYINGM_WEAPONS","features":[58]},{"name":"DIBUTTON_FOOTBALLD_AUDIBLE","features":[58]},{"name":"DIBUTTON_FOOTBALLD_BACK_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLD_BULLRUSH","features":[58]},{"name":"DIBUTTON_FOOTBALLD_DEVICE","features":[58]},{"name":"DIBUTTON_FOOTBALLD_FAKE","features":[58]},{"name":"DIBUTTON_FOOTBALLD_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLD_JUMP","features":[58]},{"name":"DIBUTTON_FOOTBALLD_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLD_MENU","features":[58]},{"name":"DIBUTTON_FOOTBALLD_PAUSE","features":[58]},{"name":"DIBUTTON_FOOTBALLD_PLAY","features":[58]},{"name":"DIBUTTON_FOOTBALLD_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLD_RIP","features":[58]},{"name":"DIBUTTON_FOOTBALLD_SELECT","features":[58]},{"name":"DIBUTTON_FOOTBALLD_SPIN","features":[58]},{"name":"DIBUTTON_FOOTBALLD_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_FOOTBALLD_SUPERTACKLE","features":[58]},{"name":"DIBUTTON_FOOTBALLD_SWIM","features":[58]},{"name":"DIBUTTON_FOOTBALLD_TACKLE","features":[58]},{"name":"DIBUTTON_FOOTBALLD_ZOOM","features":[58]},{"name":"DIBUTTON_FOOTBALLO_BACK_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLO_DEVICE","features":[58]},{"name":"DIBUTTON_FOOTBALLO_DIVE","features":[58]},{"name":"DIBUTTON_FOOTBALLO_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLO_JUKE","features":[58]},{"name":"DIBUTTON_FOOTBALLO_JUMP","features":[58]},{"name":"DIBUTTON_FOOTBALLO_LEFTARM","features":[58]},{"name":"DIBUTTON_FOOTBALLO_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLO_MENU","features":[58]},{"name":"DIBUTTON_FOOTBALLO_PAUSE","features":[58]},{"name":"DIBUTTON_FOOTBALLO_RIGHTARM","features":[58]},{"name":"DIBUTTON_FOOTBALLO_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLO_SHOULDER","features":[58]},{"name":"DIBUTTON_FOOTBALLO_SPIN","features":[58]},{"name":"DIBUTTON_FOOTBALLO_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_FOOTBALLO_THROW","features":[58]},{"name":"DIBUTTON_FOOTBALLO_TURBO","features":[58]},{"name":"DIBUTTON_FOOTBALLO_ZOOM","features":[58]},{"name":"DIBUTTON_FOOTBALLP_DEVICE","features":[58]},{"name":"DIBUTTON_FOOTBALLP_HELP","features":[58]},{"name":"DIBUTTON_FOOTBALLP_MENU","features":[58]},{"name":"DIBUTTON_FOOTBALLP_PAUSE","features":[58]},{"name":"DIBUTTON_FOOTBALLP_PLAY","features":[58]},{"name":"DIBUTTON_FOOTBALLP_SELECT","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_AUDIBLE","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_BACK_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_DEVICE","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_FAKE","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_FAKESNAP","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_JUMP","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_MENU","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_MOTION","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_PASS","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_PAUSE","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_SELECT","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_SLIDE","features":[58]},{"name":"DIBUTTON_FOOTBALLQ_SNAP","features":[58]},{"name":"DIBUTTON_FPS_APPLY","features":[58]},{"name":"DIBUTTON_FPS_BACKWARD_LINK","features":[58]},{"name":"DIBUTTON_FPS_CROUCH","features":[58]},{"name":"DIBUTTON_FPS_DEVICE","features":[58]},{"name":"DIBUTTON_FPS_DISPLAY","features":[58]},{"name":"DIBUTTON_FPS_DODGE","features":[58]},{"name":"DIBUTTON_FPS_FIRE","features":[58]},{"name":"DIBUTTON_FPS_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_FPS_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_FPS_GLANCEL","features":[58]},{"name":"DIBUTTON_FPS_GLANCER","features":[58]},{"name":"DIBUTTON_FPS_GLANCE_DOWN_LINK","features":[58]},{"name":"DIBUTTON_FPS_GLANCE_UP_LINK","features":[58]},{"name":"DIBUTTON_FPS_JUMP","features":[58]},{"name":"DIBUTTON_FPS_MENU","features":[58]},{"name":"DIBUTTON_FPS_PAUSE","features":[58]},{"name":"DIBUTTON_FPS_ROTATE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FPS_ROTATE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FPS_SELECT","features":[58]},{"name":"DIBUTTON_FPS_STEP_LEFT_LINK","features":[58]},{"name":"DIBUTTON_FPS_STEP_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_FPS_STRAFE","features":[58]},{"name":"DIBUTTON_FPS_WEAPONS","features":[58]},{"name":"DIBUTTON_GOLF_BACK_LINK","features":[58]},{"name":"DIBUTTON_GOLF_DEVICE","features":[58]},{"name":"DIBUTTON_GOLF_DOWN","features":[58]},{"name":"DIBUTTON_GOLF_FLYBY","features":[58]},{"name":"DIBUTTON_GOLF_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_GOLF_LEFT_LINK","features":[58]},{"name":"DIBUTTON_GOLF_MENU","features":[58]},{"name":"DIBUTTON_GOLF_PAUSE","features":[58]},{"name":"DIBUTTON_GOLF_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_GOLF_SELECT","features":[58]},{"name":"DIBUTTON_GOLF_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_GOLF_SWING","features":[58]},{"name":"DIBUTTON_GOLF_TERRAIN","features":[58]},{"name":"DIBUTTON_GOLF_TIMEOUT","features":[58]},{"name":"DIBUTTON_GOLF_UP","features":[58]},{"name":"DIBUTTON_GOLF_ZOOM","features":[58]},{"name":"DIBUTTON_HOCKEYD_BACK_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYD_BLOCK","features":[58]},{"name":"DIBUTTON_HOCKEYD_BURST","features":[58]},{"name":"DIBUTTON_HOCKEYD_DEVICE","features":[58]},{"name":"DIBUTTON_HOCKEYD_FAKE","features":[58]},{"name":"DIBUTTON_HOCKEYD_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYD_LEFT_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYD_MENU","features":[58]},{"name":"DIBUTTON_HOCKEYD_PAUSE","features":[58]},{"name":"DIBUTTON_HOCKEYD_PLAYER","features":[58]},{"name":"DIBUTTON_HOCKEYD_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYD_STEAL","features":[58]},{"name":"DIBUTTON_HOCKEYD_STRATEGY","features":[58]},{"name":"DIBUTTON_HOCKEYD_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_HOCKEYD_TIMEOUT","features":[58]},{"name":"DIBUTTON_HOCKEYD_ZOOM","features":[58]},{"name":"DIBUTTON_HOCKEYG_BACK_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYG_BLOCK","features":[58]},{"name":"DIBUTTON_HOCKEYG_DEVICE","features":[58]},{"name":"DIBUTTON_HOCKEYG_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYG_LEFT_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYG_MENU","features":[58]},{"name":"DIBUTTON_HOCKEYG_PASS","features":[58]},{"name":"DIBUTTON_HOCKEYG_PAUSE","features":[58]},{"name":"DIBUTTON_HOCKEYG_POKE","features":[58]},{"name":"DIBUTTON_HOCKEYG_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYG_STEAL","features":[58]},{"name":"DIBUTTON_HOCKEYG_STRATEGY","features":[58]},{"name":"DIBUTTON_HOCKEYG_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_HOCKEYG_TIMEOUT","features":[58]},{"name":"DIBUTTON_HOCKEYG_ZOOM","features":[58]},{"name":"DIBUTTON_HOCKEYO_BACK_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYO_BURST","features":[58]},{"name":"DIBUTTON_HOCKEYO_DEVICE","features":[58]},{"name":"DIBUTTON_HOCKEYO_FAKE","features":[58]},{"name":"DIBUTTON_HOCKEYO_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYO_LEFT_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYO_MENU","features":[58]},{"name":"DIBUTTON_HOCKEYO_PASS","features":[58]},{"name":"DIBUTTON_HOCKEYO_PAUSE","features":[58]},{"name":"DIBUTTON_HOCKEYO_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_HOCKEYO_SHOOT","features":[58]},{"name":"DIBUTTON_HOCKEYO_SPECIAL","features":[58]},{"name":"DIBUTTON_HOCKEYO_STRATEGY","features":[58]},{"name":"DIBUTTON_HOCKEYO_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_HOCKEYO_TIMEOUT","features":[58]},{"name":"DIBUTTON_HOCKEYO_ZOOM","features":[58]},{"name":"DIBUTTON_HUNTING_AIM","features":[58]},{"name":"DIBUTTON_HUNTING_BACK_LINK","features":[58]},{"name":"DIBUTTON_HUNTING_BINOCULAR","features":[58]},{"name":"DIBUTTON_HUNTING_CALL","features":[58]},{"name":"DIBUTTON_HUNTING_CROUCH","features":[58]},{"name":"DIBUTTON_HUNTING_DEVICE","features":[58]},{"name":"DIBUTTON_HUNTING_DISPLAY","features":[58]},{"name":"DIBUTTON_HUNTING_FIRE","features":[58]},{"name":"DIBUTTON_HUNTING_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_HUNTING_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_HUNTING_JUMP","features":[58]},{"name":"DIBUTTON_HUNTING_LEFT_LINK","features":[58]},{"name":"DIBUTTON_HUNTING_MAP","features":[58]},{"name":"DIBUTTON_HUNTING_MENU","features":[58]},{"name":"DIBUTTON_HUNTING_PAUSE","features":[58]},{"name":"DIBUTTON_HUNTING_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_HUNTING_ROTATE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_HUNTING_ROTATE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_HUNTING_SPECIAL","features":[58]},{"name":"DIBUTTON_HUNTING_WEAPON","features":[58]},{"name":"DIBUTTON_MECHA_BACK_LINK","features":[58]},{"name":"DIBUTTON_MECHA_CENTER","features":[58]},{"name":"DIBUTTON_MECHA_DEVICE","features":[58]},{"name":"DIBUTTON_MECHA_FASTER_LINK","features":[58]},{"name":"DIBUTTON_MECHA_FIRE","features":[58]},{"name":"DIBUTTON_MECHA_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_MECHA_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_MECHA_JUMP","features":[58]},{"name":"DIBUTTON_MECHA_LEFT_LINK","features":[58]},{"name":"DIBUTTON_MECHA_MENU","features":[58]},{"name":"DIBUTTON_MECHA_PAUSE","features":[58]},{"name":"DIBUTTON_MECHA_REVERSE","features":[58]},{"name":"DIBUTTON_MECHA_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_MECHA_ROTATE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_MECHA_ROTATE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_MECHA_SLOWER_LINK","features":[58]},{"name":"DIBUTTON_MECHA_TARGET","features":[58]},{"name":"DIBUTTON_MECHA_VIEW","features":[58]},{"name":"DIBUTTON_MECHA_WEAPONS","features":[58]},{"name":"DIBUTTON_MECHA_ZOOM","features":[58]},{"name":"DIBUTTON_RACQUET_BACKSWING","features":[58]},{"name":"DIBUTTON_RACQUET_BACK_LINK","features":[58]},{"name":"DIBUTTON_RACQUET_DEVICE","features":[58]},{"name":"DIBUTTON_RACQUET_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_RACQUET_LEFT_LINK","features":[58]},{"name":"DIBUTTON_RACQUET_MENU","features":[58]},{"name":"DIBUTTON_RACQUET_PAUSE","features":[58]},{"name":"DIBUTTON_RACQUET_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_RACQUET_SELECT","features":[58]},{"name":"DIBUTTON_RACQUET_SMASH","features":[58]},{"name":"DIBUTTON_RACQUET_SPECIAL","features":[58]},{"name":"DIBUTTON_RACQUET_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_RACQUET_SWING","features":[58]},{"name":"DIBUTTON_RACQUET_TIMEOUT","features":[58]},{"name":"DIBUTTON_REMOTE_ADJUST","features":[58]},{"name":"DIBUTTON_REMOTE_CABLE","features":[58]},{"name":"DIBUTTON_REMOTE_CD","features":[58]},{"name":"DIBUTTON_REMOTE_CHANGE","features":[58]},{"name":"DIBUTTON_REMOTE_CUE","features":[58]},{"name":"DIBUTTON_REMOTE_DEVICE","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT0","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT1","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT2","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT3","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT4","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT5","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT6","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT7","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT8","features":[58]},{"name":"DIBUTTON_REMOTE_DIGIT9","features":[58]},{"name":"DIBUTTON_REMOTE_DVD","features":[58]},{"name":"DIBUTTON_REMOTE_MENU","features":[58]},{"name":"DIBUTTON_REMOTE_MUTE","features":[58]},{"name":"DIBUTTON_REMOTE_PAUSE","features":[58]},{"name":"DIBUTTON_REMOTE_PLAY","features":[58]},{"name":"DIBUTTON_REMOTE_RECORD","features":[58]},{"name":"DIBUTTON_REMOTE_REVIEW","features":[58]},{"name":"DIBUTTON_REMOTE_SELECT","features":[58]},{"name":"DIBUTTON_REMOTE_TUNER","features":[58]},{"name":"DIBUTTON_REMOTE_TV","features":[58]},{"name":"DIBUTTON_REMOTE_VCR","features":[58]},{"name":"DIBUTTON_SKIING_CAMERA","features":[58]},{"name":"DIBUTTON_SKIING_CROUCH","features":[58]},{"name":"DIBUTTON_SKIING_DEVICE","features":[58]},{"name":"DIBUTTON_SKIING_FASTER_LINK","features":[58]},{"name":"DIBUTTON_SKIING_JUMP","features":[58]},{"name":"DIBUTTON_SKIING_LEFT_LINK","features":[58]},{"name":"DIBUTTON_SKIING_MENU","features":[58]},{"name":"DIBUTTON_SKIING_PAUSE","features":[58]},{"name":"DIBUTTON_SKIING_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_SKIING_SELECT","features":[58]},{"name":"DIBUTTON_SKIING_SLOWER_LINK","features":[58]},{"name":"DIBUTTON_SKIING_SPECIAL1","features":[58]},{"name":"DIBUTTON_SKIING_SPECIAL2","features":[58]},{"name":"DIBUTTON_SKIING_ZOOM","features":[58]},{"name":"DIBUTTON_SOCCERD_BACK_LINK","features":[58]},{"name":"DIBUTTON_SOCCERD_BLOCK","features":[58]},{"name":"DIBUTTON_SOCCERD_CLEAR","features":[58]},{"name":"DIBUTTON_SOCCERD_DEVICE","features":[58]},{"name":"DIBUTTON_SOCCERD_FAKE","features":[58]},{"name":"DIBUTTON_SOCCERD_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_SOCCERD_FOUL","features":[58]},{"name":"DIBUTTON_SOCCERD_GOALIECHARGE","features":[58]},{"name":"DIBUTTON_SOCCERD_HEAD","features":[58]},{"name":"DIBUTTON_SOCCERD_LEFT_LINK","features":[58]},{"name":"DIBUTTON_SOCCERD_MENU","features":[58]},{"name":"DIBUTTON_SOCCERD_PAUSE","features":[58]},{"name":"DIBUTTON_SOCCERD_PLAYER","features":[58]},{"name":"DIBUTTON_SOCCERD_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_SOCCERD_SELECT","features":[58]},{"name":"DIBUTTON_SOCCERD_SLIDE","features":[58]},{"name":"DIBUTTON_SOCCERD_SPECIAL","features":[58]},{"name":"DIBUTTON_SOCCERD_STEAL","features":[58]},{"name":"DIBUTTON_SOCCERD_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_SOCCERO_BACK_LINK","features":[58]},{"name":"DIBUTTON_SOCCERO_CONTROL","features":[58]},{"name":"DIBUTTON_SOCCERO_DEVICE","features":[58]},{"name":"DIBUTTON_SOCCERO_FAKE","features":[58]},{"name":"DIBUTTON_SOCCERO_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_SOCCERO_HEAD","features":[58]},{"name":"DIBUTTON_SOCCERO_LEFT_LINK","features":[58]},{"name":"DIBUTTON_SOCCERO_MENU","features":[58]},{"name":"DIBUTTON_SOCCERO_PASS","features":[58]},{"name":"DIBUTTON_SOCCERO_PASSTHRU","features":[58]},{"name":"DIBUTTON_SOCCERO_PAUSE","features":[58]},{"name":"DIBUTTON_SOCCERO_PLAYER","features":[58]},{"name":"DIBUTTON_SOCCERO_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_SOCCERO_SELECT","features":[58]},{"name":"DIBUTTON_SOCCERO_SHOOT","features":[58]},{"name":"DIBUTTON_SOCCERO_SHOOTHIGH","features":[58]},{"name":"DIBUTTON_SOCCERO_SHOOTLOW","features":[58]},{"name":"DIBUTTON_SOCCERO_SPECIAL1","features":[58]},{"name":"DIBUTTON_SOCCERO_SPRINT","features":[58]},{"name":"DIBUTTON_SOCCERO_SUBSTITUTE","features":[58]},{"name":"DIBUTTON_SPACESIM_BACKWARD_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_DEVICE","features":[58]},{"name":"DIBUTTON_SPACESIM_DISPLAY","features":[58]},{"name":"DIBUTTON_SPACESIM_FASTER_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_FIRE","features":[58]},{"name":"DIBUTTON_SPACESIM_FIRESECONDARY","features":[58]},{"name":"DIBUTTON_SPACESIM_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_GEAR","features":[58]},{"name":"DIBUTTON_SPACESIM_GLANCE_DOWN_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_GLANCE_UP_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_LEFT_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_LOWER","features":[58]},{"name":"DIBUTTON_SPACESIM_MENU","features":[58]},{"name":"DIBUTTON_SPACESIM_PAUSE","features":[58]},{"name":"DIBUTTON_SPACESIM_RAISE","features":[58]},{"name":"DIBUTTON_SPACESIM_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_SLOWER_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_TARGET","features":[58]},{"name":"DIBUTTON_SPACESIM_TURN_LEFT_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_TURN_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_SPACESIM_VIEW","features":[58]},{"name":"DIBUTTON_SPACESIM_WEAPONS","features":[58]},{"name":"DIBUTTON_STRATEGYR_APPLY","features":[58]},{"name":"DIBUTTON_STRATEGYR_ATTACK","features":[58]},{"name":"DIBUTTON_STRATEGYR_BACK_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYR_CAST","features":[58]},{"name":"DIBUTTON_STRATEGYR_CROUCH","features":[58]},{"name":"DIBUTTON_STRATEGYR_DEVICE","features":[58]},{"name":"DIBUTTON_STRATEGYR_DISPLAY","features":[58]},{"name":"DIBUTTON_STRATEGYR_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYR_GET","features":[58]},{"name":"DIBUTTON_STRATEGYR_JUMP","features":[58]},{"name":"DIBUTTON_STRATEGYR_LEFT_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYR_MAP","features":[58]},{"name":"DIBUTTON_STRATEGYR_MENU","features":[58]},{"name":"DIBUTTON_STRATEGYR_PAUSE","features":[58]},{"name":"DIBUTTON_STRATEGYR_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYR_ROTATE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYR_ROTATE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYR_SELECT","features":[58]},{"name":"DIBUTTON_STRATEGYT_APPLY","features":[58]},{"name":"DIBUTTON_STRATEGYT_BACK_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYT_DEVICE","features":[58]},{"name":"DIBUTTON_STRATEGYT_DISPLAY","features":[58]},{"name":"DIBUTTON_STRATEGYT_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYT_INSTRUCT","features":[58]},{"name":"DIBUTTON_STRATEGYT_LEFT_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYT_MAP","features":[58]},{"name":"DIBUTTON_STRATEGYT_MENU","features":[58]},{"name":"DIBUTTON_STRATEGYT_PAUSE","features":[58]},{"name":"DIBUTTON_STRATEGYT_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_STRATEGYT_SELECT","features":[58]},{"name":"DIBUTTON_STRATEGYT_TEAM","features":[58]},{"name":"DIBUTTON_STRATEGYT_TURN","features":[58]},{"name":"DIBUTTON_STRATEGYT_ZOOM","features":[58]},{"name":"DIBUTTON_TPS_ACTION","features":[58]},{"name":"DIBUTTON_TPS_BACKWARD_LINK","features":[58]},{"name":"DIBUTTON_TPS_DEVICE","features":[58]},{"name":"DIBUTTON_TPS_DODGE","features":[58]},{"name":"DIBUTTON_TPS_FORWARD_LINK","features":[58]},{"name":"DIBUTTON_TPS_GLANCE_DOWN_LINK","features":[58]},{"name":"DIBUTTON_TPS_GLANCE_LEFT_LINK","features":[58]},{"name":"DIBUTTON_TPS_GLANCE_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_TPS_GLANCE_UP_LINK","features":[58]},{"name":"DIBUTTON_TPS_INVENTORY","features":[58]},{"name":"DIBUTTON_TPS_JUMP","features":[58]},{"name":"DIBUTTON_TPS_MENU","features":[58]},{"name":"DIBUTTON_TPS_PAUSE","features":[58]},{"name":"DIBUTTON_TPS_RUN","features":[58]},{"name":"DIBUTTON_TPS_SELECT","features":[58]},{"name":"DIBUTTON_TPS_STEPLEFT","features":[58]},{"name":"DIBUTTON_TPS_STEPRIGHT","features":[58]},{"name":"DIBUTTON_TPS_TURN_LEFT_LINK","features":[58]},{"name":"DIBUTTON_TPS_TURN_RIGHT_LINK","features":[58]},{"name":"DIBUTTON_TPS_USE","features":[58]},{"name":"DIBUTTON_TPS_VIEW","features":[58]},{"name":"DICD_DEFAULT","features":[58]},{"name":"DICD_EDIT","features":[58]},{"name":"DICOLORSET","features":[58]},{"name":"DICONDITION","features":[58]},{"name":"DICONFIGUREDEVICESPARAMSA","features":[58,1]},{"name":"DICONFIGUREDEVICESPARAMSW","features":[58,1]},{"name":"DICONSTANTFORCE","features":[58]},{"name":"DICUSTOMFORCE","features":[58]},{"name":"DIDAL_BOTTOMALIGNED","features":[58]},{"name":"DIDAL_CENTERED","features":[58]},{"name":"DIDAL_LEFTALIGNED","features":[58]},{"name":"DIDAL_MIDDLE","features":[58]},{"name":"DIDAL_RIGHTALIGNED","features":[58]},{"name":"DIDAL_TOPALIGNED","features":[58]},{"name":"DIDATAFORMAT","features":[58]},{"name":"DIDBAM_DEFAULT","features":[58]},{"name":"DIDBAM_HWDEFAULTS","features":[58]},{"name":"DIDBAM_INITIALIZE","features":[58]},{"name":"DIDBAM_PRESERVE","features":[58]},{"name":"DIDC_ALIAS","features":[58]},{"name":"DIDC_ATTACHED","features":[58]},{"name":"DIDC_DEADBAND","features":[58]},{"name":"DIDC_EMULATED","features":[58]},{"name":"DIDC_FFATTACK","features":[58]},{"name":"DIDC_FFFADE","features":[58]},{"name":"DIDC_FORCEFEEDBACK","features":[58]},{"name":"DIDC_HIDDEN","features":[58]},{"name":"DIDC_PHANTOM","features":[58]},{"name":"DIDC_POLLEDDATAFORMAT","features":[58]},{"name":"DIDC_POLLEDDEVICE","features":[58]},{"name":"DIDC_POSNEGCOEFFICIENTS","features":[58]},{"name":"DIDC_POSNEGSATURATION","features":[58]},{"name":"DIDC_SATURATION","features":[58]},{"name":"DIDC_STARTDELAY","features":[58]},{"name":"DIDEVCAPS","features":[58]},{"name":"DIDEVCAPS_DX3","features":[58]},{"name":"DIDEVICEIMAGEINFOA","features":[58,1]},{"name":"DIDEVICEIMAGEINFOHEADERA","features":[58,1]},{"name":"DIDEVICEIMAGEINFOHEADERW","features":[58,1]},{"name":"DIDEVICEIMAGEINFOW","features":[58,1]},{"name":"DIDEVICEINSTANCEA","features":[58]},{"name":"DIDEVICEINSTANCEW","features":[58]},{"name":"DIDEVICEINSTANCE_DX3A","features":[58]},{"name":"DIDEVICEINSTANCE_DX3W","features":[58]},{"name":"DIDEVICEOBJECTDATA","features":[58]},{"name":"DIDEVICEOBJECTDATA_DX3","features":[58]},{"name":"DIDEVICEOBJECTINSTANCEA","features":[58]},{"name":"DIDEVICEOBJECTINSTANCEW","features":[58]},{"name":"DIDEVICEOBJECTINSTANCE_DX3A","features":[58]},{"name":"DIDEVICEOBJECTINSTANCE_DX3W","features":[58]},{"name":"DIDEVICESTATE","features":[58]},{"name":"DIDEVTYPEJOYSTICK_FLIGHTSTICK","features":[58]},{"name":"DIDEVTYPEJOYSTICK_GAMEPAD","features":[58]},{"name":"DIDEVTYPEJOYSTICK_HEADTRACKER","features":[58]},{"name":"DIDEVTYPEJOYSTICK_RUDDER","features":[58]},{"name":"DIDEVTYPEJOYSTICK_TRADITIONAL","features":[58]},{"name":"DIDEVTYPEJOYSTICK_UNKNOWN","features":[58]},{"name":"DIDEVTYPEJOYSTICK_WHEEL","features":[58]},{"name":"DIDEVTYPEKEYBOARD_J3100","features":[58]},{"name":"DIDEVTYPEKEYBOARD_JAPAN106","features":[58]},{"name":"DIDEVTYPEKEYBOARD_JAPANAX","features":[58]},{"name":"DIDEVTYPEKEYBOARD_NEC98","features":[58]},{"name":"DIDEVTYPEKEYBOARD_NEC98106","features":[58]},{"name":"DIDEVTYPEKEYBOARD_NEC98LAPTOP","features":[58]},{"name":"DIDEVTYPEKEYBOARD_NOKIA1050","features":[58]},{"name":"DIDEVTYPEKEYBOARD_NOKIA9140","features":[58]},{"name":"DIDEVTYPEKEYBOARD_OLIVETTI","features":[58]},{"name":"DIDEVTYPEKEYBOARD_PCAT","features":[58]},{"name":"DIDEVTYPEKEYBOARD_PCENH","features":[58]},{"name":"DIDEVTYPEKEYBOARD_PCXT","features":[58]},{"name":"DIDEVTYPEKEYBOARD_UNKNOWN","features":[58]},{"name":"DIDEVTYPEMOUSE_FINGERSTICK","features":[58]},{"name":"DIDEVTYPEMOUSE_TOUCHPAD","features":[58]},{"name":"DIDEVTYPEMOUSE_TRACKBALL","features":[58]},{"name":"DIDEVTYPEMOUSE_TRADITIONAL","features":[58]},{"name":"DIDEVTYPEMOUSE_UNKNOWN","features":[58]},{"name":"DIDEVTYPE_DEVICE","features":[58]},{"name":"DIDEVTYPE_HID","features":[58]},{"name":"DIDEVTYPE_JOYSTICK","features":[58]},{"name":"DIDEVTYPE_KEYBOARD","features":[58]},{"name":"DIDEVTYPE_MOUSE","features":[58]},{"name":"DIDFT_ABSAXIS","features":[58]},{"name":"DIDFT_ALIAS","features":[58]},{"name":"DIDFT_ALL","features":[58]},{"name":"DIDFT_ANYINSTANCE","features":[58]},{"name":"DIDFT_AXIS","features":[58]},{"name":"DIDFT_BUTTON","features":[58]},{"name":"DIDFT_COLLECTION","features":[58]},{"name":"DIDFT_FFACTUATOR","features":[58]},{"name":"DIDFT_FFEFFECTTRIGGER","features":[58]},{"name":"DIDFT_INSTANCEMASK","features":[58]},{"name":"DIDFT_NOCOLLECTION","features":[58]},{"name":"DIDFT_NODATA","features":[58]},{"name":"DIDFT_OUTPUT","features":[58]},{"name":"DIDFT_POV","features":[58]},{"name":"DIDFT_PSHBUTTON","features":[58]},{"name":"DIDFT_RELAXIS","features":[58]},{"name":"DIDFT_TGLBUTTON","features":[58]},{"name":"DIDFT_VENDORDEFINED","features":[58]},{"name":"DIDF_ABSAXIS","features":[58]},{"name":"DIDF_RELAXIS","features":[58]},{"name":"DIDIFT_CONFIGURATION","features":[58]},{"name":"DIDIFT_DELETE","features":[58]},{"name":"DIDIFT_OVERLAY","features":[58]},{"name":"DIDOI_ASPECTACCEL","features":[58]},{"name":"DIDOI_ASPECTFORCE","features":[58]},{"name":"DIDOI_ASPECTMASK","features":[58]},{"name":"DIDOI_ASPECTPOSITION","features":[58]},{"name":"DIDOI_ASPECTVELOCITY","features":[58]},{"name":"DIDOI_FFACTUATOR","features":[58]},{"name":"DIDOI_FFEFFECTTRIGGER","features":[58]},{"name":"DIDOI_GUIDISUSAGE","features":[58]},{"name":"DIDOI_POLLED","features":[58]},{"name":"DIDRIVERVERSIONS","features":[58]},{"name":"DIDSAM_DEFAULT","features":[58]},{"name":"DIDSAM_FORCESAVE","features":[58]},{"name":"DIDSAM_NOUSER","features":[58]},{"name":"DIEB_NOTRIGGER","features":[58]},{"name":"DIEDBSFL_ATTACHEDONLY","features":[58]},{"name":"DIEDBSFL_AVAILABLEDEVICES","features":[58]},{"name":"DIEDBSFL_FORCEFEEDBACK","features":[58]},{"name":"DIEDBSFL_MULTIMICEKEYBOARDS","features":[58]},{"name":"DIEDBSFL_NONGAMINGDEVICES","features":[58]},{"name":"DIEDBSFL_THISUSER","features":[58]},{"name":"DIEDBSFL_VALID","features":[58]},{"name":"DIEDBS_MAPPEDPRI1","features":[58]},{"name":"DIEDBS_MAPPEDPRI2","features":[58]},{"name":"DIEDBS_NEWDEVICE","features":[58]},{"name":"DIEDBS_RECENTDEVICE","features":[58]},{"name":"DIEDFL_ALLDEVICES","features":[58]},{"name":"DIEDFL_ATTACHEDONLY","features":[58]},{"name":"DIEDFL_FORCEFEEDBACK","features":[58]},{"name":"DIEDFL_INCLUDEALIASES","features":[58]},{"name":"DIEDFL_INCLUDEHIDDEN","features":[58]},{"name":"DIEDFL_INCLUDEPHANTOMS","features":[58]},{"name":"DIEFFECT","features":[58]},{"name":"DIEFFECTATTRIBUTES","features":[58]},{"name":"DIEFFECTINFOA","features":[58]},{"name":"DIEFFECTINFOW","features":[58]},{"name":"DIEFFECT_DX5","features":[58]},{"name":"DIEFFESCAPE","features":[58]},{"name":"DIEFF_CARTESIAN","features":[58]},{"name":"DIEFF_OBJECTIDS","features":[58]},{"name":"DIEFF_OBJECTOFFSETS","features":[58]},{"name":"DIEFF_POLAR","features":[58]},{"name":"DIEFF_SPHERICAL","features":[58]},{"name":"DIEFT_ALL","features":[58]},{"name":"DIEFT_CONDITION","features":[58]},{"name":"DIEFT_CONSTANTFORCE","features":[58]},{"name":"DIEFT_CUSTOMFORCE","features":[58]},{"name":"DIEFT_DEADBAND","features":[58]},{"name":"DIEFT_FFATTACK","features":[58]},{"name":"DIEFT_FFFADE","features":[58]},{"name":"DIEFT_HARDWARE","features":[58]},{"name":"DIEFT_PERIODIC","features":[58]},{"name":"DIEFT_POSNEGCOEFFICIENTS","features":[58]},{"name":"DIEFT_POSNEGSATURATION","features":[58]},{"name":"DIEFT_RAMPFORCE","features":[58]},{"name":"DIEFT_SATURATION","features":[58]},{"name":"DIEFT_STARTDELAY","features":[58]},{"name":"DIEGES_EMULATED","features":[58]},{"name":"DIEGES_PLAYING","features":[58]},{"name":"DIENUM_CONTINUE","features":[58]},{"name":"DIENUM_STOP","features":[58]},{"name":"DIENVELOPE","features":[58]},{"name":"DIEP_ALLPARAMS","features":[58]},{"name":"DIEP_ALLPARAMS_DX5","features":[58]},{"name":"DIEP_AXES","features":[58]},{"name":"DIEP_DIRECTION","features":[58]},{"name":"DIEP_DURATION","features":[58]},{"name":"DIEP_ENVELOPE","features":[58]},{"name":"DIEP_GAIN","features":[58]},{"name":"DIEP_NODOWNLOAD","features":[58]},{"name":"DIEP_NORESTART","features":[58]},{"name":"DIEP_SAMPLEPERIOD","features":[58]},{"name":"DIEP_START","features":[58]},{"name":"DIEP_STARTDELAY","features":[58]},{"name":"DIEP_TRIGGERBUTTON","features":[58]},{"name":"DIEP_TRIGGERREPEATINTERVAL","features":[58]},{"name":"DIEP_TYPESPECIFICPARAMS","features":[58]},{"name":"DIERR_ACQUIRED","features":[58]},{"name":"DIERR_ALREADYINITIALIZED","features":[58]},{"name":"DIERR_BADDRIVERVER","features":[58]},{"name":"DIERR_BADINF","features":[58]},{"name":"DIERR_BETADIRECTINPUTVERSION","features":[58]},{"name":"DIERR_CANCELLED","features":[58]},{"name":"DIERR_DEVICEFULL","features":[58]},{"name":"DIERR_DEVICENOTREG","features":[58]},{"name":"DIERR_DRIVERFIRST","features":[58]},{"name":"DIERR_DRIVERLAST","features":[58]},{"name":"DIERR_EFFECTPLAYING","features":[58]},{"name":"DIERR_GENERIC","features":[58]},{"name":"DIERR_HANDLEEXISTS","features":[58]},{"name":"DIERR_HASEFFECTS","features":[58]},{"name":"DIERR_INCOMPLETEEFFECT","features":[58]},{"name":"DIERR_INPUTLOST","features":[58]},{"name":"DIERR_INSUFFICIENTPRIVS","features":[58]},{"name":"DIERR_INVALIDCLASSINSTALLER","features":[58]},{"name":"DIERR_INVALIDPARAM","features":[58]},{"name":"DIERR_MAPFILEFAIL","features":[58]},{"name":"DIERR_MOREDATA","features":[58]},{"name":"DIERR_NOAGGREGATION","features":[58]},{"name":"DIERR_NOINTERFACE","features":[58]},{"name":"DIERR_NOMOREITEMS","features":[58]},{"name":"DIERR_NOTACQUIRED","features":[58]},{"name":"DIERR_NOTBUFFERED","features":[58]},{"name":"DIERR_NOTDOWNLOADED","features":[58]},{"name":"DIERR_NOTEXCLUSIVEACQUIRED","features":[58]},{"name":"DIERR_NOTFOUND","features":[58]},{"name":"DIERR_NOTINITIALIZED","features":[58]},{"name":"DIERR_OBJECTNOTFOUND","features":[58]},{"name":"DIERR_OLDDIRECTINPUTVERSION","features":[58]},{"name":"DIERR_OTHERAPPHASPRIO","features":[58]},{"name":"DIERR_OUTOFMEMORY","features":[58]},{"name":"DIERR_READONLY","features":[58]},{"name":"DIERR_REPORTFULL","features":[58]},{"name":"DIERR_UNPLUGGED","features":[58]},{"name":"DIERR_UNSUPPORTED","features":[58]},{"name":"DIES_NODOWNLOAD","features":[58]},{"name":"DIES_SOLO","features":[58]},{"name":"DIFEF_DEFAULT","features":[58]},{"name":"DIFEF_INCLUDENONSTANDARD","features":[58]},{"name":"DIFEF_MODIFYIFNEEDED","features":[58]},{"name":"DIFFDEVICEATTRIBUTES","features":[58]},{"name":"DIFFOBJECTATTRIBUTES","features":[58]},{"name":"DIFILEEFFECT","features":[58]},{"name":"DIGDD_PEEK","features":[58]},{"name":"DIGFFS_ACTUATORSOFF","features":[58]},{"name":"DIGFFS_ACTUATORSON","features":[58]},{"name":"DIGFFS_DEVICELOST","features":[58]},{"name":"DIGFFS_EMPTY","features":[58]},{"name":"DIGFFS_PAUSED","features":[58]},{"name":"DIGFFS_POWEROFF","features":[58]},{"name":"DIGFFS_POWERON","features":[58]},{"name":"DIGFFS_SAFETYSWITCHOFF","features":[58]},{"name":"DIGFFS_SAFETYSWITCHON","features":[58]},{"name":"DIGFFS_STOPPED","features":[58]},{"name":"DIGFFS_USERFFSWITCHOFF","features":[58]},{"name":"DIGFFS_USERFFSWITCHON","features":[58]},{"name":"DIHATSWITCH_2DCONTROL_HATSWITCH","features":[58]},{"name":"DIHATSWITCH_3DCONTROL_HATSWITCH","features":[58]},{"name":"DIHATSWITCH_ARCADEP_VIEW","features":[58]},{"name":"DIHATSWITCH_ARCADES_VIEW","features":[58]},{"name":"DIHATSWITCH_BBALLD_GLANCE","features":[58]},{"name":"DIHATSWITCH_BBALLO_GLANCE","features":[58]},{"name":"DIHATSWITCH_BIKINGM_SCROLL","features":[58]},{"name":"DIHATSWITCH_CADF_HATSWITCH","features":[58]},{"name":"DIHATSWITCH_CADM_HATSWITCH","features":[58]},{"name":"DIHATSWITCH_DRIVINGC_GLANCE","features":[58]},{"name":"DIHATSWITCH_DRIVINGR_GLANCE","features":[58]},{"name":"DIHATSWITCH_DRIVINGT_GLANCE","features":[58]},{"name":"DIHATSWITCH_FIGHTINGH_SLIDE","features":[58]},{"name":"DIHATSWITCH_FISHING_GLANCE","features":[58]},{"name":"DIHATSWITCH_FLYINGC_GLANCE","features":[58]},{"name":"DIHATSWITCH_FLYINGH_GLANCE","features":[58]},{"name":"DIHATSWITCH_FLYINGM_GLANCE","features":[58]},{"name":"DIHATSWITCH_FPS_GLANCE","features":[58]},{"name":"DIHATSWITCH_GOLF_SCROLL","features":[58]},{"name":"DIHATSWITCH_HOCKEYD_SCROLL","features":[58]},{"name":"DIHATSWITCH_HOCKEYG_SCROLL","features":[58]},{"name":"DIHATSWITCH_HOCKEYO_SCROLL","features":[58]},{"name":"DIHATSWITCH_HUNTING_GLANCE","features":[58]},{"name":"DIHATSWITCH_MECHA_GLANCE","features":[58]},{"name":"DIHATSWITCH_RACQUET_GLANCE","features":[58]},{"name":"DIHATSWITCH_SKIING_GLANCE","features":[58]},{"name":"DIHATSWITCH_SOCCERD_GLANCE","features":[58]},{"name":"DIHATSWITCH_SOCCERO_GLANCE","features":[58]},{"name":"DIHATSWITCH_SPACESIM_GLANCE","features":[58]},{"name":"DIHATSWITCH_STRATEGYR_GLANCE","features":[58]},{"name":"DIHATSWITCH_TPS_GLANCE","features":[58]},{"name":"DIHIDFFINITINFO","features":[58]},{"name":"DIJC_CALLOUT","features":[58]},{"name":"DIJC_GAIN","features":[58]},{"name":"DIJC_GUIDINSTANCE","features":[58]},{"name":"DIJC_REGHWCONFIGTYPE","features":[58]},{"name":"DIJC_WDMGAMEPORT","features":[58]},{"name":"DIJOYCONFIG","features":[58]},{"name":"DIJOYCONFIG_DX5","features":[58]},{"name":"DIJOYSTATE","features":[58]},{"name":"DIJOYSTATE2","features":[58]},{"name":"DIJOYTYPEINFO","features":[58]},{"name":"DIJOYTYPEINFO_DX5","features":[58]},{"name":"DIJOYTYPEINFO_DX6","features":[58]},{"name":"DIJOYUSERVALUES","features":[58]},{"name":"DIJU_GAMEPORTEMULATOR","features":[58]},{"name":"DIJU_GLOBALDRIVER","features":[58]},{"name":"DIJU_USERVALUES","features":[58]},{"name":"DIKEYBOARD_0","features":[58]},{"name":"DIKEYBOARD_1","features":[58]},{"name":"DIKEYBOARD_2","features":[58]},{"name":"DIKEYBOARD_3","features":[58]},{"name":"DIKEYBOARD_4","features":[58]},{"name":"DIKEYBOARD_5","features":[58]},{"name":"DIKEYBOARD_6","features":[58]},{"name":"DIKEYBOARD_7","features":[58]},{"name":"DIKEYBOARD_8","features":[58]},{"name":"DIKEYBOARD_9","features":[58]},{"name":"DIKEYBOARD_A","features":[58]},{"name":"DIKEYBOARD_ABNT_C1","features":[58]},{"name":"DIKEYBOARD_ABNT_C2","features":[58]},{"name":"DIKEYBOARD_ADD","features":[58]},{"name":"DIKEYBOARD_APOSTROPHE","features":[58]},{"name":"DIKEYBOARD_APPS","features":[58]},{"name":"DIKEYBOARD_AT","features":[58]},{"name":"DIKEYBOARD_AX","features":[58]},{"name":"DIKEYBOARD_B","features":[58]},{"name":"DIKEYBOARD_BACK","features":[58]},{"name":"DIKEYBOARD_BACKSLASH","features":[58]},{"name":"DIKEYBOARD_C","features":[58]},{"name":"DIKEYBOARD_CALCULATOR","features":[58]},{"name":"DIKEYBOARD_CAPITAL","features":[58]},{"name":"DIKEYBOARD_COLON","features":[58]},{"name":"DIKEYBOARD_COMMA","features":[58]},{"name":"DIKEYBOARD_CONVERT","features":[58]},{"name":"DIKEYBOARD_D","features":[58]},{"name":"DIKEYBOARD_DECIMAL","features":[58]},{"name":"DIKEYBOARD_DELETE","features":[58]},{"name":"DIKEYBOARD_DIVIDE","features":[58]},{"name":"DIKEYBOARD_DOWN","features":[58]},{"name":"DIKEYBOARD_E","features":[58]},{"name":"DIKEYBOARD_END","features":[58]},{"name":"DIKEYBOARD_EQUALS","features":[58]},{"name":"DIKEYBOARD_ESCAPE","features":[58]},{"name":"DIKEYBOARD_F","features":[58]},{"name":"DIKEYBOARD_F1","features":[58]},{"name":"DIKEYBOARD_F10","features":[58]},{"name":"DIKEYBOARD_F11","features":[58]},{"name":"DIKEYBOARD_F12","features":[58]},{"name":"DIKEYBOARD_F13","features":[58]},{"name":"DIKEYBOARD_F14","features":[58]},{"name":"DIKEYBOARD_F15","features":[58]},{"name":"DIKEYBOARD_F2","features":[58]},{"name":"DIKEYBOARD_F3","features":[58]},{"name":"DIKEYBOARD_F4","features":[58]},{"name":"DIKEYBOARD_F5","features":[58]},{"name":"DIKEYBOARD_F6","features":[58]},{"name":"DIKEYBOARD_F7","features":[58]},{"name":"DIKEYBOARD_F8","features":[58]},{"name":"DIKEYBOARD_F9","features":[58]},{"name":"DIKEYBOARD_G","features":[58]},{"name":"DIKEYBOARD_GRAVE","features":[58]},{"name":"DIKEYBOARD_H","features":[58]},{"name":"DIKEYBOARD_HOME","features":[58]},{"name":"DIKEYBOARD_I","features":[58]},{"name":"DIKEYBOARD_INSERT","features":[58]},{"name":"DIKEYBOARD_J","features":[58]},{"name":"DIKEYBOARD_K","features":[58]},{"name":"DIKEYBOARD_KANA","features":[58]},{"name":"DIKEYBOARD_KANJI","features":[58]},{"name":"DIKEYBOARD_L","features":[58]},{"name":"DIKEYBOARD_LBRACKET","features":[58]},{"name":"DIKEYBOARD_LCONTROL","features":[58]},{"name":"DIKEYBOARD_LEFT","features":[58]},{"name":"DIKEYBOARD_LMENU","features":[58]},{"name":"DIKEYBOARD_LSHIFT","features":[58]},{"name":"DIKEYBOARD_LWIN","features":[58]},{"name":"DIKEYBOARD_M","features":[58]},{"name":"DIKEYBOARD_MAIL","features":[58]},{"name":"DIKEYBOARD_MEDIASELECT","features":[58]},{"name":"DIKEYBOARD_MEDIASTOP","features":[58]},{"name":"DIKEYBOARD_MINUS","features":[58]},{"name":"DIKEYBOARD_MULTIPLY","features":[58]},{"name":"DIKEYBOARD_MUTE","features":[58]},{"name":"DIKEYBOARD_MYCOMPUTER","features":[58]},{"name":"DIKEYBOARD_N","features":[58]},{"name":"DIKEYBOARD_NEXT","features":[58]},{"name":"DIKEYBOARD_NEXTTRACK","features":[58]},{"name":"DIKEYBOARD_NOCONVERT","features":[58]},{"name":"DIKEYBOARD_NUMLOCK","features":[58]},{"name":"DIKEYBOARD_NUMPAD0","features":[58]},{"name":"DIKEYBOARD_NUMPAD1","features":[58]},{"name":"DIKEYBOARD_NUMPAD2","features":[58]},{"name":"DIKEYBOARD_NUMPAD3","features":[58]},{"name":"DIKEYBOARD_NUMPAD4","features":[58]},{"name":"DIKEYBOARD_NUMPAD5","features":[58]},{"name":"DIKEYBOARD_NUMPAD6","features":[58]},{"name":"DIKEYBOARD_NUMPAD7","features":[58]},{"name":"DIKEYBOARD_NUMPAD8","features":[58]},{"name":"DIKEYBOARD_NUMPAD9","features":[58]},{"name":"DIKEYBOARD_NUMPADCOMMA","features":[58]},{"name":"DIKEYBOARD_NUMPADENTER","features":[58]},{"name":"DIKEYBOARD_NUMPADEQUALS","features":[58]},{"name":"DIKEYBOARD_O","features":[58]},{"name":"DIKEYBOARD_OEM_102","features":[58]},{"name":"DIKEYBOARD_P","features":[58]},{"name":"DIKEYBOARD_PAUSE","features":[58]},{"name":"DIKEYBOARD_PERIOD","features":[58]},{"name":"DIKEYBOARD_PLAYPAUSE","features":[58]},{"name":"DIKEYBOARD_POWER","features":[58]},{"name":"DIKEYBOARD_PREVTRACK","features":[58]},{"name":"DIKEYBOARD_PRIOR","features":[58]},{"name":"DIKEYBOARD_Q","features":[58]},{"name":"DIKEYBOARD_R","features":[58]},{"name":"DIKEYBOARD_RBRACKET","features":[58]},{"name":"DIKEYBOARD_RCONTROL","features":[58]},{"name":"DIKEYBOARD_RETURN","features":[58]},{"name":"DIKEYBOARD_RIGHT","features":[58]},{"name":"DIKEYBOARD_RMENU","features":[58]},{"name":"DIKEYBOARD_RSHIFT","features":[58]},{"name":"DIKEYBOARD_RWIN","features":[58]},{"name":"DIKEYBOARD_S","features":[58]},{"name":"DIKEYBOARD_SCROLL","features":[58]},{"name":"DIKEYBOARD_SEMICOLON","features":[58]},{"name":"DIKEYBOARD_SLASH","features":[58]},{"name":"DIKEYBOARD_SLEEP","features":[58]},{"name":"DIKEYBOARD_SPACE","features":[58]},{"name":"DIKEYBOARD_STOP","features":[58]},{"name":"DIKEYBOARD_SUBTRACT","features":[58]},{"name":"DIKEYBOARD_SYSRQ","features":[58]},{"name":"DIKEYBOARD_T","features":[58]},{"name":"DIKEYBOARD_TAB","features":[58]},{"name":"DIKEYBOARD_U","features":[58]},{"name":"DIKEYBOARD_UNDERLINE","features":[58]},{"name":"DIKEYBOARD_UNLABELED","features":[58]},{"name":"DIKEYBOARD_UP","features":[58]},{"name":"DIKEYBOARD_V","features":[58]},{"name":"DIKEYBOARD_VOLUMEDOWN","features":[58]},{"name":"DIKEYBOARD_VOLUMEUP","features":[58]},{"name":"DIKEYBOARD_W","features":[58]},{"name":"DIKEYBOARD_WAKE","features":[58]},{"name":"DIKEYBOARD_WEBBACK","features":[58]},{"name":"DIKEYBOARD_WEBFAVORITES","features":[58]},{"name":"DIKEYBOARD_WEBFORWARD","features":[58]},{"name":"DIKEYBOARD_WEBHOME","features":[58]},{"name":"DIKEYBOARD_WEBREFRESH","features":[58]},{"name":"DIKEYBOARD_WEBSEARCH","features":[58]},{"name":"DIKEYBOARD_WEBSTOP","features":[58]},{"name":"DIKEYBOARD_X","features":[58]},{"name":"DIKEYBOARD_Y","features":[58]},{"name":"DIKEYBOARD_YEN","features":[58]},{"name":"DIKEYBOARD_Z","features":[58]},{"name":"DIK_0","features":[58]},{"name":"DIK_1","features":[58]},{"name":"DIK_2","features":[58]},{"name":"DIK_3","features":[58]},{"name":"DIK_4","features":[58]},{"name":"DIK_5","features":[58]},{"name":"DIK_6","features":[58]},{"name":"DIK_7","features":[58]},{"name":"DIK_8","features":[58]},{"name":"DIK_9","features":[58]},{"name":"DIK_A","features":[58]},{"name":"DIK_ABNT_C1","features":[58]},{"name":"DIK_ABNT_C2","features":[58]},{"name":"DIK_ADD","features":[58]},{"name":"DIK_APOSTROPHE","features":[58]},{"name":"DIK_APPS","features":[58]},{"name":"DIK_AT","features":[58]},{"name":"DIK_AX","features":[58]},{"name":"DIK_B","features":[58]},{"name":"DIK_BACK","features":[58]},{"name":"DIK_BACKSLASH","features":[58]},{"name":"DIK_BACKSPACE","features":[58]},{"name":"DIK_C","features":[58]},{"name":"DIK_CALCULATOR","features":[58]},{"name":"DIK_CAPITAL","features":[58]},{"name":"DIK_CAPSLOCK","features":[58]},{"name":"DIK_CIRCUMFLEX","features":[58]},{"name":"DIK_COLON","features":[58]},{"name":"DIK_COMMA","features":[58]},{"name":"DIK_CONVERT","features":[58]},{"name":"DIK_D","features":[58]},{"name":"DIK_DECIMAL","features":[58]},{"name":"DIK_DELETE","features":[58]},{"name":"DIK_DIVIDE","features":[58]},{"name":"DIK_DOWN","features":[58]},{"name":"DIK_DOWNARROW","features":[58]},{"name":"DIK_E","features":[58]},{"name":"DIK_END","features":[58]},{"name":"DIK_EQUALS","features":[58]},{"name":"DIK_ESCAPE","features":[58]},{"name":"DIK_F","features":[58]},{"name":"DIK_F1","features":[58]},{"name":"DIK_F10","features":[58]},{"name":"DIK_F11","features":[58]},{"name":"DIK_F12","features":[58]},{"name":"DIK_F13","features":[58]},{"name":"DIK_F14","features":[58]},{"name":"DIK_F15","features":[58]},{"name":"DIK_F2","features":[58]},{"name":"DIK_F3","features":[58]},{"name":"DIK_F4","features":[58]},{"name":"DIK_F5","features":[58]},{"name":"DIK_F6","features":[58]},{"name":"DIK_F7","features":[58]},{"name":"DIK_F8","features":[58]},{"name":"DIK_F9","features":[58]},{"name":"DIK_G","features":[58]},{"name":"DIK_GRAVE","features":[58]},{"name":"DIK_H","features":[58]},{"name":"DIK_HOME","features":[58]},{"name":"DIK_I","features":[58]},{"name":"DIK_INSERT","features":[58]},{"name":"DIK_J","features":[58]},{"name":"DIK_K","features":[58]},{"name":"DIK_KANA","features":[58]},{"name":"DIK_KANJI","features":[58]},{"name":"DIK_L","features":[58]},{"name":"DIK_LALT","features":[58]},{"name":"DIK_LBRACKET","features":[58]},{"name":"DIK_LCONTROL","features":[58]},{"name":"DIK_LEFT","features":[58]},{"name":"DIK_LEFTARROW","features":[58]},{"name":"DIK_LMENU","features":[58]},{"name":"DIK_LSHIFT","features":[58]},{"name":"DIK_LWIN","features":[58]},{"name":"DIK_M","features":[58]},{"name":"DIK_MAIL","features":[58]},{"name":"DIK_MEDIASELECT","features":[58]},{"name":"DIK_MEDIASTOP","features":[58]},{"name":"DIK_MINUS","features":[58]},{"name":"DIK_MULTIPLY","features":[58]},{"name":"DIK_MUTE","features":[58]},{"name":"DIK_MYCOMPUTER","features":[58]},{"name":"DIK_N","features":[58]},{"name":"DIK_NEXT","features":[58]},{"name":"DIK_NEXTTRACK","features":[58]},{"name":"DIK_NOCONVERT","features":[58]},{"name":"DIK_NUMLOCK","features":[58]},{"name":"DIK_NUMPAD0","features":[58]},{"name":"DIK_NUMPAD1","features":[58]},{"name":"DIK_NUMPAD2","features":[58]},{"name":"DIK_NUMPAD3","features":[58]},{"name":"DIK_NUMPAD4","features":[58]},{"name":"DIK_NUMPAD5","features":[58]},{"name":"DIK_NUMPAD6","features":[58]},{"name":"DIK_NUMPAD7","features":[58]},{"name":"DIK_NUMPAD8","features":[58]},{"name":"DIK_NUMPAD9","features":[58]},{"name":"DIK_NUMPADCOMMA","features":[58]},{"name":"DIK_NUMPADENTER","features":[58]},{"name":"DIK_NUMPADEQUALS","features":[58]},{"name":"DIK_NUMPADMINUS","features":[58]},{"name":"DIK_NUMPADPERIOD","features":[58]},{"name":"DIK_NUMPADPLUS","features":[58]},{"name":"DIK_NUMPADSLASH","features":[58]},{"name":"DIK_NUMPADSTAR","features":[58]},{"name":"DIK_O","features":[58]},{"name":"DIK_OEM_102","features":[58]},{"name":"DIK_P","features":[58]},{"name":"DIK_PAUSE","features":[58]},{"name":"DIK_PERIOD","features":[58]},{"name":"DIK_PGDN","features":[58]},{"name":"DIK_PGUP","features":[58]},{"name":"DIK_PLAYPAUSE","features":[58]},{"name":"DIK_POWER","features":[58]},{"name":"DIK_PREVTRACK","features":[58]},{"name":"DIK_PRIOR","features":[58]},{"name":"DIK_Q","features":[58]},{"name":"DIK_R","features":[58]},{"name":"DIK_RALT","features":[58]},{"name":"DIK_RBRACKET","features":[58]},{"name":"DIK_RCONTROL","features":[58]},{"name":"DIK_RETURN","features":[58]},{"name":"DIK_RIGHT","features":[58]},{"name":"DIK_RIGHTARROW","features":[58]},{"name":"DIK_RMENU","features":[58]},{"name":"DIK_RSHIFT","features":[58]},{"name":"DIK_RWIN","features":[58]},{"name":"DIK_S","features":[58]},{"name":"DIK_SCROLL","features":[58]},{"name":"DIK_SEMICOLON","features":[58]},{"name":"DIK_SLASH","features":[58]},{"name":"DIK_SLEEP","features":[58]},{"name":"DIK_SPACE","features":[58]},{"name":"DIK_STOP","features":[58]},{"name":"DIK_SUBTRACT","features":[58]},{"name":"DIK_SYSRQ","features":[58]},{"name":"DIK_T","features":[58]},{"name":"DIK_TAB","features":[58]},{"name":"DIK_U","features":[58]},{"name":"DIK_UNDERLINE","features":[58]},{"name":"DIK_UNLABELED","features":[58]},{"name":"DIK_UP","features":[58]},{"name":"DIK_UPARROW","features":[58]},{"name":"DIK_V","features":[58]},{"name":"DIK_VOLUMEDOWN","features":[58]},{"name":"DIK_VOLUMEUP","features":[58]},{"name":"DIK_W","features":[58]},{"name":"DIK_WAKE","features":[58]},{"name":"DIK_WEBBACK","features":[58]},{"name":"DIK_WEBFAVORITES","features":[58]},{"name":"DIK_WEBFORWARD","features":[58]},{"name":"DIK_WEBHOME","features":[58]},{"name":"DIK_WEBREFRESH","features":[58]},{"name":"DIK_WEBSEARCH","features":[58]},{"name":"DIK_WEBSTOP","features":[58]},{"name":"DIK_X","features":[58]},{"name":"DIK_Y","features":[58]},{"name":"DIK_YEN","features":[58]},{"name":"DIK_Z","features":[58]},{"name":"DIMOUSESTATE","features":[58]},{"name":"DIMOUSESTATE2","features":[58]},{"name":"DIMSGWP_DX8APPSTART","features":[58]},{"name":"DIMSGWP_DX8MAPPERAPPSTART","features":[58]},{"name":"DIMSGWP_NEWAPPSTART","features":[58]},{"name":"DIOBJECTATTRIBUTES","features":[58]},{"name":"DIOBJECTCALIBRATION","features":[58]},{"name":"DIOBJECTDATAFORMAT","features":[58]},{"name":"DIPERIODIC","features":[58]},{"name":"DIPH_BYID","features":[58]},{"name":"DIPH_BYOFFSET","features":[58]},{"name":"DIPH_BYUSAGE","features":[58]},{"name":"DIPH_DEVICE","features":[58]},{"name":"DIPOVCALIBRATION","features":[58]},{"name":"DIPOV_ANY_1","features":[58]},{"name":"DIPOV_ANY_2","features":[58]},{"name":"DIPOV_ANY_3","features":[58]},{"name":"DIPOV_ANY_4","features":[58]},{"name":"DIPROPAUTOCENTER_OFF","features":[58]},{"name":"DIPROPAUTOCENTER_ON","features":[58]},{"name":"DIPROPAXISMODE_ABS","features":[58]},{"name":"DIPROPAXISMODE_REL","features":[58]},{"name":"DIPROPCAL","features":[58]},{"name":"DIPROPCALIBRATIONMODE_COOKED","features":[58]},{"name":"DIPROPCALIBRATIONMODE_RAW","features":[58]},{"name":"DIPROPCALPOV","features":[58]},{"name":"DIPROPCPOINTS","features":[58]},{"name":"DIPROPDWORD","features":[58]},{"name":"DIPROPGUIDANDPATH","features":[58]},{"name":"DIPROPHEADER","features":[58]},{"name":"DIPROPPOINTER","features":[58]},{"name":"DIPROPRANGE","features":[58]},{"name":"DIPROPSTRING","features":[58]},{"name":"DIPROP_APPDATA","features":[58]},{"name":"DIPROP_AUTOCENTER","features":[58]},{"name":"DIPROP_AXISMODE","features":[58]},{"name":"DIPROP_BUFFERSIZE","features":[58]},{"name":"DIPROP_CALIBRATION","features":[58]},{"name":"DIPROP_CALIBRATIONMODE","features":[58]},{"name":"DIPROP_CPOINTS","features":[58]},{"name":"DIPROP_DEADZONE","features":[58]},{"name":"DIPROP_FFGAIN","features":[58]},{"name":"DIPROP_FFLOAD","features":[58]},{"name":"DIPROP_GETPORTDISPLAYNAME","features":[58]},{"name":"DIPROP_GRANULARITY","features":[58]},{"name":"DIPROP_GUIDANDPATH","features":[58]},{"name":"DIPROP_INSTANCENAME","features":[58]},{"name":"DIPROP_JOYSTICKID","features":[58]},{"name":"DIPROP_KEYNAME","features":[58]},{"name":"DIPROP_LOGICALRANGE","features":[58]},{"name":"DIPROP_PHYSICALRANGE","features":[58]},{"name":"DIPROP_PRODUCTNAME","features":[58]},{"name":"DIPROP_RANGE","features":[58]},{"name":"DIPROP_SATURATION","features":[58]},{"name":"DIPROP_SCANCODE","features":[58]},{"name":"DIPROP_TYPENAME","features":[58]},{"name":"DIPROP_USERNAME","features":[58]},{"name":"DIPROP_VIDPID","features":[58]},{"name":"DIRAMPFORCE","features":[58]},{"name":"DIRECTINPUT_HEADER_VERSION","features":[58]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRING","features":[58]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGA","features":[58]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGW","features":[58]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPP","features":[58]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPA","features":[58]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPW","features":[58]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPP","features":[58]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA","features":[58]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAG","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGA","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGW","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_ID","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_IDA","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_IDW","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTART","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTA","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTW","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPER","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERA","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERW","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_NAME","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEA","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEW","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSION","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONA","features":[58]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONW","features":[58]},{"name":"DIRECTINPUT_VERSION","features":[58]},{"name":"DISCL_BACKGROUND","features":[58]},{"name":"DISCL_EXCLUSIVE","features":[58]},{"name":"DISCL_FOREGROUND","features":[58]},{"name":"DISCL_NONEXCLUSIVE","features":[58]},{"name":"DISCL_NOWINKEY","features":[58]},{"name":"DISDD_CONTINUE","features":[58]},{"name":"DISFFC_CONTINUE","features":[58]},{"name":"DISFFC_PAUSE","features":[58]},{"name":"DISFFC_RESET","features":[58]},{"name":"DISFFC_SETACTUATORSOFF","features":[58]},{"name":"DISFFC_SETACTUATORSON","features":[58]},{"name":"DISFFC_STOPALL","features":[58]},{"name":"DITC_CALLOUT","features":[58]},{"name":"DITC_CLSIDCONFIG","features":[58]},{"name":"DITC_DISPLAYNAME","features":[58]},{"name":"DITC_FLAGS1","features":[58]},{"name":"DITC_FLAGS2","features":[58]},{"name":"DITC_HARDWAREID","features":[58]},{"name":"DITC_MAPFILE","features":[58]},{"name":"DITC_REGHWSETTINGS","features":[58]},{"name":"DIVIRTUAL_ARCADE_PLATFORM","features":[58]},{"name":"DIVIRTUAL_ARCADE_SIDE2SIDE","features":[58]},{"name":"DIVIRTUAL_BROWSER_CONTROL","features":[58]},{"name":"DIVIRTUAL_CAD_2DCONTROL","features":[58]},{"name":"DIVIRTUAL_CAD_3DCONTROL","features":[58]},{"name":"DIVIRTUAL_CAD_FLYBY","features":[58]},{"name":"DIVIRTUAL_CAD_MODEL","features":[58]},{"name":"DIVIRTUAL_DRIVING_COMBAT","features":[58]},{"name":"DIVIRTUAL_DRIVING_MECHA","features":[58]},{"name":"DIVIRTUAL_DRIVING_RACE","features":[58]},{"name":"DIVIRTUAL_DRIVING_TANK","features":[58]},{"name":"DIVIRTUAL_FIGHTING_FPS","features":[58]},{"name":"DIVIRTUAL_FIGHTING_HAND2HAND","features":[58]},{"name":"DIVIRTUAL_FIGHTING_THIRDPERSON","features":[58]},{"name":"DIVIRTUAL_FLYING_CIVILIAN","features":[58]},{"name":"DIVIRTUAL_FLYING_HELICOPTER","features":[58]},{"name":"DIVIRTUAL_FLYING_MILITARY","features":[58]},{"name":"DIVIRTUAL_REMOTE_CONTROL","features":[58]},{"name":"DIVIRTUAL_SPACESIM","features":[58]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_BAT","features":[58]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_FIELD","features":[58]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_PITCH","features":[58]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_DEFENSE","features":[58]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_OFFENSE","features":[58]},{"name":"DIVIRTUAL_SPORTS_BIKING_MOUNTAIN","features":[58]},{"name":"DIVIRTUAL_SPORTS_FISHING","features":[58]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_DEFENSE","features":[58]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_FIELD","features":[58]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_OFFENSE","features":[58]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_QBCK","features":[58]},{"name":"DIVIRTUAL_SPORTS_GOLF","features":[58]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_DEFENSE","features":[58]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_GOALIE","features":[58]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_OFFENSE","features":[58]},{"name":"DIVIRTUAL_SPORTS_HUNTING","features":[58]},{"name":"DIVIRTUAL_SPORTS_RACQUET","features":[58]},{"name":"DIVIRTUAL_SPORTS_SKIING","features":[58]},{"name":"DIVIRTUAL_SPORTS_SOCCER_DEFENSE","features":[58]},{"name":"DIVIRTUAL_SPORTS_SOCCER_OFFENSE","features":[58]},{"name":"DIVIRTUAL_STRATEGY_ROLEPLAYING","features":[58]},{"name":"DIVIRTUAL_STRATEGY_TURN","features":[58]},{"name":"DIVOICE_ALL","features":[58]},{"name":"DIVOICE_CHANNEL1","features":[58]},{"name":"DIVOICE_CHANNEL2","features":[58]},{"name":"DIVOICE_CHANNEL3","features":[58]},{"name":"DIVOICE_CHANNEL4","features":[58]},{"name":"DIVOICE_CHANNEL5","features":[58]},{"name":"DIVOICE_CHANNEL6","features":[58]},{"name":"DIVOICE_CHANNEL7","features":[58]},{"name":"DIVOICE_CHANNEL8","features":[58]},{"name":"DIVOICE_PLAYBACKMUTE","features":[58]},{"name":"DIVOICE_RECORDMUTE","features":[58]},{"name":"DIVOICE_TEAM","features":[58]},{"name":"DIVOICE_TRANSMIT","features":[58]},{"name":"DIVOICE_VOICECOMMAND","features":[58]},{"name":"DI_BUFFEROVERFLOW","features":[58]},{"name":"DI_DEGREES","features":[58]},{"name":"DI_DOWNLOADSKIPPED","features":[58]},{"name":"DI_EFFECTRESTARTED","features":[58]},{"name":"DI_FFNOMINALMAX","features":[58]},{"name":"DI_NOEFFECT","features":[58]},{"name":"DI_NOTATTACHED","features":[58]},{"name":"DI_OK","features":[58]},{"name":"DI_POLLEDDEVICE","features":[58]},{"name":"DI_PROPNOEFFECT","features":[58]},{"name":"DI_SECONDS","features":[58]},{"name":"DI_SETTINGSNOTSAVED","features":[58]},{"name":"DI_TRUNCATED","features":[58]},{"name":"DI_TRUNCATEDANDRESTARTED","features":[58]},{"name":"DI_WRITEPROTECT","features":[58]},{"name":"DirectInput8Create","features":[58,1]},{"name":"GPIOBUTTONS_BUTTON_TYPE","features":[58]},{"name":"GPIO_BUTTON_BACK","features":[58]},{"name":"GPIO_BUTTON_CAMERA_FOCUS","features":[58]},{"name":"GPIO_BUTTON_CAMERA_LENS","features":[58]},{"name":"GPIO_BUTTON_CAMERA_SHUTTER","features":[58]},{"name":"GPIO_BUTTON_COUNT","features":[58]},{"name":"GPIO_BUTTON_COUNT_MIN","features":[58]},{"name":"GPIO_BUTTON_HEADSET","features":[58]},{"name":"GPIO_BUTTON_HWKB_DEPLOY","features":[58]},{"name":"GPIO_BUTTON_OEM_CUSTOM","features":[58]},{"name":"GPIO_BUTTON_OEM_CUSTOM2","features":[58]},{"name":"GPIO_BUTTON_OEM_CUSTOM3","features":[58]},{"name":"GPIO_BUTTON_POWER","features":[58]},{"name":"GPIO_BUTTON_RINGER_TOGGLE","features":[58]},{"name":"GPIO_BUTTON_ROTATION_LOCK","features":[58]},{"name":"GPIO_BUTTON_SEARCH","features":[58]},{"name":"GPIO_BUTTON_VOLUME_DOWN","features":[58]},{"name":"GPIO_BUTTON_VOLUME_UP","features":[58]},{"name":"GPIO_BUTTON_WINDOWS","features":[58]},{"name":"GUID_Button","features":[58]},{"name":"GUID_ConstantForce","features":[58]},{"name":"GUID_CustomForce","features":[58]},{"name":"GUID_DEVINTERFACE_HID","features":[58]},{"name":"GUID_DEVINTERFACE_KEYBOARD","features":[58]},{"name":"GUID_DEVINTERFACE_MOUSE","features":[58]},{"name":"GUID_Damper","features":[58]},{"name":"GUID_Friction","features":[58]},{"name":"GUID_HIDClass","features":[58]},{"name":"GUID_HID_INTERFACE_HIDPARSE","features":[58]},{"name":"GUID_HID_INTERFACE_NOTIFY","features":[58]},{"name":"GUID_Inertia","features":[58]},{"name":"GUID_Joystick","features":[58]},{"name":"GUID_Key","features":[58]},{"name":"GUID_KeyboardClass","features":[58]},{"name":"GUID_MediaClass","features":[58]},{"name":"GUID_MouseClass","features":[58]},{"name":"GUID_POV","features":[58]},{"name":"GUID_RampForce","features":[58]},{"name":"GUID_RxAxis","features":[58]},{"name":"GUID_RyAxis","features":[58]},{"name":"GUID_RzAxis","features":[58]},{"name":"GUID_SawtoothDown","features":[58]},{"name":"GUID_SawtoothUp","features":[58]},{"name":"GUID_Sine","features":[58]},{"name":"GUID_Slider","features":[58]},{"name":"GUID_Spring","features":[58]},{"name":"GUID_Square","features":[58]},{"name":"GUID_SysKeyboard","features":[58]},{"name":"GUID_SysKeyboardEm","features":[58]},{"name":"GUID_SysKeyboardEm2","features":[58]},{"name":"GUID_SysMouse","features":[58]},{"name":"GUID_SysMouseEm","features":[58]},{"name":"GUID_SysMouseEm2","features":[58]},{"name":"GUID_Triangle","features":[58]},{"name":"GUID_Unknown","features":[58]},{"name":"GUID_XAxis","features":[58]},{"name":"GUID_YAxis","features":[58]},{"name":"GUID_ZAxis","features":[58]},{"name":"HIDD_ATTRIBUTES","features":[58]},{"name":"HIDD_CONFIGURATION","features":[58]},{"name":"HIDP_BUTTON_ARRAY_DATA","features":[58,1]},{"name":"HIDP_BUTTON_CAPS","features":[58,1]},{"name":"HIDP_CAPS","features":[58]},{"name":"HIDP_DATA","features":[58,1]},{"name":"HIDP_EXTENDED_ATTRIBUTES","features":[58]},{"name":"HIDP_KEYBOARD_DIRECTION","features":[58]},{"name":"HIDP_KEYBOARD_MODIFIER_STATE","features":[58]},{"name":"HIDP_LINK_COLLECTION_NODE","features":[58]},{"name":"HIDP_REPORT_TYPE","features":[58]},{"name":"HIDP_STATUS_BAD_LOG_PHY_VALUES","features":[58,1]},{"name":"HIDP_STATUS_BUFFER_TOO_SMALL","features":[58,1]},{"name":"HIDP_STATUS_BUTTON_NOT_PRESSED","features":[58,1]},{"name":"HIDP_STATUS_DATA_INDEX_NOT_FOUND","features":[58,1]},{"name":"HIDP_STATUS_DATA_INDEX_OUT_OF_RANGE","features":[58,1]},{"name":"HIDP_STATUS_I8042_TRANS_UNKNOWN","features":[58,1]},{"name":"HIDP_STATUS_I8242_TRANS_UNKNOWN","features":[58,1]},{"name":"HIDP_STATUS_INCOMPATIBLE_REPORT_ID","features":[58,1]},{"name":"HIDP_STATUS_INTERNAL_ERROR","features":[58,1]},{"name":"HIDP_STATUS_INVALID_PREPARSED_DATA","features":[58,1]},{"name":"HIDP_STATUS_INVALID_REPORT_LENGTH","features":[58,1]},{"name":"HIDP_STATUS_INVALID_REPORT_TYPE","features":[58,1]},{"name":"HIDP_STATUS_IS_VALUE_ARRAY","features":[58,1]},{"name":"HIDP_STATUS_NOT_BUTTON_ARRAY","features":[58,1]},{"name":"HIDP_STATUS_NOT_IMPLEMENTED","features":[58,1]},{"name":"HIDP_STATUS_NOT_VALUE_ARRAY","features":[58,1]},{"name":"HIDP_STATUS_NULL","features":[58,1]},{"name":"HIDP_STATUS_REPORT_DOES_NOT_EXIST","features":[58,1]},{"name":"HIDP_STATUS_SUCCESS","features":[58,1]},{"name":"HIDP_STATUS_USAGE_NOT_FOUND","features":[58,1]},{"name":"HIDP_STATUS_VALUE_OUT_OF_RANGE","features":[58,1]},{"name":"HIDP_UNKNOWN_TOKEN","features":[58]},{"name":"HIDP_VALUE_CAPS","features":[58,1]},{"name":"HID_COLLECTION_INFORMATION","features":[58,1]},{"name":"HID_DRIVER_CONFIG","features":[58]},{"name":"HID_REVISION","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_14_SEGMENT_DIRECT_MAP","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_7_SEGMENT_DIRECT_MAP","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ALPHANUMERIC_DISPLAY","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ASCII_CHARACTER_SET","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_DATA","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_READBACK","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAPPED_DISPLAY","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_X","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_Y","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BIT_DEPTH_FORMAT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_DATA","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X1","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X2","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y1","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y2","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_ATTRIBUTE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_BLINK","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_ENHANCE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_UNDERLINE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_HEIGHT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_HORIZONTAL","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_VERTICAL","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_WIDTH","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CLEAR_DISPLAY","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMN","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMNS","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_BLINK","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_ENABLE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_MODE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_PIXEL_POSITIONING","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_POSITION_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DATA_READ_BACK","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ATTRIBUTES_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_BRIGHTNESS","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTRAST","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTROL_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_DATA","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ENABLE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ORIENTATION","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_STATUS","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_FONT_DATA_CANNOT_BE_READ","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_NOT_A_LOADABLE_CHARACTER","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_14_SEGMENT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_7_SEGMENT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_DATA","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_READ_BACK","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_HORIZONTAL_SCROLL","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_OFFSET","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_SIZE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ROW","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_ROWS","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_DELAY","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_ENABLE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_ID","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET1","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET2","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_REPORT","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_SIDE","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_NOT_READY","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_READY","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_UNICODE_CHAR_SET","features":[58]},{"name":"HID_USAGE_ALPHANUMERIC_VERTICAL_SCROLL","features":[58]},{"name":"HID_USAGE_CAMERA_AUTO_FOCUS","features":[58]},{"name":"HID_USAGE_CAMERA_SHUTTER","features":[58]},{"name":"HID_USAGE_CONSUMERCTRL","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_BACK","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_BOOKMARKS","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_FORWARD","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_GOTO","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_HOME","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_NEXT","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_PAN","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_PREVIOUS","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_REFRESH","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_SEARCH","features":[58]},{"name":"HID_USAGE_CONSUMER_AC_STOP","features":[58]},{"name":"HID_USAGE_CONSUMER_AL_BROWSER","features":[58]},{"name":"HID_USAGE_CONSUMER_AL_CALCULATOR","features":[58]},{"name":"HID_USAGE_CONSUMER_AL_CONFIGURATION","features":[58]},{"name":"HID_USAGE_CONSUMER_AL_EMAIL","features":[58]},{"name":"HID_USAGE_CONSUMER_AL_SEARCH","features":[58]},{"name":"HID_USAGE_CONSUMER_BALANCE","features":[58]},{"name":"HID_USAGE_CONSUMER_BASS","features":[58]},{"name":"HID_USAGE_CONSUMER_BASS_BOOST","features":[58]},{"name":"HID_USAGE_CONSUMER_BASS_DECREMENT","features":[58]},{"name":"HID_USAGE_CONSUMER_BASS_INCREMENT","features":[58]},{"name":"HID_USAGE_CONSUMER_CHANNEL_DECREMENT","features":[58]},{"name":"HID_USAGE_CONSUMER_CHANNEL_INCREMENT","features":[58]},{"name":"HID_USAGE_CONSUMER_EXTENDED_KEYBOARD_ATTRIBUTES_COLLECTION","features":[58]},{"name":"HID_USAGE_CONSUMER_FAST_FORWARD","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_OPEN_GAMEBAR","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_RECORD_CLIP","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_SCREENSHOT","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_BROADCAST","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_CAMERA","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_INDICATOR","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_MICROPHONE","features":[58]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_RECORD","features":[58]},{"name":"HID_USAGE_CONSUMER_IMPLEMENTED_KEYBOARD_INPUT_ASSIST_CONTROLS","features":[58]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_FORM_FACTOR","features":[58]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_IETF_LANGUAGE_TAG_INDEX","features":[58]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_KEY_TYPE","features":[58]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_PHYSICAL_LAYOUT","features":[58]},{"name":"HID_USAGE_CONSUMER_LOUDNESS","features":[58]},{"name":"HID_USAGE_CONSUMER_MPX","features":[58]},{"name":"HID_USAGE_CONSUMER_MUTE","features":[58]},{"name":"HID_USAGE_CONSUMER_PAUSE","features":[58]},{"name":"HID_USAGE_CONSUMER_PLAY","features":[58]},{"name":"HID_USAGE_CONSUMER_PLAY_PAUSE","features":[58]},{"name":"HID_USAGE_CONSUMER_RECORD","features":[58]},{"name":"HID_USAGE_CONSUMER_REWIND","features":[58]},{"name":"HID_USAGE_CONSUMER_SCAN_NEXT_TRACK","features":[58]},{"name":"HID_USAGE_CONSUMER_SCAN_PREV_TRACK","features":[58]},{"name":"HID_USAGE_CONSUMER_STOP","features":[58]},{"name":"HID_USAGE_CONSUMER_SURROUND_MODE","features":[58]},{"name":"HID_USAGE_CONSUMER_TREBLE","features":[58]},{"name":"HID_USAGE_CONSUMER_TREBLE_DECREMENT","features":[58]},{"name":"HID_USAGE_CONSUMER_TREBLE_INCREMENT","features":[58]},{"name":"HID_USAGE_CONSUMER_VENDOR_SPECIFIC_KEYBOARD_PHYSICAL_LAYOUT","features":[58]},{"name":"HID_USAGE_CONSUMER_VOLUME","features":[58]},{"name":"HID_USAGE_CONSUMER_VOLUME_DECREMENT","features":[58]},{"name":"HID_USAGE_CONSUMER_VOLUME_INCREMENT","features":[58]},{"name":"HID_USAGE_DIGITIZER_3D_DIGITIZER","features":[58]},{"name":"HID_USAGE_DIGITIZER_ALTITUDE","features":[58]},{"name":"HID_USAGE_DIGITIZER_ARMATURE","features":[58]},{"name":"HID_USAGE_DIGITIZER_ARTICULATED_ARM","features":[58]},{"name":"HID_USAGE_DIGITIZER_AZIMUTH","features":[58]},{"name":"HID_USAGE_DIGITIZER_BARREL_PRESSURE","features":[58]},{"name":"HID_USAGE_DIGITIZER_BARREL_SWITCH","features":[58]},{"name":"HID_USAGE_DIGITIZER_BATTERY_STRENGTH","features":[58]},{"name":"HID_USAGE_DIGITIZER_COORD_MEASURING","features":[58]},{"name":"HID_USAGE_DIGITIZER_DATA_VALID","features":[58]},{"name":"HID_USAGE_DIGITIZER_DIGITIZER","features":[58]},{"name":"HID_USAGE_DIGITIZER_ERASER","features":[58]},{"name":"HID_USAGE_DIGITIZER_FINGER","features":[58]},{"name":"HID_USAGE_DIGITIZER_FREE_SPACE_WAND","features":[58]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP","features":[58]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_FRAME_DATA","features":[58]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VENDOR_ID","features":[58]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VERSION","features":[58]},{"name":"HID_USAGE_DIGITIZER_INVERT","features":[58]},{"name":"HID_USAGE_DIGITIZER_IN_RANGE","features":[58]},{"name":"HID_USAGE_DIGITIZER_LIGHT_PEN","features":[58]},{"name":"HID_USAGE_DIGITIZER_MULTI_POINT","features":[58]},{"name":"HID_USAGE_DIGITIZER_PEN","features":[58]},{"name":"HID_USAGE_DIGITIZER_PROG_CHANGE_KEYS","features":[58]},{"name":"HID_USAGE_DIGITIZER_PUCK","features":[58]},{"name":"HID_USAGE_DIGITIZER_QUALITY","features":[58]},{"name":"HID_USAGE_DIGITIZER_SECONDARY_TIP_SWITCH","features":[58]},{"name":"HID_USAGE_DIGITIZER_STEREO_PLOTTER","features":[58]},{"name":"HID_USAGE_DIGITIZER_STYLUS","features":[58]},{"name":"HID_USAGE_DIGITIZER_TABLET_FUNC_KEYS","features":[58]},{"name":"HID_USAGE_DIGITIZER_TABLET_PICK","features":[58]},{"name":"HID_USAGE_DIGITIZER_TAP","features":[58]},{"name":"HID_USAGE_DIGITIZER_TIP_PRESSURE","features":[58]},{"name":"HID_USAGE_DIGITIZER_TIP_SWITCH","features":[58]},{"name":"HID_USAGE_DIGITIZER_TOUCH","features":[58]},{"name":"HID_USAGE_DIGITIZER_TOUCH_PAD","features":[58]},{"name":"HID_USAGE_DIGITIZER_TOUCH_SCREEN","features":[58]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_CONNECTED","features":[58]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_INDEX","features":[58]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_PRODUCT","features":[58]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL","features":[58]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL_PART2","features":[58]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_VENDOR","features":[58]},{"name":"HID_USAGE_DIGITIZER_TWIST","features":[58]},{"name":"HID_USAGE_DIGITIZER_UNTOUCH","features":[58]},{"name":"HID_USAGE_DIGITIZER_WHITE_BOARD","features":[58]},{"name":"HID_USAGE_DIGITIZER_X_TILT","features":[58]},{"name":"HID_USAGE_DIGITIZER_Y_TILT","features":[58]},{"name":"HID_USAGE_GAME_3D_GAME_CONTROLLER","features":[58]},{"name":"HID_USAGE_GAME_BUMP","features":[58]},{"name":"HID_USAGE_GAME_FLIPPER","features":[58]},{"name":"HID_USAGE_GAME_GAMEPAD_FIRE_JUMP","features":[58]},{"name":"HID_USAGE_GAME_GAMEPAD_TRIGGER","features":[58]},{"name":"HID_USAGE_GAME_GUN_AUTOMATIC","features":[58]},{"name":"HID_USAGE_GAME_GUN_BOLT","features":[58]},{"name":"HID_USAGE_GAME_GUN_BURST","features":[58]},{"name":"HID_USAGE_GAME_GUN_CLIP","features":[58]},{"name":"HID_USAGE_GAME_GUN_DEVICE","features":[58]},{"name":"HID_USAGE_GAME_GUN_SAFETY","features":[58]},{"name":"HID_USAGE_GAME_GUN_SELECTOR","features":[58]},{"name":"HID_USAGE_GAME_GUN_SINGLE_SHOT","features":[58]},{"name":"HID_USAGE_GAME_LEAN_FORWARD_BACK","features":[58]},{"name":"HID_USAGE_GAME_LEAN_RIGHT_LEFT","features":[58]},{"name":"HID_USAGE_GAME_MOVE_FORWARD_BACK","features":[58]},{"name":"HID_USAGE_GAME_MOVE_RIGHT_LEFT","features":[58]},{"name":"HID_USAGE_GAME_MOVE_UP_DOWN","features":[58]},{"name":"HID_USAGE_GAME_NEW_GAME","features":[58]},{"name":"HID_USAGE_GAME_PINBALL_DEVICE","features":[58]},{"name":"HID_USAGE_GAME_PITCH_FORWARD_BACK","features":[58]},{"name":"HID_USAGE_GAME_PLAYER","features":[58]},{"name":"HID_USAGE_GAME_POINT_OF_VIEW","features":[58]},{"name":"HID_USAGE_GAME_POV_HEIGHT","features":[58]},{"name":"HID_USAGE_GAME_ROLL_RIGHT_LEFT","features":[58]},{"name":"HID_USAGE_GAME_SECONDARY_FLIPPER","features":[58]},{"name":"HID_USAGE_GAME_SHOOT_BALL","features":[58]},{"name":"HID_USAGE_GAME_TURN_RIGHT_LEFT","features":[58]},{"name":"HID_USAGE_GENERIC_BYTE_COUNT","features":[58]},{"name":"HID_USAGE_GENERIC_CONTROL_ENABLE","features":[58]},{"name":"HID_USAGE_GENERIC_COUNTED_BUFFER","features":[58]},{"name":"HID_USAGE_GENERIC_DEVICE_BATTERY_STRENGTH","features":[58]},{"name":"HID_USAGE_GENERIC_DEVICE_DISCOVER_WIRELESS_CONTROL","features":[58]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ENTERED","features":[58]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ERASED","features":[58]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CLEARED","features":[58]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_CHANNEL","features":[58]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_ID","features":[58]},{"name":"HID_USAGE_GENERIC_DIAL","features":[58]},{"name":"HID_USAGE_GENERIC_DPAD_DOWN","features":[58]},{"name":"HID_USAGE_GENERIC_DPAD_LEFT","features":[58]},{"name":"HID_USAGE_GENERIC_DPAD_RIGHT","features":[58]},{"name":"HID_USAGE_GENERIC_DPAD_UP","features":[58]},{"name":"HID_USAGE_GENERIC_FEATURE_NOTIFICATION","features":[58]},{"name":"HID_USAGE_GENERIC_GAMEPAD","features":[58]},{"name":"HID_USAGE_GENERIC_HATSWITCH","features":[58]},{"name":"HID_USAGE_GENERIC_INTERACTIVE_CONTROL","features":[58]},{"name":"HID_USAGE_GENERIC_JOYSTICK","features":[58]},{"name":"HID_USAGE_GENERIC_KEYBOARD","features":[58]},{"name":"HID_USAGE_GENERIC_KEYPAD","features":[58]},{"name":"HID_USAGE_GENERIC_MOTION_WAKEUP","features":[58]},{"name":"HID_USAGE_GENERIC_MOUSE","features":[58]},{"name":"HID_USAGE_GENERIC_MULTI_AXIS_CONTROLLER","features":[58]},{"name":"HID_USAGE_GENERIC_POINTER","features":[58]},{"name":"HID_USAGE_GENERIC_PORTABLE_DEVICE_CONTROL","features":[58]},{"name":"HID_USAGE_GENERIC_RESOLUTION_MULTIPLIER","features":[58]},{"name":"HID_USAGE_GENERIC_RX","features":[58]},{"name":"HID_USAGE_GENERIC_RY","features":[58]},{"name":"HID_USAGE_GENERIC_RZ","features":[58]},{"name":"HID_USAGE_GENERIC_SELECT","features":[58]},{"name":"HID_USAGE_GENERIC_SLIDER","features":[58]},{"name":"HID_USAGE_GENERIC_START","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_BREAK","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_DBG_BREAK","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_MENU","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_COLD_RESTART","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_CONTEXT_MENU","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISMISS_NOTIFICATION","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_AUTOSCALE","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_BOTH","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_DUAL","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_EXTERNAL","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INTERNAL","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INVERT","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_SWAP","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_TOGGLE","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_DOCK","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK_INDICATOR","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_HELP_MENU","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_HIBERNATE","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MAIN_MENU","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_DOWN","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_EXIT","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_LEFT","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_RIGHT","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_SELECT","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_UP","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_MUTE","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_POWER","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_SETUP","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_SLEEP","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_BREAK","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_DBG_BREAK","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_UNDOCK","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_WAKE","features":[58]},{"name":"HID_USAGE_GENERIC_SYSCTL_WARM_RESTART","features":[58]},{"name":"HID_USAGE_GENERIC_SYSTEM_CTL","features":[58]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_BUTTON","features":[58]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_SLIDER_SWITCH","features":[58]},{"name":"HID_USAGE_GENERIC_TABLET_PC_SYSTEM_CTL","features":[58]},{"name":"HID_USAGE_GENERIC_VBRX","features":[58]},{"name":"HID_USAGE_GENERIC_VBRY","features":[58]},{"name":"HID_USAGE_GENERIC_VBRZ","features":[58]},{"name":"HID_USAGE_GENERIC_VNO","features":[58]},{"name":"HID_USAGE_GENERIC_VX","features":[58]},{"name":"HID_USAGE_GENERIC_VY","features":[58]},{"name":"HID_USAGE_GENERIC_VZ","features":[58]},{"name":"HID_USAGE_GENERIC_WHEEL","features":[58]},{"name":"HID_USAGE_GENERIC_X","features":[58]},{"name":"HID_USAGE_GENERIC_Y","features":[58]},{"name":"HID_USAGE_GENERIC_Z","features":[58]},{"name":"HID_USAGE_HAPTICS_AUTO_ASSOCIATED_CONTROL","features":[58]},{"name":"HID_USAGE_HAPTICS_AUTO_TRIGGER","features":[58]},{"name":"HID_USAGE_HAPTICS_DURATION_LIST","features":[58]},{"name":"HID_USAGE_HAPTICS_INTENSITY","features":[58]},{"name":"HID_USAGE_HAPTICS_MANUAL_TRIGGER","features":[58]},{"name":"HID_USAGE_HAPTICS_REPEAT_COUNT","features":[58]},{"name":"HID_USAGE_HAPTICS_RETRIGGER_PERIOD","features":[58]},{"name":"HID_USAGE_HAPTICS_SIMPLE_CONTROLLER","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BEGIN","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BUZZ","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CLICK","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CUTOFF_TIME","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_END","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_LIST","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_NULL","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_PRESS","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RELEASE","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RUMBLE","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_STOP","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_BEGIN","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_END","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_ID","features":[58]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_PAGE","features":[58]},{"name":"HID_USAGE_KEYBOARD_CAPS_LOCK","features":[58]},{"name":"HID_USAGE_KEYBOARD_DELETE","features":[58]},{"name":"HID_USAGE_KEYBOARD_DELETE_FORWARD","features":[58]},{"name":"HID_USAGE_KEYBOARD_ESCAPE","features":[58]},{"name":"HID_USAGE_KEYBOARD_F1","features":[58]},{"name":"HID_USAGE_KEYBOARD_F10","features":[58]},{"name":"HID_USAGE_KEYBOARD_F11","features":[58]},{"name":"HID_USAGE_KEYBOARD_F12","features":[58]},{"name":"HID_USAGE_KEYBOARD_F13","features":[58]},{"name":"HID_USAGE_KEYBOARD_F14","features":[58]},{"name":"HID_USAGE_KEYBOARD_F15","features":[58]},{"name":"HID_USAGE_KEYBOARD_F16","features":[58]},{"name":"HID_USAGE_KEYBOARD_F17","features":[58]},{"name":"HID_USAGE_KEYBOARD_F18","features":[58]},{"name":"HID_USAGE_KEYBOARD_F19","features":[58]},{"name":"HID_USAGE_KEYBOARD_F2","features":[58]},{"name":"HID_USAGE_KEYBOARD_F20","features":[58]},{"name":"HID_USAGE_KEYBOARD_F21","features":[58]},{"name":"HID_USAGE_KEYBOARD_F22","features":[58]},{"name":"HID_USAGE_KEYBOARD_F23","features":[58]},{"name":"HID_USAGE_KEYBOARD_F24","features":[58]},{"name":"HID_USAGE_KEYBOARD_F3","features":[58]},{"name":"HID_USAGE_KEYBOARD_F4","features":[58]},{"name":"HID_USAGE_KEYBOARD_F5","features":[58]},{"name":"HID_USAGE_KEYBOARD_F6","features":[58]},{"name":"HID_USAGE_KEYBOARD_F7","features":[58]},{"name":"HID_USAGE_KEYBOARD_F8","features":[58]},{"name":"HID_USAGE_KEYBOARD_F9","features":[58]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_0_AND_INSERT","features":[58]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_1_AND_END","features":[58]},{"name":"HID_USAGE_KEYBOARD_LALT","features":[58]},{"name":"HID_USAGE_KEYBOARD_LCTRL","features":[58]},{"name":"HID_USAGE_KEYBOARD_LGUI","features":[58]},{"name":"HID_USAGE_KEYBOARD_LSHFT","features":[58]},{"name":"HID_USAGE_KEYBOARD_NOEVENT","features":[58]},{"name":"HID_USAGE_KEYBOARD_NUM_LOCK","features":[58]},{"name":"HID_USAGE_KEYBOARD_ONE","features":[58]},{"name":"HID_USAGE_KEYBOARD_POSTFAIL","features":[58]},{"name":"HID_USAGE_KEYBOARD_PRINT_SCREEN","features":[58]},{"name":"HID_USAGE_KEYBOARD_RALT","features":[58]},{"name":"HID_USAGE_KEYBOARD_RCTRL","features":[58]},{"name":"HID_USAGE_KEYBOARD_RETURN","features":[58]},{"name":"HID_USAGE_KEYBOARD_RGUI","features":[58]},{"name":"HID_USAGE_KEYBOARD_ROLLOVER","features":[58]},{"name":"HID_USAGE_KEYBOARD_RSHFT","features":[58]},{"name":"HID_USAGE_KEYBOARD_SCROLL_LOCK","features":[58]},{"name":"HID_USAGE_KEYBOARD_UNDEFINED","features":[58]},{"name":"HID_USAGE_KEYBOARD_ZERO","features":[58]},{"name":"HID_USAGE_KEYBOARD_aA","features":[58]},{"name":"HID_USAGE_KEYBOARD_zZ","features":[58]},{"name":"HID_USAGE_LAMPARRAY","features":[58]},{"name":"HID_USAGE_LAMPARRAY_ATTRBIUTES_REPORT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_AUTONOMOUS_MODE","features":[58]},{"name":"HID_USAGE_LAMPARRAY_BLUE_LEVEL_COUNT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_DEPTH_IN_MICROMETERS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_HEIGHT_IN_MICROMETERS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_WIDTH_IN_MICROMETERS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_CONTROL_REPORT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_GREEN_LEVEL_COUNT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_INPUT_BINDING","features":[58]},{"name":"HID_USAGE_LAMPARRAY_INTENSITY_LEVEL_COUNT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_IS_PROGRAMMABLE","features":[58]},{"name":"HID_USAGE_LAMPARRAY_KIND","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_REQUEST_REPORT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_RESPONSE_REPORT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_BLUE_UPDATE_CHANNEL","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_COUNT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_GREEN_UPDATE_CHANNEL","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_END","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_START","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_INTENSITY_UPDATE_CHANNEL","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_MULTI_UPDATE_REPORT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_PURPOSES","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RANGE_UPDATE_REPORT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RED_UPDATE_CHANNEL","features":[58]},{"name":"HID_USAGE_LAMPARRAY_LAMP_UPDATE_FLAGS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_MIN_UPDATE_INTERVAL_IN_MICROSECONDS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_POSITION_X_IN_MICROMETERS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Y_IN_MICROMETERS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Z_IN_MICROMETERS","features":[58]},{"name":"HID_USAGE_LAMPARRAY_RED_LEVEL_COUNT","features":[58]},{"name":"HID_USAGE_LAMPARRAY_UPDATE_LATENCY_IN_MICROSECONDS","features":[58]},{"name":"HID_USAGE_LED_AMBER","features":[58]},{"name":"HID_USAGE_LED_BATTERY_LOW","features":[58]},{"name":"HID_USAGE_LED_BATTERY_OK","features":[58]},{"name":"HID_USAGE_LED_BATTERY_OPERATION","features":[58]},{"name":"HID_USAGE_LED_BUSY","features":[58]},{"name":"HID_USAGE_LED_CALL_PICKUP","features":[58]},{"name":"HID_USAGE_LED_CAMERA_OFF","features":[58]},{"name":"HID_USAGE_LED_CAMERA_ON","features":[58]},{"name":"HID_USAGE_LED_CAPS_LOCK","features":[58]},{"name":"HID_USAGE_LED_CAV","features":[58]},{"name":"HID_USAGE_LED_CLV","features":[58]},{"name":"HID_USAGE_LED_COMPOSE","features":[58]},{"name":"HID_USAGE_LED_CONFERENCE","features":[58]},{"name":"HID_USAGE_LED_COVERAGE","features":[58]},{"name":"HID_USAGE_LED_DATA_MODE","features":[58]},{"name":"HID_USAGE_LED_DO_NOT_DISTURB","features":[58]},{"name":"HID_USAGE_LED_EQUALIZER_ENABLE","features":[58]},{"name":"HID_USAGE_LED_ERROR","features":[58]},{"name":"HID_USAGE_LED_EXTERNAL_POWER","features":[58]},{"name":"HID_USAGE_LED_FAST_BLINK_OFF_TIME","features":[58]},{"name":"HID_USAGE_LED_FAST_BLINK_ON_TIME","features":[58]},{"name":"HID_USAGE_LED_FAST_FORWARD","features":[58]},{"name":"HID_USAGE_LED_FLASH_ON_TIME","features":[58]},{"name":"HID_USAGE_LED_FORWARD","features":[58]},{"name":"HID_USAGE_LED_GENERIC_INDICATOR","features":[58]},{"name":"HID_USAGE_LED_GREEN","features":[58]},{"name":"HID_USAGE_LED_HEAD_SET","features":[58]},{"name":"HID_USAGE_LED_HIGH_CUT_FILTER","features":[58]},{"name":"HID_USAGE_LED_HOLD","features":[58]},{"name":"HID_USAGE_LED_INDICATOR_COLOR","features":[58]},{"name":"HID_USAGE_LED_INDICATOR_FAST_BLINK","features":[58]},{"name":"HID_USAGE_LED_INDICATOR_FLASH","features":[58]},{"name":"HID_USAGE_LED_INDICATOR_OFF","features":[58]},{"name":"HID_USAGE_LED_INDICATOR_ON","features":[58]},{"name":"HID_USAGE_LED_INDICATOR_SLOW_BLINK","features":[58]},{"name":"HID_USAGE_LED_IN_USE_INDICATOR","features":[58]},{"name":"HID_USAGE_LED_KANA","features":[58]},{"name":"HID_USAGE_LED_LOW_CUT_FILTER","features":[58]},{"name":"HID_USAGE_LED_MESSAGE_WAITING","features":[58]},{"name":"HID_USAGE_LED_MICROPHONE","features":[58]},{"name":"HID_USAGE_LED_MULTI_MODE_INDICATOR","features":[58]},{"name":"HID_USAGE_LED_MUTE","features":[58]},{"name":"HID_USAGE_LED_NIGHT_MODE","features":[58]},{"name":"HID_USAGE_LED_NUM_LOCK","features":[58]},{"name":"HID_USAGE_LED_OFF_HOOK","features":[58]},{"name":"HID_USAGE_LED_OFF_LINE","features":[58]},{"name":"HID_USAGE_LED_ON_LINE","features":[58]},{"name":"HID_USAGE_LED_PAPER_JAM","features":[58]},{"name":"HID_USAGE_LED_PAPER_OUT","features":[58]},{"name":"HID_USAGE_LED_PAUSE","features":[58]},{"name":"HID_USAGE_LED_PLAY","features":[58]},{"name":"HID_USAGE_LED_POWER","features":[58]},{"name":"HID_USAGE_LED_READY","features":[58]},{"name":"HID_USAGE_LED_RECORD","features":[58]},{"name":"HID_USAGE_LED_RECORDING_FORMAT_DET","features":[58]},{"name":"HID_USAGE_LED_RED","features":[58]},{"name":"HID_USAGE_LED_REMOTE","features":[58]},{"name":"HID_USAGE_LED_REPEAT","features":[58]},{"name":"HID_USAGE_LED_REVERSE","features":[58]},{"name":"HID_USAGE_LED_REWIND","features":[58]},{"name":"HID_USAGE_LED_RING","features":[58]},{"name":"HID_USAGE_LED_SAMPLING_RATE_DETECT","features":[58]},{"name":"HID_USAGE_LED_SCROLL_LOCK","features":[58]},{"name":"HID_USAGE_LED_SELECTED_INDICATOR","features":[58]},{"name":"HID_USAGE_LED_SEND_CALLS","features":[58]},{"name":"HID_USAGE_LED_SHIFT","features":[58]},{"name":"HID_USAGE_LED_SLOW_BLINK_OFF_TIME","features":[58]},{"name":"HID_USAGE_LED_SLOW_BLINK_ON_TIME","features":[58]},{"name":"HID_USAGE_LED_SOUND_FIELD_ON","features":[58]},{"name":"HID_USAGE_LED_SPEAKER","features":[58]},{"name":"HID_USAGE_LED_SPINNING","features":[58]},{"name":"HID_USAGE_LED_STAND_BY","features":[58]},{"name":"HID_USAGE_LED_STEREO","features":[58]},{"name":"HID_USAGE_LED_STOP","features":[58]},{"name":"HID_USAGE_LED_SURROUND_FIELD_ON","features":[58]},{"name":"HID_USAGE_LED_SYSTEM_SUSPEND","features":[58]},{"name":"HID_USAGE_LED_TONE_ENABLE","features":[58]},{"name":"HID_USAGE_MS_BTH_HF_DIALMEMORY","features":[58]},{"name":"HID_USAGE_MS_BTH_HF_DIALNUMBER","features":[58]},{"name":"HID_USAGE_PAGE_ALPHANUMERIC","features":[58]},{"name":"HID_USAGE_PAGE_ARCADE","features":[58]},{"name":"HID_USAGE_PAGE_BARCODE_SCANNER","features":[58]},{"name":"HID_USAGE_PAGE_BUTTON","features":[58]},{"name":"HID_USAGE_PAGE_CAMERA_CONTROL","features":[58]},{"name":"HID_USAGE_PAGE_CONSUMER","features":[58]},{"name":"HID_USAGE_PAGE_DIGITIZER","features":[58]},{"name":"HID_USAGE_PAGE_GAME","features":[58]},{"name":"HID_USAGE_PAGE_GENERIC","features":[58]},{"name":"HID_USAGE_PAGE_GENERIC_DEVICE","features":[58]},{"name":"HID_USAGE_PAGE_HAPTICS","features":[58]},{"name":"HID_USAGE_PAGE_KEYBOARD","features":[58]},{"name":"HID_USAGE_PAGE_LED","features":[58]},{"name":"HID_USAGE_PAGE_LIGHTING_ILLUMINATION","features":[58]},{"name":"HID_USAGE_PAGE_MAGNETIC_STRIPE_READER","features":[58]},{"name":"HID_USAGE_PAGE_MICROSOFT_BLUETOOTH_HANDSFREE","features":[58]},{"name":"HID_USAGE_PAGE_ORDINAL","features":[58]},{"name":"HID_USAGE_PAGE_PID","features":[58]},{"name":"HID_USAGE_PAGE_SENSOR","features":[58]},{"name":"HID_USAGE_PAGE_SIMULATION","features":[58]},{"name":"HID_USAGE_PAGE_SPORT","features":[58]},{"name":"HID_USAGE_PAGE_TELEPHONY","features":[58]},{"name":"HID_USAGE_PAGE_UNDEFINED","features":[58]},{"name":"HID_USAGE_PAGE_UNICODE","features":[58]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_BEGIN","features":[58]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_END","features":[58]},{"name":"HID_USAGE_PAGE_VR","features":[58]},{"name":"HID_USAGE_PAGE_WEIGHING_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_ACCELLERATOR","features":[58]},{"name":"HID_USAGE_SIMULATION_AILERON","features":[58]},{"name":"HID_USAGE_SIMULATION_AILERON_TRIM","features":[58]},{"name":"HID_USAGE_SIMULATION_AIRPLANE_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_ANTI_TORQUE_CONTROL","features":[58]},{"name":"HID_USAGE_SIMULATION_AUTOMOBILE_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_AUTOPIOLOT_ENABLE","features":[58]},{"name":"HID_USAGE_SIMULATION_BALLAST","features":[58]},{"name":"HID_USAGE_SIMULATION_BARREL_ELEVATION","features":[58]},{"name":"HID_USAGE_SIMULATION_BICYCLE_CRANK","features":[58]},{"name":"HID_USAGE_SIMULATION_BICYCLE_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_BRAKE","features":[58]},{"name":"HID_USAGE_SIMULATION_CHAFF_RELEASE","features":[58]},{"name":"HID_USAGE_SIMULATION_CLUTCH","features":[58]},{"name":"HID_USAGE_SIMULATION_COLLECTIVE_CONTROL","features":[58]},{"name":"HID_USAGE_SIMULATION_CYCLIC_CONTROL","features":[58]},{"name":"HID_USAGE_SIMULATION_CYCLIC_TRIM","features":[58]},{"name":"HID_USAGE_SIMULATION_DIVE_BRAKE","features":[58]},{"name":"HID_USAGE_SIMULATION_DIVE_PLANE","features":[58]},{"name":"HID_USAGE_SIMULATION_ELECTRONIC_COUNTERMEASURES","features":[58]},{"name":"HID_USAGE_SIMULATION_ELEVATOR","features":[58]},{"name":"HID_USAGE_SIMULATION_ELEVATOR_TRIM","features":[58]},{"name":"HID_USAGE_SIMULATION_FLARE_RELEASE","features":[58]},{"name":"HID_USAGE_SIMULATION_FLIGHT_COMMUNICATIONS","features":[58]},{"name":"HID_USAGE_SIMULATION_FLIGHT_CONTROL_STICK","features":[58]},{"name":"HID_USAGE_SIMULATION_FLIGHT_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_FLIGHT_STICK","features":[58]},{"name":"HID_USAGE_SIMULATION_FLIGHT_YOKE","features":[58]},{"name":"HID_USAGE_SIMULATION_FRONT_BRAKE","features":[58]},{"name":"HID_USAGE_SIMULATION_HANDLE_BARS","features":[58]},{"name":"HID_USAGE_SIMULATION_HELICOPTER_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_LANDING_GEAR","features":[58]},{"name":"HID_USAGE_SIMULATION_MAGIC_CARPET_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_MOTORCYCLE_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_REAR_BRAKE","features":[58]},{"name":"HID_USAGE_SIMULATION_RUDDER","features":[58]},{"name":"HID_USAGE_SIMULATION_SAILING_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_SHIFTER","features":[58]},{"name":"HID_USAGE_SIMULATION_SPACESHIP_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_SPORTS_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_STEERING","features":[58]},{"name":"HID_USAGE_SIMULATION_SUBMARINE_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_TANK_SIMULATION_DEVICE","features":[58]},{"name":"HID_USAGE_SIMULATION_THROTTLE","features":[58]},{"name":"HID_USAGE_SIMULATION_TOE_BRAKE","features":[58]},{"name":"HID_USAGE_SIMULATION_TRACK_CONTROL","features":[58]},{"name":"HID_USAGE_SIMULATION_TRIGGER","features":[58]},{"name":"HID_USAGE_SIMULATION_TURRET_DIRECTION","features":[58]},{"name":"HID_USAGE_SIMULATION_WEAPONS_ARM","features":[58]},{"name":"HID_USAGE_SIMULATION_WEAPONS_SELECT","features":[58]},{"name":"HID_USAGE_SIMULATION_WING_FLAPS","features":[58]},{"name":"HID_USAGE_SPORT_10_IRON","features":[58]},{"name":"HID_USAGE_SPORT_11_IRON","features":[58]},{"name":"HID_USAGE_SPORT_1_IRON","features":[58]},{"name":"HID_USAGE_SPORT_1_WOOD","features":[58]},{"name":"HID_USAGE_SPORT_2_IRON","features":[58]},{"name":"HID_USAGE_SPORT_3_IRON","features":[58]},{"name":"HID_USAGE_SPORT_3_WOOD","features":[58]},{"name":"HID_USAGE_SPORT_4_IRON","features":[58]},{"name":"HID_USAGE_SPORT_5_IRON","features":[58]},{"name":"HID_USAGE_SPORT_5_WOOD","features":[58]},{"name":"HID_USAGE_SPORT_6_IRON","features":[58]},{"name":"HID_USAGE_SPORT_7_IRON","features":[58]},{"name":"HID_USAGE_SPORT_7_WOOD","features":[58]},{"name":"HID_USAGE_SPORT_8_IRON","features":[58]},{"name":"HID_USAGE_SPORT_9_IRON","features":[58]},{"name":"HID_USAGE_SPORT_9_WOOD","features":[58]},{"name":"HID_USAGE_SPORT_BASEBALL_BAT","features":[58]},{"name":"HID_USAGE_SPORT_FOLLOW_THROUGH","features":[58]},{"name":"HID_USAGE_SPORT_GOLF_CLUB","features":[58]},{"name":"HID_USAGE_SPORT_HEEL_TOE","features":[58]},{"name":"HID_USAGE_SPORT_HEIGHT","features":[58]},{"name":"HID_USAGE_SPORT_LOFT_WEDGE","features":[58]},{"name":"HID_USAGE_SPORT_OAR","features":[58]},{"name":"HID_USAGE_SPORT_POWER_WEDGE","features":[58]},{"name":"HID_USAGE_SPORT_PUTTER","features":[58]},{"name":"HID_USAGE_SPORT_RATE","features":[58]},{"name":"HID_USAGE_SPORT_ROWING_MACHINE","features":[58]},{"name":"HID_USAGE_SPORT_SAND_WEDGE","features":[58]},{"name":"HID_USAGE_SPORT_SLOPE","features":[58]},{"name":"HID_USAGE_SPORT_STICK_FACE_ANGLE","features":[58]},{"name":"HID_USAGE_SPORT_STICK_SPEED","features":[58]},{"name":"HID_USAGE_SPORT_STICK_TYPE","features":[58]},{"name":"HID_USAGE_SPORT_TEMPO","features":[58]},{"name":"HID_USAGE_SPORT_TREADMILL","features":[58]},{"name":"HID_USAGE_TELEPHONY_ANSWERING_MACHINE","features":[58]},{"name":"HID_USAGE_TELEPHONY_DROP","features":[58]},{"name":"HID_USAGE_TELEPHONY_HANDSET","features":[58]},{"name":"HID_USAGE_TELEPHONY_HEADSET","features":[58]},{"name":"HID_USAGE_TELEPHONY_HOST_AVAILABLE","features":[58]},{"name":"HID_USAGE_TELEPHONY_KEYPAD","features":[58]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_0","features":[58]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_D","features":[58]},{"name":"HID_USAGE_TELEPHONY_LINE","features":[58]},{"name":"HID_USAGE_TELEPHONY_MESSAGE_CONTROLS","features":[58]},{"name":"HID_USAGE_TELEPHONY_PHONE","features":[58]},{"name":"HID_USAGE_TELEPHONY_PROGRAMMABLE_BUTTON","features":[58]},{"name":"HID_USAGE_TELEPHONY_REDIAL","features":[58]},{"name":"HID_USAGE_TELEPHONY_RING_ENABLE","features":[58]},{"name":"HID_USAGE_TELEPHONY_SEND","features":[58]},{"name":"HID_USAGE_TELEPHONY_TRANSFER","features":[58]},{"name":"HID_USAGE_VR_ANIMATRONIC_DEVICE","features":[58]},{"name":"HID_USAGE_VR_BELT","features":[58]},{"name":"HID_USAGE_VR_BODY_SUIT","features":[58]},{"name":"HID_USAGE_VR_DISPLAY_ENABLE","features":[58]},{"name":"HID_USAGE_VR_FLEXOR","features":[58]},{"name":"HID_USAGE_VR_GLOVE","features":[58]},{"name":"HID_USAGE_VR_HAND_TRACKER","features":[58]},{"name":"HID_USAGE_VR_HEAD_MOUNTED_DISPLAY","features":[58]},{"name":"HID_USAGE_VR_HEAD_TRACKER","features":[58]},{"name":"HID_USAGE_VR_OCULOMETER","features":[58]},{"name":"HID_USAGE_VR_STEREO_ENABLE","features":[58]},{"name":"HID_USAGE_VR_VEST","features":[58]},{"name":"HID_XFER_PACKET","features":[58]},{"name":"HORIZONTAL_WHEEL_PRESENT","features":[58]},{"name":"HidD_FlushQueue","features":[58,1]},{"name":"HidD_FreePreparsedData","features":[58,1]},{"name":"HidD_GetAttributes","features":[58,1]},{"name":"HidD_GetConfiguration","features":[58,1]},{"name":"HidD_GetFeature","features":[58,1]},{"name":"HidD_GetHidGuid","features":[58]},{"name":"HidD_GetIndexedString","features":[58,1]},{"name":"HidD_GetInputReport","features":[58,1]},{"name":"HidD_GetManufacturerString","features":[58,1]},{"name":"HidD_GetMsGenreDescriptor","features":[58,1]},{"name":"HidD_GetNumInputBuffers","features":[58,1]},{"name":"HidD_GetPhysicalDescriptor","features":[58,1]},{"name":"HidD_GetPreparsedData","features":[58,1]},{"name":"HidD_GetProductString","features":[58,1]},{"name":"HidD_GetSerialNumberString","features":[58,1]},{"name":"HidD_SetConfiguration","features":[58,1]},{"name":"HidD_SetFeature","features":[58,1]},{"name":"HidD_SetNumInputBuffers","features":[58,1]},{"name":"HidD_SetOutputReport","features":[58,1]},{"name":"HidP_Feature","features":[58]},{"name":"HidP_GetButtonArray","features":[58,1]},{"name":"HidP_GetButtonCaps","features":[58,1]},{"name":"HidP_GetCaps","features":[58,1]},{"name":"HidP_GetData","features":[58,1]},{"name":"HidP_GetExtendedAttributes","features":[58,1]},{"name":"HidP_GetLinkCollectionNodes","features":[58,1]},{"name":"HidP_GetScaledUsageValue","features":[58,1]},{"name":"HidP_GetSpecificButtonCaps","features":[58,1]},{"name":"HidP_GetSpecificValueCaps","features":[58,1]},{"name":"HidP_GetUsageValue","features":[58,1]},{"name":"HidP_GetUsageValueArray","features":[58,1]},{"name":"HidP_GetUsages","features":[58,1]},{"name":"HidP_GetUsagesEx","features":[58,1]},{"name":"HidP_GetValueCaps","features":[58,1]},{"name":"HidP_InitializeReportForID","features":[58,1]},{"name":"HidP_Input","features":[58]},{"name":"HidP_Keyboard_Break","features":[58]},{"name":"HidP_Keyboard_Make","features":[58]},{"name":"HidP_MaxDataListLength","features":[58]},{"name":"HidP_MaxUsageListLength","features":[58]},{"name":"HidP_Output","features":[58]},{"name":"HidP_SetButtonArray","features":[58,1]},{"name":"HidP_SetData","features":[58,1]},{"name":"HidP_SetScaledUsageValue","features":[58,1]},{"name":"HidP_SetUsageValue","features":[58,1]},{"name":"HidP_SetUsageValueArray","features":[58,1]},{"name":"HidP_SetUsages","features":[58,1]},{"name":"HidP_TranslateUsagesToI8042ScanCodes","features":[58,1]},{"name":"HidP_UnsetUsages","features":[58,1]},{"name":"HidP_UsageListDifference","features":[58,1]},{"name":"IDirectInput2A","features":[58]},{"name":"IDirectInput2W","features":[58]},{"name":"IDirectInput7A","features":[58]},{"name":"IDirectInput7W","features":[58]},{"name":"IDirectInput8A","features":[58]},{"name":"IDirectInput8W","features":[58]},{"name":"IDirectInputA","features":[58]},{"name":"IDirectInputDevice2A","features":[58]},{"name":"IDirectInputDevice2W","features":[58]},{"name":"IDirectInputDevice7A","features":[58]},{"name":"IDirectInputDevice7W","features":[58]},{"name":"IDirectInputDevice8A","features":[58]},{"name":"IDirectInputDevice8W","features":[58]},{"name":"IDirectInputDeviceA","features":[58]},{"name":"IDirectInputDeviceW","features":[58]},{"name":"IDirectInputEffect","features":[58]},{"name":"IDirectInputEffectDriver","features":[58]},{"name":"IDirectInputJoyConfig","features":[58]},{"name":"IDirectInputJoyConfig8","features":[58]},{"name":"IDirectInputW","features":[58]},{"name":"INDICATOR_LIST","features":[58]},{"name":"INPUT_BUTTON_ENABLE_INFO","features":[58,1]},{"name":"IOCTL_BUTTON_GET_ENABLED_ON_IDLE","features":[58]},{"name":"IOCTL_BUTTON_SET_ENABLED_ON_IDLE","features":[58]},{"name":"IOCTL_KEYBOARD_INSERT_DATA","features":[58]},{"name":"IOCTL_KEYBOARD_QUERY_ATTRIBUTES","features":[58]},{"name":"IOCTL_KEYBOARD_QUERY_EXTENDED_ATTRIBUTES","features":[58]},{"name":"IOCTL_KEYBOARD_QUERY_IME_STATUS","features":[58]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATORS","features":[58]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATOR_TRANSLATION","features":[58]},{"name":"IOCTL_KEYBOARD_QUERY_TYPEMATIC","features":[58]},{"name":"IOCTL_KEYBOARD_SET_IME_STATUS","features":[58]},{"name":"IOCTL_KEYBOARD_SET_INDICATORS","features":[58]},{"name":"IOCTL_KEYBOARD_SET_TYPEMATIC","features":[58]},{"name":"IOCTL_MOUSE_INSERT_DATA","features":[58]},{"name":"IOCTL_MOUSE_QUERY_ATTRIBUTES","features":[58]},{"name":"JOYCALIBRATE","features":[58]},{"name":"JOYPOS","features":[58]},{"name":"JOYRANGE","features":[58]},{"name":"JOYREGHWCONFIG","features":[58]},{"name":"JOYREGHWSETTINGS","features":[58]},{"name":"JOYREGHWVALUES","features":[58]},{"name":"JOYREGUSERVALUES","features":[58]},{"name":"JOYTYPE_ANALOGCOMPAT","features":[58]},{"name":"JOYTYPE_DEFAULTPROPSHEET","features":[58]},{"name":"JOYTYPE_DEVICEHIDE","features":[58]},{"name":"JOYTYPE_ENABLEINPUTREPORT","features":[58]},{"name":"JOYTYPE_GAMEHIDE","features":[58]},{"name":"JOYTYPE_HIDEACTIVE","features":[58]},{"name":"JOYTYPE_INFODEFAULT","features":[58]},{"name":"JOYTYPE_INFOMASK","features":[58]},{"name":"JOYTYPE_INFOYRPEDALS","features":[58]},{"name":"JOYTYPE_INFOYYPEDALS","features":[58]},{"name":"JOYTYPE_INFOZISSLIDER","features":[58]},{"name":"JOYTYPE_INFOZISZ","features":[58]},{"name":"JOYTYPE_INFOZRPEDALS","features":[58]},{"name":"JOYTYPE_INFOZYPEDALS","features":[58]},{"name":"JOYTYPE_KEYBHIDE","features":[58]},{"name":"JOYTYPE_MOUSEHIDE","features":[58]},{"name":"JOYTYPE_NOAUTODETECTGAMEPORT","features":[58]},{"name":"JOYTYPE_NOHIDDIRECT","features":[58]},{"name":"JOYTYPE_ZEROGAMEENUMOEMDATA","features":[58]},{"name":"JOY_HWS_AUTOLOAD","features":[58]},{"name":"JOY_HWS_GAMEPORTBUSBUSY","features":[58]},{"name":"JOY_HWS_HASPOV","features":[58]},{"name":"JOY_HWS_HASR","features":[58]},{"name":"JOY_HWS_HASU","features":[58]},{"name":"JOY_HWS_HASV","features":[58]},{"name":"JOY_HWS_HASZ","features":[58]},{"name":"JOY_HWS_ISANALOGPORTDRIVER","features":[58]},{"name":"JOY_HWS_ISCARCTRL","features":[58]},{"name":"JOY_HWS_ISGAMEPAD","features":[58]},{"name":"JOY_HWS_ISGAMEPORTBUS","features":[58]},{"name":"JOY_HWS_ISGAMEPORTDRIVER","features":[58]},{"name":"JOY_HWS_ISHEADTRACKER","features":[58]},{"name":"JOY_HWS_ISYOKE","features":[58]},{"name":"JOY_HWS_NODEVNODE","features":[58]},{"name":"JOY_HWS_POVISBUTTONCOMBOS","features":[58]},{"name":"JOY_HWS_POVISJ1X","features":[58]},{"name":"JOY_HWS_POVISJ1Y","features":[58]},{"name":"JOY_HWS_POVISJ2X","features":[58]},{"name":"JOY_HWS_POVISPOLL","features":[58]},{"name":"JOY_HWS_RISJ1X","features":[58]},{"name":"JOY_HWS_RISJ1Y","features":[58]},{"name":"JOY_HWS_RISJ2Y","features":[58]},{"name":"JOY_HWS_XISJ1Y","features":[58]},{"name":"JOY_HWS_XISJ2X","features":[58]},{"name":"JOY_HWS_XISJ2Y","features":[58]},{"name":"JOY_HWS_YISJ1X","features":[58]},{"name":"JOY_HWS_YISJ2X","features":[58]},{"name":"JOY_HWS_YISJ2Y","features":[58]},{"name":"JOY_HWS_ZISJ1X","features":[58]},{"name":"JOY_HWS_ZISJ1Y","features":[58]},{"name":"JOY_HWS_ZISJ2X","features":[58]},{"name":"JOY_HW_2A_2B_GENERIC","features":[58]},{"name":"JOY_HW_2A_4B_GENERIC","features":[58]},{"name":"JOY_HW_2B_FLIGHTYOKE","features":[58]},{"name":"JOY_HW_2B_FLIGHTYOKETHROTTLE","features":[58]},{"name":"JOY_HW_2B_GAMEPAD","features":[58]},{"name":"JOY_HW_3A_2B_GENERIC","features":[58]},{"name":"JOY_HW_3A_4B_GENERIC","features":[58]},{"name":"JOY_HW_4B_FLIGHTYOKE","features":[58]},{"name":"JOY_HW_4B_FLIGHTYOKETHROTTLE","features":[58]},{"name":"JOY_HW_4B_GAMEPAD","features":[58]},{"name":"JOY_HW_CUSTOM","features":[58]},{"name":"JOY_HW_LASTENTRY","features":[58]},{"name":"JOY_HW_NONE","features":[58]},{"name":"JOY_HW_TWO_2A_2B_WITH_Y","features":[58]},{"name":"JOY_ISCAL_POV","features":[58]},{"name":"JOY_ISCAL_R","features":[58]},{"name":"JOY_ISCAL_U","features":[58]},{"name":"JOY_ISCAL_V","features":[58]},{"name":"JOY_ISCAL_XY","features":[58]},{"name":"JOY_ISCAL_Z","features":[58]},{"name":"JOY_OEMPOLL_PASSDRIVERDATA","features":[58]},{"name":"JOY_PASSDRIVERDATA","features":[58]},{"name":"JOY_POVVAL_BACKWARD","features":[58]},{"name":"JOY_POVVAL_FORWARD","features":[58]},{"name":"JOY_POVVAL_LEFT","features":[58]},{"name":"JOY_POVVAL_RIGHT","features":[58]},{"name":"JOY_POV_NUMDIRS","features":[58]},{"name":"JOY_US_HASRUDDER","features":[58]},{"name":"JOY_US_ISOEM","features":[58]},{"name":"JOY_US_PRESENT","features":[58]},{"name":"JOY_US_RESERVED","features":[58]},{"name":"JOY_US_VOLATILE","features":[58]},{"name":"KEYBOARD_ATTRIBUTES","features":[58]},{"name":"KEYBOARD_CAPS_LOCK_ON","features":[58]},{"name":"KEYBOARD_ERROR_VALUE_BASE","features":[58]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES","features":[58]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES_STRUCT_VERSION_1","features":[58]},{"name":"KEYBOARD_ID","features":[58]},{"name":"KEYBOARD_IME_STATUS","features":[58]},{"name":"KEYBOARD_INDICATOR_PARAMETERS","features":[58]},{"name":"KEYBOARD_INDICATOR_TRANSLATION","features":[58]},{"name":"KEYBOARD_INPUT_DATA","features":[58]},{"name":"KEYBOARD_KANA_LOCK_ON","features":[58]},{"name":"KEYBOARD_LED_INJECTED","features":[58]},{"name":"KEYBOARD_NUM_LOCK_ON","features":[58]},{"name":"KEYBOARD_OVERRUN_MAKE_CODE","features":[58]},{"name":"KEYBOARD_SCROLL_LOCK_ON","features":[58]},{"name":"KEYBOARD_SHADOW","features":[58]},{"name":"KEYBOARD_TYPEMATIC_PARAMETERS","features":[58]},{"name":"KEYBOARD_UNIT_ID_PARAMETER","features":[58]},{"name":"KEY_BREAK","features":[58]},{"name":"KEY_E0","features":[58]},{"name":"KEY_E1","features":[58]},{"name":"KEY_FROM_KEYBOARD_OVERRIDER","features":[58]},{"name":"KEY_MAKE","features":[58]},{"name":"KEY_RIM_VKEY","features":[58]},{"name":"KEY_TERMSRV_SET_LED","features":[58]},{"name":"KEY_TERMSRV_SHADOW","features":[58]},{"name":"KEY_TERMSRV_VKPACKET","features":[58]},{"name":"KEY_UNICODE_SEQUENCE_END","features":[58]},{"name":"KEY_UNICODE_SEQUENCE_ITEM","features":[58]},{"name":"LPDICONFIGUREDEVICESCALLBACK","features":[58,1]},{"name":"LPDIENUMCREATEDEFFECTOBJECTSCALLBACK","features":[58,1]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKA","features":[58,1]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKW","features":[58,1]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBA","features":[58,1]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBW","features":[58,1]},{"name":"LPDIENUMDEVICESCALLBACKA","features":[58,1]},{"name":"LPDIENUMDEVICESCALLBACKW","features":[58,1]},{"name":"LPDIENUMEFFECTSCALLBACKA","features":[58,1]},{"name":"LPDIENUMEFFECTSCALLBACKW","features":[58,1]},{"name":"LPDIENUMEFFECTSINFILECALLBACK","features":[58,1]},{"name":"LPDIJOYTYPECALLBACK","features":[58,1]},{"name":"LPFNSHOWJOYCPL","features":[58,1]},{"name":"MAXCPOINTSNUM","features":[58]},{"name":"MAX_JOYSTICKOEMVXDNAME","features":[58]},{"name":"MAX_JOYSTRING","features":[58]},{"name":"MOUSE_ATTRIBUTES","features":[58]},{"name":"MOUSE_BUTTON_1_DOWN","features":[58]},{"name":"MOUSE_BUTTON_1_UP","features":[58]},{"name":"MOUSE_BUTTON_2_DOWN","features":[58]},{"name":"MOUSE_BUTTON_2_UP","features":[58]},{"name":"MOUSE_BUTTON_3_DOWN","features":[58]},{"name":"MOUSE_BUTTON_3_UP","features":[58]},{"name":"MOUSE_BUTTON_4_DOWN","features":[58]},{"name":"MOUSE_BUTTON_4_UP","features":[58]},{"name":"MOUSE_BUTTON_5_DOWN","features":[58]},{"name":"MOUSE_BUTTON_5_UP","features":[58]},{"name":"MOUSE_ERROR_VALUE_BASE","features":[58]},{"name":"MOUSE_HID_HARDWARE","features":[58]},{"name":"MOUSE_HWHEEL","features":[58]},{"name":"MOUSE_I8042_HARDWARE","features":[58]},{"name":"MOUSE_INPORT_HARDWARE","features":[58]},{"name":"MOUSE_INPUT_DATA","features":[58]},{"name":"MOUSE_LEFT_BUTTON_DOWN","features":[58]},{"name":"MOUSE_LEFT_BUTTON_UP","features":[58]},{"name":"MOUSE_MIDDLE_BUTTON_DOWN","features":[58]},{"name":"MOUSE_MIDDLE_BUTTON_UP","features":[58]},{"name":"MOUSE_RIGHT_BUTTON_DOWN","features":[58]},{"name":"MOUSE_RIGHT_BUTTON_UP","features":[58]},{"name":"MOUSE_SERIAL_HARDWARE","features":[58]},{"name":"MOUSE_TERMSRV_SRC_SHADOW","features":[58]},{"name":"MOUSE_UNIT_ID_PARAMETER","features":[58]},{"name":"MOUSE_WHEEL","features":[58]},{"name":"PFN_HidP_GetVersionInternal","features":[58,1]},{"name":"PHIDP_INSERT_SCANCODES","features":[58,1]},{"name":"PHIDP_PREPARSED_DATA","features":[58]},{"name":"USAGE_AND_PAGE","features":[58]},{"name":"WHEELMOUSE_HID_HARDWARE","features":[58]},{"name":"WHEELMOUSE_I8042_HARDWARE","features":[58]},{"name":"WHEELMOUSE_SERIAL_HARDWARE","features":[58]},{"name":"joyConfigChanged","features":[58]}],"381":[{"name":"CLSID_WPD_NAMESPACE_EXTENSION","features":[59]},{"name":"DELETE_OBJECT_OPTIONS","features":[59]},{"name":"DEVICE_RADIO_STATE","features":[59]},{"name":"DEVPKEY_MTPBTH_IsConnected","features":[59,35]},{"name":"DEVSVCTYPE_ABSTRACT","features":[59]},{"name":"DEVSVCTYPE_DEFAULT","features":[59]},{"name":"DEVSVC_SERVICEINFO_VERSION","features":[59]},{"name":"DMProcessConfigXMLFiltered","features":[59]},{"name":"DRS_HW_RADIO_OFF","features":[59]},{"name":"DRS_HW_RADIO_OFF_UNCONTROLLABLE","features":[59]},{"name":"DRS_HW_RADIO_ON_UNCONTROLLABLE","features":[59]},{"name":"DRS_RADIO_INVALID","features":[59]},{"name":"DRS_RADIO_MAX","features":[59]},{"name":"DRS_RADIO_ON","features":[59]},{"name":"DRS_SW_HW_RADIO_OFF","features":[59]},{"name":"DRS_SW_RADIO_OFF","features":[59]},{"name":"ENUM_AnchorResults_AnchorStateInvalid","features":[59]},{"name":"ENUM_AnchorResults_AnchorStateNormal","features":[59]},{"name":"ENUM_AnchorResults_AnchorStateOld","features":[59]},{"name":"ENUM_AnchorResults_ItemStateChanged","features":[59]},{"name":"ENUM_AnchorResults_ItemStateCreated","features":[59]},{"name":"ENUM_AnchorResults_ItemStateDeleted","features":[59]},{"name":"ENUM_AnchorResults_ItemStateInvalid","features":[59]},{"name":"ENUM_AnchorResults_ItemStateUpdated","features":[59]},{"name":"ENUM_CalendarObj_BusyStatusBusy","features":[59]},{"name":"ENUM_CalendarObj_BusyStatusFree","features":[59]},{"name":"ENUM_CalendarObj_BusyStatusOutOfOffice","features":[59]},{"name":"ENUM_CalendarObj_BusyStatusTentative","features":[59]},{"name":"ENUM_DeviceMetadataObj_DefaultCABFalse","features":[59]},{"name":"ENUM_DeviceMetadataObj_DefaultCABTrue","features":[59]},{"name":"ENUM_MessageObj_PatternInstanceFirst","features":[59]},{"name":"ENUM_MessageObj_PatternInstanceFourth","features":[59]},{"name":"ENUM_MessageObj_PatternInstanceLast","features":[59]},{"name":"ENUM_MessageObj_PatternInstanceNone","features":[59]},{"name":"ENUM_MessageObj_PatternInstanceSecond","features":[59]},{"name":"ENUM_MessageObj_PatternInstanceThird","features":[59]},{"name":"ENUM_MessageObj_PatternTypeDaily","features":[59]},{"name":"ENUM_MessageObj_PatternTypeMonthly","features":[59]},{"name":"ENUM_MessageObj_PatternTypeWeekly","features":[59]},{"name":"ENUM_MessageObj_PatternTypeYearly","features":[59]},{"name":"ENUM_MessageObj_PriorityHighest","features":[59]},{"name":"ENUM_MessageObj_PriorityLowest","features":[59]},{"name":"ENUM_MessageObj_PriorityNormal","features":[59]},{"name":"ENUM_MessageObj_ReadFalse","features":[59]},{"name":"ENUM_MessageObj_ReadTrue","features":[59]},{"name":"ENUM_StatusSvc_ChargingActive","features":[59]},{"name":"ENUM_StatusSvc_ChargingInactive","features":[59]},{"name":"ENUM_StatusSvc_ChargingUnknown","features":[59]},{"name":"ENUM_StatusSvc_RoamingActive","features":[59]},{"name":"ENUM_StatusSvc_RoamingInactive","features":[59]},{"name":"ENUM_StatusSvc_RoamingUnknown","features":[59]},{"name":"ENUM_SyncSvc_SyncObjectReferencesDisabled","features":[59]},{"name":"ENUM_SyncSvc_SyncObjectReferencesEnabled","features":[59]},{"name":"ENUM_TaskObj_CompleteFalse","features":[59]},{"name":"ENUM_TaskObj_CompleteTrue","features":[59]},{"name":"E_WPD_DEVICE_ALREADY_OPENED","features":[59]},{"name":"E_WPD_DEVICE_IS_HUNG","features":[59]},{"name":"E_WPD_DEVICE_NOT_OPEN","features":[59]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_DEVICE","features":[59]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_SERVICE","features":[59]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_DEVICE","features":[59]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_SERVICE","features":[59]},{"name":"E_WPD_OBJECT_NOT_COMMITED","features":[59]},{"name":"E_WPD_SERVICE_ALREADY_OPENED","features":[59]},{"name":"E_WPD_SERVICE_BAD_PARAMETER_ORDER","features":[59]},{"name":"E_WPD_SERVICE_NOT_OPEN","features":[59]},{"name":"E_WPD_SMS_INVALID_MESSAGE_BODY","features":[59]},{"name":"E_WPD_SMS_INVALID_RECIPIENT","features":[59]},{"name":"E_WPD_SMS_SERVICE_UNAVAILABLE","features":[59]},{"name":"EnumBthMtpConnectors","features":[59]},{"name":"FACILITY_WPD","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekFriday","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekMonday","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekNone","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekSaturday","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekSunday","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekThursday","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekTuesday","features":[59]},{"name":"FLAG_MessageObj_DayOfWeekWednesday","features":[59]},{"name":"GUID_DEVINTERFACE_WPD","features":[59]},{"name":"GUID_DEVINTERFACE_WPD_PRIVATE","features":[59]},{"name":"GUID_DEVINTERFACE_WPD_SERVICE","features":[59]},{"name":"IConnectionRequestCallback","features":[59]},{"name":"IEnumPortableDeviceConnectors","features":[59]},{"name":"IEnumPortableDeviceObjectIDs","features":[59]},{"name":"IMediaRadioManager","features":[59]},{"name":"IMediaRadioManagerNotifySink","features":[59]},{"name":"IOCTL_WPD_MESSAGE_READWRITE_ACCESS","features":[59]},{"name":"IOCTL_WPD_MESSAGE_READ_ACCESS","features":[59]},{"name":"IPortableDevice","features":[59]},{"name":"IPortableDeviceCapabilities","features":[59]},{"name":"IPortableDeviceConnector","features":[59]},{"name":"IPortableDeviceContent","features":[59]},{"name":"IPortableDeviceContent2","features":[59]},{"name":"IPortableDeviceDataStream","features":[59]},{"name":"IPortableDeviceDispatchFactory","features":[59]},{"name":"IPortableDeviceEventCallback","features":[59]},{"name":"IPortableDeviceKeyCollection","features":[59]},{"name":"IPortableDeviceManager","features":[59]},{"name":"IPortableDevicePropVariantCollection","features":[59]},{"name":"IPortableDeviceProperties","features":[59]},{"name":"IPortableDevicePropertiesBulk","features":[59]},{"name":"IPortableDevicePropertiesBulkCallback","features":[59]},{"name":"IPortableDeviceResources","features":[59]},{"name":"IPortableDeviceService","features":[59]},{"name":"IPortableDeviceServiceActivation","features":[59]},{"name":"IPortableDeviceServiceCapabilities","features":[59]},{"name":"IPortableDeviceServiceManager","features":[59]},{"name":"IPortableDeviceServiceMethodCallback","features":[59]},{"name":"IPortableDeviceServiceMethods","features":[59]},{"name":"IPortableDeviceServiceOpenCallback","features":[59]},{"name":"IPortableDeviceUnitsStream","features":[59]},{"name":"IPortableDeviceValues","features":[59]},{"name":"IPortableDeviceValuesCollection","features":[59]},{"name":"IPortableDeviceWebControl","features":[59]},{"name":"IRadioInstance","features":[59]},{"name":"IRadioInstanceCollection","features":[59]},{"name":"IWpdSerializer","features":[59]},{"name":"NAME_3GPP2File","features":[59]},{"name":"NAME_3GPPFile","features":[59]},{"name":"NAME_AACFile","features":[59]},{"name":"NAME_AIFFFile","features":[59]},{"name":"NAME_AMRFile","features":[59]},{"name":"NAME_ASFFile","features":[59]},{"name":"NAME_ASXPlaylist","features":[59]},{"name":"NAME_ATSCTSFile","features":[59]},{"name":"NAME_AVCHDFile","features":[59]},{"name":"NAME_AVIFile","features":[59]},{"name":"NAME_AbstractActivity","features":[59]},{"name":"NAME_AbstractActivityOccurrence","features":[59]},{"name":"NAME_AbstractAudioAlbum","features":[59]},{"name":"NAME_AbstractAudioPlaylist","features":[59]},{"name":"NAME_AbstractAudioVideoAlbum","features":[59]},{"name":"NAME_AbstractChapteredProduction","features":[59]},{"name":"NAME_AbstractContact","features":[59]},{"name":"NAME_AbstractContactGroup","features":[59]},{"name":"NAME_AbstractDocument","features":[59]},{"name":"NAME_AbstractImageAlbum","features":[59]},{"name":"NAME_AbstractMediacast","features":[59]},{"name":"NAME_AbstractMessage","features":[59]},{"name":"NAME_AbstractMessageFolder","features":[59]},{"name":"NAME_AbstractMultimediaAlbum","features":[59]},{"name":"NAME_AbstractNote","features":[59]},{"name":"NAME_AbstractTask","features":[59]},{"name":"NAME_AbstractVideoAlbum","features":[59]},{"name":"NAME_AbstractVideoPlaylist","features":[59]},{"name":"NAME_AnchorResults","features":[59]},{"name":"NAME_AnchorResults_Anchor","features":[59]},{"name":"NAME_AnchorResults_AnchorState","features":[59]},{"name":"NAME_AnchorResults_ResultObjectID","features":[59]},{"name":"NAME_AnchorSyncKnowledge","features":[59]},{"name":"NAME_AnchorSyncSvc","features":[59]},{"name":"NAME_AnchorSyncSvc_BeginSync","features":[59]},{"name":"NAME_AnchorSyncSvc_CurrentAnchor","features":[59]},{"name":"NAME_AnchorSyncSvc_EndSync","features":[59]},{"name":"NAME_AnchorSyncSvc_FilterType","features":[59]},{"name":"NAME_AnchorSyncSvc_GetChangesSinceAnchor","features":[59]},{"name":"NAME_AnchorSyncSvc_KnowledgeObjectID","features":[59]},{"name":"NAME_AnchorSyncSvc_LastSyncProxyID","features":[59]},{"name":"NAME_AnchorSyncSvc_LocalOnlyDelete","features":[59]},{"name":"NAME_AnchorSyncSvc_ProviderVersion","features":[59]},{"name":"NAME_AnchorSyncSvc_ReplicaID","features":[59]},{"name":"NAME_AnchorSyncSvc_SyncFormat","features":[59]},{"name":"NAME_AnchorSyncSvc_VersionProps","features":[59]},{"name":"NAME_Association","features":[59]},{"name":"NAME_AudibleFile","features":[59]},{"name":"NAME_AudioObj_AudioBitDepth","features":[59]},{"name":"NAME_AudioObj_AudioBitRate","features":[59]},{"name":"NAME_AudioObj_AudioBlockAlignment","features":[59]},{"name":"NAME_AudioObj_AudioFormatCode","features":[59]},{"name":"NAME_AudioObj_Channels","features":[59]},{"name":"NAME_AudioObj_Lyrics","features":[59]},{"name":"NAME_BMPImage","features":[59]},{"name":"NAME_CIFFImage","features":[59]},{"name":"NAME_CalendarObj_Accepted","features":[59]},{"name":"NAME_CalendarObj_BeginDateTime","features":[59]},{"name":"NAME_CalendarObj_BusyStatus","features":[59]},{"name":"NAME_CalendarObj_Declined","features":[59]},{"name":"NAME_CalendarObj_EndDateTime","features":[59]},{"name":"NAME_CalendarObj_Location","features":[59]},{"name":"NAME_CalendarObj_PatternDuration","features":[59]},{"name":"NAME_CalendarObj_PatternStartTime","features":[59]},{"name":"NAME_CalendarObj_ReminderOffset","features":[59]},{"name":"NAME_CalendarObj_Tentative","features":[59]},{"name":"NAME_CalendarObj_TimeZone","features":[59]},{"name":"NAME_CalendarSvc","features":[59]},{"name":"NAME_CalendarSvc_SyncWindowEnd","features":[59]},{"name":"NAME_CalendarSvc_SyncWindowStart","features":[59]},{"name":"NAME_ContactObj_AnniversaryDate","features":[59]},{"name":"NAME_ContactObj_Assistant","features":[59]},{"name":"NAME_ContactObj_Birthdate","features":[59]},{"name":"NAME_ContactObj_BusinessAddressCity","features":[59]},{"name":"NAME_ContactObj_BusinessAddressCountry","features":[59]},{"name":"NAME_ContactObj_BusinessAddressFull","features":[59]},{"name":"NAME_ContactObj_BusinessAddressLine2","features":[59]},{"name":"NAME_ContactObj_BusinessAddressPostalCode","features":[59]},{"name":"NAME_ContactObj_BusinessAddressRegion","features":[59]},{"name":"NAME_ContactObj_BusinessAddressStreet","features":[59]},{"name":"NAME_ContactObj_BusinessEmail","features":[59]},{"name":"NAME_ContactObj_BusinessEmail2","features":[59]},{"name":"NAME_ContactObj_BusinessFax","features":[59]},{"name":"NAME_ContactObj_BusinessPhone","features":[59]},{"name":"NAME_ContactObj_BusinessPhone2","features":[59]},{"name":"NAME_ContactObj_BusinessWebAddress","features":[59]},{"name":"NAME_ContactObj_Children","features":[59]},{"name":"NAME_ContactObj_Email","features":[59]},{"name":"NAME_ContactObj_FamilyName","features":[59]},{"name":"NAME_ContactObj_Fax","features":[59]},{"name":"NAME_ContactObj_GivenName","features":[59]},{"name":"NAME_ContactObj_IMAddress","features":[59]},{"name":"NAME_ContactObj_IMAddress2","features":[59]},{"name":"NAME_ContactObj_IMAddress3","features":[59]},{"name":"NAME_ContactObj_MiddleNames","features":[59]},{"name":"NAME_ContactObj_MobilePhone","features":[59]},{"name":"NAME_ContactObj_MobilePhone2","features":[59]},{"name":"NAME_ContactObj_Organization","features":[59]},{"name":"NAME_ContactObj_OtherAddressCity","features":[59]},{"name":"NAME_ContactObj_OtherAddressCountry","features":[59]},{"name":"NAME_ContactObj_OtherAddressFull","features":[59]},{"name":"NAME_ContactObj_OtherAddressLine2","features":[59]},{"name":"NAME_ContactObj_OtherAddressPostalCode","features":[59]},{"name":"NAME_ContactObj_OtherAddressRegion","features":[59]},{"name":"NAME_ContactObj_OtherAddressStreet","features":[59]},{"name":"NAME_ContactObj_OtherEmail","features":[59]},{"name":"NAME_ContactObj_OtherPhone","features":[59]},{"name":"NAME_ContactObj_Pager","features":[59]},{"name":"NAME_ContactObj_PersonalAddressCity","features":[59]},{"name":"NAME_ContactObj_PersonalAddressCountry","features":[59]},{"name":"NAME_ContactObj_PersonalAddressFull","features":[59]},{"name":"NAME_ContactObj_PersonalAddressLine2","features":[59]},{"name":"NAME_ContactObj_PersonalAddressPostalCode","features":[59]},{"name":"NAME_ContactObj_PersonalAddressRegion","features":[59]},{"name":"NAME_ContactObj_PersonalAddressStreet","features":[59]},{"name":"NAME_ContactObj_PersonalEmail","features":[59]},{"name":"NAME_ContactObj_PersonalEmail2","features":[59]},{"name":"NAME_ContactObj_PersonalFax","features":[59]},{"name":"NAME_ContactObj_PersonalPhone","features":[59]},{"name":"NAME_ContactObj_PersonalPhone2","features":[59]},{"name":"NAME_ContactObj_PersonalWebAddress","features":[59]},{"name":"NAME_ContactObj_Phone","features":[59]},{"name":"NAME_ContactObj_PhoneticFamilyName","features":[59]},{"name":"NAME_ContactObj_PhoneticGivenName","features":[59]},{"name":"NAME_ContactObj_PhoneticOrganization","features":[59]},{"name":"NAME_ContactObj_Ringtone","features":[59]},{"name":"NAME_ContactObj_Role","features":[59]},{"name":"NAME_ContactObj_Spouse","features":[59]},{"name":"NAME_ContactObj_Suffix","features":[59]},{"name":"NAME_ContactObj_Title","features":[59]},{"name":"NAME_ContactObj_WebAddress","features":[59]},{"name":"NAME_ContactSvc_SyncWithPhoneOnly","features":[59]},{"name":"NAME_ContactsSvc","features":[59]},{"name":"NAME_DPOFDocument","features":[59]},{"name":"NAME_DVBTSFile","features":[59]},{"name":"NAME_DeviceExecutable","features":[59]},{"name":"NAME_DeviceMetadataCAB","features":[59]},{"name":"NAME_DeviceMetadataObj_ContentID","features":[59]},{"name":"NAME_DeviceMetadataObj_DefaultCAB","features":[59]},{"name":"NAME_DeviceMetadataSvc","features":[59]},{"name":"NAME_DeviceScript","features":[59]},{"name":"NAME_EXIFImage","features":[59]},{"name":"NAME_ExcelDocument","features":[59]},{"name":"NAME_FLACFile","features":[59]},{"name":"NAME_FirmwareFile","features":[59]},{"name":"NAME_FlashPixImage","features":[59]},{"name":"NAME_FullEnumSyncKnowledge","features":[59]},{"name":"NAME_FullEnumSyncSvc","features":[59]},{"name":"NAME_FullEnumSyncSvc_BeginSync","features":[59]},{"name":"NAME_FullEnumSyncSvc_EndSync","features":[59]},{"name":"NAME_FullEnumSyncSvc_FilterType","features":[59]},{"name":"NAME_FullEnumSyncSvc_KnowledgeObjectID","features":[59]},{"name":"NAME_FullEnumSyncSvc_LastSyncProxyID","features":[59]},{"name":"NAME_FullEnumSyncSvc_LocalOnlyDelete","features":[59]},{"name":"NAME_FullEnumSyncSvc_ProviderVersion","features":[59]},{"name":"NAME_FullEnumSyncSvc_ReplicaID","features":[59]},{"name":"NAME_FullEnumSyncSvc_SyncFormat","features":[59]},{"name":"NAME_FullEnumSyncSvc_VersionProps","features":[59]},{"name":"NAME_GIFImage","features":[59]},{"name":"NAME_GenericObj_AllowedFolderContents","features":[59]},{"name":"NAME_GenericObj_AssociationDesc","features":[59]},{"name":"NAME_GenericObj_AssociationType","features":[59]},{"name":"NAME_GenericObj_Copyright","features":[59]},{"name":"NAME_GenericObj_Corrupt","features":[59]},{"name":"NAME_GenericObj_DRMStatus","features":[59]},{"name":"NAME_GenericObj_DateAccessed","features":[59]},{"name":"NAME_GenericObj_DateAdded","features":[59]},{"name":"NAME_GenericObj_DateAuthored","features":[59]},{"name":"NAME_GenericObj_DateCreated","features":[59]},{"name":"NAME_GenericObj_DateModified","features":[59]},{"name":"NAME_GenericObj_DateRevised","features":[59]},{"name":"NAME_GenericObj_Description","features":[59]},{"name":"NAME_GenericObj_Hidden","features":[59]},{"name":"NAME_GenericObj_Keywords","features":[59]},{"name":"NAME_GenericObj_LanguageLocale","features":[59]},{"name":"NAME_GenericObj_Name","features":[59]},{"name":"NAME_GenericObj_NonConsumable","features":[59]},{"name":"NAME_GenericObj_ObjectFileName","features":[59]},{"name":"NAME_GenericObj_ObjectFormat","features":[59]},{"name":"NAME_GenericObj_ObjectID","features":[59]},{"name":"NAME_GenericObj_ObjectSize","features":[59]},{"name":"NAME_GenericObj_ParentID","features":[59]},{"name":"NAME_GenericObj_PersistentUID","features":[59]},{"name":"NAME_GenericObj_PropertyBag","features":[59]},{"name":"NAME_GenericObj_ProtectionStatus","features":[59]},{"name":"NAME_GenericObj_ReferenceParentID","features":[59]},{"name":"NAME_GenericObj_StorageID","features":[59]},{"name":"NAME_GenericObj_SubDescription","features":[59]},{"name":"NAME_GenericObj_SyncID","features":[59]},{"name":"NAME_GenericObj_SystemObject","features":[59]},{"name":"NAME_GenericObj_TimeToLive","features":[59]},{"name":"NAME_HDPhotoImage","features":[59]},{"name":"NAME_HTMLDocument","features":[59]},{"name":"NAME_HintsSvc","features":[59]},{"name":"NAME_ICalendarActivity","features":[59]},{"name":"NAME_ImageObj_Aperature","features":[59]},{"name":"NAME_ImageObj_Exposure","features":[59]},{"name":"NAME_ImageObj_ISOSpeed","features":[59]},{"name":"NAME_ImageObj_ImageBitDepth","features":[59]},{"name":"NAME_ImageObj_IsColorCorrected","features":[59]},{"name":"NAME_ImageObj_IsCropped","features":[59]},{"name":"NAME_JFIFImage","features":[59]},{"name":"NAME_JP2Image","features":[59]},{"name":"NAME_JPEGXRImage","features":[59]},{"name":"NAME_JPXImage","features":[59]},{"name":"NAME_M3UPlaylist","features":[59]},{"name":"NAME_MHTDocument","features":[59]},{"name":"NAME_MP3File","features":[59]},{"name":"NAME_MPEG2File","features":[59]},{"name":"NAME_MPEG4File","features":[59]},{"name":"NAME_MPEGFile","features":[59]},{"name":"NAME_MPLPlaylist","features":[59]},{"name":"NAME_MediaObj_AlbumArtist","features":[59]},{"name":"NAME_MediaObj_AlbumName","features":[59]},{"name":"NAME_MediaObj_Artist","features":[59]},{"name":"NAME_MediaObj_AudioEncodingProfile","features":[59]},{"name":"NAME_MediaObj_BitRateType","features":[59]},{"name":"NAME_MediaObj_BookmarkByte","features":[59]},{"name":"NAME_MediaObj_BookmarkObject","features":[59]},{"name":"NAME_MediaObj_BookmarkTime","features":[59]},{"name":"NAME_MediaObj_BufferSize","features":[59]},{"name":"NAME_MediaObj_Composer","features":[59]},{"name":"NAME_MediaObj_Credits","features":[59]},{"name":"NAME_MediaObj_DateOriginalRelease","features":[59]},{"name":"NAME_MediaObj_Duration","features":[59]},{"name":"NAME_MediaObj_Editor","features":[59]},{"name":"NAME_MediaObj_EffectiveRating","features":[59]},{"name":"NAME_MediaObj_EncodingProfile","features":[59]},{"name":"NAME_MediaObj_EncodingQuality","features":[59]},{"name":"NAME_MediaObj_Genre","features":[59]},{"name":"NAME_MediaObj_GeographicOrigin","features":[59]},{"name":"NAME_MediaObj_Height","features":[59]},{"name":"NAME_MediaObj_MediaType","features":[59]},{"name":"NAME_MediaObj_MediaUID","features":[59]},{"name":"NAME_MediaObj_Mood","features":[59]},{"name":"NAME_MediaObj_Owner","features":[59]},{"name":"NAME_MediaObj_ParentalRating","features":[59]},{"name":"NAME_MediaObj_Producer","features":[59]},{"name":"NAME_MediaObj_SampleRate","features":[59]},{"name":"NAME_MediaObj_SkipCount","features":[59]},{"name":"NAME_MediaObj_SubscriptionContentID","features":[59]},{"name":"NAME_MediaObj_Subtitle","features":[59]},{"name":"NAME_MediaObj_TotalBitRate","features":[59]},{"name":"NAME_MediaObj_Track","features":[59]},{"name":"NAME_MediaObj_URLLink","features":[59]},{"name":"NAME_MediaObj_URLSource","features":[59]},{"name":"NAME_MediaObj_UseCount","features":[59]},{"name":"NAME_MediaObj_UserRating","features":[59]},{"name":"NAME_MediaObj_WebMaster","features":[59]},{"name":"NAME_MediaObj_Width","features":[59]},{"name":"NAME_MessageObj_BCC","features":[59]},{"name":"NAME_MessageObj_Body","features":[59]},{"name":"NAME_MessageObj_CC","features":[59]},{"name":"NAME_MessageObj_Category","features":[59]},{"name":"NAME_MessageObj_PatternDayOfMonth","features":[59]},{"name":"NAME_MessageObj_PatternDayOfWeek","features":[59]},{"name":"NAME_MessageObj_PatternDeleteDates","features":[59]},{"name":"NAME_MessageObj_PatternInstance","features":[59]},{"name":"NAME_MessageObj_PatternMonthOfYear","features":[59]},{"name":"NAME_MessageObj_PatternOriginalDateTime","features":[59]},{"name":"NAME_MessageObj_PatternPeriod","features":[59]},{"name":"NAME_MessageObj_PatternType","features":[59]},{"name":"NAME_MessageObj_PatternValidEndDate","features":[59]},{"name":"NAME_MessageObj_PatternValidStartDate","features":[59]},{"name":"NAME_MessageObj_Priority","features":[59]},{"name":"NAME_MessageObj_Read","features":[59]},{"name":"NAME_MessageObj_ReceivedTime","features":[59]},{"name":"NAME_MessageObj_Sender","features":[59]},{"name":"NAME_MessageObj_Subject","features":[59]},{"name":"NAME_MessageObj_To","features":[59]},{"name":"NAME_MessageSvc","features":[59]},{"name":"NAME_NotesSvc","features":[59]},{"name":"NAME_OGGFile","features":[59]},{"name":"NAME_PCDImage","features":[59]},{"name":"NAME_PICTImage","features":[59]},{"name":"NAME_PNGImage","features":[59]},{"name":"NAME_PSLPlaylist","features":[59]},{"name":"NAME_PowerPointDocument","features":[59]},{"name":"NAME_QCELPFile","features":[59]},{"name":"NAME_RingtonesSvc","features":[59]},{"name":"NAME_RingtonesSvc_DefaultRingtone","features":[59]},{"name":"NAME_Services_ServiceDisplayName","features":[59]},{"name":"NAME_Services_ServiceIcon","features":[59]},{"name":"NAME_Services_ServiceLocale","features":[59]},{"name":"NAME_StatusSvc","features":[59]},{"name":"NAME_StatusSvc_BatteryLife","features":[59]},{"name":"NAME_StatusSvc_ChargingState","features":[59]},{"name":"NAME_StatusSvc_MissedCalls","features":[59]},{"name":"NAME_StatusSvc_NetworkName","features":[59]},{"name":"NAME_StatusSvc_NetworkType","features":[59]},{"name":"NAME_StatusSvc_NewPictures","features":[59]},{"name":"NAME_StatusSvc_Roaming","features":[59]},{"name":"NAME_StatusSvc_SignalStrength","features":[59]},{"name":"NAME_StatusSvc_StorageCapacity","features":[59]},{"name":"NAME_StatusSvc_StorageFreeSpace","features":[59]},{"name":"NAME_StatusSvc_TextMessages","features":[59]},{"name":"NAME_StatusSvc_VoiceMail","features":[59]},{"name":"NAME_SyncObj_LastAuthorProxyID","features":[59]},{"name":"NAME_SyncSvc_BeginSync","features":[59]},{"name":"NAME_SyncSvc_EndSync","features":[59]},{"name":"NAME_SyncSvc_FilterType","features":[59]},{"name":"NAME_SyncSvc_LocalOnlyDelete","features":[59]},{"name":"NAME_SyncSvc_SyncFormat","features":[59]},{"name":"NAME_SyncSvc_SyncObjectReferences","features":[59]},{"name":"NAME_TIFFEPImage","features":[59]},{"name":"NAME_TIFFITImage","features":[59]},{"name":"NAME_TIFFImage","features":[59]},{"name":"NAME_TaskObj_BeginDate","features":[59]},{"name":"NAME_TaskObj_Complete","features":[59]},{"name":"NAME_TaskObj_EndDate","features":[59]},{"name":"NAME_TaskObj_ReminderDateTime","features":[59]},{"name":"NAME_TasksSvc","features":[59]},{"name":"NAME_TasksSvc_SyncActiveOnly","features":[59]},{"name":"NAME_TextDocument","features":[59]},{"name":"NAME_Undefined","features":[59]},{"name":"NAME_UndefinedAudio","features":[59]},{"name":"NAME_UndefinedCollection","features":[59]},{"name":"NAME_UndefinedDocument","features":[59]},{"name":"NAME_UndefinedVideo","features":[59]},{"name":"NAME_UnknownImage","features":[59]},{"name":"NAME_VCalendar1Activity","features":[59]},{"name":"NAME_VCard2Contact","features":[59]},{"name":"NAME_VCard3Contact","features":[59]},{"name":"NAME_VideoObj_KeyFrameDistance","features":[59]},{"name":"NAME_VideoObj_ScanType","features":[59]},{"name":"NAME_VideoObj_Source","features":[59]},{"name":"NAME_VideoObj_VideoBitRate","features":[59]},{"name":"NAME_VideoObj_VideoFormatCode","features":[59]},{"name":"NAME_VideoObj_VideoFrameRate","features":[59]},{"name":"NAME_WAVFile","features":[59]},{"name":"NAME_WBMPImage","features":[59]},{"name":"NAME_WMAFile","features":[59]},{"name":"NAME_WMVFile","features":[59]},{"name":"NAME_WPLPlaylist","features":[59]},{"name":"NAME_WordDocument","features":[59]},{"name":"NAME_XMLDocument","features":[59]},{"name":"PORTABLE_DEVICE_DELETE_NO_RECURSION","features":[59]},{"name":"PORTABLE_DEVICE_DELETE_WITH_RECURSION","features":[59]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_PDDRM","features":[59]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_WMDRM10_PD","features":[59]},{"name":"PORTABLE_DEVICE_ICON","features":[59]},{"name":"PORTABLE_DEVICE_IS_MASS_STORAGE","features":[59]},{"name":"PORTABLE_DEVICE_NAMESPACE_EXCLUDE_FROM_SHELL","features":[59]},{"name":"PORTABLE_DEVICE_NAMESPACE_THUMBNAIL_CONTENT_TYPES","features":[59]},{"name":"PORTABLE_DEVICE_NAMESPACE_TIMEOUT","features":[59]},{"name":"PORTABLE_DEVICE_TYPE","features":[59]},{"name":"PortableDevice","features":[59]},{"name":"PortableDeviceDispatchFactory","features":[59]},{"name":"PortableDeviceFTM","features":[59]},{"name":"PortableDeviceKeyCollection","features":[59]},{"name":"PortableDeviceManager","features":[59]},{"name":"PortableDevicePropVariantCollection","features":[59]},{"name":"PortableDeviceService","features":[59]},{"name":"PortableDeviceServiceFTM","features":[59]},{"name":"PortableDeviceValues","features":[59]},{"name":"PortableDeviceValuesCollection","features":[59]},{"name":"PortableDeviceWebControl","features":[59]},{"name":"RANGEMAX_MessageObj_PatternDayOfMonth","features":[59]},{"name":"RANGEMAX_MessageObj_PatternMonthOfYear","features":[59]},{"name":"RANGEMAX_StatusSvc_BatteryLife","features":[59]},{"name":"RANGEMAX_StatusSvc_MissedCalls","features":[59]},{"name":"RANGEMAX_StatusSvc_NewPictures","features":[59]},{"name":"RANGEMAX_StatusSvc_SignalStrength","features":[59]},{"name":"RANGEMAX_StatusSvc_TextMessages","features":[59]},{"name":"RANGEMAX_StatusSvc_VoiceMail","features":[59]},{"name":"RANGEMIN_MessageObj_PatternDayOfMonth","features":[59]},{"name":"RANGEMIN_MessageObj_PatternMonthOfYear","features":[59]},{"name":"RANGEMIN_StatusSvc_BatteryLife","features":[59]},{"name":"RANGEMIN_StatusSvc_SignalStrength","features":[59]},{"name":"RANGESTEP_MessageObj_PatternDayOfMonth","features":[59]},{"name":"RANGESTEP_MessageObj_PatternMonthOfYear","features":[59]},{"name":"RANGESTEP_StatusSvc_BatteryLife","features":[59]},{"name":"RANGESTEP_StatusSvc_SignalStrength","features":[59]},{"name":"SMS_BINARY_MESSAGE","features":[59]},{"name":"SMS_ENCODING_7_BIT","features":[59]},{"name":"SMS_ENCODING_8_BIT","features":[59]},{"name":"SMS_ENCODING_UTF_16","features":[59]},{"name":"SMS_MESSAGE_TYPES","features":[59]},{"name":"SMS_TEXT_MESSAGE","features":[59]},{"name":"SRS_RADIO_DISABLED","features":[59]},{"name":"SRS_RADIO_ENABLED","features":[59]},{"name":"STR_WPDNSE_FAST_ENUM","features":[59]},{"name":"STR_WPDNSE_SIMPLE_ITEM","features":[59]},{"name":"SYNCSVC_FILTER_CALENDAR_WINDOW_WITH_RECURRENCE","features":[59]},{"name":"SYNCSVC_FILTER_CONTACTS_WITH_PHONE","features":[59]},{"name":"SYNCSVC_FILTER_NONE","features":[59]},{"name":"SYNCSVC_FILTER_TASK_ACTIVE","features":[59]},{"name":"SYSTEM_RADIO_STATE","features":[59]},{"name":"TYPE_AnchorSyncSvc","features":[59]},{"name":"TYPE_CalendarSvc","features":[59]},{"name":"TYPE_ContactsSvc","features":[59]},{"name":"TYPE_DeviceMetadataSvc","features":[59]},{"name":"TYPE_FullEnumSyncSvc","features":[59]},{"name":"TYPE_HintsSvc","features":[59]},{"name":"TYPE_MessageSvc","features":[59]},{"name":"TYPE_NotesSvc","features":[59]},{"name":"TYPE_RingtonesSvc","features":[59]},{"name":"TYPE_StatusSvc","features":[59]},{"name":"TYPE_TasksSvc","features":[59]},{"name":"WPDNSE_OBJECT_HAS_ALBUM_ART","features":[59,60]},{"name":"WPDNSE_OBJECT_HAS_AUDIO_CLIP","features":[59,60]},{"name":"WPDNSE_OBJECT_HAS_CONTACT_PHOTO","features":[59,60]},{"name":"WPDNSE_OBJECT_HAS_ICON","features":[59,60]},{"name":"WPDNSE_OBJECT_HAS_THUMBNAIL","features":[59,60]},{"name":"WPDNSE_OBJECT_OPTIMAL_READ_BLOCK_SIZE","features":[59,60]},{"name":"WPDNSE_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPDNSE_PROPSHEET_CONTENT_DETAILS","features":[59]},{"name":"WPDNSE_PROPSHEET_CONTENT_GENERAL","features":[59]},{"name":"WPDNSE_PROPSHEET_CONTENT_REFERENCES","features":[59]},{"name":"WPDNSE_PROPSHEET_CONTENT_RESOURCES","features":[59]},{"name":"WPDNSE_PROPSHEET_DEVICE_GENERAL","features":[59]},{"name":"WPDNSE_PROPSHEET_STORAGE_GENERAL","features":[59]},{"name":"WPD_API_OPTIONS_V1","features":[59]},{"name":"WPD_API_OPTION_IOCTL_ACCESS","features":[59,60]},{"name":"WPD_API_OPTION_USE_CLEAR_DATA_STREAM","features":[59,60]},{"name":"WPD_APPOINTMENT_ACCEPTED_ATTENDEES","features":[59,60]},{"name":"WPD_APPOINTMENT_DECLINED_ATTENDEES","features":[59,60]},{"name":"WPD_APPOINTMENT_LOCATION","features":[59,60]},{"name":"WPD_APPOINTMENT_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_APPOINTMENT_OPTIONAL_ATTENDEES","features":[59,60]},{"name":"WPD_APPOINTMENT_REQUIRED_ATTENDEES","features":[59,60]},{"name":"WPD_APPOINTMENT_RESOURCES","features":[59,60]},{"name":"WPD_APPOINTMENT_TENTATIVE_ATTENDEES","features":[59,60]},{"name":"WPD_APPOINTMENT_TYPE","features":[59,60]},{"name":"WPD_AUDIO_BITRATE","features":[59,60]},{"name":"WPD_AUDIO_BIT_DEPTH","features":[59,60]},{"name":"WPD_AUDIO_BLOCK_ALIGNMENT","features":[59,60]},{"name":"WPD_AUDIO_CHANNEL_COUNT","features":[59,60]},{"name":"WPD_AUDIO_FORMAT_CODE","features":[59,60]},{"name":"WPD_BITRATE_TYPES","features":[59]},{"name":"WPD_BITRATE_TYPE_DISCRETE","features":[59]},{"name":"WPD_BITRATE_TYPE_FREE","features":[59]},{"name":"WPD_BITRATE_TYPE_UNUSED","features":[59]},{"name":"WPD_BITRATE_TYPE_VARIABLE","features":[59]},{"name":"WPD_CAPTURE_MODES","features":[59]},{"name":"WPD_CAPTURE_MODE_BURST","features":[59]},{"name":"WPD_CAPTURE_MODE_NORMAL","features":[59]},{"name":"WPD_CAPTURE_MODE_TIMELAPSE","features":[59]},{"name":"WPD_CAPTURE_MODE_UNDEFINED","features":[59]},{"name":"WPD_CATEGORY_CAPABILITIES","features":[59]},{"name":"WPD_CATEGORY_COMMON","features":[59]},{"name":"WPD_CATEGORY_DEVICE_HINTS","features":[59]},{"name":"WPD_CATEGORY_MEDIA_CAPTURE","features":[59]},{"name":"WPD_CATEGORY_MTP_EXT_VENDOR_OPERATIONS","features":[59]},{"name":"WPD_CATEGORY_NETWORK_CONFIGURATION","features":[59]},{"name":"WPD_CATEGORY_NULL","features":[59]},{"name":"WPD_CATEGORY_OBJECT_ENUMERATION","features":[59]},{"name":"WPD_CATEGORY_OBJECT_MANAGEMENT","features":[59]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES","features":[59]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES_BULK","features":[59]},{"name":"WPD_CATEGORY_OBJECT_RESOURCES","features":[59]},{"name":"WPD_CATEGORY_SERVICE_CAPABILITIES","features":[59]},{"name":"WPD_CATEGORY_SERVICE_COMMON","features":[59]},{"name":"WPD_CATEGORY_SERVICE_METHODS","features":[59]},{"name":"WPD_CATEGORY_SMS","features":[59]},{"name":"WPD_CATEGORY_STILL_IMAGE_CAPTURE","features":[59]},{"name":"WPD_CATEGORY_STORAGE","features":[59]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DEVICE_IDENTIFICATION_VALUES","features":[59,60]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DONT_REGISTER_WPD_DEVICE_INTERFACE","features":[59,60]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_MULTITRANSPORT_MODE","features":[59,60]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_REGISTER_WPD_PRIVATE_DEVICE_INTERFACE","features":[59,60]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SILENCE_AUTOPLAY","features":[59,60]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SUPPORTED_CONTENT_TYPES","features":[59,60]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_TRANSPORT_BANDWIDTH","features":[59,60]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V1","features":[59]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V2","features":[59]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V3","features":[59]},{"name":"WPD_CLASS_EXTENSION_V1","features":[59]},{"name":"WPD_CLASS_EXTENSION_V2","features":[59]},{"name":"WPD_CLIENT_DESIRED_ACCESS","features":[59,60]},{"name":"WPD_CLIENT_EVENT_COOKIE","features":[59,60]},{"name":"WPD_CLIENT_INFORMATION_PROPERTIES_V1","features":[59]},{"name":"WPD_CLIENT_MAJOR_VERSION","features":[59,60]},{"name":"WPD_CLIENT_MANUAL_CLOSE_ON_DISCONNECT","features":[59,60]},{"name":"WPD_CLIENT_MINIMUM_RESULTS_BUFFER_SIZE","features":[59,60]},{"name":"WPD_CLIENT_MINOR_VERSION","features":[59,60]},{"name":"WPD_CLIENT_NAME","features":[59,60]},{"name":"WPD_CLIENT_REVISION","features":[59,60]},{"name":"WPD_CLIENT_SECURITY_QUALITY_OF_SERVICE","features":[59,60]},{"name":"WPD_CLIENT_SHARE_MODE","features":[59,60]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_CERTIFICATE","features":[59,60]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_PRIVATE_KEY","features":[59,60]},{"name":"WPD_COLOR_CORRECTED_STATUS_CORRECTED","features":[59]},{"name":"WPD_COLOR_CORRECTED_STATUS_NOT_CORRECTED","features":[59]},{"name":"WPD_COLOR_CORRECTED_STATUS_SHOULD_NOT_BE_CORRECTED","features":[59]},{"name":"WPD_COLOR_CORRECTED_STATUS_VALUES","features":[59]},{"name":"WPD_COMMAND_ACCESS_FROM_ATTRIBUTE_WITH_METHOD_ACCESS","features":[59]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_FILE_ACCESS","features":[59]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_STGM_ACCESS","features":[59]},{"name":"WPD_COMMAND_ACCESS_LOOKUP_ENTRY","features":[59,60]},{"name":"WPD_COMMAND_ACCESS_READ","features":[59]},{"name":"WPD_COMMAND_ACCESS_READWRITE","features":[59]},{"name":"WPD_COMMAND_ACCESS_TYPES","features":[59]},{"name":"WPD_COMMAND_CAPABILITIES_GET_COMMAND_OPTIONS","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_EVENT_OPTIONS","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FIXED_PROPERTY_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FUNCTIONAL_OBJECTS","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_CONTENT_TYPES","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[59,60]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FUNCTIONAL_CATEGORIES","features":[59,60]},{"name":"WPD_COMMAND_CLASS_EXTENSION_REGISTER_SERVICE_INTERFACES","features":[59,60]},{"name":"WPD_COMMAND_CLASS_EXTENSION_UNREGISTER_SERVICE_INTERFACES","features":[59,60]},{"name":"WPD_COMMAND_CLASS_EXTENSION_WRITE_DEVICE_INFORMATION","features":[59,60]},{"name":"WPD_COMMAND_COMMIT_KEYPAIR","features":[59,60]},{"name":"WPD_COMMAND_COMMON_GET_OBJECT_IDS_FROM_PERSISTENT_UNIQUE_IDS","features":[59,60]},{"name":"WPD_COMMAND_COMMON_RESET_DEVICE","features":[59,60]},{"name":"WPD_COMMAND_COMMON_SAVE_CLIENT_INFORMATION","features":[59,60]},{"name":"WPD_COMMAND_DEVICE_HINTS_GET_CONTENT_LOCATION","features":[59,60]},{"name":"WPD_COMMAND_GENERATE_KEYPAIR","features":[59,60]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_PAUSE","features":[59,60]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_START","features":[59,60]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_STOP","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_END_DATA_TRANSFER","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITHOUT_DATA_PHASE","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_READ","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_WRITE","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_GET_SUPPORTED_VENDOR_OPCODES","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_GET_VENDOR_EXTENSION_DESCRIPTION","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_READ_DATA","features":[59,60]},{"name":"WPD_COMMAND_MTP_EXT_WRITE_DATA","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_END_FIND","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_FIND_NEXT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_START_FIND","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COMMIT_OBJECT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COPY_OBJECTS","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_ONLY","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_DELETE_OBJECTS","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_MOVE_OBJECTS","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_REVERT_OBJECT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_UPDATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_WRITE_OBJECT_DATA","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_END","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_NEXT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_START","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_END","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_NEXT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_START","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_END","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_NEXT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_START","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_DELETE","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ALL","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_SUPPORTED","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_SET","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CLOSE","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_COMMIT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CREATE_RESOURCE","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_DELETE","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_SUPPORTED","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_OPEN","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_READ","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_REVERT","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK_IN_UNITS","features":[59,60]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_WRITE","features":[59,60]},{"name":"WPD_COMMAND_PROCESS_WIRELESS_PROFILE","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_COMMAND_OPTIONS","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_PARAMETER_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_PROPERTY_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_RENDERING_PROFILES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_INHERITED_SERVICES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_PARAMETER_ATTRIBUTES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS_BY_FORMAT","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_COMMON_GET_SERVICE_OBJECT_ID","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_METHODS_CANCEL_INVOKE","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_METHODS_END_INVOKE","features":[59,60]},{"name":"WPD_COMMAND_SERVICE_METHODS_START_INVOKE","features":[59,60]},{"name":"WPD_COMMAND_SMS_SEND","features":[59,60]},{"name":"WPD_COMMAND_STILL_IMAGE_CAPTURE_INITIATE","features":[59,60]},{"name":"WPD_COMMAND_STORAGE_EJECT","features":[59,60]},{"name":"WPD_COMMAND_STORAGE_FORMAT","features":[59,60]},{"name":"WPD_COMMON_INFORMATION_BODY_TEXT","features":[59,60]},{"name":"WPD_COMMON_INFORMATION_END_DATETIME","features":[59,60]},{"name":"WPD_COMMON_INFORMATION_NOTES","features":[59,60]},{"name":"WPD_COMMON_INFORMATION_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_COMMON_INFORMATION_PRIORITY","features":[59,60]},{"name":"WPD_COMMON_INFORMATION_START_DATETIME","features":[59,60]},{"name":"WPD_COMMON_INFORMATION_SUBJECT","features":[59,60]},{"name":"WPD_CONTACT_ANNIVERSARY_DATE","features":[59,60]},{"name":"WPD_CONTACT_ASSISTANT","features":[59,60]},{"name":"WPD_CONTACT_BIRTHDATE","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_EMAIL","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_EMAIL2","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_FAX","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_FULL_POSTAL_ADDRESS","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_PHONE","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_PHONE2","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_CITY","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_COUNTRY","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE1","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE2","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_POSTAL_CODE","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_REGION","features":[59,60]},{"name":"WPD_CONTACT_BUSINESS_WEB_ADDRESS","features":[59,60]},{"name":"WPD_CONTACT_CHILDREN","features":[59,60]},{"name":"WPD_CONTACT_COMPANY_NAME","features":[59,60]},{"name":"WPD_CONTACT_DISPLAY_NAME","features":[59,60]},{"name":"WPD_CONTACT_FIRST_NAME","features":[59,60]},{"name":"WPD_CONTACT_INSTANT_MESSENGER","features":[59,60]},{"name":"WPD_CONTACT_INSTANT_MESSENGER2","features":[59,60]},{"name":"WPD_CONTACT_INSTANT_MESSENGER3","features":[59,60]},{"name":"WPD_CONTACT_LAST_NAME","features":[59,60]},{"name":"WPD_CONTACT_MIDDLE_NAMES","features":[59,60]},{"name":"WPD_CONTACT_MOBILE_PHONE","features":[59,60]},{"name":"WPD_CONTACT_MOBILE_PHONE2","features":[59,60]},{"name":"WPD_CONTACT_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_CONTACT_OTHER_EMAILS","features":[59,60]},{"name":"WPD_CONTACT_OTHER_FULL_POSTAL_ADDRESS","features":[59,60]},{"name":"WPD_CONTACT_OTHER_PHONES","features":[59,60]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_CITY","features":[59,60]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE1","features":[59,60]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE2","features":[59,60]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_CODE","features":[59,60]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_COUNTRY","features":[59,60]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_REGION","features":[59,60]},{"name":"WPD_CONTACT_PAGER","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_EMAIL","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_EMAIL2","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_FAX","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_FULL_POSTAL_ADDRESS","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_PHONE","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_PHONE2","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_CITY","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_COUNTRY","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE1","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE2","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_POSTAL_CODE","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_REGION","features":[59,60]},{"name":"WPD_CONTACT_PERSONAL_WEB_ADDRESS","features":[59,60]},{"name":"WPD_CONTACT_PHONETIC_COMPANY_NAME","features":[59,60]},{"name":"WPD_CONTACT_PHONETIC_FIRST_NAME","features":[59,60]},{"name":"WPD_CONTACT_PHONETIC_LAST_NAME","features":[59,60]},{"name":"WPD_CONTACT_PREFIX","features":[59,60]},{"name":"WPD_CONTACT_PRIMARY_EMAIL_ADDRESS","features":[59,60]},{"name":"WPD_CONTACT_PRIMARY_FAX","features":[59,60]},{"name":"WPD_CONTACT_PRIMARY_PHONE","features":[59,60]},{"name":"WPD_CONTACT_PRIMARY_WEB_ADDRESS","features":[59,60]},{"name":"WPD_CONTACT_RINGTONE","features":[59,60]},{"name":"WPD_CONTACT_ROLE","features":[59,60]},{"name":"WPD_CONTACT_SPOUSE","features":[59,60]},{"name":"WPD_CONTACT_SUFFIX","features":[59,60]},{"name":"WPD_CONTENT_TYPE_ALL","features":[59]},{"name":"WPD_CONTENT_TYPE_APPOINTMENT","features":[59]},{"name":"WPD_CONTENT_TYPE_AUDIO","features":[59]},{"name":"WPD_CONTENT_TYPE_AUDIO_ALBUM","features":[59]},{"name":"WPD_CONTENT_TYPE_CALENDAR","features":[59]},{"name":"WPD_CONTENT_TYPE_CERTIFICATE","features":[59]},{"name":"WPD_CONTENT_TYPE_CONTACT","features":[59]},{"name":"WPD_CONTENT_TYPE_CONTACT_GROUP","features":[59]},{"name":"WPD_CONTENT_TYPE_DOCUMENT","features":[59]},{"name":"WPD_CONTENT_TYPE_EMAIL","features":[59]},{"name":"WPD_CONTENT_TYPE_FOLDER","features":[59]},{"name":"WPD_CONTENT_TYPE_FUNCTIONAL_OBJECT","features":[59]},{"name":"WPD_CONTENT_TYPE_GENERIC_FILE","features":[59]},{"name":"WPD_CONTENT_TYPE_GENERIC_MESSAGE","features":[59]},{"name":"WPD_CONTENT_TYPE_IMAGE","features":[59]},{"name":"WPD_CONTENT_TYPE_IMAGE_ALBUM","features":[59]},{"name":"WPD_CONTENT_TYPE_MEDIA_CAST","features":[59]},{"name":"WPD_CONTENT_TYPE_MEMO","features":[59]},{"name":"WPD_CONTENT_TYPE_MIXED_CONTENT_ALBUM","features":[59]},{"name":"WPD_CONTENT_TYPE_NETWORK_ASSOCIATION","features":[59]},{"name":"WPD_CONTENT_TYPE_PLAYLIST","features":[59]},{"name":"WPD_CONTENT_TYPE_PROGRAM","features":[59]},{"name":"WPD_CONTENT_TYPE_SECTION","features":[59]},{"name":"WPD_CONTENT_TYPE_TASK","features":[59]},{"name":"WPD_CONTENT_TYPE_TELEVISION","features":[59]},{"name":"WPD_CONTENT_TYPE_UNSPECIFIED","features":[59]},{"name":"WPD_CONTENT_TYPE_VIDEO","features":[59]},{"name":"WPD_CONTENT_TYPE_VIDEO_ALBUM","features":[59]},{"name":"WPD_CONTENT_TYPE_WIRELESS_PROFILE","features":[59]},{"name":"WPD_CONTROL_FUNCTION_GENERIC_MESSAGE","features":[59]},{"name":"WPD_CROPPED_STATUS_CROPPED","features":[59]},{"name":"WPD_CROPPED_STATUS_NOT_CROPPED","features":[59]},{"name":"WPD_CROPPED_STATUS_SHOULD_NOT_BE_CROPPED","features":[59]},{"name":"WPD_CROPPED_STATUS_VALUES","features":[59]},{"name":"WPD_DEVICE_DATETIME","features":[59,60]},{"name":"WPD_DEVICE_EDP_IDENTITY","features":[59,60]},{"name":"WPD_DEVICE_FIRMWARE_VERSION","features":[59,60]},{"name":"WPD_DEVICE_FRIENDLY_NAME","features":[59,60]},{"name":"WPD_DEVICE_FUNCTIONAL_UNIQUE_ID","features":[59,60]},{"name":"WPD_DEVICE_MANUFACTURER","features":[59,60]},{"name":"WPD_DEVICE_MODEL","features":[59,60]},{"name":"WPD_DEVICE_MODEL_UNIQUE_ID","features":[59,60]},{"name":"WPD_DEVICE_NETWORK_IDENTIFIER","features":[59,60]},{"name":"WPD_DEVICE_OBJECT_ID","features":[59]},{"name":"WPD_DEVICE_POWER_LEVEL","features":[59,60]},{"name":"WPD_DEVICE_POWER_SOURCE","features":[59,60]},{"name":"WPD_DEVICE_PROPERTIES_V1","features":[59]},{"name":"WPD_DEVICE_PROPERTIES_V2","features":[59]},{"name":"WPD_DEVICE_PROPERTIES_V3","features":[59]},{"name":"WPD_DEVICE_PROTOCOL","features":[59,60]},{"name":"WPD_DEVICE_SERIAL_NUMBER","features":[59,60]},{"name":"WPD_DEVICE_SUPPORTED_DRM_SCHEMES","features":[59,60]},{"name":"WPD_DEVICE_SUPPORTED_FORMATS_ARE_ORDERED","features":[59,60]},{"name":"WPD_DEVICE_SUPPORTS_NON_CONSUMABLE","features":[59,60]},{"name":"WPD_DEVICE_SYNC_PARTNER","features":[59,60]},{"name":"WPD_DEVICE_TRANSPORT","features":[59,60]},{"name":"WPD_DEVICE_TRANSPORTS","features":[59]},{"name":"WPD_DEVICE_TRANSPORT_BLUETOOTH","features":[59]},{"name":"WPD_DEVICE_TRANSPORT_IP","features":[59]},{"name":"WPD_DEVICE_TRANSPORT_UNSPECIFIED","features":[59]},{"name":"WPD_DEVICE_TRANSPORT_USB","features":[59]},{"name":"WPD_DEVICE_TYPE","features":[59,60]},{"name":"WPD_DEVICE_TYPES","features":[59]},{"name":"WPD_DEVICE_TYPE_AUDIO_RECORDER","features":[59]},{"name":"WPD_DEVICE_TYPE_CAMERA","features":[59]},{"name":"WPD_DEVICE_TYPE_GENERIC","features":[59]},{"name":"WPD_DEVICE_TYPE_MEDIA_PLAYER","features":[59]},{"name":"WPD_DEVICE_TYPE_PERSONAL_INFORMATION_MANAGER","features":[59]},{"name":"WPD_DEVICE_TYPE_PHONE","features":[59]},{"name":"WPD_DEVICE_TYPE_VIDEO","features":[59]},{"name":"WPD_DEVICE_USE_DEVICE_STAGE","features":[59,60]},{"name":"WPD_DOCUMENT_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_EFFECT_MODES","features":[59]},{"name":"WPD_EFFECT_MODE_BLACK_AND_WHITE","features":[59]},{"name":"WPD_EFFECT_MODE_COLOR","features":[59]},{"name":"WPD_EFFECT_MODE_SEPIA","features":[59]},{"name":"WPD_EFFECT_MODE_UNDEFINED","features":[59]},{"name":"WPD_EMAIL_BCC_LINE","features":[59,60]},{"name":"WPD_EMAIL_CC_LINE","features":[59,60]},{"name":"WPD_EMAIL_HAS_ATTACHMENTS","features":[59,60]},{"name":"WPD_EMAIL_HAS_BEEN_READ","features":[59,60]},{"name":"WPD_EMAIL_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_EMAIL_RECEIVED_TIME","features":[59,60]},{"name":"WPD_EMAIL_SENDER_ADDRESS","features":[59,60]},{"name":"WPD_EMAIL_TO_LINE","features":[59,60]},{"name":"WPD_EVENT_ATTRIBUTES_V1","features":[59]},{"name":"WPD_EVENT_ATTRIBUTE_NAME","features":[59,60]},{"name":"WPD_EVENT_ATTRIBUTE_OPTIONS","features":[59,60]},{"name":"WPD_EVENT_ATTRIBUTE_PARAMETERS","features":[59,60]},{"name":"WPD_EVENT_DEVICE_CAPABILITIES_UPDATED","features":[59]},{"name":"WPD_EVENT_DEVICE_REMOVED","features":[59]},{"name":"WPD_EVENT_DEVICE_RESET","features":[59]},{"name":"WPD_EVENT_MTP_VENDOR_EXTENDED_EVENTS","features":[59]},{"name":"WPD_EVENT_NOTIFICATION","features":[59]},{"name":"WPD_EVENT_OBJECT_ADDED","features":[59]},{"name":"WPD_EVENT_OBJECT_REMOVED","features":[59]},{"name":"WPD_EVENT_OBJECT_TRANSFER_REQUESTED","features":[59]},{"name":"WPD_EVENT_OBJECT_UPDATED","features":[59]},{"name":"WPD_EVENT_OPTIONS_V1","features":[59]},{"name":"WPD_EVENT_OPTION_IS_AUTOPLAY_EVENT","features":[59,60]},{"name":"WPD_EVENT_OPTION_IS_BROADCAST_EVENT","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_CHILD_HIERARCHY_CHANGED","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_EVENT_ID","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_OBJECT_CREATION_COOKIE","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_OBJECT_PARENT_PERSISTENT_UNIQUE_ID","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_OPERATION_PROGRESS","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_OPERATION_STATE","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_PNP_DEVICE_ID","features":[59,60]},{"name":"WPD_EVENT_PARAMETER_SERVICE_METHOD_CONTEXT","features":[59,60]},{"name":"WPD_EVENT_PROPERTIES_V1","features":[59]},{"name":"WPD_EVENT_PROPERTIES_V2","features":[59]},{"name":"WPD_EVENT_SERVICE_METHOD_COMPLETE","features":[59]},{"name":"WPD_EVENT_STORAGE_FORMAT","features":[59]},{"name":"WPD_EXPOSURE_METERING_MODES","features":[59]},{"name":"WPD_EXPOSURE_METERING_MODE_AVERAGE","features":[59]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_SPOT","features":[59]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_WEIGHTED_AVERAGE","features":[59]},{"name":"WPD_EXPOSURE_METERING_MODE_MULTI_SPOT","features":[59]},{"name":"WPD_EXPOSURE_METERING_MODE_UNDEFINED","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODES","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_ACTION","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_APERTURE_PRIORITY","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_AUTO","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_CREATIVE","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_MANUAL","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_PORTRAIT","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_SHUTTER_PRIORITY","features":[59]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_UNDEFINED","features":[59]},{"name":"WPD_FLASH_MODES","features":[59]},{"name":"WPD_FLASH_MODE_AUTO","features":[59]},{"name":"WPD_FLASH_MODE_EXTERNAL_SYNC","features":[59]},{"name":"WPD_FLASH_MODE_FILL","features":[59]},{"name":"WPD_FLASH_MODE_OFF","features":[59]},{"name":"WPD_FLASH_MODE_RED_EYE_AUTO","features":[59]},{"name":"WPD_FLASH_MODE_RED_EYE_FILL","features":[59]},{"name":"WPD_FLASH_MODE_UNDEFINED","features":[59]},{"name":"WPD_FOCUS_AUTOMATIC","features":[59]},{"name":"WPD_FOCUS_AUTOMATIC_MACRO","features":[59]},{"name":"WPD_FOCUS_MANUAL","features":[59]},{"name":"WPD_FOCUS_METERING_MODES","features":[59]},{"name":"WPD_FOCUS_METERING_MODE_CENTER_SPOT","features":[59]},{"name":"WPD_FOCUS_METERING_MODE_MULTI_SPOT","features":[59]},{"name":"WPD_FOCUS_METERING_MODE_UNDEFINED","features":[59]},{"name":"WPD_FOCUS_MODES","features":[59]},{"name":"WPD_FOCUS_UNDEFINED","features":[59]},{"name":"WPD_FOLDER_CONTENT_TYPES_ALLOWED","features":[59,60]},{"name":"WPD_FOLDER_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_FORMAT_ATTRIBUTES_V1","features":[59]},{"name":"WPD_FORMAT_ATTRIBUTE_MIMETYPE","features":[59,60]},{"name":"WPD_FORMAT_ATTRIBUTE_NAME","features":[59,60]},{"name":"WPD_FUNCTIONAL_CATEGORY_ALL","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_AUDIO_CAPTURE","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_DEVICE","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_NETWORK_CONFIGURATION","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_RENDERING_INFORMATION","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_SMS","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_STILL_IMAGE_CAPTURE","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_STORAGE","features":[59]},{"name":"WPD_FUNCTIONAL_CATEGORY_VIDEO_CAPTURE","features":[59]},{"name":"WPD_FUNCTIONAL_OBJECT_CATEGORY","features":[59,60]},{"name":"WPD_FUNCTIONAL_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_IMAGE_BITDEPTH","features":[59,60]},{"name":"WPD_IMAGE_COLOR_CORRECTED_STATUS","features":[59,60]},{"name":"WPD_IMAGE_CROPPED_STATUS","features":[59,60]},{"name":"WPD_IMAGE_EXPOSURE_INDEX","features":[59,60]},{"name":"WPD_IMAGE_EXPOSURE_TIME","features":[59,60]},{"name":"WPD_IMAGE_FNUMBER","features":[59,60]},{"name":"WPD_IMAGE_HORIZONTAL_RESOLUTION","features":[59,60]},{"name":"WPD_IMAGE_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_IMAGE_VERTICAL_RESOLUTION","features":[59,60]},{"name":"WPD_MEDIA_ALBUM_ARTIST","features":[59,60]},{"name":"WPD_MEDIA_ARTIST","features":[59,60]},{"name":"WPD_MEDIA_AUDIO_ENCODING_PROFILE","features":[59,60]},{"name":"WPD_MEDIA_BITRATE_TYPE","features":[59,60]},{"name":"WPD_MEDIA_BUY_NOW","features":[59,60]},{"name":"WPD_MEDIA_BYTE_BOOKMARK","features":[59,60]},{"name":"WPD_MEDIA_COMPOSER","features":[59,60]},{"name":"WPD_MEDIA_COPYRIGHT","features":[59,60]},{"name":"WPD_MEDIA_DESCRIPTION","features":[59,60]},{"name":"WPD_MEDIA_DESTINATION_URL","features":[59,60]},{"name":"WPD_MEDIA_DURATION","features":[59,60]},{"name":"WPD_MEDIA_EFFECTIVE_RATING","features":[59,60]},{"name":"WPD_MEDIA_ENCODING_PROFILE","features":[59,60]},{"name":"WPD_MEDIA_GENRE","features":[59,60]},{"name":"WPD_MEDIA_GUID","features":[59,60]},{"name":"WPD_MEDIA_HEIGHT","features":[59,60]},{"name":"WPD_MEDIA_LAST_ACCESSED_TIME","features":[59,60]},{"name":"WPD_MEDIA_LAST_BUILD_DATE","features":[59,60]},{"name":"WPD_MEDIA_MANAGING_EDITOR","features":[59,60]},{"name":"WPD_MEDIA_META_GENRE","features":[59,60]},{"name":"WPD_MEDIA_OBJECT_BOOKMARK","features":[59,60]},{"name":"WPD_MEDIA_OWNER","features":[59,60]},{"name":"WPD_MEDIA_PARENTAL_RATING","features":[59,60]},{"name":"WPD_MEDIA_PROPERTIES_V1","features":[59]},{"name":"WPD_MEDIA_RELEASE_DATE","features":[59,60]},{"name":"WPD_MEDIA_SAMPLE_RATE","features":[59,60]},{"name":"WPD_MEDIA_SKIP_COUNT","features":[59,60]},{"name":"WPD_MEDIA_SOURCE_URL","features":[59,60]},{"name":"WPD_MEDIA_STAR_RATING","features":[59,60]},{"name":"WPD_MEDIA_SUBSCRIPTION_CONTENT_ID","features":[59,60]},{"name":"WPD_MEDIA_SUB_DESCRIPTION","features":[59,60]},{"name":"WPD_MEDIA_SUB_TITLE","features":[59,60]},{"name":"WPD_MEDIA_TIME_BOOKMARK","features":[59,60]},{"name":"WPD_MEDIA_TIME_TO_LIVE","features":[59,60]},{"name":"WPD_MEDIA_TITLE","features":[59,60]},{"name":"WPD_MEDIA_TOTAL_BITRATE","features":[59,60]},{"name":"WPD_MEDIA_USER_EFFECTIVE_RATING","features":[59,60]},{"name":"WPD_MEDIA_USE_COUNT","features":[59,60]},{"name":"WPD_MEDIA_WEBMASTER","features":[59,60]},{"name":"WPD_MEDIA_WIDTH","features":[59,60]},{"name":"WPD_MEMO_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_META_GENRES","features":[59]},{"name":"WPD_META_GENRE_AUDIO_PODCAST","features":[59]},{"name":"WPD_META_GENRE_FEATURE_FILM_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_GENERIC_MUSIC_AUDIO_FILE","features":[59]},{"name":"WPD_META_GENRE_GENERIC_NON_AUDIO_NON_VIDEO","features":[59]},{"name":"WPD_META_GENRE_GENERIC_NON_MUSIC_AUDIO_FILE","features":[59]},{"name":"WPD_META_GENRE_GENERIC_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_HOME_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_MIXED_PODCAST","features":[59]},{"name":"WPD_META_GENRE_MUSIC_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_NEWS_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_PHOTO_MONTAGE_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_SPOKEN_WORD_AUDIO_BOOK_FILES","features":[59]},{"name":"WPD_META_GENRE_SPOKEN_WORD_FILES_NON_AUDIO_BOOK","features":[59]},{"name":"WPD_META_GENRE_SPOKEN_WORD_NEWS","features":[59]},{"name":"WPD_META_GENRE_SPOKEN_WORD_TALK_SHOWS","features":[59]},{"name":"WPD_META_GENRE_TELEVISION_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_TRAINING_EDUCATIONAL_VIDEO_FILE","features":[59]},{"name":"WPD_META_GENRE_UNUSED","features":[59]},{"name":"WPD_META_GENRE_VIDEO_PODCAST","features":[59]},{"name":"WPD_METHOD_ATTRIBUTES_V1","features":[59]},{"name":"WPD_METHOD_ATTRIBUTE_ACCESS","features":[59,60]},{"name":"WPD_METHOD_ATTRIBUTE_ASSOCIATED_FORMAT","features":[59,60]},{"name":"WPD_METHOD_ATTRIBUTE_NAME","features":[59,60]},{"name":"WPD_METHOD_ATTRIBUTE_PARAMETERS","features":[59,60]},{"name":"WPD_MUSIC_ALBUM","features":[59,60]},{"name":"WPD_MUSIC_LYRICS","features":[59,60]},{"name":"WPD_MUSIC_MOOD","features":[59,60]},{"name":"WPD_MUSIC_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_MUSIC_TRACK","features":[59,60]},{"name":"WPD_NETWORK_ASSOCIATION_HOST_NETWORK_IDENTIFIERS","features":[59,60]},{"name":"WPD_NETWORK_ASSOCIATION_PROPERTIES_V1","features":[59]},{"name":"WPD_NETWORK_ASSOCIATION_X509V3SEQUENCE","features":[59,60]},{"name":"WPD_OBJECT_BACK_REFERENCES","features":[59,60]},{"name":"WPD_OBJECT_CAN_DELETE","features":[59,60]},{"name":"WPD_OBJECT_CONTAINER_FUNCTIONAL_OBJECT_ID","features":[59,60]},{"name":"WPD_OBJECT_CONTENT_TYPE","features":[59,60]},{"name":"WPD_OBJECT_DATE_AUTHORED","features":[59,60]},{"name":"WPD_OBJECT_DATE_CREATED","features":[59,60]},{"name":"WPD_OBJECT_DATE_MODIFIED","features":[59,60]},{"name":"WPD_OBJECT_FORMAT","features":[59,60]},{"name":"WPD_OBJECT_FORMAT_3G2","features":[59]},{"name":"WPD_OBJECT_FORMAT_3G2A","features":[59]},{"name":"WPD_OBJECT_FORMAT_3GP","features":[59]},{"name":"WPD_OBJECT_FORMAT_3GPA","features":[59]},{"name":"WPD_OBJECT_FORMAT_AAC","features":[59]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT","features":[59]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT_GROUP","features":[59]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_MEDIA_CAST","features":[59]},{"name":"WPD_OBJECT_FORMAT_AIFF","features":[59]},{"name":"WPD_OBJECT_FORMAT_ALL","features":[59]},{"name":"WPD_OBJECT_FORMAT_AMR","features":[59]},{"name":"WPD_OBJECT_FORMAT_ASF","features":[59]},{"name":"WPD_OBJECT_FORMAT_ASXPLAYLIST","features":[59]},{"name":"WPD_OBJECT_FORMAT_ATSCTS","features":[59]},{"name":"WPD_OBJECT_FORMAT_AUDIBLE","features":[59]},{"name":"WPD_OBJECT_FORMAT_AVCHD","features":[59]},{"name":"WPD_OBJECT_FORMAT_AVI","features":[59]},{"name":"WPD_OBJECT_FORMAT_BMP","features":[59]},{"name":"WPD_OBJECT_FORMAT_CIFF","features":[59]},{"name":"WPD_OBJECT_FORMAT_DPOF","features":[59]},{"name":"WPD_OBJECT_FORMAT_DVBTS","features":[59]},{"name":"WPD_OBJECT_FORMAT_EXECUTABLE","features":[59]},{"name":"WPD_OBJECT_FORMAT_EXIF","features":[59]},{"name":"WPD_OBJECT_FORMAT_FLAC","features":[59]},{"name":"WPD_OBJECT_FORMAT_FLASHPIX","features":[59]},{"name":"WPD_OBJECT_FORMAT_GIF","features":[59]},{"name":"WPD_OBJECT_FORMAT_HTML","features":[59]},{"name":"WPD_OBJECT_FORMAT_ICALENDAR","features":[59]},{"name":"WPD_OBJECT_FORMAT_ICON","features":[59]},{"name":"WPD_OBJECT_FORMAT_JFIF","features":[59]},{"name":"WPD_OBJECT_FORMAT_JP2","features":[59]},{"name":"WPD_OBJECT_FORMAT_JPEGXR","features":[59]},{"name":"WPD_OBJECT_FORMAT_JPX","features":[59]},{"name":"WPD_OBJECT_FORMAT_M3UPLAYLIST","features":[59]},{"name":"WPD_OBJECT_FORMAT_M4A","features":[59]},{"name":"WPD_OBJECT_FORMAT_MHT_COMPILED_HTML","features":[59]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_EXCEL","features":[59]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_POWERPOINT","features":[59]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WFC","features":[59]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WORD","features":[59]},{"name":"WPD_OBJECT_FORMAT_MKV","features":[59]},{"name":"WPD_OBJECT_FORMAT_MP2","features":[59]},{"name":"WPD_OBJECT_FORMAT_MP3","features":[59]},{"name":"WPD_OBJECT_FORMAT_MP4","features":[59]},{"name":"WPD_OBJECT_FORMAT_MPEG","features":[59]},{"name":"WPD_OBJECT_FORMAT_MPLPLAYLIST","features":[59]},{"name":"WPD_OBJECT_FORMAT_NETWORK_ASSOCIATION","features":[59]},{"name":"WPD_OBJECT_FORMAT_OGG","features":[59]},{"name":"WPD_OBJECT_FORMAT_PCD","features":[59]},{"name":"WPD_OBJECT_FORMAT_PICT","features":[59]},{"name":"WPD_OBJECT_FORMAT_PLSPLAYLIST","features":[59]},{"name":"WPD_OBJECT_FORMAT_PNG","features":[59]},{"name":"WPD_OBJECT_FORMAT_PROPERTIES_ONLY","features":[59]},{"name":"WPD_OBJECT_FORMAT_QCELP","features":[59]},{"name":"WPD_OBJECT_FORMAT_SCRIPT","features":[59]},{"name":"WPD_OBJECT_FORMAT_TEXT","features":[59]},{"name":"WPD_OBJECT_FORMAT_TIFF","features":[59]},{"name":"WPD_OBJECT_FORMAT_TIFFEP","features":[59]},{"name":"WPD_OBJECT_FORMAT_TIFFIT","features":[59]},{"name":"WPD_OBJECT_FORMAT_UNSPECIFIED","features":[59]},{"name":"WPD_OBJECT_FORMAT_VCALENDAR1","features":[59]},{"name":"WPD_OBJECT_FORMAT_VCARD2","features":[59]},{"name":"WPD_OBJECT_FORMAT_VCARD3","features":[59]},{"name":"WPD_OBJECT_FORMAT_WAVE","features":[59]},{"name":"WPD_OBJECT_FORMAT_WBMP","features":[59]},{"name":"WPD_OBJECT_FORMAT_WINDOWSIMAGEFORMAT","features":[59]},{"name":"WPD_OBJECT_FORMAT_WMA","features":[59]},{"name":"WPD_OBJECT_FORMAT_WMV","features":[59]},{"name":"WPD_OBJECT_FORMAT_WPLPLAYLIST","features":[59]},{"name":"WPD_OBJECT_FORMAT_X509V3CERTIFICATE","features":[59]},{"name":"WPD_OBJECT_FORMAT_XML","features":[59]},{"name":"WPD_OBJECT_GENERATE_THUMBNAIL_FROM_RESOURCE","features":[59,60]},{"name":"WPD_OBJECT_HINT_LOCATION_DISPLAY_NAME","features":[59,60]},{"name":"WPD_OBJECT_ID","features":[59,60]},{"name":"WPD_OBJECT_ISHIDDEN","features":[59,60]},{"name":"WPD_OBJECT_ISSYSTEM","features":[59,60]},{"name":"WPD_OBJECT_IS_DRM_PROTECTED","features":[59,60]},{"name":"WPD_OBJECT_KEYWORDS","features":[59,60]},{"name":"WPD_OBJECT_LANGUAGE_LOCALE","features":[59,60]},{"name":"WPD_OBJECT_NAME","features":[59,60]},{"name":"WPD_OBJECT_NON_CONSUMABLE","features":[59,60]},{"name":"WPD_OBJECT_ORIGINAL_FILE_NAME","features":[59,60]},{"name":"WPD_OBJECT_PARENT_ID","features":[59,60]},{"name":"WPD_OBJECT_PERSISTENT_UNIQUE_ID","features":[59,60]},{"name":"WPD_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_OBJECT_PROPERTIES_V2","features":[59]},{"name":"WPD_OBJECT_REFERENCES","features":[59,60]},{"name":"WPD_OBJECT_SIZE","features":[59,60]},{"name":"WPD_OBJECT_SUPPORTED_UNITS","features":[59,60]},{"name":"WPD_OBJECT_SYNC_ID","features":[59,60]},{"name":"WPD_OPERATION_STATES","features":[59]},{"name":"WPD_OPERATION_STATE_ABORTED","features":[59]},{"name":"WPD_OPERATION_STATE_CANCELLED","features":[59]},{"name":"WPD_OPERATION_STATE_FINISHED","features":[59]},{"name":"WPD_OPERATION_STATE_PAUSED","features":[59]},{"name":"WPD_OPERATION_STATE_RUNNING","features":[59]},{"name":"WPD_OPERATION_STATE_STARTED","features":[59]},{"name":"WPD_OPERATION_STATE_UNSPECIFIED","features":[59]},{"name":"WPD_OPTION_OBJECT_MANAGEMENT_RECURSIVE_DELETE_SUPPORTED","features":[59,60]},{"name":"WPD_OPTION_OBJECT_RESOURCES_NO_INPUT_BUFFER_ON_READ","features":[59,60]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_READ_SUPPORTED","features":[59,60]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_WRITE_SUPPORTED","features":[59,60]},{"name":"WPD_OPTION_SMS_BINARY_MESSAGE_SUPPORTED","features":[59,60]},{"name":"WPD_OPTION_VALID_OBJECT_IDS","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTES_V1","features":[59]},{"name":"WPD_PARAMETER_ATTRIBUTE_DEFAULT_VALUE","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_ENUMERATION","features":[59]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[59]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_RANGE","features":[59]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[59]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_UNSPECIFIED","features":[59]},{"name":"WPD_PARAMETER_ATTRIBUTE_MAX_SIZE","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_NAME","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_ORDER","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MAX","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MIN","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_STEP","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_REGULAR_EXPRESSION","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_USAGE","features":[59,60]},{"name":"WPD_PARAMETER_ATTRIBUTE_VARTYPE","features":[59,60]},{"name":"WPD_PARAMETER_USAGE_IN","features":[59]},{"name":"WPD_PARAMETER_USAGE_INOUT","features":[59]},{"name":"WPD_PARAMETER_USAGE_OUT","features":[59]},{"name":"WPD_PARAMETER_USAGE_RETURN","features":[59]},{"name":"WPD_PARAMETER_USAGE_TYPES","features":[59]},{"name":"WPD_POWER_SOURCES","features":[59]},{"name":"WPD_POWER_SOURCE_BATTERY","features":[59]},{"name":"WPD_POWER_SOURCE_EXTERNAL","features":[59]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_DEVICE_PROPS","features":[59]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_OBJECT_PROPS","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTES_V1","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTES_V2","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_DELETE","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_READ","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_WRITE","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_DEFAULT_VALUE","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_FAST_PROPERTY","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_ENUMERATION","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_RANGE","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_UNSPECIFIED","features":[59]},{"name":"WPD_PROPERTY_ATTRIBUTE_MAX_SIZE","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_NAME","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MAX","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MIN","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_STEP","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_REGULAR_EXPRESSION","features":[59,60]},{"name":"WPD_PROPERTY_ATTRIBUTE_VARTYPE","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND_OPTIONS","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPE","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPES","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT_OPTIONS","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMAT","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMATS","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORIES","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORY","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_OBJECTS","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_KEYS","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_COMMANDS","features":[59,60]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_EVENTS","features":[59,60]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_VALUES","features":[59,60]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_WRITE_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_INTERFACES","features":[59,60]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_REGISTRATION_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_ACTIVITY_ID","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION_CONTEXT","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_COMMAND_CATEGORY","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_COMMAND_ID","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_COMMAND_TARGET","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_DRIVER_ERROR_CODE","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_HRESULT","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_OBJECT_IDS","features":[59,60]},{"name":"WPD_PROPERTY_COMMON_PERSISTENT_UNIQUE_IDS","features":[59,60]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_LOCATIONS","features":[59,60]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_TYPE","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_EVENT_PARAMS","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_CODE","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_PARAMS","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_CODE","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_PARAMS","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_CONTEXT","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_DATA","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_READ","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_READ","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_WRITE","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_WRITTEN","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_TOTAL_DATA_SIZE","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_EXTENSION_DESCRIPTION","features":[59,60]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_OPERATION_CODES","features":[59,60]},{"name":"WPD_PROPERTY_NULL","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_CONTEXT","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_FILTER","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_NUM_OBJECTS_REQUESTED","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_OBJECT_IDS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_PARENT_ID","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CONTEXT","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_COPY_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CREATION_PROPERTIES","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DATA","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_OPTIONS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DESTINATION_FOLDER_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_MOVE_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_TO_WRITE","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_WRITTEN","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_FORMAT","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_IDS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_PROPERTY_KEYS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_UPDATE_PROPERTIES","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_CONTEXT","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_DEPTH","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_FORMAT","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_IDS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PARENT_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PROPERTY_KEYS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_VALUES","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_WRITE_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_DELETE_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_KEYS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_VALUES","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_WRITE_RESULTS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_ACCESS_MODE","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_CONTEXT","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_DATA","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_READ","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_READ","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_WRITE","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_WRITTEN","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_POSITION_FROM_START","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_KEYS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_OFFSET","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_ORIGIN_FLAG","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_STREAM_UNITS","features":[59,60]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SUPPORTS_UNITS","features":[59,60]},{"name":"WPD_PROPERTY_PUBLIC_KEY","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND_OPTIONS","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMATS","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITANCE_TYPE","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITED_SERVICES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_KEYS","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_RENDERING_PROFILES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_COMMANDS","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_EVENTS","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_METHODS","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_METHOD","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_METHOD_CONTEXT","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_METHOD_HRESULT","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_METHOD_PARAMETER_VALUES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_METHOD_RESULT_VALUES","features":[59,60]},{"name":"WPD_PROPERTY_SERVICE_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_SMS_BINARY_MESSAGE","features":[59,60]},{"name":"WPD_PROPERTY_SMS_MESSAGE_TYPE","features":[59,60]},{"name":"WPD_PROPERTY_SMS_RECIPIENT","features":[59,60]},{"name":"WPD_PROPERTY_SMS_TEXT_MESSAGE","features":[59,60]},{"name":"WPD_PROPERTY_STORAGE_DESTINATION_OBJECT_ID","features":[59,60]},{"name":"WPD_PROPERTY_STORAGE_OBJECT_ID","features":[59,60]},{"name":"WPD_RENDERING_INFORMATION_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_RENDERING_INFORMATION_PROFILES","features":[59,60]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_CREATABLE_RESOURCES","features":[59,60]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE","features":[59,60]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPES","features":[59]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_OBJECT","features":[59]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_RESOURCE","features":[59]},{"name":"WPD_RESOURCE_ALBUM_ART","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTES_V1","features":[59]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_DELETE","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_READ","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_WRITE","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTE_FORMAT","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_READ_BUFFER_SIZE","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_WRITE_BUFFER_SIZE","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTE_RESOURCE_KEY","features":[59,60]},{"name":"WPD_RESOURCE_ATTRIBUTE_TOTAL_SIZE","features":[59,60]},{"name":"WPD_RESOURCE_AUDIO_CLIP","features":[59,60]},{"name":"WPD_RESOURCE_BRANDING_ART","features":[59,60]},{"name":"WPD_RESOURCE_CONTACT_PHOTO","features":[59,60]},{"name":"WPD_RESOURCE_DEFAULT","features":[59,60]},{"name":"WPD_RESOURCE_GENERIC","features":[59,60]},{"name":"WPD_RESOURCE_ICON","features":[59,60]},{"name":"WPD_RESOURCE_THUMBNAIL","features":[59,60]},{"name":"WPD_RESOURCE_VIDEO_CLIP","features":[59,60]},{"name":"WPD_SECTION_DATA_LENGTH","features":[59,60]},{"name":"WPD_SECTION_DATA_OFFSET","features":[59,60]},{"name":"WPD_SECTION_DATA_REFERENCED_OBJECT_RESOURCE","features":[59,60]},{"name":"WPD_SECTION_DATA_UNITS","features":[59,60]},{"name":"WPD_SECTION_DATA_UNITS_BYTES","features":[59]},{"name":"WPD_SECTION_DATA_UNITS_MILLISECONDS","features":[59]},{"name":"WPD_SECTION_DATA_UNITS_VALUES","features":[59]},{"name":"WPD_SECTION_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_SERVICE_INHERITANCE_IMPLEMENTATION","features":[59]},{"name":"WPD_SERVICE_INHERITANCE_TYPES","features":[59]},{"name":"WPD_SERVICE_PROPERTIES_V1","features":[59]},{"name":"WPD_SERVICE_VERSION","features":[59,60]},{"name":"WPD_SMS_ENCODING","features":[59,60]},{"name":"WPD_SMS_ENCODING_TYPES","features":[59]},{"name":"WPD_SMS_MAX_PAYLOAD","features":[59,60]},{"name":"WPD_SMS_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_SMS_PROVIDER","features":[59,60]},{"name":"WPD_SMS_TIMEOUT","features":[59,60]},{"name":"WPD_STILL_IMAGE_ARTIST","features":[59,60]},{"name":"WPD_STILL_IMAGE_BURST_INTERVAL","features":[59,60]},{"name":"WPD_STILL_IMAGE_BURST_NUMBER","features":[59,60]},{"name":"WPD_STILL_IMAGE_CAMERA_MANUFACTURER","features":[59,60]},{"name":"WPD_STILL_IMAGE_CAMERA_MODEL","features":[59,60]},{"name":"WPD_STILL_IMAGE_CAPTURE_DELAY","features":[59,60]},{"name":"WPD_STILL_IMAGE_CAPTURE_FORMAT","features":[59,60]},{"name":"WPD_STILL_IMAGE_CAPTURE_MODE","features":[59,60]},{"name":"WPD_STILL_IMAGE_CAPTURE_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_STILL_IMAGE_CAPTURE_RESOLUTION","features":[59,60]},{"name":"WPD_STILL_IMAGE_COMPRESSION_SETTING","features":[59,60]},{"name":"WPD_STILL_IMAGE_CONTRAST","features":[59,60]},{"name":"WPD_STILL_IMAGE_DIGITAL_ZOOM","features":[59,60]},{"name":"WPD_STILL_IMAGE_EFFECT_MODE","features":[59,60]},{"name":"WPD_STILL_IMAGE_EXPOSURE_BIAS_COMPENSATION","features":[59,60]},{"name":"WPD_STILL_IMAGE_EXPOSURE_INDEX","features":[59,60]},{"name":"WPD_STILL_IMAGE_EXPOSURE_METERING_MODE","features":[59,60]},{"name":"WPD_STILL_IMAGE_EXPOSURE_PROGRAM_MODE","features":[59,60]},{"name":"WPD_STILL_IMAGE_EXPOSURE_TIME","features":[59,60]},{"name":"WPD_STILL_IMAGE_FLASH_MODE","features":[59,60]},{"name":"WPD_STILL_IMAGE_FNUMBER","features":[59,60]},{"name":"WPD_STILL_IMAGE_FOCAL_LENGTH","features":[59,60]},{"name":"WPD_STILL_IMAGE_FOCUS_DISTANCE","features":[59,60]},{"name":"WPD_STILL_IMAGE_FOCUS_METERING_MODE","features":[59,60]},{"name":"WPD_STILL_IMAGE_FOCUS_MODE","features":[59,60]},{"name":"WPD_STILL_IMAGE_RGB_GAIN","features":[59,60]},{"name":"WPD_STILL_IMAGE_SHARPNESS","features":[59,60]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_INTERVAL","features":[59,60]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_NUMBER","features":[59,60]},{"name":"WPD_STILL_IMAGE_UPLOAD_URL","features":[59,60]},{"name":"WPD_STILL_IMAGE_WHITE_BALANCE","features":[59,60]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY","features":[59,60]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READWRITE","features":[59]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITHOUT_OBJECT_DELETION","features":[59]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITH_OBJECT_DELETION","features":[59]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_VALUES","features":[59]},{"name":"WPD_STORAGE_CAPACITY","features":[59,60]},{"name":"WPD_STORAGE_CAPACITY_IN_OBJECTS","features":[59,60]},{"name":"WPD_STORAGE_DESCRIPTION","features":[59,60]},{"name":"WPD_STORAGE_FILE_SYSTEM_TYPE","features":[59,60]},{"name":"WPD_STORAGE_FREE_SPACE_IN_BYTES","features":[59,60]},{"name":"WPD_STORAGE_FREE_SPACE_IN_OBJECTS","features":[59,60]},{"name":"WPD_STORAGE_MAX_OBJECT_SIZE","features":[59,60]},{"name":"WPD_STORAGE_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_STORAGE_SERIAL_NUMBER","features":[59,60]},{"name":"WPD_STORAGE_TYPE","features":[59,60]},{"name":"WPD_STORAGE_TYPE_FIXED_RAM","features":[59]},{"name":"WPD_STORAGE_TYPE_FIXED_ROM","features":[59]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_RAM","features":[59]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_ROM","features":[59]},{"name":"WPD_STORAGE_TYPE_UNDEFINED","features":[59]},{"name":"WPD_STORAGE_TYPE_VALUES","features":[59]},{"name":"WPD_STREAM_UNITS","features":[59]},{"name":"WPD_STREAM_UNITS_BYTES","features":[59]},{"name":"WPD_STREAM_UNITS_FRAMES","features":[59]},{"name":"WPD_STREAM_UNITS_MICROSECONDS","features":[59]},{"name":"WPD_STREAM_UNITS_MILLISECONDS","features":[59]},{"name":"WPD_STREAM_UNITS_ROWS","features":[59]},{"name":"WPD_TASK_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_TASK_OWNER","features":[59,60]},{"name":"WPD_TASK_PERCENT_COMPLETE","features":[59,60]},{"name":"WPD_TASK_REMINDER_DATE","features":[59,60]},{"name":"WPD_TASK_STATUS","features":[59,60]},{"name":"WPD_VIDEO_AUTHOR","features":[59,60]},{"name":"WPD_VIDEO_BITRATE","features":[59,60]},{"name":"WPD_VIDEO_BUFFER_SIZE","features":[59,60]},{"name":"WPD_VIDEO_CREDITS","features":[59,60]},{"name":"WPD_VIDEO_FOURCC_CODE","features":[59,60]},{"name":"WPD_VIDEO_FRAMERATE","features":[59,60]},{"name":"WPD_VIDEO_KEY_FRAME_DISTANCE","features":[59,60]},{"name":"WPD_VIDEO_OBJECT_PROPERTIES_V1","features":[59]},{"name":"WPD_VIDEO_QUALITY_SETTING","features":[59,60]},{"name":"WPD_VIDEO_RECORDEDTV_CHANNEL_NUMBER","features":[59,60]},{"name":"WPD_VIDEO_RECORDEDTV_REPEAT","features":[59,60]},{"name":"WPD_VIDEO_RECORDEDTV_STATION_NAME","features":[59,60]},{"name":"WPD_VIDEO_SCAN_TYPE","features":[59,60]},{"name":"WPD_VIDEO_SCAN_TYPES","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_LOWER_FIRST","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_UPPER_FIRST","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_LOWER_FIRST","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_UPPER_FIRST","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE_AND_PROGRESSIVE","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_PROGRESSIVE","features":[59]},{"name":"WPD_VIDEO_SCAN_TYPE_UNUSED","features":[59]},{"name":"WPD_WHITE_BALANCE_AUTOMATIC","features":[59]},{"name":"WPD_WHITE_BALANCE_DAYLIGHT","features":[59]},{"name":"WPD_WHITE_BALANCE_FLASH","features":[59]},{"name":"WPD_WHITE_BALANCE_FLORESCENT","features":[59]},{"name":"WPD_WHITE_BALANCE_MANUAL","features":[59]},{"name":"WPD_WHITE_BALANCE_ONE_PUSH_AUTOMATIC","features":[59]},{"name":"WPD_WHITE_BALANCE_SETTINGS","features":[59]},{"name":"WPD_WHITE_BALANCE_TUNGSTEN","features":[59]},{"name":"WPD_WHITE_BALANCE_UNDEFINED","features":[59]},{"name":"WpdAttributeForm","features":[59]},{"name":"WpdParameterAttributeForm","features":[59]},{"name":"WpdSerializer","features":[59]}],"382":[{"name":"DEVPKEY_DevQuery_ObjectType","features":[35]},{"name":"DEVPKEY_DeviceClass_Characteristics","features":[35]},{"name":"DEVPKEY_DeviceClass_ClassCoInstallers","features":[35]},{"name":"DEVPKEY_DeviceClass_ClassInstaller","features":[35]},{"name":"DEVPKEY_DeviceClass_ClassName","features":[35]},{"name":"DEVPKEY_DeviceClass_DHPRebalanceOptOut","features":[35]},{"name":"DEVPKEY_DeviceClass_DefaultService","features":[35]},{"name":"DEVPKEY_DeviceClass_DevType","features":[35]},{"name":"DEVPKEY_DeviceClass_Exclusive","features":[35]},{"name":"DEVPKEY_DeviceClass_Icon","features":[35]},{"name":"DEVPKEY_DeviceClass_IconPath","features":[35]},{"name":"DEVPKEY_DeviceClass_LowerFilters","features":[35]},{"name":"DEVPKEY_DeviceClass_Name","features":[35]},{"name":"DEVPKEY_DeviceClass_NoDisplayClass","features":[35]},{"name":"DEVPKEY_DeviceClass_NoInstallClass","features":[35]},{"name":"DEVPKEY_DeviceClass_NoUseClass","features":[35]},{"name":"DEVPKEY_DeviceClass_PropPageProvider","features":[35]},{"name":"DEVPKEY_DeviceClass_Security","features":[35]},{"name":"DEVPKEY_DeviceClass_SecuritySDS","features":[35]},{"name":"DEVPKEY_DeviceClass_SilentInstall","features":[35]},{"name":"DEVPKEY_DeviceClass_UpperFilters","features":[35]},{"name":"DEVPKEY_DeviceContainer_Address","features":[35]},{"name":"DEVPKEY_DeviceContainer_AlwaysShowDeviceAsConnected","features":[35]},{"name":"DEVPKEY_DeviceContainer_AssociationArray","features":[35]},{"name":"DEVPKEY_DeviceContainer_BaselineExperienceId","features":[35]},{"name":"DEVPKEY_DeviceContainer_Category","features":[35]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Desc","features":[35]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Icon","features":[35]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Plural","features":[35]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Singular","features":[35]},{"name":"DEVPKEY_DeviceContainer_Category_Icon","features":[35]},{"name":"DEVPKEY_DeviceContainer_ConfigFlags","features":[35]},{"name":"DEVPKEY_DeviceContainer_CustomPrivilegedPackageFamilyNames","features":[35]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription1","features":[35]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription2","features":[35]},{"name":"DEVPKEY_DeviceContainer_DeviceFunctionSubRank","features":[35]},{"name":"DEVPKEY_DeviceContainer_DiscoveryMethod","features":[35]},{"name":"DEVPKEY_DeviceContainer_ExperienceId","features":[35]},{"name":"DEVPKEY_DeviceContainer_FriendlyName","features":[35]},{"name":"DEVPKEY_DeviceContainer_HasProblem","features":[35]},{"name":"DEVPKEY_DeviceContainer_Icon","features":[35]},{"name":"DEVPKEY_DeviceContainer_InstallInProgress","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsAuthenticated","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsConnected","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsDefaultDevice","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsDeviceUniquelyIdentifiable","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsEncrypted","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsLocalMachine","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsMetadataSearchInProgress","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsNetworkDevice","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsNotInterestingForDisplay","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsPaired","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsRebootRequired","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsSharedDevice","features":[35]},{"name":"DEVPKEY_DeviceContainer_IsShowInDisconnectedState","features":[35]},{"name":"DEVPKEY_DeviceContainer_Last_Connected","features":[35]},{"name":"DEVPKEY_DeviceContainer_Last_Seen","features":[35]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageFromExplorer","features":[35]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageOnDeviceConnect","features":[35]},{"name":"DEVPKEY_DeviceContainer_Manufacturer","features":[35]},{"name":"DEVPKEY_DeviceContainer_MetadataCabinet","features":[35]},{"name":"DEVPKEY_DeviceContainer_MetadataChecksum","features":[35]},{"name":"DEVPKEY_DeviceContainer_MetadataPath","features":[35]},{"name":"DEVPKEY_DeviceContainer_ModelName","features":[35]},{"name":"DEVPKEY_DeviceContainer_ModelNumber","features":[35]},{"name":"DEVPKEY_DeviceContainer_PrimaryCategory","features":[35]},{"name":"DEVPKEY_DeviceContainer_PrivilegedPackageFamilyNames","features":[35]},{"name":"DEVPKEY_DeviceContainer_RequiresPairingElevation","features":[35]},{"name":"DEVPKEY_DeviceContainer_RequiresUninstallElevation","features":[35]},{"name":"DEVPKEY_DeviceContainer_UnpairUninstall","features":[35]},{"name":"DEVPKEY_DeviceContainer_Version","features":[35]},{"name":"DEVPKEY_DeviceInterfaceClass_DefaultInterface","features":[35]},{"name":"DEVPKEY_DeviceInterfaceClass_Name","features":[35]},{"name":"DEVPKEY_DeviceInterface_Autoplay_Silent","features":[35]},{"name":"DEVPKEY_DeviceInterface_ClassGuid","features":[35]},{"name":"DEVPKEY_DeviceInterface_Enabled","features":[35]},{"name":"DEVPKEY_DeviceInterface_FriendlyName","features":[35]},{"name":"DEVPKEY_DeviceInterface_ReferenceString","features":[35]},{"name":"DEVPKEY_DeviceInterface_Restricted","features":[35]},{"name":"DEVPKEY_DeviceInterface_SchematicName","features":[35]},{"name":"DEVPKEY_DeviceInterface_UnrestrictedAppCapabilities","features":[35]},{"name":"DEVPKEY_Device_AdditionalSoftwareRequested","features":[35]},{"name":"DEVPKEY_Device_Address","features":[35]},{"name":"DEVPKEY_Device_AssignedToGuest","features":[35]},{"name":"DEVPKEY_Device_BaseContainerId","features":[35]},{"name":"DEVPKEY_Device_BiosDeviceName","features":[35]},{"name":"DEVPKEY_Device_BusNumber","features":[35]},{"name":"DEVPKEY_Device_BusRelations","features":[35]},{"name":"DEVPKEY_Device_BusReportedDeviceDesc","features":[35]},{"name":"DEVPKEY_Device_BusTypeGuid","features":[35]},{"name":"DEVPKEY_Device_Capabilities","features":[35]},{"name":"DEVPKEY_Device_Characteristics","features":[35]},{"name":"DEVPKEY_Device_Children","features":[35]},{"name":"DEVPKEY_Device_Class","features":[35]},{"name":"DEVPKEY_Device_ClassGuid","features":[35]},{"name":"DEVPKEY_Device_CompanionApps","features":[35]},{"name":"DEVPKEY_Device_CompatibleIds","features":[35]},{"name":"DEVPKEY_Device_ConfigFlags","features":[35]},{"name":"DEVPKEY_Device_ConfigurationId","features":[35]},{"name":"DEVPKEY_Device_ContainerId","features":[35]},{"name":"DEVPKEY_Device_CreatorProcessId","features":[35]},{"name":"DEVPKEY_Device_DHP_Rebalance_Policy","features":[35]},{"name":"DEVPKEY_Device_DebuggerSafe","features":[35]},{"name":"DEVPKEY_Device_DependencyDependents","features":[35]},{"name":"DEVPKEY_Device_DependencyProviders","features":[35]},{"name":"DEVPKEY_Device_DevNodeStatus","features":[35]},{"name":"DEVPKEY_Device_DevType","features":[35]},{"name":"DEVPKEY_Device_DeviceDesc","features":[35]},{"name":"DEVPKEY_Device_Driver","features":[35]},{"name":"DEVPKEY_Device_DriverCoInstallers","features":[35]},{"name":"DEVPKEY_Device_DriverDate","features":[35]},{"name":"DEVPKEY_Device_DriverDesc","features":[35]},{"name":"DEVPKEY_Device_DriverInfPath","features":[35]},{"name":"DEVPKEY_Device_DriverInfSection","features":[35]},{"name":"DEVPKEY_Device_DriverInfSectionExt","features":[35]},{"name":"DEVPKEY_Device_DriverLogoLevel","features":[35]},{"name":"DEVPKEY_Device_DriverProblemDesc","features":[35]},{"name":"DEVPKEY_Device_DriverPropPageProvider","features":[35]},{"name":"DEVPKEY_Device_DriverProvider","features":[35]},{"name":"DEVPKEY_Device_DriverRank","features":[35]},{"name":"DEVPKEY_Device_DriverVersion","features":[35]},{"name":"DEVPKEY_Device_EjectionRelations","features":[35]},{"name":"DEVPKEY_Device_EnumeratorName","features":[35]},{"name":"DEVPKEY_Device_Exclusive","features":[35]},{"name":"DEVPKEY_Device_ExtendedAddress","features":[35]},{"name":"DEVPKEY_Device_ExtendedConfigurationIds","features":[35]},{"name":"DEVPKEY_Device_FirmwareDate","features":[35]},{"name":"DEVPKEY_Device_FirmwareRevision","features":[35]},{"name":"DEVPKEY_Device_FirmwareVendor","features":[35]},{"name":"DEVPKEY_Device_FirmwareVersion","features":[35]},{"name":"DEVPKEY_Device_FirstInstallDate","features":[35]},{"name":"DEVPKEY_Device_FriendlyName","features":[35]},{"name":"DEVPKEY_Device_FriendlyNameAttributes","features":[35]},{"name":"DEVPKEY_Device_GenericDriverInstalled","features":[35]},{"name":"DEVPKEY_Device_HardwareIds","features":[35]},{"name":"DEVPKEY_Device_HasProblem","features":[35]},{"name":"DEVPKEY_Device_InLocalMachineContainer","features":[35]},{"name":"DEVPKEY_Device_InstallDate","features":[35]},{"name":"DEVPKEY_Device_InstallState","features":[35]},{"name":"DEVPKEY_Device_InstanceId","features":[35]},{"name":"DEVPKEY_Device_IsAssociateableByUserAction","features":[35]},{"name":"DEVPKEY_Device_IsPresent","features":[35]},{"name":"DEVPKEY_Device_IsRebootRequired","features":[35]},{"name":"DEVPKEY_Device_LastArrivalDate","features":[35]},{"name":"DEVPKEY_Device_LastRemovalDate","features":[35]},{"name":"DEVPKEY_Device_Legacy","features":[35]},{"name":"DEVPKEY_Device_LegacyBusType","features":[35]},{"name":"DEVPKEY_Device_LocationInfo","features":[35]},{"name":"DEVPKEY_Device_LocationPaths","features":[35]},{"name":"DEVPKEY_Device_LowerFilters","features":[35]},{"name":"DEVPKEY_Device_Manufacturer","features":[35]},{"name":"DEVPKEY_Device_ManufacturerAttributes","features":[35]},{"name":"DEVPKEY_Device_MatchingDeviceId","features":[35]},{"name":"DEVPKEY_Device_Model","features":[35]},{"name":"DEVPKEY_Device_ModelId","features":[35]},{"name":"DEVPKEY_Device_NoConnectSound","features":[35]},{"name":"DEVPKEY_Device_Numa_Node","features":[35]},{"name":"DEVPKEY_Device_Numa_Proximity_Domain","features":[35]},{"name":"DEVPKEY_Device_PDOName","features":[35]},{"name":"DEVPKEY_Device_Parent","features":[35]},{"name":"DEVPKEY_Device_PhysicalDeviceLocation","features":[35]},{"name":"DEVPKEY_Device_PostInstallInProgress","features":[35]},{"name":"DEVPKEY_Device_PowerData","features":[35]},{"name":"DEVPKEY_Device_PowerRelations","features":[35]},{"name":"DEVPKEY_Device_PresenceNotForDevice","features":[35]},{"name":"DEVPKEY_Device_PrimaryCompanionApp","features":[35]},{"name":"DEVPKEY_Device_ProblemCode","features":[35]},{"name":"DEVPKEY_Device_ProblemStatus","features":[35]},{"name":"DEVPKEY_Device_RemovalPolicy","features":[35]},{"name":"DEVPKEY_Device_RemovalPolicyDefault","features":[35]},{"name":"DEVPKEY_Device_RemovalPolicyOverride","features":[35]},{"name":"DEVPKEY_Device_RemovalRelations","features":[35]},{"name":"DEVPKEY_Device_Reported","features":[35]},{"name":"DEVPKEY_Device_ReportedDeviceIdsHash","features":[35]},{"name":"DEVPKEY_Device_ResourcePickerExceptions","features":[35]},{"name":"DEVPKEY_Device_ResourcePickerTags","features":[35]},{"name":"DEVPKEY_Device_SafeRemovalRequired","features":[35]},{"name":"DEVPKEY_Device_SafeRemovalRequiredOverride","features":[35]},{"name":"DEVPKEY_Device_Security","features":[35]},{"name":"DEVPKEY_Device_SecuritySDS","features":[35]},{"name":"DEVPKEY_Device_Service","features":[35]},{"name":"DEVPKEY_Device_SessionId","features":[35]},{"name":"DEVPKEY_Device_ShowInUninstallUI","features":[35]},{"name":"DEVPKEY_Device_Siblings","features":[35]},{"name":"DEVPKEY_Device_SignalStrength","features":[35]},{"name":"DEVPKEY_Device_SoftRestartSupported","features":[35]},{"name":"DEVPKEY_Device_Stack","features":[35]},{"name":"DEVPKEY_Device_TransportRelations","features":[35]},{"name":"DEVPKEY_Device_UINumber","features":[35]},{"name":"DEVPKEY_Device_UINumberDescFormat","features":[35]},{"name":"DEVPKEY_Device_UpperFilters","features":[35]},{"name":"DEVPKEY_DrvPkg_BrandingIcon","features":[35]},{"name":"DEVPKEY_DrvPkg_DetailedDescription","features":[35]},{"name":"DEVPKEY_DrvPkg_DocumentationLink","features":[35]},{"name":"DEVPKEY_DrvPkg_Icon","features":[35]},{"name":"DEVPKEY_DrvPkg_Model","features":[35]},{"name":"DEVPKEY_DrvPkg_VendorWebSite","features":[35]},{"name":"DEVPKEY_NAME","features":[35]},{"name":"DEVPROPCOMPKEY","features":[35]},{"name":"DEVPROPERTY","features":[35]},{"name":"DEVPROPID_FIRST_USABLE","features":[35]},{"name":"DEVPROPKEY","features":[35]},{"name":"DEVPROPSTORE","features":[35]},{"name":"DEVPROPTYPE","features":[35]},{"name":"DEVPROP_BOOLEAN","features":[35]},{"name":"DEVPROP_FALSE","features":[35]},{"name":"DEVPROP_MASK_TYPE","features":[35]},{"name":"DEVPROP_MASK_TYPEMOD","features":[35]},{"name":"DEVPROP_STORE_SYSTEM","features":[35]},{"name":"DEVPROP_STORE_USER","features":[35]},{"name":"DEVPROP_TRUE","features":[35]},{"name":"DEVPROP_TYPEMOD_ARRAY","features":[35]},{"name":"DEVPROP_TYPEMOD_LIST","features":[35]},{"name":"DEVPROP_TYPE_BINARY","features":[35]},{"name":"DEVPROP_TYPE_BOOLEAN","features":[35]},{"name":"DEVPROP_TYPE_BYTE","features":[35]},{"name":"DEVPROP_TYPE_CURRENCY","features":[35]},{"name":"DEVPROP_TYPE_DATE","features":[35]},{"name":"DEVPROP_TYPE_DECIMAL","features":[35]},{"name":"DEVPROP_TYPE_DEVPROPKEY","features":[35]},{"name":"DEVPROP_TYPE_DEVPROPTYPE","features":[35]},{"name":"DEVPROP_TYPE_DOUBLE","features":[35]},{"name":"DEVPROP_TYPE_EMPTY","features":[35]},{"name":"DEVPROP_TYPE_ERROR","features":[35]},{"name":"DEVPROP_TYPE_FILETIME","features":[35]},{"name":"DEVPROP_TYPE_FLOAT","features":[35]},{"name":"DEVPROP_TYPE_GUID","features":[35]},{"name":"DEVPROP_TYPE_INT16","features":[35]},{"name":"DEVPROP_TYPE_INT32","features":[35]},{"name":"DEVPROP_TYPE_INT64","features":[35]},{"name":"DEVPROP_TYPE_NTSTATUS","features":[35]},{"name":"DEVPROP_TYPE_NULL","features":[35]},{"name":"DEVPROP_TYPE_SBYTE","features":[35]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR","features":[35]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING","features":[35]},{"name":"DEVPROP_TYPE_STRING","features":[35]},{"name":"DEVPROP_TYPE_STRING_INDIRECT","features":[35]},{"name":"DEVPROP_TYPE_STRING_LIST","features":[35]},{"name":"DEVPROP_TYPE_UINT16","features":[35]},{"name":"DEVPROP_TYPE_UINT32","features":[35]},{"name":"DEVPROP_TYPE_UINT64","features":[35]},{"name":"MAX_DEVPROP_TYPE","features":[35]},{"name":"MAX_DEVPROP_TYPEMOD","features":[35]}],"383":[{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER","features":[61]},{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER_WSZ","features":[61]},{"name":"IOCTL_PWM_CONTROLLER_GET_ACTUAL_PERIOD","features":[61]},{"name":"IOCTL_PWM_CONTROLLER_GET_INFO","features":[61]},{"name":"IOCTL_PWM_CONTROLLER_SET_DESIRED_PERIOD","features":[61]},{"name":"IOCTL_PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[61]},{"name":"IOCTL_PWM_PIN_GET_POLARITY","features":[61]},{"name":"IOCTL_PWM_PIN_IS_STARTED","features":[61]},{"name":"IOCTL_PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[61]},{"name":"IOCTL_PWM_PIN_SET_POLARITY","features":[61]},{"name":"IOCTL_PWM_PIN_START","features":[61]},{"name":"IOCTL_PWM_PIN_STOP","features":[61]},{"name":"PWM_ACTIVE_HIGH","features":[61]},{"name":"PWM_ACTIVE_LOW","features":[61]},{"name":"PWM_CONTROLLER_GET_ACTUAL_PERIOD_OUTPUT","features":[61]},{"name":"PWM_CONTROLLER_INFO","features":[61]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_INPUT","features":[61]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_OUTPUT","features":[61]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_ACTUAL_PERIOD","features":[61]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_INFO","features":[61]},{"name":"PWM_IOCTL_ID_CONTROLLER_SET_DESIRED_PERIOD","features":[61]},{"name":"PWM_IOCTL_ID_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[61]},{"name":"PWM_IOCTL_ID_PIN_GET_POLARITY","features":[61]},{"name":"PWM_IOCTL_ID_PIN_IS_STARTED","features":[61]},{"name":"PWM_IOCTL_ID_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[61]},{"name":"PWM_IOCTL_ID_PIN_SET_POLARITY","features":[61]},{"name":"PWM_IOCTL_ID_PIN_START","features":[61]},{"name":"PWM_IOCTL_ID_PIN_STOP","features":[61]},{"name":"PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE_OUTPUT","features":[61]},{"name":"PWM_PIN_GET_POLARITY_OUTPUT","features":[61]},{"name":"PWM_PIN_IS_STARTED_OUTPUT","features":[61,1]},{"name":"PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE_INPUT","features":[61]},{"name":"PWM_PIN_SET_POLARITY_INPUT","features":[61]},{"name":"PWM_POLARITY","features":[61]}],"384":[{"name":"ACTIVITY_STATE","features":[62]},{"name":"ACTIVITY_STATE_COUNT","features":[62]},{"name":"AXIS","features":[62]},{"name":"AXIS_MAX","features":[62]},{"name":"AXIS_X","features":[62]},{"name":"AXIS_Y","features":[62]},{"name":"AXIS_Z","features":[62]},{"name":"ActivityStateCount","features":[62]},{"name":"ActivityState_Biking","features":[62]},{"name":"ActivityState_Fidgeting","features":[62]},{"name":"ActivityState_Force_Dword","features":[62]},{"name":"ActivityState_Idle","features":[62]},{"name":"ActivityState_InVehicle","features":[62]},{"name":"ActivityState_Max","features":[62]},{"name":"ActivityState_Running","features":[62]},{"name":"ActivityState_Stationary","features":[62]},{"name":"ActivityState_Unknown","features":[62]},{"name":"ActivityState_Walking","features":[62]},{"name":"CollectionsListAllocateBufferAndSerialize","features":[62,1,63,42,60]},{"name":"CollectionsListCopyAndMarshall","features":[62,1,63,42,60]},{"name":"CollectionsListDeserializeFromBuffer","features":[62,1,63,42,60]},{"name":"CollectionsListGetFillableCount","features":[62]},{"name":"CollectionsListGetMarshalledSize","features":[62,1,63,42,60]},{"name":"CollectionsListGetMarshalledSizeWithoutSerialization","features":[62,1,63,42,60]},{"name":"CollectionsListGetSerializedSize","features":[62,1,63,42,60]},{"name":"CollectionsListMarshall","features":[62,1,63,42,60]},{"name":"CollectionsListSerializeToBuffer","features":[62,1,63,42,60]},{"name":"CollectionsListSortSubscribedActivitiesByConfidence","features":[62,1,63,42,60]},{"name":"CollectionsListUpdateMarshalledPointer","features":[62,1,63,42,60]},{"name":"ELEVATION_CHANGE_MODE","features":[62]},{"name":"ElevationChangeMode_Elevator","features":[62]},{"name":"ElevationChangeMode_Force_Dword","features":[62]},{"name":"ElevationChangeMode_Max","features":[62]},{"name":"ElevationChangeMode_Stepping","features":[62]},{"name":"ElevationChangeMode_Unknown","features":[62]},{"name":"EvaluateActivityThresholds","features":[62,1,63,42,60]},{"name":"GNSS_CLEAR_ALL_ASSISTANCE_DATA","features":[62]},{"name":"GUID_DEVINTERFACE_SENSOR","features":[62]},{"name":"GUID_SensorCategory_All","features":[62]},{"name":"GUID_SensorCategory_Biometric","features":[62]},{"name":"GUID_SensorCategory_Electrical","features":[62]},{"name":"GUID_SensorCategory_Environmental","features":[62]},{"name":"GUID_SensorCategory_Light","features":[62]},{"name":"GUID_SensorCategory_Location","features":[62]},{"name":"GUID_SensorCategory_Mechanical","features":[62]},{"name":"GUID_SensorCategory_Motion","features":[62]},{"name":"GUID_SensorCategory_Orientation","features":[62]},{"name":"GUID_SensorCategory_Other","features":[62]},{"name":"GUID_SensorCategory_PersonalActivity","features":[62]},{"name":"GUID_SensorCategory_Scanner","features":[62]},{"name":"GUID_SensorCategory_Unsupported","features":[62]},{"name":"GUID_SensorType_Accelerometer3D","features":[62]},{"name":"GUID_SensorType_ActivityDetection","features":[62]},{"name":"GUID_SensorType_AmbientLight","features":[62]},{"name":"GUID_SensorType_Barometer","features":[62]},{"name":"GUID_SensorType_Custom","features":[62]},{"name":"GUID_SensorType_FloorElevation","features":[62]},{"name":"GUID_SensorType_GeomagneticOrientation","features":[62]},{"name":"GUID_SensorType_GravityVector","features":[62]},{"name":"GUID_SensorType_Gyrometer3D","features":[62]},{"name":"GUID_SensorType_HingeAngle","features":[62]},{"name":"GUID_SensorType_Humidity","features":[62]},{"name":"GUID_SensorType_LinearAccelerometer","features":[62]},{"name":"GUID_SensorType_Magnetometer3D","features":[62]},{"name":"GUID_SensorType_Orientation","features":[62]},{"name":"GUID_SensorType_Pedometer","features":[62]},{"name":"GUID_SensorType_Proximity","features":[62]},{"name":"GUID_SensorType_RelativeOrientation","features":[62]},{"name":"GUID_SensorType_SimpleDeviceOrientation","features":[62]},{"name":"GUID_SensorType_Temperature","features":[62]},{"name":"GetPerformanceTime","features":[62,1]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE","features":[62]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE_COUNT","features":[62]},{"name":"HumanPresenceDetectionTypeCount","features":[62]},{"name":"HumanPresenceDetectionType_AudioBiometric","features":[62]},{"name":"HumanPresenceDetectionType_FacialBiometric","features":[62]},{"name":"HumanPresenceDetectionType_Force_Dword","features":[62]},{"name":"HumanPresenceDetectionType_Undefined","features":[62]},{"name":"HumanPresenceDetectionType_VendorDefinedBiometric","features":[62]},{"name":"HumanPresenceDetectionType_VendorDefinedNonBiometric","features":[62]},{"name":"ILocationPermissions","features":[62]},{"name":"ISensor","features":[62]},{"name":"ISensorCollection","features":[62]},{"name":"ISensorDataReport","features":[62]},{"name":"ISensorEvents","features":[62]},{"name":"ISensorManager","features":[62]},{"name":"ISensorManagerEvents","features":[62]},{"name":"InitPropVariantFromCLSIDArray","features":[62,1,63,42]},{"name":"InitPropVariantFromFloat","features":[62,1,63,42]},{"name":"IsCollectionListSame","features":[62,1,63,42,60]},{"name":"IsGUIDPresentInList","features":[62,1]},{"name":"IsKeyPresentInCollectionList","features":[62,1,63,42,60]},{"name":"IsKeyPresentInPropertyList","features":[62,1,60]},{"name":"IsSensorSubscribed","features":[62,1,63,42,60]},{"name":"LOCATION_DESIRED_ACCURACY","features":[62]},{"name":"LOCATION_DESIRED_ACCURACY_DEFAULT","features":[62]},{"name":"LOCATION_DESIRED_ACCURACY_HIGH","features":[62]},{"name":"LOCATION_POSITION_SOURCE","features":[62]},{"name":"LOCATION_POSITION_SOURCE_CELLULAR","features":[62]},{"name":"LOCATION_POSITION_SOURCE_IPADDRESS","features":[62]},{"name":"LOCATION_POSITION_SOURCE_SATELLITE","features":[62]},{"name":"LOCATION_POSITION_SOURCE_UNKNOWN","features":[62]},{"name":"LOCATION_POSITION_SOURCE_WIFI","features":[62]},{"name":"MAGNETOMETER_ACCURACY","features":[62]},{"name":"MAGNETOMETER_ACCURACY_APPROXIMATE","features":[62]},{"name":"MAGNETOMETER_ACCURACY_HIGH","features":[62]},{"name":"MAGNETOMETER_ACCURACY_UNKNOWN","features":[62]},{"name":"MAGNETOMETER_ACCURACY_UNRELIABLE","features":[62]},{"name":"MATRIX3X3","features":[62]},{"name":"MagnetometerAccuracy","features":[62]},{"name":"MagnetometerAccuracy_Approximate","features":[62]},{"name":"MagnetometerAccuracy_High","features":[62]},{"name":"MagnetometerAccuracy_Unknown","features":[62]},{"name":"MagnetometerAccuracy_Unreliable","features":[62]},{"name":"PEDOMETER_STEP_TYPE","features":[62]},{"name":"PEDOMETER_STEP_TYPE_COUNT","features":[62]},{"name":"PROXIMITY_SENSOR_CAPABILITIES","features":[62]},{"name":"PROXIMITY_TYPE","features":[62]},{"name":"PedometerStepTypeCount","features":[62]},{"name":"PedometerStepType_Force_Dword","features":[62]},{"name":"PedometerStepType_Max","features":[62]},{"name":"PedometerStepType_Running","features":[62]},{"name":"PedometerStepType_Unknown","features":[62]},{"name":"PedometerStepType_Walking","features":[62]},{"name":"PropKeyFindKeyGetBool","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetDouble","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetFileTime","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetFloat","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetGuid","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetInt32","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetInt64","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetNthInt64","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetNthUlong","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetNthUshort","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetPropVariant","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetUlong","features":[62,1,63,42,60]},{"name":"PropKeyFindKeyGetUshort","features":[62,1,63,42,60]},{"name":"PropKeyFindKeySetPropVariant","features":[62,1,63,42,60]},{"name":"PropVariantGetInformation","features":[35,62,1,63,42]},{"name":"PropertiesListCopy","features":[62,1,60]},{"name":"PropertiesListGetFillableCount","features":[62]},{"name":"ProximityType_Force_Dword","features":[62]},{"name":"ProximityType_HumanProximity","features":[62]},{"name":"ProximityType_ObjectProximity","features":[62]},{"name":"Proximity_Sensor_Human_Engagement_Capable","features":[62]},{"name":"Proximity_Sensor_Human_Presence_Capable","features":[62]},{"name":"Proximity_Sensor_Supported_Capabilities","features":[62]},{"name":"QUATERNION","features":[62]},{"name":"SENSOR_CATEGORY_ALL","features":[62]},{"name":"SENSOR_CATEGORY_BIOMETRIC","features":[62]},{"name":"SENSOR_CATEGORY_ELECTRICAL","features":[62]},{"name":"SENSOR_CATEGORY_ENVIRONMENTAL","features":[62]},{"name":"SENSOR_CATEGORY_LIGHT","features":[62]},{"name":"SENSOR_CATEGORY_LOCATION","features":[62]},{"name":"SENSOR_CATEGORY_MECHANICAL","features":[62]},{"name":"SENSOR_CATEGORY_MOTION","features":[62]},{"name":"SENSOR_CATEGORY_ORIENTATION","features":[62]},{"name":"SENSOR_CATEGORY_OTHER","features":[62]},{"name":"SENSOR_CATEGORY_SCANNER","features":[62]},{"name":"SENSOR_CATEGORY_UNSUPPORTED","features":[62]},{"name":"SENSOR_COLLECTION_LIST","features":[62,1,63,42,60]},{"name":"SENSOR_CONNECTION_TYPES","features":[62]},{"name":"SENSOR_CONNECTION_TYPE_PC_ATTACHED","features":[62]},{"name":"SENSOR_CONNECTION_TYPE_PC_EXTERNAL","features":[62]},{"name":"SENSOR_CONNECTION_TYPE_PC_INTEGRATED","features":[62]},{"name":"SENSOR_DATA_TYPE_ABSOLUTE_PRESSURE_PASCAL","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_X_G","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Y_G","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Z_G","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ADDRESS1","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ADDRESS2","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ANTENNA_SEALEVEL_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_ERROR_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_ERROR_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_X_DEGREES_PER_SECOND_SQUARED","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Y_DEGREES_PER_SECOND_SQUARED","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Z_DEGREES_PER_SECOND_SQUARED","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_X_DEGREES_PER_SECOND","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Y_DEGREES_PER_SECOND","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Z_DEGREES_PER_SECOND","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ATMOSPHERIC_PRESSURE_BAR","features":[62,60]},{"name":"SENSOR_DATA_TYPE_BIOMETRIC_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_ARRAY_STATES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_STATE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CAPACITANCE_FARAD","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CITY","features":[62,60]},{"name":"SENSOR_DATA_TYPE_COMMON_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_COUNTRY_REGION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CURRENT_AMPS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_BOOLEAN_ARRAY","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_USAGE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE1","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE10","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE11","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE12","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE13","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE14","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE15","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE16","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE17","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE18","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE19","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE2","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE20","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE21","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE22","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE23","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE24","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE25","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE26","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE27","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE28","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE3","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE4","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE5","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE6","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE7","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE8","features":[62,60]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE9","features":[62,60]},{"name":"SENSOR_DATA_TYPE_DGPS_DATA_AGE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_DIFFERENTIAL_REFERENCE_STATION_ID","features":[62,60]},{"name":"SENSOR_DATA_TYPE_DISTANCE_X_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Y_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Z_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_FREQUENCY_HERTZ","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_PERCENT_OF_RANGE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_POWER_WATTS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ENVIRONMENTAL_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_ERROR_RADIUS_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_FIX_QUALITY","features":[62,60]},{"name":"SENSOR_DATA_TYPE_FIX_TYPE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_FORCE_NEWTONS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_GAUGE_PRESSURE_PASCAL","features":[62,60]},{"name":"SENSOR_DATA_TYPE_GEOIDAL_SEPARATION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_GPS_OPERATION_MODE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_GPS_SELECTION_MODE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_GPS_STATUS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_GUID_MECHANICAL_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_HORIZONAL_DILUTION_OF_PRECISION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_HUMAN_PRESENCE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_HUMAN_PROXIMITY_METERS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_INDUCTANCE_HENRY","features":[62,60]},{"name":"SENSOR_DATA_TYPE_LATITUDE_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_LIGHT_CHROMACITY","features":[62,60]},{"name":"SENSOR_DATA_TYPE_LIGHT_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_LIGHT_LEVEL_LUX","features":[62,60]},{"name":"SENSOR_DATA_TYPE_LIGHT_TEMPERATURE_KELVIN","features":[62,60]},{"name":"SENSOR_DATA_TYPE_LOCATION_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_LOCATION_SOURCE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_LONGITUDE_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_X_MILLIGAUSS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Y_MILLIGAUSS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Z_MILLIGAUSS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_MAGNETIC_NORTH_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_TRUE_NORTH_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_MAGNETIC_NORTH_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_TRUE_NORTH_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_X_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Y_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Z_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_VARIATION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MAGNETOMETER_ACCURACY","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MOTION_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_MOTION_STATE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_MULTIVALUE_SWITCH_STATE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_NMEA_SENTENCE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ORIENTATION_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_POSITION_DILUTION_OF_PRECISION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_POSTALCODE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_QUADRANT_ANGLE_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_QUATERNION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_RELATIVE_HUMIDITY_PERCENT","features":[62,60]},{"name":"SENSOR_DATA_TYPE_RESISTANCE_OHMS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_RFID_TAG_40_BIT","features":[62,60]},{"name":"SENSOR_DATA_TYPE_ROTATION_MATRIX","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_AZIMUTH","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ELEVATION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ID","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_PRNS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_STN_RATIO","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_COUNT","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS_AND_CONSTELLATIONS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SCANNER_GUID","features":[62]},{"name":"SENSOR_DATA_TYPE_SIMPLE_DEVICE_ORIENTATION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SPEED_KNOTS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_SPEED_METERS_PER_SECOND","features":[62,60]},{"name":"SENSOR_DATA_TYPE_STATE_PROVINCE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_STRAIN","features":[62,60]},{"name":"SENSOR_DATA_TYPE_TEMPERATURE_CELSIUS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_TILT_X_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_TILT_Y_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_TILT_Z_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_TIMESTAMP","features":[62,60]},{"name":"SENSOR_DATA_TYPE_TOUCH_STATE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_TRUE_HEADING_DEGREES","features":[62,60]},{"name":"SENSOR_DATA_TYPE_VERTICAL_DILUTION_OF_PRECISION","features":[62,60]},{"name":"SENSOR_DATA_TYPE_VOLTAGE_VOLTS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_WEIGHT_KILOGRAMS","features":[62,60]},{"name":"SENSOR_DATA_TYPE_WIND_DIRECTION_DEGREES_ANTICLOCKWISE","features":[62,60]},{"name":"SENSOR_DATA_TYPE_WIND_SPEED_METERS_PER_SECOND","features":[62,60]},{"name":"SENSOR_ERROR_PARAMETER_COMMON_GUID","features":[62]},{"name":"SENSOR_EVENT_ACCELEROMETER_SHAKE","features":[62]},{"name":"SENSOR_EVENT_DATA_UPDATED","features":[62]},{"name":"SENSOR_EVENT_PARAMETER_COMMON_GUID","features":[62]},{"name":"SENSOR_EVENT_PARAMETER_EVENT_ID","features":[62,60]},{"name":"SENSOR_EVENT_PARAMETER_STATE","features":[62,60]},{"name":"SENSOR_EVENT_PROPERTY_CHANGED","features":[62]},{"name":"SENSOR_EVENT_STATE_CHANGED","features":[62]},{"name":"SENSOR_PROPERTY_ACCURACY","features":[62,60]},{"name":"SENSOR_PROPERTY_CHANGE_SENSITIVITY","features":[62,60]},{"name":"SENSOR_PROPERTY_CLEAR_ASSISTANCE_DATA","features":[62,60]},{"name":"SENSOR_PROPERTY_COMMON_GUID","features":[62]},{"name":"SENSOR_PROPERTY_CONNECTION_TYPE","features":[62,60]},{"name":"SENSOR_PROPERTY_CURRENT_REPORT_INTERVAL","features":[62,60]},{"name":"SENSOR_PROPERTY_DESCRIPTION","features":[62,60]},{"name":"SENSOR_PROPERTY_DEVICE_PATH","features":[62,60]},{"name":"SENSOR_PROPERTY_FRIENDLY_NAME","features":[62,60]},{"name":"SENSOR_PROPERTY_HID_USAGE","features":[62,60]},{"name":"SENSOR_PROPERTY_LIGHT_RESPONSE_CURVE","features":[62,60]},{"name":"SENSOR_PROPERTY_LIST","features":[62,60]},{"name":"SENSOR_PROPERTY_LIST_HEADER_SIZE","features":[62]},{"name":"SENSOR_PROPERTY_LOCATION_DESIRED_ACCURACY","features":[62,60]},{"name":"SENSOR_PROPERTY_MANUFACTURER","features":[62,60]},{"name":"SENSOR_PROPERTY_MIN_REPORT_INTERVAL","features":[62,60]},{"name":"SENSOR_PROPERTY_MODEL","features":[62,60]},{"name":"SENSOR_PROPERTY_PERSISTENT_UNIQUE_ID","features":[62,60]},{"name":"SENSOR_PROPERTY_RADIO_STATE","features":[62,60]},{"name":"SENSOR_PROPERTY_RADIO_STATE_PREVIOUS","features":[62,60]},{"name":"SENSOR_PROPERTY_RANGE_MAXIMUM","features":[62,60]},{"name":"SENSOR_PROPERTY_RANGE_MINIMUM","features":[62,60]},{"name":"SENSOR_PROPERTY_RESOLUTION","features":[62,60]},{"name":"SENSOR_PROPERTY_SERIAL_NUMBER","features":[62,60]},{"name":"SENSOR_PROPERTY_STATE","features":[62,60]},{"name":"SENSOR_PROPERTY_TEST_GUID","features":[62]},{"name":"SENSOR_PROPERTY_TURN_ON_OFF_NMEA","features":[62,60]},{"name":"SENSOR_PROPERTY_TYPE","features":[62,60]},{"name":"SENSOR_STATE","features":[62]},{"name":"SENSOR_STATE_ACCESS_DENIED","features":[62]},{"name":"SENSOR_STATE_ERROR","features":[62]},{"name":"SENSOR_STATE_INITIALIZING","features":[62]},{"name":"SENSOR_STATE_MAX","features":[62]},{"name":"SENSOR_STATE_MIN","features":[62]},{"name":"SENSOR_STATE_NOT_AVAILABLE","features":[62]},{"name":"SENSOR_STATE_NO_DATA","features":[62]},{"name":"SENSOR_STATE_READY","features":[62]},{"name":"SENSOR_TYPE_ACCELEROMETER_1D","features":[62]},{"name":"SENSOR_TYPE_ACCELEROMETER_2D","features":[62]},{"name":"SENSOR_TYPE_ACCELEROMETER_3D","features":[62]},{"name":"SENSOR_TYPE_AGGREGATED_DEVICE_ORIENTATION","features":[62]},{"name":"SENSOR_TYPE_AGGREGATED_QUADRANT_ORIENTATION","features":[62]},{"name":"SENSOR_TYPE_AGGREGATED_SIMPLE_DEVICE_ORIENTATION","features":[62]},{"name":"SENSOR_TYPE_AMBIENT_LIGHT","features":[62]},{"name":"SENSOR_TYPE_BARCODE_SCANNER","features":[62]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH","features":[62]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH_ARRAY","features":[62]},{"name":"SENSOR_TYPE_CAPACITANCE","features":[62]},{"name":"SENSOR_TYPE_COMPASS_1D","features":[62]},{"name":"SENSOR_TYPE_COMPASS_2D","features":[62]},{"name":"SENSOR_TYPE_COMPASS_3D","features":[62]},{"name":"SENSOR_TYPE_CURRENT","features":[62]},{"name":"SENSOR_TYPE_CUSTOM","features":[62]},{"name":"SENSOR_TYPE_DISTANCE_1D","features":[62]},{"name":"SENSOR_TYPE_DISTANCE_2D","features":[62]},{"name":"SENSOR_TYPE_DISTANCE_3D","features":[62]},{"name":"SENSOR_TYPE_ELECTRICAL_POWER","features":[62]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_ATMOSPHERIC_PRESSURE","features":[62]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_HUMIDITY","features":[62]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_TEMPERATURE","features":[62]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_DIRECTION","features":[62]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_SPEED","features":[62]},{"name":"SENSOR_TYPE_FORCE","features":[62]},{"name":"SENSOR_TYPE_FREQUENCY","features":[62]},{"name":"SENSOR_TYPE_GYROMETER_1D","features":[62]},{"name":"SENSOR_TYPE_GYROMETER_2D","features":[62]},{"name":"SENSOR_TYPE_GYROMETER_3D","features":[62]},{"name":"SENSOR_TYPE_HUMAN_PRESENCE","features":[62]},{"name":"SENSOR_TYPE_HUMAN_PROXIMITY","features":[62]},{"name":"SENSOR_TYPE_INCLINOMETER_1D","features":[62]},{"name":"SENSOR_TYPE_INCLINOMETER_2D","features":[62]},{"name":"SENSOR_TYPE_INCLINOMETER_3D","features":[62]},{"name":"SENSOR_TYPE_INDUCTANCE","features":[62]},{"name":"SENSOR_TYPE_LOCATION_BROADCAST","features":[62]},{"name":"SENSOR_TYPE_LOCATION_DEAD_RECKONING","features":[62]},{"name":"SENSOR_TYPE_LOCATION_GPS","features":[62]},{"name":"SENSOR_TYPE_LOCATION_LOOKUP","features":[62]},{"name":"SENSOR_TYPE_LOCATION_OTHER","features":[62]},{"name":"SENSOR_TYPE_LOCATION_STATIC","features":[62]},{"name":"SENSOR_TYPE_LOCATION_TRIANGULATION","features":[62]},{"name":"SENSOR_TYPE_MOTION_DETECTOR","features":[62]},{"name":"SENSOR_TYPE_MULTIVALUE_SWITCH","features":[62]},{"name":"SENSOR_TYPE_POTENTIOMETER","features":[62]},{"name":"SENSOR_TYPE_PRESSURE","features":[62]},{"name":"SENSOR_TYPE_RESISTANCE","features":[62]},{"name":"SENSOR_TYPE_RFID_SCANNER","features":[62]},{"name":"SENSOR_TYPE_SCALE","features":[62]},{"name":"SENSOR_TYPE_SPEEDOMETER","features":[62]},{"name":"SENSOR_TYPE_STRAIN","features":[62]},{"name":"SENSOR_TYPE_TOUCH","features":[62]},{"name":"SENSOR_TYPE_UNKNOWN","features":[62]},{"name":"SENSOR_TYPE_VOLTAGE","features":[62]},{"name":"SENSOR_VALUE_PAIR","features":[62,1,63,42,60]},{"name":"SIMPLE_DEVICE_ORIENTATION","features":[62]},{"name":"SIMPLE_DEVICE_ORIENTATION_NOT_ROTATED","features":[62]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_180","features":[62]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_270","features":[62]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_90","features":[62]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_DOWN","features":[62]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_UP","features":[62]},{"name":"Sensor","features":[62]},{"name":"SensorCollection","features":[62]},{"name":"SensorCollectionGetAt","features":[62,1,63,42,60]},{"name":"SensorConnectionType","features":[62]},{"name":"SensorConnectionType_Attached","features":[62]},{"name":"SensorConnectionType_External","features":[62]},{"name":"SensorConnectionType_Integrated","features":[62]},{"name":"SensorDataReport","features":[62]},{"name":"SensorManager","features":[62]},{"name":"SensorState","features":[62]},{"name":"SensorState_Active","features":[62]},{"name":"SensorState_Error","features":[62]},{"name":"SensorState_Idle","features":[62]},{"name":"SensorState_Initializing","features":[62]},{"name":"SerializationBufferAllocate","features":[62,1]},{"name":"SerializationBufferFree","features":[62]},{"name":"SimpleDeviceOrientation","features":[62]},{"name":"SimpleDeviceOrientation_Facedown","features":[62]},{"name":"SimpleDeviceOrientation_Faceup","features":[62]},{"name":"SimpleDeviceOrientation_NotRotated","features":[62]},{"name":"SimpleDeviceOrientation_Rotated180DegreesCounterclockwise","features":[62]},{"name":"SimpleDeviceOrientation_Rotated270DegreesCounterclockwise","features":[62]},{"name":"SimpleDeviceOrientation_Rotated90DegreesCounterclockwise","features":[62]},{"name":"VEC3D","features":[62]}],"385":[{"name":"CDB_REPORT_BITS","features":[64]},{"name":"CDB_REPORT_BYTES","features":[64]},{"name":"COMDB_MAX_PORTS_ARBITRATED","features":[64]},{"name":"COMDB_MIN_PORTS_ARBITRATED","features":[64]},{"name":"ComDBClaimNextFreePort","features":[64]},{"name":"ComDBClaimPort","features":[64,1]},{"name":"ComDBClose","features":[64]},{"name":"ComDBGetCurrentPortUsage","features":[64]},{"name":"ComDBOpen","features":[64]},{"name":"ComDBReleasePort","features":[64]},{"name":"ComDBResizeDatabase","features":[64]},{"name":"DEVPKEY_DeviceInterface_Serial_PortName","features":[35,64]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbProductId","features":[35,64]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbVendorId","features":[35,64]},{"name":"EVEN_PARITY","features":[64]},{"name":"HCOMDB","features":[64]},{"name":"IOCTL_INTERNAL_SERENUM_REMOVE_SELF","features":[64]},{"name":"IOCTL_SERIAL_APPLY_DEFAULT_CONFIGURATION","features":[64]},{"name":"IOCTL_SERIAL_CLEAR_STATS","features":[64]},{"name":"IOCTL_SERIAL_CLR_DTR","features":[64]},{"name":"IOCTL_SERIAL_CLR_RTS","features":[64]},{"name":"IOCTL_SERIAL_CONFIG_SIZE","features":[64]},{"name":"IOCTL_SERIAL_GET_BAUD_RATE","features":[64]},{"name":"IOCTL_SERIAL_GET_CHARS","features":[64]},{"name":"IOCTL_SERIAL_GET_COMMCONFIG","features":[64]},{"name":"IOCTL_SERIAL_GET_COMMSTATUS","features":[64]},{"name":"IOCTL_SERIAL_GET_DTRRTS","features":[64]},{"name":"IOCTL_SERIAL_GET_HANDFLOW","features":[64]},{"name":"IOCTL_SERIAL_GET_LINE_CONTROL","features":[64]},{"name":"IOCTL_SERIAL_GET_MODEMSTATUS","features":[64]},{"name":"IOCTL_SERIAL_GET_MODEM_CONTROL","features":[64]},{"name":"IOCTL_SERIAL_GET_PROPERTIES","features":[64]},{"name":"IOCTL_SERIAL_GET_STATS","features":[64]},{"name":"IOCTL_SERIAL_GET_TIMEOUTS","features":[64]},{"name":"IOCTL_SERIAL_GET_WAIT_MASK","features":[64]},{"name":"IOCTL_SERIAL_IMMEDIATE_CHAR","features":[64]},{"name":"IOCTL_SERIAL_INTERNAL_BASIC_SETTINGS","features":[64]},{"name":"IOCTL_SERIAL_INTERNAL_CANCEL_WAIT_WAKE","features":[64]},{"name":"IOCTL_SERIAL_INTERNAL_DO_WAIT_WAKE","features":[64]},{"name":"IOCTL_SERIAL_INTERNAL_RESTORE_SETTINGS","features":[64]},{"name":"IOCTL_SERIAL_PURGE","features":[64]},{"name":"IOCTL_SERIAL_RESET_DEVICE","features":[64]},{"name":"IOCTL_SERIAL_SET_BAUD_RATE","features":[64]},{"name":"IOCTL_SERIAL_SET_BREAK_OFF","features":[64]},{"name":"IOCTL_SERIAL_SET_BREAK_ON","features":[64]},{"name":"IOCTL_SERIAL_SET_CHARS","features":[64]},{"name":"IOCTL_SERIAL_SET_COMMCONFIG","features":[64]},{"name":"IOCTL_SERIAL_SET_DTR","features":[64]},{"name":"IOCTL_SERIAL_SET_FIFO_CONTROL","features":[64]},{"name":"IOCTL_SERIAL_SET_HANDFLOW","features":[64]},{"name":"IOCTL_SERIAL_SET_INTERVAL_TIMER_RESOLUTION","features":[64]},{"name":"IOCTL_SERIAL_SET_LINE_CONTROL","features":[64]},{"name":"IOCTL_SERIAL_SET_MODEM_CONTROL","features":[64]},{"name":"IOCTL_SERIAL_SET_QUEUE_SIZE","features":[64]},{"name":"IOCTL_SERIAL_SET_RTS","features":[64]},{"name":"IOCTL_SERIAL_SET_TIMEOUTS","features":[64]},{"name":"IOCTL_SERIAL_SET_WAIT_MASK","features":[64]},{"name":"IOCTL_SERIAL_SET_XOFF","features":[64]},{"name":"IOCTL_SERIAL_SET_XON","features":[64]},{"name":"IOCTL_SERIAL_WAIT_ON_MASK","features":[64]},{"name":"IOCTL_SERIAL_XOFF_COUNTER","features":[64]},{"name":"MARK_PARITY","features":[64]},{"name":"NO_PARITY","features":[64]},{"name":"ODD_PARITY","features":[64]},{"name":"PSERENUM_READPORT","features":[64]},{"name":"PSERENUM_WRITEPORT","features":[64]},{"name":"SERENUM_PORTION","features":[64]},{"name":"SERENUM_PORT_DESC","features":[64]},{"name":"SERENUM_PORT_PARAMETERS","features":[64]},{"name":"SERIALCONFIG","features":[64]},{"name":"SERIALPERF_STATS","features":[64]},{"name":"SERIAL_BASIC_SETTINGS","features":[64]},{"name":"SERIAL_BAUD_RATE","features":[64]},{"name":"SERIAL_CHARS","features":[64]},{"name":"SERIAL_COMMPROP","features":[64]},{"name":"SERIAL_EV_BREAK","features":[64]},{"name":"SERIAL_EV_CTS","features":[64]},{"name":"SERIAL_EV_DSR","features":[64]},{"name":"SERIAL_EV_ERR","features":[64]},{"name":"SERIAL_EV_EVENT1","features":[64]},{"name":"SERIAL_EV_EVENT2","features":[64]},{"name":"SERIAL_EV_PERR","features":[64]},{"name":"SERIAL_EV_RING","features":[64]},{"name":"SERIAL_EV_RLSD","features":[64]},{"name":"SERIAL_EV_RX80FULL","features":[64]},{"name":"SERIAL_EV_RXCHAR","features":[64]},{"name":"SERIAL_EV_RXFLAG","features":[64]},{"name":"SERIAL_EV_TXEMPTY","features":[64]},{"name":"SERIAL_HANDFLOW","features":[64]},{"name":"SERIAL_LINE_CONTROL","features":[64]},{"name":"SERIAL_LSRMST_ESCAPE","features":[64]},{"name":"SERIAL_LSRMST_LSR_DATA","features":[64]},{"name":"SERIAL_LSRMST_LSR_NODATA","features":[64]},{"name":"SERIAL_LSRMST_MST","features":[64]},{"name":"SERIAL_PURGE_RXABORT","features":[64]},{"name":"SERIAL_PURGE_RXCLEAR","features":[64]},{"name":"SERIAL_PURGE_TXABORT","features":[64]},{"name":"SERIAL_PURGE_TXCLEAR","features":[64]},{"name":"SERIAL_QUEUE_SIZE","features":[64]},{"name":"SERIAL_STATUS","features":[64,1]},{"name":"SERIAL_TIMEOUTS","features":[64]},{"name":"SERIAL_XOFF_COUNTER","features":[64]},{"name":"SPACE_PARITY","features":[64]},{"name":"STOP_BITS_1_5","features":[64]},{"name":"STOP_BITS_2","features":[64]},{"name":"STOP_BIT_1","features":[64]},{"name":"SerenumFirstHalf","features":[64]},{"name":"SerenumSecondHalf","features":[64]},{"name":"SerenumWhole","features":[64]}],"386":[{"name":"ACDGE_GROUP_REMOVED","features":[65]},{"name":"ACDGE_NEW_GROUP","features":[65]},{"name":"ACDGROUP_EVENT","features":[65]},{"name":"ACDQE_NEW_QUEUE","features":[65]},{"name":"ACDQE_QUEUE_REMOVED","features":[65]},{"name":"ACDQUEUE_EVENT","features":[65]},{"name":"ACS_ADDRESSDEVICESPECIFIC","features":[65]},{"name":"ACS_LINEDEVICESPECIFIC","features":[65]},{"name":"ACS_PERMANENTDEVICEGUID","features":[65]},{"name":"ACS_PROTOCOL","features":[65]},{"name":"ACS_PROVIDERSPECIFIC","features":[65]},{"name":"ACS_SWITCHSPECIFIC","features":[65]},{"name":"AC_ADDRESSCAPFLAGS","features":[65]},{"name":"AC_ADDRESSFEATURES","features":[65]},{"name":"AC_ADDRESSID","features":[65]},{"name":"AC_ADDRESSTYPES","features":[65]},{"name":"AC_ANSWERMODES","features":[65]},{"name":"AC_BEARERMODES","features":[65]},{"name":"AC_CALLCOMPLETIONCONDITIONS","features":[65]},{"name":"AC_CALLCOMPLETIONMODES","features":[65]},{"name":"AC_CALLEDIDSUPPORT","features":[65]},{"name":"AC_CALLERIDSUPPORT","features":[65]},{"name":"AC_CALLFEATURES1","features":[65]},{"name":"AC_CALLFEATURES2","features":[65]},{"name":"AC_CONNECTEDIDSUPPORT","features":[65]},{"name":"AC_DEVCAPFLAGS","features":[65]},{"name":"AC_FORWARDMODES","features":[65]},{"name":"AC_GATHERDIGITSMAXTIMEOUT","features":[65]},{"name":"AC_GATHERDIGITSMINTIMEOUT","features":[65]},{"name":"AC_GENERATEDIGITDEFAULTDURATION","features":[65]},{"name":"AC_GENERATEDIGITMAXDURATION","features":[65]},{"name":"AC_GENERATEDIGITMINDURATION","features":[65]},{"name":"AC_GENERATEDIGITSUPPORT","features":[65]},{"name":"AC_GENERATETONEMAXNUMFREQ","features":[65]},{"name":"AC_GENERATETONEMODES","features":[65]},{"name":"AC_LINEFEATURES","features":[65]},{"name":"AC_LINEID","features":[65]},{"name":"AC_MAXACTIVECALLS","features":[65]},{"name":"AC_MAXCALLCOMPLETIONS","features":[65]},{"name":"AC_MAXCALLDATASIZE","features":[65]},{"name":"AC_MAXFORWARDENTRIES","features":[65]},{"name":"AC_MAXFWDNUMRINGS","features":[65]},{"name":"AC_MAXNUMCONFERENCE","features":[65]},{"name":"AC_MAXNUMTRANSCONF","features":[65]},{"name":"AC_MAXONHOLDCALLS","features":[65]},{"name":"AC_MAXONHOLDPENDINGCALLS","features":[65]},{"name":"AC_MAXSPECIFICENTRIES","features":[65]},{"name":"AC_MINFWDNUMRINGS","features":[65]},{"name":"AC_MONITORDIGITSUPPORT","features":[65]},{"name":"AC_MONITORTONEMAXNUMENTRIES","features":[65]},{"name":"AC_MONITORTONEMAXNUMFREQ","features":[65]},{"name":"AC_PARKSUPPORT","features":[65]},{"name":"AC_PERMANENTDEVICEID","features":[65]},{"name":"AC_PREDICTIVEAUTOTRANSFERSTATES","features":[65]},{"name":"AC_REDIRECTINGIDSUPPORT","features":[65]},{"name":"AC_REDIRECTIONIDSUPPORT","features":[65]},{"name":"AC_REMOVEFROMCONFCAPS","features":[65]},{"name":"AC_REMOVEFROMCONFSTATE","features":[65]},{"name":"AC_SETTABLEDEVSTATUS","features":[65]},{"name":"AC_TRANSFERMODES","features":[65]},{"name":"ADDRALIAS","features":[65]},{"name":"ADDRESS_CAPABILITY","features":[65]},{"name":"ADDRESS_CAPABILITY_STRING","features":[65]},{"name":"ADDRESS_EVENT","features":[65]},{"name":"ADDRESS_STATE","features":[65]},{"name":"ADDRESS_TERMINAL_AVAILABLE","features":[65]},{"name":"ADDRESS_TERMINAL_UNAVAILABLE","features":[65]},{"name":"AE_BUSY_ACD","features":[65]},{"name":"AE_BUSY_INCOMING","features":[65]},{"name":"AE_BUSY_OUTGOING","features":[65]},{"name":"AE_CAPSCHANGE","features":[65]},{"name":"AE_CONFIGCHANGE","features":[65]},{"name":"AE_FORWARD","features":[65]},{"name":"AE_LASTITEM","features":[65]},{"name":"AE_MSGWAITOFF","features":[65]},{"name":"AE_MSGWAITON","features":[65]},{"name":"AE_NEWTERMINAL","features":[65]},{"name":"AE_NOT_READY","features":[65]},{"name":"AE_READY","features":[65]},{"name":"AE_REMOVETERMINAL","features":[65]},{"name":"AE_RINGING","features":[65]},{"name":"AE_STATE","features":[65]},{"name":"AE_UNKNOWN","features":[65]},{"name":"AGENTHANDLER_EVENT","features":[65]},{"name":"AGENT_EVENT","features":[65]},{"name":"AGENT_SESSION_EVENT","features":[65]},{"name":"AGENT_SESSION_STATE","features":[65]},{"name":"AGENT_STATE","features":[65]},{"name":"AHE_AGENTHANDLER_REMOVED","features":[65]},{"name":"AHE_NEW_AGENTHANDLER","features":[65]},{"name":"ASE_BUSY","features":[65]},{"name":"ASE_END","features":[65]},{"name":"ASE_NEW_SESSION","features":[65]},{"name":"ASE_NOT_READY","features":[65]},{"name":"ASE_READY","features":[65]},{"name":"ASE_WRAPUP","features":[65]},{"name":"ASST_BUSY_ON_CALL","features":[65]},{"name":"ASST_BUSY_WRAPUP","features":[65]},{"name":"ASST_NOT_READY","features":[65]},{"name":"ASST_READY","features":[65]},{"name":"ASST_SESSION_ENDED","features":[65]},{"name":"ASYNC_COMPLETION","features":[65]},{"name":"AS_BUSY_ACD","features":[65]},{"name":"AS_BUSY_INCOMING","features":[65]},{"name":"AS_BUSY_OUTGOING","features":[65]},{"name":"AS_INSERVICE","features":[65]},{"name":"AS_NOT_READY","features":[65]},{"name":"AS_OUTOFSERVICE","features":[65]},{"name":"AS_READY","features":[65]},{"name":"AS_UNKNOWN","features":[65]},{"name":"CALLHUB_EVENT","features":[65]},{"name":"CALLHUB_STATE","features":[65]},{"name":"CALLINFOCHANGE_CAUSE","features":[65]},{"name":"CALLINFO_BUFFER","features":[65]},{"name":"CALLINFO_LONG","features":[65]},{"name":"CALLINFO_STRING","features":[65]},{"name":"CALL_CAUSE_BAD_DEVICE","features":[65]},{"name":"CALL_CAUSE_CONNECT_FAIL","features":[65]},{"name":"CALL_CAUSE_LOCAL_REQUEST","features":[65]},{"name":"CALL_CAUSE_MEDIA_RECOVERED","features":[65]},{"name":"CALL_CAUSE_MEDIA_TIMEOUT","features":[65]},{"name":"CALL_CAUSE_QUALITY_OF_SERVICE","features":[65]},{"name":"CALL_CAUSE_REMOTE_REQUEST","features":[65]},{"name":"CALL_CAUSE_UNKNOWN","features":[65]},{"name":"CALL_MEDIA_EVENT","features":[65]},{"name":"CALL_MEDIA_EVENT_CAUSE","features":[65]},{"name":"CALL_NEW_STREAM","features":[65]},{"name":"CALL_NOTIFICATION_EVENT","features":[65]},{"name":"CALL_PRIVILEGE","features":[65]},{"name":"CALL_STATE","features":[65]},{"name":"CALL_STATE_EVENT_CAUSE","features":[65]},{"name":"CALL_STREAM_ACTIVE","features":[65]},{"name":"CALL_STREAM_FAIL","features":[65]},{"name":"CALL_STREAM_INACTIVE","features":[65]},{"name":"CALL_STREAM_NOT_USED","features":[65]},{"name":"CALL_TERMINAL_FAIL","features":[65]},{"name":"CEC_DISCONNECT_BADADDRESS","features":[65]},{"name":"CEC_DISCONNECT_BLOCKED","features":[65]},{"name":"CEC_DISCONNECT_BUSY","features":[65]},{"name":"CEC_DISCONNECT_CANCELLED","features":[65]},{"name":"CEC_DISCONNECT_FAILED","features":[65]},{"name":"CEC_DISCONNECT_NOANSWER","features":[65]},{"name":"CEC_DISCONNECT_NORMAL","features":[65]},{"name":"CEC_DISCONNECT_REJECTED","features":[65]},{"name":"CEC_NONE","features":[65]},{"name":"CHE_CALLHUBIDLE","features":[65]},{"name":"CHE_CALLHUBNEW","features":[65]},{"name":"CHE_CALLJOIN","features":[65]},{"name":"CHE_CALLLEAVE","features":[65]},{"name":"CHE_LASTITEM","features":[65]},{"name":"CHS_ACTIVE","features":[65]},{"name":"CHS_IDLE","features":[65]},{"name":"CIB_CALLDATABUFFER","features":[65]},{"name":"CIB_CHARGINGINFOBUFFER","features":[65]},{"name":"CIB_DEVSPECIFICBUFFER","features":[65]},{"name":"CIB_HIGHLEVELCOMPATIBILITYBUFFER","features":[65]},{"name":"CIB_LOWLEVELCOMPATIBILITYBUFFER","features":[65]},{"name":"CIB_USERUSERINFO","features":[65]},{"name":"CIC_APPSPECIFIC","features":[65]},{"name":"CIC_BEARERMODE","features":[65]},{"name":"CIC_CALLDATA","features":[65]},{"name":"CIC_CALLEDID","features":[65]},{"name":"CIC_CALLERID","features":[65]},{"name":"CIC_CALLID","features":[65]},{"name":"CIC_CHARGINGINFO","features":[65]},{"name":"CIC_COMPLETIONID","features":[65]},{"name":"CIC_CONNECTEDID","features":[65]},{"name":"CIC_DEVSPECIFIC","features":[65]},{"name":"CIC_HIGHLEVELCOMP","features":[65]},{"name":"CIC_LASTITEM","features":[65]},{"name":"CIC_LOWLEVELCOMP","features":[65]},{"name":"CIC_MEDIATYPE","features":[65]},{"name":"CIC_NUMMONITORS","features":[65]},{"name":"CIC_NUMOWNERDECR","features":[65]},{"name":"CIC_NUMOWNERINCR","features":[65]},{"name":"CIC_ORIGIN","features":[65]},{"name":"CIC_OTHER","features":[65]},{"name":"CIC_PRIVILEGE","features":[65]},{"name":"CIC_RATE","features":[65]},{"name":"CIC_REASON","features":[65]},{"name":"CIC_REDIRECTINGID","features":[65]},{"name":"CIC_REDIRECTIONID","features":[65]},{"name":"CIC_RELATEDCALLID","features":[65]},{"name":"CIC_TREATMENT","features":[65]},{"name":"CIC_TRUNK","features":[65]},{"name":"CIC_USERUSERINFO","features":[65]},{"name":"CIL_APPSPECIFIC","features":[65]},{"name":"CIL_BEARERMODE","features":[65]},{"name":"CIL_CALLEDIDADDRESSTYPE","features":[65]},{"name":"CIL_CALLERIDADDRESSTYPE","features":[65]},{"name":"CIL_CALLID","features":[65]},{"name":"CIL_CALLPARAMSFLAGS","features":[65]},{"name":"CIL_CALLTREATMENT","features":[65]},{"name":"CIL_COMPLETIONID","features":[65]},{"name":"CIL_CONNECTEDIDADDRESSTYPE","features":[65]},{"name":"CIL_COUNTRYCODE","features":[65]},{"name":"CIL_GENERATEDIGITDURATION","features":[65]},{"name":"CIL_MAXRATE","features":[65]},{"name":"CIL_MEDIATYPESAVAILABLE","features":[65]},{"name":"CIL_MINRATE","features":[65]},{"name":"CIL_MONITORDIGITMODES","features":[65]},{"name":"CIL_MONITORMEDIAMODES","features":[65]},{"name":"CIL_NUMBEROFMONITORS","features":[65]},{"name":"CIL_NUMBEROFOWNERS","features":[65]},{"name":"CIL_ORIGIN","features":[65]},{"name":"CIL_RATE","features":[65]},{"name":"CIL_REASON","features":[65]},{"name":"CIL_REDIRECTINGIDADDRESSTYPE","features":[65]},{"name":"CIL_REDIRECTIONIDADDRESSTYPE","features":[65]},{"name":"CIL_RELATEDCALLID","features":[65]},{"name":"CIL_TRUNK","features":[65]},{"name":"CIS_CALLEDIDNAME","features":[65]},{"name":"CIS_CALLEDIDNUMBER","features":[65]},{"name":"CIS_CALLEDPARTYFRIENDLYNAME","features":[65]},{"name":"CIS_CALLERIDNAME","features":[65]},{"name":"CIS_CALLERIDNUMBER","features":[65]},{"name":"CIS_CALLINGPARTYID","features":[65]},{"name":"CIS_COMMENT","features":[65]},{"name":"CIS_CONNECTEDIDNAME","features":[65]},{"name":"CIS_CONNECTEDIDNUMBER","features":[65]},{"name":"CIS_DISPLAYABLEADDRESS","features":[65]},{"name":"CIS_REDIRECTINGIDNAME","features":[65]},{"name":"CIS_REDIRECTINGIDNUMBER","features":[65]},{"name":"CIS_REDIRECTIONIDNAME","features":[65]},{"name":"CIS_REDIRECTIONIDNUMBER","features":[65]},{"name":"CMC_BAD_DEVICE","features":[65]},{"name":"CMC_CONNECT_FAIL","features":[65]},{"name":"CMC_LOCAL_REQUEST","features":[65]},{"name":"CMC_MEDIA_RECOVERED","features":[65]},{"name":"CMC_MEDIA_TIMEOUT","features":[65]},{"name":"CMC_QUALITY_OF_SERVICE","features":[65]},{"name":"CMC_REMOTE_REQUEST","features":[65]},{"name":"CMC_UNKNOWN","features":[65]},{"name":"CME_LASTITEM","features":[65]},{"name":"CME_NEW_STREAM","features":[65]},{"name":"CME_STREAM_ACTIVE","features":[65]},{"name":"CME_STREAM_FAIL","features":[65]},{"name":"CME_STREAM_INACTIVE","features":[65]},{"name":"CME_STREAM_NOT_USED","features":[65]},{"name":"CME_TERMINAL_FAIL","features":[65]},{"name":"CNE_LASTITEM","features":[65]},{"name":"CNE_MONITOR","features":[65]},{"name":"CNE_OWNER","features":[65]},{"name":"CP_MONITOR","features":[65]},{"name":"CP_OWNER","features":[65]},{"name":"CS_CONNECTED","features":[65]},{"name":"CS_DISCONNECTED","features":[65]},{"name":"CS_HOLD","features":[65]},{"name":"CS_IDLE","features":[65]},{"name":"CS_INPROGRESS","features":[65]},{"name":"CS_LASTITEM","features":[65]},{"name":"CS_OFFERING","features":[65]},{"name":"CS_QUEUED","features":[65]},{"name":"DC_NOANSWER","features":[65]},{"name":"DC_NORMAL","features":[65]},{"name":"DC_REJECTED","features":[65]},{"name":"DIRECTORY_OBJECT_TYPE","features":[65]},{"name":"DIRECTORY_TYPE","features":[65]},{"name":"DISCONNECT_CODE","features":[65]},{"name":"DISPIDMASK","features":[65]},{"name":"DTR","features":[65]},{"name":"DT_ILS","features":[65]},{"name":"DT_NTDS","features":[65]},{"name":"DispatchMapper","features":[65]},{"name":"FDS_NOTSUPPORTED","features":[65]},{"name":"FDS_SUPPORTED","features":[65]},{"name":"FDS_UNKNOWN","features":[65]},{"name":"FINISH_MODE","features":[65]},{"name":"FM_ASCONFERENCE","features":[65]},{"name":"FM_ASTRANSFER","features":[65]},{"name":"FTEC_END_OF_FILE","features":[65]},{"name":"FTEC_NORMAL","features":[65]},{"name":"FTEC_READ_ERROR","features":[65]},{"name":"FTEC_WRITE_ERROR","features":[65]},{"name":"FT_STATE_EVENT_CAUSE","features":[65]},{"name":"FULLDUPLEX_SUPPORT","features":[65]},{"name":"GETTNEFSTREAMCODEPAGE","features":[65]},{"name":"GetTnefStreamCodepage","features":[65]},{"name":"HDRVCALL","features":[65]},{"name":"HDRVDIALOGINSTANCE","features":[65]},{"name":"HDRVLINE","features":[65]},{"name":"HDRVMSPLINE","features":[65]},{"name":"HDRVPHONE","features":[65]},{"name":"HPROVIDER","features":[65]},{"name":"HTAPICALL","features":[65]},{"name":"HTAPILINE","features":[65]},{"name":"HTAPIPHONE","features":[65]},{"name":"IDISPADDRESS","features":[65]},{"name":"IDISPADDRESSCAPABILITIES","features":[65]},{"name":"IDISPADDRESSTRANSLATION","features":[65]},{"name":"IDISPAGGREGATEDMSPADDRESSOBJ","features":[65]},{"name":"IDISPAGGREGATEDMSPCALLOBJ","features":[65]},{"name":"IDISPAPC","features":[65]},{"name":"IDISPBASICCALLCONTROL","features":[65]},{"name":"IDISPCALLINFO","features":[65]},{"name":"IDISPDIRECTORY","features":[65]},{"name":"IDISPDIROBJCONFERENCE","features":[65]},{"name":"IDISPDIROBJECT","features":[65]},{"name":"IDISPDIROBJUSER","features":[65]},{"name":"IDISPFILETRACK","features":[65]},{"name":"IDISPILSCONFIG","features":[65]},{"name":"IDISPLEGACYADDRESSMEDIACONTROL","features":[65]},{"name":"IDISPLEGACYCALLMEDIACONTROL","features":[65]},{"name":"IDISPMEDIACONTROL","features":[65]},{"name":"IDISPMEDIAPLAYBACK","features":[65]},{"name":"IDISPMEDIARECORD","features":[65]},{"name":"IDISPMEDIASUPPORT","features":[65]},{"name":"IDISPMULTITRACK","features":[65]},{"name":"IDISPPHONE","features":[65]},{"name":"IDISPTAPI","features":[65]},{"name":"IDISPTAPICALLCENTER","features":[65]},{"name":"IEnumACDGroup","features":[65]},{"name":"IEnumAddress","features":[65]},{"name":"IEnumAgent","features":[65]},{"name":"IEnumAgentHandler","features":[65]},{"name":"IEnumAgentSession","features":[65]},{"name":"IEnumBstr","features":[65]},{"name":"IEnumCall","features":[65]},{"name":"IEnumCallHub","features":[65]},{"name":"IEnumCallingCard","features":[65]},{"name":"IEnumDialableAddrs","features":[65]},{"name":"IEnumDirectory","features":[65]},{"name":"IEnumDirectoryObject","features":[65]},{"name":"IEnumLocation","features":[65]},{"name":"IEnumMcastScope","features":[65]},{"name":"IEnumPhone","features":[65]},{"name":"IEnumPluggableSuperclassInfo","features":[65]},{"name":"IEnumPluggableTerminalClassInfo","features":[65]},{"name":"IEnumQueue","features":[65]},{"name":"IEnumStream","features":[65]},{"name":"IEnumSubStream","features":[65]},{"name":"IEnumTerminal","features":[65]},{"name":"IEnumTerminalClass","features":[65]},{"name":"IMcastAddressAllocation","features":[65]},{"name":"IMcastLeaseInfo","features":[65]},{"name":"IMcastScope","features":[65]},{"name":"INITIALIZE_NEGOTIATION","features":[65]},{"name":"INTERFACEMASK","features":[65]},{"name":"ITACDGroup","features":[65]},{"name":"ITACDGroupEvent","features":[65]},{"name":"ITAMMediaFormat","features":[65]},{"name":"ITASRTerminalEvent","features":[65]},{"name":"ITAddress","features":[65]},{"name":"ITAddress2","features":[65]},{"name":"ITAddressCapabilities","features":[65]},{"name":"ITAddressDeviceSpecificEvent","features":[65]},{"name":"ITAddressEvent","features":[65]},{"name":"ITAddressTranslation","features":[65]},{"name":"ITAddressTranslationInfo","features":[65]},{"name":"ITAgent","features":[65]},{"name":"ITAgentEvent","features":[65]},{"name":"ITAgentHandler","features":[65]},{"name":"ITAgentHandlerEvent","features":[65]},{"name":"ITAgentSession","features":[65]},{"name":"ITAgentSessionEvent","features":[65]},{"name":"ITAllocatorProperties","features":[65]},{"name":"ITAutomatedPhoneControl","features":[65]},{"name":"ITBasicAudioTerminal","features":[65]},{"name":"ITBasicCallControl","features":[65]},{"name":"ITBasicCallControl2","features":[65]},{"name":"ITCallHub","features":[65]},{"name":"ITCallHubEvent","features":[65]},{"name":"ITCallInfo","features":[65]},{"name":"ITCallInfo2","features":[65]},{"name":"ITCallInfoChangeEvent","features":[65]},{"name":"ITCallMediaEvent","features":[65]},{"name":"ITCallNotificationEvent","features":[65]},{"name":"ITCallStateEvent","features":[65]},{"name":"ITCallingCard","features":[65]},{"name":"ITCollection","features":[65]},{"name":"ITCollection2","features":[65]},{"name":"ITCustomTone","features":[65]},{"name":"ITDetectTone","features":[65]},{"name":"ITDigitDetectionEvent","features":[65]},{"name":"ITDigitGenerationEvent","features":[65]},{"name":"ITDigitsGatheredEvent","features":[65]},{"name":"ITDirectory","features":[65]},{"name":"ITDirectoryObject","features":[65]},{"name":"ITDirectoryObjectConference","features":[65]},{"name":"ITDirectoryObjectUser","features":[65]},{"name":"ITDispatchMapper","features":[65]},{"name":"ITFileTerminalEvent","features":[65]},{"name":"ITFileTrack","features":[65]},{"name":"ITForwardInformation","features":[65]},{"name":"ITForwardInformation2","features":[65]},{"name":"ITILSConfig","features":[65]},{"name":"ITLegacyAddressMediaControl","features":[65]},{"name":"ITLegacyAddressMediaControl2","features":[65]},{"name":"ITLegacyCallMediaControl","features":[65]},{"name":"ITLegacyCallMediaControl2","features":[65]},{"name":"ITLegacyWaveSupport","features":[65]},{"name":"ITLocationInfo","features":[65]},{"name":"ITMSPAddress","features":[65]},{"name":"ITMediaControl","features":[65]},{"name":"ITMediaPlayback","features":[65]},{"name":"ITMediaRecord","features":[65]},{"name":"ITMediaSupport","features":[65]},{"name":"ITMultiTrackTerminal","features":[65]},{"name":"ITPhone","features":[65]},{"name":"ITPhoneDeviceSpecificEvent","features":[65]},{"name":"ITPhoneEvent","features":[65]},{"name":"ITPluggableTerminalClassInfo","features":[65]},{"name":"ITPluggableTerminalEventSink","features":[65]},{"name":"ITPluggableTerminalEventSinkRegistration","features":[65]},{"name":"ITPluggableTerminalSuperclassInfo","features":[65]},{"name":"ITPrivateEvent","features":[65]},{"name":"ITQOSEvent","features":[65]},{"name":"ITQueue","features":[65]},{"name":"ITQueueEvent","features":[65]},{"name":"ITRendezvous","features":[65]},{"name":"ITRequest","features":[65]},{"name":"ITRequestEvent","features":[65]},{"name":"ITScriptableAudioFormat","features":[65]},{"name":"ITStaticAudioTerminal","features":[65]},{"name":"ITStream","features":[65]},{"name":"ITStreamControl","features":[65]},{"name":"ITSubStream","features":[65]},{"name":"ITSubStreamControl","features":[65]},{"name":"ITTAPI","features":[65]},{"name":"ITTAPI2","features":[65]},{"name":"ITTAPICallCenter","features":[65]},{"name":"ITTAPIDispatchEventNotification","features":[65]},{"name":"ITTAPIEventNotification","features":[65]},{"name":"ITTAPIObjectEvent","features":[65]},{"name":"ITTAPIObjectEvent2","features":[65]},{"name":"ITTTSTerminalEvent","features":[65]},{"name":"ITTerminal","features":[65]},{"name":"ITTerminalSupport","features":[65]},{"name":"ITTerminalSupport2","features":[65]},{"name":"ITToneDetectionEvent","features":[65]},{"name":"ITToneTerminalEvent","features":[65]},{"name":"ITnef","features":[65]},{"name":"LAST_LINEMEDIAMODE","features":[65]},{"name":"LAST_LINEREQUESTMODE","features":[65]},{"name":"LINEADDRCAPFLAGS_ACCEPTTOALERT","features":[65]},{"name":"LINEADDRCAPFLAGS_ACDGROUP","features":[65]},{"name":"LINEADDRCAPFLAGS_AUTORECONNECT","features":[65]},{"name":"LINEADDRCAPFLAGS_BLOCKIDDEFAULT","features":[65]},{"name":"LINEADDRCAPFLAGS_BLOCKIDOVERRIDE","features":[65]},{"name":"LINEADDRCAPFLAGS_COMPLETIONID","features":[65]},{"name":"LINEADDRCAPFLAGS_CONFDROP","features":[65]},{"name":"LINEADDRCAPFLAGS_CONFERENCEHELD","features":[65]},{"name":"LINEADDRCAPFLAGS_CONFERENCEMAKE","features":[65]},{"name":"LINEADDRCAPFLAGS_DESTOFFHOOK","features":[65]},{"name":"LINEADDRCAPFLAGS_DIALED","features":[65]},{"name":"LINEADDRCAPFLAGS_FWDBUSYNAADDR","features":[65]},{"name":"LINEADDRCAPFLAGS_FWDCONSULT","features":[65]},{"name":"LINEADDRCAPFLAGS_FWDINTEXTADDR","features":[65]},{"name":"LINEADDRCAPFLAGS_FWDNUMRINGS","features":[65]},{"name":"LINEADDRCAPFLAGS_FWDSTATUSVALID","features":[65]},{"name":"LINEADDRCAPFLAGS_HOLDMAKESNEW","features":[65]},{"name":"LINEADDRCAPFLAGS_NOEXTERNALCALLS","features":[65]},{"name":"LINEADDRCAPFLAGS_NOINTERNALCALLS","features":[65]},{"name":"LINEADDRCAPFLAGS_NOPSTNADDRESSTRANSLATION","features":[65]},{"name":"LINEADDRCAPFLAGS_ORIGOFFHOOK","features":[65]},{"name":"LINEADDRCAPFLAGS_PARTIALDIAL","features":[65]},{"name":"LINEADDRCAPFLAGS_PICKUPCALLWAIT","features":[65]},{"name":"LINEADDRCAPFLAGS_PICKUPGROUPID","features":[65]},{"name":"LINEADDRCAPFLAGS_PREDICTIVEDIALER","features":[65]},{"name":"LINEADDRCAPFLAGS_QUEUE","features":[65]},{"name":"LINEADDRCAPFLAGS_ROUTEPOINT","features":[65]},{"name":"LINEADDRCAPFLAGS_SECURE","features":[65]},{"name":"LINEADDRCAPFLAGS_SETCALLINGID","features":[65]},{"name":"LINEADDRCAPFLAGS_SETUPCONFNULL","features":[65]},{"name":"LINEADDRCAPFLAGS_TRANSFERHELD","features":[65]},{"name":"LINEADDRCAPFLAGS_TRANSFERMAKE","features":[65]},{"name":"LINEADDRESSCAPS","features":[65]},{"name":"LINEADDRESSMODE_ADDRESSID","features":[65]},{"name":"LINEADDRESSMODE_DIALABLEADDR","features":[65]},{"name":"LINEADDRESSSHARING_BRIDGEDEXCL","features":[65]},{"name":"LINEADDRESSSHARING_BRIDGEDNEW","features":[65]},{"name":"LINEADDRESSSHARING_BRIDGEDSHARED","features":[65]},{"name":"LINEADDRESSSHARING_MONITORED","features":[65]},{"name":"LINEADDRESSSHARING_PRIVATE","features":[65]},{"name":"LINEADDRESSSTATE_CAPSCHANGE","features":[65]},{"name":"LINEADDRESSSTATE_DEVSPECIFIC","features":[65]},{"name":"LINEADDRESSSTATE_FORWARD","features":[65]},{"name":"LINEADDRESSSTATE_INUSEMANY","features":[65]},{"name":"LINEADDRESSSTATE_INUSEONE","features":[65]},{"name":"LINEADDRESSSTATE_INUSEZERO","features":[65]},{"name":"LINEADDRESSSTATE_NUMCALLS","features":[65]},{"name":"LINEADDRESSSTATE_OTHER","features":[65]},{"name":"LINEADDRESSSTATE_TERMINALS","features":[65]},{"name":"LINEADDRESSSTATUS","features":[65]},{"name":"LINEADDRESSTYPE_DOMAINNAME","features":[65]},{"name":"LINEADDRESSTYPE_EMAILNAME","features":[65]},{"name":"LINEADDRESSTYPE_IPADDRESS","features":[65]},{"name":"LINEADDRESSTYPE_PHONENUMBER","features":[65]},{"name":"LINEADDRESSTYPE_SDP","features":[65]},{"name":"LINEADDRFEATURE_FORWARD","features":[65]},{"name":"LINEADDRFEATURE_FORWARDDND","features":[65]},{"name":"LINEADDRFEATURE_FORWARDFWD","features":[65]},{"name":"LINEADDRFEATURE_MAKECALL","features":[65]},{"name":"LINEADDRFEATURE_PICKUP","features":[65]},{"name":"LINEADDRFEATURE_PICKUPDIRECT","features":[65]},{"name":"LINEADDRFEATURE_PICKUPGROUP","features":[65]},{"name":"LINEADDRFEATURE_PICKUPHELD","features":[65]},{"name":"LINEADDRFEATURE_PICKUPWAITING","features":[65]},{"name":"LINEADDRFEATURE_SETMEDIACONTROL","features":[65]},{"name":"LINEADDRFEATURE_SETTERMINAL","features":[65]},{"name":"LINEADDRFEATURE_SETUPCONF","features":[65]},{"name":"LINEADDRFEATURE_UNCOMPLETECALL","features":[65]},{"name":"LINEADDRFEATURE_UNPARK","features":[65]},{"name":"LINEAGENTACTIVITYENTRY","features":[65]},{"name":"LINEAGENTACTIVITYLIST","features":[65]},{"name":"LINEAGENTCAPS","features":[65]},{"name":"LINEAGENTENTRY","features":[65]},{"name":"LINEAGENTFEATURE_AGENTSPECIFIC","features":[65]},{"name":"LINEAGENTFEATURE_GETAGENTACTIVITYLIST","features":[65]},{"name":"LINEAGENTFEATURE_GETAGENTGROUP","features":[65]},{"name":"LINEAGENTFEATURE_SETAGENTACTIVITY","features":[65]},{"name":"LINEAGENTFEATURE_SETAGENTGROUP","features":[65]},{"name":"LINEAGENTFEATURE_SETAGENTSTATE","features":[65]},{"name":"LINEAGENTGROUPENTRY","features":[65]},{"name":"LINEAGENTGROUPLIST","features":[65]},{"name":"LINEAGENTINFO","features":[65,41]},{"name":"LINEAGENTLIST","features":[65]},{"name":"LINEAGENTSESSIONENTRY","features":[65]},{"name":"LINEAGENTSESSIONINFO","features":[65,41]},{"name":"LINEAGENTSESSIONLIST","features":[65]},{"name":"LINEAGENTSESSIONSTATE_BUSYONCALL","features":[65]},{"name":"LINEAGENTSESSIONSTATE_BUSYWRAPUP","features":[65]},{"name":"LINEAGENTSESSIONSTATE_ENDED","features":[65]},{"name":"LINEAGENTSESSIONSTATE_NOTREADY","features":[65]},{"name":"LINEAGENTSESSIONSTATE_READY","features":[65]},{"name":"LINEAGENTSESSIONSTATE_RELEASED","features":[65]},{"name":"LINEAGENTSESSIONSTATUS_NEWSESSION","features":[65]},{"name":"LINEAGENTSESSIONSTATUS_STATE","features":[65]},{"name":"LINEAGENTSESSIONSTATUS_UPDATEINFO","features":[65]},{"name":"LINEAGENTSTATEEX_BUSYACD","features":[65]},{"name":"LINEAGENTSTATEEX_BUSYINCOMING","features":[65]},{"name":"LINEAGENTSTATEEX_BUSYOUTGOING","features":[65]},{"name":"LINEAGENTSTATEEX_NOTREADY","features":[65]},{"name":"LINEAGENTSTATEEX_READY","features":[65]},{"name":"LINEAGENTSTATEEX_RELEASED","features":[65]},{"name":"LINEAGENTSTATEEX_UNKNOWN","features":[65]},{"name":"LINEAGENTSTATE_BUSYACD","features":[65]},{"name":"LINEAGENTSTATE_BUSYINCOMING","features":[65]},{"name":"LINEAGENTSTATE_BUSYOTHER","features":[65]},{"name":"LINEAGENTSTATE_BUSYOUTBOUND","features":[65]},{"name":"LINEAGENTSTATE_LOGGEDOFF","features":[65]},{"name":"LINEAGENTSTATE_NOTREADY","features":[65]},{"name":"LINEAGENTSTATE_READY","features":[65]},{"name":"LINEAGENTSTATE_UNAVAIL","features":[65]},{"name":"LINEAGENTSTATE_UNKNOWN","features":[65]},{"name":"LINEAGENTSTATE_WORKINGAFTERCALL","features":[65]},{"name":"LINEAGENTSTATUS","features":[65]},{"name":"LINEAGENTSTATUSEX_NEWAGENT","features":[65]},{"name":"LINEAGENTSTATUSEX_STATE","features":[65]},{"name":"LINEAGENTSTATUSEX_UPDATEINFO","features":[65]},{"name":"LINEAGENTSTATUS_ACTIVITY","features":[65]},{"name":"LINEAGENTSTATUS_ACTIVITYLIST","features":[65]},{"name":"LINEAGENTSTATUS_CAPSCHANGE","features":[65]},{"name":"LINEAGENTSTATUS_GROUP","features":[65]},{"name":"LINEAGENTSTATUS_GROUPLIST","features":[65]},{"name":"LINEAGENTSTATUS_NEXTSTATE","features":[65]},{"name":"LINEAGENTSTATUS_STATE","features":[65]},{"name":"LINEAGENTSTATUS_VALIDNEXTSTATES","features":[65]},{"name":"LINEAGENTSTATUS_VALIDSTATES","features":[65]},{"name":"LINEANSWERMODE_DROP","features":[65]},{"name":"LINEANSWERMODE_HOLD","features":[65]},{"name":"LINEANSWERMODE_NONE","features":[65]},{"name":"LINEAPPINFO","features":[65]},{"name":"LINEBEARERMODE_ALTSPEECHDATA","features":[65]},{"name":"LINEBEARERMODE_DATA","features":[65]},{"name":"LINEBEARERMODE_MULTIUSE","features":[65]},{"name":"LINEBEARERMODE_NONCALLSIGNALING","features":[65]},{"name":"LINEBEARERMODE_PASSTHROUGH","features":[65]},{"name":"LINEBEARERMODE_RESTRICTEDDATA","features":[65]},{"name":"LINEBEARERMODE_SPEECH","features":[65]},{"name":"LINEBEARERMODE_VOICE","features":[65]},{"name":"LINEBUSYMODE_STATION","features":[65]},{"name":"LINEBUSYMODE_TRUNK","features":[65]},{"name":"LINEBUSYMODE_UNAVAIL","features":[65]},{"name":"LINEBUSYMODE_UNKNOWN","features":[65]},{"name":"LINECALLBACK","features":[65]},{"name":"LINECALLCOMPLCOND_BUSY","features":[65]},{"name":"LINECALLCOMPLCOND_NOANSWER","features":[65]},{"name":"LINECALLCOMPLMODE_CALLBACK","features":[65]},{"name":"LINECALLCOMPLMODE_CAMPON","features":[65]},{"name":"LINECALLCOMPLMODE_INTRUDE","features":[65]},{"name":"LINECALLCOMPLMODE_MESSAGE","features":[65]},{"name":"LINECALLFEATURE2_COMPLCALLBACK","features":[65]},{"name":"LINECALLFEATURE2_COMPLCAMPON","features":[65]},{"name":"LINECALLFEATURE2_COMPLINTRUDE","features":[65]},{"name":"LINECALLFEATURE2_COMPLMESSAGE","features":[65]},{"name":"LINECALLFEATURE2_NOHOLDCONFERENCE","features":[65]},{"name":"LINECALLFEATURE2_ONESTEPTRANSFER","features":[65]},{"name":"LINECALLFEATURE2_PARKDIRECT","features":[65]},{"name":"LINECALLFEATURE2_PARKNONDIRECT","features":[65]},{"name":"LINECALLFEATURE2_TRANSFERCONF","features":[65]},{"name":"LINECALLFEATURE2_TRANSFERNORM","features":[65]},{"name":"LINECALLFEATURE_ACCEPT","features":[65]},{"name":"LINECALLFEATURE_ADDTOCONF","features":[65]},{"name":"LINECALLFEATURE_ANSWER","features":[65]},{"name":"LINECALLFEATURE_BLINDTRANSFER","features":[65]},{"name":"LINECALLFEATURE_COMPLETECALL","features":[65]},{"name":"LINECALLFEATURE_COMPLETETRANSF","features":[65]},{"name":"LINECALLFEATURE_DIAL","features":[65]},{"name":"LINECALLFEATURE_DROP","features":[65]},{"name":"LINECALLFEATURE_GATHERDIGITS","features":[65]},{"name":"LINECALLFEATURE_GENERATEDIGITS","features":[65]},{"name":"LINECALLFEATURE_GENERATETONE","features":[65]},{"name":"LINECALLFEATURE_HOLD","features":[65]},{"name":"LINECALLFEATURE_MONITORDIGITS","features":[65]},{"name":"LINECALLFEATURE_MONITORMEDIA","features":[65]},{"name":"LINECALLFEATURE_MONITORTONES","features":[65]},{"name":"LINECALLFEATURE_PARK","features":[65]},{"name":"LINECALLFEATURE_PREPAREADDCONF","features":[65]},{"name":"LINECALLFEATURE_REDIRECT","features":[65]},{"name":"LINECALLFEATURE_RELEASEUSERUSERINFO","features":[65]},{"name":"LINECALLFEATURE_REMOVEFROMCONF","features":[65]},{"name":"LINECALLFEATURE_SECURECALL","features":[65]},{"name":"LINECALLFEATURE_SENDUSERUSER","features":[65]},{"name":"LINECALLFEATURE_SETCALLDATA","features":[65]},{"name":"LINECALLFEATURE_SETCALLPARAMS","features":[65]},{"name":"LINECALLFEATURE_SETMEDIACONTROL","features":[65]},{"name":"LINECALLFEATURE_SETQOS","features":[65]},{"name":"LINECALLFEATURE_SETTERMINAL","features":[65]},{"name":"LINECALLFEATURE_SETTREATMENT","features":[65]},{"name":"LINECALLFEATURE_SETUPCONF","features":[65]},{"name":"LINECALLFEATURE_SETUPTRANSFER","features":[65]},{"name":"LINECALLFEATURE_SWAPHOLD","features":[65]},{"name":"LINECALLFEATURE_UNHOLD","features":[65]},{"name":"LINECALLHUBTRACKING_ALLCALLS","features":[65]},{"name":"LINECALLHUBTRACKING_NONE","features":[65]},{"name":"LINECALLHUBTRACKING_PROVIDERLEVEL","features":[65]},{"name":"LINECALLINFO","features":[65]},{"name":"LINECALLINFOSTATE_APPSPECIFIC","features":[65]},{"name":"LINECALLINFOSTATE_BEARERMODE","features":[65]},{"name":"LINECALLINFOSTATE_CALLDATA","features":[65]},{"name":"LINECALLINFOSTATE_CALLEDID","features":[65]},{"name":"LINECALLINFOSTATE_CALLERID","features":[65]},{"name":"LINECALLINFOSTATE_CALLID","features":[65]},{"name":"LINECALLINFOSTATE_CHARGINGINFO","features":[65]},{"name":"LINECALLINFOSTATE_COMPLETIONID","features":[65]},{"name":"LINECALLINFOSTATE_CONNECTEDID","features":[65]},{"name":"LINECALLINFOSTATE_DEVSPECIFIC","features":[65]},{"name":"LINECALLINFOSTATE_DIALPARAMS","features":[65]},{"name":"LINECALLINFOSTATE_DISPLAY","features":[65]},{"name":"LINECALLINFOSTATE_HIGHLEVELCOMP","features":[65]},{"name":"LINECALLINFOSTATE_LOWLEVELCOMP","features":[65]},{"name":"LINECALLINFOSTATE_MEDIAMODE","features":[65]},{"name":"LINECALLINFOSTATE_MONITORMODES","features":[65]},{"name":"LINECALLINFOSTATE_NUMMONITORS","features":[65]},{"name":"LINECALLINFOSTATE_NUMOWNERDECR","features":[65]},{"name":"LINECALLINFOSTATE_NUMOWNERINCR","features":[65]},{"name":"LINECALLINFOSTATE_ORIGIN","features":[65]},{"name":"LINECALLINFOSTATE_OTHER","features":[65]},{"name":"LINECALLINFOSTATE_QOS","features":[65]},{"name":"LINECALLINFOSTATE_RATE","features":[65]},{"name":"LINECALLINFOSTATE_REASON","features":[65]},{"name":"LINECALLINFOSTATE_REDIRECTINGID","features":[65]},{"name":"LINECALLINFOSTATE_REDIRECTIONID","features":[65]},{"name":"LINECALLINFOSTATE_RELATEDCALLID","features":[65]},{"name":"LINECALLINFOSTATE_TERMINAL","features":[65]},{"name":"LINECALLINFOSTATE_TREATMENT","features":[65]},{"name":"LINECALLINFOSTATE_TRUNK","features":[65]},{"name":"LINECALLINFOSTATE_USERUSERINFO","features":[65]},{"name":"LINECALLLIST","features":[65]},{"name":"LINECALLORIGIN_CONFERENCE","features":[65]},{"name":"LINECALLORIGIN_EXTERNAL","features":[65]},{"name":"LINECALLORIGIN_INBOUND","features":[65]},{"name":"LINECALLORIGIN_INTERNAL","features":[65]},{"name":"LINECALLORIGIN_OUTBOUND","features":[65]},{"name":"LINECALLORIGIN_UNAVAIL","features":[65]},{"name":"LINECALLORIGIN_UNKNOWN","features":[65]},{"name":"LINECALLPARAMFLAGS_BLOCKID","features":[65]},{"name":"LINECALLPARAMFLAGS_DESTOFFHOOK","features":[65]},{"name":"LINECALLPARAMFLAGS_IDLE","features":[65]},{"name":"LINECALLPARAMFLAGS_NOHOLDCONFERENCE","features":[65]},{"name":"LINECALLPARAMFLAGS_ONESTEPTRANSFER","features":[65]},{"name":"LINECALLPARAMFLAGS_ORIGOFFHOOK","features":[65]},{"name":"LINECALLPARAMFLAGS_PREDICTIVEDIAL","features":[65]},{"name":"LINECALLPARAMFLAGS_SECURE","features":[65]},{"name":"LINECALLPARAMS","features":[65]},{"name":"LINECALLPARTYID_ADDRESS","features":[65]},{"name":"LINECALLPARTYID_BLOCKED","features":[65]},{"name":"LINECALLPARTYID_NAME","features":[65]},{"name":"LINECALLPARTYID_OUTOFAREA","features":[65]},{"name":"LINECALLPARTYID_PARTIAL","features":[65]},{"name":"LINECALLPARTYID_UNAVAIL","features":[65]},{"name":"LINECALLPARTYID_UNKNOWN","features":[65]},{"name":"LINECALLPRIVILEGE_MONITOR","features":[65]},{"name":"LINECALLPRIVILEGE_NONE","features":[65]},{"name":"LINECALLPRIVILEGE_OWNER","features":[65]},{"name":"LINECALLREASON_CALLCOMPLETION","features":[65]},{"name":"LINECALLREASON_CAMPEDON","features":[65]},{"name":"LINECALLREASON_DIRECT","features":[65]},{"name":"LINECALLREASON_FWDBUSY","features":[65]},{"name":"LINECALLREASON_FWDNOANSWER","features":[65]},{"name":"LINECALLREASON_FWDUNCOND","features":[65]},{"name":"LINECALLREASON_INTRUDE","features":[65]},{"name":"LINECALLREASON_PARKED","features":[65]},{"name":"LINECALLREASON_PICKUP","features":[65]},{"name":"LINECALLREASON_REDIRECT","features":[65]},{"name":"LINECALLREASON_REMINDER","features":[65]},{"name":"LINECALLREASON_ROUTEREQUEST","features":[65]},{"name":"LINECALLREASON_TRANSFER","features":[65]},{"name":"LINECALLREASON_UNAVAIL","features":[65]},{"name":"LINECALLREASON_UNKNOWN","features":[65]},{"name":"LINECALLREASON_UNPARK","features":[65]},{"name":"LINECALLSELECT_ADDRESS","features":[65]},{"name":"LINECALLSELECT_CALL","features":[65]},{"name":"LINECALLSELECT_CALLID","features":[65]},{"name":"LINECALLSELECT_DEVICEID","features":[65]},{"name":"LINECALLSELECT_LINE","features":[65]},{"name":"LINECALLSTATE_ACCEPTED","features":[65]},{"name":"LINECALLSTATE_BUSY","features":[65]},{"name":"LINECALLSTATE_CONFERENCED","features":[65]},{"name":"LINECALLSTATE_CONNECTED","features":[65]},{"name":"LINECALLSTATE_DIALING","features":[65]},{"name":"LINECALLSTATE_DIALTONE","features":[65]},{"name":"LINECALLSTATE_DISCONNECTED","features":[65]},{"name":"LINECALLSTATE_IDLE","features":[65]},{"name":"LINECALLSTATE_OFFERING","features":[65]},{"name":"LINECALLSTATE_ONHOLD","features":[65]},{"name":"LINECALLSTATE_ONHOLDPENDCONF","features":[65]},{"name":"LINECALLSTATE_ONHOLDPENDTRANSFER","features":[65]},{"name":"LINECALLSTATE_PROCEEDING","features":[65]},{"name":"LINECALLSTATE_RINGBACK","features":[65]},{"name":"LINECALLSTATE_SPECIALINFO","features":[65]},{"name":"LINECALLSTATE_UNKNOWN","features":[65]},{"name":"LINECALLSTATUS","features":[65,1]},{"name":"LINECALLTREATMENTENTRY","features":[65]},{"name":"LINECALLTREATMENT_BUSY","features":[65]},{"name":"LINECALLTREATMENT_MUSIC","features":[65]},{"name":"LINECALLTREATMENT_RINGBACK","features":[65]},{"name":"LINECALLTREATMENT_SILENCE","features":[65]},{"name":"LINECARDENTRY","features":[65]},{"name":"LINECARDOPTION_HIDDEN","features":[65]},{"name":"LINECARDOPTION_PREDEFINED","features":[65]},{"name":"LINECONNECTEDMODE_ACTIVE","features":[65]},{"name":"LINECONNECTEDMODE_ACTIVEHELD","features":[65]},{"name":"LINECONNECTEDMODE_CONFIRMED","features":[65]},{"name":"LINECONNECTEDMODE_INACTIVE","features":[65]},{"name":"LINECONNECTEDMODE_INACTIVEHELD","features":[65]},{"name":"LINECOUNTRYENTRY","features":[65]},{"name":"LINECOUNTRYLIST","features":[65]},{"name":"LINEDEVCAPFLAGS_CALLHUB","features":[65]},{"name":"LINEDEVCAPFLAGS_CALLHUBTRACKING","features":[65]},{"name":"LINEDEVCAPFLAGS_CLOSEDROP","features":[65]},{"name":"LINEDEVCAPFLAGS_CROSSADDRCONF","features":[65]},{"name":"LINEDEVCAPFLAGS_DIALBILLING","features":[65]},{"name":"LINEDEVCAPFLAGS_DIALDIALTONE","features":[65]},{"name":"LINEDEVCAPFLAGS_DIALQUIET","features":[65]},{"name":"LINEDEVCAPFLAGS_HIGHLEVCOMP","features":[65]},{"name":"LINEDEVCAPFLAGS_LOCAL","features":[65]},{"name":"LINEDEVCAPFLAGS_LOWLEVCOMP","features":[65]},{"name":"LINEDEVCAPFLAGS_MEDIACONTROL","features":[65]},{"name":"LINEDEVCAPFLAGS_MSP","features":[65]},{"name":"LINEDEVCAPFLAGS_MULTIPLEADDR","features":[65]},{"name":"LINEDEVCAPFLAGS_PRIVATEOBJECTS","features":[65]},{"name":"LINEDEVCAPS","features":[65]},{"name":"LINEDEVSTATE_BATTERY","features":[65]},{"name":"LINEDEVSTATE_CAPSCHANGE","features":[65]},{"name":"LINEDEVSTATE_CLOSE","features":[65]},{"name":"LINEDEVSTATE_COMPLCANCEL","features":[65]},{"name":"LINEDEVSTATE_CONFIGCHANGE","features":[65]},{"name":"LINEDEVSTATE_CONNECTED","features":[65]},{"name":"LINEDEVSTATE_DEVSPECIFIC","features":[65]},{"name":"LINEDEVSTATE_DISCONNECTED","features":[65]},{"name":"LINEDEVSTATE_INSERVICE","features":[65]},{"name":"LINEDEVSTATE_LOCK","features":[65]},{"name":"LINEDEVSTATE_MAINTENANCE","features":[65]},{"name":"LINEDEVSTATE_MSGWAITOFF","features":[65]},{"name":"LINEDEVSTATE_MSGWAITON","features":[65]},{"name":"LINEDEVSTATE_NUMCALLS","features":[65]},{"name":"LINEDEVSTATE_NUMCOMPLETIONS","features":[65]},{"name":"LINEDEVSTATE_OPEN","features":[65]},{"name":"LINEDEVSTATE_OTHER","features":[65]},{"name":"LINEDEVSTATE_OUTOFSERVICE","features":[65]},{"name":"LINEDEVSTATE_REINIT","features":[65]},{"name":"LINEDEVSTATE_REMOVED","features":[65]},{"name":"LINEDEVSTATE_RINGING","features":[65]},{"name":"LINEDEVSTATE_ROAMMODE","features":[65]},{"name":"LINEDEVSTATE_SIGNAL","features":[65]},{"name":"LINEDEVSTATE_TERMINALS","features":[65]},{"name":"LINEDEVSTATE_TRANSLATECHANGE","features":[65]},{"name":"LINEDEVSTATUS","features":[65]},{"name":"LINEDEVSTATUSFLAGS_CONNECTED","features":[65]},{"name":"LINEDEVSTATUSFLAGS_INSERVICE","features":[65]},{"name":"LINEDEVSTATUSFLAGS_LOCKED","features":[65]},{"name":"LINEDEVSTATUSFLAGS_MSGWAIT","features":[65]},{"name":"LINEDIALPARAMS","features":[65]},{"name":"LINEDIALTONEMODE_EXTERNAL","features":[65]},{"name":"LINEDIALTONEMODE_INTERNAL","features":[65]},{"name":"LINEDIALTONEMODE_NORMAL","features":[65]},{"name":"LINEDIALTONEMODE_SPECIAL","features":[65]},{"name":"LINEDIALTONEMODE_UNAVAIL","features":[65]},{"name":"LINEDIALTONEMODE_UNKNOWN","features":[65]},{"name":"LINEDIGITMODE_DTMF","features":[65]},{"name":"LINEDIGITMODE_DTMFEND","features":[65]},{"name":"LINEDIGITMODE_PULSE","features":[65]},{"name":"LINEDISCONNECTMODE_BADADDRESS","features":[65]},{"name":"LINEDISCONNECTMODE_BLOCKED","features":[65]},{"name":"LINEDISCONNECTMODE_BUSY","features":[65]},{"name":"LINEDISCONNECTMODE_CANCELLED","features":[65]},{"name":"LINEDISCONNECTMODE_CONGESTION","features":[65]},{"name":"LINEDISCONNECTMODE_DESTINATIONBARRED","features":[65]},{"name":"LINEDISCONNECTMODE_DONOTDISTURB","features":[65]},{"name":"LINEDISCONNECTMODE_FDNRESTRICT","features":[65]},{"name":"LINEDISCONNECTMODE_FORWARDED","features":[65]},{"name":"LINEDISCONNECTMODE_INCOMPATIBLE","features":[65]},{"name":"LINEDISCONNECTMODE_NOANSWER","features":[65]},{"name":"LINEDISCONNECTMODE_NODIALTONE","features":[65]},{"name":"LINEDISCONNECTMODE_NORMAL","features":[65]},{"name":"LINEDISCONNECTMODE_NUMBERCHANGED","features":[65]},{"name":"LINEDISCONNECTMODE_OUTOFORDER","features":[65]},{"name":"LINEDISCONNECTMODE_PICKUP","features":[65]},{"name":"LINEDISCONNECTMODE_QOSUNAVAIL","features":[65]},{"name":"LINEDISCONNECTMODE_REJECT","features":[65]},{"name":"LINEDISCONNECTMODE_TEMPFAILURE","features":[65]},{"name":"LINEDISCONNECTMODE_UNAVAIL","features":[65]},{"name":"LINEDISCONNECTMODE_UNKNOWN","features":[65]},{"name":"LINEDISCONNECTMODE_UNREACHABLE","features":[65]},{"name":"LINEEQOSINFO_ADMISSIONFAILURE","features":[65]},{"name":"LINEEQOSINFO_GENERICERROR","features":[65]},{"name":"LINEEQOSINFO_NOQOS","features":[65]},{"name":"LINEEQOSINFO_POLICYFAILURE","features":[65]},{"name":"LINEERR_ADDRESSBLOCKED","features":[65]},{"name":"LINEERR_ALLOCATED","features":[65]},{"name":"LINEERR_BADDEVICEID","features":[65]},{"name":"LINEERR_BEARERMODEUNAVAIL","features":[65]},{"name":"LINEERR_BILLINGREJECTED","features":[65]},{"name":"LINEERR_CALLUNAVAIL","features":[65]},{"name":"LINEERR_COMPLETIONOVERRUN","features":[65]},{"name":"LINEERR_CONFERENCEFULL","features":[65]},{"name":"LINEERR_DIALBILLING","features":[65]},{"name":"LINEERR_DIALDIALTONE","features":[65]},{"name":"LINEERR_DIALPROMPT","features":[65]},{"name":"LINEERR_DIALQUIET","features":[65]},{"name":"LINEERR_DIALVOICEDETECT","features":[65]},{"name":"LINEERR_DISCONNECTED","features":[65]},{"name":"LINEERR_INCOMPATIBLEAPIVERSION","features":[65]},{"name":"LINEERR_INCOMPATIBLEEXTVERSION","features":[65]},{"name":"LINEERR_INIFILECORRUPT","features":[65]},{"name":"LINEERR_INUSE","features":[65]},{"name":"LINEERR_INVALADDRESS","features":[65]},{"name":"LINEERR_INVALADDRESSID","features":[65]},{"name":"LINEERR_INVALADDRESSMODE","features":[65]},{"name":"LINEERR_INVALADDRESSSTATE","features":[65]},{"name":"LINEERR_INVALADDRESSTYPE","features":[65]},{"name":"LINEERR_INVALAGENTACTIVITY","features":[65]},{"name":"LINEERR_INVALAGENTGROUP","features":[65]},{"name":"LINEERR_INVALAGENTID","features":[65]},{"name":"LINEERR_INVALAGENTSESSIONSTATE","features":[65]},{"name":"LINEERR_INVALAGENTSTATE","features":[65]},{"name":"LINEERR_INVALAPPHANDLE","features":[65]},{"name":"LINEERR_INVALAPPNAME","features":[65]},{"name":"LINEERR_INVALBEARERMODE","features":[65]},{"name":"LINEERR_INVALCALLCOMPLMODE","features":[65]},{"name":"LINEERR_INVALCALLHANDLE","features":[65]},{"name":"LINEERR_INVALCALLPARAMS","features":[65]},{"name":"LINEERR_INVALCALLPRIVILEGE","features":[65]},{"name":"LINEERR_INVALCALLSELECT","features":[65]},{"name":"LINEERR_INVALCALLSTATE","features":[65]},{"name":"LINEERR_INVALCALLSTATELIST","features":[65]},{"name":"LINEERR_INVALCARD","features":[65]},{"name":"LINEERR_INVALCOMPLETIONID","features":[65]},{"name":"LINEERR_INVALCONFCALLHANDLE","features":[65]},{"name":"LINEERR_INVALCONSULTCALLHANDLE","features":[65]},{"name":"LINEERR_INVALCOUNTRYCODE","features":[65]},{"name":"LINEERR_INVALDEVICECLASS","features":[65]},{"name":"LINEERR_INVALDEVICEHANDLE","features":[65]},{"name":"LINEERR_INVALDIALPARAMS","features":[65]},{"name":"LINEERR_INVALDIGITLIST","features":[65]},{"name":"LINEERR_INVALDIGITMODE","features":[65]},{"name":"LINEERR_INVALDIGITS","features":[65]},{"name":"LINEERR_INVALEXTVERSION","features":[65]},{"name":"LINEERR_INVALFEATURE","features":[65]},{"name":"LINEERR_INVALGROUPID","features":[65]},{"name":"LINEERR_INVALLINEHANDLE","features":[65]},{"name":"LINEERR_INVALLINESTATE","features":[65]},{"name":"LINEERR_INVALLOCATION","features":[65]},{"name":"LINEERR_INVALMEDIALIST","features":[65]},{"name":"LINEERR_INVALMEDIAMODE","features":[65]},{"name":"LINEERR_INVALMESSAGEID","features":[65]},{"name":"LINEERR_INVALPARAM","features":[65]},{"name":"LINEERR_INVALPARKID","features":[65]},{"name":"LINEERR_INVALPARKMODE","features":[65]},{"name":"LINEERR_INVALPASSWORD","features":[65]},{"name":"LINEERR_INVALPOINTER","features":[65]},{"name":"LINEERR_INVALPRIVSELECT","features":[65]},{"name":"LINEERR_INVALRATE","features":[65]},{"name":"LINEERR_INVALREQUESTMODE","features":[65]},{"name":"LINEERR_INVALTERMINALID","features":[65]},{"name":"LINEERR_INVALTERMINALMODE","features":[65]},{"name":"LINEERR_INVALTIMEOUT","features":[65]},{"name":"LINEERR_INVALTONE","features":[65]},{"name":"LINEERR_INVALTONELIST","features":[65]},{"name":"LINEERR_INVALTONEMODE","features":[65]},{"name":"LINEERR_INVALTRANSFERMODE","features":[65]},{"name":"LINEERR_LINEMAPPERFAILED","features":[65]},{"name":"LINEERR_NOCONFERENCE","features":[65]},{"name":"LINEERR_NODEVICE","features":[65]},{"name":"LINEERR_NODRIVER","features":[65]},{"name":"LINEERR_NOMEM","features":[65]},{"name":"LINEERR_NOMULTIPLEINSTANCE","features":[65]},{"name":"LINEERR_NOREQUEST","features":[65]},{"name":"LINEERR_NOTOWNER","features":[65]},{"name":"LINEERR_NOTREGISTERED","features":[65]},{"name":"LINEERR_OPERATIONFAILED","features":[65]},{"name":"LINEERR_OPERATIONUNAVAIL","features":[65]},{"name":"LINEERR_RATEUNAVAIL","features":[65]},{"name":"LINEERR_REINIT","features":[65]},{"name":"LINEERR_REQUESTOVERRUN","features":[65]},{"name":"LINEERR_RESOURCEUNAVAIL","features":[65]},{"name":"LINEERR_SERVICE_NOT_RUNNING","features":[65]},{"name":"LINEERR_STRUCTURETOOSMALL","features":[65]},{"name":"LINEERR_TARGETNOTFOUND","features":[65]},{"name":"LINEERR_TARGETSELF","features":[65]},{"name":"LINEERR_UNINITIALIZED","features":[65]},{"name":"LINEERR_USERCANCELLED","features":[65]},{"name":"LINEERR_USERUSERINFOTOOBIG","features":[65]},{"name":"LINEEVENT","features":[65]},{"name":"LINEEXTENSIONID","features":[65]},{"name":"LINEFEATURE_DEVSPECIFIC","features":[65]},{"name":"LINEFEATURE_DEVSPECIFICFEAT","features":[65]},{"name":"LINEFEATURE_FORWARD","features":[65]},{"name":"LINEFEATURE_FORWARDDND","features":[65]},{"name":"LINEFEATURE_FORWARDFWD","features":[65]},{"name":"LINEFEATURE_MAKECALL","features":[65]},{"name":"LINEFEATURE_SETDEVSTATUS","features":[65]},{"name":"LINEFEATURE_SETMEDIACONTROL","features":[65]},{"name":"LINEFEATURE_SETTERMINAL","features":[65]},{"name":"LINEFORWARD","features":[65]},{"name":"LINEFORWARDLIST","features":[65]},{"name":"LINEFORWARDMODE_BUSY","features":[65]},{"name":"LINEFORWARDMODE_BUSYEXTERNAL","features":[65]},{"name":"LINEFORWARDMODE_BUSYINTERNAL","features":[65]},{"name":"LINEFORWARDMODE_BUSYNA","features":[65]},{"name":"LINEFORWARDMODE_BUSYNAEXTERNAL","features":[65]},{"name":"LINEFORWARDMODE_BUSYNAINTERNAL","features":[65]},{"name":"LINEFORWARDMODE_BUSYNASPECIFIC","features":[65]},{"name":"LINEFORWARDMODE_BUSYSPECIFIC","features":[65]},{"name":"LINEFORWARDMODE_NOANSW","features":[65]},{"name":"LINEFORWARDMODE_NOANSWEXTERNAL","features":[65]},{"name":"LINEFORWARDMODE_NOANSWINTERNAL","features":[65]},{"name":"LINEFORWARDMODE_NOANSWSPECIFIC","features":[65]},{"name":"LINEFORWARDMODE_UNAVAIL","features":[65]},{"name":"LINEFORWARDMODE_UNCOND","features":[65]},{"name":"LINEFORWARDMODE_UNCONDEXTERNAL","features":[65]},{"name":"LINEFORWARDMODE_UNCONDINTERNAL","features":[65]},{"name":"LINEFORWARDMODE_UNCONDSPECIFIC","features":[65]},{"name":"LINEFORWARDMODE_UNKNOWN","features":[65]},{"name":"LINEGATHERTERM_BUFFERFULL","features":[65]},{"name":"LINEGATHERTERM_CANCEL","features":[65]},{"name":"LINEGATHERTERM_FIRSTTIMEOUT","features":[65]},{"name":"LINEGATHERTERM_INTERTIMEOUT","features":[65]},{"name":"LINEGATHERTERM_TERMDIGIT","features":[65]},{"name":"LINEGENERATETERM_CANCEL","features":[65]},{"name":"LINEGENERATETERM_DONE","features":[65]},{"name":"LINEGENERATETONE","features":[65]},{"name":"LINEGROUPSTATUS_GROUPREMOVED","features":[65]},{"name":"LINEGROUPSTATUS_NEWGROUP","features":[65]},{"name":"LINEINITIALIZEEXOPTION_CALLHUBTRACKING","features":[65]},{"name":"LINEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[65]},{"name":"LINEINITIALIZEEXOPTION_USEEVENT","features":[65]},{"name":"LINEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[65]},{"name":"LINEINITIALIZEEXPARAMS","features":[65,1]},{"name":"LINELOCATIONENTRY","features":[65]},{"name":"LINELOCATIONOPTION_PULSEDIAL","features":[65]},{"name":"LINEMAPPER","features":[65]},{"name":"LINEMEDIACONTROLCALLSTATE","features":[65]},{"name":"LINEMEDIACONTROLDIGIT","features":[65]},{"name":"LINEMEDIACONTROLMEDIA","features":[65]},{"name":"LINEMEDIACONTROLTONE","features":[65]},{"name":"LINEMEDIACONTROL_NONE","features":[65]},{"name":"LINEMEDIACONTROL_PAUSE","features":[65]},{"name":"LINEMEDIACONTROL_RATEDOWN","features":[65]},{"name":"LINEMEDIACONTROL_RATENORMAL","features":[65]},{"name":"LINEMEDIACONTROL_RATEUP","features":[65]},{"name":"LINEMEDIACONTROL_RESET","features":[65]},{"name":"LINEMEDIACONTROL_RESUME","features":[65]},{"name":"LINEMEDIACONTROL_START","features":[65]},{"name":"LINEMEDIACONTROL_VOLUMEDOWN","features":[65]},{"name":"LINEMEDIACONTROL_VOLUMENORMAL","features":[65]},{"name":"LINEMEDIACONTROL_VOLUMEUP","features":[65]},{"name":"LINEMEDIAMODE_ADSI","features":[65]},{"name":"LINEMEDIAMODE_AUTOMATEDVOICE","features":[65]},{"name":"LINEMEDIAMODE_DATAMODEM","features":[65]},{"name":"LINEMEDIAMODE_DIGITALDATA","features":[65]},{"name":"LINEMEDIAMODE_G3FAX","features":[65]},{"name":"LINEMEDIAMODE_G4FAX","features":[65]},{"name":"LINEMEDIAMODE_INTERACTIVEVOICE","features":[65]},{"name":"LINEMEDIAMODE_MIXED","features":[65]},{"name":"LINEMEDIAMODE_TDD","features":[65]},{"name":"LINEMEDIAMODE_TELETEX","features":[65]},{"name":"LINEMEDIAMODE_TELEX","features":[65]},{"name":"LINEMEDIAMODE_UNKNOWN","features":[65]},{"name":"LINEMEDIAMODE_VIDEO","features":[65]},{"name":"LINEMEDIAMODE_VIDEOTEX","features":[65]},{"name":"LINEMEDIAMODE_VOICEVIEW","features":[65]},{"name":"LINEMESSAGE","features":[65]},{"name":"LINEMONITORTONE","features":[65]},{"name":"LINEOFFERINGMODE_ACTIVE","features":[65]},{"name":"LINEOFFERINGMODE_INACTIVE","features":[65]},{"name":"LINEOPENOPTION_PROXY","features":[65]},{"name":"LINEOPENOPTION_SINGLEADDRESS","features":[65]},{"name":"LINEPARKMODE_DIRECTED","features":[65]},{"name":"LINEPARKMODE_NONDIRECTED","features":[65]},{"name":"LINEPROVIDERENTRY","features":[65]},{"name":"LINEPROVIDERLIST","features":[65]},{"name":"LINEPROXYREQUEST","features":[65,41]},{"name":"LINEPROXYREQUESTLIST","features":[65]},{"name":"LINEPROXYREQUEST_AGENTSPECIFIC","features":[65]},{"name":"LINEPROXYREQUEST_CREATEAGENT","features":[65]},{"name":"LINEPROXYREQUEST_CREATEAGENTSESSION","features":[65]},{"name":"LINEPROXYREQUEST_GETAGENTACTIVITYLIST","features":[65]},{"name":"LINEPROXYREQUEST_GETAGENTCAPS","features":[65]},{"name":"LINEPROXYREQUEST_GETAGENTGROUPLIST","features":[65]},{"name":"LINEPROXYREQUEST_GETAGENTINFO","features":[65]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONINFO","features":[65]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONLIST","features":[65]},{"name":"LINEPROXYREQUEST_GETAGENTSTATUS","features":[65]},{"name":"LINEPROXYREQUEST_GETGROUPLIST","features":[65]},{"name":"LINEPROXYREQUEST_GETQUEUEINFO","features":[65]},{"name":"LINEPROXYREQUEST_GETQUEUELIST","features":[65]},{"name":"LINEPROXYREQUEST_SETAGENTACTIVITY","features":[65]},{"name":"LINEPROXYREQUEST_SETAGENTGROUP","features":[65]},{"name":"LINEPROXYREQUEST_SETAGENTMEASUREMENTPERIOD","features":[65]},{"name":"LINEPROXYREQUEST_SETAGENTSESSIONSTATE","features":[65]},{"name":"LINEPROXYREQUEST_SETAGENTSTATE","features":[65]},{"name":"LINEPROXYREQUEST_SETAGENTSTATEEX","features":[65]},{"name":"LINEPROXYREQUEST_SETQUEUEMEASUREMENTPERIOD","features":[65]},{"name":"LINEPROXYSTATUS_ALLOPENFORACD","features":[65]},{"name":"LINEPROXYSTATUS_CLOSE","features":[65]},{"name":"LINEPROXYSTATUS_OPEN","features":[65]},{"name":"LINEQOSREQUESTTYPE_SERVICELEVEL","features":[65]},{"name":"LINEQOSSERVICELEVEL_BESTEFFORT","features":[65]},{"name":"LINEQOSSERVICELEVEL_IFAVAILABLE","features":[65]},{"name":"LINEQOSSERVICELEVEL_NEEDED","features":[65]},{"name":"LINEQUEUEENTRY","features":[65]},{"name":"LINEQUEUEINFO","features":[65]},{"name":"LINEQUEUELIST","features":[65]},{"name":"LINEQUEUESTATUS_NEWQUEUE","features":[65]},{"name":"LINEQUEUESTATUS_QUEUEREMOVED","features":[65]},{"name":"LINEQUEUESTATUS_UPDATEINFO","features":[65]},{"name":"LINEREMOVEFROMCONF_ANY","features":[65]},{"name":"LINEREMOVEFROMCONF_LAST","features":[65]},{"name":"LINEREMOVEFROMCONF_NONE","features":[65]},{"name":"LINEREQMAKECALL","features":[65]},{"name":"LINEREQMAKECALLW","features":[65]},{"name":"LINEREQMEDIACALL","features":[65,1]},{"name":"LINEREQMEDIACALLW","features":[65,1]},{"name":"LINEREQUESTMODE_DROP","features":[65]},{"name":"LINEREQUESTMODE_MAKECALL","features":[65]},{"name":"LINEREQUESTMODE_MEDIACALL","features":[65]},{"name":"LINEROAMMODE_HOME","features":[65]},{"name":"LINEROAMMODE_ROAMA","features":[65]},{"name":"LINEROAMMODE_ROAMB","features":[65]},{"name":"LINEROAMMODE_UNAVAIL","features":[65]},{"name":"LINEROAMMODE_UNKNOWN","features":[65]},{"name":"LINESPECIALINFO_CUSTIRREG","features":[65]},{"name":"LINESPECIALINFO_NOCIRCUIT","features":[65]},{"name":"LINESPECIALINFO_REORDER","features":[65]},{"name":"LINESPECIALINFO_UNAVAIL","features":[65]},{"name":"LINESPECIALINFO_UNKNOWN","features":[65]},{"name":"LINETERMCAPS","features":[65]},{"name":"LINETERMDEV_HEADSET","features":[65]},{"name":"LINETERMDEV_PHONE","features":[65]},{"name":"LINETERMDEV_SPEAKER","features":[65]},{"name":"LINETERMMODE_BUTTONS","features":[65]},{"name":"LINETERMMODE_DISPLAY","features":[65]},{"name":"LINETERMMODE_HOOKSWITCH","features":[65]},{"name":"LINETERMMODE_LAMPS","features":[65]},{"name":"LINETERMMODE_MEDIABIDIRECT","features":[65]},{"name":"LINETERMMODE_MEDIAFROMLINE","features":[65]},{"name":"LINETERMMODE_MEDIATOLINE","features":[65]},{"name":"LINETERMMODE_RINGER","features":[65]},{"name":"LINETERMSHARING_PRIVATE","features":[65]},{"name":"LINETERMSHARING_SHAREDCONF","features":[65]},{"name":"LINETERMSHARING_SHAREDEXCL","features":[65]},{"name":"LINETOLLLISTOPTION_ADD","features":[65]},{"name":"LINETOLLLISTOPTION_REMOVE","features":[65]},{"name":"LINETONEMODE_BEEP","features":[65]},{"name":"LINETONEMODE_BILLING","features":[65]},{"name":"LINETONEMODE_BUSY","features":[65]},{"name":"LINETONEMODE_CUSTOM","features":[65]},{"name":"LINETONEMODE_RINGBACK","features":[65]},{"name":"LINETRANSFERMODE_CONFERENCE","features":[65]},{"name":"LINETRANSFERMODE_TRANSFER","features":[65]},{"name":"LINETRANSLATECAPS","features":[65]},{"name":"LINETRANSLATEOPTION_CANCELCALLWAITING","features":[65]},{"name":"LINETRANSLATEOPTION_CARDOVERRIDE","features":[65]},{"name":"LINETRANSLATEOPTION_FORCELD","features":[65]},{"name":"LINETRANSLATEOPTION_FORCELOCAL","features":[65]},{"name":"LINETRANSLATEOUTPUT","features":[65]},{"name":"LINETRANSLATERESULT_CANONICAL","features":[65]},{"name":"LINETRANSLATERESULT_DIALBILLING","features":[65]},{"name":"LINETRANSLATERESULT_DIALDIALTONE","features":[65]},{"name":"LINETRANSLATERESULT_DIALPROMPT","features":[65]},{"name":"LINETRANSLATERESULT_DIALQUIET","features":[65]},{"name":"LINETRANSLATERESULT_INTERNATIONAL","features":[65]},{"name":"LINETRANSLATERESULT_INTOLLLIST","features":[65]},{"name":"LINETRANSLATERESULT_LOCAL","features":[65]},{"name":"LINETRANSLATERESULT_LONGDISTANCE","features":[65]},{"name":"LINETRANSLATERESULT_NOTINTOLLLIST","features":[65]},{"name":"LINETRANSLATERESULT_NOTRANSLATION","features":[65]},{"name":"LINETRANSLATERESULT_VOICEDETECT","features":[65]},{"name":"LINETSPIOPTION_NONREENTRANT","features":[65]},{"name":"LINE_ADDRESSSTATE","features":[65]},{"name":"LINE_AGENTSESSIONSTATUS","features":[65]},{"name":"LINE_AGENTSPECIFIC","features":[65]},{"name":"LINE_AGENTSTATUS","features":[65]},{"name":"LINE_AGENTSTATUSEX","features":[65]},{"name":"LINE_APPNEWCALL","features":[65]},{"name":"LINE_APPNEWCALLHUB","features":[65]},{"name":"LINE_CALLHUBCLOSE","features":[65]},{"name":"LINE_CALLINFO","features":[65]},{"name":"LINE_CALLSTATE","features":[65]},{"name":"LINE_CLOSE","features":[65]},{"name":"LINE_CREATE","features":[65]},{"name":"LINE_DEVSPECIFIC","features":[65]},{"name":"LINE_DEVSPECIFICEX","features":[65]},{"name":"LINE_DEVSPECIFICFEATURE","features":[65]},{"name":"LINE_GATHERDIGITS","features":[65]},{"name":"LINE_GENERATE","features":[65]},{"name":"LINE_GROUPSTATUS","features":[65]},{"name":"LINE_LINEDEVSTATE","features":[65]},{"name":"LINE_MONITORDIGITS","features":[65]},{"name":"LINE_MONITORMEDIA","features":[65]},{"name":"LINE_MONITORTONE","features":[65]},{"name":"LINE_PROXYREQUEST","features":[65]},{"name":"LINE_PROXYSTATUS","features":[65]},{"name":"LINE_QUEUESTATUS","features":[65]},{"name":"LINE_REMOVE","features":[65]},{"name":"LINE_REPLY","features":[65]},{"name":"LINE_REQUEST","features":[65]},{"name":"LM_BROKENFLUTTER","features":[65]},{"name":"LM_DUMMY","features":[65]},{"name":"LM_FLASH","features":[65]},{"name":"LM_FLUTTER","features":[65]},{"name":"LM_OFF","features":[65]},{"name":"LM_STEADY","features":[65]},{"name":"LM_UNKNOWN","features":[65]},{"name":"LM_WINK","features":[65]},{"name":"LPGETTNEFSTREAMCODEPAGE","features":[65]},{"name":"LPOPENTNEFSTREAM","features":[65]},{"name":"LPOPENTNEFSTREAMEX","features":[65]},{"name":"ME_ADDRESS_EVENT","features":[65]},{"name":"ME_ASR_TERMINAL_EVENT","features":[65]},{"name":"ME_CALL_EVENT","features":[65]},{"name":"ME_FILE_TERMINAL_EVENT","features":[65]},{"name":"ME_PRIVATE_EVENT","features":[65]},{"name":"ME_TONE_TERMINAL_EVENT","features":[65]},{"name":"ME_TSP_DATA","features":[65]},{"name":"ME_TTS_TERMINAL_EVENT","features":[65]},{"name":"MSP_ADDRESS_EVENT","features":[65]},{"name":"MSP_CALL_EVENT","features":[65]},{"name":"MSP_CALL_EVENT_CAUSE","features":[65]},{"name":"MSP_EVENT","features":[65]},{"name":"MSP_EVENT_INFO","features":[65]},{"name":"McastAddressAllocation","features":[65]},{"name":"NSID","features":[65]},{"name":"OPENTNEFSTREAM","features":[65]},{"name":"OPENTNEFSTREAMEX","features":[65]},{"name":"OT_CONFERENCE","features":[65]},{"name":"OT_USER","features":[65]},{"name":"OpenTnefStream","features":[65]},{"name":"OpenTnefStreamEx","features":[65]},{"name":"PBF_ABBREVDIAL","features":[65]},{"name":"PBF_BRIDGEDAPP","features":[65]},{"name":"PBF_BUSY","features":[65]},{"name":"PBF_CALLAPP","features":[65]},{"name":"PBF_CALLID","features":[65]},{"name":"PBF_CAMPON","features":[65]},{"name":"PBF_CONFERENCE","features":[65]},{"name":"PBF_CONNECT","features":[65]},{"name":"PBF_COVER","features":[65]},{"name":"PBF_DATAOFF","features":[65]},{"name":"PBF_DATAON","features":[65]},{"name":"PBF_DATETIME","features":[65]},{"name":"PBF_DIRECTORY","features":[65]},{"name":"PBF_DISCONNECT","features":[65]},{"name":"PBF_DONOTDISTURB","features":[65]},{"name":"PBF_DROP","features":[65]},{"name":"PBF_FLASH","features":[65]},{"name":"PBF_FORWARD","features":[65]},{"name":"PBF_HOLD","features":[65]},{"name":"PBF_INTERCOM","features":[65]},{"name":"PBF_LASTNUM","features":[65]},{"name":"PBF_MSGINDICATOR","features":[65]},{"name":"PBF_MSGWAITOFF","features":[65]},{"name":"PBF_MSGWAITON","features":[65]},{"name":"PBF_MUTE","features":[65]},{"name":"PBF_NIGHTSRV","features":[65]},{"name":"PBF_NONE","features":[65]},{"name":"PBF_PARK","features":[65]},{"name":"PBF_PICKUP","features":[65]},{"name":"PBF_QUEUECALL","features":[65]},{"name":"PBF_RECALL","features":[65]},{"name":"PBF_REDIRECT","features":[65]},{"name":"PBF_REJECT","features":[65]},{"name":"PBF_REPDIAL","features":[65]},{"name":"PBF_RINGAGAIN","features":[65]},{"name":"PBF_SAVEREPEAT","features":[65]},{"name":"PBF_SELECTRING","features":[65]},{"name":"PBF_SEND","features":[65]},{"name":"PBF_SENDCALLS","features":[65]},{"name":"PBF_SETREPDIAL","features":[65]},{"name":"PBF_SPEAKEROFF","features":[65]},{"name":"PBF_SPEAKERON","features":[65]},{"name":"PBF_STATIONSPEED","features":[65]},{"name":"PBF_SYSTEMSPEED","features":[65]},{"name":"PBF_TRANSFER","features":[65]},{"name":"PBF_UNKNOWN","features":[65]},{"name":"PBF_VOLUMEDOWN","features":[65]},{"name":"PBF_VOLUMEUP","features":[65]},{"name":"PBM_CALL","features":[65]},{"name":"PBM_DISPLAY","features":[65]},{"name":"PBM_DUMMY","features":[65]},{"name":"PBM_FEATURE","features":[65]},{"name":"PBM_KEYPAD","features":[65]},{"name":"PBM_LOCAL","features":[65]},{"name":"PBS_DOWN","features":[65]},{"name":"PBS_UNAVAIL","features":[65]},{"name":"PBS_UNKNOWN","features":[65]},{"name":"PBS_UP","features":[65]},{"name":"PCB_DEVSPECIFICBUFFER","features":[65]},{"name":"PCL_DISPLAYNUMCOLUMNS","features":[65]},{"name":"PCL_DISPLAYNUMROWS","features":[65]},{"name":"PCL_GENERICPHONE","features":[65]},{"name":"PCL_HANDSETHOOKSWITCHMODES","features":[65]},{"name":"PCL_HEADSETHOOKSWITCHMODES","features":[65]},{"name":"PCL_HOOKSWITCHES","features":[65]},{"name":"PCL_NUMBUTTONLAMPS","features":[65]},{"name":"PCL_NUMRINGMODES","features":[65]},{"name":"PCL_SPEAKERPHONEHOOKSWITCHMODES","features":[65]},{"name":"PCS_PHONEINFO","features":[65]},{"name":"PCS_PHONENAME","features":[65]},{"name":"PCS_PROVIDERINFO","features":[65]},{"name":"PE_ANSWER","features":[65]},{"name":"PE_BUTTON","features":[65]},{"name":"PE_CAPSCHANGE","features":[65]},{"name":"PE_CLOSE","features":[65]},{"name":"PE_DIALING","features":[65]},{"name":"PE_DISCONNECT","features":[65]},{"name":"PE_DISPLAY","features":[65]},{"name":"PE_HOOKSWITCH","features":[65]},{"name":"PE_LAMPMODE","features":[65]},{"name":"PE_LASTITEM","features":[65]},{"name":"PE_NUMBERGATHERED","features":[65]},{"name":"PE_RINGMODE","features":[65]},{"name":"PE_RINGVOLUME","features":[65]},{"name":"PHONEBUTTONFUNCTION_ABBREVDIAL","features":[65]},{"name":"PHONEBUTTONFUNCTION_BRIDGEDAPP","features":[65]},{"name":"PHONEBUTTONFUNCTION_BUSY","features":[65]},{"name":"PHONEBUTTONFUNCTION_CALLAPP","features":[65]},{"name":"PHONEBUTTONFUNCTION_CALLID","features":[65]},{"name":"PHONEBUTTONFUNCTION_CAMPON","features":[65]},{"name":"PHONEBUTTONFUNCTION_CONFERENCE","features":[65]},{"name":"PHONEBUTTONFUNCTION_CONNECT","features":[65]},{"name":"PHONEBUTTONFUNCTION_COVER","features":[65]},{"name":"PHONEBUTTONFUNCTION_DATAOFF","features":[65]},{"name":"PHONEBUTTONFUNCTION_DATAON","features":[65]},{"name":"PHONEBUTTONFUNCTION_DATETIME","features":[65]},{"name":"PHONEBUTTONFUNCTION_DIRECTORY","features":[65]},{"name":"PHONEBUTTONFUNCTION_DISCONNECT","features":[65]},{"name":"PHONEBUTTONFUNCTION_DONOTDISTURB","features":[65]},{"name":"PHONEBUTTONFUNCTION_DROP","features":[65]},{"name":"PHONEBUTTONFUNCTION_FLASH","features":[65]},{"name":"PHONEBUTTONFUNCTION_FORWARD","features":[65]},{"name":"PHONEBUTTONFUNCTION_HOLD","features":[65]},{"name":"PHONEBUTTONFUNCTION_INTERCOM","features":[65]},{"name":"PHONEBUTTONFUNCTION_LASTNUM","features":[65]},{"name":"PHONEBUTTONFUNCTION_MSGINDICATOR","features":[65]},{"name":"PHONEBUTTONFUNCTION_MSGWAITOFF","features":[65]},{"name":"PHONEBUTTONFUNCTION_MSGWAITON","features":[65]},{"name":"PHONEBUTTONFUNCTION_MUTE","features":[65]},{"name":"PHONEBUTTONFUNCTION_NIGHTSRV","features":[65]},{"name":"PHONEBUTTONFUNCTION_NONE","features":[65]},{"name":"PHONEBUTTONFUNCTION_PARK","features":[65]},{"name":"PHONEBUTTONFUNCTION_PICKUP","features":[65]},{"name":"PHONEBUTTONFUNCTION_QUEUECALL","features":[65]},{"name":"PHONEBUTTONFUNCTION_RECALL","features":[65]},{"name":"PHONEBUTTONFUNCTION_REDIRECT","features":[65]},{"name":"PHONEBUTTONFUNCTION_REJECT","features":[65]},{"name":"PHONEBUTTONFUNCTION_REPDIAL","features":[65]},{"name":"PHONEBUTTONFUNCTION_RINGAGAIN","features":[65]},{"name":"PHONEBUTTONFUNCTION_SAVEREPEAT","features":[65]},{"name":"PHONEBUTTONFUNCTION_SELECTRING","features":[65]},{"name":"PHONEBUTTONFUNCTION_SEND","features":[65]},{"name":"PHONEBUTTONFUNCTION_SENDCALLS","features":[65]},{"name":"PHONEBUTTONFUNCTION_SETREPDIAL","features":[65]},{"name":"PHONEBUTTONFUNCTION_SPEAKEROFF","features":[65]},{"name":"PHONEBUTTONFUNCTION_SPEAKERON","features":[65]},{"name":"PHONEBUTTONFUNCTION_STATIONSPEED","features":[65]},{"name":"PHONEBUTTONFUNCTION_SYSTEMSPEED","features":[65]},{"name":"PHONEBUTTONFUNCTION_TRANSFER","features":[65]},{"name":"PHONEBUTTONFUNCTION_UNKNOWN","features":[65]},{"name":"PHONEBUTTONFUNCTION_VOLUMEDOWN","features":[65]},{"name":"PHONEBUTTONFUNCTION_VOLUMEUP","features":[65]},{"name":"PHONEBUTTONINFO","features":[65]},{"name":"PHONEBUTTONMODE_CALL","features":[65]},{"name":"PHONEBUTTONMODE_DISPLAY","features":[65]},{"name":"PHONEBUTTONMODE_DUMMY","features":[65]},{"name":"PHONEBUTTONMODE_FEATURE","features":[65]},{"name":"PHONEBUTTONMODE_KEYPAD","features":[65]},{"name":"PHONEBUTTONMODE_LOCAL","features":[65]},{"name":"PHONEBUTTONSTATE_DOWN","features":[65]},{"name":"PHONEBUTTONSTATE_UNAVAIL","features":[65]},{"name":"PHONEBUTTONSTATE_UNKNOWN","features":[65]},{"name":"PHONEBUTTONSTATE_UP","features":[65]},{"name":"PHONECALLBACK","features":[65]},{"name":"PHONECAPS","features":[65]},{"name":"PHONECAPS_BUFFER","features":[65]},{"name":"PHONECAPS_LONG","features":[65]},{"name":"PHONECAPS_STRING","features":[65]},{"name":"PHONEERR_ALLOCATED","features":[65]},{"name":"PHONEERR_BADDEVICEID","features":[65]},{"name":"PHONEERR_DISCONNECTED","features":[65]},{"name":"PHONEERR_INCOMPATIBLEAPIVERSION","features":[65]},{"name":"PHONEERR_INCOMPATIBLEEXTVERSION","features":[65]},{"name":"PHONEERR_INIFILECORRUPT","features":[65]},{"name":"PHONEERR_INUSE","features":[65]},{"name":"PHONEERR_INVALAPPHANDLE","features":[65]},{"name":"PHONEERR_INVALAPPNAME","features":[65]},{"name":"PHONEERR_INVALBUTTONLAMPID","features":[65]},{"name":"PHONEERR_INVALBUTTONMODE","features":[65]},{"name":"PHONEERR_INVALBUTTONSTATE","features":[65]},{"name":"PHONEERR_INVALDATAID","features":[65]},{"name":"PHONEERR_INVALDEVICECLASS","features":[65]},{"name":"PHONEERR_INVALEXTVERSION","features":[65]},{"name":"PHONEERR_INVALHOOKSWITCHDEV","features":[65]},{"name":"PHONEERR_INVALHOOKSWITCHMODE","features":[65]},{"name":"PHONEERR_INVALLAMPMODE","features":[65]},{"name":"PHONEERR_INVALPARAM","features":[65]},{"name":"PHONEERR_INVALPHONEHANDLE","features":[65]},{"name":"PHONEERR_INVALPHONESTATE","features":[65]},{"name":"PHONEERR_INVALPOINTER","features":[65]},{"name":"PHONEERR_INVALPRIVILEGE","features":[65]},{"name":"PHONEERR_INVALRINGMODE","features":[65]},{"name":"PHONEERR_NODEVICE","features":[65]},{"name":"PHONEERR_NODRIVER","features":[65]},{"name":"PHONEERR_NOMEM","features":[65]},{"name":"PHONEERR_NOTOWNER","features":[65]},{"name":"PHONEERR_OPERATIONFAILED","features":[65]},{"name":"PHONEERR_OPERATIONUNAVAIL","features":[65]},{"name":"PHONEERR_REINIT","features":[65]},{"name":"PHONEERR_REQUESTOVERRUN","features":[65]},{"name":"PHONEERR_RESOURCEUNAVAIL","features":[65]},{"name":"PHONEERR_SERVICE_NOT_RUNNING","features":[65]},{"name":"PHONEERR_STRUCTURETOOSMALL","features":[65]},{"name":"PHONEERR_UNINITIALIZED","features":[65]},{"name":"PHONEEVENT","features":[65]},{"name":"PHONEEXTENSIONID","features":[65]},{"name":"PHONEFEATURE_GENERICPHONE","features":[65]},{"name":"PHONEFEATURE_GETBUTTONINFO","features":[65]},{"name":"PHONEFEATURE_GETDATA","features":[65]},{"name":"PHONEFEATURE_GETDISPLAY","features":[65]},{"name":"PHONEFEATURE_GETGAINHANDSET","features":[65]},{"name":"PHONEFEATURE_GETGAINHEADSET","features":[65]},{"name":"PHONEFEATURE_GETGAINSPEAKER","features":[65]},{"name":"PHONEFEATURE_GETHOOKSWITCHHANDSET","features":[65]},{"name":"PHONEFEATURE_GETHOOKSWITCHHEADSET","features":[65]},{"name":"PHONEFEATURE_GETHOOKSWITCHSPEAKER","features":[65]},{"name":"PHONEFEATURE_GETLAMP","features":[65]},{"name":"PHONEFEATURE_GETRING","features":[65]},{"name":"PHONEFEATURE_GETVOLUMEHANDSET","features":[65]},{"name":"PHONEFEATURE_GETVOLUMEHEADSET","features":[65]},{"name":"PHONEFEATURE_GETVOLUMESPEAKER","features":[65]},{"name":"PHONEFEATURE_SETBUTTONINFO","features":[65]},{"name":"PHONEFEATURE_SETDATA","features":[65]},{"name":"PHONEFEATURE_SETDISPLAY","features":[65]},{"name":"PHONEFEATURE_SETGAINHANDSET","features":[65]},{"name":"PHONEFEATURE_SETGAINHEADSET","features":[65]},{"name":"PHONEFEATURE_SETGAINSPEAKER","features":[65]},{"name":"PHONEFEATURE_SETHOOKSWITCHHANDSET","features":[65]},{"name":"PHONEFEATURE_SETHOOKSWITCHHEADSET","features":[65]},{"name":"PHONEFEATURE_SETHOOKSWITCHSPEAKER","features":[65]},{"name":"PHONEFEATURE_SETLAMP","features":[65]},{"name":"PHONEFEATURE_SETRING","features":[65]},{"name":"PHONEFEATURE_SETVOLUMEHANDSET","features":[65]},{"name":"PHONEFEATURE_SETVOLUMEHEADSET","features":[65]},{"name":"PHONEFEATURE_SETVOLUMESPEAKER","features":[65]},{"name":"PHONEHOOKSWITCHDEV_HANDSET","features":[65]},{"name":"PHONEHOOKSWITCHDEV_HEADSET","features":[65]},{"name":"PHONEHOOKSWITCHDEV_SPEAKER","features":[65]},{"name":"PHONEHOOKSWITCHMODE_MIC","features":[65]},{"name":"PHONEHOOKSWITCHMODE_MICSPEAKER","features":[65]},{"name":"PHONEHOOKSWITCHMODE_ONHOOK","features":[65]},{"name":"PHONEHOOKSWITCHMODE_SPEAKER","features":[65]},{"name":"PHONEHOOKSWITCHMODE_UNKNOWN","features":[65]},{"name":"PHONEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[65]},{"name":"PHONEINITIALIZEEXOPTION_USEEVENT","features":[65]},{"name":"PHONEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[65]},{"name":"PHONEINITIALIZEEXPARAMS","features":[65,1]},{"name":"PHONELAMPMODE_BROKENFLUTTER","features":[65]},{"name":"PHONELAMPMODE_DUMMY","features":[65]},{"name":"PHONELAMPMODE_FLASH","features":[65]},{"name":"PHONELAMPMODE_FLUTTER","features":[65]},{"name":"PHONELAMPMODE_OFF","features":[65]},{"name":"PHONELAMPMODE_STEADY","features":[65]},{"name":"PHONELAMPMODE_UNKNOWN","features":[65]},{"name":"PHONELAMPMODE_WINK","features":[65]},{"name":"PHONEMESSAGE","features":[65]},{"name":"PHONEPRIVILEGE_MONITOR","features":[65]},{"name":"PHONEPRIVILEGE_OWNER","features":[65]},{"name":"PHONESTATE_CAPSCHANGE","features":[65]},{"name":"PHONESTATE_CONNECTED","features":[65]},{"name":"PHONESTATE_DEVSPECIFIC","features":[65]},{"name":"PHONESTATE_DISCONNECTED","features":[65]},{"name":"PHONESTATE_DISPLAY","features":[65]},{"name":"PHONESTATE_HANDSETGAIN","features":[65]},{"name":"PHONESTATE_HANDSETHOOKSWITCH","features":[65]},{"name":"PHONESTATE_HANDSETVOLUME","features":[65]},{"name":"PHONESTATE_HEADSETGAIN","features":[65]},{"name":"PHONESTATE_HEADSETHOOKSWITCH","features":[65]},{"name":"PHONESTATE_HEADSETVOLUME","features":[65]},{"name":"PHONESTATE_LAMP","features":[65]},{"name":"PHONESTATE_MONITORS","features":[65]},{"name":"PHONESTATE_OTHER","features":[65]},{"name":"PHONESTATE_OWNER","features":[65]},{"name":"PHONESTATE_REINIT","features":[65]},{"name":"PHONESTATE_REMOVED","features":[65]},{"name":"PHONESTATE_RESUME","features":[65]},{"name":"PHONESTATE_RINGMODE","features":[65]},{"name":"PHONESTATE_RINGVOLUME","features":[65]},{"name":"PHONESTATE_SPEAKERGAIN","features":[65]},{"name":"PHONESTATE_SPEAKERHOOKSWITCH","features":[65]},{"name":"PHONESTATE_SPEAKERVOLUME","features":[65]},{"name":"PHONESTATE_SUSPEND","features":[65]},{"name":"PHONESTATUS","features":[65]},{"name":"PHONESTATUSFLAGS_CONNECTED","features":[65]},{"name":"PHONESTATUSFLAGS_SUSPENDED","features":[65]},{"name":"PHONE_BUTTON","features":[65]},{"name":"PHONE_BUTTON_FUNCTION","features":[65]},{"name":"PHONE_BUTTON_MODE","features":[65]},{"name":"PHONE_BUTTON_STATE","features":[65]},{"name":"PHONE_CLOSE","features":[65]},{"name":"PHONE_CREATE","features":[65]},{"name":"PHONE_DEVSPECIFIC","features":[65]},{"name":"PHONE_EVENT","features":[65]},{"name":"PHONE_HOOK_SWITCH_DEVICE","features":[65]},{"name":"PHONE_HOOK_SWITCH_STATE","features":[65]},{"name":"PHONE_LAMP_MODE","features":[65]},{"name":"PHONE_PRIVILEGE","features":[65]},{"name":"PHONE_REMOVE","features":[65]},{"name":"PHONE_REPLY","features":[65]},{"name":"PHONE_STATE","features":[65]},{"name":"PHONE_TONE","features":[65]},{"name":"PHSD_HANDSET","features":[65]},{"name":"PHSD_HEADSET","features":[65]},{"name":"PHSD_SPEAKERPHONE","features":[65]},{"name":"PHSS_OFFHOOK","features":[65]},{"name":"PHSS_OFFHOOK_MIC_ONLY","features":[65]},{"name":"PHSS_OFFHOOK_SPEAKER_ONLY","features":[65]},{"name":"PHSS_ONHOOK","features":[65]},{"name":"PP_MONITOR","features":[65]},{"name":"PP_OWNER","features":[65]},{"name":"PRIVATEOBJECT_ADDRESS","features":[65]},{"name":"PRIVATEOBJECT_CALL","features":[65]},{"name":"PRIVATEOBJECT_CALLID","features":[65]},{"name":"PRIVATEOBJECT_LINE","features":[65]},{"name":"PRIVATEOBJECT_NONE","features":[65]},{"name":"PRIVATEOBJECT_PHONE","features":[65]},{"name":"PT_BUSY","features":[65]},{"name":"PT_ERRORTONE","features":[65]},{"name":"PT_EXTERNALDIALTONE","features":[65]},{"name":"PT_KEYPADA","features":[65]},{"name":"PT_KEYPADB","features":[65]},{"name":"PT_KEYPADC","features":[65]},{"name":"PT_KEYPADD","features":[65]},{"name":"PT_KEYPADEIGHT","features":[65]},{"name":"PT_KEYPADFIVE","features":[65]},{"name":"PT_KEYPADFOUR","features":[65]},{"name":"PT_KEYPADNINE","features":[65]},{"name":"PT_KEYPADONE","features":[65]},{"name":"PT_KEYPADPOUND","features":[65]},{"name":"PT_KEYPADSEVEN","features":[65]},{"name":"PT_KEYPADSIX","features":[65]},{"name":"PT_KEYPADSTAR","features":[65]},{"name":"PT_KEYPADTHREE","features":[65]},{"name":"PT_KEYPADTWO","features":[65]},{"name":"PT_KEYPADZERO","features":[65]},{"name":"PT_NORMALDIALTONE","features":[65]},{"name":"PT_RINGBACK","features":[65]},{"name":"PT_SILENCE","features":[65]},{"name":"QE_ADMISSIONFAILURE","features":[65]},{"name":"QE_GENERICERROR","features":[65]},{"name":"QE_LASTITEM","features":[65]},{"name":"QE_NOQOS","features":[65]},{"name":"QE_POLICYFAILURE","features":[65]},{"name":"QOS_EVENT","features":[65]},{"name":"QOS_SERVICE_LEVEL","features":[65]},{"name":"QSL_BEST_EFFORT","features":[65]},{"name":"QSL_IF_AVAILABLE","features":[65]},{"name":"QSL_NEEDED","features":[65]},{"name":"RAS_LOCAL","features":[65]},{"name":"RAS_REGION","features":[65]},{"name":"RAS_SITE","features":[65]},{"name":"RAS_WORLD","features":[65]},{"name":"RENDBIND_AUTHENTICATE","features":[65]},{"name":"RENDBIND_DEFAULTCREDENTIALS","features":[65]},{"name":"RENDBIND_DEFAULTDOMAINNAME","features":[65]},{"name":"RENDBIND_DEFAULTPASSWORD","features":[65]},{"name":"RENDBIND_DEFAULTUSERNAME","features":[65]},{"name":"RENDDATA","features":[65]},{"name":"RND_ADVERTISING_SCOPE","features":[65]},{"name":"Rendezvous","features":[65]},{"name":"RequestMakeCall","features":[65]},{"name":"STRINGFORMAT_ASCII","features":[65]},{"name":"STRINGFORMAT_BINARY","features":[65]},{"name":"STRINGFORMAT_DBCS","features":[65]},{"name":"STRINGFORMAT_UNICODE","features":[65]},{"name":"STRM_CONFIGURED","features":[65]},{"name":"STRM_INITIAL","features":[65]},{"name":"STRM_PAUSED","features":[65]},{"name":"STRM_RUNNING","features":[65]},{"name":"STRM_STOPPED","features":[65]},{"name":"STRM_TERMINALSELECTED","features":[65]},{"name":"STnefProblem","features":[65]},{"name":"STnefProblemArray","features":[65]},{"name":"TAPI","features":[65]},{"name":"TAPIERR_CONNECTED","features":[65]},{"name":"TAPIERR_DESTBUSY","features":[65]},{"name":"TAPIERR_DESTNOANSWER","features":[65]},{"name":"TAPIERR_DESTUNAVAIL","features":[65]},{"name":"TAPIERR_DEVICECLASSUNAVAIL","features":[65]},{"name":"TAPIERR_DEVICEIDUNAVAIL","features":[65]},{"name":"TAPIERR_DEVICEINUSE","features":[65]},{"name":"TAPIERR_DROPPED","features":[65]},{"name":"TAPIERR_INVALDESTADDRESS","features":[65]},{"name":"TAPIERR_INVALDEVICECLASS","features":[65]},{"name":"TAPIERR_INVALDEVICEID","features":[65]},{"name":"TAPIERR_INVALPOINTER","features":[65]},{"name":"TAPIERR_INVALWINDOWHANDLE","features":[65]},{"name":"TAPIERR_MMCWRITELOCKED","features":[65]},{"name":"TAPIERR_NOREQUESTRECIPIENT","features":[65]},{"name":"TAPIERR_NOTADMIN","features":[65]},{"name":"TAPIERR_PROVIDERALREADYINSTALLED","features":[65]},{"name":"TAPIERR_REQUESTCANCELLED","features":[65]},{"name":"TAPIERR_REQUESTFAILED","features":[65]},{"name":"TAPIERR_REQUESTQUEUEFULL","features":[65]},{"name":"TAPIERR_SCP_ALREADY_EXISTS","features":[65]},{"name":"TAPIERR_SCP_DOES_NOT_EXIST","features":[65]},{"name":"TAPIERR_UNKNOWNREQUESTID","features":[65]},{"name":"TAPIERR_UNKNOWNWINHANDLE","features":[65]},{"name":"TAPIMAXAPPNAMESIZE","features":[65]},{"name":"TAPIMAXCALLEDPARTYSIZE","features":[65]},{"name":"TAPIMAXCOMMENTSIZE","features":[65]},{"name":"TAPIMAXDESTADDRESSSIZE","features":[65]},{"name":"TAPIMAXDEVICECLASSSIZE","features":[65]},{"name":"TAPIMAXDEVICEIDSIZE","features":[65]},{"name":"TAPIMEDIATYPE_AUDIO","features":[65]},{"name":"TAPIMEDIATYPE_DATAMODEM","features":[65]},{"name":"TAPIMEDIATYPE_G3FAX","features":[65]},{"name":"TAPIMEDIATYPE_MULTITRACK","features":[65]},{"name":"TAPIMEDIATYPE_VIDEO","features":[65]},{"name":"TAPIOBJECT_EVENT","features":[65]},{"name":"TAPI_CURRENT_VERSION","features":[65]},{"name":"TAPI_CUSTOMTONE","features":[65]},{"name":"TAPI_DETECTTONE","features":[65]},{"name":"TAPI_EVENT","features":[65]},{"name":"TAPI_E_ADDRESSBLOCKED","features":[65]},{"name":"TAPI_E_ALLOCATED","features":[65]},{"name":"TAPI_E_BILLINGREJECTED","features":[65]},{"name":"TAPI_E_CALLCENTER_GROUP_REMOVED","features":[65]},{"name":"TAPI_E_CALLCENTER_INVALAGENTACTIVITY","features":[65]},{"name":"TAPI_E_CALLCENTER_INVALAGENTGROUP","features":[65]},{"name":"TAPI_E_CALLCENTER_INVALAGENTID","features":[65]},{"name":"TAPI_E_CALLCENTER_INVALAGENTSTATE","features":[65]},{"name":"TAPI_E_CALLCENTER_INVALPASSWORD","features":[65]},{"name":"TAPI_E_CALLCENTER_NO_AGENT_ID","features":[65]},{"name":"TAPI_E_CALLCENTER_QUEUE_REMOVED","features":[65]},{"name":"TAPI_E_CALLNOTSELECTED","features":[65]},{"name":"TAPI_E_CALLUNAVAIL","features":[65]},{"name":"TAPI_E_COMPLETIONOVERRUN","features":[65]},{"name":"TAPI_E_CONFERENCEFULL","features":[65]},{"name":"TAPI_E_DESTBUSY","features":[65]},{"name":"TAPI_E_DESTNOANSWER","features":[65]},{"name":"TAPI_E_DESTUNAVAIL","features":[65]},{"name":"TAPI_E_DIALMODIFIERNOTSUPPORTED","features":[65]},{"name":"TAPI_E_DROPPED","features":[65]},{"name":"TAPI_E_INUSE","features":[65]},{"name":"TAPI_E_INVALADDRESS","features":[65]},{"name":"TAPI_E_INVALADDRESSSTATE","features":[65]},{"name":"TAPI_E_INVALADDRESSTYPE","features":[65]},{"name":"TAPI_E_INVALBUTTONLAMPID","features":[65]},{"name":"TAPI_E_INVALBUTTONSTATE","features":[65]},{"name":"TAPI_E_INVALCALLPARAMS","features":[65]},{"name":"TAPI_E_INVALCALLPRIVILEGE","features":[65]},{"name":"TAPI_E_INVALCALLSTATE","features":[65]},{"name":"TAPI_E_INVALCARD","features":[65]},{"name":"TAPI_E_INVALCOMPLETIONID","features":[65]},{"name":"TAPI_E_INVALCOUNTRYCODE","features":[65]},{"name":"TAPI_E_INVALDATAID","features":[65]},{"name":"TAPI_E_INVALDEVICECLASS","features":[65]},{"name":"TAPI_E_INVALDIALPARAMS","features":[65]},{"name":"TAPI_E_INVALDIGITS","features":[65]},{"name":"TAPI_E_INVALFEATURE","features":[65]},{"name":"TAPI_E_INVALGROUPID","features":[65]},{"name":"TAPI_E_INVALHOOKSWITCHDEV","features":[65]},{"name":"TAPI_E_INVALIDDIRECTION","features":[65]},{"name":"TAPI_E_INVALIDMEDIATYPE","features":[65]},{"name":"TAPI_E_INVALIDSTREAM","features":[65]},{"name":"TAPI_E_INVALIDSTREAMSTATE","features":[65]},{"name":"TAPI_E_INVALIDTERMINAL","features":[65]},{"name":"TAPI_E_INVALIDTERMINALCLASS","features":[65]},{"name":"TAPI_E_INVALLIST","features":[65]},{"name":"TAPI_E_INVALLOCATION","features":[65]},{"name":"TAPI_E_INVALMESSAGEID","features":[65]},{"name":"TAPI_E_INVALMODE","features":[65]},{"name":"TAPI_E_INVALPARKID","features":[65]},{"name":"TAPI_E_INVALPRIVILEGE","features":[65]},{"name":"TAPI_E_INVALRATE","features":[65]},{"name":"TAPI_E_INVALTIMEOUT","features":[65]},{"name":"TAPI_E_INVALTONE","features":[65]},{"name":"TAPI_E_MAXSTREAMS","features":[65]},{"name":"TAPI_E_MAXTERMINALS","features":[65]},{"name":"TAPI_E_NOCONFERENCE","features":[65]},{"name":"TAPI_E_NODEVICE","features":[65]},{"name":"TAPI_E_NODRIVER","features":[65]},{"name":"TAPI_E_NOEVENT","features":[65]},{"name":"TAPI_E_NOFORMAT","features":[65]},{"name":"TAPI_E_NOITEMS","features":[65]},{"name":"TAPI_E_NOREQUEST","features":[65]},{"name":"TAPI_E_NOREQUESTRECIPIENT","features":[65]},{"name":"TAPI_E_NOTENOUGHMEMORY","features":[65]},{"name":"TAPI_E_NOTERMINALSELECTED","features":[65]},{"name":"TAPI_E_NOTOWNER","features":[65]},{"name":"TAPI_E_NOTREGISTERED","features":[65]},{"name":"TAPI_E_NOTSTOPPED","features":[65]},{"name":"TAPI_E_NOTSUPPORTED","features":[65]},{"name":"TAPI_E_NOT_INITIALIZED","features":[65]},{"name":"TAPI_E_OPERATIONFAILED","features":[65]},{"name":"TAPI_E_PEER_NOT_SET","features":[65]},{"name":"TAPI_E_PHONENOTOPEN","features":[65]},{"name":"TAPI_E_REGISTRY_SETTING_CORRUPT","features":[65]},{"name":"TAPI_E_REINIT","features":[65]},{"name":"TAPI_E_REQUESTCANCELLED","features":[65]},{"name":"TAPI_E_REQUESTFAILED","features":[65]},{"name":"TAPI_E_REQUESTOVERRUN","features":[65]},{"name":"TAPI_E_REQUESTQUEUEFULL","features":[65]},{"name":"TAPI_E_RESOURCEUNAVAIL","features":[65]},{"name":"TAPI_E_SERVICE_NOT_RUNNING","features":[65]},{"name":"TAPI_E_TARGETNOTFOUND","features":[65]},{"name":"TAPI_E_TARGETSELF","features":[65]},{"name":"TAPI_E_TERMINALINUSE","features":[65]},{"name":"TAPI_E_TERMINAL_PEER","features":[65]},{"name":"TAPI_E_TIMEOUT","features":[65]},{"name":"TAPI_E_USERUSERINFOTOOBIG","features":[65]},{"name":"TAPI_E_WRONGEVENT","features":[65]},{"name":"TAPI_E_WRONG_STATE","features":[65]},{"name":"TAPI_GATHERTERM","features":[65]},{"name":"TAPI_OBJECT_TYPE","features":[65]},{"name":"TAPI_REPLY","features":[65]},{"name":"TAPI_TONEMODE","features":[65]},{"name":"TD_BIDIRECTIONAL","features":[65]},{"name":"TD_CAPTURE","features":[65]},{"name":"TD_MULTITRACK_MIXED","features":[65]},{"name":"TD_NONE","features":[65]},{"name":"TD_RENDER","features":[65]},{"name":"TERMINAL_DIRECTION","features":[65]},{"name":"TERMINAL_MEDIA_STATE","features":[65]},{"name":"TERMINAL_STATE","features":[65]},{"name":"TERMINAL_TYPE","features":[65]},{"name":"TE_ACDGROUP","features":[65]},{"name":"TE_ADDRESS","features":[65]},{"name":"TE_ADDRESSCLOSE","features":[65]},{"name":"TE_ADDRESSCREATE","features":[65]},{"name":"TE_ADDRESSDEVSPECIFIC","features":[65]},{"name":"TE_ADDRESSREMOVE","features":[65]},{"name":"TE_AGENT","features":[65]},{"name":"TE_AGENTHANDLER","features":[65]},{"name":"TE_AGENTSESSION","features":[65]},{"name":"TE_ASRTERMINAL","features":[65]},{"name":"TE_CALLHUB","features":[65]},{"name":"TE_CALLINFOCHANGE","features":[65]},{"name":"TE_CALLMEDIA","features":[65]},{"name":"TE_CALLNOTIFICATION","features":[65]},{"name":"TE_CALLSTATE","features":[65]},{"name":"TE_DIGITEVENT","features":[65]},{"name":"TE_FILETERMINAL","features":[65]},{"name":"TE_GATHERDIGITS","features":[65]},{"name":"TE_GENERATEEVENT","features":[65]},{"name":"TE_PHONECREATE","features":[65]},{"name":"TE_PHONEDEVSPECIFIC","features":[65]},{"name":"TE_PHONEEVENT","features":[65]},{"name":"TE_PHONEREMOVE","features":[65]},{"name":"TE_PRIVATE","features":[65]},{"name":"TE_QOSEVENT","features":[65]},{"name":"TE_QUEUE","features":[65]},{"name":"TE_REINIT","features":[65]},{"name":"TE_REQUEST","features":[65]},{"name":"TE_TAPIOBJECT","features":[65]},{"name":"TE_TONEEVENT","features":[65]},{"name":"TE_TONETERMINAL","features":[65]},{"name":"TE_TRANSLATECHANGE","features":[65]},{"name":"TE_TTSTERMINAL","features":[65]},{"name":"TGT_BUFFERFULL","features":[65]},{"name":"TGT_CANCEL","features":[65]},{"name":"TGT_FIRSTTIMEOUT","features":[65]},{"name":"TGT_INTERTIMEOUT","features":[65]},{"name":"TGT_TERMDIGIT","features":[65]},{"name":"TMS_ACTIVE","features":[65]},{"name":"TMS_IDLE","features":[65]},{"name":"TMS_LASTITEM","features":[65]},{"name":"TMS_PAUSED","features":[65]},{"name":"TOT_ADDRESS","features":[65]},{"name":"TOT_CALL","features":[65]},{"name":"TOT_CALLHUB","features":[65]},{"name":"TOT_NONE","features":[65]},{"name":"TOT_PHONE","features":[65]},{"name":"TOT_TAPI","features":[65]},{"name":"TOT_TERMINAL","features":[65]},{"name":"TRP","features":[65]},{"name":"TSPI_LINEACCEPT","features":[65]},{"name":"TSPI_LINEADDTOCONFERENCE","features":[65]},{"name":"TSPI_LINEANSWER","features":[65]},{"name":"TSPI_LINEBLINDTRANSFER","features":[65]},{"name":"TSPI_LINECLOSE","features":[65]},{"name":"TSPI_LINECLOSECALL","features":[65]},{"name":"TSPI_LINECLOSEMSPINSTANCE","features":[65]},{"name":"TSPI_LINECOMPLETECALL","features":[65]},{"name":"TSPI_LINECOMPLETETRANSFER","features":[65]},{"name":"TSPI_LINECONDITIONALMEDIADETECTION","features":[65]},{"name":"TSPI_LINECONFIGDIALOG","features":[65]},{"name":"TSPI_LINECONFIGDIALOGEDIT","features":[65]},{"name":"TSPI_LINECREATEMSPINSTANCE","features":[65]},{"name":"TSPI_LINEDEVSPECIFIC","features":[65]},{"name":"TSPI_LINEDEVSPECIFICFEATURE","features":[65]},{"name":"TSPI_LINEDIAL","features":[65]},{"name":"TSPI_LINEDROP","features":[65]},{"name":"TSPI_LINEDROPNOOWNER","features":[65]},{"name":"TSPI_LINEDROPONCLOSE","features":[65]},{"name":"TSPI_LINEFORWARD","features":[65]},{"name":"TSPI_LINEGATHERDIGITS","features":[65]},{"name":"TSPI_LINEGENERATEDIGITS","features":[65]},{"name":"TSPI_LINEGENERATETONE","features":[65]},{"name":"TSPI_LINEGETADDRESSCAPS","features":[65]},{"name":"TSPI_LINEGETADDRESSID","features":[65]},{"name":"TSPI_LINEGETADDRESSSTATUS","features":[65]},{"name":"TSPI_LINEGETCALLADDRESSID","features":[65]},{"name":"TSPI_LINEGETCALLHUBTRACKING","features":[65]},{"name":"TSPI_LINEGETCALLID","features":[65]},{"name":"TSPI_LINEGETCALLINFO","features":[65]},{"name":"TSPI_LINEGETCALLSTATUS","features":[65]},{"name":"TSPI_LINEGETDEVCAPS","features":[65]},{"name":"TSPI_LINEGETDEVCONFIG","features":[65]},{"name":"TSPI_LINEGETEXTENSIONID","features":[65]},{"name":"TSPI_LINEGETICON","features":[65]},{"name":"TSPI_LINEGETID","features":[65]},{"name":"TSPI_LINEGETLINEDEVSTATUS","features":[65]},{"name":"TSPI_LINEGETNUMADDRESSIDS","features":[65]},{"name":"TSPI_LINEHOLD","features":[65]},{"name":"TSPI_LINEMAKECALL","features":[65]},{"name":"TSPI_LINEMONITORDIGITS","features":[65]},{"name":"TSPI_LINEMONITORMEDIA","features":[65]},{"name":"TSPI_LINEMONITORTONES","features":[65]},{"name":"TSPI_LINEMSPIDENTIFY","features":[65]},{"name":"TSPI_LINENEGOTIATEEXTVERSION","features":[65]},{"name":"TSPI_LINENEGOTIATETSPIVERSION","features":[65]},{"name":"TSPI_LINEOPEN","features":[65]},{"name":"TSPI_LINEPARK","features":[65]},{"name":"TSPI_LINEPICKUP","features":[65]},{"name":"TSPI_LINEPREPAREADDTOCONFERENCE","features":[65]},{"name":"TSPI_LINERECEIVEMSPDATA","features":[65]},{"name":"TSPI_LINEREDIRECT","features":[65]},{"name":"TSPI_LINERELEASEUSERUSERINFO","features":[65]},{"name":"TSPI_LINEREMOVEFROMCONFERENCE","features":[65]},{"name":"TSPI_LINESECURECALL","features":[65]},{"name":"TSPI_LINESELECTEXTVERSION","features":[65]},{"name":"TSPI_LINESENDUSERUSERINFO","features":[65]},{"name":"TSPI_LINESETAPPSPECIFIC","features":[65]},{"name":"TSPI_LINESETCALLHUBTRACKING","features":[65]},{"name":"TSPI_LINESETCALLPARAMS","features":[65]},{"name":"TSPI_LINESETCURRENTLOCATION","features":[65]},{"name":"TSPI_LINESETDEFAULTMEDIADETECTION","features":[65]},{"name":"TSPI_LINESETDEVCONFIG","features":[65]},{"name":"TSPI_LINESETMEDIACONTROL","features":[65]},{"name":"TSPI_LINESETMEDIAMODE","features":[65]},{"name":"TSPI_LINESETSTATUSMESSAGES","features":[65]},{"name":"TSPI_LINESETTERMINAL","features":[65]},{"name":"TSPI_LINESETUPCONFERENCE","features":[65]},{"name":"TSPI_LINESETUPTRANSFER","features":[65]},{"name":"TSPI_LINESWAPHOLD","features":[65]},{"name":"TSPI_LINEUNCOMPLETECALL","features":[65]},{"name":"TSPI_LINEUNHOLD","features":[65]},{"name":"TSPI_LINEUNPARK","features":[65]},{"name":"TSPI_MESSAGE_BASE","features":[65]},{"name":"TSPI_PHONECLOSE","features":[65]},{"name":"TSPI_PHONECONFIGDIALOG","features":[65]},{"name":"TSPI_PHONEDEVSPECIFIC","features":[65]},{"name":"TSPI_PHONEGETBUTTONINFO","features":[65]},{"name":"TSPI_PHONEGETDATA","features":[65]},{"name":"TSPI_PHONEGETDEVCAPS","features":[65]},{"name":"TSPI_PHONEGETDISPLAY","features":[65]},{"name":"TSPI_PHONEGETEXTENSIONID","features":[65]},{"name":"TSPI_PHONEGETGAIN","features":[65]},{"name":"TSPI_PHONEGETHOOKSWITCH","features":[65]},{"name":"TSPI_PHONEGETICON","features":[65]},{"name":"TSPI_PHONEGETID","features":[65]},{"name":"TSPI_PHONEGETLAMP","features":[65]},{"name":"TSPI_PHONEGETRING","features":[65]},{"name":"TSPI_PHONEGETSTATUS","features":[65]},{"name":"TSPI_PHONEGETVOLUME","features":[65]},{"name":"TSPI_PHONENEGOTIATEEXTVERSION","features":[65]},{"name":"TSPI_PHONENEGOTIATETSPIVERSION","features":[65]},{"name":"TSPI_PHONEOPEN","features":[65]},{"name":"TSPI_PHONESELECTEXTVERSION","features":[65]},{"name":"TSPI_PHONESETBUTTONINFO","features":[65]},{"name":"TSPI_PHONESETDATA","features":[65]},{"name":"TSPI_PHONESETDISPLAY","features":[65]},{"name":"TSPI_PHONESETGAIN","features":[65]},{"name":"TSPI_PHONESETHOOKSWITCH","features":[65]},{"name":"TSPI_PHONESETLAMP","features":[65]},{"name":"TSPI_PHONESETRING","features":[65]},{"name":"TSPI_PHONESETSTATUSMESSAGES","features":[65]},{"name":"TSPI_PHONESETVOLUME","features":[65]},{"name":"TSPI_PROC_BASE","features":[65]},{"name":"TSPI_PROVIDERCONFIG","features":[65]},{"name":"TSPI_PROVIDERCREATELINEDEVICE","features":[65]},{"name":"TSPI_PROVIDERCREATEPHONEDEVICE","features":[65]},{"name":"TSPI_PROVIDERENUMDEVICES","features":[65]},{"name":"TSPI_PROVIDERINIT","features":[65]},{"name":"TSPI_PROVIDERINSTALL","features":[65]},{"name":"TSPI_PROVIDERREMOVE","features":[65]},{"name":"TSPI_PROVIDERSHUTDOWN","features":[65]},{"name":"TS_INUSE","features":[65]},{"name":"TS_NOTINUSE","features":[65]},{"name":"TTM_BEEP","features":[65]},{"name":"TTM_BILLING","features":[65]},{"name":"TTM_BUSY","features":[65]},{"name":"TTM_RINGBACK","features":[65]},{"name":"TT_DYNAMIC","features":[65]},{"name":"TT_STATIC","features":[65]},{"name":"TUISPICREATEDIALOGINSTANCEPARAMS","features":[65]},{"name":"TUISPIDLLCALLBACK","features":[65]},{"name":"TUISPIDLL_OBJECT_DIALOGINSTANCE","features":[65]},{"name":"TUISPIDLL_OBJECT_LINEID","features":[65]},{"name":"TUISPIDLL_OBJECT_PHONEID","features":[65]},{"name":"TUISPIDLL_OBJECT_PROVIDERID","features":[65]},{"name":"VARSTRING","features":[65]},{"name":"atypFile","features":[65]},{"name":"atypMax","features":[65]},{"name":"atypNull","features":[65]},{"name":"atypOle","features":[65]},{"name":"atypPicture","features":[65]},{"name":"cbDisplayName","features":[65]},{"name":"cbEmailName","features":[65]},{"name":"cbMaxIdData","features":[65]},{"name":"cbSeverName","features":[65]},{"name":"cbTYPE","features":[65]},{"name":"lineAccept","features":[65]},{"name":"lineAddProvider","features":[65,1]},{"name":"lineAddProviderA","features":[65,1]},{"name":"lineAddProviderW","features":[65,1]},{"name":"lineAddToConference","features":[65]},{"name":"lineAgentSpecific","features":[65]},{"name":"lineAnswer","features":[65]},{"name":"lineBlindTransfer","features":[65]},{"name":"lineBlindTransferA","features":[65]},{"name":"lineBlindTransferW","features":[65]},{"name":"lineClose","features":[65]},{"name":"lineCompleteCall","features":[65]},{"name":"lineCompleteTransfer","features":[65]},{"name":"lineConfigDialog","features":[65,1]},{"name":"lineConfigDialogA","features":[65,1]},{"name":"lineConfigDialogEdit","features":[65,1]},{"name":"lineConfigDialogEditA","features":[65,1]},{"name":"lineConfigDialogEditW","features":[65,1]},{"name":"lineConfigDialogW","features":[65,1]},{"name":"lineConfigProvider","features":[65,1]},{"name":"lineCreateAgentA","features":[65]},{"name":"lineCreateAgentSessionA","features":[65]},{"name":"lineCreateAgentSessionW","features":[65]},{"name":"lineCreateAgentW","features":[65]},{"name":"lineDeallocateCall","features":[65]},{"name":"lineDevSpecific","features":[65]},{"name":"lineDevSpecificFeature","features":[65]},{"name":"lineDial","features":[65]},{"name":"lineDialA","features":[65]},{"name":"lineDialW","features":[65]},{"name":"lineDrop","features":[65]},{"name":"lineForward","features":[65]},{"name":"lineForwardA","features":[65]},{"name":"lineForwardW","features":[65]},{"name":"lineGatherDigits","features":[65]},{"name":"lineGatherDigitsA","features":[65]},{"name":"lineGatherDigitsW","features":[65]},{"name":"lineGenerateDigits","features":[65]},{"name":"lineGenerateDigitsA","features":[65]},{"name":"lineGenerateDigitsW","features":[65]},{"name":"lineGenerateTone","features":[65]},{"name":"lineGetAddressCaps","features":[65]},{"name":"lineGetAddressCapsA","features":[65]},{"name":"lineGetAddressCapsW","features":[65]},{"name":"lineGetAddressID","features":[65]},{"name":"lineGetAddressIDA","features":[65]},{"name":"lineGetAddressIDW","features":[65]},{"name":"lineGetAddressStatus","features":[65]},{"name":"lineGetAddressStatusA","features":[65]},{"name":"lineGetAddressStatusW","features":[65]},{"name":"lineGetAgentActivityListA","features":[65]},{"name":"lineGetAgentActivityListW","features":[65]},{"name":"lineGetAgentCapsA","features":[65]},{"name":"lineGetAgentCapsW","features":[65]},{"name":"lineGetAgentGroupListA","features":[65]},{"name":"lineGetAgentGroupListW","features":[65]},{"name":"lineGetAgentInfo","features":[65,41]},{"name":"lineGetAgentSessionInfo","features":[65,41]},{"name":"lineGetAgentSessionList","features":[65]},{"name":"lineGetAgentStatusA","features":[65]},{"name":"lineGetAgentStatusW","features":[65]},{"name":"lineGetAppPriority","features":[65]},{"name":"lineGetAppPriorityA","features":[65]},{"name":"lineGetAppPriorityW","features":[65]},{"name":"lineGetCallInfo","features":[65]},{"name":"lineGetCallInfoA","features":[65]},{"name":"lineGetCallInfoW","features":[65]},{"name":"lineGetCallStatus","features":[65,1]},{"name":"lineGetConfRelatedCalls","features":[65]},{"name":"lineGetCountry","features":[65]},{"name":"lineGetCountryA","features":[65]},{"name":"lineGetCountryW","features":[65]},{"name":"lineGetDevCaps","features":[65]},{"name":"lineGetDevCapsA","features":[65]},{"name":"lineGetDevCapsW","features":[65]},{"name":"lineGetDevConfig","features":[65]},{"name":"lineGetDevConfigA","features":[65]},{"name":"lineGetDevConfigW","features":[65]},{"name":"lineGetGroupListA","features":[65]},{"name":"lineGetGroupListW","features":[65]},{"name":"lineGetID","features":[65]},{"name":"lineGetIDA","features":[65]},{"name":"lineGetIDW","features":[65]},{"name":"lineGetIcon","features":[65,50]},{"name":"lineGetIconA","features":[65,50]},{"name":"lineGetIconW","features":[65,50]},{"name":"lineGetLineDevStatus","features":[65]},{"name":"lineGetLineDevStatusA","features":[65]},{"name":"lineGetLineDevStatusW","features":[65]},{"name":"lineGetMessage","features":[65]},{"name":"lineGetNewCalls","features":[65]},{"name":"lineGetNumRings","features":[65]},{"name":"lineGetProviderList","features":[65]},{"name":"lineGetProviderListA","features":[65]},{"name":"lineGetProviderListW","features":[65]},{"name":"lineGetProxyStatus","features":[65]},{"name":"lineGetQueueInfo","features":[65]},{"name":"lineGetQueueListA","features":[65]},{"name":"lineGetQueueListW","features":[65]},{"name":"lineGetRequest","features":[65]},{"name":"lineGetRequestA","features":[65]},{"name":"lineGetRequestW","features":[65]},{"name":"lineGetStatusMessages","features":[65]},{"name":"lineGetTranslateCaps","features":[65]},{"name":"lineGetTranslateCapsA","features":[65]},{"name":"lineGetTranslateCapsW","features":[65]},{"name":"lineHandoff","features":[65]},{"name":"lineHandoffA","features":[65]},{"name":"lineHandoffW","features":[65]},{"name":"lineHold","features":[65]},{"name":"lineInitialize","features":[65,1]},{"name":"lineInitializeExA","features":[65,1]},{"name":"lineInitializeExW","features":[65,1]},{"name":"lineMakeCall","features":[65]},{"name":"lineMakeCallA","features":[65]},{"name":"lineMakeCallW","features":[65]},{"name":"lineMonitorDigits","features":[65]},{"name":"lineMonitorMedia","features":[65]},{"name":"lineMonitorTones","features":[65]},{"name":"lineNegotiateAPIVersion","features":[65]},{"name":"lineNegotiateExtVersion","features":[65]},{"name":"lineOpen","features":[65]},{"name":"lineOpenA","features":[65]},{"name":"lineOpenW","features":[65]},{"name":"linePark","features":[65]},{"name":"lineParkA","features":[65]},{"name":"lineParkW","features":[65]},{"name":"linePickup","features":[65]},{"name":"linePickupA","features":[65]},{"name":"linePickupW","features":[65]},{"name":"linePrepareAddToConference","features":[65]},{"name":"linePrepareAddToConferenceA","features":[65]},{"name":"linePrepareAddToConferenceW","features":[65]},{"name":"lineProxyMessage","features":[65]},{"name":"lineProxyResponse","features":[65,41]},{"name":"lineRedirect","features":[65]},{"name":"lineRedirectA","features":[65]},{"name":"lineRedirectW","features":[65]},{"name":"lineRegisterRequestRecipient","features":[65]},{"name":"lineReleaseUserUserInfo","features":[65]},{"name":"lineRemoveFromConference","features":[65]},{"name":"lineRemoveProvider","features":[65,1]},{"name":"lineSecureCall","features":[65]},{"name":"lineSendUserUserInfo","features":[65]},{"name":"lineSetAgentActivity","features":[65]},{"name":"lineSetAgentGroup","features":[65]},{"name":"lineSetAgentMeasurementPeriod","features":[65]},{"name":"lineSetAgentSessionState","features":[65]},{"name":"lineSetAgentState","features":[65]},{"name":"lineSetAgentStateEx","features":[65]},{"name":"lineSetAppPriority","features":[65]},{"name":"lineSetAppPriorityA","features":[65]},{"name":"lineSetAppPriorityW","features":[65]},{"name":"lineSetAppSpecific","features":[65]},{"name":"lineSetCallData","features":[65]},{"name":"lineSetCallParams","features":[65]},{"name":"lineSetCallPrivilege","features":[65]},{"name":"lineSetCallQualityOfService","features":[65]},{"name":"lineSetCallTreatment","features":[65]},{"name":"lineSetCurrentLocation","features":[65]},{"name":"lineSetDevConfig","features":[65]},{"name":"lineSetDevConfigA","features":[65]},{"name":"lineSetDevConfigW","features":[65]},{"name":"lineSetLineDevStatus","features":[65]},{"name":"lineSetMediaControl","features":[65]},{"name":"lineSetMediaMode","features":[65]},{"name":"lineSetNumRings","features":[65]},{"name":"lineSetQueueMeasurementPeriod","features":[65]},{"name":"lineSetStatusMessages","features":[65]},{"name":"lineSetTerminal","features":[65]},{"name":"lineSetTollList","features":[65]},{"name":"lineSetTollListA","features":[65]},{"name":"lineSetTollListW","features":[65]},{"name":"lineSetupConference","features":[65]},{"name":"lineSetupConferenceA","features":[65]},{"name":"lineSetupConferenceW","features":[65]},{"name":"lineSetupTransfer","features":[65]},{"name":"lineSetupTransferA","features":[65]},{"name":"lineSetupTransferW","features":[65]},{"name":"lineShutdown","features":[65]},{"name":"lineSwapHold","features":[65]},{"name":"lineTranslateAddress","features":[65]},{"name":"lineTranslateAddressA","features":[65]},{"name":"lineTranslateAddressW","features":[65]},{"name":"lineTranslateDialog","features":[65,1]},{"name":"lineTranslateDialogA","features":[65,1]},{"name":"lineTranslateDialogW","features":[65,1]},{"name":"lineUncompleteCall","features":[65]},{"name":"lineUnhold","features":[65]},{"name":"lineUnpark","features":[65]},{"name":"lineUnparkA","features":[65]},{"name":"lineUnparkW","features":[65]},{"name":"phoneClose","features":[65]},{"name":"phoneConfigDialog","features":[65,1]},{"name":"phoneConfigDialogA","features":[65,1]},{"name":"phoneConfigDialogW","features":[65,1]},{"name":"phoneDevSpecific","features":[65]},{"name":"phoneGetButtonInfo","features":[65]},{"name":"phoneGetButtonInfoA","features":[65]},{"name":"phoneGetButtonInfoW","features":[65]},{"name":"phoneGetData","features":[65]},{"name":"phoneGetDevCaps","features":[65]},{"name":"phoneGetDevCapsA","features":[65]},{"name":"phoneGetDevCapsW","features":[65]},{"name":"phoneGetDisplay","features":[65]},{"name":"phoneGetGain","features":[65]},{"name":"phoneGetHookSwitch","features":[65]},{"name":"phoneGetID","features":[65]},{"name":"phoneGetIDA","features":[65]},{"name":"phoneGetIDW","features":[65]},{"name":"phoneGetIcon","features":[65,50]},{"name":"phoneGetIconA","features":[65,50]},{"name":"phoneGetIconW","features":[65,50]},{"name":"phoneGetLamp","features":[65]},{"name":"phoneGetMessage","features":[65]},{"name":"phoneGetRing","features":[65]},{"name":"phoneGetStatus","features":[65]},{"name":"phoneGetStatusA","features":[65]},{"name":"phoneGetStatusMessages","features":[65]},{"name":"phoneGetStatusW","features":[65]},{"name":"phoneGetVolume","features":[65]},{"name":"phoneInitialize","features":[65,1]},{"name":"phoneInitializeExA","features":[65,1]},{"name":"phoneInitializeExW","features":[65,1]},{"name":"phoneNegotiateAPIVersion","features":[65]},{"name":"phoneNegotiateExtVersion","features":[65]},{"name":"phoneOpen","features":[65]},{"name":"phoneSetButtonInfo","features":[65]},{"name":"phoneSetButtonInfoA","features":[65]},{"name":"phoneSetButtonInfoW","features":[65]},{"name":"phoneSetData","features":[65]},{"name":"phoneSetDisplay","features":[65]},{"name":"phoneSetGain","features":[65]},{"name":"phoneSetHookSwitch","features":[65]},{"name":"phoneSetLamp","features":[65]},{"name":"phoneSetRing","features":[65]},{"name":"phoneSetStatusMessages","features":[65]},{"name":"phoneSetVolume","features":[65]},{"name":"phoneShutdown","features":[65]},{"name":"prioHigh","features":[65]},{"name":"prioLow","features":[65]},{"name":"prioNorm","features":[65]},{"name":"tapiGetLocationInfo","features":[65]},{"name":"tapiGetLocationInfoA","features":[65]},{"name":"tapiGetLocationInfoW","features":[65]},{"name":"tapiRequestDrop","features":[65,1]},{"name":"tapiRequestMakeCall","features":[65]},{"name":"tapiRequestMakeCallA","features":[65]},{"name":"tapiRequestMakeCallW","features":[65]},{"name":"tapiRequestMediaCall","features":[65,1]},{"name":"tapiRequestMediaCallA","features":[65,1]},{"name":"tapiRequestMediaCallW","features":[65,1]}],"387":[{"name":"ALLOW_PARTIAL_READS","features":[66]},{"name":"ALL_PIPE","features":[66]},{"name":"ALTERNATE_INTERFACE","features":[66]},{"name":"AUTO_CLEAR_STALL","features":[66]},{"name":"AUTO_FLUSH","features":[66]},{"name":"AUTO_SUSPEND","features":[66]},{"name":"AcquireBusInfo","features":[66]},{"name":"AcquireControllerName","features":[66]},{"name":"AcquireHubName","features":[66]},{"name":"BMREQUEST_CLASS","features":[66]},{"name":"BMREQUEST_DEVICE_TO_HOST","features":[66]},{"name":"BMREQUEST_HOST_TO_DEVICE","features":[66]},{"name":"BMREQUEST_STANDARD","features":[66]},{"name":"BMREQUEST_TO_DEVICE","features":[66]},{"name":"BMREQUEST_TO_ENDPOINT","features":[66]},{"name":"BMREQUEST_TO_INTERFACE","features":[66]},{"name":"BMREQUEST_TO_OTHER","features":[66]},{"name":"BMREQUEST_VENDOR","features":[66]},{"name":"BM_REQUEST_TYPE","features":[66]},{"name":"BULKIN_FLAG","features":[66]},{"name":"CHANNEL_INFO","features":[66]},{"name":"CompositeDevice","features":[66]},{"name":"DEVICE_DESCRIPTOR","features":[66]},{"name":"DEVICE_SPEED","features":[66]},{"name":"DRV_VERSION","features":[66]},{"name":"DeviceCausedOvercurrent","features":[66]},{"name":"DeviceConnected","features":[66]},{"name":"DeviceEnumerating","features":[66]},{"name":"DeviceFailedEnumeration","features":[66]},{"name":"DeviceGeneralFailure","features":[66]},{"name":"DeviceHubNestedTooDeeply","features":[66]},{"name":"DeviceInLegacyHub","features":[66]},{"name":"DeviceNotEnoughBandwidth","features":[66]},{"name":"DeviceNotEnoughPower","features":[66]},{"name":"DeviceReset","features":[66]},{"name":"EHCI_Generic","features":[66]},{"name":"EHCI_Intel_Medfield","features":[66]},{"name":"EHCI_Lucent","features":[66]},{"name":"EHCI_NEC","features":[66]},{"name":"EHCI_NVIDIA_Tegra2","features":[66]},{"name":"EHCI_NVIDIA_Tegra3","features":[66]},{"name":"EVENT_PIPE","features":[66]},{"name":"EnumerationFailure","features":[66]},{"name":"FILE_DEVICE_USB","features":[66]},{"name":"FILE_DEVICE_USB_SCAN","features":[66]},{"name":"FullSpeed","features":[66]},{"name":"GUID_DEVINTERFACE_USB_BILLBOARD","features":[66]},{"name":"GUID_DEVINTERFACE_USB_DEVICE","features":[66]},{"name":"GUID_DEVINTERFACE_USB_HOST_CONTROLLER","features":[66]},{"name":"GUID_DEVINTERFACE_USB_HUB","features":[66]},{"name":"GUID_USB_MSOS20_PLATFORM_CAPABILITY_ID","features":[66]},{"name":"GUID_USB_PERFORMANCE_TRACING","features":[66]},{"name":"GUID_USB_TRANSFER_TRACING","features":[66]},{"name":"GUID_USB_WMI_DEVICE_PERF_INFO","features":[66]},{"name":"GUID_USB_WMI_NODE_INFO","features":[66]},{"name":"GUID_USB_WMI_STD_DATA","features":[66]},{"name":"GUID_USB_WMI_STD_NOTIFICATION","features":[66]},{"name":"GUID_USB_WMI_SURPRISE_REMOVAL_NOTIFICATION","features":[66]},{"name":"GUID_USB_WMI_TRACING","features":[66]},{"name":"HCD_DIAGNOSTIC_MODE_OFF","features":[66]},{"name":"HCD_DIAGNOSTIC_MODE_ON","features":[66]},{"name":"HCD_DISABLE_PORT","features":[66]},{"name":"HCD_ENABLE_PORT","features":[66]},{"name":"HCD_GET_DRIVERKEY_NAME","features":[66]},{"name":"HCD_GET_ROOT_HUB_NAME","features":[66]},{"name":"HCD_GET_STATS_1","features":[66]},{"name":"HCD_GET_STATS_2","features":[66]},{"name":"HCD_ISO_STAT_COUNTERS","features":[66]},{"name":"HCD_STAT_COUNTERS","features":[66]},{"name":"HCD_STAT_INFORMATION_1","features":[66]},{"name":"HCD_STAT_INFORMATION_2","features":[66]},{"name":"HCD_TRACE_READ_REQUEST","features":[66]},{"name":"HCD_USER_REQUEST","features":[66]},{"name":"HUB_DEVICE_CONFIG_INFO","features":[66]},{"name":"HighSpeed","features":[66]},{"name":"HubDevice","features":[66]},{"name":"HubNestedTooDeeply","features":[66]},{"name":"HubOvercurrent","features":[66]},{"name":"HubPowerChange","features":[66]},{"name":"IGNORE_SHORT_PACKETS","features":[66]},{"name":"IOCTL_ABORT_PIPE","features":[66]},{"name":"IOCTL_CANCEL_IO","features":[66]},{"name":"IOCTL_GENERICUSBFN_ACTIVATE_USB_BUS","features":[66]},{"name":"IOCTL_GENERICUSBFN_BUS_EVENT_NOTIFICATION","features":[66]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_IN","features":[66]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_OUT","features":[66]},{"name":"IOCTL_GENERICUSBFN_DEACTIVATE_USB_BUS","features":[66]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO","features":[66]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO_EX","features":[66]},{"name":"IOCTL_GENERICUSBFN_GET_INTERFACE_DESCRIPTOR_SET","features":[66]},{"name":"IOCTL_GENERICUSBFN_GET_PIPE_STATE","features":[66]},{"name":"IOCTL_GENERICUSBFN_REGISTER_USB_STRING","features":[66]},{"name":"IOCTL_GENERICUSBFN_SET_PIPE_STATE","features":[66]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN","features":[66]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN_APPEND_ZERO_PKT","features":[66]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_OUT","features":[66]},{"name":"IOCTL_GET_CHANNEL_ALIGN_RQST","features":[66]},{"name":"IOCTL_GET_DEVICE_DESCRIPTOR","features":[66]},{"name":"IOCTL_GET_HCD_DRIVERKEY_NAME","features":[66]},{"name":"IOCTL_GET_PIPE_CONFIGURATION","features":[66]},{"name":"IOCTL_GET_USB_DESCRIPTOR","features":[66]},{"name":"IOCTL_GET_VERSION","features":[66]},{"name":"IOCTL_INDEX","features":[66]},{"name":"IOCTL_INTERNAL_USB_CYCLE_PORT","features":[66]},{"name":"IOCTL_INTERNAL_USB_ENABLE_PORT","features":[66]},{"name":"IOCTL_INTERNAL_USB_FAIL_GET_STATUS_FROM_DEVICE","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_BUSGUID_INFO","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_BUS_INFO","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_CONTROLLER_NAME","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_CONFIG_INFO","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE_EX","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_COUNT","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_NAME","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_PARENT_HUB_INFO","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_PORT_STATUS","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_ROOTHUB_PDO","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_TOPOLOGY_ADDRESS","features":[66]},{"name":"IOCTL_INTERNAL_USB_GET_TT_DEVICE_HANDLE","features":[66]},{"name":"IOCTL_INTERNAL_USB_NOTIFY_IDLE_READY","features":[66]},{"name":"IOCTL_INTERNAL_USB_RECORD_FAILURE","features":[66]},{"name":"IOCTL_INTERNAL_USB_REGISTER_COMPOSITE_DEVICE","features":[66]},{"name":"IOCTL_INTERNAL_USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[66]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_RESUME","features":[66]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_SUSPEND","features":[66]},{"name":"IOCTL_INTERNAL_USB_RESET_PORT","features":[66]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_IDLE_NOTIFICATION","features":[66]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_URB","features":[66]},{"name":"IOCTL_INTERNAL_USB_UNREGISTER_COMPOSITE_DEVICE","features":[66]},{"name":"IOCTL_READ_REGISTERS","features":[66]},{"name":"IOCTL_RESET_PIPE","features":[66]},{"name":"IOCTL_SEND_USB_REQUEST","features":[66]},{"name":"IOCTL_SET_TIMEOUT","features":[66]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_OFF","features":[66]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_ON","features":[66]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_OFF","features":[66]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_ON","features":[66]},{"name":"IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[66]},{"name":"IOCTL_USB_GET_DEVICE_CHARACTERISTICS","features":[66]},{"name":"IOCTL_USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[66]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES","features":[66]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES_EX","features":[66]},{"name":"IOCTL_USB_GET_HUB_INFORMATION_EX","features":[66]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[66]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[66]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION","features":[66]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[66]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[66]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_NAME","features":[66]},{"name":"IOCTL_USB_GET_NODE_INFORMATION","features":[66]},{"name":"IOCTL_USB_GET_PORT_CONNECTOR_PROPERTIES","features":[66]},{"name":"IOCTL_USB_GET_ROOT_HUB_NAME","features":[66]},{"name":"IOCTL_USB_GET_TRANSPORT_CHARACTERISTICS","features":[66]},{"name":"IOCTL_USB_HCD_DISABLE_PORT","features":[66]},{"name":"IOCTL_USB_HCD_ENABLE_PORT","features":[66]},{"name":"IOCTL_USB_HCD_GET_STATS_1","features":[66]},{"name":"IOCTL_USB_HCD_GET_STATS_2","features":[66]},{"name":"IOCTL_USB_HUB_CYCLE_PORT","features":[66]},{"name":"IOCTL_USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[66]},{"name":"IOCTL_USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[66]},{"name":"IOCTL_USB_RESET_HUB","features":[66]},{"name":"IOCTL_USB_START_TRACKING_FOR_TIME_SYNC","features":[66]},{"name":"IOCTL_USB_STOP_TRACKING_FOR_TIME_SYNC","features":[66]},{"name":"IOCTL_USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[66]},{"name":"IOCTL_WAIT_ON_DEVICE_EVENT","features":[66]},{"name":"IOCTL_WRITE_REGISTERS","features":[66]},{"name":"IO_BLOCK","features":[66]},{"name":"IO_BLOCK_EX","features":[66]},{"name":"InsufficentBandwidth","features":[66]},{"name":"InsufficentPower","features":[66]},{"name":"KREGMANUSBFNENUMPATH","features":[66]},{"name":"KREGUSBFNENUMPATH","features":[66]},{"name":"LowSpeed","features":[66]},{"name":"MAXIMUM_TRANSFER_SIZE","features":[66]},{"name":"MAXIMUM_USB_STRING_LENGTH","features":[66]},{"name":"MAX_ALTERNATE_NAME_LENGTH","features":[66]},{"name":"MAX_ASSOCIATION_NAME_LENGTH","features":[66]},{"name":"MAX_CONFIGURATION_NAME_LENGTH","features":[66]},{"name":"MAX_INTERFACE_NAME_LENGTH","features":[66]},{"name":"MAX_NUM_PIPES","features":[66]},{"name":"MAX_NUM_USBFN_ENDPOINTS","features":[66]},{"name":"MAX_SUPPORTED_CONFIGURATIONS","features":[66]},{"name":"MAX_USB_STRING_LENGTH","features":[66]},{"name":"MS_GENRE_DESCRIPTOR_INDEX","features":[66]},{"name":"MS_OS_FLAGS_CONTAINERID","features":[66]},{"name":"MS_OS_STRING_SIGNATURE","features":[66]},{"name":"MS_POWER_DESCRIPTOR_INDEX","features":[66]},{"name":"ModernDeviceInLegacyHub","features":[66]},{"name":"NoDeviceConnected","features":[66]},{"name":"OHCI_Generic","features":[66]},{"name":"OHCI_Hydra","features":[66]},{"name":"OHCI_NEC","features":[66]},{"name":"OS_STRING","features":[66]},{"name":"OS_STRING_DESCRIPTOR_INDEX","features":[66]},{"name":"OverCurrent","features":[66]},{"name":"PACKET_PARAMETERS","features":[66]},{"name":"PIPE_TRANSFER_TIMEOUT","features":[66]},{"name":"PIPE_TYPE","features":[66]},{"name":"PORT_LINK_STATE_COMPLIANCE_MODE","features":[66]},{"name":"PORT_LINK_STATE_DISABLED","features":[66]},{"name":"PORT_LINK_STATE_HOT_RESET","features":[66]},{"name":"PORT_LINK_STATE_INACTIVE","features":[66]},{"name":"PORT_LINK_STATE_LOOPBACK","features":[66]},{"name":"PORT_LINK_STATE_POLLING","features":[66]},{"name":"PORT_LINK_STATE_RECOVERY","features":[66]},{"name":"PORT_LINK_STATE_RX_DETECT","features":[66]},{"name":"PORT_LINK_STATE_TEST_MODE","features":[66]},{"name":"PORT_LINK_STATE_U0","features":[66]},{"name":"PORT_LINK_STATE_U1","features":[66]},{"name":"PORT_LINK_STATE_U2","features":[66]},{"name":"PORT_LINK_STATE_U3","features":[66]},{"name":"RAW_IO","features":[66]},{"name":"RAW_PIPE_TYPE","features":[66]},{"name":"RAW_RESET_PORT_PARAMETERS","features":[66]},{"name":"RAW_ROOTPORT_FEATURE","features":[66]},{"name":"RAW_ROOTPORT_PARAMETERS","features":[66]},{"name":"READ_DATA_PIPE","features":[66]},{"name":"RESET_PIPE_ON_RESUME","features":[66]},{"name":"ResetOvercurrent","features":[66]},{"name":"SHORT_PACKET_TERMINATE","features":[66]},{"name":"SUSPEND_DELAY","features":[66]},{"name":"UHCI_Generic","features":[66]},{"name":"UHCI_Ich1","features":[66]},{"name":"UHCI_Ich2","features":[66]},{"name":"UHCI_Ich3m","features":[66]},{"name":"UHCI_Ich4","features":[66]},{"name":"UHCI_Ich5","features":[66]},{"name":"UHCI_Ich6","features":[66]},{"name":"UHCI_Intel","features":[66]},{"name":"UHCI_Piix3","features":[66]},{"name":"UHCI_Piix4","features":[66]},{"name":"UHCI_Reserved204","features":[66]},{"name":"UHCI_VIA","features":[66]},{"name":"UHCI_VIA_x01","features":[66]},{"name":"UHCI_VIA_x02","features":[66]},{"name":"UHCI_VIA_x03","features":[66]},{"name":"UHCI_VIA_x04","features":[66]},{"name":"UHCI_VIA_x0E_FIFO","features":[66]},{"name":"URB","features":[66]},{"name":"URB_FUNCTION_ABORT_PIPE","features":[66]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER","features":[66]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER_USING_CHAINED_MDL","features":[66]},{"name":"URB_FUNCTION_CLASS_DEVICE","features":[66]},{"name":"URB_FUNCTION_CLASS_ENDPOINT","features":[66]},{"name":"URB_FUNCTION_CLASS_INTERFACE","features":[66]},{"name":"URB_FUNCTION_CLASS_OTHER","features":[66]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_DEVICE","features":[66]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_ENDPOINT","features":[66]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_INTERFACE","features":[66]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_OTHER","features":[66]},{"name":"URB_FUNCTION_CLOSE_STATIC_STREAMS","features":[66]},{"name":"URB_FUNCTION_CONTROL_TRANSFER","features":[66]},{"name":"URB_FUNCTION_CONTROL_TRANSFER_EX","features":[66]},{"name":"URB_FUNCTION_GET_CONFIGURATION","features":[66]},{"name":"URB_FUNCTION_GET_CURRENT_FRAME_NUMBER","features":[66]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE","features":[66]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_ENDPOINT","features":[66]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_INTERFACE","features":[66]},{"name":"URB_FUNCTION_GET_FRAME_LENGTH","features":[66]},{"name":"URB_FUNCTION_GET_INTERFACE","features":[66]},{"name":"URB_FUNCTION_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[66]},{"name":"URB_FUNCTION_GET_MS_FEATURE_DESCRIPTOR","features":[66]},{"name":"URB_FUNCTION_GET_STATUS_FROM_DEVICE","features":[66]},{"name":"URB_FUNCTION_GET_STATUS_FROM_ENDPOINT","features":[66]},{"name":"URB_FUNCTION_GET_STATUS_FROM_INTERFACE","features":[66]},{"name":"URB_FUNCTION_GET_STATUS_FROM_OTHER","features":[66]},{"name":"URB_FUNCTION_ISOCH_TRANSFER","features":[66]},{"name":"URB_FUNCTION_ISOCH_TRANSFER_USING_CHAINED_MDL","features":[66]},{"name":"URB_FUNCTION_OPEN_STATIC_STREAMS","features":[66]},{"name":"URB_FUNCTION_RELEASE_FRAME_LENGTH_CONTROL","features":[66]},{"name":"URB_FUNCTION_RESERVED_0X0016","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X001D","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X002B","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X002C","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X002D","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X002E","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X002F","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X0033","features":[66]},{"name":"URB_FUNCTION_RESERVE_0X0034","features":[66]},{"name":"URB_FUNCTION_RESET_PIPE","features":[66]},{"name":"URB_FUNCTION_SELECT_CONFIGURATION","features":[66]},{"name":"URB_FUNCTION_SELECT_INTERFACE","features":[66]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_DEVICE","features":[66]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_ENDPOINT","features":[66]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_INTERFACE","features":[66]},{"name":"URB_FUNCTION_SET_FEATURE_TO_DEVICE","features":[66]},{"name":"URB_FUNCTION_SET_FEATURE_TO_ENDPOINT","features":[66]},{"name":"URB_FUNCTION_SET_FEATURE_TO_INTERFACE","features":[66]},{"name":"URB_FUNCTION_SET_FEATURE_TO_OTHER","features":[66]},{"name":"URB_FUNCTION_SET_FRAME_LENGTH","features":[66]},{"name":"URB_FUNCTION_SYNC_CLEAR_STALL","features":[66]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE","features":[66]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL","features":[66]},{"name":"URB_FUNCTION_TAKE_FRAME_LENGTH_CONTROL","features":[66]},{"name":"URB_FUNCTION_VENDOR_DEVICE","features":[66]},{"name":"URB_FUNCTION_VENDOR_ENDPOINT","features":[66]},{"name":"URB_FUNCTION_VENDOR_INTERFACE","features":[66]},{"name":"URB_FUNCTION_VENDOR_OTHER","features":[66]},{"name":"URB_OPEN_STATIC_STREAMS_VERSION_100","features":[66]},{"name":"UREGMANUSBFNENUMPATH","features":[66]},{"name":"UREGUSBFNENUMPATH","features":[66]},{"name":"USBDI_VERSION","features":[66]},{"name":"USBD_DEFAULT_MAXIMUM_TRANSFER_SIZE","features":[66]},{"name":"USBD_DEFAULT_PIPE_TRANSFER","features":[66]},{"name":"USBD_DEVICE_INFORMATION","features":[66]},{"name":"USBD_ENDPOINT_OFFLOAD_INFORMATION","features":[66]},{"name":"USBD_ENDPOINT_OFFLOAD_MODE","features":[66]},{"name":"USBD_INTERFACE_INFORMATION","features":[66]},{"name":"USBD_ISO_PACKET_DESCRIPTOR","features":[66]},{"name":"USBD_ISO_START_FRAME_RANGE","features":[66]},{"name":"USBD_PF_CHANGE_MAX_PACKET","features":[66]},{"name":"USBD_PF_ENABLE_RT_THREAD_ACCESS","features":[66]},{"name":"USBD_PF_HANDLES_SSP_HIGH_BANDWIDTH_ISOCH","features":[66]},{"name":"USBD_PF_INTERACTIVE_PRIORITY","features":[66]},{"name":"USBD_PF_MAP_ADD_TRANSFERS","features":[66]},{"name":"USBD_PF_PRIORITY_MASK","features":[66]},{"name":"USBD_PF_SHORT_PACKET_OPT","features":[66]},{"name":"USBD_PF_SSP_HIGH_BANDWIDTH_ISOCH","features":[66]},{"name":"USBD_PF_VIDEO_PRIORITY","features":[66]},{"name":"USBD_PF_VOICE_PRIORITY","features":[66]},{"name":"USBD_PIPE_INFORMATION","features":[66]},{"name":"USBD_PIPE_TYPE","features":[66]},{"name":"USBD_PORT_CONNECTED","features":[66]},{"name":"USBD_PORT_ENABLED","features":[66]},{"name":"USBD_SHORT_TRANSFER_OK","features":[66]},{"name":"USBD_START_ISO_TRANSFER_ASAP","features":[66]},{"name":"USBD_STREAM_INFORMATION","features":[66]},{"name":"USBD_TRANSFER_DIRECTION","features":[66]},{"name":"USBD_TRANSFER_DIRECTION_IN","features":[66]},{"name":"USBD_TRANSFER_DIRECTION_OUT","features":[66]},{"name":"USBD_VERSION_INFORMATION","features":[66]},{"name":"USBFN_BUS_CONFIGURATION_INFO","features":[66,1]},{"name":"USBFN_BUS_SPEED","features":[66]},{"name":"USBFN_CLASS_INFORMATION_PACKET","features":[66,1]},{"name":"USBFN_CLASS_INFORMATION_PACKET_EX","features":[66,1]},{"name":"USBFN_CLASS_INTERFACE","features":[66]},{"name":"USBFN_CLASS_INTERFACE_EX","features":[66]},{"name":"USBFN_DEVICE_STATE","features":[66]},{"name":"USBFN_DIRECTION","features":[66]},{"name":"USBFN_EVENT","features":[66]},{"name":"USBFN_INTERFACE_INFO","features":[66]},{"name":"USBFN_INTERRUPT_ENDPOINT_SIZE_NOT_UPDATEABLE_MASK","features":[66]},{"name":"USBFN_NOTIFICATION","features":[66]},{"name":"USBFN_PIPE_INFORMATION","features":[66]},{"name":"USBFN_PORT_TYPE","features":[66]},{"name":"USBFN_USB_STRING","features":[66]},{"name":"USBSCAN_GET_DESCRIPTOR","features":[66]},{"name":"USBSCAN_PIPE_BULK","features":[66]},{"name":"USBSCAN_PIPE_CONFIGURATION","features":[66]},{"name":"USBSCAN_PIPE_CONTROL","features":[66]},{"name":"USBSCAN_PIPE_INFORMATION","features":[66]},{"name":"USBSCAN_PIPE_INTERRUPT","features":[66]},{"name":"USBSCAN_PIPE_ISOCHRONOUS","features":[66]},{"name":"USBSCAN_TIMEOUT","features":[66]},{"name":"USBUSER_BANDWIDTH_INFO_REQUEST","features":[66]},{"name":"USBUSER_BUS_STATISTICS_0_REQUEST","features":[66,1]},{"name":"USBUSER_CLEAR_ROOTPORT_FEATURE","features":[66]},{"name":"USBUSER_CLOSE_RAW_DEVICE","features":[66]},{"name":"USBUSER_CONTROLLER_INFO_0","features":[66]},{"name":"USBUSER_CONTROLLER_UNICODE_NAME","features":[66]},{"name":"USBUSER_GET_BANDWIDTH_INFORMATION","features":[66]},{"name":"USBUSER_GET_BUS_STATISTICS_0","features":[66]},{"name":"USBUSER_GET_CONTROLLER_DRIVER_KEY","features":[66]},{"name":"USBUSER_GET_CONTROLLER_INFO_0","features":[66]},{"name":"USBUSER_GET_DRIVER_VERSION","features":[66,1]},{"name":"USBUSER_GET_POWER_STATE_MAP","features":[66]},{"name":"USBUSER_GET_ROOTHUB_SYMBOLIC_NAME","features":[66]},{"name":"USBUSER_GET_ROOTPORT_STATUS","features":[66]},{"name":"USBUSER_GET_USB2HW_VERSION","features":[66]},{"name":"USBUSER_GET_USB2_HW_VERSION","features":[66]},{"name":"USBUSER_GET_USB_DRIVER_VERSION","features":[66]},{"name":"USBUSER_INVALID_REQUEST","features":[66]},{"name":"USBUSER_OPEN_RAW_DEVICE","features":[66]},{"name":"USBUSER_OP_CLOSE_RAW_DEVICE","features":[66]},{"name":"USBUSER_OP_MASK_DEVONLY_API","features":[66]},{"name":"USBUSER_OP_MASK_HCTEST_API","features":[66]},{"name":"USBUSER_OP_OPEN_RAW_DEVICE","features":[66]},{"name":"USBUSER_OP_RAW_RESET_PORT","features":[66]},{"name":"USBUSER_OP_SEND_ONE_PACKET","features":[66]},{"name":"USBUSER_OP_SEND_RAW_COMMAND","features":[66]},{"name":"USBUSER_PASS_THRU","features":[66]},{"name":"USBUSER_PASS_THRU_REQUEST","features":[66]},{"name":"USBUSER_POWER_INFO_REQUEST","features":[66,1]},{"name":"USBUSER_RAW_RESET_ROOT_PORT","features":[66]},{"name":"USBUSER_REFRESH_HCT_REG","features":[66]},{"name":"USBUSER_REQUEST_HEADER","features":[66]},{"name":"USBUSER_ROOTPORT_FEATURE_REQUEST","features":[66]},{"name":"USBUSER_ROOTPORT_PARAMETERS","features":[66]},{"name":"USBUSER_SEND_ONE_PACKET","features":[66]},{"name":"USBUSER_SEND_RAW_COMMAND","features":[66]},{"name":"USBUSER_SET_ROOTPORT_FEATURE","features":[66]},{"name":"USBUSER_USB_REFRESH_HCT_REG","features":[66]},{"name":"USBUSER_VERSION","features":[66]},{"name":"USB_20_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[66]},{"name":"USB_20_HUB_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_20_PORT_CHANGE","features":[66]},{"name":"USB_20_PORT_STATUS","features":[66]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[66]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_MASK","features":[66]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_NOTIFICATION","features":[66]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_PERIODIC","features":[66]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED10","features":[66]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED11","features":[66]},{"name":"USB_30_HUB_DESCRIPTOR","features":[66]},{"name":"USB_30_HUB_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_30_PORT_CHANGE","features":[66]},{"name":"USB_30_PORT_STATUS","features":[66]},{"name":"USB_ACQUIRE_INFO","features":[66]},{"name":"USB_ALLOW_FIRMWARE_UPDATE","features":[66]},{"name":"USB_BANDWIDTH_INFO","features":[66]},{"name":"USB_BOS_DESCRIPTOR","features":[66]},{"name":"USB_BOS_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_BUS_NOTIFICATION","features":[66]},{"name":"USB_BUS_STATISTICS_0","features":[66,1]},{"name":"USB_CHANGE_REGISTRATION_HANDLE","features":[66]},{"name":"USB_CHARGING_POLICY_DEFAULT","features":[66]},{"name":"USB_CHARGING_POLICY_ICCHPF","features":[66]},{"name":"USB_CHARGING_POLICY_ICCLPF","features":[66]},{"name":"USB_CHARGING_POLICY_NO_POWER","features":[66]},{"name":"USB_CLOSE_RAW_DEVICE_PARAMETERS","features":[66]},{"name":"USB_COMMON_DESCRIPTOR","features":[66]},{"name":"USB_COMPOSITE_DEVICE_INFO","features":[66,1]},{"name":"USB_COMPOSITE_FUNCTION_INFO","features":[66,1]},{"name":"USB_CONFIGURATION_DESCRIPTOR","features":[66]},{"name":"USB_CONFIGURATION_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_CONFIGURATION_POWER_DESCRIPTOR","features":[66]},{"name":"USB_CONFIG_BUS_POWERED","features":[66]},{"name":"USB_CONFIG_POWERED_MASK","features":[66]},{"name":"USB_CONFIG_POWER_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_CONFIG_REMOTE_WAKEUP","features":[66]},{"name":"USB_CONFIG_RESERVED","features":[66]},{"name":"USB_CONFIG_SELF_POWERED","features":[66]},{"name":"USB_CONNECTION_NOTIFICATION","features":[66]},{"name":"USB_CONNECTION_STATUS","features":[66]},{"name":"USB_CONTROLLER_DEVICE_INFO","features":[66]},{"name":"USB_CONTROLLER_FLAVOR","features":[66]},{"name":"USB_CONTROLLER_INFO_0","features":[66]},{"name":"USB_CYCLE_PORT","features":[66]},{"name":"USB_CYCLE_PORT_PARAMS","features":[66]},{"name":"USB_DEBUG_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_DEFAULT_DEVICE_ADDRESS","features":[66]},{"name":"USB_DEFAULT_ENDPOINT_ADDRESS","features":[66]},{"name":"USB_DEFAULT_MAX_PACKET","features":[66]},{"name":"USB_DEFAULT_PIPE_SETUP_PACKET","features":[66]},{"name":"USB_DESCRIPTOR_REQUEST","features":[66]},{"name":"USB_DEVICE_CAPABILITY_BATTERY_INFO","features":[66]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD","features":[66]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID","features":[66]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS","features":[66]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_MAX_U1_LATENCY","features":[66]},{"name":"USB_DEVICE_CAPABILITY_MAX_U2_LATENCY","features":[66]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT","features":[66]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_PD_PROVIDER_PORT","features":[66]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM","features":[66]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY","features":[66]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_PRECISION_TIME_MEASUREMENT","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_RX","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_TX","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_BPS","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_GBPS","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_KBPS","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_MBPS","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_ASYMMETRIC","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_SYMMETRIC","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SS","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SSP","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_LTM_CAPABLE","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_RESERVED_MASK","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_FULL","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_HIGH","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_LOW","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_RESERVED_MASK","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_SUPER","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U1_DEVICE_EXIT_MAX_VALUE","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U2_DEVICE_EXIT_MAX_VALUE","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB","features":[66]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION","features":[66]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_BMATTRIBUTES_RESERVED_MASK","features":[66]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_CAPABILITY_WIRELESS_USB","features":[66]},{"name":"USB_DEVICE_CHARACTERISTICS","features":[66]},{"name":"USB_DEVICE_CHARACTERISTICS_MAXIMUM_PATH_DELAYS_AVAILABLE","features":[66]},{"name":"USB_DEVICE_CHARACTERISTICS_VERSION_1","features":[66]},{"name":"USB_DEVICE_CLASS_APPLICATION_SPECIFIC","features":[66]},{"name":"USB_DEVICE_CLASS_AUDIO","features":[66]},{"name":"USB_DEVICE_CLASS_AUDIO_VIDEO","features":[66]},{"name":"USB_DEVICE_CLASS_BILLBOARD","features":[66]},{"name":"USB_DEVICE_CLASS_CDC_DATA","features":[66]},{"name":"USB_DEVICE_CLASS_COMMUNICATIONS","features":[66]},{"name":"USB_DEVICE_CLASS_CONTENT_SECURITY","features":[66]},{"name":"USB_DEVICE_CLASS_DIAGNOSTIC_DEVICE","features":[66]},{"name":"USB_DEVICE_CLASS_HUB","features":[66]},{"name":"USB_DEVICE_CLASS_HUMAN_INTERFACE","features":[66]},{"name":"USB_DEVICE_CLASS_IMAGE","features":[66]},{"name":"USB_DEVICE_CLASS_MISCELLANEOUS","features":[66]},{"name":"USB_DEVICE_CLASS_MONITOR","features":[66]},{"name":"USB_DEVICE_CLASS_PERSONAL_HEALTHCARE","features":[66]},{"name":"USB_DEVICE_CLASS_PHYSICAL_INTERFACE","features":[66]},{"name":"USB_DEVICE_CLASS_POWER","features":[66]},{"name":"USB_DEVICE_CLASS_PRINTER","features":[66]},{"name":"USB_DEVICE_CLASS_RESERVED","features":[66]},{"name":"USB_DEVICE_CLASS_SMART_CARD","features":[66]},{"name":"USB_DEVICE_CLASS_STORAGE","features":[66]},{"name":"USB_DEVICE_CLASS_VENDOR_SPECIFIC","features":[66]},{"name":"USB_DEVICE_CLASS_VIDEO","features":[66]},{"name":"USB_DEVICE_CLASS_WIRELESS_CONTROLLER","features":[66]},{"name":"USB_DEVICE_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_DEVICE_FIRMWARE_HASH_LENGTH","features":[66]},{"name":"USB_DEVICE_INFO","features":[66]},{"name":"USB_DEVICE_NODE_INFO","features":[66,1]},{"name":"USB_DEVICE_PERFORMANCE_INFO","features":[66]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR","features":[66]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_DEVICE_SPEED","features":[66]},{"name":"USB_DEVICE_STATE","features":[66]},{"name":"USB_DEVICE_STATUS","features":[66]},{"name":"USB_DEVICE_TYPE","features":[66]},{"name":"USB_DIAG_IGNORE_HUBS_OFF","features":[66]},{"name":"USB_DIAG_IGNORE_HUBS_ON","features":[66]},{"name":"USB_DISALLOW_FIRMWARE_UPDATE","features":[66]},{"name":"USB_DRIVER_VERSION_PARAMETERS","features":[66,1]},{"name":"USB_ENABLE_PORT","features":[66]},{"name":"USB_ENDPOINT_ADDRESS_MASK","features":[66]},{"name":"USB_ENDPOINT_DESCRIPTOR","features":[66]},{"name":"USB_ENDPOINT_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_ENDPOINT_DIRECTION_MASK","features":[66]},{"name":"USB_ENDPOINT_STATUS","features":[66]},{"name":"USB_ENDPOINT_SUPERSPEED_BULK_MAX_PACKET_SIZE","features":[66]},{"name":"USB_ENDPOINT_SUPERSPEED_CONTROL_MAX_PACKET_SIZE","features":[66]},{"name":"USB_ENDPOINT_SUPERSPEED_INTERRUPT_MAX_PACKET_SIZE","features":[66]},{"name":"USB_ENDPOINT_SUPERSPEED_ISO_MAX_PACKET_SIZE","features":[66]},{"name":"USB_ENDPOINT_TYPE_BULK","features":[66]},{"name":"USB_ENDPOINT_TYPE_BULK_RESERVED_MASK","features":[66]},{"name":"USB_ENDPOINT_TYPE_CONTROL","features":[66]},{"name":"USB_ENDPOINT_TYPE_CONTROL_RESERVED_MASK","features":[66]},{"name":"USB_ENDPOINT_TYPE_INTERRUPT","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_RESERVED_MASK","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ADAPTIVE","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ASYNCHRONOUS","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_MASK","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_NO_SYNCHRONIZATION","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_SYNCHRONOUS","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_DATA_ENDOINT","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_FEEDBACK_ENDPOINT","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_IMPLICIT_FEEDBACK_DATA_ENDPOINT","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_MASK","features":[66]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_RESERVED","features":[66]},{"name":"USB_ENDPOINT_TYPE_MASK","features":[66]},{"name":"USB_FAIL_GET_STATUS","features":[66]},{"name":"USB_FEATURE_BATTERY_WAKE_MASK","features":[66]},{"name":"USB_FEATURE_CHARGING_POLICY","features":[66]},{"name":"USB_FEATURE_ENDPOINT_STALL","features":[66]},{"name":"USB_FEATURE_FUNCTION_SUSPEND","features":[66]},{"name":"USB_FEATURE_INTERFACE_POWER_D0","features":[66]},{"name":"USB_FEATURE_INTERFACE_POWER_D1","features":[66]},{"name":"USB_FEATURE_INTERFACE_POWER_D2","features":[66]},{"name":"USB_FEATURE_INTERFACE_POWER_D3","features":[66]},{"name":"USB_FEATURE_LDM_ENABLE","features":[66]},{"name":"USB_FEATURE_LTM_ENABLE","features":[66]},{"name":"USB_FEATURE_OS_IS_PD_AWARE","features":[66]},{"name":"USB_FEATURE_POLICY_MODE","features":[66]},{"name":"USB_FEATURE_REMOTE_WAKEUP","features":[66]},{"name":"USB_FEATURE_TEST_MODE","features":[66]},{"name":"USB_FEATURE_U1_ENABLE","features":[66]},{"name":"USB_FEATURE_U2_ENABLE","features":[66]},{"name":"USB_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC_INFORMATION","features":[66,1]},{"name":"USB_FUNCTION_SUSPEND_OPTIONS","features":[66]},{"name":"USB_GETSTATUS_LTM_ENABLE","features":[66]},{"name":"USB_GETSTATUS_REMOTE_WAKEUP_ENABLED","features":[66]},{"name":"USB_GETSTATUS_SELF_POWERED","features":[66]},{"name":"USB_GETSTATUS_U1_ENABLE","features":[66]},{"name":"USB_GETSTATUS_U2_ENABLE","features":[66]},{"name":"USB_GET_BUSGUID_INFO","features":[66]},{"name":"USB_GET_BUS_INFO","features":[66]},{"name":"USB_GET_CONTROLLER_NAME","features":[66]},{"name":"USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[66]},{"name":"USB_GET_DEVICE_CHARACTERISTICS","features":[66]},{"name":"USB_GET_DEVICE_HANDLE","features":[66]},{"name":"USB_GET_DEVICE_HANDLE_EX","features":[66]},{"name":"USB_GET_FIRMWARE_ALLOWED_OR_DISALLOWED_STATE","features":[66]},{"name":"USB_GET_FIRMWARE_HASH","features":[66]},{"name":"USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[66]},{"name":"USB_GET_HUB_CAPABILITIES","features":[66]},{"name":"USB_GET_HUB_CAPABILITIES_EX","features":[66]},{"name":"USB_GET_HUB_CONFIG_INFO","features":[66]},{"name":"USB_GET_HUB_COUNT","features":[66]},{"name":"USB_GET_HUB_INFORMATION_EX","features":[66]},{"name":"USB_GET_HUB_NAME","features":[66]},{"name":"USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[66]},{"name":"USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[66]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION","features":[66]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[66]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[66]},{"name":"USB_GET_NODE_CONNECTION_NAME","features":[66]},{"name":"USB_GET_NODE_INFORMATION","features":[66]},{"name":"USB_GET_PARENT_HUB_INFO","features":[66]},{"name":"USB_GET_PORT_CONNECTOR_PROPERTIES","features":[66]},{"name":"USB_GET_PORT_STATUS","features":[66]},{"name":"USB_GET_ROOTHUB_PDO","features":[66]},{"name":"USB_GET_TOPOLOGY_ADDRESS","features":[66]},{"name":"USB_GET_TRANSPORT_CHARACTERISTICS","features":[66]},{"name":"USB_GET_TT_DEVICE_HANDLE","features":[66]},{"name":"USB_HCD_DRIVERKEY_NAME","features":[66]},{"name":"USB_HC_FEATURE_FLAG_PORT_POWER_SWITCHING","features":[66]},{"name":"USB_HC_FEATURE_FLAG_SEL_SUSPEND","features":[66]},{"name":"USB_HC_FEATURE_LEGACY_BIOS","features":[66]},{"name":"USB_HC_FEATURE_TIME_SYNC_API","features":[66]},{"name":"USB_HIGH_SPEED_MAXPACKET","features":[66]},{"name":"USB_HUB_30_PORT_REMOTE_WAKE_MASK","features":[66]},{"name":"USB_HUB_CAPABILITIES","features":[66]},{"name":"USB_HUB_CAPABILITIES_EX","features":[66]},{"name":"USB_HUB_CAP_FLAGS","features":[66]},{"name":"USB_HUB_CHANGE","features":[66]},{"name":"USB_HUB_CYCLE_PORT","features":[66]},{"name":"USB_HUB_DESCRIPTOR","features":[66]},{"name":"USB_HUB_DEVICE_INFO","features":[66,1]},{"name":"USB_HUB_DEVICE_UXD_SETTINGS","features":[66]},{"name":"USB_HUB_INFORMATION","features":[66,1]},{"name":"USB_HUB_INFORMATION_EX","features":[66]},{"name":"USB_HUB_NAME","features":[66]},{"name":"USB_HUB_NODE","features":[66]},{"name":"USB_HUB_PORT_INFORMATION","features":[66]},{"name":"USB_HUB_STATUS","features":[66]},{"name":"USB_HUB_STATUS_AND_CHANGE","features":[66]},{"name":"USB_HUB_TYPE","features":[66]},{"name":"USB_HcGeneric","features":[66]},{"name":"USB_IDLE_CALLBACK","features":[66]},{"name":"USB_IDLE_CALLBACK_INFO","features":[66]},{"name":"USB_IDLE_NOTIFICATION","features":[66]},{"name":"USB_IDLE_NOTIFICATION_EX","features":[66]},{"name":"USB_ID_STRING","features":[66]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR","features":[66]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_INTERFACE_DESCRIPTOR","features":[66]},{"name":"USB_INTERFACE_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR","features":[66]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_INTERFACE_STATUS","features":[66]},{"name":"USB_MI_PARENT_INFORMATION","features":[66]},{"name":"USB_NODE_CONNECTION_ATTRIBUTES","features":[66]},{"name":"USB_NODE_CONNECTION_DRIVERKEY_NAME","features":[66]},{"name":"USB_NODE_CONNECTION_INFORMATION","features":[66,1]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX","features":[66,1]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2","features":[66]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2_FLAGS","features":[66]},{"name":"USB_NODE_CONNECTION_NAME","features":[66]},{"name":"USB_NODE_INFORMATION","features":[66,1]},{"name":"USB_NOTIFICATION","features":[66]},{"name":"USB_NOTIFICATION_TYPE","features":[66]},{"name":"USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[66]},{"name":"USB_OPEN_RAW_DEVICE_PARAMETERS","features":[66]},{"name":"USB_OTG_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_OTHER_SPEED_CONFIGURATION_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_PACKETFLAG_ASYNC_IN","features":[66]},{"name":"USB_PACKETFLAG_ASYNC_OUT","features":[66]},{"name":"USB_PACKETFLAG_FULL_SPEED","features":[66]},{"name":"USB_PACKETFLAG_HIGH_SPEED","features":[66]},{"name":"USB_PACKETFLAG_ISO_IN","features":[66]},{"name":"USB_PACKETFLAG_ISO_OUT","features":[66]},{"name":"USB_PACKETFLAG_LOW_SPEED","features":[66]},{"name":"USB_PACKETFLAG_SETUP","features":[66]},{"name":"USB_PACKETFLAG_TOGGLE0","features":[66]},{"name":"USB_PACKETFLAG_TOGGLE1","features":[66]},{"name":"USB_PASS_THRU_PARAMETERS","features":[66]},{"name":"USB_PIPE_INFO","features":[66]},{"name":"USB_PORTATTR_MINI_CONNECTOR","features":[66]},{"name":"USB_PORTATTR_NO_CONNECTOR","features":[66]},{"name":"USB_PORTATTR_NO_OVERCURRENT_UI","features":[66]},{"name":"USB_PORTATTR_OEM_CONNECTOR","features":[66]},{"name":"USB_PORTATTR_OWNED_BY_CC","features":[66]},{"name":"USB_PORTATTR_SHARED_USB2","features":[66]},{"name":"USB_PORT_CHANGE","features":[66]},{"name":"USB_PORT_CONNECTOR_PROPERTIES","features":[66]},{"name":"USB_PORT_EXT_STATUS","features":[66]},{"name":"USB_PORT_EXT_STATUS_AND_CHANGE","features":[66]},{"name":"USB_PORT_PROPERTIES","features":[66]},{"name":"USB_PORT_STATUS","features":[66]},{"name":"USB_PORT_STATUS_AND_CHANGE","features":[66]},{"name":"USB_PORT_STATUS_CONNECT","features":[66]},{"name":"USB_PORT_STATUS_ENABLE","features":[66]},{"name":"USB_PORT_STATUS_HIGH_SPEED","features":[66]},{"name":"USB_PORT_STATUS_LOW_SPEED","features":[66]},{"name":"USB_PORT_STATUS_OVER_CURRENT","features":[66]},{"name":"USB_PORT_STATUS_POWER","features":[66]},{"name":"USB_PORT_STATUS_RESET","features":[66]},{"name":"USB_PORT_STATUS_SUSPEND","features":[66]},{"name":"USB_POWER_INFO","features":[66,1]},{"name":"USB_PROTOCOLS","features":[66]},{"name":"USB_RECORD_FAILURE","features":[66]},{"name":"USB_REGISTER_COMPOSITE_DEVICE","features":[66]},{"name":"USB_REGISTER_FOR_TRANSPORT_BANDWIDTH_CHANGE","features":[66]},{"name":"USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[66]},{"name":"USB_REGISTER_FOR_TRANSPORT_LATENCY_CHANGE","features":[66]},{"name":"USB_REQUEST_CLEAR_FEATURE","features":[66]},{"name":"USB_REQUEST_CLEAR_TT_BUFFER","features":[66]},{"name":"USB_REQUEST_GET_CONFIGURATION","features":[66]},{"name":"USB_REQUEST_GET_DESCRIPTOR","features":[66]},{"name":"USB_REQUEST_GET_FIRMWARE_STATUS","features":[66]},{"name":"USB_REQUEST_GET_INTERFACE","features":[66]},{"name":"USB_REQUEST_GET_PORT_ERR_COUNT","features":[66]},{"name":"USB_REQUEST_GET_STATE","features":[66]},{"name":"USB_REQUEST_GET_STATUS","features":[66]},{"name":"USB_REQUEST_GET_TT_STATE","features":[66]},{"name":"USB_REQUEST_ISOCH_DELAY","features":[66]},{"name":"USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[66]},{"name":"USB_REQUEST_RESET_TT","features":[66]},{"name":"USB_REQUEST_SET_ADDRESS","features":[66]},{"name":"USB_REQUEST_SET_CONFIGURATION","features":[66]},{"name":"USB_REQUEST_SET_DESCRIPTOR","features":[66]},{"name":"USB_REQUEST_SET_FEATURE","features":[66]},{"name":"USB_REQUEST_SET_FIRMWARE_STATUS","features":[66]},{"name":"USB_REQUEST_SET_HUB_DEPTH","features":[66]},{"name":"USB_REQUEST_SET_INTERFACE","features":[66]},{"name":"USB_REQUEST_SET_SEL","features":[66]},{"name":"USB_REQUEST_STOP_TT","features":[66]},{"name":"USB_REQUEST_SYNC_FRAME","features":[66]},{"name":"USB_REQ_GLOBAL_RESUME","features":[66]},{"name":"USB_REQ_GLOBAL_SUSPEND","features":[66]},{"name":"USB_RESERVED_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_RESERVED_USER_BASE","features":[66]},{"name":"USB_RESET_HUB","features":[66]},{"name":"USB_RESET_PORT","features":[66]},{"name":"USB_ROOT_HUB_NAME","features":[66]},{"name":"USB_SEND_RAW_COMMAND_PARAMETERS","features":[66]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC","features":[66]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[66,1]},{"name":"USB_STATUS_EXT_PORT_STATUS","features":[66]},{"name":"USB_STATUS_PD_STATUS","features":[66]},{"name":"USB_STATUS_PORT_STATUS","features":[66]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC","features":[66]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[66,1]},{"name":"USB_STRING_DESCRIPTOR","features":[66]},{"name":"USB_STRING_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_SUBMIT_URB","features":[66]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MAX_BYTESPERINTERVAL","features":[66]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MIN_BYTESPERINTERVAL","features":[66]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR","features":[66]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR","features":[66]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[66]},{"name":"USB_SUPERSPEED_ISOCHRONOUS_MAX_MULTIPLIER","features":[66]},{"name":"USB_SUPPORT_D0_COMMAND","features":[66]},{"name":"USB_SUPPORT_D1_COMMAND","features":[66]},{"name":"USB_SUPPORT_D1_WAKEUP","features":[66]},{"name":"USB_SUPPORT_D2_COMMAND","features":[66]},{"name":"USB_SUPPORT_D2_WAKEUP","features":[66]},{"name":"USB_SUPPORT_D3_COMMAND","features":[66]},{"name":"USB_TEST_MODE_TEST_FORCE_ENABLE","features":[66]},{"name":"USB_TEST_MODE_TEST_J","features":[66]},{"name":"USB_TEST_MODE_TEST_K","features":[66]},{"name":"USB_TEST_MODE_TEST_PACKET","features":[66]},{"name":"USB_TEST_MODE_TEST_SE0_NAK","features":[66]},{"name":"USB_TOPOLOGY_ADDRESS","features":[66]},{"name":"USB_TRANSPORT_CHARACTERISTICS","features":[66]},{"name":"USB_TRANSPORT_CHARACTERISTICS_BANDWIDTH_AVAILABLE","features":[66]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_NOTIFICATION","features":[66]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_REGISTRATION","features":[66]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_UNREGISTRATION","features":[66]},{"name":"USB_TRANSPORT_CHARACTERISTICS_LATENCY_AVAILABLE","features":[66]},{"name":"USB_TRANSPORT_CHARACTERISTICS_VERSION_1","features":[66]},{"name":"USB_UNICODE_NAME","features":[66]},{"name":"USB_UNREGISTER_COMPOSITE_DEVICE","features":[66]},{"name":"USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[66]},{"name":"USB_USB2HW_VERSION_PARAMETERS","features":[66]},{"name":"USB_USER_ERROR_CODE","features":[66]},{"name":"USB_WMI_DEVICE_NODE_TYPE","features":[66]},{"name":"Usb11Device","features":[66]},{"name":"Usb20Device","features":[66]},{"name":"Usb20Hub","features":[66]},{"name":"Usb30Hub","features":[66]},{"name":"UsbController","features":[66]},{"name":"UsbDevice","features":[66]},{"name":"UsbFullSpeed","features":[66]},{"name":"UsbHighSpeed","features":[66]},{"name":"UsbHub","features":[66]},{"name":"UsbLowSpeed","features":[66]},{"name":"UsbMIParent","features":[66]},{"name":"UsbRootHub","features":[66]},{"name":"UsbSuperSpeed","features":[66]},{"name":"UsbUserBufferTooSmall","features":[66]},{"name":"UsbUserDeviceNotStarted","features":[66]},{"name":"UsbUserErrorNotMapped","features":[66]},{"name":"UsbUserFeatureDisabled","features":[66]},{"name":"UsbUserInvalidHeaderParameter","features":[66]},{"name":"UsbUserInvalidParameter","features":[66]},{"name":"UsbUserInvalidRequestCode","features":[66]},{"name":"UsbUserMiniportError","features":[66]},{"name":"UsbUserNoDeviceConnected","features":[66]},{"name":"UsbUserNotSupported","features":[66]},{"name":"UsbUserSuccess","features":[66]},{"name":"UsbdEndpointOffloadHardwareAssisted","features":[66]},{"name":"UsbdEndpointOffloadModeNotSupported","features":[66]},{"name":"UsbdEndpointOffloadSoftwareAssisted","features":[66]},{"name":"UsbdPipeTypeBulk","features":[66]},{"name":"UsbdPipeTypeControl","features":[66]},{"name":"UsbdPipeTypeInterrupt","features":[66]},{"name":"UsbdPipeTypeIsochronous","features":[66]},{"name":"UsbfnBusSpeedFull","features":[66]},{"name":"UsbfnBusSpeedHigh","features":[66]},{"name":"UsbfnBusSpeedLow","features":[66]},{"name":"UsbfnBusSpeedMaximum","features":[66]},{"name":"UsbfnBusSpeedSuper","features":[66]},{"name":"UsbfnChargingDownstreamPort","features":[66]},{"name":"UsbfnDedicatedChargingPort","features":[66]},{"name":"UsbfnDeviceStateAddressed","features":[66]},{"name":"UsbfnDeviceStateAttached","features":[66]},{"name":"UsbfnDeviceStateConfigured","features":[66]},{"name":"UsbfnDeviceStateDefault","features":[66]},{"name":"UsbfnDeviceStateDetached","features":[66]},{"name":"UsbfnDeviceStateMinimum","features":[66]},{"name":"UsbfnDeviceStateStateMaximum","features":[66]},{"name":"UsbfnDeviceStateSuspended","features":[66]},{"name":"UsbfnDirectionIn","features":[66]},{"name":"UsbfnDirectionMaximum","features":[66]},{"name":"UsbfnDirectionMinimum","features":[66]},{"name":"UsbfnDirectionOut","features":[66]},{"name":"UsbfnDirectionRx","features":[66]},{"name":"UsbfnDirectionTx","features":[66]},{"name":"UsbfnEventAttach","features":[66]},{"name":"UsbfnEventBusTearDown","features":[66]},{"name":"UsbfnEventConfigured","features":[66]},{"name":"UsbfnEventDetach","features":[66]},{"name":"UsbfnEventMaximum","features":[66]},{"name":"UsbfnEventMinimum","features":[66]},{"name":"UsbfnEventPortType","features":[66]},{"name":"UsbfnEventReset","features":[66]},{"name":"UsbfnEventResume","features":[66]},{"name":"UsbfnEventSetInterface","features":[66]},{"name":"UsbfnEventSetupPacket","features":[66]},{"name":"UsbfnEventSuspend","features":[66]},{"name":"UsbfnEventUnConfigured","features":[66]},{"name":"UsbfnInvalidDedicatedChargingPort","features":[66]},{"name":"UsbfnPortTypeMaximum","features":[66]},{"name":"UsbfnProprietaryDedicatedChargingPort","features":[66]},{"name":"UsbfnStandardDownstreamPort","features":[66]},{"name":"UsbfnUnknownPort","features":[66]},{"name":"WDMUSB_POWER_STATE","features":[66]},{"name":"WINUSB_INTERFACE_HANDLE","features":[66]},{"name":"WINUSB_PIPE_INFORMATION","features":[66]},{"name":"WINUSB_PIPE_INFORMATION_EX","features":[66]},{"name":"WINUSB_PIPE_POLICY","features":[66]},{"name":"WINUSB_POWER_POLICY","features":[66]},{"name":"WINUSB_SETUP_PACKET","features":[66]},{"name":"WMI_USB_DEVICE_NODE_INFORMATION","features":[66]},{"name":"WMI_USB_DRIVER_INFORMATION","features":[66]},{"name":"WMI_USB_DRIVER_NOTIFICATION","features":[66]},{"name":"WMI_USB_HUB_NODE_INFORMATION","features":[66]},{"name":"WMI_USB_PERFORMANCE_INFORMATION","features":[66]},{"name":"WMI_USB_POWER_DEVICE_ENABLE","features":[66]},{"name":"WRITE_DATA_PIPE","features":[66]},{"name":"WdmUsbPowerDeviceD0","features":[66]},{"name":"WdmUsbPowerDeviceD1","features":[66]},{"name":"WdmUsbPowerDeviceD2","features":[66]},{"name":"WdmUsbPowerDeviceD3","features":[66]},{"name":"WdmUsbPowerDeviceUnspecified","features":[66]},{"name":"WdmUsbPowerNotMapped","features":[66]},{"name":"WdmUsbPowerSystemHibernate","features":[66]},{"name":"WdmUsbPowerSystemShutdown","features":[66]},{"name":"WdmUsbPowerSystemSleeping1","features":[66]},{"name":"WdmUsbPowerSystemSleeping2","features":[66]},{"name":"WdmUsbPowerSystemSleeping3","features":[66]},{"name":"WdmUsbPowerSystemUnspecified","features":[66]},{"name":"WdmUsbPowerSystemWorking","features":[66]},{"name":"WinUSB_TestGuid","features":[66]},{"name":"WinUsb_AbortPipe","features":[66,1]},{"name":"WinUsb_ControlTransfer","features":[66,1,6]},{"name":"WinUsb_FlushPipe","features":[66,1]},{"name":"WinUsb_Free","features":[66,1]},{"name":"WinUsb_GetAdjustedFrameNumber","features":[66,1]},{"name":"WinUsb_GetAssociatedInterface","features":[66,1]},{"name":"WinUsb_GetCurrentAlternateSetting","features":[66,1]},{"name":"WinUsb_GetCurrentFrameNumber","features":[66,1]},{"name":"WinUsb_GetCurrentFrameNumberAndQpc","features":[66,1]},{"name":"WinUsb_GetDescriptor","features":[66,1]},{"name":"WinUsb_GetOverlappedResult","features":[66,1,6]},{"name":"WinUsb_GetPipePolicy","features":[66,1]},{"name":"WinUsb_GetPowerPolicy","features":[66,1]},{"name":"WinUsb_Initialize","features":[66,1]},{"name":"WinUsb_ParseConfigurationDescriptor","features":[66]},{"name":"WinUsb_ParseDescriptors","features":[66]},{"name":"WinUsb_QueryDeviceInformation","features":[66,1]},{"name":"WinUsb_QueryInterfaceSettings","features":[66,1]},{"name":"WinUsb_QueryPipe","features":[66,1]},{"name":"WinUsb_QueryPipeEx","features":[66,1]},{"name":"WinUsb_ReadIsochPipe","features":[66,1,6]},{"name":"WinUsb_ReadIsochPipeAsap","features":[66,1,6]},{"name":"WinUsb_ReadPipe","features":[66,1,6]},{"name":"WinUsb_RegisterIsochBuffer","features":[66,1]},{"name":"WinUsb_ResetPipe","features":[66,1]},{"name":"WinUsb_SetCurrentAlternateSetting","features":[66,1]},{"name":"WinUsb_SetPipePolicy","features":[66,1]},{"name":"WinUsb_SetPowerPolicy","features":[66,1]},{"name":"WinUsb_StartTrackingForTimeSync","features":[66,1]},{"name":"WinUsb_StopTrackingForTimeSync","features":[66,1]},{"name":"WinUsb_UnregisterIsochBuffer","features":[66,1]},{"name":"WinUsb_WriteIsochPipe","features":[66,1,6]},{"name":"WinUsb_WriteIsochPipeAsap","features":[66,1,6]},{"name":"WinUsb_WritePipe","features":[66,1,6]},{"name":"_URB_BULK_OR_INTERRUPT_TRANSFER","features":[66]},{"name":"_URB_CONTROL_DESCRIPTOR_REQUEST","features":[66]},{"name":"_URB_CONTROL_FEATURE_REQUEST","features":[66]},{"name":"_URB_CONTROL_GET_CONFIGURATION_REQUEST","features":[66]},{"name":"_URB_CONTROL_GET_INTERFACE_REQUEST","features":[66]},{"name":"_URB_CONTROL_GET_STATUS_REQUEST","features":[66]},{"name":"_URB_CONTROL_TRANSFER","features":[66]},{"name":"_URB_CONTROL_TRANSFER_EX","features":[66]},{"name":"_URB_CONTROL_VENDOR_OR_CLASS_REQUEST","features":[66]},{"name":"_URB_FRAME_LENGTH_CONTROL","features":[66]},{"name":"_URB_GET_CURRENT_FRAME_NUMBER","features":[66]},{"name":"_URB_GET_FRAME_LENGTH","features":[66]},{"name":"_URB_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[66]},{"name":"_URB_HCD_AREA","features":[66]},{"name":"_URB_HEADER","features":[66]},{"name":"_URB_ISOCH_TRANSFER","features":[66]},{"name":"_URB_OPEN_STATIC_STREAMS","features":[66]},{"name":"_URB_OS_FEATURE_DESCRIPTOR_REQUEST","features":[66]},{"name":"_URB_PIPE_REQUEST","features":[66]},{"name":"_URB_SELECT_CONFIGURATION","features":[66]},{"name":"_URB_SELECT_INTERFACE","features":[66]},{"name":"_URB_SET_FRAME_LENGTH","features":[66]}],"388":[{"name":"DeviceDiscoveryMechanism","features":[67]},{"name":"DirectedDiscovery","features":[67]},{"name":"IWSDAddress","features":[67]},{"name":"IWSDAsyncCallback","features":[67]},{"name":"IWSDAsyncResult","features":[67]},{"name":"IWSDAttachment","features":[67]},{"name":"IWSDDeviceHost","features":[67]},{"name":"IWSDDeviceHostNotify","features":[67]},{"name":"IWSDDeviceProxy","features":[67]},{"name":"IWSDEndpointProxy","features":[67]},{"name":"IWSDEventingStatus","features":[67]},{"name":"IWSDHttpAddress","features":[67]},{"name":"IWSDHttpAuthParameters","features":[67]},{"name":"IWSDHttpMessageParameters","features":[67]},{"name":"IWSDInboundAttachment","features":[67]},{"name":"IWSDMessageParameters","features":[67]},{"name":"IWSDMetadataExchange","features":[67]},{"name":"IWSDOutboundAttachment","features":[67]},{"name":"IWSDSSLClientCertificate","features":[67]},{"name":"IWSDScopeMatchingRule","features":[67]},{"name":"IWSDServiceMessaging","features":[67]},{"name":"IWSDServiceProxy","features":[67]},{"name":"IWSDServiceProxyEventing","features":[67]},{"name":"IWSDSignatureProperty","features":[67]},{"name":"IWSDTransportAddress","features":[67]},{"name":"IWSDUdpAddress","features":[67]},{"name":"IWSDUdpMessageParameters","features":[67]},{"name":"IWSDXMLContext","features":[67]},{"name":"IWSDiscoveredService","features":[67]},{"name":"IWSDiscoveryProvider","features":[67]},{"name":"IWSDiscoveryProviderNotify","features":[67]},{"name":"IWSDiscoveryPublisher","features":[67]},{"name":"IWSDiscoveryPublisherNotify","features":[67]},{"name":"MulticastDiscovery","features":[67]},{"name":"ONE_WAY","features":[67]},{"name":"OpAnyElement","features":[67]},{"name":"OpAnyElements","features":[67]},{"name":"OpAnyNumber","features":[67]},{"name":"OpAnyText","features":[67]},{"name":"OpAnything","features":[67]},{"name":"OpAttribute_","features":[67]},{"name":"OpBeginAll","features":[67]},{"name":"OpBeginAnyElement","features":[67]},{"name":"OpBeginChoice","features":[67]},{"name":"OpBeginElement_","features":[67]},{"name":"OpBeginSequence","features":[67]},{"name":"OpElement_","features":[67]},{"name":"OpEndAll","features":[67]},{"name":"OpEndChoice","features":[67]},{"name":"OpEndElement","features":[67]},{"name":"OpEndOfTable","features":[67]},{"name":"OpEndSequence","features":[67]},{"name":"OpFormatBool_","features":[67]},{"name":"OpFormatDateTime_","features":[67]},{"name":"OpFormatDom_","features":[67]},{"name":"OpFormatDouble_","features":[67]},{"name":"OpFormatDuration_","features":[67]},{"name":"OpFormatDynamicType_","features":[67]},{"name":"OpFormatFloat_","features":[67]},{"name":"OpFormatInt16_","features":[67]},{"name":"OpFormatInt32_","features":[67]},{"name":"OpFormatInt64_","features":[67]},{"name":"OpFormatInt8_","features":[67]},{"name":"OpFormatListInsertTail_","features":[67]},{"name":"OpFormatLookupType_","features":[67]},{"name":"OpFormatMax","features":[67]},{"name":"OpFormatName_","features":[67]},{"name":"OpFormatStruct_","features":[67]},{"name":"OpFormatType_","features":[67]},{"name":"OpFormatUInt16_","features":[67]},{"name":"OpFormatUInt32_","features":[67]},{"name":"OpFormatUInt64_","features":[67]},{"name":"OpFormatUInt8_","features":[67]},{"name":"OpFormatUnicodeString_","features":[67]},{"name":"OpFormatUri_","features":[67]},{"name":"OpFormatUuidUri_","features":[67]},{"name":"OpFormatXMLDeclaration_","features":[67]},{"name":"OpNone","features":[67]},{"name":"OpOneOrMore","features":[67]},{"name":"OpOptional","features":[67]},{"name":"OpProcess_","features":[67]},{"name":"OpQualifiedAttribute_","features":[67]},{"name":"PWSD_SOAP_MESSAGE_HANDLER","features":[67]},{"name":"REQUESTBODY_GetStatus","features":[67]},{"name":"REQUESTBODY_Renew","features":[67,1]},{"name":"REQUESTBODY_Subscribe","features":[67,1]},{"name":"REQUESTBODY_Unsubscribe","features":[67]},{"name":"RESPONSEBODY_GetMetadata","features":[67]},{"name":"RESPONSEBODY_GetStatus","features":[67,1]},{"name":"RESPONSEBODY_Renew","features":[67,1]},{"name":"RESPONSEBODY_Subscribe","features":[67,1]},{"name":"RESPONSEBODY_SubscriptionEnd","features":[67]},{"name":"SecureDirectedDiscovery","features":[67]},{"name":"TWO_WAY","features":[67]},{"name":"WSDAPI_ADDRESSFAMILY_IPV4","features":[67]},{"name":"WSDAPI_ADDRESSFAMILY_IPV6","features":[67]},{"name":"WSDAPI_COMPACTSIG_ACCEPT_ALL_MESSAGES","features":[67]},{"name":"WSDAPI_OPTION_MAX_INBOUND_MESSAGE_SIZE","features":[67]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_DEBUGGER","features":[67]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_FILE","features":[67]},{"name":"WSDAPI_SSL_CERT_APPLY_DEFAULT_CHECKS","features":[67]},{"name":"WSDAPI_SSL_CERT_IGNORE_EXPIRY","features":[67]},{"name":"WSDAPI_SSL_CERT_IGNORE_INVALID_CN","features":[67]},{"name":"WSDAPI_SSL_CERT_IGNORE_REVOCATION","features":[67]},{"name":"WSDAPI_SSL_CERT_IGNORE_UNKNOWN_CA","features":[67]},{"name":"WSDAPI_SSL_CERT_IGNORE_WRONG_USAGE","features":[67]},{"name":"WSDAllocateLinkedMemory","features":[67]},{"name":"WSDAttachLinkedMemory","features":[67]},{"name":"WSDCreateDeviceHost","features":[67]},{"name":"WSDCreateDeviceHost2","features":[67]},{"name":"WSDCreateDeviceHostAdvanced","features":[67]},{"name":"WSDCreateDeviceProxy","features":[67]},{"name":"WSDCreateDeviceProxy2","features":[67]},{"name":"WSDCreateDeviceProxyAdvanced","features":[67]},{"name":"WSDCreateDiscoveryProvider","features":[67]},{"name":"WSDCreateDiscoveryProvider2","features":[67]},{"name":"WSDCreateDiscoveryPublisher","features":[67]},{"name":"WSDCreateDiscoveryPublisher2","features":[67]},{"name":"WSDCreateHttpAddress","features":[67]},{"name":"WSDCreateHttpMessageParameters","features":[67]},{"name":"WSDCreateOutboundAttachment","features":[67]},{"name":"WSDCreateUdpAddress","features":[67]},{"name":"WSDCreateUdpMessageParameters","features":[67]},{"name":"WSDDetachLinkedMemory","features":[67]},{"name":"WSDET_INCOMING_FAULT","features":[67]},{"name":"WSDET_INCOMING_MESSAGE","features":[67]},{"name":"WSDET_NONE","features":[67]},{"name":"WSDET_RESPONSE_TIMEOUT","features":[67]},{"name":"WSDET_TRANSMISSION_FAILURE","features":[67]},{"name":"WSDEventType","features":[67]},{"name":"WSDFreeLinkedMemory","features":[67]},{"name":"WSDGenerateFault","features":[67]},{"name":"WSDGenerateFaultEx","features":[67]},{"name":"WSDGetConfigurationOption","features":[67]},{"name":"WSDSetConfigurationOption","features":[67]},{"name":"WSDUdpMessageType","features":[67]},{"name":"WSDUdpRetransmitParams","features":[67]},{"name":"WSDUriDecode","features":[67]},{"name":"WSDUriEncode","features":[67]},{"name":"WSDXMLAddChild","features":[67]},{"name":"WSDXMLAddSibling","features":[67]},{"name":"WSDXMLBuildAnyForSingleElement","features":[67]},{"name":"WSDXMLCleanupElement","features":[67]},{"name":"WSDXMLCreateContext","features":[67]},{"name":"WSDXMLGetNameFromBuiltinNamespace","features":[67]},{"name":"WSDXMLGetValueFromAny","features":[67]},{"name":"WSDXML_ATTRIBUTE","features":[67]},{"name":"WSDXML_ELEMENT","features":[67]},{"name":"WSDXML_ELEMENT_LIST","features":[67]},{"name":"WSDXML_NAME","features":[67]},{"name":"WSDXML_NAMESPACE","features":[67]},{"name":"WSDXML_NODE","features":[67]},{"name":"WSDXML_OP","features":[67]},{"name":"WSDXML_PREFIX_MAPPING","features":[67]},{"name":"WSDXML_TEXT","features":[67]},{"name":"WSDXML_TYPE","features":[67]},{"name":"WSD_APP_SEQUENCE","features":[67]},{"name":"WSD_BYE","features":[67]},{"name":"WSD_CONFIG_ADDRESSES","features":[67]},{"name":"WSD_CONFIG_DEVICE_ADDRESSES","features":[67]},{"name":"WSD_CONFIG_HOSTING_ADDRESSES","features":[67]},{"name":"WSD_CONFIG_MAX_INBOUND_MESSAGE_SIZE","features":[67]},{"name":"WSD_CONFIG_MAX_OUTBOUND_MESSAGE_SIZE","features":[67]},{"name":"WSD_CONFIG_PARAM","features":[67]},{"name":"WSD_CONFIG_PARAM_TYPE","features":[67]},{"name":"WSD_DATETIME","features":[67,1]},{"name":"WSD_DEFAULT_EVENTING_ADDRESS","features":[67]},{"name":"WSD_DEFAULT_HOSTING_ADDRESS","features":[67]},{"name":"WSD_DEFAULT_SECURE_HOSTING_ADDRESS","features":[67]},{"name":"WSD_DURATION","features":[67,1]},{"name":"WSD_ENDPOINT_REFERENCE","features":[67]},{"name":"WSD_ENDPOINT_REFERENCE_LIST","features":[67]},{"name":"WSD_EVENT","features":[67]},{"name":"WSD_EVENTING_DELIVERY_MODE","features":[67]},{"name":"WSD_EVENTING_DELIVERY_MODE_PUSH","features":[67]},{"name":"WSD_EVENTING_EXPIRES","features":[67,1]},{"name":"WSD_EVENTING_FILTER","features":[67]},{"name":"WSD_EVENTING_FILTER_ACTION","features":[67]},{"name":"WSD_HANDLER_CONTEXT","features":[67]},{"name":"WSD_HEADER_RELATESTO","features":[67]},{"name":"WSD_HELLO","features":[67]},{"name":"WSD_HOST_METADATA","features":[67]},{"name":"WSD_LOCALIZED_STRING","features":[67]},{"name":"WSD_LOCALIZED_STRING_LIST","features":[67]},{"name":"WSD_METADATA_SECTION","features":[67]},{"name":"WSD_METADATA_SECTION_LIST","features":[67]},{"name":"WSD_NAME_LIST","features":[67]},{"name":"WSD_OPERATION","features":[67]},{"name":"WSD_PORT_TYPE","features":[67]},{"name":"WSD_PROBE","features":[67]},{"name":"WSD_PROBE_MATCH","features":[67]},{"name":"WSD_PROBE_MATCHES","features":[67]},{"name":"WSD_PROBE_MATCH_LIST","features":[67]},{"name":"WSD_PROTOCOL_TYPE","features":[67]},{"name":"WSD_PT_ALL","features":[67]},{"name":"WSD_PT_HTTP","features":[67]},{"name":"WSD_PT_HTTPS","features":[67]},{"name":"WSD_PT_NONE","features":[67]},{"name":"WSD_PT_UDP","features":[67]},{"name":"WSD_REFERENCE_PARAMETERS","features":[67]},{"name":"WSD_REFERENCE_PROPERTIES","features":[67]},{"name":"WSD_RELATIONSHIP_METADATA","features":[67]},{"name":"WSD_RESOLVE","features":[67]},{"name":"WSD_RESOLVE_MATCH","features":[67]},{"name":"WSD_RESOLVE_MATCHES","features":[67]},{"name":"WSD_SCOPES","features":[67]},{"name":"WSD_SECURITY_CERT_VALIDATION","features":[67,1,68]},{"name":"WSD_SECURITY_CERT_VALIDATION_V1","features":[67,1,68]},{"name":"WSD_SECURITY_COMPACTSIG_SIGNING_CERT","features":[67]},{"name":"WSD_SECURITY_COMPACTSIG_VALIDATION","features":[67]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NEGOTIATE","features":[67]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NTLM","features":[67]},{"name":"WSD_SECURITY_REQUIRE_CLIENT_CERT_OR_HTTP_CLIENT_AUTH","features":[67]},{"name":"WSD_SECURITY_REQUIRE_HTTP_CLIENT_AUTH","features":[67]},{"name":"WSD_SECURITY_SIGNATURE_VALIDATION","features":[67,1,68]},{"name":"WSD_SECURITY_SSL_CERT_FOR_CLIENT_AUTH","features":[67]},{"name":"WSD_SECURITY_SSL_CLIENT_CERT_VALIDATION","features":[67]},{"name":"WSD_SECURITY_SSL_NEGOTIATE_CLIENT_CERT","features":[67]},{"name":"WSD_SECURITY_SSL_SERVER_CERT_VALIDATION","features":[67]},{"name":"WSD_SECURITY_USE_HTTP_CLIENT_AUTH","features":[67]},{"name":"WSD_SERVICE_METADATA","features":[67]},{"name":"WSD_SERVICE_METADATA_LIST","features":[67]},{"name":"WSD_SOAP_FAULT","features":[67]},{"name":"WSD_SOAP_FAULT_CODE","features":[67]},{"name":"WSD_SOAP_FAULT_REASON","features":[67]},{"name":"WSD_SOAP_FAULT_SUBCODE","features":[67]},{"name":"WSD_SOAP_HEADER","features":[67]},{"name":"WSD_SOAP_MESSAGE","features":[67]},{"name":"WSD_STUB_FUNCTION","features":[67]},{"name":"WSD_SYNCHRONOUS_RESPONSE_CONTEXT","features":[67,1]},{"name":"WSD_THIS_DEVICE_METADATA","features":[67]},{"name":"WSD_THIS_MODEL_METADATA","features":[67]},{"name":"WSD_UNKNOWN_LOOKUP","features":[67]},{"name":"WSD_URI_LIST","features":[67]}],"389":[{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID","features":[1]},{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED","features":[1]},{"name":"APPMODEL_ERROR_NO_APPLICATION","features":[1]},{"name":"APPMODEL_ERROR_NO_MUTABLE_DIRECTORY","features":[1]},{"name":"APPMODEL_ERROR_NO_PACKAGE","features":[1]},{"name":"APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT","features":[1]},{"name":"APPMODEL_ERROR_PACKAGE_NOT_AVAILABLE","features":[1]},{"name":"APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT","features":[1]},{"name":"APPX_E_BLOCK_HASH_INVALID","features":[1]},{"name":"APPX_E_CORRUPT_CONTENT","features":[1]},{"name":"APPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED","features":[1]},{"name":"APPX_E_DELTA_BASELINE_VERSION_MISMATCH","features":[1]},{"name":"APPX_E_DELTA_PACKAGE_MISSING_FILE","features":[1]},{"name":"APPX_E_DIGEST_MISMATCH","features":[1]},{"name":"APPX_E_FILE_COMPRESSION_MISMATCH","features":[1]},{"name":"APPX_E_INTERLEAVING_NOT_ALLOWED","features":[1]},{"name":"APPX_E_INVALID_APPINSTALLER","features":[1]},{"name":"APPX_E_INVALID_BLOCKMAP","features":[1]},{"name":"APPX_E_INVALID_CONTENTGROUPMAP","features":[1]},{"name":"APPX_E_INVALID_DELTA_PACKAGE","features":[1]},{"name":"APPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST","features":[1]},{"name":"APPX_E_INVALID_KEY_INFO","features":[1]},{"name":"APPX_E_INVALID_MANIFEST","features":[1]},{"name":"APPX_E_INVALID_PACKAGESIGNCONFIG","features":[1]},{"name":"APPX_E_INVALID_PACKAGE_FOLDER_ACLS","features":[1]},{"name":"APPX_E_INVALID_PACKAGING_LAYOUT","features":[1]},{"name":"APPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION","features":[1]},{"name":"APPX_E_INVALID_PUBLISHER_BRIDGING","features":[1]},{"name":"APPX_E_INVALID_SIP_CLIENT_DATA","features":[1]},{"name":"APPX_E_MISSING_REQUIRED_FILE","features":[1]},{"name":"APPX_E_PACKAGING_INTERNAL","features":[1]},{"name":"APPX_E_RELATIONSHIPS_NOT_ALLOWED","features":[1]},{"name":"APPX_E_REQUESTED_RANGE_TOO_LARGE","features":[1]},{"name":"APPX_E_RESOURCESPRI_NOT_ALLOWED","features":[1]},{"name":"APP_LOCAL_DEVICE_ID","features":[1]},{"name":"APP_LOCAL_DEVICE_ID_SIZE","features":[1]},{"name":"BOOL","features":[1]},{"name":"BOOLEAN","features":[1]},{"name":"BSTR","features":[1]},{"name":"BT_E_SPURIOUS_ACTIVATION","features":[1]},{"name":"CACHE_E_FIRST","features":[1]},{"name":"CACHE_E_LAST","features":[1]},{"name":"CACHE_E_NOCACHE_UPDATED","features":[1]},{"name":"CACHE_S_FIRST","features":[1]},{"name":"CACHE_S_FORMATETC_NOTSUPPORTED","features":[1]},{"name":"CACHE_S_LAST","features":[1]},{"name":"CACHE_S_SAMECACHE","features":[1]},{"name":"CACHE_S_SOMECACHES_NOTUPDATED","features":[1]},{"name":"CAT_E_CATIDNOEXIST","features":[1]},{"name":"CAT_E_FIRST","features":[1]},{"name":"CAT_E_LAST","features":[1]},{"name":"CAT_E_NODESCRIPTION","features":[1]},{"name":"CERTSRV_E_ADMIN_DENIED_REQUEST","features":[1]},{"name":"CERTSRV_E_ALIGNMENT_FAULT","features":[1]},{"name":"CERTSRV_E_ARCHIVED_KEY_REQUIRED","features":[1]},{"name":"CERTSRV_E_ARCHIVED_KEY_UNEXPECTED","features":[1]},{"name":"CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE","features":[1]},{"name":"CERTSRV_E_BAD_RENEWAL_SUBJECT","features":[1]},{"name":"CERTSRV_E_BAD_REQUESTSTATUS","features":[1]},{"name":"CERTSRV_E_BAD_REQUESTSUBJECT","features":[1]},{"name":"CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL","features":[1]},{"name":"CERTSRV_E_BAD_TEMPLATE_VERSION","features":[1]},{"name":"CERTSRV_E_CERT_TYPE_OVERLAP","features":[1]},{"name":"CERTSRV_E_CORRUPT_KEY_ATTESTATION","features":[1]},{"name":"CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE","features":[1]},{"name":"CERTSRV_E_ENCODING_LENGTH","features":[1]},{"name":"CERTSRV_E_ENCRYPTION_CERT_REQUIRED","features":[1]},{"name":"CERTSRV_E_ENROLL_DENIED","features":[1]},{"name":"CERTSRV_E_EXPIRED_CHALLENGE","features":[1]},{"name":"CERTSRV_E_INVALID_ATTESTATION","features":[1]},{"name":"CERTSRV_E_INVALID_CA_CERTIFICATE","features":[1]},{"name":"CERTSRV_E_INVALID_EK","features":[1]},{"name":"CERTSRV_E_INVALID_IDBINDING","features":[1]},{"name":"CERTSRV_E_INVALID_REQUESTID","features":[1]},{"name":"CERTSRV_E_INVALID_RESPONSE","features":[1]},{"name":"CERTSRV_E_ISSUANCE_POLICY_REQUIRED","features":[1]},{"name":"CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED","features":[1]},{"name":"CERTSRV_E_KEY_ATTESTATION","features":[1]},{"name":"CERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED","features":[1]},{"name":"CERTSRV_E_KEY_LENGTH","features":[1]},{"name":"CERTSRV_E_NO_CAADMIN_DEFINED","features":[1]},{"name":"CERTSRV_E_NO_CERT_TYPE","features":[1]},{"name":"CERTSRV_E_NO_DB_SESSIONS","features":[1]},{"name":"CERTSRV_E_NO_POLICY_SERVER","features":[1]},{"name":"CERTSRV_E_NO_REQUEST","features":[1]},{"name":"CERTSRV_E_NO_VALID_KRA","features":[1]},{"name":"CERTSRV_E_PENDING_CLIENT_RESPONSE","features":[1]},{"name":"CERTSRV_E_PROPERTY_EMPTY","features":[1]},{"name":"CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY","features":[1]},{"name":"CERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH","features":[1]},{"name":"CERTSRV_E_RESTRICTEDOFFICER","features":[1]},{"name":"CERTSRV_E_ROLECONFLICT","features":[1]},{"name":"CERTSRV_E_SEC_EXT_DIRECTORY_SID_REQUIRED","features":[1]},{"name":"CERTSRV_E_SERVER_SUSPENDED","features":[1]},{"name":"CERTSRV_E_SIGNATURE_COUNT","features":[1]},{"name":"CERTSRV_E_SIGNATURE_POLICY_REQUIRED","features":[1]},{"name":"CERTSRV_E_SIGNATURE_REJECTED","features":[1]},{"name":"CERTSRV_E_SMIME_REQUIRED","features":[1]},{"name":"CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED","features":[1]},{"name":"CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED","features":[1]},{"name":"CERTSRV_E_SUBJECT_DNS_REQUIRED","features":[1]},{"name":"CERTSRV_E_SUBJECT_EMAIL_REQUIRED","features":[1]},{"name":"CERTSRV_E_SUBJECT_UPN_REQUIRED","features":[1]},{"name":"CERTSRV_E_TEMPLATE_CONFLICT","features":[1]},{"name":"CERTSRV_E_TEMPLATE_DENIED","features":[1]},{"name":"CERTSRV_E_TEMPLATE_POLICY_REQUIRED","features":[1]},{"name":"CERTSRV_E_TOO_MANY_SIGNATURES","features":[1]},{"name":"CERTSRV_E_UNKNOWN_CERT_TYPE","features":[1]},{"name":"CERTSRV_E_UNSUPPORTED_CERT_TYPE","features":[1]},{"name":"CERTSRV_E_WEAK_SIGNATURE_OR_KEY","features":[1]},{"name":"CERT_E_CHAINING","features":[1]},{"name":"CERT_E_CN_NO_MATCH","features":[1]},{"name":"CERT_E_CRITICAL","features":[1]},{"name":"CERT_E_EXPIRED","features":[1]},{"name":"CERT_E_INVALID_NAME","features":[1]},{"name":"CERT_E_INVALID_POLICY","features":[1]},{"name":"CERT_E_ISSUERCHAINING","features":[1]},{"name":"CERT_E_MALFORMED","features":[1]},{"name":"CERT_E_PATHLENCONST","features":[1]},{"name":"CERT_E_PURPOSE","features":[1]},{"name":"CERT_E_REVOCATION_FAILURE","features":[1]},{"name":"CERT_E_REVOKED","features":[1]},{"name":"CERT_E_ROLE","features":[1]},{"name":"CERT_E_UNTRUSTEDCA","features":[1]},{"name":"CERT_E_UNTRUSTEDROOT","features":[1]},{"name":"CERT_E_UNTRUSTEDTESTROOT","features":[1]},{"name":"CERT_E_VALIDITYPERIODNESTING","features":[1]},{"name":"CERT_E_WRONG_USAGE","features":[1]},{"name":"CHAR","features":[1]},{"name":"CI_CORRUPT_CATALOG","features":[1]},{"name":"CI_CORRUPT_DATABASE","features":[1]},{"name":"CI_CORRUPT_FILTER_BUFFER","features":[1]},{"name":"CI_E_ALREADY_INITIALIZED","features":[1]},{"name":"CI_E_BUFFERTOOSMALL","features":[1]},{"name":"CI_E_CARDINALITY_MISMATCH","features":[1]},{"name":"CI_E_CLIENT_FILTER_ABORT","features":[1]},{"name":"CI_E_CONFIG_DISK_FULL","features":[1]},{"name":"CI_E_DISK_FULL","features":[1]},{"name":"CI_E_DISTRIBUTED_GROUPBY_UNSUPPORTED","features":[1]},{"name":"CI_E_DUPLICATE_NOTIFICATION","features":[1]},{"name":"CI_E_ENUMERATION_STARTED","features":[1]},{"name":"CI_E_FILTERING_DISABLED","features":[1]},{"name":"CI_E_INVALID_FLAGS_COMBINATION","features":[1]},{"name":"CI_E_INVALID_STATE","features":[1]},{"name":"CI_E_LOGON_FAILURE","features":[1]},{"name":"CI_E_NOT_FOUND","features":[1]},{"name":"CI_E_NOT_INITIALIZED","features":[1]},{"name":"CI_E_NOT_RUNNING","features":[1]},{"name":"CI_E_NO_CATALOG","features":[1]},{"name":"CI_E_OUTOFSEQ_INCREMENT_DATA","features":[1]},{"name":"CI_E_PROPERTY_NOT_CACHED","features":[1]},{"name":"CI_E_PROPERTY_TOOLARGE","features":[1]},{"name":"CI_E_SHARING_VIOLATION","features":[1]},{"name":"CI_E_SHUTDOWN","features":[1]},{"name":"CI_E_STRANGE_PAGEORSECTOR_SIZE","features":[1]},{"name":"CI_E_TIMEOUT","features":[1]},{"name":"CI_E_UPDATES_DISABLED","features":[1]},{"name":"CI_E_USE_DEFAULT_PID","features":[1]},{"name":"CI_E_WORKID_NOTVALID","features":[1]},{"name":"CI_INCORRECT_VERSION","features":[1]},{"name":"CI_INVALID_INDEX","features":[1]},{"name":"CI_INVALID_PARTITION","features":[1]},{"name":"CI_INVALID_PRIORITY","features":[1]},{"name":"CI_NO_CATALOG","features":[1]},{"name":"CI_NO_STARTING_KEY","features":[1]},{"name":"CI_OUT_OF_INDEX_IDS","features":[1]},{"name":"CI_PROPSTORE_INCONSISTENCY","features":[1]},{"name":"CI_S_CAT_STOPPED","features":[1]},{"name":"CI_S_END_OF_ENUMERATION","features":[1]},{"name":"CI_S_NO_DOCSTORE","features":[1]},{"name":"CI_S_WORKID_DELETED","features":[1]},{"name":"CLASSFACTORY_E_FIRST","features":[1]},{"name":"CLASSFACTORY_E_LAST","features":[1]},{"name":"CLASSFACTORY_S_FIRST","features":[1]},{"name":"CLASSFACTORY_S_LAST","features":[1]},{"name":"CLASS_E_CLASSNOTAVAILABLE","features":[1]},{"name":"CLASS_E_NOAGGREGATION","features":[1]},{"name":"CLASS_E_NOTLICENSED","features":[1]},{"name":"CLIENTSITE_E_FIRST","features":[1]},{"name":"CLIENTSITE_E_LAST","features":[1]},{"name":"CLIENTSITE_S_FIRST","features":[1]},{"name":"CLIENTSITE_S_LAST","features":[1]},{"name":"CLIPBRD_E_BAD_DATA","features":[1]},{"name":"CLIPBRD_E_CANT_CLOSE","features":[1]},{"name":"CLIPBRD_E_CANT_EMPTY","features":[1]},{"name":"CLIPBRD_E_CANT_OPEN","features":[1]},{"name":"CLIPBRD_E_CANT_SET","features":[1]},{"name":"CLIPBRD_E_FIRST","features":[1]},{"name":"CLIPBRD_E_LAST","features":[1]},{"name":"CLIPBRD_S_FIRST","features":[1]},{"name":"CLIPBRD_S_LAST","features":[1]},{"name":"COLORREF","features":[1]},{"name":"COMADMIN_E_ALREADYINSTALLED","features":[1]},{"name":"COMADMIN_E_AMBIGUOUS_APPLICATION_NAME","features":[1]},{"name":"COMADMIN_E_AMBIGUOUS_PARTITION_NAME","features":[1]},{"name":"COMADMIN_E_APPDIRNOTFOUND","features":[1]},{"name":"COMADMIN_E_APPLICATIONEXISTS","features":[1]},{"name":"COMADMIN_E_APPLID_MATCHES_CLSID","features":[1]},{"name":"COMADMIN_E_APP_FILE_READFAIL","features":[1]},{"name":"COMADMIN_E_APP_FILE_VERSION","features":[1]},{"name":"COMADMIN_E_APP_FILE_WRITEFAIL","features":[1]},{"name":"COMADMIN_E_APP_NOT_RUNNING","features":[1]},{"name":"COMADMIN_E_AUTHENTICATIONLEVEL","features":[1]},{"name":"COMADMIN_E_BADPATH","features":[1]},{"name":"COMADMIN_E_BADREGISTRYLIBID","features":[1]},{"name":"COMADMIN_E_BADREGISTRYPROGID","features":[1]},{"name":"COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET","features":[1]},{"name":"COMADMIN_E_BASE_PARTITION_ONLY","features":[1]},{"name":"COMADMIN_E_CANNOT_ALIAS_EVENTCLASS","features":[1]},{"name":"COMADMIN_E_CANTCOPYFILE","features":[1]},{"name":"COMADMIN_E_CANTMAKEINPROCSERVICE","features":[1]},{"name":"COMADMIN_E_CANTRECYCLELIBRARYAPPS","features":[1]},{"name":"COMADMIN_E_CANTRECYCLESERVICEAPPS","features":[1]},{"name":"COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT","features":[1]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY","features":[1]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_SYS_APP","features":[1]},{"name":"COMADMIN_E_CAN_NOT_START_APP","features":[1]},{"name":"COMADMIN_E_CAT_BITNESSMISMATCH","features":[1]},{"name":"COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME","features":[1]},{"name":"COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED","features":[1]},{"name":"COMADMIN_E_CAT_INVALID_PARTITION_NAME","features":[1]},{"name":"COMADMIN_E_CAT_PARTITION_IN_USE","features":[1]},{"name":"COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED","features":[1]},{"name":"COMADMIN_E_CAT_SERVERFAULT","features":[1]},{"name":"COMADMIN_E_CAT_UNACCEPTABLEBITNESS","features":[1]},{"name":"COMADMIN_E_CAT_WRONGAPPBITNESS","features":[1]},{"name":"COMADMIN_E_CLSIDORIIDMISMATCH","features":[1]},{"name":"COMADMIN_E_COMPFILE_BADTLB","features":[1]},{"name":"COMADMIN_E_COMPFILE_CLASSNOTAVAIL","features":[1]},{"name":"COMADMIN_E_COMPFILE_DOESNOTEXIST","features":[1]},{"name":"COMADMIN_E_COMPFILE_GETCLASSOBJ","features":[1]},{"name":"COMADMIN_E_COMPFILE_LOADDLLFAIL","features":[1]},{"name":"COMADMIN_E_COMPFILE_NOREGISTRAR","features":[1]},{"name":"COMADMIN_E_COMPFILE_NOTINSTALLABLE","features":[1]},{"name":"COMADMIN_E_COMPONENTEXISTS","features":[1]},{"name":"COMADMIN_E_COMP_MOVE_BAD_DEST","features":[1]},{"name":"COMADMIN_E_COMP_MOVE_DEST","features":[1]},{"name":"COMADMIN_E_COMP_MOVE_LOCKED","features":[1]},{"name":"COMADMIN_E_COMP_MOVE_PRIVATE","features":[1]},{"name":"COMADMIN_E_COMP_MOVE_SOURCE","features":[1]},{"name":"COMADMIN_E_COREQCOMPINSTALLED","features":[1]},{"name":"COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET","features":[1]},{"name":"COMADMIN_E_DLLLOADFAILED","features":[1]},{"name":"COMADMIN_E_DLLREGISTERSERVER","features":[1]},{"name":"COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER","features":[1]},{"name":"COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES","features":[1]},{"name":"COMADMIN_E_INVALIDUSERIDS","features":[1]},{"name":"COMADMIN_E_INVALID_PARTITION","features":[1]},{"name":"COMADMIN_E_KEYMISSING","features":[1]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT","features":[1]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS","features":[1]},{"name":"COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE","features":[1]},{"name":"COMADMIN_E_MIG_SCHEMANOTFOUND","features":[1]},{"name":"COMADMIN_E_MIG_VERSIONNOTSUPPORTED","features":[1]},{"name":"COMADMIN_E_NOREGISTRYCLSID","features":[1]},{"name":"COMADMIN_E_NOSERVERSHARE","features":[1]},{"name":"COMADMIN_E_NOTCHANGEABLE","features":[1]},{"name":"COMADMIN_E_NOTDELETEABLE","features":[1]},{"name":"COMADMIN_E_NOTINREGISTRY","features":[1]},{"name":"COMADMIN_E_NOUSER","features":[1]},{"name":"COMADMIN_E_OBJECTERRORS","features":[1]},{"name":"COMADMIN_E_OBJECTEXISTS","features":[1]},{"name":"COMADMIN_E_OBJECTINVALID","features":[1]},{"name":"COMADMIN_E_OBJECTNOTPOOLABLE","features":[1]},{"name":"COMADMIN_E_OBJECT_DOES_NOT_EXIST","features":[1]},{"name":"COMADMIN_E_OBJECT_PARENT_MISSING","features":[1]},{"name":"COMADMIN_E_PARTITIONS_DISABLED","features":[1]},{"name":"COMADMIN_E_PARTITION_ACCESSDENIED","features":[1]},{"name":"COMADMIN_E_PARTITION_MSI_ONLY","features":[1]},{"name":"COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED","features":[1]},{"name":"COMADMIN_E_PRIVATE_ACCESSDENIED","features":[1]},{"name":"COMADMIN_E_PROCESSALREADYRECYCLED","features":[1]},{"name":"COMADMIN_E_PROGIDINUSEBYCLSID","features":[1]},{"name":"COMADMIN_E_PROPERTYSAVEFAILED","features":[1]},{"name":"COMADMIN_E_PROPERTY_OVERFLOW","features":[1]},{"name":"COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED","features":[1]},{"name":"COMADMIN_E_REGDB_ALREADYRUNNING","features":[1]},{"name":"COMADMIN_E_REGDB_NOTINITIALIZED","features":[1]},{"name":"COMADMIN_E_REGDB_NOTOPEN","features":[1]},{"name":"COMADMIN_E_REGDB_SYSTEMERR","features":[1]},{"name":"COMADMIN_E_REGFILE_CORRUPT","features":[1]},{"name":"COMADMIN_E_REGISTERTLB","features":[1]},{"name":"COMADMIN_E_REGISTRARFAILED","features":[1]},{"name":"COMADMIN_E_REGISTRY_ACCESSDENIED","features":[1]},{"name":"COMADMIN_E_REMOTEINTERFACE","features":[1]},{"name":"COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM","features":[1]},{"name":"COMADMIN_E_ROLEEXISTS","features":[1]},{"name":"COMADMIN_E_ROLE_DOES_NOT_EXIST","features":[1]},{"name":"COMADMIN_E_SAFERINVALID","features":[1]},{"name":"COMADMIN_E_SERVICENOTINSTALLED","features":[1]},{"name":"COMADMIN_E_SESSION","features":[1]},{"name":"COMADMIN_E_START_APP_DISABLED","features":[1]},{"name":"COMADMIN_E_START_APP_NEEDS_COMPONENTS","features":[1]},{"name":"COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE","features":[1]},{"name":"COMADMIN_E_SYSTEMAPP","features":[1]},{"name":"COMADMIN_E_USERPASSWDNOTVALID","features":[1]},{"name":"COMADMIN_E_USER_IN_SET","features":[1]},{"name":"COMQC_E_APPLICATION_NOT_QUEUED","features":[1]},{"name":"COMQC_E_BAD_MESSAGE","features":[1]},{"name":"COMQC_E_NO_IPERSISTSTREAM","features":[1]},{"name":"COMQC_E_NO_QUEUEABLE_INTERFACES","features":[1]},{"name":"COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE","features":[1]},{"name":"COMQC_E_UNAUTHENTICATED","features":[1]},{"name":"COMQC_E_UNTRUSTED_ENQUEUER","features":[1]},{"name":"CONTEXT_E_ABORTED","features":[1]},{"name":"CONTEXT_E_ABORTING","features":[1]},{"name":"CONTEXT_E_FIRST","features":[1]},{"name":"CONTEXT_E_LAST","features":[1]},{"name":"CONTEXT_E_NOCONTEXT","features":[1]},{"name":"CONTEXT_E_NOJIT","features":[1]},{"name":"CONTEXT_E_NOTRANSACTION","features":[1]},{"name":"CONTEXT_E_OLDREF","features":[1]},{"name":"CONTEXT_E_ROLENOTFOUND","features":[1]},{"name":"CONTEXT_E_SYNCH_TIMEOUT","features":[1]},{"name":"CONTEXT_E_TMNOTAVAILABLE","features":[1]},{"name":"CONTEXT_E_WOULD_DEADLOCK","features":[1]},{"name":"CONTEXT_S_FIRST","features":[1]},{"name":"CONTEXT_S_LAST","features":[1]},{"name":"CONTROL_C_EXIT","features":[1]},{"name":"CONVERT10_E_FIRST","features":[1]},{"name":"CONVERT10_E_LAST","features":[1]},{"name":"CONVERT10_E_OLELINK_DISABLED","features":[1]},{"name":"CONVERT10_E_OLESTREAM_BITMAP_TO_DIB","features":[1]},{"name":"CONVERT10_E_OLESTREAM_FMT","features":[1]},{"name":"CONVERT10_E_OLESTREAM_GET","features":[1]},{"name":"CONVERT10_E_OLESTREAM_PUT","features":[1]},{"name":"CONVERT10_E_STG_DIB_TO_BITMAP","features":[1]},{"name":"CONVERT10_E_STG_FMT","features":[1]},{"name":"CONVERT10_E_STG_NO_STD_STREAM","features":[1]},{"name":"CONVERT10_S_FIRST","features":[1]},{"name":"CONVERT10_S_LAST","features":[1]},{"name":"CONVERT10_S_NO_PRESENTATION","features":[1]},{"name":"CO_E_ACCESSCHECKFAILED","features":[1]},{"name":"CO_E_ACESINWRONGORDER","features":[1]},{"name":"CO_E_ACNOTINITIALIZED","features":[1]},{"name":"CO_E_ACTIVATIONFAILED","features":[1]},{"name":"CO_E_ACTIVATIONFAILED_CATALOGERROR","features":[1]},{"name":"CO_E_ACTIVATIONFAILED_EVENTLOGGED","features":[1]},{"name":"CO_E_ACTIVATIONFAILED_TIMEOUT","features":[1]},{"name":"CO_E_ALREADYINITIALIZED","features":[1]},{"name":"CO_E_APPDIDNTREG","features":[1]},{"name":"CO_E_APPNOTFOUND","features":[1]},{"name":"CO_E_APPSINGLEUSE","features":[1]},{"name":"CO_E_ASYNC_WORK_REJECTED","features":[1]},{"name":"CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT","features":[1]},{"name":"CO_E_BAD_PATH","features":[1]},{"name":"CO_E_BAD_SERVER_NAME","features":[1]},{"name":"CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED","features":[1]},{"name":"CO_E_CANCEL_DISABLED","features":[1]},{"name":"CO_E_CANTDETERMINECLASS","features":[1]},{"name":"CO_E_CANT_REMOTE","features":[1]},{"name":"CO_E_CLASSSTRING","features":[1]},{"name":"CO_E_CLASS_CREATE_FAILED","features":[1]},{"name":"CO_E_CLASS_DISABLED","features":[1]},{"name":"CO_E_CLRNOTAVAILABLE","features":[1]},{"name":"CO_E_CLSREG_INCONSISTENT","features":[1]},{"name":"CO_E_CONVERSIONFAILED","features":[1]},{"name":"CO_E_CREATEPROCESS_FAILURE","features":[1]},{"name":"CO_E_DBERROR","features":[1]},{"name":"CO_E_DECODEFAILED","features":[1]},{"name":"CO_E_DLLNOTFOUND","features":[1]},{"name":"CO_E_ELEVATION_DISABLED","features":[1]},{"name":"CO_E_ERRORINAPP","features":[1]},{"name":"CO_E_ERRORINDLL","features":[1]},{"name":"CO_E_EXCEEDSYSACLLIMIT","features":[1]},{"name":"CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED","features":[1]},{"name":"CO_E_FAILEDTOCLOSEHANDLE","features":[1]},{"name":"CO_E_FAILEDTOCREATEFILE","features":[1]},{"name":"CO_E_FAILEDTOGENUUID","features":[1]},{"name":"CO_E_FAILEDTOGETSECCTX","features":[1]},{"name":"CO_E_FAILEDTOGETTOKENINFO","features":[1]},{"name":"CO_E_FAILEDTOGETWINDIR","features":[1]},{"name":"CO_E_FAILEDTOIMPERSONATE","features":[1]},{"name":"CO_E_FAILEDTOOPENPROCESSTOKEN","features":[1]},{"name":"CO_E_FAILEDTOOPENTHREADTOKEN","features":[1]},{"name":"CO_E_FAILEDTOQUERYCLIENTBLANKET","features":[1]},{"name":"CO_E_FAILEDTOSETDACL","features":[1]},{"name":"CO_E_FIRST","features":[1]},{"name":"CO_E_IIDREG_INCONSISTENT","features":[1]},{"name":"CO_E_IIDSTRING","features":[1]},{"name":"CO_E_INCOMPATIBLESTREAMVERSION","features":[1]},{"name":"CO_E_INITIALIZATIONFAILED","features":[1]},{"name":"CO_E_INIT_CLASS_CACHE","features":[1]},{"name":"CO_E_INIT_MEMORY_ALLOCATOR","features":[1]},{"name":"CO_E_INIT_ONLY_SINGLE_THREADED","features":[1]},{"name":"CO_E_INIT_RPC_CHANNEL","features":[1]},{"name":"CO_E_INIT_SCM_EXEC_FAILURE","features":[1]},{"name":"CO_E_INIT_SCM_FILE_MAPPING_EXISTS","features":[1]},{"name":"CO_E_INIT_SCM_MAP_VIEW_OF_FILE","features":[1]},{"name":"CO_E_INIT_SCM_MUTEX_EXISTS","features":[1]},{"name":"CO_E_INIT_SHARED_ALLOCATOR","features":[1]},{"name":"CO_E_INIT_TLS","features":[1]},{"name":"CO_E_INIT_TLS_CHANNEL_CONTROL","features":[1]},{"name":"CO_E_INIT_TLS_SET_CHANNEL_CONTROL","features":[1]},{"name":"CO_E_INIT_UNACCEPTED_USER_ALLOCATOR","features":[1]},{"name":"CO_E_INVALIDSID","features":[1]},{"name":"CO_E_ISOLEVELMISMATCH","features":[1]},{"name":"CO_E_LAST","features":[1]},{"name":"CO_E_LAUNCH_PERMSSION_DENIED","features":[1]},{"name":"CO_E_LOOKUPACCNAMEFAILED","features":[1]},{"name":"CO_E_LOOKUPACCSIDFAILED","features":[1]},{"name":"CO_E_MALFORMED_SPN","features":[1]},{"name":"CO_E_MISSING_DISPLAYNAME","features":[1]},{"name":"CO_E_MSI_ERROR","features":[1]},{"name":"CO_E_NETACCESSAPIFAILED","features":[1]},{"name":"CO_E_NOCOOKIES","features":[1]},{"name":"CO_E_NOIISINTRINSICS","features":[1]},{"name":"CO_E_NOMATCHINGNAMEFOUND","features":[1]},{"name":"CO_E_NOMATCHINGSIDFOUND","features":[1]},{"name":"CO_E_NOSYNCHRONIZATION","features":[1]},{"name":"CO_E_NOTCONSTRUCTED","features":[1]},{"name":"CO_E_NOTINITIALIZED","features":[1]},{"name":"CO_E_NOTPOOLED","features":[1]},{"name":"CO_E_NOT_SUPPORTED","features":[1]},{"name":"CO_E_NO_SECCTX_IN_ACTIVATE","features":[1]},{"name":"CO_E_OBJISREG","features":[1]},{"name":"CO_E_OBJNOTCONNECTED","features":[1]},{"name":"CO_E_OBJNOTREG","features":[1]},{"name":"CO_E_OBJSRV_RPC_FAILURE","features":[1]},{"name":"CO_E_OLE1DDE_DISABLED","features":[1]},{"name":"CO_E_PATHTOOLONG","features":[1]},{"name":"CO_E_PREMATURE_STUB_RUNDOWN","features":[1]},{"name":"CO_E_RELEASED","features":[1]},{"name":"CO_E_RELOAD_DLL","features":[1]},{"name":"CO_E_REMOTE_COMMUNICATION_FAILURE","features":[1]},{"name":"CO_E_RUNAS_CREATEPROCESS_FAILURE","features":[1]},{"name":"CO_E_RUNAS_LOGON_FAILURE","features":[1]},{"name":"CO_E_RUNAS_SYNTAX","features":[1]},{"name":"CO_E_RUNAS_VALUE_MUST_BE_AAA","features":[1]},{"name":"CO_E_SCM_ERROR","features":[1]},{"name":"CO_E_SCM_RPC_FAILURE","features":[1]},{"name":"CO_E_SERVER_EXEC_FAILURE","features":[1]},{"name":"CO_E_SERVER_INIT_TIMEOUT","features":[1]},{"name":"CO_E_SERVER_NOT_PAUSED","features":[1]},{"name":"CO_E_SERVER_PAUSED","features":[1]},{"name":"CO_E_SERVER_START_TIMEOUT","features":[1]},{"name":"CO_E_SERVER_STOPPING","features":[1]},{"name":"CO_E_SETSERLHNDLFAILED","features":[1]},{"name":"CO_E_START_SERVICE_FAILURE","features":[1]},{"name":"CO_E_SXS_CONFIG","features":[1]},{"name":"CO_E_THREADINGMODEL_CHANGED","features":[1]},{"name":"CO_E_THREADPOOL_CONFIG","features":[1]},{"name":"CO_E_TRACKER_CONFIG","features":[1]},{"name":"CO_E_TRUSTEEDOESNTMATCHCLIENT","features":[1]},{"name":"CO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN","features":[1]},{"name":"CO_E_WRONGOSFORAPP","features":[1]},{"name":"CO_E_WRONGTRUSTEENAMESYNTAX","features":[1]},{"name":"CO_E_WRONG_SERVER_IDENTITY","features":[1]},{"name":"CO_S_FIRST","features":[1]},{"name":"CO_S_LAST","features":[1]},{"name":"CO_S_MACHINENAMENOTFOUND","features":[1]},{"name":"CO_S_NOTALLINTERFACES","features":[1]},{"name":"CRYPT_E_ALREADY_DECRYPTED","features":[1]},{"name":"CRYPT_E_ASN1_BADARGS","features":[1]},{"name":"CRYPT_E_ASN1_BADPDU","features":[1]},{"name":"CRYPT_E_ASN1_BADREAL","features":[1]},{"name":"CRYPT_E_ASN1_BADTAG","features":[1]},{"name":"CRYPT_E_ASN1_CHOICE","features":[1]},{"name":"CRYPT_E_ASN1_CONSTRAINT","features":[1]},{"name":"CRYPT_E_ASN1_CORRUPT","features":[1]},{"name":"CRYPT_E_ASN1_EOD","features":[1]},{"name":"CRYPT_E_ASN1_ERROR","features":[1]},{"name":"CRYPT_E_ASN1_EXTENDED","features":[1]},{"name":"CRYPT_E_ASN1_INTERNAL","features":[1]},{"name":"CRYPT_E_ASN1_LARGE","features":[1]},{"name":"CRYPT_E_ASN1_MEMORY","features":[1]},{"name":"CRYPT_E_ASN1_NOEOD","features":[1]},{"name":"CRYPT_E_ASN1_NYI","features":[1]},{"name":"CRYPT_E_ASN1_OVERFLOW","features":[1]},{"name":"CRYPT_E_ASN1_PDU_TYPE","features":[1]},{"name":"CRYPT_E_ASN1_RULE","features":[1]},{"name":"CRYPT_E_ASN1_UTF8","features":[1]},{"name":"CRYPT_E_ATTRIBUTES_MISSING","features":[1]},{"name":"CRYPT_E_AUTH_ATTR_MISSING","features":[1]},{"name":"CRYPT_E_BAD_ENCODE","features":[1]},{"name":"CRYPT_E_BAD_LEN","features":[1]},{"name":"CRYPT_E_BAD_MSG","features":[1]},{"name":"CRYPT_E_CONTROL_TYPE","features":[1]},{"name":"CRYPT_E_DELETED_PREV","features":[1]},{"name":"CRYPT_E_EXISTS","features":[1]},{"name":"CRYPT_E_FILERESIZED","features":[1]},{"name":"CRYPT_E_FILE_ERROR","features":[1]},{"name":"CRYPT_E_HASH_VALUE","features":[1]},{"name":"CRYPT_E_INVALID_IA5_STRING","features":[1]},{"name":"CRYPT_E_INVALID_INDEX","features":[1]},{"name":"CRYPT_E_INVALID_MSG_TYPE","features":[1]},{"name":"CRYPT_E_INVALID_NUMERIC_STRING","features":[1]},{"name":"CRYPT_E_INVALID_PRINTABLE_STRING","features":[1]},{"name":"CRYPT_E_INVALID_X500_STRING","features":[1]},{"name":"CRYPT_E_ISSUER_SERIALNUMBER","features":[1]},{"name":"CRYPT_E_MISSING_PUBKEY_PARA","features":[1]},{"name":"CRYPT_E_MSG_ERROR","features":[1]},{"name":"CRYPT_E_NOT_CHAR_STRING","features":[1]},{"name":"CRYPT_E_NOT_DECRYPTED","features":[1]},{"name":"CRYPT_E_NOT_FOUND","features":[1]},{"name":"CRYPT_E_NOT_IN_CTL","features":[1]},{"name":"CRYPT_E_NOT_IN_REVOCATION_DATABASE","features":[1]},{"name":"CRYPT_E_NO_DECRYPT_CERT","features":[1]},{"name":"CRYPT_E_NO_KEY_PROPERTY","features":[1]},{"name":"CRYPT_E_NO_MATCH","features":[1]},{"name":"CRYPT_E_NO_PROVIDER","features":[1]},{"name":"CRYPT_E_NO_REVOCATION_CHECK","features":[1]},{"name":"CRYPT_E_NO_REVOCATION_DLL","features":[1]},{"name":"CRYPT_E_NO_SIGNER","features":[1]},{"name":"CRYPT_E_NO_TRUSTED_SIGNER","features":[1]},{"name":"CRYPT_E_NO_VERIFY_USAGE_CHECK","features":[1]},{"name":"CRYPT_E_NO_VERIFY_USAGE_DLL","features":[1]},{"name":"CRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND","features":[1]},{"name":"CRYPT_E_OID_FORMAT","features":[1]},{"name":"CRYPT_E_OSS_ERROR","features":[1]},{"name":"CRYPT_E_PENDING_CLOSE","features":[1]},{"name":"CRYPT_E_RECIPIENT_NOT_FOUND","features":[1]},{"name":"CRYPT_E_REVOCATION_OFFLINE","features":[1]},{"name":"CRYPT_E_REVOKED","features":[1]},{"name":"CRYPT_E_SECURITY_SETTINGS","features":[1]},{"name":"CRYPT_E_SELF_SIGNED","features":[1]},{"name":"CRYPT_E_SIGNER_NOT_FOUND","features":[1]},{"name":"CRYPT_E_STREAM_INSUFFICIENT_DATA","features":[1]},{"name":"CRYPT_E_STREAM_MSG_NOT_READY","features":[1]},{"name":"CRYPT_E_UNEXPECTED_ENCODING","features":[1]},{"name":"CRYPT_E_UNEXPECTED_MSG_TYPE","features":[1]},{"name":"CRYPT_E_UNKNOWN_ALGO","features":[1]},{"name":"CRYPT_E_VERIFY_USAGE_OFFLINE","features":[1]},{"name":"CRYPT_I_NEW_PROTECTION_REQUIRED","features":[1]},{"name":"CS_E_ADMIN_LIMIT_EXCEEDED","features":[1]},{"name":"CS_E_CLASS_NOTFOUND","features":[1]},{"name":"CS_E_FIRST","features":[1]},{"name":"CS_E_INTERNAL_ERROR","features":[1]},{"name":"CS_E_INVALID_PATH","features":[1]},{"name":"CS_E_INVALID_VERSION","features":[1]},{"name":"CS_E_LAST","features":[1]},{"name":"CS_E_NETWORK_ERROR","features":[1]},{"name":"CS_E_NOT_DELETABLE","features":[1]},{"name":"CS_E_NO_CLASSSTORE","features":[1]},{"name":"CS_E_OBJECT_ALREADY_EXISTS","features":[1]},{"name":"CS_E_OBJECT_NOTFOUND","features":[1]},{"name":"CS_E_PACKAGE_NOTFOUND","features":[1]},{"name":"CS_E_SCHEMA_MISMATCH","features":[1]},{"name":"CloseHandle","features":[1]},{"name":"CompareObjectHandles","features":[1]},{"name":"D2DERR_BAD_NUMBER","features":[1]},{"name":"D2DERR_BITMAP_BOUND_AS_TARGET","features":[1]},{"name":"D2DERR_BITMAP_CANNOT_DRAW","features":[1]},{"name":"D2DERR_CYCLIC_GRAPH","features":[1]},{"name":"D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED","features":[1]},{"name":"D2DERR_DISPLAY_STATE_INVALID","features":[1]},{"name":"D2DERR_EFFECT_IS_NOT_REGISTERED","features":[1]},{"name":"D2DERR_EXCEEDS_MAX_BITMAP_SIZE","features":[1]},{"name":"D2DERR_INCOMPATIBLE_BRUSH_TYPES","features":[1]},{"name":"D2DERR_INSUFFICIENT_DEVICE_CAPABILITIES","features":[1]},{"name":"D2DERR_INTERMEDIATE_TOO_LARGE","features":[1]},{"name":"D2DERR_INTERNAL_ERROR","features":[1]},{"name":"D2DERR_INVALID_CALL","features":[1]},{"name":"D2DERR_INVALID_GLYPH_IMAGE","features":[1]},{"name":"D2DERR_INVALID_GRAPH_CONFIGURATION","features":[1]},{"name":"D2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION","features":[1]},{"name":"D2DERR_INVALID_PROPERTY","features":[1]},{"name":"D2DERR_INVALID_TARGET","features":[1]},{"name":"D2DERR_LAYER_ALREADY_IN_USE","features":[1]},{"name":"D2DERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[1]},{"name":"D2DERR_NOT_INITIALIZED","features":[1]},{"name":"D2DERR_NO_HARDWARE_DEVICE","features":[1]},{"name":"D2DERR_NO_SUBPROPERTIES","features":[1]},{"name":"D2DERR_ORIGINAL_TARGET_NOT_BOUND","features":[1]},{"name":"D2DERR_OUTSTANDING_BITMAP_REFERENCES","features":[1]},{"name":"D2DERR_POP_CALL_DID_NOT_MATCH_PUSH","features":[1]},{"name":"D2DERR_PRINT_FORMAT_NOT_SUPPORTED","features":[1]},{"name":"D2DERR_PRINT_JOB_CLOSED","features":[1]},{"name":"D2DERR_PUSH_POP_UNBALANCED","features":[1]},{"name":"D2DERR_RECREATE_TARGET","features":[1]},{"name":"D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT","features":[1]},{"name":"D2DERR_SCANNER_FAILED","features":[1]},{"name":"D2DERR_SCREEN_ACCESS_DENIED","features":[1]},{"name":"D2DERR_SHADER_COMPILE_FAILED","features":[1]},{"name":"D2DERR_TARGET_NOT_GDI_COMPATIBLE","features":[1]},{"name":"D2DERR_TEXT_EFFECT_IS_WRONG_TYPE","features":[1]},{"name":"D2DERR_TEXT_RENDERER_NOT_RELEASED","features":[1]},{"name":"D2DERR_TOO_MANY_SHADER_ELEMENTS","features":[1]},{"name":"D2DERR_TOO_MANY_TRANSFORM_INPUTS","features":[1]},{"name":"D2DERR_UNSUPPORTED_OPERATION","features":[1]},{"name":"D2DERR_UNSUPPORTED_VERSION","features":[1]},{"name":"D2DERR_WIN32_ERROR","features":[1]},{"name":"D2DERR_WRONG_FACTORY","features":[1]},{"name":"D2DERR_WRONG_RESOURCE_DOMAIN","features":[1]},{"name":"D2DERR_WRONG_STATE","features":[1]},{"name":"D2DERR_ZERO_VECTOR","features":[1]},{"name":"D3D10_ERROR_FILE_NOT_FOUND","features":[1]},{"name":"D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[1]},{"name":"D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD","features":[1]},{"name":"D3D11_ERROR_FILE_NOT_FOUND","features":[1]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[1]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS","features":[1]},{"name":"D3D12_ERROR_ADAPTER_NOT_FOUND","features":[1]},{"name":"D3D12_ERROR_DRIVER_VERSION_MISMATCH","features":[1]},{"name":"D3D12_ERROR_INVALID_REDIST","features":[1]},{"name":"DATA_E_FIRST","features":[1]},{"name":"DATA_E_LAST","features":[1]},{"name":"DATA_S_FIRST","features":[1]},{"name":"DATA_S_LAST","features":[1]},{"name":"DATA_S_SAMEFORMATETC","features":[1]},{"name":"DBG_APP_NOT_IDLE","features":[1]},{"name":"DBG_COMMAND_EXCEPTION","features":[1]},{"name":"DBG_CONTINUE","features":[1]},{"name":"DBG_CONTROL_BREAK","features":[1]},{"name":"DBG_CONTROL_C","features":[1]},{"name":"DBG_EXCEPTION_HANDLED","features":[1]},{"name":"DBG_EXCEPTION_NOT_HANDLED","features":[1]},{"name":"DBG_NO_STATE_CHANGE","features":[1]},{"name":"DBG_PRINTEXCEPTION_C","features":[1]},{"name":"DBG_PRINTEXCEPTION_WIDE_C","features":[1]},{"name":"DBG_REPLY_LATER","features":[1]},{"name":"DBG_RIPEXCEPTION","features":[1]},{"name":"DBG_TERMINATE_PROCESS","features":[1]},{"name":"DBG_TERMINATE_THREAD","features":[1]},{"name":"DBG_UNABLE_TO_PROVIDE_HANDLE","features":[1]},{"name":"DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED","features":[1]},{"name":"DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED","features":[1]},{"name":"DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED","features":[1]},{"name":"DECIMAL","features":[1]},{"name":"DIGSIG_E_CRYPTO","features":[1]},{"name":"DIGSIG_E_DECODE","features":[1]},{"name":"DIGSIG_E_ENCODE","features":[1]},{"name":"DIGSIG_E_EXTENSIBILITY","features":[1]},{"name":"DISP_E_ARRAYISLOCKED","features":[1]},{"name":"DISP_E_BADCALLEE","features":[1]},{"name":"DISP_E_BADINDEX","features":[1]},{"name":"DISP_E_BADPARAMCOUNT","features":[1]},{"name":"DISP_E_BADVARTYPE","features":[1]},{"name":"DISP_E_BUFFERTOOSMALL","features":[1]},{"name":"DISP_E_DIVBYZERO","features":[1]},{"name":"DISP_E_EXCEPTION","features":[1]},{"name":"DISP_E_MEMBERNOTFOUND","features":[1]},{"name":"DISP_E_NONAMEDARGS","features":[1]},{"name":"DISP_E_NOTACOLLECTION","features":[1]},{"name":"DISP_E_OVERFLOW","features":[1]},{"name":"DISP_E_PARAMNOTFOUND","features":[1]},{"name":"DISP_E_PARAMNOTOPTIONAL","features":[1]},{"name":"DISP_E_TYPEMISMATCH","features":[1]},{"name":"DISP_E_UNKNOWNINTERFACE","features":[1]},{"name":"DISP_E_UNKNOWNLCID","features":[1]},{"name":"DISP_E_UNKNOWNNAME","features":[1]},{"name":"DNS_ERROR_ADDRESS_REQUIRED","features":[1]},{"name":"DNS_ERROR_ALIAS_LOOP","features":[1]},{"name":"DNS_ERROR_AUTOZONE_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_AXFR","features":[1]},{"name":"DNS_ERROR_BACKGROUND_LOADING","features":[1]},{"name":"DNS_ERROR_BAD_KEYMASTER","features":[1]},{"name":"DNS_ERROR_BAD_PACKET","features":[1]},{"name":"DNS_ERROR_CANNOT_FIND_ROOT_HINTS","features":[1]},{"name":"DNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_CLIENT_SUBNET_IS_ACCESSED","features":[1]},{"name":"DNS_ERROR_CNAME_COLLISION","features":[1]},{"name":"DNS_ERROR_CNAME_LOOP","features":[1]},{"name":"DNS_ERROR_DATABASE_BASE","features":[1]},{"name":"DNS_ERROR_DATAFILE_BASE","features":[1]},{"name":"DNS_ERROR_DATAFILE_OPEN_FAILURE","features":[1]},{"name":"DNS_ERROR_DATAFILE_PARSING","features":[1]},{"name":"DNS_ERROR_DEFAULT_SCOPE","features":[1]},{"name":"DNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE","features":[1]},{"name":"DNS_ERROR_DEFAULT_ZONESCOPE","features":[1]},{"name":"DNS_ERROR_DELEGATION_REQUIRED","features":[1]},{"name":"DNS_ERROR_DNAME_COLLISION","features":[1]},{"name":"DNS_ERROR_DNSSEC_BASE","features":[1]},{"name":"DNS_ERROR_DNSSEC_IS_DISABLED","features":[1]},{"name":"DNS_ERROR_DP_ALREADY_ENLISTED","features":[1]},{"name":"DNS_ERROR_DP_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_DP_BASE","features":[1]},{"name":"DNS_ERROR_DP_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_DP_FSMO_ERROR","features":[1]},{"name":"DNS_ERROR_DP_NOT_AVAILABLE","features":[1]},{"name":"DNS_ERROR_DP_NOT_ENLISTED","features":[1]},{"name":"DNS_ERROR_DS_UNAVAILABLE","features":[1]},{"name":"DNS_ERROR_DS_ZONE_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_LARGE","features":[1]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_SMALL","features":[1]},{"name":"DNS_ERROR_FILE_WRITEBACK_FAILED","features":[1]},{"name":"DNS_ERROR_FORWARDER_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_GENERAL_API_BASE","features":[1]},{"name":"DNS_ERROR_INCONSISTENT_ROOT_HINTS","features":[1]},{"name":"DNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME","features":[1]},{"name":"DNS_ERROR_INVALID_CLIENT_SUBNET_NAME","features":[1]},{"name":"DNS_ERROR_INVALID_DATA","features":[1]},{"name":"DNS_ERROR_INVALID_DATAFILE_NAME","features":[1]},{"name":"DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET","features":[1]},{"name":"DNS_ERROR_INVALID_IP_ADDRESS","features":[1]},{"name":"DNS_ERROR_INVALID_KEY_SIZE","features":[1]},{"name":"DNS_ERROR_INVALID_NAME","features":[1]},{"name":"DNS_ERROR_INVALID_NAME_CHAR","features":[1]},{"name":"DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT","features":[1]},{"name":"DNS_ERROR_INVALID_POLICY_TABLE","features":[1]},{"name":"DNS_ERROR_INVALID_PROPERTY","features":[1]},{"name":"DNS_ERROR_INVALID_ROLLOVER_PERIOD","features":[1]},{"name":"DNS_ERROR_INVALID_SCOPE_NAME","features":[1]},{"name":"DNS_ERROR_INVALID_SCOPE_OPERATION","features":[1]},{"name":"DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD","features":[1]},{"name":"DNS_ERROR_INVALID_TYPE","features":[1]},{"name":"DNS_ERROR_INVALID_XML","features":[1]},{"name":"DNS_ERROR_INVALID_ZONESCOPE_NAME","features":[1]},{"name":"DNS_ERROR_INVALID_ZONE_OPERATION","features":[1]},{"name":"DNS_ERROR_INVALID_ZONE_TYPE","features":[1]},{"name":"DNS_ERROR_KEYMASTER_REQUIRED","features":[1]},{"name":"DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION","features":[1]},{"name":"DNS_ERROR_KSP_NOT_ACCESSIBLE","features":[1]},{"name":"DNS_ERROR_LOAD_ZONESCOPE_FAILED","features":[1]},{"name":"DNS_ERROR_MASK","features":[1]},{"name":"DNS_ERROR_NAME_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_NAME_NOT_IN_ZONE","features":[1]},{"name":"DNS_ERROR_NBSTAT_INIT_FAILED","features":[1]},{"name":"DNS_ERROR_NEED_SECONDARY_ADDRESSES","features":[1]},{"name":"DNS_ERROR_NEED_WINS_SERVERS","features":[1]},{"name":"DNS_ERROR_NODE_CREATION_FAILED","features":[1]},{"name":"DNS_ERROR_NODE_IS_CNAME","features":[1]},{"name":"DNS_ERROR_NODE_IS_DNAME","features":[1]},{"name":"DNS_ERROR_NON_RFC_NAME","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_RODC","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ZSK","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DNAME","features":[1]},{"name":"DNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES","features":[1]},{"name":"DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS","features":[1]},{"name":"DNS_ERROR_NOT_UNIQUE","features":[1]},{"name":"DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE","features":[1]},{"name":"DNS_ERROR_NO_CREATE_CACHE_DATA","features":[1]},{"name":"DNS_ERROR_NO_DNS_SERVERS","features":[1]},{"name":"DNS_ERROR_NO_MEMORY","features":[1]},{"name":"DNS_ERROR_NO_PACKET","features":[1]},{"name":"DNS_ERROR_NO_TCPIP","features":[1]},{"name":"DNS_ERROR_NO_VALID_TRUST_ANCHORS","features":[1]},{"name":"DNS_ERROR_NO_ZONE_INFO","features":[1]},{"name":"DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1","features":[1]},{"name":"DNS_ERROR_NSEC3_NAME_COLLISION","features":[1]},{"name":"DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1","features":[1]},{"name":"DNS_ERROR_NUMERIC_NAME","features":[1]},{"name":"DNS_ERROR_OPERATION_BASE","features":[1]},{"name":"DNS_ERROR_PACKET_FMT_BASE","features":[1]},{"name":"DNS_ERROR_POLICY_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_POLICY_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_FQDN","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_NAME","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_SETTINGS","features":[1]},{"name":"DNS_ERROR_POLICY_INVALID_WEIGHT","features":[1]},{"name":"DNS_ERROR_POLICY_LOCKED","features":[1]},{"name":"DNS_ERROR_POLICY_MISSING_CRITERIA","features":[1]},{"name":"DNS_ERROR_POLICY_PROCESSING_ORDER_INVALID","features":[1]},{"name":"DNS_ERROR_POLICY_SCOPE_MISSING","features":[1]},{"name":"DNS_ERROR_POLICY_SCOPE_NOT_ALLOWED","features":[1]},{"name":"DNS_ERROR_PRIMARY_REQUIRES_DATAFILE","features":[1]},{"name":"DNS_ERROR_RCODE","features":[1]},{"name":"DNS_ERROR_RCODE_BADKEY","features":[1]},{"name":"DNS_ERROR_RCODE_BADSIG","features":[1]},{"name":"DNS_ERROR_RCODE_BADTIME","features":[1]},{"name":"DNS_ERROR_RCODE_FORMAT_ERROR","features":[1]},{"name":"DNS_ERROR_RCODE_LAST","features":[1]},{"name":"DNS_ERROR_RCODE_NAME_ERROR","features":[1]},{"name":"DNS_ERROR_RCODE_NOTAUTH","features":[1]},{"name":"DNS_ERROR_RCODE_NOTZONE","features":[1]},{"name":"DNS_ERROR_RCODE_NOT_IMPLEMENTED","features":[1]},{"name":"DNS_ERROR_RCODE_NO_ERROR","features":[1]},{"name":"DNS_ERROR_RCODE_NXRRSET","features":[1]},{"name":"DNS_ERROR_RCODE_REFUSED","features":[1]},{"name":"DNS_ERROR_RCODE_SERVER_FAILURE","features":[1]},{"name":"DNS_ERROR_RCODE_YXDOMAIN","features":[1]},{"name":"DNS_ERROR_RCODE_YXRRSET","features":[1]},{"name":"DNS_ERROR_RECORD_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_RECORD_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_RECORD_FORMAT","features":[1]},{"name":"DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT","features":[1]},{"name":"DNS_ERROR_RECORD_TIMED_OUT","features":[1]},{"name":"DNS_ERROR_RESPONSE_CODES_BASE","features":[1]},{"name":"DNS_ERROR_ROLLOVER_ALREADY_QUEUED","features":[1]},{"name":"DNS_ERROR_ROLLOVER_IN_PROGRESS","features":[1]},{"name":"DNS_ERROR_ROLLOVER_NOT_POKEABLE","features":[1]},{"name":"DNS_ERROR_RRL_INVALID_IPV4_PREFIX","features":[1]},{"name":"DNS_ERROR_RRL_INVALID_IPV6_PREFIX","features":[1]},{"name":"DNS_ERROR_RRL_INVALID_LEAK_RATE","features":[1]},{"name":"DNS_ERROR_RRL_INVALID_TC_RATE","features":[1]},{"name":"DNS_ERROR_RRL_INVALID_WINDOW_SIZE","features":[1]},{"name":"DNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE","features":[1]},{"name":"DNS_ERROR_RRL_NOT_ENABLED","features":[1]},{"name":"DNS_ERROR_SCOPE_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_SCOPE_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_SCOPE_LOCKED","features":[1]},{"name":"DNS_ERROR_SECONDARY_DATA","features":[1]},{"name":"DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP","features":[1]},{"name":"DNS_ERROR_SECURE_BASE","features":[1]},{"name":"DNS_ERROR_SERVERSCOPE_IS_REFERENCED","features":[1]},{"name":"DNS_ERROR_SETUP_BASE","features":[1]},{"name":"DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE","features":[1]},{"name":"DNS_ERROR_SOA_DELETE_INVALID","features":[1]},{"name":"DNS_ERROR_STANDBY_KEY_NOT_PRESENT","features":[1]},{"name":"DNS_ERROR_SUBNET_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_SUBNET_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_TOO_MANY_SKDS","features":[1]},{"name":"DNS_ERROR_TRY_AGAIN_LATER","features":[1]},{"name":"DNS_ERROR_UNEXPECTED_CNG_ERROR","features":[1]},{"name":"DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR","features":[1]},{"name":"DNS_ERROR_UNKNOWN_RECORD_TYPE","features":[1]},{"name":"DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION","features":[1]},{"name":"DNS_ERROR_UNSECURE_PACKET","features":[1]},{"name":"DNS_ERROR_UNSUPPORTED_ALGORITHM","features":[1]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_VIRTUALIZATION_TREE_LOCKED","features":[1]},{"name":"DNS_ERROR_WINS_INIT_FAILED","features":[1]},{"name":"DNS_ERROR_ZONESCOPE_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_ZONESCOPE_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED","features":[1]},{"name":"DNS_ERROR_ZONESCOPE_IS_REFERENCED","features":[1]},{"name":"DNS_ERROR_ZONE_ALREADY_EXISTS","features":[1]},{"name":"DNS_ERROR_ZONE_BASE","features":[1]},{"name":"DNS_ERROR_ZONE_CONFIGURATION_ERROR","features":[1]},{"name":"DNS_ERROR_ZONE_CREATION_FAILED","features":[1]},{"name":"DNS_ERROR_ZONE_DOES_NOT_EXIST","features":[1]},{"name":"DNS_ERROR_ZONE_HAS_NO_NS_RECORDS","features":[1]},{"name":"DNS_ERROR_ZONE_HAS_NO_SOA_RECORD","features":[1]},{"name":"DNS_ERROR_ZONE_IS_SHUTDOWN","features":[1]},{"name":"DNS_ERROR_ZONE_LOCKED","features":[1]},{"name":"DNS_ERROR_ZONE_LOCKED_FOR_SIGNING","features":[1]},{"name":"DNS_ERROR_ZONE_NOT_SECONDARY","features":[1]},{"name":"DNS_ERROR_ZONE_REQUIRES_MASTER_IP","features":[1]},{"name":"DNS_INFO_ADDED_LOCAL_WINS","features":[1]},{"name":"DNS_INFO_AXFR_COMPLETE","features":[1]},{"name":"DNS_INFO_NO_RECORDS","features":[1]},{"name":"DNS_REQUEST_PENDING","features":[1]},{"name":"DNS_STATUS_CONTINUE_NEEDED","features":[1]},{"name":"DNS_STATUS_DOTTED_NAME","features":[1]},{"name":"DNS_STATUS_FQDN","features":[1]},{"name":"DNS_STATUS_SINGLE_PART_NAME","features":[1]},{"name":"DNS_WARNING_DOMAIN_UNDELETED","features":[1]},{"name":"DNS_WARNING_PTR_CREATE_FAILED","features":[1]},{"name":"DRAGDROP_E_ALREADYREGISTERED","features":[1]},{"name":"DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED","features":[1]},{"name":"DRAGDROP_E_FIRST","features":[1]},{"name":"DRAGDROP_E_INVALIDHWND","features":[1]},{"name":"DRAGDROP_E_LAST","features":[1]},{"name":"DRAGDROP_E_NOTREGISTERED","features":[1]},{"name":"DRAGDROP_S_CANCEL","features":[1]},{"name":"DRAGDROP_S_DROP","features":[1]},{"name":"DRAGDROP_S_FIRST","features":[1]},{"name":"DRAGDROP_S_LAST","features":[1]},{"name":"DRAGDROP_S_USEDEFAULTCURSORS","features":[1]},{"name":"DUPLICATE_CLOSE_SOURCE","features":[1]},{"name":"DUPLICATE_HANDLE_OPTIONS","features":[1]},{"name":"DUPLICATE_SAME_ACCESS","features":[1]},{"name":"DV_E_CLIPFORMAT","features":[1]},{"name":"DV_E_DVASPECT","features":[1]},{"name":"DV_E_DVTARGETDEVICE","features":[1]},{"name":"DV_E_DVTARGETDEVICE_SIZE","features":[1]},{"name":"DV_E_FORMATETC","features":[1]},{"name":"DV_E_LINDEX","features":[1]},{"name":"DV_E_NOIVIEWOBJECT","features":[1]},{"name":"DV_E_STATDATA","features":[1]},{"name":"DV_E_STGMEDIUM","features":[1]},{"name":"DV_E_TYMED","features":[1]},{"name":"DWMERR_CATASTROPHIC_FAILURE","features":[1]},{"name":"DWMERR_STATE_TRANSITION_FAILED","features":[1]},{"name":"DWMERR_THEME_FAILED","features":[1]},{"name":"DWM_E_ADAPTER_NOT_FOUND","features":[1]},{"name":"DWM_E_COMPOSITIONDISABLED","features":[1]},{"name":"DWM_E_NOT_QUEUING_PRESENTS","features":[1]},{"name":"DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE","features":[1]},{"name":"DWM_E_REMOTING_NOT_SUPPORTED","features":[1]},{"name":"DWM_E_TEXTURE_TOO_LARGE","features":[1]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE","features":[1]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI","features":[1]},{"name":"DWRITE_E_ALREADYREGISTERED","features":[1]},{"name":"DWRITE_E_CACHEFORMAT","features":[1]},{"name":"DWRITE_E_CACHEVERSION","features":[1]},{"name":"DWRITE_E_FILEACCESS","features":[1]},{"name":"DWRITE_E_FILEFORMAT","features":[1]},{"name":"DWRITE_E_FILENOTFOUND","features":[1]},{"name":"DWRITE_E_FLOWDIRECTIONCONFLICTS","features":[1]},{"name":"DWRITE_E_FONTCOLLECTIONOBSOLETE","features":[1]},{"name":"DWRITE_E_NOCOLOR","features":[1]},{"name":"DWRITE_E_NOFONT","features":[1]},{"name":"DWRITE_E_TEXTRENDERERINCOMPATIBLE","features":[1]},{"name":"DWRITE_E_UNEXPECTED","features":[1]},{"name":"DWRITE_E_UNSUPPORTEDOPERATION","features":[1]},{"name":"DXCORE_ERROR_EVENT_NOT_UNREGISTERED","features":[1]},{"name":"DXGI_DDI_ERR_NONEXCLUSIVE","features":[1]},{"name":"DXGI_DDI_ERR_UNSUPPORTED","features":[1]},{"name":"DXGI_DDI_ERR_WASSTILLDRAWING","features":[1]},{"name":"DXGI_STATUS_CLIPPED","features":[1]},{"name":"DXGI_STATUS_DDA_WAS_STILL_DRAWING","features":[1]},{"name":"DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[1]},{"name":"DXGI_STATUS_MODE_CHANGED","features":[1]},{"name":"DXGI_STATUS_MODE_CHANGE_IN_PROGRESS","features":[1]},{"name":"DXGI_STATUS_NO_DESKTOP_ACCESS","features":[1]},{"name":"DXGI_STATUS_NO_REDIRECTION","features":[1]},{"name":"DXGI_STATUS_OCCLUDED","features":[1]},{"name":"DXGI_STATUS_PRESENT_REQUIRED","features":[1]},{"name":"DXGI_STATUS_UNOCCLUDED","features":[1]},{"name":"DuplicateHandle","features":[1]},{"name":"EAS_E_ADMINS_CANNOT_CHANGE_PASSWORD","features":[1]},{"name":"EAS_E_ADMINS_HAVE_BLANK_PASSWORD","features":[1]},{"name":"EAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD","features":[1]},{"name":"EAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD","features":[1]},{"name":"EAS_E_CURRENT_USER_HAS_BLANK_PASSWORD","features":[1]},{"name":"EAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD","features":[1]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS","features":[1]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER","features":[1]},{"name":"EAS_E_POLICY_COMPLIANT_WITH_ACTIONS","features":[1]},{"name":"EAS_E_POLICY_NOT_MANAGED_BY_OS","features":[1]},{"name":"EAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE","features":[1]},{"name":"EAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE","features":[1]},{"name":"EAS_E_USER_CANNOT_CHANGE_PASSWORD","features":[1]},{"name":"ENUM_E_FIRST","features":[1]},{"name":"ENUM_E_LAST","features":[1]},{"name":"ENUM_S_FIRST","features":[1]},{"name":"ENUM_S_LAST","features":[1]},{"name":"EPT_NT_CANT_CREATE","features":[1]},{"name":"EPT_NT_CANT_PERFORM_OP","features":[1]},{"name":"EPT_NT_INVALID_ENTRY","features":[1]},{"name":"EPT_NT_NOT_REGISTERED","features":[1]},{"name":"ERROR_ABANDONED_WAIT_0","features":[1]},{"name":"ERROR_ABANDONED_WAIT_63","features":[1]},{"name":"ERROR_ABANDON_HIBERFILE","features":[1]},{"name":"ERROR_ABIOS_ERROR","features":[1]},{"name":"ERROR_ACCESS_AUDIT_BY_POLICY","features":[1]},{"name":"ERROR_ACCESS_DENIED","features":[1]},{"name":"ERROR_ACCESS_DENIED_APPDATA","features":[1]},{"name":"ERROR_ACCESS_DISABLED_BY_POLICY","features":[1]},{"name":"ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[1]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE","features":[1]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER","features":[1]},{"name":"ERROR_ACCOUNT_DISABLED","features":[1]},{"name":"ERROR_ACCOUNT_EXPIRED","features":[1]},{"name":"ERROR_ACCOUNT_LOCKED_OUT","features":[1]},{"name":"ERROR_ACCOUNT_RESTRICTION","features":[1]},{"name":"ERROR_ACPI_ERROR","features":[1]},{"name":"ERROR_ACTIVATION_COUNT_EXCEEDED","features":[1]},{"name":"ERROR_ACTIVE_CONNECTIONS","features":[1]},{"name":"ERROR_ADAP_HDW_ERR","features":[1]},{"name":"ERROR_ADDRESS_ALREADY_ASSOCIATED","features":[1]},{"name":"ERROR_ADDRESS_NOT_ASSOCIATED","features":[1]},{"name":"ERROR_ADVANCED_INSTALLER_FAILED","features":[1]},{"name":"ERROR_ALERTED","features":[1]},{"name":"ERROR_ALIAS_EXISTS","features":[1]},{"name":"ERROR_ALLOCATE_BUCKET","features":[1]},{"name":"ERROR_ALLOTTED_SPACE_EXCEEDED","features":[1]},{"name":"ERROR_ALLOWED_PORT_TYPE_RESTRICTION","features":[1]},{"name":"ERROR_ALL_NODES_NOT_AVAILABLE","features":[1]},{"name":"ERROR_ALL_SIDS_FILTERED","features":[1]},{"name":"ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_ALREADY_ASSIGNED","features":[1]},{"name":"ERROR_ALREADY_CONNECTED","features":[1]},{"name":"ERROR_ALREADY_CONNECTING","features":[1]},{"name":"ERROR_ALREADY_EXISTS","features":[1]},{"name":"ERROR_ALREADY_FIBER","features":[1]},{"name":"ERROR_ALREADY_HAS_STREAM_ID","features":[1]},{"name":"ERROR_ALREADY_INITIALIZED","features":[1]},{"name":"ERROR_ALREADY_REGISTERED","features":[1]},{"name":"ERROR_ALREADY_RUNNING_LKG","features":[1]},{"name":"ERROR_ALREADY_THREAD","features":[1]},{"name":"ERROR_ALREADY_WAITING","features":[1]},{"name":"ERROR_ALREADY_WIN32","features":[1]},{"name":"ERROR_AMBIGUOUS_SYSTEM_DEVICE","features":[1]},{"name":"ERROR_API_UNAVAILABLE","features":[1]},{"name":"ERROR_APPCONTAINER_REQUIRED","features":[1]},{"name":"ERROR_APPEXEC_APP_COMPAT_BLOCK","features":[1]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT","features":[1]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[1]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[1]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[1]},{"name":"ERROR_APPEXEC_CONDITION_NOT_SATISFIED","features":[1]},{"name":"ERROR_APPEXEC_HANDLE_INVALIDATED","features":[1]},{"name":"ERROR_APPEXEC_HOST_ID_MISMATCH","features":[1]},{"name":"ERROR_APPEXEC_INVALID_HOST_GENERATION","features":[1]},{"name":"ERROR_APPEXEC_INVALID_HOST_STATE","features":[1]},{"name":"ERROR_APPEXEC_NO_DONOR","features":[1]},{"name":"ERROR_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[1]},{"name":"ERROR_APPEXEC_UNKNOWN_USER","features":[1]},{"name":"ERROR_APPHELP_BLOCK","features":[1]},{"name":"ERROR_APPINSTALLER_ACTIVATION_BLOCKED","features":[1]},{"name":"ERROR_APPINSTALLER_IS_MANAGED_BY_SYSTEM","features":[1]},{"name":"ERROR_APPINSTALLER_URI_IN_USE","features":[1]},{"name":"ERROR_APPX_FILE_NOT_ENCRYPTED","features":[1]},{"name":"ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[1]},{"name":"ERROR_APPX_RAW_DATA_WRITE_FAILED","features":[1]},{"name":"ERROR_APP_DATA_CORRUPT","features":[1]},{"name":"ERROR_APP_DATA_EXPIRED","features":[1]},{"name":"ERROR_APP_DATA_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_APP_DATA_NOT_FOUND","features":[1]},{"name":"ERROR_APP_DATA_REBOOT_REQUIRED","features":[1]},{"name":"ERROR_APP_HANG","features":[1]},{"name":"ERROR_APP_INIT_FAILURE","features":[1]},{"name":"ERROR_APP_WRONG_OS","features":[1]},{"name":"ERROR_ARBITRATION_UNHANDLED","features":[1]},{"name":"ERROR_ARENA_TRASHED","features":[1]},{"name":"ERROR_ARITHMETIC_OVERFLOW","features":[1]},{"name":"ERROR_ASSERTION_FAILURE","features":[1]},{"name":"ERROR_ATOMIC_LOCKS_NOT_SUPPORTED","features":[1]},{"name":"ERROR_ATTRIBUTE_NOT_PRESENT","features":[1]},{"name":"ERROR_AUDITING_DISABLED","features":[1]},{"name":"ERROR_AUDIT_FAILED","features":[1]},{"name":"ERROR_AUTHENTICATION_FIREWALL_FAILED","features":[1]},{"name":"ERROR_AUTHENTICATOR_MISMATCH","features":[1]},{"name":"ERROR_AUTHENTICODE_DISALLOWED","features":[1]},{"name":"ERROR_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[1]},{"name":"ERROR_AUTHENTICODE_TRUSTED_PUBLISHER","features":[1]},{"name":"ERROR_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[1]},{"name":"ERROR_AUTHIP_FAILURE","features":[1]},{"name":"ERROR_AUTH_PROTOCOL_REJECTED","features":[1]},{"name":"ERROR_AUTH_PROTOCOL_RESTRICTION","features":[1]},{"name":"ERROR_AUTH_SERVER_TIMEOUT","features":[1]},{"name":"ERROR_AUTODATASEG_EXCEEDS_64k","features":[1]},{"name":"ERROR_BACKUP_CONTROLLER","features":[1]},{"name":"ERROR_BADDB","features":[1]},{"name":"ERROR_BADKEY","features":[1]},{"name":"ERROR_BADSTARTPOSITION","features":[1]},{"name":"ERROR_BAD_ACCESSOR_FLAGS","features":[1]},{"name":"ERROR_BAD_ARGUMENTS","features":[1]},{"name":"ERROR_BAD_CLUSTERS","features":[1]},{"name":"ERROR_BAD_COMMAND","features":[1]},{"name":"ERROR_BAD_COMPRESSION_BUFFER","features":[1]},{"name":"ERROR_BAD_CONFIGURATION","features":[1]},{"name":"ERROR_BAD_CURRENT_DIRECTORY","features":[1]},{"name":"ERROR_BAD_DESCRIPTOR_FORMAT","features":[1]},{"name":"ERROR_BAD_DEVICE","features":[1]},{"name":"ERROR_BAD_DEVICE_PATH","features":[1]},{"name":"ERROR_BAD_DEV_TYPE","features":[1]},{"name":"ERROR_BAD_DLL_ENTRYPOINT","features":[1]},{"name":"ERROR_BAD_DRIVER","features":[1]},{"name":"ERROR_BAD_DRIVER_LEVEL","features":[1]},{"name":"ERROR_BAD_ENVIRONMENT","features":[1]},{"name":"ERROR_BAD_EXE_FORMAT","features":[1]},{"name":"ERROR_BAD_FILE_TYPE","features":[1]},{"name":"ERROR_BAD_FORMAT","features":[1]},{"name":"ERROR_BAD_FUNCTION_TABLE","features":[1]},{"name":"ERROR_BAD_IMPERSONATION_LEVEL","features":[1]},{"name":"ERROR_BAD_INHERITANCE_ACL","features":[1]},{"name":"ERROR_BAD_INTERFACE_INSTALLSECT","features":[1]},{"name":"ERROR_BAD_LENGTH","features":[1]},{"name":"ERROR_BAD_LOGON_SESSION_STATE","features":[1]},{"name":"ERROR_BAD_MCFG_TABLE","features":[1]},{"name":"ERROR_BAD_NETPATH","features":[1]},{"name":"ERROR_BAD_NET_NAME","features":[1]},{"name":"ERROR_BAD_NET_RESP","features":[1]},{"name":"ERROR_BAD_PATHNAME","features":[1]},{"name":"ERROR_BAD_PIPE","features":[1]},{"name":"ERROR_BAD_PROFILE","features":[1]},{"name":"ERROR_BAD_PROVIDER","features":[1]},{"name":"ERROR_BAD_QUERY_SYNTAX","features":[1]},{"name":"ERROR_BAD_RECOVERY_POLICY","features":[1]},{"name":"ERROR_BAD_REM_ADAP","features":[1]},{"name":"ERROR_BAD_SECTION_NAME_LINE","features":[1]},{"name":"ERROR_BAD_SERVICE_ENTRYPOINT","features":[1]},{"name":"ERROR_BAD_SERVICE_INSTALLSECT","features":[1]},{"name":"ERROR_BAD_STACK","features":[1]},{"name":"ERROR_BAD_THREADID_ADDR","features":[1]},{"name":"ERROR_BAD_TOKEN_TYPE","features":[1]},{"name":"ERROR_BAD_UNIT","features":[1]},{"name":"ERROR_BAD_USERNAME","features":[1]},{"name":"ERROR_BAD_USER_PROFILE","features":[1]},{"name":"ERROR_BAD_VALIDATION_CLASS","features":[1]},{"name":"ERROR_BAP_DISCONNECTED","features":[1]},{"name":"ERROR_BAP_REQUIRED","features":[1]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[1]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[1]},{"name":"ERROR_BCD_TOO_MANY_ELEMENTS","features":[1]},{"name":"ERROR_BEGINNING_OF_MEDIA","features":[1]},{"name":"ERROR_BEYOND_VDL","features":[1]},{"name":"ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[1]},{"name":"ERROR_BIZRULES_NOT_ENABLED","features":[1]},{"name":"ERROR_BLOCKED_BY_PARENTAL_CONTROLS","features":[1]},{"name":"ERROR_BLOCK_SHARED","features":[1]},{"name":"ERROR_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[1]},{"name":"ERROR_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[1]},{"name":"ERROR_BLOCK_TOO_MANY_REFERENCES","features":[1]},{"name":"ERROR_BLOCK_WEAK_REFERENCE_INVALID","features":[1]},{"name":"ERROR_BOOT_ALREADY_ACCEPTED","features":[1]},{"name":"ERROR_BROKEN_PIPE","features":[1]},{"name":"ERROR_BUFFER_ALL_ZEROS","features":[1]},{"name":"ERROR_BUFFER_OVERFLOW","features":[1]},{"name":"ERROR_BUSY","features":[1]},{"name":"ERROR_BUSY_DRIVE","features":[1]},{"name":"ERROR_BUS_RESET","features":[1]},{"name":"ERROR_BYPASSIO_FLT_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CACHE_PAGE_LOCKED","features":[1]},{"name":"ERROR_CALLBACK_INVOKE_INLINE","features":[1]},{"name":"ERROR_CALLBACK_POP_STACK","features":[1]},{"name":"ERROR_CALLBACK_SUPPLIED_INVALID_DATA","features":[1]},{"name":"ERROR_CALL_NOT_IMPLEMENTED","features":[1]},{"name":"ERROR_CANCELLED","features":[1]},{"name":"ERROR_CANCEL_VIOLATION","features":[1]},{"name":"ERROR_CANNOT_ABORT_TRANSACTIONS","features":[1]},{"name":"ERROR_CANNOT_ACCEPT_TRANSACTED_WORK","features":[1]},{"name":"ERROR_CANNOT_BREAK_OPLOCK","features":[1]},{"name":"ERROR_CANNOT_COPY","features":[1]},{"name":"ERROR_CANNOT_DETECT_DRIVER_FAILURE","features":[1]},{"name":"ERROR_CANNOT_DETECT_PROCESS_ABORT","features":[1]},{"name":"ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[1]},{"name":"ERROR_CANNOT_FIND_WND_CLASS","features":[1]},{"name":"ERROR_CANNOT_GRANT_REQUESTED_OPLOCK","features":[1]},{"name":"ERROR_CANNOT_IMPERSONATE","features":[1]},{"name":"ERROR_CANNOT_LOAD_REGISTRY_FILE","features":[1]},{"name":"ERROR_CANNOT_MAKE","features":[1]},{"name":"ERROR_CANNOT_OPEN_PROFILE","features":[1]},{"name":"ERROR_CANNOT_SWITCH_RUNLEVEL","features":[1]},{"name":"ERROR_CANTFETCHBACKWARDS","features":[1]},{"name":"ERROR_CANTOPEN","features":[1]},{"name":"ERROR_CANTREAD","features":[1]},{"name":"ERROR_CANTSCROLLBACKWARDS","features":[1]},{"name":"ERROR_CANTWRITE","features":[1]},{"name":"ERROR_CANT_ACCESS_DOMAIN_INFO","features":[1]},{"name":"ERROR_CANT_ACCESS_FILE","features":[1]},{"name":"ERROR_CANT_ATTACH_TO_DEV_VOLUME","features":[1]},{"name":"ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[1]},{"name":"ERROR_CANT_CLEAR_ENCRYPTION_FLAG","features":[1]},{"name":"ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[1]},{"name":"ERROR_CANT_CROSS_RM_BOUNDARY","features":[1]},{"name":"ERROR_CANT_DELETE_LAST_ITEM","features":[1]},{"name":"ERROR_CANT_DISABLE_MANDATORY","features":[1]},{"name":"ERROR_CANT_ENABLE_DENY_ONLY","features":[1]},{"name":"ERROR_CANT_EVICT_ACTIVE_NODE","features":[1]},{"name":"ERROR_CANT_LOAD_CLASS_ICON","features":[1]},{"name":"ERROR_CANT_OPEN_ANONYMOUS","features":[1]},{"name":"ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[1]},{"name":"ERROR_CANT_RECOVER_WITH_HANDLE_OPEN","features":[1]},{"name":"ERROR_CANT_REMOVE_DEVINST","features":[1]},{"name":"ERROR_CANT_RESOLVE_FILENAME","features":[1]},{"name":"ERROR_CANT_TERMINATE_SELF","features":[1]},{"name":"ERROR_CANT_WAIT","features":[1]},{"name":"ERROR_CAN_NOT_COMPLETE","features":[1]},{"name":"ERROR_CAN_NOT_DEL_LOCAL_WINS","features":[1]},{"name":"ERROR_CAPAUTHZ_CHANGE_TYPE","features":[1]},{"name":"ERROR_CAPAUTHZ_DB_CORRUPTED","features":[1]},{"name":"ERROR_CAPAUTHZ_NOT_AUTHORIZED","features":[1]},{"name":"ERROR_CAPAUTHZ_NOT_DEVUNLOCKED","features":[1]},{"name":"ERROR_CAPAUTHZ_NOT_PROVISIONED","features":[1]},{"name":"ERROR_CAPAUTHZ_NO_POLICY","features":[1]},{"name":"ERROR_CAPAUTHZ_SCCD_DEV_MODE_REQUIRED","features":[1]},{"name":"ERROR_CAPAUTHZ_SCCD_INVALID_CATALOG","features":[1]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_AUTH_ENTITY","features":[1]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH","features":[1]},{"name":"ERROR_CAPAUTHZ_SCCD_PARSE_ERROR","features":[1]},{"name":"ERROR_CARDBUS_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CASE_DIFFERING_NAMES_IN_DIR","features":[1]},{"name":"ERROR_CASE_SENSITIVE_PATH","features":[1]},{"name":"ERROR_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[1]},{"name":"ERROR_CHECKING_FILE_SYSTEM","features":[1]},{"name":"ERROR_CHECKOUT_REQUIRED","features":[1]},{"name":"ERROR_CHILD_MUST_BE_VOLATILE","features":[1]},{"name":"ERROR_CHILD_NOT_COMPLETE","features":[1]},{"name":"ERROR_CHILD_PROCESS_BLOCKED","features":[1]},{"name":"ERROR_CHILD_WINDOW_MENU","features":[1]},{"name":"ERROR_CIMFS_IMAGE_CORRUPT","features":[1]},{"name":"ERROR_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CIRCULAR_DEPENDENCY","features":[1]},{"name":"ERROR_CLASSIC_COMPAT_MODE_NOT_ALLOWED","features":[1]},{"name":"ERROR_CLASS_ALREADY_EXISTS","features":[1]},{"name":"ERROR_CLASS_DOES_NOT_EXIST","features":[1]},{"name":"ERROR_CLASS_HAS_WINDOWS","features":[1]},{"name":"ERROR_CLASS_MISMATCH","features":[1]},{"name":"ERROR_CLEANER_CARTRIDGE_INSTALLED","features":[1]},{"name":"ERROR_CLEANER_CARTRIDGE_SPENT","features":[1]},{"name":"ERROR_CLEANER_SLOT_NOT_SET","features":[1]},{"name":"ERROR_CLEANER_SLOT_SET","features":[1]},{"name":"ERROR_CLIENT_INTERFACE_ALREADY_EXISTS","features":[1]},{"name":"ERROR_CLIENT_SERVER_PARAMETERS_INVALID","features":[1]},{"name":"ERROR_CLIPBOARD_NOT_OPEN","features":[1]},{"name":"ERROR_CLIPPING_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CLIP_DEVICE_LICENSE_MISSING","features":[1]},{"name":"ERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[1]},{"name":"ERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[1]},{"name":"ERROR_CLIP_LICENSE_EXPIRED","features":[1]},{"name":"ERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[1]},{"name":"ERROR_CLIP_LICENSE_INVALID_SIGNATURE","features":[1]},{"name":"ERROR_CLIP_LICENSE_NOT_FOUND","features":[1]},{"name":"ERROR_CLIP_LICENSE_NOT_SIGNED","features":[1]},{"name":"ERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[1]},{"name":"ERROR_CLOUD_FILE_ACCESS_DENIED","features":[1]},{"name":"ERROR_CLOUD_FILE_ALREADY_CONNECTED","features":[1]},{"name":"ERROR_CLOUD_FILE_AUTHENTICATION_FAILED","features":[1]},{"name":"ERROR_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[1]},{"name":"ERROR_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[1]},{"name":"ERROR_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[1]},{"name":"ERROR_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[1]},{"name":"ERROR_CLOUD_FILE_INVALID_REQUEST","features":[1]},{"name":"ERROR_CLOUD_FILE_IN_USE","features":[1]},{"name":"ERROR_CLOUD_FILE_METADATA_CORRUPT","features":[1]},{"name":"ERROR_CLOUD_FILE_METADATA_TOO_LARGE","features":[1]},{"name":"ERROR_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[1]},{"name":"ERROR_CLOUD_FILE_NOT_IN_SYNC","features":[1]},{"name":"ERROR_CLOUD_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[1]},{"name":"ERROR_CLOUD_FILE_PINNED","features":[1]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[1]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[1]},{"name":"ERROR_CLOUD_FILE_PROPERTY_CORRUPT","features":[1]},{"name":"ERROR_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[1]},{"name":"ERROR_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[1]},{"name":"ERROR_CLOUD_FILE_PROVIDER_TERMINATED","features":[1]},{"name":"ERROR_CLOUD_FILE_READ_ONLY_VOLUME","features":[1]},{"name":"ERROR_CLOUD_FILE_REQUEST_ABORTED","features":[1]},{"name":"ERROR_CLOUD_FILE_REQUEST_CANCELED","features":[1]},{"name":"ERROR_CLOUD_FILE_REQUEST_TIMEOUT","features":[1]},{"name":"ERROR_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[1]},{"name":"ERROR_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[1]},{"name":"ERROR_CLOUD_FILE_UNSUCCESSFUL","features":[1]},{"name":"ERROR_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[1]},{"name":"ERROR_CLOUD_FILE_VALIDATION_FAILED","features":[1]},{"name":"ERROR_CLUSCFG_ALREADY_COMMITTED","features":[1]},{"name":"ERROR_CLUSCFG_ROLLBACK_FAILED","features":[1]},{"name":"ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT","features":[1]},{"name":"ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTERLOG_CORRUPT","features":[1]},{"name":"ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE","features":[1]},{"name":"ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE","features":[1]},{"name":"ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE","features":[1]},{"name":"ERROR_CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE","features":[1]},{"name":"ERROR_CLUSTER_AFFINITY_CONFLICT","features":[1]},{"name":"ERROR_CLUSTER_BACKUP_IN_PROGRESS","features":[1]},{"name":"ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES","features":[1]},{"name":"ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME","features":[1]},{"name":"ERROR_CLUSTER_CANT_DESERIALIZE_DATA","features":[1]},{"name":"ERROR_CLUSTER_CSV_INVALID_HANDLE","features":[1]},{"name":"ERROR_CLUSTER_CSV_IO_PAUSE_TIMEOUT","features":[1]},{"name":"ERROR_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[1]},{"name":"ERROR_CLUSTER_DATABASE_SEQMISMATCH","features":[1]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS","features":[1]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS","features":[1]},{"name":"ERROR_CLUSTER_DATABASE_UPDATE_CONDITION_FAILED","features":[1]},{"name":"ERROR_CLUSTER_DISK_NOT_CONNECTED","features":[1]},{"name":"ERROR_CLUSTER_EVICT_INVALID_REQUEST","features":[1]},{"name":"ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP","features":[1]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION","features":[1]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY","features":[1]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS","features":[1]},{"name":"ERROR_CLUSTER_GROUP_BUSY","features":[1]},{"name":"ERROR_CLUSTER_GROUP_MOVING","features":[1]},{"name":"ERROR_CLUSTER_GROUP_QUEUED","features":[1]},{"name":"ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE","features":[1]},{"name":"ERROR_CLUSTER_GUM_NOT_LOCKER","features":[1]},{"name":"ERROR_CLUSTER_INCOMPATIBLE_VERSIONS","features":[1]},{"name":"ERROR_CLUSTER_INSTANCE_ID_MISMATCH","features":[1]},{"name":"ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION","features":[1]},{"name":"ERROR_CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME","features":[1]},{"name":"ERROR_CLUSTER_INVALID_IPV6_NETWORK","features":[1]},{"name":"ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK","features":[1]},{"name":"ERROR_CLUSTER_INVALID_NETWORK","features":[1]},{"name":"ERROR_CLUSTER_INVALID_NETWORK_PROVIDER","features":[1]},{"name":"ERROR_CLUSTER_INVALID_NODE","features":[1]},{"name":"ERROR_CLUSTER_INVALID_NODE_WEIGHT","features":[1]},{"name":"ERROR_CLUSTER_INVALID_REQUEST","features":[1]},{"name":"ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR","features":[1]},{"name":"ERROR_CLUSTER_INVALID_STRING_FORMAT","features":[1]},{"name":"ERROR_CLUSTER_INVALID_STRING_TERMINATION","features":[1]},{"name":"ERROR_CLUSTER_IPADDR_IN_USE","features":[1]},{"name":"ERROR_CLUSTER_JOIN_ABORTED","features":[1]},{"name":"ERROR_CLUSTER_JOIN_IN_PROGRESS","features":[1]},{"name":"ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[1]},{"name":"ERROR_CLUSTER_LAST_INTERNAL_NETWORK","features":[1]},{"name":"ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED","features":[1]},{"name":"ERROR_CLUSTER_MAX_NODES_IN_CLUSTER","features":[1]},{"name":"ERROR_CLUSTER_MEMBERSHIP_HALT","features":[1]},{"name":"ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE","features":[1]},{"name":"ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME","features":[1]},{"name":"ERROR_CLUSTER_NETINTERFACE_EXISTS","features":[1]},{"name":"ERROR_CLUSTER_NETINTERFACE_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[1]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_ONLINE","features":[1]},{"name":"ERROR_CLUSTER_NETWORK_EXISTS","features":[1]},{"name":"ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS","features":[1]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP","features":[1]},{"name":"ERROR_CLUSTER_NETWORK_NOT_INTERNAL","features":[1]},{"name":"ERROR_CLUSTER_NODE_ALREADY_DOWN","features":[1]},{"name":"ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT","features":[1]},{"name":"ERROR_CLUSTER_NODE_ALREADY_MEMBER","features":[1]},{"name":"ERROR_CLUSTER_NODE_ALREADY_UP","features":[1]},{"name":"ERROR_CLUSTER_NODE_DOWN","features":[1]},{"name":"ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS","features":[1]},{"name":"ERROR_CLUSTER_NODE_EXISTS","features":[1]},{"name":"ERROR_CLUSTER_NODE_IN_GRACE_PERIOD","features":[1]},{"name":"ERROR_CLUSTER_NODE_ISOLATED","features":[1]},{"name":"ERROR_CLUSTER_NODE_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_NODE_NOT_MEMBER","features":[1]},{"name":"ERROR_CLUSTER_NODE_NOT_PAUSED","features":[1]},{"name":"ERROR_CLUSTER_NODE_NOT_READY","features":[1]},{"name":"ERROR_CLUSTER_NODE_PAUSED","features":[1]},{"name":"ERROR_CLUSTER_NODE_QUARANTINED","features":[1]},{"name":"ERROR_CLUSTER_NODE_SHUTTING_DOWN","features":[1]},{"name":"ERROR_CLUSTER_NODE_UNREACHABLE","features":[1]},{"name":"ERROR_CLUSTER_NODE_UP","features":[1]},{"name":"ERROR_CLUSTER_NOT_INSTALLED","features":[1]},{"name":"ERROR_CLUSTER_NOT_SHARED_VOLUME","features":[1]},{"name":"ERROR_CLUSTER_NO_NET_ADAPTERS","features":[1]},{"name":"ERROR_CLUSTER_NO_QUORUM","features":[1]},{"name":"ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED","features":[1]},{"name":"ERROR_CLUSTER_NO_SECURITY_CONTEXT","features":[1]},{"name":"ERROR_CLUSTER_NULL_DATA","features":[1]},{"name":"ERROR_CLUSTER_OBJECT_ALREADY_USED","features":[1]},{"name":"ERROR_CLUSTER_OBJECT_IS_CLUSTER_SET_VM","features":[1]},{"name":"ERROR_CLUSTER_OLD_VERSION","features":[1]},{"name":"ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST","features":[1]},{"name":"ERROR_CLUSTER_PARAMETER_MISMATCH","features":[1]},{"name":"ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS","features":[1]},{"name":"ERROR_CLUSTER_PARTIAL_READ","features":[1]},{"name":"ERROR_CLUSTER_PARTIAL_SEND","features":[1]},{"name":"ERROR_CLUSTER_PARTIAL_WRITE","features":[1]},{"name":"ERROR_CLUSTER_POISONED","features":[1]},{"name":"ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH","features":[1]},{"name":"ERROR_CLUSTER_QUORUMLOG_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION","features":[1]},{"name":"ERROR_CLUSTER_RESNAME_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICATED","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_LOCKED_STATUS","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_NOT_MONITORED","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_BUSY","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_CALL","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION","features":[1]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE","features":[1]},{"name":"ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CLUSTER_RHS_FAILED_INITIALIZATION","features":[1]},{"name":"ERROR_CLUSTER_SHARED_VOLUMES_IN_USE","features":[1]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED","features":[1]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED","features":[1]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED","features":[1]},{"name":"ERROR_CLUSTER_SHUTTING_DOWN","features":[1]},{"name":"ERROR_CLUSTER_SINGLETON_RESOURCE","features":[1]},{"name":"ERROR_CLUSTER_SPACE_DEGRADED","features":[1]},{"name":"ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED","features":[1]},{"name":"ERROR_CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CLUSTER_TOO_MANY_NODES","features":[1]},{"name":"ERROR_CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED","features":[1]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS","features":[1]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPLETE","features":[1]},{"name":"ERROR_CLUSTER_UPGRADE_IN_PROGRESS","features":[1]},{"name":"ERROR_CLUSTER_UPGRADE_RESTART_REQUIRED","features":[1]},{"name":"ERROR_CLUSTER_USE_SHARED_VOLUMES_API","features":[1]},{"name":"ERROR_CLUSTER_WATCHDOG_TERMINATING","features":[1]},{"name":"ERROR_CLUSTER_WRONG_OS_VERSION","features":[1]},{"name":"ERROR_COLORSPACE_MISMATCH","features":[1]},{"name":"ERROR_COMMITMENT_LIMIT","features":[1]},{"name":"ERROR_COMMITMENT_MINIMUM","features":[1]},{"name":"ERROR_COMPRESSED_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_COMPRESSION_DISABLED","features":[1]},{"name":"ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[1]},{"name":"ERROR_COMPRESSION_NOT_BENEFICIAL","features":[1]},{"name":"ERROR_COM_TASK_STOP_PENDING","features":[1]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD","features":[1]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT","features":[1]},{"name":"ERROR_CONNECTION_ABORTED","features":[1]},{"name":"ERROR_CONNECTION_ACTIVE","features":[1]},{"name":"ERROR_CONNECTION_COUNT_LIMIT","features":[1]},{"name":"ERROR_CONNECTION_INVALID","features":[1]},{"name":"ERROR_CONNECTION_REFUSED","features":[1]},{"name":"ERROR_CONNECTION_UNAVAIL","features":[1]},{"name":"ERROR_CONTAINER_ASSIGNED","features":[1]},{"name":"ERROR_CONTENT_BLOCKED","features":[1]},{"name":"ERROR_CONTEXT_EXPIRED","features":[1]},{"name":"ERROR_CONTINUE","features":[1]},{"name":"ERROR_CONTROLLING_IEPORT","features":[1]},{"name":"ERROR_CONTROL_C_EXIT","features":[1]},{"name":"ERROR_CONTROL_ID_NOT_FOUND","features":[1]},{"name":"ERROR_CONVERT_TO_LARGE","features":[1]},{"name":"ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND","features":[1]},{"name":"ERROR_CORE_RESOURCE","features":[1]},{"name":"ERROR_CORRUPT_LOG_CLEARED","features":[1]},{"name":"ERROR_CORRUPT_LOG_CORRUPTED","features":[1]},{"name":"ERROR_CORRUPT_LOG_DELETED_FULL","features":[1]},{"name":"ERROR_CORRUPT_LOG_OVERFULL","features":[1]},{"name":"ERROR_CORRUPT_LOG_UNAVAILABLE","features":[1]},{"name":"ERROR_CORRUPT_SYSTEM_FILE","features":[1]},{"name":"ERROR_COULD_NOT_INTERPRET","features":[1]},{"name":"ERROR_COULD_NOT_RESIZE_LOG","features":[1]},{"name":"ERROR_COUNTER_TIMEOUT","features":[1]},{"name":"ERROR_CPU_SET_INVALID","features":[1]},{"name":"ERROR_CRASH_DUMP","features":[1]},{"name":"ERROR_CRC","features":[1]},{"name":"ERROR_CREATE_FAILED","features":[1]},{"name":"ERROR_CRED_REQUIRES_CONFIRMATION","features":[1]},{"name":"ERROR_CRM_PROTOCOL_ALREADY_EXISTS","features":[1]},{"name":"ERROR_CRM_PROTOCOL_NOT_FOUND","features":[1]},{"name":"ERROR_CROSS_PARTITION_VIOLATION","features":[1]},{"name":"ERROR_CSCSHARE_OFFLINE","features":[1]},{"name":"ERROR_CSV_VOLUME_NOT_LOCAL","features":[1]},{"name":"ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[1]},{"name":"ERROR_CS_ENCRYPTION_FILE_NOT_CSE","features":[1]},{"name":"ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[1]},{"name":"ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[1]},{"name":"ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[1]},{"name":"ERROR_CTLOG_INCONSISTENT_TRACKING_FILE","features":[1]},{"name":"ERROR_CTLOG_INVALID_TRACKING_STATE","features":[1]},{"name":"ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[1]},{"name":"ERROR_CTLOG_TRACKING_NOT_INITIALIZED","features":[1]},{"name":"ERROR_CTLOG_VHD_CHANGED_OFFLINE","features":[1]},{"name":"ERROR_CTX_ACCOUNT_RESTRICTION","features":[1]},{"name":"ERROR_CTX_BAD_VIDEO_MODE","features":[1]},{"name":"ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY","features":[1]},{"name":"ERROR_CTX_CDM_CONNECT","features":[1]},{"name":"ERROR_CTX_CDM_DISCONNECT","features":[1]},{"name":"ERROR_CTX_CLIENT_LICENSE_IN_USE","features":[1]},{"name":"ERROR_CTX_CLIENT_LICENSE_NOT_SET","features":[1]},{"name":"ERROR_CTX_CLIENT_QUERY_TIMEOUT","features":[1]},{"name":"ERROR_CTX_CLOSE_PENDING","features":[1]},{"name":"ERROR_CTX_CONSOLE_CONNECT","features":[1]},{"name":"ERROR_CTX_CONSOLE_DISCONNECT","features":[1]},{"name":"ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED","features":[1]},{"name":"ERROR_CTX_GRAPHICS_INVALID","features":[1]},{"name":"ERROR_CTX_INVALID_MODEMNAME","features":[1]},{"name":"ERROR_CTX_INVALID_PD","features":[1]},{"name":"ERROR_CTX_INVALID_WD","features":[1]},{"name":"ERROR_CTX_LICENSE_CLIENT_INVALID","features":[1]},{"name":"ERROR_CTX_LICENSE_EXPIRED","features":[1]},{"name":"ERROR_CTX_LICENSE_NOT_AVAILABLE","features":[1]},{"name":"ERROR_CTX_LOGON_DISABLED","features":[1]},{"name":"ERROR_CTX_MODEM_INF_NOT_FOUND","features":[1]},{"name":"ERROR_CTX_MODEM_RESPONSE_BUSY","features":[1]},{"name":"ERROR_CTX_MODEM_RESPONSE_ERROR","features":[1]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_CARRIER","features":[1]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[1]},{"name":"ERROR_CTX_MODEM_RESPONSE_TIMEOUT","features":[1]},{"name":"ERROR_CTX_MODEM_RESPONSE_VOICE","features":[1]},{"name":"ERROR_CTX_NOT_CONSOLE","features":[1]},{"name":"ERROR_CTX_NO_FORCE_LOGOFF","features":[1]},{"name":"ERROR_CTX_NO_OUTBUF","features":[1]},{"name":"ERROR_CTX_PD_NOT_FOUND","features":[1]},{"name":"ERROR_CTX_SECURITY_LAYER_ERROR","features":[1]},{"name":"ERROR_CTX_SERVICE_NAME_COLLISION","features":[1]},{"name":"ERROR_CTX_SESSION_IN_USE","features":[1]},{"name":"ERROR_CTX_SHADOW_DENIED","features":[1]},{"name":"ERROR_CTX_SHADOW_DISABLED","features":[1]},{"name":"ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[1]},{"name":"ERROR_CTX_SHADOW_INVALID","features":[1]},{"name":"ERROR_CTX_SHADOW_NOT_RUNNING","features":[1]},{"name":"ERROR_CTX_TD_ERROR","features":[1]},{"name":"ERROR_CTX_WD_NOT_FOUND","features":[1]},{"name":"ERROR_CTX_WINSTATIONS_DISABLED","features":[1]},{"name":"ERROR_CTX_WINSTATION_ACCESS_DENIED","features":[1]},{"name":"ERROR_CTX_WINSTATION_ALREADY_EXISTS","features":[1]},{"name":"ERROR_CTX_WINSTATION_BUSY","features":[1]},{"name":"ERROR_CTX_WINSTATION_NAME_INVALID","features":[1]},{"name":"ERROR_CTX_WINSTATION_NOT_FOUND","features":[1]},{"name":"ERROR_CURRENT_DIRECTORY","features":[1]},{"name":"ERROR_CURRENT_DOMAIN_NOT_ALLOWED","features":[1]},{"name":"ERROR_CURRENT_TRANSACTION_NOT_VALID","features":[1]},{"name":"ERROR_DATABASE_BACKUP_CORRUPT","features":[1]},{"name":"ERROR_DATABASE_DOES_NOT_EXIST","features":[1]},{"name":"ERROR_DATABASE_FAILURE","features":[1]},{"name":"ERROR_DATABASE_FULL","features":[1]},{"name":"ERROR_DATATYPE_MISMATCH","features":[1]},{"name":"ERROR_DATA_CHECKSUM_ERROR","features":[1]},{"name":"ERROR_DATA_LOST_REPAIR","features":[1]},{"name":"ERROR_DATA_NOT_ACCEPTED","features":[1]},{"name":"ERROR_DAX_MAPPING_EXISTS","features":[1]},{"name":"ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN","features":[1]},{"name":"ERROR_DBG_COMMAND_EXCEPTION","features":[1]},{"name":"ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN","features":[1]},{"name":"ERROR_DBG_CONTINUE","features":[1]},{"name":"ERROR_DBG_CONTROL_BREAK","features":[1]},{"name":"ERROR_DBG_CONTROL_C","features":[1]},{"name":"ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN","features":[1]},{"name":"ERROR_DBG_EXCEPTION_HANDLED","features":[1]},{"name":"ERROR_DBG_EXCEPTION_NOT_HANDLED","features":[1]},{"name":"ERROR_DBG_PRINTEXCEPTION_C","features":[1]},{"name":"ERROR_DBG_REPLY_LATER","features":[1]},{"name":"ERROR_DBG_RIPEXCEPTION","features":[1]},{"name":"ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN","features":[1]},{"name":"ERROR_DBG_TERMINATE_PROCESS","features":[1]},{"name":"ERROR_DBG_TERMINATE_THREAD","features":[1]},{"name":"ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE","features":[1]},{"name":"ERROR_DC_NOT_FOUND","features":[1]},{"name":"ERROR_DDE_FAIL","features":[1]},{"name":"ERROR_DDM_NOT_RUNNING","features":[1]},{"name":"ERROR_DEBUGGER_INACTIVE","features":[1]},{"name":"ERROR_DEBUG_ATTACH_FAILED","features":[1]},{"name":"ERROR_DECRYPTION_FAILED","features":[1]},{"name":"ERROR_DELAY_LOAD_FAILED","features":[1]},{"name":"ERROR_DELETE_PENDING","features":[1]},{"name":"ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED","features":[1]},{"name":"ERROR_DELETING_ICM_XFORM","features":[1]},{"name":"ERROR_DEPENDENCY_ALREADY_EXISTS","features":[1]},{"name":"ERROR_DEPENDENCY_NOT_ALLOWED","features":[1]},{"name":"ERROR_DEPENDENCY_NOT_FOUND","features":[1]},{"name":"ERROR_DEPENDENCY_TREE_TOO_COMPLEX","features":[1]},{"name":"ERROR_DEPENDENT_RESOURCE_EXISTS","features":[1]},{"name":"ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT","features":[1]},{"name":"ERROR_DEPENDENT_SERVICES_RUNNING","features":[1]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_POLICY","features":[1]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY","features":[1]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF","features":[1]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE","features":[1]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE","features":[1]},{"name":"ERROR_DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY","features":[1]},{"name":"ERROR_DEPLOYMENT_OPTION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_DESTINATION_ELEMENT_FULL","features":[1]},{"name":"ERROR_DESTROY_OBJECT_OF_OTHER_THREAD","features":[1]},{"name":"ERROR_DEVICE_ALREADY_ATTACHED","features":[1]},{"name":"ERROR_DEVICE_ALREADY_REMEMBERED","features":[1]},{"name":"ERROR_DEVICE_DOOR_OPEN","features":[1]},{"name":"ERROR_DEVICE_ENUMERATION_ERROR","features":[1]},{"name":"ERROR_DEVICE_FEATURE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_DEVICE_HARDWARE_ERROR","features":[1]},{"name":"ERROR_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[1]},{"name":"ERROR_DEVICE_INSTALLER_NOT_READY","features":[1]},{"name":"ERROR_DEVICE_INSTALL_BLOCKED","features":[1]},{"name":"ERROR_DEVICE_INTERFACE_ACTIVE","features":[1]},{"name":"ERROR_DEVICE_INTERFACE_REMOVED","features":[1]},{"name":"ERROR_DEVICE_IN_MAINTENANCE","features":[1]},{"name":"ERROR_DEVICE_IN_USE","features":[1]},{"name":"ERROR_DEVICE_NOT_AVAILABLE","features":[1]},{"name":"ERROR_DEVICE_NOT_CONNECTED","features":[1]},{"name":"ERROR_DEVICE_NOT_PARTITIONED","features":[1]},{"name":"ERROR_DEVICE_NO_RESOURCES","features":[1]},{"name":"ERROR_DEVICE_REINITIALIZATION_NEEDED","features":[1]},{"name":"ERROR_DEVICE_REMOVED","features":[1]},{"name":"ERROR_DEVICE_REQUIRES_CLEANING","features":[1]},{"name":"ERROR_DEVICE_RESET_REQUIRED","features":[1]},{"name":"ERROR_DEVICE_SUPPORT_IN_PROGRESS","features":[1]},{"name":"ERROR_DEVICE_UNREACHABLE","features":[1]},{"name":"ERROR_DEVINFO_DATA_LOCKED","features":[1]},{"name":"ERROR_DEVINFO_LIST_LOCKED","features":[1]},{"name":"ERROR_DEVINFO_NOT_REGISTERED","features":[1]},{"name":"ERROR_DEVINSTALL_QUEUE_NONNATIVE","features":[1]},{"name":"ERROR_DEVINST_ALREADY_EXISTS","features":[1]},{"name":"ERROR_DEV_NOT_EXIST","features":[1]},{"name":"ERROR_DEV_SIDELOAD_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DHCP_ADDRESS_CONFLICT","features":[1]},{"name":"ERROR_DIALIN_HOURS_RESTRICTION","features":[1]},{"name":"ERROR_DIALOUT_HOURS_RESTRICTION","features":[1]},{"name":"ERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST","features":[1]},{"name":"ERROR_DIFFERENT_SERVICE_ACCOUNT","features":[1]},{"name":"ERROR_DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED","features":[1]},{"name":"ERROR_DIF_BINDING_API_NOT_FOUND","features":[1]},{"name":"ERROR_DIF_IOCALLBACK_NOT_REPLACED","features":[1]},{"name":"ERROR_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[1]},{"name":"ERROR_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[1]},{"name":"ERROR_DIF_VOLATILE_INVALID_INFO","features":[1]},{"name":"ERROR_DIF_VOLATILE_NOT_ALLOWED","features":[1]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[1]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[1]},{"name":"ERROR_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[1]},{"name":"ERROR_DIRECTORY","features":[1]},{"name":"ERROR_DIRECTORY_NOT_RM","features":[1]},{"name":"ERROR_DIRECTORY_NOT_SUPPORTED","features":[1]},{"name":"ERROR_DIRECT_ACCESS_HANDLE","features":[1]},{"name":"ERROR_DIR_EFS_DISALLOWED","features":[1]},{"name":"ERROR_DIR_NOT_EMPTY","features":[1]},{"name":"ERROR_DIR_NOT_ROOT","features":[1]},{"name":"ERROR_DISCARDED","features":[1]},{"name":"ERROR_DISK_CHANGE","features":[1]},{"name":"ERROR_DISK_CORRUPT","features":[1]},{"name":"ERROR_DISK_FULL","features":[1]},{"name":"ERROR_DISK_NOT_CSV_CAPABLE","features":[1]},{"name":"ERROR_DISK_OPERATION_FAILED","features":[1]},{"name":"ERROR_DISK_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_DISK_RECALIBRATE_FAILED","features":[1]},{"name":"ERROR_DISK_REPAIR_DISABLED","features":[1]},{"name":"ERROR_DISK_REPAIR_REDIRECTED","features":[1]},{"name":"ERROR_DISK_REPAIR_UNSUCCESSFUL","features":[1]},{"name":"ERROR_DISK_RESET_FAILED","features":[1]},{"name":"ERROR_DISK_RESOURCES_EXHAUSTED","features":[1]},{"name":"ERROR_DISK_TOO_FRAGMENTED","features":[1]},{"name":"ERROR_DI_BAD_PATH","features":[1]},{"name":"ERROR_DI_DONT_INSTALL","features":[1]},{"name":"ERROR_DI_DO_DEFAULT","features":[1]},{"name":"ERROR_DI_FUNCTION_OBSOLETE","features":[1]},{"name":"ERROR_DI_NOFILECOPY","features":[1]},{"name":"ERROR_DI_POSTPROCESSING_REQUIRED","features":[1]},{"name":"ERROR_DLL_INIT_FAILED","features":[1]},{"name":"ERROR_DLL_INIT_FAILED_LOGOFF","features":[1]},{"name":"ERROR_DLL_MIGHT_BE_INCOMPATIBLE","features":[1]},{"name":"ERROR_DLL_MIGHT_BE_INSECURE","features":[1]},{"name":"ERROR_DLL_NOT_FOUND","features":[1]},{"name":"ERROR_DLP_POLICY_DENIES_OPERATION","features":[1]},{"name":"ERROR_DLP_POLICY_SILENTLY_FAIL","features":[1]},{"name":"ERROR_DLP_POLICY_WARNS_AGAINST_OPERATION","features":[1]},{"name":"ERROR_DM_OPERATION_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DOMAIN_CONTROLLER_EXISTS","features":[1]},{"name":"ERROR_DOMAIN_CONTROLLER_NOT_FOUND","features":[1]},{"name":"ERROR_DOMAIN_CTRLR_CONFIG_ERROR","features":[1]},{"name":"ERROR_DOMAIN_EXISTS","features":[1]},{"name":"ERROR_DOMAIN_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION","features":[1]},{"name":"ERROR_DOMAIN_TRUST_INCONSISTENT","features":[1]},{"name":"ERROR_DOWNGRADE_DETECTED","features":[1]},{"name":"ERROR_DPL_NOT_SUPPORTED_FOR_USER","features":[1]},{"name":"ERROR_DRIVERS_LEAKING_LOCKED_PAGES","features":[1]},{"name":"ERROR_DRIVER_BLOCKED","features":[1]},{"name":"ERROR_DRIVER_CANCEL_TIMEOUT","features":[1]},{"name":"ERROR_DRIVER_DATABASE_ERROR","features":[1]},{"name":"ERROR_DRIVER_FAILED_PRIOR_UNLOAD","features":[1]},{"name":"ERROR_DRIVER_FAILED_SLEEP","features":[1]},{"name":"ERROR_DRIVER_INSTALL_BLOCKED","features":[1]},{"name":"ERROR_DRIVER_NONNATIVE","features":[1]},{"name":"ERROR_DRIVER_PROCESS_TERMINATED","features":[1]},{"name":"ERROR_DRIVER_STORE_ADD_FAILED","features":[1]},{"name":"ERROR_DRIVER_STORE_DELETE_FAILED","features":[1]},{"name":"ERROR_DRIVE_LOCKED","features":[1]},{"name":"ERROR_DRIVE_MEDIA_MISMATCH","features":[1]},{"name":"ERROR_DS_ADD_REPLICA_INHIBITED","features":[1]},{"name":"ERROR_DS_ADMIN_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DS_AFFECTS_MULTIPLE_DSAS","features":[1]},{"name":"ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[1]},{"name":"ERROR_DS_ALIASED_OBJ_MISSING","features":[1]},{"name":"ERROR_DS_ALIAS_DEREF_PROBLEM","features":[1]},{"name":"ERROR_DS_ALIAS_POINTS_TO_ALIAS","features":[1]},{"name":"ERROR_DS_ALIAS_PROBLEM","features":[1]},{"name":"ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[1]},{"name":"ERROR_DS_ATTRIBUTE_OWNED_BY_SAM","features":[1]},{"name":"ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[1]},{"name":"ERROR_DS_ATT_ALREADY_EXISTS","features":[1]},{"name":"ERROR_DS_ATT_IS_NOT_ON_OBJ","features":[1]},{"name":"ERROR_DS_ATT_NOT_DEF_FOR_CLASS","features":[1]},{"name":"ERROR_DS_ATT_NOT_DEF_IN_SCHEMA","features":[1]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_ID","features":[1]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_SYNTAX","features":[1]},{"name":"ERROR_DS_ATT_VAL_ALREADY_EXISTS","features":[1]},{"name":"ERROR_DS_AUDIT_FAILURE","features":[1]},{"name":"ERROR_DS_AUTHORIZATION_FAILED","features":[1]},{"name":"ERROR_DS_AUTH_METHOD_NOT_SUPPORTED","features":[1]},{"name":"ERROR_DS_AUTH_UNKNOWN","features":[1]},{"name":"ERROR_DS_AUX_CLS_TEST_FAIL","features":[1]},{"name":"ERROR_DS_BACKLINK_WITHOUT_LINK","features":[1]},{"name":"ERROR_DS_BAD_ATT_SCHEMA_SYNTAX","features":[1]},{"name":"ERROR_DS_BAD_HIERARCHY_FILE","features":[1]},{"name":"ERROR_DS_BAD_INSTANCE_TYPE","features":[1]},{"name":"ERROR_DS_BAD_NAME_SYNTAX","features":[1]},{"name":"ERROR_DS_BAD_RDN_ATT_ID_SYNTAX","features":[1]},{"name":"ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED","features":[1]},{"name":"ERROR_DS_BUSY","features":[1]},{"name":"ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD","features":[1]},{"name":"ERROR_DS_CANT_ADD_ATT_VALUES","features":[1]},{"name":"ERROR_DS_CANT_ADD_SYSTEM_ONLY","features":[1]},{"name":"ERROR_DS_CANT_ADD_TO_GC","features":[1]},{"name":"ERROR_DS_CANT_CACHE_ATT","features":[1]},{"name":"ERROR_DS_CANT_CACHE_CLASS","features":[1]},{"name":"ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC","features":[1]},{"name":"ERROR_DS_CANT_CREATE_UNDER_SCHEMA","features":[1]},{"name":"ERROR_DS_CANT_DELETE","features":[1]},{"name":"ERROR_DS_CANT_DELETE_DSA_OBJ","features":[1]},{"name":"ERROR_DS_CANT_DEL_MASTER_CROSSREF","features":[1]},{"name":"ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC","features":[1]},{"name":"ERROR_DS_CANT_DEREF_ALIAS","features":[1]},{"name":"ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN","features":[1]},{"name":"ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF","features":[1]},{"name":"ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN","features":[1]},{"name":"ERROR_DS_CANT_FIND_DSA_OBJ","features":[1]},{"name":"ERROR_DS_CANT_FIND_EXPECTED_NC","features":[1]},{"name":"ERROR_DS_CANT_FIND_NC_IN_CACHE","features":[1]},{"name":"ERROR_DS_CANT_MIX_MASTER_AND_REPS","features":[1]},{"name":"ERROR_DS_CANT_MOD_OBJ_CLASS","features":[1]},{"name":"ERROR_DS_CANT_MOD_PRIMARYGROUPID","features":[1]},{"name":"ERROR_DS_CANT_MOD_SYSTEM_ONLY","features":[1]},{"name":"ERROR_DS_CANT_MOVE_ACCOUNT_GROUP","features":[1]},{"name":"ERROR_DS_CANT_MOVE_APP_BASIC_GROUP","features":[1]},{"name":"ERROR_DS_CANT_MOVE_APP_QUERY_GROUP","features":[1]},{"name":"ERROR_DS_CANT_MOVE_DELETED_OBJECT","features":[1]},{"name":"ERROR_DS_CANT_MOVE_RESOURCE_GROUP","features":[1]},{"name":"ERROR_DS_CANT_ON_NON_LEAF","features":[1]},{"name":"ERROR_DS_CANT_ON_RDN","features":[1]},{"name":"ERROR_DS_CANT_REMOVE_ATT_CACHE","features":[1]},{"name":"ERROR_DS_CANT_REMOVE_CLASS_CACHE","features":[1]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT","features":[1]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT_VAL","features":[1]},{"name":"ERROR_DS_CANT_REPLACE_HIDDEN_REC","features":[1]},{"name":"ERROR_DS_CANT_RETRIEVE_ATTS","features":[1]},{"name":"ERROR_DS_CANT_RETRIEVE_CHILD","features":[1]},{"name":"ERROR_DS_CANT_RETRIEVE_DN","features":[1]},{"name":"ERROR_DS_CANT_RETRIEVE_INSTANCE","features":[1]},{"name":"ERROR_DS_CANT_RETRIEVE_SD","features":[1]},{"name":"ERROR_DS_CANT_START","features":[1]},{"name":"ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ","features":[1]},{"name":"ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS","features":[1]},{"name":"ERROR_DS_CHILDREN_EXIST","features":[1]},{"name":"ERROR_DS_CLASS_MUST_BE_CONCRETE","features":[1]},{"name":"ERROR_DS_CLASS_NOT_DSA","features":[1]},{"name":"ERROR_DS_CLIENT_LOOP","features":[1]},{"name":"ERROR_DS_CODE_INCONSISTENCY","features":[1]},{"name":"ERROR_DS_COMPARE_FALSE","features":[1]},{"name":"ERROR_DS_COMPARE_TRUE","features":[1]},{"name":"ERROR_DS_CONFIDENTIALITY_REQUIRED","features":[1]},{"name":"ERROR_DS_CONFIG_PARAM_MISSING","features":[1]},{"name":"ERROR_DS_CONSTRAINT_VIOLATION","features":[1]},{"name":"ERROR_DS_CONSTRUCTED_ATT_MOD","features":[1]},{"name":"ERROR_DS_CONTROL_NOT_FOUND","features":[1]},{"name":"ERROR_DS_COULDNT_CONTACT_FSMO","features":[1]},{"name":"ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE","features":[1]},{"name":"ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE","features":[1]},{"name":"ERROR_DS_COULDNT_UPDATE_SPNS","features":[1]},{"name":"ERROR_DS_COUNTING_AB_INDICES_FAILED","features":[1]},{"name":"ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD","features":[1]},{"name":"ERROR_DS_CROSS_DOM_MOVE_ERROR","features":[1]},{"name":"ERROR_DS_CROSS_NC_DN_RENAME","features":[1]},{"name":"ERROR_DS_CROSS_REF_BUSY","features":[1]},{"name":"ERROR_DS_CROSS_REF_EXISTS","features":[1]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE","features":[1]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2","features":[1]},{"name":"ERROR_DS_DATABASE_ERROR","features":[1]},{"name":"ERROR_DS_DECODING_ERROR","features":[1]},{"name":"ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED","features":[1]},{"name":"ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST","features":[1]},{"name":"ERROR_DS_DIFFERENT_REPL_EPOCHS","features":[1]},{"name":"ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER","features":[1]},{"name":"ERROR_DS_DISALLOWED_NC_REDIRECT","features":[1]},{"name":"ERROR_DS_DNS_LOOKUP_FAILURE","features":[1]},{"name":"ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[1]},{"name":"ERROR_DS_DOMAIN_RENAME_IN_PROGRESS","features":[1]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_HIGH","features":[1]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_LOW","features":[1]},{"name":"ERROR_DS_DRA_ABANDON_SYNC","features":[1]},{"name":"ERROR_DS_DRA_ACCESS_DENIED","features":[1]},{"name":"ERROR_DS_DRA_BAD_DN","features":[1]},{"name":"ERROR_DS_DRA_BAD_INSTANCE_TYPE","features":[1]},{"name":"ERROR_DS_DRA_BAD_NC","features":[1]},{"name":"ERROR_DS_DRA_BUSY","features":[1]},{"name":"ERROR_DS_DRA_CONNECTION_FAILED","features":[1]},{"name":"ERROR_DS_DRA_CORRUPT_UTD_VECTOR","features":[1]},{"name":"ERROR_DS_DRA_DB_ERROR","features":[1]},{"name":"ERROR_DS_DRA_DN_EXISTS","features":[1]},{"name":"ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT","features":[1]},{"name":"ERROR_DS_DRA_EXTN_CONNECTION_FAILED","features":[1]},{"name":"ERROR_DS_DRA_GENERIC","features":[1]},{"name":"ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET","features":[1]},{"name":"ERROR_DS_DRA_INCONSISTENT_DIT","features":[1]},{"name":"ERROR_DS_DRA_INTERNAL_ERROR","features":[1]},{"name":"ERROR_DS_DRA_INVALID_PARAMETER","features":[1]},{"name":"ERROR_DS_DRA_MAIL_PROBLEM","features":[1]},{"name":"ERROR_DS_DRA_MISSING_KRBTGT_SECRET","features":[1]},{"name":"ERROR_DS_DRA_MISSING_PARENT","features":[1]},{"name":"ERROR_DS_DRA_NAME_COLLISION","features":[1]},{"name":"ERROR_DS_DRA_NOT_SUPPORTED","features":[1]},{"name":"ERROR_DS_DRA_NO_REPLICA","features":[1]},{"name":"ERROR_DS_DRA_OBJ_IS_REP_SOURCE","features":[1]},{"name":"ERROR_DS_DRA_OBJ_NC_MISMATCH","features":[1]},{"name":"ERROR_DS_DRA_OUT_OF_MEM","features":[1]},{"name":"ERROR_DS_DRA_OUT_SCHEDULE_WINDOW","features":[1]},{"name":"ERROR_DS_DRA_PREEMPTED","features":[1]},{"name":"ERROR_DS_DRA_RECYCLED_TARGET","features":[1]},{"name":"ERROR_DS_DRA_REF_ALREADY_EXISTS","features":[1]},{"name":"ERROR_DS_DRA_REF_NOT_FOUND","features":[1]},{"name":"ERROR_DS_DRA_REPL_PENDING","features":[1]},{"name":"ERROR_DS_DRA_RPC_CANCELLED","features":[1]},{"name":"ERROR_DS_DRA_SCHEMA_CONFLICT","features":[1]},{"name":"ERROR_DS_DRA_SCHEMA_INFO_SHIP","features":[1]},{"name":"ERROR_DS_DRA_SCHEMA_MISMATCH","features":[1]},{"name":"ERROR_DS_DRA_SECRETS_DENIED","features":[1]},{"name":"ERROR_DS_DRA_SHUTDOWN","features":[1]},{"name":"ERROR_DS_DRA_SINK_DISABLED","features":[1]},{"name":"ERROR_DS_DRA_SOURCE_DISABLED","features":[1]},{"name":"ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA","features":[1]},{"name":"ERROR_DS_DRA_SOURCE_REINSTALLED","features":[1]},{"name":"ERROR_DS_DRS_EXTENSIONS_CHANGED","features":[1]},{"name":"ERROR_DS_DSA_MUST_BE_INT_MASTER","features":[1]},{"name":"ERROR_DS_DST_DOMAIN_NOT_NATIVE","features":[1]},{"name":"ERROR_DS_DST_NC_MISMATCH","features":[1]},{"name":"ERROR_DS_DS_REQUIRED","features":[1]},{"name":"ERROR_DS_DUPLICATE_ID_FOUND","features":[1]},{"name":"ERROR_DS_DUP_LDAP_DISPLAY_NAME","features":[1]},{"name":"ERROR_DS_DUP_LINK_ID","features":[1]},{"name":"ERROR_DS_DUP_MAPI_ID","features":[1]},{"name":"ERROR_DS_DUP_MSDS_INTID","features":[1]},{"name":"ERROR_DS_DUP_OID","features":[1]},{"name":"ERROR_DS_DUP_RDN","features":[1]},{"name":"ERROR_DS_DUP_SCHEMA_ID_GUID","features":[1]},{"name":"ERROR_DS_ENCODING_ERROR","features":[1]},{"name":"ERROR_DS_EPOCH_MISMATCH","features":[1]},{"name":"ERROR_DS_EXISTING_AD_CHILD_NC","features":[1]},{"name":"ERROR_DS_EXISTS_IN_AUX_CLS","features":[1]},{"name":"ERROR_DS_EXISTS_IN_MAY_HAVE","features":[1]},{"name":"ERROR_DS_EXISTS_IN_MUST_HAVE","features":[1]},{"name":"ERROR_DS_EXISTS_IN_POSS_SUP","features":[1]},{"name":"ERROR_DS_EXISTS_IN_RDNATTID","features":[1]},{"name":"ERROR_DS_EXISTS_IN_SUB_CLS","features":[1]},{"name":"ERROR_DS_FILTER_UNKNOWN","features":[1]},{"name":"ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS","features":[1]},{"name":"ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[1]},{"name":"ERROR_DS_FOREST_VERSION_TOO_HIGH","features":[1]},{"name":"ERROR_DS_FOREST_VERSION_TOO_LOW","features":[1]},{"name":"ERROR_DS_GCVERIFY_ERROR","features":[1]},{"name":"ERROR_DS_GC_NOT_AVAILABLE","features":[1]},{"name":"ERROR_DS_GC_REQUIRED","features":[1]},{"name":"ERROR_DS_GENERIC_ERROR","features":[1]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[1]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[1]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[1]},{"name":"ERROR_DS_GOVERNSID_MISSING","features":[1]},{"name":"ERROR_DS_GROUP_CONVERSION_ERROR","features":[1]},{"name":"ERROR_DS_HAVE_PRIMARY_MEMBERS","features":[1]},{"name":"ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED","features":[1]},{"name":"ERROR_DS_HIERARCHY_TABLE_TOO_DEEP","features":[1]},{"name":"ERROR_DS_HIGH_ADLDS_FFL","features":[1]},{"name":"ERROR_DS_HIGH_DSA_VERSION","features":[1]},{"name":"ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD","features":[1]},{"name":"ERROR_DS_ILLEGAL_MOD_OPERATION","features":[1]},{"name":"ERROR_DS_ILLEGAL_SUPERIOR","features":[1]},{"name":"ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION","features":[1]},{"name":"ERROR_DS_INAPPROPRIATE_AUTH","features":[1]},{"name":"ERROR_DS_INAPPROPRIATE_MATCHING","features":[1]},{"name":"ERROR_DS_INCOMPATIBLE_CONTROLS_USED","features":[1]},{"name":"ERROR_DS_INCOMPATIBLE_VERSION","features":[1]},{"name":"ERROR_DS_INCORRECT_ROLE_OWNER","features":[1]},{"name":"ERROR_DS_INIT_FAILURE","features":[1]},{"name":"ERROR_DS_INIT_FAILURE_CONSOLE","features":[1]},{"name":"ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE","features":[1]},{"name":"ERROR_DS_INSTALL_NO_SRC_SCH_VERSION","features":[1]},{"name":"ERROR_DS_INSTALL_SCHEMA_MISMATCH","features":[1]},{"name":"ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT","features":[1]},{"name":"ERROR_DS_INSUFF_ACCESS_RIGHTS","features":[1]},{"name":"ERROR_DS_INTERNAL_FAILURE","features":[1]},{"name":"ERROR_DS_INVALID_ATTRIBUTE_SYNTAX","features":[1]},{"name":"ERROR_DS_INVALID_DMD","features":[1]},{"name":"ERROR_DS_INVALID_DN_SYNTAX","features":[1]},{"name":"ERROR_DS_INVALID_GROUP_TYPE","features":[1]},{"name":"ERROR_DS_INVALID_LDAP_DISPLAY_NAME","features":[1]},{"name":"ERROR_DS_INVALID_NAME_FOR_SPN","features":[1]},{"name":"ERROR_DS_INVALID_ROLE_OWNER","features":[1]},{"name":"ERROR_DS_INVALID_SCRIPT","features":[1]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG","features":[1]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE","features":[1]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_TUPLE","features":[1]},{"name":"ERROR_DS_IS_LEAF","features":[1]},{"name":"ERROR_DS_KEY_NOT_UNIQUE","features":[1]},{"name":"ERROR_DS_LDAP_SEND_QUEUE_FULL","features":[1]},{"name":"ERROR_DS_LINK_ID_NOT_AVAILABLE","features":[1]},{"name":"ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[1]},{"name":"ERROR_DS_LOCAL_ERROR","features":[1]},{"name":"ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[1]},{"name":"ERROR_DS_LOOP_DETECT","features":[1]},{"name":"ERROR_DS_LOW_ADLDS_FFL","features":[1]},{"name":"ERROR_DS_LOW_DSA_VERSION","features":[1]},{"name":"ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4","features":[1]},{"name":"ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_DS_MAPI_ID_NOT_AVAILABLE","features":[1]},{"name":"ERROR_DS_MASTERDSA_REQUIRED","features":[1]},{"name":"ERROR_DS_MAX_OBJ_SIZE_EXCEEDED","features":[1]},{"name":"ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[1]},{"name":"ERROR_DS_MISSING_EXPECTED_ATT","features":[1]},{"name":"ERROR_DS_MISSING_FOREST_TRUST","features":[1]},{"name":"ERROR_DS_MISSING_FSMO_SETTINGS","features":[1]},{"name":"ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER","features":[1]},{"name":"ERROR_DS_MISSING_REQUIRED_ATT","features":[1]},{"name":"ERROR_DS_MISSING_SUPREF","features":[1]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG","features":[1]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE","features":[1]},{"name":"ERROR_DS_MODIFYDN_WRONG_GRANDPARENT","features":[1]},{"name":"ERROR_DS_MUST_BE_RUN_ON_DST_DC","features":[1]},{"name":"ERROR_DS_NAME_ERROR_DOMAIN_ONLY","features":[1]},{"name":"ERROR_DS_NAME_ERROR_NOT_FOUND","features":[1]},{"name":"ERROR_DS_NAME_ERROR_NOT_UNIQUE","features":[1]},{"name":"ERROR_DS_NAME_ERROR_NO_MAPPING","features":[1]},{"name":"ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[1]},{"name":"ERROR_DS_NAME_ERROR_RESOLVING","features":[1]},{"name":"ERROR_DS_NAME_ERROR_TRUST_REFERRAL","features":[1]},{"name":"ERROR_DS_NAME_NOT_UNIQUE","features":[1]},{"name":"ERROR_DS_NAME_REFERENCE_INVALID","features":[1]},{"name":"ERROR_DS_NAME_TOO_LONG","features":[1]},{"name":"ERROR_DS_NAME_TOO_MANY_PARTS","features":[1]},{"name":"ERROR_DS_NAME_TYPE_UNKNOWN","features":[1]},{"name":"ERROR_DS_NAME_UNPARSEABLE","features":[1]},{"name":"ERROR_DS_NAME_VALUE_TOO_LONG","features":[1]},{"name":"ERROR_DS_NAMING_MASTER_GC","features":[1]},{"name":"ERROR_DS_NAMING_VIOLATION","features":[1]},{"name":"ERROR_DS_NCNAME_MISSING_CR_REF","features":[1]},{"name":"ERROR_DS_NCNAME_MUST_BE_NC","features":[1]},{"name":"ERROR_DS_NC_MUST_HAVE_NC_PARENT","features":[1]},{"name":"ERROR_DS_NC_STILL_HAS_DSAS","features":[1]},{"name":"ERROR_DS_NONEXISTENT_MAY_HAVE","features":[1]},{"name":"ERROR_DS_NONEXISTENT_MUST_HAVE","features":[1]},{"name":"ERROR_DS_NONEXISTENT_POSS_SUP","features":[1]},{"name":"ERROR_DS_NONSAFE_SCHEMA_CHANGE","features":[1]},{"name":"ERROR_DS_NON_ASQ_SEARCH","features":[1]},{"name":"ERROR_DS_NON_BASE_SEARCH","features":[1]},{"name":"ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX","features":[1]},{"name":"ERROR_DS_NOT_AN_OBJECT","features":[1]},{"name":"ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC","features":[1]},{"name":"ERROR_DS_NOT_CLOSEST","features":[1]},{"name":"ERROR_DS_NOT_INSTALLED","features":[1]},{"name":"ERROR_DS_NOT_ON_BACKLINK","features":[1]},{"name":"ERROR_DS_NOT_SUPPORTED","features":[1]},{"name":"ERROR_DS_NOT_SUPPORTED_SORT_ORDER","features":[1]},{"name":"ERROR_DS_NO_ATTRIBUTE_OR_VALUE","features":[1]},{"name":"ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN","features":[1]},{"name":"ERROR_DS_NO_CHAINED_EVAL","features":[1]},{"name":"ERROR_DS_NO_CHAINING","features":[1]},{"name":"ERROR_DS_NO_CHECKPOINT_WITH_PDC","features":[1]},{"name":"ERROR_DS_NO_CROSSREF_FOR_NC","features":[1]},{"name":"ERROR_DS_NO_DELETED_NAME","features":[1]},{"name":"ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[1]},{"name":"ERROR_DS_NO_MORE_RIDS","features":[1]},{"name":"ERROR_DS_NO_MSDS_INTID","features":[1]},{"name":"ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[1]},{"name":"ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[1]},{"name":"ERROR_DS_NO_NTDSA_OBJECT","features":[1]},{"name":"ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC","features":[1]},{"name":"ERROR_DS_NO_PARENT_OBJECT","features":[1]},{"name":"ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION","features":[1]},{"name":"ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA","features":[1]},{"name":"ERROR_DS_NO_REF_DOMAIN","features":[1]},{"name":"ERROR_DS_NO_REQUESTED_ATTS_FOUND","features":[1]},{"name":"ERROR_DS_NO_RESULTS_RETURNED","features":[1]},{"name":"ERROR_DS_NO_RIDS_ALLOCATED","features":[1]},{"name":"ERROR_DS_NO_SERVER_OBJECT","features":[1]},{"name":"ERROR_DS_NO_SUCH_OBJECT","features":[1]},{"name":"ERROR_DS_NO_TREE_DELETE_ABOVE_NC","features":[1]},{"name":"ERROR_DS_NTDSCRIPT_PROCESS_ERROR","features":[1]},{"name":"ERROR_DS_NTDSCRIPT_SYNTAX_ERROR","features":[1]},{"name":"ERROR_DS_OBJECT_BEING_REMOVED","features":[1]},{"name":"ERROR_DS_OBJECT_CLASS_REQUIRED","features":[1]},{"name":"ERROR_DS_OBJECT_RESULTS_TOO_LARGE","features":[1]},{"name":"ERROR_DS_OBJ_CLASS_NOT_DEFINED","features":[1]},{"name":"ERROR_DS_OBJ_CLASS_NOT_SUBCLASS","features":[1]},{"name":"ERROR_DS_OBJ_CLASS_VIOLATION","features":[1]},{"name":"ERROR_DS_OBJ_GUID_EXISTS","features":[1]},{"name":"ERROR_DS_OBJ_NOT_FOUND","features":[1]},{"name":"ERROR_DS_OBJ_STRING_NAME_EXISTS","features":[1]},{"name":"ERROR_DS_OBJ_TOO_LARGE","features":[1]},{"name":"ERROR_DS_OFFSET_RANGE_ERROR","features":[1]},{"name":"ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[1]},{"name":"ERROR_DS_OID_NOT_FOUND","features":[1]},{"name":"ERROR_DS_OPERATIONS_ERROR","features":[1]},{"name":"ERROR_DS_OUT_OF_SCOPE","features":[1]},{"name":"ERROR_DS_OUT_OF_VERSION_STORE","features":[1]},{"name":"ERROR_DS_PARAM_ERROR","features":[1]},{"name":"ERROR_DS_PARENT_IS_AN_ALIAS","features":[1]},{"name":"ERROR_DS_PDC_OPERATION_IN_PROGRESS","features":[1]},{"name":"ERROR_DS_PER_ATTRIBUTE_AUTHZ_FAILED_DURING_ADD","features":[1]},{"name":"ERROR_DS_POLICY_NOT_KNOWN","features":[1]},{"name":"ERROR_DS_PROTOCOL_ERROR","features":[1]},{"name":"ERROR_DS_RANGE_CONSTRAINT","features":[1]},{"name":"ERROR_DS_RDN_DOESNT_MATCH_SCHEMA","features":[1]},{"name":"ERROR_DS_RECALCSCHEMA_FAILED","features":[1]},{"name":"ERROR_DS_REFERRAL","features":[1]},{"name":"ERROR_DS_REFERRAL_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DS_REFUSING_FSMO_ROLES","features":[1]},{"name":"ERROR_DS_REMOTE_CROSSREF_OP_FAILED","features":[1]},{"name":"ERROR_DS_REPLICATOR_ONLY","features":[1]},{"name":"ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR","features":[1]},{"name":"ERROR_DS_REPL_LIFETIME_EXCEEDED","features":[1]},{"name":"ERROR_DS_RESERVED_LINK_ID","features":[1]},{"name":"ERROR_DS_RESERVED_MAPI_ID","features":[1]},{"name":"ERROR_DS_RIDMGR_DISABLED","features":[1]},{"name":"ERROR_DS_RIDMGR_INIT_ERROR","features":[1]},{"name":"ERROR_DS_ROLE_NOT_VERIFIED","features":[1]},{"name":"ERROR_DS_ROOT_CANT_BE_SUBREF","features":[1]},{"name":"ERROR_DS_ROOT_MUST_BE_NC","features":[1]},{"name":"ERROR_DS_ROOT_REQUIRES_CLASS_TOP","features":[1]},{"name":"ERROR_DS_SAM_INIT_FAILURE","features":[1]},{"name":"ERROR_DS_SAM_INIT_FAILURE_CONSOLE","features":[1]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY","features":[1]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD","features":[1]},{"name":"ERROR_DS_SCHEMA_ALLOC_FAILED","features":[1]},{"name":"ERROR_DS_SCHEMA_NOT_LOADED","features":[1]},{"name":"ERROR_DS_SCHEMA_UPDATE_DISALLOWED","features":[1]},{"name":"ERROR_DS_SECURITY_CHECKING_ERROR","features":[1]},{"name":"ERROR_DS_SECURITY_ILLEGAL_MODIFY","features":[1]},{"name":"ERROR_DS_SEC_DESC_INVALID","features":[1]},{"name":"ERROR_DS_SEC_DESC_TOO_SHORT","features":[1]},{"name":"ERROR_DS_SEMANTIC_ATT_TEST","features":[1]},{"name":"ERROR_DS_SENSITIVE_GROUP_VIOLATION","features":[1]},{"name":"ERROR_DS_SERVER_DOWN","features":[1]},{"name":"ERROR_DS_SHUTTING_DOWN","features":[1]},{"name":"ERROR_DS_SINGLE_USER_MODE_FAILED","features":[1]},{"name":"ERROR_DS_SINGLE_VALUE_CONSTRAINT","features":[1]},{"name":"ERROR_DS_SIZELIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DS_SORT_CONTROL_MISSING","features":[1]},{"name":"ERROR_DS_SOURCE_AUDITING_NOT_ENABLED","features":[1]},{"name":"ERROR_DS_SOURCE_DOMAIN_IN_FOREST","features":[1]},{"name":"ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[1]},{"name":"ERROR_DS_SRC_AND_DST_NC_IDENTICAL","features":[1]},{"name":"ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH","features":[1]},{"name":"ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER","features":[1]},{"name":"ERROR_DS_SRC_GUID_MISMATCH","features":[1]},{"name":"ERROR_DS_SRC_NAME_MISMATCH","features":[1]},{"name":"ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER","features":[1]},{"name":"ERROR_DS_SRC_SID_EXISTS_IN_FOREST","features":[1]},{"name":"ERROR_DS_STRING_SD_CONVERSION_FAILED","features":[1]},{"name":"ERROR_DS_STRONG_AUTH_REQUIRED","features":[1]},{"name":"ERROR_DS_SUBREF_MUST_HAVE_PARENT","features":[1]},{"name":"ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD","features":[1]},{"name":"ERROR_DS_SUB_CLS_TEST_FAIL","features":[1]},{"name":"ERROR_DS_SYNTAX_MISMATCH","features":[1]},{"name":"ERROR_DS_THREAD_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DS_TIMELIMIT_EXCEEDED","features":[1]},{"name":"ERROR_DS_TREE_DELETE_NOT_FINISHED","features":[1]},{"name":"ERROR_DS_UNABLE_TO_SURRENDER_ROLES","features":[1]},{"name":"ERROR_DS_UNAVAILABLE","features":[1]},{"name":"ERROR_DS_UNAVAILABLE_CRIT_EXTENSION","features":[1]},{"name":"ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED","features":[1]},{"name":"ERROR_DS_UNICODEPWD_NOT_IN_QUOTES","features":[1]},{"name":"ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[1]},{"name":"ERROR_DS_UNKNOWN_ERROR","features":[1]},{"name":"ERROR_DS_UNKNOWN_OPERATION","features":[1]},{"name":"ERROR_DS_UNWILLING_TO_PERFORM","features":[1]},{"name":"ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[1]},{"name":"ERROR_DS_USER_BUFFER_TO_SMALL","features":[1]},{"name":"ERROR_DS_VALUE_KEY_NOT_UNIQUE","features":[1]},{"name":"ERROR_DS_VERSION_CHECK_FAILURE","features":[1]},{"name":"ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL","features":[1]},{"name":"ERROR_DS_WRONG_LINKED_ATT_SYNTAX","features":[1]},{"name":"ERROR_DS_WRONG_OM_OBJ_CLASS","features":[1]},{"name":"ERROR_DUPLICATE_FOUND","features":[1]},{"name":"ERROR_DUPLICATE_PRIVILEGES","features":[1]},{"name":"ERROR_DUPLICATE_SERVICE_NAME","features":[1]},{"name":"ERROR_DUPLICATE_TAG","features":[1]},{"name":"ERROR_DUP_DOMAINNAME","features":[1]},{"name":"ERROR_DUP_NAME","features":[1]},{"name":"ERROR_DYNAMIC_CODE_BLOCKED","features":[1]},{"name":"ERROR_DYNLINK_FROM_INVALID_RING","features":[1]},{"name":"ERROR_EAS_DIDNT_FIT","features":[1]},{"name":"ERROR_EAS_NOT_SUPPORTED","features":[1]},{"name":"ERROR_EA_ACCESS_DENIED","features":[1]},{"name":"ERROR_EA_FILE_CORRUPT","features":[1]},{"name":"ERROR_EA_LIST_INCONSISTENT","features":[1]},{"name":"ERROR_EA_TABLE_FULL","features":[1]},{"name":"ERROR_EC_CIRCULAR_FORWARDING","features":[1]},{"name":"ERROR_EC_CREDSTORE_FULL","features":[1]},{"name":"ERROR_EC_CRED_NOT_FOUND","features":[1]},{"name":"ERROR_EC_LOG_DISABLED","features":[1]},{"name":"ERROR_EC_NO_ACTIVE_CHANNEL","features":[1]},{"name":"ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE","features":[1]},{"name":"ERROR_EDP_DPL_POLICY_CANT_BE_SATISFIED","features":[1]},{"name":"ERROR_EDP_POLICY_DENIES_OPERATION","features":[1]},{"name":"ERROR_EFS_ALG_BLOB_TOO_BIG","features":[1]},{"name":"ERROR_EFS_DISABLED","features":[1]},{"name":"ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[1]},{"name":"ERROR_EFS_SERVER_NOT_TRUSTED","features":[1]},{"name":"ERROR_EFS_VERSION_NOT_SUPPORT","features":[1]},{"name":"ERROR_ELEVATION_REQUIRED","features":[1]},{"name":"ERROR_EMPTY","features":[1]},{"name":"ERROR_ENCLAVE_FAILURE","features":[1]},{"name":"ERROR_ENCLAVE_NOT_TERMINATED","features":[1]},{"name":"ERROR_ENCLAVE_VIOLATION","features":[1]},{"name":"ERROR_ENCRYPTED_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_ENCRYPTED_IO_NOT_POSSIBLE","features":[1]},{"name":"ERROR_ENCRYPTING_METADATA_DISALLOWED","features":[1]},{"name":"ERROR_ENCRYPTION_DISABLED","features":[1]},{"name":"ERROR_ENCRYPTION_FAILED","features":[1]},{"name":"ERROR_ENCRYPTION_POLICY_DENIES_OPERATION","features":[1]},{"name":"ERROR_END_OF_MEDIA","features":[1]},{"name":"ERROR_ENLISTMENT_NOT_FOUND","features":[1]},{"name":"ERROR_ENLISTMENT_NOT_SUPERIOR","features":[1]},{"name":"ERROR_ENVVAR_NOT_FOUND","features":[1]},{"name":"ERROR_EOM_OVERFLOW","features":[1]},{"name":"ERROR_ERRORS_ENCOUNTERED","features":[1]},{"name":"ERROR_EVALUATION_EXPIRATION","features":[1]},{"name":"ERROR_EVENTLOG_CANT_START","features":[1]},{"name":"ERROR_EVENTLOG_FILE_CHANGED","features":[1]},{"name":"ERROR_EVENTLOG_FILE_CORRUPT","features":[1]},{"name":"ERROR_EVENT_DONE","features":[1]},{"name":"ERROR_EVENT_PENDING","features":[1]},{"name":"ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY","features":[1]},{"name":"ERROR_EVT_CHANNEL_CANNOT_ACTIVATE","features":[1]},{"name":"ERROR_EVT_CHANNEL_NOT_FOUND","features":[1]},{"name":"ERROR_EVT_CONFIGURATION_ERROR","features":[1]},{"name":"ERROR_EVT_EVENT_DEFINITION_NOT_FOUND","features":[1]},{"name":"ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND","features":[1]},{"name":"ERROR_EVT_FILTER_ALREADYSCOPED","features":[1]},{"name":"ERROR_EVT_FILTER_INVARG","features":[1]},{"name":"ERROR_EVT_FILTER_INVTEST","features":[1]},{"name":"ERROR_EVT_FILTER_INVTYPE","features":[1]},{"name":"ERROR_EVT_FILTER_NOTELTSET","features":[1]},{"name":"ERROR_EVT_FILTER_OUT_OF_RANGE","features":[1]},{"name":"ERROR_EVT_FILTER_PARSEERR","features":[1]},{"name":"ERROR_EVT_FILTER_TOO_COMPLEX","features":[1]},{"name":"ERROR_EVT_FILTER_UNEXPECTEDTOKEN","features":[1]},{"name":"ERROR_EVT_FILTER_UNSUPPORTEDOP","features":[1]},{"name":"ERROR_EVT_INVALID_CHANNEL_PATH","features":[1]},{"name":"ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE","features":[1]},{"name":"ERROR_EVT_INVALID_EVENT_DATA","features":[1]},{"name":"ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL","features":[1]},{"name":"ERROR_EVT_INVALID_PUBLISHER_NAME","features":[1]},{"name":"ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE","features":[1]},{"name":"ERROR_EVT_INVALID_QUERY","features":[1]},{"name":"ERROR_EVT_MALFORMED_XML_TEXT","features":[1]},{"name":"ERROR_EVT_MAX_INSERTS_REACHED","features":[1]},{"name":"ERROR_EVT_MESSAGE_ID_NOT_FOUND","features":[1]},{"name":"ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND","features":[1]},{"name":"ERROR_EVT_MESSAGE_NOT_FOUND","features":[1]},{"name":"ERROR_EVT_NON_VALIDATING_MSXML","features":[1]},{"name":"ERROR_EVT_PUBLISHER_DISABLED","features":[1]},{"name":"ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND","features":[1]},{"name":"ERROR_EVT_QUERY_RESULT_INVALID_POSITION","features":[1]},{"name":"ERROR_EVT_QUERY_RESULT_STALE","features":[1]},{"name":"ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL","features":[1]},{"name":"ERROR_EVT_UNRESOLVED_PARAMETER_INSERT","features":[1]},{"name":"ERROR_EVT_UNRESOLVED_VALUE_INSERT","features":[1]},{"name":"ERROR_EVT_VERSION_TOO_NEW","features":[1]},{"name":"ERROR_EVT_VERSION_TOO_OLD","features":[1]},{"name":"ERROR_EXCEPTION_IN_RESOURCE_CALL","features":[1]},{"name":"ERROR_EXCEPTION_IN_SERVICE","features":[1]},{"name":"ERROR_EXCL_SEM_ALREADY_OWNED","features":[1]},{"name":"ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY","features":[1]},{"name":"ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY","features":[1]},{"name":"ERROR_EXE_MACHINE_TYPE_MISMATCH","features":[1]},{"name":"ERROR_EXE_MARKED_INVALID","features":[1]},{"name":"ERROR_EXPECTED_SECTION_NAME","features":[1]},{"name":"ERROR_EXPIRED_HANDLE","features":[1]},{"name":"ERROR_EXTENDED_ERROR","features":[1]},{"name":"ERROR_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[1]},{"name":"ERROR_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[1]},{"name":"ERROR_EXTRANEOUS_INFORMATION","features":[1]},{"name":"ERROR_FAILED_DRIVER_ENTRY","features":[1]},{"name":"ERROR_FAILED_SERVICE_CONTROLLER_CONNECT","features":[1]},{"name":"ERROR_FAIL_FAST_EXCEPTION","features":[1]},{"name":"ERROR_FAIL_I24","features":[1]},{"name":"ERROR_FAIL_NOACTION_REBOOT","features":[1]},{"name":"ERROR_FAIL_REBOOT_INITIATED","features":[1]},{"name":"ERROR_FAIL_REBOOT_REQUIRED","features":[1]},{"name":"ERROR_FAIL_RESTART","features":[1]},{"name":"ERROR_FAIL_SHUTDOWN","features":[1]},{"name":"ERROR_FATAL_APP_EXIT","features":[1]},{"name":"ERROR_FILEMARK_DETECTED","features":[1]},{"name":"ERROR_FILENAME_EXCED_RANGE","features":[1]},{"name":"ERROR_FILEQUEUE_LOCKED","features":[1]},{"name":"ERROR_FILE_CHECKED_OUT","features":[1]},{"name":"ERROR_FILE_CORRUPT","features":[1]},{"name":"ERROR_FILE_ENCRYPTED","features":[1]},{"name":"ERROR_FILE_EXISTS","features":[1]},{"name":"ERROR_FILE_HANDLE_REVOKED","features":[1]},{"name":"ERROR_FILE_HASH_NOT_IN_CATALOG","features":[1]},{"name":"ERROR_FILE_IDENTITY_NOT_PERSISTENT","features":[1]},{"name":"ERROR_FILE_INVALID","features":[1]},{"name":"ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED","features":[1]},{"name":"ERROR_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[1]},{"name":"ERROR_FILE_NOT_ENCRYPTED","features":[1]},{"name":"ERROR_FILE_NOT_FOUND","features":[1]},{"name":"ERROR_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_FILE_OFFLINE","features":[1]},{"name":"ERROR_FILE_PROTECTED_UNDER_DPL","features":[1]},{"name":"ERROR_FILE_READ_ONLY","features":[1]},{"name":"ERROR_FILE_SHARE_RESOURCE_CONFLICT","features":[1]},{"name":"ERROR_FILE_SNAP_INVALID_PARAMETER","features":[1]},{"name":"ERROR_FILE_SNAP_IN_PROGRESS","features":[1]},{"name":"ERROR_FILE_SNAP_IO_NOT_COORDINATED","features":[1]},{"name":"ERROR_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[1]},{"name":"ERROR_FILE_SNAP_UNEXPECTED_ERROR","features":[1]},{"name":"ERROR_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_FILE_SYSTEM_LIMITATION","features":[1]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[1]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[1]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[1]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[1]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[1]},{"name":"ERROR_FILE_TOO_LARGE","features":[1]},{"name":"ERROR_FIRMWARE_UPDATED","features":[1]},{"name":"ERROR_FLOATED_SECTION","features":[1]},{"name":"ERROR_FLOAT_MULTIPLE_FAULTS","features":[1]},{"name":"ERROR_FLOAT_MULTIPLE_TRAPS","features":[1]},{"name":"ERROR_FLOPPY_BAD_REGISTERS","features":[1]},{"name":"ERROR_FLOPPY_ID_MARK_NOT_FOUND","features":[1]},{"name":"ERROR_FLOPPY_UNKNOWN_ERROR","features":[1]},{"name":"ERROR_FLOPPY_VOLUME","features":[1]},{"name":"ERROR_FLOPPY_WRONG_CYLINDER","features":[1]},{"name":"ERROR_FLT_ALREADY_ENLISTED","features":[1]},{"name":"ERROR_FLT_CBDQ_DISABLED","features":[1]},{"name":"ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[1]},{"name":"ERROR_FLT_CONTEXT_ALREADY_DEFINED","features":[1]},{"name":"ERROR_FLT_CONTEXT_ALREADY_LINKED","features":[1]},{"name":"ERROR_FLT_DELETING_OBJECT","features":[1]},{"name":"ERROR_FLT_DISALLOW_FAST_IO","features":[1]},{"name":"ERROR_FLT_DO_NOT_ATTACH","features":[1]},{"name":"ERROR_FLT_DO_NOT_DETACH","features":[1]},{"name":"ERROR_FLT_DUPLICATE_ENTRY","features":[1]},{"name":"ERROR_FLT_FILTER_NOT_FOUND","features":[1]},{"name":"ERROR_FLT_FILTER_NOT_READY","features":[1]},{"name":"ERROR_FLT_INSTANCE_ALTITUDE_COLLISION","features":[1]},{"name":"ERROR_FLT_INSTANCE_NAME_COLLISION","features":[1]},{"name":"ERROR_FLT_INSTANCE_NOT_FOUND","features":[1]},{"name":"ERROR_FLT_INTERNAL_ERROR","features":[1]},{"name":"ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[1]},{"name":"ERROR_FLT_INVALID_CONTEXT_REGISTRATION","features":[1]},{"name":"ERROR_FLT_INVALID_NAME_REQUEST","features":[1]},{"name":"ERROR_FLT_IO_COMPLETE","features":[1]},{"name":"ERROR_FLT_MUST_BE_NONPAGED_POOL","features":[1]},{"name":"ERROR_FLT_NAME_CACHE_MISS","features":[1]},{"name":"ERROR_FLT_NOT_INITIALIZED","features":[1]},{"name":"ERROR_FLT_NOT_SAFE_TO_POST_OPERATION","features":[1]},{"name":"ERROR_FLT_NO_DEVICE_OBJECT","features":[1]},{"name":"ERROR_FLT_NO_HANDLER_DEFINED","features":[1]},{"name":"ERROR_FLT_NO_WAITER_FOR_REPLY","features":[1]},{"name":"ERROR_FLT_POST_OPERATION_CLEANUP","features":[1]},{"name":"ERROR_FLT_REGISTRATION_BUSY","features":[1]},{"name":"ERROR_FLT_VOLUME_ALREADY_MOUNTED","features":[1]},{"name":"ERROR_FLT_VOLUME_NOT_FOUND","features":[1]},{"name":"ERROR_FLT_WCOS_NOT_SUPPORTED","features":[1]},{"name":"ERROR_FORMS_AUTH_REQUIRED","features":[1]},{"name":"ERROR_FOUND_OUT_OF_SCOPE","features":[1]},{"name":"ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[1]},{"name":"ERROR_FS_DRIVER_REQUIRED","features":[1]},{"name":"ERROR_FS_GUID_MISMATCH","features":[1]},{"name":"ERROR_FS_METADATA_INCONSISTENT","features":[1]},{"name":"ERROR_FT_DI_SCAN_REQUIRED","features":[1]},{"name":"ERROR_FT_READ_FAILURE","features":[1]},{"name":"ERROR_FT_READ_FROM_COPY_FAILURE","features":[1]},{"name":"ERROR_FT_READ_RECOVERY_FROM_BACKUP","features":[1]},{"name":"ERROR_FT_WRITE_FAILURE","features":[1]},{"name":"ERROR_FT_WRITE_RECOVERY","features":[1]},{"name":"ERROR_FULLSCREEN_MODE","features":[1]},{"name":"ERROR_FULL_BACKUP","features":[1]},{"name":"ERROR_FUNCTION_FAILED","features":[1]},{"name":"ERROR_FUNCTION_NOT_CALLED","features":[1]},{"name":"ERROR_GDI_HANDLE_LEAK","features":[1]},{"name":"ERROR_GENERAL_SYNTAX","features":[1]},{"name":"ERROR_GENERIC_COMMAND_FAILED","features":[1]},{"name":"ERROR_GENERIC_NOT_MAPPED","features":[1]},{"name":"ERROR_GEN_FAILURE","features":[1]},{"name":"ERROR_GLOBAL_ONLY_HOOK","features":[1]},{"name":"ERROR_GPIO_CLIENT_INFORMATION_INVALID","features":[1]},{"name":"ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[1]},{"name":"ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[1]},{"name":"ERROR_GPIO_INVALID_REGISTRATION_PACKET","features":[1]},{"name":"ERROR_GPIO_OPERATION_DENIED","features":[1]},{"name":"ERROR_GPIO_VERSION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRACEFUL_DISCONNECT","features":[1]},{"name":"ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[1]},{"name":"ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[1]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[1]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[1]},{"name":"ERROR_GRAPHICS_ADAPTER_WAS_RESET","features":[1]},{"name":"ERROR_GRAPHICS_ALLOCATION_BUSY","features":[1]},{"name":"ERROR_GRAPHICS_ALLOCATION_CLOSED","features":[1]},{"name":"ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[1]},{"name":"ERROR_GRAPHICS_ALLOCATION_INVALID","features":[1]},{"name":"ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[1]},{"name":"ERROR_GRAPHICS_CANNOTCOLORCONVERT","features":[1]},{"name":"ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[1]},{"name":"ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[1]},{"name":"ERROR_GRAPHICS_CANT_LOCK_MEMORY","features":[1]},{"name":"ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[1]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[1]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[1]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[1]},{"name":"ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[1]},{"name":"ERROR_GRAPHICS_COPP_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_DATASET_IS_EMPTY","features":[1]},{"name":"ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE","features":[1]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_DATA","features":[1]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[1]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[1]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[1]},{"name":"ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[1]},{"name":"ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[1]},{"name":"ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[1]},{"name":"ERROR_GRAPHICS_DRIVER_MISMATCH","features":[1]},{"name":"ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[1]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[1]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[1]},{"name":"ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[1]},{"name":"ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[1]},{"name":"ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[1]},{"name":"ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[1]},{"name":"ERROR_GRAPHICS_I2C_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[1]},{"name":"ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[1]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[1]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[1]},{"name":"ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[1]},{"name":"ERROR_GRAPHICS_INTERNAL_ERROR","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_ACTIVE_REGION","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_CLIENT_TYPE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_COLORBASIS","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_DRIVER_MODEL","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_FREQUENCY","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_GAMMA_RAMP","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_PIXELFORMAT","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_POINTER","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_STRIDE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_TOTAL_REGION","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[1]},{"name":"ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[1]},{"name":"ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[1]},{"name":"ERROR_GRAPHICS_LEADLINK_START_DEFERRED","features":[1]},{"name":"ERROR_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[1]},{"name":"ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[1]},{"name":"ERROR_GRAPHICS_MCA_INTERNAL_ERROR","features":[1]},{"name":"ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING","features":[1]},{"name":"ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[1]},{"name":"ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION","features":[1]},{"name":"ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH","features":[1]},{"name":"ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[1]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[1]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION","features":[1]},{"name":"ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[1]},{"name":"ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[1]},{"name":"ERROR_GRAPHICS_MODE_NOT_IN_MODESET","features":[1]},{"name":"ERROR_GRAPHICS_MODE_NOT_PINNED","features":[1]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[1]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[1]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[1]},{"name":"ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[1]},{"name":"ERROR_GRAPHICS_MONITOR_NOT_CONNECTED","features":[1]},{"name":"ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[1]},{"name":"ERROR_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[1]},{"name":"ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[1]},{"name":"ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[1]},{"name":"ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[1]},{"name":"ERROR_GRAPHICS_NO_ACTIVE_VIDPN","features":[1]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[1]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[1]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[1]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[1]},{"name":"ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[1]},{"name":"ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[1]},{"name":"ERROR_GRAPHICS_NO_PREFERRED_MODE","features":[1]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[1]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[1]},{"name":"ERROR_GRAPHICS_NO_VIDEO_MEMORY","features":[1]},{"name":"ERROR_GRAPHICS_NO_VIDPNMGR","features":[1]},{"name":"ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[1]},{"name":"ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[1]},{"name":"ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[1]},{"name":"ERROR_GRAPHICS_OPM_INTERNAL_ERROR","features":[1]},{"name":"ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[1]},{"name":"ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[1]},{"name":"ERROR_GRAPHICS_OPM_INVALID_HANDLE","features":[1]},{"name":"ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[1]},{"name":"ERROR_GRAPHICS_OPM_INVALID_SRM","features":[1]},{"name":"ERROR_GRAPHICS_OPM_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST","features":[1]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[1]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[1]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[1]},{"name":"ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[1]},{"name":"ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[1]},{"name":"ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[1]},{"name":"ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[1]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[1]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[1]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS","features":[1]},{"name":"ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[1]},{"name":"ERROR_GRAPHICS_PARTIAL_DATA_POPULATED","features":[1]},{"name":"ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[1]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[1]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[1]},{"name":"ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[1]},{"name":"ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[1]},{"name":"ERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[1]},{"name":"ERROR_GRAPHICS_PRESENT_DENIED","features":[1]},{"name":"ERROR_GRAPHICS_PRESENT_INVALID_WINDOW","features":[1]},{"name":"ERROR_GRAPHICS_PRESENT_MODE_CHANGED","features":[1]},{"name":"ERROR_GRAPHICS_PRESENT_OCCLUDED","features":[1]},{"name":"ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[1]},{"name":"ERROR_GRAPHICS_PRESENT_UNOCCLUDED","features":[1]},{"name":"ERROR_GRAPHICS_PVP_HFS_FAILED","features":[1]},{"name":"ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[1]},{"name":"ERROR_GRAPHICS_RESOURCES_NOT_RELATED","features":[1]},{"name":"ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[1]},{"name":"ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[1]},{"name":"ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[1]},{"name":"ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[1]},{"name":"ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[1]},{"name":"ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[1]},{"name":"ERROR_GRAPHICS_STALE_MODESET","features":[1]},{"name":"ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[1]},{"name":"ERROR_GRAPHICS_START_DEFERRED","features":[1]},{"name":"ERROR_GRAPHICS_TARGET_ALREADY_IN_SET","features":[1]},{"name":"ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[1]},{"name":"ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[1]},{"name":"ERROR_GRAPHICS_TOO_MANY_REFERENCES","features":[1]},{"name":"ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[1]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_LATER","features":[1]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_NOW","features":[1]},{"name":"ERROR_GRAPHICS_UAB_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[1]},{"name":"ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[1]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[1]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_COMPOSITION_WINDOW_DPI_MESSAGE","features":[1]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_CREATE_SUPERWETINK_MESSAGE","features":[1]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_DESTROY_SUPERWETINK_MESSAGE","features":[1]},{"name":"ERROR_GRAPHICS_VAIL_STATE_CHANGED","features":[1]},{"name":"ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[1]},{"name":"ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[1]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[1]},{"name":"ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[1]},{"name":"ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[1]},{"name":"ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[1]},{"name":"ERROR_GROUPSET_CANT_PROVIDE","features":[1]},{"name":"ERROR_GROUPSET_NOT_AVAILABLE","features":[1]},{"name":"ERROR_GROUPSET_NOT_FOUND","features":[1]},{"name":"ERROR_GROUP_EXISTS","features":[1]},{"name":"ERROR_GROUP_NOT_AVAILABLE","features":[1]},{"name":"ERROR_GROUP_NOT_FOUND","features":[1]},{"name":"ERROR_GROUP_NOT_ONLINE","features":[1]},{"name":"ERROR_GUID_SUBSTITUTION_MADE","features":[1]},{"name":"ERROR_HANDLES_CLOSED","features":[1]},{"name":"ERROR_HANDLE_DISK_FULL","features":[1]},{"name":"ERROR_HANDLE_EOF","features":[1]},{"name":"ERROR_HANDLE_NO_LONGER_VALID","features":[1]},{"name":"ERROR_HANDLE_REVOKED","features":[1]},{"name":"ERROR_HASH_NOT_PRESENT","features":[1]},{"name":"ERROR_HASH_NOT_SUPPORTED","features":[1]},{"name":"ERROR_HAS_SYSTEM_CRITICAL_FILES","features":[1]},{"name":"ERROR_HEURISTIC_DAMAGE_POSSIBLE","features":[1]},{"name":"ERROR_HIBERNATED","features":[1]},{"name":"ERROR_HIBERNATION_FAILURE","features":[1]},{"name":"ERROR_HOOK_NEEDS_HMOD","features":[1]},{"name":"ERROR_HOOK_NOT_INSTALLED","features":[1]},{"name":"ERROR_HOOK_TYPE_NOT_ALLOWED","features":[1]},{"name":"ERROR_HOST_DOWN","features":[1]},{"name":"ERROR_HOST_NODE_NOT_AVAILABLE","features":[1]},{"name":"ERROR_HOST_NODE_NOT_GROUP_OWNER","features":[1]},{"name":"ERROR_HOST_NODE_NOT_RESOURCE_OWNER","features":[1]},{"name":"ERROR_HOST_UNREACHABLE","features":[1]},{"name":"ERROR_HOTKEY_ALREADY_REGISTERED","features":[1]},{"name":"ERROR_HOTKEY_NOT_REGISTERED","features":[1]},{"name":"ERROR_HUNG_DISPLAY_DRIVER_THREAD","features":[1]},{"name":"ERROR_HV_ACCESS_DENIED","features":[1]},{"name":"ERROR_HV_ACKNOWLEDGED","features":[1]},{"name":"ERROR_HV_CPUID_FEATURE_VALIDATION","features":[1]},{"name":"ERROR_HV_CPUID_XSAVE_FEATURE_VALIDATION","features":[1]},{"name":"ERROR_HV_DEVICE_NOT_IN_DOMAIN","features":[1]},{"name":"ERROR_HV_EVENT_BUFFER_ALREADY_FREED","features":[1]},{"name":"ERROR_HV_FEATURE_UNAVAILABLE","features":[1]},{"name":"ERROR_HV_INACTIVE","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_BUFFER","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_BUFFERS","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY","features":[1]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[1]},{"name":"ERROR_HV_INVALID_ALIGNMENT","features":[1]},{"name":"ERROR_HV_INVALID_CONNECTION_ID","features":[1]},{"name":"ERROR_HV_INVALID_CPU_GROUP_ID","features":[1]},{"name":"ERROR_HV_INVALID_CPU_GROUP_STATE","features":[1]},{"name":"ERROR_HV_INVALID_DEVICE_ID","features":[1]},{"name":"ERROR_HV_INVALID_DEVICE_STATE","features":[1]},{"name":"ERROR_HV_INVALID_HYPERCALL_CODE","features":[1]},{"name":"ERROR_HV_INVALID_HYPERCALL_INPUT","features":[1]},{"name":"ERROR_HV_INVALID_LP_INDEX","features":[1]},{"name":"ERROR_HV_INVALID_PARAMETER","features":[1]},{"name":"ERROR_HV_INVALID_PARTITION_ID","features":[1]},{"name":"ERROR_HV_INVALID_PARTITION_STATE","features":[1]},{"name":"ERROR_HV_INVALID_PORT_ID","features":[1]},{"name":"ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[1]},{"name":"ERROR_HV_INVALID_REGISTER_VALUE","features":[1]},{"name":"ERROR_HV_INVALID_SAVE_RESTORE_STATE","features":[1]},{"name":"ERROR_HV_INVALID_SYNIC_STATE","features":[1]},{"name":"ERROR_HV_INVALID_VP_INDEX","features":[1]},{"name":"ERROR_HV_INVALID_VP_STATE","features":[1]},{"name":"ERROR_HV_INVALID_VTL_STATE","features":[1]},{"name":"ERROR_HV_MSR_ACCESS_FAILED","features":[1]},{"name":"ERROR_HV_NESTED_VM_EXIT","features":[1]},{"name":"ERROR_HV_NOT_ACKNOWLEDGED","features":[1]},{"name":"ERROR_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[1]},{"name":"ERROR_HV_NOT_PRESENT","features":[1]},{"name":"ERROR_HV_NO_DATA","features":[1]},{"name":"ERROR_HV_NO_RESOURCES","features":[1]},{"name":"ERROR_HV_NX_NOT_DETECTED","features":[1]},{"name":"ERROR_HV_OBJECT_IN_USE","features":[1]},{"name":"ERROR_HV_OPERATION_DENIED","features":[1]},{"name":"ERROR_HV_OPERATION_FAILED","features":[1]},{"name":"ERROR_HV_PAGE_REQUEST_INVALID","features":[1]},{"name":"ERROR_HV_PARTITION_TOO_DEEP","features":[1]},{"name":"ERROR_HV_PENDING_PAGE_REQUESTS","features":[1]},{"name":"ERROR_HV_PROCESSOR_STARTUP_TIMEOUT","features":[1]},{"name":"ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[1]},{"name":"ERROR_HV_SMX_ENABLED","features":[1]},{"name":"ERROR_HV_UNKNOWN_PROPERTY","features":[1]},{"name":"ERROR_HWNDS_HAVE_DIFF_PARENT","features":[1]},{"name":"ERROR_ICM_NOT_ENABLED","features":[1]},{"name":"ERROR_IDLE_DISCONNECTED","features":[1]},{"name":"ERROR_IEPORT_FULL","features":[1]},{"name":"ERROR_ILLEGAL_CHARACTER","features":[1]},{"name":"ERROR_ILLEGAL_DLL_RELOCATION","features":[1]},{"name":"ERROR_ILLEGAL_ELEMENT_ADDRESS","features":[1]},{"name":"ERROR_ILLEGAL_FLOAT_CONTEXT","features":[1]},{"name":"ERROR_ILL_FORMED_PASSWORD","features":[1]},{"name":"ERROR_IMAGE_AT_DIFFERENT_BASE","features":[1]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH","features":[1]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[1]},{"name":"ERROR_IMAGE_NOT_AT_BASE","features":[1]},{"name":"ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[1]},{"name":"ERROR_IMPLEMENTATION_LIMIT","features":[1]},{"name":"ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE","features":[1]},{"name":"ERROR_INCOMPATIBLE_SERVICE_SID_TYPE","features":[1]},{"name":"ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[1]},{"name":"ERROR_INCORRECT_ACCOUNT_TYPE","features":[1]},{"name":"ERROR_INCORRECT_ADDRESS","features":[1]},{"name":"ERROR_INCORRECT_SIZE","features":[1]},{"name":"ERROR_INC_BACKUP","features":[1]},{"name":"ERROR_INDEX_ABSENT","features":[1]},{"name":"ERROR_INDEX_OUT_OF_BOUNDS","features":[1]},{"name":"ERROR_INDIGENOUS_TYPE","features":[1]},{"name":"ERROR_INDOUBT_TRANSACTIONS_EXIST","features":[1]},{"name":"ERROR_INFLOOP_IN_RELOC_CHAIN","features":[1]},{"name":"ERROR_INF_IN_USE_BY_DEVICES","features":[1]},{"name":"ERROR_INSTALL_ALREADY_RUNNING","features":[1]},{"name":"ERROR_INSTALL_CANCEL","features":[1]},{"name":"ERROR_INSTALL_DEREGISTRATION_FAILURE","features":[1]},{"name":"ERROR_INSTALL_FAILED","features":[1]},{"name":"ERROR_INSTALL_FAILURE","features":[1]},{"name":"ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING","features":[1]},{"name":"ERROR_INSTALL_FULLTRUST_HOSTRUNTIME_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[1]},{"name":"ERROR_INSTALL_INVALID_PACKAGE","features":[1]},{"name":"ERROR_INSTALL_INVALID_RELATED_SET_UPDATE","features":[1]},{"name":"ERROR_INSTALL_LANGUAGE_UNSUPPORTED","features":[1]},{"name":"ERROR_INSTALL_LOG_FAILURE","features":[1]},{"name":"ERROR_INSTALL_NETWORK_FAILURE","features":[1]},{"name":"ERROR_INSTALL_NOTUSED","features":[1]},{"name":"ERROR_INSTALL_OPEN_PACKAGE_FAILED","features":[1]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE","features":[1]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE","features":[1]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[1]},{"name":"ERROR_INSTALL_OUT_OF_DISK_SPACE","features":[1]},{"name":"ERROR_INSTALL_PACKAGE_DOWNGRADE","features":[1]},{"name":"ERROR_INSTALL_PACKAGE_INVALID","features":[1]},{"name":"ERROR_INSTALL_PACKAGE_NOT_FOUND","features":[1]},{"name":"ERROR_INSTALL_PACKAGE_OPEN_FAILED","features":[1]},{"name":"ERROR_INSTALL_PACKAGE_REJECTED","features":[1]},{"name":"ERROR_INSTALL_PACKAGE_VERSION","features":[1]},{"name":"ERROR_INSTALL_PLATFORM_UNSUPPORTED","features":[1]},{"name":"ERROR_INSTALL_POLICY_FAILURE","features":[1]},{"name":"ERROR_INSTALL_PREREQUISITE_FAILED","features":[1]},{"name":"ERROR_INSTALL_REGISTRATION_FAILURE","features":[1]},{"name":"ERROR_INSTALL_REJECTED","features":[1]},{"name":"ERROR_INSTALL_REMOTE_DISALLOWED","features":[1]},{"name":"ERROR_INSTALL_REMOTE_PROHIBITED","features":[1]},{"name":"ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED","features":[1]},{"name":"ERROR_INSTALL_RESOLVE_HOSTRUNTIME_DEPENDENCY_FAILED","features":[1]},{"name":"ERROR_INSTALL_SERVICE_FAILURE","features":[1]},{"name":"ERROR_INSTALL_SERVICE_SAFEBOOT","features":[1]},{"name":"ERROR_INSTALL_SOURCE_ABSENT","features":[1]},{"name":"ERROR_INSTALL_SUSPEND","features":[1]},{"name":"ERROR_INSTALL_TEMP_UNWRITABLE","features":[1]},{"name":"ERROR_INSTALL_TRANSFORM_FAILURE","features":[1]},{"name":"ERROR_INSTALL_TRANSFORM_REJECTED","features":[1]},{"name":"ERROR_INSTALL_UI_FAILURE","features":[1]},{"name":"ERROR_INSTALL_USEREXIT","features":[1]},{"name":"ERROR_INSTALL_VOLUME_CORRUPT","features":[1]},{"name":"ERROR_INSTALL_VOLUME_NOT_EMPTY","features":[1]},{"name":"ERROR_INSTALL_VOLUME_OFFLINE","features":[1]},{"name":"ERROR_INSTALL_WRONG_PROCESSOR_ARCHITECTURE","features":[1]},{"name":"ERROR_INSTRUCTION_MISALIGNMENT","features":[1]},{"name":"ERROR_INSUFFICIENT_BUFFER","features":[1]},{"name":"ERROR_INSUFFICIENT_LOGON_INFO","features":[1]},{"name":"ERROR_INSUFFICIENT_POWER","features":[1]},{"name":"ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[1]},{"name":"ERROR_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[1]},{"name":"ERROR_INTERFACE_ALREADY_EXISTS","features":[1]},{"name":"ERROR_INTERFACE_CONFIGURATION","features":[1]},{"name":"ERROR_INTERFACE_CONNECTED","features":[1]},{"name":"ERROR_INTERFACE_DEVICE_ACTIVE","features":[1]},{"name":"ERROR_INTERFACE_DEVICE_REMOVED","features":[1]},{"name":"ERROR_INTERFACE_DISABLED","features":[1]},{"name":"ERROR_INTERFACE_DISCONNECTED","features":[1]},{"name":"ERROR_INTERFACE_HAS_NO_DEVICES","features":[1]},{"name":"ERROR_INTERFACE_NOT_CONNECTED","features":[1]},{"name":"ERROR_INTERFACE_UNREACHABLE","features":[1]},{"name":"ERROR_INTERMIXED_KERNEL_EA_OPERATION","features":[1]},{"name":"ERROR_INTERNAL_DB_CORRUPTION","features":[1]},{"name":"ERROR_INTERNAL_DB_ERROR","features":[1]},{"name":"ERROR_INTERNAL_ERROR","features":[1]},{"name":"ERROR_INTERRUPT_STILL_CONNECTED","features":[1]},{"name":"ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[1]},{"name":"ERROR_INVALID_ACCEL_HANDLE","features":[1]},{"name":"ERROR_INVALID_ACCESS","features":[1]},{"name":"ERROR_INVALID_ACCOUNT_NAME","features":[1]},{"name":"ERROR_INVALID_ACE_CONDITION","features":[1]},{"name":"ERROR_INVALID_ACL","features":[1]},{"name":"ERROR_INVALID_ADDRESS","features":[1]},{"name":"ERROR_INVALID_ATTRIBUTE_LENGTH","features":[1]},{"name":"ERROR_INVALID_AT_INTERRUPT_TIME","features":[1]},{"name":"ERROR_INVALID_BLOCK","features":[1]},{"name":"ERROR_INVALID_BLOCK_LENGTH","features":[1]},{"name":"ERROR_INVALID_CAP","features":[1]},{"name":"ERROR_INVALID_CATEGORY","features":[1]},{"name":"ERROR_INVALID_CLASS","features":[1]},{"name":"ERROR_INVALID_CLASS_INSTALLER","features":[1]},{"name":"ERROR_INVALID_CLEANER","features":[1]},{"name":"ERROR_INVALID_CLUSTER_IPV6_ADDRESS","features":[1]},{"name":"ERROR_INVALID_CMM","features":[1]},{"name":"ERROR_INVALID_COINSTALLER","features":[1]},{"name":"ERROR_INVALID_COLORINDEX","features":[1]},{"name":"ERROR_INVALID_COLORSPACE","features":[1]},{"name":"ERROR_INVALID_COMBOBOX_MESSAGE","features":[1]},{"name":"ERROR_INVALID_COMMAND_LINE","features":[1]},{"name":"ERROR_INVALID_COMPUTERNAME","features":[1]},{"name":"ERROR_INVALID_CONFIG_VALUE","features":[1]},{"name":"ERROR_INVALID_CRUNTIME_PARAMETER","features":[1]},{"name":"ERROR_INVALID_CURSOR_HANDLE","features":[1]},{"name":"ERROR_INVALID_DATA","features":[1]},{"name":"ERROR_INVALID_DATATYPE","features":[1]},{"name":"ERROR_INVALID_DEVICE_OBJECT_PARAMETER","features":[1]},{"name":"ERROR_INVALID_DEVINST_NAME","features":[1]},{"name":"ERROR_INVALID_DLL","features":[1]},{"name":"ERROR_INVALID_DOMAINNAME","features":[1]},{"name":"ERROR_INVALID_DOMAIN_ROLE","features":[1]},{"name":"ERROR_INVALID_DOMAIN_STATE","features":[1]},{"name":"ERROR_INVALID_DRIVE","features":[1]},{"name":"ERROR_INVALID_DRIVE_OBJECT","features":[1]},{"name":"ERROR_INVALID_DWP_HANDLE","features":[1]},{"name":"ERROR_INVALID_EA_HANDLE","features":[1]},{"name":"ERROR_INVALID_EA_NAME","features":[1]},{"name":"ERROR_INVALID_EDIT_HEIGHT","features":[1]},{"name":"ERROR_INVALID_ENVIRONMENT","features":[1]},{"name":"ERROR_INVALID_EVENTNAME","features":[1]},{"name":"ERROR_INVALID_EVENT_COUNT","features":[1]},{"name":"ERROR_INVALID_EXCEPTION_HANDLER","features":[1]},{"name":"ERROR_INVALID_EXE_SIGNATURE","features":[1]},{"name":"ERROR_INVALID_FIELD","features":[1]},{"name":"ERROR_INVALID_FIELD_IN_PARAMETER_LIST","features":[1]},{"name":"ERROR_INVALID_FILTER_DRIVER","features":[1]},{"name":"ERROR_INVALID_FILTER_PROC","features":[1]},{"name":"ERROR_INVALID_FLAGS","features":[1]},{"name":"ERROR_INVALID_FLAG_NUMBER","features":[1]},{"name":"ERROR_INVALID_FORM_NAME","features":[1]},{"name":"ERROR_INVALID_FORM_SIZE","features":[1]},{"name":"ERROR_INVALID_FUNCTION","features":[1]},{"name":"ERROR_INVALID_GROUPNAME","features":[1]},{"name":"ERROR_INVALID_GROUP_ATTRIBUTES","features":[1]},{"name":"ERROR_INVALID_GW_COMMAND","features":[1]},{"name":"ERROR_INVALID_HANDLE","features":[1]},{"name":"ERROR_INVALID_HANDLE_STATE","features":[1]},{"name":"ERROR_INVALID_HOOK_FILTER","features":[1]},{"name":"ERROR_INVALID_HOOK_HANDLE","features":[1]},{"name":"ERROR_INVALID_HWPROFILE","features":[1]},{"name":"ERROR_INVALID_HW_PROFILE","features":[1]},{"name":"ERROR_INVALID_ICON_HANDLE","features":[1]},{"name":"ERROR_INVALID_ID_AUTHORITY","features":[1]},{"name":"ERROR_INVALID_IMAGE_HASH","features":[1]},{"name":"ERROR_INVALID_IMPORT_OF_NON_DLL","features":[1]},{"name":"ERROR_INVALID_INDEX","features":[1]},{"name":"ERROR_INVALID_INF_LOGCONFIG","features":[1]},{"name":"ERROR_INVALID_KERNEL_INFO_VERSION","features":[1]},{"name":"ERROR_INVALID_KEYBOARD_HANDLE","features":[1]},{"name":"ERROR_INVALID_LABEL","features":[1]},{"name":"ERROR_INVALID_LB_MESSAGE","features":[1]},{"name":"ERROR_INVALID_LDT_DESCRIPTOR","features":[1]},{"name":"ERROR_INVALID_LDT_OFFSET","features":[1]},{"name":"ERROR_INVALID_LDT_SIZE","features":[1]},{"name":"ERROR_INVALID_LEVEL","features":[1]},{"name":"ERROR_INVALID_LIBRARY","features":[1]},{"name":"ERROR_INVALID_LIST_FORMAT","features":[1]},{"name":"ERROR_INVALID_LOCK_RANGE","features":[1]},{"name":"ERROR_INVALID_LOGON_HOURS","features":[1]},{"name":"ERROR_INVALID_LOGON_TYPE","features":[1]},{"name":"ERROR_INVALID_MACHINENAME","features":[1]},{"name":"ERROR_INVALID_MEDIA","features":[1]},{"name":"ERROR_INVALID_MEDIA_POOL","features":[1]},{"name":"ERROR_INVALID_MEMBER","features":[1]},{"name":"ERROR_INVALID_MENU_HANDLE","features":[1]},{"name":"ERROR_INVALID_MESSAGE","features":[1]},{"name":"ERROR_INVALID_MESSAGEDEST","features":[1]},{"name":"ERROR_INVALID_MESSAGENAME","features":[1]},{"name":"ERROR_INVALID_MINALLOCSIZE","features":[1]},{"name":"ERROR_INVALID_MODULETYPE","features":[1]},{"name":"ERROR_INVALID_MONITOR_HANDLE","features":[1]},{"name":"ERROR_INVALID_MSGBOX_STYLE","features":[1]},{"name":"ERROR_INVALID_NAME","features":[1]},{"name":"ERROR_INVALID_NETNAME","features":[1]},{"name":"ERROR_INVALID_OPERATION","features":[1]},{"name":"ERROR_INVALID_OPERATION_ON_QUORUM","features":[1]},{"name":"ERROR_INVALID_OPLOCK_PROTOCOL","features":[1]},{"name":"ERROR_INVALID_ORDINAL","features":[1]},{"name":"ERROR_INVALID_OWNER","features":[1]},{"name":"ERROR_INVALID_PACKAGE_SID_LENGTH","features":[1]},{"name":"ERROR_INVALID_PACKET","features":[1]},{"name":"ERROR_INVALID_PACKET_LENGTH_OR_ID","features":[1]},{"name":"ERROR_INVALID_PARAMETER","features":[1]},{"name":"ERROR_INVALID_PASSWORD","features":[1]},{"name":"ERROR_INVALID_PASSWORDNAME","features":[1]},{"name":"ERROR_INVALID_PATCH_XML","features":[1]},{"name":"ERROR_INVALID_PEP_INFO_VERSION","features":[1]},{"name":"ERROR_INVALID_PIXEL_FORMAT","features":[1]},{"name":"ERROR_INVALID_PLUGPLAY_DEVICE_PATH","features":[1]},{"name":"ERROR_INVALID_PORT_ATTRIBUTES","features":[1]},{"name":"ERROR_INVALID_PRIMARY_GROUP","features":[1]},{"name":"ERROR_INVALID_PRINTER_COMMAND","features":[1]},{"name":"ERROR_INVALID_PRINTER_DRIVER_MANIFEST","features":[1]},{"name":"ERROR_INVALID_PRINTER_NAME","features":[1]},{"name":"ERROR_INVALID_PRINTER_STATE","features":[1]},{"name":"ERROR_INVALID_PRINT_MONITOR","features":[1]},{"name":"ERROR_INVALID_PRIORITY","features":[1]},{"name":"ERROR_INVALID_PROFILE","features":[1]},{"name":"ERROR_INVALID_PROPPAGE_PROVIDER","features":[1]},{"name":"ERROR_INVALID_QUOTA_LOWER","features":[1]},{"name":"ERROR_INVALID_RADIUS_RESPONSE","features":[1]},{"name":"ERROR_INVALID_REFERENCE_STRING","features":[1]},{"name":"ERROR_INVALID_REG_PROPERTY","features":[1]},{"name":"ERROR_INVALID_REPARSE_DATA","features":[1]},{"name":"ERROR_INVALID_RUNLEVEL_SETTING","features":[1]},{"name":"ERROR_INVALID_SCROLLBAR_RANGE","features":[1]},{"name":"ERROR_INVALID_SECURITY_DESCR","features":[1]},{"name":"ERROR_INVALID_SEGDPL","features":[1]},{"name":"ERROR_INVALID_SEGMENT_NUMBER","features":[1]},{"name":"ERROR_INVALID_SEPARATOR_FILE","features":[1]},{"name":"ERROR_INVALID_SERVER_STATE","features":[1]},{"name":"ERROR_INVALID_SERVICENAME","features":[1]},{"name":"ERROR_INVALID_SERVICE_ACCOUNT","features":[1]},{"name":"ERROR_INVALID_SERVICE_CONTROL","features":[1]},{"name":"ERROR_INVALID_SERVICE_LOCK","features":[1]},{"name":"ERROR_INVALID_SHARENAME","features":[1]},{"name":"ERROR_INVALID_SHOWWIN_COMMAND","features":[1]},{"name":"ERROR_INVALID_SID","features":[1]},{"name":"ERROR_INVALID_SIGNAL_NUMBER","features":[1]},{"name":"ERROR_INVALID_SIGNATURE","features":[1]},{"name":"ERROR_INVALID_SIGNATURE_LENGTH","features":[1]},{"name":"ERROR_INVALID_SPI_VALUE","features":[1]},{"name":"ERROR_INVALID_STACKSEG","features":[1]},{"name":"ERROR_INVALID_STAGED_SIGNATURE","features":[1]},{"name":"ERROR_INVALID_STARTING_CODESEG","features":[1]},{"name":"ERROR_INVALID_STATE","features":[1]},{"name":"ERROR_INVALID_SUB_AUTHORITY","features":[1]},{"name":"ERROR_INVALID_TABLE","features":[1]},{"name":"ERROR_INVALID_TARGET","features":[1]},{"name":"ERROR_INVALID_TARGET_HANDLE","features":[1]},{"name":"ERROR_INVALID_TASK_INDEX","features":[1]},{"name":"ERROR_INVALID_TASK_NAME","features":[1]},{"name":"ERROR_INVALID_THREAD_ID","features":[1]},{"name":"ERROR_INVALID_TIME","features":[1]},{"name":"ERROR_INVALID_TOKEN","features":[1]},{"name":"ERROR_INVALID_TRANSACTION","features":[1]},{"name":"ERROR_INVALID_TRANSFORM","features":[1]},{"name":"ERROR_INVALID_UNWIND_TARGET","features":[1]},{"name":"ERROR_INVALID_USER_BUFFER","features":[1]},{"name":"ERROR_INVALID_USER_PRINCIPAL_NAME","features":[1]},{"name":"ERROR_INVALID_VARIANT","features":[1]},{"name":"ERROR_INVALID_VERIFY_SWITCH","features":[1]},{"name":"ERROR_INVALID_WINDOW_HANDLE","features":[1]},{"name":"ERROR_INVALID_WINDOW_STYLE","features":[1]},{"name":"ERROR_INVALID_WORKSTATION","features":[1]},{"name":"ERROR_IN_WOW64","features":[1]},{"name":"ERROR_IOPL_NOT_ENABLED","features":[1]},{"name":"ERROR_IO_DEVICE","features":[1]},{"name":"ERROR_IO_INCOMPLETE","features":[1]},{"name":"ERROR_IO_PENDING","features":[1]},{"name":"ERROR_IO_PREEMPTED","features":[1]},{"name":"ERROR_IO_PRIVILEGE_FAILED","features":[1]},{"name":"ERROR_IO_REISSUE_AS_CACHED","features":[1]},{"name":"ERROR_IPSEC_AUTH_FIREWALL_DROP","features":[1]},{"name":"ERROR_IPSEC_BAD_SPI","features":[1]},{"name":"ERROR_IPSEC_CLEAR_TEXT_DROP","features":[1]},{"name":"ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_DOSP_BLOCK","features":[1]},{"name":"ERROR_IPSEC_DOSP_INVALID_PACKET","features":[1]},{"name":"ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[1]},{"name":"ERROR_IPSEC_DOSP_MAX_ENTRIES","features":[1]},{"name":"ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[1]},{"name":"ERROR_IPSEC_DOSP_NOT_INSTALLED","features":[1]},{"name":"ERROR_IPSEC_DOSP_RECEIVED_MULTICAST","features":[1]},{"name":"ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[1]},{"name":"ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED","features":[1]},{"name":"ERROR_IPSEC_IKE_ATTRIB_FAIL","features":[1]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE","features":[1]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY","features":[1]},{"name":"ERROR_IPSEC_IKE_AUTH_FAIL","features":[1]},{"name":"ERROR_IPSEC_IKE_BENIGN_REINIT","features":[1]},{"name":"ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH","features":[1]},{"name":"ERROR_IPSEC_IKE_CGA_AUTH_FAILED","features":[1]},{"name":"ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS","features":[1]},{"name":"ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED","features":[1]},{"name":"ERROR_IPSEC_IKE_CRL_FAILED","features":[1]},{"name":"ERROR_IPSEC_IKE_DECRYPT","features":[1]},{"name":"ERROR_IPSEC_IKE_DH_FAIL","features":[1]},{"name":"ERROR_IPSEC_IKE_DH_FAILURE","features":[1]},{"name":"ERROR_IPSEC_IKE_DOS_COOKIE_SENT","features":[1]},{"name":"ERROR_IPSEC_IKE_DROP_NO_RESPONSE","features":[1]},{"name":"ERROR_IPSEC_IKE_ENCRYPT","features":[1]},{"name":"ERROR_IPSEC_IKE_ERROR","features":[1]},{"name":"ERROR_IPSEC_IKE_FAILQUERYSSP","features":[1]},{"name":"ERROR_IPSEC_IKE_FAILSSPINIT","features":[1]},{"name":"ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR","features":[1]},{"name":"ERROR_IPSEC_IKE_GETSPIFAIL","features":[1]},{"name":"ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_ALG","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_TYPE","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_COOKIE","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_FILTER","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_GROUP","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_ALG","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_SIZE","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_HEADER","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_KEY_USAGE","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_MM_FOR_QM","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_PAYLOAD","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_POLICY","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_SIG","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_SIGNATURE","features":[1]},{"name":"ERROR_IPSEC_IKE_INVALID_SITUATION","features":[1]},{"name":"ERROR_IPSEC_IKE_KERBEROS_ERROR","features":[1]},{"name":"ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL","features":[1]},{"name":"ERROR_IPSEC_IKE_LOAD_FAILED","features":[1]},{"name":"ERROR_IPSEC_IKE_LOAD_SOFT_SA","features":[1]},{"name":"ERROR_IPSEC_IKE_MM_ACQUIRE_DROP","features":[1]},{"name":"ERROR_IPSEC_IKE_MM_DELAY_DROP","features":[1]},{"name":"ERROR_IPSEC_IKE_MM_EXPIRED","features":[1]},{"name":"ERROR_IPSEC_IKE_MM_LIMIT","features":[1]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_DISABLED","features":[1]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_PENDING","features":[1]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_BEGIN","features":[1]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_END","features":[1]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END","features":[1]},{"name":"ERROR_IPSEC_IKE_NOTCBPRIV","features":[1]},{"name":"ERROR_IPSEC_IKE_NO_CERT","features":[1]},{"name":"ERROR_IPSEC_IKE_NO_MM_POLICY","features":[1]},{"name":"ERROR_IPSEC_IKE_NO_PEER_CERT","features":[1]},{"name":"ERROR_IPSEC_IKE_NO_POLICY","features":[1]},{"name":"ERROR_IPSEC_IKE_NO_PRIVATE_KEY","features":[1]},{"name":"ERROR_IPSEC_IKE_NO_PUBLIC_KEY","features":[1]},{"name":"ERROR_IPSEC_IKE_OUT_OF_MEMORY","features":[1]},{"name":"ERROR_IPSEC_IKE_PEER_CRL_FAILED","features":[1]},{"name":"ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE","features":[1]},{"name":"ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID","features":[1]},{"name":"ERROR_IPSEC_IKE_POLICY_CHANGE","features":[1]},{"name":"ERROR_IPSEC_IKE_POLICY_MATCH","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_DELETE","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_HASH","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_ID","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_KE","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NATOA","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NONCE","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_PROP","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SA","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SIG","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_TRANS","features":[1]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR","features":[1]},{"name":"ERROR_IPSEC_IKE_QM_ACQUIRE_DROP","features":[1]},{"name":"ERROR_IPSEC_IKE_QM_DELAY_DROP","features":[1]},{"name":"ERROR_IPSEC_IKE_QM_EXPIRED","features":[1]},{"name":"ERROR_IPSEC_IKE_QM_LIMIT","features":[1]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_MM","features":[1]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM","features":[1]},{"name":"ERROR_IPSEC_IKE_RATELIMIT_DROP","features":[1]},{"name":"ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING","features":[1]},{"name":"ERROR_IPSEC_IKE_RPC_DELETE","features":[1]},{"name":"ERROR_IPSEC_IKE_SA_DELETED","features":[1]},{"name":"ERROR_IPSEC_IKE_SA_REAPED","features":[1]},{"name":"ERROR_IPSEC_IKE_SECLOADFAIL","features":[1]},{"name":"ERROR_IPSEC_IKE_SHUTTING_DOWN","features":[1]},{"name":"ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY","features":[1]},{"name":"ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN","features":[1]},{"name":"ERROR_IPSEC_IKE_SRVACQFAIL","features":[1]},{"name":"ERROR_IPSEC_IKE_SRVQUERYCRED","features":[1]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE","features":[1]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE","features":[1]},{"name":"ERROR_IPSEC_IKE_TIMED_OUT","features":[1]},{"name":"ERROR_IPSEC_IKE_TOO_MANY_FILTERS","features":[1]},{"name":"ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID","features":[1]},{"name":"ERROR_IPSEC_IKE_UNKNOWN_DOI","features":[1]},{"name":"ERROR_IPSEC_IKE_UNSUPPORTED_ID","features":[1]},{"name":"ERROR_IPSEC_INTEGRITY_CHECK_FAILED","features":[1]},{"name":"ERROR_IPSEC_INVALID_PACKET","features":[1]},{"name":"ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING","features":[1]},{"name":"ERROR_IPSEC_MM_AUTH_EXISTS","features":[1]},{"name":"ERROR_IPSEC_MM_AUTH_IN_USE","features":[1]},{"name":"ERROR_IPSEC_MM_AUTH_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_MM_AUTH_PENDING_DELETION","features":[1]},{"name":"ERROR_IPSEC_MM_FILTER_EXISTS","features":[1]},{"name":"ERROR_IPSEC_MM_FILTER_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_MM_FILTER_PENDING_DELETION","features":[1]},{"name":"ERROR_IPSEC_MM_POLICY_EXISTS","features":[1]},{"name":"ERROR_IPSEC_MM_POLICY_IN_USE","features":[1]},{"name":"ERROR_IPSEC_MM_POLICY_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_MM_POLICY_PENDING_DELETION","features":[1]},{"name":"ERROR_IPSEC_QM_POLICY_EXISTS","features":[1]},{"name":"ERROR_IPSEC_QM_POLICY_IN_USE","features":[1]},{"name":"ERROR_IPSEC_QM_POLICY_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_QM_POLICY_PENDING_DELETION","features":[1]},{"name":"ERROR_IPSEC_REPLAY_CHECK_FAILED","features":[1]},{"name":"ERROR_IPSEC_SA_LIFETIME_EXPIRED","features":[1]},{"name":"ERROR_IPSEC_THROTTLE_DROP","features":[1]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_EXISTS","features":[1]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION","features":[1]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_EXISTS","features":[1]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND","features":[1]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION","features":[1]},{"name":"ERROR_IPSEC_WRONG_SA","features":[1]},{"name":"ERROR_IP_ADDRESS_CONFLICT1","features":[1]},{"name":"ERROR_IP_ADDRESS_CONFLICT2","features":[1]},{"name":"ERROR_IRQ_BUSY","features":[1]},{"name":"ERROR_IS_JOINED","features":[1]},{"name":"ERROR_IS_JOIN_PATH","features":[1]},{"name":"ERROR_IS_JOIN_TARGET","features":[1]},{"name":"ERROR_IS_SUBSTED","features":[1]},{"name":"ERROR_IS_SUBST_PATH","features":[1]},{"name":"ERROR_IS_SUBST_TARGET","features":[1]},{"name":"ERROR_ITERATED_DATA_EXCEEDS_64k","features":[1]},{"name":"ERROR_JOB_NO_CONTAINER","features":[1]},{"name":"ERROR_JOIN_TO_JOIN","features":[1]},{"name":"ERROR_JOIN_TO_SUBST","features":[1]},{"name":"ERROR_JOURNAL_DELETE_IN_PROGRESS","features":[1]},{"name":"ERROR_JOURNAL_ENTRY_DELETED","features":[1]},{"name":"ERROR_JOURNAL_HOOK_SET","features":[1]},{"name":"ERROR_JOURNAL_NOT_ACTIVE","features":[1]},{"name":"ERROR_KERNEL_APC","features":[1]},{"name":"ERROR_KEY_DELETED","features":[1]},{"name":"ERROR_KEY_DOES_NOT_EXIST","features":[1]},{"name":"ERROR_KEY_HAS_CHILDREN","features":[1]},{"name":"ERROR_KM_DRIVER_BLOCKED","features":[1]},{"name":"ERROR_LABEL_TOO_LONG","features":[1]},{"name":"ERROR_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[1]},{"name":"ERROR_LAPS_LEGACY_SCHEMA_MISSING","features":[1]},{"name":"ERROR_LAPS_SCHEMA_MISSING","features":[1]},{"name":"ERROR_LAST_ADMIN","features":[1]},{"name":"ERROR_LB_WITHOUT_TABSTOPS","features":[1]},{"name":"ERROR_LIBRARY_FULL","features":[1]},{"name":"ERROR_LIBRARY_OFFLINE","features":[1]},{"name":"ERROR_LICENSE_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_LINE_NOT_FOUND","features":[1]},{"name":"ERROR_LINUX_SUBSYSTEM_NOT_PRESENT","features":[1]},{"name":"ERROR_LINUX_SUBSYSTEM_UPDATE_REQUIRED","features":[1]},{"name":"ERROR_LISTBOX_ID_NOT_FOUND","features":[1]},{"name":"ERROR_LM_CROSS_ENCRYPTION_REQUIRED","features":[1]},{"name":"ERROR_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[1]},{"name":"ERROR_LOCAL_USER_SESSION_KEY","features":[1]},{"name":"ERROR_LOCKED","features":[1]},{"name":"ERROR_LOCK_FAILED","features":[1]},{"name":"ERROR_LOCK_VIOLATION","features":[1]},{"name":"ERROR_LOGIN_TIME_RESTRICTION","features":[1]},{"name":"ERROR_LOGIN_WKSTA_RESTRICTION","features":[1]},{"name":"ERROR_LOGON_FAILURE","features":[1]},{"name":"ERROR_LOGON_NOT_GRANTED","features":[1]},{"name":"ERROR_LOGON_SERVER_CONFLICT","features":[1]},{"name":"ERROR_LOGON_SESSION_COLLISION","features":[1]},{"name":"ERROR_LOGON_SESSION_EXISTS","features":[1]},{"name":"ERROR_LOGON_TYPE_NOT_GRANTED","features":[1]},{"name":"ERROR_LOG_APPENDED_FLUSH_FAILED","features":[1]},{"name":"ERROR_LOG_ARCHIVE_IN_PROGRESS","features":[1]},{"name":"ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[1]},{"name":"ERROR_LOG_BLOCKS_EXHAUSTED","features":[1]},{"name":"ERROR_LOG_BLOCK_INCOMPLETE","features":[1]},{"name":"ERROR_LOG_BLOCK_INVALID","features":[1]},{"name":"ERROR_LOG_BLOCK_VERSION","features":[1]},{"name":"ERROR_LOG_CANT_DELETE","features":[1]},{"name":"ERROR_LOG_CLIENT_ALREADY_REGISTERED","features":[1]},{"name":"ERROR_LOG_CLIENT_NOT_REGISTERED","features":[1]},{"name":"ERROR_LOG_CONTAINER_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_LOG_CONTAINER_OPEN_FAILED","features":[1]},{"name":"ERROR_LOG_CONTAINER_READ_FAILED","features":[1]},{"name":"ERROR_LOG_CONTAINER_STATE_INVALID","features":[1]},{"name":"ERROR_LOG_CONTAINER_WRITE_FAILED","features":[1]},{"name":"ERROR_LOG_CORRUPTION_DETECTED","features":[1]},{"name":"ERROR_LOG_DEDICATED","features":[1]},{"name":"ERROR_LOG_EPHEMERAL","features":[1]},{"name":"ERROR_LOG_FILE_FULL","features":[1]},{"name":"ERROR_LOG_FULL","features":[1]},{"name":"ERROR_LOG_FULL_HANDLER_IN_PROGRESS","features":[1]},{"name":"ERROR_LOG_GROWTH_FAILED","features":[1]},{"name":"ERROR_LOG_HARD_ERROR","features":[1]},{"name":"ERROR_LOG_INCONSISTENT_SECURITY","features":[1]},{"name":"ERROR_LOG_INVALID_RANGE","features":[1]},{"name":"ERROR_LOG_METADATA_CORRUPT","features":[1]},{"name":"ERROR_LOG_METADATA_FLUSH_FAILED","features":[1]},{"name":"ERROR_LOG_METADATA_INCONSISTENT","features":[1]},{"name":"ERROR_LOG_METADATA_INVALID","features":[1]},{"name":"ERROR_LOG_MULTIPLEXED","features":[1]},{"name":"ERROR_LOG_NOT_ENOUGH_CONTAINERS","features":[1]},{"name":"ERROR_LOG_NO_RESTART","features":[1]},{"name":"ERROR_LOG_PINNED","features":[1]},{"name":"ERROR_LOG_PINNED_ARCHIVE_TAIL","features":[1]},{"name":"ERROR_LOG_PINNED_RESERVATION","features":[1]},{"name":"ERROR_LOG_POLICY_ALREADY_INSTALLED","features":[1]},{"name":"ERROR_LOG_POLICY_CONFLICT","features":[1]},{"name":"ERROR_LOG_POLICY_INVALID","features":[1]},{"name":"ERROR_LOG_POLICY_NOT_INSTALLED","features":[1]},{"name":"ERROR_LOG_READ_CONTEXT_INVALID","features":[1]},{"name":"ERROR_LOG_READ_MODE_INVALID","features":[1]},{"name":"ERROR_LOG_RECORDS_RESERVED_INVALID","features":[1]},{"name":"ERROR_LOG_RECORD_NONEXISTENT","features":[1]},{"name":"ERROR_LOG_RESERVATION_INVALID","features":[1]},{"name":"ERROR_LOG_RESIZE_INVALID_SIZE","features":[1]},{"name":"ERROR_LOG_RESTART_INVALID","features":[1]},{"name":"ERROR_LOG_SECTOR_INVALID","features":[1]},{"name":"ERROR_LOG_SECTOR_PARITY_INVALID","features":[1]},{"name":"ERROR_LOG_SECTOR_REMAPPED","features":[1]},{"name":"ERROR_LOG_SPACE_RESERVED_INVALID","features":[1]},{"name":"ERROR_LOG_START_OF_LOG","features":[1]},{"name":"ERROR_LOG_STATE_INVALID","features":[1]},{"name":"ERROR_LOG_TAIL_INVALID","features":[1]},{"name":"ERROR_LONGJUMP","features":[1]},{"name":"ERROR_LOST_MODE_LOGON_RESTRICTION","features":[1]},{"name":"ERROR_LOST_WRITEBEHIND_DATA","features":[1]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[1]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[1]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[1]},{"name":"ERROR_LUIDS_EXHAUSTED","features":[1]},{"name":"ERROR_MACHINE_LOCKED","features":[1]},{"name":"ERROR_MACHINE_SCOPE_NOT_ALLOWED","features":[1]},{"name":"ERROR_MACHINE_UNAVAILABLE","features":[1]},{"name":"ERROR_MAGAZINE_NOT_PRESENT","features":[1]},{"name":"ERROR_MALFORMED_SUBSTITUTION_STRING","features":[1]},{"name":"ERROR_MAPPED_ALIGNMENT","features":[1]},{"name":"ERROR_MARKED_TO_DISALLOW_WRITES","features":[1]},{"name":"ERROR_MARSHALL_OVERFLOW","features":[1]},{"name":"ERROR_MAX_CLIENT_INTERFACE_LIMIT","features":[1]},{"name":"ERROR_MAX_LAN_INTERFACE_LIMIT","features":[1]},{"name":"ERROR_MAX_SESSIONS_REACHED","features":[1]},{"name":"ERROR_MAX_THRDS_REACHED","features":[1]},{"name":"ERROR_MAX_WAN_INTERFACE_LIMIT","features":[1]},{"name":"ERROR_MCA_EXCEPTION","features":[1]},{"name":"ERROR_MCA_INTERNAL_ERROR","features":[1]},{"name":"ERROR_MCA_INVALID_CAPABILITIES_STRING","features":[1]},{"name":"ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[1]},{"name":"ERROR_MCA_INVALID_VCP_VERSION","features":[1]},{"name":"ERROR_MCA_MCCS_VERSION_MISMATCH","features":[1]},{"name":"ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[1]},{"name":"ERROR_MCA_OCCURED","features":[1]},{"name":"ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[1]},{"name":"ERROR_MCA_UNSUPPORTED_MCCS_VERSION","features":[1]},{"name":"ERROR_MEDIA_CHANGED","features":[1]},{"name":"ERROR_MEDIA_CHECK","features":[1]},{"name":"ERROR_MEDIA_INCOMPATIBLE","features":[1]},{"name":"ERROR_MEDIA_NOT_AVAILABLE","features":[1]},{"name":"ERROR_MEDIA_OFFLINE","features":[1]},{"name":"ERROR_MEDIA_UNAVAILABLE","features":[1]},{"name":"ERROR_MEDIUM_NOT_ACCESSIBLE","features":[1]},{"name":"ERROR_MEMBERS_PRIMARY_GROUP","features":[1]},{"name":"ERROR_MEMBER_IN_ALIAS","features":[1]},{"name":"ERROR_MEMBER_IN_GROUP","features":[1]},{"name":"ERROR_MEMBER_NOT_IN_ALIAS","features":[1]},{"name":"ERROR_MEMBER_NOT_IN_GROUP","features":[1]},{"name":"ERROR_MEMORY_HARDWARE","features":[1]},{"name":"ERROR_MENU_ITEM_NOT_FOUND","features":[1]},{"name":"ERROR_MESSAGE_EXCEEDS_MAX_SIZE","features":[1]},{"name":"ERROR_MESSAGE_SYNC_ONLY","features":[1]},{"name":"ERROR_METAFILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_META_EXPANSION_TOO_LONG","features":[1]},{"name":"ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[1]},{"name":"ERROR_MISSING_SYSTEMFILE","features":[1]},{"name":"ERROR_MOD_NOT_FOUND","features":[1]},{"name":"ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[1]},{"name":"ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[1]},{"name":"ERROR_MONITOR_INVALID_MANUFACTURE_DATE","features":[1]},{"name":"ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[1]},{"name":"ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[1]},{"name":"ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[1]},{"name":"ERROR_MONITOR_NO_DESCRIPTOR","features":[1]},{"name":"ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[1]},{"name":"ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[1]},{"name":"ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[1]},{"name":"ERROR_MORE_DATA","features":[1]},{"name":"ERROR_MORE_WRITES","features":[1]},{"name":"ERROR_MOUNT_POINT_NOT_RESOLVED","features":[1]},{"name":"ERROR_MP_PROCESSOR_MISMATCH","features":[1]},{"name":"ERROR_MRM_AUTOMERGE_ENABLED","features":[1]},{"name":"ERROR_MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE","features":[1]},{"name":"ERROR_MRM_DUPLICATE_ENTRY","features":[1]},{"name":"ERROR_MRM_DUPLICATE_MAP_NAME","features":[1]},{"name":"ERROR_MRM_FILEPATH_TOO_LONG","features":[1]},{"name":"ERROR_MRM_GENERATION_COUNT_MISMATCH","features":[1]},{"name":"ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE","features":[1]},{"name":"ERROR_MRM_INVALID_FILE_TYPE","features":[1]},{"name":"ERROR_MRM_INVALID_PRICONFIG","features":[1]},{"name":"ERROR_MRM_INVALID_PRI_FILE","features":[1]},{"name":"ERROR_MRM_INVALID_QUALIFIER_OPERATOR","features":[1]},{"name":"ERROR_MRM_INVALID_QUALIFIER_VALUE","features":[1]},{"name":"ERROR_MRM_INVALID_RESOURCE_IDENTIFIER","features":[1]},{"name":"ERROR_MRM_MAP_NOT_FOUND","features":[1]},{"name":"ERROR_MRM_MISSING_DEFAULT_LANGUAGE","features":[1]},{"name":"ERROR_MRM_NAMED_RESOURCE_NOT_FOUND","features":[1]},{"name":"ERROR_MRM_NO_CANDIDATE","features":[1]},{"name":"ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD","features":[1]},{"name":"ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE","features":[1]},{"name":"ERROR_MRM_PACKAGE_NOT_FOUND","features":[1]},{"name":"ERROR_MRM_RESOURCE_TYPE_MISMATCH","features":[1]},{"name":"ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE","features":[1]},{"name":"ERROR_MRM_SCOPE_ITEM_CONFLICT","features":[1]},{"name":"ERROR_MRM_TOO_MANY_RESOURCES","features":[1]},{"name":"ERROR_MRM_UNKNOWN_QUALIFIER","features":[1]},{"name":"ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE","features":[1]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE","features":[1]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE","features":[1]},{"name":"ERROR_MRM_UNSUPPORTED_PROFILE_TYPE","features":[1]},{"name":"ERROR_MR_MID_NOT_FOUND","features":[1]},{"name":"ERROR_MUI_FILE_NOT_FOUND","features":[1]},{"name":"ERROR_MUI_FILE_NOT_LOADED","features":[1]},{"name":"ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME","features":[1]},{"name":"ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED","features":[1]},{"name":"ERROR_MUI_INVALID_FILE","features":[1]},{"name":"ERROR_MUI_INVALID_LOCALE_NAME","features":[1]},{"name":"ERROR_MUI_INVALID_RC_CONFIG","features":[1]},{"name":"ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[1]},{"name":"ERROR_MULTIPLE_FAULT_VIOLATION","features":[1]},{"name":"ERROR_MUTANT_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_MUTUAL_AUTH_FAILED","features":[1]},{"name":"ERROR_NDIS_ADAPTER_NOT_FOUND","features":[1]},{"name":"ERROR_NDIS_ADAPTER_NOT_READY","features":[1]},{"name":"ERROR_NDIS_ADAPTER_REMOVED","features":[1]},{"name":"ERROR_NDIS_ALREADY_MAPPED","features":[1]},{"name":"ERROR_NDIS_BAD_CHARACTERISTICS","features":[1]},{"name":"ERROR_NDIS_BAD_VERSION","features":[1]},{"name":"ERROR_NDIS_BUFFER_TOO_SHORT","features":[1]},{"name":"ERROR_NDIS_DEVICE_FAILED","features":[1]},{"name":"ERROR_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[1]},{"name":"ERROR_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[1]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[1]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[1]},{"name":"ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[1]},{"name":"ERROR_NDIS_DOT11_MEDIA_IN_USE","features":[1]},{"name":"ERROR_NDIS_DOT11_POWER_STATE_INVALID","features":[1]},{"name":"ERROR_NDIS_ERROR_READING_FILE","features":[1]},{"name":"ERROR_NDIS_FILE_NOT_FOUND","features":[1]},{"name":"ERROR_NDIS_GROUP_ADDRESS_IN_USE","features":[1]},{"name":"ERROR_NDIS_INDICATION_REQUIRED","features":[1]},{"name":"ERROR_NDIS_INTERFACE_CLOSING","features":[1]},{"name":"ERROR_NDIS_INTERFACE_NOT_FOUND","features":[1]},{"name":"ERROR_NDIS_INVALID_ADDRESS","features":[1]},{"name":"ERROR_NDIS_INVALID_DATA","features":[1]},{"name":"ERROR_NDIS_INVALID_DEVICE_REQUEST","features":[1]},{"name":"ERROR_NDIS_INVALID_LENGTH","features":[1]},{"name":"ERROR_NDIS_INVALID_OID","features":[1]},{"name":"ERROR_NDIS_INVALID_PACKET","features":[1]},{"name":"ERROR_NDIS_INVALID_PORT","features":[1]},{"name":"ERROR_NDIS_INVALID_PORT_STATE","features":[1]},{"name":"ERROR_NDIS_LOW_POWER_STATE","features":[1]},{"name":"ERROR_NDIS_MEDIA_DISCONNECTED","features":[1]},{"name":"ERROR_NDIS_MULTICAST_EXISTS","features":[1]},{"name":"ERROR_NDIS_MULTICAST_FULL","features":[1]},{"name":"ERROR_NDIS_MULTICAST_NOT_FOUND","features":[1]},{"name":"ERROR_NDIS_NOT_SUPPORTED","features":[1]},{"name":"ERROR_NDIS_NO_QUEUES","features":[1]},{"name":"ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[1]},{"name":"ERROR_NDIS_OFFLOAD_PATH_REJECTED","features":[1]},{"name":"ERROR_NDIS_OFFLOAD_POLICY","features":[1]},{"name":"ERROR_NDIS_OPEN_FAILED","features":[1]},{"name":"ERROR_NDIS_PAUSED","features":[1]},{"name":"ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[1]},{"name":"ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[1]},{"name":"ERROR_NDIS_REINIT_REQUIRED","features":[1]},{"name":"ERROR_NDIS_REQUEST_ABORTED","features":[1]},{"name":"ERROR_NDIS_RESET_IN_PROGRESS","features":[1]},{"name":"ERROR_NDIS_RESOURCE_CONFLICT","features":[1]},{"name":"ERROR_NDIS_UNSUPPORTED_MEDIA","features":[1]},{"name":"ERROR_NDIS_UNSUPPORTED_REVISION","features":[1]},{"name":"ERROR_NEEDS_REGISTRATION","features":[1]},{"name":"ERROR_NEEDS_REMEDIATION","features":[1]},{"name":"ERROR_NEGATIVE_SEEK","features":[1]},{"name":"ERROR_NESTING_NOT_ALLOWED","features":[1]},{"name":"ERROR_NETLOGON_NOT_STARTED","features":[1]},{"name":"ERROR_NETNAME_DELETED","features":[1]},{"name":"ERROR_NETWORK_ACCESS_DENIED","features":[1]},{"name":"ERROR_NETWORK_ACCESS_DENIED_EDP","features":[1]},{"name":"ERROR_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[1]},{"name":"ERROR_NETWORK_BUSY","features":[1]},{"name":"ERROR_NETWORK_NOT_AVAILABLE","features":[1]},{"name":"ERROR_NETWORK_UNREACHABLE","features":[1]},{"name":"ERROR_NET_OPEN_FAILED","features":[1]},{"name":"ERROR_NET_WRITE_FAULT","features":[1]},{"name":"ERROR_NOACCESS","features":[1]},{"name":"ERROR_NODE_CANNOT_BE_CLUSTERED","features":[1]},{"name":"ERROR_NODE_CANT_HOST_RESOURCE","features":[1]},{"name":"ERROR_NODE_NOT_ACTIVE_CLUSTER_MEMBER","features":[1]},{"name":"ERROR_NODE_NOT_AVAILABLE","features":[1]},{"name":"ERROR_NOINTERFACE","features":[1]},{"name":"ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[1]},{"name":"ERROR_NOLOGON_SERVER_TRUST_ACCOUNT","features":[1]},{"name":"ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[1]},{"name":"ERROR_NONCORE_GROUPS_FOUND","features":[1]},{"name":"ERROR_NONE_MAPPED","features":[1]},{"name":"ERROR_NONPAGED_SYSTEM_RESOURCES","features":[1]},{"name":"ERROR_NON_ACCOUNT_SID","features":[1]},{"name":"ERROR_NON_CSV_PATH","features":[1]},{"name":"ERROR_NON_DOMAIN_SID","features":[1]},{"name":"ERROR_NON_MDICHILD_WINDOW","features":[1]},{"name":"ERROR_NON_WINDOWS_DRIVER","features":[1]},{"name":"ERROR_NON_WINDOWS_NT_DRIVER","features":[1]},{"name":"ERROR_NOTHING_TO_TERMINATE","features":[1]},{"name":"ERROR_NOTIFICATION_GUID_ALREADY_DEFINED","features":[1]},{"name":"ERROR_NOTIFY_CLEANUP","features":[1]},{"name":"ERROR_NOTIFY_ENUM_DIR","features":[1]},{"name":"ERROR_NOT_ALLOWED_ON_SYSTEM_FILE","features":[1]},{"name":"ERROR_NOT_ALL_ASSIGNED","features":[1]},{"name":"ERROR_NOT_AN_INSTALLED_OEM_INF","features":[1]},{"name":"ERROR_NOT_APPCONTAINER","features":[1]},{"name":"ERROR_NOT_AUTHENTICATED","features":[1]},{"name":"ERROR_NOT_A_CLOUD_FILE","features":[1]},{"name":"ERROR_NOT_A_CLOUD_SYNC_ROOT","features":[1]},{"name":"ERROR_NOT_A_DAX_VOLUME","features":[1]},{"name":"ERROR_NOT_A_DEV_VOLUME","features":[1]},{"name":"ERROR_NOT_A_REPARSE_POINT","features":[1]},{"name":"ERROR_NOT_A_TIERED_VOLUME","features":[1]},{"name":"ERROR_NOT_CAPABLE","features":[1]},{"name":"ERROR_NOT_CHILD_WINDOW","features":[1]},{"name":"ERROR_NOT_CLIENT_PORT","features":[1]},{"name":"ERROR_NOT_CONNECTED","features":[1]},{"name":"ERROR_NOT_CONTAINER","features":[1]},{"name":"ERROR_NOT_DAX_MAPPABLE","features":[1]},{"name":"ERROR_NOT_DISABLEABLE","features":[1]},{"name":"ERROR_NOT_DOS_DISK","features":[1]},{"name":"ERROR_NOT_EMPTY","features":[1]},{"name":"ERROR_NOT_ENOUGH_MEMORY","features":[1]},{"name":"ERROR_NOT_ENOUGH_QUOTA","features":[1]},{"name":"ERROR_NOT_ENOUGH_SERVER_MEMORY","features":[1]},{"name":"ERROR_NOT_EXPORT_FORMAT","features":[1]},{"name":"ERROR_NOT_FOUND","features":[1]},{"name":"ERROR_NOT_GUI_PROCESS","features":[1]},{"name":"ERROR_NOT_INSTALLED","features":[1]},{"name":"ERROR_NOT_JOINED","features":[1]},{"name":"ERROR_NOT_LOCKED","features":[1]},{"name":"ERROR_NOT_LOGGED_ON","features":[1]},{"name":"ERROR_NOT_LOGON_PROCESS","features":[1]},{"name":"ERROR_NOT_OWNER","features":[1]},{"name":"ERROR_NOT_QUORUM_CAPABLE","features":[1]},{"name":"ERROR_NOT_QUORUM_CLASS","features":[1]},{"name":"ERROR_NOT_READY","features":[1]},{"name":"ERROR_NOT_READ_FROM_COPY","features":[1]},{"name":"ERROR_NOT_REDUNDANT_STORAGE","features":[1]},{"name":"ERROR_NOT_REGISTRY_FILE","features":[1]},{"name":"ERROR_NOT_ROUTER_PORT","features":[1]},{"name":"ERROR_NOT_SAFEBOOT_SERVICE","features":[1]},{"name":"ERROR_NOT_SAFE_MODE_DRIVER","features":[1]},{"name":"ERROR_NOT_SAME_DEVICE","features":[1]},{"name":"ERROR_NOT_SAME_OBJECT","features":[1]},{"name":"ERROR_NOT_SNAPSHOT_VOLUME","features":[1]},{"name":"ERROR_NOT_SUBSTED","features":[1]},{"name":"ERROR_NOT_SUPPORTED","features":[1]},{"name":"ERROR_NOT_SUPPORTED_IN_APPCONTAINER","features":[1]},{"name":"ERROR_NOT_SUPPORTED_ON_DAX","features":[1]},{"name":"ERROR_NOT_SUPPORTED_ON_SBS","features":[1]},{"name":"ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_AUDITING","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_BTT","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_BYPASSIO","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_COMPRESSION","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_ENCRYPTION","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_MONITORING","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_REPLICATION","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_SNAPSHOT","features":[1]},{"name":"ERROR_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[1]},{"name":"ERROR_NOT_TINY_STREAM","features":[1]},{"name":"ERROR_NO_ACE_CONDITION","features":[1]},{"name":"ERROR_NO_ADMIN_ACCESS_POINT","features":[1]},{"name":"ERROR_NO_APPLICABLE_APP_LICENSES_FOUND","features":[1]},{"name":"ERROR_NO_ASSOCIATED_CLASS","features":[1]},{"name":"ERROR_NO_ASSOCIATED_SERVICE","features":[1]},{"name":"ERROR_NO_ASSOCIATION","features":[1]},{"name":"ERROR_NO_AUTHENTICODE_CATALOG","features":[1]},{"name":"ERROR_NO_AUTH_PROTOCOL_AVAILABLE","features":[1]},{"name":"ERROR_NO_BACKUP","features":[1]},{"name":"ERROR_NO_BROWSER_SERVERS_FOUND","features":[1]},{"name":"ERROR_NO_BYPASSIO_DRIVER_SUPPORT","features":[1]},{"name":"ERROR_NO_CALLBACK_ACTIVE","features":[1]},{"name":"ERROR_NO_CATALOG_FOR_OEM_INF","features":[1]},{"name":"ERROR_NO_CLASSINSTALL_PARAMS","features":[1]},{"name":"ERROR_NO_CLASS_DRIVER_LIST","features":[1]},{"name":"ERROR_NO_COMPAT_DRIVERS","features":[1]},{"name":"ERROR_NO_CONFIGMGR_SERVICES","features":[1]},{"name":"ERROR_NO_DATA","features":[1]},{"name":"ERROR_NO_DATA_DETECTED","features":[1]},{"name":"ERROR_NO_DEFAULT_DEVICE_INTERFACE","features":[1]},{"name":"ERROR_NO_DEFAULT_INTERFACE_DEVICE","features":[1]},{"name":"ERROR_NO_DEVICE_ICON","features":[1]},{"name":"ERROR_NO_DEVICE_SELECTED","features":[1]},{"name":"ERROR_NO_DRIVER_SELECTED","features":[1]},{"name":"ERROR_NO_EFS","features":[1]},{"name":"ERROR_NO_EVENT_PAIR","features":[1]},{"name":"ERROR_NO_GUID_TRANSLATION","features":[1]},{"name":"ERROR_NO_IMPERSONATION_TOKEN","features":[1]},{"name":"ERROR_NO_INF","features":[1]},{"name":"ERROR_NO_INHERITANCE","features":[1]},{"name":"ERROR_NO_INTERFACE_CREDENTIALS_SET","features":[1]},{"name":"ERROR_NO_LINK_TRACKING_IN_TRANSACTION","features":[1]},{"name":"ERROR_NO_LOGON_SERVERS","features":[1]},{"name":"ERROR_NO_LOG_SPACE","features":[1]},{"name":"ERROR_NO_MATCH","features":[1]},{"name":"ERROR_NO_MEDIA_IN_DRIVE","features":[1]},{"name":"ERROR_NO_MORE_DEVICES","features":[1]},{"name":"ERROR_NO_MORE_FILES","features":[1]},{"name":"ERROR_NO_MORE_ITEMS","features":[1]},{"name":"ERROR_NO_MORE_MATCHES","features":[1]},{"name":"ERROR_NO_MORE_SEARCH_HANDLES","features":[1]},{"name":"ERROR_NO_MORE_USER_HANDLES","features":[1]},{"name":"ERROR_NO_NETWORK","features":[1]},{"name":"ERROR_NO_NET_OR_BAD_PATH","features":[1]},{"name":"ERROR_NO_NVRAM_RESOURCES","features":[1]},{"name":"ERROR_NO_PAGEFILE","features":[1]},{"name":"ERROR_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[1]},{"name":"ERROR_NO_PROC_SLOTS","features":[1]},{"name":"ERROR_NO_PROMOTION_ACTIVE","features":[1]},{"name":"ERROR_NO_QUOTAS_FOR_ACCOUNT","features":[1]},{"name":"ERROR_NO_RADIUS_SERVERS","features":[1]},{"name":"ERROR_NO_RANGES_PROCESSED","features":[1]},{"name":"ERROR_NO_RECOVERY_POLICY","features":[1]},{"name":"ERROR_NO_RECOVERY_PROGRAM","features":[1]},{"name":"ERROR_NO_SAVEPOINT_WITH_OPEN_FILES","features":[1]},{"name":"ERROR_NO_SCROLLBARS","features":[1]},{"name":"ERROR_NO_SECRETS","features":[1]},{"name":"ERROR_NO_SECURITY_ON_OBJECT","features":[1]},{"name":"ERROR_NO_SHUTDOWN_IN_PROGRESS","features":[1]},{"name":"ERROR_NO_SIGNAL_SENT","features":[1]},{"name":"ERROR_NO_SIGNATURE","features":[1]},{"name":"ERROR_NO_SITENAME","features":[1]},{"name":"ERROR_NO_SITE_SETTINGS_OBJECT","features":[1]},{"name":"ERROR_NO_SPOOL_SPACE","features":[1]},{"name":"ERROR_NO_SUCH_ALIAS","features":[1]},{"name":"ERROR_NO_SUCH_DEVICE","features":[1]},{"name":"ERROR_NO_SUCH_DEVICE_INTERFACE","features":[1]},{"name":"ERROR_NO_SUCH_DEVINST","features":[1]},{"name":"ERROR_NO_SUCH_DOMAIN","features":[1]},{"name":"ERROR_NO_SUCH_GROUP","features":[1]},{"name":"ERROR_NO_SUCH_INTERFACE","features":[1]},{"name":"ERROR_NO_SUCH_INTERFACE_CLASS","features":[1]},{"name":"ERROR_NO_SUCH_INTERFACE_DEVICE","features":[1]},{"name":"ERROR_NO_SUCH_LOGON_SESSION","features":[1]},{"name":"ERROR_NO_SUCH_MEMBER","features":[1]},{"name":"ERROR_NO_SUCH_PACKAGE","features":[1]},{"name":"ERROR_NO_SUCH_PRIVILEGE","features":[1]},{"name":"ERROR_NO_SUCH_SITE","features":[1]},{"name":"ERROR_NO_SUCH_USER","features":[1]},{"name":"ERROR_NO_SUPPORTING_DRIVES","features":[1]},{"name":"ERROR_NO_SYSTEM_MENU","features":[1]},{"name":"ERROR_NO_SYSTEM_RESOURCES","features":[1]},{"name":"ERROR_NO_TASK_QUEUE","features":[1]},{"name":"ERROR_NO_TOKEN","features":[1]},{"name":"ERROR_NO_TRACKING_SERVICE","features":[1]},{"name":"ERROR_NO_TRUST_LSA_SECRET","features":[1]},{"name":"ERROR_NO_TRUST_SAM_ACCOUNT","features":[1]},{"name":"ERROR_NO_TXF_METADATA","features":[1]},{"name":"ERROR_NO_UNICODE_TRANSLATION","features":[1]},{"name":"ERROR_NO_USER_KEYS","features":[1]},{"name":"ERROR_NO_USER_SESSION_KEY","features":[1]},{"name":"ERROR_NO_VOLUME_ID","features":[1]},{"name":"ERROR_NO_VOLUME_LABEL","features":[1]},{"name":"ERROR_NO_WILDCARD_CHARACTERS","features":[1]},{"name":"ERROR_NO_WORK_DONE","features":[1]},{"name":"ERROR_NO_WRITABLE_DC_FOUND","features":[1]},{"name":"ERROR_NO_YIELD_PERFORMED","features":[1]},{"name":"ERROR_NTLM_BLOCKED","features":[1]},{"name":"ERROR_NT_CROSS_ENCRYPTION_REQUIRED","features":[1]},{"name":"ERROR_NULL_LM_PASSWORD","features":[1]},{"name":"ERROR_OBJECT_ALREADY_EXISTS","features":[1]},{"name":"ERROR_OBJECT_IN_LIST","features":[1]},{"name":"ERROR_OBJECT_IS_IMMUTABLE","features":[1]},{"name":"ERROR_OBJECT_NAME_EXISTS","features":[1]},{"name":"ERROR_OBJECT_NOT_EXTERNALLY_BACKED","features":[1]},{"name":"ERROR_OBJECT_NOT_FOUND","features":[1]},{"name":"ERROR_OBJECT_NO_LONGER_EXISTS","features":[1]},{"name":"ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[1]},{"name":"ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[1]},{"name":"ERROR_OFFSET_ALIGNMENT_VIOLATION","features":[1]},{"name":"ERROR_OLD_WIN_VERSION","features":[1]},{"name":"ERROR_ONLY_IF_CONNECTED","features":[1]},{"name":"ERROR_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[1]},{"name":"ERROR_OPEN_FAILED","features":[1]},{"name":"ERROR_OPEN_FILES","features":[1]},{"name":"ERROR_OPERATION_ABORTED","features":[1]},{"name":"ERROR_OPERATION_IN_PROGRESS","features":[1]},{"name":"ERROR_OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT","features":[1]},{"name":"ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[1]},{"name":"ERROR_OPLOCK_BREAK_IN_PROGRESS","features":[1]},{"name":"ERROR_OPLOCK_HANDLE_CLOSED","features":[1]},{"name":"ERROR_OPLOCK_NOT_GRANTED","features":[1]},{"name":"ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[1]},{"name":"ERROR_ORPHAN_NAME_EXHAUSTED","features":[1]},{"name":"ERROR_OUTOFMEMORY","features":[1]},{"name":"ERROR_OUT_OF_PAPER","features":[1]},{"name":"ERROR_OUT_OF_STRUCTURES","features":[1]},{"name":"ERROR_OVERRIDE_NOCHANGES","features":[1]},{"name":"ERROR_PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES","features":[1]},{"name":"ERROR_PACKAGES_IN_USE","features":[1]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_FAILED","features":[1]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_TIMEDOUT","features":[1]},{"name":"ERROR_PACKAGE_ALREADY_EXISTS","features":[1]},{"name":"ERROR_PACKAGE_EXTERNAL_LOCATION_NOT_ALLOWED","features":[1]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_FOR_MANDATORY_STARTUPTASKS","features":[1]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_TO_DEPLOY_ON_HOST","features":[1]},{"name":"ERROR_PACKAGE_MOVE_BLOCKED_BY_STREAMING","features":[1]},{"name":"ERROR_PACKAGE_MOVE_FAILED","features":[1]},{"name":"ERROR_PACKAGE_NAME_MISMATCH","features":[1]},{"name":"ERROR_PACKAGE_NOT_REGISTERED_FOR_USER","features":[1]},{"name":"ERROR_PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM","features":[1]},{"name":"ERROR_PACKAGE_REPOSITORY_CORRUPTED","features":[1]},{"name":"ERROR_PACKAGE_STAGING_ONHOLD","features":[1]},{"name":"ERROR_PACKAGE_UPDATING","features":[1]},{"name":"ERROR_PAGED_SYSTEM_RESOURCES","features":[1]},{"name":"ERROR_PAGEFILE_CREATE_FAILED","features":[1]},{"name":"ERROR_PAGEFILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_PAGEFILE_QUOTA","features":[1]},{"name":"ERROR_PAGEFILE_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_PAGE_FAULT_COPY_ON_WRITE","features":[1]},{"name":"ERROR_PAGE_FAULT_DEMAND_ZERO","features":[1]},{"name":"ERROR_PAGE_FAULT_GUARD_PAGE","features":[1]},{"name":"ERROR_PAGE_FAULT_PAGING_FILE","features":[1]},{"name":"ERROR_PAGE_FAULT_TRANSITION","features":[1]},{"name":"ERROR_PARAMETER_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_PARTIAL_COPY","features":[1]},{"name":"ERROR_PARTITION_FAILURE","features":[1]},{"name":"ERROR_PARTITION_TERMINATING","features":[1]},{"name":"ERROR_PASSWORD_CHANGE_REQUIRED","features":[1]},{"name":"ERROR_PASSWORD_EXPIRED","features":[1]},{"name":"ERROR_PASSWORD_MUST_CHANGE","features":[1]},{"name":"ERROR_PASSWORD_RESTRICTION","features":[1]},{"name":"ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT","features":[1]},{"name":"ERROR_PATCH_NO_SEQUENCE","features":[1]},{"name":"ERROR_PATCH_PACKAGE_INVALID","features":[1]},{"name":"ERROR_PATCH_PACKAGE_OPEN_FAILED","features":[1]},{"name":"ERROR_PATCH_PACKAGE_REJECTED","features":[1]},{"name":"ERROR_PATCH_PACKAGE_UNSUPPORTED","features":[1]},{"name":"ERROR_PATCH_REMOVAL_DISALLOWED","features":[1]},{"name":"ERROR_PATCH_REMOVAL_UNSUPPORTED","features":[1]},{"name":"ERROR_PATCH_TARGET_NOT_FOUND","features":[1]},{"name":"ERROR_PATH_BUSY","features":[1]},{"name":"ERROR_PATH_NOT_FOUND","features":[1]},{"name":"ERROR_PEER_REFUSED_AUTH","features":[1]},{"name":"ERROR_PER_USER_TRUST_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_PIPE_BUSY","features":[1]},{"name":"ERROR_PIPE_CONNECTED","features":[1]},{"name":"ERROR_PIPE_LISTENING","features":[1]},{"name":"ERROR_PIPE_LOCAL","features":[1]},{"name":"ERROR_PIPE_NOT_CONNECTED","features":[1]},{"name":"ERROR_PKINIT_FAILURE","features":[1]},{"name":"ERROR_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[1]},{"name":"ERROR_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[1]},{"name":"ERROR_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[1]},{"name":"ERROR_PLATFORM_MANIFEST_INVALID","features":[1]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_ACTIVE","features":[1]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[1]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_SIGNED","features":[1]},{"name":"ERROR_PLUGPLAY_QUERY_VETOED","features":[1]},{"name":"ERROR_PNP_BAD_MPS_TABLE","features":[1]},{"name":"ERROR_PNP_INVALID_ID","features":[1]},{"name":"ERROR_PNP_IRQ_TRANSLATION_FAILED","features":[1]},{"name":"ERROR_PNP_QUERY_REMOVE_DEVICE_TIMEOUT","features":[1]},{"name":"ERROR_PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT","features":[1]},{"name":"ERROR_PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT","features":[1]},{"name":"ERROR_PNP_REBOOT_REQUIRED","features":[1]},{"name":"ERROR_PNP_REGISTRY_ERROR","features":[1]},{"name":"ERROR_PNP_RESTART_ENUMERATION","features":[1]},{"name":"ERROR_PNP_TRANSLATION_FAILED","features":[1]},{"name":"ERROR_POINT_NOT_FOUND","features":[1]},{"name":"ERROR_POLICY_CONTROLLED_ACCOUNT","features":[1]},{"name":"ERROR_POLICY_OBJECT_NOT_FOUND","features":[1]},{"name":"ERROR_POLICY_ONLY_IN_DS","features":[1]},{"name":"ERROR_POPUP_ALREADY_ACTIVE","features":[1]},{"name":"ERROR_PORT_LIMIT_REACHED","features":[1]},{"name":"ERROR_PORT_MESSAGE_TOO_LONG","features":[1]},{"name":"ERROR_PORT_NOT_SET","features":[1]},{"name":"ERROR_PORT_UNREACHABLE","features":[1]},{"name":"ERROR_POSSIBLE_DEADLOCK","features":[1]},{"name":"ERROR_POTENTIAL_FILE_FOUND","features":[1]},{"name":"ERROR_PPP_SESSION_TIMEOUT","features":[1]},{"name":"ERROR_PREDEFINED_HANDLE","features":[1]},{"name":"ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[1]},{"name":"ERROR_PRINTER_ALREADY_EXISTS","features":[1]},{"name":"ERROR_PRINTER_DELETED","features":[1]},{"name":"ERROR_PRINTER_DRIVER_ALREADY_INSTALLED","features":[1]},{"name":"ERROR_PRINTER_DRIVER_BLOCKED","features":[1]},{"name":"ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED","features":[1]},{"name":"ERROR_PRINTER_DRIVER_IN_USE","features":[1]},{"name":"ERROR_PRINTER_DRIVER_PACKAGE_IN_USE","features":[1]},{"name":"ERROR_PRINTER_DRIVER_WARNED","features":[1]},{"name":"ERROR_PRINTER_HAS_JOBS_QUEUED","features":[1]},{"name":"ERROR_PRINTER_NOT_FOUND","features":[1]},{"name":"ERROR_PRINTER_NOT_SHAREABLE","features":[1]},{"name":"ERROR_PRINTQ_FULL","features":[1]},{"name":"ERROR_PRINT_CANCELLED","features":[1]},{"name":"ERROR_PRINT_JOB_RESTART_REQUIRED","features":[1]},{"name":"ERROR_PRINT_MONITOR_ALREADY_INSTALLED","features":[1]},{"name":"ERROR_PRINT_MONITOR_IN_USE","features":[1]},{"name":"ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED","features":[1]},{"name":"ERROR_PRIVATE_DIALOG_INDEX","features":[1]},{"name":"ERROR_PRIVILEGE_NOT_HELD","features":[1]},{"name":"ERROR_PRI_MERGE_ADD_FILE_FAILED","features":[1]},{"name":"ERROR_PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED","features":[1]},{"name":"ERROR_PRI_MERGE_INVALID_FILE_NAME","features":[1]},{"name":"ERROR_PRI_MERGE_LOAD_FILE_FAILED","features":[1]},{"name":"ERROR_PRI_MERGE_MAIN_PACKAGE_REQUIRED","features":[1]},{"name":"ERROR_PRI_MERGE_MISSING_SCHEMA","features":[1]},{"name":"ERROR_PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED","features":[1]},{"name":"ERROR_PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED","features":[1]},{"name":"ERROR_PRI_MERGE_RESOURCE_PACKAGE_REQUIRED","features":[1]},{"name":"ERROR_PRI_MERGE_VERSION_MISMATCH","features":[1]},{"name":"ERROR_PRI_MERGE_WRITE_FILE_FAILED","features":[1]},{"name":"ERROR_PROCESS_ABORTED","features":[1]},{"name":"ERROR_PROCESS_IN_JOB","features":[1]},{"name":"ERROR_PROCESS_IS_PROTECTED","features":[1]},{"name":"ERROR_PROCESS_MODE_ALREADY_BACKGROUND","features":[1]},{"name":"ERROR_PROCESS_MODE_NOT_BACKGROUND","features":[1]},{"name":"ERROR_PROCESS_NOT_IN_JOB","features":[1]},{"name":"ERROR_PROC_NOT_FOUND","features":[1]},{"name":"ERROR_PRODUCT_UNINSTALLED","features":[1]},{"name":"ERROR_PRODUCT_VERSION","features":[1]},{"name":"ERROR_PROFILE_DOES_NOT_MATCH_DEVICE","features":[1]},{"name":"ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE","features":[1]},{"name":"ERROR_PROFILE_NOT_FOUND","features":[1]},{"name":"ERROR_PROFILING_AT_LIMIT","features":[1]},{"name":"ERROR_PROFILING_NOT_STARTED","features":[1]},{"name":"ERROR_PROFILING_NOT_STOPPED","features":[1]},{"name":"ERROR_PROMOTION_ACTIVE","features":[1]},{"name":"ERROR_PROTOCOL_ALREADY_INSTALLED","features":[1]},{"name":"ERROR_PROTOCOL_STOP_PENDING","features":[1]},{"name":"ERROR_PROTOCOL_UNREACHABLE","features":[1]},{"name":"ERROR_PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED","features":[1]},{"name":"ERROR_PWD_HISTORY_CONFLICT","features":[1]},{"name":"ERROR_PWD_TOO_LONG","features":[1]},{"name":"ERROR_PWD_TOO_RECENT","features":[1]},{"name":"ERROR_PWD_TOO_SHORT","features":[1]},{"name":"ERROR_QUERY_STORAGE_ERROR","features":[1]},{"name":"ERROR_QUIC_ALPN_NEG_FAILURE","features":[1]},{"name":"ERROR_QUIC_CONNECTION_IDLE","features":[1]},{"name":"ERROR_QUIC_CONNECTION_TIMEOUT","features":[1]},{"name":"ERROR_QUIC_HANDSHAKE_FAILURE","features":[1]},{"name":"ERROR_QUIC_INTERNAL_ERROR","features":[1]},{"name":"ERROR_QUIC_PROTOCOL_VIOLATION","features":[1]},{"name":"ERROR_QUIC_USER_CANCELED","features":[1]},{"name":"ERROR_QUIC_VER_NEG_FAILURE","features":[1]},{"name":"ERROR_QUORUMLOG_OPEN_FAILED","features":[1]},{"name":"ERROR_QUORUM_DISK_NOT_FOUND","features":[1]},{"name":"ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP","features":[1]},{"name":"ERROR_QUORUM_OWNER_ALIVE","features":[1]},{"name":"ERROR_QUORUM_RESOURCE","features":[1]},{"name":"ERROR_QUORUM_RESOURCE_ONLINE_FAILED","features":[1]},{"name":"ERROR_QUOTA_ACTIVITY","features":[1]},{"name":"ERROR_QUOTA_LIST_INCONSISTENT","features":[1]},{"name":"ERROR_RANGE_LIST_CONFLICT","features":[1]},{"name":"ERROR_RANGE_NOT_FOUND","features":[1]},{"name":"ERROR_RDP_PROTOCOL_ERROR","features":[1]},{"name":"ERROR_READ_FAULT","features":[1]},{"name":"ERROR_RECEIVE_EXPEDITED","features":[1]},{"name":"ERROR_RECEIVE_PARTIAL","features":[1]},{"name":"ERROR_RECEIVE_PARTIAL_EXPEDITED","features":[1]},{"name":"ERROR_RECOVERY_FAILURE","features":[1]},{"name":"ERROR_RECOVERY_FILE_CORRUPT","features":[1]},{"name":"ERROR_RECOVERY_NOT_NEEDED","features":[1]},{"name":"ERROR_REC_NON_EXISTENT","features":[1]},{"name":"ERROR_REDIRECTION_TO_DEFAULT_ACCOUNT_NOT_ALLOWED","features":[1]},{"name":"ERROR_REDIRECTOR_HAS_OPEN_HANDLES","features":[1]},{"name":"ERROR_REDIR_PAUSED","features":[1]},{"name":"ERROR_REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_REGISTRY_CORRUPT","features":[1]},{"name":"ERROR_REGISTRY_HIVE_RECOVERED","features":[1]},{"name":"ERROR_REGISTRY_IO_FAILED","features":[1]},{"name":"ERROR_REGISTRY_QUOTA_LIMIT","features":[1]},{"name":"ERROR_REGISTRY_RECOVERED","features":[1]},{"name":"ERROR_REG_NAT_CONSUMPTION","features":[1]},{"name":"ERROR_RELOC_CHAIN_XEEDS_SEGLIM","features":[1]},{"name":"ERROR_REMOTEACCESS_NOT_CONFIGURED","features":[1]},{"name":"ERROR_REMOTE_ACCT_DISABLED","features":[1]},{"name":"ERROR_REMOTE_AUTHENTICATION_FAILURE","features":[1]},{"name":"ERROR_REMOTE_COMM_FAILURE","features":[1]},{"name":"ERROR_REMOTE_FILE_VERSION_MISMATCH","features":[1]},{"name":"ERROR_REMOTE_NO_DIALIN_PERMISSION","features":[1]},{"name":"ERROR_REMOTE_PASSWD_EXPIRED","features":[1]},{"name":"ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED","features":[1]},{"name":"ERROR_REMOTE_REQUEST_UNSUPPORTED","features":[1]},{"name":"ERROR_REMOTE_RESTRICTED_LOGON_HOURS","features":[1]},{"name":"ERROR_REMOTE_SESSION_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_REMOTE_STORAGE_MEDIA_ERROR","features":[1]},{"name":"ERROR_REMOTE_STORAGE_NOT_ACTIVE","features":[1]},{"name":"ERROR_REMOVE_FAILED","features":[1]},{"name":"ERROR_REM_NOT_LIST","features":[1]},{"name":"ERROR_REPARSE","features":[1]},{"name":"ERROR_REPARSE_ATTRIBUTE_CONFLICT","features":[1]},{"name":"ERROR_REPARSE_OBJECT","features":[1]},{"name":"ERROR_REPARSE_POINT_ENCOUNTERED","features":[1]},{"name":"ERROR_REPARSE_TAG_INVALID","features":[1]},{"name":"ERROR_REPARSE_TAG_MISMATCH","features":[1]},{"name":"ERROR_REPLY_MESSAGE_MISMATCH","features":[1]},{"name":"ERROR_REQUEST_ABORTED","features":[1]},{"name":"ERROR_REQUEST_OUT_OF_SEQUENCE","features":[1]},{"name":"ERROR_REQUEST_PAUSED","features":[1]},{"name":"ERROR_REQUEST_REFUSED","features":[1]},{"name":"ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION","features":[1]},{"name":"ERROR_REQ_NOT_ACCEP","features":[1]},{"name":"ERROR_RESIDENT_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_RESILIENCY_FILE_CORRUPT","features":[1]},{"name":"ERROR_RESMON_CREATE_FAILED","features":[1]},{"name":"ERROR_RESMON_INVALID_STATE","features":[1]},{"name":"ERROR_RESMON_ONLINE_FAILED","features":[1]},{"name":"ERROR_RESMON_SYSTEM_RESOURCES_LACKING","features":[1]},{"name":"ERROR_RESOURCEMANAGER_NOT_FOUND","features":[1]},{"name":"ERROR_RESOURCEMANAGER_READ_ONLY","features":[1]},{"name":"ERROR_RESOURCE_CALL_TIMED_OUT","features":[1]},{"name":"ERROR_RESOURCE_DATA_NOT_FOUND","features":[1]},{"name":"ERROR_RESOURCE_DISABLED","features":[1]},{"name":"ERROR_RESOURCE_ENUM_USER_STOP","features":[1]},{"name":"ERROR_RESOURCE_FAILED","features":[1]},{"name":"ERROR_RESOURCE_LANG_NOT_FOUND","features":[1]},{"name":"ERROR_RESOURCE_NAME_NOT_FOUND","features":[1]},{"name":"ERROR_RESOURCE_NOT_AVAILABLE","features":[1]},{"name":"ERROR_RESOURCE_NOT_FOUND","features":[1]},{"name":"ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE","features":[1]},{"name":"ERROR_RESOURCE_NOT_ONLINE","features":[1]},{"name":"ERROR_RESOURCE_NOT_PRESENT","features":[1]},{"name":"ERROR_RESOURCE_ONLINE","features":[1]},{"name":"ERROR_RESOURCE_PROPERTIES_STORED","features":[1]},{"name":"ERROR_RESOURCE_PROPERTY_UNCHANGEABLE","features":[1]},{"name":"ERROR_RESOURCE_REQUIREMENTS_CHANGED","features":[1]},{"name":"ERROR_RESOURCE_TYPE_NOT_FOUND","features":[1]},{"name":"ERROR_RESTART_APPLICATION","features":[1]},{"name":"ERROR_RESUME_HIBERNATION","features":[1]},{"name":"ERROR_RETRY","features":[1]},{"name":"ERROR_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[1]},{"name":"ERROR_REVISION_MISMATCH","features":[1]},{"name":"ERROR_RING2SEG_MUST_BE_MOVABLE","features":[1]},{"name":"ERROR_RING2_STACK_IN_USE","features":[1]},{"name":"ERROR_RMODE_APP","features":[1]},{"name":"ERROR_RM_ALREADY_STARTED","features":[1]},{"name":"ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[1]},{"name":"ERROR_RM_DISCONNECTED","features":[1]},{"name":"ERROR_RM_METADATA_CORRUPT","features":[1]},{"name":"ERROR_RM_NOT_ACTIVE","features":[1]},{"name":"ERROR_ROLLBACK_TIMER_EXPIRED","features":[1]},{"name":"ERROR_ROUTER_CONFIG_INCOMPATIBLE","features":[1]},{"name":"ERROR_ROUTER_STOPPED","features":[1]},{"name":"ERROR_ROWSNOTRELEASED","features":[1]},{"name":"ERROR_RPL_NOT_ALLOWED","features":[1]},{"name":"ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[1]},{"name":"ERROR_RUNLEVEL_SWITCH_IN_PROGRESS","features":[1]},{"name":"ERROR_RUNLEVEL_SWITCH_TIMEOUT","features":[1]},{"name":"ERROR_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[1]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[1]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[1]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[1]},{"name":"ERROR_RXACT_COMMITTED","features":[1]},{"name":"ERROR_RXACT_COMMIT_FAILURE","features":[1]},{"name":"ERROR_RXACT_COMMIT_NECESSARY","features":[1]},{"name":"ERROR_RXACT_INVALID_STATE","features":[1]},{"name":"ERROR_RXACT_STATE_CREATED","features":[1]},{"name":"ERROR_SAME_DRIVE","features":[1]},{"name":"ERROR_SAM_INIT_FAILURE","features":[1]},{"name":"ERROR_SCE_DISABLED","features":[1]},{"name":"ERROR_SCOPE_NOT_FOUND","features":[1]},{"name":"ERROR_SCREEN_ALREADY_LOCKED","features":[1]},{"name":"ERROR_SCRUB_DATA_DISABLED","features":[1]},{"name":"ERROR_SECCORE_INVALID_COMMAND","features":[1]},{"name":"ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[1]},{"name":"ERROR_SECRET_TOO_LONG","features":[1]},{"name":"ERROR_SECTION_DIRECT_MAP_ONLY","features":[1]},{"name":"ERROR_SECTION_NAME_TOO_LONG","features":[1]},{"name":"ERROR_SECTION_NOT_FOUND","features":[1]},{"name":"ERROR_SECTOR_NOT_FOUND","features":[1]},{"name":"ERROR_SECUREBOOT_FILE_REPLACED","features":[1]},{"name":"ERROR_SECUREBOOT_INVALID_POLICY","features":[1]},{"name":"ERROR_SECUREBOOT_NOT_BASE_POLICY","features":[1]},{"name":"ERROR_SECUREBOOT_NOT_ENABLED","features":[1]},{"name":"ERROR_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[1]},{"name":"ERROR_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_SIGNED","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_UNKNOWN","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[1]},{"name":"ERROR_SECUREBOOT_POLICY_VIOLATION","features":[1]},{"name":"ERROR_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[1]},{"name":"ERROR_SECUREBOOT_ROLLBACK_DETECTED","features":[1]},{"name":"ERROR_SECURITY_DENIES_OPERATION","features":[1]},{"name":"ERROR_SECURITY_STREAM_IS_INCONSISTENT","features":[1]},{"name":"ERROR_SEEK","features":[1]},{"name":"ERROR_SEEK_ON_DEVICE","features":[1]},{"name":"ERROR_SEGMENT_NOTIFICATION","features":[1]},{"name":"ERROR_SEM_IS_SET","features":[1]},{"name":"ERROR_SEM_NOT_FOUND","features":[1]},{"name":"ERROR_SEM_OWNER_DIED","features":[1]},{"name":"ERROR_SEM_TIMEOUT","features":[1]},{"name":"ERROR_SEM_USER_LIMIT","features":[1]},{"name":"ERROR_SERIAL_NO_DEVICE","features":[1]},{"name":"ERROR_SERVER_DISABLED","features":[1]},{"name":"ERROR_SERVER_HAS_OPEN_HANDLES","features":[1]},{"name":"ERROR_SERVER_NOT_DISABLED","features":[1]},{"name":"ERROR_SERVER_SERVICE_CALL_REQUIRES_SMB1","features":[1]},{"name":"ERROR_SERVER_SHUTDOWN_IN_PROGRESS","features":[1]},{"name":"ERROR_SERVER_SID_MISMATCH","features":[1]},{"name":"ERROR_SERVER_TRANSPORT_CONFLICT","features":[1]},{"name":"ERROR_SERVICES_FAILED_AUTOSTART","features":[1]},{"name":"ERROR_SERVICE_ALREADY_RUNNING","features":[1]},{"name":"ERROR_SERVICE_CANNOT_ACCEPT_CTRL","features":[1]},{"name":"ERROR_SERVICE_DATABASE_LOCKED","features":[1]},{"name":"ERROR_SERVICE_DEPENDENCY_DELETED","features":[1]},{"name":"ERROR_SERVICE_DEPENDENCY_FAIL","features":[1]},{"name":"ERROR_SERVICE_DISABLED","features":[1]},{"name":"ERROR_SERVICE_DOES_NOT_EXIST","features":[1]},{"name":"ERROR_SERVICE_EXISTS","features":[1]},{"name":"ERROR_SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE","features":[1]},{"name":"ERROR_SERVICE_IS_PAUSED","features":[1]},{"name":"ERROR_SERVICE_LOGON_FAILED","features":[1]},{"name":"ERROR_SERVICE_MARKED_FOR_DELETE","features":[1]},{"name":"ERROR_SERVICE_NEVER_STARTED","features":[1]},{"name":"ERROR_SERVICE_NOTIFICATION","features":[1]},{"name":"ERROR_SERVICE_NOTIFY_CLIENT_LAGGING","features":[1]},{"name":"ERROR_SERVICE_NOT_ACTIVE","features":[1]},{"name":"ERROR_SERVICE_NOT_FOUND","features":[1]},{"name":"ERROR_SERVICE_NOT_IN_EXE","features":[1]},{"name":"ERROR_SERVICE_NO_THREAD","features":[1]},{"name":"ERROR_SERVICE_REQUEST_TIMEOUT","features":[1]},{"name":"ERROR_SERVICE_SPECIFIC_ERROR","features":[1]},{"name":"ERROR_SERVICE_START_HANG","features":[1]},{"name":"ERROR_SESSION_CREDENTIAL_CONFLICT","features":[1]},{"name":"ERROR_SESSION_KEY_TOO_SHORT","features":[1]},{"name":"ERROR_SETCOUNT_ON_BAD_LB","features":[1]},{"name":"ERROR_SETMARK_DETECTED","features":[1]},{"name":"ERROR_SET_CONTEXT_DENIED","features":[1]},{"name":"ERROR_SET_NOT_FOUND","features":[1]},{"name":"ERROR_SET_POWER_STATE_FAILED","features":[1]},{"name":"ERROR_SET_POWER_STATE_VETOED","features":[1]},{"name":"ERROR_SET_SYSTEM_RESTORE_POINT","features":[1]},{"name":"ERROR_SHARED_POLICY","features":[1]},{"name":"ERROR_SHARING_BUFFER_EXCEEDED","features":[1]},{"name":"ERROR_SHARING_PAUSED","features":[1]},{"name":"ERROR_SHARING_VIOLATION","features":[1]},{"name":"ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[1]},{"name":"ERROR_SHUTDOWN_CLUSTER","features":[1]},{"name":"ERROR_SHUTDOWN_DISKS_NOT_IN_MAINTENANCE_MODE","features":[1]},{"name":"ERROR_SHUTDOWN_IN_PROGRESS","features":[1]},{"name":"ERROR_SHUTDOWN_IS_SCHEDULED","features":[1]},{"name":"ERROR_SHUTDOWN_USERS_LOGGED_ON","features":[1]},{"name":"ERROR_SIGNAL_PENDING","features":[1]},{"name":"ERROR_SIGNAL_REFUSED","features":[1]},{"name":"ERROR_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[1]},{"name":"ERROR_SIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[1]},{"name":"ERROR_SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER","features":[1]},{"name":"ERROR_SINGLE_INSTANCE_APP","features":[1]},{"name":"ERROR_SMARTCARD_SUBSYSTEM_FAILURE","features":[1]},{"name":"ERROR_SMB1_NOT_AVAILABLE","features":[1]},{"name":"ERROR_SMB_BAD_CLUSTER_DIALECT","features":[1]},{"name":"ERROR_SMB_GUEST_LOGON_BLOCKED","features":[1]},{"name":"ERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[1]},{"name":"ERROR_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[1]},{"name":"ERROR_SMI_PRIMITIVE_INSTALLER_FAILED","features":[1]},{"name":"ERROR_SMR_GARBAGE_COLLECTION_REQUIRED","features":[1]},{"name":"ERROR_SOME_NOT_MAPPED","features":[1]},{"name":"ERROR_SOURCE_ELEMENT_EMPTY","features":[1]},{"name":"ERROR_SPACES_ALLOCATION_SIZE_INVALID","features":[1]},{"name":"ERROR_SPACES_CACHE_FULL","features":[1]},{"name":"ERROR_SPACES_CORRUPT_METADATA","features":[1]},{"name":"ERROR_SPACES_DRIVE_LOST_DATA","features":[1]},{"name":"ERROR_SPACES_DRIVE_NOT_READY","features":[1]},{"name":"ERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[1]},{"name":"ERROR_SPACES_DRIVE_REDUNDANCY_INVALID","features":[1]},{"name":"ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[1]},{"name":"ERROR_SPACES_DRIVE_SPLIT","features":[1]},{"name":"ERROR_SPACES_DRT_FULL","features":[1]},{"name":"ERROR_SPACES_ENCLOSURE_AWARE_INVALID","features":[1]},{"name":"ERROR_SPACES_ENTRY_INCOMPLETE","features":[1]},{"name":"ERROR_SPACES_ENTRY_INVALID","features":[1]},{"name":"ERROR_SPACES_EXTENDED_ERROR","features":[1]},{"name":"ERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[1]},{"name":"ERROR_SPACES_FLUSH_METADATA","features":[1]},{"name":"ERROR_SPACES_INCONSISTENCY","features":[1]},{"name":"ERROR_SPACES_INTERLEAVE_LENGTH_INVALID","features":[1]},{"name":"ERROR_SPACES_INTERNAL_ERROR","features":[1]},{"name":"ERROR_SPACES_LOG_NOT_READY","features":[1]},{"name":"ERROR_SPACES_MAP_REQUIRED","features":[1]},{"name":"ERROR_SPACES_MARK_DIRTY","features":[1]},{"name":"ERROR_SPACES_NOT_ENOUGH_DRIVES","features":[1]},{"name":"ERROR_SPACES_NO_REDUNDANCY","features":[1]},{"name":"ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[1]},{"name":"ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[1]},{"name":"ERROR_SPACES_NUMBER_OF_GROUPS_INVALID","features":[1]},{"name":"ERROR_SPACES_PARITY_LAYOUT_INVALID","features":[1]},{"name":"ERROR_SPACES_POOL_WAS_DELETED","features":[1]},{"name":"ERROR_SPACES_PROVISIONING_TYPE_INVALID","features":[1]},{"name":"ERROR_SPACES_REPAIR_IN_PROGRESS","features":[1]},{"name":"ERROR_SPACES_RESILIENCY_TYPE_INVALID","features":[1]},{"name":"ERROR_SPACES_UNSUPPORTED_VERSION","features":[1]},{"name":"ERROR_SPACES_UPDATE_COLUMN_STATE","features":[1]},{"name":"ERROR_SPACES_WRITE_CACHE_SIZE_INVALID","features":[1]},{"name":"ERROR_SPARSE_FILE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[1]},{"name":"ERROR_SPECIAL_ACCOUNT","features":[1]},{"name":"ERROR_SPECIAL_GROUP","features":[1]},{"name":"ERROR_SPECIAL_USER","features":[1]},{"name":"ERROR_SPL_NO_ADDJOB","features":[1]},{"name":"ERROR_SPL_NO_STARTDOC","features":[1]},{"name":"ERROR_SPOOL_FILE_NOT_FOUND","features":[1]},{"name":"ERROR_SRC_SRV_DLL_LOAD_FAILED","features":[1]},{"name":"ERROR_STACK_BUFFER_OVERRUN","features":[1]},{"name":"ERROR_STACK_OVERFLOW","features":[1]},{"name":"ERROR_STACK_OVERFLOW_READ","features":[1]},{"name":"ERROR_STAGEFROMUPDATEAGENT_PACKAGE_NOT_APPLICABLE","features":[1]},{"name":"ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_STATE_CREATE_CONTAINER_FAILED","features":[1]},{"name":"ERROR_STATE_DELETE_CONTAINER_FAILED","features":[1]},{"name":"ERROR_STATE_DELETE_SETTING_FAILED","features":[1]},{"name":"ERROR_STATE_ENUMERATE_CONTAINER_FAILED","features":[1]},{"name":"ERROR_STATE_ENUMERATE_SETTINGS_FAILED","features":[1]},{"name":"ERROR_STATE_GET_VERSION_FAILED","features":[1]},{"name":"ERROR_STATE_LOAD_STORE_FAILED","features":[1]},{"name":"ERROR_STATE_OPEN_CONTAINER_FAILED","features":[1]},{"name":"ERROR_STATE_QUERY_SETTING_FAILED","features":[1]},{"name":"ERROR_STATE_READ_COMPOSITE_SETTING_FAILED","features":[1]},{"name":"ERROR_STATE_READ_SETTING_FAILED","features":[1]},{"name":"ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_STATE_SET_VERSION_FAILED","features":[1]},{"name":"ERROR_STATE_STRUCTURED_RESET_FAILED","features":[1]},{"name":"ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED","features":[1]},{"name":"ERROR_STATE_WRITE_SETTING_FAILED","features":[1]},{"name":"ERROR_STATIC_INIT","features":[1]},{"name":"ERROR_STOPPED_ON_SYMLINK","features":[1]},{"name":"ERROR_STORAGE_LOST_DATA_PERSISTENCE","features":[1]},{"name":"ERROR_STORAGE_RESERVE_ALREADY_EXISTS","features":[1]},{"name":"ERROR_STORAGE_RESERVE_DOES_NOT_EXIST","features":[1]},{"name":"ERROR_STORAGE_RESERVE_ID_INVALID","features":[1]},{"name":"ERROR_STORAGE_RESERVE_NOT_EMPTY","features":[1]},{"name":"ERROR_STORAGE_STACK_ACCESS_DENIED","features":[1]},{"name":"ERROR_STORAGE_TOPOLOGY_ID_MISMATCH","features":[1]},{"name":"ERROR_STREAM_MINIVERSION_NOT_FOUND","features":[1]},{"name":"ERROR_STREAM_MINIVERSION_NOT_VALID","features":[1]},{"name":"ERROR_STRICT_CFG_VIOLATION","features":[1]},{"name":"ERROR_SUBST_TO_JOIN","features":[1]},{"name":"ERROR_SUBST_TO_SUBST","features":[1]},{"name":"ERROR_SUCCESS","features":[1]},{"name":"ERROR_SUCCESS_REBOOT_INITIATED","features":[1]},{"name":"ERROR_SUCCESS_REBOOT_REQUIRED","features":[1]},{"name":"ERROR_SUCCESS_RESTART_REQUIRED","features":[1]},{"name":"ERROR_SVHDX_ERROR_NOT_AVAILABLE","features":[1]},{"name":"ERROR_SVHDX_ERROR_STORED","features":[1]},{"name":"ERROR_SVHDX_NO_INITIATOR","features":[1]},{"name":"ERROR_SVHDX_RESERVATION_CONFLICT","features":[1]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[1]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[1]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[1]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[1]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[1]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[1]},{"name":"ERROR_SVHDX_VERSION_MISMATCH","features":[1]},{"name":"ERROR_SVHDX_WRONG_FILE_TYPE","features":[1]},{"name":"ERROR_SWAPERROR","features":[1]},{"name":"ERROR_SXS_ACTIVATION_CONTEXT_DISABLED","features":[1]},{"name":"ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[1]},{"name":"ERROR_SXS_ASSEMBLY_MISSING","features":[1]},{"name":"ERROR_SXS_ASSEMBLY_NOT_FOUND","features":[1]},{"name":"ERROR_SXS_ASSEMBLY_NOT_LOCKED","features":[1]},{"name":"ERROR_SXS_CANT_GEN_ACTCTX","features":[1]},{"name":"ERROR_SXS_COMPONENT_STORE_CORRUPT","features":[1]},{"name":"ERROR_SXS_CORRUPTION","features":[1]},{"name":"ERROR_SXS_CORRUPT_ACTIVATION_STACK","features":[1]},{"name":"ERROR_SXS_DUPLICATE_ACTIVATABLE_CLASS","features":[1]},{"name":"ERROR_SXS_DUPLICATE_ASSEMBLY_NAME","features":[1]},{"name":"ERROR_SXS_DUPLICATE_CLSID","features":[1]},{"name":"ERROR_SXS_DUPLICATE_DLL_NAME","features":[1]},{"name":"ERROR_SXS_DUPLICATE_IID","features":[1]},{"name":"ERROR_SXS_DUPLICATE_PROGID","features":[1]},{"name":"ERROR_SXS_DUPLICATE_TLBID","features":[1]},{"name":"ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME","features":[1]},{"name":"ERROR_SXS_EARLY_DEACTIVATION","features":[1]},{"name":"ERROR_SXS_FILE_HASH_MISMATCH","features":[1]},{"name":"ERROR_SXS_FILE_HASH_MISSING","features":[1]},{"name":"ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[1]},{"name":"ERROR_SXS_IDENTITIES_DIFFERENT","features":[1]},{"name":"ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[1]},{"name":"ERROR_SXS_IDENTITY_PARSE_ERROR","features":[1]},{"name":"ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN","features":[1]},{"name":"ERROR_SXS_INVALID_ACTCTXDATA_FORMAT","features":[1]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[1]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME","features":[1]},{"name":"ERROR_SXS_INVALID_DEACTIVATION","features":[1]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[1]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[1]},{"name":"ERROR_SXS_INVALID_XML_NAMESPACE_URI","features":[1]},{"name":"ERROR_SXS_KEY_NOT_FOUND","features":[1]},{"name":"ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[1]},{"name":"ERROR_SXS_MANIFEST_FORMAT_ERROR","features":[1]},{"name":"ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[1]},{"name":"ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE","features":[1]},{"name":"ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE","features":[1]},{"name":"ERROR_SXS_MANIFEST_PARSE_ERROR","features":[1]},{"name":"ERROR_SXS_MANIFEST_TOO_BIG","features":[1]},{"name":"ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[1]},{"name":"ERROR_SXS_MULTIPLE_DEACTIVATION","features":[1]},{"name":"ERROR_SXS_POLICY_PARSE_ERROR","features":[1]},{"name":"ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT","features":[1]},{"name":"ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[1]},{"name":"ERROR_SXS_PROCESS_TERMINATION_REQUESTED","features":[1]},{"name":"ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING","features":[1]},{"name":"ERROR_SXS_PROTECTION_CATALOG_NOT_VALID","features":[1]},{"name":"ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT","features":[1]},{"name":"ERROR_SXS_PROTECTION_RECOVERY_FAILED","features":[1]},{"name":"ERROR_SXS_RELEASE_ACTIVATION_CONTEXT","features":[1]},{"name":"ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[1]},{"name":"ERROR_SXS_SECTION_NOT_FOUND","features":[1]},{"name":"ERROR_SXS_SETTING_NOT_REGISTERED","features":[1]},{"name":"ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[1]},{"name":"ERROR_SXS_THREAD_QUERIES_DISABLED","features":[1]},{"name":"ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[1]},{"name":"ERROR_SXS_UNKNOWN_ENCODING","features":[1]},{"name":"ERROR_SXS_UNKNOWN_ENCODING_GROUP","features":[1]},{"name":"ERROR_SXS_UNTRANSLATABLE_HRESULT","features":[1]},{"name":"ERROR_SXS_VERSION_CONFLICT","features":[1]},{"name":"ERROR_SXS_WRONG_SECTION_TYPE","features":[1]},{"name":"ERROR_SXS_XML_E_BADCHARDATA","features":[1]},{"name":"ERROR_SXS_XML_E_BADCHARINSTRING","features":[1]},{"name":"ERROR_SXS_XML_E_BADNAMECHAR","features":[1]},{"name":"ERROR_SXS_XML_E_BADPEREFINSUBSET","features":[1]},{"name":"ERROR_SXS_XML_E_BADSTARTNAMECHAR","features":[1]},{"name":"ERROR_SXS_XML_E_BADXMLCASE","features":[1]},{"name":"ERROR_SXS_XML_E_BADXMLDECL","features":[1]},{"name":"ERROR_SXS_XML_E_COMMENTSYNTAX","features":[1]},{"name":"ERROR_SXS_XML_E_DUPLICATEATTRIBUTE","features":[1]},{"name":"ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE","features":[1]},{"name":"ERROR_SXS_XML_E_EXPECTINGTAGEND","features":[1]},{"name":"ERROR_SXS_XML_E_INCOMPLETE_ENCODING","features":[1]},{"name":"ERROR_SXS_XML_E_INTERNALERROR","features":[1]},{"name":"ERROR_SXS_XML_E_INVALIDATROOTLEVEL","features":[1]},{"name":"ERROR_SXS_XML_E_INVALIDENCODING","features":[1]},{"name":"ERROR_SXS_XML_E_INVALIDSWITCH","features":[1]},{"name":"ERROR_SXS_XML_E_INVALID_DECIMAL","features":[1]},{"name":"ERROR_SXS_XML_E_INVALID_HEXIDECIMAL","features":[1]},{"name":"ERROR_SXS_XML_E_INVALID_STANDALONE","features":[1]},{"name":"ERROR_SXS_XML_E_INVALID_UNICODE","features":[1]},{"name":"ERROR_SXS_XML_E_INVALID_VERSION","features":[1]},{"name":"ERROR_SXS_XML_E_MISSINGEQUALS","features":[1]},{"name":"ERROR_SXS_XML_E_MISSINGQUOTE","features":[1]},{"name":"ERROR_SXS_XML_E_MISSINGROOT","features":[1]},{"name":"ERROR_SXS_XML_E_MISSINGSEMICOLON","features":[1]},{"name":"ERROR_SXS_XML_E_MISSINGWHITESPACE","features":[1]},{"name":"ERROR_SXS_XML_E_MISSING_PAREN","features":[1]},{"name":"ERROR_SXS_XML_E_MULTIPLEROOTS","features":[1]},{"name":"ERROR_SXS_XML_E_MULTIPLE_COLONS","features":[1]},{"name":"ERROR_SXS_XML_E_RESERVEDNAMESPACE","features":[1]},{"name":"ERROR_SXS_XML_E_UNBALANCEDPAREN","features":[1]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCDATA","features":[1]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCOMMENT","features":[1]},{"name":"ERROR_SXS_XML_E_UNCLOSEDDECL","features":[1]},{"name":"ERROR_SXS_XML_E_UNCLOSEDENDTAG","features":[1]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTARTTAG","features":[1]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTRING","features":[1]},{"name":"ERROR_SXS_XML_E_UNCLOSEDTAG","features":[1]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDENDTAG","features":[1]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDEOF","features":[1]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_STANDALONE","features":[1]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE","features":[1]},{"name":"ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK","features":[1]},{"name":"ERROR_SXS_XML_E_XMLDECLSYNTAX","features":[1]},{"name":"ERROR_SYMLINK_CLASS_DISABLED","features":[1]},{"name":"ERROR_SYMLINK_NOT_SUPPORTED","features":[1]},{"name":"ERROR_SYNCHRONIZATION_REQUIRED","features":[1]},{"name":"ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED","features":[1]},{"name":"ERROR_SYSTEM_DEVICE_NOT_FOUND","features":[1]},{"name":"ERROR_SYSTEM_HIVE_TOO_LARGE","features":[1]},{"name":"ERROR_SYSTEM_IMAGE_BAD_SIGNATURE","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_INVALID_POLICY","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[1]},{"name":"ERROR_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[1]},{"name":"ERROR_SYSTEM_NEEDS_REMEDIATION","features":[1]},{"name":"ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[1]},{"name":"ERROR_SYSTEM_POWERSTATE_TRANSITION","features":[1]},{"name":"ERROR_SYSTEM_PROCESS_TERMINATED","features":[1]},{"name":"ERROR_SYSTEM_SHUTDOWN","features":[1]},{"name":"ERROR_SYSTEM_TRACE","features":[1]},{"name":"ERROR_TAG_NOT_FOUND","features":[1]},{"name":"ERROR_TAG_NOT_PRESENT","features":[1]},{"name":"ERROR_THREAD_1_INACTIVE","features":[1]},{"name":"ERROR_THREAD_ALREADY_IN_TASK","features":[1]},{"name":"ERROR_THREAD_MODE_ALREADY_BACKGROUND","features":[1]},{"name":"ERROR_THREAD_MODE_NOT_BACKGROUND","features":[1]},{"name":"ERROR_THREAD_NOT_IN_PROCESS","features":[1]},{"name":"ERROR_THREAD_WAS_SUSPENDED","features":[1]},{"name":"ERROR_TIERING_ALREADY_PROCESSING","features":[1]},{"name":"ERROR_TIERING_CANNOT_PIN_OBJECT","features":[1]},{"name":"ERROR_TIERING_FILE_IS_NOT_PINNED","features":[1]},{"name":"ERROR_TIERING_INVALID_FILE_ID","features":[1]},{"name":"ERROR_TIERING_NOT_SUPPORTED_ON_VOLUME","features":[1]},{"name":"ERROR_TIERING_STORAGE_TIER_NOT_FOUND","features":[1]},{"name":"ERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS","features":[1]},{"name":"ERROR_TIERING_WRONG_CLUSTER_NODE","features":[1]},{"name":"ERROR_TIMEOUT","features":[1]},{"name":"ERROR_TIMER_NOT_CANCELED","features":[1]},{"name":"ERROR_TIMER_RESOLUTION_NOT_SET","features":[1]},{"name":"ERROR_TIMER_RESUME_IGNORED","features":[1]},{"name":"ERROR_TIME_SENSITIVE_THREAD","features":[1]},{"name":"ERROR_TIME_SKEW","features":[1]},{"name":"ERROR_TLW_WITH_WSCHILD","features":[1]},{"name":"ERROR_TM_IDENTITY_MISMATCH","features":[1]},{"name":"ERROR_TM_INITIALIZATION_FAILED","features":[1]},{"name":"ERROR_TM_VOLATILE","features":[1]},{"name":"ERROR_TOKEN_ALREADY_IN_USE","features":[1]},{"name":"ERROR_TOO_MANY_CMDS","features":[1]},{"name":"ERROR_TOO_MANY_CONTEXT_IDS","features":[1]},{"name":"ERROR_TOO_MANY_DESCRIPTORS","features":[1]},{"name":"ERROR_TOO_MANY_LINKS","features":[1]},{"name":"ERROR_TOO_MANY_LUIDS_REQUESTED","features":[1]},{"name":"ERROR_TOO_MANY_MODULES","features":[1]},{"name":"ERROR_TOO_MANY_MUXWAITERS","features":[1]},{"name":"ERROR_TOO_MANY_NAMES","features":[1]},{"name":"ERROR_TOO_MANY_OPEN_FILES","features":[1]},{"name":"ERROR_TOO_MANY_POSTS","features":[1]},{"name":"ERROR_TOO_MANY_SECRETS","features":[1]},{"name":"ERROR_TOO_MANY_SEMAPHORES","features":[1]},{"name":"ERROR_TOO_MANY_SEM_REQUESTS","features":[1]},{"name":"ERROR_TOO_MANY_SESS","features":[1]},{"name":"ERROR_TOO_MANY_SIDS","features":[1]},{"name":"ERROR_TOO_MANY_TCBS","features":[1]},{"name":"ERROR_TOO_MANY_THREADS","features":[1]},{"name":"ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[1]},{"name":"ERROR_TRANSACTIONAL_CONFLICT","features":[1]},{"name":"ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[1]},{"name":"ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[1]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_FOUND","features":[1]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_ONLINE","features":[1]},{"name":"ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[1]},{"name":"ERROR_TRANSACTIONS_NOT_FROZEN","features":[1]},{"name":"ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[1]},{"name":"ERROR_TRANSACTION_ALREADY_ABORTED","features":[1]},{"name":"ERROR_TRANSACTION_ALREADY_COMMITTED","features":[1]},{"name":"ERROR_TRANSACTION_FREEZE_IN_PROGRESS","features":[1]},{"name":"ERROR_TRANSACTION_INTEGRITY_VIOLATED","features":[1]},{"name":"ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[1]},{"name":"ERROR_TRANSACTION_MUST_WRITETHROUGH","features":[1]},{"name":"ERROR_TRANSACTION_NOT_ACTIVE","features":[1]},{"name":"ERROR_TRANSACTION_NOT_ENLISTED","features":[1]},{"name":"ERROR_TRANSACTION_NOT_FOUND","features":[1]},{"name":"ERROR_TRANSACTION_NOT_JOINED","features":[1]},{"name":"ERROR_TRANSACTION_NOT_REQUESTED","features":[1]},{"name":"ERROR_TRANSACTION_NOT_ROOT","features":[1]},{"name":"ERROR_TRANSACTION_NO_SUPERIOR","features":[1]},{"name":"ERROR_TRANSACTION_OBJECT_EXPIRED","features":[1]},{"name":"ERROR_TRANSACTION_PROPAGATION_FAILED","features":[1]},{"name":"ERROR_TRANSACTION_RECORD_TOO_LONG","features":[1]},{"name":"ERROR_TRANSACTION_REQUEST_NOT_VALID","features":[1]},{"name":"ERROR_TRANSACTION_REQUIRED_PROMOTION","features":[1]},{"name":"ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[1]},{"name":"ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[1]},{"name":"ERROR_TRANSACTION_SUPERIOR_EXISTS","features":[1]},{"name":"ERROR_TRANSFORM_NOT_SUPPORTED","features":[1]},{"name":"ERROR_TRANSLATION_COMPLETE","features":[1]},{"name":"ERROR_TRANSPORT_FULL","features":[1]},{"name":"ERROR_TRUSTED_DOMAIN_FAILURE","features":[1]},{"name":"ERROR_TRUSTED_RELATIONSHIP_FAILURE","features":[1]},{"name":"ERROR_TRUST_FAILURE","features":[1]},{"name":"ERROR_TS_INCOMPATIBLE_SESSIONS","features":[1]},{"name":"ERROR_TS_VIDEO_SUBSYSTEM_ERROR","features":[1]},{"name":"ERROR_TXF_ATTRIBUTE_CORRUPT","features":[1]},{"name":"ERROR_TXF_DIR_NOT_EMPTY","features":[1]},{"name":"ERROR_TXF_METADATA_ALREADY_PRESENT","features":[1]},{"name":"ERROR_UNABLE_TO_CLEAN","features":[1]},{"name":"ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA","features":[1]},{"name":"ERROR_UNABLE_TO_INVENTORY_DRIVE","features":[1]},{"name":"ERROR_UNABLE_TO_INVENTORY_SLOT","features":[1]},{"name":"ERROR_UNABLE_TO_INVENTORY_TRANSPORT","features":[1]},{"name":"ERROR_UNABLE_TO_LOAD_MEDIUM","features":[1]},{"name":"ERROR_UNABLE_TO_LOCK_MEDIA","features":[1]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT","features":[1]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT_2","features":[1]},{"name":"ERROR_UNABLE_TO_REMOVE_REPLACED","features":[1]},{"name":"ERROR_UNABLE_TO_UNLOAD_MEDIA","features":[1]},{"name":"ERROR_UNDEFINED_CHARACTER","features":[1]},{"name":"ERROR_UNDEFINED_SCOPE","features":[1]},{"name":"ERROR_UNEXPECTED_MM_CREATE_ERR","features":[1]},{"name":"ERROR_UNEXPECTED_MM_EXTEND_ERR","features":[1]},{"name":"ERROR_UNEXPECTED_MM_MAP_ERROR","features":[1]},{"name":"ERROR_UNEXPECTED_NTCACHEMANAGER_ERROR","features":[1]},{"name":"ERROR_UNEXPECTED_OMID","features":[1]},{"name":"ERROR_UNEXP_NET_ERR","features":[1]},{"name":"ERROR_UNHANDLED_EXCEPTION","features":[1]},{"name":"ERROR_UNIDENTIFIED_ERROR","features":[1]},{"name":"ERROR_UNKNOWN_COMPONENT","features":[1]},{"name":"ERROR_UNKNOWN_EXCEPTION","features":[1]},{"name":"ERROR_UNKNOWN_FEATURE","features":[1]},{"name":"ERROR_UNKNOWN_PATCH","features":[1]},{"name":"ERROR_UNKNOWN_PORT","features":[1]},{"name":"ERROR_UNKNOWN_PRINTER_DRIVER","features":[1]},{"name":"ERROR_UNKNOWN_PRINTPROCESSOR","features":[1]},{"name":"ERROR_UNKNOWN_PRINT_MONITOR","features":[1]},{"name":"ERROR_UNKNOWN_PRODUCT","features":[1]},{"name":"ERROR_UNKNOWN_PROPERTY","features":[1]},{"name":"ERROR_UNKNOWN_PROTOCOL_ID","features":[1]},{"name":"ERROR_UNKNOWN_REVISION","features":[1]},{"name":"ERROR_UNMAPPED_SUBSTITUTION_STRING","features":[1]},{"name":"ERROR_UNRECOGNIZED_MEDIA","features":[1]},{"name":"ERROR_UNRECOGNIZED_VOLUME","features":[1]},{"name":"ERROR_UNRECOVERABLE_STACK_OVERFLOW","features":[1]},{"name":"ERROR_UNSATISFIED_DEPENDENCIES","features":[1]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_CONTENT","features":[1]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[1]},{"name":"ERROR_UNSUPPORTED_COMPRESSION","features":[1]},{"name":"ERROR_UNSUPPORTED_TYPE","features":[1]},{"name":"ERROR_UNTRUSTED_MOUNT_POINT","features":[1]},{"name":"ERROR_UNWIND","features":[1]},{"name":"ERROR_UNWIND_CONSOLIDATE","features":[1]},{"name":"ERROR_UPDATE_IN_PROGRESS","features":[1]},{"name":"ERROR_USER_APC","features":[1]},{"name":"ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[1]},{"name":"ERROR_USER_EXISTS","features":[1]},{"name":"ERROR_USER_LIMIT","features":[1]},{"name":"ERROR_USER_MAPPED_FILE","features":[1]},{"name":"ERROR_USER_PROFILE_LOAD","features":[1]},{"name":"ERROR_VALIDATE_CONTINUE","features":[1]},{"name":"ERROR_VC_DISCONNECTED","features":[1]},{"name":"ERROR_VDM_DISALLOWED","features":[1]},{"name":"ERROR_VDM_HARD_ERROR","features":[1]},{"name":"ERROR_VERIFIER_STOP","features":[1]},{"name":"ERROR_VERSION_PARSE_ERROR","features":[1]},{"name":"ERROR_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[1]},{"name":"ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[1]},{"name":"ERROR_VHD_BITMAP_MISMATCH","features":[1]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_FAILURE","features":[1]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[1]},{"name":"ERROR_VHD_CHANGE_TRACKING_DISABLED","features":[1]},{"name":"ERROR_VHD_CHILD_PARENT_ID_MISMATCH","features":[1]},{"name":"ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[1]},{"name":"ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[1]},{"name":"ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[1]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[1]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[1]},{"name":"ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[1]},{"name":"ERROR_VHD_DRIVE_FOOTER_CORRUPT","features":[1]},{"name":"ERROR_VHD_DRIVE_FOOTER_MISSING","features":[1]},{"name":"ERROR_VHD_FORMAT_UNKNOWN","features":[1]},{"name":"ERROR_VHD_FORMAT_UNSUPPORTED_VERSION","features":[1]},{"name":"ERROR_VHD_INVALID_BLOCK_SIZE","features":[1]},{"name":"ERROR_VHD_INVALID_CHANGE_TRACKING_ID","features":[1]},{"name":"ERROR_VHD_INVALID_FILE_SIZE","features":[1]},{"name":"ERROR_VHD_INVALID_SIZE","features":[1]},{"name":"ERROR_VHD_INVALID_STATE","features":[1]},{"name":"ERROR_VHD_INVALID_TYPE","features":[1]},{"name":"ERROR_VHD_METADATA_FULL","features":[1]},{"name":"ERROR_VHD_METADATA_READ_FAILURE","features":[1]},{"name":"ERROR_VHD_METADATA_WRITE_FAILURE","features":[1]},{"name":"ERROR_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[1]},{"name":"ERROR_VHD_PARENT_VHD_ACCESS_DENIED","features":[1]},{"name":"ERROR_VHD_PARENT_VHD_NOT_FOUND","features":[1]},{"name":"ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[1]},{"name":"ERROR_VHD_SHARED","features":[1]},{"name":"ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[1]},{"name":"ERROR_VHD_SPARSE_HEADER_CORRUPT","features":[1]},{"name":"ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[1]},{"name":"ERROR_VHD_UNEXPECTED_ID","features":[1]},{"name":"ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[1]},{"name":"ERROR_VID_DUPLICATE_HANDLER","features":[1]},{"name":"ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[1]},{"name":"ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[1]},{"name":"ERROR_VID_HANDLER_NOT_PRESENT","features":[1]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[1]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[1]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[1]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[1]},{"name":"ERROR_VID_INVALID_CHILD_GPA_PAGE_SET","features":[1]},{"name":"ERROR_VID_INVALID_GPA_RANGE_HANDLE","features":[1]},{"name":"ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[1]},{"name":"ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[1]},{"name":"ERROR_VID_INVALID_NUMA_NODE_INDEX","features":[1]},{"name":"ERROR_VID_INVALID_NUMA_SETTINGS","features":[1]},{"name":"ERROR_VID_INVALID_OBJECT_NAME","features":[1]},{"name":"ERROR_VID_INVALID_PPM_HANDLE","features":[1]},{"name":"ERROR_VID_INVALID_PROCESSOR_STATE","features":[1]},{"name":"ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[1]},{"name":"ERROR_VID_MBPS_ARE_LOCKED","features":[1]},{"name":"ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[1]},{"name":"ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[1]},{"name":"ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[1]},{"name":"ERROR_VID_MB_STILL_REFERENCED","features":[1]},{"name":"ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[1]},{"name":"ERROR_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[1]},{"name":"ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[1]},{"name":"ERROR_VID_MESSAGE_QUEUE_CLOSED","features":[1]},{"name":"ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[1]},{"name":"ERROR_VID_MMIO_RANGE_DESTROYED","features":[1]},{"name":"ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[1]},{"name":"ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[1]},{"name":"ERROR_VID_PAGE_RANGE_OVERFLOW","features":[1]},{"name":"ERROR_VID_PARTITION_ALREADY_EXISTS","features":[1]},{"name":"ERROR_VID_PARTITION_DOES_NOT_EXIST","features":[1]},{"name":"ERROR_VID_PARTITION_NAME_NOT_FOUND","features":[1]},{"name":"ERROR_VID_PARTITION_NAME_TOO_LONG","features":[1]},{"name":"ERROR_VID_PROCESS_ALREADY_SET","features":[1]},{"name":"ERROR_VID_QUEUE_FULL","features":[1]},{"name":"ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[1]},{"name":"ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[1]},{"name":"ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[1]},{"name":"ERROR_VID_SAVED_STATE_CORRUPT","features":[1]},{"name":"ERROR_VID_SAVED_STATE_INCOMPATIBLE","features":[1]},{"name":"ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[1]},{"name":"ERROR_VID_STOP_PENDING","features":[1]},{"name":"ERROR_VID_TOO_MANY_HANDLERS","features":[1]},{"name":"ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[1]},{"name":"ERROR_VID_VTL_ACCESS_DENIED","features":[1]},{"name":"ERROR_VIRTDISK_DISK_ALREADY_OWNED","features":[1]},{"name":"ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[1]},{"name":"ERROR_VIRTDISK_NOT_VIRTUAL_DISK","features":[1]},{"name":"ERROR_VIRTDISK_PROVIDER_NOT_FOUND","features":[1]},{"name":"ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[1]},{"name":"ERROR_VIRTUAL_DISK_LIMITATION","features":[1]},{"name":"ERROR_VIRUS_DELETED","features":[1]},{"name":"ERROR_VIRUS_INFECTED","features":[1]},{"name":"ERROR_VMCOMPUTE_CONNECTION_CLOSED","features":[1]},{"name":"ERROR_VMCOMPUTE_CONNECT_FAILED","features":[1]},{"name":"ERROR_VMCOMPUTE_HYPERV_NOT_INSTALLED","features":[1]},{"name":"ERROR_VMCOMPUTE_IMAGE_MISMATCH","features":[1]},{"name":"ERROR_VMCOMPUTE_INVALID_JSON","features":[1]},{"name":"ERROR_VMCOMPUTE_INVALID_LAYER","features":[1]},{"name":"ERROR_VMCOMPUTE_INVALID_STATE","features":[1]},{"name":"ERROR_VMCOMPUTE_OPERATION_PENDING","features":[1]},{"name":"ERROR_VMCOMPUTE_PROTOCOL_ERROR","features":[1]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_EXISTS","features":[1]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED","features":[1]},{"name":"ERROR_VMCOMPUTE_SYSTEM_NOT_FOUND","features":[1]},{"name":"ERROR_VMCOMPUTE_TERMINATED","features":[1]},{"name":"ERROR_VMCOMPUTE_TERMINATED_DURING_START","features":[1]},{"name":"ERROR_VMCOMPUTE_TIMEOUT","features":[1]},{"name":"ERROR_VMCOMPUTE_TOO_MANY_NOTIFICATIONS","features":[1]},{"name":"ERROR_VMCOMPUTE_UNEXPECTED_EXIT","features":[1]},{"name":"ERROR_VMCOMPUTE_UNKNOWN_MESSAGE","features":[1]},{"name":"ERROR_VMCOMPUTE_UNSUPPORTED_PROTOCOL_VERSION","features":[1]},{"name":"ERROR_VMCOMPUTE_WINDOWS_INSIDER_REQUIRED","features":[1]},{"name":"ERROR_VNET_VIRTUAL_SWITCH_NAME_NOT_FOUND","features":[1]},{"name":"ERROR_VOLMGR_ALL_DISKS_FAILED","features":[1]},{"name":"ERROR_VOLMGR_BAD_BOOT_DISK","features":[1]},{"name":"ERROR_VOLMGR_DATABASE_FULL","features":[1]},{"name":"ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[1]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[1]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[1]},{"name":"ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[1]},{"name":"ERROR_VOLMGR_DISK_DUPLICATE","features":[1]},{"name":"ERROR_VOLMGR_DISK_DYNAMIC","features":[1]},{"name":"ERROR_VOLMGR_DISK_ID_INVALID","features":[1]},{"name":"ERROR_VOLMGR_DISK_INVALID","features":[1]},{"name":"ERROR_VOLMGR_DISK_LAST_VOTER","features":[1]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_INVALID","features":[1]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[1]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[1]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[1]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[1]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[1]},{"name":"ERROR_VOLMGR_DISK_MISSING","features":[1]},{"name":"ERROR_VOLMGR_DISK_NOT_EMPTY","features":[1]},{"name":"ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[1]},{"name":"ERROR_VOLMGR_DISK_REVECTORING_FAILED","features":[1]},{"name":"ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[1]},{"name":"ERROR_VOLMGR_DISK_SET_NOT_CONTAINED","features":[1]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[1]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[1]},{"name":"ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[1]},{"name":"ERROR_VOLMGR_EXTENT_ALREADY_USED","features":[1]},{"name":"ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[1]},{"name":"ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[1]},{"name":"ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[1]},{"name":"ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[1]},{"name":"ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[1]},{"name":"ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[1]},{"name":"ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[1]},{"name":"ERROR_VOLMGR_INCOMPLETE_REGENERATION","features":[1]},{"name":"ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[1]},{"name":"ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[1]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[1]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_INVALID","features":[1]},{"name":"ERROR_VOLMGR_MEMBER_IN_SYNC","features":[1]},{"name":"ERROR_VOLMGR_MEMBER_MISSING","features":[1]},{"name":"ERROR_VOLMGR_MEMBER_NOT_DETACHED","features":[1]},{"name":"ERROR_VOLMGR_MEMBER_REGENERATING","features":[1]},{"name":"ERROR_VOLMGR_MIRROR_NOT_SUPPORTED","features":[1]},{"name":"ERROR_VOLMGR_NOTIFICATION_RESET","features":[1]},{"name":"ERROR_VOLMGR_NOT_PRIMARY_PACK","features":[1]},{"name":"ERROR_VOLMGR_NO_REGISTERED_USERS","features":[1]},{"name":"ERROR_VOLMGR_NO_SUCH_USER","features":[1]},{"name":"ERROR_VOLMGR_NO_VALID_LOG_COPIES","features":[1]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[1]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[1]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[1]},{"name":"ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[1]},{"name":"ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[1]},{"name":"ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[1]},{"name":"ERROR_VOLMGR_PACK_CONFIG_OFFLINE","features":[1]},{"name":"ERROR_VOLMGR_PACK_CONFIG_ONLINE","features":[1]},{"name":"ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[1]},{"name":"ERROR_VOLMGR_PACK_DUPLICATE","features":[1]},{"name":"ERROR_VOLMGR_PACK_HAS_QUORUM","features":[1]},{"name":"ERROR_VOLMGR_PACK_ID_INVALID","features":[1]},{"name":"ERROR_VOLMGR_PACK_INVALID","features":[1]},{"name":"ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[1]},{"name":"ERROR_VOLMGR_PACK_NAME_INVALID","features":[1]},{"name":"ERROR_VOLMGR_PACK_OFFLINE","features":[1]},{"name":"ERROR_VOLMGR_PACK_WITHOUT_QUORUM","features":[1]},{"name":"ERROR_VOLMGR_PARTITION_STYLE_INVALID","features":[1]},{"name":"ERROR_VOLMGR_PARTITION_UPDATE_FAILED","features":[1]},{"name":"ERROR_VOLMGR_PLEX_INDEX_DUPLICATE","features":[1]},{"name":"ERROR_VOLMGR_PLEX_INDEX_INVALID","features":[1]},{"name":"ERROR_VOLMGR_PLEX_IN_SYNC","features":[1]},{"name":"ERROR_VOLMGR_PLEX_LAST_ACTIVE","features":[1]},{"name":"ERROR_VOLMGR_PLEX_MISSING","features":[1]},{"name":"ERROR_VOLMGR_PLEX_NOT_RAID5","features":[1]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE","features":[1]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[1]},{"name":"ERROR_VOLMGR_PLEX_REGENERATING","features":[1]},{"name":"ERROR_VOLMGR_PLEX_TYPE_INVALID","features":[1]},{"name":"ERROR_VOLMGR_PRIMARY_PACK_PRESENT","features":[1]},{"name":"ERROR_VOLMGR_RAID5_NOT_SUPPORTED","features":[1]},{"name":"ERROR_VOLMGR_STRUCTURE_SIZE_INVALID","features":[1]},{"name":"ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[1]},{"name":"ERROR_VOLMGR_TRANSACTION_IN_PROGRESS","features":[1]},{"name":"ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_ID_INVALID","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_INVALID","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_MIRRORED","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_NOT_MIRRORED","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_NOT_RETAINED","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_OFFLINE","features":[1]},{"name":"ERROR_VOLMGR_VOLUME_RETAINED","features":[1]},{"name":"ERROR_VOLSNAP_ACTIVATION_TIMEOUT","features":[1]},{"name":"ERROR_VOLSNAP_BOOTFILE_NOT_VALID","features":[1]},{"name":"ERROR_VOLSNAP_HIBERNATE_READY","features":[1]},{"name":"ERROR_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[1]},{"name":"ERROR_VOLSNAP_PREPARE_HIBERNATE","features":[1]},{"name":"ERROR_VOLUME_CONTAINS_SYS_FILES","features":[1]},{"name":"ERROR_VOLUME_DIRTY","features":[1]},{"name":"ERROR_VOLUME_MOUNTED","features":[1]},{"name":"ERROR_VOLUME_NOT_CLUSTER_ALIGNED","features":[1]},{"name":"ERROR_VOLUME_NOT_SIS_ENABLED","features":[1]},{"name":"ERROR_VOLUME_NOT_SUPPORTED","features":[1]},{"name":"ERROR_VOLUME_NOT_SUPPORT_EFS","features":[1]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED","features":[1]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[1]},{"name":"ERROR_VOLUME_UPGRADE_NOT_NEEDED","features":[1]},{"name":"ERROR_VOLUME_UPGRADE_PENDING","features":[1]},{"name":"ERROR_VOLUME_WRITE_ACCESS_DENIED","features":[1]},{"name":"ERROR_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[1]},{"name":"ERROR_VRF_VOLATILE_NMI_REGISTERED","features":[1]},{"name":"ERROR_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[1]},{"name":"ERROR_VRF_VOLATILE_NOT_STOPPABLE","features":[1]},{"name":"ERROR_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[1]},{"name":"ERROR_VRF_VOLATILE_PROTECTED_DRIVER","features":[1]},{"name":"ERROR_VRF_VOLATILE_SAFE_MODE","features":[1]},{"name":"ERROR_VRF_VOLATILE_SETTINGS_CONFLICT","features":[1]},{"name":"ERROR_VSMB_SAVED_STATE_CORRUPT","features":[1]},{"name":"ERROR_VSMB_SAVED_STATE_FILE_NOT_FOUND","features":[1]},{"name":"ERROR_VSM_DMA_PROTECTION_NOT_IN_USE","features":[1]},{"name":"ERROR_VSM_NOT_INITIALIZED","features":[1]},{"name":"ERROR_WAIT_1","features":[1]},{"name":"ERROR_WAIT_2","features":[1]},{"name":"ERROR_WAIT_3","features":[1]},{"name":"ERROR_WAIT_63","features":[1]},{"name":"ERROR_WAIT_FOR_OPLOCK","features":[1]},{"name":"ERROR_WAIT_NO_CHILDREN","features":[1]},{"name":"ERROR_WAKE_SYSTEM","features":[1]},{"name":"ERROR_WAKE_SYSTEM_DEBUGGER","features":[1]},{"name":"ERROR_WAS_LOCKED","features":[1]},{"name":"ERROR_WAS_UNLOCKED","features":[1]},{"name":"ERROR_WEAK_WHFBKEY_BLOCKED","features":[1]},{"name":"ERROR_WINDOW_NOT_COMBOBOX","features":[1]},{"name":"ERROR_WINDOW_NOT_DIALOG","features":[1]},{"name":"ERROR_WINDOW_OF_OTHER_THREAD","features":[1]},{"name":"ERROR_WINS_INTERNAL","features":[1]},{"name":"ERROR_WIP_ENCRYPTION_FAILED","features":[1]},{"name":"ERROR_WMI_ALREADY_DISABLED","features":[1]},{"name":"ERROR_WMI_ALREADY_ENABLED","features":[1]},{"name":"ERROR_WMI_DP_FAILED","features":[1]},{"name":"ERROR_WMI_DP_NOT_FOUND","features":[1]},{"name":"ERROR_WMI_GUID_DISCONNECTED","features":[1]},{"name":"ERROR_WMI_GUID_NOT_FOUND","features":[1]},{"name":"ERROR_WMI_INSTANCE_NOT_FOUND","features":[1]},{"name":"ERROR_WMI_INVALID_MOF","features":[1]},{"name":"ERROR_WMI_INVALID_REGINFO","features":[1]},{"name":"ERROR_WMI_ITEMID_NOT_FOUND","features":[1]},{"name":"ERROR_WMI_READ_ONLY","features":[1]},{"name":"ERROR_WMI_SERVER_UNAVAILABLE","features":[1]},{"name":"ERROR_WMI_SET_FAILURE","features":[1]},{"name":"ERROR_WMI_TRY_AGAIN","features":[1]},{"name":"ERROR_WMI_UNRESOLVED_INSTANCE_REF","features":[1]},{"name":"ERROR_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[1]},{"name":"ERROR_WOF_WIM_HEADER_CORRUPT","features":[1]},{"name":"ERROR_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[1]},{"name":"ERROR_WORKING_SET_QUOTA","features":[1]},{"name":"ERROR_WOW_ASSERTION","features":[1]},{"name":"ERROR_WRITE_FAULT","features":[1]},{"name":"ERROR_WRITE_PROTECT","features":[1]},{"name":"ERROR_WRONG_COMPARTMENT","features":[1]},{"name":"ERROR_WRONG_DISK","features":[1]},{"name":"ERROR_WRONG_EFS","features":[1]},{"name":"ERROR_WRONG_INF_STYLE","features":[1]},{"name":"ERROR_WRONG_INF_TYPE","features":[1]},{"name":"ERROR_WRONG_PASSWORD","features":[1]},{"name":"ERROR_WRONG_TARGET_NAME","features":[1]},{"name":"ERROR_WX86_ERROR","features":[1]},{"name":"ERROR_WX86_WARNING","features":[1]},{"name":"ERROR_XMLDSIG_ERROR","features":[1]},{"name":"ERROR_XML_ENCODING_MISMATCH","features":[1]},{"name":"ERROR_XML_PARSE_ERROR","features":[1]},{"name":"EVENT_E_ALL_SUBSCRIBERS_FAILED","features":[1]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT","features":[1]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT","features":[1]},{"name":"EVENT_E_COMPLUS_NOT_INSTALLED","features":[1]},{"name":"EVENT_E_FIRST","features":[1]},{"name":"EVENT_E_INTERNALERROR","features":[1]},{"name":"EVENT_E_INTERNALEXCEPTION","features":[1]},{"name":"EVENT_E_INVALID_EVENT_CLASS_PARTITION","features":[1]},{"name":"EVENT_E_INVALID_PER_USER_SID","features":[1]},{"name":"EVENT_E_LAST","features":[1]},{"name":"EVENT_E_MISSING_EVENTCLASS","features":[1]},{"name":"EVENT_E_NOT_ALL_REMOVED","features":[1]},{"name":"EVENT_E_PER_USER_SID_NOT_LOGGED_ON","features":[1]},{"name":"EVENT_E_QUERYFIELD","features":[1]},{"name":"EVENT_E_QUERYSYNTAX","features":[1]},{"name":"EVENT_E_TOO_MANY_METHODS","features":[1]},{"name":"EVENT_E_USER_EXCEPTION","features":[1]},{"name":"EVENT_S_FIRST","features":[1]},{"name":"EVENT_S_LAST","features":[1]},{"name":"EVENT_S_NOSUBSCRIBERS","features":[1]},{"name":"EVENT_S_SOME_SUBSCRIBERS_FAILED","features":[1]},{"name":"EXCEPTION_ACCESS_VIOLATION","features":[1]},{"name":"EXCEPTION_ARRAY_BOUNDS_EXCEEDED","features":[1]},{"name":"EXCEPTION_BREAKPOINT","features":[1]},{"name":"EXCEPTION_DATATYPE_MISALIGNMENT","features":[1]},{"name":"EXCEPTION_FLT_DENORMAL_OPERAND","features":[1]},{"name":"EXCEPTION_FLT_DIVIDE_BY_ZERO","features":[1]},{"name":"EXCEPTION_FLT_INEXACT_RESULT","features":[1]},{"name":"EXCEPTION_FLT_INVALID_OPERATION","features":[1]},{"name":"EXCEPTION_FLT_OVERFLOW","features":[1]},{"name":"EXCEPTION_FLT_STACK_CHECK","features":[1]},{"name":"EXCEPTION_FLT_UNDERFLOW","features":[1]},{"name":"EXCEPTION_GUARD_PAGE","features":[1]},{"name":"EXCEPTION_ILLEGAL_INSTRUCTION","features":[1]},{"name":"EXCEPTION_INT_DIVIDE_BY_ZERO","features":[1]},{"name":"EXCEPTION_INT_OVERFLOW","features":[1]},{"name":"EXCEPTION_INVALID_DISPOSITION","features":[1]},{"name":"EXCEPTION_INVALID_HANDLE","features":[1]},{"name":"EXCEPTION_IN_PAGE_ERROR","features":[1]},{"name":"EXCEPTION_NONCONTINUABLE_EXCEPTION","features":[1]},{"name":"EXCEPTION_POSSIBLE_DEADLOCK","features":[1]},{"name":"EXCEPTION_PRIV_INSTRUCTION","features":[1]},{"name":"EXCEPTION_SINGLE_STEP","features":[1]},{"name":"EXCEPTION_SPAPI_UNRECOVERABLE_STACK_OVERFLOW","features":[1]},{"name":"EXCEPTION_STACK_OVERFLOW","features":[1]},{"name":"E_ABORT","features":[1]},{"name":"E_ACCESSDENIED","features":[1]},{"name":"E_APPLICATION_ACTIVATION_EXEC_FAILURE","features":[1]},{"name":"E_APPLICATION_ACTIVATION_TIMED_OUT","features":[1]},{"name":"E_APPLICATION_EXITING","features":[1]},{"name":"E_APPLICATION_MANAGER_NOT_RUNNING","features":[1]},{"name":"E_APPLICATION_NOT_REGISTERED","features":[1]},{"name":"E_APPLICATION_TEMPORARY_LICENSE_ERROR","features":[1]},{"name":"E_APPLICATION_TRIAL_LICENSE_EXPIRED","features":[1]},{"name":"E_APPLICATION_VIEW_EXITING","features":[1]},{"name":"E_ASYNC_OPERATION_NOT_STARTED","features":[1]},{"name":"E_AUDIO_ENGINE_NODE_NOT_FOUND","features":[1]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND","features":[1]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG","features":[1]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[1]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[1]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION","features":[1]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[1]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES","features":[1]},{"name":"E_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[1]},{"name":"E_BLUETOOTH_ATT_INVALID_HANDLE","features":[1]},{"name":"E_BLUETOOTH_ATT_INVALID_OFFSET","features":[1]},{"name":"E_BLUETOOTH_ATT_INVALID_PDU","features":[1]},{"name":"E_BLUETOOTH_ATT_PREPARE_QUEUE_FULL","features":[1]},{"name":"E_BLUETOOTH_ATT_READ_NOT_PERMITTED","features":[1]},{"name":"E_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED","features":[1]},{"name":"E_BLUETOOTH_ATT_UNKNOWN_ERROR","features":[1]},{"name":"E_BLUETOOTH_ATT_UNLIKELY","features":[1]},{"name":"E_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[1]},{"name":"E_BLUETOOTH_ATT_WRITE_NOT_PERMITTED","features":[1]},{"name":"E_BOUNDS","features":[1]},{"name":"E_CHANGED_STATE","features":[1]},{"name":"E_ELEVATED_ACTIVATION_NOT_SUPPORTED","features":[1]},{"name":"E_FAIL","features":[1]},{"name":"E_FULL_ADMIN_NOT_SUPPORTED","features":[1]},{"name":"E_HANDLE","features":[1]},{"name":"E_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[1]},{"name":"E_HDAUDIO_EMPTY_CONNECTION_LIST","features":[1]},{"name":"E_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[1]},{"name":"E_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[1]},{"name":"E_ILLEGAL_DELEGATE_ASSIGNMENT","features":[1]},{"name":"E_ILLEGAL_METHOD_CALL","features":[1]},{"name":"E_ILLEGAL_STATE_CHANGE","features":[1]},{"name":"E_INVALIDARG","features":[1]},{"name":"E_INVALID_PROTOCOL_FORMAT","features":[1]},{"name":"E_INVALID_PROTOCOL_OPERATION","features":[1]},{"name":"E_MBN_BAD_SIM","features":[1]},{"name":"E_MBN_CONTEXT_NOT_ACTIVATED","features":[1]},{"name":"E_MBN_DATA_CLASS_NOT_AVAILABLE","features":[1]},{"name":"E_MBN_DEFAULT_PROFILE_EXIST","features":[1]},{"name":"E_MBN_FAILURE","features":[1]},{"name":"E_MBN_INVALID_ACCESS_STRING","features":[1]},{"name":"E_MBN_INVALID_CACHE","features":[1]},{"name":"E_MBN_INVALID_PROFILE","features":[1]},{"name":"E_MBN_MAX_ACTIVATED_CONTEXTS","features":[1]},{"name":"E_MBN_NOT_REGISTERED","features":[1]},{"name":"E_MBN_PACKET_SVC_DETACHED","features":[1]},{"name":"E_MBN_PIN_DISABLED","features":[1]},{"name":"E_MBN_PIN_NOT_SUPPORTED","features":[1]},{"name":"E_MBN_PIN_REQUIRED","features":[1]},{"name":"E_MBN_PROVIDERS_NOT_FOUND","features":[1]},{"name":"E_MBN_PROVIDER_NOT_VISIBLE","features":[1]},{"name":"E_MBN_RADIO_POWER_OFF","features":[1]},{"name":"E_MBN_SERVICE_NOT_ACTIVATED","features":[1]},{"name":"E_MBN_SIM_NOT_INSERTED","features":[1]},{"name":"E_MBN_SMS_ENCODING_NOT_SUPPORTED","features":[1]},{"name":"E_MBN_SMS_FILTER_NOT_SUPPORTED","features":[1]},{"name":"E_MBN_SMS_FORMAT_NOT_SUPPORTED","features":[1]},{"name":"E_MBN_SMS_INVALID_MEMORY_INDEX","features":[1]},{"name":"E_MBN_SMS_LANG_NOT_SUPPORTED","features":[1]},{"name":"E_MBN_SMS_MEMORY_FAILURE","features":[1]},{"name":"E_MBN_SMS_MEMORY_FULL","features":[1]},{"name":"E_MBN_SMS_NETWORK_TIMEOUT","features":[1]},{"name":"E_MBN_SMS_OPERATION_NOT_ALLOWED","features":[1]},{"name":"E_MBN_SMS_UNKNOWN_SMSC_ADDRESS","features":[1]},{"name":"E_MBN_VOICE_CALL_IN_PROGRESS","features":[1]},{"name":"E_MONITOR_RESOLUTION_TOO_LOW","features":[1]},{"name":"E_MULTIPLE_EXTENSIONS_FOR_APPLICATION","features":[1]},{"name":"E_MULTIPLE_PACKAGES_FOR_FAMILY","features":[1]},{"name":"E_NOINTERFACE","features":[1]},{"name":"E_NOTIMPL","features":[1]},{"name":"E_OUTOFMEMORY","features":[1]},{"name":"E_POINTER","features":[1]},{"name":"E_PROTOCOL_EXTENSIONS_NOT_SUPPORTED","features":[1]},{"name":"E_PROTOCOL_VERSION_NOT_SUPPORTED","features":[1]},{"name":"E_SKYDRIVE_FILE_NOT_UPLOADED","features":[1]},{"name":"E_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX","features":[1]},{"name":"E_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED","features":[1]},{"name":"E_SKYDRIVE_ROOT_TARGET_OVERLAP","features":[1]},{"name":"E_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED","features":[1]},{"name":"E_SKYDRIVE_UPDATE_AVAILABILITY_FAIL","features":[1]},{"name":"E_STRING_NOT_NULL_TERMINATED","features":[1]},{"name":"E_SUBPROTOCOL_NOT_SUPPORTED","features":[1]},{"name":"E_SYNCENGINE_CLIENT_UPDATE_NEEDED","features":[1]},{"name":"E_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN","features":[1]},{"name":"E_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA","features":[1]},{"name":"E_SYNCENGINE_FILE_SIZE_OVER_LIMIT","features":[1]},{"name":"E_SYNCENGINE_FILE_SYNC_PARTNER_ERROR","features":[1]},{"name":"E_SYNCENGINE_FOLDER_INACCESSIBLE","features":[1]},{"name":"E_SYNCENGINE_FOLDER_IN_REDIRECTION","features":[1]},{"name":"E_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED","features":[1]},{"name":"E_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED","features":[1]},{"name":"E_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED","features":[1]},{"name":"E_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED","features":[1]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE","features":[1]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR","features":[1]},{"name":"E_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED","features":[1]},{"name":"E_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE","features":[1]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_BLOCKED","features":[1]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED","features":[1]},{"name":"E_SYNCENGINE_SYNC_PAUSED_BY_SERVICE","features":[1]},{"name":"E_SYNCENGINE_UNKNOWN_SERVICE_ERROR","features":[1]},{"name":"E_SYNCENGINE_UNSUPPORTED_FILE_NAME","features":[1]},{"name":"E_SYNCENGINE_UNSUPPORTED_FOLDER_NAME","features":[1]},{"name":"E_SYNCENGINE_UNSUPPORTED_MARKET","features":[1]},{"name":"E_SYNCENGINE_UNSUPPORTED_REPARSE_POINT","features":[1]},{"name":"E_UAC_DISABLED","features":[1]},{"name":"E_UNEXPECTED","features":[1]},{"name":"FACILITY_ACPI_ERROR_CODE","features":[1]},{"name":"FACILITY_APP_EXEC","features":[1]},{"name":"FACILITY_AUDIO_KERNEL","features":[1]},{"name":"FACILITY_BCD_ERROR_CODE","features":[1]},{"name":"FACILITY_BTH_ATT","features":[1]},{"name":"FACILITY_CLUSTER_ERROR_CODE","features":[1]},{"name":"FACILITY_CODCLASS_ERROR_CODE","features":[1]},{"name":"FACILITY_COMMONLOG","features":[1]},{"name":"FACILITY_DEBUGGER","features":[1]},{"name":"FACILITY_DRIVER_FRAMEWORK","features":[1]},{"name":"FACILITY_FILTER_MANAGER","features":[1]},{"name":"FACILITY_FIREWIRE_ERROR_CODE","features":[1]},{"name":"FACILITY_FVE_ERROR_CODE","features":[1]},{"name":"FACILITY_FWP_ERROR_CODE","features":[1]},{"name":"FACILITY_GRAPHICS_KERNEL","features":[1]},{"name":"FACILITY_HID_ERROR_CODE","features":[1]},{"name":"FACILITY_HYPERVISOR","features":[1]},{"name":"FACILITY_INTERIX","features":[1]},{"name":"FACILITY_IO_ERROR_CODE","features":[1]},{"name":"FACILITY_IPSEC","features":[1]},{"name":"FACILITY_LICENSING","features":[1]},{"name":"FACILITY_MAXIMUM_VALUE","features":[1]},{"name":"FACILITY_MCA_ERROR_CODE","features":[1]},{"name":"FACILITY_MONITOR","features":[1]},{"name":"FACILITY_NDIS_ERROR_CODE","features":[1]},{"name":"FACILITY_NTCERT","features":[1]},{"name":"FACILITY_NTSSPI","features":[1]},{"name":"FACILITY_NTWIN32","features":[1]},{"name":"FACILITY_NT_IORING","features":[1]},{"name":"FACILITY_PLATFORM_MANIFEST","features":[1]},{"name":"FACILITY_QUIC_ERROR_CODE","features":[1]},{"name":"FACILITY_RDBSS","features":[1]},{"name":"FACILITY_RESUME_KEY_FILTER","features":[1]},{"name":"FACILITY_RPC_RUNTIME","features":[1]},{"name":"FACILITY_RPC_STUBS","features":[1]},{"name":"FACILITY_RTPM","features":[1]},{"name":"FACILITY_SDBUS","features":[1]},{"name":"FACILITY_SECUREBOOT","features":[1]},{"name":"FACILITY_SECURITY_CORE","features":[1]},{"name":"FACILITY_SHARED_VHDX","features":[1]},{"name":"FACILITY_SMB","features":[1]},{"name":"FACILITY_SPACES","features":[1]},{"name":"FACILITY_SXS_ERROR_CODE","features":[1]},{"name":"FACILITY_SYSTEM_INTEGRITY","features":[1]},{"name":"FACILITY_TERMINAL_SERVER","features":[1]},{"name":"FACILITY_TPM","features":[1]},{"name":"FACILITY_TRANSACTION","features":[1]},{"name":"FACILITY_USB_ERROR_CODE","features":[1]},{"name":"FACILITY_VIDEO","features":[1]},{"name":"FACILITY_VIRTUALIZATION","features":[1]},{"name":"FACILITY_VOLMGR","features":[1]},{"name":"FACILITY_VOLSNAP","features":[1]},{"name":"FACILITY_VSM","features":[1]},{"name":"FACILITY_WIN32K_NTGDI","features":[1]},{"name":"FACILITY_WIN32K_NTUSER","features":[1]},{"name":"FACILITY_XVS","features":[1]},{"name":"FACILTIY_MUI_ERROR_CODE","features":[1]},{"name":"FALSE","features":[1]},{"name":"FARPROC","features":[1]},{"name":"FA_E_HOMEGROUP_NOT_AVAILABLE","features":[1]},{"name":"FA_E_MAX_PERSISTED_ITEMS_REACHED","features":[1]},{"name":"FDAEMON_E_CHANGEUPDATEFAILED","features":[1]},{"name":"FDAEMON_E_FATALERROR","features":[1]},{"name":"FDAEMON_E_LOWRESOURCE","features":[1]},{"name":"FDAEMON_E_NOWORDLIST","features":[1]},{"name":"FDAEMON_E_PARTITIONDELETED","features":[1]},{"name":"FDAEMON_E_TOOMANYFILTEREDBLOCKS","features":[1]},{"name":"FDAEMON_E_WORDLISTCOMMITFAILED","features":[1]},{"name":"FDAEMON_W_EMPTYWORDLIST","features":[1]},{"name":"FDAEMON_W_WORDLISTFULL","features":[1]},{"name":"FILETIME","features":[1]},{"name":"FILTER_E_ALREADY_OPEN","features":[1]},{"name":"FILTER_E_CONTENTINDEXCORRUPT","features":[1]},{"name":"FILTER_E_IN_USE","features":[1]},{"name":"FILTER_E_NOT_OPEN","features":[1]},{"name":"FILTER_E_NO_SUCH_PROPERTY","features":[1]},{"name":"FILTER_E_OFFLINE","features":[1]},{"name":"FILTER_E_PARTIALLY_FILTERED","features":[1]},{"name":"FILTER_E_TOO_BIG","features":[1]},{"name":"FILTER_E_UNREACHABLE","features":[1]},{"name":"FILTER_S_CONTENTSCAN_DELAYED","features":[1]},{"name":"FILTER_S_DISK_FULL","features":[1]},{"name":"FILTER_S_FULL_CONTENTSCAN_IMMEDIATE","features":[1]},{"name":"FILTER_S_NO_PROPSETS","features":[1]},{"name":"FILTER_S_NO_SECURITY_DESCRIPTOR","features":[1]},{"name":"FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE","features":[1]},{"name":"FLOAT128","features":[1]},{"name":"FRS_ERR_AUTHENTICATION","features":[1]},{"name":"FRS_ERR_CHILD_TO_PARENT_COMM","features":[1]},{"name":"FRS_ERR_INSUFFICIENT_PRIV","features":[1]},{"name":"FRS_ERR_INTERNAL","features":[1]},{"name":"FRS_ERR_INTERNAL_API","features":[1]},{"name":"FRS_ERR_INVALID_API_SEQUENCE","features":[1]},{"name":"FRS_ERR_INVALID_SERVICE_PARAMETER","features":[1]},{"name":"FRS_ERR_PARENT_AUTHENTICATION","features":[1]},{"name":"FRS_ERR_PARENT_INSUFFICIENT_PRIV","features":[1]},{"name":"FRS_ERR_PARENT_TO_CHILD_COMM","features":[1]},{"name":"FRS_ERR_SERVICE_COMM","features":[1]},{"name":"FRS_ERR_STARTING_SERVICE","features":[1]},{"name":"FRS_ERR_STOPPING_SERVICE","features":[1]},{"name":"FRS_ERR_SYSVOL_DEMOTE","features":[1]},{"name":"FRS_ERR_SYSVOL_IS_BUSY","features":[1]},{"name":"FRS_ERR_SYSVOL_POPULATE","features":[1]},{"name":"FRS_ERR_SYSVOL_POPULATE_TIMEOUT","features":[1]},{"name":"FVE_E_AAD_ENDPOINT_BUSY","features":[1]},{"name":"FVE_E_AAD_SERVER_FAIL_BACKOFF","features":[1]},{"name":"FVE_E_AAD_SERVER_FAIL_RETRY_AFTER","features":[1]},{"name":"FVE_E_ACTION_NOT_ALLOWED","features":[1]},{"name":"FVE_E_ADBACKUP_NOT_ENABLED","features":[1]},{"name":"FVE_E_AD_ATTR_NOT_SET","features":[1]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_FIXED_DRIVE","features":[1]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_OS_DRIVE","features":[1]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_REMOVABLE_DRIVE","features":[1]},{"name":"FVE_E_AD_GUID_NOT_FOUND","features":[1]},{"name":"FVE_E_AD_INSUFFICIENT_BUFFER","features":[1]},{"name":"FVE_E_AD_INVALID_DATASIZE","features":[1]},{"name":"FVE_E_AD_INVALID_DATATYPE","features":[1]},{"name":"FVE_E_AD_NO_VALUES","features":[1]},{"name":"FVE_E_AD_SCHEMA_NOT_INSTALLED","features":[1]},{"name":"FVE_E_AUTH_INVALID_APPLICATION","features":[1]},{"name":"FVE_E_AUTH_INVALID_CONFIG","features":[1]},{"name":"FVE_E_AUTOUNLOCK_ENABLED","features":[1]},{"name":"FVE_E_BAD_DATA","features":[1]},{"name":"FVE_E_BAD_INFORMATION","features":[1]},{"name":"FVE_E_BAD_PARTITION_SIZE","features":[1]},{"name":"FVE_E_BCD_APPLICATIONS_PATH_INCORRECT","features":[1]},{"name":"FVE_E_BOOTABLE_CDDVD","features":[1]},{"name":"FVE_E_BUFFER_TOO_LARGE","features":[1]},{"name":"FVE_E_CANNOT_ENCRYPT_NO_KEY","features":[1]},{"name":"FVE_E_CANNOT_SET_FVEK_ENCRYPTED","features":[1]},{"name":"FVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME","features":[1]},{"name":"FVE_E_CLUSTERING_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_CONV_READ","features":[1]},{"name":"FVE_E_CONV_RECOVERY_FAILED","features":[1]},{"name":"FVE_E_CONV_WRITE","features":[1]},{"name":"FVE_E_DATASET_FULL","features":[1]},{"name":"FVE_E_DEBUGGER_ENABLED","features":[1]},{"name":"FVE_E_DEVICELOCKOUT_COUNTER_MISMATCH","features":[1]},{"name":"FVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE","features":[1]},{"name":"FVE_E_DEVICE_NOT_JOINED","features":[1]},{"name":"FVE_E_DE_DEVICE_LOCKEDOUT","features":[1]},{"name":"FVE_E_DE_FIXED_DATA_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_DE_HARDWARE_NOT_COMPLIANT","features":[1]},{"name":"FVE_E_DE_OS_VOLUME_NOT_PROTECTED","features":[1]},{"name":"FVE_E_DE_PREVENTED_FOR_OS","features":[1]},{"name":"FVE_E_DE_PROTECTION_NOT_YET_ENABLED","features":[1]},{"name":"FVE_E_DE_PROTECTION_SUSPENDED","features":[1]},{"name":"FVE_E_DE_VOLUME_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_DE_VOLUME_OPTED_OUT","features":[1]},{"name":"FVE_E_DE_WINRE_NOT_CONFIGURED","features":[1]},{"name":"FVE_E_DRY_RUN_FAILED","features":[1]},{"name":"FVE_E_DV_NOT_ALLOWED_BY_GP","features":[1]},{"name":"FVE_E_DV_NOT_SUPPORTED_ON_FS","features":[1]},{"name":"FVE_E_EDRIVE_BAND_ENUMERATION_FAILED","features":[1]},{"name":"FVE_E_EDRIVE_BAND_IN_USE","features":[1]},{"name":"FVE_E_EDRIVE_DISALLOWED_BY_GP","features":[1]},{"name":"FVE_E_EDRIVE_DRY_RUN_FAILED","features":[1]},{"name":"FVE_E_EDRIVE_DV_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE","features":[1]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_VOLUME","features":[1]},{"name":"FVE_E_EDRIVE_NO_FAILOVER_TO_SW","features":[1]},{"name":"FVE_E_EFI_ONLY","features":[1]},{"name":"FVE_E_ENH_PIN_INVALID","features":[1]},{"name":"FVE_E_EOW_NOT_SUPPORTED_IN_VERSION","features":[1]},{"name":"FVE_E_EXECUTE_REQUEST_SENT_TOO_SOON","features":[1]},{"name":"FVE_E_FAILED_AUTHENTICATION","features":[1]},{"name":"FVE_E_FAILED_SECTOR_SIZE","features":[1]},{"name":"FVE_E_FAILED_WRONG_FS","features":[1]},{"name":"FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED","features":[1]},{"name":"FVE_E_FIPS_HASH_KDF_NOT_ALLOWED","features":[1]},{"name":"FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT","features":[1]},{"name":"FVE_E_FIPS_PREVENTS_PASSPHRASE","features":[1]},{"name":"FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD","features":[1]},{"name":"FVE_E_FIPS_RNG_CHECK_FAILED","features":[1]},{"name":"FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_FOREIGN_VOLUME","features":[1]},{"name":"FVE_E_FS_MOUNTED","features":[1]},{"name":"FVE_E_FS_NOT_EXTENDED","features":[1]},{"name":"FVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[1]},{"name":"FVE_E_HIDDEN_VOLUME","features":[1]},{"name":"FVE_E_INVALID_BITLOCKER_OID","features":[1]},{"name":"FVE_E_INVALID_DATUM_TYPE","features":[1]},{"name":"FVE_E_INVALID_KEY_FORMAT","features":[1]},{"name":"FVE_E_INVALID_NBP_CERT","features":[1]},{"name":"FVE_E_INVALID_NKP_CERT","features":[1]},{"name":"FVE_E_INVALID_PASSWORD_FORMAT","features":[1]},{"name":"FVE_E_INVALID_PIN_CHARS","features":[1]},{"name":"FVE_E_INVALID_PIN_CHARS_DETAILED","features":[1]},{"name":"FVE_E_INVALID_PROTECTOR_TYPE","features":[1]},{"name":"FVE_E_INVALID_STARTUP_OPTIONS","features":[1]},{"name":"FVE_E_KEYFILE_INVALID","features":[1]},{"name":"FVE_E_KEYFILE_NOT_FOUND","features":[1]},{"name":"FVE_E_KEYFILE_NO_VMK","features":[1]},{"name":"FVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE","features":[1]},{"name":"FVE_E_KEY_PROTECTOR_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_KEY_REQUIRED","features":[1]},{"name":"FVE_E_KEY_ROTATION_NOT_ENABLED","features":[1]},{"name":"FVE_E_KEY_ROTATION_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_LIVEID_ACCOUNT_BLOCKED","features":[1]},{"name":"FVE_E_LIVEID_ACCOUNT_SUSPENDED","features":[1]},{"name":"FVE_E_LOCKED_VOLUME","features":[1]},{"name":"FVE_E_METADATA_FULL","features":[1]},{"name":"FVE_E_MOR_FAILED","features":[1]},{"name":"FVE_E_MULTIPLE_NKP_CERTS","features":[1]},{"name":"FVE_E_NON_BITLOCKER_KU","features":[1]},{"name":"FVE_E_NON_BITLOCKER_OID","features":[1]},{"name":"FVE_E_NOT_ACTIVATED","features":[1]},{"name":"FVE_E_NOT_ALLOWED_IN_SAFE_MODE","features":[1]},{"name":"FVE_E_NOT_ALLOWED_IN_VERSION","features":[1]},{"name":"FVE_E_NOT_ALLOWED_ON_CLUSTER","features":[1]},{"name":"FVE_E_NOT_ALLOWED_ON_CSV_STACK","features":[1]},{"name":"FVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[1]},{"name":"FVE_E_NOT_DATA_VOLUME","features":[1]},{"name":"FVE_E_NOT_DECRYPTED","features":[1]},{"name":"FVE_E_NOT_DE_VOLUME","features":[1]},{"name":"FVE_E_NOT_ENCRYPTED","features":[1]},{"name":"FVE_E_NOT_ON_STACK","features":[1]},{"name":"FVE_E_NOT_OS_VOLUME","features":[1]},{"name":"FVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[1]},{"name":"FVE_E_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_NO_AUTOUNLOCK_MASTER_KEY","features":[1]},{"name":"FVE_E_NO_BOOTMGR_METRIC","features":[1]},{"name":"FVE_E_NO_BOOTSECTOR_METRIC","features":[1]},{"name":"FVE_E_NO_EXISTING_PASSPHRASE","features":[1]},{"name":"FVE_E_NO_EXISTING_PIN","features":[1]},{"name":"FVE_E_NO_FEATURE_LICENSE","features":[1]},{"name":"FVE_E_NO_LICENSE","features":[1]},{"name":"FVE_E_NO_MBR_METRIC","features":[1]},{"name":"FVE_E_NO_PASSPHRASE_WITH_TPM","features":[1]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_DETECTED","features":[1]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED","features":[1]},{"name":"FVE_E_NO_PROTECTORS_TO_TEST","features":[1]},{"name":"FVE_E_NO_SUCH_CAPABILITY_ON_TARGET","features":[1]},{"name":"FVE_E_NO_TPM_BIOS","features":[1]},{"name":"FVE_E_NO_TPM_WITH_PASSPHRASE","features":[1]},{"name":"FVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME","features":[1]},{"name":"FVE_E_OSV_KSR_NOT_ALLOWED","features":[1]},{"name":"FVE_E_OS_NOT_PROTECTED","features":[1]},{"name":"FVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED","features":[1]},{"name":"FVE_E_OVERLAPPED_UPDATE","features":[1]},{"name":"FVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[1]},{"name":"FVE_E_PASSPHRASE_TOO_LONG","features":[1]},{"name":"FVE_E_PIN_INVALID","features":[1]},{"name":"FVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[1]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON","features":[1]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON","features":[1]},{"name":"FVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON","features":[1]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON","features":[1]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON","features":[1]},{"name":"FVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS","features":[1]},{"name":"FVE_E_POLICY_INVALID_PASSPHRASE_LENGTH","features":[1]},{"name":"FVE_E_POLICY_INVALID_PIN_LENGTH","features":[1]},{"name":"FVE_E_POLICY_ON_RDV_EXCLUSION_LIST","features":[1]},{"name":"FVE_E_POLICY_PASSPHRASE_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII","features":[1]},{"name":"FVE_E_POLICY_PASSPHRASE_TOO_SIMPLE","features":[1]},{"name":"FVE_E_POLICY_PASSWORD_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_PROHIBITS_SELFSIGNED","features":[1]},{"name":"FVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_RECOVERY_KEY_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE","features":[1]},{"name":"FVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE","features":[1]},{"name":"FVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_STARTUP_KEY_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_STARTUP_PIN_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_STARTUP_TPM_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_REQUIRED","features":[1]},{"name":"FVE_E_POLICY_USER_CERT_MUST_BE_HW","features":[1]},{"name":"FVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[1]},{"name":"FVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED","features":[1]},{"name":"FVE_E_PREDICTED_TPM_PROTECTOR_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_PRIVATEKEY_AUTH_FAILED","features":[1]},{"name":"FVE_E_PROTECTION_CANNOT_BE_DISABLED","features":[1]},{"name":"FVE_E_PROTECTION_DISABLED","features":[1]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED","features":[1]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED","features":[1]},{"name":"FVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH","features":[1]},{"name":"FVE_E_PROTECTOR_CHANGE_PIN_MISMATCH","features":[1]},{"name":"FVE_E_PROTECTOR_EXISTS","features":[1]},{"name":"FVE_E_PROTECTOR_NOT_FOUND","features":[1]},{"name":"FVE_E_PUBKEY_NOT_ALLOWED","features":[1]},{"name":"FVE_E_RAW_ACCESS","features":[1]},{"name":"FVE_E_RAW_BLOCKED","features":[1]},{"name":"FVE_E_REBOOT_REQUIRED","features":[1]},{"name":"FVE_E_RECOVERY_KEY_REQUIRED","features":[1]},{"name":"FVE_E_RECOVERY_PARTITION","features":[1]},{"name":"FVE_E_RELATIVE_PATH","features":[1]},{"name":"FVE_E_REMOVAL_OF_DRA_FAILED","features":[1]},{"name":"FVE_E_REMOVAL_OF_NKP_FAILED","features":[1]},{"name":"FVE_E_SECUREBOOT_CONFIGURATION_INVALID","features":[1]},{"name":"FVE_E_SECUREBOOT_DISABLED","features":[1]},{"name":"FVE_E_SECURE_KEY_REQUIRED","features":[1]},{"name":"FVE_E_SETUP_TPM_CALLBACK_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_SHADOW_COPY_PRESENT","features":[1]},{"name":"FVE_E_SYSTEM_VOLUME","features":[1]},{"name":"FVE_E_TOKEN_NOT_IMPERSONATED","features":[1]},{"name":"FVE_E_TOO_SMALL","features":[1]},{"name":"FVE_E_TPM_CONTEXT_SETUP_NOT_SUPPORTED","features":[1]},{"name":"FVE_E_TPM_DISABLED","features":[1]},{"name":"FVE_E_TPM_INVALID_PCR","features":[1]},{"name":"FVE_E_TPM_NOT_OWNED","features":[1]},{"name":"FVE_E_TPM_NO_VMK","features":[1]},{"name":"FVE_E_TPM_SRK_AUTH_NOT_ZERO","features":[1]},{"name":"FVE_E_TRANSIENT_STATE","features":[1]},{"name":"FVE_E_UPDATE_INVALID_CONFIG","features":[1]},{"name":"FVE_E_VIRTUALIZED_SPACE_TOO_BIG","features":[1]},{"name":"FVE_E_VOLUME_BOUND_ALREADY","features":[1]},{"name":"FVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[1]},{"name":"FVE_E_VOLUME_HANDLE_OPEN","features":[1]},{"name":"FVE_E_VOLUME_NOT_BOUND","features":[1]},{"name":"FVE_E_VOLUME_TOO_SMALL","features":[1]},{"name":"FVE_E_WIPE_CANCEL_NOT_APPLICABLE","features":[1]},{"name":"FVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[1]},{"name":"FVE_E_WRONG_BOOTMGR","features":[1]},{"name":"FVE_E_WRONG_BOOTSECTOR","features":[1]},{"name":"FVE_E_WRONG_SYSTEM_FS","features":[1]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER","features":[1]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[1]},{"name":"FWP_E_ALREADY_EXISTS","features":[1]},{"name":"FWP_E_BUILTIN_OBJECT","features":[1]},{"name":"FWP_E_CALLOUT_NOTIFICATION_FAILED","features":[1]},{"name":"FWP_E_CALLOUT_NOT_FOUND","features":[1]},{"name":"FWP_E_CONDITION_NOT_FOUND","features":[1]},{"name":"FWP_E_CONNECTIONS_DISABLED","features":[1]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[1]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[1]},{"name":"FWP_E_DROP_NOICMP","features":[1]},{"name":"FWP_E_DUPLICATE_AUTH_METHOD","features":[1]},{"name":"FWP_E_DUPLICATE_CONDITION","features":[1]},{"name":"FWP_E_DUPLICATE_KEYMOD","features":[1]},{"name":"FWP_E_DYNAMIC_SESSION_IN_PROGRESS","features":[1]},{"name":"FWP_E_EM_NOT_SUPPORTED","features":[1]},{"name":"FWP_E_FILTER_NOT_FOUND","features":[1]},{"name":"FWP_E_IKEEXT_NOT_RUNNING","features":[1]},{"name":"FWP_E_INCOMPATIBLE_AUTH_METHOD","features":[1]},{"name":"FWP_E_INCOMPATIBLE_CIPHER_TRANSFORM","features":[1]},{"name":"FWP_E_INCOMPATIBLE_DH_GROUP","features":[1]},{"name":"FWP_E_INCOMPATIBLE_LAYER","features":[1]},{"name":"FWP_E_INCOMPATIBLE_SA_STATE","features":[1]},{"name":"FWP_E_INCOMPATIBLE_TXN","features":[1]},{"name":"FWP_E_INVALID_ACTION_TYPE","features":[1]},{"name":"FWP_E_INVALID_AUTH_TRANSFORM","features":[1]},{"name":"FWP_E_INVALID_CIPHER_TRANSFORM","features":[1]},{"name":"FWP_E_INVALID_DNS_NAME","features":[1]},{"name":"FWP_E_INVALID_ENUMERATOR","features":[1]},{"name":"FWP_E_INVALID_FLAGS","features":[1]},{"name":"FWP_E_INVALID_INTERVAL","features":[1]},{"name":"FWP_E_INVALID_NET_MASK","features":[1]},{"name":"FWP_E_INVALID_PARAMETER","features":[1]},{"name":"FWP_E_INVALID_RANGE","features":[1]},{"name":"FWP_E_INVALID_TRANSFORM_COMBINATION","features":[1]},{"name":"FWP_E_INVALID_TUNNEL_ENDPOINT","features":[1]},{"name":"FWP_E_INVALID_WEIGHT","features":[1]},{"name":"FWP_E_IN_USE","features":[1]},{"name":"FWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[1]},{"name":"FWP_E_KEY_DICTATOR_ALREADY_REGISTERED","features":[1]},{"name":"FWP_E_KM_CLIENTS_ONLY","features":[1]},{"name":"FWP_E_L2_DRIVER_NOT_READY","features":[1]},{"name":"FWP_E_LAYER_NOT_FOUND","features":[1]},{"name":"FWP_E_LIFETIME_MISMATCH","features":[1]},{"name":"FWP_E_MATCH_TYPE_MISMATCH","features":[1]},{"name":"FWP_E_NET_EVENTS_DISABLED","features":[1]},{"name":"FWP_E_NEVER_MATCH","features":[1]},{"name":"FWP_E_NOTIFICATION_DROPPED","features":[1]},{"name":"FWP_E_NOT_FOUND","features":[1]},{"name":"FWP_E_NO_TXN_IN_PROGRESS","features":[1]},{"name":"FWP_E_NULL_DISPLAY_NAME","features":[1]},{"name":"FWP_E_NULL_POINTER","features":[1]},{"name":"FWP_E_OUT_OF_BOUNDS","features":[1]},{"name":"FWP_E_PROVIDER_CONTEXT_MISMATCH","features":[1]},{"name":"FWP_E_PROVIDER_CONTEXT_NOT_FOUND","features":[1]},{"name":"FWP_E_PROVIDER_NOT_FOUND","features":[1]},{"name":"FWP_E_RESERVED","features":[1]},{"name":"FWP_E_SESSION_ABORTED","features":[1]},{"name":"FWP_E_STILL_ON","features":[1]},{"name":"FWP_E_SUBLAYER_NOT_FOUND","features":[1]},{"name":"FWP_E_TIMEOUT","features":[1]},{"name":"FWP_E_TOO_MANY_CALLOUTS","features":[1]},{"name":"FWP_E_TOO_MANY_SUBLAYERS","features":[1]},{"name":"FWP_E_TRAFFIC_MISMATCH","features":[1]},{"name":"FWP_E_TXN_ABORTED","features":[1]},{"name":"FWP_E_TXN_IN_PROGRESS","features":[1]},{"name":"FWP_E_TYPE_MISMATCH","features":[1]},{"name":"FWP_E_WRONG_SESSION","features":[1]},{"name":"FWP_E_ZERO_LENGTH_ARRAY","features":[1]},{"name":"FreeLibrary","features":[1]},{"name":"GCN_E_DEFAULTNAMESPACE_EXISTS","features":[1]},{"name":"GCN_E_MODULE_NOT_FOUND","features":[1]},{"name":"GCN_E_NETADAPTER_NOT_FOUND","features":[1]},{"name":"GCN_E_NETADAPTER_TIMEOUT","features":[1]},{"name":"GCN_E_NETCOMPARTMENT_NOT_FOUND","features":[1]},{"name":"GCN_E_NETINTERFACE_NOT_FOUND","features":[1]},{"name":"GCN_E_NO_REQUEST_HANDLERS","features":[1]},{"name":"GCN_E_REQUEST_UNSUPPORTED","features":[1]},{"name":"GCN_E_RUNTIMEKEYS_FAILED","features":[1]},{"name":"GENERIC_ACCESS_RIGHTS","features":[1]},{"name":"GENERIC_ALL","features":[1]},{"name":"GENERIC_EXECUTE","features":[1]},{"name":"GENERIC_READ","features":[1]},{"name":"GENERIC_WRITE","features":[1]},{"name":"GetHandleInformation","features":[1]},{"name":"GetLastError","features":[1]},{"name":"GlobalFree","features":[1]},{"name":"HANDLE","features":[1]},{"name":"HANDLE_FLAGS","features":[1]},{"name":"HANDLE_FLAG_INHERIT","features":[1]},{"name":"HANDLE_FLAG_PROTECT_FROM_CLOSE","features":[1]},{"name":"HANDLE_PTR","features":[1]},{"name":"HCN_E_ADAPTER_NOT_FOUND","features":[1]},{"name":"HCN_E_ADDR_INVALID_OR_RESERVED","features":[1]},{"name":"HCN_E_DEGRADED_OPERATION","features":[1]},{"name":"HCN_E_ENDPOINT_ALREADY_ATTACHED","features":[1]},{"name":"HCN_E_ENDPOINT_NAMESPACE_ALREADY_EXISTS","features":[1]},{"name":"HCN_E_ENDPOINT_NOT_ATTACHED","features":[1]},{"name":"HCN_E_ENDPOINT_NOT_FOUND","features":[1]},{"name":"HCN_E_ENDPOINT_NOT_LOCAL","features":[1]},{"name":"HCN_E_ENDPOINT_SHARING_DISABLED","features":[1]},{"name":"HCN_E_ENTITY_HAS_REFERENCES","features":[1]},{"name":"HCN_E_GUID_CONVERSION_FAILURE","features":[1]},{"name":"HCN_E_ICS_DISABLED","features":[1]},{"name":"HCN_E_INVALID_ENDPOINT","features":[1]},{"name":"HCN_E_INVALID_INTERNAL_PORT","features":[1]},{"name":"HCN_E_INVALID_IP","features":[1]},{"name":"HCN_E_INVALID_IP_SUBNET","features":[1]},{"name":"HCN_E_INVALID_JSON","features":[1]},{"name":"HCN_E_INVALID_JSON_REFERENCE","features":[1]},{"name":"HCN_E_INVALID_NETWORK","features":[1]},{"name":"HCN_E_INVALID_NETWORK_TYPE","features":[1]},{"name":"HCN_E_INVALID_POLICY","features":[1]},{"name":"HCN_E_INVALID_POLICY_TYPE","features":[1]},{"name":"HCN_E_INVALID_PREFIX","features":[1]},{"name":"HCN_E_INVALID_REMOTE_ENDPOINT_OPERATION","features":[1]},{"name":"HCN_E_INVALID_SUBNET","features":[1]},{"name":"HCN_E_LAYER_ALREADY_EXISTS","features":[1]},{"name":"HCN_E_LAYER_NOT_FOUND","features":[1]},{"name":"HCN_E_MANAGER_STOPPED","features":[1]},{"name":"HCN_E_MAPPING_NOT_SUPPORTED","features":[1]},{"name":"HCN_E_NAMESPACE_ATTACH_FAILED","features":[1]},{"name":"HCN_E_NETWORK_ALREADY_EXISTS","features":[1]},{"name":"HCN_E_NETWORK_NOT_FOUND","features":[1]},{"name":"HCN_E_OBJECT_USED_AFTER_UNLOAD","features":[1]},{"name":"HCN_E_POLICY_ALREADY_EXISTS","features":[1]},{"name":"HCN_E_POLICY_NOT_FOUND","features":[1]},{"name":"HCN_E_PORT_ALREADY_EXISTS","features":[1]},{"name":"HCN_E_PORT_NOT_FOUND","features":[1]},{"name":"HCN_E_REGKEY_FAILURE","features":[1]},{"name":"HCN_E_REQUEST_UNSUPPORTED","features":[1]},{"name":"HCN_E_SHARED_SWITCH_MODIFICATION","features":[1]},{"name":"HCN_E_SUBNET_NOT_FOUND","features":[1]},{"name":"HCN_E_SWITCH_EXTENSION_NOT_FOUND","features":[1]},{"name":"HCN_E_SWITCH_NOT_FOUND","features":[1]},{"name":"HCN_E_VFP_NOT_ALLOWED","features":[1]},{"name":"HCN_E_VFP_PORTSETTING_NOT_FOUND","features":[1]},{"name":"HCN_INTERFACEPARAMETERS_ALREADY_APPLIED","features":[1]},{"name":"HCS_E_ACCESS_DENIED","features":[1]},{"name":"HCS_E_CONNECTION_CLOSED","features":[1]},{"name":"HCS_E_CONNECTION_TIMEOUT","features":[1]},{"name":"HCS_E_CONNECT_FAILED","features":[1]},{"name":"HCS_E_GUEST_CRITICAL_ERROR","features":[1]},{"name":"HCS_E_HYPERV_NOT_INSTALLED","features":[1]},{"name":"HCS_E_IMAGE_MISMATCH","features":[1]},{"name":"HCS_E_INVALID_JSON","features":[1]},{"name":"HCS_E_INVALID_LAYER","features":[1]},{"name":"HCS_E_INVALID_STATE","features":[1]},{"name":"HCS_E_OPERATION_ALREADY_CANCELLED","features":[1]},{"name":"HCS_E_OPERATION_ALREADY_STARTED","features":[1]},{"name":"HCS_E_OPERATION_NOT_STARTED","features":[1]},{"name":"HCS_E_OPERATION_PENDING","features":[1]},{"name":"HCS_E_OPERATION_RESULT_ALLOCATION_FAILED","features":[1]},{"name":"HCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET","features":[1]},{"name":"HCS_E_OPERATION_TIMEOUT","features":[1]},{"name":"HCS_E_PROCESS_ALREADY_STOPPED","features":[1]},{"name":"HCS_E_PROCESS_INFO_NOT_AVAILABLE","features":[1]},{"name":"HCS_E_PROTOCOL_ERROR","features":[1]},{"name":"HCS_E_SERVICE_DISCONNECT","features":[1]},{"name":"HCS_E_SERVICE_NOT_AVAILABLE","features":[1]},{"name":"HCS_E_SYSTEM_ALREADY_EXISTS","features":[1]},{"name":"HCS_E_SYSTEM_ALREADY_STOPPED","features":[1]},{"name":"HCS_E_SYSTEM_NOT_CONFIGURED_FOR_OPERATION","features":[1]},{"name":"HCS_E_SYSTEM_NOT_FOUND","features":[1]},{"name":"HCS_E_TERMINATED","features":[1]},{"name":"HCS_E_TERMINATED_DURING_START","features":[1]},{"name":"HCS_E_UNEXPECTED_EXIT","features":[1]},{"name":"HCS_E_UNKNOWN_MESSAGE","features":[1]},{"name":"HCS_E_UNSUPPORTED_PROTOCOL_VERSION","features":[1]},{"name":"HCS_E_WINDOWS_INSIDER_REQUIRED","features":[1]},{"name":"HGLOBAL","features":[1]},{"name":"HINSTANCE","features":[1]},{"name":"HLOCAL","features":[1]},{"name":"HLSURF","features":[1]},{"name":"HMODULE","features":[1]},{"name":"HRESULT","features":[1]},{"name":"HRSRC","features":[1]},{"name":"HSPRITE","features":[1]},{"name":"HSP_BASE_ERROR_MASK","features":[1]},{"name":"HSP_BASE_INTERNAL_ERROR","features":[1]},{"name":"HSP_BS_ERROR_MASK","features":[1]},{"name":"HSP_BS_INTERNAL_ERROR","features":[1]},{"name":"HSP_DRV_ERROR_MASK","features":[1]},{"name":"HSP_DRV_INTERNAL_ERROR","features":[1]},{"name":"HSP_E_ERROR_MASK","features":[1]},{"name":"HSP_E_INTERNAL_ERROR","features":[1]},{"name":"HSP_KSP_ALGORITHM_NOT_SUPPORTED","features":[1]},{"name":"HSP_KSP_BUFFER_TOO_SMALL","features":[1]},{"name":"HSP_KSP_DEVICE_NOT_READY","features":[1]},{"name":"HSP_KSP_ERROR_MASK","features":[1]},{"name":"HSP_KSP_INTERNAL_ERROR","features":[1]},{"name":"HSP_KSP_INVALID_DATA","features":[1]},{"name":"HSP_KSP_INVALID_FLAGS","features":[1]},{"name":"HSP_KSP_INVALID_KEY_HANDLE","features":[1]},{"name":"HSP_KSP_INVALID_KEY_TYPE","features":[1]},{"name":"HSP_KSP_INVALID_PARAMETER","features":[1]},{"name":"HSP_KSP_INVALID_PROVIDER_HANDLE","features":[1]},{"name":"HSP_KSP_KEY_ALREADY_FINALIZED","features":[1]},{"name":"HSP_KSP_KEY_EXISTS","features":[1]},{"name":"HSP_KSP_KEY_LOAD_FAIL","features":[1]},{"name":"HSP_KSP_KEY_MISSING","features":[1]},{"name":"HSP_KSP_KEY_NOT_FINALIZED","features":[1]},{"name":"HSP_KSP_NOT_SUPPORTED","features":[1]},{"name":"HSP_KSP_NO_MEMORY","features":[1]},{"name":"HSP_KSP_NO_MORE_ITEMS","features":[1]},{"name":"HSP_KSP_PARAMETER_NOT_SET","features":[1]},{"name":"HSTR","features":[1]},{"name":"HTTP_E_STATUS_AMBIGUOUS","features":[1]},{"name":"HTTP_E_STATUS_BAD_GATEWAY","features":[1]},{"name":"HTTP_E_STATUS_BAD_METHOD","features":[1]},{"name":"HTTP_E_STATUS_BAD_REQUEST","features":[1]},{"name":"HTTP_E_STATUS_CONFLICT","features":[1]},{"name":"HTTP_E_STATUS_DENIED","features":[1]},{"name":"HTTP_E_STATUS_EXPECTATION_FAILED","features":[1]},{"name":"HTTP_E_STATUS_FORBIDDEN","features":[1]},{"name":"HTTP_E_STATUS_GATEWAY_TIMEOUT","features":[1]},{"name":"HTTP_E_STATUS_GONE","features":[1]},{"name":"HTTP_E_STATUS_LENGTH_REQUIRED","features":[1]},{"name":"HTTP_E_STATUS_MOVED","features":[1]},{"name":"HTTP_E_STATUS_NONE_ACCEPTABLE","features":[1]},{"name":"HTTP_E_STATUS_NOT_FOUND","features":[1]},{"name":"HTTP_E_STATUS_NOT_MODIFIED","features":[1]},{"name":"HTTP_E_STATUS_NOT_SUPPORTED","features":[1]},{"name":"HTTP_E_STATUS_PAYMENT_REQ","features":[1]},{"name":"HTTP_E_STATUS_PRECOND_FAILED","features":[1]},{"name":"HTTP_E_STATUS_PROXY_AUTH_REQ","features":[1]},{"name":"HTTP_E_STATUS_RANGE_NOT_SATISFIABLE","features":[1]},{"name":"HTTP_E_STATUS_REDIRECT","features":[1]},{"name":"HTTP_E_STATUS_REDIRECT_KEEP_VERB","features":[1]},{"name":"HTTP_E_STATUS_REDIRECT_METHOD","features":[1]},{"name":"HTTP_E_STATUS_REQUEST_TIMEOUT","features":[1]},{"name":"HTTP_E_STATUS_REQUEST_TOO_LARGE","features":[1]},{"name":"HTTP_E_STATUS_SERVER_ERROR","features":[1]},{"name":"HTTP_E_STATUS_SERVICE_UNAVAIL","features":[1]},{"name":"HTTP_E_STATUS_UNEXPECTED","features":[1]},{"name":"HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR","features":[1]},{"name":"HTTP_E_STATUS_UNEXPECTED_REDIRECTION","features":[1]},{"name":"HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR","features":[1]},{"name":"HTTP_E_STATUS_UNSUPPORTED_MEDIA","features":[1]},{"name":"HTTP_E_STATUS_URI_TOO_LONG","features":[1]},{"name":"HTTP_E_STATUS_USE_PROXY","features":[1]},{"name":"HTTP_E_STATUS_VERSION_NOT_SUP","features":[1]},{"name":"HUMPD","features":[1]},{"name":"HWND","features":[1]},{"name":"INPLACE_E_FIRST","features":[1]},{"name":"INPLACE_E_LAST","features":[1]},{"name":"INPLACE_E_NOTOOLSPACE","features":[1]},{"name":"INPLACE_E_NOTUNDOABLE","features":[1]},{"name":"INPLACE_S_FIRST","features":[1]},{"name":"INPLACE_S_LAST","features":[1]},{"name":"INPLACE_S_TRUNCATED","features":[1]},{"name":"INPUT_E_DEVICE_INFO","features":[1]},{"name":"INPUT_E_DEVICE_PROPERTY","features":[1]},{"name":"INPUT_E_FRAME","features":[1]},{"name":"INPUT_E_HISTORY","features":[1]},{"name":"INPUT_E_MULTIMODAL","features":[1]},{"name":"INPUT_E_OUT_OF_ORDER","features":[1]},{"name":"INPUT_E_PACKET","features":[1]},{"name":"INPUT_E_REENTRANCY","features":[1]},{"name":"INPUT_E_TRANSFORM","features":[1]},{"name":"INVALID_HANDLE_VALUE","features":[1]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_BIG","features":[1]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_FULL","features":[1]},{"name":"IORING_E_CORRUPT","features":[1]},{"name":"IORING_E_REQUIRED_FLAG_NOT_SUPPORTED","features":[1]},{"name":"IORING_E_SUBMISSION_QUEUE_FULL","features":[1]},{"name":"IORING_E_SUBMISSION_QUEUE_TOO_BIG","features":[1]},{"name":"IORING_E_SUBMIT_IN_PROGRESS","features":[1]},{"name":"IORING_E_VERSION_NOT_SUPPORTED","features":[1]},{"name":"IO_BAD_BLOCK_WITH_NAME","features":[1]},{"name":"IO_CDROM_EXCLUSIVE_LOCK","features":[1]},{"name":"IO_DRIVER_CANCEL_TIMEOUT","features":[1]},{"name":"IO_DUMP_CALLBACK_EXCEPTION","features":[1]},{"name":"IO_DUMP_CREATION_SUCCESS","features":[1]},{"name":"IO_DUMP_DIRECT_CONFIG_FAILED","features":[1]},{"name":"IO_DUMP_DRIVER_LOAD_FAILURE","features":[1]},{"name":"IO_DUMP_DUMPFILE_CONFLICT","features":[1]},{"name":"IO_DUMP_INITIALIZATION_FAILURE","features":[1]},{"name":"IO_DUMP_INIT_DEDICATED_DUMP_FAILURE","features":[1]},{"name":"IO_DUMP_PAGE_CONFIG_FAILED","features":[1]},{"name":"IO_DUMP_POINTER_FAILURE","features":[1]},{"name":"IO_ERROR_DISK_RESOURCES_EXHAUSTED","features":[1]},{"name":"IO_ERROR_DUMP_CREATION_ERROR","features":[1]},{"name":"IO_ERROR_IO_HARDWARE_ERROR","features":[1]},{"name":"IO_ERR_BAD_BLOCK","features":[1]},{"name":"IO_ERR_BAD_FIRMWARE","features":[1]},{"name":"IO_ERR_CONFIGURATION_ERROR","features":[1]},{"name":"IO_ERR_CONTROLLER_ERROR","features":[1]},{"name":"IO_ERR_DMA_CONFLICT_DETECTED","features":[1]},{"name":"IO_ERR_DMA_RESOURCE_CONFLICT","features":[1]},{"name":"IO_ERR_DRIVER_ERROR","features":[1]},{"name":"IO_ERR_INCORRECT_IRQL","features":[1]},{"name":"IO_ERR_INSUFFICIENT_RESOURCES","features":[1]},{"name":"IO_ERR_INTERNAL_ERROR","features":[1]},{"name":"IO_ERR_INTERRUPT_RESOURCE_CONFLICT","features":[1]},{"name":"IO_ERR_INVALID_IOBASE","features":[1]},{"name":"IO_ERR_INVALID_REQUEST","features":[1]},{"name":"IO_ERR_IRQ_CONFLICT_DETECTED","features":[1]},{"name":"IO_ERR_LAYERED_FAILURE","features":[1]},{"name":"IO_ERR_MEMORY_CONFLICT_DETECTED","features":[1]},{"name":"IO_ERR_MEMORY_RESOURCE_CONFLICT","features":[1]},{"name":"IO_ERR_NOT_READY","features":[1]},{"name":"IO_ERR_OVERRUN_ERROR","features":[1]},{"name":"IO_ERR_PARITY","features":[1]},{"name":"IO_ERR_PORT_CONFLICT_DETECTED","features":[1]},{"name":"IO_ERR_PORT_RESOURCE_CONFLICT","features":[1]},{"name":"IO_ERR_PORT_TIMEOUT","features":[1]},{"name":"IO_ERR_PROTOCOL","features":[1]},{"name":"IO_ERR_RESET","features":[1]},{"name":"IO_ERR_RETRY_SUCCEEDED","features":[1]},{"name":"IO_ERR_SEEK_ERROR","features":[1]},{"name":"IO_ERR_SEQUENCE","features":[1]},{"name":"IO_ERR_THREAD_STUCK_IN_DEVICE_DRIVER","features":[1]},{"name":"IO_ERR_TIMEOUT","features":[1]},{"name":"IO_ERR_VERSION","features":[1]},{"name":"IO_FILE_QUOTA_CORRUPT","features":[1]},{"name":"IO_FILE_QUOTA_FAILED","features":[1]},{"name":"IO_FILE_QUOTA_LIMIT","features":[1]},{"name":"IO_FILE_QUOTA_STARTED","features":[1]},{"name":"IO_FILE_QUOTA_SUCCEEDED","features":[1]},{"name":"IO_FILE_QUOTA_THRESHOLD","features":[1]},{"name":"IO_FILE_SYSTEM_CORRUPT","features":[1]},{"name":"IO_FILE_SYSTEM_CORRUPT_WITH_NAME","features":[1]},{"name":"IO_INFO_THROTTLE_COMPLETE","features":[1]},{"name":"IO_LOST_DELAYED_WRITE","features":[1]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_DISCONNECTED","features":[1]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_LOCAL_DISK_ERROR","features":[1]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_SERVER_ERROR","features":[1]},{"name":"IO_RECOVERED_VIA_ECC","features":[1]},{"name":"IO_SYSTEM_SLEEP_FAILED","features":[1]},{"name":"IO_WARNING_ADAPTER_FIRMWARE_UPDATED","features":[1]},{"name":"IO_WARNING_ALLOCATION_FAILED","features":[1]},{"name":"IO_WARNING_BUS_RESET","features":[1]},{"name":"IO_WARNING_COMPLETION_TIME","features":[1]},{"name":"IO_WARNING_DEVICE_HAS_INTERNAL_DUMP","features":[1]},{"name":"IO_WARNING_DISK_CAPACITY_CHANGED","features":[1]},{"name":"IO_WARNING_DISK_FIRMWARE_UPDATED","features":[1]},{"name":"IO_WARNING_DISK_PROVISIONING_TYPE_CHANGED","features":[1]},{"name":"IO_WARNING_DISK_SURPRISE_REMOVED","features":[1]},{"name":"IO_WARNING_DUMP_DISABLED_DEVICE_GONE","features":[1]},{"name":"IO_WARNING_DUPLICATE_PATH","features":[1]},{"name":"IO_WARNING_DUPLICATE_SIGNATURE","features":[1]},{"name":"IO_WARNING_INTERRUPT_STILL_PENDING","features":[1]},{"name":"IO_WARNING_IO_OPERATION_RETRIED","features":[1]},{"name":"IO_WARNING_LOG_FLUSH_FAILED","features":[1]},{"name":"IO_WARNING_PAGING_FAILURE","features":[1]},{"name":"IO_WARNING_REPEATED_DISK_GUID","features":[1]},{"name":"IO_WARNING_RESET","features":[1]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED","features":[1]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX","features":[1]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_LUN","features":[1]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_POOL","features":[1]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_LUN","features":[1]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_POOL","features":[1]},{"name":"IO_WARNING_VOLUME_LOST_DISK_EXTENT","features":[1]},{"name":"IO_WARNING_WRITE_FUA_PROBLEM","features":[1]},{"name":"IO_WRITE_CACHE_DISABLED","features":[1]},{"name":"IO_WRITE_CACHE_ENABLED","features":[1]},{"name":"IO_WRN_BAD_FIRMWARE","features":[1]},{"name":"IO_WRN_FAILURE_PREDICTED","features":[1]},{"name":"JSCRIPT_E_CANTEXECUTE","features":[1]},{"name":"LANGUAGE_E_DATABASE_NOT_FOUND","features":[1]},{"name":"LANGUAGE_S_LARGE_WORD","features":[1]},{"name":"LPARAM","features":[1]},{"name":"LRESULT","features":[1]},{"name":"LUID","features":[1]},{"name":"LocalFree","features":[1]},{"name":"MARSHAL_E_FIRST","features":[1]},{"name":"MARSHAL_E_LAST","features":[1]},{"name":"MARSHAL_S_FIRST","features":[1]},{"name":"MARSHAL_S_LAST","features":[1]},{"name":"MAX_PATH","features":[1]},{"name":"MCA_BUS_ERROR","features":[1]},{"name":"MCA_BUS_TIMEOUT_ERROR","features":[1]},{"name":"MCA_ERROR_CACHE","features":[1]},{"name":"MCA_ERROR_CPU","features":[1]},{"name":"MCA_ERROR_CPU_BUS","features":[1]},{"name":"MCA_ERROR_MAS","features":[1]},{"name":"MCA_ERROR_MEM_1_2","features":[1]},{"name":"MCA_ERROR_MEM_1_2_5","features":[1]},{"name":"MCA_ERROR_MEM_1_2_5_4","features":[1]},{"name":"MCA_ERROR_MEM_UNKNOWN","features":[1]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT","features":[1]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT_NO_INFO","features":[1]},{"name":"MCA_ERROR_PCI_BUS_PARITY","features":[1]},{"name":"MCA_ERROR_PCI_BUS_PARITY_NO_INFO","features":[1]},{"name":"MCA_ERROR_PCI_BUS_SERR","features":[1]},{"name":"MCA_ERROR_PCI_BUS_SERR_NO_INFO","features":[1]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT","features":[1]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT_NO_INFO","features":[1]},{"name":"MCA_ERROR_PCI_BUS_UNKNOWN","features":[1]},{"name":"MCA_ERROR_PCI_DEVICE","features":[1]},{"name":"MCA_ERROR_PLATFORM_SPECIFIC","features":[1]},{"name":"MCA_ERROR_REGISTER_FILE","features":[1]},{"name":"MCA_ERROR_SMBIOS","features":[1]},{"name":"MCA_ERROR_SYSTEM_EVENT","features":[1]},{"name":"MCA_ERROR_TLB","features":[1]},{"name":"MCA_ERROR_UNKNOWN","features":[1]},{"name":"MCA_ERROR_UNKNOWN_NO_CPU","features":[1]},{"name":"MCA_EXTERNAL_ERROR","features":[1]},{"name":"MCA_FRC_ERROR","features":[1]},{"name":"MCA_INFO_CPU_THERMAL_THROTTLING_REMOVED","features":[1]},{"name":"MCA_INFO_MEMORY_PAGE_MARKED_BAD","features":[1]},{"name":"MCA_INFO_NO_MORE_CORRECTED_ERROR_LOGS","features":[1]},{"name":"MCA_INTERNALTIMER_ERROR","features":[1]},{"name":"MCA_MEMORYHIERARCHY_ERROR","features":[1]},{"name":"MCA_MICROCODE_ROM_PARITY_ERROR","features":[1]},{"name":"MCA_TLB_ERROR","features":[1]},{"name":"MCA_WARNING_CACHE","features":[1]},{"name":"MCA_WARNING_CMC_THRESHOLD_EXCEEDED","features":[1]},{"name":"MCA_WARNING_CPE_THRESHOLD_EXCEEDED","features":[1]},{"name":"MCA_WARNING_CPU","features":[1]},{"name":"MCA_WARNING_CPU_BUS","features":[1]},{"name":"MCA_WARNING_CPU_THERMAL_THROTTLED","features":[1]},{"name":"MCA_WARNING_MAS","features":[1]},{"name":"MCA_WARNING_MEM_1_2","features":[1]},{"name":"MCA_WARNING_MEM_1_2_5","features":[1]},{"name":"MCA_WARNING_MEM_1_2_5_4","features":[1]},{"name":"MCA_WARNING_MEM_UNKNOWN","features":[1]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT","features":[1]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT_NO_INFO","features":[1]},{"name":"MCA_WARNING_PCI_BUS_PARITY","features":[1]},{"name":"MCA_WARNING_PCI_BUS_PARITY_NO_INFO","features":[1]},{"name":"MCA_WARNING_PCI_BUS_SERR","features":[1]},{"name":"MCA_WARNING_PCI_BUS_SERR_NO_INFO","features":[1]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT","features":[1]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT_NO_INFO","features":[1]},{"name":"MCA_WARNING_PCI_BUS_UNKNOWN","features":[1]},{"name":"MCA_WARNING_PCI_DEVICE","features":[1]},{"name":"MCA_WARNING_PLATFORM_SPECIFIC","features":[1]},{"name":"MCA_WARNING_REGISTER_FILE","features":[1]},{"name":"MCA_WARNING_SMBIOS","features":[1]},{"name":"MCA_WARNING_SYSTEM_EVENT","features":[1]},{"name":"MCA_WARNING_TLB","features":[1]},{"name":"MCA_WARNING_UNKNOWN","features":[1]},{"name":"MCA_WARNING_UNKNOWN_NO_CPU","features":[1]},{"name":"MEM_E_INVALID_LINK","features":[1]},{"name":"MEM_E_INVALID_ROOT","features":[1]},{"name":"MEM_E_INVALID_SIZE","features":[1]},{"name":"MENROLL_S_ENROLLMENT_SUSPENDED","features":[1]},{"name":"MILAVERR_INSUFFICIENTVIDEORESOURCES","features":[1]},{"name":"MILAVERR_INVALIDWMPVERSION","features":[1]},{"name":"MILAVERR_MEDIAPLAYERCLOSED","features":[1]},{"name":"MILAVERR_MODULENOTLOADED","features":[1]},{"name":"MILAVERR_NOCLOCK","features":[1]},{"name":"MILAVERR_NOMEDIATYPE","features":[1]},{"name":"MILAVERR_NOREADYFRAMES","features":[1]},{"name":"MILAVERR_NOVIDEOMIXER","features":[1]},{"name":"MILAVERR_NOVIDEOPRESENTER","features":[1]},{"name":"MILAVERR_REQUESTEDTEXTURETOOBIG","features":[1]},{"name":"MILAVERR_SEEKFAILED","features":[1]},{"name":"MILAVERR_UNEXPECTEDWMPFAILURE","features":[1]},{"name":"MILAVERR_UNKNOWNHARDWAREERROR","features":[1]},{"name":"MILAVERR_VIDEOACCELERATIONNOTAVAILABLE","features":[1]},{"name":"MILAVERR_WMPFACTORYNOTREGISTERED","features":[1]},{"name":"MILEFFECTSERR_ALREADYATTACHEDTOLISTENER","features":[1]},{"name":"MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT","features":[1]},{"name":"MILEFFECTSERR_CONNECTORNOTCONNECTED","features":[1]},{"name":"MILEFFECTSERR_CYCLEDETECTED","features":[1]},{"name":"MILEFFECTSERR_EFFECTALREADYINAGRAPH","features":[1]},{"name":"MILEFFECTSERR_EFFECTHASNOCHILDREN","features":[1]},{"name":"MILEFFECTSERR_EFFECTINMORETHANONEGRAPH","features":[1]},{"name":"MILEFFECTSERR_EFFECTNOTPARTOFGROUP","features":[1]},{"name":"MILEFFECTSERR_EMPTYBOUNDS","features":[1]},{"name":"MILEFFECTSERR_NOINPUTSOURCEATTACHED","features":[1]},{"name":"MILEFFECTSERR_NOTAFFINETRANSFORM","features":[1]},{"name":"MILEFFECTSERR_OUTPUTSIZETOOLARGE","features":[1]},{"name":"MILEFFECTSERR_RESERVED","features":[1]},{"name":"MILEFFECTSERR_UNKNOWNPROPERTY","features":[1]},{"name":"MILERR_ADAPTER_NOT_FOUND","features":[1]},{"name":"MILERR_ALREADYLOCKED","features":[1]},{"name":"MILERR_ALREADY_INITIALIZED","features":[1]},{"name":"MILERR_BADNUMBER","features":[1]},{"name":"MILERR_COLORSPACE_NOT_SUPPORTED","features":[1]},{"name":"MILERR_DEVICECANNOTRENDERTEXT","features":[1]},{"name":"MILERR_DISPLAYFORMATNOTSUPPORTED","features":[1]},{"name":"MILERR_DISPLAYID_ACCESS_DENIED","features":[1]},{"name":"MILERR_DISPLAYSTATEINVALID","features":[1]},{"name":"MILERR_DXGI_ENUMERATION_OUT_OF_SYNC","features":[1]},{"name":"MILERR_GENERIC_IGNORE","features":[1]},{"name":"MILERR_GLYPHBITMAPMISSED","features":[1]},{"name":"MILERR_INSUFFICIENTBUFFER","features":[1]},{"name":"MILERR_INTERNALERROR","features":[1]},{"name":"MILERR_INVALIDCALL","features":[1]},{"name":"MILERR_MALFORMEDGLYPHCACHE","features":[1]},{"name":"MILERR_MALFORMED_GUIDELINE_DATA","features":[1]},{"name":"MILERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[1]},{"name":"MILERR_MISMATCHED_SIZE","features":[1]},{"name":"MILERR_MROW_READLOCK_FAILED","features":[1]},{"name":"MILERR_MROW_UPDATE_FAILED","features":[1]},{"name":"MILERR_NEED_RECREATE_AND_PRESENT","features":[1]},{"name":"MILERR_NONINVERTIBLEMATRIX","features":[1]},{"name":"MILERR_NOTLOCKED","features":[1]},{"name":"MILERR_NOT_QUEUING_PRESENTS","features":[1]},{"name":"MILERR_NO_HARDWARE_DEVICE","features":[1]},{"name":"MILERR_NO_REDIRECTION_SURFACE_AVAILABLE","features":[1]},{"name":"MILERR_NO_REDIRECTION_SURFACE_RETRY_LATER","features":[1]},{"name":"MILERR_OBJECTBUSY","features":[1]},{"name":"MILERR_PREFILTER_NOT_SUPPORTED","features":[1]},{"name":"MILERR_QPC_TIME_WENT_BACKWARD","features":[1]},{"name":"MILERR_QUEUED_PRESENT_NOT_SUPPORTED","features":[1]},{"name":"MILERR_REMOTING_NOT_SUPPORTED","features":[1]},{"name":"MILERR_SCANNER_FAILED","features":[1]},{"name":"MILERR_SCREENACCESSDENIED","features":[1]},{"name":"MILERR_SHADER_COMPILE_FAILED","features":[1]},{"name":"MILERR_TERMINATED","features":[1]},{"name":"MILERR_TOOMANYSHADERELEMNTS","features":[1]},{"name":"MILERR_WIN32ERROR","features":[1]},{"name":"MILERR_ZEROVECTOR","features":[1]},{"name":"MK_E_CANTOPENFILE","features":[1]},{"name":"MK_E_CONNECTMANUALLY","features":[1]},{"name":"MK_E_ENUMERATION_FAILED","features":[1]},{"name":"MK_E_EXCEEDEDDEADLINE","features":[1]},{"name":"MK_E_FIRST","features":[1]},{"name":"MK_E_INTERMEDIATEINTERFACENOTSUPPORTED","features":[1]},{"name":"MK_E_INVALIDEXTENSION","features":[1]},{"name":"MK_E_LAST","features":[1]},{"name":"MK_E_MUSTBOTHERUSER","features":[1]},{"name":"MK_E_NEEDGENERIC","features":[1]},{"name":"MK_E_NOINVERSE","features":[1]},{"name":"MK_E_NOOBJECT","features":[1]},{"name":"MK_E_NOPREFIX","features":[1]},{"name":"MK_E_NOSTORAGE","features":[1]},{"name":"MK_E_NOTBINDABLE","features":[1]},{"name":"MK_E_NOTBOUND","features":[1]},{"name":"MK_E_NO_NORMALIZED","features":[1]},{"name":"MK_E_SYNTAX","features":[1]},{"name":"MK_E_UNAVAILABLE","features":[1]},{"name":"MK_S_FIRST","features":[1]},{"name":"MK_S_HIM","features":[1]},{"name":"MK_S_LAST","features":[1]},{"name":"MK_S_ME","features":[1]},{"name":"MK_S_MONIKERALREADYREGISTERED","features":[1]},{"name":"MK_S_REDUCED_TO_SELF","features":[1]},{"name":"MK_S_US","features":[1]},{"name":"MSDTC_E_DUPLICATE_RESOURCE","features":[1]},{"name":"MSSIPOTF_E_BADVERSION","features":[1]},{"name":"MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT","features":[1]},{"name":"MSSIPOTF_E_BAD_MAGICNUMBER","features":[1]},{"name":"MSSIPOTF_E_BAD_OFFSET_TABLE","features":[1]},{"name":"MSSIPOTF_E_CANTGETOBJECT","features":[1]},{"name":"MSSIPOTF_E_CRYPT","features":[1]},{"name":"MSSIPOTF_E_DSIG_STRUCTURE","features":[1]},{"name":"MSSIPOTF_E_FAILED_HINTS_CHECK","features":[1]},{"name":"MSSIPOTF_E_FAILED_POLICY","features":[1]},{"name":"MSSIPOTF_E_FILE","features":[1]},{"name":"MSSIPOTF_E_FILETOOSMALL","features":[1]},{"name":"MSSIPOTF_E_FILE_CHECKSUM","features":[1]},{"name":"MSSIPOTF_E_NOHEADTABLE","features":[1]},{"name":"MSSIPOTF_E_NOT_OPENTYPE","features":[1]},{"name":"MSSIPOTF_E_OUTOFMEMRANGE","features":[1]},{"name":"MSSIPOTF_E_PCONST_CHECK","features":[1]},{"name":"MSSIPOTF_E_STRUCTURE","features":[1]},{"name":"MSSIPOTF_E_TABLES_OVERLAP","features":[1]},{"name":"MSSIPOTF_E_TABLE_CHECKSUM","features":[1]},{"name":"MSSIPOTF_E_TABLE_LONGWORD","features":[1]},{"name":"MSSIPOTF_E_TABLE_PADBYTES","features":[1]},{"name":"MSSIPOTF_E_TABLE_TAGORDER","features":[1]},{"name":"NAP_E_CONFLICTING_ID","features":[1]},{"name":"NAP_E_ENTITY_DISABLED","features":[1]},{"name":"NAP_E_ID_NOT_FOUND","features":[1]},{"name":"NAP_E_INVALID_PACKET","features":[1]},{"name":"NAP_E_MAXSIZE_TOO_SMALL","features":[1]},{"name":"NAP_E_MISMATCHED_ID","features":[1]},{"name":"NAP_E_MISSING_SOH","features":[1]},{"name":"NAP_E_NETSH_GROUPPOLICY_ERROR","features":[1]},{"name":"NAP_E_NOT_INITIALIZED","features":[1]},{"name":"NAP_E_NOT_PENDING","features":[1]},{"name":"NAP_E_NOT_REGISTERED","features":[1]},{"name":"NAP_E_NO_CACHED_SOH","features":[1]},{"name":"NAP_E_SERVICE_NOT_RUNNING","features":[1]},{"name":"NAP_E_SHV_CONFIG_EXISTED","features":[1]},{"name":"NAP_E_SHV_CONFIG_NOT_FOUND","features":[1]},{"name":"NAP_E_SHV_TIMEOUT","features":[1]},{"name":"NAP_E_STILL_BOUND","features":[1]},{"name":"NAP_E_TOO_MANY_CALLS","features":[1]},{"name":"NAP_S_CERT_ALREADY_PRESENT","features":[1]},{"name":"NEARPROC","features":[1]},{"name":"NOERROR","features":[1]},{"name":"NOT_AN_ERROR1","features":[1]},{"name":"NO_ERROR","features":[1]},{"name":"NTDDI_MAXVER","features":[1]},{"name":"NTE_AUTHENTICATION_IGNORED","features":[1]},{"name":"NTE_BAD_ALGID","features":[1]},{"name":"NTE_BAD_DATA","features":[1]},{"name":"NTE_BAD_FLAGS","features":[1]},{"name":"NTE_BAD_HASH","features":[1]},{"name":"NTE_BAD_HASH_STATE","features":[1]},{"name":"NTE_BAD_KEY","features":[1]},{"name":"NTE_BAD_KEYSET","features":[1]},{"name":"NTE_BAD_KEYSET_PARAM","features":[1]},{"name":"NTE_BAD_KEY_STATE","features":[1]},{"name":"NTE_BAD_LEN","features":[1]},{"name":"NTE_BAD_PROVIDER","features":[1]},{"name":"NTE_BAD_PROV_TYPE","features":[1]},{"name":"NTE_BAD_PUBLIC_KEY","features":[1]},{"name":"NTE_BAD_SIGNATURE","features":[1]},{"name":"NTE_BAD_TYPE","features":[1]},{"name":"NTE_BAD_UID","features":[1]},{"name":"NTE_BAD_VER","features":[1]},{"name":"NTE_BUFFERS_OVERLAP","features":[1]},{"name":"NTE_BUFFER_TOO_SMALL","features":[1]},{"name":"NTE_DECRYPTION_FAILURE","features":[1]},{"name":"NTE_DEVICE_NOT_FOUND","features":[1]},{"name":"NTE_DEVICE_NOT_READY","features":[1]},{"name":"NTE_DOUBLE_ENCRYPT","features":[1]},{"name":"NTE_ENCRYPTION_FAILURE","features":[1]},{"name":"NTE_EXISTS","features":[1]},{"name":"NTE_FAIL","features":[1]},{"name":"NTE_FIXEDPARAMETER","features":[1]},{"name":"NTE_HMAC_NOT_SUPPORTED","features":[1]},{"name":"NTE_INCORRECT_PASSWORD","features":[1]},{"name":"NTE_INTERNAL_ERROR","features":[1]},{"name":"NTE_INVALID_HANDLE","features":[1]},{"name":"NTE_INVALID_PARAMETER","features":[1]},{"name":"NTE_KEYSET_ENTRY_BAD","features":[1]},{"name":"NTE_KEYSET_NOT_DEF","features":[1]},{"name":"NTE_NOT_ACTIVE_CONSOLE","features":[1]},{"name":"NTE_NOT_FOUND","features":[1]},{"name":"NTE_NOT_SUPPORTED","features":[1]},{"name":"NTE_NO_KEY","features":[1]},{"name":"NTE_NO_MEMORY","features":[1]},{"name":"NTE_NO_MORE_ITEMS","features":[1]},{"name":"NTE_OP_OK","features":[1]},{"name":"NTE_PASSWORD_CHANGE_REQUIRED","features":[1]},{"name":"NTE_PERM","features":[1]},{"name":"NTE_PROVIDER_DLL_FAIL","features":[1]},{"name":"NTE_PROV_DLL_NOT_FOUND","features":[1]},{"name":"NTE_PROV_TYPE_ENTRY_BAD","features":[1]},{"name":"NTE_PROV_TYPE_NOT_DEF","features":[1]},{"name":"NTE_PROV_TYPE_NO_MATCH","features":[1]},{"name":"NTE_SIGNATURE_FILE_BAD","features":[1]},{"name":"NTE_SILENT_CONTEXT","features":[1]},{"name":"NTE_SYS_ERR","features":[1]},{"name":"NTE_TEMPORARY_PROFILE","features":[1]},{"name":"NTE_TOKEN_KEYSET_STORAGE_FULL","features":[1]},{"name":"NTE_UI_REQUIRED","features":[1]},{"name":"NTE_USER_CANCELLED","features":[1]},{"name":"NTE_VALIDATION_FAILED","features":[1]},{"name":"NTSTATUS","features":[1]},{"name":"NTSTATUS_FACILITY_CODE","features":[1]},{"name":"NTSTATUS_SEVERITY_CODE","features":[1]},{"name":"OLEOBJ_E_FIRST","features":[1]},{"name":"OLEOBJ_E_INVALIDVERB","features":[1]},{"name":"OLEOBJ_E_LAST","features":[1]},{"name":"OLEOBJ_E_NOVERBS","features":[1]},{"name":"OLEOBJ_S_CANNOT_DOVERB_NOW","features":[1]},{"name":"OLEOBJ_S_FIRST","features":[1]},{"name":"OLEOBJ_S_INVALIDHWND","features":[1]},{"name":"OLEOBJ_S_INVALIDVERB","features":[1]},{"name":"OLEOBJ_S_LAST","features":[1]},{"name":"OLE_E_ADVF","features":[1]},{"name":"OLE_E_ADVISENOTSUPPORTED","features":[1]},{"name":"OLE_E_BLANK","features":[1]},{"name":"OLE_E_CANTCONVERT","features":[1]},{"name":"OLE_E_CANT_BINDTOSOURCE","features":[1]},{"name":"OLE_E_CANT_GETMONIKER","features":[1]},{"name":"OLE_E_CLASSDIFF","features":[1]},{"name":"OLE_E_ENUM_NOMORE","features":[1]},{"name":"OLE_E_FIRST","features":[1]},{"name":"OLE_E_INVALIDHWND","features":[1]},{"name":"OLE_E_INVALIDRECT","features":[1]},{"name":"OLE_E_LAST","features":[1]},{"name":"OLE_E_NOCACHE","features":[1]},{"name":"OLE_E_NOCONNECTION","features":[1]},{"name":"OLE_E_NOSTORAGE","features":[1]},{"name":"OLE_E_NOTRUNNING","features":[1]},{"name":"OLE_E_NOT_INPLACEACTIVE","features":[1]},{"name":"OLE_E_OLEVERB","features":[1]},{"name":"OLE_E_PROMPTSAVECANCELLED","features":[1]},{"name":"OLE_E_STATIC","features":[1]},{"name":"OLE_E_WRONGCOMPOBJ","features":[1]},{"name":"OLE_S_FIRST","features":[1]},{"name":"OLE_S_LAST","features":[1]},{"name":"OLE_S_MAC_CLIPFORMAT","features":[1]},{"name":"OLE_S_STATIC","features":[1]},{"name":"OLE_S_USEREG","features":[1]},{"name":"ONL_CONNECTION_COUNT_LIMIT","features":[1]},{"name":"ONL_E_ACCESS_DENIED_BY_TOU","features":[1]},{"name":"ONL_E_ACCOUNT_LOCKED","features":[1]},{"name":"ONL_E_ACCOUNT_SUSPENDED_ABUSE","features":[1]},{"name":"ONL_E_ACCOUNT_SUSPENDED_COMPROIMISE","features":[1]},{"name":"ONL_E_ACCOUNT_UPDATE_REQUIRED","features":[1]},{"name":"ONL_E_ACTION_REQUIRED","features":[1]},{"name":"ONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT","features":[1]},{"name":"ONL_E_EMAIL_VERIFICATION_REQUIRED","features":[1]},{"name":"ONL_E_FORCESIGNIN","features":[1]},{"name":"ONL_E_INVALID_APPLICATION","features":[1]},{"name":"ONL_E_INVALID_AUTHENTICATION_TARGET","features":[1]},{"name":"ONL_E_PARENTAL_CONSENT_REQUIRED","features":[1]},{"name":"ONL_E_PASSWORD_UPDATE_REQUIRED","features":[1]},{"name":"ONL_E_REQUEST_THROTTLED","features":[1]},{"name":"ONL_E_USER_AUTHENTICATION_REQUIRED","features":[1]},{"name":"OR_INVALID_OID","features":[1]},{"name":"OR_INVALID_OXID","features":[1]},{"name":"OR_INVALID_SET","features":[1]},{"name":"OSS_ACCESS_SERIALIZATION_ERROR","features":[1]},{"name":"OSS_API_DLL_NOT_LINKED","features":[1]},{"name":"OSS_BAD_ARG","features":[1]},{"name":"OSS_BAD_ENCRULES","features":[1]},{"name":"OSS_BAD_PTR","features":[1]},{"name":"OSS_BAD_TABLE","features":[1]},{"name":"OSS_BAD_TIME","features":[1]},{"name":"OSS_BAD_VERSION","features":[1]},{"name":"OSS_BERDER_DLL_NOT_LINKED","features":[1]},{"name":"OSS_CANT_CLOSE_TRACE_FILE","features":[1]},{"name":"OSS_CANT_OPEN_TRACE_FILE","features":[1]},{"name":"OSS_CANT_OPEN_TRACE_WINDOW","features":[1]},{"name":"OSS_COMPARATOR_CODE_NOT_LINKED","features":[1]},{"name":"OSS_COMPARATOR_DLL_NOT_LINKED","features":[1]},{"name":"OSS_CONSTRAINT_DLL_NOT_LINKED","features":[1]},{"name":"OSS_CONSTRAINT_VIOLATED","features":[1]},{"name":"OSS_COPIER_DLL_NOT_LINKED","features":[1]},{"name":"OSS_DATA_ERROR","features":[1]},{"name":"OSS_FATAL_ERROR","features":[1]},{"name":"OSS_INDEFINITE_NOT_SUPPORTED","features":[1]},{"name":"OSS_LIMITED","features":[1]},{"name":"OSS_MEM_ERROR","features":[1]},{"name":"OSS_MEM_MGR_DLL_NOT_LINKED","features":[1]},{"name":"OSS_MORE_BUF","features":[1]},{"name":"OSS_MORE_INPUT","features":[1]},{"name":"OSS_MUTEX_NOT_CREATED","features":[1]},{"name":"OSS_NEGATIVE_UINTEGER","features":[1]},{"name":"OSS_NULL_FCN","features":[1]},{"name":"OSS_NULL_TBL","features":[1]},{"name":"OSS_OID_DLL_NOT_LINKED","features":[1]},{"name":"OSS_OPEN_TYPE_ERROR","features":[1]},{"name":"OSS_OUT_MEMORY","features":[1]},{"name":"OSS_OUT_OF_RANGE","features":[1]},{"name":"OSS_PDU_MISMATCH","features":[1]},{"name":"OSS_PDU_RANGE","features":[1]},{"name":"OSS_PDV_CODE_NOT_LINKED","features":[1]},{"name":"OSS_PDV_DLL_NOT_LINKED","features":[1]},{"name":"OSS_PER_DLL_NOT_LINKED","features":[1]},{"name":"OSS_REAL_CODE_NOT_LINKED","features":[1]},{"name":"OSS_REAL_DLL_NOT_LINKED","features":[1]},{"name":"OSS_TABLE_MISMATCH","features":[1]},{"name":"OSS_TOO_LONG","features":[1]},{"name":"OSS_TRACE_FILE_ALREADY_OPEN","features":[1]},{"name":"OSS_TYPE_NOT_SUPPORTED","features":[1]},{"name":"OSS_UNAVAIL_ENCRULES","features":[1]},{"name":"OSS_UNIMPLEMENTED","features":[1]},{"name":"PAPCFUNC","features":[1]},{"name":"PEERDIST_ERROR_ALREADY_COMPLETED","features":[1]},{"name":"PEERDIST_ERROR_ALREADY_EXISTS","features":[1]},{"name":"PEERDIST_ERROR_ALREADY_INITIALIZED","features":[1]},{"name":"PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO","features":[1]},{"name":"PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED","features":[1]},{"name":"PEERDIST_ERROR_INVALIDATED","features":[1]},{"name":"PEERDIST_ERROR_INVALID_CONFIGURATION","features":[1]},{"name":"PEERDIST_ERROR_MISSING_DATA","features":[1]},{"name":"PEERDIST_ERROR_NOT_INITIALIZED","features":[1]},{"name":"PEERDIST_ERROR_NOT_LICENSED","features":[1]},{"name":"PEERDIST_ERROR_NO_MORE","features":[1]},{"name":"PEERDIST_ERROR_OPERATION_NOTFOUND","features":[1]},{"name":"PEERDIST_ERROR_OUT_OF_BOUNDS","features":[1]},{"name":"PEERDIST_ERROR_SERVICE_UNAVAILABLE","features":[1]},{"name":"PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS","features":[1]},{"name":"PEERDIST_ERROR_TRUST_FAILURE","features":[1]},{"name":"PEERDIST_ERROR_VERSION_UNSUPPORTED","features":[1]},{"name":"PEER_E_ALREADY_LISTENING","features":[1]},{"name":"PEER_E_CANNOT_CONVERT_PEER_NAME","features":[1]},{"name":"PEER_E_CANNOT_START_SERVICE","features":[1]},{"name":"PEER_E_CERT_STORE_CORRUPTED","features":[1]},{"name":"PEER_E_CHAIN_TOO_LONG","features":[1]},{"name":"PEER_E_CIRCULAR_CHAIN_DETECTED","features":[1]},{"name":"PEER_E_CLASSIFIER_TOO_LONG","features":[1]},{"name":"PEER_E_CLOUD_NAME_AMBIGUOUS","features":[1]},{"name":"PEER_E_CONNECTION_FAILED","features":[1]},{"name":"PEER_E_CONNECTION_NOT_AUTHENTICATED","features":[1]},{"name":"PEER_E_CONNECTION_NOT_FOUND","features":[1]},{"name":"PEER_E_CONNECTION_REFUSED","features":[1]},{"name":"PEER_E_CONNECT_SELF","features":[1]},{"name":"PEER_E_CONTACT_NOT_FOUND","features":[1]},{"name":"PEER_E_DATABASE_ACCESSDENIED","features":[1]},{"name":"PEER_E_DATABASE_ALREADY_PRESENT","features":[1]},{"name":"PEER_E_DATABASE_NOT_PRESENT","features":[1]},{"name":"PEER_E_DBINITIALIZATION_FAILED","features":[1]},{"name":"PEER_E_DBNAME_CHANGED","features":[1]},{"name":"PEER_E_DEFERRED_VALIDATION","features":[1]},{"name":"PEER_E_DUPLICATE_GRAPH","features":[1]},{"name":"PEER_E_EVENT_HANDLE_NOT_FOUND","features":[1]},{"name":"PEER_E_FW_BLOCKED_BY_POLICY","features":[1]},{"name":"PEER_E_FW_BLOCKED_BY_SHIELDS_UP","features":[1]},{"name":"PEER_E_FW_DECLINED","features":[1]},{"name":"PEER_E_FW_EXCEPTION_DISABLED","features":[1]},{"name":"PEER_E_GRAPH_IN_USE","features":[1]},{"name":"PEER_E_GRAPH_NOT_READY","features":[1]},{"name":"PEER_E_GRAPH_SHUTTING_DOWN","features":[1]},{"name":"PEER_E_GROUPS_EXIST","features":[1]},{"name":"PEER_E_GROUP_IN_USE","features":[1]},{"name":"PEER_E_GROUP_NOT_READY","features":[1]},{"name":"PEER_E_IDENTITY_DELETED","features":[1]},{"name":"PEER_E_IDENTITY_NOT_FOUND","features":[1]},{"name":"PEER_E_INVALID_ADDRESS","features":[1]},{"name":"PEER_E_INVALID_ATTRIBUTES","features":[1]},{"name":"PEER_E_INVALID_CLASSIFIER","features":[1]},{"name":"PEER_E_INVALID_CLASSIFIER_PROPERTY","features":[1]},{"name":"PEER_E_INVALID_CREDENTIAL","features":[1]},{"name":"PEER_E_INVALID_CREDENTIAL_INFO","features":[1]},{"name":"PEER_E_INVALID_DATABASE","features":[1]},{"name":"PEER_E_INVALID_FRIENDLY_NAME","features":[1]},{"name":"PEER_E_INVALID_GRAPH","features":[1]},{"name":"PEER_E_INVALID_GROUP","features":[1]},{"name":"PEER_E_INVALID_GROUP_PROPERTIES","features":[1]},{"name":"PEER_E_INVALID_PEER_HOST_NAME","features":[1]},{"name":"PEER_E_INVALID_PEER_NAME","features":[1]},{"name":"PEER_E_INVALID_RECORD","features":[1]},{"name":"PEER_E_INVALID_RECORD_EXPIRATION","features":[1]},{"name":"PEER_E_INVALID_RECORD_SIZE","features":[1]},{"name":"PEER_E_INVALID_ROLE_PROPERTY","features":[1]},{"name":"PEER_E_INVALID_SEARCH","features":[1]},{"name":"PEER_E_INVALID_TIME_PERIOD","features":[1]},{"name":"PEER_E_INVITATION_NOT_TRUSTED","features":[1]},{"name":"PEER_E_INVITE_CANCELLED","features":[1]},{"name":"PEER_E_INVITE_RESPONSE_NOT_AVAILABLE","features":[1]},{"name":"PEER_E_IPV6_NOT_INSTALLED","features":[1]},{"name":"PEER_E_MAX_RECORD_SIZE_EXCEEDED","features":[1]},{"name":"PEER_E_NODE_NOT_FOUND","features":[1]},{"name":"PEER_E_NOT_AUTHORIZED","features":[1]},{"name":"PEER_E_NOT_INITIALIZED","features":[1]},{"name":"PEER_E_NOT_LICENSED","features":[1]},{"name":"PEER_E_NOT_SIGNED_IN","features":[1]},{"name":"PEER_E_NO_CLOUD","features":[1]},{"name":"PEER_E_NO_KEY_ACCESS","features":[1]},{"name":"PEER_E_NO_MEMBERS_FOUND","features":[1]},{"name":"PEER_E_NO_MEMBER_CONNECTIONS","features":[1]},{"name":"PEER_E_NO_MORE","features":[1]},{"name":"PEER_E_PASSWORD_DOES_NOT_MEET_POLICY","features":[1]},{"name":"PEER_E_PNRP_DUPLICATE_PEER_NAME","features":[1]},{"name":"PEER_E_PRIVACY_DECLINED","features":[1]},{"name":"PEER_E_RECORD_NOT_FOUND","features":[1]},{"name":"PEER_E_SERVICE_NOT_AVAILABLE","features":[1]},{"name":"PEER_E_TIMEOUT","features":[1]},{"name":"PEER_E_TOO_MANY_ATTRIBUTES","features":[1]},{"name":"PEER_E_TOO_MANY_IDENTITIES","features":[1]},{"name":"PEER_E_UNABLE_TO_LISTEN","features":[1]},{"name":"PEER_E_UNSUPPORTED_VERSION","features":[1]},{"name":"PEER_S_ALREADY_A_MEMBER","features":[1]},{"name":"PEER_S_ALREADY_CONNECTED","features":[1]},{"name":"PEER_S_GRAPH_DATA_CREATED","features":[1]},{"name":"PEER_S_NO_CONNECTIVITY","features":[1]},{"name":"PEER_S_NO_EVENT_DATA","features":[1]},{"name":"PEER_S_SUBSCRIPTION_EXISTS","features":[1]},{"name":"PERSIST_E_NOTSELFSIZING","features":[1]},{"name":"PERSIST_E_SIZEDEFINITE","features":[1]},{"name":"PERSIST_E_SIZEINDEFINITE","features":[1]},{"name":"PLA_E_CABAPI_FAILURE","features":[1]},{"name":"PLA_E_CONFLICT_INCL_EXCL_API","features":[1]},{"name":"PLA_E_CREDENTIALS_REQUIRED","features":[1]},{"name":"PLA_E_DCS_ALREADY_EXISTS","features":[1]},{"name":"PLA_E_DCS_IN_USE","features":[1]},{"name":"PLA_E_DCS_NOT_FOUND","features":[1]},{"name":"PLA_E_DCS_NOT_RUNNING","features":[1]},{"name":"PLA_E_DCS_SINGLETON_REQUIRED","features":[1]},{"name":"PLA_E_DCS_START_WAIT_TIMEOUT","features":[1]},{"name":"PLA_E_DC_ALREADY_EXISTS","features":[1]},{"name":"PLA_E_DC_START_WAIT_TIMEOUT","features":[1]},{"name":"PLA_E_EXE_ALREADY_CONFIGURED","features":[1]},{"name":"PLA_E_EXE_FULL_PATH_REQUIRED","features":[1]},{"name":"PLA_E_EXE_PATH_NOT_VALID","features":[1]},{"name":"PLA_E_INVALID_SESSION_NAME","features":[1]},{"name":"PLA_E_NETWORK_EXE_NOT_VALID","features":[1]},{"name":"PLA_E_NO_DUPLICATES","features":[1]},{"name":"PLA_E_NO_MIN_DISK","features":[1]},{"name":"PLA_E_PLA_CHANNEL_NOT_ENABLED","features":[1]},{"name":"PLA_E_PROPERTY_CONFLICT","features":[1]},{"name":"PLA_E_REPORT_WAIT_TIMEOUT","features":[1]},{"name":"PLA_E_RULES_MANAGER_FAILED","features":[1]},{"name":"PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED","features":[1]},{"name":"PLA_E_TOO_MANY_FOLDERS","features":[1]},{"name":"PLA_S_PROPERTY_IGNORED","features":[1]},{"name":"POINT","features":[1]},{"name":"POINTL","features":[1]},{"name":"POINTS","features":[1]},{"name":"PRESENTATION_ERROR_LOST","features":[1]},{"name":"PROC","features":[1]},{"name":"PSID","features":[1]},{"name":"PSINK_E_INDEX_ONLY","features":[1]},{"name":"PSINK_E_LARGE_ATTACHMENT","features":[1]},{"name":"PSINK_E_QUERY_ONLY","features":[1]},{"name":"PSINK_S_LARGE_WORD","features":[1]},{"name":"PSTR","features":[1]},{"name":"PWSTR","features":[1]},{"name":"QPARSE_E_EXPECTING_BRACE","features":[1]},{"name":"QPARSE_E_EXPECTING_COMMA","features":[1]},{"name":"QPARSE_E_EXPECTING_CURRENCY","features":[1]},{"name":"QPARSE_E_EXPECTING_DATE","features":[1]},{"name":"QPARSE_E_EXPECTING_EOS","features":[1]},{"name":"QPARSE_E_EXPECTING_GUID","features":[1]},{"name":"QPARSE_E_EXPECTING_INTEGER","features":[1]},{"name":"QPARSE_E_EXPECTING_PAREN","features":[1]},{"name":"QPARSE_E_EXPECTING_PHRASE","features":[1]},{"name":"QPARSE_E_EXPECTING_PROPERTY","features":[1]},{"name":"QPARSE_E_EXPECTING_REAL","features":[1]},{"name":"QPARSE_E_EXPECTING_REGEX","features":[1]},{"name":"QPARSE_E_EXPECTING_REGEX_PROPERTY","features":[1]},{"name":"QPARSE_E_INVALID_GROUPING","features":[1]},{"name":"QPARSE_E_INVALID_LITERAL","features":[1]},{"name":"QPARSE_E_INVALID_QUERY","features":[1]},{"name":"QPARSE_E_INVALID_RANKMETHOD","features":[1]},{"name":"QPARSE_E_INVALID_SORT_ORDER","features":[1]},{"name":"QPARSE_E_NOT_YET_IMPLEMENTED","features":[1]},{"name":"QPARSE_E_NO_SUCH_PROPERTY","features":[1]},{"name":"QPARSE_E_NO_SUCH_SORT_PROPERTY","features":[1]},{"name":"QPARSE_E_UNEXPECTED_EOS","features":[1]},{"name":"QPARSE_E_UNEXPECTED_NOT","features":[1]},{"name":"QPARSE_E_UNSUPPORTED_PROPERTY_TYPE","features":[1]},{"name":"QPARSE_E_WEIGHT_OUT_OF_RANGE","features":[1]},{"name":"QPLIST_E_BAD_GUID","features":[1]},{"name":"QPLIST_E_BYREF_USED_WITHOUT_PTRTYPE","features":[1]},{"name":"QPLIST_E_CANT_OPEN_FILE","features":[1]},{"name":"QPLIST_E_CANT_SET_PROPERTY","features":[1]},{"name":"QPLIST_E_DUPLICATE","features":[1]},{"name":"QPLIST_E_EXPECTING_CLOSE_PAREN","features":[1]},{"name":"QPLIST_E_EXPECTING_GUID","features":[1]},{"name":"QPLIST_E_EXPECTING_INTEGER","features":[1]},{"name":"QPLIST_E_EXPECTING_NAME","features":[1]},{"name":"QPLIST_E_EXPECTING_PROP_SPEC","features":[1]},{"name":"QPLIST_E_EXPECTING_TYPE","features":[1]},{"name":"QPLIST_E_READ_ERROR","features":[1]},{"name":"QPLIST_E_UNRECOGNIZED_TYPE","features":[1]},{"name":"QPLIST_E_VECTORBYREF_USED_ALONE","features":[1]},{"name":"QPLIST_S_DUPLICATE","features":[1]},{"name":"QUERY_E_ALLNOISE","features":[1]},{"name":"QUERY_E_DIR_ON_REMOVABLE_DRIVE","features":[1]},{"name":"QUERY_E_DUPLICATE_OUTPUT_COLUMN","features":[1]},{"name":"QUERY_E_FAILED","features":[1]},{"name":"QUERY_E_INVALIDCATEGORIZE","features":[1]},{"name":"QUERY_E_INVALIDQUERY","features":[1]},{"name":"QUERY_E_INVALIDRESTRICTION","features":[1]},{"name":"QUERY_E_INVALIDSORT","features":[1]},{"name":"QUERY_E_INVALID_DIRECTORY","features":[1]},{"name":"QUERY_E_INVALID_OUTPUT_COLUMN","features":[1]},{"name":"QUERY_E_TIMEDOUT","features":[1]},{"name":"QUERY_E_TOOCOMPLEX","features":[1]},{"name":"QUERY_S_NO_QUERY","features":[1]},{"name":"QUTIL_E_CANT_CONVERT_VROOT","features":[1]},{"name":"QUTIL_E_INVALID_CODEPAGE","features":[1]},{"name":"RECT","features":[1]},{"name":"RECTL","features":[1]},{"name":"REGDB_E_BADTHREADINGMODEL","features":[1]},{"name":"REGDB_E_CLASSNOTREG","features":[1]},{"name":"REGDB_E_FIRST","features":[1]},{"name":"REGDB_E_IIDNOTREG","features":[1]},{"name":"REGDB_E_INVALIDVALUE","features":[1]},{"name":"REGDB_E_KEYMISSING","features":[1]},{"name":"REGDB_E_LAST","features":[1]},{"name":"REGDB_E_PACKAGEPOLICYVIOLATION","features":[1]},{"name":"REGDB_E_READREGDB","features":[1]},{"name":"REGDB_E_WRITEREGDB","features":[1]},{"name":"REGDB_S_FIRST","features":[1]},{"name":"REGDB_S_LAST","features":[1]},{"name":"ROUTEBASE","features":[1]},{"name":"ROUTEBASEEND","features":[1]},{"name":"RO_E_BLOCKED_CROSS_ASTA_CALL","features":[1]},{"name":"RO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER","features":[1]},{"name":"RO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER","features":[1]},{"name":"RO_E_CHANGE_NOTIFICATION_IN_PROGRESS","features":[1]},{"name":"RO_E_CLOSED","features":[1]},{"name":"RO_E_COMMITTED","features":[1]},{"name":"RO_E_ERROR_STRING_NOT_FOUND","features":[1]},{"name":"RO_E_EXCLUSIVE_WRITE","features":[1]},{"name":"RO_E_INVALID_METADATA_FILE","features":[1]},{"name":"RO_E_METADATA_INVALID_TYPE_FORMAT","features":[1]},{"name":"RO_E_METADATA_NAME_IS_NAMESPACE","features":[1]},{"name":"RO_E_METADATA_NAME_NOT_FOUND","features":[1]},{"name":"RO_E_MUST_BE_AGILE","features":[1]},{"name":"RO_E_UNSUPPORTED_FROM_MTA","features":[1]},{"name":"RPC_E_ACCESS_DENIED","features":[1]},{"name":"RPC_E_ATTEMPTED_MULTITHREAD","features":[1]},{"name":"RPC_E_CALL_CANCELED","features":[1]},{"name":"RPC_E_CALL_COMPLETE","features":[1]},{"name":"RPC_E_CALL_REJECTED","features":[1]},{"name":"RPC_E_CANTCALLOUT_AGAIN","features":[1]},{"name":"RPC_E_CANTCALLOUT_INASYNCCALL","features":[1]},{"name":"RPC_E_CANTCALLOUT_INEXTERNALCALL","features":[1]},{"name":"RPC_E_CANTCALLOUT_ININPUTSYNCCALL","features":[1]},{"name":"RPC_E_CANTPOST_INSENDCALL","features":[1]},{"name":"RPC_E_CANTTRANSMIT_CALL","features":[1]},{"name":"RPC_E_CHANGED_MODE","features":[1]},{"name":"RPC_E_CLIENT_CANTMARSHAL_DATA","features":[1]},{"name":"RPC_E_CLIENT_CANTUNMARSHAL_DATA","features":[1]},{"name":"RPC_E_CLIENT_DIED","features":[1]},{"name":"RPC_E_CONNECTION_TERMINATED","features":[1]},{"name":"RPC_E_DISCONNECTED","features":[1]},{"name":"RPC_E_FAULT","features":[1]},{"name":"RPC_E_FULLSIC_REQUIRED","features":[1]},{"name":"RPC_E_INVALIDMETHOD","features":[1]},{"name":"RPC_E_INVALID_CALLDATA","features":[1]},{"name":"RPC_E_INVALID_DATA","features":[1]},{"name":"RPC_E_INVALID_DATAPACKET","features":[1]},{"name":"RPC_E_INVALID_EXTENSION","features":[1]},{"name":"RPC_E_INVALID_HEADER","features":[1]},{"name":"RPC_E_INVALID_IPID","features":[1]},{"name":"RPC_E_INVALID_OBJECT","features":[1]},{"name":"RPC_E_INVALID_OBJREF","features":[1]},{"name":"RPC_E_INVALID_PARAMETER","features":[1]},{"name":"RPC_E_INVALID_STD_NAME","features":[1]},{"name":"RPC_E_NOT_REGISTERED","features":[1]},{"name":"RPC_E_NO_CONTEXT","features":[1]},{"name":"RPC_E_NO_GOOD_SECURITY_PACKAGES","features":[1]},{"name":"RPC_E_NO_SYNC","features":[1]},{"name":"RPC_E_OUT_OF_RESOURCES","features":[1]},{"name":"RPC_E_REMOTE_DISABLED","features":[1]},{"name":"RPC_E_RETRY","features":[1]},{"name":"RPC_E_SERVERCALL_REJECTED","features":[1]},{"name":"RPC_E_SERVERCALL_RETRYLATER","features":[1]},{"name":"RPC_E_SERVERFAULT","features":[1]},{"name":"RPC_E_SERVER_CANTMARSHAL_DATA","features":[1]},{"name":"RPC_E_SERVER_CANTUNMARSHAL_DATA","features":[1]},{"name":"RPC_E_SERVER_DIED","features":[1]},{"name":"RPC_E_SERVER_DIED_DNE","features":[1]},{"name":"RPC_E_SYS_CALL_FAILED","features":[1]},{"name":"RPC_E_THREAD_NOT_INIT","features":[1]},{"name":"RPC_E_TIMEOUT","features":[1]},{"name":"RPC_E_TOO_LATE","features":[1]},{"name":"RPC_E_UNEXPECTED","features":[1]},{"name":"RPC_E_UNSECURE_CALL","features":[1]},{"name":"RPC_E_VERSION_MISMATCH","features":[1]},{"name":"RPC_E_WRONG_THREAD","features":[1]},{"name":"RPC_NT_ADDRESS_ERROR","features":[1]},{"name":"RPC_NT_ALREADY_LISTENING","features":[1]},{"name":"RPC_NT_ALREADY_REGISTERED","features":[1]},{"name":"RPC_NT_BAD_STUB_DATA","features":[1]},{"name":"RPC_NT_BINDING_HAS_NO_AUTH","features":[1]},{"name":"RPC_NT_BINDING_INCOMPLETE","features":[1]},{"name":"RPC_NT_BYTE_COUNT_TOO_SMALL","features":[1]},{"name":"RPC_NT_CALL_CANCELLED","features":[1]},{"name":"RPC_NT_CALL_FAILED","features":[1]},{"name":"RPC_NT_CALL_FAILED_DNE","features":[1]},{"name":"RPC_NT_CALL_IN_PROGRESS","features":[1]},{"name":"RPC_NT_CANNOT_SUPPORT","features":[1]},{"name":"RPC_NT_CANT_CREATE_ENDPOINT","features":[1]},{"name":"RPC_NT_COMM_FAILURE","features":[1]},{"name":"RPC_NT_COOKIE_AUTH_FAILED","features":[1]},{"name":"RPC_NT_DUPLICATE_ENDPOINT","features":[1]},{"name":"RPC_NT_ENTRY_ALREADY_EXISTS","features":[1]},{"name":"RPC_NT_ENTRY_NOT_FOUND","features":[1]},{"name":"RPC_NT_ENUM_VALUE_OUT_OF_RANGE","features":[1]},{"name":"RPC_NT_FP_DIV_ZERO","features":[1]},{"name":"RPC_NT_FP_OVERFLOW","features":[1]},{"name":"RPC_NT_FP_UNDERFLOW","features":[1]},{"name":"RPC_NT_GROUP_MEMBER_NOT_FOUND","features":[1]},{"name":"RPC_NT_INCOMPLETE_NAME","features":[1]},{"name":"RPC_NT_INTERFACE_NOT_FOUND","features":[1]},{"name":"RPC_NT_INTERNAL_ERROR","features":[1]},{"name":"RPC_NT_INVALID_ASYNC_CALL","features":[1]},{"name":"RPC_NT_INVALID_ASYNC_HANDLE","features":[1]},{"name":"RPC_NT_INVALID_AUTH_IDENTITY","features":[1]},{"name":"RPC_NT_INVALID_BINDING","features":[1]},{"name":"RPC_NT_INVALID_BOUND","features":[1]},{"name":"RPC_NT_INVALID_ENDPOINT_FORMAT","features":[1]},{"name":"RPC_NT_INVALID_ES_ACTION","features":[1]},{"name":"RPC_NT_INVALID_NAF_ID","features":[1]},{"name":"RPC_NT_INVALID_NAME_SYNTAX","features":[1]},{"name":"RPC_NT_INVALID_NETWORK_OPTIONS","features":[1]},{"name":"RPC_NT_INVALID_NET_ADDR","features":[1]},{"name":"RPC_NT_INVALID_OBJECT","features":[1]},{"name":"RPC_NT_INVALID_PIPE_OBJECT","features":[1]},{"name":"RPC_NT_INVALID_PIPE_OPERATION","features":[1]},{"name":"RPC_NT_INVALID_RPC_PROTSEQ","features":[1]},{"name":"RPC_NT_INVALID_STRING_BINDING","features":[1]},{"name":"RPC_NT_INVALID_STRING_UUID","features":[1]},{"name":"RPC_NT_INVALID_TAG","features":[1]},{"name":"RPC_NT_INVALID_TIMEOUT","features":[1]},{"name":"RPC_NT_INVALID_VERS_OPTION","features":[1]},{"name":"RPC_NT_MAX_CALLS_TOO_SMALL","features":[1]},{"name":"RPC_NT_NAME_SERVICE_UNAVAILABLE","features":[1]},{"name":"RPC_NT_NOTHING_TO_EXPORT","features":[1]},{"name":"RPC_NT_NOT_ALL_OBJS_UNEXPORTED","features":[1]},{"name":"RPC_NT_NOT_CANCELLED","features":[1]},{"name":"RPC_NT_NOT_LISTENING","features":[1]},{"name":"RPC_NT_NOT_RPC_ERROR","features":[1]},{"name":"RPC_NT_NO_BINDINGS","features":[1]},{"name":"RPC_NT_NO_CALL_ACTIVE","features":[1]},{"name":"RPC_NT_NO_CONTEXT_AVAILABLE","features":[1]},{"name":"RPC_NT_NO_ENDPOINT_FOUND","features":[1]},{"name":"RPC_NT_NO_ENTRY_NAME","features":[1]},{"name":"RPC_NT_NO_INTERFACES","features":[1]},{"name":"RPC_NT_NO_MORE_BINDINGS","features":[1]},{"name":"RPC_NT_NO_MORE_ENTRIES","features":[1]},{"name":"RPC_NT_NO_MORE_MEMBERS","features":[1]},{"name":"RPC_NT_NO_PRINC_NAME","features":[1]},{"name":"RPC_NT_NO_PROTSEQS","features":[1]},{"name":"RPC_NT_NO_PROTSEQS_REGISTERED","features":[1]},{"name":"RPC_NT_NULL_REF_POINTER","features":[1]},{"name":"RPC_NT_OBJECT_NOT_FOUND","features":[1]},{"name":"RPC_NT_OUT_OF_RESOURCES","features":[1]},{"name":"RPC_NT_PIPE_CLOSED","features":[1]},{"name":"RPC_NT_PIPE_DISCIPLINE_ERROR","features":[1]},{"name":"RPC_NT_PIPE_EMPTY","features":[1]},{"name":"RPC_NT_PROCNUM_OUT_OF_RANGE","features":[1]},{"name":"RPC_NT_PROTOCOL_ERROR","features":[1]},{"name":"RPC_NT_PROTSEQ_NOT_FOUND","features":[1]},{"name":"RPC_NT_PROTSEQ_NOT_SUPPORTED","features":[1]},{"name":"RPC_NT_PROXY_ACCESS_DENIED","features":[1]},{"name":"RPC_NT_SEC_PKG_ERROR","features":[1]},{"name":"RPC_NT_SEND_INCOMPLETE","features":[1]},{"name":"RPC_NT_SERVER_TOO_BUSY","features":[1]},{"name":"RPC_NT_SERVER_UNAVAILABLE","features":[1]},{"name":"RPC_NT_SS_CANNOT_GET_CALL_HANDLE","features":[1]},{"name":"RPC_NT_SS_CHAR_TRANS_OPEN_FAIL","features":[1]},{"name":"RPC_NT_SS_CHAR_TRANS_SHORT_FILE","features":[1]},{"name":"RPC_NT_SS_CONTEXT_DAMAGED","features":[1]},{"name":"RPC_NT_SS_CONTEXT_MISMATCH","features":[1]},{"name":"RPC_NT_SS_HANDLES_MISMATCH","features":[1]},{"name":"RPC_NT_SS_IN_NULL_CONTEXT","features":[1]},{"name":"RPC_NT_STRING_TOO_LONG","features":[1]},{"name":"RPC_NT_TYPE_ALREADY_REGISTERED","features":[1]},{"name":"RPC_NT_UNKNOWN_AUTHN_LEVEL","features":[1]},{"name":"RPC_NT_UNKNOWN_AUTHN_SERVICE","features":[1]},{"name":"RPC_NT_UNKNOWN_AUTHN_TYPE","features":[1]},{"name":"RPC_NT_UNKNOWN_AUTHZ_SERVICE","features":[1]},{"name":"RPC_NT_UNKNOWN_IF","features":[1]},{"name":"RPC_NT_UNKNOWN_MGR_TYPE","features":[1]},{"name":"RPC_NT_UNSUPPORTED_AUTHN_LEVEL","features":[1]},{"name":"RPC_NT_UNSUPPORTED_NAME_SYNTAX","features":[1]},{"name":"RPC_NT_UNSUPPORTED_TRANS_SYN","features":[1]},{"name":"RPC_NT_UNSUPPORTED_TYPE","features":[1]},{"name":"RPC_NT_UUID_LOCAL_ONLY","features":[1]},{"name":"RPC_NT_UUID_NO_ADDRESS","features":[1]},{"name":"RPC_NT_WRONG_ES_VERSION","features":[1]},{"name":"RPC_NT_WRONG_KIND_OF_BINDING","features":[1]},{"name":"RPC_NT_WRONG_PIPE_VERSION","features":[1]},{"name":"RPC_NT_WRONG_STUB_VERSION","features":[1]},{"name":"RPC_NT_ZERO_DIVIDE","features":[1]},{"name":"RPC_S_ACCESS_DENIED","features":[1]},{"name":"RPC_S_ASYNC_CALL_PENDING","features":[1]},{"name":"RPC_S_BUFFER_TOO_SMALL","features":[1]},{"name":"RPC_S_CALLPENDING","features":[1]},{"name":"RPC_S_INVALID_ARG","features":[1]},{"name":"RPC_S_INVALID_LEVEL","features":[1]},{"name":"RPC_S_INVALID_SECURITY_DESC","features":[1]},{"name":"RPC_S_NOT_ENOUGH_QUOTA","features":[1]},{"name":"RPC_S_OUT_OF_MEMORY","features":[1]},{"name":"RPC_S_OUT_OF_THREADS","features":[1]},{"name":"RPC_S_SERVER_OUT_OF_MEMORY","features":[1]},{"name":"RPC_S_UNKNOWN_PRINCIPAL","features":[1]},{"name":"RPC_S_WAITONTIMER","features":[1]},{"name":"RPC_X_BAD_STUB_DATA","features":[1]},{"name":"RPC_X_BYTE_COUNT_TOO_SMALL","features":[1]},{"name":"RPC_X_ENUM_VALUE_OUT_OF_RANGE","features":[1]},{"name":"RPC_X_ENUM_VALUE_TOO_LARGE","features":[1]},{"name":"RPC_X_INVALID_BOUND","features":[1]},{"name":"RPC_X_INVALID_BUFFER","features":[1]},{"name":"RPC_X_INVALID_ES_ACTION","features":[1]},{"name":"RPC_X_INVALID_PIPE_OBJECT","features":[1]},{"name":"RPC_X_INVALID_PIPE_OPERATION","features":[1]},{"name":"RPC_X_INVALID_TAG","features":[1]},{"name":"RPC_X_NO_MEMORY","features":[1]},{"name":"RPC_X_NO_MORE_ENTRIES","features":[1]},{"name":"RPC_X_NULL_REF_POINTER","features":[1]},{"name":"RPC_X_PIPE_APP_MEMORY","features":[1]},{"name":"RPC_X_PIPE_CLOSED","features":[1]},{"name":"RPC_X_PIPE_DISCIPLINE_ERROR","features":[1]},{"name":"RPC_X_PIPE_EMPTY","features":[1]},{"name":"RPC_X_SS_CANNOT_GET_CALL_HANDLE","features":[1]},{"name":"RPC_X_SS_CHAR_TRANS_OPEN_FAIL","features":[1]},{"name":"RPC_X_SS_CHAR_TRANS_SHORT_FILE","features":[1]},{"name":"RPC_X_SS_CONTEXT_DAMAGED","features":[1]},{"name":"RPC_X_SS_CONTEXT_MISMATCH","features":[1]},{"name":"RPC_X_SS_HANDLES_MISMATCH","features":[1]},{"name":"RPC_X_SS_IN_NULL_CONTEXT","features":[1]},{"name":"RPC_X_WRONG_ES_VERSION","features":[1]},{"name":"RPC_X_WRONG_PIPE_ORDER","features":[1]},{"name":"RPC_X_WRONG_PIPE_VERSION","features":[1]},{"name":"RPC_X_WRONG_STUB_VERSION","features":[1]},{"name":"RtlNtStatusToDosError","features":[1]},{"name":"SCARD_E_BAD_SEEK","features":[1]},{"name":"SCARD_E_CANCELLED","features":[1]},{"name":"SCARD_E_CANT_DISPOSE","features":[1]},{"name":"SCARD_E_CARD_UNSUPPORTED","features":[1]},{"name":"SCARD_E_CERTIFICATE_UNAVAILABLE","features":[1]},{"name":"SCARD_E_COMM_DATA_LOST","features":[1]},{"name":"SCARD_E_DIR_NOT_FOUND","features":[1]},{"name":"SCARD_E_DUPLICATE_READER","features":[1]},{"name":"SCARD_E_FILE_NOT_FOUND","features":[1]},{"name":"SCARD_E_ICC_CREATEORDER","features":[1]},{"name":"SCARD_E_ICC_INSTALLATION","features":[1]},{"name":"SCARD_E_INSUFFICIENT_BUFFER","features":[1]},{"name":"SCARD_E_INVALID_ATR","features":[1]},{"name":"SCARD_E_INVALID_CHV","features":[1]},{"name":"SCARD_E_INVALID_HANDLE","features":[1]},{"name":"SCARD_E_INVALID_PARAMETER","features":[1]},{"name":"SCARD_E_INVALID_TARGET","features":[1]},{"name":"SCARD_E_INVALID_VALUE","features":[1]},{"name":"SCARD_E_NOT_READY","features":[1]},{"name":"SCARD_E_NOT_TRANSACTED","features":[1]},{"name":"SCARD_E_NO_ACCESS","features":[1]},{"name":"SCARD_E_NO_DIR","features":[1]},{"name":"SCARD_E_NO_FILE","features":[1]},{"name":"SCARD_E_NO_KEY_CONTAINER","features":[1]},{"name":"SCARD_E_NO_MEMORY","features":[1]},{"name":"SCARD_E_NO_PIN_CACHE","features":[1]},{"name":"SCARD_E_NO_READERS_AVAILABLE","features":[1]},{"name":"SCARD_E_NO_SERVICE","features":[1]},{"name":"SCARD_E_NO_SMARTCARD","features":[1]},{"name":"SCARD_E_NO_SUCH_CERTIFICATE","features":[1]},{"name":"SCARD_E_PCI_TOO_SMALL","features":[1]},{"name":"SCARD_E_PIN_CACHE_EXPIRED","features":[1]},{"name":"SCARD_E_PROTO_MISMATCH","features":[1]},{"name":"SCARD_E_READER_UNAVAILABLE","features":[1]},{"name":"SCARD_E_READER_UNSUPPORTED","features":[1]},{"name":"SCARD_E_READ_ONLY_CARD","features":[1]},{"name":"SCARD_E_SERVER_TOO_BUSY","features":[1]},{"name":"SCARD_E_SERVICE_STOPPED","features":[1]},{"name":"SCARD_E_SHARING_VIOLATION","features":[1]},{"name":"SCARD_E_SYSTEM_CANCELLED","features":[1]},{"name":"SCARD_E_TIMEOUT","features":[1]},{"name":"SCARD_E_UNEXPECTED","features":[1]},{"name":"SCARD_E_UNKNOWN_CARD","features":[1]},{"name":"SCARD_E_UNKNOWN_READER","features":[1]},{"name":"SCARD_E_UNKNOWN_RES_MNG","features":[1]},{"name":"SCARD_E_UNSUPPORTED_FEATURE","features":[1]},{"name":"SCARD_E_WRITE_TOO_MANY","features":[1]},{"name":"SCARD_F_COMM_ERROR","features":[1]},{"name":"SCARD_F_INTERNAL_ERROR","features":[1]},{"name":"SCARD_F_UNKNOWN_ERROR","features":[1]},{"name":"SCARD_F_WAITED_TOO_LONG","features":[1]},{"name":"SCARD_P_SHUTDOWN","features":[1]},{"name":"SCARD_W_CACHE_ITEM_NOT_FOUND","features":[1]},{"name":"SCARD_W_CACHE_ITEM_STALE","features":[1]},{"name":"SCARD_W_CACHE_ITEM_TOO_BIG","features":[1]},{"name":"SCARD_W_CANCELLED_BY_USER","features":[1]},{"name":"SCARD_W_CARD_NOT_AUTHENTICATED","features":[1]},{"name":"SCARD_W_CHV_BLOCKED","features":[1]},{"name":"SCARD_W_EOF","features":[1]},{"name":"SCARD_W_REMOVED_CARD","features":[1]},{"name":"SCARD_W_RESET_CARD","features":[1]},{"name":"SCARD_W_SECURITY_VIOLATION","features":[1]},{"name":"SCARD_W_UNPOWERED_CARD","features":[1]},{"name":"SCARD_W_UNRESPONSIVE_CARD","features":[1]},{"name":"SCARD_W_UNSUPPORTED_CARD","features":[1]},{"name":"SCARD_W_WRONG_CHV","features":[1]},{"name":"SCHED_E_ACCOUNT_DBASE_CORRUPT","features":[1]},{"name":"SCHED_E_ACCOUNT_INFORMATION_NOT_SET","features":[1]},{"name":"SCHED_E_ACCOUNT_NAME_NOT_FOUND","features":[1]},{"name":"SCHED_E_ALREADY_RUNNING","features":[1]},{"name":"SCHED_E_CANNOT_OPEN_TASK","features":[1]},{"name":"SCHED_E_DEPRECATED_FEATURE_USED","features":[1]},{"name":"SCHED_E_INVALIDVALUE","features":[1]},{"name":"SCHED_E_INVALID_TASK","features":[1]},{"name":"SCHED_E_INVALID_TASK_HASH","features":[1]},{"name":"SCHED_E_MALFORMEDXML","features":[1]},{"name":"SCHED_E_MISSINGNODE","features":[1]},{"name":"SCHED_E_NAMESPACE","features":[1]},{"name":"SCHED_E_NO_SECURITY_SERVICES","features":[1]},{"name":"SCHED_E_PAST_END_BOUNDARY","features":[1]},{"name":"SCHED_E_SERVICE_NOT_AVAILABLE","features":[1]},{"name":"SCHED_E_SERVICE_NOT_INSTALLED","features":[1]},{"name":"SCHED_E_SERVICE_NOT_LOCALSYSTEM","features":[1]},{"name":"SCHED_E_SERVICE_NOT_RUNNING","features":[1]},{"name":"SCHED_E_SERVICE_TOO_BUSY","features":[1]},{"name":"SCHED_E_START_ON_DEMAND","features":[1]},{"name":"SCHED_E_TASK_ATTEMPTED","features":[1]},{"name":"SCHED_E_TASK_DISABLED","features":[1]},{"name":"SCHED_E_TASK_NOT_READY","features":[1]},{"name":"SCHED_E_TASK_NOT_RUNNING","features":[1]},{"name":"SCHED_E_TASK_NOT_UBPM_COMPAT","features":[1]},{"name":"SCHED_E_TASK_NOT_V1_COMPAT","features":[1]},{"name":"SCHED_E_TOO_MANY_NODES","features":[1]},{"name":"SCHED_E_TRIGGER_NOT_FOUND","features":[1]},{"name":"SCHED_E_UNEXPECTEDNODE","features":[1]},{"name":"SCHED_E_UNKNOWN_OBJECT_VERSION","features":[1]},{"name":"SCHED_E_UNSUPPORTED_ACCOUNT_OPTION","features":[1]},{"name":"SCHED_E_USER_NOT_LOGGED_ON","features":[1]},{"name":"SCHED_S_BATCH_LOGON_PROBLEM","features":[1]},{"name":"SCHED_S_EVENT_TRIGGER","features":[1]},{"name":"SCHED_S_SOME_TRIGGERS_FAILED","features":[1]},{"name":"SCHED_S_TASK_DISABLED","features":[1]},{"name":"SCHED_S_TASK_HAS_NOT_RUN","features":[1]},{"name":"SCHED_S_TASK_NOT_SCHEDULED","features":[1]},{"name":"SCHED_S_TASK_NO_MORE_RUNS","features":[1]},{"name":"SCHED_S_TASK_NO_VALID_TRIGGERS","features":[1]},{"name":"SCHED_S_TASK_QUEUED","features":[1]},{"name":"SCHED_S_TASK_READY","features":[1]},{"name":"SCHED_S_TASK_RUNNING","features":[1]},{"name":"SCHED_S_TASK_TERMINATED","features":[1]},{"name":"SDIAG_E_CANCELLED","features":[1]},{"name":"SDIAG_E_CANNOTRUN","features":[1]},{"name":"SDIAG_E_DISABLED","features":[1]},{"name":"SDIAG_E_MANAGEDHOST","features":[1]},{"name":"SDIAG_E_NOVERIFIER","features":[1]},{"name":"SDIAG_E_POWERSHELL","features":[1]},{"name":"SDIAG_E_RESOURCE","features":[1]},{"name":"SDIAG_E_ROOTCAUSE","features":[1]},{"name":"SDIAG_E_SCRIPT","features":[1]},{"name":"SDIAG_E_TRUST","features":[1]},{"name":"SDIAG_E_VERSION","features":[1]},{"name":"SDIAG_S_CANNOTRUN","features":[1]},{"name":"SEARCH_E_NOMONIKER","features":[1]},{"name":"SEARCH_E_NOREGION","features":[1]},{"name":"SEARCH_S_NOMOREHITS","features":[1]},{"name":"SEC_E_ALGORITHM_MISMATCH","features":[1]},{"name":"SEC_E_APPLICATION_PROTOCOL_MISMATCH","features":[1]},{"name":"SEC_E_BAD_BINDINGS","features":[1]},{"name":"SEC_E_BAD_PKGID","features":[1]},{"name":"SEC_E_BUFFER_TOO_SMALL","features":[1]},{"name":"SEC_E_CANNOT_INSTALL","features":[1]},{"name":"SEC_E_CANNOT_PACK","features":[1]},{"name":"SEC_E_CERT_EXPIRED","features":[1]},{"name":"SEC_E_CERT_UNKNOWN","features":[1]},{"name":"SEC_E_CERT_WRONG_USAGE","features":[1]},{"name":"SEC_E_CONTEXT_EXPIRED","features":[1]},{"name":"SEC_E_CROSSREALM_DELEGATION_FAILURE","features":[1]},{"name":"SEC_E_CRYPTO_SYSTEM_INVALID","features":[1]},{"name":"SEC_E_DECRYPT_FAILURE","features":[1]},{"name":"SEC_E_DELEGATION_POLICY","features":[1]},{"name":"SEC_E_DELEGATION_REQUIRED","features":[1]},{"name":"SEC_E_DOWNGRADE_DETECTED","features":[1]},{"name":"SEC_E_ENCRYPT_FAILURE","features":[1]},{"name":"SEC_E_EXT_BUFFER_TOO_SMALL","features":[1]},{"name":"SEC_E_ILLEGAL_MESSAGE","features":[1]},{"name":"SEC_E_INCOMPLETE_CREDENTIALS","features":[1]},{"name":"SEC_E_INCOMPLETE_MESSAGE","features":[1]},{"name":"SEC_E_INSUFFICIENT_BUFFERS","features":[1]},{"name":"SEC_E_INSUFFICIENT_MEMORY","features":[1]},{"name":"SEC_E_INTERNAL_ERROR","features":[1]},{"name":"SEC_E_INVALID_HANDLE","features":[1]},{"name":"SEC_E_INVALID_PARAMETER","features":[1]},{"name":"SEC_E_INVALID_TOKEN","features":[1]},{"name":"SEC_E_INVALID_UPN_NAME","features":[1]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED","features":[1]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED_KDC","features":[1]},{"name":"SEC_E_KDC_CERT_EXPIRED","features":[1]},{"name":"SEC_E_KDC_CERT_REVOKED","features":[1]},{"name":"SEC_E_KDC_INVALID_REQUEST","features":[1]},{"name":"SEC_E_KDC_UNABLE_TO_REFER","features":[1]},{"name":"SEC_E_KDC_UNKNOWN_ETYPE","features":[1]},{"name":"SEC_E_LOGON_DENIED","features":[1]},{"name":"SEC_E_MAX_REFERRALS_EXCEEDED","features":[1]},{"name":"SEC_E_MESSAGE_ALTERED","features":[1]},{"name":"SEC_E_MULTIPLE_ACCOUNTS","features":[1]},{"name":"SEC_E_MUST_BE_KDC","features":[1]},{"name":"SEC_E_MUTUAL_AUTH_FAILED","features":[1]},{"name":"SEC_E_NOT_OWNER","features":[1]},{"name":"SEC_E_NOT_SUPPORTED","features":[1]},{"name":"SEC_E_NO_AUTHENTICATING_AUTHORITY","features":[1]},{"name":"SEC_E_NO_CONTEXT","features":[1]},{"name":"SEC_E_NO_CREDENTIALS","features":[1]},{"name":"SEC_E_NO_IMPERSONATION","features":[1]},{"name":"SEC_E_NO_IP_ADDRESSES","features":[1]},{"name":"SEC_E_NO_KERB_KEY","features":[1]},{"name":"SEC_E_NO_PA_DATA","features":[1]},{"name":"SEC_E_NO_S4U_PROT_SUPPORT","features":[1]},{"name":"SEC_E_NO_SPM","features":[1]},{"name":"SEC_E_NO_TGT_REPLY","features":[1]},{"name":"SEC_E_OK","features":[1]},{"name":"SEC_E_ONLY_HTTPS_ALLOWED","features":[1]},{"name":"SEC_E_OUT_OF_SEQUENCE","features":[1]},{"name":"SEC_E_PKINIT_CLIENT_FAILURE","features":[1]},{"name":"SEC_E_PKINIT_NAME_MISMATCH","features":[1]},{"name":"SEC_E_PKU2U_CERT_FAILURE","features":[1]},{"name":"SEC_E_POLICY_NLTM_ONLY","features":[1]},{"name":"SEC_E_QOP_NOT_SUPPORTED","features":[1]},{"name":"SEC_E_REVOCATION_OFFLINE_C","features":[1]},{"name":"SEC_E_REVOCATION_OFFLINE_KDC","features":[1]},{"name":"SEC_E_SECPKG_NOT_FOUND","features":[1]},{"name":"SEC_E_SECURITY_QOS_FAILED","features":[1]},{"name":"SEC_E_SHUTDOWN_IN_PROGRESS","features":[1]},{"name":"SEC_E_SMARTCARD_CERT_EXPIRED","features":[1]},{"name":"SEC_E_SMARTCARD_CERT_REVOKED","features":[1]},{"name":"SEC_E_SMARTCARD_LOGON_REQUIRED","features":[1]},{"name":"SEC_E_STRONG_CRYPTO_NOT_SUPPORTED","features":[1]},{"name":"SEC_E_TARGET_UNKNOWN","features":[1]},{"name":"SEC_E_TIME_SKEW","features":[1]},{"name":"SEC_E_TOO_MANY_PRINCIPALS","features":[1]},{"name":"SEC_E_UNFINISHED_CONTEXT_DELETED","features":[1]},{"name":"SEC_E_UNKNOWN_CREDENTIALS","features":[1]},{"name":"SEC_E_UNSUPPORTED_FUNCTION","features":[1]},{"name":"SEC_E_UNSUPPORTED_PREAUTH","features":[1]},{"name":"SEC_E_UNTRUSTED_ROOT","features":[1]},{"name":"SEC_E_WRONG_CREDENTIAL_HANDLE","features":[1]},{"name":"SEC_E_WRONG_PRINCIPAL","features":[1]},{"name":"SEC_I_ASYNC_CALL_PENDING","features":[1]},{"name":"SEC_I_COMPLETE_AND_CONTINUE","features":[1]},{"name":"SEC_I_COMPLETE_NEEDED","features":[1]},{"name":"SEC_I_CONTEXT_EXPIRED","features":[1]},{"name":"SEC_I_CONTINUE_NEEDED","features":[1]},{"name":"SEC_I_CONTINUE_NEEDED_MESSAGE_OK","features":[1]},{"name":"SEC_I_GENERIC_EXTENSION_RECEIVED","features":[1]},{"name":"SEC_I_INCOMPLETE_CREDENTIALS","features":[1]},{"name":"SEC_I_LOCAL_LOGON","features":[1]},{"name":"SEC_I_MESSAGE_FRAGMENT","features":[1]},{"name":"SEC_I_NO_LSA_CONTEXT","features":[1]},{"name":"SEC_I_NO_RENEGOTIATION","features":[1]},{"name":"SEC_I_RENEGOTIATE","features":[1]},{"name":"SEC_I_SIGNATURE_NEEDED","features":[1]},{"name":"SEVERITY_ERROR","features":[1]},{"name":"SEVERITY_SUCCESS","features":[1]},{"name":"SHANDLE_PTR","features":[1]},{"name":"SIZE","features":[1]},{"name":"SPAPI_E_AUTHENTICODE_DISALLOWED","features":[1]},{"name":"SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[1]},{"name":"SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER","features":[1]},{"name":"SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[1]},{"name":"SPAPI_E_BAD_INTERFACE_INSTALLSECT","features":[1]},{"name":"SPAPI_E_BAD_SECTION_NAME_LINE","features":[1]},{"name":"SPAPI_E_BAD_SERVICE_INSTALLSECT","features":[1]},{"name":"SPAPI_E_CANT_LOAD_CLASS_ICON","features":[1]},{"name":"SPAPI_E_CANT_REMOVE_DEVINST","features":[1]},{"name":"SPAPI_E_CLASS_MISMATCH","features":[1]},{"name":"SPAPI_E_DEVICE_INSTALLER_NOT_READY","features":[1]},{"name":"SPAPI_E_DEVICE_INSTALL_BLOCKED","features":[1]},{"name":"SPAPI_E_DEVICE_INTERFACE_ACTIVE","features":[1]},{"name":"SPAPI_E_DEVICE_INTERFACE_REMOVED","features":[1]},{"name":"SPAPI_E_DEVINFO_DATA_LOCKED","features":[1]},{"name":"SPAPI_E_DEVINFO_LIST_LOCKED","features":[1]},{"name":"SPAPI_E_DEVINFO_NOT_REGISTERED","features":[1]},{"name":"SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE","features":[1]},{"name":"SPAPI_E_DEVINST_ALREADY_EXISTS","features":[1]},{"name":"SPAPI_E_DI_BAD_PATH","features":[1]},{"name":"SPAPI_E_DI_DONT_INSTALL","features":[1]},{"name":"SPAPI_E_DI_DO_DEFAULT","features":[1]},{"name":"SPAPI_E_DI_FUNCTION_OBSOLETE","features":[1]},{"name":"SPAPI_E_DI_NOFILECOPY","features":[1]},{"name":"SPAPI_E_DI_POSTPROCESSING_REQUIRED","features":[1]},{"name":"SPAPI_E_DRIVER_INSTALL_BLOCKED","features":[1]},{"name":"SPAPI_E_DRIVER_NONNATIVE","features":[1]},{"name":"SPAPI_E_DRIVER_STORE_ADD_FAILED","features":[1]},{"name":"SPAPI_E_DRIVER_STORE_DELETE_FAILED","features":[1]},{"name":"SPAPI_E_DUPLICATE_FOUND","features":[1]},{"name":"SPAPI_E_ERROR_NOT_INSTALLED","features":[1]},{"name":"SPAPI_E_EXPECTED_SECTION_NAME","features":[1]},{"name":"SPAPI_E_FILEQUEUE_LOCKED","features":[1]},{"name":"SPAPI_E_FILE_HASH_NOT_IN_CATALOG","features":[1]},{"name":"SPAPI_E_GENERAL_SYNTAX","features":[1]},{"name":"SPAPI_E_INCORRECTLY_COPIED_INF","features":[1]},{"name":"SPAPI_E_INF_IN_USE_BY_DEVICES","features":[1]},{"name":"SPAPI_E_INVALID_CLASS","features":[1]},{"name":"SPAPI_E_INVALID_CLASS_INSTALLER","features":[1]},{"name":"SPAPI_E_INVALID_COINSTALLER","features":[1]},{"name":"SPAPI_E_INVALID_DEVINST_NAME","features":[1]},{"name":"SPAPI_E_INVALID_FILTER_DRIVER","features":[1]},{"name":"SPAPI_E_INVALID_HWPROFILE","features":[1]},{"name":"SPAPI_E_INVALID_INF_LOGCONFIG","features":[1]},{"name":"SPAPI_E_INVALID_MACHINENAME","features":[1]},{"name":"SPAPI_E_INVALID_PROPPAGE_PROVIDER","features":[1]},{"name":"SPAPI_E_INVALID_REFERENCE_STRING","features":[1]},{"name":"SPAPI_E_INVALID_REG_PROPERTY","features":[1]},{"name":"SPAPI_E_INVALID_TARGET","features":[1]},{"name":"SPAPI_E_IN_WOW64","features":[1]},{"name":"SPAPI_E_KEY_DOES_NOT_EXIST","features":[1]},{"name":"SPAPI_E_LINE_NOT_FOUND","features":[1]},{"name":"SPAPI_E_MACHINE_UNAVAILABLE","features":[1]},{"name":"SPAPI_E_NON_WINDOWS_DRIVER","features":[1]},{"name":"SPAPI_E_NON_WINDOWS_NT_DRIVER","features":[1]},{"name":"SPAPI_E_NOT_AN_INSTALLED_OEM_INF","features":[1]},{"name":"SPAPI_E_NOT_DISABLEABLE","features":[1]},{"name":"SPAPI_E_NO_ASSOCIATED_CLASS","features":[1]},{"name":"SPAPI_E_NO_ASSOCIATED_SERVICE","features":[1]},{"name":"SPAPI_E_NO_AUTHENTICODE_CATALOG","features":[1]},{"name":"SPAPI_E_NO_BACKUP","features":[1]},{"name":"SPAPI_E_NO_CATALOG_FOR_OEM_INF","features":[1]},{"name":"SPAPI_E_NO_CLASSINSTALL_PARAMS","features":[1]},{"name":"SPAPI_E_NO_CLASS_DRIVER_LIST","features":[1]},{"name":"SPAPI_E_NO_COMPAT_DRIVERS","features":[1]},{"name":"SPAPI_E_NO_CONFIGMGR_SERVICES","features":[1]},{"name":"SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE","features":[1]},{"name":"SPAPI_E_NO_DEVICE_ICON","features":[1]},{"name":"SPAPI_E_NO_DEVICE_SELECTED","features":[1]},{"name":"SPAPI_E_NO_DRIVER_SELECTED","features":[1]},{"name":"SPAPI_E_NO_INF","features":[1]},{"name":"SPAPI_E_NO_SUCH_DEVICE_INTERFACE","features":[1]},{"name":"SPAPI_E_NO_SUCH_DEVINST","features":[1]},{"name":"SPAPI_E_NO_SUCH_INTERFACE_CLASS","features":[1]},{"name":"SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[1]},{"name":"SPAPI_E_PNP_REGISTRY_ERROR","features":[1]},{"name":"SPAPI_E_REMOTE_COMM_FAILURE","features":[1]},{"name":"SPAPI_E_REMOTE_REQUEST_UNSUPPORTED","features":[1]},{"name":"SPAPI_E_SCE_DISABLED","features":[1]},{"name":"SPAPI_E_SECTION_NAME_TOO_LONG","features":[1]},{"name":"SPAPI_E_SECTION_NOT_FOUND","features":[1]},{"name":"SPAPI_E_SET_SYSTEM_RESTORE_POINT","features":[1]},{"name":"SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[1]},{"name":"SPAPI_E_UNKNOWN_EXCEPTION","features":[1]},{"name":"SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW","features":[1]},{"name":"SPAPI_E_WRONG_INF_STYLE","features":[1]},{"name":"SPAPI_E_WRONG_INF_TYPE","features":[1]},{"name":"SQLITE_E_ABORT","features":[1]},{"name":"SQLITE_E_ABORT_ROLLBACK","features":[1]},{"name":"SQLITE_E_AUTH","features":[1]},{"name":"SQLITE_E_BUSY","features":[1]},{"name":"SQLITE_E_BUSY_RECOVERY","features":[1]},{"name":"SQLITE_E_BUSY_SNAPSHOT","features":[1]},{"name":"SQLITE_E_CANTOPEN","features":[1]},{"name":"SQLITE_E_CANTOPEN_CONVPATH","features":[1]},{"name":"SQLITE_E_CANTOPEN_FULLPATH","features":[1]},{"name":"SQLITE_E_CANTOPEN_ISDIR","features":[1]},{"name":"SQLITE_E_CANTOPEN_NOTEMPDIR","features":[1]},{"name":"SQLITE_E_CONSTRAINT","features":[1]},{"name":"SQLITE_E_CONSTRAINT_CHECK","features":[1]},{"name":"SQLITE_E_CONSTRAINT_COMMITHOOK","features":[1]},{"name":"SQLITE_E_CONSTRAINT_FOREIGNKEY","features":[1]},{"name":"SQLITE_E_CONSTRAINT_FUNCTION","features":[1]},{"name":"SQLITE_E_CONSTRAINT_NOTNULL","features":[1]},{"name":"SQLITE_E_CONSTRAINT_PRIMARYKEY","features":[1]},{"name":"SQLITE_E_CONSTRAINT_ROWID","features":[1]},{"name":"SQLITE_E_CONSTRAINT_TRIGGER","features":[1]},{"name":"SQLITE_E_CONSTRAINT_UNIQUE","features":[1]},{"name":"SQLITE_E_CONSTRAINT_VTAB","features":[1]},{"name":"SQLITE_E_CORRUPT","features":[1]},{"name":"SQLITE_E_CORRUPT_VTAB","features":[1]},{"name":"SQLITE_E_DONE","features":[1]},{"name":"SQLITE_E_EMPTY","features":[1]},{"name":"SQLITE_E_ERROR","features":[1]},{"name":"SQLITE_E_FORMAT","features":[1]},{"name":"SQLITE_E_FULL","features":[1]},{"name":"SQLITE_E_INTERNAL","features":[1]},{"name":"SQLITE_E_INTERRUPT","features":[1]},{"name":"SQLITE_E_IOERR","features":[1]},{"name":"SQLITE_E_IOERR_ACCESS","features":[1]},{"name":"SQLITE_E_IOERR_AUTH","features":[1]},{"name":"SQLITE_E_IOERR_BLOCKED","features":[1]},{"name":"SQLITE_E_IOERR_CHECKRESERVEDLOCK","features":[1]},{"name":"SQLITE_E_IOERR_CLOSE","features":[1]},{"name":"SQLITE_E_IOERR_CONVPATH","features":[1]},{"name":"SQLITE_E_IOERR_DELETE","features":[1]},{"name":"SQLITE_E_IOERR_DELETE_NOENT","features":[1]},{"name":"SQLITE_E_IOERR_DIR_CLOSE","features":[1]},{"name":"SQLITE_E_IOERR_DIR_FSYNC","features":[1]},{"name":"SQLITE_E_IOERR_FSTAT","features":[1]},{"name":"SQLITE_E_IOERR_FSYNC","features":[1]},{"name":"SQLITE_E_IOERR_GETTEMPPATH","features":[1]},{"name":"SQLITE_E_IOERR_LOCK","features":[1]},{"name":"SQLITE_E_IOERR_MMAP","features":[1]},{"name":"SQLITE_E_IOERR_NOMEM","features":[1]},{"name":"SQLITE_E_IOERR_RDLOCK","features":[1]},{"name":"SQLITE_E_IOERR_READ","features":[1]},{"name":"SQLITE_E_IOERR_SEEK","features":[1]},{"name":"SQLITE_E_IOERR_SHMLOCK","features":[1]},{"name":"SQLITE_E_IOERR_SHMMAP","features":[1]},{"name":"SQLITE_E_IOERR_SHMOPEN","features":[1]},{"name":"SQLITE_E_IOERR_SHMSIZE","features":[1]},{"name":"SQLITE_E_IOERR_SHORT_READ","features":[1]},{"name":"SQLITE_E_IOERR_TRUNCATE","features":[1]},{"name":"SQLITE_E_IOERR_UNLOCK","features":[1]},{"name":"SQLITE_E_IOERR_VNODE","features":[1]},{"name":"SQLITE_E_IOERR_WRITE","features":[1]},{"name":"SQLITE_E_LOCKED","features":[1]},{"name":"SQLITE_E_LOCKED_SHAREDCACHE","features":[1]},{"name":"SQLITE_E_MISMATCH","features":[1]},{"name":"SQLITE_E_MISUSE","features":[1]},{"name":"SQLITE_E_NOLFS","features":[1]},{"name":"SQLITE_E_NOMEM","features":[1]},{"name":"SQLITE_E_NOTADB","features":[1]},{"name":"SQLITE_E_NOTFOUND","features":[1]},{"name":"SQLITE_E_NOTICE","features":[1]},{"name":"SQLITE_E_NOTICE_RECOVER_ROLLBACK","features":[1]},{"name":"SQLITE_E_NOTICE_RECOVER_WAL","features":[1]},{"name":"SQLITE_E_PERM","features":[1]},{"name":"SQLITE_E_PROTOCOL","features":[1]},{"name":"SQLITE_E_RANGE","features":[1]},{"name":"SQLITE_E_READONLY","features":[1]},{"name":"SQLITE_E_READONLY_CANTLOCK","features":[1]},{"name":"SQLITE_E_READONLY_DBMOVED","features":[1]},{"name":"SQLITE_E_READONLY_RECOVERY","features":[1]},{"name":"SQLITE_E_READONLY_ROLLBACK","features":[1]},{"name":"SQLITE_E_ROW","features":[1]},{"name":"SQLITE_E_SCHEMA","features":[1]},{"name":"SQLITE_E_TOOBIG","features":[1]},{"name":"SQLITE_E_WARNING","features":[1]},{"name":"SQLITE_E_WARNING_AUTOINDEX","features":[1]},{"name":"STATEREPOSITORY_ERROR_CACHE_CORRUPTED","features":[1]},{"name":"STATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED","features":[1]},{"name":"STATEREPOSITORY_E_BLOCKED","features":[1]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_RETRY","features":[1]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED","features":[1]},{"name":"STATEREPOSITORY_E_BUSY_RETRY","features":[1]},{"name":"STATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED","features":[1]},{"name":"STATEREPOSITORY_E_CACHE_NOT_INIITALIZED","features":[1]},{"name":"STATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE","features":[1]},{"name":"STATEREPOSITORY_E_CONFIGURATION_INVALID","features":[1]},{"name":"STATEREPOSITORY_E_DEPENDENCY_NOT_RESOLVED","features":[1]},{"name":"STATEREPOSITORY_E_LOCKED_RETRY","features":[1]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY","features":[1]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED","features":[1]},{"name":"STATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED","features":[1]},{"name":"STATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS","features":[1]},{"name":"STATEREPOSITORY_E_STATEMENT_INPROGRESS","features":[1]},{"name":"STATEREPOSITORY_E_TRANSACTION_REQUIRED","features":[1]},{"name":"STATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION","features":[1]},{"name":"STATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED","features":[1]},{"name":"STATEREPOSITORY_TRANSACTION_IN_PROGRESS","features":[1]},{"name":"STATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_ABANDONED","features":[1]},{"name":"STATUS_ABANDONED_WAIT_0","features":[1]},{"name":"STATUS_ABANDONED_WAIT_63","features":[1]},{"name":"STATUS_ABANDON_HIBERFILE","features":[1]},{"name":"STATUS_ABIOS_INVALID_COMMAND","features":[1]},{"name":"STATUS_ABIOS_INVALID_LID","features":[1]},{"name":"STATUS_ABIOS_INVALID_SELECTOR","features":[1]},{"name":"STATUS_ABIOS_LID_ALREADY_OWNED","features":[1]},{"name":"STATUS_ABIOS_LID_NOT_EXIST","features":[1]},{"name":"STATUS_ABIOS_NOT_LID_OWNER","features":[1]},{"name":"STATUS_ABIOS_NOT_PRESENT","features":[1]},{"name":"STATUS_ABIOS_SELECTOR_NOT_AVAILABLE","features":[1]},{"name":"STATUS_ACCESS_AUDIT_BY_POLICY","features":[1]},{"name":"STATUS_ACCESS_DENIED","features":[1]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT","features":[1]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_OTHER","features":[1]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PATH","features":[1]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER","features":[1]},{"name":"STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[1]},{"name":"STATUS_ACCESS_VIOLATION","features":[1]},{"name":"STATUS_ACPI_ACQUIRE_GLOBAL_LOCK","features":[1]},{"name":"STATUS_ACPI_ADDRESS_NOT_MAPPED","features":[1]},{"name":"STATUS_ACPI_ALREADY_INITIALIZED","features":[1]},{"name":"STATUS_ACPI_ASSERT_FAILED","features":[1]},{"name":"STATUS_ACPI_FATAL","features":[1]},{"name":"STATUS_ACPI_HANDLER_COLLISION","features":[1]},{"name":"STATUS_ACPI_INCORRECT_ARGUMENT_COUNT","features":[1]},{"name":"STATUS_ACPI_INVALID_ACCESS_SIZE","features":[1]},{"name":"STATUS_ACPI_INVALID_ARGTYPE","features":[1]},{"name":"STATUS_ACPI_INVALID_ARGUMENT","features":[1]},{"name":"STATUS_ACPI_INVALID_DATA","features":[1]},{"name":"STATUS_ACPI_INVALID_EVENTTYPE","features":[1]},{"name":"STATUS_ACPI_INVALID_INDEX","features":[1]},{"name":"STATUS_ACPI_INVALID_MUTEX_LEVEL","features":[1]},{"name":"STATUS_ACPI_INVALID_OBJTYPE","features":[1]},{"name":"STATUS_ACPI_INVALID_OPCODE","features":[1]},{"name":"STATUS_ACPI_INVALID_REGION","features":[1]},{"name":"STATUS_ACPI_INVALID_SUPERNAME","features":[1]},{"name":"STATUS_ACPI_INVALID_TABLE","features":[1]},{"name":"STATUS_ACPI_INVALID_TARGETTYPE","features":[1]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNED","features":[1]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNER","features":[1]},{"name":"STATUS_ACPI_NOT_INITIALIZED","features":[1]},{"name":"STATUS_ACPI_POWER_REQUEST_FAILED","features":[1]},{"name":"STATUS_ACPI_REG_HANDLER_FAILED","features":[1]},{"name":"STATUS_ACPI_RS_ACCESS","features":[1]},{"name":"STATUS_ACPI_STACK_OVERFLOW","features":[1]},{"name":"STATUS_ADAPTER_HARDWARE_ERROR","features":[1]},{"name":"STATUS_ADDRESS_ALREADY_ASSOCIATED","features":[1]},{"name":"STATUS_ADDRESS_ALREADY_EXISTS","features":[1]},{"name":"STATUS_ADDRESS_CLOSED","features":[1]},{"name":"STATUS_ADDRESS_NOT_ASSOCIATED","features":[1]},{"name":"STATUS_ADMINLESS_ACCESS_DENIED","features":[1]},{"name":"STATUS_ADVANCED_INSTALLER_FAILED","features":[1]},{"name":"STATUS_AGENTS_EXHAUSTED","features":[1]},{"name":"STATUS_ALERTED","features":[1]},{"name":"STATUS_ALIAS_EXISTS","features":[1]},{"name":"STATUS_ALLOCATE_BUCKET","features":[1]},{"name":"STATUS_ALLOTTED_SPACE_EXCEEDED","features":[1]},{"name":"STATUS_ALL_SIDS_FILTERED","features":[1]},{"name":"STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_ALPC_CHECK_COMPLETION_LIST","features":[1]},{"name":"STATUS_ALREADY_COMMITTED","features":[1]},{"name":"STATUS_ALREADY_COMPLETE","features":[1]},{"name":"STATUS_ALREADY_DISCONNECTED","features":[1]},{"name":"STATUS_ALREADY_HAS_STREAM_ID","features":[1]},{"name":"STATUS_ALREADY_INITIALIZED","features":[1]},{"name":"STATUS_ALREADY_REGISTERED","features":[1]},{"name":"STATUS_ALREADY_WIN32","features":[1]},{"name":"STATUS_AMBIGUOUS_SYSTEM_DEVICE","features":[1]},{"name":"STATUS_APC_RETURNED_WHILE_IMPERSONATING","features":[1]},{"name":"STATUS_APISET_NOT_HOSTED","features":[1]},{"name":"STATUS_APISET_NOT_PRESENT","features":[1]},{"name":"STATUS_APPEXEC_APP_COMPAT_BLOCK","features":[1]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT","features":[1]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[1]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[1]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[1]},{"name":"STATUS_APPEXEC_CONDITION_NOT_SATISFIED","features":[1]},{"name":"STATUS_APPEXEC_HANDLE_INVALIDATED","features":[1]},{"name":"STATUS_APPEXEC_HOST_ID_MISMATCH","features":[1]},{"name":"STATUS_APPEXEC_INVALID_HOST_GENERATION","features":[1]},{"name":"STATUS_APPEXEC_INVALID_HOST_STATE","features":[1]},{"name":"STATUS_APPEXEC_NO_DONOR","features":[1]},{"name":"STATUS_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[1]},{"name":"STATUS_APPEXEC_UNKNOWN_USER","features":[1]},{"name":"STATUS_APPHELP_BLOCK","features":[1]},{"name":"STATUS_APPX_FILE_NOT_ENCRYPTED","features":[1]},{"name":"STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[1]},{"name":"STATUS_APP_DATA_CORRUPT","features":[1]},{"name":"STATUS_APP_DATA_EXPIRED","features":[1]},{"name":"STATUS_APP_DATA_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_APP_DATA_NOT_FOUND","features":[1]},{"name":"STATUS_APP_DATA_REBOOT_REQUIRED","features":[1]},{"name":"STATUS_APP_INIT_FAILURE","features":[1]},{"name":"STATUS_ARBITRATION_UNHANDLED","features":[1]},{"name":"STATUS_ARRAY_BOUNDS_EXCEEDED","features":[1]},{"name":"STATUS_ASSERTION_FAILURE","features":[1]},{"name":"STATUS_ATTACHED_EXECUTABLE_MEMORY_WRITE","features":[1]},{"name":"STATUS_ATTRIBUTE_NOT_PRESENT","features":[1]},{"name":"STATUS_AUDIO_ENGINE_NODE_NOT_FOUND","features":[1]},{"name":"STATUS_AUDITING_DISABLED","features":[1]},{"name":"STATUS_AUDIT_FAILED","features":[1]},{"name":"STATUS_AUTHIP_FAILURE","features":[1]},{"name":"STATUS_AUTH_TAG_MISMATCH","features":[1]},{"name":"STATUS_BACKUP_CONTROLLER","features":[1]},{"name":"STATUS_BAD_BINDINGS","features":[1]},{"name":"STATUS_BAD_CLUSTERS","features":[1]},{"name":"STATUS_BAD_COMPRESSION_BUFFER","features":[1]},{"name":"STATUS_BAD_CURRENT_DIRECTORY","features":[1]},{"name":"STATUS_BAD_DATA","features":[1]},{"name":"STATUS_BAD_DESCRIPTOR_FORMAT","features":[1]},{"name":"STATUS_BAD_DEVICE_TYPE","features":[1]},{"name":"STATUS_BAD_DLL_ENTRYPOINT","features":[1]},{"name":"STATUS_BAD_FILE_TYPE","features":[1]},{"name":"STATUS_BAD_FUNCTION_TABLE","features":[1]},{"name":"STATUS_BAD_IMPERSONATION_LEVEL","features":[1]},{"name":"STATUS_BAD_INHERITANCE_ACL","features":[1]},{"name":"STATUS_BAD_INITIAL_PC","features":[1]},{"name":"STATUS_BAD_INITIAL_STACK","features":[1]},{"name":"STATUS_BAD_KEY","features":[1]},{"name":"STATUS_BAD_LOGON_SESSION_STATE","features":[1]},{"name":"STATUS_BAD_MASTER_BOOT_RECORD","features":[1]},{"name":"STATUS_BAD_MCFG_TABLE","features":[1]},{"name":"STATUS_BAD_NETWORK_NAME","features":[1]},{"name":"STATUS_BAD_NETWORK_PATH","features":[1]},{"name":"STATUS_BAD_REMOTE_ADAPTER","features":[1]},{"name":"STATUS_BAD_SERVICE_ENTRYPOINT","features":[1]},{"name":"STATUS_BAD_STACK","features":[1]},{"name":"STATUS_BAD_TOKEN_TYPE","features":[1]},{"name":"STATUS_BAD_VALIDATION_CLASS","features":[1]},{"name":"STATUS_BAD_WORKING_SET_LIMIT","features":[1]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[1]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[1]},{"name":"STATUS_BCD_TOO_MANY_ELEMENTS","features":[1]},{"name":"STATUS_BEGINNING_OF_MEDIA","features":[1]},{"name":"STATUS_BEYOND_VDL","features":[1]},{"name":"STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[1]},{"name":"STATUS_BIZRULES_NOT_ENABLED","features":[1]},{"name":"STATUS_BLOCKED_BY_PARENTAL_CONTROLS","features":[1]},{"name":"STATUS_BLOCK_SHARED","features":[1]},{"name":"STATUS_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[1]},{"name":"STATUS_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[1]},{"name":"STATUS_BLOCK_TOO_MANY_REFERENCES","features":[1]},{"name":"STATUS_BLOCK_WEAK_REFERENCE_INVALID","features":[1]},{"name":"STATUS_BREAKPOINT","features":[1]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND","features":[1]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG","features":[1]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[1]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[1]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION","features":[1]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[1]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_RESOURCES","features":[1]},{"name":"STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[1]},{"name":"STATUS_BTH_ATT_INVALID_HANDLE","features":[1]},{"name":"STATUS_BTH_ATT_INVALID_OFFSET","features":[1]},{"name":"STATUS_BTH_ATT_INVALID_PDU","features":[1]},{"name":"STATUS_BTH_ATT_PREPARE_QUEUE_FULL","features":[1]},{"name":"STATUS_BTH_ATT_READ_NOT_PERMITTED","features":[1]},{"name":"STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED","features":[1]},{"name":"STATUS_BTH_ATT_UNKNOWN_ERROR","features":[1]},{"name":"STATUS_BTH_ATT_UNLIKELY","features":[1]},{"name":"STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[1]},{"name":"STATUS_BTH_ATT_WRITE_NOT_PERMITTED","features":[1]},{"name":"STATUS_BUFFER_ALL_ZEROS","features":[1]},{"name":"STATUS_BUFFER_OVERFLOW","features":[1]},{"name":"STATUS_BUFFER_TOO_SMALL","features":[1]},{"name":"STATUS_BUS_RESET","features":[1]},{"name":"STATUS_BYPASSIO_FLT_NOT_SUPPORTED","features":[1]},{"name":"STATUS_CACHE_PAGE_LOCKED","features":[1]},{"name":"STATUS_CALLBACK_BYPASS","features":[1]},{"name":"STATUS_CALLBACK_INVOKE_INLINE","features":[1]},{"name":"STATUS_CALLBACK_POP_STACK","features":[1]},{"name":"STATUS_CALLBACK_RETURNED_LANG","features":[1]},{"name":"STATUS_CALLBACK_RETURNED_LDR_LOCK","features":[1]},{"name":"STATUS_CALLBACK_RETURNED_PRI_BACK","features":[1]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_AFFINITY","features":[1]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_PRIORITY","features":[1]},{"name":"STATUS_CALLBACK_RETURNED_TRANSACTION","features":[1]},{"name":"STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING","features":[1]},{"name":"STATUS_CANCELLED","features":[1]},{"name":"STATUS_CANNOT_ABORT_TRANSACTIONS","features":[1]},{"name":"STATUS_CANNOT_ACCEPT_TRANSACTED_WORK","features":[1]},{"name":"STATUS_CANNOT_BREAK_OPLOCK","features":[1]},{"name":"STATUS_CANNOT_DELETE","features":[1]},{"name":"STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[1]},{"name":"STATUS_CANNOT_GRANT_REQUESTED_OPLOCK","features":[1]},{"name":"STATUS_CANNOT_IMPERSONATE","features":[1]},{"name":"STATUS_CANNOT_LOAD_REGISTRY_FILE","features":[1]},{"name":"STATUS_CANNOT_MAKE","features":[1]},{"name":"STATUS_CANNOT_SWITCH_RUNLEVEL","features":[1]},{"name":"STATUS_CANT_ACCESS_DOMAIN_INFO","features":[1]},{"name":"STATUS_CANT_ATTACH_TO_DEV_VOLUME","features":[1]},{"name":"STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[1]},{"name":"STATUS_CANT_CLEAR_ENCRYPTION_FLAG","features":[1]},{"name":"STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[1]},{"name":"STATUS_CANT_CROSS_RM_BOUNDARY","features":[1]},{"name":"STATUS_CANT_DISABLE_MANDATORY","features":[1]},{"name":"STATUS_CANT_ENABLE_DENY_ONLY","features":[1]},{"name":"STATUS_CANT_OPEN_ANONYMOUS","features":[1]},{"name":"STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[1]},{"name":"STATUS_CANT_RECOVER_WITH_HANDLE_OPEN","features":[1]},{"name":"STATUS_CANT_TERMINATE_SELF","features":[1]},{"name":"STATUS_CANT_WAIT","features":[1]},{"name":"STATUS_CARDBUS_NOT_SUPPORTED","features":[1]},{"name":"STATUS_CASE_DIFFERING_NAMES_IN_DIR","features":[1]},{"name":"STATUS_CASE_SENSITIVE_PATH","features":[1]},{"name":"STATUS_CC_NEEDS_CALLBACK_SECTION_DRAIN","features":[1]},{"name":"STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE","features":[1]},{"name":"STATUS_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[1]},{"name":"STATUS_CHECKING_FILE_SYSTEM","features":[1]},{"name":"STATUS_CHECKOUT_REQUIRED","features":[1]},{"name":"STATUS_CHILD_MUST_BE_VOLATILE","features":[1]},{"name":"STATUS_CHILD_PROCESS_BLOCKED","features":[1]},{"name":"STATUS_CIMFS_IMAGE_CORRUPT","features":[1]},{"name":"STATUS_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_CLEANER_CARTRIDGE_INSTALLED","features":[1]},{"name":"STATUS_CLIENT_SERVER_PARAMETERS_INVALID","features":[1]},{"name":"STATUS_CLIP_DEVICE_LICENSE_MISSING","features":[1]},{"name":"STATUS_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[1]},{"name":"STATUS_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[1]},{"name":"STATUS_CLIP_LICENSE_EXPIRED","features":[1]},{"name":"STATUS_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[1]},{"name":"STATUS_CLIP_LICENSE_INVALID_SIGNATURE","features":[1]},{"name":"STATUS_CLIP_LICENSE_NOT_FOUND","features":[1]},{"name":"STATUS_CLIP_LICENSE_NOT_SIGNED","features":[1]},{"name":"STATUS_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[1]},{"name":"STATUS_CLOUD_FILE_ACCESS_DENIED","features":[1]},{"name":"STATUS_CLOUD_FILE_ALREADY_CONNECTED","features":[1]},{"name":"STATUS_CLOUD_FILE_AUTHENTICATION_FAILED","features":[1]},{"name":"STATUS_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[1]},{"name":"STATUS_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[1]},{"name":"STATUS_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[1]},{"name":"STATUS_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[1]},{"name":"STATUS_CLOUD_FILE_INVALID_REQUEST","features":[1]},{"name":"STATUS_CLOUD_FILE_IN_USE","features":[1]},{"name":"STATUS_CLOUD_FILE_METADATA_CORRUPT","features":[1]},{"name":"STATUS_CLOUD_FILE_METADATA_TOO_LARGE","features":[1]},{"name":"STATUS_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[1]},{"name":"STATUS_CLOUD_FILE_NOT_IN_SYNC","features":[1]},{"name":"STATUS_CLOUD_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[1]},{"name":"STATUS_CLOUD_FILE_PINNED","features":[1]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[1]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[1]},{"name":"STATUS_CLOUD_FILE_PROPERTY_CORRUPT","features":[1]},{"name":"STATUS_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[1]},{"name":"STATUS_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[1]},{"name":"STATUS_CLOUD_FILE_PROVIDER_TERMINATED","features":[1]},{"name":"STATUS_CLOUD_FILE_READ_ONLY_VOLUME","features":[1]},{"name":"STATUS_CLOUD_FILE_REQUEST_ABORTED","features":[1]},{"name":"STATUS_CLOUD_FILE_REQUEST_CANCELED","features":[1]},{"name":"STATUS_CLOUD_FILE_REQUEST_TIMEOUT","features":[1]},{"name":"STATUS_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[1]},{"name":"STATUS_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[1]},{"name":"STATUS_CLOUD_FILE_UNSUCCESSFUL","features":[1]},{"name":"STATUS_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[1]},{"name":"STATUS_CLOUD_FILE_VALIDATION_FAILED","features":[1]},{"name":"STATUS_CLUSTER_CAM_TICKET_REPLAY_DETECTED","features":[1]},{"name":"STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR","features":[1]},{"name":"STATUS_CLUSTER_CSV_INVALID_HANDLE","features":[1]},{"name":"STATUS_CLUSTER_CSV_NOT_REDIRECTED","features":[1]},{"name":"STATUS_CLUSTER_CSV_NO_SNAPSHOTS","features":[1]},{"name":"STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS","features":[1]},{"name":"STATUS_CLUSTER_CSV_REDIRECTED","features":[1]},{"name":"STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS","features":[1]},{"name":"STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[1]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING","features":[1]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL","features":[1]},{"name":"STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL","features":[1]},{"name":"STATUS_CLUSTER_INVALID_NETWORK","features":[1]},{"name":"STATUS_CLUSTER_INVALID_NETWORK_PROVIDER","features":[1]},{"name":"STATUS_CLUSTER_INVALID_NODE","features":[1]},{"name":"STATUS_CLUSTER_INVALID_REQUEST","features":[1]},{"name":"STATUS_CLUSTER_JOIN_IN_PROGRESS","features":[1]},{"name":"STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[1]},{"name":"STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[1]},{"name":"STATUS_CLUSTER_NETINTERFACE_EXISTS","features":[1]},{"name":"STATUS_CLUSTER_NETINTERFACE_NOT_FOUND","features":[1]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[1]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_ONLINE","features":[1]},{"name":"STATUS_CLUSTER_NETWORK_EXISTS","features":[1]},{"name":"STATUS_CLUSTER_NETWORK_NOT_FOUND","features":[1]},{"name":"STATUS_CLUSTER_NETWORK_NOT_INTERNAL","features":[1]},{"name":"STATUS_CLUSTER_NODE_ALREADY_DOWN","features":[1]},{"name":"STATUS_CLUSTER_NODE_ALREADY_MEMBER","features":[1]},{"name":"STATUS_CLUSTER_NODE_ALREADY_UP","features":[1]},{"name":"STATUS_CLUSTER_NODE_DOWN","features":[1]},{"name":"STATUS_CLUSTER_NODE_EXISTS","features":[1]},{"name":"STATUS_CLUSTER_NODE_NOT_FOUND","features":[1]},{"name":"STATUS_CLUSTER_NODE_NOT_MEMBER","features":[1]},{"name":"STATUS_CLUSTER_NODE_NOT_PAUSED","features":[1]},{"name":"STATUS_CLUSTER_NODE_PAUSED","features":[1]},{"name":"STATUS_CLUSTER_NODE_UNREACHABLE","features":[1]},{"name":"STATUS_CLUSTER_NODE_UP","features":[1]},{"name":"STATUS_CLUSTER_NON_CSV_PATH","features":[1]},{"name":"STATUS_CLUSTER_NO_NET_ADAPTERS","features":[1]},{"name":"STATUS_CLUSTER_NO_SECURITY_CONTEXT","features":[1]},{"name":"STATUS_CLUSTER_POISONED","features":[1]},{"name":"STATUS_COMMITMENT_LIMIT","features":[1]},{"name":"STATUS_COMMITMENT_MINIMUM","features":[1]},{"name":"STATUS_COMPRESSED_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_COMPRESSION_DISABLED","features":[1]},{"name":"STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[1]},{"name":"STATUS_COMPRESSION_NOT_BENEFICIAL","features":[1]},{"name":"STATUS_CONFLICTING_ADDRESSES","features":[1]},{"name":"STATUS_CONNECTION_ABORTED","features":[1]},{"name":"STATUS_CONNECTION_ACTIVE","features":[1]},{"name":"STATUS_CONNECTION_COUNT_LIMIT","features":[1]},{"name":"STATUS_CONNECTION_DISCONNECTED","features":[1]},{"name":"STATUS_CONNECTION_INVALID","features":[1]},{"name":"STATUS_CONNECTION_IN_USE","features":[1]},{"name":"STATUS_CONNECTION_REFUSED","features":[1]},{"name":"STATUS_CONNECTION_RESET","features":[1]},{"name":"STATUS_CONTAINER_ASSIGNED","features":[1]},{"name":"STATUS_CONTENT_BLOCKED","features":[1]},{"name":"STATUS_CONTEXT_MISMATCH","features":[1]},{"name":"STATUS_CONTEXT_STOWED_EXCEPTION","features":[1]},{"name":"STATUS_CONTROL_C_EXIT","features":[1]},{"name":"STATUS_CONTROL_STACK_VIOLATION","features":[1]},{"name":"STATUS_CONVERT_TO_LARGE","features":[1]},{"name":"STATUS_COPY_PROTECTION_FAILURE","features":[1]},{"name":"STATUS_CORRUPT_LOG_CLEARED","features":[1]},{"name":"STATUS_CORRUPT_LOG_CORRUPTED","features":[1]},{"name":"STATUS_CORRUPT_LOG_DELETED_FULL","features":[1]},{"name":"STATUS_CORRUPT_LOG_OVERFULL","features":[1]},{"name":"STATUS_CORRUPT_LOG_UNAVAILABLE","features":[1]},{"name":"STATUS_CORRUPT_LOG_UPLEVEL_RECORDS","features":[1]},{"name":"STATUS_CORRUPT_SYSTEM_FILE","features":[1]},{"name":"STATUS_COULD_NOT_INTERPRET","features":[1]},{"name":"STATUS_COULD_NOT_RESIZE_LOG","features":[1]},{"name":"STATUS_CPU_SET_INVALID","features":[1]},{"name":"STATUS_CRASH_DUMP","features":[1]},{"name":"STATUS_CRC_ERROR","features":[1]},{"name":"STATUS_CRED_REQUIRES_CONFIRMATION","features":[1]},{"name":"STATUS_CRM_PROTOCOL_ALREADY_EXISTS","features":[1]},{"name":"STATUS_CRM_PROTOCOL_NOT_FOUND","features":[1]},{"name":"STATUS_CROSSREALM_DELEGATION_FAILURE","features":[1]},{"name":"STATUS_CROSS_PARTITION_VIOLATION","features":[1]},{"name":"STATUS_CRYPTO_SYSTEM_INVALID","features":[1]},{"name":"STATUS_CSS_AUTHENTICATION_FAILURE","features":[1]},{"name":"STATUS_CSS_KEY_NOT_ESTABLISHED","features":[1]},{"name":"STATUS_CSS_KEY_NOT_PRESENT","features":[1]},{"name":"STATUS_CSS_REGION_MISMATCH","features":[1]},{"name":"STATUS_CSS_RESETS_EXHAUSTED","features":[1]},{"name":"STATUS_CSS_SCRAMBLED_SECTOR","features":[1]},{"name":"STATUS_CSV_IO_PAUSE_TIMEOUT","features":[1]},{"name":"STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[1]},{"name":"STATUS_CS_ENCRYPTION_FILE_NOT_CSE","features":[1]},{"name":"STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[1]},{"name":"STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[1]},{"name":"STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[1]},{"name":"STATUS_CTLOG_INCONSISTENT_TRACKING_FILE","features":[1]},{"name":"STATUS_CTLOG_INVALID_TRACKING_STATE","features":[1]},{"name":"STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[1]},{"name":"STATUS_CTLOG_TRACKING_NOT_INITIALIZED","features":[1]},{"name":"STATUS_CTLOG_VHD_CHANGED_OFFLINE","features":[1]},{"name":"STATUS_CTL_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_CTX_BAD_VIDEO_MODE","features":[1]},{"name":"STATUS_CTX_CDM_CONNECT","features":[1]},{"name":"STATUS_CTX_CDM_DISCONNECT","features":[1]},{"name":"STATUS_CTX_CLIENT_LICENSE_IN_USE","features":[1]},{"name":"STATUS_CTX_CLIENT_LICENSE_NOT_SET","features":[1]},{"name":"STATUS_CTX_CLIENT_QUERY_TIMEOUT","features":[1]},{"name":"STATUS_CTX_CLOSE_PENDING","features":[1]},{"name":"STATUS_CTX_CONSOLE_CONNECT","features":[1]},{"name":"STATUS_CTX_CONSOLE_DISCONNECT","features":[1]},{"name":"STATUS_CTX_GRAPHICS_INVALID","features":[1]},{"name":"STATUS_CTX_INVALID_MODEMNAME","features":[1]},{"name":"STATUS_CTX_INVALID_PD","features":[1]},{"name":"STATUS_CTX_INVALID_WD","features":[1]},{"name":"STATUS_CTX_LICENSE_CLIENT_INVALID","features":[1]},{"name":"STATUS_CTX_LICENSE_EXPIRED","features":[1]},{"name":"STATUS_CTX_LICENSE_NOT_AVAILABLE","features":[1]},{"name":"STATUS_CTX_LOGON_DISABLED","features":[1]},{"name":"STATUS_CTX_MODEM_INF_NOT_FOUND","features":[1]},{"name":"STATUS_CTX_MODEM_RESPONSE_BUSY","features":[1]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_CARRIER","features":[1]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[1]},{"name":"STATUS_CTX_MODEM_RESPONSE_TIMEOUT","features":[1]},{"name":"STATUS_CTX_MODEM_RESPONSE_VOICE","features":[1]},{"name":"STATUS_CTX_NOT_CONSOLE","features":[1]},{"name":"STATUS_CTX_NO_OUTBUF","features":[1]},{"name":"STATUS_CTX_PD_NOT_FOUND","features":[1]},{"name":"STATUS_CTX_RESPONSE_ERROR","features":[1]},{"name":"STATUS_CTX_SECURITY_LAYER_ERROR","features":[1]},{"name":"STATUS_CTX_SHADOW_DENIED","features":[1]},{"name":"STATUS_CTX_SHADOW_DISABLED","features":[1]},{"name":"STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[1]},{"name":"STATUS_CTX_SHADOW_INVALID","features":[1]},{"name":"STATUS_CTX_SHADOW_NOT_RUNNING","features":[1]},{"name":"STATUS_CTX_TD_ERROR","features":[1]},{"name":"STATUS_CTX_WD_NOT_FOUND","features":[1]},{"name":"STATUS_CTX_WINSTATION_ACCESS_DENIED","features":[1]},{"name":"STATUS_CTX_WINSTATION_BUSY","features":[1]},{"name":"STATUS_CTX_WINSTATION_NAME_COLLISION","features":[1]},{"name":"STATUS_CTX_WINSTATION_NAME_INVALID","features":[1]},{"name":"STATUS_CTX_WINSTATION_NOT_FOUND","features":[1]},{"name":"STATUS_CURRENT_DOMAIN_NOT_ALLOWED","features":[1]},{"name":"STATUS_CURRENT_TRANSACTION_NOT_VALID","features":[1]},{"name":"STATUS_DATATYPE_MISALIGNMENT","features":[1]},{"name":"STATUS_DATATYPE_MISALIGNMENT_ERROR","features":[1]},{"name":"STATUS_DATA_CHECKSUM_ERROR","features":[1]},{"name":"STATUS_DATA_ERROR","features":[1]},{"name":"STATUS_DATA_LATE_ERROR","features":[1]},{"name":"STATUS_DATA_LOST_REPAIR","features":[1]},{"name":"STATUS_DATA_NOT_ACCEPTED","features":[1]},{"name":"STATUS_DATA_OVERRUN","features":[1]},{"name":"STATUS_DATA_OVERWRITTEN","features":[1]},{"name":"STATUS_DAX_MAPPING_EXISTS","features":[1]},{"name":"STATUS_DEBUGGER_INACTIVE","features":[1]},{"name":"STATUS_DEBUG_ATTACH_FAILED","features":[1]},{"name":"STATUS_DECRYPTION_FAILED","features":[1]},{"name":"STATUS_DELAY_LOAD_FAILED","features":[1]},{"name":"STATUS_DELETE_PENDING","features":[1]},{"name":"STATUS_DESTINATION_ELEMENT_FULL","features":[1]},{"name":"STATUS_DEVICE_ALREADY_ATTACHED","features":[1]},{"name":"STATUS_DEVICE_BUSY","features":[1]},{"name":"STATUS_DEVICE_CONFIGURATION_ERROR","features":[1]},{"name":"STATUS_DEVICE_DATA_ERROR","features":[1]},{"name":"STATUS_DEVICE_DOES_NOT_EXIST","features":[1]},{"name":"STATUS_DEVICE_DOOR_OPEN","features":[1]},{"name":"STATUS_DEVICE_ENUMERATION_ERROR","features":[1]},{"name":"STATUS_DEVICE_FEATURE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_DEVICE_HARDWARE_ERROR","features":[1]},{"name":"STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[1]},{"name":"STATUS_DEVICE_HUNG","features":[1]},{"name":"STATUS_DEVICE_INSUFFICIENT_RESOURCES","features":[1]},{"name":"STATUS_DEVICE_IN_MAINTENANCE","features":[1]},{"name":"STATUS_DEVICE_NOT_CONNECTED","features":[1]},{"name":"STATUS_DEVICE_NOT_PARTITIONED","features":[1]},{"name":"STATUS_DEVICE_NOT_READY","features":[1]},{"name":"STATUS_DEVICE_OFF_LINE","features":[1]},{"name":"STATUS_DEVICE_PAPER_EMPTY","features":[1]},{"name":"STATUS_DEVICE_POWERED_OFF","features":[1]},{"name":"STATUS_DEVICE_POWER_CYCLE_REQUIRED","features":[1]},{"name":"STATUS_DEVICE_POWER_FAILURE","features":[1]},{"name":"STATUS_DEVICE_PROTOCOL_ERROR","features":[1]},{"name":"STATUS_DEVICE_REMOVED","features":[1]},{"name":"STATUS_DEVICE_REQUIRES_CLEANING","features":[1]},{"name":"STATUS_DEVICE_RESET_REQUIRED","features":[1]},{"name":"STATUS_DEVICE_SUPPORT_IN_PROGRESS","features":[1]},{"name":"STATUS_DEVICE_UNREACHABLE","features":[1]},{"name":"STATUS_DEVICE_UNRESPONSIVE","features":[1]},{"name":"STATUS_DFS_EXIT_PATH_FOUND","features":[1]},{"name":"STATUS_DFS_UNAVAILABLE","features":[1]},{"name":"STATUS_DIF_BINDING_API_NOT_FOUND","features":[1]},{"name":"STATUS_DIF_IOCALLBACK_NOT_REPLACED","features":[1]},{"name":"STATUS_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[1]},{"name":"STATUS_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[1]},{"name":"STATUS_DIF_VOLATILE_INVALID_INFO","features":[1]},{"name":"STATUS_DIF_VOLATILE_NOT_ALLOWED","features":[1]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[1]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[1]},{"name":"STATUS_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[1]},{"name":"STATUS_DIRECTORY_IS_A_REPARSE_POINT","features":[1]},{"name":"STATUS_DIRECTORY_NOT_EMPTY","features":[1]},{"name":"STATUS_DIRECTORY_NOT_RM","features":[1]},{"name":"STATUS_DIRECTORY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_DIRECTORY_SERVICE_REQUIRED","features":[1]},{"name":"STATUS_DISK_CORRUPT_ERROR","features":[1]},{"name":"STATUS_DISK_FULL","features":[1]},{"name":"STATUS_DISK_OPERATION_FAILED","features":[1]},{"name":"STATUS_DISK_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_DISK_RECALIBRATE_FAILED","features":[1]},{"name":"STATUS_DISK_REPAIR_DISABLED","features":[1]},{"name":"STATUS_DISK_REPAIR_REDIRECTED","features":[1]},{"name":"STATUS_DISK_REPAIR_UNSUCCESSFUL","features":[1]},{"name":"STATUS_DISK_RESET_FAILED","features":[1]},{"name":"STATUS_DISK_RESOURCES_EXHAUSTED","features":[1]},{"name":"STATUS_DLL_INIT_FAILED","features":[1]},{"name":"STATUS_DLL_INIT_FAILED_LOGOFF","features":[1]},{"name":"STATUS_DLL_MIGHT_BE_INCOMPATIBLE","features":[1]},{"name":"STATUS_DLL_MIGHT_BE_INSECURE","features":[1]},{"name":"STATUS_DLL_NOT_FOUND","features":[1]},{"name":"STATUS_DM_OPERATION_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_DOMAIN_CONTROLLER_NOT_FOUND","features":[1]},{"name":"STATUS_DOMAIN_CTRLR_CONFIG_ERROR","features":[1]},{"name":"STATUS_DOMAIN_EXISTS","features":[1]},{"name":"STATUS_DOMAIN_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_DOMAIN_TRUST_INCONSISTENT","features":[1]},{"name":"STATUS_DRIVERS_LEAKING_LOCKED_PAGES","features":[1]},{"name":"STATUS_DRIVER_BLOCKED","features":[1]},{"name":"STATUS_DRIVER_BLOCKED_CRITICAL","features":[1]},{"name":"STATUS_DRIVER_CANCEL_TIMEOUT","features":[1]},{"name":"STATUS_DRIVER_DATABASE_ERROR","features":[1]},{"name":"STATUS_DRIVER_ENTRYPOINT_NOT_FOUND","features":[1]},{"name":"STATUS_DRIVER_FAILED_PRIOR_UNLOAD","features":[1]},{"name":"STATUS_DRIVER_FAILED_SLEEP","features":[1]},{"name":"STATUS_DRIVER_INTERNAL_ERROR","features":[1]},{"name":"STATUS_DRIVER_ORDINAL_NOT_FOUND","features":[1]},{"name":"STATUS_DRIVER_PROCESS_TERMINATED","features":[1]},{"name":"STATUS_DRIVER_UNABLE_TO_LOAD","features":[1]},{"name":"STATUS_DS_ADMIN_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[1]},{"name":"STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[1]},{"name":"STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[1]},{"name":"STATUS_DS_BUSY","features":[1]},{"name":"STATUS_DS_CANT_MOD_OBJ_CLASS","features":[1]},{"name":"STATUS_DS_CANT_MOD_PRIMARYGROUPID","features":[1]},{"name":"STATUS_DS_CANT_ON_NON_LEAF","features":[1]},{"name":"STATUS_DS_CANT_ON_RDN","features":[1]},{"name":"STATUS_DS_CANT_START","features":[1]},{"name":"STATUS_DS_CROSS_DOM_MOVE_FAILED","features":[1]},{"name":"STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[1]},{"name":"STATUS_DS_DOMAIN_RENAME_IN_PROGRESS","features":[1]},{"name":"STATUS_DS_DUPLICATE_ID_FOUND","features":[1]},{"name":"STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[1]},{"name":"STATUS_DS_GC_NOT_AVAILABLE","features":[1]},{"name":"STATUS_DS_GC_REQUIRED","features":[1]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[1]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[1]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[1]},{"name":"STATUS_DS_GROUP_CONVERSION_ERROR","features":[1]},{"name":"STATUS_DS_HAVE_PRIMARY_MEMBERS","features":[1]},{"name":"STATUS_DS_INCORRECT_ROLE_OWNER","features":[1]},{"name":"STATUS_DS_INIT_FAILURE","features":[1]},{"name":"STATUS_DS_INIT_FAILURE_CONSOLE","features":[1]},{"name":"STATUS_DS_INVALID_ATTRIBUTE_SYNTAX","features":[1]},{"name":"STATUS_DS_INVALID_GROUP_TYPE","features":[1]},{"name":"STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[1]},{"name":"STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[1]},{"name":"STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[1]},{"name":"STATUS_DS_NAME_NOT_UNIQUE","features":[1]},{"name":"STATUS_DS_NO_ATTRIBUTE_OR_VALUE","features":[1]},{"name":"STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[1]},{"name":"STATUS_DS_NO_MORE_RIDS","features":[1]},{"name":"STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[1]},{"name":"STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[1]},{"name":"STATUS_DS_NO_RIDS_ALLOCATED","features":[1]},{"name":"STATUS_DS_OBJ_CLASS_VIOLATION","features":[1]},{"name":"STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[1]},{"name":"STATUS_DS_OID_NOT_FOUND","features":[1]},{"name":"STATUS_DS_RIDMGR_DISABLED","features":[1]},{"name":"STATUS_DS_RIDMGR_INIT_ERROR","features":[1]},{"name":"STATUS_DS_SAM_INIT_FAILURE","features":[1]},{"name":"STATUS_DS_SAM_INIT_FAILURE_CONSOLE","features":[1]},{"name":"STATUS_DS_SENSITIVE_GROUP_VIOLATION","features":[1]},{"name":"STATUS_DS_SHUTTING_DOWN","features":[1]},{"name":"STATUS_DS_SRC_SID_EXISTS_IN_FOREST","features":[1]},{"name":"STATUS_DS_UNAVAILABLE","features":[1]},{"name":"STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[1]},{"name":"STATUS_DS_VERSION_CHECK_FAILURE","features":[1]},{"name":"STATUS_DUPLICATE_NAME","features":[1]},{"name":"STATUS_DUPLICATE_OBJECTID","features":[1]},{"name":"STATUS_DUPLICATE_PRIVILEGES","features":[1]},{"name":"STATUS_DYNAMIC_CODE_BLOCKED","features":[1]},{"name":"STATUS_EAS_NOT_SUPPORTED","features":[1]},{"name":"STATUS_EA_CORRUPT_ERROR","features":[1]},{"name":"STATUS_EA_LIST_INCONSISTENT","features":[1]},{"name":"STATUS_EA_TOO_LARGE","features":[1]},{"name":"STATUS_EFS_ALG_BLOB_TOO_BIG","features":[1]},{"name":"STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[1]},{"name":"STATUS_ELEVATION_REQUIRED","features":[1]},{"name":"STATUS_EMULATION_BREAKPOINT","features":[1]},{"name":"STATUS_EMULATION_SYSCALL","features":[1]},{"name":"STATUS_ENCLAVE_FAILURE","features":[1]},{"name":"STATUS_ENCLAVE_IS_TERMINATING","features":[1]},{"name":"STATUS_ENCLAVE_NOT_TERMINATED","features":[1]},{"name":"STATUS_ENCLAVE_VIOLATION","features":[1]},{"name":"STATUS_ENCOUNTERED_WRITE_IN_PROGRESS","features":[1]},{"name":"STATUS_ENCRYPTED_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_ENCRYPTED_IO_NOT_POSSIBLE","features":[1]},{"name":"STATUS_ENCRYPTING_METADATA_DISALLOWED","features":[1]},{"name":"STATUS_ENCRYPTION_DISABLED","features":[1]},{"name":"STATUS_ENCRYPTION_FAILED","features":[1]},{"name":"STATUS_END_OF_FILE","features":[1]},{"name":"STATUS_END_OF_MEDIA","features":[1]},{"name":"STATUS_ENLISTMENT_NOT_FOUND","features":[1]},{"name":"STATUS_ENLISTMENT_NOT_SUPERIOR","features":[1]},{"name":"STATUS_ENTRYPOINT_NOT_FOUND","features":[1]},{"name":"STATUS_EOF_ON_GHOSTED_RANGE","features":[1]},{"name":"STATUS_EOM_OVERFLOW","features":[1]},{"name":"STATUS_ERROR_PROCESS_NOT_IN_JOB","features":[1]},{"name":"STATUS_EVALUATION_EXPIRATION","features":[1]},{"name":"STATUS_EVENTLOG_CANT_START","features":[1]},{"name":"STATUS_EVENTLOG_FILE_CHANGED","features":[1]},{"name":"STATUS_EVENTLOG_FILE_CORRUPT","features":[1]},{"name":"STATUS_EVENT_DONE","features":[1]},{"name":"STATUS_EVENT_PENDING","features":[1]},{"name":"STATUS_EXECUTABLE_MEMORY_WRITE","features":[1]},{"name":"STATUS_EXPIRED_HANDLE","features":[1]},{"name":"STATUS_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[1]},{"name":"STATUS_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_EXTRANEOUS_INFORMATION","features":[1]},{"name":"STATUS_FAILED_DRIVER_ENTRY","features":[1]},{"name":"STATUS_FAILED_STACK_SWITCH","features":[1]},{"name":"STATUS_FAIL_CHECK","features":[1]},{"name":"STATUS_FAIL_FAST_EXCEPTION","features":[1]},{"name":"STATUS_FASTPATH_REJECTED","features":[1]},{"name":"STATUS_FATAL_APP_EXIT","features":[1]},{"name":"STATUS_FATAL_MEMORY_EXHAUSTION","features":[1]},{"name":"STATUS_FATAL_USER_CALLBACK_EXCEPTION","features":[1]},{"name":"STATUS_FILEMARK_DETECTED","features":[1]},{"name":"STATUS_FILES_OPEN","features":[1]},{"name":"STATUS_FILE_CHECKED_OUT","features":[1]},{"name":"STATUS_FILE_CLOSED","features":[1]},{"name":"STATUS_FILE_CORRUPT_ERROR","features":[1]},{"name":"STATUS_FILE_DELETED","features":[1]},{"name":"STATUS_FILE_ENCRYPTED","features":[1]},{"name":"STATUS_FILE_FORCED_CLOSED","features":[1]},{"name":"STATUS_FILE_HANDLE_REVOKED","features":[1]},{"name":"STATUS_FILE_IDENTITY_NOT_PERSISTENT","features":[1]},{"name":"STATUS_FILE_INVALID","features":[1]},{"name":"STATUS_FILE_IS_A_DIRECTORY","features":[1]},{"name":"STATUS_FILE_IS_OFFLINE","features":[1]},{"name":"STATUS_FILE_LOCKED_WITH_ONLY_READERS","features":[1]},{"name":"STATUS_FILE_LOCKED_WITH_WRITERS","features":[1]},{"name":"STATUS_FILE_LOCK_CONFLICT","features":[1]},{"name":"STATUS_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[1]},{"name":"STATUS_FILE_NOT_AVAILABLE","features":[1]},{"name":"STATUS_FILE_NOT_ENCRYPTED","features":[1]},{"name":"STATUS_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_FILE_PROTECTED_UNDER_DPL","features":[1]},{"name":"STATUS_FILE_RENAMED","features":[1]},{"name":"STATUS_FILE_SNAP_INVALID_PARAMETER","features":[1]},{"name":"STATUS_FILE_SNAP_IN_PROGRESS","features":[1]},{"name":"STATUS_FILE_SNAP_IO_NOT_COORDINATED","features":[1]},{"name":"STATUS_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_FILE_SNAP_UNEXPECTED_ERROR","features":[1]},{"name":"STATUS_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_FILE_SYSTEM_LIMITATION","features":[1]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[1]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[1]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[1]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[1]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[1]},{"name":"STATUS_FILE_TOO_LARGE","features":[1]},{"name":"STATUS_FIRMWARE_IMAGE_INVALID","features":[1]},{"name":"STATUS_FIRMWARE_SLOT_INVALID","features":[1]},{"name":"STATUS_FIRMWARE_UPDATED","features":[1]},{"name":"STATUS_FLOATED_SECTION","features":[1]},{"name":"STATUS_FLOAT_DENORMAL_OPERAND","features":[1]},{"name":"STATUS_FLOAT_DIVIDE_BY_ZERO","features":[1]},{"name":"STATUS_FLOAT_INEXACT_RESULT","features":[1]},{"name":"STATUS_FLOAT_INVALID_OPERATION","features":[1]},{"name":"STATUS_FLOAT_MULTIPLE_FAULTS","features":[1]},{"name":"STATUS_FLOAT_MULTIPLE_TRAPS","features":[1]},{"name":"STATUS_FLOAT_OVERFLOW","features":[1]},{"name":"STATUS_FLOAT_STACK_CHECK","features":[1]},{"name":"STATUS_FLOAT_UNDERFLOW","features":[1]},{"name":"STATUS_FLOPPY_BAD_REGISTERS","features":[1]},{"name":"STATUS_FLOPPY_ID_MARK_NOT_FOUND","features":[1]},{"name":"STATUS_FLOPPY_UNKNOWN_ERROR","features":[1]},{"name":"STATUS_FLOPPY_VOLUME","features":[1]},{"name":"STATUS_FLOPPY_WRONG_CYLINDER","features":[1]},{"name":"STATUS_FLT_ALREADY_ENLISTED","features":[1]},{"name":"STATUS_FLT_BUFFER_TOO_SMALL","features":[1]},{"name":"STATUS_FLT_CBDQ_DISABLED","features":[1]},{"name":"STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[1]},{"name":"STATUS_FLT_CONTEXT_ALREADY_DEFINED","features":[1]},{"name":"STATUS_FLT_CONTEXT_ALREADY_LINKED","features":[1]},{"name":"STATUS_FLT_DELETING_OBJECT","features":[1]},{"name":"STATUS_FLT_DISALLOW_FAST_IO","features":[1]},{"name":"STATUS_FLT_DISALLOW_FSFILTER_IO","features":[1]},{"name":"STATUS_FLT_DO_NOT_ATTACH","features":[1]},{"name":"STATUS_FLT_DO_NOT_DETACH","features":[1]},{"name":"STATUS_FLT_DUPLICATE_ENTRY","features":[1]},{"name":"STATUS_FLT_FILTER_NOT_FOUND","features":[1]},{"name":"STATUS_FLT_FILTER_NOT_READY","features":[1]},{"name":"STATUS_FLT_INSTANCE_ALTITUDE_COLLISION","features":[1]},{"name":"STATUS_FLT_INSTANCE_NAME_COLLISION","features":[1]},{"name":"STATUS_FLT_INSTANCE_NOT_FOUND","features":[1]},{"name":"STATUS_FLT_INTERNAL_ERROR","features":[1]},{"name":"STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[1]},{"name":"STATUS_FLT_INVALID_CONTEXT_REGISTRATION","features":[1]},{"name":"STATUS_FLT_INVALID_NAME_REQUEST","features":[1]},{"name":"STATUS_FLT_IO_COMPLETE","features":[1]},{"name":"STATUS_FLT_MUST_BE_NONPAGED_POOL","features":[1]},{"name":"STATUS_FLT_NAME_CACHE_MISS","features":[1]},{"name":"STATUS_FLT_NOT_INITIALIZED","features":[1]},{"name":"STATUS_FLT_NOT_SAFE_TO_POST_OPERATION","features":[1]},{"name":"STATUS_FLT_NO_DEVICE_OBJECT","features":[1]},{"name":"STATUS_FLT_NO_HANDLER_DEFINED","features":[1]},{"name":"STATUS_FLT_NO_WAITER_FOR_REPLY","features":[1]},{"name":"STATUS_FLT_POST_OPERATION_CLEANUP","features":[1]},{"name":"STATUS_FLT_REGISTRATION_BUSY","features":[1]},{"name":"STATUS_FLT_VOLUME_ALREADY_MOUNTED","features":[1]},{"name":"STATUS_FLT_VOLUME_NOT_FOUND","features":[1]},{"name":"STATUS_FLT_WCOS_NOT_SUPPORTED","features":[1]},{"name":"STATUS_FORMS_AUTH_REQUIRED","features":[1]},{"name":"STATUS_FOUND_OUT_OF_SCOPE","features":[1]},{"name":"STATUS_FREE_SPACE_TOO_FRAGMENTED","features":[1]},{"name":"STATUS_FREE_VM_NOT_AT_BASE","features":[1]},{"name":"STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[1]},{"name":"STATUS_FS_DRIVER_REQUIRED","features":[1]},{"name":"STATUS_FS_GUID_MISMATCH","features":[1]},{"name":"STATUS_FS_METADATA_INCONSISTENT","features":[1]},{"name":"STATUS_FT_DI_SCAN_REQUIRED","features":[1]},{"name":"STATUS_FT_MISSING_MEMBER","features":[1]},{"name":"STATUS_FT_ORPHANING","features":[1]},{"name":"STATUS_FT_READ_FAILURE","features":[1]},{"name":"STATUS_FT_READ_FROM_COPY","features":[1]},{"name":"STATUS_FT_READ_FROM_COPY_FAILURE","features":[1]},{"name":"STATUS_FT_READ_RECOVERY_FROM_BACKUP","features":[1]},{"name":"STATUS_FT_WRITE_FAILURE","features":[1]},{"name":"STATUS_FT_WRITE_RECOVERY","features":[1]},{"name":"STATUS_FULLSCREEN_MODE","features":[1]},{"name":"STATUS_FVE_ACTION_NOT_ALLOWED","features":[1]},{"name":"STATUS_FVE_AUTH_INVALID_APPLICATION","features":[1]},{"name":"STATUS_FVE_AUTH_INVALID_CONFIG","features":[1]},{"name":"STATUS_FVE_BAD_DATA","features":[1]},{"name":"STATUS_FVE_BAD_INFORMATION","features":[1]},{"name":"STATUS_FVE_BAD_METADATA_POINTER","features":[1]},{"name":"STATUS_FVE_BAD_PARTITION_SIZE","features":[1]},{"name":"STATUS_FVE_CONV_READ_ERROR","features":[1]},{"name":"STATUS_FVE_CONV_RECOVERY_FAILED","features":[1]},{"name":"STATUS_FVE_CONV_WRITE_ERROR","features":[1]},{"name":"STATUS_FVE_DATASET_FULL","features":[1]},{"name":"STATUS_FVE_DEBUGGER_ENABLED","features":[1]},{"name":"STATUS_FVE_DEVICE_LOCKEDOUT","features":[1]},{"name":"STATUS_FVE_DRY_RUN_FAILED","features":[1]},{"name":"STATUS_FVE_EDRIVE_BAND_ENUMERATION_FAILED","features":[1]},{"name":"STATUS_FVE_EDRIVE_DRY_RUN_FAILED","features":[1]},{"name":"STATUS_FVE_ENH_PIN_INVALID","features":[1]},{"name":"STATUS_FVE_FAILED_AUTHENTICATION","features":[1]},{"name":"STATUS_FVE_FAILED_SECTOR_SIZE","features":[1]},{"name":"STATUS_FVE_FAILED_WRONG_FS","features":[1]},{"name":"STATUS_FVE_FS_MOUNTED","features":[1]},{"name":"STATUS_FVE_FS_NOT_EXTENDED","features":[1]},{"name":"STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[1]},{"name":"STATUS_FVE_INVALID_DATUM_TYPE","features":[1]},{"name":"STATUS_FVE_KEYFILE_INVALID","features":[1]},{"name":"STATUS_FVE_KEYFILE_NOT_FOUND","features":[1]},{"name":"STATUS_FVE_KEYFILE_NO_VMK","features":[1]},{"name":"STATUS_FVE_LOCKED_VOLUME","features":[1]},{"name":"STATUS_FVE_METADATA_FULL","features":[1]},{"name":"STATUS_FVE_MOR_FAILED","features":[1]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CLUSTER","features":[1]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK","features":[1]},{"name":"STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[1]},{"name":"STATUS_FVE_NOT_DATA_VOLUME","features":[1]},{"name":"STATUS_FVE_NOT_DE_VOLUME","features":[1]},{"name":"STATUS_FVE_NOT_ENCRYPTED","features":[1]},{"name":"STATUS_FVE_NOT_OS_VOLUME","features":[1]},{"name":"STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY","features":[1]},{"name":"STATUS_FVE_NO_FEATURE_LICENSE","features":[1]},{"name":"STATUS_FVE_NO_LICENSE","features":[1]},{"name":"STATUS_FVE_OLD_METADATA_COPY","features":[1]},{"name":"STATUS_FVE_OSV_KSR_NOT_ALLOWED","features":[1]},{"name":"STATUS_FVE_OVERLAPPED_UPDATE","features":[1]},{"name":"STATUS_FVE_PARTIAL_METADATA","features":[1]},{"name":"STATUS_FVE_PIN_INVALID","features":[1]},{"name":"STATUS_FVE_POLICY_ON_RDV_EXCLUSION_LIST","features":[1]},{"name":"STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[1]},{"name":"STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED","features":[1]},{"name":"STATUS_FVE_PROTECTION_DISABLED","features":[1]},{"name":"STATUS_FVE_RAW_ACCESS","features":[1]},{"name":"STATUS_FVE_RAW_BLOCKED","features":[1]},{"name":"STATUS_FVE_REBOOT_REQUIRED","features":[1]},{"name":"STATUS_FVE_SECUREBOOT_CONFIG_CHANGE","features":[1]},{"name":"STATUS_FVE_SECUREBOOT_DISABLED","features":[1]},{"name":"STATUS_FVE_TOO_SMALL","features":[1]},{"name":"STATUS_FVE_TPM_DISABLED","features":[1]},{"name":"STATUS_FVE_TPM_INVALID_PCR","features":[1]},{"name":"STATUS_FVE_TPM_NO_VMK","features":[1]},{"name":"STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO","features":[1]},{"name":"STATUS_FVE_TRANSIENT_STATE","features":[1]},{"name":"STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG","features":[1]},{"name":"STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[1]},{"name":"STATUS_FVE_VOLUME_NOT_BOUND","features":[1]},{"name":"STATUS_FVE_VOLUME_TOO_SMALL","features":[1]},{"name":"STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE","features":[1]},{"name":"STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[1]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER","features":[1]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[1]},{"name":"STATUS_FWP_ALREADY_EXISTS","features":[1]},{"name":"STATUS_FWP_BUILTIN_OBJECT","features":[1]},{"name":"STATUS_FWP_CALLOUT_NOTIFICATION_FAILED","features":[1]},{"name":"STATUS_FWP_CALLOUT_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_CANNOT_PEND","features":[1]},{"name":"STATUS_FWP_CONDITION_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_CONNECTIONS_DISABLED","features":[1]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[1]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[1]},{"name":"STATUS_FWP_DROP_NOICMP","features":[1]},{"name":"STATUS_FWP_DUPLICATE_AUTH_METHOD","features":[1]},{"name":"STATUS_FWP_DUPLICATE_CONDITION","features":[1]},{"name":"STATUS_FWP_DUPLICATE_KEYMOD","features":[1]},{"name":"STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS","features":[1]},{"name":"STATUS_FWP_EM_NOT_SUPPORTED","features":[1]},{"name":"STATUS_FWP_FILTER_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_IKEEXT_NOT_RUNNING","features":[1]},{"name":"STATUS_FWP_INCOMPATIBLE_AUTH_METHOD","features":[1]},{"name":"STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM","features":[1]},{"name":"STATUS_FWP_INCOMPATIBLE_DH_GROUP","features":[1]},{"name":"STATUS_FWP_INCOMPATIBLE_LAYER","features":[1]},{"name":"STATUS_FWP_INCOMPATIBLE_SA_STATE","features":[1]},{"name":"STATUS_FWP_INCOMPATIBLE_TXN","features":[1]},{"name":"STATUS_FWP_INJECT_HANDLE_CLOSING","features":[1]},{"name":"STATUS_FWP_INJECT_HANDLE_STALE","features":[1]},{"name":"STATUS_FWP_INVALID_ACTION_TYPE","features":[1]},{"name":"STATUS_FWP_INVALID_AUTH_TRANSFORM","features":[1]},{"name":"STATUS_FWP_INVALID_CIPHER_TRANSFORM","features":[1]},{"name":"STATUS_FWP_INVALID_DNS_NAME","features":[1]},{"name":"STATUS_FWP_INVALID_ENUMERATOR","features":[1]},{"name":"STATUS_FWP_INVALID_FLAGS","features":[1]},{"name":"STATUS_FWP_INVALID_INTERVAL","features":[1]},{"name":"STATUS_FWP_INVALID_NET_MASK","features":[1]},{"name":"STATUS_FWP_INVALID_PARAMETER","features":[1]},{"name":"STATUS_FWP_INVALID_RANGE","features":[1]},{"name":"STATUS_FWP_INVALID_TRANSFORM_COMBINATION","features":[1]},{"name":"STATUS_FWP_INVALID_TUNNEL_ENDPOINT","features":[1]},{"name":"STATUS_FWP_INVALID_WEIGHT","features":[1]},{"name":"STATUS_FWP_IN_USE","features":[1]},{"name":"STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[1]},{"name":"STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED","features":[1]},{"name":"STATUS_FWP_KM_CLIENTS_ONLY","features":[1]},{"name":"STATUS_FWP_L2_DRIVER_NOT_READY","features":[1]},{"name":"STATUS_FWP_LAYER_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_LIFETIME_MISMATCH","features":[1]},{"name":"STATUS_FWP_MATCH_TYPE_MISMATCH","features":[1]},{"name":"STATUS_FWP_NET_EVENTS_DISABLED","features":[1]},{"name":"STATUS_FWP_NEVER_MATCH","features":[1]},{"name":"STATUS_FWP_NOTIFICATION_DROPPED","features":[1]},{"name":"STATUS_FWP_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_NO_TXN_IN_PROGRESS","features":[1]},{"name":"STATUS_FWP_NULL_DISPLAY_NAME","features":[1]},{"name":"STATUS_FWP_NULL_POINTER","features":[1]},{"name":"STATUS_FWP_OUT_OF_BOUNDS","features":[1]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_MISMATCH","features":[1]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_PROVIDER_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_RESERVED","features":[1]},{"name":"STATUS_FWP_SESSION_ABORTED","features":[1]},{"name":"STATUS_FWP_STILL_ON","features":[1]},{"name":"STATUS_FWP_SUBLAYER_NOT_FOUND","features":[1]},{"name":"STATUS_FWP_TCPIP_NOT_READY","features":[1]},{"name":"STATUS_FWP_TIMEOUT","features":[1]},{"name":"STATUS_FWP_TOO_MANY_CALLOUTS","features":[1]},{"name":"STATUS_FWP_TOO_MANY_SUBLAYERS","features":[1]},{"name":"STATUS_FWP_TRAFFIC_MISMATCH","features":[1]},{"name":"STATUS_FWP_TXN_ABORTED","features":[1]},{"name":"STATUS_FWP_TXN_IN_PROGRESS","features":[1]},{"name":"STATUS_FWP_TYPE_MISMATCH","features":[1]},{"name":"STATUS_FWP_WRONG_SESSION","features":[1]},{"name":"STATUS_FWP_ZERO_LENGTH_ARRAY","features":[1]},{"name":"STATUS_GDI_HANDLE_LEAK","features":[1]},{"name":"STATUS_GENERIC_COMMAND_FAILED","features":[1]},{"name":"STATUS_GENERIC_NOT_MAPPED","features":[1]},{"name":"STATUS_GHOSTED","features":[1]},{"name":"STATUS_GPIO_CLIENT_INFORMATION_INVALID","features":[1]},{"name":"STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[1]},{"name":"STATUS_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[1]},{"name":"STATUS_GPIO_INVALID_REGISTRATION_PACKET","features":[1]},{"name":"STATUS_GPIO_OPERATION_DENIED","features":[1]},{"name":"STATUS_GPIO_VERSION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRACEFUL_DISCONNECT","features":[1]},{"name":"STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[1]},{"name":"STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[1]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[1]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[1]},{"name":"STATUS_GRAPHICS_ADAPTER_WAS_RESET","features":[1]},{"name":"STATUS_GRAPHICS_ALLOCATION_BUSY","features":[1]},{"name":"STATUS_GRAPHICS_ALLOCATION_CLOSED","features":[1]},{"name":"STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[1]},{"name":"STATUS_GRAPHICS_ALLOCATION_INVALID","features":[1]},{"name":"STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[1]},{"name":"STATUS_GRAPHICS_CANNOTCOLORCONVERT","features":[1]},{"name":"STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[1]},{"name":"STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[1]},{"name":"STATUS_GRAPHICS_CANT_LOCK_MEMORY","features":[1]},{"name":"STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[1]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[1]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[1]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[1]},{"name":"STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[1]},{"name":"STATUS_GRAPHICS_COPP_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_DATASET_IS_EMPTY","features":[1]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING","features":[1]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_DATA","features":[1]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[1]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[1]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[1]},{"name":"STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[1]},{"name":"STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[1]},{"name":"STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[1]},{"name":"STATUS_GRAPHICS_DRIVER_MISMATCH","features":[1]},{"name":"STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[1]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[1]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[1]},{"name":"STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[1]},{"name":"STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[1]},{"name":"STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[1]},{"name":"STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[1]},{"name":"STATUS_GRAPHICS_I2C_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[1]},{"name":"STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[1]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[1]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[1]},{"name":"STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[1]},{"name":"STATUS_GRAPHICS_INTERNAL_ERROR","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_ACTIVE_REGION","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_CLIENT_TYPE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_COLORBASIS","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_DRIVER_MODEL","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_FREQUENCY","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_GAMMA_RAMP","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_PIXELFORMAT","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_POINTER","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_STRIDE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_TOTAL_REGION","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[1]},{"name":"STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[1]},{"name":"STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[1]},{"name":"STATUS_GRAPHICS_LEADLINK_START_DEFERRED","features":[1]},{"name":"STATUS_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[1]},{"name":"STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[1]},{"name":"STATUS_GRAPHICS_MCA_INTERNAL_ERROR","features":[1]},{"name":"STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[1]},{"name":"STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[1]},{"name":"STATUS_GRAPHICS_MODE_NOT_IN_MODESET","features":[1]},{"name":"STATUS_GRAPHICS_MODE_NOT_PINNED","features":[1]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[1]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[1]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[1]},{"name":"STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[1]},{"name":"STATUS_GRAPHICS_MONITOR_NOT_CONNECTED","features":[1]},{"name":"STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[1]},{"name":"STATUS_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[1]},{"name":"STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[1]},{"name":"STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[1]},{"name":"STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[1]},{"name":"STATUS_GRAPHICS_NO_ACTIVE_VIDPN","features":[1]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[1]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[1]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[1]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[1]},{"name":"STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[1]},{"name":"STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[1]},{"name":"STATUS_GRAPHICS_NO_PREFERRED_MODE","features":[1]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[1]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[1]},{"name":"STATUS_GRAPHICS_NO_VIDEO_MEMORY","features":[1]},{"name":"STATUS_GRAPHICS_NO_VIDPNMGR","features":[1]},{"name":"STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[1]},{"name":"STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[1]},{"name":"STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[1]},{"name":"STATUS_GRAPHICS_OPM_INTERNAL_ERROR","features":[1]},{"name":"STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[1]},{"name":"STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[1]},{"name":"STATUS_GRAPHICS_OPM_INVALID_HANDLE","features":[1]},{"name":"STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[1]},{"name":"STATUS_GRAPHICS_OPM_INVALID_SRM","features":[1]},{"name":"STATUS_GRAPHICS_OPM_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST","features":[1]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[1]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[1]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[1]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[1]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[1]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS","features":[1]},{"name":"STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[1]},{"name":"STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[1]},{"name":"STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[1]},{"name":"STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[1]},{"name":"STATUS_GRAPHICS_PARTIAL_DATA_POPULATED","features":[1]},{"name":"STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[1]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[1]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[1]},{"name":"STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[1]},{"name":"STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[1]},{"name":"STATUS_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[1]},{"name":"STATUS_GRAPHICS_PRESENT_DENIED","features":[1]},{"name":"STATUS_GRAPHICS_PRESENT_INVALID_WINDOW","features":[1]},{"name":"STATUS_GRAPHICS_PRESENT_MODE_CHANGED","features":[1]},{"name":"STATUS_GRAPHICS_PRESENT_OCCLUDED","features":[1]},{"name":"STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[1]},{"name":"STATUS_GRAPHICS_PRESENT_UNOCCLUDED","features":[1]},{"name":"STATUS_GRAPHICS_PVP_HFS_FAILED","features":[1]},{"name":"STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[1]},{"name":"STATUS_GRAPHICS_RESOURCES_NOT_RELATED","features":[1]},{"name":"STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[1]},{"name":"STATUS_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[1]},{"name":"STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[1]},{"name":"STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[1]},{"name":"STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[1]},{"name":"STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[1]},{"name":"STATUS_GRAPHICS_STALE_MODESET","features":[1]},{"name":"STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[1]},{"name":"STATUS_GRAPHICS_START_DEFERRED","features":[1]},{"name":"STATUS_GRAPHICS_TARGET_ALREADY_IN_SET","features":[1]},{"name":"STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[1]},{"name":"STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[1]},{"name":"STATUS_GRAPHICS_TOO_MANY_REFERENCES","features":[1]},{"name":"STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[1]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_LATER","features":[1]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_NOW","features":[1]},{"name":"STATUS_GRAPHICS_UAB_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[1]},{"name":"STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[1]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[1]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_VAIL_STATE_CHANGED","features":[1]},{"name":"STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[1]},{"name":"STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[1]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[1]},{"name":"STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[1]},{"name":"STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[1]},{"name":"STATUS_GROUP_EXISTS","features":[1]},{"name":"STATUS_GUARD_PAGE_VIOLATION","features":[1]},{"name":"STATUS_GUIDS_EXHAUSTED","features":[1]},{"name":"STATUS_GUID_SUBSTITUTION_MADE","features":[1]},{"name":"STATUS_HANDLES_CLOSED","features":[1]},{"name":"STATUS_HANDLE_NOT_CLOSABLE","features":[1]},{"name":"STATUS_HANDLE_NO_LONGER_VALID","features":[1]},{"name":"STATUS_HANDLE_REVOKED","features":[1]},{"name":"STATUS_HARDWARE_MEMORY_ERROR","features":[1]},{"name":"STATUS_HASH_NOT_PRESENT","features":[1]},{"name":"STATUS_HASH_NOT_SUPPORTED","features":[1]},{"name":"STATUS_HAS_SYSTEM_CRITICAL_FILES","features":[1]},{"name":"STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[1]},{"name":"STATUS_HDAUDIO_EMPTY_CONNECTION_LIST","features":[1]},{"name":"STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[1]},{"name":"STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[1]},{"name":"STATUS_HEAP_CORRUPTION","features":[1]},{"name":"STATUS_HEURISTIC_DAMAGE_POSSIBLE","features":[1]},{"name":"STATUS_HIBERNATED","features":[1]},{"name":"STATUS_HIBERNATION_FAILURE","features":[1]},{"name":"STATUS_HIVE_UNLOADED","features":[1]},{"name":"STATUS_HMAC_NOT_SUPPORTED","features":[1]},{"name":"STATUS_HOPLIMIT_EXCEEDED","features":[1]},{"name":"STATUS_HOST_DOWN","features":[1]},{"name":"STATUS_HOST_UNREACHABLE","features":[1]},{"name":"STATUS_HUNG_DISPLAY_DRIVER_THREAD","features":[1]},{"name":"STATUS_HV_ACCESS_DENIED","features":[1]},{"name":"STATUS_HV_ACKNOWLEDGED","features":[1]},{"name":"STATUS_HV_CALL_PENDING","features":[1]},{"name":"STATUS_HV_CPUID_FEATURE_VALIDATION_ERROR","features":[1]},{"name":"STATUS_HV_CPUID_XSAVE_FEATURE_VALIDATION_ERROR","features":[1]},{"name":"STATUS_HV_DEVICE_NOT_IN_DOMAIN","features":[1]},{"name":"STATUS_HV_EVENT_BUFFER_ALREADY_FREED","features":[1]},{"name":"STATUS_HV_FEATURE_UNAVAILABLE","features":[1]},{"name":"STATUS_HV_INACTIVE","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_BUFFER","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_BUFFERS","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY","features":[1]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[1]},{"name":"STATUS_HV_INVALID_ALIGNMENT","features":[1]},{"name":"STATUS_HV_INVALID_CONNECTION_ID","features":[1]},{"name":"STATUS_HV_INVALID_CPU_GROUP_ID","features":[1]},{"name":"STATUS_HV_INVALID_CPU_GROUP_STATE","features":[1]},{"name":"STATUS_HV_INVALID_DEVICE_ID","features":[1]},{"name":"STATUS_HV_INVALID_DEVICE_STATE","features":[1]},{"name":"STATUS_HV_INVALID_HYPERCALL_CODE","features":[1]},{"name":"STATUS_HV_INVALID_HYPERCALL_INPUT","features":[1]},{"name":"STATUS_HV_INVALID_LP_INDEX","features":[1]},{"name":"STATUS_HV_INVALID_PARAMETER","features":[1]},{"name":"STATUS_HV_INVALID_PARTITION_ID","features":[1]},{"name":"STATUS_HV_INVALID_PARTITION_STATE","features":[1]},{"name":"STATUS_HV_INVALID_PORT_ID","features":[1]},{"name":"STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[1]},{"name":"STATUS_HV_INVALID_REGISTER_VALUE","features":[1]},{"name":"STATUS_HV_INVALID_SAVE_RESTORE_STATE","features":[1]},{"name":"STATUS_HV_INVALID_SYNIC_STATE","features":[1]},{"name":"STATUS_HV_INVALID_VP_INDEX","features":[1]},{"name":"STATUS_HV_INVALID_VP_STATE","features":[1]},{"name":"STATUS_HV_INVALID_VTL_STATE","features":[1]},{"name":"STATUS_HV_MSR_ACCESS_FAILED","features":[1]},{"name":"STATUS_HV_NESTED_VM_EXIT","features":[1]},{"name":"STATUS_HV_NOT_ACKNOWLEDGED","features":[1]},{"name":"STATUS_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[1]},{"name":"STATUS_HV_NOT_PRESENT","features":[1]},{"name":"STATUS_HV_NO_DATA","features":[1]},{"name":"STATUS_HV_NO_RESOURCES","features":[1]},{"name":"STATUS_HV_NX_NOT_DETECTED","features":[1]},{"name":"STATUS_HV_OBJECT_IN_USE","features":[1]},{"name":"STATUS_HV_OPERATION_DENIED","features":[1]},{"name":"STATUS_HV_OPERATION_FAILED","features":[1]},{"name":"STATUS_HV_PAGE_REQUEST_INVALID","features":[1]},{"name":"STATUS_HV_PARTITION_TOO_DEEP","features":[1]},{"name":"STATUS_HV_PENDING_PAGE_REQUESTS","features":[1]},{"name":"STATUS_HV_PROCESSOR_STARTUP_TIMEOUT","features":[1]},{"name":"STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[1]},{"name":"STATUS_HV_SMX_ENABLED","features":[1]},{"name":"STATUS_HV_UNKNOWN_PROPERTY","features":[1]},{"name":"STATUS_ILLEGAL_CHARACTER","features":[1]},{"name":"STATUS_ILLEGAL_DLL_RELOCATION","features":[1]},{"name":"STATUS_ILLEGAL_ELEMENT_ADDRESS","features":[1]},{"name":"STATUS_ILLEGAL_FLOAT_CONTEXT","features":[1]},{"name":"STATUS_ILLEGAL_FUNCTION","features":[1]},{"name":"STATUS_ILLEGAL_INSTRUCTION","features":[1]},{"name":"STATUS_ILL_FORMED_PASSWORD","features":[1]},{"name":"STATUS_ILL_FORMED_SERVICE_ENTRY","features":[1]},{"name":"STATUS_IMAGE_ALREADY_LOADED","features":[1]},{"name":"STATUS_IMAGE_ALREADY_LOADED_AS_DLL","features":[1]},{"name":"STATUS_IMAGE_AT_DIFFERENT_BASE","features":[1]},{"name":"STATUS_IMAGE_CERT_EXPIRED","features":[1]},{"name":"STATUS_IMAGE_CERT_REVOKED","features":[1]},{"name":"STATUS_IMAGE_CHECKSUM_MISMATCH","features":[1]},{"name":"STATUS_IMAGE_LOADED_AS_PATCH_IMAGE","features":[1]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH","features":[1]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[1]},{"name":"STATUS_IMAGE_MP_UP_MISMATCH","features":[1]},{"name":"STATUS_IMAGE_NOT_AT_BASE","features":[1]},{"name":"STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[1]},{"name":"STATUS_IMPLEMENTATION_LIMIT","features":[1]},{"name":"STATUS_INCOMPATIBLE_DRIVER_BLOCKED","features":[1]},{"name":"STATUS_INCOMPATIBLE_FILE_MAP","features":[1]},{"name":"STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[1]},{"name":"STATUS_INCORRECT_ACCOUNT_TYPE","features":[1]},{"name":"STATUS_INDEX_OUT_OF_BOUNDS","features":[1]},{"name":"STATUS_INDOUBT_TRANSACTIONS_EXIST","features":[1]},{"name":"STATUS_INFO_LENGTH_MISMATCH","features":[1]},{"name":"STATUS_INSTANCE_NOT_AVAILABLE","features":[1]},{"name":"STATUS_INSTRUCTION_MISALIGNMENT","features":[1]},{"name":"STATUS_INSUFFICIENT_LOGON_INFO","features":[1]},{"name":"STATUS_INSUFFICIENT_NVRAM_RESOURCES","features":[1]},{"name":"STATUS_INSUFFICIENT_POWER","features":[1]},{"name":"STATUS_INSUFFICIENT_RESOURCES","features":[1]},{"name":"STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[1]},{"name":"STATUS_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[1]},{"name":"STATUS_INSUFF_SERVER_RESOURCES","features":[1]},{"name":"STATUS_INTEGER_DIVIDE_BY_ZERO","features":[1]},{"name":"STATUS_INTEGER_OVERFLOW","features":[1]},{"name":"STATUS_INTERMIXED_KERNEL_EA_OPERATION","features":[1]},{"name":"STATUS_INTERNAL_DB_CORRUPTION","features":[1]},{"name":"STATUS_INTERNAL_DB_ERROR","features":[1]},{"name":"STATUS_INTERNAL_ERROR","features":[1]},{"name":"STATUS_INTERRUPTED","features":[1]},{"name":"STATUS_INTERRUPT_STILL_CONNECTED","features":[1]},{"name":"STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[1]},{"name":"STATUS_INVALID_ACCOUNT_NAME","features":[1]},{"name":"STATUS_INVALID_ACE_CONDITION","features":[1]},{"name":"STATUS_INVALID_ACL","features":[1]},{"name":"STATUS_INVALID_ADDRESS","features":[1]},{"name":"STATUS_INVALID_ADDRESS_COMPONENT","features":[1]},{"name":"STATUS_INVALID_ADDRESS_WILDCARD","features":[1]},{"name":"STATUS_INVALID_BLOCK_LENGTH","features":[1]},{"name":"STATUS_INVALID_BUFFER_SIZE","features":[1]},{"name":"STATUS_INVALID_CAP","features":[1]},{"name":"STATUS_INVALID_CID","features":[1]},{"name":"STATUS_INVALID_COMPUTER_NAME","features":[1]},{"name":"STATUS_INVALID_CONFIG_VALUE","features":[1]},{"name":"STATUS_INVALID_CONNECTION","features":[1]},{"name":"STATUS_INVALID_CRUNTIME_PARAMETER","features":[1]},{"name":"STATUS_INVALID_DEVICE_OBJECT_PARAMETER","features":[1]},{"name":"STATUS_INVALID_DEVICE_REQUEST","features":[1]},{"name":"STATUS_INVALID_DEVICE_STATE","features":[1]},{"name":"STATUS_INVALID_DISPOSITION","features":[1]},{"name":"STATUS_INVALID_DOMAIN_ROLE","features":[1]},{"name":"STATUS_INVALID_DOMAIN_STATE","features":[1]},{"name":"STATUS_INVALID_EA_FLAG","features":[1]},{"name":"STATUS_INVALID_EA_NAME","features":[1]},{"name":"STATUS_INVALID_EXCEPTION_HANDLER","features":[1]},{"name":"STATUS_INVALID_FIELD_IN_PARAMETER_LIST","features":[1]},{"name":"STATUS_INVALID_FILE_FOR_SECTION","features":[1]},{"name":"STATUS_INVALID_GROUP_ATTRIBUTES","features":[1]},{"name":"STATUS_INVALID_HANDLE","features":[1]},{"name":"STATUS_INVALID_HW_PROFILE","features":[1]},{"name":"STATUS_INVALID_IDN_NORMALIZATION","features":[1]},{"name":"STATUS_INVALID_ID_AUTHORITY","features":[1]},{"name":"STATUS_INVALID_IMAGE_FORMAT","features":[1]},{"name":"STATUS_INVALID_IMAGE_HASH","features":[1]},{"name":"STATUS_INVALID_IMAGE_LE_FORMAT","features":[1]},{"name":"STATUS_INVALID_IMAGE_NE_FORMAT","features":[1]},{"name":"STATUS_INVALID_IMAGE_NOT_MZ","features":[1]},{"name":"STATUS_INVALID_IMAGE_PROTECT","features":[1]},{"name":"STATUS_INVALID_IMAGE_WIN_16","features":[1]},{"name":"STATUS_INVALID_IMAGE_WIN_32","features":[1]},{"name":"STATUS_INVALID_IMAGE_WIN_64","features":[1]},{"name":"STATUS_INVALID_IMPORT_OF_NON_DLL","features":[1]},{"name":"STATUS_INVALID_INFO_CLASS","features":[1]},{"name":"STATUS_INVALID_INITIATOR_TARGET_PATH","features":[1]},{"name":"STATUS_INVALID_KERNEL_INFO_VERSION","features":[1]},{"name":"STATUS_INVALID_LABEL","features":[1]},{"name":"STATUS_INVALID_LDT_DESCRIPTOR","features":[1]},{"name":"STATUS_INVALID_LDT_OFFSET","features":[1]},{"name":"STATUS_INVALID_LDT_SIZE","features":[1]},{"name":"STATUS_INVALID_LEVEL","features":[1]},{"name":"STATUS_INVALID_LOCK_RANGE","features":[1]},{"name":"STATUS_INVALID_LOCK_SEQUENCE","features":[1]},{"name":"STATUS_INVALID_LOGON_HOURS","features":[1]},{"name":"STATUS_INVALID_LOGON_TYPE","features":[1]},{"name":"STATUS_INVALID_MEMBER","features":[1]},{"name":"STATUS_INVALID_MESSAGE","features":[1]},{"name":"STATUS_INVALID_NETWORK_RESPONSE","features":[1]},{"name":"STATUS_INVALID_OFFSET_ALIGNMENT","features":[1]},{"name":"STATUS_INVALID_OPLOCK_PROTOCOL","features":[1]},{"name":"STATUS_INVALID_OWNER","features":[1]},{"name":"STATUS_INVALID_PACKAGE_SID_LENGTH","features":[1]},{"name":"STATUS_INVALID_PAGE_PROTECTION","features":[1]},{"name":"STATUS_INVALID_PARAMETER","features":[1]},{"name":"STATUS_INVALID_PARAMETER_1","features":[1]},{"name":"STATUS_INVALID_PARAMETER_10","features":[1]},{"name":"STATUS_INVALID_PARAMETER_11","features":[1]},{"name":"STATUS_INVALID_PARAMETER_12","features":[1]},{"name":"STATUS_INVALID_PARAMETER_2","features":[1]},{"name":"STATUS_INVALID_PARAMETER_3","features":[1]},{"name":"STATUS_INVALID_PARAMETER_4","features":[1]},{"name":"STATUS_INVALID_PARAMETER_5","features":[1]},{"name":"STATUS_INVALID_PARAMETER_6","features":[1]},{"name":"STATUS_INVALID_PARAMETER_7","features":[1]},{"name":"STATUS_INVALID_PARAMETER_8","features":[1]},{"name":"STATUS_INVALID_PARAMETER_9","features":[1]},{"name":"STATUS_INVALID_PARAMETER_MIX","features":[1]},{"name":"STATUS_INVALID_PEP_INFO_VERSION","features":[1]},{"name":"STATUS_INVALID_PIPE_STATE","features":[1]},{"name":"STATUS_INVALID_PLUGPLAY_DEVICE_PATH","features":[1]},{"name":"STATUS_INVALID_PORT_ATTRIBUTES","features":[1]},{"name":"STATUS_INVALID_PORT_HANDLE","features":[1]},{"name":"STATUS_INVALID_PRIMARY_GROUP","features":[1]},{"name":"STATUS_INVALID_QUOTA_LOWER","features":[1]},{"name":"STATUS_INVALID_READ_MODE","features":[1]},{"name":"STATUS_INVALID_RUNLEVEL_SETTING","features":[1]},{"name":"STATUS_INVALID_SECURITY_DESCR","features":[1]},{"name":"STATUS_INVALID_SERVER_STATE","features":[1]},{"name":"STATUS_INVALID_SESSION","features":[1]},{"name":"STATUS_INVALID_SID","features":[1]},{"name":"STATUS_INVALID_SIGNATURE","features":[1]},{"name":"STATUS_INVALID_STATE_TRANSITION","features":[1]},{"name":"STATUS_INVALID_SUB_AUTHORITY","features":[1]},{"name":"STATUS_INVALID_SYSTEM_SERVICE","features":[1]},{"name":"STATUS_INVALID_TASK_INDEX","features":[1]},{"name":"STATUS_INVALID_TASK_NAME","features":[1]},{"name":"STATUS_INVALID_THREAD","features":[1]},{"name":"STATUS_INVALID_TOKEN","features":[1]},{"name":"STATUS_INVALID_TRANSACTION","features":[1]},{"name":"STATUS_INVALID_UNWIND_TARGET","features":[1]},{"name":"STATUS_INVALID_USER_BUFFER","features":[1]},{"name":"STATUS_INVALID_USER_PRINCIPAL_NAME","features":[1]},{"name":"STATUS_INVALID_VARIANT","features":[1]},{"name":"STATUS_INVALID_VIEW_SIZE","features":[1]},{"name":"STATUS_INVALID_VOLUME_LABEL","features":[1]},{"name":"STATUS_INVALID_WEIGHT","features":[1]},{"name":"STATUS_INVALID_WORKSTATION","features":[1]},{"name":"STATUS_IN_PAGE_ERROR","features":[1]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_BIG","features":[1]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_FULL","features":[1]},{"name":"STATUS_IORING_CORRUPT","features":[1]},{"name":"STATUS_IORING_REQUIRED_FLAG_NOT_SUPPORTED","features":[1]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_FULL","features":[1]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_TOO_BIG","features":[1]},{"name":"STATUS_IORING_SUBMIT_IN_PROGRESS","features":[1]},{"name":"STATUS_IORING_VERSION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_IO_DEVICE_ERROR","features":[1]},{"name":"STATUS_IO_DEVICE_INVALID_DATA","features":[1]},{"name":"STATUS_IO_OPERATION_TIMEOUT","features":[1]},{"name":"STATUS_IO_PREEMPTED","features":[1]},{"name":"STATUS_IO_PRIVILEGE_FAILED","features":[1]},{"name":"STATUS_IO_REISSUE_AS_CACHED","features":[1]},{"name":"STATUS_IO_REPARSE_DATA_INVALID","features":[1]},{"name":"STATUS_IO_REPARSE_TAG_INVALID","features":[1]},{"name":"STATUS_IO_REPARSE_TAG_MISMATCH","features":[1]},{"name":"STATUS_IO_REPARSE_TAG_NOT_HANDLED","features":[1]},{"name":"STATUS_IO_TIMEOUT","features":[1]},{"name":"STATUS_IO_UNALIGNED_WRITE","features":[1]},{"name":"STATUS_IPSEC_AUTH_FIREWALL_DROP","features":[1]},{"name":"STATUS_IPSEC_BAD_SPI","features":[1]},{"name":"STATUS_IPSEC_CLEAR_TEXT_DROP","features":[1]},{"name":"STATUS_IPSEC_DOSP_BLOCK","features":[1]},{"name":"STATUS_IPSEC_DOSP_INVALID_PACKET","features":[1]},{"name":"STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[1]},{"name":"STATUS_IPSEC_DOSP_MAX_ENTRIES","features":[1]},{"name":"STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[1]},{"name":"STATUS_IPSEC_DOSP_RECEIVED_MULTICAST","features":[1]},{"name":"STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[1]},{"name":"STATUS_IPSEC_INTEGRITY_CHECK_FAILED","features":[1]},{"name":"STATUS_IPSEC_INVALID_PACKET","features":[1]},{"name":"STATUS_IPSEC_QUEUE_OVERFLOW","features":[1]},{"name":"STATUS_IPSEC_REPLAY_CHECK_FAILED","features":[1]},{"name":"STATUS_IPSEC_SA_LIFETIME_EXPIRED","features":[1]},{"name":"STATUS_IPSEC_THROTTLE_DROP","features":[1]},{"name":"STATUS_IPSEC_WRONG_SA","features":[1]},{"name":"STATUS_IP_ADDRESS_CONFLICT1","features":[1]},{"name":"STATUS_IP_ADDRESS_CONFLICT2","features":[1]},{"name":"STATUS_ISSUING_CA_UNTRUSTED","features":[1]},{"name":"STATUS_ISSUING_CA_UNTRUSTED_KDC","features":[1]},{"name":"STATUS_JOB_NOT_EMPTY","features":[1]},{"name":"STATUS_JOB_NO_CONTAINER","features":[1]},{"name":"STATUS_JOURNAL_DELETE_IN_PROGRESS","features":[1]},{"name":"STATUS_JOURNAL_ENTRY_DELETED","features":[1]},{"name":"STATUS_JOURNAL_NOT_ACTIVE","features":[1]},{"name":"STATUS_KDC_CERT_EXPIRED","features":[1]},{"name":"STATUS_KDC_CERT_REVOKED","features":[1]},{"name":"STATUS_KDC_INVALID_REQUEST","features":[1]},{"name":"STATUS_KDC_UNABLE_TO_REFER","features":[1]},{"name":"STATUS_KDC_UNKNOWN_ETYPE","features":[1]},{"name":"STATUS_KERNEL_APC","features":[1]},{"name":"STATUS_KERNEL_EXECUTABLE_MEMORY_WRITE","features":[1]},{"name":"STATUS_KEY_DELETED","features":[1]},{"name":"STATUS_KEY_HAS_CHILDREN","features":[1]},{"name":"STATUS_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[1]},{"name":"STATUS_LAPS_LEGACY_SCHEMA_MISSING","features":[1]},{"name":"STATUS_LAPS_SCHEMA_MISSING","features":[1]},{"name":"STATUS_LAST_ADMIN","features":[1]},{"name":"STATUS_LICENSE_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_LICENSE_VIOLATION","features":[1]},{"name":"STATUS_LINK_FAILED","features":[1]},{"name":"STATUS_LINK_TIMEOUT","features":[1]},{"name":"STATUS_LM_CROSS_ENCRYPTION_REQUIRED","features":[1]},{"name":"STATUS_LOCAL_DISCONNECT","features":[1]},{"name":"STATUS_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_LOCAL_USER_SESSION_KEY","features":[1]},{"name":"STATUS_LOCK_NOT_GRANTED","features":[1]},{"name":"STATUS_LOGIN_TIME_RESTRICTION","features":[1]},{"name":"STATUS_LOGIN_WKSTA_RESTRICTION","features":[1]},{"name":"STATUS_LOGON_NOT_GRANTED","features":[1]},{"name":"STATUS_LOGON_SERVER_CONFLICT","features":[1]},{"name":"STATUS_LOGON_SESSION_COLLISION","features":[1]},{"name":"STATUS_LOGON_SESSION_EXISTS","features":[1]},{"name":"STATUS_LOG_APPENDED_FLUSH_FAILED","features":[1]},{"name":"STATUS_LOG_ARCHIVE_IN_PROGRESS","features":[1]},{"name":"STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[1]},{"name":"STATUS_LOG_BLOCKS_EXHAUSTED","features":[1]},{"name":"STATUS_LOG_BLOCK_INCOMPLETE","features":[1]},{"name":"STATUS_LOG_BLOCK_INVALID","features":[1]},{"name":"STATUS_LOG_BLOCK_VERSION","features":[1]},{"name":"STATUS_LOG_CANT_DELETE","features":[1]},{"name":"STATUS_LOG_CLIENT_ALREADY_REGISTERED","features":[1]},{"name":"STATUS_LOG_CLIENT_NOT_REGISTERED","features":[1]},{"name":"STATUS_LOG_CONTAINER_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_LOG_CONTAINER_OPEN_FAILED","features":[1]},{"name":"STATUS_LOG_CONTAINER_READ_FAILED","features":[1]},{"name":"STATUS_LOG_CONTAINER_STATE_INVALID","features":[1]},{"name":"STATUS_LOG_CONTAINER_WRITE_FAILED","features":[1]},{"name":"STATUS_LOG_CORRUPTION_DETECTED","features":[1]},{"name":"STATUS_LOG_DEDICATED","features":[1]},{"name":"STATUS_LOG_EPHEMERAL","features":[1]},{"name":"STATUS_LOG_FILE_FULL","features":[1]},{"name":"STATUS_LOG_FULL","features":[1]},{"name":"STATUS_LOG_FULL_HANDLER_IN_PROGRESS","features":[1]},{"name":"STATUS_LOG_GROWTH_FAILED","features":[1]},{"name":"STATUS_LOG_HARD_ERROR","features":[1]},{"name":"STATUS_LOG_INCONSISTENT_SECURITY","features":[1]},{"name":"STATUS_LOG_INVALID_RANGE","features":[1]},{"name":"STATUS_LOG_METADATA_CORRUPT","features":[1]},{"name":"STATUS_LOG_METADATA_FLUSH_FAILED","features":[1]},{"name":"STATUS_LOG_METADATA_INCONSISTENT","features":[1]},{"name":"STATUS_LOG_METADATA_INVALID","features":[1]},{"name":"STATUS_LOG_MULTIPLEXED","features":[1]},{"name":"STATUS_LOG_NOT_ENOUGH_CONTAINERS","features":[1]},{"name":"STATUS_LOG_NO_RESTART","features":[1]},{"name":"STATUS_LOG_PINNED","features":[1]},{"name":"STATUS_LOG_PINNED_ARCHIVE_TAIL","features":[1]},{"name":"STATUS_LOG_PINNED_RESERVATION","features":[1]},{"name":"STATUS_LOG_POLICY_ALREADY_INSTALLED","features":[1]},{"name":"STATUS_LOG_POLICY_CONFLICT","features":[1]},{"name":"STATUS_LOG_POLICY_INVALID","features":[1]},{"name":"STATUS_LOG_POLICY_NOT_INSTALLED","features":[1]},{"name":"STATUS_LOG_READ_CONTEXT_INVALID","features":[1]},{"name":"STATUS_LOG_READ_MODE_INVALID","features":[1]},{"name":"STATUS_LOG_RECORDS_RESERVED_INVALID","features":[1]},{"name":"STATUS_LOG_RECORD_NONEXISTENT","features":[1]},{"name":"STATUS_LOG_RESERVATION_INVALID","features":[1]},{"name":"STATUS_LOG_RESIZE_INVALID_SIZE","features":[1]},{"name":"STATUS_LOG_RESTART_INVALID","features":[1]},{"name":"STATUS_LOG_SECTOR_INVALID","features":[1]},{"name":"STATUS_LOG_SECTOR_PARITY_INVALID","features":[1]},{"name":"STATUS_LOG_SECTOR_REMAPPED","features":[1]},{"name":"STATUS_LOG_SPACE_RESERVED_INVALID","features":[1]},{"name":"STATUS_LOG_START_OF_LOG","features":[1]},{"name":"STATUS_LOG_STATE_INVALID","features":[1]},{"name":"STATUS_LOG_TAIL_INVALID","features":[1]},{"name":"STATUS_LONGJUMP","features":[1]},{"name":"STATUS_LOST_MODE_LOGON_RESTRICTION","features":[1]},{"name":"STATUS_LOST_WRITEBEHIND_DATA","features":[1]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[1]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[1]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[1]},{"name":"STATUS_LPAC_ACCESS_DENIED","features":[1]},{"name":"STATUS_LPC_HANDLE_COUNT_EXCEEDED","features":[1]},{"name":"STATUS_LPC_INVALID_CONNECTION_USAGE","features":[1]},{"name":"STATUS_LPC_RECEIVE_BUFFER_EXPECTED","features":[1]},{"name":"STATUS_LPC_REPLY_LOST","features":[1]},{"name":"STATUS_LPC_REQUESTS_NOT_ALLOWED","features":[1]},{"name":"STATUS_LUIDS_EXHAUSTED","features":[1]},{"name":"STATUS_MAGAZINE_NOT_PRESENT","features":[1]},{"name":"STATUS_MAPPED_ALIGNMENT","features":[1]},{"name":"STATUS_MAPPED_FILE_SIZE_ZERO","features":[1]},{"name":"STATUS_MARKED_TO_DISALLOW_WRITES","features":[1]},{"name":"STATUS_MARSHALL_OVERFLOW","features":[1]},{"name":"STATUS_MAX_REFERRALS_EXCEEDED","features":[1]},{"name":"STATUS_MCA_EXCEPTION","features":[1]},{"name":"STATUS_MCA_OCCURED","features":[1]},{"name":"STATUS_MEDIA_CHANGED","features":[1]},{"name":"STATUS_MEDIA_CHECK","features":[1]},{"name":"STATUS_MEDIA_WRITE_PROTECTED","features":[1]},{"name":"STATUS_MEMBERS_PRIMARY_GROUP","features":[1]},{"name":"STATUS_MEMBER_IN_ALIAS","features":[1]},{"name":"STATUS_MEMBER_IN_GROUP","features":[1]},{"name":"STATUS_MEMBER_NOT_IN_ALIAS","features":[1]},{"name":"STATUS_MEMBER_NOT_IN_GROUP","features":[1]},{"name":"STATUS_MEMORY_NOT_ALLOCATED","features":[1]},{"name":"STATUS_MESSAGE_LOST","features":[1]},{"name":"STATUS_MESSAGE_NOT_FOUND","features":[1]},{"name":"STATUS_MESSAGE_RETRIEVED","features":[1]},{"name":"STATUS_MFT_TOO_FRAGMENTED","features":[1]},{"name":"STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[1]},{"name":"STATUS_MISSING_SYSTEMFILE","features":[1]},{"name":"STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[1]},{"name":"STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[1]},{"name":"STATUS_MONITOR_INVALID_MANUFACTURE_DATE","features":[1]},{"name":"STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[1]},{"name":"STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[1]},{"name":"STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[1]},{"name":"STATUS_MONITOR_NO_DESCRIPTOR","features":[1]},{"name":"STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[1]},{"name":"STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[1]},{"name":"STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[1]},{"name":"STATUS_MORE_ENTRIES","features":[1]},{"name":"STATUS_MORE_PROCESSING_REQUIRED","features":[1]},{"name":"STATUS_MOUNT_POINT_NOT_RESOLVED","features":[1]},{"name":"STATUS_MP_PROCESSOR_MISMATCH","features":[1]},{"name":"STATUS_MUI_FILE_NOT_FOUND","features":[1]},{"name":"STATUS_MUI_FILE_NOT_LOADED","features":[1]},{"name":"STATUS_MUI_INVALID_FILE","features":[1]},{"name":"STATUS_MUI_INVALID_LOCALE_NAME","features":[1]},{"name":"STATUS_MUI_INVALID_RC_CONFIG","features":[1]},{"name":"STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[1]},{"name":"STATUS_MULTIPLE_FAULT_VIOLATION","features":[1]},{"name":"STATUS_MUST_BE_KDC","features":[1]},{"name":"STATUS_MUTANT_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_MUTANT_NOT_OWNED","features":[1]},{"name":"STATUS_MUTUAL_AUTHENTICATION_FAILED","features":[1]},{"name":"STATUS_NAME_TOO_LONG","features":[1]},{"name":"STATUS_NDIS_ADAPTER_NOT_FOUND","features":[1]},{"name":"STATUS_NDIS_ADAPTER_NOT_READY","features":[1]},{"name":"STATUS_NDIS_ADAPTER_REMOVED","features":[1]},{"name":"STATUS_NDIS_ALREADY_MAPPED","features":[1]},{"name":"STATUS_NDIS_BAD_CHARACTERISTICS","features":[1]},{"name":"STATUS_NDIS_BAD_VERSION","features":[1]},{"name":"STATUS_NDIS_BUFFER_TOO_SHORT","features":[1]},{"name":"STATUS_NDIS_CLOSING","features":[1]},{"name":"STATUS_NDIS_DEVICE_FAILED","features":[1]},{"name":"STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[1]},{"name":"STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[1]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[1]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[1]},{"name":"STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[1]},{"name":"STATUS_NDIS_DOT11_MEDIA_IN_USE","features":[1]},{"name":"STATUS_NDIS_DOT11_POWER_STATE_INVALID","features":[1]},{"name":"STATUS_NDIS_ERROR_READING_FILE","features":[1]},{"name":"STATUS_NDIS_FILE_NOT_FOUND","features":[1]},{"name":"STATUS_NDIS_GROUP_ADDRESS_IN_USE","features":[1]},{"name":"STATUS_NDIS_INDICATION_REQUIRED","features":[1]},{"name":"STATUS_NDIS_INTERFACE_NOT_FOUND","features":[1]},{"name":"STATUS_NDIS_INVALID_ADDRESS","features":[1]},{"name":"STATUS_NDIS_INVALID_DATA","features":[1]},{"name":"STATUS_NDIS_INVALID_DEVICE_REQUEST","features":[1]},{"name":"STATUS_NDIS_INVALID_LENGTH","features":[1]},{"name":"STATUS_NDIS_INVALID_OID","features":[1]},{"name":"STATUS_NDIS_INVALID_PACKET","features":[1]},{"name":"STATUS_NDIS_INVALID_PORT","features":[1]},{"name":"STATUS_NDIS_INVALID_PORT_STATE","features":[1]},{"name":"STATUS_NDIS_LOW_POWER_STATE","features":[1]},{"name":"STATUS_NDIS_MEDIA_DISCONNECTED","features":[1]},{"name":"STATUS_NDIS_MULTICAST_EXISTS","features":[1]},{"name":"STATUS_NDIS_MULTICAST_FULL","features":[1]},{"name":"STATUS_NDIS_MULTICAST_NOT_FOUND","features":[1]},{"name":"STATUS_NDIS_NOT_SUPPORTED","features":[1]},{"name":"STATUS_NDIS_NO_QUEUES","features":[1]},{"name":"STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[1]},{"name":"STATUS_NDIS_OFFLOAD_PATH_REJECTED","features":[1]},{"name":"STATUS_NDIS_OFFLOAD_POLICY","features":[1]},{"name":"STATUS_NDIS_OPEN_FAILED","features":[1]},{"name":"STATUS_NDIS_PAUSED","features":[1]},{"name":"STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[1]},{"name":"STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[1]},{"name":"STATUS_NDIS_REINIT_REQUIRED","features":[1]},{"name":"STATUS_NDIS_REQUEST_ABORTED","features":[1]},{"name":"STATUS_NDIS_RESET_IN_PROGRESS","features":[1]},{"name":"STATUS_NDIS_RESOURCE_CONFLICT","features":[1]},{"name":"STATUS_NDIS_UNSUPPORTED_MEDIA","features":[1]},{"name":"STATUS_NDIS_UNSUPPORTED_REVISION","features":[1]},{"name":"STATUS_ND_QUEUE_OVERFLOW","features":[1]},{"name":"STATUS_NEEDS_REGISTRATION","features":[1]},{"name":"STATUS_NEEDS_REMEDIATION","features":[1]},{"name":"STATUS_NETLOGON_NOT_STARTED","features":[1]},{"name":"STATUS_NETWORK_ACCESS_DENIED","features":[1]},{"name":"STATUS_NETWORK_ACCESS_DENIED_EDP","features":[1]},{"name":"STATUS_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[1]},{"name":"STATUS_NETWORK_BUSY","features":[1]},{"name":"STATUS_NETWORK_CREDENTIAL_CONFLICT","features":[1]},{"name":"STATUS_NETWORK_NAME_DELETED","features":[1]},{"name":"STATUS_NETWORK_OPEN_RESTRICTION","features":[1]},{"name":"STATUS_NETWORK_SESSION_EXPIRED","features":[1]},{"name":"STATUS_NETWORK_UNREACHABLE","features":[1]},{"name":"STATUS_NET_WRITE_FAULT","features":[1]},{"name":"STATUS_NOINTERFACE","features":[1]},{"name":"STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[1]},{"name":"STATUS_NOLOGON_SERVER_TRUST_ACCOUNT","features":[1]},{"name":"STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[1]},{"name":"STATUS_NONCONTINUABLE_EXCEPTION","features":[1]},{"name":"STATUS_NONEXISTENT_EA_ENTRY","features":[1]},{"name":"STATUS_NONEXISTENT_SECTOR","features":[1]},{"name":"STATUS_NONE_MAPPED","features":[1]},{"name":"STATUS_NOTHING_TO_TERMINATE","features":[1]},{"name":"STATUS_NOTIFICATION_GUID_ALREADY_DEFINED","features":[1]},{"name":"STATUS_NOTIFY_CLEANUP","features":[1]},{"name":"STATUS_NOTIFY_ENUM_DIR","features":[1]},{"name":"STATUS_NOT_ALLOWED_ON_SYSTEM_FILE","features":[1]},{"name":"STATUS_NOT_ALL_ASSIGNED","features":[1]},{"name":"STATUS_NOT_APPCONTAINER","features":[1]},{"name":"STATUS_NOT_A_CLOUD_FILE","features":[1]},{"name":"STATUS_NOT_A_CLOUD_SYNC_ROOT","features":[1]},{"name":"STATUS_NOT_A_DAX_VOLUME","features":[1]},{"name":"STATUS_NOT_A_DEV_VOLUME","features":[1]},{"name":"STATUS_NOT_A_DIRECTORY","features":[1]},{"name":"STATUS_NOT_A_REPARSE_POINT","features":[1]},{"name":"STATUS_NOT_A_TIERED_VOLUME","features":[1]},{"name":"STATUS_NOT_CAPABLE","features":[1]},{"name":"STATUS_NOT_CLIENT_SESSION","features":[1]},{"name":"STATUS_NOT_COMMITTED","features":[1]},{"name":"STATUS_NOT_DAX_MAPPABLE","features":[1]},{"name":"STATUS_NOT_EXPORT_FORMAT","features":[1]},{"name":"STATUS_NOT_FOUND","features":[1]},{"name":"STATUS_NOT_GUI_PROCESS","features":[1]},{"name":"STATUS_NOT_IMPLEMENTED","features":[1]},{"name":"STATUS_NOT_LOCKED","features":[1]},{"name":"STATUS_NOT_LOGON_PROCESS","features":[1]},{"name":"STATUS_NOT_MAPPED_DATA","features":[1]},{"name":"STATUS_NOT_MAPPED_VIEW","features":[1]},{"name":"STATUS_NOT_READ_FROM_COPY","features":[1]},{"name":"STATUS_NOT_REDUNDANT_STORAGE","features":[1]},{"name":"STATUS_NOT_REGISTRY_FILE","features":[1]},{"name":"STATUS_NOT_SAFE_MODE_DRIVER","features":[1]},{"name":"STATUS_NOT_SAME_DEVICE","features":[1]},{"name":"STATUS_NOT_SAME_OBJECT","features":[1]},{"name":"STATUS_NOT_SERVER_SESSION","features":[1]},{"name":"STATUS_NOT_SNAPSHOT_VOLUME","features":[1]},{"name":"STATUS_NOT_SUPPORTED","features":[1]},{"name":"STATUS_NOT_SUPPORTED_IN_APPCONTAINER","features":[1]},{"name":"STATUS_NOT_SUPPORTED_ON_DAX","features":[1]},{"name":"STATUS_NOT_SUPPORTED_ON_SBS","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_AUDITING","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_BTT","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_BYPASSIO","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_COMPRESSION","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_ENCRYPTION","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_MONITORING","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_REPLICATION","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_SNAPSHOT","features":[1]},{"name":"STATUS_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[1]},{"name":"STATUS_NOT_TINY_STREAM","features":[1]},{"name":"STATUS_NO_ACE_CONDITION","features":[1]},{"name":"STATUS_NO_APPLICABLE_APP_LICENSES_FOUND","features":[1]},{"name":"STATUS_NO_APPLICATION_PACKAGE","features":[1]},{"name":"STATUS_NO_BROWSER_SERVERS_FOUND","features":[1]},{"name":"STATUS_NO_BYPASSIO_DRIVER_SUPPORT","features":[1]},{"name":"STATUS_NO_CALLBACK_ACTIVE","features":[1]},{"name":"STATUS_NO_DATA_DETECTED","features":[1]},{"name":"STATUS_NO_EAS_ON_FILE","features":[1]},{"name":"STATUS_NO_EFS","features":[1]},{"name":"STATUS_NO_EVENT_PAIR","features":[1]},{"name":"STATUS_NO_GUID_TRANSLATION","features":[1]},{"name":"STATUS_NO_IMPERSONATION_TOKEN","features":[1]},{"name":"STATUS_NO_INHERITANCE","features":[1]},{"name":"STATUS_NO_IP_ADDRESSES","features":[1]},{"name":"STATUS_NO_KERB_KEY","features":[1]},{"name":"STATUS_NO_KEY","features":[1]},{"name":"STATUS_NO_LDT","features":[1]},{"name":"STATUS_NO_LINK_TRACKING_IN_TRANSACTION","features":[1]},{"name":"STATUS_NO_LOGON_SERVERS","features":[1]},{"name":"STATUS_NO_LOG_SPACE","features":[1]},{"name":"STATUS_NO_MATCH","features":[1]},{"name":"STATUS_NO_MEDIA","features":[1]},{"name":"STATUS_NO_MEDIA_IN_DEVICE","features":[1]},{"name":"STATUS_NO_MEMORY","features":[1]},{"name":"STATUS_NO_MORE_EAS","features":[1]},{"name":"STATUS_NO_MORE_ENTRIES","features":[1]},{"name":"STATUS_NO_MORE_FILES","features":[1]},{"name":"STATUS_NO_MORE_MATCHES","features":[1]},{"name":"STATUS_NO_PAGEFILE","features":[1]},{"name":"STATUS_NO_PA_DATA","features":[1]},{"name":"STATUS_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[1]},{"name":"STATUS_NO_QUOTAS_FOR_ACCOUNT","features":[1]},{"name":"STATUS_NO_RANGES_PROCESSED","features":[1]},{"name":"STATUS_NO_RECOVERY_POLICY","features":[1]},{"name":"STATUS_NO_S4U_PROT_SUPPORT","features":[1]},{"name":"STATUS_NO_SAVEPOINT_WITH_OPEN_FILES","features":[1]},{"name":"STATUS_NO_SECRETS","features":[1]},{"name":"STATUS_NO_SECURITY_CONTEXT","features":[1]},{"name":"STATUS_NO_SECURITY_ON_OBJECT","features":[1]},{"name":"STATUS_NO_SPOOL_SPACE","features":[1]},{"name":"STATUS_NO_SUCH_ALIAS","features":[1]},{"name":"STATUS_NO_SUCH_DEVICE","features":[1]},{"name":"STATUS_NO_SUCH_DOMAIN","features":[1]},{"name":"STATUS_NO_SUCH_FILE","features":[1]},{"name":"STATUS_NO_SUCH_GROUP","features":[1]},{"name":"STATUS_NO_SUCH_MEMBER","features":[1]},{"name":"STATUS_NO_SUCH_PACKAGE","features":[1]},{"name":"STATUS_NO_SUCH_PRIVILEGE","features":[1]},{"name":"STATUS_NO_TGT_REPLY","features":[1]},{"name":"STATUS_NO_TOKEN","features":[1]},{"name":"STATUS_NO_TRACKING_SERVICE","features":[1]},{"name":"STATUS_NO_TRUST_LSA_SECRET","features":[1]},{"name":"STATUS_NO_TRUST_SAM_ACCOUNT","features":[1]},{"name":"STATUS_NO_TXF_METADATA","features":[1]},{"name":"STATUS_NO_UNICODE_TRANSLATION","features":[1]},{"name":"STATUS_NO_USER_KEYS","features":[1]},{"name":"STATUS_NO_USER_SESSION_KEY","features":[1]},{"name":"STATUS_NO_WORK_DONE","features":[1]},{"name":"STATUS_NO_YIELD_PERFORMED","features":[1]},{"name":"STATUS_NTLM_BLOCKED","features":[1]},{"name":"STATUS_NT_CROSS_ENCRYPTION_REQUIRED","features":[1]},{"name":"STATUS_NULL_LM_PASSWORD","features":[1]},{"name":"STATUS_OBJECTID_EXISTS","features":[1]},{"name":"STATUS_OBJECTID_NOT_FOUND","features":[1]},{"name":"STATUS_OBJECT_IS_IMMUTABLE","features":[1]},{"name":"STATUS_OBJECT_NAME_COLLISION","features":[1]},{"name":"STATUS_OBJECT_NAME_EXISTS","features":[1]},{"name":"STATUS_OBJECT_NAME_INVALID","features":[1]},{"name":"STATUS_OBJECT_NAME_NOT_FOUND","features":[1]},{"name":"STATUS_OBJECT_NOT_EXTERNALLY_BACKED","features":[1]},{"name":"STATUS_OBJECT_NO_LONGER_EXISTS","features":[1]},{"name":"STATUS_OBJECT_PATH_INVALID","features":[1]},{"name":"STATUS_OBJECT_PATH_NOT_FOUND","features":[1]},{"name":"STATUS_OBJECT_PATH_SYNTAX_BAD","features":[1]},{"name":"STATUS_OBJECT_TYPE_MISMATCH","features":[1]},{"name":"STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[1]},{"name":"STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[1]},{"name":"STATUS_ONLY_IF_CONNECTED","features":[1]},{"name":"STATUS_OPEN_FAILED","features":[1]},{"name":"STATUS_OPERATION_IN_PROGRESS","features":[1]},{"name":"STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[1]},{"name":"STATUS_OPLOCK_BREAK_IN_PROGRESS","features":[1]},{"name":"STATUS_OPLOCK_HANDLE_CLOSED","features":[1]},{"name":"STATUS_OPLOCK_NOT_GRANTED","features":[1]},{"name":"STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[1]},{"name":"STATUS_ORDINAL_NOT_FOUND","features":[1]},{"name":"STATUS_ORPHAN_NAME_EXHAUSTED","features":[1]},{"name":"STATUS_PACKAGE_NOT_AVAILABLE","features":[1]},{"name":"STATUS_PACKAGE_UPDATING","features":[1]},{"name":"STATUS_PAGEFILE_CREATE_FAILED","features":[1]},{"name":"STATUS_PAGEFILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PAGEFILE_QUOTA","features":[1]},{"name":"STATUS_PAGEFILE_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_PAGE_FAULT_COPY_ON_WRITE","features":[1]},{"name":"STATUS_PAGE_FAULT_DEMAND_ZERO","features":[1]},{"name":"STATUS_PAGE_FAULT_GUARD_PAGE","features":[1]},{"name":"STATUS_PAGE_FAULT_PAGING_FILE","features":[1]},{"name":"STATUS_PAGE_FAULT_RETRY","features":[1]},{"name":"STATUS_PAGE_FAULT_TRANSITION","features":[1]},{"name":"STATUS_PARAMETER_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_PARITY_ERROR","features":[1]},{"name":"STATUS_PARTIAL_COPY","features":[1]},{"name":"STATUS_PARTITION_FAILURE","features":[1]},{"name":"STATUS_PARTITION_TERMINATING","features":[1]},{"name":"STATUS_PASSWORD_CHANGE_REQUIRED","features":[1]},{"name":"STATUS_PASSWORD_RESTRICTION","features":[1]},{"name":"STATUS_PATCH_CONFLICT","features":[1]},{"name":"STATUS_PATCH_DEFERRED","features":[1]},{"name":"STATUS_PATCH_NOT_REGISTERED","features":[1]},{"name":"STATUS_PATH_NOT_COVERED","features":[1]},{"name":"STATUS_PCP_ATTESTATION_CHALLENGE_NOT_SET","features":[1]},{"name":"STATUS_PCP_AUTHENTICATION_FAILED","features":[1]},{"name":"STATUS_PCP_AUTHENTICATION_IGNORED","features":[1]},{"name":"STATUS_PCP_BUFFER_LENGTH_MISMATCH","features":[1]},{"name":"STATUS_PCP_BUFFER_TOO_SMALL","features":[1]},{"name":"STATUS_PCP_CLAIM_TYPE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PCP_DEVICE_NOT_FOUND","features":[1]},{"name":"STATUS_PCP_DEVICE_NOT_READY","features":[1]},{"name":"STATUS_PCP_ERROR_MASK","features":[1]},{"name":"STATUS_PCP_FLAG_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[1]},{"name":"STATUS_PCP_INTERNAL_ERROR","features":[1]},{"name":"STATUS_PCP_INVALID_HANDLE","features":[1]},{"name":"STATUS_PCP_INVALID_PARAMETER","features":[1]},{"name":"STATUS_PCP_KEY_ALREADY_FINALIZED","features":[1]},{"name":"STATUS_PCP_KEY_HANDLE_INVALIDATED","features":[1]},{"name":"STATUS_PCP_KEY_NOT_AIK","features":[1]},{"name":"STATUS_PCP_KEY_NOT_AUTHENTICATED","features":[1]},{"name":"STATUS_PCP_KEY_NOT_FINALIZED","features":[1]},{"name":"STATUS_PCP_KEY_NOT_LOADED","features":[1]},{"name":"STATUS_PCP_KEY_NOT_SIGNING_KEY","features":[1]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_INVALID","features":[1]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PCP_LOCKED_OUT","features":[1]},{"name":"STATUS_PCP_NOT_PCR_BOUND","features":[1]},{"name":"STATUS_PCP_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PCP_NO_KEY_CERTIFICATION","features":[1]},{"name":"STATUS_PCP_POLICY_NOT_FOUND","features":[1]},{"name":"STATUS_PCP_PROFILE_NOT_FOUND","features":[1]},{"name":"STATUS_PCP_RAW_POLICY_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PCP_SOFT_KEY_ERROR","features":[1]},{"name":"STATUS_PCP_TICKET_MISSING","features":[1]},{"name":"STATUS_PCP_TPM_VERSION_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PCP_UNSUPPORTED_PSS_SALT","features":[1]},{"name":"STATUS_PCP_VALIDATION_FAILED","features":[1]},{"name":"STATUS_PCP_WRONG_PARENT","features":[1]},{"name":"STATUS_PENDING","features":[1]},{"name":"STATUS_PER_USER_TRUST_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_PIPE_BROKEN","features":[1]},{"name":"STATUS_PIPE_BUSY","features":[1]},{"name":"STATUS_PIPE_CLOSING","features":[1]},{"name":"STATUS_PIPE_CONNECTED","features":[1]},{"name":"STATUS_PIPE_DISCONNECTED","features":[1]},{"name":"STATUS_PIPE_EMPTY","features":[1]},{"name":"STATUS_PIPE_LISTENING","features":[1]},{"name":"STATUS_PIPE_NOT_AVAILABLE","features":[1]},{"name":"STATUS_PKINIT_CLIENT_FAILURE","features":[1]},{"name":"STATUS_PKINIT_FAILURE","features":[1]},{"name":"STATUS_PKINIT_NAME_MISMATCH","features":[1]},{"name":"STATUS_PKU2U_CERT_FAILURE","features":[1]},{"name":"STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[1]},{"name":"STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[1]},{"name":"STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[1]},{"name":"STATUS_PLATFORM_MANIFEST_INVALID","features":[1]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_ACTIVE","features":[1]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[1]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_SIGNED","features":[1]},{"name":"STATUS_PLUGPLAY_NO_DEVICE","features":[1]},{"name":"STATUS_PLUGPLAY_QUERY_VETOED","features":[1]},{"name":"STATUS_PNP_BAD_MPS_TABLE","features":[1]},{"name":"STATUS_PNP_DEVICE_CONFIGURATION_PENDING","features":[1]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE","features":[1]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND","features":[1]},{"name":"STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND","features":[1]},{"name":"STATUS_PNP_FUNCTION_DRIVER_REQUIRED","features":[1]},{"name":"STATUS_PNP_INVALID_ID","features":[1]},{"name":"STATUS_PNP_IRQ_TRANSLATION_FAILED","features":[1]},{"name":"STATUS_PNP_NO_COMPAT_DRIVERS","features":[1]},{"name":"STATUS_PNP_REBOOT_REQUIRED","features":[1]},{"name":"STATUS_PNP_RESTART_ENUMERATION","features":[1]},{"name":"STATUS_PNP_TRANSLATION_FAILED","features":[1]},{"name":"STATUS_POLICY_CONTROLLED_ACCOUNT","features":[1]},{"name":"STATUS_POLICY_OBJECT_NOT_FOUND","features":[1]},{"name":"STATUS_POLICY_ONLY_IN_DS","features":[1]},{"name":"STATUS_PORT_ALREADY_HAS_COMPLETION_LIST","features":[1]},{"name":"STATUS_PORT_ALREADY_SET","features":[1]},{"name":"STATUS_PORT_CLOSED","features":[1]},{"name":"STATUS_PORT_CONNECTION_REFUSED","features":[1]},{"name":"STATUS_PORT_DISCONNECTED","features":[1]},{"name":"STATUS_PORT_DO_NOT_DISTURB","features":[1]},{"name":"STATUS_PORT_MESSAGE_TOO_LONG","features":[1]},{"name":"STATUS_PORT_NOT_SET","features":[1]},{"name":"STATUS_PORT_UNREACHABLE","features":[1]},{"name":"STATUS_POSSIBLE_DEADLOCK","features":[1]},{"name":"STATUS_POWER_STATE_INVALID","features":[1]},{"name":"STATUS_PREDEFINED_HANDLE","features":[1]},{"name":"STATUS_PRENT4_MACHINE_ACCOUNT","features":[1]},{"name":"STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[1]},{"name":"STATUS_PRINT_CANCELLED","features":[1]},{"name":"STATUS_PRINT_QUEUE_FULL","features":[1]},{"name":"STATUS_PRIVILEGED_INSTRUCTION","features":[1]},{"name":"STATUS_PRIVILEGE_NOT_HELD","features":[1]},{"name":"STATUS_PROACTIVE_SCAN_IN_PROGRESS","features":[1]},{"name":"STATUS_PROCEDURE_NOT_FOUND","features":[1]},{"name":"STATUS_PROCESS_CLONED","features":[1]},{"name":"STATUS_PROCESS_IN_JOB","features":[1]},{"name":"STATUS_PROCESS_IS_PROTECTED","features":[1]},{"name":"STATUS_PROCESS_IS_TERMINATING","features":[1]},{"name":"STATUS_PROCESS_NOT_IN_JOB","features":[1]},{"name":"STATUS_PROFILING_AT_LIMIT","features":[1]},{"name":"STATUS_PROFILING_NOT_STARTED","features":[1]},{"name":"STATUS_PROFILING_NOT_STOPPED","features":[1]},{"name":"STATUS_PROPSET_NOT_FOUND","features":[1]},{"name":"STATUS_PROTOCOL_NOT_SUPPORTED","features":[1]},{"name":"STATUS_PROTOCOL_UNREACHABLE","features":[1]},{"name":"STATUS_PTE_CHANGED","features":[1]},{"name":"STATUS_PURGE_FAILED","features":[1]},{"name":"STATUS_PWD_HISTORY_CONFLICT","features":[1]},{"name":"STATUS_PWD_TOO_LONG","features":[1]},{"name":"STATUS_PWD_TOO_RECENT","features":[1]},{"name":"STATUS_PWD_TOO_SHORT","features":[1]},{"name":"STATUS_QUERY_STORAGE_ERROR","features":[1]},{"name":"STATUS_QUIC_ALPN_NEG_FAILURE","features":[1]},{"name":"STATUS_QUIC_CONNECTION_IDLE","features":[1]},{"name":"STATUS_QUIC_CONNECTION_TIMEOUT","features":[1]},{"name":"STATUS_QUIC_HANDSHAKE_FAILURE","features":[1]},{"name":"STATUS_QUIC_INTERNAL_ERROR","features":[1]},{"name":"STATUS_QUIC_PROTOCOL_VIOLATION","features":[1]},{"name":"STATUS_QUIC_USER_CANCELED","features":[1]},{"name":"STATUS_QUIC_VER_NEG_FAILURE","features":[1]},{"name":"STATUS_QUOTA_ACTIVITY","features":[1]},{"name":"STATUS_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_QUOTA_LIST_INCONSISTENT","features":[1]},{"name":"STATUS_QUOTA_NOT_ENABLED","features":[1]},{"name":"STATUS_RANGE_LIST_CONFLICT","features":[1]},{"name":"STATUS_RANGE_NOT_FOUND","features":[1]},{"name":"STATUS_RANGE_NOT_LOCKED","features":[1]},{"name":"STATUS_RDBSS_CONTINUE_OPERATION","features":[1]},{"name":"STATUS_RDBSS_POST_OPERATION","features":[1]},{"name":"STATUS_RDBSS_RESTART_OPERATION","features":[1]},{"name":"STATUS_RDBSS_RETRY_LOOKUP","features":[1]},{"name":"STATUS_RDP_PROTOCOL_ERROR","features":[1]},{"name":"STATUS_RECEIVE_EXPEDITED","features":[1]},{"name":"STATUS_RECEIVE_PARTIAL","features":[1]},{"name":"STATUS_RECEIVE_PARTIAL_EXPEDITED","features":[1]},{"name":"STATUS_RECOVERABLE_BUGCHECK","features":[1]},{"name":"STATUS_RECOVERY_FAILURE","features":[1]},{"name":"STATUS_RECOVERY_NOT_NEEDED","features":[1]},{"name":"STATUS_RECURSIVE_DISPATCH","features":[1]},{"name":"STATUS_REDIRECTOR_HAS_OPEN_HANDLES","features":[1]},{"name":"STATUS_REDIRECTOR_NOT_STARTED","features":[1]},{"name":"STATUS_REDIRECTOR_PAUSED","features":[1]},{"name":"STATUS_REDIRECTOR_STARTED","features":[1]},{"name":"STATUS_REGISTRY_CORRUPT","features":[1]},{"name":"STATUS_REGISTRY_HIVE_RECOVERED","features":[1]},{"name":"STATUS_REGISTRY_IO_FAILED","features":[1]},{"name":"STATUS_REGISTRY_QUOTA_LIMIT","features":[1]},{"name":"STATUS_REGISTRY_RECOVERED","features":[1]},{"name":"STATUS_REG_NAT_CONSUMPTION","features":[1]},{"name":"STATUS_REINITIALIZATION_NEEDED","features":[1]},{"name":"STATUS_REMOTE_DISCONNECT","features":[1]},{"name":"STATUS_REMOTE_FILE_VERSION_MISMATCH","features":[1]},{"name":"STATUS_REMOTE_NOT_LISTENING","features":[1]},{"name":"STATUS_REMOTE_RESOURCES","features":[1]},{"name":"STATUS_REMOTE_SESSION_LIMIT","features":[1]},{"name":"STATUS_REMOTE_STORAGE_MEDIA_ERROR","features":[1]},{"name":"STATUS_REMOTE_STORAGE_NOT_ACTIVE","features":[1]},{"name":"STATUS_REPAIR_NEEDED","features":[1]},{"name":"STATUS_REPARSE","features":[1]},{"name":"STATUS_REPARSE_ATTRIBUTE_CONFLICT","features":[1]},{"name":"STATUS_REPARSE_GLOBAL","features":[1]},{"name":"STATUS_REPARSE_OBJECT","features":[1]},{"name":"STATUS_REPARSE_POINT_ENCOUNTERED","features":[1]},{"name":"STATUS_REPARSE_POINT_NOT_RESOLVED","features":[1]},{"name":"STATUS_REPLY_MESSAGE_MISMATCH","features":[1]},{"name":"STATUS_REQUEST_ABORTED","features":[1]},{"name":"STATUS_REQUEST_CANCELED","features":[1]},{"name":"STATUS_REQUEST_NOT_ACCEPTED","features":[1]},{"name":"STATUS_REQUEST_OUT_OF_SEQUENCE","features":[1]},{"name":"STATUS_REQUEST_PAUSED","features":[1]},{"name":"STATUS_RESIDENT_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_RESOURCEMANAGER_NOT_FOUND","features":[1]},{"name":"STATUS_RESOURCEMANAGER_READ_ONLY","features":[1]},{"name":"STATUS_RESOURCE_DATA_NOT_FOUND","features":[1]},{"name":"STATUS_RESOURCE_ENUM_USER_STOP","features":[1]},{"name":"STATUS_RESOURCE_IN_USE","features":[1]},{"name":"STATUS_RESOURCE_LANG_NOT_FOUND","features":[1]},{"name":"STATUS_RESOURCE_NAME_NOT_FOUND","features":[1]},{"name":"STATUS_RESOURCE_NOT_OWNED","features":[1]},{"name":"STATUS_RESOURCE_REQUIREMENTS_CHANGED","features":[1]},{"name":"STATUS_RESOURCE_TYPE_NOT_FOUND","features":[1]},{"name":"STATUS_RESTART_BOOT_APPLICATION","features":[1]},{"name":"STATUS_RESUME_HIBERNATION","features":[1]},{"name":"STATUS_RETRY","features":[1]},{"name":"STATUS_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[1]},{"name":"STATUS_REVISION_MISMATCH","features":[1]},{"name":"STATUS_REVOCATION_OFFLINE_C","features":[1]},{"name":"STATUS_REVOCATION_OFFLINE_KDC","features":[1]},{"name":"STATUS_RING_NEWLY_EMPTY","features":[1]},{"name":"STATUS_RING_PREVIOUSLY_ABOVE_QUOTA","features":[1]},{"name":"STATUS_RING_PREVIOUSLY_EMPTY","features":[1]},{"name":"STATUS_RING_PREVIOUSLY_FULL","features":[1]},{"name":"STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT","features":[1]},{"name":"STATUS_RKF_ACTIVE_KEY","features":[1]},{"name":"STATUS_RKF_BLOB_FULL","features":[1]},{"name":"STATUS_RKF_DUPLICATE_KEY","features":[1]},{"name":"STATUS_RKF_FILE_BLOCKED","features":[1]},{"name":"STATUS_RKF_KEY_NOT_FOUND","features":[1]},{"name":"STATUS_RKF_STORE_FULL","features":[1]},{"name":"STATUS_RM_ALREADY_STARTED","features":[1]},{"name":"STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[1]},{"name":"STATUS_RM_DISCONNECTED","features":[1]},{"name":"STATUS_RM_METADATA_CORRUPT","features":[1]},{"name":"STATUS_RM_NOT_ACTIVE","features":[1]},{"name":"STATUS_ROLLBACK_TIMER_EXPIRED","features":[1]},{"name":"STATUS_RTPM_CONTEXT_COMPLETE","features":[1]},{"name":"STATUS_RTPM_CONTEXT_CONTINUE","features":[1]},{"name":"STATUS_RTPM_INVALID_CONTEXT","features":[1]},{"name":"STATUS_RTPM_NO_RESULT","features":[1]},{"name":"STATUS_RTPM_PCR_READ_INCOMPLETE","features":[1]},{"name":"STATUS_RTPM_UNSUPPORTED_CMD","features":[1]},{"name":"STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[1]},{"name":"STATUS_RUNLEVEL_SWITCH_IN_PROGRESS","features":[1]},{"name":"STATUS_RUNLEVEL_SWITCH_TIMEOUT","features":[1]},{"name":"STATUS_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[1]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[1]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[1]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[1]},{"name":"STATUS_RXACT_COMMITTED","features":[1]},{"name":"STATUS_RXACT_COMMIT_FAILURE","features":[1]},{"name":"STATUS_RXACT_COMMIT_NECESSARY","features":[1]},{"name":"STATUS_RXACT_INVALID_STATE","features":[1]},{"name":"STATUS_RXACT_STATE_CREATED","features":[1]},{"name":"STATUS_SAM_INIT_FAILURE","features":[1]},{"name":"STATUS_SAM_NEED_BOOTKEY_FLOPPY","features":[1]},{"name":"STATUS_SAM_NEED_BOOTKEY_PASSWORD","features":[1]},{"name":"STATUS_SCRUB_DATA_DISABLED","features":[1]},{"name":"STATUS_SECCORE_INVALID_COMMAND","features":[1]},{"name":"STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[1]},{"name":"STATUS_SECRET_TOO_LONG","features":[1]},{"name":"STATUS_SECTION_DIRECT_MAP_ONLY","features":[1]},{"name":"STATUS_SECTION_NOT_EXTENDED","features":[1]},{"name":"STATUS_SECTION_NOT_IMAGE","features":[1]},{"name":"STATUS_SECTION_PROTECTION","features":[1]},{"name":"STATUS_SECTION_TOO_BIG","features":[1]},{"name":"STATUS_SECUREBOOT_FILE_REPLACED","features":[1]},{"name":"STATUS_SECUREBOOT_INVALID_POLICY","features":[1]},{"name":"STATUS_SECUREBOOT_NOT_BASE_POLICY","features":[1]},{"name":"STATUS_SECUREBOOT_NOT_ENABLED","features":[1]},{"name":"STATUS_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[1]},{"name":"STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_SIGNED","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_UNKNOWN","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[1]},{"name":"STATUS_SECUREBOOT_POLICY_VIOLATION","features":[1]},{"name":"STATUS_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[1]},{"name":"STATUS_SECUREBOOT_ROLLBACK_DETECTED","features":[1]},{"name":"STATUS_SECURITY_STREAM_IS_INCONSISTENT","features":[1]},{"name":"STATUS_SEGMENT_NOTIFICATION","features":[1]},{"name":"STATUS_SEMAPHORE_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_SERIAL_COUNTER_TIMEOUT","features":[1]},{"name":"STATUS_SERIAL_MORE_WRITES","features":[1]},{"name":"STATUS_SERIAL_NO_DEVICE_INITED","features":[1]},{"name":"STATUS_SERVER_DISABLED","features":[1]},{"name":"STATUS_SERVER_HAS_OPEN_HANDLES","features":[1]},{"name":"STATUS_SERVER_NOT_DISABLED","features":[1]},{"name":"STATUS_SERVER_SHUTDOWN_IN_PROGRESS","features":[1]},{"name":"STATUS_SERVER_SID_MISMATCH","features":[1]},{"name":"STATUS_SERVER_TRANSPORT_CONFLICT","features":[1]},{"name":"STATUS_SERVER_UNAVAILABLE","features":[1]},{"name":"STATUS_SERVICES_FAILED_AUTOSTART","features":[1]},{"name":"STATUS_SERVICE_NOTIFICATION","features":[1]},{"name":"STATUS_SESSION_KEY_TOO_SHORT","features":[1]},{"name":"STATUS_SETMARK_DETECTED","features":[1]},{"name":"STATUS_SET_CONTEXT_DENIED","features":[1]},{"name":"STATUS_SEVERITY_COERROR","features":[1]},{"name":"STATUS_SEVERITY_COFAIL","features":[1]},{"name":"STATUS_SEVERITY_ERROR","features":[1]},{"name":"STATUS_SEVERITY_INFORMATIONAL","features":[1]},{"name":"STATUS_SEVERITY_SUCCESS","features":[1]},{"name":"STATUS_SEVERITY_WARNING","features":[1]},{"name":"STATUS_SHARED_IRQ_BUSY","features":[1]},{"name":"STATUS_SHARED_POLICY","features":[1]},{"name":"STATUS_SHARE_UNAVAILABLE","features":[1]},{"name":"STATUS_SHARING_PAUSED","features":[1]},{"name":"STATUS_SHARING_VIOLATION","features":[1]},{"name":"STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[1]},{"name":"STATUS_SHUTDOWN_IN_PROGRESS","features":[1]},{"name":"STATUS_SINGLE_STEP","features":[1]},{"name":"STATUS_SMARTCARD_CARD_BLOCKED","features":[1]},{"name":"STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED","features":[1]},{"name":"STATUS_SMARTCARD_CERT_EXPIRED","features":[1]},{"name":"STATUS_SMARTCARD_CERT_REVOKED","features":[1]},{"name":"STATUS_SMARTCARD_IO_ERROR","features":[1]},{"name":"STATUS_SMARTCARD_LOGON_REQUIRED","features":[1]},{"name":"STATUS_SMARTCARD_NO_CARD","features":[1]},{"name":"STATUS_SMARTCARD_NO_CERTIFICATE","features":[1]},{"name":"STATUS_SMARTCARD_NO_KEYSET","features":[1]},{"name":"STATUS_SMARTCARD_NO_KEY_CONTAINER","features":[1]},{"name":"STATUS_SMARTCARD_SILENT_CONTEXT","features":[1]},{"name":"STATUS_SMARTCARD_SUBSYSTEM_FAILURE","features":[1]},{"name":"STATUS_SMARTCARD_WRONG_PIN","features":[1]},{"name":"STATUS_SMB1_NOT_AVAILABLE","features":[1]},{"name":"STATUS_SMB_BAD_CLUSTER_DIALECT","features":[1]},{"name":"STATUS_SMB_GUEST_LOGON_BLOCKED","features":[1]},{"name":"STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[1]},{"name":"STATUS_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[1]},{"name":"STATUS_SMI_PRIMITIVE_INSTALLER_FAILED","features":[1]},{"name":"STATUS_SMR_GARBAGE_COLLECTION_REQUIRED","features":[1]},{"name":"STATUS_SOME_NOT_MAPPED","features":[1]},{"name":"STATUS_SOURCE_ELEMENT_EMPTY","features":[1]},{"name":"STATUS_SPACES_ALLOCATION_SIZE_INVALID","features":[1]},{"name":"STATUS_SPACES_CACHE_FULL","features":[1]},{"name":"STATUS_SPACES_COMPLETE","features":[1]},{"name":"STATUS_SPACES_CORRUPT_METADATA","features":[1]},{"name":"STATUS_SPACES_DRIVE_LOST_DATA","features":[1]},{"name":"STATUS_SPACES_DRIVE_NOT_READY","features":[1]},{"name":"STATUS_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[1]},{"name":"STATUS_SPACES_DRIVE_REDUNDANCY_INVALID","features":[1]},{"name":"STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[1]},{"name":"STATUS_SPACES_DRIVE_SPLIT","features":[1]},{"name":"STATUS_SPACES_DRT_FULL","features":[1]},{"name":"STATUS_SPACES_ENCLOSURE_AWARE_INVALID","features":[1]},{"name":"STATUS_SPACES_ENTRY_INCOMPLETE","features":[1]},{"name":"STATUS_SPACES_ENTRY_INVALID","features":[1]},{"name":"STATUS_SPACES_EXTENDED_ERROR","features":[1]},{"name":"STATUS_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[1]},{"name":"STATUS_SPACES_FLUSH_METADATA","features":[1]},{"name":"STATUS_SPACES_INCONSISTENCY","features":[1]},{"name":"STATUS_SPACES_INTERLEAVE_LENGTH_INVALID","features":[1]},{"name":"STATUS_SPACES_LOG_NOT_READY","features":[1]},{"name":"STATUS_SPACES_MAP_REQUIRED","features":[1]},{"name":"STATUS_SPACES_MARK_DIRTY","features":[1]},{"name":"STATUS_SPACES_NOT_ENOUGH_DRIVES","features":[1]},{"name":"STATUS_SPACES_NO_REDUNDANCY","features":[1]},{"name":"STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[1]},{"name":"STATUS_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[1]},{"name":"STATUS_SPACES_NUMBER_OF_GROUPS_INVALID","features":[1]},{"name":"STATUS_SPACES_PAUSE","features":[1]},{"name":"STATUS_SPACES_PD_INVALID_DATA","features":[1]},{"name":"STATUS_SPACES_PD_LENGTH_MISMATCH","features":[1]},{"name":"STATUS_SPACES_PD_NOT_FOUND","features":[1]},{"name":"STATUS_SPACES_PD_UNSUPPORTED_VERSION","features":[1]},{"name":"STATUS_SPACES_PROVISIONING_TYPE_INVALID","features":[1]},{"name":"STATUS_SPACES_REDIRECT","features":[1]},{"name":"STATUS_SPACES_REPAIRED","features":[1]},{"name":"STATUS_SPACES_REPAIR_IN_PROGRESS","features":[1]},{"name":"STATUS_SPACES_RESILIENCY_TYPE_INVALID","features":[1]},{"name":"STATUS_SPACES_UNSUPPORTED_VERSION","features":[1]},{"name":"STATUS_SPACES_UPDATE_COLUMN_STATE","features":[1]},{"name":"STATUS_SPACES_WRITE_CACHE_SIZE_INVALID","features":[1]},{"name":"STATUS_SPARSE_FILE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[1]},{"name":"STATUS_SPECIAL_ACCOUNT","features":[1]},{"name":"STATUS_SPECIAL_GROUP","features":[1]},{"name":"STATUS_SPECIAL_USER","features":[1]},{"name":"STATUS_STACK_BUFFER_OVERRUN","features":[1]},{"name":"STATUS_STACK_OVERFLOW","features":[1]},{"name":"STATUS_STACK_OVERFLOW_READ","features":[1]},{"name":"STATUS_STOPPED_ON_SYMLINK","features":[1]},{"name":"STATUS_STORAGE_LOST_DATA_PERSISTENCE","features":[1]},{"name":"STATUS_STORAGE_RESERVE_ALREADY_EXISTS","features":[1]},{"name":"STATUS_STORAGE_RESERVE_DOES_NOT_EXIST","features":[1]},{"name":"STATUS_STORAGE_RESERVE_ID_INVALID","features":[1]},{"name":"STATUS_STORAGE_RESERVE_NOT_EMPTY","features":[1]},{"name":"STATUS_STORAGE_STACK_ACCESS_DENIED","features":[1]},{"name":"STATUS_STORAGE_TOPOLOGY_ID_MISMATCH","features":[1]},{"name":"STATUS_STOWED_EXCEPTION","features":[1]},{"name":"STATUS_STREAM_MINIVERSION_NOT_FOUND","features":[1]},{"name":"STATUS_STREAM_MINIVERSION_NOT_VALID","features":[1]},{"name":"STATUS_STRICT_CFG_VIOLATION","features":[1]},{"name":"STATUS_STRONG_CRYPTO_NOT_SUPPORTED","features":[1]},{"name":"STATUS_SUCCESS","features":[1]},{"name":"STATUS_SUSPEND_COUNT_EXCEEDED","features":[1]},{"name":"STATUS_SVHDX_ERROR_NOT_AVAILABLE","features":[1]},{"name":"STATUS_SVHDX_ERROR_STORED","features":[1]},{"name":"STATUS_SVHDX_NO_INITIATOR","features":[1]},{"name":"STATUS_SVHDX_RESERVATION_CONFLICT","features":[1]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[1]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[1]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[1]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[1]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[1]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[1]},{"name":"STATUS_SVHDX_VERSION_MISMATCH","features":[1]},{"name":"STATUS_SVHDX_WRONG_FILE_TYPE","features":[1]},{"name":"STATUS_SXS_ACTIVATION_CONTEXT_DISABLED","features":[1]},{"name":"STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[1]},{"name":"STATUS_SXS_ASSEMBLY_MISSING","features":[1]},{"name":"STATUS_SXS_ASSEMBLY_NOT_FOUND","features":[1]},{"name":"STATUS_SXS_CANT_GEN_ACTCTX","features":[1]},{"name":"STATUS_SXS_COMPONENT_STORE_CORRUPT","features":[1]},{"name":"STATUS_SXS_CORRUPTION","features":[1]},{"name":"STATUS_SXS_CORRUPT_ACTIVATION_STACK","features":[1]},{"name":"STATUS_SXS_EARLY_DEACTIVATION","features":[1]},{"name":"STATUS_SXS_FILE_HASH_MISMATCH","features":[1]},{"name":"STATUS_SXS_FILE_HASH_MISSING","features":[1]},{"name":"STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[1]},{"name":"STATUS_SXS_IDENTITIES_DIFFERENT","features":[1]},{"name":"STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[1]},{"name":"STATUS_SXS_IDENTITY_PARSE_ERROR","features":[1]},{"name":"STATUS_SXS_INVALID_ACTCTXDATA_FORMAT","features":[1]},{"name":"STATUS_SXS_INVALID_DEACTIVATION","features":[1]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[1]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[1]},{"name":"STATUS_SXS_KEY_NOT_FOUND","features":[1]},{"name":"STATUS_SXS_MANIFEST_FORMAT_ERROR","features":[1]},{"name":"STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[1]},{"name":"STATUS_SXS_MANIFEST_PARSE_ERROR","features":[1]},{"name":"STATUS_SXS_MANIFEST_TOO_BIG","features":[1]},{"name":"STATUS_SXS_MULTIPLE_DEACTIVATION","features":[1]},{"name":"STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[1]},{"name":"STATUS_SXS_PROCESS_TERMINATION_REQUESTED","features":[1]},{"name":"STATUS_SXS_RELEASE_ACTIVATION_CONTEXT","features":[1]},{"name":"STATUS_SXS_SECTION_NOT_FOUND","features":[1]},{"name":"STATUS_SXS_SETTING_NOT_REGISTERED","features":[1]},{"name":"STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[1]},{"name":"STATUS_SXS_THREAD_QUERIES_DISABLED","features":[1]},{"name":"STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[1]},{"name":"STATUS_SXS_VERSION_CONFLICT","features":[1]},{"name":"STATUS_SXS_WRONG_SECTION_TYPE","features":[1]},{"name":"STATUS_SYMLINK_CLASS_DISABLED","features":[1]},{"name":"STATUS_SYNCHRONIZATION_REQUIRED","features":[1]},{"name":"STATUS_SYSTEM_DEVICE_NOT_FOUND","features":[1]},{"name":"STATUS_SYSTEM_HIVE_TOO_LARGE","features":[1]},{"name":"STATUS_SYSTEM_IMAGE_BAD_SIGNATURE","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_INVALID_POLICY","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[1]},{"name":"STATUS_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[1]},{"name":"STATUS_SYSTEM_NEEDS_REMEDIATION","features":[1]},{"name":"STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[1]},{"name":"STATUS_SYSTEM_POWERSTATE_TRANSITION","features":[1]},{"name":"STATUS_SYSTEM_PROCESS_TERMINATED","features":[1]},{"name":"STATUS_SYSTEM_SHUTDOWN","features":[1]},{"name":"STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED","features":[1]},{"name":"STATUS_THREADPOOL_HANDLE_EXCEPTION","features":[1]},{"name":"STATUS_THREADPOOL_RELEASED_DURING_OPERATION","features":[1]},{"name":"STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED","features":[1]},{"name":"STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED","features":[1]},{"name":"STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED","features":[1]},{"name":"STATUS_THREAD_ALREADY_IN_SESSION","features":[1]},{"name":"STATUS_THREAD_ALREADY_IN_TASK","features":[1]},{"name":"STATUS_THREAD_IS_TERMINATING","features":[1]},{"name":"STATUS_THREAD_NOT_IN_PROCESS","features":[1]},{"name":"STATUS_THREAD_NOT_IN_SESSION","features":[1]},{"name":"STATUS_THREAD_NOT_RUNNING","features":[1]},{"name":"STATUS_THREAD_WAS_SUSPENDED","features":[1]},{"name":"STATUS_TIMEOUT","features":[1]},{"name":"STATUS_TIMER_NOT_CANCELED","features":[1]},{"name":"STATUS_TIMER_RESOLUTION_NOT_SET","features":[1]},{"name":"STATUS_TIMER_RESUME_IGNORED","features":[1]},{"name":"STATUS_TIME_DIFFERENCE_AT_DC","features":[1]},{"name":"STATUS_TM_IDENTITY_MISMATCH","features":[1]},{"name":"STATUS_TM_INITIALIZATION_FAILED","features":[1]},{"name":"STATUS_TM_VOLATILE","features":[1]},{"name":"STATUS_TOKEN_ALREADY_IN_USE","features":[1]},{"name":"STATUS_TOO_LATE","features":[1]},{"name":"STATUS_TOO_MANY_ADDRESSES","features":[1]},{"name":"STATUS_TOO_MANY_COMMANDS","features":[1]},{"name":"STATUS_TOO_MANY_CONTEXT_IDS","features":[1]},{"name":"STATUS_TOO_MANY_GUIDS_REQUESTED","features":[1]},{"name":"STATUS_TOO_MANY_LINKS","features":[1]},{"name":"STATUS_TOO_MANY_LUIDS_REQUESTED","features":[1]},{"name":"STATUS_TOO_MANY_NAMES","features":[1]},{"name":"STATUS_TOO_MANY_NODES","features":[1]},{"name":"STATUS_TOO_MANY_OPENED_FILES","features":[1]},{"name":"STATUS_TOO_MANY_PAGING_FILES","features":[1]},{"name":"STATUS_TOO_MANY_PRINCIPALS","features":[1]},{"name":"STATUS_TOO_MANY_SECRETS","features":[1]},{"name":"STATUS_TOO_MANY_SEGMENT_DESCRIPTORS","features":[1]},{"name":"STATUS_TOO_MANY_SESSIONS","features":[1]},{"name":"STATUS_TOO_MANY_SIDS","features":[1]},{"name":"STATUS_TOO_MANY_THREADS","features":[1]},{"name":"STATUS_TPM_20_E_ASYMMETRIC","features":[1]},{"name":"STATUS_TPM_20_E_ATTRIBUTES","features":[1]},{"name":"STATUS_TPM_20_E_AUTHSIZE","features":[1]},{"name":"STATUS_TPM_20_E_AUTH_CONTEXT","features":[1]},{"name":"STATUS_TPM_20_E_AUTH_FAIL","features":[1]},{"name":"STATUS_TPM_20_E_AUTH_MISSING","features":[1]},{"name":"STATUS_TPM_20_E_AUTH_TYPE","features":[1]},{"name":"STATUS_TPM_20_E_AUTH_UNAVAILABLE","features":[1]},{"name":"STATUS_TPM_20_E_BAD_AUTH","features":[1]},{"name":"STATUS_TPM_20_E_BAD_CONTEXT","features":[1]},{"name":"STATUS_TPM_20_E_BINDING","features":[1]},{"name":"STATUS_TPM_20_E_COMMAND_CODE","features":[1]},{"name":"STATUS_TPM_20_E_COMMAND_SIZE","features":[1]},{"name":"STATUS_TPM_20_E_CPHASH","features":[1]},{"name":"STATUS_TPM_20_E_CURVE","features":[1]},{"name":"STATUS_TPM_20_E_DISABLED","features":[1]},{"name":"STATUS_TPM_20_E_ECC_CURVE","features":[1]},{"name":"STATUS_TPM_20_E_ECC_POINT","features":[1]},{"name":"STATUS_TPM_20_E_EXCLUSIVE","features":[1]},{"name":"STATUS_TPM_20_E_EXPIRED","features":[1]},{"name":"STATUS_TPM_20_E_FAILURE","features":[1]},{"name":"STATUS_TPM_20_E_HANDLE","features":[1]},{"name":"STATUS_TPM_20_E_HASH","features":[1]},{"name":"STATUS_TPM_20_E_HIERARCHY","features":[1]},{"name":"STATUS_TPM_20_E_HMAC","features":[1]},{"name":"STATUS_TPM_20_E_INITIALIZE","features":[1]},{"name":"STATUS_TPM_20_E_INSUFFICIENT","features":[1]},{"name":"STATUS_TPM_20_E_INTEGRITY","features":[1]},{"name":"STATUS_TPM_20_E_KDF","features":[1]},{"name":"STATUS_TPM_20_E_KEY","features":[1]},{"name":"STATUS_TPM_20_E_KEY_SIZE","features":[1]},{"name":"STATUS_TPM_20_E_MGF","features":[1]},{"name":"STATUS_TPM_20_E_MODE","features":[1]},{"name":"STATUS_TPM_20_E_NEEDS_TEST","features":[1]},{"name":"STATUS_TPM_20_E_NONCE","features":[1]},{"name":"STATUS_TPM_20_E_NO_RESULT","features":[1]},{"name":"STATUS_TPM_20_E_NV_AUTHORIZATION","features":[1]},{"name":"STATUS_TPM_20_E_NV_DEFINED","features":[1]},{"name":"STATUS_TPM_20_E_NV_LOCKED","features":[1]},{"name":"STATUS_TPM_20_E_NV_RANGE","features":[1]},{"name":"STATUS_TPM_20_E_NV_SIZE","features":[1]},{"name":"STATUS_TPM_20_E_NV_SPACE","features":[1]},{"name":"STATUS_TPM_20_E_NV_UNINITIALIZED","features":[1]},{"name":"STATUS_TPM_20_E_PARENT","features":[1]},{"name":"STATUS_TPM_20_E_PCR","features":[1]},{"name":"STATUS_TPM_20_E_PCR_CHANGED","features":[1]},{"name":"STATUS_TPM_20_E_POLICY","features":[1]},{"name":"STATUS_TPM_20_E_POLICY_CC","features":[1]},{"name":"STATUS_TPM_20_E_POLICY_FAIL","features":[1]},{"name":"STATUS_TPM_20_E_PP","features":[1]},{"name":"STATUS_TPM_20_E_PRIVATE","features":[1]},{"name":"STATUS_TPM_20_E_RANGE","features":[1]},{"name":"STATUS_TPM_20_E_REBOOT","features":[1]},{"name":"STATUS_TPM_20_E_RESERVED_BITS","features":[1]},{"name":"STATUS_TPM_20_E_SCHEME","features":[1]},{"name":"STATUS_TPM_20_E_SELECTOR","features":[1]},{"name":"STATUS_TPM_20_E_SENSITIVE","features":[1]},{"name":"STATUS_TPM_20_E_SEQUENCE","features":[1]},{"name":"STATUS_TPM_20_E_SIGNATURE","features":[1]},{"name":"STATUS_TPM_20_E_SIZE","features":[1]},{"name":"STATUS_TPM_20_E_SYMMETRIC","features":[1]},{"name":"STATUS_TPM_20_E_TAG","features":[1]},{"name":"STATUS_TPM_20_E_TICKET","features":[1]},{"name":"STATUS_TPM_20_E_TOO_MANY_CONTEXTS","features":[1]},{"name":"STATUS_TPM_20_E_TYPE","features":[1]},{"name":"STATUS_TPM_20_E_UNBALANCED","features":[1]},{"name":"STATUS_TPM_20_E_UPGRADE","features":[1]},{"name":"STATUS_TPM_20_E_VALUE","features":[1]},{"name":"STATUS_TPM_ACCESS_DENIED","features":[1]},{"name":"STATUS_TPM_AREA_LOCKED","features":[1]},{"name":"STATUS_TPM_AUDITFAILURE","features":[1]},{"name":"STATUS_TPM_AUDITFAIL_SUCCESSFUL","features":[1]},{"name":"STATUS_TPM_AUDITFAIL_UNSUCCESSFUL","features":[1]},{"name":"STATUS_TPM_AUTH2FAIL","features":[1]},{"name":"STATUS_TPM_AUTHFAIL","features":[1]},{"name":"STATUS_TPM_AUTH_CONFLICT","features":[1]},{"name":"STATUS_TPM_BADCONTEXT","features":[1]},{"name":"STATUS_TPM_BADINDEX","features":[1]},{"name":"STATUS_TPM_BADTAG","features":[1]},{"name":"STATUS_TPM_BAD_ATTRIBUTES","features":[1]},{"name":"STATUS_TPM_BAD_COUNTER","features":[1]},{"name":"STATUS_TPM_BAD_DATASIZE","features":[1]},{"name":"STATUS_TPM_BAD_DELEGATE","features":[1]},{"name":"STATUS_TPM_BAD_HANDLE","features":[1]},{"name":"STATUS_TPM_BAD_KEY_PROPERTY","features":[1]},{"name":"STATUS_TPM_BAD_LOCALITY","features":[1]},{"name":"STATUS_TPM_BAD_MIGRATION","features":[1]},{"name":"STATUS_TPM_BAD_MODE","features":[1]},{"name":"STATUS_TPM_BAD_ORDINAL","features":[1]},{"name":"STATUS_TPM_BAD_PARAMETER","features":[1]},{"name":"STATUS_TPM_BAD_PARAM_SIZE","features":[1]},{"name":"STATUS_TPM_BAD_PRESENCE","features":[1]},{"name":"STATUS_TPM_BAD_SCHEME","features":[1]},{"name":"STATUS_TPM_BAD_SIGNATURE","features":[1]},{"name":"STATUS_TPM_BAD_TYPE","features":[1]},{"name":"STATUS_TPM_BAD_VERSION","features":[1]},{"name":"STATUS_TPM_CLEAR_DISABLED","features":[1]},{"name":"STATUS_TPM_COMMAND_BLOCKED","features":[1]},{"name":"STATUS_TPM_COMMAND_CANCELED","features":[1]},{"name":"STATUS_TPM_CONTEXT_GAP","features":[1]},{"name":"STATUS_TPM_DAA_INPUT_DATA0","features":[1]},{"name":"STATUS_TPM_DAA_INPUT_DATA1","features":[1]},{"name":"STATUS_TPM_DAA_ISSUER_SETTINGS","features":[1]},{"name":"STATUS_TPM_DAA_ISSUER_VALIDITY","features":[1]},{"name":"STATUS_TPM_DAA_RESOURCES","features":[1]},{"name":"STATUS_TPM_DAA_STAGE","features":[1]},{"name":"STATUS_TPM_DAA_TPM_SETTINGS","features":[1]},{"name":"STATUS_TPM_DAA_WRONG_W","features":[1]},{"name":"STATUS_TPM_DEACTIVATED","features":[1]},{"name":"STATUS_TPM_DECRYPT_ERROR","features":[1]},{"name":"STATUS_TPM_DEFEND_LOCK_RUNNING","features":[1]},{"name":"STATUS_TPM_DELEGATE_ADMIN","features":[1]},{"name":"STATUS_TPM_DELEGATE_FAMILY","features":[1]},{"name":"STATUS_TPM_DELEGATE_LOCK","features":[1]},{"name":"STATUS_TPM_DISABLED","features":[1]},{"name":"STATUS_TPM_DISABLED_CMD","features":[1]},{"name":"STATUS_TPM_DOING_SELFTEST","features":[1]},{"name":"STATUS_TPM_DUPLICATE_VHANDLE","features":[1]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_BLOCKED","features":[1]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED","features":[1]},{"name":"STATUS_TPM_ENCRYPT_ERROR","features":[1]},{"name":"STATUS_TPM_ERROR_MASK","features":[1]},{"name":"STATUS_TPM_FAIL","features":[1]},{"name":"STATUS_TPM_FAILEDSELFTEST","features":[1]},{"name":"STATUS_TPM_FAMILYCOUNT","features":[1]},{"name":"STATUS_TPM_INAPPROPRIATE_ENC","features":[1]},{"name":"STATUS_TPM_INAPPROPRIATE_SIG","features":[1]},{"name":"STATUS_TPM_INSTALL_DISABLED","features":[1]},{"name":"STATUS_TPM_INSUFFICIENT_BUFFER","features":[1]},{"name":"STATUS_TPM_INVALID_AUTHHANDLE","features":[1]},{"name":"STATUS_TPM_INVALID_FAMILY","features":[1]},{"name":"STATUS_TPM_INVALID_HANDLE","features":[1]},{"name":"STATUS_TPM_INVALID_KEYHANDLE","features":[1]},{"name":"STATUS_TPM_INVALID_KEYUSAGE","features":[1]},{"name":"STATUS_TPM_INVALID_PCR_INFO","features":[1]},{"name":"STATUS_TPM_INVALID_POSTINIT","features":[1]},{"name":"STATUS_TPM_INVALID_RESOURCE","features":[1]},{"name":"STATUS_TPM_INVALID_STRUCTURE","features":[1]},{"name":"STATUS_TPM_IOERROR","features":[1]},{"name":"STATUS_TPM_KEYNOTFOUND","features":[1]},{"name":"STATUS_TPM_KEY_NOTSUPPORTED","features":[1]},{"name":"STATUS_TPM_KEY_OWNER_CONTROL","features":[1]},{"name":"STATUS_TPM_MAXNVWRITES","features":[1]},{"name":"STATUS_TPM_MA_AUTHORITY","features":[1]},{"name":"STATUS_TPM_MA_DESTINATION","features":[1]},{"name":"STATUS_TPM_MA_SOURCE","features":[1]},{"name":"STATUS_TPM_MA_TICKET_SIGNATURE","features":[1]},{"name":"STATUS_TPM_MIGRATEFAIL","features":[1]},{"name":"STATUS_TPM_NEEDS_SELFTEST","features":[1]},{"name":"STATUS_TPM_NOCONTEXTSPACE","features":[1]},{"name":"STATUS_TPM_NOOPERATOR","features":[1]},{"name":"STATUS_TPM_NOSPACE","features":[1]},{"name":"STATUS_TPM_NOSRK","features":[1]},{"name":"STATUS_TPM_NOTFIPS","features":[1]},{"name":"STATUS_TPM_NOTLOCAL","features":[1]},{"name":"STATUS_TPM_NOTRESETABLE","features":[1]},{"name":"STATUS_TPM_NOTSEALED_BLOB","features":[1]},{"name":"STATUS_TPM_NOT_FOUND","features":[1]},{"name":"STATUS_TPM_NOT_FULLWRITE","features":[1]},{"name":"STATUS_TPM_NO_ENDORSEMENT","features":[1]},{"name":"STATUS_TPM_NO_NV_PERMISSION","features":[1]},{"name":"STATUS_TPM_NO_WRAP_TRANSPORT","features":[1]},{"name":"STATUS_TPM_OWNER_CONTROL","features":[1]},{"name":"STATUS_TPM_OWNER_SET","features":[1]},{"name":"STATUS_TPM_PERMANENTEK","features":[1]},{"name":"STATUS_TPM_PER_NOWRITE","features":[1]},{"name":"STATUS_TPM_PPI_FUNCTION_UNSUPPORTED","features":[1]},{"name":"STATUS_TPM_READ_ONLY","features":[1]},{"name":"STATUS_TPM_REQUIRES_SIGN","features":[1]},{"name":"STATUS_TPM_RESOURCEMISSING","features":[1]},{"name":"STATUS_TPM_RESOURCES","features":[1]},{"name":"STATUS_TPM_RETRY","features":[1]},{"name":"STATUS_TPM_SHA_ERROR","features":[1]},{"name":"STATUS_TPM_SHA_THREAD","features":[1]},{"name":"STATUS_TPM_SHORTRANDOM","features":[1]},{"name":"STATUS_TPM_SIZE","features":[1]},{"name":"STATUS_TPM_TOOMANYCONTEXTS","features":[1]},{"name":"STATUS_TPM_TOO_MANY_CONTEXTS","features":[1]},{"name":"STATUS_TPM_TRANSPORT_NOTEXCLUSIVE","features":[1]},{"name":"STATUS_TPM_WRITE_LOCKED","features":[1]},{"name":"STATUS_TPM_WRONGPCRVAL","features":[1]},{"name":"STATUS_TPM_WRONG_ENTITYTYPE","features":[1]},{"name":"STATUS_TPM_ZERO_EXHAUST_ENABLED","features":[1]},{"name":"STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[1]},{"name":"STATUS_TRANSACTIONAL_CONFLICT","features":[1]},{"name":"STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[1]},{"name":"STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[1]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_FOUND","features":[1]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_ONLINE","features":[1]},{"name":"STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[1]},{"name":"STATUS_TRANSACTIONS_NOT_FROZEN","features":[1]},{"name":"STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[1]},{"name":"STATUS_TRANSACTION_ABORTED","features":[1]},{"name":"STATUS_TRANSACTION_ALREADY_ABORTED","features":[1]},{"name":"STATUS_TRANSACTION_ALREADY_COMMITTED","features":[1]},{"name":"STATUS_TRANSACTION_FREEZE_IN_PROGRESS","features":[1]},{"name":"STATUS_TRANSACTION_INTEGRITY_VIOLATED","features":[1]},{"name":"STATUS_TRANSACTION_INVALID_ID","features":[1]},{"name":"STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[1]},{"name":"STATUS_TRANSACTION_INVALID_TYPE","features":[1]},{"name":"STATUS_TRANSACTION_MUST_WRITETHROUGH","features":[1]},{"name":"STATUS_TRANSACTION_NOT_ACTIVE","features":[1]},{"name":"STATUS_TRANSACTION_NOT_ENLISTED","features":[1]},{"name":"STATUS_TRANSACTION_NOT_FOUND","features":[1]},{"name":"STATUS_TRANSACTION_NOT_JOINED","features":[1]},{"name":"STATUS_TRANSACTION_NOT_REQUESTED","features":[1]},{"name":"STATUS_TRANSACTION_NOT_ROOT","features":[1]},{"name":"STATUS_TRANSACTION_NO_MATCH","features":[1]},{"name":"STATUS_TRANSACTION_NO_RELEASE","features":[1]},{"name":"STATUS_TRANSACTION_NO_SUPERIOR","features":[1]},{"name":"STATUS_TRANSACTION_OBJECT_EXPIRED","features":[1]},{"name":"STATUS_TRANSACTION_PROPAGATION_FAILED","features":[1]},{"name":"STATUS_TRANSACTION_RECORD_TOO_LONG","features":[1]},{"name":"STATUS_TRANSACTION_REQUEST_NOT_VALID","features":[1]},{"name":"STATUS_TRANSACTION_REQUIRED_PROMOTION","features":[1]},{"name":"STATUS_TRANSACTION_RESPONDED","features":[1]},{"name":"STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[1]},{"name":"STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[1]},{"name":"STATUS_TRANSACTION_SUPERIOR_EXISTS","features":[1]},{"name":"STATUS_TRANSACTION_TIMED_OUT","features":[1]},{"name":"STATUS_TRANSLATION_COMPLETE","features":[1]},{"name":"STATUS_TRANSPORT_FULL","features":[1]},{"name":"STATUS_TRIGGERED_EXECUTABLE_MEMORY_WRITE","features":[1]},{"name":"STATUS_TRIM_READ_ZERO_NOT_SUPPORTED","features":[1]},{"name":"STATUS_TRUSTED_DOMAIN_FAILURE","features":[1]},{"name":"STATUS_TRUSTED_RELATIONSHIP_FAILURE","features":[1]},{"name":"STATUS_TRUST_FAILURE","features":[1]},{"name":"STATUS_TS_INCOMPATIBLE_SESSIONS","features":[1]},{"name":"STATUS_TS_VIDEO_SUBSYSTEM_ERROR","features":[1]},{"name":"STATUS_TXF_ATTRIBUTE_CORRUPT","features":[1]},{"name":"STATUS_TXF_DIR_NOT_EMPTY","features":[1]},{"name":"STATUS_TXF_METADATA_ALREADY_PRESENT","features":[1]},{"name":"STATUS_UNABLE_TO_DECOMMIT_VM","features":[1]},{"name":"STATUS_UNABLE_TO_DELETE_SECTION","features":[1]},{"name":"STATUS_UNABLE_TO_FREE_VM","features":[1]},{"name":"STATUS_UNABLE_TO_LOCK_MEDIA","features":[1]},{"name":"STATUS_UNABLE_TO_UNLOAD_MEDIA","features":[1]},{"name":"STATUS_UNDEFINED_CHARACTER","features":[1]},{"name":"STATUS_UNDEFINED_SCOPE","features":[1]},{"name":"STATUS_UNEXPECTED_IO_ERROR","features":[1]},{"name":"STATUS_UNEXPECTED_MM_CREATE_ERR","features":[1]},{"name":"STATUS_UNEXPECTED_MM_EXTEND_ERR","features":[1]},{"name":"STATUS_UNEXPECTED_MM_MAP_ERROR","features":[1]},{"name":"STATUS_UNEXPECTED_NETWORK_ERROR","features":[1]},{"name":"STATUS_UNFINISHED_CONTEXT_DELETED","features":[1]},{"name":"STATUS_UNHANDLED_EXCEPTION","features":[1]},{"name":"STATUS_UNKNOWN_REVISION","features":[1]},{"name":"STATUS_UNMAPPABLE_CHARACTER","features":[1]},{"name":"STATUS_UNRECOGNIZED_MEDIA","features":[1]},{"name":"STATUS_UNRECOGNIZED_VOLUME","features":[1]},{"name":"STATUS_UNSATISFIED_DEPENDENCIES","features":[1]},{"name":"STATUS_UNSUCCESSFUL","features":[1]},{"name":"STATUS_UNSUPPORTED_COMPRESSION","features":[1]},{"name":"STATUS_UNSUPPORTED_PAGING_MODE","features":[1]},{"name":"STATUS_UNSUPPORTED_PREAUTH","features":[1]},{"name":"STATUS_UNTRUSTED_MOUNT_POINT","features":[1]},{"name":"STATUS_UNWIND","features":[1]},{"name":"STATUS_UNWIND_CONSOLIDATE","features":[1]},{"name":"STATUS_USER2USER_REQUIRED","features":[1]},{"name":"STATUS_USER_APC","features":[1]},{"name":"STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[1]},{"name":"STATUS_USER_EXISTS","features":[1]},{"name":"STATUS_USER_MAPPED_FILE","features":[1]},{"name":"STATUS_USER_SESSION_DELETED","features":[1]},{"name":"STATUS_VALIDATE_CONTINUE","features":[1]},{"name":"STATUS_VALID_CATALOG_HASH","features":[1]},{"name":"STATUS_VALID_IMAGE_HASH","features":[1]},{"name":"STATUS_VALID_STRONG_CODE_HASH","features":[1]},{"name":"STATUS_VARIABLE_NOT_FOUND","features":[1]},{"name":"STATUS_VDM_DISALLOWED","features":[1]},{"name":"STATUS_VDM_HARD_ERROR","features":[1]},{"name":"STATUS_VERIFIER_STOP","features":[1]},{"name":"STATUS_VERIFY_REQUIRED","features":[1]},{"name":"STATUS_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[1]},{"name":"STATUS_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[1]},{"name":"STATUS_VHD_BITMAP_MISMATCH","features":[1]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_FAILURE","features":[1]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[1]},{"name":"STATUS_VHD_CHANGE_TRACKING_DISABLED","features":[1]},{"name":"STATUS_VHD_CHILD_PARENT_ID_MISMATCH","features":[1]},{"name":"STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[1]},{"name":"STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[1]},{"name":"STATUS_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[1]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[1]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[1]},{"name":"STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[1]},{"name":"STATUS_VHD_DRIVE_FOOTER_CORRUPT","features":[1]},{"name":"STATUS_VHD_DRIVE_FOOTER_MISSING","features":[1]},{"name":"STATUS_VHD_FORMAT_UNKNOWN","features":[1]},{"name":"STATUS_VHD_FORMAT_UNSUPPORTED_VERSION","features":[1]},{"name":"STATUS_VHD_INVALID_BLOCK_SIZE","features":[1]},{"name":"STATUS_VHD_INVALID_CHANGE_TRACKING_ID","features":[1]},{"name":"STATUS_VHD_INVALID_FILE_SIZE","features":[1]},{"name":"STATUS_VHD_INVALID_SIZE","features":[1]},{"name":"STATUS_VHD_INVALID_STATE","features":[1]},{"name":"STATUS_VHD_INVALID_TYPE","features":[1]},{"name":"STATUS_VHD_METADATA_FULL","features":[1]},{"name":"STATUS_VHD_METADATA_READ_FAILURE","features":[1]},{"name":"STATUS_VHD_METADATA_WRITE_FAILURE","features":[1]},{"name":"STATUS_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[1]},{"name":"STATUS_VHD_PARENT_VHD_ACCESS_DENIED","features":[1]},{"name":"STATUS_VHD_PARENT_VHD_NOT_FOUND","features":[1]},{"name":"STATUS_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[1]},{"name":"STATUS_VHD_SHARED","features":[1]},{"name":"STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[1]},{"name":"STATUS_VHD_SPARSE_HEADER_CORRUPT","features":[1]},{"name":"STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[1]},{"name":"STATUS_VHD_UNEXPECTED_ID","features":[1]},{"name":"STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[1]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD","features":[1]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED","features":[1]},{"name":"STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[1]},{"name":"STATUS_VID_DUPLICATE_HANDLER","features":[1]},{"name":"STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[1]},{"name":"STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[1]},{"name":"STATUS_VID_HANDLER_NOT_PRESENT","features":[1]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[1]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[1]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[1]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[1]},{"name":"STATUS_VID_INVALID_CHILD_GPA_PAGE_SET","features":[1]},{"name":"STATUS_VID_INVALID_GPA_RANGE_HANDLE","features":[1]},{"name":"STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[1]},{"name":"STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[1]},{"name":"STATUS_VID_INVALID_NUMA_NODE_INDEX","features":[1]},{"name":"STATUS_VID_INVALID_NUMA_SETTINGS","features":[1]},{"name":"STATUS_VID_INVALID_OBJECT_NAME","features":[1]},{"name":"STATUS_VID_INVALID_PPM_HANDLE","features":[1]},{"name":"STATUS_VID_INVALID_PROCESSOR_STATE","features":[1]},{"name":"STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[1]},{"name":"STATUS_VID_MBPS_ARE_LOCKED","features":[1]},{"name":"STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[1]},{"name":"STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[1]},{"name":"STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[1]},{"name":"STATUS_VID_MB_STILL_REFERENCED","features":[1]},{"name":"STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[1]},{"name":"STATUS_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[1]},{"name":"STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[1]},{"name":"STATUS_VID_MESSAGE_QUEUE_CLOSED","features":[1]},{"name":"STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[1]},{"name":"STATUS_VID_MMIO_RANGE_DESTROYED","features":[1]},{"name":"STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[1]},{"name":"STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[1]},{"name":"STATUS_VID_PAGE_RANGE_OVERFLOW","features":[1]},{"name":"STATUS_VID_PARTITION_ALREADY_EXISTS","features":[1]},{"name":"STATUS_VID_PARTITION_DOES_NOT_EXIST","features":[1]},{"name":"STATUS_VID_PARTITION_NAME_NOT_FOUND","features":[1]},{"name":"STATUS_VID_PARTITION_NAME_TOO_LONG","features":[1]},{"name":"STATUS_VID_PROCESS_ALREADY_SET","features":[1]},{"name":"STATUS_VID_QUEUE_FULL","features":[1]},{"name":"STATUS_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[1]},{"name":"STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[1]},{"name":"STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[1]},{"name":"STATUS_VID_SAVED_STATE_CORRUPT","features":[1]},{"name":"STATUS_VID_SAVED_STATE_INCOMPATIBLE","features":[1]},{"name":"STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[1]},{"name":"STATUS_VID_STOP_PENDING","features":[1]},{"name":"STATUS_VID_TOO_MANY_HANDLERS","features":[1]},{"name":"STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[1]},{"name":"STATUS_VID_VTL_ACCESS_DENIED","features":[1]},{"name":"STATUS_VIRTDISK_DISK_ALREADY_OWNED","features":[1]},{"name":"STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[1]},{"name":"STATUS_VIRTDISK_NOT_VIRTUAL_DISK","features":[1]},{"name":"STATUS_VIRTDISK_PROVIDER_NOT_FOUND","features":[1]},{"name":"STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[1]},{"name":"STATUS_VIRTUAL_CIRCUIT_CLOSED","features":[1]},{"name":"STATUS_VIRTUAL_DISK_LIMITATION","features":[1]},{"name":"STATUS_VIRUS_DELETED","features":[1]},{"name":"STATUS_VIRUS_INFECTED","features":[1]},{"name":"STATUS_VOLMGR_ALL_DISKS_FAILED","features":[1]},{"name":"STATUS_VOLMGR_BAD_BOOT_DISK","features":[1]},{"name":"STATUS_VOLMGR_DATABASE_FULL","features":[1]},{"name":"STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[1]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[1]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[1]},{"name":"STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[1]},{"name":"STATUS_VOLMGR_DISK_DUPLICATE","features":[1]},{"name":"STATUS_VOLMGR_DISK_DYNAMIC","features":[1]},{"name":"STATUS_VOLMGR_DISK_ID_INVALID","features":[1]},{"name":"STATUS_VOLMGR_DISK_INVALID","features":[1]},{"name":"STATUS_VOLMGR_DISK_LAST_VOTER","features":[1]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_INVALID","features":[1]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[1]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[1]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[1]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[1]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[1]},{"name":"STATUS_VOLMGR_DISK_MISSING","features":[1]},{"name":"STATUS_VOLMGR_DISK_NOT_EMPTY","features":[1]},{"name":"STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[1]},{"name":"STATUS_VOLMGR_DISK_REVECTORING_FAILED","features":[1]},{"name":"STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[1]},{"name":"STATUS_VOLMGR_DISK_SET_NOT_CONTAINED","features":[1]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[1]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[1]},{"name":"STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[1]},{"name":"STATUS_VOLMGR_EXTENT_ALREADY_USED","features":[1]},{"name":"STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[1]},{"name":"STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[1]},{"name":"STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[1]},{"name":"STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[1]},{"name":"STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[1]},{"name":"STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[1]},{"name":"STATUS_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[1]},{"name":"STATUS_VOLMGR_INCOMPLETE_REGENERATION","features":[1]},{"name":"STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[1]},{"name":"STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[1]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[1]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_INVALID","features":[1]},{"name":"STATUS_VOLMGR_MEMBER_IN_SYNC","features":[1]},{"name":"STATUS_VOLMGR_MEMBER_MISSING","features":[1]},{"name":"STATUS_VOLMGR_MEMBER_NOT_DETACHED","features":[1]},{"name":"STATUS_VOLMGR_MEMBER_REGENERATING","features":[1]},{"name":"STATUS_VOLMGR_MIRROR_NOT_SUPPORTED","features":[1]},{"name":"STATUS_VOLMGR_NOTIFICATION_RESET","features":[1]},{"name":"STATUS_VOLMGR_NOT_PRIMARY_PACK","features":[1]},{"name":"STATUS_VOLMGR_NO_REGISTERED_USERS","features":[1]},{"name":"STATUS_VOLMGR_NO_SUCH_USER","features":[1]},{"name":"STATUS_VOLMGR_NO_VALID_LOG_COPIES","features":[1]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[1]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[1]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[1]},{"name":"STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[1]},{"name":"STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[1]},{"name":"STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[1]},{"name":"STATUS_VOLMGR_PACK_CONFIG_OFFLINE","features":[1]},{"name":"STATUS_VOLMGR_PACK_CONFIG_ONLINE","features":[1]},{"name":"STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[1]},{"name":"STATUS_VOLMGR_PACK_DUPLICATE","features":[1]},{"name":"STATUS_VOLMGR_PACK_HAS_QUORUM","features":[1]},{"name":"STATUS_VOLMGR_PACK_ID_INVALID","features":[1]},{"name":"STATUS_VOLMGR_PACK_INVALID","features":[1]},{"name":"STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[1]},{"name":"STATUS_VOLMGR_PACK_NAME_INVALID","features":[1]},{"name":"STATUS_VOLMGR_PACK_OFFLINE","features":[1]},{"name":"STATUS_VOLMGR_PACK_WITHOUT_QUORUM","features":[1]},{"name":"STATUS_VOLMGR_PARTITION_STYLE_INVALID","features":[1]},{"name":"STATUS_VOLMGR_PARTITION_UPDATE_FAILED","features":[1]},{"name":"STATUS_VOLMGR_PLEX_INDEX_DUPLICATE","features":[1]},{"name":"STATUS_VOLMGR_PLEX_INDEX_INVALID","features":[1]},{"name":"STATUS_VOLMGR_PLEX_IN_SYNC","features":[1]},{"name":"STATUS_VOLMGR_PLEX_LAST_ACTIVE","features":[1]},{"name":"STATUS_VOLMGR_PLEX_MISSING","features":[1]},{"name":"STATUS_VOLMGR_PLEX_NOT_RAID5","features":[1]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE","features":[1]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[1]},{"name":"STATUS_VOLMGR_PLEX_REGENERATING","features":[1]},{"name":"STATUS_VOLMGR_PLEX_TYPE_INVALID","features":[1]},{"name":"STATUS_VOLMGR_PRIMARY_PACK_PRESENT","features":[1]},{"name":"STATUS_VOLMGR_RAID5_NOT_SUPPORTED","features":[1]},{"name":"STATUS_VOLMGR_STRUCTURE_SIZE_INVALID","features":[1]},{"name":"STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[1]},{"name":"STATUS_VOLMGR_TRANSACTION_IN_PROGRESS","features":[1]},{"name":"STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_ID_INVALID","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_INVALID","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_MIRRORED","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_NOT_MIRRORED","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_NOT_RETAINED","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_OFFLINE","features":[1]},{"name":"STATUS_VOLMGR_VOLUME_RETAINED","features":[1]},{"name":"STATUS_VOLSNAP_ACTIVATION_TIMEOUT","features":[1]},{"name":"STATUS_VOLSNAP_BOOTFILE_NOT_VALID","features":[1]},{"name":"STATUS_VOLSNAP_HIBERNATE_READY","features":[1]},{"name":"STATUS_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[1]},{"name":"STATUS_VOLSNAP_PREPARE_HIBERNATE","features":[1]},{"name":"STATUS_VOLUME_DIRTY","features":[1]},{"name":"STATUS_VOLUME_DISMOUNTED","features":[1]},{"name":"STATUS_VOLUME_MOUNTED","features":[1]},{"name":"STATUS_VOLUME_NOT_CLUSTER_ALIGNED","features":[1]},{"name":"STATUS_VOLUME_NOT_SUPPORTED","features":[1]},{"name":"STATUS_VOLUME_NOT_UPGRADED","features":[1]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED","features":[1]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[1]},{"name":"STATUS_VOLUME_UPGRADE_NOT_NEEDED","features":[1]},{"name":"STATUS_VOLUME_UPGRADE_PENDING","features":[1]},{"name":"STATUS_VOLUME_WRITE_ACCESS_DENIED","features":[1]},{"name":"STATUS_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[1]},{"name":"STATUS_VRF_VOLATILE_NMI_REGISTERED","features":[1]},{"name":"STATUS_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[1]},{"name":"STATUS_VRF_VOLATILE_NOT_STOPPABLE","features":[1]},{"name":"STATUS_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[1]},{"name":"STATUS_VRF_VOLATILE_PROTECTED_DRIVER","features":[1]},{"name":"STATUS_VRF_VOLATILE_SAFE_MODE","features":[1]},{"name":"STATUS_VRF_VOLATILE_SETTINGS_CONFLICT","features":[1]},{"name":"STATUS_VSM_DMA_PROTECTION_NOT_IN_USE","features":[1]},{"name":"STATUS_VSM_NOT_INITIALIZED","features":[1]},{"name":"STATUS_WAIT_0","features":[1]},{"name":"STATUS_WAIT_1","features":[1]},{"name":"STATUS_WAIT_2","features":[1]},{"name":"STATUS_WAIT_3","features":[1]},{"name":"STATUS_WAIT_63","features":[1]},{"name":"STATUS_WAIT_FOR_OPLOCK","features":[1]},{"name":"STATUS_WAKE_SYSTEM","features":[1]},{"name":"STATUS_WAKE_SYSTEM_DEBUGGER","features":[1]},{"name":"STATUS_WAS_LOCKED","features":[1]},{"name":"STATUS_WAS_UNLOCKED","features":[1]},{"name":"STATUS_WEAK_WHFBKEY_BLOCKED","features":[1]},{"name":"STATUS_WIM_NOT_BOOTABLE","features":[1]},{"name":"STATUS_WMI_ALREADY_DISABLED","features":[1]},{"name":"STATUS_WMI_ALREADY_ENABLED","features":[1]},{"name":"STATUS_WMI_GUID_DISCONNECTED","features":[1]},{"name":"STATUS_WMI_GUID_NOT_FOUND","features":[1]},{"name":"STATUS_WMI_INSTANCE_NOT_FOUND","features":[1]},{"name":"STATUS_WMI_ITEMID_NOT_FOUND","features":[1]},{"name":"STATUS_WMI_NOT_SUPPORTED","features":[1]},{"name":"STATUS_WMI_READ_ONLY","features":[1]},{"name":"STATUS_WMI_SET_FAILURE","features":[1]},{"name":"STATUS_WMI_TRY_AGAIN","features":[1]},{"name":"STATUS_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[1]},{"name":"STATUS_WOF_WIM_HEADER_CORRUPT","features":[1]},{"name":"STATUS_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[1]},{"name":"STATUS_WORKING_SET_LIMIT_RANGE","features":[1]},{"name":"STATUS_WORKING_SET_QUOTA","features":[1]},{"name":"STATUS_WOW_ASSERTION","features":[1]},{"name":"STATUS_WRONG_COMPARTMENT","features":[1]},{"name":"STATUS_WRONG_CREDENTIAL_HANDLE","features":[1]},{"name":"STATUS_WRONG_EFS","features":[1]},{"name":"STATUS_WRONG_PASSWORD_CORE","features":[1]},{"name":"STATUS_WRONG_VOLUME","features":[1]},{"name":"STATUS_WX86_BREAKPOINT","features":[1]},{"name":"STATUS_WX86_CONTINUE","features":[1]},{"name":"STATUS_WX86_CREATEWX86TIB","features":[1]},{"name":"STATUS_WX86_EXCEPTION_CHAIN","features":[1]},{"name":"STATUS_WX86_EXCEPTION_CONTINUE","features":[1]},{"name":"STATUS_WX86_EXCEPTION_LASTCHANCE","features":[1]},{"name":"STATUS_WX86_FLOAT_STACK_CHECK","features":[1]},{"name":"STATUS_WX86_INTERNAL_ERROR","features":[1]},{"name":"STATUS_WX86_SINGLE_STEP","features":[1]},{"name":"STATUS_WX86_UNSIMULATE","features":[1]},{"name":"STATUS_XMLDSIG_ERROR","features":[1]},{"name":"STATUS_XML_ENCODING_MISMATCH","features":[1]},{"name":"STATUS_XML_PARSE_ERROR","features":[1]},{"name":"STG_E_ABNORMALAPIEXIT","features":[1]},{"name":"STG_E_ACCESSDENIED","features":[1]},{"name":"STG_E_BADBASEADDRESS","features":[1]},{"name":"STG_E_CANTSAVE","features":[1]},{"name":"STG_E_CSS_AUTHENTICATION_FAILURE","features":[1]},{"name":"STG_E_CSS_KEY_NOT_ESTABLISHED","features":[1]},{"name":"STG_E_CSS_KEY_NOT_PRESENT","features":[1]},{"name":"STG_E_CSS_REGION_MISMATCH","features":[1]},{"name":"STG_E_CSS_SCRAMBLED_SECTOR","features":[1]},{"name":"STG_E_DEVICE_UNRESPONSIVE","features":[1]},{"name":"STG_E_DISKISWRITEPROTECTED","features":[1]},{"name":"STG_E_DOCFILECORRUPT","features":[1]},{"name":"STG_E_DOCFILETOOLARGE","features":[1]},{"name":"STG_E_EXTANTMARSHALLINGS","features":[1]},{"name":"STG_E_FILEALREADYEXISTS","features":[1]},{"name":"STG_E_FILENOTFOUND","features":[1]},{"name":"STG_E_FIRMWARE_IMAGE_INVALID","features":[1]},{"name":"STG_E_FIRMWARE_SLOT_INVALID","features":[1]},{"name":"STG_E_INCOMPLETE","features":[1]},{"name":"STG_E_INSUFFICIENTMEMORY","features":[1]},{"name":"STG_E_INUSE","features":[1]},{"name":"STG_E_INVALIDFLAG","features":[1]},{"name":"STG_E_INVALIDFUNCTION","features":[1]},{"name":"STG_E_INVALIDHANDLE","features":[1]},{"name":"STG_E_INVALIDHEADER","features":[1]},{"name":"STG_E_INVALIDNAME","features":[1]},{"name":"STG_E_INVALIDPARAMETER","features":[1]},{"name":"STG_E_INVALIDPOINTER","features":[1]},{"name":"STG_E_LOCKVIOLATION","features":[1]},{"name":"STG_E_MEDIUMFULL","features":[1]},{"name":"STG_E_NOMOREFILES","features":[1]},{"name":"STG_E_NOTCURRENT","features":[1]},{"name":"STG_E_NOTFILEBASEDSTORAGE","features":[1]},{"name":"STG_E_NOTSIMPLEFORMAT","features":[1]},{"name":"STG_E_OLDDLL","features":[1]},{"name":"STG_E_OLDFORMAT","features":[1]},{"name":"STG_E_PATHNOTFOUND","features":[1]},{"name":"STG_E_PROPSETMISMATCHED","features":[1]},{"name":"STG_E_READFAULT","features":[1]},{"name":"STG_E_RESETS_EXHAUSTED","features":[1]},{"name":"STG_E_REVERTED","features":[1]},{"name":"STG_E_SEEKERROR","features":[1]},{"name":"STG_E_SHAREREQUIRED","features":[1]},{"name":"STG_E_SHAREVIOLATION","features":[1]},{"name":"STG_E_STATUS_COPY_PROTECTION_FAILURE","features":[1]},{"name":"STG_E_TERMINATED","features":[1]},{"name":"STG_E_TOOMANYOPENFILES","features":[1]},{"name":"STG_E_UNIMPLEMENTEDFUNCTION","features":[1]},{"name":"STG_E_UNKNOWN","features":[1]},{"name":"STG_E_WRITEFAULT","features":[1]},{"name":"STG_S_BLOCK","features":[1]},{"name":"STG_S_CANNOTCONSOLIDATE","features":[1]},{"name":"STG_S_CONSOLIDATIONFAILED","features":[1]},{"name":"STG_S_CONVERTED","features":[1]},{"name":"STG_S_MONITORING","features":[1]},{"name":"STG_S_MULTIPLEOPENS","features":[1]},{"name":"STG_S_POWER_CYCLE_REQUIRED","features":[1]},{"name":"STG_S_RETRYNOW","features":[1]},{"name":"STILL_ACTIVE","features":[1]},{"name":"STORE_ERROR_LICENSE_REVOKED","features":[1]},{"name":"STORE_ERROR_PENDING_COM_TRANSACTION","features":[1]},{"name":"STORE_ERROR_UNLICENSED","features":[1]},{"name":"STORE_ERROR_UNLICENSED_USER","features":[1]},{"name":"STRICT","features":[1]},{"name":"SUCCESS","features":[1]},{"name":"SYSTEMTIME","features":[1]},{"name":"S_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG","features":[1]},{"name":"S_FALSE","features":[1]},{"name":"S_OK","features":[1]},{"name":"S_STORE_LAUNCHED_FOR_REMEDIATION","features":[1]},{"name":"SetHandleInformation","features":[1]},{"name":"SetLastError","features":[1]},{"name":"SetLastErrorEx","features":[1]},{"name":"SysAddRefString","features":[1]},{"name":"SysAllocString","features":[1]},{"name":"SysAllocStringByteLen","features":[1]},{"name":"SysAllocStringLen","features":[1]},{"name":"SysFreeString","features":[1]},{"name":"SysReAllocString","features":[1]},{"name":"SysReAllocStringLen","features":[1]},{"name":"SysReleaseString","features":[1]},{"name":"SysStringByteLen","features":[1]},{"name":"SysStringLen","features":[1]},{"name":"TBSIMP_E_BUFFER_TOO_SMALL","features":[1]},{"name":"TBSIMP_E_CLEANUP_FAILED","features":[1]},{"name":"TBSIMP_E_COMMAND_CANCELED","features":[1]},{"name":"TBSIMP_E_COMMAND_FAILED","features":[1]},{"name":"TBSIMP_E_DUPLICATE_VHANDLE","features":[1]},{"name":"TBSIMP_E_HASH_BAD_KEY","features":[1]},{"name":"TBSIMP_E_HASH_TABLE_FULL","features":[1]},{"name":"TBSIMP_E_INVALID_CONTEXT_HANDLE","features":[1]},{"name":"TBSIMP_E_INVALID_CONTEXT_PARAM","features":[1]},{"name":"TBSIMP_E_INVALID_OUTPUT_POINTER","features":[1]},{"name":"TBSIMP_E_INVALID_PARAMETER","features":[1]},{"name":"TBSIMP_E_INVALID_RESOURCE","features":[1]},{"name":"TBSIMP_E_LIST_NOT_FOUND","features":[1]},{"name":"TBSIMP_E_LIST_NO_MORE_ITEMS","features":[1]},{"name":"TBSIMP_E_NOTHING_TO_UNLOAD","features":[1]},{"name":"TBSIMP_E_NOT_ENOUGH_SPACE","features":[1]},{"name":"TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS","features":[1]},{"name":"TBSIMP_E_NO_EVENT_LOG","features":[1]},{"name":"TBSIMP_E_OUT_OF_MEMORY","features":[1]},{"name":"TBSIMP_E_PPI_NOT_SUPPORTED","features":[1]},{"name":"TBSIMP_E_RESOURCE_EXPIRED","features":[1]},{"name":"TBSIMP_E_RPC_INIT_FAILED","features":[1]},{"name":"TBSIMP_E_SCHEDULER_NOT_RUNNING","features":[1]},{"name":"TBSIMP_E_TOO_MANY_RESOURCES","features":[1]},{"name":"TBSIMP_E_TOO_MANY_TBS_CONTEXTS","features":[1]},{"name":"TBSIMP_E_TPM_ERROR","features":[1]},{"name":"TBSIMP_E_TPM_INCOMPATIBLE","features":[1]},{"name":"TBSIMP_E_UNKNOWN_ORDINAL","features":[1]},{"name":"TBS_E_ACCESS_DENIED","features":[1]},{"name":"TBS_E_BAD_PARAMETER","features":[1]},{"name":"TBS_E_BUFFER_TOO_LARGE","features":[1]},{"name":"TBS_E_COMMAND_CANCELED","features":[1]},{"name":"TBS_E_INSUFFICIENT_BUFFER","features":[1]},{"name":"TBS_E_INTERNAL_ERROR","features":[1]},{"name":"TBS_E_INVALID_CONTEXT","features":[1]},{"name":"TBS_E_INVALID_CONTEXT_PARAM","features":[1]},{"name":"TBS_E_INVALID_OUTPUT_POINTER","features":[1]},{"name":"TBS_E_IOERROR","features":[1]},{"name":"TBS_E_NO_EVENT_LOG","features":[1]},{"name":"TBS_E_OWNERAUTH_NOT_FOUND","features":[1]},{"name":"TBS_E_PPI_FUNCTION_UNSUPPORTED","features":[1]},{"name":"TBS_E_PPI_NOT_SUPPORTED","features":[1]},{"name":"TBS_E_PROVISIONING_INCOMPLETE","features":[1]},{"name":"TBS_E_PROVISIONING_NOT_ALLOWED","features":[1]},{"name":"TBS_E_SERVICE_DISABLED","features":[1]},{"name":"TBS_E_SERVICE_NOT_RUNNING","features":[1]},{"name":"TBS_E_SERVICE_START_PENDING","features":[1]},{"name":"TBS_E_TOO_MANY_RESOURCES","features":[1]},{"name":"TBS_E_TOO_MANY_TBS_CONTEXTS","features":[1]},{"name":"TBS_E_TPM_NOT_FOUND","features":[1]},{"name":"TPC_E_INITIALIZE_FAIL","features":[1]},{"name":"TPC_E_INVALID_CONFIGURATION","features":[1]},{"name":"TPC_E_INVALID_DATA_FROM_RECOGNIZER","features":[1]},{"name":"TPC_E_INVALID_INPUT_RECT","features":[1]},{"name":"TPC_E_INVALID_PACKET_DESCRIPTION","features":[1]},{"name":"TPC_E_INVALID_PROPERTY","features":[1]},{"name":"TPC_E_INVALID_RIGHTS","features":[1]},{"name":"TPC_E_INVALID_STROKE","features":[1]},{"name":"TPC_E_NOT_RELEVANT","features":[1]},{"name":"TPC_E_NO_DEFAULT_TABLET","features":[1]},{"name":"TPC_E_OUT_OF_ORDER_CALL","features":[1]},{"name":"TPC_E_QUEUE_FULL","features":[1]},{"name":"TPC_E_RECOGNIZER_NOT_REGISTERED","features":[1]},{"name":"TPC_E_UNKNOWN_PROPERTY","features":[1]},{"name":"TPC_S_INTERRUPTED","features":[1]},{"name":"TPC_S_NO_DATA_TO_PROCESS","features":[1]},{"name":"TPC_S_TRUNCATED","features":[1]},{"name":"TPMAPI_E_ACCESS_DENIED","features":[1]},{"name":"TPMAPI_E_AUTHORIZATION_FAILED","features":[1]},{"name":"TPMAPI_E_AUTHORIZATION_REVOKED","features":[1]},{"name":"TPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED","features":[1]},{"name":"TPMAPI_E_BUFFER_TOO_SMALL","features":[1]},{"name":"TPMAPI_E_EMPTY_TCG_LOG","features":[1]},{"name":"TPMAPI_E_ENCRYPTION_FAILED","features":[1]},{"name":"TPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL","features":[1]},{"name":"TPMAPI_E_FIPS_RNG_CHECK_FAILED","features":[1]},{"name":"TPMAPI_E_INTERNAL_ERROR","features":[1]},{"name":"TPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE","features":[1]},{"name":"TPMAPI_E_INVALID_CONTEXT_HANDLE","features":[1]},{"name":"TPMAPI_E_INVALID_CONTEXT_PARAMS","features":[1]},{"name":"TPMAPI_E_INVALID_DELEGATE_BLOB","features":[1]},{"name":"TPMAPI_E_INVALID_ENCODING","features":[1]},{"name":"TPMAPI_E_INVALID_KEY_BLOB","features":[1]},{"name":"TPMAPI_E_INVALID_KEY_PARAMS","features":[1]},{"name":"TPMAPI_E_INVALID_KEY_SIZE","features":[1]},{"name":"TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB","features":[1]},{"name":"TPMAPI_E_INVALID_OUTPUT_POINTER","features":[1]},{"name":"TPMAPI_E_INVALID_OWNER_AUTH","features":[1]},{"name":"TPMAPI_E_INVALID_PARAMETER","features":[1]},{"name":"TPMAPI_E_INVALID_PCR_DATA","features":[1]},{"name":"TPMAPI_E_INVALID_PCR_INDEX","features":[1]},{"name":"TPMAPI_E_INVALID_POLICYAUTH_BLOB_TYPE","features":[1]},{"name":"TPMAPI_E_INVALID_STATE","features":[1]},{"name":"TPMAPI_E_INVALID_TCG_LOG_ENTRY","features":[1]},{"name":"TPMAPI_E_INVALID_TPM_VERSION","features":[1]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_KEY","features":[1]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_OTHER","features":[1]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_POLICY","features":[1]},{"name":"TPMAPI_E_MESSAGE_TOO_LARGE","features":[1]},{"name":"TPMAPI_E_NOT_ENOUGH_DATA","features":[1]},{"name":"TPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND","features":[1]},{"name":"TPMAPI_E_NV_BITS_NOT_DEFINED","features":[1]},{"name":"TPMAPI_E_NV_BITS_NOT_READY","features":[1]},{"name":"TPMAPI_E_OUT_OF_MEMORY","features":[1]},{"name":"TPMAPI_E_OWNER_AUTH_NOT_NULL","features":[1]},{"name":"TPMAPI_E_POLICY_DENIES_OPERATION","features":[1]},{"name":"TPMAPI_E_SEALING_KEY_CHANGED","features":[1]},{"name":"TPMAPI_E_SEALING_KEY_NOT_AVAILABLE","features":[1]},{"name":"TPMAPI_E_SVN_COUNTER_NOT_AVAILABLE","features":[1]},{"name":"TPMAPI_E_TBS_COMMUNICATION_ERROR","features":[1]},{"name":"TPMAPI_E_TCG_INVALID_DIGEST_ENTRY","features":[1]},{"name":"TPMAPI_E_TCG_SEPARATOR_ABSENT","features":[1]},{"name":"TPMAPI_E_TOO_MUCH_DATA","features":[1]},{"name":"TPMAPI_E_TPM_COMMAND_ERROR","features":[1]},{"name":"TPM_20_E_ASYMMETRIC","features":[1]},{"name":"TPM_20_E_ATTRIBUTES","features":[1]},{"name":"TPM_20_E_AUTHSIZE","features":[1]},{"name":"TPM_20_E_AUTH_CONTEXT","features":[1]},{"name":"TPM_20_E_AUTH_FAIL","features":[1]},{"name":"TPM_20_E_AUTH_MISSING","features":[1]},{"name":"TPM_20_E_AUTH_TYPE","features":[1]},{"name":"TPM_20_E_AUTH_UNAVAILABLE","features":[1]},{"name":"TPM_20_E_BAD_AUTH","features":[1]},{"name":"TPM_20_E_BAD_CONTEXT","features":[1]},{"name":"TPM_20_E_BINDING","features":[1]},{"name":"TPM_20_E_CANCELED","features":[1]},{"name":"TPM_20_E_COMMAND_CODE","features":[1]},{"name":"TPM_20_E_COMMAND_SIZE","features":[1]},{"name":"TPM_20_E_CONTEXT_GAP","features":[1]},{"name":"TPM_20_E_CPHASH","features":[1]},{"name":"TPM_20_E_CURVE","features":[1]},{"name":"TPM_20_E_DISABLED","features":[1]},{"name":"TPM_20_E_ECC_CURVE","features":[1]},{"name":"TPM_20_E_ECC_POINT","features":[1]},{"name":"TPM_20_E_EXCLUSIVE","features":[1]},{"name":"TPM_20_E_EXPIRED","features":[1]},{"name":"TPM_20_E_FAILURE","features":[1]},{"name":"TPM_20_E_HANDLE","features":[1]},{"name":"TPM_20_E_HASH","features":[1]},{"name":"TPM_20_E_HIERARCHY","features":[1]},{"name":"TPM_20_E_HMAC","features":[1]},{"name":"TPM_20_E_INITIALIZE","features":[1]},{"name":"TPM_20_E_INSUFFICIENT","features":[1]},{"name":"TPM_20_E_INTEGRITY","features":[1]},{"name":"TPM_20_E_KDF","features":[1]},{"name":"TPM_20_E_KEY","features":[1]},{"name":"TPM_20_E_KEY_SIZE","features":[1]},{"name":"TPM_20_E_LOCALITY","features":[1]},{"name":"TPM_20_E_LOCKOUT","features":[1]},{"name":"TPM_20_E_MEMORY","features":[1]},{"name":"TPM_20_E_MGF","features":[1]},{"name":"TPM_20_E_MODE","features":[1]},{"name":"TPM_20_E_NEEDS_TEST","features":[1]},{"name":"TPM_20_E_NONCE","features":[1]},{"name":"TPM_20_E_NO_RESULT","features":[1]},{"name":"TPM_20_E_NV_AUTHORIZATION","features":[1]},{"name":"TPM_20_E_NV_DEFINED","features":[1]},{"name":"TPM_20_E_NV_LOCKED","features":[1]},{"name":"TPM_20_E_NV_RANGE","features":[1]},{"name":"TPM_20_E_NV_RATE","features":[1]},{"name":"TPM_20_E_NV_SIZE","features":[1]},{"name":"TPM_20_E_NV_SPACE","features":[1]},{"name":"TPM_20_E_NV_UNAVAILABLE","features":[1]},{"name":"TPM_20_E_NV_UNINITIALIZED","features":[1]},{"name":"TPM_20_E_OBJECT_HANDLES","features":[1]},{"name":"TPM_20_E_OBJECT_MEMORY","features":[1]},{"name":"TPM_20_E_PARENT","features":[1]},{"name":"TPM_20_E_PCR","features":[1]},{"name":"TPM_20_E_PCR_CHANGED","features":[1]},{"name":"TPM_20_E_POLICY","features":[1]},{"name":"TPM_20_E_POLICY_CC","features":[1]},{"name":"TPM_20_E_POLICY_FAIL","features":[1]},{"name":"TPM_20_E_PP","features":[1]},{"name":"TPM_20_E_PRIVATE","features":[1]},{"name":"TPM_20_E_RANGE","features":[1]},{"name":"TPM_20_E_REBOOT","features":[1]},{"name":"TPM_20_E_RESERVED_BITS","features":[1]},{"name":"TPM_20_E_RETRY","features":[1]},{"name":"TPM_20_E_SCHEME","features":[1]},{"name":"TPM_20_E_SELECTOR","features":[1]},{"name":"TPM_20_E_SENSITIVE","features":[1]},{"name":"TPM_20_E_SEQUENCE","features":[1]},{"name":"TPM_20_E_SESSION_HANDLES","features":[1]},{"name":"TPM_20_E_SESSION_MEMORY","features":[1]},{"name":"TPM_20_E_SIGNATURE","features":[1]},{"name":"TPM_20_E_SIZE","features":[1]},{"name":"TPM_20_E_SYMMETRIC","features":[1]},{"name":"TPM_20_E_TAG","features":[1]},{"name":"TPM_20_E_TESTING","features":[1]},{"name":"TPM_20_E_TICKET","features":[1]},{"name":"TPM_20_E_TOO_MANY_CONTEXTS","features":[1]},{"name":"TPM_20_E_TYPE","features":[1]},{"name":"TPM_20_E_UNBALANCED","features":[1]},{"name":"TPM_20_E_UPGRADE","features":[1]},{"name":"TPM_20_E_VALUE","features":[1]},{"name":"TPM_20_E_YIELDED","features":[1]},{"name":"TPM_E_AREA_LOCKED","features":[1]},{"name":"TPM_E_ATTESTATION_CHALLENGE_NOT_SET","features":[1]},{"name":"TPM_E_AUDITFAILURE","features":[1]},{"name":"TPM_E_AUDITFAIL_SUCCESSFUL","features":[1]},{"name":"TPM_E_AUDITFAIL_UNSUCCESSFUL","features":[1]},{"name":"TPM_E_AUTH2FAIL","features":[1]},{"name":"TPM_E_AUTHFAIL","features":[1]},{"name":"TPM_E_AUTH_CONFLICT","features":[1]},{"name":"TPM_E_BADCONTEXT","features":[1]},{"name":"TPM_E_BADINDEX","features":[1]},{"name":"TPM_E_BADTAG","features":[1]},{"name":"TPM_E_BAD_ATTRIBUTES","features":[1]},{"name":"TPM_E_BAD_COUNTER","features":[1]},{"name":"TPM_E_BAD_DATASIZE","features":[1]},{"name":"TPM_E_BAD_DELEGATE","features":[1]},{"name":"TPM_E_BAD_HANDLE","features":[1]},{"name":"TPM_E_BAD_KEY_PROPERTY","features":[1]},{"name":"TPM_E_BAD_LOCALITY","features":[1]},{"name":"TPM_E_BAD_MIGRATION","features":[1]},{"name":"TPM_E_BAD_MODE","features":[1]},{"name":"TPM_E_BAD_ORDINAL","features":[1]},{"name":"TPM_E_BAD_PARAMETER","features":[1]},{"name":"TPM_E_BAD_PARAM_SIZE","features":[1]},{"name":"TPM_E_BAD_PRESENCE","features":[1]},{"name":"TPM_E_BAD_SCHEME","features":[1]},{"name":"TPM_E_BAD_SIGNATURE","features":[1]},{"name":"TPM_E_BAD_TYPE","features":[1]},{"name":"TPM_E_BAD_VERSION","features":[1]},{"name":"TPM_E_BUFFER_LENGTH_MISMATCH","features":[1]},{"name":"TPM_E_CLAIM_TYPE_NOT_SUPPORTED","features":[1]},{"name":"TPM_E_CLEAR_DISABLED","features":[1]},{"name":"TPM_E_COMMAND_BLOCKED","features":[1]},{"name":"TPM_E_CONTEXT_GAP","features":[1]},{"name":"TPM_E_DAA_INPUT_DATA0","features":[1]},{"name":"TPM_E_DAA_INPUT_DATA1","features":[1]},{"name":"TPM_E_DAA_ISSUER_SETTINGS","features":[1]},{"name":"TPM_E_DAA_ISSUER_VALIDITY","features":[1]},{"name":"TPM_E_DAA_RESOURCES","features":[1]},{"name":"TPM_E_DAA_STAGE","features":[1]},{"name":"TPM_E_DAA_TPM_SETTINGS","features":[1]},{"name":"TPM_E_DAA_WRONG_W","features":[1]},{"name":"TPM_E_DEACTIVATED","features":[1]},{"name":"TPM_E_DECRYPT_ERROR","features":[1]},{"name":"TPM_E_DEFEND_LOCK_RUNNING","features":[1]},{"name":"TPM_E_DELEGATE_ADMIN","features":[1]},{"name":"TPM_E_DELEGATE_FAMILY","features":[1]},{"name":"TPM_E_DELEGATE_LOCK","features":[1]},{"name":"TPM_E_DISABLED","features":[1]},{"name":"TPM_E_DISABLED_CMD","features":[1]},{"name":"TPM_E_DOING_SELFTEST","features":[1]},{"name":"TPM_E_DUPLICATE_VHANDLE","features":[1]},{"name":"TPM_E_EMBEDDED_COMMAND_BLOCKED","features":[1]},{"name":"TPM_E_EMBEDDED_COMMAND_UNSUPPORTED","features":[1]},{"name":"TPM_E_ENCRYPT_ERROR","features":[1]},{"name":"TPM_E_ERROR_MASK","features":[1]},{"name":"TPM_E_FAIL","features":[1]},{"name":"TPM_E_FAILEDSELFTEST","features":[1]},{"name":"TPM_E_FAMILYCOUNT","features":[1]},{"name":"TPM_E_INAPPROPRIATE_ENC","features":[1]},{"name":"TPM_E_INAPPROPRIATE_SIG","features":[1]},{"name":"TPM_E_INSTALL_DISABLED","features":[1]},{"name":"TPM_E_INVALID_AUTHHANDLE","features":[1]},{"name":"TPM_E_INVALID_FAMILY","features":[1]},{"name":"TPM_E_INVALID_HANDLE","features":[1]},{"name":"TPM_E_INVALID_KEYHANDLE","features":[1]},{"name":"TPM_E_INVALID_KEYUSAGE","features":[1]},{"name":"TPM_E_INVALID_OWNER_AUTH","features":[1]},{"name":"TPM_E_INVALID_PCR_INFO","features":[1]},{"name":"TPM_E_INVALID_POSTINIT","features":[1]},{"name":"TPM_E_INVALID_RESOURCE","features":[1]},{"name":"TPM_E_INVALID_STRUCTURE","features":[1]},{"name":"TPM_E_IOERROR","features":[1]},{"name":"TPM_E_KEYNOTFOUND","features":[1]},{"name":"TPM_E_KEY_ALREADY_FINALIZED","features":[1]},{"name":"TPM_E_KEY_NOTSUPPORTED","features":[1]},{"name":"TPM_E_KEY_NOT_AUTHENTICATED","features":[1]},{"name":"TPM_E_KEY_NOT_FINALIZED","features":[1]},{"name":"TPM_E_KEY_NOT_LOADED","features":[1]},{"name":"TPM_E_KEY_NOT_SIGNING_KEY","features":[1]},{"name":"TPM_E_KEY_OWNER_CONTROL","features":[1]},{"name":"TPM_E_KEY_USAGE_POLICY_INVALID","features":[1]},{"name":"TPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[1]},{"name":"TPM_E_LOCKED_OUT","features":[1]},{"name":"TPM_E_MAXNVWRITES","features":[1]},{"name":"TPM_E_MA_AUTHORITY","features":[1]},{"name":"TPM_E_MA_DESTINATION","features":[1]},{"name":"TPM_E_MA_SOURCE","features":[1]},{"name":"TPM_E_MA_TICKET_SIGNATURE","features":[1]},{"name":"TPM_E_MIGRATEFAIL","features":[1]},{"name":"TPM_E_NEEDS_SELFTEST","features":[1]},{"name":"TPM_E_NOCONTEXTSPACE","features":[1]},{"name":"TPM_E_NOOPERATOR","features":[1]},{"name":"TPM_E_NOSPACE","features":[1]},{"name":"TPM_E_NOSRK","features":[1]},{"name":"TPM_E_NOTFIPS","features":[1]},{"name":"TPM_E_NOTLOCAL","features":[1]},{"name":"TPM_E_NOTRESETABLE","features":[1]},{"name":"TPM_E_NOTSEALED_BLOB","features":[1]},{"name":"TPM_E_NOT_FULLWRITE","features":[1]},{"name":"TPM_E_NOT_PCR_BOUND","features":[1]},{"name":"TPM_E_NO_ENDORSEMENT","features":[1]},{"name":"TPM_E_NO_KEY_CERTIFICATION","features":[1]},{"name":"TPM_E_NO_NV_PERMISSION","features":[1]},{"name":"TPM_E_NO_WRAP_TRANSPORT","features":[1]},{"name":"TPM_E_OWNER_CONTROL","features":[1]},{"name":"TPM_E_OWNER_SET","features":[1]},{"name":"TPM_E_PCP_AUTHENTICATION_FAILED","features":[1]},{"name":"TPM_E_PCP_AUTHENTICATION_IGNORED","features":[1]},{"name":"TPM_E_PCP_BUFFER_TOO_SMALL","features":[1]},{"name":"TPM_E_PCP_DEVICE_NOT_READY","features":[1]},{"name":"TPM_E_PCP_ERROR_MASK","features":[1]},{"name":"TPM_E_PCP_FLAG_NOT_SUPPORTED","features":[1]},{"name":"TPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[1]},{"name":"TPM_E_PCP_INTERNAL_ERROR","features":[1]},{"name":"TPM_E_PCP_INVALID_HANDLE","features":[1]},{"name":"TPM_E_PCP_INVALID_PARAMETER","features":[1]},{"name":"TPM_E_PCP_KEY_HANDLE_INVALIDATED","features":[1]},{"name":"TPM_E_PCP_KEY_NOT_AIK","features":[1]},{"name":"TPM_E_PCP_NOT_SUPPORTED","features":[1]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_MAY_BE_OUTDATED","features":[1]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_OUTDATED","features":[1]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_REBOOT","features":[1]},{"name":"TPM_E_PCP_POLICY_NOT_FOUND","features":[1]},{"name":"TPM_E_PCP_PROFILE_NOT_FOUND","features":[1]},{"name":"TPM_E_PCP_RAW_POLICY_NOT_SUPPORTED","features":[1]},{"name":"TPM_E_PCP_TICKET_MISSING","features":[1]},{"name":"TPM_E_PCP_UNSUPPORTED_PSS_SALT","features":[1]},{"name":"TPM_E_PCP_VALIDATION_FAILED","features":[1]},{"name":"TPM_E_PCP_WRONG_PARENT","features":[1]},{"name":"TPM_E_PERMANENTEK","features":[1]},{"name":"TPM_E_PER_NOWRITE","features":[1]},{"name":"TPM_E_PPI_ACPI_FAILURE","features":[1]},{"name":"TPM_E_PPI_BIOS_FAILURE","features":[1]},{"name":"TPM_E_PPI_BLOCKED_IN_BIOS","features":[1]},{"name":"TPM_E_PPI_NOT_SUPPORTED","features":[1]},{"name":"TPM_E_PPI_USER_ABORT","features":[1]},{"name":"TPM_E_PROVISIONING_INCOMPLETE","features":[1]},{"name":"TPM_E_READ_ONLY","features":[1]},{"name":"TPM_E_REQUIRES_SIGN","features":[1]},{"name":"TPM_E_RESOURCEMISSING","features":[1]},{"name":"TPM_E_RESOURCES","features":[1]},{"name":"TPM_E_RETRY","features":[1]},{"name":"TPM_E_SHA_ERROR","features":[1]},{"name":"TPM_E_SHA_THREAD","features":[1]},{"name":"TPM_E_SHORTRANDOM","features":[1]},{"name":"TPM_E_SIZE","features":[1]},{"name":"TPM_E_SOFT_KEY_ERROR","features":[1]},{"name":"TPM_E_TOOMANYCONTEXTS","features":[1]},{"name":"TPM_E_TOO_MUCH_DATA","features":[1]},{"name":"TPM_E_TPM_GENERATED_EPS","features":[1]},{"name":"TPM_E_TRANSPORT_NOTEXCLUSIVE","features":[1]},{"name":"TPM_E_VERSION_NOT_SUPPORTED","features":[1]},{"name":"TPM_E_WRITE_LOCKED","features":[1]},{"name":"TPM_E_WRONGPCRVAL","features":[1]},{"name":"TPM_E_WRONG_ENTITYTYPE","features":[1]},{"name":"TPM_E_ZERO_EXHAUST_ENABLED","features":[1]},{"name":"TRUE","features":[1]},{"name":"TRUST_E_ACTION_UNKNOWN","features":[1]},{"name":"TRUST_E_BAD_DIGEST","features":[1]},{"name":"TRUST_E_BASIC_CONSTRAINTS","features":[1]},{"name":"TRUST_E_CERT_SIGNATURE","features":[1]},{"name":"TRUST_E_COUNTER_SIGNER","features":[1]},{"name":"TRUST_E_EXPLICIT_DISTRUST","features":[1]},{"name":"TRUST_E_FAIL","features":[1]},{"name":"TRUST_E_FINANCIAL_CRITERIA","features":[1]},{"name":"TRUST_E_MALFORMED_SIGNATURE","features":[1]},{"name":"TRUST_E_NOSIGNATURE","features":[1]},{"name":"TRUST_E_NO_SIGNER_CERT","features":[1]},{"name":"TRUST_E_PROVIDER_UNKNOWN","features":[1]},{"name":"TRUST_E_SUBJECT_FORM_UNKNOWN","features":[1]},{"name":"TRUST_E_SUBJECT_NOT_TRUSTED","features":[1]},{"name":"TRUST_E_SYSTEM_ERROR","features":[1]},{"name":"TRUST_E_TIME_STAMP","features":[1]},{"name":"TYPE_E_AMBIGUOUSNAME","features":[1]},{"name":"TYPE_E_BADMODULEKIND","features":[1]},{"name":"TYPE_E_BUFFERTOOSMALL","features":[1]},{"name":"TYPE_E_CANTCREATETMPFILE","features":[1]},{"name":"TYPE_E_CANTLOADLIBRARY","features":[1]},{"name":"TYPE_E_CIRCULARTYPE","features":[1]},{"name":"TYPE_E_DLLFUNCTIONNOTFOUND","features":[1]},{"name":"TYPE_E_DUPLICATEID","features":[1]},{"name":"TYPE_E_ELEMENTNOTFOUND","features":[1]},{"name":"TYPE_E_FIELDNOTFOUND","features":[1]},{"name":"TYPE_E_INCONSISTENTPROPFUNCS","features":[1]},{"name":"TYPE_E_INVALIDID","features":[1]},{"name":"TYPE_E_INVALIDSTATE","features":[1]},{"name":"TYPE_E_INVDATAREAD","features":[1]},{"name":"TYPE_E_IOERROR","features":[1]},{"name":"TYPE_E_LIBNOTREGISTERED","features":[1]},{"name":"TYPE_E_NAMECONFLICT","features":[1]},{"name":"TYPE_E_OUTOFBOUNDS","features":[1]},{"name":"TYPE_E_QUALIFIEDNAMEDISALLOWED","features":[1]},{"name":"TYPE_E_REGISTRYACCESS","features":[1]},{"name":"TYPE_E_SIZETOOBIG","features":[1]},{"name":"TYPE_E_TYPEMISMATCH","features":[1]},{"name":"TYPE_E_UNDEFINEDTYPE","features":[1]},{"name":"TYPE_E_UNKNOWNLCID","features":[1]},{"name":"TYPE_E_UNSUPFORMAT","features":[1]},{"name":"TYPE_E_WRONGTYPEKIND","features":[1]},{"name":"UCEERR_BLOCKSFULL","features":[1]},{"name":"UCEERR_CHANNELSYNCABANDONED","features":[1]},{"name":"UCEERR_CHANNELSYNCTIMEDOUT","features":[1]},{"name":"UCEERR_COMMANDTRANSPORTDENIED","features":[1]},{"name":"UCEERR_CONNECTIONIDLOOKUPFAILED","features":[1]},{"name":"UCEERR_CTXSTACKFRSTTARGETNULL","features":[1]},{"name":"UCEERR_FEEDBACK_UNSUPPORTED","features":[1]},{"name":"UCEERR_GRAPHICSSTREAMALREADYOPEN","features":[1]},{"name":"UCEERR_GRAPHICSSTREAMUNAVAILABLE","features":[1]},{"name":"UCEERR_HANDLELOOKUPFAILED","features":[1]},{"name":"UCEERR_ILLEGALHANDLE","features":[1]},{"name":"UCEERR_ILLEGALPACKET","features":[1]},{"name":"UCEERR_ILLEGALRECORDTYPE","features":[1]},{"name":"UCEERR_INVALIDPACKETHEADER","features":[1]},{"name":"UCEERR_MALFORMEDPACKET","features":[1]},{"name":"UCEERR_MEMORYFAILURE","features":[1]},{"name":"UCEERR_MISSINGBEGINCOMMAND","features":[1]},{"name":"UCEERR_MISSINGENDCOMMAND","features":[1]},{"name":"UCEERR_NO_MULTIPLE_WORKER_THREADS","features":[1]},{"name":"UCEERR_OUTOFHANDLES","features":[1]},{"name":"UCEERR_PACKETRECORDOUTOFRANGE","features":[1]},{"name":"UCEERR_PARTITION_ZOMBIED","features":[1]},{"name":"UCEERR_REMOTINGNOTSUPPORTED","features":[1]},{"name":"UCEERR_RENDERTHREADFAILURE","features":[1]},{"name":"UCEERR_TRANSPORTDISCONNECTED","features":[1]},{"name":"UCEERR_TRANSPORTOVERLOADED","features":[1]},{"name":"UCEERR_TRANSPORTUNAVAILABLE","features":[1]},{"name":"UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED","features":[1]},{"name":"UCEERR_UNKNOWNPACKET","features":[1]},{"name":"UCEERR_UNSUPPORTEDTRANSPORTVERSION","features":[1]},{"name":"UI_E_AMBIGUOUS_MATCH","features":[1]},{"name":"UI_E_BOOLEAN_EXPECTED","features":[1]},{"name":"UI_E_CREATE_FAILED","features":[1]},{"name":"UI_E_DIFFERENT_OWNER","features":[1]},{"name":"UI_E_END_KEYFRAME_NOT_DETERMINED","features":[1]},{"name":"UI_E_FP_OVERFLOW","features":[1]},{"name":"UI_E_ILLEGAL_REENTRANCY","features":[1]},{"name":"UI_E_INVALID_DIMENSION","features":[1]},{"name":"UI_E_INVALID_OUTPUT","features":[1]},{"name":"UI_E_LOOPS_OVERLAP","features":[1]},{"name":"UI_E_OBJECT_SEALED","features":[1]},{"name":"UI_E_PRIMITIVE_OUT_OF_BOUNDS","features":[1]},{"name":"UI_E_SHUTDOWN_CALLED","features":[1]},{"name":"UI_E_START_KEYFRAME_AFTER_END","features":[1]},{"name":"UI_E_STORYBOARD_ACTIVE","features":[1]},{"name":"UI_E_STORYBOARD_NOT_PLAYING","features":[1]},{"name":"UI_E_TIMER_CLIENT_ALREADY_CONNECTED","features":[1]},{"name":"UI_E_TIME_BEFORE_LAST_UPDATE","features":[1]},{"name":"UI_E_TRANSITION_ALREADY_USED","features":[1]},{"name":"UI_E_TRANSITION_ECLIPSED","features":[1]},{"name":"UI_E_TRANSITION_NOT_IN_STORYBOARD","features":[1]},{"name":"UI_E_VALUE_NOT_DETERMINED","features":[1]},{"name":"UI_E_VALUE_NOT_SET","features":[1]},{"name":"UI_E_WINDOW_CLOSED","features":[1]},{"name":"UI_E_WRONG_THREAD","features":[1]},{"name":"UNICODE_STRING","features":[1]},{"name":"UTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION","features":[1]},{"name":"UTC_E_AGENT_DIAGNOSTICS_TOO_LARGE","features":[1]},{"name":"UTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT","features":[1]},{"name":"UTC_E_AOT_NOT_RUNNING","features":[1]},{"name":"UTC_E_API_BUSY","features":[1]},{"name":"UTC_E_API_NOT_SUPPORTED","features":[1]},{"name":"UTC_E_API_RESULT_UNAVAILABLE","features":[1]},{"name":"UTC_E_BINARY_MISSING","features":[1]},{"name":"UTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML","features":[1]},{"name":"UTC_E_CERT_REV_FAILED","features":[1]},{"name":"UTC_E_CHILD_PROCESS_FAILED","features":[1]},{"name":"UTC_E_COMMAND_LINE_NOT_AUTHORIZED","features":[1]},{"name":"UTC_E_DELAY_TERMINATED","features":[1]},{"name":"UTC_E_DEVICE_TICKET_ERROR","features":[1]},{"name":"UTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH","features":[1]},{"name":"UTC_E_ESCALATION_ALREADY_RUNNING","features":[1]},{"name":"UTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN","features":[1]},{"name":"UTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS","features":[1]},{"name":"UTC_E_ESCALATION_NOT_AUTHORIZED","features":[1]},{"name":"UTC_E_ESCALATION_TIMED_OUT","features":[1]},{"name":"UTC_E_EVENTLOG_ENTRY_MALFORMED","features":[1]},{"name":"UTC_E_EXCLUSIVITY_NOT_AVAILABLE","features":[1]},{"name":"UTC_E_EXE_TERMINATED","features":[1]},{"name":"UTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS","features":[1]},{"name":"UTC_E_FAILED_TO_RESOLVE_CONTAINER_ID","features":[1]},{"name":"UTC_E_FAILED_TO_START_NDISCAP","features":[1]},{"name":"UTC_E_FILTER_FUNCTION_RESTRICTED","features":[1]},{"name":"UTC_E_FILTER_ILLEGAL_EVAL","features":[1]},{"name":"UTC_E_FILTER_INVALID_COMMAND","features":[1]},{"name":"UTC_E_FILTER_INVALID_FUNCTION","features":[1]},{"name":"UTC_E_FILTER_INVALID_FUNCTION_PARAMS","features":[1]},{"name":"UTC_E_FILTER_INVALID_TYPE","features":[1]},{"name":"UTC_E_FILTER_MISSING_ATTRIBUTE","features":[1]},{"name":"UTC_E_FILTER_VARIABLE_NOT_FOUND","features":[1]},{"name":"UTC_E_FILTER_VERSION_MISMATCH","features":[1]},{"name":"UTC_E_FORWARDER_ALREADY_DISABLED","features":[1]},{"name":"UTC_E_FORWARDER_ALREADY_ENABLED","features":[1]},{"name":"UTC_E_FORWARDER_PRODUCER_MISMATCH","features":[1]},{"name":"UTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED","features":[1]},{"name":"UTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED","features":[1]},{"name":"UTC_E_GETFILE_FILE_PATH_NOT_APPROVED","features":[1]},{"name":"UTC_E_INSUFFICIENT_SPACE_TO_START_TRACE","features":[1]},{"name":"UTC_E_INTENTIONAL_SCRIPT_FAILURE","features":[1]},{"name":"UTC_E_INVALID_AGGREGATION_STRUCT","features":[1]},{"name":"UTC_E_INVALID_CUSTOM_FILTER","features":[1]},{"name":"UTC_E_INVALID_FILTER","features":[1]},{"name":"UTC_E_KERNELDUMP_LIMIT_REACHED","features":[1]},{"name":"UTC_E_MISSING_AGGREGATE_EVENT_TAG","features":[1]},{"name":"UTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE","features":[1]},{"name":"UTC_E_NO_WER_LOGGER_SUPPORTED","features":[1]},{"name":"UTC_E_PERFTRACK_ALREADY_TRACING","features":[1]},{"name":"UTC_E_REACHED_MAX_ESCALATIONS","features":[1]},{"name":"UTC_E_REESCALATED_TOO_QUICKLY","features":[1]},{"name":"UTC_E_RPC_TIMEOUT","features":[1]},{"name":"UTC_E_RPC_WAIT_FAILED","features":[1]},{"name":"UTC_E_SCENARIODEF_NOT_FOUND","features":[1]},{"name":"UTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH","features":[1]},{"name":"UTC_E_SCENARIO_HAS_NO_ACTIONS","features":[1]},{"name":"UTC_E_SCENARIO_THROTTLED","features":[1]},{"name":"UTC_E_SCRIPT_MISSING","features":[1]},{"name":"UTC_E_SCRIPT_TERMINATED","features":[1]},{"name":"UTC_E_SCRIPT_TYPE_INVALID","features":[1]},{"name":"UTC_E_SETREGKEYACTION_TYPE_NOT_APPROVED","features":[1]},{"name":"UTC_E_SETUP_NOT_AUTHORIZED","features":[1]},{"name":"UTC_E_SETUP_TIMED_OUT","features":[1]},{"name":"UTC_E_SIF_NOT_SUPPORTED","features":[1]},{"name":"UTC_E_SQM_INIT_FAILED","features":[1]},{"name":"UTC_E_THROTTLED","features":[1]},{"name":"UTC_E_TIME_TRIGGER_INVALID_TIME_RANGE","features":[1]},{"name":"UTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION","features":[1]},{"name":"UTC_E_TIME_TRIGGER_ON_START_INVALID","features":[1]},{"name":"UTC_E_TOGGLE_TRACE_STARTED","features":[1]},{"name":"UTC_E_TRACEPROFILE_NOT_FOUND","features":[1]},{"name":"UTC_E_TRACERS_DONT_EXIST","features":[1]},{"name":"UTC_E_TRACE_BUFFER_LIMIT_EXCEEDED","features":[1]},{"name":"UTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET","features":[1]},{"name":"UTC_E_TRACE_NOT_RUNNING","features":[1]},{"name":"UTC_E_TRACE_THROTTLED","features":[1]},{"name":"UTC_E_TRIGGER_MISMATCH","features":[1]},{"name":"UTC_E_TRIGGER_NOT_FOUND","features":[1]},{"name":"UTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED","features":[1]},{"name":"UTC_E_TTTRACER_RETURNED_ERROR","features":[1]},{"name":"UTC_E_TTTRACER_STORAGE_FULL","features":[1]},{"name":"UTC_E_UNABLE_TO_RESOLVE_SESSION","features":[1]},{"name":"UTC_E_UNAPPROVED_SCRIPT","features":[1]},{"name":"UTC_E_WINRT_INIT_FAILED","features":[1]},{"name":"VARIANT_BOOL","features":[1]},{"name":"VARIANT_FALSE","features":[1]},{"name":"VARIANT_TRUE","features":[1]},{"name":"VIEW_E_DRAW","features":[1]},{"name":"VIEW_E_FIRST","features":[1]},{"name":"VIEW_E_LAST","features":[1]},{"name":"VIEW_S_ALREADY_FROZEN","features":[1]},{"name":"VIEW_S_FIRST","features":[1]},{"name":"VIEW_S_LAST","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_GUEST_MEMORY_NOT_FOUND","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_INVALID_VP_STATE","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_NESTED_VIRTUALIZATION_NOT_SUPPORTED","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_NO_VP_FOUND_IN_PARTITION_STATE","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_PARTITION_STATE_NOT_FOUND","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_VA_NOT_MAPPED","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_VP_VTL_NOT_ENABLED","features":[1]},{"name":"VM_SAVED_STATE_DUMP_E_WINDOWS_KERNEL_IMAGE_NOT_FOUND","features":[1]},{"name":"VOLMGR_KSR_BYPASS","features":[1]},{"name":"VOLMGR_KSR_ERROR","features":[1]},{"name":"VOLMGR_KSR_READ_ERROR","features":[1]},{"name":"WAIT_ABANDONED","features":[1]},{"name":"WAIT_ABANDONED_0","features":[1]},{"name":"WAIT_EVENT","features":[1]},{"name":"WAIT_FAILED","features":[1]},{"name":"WAIT_IO_COMPLETION","features":[1]},{"name":"WAIT_OBJECT_0","features":[1]},{"name":"WAIT_TIMEOUT","features":[1]},{"name":"WARNING_IPSEC_MM_POLICY_PRUNED","features":[1]},{"name":"WARNING_IPSEC_QM_POLICY_PRUNED","features":[1]},{"name":"WARNING_NO_MD5_MIGRATION","features":[1]},{"name":"WBREAK_E_BUFFER_TOO_SMALL","features":[1]},{"name":"WBREAK_E_END_OF_TEXT","features":[1]},{"name":"WBREAK_E_INIT_FAILED","features":[1]},{"name":"WBREAK_E_QUERY_ONLY","features":[1]},{"name":"WEB_E_INVALID_JSON_NUMBER","features":[1]},{"name":"WEB_E_INVALID_JSON_STRING","features":[1]},{"name":"WEB_E_INVALID_XML","features":[1]},{"name":"WEB_E_JSON_VALUE_NOT_FOUND","features":[1]},{"name":"WEB_E_MISSING_REQUIRED_ATTRIBUTE","features":[1]},{"name":"WEB_E_MISSING_REQUIRED_ELEMENT","features":[1]},{"name":"WEB_E_RESOURCE_TOO_LARGE","features":[1]},{"name":"WEB_E_UNEXPECTED_CONTENT","features":[1]},{"name":"WEB_E_UNSUPPORTED_FORMAT","features":[1]},{"name":"WEP_E_BUFFER_TOO_LARGE","features":[1]},{"name":"WEP_E_FIXED_DATA_NOT_SUPPORTED","features":[1]},{"name":"WEP_E_HARDWARE_NOT_COMPLIANT","features":[1]},{"name":"WEP_E_LOCK_NOT_CONFIGURED","features":[1]},{"name":"WEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[1]},{"name":"WEP_E_NO_LICENSE","features":[1]},{"name":"WEP_E_OS_NOT_PROTECTED","features":[1]},{"name":"WEP_E_PROTECTION_SUSPENDED","features":[1]},{"name":"WEP_E_UNEXPECTED_FAIL","features":[1]},{"name":"WER_E_ALREADY_REPORTING","features":[1]},{"name":"WER_E_CANCELED","features":[1]},{"name":"WER_E_CRASH_FAILURE","features":[1]},{"name":"WER_E_DUMP_THROTTLED","features":[1]},{"name":"WER_E_INSUFFICIENT_CONSENT","features":[1]},{"name":"WER_E_NETWORK_FAILURE","features":[1]},{"name":"WER_E_NOT_INITIALIZED","features":[1]},{"name":"WER_E_TOO_HEAVY","features":[1]},{"name":"WER_S_ASSERT_CONTINUE","features":[1]},{"name":"WER_S_DISABLED","features":[1]},{"name":"WER_S_DISABLED_ARCHIVE","features":[1]},{"name":"WER_S_DISABLED_QUEUE","features":[1]},{"name":"WER_S_IGNORE_ALL_ASSERTS","features":[1]},{"name":"WER_S_IGNORE_ASSERT_INSTANCE","features":[1]},{"name":"WER_S_REPORT_ASYNC","features":[1]},{"name":"WER_S_REPORT_DEBUG","features":[1]},{"name":"WER_S_REPORT_QUEUED","features":[1]},{"name":"WER_S_REPORT_UPLOADED","features":[1]},{"name":"WER_S_REPORT_UPLOADED_CAB","features":[1]},{"name":"WER_S_SUSPENDED_UPLOAD","features":[1]},{"name":"WER_S_THROTTLED","features":[1]},{"name":"WHV_E_GPA_RANGE_NOT_FOUND","features":[1]},{"name":"WHV_E_INSUFFICIENT_BUFFER","features":[1]},{"name":"WHV_E_INVALID_PARTITION_CONFIG","features":[1]},{"name":"WHV_E_INVALID_VP_REGISTER_NAME","features":[1]},{"name":"WHV_E_INVALID_VP_STATE","features":[1]},{"name":"WHV_E_UNKNOWN_CAPABILITY","features":[1]},{"name":"WHV_E_UNKNOWN_PROPERTY","features":[1]},{"name":"WHV_E_UNSUPPORTED_HYPERVISOR_CONFIG","features":[1]},{"name":"WHV_E_UNSUPPORTED_PROCESSOR_CONFIG","features":[1]},{"name":"WHV_E_VP_ALREADY_EXISTS","features":[1]},{"name":"WHV_E_VP_DOES_NOT_EXIST","features":[1]},{"name":"WIN32_ERROR","features":[1]},{"name":"WINCODEC_ERR_ALREADYLOCKED","features":[1]},{"name":"WINCODEC_ERR_BADHEADER","features":[1]},{"name":"WINCODEC_ERR_BADIMAGE","features":[1]},{"name":"WINCODEC_ERR_BADMETADATAHEADER","features":[1]},{"name":"WINCODEC_ERR_BADSTREAMDATA","features":[1]},{"name":"WINCODEC_ERR_CODECNOTHUMBNAIL","features":[1]},{"name":"WINCODEC_ERR_CODECPRESENT","features":[1]},{"name":"WINCODEC_ERR_CODECTOOMANYSCANLINES","features":[1]},{"name":"WINCODEC_ERR_COMPONENTINITIALIZEFAILURE","features":[1]},{"name":"WINCODEC_ERR_COMPONENTNOTFOUND","features":[1]},{"name":"WINCODEC_ERR_DUPLICATEMETADATAPRESENT","features":[1]},{"name":"WINCODEC_ERR_FRAMEMISSING","features":[1]},{"name":"WINCODEC_ERR_IMAGESIZEOUTOFRANGE","features":[1]},{"name":"WINCODEC_ERR_INSUFFICIENTBUFFER","features":[1]},{"name":"WINCODEC_ERR_INTERNALERROR","features":[1]},{"name":"WINCODEC_ERR_INVALIDJPEGSCANINDEX","features":[1]},{"name":"WINCODEC_ERR_INVALIDPROGRESSIVELEVEL","features":[1]},{"name":"WINCODEC_ERR_INVALIDQUERYCHARACTER","features":[1]},{"name":"WINCODEC_ERR_INVALIDQUERYREQUEST","features":[1]},{"name":"WINCODEC_ERR_INVALIDREGISTRATION","features":[1]},{"name":"WINCODEC_ERR_NOTINITIALIZED","features":[1]},{"name":"WINCODEC_ERR_PALETTEUNAVAILABLE","features":[1]},{"name":"WINCODEC_ERR_PROPERTYNOTFOUND","features":[1]},{"name":"WINCODEC_ERR_PROPERTYNOTSUPPORTED","features":[1]},{"name":"WINCODEC_ERR_PROPERTYSIZE","features":[1]},{"name":"WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE","features":[1]},{"name":"WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT","features":[1]},{"name":"WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS","features":[1]},{"name":"WINCODEC_ERR_STREAMNOTAVAILABLE","features":[1]},{"name":"WINCODEC_ERR_STREAMREAD","features":[1]},{"name":"WINCODEC_ERR_STREAMWRITE","features":[1]},{"name":"WINCODEC_ERR_TOOMUCHMETADATA","features":[1]},{"name":"WINCODEC_ERR_UNEXPECTEDMETADATATYPE","features":[1]},{"name":"WINCODEC_ERR_UNEXPECTEDSIZE","features":[1]},{"name":"WINCODEC_ERR_UNKNOWNIMAGEFORMAT","features":[1]},{"name":"WINCODEC_ERR_UNSUPPORTEDOPERATION","features":[1]},{"name":"WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT","features":[1]},{"name":"WINCODEC_ERR_UNSUPPORTEDVERSION","features":[1]},{"name":"WINCODEC_ERR_VALUEOUTOFRANGE","features":[1]},{"name":"WINCODEC_ERR_WIN32ERROR","features":[1]},{"name":"WINCODEC_ERR_WRONGSTATE","features":[1]},{"name":"WININET_E_ASYNC_THREAD_FAILED","features":[1]},{"name":"WININET_E_BAD_AUTO_PROXY_SCRIPT","features":[1]},{"name":"WININET_E_BAD_OPTION_LENGTH","features":[1]},{"name":"WININET_E_BAD_REGISTRY_PARAMETER","features":[1]},{"name":"WININET_E_CANNOT_CONNECT","features":[1]},{"name":"WININET_E_CHG_POST_IS_NON_SECURE","features":[1]},{"name":"WININET_E_CLIENT_AUTH_CERT_NEEDED","features":[1]},{"name":"WININET_E_CLIENT_AUTH_NOT_SETUP","features":[1]},{"name":"WININET_E_CONNECTION_ABORTED","features":[1]},{"name":"WININET_E_CONNECTION_RESET","features":[1]},{"name":"WININET_E_COOKIE_DECLINED","features":[1]},{"name":"WININET_E_COOKIE_NEEDS_CONFIRMATION","features":[1]},{"name":"WININET_E_DECODING_FAILED","features":[1]},{"name":"WININET_E_DIALOG_PENDING","features":[1]},{"name":"WININET_E_DISCONNECTED","features":[1]},{"name":"WININET_E_DOWNLEVEL_SERVER","features":[1]},{"name":"WININET_E_EXTENDED_ERROR","features":[1]},{"name":"WININET_E_FAILED_DUETOSECURITYCHECK","features":[1]},{"name":"WININET_E_FORCE_RETRY","features":[1]},{"name":"WININET_E_HANDLE_EXISTS","features":[1]},{"name":"WININET_E_HEADER_ALREADY_EXISTS","features":[1]},{"name":"WININET_E_HEADER_NOT_FOUND","features":[1]},{"name":"WININET_E_HTTPS_HTTP_SUBMIT_REDIR","features":[1]},{"name":"WININET_E_HTTPS_TO_HTTP_ON_REDIR","features":[1]},{"name":"WININET_E_HTTP_TO_HTTPS_ON_REDIR","features":[1]},{"name":"WININET_E_INCORRECT_FORMAT","features":[1]},{"name":"WININET_E_INCORRECT_HANDLE_STATE","features":[1]},{"name":"WININET_E_INCORRECT_HANDLE_TYPE","features":[1]},{"name":"WININET_E_INCORRECT_PASSWORD","features":[1]},{"name":"WININET_E_INCORRECT_USER_NAME","features":[1]},{"name":"WININET_E_INTERNAL_ERROR","features":[1]},{"name":"WININET_E_INVALID_CA","features":[1]},{"name":"WININET_E_INVALID_HEADER","features":[1]},{"name":"WININET_E_INVALID_OPERATION","features":[1]},{"name":"WININET_E_INVALID_OPTION","features":[1]},{"name":"WININET_E_INVALID_PROXY_REQUEST","features":[1]},{"name":"WININET_E_INVALID_QUERY_REQUEST","features":[1]},{"name":"WININET_E_INVALID_SERVER_RESPONSE","features":[1]},{"name":"WININET_E_INVALID_URL","features":[1]},{"name":"WININET_E_ITEM_NOT_FOUND","features":[1]},{"name":"WININET_E_LOGIN_FAILURE","features":[1]},{"name":"WININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[1]},{"name":"WININET_E_MIXED_SECURITY","features":[1]},{"name":"WININET_E_NAME_NOT_RESOLVED","features":[1]},{"name":"WININET_E_NEED_UI","features":[1]},{"name":"WININET_E_NOT_INITIALIZED","features":[1]},{"name":"WININET_E_NOT_PROXY_REQUEST","features":[1]},{"name":"WININET_E_NOT_REDIRECTED","features":[1]},{"name":"WININET_E_NO_CALLBACK","features":[1]},{"name":"WININET_E_NO_CONTEXT","features":[1]},{"name":"WININET_E_NO_DIRECT_ACCESS","features":[1]},{"name":"WININET_E_NO_NEW_CONTAINERS","features":[1]},{"name":"WININET_E_OPERATION_CANCELLED","features":[1]},{"name":"WININET_E_OPTION_NOT_SETTABLE","features":[1]},{"name":"WININET_E_OUT_OF_HANDLES","features":[1]},{"name":"WININET_E_POST_IS_NON_SECURE","features":[1]},{"name":"WININET_E_PROTOCOL_NOT_FOUND","features":[1]},{"name":"WININET_E_PROXY_SERVER_UNREACHABLE","features":[1]},{"name":"WININET_E_REDIRECT_FAILED","features":[1]},{"name":"WININET_E_REDIRECT_NEEDS_CONFIRMATION","features":[1]},{"name":"WININET_E_REDIRECT_SCHEME_CHANGE","features":[1]},{"name":"WININET_E_REGISTRY_VALUE_NOT_FOUND","features":[1]},{"name":"WININET_E_REQUEST_PENDING","features":[1]},{"name":"WININET_E_RETRY_DIALOG","features":[1]},{"name":"WININET_E_SECURITY_CHANNEL_ERROR","features":[1]},{"name":"WININET_E_SEC_CERT_CN_INVALID","features":[1]},{"name":"WININET_E_SEC_CERT_DATE_INVALID","features":[1]},{"name":"WININET_E_SEC_CERT_ERRORS","features":[1]},{"name":"WININET_E_SEC_CERT_REVOKED","features":[1]},{"name":"WININET_E_SEC_CERT_REV_FAILED","features":[1]},{"name":"WININET_E_SEC_INVALID_CERT","features":[1]},{"name":"WININET_E_SERVER_UNREACHABLE","features":[1]},{"name":"WININET_E_SHUTDOWN","features":[1]},{"name":"WININET_E_TCPIP_NOT_INSTALLED","features":[1]},{"name":"WININET_E_TIMEOUT","features":[1]},{"name":"WININET_E_UNABLE_TO_CACHE_FILE","features":[1]},{"name":"WININET_E_UNABLE_TO_DOWNLOAD_SCRIPT","features":[1]},{"name":"WININET_E_UNRECOGNIZED_SCHEME","features":[1]},{"name":"WINML_ERR_INVALID_BINDING","features":[1]},{"name":"WINML_ERR_INVALID_DEVICE","features":[1]},{"name":"WINML_ERR_SIZE_MISMATCH","features":[1]},{"name":"WINML_ERR_VALUE_NOTFOUND","features":[1]},{"name":"WINVER","features":[1]},{"name":"WINVER_MAXVER","features":[1]},{"name":"WPARAM","features":[1]},{"name":"WPN_E_ACCESS_DENIED","features":[1]},{"name":"WPN_E_ALL_URL_NOT_COMPLETED","features":[1]},{"name":"WPN_E_CALLBACK_ALREADY_REGISTERED","features":[1]},{"name":"WPN_E_CHANNEL_CLOSED","features":[1]},{"name":"WPN_E_CHANNEL_REQUEST_NOT_COMPLETE","features":[1]},{"name":"WPN_E_CLOUD_AUTH_UNAVAILABLE","features":[1]},{"name":"WPN_E_CLOUD_DISABLED","features":[1]},{"name":"WPN_E_CLOUD_DISABLED_FOR_APP","features":[1]},{"name":"WPN_E_CLOUD_INCAPABLE","features":[1]},{"name":"WPN_E_CLOUD_SERVICE_UNAVAILABLE","features":[1]},{"name":"WPN_E_DEV_ID_SIZE","features":[1]},{"name":"WPN_E_DUPLICATE_CHANNEL","features":[1]},{"name":"WPN_E_DUPLICATE_REGISTRATION","features":[1]},{"name":"WPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION","features":[1]},{"name":"WPN_E_GROUP_ALPHANUMERIC","features":[1]},{"name":"WPN_E_GROUP_SIZE","features":[1]},{"name":"WPN_E_IMAGE_NOT_FOUND_IN_CACHE","features":[1]},{"name":"WPN_E_INTERNET_INCAPABLE","features":[1]},{"name":"WPN_E_INVALID_APP","features":[1]},{"name":"WPN_E_INVALID_CLOUD_IMAGE","features":[1]},{"name":"WPN_E_INVALID_HTTP_STATUS_CODE","features":[1]},{"name":"WPN_E_NOTIFICATION_DISABLED","features":[1]},{"name":"WPN_E_NOTIFICATION_HIDDEN","features":[1]},{"name":"WPN_E_NOTIFICATION_ID_MATCHED","features":[1]},{"name":"WPN_E_NOTIFICATION_INCAPABLE","features":[1]},{"name":"WPN_E_NOTIFICATION_NOT_POSTED","features":[1]},{"name":"WPN_E_NOTIFICATION_POSTED","features":[1]},{"name":"WPN_E_NOTIFICATION_SIZE","features":[1]},{"name":"WPN_E_NOTIFICATION_TYPE_DISABLED","features":[1]},{"name":"WPN_E_OUTSTANDING_CHANNEL_REQUEST","features":[1]},{"name":"WPN_E_OUT_OF_SESSION","features":[1]},{"name":"WPN_E_PLATFORM_UNAVAILABLE","features":[1]},{"name":"WPN_E_POWER_SAVE","features":[1]},{"name":"WPN_E_PUSH_NOTIFICATION_INCAPABLE","features":[1]},{"name":"WPN_E_STORAGE_LOCKED","features":[1]},{"name":"WPN_E_TAG_ALPHANUMERIC","features":[1]},{"name":"WPN_E_TAG_SIZE","features":[1]},{"name":"WPN_E_TOAST_NOTIFICATION_DROPPED","features":[1]},{"name":"WS_E_ADDRESS_IN_USE","features":[1]},{"name":"WS_E_ADDRESS_NOT_AVAILABLE","features":[1]},{"name":"WS_E_ENDPOINT_ACCESS_DENIED","features":[1]},{"name":"WS_E_ENDPOINT_ACTION_NOT_SUPPORTED","features":[1]},{"name":"WS_E_ENDPOINT_DISCONNECTED","features":[1]},{"name":"WS_E_ENDPOINT_FAILURE","features":[1]},{"name":"WS_E_ENDPOINT_FAULT_RECEIVED","features":[1]},{"name":"WS_E_ENDPOINT_NOT_AVAILABLE","features":[1]},{"name":"WS_E_ENDPOINT_NOT_FOUND","features":[1]},{"name":"WS_E_ENDPOINT_TOO_BUSY","features":[1]},{"name":"WS_E_ENDPOINT_UNREACHABLE","features":[1]},{"name":"WS_E_INVALID_ENDPOINT_URL","features":[1]},{"name":"WS_E_INVALID_FORMAT","features":[1]},{"name":"WS_E_INVALID_OPERATION","features":[1]},{"name":"WS_E_NOT_SUPPORTED","features":[1]},{"name":"WS_E_NO_TRANSLATION_AVAILABLE","features":[1]},{"name":"WS_E_NUMERIC_OVERFLOW","features":[1]},{"name":"WS_E_OBJECT_FAULTED","features":[1]},{"name":"WS_E_OPERATION_ABANDONED","features":[1]},{"name":"WS_E_OPERATION_ABORTED","features":[1]},{"name":"WS_E_OPERATION_TIMED_OUT","features":[1]},{"name":"WS_E_OTHER","features":[1]},{"name":"WS_E_PROXY_ACCESS_DENIED","features":[1]},{"name":"WS_E_PROXY_FAILURE","features":[1]},{"name":"WS_E_PROXY_REQUIRES_BASIC_AUTH","features":[1]},{"name":"WS_E_PROXY_REQUIRES_DIGEST_AUTH","features":[1]},{"name":"WS_E_PROXY_REQUIRES_NEGOTIATE_AUTH","features":[1]},{"name":"WS_E_PROXY_REQUIRES_NTLM_AUTH","features":[1]},{"name":"WS_E_QUOTA_EXCEEDED","features":[1]},{"name":"WS_E_SECURITY_SYSTEM_FAILURE","features":[1]},{"name":"WS_E_SECURITY_TOKEN_EXPIRED","features":[1]},{"name":"WS_E_SECURITY_VERIFICATION_FAILURE","features":[1]},{"name":"WS_E_SERVER_REQUIRES_BASIC_AUTH","features":[1]},{"name":"WS_E_SERVER_REQUIRES_DIGEST_AUTH","features":[1]},{"name":"WS_E_SERVER_REQUIRES_NEGOTIATE_AUTH","features":[1]},{"name":"WS_E_SERVER_REQUIRES_NTLM_AUTH","features":[1]},{"name":"WS_S_ASYNC","features":[1]},{"name":"WS_S_END","features":[1]},{"name":"XACT_E_ABORTED","features":[1]},{"name":"XACT_E_ABORTING","features":[1]},{"name":"XACT_E_ALREADYINPROGRESS","features":[1]},{"name":"XACT_E_ALREADYOTHERSINGLEPHASE","features":[1]},{"name":"XACT_E_CANTRETAIN","features":[1]},{"name":"XACT_E_CLERKEXISTS","features":[1]},{"name":"XACT_E_CLERKNOTFOUND","features":[1]},{"name":"XACT_E_COMMITFAILED","features":[1]},{"name":"XACT_E_COMMITPREVENTED","features":[1]},{"name":"XACT_E_CONNECTION_DENIED","features":[1]},{"name":"XACT_E_CONNECTION_DOWN","features":[1]},{"name":"XACT_E_DEST_TMNOTAVAILABLE","features":[1]},{"name":"XACT_E_FIRST","features":[1]},{"name":"XACT_E_HEURISTICABORT","features":[1]},{"name":"XACT_E_HEURISTICCOMMIT","features":[1]},{"name":"XACT_E_HEURISTICDAMAGE","features":[1]},{"name":"XACT_E_HEURISTICDANGER","features":[1]},{"name":"XACT_E_INDOUBT","features":[1]},{"name":"XACT_E_INVALIDCOOKIE","features":[1]},{"name":"XACT_E_INVALIDLSN","features":[1]},{"name":"XACT_E_ISOLATIONLEVEL","features":[1]},{"name":"XACT_E_LAST","features":[1]},{"name":"XACT_E_LOGFULL","features":[1]},{"name":"XACT_E_LU_TX_DISABLED","features":[1]},{"name":"XACT_E_NETWORK_TX_DISABLED","features":[1]},{"name":"XACT_E_NOASYNC","features":[1]},{"name":"XACT_E_NOENLIST","features":[1]},{"name":"XACT_E_NOIMPORTOBJECT","features":[1]},{"name":"XACT_E_NOISORETAIN","features":[1]},{"name":"XACT_E_NORESOURCE","features":[1]},{"name":"XACT_E_NOTCURRENT","features":[1]},{"name":"XACT_E_NOTIMEOUT","features":[1]},{"name":"XACT_E_NOTRANSACTION","features":[1]},{"name":"XACT_E_NOTSUPPORTED","features":[1]},{"name":"XACT_E_PARTNER_NETWORK_TX_DISABLED","features":[1]},{"name":"XACT_E_PULL_COMM_FAILURE","features":[1]},{"name":"XACT_E_PUSH_COMM_FAILURE","features":[1]},{"name":"XACT_E_RECOVERYINPROGRESS","features":[1]},{"name":"XACT_E_REENLISTTIMEOUT","features":[1]},{"name":"XACT_E_REPLAYREQUEST","features":[1]},{"name":"XACT_E_TIP_CONNECT_FAILED","features":[1]},{"name":"XACT_E_TIP_DISABLED","features":[1]},{"name":"XACT_E_TIP_PROTOCOL_ERROR","features":[1]},{"name":"XACT_E_TIP_PULL_FAILED","features":[1]},{"name":"XACT_E_TMNOTAVAILABLE","features":[1]},{"name":"XACT_E_TRANSACTIONCLOSED","features":[1]},{"name":"XACT_E_UNABLE_TO_LOAD_DTC_PROXY","features":[1]},{"name":"XACT_E_UNABLE_TO_READ_DTC_CONFIG","features":[1]},{"name":"XACT_E_UNKNOWNRMGRID","features":[1]},{"name":"XACT_E_WRONGSTATE","features":[1]},{"name":"XACT_E_WRONGUOW","features":[1]},{"name":"XACT_E_XA_TX_DISABLED","features":[1]},{"name":"XACT_E_XTIONEXISTS","features":[1]},{"name":"XACT_S_ABORTING","features":[1]},{"name":"XACT_S_ALLNORETAIN","features":[1]},{"name":"XACT_S_ASYNC","features":[1]},{"name":"XACT_S_DEFECT","features":[1]},{"name":"XACT_S_FIRST","features":[1]},{"name":"XACT_S_LAST","features":[1]},{"name":"XACT_S_LASTRESOURCEMANAGER","features":[1]},{"name":"XACT_S_LOCALLY_OK","features":[1]},{"name":"XACT_S_MADECHANGESCONTENT","features":[1]},{"name":"XACT_S_MADECHANGESINFORM","features":[1]},{"name":"XACT_S_OKINFORM","features":[1]},{"name":"XACT_S_READONLY","features":[1]},{"name":"XACT_S_SINGLEPHASE","features":[1]},{"name":"XACT_S_SOMENORETAIN","features":[1]},{"name":"XENROLL_E_CANNOT_ADD_ROOT_CERT","features":[1]},{"name":"XENROLL_E_KEYSPEC_SMIME_MISMATCH","features":[1]},{"name":"XENROLL_E_KEY_NOT_EXPORTABLE","features":[1]},{"name":"XENROLL_E_RESPONSE_KA_HASH_MISMATCH","features":[1]},{"name":"XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND","features":[1]},{"name":"XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH","features":[1]},{"name":"_WIN32_IE_MAXVER","features":[1]},{"name":"_WIN32_MAXVER","features":[1]},{"name":"_WIN32_WINDOWS_MAXVER","features":[1]},{"name":"_WIN32_WINNT_MAXVER","features":[1]}],"391":[{"name":"CheckGamingPrivilegeSilently","features":[1,69]},{"name":"CheckGamingPrivilegeSilentlyForUser","features":[1,69]},{"name":"CheckGamingPrivilegeWithUI","features":[69]},{"name":"CheckGamingPrivilegeWithUIForUser","features":[69]},{"name":"GAMESTATS_OPEN_CREATED","features":[69]},{"name":"GAMESTATS_OPEN_OPENED","features":[69]},{"name":"GAMESTATS_OPEN_OPENONLY","features":[69]},{"name":"GAMESTATS_OPEN_OPENORCREATE","features":[69]},{"name":"GAMESTATS_OPEN_RESULT","features":[69]},{"name":"GAMESTATS_OPEN_TYPE","features":[69]},{"name":"GAME_INSTALL_SCOPE","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_NONE","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_S","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X_DEVKIT","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_S","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X","features":[69]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X_DEVKIT","features":[69]},{"name":"GAMING_DEVICE_MODEL_INFORMATION","features":[69]},{"name":"GAMING_DEVICE_VENDOR_ID","features":[69]},{"name":"GAMING_DEVICE_VENDOR_ID_MICROSOFT","features":[69]},{"name":"GAMING_DEVICE_VENDOR_ID_NONE","features":[69]},{"name":"GIS_ALL_USERS","features":[69]},{"name":"GIS_CURRENT_USER","features":[69]},{"name":"GIS_NOT_INSTALLED","features":[69]},{"name":"GameExplorer","features":[69]},{"name":"GameStatistics","features":[69]},{"name":"GameUICompletionRoutine","features":[69]},{"name":"GetExpandedResourceExclusiveCpuCount","features":[69]},{"name":"GetGamingDeviceModelInformation","features":[69]},{"name":"HasExpandedResources","features":[1,69]},{"name":"ID_GDF_THUMBNAIL_STR","features":[69]},{"name":"ID_GDF_XML_STR","features":[69]},{"name":"IGameExplorer","features":[69]},{"name":"IGameExplorer2","features":[69]},{"name":"IGameStatistics","features":[69]},{"name":"IGameStatisticsMgr","features":[69]},{"name":"IXblIdpAuthManager","features":[69]},{"name":"IXblIdpAuthManager2","features":[69]},{"name":"IXblIdpAuthTokenResult","features":[69]},{"name":"IXblIdpAuthTokenResult2","features":[69]},{"name":"KnownGamingPrivileges","features":[69]},{"name":"PlayerPickerUICompletionRoutine","features":[69]},{"name":"ProcessPendingGameUI","features":[1,69]},{"name":"ReleaseExclusiveCpuSets","features":[69]},{"name":"ShowChangeFriendRelationshipUI","features":[69]},{"name":"ShowChangeFriendRelationshipUIForUser","features":[69]},{"name":"ShowCustomizeUserProfileUI","features":[69]},{"name":"ShowCustomizeUserProfileUIForUser","features":[69]},{"name":"ShowFindFriendsUI","features":[69]},{"name":"ShowFindFriendsUIForUser","features":[69]},{"name":"ShowGameInfoUI","features":[69]},{"name":"ShowGameInfoUIForUser","features":[69]},{"name":"ShowGameInviteUI","features":[69]},{"name":"ShowGameInviteUIForUser","features":[69]},{"name":"ShowGameInviteUIWithContext","features":[69]},{"name":"ShowGameInviteUIWithContextForUser","features":[69]},{"name":"ShowPlayerPickerUI","features":[69]},{"name":"ShowPlayerPickerUIForUser","features":[69]},{"name":"ShowProfileCardUI","features":[69]},{"name":"ShowProfileCardUIForUser","features":[69]},{"name":"ShowTitleAchievementsUI","features":[69]},{"name":"ShowTitleAchievementsUIForUser","features":[69]},{"name":"ShowUserSettingsUI","features":[69]},{"name":"ShowUserSettingsUIForUser","features":[69]},{"name":"TryCancelPendingGameUI","features":[1,69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_LOAD_MSA_ACCOUNT_FAILED","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_MSA_INTERRUPT","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_NO_ACCOUNT_SET","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_NO_CONSENT","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_SUCCESS","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_SUCCESS","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_UNKNOWN","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_VIEW_NOT_SET","features":[69]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_XBOX_VETO","features":[69]},{"name":"XPRIVILEGE_ADD_FRIEND","features":[69]},{"name":"XPRIVILEGE_BROADCAST","features":[69]},{"name":"XPRIVILEGE_CLOUD_GAMING_JOIN_SESSION","features":[69]},{"name":"XPRIVILEGE_CLOUD_GAMING_MANAGE_SESSION","features":[69]},{"name":"XPRIVILEGE_CLOUD_SAVED_GAMES","features":[69]},{"name":"XPRIVILEGE_COMMUNICATIONS","features":[69]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_INGAME","features":[69]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_SKYPE","features":[69]},{"name":"XPRIVILEGE_GAME_DVR","features":[69]},{"name":"XPRIVILEGE_MULTIPLAYER_PARTIES","features":[69]},{"name":"XPRIVILEGE_MULTIPLAYER_SESSIONS","features":[69]},{"name":"XPRIVILEGE_PREMIUM_CONTENT","features":[69]},{"name":"XPRIVILEGE_PREMIUM_VIDEO","features":[69]},{"name":"XPRIVILEGE_PROFILE_VIEWING","features":[69]},{"name":"XPRIVILEGE_PURCHASE_CONTENT","features":[69]},{"name":"XPRIVILEGE_SHARE_CONTENT","features":[69]},{"name":"XPRIVILEGE_SHARE_KINECT_CONTENT","features":[69]},{"name":"XPRIVILEGE_SOCIAL_NETWORK_SHARING","features":[69]},{"name":"XPRIVILEGE_SUBSCRIPTION_CONTENT","features":[69]},{"name":"XPRIVILEGE_USER_CREATED_CONTENT","features":[69]},{"name":"XPRIVILEGE_VIDEO_COMMUNICATIONS","features":[69]},{"name":"XPRIVILEGE_VIEW_FRIENDS_LIST","features":[69]},{"name":"XblIdpAuthManager","features":[69]},{"name":"XblIdpAuthTokenResult","features":[69]}],"392":[{"name":"ALL_SERVICES","features":[70]},{"name":"ALL_SERVICE_TYPES","features":[70]},{"name":"AdjustCalendarDate","features":[1,70]},{"name":"C1_ALPHA","features":[70]},{"name":"C1_BLANK","features":[70]},{"name":"C1_CNTRL","features":[70]},{"name":"C1_DEFINED","features":[70]},{"name":"C1_DIGIT","features":[70]},{"name":"C1_LOWER","features":[70]},{"name":"C1_PUNCT","features":[70]},{"name":"C1_SPACE","features":[70]},{"name":"C1_UPPER","features":[70]},{"name":"C1_XDIGIT","features":[70]},{"name":"C2_ARABICNUMBER","features":[70]},{"name":"C2_BLOCKSEPARATOR","features":[70]},{"name":"C2_COMMONSEPARATOR","features":[70]},{"name":"C2_EUROPENUMBER","features":[70]},{"name":"C2_EUROPESEPARATOR","features":[70]},{"name":"C2_EUROPETERMINATOR","features":[70]},{"name":"C2_LEFTTORIGHT","features":[70]},{"name":"C2_NOTAPPLICABLE","features":[70]},{"name":"C2_OTHERNEUTRAL","features":[70]},{"name":"C2_RIGHTTOLEFT","features":[70]},{"name":"C2_SEGMENTSEPARATOR","features":[70]},{"name":"C2_WHITESPACE","features":[70]},{"name":"C3_ALPHA","features":[70]},{"name":"C3_DIACRITIC","features":[70]},{"name":"C3_FULLWIDTH","features":[70]},{"name":"C3_HALFWIDTH","features":[70]},{"name":"C3_HIGHSURROGATE","features":[70]},{"name":"C3_HIRAGANA","features":[70]},{"name":"C3_IDEOGRAPH","features":[70]},{"name":"C3_KASHIDA","features":[70]},{"name":"C3_KATAKANA","features":[70]},{"name":"C3_LEXICAL","features":[70]},{"name":"C3_LOWSURROGATE","features":[70]},{"name":"C3_NONSPACING","features":[70]},{"name":"C3_NOTAPPLICABLE","features":[70]},{"name":"C3_SYMBOL","features":[70]},{"name":"C3_VOWELMARK","features":[70]},{"name":"CALDATETIME","features":[70]},{"name":"CALDATETIME_DATEUNIT","features":[70]},{"name":"CALINFO_ENUMPROCA","features":[1,70]},{"name":"CALINFO_ENUMPROCEXA","features":[1,70]},{"name":"CALINFO_ENUMPROCEXEX","features":[1,70]},{"name":"CALINFO_ENUMPROCEXW","features":[1,70]},{"name":"CALINFO_ENUMPROCW","features":[1,70]},{"name":"CAL_GREGORIAN","features":[70]},{"name":"CAL_GREGORIAN_ARABIC","features":[70]},{"name":"CAL_GREGORIAN_ME_FRENCH","features":[70]},{"name":"CAL_GREGORIAN_US","features":[70]},{"name":"CAL_GREGORIAN_XLIT_ENGLISH","features":[70]},{"name":"CAL_GREGORIAN_XLIT_FRENCH","features":[70]},{"name":"CAL_HEBREW","features":[70]},{"name":"CAL_HIJRI","features":[70]},{"name":"CAL_ICALINTVALUE","features":[70]},{"name":"CAL_ITWODIGITYEARMAX","features":[70]},{"name":"CAL_IYEAROFFSETRANGE","features":[70]},{"name":"CAL_JAPAN","features":[70]},{"name":"CAL_KOREA","features":[70]},{"name":"CAL_NOUSEROVERRIDE","features":[70]},{"name":"CAL_PERSIAN","features":[70]},{"name":"CAL_RETURN_GENITIVE_NAMES","features":[70]},{"name":"CAL_RETURN_NUMBER","features":[70]},{"name":"CAL_SABBREVDAYNAME1","features":[70]},{"name":"CAL_SABBREVDAYNAME2","features":[70]},{"name":"CAL_SABBREVDAYNAME3","features":[70]},{"name":"CAL_SABBREVDAYNAME4","features":[70]},{"name":"CAL_SABBREVDAYNAME5","features":[70]},{"name":"CAL_SABBREVDAYNAME6","features":[70]},{"name":"CAL_SABBREVDAYNAME7","features":[70]},{"name":"CAL_SABBREVERASTRING","features":[70]},{"name":"CAL_SABBREVMONTHNAME1","features":[70]},{"name":"CAL_SABBREVMONTHNAME10","features":[70]},{"name":"CAL_SABBREVMONTHNAME11","features":[70]},{"name":"CAL_SABBREVMONTHNAME12","features":[70]},{"name":"CAL_SABBREVMONTHNAME13","features":[70]},{"name":"CAL_SABBREVMONTHNAME2","features":[70]},{"name":"CAL_SABBREVMONTHNAME3","features":[70]},{"name":"CAL_SABBREVMONTHNAME4","features":[70]},{"name":"CAL_SABBREVMONTHNAME5","features":[70]},{"name":"CAL_SABBREVMONTHNAME6","features":[70]},{"name":"CAL_SABBREVMONTHNAME7","features":[70]},{"name":"CAL_SABBREVMONTHNAME8","features":[70]},{"name":"CAL_SABBREVMONTHNAME9","features":[70]},{"name":"CAL_SCALNAME","features":[70]},{"name":"CAL_SDAYNAME1","features":[70]},{"name":"CAL_SDAYNAME2","features":[70]},{"name":"CAL_SDAYNAME3","features":[70]},{"name":"CAL_SDAYNAME4","features":[70]},{"name":"CAL_SDAYNAME5","features":[70]},{"name":"CAL_SDAYNAME6","features":[70]},{"name":"CAL_SDAYNAME7","features":[70]},{"name":"CAL_SENGLISHABBREVERANAME","features":[70]},{"name":"CAL_SENGLISHERANAME","features":[70]},{"name":"CAL_SERASTRING","features":[70]},{"name":"CAL_SJAPANESEERAFIRSTYEAR","features":[70]},{"name":"CAL_SLONGDATE","features":[70]},{"name":"CAL_SMONTHDAY","features":[70]},{"name":"CAL_SMONTHNAME1","features":[70]},{"name":"CAL_SMONTHNAME10","features":[70]},{"name":"CAL_SMONTHNAME11","features":[70]},{"name":"CAL_SMONTHNAME12","features":[70]},{"name":"CAL_SMONTHNAME13","features":[70]},{"name":"CAL_SMONTHNAME2","features":[70]},{"name":"CAL_SMONTHNAME3","features":[70]},{"name":"CAL_SMONTHNAME4","features":[70]},{"name":"CAL_SMONTHNAME5","features":[70]},{"name":"CAL_SMONTHNAME6","features":[70]},{"name":"CAL_SMONTHNAME7","features":[70]},{"name":"CAL_SMONTHNAME8","features":[70]},{"name":"CAL_SMONTHNAME9","features":[70]},{"name":"CAL_SRELATIVELONGDATE","features":[70]},{"name":"CAL_SSHORTDATE","features":[70]},{"name":"CAL_SSHORTESTDAYNAME1","features":[70]},{"name":"CAL_SSHORTESTDAYNAME2","features":[70]},{"name":"CAL_SSHORTESTDAYNAME3","features":[70]},{"name":"CAL_SSHORTESTDAYNAME4","features":[70]},{"name":"CAL_SSHORTESTDAYNAME5","features":[70]},{"name":"CAL_SSHORTESTDAYNAME6","features":[70]},{"name":"CAL_SSHORTESTDAYNAME7","features":[70]},{"name":"CAL_SYEARMONTH","features":[70]},{"name":"CAL_TAIWAN","features":[70]},{"name":"CAL_THAI","features":[70]},{"name":"CAL_UMALQURA","features":[70]},{"name":"CAL_USE_CP_ACP","features":[70]},{"name":"CANITER_SKIP_ZEROES","features":[70]},{"name":"CHARSETINFO","features":[70]},{"name":"CMLangConvertCharset","features":[70]},{"name":"CMLangString","features":[70]},{"name":"CMultiLanguage","features":[70]},{"name":"CODEPAGE_ENUMPROCA","features":[1,70]},{"name":"CODEPAGE_ENUMPROCW","features":[1,70]},{"name":"COMPARESTRING_RESULT","features":[70]},{"name":"COMPARE_STRING","features":[70]},{"name":"COMPARE_STRING_FLAGS","features":[70]},{"name":"CORRECTIVE_ACTION","features":[70]},{"name":"CORRECTIVE_ACTION_DELETE","features":[70]},{"name":"CORRECTIVE_ACTION_GET_SUGGESTIONS","features":[70]},{"name":"CORRECTIVE_ACTION_NONE","features":[70]},{"name":"CORRECTIVE_ACTION_REPLACE","features":[70]},{"name":"CPINFO","features":[70]},{"name":"CPINFOEXA","features":[70]},{"name":"CPINFOEXW","features":[70]},{"name":"CPIOD_FORCE_PROMPT","features":[70]},{"name":"CPIOD_PEEK","features":[70]},{"name":"CP_ACP","features":[70]},{"name":"CP_INSTALLED","features":[70]},{"name":"CP_MACCP","features":[70]},{"name":"CP_OEMCP","features":[70]},{"name":"CP_SUPPORTED","features":[70]},{"name":"CP_SYMBOL","features":[70]},{"name":"CP_THREAD_ACP","features":[70]},{"name":"CP_UTF7","features":[70]},{"name":"CP_UTF8","features":[70]},{"name":"CSTR_EQUAL","features":[70]},{"name":"CSTR_GREATER_THAN","features":[70]},{"name":"CSTR_LESS_THAN","features":[70]},{"name":"CTRY_ALBANIA","features":[70]},{"name":"CTRY_ALGERIA","features":[70]},{"name":"CTRY_ARGENTINA","features":[70]},{"name":"CTRY_ARMENIA","features":[70]},{"name":"CTRY_AUSTRALIA","features":[70]},{"name":"CTRY_AUSTRIA","features":[70]},{"name":"CTRY_AZERBAIJAN","features":[70]},{"name":"CTRY_BAHRAIN","features":[70]},{"name":"CTRY_BELARUS","features":[70]},{"name":"CTRY_BELGIUM","features":[70]},{"name":"CTRY_BELIZE","features":[70]},{"name":"CTRY_BOLIVIA","features":[70]},{"name":"CTRY_BRAZIL","features":[70]},{"name":"CTRY_BRUNEI_DARUSSALAM","features":[70]},{"name":"CTRY_BULGARIA","features":[70]},{"name":"CTRY_CANADA","features":[70]},{"name":"CTRY_CARIBBEAN","features":[70]},{"name":"CTRY_CHILE","features":[70]},{"name":"CTRY_COLOMBIA","features":[70]},{"name":"CTRY_COSTA_RICA","features":[70]},{"name":"CTRY_CROATIA","features":[70]},{"name":"CTRY_CZECH","features":[70]},{"name":"CTRY_DEFAULT","features":[70]},{"name":"CTRY_DENMARK","features":[70]},{"name":"CTRY_DOMINICAN_REPUBLIC","features":[70]},{"name":"CTRY_ECUADOR","features":[70]},{"name":"CTRY_EGYPT","features":[70]},{"name":"CTRY_EL_SALVADOR","features":[70]},{"name":"CTRY_ESTONIA","features":[70]},{"name":"CTRY_FAEROE_ISLANDS","features":[70]},{"name":"CTRY_FINLAND","features":[70]},{"name":"CTRY_FRANCE","features":[70]},{"name":"CTRY_GEORGIA","features":[70]},{"name":"CTRY_GERMANY","features":[70]},{"name":"CTRY_GREECE","features":[70]},{"name":"CTRY_GUATEMALA","features":[70]},{"name":"CTRY_HONDURAS","features":[70]},{"name":"CTRY_HONG_KONG","features":[70]},{"name":"CTRY_HUNGARY","features":[70]},{"name":"CTRY_ICELAND","features":[70]},{"name":"CTRY_INDIA","features":[70]},{"name":"CTRY_INDONESIA","features":[70]},{"name":"CTRY_IRAN","features":[70]},{"name":"CTRY_IRAQ","features":[70]},{"name":"CTRY_IRELAND","features":[70]},{"name":"CTRY_ISRAEL","features":[70]},{"name":"CTRY_ITALY","features":[70]},{"name":"CTRY_JAMAICA","features":[70]},{"name":"CTRY_JAPAN","features":[70]},{"name":"CTRY_JORDAN","features":[70]},{"name":"CTRY_KAZAKSTAN","features":[70]},{"name":"CTRY_KENYA","features":[70]},{"name":"CTRY_KUWAIT","features":[70]},{"name":"CTRY_KYRGYZSTAN","features":[70]},{"name":"CTRY_LATVIA","features":[70]},{"name":"CTRY_LEBANON","features":[70]},{"name":"CTRY_LIBYA","features":[70]},{"name":"CTRY_LIECHTENSTEIN","features":[70]},{"name":"CTRY_LITHUANIA","features":[70]},{"name":"CTRY_LUXEMBOURG","features":[70]},{"name":"CTRY_MACAU","features":[70]},{"name":"CTRY_MACEDONIA","features":[70]},{"name":"CTRY_MALAYSIA","features":[70]},{"name":"CTRY_MALDIVES","features":[70]},{"name":"CTRY_MEXICO","features":[70]},{"name":"CTRY_MONACO","features":[70]},{"name":"CTRY_MONGOLIA","features":[70]},{"name":"CTRY_MOROCCO","features":[70]},{"name":"CTRY_NETHERLANDS","features":[70]},{"name":"CTRY_NEW_ZEALAND","features":[70]},{"name":"CTRY_NICARAGUA","features":[70]},{"name":"CTRY_NORWAY","features":[70]},{"name":"CTRY_OMAN","features":[70]},{"name":"CTRY_PAKISTAN","features":[70]},{"name":"CTRY_PANAMA","features":[70]},{"name":"CTRY_PARAGUAY","features":[70]},{"name":"CTRY_PERU","features":[70]},{"name":"CTRY_PHILIPPINES","features":[70]},{"name":"CTRY_POLAND","features":[70]},{"name":"CTRY_PORTUGAL","features":[70]},{"name":"CTRY_PRCHINA","features":[70]},{"name":"CTRY_PUERTO_RICO","features":[70]},{"name":"CTRY_QATAR","features":[70]},{"name":"CTRY_ROMANIA","features":[70]},{"name":"CTRY_RUSSIA","features":[70]},{"name":"CTRY_SAUDI_ARABIA","features":[70]},{"name":"CTRY_SERBIA","features":[70]},{"name":"CTRY_SINGAPORE","features":[70]},{"name":"CTRY_SLOVAK","features":[70]},{"name":"CTRY_SLOVENIA","features":[70]},{"name":"CTRY_SOUTH_AFRICA","features":[70]},{"name":"CTRY_SOUTH_KOREA","features":[70]},{"name":"CTRY_SPAIN","features":[70]},{"name":"CTRY_SWEDEN","features":[70]},{"name":"CTRY_SWITZERLAND","features":[70]},{"name":"CTRY_SYRIA","features":[70]},{"name":"CTRY_TAIWAN","features":[70]},{"name":"CTRY_TATARSTAN","features":[70]},{"name":"CTRY_THAILAND","features":[70]},{"name":"CTRY_TRINIDAD_Y_TOBAGO","features":[70]},{"name":"CTRY_TUNISIA","features":[70]},{"name":"CTRY_TURKEY","features":[70]},{"name":"CTRY_UAE","features":[70]},{"name":"CTRY_UKRAINE","features":[70]},{"name":"CTRY_UNITED_KINGDOM","features":[70]},{"name":"CTRY_UNITED_STATES","features":[70]},{"name":"CTRY_URUGUAY","features":[70]},{"name":"CTRY_UZBEKISTAN","features":[70]},{"name":"CTRY_VENEZUELA","features":[70]},{"name":"CTRY_VIET_NAM","features":[70]},{"name":"CTRY_YEMEN","features":[70]},{"name":"CTRY_ZIMBABWE","features":[70]},{"name":"CT_CTYPE1","features":[70]},{"name":"CT_CTYPE2","features":[70]},{"name":"CT_CTYPE3","features":[70]},{"name":"CURRENCYFMTA","features":[70]},{"name":"CURRENCYFMTW","features":[70]},{"name":"CompareStringA","features":[70]},{"name":"CompareStringEx","features":[1,70]},{"name":"CompareStringOrdinal","features":[1,70]},{"name":"CompareStringW","features":[70]},{"name":"ConvertCalDateTimeToSystemTime","features":[1,70]},{"name":"ConvertDefaultLocale","features":[70]},{"name":"ConvertSystemTimeToCalDateTime","features":[1,70]},{"name":"DATEFMT_ENUMPROCA","features":[1,70]},{"name":"DATEFMT_ENUMPROCEXA","features":[1,70]},{"name":"DATEFMT_ENUMPROCEXEX","features":[1,70]},{"name":"DATEFMT_ENUMPROCEXW","features":[1,70]},{"name":"DATEFMT_ENUMPROCW","features":[1,70]},{"name":"DATE_AUTOLAYOUT","features":[70]},{"name":"DATE_LONGDATE","features":[70]},{"name":"DATE_LTRREADING","features":[70]},{"name":"DATE_MONTHDAY","features":[70]},{"name":"DATE_RTLREADING","features":[70]},{"name":"DATE_SHORTDATE","features":[70]},{"name":"DATE_USE_ALT_CALENDAR","features":[70]},{"name":"DATE_YEARMONTH","features":[70]},{"name":"DayUnit","features":[70]},{"name":"DetectEncodingInfo","features":[70]},{"name":"ELS_GUID_LANGUAGE_DETECTION","features":[70]},{"name":"ELS_GUID_SCRIPT_DETECTION","features":[70]},{"name":"ELS_GUID_TRANSLITERATION_BENGALI_TO_LATIN","features":[70]},{"name":"ELS_GUID_TRANSLITERATION_CYRILLIC_TO_LATIN","features":[70]},{"name":"ELS_GUID_TRANSLITERATION_DEVANAGARI_TO_LATIN","features":[70]},{"name":"ELS_GUID_TRANSLITERATION_HANGUL_DECOMPOSITION","features":[70]},{"name":"ELS_GUID_TRANSLITERATION_HANS_TO_HANT","features":[70]},{"name":"ELS_GUID_TRANSLITERATION_HANT_TO_HANS","features":[70]},{"name":"ELS_GUID_TRANSLITERATION_MALAYALAM_TO_LATIN","features":[70]},{"name":"ENUMTEXTMETRICA","features":[70,12]},{"name":"ENUMTEXTMETRICW","features":[70,12]},{"name":"ENUM_ALL_CALENDARS","features":[70]},{"name":"ENUM_DATE_FORMATS_FLAGS","features":[70]},{"name":"ENUM_SYSTEM_CODE_PAGES_FLAGS","features":[70]},{"name":"ENUM_SYSTEM_LANGUAGE_GROUPS_FLAGS","features":[70]},{"name":"EnumCalendarInfoA","features":[1,70]},{"name":"EnumCalendarInfoExA","features":[1,70]},{"name":"EnumCalendarInfoExEx","features":[1,70]},{"name":"EnumCalendarInfoExW","features":[1,70]},{"name":"EnumCalendarInfoW","features":[1,70]},{"name":"EnumDateFormatsA","features":[1,70]},{"name":"EnumDateFormatsExA","features":[1,70]},{"name":"EnumDateFormatsExEx","features":[1,70]},{"name":"EnumDateFormatsExW","features":[1,70]},{"name":"EnumDateFormatsW","features":[1,70]},{"name":"EnumLanguageGroupLocalesA","features":[1,70]},{"name":"EnumLanguageGroupLocalesW","features":[1,70]},{"name":"EnumSystemCodePagesA","features":[1,70]},{"name":"EnumSystemCodePagesW","features":[1,70]},{"name":"EnumSystemGeoID","features":[1,70]},{"name":"EnumSystemGeoNames","features":[1,70]},{"name":"EnumSystemLanguageGroupsA","features":[1,70]},{"name":"EnumSystemLanguageGroupsW","features":[1,70]},{"name":"EnumSystemLocalesA","features":[1,70]},{"name":"EnumSystemLocalesEx","features":[1,70]},{"name":"EnumSystemLocalesW","features":[1,70]},{"name":"EnumTimeFormatsA","features":[1,70]},{"name":"EnumTimeFormatsEx","features":[1,70]},{"name":"EnumTimeFormatsW","features":[1,70]},{"name":"EnumUILanguagesA","features":[1,70]},{"name":"EnumUILanguagesW","features":[1,70]},{"name":"EraUnit","features":[70]},{"name":"FILEMUIINFO","features":[70]},{"name":"FIND_ENDSWITH","features":[70]},{"name":"FIND_FROMEND","features":[70]},{"name":"FIND_FROMSTART","features":[70]},{"name":"FIND_STARTSWITH","features":[70]},{"name":"FOLD_STRING_MAP_FLAGS","features":[70]},{"name":"FONTSIGNATURE","features":[70]},{"name":"FindNLSString","features":[70]},{"name":"FindNLSStringEx","features":[1,70]},{"name":"FindStringOrdinal","features":[1,70]},{"name":"FoldStringA","features":[70]},{"name":"FoldStringW","features":[70]},{"name":"GEOCLASS_ALL","features":[70]},{"name":"GEOCLASS_NATION","features":[70]},{"name":"GEOCLASS_REGION","features":[70]},{"name":"GEOID_NOT_AVAILABLE","features":[70]},{"name":"GEO_CURRENCYCODE","features":[70]},{"name":"GEO_CURRENCYSYMBOL","features":[70]},{"name":"GEO_DIALINGCODE","features":[70]},{"name":"GEO_ENUMNAMEPROC","features":[1,70]},{"name":"GEO_ENUMPROC","features":[1,70]},{"name":"GEO_FRIENDLYNAME","features":[70]},{"name":"GEO_ID","features":[70]},{"name":"GEO_ISO2","features":[70]},{"name":"GEO_ISO3","features":[70]},{"name":"GEO_ISO_UN_NUMBER","features":[70]},{"name":"GEO_LATITUDE","features":[70]},{"name":"GEO_LCID","features":[70]},{"name":"GEO_LONGITUDE","features":[70]},{"name":"GEO_NAME","features":[70]},{"name":"GEO_NATION","features":[70]},{"name":"GEO_OFFICIALLANGUAGES","features":[70]},{"name":"GEO_OFFICIALNAME","features":[70]},{"name":"GEO_PARENT","features":[70]},{"name":"GEO_RFC1766","features":[70]},{"name":"GEO_TIMEZONES","features":[70]},{"name":"GOFFSET","features":[70]},{"name":"GSS_ALLOW_INHERITED_COMMON","features":[70]},{"name":"GetACP","features":[70]},{"name":"GetCPInfo","features":[1,70]},{"name":"GetCPInfoExA","features":[1,70]},{"name":"GetCPInfoExW","features":[1,70]},{"name":"GetCalendarDateFormatEx","features":[1,70]},{"name":"GetCalendarInfoA","features":[70]},{"name":"GetCalendarInfoEx","features":[70]},{"name":"GetCalendarInfoW","features":[70]},{"name":"GetCalendarSupportedDateRange","features":[1,70]},{"name":"GetCurrencyFormatA","features":[70]},{"name":"GetCurrencyFormatEx","features":[70]},{"name":"GetCurrencyFormatW","features":[70]},{"name":"GetDateFormatA","features":[1,70]},{"name":"GetDateFormatEx","features":[1,70]},{"name":"GetDateFormatW","features":[1,70]},{"name":"GetDistanceOfClosestLanguageInList","features":[70]},{"name":"GetDurationFormat","features":[1,70]},{"name":"GetDurationFormatEx","features":[1,70]},{"name":"GetFileMUIInfo","features":[1,70]},{"name":"GetFileMUIPath","features":[1,70]},{"name":"GetGeoInfoA","features":[70]},{"name":"GetGeoInfoEx","features":[70]},{"name":"GetGeoInfoW","features":[70]},{"name":"GetLocaleInfoA","features":[70]},{"name":"GetLocaleInfoEx","features":[70]},{"name":"GetLocaleInfoW","features":[70]},{"name":"GetNLSVersion","features":[1,70]},{"name":"GetNLSVersionEx","features":[1,70]},{"name":"GetNumberFormatA","features":[70]},{"name":"GetNumberFormatEx","features":[70]},{"name":"GetNumberFormatW","features":[70]},{"name":"GetOEMCP","features":[70]},{"name":"GetProcessPreferredUILanguages","features":[1,70]},{"name":"GetStringScripts","features":[70]},{"name":"GetStringTypeA","features":[1,70]},{"name":"GetStringTypeExA","features":[1,70]},{"name":"GetStringTypeExW","features":[1,70]},{"name":"GetStringTypeW","features":[1,70]},{"name":"GetSystemDefaultLCID","features":[70]},{"name":"GetSystemDefaultLangID","features":[70]},{"name":"GetSystemDefaultLocaleName","features":[70]},{"name":"GetSystemDefaultUILanguage","features":[70]},{"name":"GetSystemPreferredUILanguages","features":[1,70]},{"name":"GetTextCharset","features":[70,12]},{"name":"GetTextCharsetInfo","features":[70,12]},{"name":"GetThreadLocale","features":[70]},{"name":"GetThreadPreferredUILanguages","features":[1,70]},{"name":"GetThreadUILanguage","features":[70]},{"name":"GetTimeFormatA","features":[1,70]},{"name":"GetTimeFormatEx","features":[1,70]},{"name":"GetTimeFormatW","features":[1,70]},{"name":"GetUILanguageInfo","features":[1,70]},{"name":"GetUserDefaultGeoName","features":[70]},{"name":"GetUserDefaultLCID","features":[70]},{"name":"GetUserDefaultLangID","features":[70]},{"name":"GetUserDefaultLocaleName","features":[70]},{"name":"GetUserDefaultUILanguage","features":[70]},{"name":"GetUserGeoID","features":[70]},{"name":"GetUserPreferredUILanguages","features":[1,70]},{"name":"HIGHLEVEL_SERVICE_TYPES","features":[70]},{"name":"HIGH_SURROGATE_END","features":[70]},{"name":"HIGH_SURROGATE_START","features":[70]},{"name":"HIMC","features":[70]},{"name":"HIMCC","features":[70]},{"name":"HSAVEDUILANGUAGES","features":[70]},{"name":"HourUnit","features":[70]},{"name":"IComprehensiveSpellCheckProvider","features":[70]},{"name":"IDN_ALLOW_UNASSIGNED","features":[70]},{"name":"IDN_EMAIL_ADDRESS","features":[70]},{"name":"IDN_RAW_PUNYCODE","features":[70]},{"name":"IDN_USE_STD3_ASCII_RULES","features":[70]},{"name":"IEnumCodePage","features":[70]},{"name":"IEnumRfc1766","features":[70]},{"name":"IEnumScript","features":[70]},{"name":"IEnumSpellingError","features":[70]},{"name":"IMLangCodePages","features":[70]},{"name":"IMLangConvertCharset","features":[70]},{"name":"IMLangFontLink","features":[70]},{"name":"IMLangFontLink2","features":[70]},{"name":"IMLangLineBreakConsole","features":[70]},{"name":"IMLangString","features":[70]},{"name":"IMLangStringAStr","features":[70]},{"name":"IMLangStringBufA","features":[70]},{"name":"IMLangStringBufW","features":[70]},{"name":"IMLangStringWStr","features":[70]},{"name":"IMultiLanguage","features":[70]},{"name":"IMultiLanguage2","features":[70]},{"name":"IMultiLanguage3","features":[70]},{"name":"IOptionDescription","features":[70]},{"name":"IS_TEXT_UNICODE_ASCII16","features":[70]},{"name":"IS_TEXT_UNICODE_CONTROLS","features":[70]},{"name":"IS_TEXT_UNICODE_ILLEGAL_CHARS","features":[70]},{"name":"IS_TEXT_UNICODE_NOT_ASCII_MASK","features":[70]},{"name":"IS_TEXT_UNICODE_NOT_UNICODE_MASK","features":[70]},{"name":"IS_TEXT_UNICODE_NULL_BYTES","features":[70]},{"name":"IS_TEXT_UNICODE_ODD_LENGTH","features":[70]},{"name":"IS_TEXT_UNICODE_RESULT","features":[70]},{"name":"IS_TEXT_UNICODE_REVERSE_ASCII16","features":[70]},{"name":"IS_TEXT_UNICODE_REVERSE_CONTROLS","features":[70]},{"name":"IS_TEXT_UNICODE_REVERSE_MASK","features":[70]},{"name":"IS_TEXT_UNICODE_REVERSE_SIGNATURE","features":[70]},{"name":"IS_TEXT_UNICODE_REVERSE_STATISTICS","features":[70]},{"name":"IS_TEXT_UNICODE_SIGNATURE","features":[70]},{"name":"IS_TEXT_UNICODE_STATISTICS","features":[70]},{"name":"IS_TEXT_UNICODE_UNICODE_MASK","features":[70]},{"name":"IS_VALID_LOCALE_FLAGS","features":[70]},{"name":"ISpellCheckProvider","features":[70]},{"name":"ISpellCheckProviderFactory","features":[70]},{"name":"ISpellChecker","features":[70]},{"name":"ISpellChecker2","features":[70]},{"name":"ISpellCheckerChangedEventHandler","features":[70]},{"name":"ISpellCheckerFactory","features":[70]},{"name":"ISpellingError","features":[70]},{"name":"IUserDictionariesRegistrar","features":[70]},{"name":"IdnToAscii","features":[70]},{"name":"IdnToNameprepUnicode","features":[70]},{"name":"IdnToUnicode","features":[70]},{"name":"IsCalendarLeapYear","features":[1,70]},{"name":"IsDBCSLeadByte","features":[1,70]},{"name":"IsDBCSLeadByteEx","features":[1,70]},{"name":"IsNLSDefinedString","features":[1,70]},{"name":"IsNormalizedString","features":[1,70]},{"name":"IsTextUnicode","features":[1,70]},{"name":"IsValidCodePage","features":[1,70]},{"name":"IsValidLanguageGroup","features":[1,70]},{"name":"IsValidLocale","features":[1,70]},{"name":"IsValidLocaleName","features":[1,70]},{"name":"IsValidNLSVersion","features":[70]},{"name":"IsWellFormedTag","features":[70]},{"name":"LANGGROUPLOCALE_ENUMPROCA","features":[1,70]},{"name":"LANGGROUPLOCALE_ENUMPROCW","features":[1,70]},{"name":"LANGUAGEGROUP_ENUMPROCA","features":[1,70]},{"name":"LANGUAGEGROUP_ENUMPROCW","features":[1,70]},{"name":"LCIDToLocaleName","features":[70]},{"name":"LCID_ALTERNATE_SORTS","features":[70]},{"name":"LCID_INSTALLED","features":[70]},{"name":"LCID_SUPPORTED","features":[70]},{"name":"LCMAP_BYTEREV","features":[70]},{"name":"LCMAP_FULLWIDTH","features":[70]},{"name":"LCMAP_HALFWIDTH","features":[70]},{"name":"LCMAP_HASH","features":[70]},{"name":"LCMAP_HIRAGANA","features":[70]},{"name":"LCMAP_KATAKANA","features":[70]},{"name":"LCMAP_LINGUISTIC_CASING","features":[70]},{"name":"LCMAP_LOWERCASE","features":[70]},{"name":"LCMAP_SIMPLIFIED_CHINESE","features":[70]},{"name":"LCMAP_SORTHANDLE","features":[70]},{"name":"LCMAP_SORTKEY","features":[70]},{"name":"LCMAP_TITLECASE","features":[70]},{"name":"LCMAP_TRADITIONAL_CHINESE","features":[70]},{"name":"LCMAP_UPPERCASE","features":[70]},{"name":"LCMapStringA","features":[70]},{"name":"LCMapStringEx","features":[1,70]},{"name":"LCMapStringW","features":[70]},{"name":"LGRPID_ARABIC","features":[70]},{"name":"LGRPID_ARMENIAN","features":[70]},{"name":"LGRPID_BALTIC","features":[70]},{"name":"LGRPID_CENTRAL_EUROPE","features":[70]},{"name":"LGRPID_CYRILLIC","features":[70]},{"name":"LGRPID_GEORGIAN","features":[70]},{"name":"LGRPID_GREEK","features":[70]},{"name":"LGRPID_HEBREW","features":[70]},{"name":"LGRPID_INDIC","features":[70]},{"name":"LGRPID_INSTALLED","features":[70]},{"name":"LGRPID_JAPANESE","features":[70]},{"name":"LGRPID_KOREAN","features":[70]},{"name":"LGRPID_SIMPLIFIED_CHINESE","features":[70]},{"name":"LGRPID_SUPPORTED","features":[70]},{"name":"LGRPID_THAI","features":[70]},{"name":"LGRPID_TRADITIONAL_CHINESE","features":[70]},{"name":"LGRPID_TURKIC","features":[70]},{"name":"LGRPID_TURKISH","features":[70]},{"name":"LGRPID_VIETNAMESE","features":[70]},{"name":"LGRPID_WESTERN_EUROPE","features":[70]},{"name":"LINGUISTIC_IGNORECASE","features":[70]},{"name":"LINGUISTIC_IGNOREDIACRITIC","features":[70]},{"name":"LOCALESIGNATURE","features":[70]},{"name":"LOCALE_ALL","features":[70]},{"name":"LOCALE_ALLOW_NEUTRAL_NAMES","features":[70]},{"name":"LOCALE_ALTERNATE_SORTS","features":[70]},{"name":"LOCALE_ENUMPROCA","features":[1,70]},{"name":"LOCALE_ENUMPROCEX","features":[1,70]},{"name":"LOCALE_ENUMPROCW","features":[1,70]},{"name":"LOCALE_FONTSIGNATURE","features":[70]},{"name":"LOCALE_ICALENDARTYPE","features":[70]},{"name":"LOCALE_ICENTURY","features":[70]},{"name":"LOCALE_ICONSTRUCTEDLOCALE","features":[70]},{"name":"LOCALE_ICOUNTRY","features":[70]},{"name":"LOCALE_ICURRDIGITS","features":[70]},{"name":"LOCALE_ICURRENCY","features":[70]},{"name":"LOCALE_IDATE","features":[70]},{"name":"LOCALE_IDAYLZERO","features":[70]},{"name":"LOCALE_IDEFAULTANSICODEPAGE","features":[70]},{"name":"LOCALE_IDEFAULTCODEPAGE","features":[70]},{"name":"LOCALE_IDEFAULTCOUNTRY","features":[70]},{"name":"LOCALE_IDEFAULTEBCDICCODEPAGE","features":[70]},{"name":"LOCALE_IDEFAULTLANGUAGE","features":[70]},{"name":"LOCALE_IDEFAULTMACCODEPAGE","features":[70]},{"name":"LOCALE_IDIALINGCODE","features":[70]},{"name":"LOCALE_IDIGITS","features":[70]},{"name":"LOCALE_IDIGITSUBSTITUTION","features":[70]},{"name":"LOCALE_IFIRSTDAYOFWEEK","features":[70]},{"name":"LOCALE_IFIRSTWEEKOFYEAR","features":[70]},{"name":"LOCALE_IGEOID","features":[70]},{"name":"LOCALE_IINTLCURRDIGITS","features":[70]},{"name":"LOCALE_ILANGUAGE","features":[70]},{"name":"LOCALE_ILDATE","features":[70]},{"name":"LOCALE_ILZERO","features":[70]},{"name":"LOCALE_IMEASURE","features":[70]},{"name":"LOCALE_IMONLZERO","features":[70]},{"name":"LOCALE_INEGATIVEPERCENT","features":[70]},{"name":"LOCALE_INEGCURR","features":[70]},{"name":"LOCALE_INEGNUMBER","features":[70]},{"name":"LOCALE_INEGSEPBYSPACE","features":[70]},{"name":"LOCALE_INEGSIGNPOSN","features":[70]},{"name":"LOCALE_INEGSYMPRECEDES","features":[70]},{"name":"LOCALE_INEUTRAL","features":[70]},{"name":"LOCALE_IOPTIONALCALENDAR","features":[70]},{"name":"LOCALE_IPAPERSIZE","features":[70]},{"name":"LOCALE_IPOSITIVEPERCENT","features":[70]},{"name":"LOCALE_IPOSSEPBYSPACE","features":[70]},{"name":"LOCALE_IPOSSIGNPOSN","features":[70]},{"name":"LOCALE_IPOSSYMPRECEDES","features":[70]},{"name":"LOCALE_IREADINGLAYOUT","features":[70]},{"name":"LOCALE_ITIME","features":[70]},{"name":"LOCALE_ITIMEMARKPOSN","features":[70]},{"name":"LOCALE_ITLZERO","features":[70]},{"name":"LOCALE_IUSEUTF8LEGACYACP","features":[70]},{"name":"LOCALE_IUSEUTF8LEGACYOEMCP","features":[70]},{"name":"LOCALE_NAME_INVARIANT","features":[70]},{"name":"LOCALE_NAME_SYSTEM_DEFAULT","features":[70]},{"name":"LOCALE_NEUTRALDATA","features":[70]},{"name":"LOCALE_NOUSEROVERRIDE","features":[70]},{"name":"LOCALE_REPLACEMENT","features":[70]},{"name":"LOCALE_RETURN_GENITIVE_NAMES","features":[70]},{"name":"LOCALE_RETURN_NUMBER","features":[70]},{"name":"LOCALE_S1159","features":[70]},{"name":"LOCALE_S2359","features":[70]},{"name":"LOCALE_SABBREVCTRYNAME","features":[70]},{"name":"LOCALE_SABBREVDAYNAME1","features":[70]},{"name":"LOCALE_SABBREVDAYNAME2","features":[70]},{"name":"LOCALE_SABBREVDAYNAME3","features":[70]},{"name":"LOCALE_SABBREVDAYNAME4","features":[70]},{"name":"LOCALE_SABBREVDAYNAME5","features":[70]},{"name":"LOCALE_SABBREVDAYNAME6","features":[70]},{"name":"LOCALE_SABBREVDAYNAME7","features":[70]},{"name":"LOCALE_SABBREVLANGNAME","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME1","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME10","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME11","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME12","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME13","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME2","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME3","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME4","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME5","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME6","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME7","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME8","features":[70]},{"name":"LOCALE_SABBREVMONTHNAME9","features":[70]},{"name":"LOCALE_SAM","features":[70]},{"name":"LOCALE_SCONSOLEFALLBACKNAME","features":[70]},{"name":"LOCALE_SCOUNTRY","features":[70]},{"name":"LOCALE_SCURRENCY","features":[70]},{"name":"LOCALE_SDATE","features":[70]},{"name":"LOCALE_SDAYNAME1","features":[70]},{"name":"LOCALE_SDAYNAME2","features":[70]},{"name":"LOCALE_SDAYNAME3","features":[70]},{"name":"LOCALE_SDAYNAME4","features":[70]},{"name":"LOCALE_SDAYNAME5","features":[70]},{"name":"LOCALE_SDAYNAME6","features":[70]},{"name":"LOCALE_SDAYNAME7","features":[70]},{"name":"LOCALE_SDECIMAL","features":[70]},{"name":"LOCALE_SDURATION","features":[70]},{"name":"LOCALE_SENGCOUNTRY","features":[70]},{"name":"LOCALE_SENGCURRNAME","features":[70]},{"name":"LOCALE_SENGLANGUAGE","features":[70]},{"name":"LOCALE_SENGLISHCOUNTRYNAME","features":[70]},{"name":"LOCALE_SENGLISHDISPLAYNAME","features":[70]},{"name":"LOCALE_SENGLISHLANGUAGENAME","features":[70]},{"name":"LOCALE_SGROUPING","features":[70]},{"name":"LOCALE_SINTLSYMBOL","features":[70]},{"name":"LOCALE_SISO3166CTRYNAME","features":[70]},{"name":"LOCALE_SISO3166CTRYNAME2","features":[70]},{"name":"LOCALE_SISO639LANGNAME","features":[70]},{"name":"LOCALE_SISO639LANGNAME2","features":[70]},{"name":"LOCALE_SKEYBOARDSTOINSTALL","features":[70]},{"name":"LOCALE_SLANGDISPLAYNAME","features":[70]},{"name":"LOCALE_SLANGUAGE","features":[70]},{"name":"LOCALE_SLIST","features":[70]},{"name":"LOCALE_SLOCALIZEDCOUNTRYNAME","features":[70]},{"name":"LOCALE_SLOCALIZEDDISPLAYNAME","features":[70]},{"name":"LOCALE_SLOCALIZEDLANGUAGENAME","features":[70]},{"name":"LOCALE_SLONGDATE","features":[70]},{"name":"LOCALE_SMONDECIMALSEP","features":[70]},{"name":"LOCALE_SMONGROUPING","features":[70]},{"name":"LOCALE_SMONTHDAY","features":[70]},{"name":"LOCALE_SMONTHNAME1","features":[70]},{"name":"LOCALE_SMONTHNAME10","features":[70]},{"name":"LOCALE_SMONTHNAME11","features":[70]},{"name":"LOCALE_SMONTHNAME12","features":[70]},{"name":"LOCALE_SMONTHNAME13","features":[70]},{"name":"LOCALE_SMONTHNAME2","features":[70]},{"name":"LOCALE_SMONTHNAME3","features":[70]},{"name":"LOCALE_SMONTHNAME4","features":[70]},{"name":"LOCALE_SMONTHNAME5","features":[70]},{"name":"LOCALE_SMONTHNAME6","features":[70]},{"name":"LOCALE_SMONTHNAME7","features":[70]},{"name":"LOCALE_SMONTHNAME8","features":[70]},{"name":"LOCALE_SMONTHNAME9","features":[70]},{"name":"LOCALE_SMONTHOUSANDSEP","features":[70]},{"name":"LOCALE_SNAME","features":[70]},{"name":"LOCALE_SNAN","features":[70]},{"name":"LOCALE_SNATIVECOUNTRYNAME","features":[70]},{"name":"LOCALE_SNATIVECTRYNAME","features":[70]},{"name":"LOCALE_SNATIVECURRNAME","features":[70]},{"name":"LOCALE_SNATIVEDIGITS","features":[70]},{"name":"LOCALE_SNATIVEDISPLAYNAME","features":[70]},{"name":"LOCALE_SNATIVELANGNAME","features":[70]},{"name":"LOCALE_SNATIVELANGUAGENAME","features":[70]},{"name":"LOCALE_SNEGATIVESIGN","features":[70]},{"name":"LOCALE_SNEGINFINITY","features":[70]},{"name":"LOCALE_SOPENTYPELANGUAGETAG","features":[70]},{"name":"LOCALE_SPARENT","features":[70]},{"name":"LOCALE_SPECIFICDATA","features":[70]},{"name":"LOCALE_SPERCENT","features":[70]},{"name":"LOCALE_SPERMILLE","features":[70]},{"name":"LOCALE_SPM","features":[70]},{"name":"LOCALE_SPOSINFINITY","features":[70]},{"name":"LOCALE_SPOSITIVESIGN","features":[70]},{"name":"LOCALE_SRELATIVELONGDATE","features":[70]},{"name":"LOCALE_SSCRIPTS","features":[70]},{"name":"LOCALE_SSHORTDATE","features":[70]},{"name":"LOCALE_SSHORTESTAM","features":[70]},{"name":"LOCALE_SSHORTESTDAYNAME1","features":[70]},{"name":"LOCALE_SSHORTESTDAYNAME2","features":[70]},{"name":"LOCALE_SSHORTESTDAYNAME3","features":[70]},{"name":"LOCALE_SSHORTESTDAYNAME4","features":[70]},{"name":"LOCALE_SSHORTESTDAYNAME5","features":[70]},{"name":"LOCALE_SSHORTESTDAYNAME6","features":[70]},{"name":"LOCALE_SSHORTESTDAYNAME7","features":[70]},{"name":"LOCALE_SSHORTESTPM","features":[70]},{"name":"LOCALE_SSHORTTIME","features":[70]},{"name":"LOCALE_SSORTLOCALE","features":[70]},{"name":"LOCALE_SSORTNAME","features":[70]},{"name":"LOCALE_STHOUSAND","features":[70]},{"name":"LOCALE_STIME","features":[70]},{"name":"LOCALE_STIMEFORMAT","features":[70]},{"name":"LOCALE_SUPPLEMENTAL","features":[70]},{"name":"LOCALE_SYEARMONTH","features":[70]},{"name":"LOCALE_USE_CP_ACP","features":[70]},{"name":"LOCALE_WINDOWS","features":[70]},{"name":"LOWLEVEL_SERVICE_TYPES","features":[70]},{"name":"LOW_SURROGATE_END","features":[70]},{"name":"LOW_SURROGATE_START","features":[70]},{"name":"LocaleNameToLCID","features":[70]},{"name":"MAPPING_DATA_RANGE","features":[70]},{"name":"MAPPING_ENUM_OPTIONS","features":[70]},{"name":"MAPPING_OPTIONS","features":[70]},{"name":"MAPPING_PROPERTY_BAG","features":[70]},{"name":"MAPPING_SERVICE_INFO","features":[70]},{"name":"MAP_COMPOSITE","features":[70]},{"name":"MAP_EXPAND_LIGATURES","features":[70]},{"name":"MAP_FOLDCZONE","features":[70]},{"name":"MAP_FOLDDIGITS","features":[70]},{"name":"MAP_PRECOMPOSED","features":[70]},{"name":"MAX_DEFAULTCHAR","features":[70]},{"name":"MAX_LEADBYTES","features":[70]},{"name":"MAX_LOCALE_NAME","features":[70]},{"name":"MAX_MIMECP_NAME","features":[70]},{"name":"MAX_MIMECSET_NAME","features":[70]},{"name":"MAX_MIMEFACE_NAME","features":[70]},{"name":"MAX_RFC1766_NAME","features":[70]},{"name":"MAX_SCRIPT_NAME","features":[70]},{"name":"MB_COMPOSITE","features":[70]},{"name":"MB_ERR_INVALID_CHARS","features":[70]},{"name":"MB_PRECOMPOSED","features":[70]},{"name":"MB_USEGLYPHCHARS","features":[70]},{"name":"MIMECONTF","features":[70]},{"name":"MIMECONTF_BROWSER","features":[70]},{"name":"MIMECONTF_EXPORT","features":[70]},{"name":"MIMECONTF_IMPORT","features":[70]},{"name":"MIMECONTF_MAILNEWS","features":[70]},{"name":"MIMECONTF_MIME_IE4","features":[70]},{"name":"MIMECONTF_MIME_LATEST","features":[70]},{"name":"MIMECONTF_MIME_REGISTRY","features":[70]},{"name":"MIMECONTF_MINIMAL","features":[70]},{"name":"MIMECONTF_PRIVCONVERTER","features":[70]},{"name":"MIMECONTF_SAVABLE_BROWSER","features":[70]},{"name":"MIMECONTF_SAVABLE_MAILNEWS","features":[70]},{"name":"MIMECONTF_VALID","features":[70]},{"name":"MIMECONTF_VALID_NLS","features":[70]},{"name":"MIMECPINFO","features":[70]},{"name":"MIMECSETINFO","features":[70]},{"name":"MIN_SPELLING_NTDDI","features":[70]},{"name":"MLCONVCHAR","features":[70]},{"name":"MLCONVCHARF_AUTODETECT","features":[70]},{"name":"MLCONVCHARF_DETECTJPN","features":[70]},{"name":"MLCONVCHARF_ENTITIZE","features":[70]},{"name":"MLCONVCHARF_NAME_ENTITIZE","features":[70]},{"name":"MLCONVCHARF_NCR_ENTITIZE","features":[70]},{"name":"MLCONVCHARF_NOBESTFITCHARS","features":[70]},{"name":"MLCONVCHARF_USEDEFCHAR","features":[70]},{"name":"MLCP","features":[70]},{"name":"MLDETECTCP","features":[70]},{"name":"MLDETECTCP_7BIT","features":[70]},{"name":"MLDETECTCP_8BIT","features":[70]},{"name":"MLDETECTCP_DBCS","features":[70]},{"name":"MLDETECTCP_HTML","features":[70]},{"name":"MLDETECTCP_NONE","features":[70]},{"name":"MLDETECTCP_NUMBER","features":[70]},{"name":"MLDETECTF_BROWSER","features":[70]},{"name":"MLDETECTF_EURO_UTF8","features":[70]},{"name":"MLDETECTF_FILTER_SPECIALCHAR","features":[70]},{"name":"MLDETECTF_MAILNEWS","features":[70]},{"name":"MLDETECTF_PREFERRED_ONLY","features":[70]},{"name":"MLDETECTF_PRESERVE_ORDER","features":[70]},{"name":"MLDETECTF_VALID","features":[70]},{"name":"MLDETECTF_VALID_NLS","features":[70]},{"name":"MLSTR_FLAGS","features":[70]},{"name":"MLSTR_READ","features":[70]},{"name":"MLSTR_WRITE","features":[70]},{"name":"MUI_COMPLEX_SCRIPT_FILTER","features":[70]},{"name":"MUI_CONSOLE_FILTER","features":[70]},{"name":"MUI_FILEINFO_VERSION","features":[70]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MAIN","features":[70]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MUI","features":[70]},{"name":"MUI_FILETYPE_NOT_LANGUAGE_NEUTRAL","features":[70]},{"name":"MUI_FORMAT_INF_COMPAT","features":[70]},{"name":"MUI_FORMAT_REG_COMPAT","features":[70]},{"name":"MUI_FULL_LANGUAGE","features":[70]},{"name":"MUI_IMMUTABLE_LOOKUP","features":[70]},{"name":"MUI_LANGUAGE_EXACT","features":[70]},{"name":"MUI_LANGUAGE_ID","features":[70]},{"name":"MUI_LANGUAGE_INSTALLED","features":[70]},{"name":"MUI_LANGUAGE_LICENSED","features":[70]},{"name":"MUI_LANGUAGE_NAME","features":[70]},{"name":"MUI_LANG_NEUTRAL_PE_FILE","features":[70]},{"name":"MUI_LIP_LANGUAGE","features":[70]},{"name":"MUI_MACHINE_LANGUAGE_SETTINGS","features":[70]},{"name":"MUI_MERGE_SYSTEM_FALLBACK","features":[70]},{"name":"MUI_MERGE_USER_FALLBACK","features":[70]},{"name":"MUI_NON_LANG_NEUTRAL_FILE","features":[70]},{"name":"MUI_PARTIAL_LANGUAGE","features":[70]},{"name":"MUI_QUERY_CHECKSUM","features":[70]},{"name":"MUI_QUERY_LANGUAGE_NAME","features":[70]},{"name":"MUI_QUERY_RESOURCE_TYPES","features":[70]},{"name":"MUI_QUERY_TYPE","features":[70]},{"name":"MUI_RESET_FILTERS","features":[70]},{"name":"MUI_SKIP_STRING_CACHE","features":[70]},{"name":"MUI_THREAD_LANGUAGES","features":[70]},{"name":"MUI_USER_PREFERRED_UI_LANGUAGES","features":[70]},{"name":"MUI_USE_INSTALLED_LANGUAGES","features":[70]},{"name":"MUI_USE_SEARCH_ALL_LANGUAGES","features":[70]},{"name":"MUI_VERIFY_FILE_EXISTS","features":[70]},{"name":"MULTI_BYTE_TO_WIDE_CHAR_FLAGS","features":[70]},{"name":"MappingDoAction","features":[70]},{"name":"MappingFreePropertyBag","features":[70]},{"name":"MappingFreeServices","features":[70]},{"name":"MappingGetServices","features":[70]},{"name":"MappingRecognizeText","features":[70]},{"name":"MinuteUnit","features":[70]},{"name":"MonthUnit","features":[70]},{"name":"MultiByteToWideChar","features":[70]},{"name":"NEWTEXTMETRICEXA","features":[70,12]},{"name":"NEWTEXTMETRICEXW","features":[70,12]},{"name":"NLSVERSIONINFO","features":[70]},{"name":"NLSVERSIONINFOEX","features":[70]},{"name":"NLS_CP_CPINFO","features":[70]},{"name":"NLS_CP_MBTOWC","features":[70]},{"name":"NLS_CP_WCTOMB","features":[70]},{"name":"NORM_FORM","features":[70]},{"name":"NORM_IGNORECASE","features":[70]},{"name":"NORM_IGNOREKANATYPE","features":[70]},{"name":"NORM_IGNORENONSPACE","features":[70]},{"name":"NORM_IGNORESYMBOLS","features":[70]},{"name":"NORM_IGNOREWIDTH","features":[70]},{"name":"NORM_LINGUISTIC_CASING","features":[70]},{"name":"NUMBERFMTA","features":[70]},{"name":"NUMBERFMTW","features":[70]},{"name":"NUMSYS_NAME_CAPACITY","features":[70]},{"name":"NormalizationC","features":[70]},{"name":"NormalizationD","features":[70]},{"name":"NormalizationKC","features":[70]},{"name":"NormalizationKD","features":[70]},{"name":"NormalizationOther","features":[70]},{"name":"NormalizeString","features":[70]},{"name":"NotifyUILanguageChange","features":[1,70]},{"name":"OFFLINE_SERVICES","features":[70]},{"name":"ONLINE_SERVICES","features":[70]},{"name":"OPENTYPE_FEATURE_RECORD","features":[70]},{"name":"PFN_MAPPINGCALLBACKPROC","features":[70]},{"name":"RFC1766INFO","features":[70]},{"name":"ResolveLocaleName","features":[70]},{"name":"RestoreThreadPreferredUILanguages","features":[70]},{"name":"SCRIPTCONTF","features":[70]},{"name":"SCRIPTCONTF_FIXED_FONT","features":[70]},{"name":"SCRIPTCONTF_PROPORTIONAL_FONT","features":[70]},{"name":"SCRIPTCONTF_SCRIPT_HIDE","features":[70]},{"name":"SCRIPTCONTF_SCRIPT_SYSTEM","features":[70]},{"name":"SCRIPTCONTF_SCRIPT_USER","features":[70]},{"name":"SCRIPTFONTCONTF","features":[70]},{"name":"SCRIPTFONTINFO","features":[70]},{"name":"SCRIPTINFO","features":[70]},{"name":"SCRIPT_ANALYSIS","features":[70]},{"name":"SCRIPT_CHARPROP","features":[70]},{"name":"SCRIPT_CONTROL","features":[70]},{"name":"SCRIPT_DIGITSUBSTITUTE","features":[70]},{"name":"SCRIPT_DIGITSUBSTITUTE_CONTEXT","features":[70]},{"name":"SCRIPT_DIGITSUBSTITUTE_NATIONAL","features":[70]},{"name":"SCRIPT_DIGITSUBSTITUTE_NONE","features":[70]},{"name":"SCRIPT_DIGITSUBSTITUTE_TRADITIONAL","features":[70]},{"name":"SCRIPT_FONTPROPERTIES","features":[70]},{"name":"SCRIPT_GLYPHPROP","features":[70]},{"name":"SCRIPT_IS_COMPLEX_FLAGS","features":[70]},{"name":"SCRIPT_ITEM","features":[70]},{"name":"SCRIPT_JUSTIFY","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_ALEF","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_BA","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_BARA","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_BLANK","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_HA","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_KASHIDA","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_NORMAL","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_RA","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN","features":[70]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN_M","features":[70]},{"name":"SCRIPT_JUSTIFY_BLANK","features":[70]},{"name":"SCRIPT_JUSTIFY_CHARACTER","features":[70]},{"name":"SCRIPT_JUSTIFY_NONE","features":[70]},{"name":"SCRIPT_JUSTIFY_RESERVED1","features":[70]},{"name":"SCRIPT_JUSTIFY_RESERVED2","features":[70]},{"name":"SCRIPT_JUSTIFY_RESERVED3","features":[70]},{"name":"SCRIPT_LOGATTR","features":[70]},{"name":"SCRIPT_PROPERTIES","features":[70]},{"name":"SCRIPT_STATE","features":[70]},{"name":"SCRIPT_TABDEF","features":[70]},{"name":"SCRIPT_TAG_UNKNOWN","features":[70]},{"name":"SCRIPT_UNDEFINED","features":[70]},{"name":"SCRIPT_VISATTR","features":[70]},{"name":"SGCM_RTL","features":[70]},{"name":"SIC_ASCIIDIGIT","features":[70]},{"name":"SIC_COMPLEX","features":[70]},{"name":"SIC_NEUTRAL","features":[70]},{"name":"SORTING_PARADIGM_ICU","features":[70]},{"name":"SORTING_PARADIGM_NLS","features":[70]},{"name":"SORT_DIGITSASNUMBERS","features":[70]},{"name":"SORT_STRINGSORT","features":[70]},{"name":"SSA_BREAK","features":[70]},{"name":"SSA_CLIP","features":[70]},{"name":"SSA_DONTGLYPH","features":[70]},{"name":"SSA_DZWG","features":[70]},{"name":"SSA_FALLBACK","features":[70]},{"name":"SSA_FIT","features":[70]},{"name":"SSA_FULLMEASURE","features":[70]},{"name":"SSA_GCP","features":[70]},{"name":"SSA_GLYPHS","features":[70]},{"name":"SSA_HIDEHOTKEY","features":[70]},{"name":"SSA_HOTKEY","features":[70]},{"name":"SSA_HOTKEYONLY","features":[70]},{"name":"SSA_LAYOUTRTL","features":[70]},{"name":"SSA_LINK","features":[70]},{"name":"SSA_LPKANSIFALLBACK","features":[70]},{"name":"SSA_METAFILE","features":[70]},{"name":"SSA_NOKASHIDA","features":[70]},{"name":"SSA_PASSWORD","features":[70]},{"name":"SSA_PIDX","features":[70]},{"name":"SSA_RTL","features":[70]},{"name":"SSA_TAB","features":[70]},{"name":"SYSGEOCLASS","features":[70]},{"name":"SYSGEOTYPE","features":[70]},{"name":"SYSNLS_FUNCTION","features":[70]},{"name":"ScriptApplyDigitSubstitution","features":[70]},{"name":"ScriptApplyLogicalWidth","features":[70,12]},{"name":"ScriptBreak","features":[70]},{"name":"ScriptCPtoX","features":[1,70]},{"name":"ScriptCacheGetHeight","features":[70,12]},{"name":"ScriptFreeCache","features":[70]},{"name":"ScriptGetCMap","features":[70,12]},{"name":"ScriptGetFontAlternateGlyphs","features":[70,12]},{"name":"ScriptGetFontFeatureTags","features":[70,12]},{"name":"ScriptGetFontLanguageTags","features":[70,12]},{"name":"ScriptGetFontProperties","features":[70,12]},{"name":"ScriptGetFontScriptTags","features":[70,12]},{"name":"ScriptGetGlyphABCWidth","features":[70,12]},{"name":"ScriptGetLogicalWidths","features":[70]},{"name":"ScriptGetProperties","features":[70]},{"name":"ScriptIsComplex","features":[70]},{"name":"ScriptItemize","features":[70]},{"name":"ScriptItemizeOpenType","features":[70]},{"name":"ScriptJustify","features":[70]},{"name":"ScriptLayout","features":[70]},{"name":"ScriptPlace","features":[70,12]},{"name":"ScriptPlaceOpenType","features":[70,12]},{"name":"ScriptPositionSingleGlyph","features":[70,12]},{"name":"ScriptRecordDigitSubstitution","features":[70]},{"name":"ScriptShape","features":[70,12]},{"name":"ScriptShapeOpenType","features":[70,12]},{"name":"ScriptStringAnalyse","features":[70,12]},{"name":"ScriptStringCPtoX","features":[1,70]},{"name":"ScriptStringFree","features":[70]},{"name":"ScriptStringGetLogicalWidths","features":[70]},{"name":"ScriptStringGetOrder","features":[70]},{"name":"ScriptStringOut","features":[1,70,12]},{"name":"ScriptStringValidate","features":[70]},{"name":"ScriptStringXtoCP","features":[70]},{"name":"ScriptString_pLogAttr","features":[70]},{"name":"ScriptString_pSize","features":[1,70]},{"name":"ScriptString_pcOutChars","features":[70]},{"name":"ScriptSubstituteSingleGlyph","features":[70,12]},{"name":"ScriptTextOut","features":[1,70,12]},{"name":"ScriptXtoCP","features":[70]},{"name":"SecondUnit","features":[70]},{"name":"SetCalendarInfoA","features":[1,70]},{"name":"SetCalendarInfoW","features":[1,70]},{"name":"SetLocaleInfoA","features":[1,70]},{"name":"SetLocaleInfoW","features":[1,70]},{"name":"SetProcessPreferredUILanguages","features":[1,70]},{"name":"SetThreadLocale","features":[1,70]},{"name":"SetThreadPreferredUILanguages","features":[1,70]},{"name":"SetThreadPreferredUILanguages2","features":[1,70]},{"name":"SetThreadUILanguage","features":[70]},{"name":"SetUserGeoID","features":[1,70]},{"name":"SetUserGeoName","features":[1,70]},{"name":"SpellCheckerFactory","features":[70]},{"name":"TCI_SRCCHARSET","features":[70]},{"name":"TCI_SRCCODEPAGE","features":[70]},{"name":"TCI_SRCFONTSIG","features":[70]},{"name":"TCI_SRCLOCALE","features":[70]},{"name":"TEXTRANGE_PROPERTIES","features":[70]},{"name":"TIMEFMT_ENUMPROCA","features":[1,70]},{"name":"TIMEFMT_ENUMPROCEX","features":[1,70]},{"name":"TIMEFMT_ENUMPROCW","features":[1,70]},{"name":"TIME_FORCE24HOURFORMAT","features":[70]},{"name":"TIME_FORMAT_FLAGS","features":[70]},{"name":"TIME_NOMINUTESORSECONDS","features":[70]},{"name":"TIME_NOSECONDS","features":[70]},{"name":"TIME_NOTIMEMARKER","features":[70]},{"name":"TRANSLATE_CHARSET_INFO_FLAGS","features":[70]},{"name":"TickUnit","features":[70]},{"name":"TranslateCharsetInfo","features":[1,70]},{"name":"U16_MAX_LENGTH","features":[70]},{"name":"U8_LEAD3_T1_BITS","features":[70]},{"name":"U8_LEAD4_T1_BITS","features":[70]},{"name":"U8_MAX_LENGTH","features":[70]},{"name":"UAcceptResult","features":[70]},{"name":"UAlphabeticIndexLabelType","features":[70]},{"name":"UBIDI_DEFAULT_LTR","features":[70]},{"name":"UBIDI_DEFAULT_RTL","features":[70]},{"name":"UBIDI_DO_MIRRORING","features":[70]},{"name":"UBIDI_INSERT_LRM_FOR_NUMERIC","features":[70]},{"name":"UBIDI_KEEP_BASE_COMBINING","features":[70]},{"name":"UBIDI_LEVEL_OVERRIDE","features":[70]},{"name":"UBIDI_LOGICAL","features":[70]},{"name":"UBIDI_LTR","features":[70]},{"name":"UBIDI_MAP_NOWHERE","features":[70]},{"name":"UBIDI_MAX_EXPLICIT_LEVEL","features":[70]},{"name":"UBIDI_MIRRORING_OFF","features":[70]},{"name":"UBIDI_MIRRORING_ON","features":[70]},{"name":"UBIDI_MIXED","features":[70]},{"name":"UBIDI_NEUTRAL","features":[70]},{"name":"UBIDI_OPTION_DEFAULT","features":[70]},{"name":"UBIDI_OPTION_INSERT_MARKS","features":[70]},{"name":"UBIDI_OPTION_REMOVE_CONTROLS","features":[70]},{"name":"UBIDI_OPTION_STREAMING","features":[70]},{"name":"UBIDI_OUTPUT_REVERSE","features":[70]},{"name":"UBIDI_REMOVE_BIDI_CONTROLS","features":[70]},{"name":"UBIDI_REORDER_DEFAULT","features":[70]},{"name":"UBIDI_REORDER_GROUP_NUMBERS_WITH_R","features":[70]},{"name":"UBIDI_REORDER_INVERSE_FOR_NUMBERS_SPECIAL","features":[70]},{"name":"UBIDI_REORDER_INVERSE_LIKE_DIRECT","features":[70]},{"name":"UBIDI_REORDER_INVERSE_NUMBERS_AS_L","features":[70]},{"name":"UBIDI_REORDER_NUMBERS_SPECIAL","features":[70]},{"name":"UBIDI_REORDER_RUNS_ONLY","features":[70]},{"name":"UBIDI_RTL","features":[70]},{"name":"UBIDI_VISUAL","features":[70]},{"name":"UBLOCK_ADLAM","features":[70]},{"name":"UBLOCK_AEGEAN_NUMBERS","features":[70]},{"name":"UBLOCK_AHOM","features":[70]},{"name":"UBLOCK_ALCHEMICAL_SYMBOLS","features":[70]},{"name":"UBLOCK_ALPHABETIC_PRESENTATION_FORMS","features":[70]},{"name":"UBLOCK_ANATOLIAN_HIEROGLYPHS","features":[70]},{"name":"UBLOCK_ANCIENT_GREEK_MUSICAL_NOTATION","features":[70]},{"name":"UBLOCK_ANCIENT_GREEK_NUMBERS","features":[70]},{"name":"UBLOCK_ANCIENT_SYMBOLS","features":[70]},{"name":"UBLOCK_ARABIC","features":[70]},{"name":"UBLOCK_ARABIC_EXTENDED_A","features":[70]},{"name":"UBLOCK_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS","features":[70]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_A","features":[70]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_B","features":[70]},{"name":"UBLOCK_ARABIC_SUPPLEMENT","features":[70]},{"name":"UBLOCK_ARMENIAN","features":[70]},{"name":"UBLOCK_ARROWS","features":[70]},{"name":"UBLOCK_AVESTAN","features":[70]},{"name":"UBLOCK_BALINESE","features":[70]},{"name":"UBLOCK_BAMUM","features":[70]},{"name":"UBLOCK_BAMUM_SUPPLEMENT","features":[70]},{"name":"UBLOCK_BASIC_LATIN","features":[70]},{"name":"UBLOCK_BASSA_VAH","features":[70]},{"name":"UBLOCK_BATAK","features":[70]},{"name":"UBLOCK_BENGALI","features":[70]},{"name":"UBLOCK_BHAIKSUKI","features":[70]},{"name":"UBLOCK_BLOCK_ELEMENTS","features":[70]},{"name":"UBLOCK_BOPOMOFO","features":[70]},{"name":"UBLOCK_BOPOMOFO_EXTENDED","features":[70]},{"name":"UBLOCK_BOX_DRAWING","features":[70]},{"name":"UBLOCK_BRAHMI","features":[70]},{"name":"UBLOCK_BRAILLE_PATTERNS","features":[70]},{"name":"UBLOCK_BUGINESE","features":[70]},{"name":"UBLOCK_BUHID","features":[70]},{"name":"UBLOCK_BYZANTINE_MUSICAL_SYMBOLS","features":[70]},{"name":"UBLOCK_CARIAN","features":[70]},{"name":"UBLOCK_CAUCASIAN_ALBANIAN","features":[70]},{"name":"UBLOCK_CHAKMA","features":[70]},{"name":"UBLOCK_CHAM","features":[70]},{"name":"UBLOCK_CHEROKEE","features":[70]},{"name":"UBLOCK_CHEROKEE_SUPPLEMENT","features":[70]},{"name":"UBLOCK_CHESS_SYMBOLS","features":[70]},{"name":"UBLOCK_CHORASMIAN","features":[70]},{"name":"UBLOCK_CJK_COMPATIBILITY","features":[70]},{"name":"UBLOCK_CJK_COMPATIBILITY_FORMS","features":[70]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS","features":[70]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT","features":[70]},{"name":"UBLOCK_CJK_RADICALS_SUPPLEMENT","features":[70]},{"name":"UBLOCK_CJK_STROKES","features":[70]},{"name":"UBLOCK_CJK_SYMBOLS_AND_PUNCTUATION","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F","features":[70]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_G","features":[70]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS","features":[70]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_EXTENDED","features":[70]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_SUPPLEMENT","features":[70]},{"name":"UBLOCK_COMBINING_HALF_MARKS","features":[70]},{"name":"UBLOCK_COMBINING_MARKS_FOR_SYMBOLS","features":[70]},{"name":"UBLOCK_COMMON_INDIC_NUMBER_FORMS","features":[70]},{"name":"UBLOCK_CONTROL_PICTURES","features":[70]},{"name":"UBLOCK_COPTIC","features":[70]},{"name":"UBLOCK_COPTIC_EPACT_NUMBERS","features":[70]},{"name":"UBLOCK_COUNTING_ROD_NUMERALS","features":[70]},{"name":"UBLOCK_CUNEIFORM","features":[70]},{"name":"UBLOCK_CUNEIFORM_NUMBERS_AND_PUNCTUATION","features":[70]},{"name":"UBLOCK_CURRENCY_SYMBOLS","features":[70]},{"name":"UBLOCK_CYPRIOT_SYLLABARY","features":[70]},{"name":"UBLOCK_CYRILLIC","features":[70]},{"name":"UBLOCK_CYRILLIC_EXTENDED_A","features":[70]},{"name":"UBLOCK_CYRILLIC_EXTENDED_B","features":[70]},{"name":"UBLOCK_CYRILLIC_EXTENDED_C","features":[70]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENT","features":[70]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENTARY","features":[70]},{"name":"UBLOCK_DESERET","features":[70]},{"name":"UBLOCK_DEVANAGARI","features":[70]},{"name":"UBLOCK_DEVANAGARI_EXTENDED","features":[70]},{"name":"UBLOCK_DINGBATS","features":[70]},{"name":"UBLOCK_DIVES_AKURU","features":[70]},{"name":"UBLOCK_DOGRA","features":[70]},{"name":"UBLOCK_DOMINO_TILES","features":[70]},{"name":"UBLOCK_DUPLOYAN","features":[70]},{"name":"UBLOCK_EARLY_DYNASTIC_CUNEIFORM","features":[70]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPHS","features":[70]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPH_FORMAT_CONTROLS","features":[70]},{"name":"UBLOCK_ELBASAN","features":[70]},{"name":"UBLOCK_ELYMAIC","features":[70]},{"name":"UBLOCK_EMOTICONS","features":[70]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERICS","features":[70]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERIC_SUPPLEMENT","features":[70]},{"name":"UBLOCK_ENCLOSED_CJK_LETTERS_AND_MONTHS","features":[70]},{"name":"UBLOCK_ENCLOSED_IDEOGRAPHIC_SUPPLEMENT","features":[70]},{"name":"UBLOCK_ETHIOPIC","features":[70]},{"name":"UBLOCK_ETHIOPIC_EXTENDED","features":[70]},{"name":"UBLOCK_ETHIOPIC_EXTENDED_A","features":[70]},{"name":"UBLOCK_ETHIOPIC_SUPPLEMENT","features":[70]},{"name":"UBLOCK_GENERAL_PUNCTUATION","features":[70]},{"name":"UBLOCK_GEOMETRIC_SHAPES","features":[70]},{"name":"UBLOCK_GEOMETRIC_SHAPES_EXTENDED","features":[70]},{"name":"UBLOCK_GEORGIAN","features":[70]},{"name":"UBLOCK_GEORGIAN_EXTENDED","features":[70]},{"name":"UBLOCK_GEORGIAN_SUPPLEMENT","features":[70]},{"name":"UBLOCK_GLAGOLITIC","features":[70]},{"name":"UBLOCK_GLAGOLITIC_SUPPLEMENT","features":[70]},{"name":"UBLOCK_GOTHIC","features":[70]},{"name":"UBLOCK_GRANTHA","features":[70]},{"name":"UBLOCK_GREEK","features":[70]},{"name":"UBLOCK_GREEK_EXTENDED","features":[70]},{"name":"UBLOCK_GUJARATI","features":[70]},{"name":"UBLOCK_GUNJALA_GONDI","features":[70]},{"name":"UBLOCK_GURMUKHI","features":[70]},{"name":"UBLOCK_HALFWIDTH_AND_FULLWIDTH_FORMS","features":[70]},{"name":"UBLOCK_HANGUL_COMPATIBILITY_JAMO","features":[70]},{"name":"UBLOCK_HANGUL_JAMO","features":[70]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_A","features":[70]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_B","features":[70]},{"name":"UBLOCK_HANGUL_SYLLABLES","features":[70]},{"name":"UBLOCK_HANIFI_ROHINGYA","features":[70]},{"name":"UBLOCK_HANUNOO","features":[70]},{"name":"UBLOCK_HATRAN","features":[70]},{"name":"UBLOCK_HEBREW","features":[70]},{"name":"UBLOCK_HIGH_PRIVATE_USE_SURROGATES","features":[70]},{"name":"UBLOCK_HIGH_SURROGATES","features":[70]},{"name":"UBLOCK_HIRAGANA","features":[70]},{"name":"UBLOCK_IDEOGRAPHIC_DESCRIPTION_CHARACTERS","features":[70]},{"name":"UBLOCK_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION","features":[70]},{"name":"UBLOCK_IMPERIAL_ARAMAIC","features":[70]},{"name":"UBLOCK_INDIC_SIYAQ_NUMBERS","features":[70]},{"name":"UBLOCK_INSCRIPTIONAL_PAHLAVI","features":[70]},{"name":"UBLOCK_INSCRIPTIONAL_PARTHIAN","features":[70]},{"name":"UBLOCK_INVALID_CODE","features":[70]},{"name":"UBLOCK_IPA_EXTENSIONS","features":[70]},{"name":"UBLOCK_JAVANESE","features":[70]},{"name":"UBLOCK_KAITHI","features":[70]},{"name":"UBLOCK_KANA_EXTENDED_A","features":[70]},{"name":"UBLOCK_KANA_SUPPLEMENT","features":[70]},{"name":"UBLOCK_KANBUN","features":[70]},{"name":"UBLOCK_KANGXI_RADICALS","features":[70]},{"name":"UBLOCK_KANNADA","features":[70]},{"name":"UBLOCK_KATAKANA","features":[70]},{"name":"UBLOCK_KATAKANA_PHONETIC_EXTENSIONS","features":[70]},{"name":"UBLOCK_KAYAH_LI","features":[70]},{"name":"UBLOCK_KHAROSHTHI","features":[70]},{"name":"UBLOCK_KHITAN_SMALL_SCRIPT","features":[70]},{"name":"UBLOCK_KHMER","features":[70]},{"name":"UBLOCK_KHMER_SYMBOLS","features":[70]},{"name":"UBLOCK_KHOJKI","features":[70]},{"name":"UBLOCK_KHUDAWADI","features":[70]},{"name":"UBLOCK_LAO","features":[70]},{"name":"UBLOCK_LATIN_1_SUPPLEMENT","features":[70]},{"name":"UBLOCK_LATIN_EXTENDED_A","features":[70]},{"name":"UBLOCK_LATIN_EXTENDED_ADDITIONAL","features":[70]},{"name":"UBLOCK_LATIN_EXTENDED_B","features":[70]},{"name":"UBLOCK_LATIN_EXTENDED_C","features":[70]},{"name":"UBLOCK_LATIN_EXTENDED_D","features":[70]},{"name":"UBLOCK_LATIN_EXTENDED_E","features":[70]},{"name":"UBLOCK_LEPCHA","features":[70]},{"name":"UBLOCK_LETTERLIKE_SYMBOLS","features":[70]},{"name":"UBLOCK_LIMBU","features":[70]},{"name":"UBLOCK_LINEAR_A","features":[70]},{"name":"UBLOCK_LINEAR_B_IDEOGRAMS","features":[70]},{"name":"UBLOCK_LINEAR_B_SYLLABARY","features":[70]},{"name":"UBLOCK_LISU","features":[70]},{"name":"UBLOCK_LISU_SUPPLEMENT","features":[70]},{"name":"UBLOCK_LOW_SURROGATES","features":[70]},{"name":"UBLOCK_LYCIAN","features":[70]},{"name":"UBLOCK_LYDIAN","features":[70]},{"name":"UBLOCK_MAHAJANI","features":[70]},{"name":"UBLOCK_MAHJONG_TILES","features":[70]},{"name":"UBLOCK_MAKASAR","features":[70]},{"name":"UBLOCK_MALAYALAM","features":[70]},{"name":"UBLOCK_MANDAIC","features":[70]},{"name":"UBLOCK_MANICHAEAN","features":[70]},{"name":"UBLOCK_MARCHEN","features":[70]},{"name":"UBLOCK_MASARAM_GONDI","features":[70]},{"name":"UBLOCK_MATHEMATICAL_ALPHANUMERIC_SYMBOLS","features":[70]},{"name":"UBLOCK_MATHEMATICAL_OPERATORS","features":[70]},{"name":"UBLOCK_MAYAN_NUMERALS","features":[70]},{"name":"UBLOCK_MEDEFAIDRIN","features":[70]},{"name":"UBLOCK_MEETEI_MAYEK","features":[70]},{"name":"UBLOCK_MEETEI_MAYEK_EXTENSIONS","features":[70]},{"name":"UBLOCK_MENDE_KIKAKUI","features":[70]},{"name":"UBLOCK_MEROITIC_CURSIVE","features":[70]},{"name":"UBLOCK_MEROITIC_HIEROGLYPHS","features":[70]},{"name":"UBLOCK_MIAO","features":[70]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A","features":[70]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B","features":[70]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS","features":[70]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_ARROWS","features":[70]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS","features":[70]},{"name":"UBLOCK_MISCELLANEOUS_TECHNICAL","features":[70]},{"name":"UBLOCK_MODI","features":[70]},{"name":"UBLOCK_MODIFIER_TONE_LETTERS","features":[70]},{"name":"UBLOCK_MONGOLIAN","features":[70]},{"name":"UBLOCK_MONGOLIAN_SUPPLEMENT","features":[70]},{"name":"UBLOCK_MRO","features":[70]},{"name":"UBLOCK_MULTANI","features":[70]},{"name":"UBLOCK_MUSICAL_SYMBOLS","features":[70]},{"name":"UBLOCK_MYANMAR","features":[70]},{"name":"UBLOCK_MYANMAR_EXTENDED_A","features":[70]},{"name":"UBLOCK_MYANMAR_EXTENDED_B","features":[70]},{"name":"UBLOCK_NABATAEAN","features":[70]},{"name":"UBLOCK_NANDINAGARI","features":[70]},{"name":"UBLOCK_NEWA","features":[70]},{"name":"UBLOCK_NEW_TAI_LUE","features":[70]},{"name":"UBLOCK_NKO","features":[70]},{"name":"UBLOCK_NO_BLOCK","features":[70]},{"name":"UBLOCK_NUMBER_FORMS","features":[70]},{"name":"UBLOCK_NUSHU","features":[70]},{"name":"UBLOCK_NYIAKENG_PUACHUE_HMONG","features":[70]},{"name":"UBLOCK_OGHAM","features":[70]},{"name":"UBLOCK_OLD_HUNGARIAN","features":[70]},{"name":"UBLOCK_OLD_ITALIC","features":[70]},{"name":"UBLOCK_OLD_NORTH_ARABIAN","features":[70]},{"name":"UBLOCK_OLD_PERMIC","features":[70]},{"name":"UBLOCK_OLD_PERSIAN","features":[70]},{"name":"UBLOCK_OLD_SOGDIAN","features":[70]},{"name":"UBLOCK_OLD_SOUTH_ARABIAN","features":[70]},{"name":"UBLOCK_OLD_TURKIC","features":[70]},{"name":"UBLOCK_OL_CHIKI","features":[70]},{"name":"UBLOCK_OPTICAL_CHARACTER_RECOGNITION","features":[70]},{"name":"UBLOCK_ORIYA","features":[70]},{"name":"UBLOCK_ORNAMENTAL_DINGBATS","features":[70]},{"name":"UBLOCK_OSAGE","features":[70]},{"name":"UBLOCK_OSMANYA","features":[70]},{"name":"UBLOCK_OTTOMAN_SIYAQ_NUMBERS","features":[70]},{"name":"UBLOCK_PAHAWH_HMONG","features":[70]},{"name":"UBLOCK_PALMYRENE","features":[70]},{"name":"UBLOCK_PAU_CIN_HAU","features":[70]},{"name":"UBLOCK_PHAGS_PA","features":[70]},{"name":"UBLOCK_PHAISTOS_DISC","features":[70]},{"name":"UBLOCK_PHOENICIAN","features":[70]},{"name":"UBLOCK_PHONETIC_EXTENSIONS","features":[70]},{"name":"UBLOCK_PHONETIC_EXTENSIONS_SUPPLEMENT","features":[70]},{"name":"UBLOCK_PLAYING_CARDS","features":[70]},{"name":"UBLOCK_PRIVATE_USE","features":[70]},{"name":"UBLOCK_PRIVATE_USE_AREA","features":[70]},{"name":"UBLOCK_PSALTER_PAHLAVI","features":[70]},{"name":"UBLOCK_REJANG","features":[70]},{"name":"UBLOCK_RUMI_NUMERAL_SYMBOLS","features":[70]},{"name":"UBLOCK_RUNIC","features":[70]},{"name":"UBLOCK_SAMARITAN","features":[70]},{"name":"UBLOCK_SAURASHTRA","features":[70]},{"name":"UBLOCK_SHARADA","features":[70]},{"name":"UBLOCK_SHAVIAN","features":[70]},{"name":"UBLOCK_SHORTHAND_FORMAT_CONTROLS","features":[70]},{"name":"UBLOCK_SIDDHAM","features":[70]},{"name":"UBLOCK_SINHALA","features":[70]},{"name":"UBLOCK_SINHALA_ARCHAIC_NUMBERS","features":[70]},{"name":"UBLOCK_SMALL_FORM_VARIANTS","features":[70]},{"name":"UBLOCK_SMALL_KANA_EXTENSION","features":[70]},{"name":"UBLOCK_SOGDIAN","features":[70]},{"name":"UBLOCK_SORA_SOMPENG","features":[70]},{"name":"UBLOCK_SOYOMBO","features":[70]},{"name":"UBLOCK_SPACING_MODIFIER_LETTERS","features":[70]},{"name":"UBLOCK_SPECIALS","features":[70]},{"name":"UBLOCK_SUNDANESE","features":[70]},{"name":"UBLOCK_SUNDANESE_SUPPLEMENT","features":[70]},{"name":"UBLOCK_SUPERSCRIPTS_AND_SUBSCRIPTS","features":[70]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_A","features":[70]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_B","features":[70]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_C","features":[70]},{"name":"UBLOCK_SUPPLEMENTAL_MATHEMATICAL_OPERATORS","features":[70]},{"name":"UBLOCK_SUPPLEMENTAL_PUNCTUATION","features":[70]},{"name":"UBLOCK_SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS","features":[70]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_A","features":[70]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_B","features":[70]},{"name":"UBLOCK_SUTTON_SIGNWRITING","features":[70]},{"name":"UBLOCK_SYLOTI_NAGRI","features":[70]},{"name":"UBLOCK_SYMBOLS_AND_PICTOGRAPHS_EXTENDED_A","features":[70]},{"name":"UBLOCK_SYMBOLS_FOR_LEGACY_COMPUTING","features":[70]},{"name":"UBLOCK_SYRIAC","features":[70]},{"name":"UBLOCK_SYRIAC_SUPPLEMENT","features":[70]},{"name":"UBLOCK_TAGALOG","features":[70]},{"name":"UBLOCK_TAGBANWA","features":[70]},{"name":"UBLOCK_TAGS","features":[70]},{"name":"UBLOCK_TAI_LE","features":[70]},{"name":"UBLOCK_TAI_THAM","features":[70]},{"name":"UBLOCK_TAI_VIET","features":[70]},{"name":"UBLOCK_TAI_XUAN_JING_SYMBOLS","features":[70]},{"name":"UBLOCK_TAKRI","features":[70]},{"name":"UBLOCK_TAMIL","features":[70]},{"name":"UBLOCK_TAMIL_SUPPLEMENT","features":[70]},{"name":"UBLOCK_TANGUT","features":[70]},{"name":"UBLOCK_TANGUT_COMPONENTS","features":[70]},{"name":"UBLOCK_TANGUT_SUPPLEMENT","features":[70]},{"name":"UBLOCK_TELUGU","features":[70]},{"name":"UBLOCK_THAANA","features":[70]},{"name":"UBLOCK_THAI","features":[70]},{"name":"UBLOCK_TIBETAN","features":[70]},{"name":"UBLOCK_TIFINAGH","features":[70]},{"name":"UBLOCK_TIRHUTA","features":[70]},{"name":"UBLOCK_TRANSPORT_AND_MAP_SYMBOLS","features":[70]},{"name":"UBLOCK_UGARITIC","features":[70]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS","features":[70]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED","features":[70]},{"name":"UBLOCK_VAI","features":[70]},{"name":"UBLOCK_VARIATION_SELECTORS","features":[70]},{"name":"UBLOCK_VARIATION_SELECTORS_SUPPLEMENT","features":[70]},{"name":"UBLOCK_VEDIC_EXTENSIONS","features":[70]},{"name":"UBLOCK_VERTICAL_FORMS","features":[70]},{"name":"UBLOCK_WANCHO","features":[70]},{"name":"UBLOCK_WARANG_CITI","features":[70]},{"name":"UBLOCK_YEZIDI","features":[70]},{"name":"UBLOCK_YIJING_HEXAGRAM_SYMBOLS","features":[70]},{"name":"UBLOCK_YI_RADICALS","features":[70]},{"name":"UBLOCK_YI_SYLLABLES","features":[70]},{"name":"UBLOCK_ZANABAZAR_SQUARE","features":[70]},{"name":"UBRK_CHARACTER","features":[70]},{"name":"UBRK_LINE","features":[70]},{"name":"UBRK_LINE_HARD","features":[70]},{"name":"UBRK_LINE_HARD_LIMIT","features":[70]},{"name":"UBRK_LINE_SOFT","features":[70]},{"name":"UBRK_LINE_SOFT_LIMIT","features":[70]},{"name":"UBRK_SENTENCE","features":[70]},{"name":"UBRK_SENTENCE_SEP","features":[70]},{"name":"UBRK_SENTENCE_SEP_LIMIT","features":[70]},{"name":"UBRK_SENTENCE_TERM","features":[70]},{"name":"UBRK_SENTENCE_TERM_LIMIT","features":[70]},{"name":"UBRK_WORD","features":[70]},{"name":"UBRK_WORD_IDEO","features":[70]},{"name":"UBRK_WORD_IDEO_LIMIT","features":[70]},{"name":"UBRK_WORD_KANA","features":[70]},{"name":"UBRK_WORD_KANA_LIMIT","features":[70]},{"name":"UBRK_WORD_LETTER","features":[70]},{"name":"UBRK_WORD_LETTER_LIMIT","features":[70]},{"name":"UBRK_WORD_NONE","features":[70]},{"name":"UBRK_WORD_NONE_LIMIT","features":[70]},{"name":"UBRK_WORD_NUMBER","features":[70]},{"name":"UBRK_WORD_NUMBER_LIMIT","features":[70]},{"name":"UBiDi","features":[70]},{"name":"UBiDiClassCallback","features":[70]},{"name":"UBiDiDirection","features":[70]},{"name":"UBiDiMirroring","features":[70]},{"name":"UBiDiOrder","features":[70]},{"name":"UBiDiReorderingMode","features":[70]},{"name":"UBiDiReorderingOption","features":[70]},{"name":"UBiDiTransform","features":[70]},{"name":"UBidiPairedBracketType","features":[70]},{"name":"UBlockCode","features":[70]},{"name":"UBreakIterator","features":[70]},{"name":"UBreakIteratorType","features":[70]},{"name":"UCAL_ACTUAL_MAXIMUM","features":[70]},{"name":"UCAL_ACTUAL_MINIMUM","features":[70]},{"name":"UCAL_AM","features":[70]},{"name":"UCAL_AM_PM","features":[70]},{"name":"UCAL_APRIL","features":[70]},{"name":"UCAL_AUGUST","features":[70]},{"name":"UCAL_DATE","features":[70]},{"name":"UCAL_DAY_OF_MONTH","features":[70]},{"name":"UCAL_DAY_OF_WEEK","features":[70]},{"name":"UCAL_DAY_OF_WEEK_IN_MONTH","features":[70]},{"name":"UCAL_DAY_OF_YEAR","features":[70]},{"name":"UCAL_DECEMBER","features":[70]},{"name":"UCAL_DEFAULT","features":[70]},{"name":"UCAL_DOW_LOCAL","features":[70]},{"name":"UCAL_DST","features":[70]},{"name":"UCAL_DST_OFFSET","features":[70]},{"name":"UCAL_ERA","features":[70]},{"name":"UCAL_EXTENDED_YEAR","features":[70]},{"name":"UCAL_FEBRUARY","features":[70]},{"name":"UCAL_FIELD_COUNT","features":[70]},{"name":"UCAL_FIRST_DAY_OF_WEEK","features":[70]},{"name":"UCAL_FRIDAY","features":[70]},{"name":"UCAL_GREATEST_MINIMUM","features":[70]},{"name":"UCAL_GREGORIAN","features":[70]},{"name":"UCAL_HOUR","features":[70]},{"name":"UCAL_HOUR_OF_DAY","features":[70]},{"name":"UCAL_IS_LEAP_MONTH","features":[70]},{"name":"UCAL_JANUARY","features":[70]},{"name":"UCAL_JULIAN_DAY","features":[70]},{"name":"UCAL_JULY","features":[70]},{"name":"UCAL_JUNE","features":[70]},{"name":"UCAL_LEAST_MAXIMUM","features":[70]},{"name":"UCAL_LENIENT","features":[70]},{"name":"UCAL_MARCH","features":[70]},{"name":"UCAL_MAXIMUM","features":[70]},{"name":"UCAL_MAY","features":[70]},{"name":"UCAL_MILLISECOND","features":[70]},{"name":"UCAL_MILLISECONDS_IN_DAY","features":[70]},{"name":"UCAL_MINIMAL_DAYS_IN_FIRST_WEEK","features":[70]},{"name":"UCAL_MINIMUM","features":[70]},{"name":"UCAL_MINUTE","features":[70]},{"name":"UCAL_MONDAY","features":[70]},{"name":"UCAL_MONTH","features":[70]},{"name":"UCAL_NOVEMBER","features":[70]},{"name":"UCAL_OCTOBER","features":[70]},{"name":"UCAL_PM","features":[70]},{"name":"UCAL_REPEATED_WALL_TIME","features":[70]},{"name":"UCAL_SATURDAY","features":[70]},{"name":"UCAL_SECOND","features":[70]},{"name":"UCAL_SEPTEMBER","features":[70]},{"name":"UCAL_SHORT_DST","features":[70]},{"name":"UCAL_SHORT_STANDARD","features":[70]},{"name":"UCAL_SKIPPED_WALL_TIME","features":[70]},{"name":"UCAL_STANDARD","features":[70]},{"name":"UCAL_SUNDAY","features":[70]},{"name":"UCAL_THURSDAY","features":[70]},{"name":"UCAL_TRADITIONAL","features":[70]},{"name":"UCAL_TUESDAY","features":[70]},{"name":"UCAL_TZ_TRANSITION_NEXT","features":[70]},{"name":"UCAL_TZ_TRANSITION_NEXT_INCLUSIVE","features":[70]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS","features":[70]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS_INCLUSIVE","features":[70]},{"name":"UCAL_UNDECIMBER","features":[70]},{"name":"UCAL_UNKNOWN_ZONE_ID","features":[70]},{"name":"UCAL_WALLTIME_FIRST","features":[70]},{"name":"UCAL_WALLTIME_LAST","features":[70]},{"name":"UCAL_WALLTIME_NEXT_VALID","features":[70]},{"name":"UCAL_WEDNESDAY","features":[70]},{"name":"UCAL_WEEKDAY","features":[70]},{"name":"UCAL_WEEKEND","features":[70]},{"name":"UCAL_WEEKEND_CEASE","features":[70]},{"name":"UCAL_WEEKEND_ONSET","features":[70]},{"name":"UCAL_WEEK_OF_MONTH","features":[70]},{"name":"UCAL_WEEK_OF_YEAR","features":[70]},{"name":"UCAL_YEAR","features":[70]},{"name":"UCAL_YEAR_WOY","features":[70]},{"name":"UCAL_ZONE_OFFSET","features":[70]},{"name":"UCAL_ZONE_TYPE_ANY","features":[70]},{"name":"UCAL_ZONE_TYPE_CANONICAL","features":[70]},{"name":"UCAL_ZONE_TYPE_CANONICAL_LOCATION","features":[70]},{"name":"UCHAR_AGE","features":[70]},{"name":"UCHAR_ALPHABETIC","features":[70]},{"name":"UCHAR_ASCII_HEX_DIGIT","features":[70]},{"name":"UCHAR_BIDI_CLASS","features":[70]},{"name":"UCHAR_BIDI_CONTROL","features":[70]},{"name":"UCHAR_BIDI_MIRRORED","features":[70]},{"name":"UCHAR_BIDI_MIRRORING_GLYPH","features":[70]},{"name":"UCHAR_BIDI_PAIRED_BRACKET","features":[70]},{"name":"UCHAR_BIDI_PAIRED_BRACKET_TYPE","features":[70]},{"name":"UCHAR_BINARY_START","features":[70]},{"name":"UCHAR_BLOCK","features":[70]},{"name":"UCHAR_CANONICAL_COMBINING_CLASS","features":[70]},{"name":"UCHAR_CASED","features":[70]},{"name":"UCHAR_CASE_FOLDING","features":[70]},{"name":"UCHAR_CASE_IGNORABLE","features":[70]},{"name":"UCHAR_CASE_SENSITIVE","features":[70]},{"name":"UCHAR_CHANGES_WHEN_CASEFOLDED","features":[70]},{"name":"UCHAR_CHANGES_WHEN_CASEMAPPED","features":[70]},{"name":"UCHAR_CHANGES_WHEN_LOWERCASED","features":[70]},{"name":"UCHAR_CHANGES_WHEN_NFKC_CASEFOLDED","features":[70]},{"name":"UCHAR_CHANGES_WHEN_TITLECASED","features":[70]},{"name":"UCHAR_CHANGES_WHEN_UPPERCASED","features":[70]},{"name":"UCHAR_DASH","features":[70]},{"name":"UCHAR_DECOMPOSITION_TYPE","features":[70]},{"name":"UCHAR_DEFAULT_IGNORABLE_CODE_POINT","features":[70]},{"name":"UCHAR_DEPRECATED","features":[70]},{"name":"UCHAR_DIACRITIC","features":[70]},{"name":"UCHAR_DOUBLE_START","features":[70]},{"name":"UCHAR_EAST_ASIAN_WIDTH","features":[70]},{"name":"UCHAR_EMOJI","features":[70]},{"name":"UCHAR_EMOJI_COMPONENT","features":[70]},{"name":"UCHAR_EMOJI_MODIFIER","features":[70]},{"name":"UCHAR_EMOJI_MODIFIER_BASE","features":[70]},{"name":"UCHAR_EMOJI_PRESENTATION","features":[70]},{"name":"UCHAR_EXTENDED_PICTOGRAPHIC","features":[70]},{"name":"UCHAR_EXTENDER","features":[70]},{"name":"UCHAR_FULL_COMPOSITION_EXCLUSION","features":[70]},{"name":"UCHAR_GENERAL_CATEGORY","features":[70]},{"name":"UCHAR_GENERAL_CATEGORY_MASK","features":[70]},{"name":"UCHAR_GRAPHEME_BASE","features":[70]},{"name":"UCHAR_GRAPHEME_CLUSTER_BREAK","features":[70]},{"name":"UCHAR_GRAPHEME_EXTEND","features":[70]},{"name":"UCHAR_GRAPHEME_LINK","features":[70]},{"name":"UCHAR_HANGUL_SYLLABLE_TYPE","features":[70]},{"name":"UCHAR_HEX_DIGIT","features":[70]},{"name":"UCHAR_HYPHEN","features":[70]},{"name":"UCHAR_IDEOGRAPHIC","features":[70]},{"name":"UCHAR_IDS_BINARY_OPERATOR","features":[70]},{"name":"UCHAR_IDS_TRINARY_OPERATOR","features":[70]},{"name":"UCHAR_ID_CONTINUE","features":[70]},{"name":"UCHAR_ID_START","features":[70]},{"name":"UCHAR_INDIC_POSITIONAL_CATEGORY","features":[70]},{"name":"UCHAR_INDIC_SYLLABIC_CATEGORY","features":[70]},{"name":"UCHAR_INT_START","features":[70]},{"name":"UCHAR_INVALID_CODE","features":[70]},{"name":"UCHAR_JOINING_GROUP","features":[70]},{"name":"UCHAR_JOINING_TYPE","features":[70]},{"name":"UCHAR_JOIN_CONTROL","features":[70]},{"name":"UCHAR_LEAD_CANONICAL_COMBINING_CLASS","features":[70]},{"name":"UCHAR_LINE_BREAK","features":[70]},{"name":"UCHAR_LOGICAL_ORDER_EXCEPTION","features":[70]},{"name":"UCHAR_LOWERCASE","features":[70]},{"name":"UCHAR_LOWERCASE_MAPPING","features":[70]},{"name":"UCHAR_MASK_START","features":[70]},{"name":"UCHAR_MATH","features":[70]},{"name":"UCHAR_MAX_VALUE","features":[70]},{"name":"UCHAR_MIN_VALUE","features":[70]},{"name":"UCHAR_NAME","features":[70]},{"name":"UCHAR_NFC_INERT","features":[70]},{"name":"UCHAR_NFC_QUICK_CHECK","features":[70]},{"name":"UCHAR_NFD_INERT","features":[70]},{"name":"UCHAR_NFD_QUICK_CHECK","features":[70]},{"name":"UCHAR_NFKC_INERT","features":[70]},{"name":"UCHAR_NFKC_QUICK_CHECK","features":[70]},{"name":"UCHAR_NFKD_INERT","features":[70]},{"name":"UCHAR_NFKD_QUICK_CHECK","features":[70]},{"name":"UCHAR_NONCHARACTER_CODE_POINT","features":[70]},{"name":"UCHAR_NUMERIC_TYPE","features":[70]},{"name":"UCHAR_NUMERIC_VALUE","features":[70]},{"name":"UCHAR_OTHER_PROPERTY_START","features":[70]},{"name":"UCHAR_PATTERN_SYNTAX","features":[70]},{"name":"UCHAR_PATTERN_WHITE_SPACE","features":[70]},{"name":"UCHAR_POSIX_ALNUM","features":[70]},{"name":"UCHAR_POSIX_BLANK","features":[70]},{"name":"UCHAR_POSIX_GRAPH","features":[70]},{"name":"UCHAR_POSIX_PRINT","features":[70]},{"name":"UCHAR_POSIX_XDIGIT","features":[70]},{"name":"UCHAR_PREPENDED_CONCATENATION_MARK","features":[70]},{"name":"UCHAR_QUOTATION_MARK","features":[70]},{"name":"UCHAR_RADICAL","features":[70]},{"name":"UCHAR_REGIONAL_INDICATOR","features":[70]},{"name":"UCHAR_SCRIPT","features":[70]},{"name":"UCHAR_SCRIPT_EXTENSIONS","features":[70]},{"name":"UCHAR_SEGMENT_STARTER","features":[70]},{"name":"UCHAR_SENTENCE_BREAK","features":[70]},{"name":"UCHAR_SIMPLE_CASE_FOLDING","features":[70]},{"name":"UCHAR_SIMPLE_LOWERCASE_MAPPING","features":[70]},{"name":"UCHAR_SIMPLE_TITLECASE_MAPPING","features":[70]},{"name":"UCHAR_SIMPLE_UPPERCASE_MAPPING","features":[70]},{"name":"UCHAR_SOFT_DOTTED","features":[70]},{"name":"UCHAR_STRING_START","features":[70]},{"name":"UCHAR_S_TERM","features":[70]},{"name":"UCHAR_TERMINAL_PUNCTUATION","features":[70]},{"name":"UCHAR_TITLECASE_MAPPING","features":[70]},{"name":"UCHAR_TRAIL_CANONICAL_COMBINING_CLASS","features":[70]},{"name":"UCHAR_UNIFIED_IDEOGRAPH","features":[70]},{"name":"UCHAR_UPPERCASE","features":[70]},{"name":"UCHAR_UPPERCASE_MAPPING","features":[70]},{"name":"UCHAR_VARIATION_SELECTOR","features":[70]},{"name":"UCHAR_VERTICAL_ORIENTATION","features":[70]},{"name":"UCHAR_WHITE_SPACE","features":[70]},{"name":"UCHAR_WORD_BREAK","features":[70]},{"name":"UCHAR_XID_CONTINUE","features":[70]},{"name":"UCHAR_XID_START","features":[70]},{"name":"UCLN_NO_AUTO_CLEANUP","features":[70]},{"name":"UCNV_BOCU1","features":[70]},{"name":"UCNV_CESU8","features":[70]},{"name":"UCNV_CLONE","features":[70]},{"name":"UCNV_CLOSE","features":[70]},{"name":"UCNV_COMPOUND_TEXT","features":[70]},{"name":"UCNV_DBCS","features":[70]},{"name":"UCNV_EBCDIC_STATEFUL","features":[70]},{"name":"UCNV_ESCAPE_C","features":[70]},{"name":"UCNV_ESCAPE_CSS2","features":[70]},{"name":"UCNV_ESCAPE_JAVA","features":[70]},{"name":"UCNV_ESCAPE_UNICODE","features":[70]},{"name":"UCNV_ESCAPE_XML_DEC","features":[70]},{"name":"UCNV_ESCAPE_XML_HEX","features":[70]},{"name":"UCNV_FROM_U_CALLBACK_ESCAPE","features":[70]},{"name":"UCNV_FROM_U_CALLBACK_SKIP","features":[70]},{"name":"UCNV_FROM_U_CALLBACK_STOP","features":[70]},{"name":"UCNV_FROM_U_CALLBACK_SUBSTITUTE","features":[70]},{"name":"UCNV_HZ","features":[70]},{"name":"UCNV_IBM","features":[70]},{"name":"UCNV_ILLEGAL","features":[70]},{"name":"UCNV_IMAP_MAILBOX","features":[70]},{"name":"UCNV_IRREGULAR","features":[70]},{"name":"UCNV_ISCII","features":[70]},{"name":"UCNV_ISO_2022","features":[70]},{"name":"UCNV_LATIN_1","features":[70]},{"name":"UCNV_LMBCS_1","features":[70]},{"name":"UCNV_LMBCS_11","features":[70]},{"name":"UCNV_LMBCS_16","features":[70]},{"name":"UCNV_LMBCS_17","features":[70]},{"name":"UCNV_LMBCS_18","features":[70]},{"name":"UCNV_LMBCS_19","features":[70]},{"name":"UCNV_LMBCS_2","features":[70]},{"name":"UCNV_LMBCS_3","features":[70]},{"name":"UCNV_LMBCS_4","features":[70]},{"name":"UCNV_LMBCS_5","features":[70]},{"name":"UCNV_LMBCS_6","features":[70]},{"name":"UCNV_LMBCS_8","features":[70]},{"name":"UCNV_LMBCS_LAST","features":[70]},{"name":"UCNV_LOCALE_OPTION_STRING","features":[70]},{"name":"UCNV_MAX_CONVERTER_NAME_LENGTH","features":[70]},{"name":"UCNV_MBCS","features":[70]},{"name":"UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES","features":[70]},{"name":"UCNV_OPTION_SEP_STRING","features":[70]},{"name":"UCNV_RESET","features":[70]},{"name":"UCNV_ROUNDTRIP_AND_FALLBACK_SET","features":[70]},{"name":"UCNV_ROUNDTRIP_SET","features":[70]},{"name":"UCNV_SBCS","features":[70]},{"name":"UCNV_SCSU","features":[70]},{"name":"UCNV_SI","features":[70]},{"name":"UCNV_SKIP_STOP_ON_ILLEGAL","features":[70]},{"name":"UCNV_SO","features":[70]},{"name":"UCNV_SUB_STOP_ON_ILLEGAL","features":[70]},{"name":"UCNV_SWAP_LFNL_OPTION_STRING","features":[70]},{"name":"UCNV_TO_U_CALLBACK_ESCAPE","features":[70]},{"name":"UCNV_TO_U_CALLBACK_SKIP","features":[70]},{"name":"UCNV_TO_U_CALLBACK_STOP","features":[70]},{"name":"UCNV_TO_U_CALLBACK_SUBSTITUTE","features":[70]},{"name":"UCNV_UNASSIGNED","features":[70]},{"name":"UCNV_UNKNOWN","features":[70]},{"name":"UCNV_UNSUPPORTED_CONVERTER","features":[70]},{"name":"UCNV_US_ASCII","features":[70]},{"name":"UCNV_UTF16","features":[70]},{"name":"UCNV_UTF16_BigEndian","features":[70]},{"name":"UCNV_UTF16_LittleEndian","features":[70]},{"name":"UCNV_UTF32","features":[70]},{"name":"UCNV_UTF32_BigEndian","features":[70]},{"name":"UCNV_UTF32_LittleEndian","features":[70]},{"name":"UCNV_UTF7","features":[70]},{"name":"UCNV_UTF8","features":[70]},{"name":"UCNV_VALUE_SEP_STRING","features":[70]},{"name":"UCNV_VERSION_OPTION_STRING","features":[70]},{"name":"UCOL_ALTERNATE_HANDLING","features":[70]},{"name":"UCOL_ATTRIBUTE_COUNT","features":[70]},{"name":"UCOL_BOUND_LOWER","features":[70]},{"name":"UCOL_BOUND_UPPER","features":[70]},{"name":"UCOL_BOUND_UPPER_LONG","features":[70]},{"name":"UCOL_CASE_FIRST","features":[70]},{"name":"UCOL_CASE_LEVEL","features":[70]},{"name":"UCOL_CE_STRENGTH_LIMIT","features":[70]},{"name":"UCOL_DECOMPOSITION_MODE","features":[70]},{"name":"UCOL_DEFAULT","features":[70]},{"name":"UCOL_DEFAULT_STRENGTH","features":[70]},{"name":"UCOL_EQUAL","features":[70]},{"name":"UCOL_FRENCH_COLLATION","features":[70]},{"name":"UCOL_FULL_RULES","features":[70]},{"name":"UCOL_GREATER","features":[70]},{"name":"UCOL_IDENTICAL","features":[70]},{"name":"UCOL_LESS","features":[70]},{"name":"UCOL_LOWER_FIRST","features":[70]},{"name":"UCOL_NON_IGNORABLE","features":[70]},{"name":"UCOL_NORMALIZATION_MODE","features":[70]},{"name":"UCOL_NUMERIC_COLLATION","features":[70]},{"name":"UCOL_OFF","features":[70]},{"name":"UCOL_ON","features":[70]},{"name":"UCOL_PRIMARY","features":[70]},{"name":"UCOL_QUATERNARY","features":[70]},{"name":"UCOL_REORDER_CODE_CURRENCY","features":[70]},{"name":"UCOL_REORDER_CODE_DEFAULT","features":[70]},{"name":"UCOL_REORDER_CODE_DIGIT","features":[70]},{"name":"UCOL_REORDER_CODE_FIRST","features":[70]},{"name":"UCOL_REORDER_CODE_NONE","features":[70]},{"name":"UCOL_REORDER_CODE_OTHERS","features":[70]},{"name":"UCOL_REORDER_CODE_PUNCTUATION","features":[70]},{"name":"UCOL_REORDER_CODE_SPACE","features":[70]},{"name":"UCOL_REORDER_CODE_SYMBOL","features":[70]},{"name":"UCOL_SECONDARY","features":[70]},{"name":"UCOL_SHIFTED","features":[70]},{"name":"UCOL_STRENGTH","features":[70]},{"name":"UCOL_STRENGTH_LIMIT","features":[70]},{"name":"UCOL_TAILORING_ONLY","features":[70]},{"name":"UCOL_TERTIARY","features":[70]},{"name":"UCOL_UPPER_FIRST","features":[70]},{"name":"UCONFIG_ENABLE_PLUGINS","features":[70]},{"name":"UCONFIG_FORMAT_FASTPATHS_49","features":[70]},{"name":"UCONFIG_HAVE_PARSEALLINPUT","features":[70]},{"name":"UCONFIG_NO_BREAK_ITERATION","features":[70]},{"name":"UCONFIG_NO_COLLATION","features":[70]},{"name":"UCONFIG_NO_CONVERSION","features":[70]},{"name":"UCONFIG_NO_FILE_IO","features":[70]},{"name":"UCONFIG_NO_FILTERED_BREAK_ITERATION","features":[70]},{"name":"UCONFIG_NO_FORMATTING","features":[70]},{"name":"UCONFIG_NO_IDNA","features":[70]},{"name":"UCONFIG_NO_LEGACY_CONVERSION","features":[70]},{"name":"UCONFIG_NO_NORMALIZATION","features":[70]},{"name":"UCONFIG_NO_REGULAR_EXPRESSIONS","features":[70]},{"name":"UCONFIG_NO_SERVICE","features":[70]},{"name":"UCONFIG_NO_TRANSLITERATION","features":[70]},{"name":"UCONFIG_ONLY_COLLATION","features":[70]},{"name":"UCONFIG_ONLY_HTML_CONVERSION","features":[70]},{"name":"UCPMAP_RANGE_FIXED_ALL_SURROGATES","features":[70]},{"name":"UCPMAP_RANGE_FIXED_LEAD_SURROGATES","features":[70]},{"name":"UCPMAP_RANGE_NORMAL","features":[70]},{"name":"UCPMap","features":[70]},{"name":"UCPMapRangeOption","features":[70]},{"name":"UCPMapValueFilter","features":[70]},{"name":"UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET","features":[70]},{"name":"UCPTRIE_FAST_DATA_BLOCK_LENGTH","features":[70]},{"name":"UCPTRIE_FAST_DATA_MASK","features":[70]},{"name":"UCPTRIE_FAST_SHIFT","features":[70]},{"name":"UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET","features":[70]},{"name":"UCPTRIE_SMALL_MAX","features":[70]},{"name":"UCPTRIE_TYPE_ANY","features":[70]},{"name":"UCPTRIE_TYPE_FAST","features":[70]},{"name":"UCPTRIE_TYPE_SMALL","features":[70]},{"name":"UCPTRIE_VALUE_BITS_16","features":[70]},{"name":"UCPTRIE_VALUE_BITS_32","features":[70]},{"name":"UCPTRIE_VALUE_BITS_8","features":[70]},{"name":"UCPTRIE_VALUE_BITS_ANY","features":[70]},{"name":"UCPTrie","features":[70]},{"name":"UCPTrieData","features":[70]},{"name":"UCPTrieType","features":[70]},{"name":"UCPTrieValueWidth","features":[70]},{"name":"UCURR_ALL","features":[70]},{"name":"UCURR_COMMON","features":[70]},{"name":"UCURR_DEPRECATED","features":[70]},{"name":"UCURR_LONG_NAME","features":[70]},{"name":"UCURR_NARROW_SYMBOL_NAME","features":[70]},{"name":"UCURR_NON_DEPRECATED","features":[70]},{"name":"UCURR_SYMBOL_NAME","features":[70]},{"name":"UCURR_UNCOMMON","features":[70]},{"name":"UCURR_USAGE_CASH","features":[70]},{"name":"UCURR_USAGE_STANDARD","features":[70]},{"name":"UCalendarAMPMs","features":[70]},{"name":"UCalendarAttribute","features":[70]},{"name":"UCalendarDateFields","features":[70]},{"name":"UCalendarDaysOfWeek","features":[70]},{"name":"UCalendarDisplayNameType","features":[70]},{"name":"UCalendarLimitType","features":[70]},{"name":"UCalendarMonths","features":[70]},{"name":"UCalendarType","features":[70]},{"name":"UCalendarWallTimeOption","features":[70]},{"name":"UCalendarWeekdayType","features":[70]},{"name":"UCaseMap","features":[70]},{"name":"UCharCategory","features":[70]},{"name":"UCharDirection","features":[70]},{"name":"UCharEnumTypeRange","features":[70]},{"name":"UCharIterator","features":[70]},{"name":"UCharIteratorCurrent","features":[70]},{"name":"UCharIteratorGetIndex","features":[70]},{"name":"UCharIteratorGetState","features":[70]},{"name":"UCharIteratorHasNext","features":[70]},{"name":"UCharIteratorHasPrevious","features":[70]},{"name":"UCharIteratorMove","features":[70]},{"name":"UCharIteratorNext","features":[70]},{"name":"UCharIteratorOrigin","features":[70]},{"name":"UCharIteratorPrevious","features":[70]},{"name":"UCharIteratorReserved","features":[70]},{"name":"UCharIteratorSetState","features":[70]},{"name":"UCharNameChoice","features":[70]},{"name":"UCharsetDetector","features":[70]},{"name":"UCharsetMatch","features":[70]},{"name":"UColAttribute","features":[70]},{"name":"UColAttributeValue","features":[70]},{"name":"UColBoundMode","features":[70]},{"name":"UColReorderCode","features":[70]},{"name":"UColRuleOption","features":[70]},{"name":"UCollationElements","features":[70]},{"name":"UCollationResult","features":[70]},{"name":"UCollator","features":[70]},{"name":"UConstrainedFieldPosition","features":[70]},{"name":"UConverter","features":[70]},{"name":"UConverterCallbackReason","features":[70]},{"name":"UConverterFromUCallback","features":[70]},{"name":"UConverterFromUnicodeArgs","features":[70]},{"name":"UConverterPlatform","features":[70]},{"name":"UConverterSelector","features":[70]},{"name":"UConverterToUCallback","features":[70]},{"name":"UConverterToUnicodeArgs","features":[70]},{"name":"UConverterType","features":[70]},{"name":"UConverterUnicodeSet","features":[70]},{"name":"UCurrCurrencyType","features":[70]},{"name":"UCurrNameStyle","features":[70]},{"name":"UCurrencySpacing","features":[70]},{"name":"UCurrencyUsage","features":[70]},{"name":"UDATPG_ABBREVIATED","features":[70]},{"name":"UDATPG_BASE_CONFLICT","features":[70]},{"name":"UDATPG_CONFLICT","features":[70]},{"name":"UDATPG_DAYPERIOD_FIELD","features":[70]},{"name":"UDATPG_DAY_FIELD","features":[70]},{"name":"UDATPG_DAY_OF_WEEK_IN_MONTH_FIELD","features":[70]},{"name":"UDATPG_DAY_OF_YEAR_FIELD","features":[70]},{"name":"UDATPG_ERA_FIELD","features":[70]},{"name":"UDATPG_FIELD_COUNT","features":[70]},{"name":"UDATPG_FRACTIONAL_SECOND_FIELD","features":[70]},{"name":"UDATPG_HOUR_FIELD","features":[70]},{"name":"UDATPG_MATCH_ALL_FIELDS_LENGTH","features":[70]},{"name":"UDATPG_MATCH_HOUR_FIELD_LENGTH","features":[70]},{"name":"UDATPG_MATCH_NO_OPTIONS","features":[70]},{"name":"UDATPG_MINUTE_FIELD","features":[70]},{"name":"UDATPG_MONTH_FIELD","features":[70]},{"name":"UDATPG_NARROW","features":[70]},{"name":"UDATPG_NO_CONFLICT","features":[70]},{"name":"UDATPG_QUARTER_FIELD","features":[70]},{"name":"UDATPG_SECOND_FIELD","features":[70]},{"name":"UDATPG_WEEKDAY_FIELD","features":[70]},{"name":"UDATPG_WEEK_OF_MONTH_FIELD","features":[70]},{"name":"UDATPG_WEEK_OF_YEAR_FIELD","features":[70]},{"name":"UDATPG_WIDE","features":[70]},{"name":"UDATPG_YEAR_FIELD","features":[70]},{"name":"UDATPG_ZONE_FIELD","features":[70]},{"name":"UDAT_ABBR_GENERIC_TZ","features":[70]},{"name":"UDAT_ABBR_MONTH","features":[70]},{"name":"UDAT_ABBR_MONTH_DAY","features":[70]},{"name":"UDAT_ABBR_MONTH_WEEKDAY_DAY","features":[70]},{"name":"UDAT_ABBR_QUARTER","features":[70]},{"name":"UDAT_ABBR_SPECIFIC_TZ","features":[70]},{"name":"UDAT_ABBR_UTC_TZ","features":[70]},{"name":"UDAT_ABBR_WEEKDAY","features":[70]},{"name":"UDAT_ABSOLUTE_DAY","features":[70]},{"name":"UDAT_ABSOLUTE_FRIDAY","features":[70]},{"name":"UDAT_ABSOLUTE_MONDAY","features":[70]},{"name":"UDAT_ABSOLUTE_MONTH","features":[70]},{"name":"UDAT_ABSOLUTE_NOW","features":[70]},{"name":"UDAT_ABSOLUTE_SATURDAY","features":[70]},{"name":"UDAT_ABSOLUTE_SUNDAY","features":[70]},{"name":"UDAT_ABSOLUTE_THURSDAY","features":[70]},{"name":"UDAT_ABSOLUTE_TUESDAY","features":[70]},{"name":"UDAT_ABSOLUTE_UNIT_COUNT","features":[70]},{"name":"UDAT_ABSOLUTE_WEDNESDAY","features":[70]},{"name":"UDAT_ABSOLUTE_WEEK","features":[70]},{"name":"UDAT_ABSOLUTE_YEAR","features":[70]},{"name":"UDAT_AM_PMS","features":[70]},{"name":"UDAT_AM_PM_FIELD","features":[70]},{"name":"UDAT_AM_PM_MIDNIGHT_NOON_FIELD","features":[70]},{"name":"UDAT_BOOLEAN_ATTRIBUTE_COUNT","features":[70]},{"name":"UDAT_CYCLIC_YEARS_ABBREVIATED","features":[70]},{"name":"UDAT_CYCLIC_YEARS_NARROW","features":[70]},{"name":"UDAT_CYCLIC_YEARS_WIDE","features":[70]},{"name":"UDAT_DATE_FIELD","features":[70]},{"name":"UDAT_DAY","features":[70]},{"name":"UDAT_DAY_OF_WEEK_FIELD","features":[70]},{"name":"UDAT_DAY_OF_WEEK_IN_MONTH_FIELD","features":[70]},{"name":"UDAT_DAY_OF_YEAR_FIELD","features":[70]},{"name":"UDAT_DEFAULT","features":[70]},{"name":"UDAT_DIRECTION_COUNT","features":[70]},{"name":"UDAT_DIRECTION_LAST","features":[70]},{"name":"UDAT_DIRECTION_LAST_2","features":[70]},{"name":"UDAT_DIRECTION_NEXT","features":[70]},{"name":"UDAT_DIRECTION_NEXT_2","features":[70]},{"name":"UDAT_DIRECTION_PLAIN","features":[70]},{"name":"UDAT_DIRECTION_THIS","features":[70]},{"name":"UDAT_DOW_LOCAL_FIELD","features":[70]},{"name":"UDAT_ERAS","features":[70]},{"name":"UDAT_ERA_FIELD","features":[70]},{"name":"UDAT_ERA_NAMES","features":[70]},{"name":"UDAT_EXTENDED_YEAR_FIELD","features":[70]},{"name":"UDAT_FLEXIBLE_DAY_PERIOD_FIELD","features":[70]},{"name":"UDAT_FRACTIONAL_SECOND_FIELD","features":[70]},{"name":"UDAT_FULL","features":[70]},{"name":"UDAT_FULL_RELATIVE","features":[70]},{"name":"UDAT_GENERIC_TZ","features":[70]},{"name":"UDAT_HOUR","features":[70]},{"name":"UDAT_HOUR0_FIELD","features":[70]},{"name":"UDAT_HOUR1_FIELD","features":[70]},{"name":"UDAT_HOUR24","features":[70]},{"name":"UDAT_HOUR24_MINUTE","features":[70]},{"name":"UDAT_HOUR24_MINUTE_SECOND","features":[70]},{"name":"UDAT_HOUR_MINUTE","features":[70]},{"name":"UDAT_HOUR_MINUTE_SECOND","features":[70]},{"name":"UDAT_HOUR_OF_DAY0_FIELD","features":[70]},{"name":"UDAT_HOUR_OF_DAY1_FIELD","features":[70]},{"name":"UDAT_JULIAN_DAY_FIELD","features":[70]},{"name":"UDAT_LOCALIZED_CHARS","features":[70]},{"name":"UDAT_LOCATION_TZ","features":[70]},{"name":"UDAT_LONG","features":[70]},{"name":"UDAT_LONG_RELATIVE","features":[70]},{"name":"UDAT_MEDIUM","features":[70]},{"name":"UDAT_MEDIUM_RELATIVE","features":[70]},{"name":"UDAT_MILLISECONDS_IN_DAY_FIELD","features":[70]},{"name":"UDAT_MINUTE","features":[70]},{"name":"UDAT_MINUTE_FIELD","features":[70]},{"name":"UDAT_MINUTE_SECOND","features":[70]},{"name":"UDAT_MONTH","features":[70]},{"name":"UDAT_MONTHS","features":[70]},{"name":"UDAT_MONTH_DAY","features":[70]},{"name":"UDAT_MONTH_FIELD","features":[70]},{"name":"UDAT_MONTH_WEEKDAY_DAY","features":[70]},{"name":"UDAT_NARROW_MONTHS","features":[70]},{"name":"UDAT_NARROW_WEEKDAYS","features":[70]},{"name":"UDAT_NONE","features":[70]},{"name":"UDAT_NUM_MONTH","features":[70]},{"name":"UDAT_NUM_MONTH_DAY","features":[70]},{"name":"UDAT_NUM_MONTH_WEEKDAY_DAY","features":[70]},{"name":"UDAT_PARSE_ALLOW_NUMERIC","features":[70]},{"name":"UDAT_PARSE_ALLOW_WHITESPACE","features":[70]},{"name":"UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH","features":[70]},{"name":"UDAT_PARSE_PARTIAL_LITERAL_MATCH","features":[70]},{"name":"UDAT_PATTERN","features":[70]},{"name":"UDAT_QUARTER","features":[70]},{"name":"UDAT_QUARTERS","features":[70]},{"name":"UDAT_QUARTER_FIELD","features":[70]},{"name":"UDAT_RELATIVE","features":[70]},{"name":"UDAT_RELATIVE_DAYS","features":[70]},{"name":"UDAT_RELATIVE_HOURS","features":[70]},{"name":"UDAT_RELATIVE_MINUTES","features":[70]},{"name":"UDAT_RELATIVE_MONTHS","features":[70]},{"name":"UDAT_RELATIVE_SECONDS","features":[70]},{"name":"UDAT_RELATIVE_UNIT_COUNT","features":[70]},{"name":"UDAT_RELATIVE_WEEKS","features":[70]},{"name":"UDAT_RELATIVE_YEARS","features":[70]},{"name":"UDAT_REL_LITERAL_FIELD","features":[70]},{"name":"UDAT_REL_NUMERIC_FIELD","features":[70]},{"name":"UDAT_REL_UNIT_DAY","features":[70]},{"name":"UDAT_REL_UNIT_FRIDAY","features":[70]},{"name":"UDAT_REL_UNIT_HOUR","features":[70]},{"name":"UDAT_REL_UNIT_MINUTE","features":[70]},{"name":"UDAT_REL_UNIT_MONDAY","features":[70]},{"name":"UDAT_REL_UNIT_MONTH","features":[70]},{"name":"UDAT_REL_UNIT_QUARTER","features":[70]},{"name":"UDAT_REL_UNIT_SATURDAY","features":[70]},{"name":"UDAT_REL_UNIT_SECOND","features":[70]},{"name":"UDAT_REL_UNIT_SUNDAY","features":[70]},{"name":"UDAT_REL_UNIT_THURSDAY","features":[70]},{"name":"UDAT_REL_UNIT_TUESDAY","features":[70]},{"name":"UDAT_REL_UNIT_WEDNESDAY","features":[70]},{"name":"UDAT_REL_UNIT_WEEK","features":[70]},{"name":"UDAT_REL_UNIT_YEAR","features":[70]},{"name":"UDAT_SECOND","features":[70]},{"name":"UDAT_SECOND_FIELD","features":[70]},{"name":"UDAT_SHORT","features":[70]},{"name":"UDAT_SHORTER_WEEKDAYS","features":[70]},{"name":"UDAT_SHORT_MONTHS","features":[70]},{"name":"UDAT_SHORT_QUARTERS","features":[70]},{"name":"UDAT_SHORT_RELATIVE","features":[70]},{"name":"UDAT_SHORT_WEEKDAYS","features":[70]},{"name":"UDAT_SPECIFIC_TZ","features":[70]},{"name":"UDAT_STANDALONE_DAY_FIELD","features":[70]},{"name":"UDAT_STANDALONE_MONTHS","features":[70]},{"name":"UDAT_STANDALONE_MONTH_FIELD","features":[70]},{"name":"UDAT_STANDALONE_NARROW_MONTHS","features":[70]},{"name":"UDAT_STANDALONE_NARROW_WEEKDAYS","features":[70]},{"name":"UDAT_STANDALONE_QUARTERS","features":[70]},{"name":"UDAT_STANDALONE_QUARTER_FIELD","features":[70]},{"name":"UDAT_STANDALONE_SHORTER_WEEKDAYS","features":[70]},{"name":"UDAT_STANDALONE_SHORT_MONTHS","features":[70]},{"name":"UDAT_STANDALONE_SHORT_QUARTERS","features":[70]},{"name":"UDAT_STANDALONE_SHORT_WEEKDAYS","features":[70]},{"name":"UDAT_STANDALONE_WEEKDAYS","features":[70]},{"name":"UDAT_STYLE_LONG","features":[70]},{"name":"UDAT_STYLE_NARROW","features":[70]},{"name":"UDAT_STYLE_SHORT","features":[70]},{"name":"UDAT_TIMEZONE_FIELD","features":[70]},{"name":"UDAT_TIMEZONE_GENERIC_FIELD","features":[70]},{"name":"UDAT_TIMEZONE_ISO_FIELD","features":[70]},{"name":"UDAT_TIMEZONE_ISO_LOCAL_FIELD","features":[70]},{"name":"UDAT_TIMEZONE_LOCALIZED_GMT_OFFSET_FIELD","features":[70]},{"name":"UDAT_TIMEZONE_RFC_FIELD","features":[70]},{"name":"UDAT_TIMEZONE_SPECIAL_FIELD","features":[70]},{"name":"UDAT_WEEKDAY","features":[70]},{"name":"UDAT_WEEKDAYS","features":[70]},{"name":"UDAT_WEEK_OF_MONTH_FIELD","features":[70]},{"name":"UDAT_WEEK_OF_YEAR_FIELD","features":[70]},{"name":"UDAT_YEAR","features":[70]},{"name":"UDAT_YEAR_ABBR_MONTH","features":[70]},{"name":"UDAT_YEAR_ABBR_MONTH_DAY","features":[70]},{"name":"UDAT_YEAR_ABBR_MONTH_WEEKDAY_DAY","features":[70]},{"name":"UDAT_YEAR_ABBR_QUARTER","features":[70]},{"name":"UDAT_YEAR_FIELD","features":[70]},{"name":"UDAT_YEAR_MONTH","features":[70]},{"name":"UDAT_YEAR_MONTH_DAY","features":[70]},{"name":"UDAT_YEAR_MONTH_WEEKDAY_DAY","features":[70]},{"name":"UDAT_YEAR_NAME_FIELD","features":[70]},{"name":"UDAT_YEAR_NUM_MONTH","features":[70]},{"name":"UDAT_YEAR_NUM_MONTH_DAY","features":[70]},{"name":"UDAT_YEAR_NUM_MONTH_WEEKDAY_DAY","features":[70]},{"name":"UDAT_YEAR_QUARTER","features":[70]},{"name":"UDAT_YEAR_WOY_FIELD","features":[70]},{"name":"UDAT_ZODIAC_NAMES_ABBREVIATED","features":[70]},{"name":"UDAT_ZODIAC_NAMES_NARROW","features":[70]},{"name":"UDAT_ZODIAC_NAMES_WIDE","features":[70]},{"name":"UDISPCTX_CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE","features":[70]},{"name":"UDISPCTX_CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE","features":[70]},{"name":"UDISPCTX_CAPITALIZATION_FOR_STANDALONE","features":[70]},{"name":"UDISPCTX_CAPITALIZATION_FOR_UI_LIST_OR_MENU","features":[70]},{"name":"UDISPCTX_CAPITALIZATION_NONE","features":[70]},{"name":"UDISPCTX_DIALECT_NAMES","features":[70]},{"name":"UDISPCTX_LENGTH_FULL","features":[70]},{"name":"UDISPCTX_LENGTH_SHORT","features":[70]},{"name":"UDISPCTX_NO_SUBSTITUTE","features":[70]},{"name":"UDISPCTX_STANDARD_NAMES","features":[70]},{"name":"UDISPCTX_SUBSTITUTE","features":[70]},{"name":"UDISPCTX_TYPE_CAPITALIZATION","features":[70]},{"name":"UDISPCTX_TYPE_DIALECT_HANDLING","features":[70]},{"name":"UDISPCTX_TYPE_DISPLAY_LENGTH","features":[70]},{"name":"UDISPCTX_TYPE_SUBSTITUTE_HANDLING","features":[70]},{"name":"UDTS_DB2_TIME","features":[70]},{"name":"UDTS_DOTNET_DATE_TIME","features":[70]},{"name":"UDTS_EXCEL_TIME","features":[70]},{"name":"UDTS_ICU4C_TIME","features":[70]},{"name":"UDTS_JAVA_TIME","features":[70]},{"name":"UDTS_MAC_OLD_TIME","features":[70]},{"name":"UDTS_MAC_TIME","features":[70]},{"name":"UDTS_UNIX_MICROSECONDS_TIME","features":[70]},{"name":"UDTS_UNIX_TIME","features":[70]},{"name":"UDTS_WINDOWS_FILE_TIME","features":[70]},{"name":"UDateAbsoluteUnit","features":[70]},{"name":"UDateDirection","features":[70]},{"name":"UDateFormatBooleanAttribute","features":[70]},{"name":"UDateFormatField","features":[70]},{"name":"UDateFormatStyle","features":[70]},{"name":"UDateFormatSymbolType","features":[70]},{"name":"UDateFormatSymbols","features":[70]},{"name":"UDateIntervalFormat","features":[70]},{"name":"UDateRelativeDateTimeFormatterStyle","features":[70]},{"name":"UDateRelativeUnit","features":[70]},{"name":"UDateTimePGDisplayWidth","features":[70]},{"name":"UDateTimePatternConflict","features":[70]},{"name":"UDateTimePatternField","features":[70]},{"name":"UDateTimePatternMatchOptions","features":[70]},{"name":"UDateTimeScale","features":[70]},{"name":"UDecompositionType","features":[70]},{"name":"UDialectHandling","features":[70]},{"name":"UDisplayContext","features":[70]},{"name":"UDisplayContextType","features":[70]},{"name":"UEastAsianWidth","features":[70]},{"name":"UEnumCharNamesFn","features":[70]},{"name":"UEnumeration","features":[70]},{"name":"UErrorCode","features":[70]},{"name":"UFIELD_CATEGORY_DATE","features":[70]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL","features":[70]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL_SPAN","features":[70]},{"name":"UFIELD_CATEGORY_LIST","features":[70]},{"name":"UFIELD_CATEGORY_LIST_SPAN","features":[70]},{"name":"UFIELD_CATEGORY_NUMBER","features":[70]},{"name":"UFIELD_CATEGORY_RELATIVE_DATETIME","features":[70]},{"name":"UFIELD_CATEGORY_UNDEFINED","features":[70]},{"name":"UFMT_ARRAY","features":[70]},{"name":"UFMT_DATE","features":[70]},{"name":"UFMT_DOUBLE","features":[70]},{"name":"UFMT_INT64","features":[70]},{"name":"UFMT_LONG","features":[70]},{"name":"UFMT_OBJECT","features":[70]},{"name":"UFMT_STRING","features":[70]},{"name":"UFieldCategory","features":[70]},{"name":"UFieldPosition","features":[70]},{"name":"UFieldPositionIterator","features":[70]},{"name":"UFormattableType","features":[70]},{"name":"UFormattedDateInterval","features":[70]},{"name":"UFormattedList","features":[70]},{"name":"UFormattedNumber","features":[70]},{"name":"UFormattedNumberRange","features":[70]},{"name":"UFormattedRelativeDateTime","features":[70]},{"name":"UFormattedValue","features":[70]},{"name":"UGENDER_FEMALE","features":[70]},{"name":"UGENDER_MALE","features":[70]},{"name":"UGENDER_OTHER","features":[70]},{"name":"UGender","features":[70]},{"name":"UGenderInfo","features":[70]},{"name":"UGraphemeClusterBreak","features":[70]},{"name":"UHangulSyllableType","features":[70]},{"name":"UHashtable","features":[70]},{"name":"UIDNA","features":[70]},{"name":"UIDNAInfo","features":[70]},{"name":"UIDNA_CHECK_BIDI","features":[70]},{"name":"UIDNA_CHECK_CONTEXTJ","features":[70]},{"name":"UIDNA_CHECK_CONTEXTO","features":[70]},{"name":"UIDNA_DEFAULT","features":[70]},{"name":"UIDNA_ERROR_BIDI","features":[70]},{"name":"UIDNA_ERROR_CONTEXTJ","features":[70]},{"name":"UIDNA_ERROR_CONTEXTO_DIGITS","features":[70]},{"name":"UIDNA_ERROR_CONTEXTO_PUNCTUATION","features":[70]},{"name":"UIDNA_ERROR_DISALLOWED","features":[70]},{"name":"UIDNA_ERROR_DOMAIN_NAME_TOO_LONG","features":[70]},{"name":"UIDNA_ERROR_EMPTY_LABEL","features":[70]},{"name":"UIDNA_ERROR_HYPHEN_3_4","features":[70]},{"name":"UIDNA_ERROR_INVALID_ACE_LABEL","features":[70]},{"name":"UIDNA_ERROR_LABEL_HAS_DOT","features":[70]},{"name":"UIDNA_ERROR_LABEL_TOO_LONG","features":[70]},{"name":"UIDNA_ERROR_LEADING_COMBINING_MARK","features":[70]},{"name":"UIDNA_ERROR_LEADING_HYPHEN","features":[70]},{"name":"UIDNA_ERROR_PUNYCODE","features":[70]},{"name":"UIDNA_ERROR_TRAILING_HYPHEN","features":[70]},{"name":"UIDNA_NONTRANSITIONAL_TO_ASCII","features":[70]},{"name":"UIDNA_NONTRANSITIONAL_TO_UNICODE","features":[70]},{"name":"UIDNA_USE_STD3_RULES","features":[70]},{"name":"UILANGUAGE_ENUMPROCA","features":[1,70]},{"name":"UILANGUAGE_ENUMPROCW","features":[1,70]},{"name":"UITER_CURRENT","features":[70]},{"name":"UITER_LENGTH","features":[70]},{"name":"UITER_LIMIT","features":[70]},{"name":"UITER_START","features":[70]},{"name":"UITER_UNKNOWN_INDEX","features":[70]},{"name":"UITER_ZERO","features":[70]},{"name":"UIndicPositionalCategory","features":[70]},{"name":"UIndicSyllabicCategory","features":[70]},{"name":"UJoiningGroup","features":[70]},{"name":"UJoiningType","features":[70]},{"name":"ULDN_DIALECT_NAMES","features":[70]},{"name":"ULDN_STANDARD_NAMES","features":[70]},{"name":"ULISTFMT_ELEMENT_FIELD","features":[70]},{"name":"ULISTFMT_LITERAL_FIELD","features":[70]},{"name":"ULISTFMT_TYPE_AND","features":[70]},{"name":"ULISTFMT_TYPE_OR","features":[70]},{"name":"ULISTFMT_TYPE_UNITS","features":[70]},{"name":"ULISTFMT_WIDTH_NARROW","features":[70]},{"name":"ULISTFMT_WIDTH_SHORT","features":[70]},{"name":"ULISTFMT_WIDTH_WIDE","features":[70]},{"name":"ULOCDATA_ALT_QUOTATION_END","features":[70]},{"name":"ULOCDATA_ALT_QUOTATION_START","features":[70]},{"name":"ULOCDATA_ES_AUXILIARY","features":[70]},{"name":"ULOCDATA_ES_INDEX","features":[70]},{"name":"ULOCDATA_ES_PUNCTUATION","features":[70]},{"name":"ULOCDATA_ES_STANDARD","features":[70]},{"name":"ULOCDATA_QUOTATION_END","features":[70]},{"name":"ULOCDATA_QUOTATION_START","features":[70]},{"name":"ULOC_ACCEPT_FAILED","features":[70]},{"name":"ULOC_ACCEPT_FALLBACK","features":[70]},{"name":"ULOC_ACCEPT_VALID","features":[70]},{"name":"ULOC_ACTUAL_LOCALE","features":[70]},{"name":"ULOC_AVAILABLE_DEFAULT","features":[70]},{"name":"ULOC_AVAILABLE_ONLY_LEGACY_ALIASES","features":[70]},{"name":"ULOC_AVAILABLE_WITH_LEGACY_ALIASES","features":[70]},{"name":"ULOC_CANADA","features":[70]},{"name":"ULOC_CANADA_FRENCH","features":[70]},{"name":"ULOC_CHINA","features":[70]},{"name":"ULOC_CHINESE","features":[70]},{"name":"ULOC_COUNTRY_CAPACITY","features":[70]},{"name":"ULOC_ENGLISH","features":[70]},{"name":"ULOC_FRANCE","features":[70]},{"name":"ULOC_FRENCH","features":[70]},{"name":"ULOC_FULLNAME_CAPACITY","features":[70]},{"name":"ULOC_GERMAN","features":[70]},{"name":"ULOC_GERMANY","features":[70]},{"name":"ULOC_ITALIAN","features":[70]},{"name":"ULOC_ITALY","features":[70]},{"name":"ULOC_JAPAN","features":[70]},{"name":"ULOC_JAPANESE","features":[70]},{"name":"ULOC_KEYWORDS_CAPACITY","features":[70]},{"name":"ULOC_KEYWORD_AND_VALUES_CAPACITY","features":[70]},{"name":"ULOC_KEYWORD_ASSIGN_UNICODE","features":[70]},{"name":"ULOC_KEYWORD_ITEM_SEPARATOR_UNICODE","features":[70]},{"name":"ULOC_KEYWORD_SEPARATOR_UNICODE","features":[70]},{"name":"ULOC_KOREA","features":[70]},{"name":"ULOC_KOREAN","features":[70]},{"name":"ULOC_LANG_CAPACITY","features":[70]},{"name":"ULOC_LAYOUT_BTT","features":[70]},{"name":"ULOC_LAYOUT_LTR","features":[70]},{"name":"ULOC_LAYOUT_RTL","features":[70]},{"name":"ULOC_LAYOUT_TTB","features":[70]},{"name":"ULOC_LAYOUT_UNKNOWN","features":[70]},{"name":"ULOC_PRC","features":[70]},{"name":"ULOC_SCRIPT_CAPACITY","features":[70]},{"name":"ULOC_SIMPLIFIED_CHINESE","features":[70]},{"name":"ULOC_TAIWAN","features":[70]},{"name":"ULOC_TRADITIONAL_CHINESE","features":[70]},{"name":"ULOC_UK","features":[70]},{"name":"ULOC_US","features":[70]},{"name":"ULOC_VALID_LOCALE","features":[70]},{"name":"ULayoutType","features":[70]},{"name":"ULineBreak","features":[70]},{"name":"ULineBreakTag","features":[70]},{"name":"UListFormatter","features":[70]},{"name":"UListFormatterField","features":[70]},{"name":"UListFormatterType","features":[70]},{"name":"UListFormatterWidth","features":[70]},{"name":"ULocAvailableType","features":[70]},{"name":"ULocDataLocaleType","features":[70]},{"name":"ULocaleData","features":[70]},{"name":"ULocaleDataDelimiterType","features":[70]},{"name":"ULocaleDataExemplarSetType","features":[70]},{"name":"ULocaleDisplayNames","features":[70]},{"name":"UMEASFMT_WIDTH_COUNT","features":[70]},{"name":"UMEASFMT_WIDTH_NARROW","features":[70]},{"name":"UMEASFMT_WIDTH_NUMERIC","features":[70]},{"name":"UMEASFMT_WIDTH_SHORT","features":[70]},{"name":"UMEASFMT_WIDTH_WIDE","features":[70]},{"name":"UMSGPAT_APOS_DOUBLE_OPTIONAL","features":[70]},{"name":"UMSGPAT_APOS_DOUBLE_REQUIRED","features":[70]},{"name":"UMSGPAT_ARG_NAME_NOT_NUMBER","features":[70]},{"name":"UMSGPAT_ARG_NAME_NOT_VALID","features":[70]},{"name":"UMSGPAT_ARG_TYPE_CHOICE","features":[70]},{"name":"UMSGPAT_ARG_TYPE_NONE","features":[70]},{"name":"UMSGPAT_ARG_TYPE_PLURAL","features":[70]},{"name":"UMSGPAT_ARG_TYPE_SELECT","features":[70]},{"name":"UMSGPAT_ARG_TYPE_SELECTORDINAL","features":[70]},{"name":"UMSGPAT_ARG_TYPE_SIMPLE","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_DOUBLE","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_INT","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_LIMIT","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_NAME","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_NUMBER","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_SELECTOR","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_START","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_STYLE","features":[70]},{"name":"UMSGPAT_PART_TYPE_ARG_TYPE","features":[70]},{"name":"UMSGPAT_PART_TYPE_INSERT_CHAR","features":[70]},{"name":"UMSGPAT_PART_TYPE_MSG_LIMIT","features":[70]},{"name":"UMSGPAT_PART_TYPE_MSG_START","features":[70]},{"name":"UMSGPAT_PART_TYPE_REPLACE_NUMBER","features":[70]},{"name":"UMSGPAT_PART_TYPE_SKIP_SYNTAX","features":[70]},{"name":"UMS_SI","features":[70]},{"name":"UMS_UK","features":[70]},{"name":"UMS_US","features":[70]},{"name":"UMeasureFormatWidth","features":[70]},{"name":"UMeasurementSystem","features":[70]},{"name":"UMemAllocFn","features":[70]},{"name":"UMemFreeFn","features":[70]},{"name":"UMemReallocFn","features":[70]},{"name":"UMessagePatternApostropheMode","features":[70]},{"name":"UMessagePatternArgType","features":[70]},{"name":"UMessagePatternPartType","features":[70]},{"name":"UMutableCPTrie","features":[70]},{"name":"UNESCAPE_CHAR_AT","features":[70]},{"name":"UNICODERANGE","features":[70]},{"name":"UNISCRIBE_OPENTYPE","features":[70]},{"name":"UNORM2_COMPOSE","features":[70]},{"name":"UNORM2_COMPOSE_CONTIGUOUS","features":[70]},{"name":"UNORM2_DECOMPOSE","features":[70]},{"name":"UNORM2_FCD","features":[70]},{"name":"UNORM_DEFAULT","features":[70]},{"name":"UNORM_FCD","features":[70]},{"name":"UNORM_INPUT_IS_FCD","features":[70]},{"name":"UNORM_MAYBE","features":[70]},{"name":"UNORM_MODE_COUNT","features":[70]},{"name":"UNORM_NFC","features":[70]},{"name":"UNORM_NFD","features":[70]},{"name":"UNORM_NFKC","features":[70]},{"name":"UNORM_NFKD","features":[70]},{"name":"UNORM_NO","features":[70]},{"name":"UNORM_NONE","features":[70]},{"name":"UNORM_YES","features":[70]},{"name":"UNUM_CASH_CURRENCY","features":[70]},{"name":"UNUM_COMPACT_FIELD","features":[70]},{"name":"UNUM_CURRENCY","features":[70]},{"name":"UNUM_CURRENCY_ACCOUNTING","features":[70]},{"name":"UNUM_CURRENCY_CODE","features":[70]},{"name":"UNUM_CURRENCY_FIELD","features":[70]},{"name":"UNUM_CURRENCY_INSERT","features":[70]},{"name":"UNUM_CURRENCY_ISO","features":[70]},{"name":"UNUM_CURRENCY_MATCH","features":[70]},{"name":"UNUM_CURRENCY_PLURAL","features":[70]},{"name":"UNUM_CURRENCY_SPACING_COUNT","features":[70]},{"name":"UNUM_CURRENCY_STANDARD","features":[70]},{"name":"UNUM_CURRENCY_SURROUNDING_MATCH","features":[70]},{"name":"UNUM_CURRENCY_SYMBOL","features":[70]},{"name":"UNUM_CURRENCY_USAGE","features":[70]},{"name":"UNUM_DECIMAL","features":[70]},{"name":"UNUM_DECIMAL_ALWAYS_SHOWN","features":[70]},{"name":"UNUM_DECIMAL_COMPACT_LONG","features":[70]},{"name":"UNUM_DECIMAL_COMPACT_SHORT","features":[70]},{"name":"UNUM_DECIMAL_SEPARATOR_ALWAYS","features":[70]},{"name":"UNUM_DECIMAL_SEPARATOR_AUTO","features":[70]},{"name":"UNUM_DECIMAL_SEPARATOR_COUNT","features":[70]},{"name":"UNUM_DECIMAL_SEPARATOR_FIELD","features":[70]},{"name":"UNUM_DECIMAL_SEPARATOR_SYMBOL","features":[70]},{"name":"UNUM_DEFAULT","features":[70]},{"name":"UNUM_DEFAULT_RULESET","features":[70]},{"name":"UNUM_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_DURATION","features":[70]},{"name":"UNUM_EIGHT_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_EXPONENTIAL_SYMBOL","features":[70]},{"name":"UNUM_EXPONENT_FIELD","features":[70]},{"name":"UNUM_EXPONENT_MULTIPLICATION_SYMBOL","features":[70]},{"name":"UNUM_EXPONENT_SIGN_FIELD","features":[70]},{"name":"UNUM_EXPONENT_SYMBOL_FIELD","features":[70]},{"name":"UNUM_FIVE_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_FORMAT_ATTRIBUTE_VALUE_HIDDEN","features":[70]},{"name":"UNUM_FORMAT_FAIL_IF_MORE_THAN_MAX_DIGITS","features":[70]},{"name":"UNUM_FORMAT_WIDTH","features":[70]},{"name":"UNUM_FOUR_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_FRACTION_DIGITS","features":[70]},{"name":"UNUM_FRACTION_FIELD","features":[70]},{"name":"UNUM_GROUPING_AUTO","features":[70]},{"name":"UNUM_GROUPING_MIN2","features":[70]},{"name":"UNUM_GROUPING_OFF","features":[70]},{"name":"UNUM_GROUPING_ON_ALIGNED","features":[70]},{"name":"UNUM_GROUPING_SEPARATOR_FIELD","features":[70]},{"name":"UNUM_GROUPING_SEPARATOR_SYMBOL","features":[70]},{"name":"UNUM_GROUPING_SIZE","features":[70]},{"name":"UNUM_GROUPING_THOUSANDS","features":[70]},{"name":"UNUM_GROUPING_USED","features":[70]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY","features":[70]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY_OR_SINGLE_VALUE","features":[70]},{"name":"UNUM_IDENTITY_FALLBACK_RANGE","features":[70]},{"name":"UNUM_IDENTITY_FALLBACK_SINGLE_VALUE","features":[70]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_AFTER_ROUNDING","features":[70]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_BEFORE_ROUNDING","features":[70]},{"name":"UNUM_IDENTITY_RESULT_NOT_EQUAL","features":[70]},{"name":"UNUM_IGNORE","features":[70]},{"name":"UNUM_INFINITY_SYMBOL","features":[70]},{"name":"UNUM_INTEGER_DIGITS","features":[70]},{"name":"UNUM_INTEGER_FIELD","features":[70]},{"name":"UNUM_INTL_CURRENCY_SYMBOL","features":[70]},{"name":"UNUM_LENIENT_PARSE","features":[70]},{"name":"UNUM_LONG","features":[70]},{"name":"UNUM_MAX_FRACTION_DIGITS","features":[70]},{"name":"UNUM_MAX_INTEGER_DIGITS","features":[70]},{"name":"UNUM_MAX_SIGNIFICANT_DIGITS","features":[70]},{"name":"UNUM_MEASURE_UNIT_FIELD","features":[70]},{"name":"UNUM_MINIMUM_GROUPING_DIGITS","features":[70]},{"name":"UNUM_MINUS_SIGN_SYMBOL","features":[70]},{"name":"UNUM_MIN_FRACTION_DIGITS","features":[70]},{"name":"UNUM_MIN_INTEGER_DIGITS","features":[70]},{"name":"UNUM_MIN_SIGNIFICANT_DIGITS","features":[70]},{"name":"UNUM_MONETARY_GROUPING_SEPARATOR_SYMBOL","features":[70]},{"name":"UNUM_MONETARY_SEPARATOR_SYMBOL","features":[70]},{"name":"UNUM_MULTIPLIER","features":[70]},{"name":"UNUM_NAN_SYMBOL","features":[70]},{"name":"UNUM_NEGATIVE_PREFIX","features":[70]},{"name":"UNUM_NEGATIVE_SUFFIX","features":[70]},{"name":"UNUM_NINE_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_NUMBERING_SYSTEM","features":[70]},{"name":"UNUM_ONE_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_ORDINAL","features":[70]},{"name":"UNUM_PADDING_CHARACTER","features":[70]},{"name":"UNUM_PADDING_POSITION","features":[70]},{"name":"UNUM_PAD_AFTER_PREFIX","features":[70]},{"name":"UNUM_PAD_AFTER_SUFFIX","features":[70]},{"name":"UNUM_PAD_BEFORE_PREFIX","features":[70]},{"name":"UNUM_PAD_BEFORE_SUFFIX","features":[70]},{"name":"UNUM_PAD_ESCAPE_SYMBOL","features":[70]},{"name":"UNUM_PARSE_ALL_INPUT","features":[70]},{"name":"UNUM_PARSE_CASE_SENSITIVE","features":[70]},{"name":"UNUM_PARSE_DECIMAL_MARK_REQUIRED","features":[70]},{"name":"UNUM_PARSE_INT_ONLY","features":[70]},{"name":"UNUM_PARSE_NO_EXPONENT","features":[70]},{"name":"UNUM_PATTERN_DECIMAL","features":[70]},{"name":"UNUM_PATTERN_RULEBASED","features":[70]},{"name":"UNUM_PATTERN_SEPARATOR_SYMBOL","features":[70]},{"name":"UNUM_PERCENT","features":[70]},{"name":"UNUM_PERCENT_FIELD","features":[70]},{"name":"UNUM_PERCENT_SYMBOL","features":[70]},{"name":"UNUM_PERMILL_FIELD","features":[70]},{"name":"UNUM_PERMILL_SYMBOL","features":[70]},{"name":"UNUM_PLUS_SIGN_SYMBOL","features":[70]},{"name":"UNUM_POSITIVE_PREFIX","features":[70]},{"name":"UNUM_POSITIVE_SUFFIX","features":[70]},{"name":"UNUM_PUBLIC_RULESETS","features":[70]},{"name":"UNUM_RANGE_COLLAPSE_ALL","features":[70]},{"name":"UNUM_RANGE_COLLAPSE_AUTO","features":[70]},{"name":"UNUM_RANGE_COLLAPSE_NONE","features":[70]},{"name":"UNUM_RANGE_COLLAPSE_UNIT","features":[70]},{"name":"UNUM_ROUNDING_INCREMENT","features":[70]},{"name":"UNUM_ROUNDING_MODE","features":[70]},{"name":"UNUM_ROUND_CEILING","features":[70]},{"name":"UNUM_ROUND_DOWN","features":[70]},{"name":"UNUM_ROUND_FLOOR","features":[70]},{"name":"UNUM_ROUND_HALFDOWN","features":[70]},{"name":"UNUM_ROUND_HALFEVEN","features":[70]},{"name":"UNUM_ROUND_HALFUP","features":[70]},{"name":"UNUM_ROUND_UNNECESSARY","features":[70]},{"name":"UNUM_ROUND_UP","features":[70]},{"name":"UNUM_SCALE","features":[70]},{"name":"UNUM_SCIENTIFIC","features":[70]},{"name":"UNUM_SECONDARY_GROUPING_SIZE","features":[70]},{"name":"UNUM_SEVEN_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_SHORT","features":[70]},{"name":"UNUM_SIGNIFICANT_DIGITS_USED","features":[70]},{"name":"UNUM_SIGNIFICANT_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_SIGN_ACCOUNTING","features":[70]},{"name":"UNUM_SIGN_ACCOUNTING_ALWAYS","features":[70]},{"name":"UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO","features":[70]},{"name":"UNUM_SIGN_ALWAYS","features":[70]},{"name":"UNUM_SIGN_ALWAYS_SHOWN","features":[70]},{"name":"UNUM_SIGN_AUTO","features":[70]},{"name":"UNUM_SIGN_COUNT","features":[70]},{"name":"UNUM_SIGN_EXCEPT_ZERO","features":[70]},{"name":"UNUM_SIGN_FIELD","features":[70]},{"name":"UNUM_SIGN_NEVER","features":[70]},{"name":"UNUM_SIX_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_SPELLOUT","features":[70]},{"name":"UNUM_THREE_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_TWO_DIGIT_SYMBOL","features":[70]},{"name":"UNUM_UNIT_WIDTH_COUNT","features":[70]},{"name":"UNUM_UNIT_WIDTH_FULL_NAME","features":[70]},{"name":"UNUM_UNIT_WIDTH_HIDDEN","features":[70]},{"name":"UNUM_UNIT_WIDTH_ISO_CODE","features":[70]},{"name":"UNUM_UNIT_WIDTH_NARROW","features":[70]},{"name":"UNUM_UNIT_WIDTH_SHORT","features":[70]},{"name":"UNUM_ZERO_DIGIT_SYMBOL","features":[70]},{"name":"UNormalization2Mode","features":[70]},{"name":"UNormalizationCheckResult","features":[70]},{"name":"UNormalizationMode","features":[70]},{"name":"UNormalizer2","features":[70]},{"name":"UNumberCompactStyle","features":[70]},{"name":"UNumberDecimalSeparatorDisplay","features":[70]},{"name":"UNumberFormatAttribute","features":[70]},{"name":"UNumberFormatAttributeValue","features":[70]},{"name":"UNumberFormatFields","features":[70]},{"name":"UNumberFormatPadPosition","features":[70]},{"name":"UNumberFormatRoundingMode","features":[70]},{"name":"UNumberFormatStyle","features":[70]},{"name":"UNumberFormatSymbol","features":[70]},{"name":"UNumberFormatTextAttribute","features":[70]},{"name":"UNumberFormatter","features":[70]},{"name":"UNumberGroupingStrategy","features":[70]},{"name":"UNumberRangeCollapse","features":[70]},{"name":"UNumberRangeIdentityFallback","features":[70]},{"name":"UNumberRangeIdentityResult","features":[70]},{"name":"UNumberSignDisplay","features":[70]},{"name":"UNumberUnitWidth","features":[70]},{"name":"UNumberingSystem","features":[70]},{"name":"UNumericType","features":[70]},{"name":"UPLURAL_TYPE_CARDINAL","features":[70]},{"name":"UPLURAL_TYPE_ORDINAL","features":[70]},{"name":"UParseError","features":[70]},{"name":"UPluralRules","features":[70]},{"name":"UPluralType","features":[70]},{"name":"UProperty","features":[70]},{"name":"UPropertyNameChoice","features":[70]},{"name":"UREGEX_CASE_INSENSITIVE","features":[70]},{"name":"UREGEX_COMMENTS","features":[70]},{"name":"UREGEX_DOTALL","features":[70]},{"name":"UREGEX_ERROR_ON_UNKNOWN_ESCAPES","features":[70]},{"name":"UREGEX_LITERAL","features":[70]},{"name":"UREGEX_MULTILINE","features":[70]},{"name":"UREGEX_UNIX_LINES","features":[70]},{"name":"UREGEX_UWORD","features":[70]},{"name":"URES_ALIAS","features":[70]},{"name":"URES_ARRAY","features":[70]},{"name":"URES_BINARY","features":[70]},{"name":"URES_INT","features":[70]},{"name":"URES_INT_VECTOR","features":[70]},{"name":"URES_NONE","features":[70]},{"name":"URES_STRING","features":[70]},{"name":"URES_TABLE","features":[70]},{"name":"URGN_CONTINENT","features":[70]},{"name":"URGN_DEPRECATED","features":[70]},{"name":"URGN_GROUPING","features":[70]},{"name":"URGN_SUBCONTINENT","features":[70]},{"name":"URGN_TERRITORY","features":[70]},{"name":"URGN_UNKNOWN","features":[70]},{"name":"URGN_WORLD","features":[70]},{"name":"URegexFindProgressCallback","features":[70]},{"name":"URegexMatchCallback","features":[70]},{"name":"URegexpFlag","features":[70]},{"name":"URegion","features":[70]},{"name":"URegionType","features":[70]},{"name":"URegularExpression","features":[70]},{"name":"URelativeDateTimeFormatter","features":[70]},{"name":"URelativeDateTimeFormatterField","features":[70]},{"name":"URelativeDateTimeUnit","features":[70]},{"name":"UReplaceableCallbacks","features":[70]},{"name":"UResType","features":[70]},{"name":"UResourceBundle","features":[70]},{"name":"URestrictionLevel","features":[70]},{"name":"USCRIPT_ADLAM","features":[70]},{"name":"USCRIPT_AFAKA","features":[70]},{"name":"USCRIPT_AHOM","features":[70]},{"name":"USCRIPT_ANATOLIAN_HIEROGLYPHS","features":[70]},{"name":"USCRIPT_ARABIC","features":[70]},{"name":"USCRIPT_ARMENIAN","features":[70]},{"name":"USCRIPT_AVESTAN","features":[70]},{"name":"USCRIPT_BALINESE","features":[70]},{"name":"USCRIPT_BAMUM","features":[70]},{"name":"USCRIPT_BASSA_VAH","features":[70]},{"name":"USCRIPT_BATAK","features":[70]},{"name":"USCRIPT_BENGALI","features":[70]},{"name":"USCRIPT_BHAIKSUKI","features":[70]},{"name":"USCRIPT_BLISSYMBOLS","features":[70]},{"name":"USCRIPT_BOOK_PAHLAVI","features":[70]},{"name":"USCRIPT_BOPOMOFO","features":[70]},{"name":"USCRIPT_BRAHMI","features":[70]},{"name":"USCRIPT_BRAILLE","features":[70]},{"name":"USCRIPT_BUGINESE","features":[70]},{"name":"USCRIPT_BUHID","features":[70]},{"name":"USCRIPT_CANADIAN_ABORIGINAL","features":[70]},{"name":"USCRIPT_CARIAN","features":[70]},{"name":"USCRIPT_CAUCASIAN_ALBANIAN","features":[70]},{"name":"USCRIPT_CHAKMA","features":[70]},{"name":"USCRIPT_CHAM","features":[70]},{"name":"USCRIPT_CHEROKEE","features":[70]},{"name":"USCRIPT_CHORASMIAN","features":[70]},{"name":"USCRIPT_CIRTH","features":[70]},{"name":"USCRIPT_COMMON","features":[70]},{"name":"USCRIPT_COPTIC","features":[70]},{"name":"USCRIPT_CUNEIFORM","features":[70]},{"name":"USCRIPT_CYPRIOT","features":[70]},{"name":"USCRIPT_CYRILLIC","features":[70]},{"name":"USCRIPT_DEMOTIC_EGYPTIAN","features":[70]},{"name":"USCRIPT_DESERET","features":[70]},{"name":"USCRIPT_DEVANAGARI","features":[70]},{"name":"USCRIPT_DIVES_AKURU","features":[70]},{"name":"USCRIPT_DOGRA","features":[70]},{"name":"USCRIPT_DUPLOYAN","features":[70]},{"name":"USCRIPT_EASTERN_SYRIAC","features":[70]},{"name":"USCRIPT_EGYPTIAN_HIEROGLYPHS","features":[70]},{"name":"USCRIPT_ELBASAN","features":[70]},{"name":"USCRIPT_ELYMAIC","features":[70]},{"name":"USCRIPT_ESTRANGELO_SYRIAC","features":[70]},{"name":"USCRIPT_ETHIOPIC","features":[70]},{"name":"USCRIPT_GEORGIAN","features":[70]},{"name":"USCRIPT_GLAGOLITIC","features":[70]},{"name":"USCRIPT_GOTHIC","features":[70]},{"name":"USCRIPT_GRANTHA","features":[70]},{"name":"USCRIPT_GREEK","features":[70]},{"name":"USCRIPT_GUJARATI","features":[70]},{"name":"USCRIPT_GUNJALA_GONDI","features":[70]},{"name":"USCRIPT_GURMUKHI","features":[70]},{"name":"USCRIPT_HAN","features":[70]},{"name":"USCRIPT_HANGUL","features":[70]},{"name":"USCRIPT_HANIFI_ROHINGYA","features":[70]},{"name":"USCRIPT_HANUNOO","features":[70]},{"name":"USCRIPT_HAN_WITH_BOPOMOFO","features":[70]},{"name":"USCRIPT_HARAPPAN_INDUS","features":[70]},{"name":"USCRIPT_HATRAN","features":[70]},{"name":"USCRIPT_HEBREW","features":[70]},{"name":"USCRIPT_HIERATIC_EGYPTIAN","features":[70]},{"name":"USCRIPT_HIRAGANA","features":[70]},{"name":"USCRIPT_IMPERIAL_ARAMAIC","features":[70]},{"name":"USCRIPT_INHERITED","features":[70]},{"name":"USCRIPT_INSCRIPTIONAL_PAHLAVI","features":[70]},{"name":"USCRIPT_INSCRIPTIONAL_PARTHIAN","features":[70]},{"name":"USCRIPT_INVALID_CODE","features":[70]},{"name":"USCRIPT_JAMO","features":[70]},{"name":"USCRIPT_JAPANESE","features":[70]},{"name":"USCRIPT_JAVANESE","features":[70]},{"name":"USCRIPT_JURCHEN","features":[70]},{"name":"USCRIPT_KAITHI","features":[70]},{"name":"USCRIPT_KANNADA","features":[70]},{"name":"USCRIPT_KATAKANA","features":[70]},{"name":"USCRIPT_KATAKANA_OR_HIRAGANA","features":[70]},{"name":"USCRIPT_KAYAH_LI","features":[70]},{"name":"USCRIPT_KHAROSHTHI","features":[70]},{"name":"USCRIPT_KHITAN_SMALL_SCRIPT","features":[70]},{"name":"USCRIPT_KHMER","features":[70]},{"name":"USCRIPT_KHOJKI","features":[70]},{"name":"USCRIPT_KHUDAWADI","features":[70]},{"name":"USCRIPT_KHUTSURI","features":[70]},{"name":"USCRIPT_KOREAN","features":[70]},{"name":"USCRIPT_KPELLE","features":[70]},{"name":"USCRIPT_LANNA","features":[70]},{"name":"USCRIPT_LAO","features":[70]},{"name":"USCRIPT_LATIN","features":[70]},{"name":"USCRIPT_LATIN_FRAKTUR","features":[70]},{"name":"USCRIPT_LATIN_GAELIC","features":[70]},{"name":"USCRIPT_LEPCHA","features":[70]},{"name":"USCRIPT_LIMBU","features":[70]},{"name":"USCRIPT_LINEAR_A","features":[70]},{"name":"USCRIPT_LINEAR_B","features":[70]},{"name":"USCRIPT_LISU","features":[70]},{"name":"USCRIPT_LOMA","features":[70]},{"name":"USCRIPT_LYCIAN","features":[70]},{"name":"USCRIPT_LYDIAN","features":[70]},{"name":"USCRIPT_MAHAJANI","features":[70]},{"name":"USCRIPT_MAKASAR","features":[70]},{"name":"USCRIPT_MALAYALAM","features":[70]},{"name":"USCRIPT_MANDAEAN","features":[70]},{"name":"USCRIPT_MANDAIC","features":[70]},{"name":"USCRIPT_MANICHAEAN","features":[70]},{"name":"USCRIPT_MARCHEN","features":[70]},{"name":"USCRIPT_MASARAM_GONDI","features":[70]},{"name":"USCRIPT_MATHEMATICAL_NOTATION","features":[70]},{"name":"USCRIPT_MAYAN_HIEROGLYPHS","features":[70]},{"name":"USCRIPT_MEDEFAIDRIN","features":[70]},{"name":"USCRIPT_MEITEI_MAYEK","features":[70]},{"name":"USCRIPT_MENDE","features":[70]},{"name":"USCRIPT_MEROITIC","features":[70]},{"name":"USCRIPT_MEROITIC_CURSIVE","features":[70]},{"name":"USCRIPT_MEROITIC_HIEROGLYPHS","features":[70]},{"name":"USCRIPT_MIAO","features":[70]},{"name":"USCRIPT_MODI","features":[70]},{"name":"USCRIPT_MONGOLIAN","features":[70]},{"name":"USCRIPT_MOON","features":[70]},{"name":"USCRIPT_MRO","features":[70]},{"name":"USCRIPT_MULTANI","features":[70]},{"name":"USCRIPT_MYANMAR","features":[70]},{"name":"USCRIPT_NABATAEAN","features":[70]},{"name":"USCRIPT_NAKHI_GEBA","features":[70]},{"name":"USCRIPT_NANDINAGARI","features":[70]},{"name":"USCRIPT_NEWA","features":[70]},{"name":"USCRIPT_NEW_TAI_LUE","features":[70]},{"name":"USCRIPT_NKO","features":[70]},{"name":"USCRIPT_NUSHU","features":[70]},{"name":"USCRIPT_NYIAKENG_PUACHUE_HMONG","features":[70]},{"name":"USCRIPT_OGHAM","features":[70]},{"name":"USCRIPT_OLD_CHURCH_SLAVONIC_CYRILLIC","features":[70]},{"name":"USCRIPT_OLD_HUNGARIAN","features":[70]},{"name":"USCRIPT_OLD_ITALIC","features":[70]},{"name":"USCRIPT_OLD_NORTH_ARABIAN","features":[70]},{"name":"USCRIPT_OLD_PERMIC","features":[70]},{"name":"USCRIPT_OLD_PERSIAN","features":[70]},{"name":"USCRIPT_OLD_SOGDIAN","features":[70]},{"name":"USCRIPT_OLD_SOUTH_ARABIAN","features":[70]},{"name":"USCRIPT_OL_CHIKI","features":[70]},{"name":"USCRIPT_ORIYA","features":[70]},{"name":"USCRIPT_ORKHON","features":[70]},{"name":"USCRIPT_OSAGE","features":[70]},{"name":"USCRIPT_OSMANYA","features":[70]},{"name":"USCRIPT_PAHAWH_HMONG","features":[70]},{"name":"USCRIPT_PALMYRENE","features":[70]},{"name":"USCRIPT_PAU_CIN_HAU","features":[70]},{"name":"USCRIPT_PHAGS_PA","features":[70]},{"name":"USCRIPT_PHOENICIAN","features":[70]},{"name":"USCRIPT_PHONETIC_POLLARD","features":[70]},{"name":"USCRIPT_PSALTER_PAHLAVI","features":[70]},{"name":"USCRIPT_REJANG","features":[70]},{"name":"USCRIPT_RONGORONGO","features":[70]},{"name":"USCRIPT_RUNIC","features":[70]},{"name":"USCRIPT_SAMARITAN","features":[70]},{"name":"USCRIPT_SARATI","features":[70]},{"name":"USCRIPT_SAURASHTRA","features":[70]},{"name":"USCRIPT_SHARADA","features":[70]},{"name":"USCRIPT_SHAVIAN","features":[70]},{"name":"USCRIPT_SIDDHAM","features":[70]},{"name":"USCRIPT_SIGN_WRITING","features":[70]},{"name":"USCRIPT_SIMPLIFIED_HAN","features":[70]},{"name":"USCRIPT_SINDHI","features":[70]},{"name":"USCRIPT_SINHALA","features":[70]},{"name":"USCRIPT_SOGDIAN","features":[70]},{"name":"USCRIPT_SORA_SOMPENG","features":[70]},{"name":"USCRIPT_SOYOMBO","features":[70]},{"name":"USCRIPT_SUNDANESE","features":[70]},{"name":"USCRIPT_SYLOTI_NAGRI","features":[70]},{"name":"USCRIPT_SYMBOLS","features":[70]},{"name":"USCRIPT_SYMBOLS_EMOJI","features":[70]},{"name":"USCRIPT_SYRIAC","features":[70]},{"name":"USCRIPT_TAGALOG","features":[70]},{"name":"USCRIPT_TAGBANWA","features":[70]},{"name":"USCRIPT_TAI_LE","features":[70]},{"name":"USCRIPT_TAI_VIET","features":[70]},{"name":"USCRIPT_TAKRI","features":[70]},{"name":"USCRIPT_TAMIL","features":[70]},{"name":"USCRIPT_TANGUT","features":[70]},{"name":"USCRIPT_TELUGU","features":[70]},{"name":"USCRIPT_TENGWAR","features":[70]},{"name":"USCRIPT_THAANA","features":[70]},{"name":"USCRIPT_THAI","features":[70]},{"name":"USCRIPT_TIBETAN","features":[70]},{"name":"USCRIPT_TIFINAGH","features":[70]},{"name":"USCRIPT_TIRHUTA","features":[70]},{"name":"USCRIPT_TRADITIONAL_HAN","features":[70]},{"name":"USCRIPT_UCAS","features":[70]},{"name":"USCRIPT_UGARITIC","features":[70]},{"name":"USCRIPT_UNKNOWN","features":[70]},{"name":"USCRIPT_UNWRITTEN_LANGUAGES","features":[70]},{"name":"USCRIPT_USAGE_ASPIRATIONAL","features":[70]},{"name":"USCRIPT_USAGE_EXCLUDED","features":[70]},{"name":"USCRIPT_USAGE_LIMITED_USE","features":[70]},{"name":"USCRIPT_USAGE_NOT_ENCODED","features":[70]},{"name":"USCRIPT_USAGE_RECOMMENDED","features":[70]},{"name":"USCRIPT_USAGE_UNKNOWN","features":[70]},{"name":"USCRIPT_VAI","features":[70]},{"name":"USCRIPT_VISIBLE_SPEECH","features":[70]},{"name":"USCRIPT_WANCHO","features":[70]},{"name":"USCRIPT_WARANG_CITI","features":[70]},{"name":"USCRIPT_WESTERN_SYRIAC","features":[70]},{"name":"USCRIPT_WOLEAI","features":[70]},{"name":"USCRIPT_YEZIDI","features":[70]},{"name":"USCRIPT_YI","features":[70]},{"name":"USCRIPT_ZANABAZAR_SQUARE","features":[70]},{"name":"USEARCH_ANY_BASE_WEIGHT_IS_WILDCARD","features":[70]},{"name":"USEARCH_DEFAULT","features":[70]},{"name":"USEARCH_DONE","features":[70]},{"name":"USEARCH_ELEMENT_COMPARISON","features":[70]},{"name":"USEARCH_OFF","features":[70]},{"name":"USEARCH_ON","features":[70]},{"name":"USEARCH_OVERLAP","features":[70]},{"name":"USEARCH_PATTERN_BASE_WEIGHT_IS_WILDCARD","features":[70]},{"name":"USEARCH_STANDARD_ELEMENT_COMPARISON","features":[70]},{"name":"USET_ADD_CASE_MAPPINGS","features":[70]},{"name":"USET_CASE_INSENSITIVE","features":[70]},{"name":"USET_IGNORE_SPACE","features":[70]},{"name":"USET_SERIALIZED_STATIC_ARRAY_CAPACITY","features":[70]},{"name":"USET_SPAN_CONTAINED","features":[70]},{"name":"USET_SPAN_NOT_CONTAINED","features":[70]},{"name":"USET_SPAN_SIMPLE","features":[70]},{"name":"USPOOF_ALL_CHECKS","features":[70]},{"name":"USPOOF_ASCII","features":[70]},{"name":"USPOOF_AUX_INFO","features":[70]},{"name":"USPOOF_CHAR_LIMIT","features":[70]},{"name":"USPOOF_CONFUSABLE","features":[70]},{"name":"USPOOF_HIDDEN_OVERLAY","features":[70]},{"name":"USPOOF_HIGHLY_RESTRICTIVE","features":[70]},{"name":"USPOOF_INVISIBLE","features":[70]},{"name":"USPOOF_MINIMALLY_RESTRICTIVE","features":[70]},{"name":"USPOOF_MIXED_NUMBERS","features":[70]},{"name":"USPOOF_MIXED_SCRIPT_CONFUSABLE","features":[70]},{"name":"USPOOF_MODERATELY_RESTRICTIVE","features":[70]},{"name":"USPOOF_RESTRICTION_LEVEL","features":[70]},{"name":"USPOOF_RESTRICTION_LEVEL_MASK","features":[70]},{"name":"USPOOF_SINGLE_SCRIPT_CONFUSABLE","features":[70]},{"name":"USPOOF_SINGLE_SCRIPT_RESTRICTIVE","features":[70]},{"name":"USPOOF_UNRESTRICTIVE","features":[70]},{"name":"USPOOF_WHOLE_SCRIPT_CONFUSABLE","features":[70]},{"name":"USPREP_ALLOW_UNASSIGNED","features":[70]},{"name":"USPREP_DEFAULT","features":[70]},{"name":"USPREP_RFC3491_NAMEPREP","features":[70]},{"name":"USPREP_RFC3530_NFS4_CIS_PREP","features":[70]},{"name":"USPREP_RFC3530_NFS4_CS_PREP","features":[70]},{"name":"USPREP_RFC3530_NFS4_CS_PREP_CI","features":[70]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_PREFIX","features":[70]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_SUFFIX","features":[70]},{"name":"USPREP_RFC3722_ISCSI","features":[70]},{"name":"USPREP_RFC3920_NODEPREP","features":[70]},{"name":"USPREP_RFC3920_RESOURCEPREP","features":[70]},{"name":"USPREP_RFC4011_MIB","features":[70]},{"name":"USPREP_RFC4013_SASLPREP","features":[70]},{"name":"USPREP_RFC4505_TRACE","features":[70]},{"name":"USPREP_RFC4518_LDAP","features":[70]},{"name":"USPREP_RFC4518_LDAP_CI","features":[70]},{"name":"USP_E_SCRIPT_NOT_IN_FONT","features":[70]},{"name":"USTRINGTRIE_BUILD_FAST","features":[70]},{"name":"USTRINGTRIE_BUILD_SMALL","features":[70]},{"name":"USTRINGTRIE_FINAL_VALUE","features":[70]},{"name":"USTRINGTRIE_INTERMEDIATE_VALUE","features":[70]},{"name":"USTRINGTRIE_NO_MATCH","features":[70]},{"name":"USTRINGTRIE_NO_VALUE","features":[70]},{"name":"UScriptCode","features":[70]},{"name":"UScriptUsage","features":[70]},{"name":"USearch","features":[70]},{"name":"USearchAttribute","features":[70]},{"name":"USearchAttributeValue","features":[70]},{"name":"USentenceBreak","features":[70]},{"name":"USentenceBreakTag","features":[70]},{"name":"USerializedSet","features":[70]},{"name":"USet","features":[70]},{"name":"USetSpanCondition","features":[70]},{"name":"USpoofCheckResult","features":[70]},{"name":"USpoofChecker","features":[70]},{"name":"USpoofChecks","features":[70]},{"name":"UStringCaseMapper","features":[70]},{"name":"UStringPrepProfile","features":[70]},{"name":"UStringPrepProfileType","features":[70]},{"name":"UStringSearch","features":[70]},{"name":"UStringTrieBuildOption","features":[70]},{"name":"UStringTrieResult","features":[70]},{"name":"USystemTimeZoneType","features":[70]},{"name":"UTEXT_MAGIC","features":[70]},{"name":"UTEXT_PROVIDER_HAS_META_DATA","features":[70]},{"name":"UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE","features":[70]},{"name":"UTEXT_PROVIDER_OWNS_TEXT","features":[70]},{"name":"UTEXT_PROVIDER_STABLE_CHUNKS","features":[70]},{"name":"UTEXT_PROVIDER_WRITABLE","features":[70]},{"name":"UTF16_MAX_CHAR_LENGTH","features":[70]},{"name":"UTF32_MAX_CHAR_LENGTH","features":[70]},{"name":"UTF8_ERROR_VALUE_1","features":[70]},{"name":"UTF8_ERROR_VALUE_2","features":[70]},{"name":"UTF8_MAX_CHAR_LENGTH","features":[70]},{"name":"UTF_ERROR_VALUE","features":[70]},{"name":"UTF_MAX_CHAR_LENGTH","features":[70]},{"name":"UTF_SIZE","features":[70]},{"name":"UTRACE_COLLATION_START","features":[70]},{"name":"UTRACE_CONVERSION_START","features":[70]},{"name":"UTRACE_ERROR","features":[70]},{"name":"UTRACE_FUNCTION_START","features":[70]},{"name":"UTRACE_INFO","features":[70]},{"name":"UTRACE_OFF","features":[70]},{"name":"UTRACE_OPEN_CLOSE","features":[70]},{"name":"UTRACE_UCNV_CLONE","features":[70]},{"name":"UTRACE_UCNV_CLOSE","features":[70]},{"name":"UTRACE_UCNV_FLUSH_CACHE","features":[70]},{"name":"UTRACE_UCNV_LOAD","features":[70]},{"name":"UTRACE_UCNV_OPEN","features":[70]},{"name":"UTRACE_UCNV_OPEN_ALGORITHMIC","features":[70]},{"name":"UTRACE_UCNV_OPEN_PACKAGE","features":[70]},{"name":"UTRACE_UCNV_UNLOAD","features":[70]},{"name":"UTRACE_UCOL_CLOSE","features":[70]},{"name":"UTRACE_UCOL_GETLOCALE","features":[70]},{"name":"UTRACE_UCOL_GET_SORTKEY","features":[70]},{"name":"UTRACE_UCOL_NEXTSORTKEYPART","features":[70]},{"name":"UTRACE_UCOL_OPEN","features":[70]},{"name":"UTRACE_UCOL_OPEN_FROM_SHORT_STRING","features":[70]},{"name":"UTRACE_UCOL_STRCOLL","features":[70]},{"name":"UTRACE_UCOL_STRCOLLITER","features":[70]},{"name":"UTRACE_UCOL_STRCOLLUTF8","features":[70]},{"name":"UTRACE_UDATA_BUNDLE","features":[70]},{"name":"UTRACE_UDATA_DATA_FILE","features":[70]},{"name":"UTRACE_UDATA_RESOURCE","features":[70]},{"name":"UTRACE_UDATA_RES_FILE","features":[70]},{"name":"UTRACE_UDATA_START","features":[70]},{"name":"UTRACE_U_CLEANUP","features":[70]},{"name":"UTRACE_U_INIT","features":[70]},{"name":"UTRACE_VERBOSE","features":[70]},{"name":"UTRACE_WARNING","features":[70]},{"name":"UTRANS_FORWARD","features":[70]},{"name":"UTRANS_REVERSE","features":[70]},{"name":"UTSV_EPOCH_OFFSET_VALUE","features":[70]},{"name":"UTSV_FROM_MAX_VALUE","features":[70]},{"name":"UTSV_FROM_MIN_VALUE","features":[70]},{"name":"UTSV_TO_MAX_VALUE","features":[70]},{"name":"UTSV_TO_MIN_VALUE","features":[70]},{"name":"UTSV_UNITS_VALUE","features":[70]},{"name":"UTZFMT_PARSE_OPTION_ALL_STYLES","features":[70]},{"name":"UTZFMT_PARSE_OPTION_NONE","features":[70]},{"name":"UTZFMT_PARSE_OPTION_TZ_DATABASE_ABBREVIATIONS","features":[70]},{"name":"UTZFMT_PAT_COUNT","features":[70]},{"name":"UTZFMT_PAT_NEGATIVE_H","features":[70]},{"name":"UTZFMT_PAT_NEGATIVE_HM","features":[70]},{"name":"UTZFMT_PAT_NEGATIVE_HMS","features":[70]},{"name":"UTZFMT_PAT_POSITIVE_H","features":[70]},{"name":"UTZFMT_PAT_POSITIVE_HM","features":[70]},{"name":"UTZFMT_PAT_POSITIVE_HMS","features":[70]},{"name":"UTZFMT_STYLE_EXEMPLAR_LOCATION","features":[70]},{"name":"UTZFMT_STYLE_GENERIC_LOCATION","features":[70]},{"name":"UTZFMT_STYLE_GENERIC_LONG","features":[70]},{"name":"UTZFMT_STYLE_GENERIC_SHORT","features":[70]},{"name":"UTZFMT_STYLE_ISO_BASIC_FIXED","features":[70]},{"name":"UTZFMT_STYLE_ISO_BASIC_FULL","features":[70]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FIXED","features":[70]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FULL","features":[70]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_SHORT","features":[70]},{"name":"UTZFMT_STYLE_ISO_BASIC_SHORT","features":[70]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FIXED","features":[70]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FULL","features":[70]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FIXED","features":[70]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FULL","features":[70]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT","features":[70]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT_SHORT","features":[70]},{"name":"UTZFMT_STYLE_SPECIFIC_LONG","features":[70]},{"name":"UTZFMT_STYLE_SPECIFIC_SHORT","features":[70]},{"name":"UTZFMT_STYLE_ZONE_ID","features":[70]},{"name":"UTZFMT_STYLE_ZONE_ID_SHORT","features":[70]},{"name":"UTZFMT_TIME_TYPE_DAYLIGHT","features":[70]},{"name":"UTZFMT_TIME_TYPE_STANDARD","features":[70]},{"name":"UTZFMT_TIME_TYPE_UNKNOWN","features":[70]},{"name":"UTZNM_EXEMPLAR_LOCATION","features":[70]},{"name":"UTZNM_LONG_DAYLIGHT","features":[70]},{"name":"UTZNM_LONG_GENERIC","features":[70]},{"name":"UTZNM_LONG_STANDARD","features":[70]},{"name":"UTZNM_SHORT_DAYLIGHT","features":[70]},{"name":"UTZNM_SHORT_GENERIC","features":[70]},{"name":"UTZNM_SHORT_STANDARD","features":[70]},{"name":"UTZNM_UNKNOWN","features":[70]},{"name":"UText","features":[70]},{"name":"UTextAccess","features":[70]},{"name":"UTextClone","features":[70]},{"name":"UTextClose","features":[70]},{"name":"UTextCopy","features":[70]},{"name":"UTextExtract","features":[70]},{"name":"UTextFuncs","features":[70]},{"name":"UTextMapNativeIndexToUTF16","features":[70]},{"name":"UTextMapOffsetToNative","features":[70]},{"name":"UTextNativeLength","features":[70]},{"name":"UTextReplace","features":[70]},{"name":"UTimeScaleValue","features":[70]},{"name":"UTimeZoneFormatGMTOffsetPatternType","features":[70]},{"name":"UTimeZoneFormatParseOption","features":[70]},{"name":"UTimeZoneFormatStyle","features":[70]},{"name":"UTimeZoneFormatTimeType","features":[70]},{"name":"UTimeZoneNameType","features":[70]},{"name":"UTimeZoneTransitionType","features":[70]},{"name":"UTraceData","features":[70]},{"name":"UTraceEntry","features":[70]},{"name":"UTraceExit","features":[70]},{"name":"UTraceFunctionNumber","features":[70]},{"name":"UTraceLevel","features":[70]},{"name":"UTransDirection","features":[70]},{"name":"UTransPosition","features":[70]},{"name":"UVerticalOrientation","features":[70]},{"name":"UWordBreak","features":[70]},{"name":"UWordBreakValues","features":[70]},{"name":"U_ALPHAINDEX_INFLOW","features":[70]},{"name":"U_ALPHAINDEX_NORMAL","features":[70]},{"name":"U_ALPHAINDEX_OVERFLOW","features":[70]},{"name":"U_ALPHAINDEX_UNDERFLOW","features":[70]},{"name":"U_AMBIGUOUS_ALIAS_WARNING","features":[70]},{"name":"U_ARABIC_NUMBER","features":[70]},{"name":"U_ARGUMENT_TYPE_MISMATCH","features":[70]},{"name":"U_ASCII_FAMILY","features":[70]},{"name":"U_BAD_VARIABLE_DEFINITION","features":[70]},{"name":"U_BLOCK_SEPARATOR","features":[70]},{"name":"U_BOUNDARY_NEUTRAL","features":[70]},{"name":"U_BPT_CLOSE","features":[70]},{"name":"U_BPT_NONE","features":[70]},{"name":"U_BPT_OPEN","features":[70]},{"name":"U_BRK_ASSIGN_ERROR","features":[70]},{"name":"U_BRK_ERROR_START","features":[70]},{"name":"U_BRK_HEX_DIGITS_EXPECTED","features":[70]},{"name":"U_BRK_INIT_ERROR","features":[70]},{"name":"U_BRK_INTERNAL_ERROR","features":[70]},{"name":"U_BRK_MALFORMED_RULE_TAG","features":[70]},{"name":"U_BRK_MISMATCHED_PAREN","features":[70]},{"name":"U_BRK_NEW_LINE_IN_QUOTED_STRING","features":[70]},{"name":"U_BRK_RULE_EMPTY_SET","features":[70]},{"name":"U_BRK_RULE_SYNTAX","features":[70]},{"name":"U_BRK_SEMICOLON_EXPECTED","features":[70]},{"name":"U_BRK_UNCLOSED_SET","features":[70]},{"name":"U_BRK_UNDEFINED_VARIABLE","features":[70]},{"name":"U_BRK_UNRECOGNIZED_OPTION","features":[70]},{"name":"U_BRK_VARIABLE_REDFINITION","features":[70]},{"name":"U_BUFFER_OVERFLOW_ERROR","features":[70]},{"name":"U_CE_NOT_FOUND_ERROR","features":[70]},{"name":"U_CHAR16_IS_TYPEDEF","features":[70]},{"name":"U_CHARSET_FAMILY","features":[70]},{"name":"U_CHARSET_IS_UTF8","features":[70]},{"name":"U_CHAR_CATEGORY_COUNT","features":[70]},{"name":"U_CHAR_NAME_ALIAS","features":[70]},{"name":"U_CHECK_DYLOAD","features":[70]},{"name":"U_COLLATOR_VERSION_MISMATCH","features":[70]},{"name":"U_COMBINED_IMPLEMENTATION","features":[70]},{"name":"U_COMBINING_SPACING_MARK","features":[70]},{"name":"U_COMMON_NUMBER_SEPARATOR","features":[70]},{"name":"U_COMPARE_CODE_POINT_ORDER","features":[70]},{"name":"U_COMPARE_IGNORE_CASE","features":[70]},{"name":"U_CONNECTOR_PUNCTUATION","features":[70]},{"name":"U_CONTROL_CHAR","features":[70]},{"name":"U_COPYRIGHT_STRING_LENGTH","features":[70]},{"name":"U_CPLUSPLUS_VERSION","features":[70]},{"name":"U_CURRENCY_SYMBOL","features":[70]},{"name":"U_DASH_PUNCTUATION","features":[70]},{"name":"U_DEBUG","features":[70]},{"name":"U_DECIMAL_DIGIT_NUMBER","features":[70]},{"name":"U_DECIMAL_NUMBER_SYNTAX_ERROR","features":[70]},{"name":"U_DEFAULT_KEYWORD_MISSING","features":[70]},{"name":"U_DEFAULT_SHOW_DRAFT","features":[70]},{"name":"U_DEFINE_FALSE_AND_TRUE","features":[70]},{"name":"U_DIFFERENT_UCA_VERSION","features":[70]},{"name":"U_DIR_NON_SPACING_MARK","features":[70]},{"name":"U_DISABLE_RENAMING","features":[70]},{"name":"U_DT_CANONICAL","features":[70]},{"name":"U_DT_CIRCLE","features":[70]},{"name":"U_DT_COMPAT","features":[70]},{"name":"U_DT_FINAL","features":[70]},{"name":"U_DT_FONT","features":[70]},{"name":"U_DT_FRACTION","features":[70]},{"name":"U_DT_INITIAL","features":[70]},{"name":"U_DT_ISOLATED","features":[70]},{"name":"U_DT_MEDIAL","features":[70]},{"name":"U_DT_NARROW","features":[70]},{"name":"U_DT_NOBREAK","features":[70]},{"name":"U_DT_NONE","features":[70]},{"name":"U_DT_SMALL","features":[70]},{"name":"U_DT_SQUARE","features":[70]},{"name":"U_DT_SUB","features":[70]},{"name":"U_DT_SUPER","features":[70]},{"name":"U_DT_VERTICAL","features":[70]},{"name":"U_DT_WIDE","features":[70]},{"name":"U_DUPLICATE_KEYWORD","features":[70]},{"name":"U_EA_AMBIGUOUS","features":[70]},{"name":"U_EA_FULLWIDTH","features":[70]},{"name":"U_EA_HALFWIDTH","features":[70]},{"name":"U_EA_NARROW","features":[70]},{"name":"U_EA_NEUTRAL","features":[70]},{"name":"U_EA_WIDE","features":[70]},{"name":"U_EBCDIC_FAMILY","features":[70]},{"name":"U_EDITS_NO_RESET","features":[70]},{"name":"U_ENABLE_DYLOAD","features":[70]},{"name":"U_ENABLE_TRACING","features":[70]},{"name":"U_ENCLOSING_MARK","features":[70]},{"name":"U_END_PUNCTUATION","features":[70]},{"name":"U_ENUM_OUT_OF_SYNC_ERROR","features":[70]},{"name":"U_ERROR_WARNING_START","features":[70]},{"name":"U_EUROPEAN_NUMBER","features":[70]},{"name":"U_EUROPEAN_NUMBER_SEPARATOR","features":[70]},{"name":"U_EUROPEAN_NUMBER_TERMINATOR","features":[70]},{"name":"U_EXTENDED_CHAR_NAME","features":[70]},{"name":"U_FILE_ACCESS_ERROR","features":[70]},{"name":"U_FINAL_PUNCTUATION","features":[70]},{"name":"U_FIRST_STRONG_ISOLATE","features":[70]},{"name":"U_FMT_PARSE_ERROR_START","features":[70]},{"name":"U_FOLD_CASE_DEFAULT","features":[70]},{"name":"U_FOLD_CASE_EXCLUDE_SPECIAL_I","features":[70]},{"name":"U_FORMAT_CHAR","features":[70]},{"name":"U_FORMAT_INEXACT_ERROR","features":[70]},{"name":"U_GCB_CONTROL","features":[70]},{"name":"U_GCB_CR","features":[70]},{"name":"U_GCB_EXTEND","features":[70]},{"name":"U_GCB_E_BASE","features":[70]},{"name":"U_GCB_E_BASE_GAZ","features":[70]},{"name":"U_GCB_E_MODIFIER","features":[70]},{"name":"U_GCB_GLUE_AFTER_ZWJ","features":[70]},{"name":"U_GCB_L","features":[70]},{"name":"U_GCB_LF","features":[70]},{"name":"U_GCB_LV","features":[70]},{"name":"U_GCB_LVT","features":[70]},{"name":"U_GCB_OTHER","features":[70]},{"name":"U_GCB_PREPEND","features":[70]},{"name":"U_GCB_REGIONAL_INDICATOR","features":[70]},{"name":"U_GCB_SPACING_MARK","features":[70]},{"name":"U_GCB_T","features":[70]},{"name":"U_GCB_V","features":[70]},{"name":"U_GCB_ZWJ","features":[70]},{"name":"U_GCC_MAJOR_MINOR","features":[70]},{"name":"U_GENERAL_OTHER_TYPES","features":[70]},{"name":"U_HAVE_CHAR16_T","features":[70]},{"name":"U_HAVE_DEBUG_LOCATION_NEW","features":[70]},{"name":"U_HAVE_INTTYPES_H","features":[70]},{"name":"U_HAVE_LIB_SUFFIX","features":[70]},{"name":"U_HAVE_PLACEMENT_NEW","features":[70]},{"name":"U_HAVE_RBNF","features":[70]},{"name":"U_HAVE_RVALUE_REFERENCES","features":[70]},{"name":"U_HAVE_STDINT_H","features":[70]},{"name":"U_HAVE_STD_STRING","features":[70]},{"name":"U_HAVE_WCHAR_H","features":[70]},{"name":"U_HAVE_WCSCPY","features":[70]},{"name":"U_HIDE_DEPRECATED_API","features":[70]},{"name":"U_HIDE_DRAFT_API","features":[70]},{"name":"U_HIDE_INTERNAL_API","features":[70]},{"name":"U_HIDE_OBSOLETE_API","features":[70]},{"name":"U_HIDE_OBSOLETE_UTF_OLD_H","features":[70]},{"name":"U_HST_LEADING_JAMO","features":[70]},{"name":"U_HST_LVT_SYLLABLE","features":[70]},{"name":"U_HST_LV_SYLLABLE","features":[70]},{"name":"U_HST_NOT_APPLICABLE","features":[70]},{"name":"U_HST_TRAILING_JAMO","features":[70]},{"name":"U_HST_VOWEL_JAMO","features":[70]},{"name":"U_ICUDATA_TYPE_LETTER","features":[70]},{"name":"U_ICU_DATA_KEY","features":[70]},{"name":"U_ICU_VERSION_BUNDLE","features":[70]},{"name":"U_IDNA_ACE_PREFIX_ERROR","features":[70]},{"name":"U_IDNA_CHECK_BIDI_ERROR","features":[70]},{"name":"U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR","features":[70]},{"name":"U_IDNA_ERROR_START","features":[70]},{"name":"U_IDNA_LABEL_TOO_LONG_ERROR","features":[70]},{"name":"U_IDNA_PROHIBITED_ERROR","features":[70]},{"name":"U_IDNA_STD3_ASCII_RULES_ERROR","features":[70]},{"name":"U_IDNA_UNASSIGNED_ERROR","features":[70]},{"name":"U_IDNA_VERIFICATION_ERROR","features":[70]},{"name":"U_IDNA_ZERO_LENGTH_LABEL_ERROR","features":[70]},{"name":"U_ILLEGAL_ARGUMENT_ERROR","features":[70]},{"name":"U_ILLEGAL_CHARACTER","features":[70]},{"name":"U_ILLEGAL_CHAR_FOUND","features":[70]},{"name":"U_ILLEGAL_CHAR_IN_SEGMENT","features":[70]},{"name":"U_ILLEGAL_ESCAPE_SEQUENCE","features":[70]},{"name":"U_ILLEGAL_PAD_POSITION","features":[70]},{"name":"U_INDEX_OUTOFBOUNDS_ERROR","features":[70]},{"name":"U_INITIAL_PUNCTUATION","features":[70]},{"name":"U_INPC_BOTTOM","features":[70]},{"name":"U_INPC_BOTTOM_AND_LEFT","features":[70]},{"name":"U_INPC_BOTTOM_AND_RIGHT","features":[70]},{"name":"U_INPC_LEFT","features":[70]},{"name":"U_INPC_LEFT_AND_RIGHT","features":[70]},{"name":"U_INPC_NA","features":[70]},{"name":"U_INPC_OVERSTRUCK","features":[70]},{"name":"U_INPC_RIGHT","features":[70]},{"name":"U_INPC_TOP","features":[70]},{"name":"U_INPC_TOP_AND_BOTTOM","features":[70]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_LEFT","features":[70]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_RIGHT","features":[70]},{"name":"U_INPC_TOP_AND_LEFT","features":[70]},{"name":"U_INPC_TOP_AND_LEFT_AND_RIGHT","features":[70]},{"name":"U_INPC_TOP_AND_RIGHT","features":[70]},{"name":"U_INPC_VISUAL_ORDER_LEFT","features":[70]},{"name":"U_INSC_AVAGRAHA","features":[70]},{"name":"U_INSC_BINDU","features":[70]},{"name":"U_INSC_BRAHMI_JOINING_NUMBER","features":[70]},{"name":"U_INSC_CANTILLATION_MARK","features":[70]},{"name":"U_INSC_CONSONANT","features":[70]},{"name":"U_INSC_CONSONANT_DEAD","features":[70]},{"name":"U_INSC_CONSONANT_FINAL","features":[70]},{"name":"U_INSC_CONSONANT_HEAD_LETTER","features":[70]},{"name":"U_INSC_CONSONANT_INITIAL_POSTFIXED","features":[70]},{"name":"U_INSC_CONSONANT_KILLER","features":[70]},{"name":"U_INSC_CONSONANT_MEDIAL","features":[70]},{"name":"U_INSC_CONSONANT_PLACEHOLDER","features":[70]},{"name":"U_INSC_CONSONANT_PRECEDING_REPHA","features":[70]},{"name":"U_INSC_CONSONANT_PREFIXED","features":[70]},{"name":"U_INSC_CONSONANT_SUBJOINED","features":[70]},{"name":"U_INSC_CONSONANT_SUCCEEDING_REPHA","features":[70]},{"name":"U_INSC_CONSONANT_WITH_STACKER","features":[70]},{"name":"U_INSC_GEMINATION_MARK","features":[70]},{"name":"U_INSC_INVISIBLE_STACKER","features":[70]},{"name":"U_INSC_JOINER","features":[70]},{"name":"U_INSC_MODIFYING_LETTER","features":[70]},{"name":"U_INSC_NON_JOINER","features":[70]},{"name":"U_INSC_NUKTA","features":[70]},{"name":"U_INSC_NUMBER","features":[70]},{"name":"U_INSC_NUMBER_JOINER","features":[70]},{"name":"U_INSC_OTHER","features":[70]},{"name":"U_INSC_PURE_KILLER","features":[70]},{"name":"U_INSC_REGISTER_SHIFTER","features":[70]},{"name":"U_INSC_SYLLABLE_MODIFIER","features":[70]},{"name":"U_INSC_TONE_LETTER","features":[70]},{"name":"U_INSC_TONE_MARK","features":[70]},{"name":"U_INSC_VIRAMA","features":[70]},{"name":"U_INSC_VISARGA","features":[70]},{"name":"U_INSC_VOWEL","features":[70]},{"name":"U_INSC_VOWEL_DEPENDENT","features":[70]},{"name":"U_INSC_VOWEL_INDEPENDENT","features":[70]},{"name":"U_INTERNAL_PROGRAM_ERROR","features":[70]},{"name":"U_INTERNAL_TRANSLITERATOR_ERROR","features":[70]},{"name":"U_INVALID_CHAR_FOUND","features":[70]},{"name":"U_INVALID_FORMAT_ERROR","features":[70]},{"name":"U_INVALID_FUNCTION","features":[70]},{"name":"U_INVALID_ID","features":[70]},{"name":"U_INVALID_PROPERTY_PATTERN","features":[70]},{"name":"U_INVALID_RBT_SYNTAX","features":[70]},{"name":"U_INVALID_STATE_ERROR","features":[70]},{"name":"U_INVALID_TABLE_FILE","features":[70]},{"name":"U_INVALID_TABLE_FORMAT","features":[70]},{"name":"U_INVARIANT_CONVERSION_ERROR","features":[70]},{"name":"U_IOSTREAM_SOURCE","features":[70]},{"name":"U_IS_BIG_ENDIAN","features":[70]},{"name":"U_JG_AFRICAN_FEH","features":[70]},{"name":"U_JG_AFRICAN_NOON","features":[70]},{"name":"U_JG_AFRICAN_QAF","features":[70]},{"name":"U_JG_AIN","features":[70]},{"name":"U_JG_ALAPH","features":[70]},{"name":"U_JG_ALEF","features":[70]},{"name":"U_JG_BEH","features":[70]},{"name":"U_JG_BETH","features":[70]},{"name":"U_JG_BURUSHASKI_YEH_BARREE","features":[70]},{"name":"U_JG_DAL","features":[70]},{"name":"U_JG_DALATH_RISH","features":[70]},{"name":"U_JG_E","features":[70]},{"name":"U_JG_FARSI_YEH","features":[70]},{"name":"U_JG_FE","features":[70]},{"name":"U_JG_FEH","features":[70]},{"name":"U_JG_FINAL_SEMKATH","features":[70]},{"name":"U_JG_GAF","features":[70]},{"name":"U_JG_GAMAL","features":[70]},{"name":"U_JG_HAH","features":[70]},{"name":"U_JG_HAMZA_ON_HEH_GOAL","features":[70]},{"name":"U_JG_HANIFI_ROHINGYA_KINNA_YA","features":[70]},{"name":"U_JG_HANIFI_ROHINGYA_PA","features":[70]},{"name":"U_JG_HE","features":[70]},{"name":"U_JG_HEH","features":[70]},{"name":"U_JG_HEH_GOAL","features":[70]},{"name":"U_JG_HETH","features":[70]},{"name":"U_JG_KAF","features":[70]},{"name":"U_JG_KAPH","features":[70]},{"name":"U_JG_KHAPH","features":[70]},{"name":"U_JG_KNOTTED_HEH","features":[70]},{"name":"U_JG_LAM","features":[70]},{"name":"U_JG_LAMADH","features":[70]},{"name":"U_JG_MALAYALAM_BHA","features":[70]},{"name":"U_JG_MALAYALAM_JA","features":[70]},{"name":"U_JG_MALAYALAM_LLA","features":[70]},{"name":"U_JG_MALAYALAM_LLLA","features":[70]},{"name":"U_JG_MALAYALAM_NGA","features":[70]},{"name":"U_JG_MALAYALAM_NNA","features":[70]},{"name":"U_JG_MALAYALAM_NNNA","features":[70]},{"name":"U_JG_MALAYALAM_NYA","features":[70]},{"name":"U_JG_MALAYALAM_RA","features":[70]},{"name":"U_JG_MALAYALAM_SSA","features":[70]},{"name":"U_JG_MALAYALAM_TTA","features":[70]},{"name":"U_JG_MANICHAEAN_ALEPH","features":[70]},{"name":"U_JG_MANICHAEAN_AYIN","features":[70]},{"name":"U_JG_MANICHAEAN_BETH","features":[70]},{"name":"U_JG_MANICHAEAN_DALETH","features":[70]},{"name":"U_JG_MANICHAEAN_DHAMEDH","features":[70]},{"name":"U_JG_MANICHAEAN_FIVE","features":[70]},{"name":"U_JG_MANICHAEAN_GIMEL","features":[70]},{"name":"U_JG_MANICHAEAN_HETH","features":[70]},{"name":"U_JG_MANICHAEAN_HUNDRED","features":[70]},{"name":"U_JG_MANICHAEAN_KAPH","features":[70]},{"name":"U_JG_MANICHAEAN_LAMEDH","features":[70]},{"name":"U_JG_MANICHAEAN_MEM","features":[70]},{"name":"U_JG_MANICHAEAN_NUN","features":[70]},{"name":"U_JG_MANICHAEAN_ONE","features":[70]},{"name":"U_JG_MANICHAEAN_PE","features":[70]},{"name":"U_JG_MANICHAEAN_QOPH","features":[70]},{"name":"U_JG_MANICHAEAN_RESH","features":[70]},{"name":"U_JG_MANICHAEAN_SADHE","features":[70]},{"name":"U_JG_MANICHAEAN_SAMEKH","features":[70]},{"name":"U_JG_MANICHAEAN_TAW","features":[70]},{"name":"U_JG_MANICHAEAN_TEN","features":[70]},{"name":"U_JG_MANICHAEAN_TETH","features":[70]},{"name":"U_JG_MANICHAEAN_THAMEDH","features":[70]},{"name":"U_JG_MANICHAEAN_TWENTY","features":[70]},{"name":"U_JG_MANICHAEAN_WAW","features":[70]},{"name":"U_JG_MANICHAEAN_YODH","features":[70]},{"name":"U_JG_MANICHAEAN_ZAYIN","features":[70]},{"name":"U_JG_MEEM","features":[70]},{"name":"U_JG_MIM","features":[70]},{"name":"U_JG_NOON","features":[70]},{"name":"U_JG_NO_JOINING_GROUP","features":[70]},{"name":"U_JG_NUN","features":[70]},{"name":"U_JG_NYA","features":[70]},{"name":"U_JG_PE","features":[70]},{"name":"U_JG_QAF","features":[70]},{"name":"U_JG_QAPH","features":[70]},{"name":"U_JG_REH","features":[70]},{"name":"U_JG_REVERSED_PE","features":[70]},{"name":"U_JG_ROHINGYA_YEH","features":[70]},{"name":"U_JG_SAD","features":[70]},{"name":"U_JG_SADHE","features":[70]},{"name":"U_JG_SEEN","features":[70]},{"name":"U_JG_SEMKATH","features":[70]},{"name":"U_JG_SHIN","features":[70]},{"name":"U_JG_STRAIGHT_WAW","features":[70]},{"name":"U_JG_SWASH_KAF","features":[70]},{"name":"U_JG_SYRIAC_WAW","features":[70]},{"name":"U_JG_TAH","features":[70]},{"name":"U_JG_TAW","features":[70]},{"name":"U_JG_TEH_MARBUTA","features":[70]},{"name":"U_JG_TEH_MARBUTA_GOAL","features":[70]},{"name":"U_JG_TETH","features":[70]},{"name":"U_JG_WAW","features":[70]},{"name":"U_JG_YEH","features":[70]},{"name":"U_JG_YEH_BARREE","features":[70]},{"name":"U_JG_YEH_WITH_TAIL","features":[70]},{"name":"U_JG_YUDH","features":[70]},{"name":"U_JG_YUDH_HE","features":[70]},{"name":"U_JG_ZAIN","features":[70]},{"name":"U_JG_ZHAIN","features":[70]},{"name":"U_JT_DUAL_JOINING","features":[70]},{"name":"U_JT_JOIN_CAUSING","features":[70]},{"name":"U_JT_LEFT_JOINING","features":[70]},{"name":"U_JT_NON_JOINING","features":[70]},{"name":"U_JT_RIGHT_JOINING","features":[70]},{"name":"U_JT_TRANSPARENT","features":[70]},{"name":"U_LB_ALPHABETIC","features":[70]},{"name":"U_LB_AMBIGUOUS","features":[70]},{"name":"U_LB_BREAK_AFTER","features":[70]},{"name":"U_LB_BREAK_BEFORE","features":[70]},{"name":"U_LB_BREAK_BOTH","features":[70]},{"name":"U_LB_BREAK_SYMBOLS","features":[70]},{"name":"U_LB_CARRIAGE_RETURN","features":[70]},{"name":"U_LB_CLOSE_PARENTHESIS","features":[70]},{"name":"U_LB_CLOSE_PUNCTUATION","features":[70]},{"name":"U_LB_COMBINING_MARK","features":[70]},{"name":"U_LB_COMPLEX_CONTEXT","features":[70]},{"name":"U_LB_CONDITIONAL_JAPANESE_STARTER","features":[70]},{"name":"U_LB_CONTINGENT_BREAK","features":[70]},{"name":"U_LB_EXCLAMATION","features":[70]},{"name":"U_LB_E_BASE","features":[70]},{"name":"U_LB_E_MODIFIER","features":[70]},{"name":"U_LB_GLUE","features":[70]},{"name":"U_LB_H2","features":[70]},{"name":"U_LB_H3","features":[70]},{"name":"U_LB_HEBREW_LETTER","features":[70]},{"name":"U_LB_HYPHEN","features":[70]},{"name":"U_LB_IDEOGRAPHIC","features":[70]},{"name":"U_LB_INFIX_NUMERIC","features":[70]},{"name":"U_LB_INSEPARABLE","features":[70]},{"name":"U_LB_INSEPERABLE","features":[70]},{"name":"U_LB_JL","features":[70]},{"name":"U_LB_JT","features":[70]},{"name":"U_LB_JV","features":[70]},{"name":"U_LB_LINE_FEED","features":[70]},{"name":"U_LB_MANDATORY_BREAK","features":[70]},{"name":"U_LB_NEXT_LINE","features":[70]},{"name":"U_LB_NONSTARTER","features":[70]},{"name":"U_LB_NUMERIC","features":[70]},{"name":"U_LB_OPEN_PUNCTUATION","features":[70]},{"name":"U_LB_POSTFIX_NUMERIC","features":[70]},{"name":"U_LB_PREFIX_NUMERIC","features":[70]},{"name":"U_LB_QUOTATION","features":[70]},{"name":"U_LB_REGIONAL_INDICATOR","features":[70]},{"name":"U_LB_SPACE","features":[70]},{"name":"U_LB_SURROGATE","features":[70]},{"name":"U_LB_UNKNOWN","features":[70]},{"name":"U_LB_WORD_JOINER","features":[70]},{"name":"U_LB_ZWJ","features":[70]},{"name":"U_LB_ZWSPACE","features":[70]},{"name":"U_LEFT_TO_RIGHT","features":[70]},{"name":"U_LEFT_TO_RIGHT_EMBEDDING","features":[70]},{"name":"U_LEFT_TO_RIGHT_ISOLATE","features":[70]},{"name":"U_LEFT_TO_RIGHT_OVERRIDE","features":[70]},{"name":"U_LETTER_NUMBER","features":[70]},{"name":"U_LIB_SUFFIX_C_NAME_STRING","features":[70]},{"name":"U_LINE_SEPARATOR","features":[70]},{"name":"U_LONG_PROPERTY_NAME","features":[70]},{"name":"U_LOWERCASE_LETTER","features":[70]},{"name":"U_MALFORMED_EXPONENTIAL_PATTERN","features":[70]},{"name":"U_MALFORMED_PRAGMA","features":[70]},{"name":"U_MALFORMED_RULE","features":[70]},{"name":"U_MALFORMED_SET","features":[70]},{"name":"U_MALFORMED_SYMBOL_REFERENCE","features":[70]},{"name":"U_MALFORMED_UNICODE_ESCAPE","features":[70]},{"name":"U_MALFORMED_VARIABLE_DEFINITION","features":[70]},{"name":"U_MALFORMED_VARIABLE_REFERENCE","features":[70]},{"name":"U_MATH_SYMBOL","features":[70]},{"name":"U_MAX_VERSION_LENGTH","features":[70]},{"name":"U_MAX_VERSION_STRING_LENGTH","features":[70]},{"name":"U_MEMORY_ALLOCATION_ERROR","features":[70]},{"name":"U_MESSAGE_PARSE_ERROR","features":[70]},{"name":"U_MILLIS_PER_DAY","features":[70]},{"name":"U_MILLIS_PER_HOUR","features":[70]},{"name":"U_MILLIS_PER_MINUTE","features":[70]},{"name":"U_MILLIS_PER_SECOND","features":[70]},{"name":"U_MISMATCHED_SEGMENT_DELIMITERS","features":[70]},{"name":"U_MISPLACED_ANCHOR_START","features":[70]},{"name":"U_MISPLACED_COMPOUND_FILTER","features":[70]},{"name":"U_MISPLACED_CURSOR_OFFSET","features":[70]},{"name":"U_MISPLACED_QUANTIFIER","features":[70]},{"name":"U_MISSING_OPERATOR","features":[70]},{"name":"U_MISSING_RESOURCE_ERROR","features":[70]},{"name":"U_MISSING_SEGMENT_CLOSE","features":[70]},{"name":"U_MODIFIER_LETTER","features":[70]},{"name":"U_MODIFIER_SYMBOL","features":[70]},{"name":"U_MULTIPLE_ANTE_CONTEXTS","features":[70]},{"name":"U_MULTIPLE_COMPOUND_FILTERS","features":[70]},{"name":"U_MULTIPLE_CURSORS","features":[70]},{"name":"U_MULTIPLE_DECIMAL_SEPARATORS","features":[70]},{"name":"U_MULTIPLE_DECIMAL_SEPERATORS","features":[70]},{"name":"U_MULTIPLE_EXPONENTIAL_SYMBOLS","features":[70]},{"name":"U_MULTIPLE_PAD_SPECIFIERS","features":[70]},{"name":"U_MULTIPLE_PERCENT_SYMBOLS","features":[70]},{"name":"U_MULTIPLE_PERMILL_SYMBOLS","features":[70]},{"name":"U_MULTIPLE_POST_CONTEXTS","features":[70]},{"name":"U_NON_SPACING_MARK","features":[70]},{"name":"U_NO_DEFAULT_INCLUDE_UTF_HEADERS","features":[70]},{"name":"U_NO_SPACE_AVAILABLE","features":[70]},{"name":"U_NO_WRITE_PERMISSION","features":[70]},{"name":"U_NT_DECIMAL","features":[70]},{"name":"U_NT_DIGIT","features":[70]},{"name":"U_NT_NONE","features":[70]},{"name":"U_NT_NUMERIC","features":[70]},{"name":"U_NUMBER_ARG_OUTOFBOUNDS_ERROR","features":[70]},{"name":"U_NUMBER_SKELETON_SYNTAX_ERROR","features":[70]},{"name":"U_OMIT_UNCHANGED_TEXT","features":[70]},{"name":"U_OTHER_LETTER","features":[70]},{"name":"U_OTHER_NEUTRAL","features":[70]},{"name":"U_OTHER_NUMBER","features":[70]},{"name":"U_OTHER_PUNCTUATION","features":[70]},{"name":"U_OTHER_SYMBOL","features":[70]},{"name":"U_OVERRIDE_CXX_ALLOCATION","features":[70]},{"name":"U_PARAGRAPH_SEPARATOR","features":[70]},{"name":"U_PARSE_CONTEXT_LEN","features":[70]},{"name":"U_PARSE_ERROR","features":[70]},{"name":"U_PARSE_ERROR_START","features":[70]},{"name":"U_PATTERN_SYNTAX_ERROR","features":[70]},{"name":"U_PF_AIX","features":[70]},{"name":"U_PF_ANDROID","features":[70]},{"name":"U_PF_BROWSER_NATIVE_CLIENT","features":[70]},{"name":"U_PF_BSD","features":[70]},{"name":"U_PF_CYGWIN","features":[70]},{"name":"U_PF_DARWIN","features":[70]},{"name":"U_PF_EMSCRIPTEN","features":[70]},{"name":"U_PF_FUCHSIA","features":[70]},{"name":"U_PF_HPUX","features":[70]},{"name":"U_PF_IPHONE","features":[70]},{"name":"U_PF_IRIX","features":[70]},{"name":"U_PF_LINUX","features":[70]},{"name":"U_PF_MINGW","features":[70]},{"name":"U_PF_OS390","features":[70]},{"name":"U_PF_OS400","features":[70]},{"name":"U_PF_QNX","features":[70]},{"name":"U_PF_SOLARIS","features":[70]},{"name":"U_PF_UNKNOWN","features":[70]},{"name":"U_PF_WINDOWS","features":[70]},{"name":"U_PLATFORM","features":[70]},{"name":"U_PLATFORM_HAS_WIN32_API","features":[70]},{"name":"U_PLATFORM_HAS_WINUWP_API","features":[70]},{"name":"U_PLATFORM_IMPLEMENTS_POSIX","features":[70]},{"name":"U_PLATFORM_IS_DARWIN_BASED","features":[70]},{"name":"U_PLATFORM_IS_LINUX_BASED","features":[70]},{"name":"U_PLATFORM_USES_ONLY_WIN32_API","features":[70]},{"name":"U_PLUGIN_CHANGED_LEVEL_WARNING","features":[70]},{"name":"U_PLUGIN_DIDNT_SET_LEVEL","features":[70]},{"name":"U_PLUGIN_ERROR_START","features":[70]},{"name":"U_PLUGIN_TOO_HIGH","features":[70]},{"name":"U_POP_DIRECTIONAL_FORMAT","features":[70]},{"name":"U_POP_DIRECTIONAL_ISOLATE","features":[70]},{"name":"U_PRIMARY_TOO_LONG_ERROR","features":[70]},{"name":"U_PRIVATE_USE_CHAR","features":[70]},{"name":"U_REGEX_BAD_ESCAPE_SEQUENCE","features":[70]},{"name":"U_REGEX_BAD_INTERVAL","features":[70]},{"name":"U_REGEX_ERROR_START","features":[70]},{"name":"U_REGEX_INTERNAL_ERROR","features":[70]},{"name":"U_REGEX_INVALID_BACK_REF","features":[70]},{"name":"U_REGEX_INVALID_CAPTURE_GROUP_NAME","features":[70]},{"name":"U_REGEX_INVALID_FLAG","features":[70]},{"name":"U_REGEX_INVALID_RANGE","features":[70]},{"name":"U_REGEX_INVALID_STATE","features":[70]},{"name":"U_REGEX_LOOK_BEHIND_LIMIT","features":[70]},{"name":"U_REGEX_MAX_LT_MIN","features":[70]},{"name":"U_REGEX_MISMATCHED_PAREN","features":[70]},{"name":"U_REGEX_MISSING_CLOSE_BRACKET","features":[70]},{"name":"U_REGEX_NUMBER_TOO_BIG","features":[70]},{"name":"U_REGEX_PATTERN_TOO_BIG","features":[70]},{"name":"U_REGEX_PROPERTY_SYNTAX","features":[70]},{"name":"U_REGEX_RULE_SYNTAX","features":[70]},{"name":"U_REGEX_SET_CONTAINS_STRING","features":[70]},{"name":"U_REGEX_STACK_OVERFLOW","features":[70]},{"name":"U_REGEX_STOPPED_BY_CALLER","features":[70]},{"name":"U_REGEX_TIME_OUT","features":[70]},{"name":"U_REGEX_UNIMPLEMENTED","features":[70]},{"name":"U_RESOURCE_TYPE_MISMATCH","features":[70]},{"name":"U_RIGHT_TO_LEFT","features":[70]},{"name":"U_RIGHT_TO_LEFT_ARABIC","features":[70]},{"name":"U_RIGHT_TO_LEFT_EMBEDDING","features":[70]},{"name":"U_RIGHT_TO_LEFT_ISOLATE","features":[70]},{"name":"U_RIGHT_TO_LEFT_OVERRIDE","features":[70]},{"name":"U_RULE_MASK_ERROR","features":[70]},{"name":"U_SAFECLONE_ALLOCATED_WARNING","features":[70]},{"name":"U_SB_ATERM","features":[70]},{"name":"U_SB_CLOSE","features":[70]},{"name":"U_SB_CR","features":[70]},{"name":"U_SB_EXTEND","features":[70]},{"name":"U_SB_FORMAT","features":[70]},{"name":"U_SB_LF","features":[70]},{"name":"U_SB_LOWER","features":[70]},{"name":"U_SB_NUMERIC","features":[70]},{"name":"U_SB_OLETTER","features":[70]},{"name":"U_SB_OTHER","features":[70]},{"name":"U_SB_SCONTINUE","features":[70]},{"name":"U_SB_SEP","features":[70]},{"name":"U_SB_SP","features":[70]},{"name":"U_SB_STERM","features":[70]},{"name":"U_SB_UPPER","features":[70]},{"name":"U_SEGMENT_SEPARATOR","features":[70]},{"name":"U_SENTINEL","features":[70]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL","features":[70]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_MASK","features":[70]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_NOOP","features":[70]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_AL","features":[70]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_LR","features":[70]},{"name":"U_SHAPE_DIGITS_AN2EN","features":[70]},{"name":"U_SHAPE_DIGITS_EN2AN","features":[70]},{"name":"U_SHAPE_DIGITS_MASK","features":[70]},{"name":"U_SHAPE_DIGITS_NOOP","features":[70]},{"name":"U_SHAPE_DIGITS_RESERVED","features":[70]},{"name":"U_SHAPE_DIGIT_TYPE_AN","features":[70]},{"name":"U_SHAPE_DIGIT_TYPE_AN_EXTENDED","features":[70]},{"name":"U_SHAPE_DIGIT_TYPE_MASK","features":[70]},{"name":"U_SHAPE_DIGIT_TYPE_RESERVED","features":[70]},{"name":"U_SHAPE_LAMALEF_AUTO","features":[70]},{"name":"U_SHAPE_LAMALEF_BEGIN","features":[70]},{"name":"U_SHAPE_LAMALEF_END","features":[70]},{"name":"U_SHAPE_LAMALEF_MASK","features":[70]},{"name":"U_SHAPE_LAMALEF_NEAR","features":[70]},{"name":"U_SHAPE_LAMALEF_RESIZE","features":[70]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_BEGINNING","features":[70]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_END","features":[70]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_NEAR","features":[70]},{"name":"U_SHAPE_LENGTH_GROW_SHRINK","features":[70]},{"name":"U_SHAPE_LENGTH_MASK","features":[70]},{"name":"U_SHAPE_LETTERS_MASK","features":[70]},{"name":"U_SHAPE_LETTERS_NOOP","features":[70]},{"name":"U_SHAPE_LETTERS_SHAPE","features":[70]},{"name":"U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED","features":[70]},{"name":"U_SHAPE_LETTERS_UNSHAPE","features":[70]},{"name":"U_SHAPE_PRESERVE_PRESENTATION","features":[70]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_MASK","features":[70]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_NOOP","features":[70]},{"name":"U_SHAPE_SEEN_MASK","features":[70]},{"name":"U_SHAPE_SEEN_TWOCELL_NEAR","features":[70]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_BEGIN_END","features":[70]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_MASK","features":[70]},{"name":"U_SHAPE_TAIL_NEW_UNICODE","features":[70]},{"name":"U_SHAPE_TAIL_TYPE_MASK","features":[70]},{"name":"U_SHAPE_TASHKEEL_BEGIN","features":[70]},{"name":"U_SHAPE_TASHKEEL_END","features":[70]},{"name":"U_SHAPE_TASHKEEL_MASK","features":[70]},{"name":"U_SHAPE_TASHKEEL_REPLACE_BY_TATWEEL","features":[70]},{"name":"U_SHAPE_TASHKEEL_RESIZE","features":[70]},{"name":"U_SHAPE_TEXT_DIRECTION_LOGICAL","features":[70]},{"name":"U_SHAPE_TEXT_DIRECTION_MASK","features":[70]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_LTR","features":[70]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_RTL","features":[70]},{"name":"U_SHAPE_YEHHAMZA_MASK","features":[70]},{"name":"U_SHAPE_YEHHAMZA_TWOCELL_NEAR","features":[70]},{"name":"U_SHORT_PROPERTY_NAME","features":[70]},{"name":"U_SHOW_CPLUSPLUS_API","features":[70]},{"name":"U_SIZEOF_UCHAR","features":[70]},{"name":"U_SIZEOF_WCHAR_T","features":[70]},{"name":"U_SORT_KEY_TOO_SHORT_WARNING","features":[70]},{"name":"U_SPACE_SEPARATOR","features":[70]},{"name":"U_START_PUNCTUATION","features":[70]},{"name":"U_STATE_OLD_WARNING","features":[70]},{"name":"U_STATE_TOO_OLD_ERROR","features":[70]},{"name":"U_STRINGPREP_CHECK_BIDI_ERROR","features":[70]},{"name":"U_STRINGPREP_PROHIBITED_ERROR","features":[70]},{"name":"U_STRINGPREP_UNASSIGNED_ERROR","features":[70]},{"name":"U_STRING_NOT_TERMINATED_WARNING","features":[70]},{"name":"U_SURROGATE","features":[70]},{"name":"U_TITLECASE_ADJUST_TO_CASED","features":[70]},{"name":"U_TITLECASE_LETTER","features":[70]},{"name":"U_TITLECASE_NO_BREAK_ADJUSTMENT","features":[70]},{"name":"U_TITLECASE_NO_LOWERCASE","features":[70]},{"name":"U_TITLECASE_SENTENCES","features":[70]},{"name":"U_TITLECASE_WHOLE_STRING","features":[70]},{"name":"U_TOO_MANY_ALIASES_ERROR","features":[70]},{"name":"U_TRAILING_BACKSLASH","features":[70]},{"name":"U_TRUNCATED_CHAR_FOUND","features":[70]},{"name":"U_UNASSIGNED","features":[70]},{"name":"U_UNCLOSED_SEGMENT","features":[70]},{"name":"U_UNDEFINED_KEYWORD","features":[70]},{"name":"U_UNDEFINED_SEGMENT_REFERENCE","features":[70]},{"name":"U_UNDEFINED_VARIABLE","features":[70]},{"name":"U_UNEXPECTED_TOKEN","features":[70]},{"name":"U_UNICODE_CHAR_NAME","features":[70]},{"name":"U_UNICODE_VERSION","features":[70]},{"name":"U_UNMATCHED_BRACES","features":[70]},{"name":"U_UNQUOTED_SPECIAL","features":[70]},{"name":"U_UNSUPPORTED_ATTRIBUTE","features":[70]},{"name":"U_UNSUPPORTED_ERROR","features":[70]},{"name":"U_UNSUPPORTED_ESCAPE_SEQUENCE","features":[70]},{"name":"U_UNSUPPORTED_PROPERTY","features":[70]},{"name":"U_UNTERMINATED_QUOTE","features":[70]},{"name":"U_UPPERCASE_LETTER","features":[70]},{"name":"U_USELESS_COLLATOR_ERROR","features":[70]},{"name":"U_USING_DEFAULT_WARNING","features":[70]},{"name":"U_USING_FALLBACK_WARNING","features":[70]},{"name":"U_USING_ICU_NAMESPACE","features":[70]},{"name":"U_VARIABLE_RANGE_EXHAUSTED","features":[70]},{"name":"U_VARIABLE_RANGE_OVERLAP","features":[70]},{"name":"U_VO_ROTATED","features":[70]},{"name":"U_VO_TRANSFORMED_ROTATED","features":[70]},{"name":"U_VO_TRANSFORMED_UPRIGHT","features":[70]},{"name":"U_VO_UPRIGHT","features":[70]},{"name":"U_WB_ALETTER","features":[70]},{"name":"U_WB_CR","features":[70]},{"name":"U_WB_DOUBLE_QUOTE","features":[70]},{"name":"U_WB_EXTEND","features":[70]},{"name":"U_WB_EXTENDNUMLET","features":[70]},{"name":"U_WB_E_BASE","features":[70]},{"name":"U_WB_E_BASE_GAZ","features":[70]},{"name":"U_WB_E_MODIFIER","features":[70]},{"name":"U_WB_FORMAT","features":[70]},{"name":"U_WB_GLUE_AFTER_ZWJ","features":[70]},{"name":"U_WB_HEBREW_LETTER","features":[70]},{"name":"U_WB_KATAKANA","features":[70]},{"name":"U_WB_LF","features":[70]},{"name":"U_WB_MIDLETTER","features":[70]},{"name":"U_WB_MIDNUM","features":[70]},{"name":"U_WB_MIDNUMLET","features":[70]},{"name":"U_WB_NEWLINE","features":[70]},{"name":"U_WB_NUMERIC","features":[70]},{"name":"U_WB_OTHER","features":[70]},{"name":"U_WB_REGIONAL_INDICATOR","features":[70]},{"name":"U_WB_SINGLE_QUOTE","features":[70]},{"name":"U_WB_WSEGSPACE","features":[70]},{"name":"U_WB_ZWJ","features":[70]},{"name":"U_WHITE_SPACE_NEUTRAL","features":[70]},{"name":"U_ZERO_ERROR","features":[70]},{"name":"UpdateCalendarDayOfWeek","features":[1,70]},{"name":"VS_ALLOW_LATIN","features":[70]},{"name":"VerifyScripts","features":[1,70]},{"name":"WC_COMPOSITECHECK","features":[70]},{"name":"WC_DEFAULTCHAR","features":[70]},{"name":"WC_DISCARDNS","features":[70]},{"name":"WC_ERR_INVALID_CHARS","features":[70]},{"name":"WC_NO_BEST_FIT_CHARS","features":[70]},{"name":"WC_SEPCHARS","features":[70]},{"name":"WORDLIST_TYPE","features":[70]},{"name":"WORDLIST_TYPE_ADD","features":[70]},{"name":"WORDLIST_TYPE_AUTOCORRECT","features":[70]},{"name":"WORDLIST_TYPE_EXCLUDE","features":[70]},{"name":"WORDLIST_TYPE_IGNORE","features":[70]},{"name":"WeekUnit","features":[70]},{"name":"WideCharToMultiByte","features":[1,70]},{"name":"YearUnit","features":[70]},{"name":"lstrcatA","features":[70]},{"name":"lstrcatW","features":[70]},{"name":"lstrcmpA","features":[70]},{"name":"lstrcmpW","features":[70]},{"name":"lstrcmpiA","features":[70]},{"name":"lstrcmpiW","features":[70]},{"name":"lstrcpyA","features":[70]},{"name":"lstrcpyW","features":[70]},{"name":"lstrcpynA","features":[70]},{"name":"lstrcpynW","features":[70]},{"name":"lstrlenA","features":[70]},{"name":"lstrlenW","features":[70]},{"name":"sidArabic","features":[70]},{"name":"sidArmenian","features":[70]},{"name":"sidAsciiLatin","features":[70]},{"name":"sidAsciiSym","features":[70]},{"name":"sidBengali","features":[70]},{"name":"sidBopomofo","features":[70]},{"name":"sidBraille","features":[70]},{"name":"sidBurmese","features":[70]},{"name":"sidCanSyllabic","features":[70]},{"name":"sidCherokee","features":[70]},{"name":"sidCyrillic","features":[70]},{"name":"sidDefault","features":[70]},{"name":"sidDevanagari","features":[70]},{"name":"sidEthiopic","features":[70]},{"name":"sidFEFirst","features":[70]},{"name":"sidFELast","features":[70]},{"name":"sidGeorgian","features":[70]},{"name":"sidGreek","features":[70]},{"name":"sidGujarati","features":[70]},{"name":"sidGurmukhi","features":[70]},{"name":"sidHan","features":[70]},{"name":"sidHangul","features":[70]},{"name":"sidHebrew","features":[70]},{"name":"sidKana","features":[70]},{"name":"sidKannada","features":[70]},{"name":"sidKhmer","features":[70]},{"name":"sidLao","features":[70]},{"name":"sidLatin","features":[70]},{"name":"sidLim","features":[70]},{"name":"sidMalayalam","features":[70]},{"name":"sidMerge","features":[70]},{"name":"sidMongolian","features":[70]},{"name":"sidOgham","features":[70]},{"name":"sidOriya","features":[70]},{"name":"sidRunic","features":[70]},{"name":"sidSinhala","features":[70]},{"name":"sidSyriac","features":[70]},{"name":"sidTamil","features":[70]},{"name":"sidTelugu","features":[70]},{"name":"sidThaana","features":[70]},{"name":"sidThai","features":[70]},{"name":"sidTibetan","features":[70]},{"name":"sidUserDefined","features":[70]},{"name":"sidYi","features":[70]},{"name":"u_UCharsToChars","features":[70]},{"name":"u_austrcpy","features":[70]},{"name":"u_austrncpy","features":[70]},{"name":"u_catclose","features":[70]},{"name":"u_catgets","features":[70]},{"name":"u_catopen","features":[70]},{"name":"u_charAge","features":[70]},{"name":"u_charDigitValue","features":[70]},{"name":"u_charDirection","features":[70]},{"name":"u_charFromName","features":[70]},{"name":"u_charMirror","features":[70]},{"name":"u_charName","features":[70]},{"name":"u_charType","features":[70]},{"name":"u_charsToUChars","features":[70]},{"name":"u_cleanup","features":[70]},{"name":"u_countChar32","features":[70]},{"name":"u_digit","features":[70]},{"name":"u_enumCharNames","features":[70]},{"name":"u_enumCharTypes","features":[70]},{"name":"u_errorName","features":[70]},{"name":"u_foldCase","features":[70]},{"name":"u_forDigit","features":[70]},{"name":"u_formatMessage","features":[70]},{"name":"u_formatMessageWithError","features":[70]},{"name":"u_getBidiPairedBracket","features":[70]},{"name":"u_getBinaryPropertySet","features":[70]},{"name":"u_getCombiningClass","features":[70]},{"name":"u_getDataVersion","features":[70]},{"name":"u_getFC_NFKC_Closure","features":[70]},{"name":"u_getIntPropertyMap","features":[70]},{"name":"u_getIntPropertyMaxValue","features":[70]},{"name":"u_getIntPropertyMinValue","features":[70]},{"name":"u_getIntPropertyValue","features":[70]},{"name":"u_getNumericValue","features":[70]},{"name":"u_getPropertyEnum","features":[70]},{"name":"u_getPropertyName","features":[70]},{"name":"u_getPropertyValueEnum","features":[70]},{"name":"u_getPropertyValueName","features":[70]},{"name":"u_getUnicodeVersion","features":[70]},{"name":"u_getVersion","features":[70]},{"name":"u_hasBinaryProperty","features":[70]},{"name":"u_init","features":[70]},{"name":"u_isIDIgnorable","features":[70]},{"name":"u_isIDPart","features":[70]},{"name":"u_isIDStart","features":[70]},{"name":"u_isISOControl","features":[70]},{"name":"u_isJavaIDPart","features":[70]},{"name":"u_isJavaIDStart","features":[70]},{"name":"u_isJavaSpaceChar","features":[70]},{"name":"u_isMirrored","features":[70]},{"name":"u_isUAlphabetic","features":[70]},{"name":"u_isULowercase","features":[70]},{"name":"u_isUUppercase","features":[70]},{"name":"u_isUWhiteSpace","features":[70]},{"name":"u_isWhitespace","features":[70]},{"name":"u_isalnum","features":[70]},{"name":"u_isalpha","features":[70]},{"name":"u_isbase","features":[70]},{"name":"u_isblank","features":[70]},{"name":"u_iscntrl","features":[70]},{"name":"u_isdefined","features":[70]},{"name":"u_isdigit","features":[70]},{"name":"u_isgraph","features":[70]},{"name":"u_islower","features":[70]},{"name":"u_isprint","features":[70]},{"name":"u_ispunct","features":[70]},{"name":"u_isspace","features":[70]},{"name":"u_istitle","features":[70]},{"name":"u_isupper","features":[70]},{"name":"u_isxdigit","features":[70]},{"name":"u_memcasecmp","features":[70]},{"name":"u_memchr","features":[70]},{"name":"u_memchr32","features":[70]},{"name":"u_memcmp","features":[70]},{"name":"u_memcmpCodePointOrder","features":[70]},{"name":"u_memcpy","features":[70]},{"name":"u_memmove","features":[70]},{"name":"u_memrchr","features":[70]},{"name":"u_memrchr32","features":[70]},{"name":"u_memset","features":[70]},{"name":"u_parseMessage","features":[70]},{"name":"u_parseMessageWithError","features":[70]},{"name":"u_setMemoryFunctions","features":[70]},{"name":"u_shapeArabic","features":[70]},{"name":"u_strCaseCompare","features":[70]},{"name":"u_strCompare","features":[70]},{"name":"u_strCompareIter","features":[70]},{"name":"u_strFindFirst","features":[70]},{"name":"u_strFindLast","features":[70]},{"name":"u_strFoldCase","features":[70]},{"name":"u_strFromJavaModifiedUTF8WithSub","features":[70]},{"name":"u_strFromUTF32","features":[70]},{"name":"u_strFromUTF32WithSub","features":[70]},{"name":"u_strFromUTF8","features":[70]},{"name":"u_strFromUTF8Lenient","features":[70]},{"name":"u_strFromUTF8WithSub","features":[70]},{"name":"u_strFromWCS","features":[70]},{"name":"u_strHasMoreChar32Than","features":[70]},{"name":"u_strToJavaModifiedUTF8","features":[70]},{"name":"u_strToLower","features":[70]},{"name":"u_strToTitle","features":[70]},{"name":"u_strToUTF32","features":[70]},{"name":"u_strToUTF32WithSub","features":[70]},{"name":"u_strToUTF8","features":[70]},{"name":"u_strToUTF8WithSub","features":[70]},{"name":"u_strToUpper","features":[70]},{"name":"u_strToWCS","features":[70]},{"name":"u_strcasecmp","features":[70]},{"name":"u_strcat","features":[70]},{"name":"u_strchr","features":[70]},{"name":"u_strchr32","features":[70]},{"name":"u_strcmp","features":[70]},{"name":"u_strcmpCodePointOrder","features":[70]},{"name":"u_strcpy","features":[70]},{"name":"u_strcspn","features":[70]},{"name":"u_strlen","features":[70]},{"name":"u_strncasecmp","features":[70]},{"name":"u_strncat","features":[70]},{"name":"u_strncmp","features":[70]},{"name":"u_strncmpCodePointOrder","features":[70]},{"name":"u_strncpy","features":[70]},{"name":"u_strpbrk","features":[70]},{"name":"u_strrchr","features":[70]},{"name":"u_strrchr32","features":[70]},{"name":"u_strrstr","features":[70]},{"name":"u_strspn","features":[70]},{"name":"u_strstr","features":[70]},{"name":"u_strtok_r","features":[70]},{"name":"u_tolower","features":[70]},{"name":"u_totitle","features":[70]},{"name":"u_toupper","features":[70]},{"name":"u_uastrcpy","features":[70]},{"name":"u_uastrncpy","features":[70]},{"name":"u_unescape","features":[70]},{"name":"u_unescapeAt","features":[70]},{"name":"u_versionFromString","features":[70]},{"name":"u_versionFromUString","features":[70]},{"name":"u_versionToString","features":[70]},{"name":"u_vformatMessage","features":[70]},{"name":"u_vformatMessageWithError","features":[70]},{"name":"u_vparseMessage","features":[70]},{"name":"u_vparseMessageWithError","features":[70]},{"name":"ubidi_close","features":[70]},{"name":"ubidi_countParagraphs","features":[70]},{"name":"ubidi_countRuns","features":[70]},{"name":"ubidi_getBaseDirection","features":[70]},{"name":"ubidi_getClassCallback","features":[70]},{"name":"ubidi_getCustomizedClass","features":[70]},{"name":"ubidi_getDirection","features":[70]},{"name":"ubidi_getLength","features":[70]},{"name":"ubidi_getLevelAt","features":[70]},{"name":"ubidi_getLevels","features":[70]},{"name":"ubidi_getLogicalIndex","features":[70]},{"name":"ubidi_getLogicalMap","features":[70]},{"name":"ubidi_getLogicalRun","features":[70]},{"name":"ubidi_getParaLevel","features":[70]},{"name":"ubidi_getParagraph","features":[70]},{"name":"ubidi_getParagraphByIndex","features":[70]},{"name":"ubidi_getProcessedLength","features":[70]},{"name":"ubidi_getReorderingMode","features":[70]},{"name":"ubidi_getReorderingOptions","features":[70]},{"name":"ubidi_getResultLength","features":[70]},{"name":"ubidi_getText","features":[70]},{"name":"ubidi_getVisualIndex","features":[70]},{"name":"ubidi_getVisualMap","features":[70]},{"name":"ubidi_getVisualRun","features":[70]},{"name":"ubidi_invertMap","features":[70]},{"name":"ubidi_isInverse","features":[70]},{"name":"ubidi_isOrderParagraphsLTR","features":[70]},{"name":"ubidi_open","features":[70]},{"name":"ubidi_openSized","features":[70]},{"name":"ubidi_orderParagraphsLTR","features":[70]},{"name":"ubidi_reorderLogical","features":[70]},{"name":"ubidi_reorderVisual","features":[70]},{"name":"ubidi_setClassCallback","features":[70]},{"name":"ubidi_setContext","features":[70]},{"name":"ubidi_setInverse","features":[70]},{"name":"ubidi_setLine","features":[70]},{"name":"ubidi_setPara","features":[70]},{"name":"ubidi_setReorderingMode","features":[70]},{"name":"ubidi_setReorderingOptions","features":[70]},{"name":"ubidi_writeReordered","features":[70]},{"name":"ubidi_writeReverse","features":[70]},{"name":"ubiditransform_close","features":[70]},{"name":"ubiditransform_open","features":[70]},{"name":"ubiditransform_transform","features":[70]},{"name":"ublock_getCode","features":[70]},{"name":"ubrk_close","features":[70]},{"name":"ubrk_countAvailable","features":[70]},{"name":"ubrk_current","features":[70]},{"name":"ubrk_first","features":[70]},{"name":"ubrk_following","features":[70]},{"name":"ubrk_getAvailable","features":[70]},{"name":"ubrk_getBinaryRules","features":[70]},{"name":"ubrk_getLocaleByType","features":[70]},{"name":"ubrk_getRuleStatus","features":[70]},{"name":"ubrk_getRuleStatusVec","features":[70]},{"name":"ubrk_isBoundary","features":[70]},{"name":"ubrk_last","features":[70]},{"name":"ubrk_next","features":[70]},{"name":"ubrk_open","features":[70]},{"name":"ubrk_openBinaryRules","features":[70]},{"name":"ubrk_openRules","features":[70]},{"name":"ubrk_preceding","features":[70]},{"name":"ubrk_previous","features":[70]},{"name":"ubrk_refreshUText","features":[70]},{"name":"ubrk_safeClone","features":[70]},{"name":"ubrk_setText","features":[70]},{"name":"ubrk_setUText","features":[70]},{"name":"ucal_add","features":[70]},{"name":"ucal_clear","features":[70]},{"name":"ucal_clearField","features":[70]},{"name":"ucal_clone","features":[70]},{"name":"ucal_close","features":[70]},{"name":"ucal_countAvailable","features":[70]},{"name":"ucal_equivalentTo","features":[70]},{"name":"ucal_get","features":[70]},{"name":"ucal_getAttribute","features":[70]},{"name":"ucal_getAvailable","features":[70]},{"name":"ucal_getCanonicalTimeZoneID","features":[70]},{"name":"ucal_getDSTSavings","features":[70]},{"name":"ucal_getDayOfWeekType","features":[70]},{"name":"ucal_getDefaultTimeZone","features":[70]},{"name":"ucal_getFieldDifference","features":[70]},{"name":"ucal_getGregorianChange","features":[70]},{"name":"ucal_getHostTimeZone","features":[70]},{"name":"ucal_getKeywordValuesForLocale","features":[70]},{"name":"ucal_getLimit","features":[70]},{"name":"ucal_getLocaleByType","features":[70]},{"name":"ucal_getMillis","features":[70]},{"name":"ucal_getNow","features":[70]},{"name":"ucal_getTZDataVersion","features":[70]},{"name":"ucal_getTimeZoneDisplayName","features":[70]},{"name":"ucal_getTimeZoneID","features":[70]},{"name":"ucal_getTimeZoneIDForWindowsID","features":[70]},{"name":"ucal_getTimeZoneTransitionDate","features":[70]},{"name":"ucal_getType","features":[70]},{"name":"ucal_getWeekendTransition","features":[70]},{"name":"ucal_getWindowsTimeZoneID","features":[70]},{"name":"ucal_inDaylightTime","features":[70]},{"name":"ucal_isSet","features":[70]},{"name":"ucal_isWeekend","features":[70]},{"name":"ucal_open","features":[70]},{"name":"ucal_openCountryTimeZones","features":[70]},{"name":"ucal_openTimeZoneIDEnumeration","features":[70]},{"name":"ucal_openTimeZones","features":[70]},{"name":"ucal_roll","features":[70]},{"name":"ucal_set","features":[70]},{"name":"ucal_setAttribute","features":[70]},{"name":"ucal_setDate","features":[70]},{"name":"ucal_setDateTime","features":[70]},{"name":"ucal_setDefaultTimeZone","features":[70]},{"name":"ucal_setGregorianChange","features":[70]},{"name":"ucal_setMillis","features":[70]},{"name":"ucal_setTimeZone","features":[70]},{"name":"ucasemap_close","features":[70]},{"name":"ucasemap_getBreakIterator","features":[70]},{"name":"ucasemap_getLocale","features":[70]},{"name":"ucasemap_getOptions","features":[70]},{"name":"ucasemap_open","features":[70]},{"name":"ucasemap_setBreakIterator","features":[70]},{"name":"ucasemap_setLocale","features":[70]},{"name":"ucasemap_setOptions","features":[70]},{"name":"ucasemap_toTitle","features":[70]},{"name":"ucasemap_utf8FoldCase","features":[70]},{"name":"ucasemap_utf8ToLower","features":[70]},{"name":"ucasemap_utf8ToTitle","features":[70]},{"name":"ucasemap_utf8ToUpper","features":[70]},{"name":"ucfpos_close","features":[70]},{"name":"ucfpos_constrainCategory","features":[70]},{"name":"ucfpos_constrainField","features":[70]},{"name":"ucfpos_getCategory","features":[70]},{"name":"ucfpos_getField","features":[70]},{"name":"ucfpos_getIndexes","features":[70]},{"name":"ucfpos_getInt64IterationContext","features":[70]},{"name":"ucfpos_matchesField","features":[70]},{"name":"ucfpos_open","features":[70]},{"name":"ucfpos_reset","features":[70]},{"name":"ucfpos_setInt64IterationContext","features":[70]},{"name":"ucfpos_setState","features":[70]},{"name":"ucnv_cbFromUWriteBytes","features":[70]},{"name":"ucnv_cbFromUWriteSub","features":[70]},{"name":"ucnv_cbFromUWriteUChars","features":[70]},{"name":"ucnv_cbToUWriteSub","features":[70]},{"name":"ucnv_cbToUWriteUChars","features":[70]},{"name":"ucnv_close","features":[70]},{"name":"ucnv_compareNames","features":[70]},{"name":"ucnv_convert","features":[70]},{"name":"ucnv_convertEx","features":[70]},{"name":"ucnv_countAliases","features":[70]},{"name":"ucnv_countAvailable","features":[70]},{"name":"ucnv_countStandards","features":[70]},{"name":"ucnv_detectUnicodeSignature","features":[70]},{"name":"ucnv_fixFileSeparator","features":[70]},{"name":"ucnv_flushCache","features":[70]},{"name":"ucnv_fromAlgorithmic","features":[70]},{"name":"ucnv_fromUChars","features":[70]},{"name":"ucnv_fromUCountPending","features":[70]},{"name":"ucnv_fromUnicode","features":[70]},{"name":"ucnv_getAlias","features":[70]},{"name":"ucnv_getAliases","features":[70]},{"name":"ucnv_getAvailableName","features":[70]},{"name":"ucnv_getCCSID","features":[70]},{"name":"ucnv_getCanonicalName","features":[70]},{"name":"ucnv_getDefaultName","features":[70]},{"name":"ucnv_getDisplayName","features":[70]},{"name":"ucnv_getFromUCallBack","features":[70]},{"name":"ucnv_getInvalidChars","features":[70]},{"name":"ucnv_getInvalidUChars","features":[70]},{"name":"ucnv_getMaxCharSize","features":[70]},{"name":"ucnv_getMinCharSize","features":[70]},{"name":"ucnv_getName","features":[70]},{"name":"ucnv_getNextUChar","features":[70]},{"name":"ucnv_getPlatform","features":[70]},{"name":"ucnv_getStandard","features":[70]},{"name":"ucnv_getStandardName","features":[70]},{"name":"ucnv_getStarters","features":[70]},{"name":"ucnv_getSubstChars","features":[70]},{"name":"ucnv_getToUCallBack","features":[70]},{"name":"ucnv_getType","features":[70]},{"name":"ucnv_getUnicodeSet","features":[70]},{"name":"ucnv_isAmbiguous","features":[70]},{"name":"ucnv_isFixedWidth","features":[70]},{"name":"ucnv_open","features":[70]},{"name":"ucnv_openAllNames","features":[70]},{"name":"ucnv_openCCSID","features":[70]},{"name":"ucnv_openPackage","features":[70]},{"name":"ucnv_openStandardNames","features":[70]},{"name":"ucnv_openU","features":[70]},{"name":"ucnv_reset","features":[70]},{"name":"ucnv_resetFromUnicode","features":[70]},{"name":"ucnv_resetToUnicode","features":[70]},{"name":"ucnv_safeClone","features":[70]},{"name":"ucnv_setDefaultName","features":[70]},{"name":"ucnv_setFallback","features":[70]},{"name":"ucnv_setFromUCallBack","features":[70]},{"name":"ucnv_setSubstChars","features":[70]},{"name":"ucnv_setSubstString","features":[70]},{"name":"ucnv_setToUCallBack","features":[70]},{"name":"ucnv_toAlgorithmic","features":[70]},{"name":"ucnv_toUChars","features":[70]},{"name":"ucnv_toUCountPending","features":[70]},{"name":"ucnv_toUnicode","features":[70]},{"name":"ucnv_usesFallback","features":[70]},{"name":"ucnvsel_close","features":[70]},{"name":"ucnvsel_open","features":[70]},{"name":"ucnvsel_openFromSerialized","features":[70]},{"name":"ucnvsel_selectForString","features":[70]},{"name":"ucnvsel_selectForUTF8","features":[70]},{"name":"ucnvsel_serialize","features":[70]},{"name":"ucol_cloneBinary","features":[70]},{"name":"ucol_close","features":[70]},{"name":"ucol_closeElements","features":[70]},{"name":"ucol_countAvailable","features":[70]},{"name":"ucol_equal","features":[70]},{"name":"ucol_getAttribute","features":[70]},{"name":"ucol_getAvailable","features":[70]},{"name":"ucol_getBound","features":[70]},{"name":"ucol_getContractionsAndExpansions","features":[70]},{"name":"ucol_getDisplayName","features":[70]},{"name":"ucol_getEquivalentReorderCodes","features":[70]},{"name":"ucol_getFunctionalEquivalent","features":[70]},{"name":"ucol_getKeywordValues","features":[70]},{"name":"ucol_getKeywordValuesForLocale","features":[70]},{"name":"ucol_getKeywords","features":[70]},{"name":"ucol_getLocaleByType","features":[70]},{"name":"ucol_getMaxExpansion","features":[70]},{"name":"ucol_getMaxVariable","features":[70]},{"name":"ucol_getOffset","features":[70]},{"name":"ucol_getReorderCodes","features":[70]},{"name":"ucol_getRules","features":[70]},{"name":"ucol_getRulesEx","features":[70]},{"name":"ucol_getSortKey","features":[70]},{"name":"ucol_getStrength","features":[70]},{"name":"ucol_getTailoredSet","features":[70]},{"name":"ucol_getUCAVersion","features":[70]},{"name":"ucol_getVariableTop","features":[70]},{"name":"ucol_getVersion","features":[70]},{"name":"ucol_greater","features":[70]},{"name":"ucol_greaterOrEqual","features":[70]},{"name":"ucol_keyHashCode","features":[70]},{"name":"ucol_mergeSortkeys","features":[70]},{"name":"ucol_next","features":[70]},{"name":"ucol_nextSortKeyPart","features":[70]},{"name":"ucol_open","features":[70]},{"name":"ucol_openAvailableLocales","features":[70]},{"name":"ucol_openBinary","features":[70]},{"name":"ucol_openElements","features":[70]},{"name":"ucol_openRules","features":[70]},{"name":"ucol_previous","features":[70]},{"name":"ucol_primaryOrder","features":[70]},{"name":"ucol_reset","features":[70]},{"name":"ucol_safeClone","features":[70]},{"name":"ucol_secondaryOrder","features":[70]},{"name":"ucol_setAttribute","features":[70]},{"name":"ucol_setMaxVariable","features":[70]},{"name":"ucol_setOffset","features":[70]},{"name":"ucol_setReorderCodes","features":[70]},{"name":"ucol_setStrength","features":[70]},{"name":"ucol_setText","features":[70]},{"name":"ucol_strcoll","features":[70]},{"name":"ucol_strcollIter","features":[70]},{"name":"ucol_strcollUTF8","features":[70]},{"name":"ucol_tertiaryOrder","features":[70]},{"name":"ucpmap_get","features":[70]},{"name":"ucpmap_getRange","features":[70]},{"name":"ucptrie_close","features":[70]},{"name":"ucptrie_get","features":[70]},{"name":"ucptrie_getRange","features":[70]},{"name":"ucptrie_getType","features":[70]},{"name":"ucptrie_getValueWidth","features":[70]},{"name":"ucptrie_internalSmallIndex","features":[70]},{"name":"ucptrie_internalSmallU8Index","features":[70]},{"name":"ucptrie_internalU8PrevIndex","features":[70]},{"name":"ucptrie_openFromBinary","features":[70]},{"name":"ucptrie_toBinary","features":[70]},{"name":"ucsdet_close","features":[70]},{"name":"ucsdet_detect","features":[70]},{"name":"ucsdet_detectAll","features":[70]},{"name":"ucsdet_enableInputFilter","features":[70]},{"name":"ucsdet_getAllDetectableCharsets","features":[70]},{"name":"ucsdet_getConfidence","features":[70]},{"name":"ucsdet_getLanguage","features":[70]},{"name":"ucsdet_getName","features":[70]},{"name":"ucsdet_getUChars","features":[70]},{"name":"ucsdet_isInputFilterEnabled","features":[70]},{"name":"ucsdet_open","features":[70]},{"name":"ucsdet_setDeclaredEncoding","features":[70]},{"name":"ucsdet_setText","features":[70]},{"name":"ucurr_countCurrencies","features":[70]},{"name":"ucurr_forLocale","features":[70]},{"name":"ucurr_forLocaleAndDate","features":[70]},{"name":"ucurr_getDefaultFractionDigits","features":[70]},{"name":"ucurr_getDefaultFractionDigitsForUsage","features":[70]},{"name":"ucurr_getKeywordValuesForLocale","features":[70]},{"name":"ucurr_getName","features":[70]},{"name":"ucurr_getNumericCode","features":[70]},{"name":"ucurr_getPluralName","features":[70]},{"name":"ucurr_getRoundingIncrement","features":[70]},{"name":"ucurr_getRoundingIncrementForUsage","features":[70]},{"name":"ucurr_isAvailable","features":[70]},{"name":"ucurr_openISOCurrencies","features":[70]},{"name":"ucurr_register","features":[70]},{"name":"ucurr_unregister","features":[70]},{"name":"udat_adoptNumberFormat","features":[70]},{"name":"udat_adoptNumberFormatForFields","features":[70]},{"name":"udat_applyPattern","features":[70]},{"name":"udat_clone","features":[70]},{"name":"udat_close","features":[70]},{"name":"udat_countAvailable","features":[70]},{"name":"udat_countSymbols","features":[70]},{"name":"udat_format","features":[70]},{"name":"udat_formatCalendar","features":[70]},{"name":"udat_formatCalendarForFields","features":[70]},{"name":"udat_formatForFields","features":[70]},{"name":"udat_get2DigitYearStart","features":[70]},{"name":"udat_getAvailable","features":[70]},{"name":"udat_getBooleanAttribute","features":[70]},{"name":"udat_getCalendar","features":[70]},{"name":"udat_getContext","features":[70]},{"name":"udat_getLocaleByType","features":[70]},{"name":"udat_getNumberFormat","features":[70]},{"name":"udat_getNumberFormatForField","features":[70]},{"name":"udat_getSymbols","features":[70]},{"name":"udat_isLenient","features":[70]},{"name":"udat_open","features":[70]},{"name":"udat_parse","features":[70]},{"name":"udat_parseCalendar","features":[70]},{"name":"udat_set2DigitYearStart","features":[70]},{"name":"udat_setBooleanAttribute","features":[70]},{"name":"udat_setCalendar","features":[70]},{"name":"udat_setContext","features":[70]},{"name":"udat_setLenient","features":[70]},{"name":"udat_setNumberFormat","features":[70]},{"name":"udat_setSymbols","features":[70]},{"name":"udat_toCalendarDateField","features":[70]},{"name":"udat_toPattern","features":[70]},{"name":"udatpg_addPattern","features":[70]},{"name":"udatpg_clone","features":[70]},{"name":"udatpg_close","features":[70]},{"name":"udatpg_getAppendItemFormat","features":[70]},{"name":"udatpg_getAppendItemName","features":[70]},{"name":"udatpg_getBaseSkeleton","features":[70]},{"name":"udatpg_getBestPattern","features":[70]},{"name":"udatpg_getBestPatternWithOptions","features":[70]},{"name":"udatpg_getDateTimeFormat","features":[70]},{"name":"udatpg_getDecimal","features":[70]},{"name":"udatpg_getFieldDisplayName","features":[70]},{"name":"udatpg_getPatternForSkeleton","features":[70]},{"name":"udatpg_getSkeleton","features":[70]},{"name":"udatpg_open","features":[70]},{"name":"udatpg_openBaseSkeletons","features":[70]},{"name":"udatpg_openEmpty","features":[70]},{"name":"udatpg_openSkeletons","features":[70]},{"name":"udatpg_replaceFieldTypes","features":[70]},{"name":"udatpg_replaceFieldTypesWithOptions","features":[70]},{"name":"udatpg_setAppendItemFormat","features":[70]},{"name":"udatpg_setAppendItemName","features":[70]},{"name":"udatpg_setDateTimeFormat","features":[70]},{"name":"udatpg_setDecimal","features":[70]},{"name":"udtitvfmt_close","features":[70]},{"name":"udtitvfmt_closeResult","features":[70]},{"name":"udtitvfmt_format","features":[70]},{"name":"udtitvfmt_open","features":[70]},{"name":"udtitvfmt_openResult","features":[70]},{"name":"udtitvfmt_resultAsValue","features":[70]},{"name":"uenum_close","features":[70]},{"name":"uenum_count","features":[70]},{"name":"uenum_next","features":[70]},{"name":"uenum_openCharStringsEnumeration","features":[70]},{"name":"uenum_openUCharStringsEnumeration","features":[70]},{"name":"uenum_reset","features":[70]},{"name":"uenum_unext","features":[70]},{"name":"ufieldpositer_close","features":[70]},{"name":"ufieldpositer_next","features":[70]},{"name":"ufieldpositer_open","features":[70]},{"name":"ufmt_close","features":[70]},{"name":"ufmt_getArrayItemByIndex","features":[70]},{"name":"ufmt_getArrayLength","features":[70]},{"name":"ufmt_getDate","features":[70]},{"name":"ufmt_getDecNumChars","features":[70]},{"name":"ufmt_getDouble","features":[70]},{"name":"ufmt_getInt64","features":[70]},{"name":"ufmt_getLong","features":[70]},{"name":"ufmt_getObject","features":[70]},{"name":"ufmt_getType","features":[70]},{"name":"ufmt_getUChars","features":[70]},{"name":"ufmt_isNumeric","features":[70]},{"name":"ufmt_open","features":[70]},{"name":"ufmtval_getString","features":[70]},{"name":"ufmtval_nextPosition","features":[70]},{"name":"ugender_getInstance","features":[70]},{"name":"ugender_getListGender","features":[70]},{"name":"uidna_close","features":[70]},{"name":"uidna_labelToASCII","features":[70]},{"name":"uidna_labelToASCII_UTF8","features":[70]},{"name":"uidna_labelToUnicode","features":[70]},{"name":"uidna_labelToUnicodeUTF8","features":[70]},{"name":"uidna_nameToASCII","features":[70]},{"name":"uidna_nameToASCII_UTF8","features":[70]},{"name":"uidna_nameToUnicode","features":[70]},{"name":"uidna_nameToUnicodeUTF8","features":[70]},{"name":"uidna_openUTS46","features":[70]},{"name":"uiter_current32","features":[70]},{"name":"uiter_getState","features":[70]},{"name":"uiter_next32","features":[70]},{"name":"uiter_previous32","features":[70]},{"name":"uiter_setState","features":[70]},{"name":"uiter_setString","features":[70]},{"name":"uiter_setUTF16BE","features":[70]},{"name":"uiter_setUTF8","features":[70]},{"name":"uldn_close","features":[70]},{"name":"uldn_getContext","features":[70]},{"name":"uldn_getDialectHandling","features":[70]},{"name":"uldn_getLocale","features":[70]},{"name":"uldn_keyDisplayName","features":[70]},{"name":"uldn_keyValueDisplayName","features":[70]},{"name":"uldn_languageDisplayName","features":[70]},{"name":"uldn_localeDisplayName","features":[70]},{"name":"uldn_open","features":[70]},{"name":"uldn_openForContext","features":[70]},{"name":"uldn_regionDisplayName","features":[70]},{"name":"uldn_scriptCodeDisplayName","features":[70]},{"name":"uldn_scriptDisplayName","features":[70]},{"name":"uldn_variantDisplayName","features":[70]},{"name":"ulistfmt_close","features":[70]},{"name":"ulistfmt_closeResult","features":[70]},{"name":"ulistfmt_format","features":[70]},{"name":"ulistfmt_formatStringsToResult","features":[70]},{"name":"ulistfmt_open","features":[70]},{"name":"ulistfmt_openForType","features":[70]},{"name":"ulistfmt_openResult","features":[70]},{"name":"ulistfmt_resultAsValue","features":[70]},{"name":"uloc_acceptLanguage","features":[70]},{"name":"uloc_acceptLanguageFromHTTP","features":[70]},{"name":"uloc_addLikelySubtags","features":[70]},{"name":"uloc_canonicalize","features":[70]},{"name":"uloc_countAvailable","features":[70]},{"name":"uloc_forLanguageTag","features":[70]},{"name":"uloc_getAvailable","features":[70]},{"name":"uloc_getBaseName","features":[70]},{"name":"uloc_getCharacterOrientation","features":[70]},{"name":"uloc_getCountry","features":[70]},{"name":"uloc_getDefault","features":[70]},{"name":"uloc_getDisplayCountry","features":[70]},{"name":"uloc_getDisplayKeyword","features":[70]},{"name":"uloc_getDisplayKeywordValue","features":[70]},{"name":"uloc_getDisplayLanguage","features":[70]},{"name":"uloc_getDisplayName","features":[70]},{"name":"uloc_getDisplayScript","features":[70]},{"name":"uloc_getDisplayVariant","features":[70]},{"name":"uloc_getISO3Country","features":[70]},{"name":"uloc_getISO3Language","features":[70]},{"name":"uloc_getISOCountries","features":[70]},{"name":"uloc_getISOLanguages","features":[70]},{"name":"uloc_getKeywordValue","features":[70]},{"name":"uloc_getLCID","features":[70]},{"name":"uloc_getLanguage","features":[70]},{"name":"uloc_getLineOrientation","features":[70]},{"name":"uloc_getLocaleForLCID","features":[70]},{"name":"uloc_getName","features":[70]},{"name":"uloc_getParent","features":[70]},{"name":"uloc_getScript","features":[70]},{"name":"uloc_getVariant","features":[70]},{"name":"uloc_isRightToLeft","features":[70]},{"name":"uloc_minimizeSubtags","features":[70]},{"name":"uloc_openAvailableByType","features":[70]},{"name":"uloc_openKeywords","features":[70]},{"name":"uloc_setDefault","features":[70]},{"name":"uloc_setKeywordValue","features":[70]},{"name":"uloc_toLanguageTag","features":[70]},{"name":"uloc_toLegacyKey","features":[70]},{"name":"uloc_toLegacyType","features":[70]},{"name":"uloc_toUnicodeLocaleKey","features":[70]},{"name":"uloc_toUnicodeLocaleType","features":[70]},{"name":"ulocdata_close","features":[70]},{"name":"ulocdata_getCLDRVersion","features":[70]},{"name":"ulocdata_getDelimiter","features":[70]},{"name":"ulocdata_getExemplarSet","features":[70]},{"name":"ulocdata_getLocaleDisplayPattern","features":[70]},{"name":"ulocdata_getLocaleSeparator","features":[70]},{"name":"ulocdata_getMeasurementSystem","features":[70]},{"name":"ulocdata_getNoSubstitute","features":[70]},{"name":"ulocdata_getPaperSize","features":[70]},{"name":"ulocdata_open","features":[70]},{"name":"ulocdata_setNoSubstitute","features":[70]},{"name":"umsg_applyPattern","features":[70]},{"name":"umsg_autoQuoteApostrophe","features":[70]},{"name":"umsg_clone","features":[70]},{"name":"umsg_close","features":[70]},{"name":"umsg_format","features":[70]},{"name":"umsg_getLocale","features":[70]},{"name":"umsg_open","features":[70]},{"name":"umsg_parse","features":[70]},{"name":"umsg_setLocale","features":[70]},{"name":"umsg_toPattern","features":[70]},{"name":"umsg_vformat","features":[70]},{"name":"umsg_vparse","features":[70]},{"name":"umutablecptrie_buildImmutable","features":[70]},{"name":"umutablecptrie_clone","features":[70]},{"name":"umutablecptrie_close","features":[70]},{"name":"umutablecptrie_fromUCPMap","features":[70]},{"name":"umutablecptrie_fromUCPTrie","features":[70]},{"name":"umutablecptrie_get","features":[70]},{"name":"umutablecptrie_getRange","features":[70]},{"name":"umutablecptrie_open","features":[70]},{"name":"umutablecptrie_set","features":[70]},{"name":"umutablecptrie_setRange","features":[70]},{"name":"unorm2_append","features":[70]},{"name":"unorm2_close","features":[70]},{"name":"unorm2_composePair","features":[70]},{"name":"unorm2_getCombiningClass","features":[70]},{"name":"unorm2_getDecomposition","features":[70]},{"name":"unorm2_getInstance","features":[70]},{"name":"unorm2_getNFCInstance","features":[70]},{"name":"unorm2_getNFDInstance","features":[70]},{"name":"unorm2_getNFKCCasefoldInstance","features":[70]},{"name":"unorm2_getNFKCInstance","features":[70]},{"name":"unorm2_getNFKDInstance","features":[70]},{"name":"unorm2_getRawDecomposition","features":[70]},{"name":"unorm2_hasBoundaryAfter","features":[70]},{"name":"unorm2_hasBoundaryBefore","features":[70]},{"name":"unorm2_isInert","features":[70]},{"name":"unorm2_isNormalized","features":[70]},{"name":"unorm2_normalize","features":[70]},{"name":"unorm2_normalizeSecondAndAppend","features":[70]},{"name":"unorm2_openFiltered","features":[70]},{"name":"unorm2_quickCheck","features":[70]},{"name":"unorm2_spanQuickCheckYes","features":[70]},{"name":"unorm_compare","features":[70]},{"name":"unum_applyPattern","features":[70]},{"name":"unum_clone","features":[70]},{"name":"unum_close","features":[70]},{"name":"unum_countAvailable","features":[70]},{"name":"unum_format","features":[70]},{"name":"unum_formatDecimal","features":[70]},{"name":"unum_formatDouble","features":[70]},{"name":"unum_formatDoubleCurrency","features":[70]},{"name":"unum_formatDoubleForFields","features":[70]},{"name":"unum_formatInt64","features":[70]},{"name":"unum_formatUFormattable","features":[70]},{"name":"unum_getAttribute","features":[70]},{"name":"unum_getAvailable","features":[70]},{"name":"unum_getContext","features":[70]},{"name":"unum_getDoubleAttribute","features":[70]},{"name":"unum_getLocaleByType","features":[70]},{"name":"unum_getSymbol","features":[70]},{"name":"unum_getTextAttribute","features":[70]},{"name":"unum_open","features":[70]},{"name":"unum_parse","features":[70]},{"name":"unum_parseDecimal","features":[70]},{"name":"unum_parseDouble","features":[70]},{"name":"unum_parseDoubleCurrency","features":[70]},{"name":"unum_parseInt64","features":[70]},{"name":"unum_parseToUFormattable","features":[70]},{"name":"unum_setAttribute","features":[70]},{"name":"unum_setContext","features":[70]},{"name":"unum_setDoubleAttribute","features":[70]},{"name":"unum_setSymbol","features":[70]},{"name":"unum_setTextAttribute","features":[70]},{"name":"unum_toPattern","features":[70]},{"name":"unumf_close","features":[70]},{"name":"unumf_closeResult","features":[70]},{"name":"unumf_formatDecimal","features":[70]},{"name":"unumf_formatDouble","features":[70]},{"name":"unumf_formatInt","features":[70]},{"name":"unumf_openForSkeletonAndLocale","features":[70]},{"name":"unumf_openForSkeletonAndLocaleWithError","features":[70]},{"name":"unumf_openResult","features":[70]},{"name":"unumf_resultAsValue","features":[70]},{"name":"unumf_resultGetAllFieldPositions","features":[70]},{"name":"unumf_resultNextFieldPosition","features":[70]},{"name":"unumf_resultToString","features":[70]},{"name":"unumsys_close","features":[70]},{"name":"unumsys_getDescription","features":[70]},{"name":"unumsys_getName","features":[70]},{"name":"unumsys_getRadix","features":[70]},{"name":"unumsys_isAlgorithmic","features":[70]},{"name":"unumsys_open","features":[70]},{"name":"unumsys_openAvailableNames","features":[70]},{"name":"unumsys_openByName","features":[70]},{"name":"uplrules_close","features":[70]},{"name":"uplrules_getKeywords","features":[70]},{"name":"uplrules_open","features":[70]},{"name":"uplrules_openForType","features":[70]},{"name":"uplrules_select","features":[70]},{"name":"uplrules_selectFormatted","features":[70]},{"name":"uregex_appendReplacement","features":[70]},{"name":"uregex_appendReplacementUText","features":[70]},{"name":"uregex_appendTail","features":[70]},{"name":"uregex_appendTailUText","features":[70]},{"name":"uregex_clone","features":[70]},{"name":"uregex_close","features":[70]},{"name":"uregex_end","features":[70]},{"name":"uregex_end64","features":[70]},{"name":"uregex_find","features":[70]},{"name":"uregex_find64","features":[70]},{"name":"uregex_findNext","features":[70]},{"name":"uregex_flags","features":[70]},{"name":"uregex_getFindProgressCallback","features":[70]},{"name":"uregex_getMatchCallback","features":[70]},{"name":"uregex_getStackLimit","features":[70]},{"name":"uregex_getText","features":[70]},{"name":"uregex_getTimeLimit","features":[70]},{"name":"uregex_getUText","features":[70]},{"name":"uregex_group","features":[70]},{"name":"uregex_groupCount","features":[70]},{"name":"uregex_groupNumberFromCName","features":[70]},{"name":"uregex_groupNumberFromName","features":[70]},{"name":"uregex_groupUText","features":[70]},{"name":"uregex_hasAnchoringBounds","features":[70]},{"name":"uregex_hasTransparentBounds","features":[70]},{"name":"uregex_hitEnd","features":[70]},{"name":"uregex_lookingAt","features":[70]},{"name":"uregex_lookingAt64","features":[70]},{"name":"uregex_matches","features":[70]},{"name":"uregex_matches64","features":[70]},{"name":"uregex_open","features":[70]},{"name":"uregex_openC","features":[70]},{"name":"uregex_openUText","features":[70]},{"name":"uregex_pattern","features":[70]},{"name":"uregex_patternUText","features":[70]},{"name":"uregex_refreshUText","features":[70]},{"name":"uregex_regionEnd","features":[70]},{"name":"uregex_regionEnd64","features":[70]},{"name":"uregex_regionStart","features":[70]},{"name":"uregex_regionStart64","features":[70]},{"name":"uregex_replaceAll","features":[70]},{"name":"uregex_replaceAllUText","features":[70]},{"name":"uregex_replaceFirst","features":[70]},{"name":"uregex_replaceFirstUText","features":[70]},{"name":"uregex_requireEnd","features":[70]},{"name":"uregex_reset","features":[70]},{"name":"uregex_reset64","features":[70]},{"name":"uregex_setFindProgressCallback","features":[70]},{"name":"uregex_setMatchCallback","features":[70]},{"name":"uregex_setRegion","features":[70]},{"name":"uregex_setRegion64","features":[70]},{"name":"uregex_setRegionAndStart","features":[70]},{"name":"uregex_setStackLimit","features":[70]},{"name":"uregex_setText","features":[70]},{"name":"uregex_setTimeLimit","features":[70]},{"name":"uregex_setUText","features":[70]},{"name":"uregex_split","features":[70]},{"name":"uregex_splitUText","features":[70]},{"name":"uregex_start","features":[70]},{"name":"uregex_start64","features":[70]},{"name":"uregex_useAnchoringBounds","features":[70]},{"name":"uregex_useTransparentBounds","features":[70]},{"name":"uregion_areEqual","features":[70]},{"name":"uregion_contains","features":[70]},{"name":"uregion_getAvailable","features":[70]},{"name":"uregion_getContainedRegions","features":[70]},{"name":"uregion_getContainedRegionsOfType","features":[70]},{"name":"uregion_getContainingRegion","features":[70]},{"name":"uregion_getContainingRegionOfType","features":[70]},{"name":"uregion_getNumericCode","features":[70]},{"name":"uregion_getPreferredValues","features":[70]},{"name":"uregion_getRegionCode","features":[70]},{"name":"uregion_getRegionFromCode","features":[70]},{"name":"uregion_getRegionFromNumericCode","features":[70]},{"name":"uregion_getType","features":[70]},{"name":"ureldatefmt_close","features":[70]},{"name":"ureldatefmt_closeResult","features":[70]},{"name":"ureldatefmt_combineDateAndTime","features":[70]},{"name":"ureldatefmt_format","features":[70]},{"name":"ureldatefmt_formatNumeric","features":[70]},{"name":"ureldatefmt_formatNumericToResult","features":[70]},{"name":"ureldatefmt_formatToResult","features":[70]},{"name":"ureldatefmt_open","features":[70]},{"name":"ureldatefmt_openResult","features":[70]},{"name":"ureldatefmt_resultAsValue","features":[70]},{"name":"ures_close","features":[70]},{"name":"ures_getBinary","features":[70]},{"name":"ures_getByIndex","features":[70]},{"name":"ures_getByKey","features":[70]},{"name":"ures_getInt","features":[70]},{"name":"ures_getIntVector","features":[70]},{"name":"ures_getKey","features":[70]},{"name":"ures_getLocaleByType","features":[70]},{"name":"ures_getNextResource","features":[70]},{"name":"ures_getNextString","features":[70]},{"name":"ures_getSize","features":[70]},{"name":"ures_getString","features":[70]},{"name":"ures_getStringByIndex","features":[70]},{"name":"ures_getStringByKey","features":[70]},{"name":"ures_getType","features":[70]},{"name":"ures_getUInt","features":[70]},{"name":"ures_getUTF8String","features":[70]},{"name":"ures_getUTF8StringByIndex","features":[70]},{"name":"ures_getUTF8StringByKey","features":[70]},{"name":"ures_getVersion","features":[70]},{"name":"ures_hasNext","features":[70]},{"name":"ures_open","features":[70]},{"name":"ures_openAvailableLocales","features":[70]},{"name":"ures_openDirect","features":[70]},{"name":"ures_openU","features":[70]},{"name":"ures_resetIterator","features":[70]},{"name":"uscript_breaksBetweenLetters","features":[70]},{"name":"uscript_getCode","features":[70]},{"name":"uscript_getName","features":[70]},{"name":"uscript_getSampleString","features":[70]},{"name":"uscript_getScript","features":[70]},{"name":"uscript_getScriptExtensions","features":[70]},{"name":"uscript_getShortName","features":[70]},{"name":"uscript_getUsage","features":[70]},{"name":"uscript_hasScript","features":[70]},{"name":"uscript_isCased","features":[70]},{"name":"uscript_isRightToLeft","features":[70]},{"name":"usearch_close","features":[70]},{"name":"usearch_first","features":[70]},{"name":"usearch_following","features":[70]},{"name":"usearch_getAttribute","features":[70]},{"name":"usearch_getBreakIterator","features":[70]},{"name":"usearch_getCollator","features":[70]},{"name":"usearch_getMatchedLength","features":[70]},{"name":"usearch_getMatchedStart","features":[70]},{"name":"usearch_getMatchedText","features":[70]},{"name":"usearch_getOffset","features":[70]},{"name":"usearch_getPattern","features":[70]},{"name":"usearch_getText","features":[70]},{"name":"usearch_last","features":[70]},{"name":"usearch_next","features":[70]},{"name":"usearch_open","features":[70]},{"name":"usearch_openFromCollator","features":[70]},{"name":"usearch_preceding","features":[70]},{"name":"usearch_previous","features":[70]},{"name":"usearch_reset","features":[70]},{"name":"usearch_setAttribute","features":[70]},{"name":"usearch_setBreakIterator","features":[70]},{"name":"usearch_setCollator","features":[70]},{"name":"usearch_setOffset","features":[70]},{"name":"usearch_setPattern","features":[70]},{"name":"usearch_setText","features":[70]},{"name":"uset_add","features":[70]},{"name":"uset_addAll","features":[70]},{"name":"uset_addAllCodePoints","features":[70]},{"name":"uset_addRange","features":[70]},{"name":"uset_addString","features":[70]},{"name":"uset_applyIntPropertyValue","features":[70]},{"name":"uset_applyPattern","features":[70]},{"name":"uset_applyPropertyAlias","features":[70]},{"name":"uset_charAt","features":[70]},{"name":"uset_clear","features":[70]},{"name":"uset_clone","features":[70]},{"name":"uset_cloneAsThawed","features":[70]},{"name":"uset_close","features":[70]},{"name":"uset_closeOver","features":[70]},{"name":"uset_compact","features":[70]},{"name":"uset_complement","features":[70]},{"name":"uset_complementAll","features":[70]},{"name":"uset_contains","features":[70]},{"name":"uset_containsAll","features":[70]},{"name":"uset_containsAllCodePoints","features":[70]},{"name":"uset_containsNone","features":[70]},{"name":"uset_containsRange","features":[70]},{"name":"uset_containsSome","features":[70]},{"name":"uset_containsString","features":[70]},{"name":"uset_equals","features":[70]},{"name":"uset_freeze","features":[70]},{"name":"uset_getItem","features":[70]},{"name":"uset_getItemCount","features":[70]},{"name":"uset_getSerializedRange","features":[70]},{"name":"uset_getSerializedRangeCount","features":[70]},{"name":"uset_getSerializedSet","features":[70]},{"name":"uset_indexOf","features":[70]},{"name":"uset_isEmpty","features":[70]},{"name":"uset_isFrozen","features":[70]},{"name":"uset_open","features":[70]},{"name":"uset_openEmpty","features":[70]},{"name":"uset_openPattern","features":[70]},{"name":"uset_openPatternOptions","features":[70]},{"name":"uset_remove","features":[70]},{"name":"uset_removeAll","features":[70]},{"name":"uset_removeAllStrings","features":[70]},{"name":"uset_removeRange","features":[70]},{"name":"uset_removeString","features":[70]},{"name":"uset_resemblesPattern","features":[70]},{"name":"uset_retain","features":[70]},{"name":"uset_retainAll","features":[70]},{"name":"uset_serialize","features":[70]},{"name":"uset_serializedContains","features":[70]},{"name":"uset_set","features":[70]},{"name":"uset_setSerializedToOne","features":[70]},{"name":"uset_size","features":[70]},{"name":"uset_span","features":[70]},{"name":"uset_spanBack","features":[70]},{"name":"uset_spanBackUTF8","features":[70]},{"name":"uset_spanUTF8","features":[70]},{"name":"uset_toPattern","features":[70]},{"name":"uspoof_areConfusable","features":[70]},{"name":"uspoof_areConfusableUTF8","features":[70]},{"name":"uspoof_check","features":[70]},{"name":"uspoof_check2","features":[70]},{"name":"uspoof_check2UTF8","features":[70]},{"name":"uspoof_checkUTF8","features":[70]},{"name":"uspoof_clone","features":[70]},{"name":"uspoof_close","features":[70]},{"name":"uspoof_closeCheckResult","features":[70]},{"name":"uspoof_getAllowedChars","features":[70]},{"name":"uspoof_getAllowedLocales","features":[70]},{"name":"uspoof_getCheckResultChecks","features":[70]},{"name":"uspoof_getCheckResultNumerics","features":[70]},{"name":"uspoof_getCheckResultRestrictionLevel","features":[70]},{"name":"uspoof_getChecks","features":[70]},{"name":"uspoof_getInclusionSet","features":[70]},{"name":"uspoof_getRecommendedSet","features":[70]},{"name":"uspoof_getRestrictionLevel","features":[70]},{"name":"uspoof_getSkeleton","features":[70]},{"name":"uspoof_getSkeletonUTF8","features":[70]},{"name":"uspoof_open","features":[70]},{"name":"uspoof_openCheckResult","features":[70]},{"name":"uspoof_openFromSerialized","features":[70]},{"name":"uspoof_openFromSource","features":[70]},{"name":"uspoof_serialize","features":[70]},{"name":"uspoof_setAllowedChars","features":[70]},{"name":"uspoof_setAllowedLocales","features":[70]},{"name":"uspoof_setChecks","features":[70]},{"name":"uspoof_setRestrictionLevel","features":[70]},{"name":"usprep_close","features":[70]},{"name":"usprep_open","features":[70]},{"name":"usprep_openByType","features":[70]},{"name":"usprep_prepare","features":[70]},{"name":"utext_char32At","features":[70]},{"name":"utext_clone","features":[70]},{"name":"utext_close","features":[70]},{"name":"utext_copy","features":[70]},{"name":"utext_current32","features":[70]},{"name":"utext_equals","features":[70]},{"name":"utext_extract","features":[70]},{"name":"utext_freeze","features":[70]},{"name":"utext_getNativeIndex","features":[70]},{"name":"utext_getPreviousNativeIndex","features":[70]},{"name":"utext_hasMetaData","features":[70]},{"name":"utext_isLengthExpensive","features":[70]},{"name":"utext_isWritable","features":[70]},{"name":"utext_moveIndex32","features":[70]},{"name":"utext_nativeLength","features":[70]},{"name":"utext_next32","features":[70]},{"name":"utext_next32From","features":[70]},{"name":"utext_openUChars","features":[70]},{"name":"utext_openUTF8","features":[70]},{"name":"utext_previous32","features":[70]},{"name":"utext_previous32From","features":[70]},{"name":"utext_replace","features":[70]},{"name":"utext_setNativeIndex","features":[70]},{"name":"utext_setup","features":[70]},{"name":"utf8_appendCharSafeBody","features":[70]},{"name":"utf8_back1SafeBody","features":[70]},{"name":"utf8_nextCharSafeBody","features":[70]},{"name":"utf8_prevCharSafeBody","features":[70]},{"name":"utmscale_fromInt64","features":[70]},{"name":"utmscale_getTimeScaleValue","features":[70]},{"name":"utmscale_toInt64","features":[70]},{"name":"utrace_format","features":[70]},{"name":"utrace_functionName","features":[70]},{"name":"utrace_getFunctions","features":[70]},{"name":"utrace_getLevel","features":[70]},{"name":"utrace_setFunctions","features":[70]},{"name":"utrace_setLevel","features":[70]},{"name":"utrace_vformat","features":[70]},{"name":"utrans_clone","features":[70]},{"name":"utrans_close","features":[70]},{"name":"utrans_countAvailableIDs","features":[70]},{"name":"utrans_getSourceSet","features":[70]},{"name":"utrans_getUnicodeID","features":[70]},{"name":"utrans_openIDs","features":[70]},{"name":"utrans_openInverse","features":[70]},{"name":"utrans_openU","features":[70]},{"name":"utrans_register","features":[70]},{"name":"utrans_setFilter","features":[70]},{"name":"utrans_toRules","features":[70]},{"name":"utrans_trans","features":[70]},{"name":"utrans_transIncremental","features":[70]},{"name":"utrans_transIncrementalUChars","features":[70]},{"name":"utrans_transUChars","features":[70]},{"name":"utrans_unregisterID","features":[70]}],"410":[{"name":"DWMFLIP3DWINDOWPOLICY","features":[71]},{"name":"DWMFLIP3D_DEFAULT","features":[71]},{"name":"DWMFLIP3D_EXCLUDEABOVE","features":[71]},{"name":"DWMFLIP3D_EXCLUDEBELOW","features":[71]},{"name":"DWMFLIP3D_LAST","features":[71]},{"name":"DWMNCRENDERINGPOLICY","features":[71]},{"name":"DWMNCRP_DISABLED","features":[71]},{"name":"DWMNCRP_ENABLED","features":[71]},{"name":"DWMNCRP_LAST","features":[71]},{"name":"DWMNCRP_USEWINDOWSTYLE","features":[71]},{"name":"DWMSBT_AUTO","features":[71]},{"name":"DWMSBT_MAINWINDOW","features":[71]},{"name":"DWMSBT_NONE","features":[71]},{"name":"DWMSBT_TABBEDWINDOW","features":[71]},{"name":"DWMSBT_TRANSIENTWINDOW","features":[71]},{"name":"DWMSC_ALL","features":[71]},{"name":"DWMSC_DOWN","features":[71]},{"name":"DWMSC_DRAG","features":[71]},{"name":"DWMSC_HOLD","features":[71]},{"name":"DWMSC_NONE","features":[71]},{"name":"DWMSC_PENBARREL","features":[71]},{"name":"DWMSC_UP","features":[71]},{"name":"DWMTRANSITION_OWNEDWINDOW_NULL","features":[71]},{"name":"DWMTRANSITION_OWNEDWINDOW_REPOSITION","features":[71]},{"name":"DWMTRANSITION_OWNEDWINDOW_TARGET","features":[71]},{"name":"DWMTWR_APP_COMPAT","features":[71]},{"name":"DWMTWR_GROUP_POLICY","features":[71]},{"name":"DWMTWR_IMPLEMENTED_BY_SYSTEM","features":[71]},{"name":"DWMTWR_NONE","features":[71]},{"name":"DWMTWR_TABBING_ENABLED","features":[71]},{"name":"DWMTWR_USER_POLICY","features":[71]},{"name":"DWMTWR_WINDOW_DWM_ATTRIBUTES","features":[71]},{"name":"DWMTWR_WINDOW_MARGINS","features":[71]},{"name":"DWMTWR_WINDOW_REGION","features":[71]},{"name":"DWMTWR_WINDOW_RELATIONSHIP","features":[71]},{"name":"DWMTWR_WINDOW_STYLES","features":[71]},{"name":"DWMWA_ALLOW_NCPAINT","features":[71]},{"name":"DWMWA_BORDER_COLOR","features":[71]},{"name":"DWMWA_CAPTION_BUTTON_BOUNDS","features":[71]},{"name":"DWMWA_CAPTION_COLOR","features":[71]},{"name":"DWMWA_CLOAK","features":[71]},{"name":"DWMWA_CLOAKED","features":[71]},{"name":"DWMWA_COLOR_DEFAULT","features":[71]},{"name":"DWMWA_COLOR_NONE","features":[71]},{"name":"DWMWA_DISALLOW_PEEK","features":[71]},{"name":"DWMWA_EXCLUDED_FROM_PEEK","features":[71]},{"name":"DWMWA_EXTENDED_FRAME_BOUNDS","features":[71]},{"name":"DWMWA_FLIP3D_POLICY","features":[71]},{"name":"DWMWA_FORCE_ICONIC_REPRESENTATION","features":[71]},{"name":"DWMWA_FREEZE_REPRESENTATION","features":[71]},{"name":"DWMWA_HAS_ICONIC_BITMAP","features":[71]},{"name":"DWMWA_LAST","features":[71]},{"name":"DWMWA_NCRENDERING_ENABLED","features":[71]},{"name":"DWMWA_NCRENDERING_POLICY","features":[71]},{"name":"DWMWA_NONCLIENT_RTL_LAYOUT","features":[71]},{"name":"DWMWA_PASSIVE_UPDATE_MODE","features":[71]},{"name":"DWMWA_SYSTEMBACKDROP_TYPE","features":[71]},{"name":"DWMWA_TEXT_COLOR","features":[71]},{"name":"DWMWA_TRANSITIONS_FORCEDISABLED","features":[71]},{"name":"DWMWA_USE_HOSTBACKDROPBRUSH","features":[71]},{"name":"DWMWA_USE_IMMERSIVE_DARK_MODE","features":[71]},{"name":"DWMWA_VISIBLE_FRAME_BORDER_THICKNESS","features":[71]},{"name":"DWMWA_WINDOW_CORNER_PREFERENCE","features":[71]},{"name":"DWMWCP_DEFAULT","features":[71]},{"name":"DWMWCP_DONOTROUND","features":[71]},{"name":"DWMWCP_ROUND","features":[71]},{"name":"DWMWCP_ROUNDSMALL","features":[71]},{"name":"DWMWINDOWATTRIBUTE","features":[71]},{"name":"DWM_BB_BLURREGION","features":[71]},{"name":"DWM_BB_ENABLE","features":[71]},{"name":"DWM_BB_TRANSITIONONMAXIMIZED","features":[71]},{"name":"DWM_BLURBEHIND","features":[1,71,12]},{"name":"DWM_CLOAKED_APP","features":[71]},{"name":"DWM_CLOAKED_INHERITED","features":[71]},{"name":"DWM_CLOAKED_SHELL","features":[71]},{"name":"DWM_EC_DISABLECOMPOSITION","features":[71]},{"name":"DWM_EC_ENABLECOMPOSITION","features":[71]},{"name":"DWM_FRAME_DURATION_DEFAULT","features":[71]},{"name":"DWM_PRESENT_PARAMETERS","features":[1,71]},{"name":"DWM_SHOWCONTACT","features":[71]},{"name":"DWM_SIT_DISPLAYFRAME","features":[71]},{"name":"DWM_SOURCE_FRAME_SAMPLING","features":[71]},{"name":"DWM_SOURCE_FRAME_SAMPLING_COVERAGE","features":[71]},{"name":"DWM_SOURCE_FRAME_SAMPLING_LAST","features":[71]},{"name":"DWM_SOURCE_FRAME_SAMPLING_POINT","features":[71]},{"name":"DWM_SYSTEMBACKDROP_TYPE","features":[71]},{"name":"DWM_TAB_WINDOW_REQUIREMENTS","features":[71]},{"name":"DWM_THUMBNAIL_PROPERTIES","features":[1,71]},{"name":"DWM_TIMING_INFO","features":[71]},{"name":"DWM_TNP_OPACITY","features":[71]},{"name":"DWM_TNP_RECTDESTINATION","features":[71]},{"name":"DWM_TNP_RECTSOURCE","features":[71]},{"name":"DWM_TNP_SOURCECLIENTAREAONLY","features":[71]},{"name":"DWM_TNP_VISIBLE","features":[71]},{"name":"DWM_WINDOW_CORNER_PREFERENCE","features":[71]},{"name":"DwmAttachMilContent","features":[1,71]},{"name":"DwmDefWindowProc","features":[1,71]},{"name":"DwmDetachMilContent","features":[1,71]},{"name":"DwmEnableBlurBehindWindow","features":[1,71,12]},{"name":"DwmEnableComposition","features":[71]},{"name":"DwmEnableMMCSS","features":[1,71]},{"name":"DwmExtendFrameIntoClientArea","features":[1,71,40]},{"name":"DwmFlush","features":[71]},{"name":"DwmGetColorizationColor","features":[1,71]},{"name":"DwmGetCompositionTimingInfo","features":[1,71]},{"name":"DwmGetGraphicsStreamClient","features":[71]},{"name":"DwmGetGraphicsStreamTransformHint","features":[71]},{"name":"DwmGetTransportAttributes","features":[1,71]},{"name":"DwmGetUnmetTabRequirements","features":[1,71]},{"name":"DwmGetWindowAttribute","features":[1,71]},{"name":"DwmInvalidateIconicBitmaps","features":[1,71]},{"name":"DwmIsCompositionEnabled","features":[1,71]},{"name":"DwmModifyPreviousDxFrameDuration","features":[1,71]},{"name":"DwmQueryThumbnailSourceSize","features":[1,71]},{"name":"DwmRegisterThumbnail","features":[1,71]},{"name":"DwmRenderGesture","features":[1,71]},{"name":"DwmSetDxFrameDuration","features":[1,71]},{"name":"DwmSetIconicLivePreviewBitmap","features":[1,71,12]},{"name":"DwmSetIconicThumbnail","features":[1,71,12]},{"name":"DwmSetPresentParameters","features":[1,71]},{"name":"DwmSetWindowAttribute","features":[1,71]},{"name":"DwmShowContact","features":[71]},{"name":"DwmTetherContact","features":[1,71]},{"name":"DwmTransitionOwnedWindow","features":[1,71]},{"name":"DwmUnregisterThumbnail","features":[71]},{"name":"DwmUpdateThumbnailProperties","features":[1,71]},{"name":"GESTURE_TYPE","features":[71]},{"name":"GT_PEN_DOUBLETAP","features":[71]},{"name":"GT_PEN_PRESSANDHOLD","features":[71]},{"name":"GT_PEN_PRESSANDHOLDABORT","features":[71]},{"name":"GT_PEN_RIGHTTAP","features":[71]},{"name":"GT_PEN_TAP","features":[71]},{"name":"GT_TOUCH_DOUBLETAP","features":[71]},{"name":"GT_TOUCH_PRESSANDHOLD","features":[71]},{"name":"GT_TOUCH_PRESSANDHOLDABORT","features":[71]},{"name":"GT_TOUCH_PRESSANDTAP","features":[71]},{"name":"GT_TOUCH_RIGHTTAP","features":[71]},{"name":"GT_TOUCH_TAP","features":[71]},{"name":"MilMatrix3x2D","features":[71]},{"name":"UNSIGNED_RATIO","features":[71]},{"name":"c_DwmMaxAdapters","features":[71]},{"name":"c_DwmMaxMonitors","features":[71]},{"name":"c_DwmMaxQueuedBuffers","features":[71]}],"413":[{"name":"ABC","features":[12]},{"name":"ABCFLOAT","features":[12]},{"name":"ABORTDOC","features":[12]},{"name":"ABORTPATH","features":[12]},{"name":"ABSOLUTE","features":[12]},{"name":"AC_SRC_ALPHA","features":[12]},{"name":"AC_SRC_OVER","features":[12]},{"name":"AD_CLOCKWISE","features":[12]},{"name":"AD_COUNTERCLOCKWISE","features":[12]},{"name":"ALTERNATE","features":[12]},{"name":"ANSI_CHARSET","features":[12]},{"name":"ANSI_FIXED_FONT","features":[12]},{"name":"ANSI_VAR_FONT","features":[12]},{"name":"ANTIALIASED_QUALITY","features":[12]},{"name":"ARABIC_CHARSET","features":[12]},{"name":"ARC_DIRECTION","features":[12]},{"name":"ASPECTX","features":[12]},{"name":"ASPECTXY","features":[12]},{"name":"ASPECTY","features":[12]},{"name":"ASPECT_FILTERING","features":[12]},{"name":"AXESLISTA","features":[12]},{"name":"AXESLISTW","features":[12]},{"name":"AXISINFOA","features":[12]},{"name":"AXISINFOW","features":[12]},{"name":"AbortPath","features":[1,12]},{"name":"AddFontMemResourceEx","features":[1,12]},{"name":"AddFontResourceA","features":[12]},{"name":"AddFontResourceExA","features":[12]},{"name":"AddFontResourceExW","features":[12]},{"name":"AddFontResourceW","features":[12]},{"name":"AlphaBlend","features":[1,12]},{"name":"AngleArc","features":[1,12]},{"name":"AnimatePalette","features":[1,12]},{"name":"Arc","features":[1,12]},{"name":"ArcTo","features":[1,12]},{"name":"BACKGROUND_MODE","features":[12]},{"name":"BALTIC_CHARSET","features":[12]},{"name":"BANDINFO","features":[12]},{"name":"BDR_INNER","features":[12]},{"name":"BDR_OUTER","features":[12]},{"name":"BDR_RAISED","features":[12]},{"name":"BDR_RAISEDINNER","features":[12]},{"name":"BDR_RAISEDOUTER","features":[12]},{"name":"BDR_SUNKEN","features":[12]},{"name":"BDR_SUNKENINNER","features":[12]},{"name":"BDR_SUNKENOUTER","features":[12]},{"name":"BEGIN_PATH","features":[12]},{"name":"BF_ADJUST","features":[12]},{"name":"BF_BOTTOM","features":[12]},{"name":"BF_BOTTOMLEFT","features":[12]},{"name":"BF_BOTTOMRIGHT","features":[12]},{"name":"BF_DIAGONAL","features":[12]},{"name":"BF_DIAGONAL_ENDBOTTOMLEFT","features":[12]},{"name":"BF_DIAGONAL_ENDBOTTOMRIGHT","features":[12]},{"name":"BF_DIAGONAL_ENDTOPLEFT","features":[12]},{"name":"BF_DIAGONAL_ENDTOPRIGHT","features":[12]},{"name":"BF_FLAT","features":[12]},{"name":"BF_LEFT","features":[12]},{"name":"BF_MIDDLE","features":[12]},{"name":"BF_MONO","features":[12]},{"name":"BF_RECT","features":[12]},{"name":"BF_RIGHT","features":[12]},{"name":"BF_SOFT","features":[12]},{"name":"BF_TOP","features":[12]},{"name":"BF_TOPLEFT","features":[12]},{"name":"BF_TOPRIGHT","features":[12]},{"name":"BITMAP","features":[12]},{"name":"BITMAPCOREHEADER","features":[12]},{"name":"BITMAPCOREINFO","features":[12]},{"name":"BITMAPFILEHEADER","features":[12]},{"name":"BITMAPINFO","features":[12]},{"name":"BITMAPINFOHEADER","features":[12]},{"name":"BITMAPV4HEADER","features":[12]},{"name":"BITMAPV5HEADER","features":[12]},{"name":"BITSPIXEL","features":[12]},{"name":"BI_BITFIELDS","features":[12]},{"name":"BI_COMPRESSION","features":[12]},{"name":"BI_JPEG","features":[12]},{"name":"BI_PNG","features":[12]},{"name":"BI_RGB","features":[12]},{"name":"BI_RLE4","features":[12]},{"name":"BI_RLE8","features":[12]},{"name":"BKMODE_LAST","features":[12]},{"name":"BLACKNESS","features":[12]},{"name":"BLACKONWHITE","features":[12]},{"name":"BLACK_BRUSH","features":[12]},{"name":"BLACK_PEN","features":[12]},{"name":"BLENDFUNCTION","features":[12]},{"name":"BLTALIGNMENT","features":[12]},{"name":"BRUSH_STYLE","features":[12]},{"name":"BS_DIBPATTERN","features":[12]},{"name":"BS_DIBPATTERN8X8","features":[12]},{"name":"BS_DIBPATTERNPT","features":[12]},{"name":"BS_HATCHED","features":[12]},{"name":"BS_HOLLOW","features":[12]},{"name":"BS_INDEXED","features":[12]},{"name":"BS_MONOPATTERN","features":[12]},{"name":"BS_NULL","features":[12]},{"name":"BS_PATTERN","features":[12]},{"name":"BS_PATTERN8X8","features":[12]},{"name":"BS_SOLID","features":[12]},{"name":"BeginPaint","features":[1,12]},{"name":"BeginPath","features":[1,12]},{"name":"BitBlt","features":[1,12]},{"name":"CAPTUREBLT","features":[12]},{"name":"CA_LOG_FILTER","features":[12]},{"name":"CA_NEGATIVE","features":[12]},{"name":"CBM_INIT","features":[12]},{"name":"CCHFORMNAME","features":[12]},{"name":"CC_CHORD","features":[12]},{"name":"CC_CIRCLES","features":[12]},{"name":"CC_ELLIPSES","features":[12]},{"name":"CC_INTERIORS","features":[12]},{"name":"CC_NONE","features":[12]},{"name":"CC_PIE","features":[12]},{"name":"CC_ROUNDRECT","features":[12]},{"name":"CC_STYLED","features":[12]},{"name":"CC_WIDE","features":[12]},{"name":"CC_WIDESTYLED","features":[12]},{"name":"CDS_DISABLE_UNSAFE_MODES","features":[12]},{"name":"CDS_ENABLE_UNSAFE_MODES","features":[12]},{"name":"CDS_FULLSCREEN","features":[12]},{"name":"CDS_GLOBAL","features":[12]},{"name":"CDS_NORESET","features":[12]},{"name":"CDS_RESET","features":[12]},{"name":"CDS_RESET_EX","features":[12]},{"name":"CDS_SET_PRIMARY","features":[12]},{"name":"CDS_TEST","features":[12]},{"name":"CDS_TYPE","features":[12]},{"name":"CDS_UPDATEREGISTRY","features":[12]},{"name":"CDS_VIDEOPARAMETERS","features":[12]},{"name":"CFP_ALLOCPROC","features":[12]},{"name":"CFP_FREEPROC","features":[12]},{"name":"CFP_REALLOCPROC","features":[12]},{"name":"CHARSET_DEFAULT","features":[12]},{"name":"CHARSET_GLYPHIDX","features":[12]},{"name":"CHARSET_SYMBOL","features":[12]},{"name":"CHARSET_UNICODE","features":[12]},{"name":"CHECKJPEGFORMAT","features":[12]},{"name":"CHECKPNGFORMAT","features":[12]},{"name":"CHINESEBIG5_CHARSET","features":[12]},{"name":"CIEXYZ","features":[12]},{"name":"CIEXYZTRIPLE","features":[12]},{"name":"CLEARTYPE_NATURAL_QUALITY","features":[12]},{"name":"CLEARTYPE_QUALITY","features":[12]},{"name":"CLIPCAPS","features":[12]},{"name":"CLIP_CHARACTER_PRECIS","features":[12]},{"name":"CLIP_DEFAULT_PRECIS","features":[12]},{"name":"CLIP_DFA_DISABLE","features":[12]},{"name":"CLIP_DFA_OVERRIDE","features":[12]},{"name":"CLIP_EMBEDDED","features":[12]},{"name":"CLIP_LH_ANGLES","features":[12]},{"name":"CLIP_MASK","features":[12]},{"name":"CLIP_STROKE_PRECIS","features":[12]},{"name":"CLIP_TO_PATH","features":[12]},{"name":"CLIP_TT_ALWAYS","features":[12]},{"name":"CLOSECHANNEL","features":[12]},{"name":"CLR_INVALID","features":[12]},{"name":"CM_CMYK_COLOR","features":[12]},{"name":"CM_DEVICE_ICM","features":[12]},{"name":"CM_GAMMA_RAMP","features":[12]},{"name":"CM_IN_GAMUT","features":[12]},{"name":"CM_NONE","features":[12]},{"name":"CM_OUT_OF_GAMUT","features":[12]},{"name":"COLORADJUSTMENT","features":[12]},{"name":"COLORMATCHTOTARGET_EMBEDED","features":[12]},{"name":"COLORMGMTCAPS","features":[12]},{"name":"COLORONCOLOR","features":[12]},{"name":"COLORRES","features":[12]},{"name":"COLOR_3DDKSHADOW","features":[12]},{"name":"COLOR_3DFACE","features":[12]},{"name":"COLOR_3DHIGHLIGHT","features":[12]},{"name":"COLOR_3DHILIGHT","features":[12]},{"name":"COLOR_3DLIGHT","features":[12]},{"name":"COLOR_3DSHADOW","features":[12]},{"name":"COLOR_ACTIVEBORDER","features":[12]},{"name":"COLOR_ACTIVECAPTION","features":[12]},{"name":"COLOR_APPWORKSPACE","features":[12]},{"name":"COLOR_BACKGROUND","features":[12]},{"name":"COLOR_BTNFACE","features":[12]},{"name":"COLOR_BTNHIGHLIGHT","features":[12]},{"name":"COLOR_BTNHILIGHT","features":[12]},{"name":"COLOR_BTNSHADOW","features":[12]},{"name":"COLOR_BTNTEXT","features":[12]},{"name":"COLOR_CAPTIONTEXT","features":[12]},{"name":"COLOR_DESKTOP","features":[12]},{"name":"COLOR_GRADIENTACTIVECAPTION","features":[12]},{"name":"COLOR_GRADIENTINACTIVECAPTION","features":[12]},{"name":"COLOR_GRAYTEXT","features":[12]},{"name":"COLOR_HIGHLIGHT","features":[12]},{"name":"COLOR_HIGHLIGHTTEXT","features":[12]},{"name":"COLOR_HOTLIGHT","features":[12]},{"name":"COLOR_INACTIVEBORDER","features":[12]},{"name":"COLOR_INACTIVECAPTION","features":[12]},{"name":"COLOR_INACTIVECAPTIONTEXT","features":[12]},{"name":"COLOR_INFOBK","features":[12]},{"name":"COLOR_INFOTEXT","features":[12]},{"name":"COLOR_MENU","features":[12]},{"name":"COLOR_MENUBAR","features":[12]},{"name":"COLOR_MENUHILIGHT","features":[12]},{"name":"COLOR_MENUTEXT","features":[12]},{"name":"COLOR_SCROLLBAR","features":[12]},{"name":"COLOR_WINDOW","features":[12]},{"name":"COLOR_WINDOWFRAME","features":[12]},{"name":"COLOR_WINDOWTEXT","features":[12]},{"name":"COMPLEXREGION","features":[12]},{"name":"CP_NONE","features":[12]},{"name":"CP_RECTANGLE","features":[12]},{"name":"CP_REGION","features":[12]},{"name":"CREATECOLORSPACE_EMBEDED","features":[12]},{"name":"CREATE_FONT_PACKAGE_SUBSET_ENCODING","features":[12]},{"name":"CREATE_FONT_PACKAGE_SUBSET_PLATFORM","features":[12]},{"name":"CREATE_POLYGON_RGN_MODE","features":[12]},{"name":"CURVECAPS","features":[12]},{"name":"CancelDC","features":[1,12]},{"name":"ChangeDisplaySettingsA","features":[1,12]},{"name":"ChangeDisplaySettingsExA","features":[1,12]},{"name":"ChangeDisplaySettingsExW","features":[1,12]},{"name":"ChangeDisplaySettingsW","features":[1,12]},{"name":"Chord","features":[1,12]},{"name":"ClientToScreen","features":[1,12]},{"name":"CloseEnhMetaFile","features":[12]},{"name":"CloseFigure","features":[1,12]},{"name":"CloseMetaFile","features":[12]},{"name":"CombineRgn","features":[12]},{"name":"CombineTransform","features":[1,12]},{"name":"CopyEnhMetaFileA","features":[12]},{"name":"CopyEnhMetaFileW","features":[12]},{"name":"CopyMetaFileA","features":[12]},{"name":"CopyMetaFileW","features":[12]},{"name":"CopyRect","features":[1,12]},{"name":"CreateBitmap","features":[12]},{"name":"CreateBitmapIndirect","features":[12]},{"name":"CreateBrushIndirect","features":[1,12]},{"name":"CreateCompatibleBitmap","features":[12]},{"name":"CreateCompatibleDC","features":[12]},{"name":"CreateDCA","features":[1,12]},{"name":"CreateDCW","features":[1,12]},{"name":"CreateDIBPatternBrush","features":[1,12]},{"name":"CreateDIBPatternBrushPt","features":[12]},{"name":"CreateDIBSection","features":[1,12]},{"name":"CreateDIBitmap","features":[12]},{"name":"CreateDiscardableBitmap","features":[12]},{"name":"CreateEllipticRgn","features":[12]},{"name":"CreateEllipticRgnIndirect","features":[1,12]},{"name":"CreateEnhMetaFileA","features":[1,12]},{"name":"CreateEnhMetaFileW","features":[1,12]},{"name":"CreateFontA","features":[12]},{"name":"CreateFontIndirectA","features":[12]},{"name":"CreateFontIndirectExA","features":[12]},{"name":"CreateFontIndirectExW","features":[12]},{"name":"CreateFontIndirectW","features":[12]},{"name":"CreateFontPackage","features":[12]},{"name":"CreateFontW","features":[12]},{"name":"CreateHalftonePalette","features":[12]},{"name":"CreateHatchBrush","features":[1,12]},{"name":"CreateICA","features":[1,12]},{"name":"CreateICW","features":[1,12]},{"name":"CreateMetaFileA","features":[12]},{"name":"CreateMetaFileW","features":[12]},{"name":"CreatePalette","features":[12]},{"name":"CreatePatternBrush","features":[12]},{"name":"CreatePen","features":[1,12]},{"name":"CreatePenIndirect","features":[1,12]},{"name":"CreatePolyPolygonRgn","features":[1,12]},{"name":"CreatePolygonRgn","features":[1,12]},{"name":"CreateRectRgn","features":[12]},{"name":"CreateRectRgnIndirect","features":[1,12]},{"name":"CreateRoundRectRgn","features":[12]},{"name":"CreateScalableFontResourceA","features":[1,12]},{"name":"CreateScalableFontResourceW","features":[1,12]},{"name":"CreateSolidBrush","features":[1,12]},{"name":"DCBA_FACEDOWNCENTER","features":[12]},{"name":"DCBA_FACEDOWNLEFT","features":[12]},{"name":"DCBA_FACEDOWNNONE","features":[12]},{"name":"DCBA_FACEDOWNRIGHT","features":[12]},{"name":"DCBA_FACEUPCENTER","features":[12]},{"name":"DCBA_FACEUPLEFT","features":[12]},{"name":"DCBA_FACEUPNONE","features":[12]},{"name":"DCBA_FACEUPRIGHT","features":[12]},{"name":"DCB_ACCUMULATE","features":[12]},{"name":"DCB_DISABLE","features":[12]},{"name":"DCB_ENABLE","features":[12]},{"name":"DCB_RESET","features":[12]},{"name":"DCTT_BITMAP","features":[12]},{"name":"DCTT_DOWNLOAD","features":[12]},{"name":"DCTT_DOWNLOAD_OUTLINE","features":[12]},{"name":"DCTT_SUBDEV","features":[12]},{"name":"DCX_CACHE","features":[12]},{"name":"DCX_CLIPCHILDREN","features":[12]},{"name":"DCX_CLIPSIBLINGS","features":[12]},{"name":"DCX_EXCLUDERGN","features":[12]},{"name":"DCX_INTERSECTRGN","features":[12]},{"name":"DCX_INTERSECTUPDATE","features":[12]},{"name":"DCX_LOCKWINDOWUPDATE","features":[12]},{"name":"DCX_NORESETATTRS","features":[12]},{"name":"DCX_PARENTCLIP","features":[12]},{"name":"DCX_VALIDATE","features":[12]},{"name":"DCX_WINDOW","features":[12]},{"name":"DC_ACTIVE","features":[12]},{"name":"DC_BINADJUST","features":[12]},{"name":"DC_BRUSH","features":[12]},{"name":"DC_BUTTONS","features":[12]},{"name":"DC_DATATYPE_PRODUCED","features":[12]},{"name":"DC_EMF_COMPLIANT","features":[12]},{"name":"DC_GRADIENT","features":[12]},{"name":"DC_ICON","features":[12]},{"name":"DC_INBUTTON","features":[12]},{"name":"DC_LAYOUT","features":[12]},{"name":"DC_MANUFACTURER","features":[12]},{"name":"DC_MODEL","features":[12]},{"name":"DC_PEN","features":[12]},{"name":"DC_SMALLCAP","features":[12]},{"name":"DC_TEXT","features":[12]},{"name":"DEFAULT_CHARSET","features":[12]},{"name":"DEFAULT_GUI_FONT","features":[12]},{"name":"DEFAULT_PALETTE","features":[12]},{"name":"DEFAULT_PITCH","features":[12]},{"name":"DEFAULT_QUALITY","features":[12]},{"name":"DESIGNVECTOR","features":[12]},{"name":"DESKTOPHORZRES","features":[12]},{"name":"DESKTOPVERTRES","features":[12]},{"name":"DEVICEDATA","features":[12]},{"name":"DEVICE_DEFAULT_FONT","features":[12]},{"name":"DEVICE_FONTTYPE","features":[12]},{"name":"DEVMODEA","features":[1,12]},{"name":"DEVMODEW","features":[1,12]},{"name":"DEVMODE_COLLATE","features":[12]},{"name":"DEVMODE_COLOR","features":[12]},{"name":"DEVMODE_DISPLAY_FIXED_OUTPUT","features":[12]},{"name":"DEVMODE_DISPLAY_ORIENTATION","features":[12]},{"name":"DEVMODE_DUPLEX","features":[12]},{"name":"DEVMODE_FIELD_FLAGS","features":[12]},{"name":"DEVMODE_TRUETYPE_OPTION","features":[12]},{"name":"DFCS_ADJUSTRECT","features":[12]},{"name":"DFCS_BUTTON3STATE","features":[12]},{"name":"DFCS_BUTTONCHECK","features":[12]},{"name":"DFCS_BUTTONPUSH","features":[12]},{"name":"DFCS_BUTTONRADIO","features":[12]},{"name":"DFCS_BUTTONRADIOIMAGE","features":[12]},{"name":"DFCS_BUTTONRADIOMASK","features":[12]},{"name":"DFCS_CAPTIONCLOSE","features":[12]},{"name":"DFCS_CAPTIONHELP","features":[12]},{"name":"DFCS_CAPTIONMAX","features":[12]},{"name":"DFCS_CAPTIONMIN","features":[12]},{"name":"DFCS_CAPTIONRESTORE","features":[12]},{"name":"DFCS_CHECKED","features":[12]},{"name":"DFCS_FLAT","features":[12]},{"name":"DFCS_HOT","features":[12]},{"name":"DFCS_INACTIVE","features":[12]},{"name":"DFCS_MENUARROW","features":[12]},{"name":"DFCS_MENUARROWRIGHT","features":[12]},{"name":"DFCS_MENUBULLET","features":[12]},{"name":"DFCS_MENUCHECK","features":[12]},{"name":"DFCS_MONO","features":[12]},{"name":"DFCS_PUSHED","features":[12]},{"name":"DFCS_SCROLLCOMBOBOX","features":[12]},{"name":"DFCS_SCROLLDOWN","features":[12]},{"name":"DFCS_SCROLLLEFT","features":[12]},{"name":"DFCS_SCROLLRIGHT","features":[12]},{"name":"DFCS_SCROLLSIZEGRIP","features":[12]},{"name":"DFCS_SCROLLSIZEGRIPRIGHT","features":[12]},{"name":"DFCS_SCROLLUP","features":[12]},{"name":"DFCS_STATE","features":[12]},{"name":"DFCS_TRANSPARENT","features":[12]},{"name":"DFC_BUTTON","features":[12]},{"name":"DFC_CAPTION","features":[12]},{"name":"DFC_MENU","features":[12]},{"name":"DFC_POPUPMENU","features":[12]},{"name":"DFC_SCROLL","features":[12]},{"name":"DFC_TYPE","features":[12]},{"name":"DIBSECTION","features":[1,12]},{"name":"DIB_PAL_COLORS","features":[12]},{"name":"DIB_RGB_COLORS","features":[12]},{"name":"DIB_USAGE","features":[12]},{"name":"DISPLAYCONFIG_COLOR_ENCODING","features":[12]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_INTENSITY","features":[12]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_RGB","features":[12]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR420","features":[12]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR422","features":[12]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR444","features":[12]},{"name":"DISPLAYCONFIG_MAXPATH","features":[12]},{"name":"DISPLAYCONFIG_PATH_ACTIVE","features":[12]},{"name":"DISPLAYCONFIG_PATH_CLONE_GROUP_INVALID","features":[12]},{"name":"DISPLAYCONFIG_PATH_DESKTOP_IMAGE_IDX_INVALID","features":[12]},{"name":"DISPLAYCONFIG_PATH_MODE_IDX_INVALID","features":[12]},{"name":"DISPLAYCONFIG_PATH_PREFERRED_UNSCALED","features":[12]},{"name":"DISPLAYCONFIG_PATH_SOURCE_MODE_IDX_INVALID","features":[12]},{"name":"DISPLAYCONFIG_PATH_SUPPORT_VIRTUAL_MODE","features":[12]},{"name":"DISPLAYCONFIG_PATH_TARGET_MODE_IDX_INVALID","features":[12]},{"name":"DISPLAYCONFIG_PATH_VALID_FLAGS","features":[12]},{"name":"DISPLAYCONFIG_SOURCE_IN_USE","features":[12]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_BOOT","features":[12]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_PATH","features":[12]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_SYSTEM","features":[12]},{"name":"DISPLAYCONFIG_TARGET_FORCIBLE","features":[12]},{"name":"DISPLAYCONFIG_TARGET_IN_USE","features":[12]},{"name":"DISPLAYCONFIG_TARGET_IS_HMD","features":[12]},{"name":"DISPLAY_DEVICEA","features":[12]},{"name":"DISPLAY_DEVICEW","features":[12]},{"name":"DISPLAY_DEVICE_ACC_DRIVER","features":[12]},{"name":"DISPLAY_DEVICE_ACTIVE","features":[12]},{"name":"DISPLAY_DEVICE_ATTACHED","features":[12]},{"name":"DISPLAY_DEVICE_ATTACHED_TO_DESKTOP","features":[12]},{"name":"DISPLAY_DEVICE_DISCONNECT","features":[12]},{"name":"DISPLAY_DEVICE_MIRRORING_DRIVER","features":[12]},{"name":"DISPLAY_DEVICE_MODESPRUNED","features":[12]},{"name":"DISPLAY_DEVICE_MULTI_DRIVER","features":[12]},{"name":"DISPLAY_DEVICE_PRIMARY_DEVICE","features":[12]},{"name":"DISPLAY_DEVICE_RDPUDD","features":[12]},{"name":"DISPLAY_DEVICE_REMOTE","features":[12]},{"name":"DISPLAY_DEVICE_REMOVABLE","features":[12]},{"name":"DISPLAY_DEVICE_TS_COMPATIBLE","features":[12]},{"name":"DISPLAY_DEVICE_UNSAFE_MODES_ON","features":[12]},{"name":"DISPLAY_DEVICE_VGA_COMPATIBLE","features":[12]},{"name":"DISP_CHANGE","features":[12]},{"name":"DISP_CHANGE_BADDUALVIEW","features":[12]},{"name":"DISP_CHANGE_BADFLAGS","features":[12]},{"name":"DISP_CHANGE_BADMODE","features":[12]},{"name":"DISP_CHANGE_BADPARAM","features":[12]},{"name":"DISP_CHANGE_FAILED","features":[12]},{"name":"DISP_CHANGE_NOTUPDATED","features":[12]},{"name":"DISP_CHANGE_RESTART","features":[12]},{"name":"DISP_CHANGE_SUCCESSFUL","features":[12]},{"name":"DI_APPBANDING","features":[12]},{"name":"DI_ROPS_READ_DESTINATION","features":[12]},{"name":"DKGRAY_BRUSH","features":[12]},{"name":"DMBIN_AUTO","features":[12]},{"name":"DMBIN_CASSETTE","features":[12]},{"name":"DMBIN_ENVELOPE","features":[12]},{"name":"DMBIN_ENVMANUAL","features":[12]},{"name":"DMBIN_FORMSOURCE","features":[12]},{"name":"DMBIN_LARGECAPACITY","features":[12]},{"name":"DMBIN_LARGEFMT","features":[12]},{"name":"DMBIN_LAST","features":[12]},{"name":"DMBIN_LOWER","features":[12]},{"name":"DMBIN_MANUAL","features":[12]},{"name":"DMBIN_MIDDLE","features":[12]},{"name":"DMBIN_ONLYONE","features":[12]},{"name":"DMBIN_SMALLFMT","features":[12]},{"name":"DMBIN_TRACTOR","features":[12]},{"name":"DMBIN_UPPER","features":[12]},{"name":"DMBIN_USER","features":[12]},{"name":"DMCOLLATE_FALSE","features":[12]},{"name":"DMCOLLATE_TRUE","features":[12]},{"name":"DMCOLOR_COLOR","features":[12]},{"name":"DMCOLOR_MONOCHROME","features":[12]},{"name":"DMDFO_CENTER","features":[12]},{"name":"DMDFO_DEFAULT","features":[12]},{"name":"DMDFO_STRETCH","features":[12]},{"name":"DMDISPLAYFLAGS_TEXTMODE","features":[12]},{"name":"DMDITHER_COARSE","features":[12]},{"name":"DMDITHER_ERRORDIFFUSION","features":[12]},{"name":"DMDITHER_FINE","features":[12]},{"name":"DMDITHER_GRAYSCALE","features":[12]},{"name":"DMDITHER_LINEART","features":[12]},{"name":"DMDITHER_NONE","features":[12]},{"name":"DMDITHER_RESERVED6","features":[12]},{"name":"DMDITHER_RESERVED7","features":[12]},{"name":"DMDITHER_RESERVED8","features":[12]},{"name":"DMDITHER_RESERVED9","features":[12]},{"name":"DMDITHER_USER","features":[12]},{"name":"DMDO_180","features":[12]},{"name":"DMDO_270","features":[12]},{"name":"DMDO_90","features":[12]},{"name":"DMDO_DEFAULT","features":[12]},{"name":"DMDUP_HORIZONTAL","features":[12]},{"name":"DMDUP_SIMPLEX","features":[12]},{"name":"DMDUP_VERTICAL","features":[12]},{"name":"DMICMMETHOD_DEVICE","features":[12]},{"name":"DMICMMETHOD_DRIVER","features":[12]},{"name":"DMICMMETHOD_NONE","features":[12]},{"name":"DMICMMETHOD_SYSTEM","features":[12]},{"name":"DMICMMETHOD_USER","features":[12]},{"name":"DMICM_ABS_COLORIMETRIC","features":[12]},{"name":"DMICM_COLORIMETRIC","features":[12]},{"name":"DMICM_CONTRAST","features":[12]},{"name":"DMICM_SATURATE","features":[12]},{"name":"DMICM_USER","features":[12]},{"name":"DMMEDIA_GLOSSY","features":[12]},{"name":"DMMEDIA_STANDARD","features":[12]},{"name":"DMMEDIA_TRANSPARENCY","features":[12]},{"name":"DMMEDIA_USER","features":[12]},{"name":"DMNUP_ONEUP","features":[12]},{"name":"DMNUP_SYSTEM","features":[12]},{"name":"DMORIENT_LANDSCAPE","features":[12]},{"name":"DMORIENT_PORTRAIT","features":[12]},{"name":"DMPAPER_10X11","features":[12]},{"name":"DMPAPER_10X14","features":[12]},{"name":"DMPAPER_11X17","features":[12]},{"name":"DMPAPER_12X11","features":[12]},{"name":"DMPAPER_15X11","features":[12]},{"name":"DMPAPER_9X11","features":[12]},{"name":"DMPAPER_A2","features":[12]},{"name":"DMPAPER_A3","features":[12]},{"name":"DMPAPER_A3_EXTRA","features":[12]},{"name":"DMPAPER_A3_EXTRA_TRANSVERSE","features":[12]},{"name":"DMPAPER_A3_ROTATED","features":[12]},{"name":"DMPAPER_A3_TRANSVERSE","features":[12]},{"name":"DMPAPER_A4","features":[12]},{"name":"DMPAPER_A4SMALL","features":[12]},{"name":"DMPAPER_A4_EXTRA","features":[12]},{"name":"DMPAPER_A4_PLUS","features":[12]},{"name":"DMPAPER_A4_ROTATED","features":[12]},{"name":"DMPAPER_A4_TRANSVERSE","features":[12]},{"name":"DMPAPER_A5","features":[12]},{"name":"DMPAPER_A5_EXTRA","features":[12]},{"name":"DMPAPER_A5_ROTATED","features":[12]},{"name":"DMPAPER_A5_TRANSVERSE","features":[12]},{"name":"DMPAPER_A6","features":[12]},{"name":"DMPAPER_A6_ROTATED","features":[12]},{"name":"DMPAPER_A_PLUS","features":[12]},{"name":"DMPAPER_B4","features":[12]},{"name":"DMPAPER_B4_JIS_ROTATED","features":[12]},{"name":"DMPAPER_B5","features":[12]},{"name":"DMPAPER_B5_EXTRA","features":[12]},{"name":"DMPAPER_B5_JIS_ROTATED","features":[12]},{"name":"DMPAPER_B5_TRANSVERSE","features":[12]},{"name":"DMPAPER_B6_JIS","features":[12]},{"name":"DMPAPER_B6_JIS_ROTATED","features":[12]},{"name":"DMPAPER_B_PLUS","features":[12]},{"name":"DMPAPER_CSHEET","features":[12]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD","features":[12]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED","features":[12]},{"name":"DMPAPER_DSHEET","features":[12]},{"name":"DMPAPER_ENV_10","features":[12]},{"name":"DMPAPER_ENV_11","features":[12]},{"name":"DMPAPER_ENV_12","features":[12]},{"name":"DMPAPER_ENV_14","features":[12]},{"name":"DMPAPER_ENV_9","features":[12]},{"name":"DMPAPER_ENV_B4","features":[12]},{"name":"DMPAPER_ENV_B5","features":[12]},{"name":"DMPAPER_ENV_B6","features":[12]},{"name":"DMPAPER_ENV_C3","features":[12]},{"name":"DMPAPER_ENV_C4","features":[12]},{"name":"DMPAPER_ENV_C5","features":[12]},{"name":"DMPAPER_ENV_C6","features":[12]},{"name":"DMPAPER_ENV_C65","features":[12]},{"name":"DMPAPER_ENV_DL","features":[12]},{"name":"DMPAPER_ENV_INVITE","features":[12]},{"name":"DMPAPER_ENV_ITALY","features":[12]},{"name":"DMPAPER_ENV_MONARCH","features":[12]},{"name":"DMPAPER_ENV_PERSONAL","features":[12]},{"name":"DMPAPER_ESHEET","features":[12]},{"name":"DMPAPER_EXECUTIVE","features":[12]},{"name":"DMPAPER_FANFOLD_LGL_GERMAN","features":[12]},{"name":"DMPAPER_FANFOLD_STD_GERMAN","features":[12]},{"name":"DMPAPER_FANFOLD_US","features":[12]},{"name":"DMPAPER_FOLIO","features":[12]},{"name":"DMPAPER_ISO_B4","features":[12]},{"name":"DMPAPER_JAPANESE_POSTCARD","features":[12]},{"name":"DMPAPER_JAPANESE_POSTCARD_ROTATED","features":[12]},{"name":"DMPAPER_JENV_CHOU3","features":[12]},{"name":"DMPAPER_JENV_CHOU3_ROTATED","features":[12]},{"name":"DMPAPER_JENV_CHOU4","features":[12]},{"name":"DMPAPER_JENV_CHOU4_ROTATED","features":[12]},{"name":"DMPAPER_JENV_KAKU2","features":[12]},{"name":"DMPAPER_JENV_KAKU2_ROTATED","features":[12]},{"name":"DMPAPER_JENV_KAKU3","features":[12]},{"name":"DMPAPER_JENV_KAKU3_ROTATED","features":[12]},{"name":"DMPAPER_JENV_YOU4","features":[12]},{"name":"DMPAPER_JENV_YOU4_ROTATED","features":[12]},{"name":"DMPAPER_LAST","features":[12]},{"name":"DMPAPER_LEDGER","features":[12]},{"name":"DMPAPER_LEGAL","features":[12]},{"name":"DMPAPER_LEGAL_EXTRA","features":[12]},{"name":"DMPAPER_LETTER","features":[12]},{"name":"DMPAPER_LETTERSMALL","features":[12]},{"name":"DMPAPER_LETTER_EXTRA","features":[12]},{"name":"DMPAPER_LETTER_EXTRA_TRANSVERSE","features":[12]},{"name":"DMPAPER_LETTER_PLUS","features":[12]},{"name":"DMPAPER_LETTER_ROTATED","features":[12]},{"name":"DMPAPER_LETTER_TRANSVERSE","features":[12]},{"name":"DMPAPER_NOTE","features":[12]},{"name":"DMPAPER_P16K","features":[12]},{"name":"DMPAPER_P16K_ROTATED","features":[12]},{"name":"DMPAPER_P32K","features":[12]},{"name":"DMPAPER_P32KBIG","features":[12]},{"name":"DMPAPER_P32KBIG_ROTATED","features":[12]},{"name":"DMPAPER_P32K_ROTATED","features":[12]},{"name":"DMPAPER_PENV_1","features":[12]},{"name":"DMPAPER_PENV_10","features":[12]},{"name":"DMPAPER_PENV_10_ROTATED","features":[12]},{"name":"DMPAPER_PENV_1_ROTATED","features":[12]},{"name":"DMPAPER_PENV_2","features":[12]},{"name":"DMPAPER_PENV_2_ROTATED","features":[12]},{"name":"DMPAPER_PENV_3","features":[12]},{"name":"DMPAPER_PENV_3_ROTATED","features":[12]},{"name":"DMPAPER_PENV_4","features":[12]},{"name":"DMPAPER_PENV_4_ROTATED","features":[12]},{"name":"DMPAPER_PENV_5","features":[12]},{"name":"DMPAPER_PENV_5_ROTATED","features":[12]},{"name":"DMPAPER_PENV_6","features":[12]},{"name":"DMPAPER_PENV_6_ROTATED","features":[12]},{"name":"DMPAPER_PENV_7","features":[12]},{"name":"DMPAPER_PENV_7_ROTATED","features":[12]},{"name":"DMPAPER_PENV_8","features":[12]},{"name":"DMPAPER_PENV_8_ROTATED","features":[12]},{"name":"DMPAPER_PENV_9","features":[12]},{"name":"DMPAPER_PENV_9_ROTATED","features":[12]},{"name":"DMPAPER_QUARTO","features":[12]},{"name":"DMPAPER_RESERVED_48","features":[12]},{"name":"DMPAPER_RESERVED_49","features":[12]},{"name":"DMPAPER_STATEMENT","features":[12]},{"name":"DMPAPER_TABLOID","features":[12]},{"name":"DMPAPER_TABLOID_EXTRA","features":[12]},{"name":"DMPAPER_USER","features":[12]},{"name":"DMRES_DRAFT","features":[12]},{"name":"DMRES_HIGH","features":[12]},{"name":"DMRES_LOW","features":[12]},{"name":"DMRES_MEDIUM","features":[12]},{"name":"DMTT_BITMAP","features":[12]},{"name":"DMTT_DOWNLOAD","features":[12]},{"name":"DMTT_DOWNLOAD_OUTLINE","features":[12]},{"name":"DMTT_SUBDEV","features":[12]},{"name":"DM_BITSPERPEL","features":[12]},{"name":"DM_COLLATE","features":[12]},{"name":"DM_COLOR","features":[12]},{"name":"DM_COPIES","features":[12]},{"name":"DM_COPY","features":[12]},{"name":"DM_DEFAULTSOURCE","features":[12]},{"name":"DM_DISPLAYFIXEDOUTPUT","features":[12]},{"name":"DM_DISPLAYFLAGS","features":[12]},{"name":"DM_DISPLAYFREQUENCY","features":[12]},{"name":"DM_DISPLAYORIENTATION","features":[12]},{"name":"DM_DITHERTYPE","features":[12]},{"name":"DM_DUPLEX","features":[12]},{"name":"DM_FORMNAME","features":[12]},{"name":"DM_ICMINTENT","features":[12]},{"name":"DM_ICMMETHOD","features":[12]},{"name":"DM_INTERLACED","features":[12]},{"name":"DM_IN_BUFFER","features":[12]},{"name":"DM_IN_PROMPT","features":[12]},{"name":"DM_LOGPIXELS","features":[12]},{"name":"DM_MEDIATYPE","features":[12]},{"name":"DM_MODIFY","features":[12]},{"name":"DM_NUP","features":[12]},{"name":"DM_ORIENTATION","features":[12]},{"name":"DM_OUT_BUFFER","features":[12]},{"name":"DM_OUT_DEFAULT","features":[12]},{"name":"DM_PANNINGHEIGHT","features":[12]},{"name":"DM_PANNINGWIDTH","features":[12]},{"name":"DM_PAPERLENGTH","features":[12]},{"name":"DM_PAPERSIZE","features":[12]},{"name":"DM_PAPERWIDTH","features":[12]},{"name":"DM_PELSHEIGHT","features":[12]},{"name":"DM_PELSWIDTH","features":[12]},{"name":"DM_POSITION","features":[12]},{"name":"DM_PRINTQUALITY","features":[12]},{"name":"DM_PROMPT","features":[12]},{"name":"DM_SCALE","features":[12]},{"name":"DM_SPECVERSION","features":[12]},{"name":"DM_TTOPTION","features":[12]},{"name":"DM_UPDATE","features":[12]},{"name":"DM_YRESOLUTION","features":[12]},{"name":"DOWNLOADFACE","features":[12]},{"name":"DOWNLOADHEADER","features":[12]},{"name":"DPtoLP","features":[1,12]},{"name":"DRAFTMODE","features":[12]},{"name":"DRAFT_QUALITY","features":[12]},{"name":"DRAWEDGE_FLAGS","features":[12]},{"name":"DRAWPATTERNRECT","features":[12]},{"name":"DRAWSTATEPROC","features":[1,12]},{"name":"DRAWSTATE_FLAGS","features":[12]},{"name":"DRAWTEXTPARAMS","features":[12]},{"name":"DRAW_CAPTION_FLAGS","features":[12]},{"name":"DRAW_EDGE_FLAGS","features":[12]},{"name":"DRAW_TEXT_FORMAT","features":[12]},{"name":"DRIVERVERSION","features":[12]},{"name":"DSS_DISABLED","features":[12]},{"name":"DSS_HIDEPREFIX","features":[12]},{"name":"DSS_MONO","features":[12]},{"name":"DSS_NORMAL","features":[12]},{"name":"DSS_PREFIXONLY","features":[12]},{"name":"DSS_RIGHT","features":[12]},{"name":"DSS_UNION","features":[12]},{"name":"DSTINVERT","features":[12]},{"name":"DST_BITMAP","features":[12]},{"name":"DST_COMPLEX","features":[12]},{"name":"DST_ICON","features":[12]},{"name":"DST_PREFIXTEXT","features":[12]},{"name":"DST_TEXT","features":[12]},{"name":"DT_BOTTOM","features":[12]},{"name":"DT_CALCRECT","features":[12]},{"name":"DT_CENTER","features":[12]},{"name":"DT_CHARSTREAM","features":[12]},{"name":"DT_DISPFILE","features":[12]},{"name":"DT_EDITCONTROL","features":[12]},{"name":"DT_END_ELLIPSIS","features":[12]},{"name":"DT_EXPANDTABS","features":[12]},{"name":"DT_EXTERNALLEADING","features":[12]},{"name":"DT_HIDEPREFIX","features":[12]},{"name":"DT_INTERNAL","features":[12]},{"name":"DT_LEFT","features":[12]},{"name":"DT_METAFILE","features":[12]},{"name":"DT_MODIFYSTRING","features":[12]},{"name":"DT_NOCLIP","features":[12]},{"name":"DT_NOFULLWIDTHCHARBREAK","features":[12]},{"name":"DT_NOPREFIX","features":[12]},{"name":"DT_PATH_ELLIPSIS","features":[12]},{"name":"DT_PLOTTER","features":[12]},{"name":"DT_PREFIXONLY","features":[12]},{"name":"DT_RASCAMERA","features":[12]},{"name":"DT_RASDISPLAY","features":[12]},{"name":"DT_RASPRINTER","features":[12]},{"name":"DT_RIGHT","features":[12]},{"name":"DT_RTLREADING","features":[12]},{"name":"DT_SINGLELINE","features":[12]},{"name":"DT_TABSTOP","features":[12]},{"name":"DT_TOP","features":[12]},{"name":"DT_VCENTER","features":[12]},{"name":"DT_WORDBREAK","features":[12]},{"name":"DT_WORD_ELLIPSIS","features":[12]},{"name":"DeleteDC","features":[1,12]},{"name":"DeleteEnhMetaFile","features":[1,12]},{"name":"DeleteMetaFile","features":[1,12]},{"name":"DeleteObject","features":[1,12]},{"name":"DrawAnimatedRects","features":[1,12]},{"name":"DrawCaption","features":[1,12]},{"name":"DrawEdge","features":[1,12]},{"name":"DrawEscape","features":[12]},{"name":"DrawFocusRect","features":[1,12]},{"name":"DrawFrameControl","features":[1,12]},{"name":"DrawStateA","features":[1,12]},{"name":"DrawStateW","features":[1,12]},{"name":"DrawTextA","features":[1,12]},{"name":"DrawTextExA","features":[1,12]},{"name":"DrawTextExW","features":[1,12]},{"name":"DrawTextW","features":[1,12]},{"name":"EASTEUROPE_CHARSET","features":[12]},{"name":"EDGE_BUMP","features":[12]},{"name":"EDGE_ETCHED","features":[12]},{"name":"EDGE_RAISED","features":[12]},{"name":"EDGE_SUNKEN","features":[12]},{"name":"EDS_RAWMODE","features":[12]},{"name":"EDS_ROTATEDMODE","features":[12]},{"name":"ELF_CULTURE_LATIN","features":[12]},{"name":"ELF_VENDOR_SIZE","features":[12]},{"name":"ELF_VERSION","features":[12]},{"name":"EMBEDDED_FONT_PRIV_STATUS","features":[12]},{"name":"EMBED_EDITABLE","features":[12]},{"name":"EMBED_FONT_CHARSET","features":[12]},{"name":"EMBED_INSTALLABLE","features":[12]},{"name":"EMBED_NOEMBEDDING","features":[12]},{"name":"EMBED_PREVIEWPRINT","features":[12]},{"name":"EMR","features":[12]},{"name":"EMRALPHABLEND","features":[1,12]},{"name":"EMRANGLEARC","features":[1,12]},{"name":"EMRARC","features":[1,12]},{"name":"EMRBITBLT","features":[1,12]},{"name":"EMRCOLORCORRECTPALETTE","features":[12]},{"name":"EMRCOLORMATCHTOTARGET","features":[12]},{"name":"EMRCREATEBRUSHINDIRECT","features":[1,12]},{"name":"EMRCREATEDIBPATTERNBRUSHPT","features":[12]},{"name":"EMRCREATEMONOBRUSH","features":[12]},{"name":"EMRCREATEPALETTE","features":[12]},{"name":"EMRCREATEPEN","features":[1,12]},{"name":"EMRELLIPSE","features":[1,12]},{"name":"EMREOF","features":[12]},{"name":"EMREXCLUDECLIPRECT","features":[1,12]},{"name":"EMREXTCREATEFONTINDIRECTW","features":[12]},{"name":"EMREXTCREATEPEN","features":[1,12]},{"name":"EMREXTESCAPE","features":[12]},{"name":"EMREXTFLOODFILL","features":[1,12]},{"name":"EMREXTSELECTCLIPRGN","features":[12]},{"name":"EMREXTTEXTOUTA","features":[1,12]},{"name":"EMRFILLPATH","features":[1,12]},{"name":"EMRFILLRGN","features":[1,12]},{"name":"EMRFORMAT","features":[12]},{"name":"EMRFRAMERGN","features":[1,12]},{"name":"EMRGDICOMMENT","features":[12]},{"name":"EMRGLSBOUNDEDRECORD","features":[1,12]},{"name":"EMRGLSRECORD","features":[12]},{"name":"EMRGRADIENTFILL","features":[1,12]},{"name":"EMRINVERTRGN","features":[1,12]},{"name":"EMRLINETO","features":[1,12]},{"name":"EMRMASKBLT","features":[1,12]},{"name":"EMRMODIFYWORLDTRANSFORM","features":[12]},{"name":"EMRNAMEDESCAPE","features":[12]},{"name":"EMROFFSETCLIPRGN","features":[1,12]},{"name":"EMRPLGBLT","features":[1,12]},{"name":"EMRPOLYDRAW","features":[1,12]},{"name":"EMRPOLYDRAW16","features":[1,12]},{"name":"EMRPOLYLINE","features":[1,12]},{"name":"EMRPOLYLINE16","features":[1,12]},{"name":"EMRPOLYPOLYLINE","features":[1,12]},{"name":"EMRPOLYPOLYLINE16","features":[1,12]},{"name":"EMRPOLYTEXTOUTA","features":[1,12]},{"name":"EMRRESIZEPALETTE","features":[12]},{"name":"EMRRESTOREDC","features":[12]},{"name":"EMRROUNDRECT","features":[1,12]},{"name":"EMRSCALEVIEWPORTEXTEX","features":[12]},{"name":"EMRSELECTCLIPPATH","features":[12]},{"name":"EMRSELECTOBJECT","features":[12]},{"name":"EMRSELECTPALETTE","features":[12]},{"name":"EMRSETARCDIRECTION","features":[12]},{"name":"EMRSETCOLORADJUSTMENT","features":[12]},{"name":"EMRSETCOLORSPACE","features":[12]},{"name":"EMRSETDIBITSTODEVICE","features":[1,12]},{"name":"EMRSETICMPROFILE","features":[12]},{"name":"EMRSETMAPPERFLAGS","features":[12]},{"name":"EMRSETMITERLIMIT","features":[12]},{"name":"EMRSETPALETTEENTRIES","features":[12]},{"name":"EMRSETPIXELV","features":[1,12]},{"name":"EMRSETTEXTCOLOR","features":[1,12]},{"name":"EMRSETVIEWPORTEXTEX","features":[1,12]},{"name":"EMRSETVIEWPORTORGEX","features":[1,12]},{"name":"EMRSETWORLDTRANSFORM","features":[12]},{"name":"EMRSTRETCHBLT","features":[1,12]},{"name":"EMRSTRETCHDIBITS","features":[1,12]},{"name":"EMRTEXT","features":[1,12]},{"name":"EMRTRANSPARENTBLT","features":[1,12]},{"name":"EMR_ABORTPATH","features":[12]},{"name":"EMR_ALPHABLEND","features":[12]},{"name":"EMR_ANGLEARC","features":[12]},{"name":"EMR_ARC","features":[12]},{"name":"EMR_ARCTO","features":[12]},{"name":"EMR_BEGINPATH","features":[12]},{"name":"EMR_BITBLT","features":[12]},{"name":"EMR_CHORD","features":[12]},{"name":"EMR_CLOSEFIGURE","features":[12]},{"name":"EMR_COLORCORRECTPALETTE","features":[12]},{"name":"EMR_COLORMATCHTOTARGETW","features":[12]},{"name":"EMR_CREATEBRUSHINDIRECT","features":[12]},{"name":"EMR_CREATECOLORSPACE","features":[12]},{"name":"EMR_CREATECOLORSPACEW","features":[12]},{"name":"EMR_CREATEDIBPATTERNBRUSHPT","features":[12]},{"name":"EMR_CREATEMONOBRUSH","features":[12]},{"name":"EMR_CREATEPALETTE","features":[12]},{"name":"EMR_CREATEPEN","features":[12]},{"name":"EMR_DELETECOLORSPACE","features":[12]},{"name":"EMR_DELETEOBJECT","features":[12]},{"name":"EMR_ELLIPSE","features":[12]},{"name":"EMR_ENDPATH","features":[12]},{"name":"EMR_EOF","features":[12]},{"name":"EMR_EXCLUDECLIPRECT","features":[12]},{"name":"EMR_EXTCREATEFONTINDIRECTW","features":[12]},{"name":"EMR_EXTCREATEPEN","features":[12]},{"name":"EMR_EXTFLOODFILL","features":[12]},{"name":"EMR_EXTSELECTCLIPRGN","features":[12]},{"name":"EMR_EXTTEXTOUTA","features":[12]},{"name":"EMR_EXTTEXTOUTW","features":[12]},{"name":"EMR_FILLPATH","features":[12]},{"name":"EMR_FILLRGN","features":[12]},{"name":"EMR_FLATTENPATH","features":[12]},{"name":"EMR_FRAMERGN","features":[12]},{"name":"EMR_GDICOMMENT","features":[12]},{"name":"EMR_GLSBOUNDEDRECORD","features":[12]},{"name":"EMR_GLSRECORD","features":[12]},{"name":"EMR_GRADIENTFILL","features":[12]},{"name":"EMR_HEADER","features":[12]},{"name":"EMR_INTERSECTCLIPRECT","features":[12]},{"name":"EMR_INVERTRGN","features":[12]},{"name":"EMR_LINETO","features":[12]},{"name":"EMR_MASKBLT","features":[12]},{"name":"EMR_MAX","features":[12]},{"name":"EMR_MIN","features":[12]},{"name":"EMR_MODIFYWORLDTRANSFORM","features":[12]},{"name":"EMR_MOVETOEX","features":[12]},{"name":"EMR_OFFSETCLIPRGN","features":[12]},{"name":"EMR_PAINTRGN","features":[12]},{"name":"EMR_PIE","features":[12]},{"name":"EMR_PIXELFORMAT","features":[12]},{"name":"EMR_PLGBLT","features":[12]},{"name":"EMR_POLYBEZIER","features":[12]},{"name":"EMR_POLYBEZIER16","features":[12]},{"name":"EMR_POLYBEZIERTO","features":[12]},{"name":"EMR_POLYBEZIERTO16","features":[12]},{"name":"EMR_POLYDRAW","features":[12]},{"name":"EMR_POLYDRAW16","features":[12]},{"name":"EMR_POLYGON","features":[12]},{"name":"EMR_POLYGON16","features":[12]},{"name":"EMR_POLYLINE","features":[12]},{"name":"EMR_POLYLINE16","features":[12]},{"name":"EMR_POLYLINETO","features":[12]},{"name":"EMR_POLYLINETO16","features":[12]},{"name":"EMR_POLYPOLYGON","features":[12]},{"name":"EMR_POLYPOLYGON16","features":[12]},{"name":"EMR_POLYPOLYLINE","features":[12]},{"name":"EMR_POLYPOLYLINE16","features":[12]},{"name":"EMR_POLYTEXTOUTA","features":[12]},{"name":"EMR_POLYTEXTOUTW","features":[12]},{"name":"EMR_REALIZEPALETTE","features":[12]},{"name":"EMR_RECTANGLE","features":[12]},{"name":"EMR_RESERVED_105","features":[12]},{"name":"EMR_RESERVED_106","features":[12]},{"name":"EMR_RESERVED_107","features":[12]},{"name":"EMR_RESERVED_108","features":[12]},{"name":"EMR_RESERVED_109","features":[12]},{"name":"EMR_RESERVED_110","features":[12]},{"name":"EMR_RESERVED_117","features":[12]},{"name":"EMR_RESERVED_119","features":[12]},{"name":"EMR_RESERVED_120","features":[12]},{"name":"EMR_RESIZEPALETTE","features":[12]},{"name":"EMR_RESTOREDC","features":[12]},{"name":"EMR_ROUNDRECT","features":[12]},{"name":"EMR_SAVEDC","features":[12]},{"name":"EMR_SCALEVIEWPORTEXTEX","features":[12]},{"name":"EMR_SCALEWINDOWEXTEX","features":[12]},{"name":"EMR_SELECTCLIPPATH","features":[12]},{"name":"EMR_SELECTOBJECT","features":[12]},{"name":"EMR_SELECTPALETTE","features":[12]},{"name":"EMR_SETARCDIRECTION","features":[12]},{"name":"EMR_SETBKCOLOR","features":[12]},{"name":"EMR_SETBKMODE","features":[12]},{"name":"EMR_SETBRUSHORGEX","features":[12]},{"name":"EMR_SETCOLORADJUSTMENT","features":[12]},{"name":"EMR_SETCOLORSPACE","features":[12]},{"name":"EMR_SETDIBITSTODEVICE","features":[12]},{"name":"EMR_SETICMMODE","features":[12]},{"name":"EMR_SETICMPROFILEA","features":[12]},{"name":"EMR_SETICMPROFILEW","features":[12]},{"name":"EMR_SETLAYOUT","features":[12]},{"name":"EMR_SETMAPMODE","features":[12]},{"name":"EMR_SETMAPPERFLAGS","features":[12]},{"name":"EMR_SETMETARGN","features":[12]},{"name":"EMR_SETMITERLIMIT","features":[12]},{"name":"EMR_SETPALETTEENTRIES","features":[12]},{"name":"EMR_SETPIXELV","features":[12]},{"name":"EMR_SETPOLYFILLMODE","features":[12]},{"name":"EMR_SETROP2","features":[12]},{"name":"EMR_SETSTRETCHBLTMODE","features":[12]},{"name":"EMR_SETTEXTALIGN","features":[12]},{"name":"EMR_SETTEXTCOLOR","features":[12]},{"name":"EMR_SETVIEWPORTEXTEX","features":[12]},{"name":"EMR_SETVIEWPORTORGEX","features":[12]},{"name":"EMR_SETWINDOWEXTEX","features":[12]},{"name":"EMR_SETWINDOWORGEX","features":[12]},{"name":"EMR_SETWORLDTRANSFORM","features":[12]},{"name":"EMR_STRETCHBLT","features":[12]},{"name":"EMR_STRETCHDIBITS","features":[12]},{"name":"EMR_STROKEANDFILLPATH","features":[12]},{"name":"EMR_STROKEPATH","features":[12]},{"name":"EMR_TRANSPARENTBLT","features":[12]},{"name":"EMR_WIDENPATH","features":[12]},{"name":"ENABLEDUPLEX","features":[12]},{"name":"ENABLEPAIRKERNING","features":[12]},{"name":"ENABLERELATIVEWIDTHS","features":[12]},{"name":"ENCAPSULATED_POSTSCRIPT","features":[12]},{"name":"ENDDOC","features":[12]},{"name":"END_PATH","features":[12]},{"name":"ENHANCED_METAFILE_RECORD_TYPE","features":[12]},{"name":"ENHMETAHEADER","features":[1,12]},{"name":"ENHMETARECORD","features":[12]},{"name":"ENHMETA_SIGNATURE","features":[12]},{"name":"ENHMETA_STOCK_OBJECT","features":[12]},{"name":"ENHMFENUMPROC","features":[1,12]},{"name":"ENUMLOGFONTA","features":[12]},{"name":"ENUMLOGFONTEXA","features":[12]},{"name":"ENUMLOGFONTEXDVA","features":[12]},{"name":"ENUMLOGFONTEXDVW","features":[12]},{"name":"ENUMLOGFONTEXW","features":[12]},{"name":"ENUMLOGFONTW","features":[12]},{"name":"ENUMPAPERBINS","features":[12]},{"name":"ENUMPAPERMETRICS","features":[12]},{"name":"ENUM_CURRENT_SETTINGS","features":[12]},{"name":"ENUM_DISPLAY_SETTINGS_FLAGS","features":[12]},{"name":"ENUM_DISPLAY_SETTINGS_MODE","features":[12]},{"name":"ENUM_REGISTRY_SETTINGS","features":[12]},{"name":"EPSPRINTING","features":[12]},{"name":"EPS_SIGNATURE","features":[12]},{"name":"ERROR","features":[12]},{"name":"ERR_FORMAT","features":[12]},{"name":"ERR_GENERIC","features":[12]},{"name":"ERR_INVALID_BASE","features":[12]},{"name":"ERR_INVALID_CMAP","features":[12]},{"name":"ERR_INVALID_DELTA_FORMAT","features":[12]},{"name":"ERR_INVALID_EBLC","features":[12]},{"name":"ERR_INVALID_GDEF","features":[12]},{"name":"ERR_INVALID_GLYF","features":[12]},{"name":"ERR_INVALID_GPOS","features":[12]},{"name":"ERR_INVALID_GSUB","features":[12]},{"name":"ERR_INVALID_HDMX","features":[12]},{"name":"ERR_INVALID_HEAD","features":[12]},{"name":"ERR_INVALID_HHEA","features":[12]},{"name":"ERR_INVALID_HHEA_OR_VHEA","features":[12]},{"name":"ERR_INVALID_HMTX","features":[12]},{"name":"ERR_INVALID_HMTX_OR_VMTX","features":[12]},{"name":"ERR_INVALID_JSTF","features":[12]},{"name":"ERR_INVALID_LOCA","features":[12]},{"name":"ERR_INVALID_LTSH","features":[12]},{"name":"ERR_INVALID_MAXP","features":[12]},{"name":"ERR_INVALID_MERGE_CHECKSUMS","features":[12]},{"name":"ERR_INVALID_MERGE_FORMATS","features":[12]},{"name":"ERR_INVALID_MERGE_NUMGLYPHS","features":[12]},{"name":"ERR_INVALID_NAME","features":[12]},{"name":"ERR_INVALID_OS2","features":[12]},{"name":"ERR_INVALID_POST","features":[12]},{"name":"ERR_INVALID_TTC_INDEX","features":[12]},{"name":"ERR_INVALID_TTO","features":[12]},{"name":"ERR_INVALID_VDMX","features":[12]},{"name":"ERR_INVALID_VHEA","features":[12]},{"name":"ERR_INVALID_VMTX","features":[12]},{"name":"ERR_MEM","features":[12]},{"name":"ERR_MISSING_CMAP","features":[12]},{"name":"ERR_MISSING_EBDT","features":[12]},{"name":"ERR_MISSING_GLYF","features":[12]},{"name":"ERR_MISSING_HEAD","features":[12]},{"name":"ERR_MISSING_HHEA","features":[12]},{"name":"ERR_MISSING_HHEA_OR_VHEA","features":[12]},{"name":"ERR_MISSING_HMTX","features":[12]},{"name":"ERR_MISSING_HMTX_OR_VMTX","features":[12]},{"name":"ERR_MISSING_LOCA","features":[12]},{"name":"ERR_MISSING_MAXP","features":[12]},{"name":"ERR_MISSING_NAME","features":[12]},{"name":"ERR_MISSING_OS2","features":[12]},{"name":"ERR_MISSING_POST","features":[12]},{"name":"ERR_MISSING_VHEA","features":[12]},{"name":"ERR_MISSING_VMTX","features":[12]},{"name":"ERR_NOT_TTC","features":[12]},{"name":"ERR_NO_GLYPHS","features":[12]},{"name":"ERR_PARAMETER0","features":[12]},{"name":"ERR_PARAMETER1","features":[12]},{"name":"ERR_PARAMETER10","features":[12]},{"name":"ERR_PARAMETER11","features":[12]},{"name":"ERR_PARAMETER12","features":[12]},{"name":"ERR_PARAMETER13","features":[12]},{"name":"ERR_PARAMETER14","features":[12]},{"name":"ERR_PARAMETER15","features":[12]},{"name":"ERR_PARAMETER16","features":[12]},{"name":"ERR_PARAMETER2","features":[12]},{"name":"ERR_PARAMETER3","features":[12]},{"name":"ERR_PARAMETER4","features":[12]},{"name":"ERR_PARAMETER5","features":[12]},{"name":"ERR_PARAMETER6","features":[12]},{"name":"ERR_PARAMETER7","features":[12]},{"name":"ERR_PARAMETER8","features":[12]},{"name":"ERR_PARAMETER9","features":[12]},{"name":"ERR_READCONTROL","features":[12]},{"name":"ERR_READOUTOFBOUNDS","features":[12]},{"name":"ERR_VERSION","features":[12]},{"name":"ERR_WOULD_GROW","features":[12]},{"name":"ERR_WRITECONTROL","features":[12]},{"name":"ERR_WRITEOUTOFBOUNDS","features":[12]},{"name":"ETO_CLIPPED","features":[12]},{"name":"ETO_GLYPH_INDEX","features":[12]},{"name":"ETO_IGNORELANGUAGE","features":[12]},{"name":"ETO_NUMERICSLATIN","features":[12]},{"name":"ETO_NUMERICSLOCAL","features":[12]},{"name":"ETO_OPAQUE","features":[12]},{"name":"ETO_OPTIONS","features":[12]},{"name":"ETO_PDY","features":[12]},{"name":"ETO_REVERSE_INDEX_MAP","features":[12]},{"name":"ETO_RTLREADING","features":[12]},{"name":"EXTLOGFONTA","features":[12]},{"name":"EXTLOGFONTW","features":[12]},{"name":"EXTLOGPEN","features":[1,12]},{"name":"EXTLOGPEN32","features":[1,12]},{"name":"EXTTEXTOUT","features":[12]},{"name":"EXT_DEVICE_CAPS","features":[12]},{"name":"EXT_FLOOD_FILL_TYPE","features":[12]},{"name":"E_ADDFONTFAILED","features":[12]},{"name":"E_API_NOTIMPL","features":[12]},{"name":"E_CHARCODECOUNTINVALID","features":[12]},{"name":"E_CHARCODESETINVALID","features":[12]},{"name":"E_CHARSETINVALID","features":[12]},{"name":"E_COULDNTCREATETEMPFILE","features":[12]},{"name":"E_DEVICETRUETYPEFONT","features":[12]},{"name":"E_ERRORACCESSINGEXCLUDELIST","features":[12]},{"name":"E_ERRORACCESSINGFACENAME","features":[12]},{"name":"E_ERRORACCESSINGFONTDATA","features":[12]},{"name":"E_ERRORCOMPRESSINGFONTDATA","features":[12]},{"name":"E_ERRORCONVERTINGCHARS","features":[12]},{"name":"E_ERRORCREATINGFONTFILE","features":[12]},{"name":"E_ERRORDECOMPRESSINGFONTDATA","features":[12]},{"name":"E_ERROREXPANDINGFONTDATA","features":[12]},{"name":"E_ERRORGETTINGDC","features":[12]},{"name":"E_ERRORREADINGFONTDATA","features":[12]},{"name":"E_ERRORUNICODECONVERSION","features":[12]},{"name":"E_EXCEPTION","features":[12]},{"name":"E_EXCEPTIONINCOMPRESSION","features":[12]},{"name":"E_EXCEPTIONINDECOMPRESSION","features":[12]},{"name":"E_FACENAMEINVALID","features":[12]},{"name":"E_FILE_NOT_FOUND","features":[12]},{"name":"E_FLAGSINVALID","features":[12]},{"name":"E_FONTALREADYEXISTS","features":[12]},{"name":"E_FONTDATAINVALID","features":[12]},{"name":"E_FONTFAMILYNAMENOTINFULL","features":[12]},{"name":"E_FONTFILECREATEFAILED","features":[12]},{"name":"E_FONTFILENOTFOUND","features":[12]},{"name":"E_FONTINSTALLFAILED","features":[12]},{"name":"E_FONTNAMEALREADYEXISTS","features":[12]},{"name":"E_FONTNOTEMBEDDABLE","features":[12]},{"name":"E_FONTREFERENCEINVALID","features":[12]},{"name":"E_FONTVARIATIONSIMULATED","features":[12]},{"name":"E_HDCINVALID","features":[12]},{"name":"E_INPUTPARAMINVALID","features":[12]},{"name":"E_NAMECHANGEFAILED","features":[12]},{"name":"E_NOFREEMEMORY","features":[12]},{"name":"E_NONE","features":[12]},{"name":"E_NOOS2","features":[12]},{"name":"E_NOTATRUETYPEFONT","features":[12]},{"name":"E_PBENABLEDINVALID","features":[12]},{"name":"E_PERMISSIONSINVALID","features":[12]},{"name":"E_PRIVSINVALID","features":[12]},{"name":"E_PRIVSTATUSINVALID","features":[12]},{"name":"E_READFROMSTREAMFAILED","features":[12]},{"name":"E_RESERVEDPARAMNOTNULL","features":[12]},{"name":"E_RESOURCEFILECREATEFAILED","features":[12]},{"name":"E_SAVETOSTREAMFAILED","features":[12]},{"name":"E_STATUSINVALID","features":[12]},{"name":"E_STREAMINVALID","features":[12]},{"name":"E_SUBSETTINGEXCEPTION","features":[12]},{"name":"E_SUBSETTINGFAILED","features":[12]},{"name":"E_SUBSTRING_TEST_FAIL","features":[12]},{"name":"E_T2NOFREEMEMORY","features":[12]},{"name":"E_TTC_INDEX_OUT_OF_RANGE","features":[12]},{"name":"E_WINDOWSAPI","features":[12]},{"name":"Ellipse","features":[1,12]},{"name":"EndPaint","features":[1,12]},{"name":"EndPath","features":[1,12]},{"name":"EnumDisplayDevicesA","features":[1,12]},{"name":"EnumDisplayDevicesW","features":[1,12]},{"name":"EnumDisplayMonitors","features":[1,12]},{"name":"EnumDisplaySettingsA","features":[1,12]},{"name":"EnumDisplaySettingsExA","features":[1,12]},{"name":"EnumDisplaySettingsExW","features":[1,12]},{"name":"EnumDisplaySettingsW","features":[1,12]},{"name":"EnumEnhMetaFile","features":[1,12]},{"name":"EnumFontFamiliesA","features":[1,12]},{"name":"EnumFontFamiliesExA","features":[1,12]},{"name":"EnumFontFamiliesExW","features":[1,12]},{"name":"EnumFontFamiliesW","features":[1,12]},{"name":"EnumFontsA","features":[1,12]},{"name":"EnumFontsW","features":[1,12]},{"name":"EnumMetaFile","features":[1,12]},{"name":"EnumObjects","features":[1,12]},{"name":"EqualRect","features":[1,12]},{"name":"EqualRgn","features":[1,12]},{"name":"ExcludeClipRect","features":[12]},{"name":"ExcludeUpdateRgn","features":[1,12]},{"name":"ExtCreatePen","features":[1,12]},{"name":"ExtCreateRegion","features":[1,12]},{"name":"ExtFloodFill","features":[1,12]},{"name":"ExtSelectClipRgn","features":[12]},{"name":"ExtTextOutA","features":[1,12]},{"name":"ExtTextOutW","features":[1,12]},{"name":"FEATURESETTING_CUSTPAPER","features":[12]},{"name":"FEATURESETTING_MIRROR","features":[12]},{"name":"FEATURESETTING_NEGATIVE","features":[12]},{"name":"FEATURESETTING_NUP","features":[12]},{"name":"FEATURESETTING_OUTPUT","features":[12]},{"name":"FEATURESETTING_PRIVATE_BEGIN","features":[12]},{"name":"FEATURESETTING_PRIVATE_END","features":[12]},{"name":"FEATURESETTING_PROTOCOL","features":[12]},{"name":"FEATURESETTING_PSLEVEL","features":[12]},{"name":"FF_DECORATIVE","features":[12]},{"name":"FF_DONTCARE","features":[12]},{"name":"FF_MODERN","features":[12]},{"name":"FF_ROMAN","features":[12]},{"name":"FF_SCRIPT","features":[12]},{"name":"FF_SWISS","features":[12]},{"name":"FIXED","features":[12]},{"name":"FIXED_PITCH","features":[12]},{"name":"FLI_GLYPHS","features":[12]},{"name":"FLI_MASK","features":[12]},{"name":"FLOODFILLBORDER","features":[12]},{"name":"FLOODFILLSURFACE","features":[12]},{"name":"FLUSHOUTPUT","features":[12]},{"name":"FONTENUMPROCA","features":[1,12]},{"name":"FONTENUMPROCW","features":[1,12]},{"name":"FONTMAPPER_MAX","features":[12]},{"name":"FONT_CHARSET","features":[12]},{"name":"FONT_CLIP_PRECISION","features":[12]},{"name":"FONT_FAMILY","features":[12]},{"name":"FONT_LICENSE_PRIVS","features":[12]},{"name":"FONT_OUTPUT_PRECISION","features":[12]},{"name":"FONT_PITCH","features":[12]},{"name":"FONT_QUALITY","features":[12]},{"name":"FONT_RESOURCE_CHARACTERISTICS","features":[12]},{"name":"FONT_WEIGHT","features":[12]},{"name":"FR_NOT_ENUM","features":[12]},{"name":"FR_PRIVATE","features":[12]},{"name":"FS_ARABIC","features":[12]},{"name":"FS_BALTIC","features":[12]},{"name":"FS_CHINESESIMP","features":[12]},{"name":"FS_CHINESETRAD","features":[12]},{"name":"FS_CYRILLIC","features":[12]},{"name":"FS_GREEK","features":[12]},{"name":"FS_HEBREW","features":[12]},{"name":"FS_JISJAPAN","features":[12]},{"name":"FS_JOHAB","features":[12]},{"name":"FS_LATIN1","features":[12]},{"name":"FS_LATIN2","features":[12]},{"name":"FS_SYMBOL","features":[12]},{"name":"FS_THAI","features":[12]},{"name":"FS_TURKISH","features":[12]},{"name":"FS_VIETNAMESE","features":[12]},{"name":"FS_WANSUNG","features":[12]},{"name":"FW_BLACK","features":[12]},{"name":"FW_BOLD","features":[12]},{"name":"FW_DEMIBOLD","features":[12]},{"name":"FW_DONTCARE","features":[12]},{"name":"FW_EXTRABOLD","features":[12]},{"name":"FW_EXTRALIGHT","features":[12]},{"name":"FW_HEAVY","features":[12]},{"name":"FW_LIGHT","features":[12]},{"name":"FW_MEDIUM","features":[12]},{"name":"FW_NORMAL","features":[12]},{"name":"FW_REGULAR","features":[12]},{"name":"FW_SEMIBOLD","features":[12]},{"name":"FW_THIN","features":[12]},{"name":"FW_ULTRABOLD","features":[12]},{"name":"FW_ULTRALIGHT","features":[12]},{"name":"FillPath","features":[1,12]},{"name":"FillRect","features":[1,12]},{"name":"FillRgn","features":[1,12]},{"name":"FixBrushOrgEx","features":[1,12]},{"name":"FlattenPath","features":[1,12]},{"name":"FloodFill","features":[1,12]},{"name":"FrameRect","features":[1,12]},{"name":"FrameRgn","features":[1,12]},{"name":"GB2312_CHARSET","features":[12]},{"name":"GCPCLASS_ARABIC","features":[12]},{"name":"GCPCLASS_HEBREW","features":[12]},{"name":"GCPCLASS_LATIN","features":[12]},{"name":"GCPCLASS_LATINNUMBER","features":[12]},{"name":"GCPCLASS_LATINNUMERICSEPARATOR","features":[12]},{"name":"GCPCLASS_LATINNUMERICTERMINATOR","features":[12]},{"name":"GCPCLASS_LOCALNUMBER","features":[12]},{"name":"GCPCLASS_NEUTRAL","features":[12]},{"name":"GCPCLASS_NUMERICSEPARATOR","features":[12]},{"name":"GCPCLASS_POSTBOUNDLTR","features":[12]},{"name":"GCPCLASS_POSTBOUNDRTL","features":[12]},{"name":"GCPCLASS_PREBOUNDLTR","features":[12]},{"name":"GCPCLASS_PREBOUNDRTL","features":[12]},{"name":"GCPGLYPH_LINKAFTER","features":[12]},{"name":"GCPGLYPH_LINKBEFORE","features":[12]},{"name":"GCP_CLASSIN","features":[12]},{"name":"GCP_DBCS","features":[12]},{"name":"GCP_DIACRITIC","features":[12]},{"name":"GCP_DISPLAYZWG","features":[12]},{"name":"GCP_ERROR","features":[12]},{"name":"GCP_GLYPHSHAPE","features":[12]},{"name":"GCP_JUSTIFY","features":[12]},{"name":"GCP_JUSTIFYIN","features":[12]},{"name":"GCP_KASHIDA","features":[12]},{"name":"GCP_LIGATE","features":[12]},{"name":"GCP_MAXEXTENT","features":[12]},{"name":"GCP_NEUTRALOVERRIDE","features":[12]},{"name":"GCP_NUMERICOVERRIDE","features":[12]},{"name":"GCP_NUMERICSLATIN","features":[12]},{"name":"GCP_NUMERICSLOCAL","features":[12]},{"name":"GCP_REORDER","features":[12]},{"name":"GCP_RESULTSA","features":[12]},{"name":"GCP_RESULTSW","features":[12]},{"name":"GCP_SYMSWAPOFF","features":[12]},{"name":"GCP_USEKERNING","features":[12]},{"name":"GDICOMMENT_BEGINGROUP","features":[12]},{"name":"GDICOMMENT_ENDGROUP","features":[12]},{"name":"GDICOMMENT_IDENTIFIER","features":[12]},{"name":"GDICOMMENT_MULTIFORMATS","features":[12]},{"name":"GDICOMMENT_UNICODE_END","features":[12]},{"name":"GDICOMMENT_UNICODE_STRING","features":[12]},{"name":"GDICOMMENT_WINDOWS_METAFILE","features":[12]},{"name":"GDIPLUS_TS_QUERYVER","features":[12]},{"name":"GDIPLUS_TS_RECORD","features":[12]},{"name":"GDIREGISTERDDRAWPACKETVERSION","features":[12]},{"name":"GDI_ERROR","features":[12]},{"name":"GDI_REGION_TYPE","features":[12]},{"name":"GETCOLORTABLE","features":[12]},{"name":"GETDEVICEUNITS","features":[12]},{"name":"GETEXTENDEDTEXTMETRICS","features":[12]},{"name":"GETEXTENTTABLE","features":[12]},{"name":"GETFACENAME","features":[12]},{"name":"GETPAIRKERNTABLE","features":[12]},{"name":"GETPENWIDTH","features":[12]},{"name":"GETPHYSPAGESIZE","features":[12]},{"name":"GETPRINTINGOFFSET","features":[12]},{"name":"GETSCALINGFACTOR","features":[12]},{"name":"GETSETPAPERBINS","features":[12]},{"name":"GETSETPAPERMETRICS","features":[12]},{"name":"GETSETPRINTORIENT","features":[12]},{"name":"GETSETSCREENPARAMS","features":[12]},{"name":"GETTECHNOLGY","features":[12]},{"name":"GETTECHNOLOGY","features":[12]},{"name":"GETTRACKKERNTABLE","features":[12]},{"name":"GETVECTORBRUSHSIZE","features":[12]},{"name":"GETVECTORPENSIZE","features":[12]},{"name":"GET_CHARACTER_PLACEMENT_FLAGS","features":[12]},{"name":"GET_DCX_FLAGS","features":[12]},{"name":"GET_DEVICE_CAPS_INDEX","features":[12]},{"name":"GET_GLYPH_OUTLINE_FORMAT","features":[12]},{"name":"GET_PS_FEATURESETTING","features":[12]},{"name":"GET_STOCK_OBJECT_FLAGS","features":[12]},{"name":"GGI_MARK_NONEXISTING_GLYPHS","features":[12]},{"name":"GGO_BEZIER","features":[12]},{"name":"GGO_BITMAP","features":[12]},{"name":"GGO_GLYPH_INDEX","features":[12]},{"name":"GGO_GRAY2_BITMAP","features":[12]},{"name":"GGO_GRAY4_BITMAP","features":[12]},{"name":"GGO_GRAY8_BITMAP","features":[12]},{"name":"GGO_METRICS","features":[12]},{"name":"GGO_NATIVE","features":[12]},{"name":"GGO_UNHINTED","features":[12]},{"name":"GLYPHMETRICS","features":[1,12]},{"name":"GLYPHSET","features":[12]},{"name":"GM_ADVANCED","features":[12]},{"name":"GM_COMPATIBLE","features":[12]},{"name":"GM_LAST","features":[12]},{"name":"GOBJENUMPROC","features":[1,12]},{"name":"GRADIENT_FILL","features":[12]},{"name":"GRADIENT_FILL_OP_FLAG","features":[12]},{"name":"GRADIENT_FILL_RECT_H","features":[12]},{"name":"GRADIENT_FILL_RECT_V","features":[12]},{"name":"GRADIENT_FILL_TRIANGLE","features":[12]},{"name":"GRADIENT_RECT","features":[12]},{"name":"GRADIENT_TRIANGLE","features":[12]},{"name":"GRAPHICS_MODE","features":[12]},{"name":"GRAYSTRINGPROC","features":[1,12]},{"name":"GRAY_BRUSH","features":[12]},{"name":"GREEK_CHARSET","features":[12]},{"name":"GS_8BIT_INDICES","features":[12]},{"name":"GdiAlphaBlend","features":[1,12]},{"name":"GdiComment","features":[1,12]},{"name":"GdiFlush","features":[1,12]},{"name":"GdiGetBatchLimit","features":[12]},{"name":"GdiGradientFill","features":[1,12]},{"name":"GdiSetBatchLimit","features":[12]},{"name":"GdiTransparentBlt","features":[1,12]},{"name":"GetArcDirection","features":[12]},{"name":"GetAspectRatioFilterEx","features":[1,12]},{"name":"GetBitmapBits","features":[12]},{"name":"GetBitmapDimensionEx","features":[1,12]},{"name":"GetBkColor","features":[1,12]},{"name":"GetBkMode","features":[12]},{"name":"GetBoundsRect","features":[1,12]},{"name":"GetBrushOrgEx","features":[1,12]},{"name":"GetCharABCWidthsA","features":[1,12]},{"name":"GetCharABCWidthsFloatA","features":[1,12]},{"name":"GetCharABCWidthsFloatW","features":[1,12]},{"name":"GetCharABCWidthsI","features":[1,12]},{"name":"GetCharABCWidthsW","features":[1,12]},{"name":"GetCharWidth32A","features":[1,12]},{"name":"GetCharWidth32W","features":[1,12]},{"name":"GetCharWidthA","features":[1,12]},{"name":"GetCharWidthFloatA","features":[1,12]},{"name":"GetCharWidthFloatW","features":[1,12]},{"name":"GetCharWidthI","features":[1,12]},{"name":"GetCharWidthW","features":[1,12]},{"name":"GetCharacterPlacementA","features":[12]},{"name":"GetCharacterPlacementW","features":[12]},{"name":"GetClipBox","features":[1,12]},{"name":"GetClipRgn","features":[12]},{"name":"GetColorAdjustment","features":[1,12]},{"name":"GetCurrentObject","features":[12]},{"name":"GetCurrentPositionEx","features":[1,12]},{"name":"GetDC","features":[1,12]},{"name":"GetDCBrushColor","features":[1,12]},{"name":"GetDCEx","features":[1,12]},{"name":"GetDCOrgEx","features":[1,12]},{"name":"GetDCPenColor","features":[1,12]},{"name":"GetDIBColorTable","features":[12]},{"name":"GetDIBits","features":[12]},{"name":"GetDeviceCaps","features":[12]},{"name":"GetEnhMetaFileA","features":[12]},{"name":"GetEnhMetaFileBits","features":[12]},{"name":"GetEnhMetaFileDescriptionA","features":[12]},{"name":"GetEnhMetaFileDescriptionW","features":[12]},{"name":"GetEnhMetaFileHeader","features":[1,12]},{"name":"GetEnhMetaFilePaletteEntries","features":[12]},{"name":"GetEnhMetaFileW","features":[12]},{"name":"GetFontData","features":[12]},{"name":"GetFontLanguageInfo","features":[12]},{"name":"GetFontUnicodeRanges","features":[12]},{"name":"GetGlyphIndicesA","features":[12]},{"name":"GetGlyphIndicesW","features":[12]},{"name":"GetGlyphOutlineA","features":[1,12]},{"name":"GetGlyphOutlineW","features":[1,12]},{"name":"GetGraphicsMode","features":[12]},{"name":"GetKerningPairsA","features":[12]},{"name":"GetKerningPairsW","features":[12]},{"name":"GetLayout","features":[12]},{"name":"GetMapMode","features":[12]},{"name":"GetMetaFileA","features":[12]},{"name":"GetMetaFileBitsEx","features":[12]},{"name":"GetMetaFileW","features":[12]},{"name":"GetMetaRgn","features":[12]},{"name":"GetMiterLimit","features":[1,12]},{"name":"GetMonitorInfoA","features":[1,12]},{"name":"GetMonitorInfoW","features":[1,12]},{"name":"GetNearestColor","features":[1,12]},{"name":"GetNearestPaletteIndex","features":[1,12]},{"name":"GetObjectA","features":[12]},{"name":"GetObjectType","features":[12]},{"name":"GetObjectW","features":[12]},{"name":"GetOutlineTextMetricsA","features":[1,12]},{"name":"GetOutlineTextMetricsW","features":[1,12]},{"name":"GetPaletteEntries","features":[12]},{"name":"GetPath","features":[1,12]},{"name":"GetPixel","features":[1,12]},{"name":"GetPolyFillMode","features":[12]},{"name":"GetROP2","features":[12]},{"name":"GetRandomRgn","features":[12]},{"name":"GetRasterizerCaps","features":[1,12]},{"name":"GetRegionData","features":[1,12]},{"name":"GetRgnBox","features":[1,12]},{"name":"GetStockObject","features":[12]},{"name":"GetStretchBltMode","features":[12]},{"name":"GetSysColor","features":[12]},{"name":"GetSysColorBrush","features":[12]},{"name":"GetSystemPaletteEntries","features":[12]},{"name":"GetSystemPaletteUse","features":[12]},{"name":"GetTabbedTextExtentA","features":[12]},{"name":"GetTabbedTextExtentW","features":[12]},{"name":"GetTextAlign","features":[12]},{"name":"GetTextCharacterExtra","features":[12]},{"name":"GetTextColor","features":[1,12]},{"name":"GetTextExtentExPointA","features":[1,12]},{"name":"GetTextExtentExPointI","features":[1,12]},{"name":"GetTextExtentExPointW","features":[1,12]},{"name":"GetTextExtentPoint32A","features":[1,12]},{"name":"GetTextExtentPoint32W","features":[1,12]},{"name":"GetTextExtentPointA","features":[1,12]},{"name":"GetTextExtentPointI","features":[1,12]},{"name":"GetTextExtentPointW","features":[1,12]},{"name":"GetTextFaceA","features":[12]},{"name":"GetTextFaceW","features":[12]},{"name":"GetTextMetricsA","features":[1,12]},{"name":"GetTextMetricsW","features":[1,12]},{"name":"GetUpdateRect","features":[1,12]},{"name":"GetUpdateRgn","features":[1,12]},{"name":"GetViewportExtEx","features":[1,12]},{"name":"GetViewportOrgEx","features":[1,12]},{"name":"GetWinMetaFileBits","features":[12]},{"name":"GetWindowDC","features":[1,12]},{"name":"GetWindowExtEx","features":[1,12]},{"name":"GetWindowOrgEx","features":[1,12]},{"name":"GetWindowRgn","features":[1,12]},{"name":"GetWindowRgnBox","features":[1,12]},{"name":"GetWorldTransform","features":[1,12]},{"name":"GradientFill","features":[1,12]},{"name":"GrayStringA","features":[1,12]},{"name":"GrayStringW","features":[1,12]},{"name":"HALFTONE","features":[12]},{"name":"HANDLETABLE","features":[12]},{"name":"HANGEUL_CHARSET","features":[12]},{"name":"HANGUL_CHARSET","features":[12]},{"name":"HATCH_BRUSH_STYLE","features":[12]},{"name":"HBITMAP","features":[12]},{"name":"HBRUSH","features":[12]},{"name":"HDC","features":[12]},{"name":"HDC_MAP_MODE","features":[12]},{"name":"HEBREW_CHARSET","features":[12]},{"name":"HENHMETAFILE","features":[12]},{"name":"HFONT","features":[12]},{"name":"HGDIOBJ","features":[12]},{"name":"HMETAFILE","features":[12]},{"name":"HMONITOR","features":[12]},{"name":"HOLLOW_BRUSH","features":[12]},{"name":"HORZRES","features":[12]},{"name":"HORZSIZE","features":[12]},{"name":"HPALETTE","features":[12]},{"name":"HPEN","features":[12]},{"name":"HRGN","features":[12]},{"name":"HS_API_MAX","features":[12]},{"name":"HS_BDIAGONAL","features":[12]},{"name":"HS_CROSS","features":[12]},{"name":"HS_DIAGCROSS","features":[12]},{"name":"HS_FDIAGONAL","features":[12]},{"name":"HS_HORIZONTAL","features":[12]},{"name":"HS_VERTICAL","features":[12]},{"name":"ILLUMINANT_A","features":[12]},{"name":"ILLUMINANT_B","features":[12]},{"name":"ILLUMINANT_C","features":[12]},{"name":"ILLUMINANT_D50","features":[12]},{"name":"ILLUMINANT_D55","features":[12]},{"name":"ILLUMINANT_D65","features":[12]},{"name":"ILLUMINANT_D75","features":[12]},{"name":"ILLUMINANT_DAYLIGHT","features":[12]},{"name":"ILLUMINANT_DEVICE_DEFAULT","features":[12]},{"name":"ILLUMINANT_F2","features":[12]},{"name":"ILLUMINANT_FLUORESCENT","features":[12]},{"name":"ILLUMINANT_MAX_INDEX","features":[12]},{"name":"ILLUMINANT_NTSC","features":[12]},{"name":"ILLUMINANT_TUNGSTEN","features":[12]},{"name":"InflateRect","features":[1,12]},{"name":"IntersectClipRect","features":[12]},{"name":"IntersectRect","features":[1,12]},{"name":"InvalidateRect","features":[1,12]},{"name":"InvalidateRgn","features":[1,12]},{"name":"InvertRect","features":[1,12]},{"name":"InvertRgn","features":[1,12]},{"name":"IsRectEmpty","features":[1,12]},{"name":"JOHAB_CHARSET","features":[12]},{"name":"KERNINGPAIR","features":[12]},{"name":"LAYOUT_BITMAPORIENTATIONPRESERVED","features":[12]},{"name":"LAYOUT_BTT","features":[12]},{"name":"LAYOUT_RTL","features":[12]},{"name":"LAYOUT_VBH","features":[12]},{"name":"LCS_GM_ABS_COLORIMETRIC","features":[12]},{"name":"LCS_GM_BUSINESS","features":[12]},{"name":"LCS_GM_GRAPHICS","features":[12]},{"name":"LCS_GM_IMAGES","features":[12]},{"name":"LC_INTERIORS","features":[12]},{"name":"LC_MARKER","features":[12]},{"name":"LC_NONE","features":[12]},{"name":"LC_POLYLINE","features":[12]},{"name":"LC_POLYMARKER","features":[12]},{"name":"LC_STYLED","features":[12]},{"name":"LC_WIDE","features":[12]},{"name":"LC_WIDESTYLED","features":[12]},{"name":"LF_FACESIZE","features":[12]},{"name":"LF_FULLFACESIZE","features":[12]},{"name":"LICENSE_DEFAULT","features":[12]},{"name":"LICENSE_EDITABLE","features":[12]},{"name":"LICENSE_INSTALLABLE","features":[12]},{"name":"LICENSE_NOEMBEDDING","features":[12]},{"name":"LICENSE_PREVIEWPRINT","features":[12]},{"name":"LINECAPS","features":[12]},{"name":"LINEDDAPROC","features":[1,12]},{"name":"LOGBRUSH","features":[1,12]},{"name":"LOGBRUSH32","features":[1,12]},{"name":"LOGFONTA","features":[12]},{"name":"LOGFONTW","features":[12]},{"name":"LOGPALETTE","features":[12]},{"name":"LOGPEN","features":[1,12]},{"name":"LOGPIXELSX","features":[12]},{"name":"LOGPIXELSY","features":[12]},{"name":"LPD_DOUBLEBUFFER","features":[12]},{"name":"LPD_SHARE_ACCUM","features":[12]},{"name":"LPD_SHARE_DEPTH","features":[12]},{"name":"LPD_SHARE_STENCIL","features":[12]},{"name":"LPD_STEREO","features":[12]},{"name":"LPD_SUPPORT_GDI","features":[12]},{"name":"LPD_SUPPORT_OPENGL","features":[12]},{"name":"LPD_SWAP_COPY","features":[12]},{"name":"LPD_SWAP_EXCHANGE","features":[12]},{"name":"LPD_TRANSPARENT","features":[12]},{"name":"LPD_TYPE_COLORINDEX","features":[12]},{"name":"LPD_TYPE_RGBA","features":[12]},{"name":"LPFNDEVCAPS","features":[1,12]},{"name":"LPFNDEVMODE","features":[1,12]},{"name":"LPtoDP","features":[1,12]},{"name":"LTGRAY_BRUSH","features":[12]},{"name":"LineDDA","features":[1,12]},{"name":"LineTo","features":[1,12]},{"name":"LoadBitmapA","features":[1,12]},{"name":"LoadBitmapW","features":[1,12]},{"name":"LockWindowUpdate","features":[1,12]},{"name":"MAC_CHARSET","features":[12]},{"name":"MAT2","features":[12]},{"name":"MAXSTRETCHBLTMODE","features":[12]},{"name":"MERGECOPY","features":[12]},{"name":"MERGEPAINT","features":[12]},{"name":"METAFILE_DRIVER","features":[12]},{"name":"METAHEADER","features":[12]},{"name":"METARECORD","features":[12]},{"name":"META_ANIMATEPALETTE","features":[12]},{"name":"META_ARC","features":[12]},{"name":"META_BITBLT","features":[12]},{"name":"META_CHORD","features":[12]},{"name":"META_CREATEBRUSHINDIRECT","features":[12]},{"name":"META_CREATEFONTINDIRECT","features":[12]},{"name":"META_CREATEPALETTE","features":[12]},{"name":"META_CREATEPATTERNBRUSH","features":[12]},{"name":"META_CREATEPENINDIRECT","features":[12]},{"name":"META_CREATEREGION","features":[12]},{"name":"META_DELETEOBJECT","features":[12]},{"name":"META_DIBBITBLT","features":[12]},{"name":"META_DIBCREATEPATTERNBRUSH","features":[12]},{"name":"META_DIBSTRETCHBLT","features":[12]},{"name":"META_ELLIPSE","features":[12]},{"name":"META_ESCAPE","features":[12]},{"name":"META_EXCLUDECLIPRECT","features":[12]},{"name":"META_EXTFLOODFILL","features":[12]},{"name":"META_EXTTEXTOUT","features":[12]},{"name":"META_FILLREGION","features":[12]},{"name":"META_FLOODFILL","features":[12]},{"name":"META_FRAMEREGION","features":[12]},{"name":"META_INTERSECTCLIPRECT","features":[12]},{"name":"META_INVERTREGION","features":[12]},{"name":"META_LINETO","features":[12]},{"name":"META_MOVETO","features":[12]},{"name":"META_OFFSETCLIPRGN","features":[12]},{"name":"META_OFFSETVIEWPORTORG","features":[12]},{"name":"META_OFFSETWINDOWORG","features":[12]},{"name":"META_PAINTREGION","features":[12]},{"name":"META_PATBLT","features":[12]},{"name":"META_PIE","features":[12]},{"name":"META_POLYGON","features":[12]},{"name":"META_POLYLINE","features":[12]},{"name":"META_POLYPOLYGON","features":[12]},{"name":"META_REALIZEPALETTE","features":[12]},{"name":"META_RECTANGLE","features":[12]},{"name":"META_RESIZEPALETTE","features":[12]},{"name":"META_RESTOREDC","features":[12]},{"name":"META_ROUNDRECT","features":[12]},{"name":"META_SAVEDC","features":[12]},{"name":"META_SCALEVIEWPORTEXT","features":[12]},{"name":"META_SCALEWINDOWEXT","features":[12]},{"name":"META_SELECTCLIPREGION","features":[12]},{"name":"META_SELECTOBJECT","features":[12]},{"name":"META_SELECTPALETTE","features":[12]},{"name":"META_SETBKCOLOR","features":[12]},{"name":"META_SETBKMODE","features":[12]},{"name":"META_SETDIBTODEV","features":[12]},{"name":"META_SETLAYOUT","features":[12]},{"name":"META_SETMAPMODE","features":[12]},{"name":"META_SETMAPPERFLAGS","features":[12]},{"name":"META_SETPALENTRIES","features":[12]},{"name":"META_SETPIXEL","features":[12]},{"name":"META_SETPOLYFILLMODE","features":[12]},{"name":"META_SETRELABS","features":[12]},{"name":"META_SETROP2","features":[12]},{"name":"META_SETSTRETCHBLTMODE","features":[12]},{"name":"META_SETTEXTALIGN","features":[12]},{"name":"META_SETTEXTCHAREXTRA","features":[12]},{"name":"META_SETTEXTCOLOR","features":[12]},{"name":"META_SETTEXTJUSTIFICATION","features":[12]},{"name":"META_SETVIEWPORTEXT","features":[12]},{"name":"META_SETVIEWPORTORG","features":[12]},{"name":"META_SETWINDOWEXT","features":[12]},{"name":"META_SETWINDOWORG","features":[12]},{"name":"META_STRETCHBLT","features":[12]},{"name":"META_STRETCHDIB","features":[12]},{"name":"META_TEXTOUT","features":[12]},{"name":"MFCOMMENT","features":[12]},{"name":"MFENUMPROC","features":[1,12]},{"name":"MILCORE_TS_QUERYVER_RESULT_FALSE","features":[12]},{"name":"MILCORE_TS_QUERYVER_RESULT_TRUE","features":[12]},{"name":"MM_ANISOTROPIC","features":[12]},{"name":"MM_HIENGLISH","features":[12]},{"name":"MM_HIMETRIC","features":[12]},{"name":"MM_ISOTROPIC","features":[12]},{"name":"MM_LOENGLISH","features":[12]},{"name":"MM_LOMETRIC","features":[12]},{"name":"MM_MAX_AXES_NAMELEN","features":[12]},{"name":"MM_MAX_NUMAXES","features":[12]},{"name":"MM_TEXT","features":[12]},{"name":"MM_TWIPS","features":[12]},{"name":"MODIFY_WORLD_TRANSFORM_MODE","features":[12]},{"name":"MONITORENUMPROC","features":[1,12]},{"name":"MONITORINFO","features":[1,12]},{"name":"MONITORINFOEXA","features":[1,12]},{"name":"MONITORINFOEXW","features":[1,12]},{"name":"MONITOR_DEFAULTTONEAREST","features":[12]},{"name":"MONITOR_DEFAULTTONULL","features":[12]},{"name":"MONITOR_DEFAULTTOPRIMARY","features":[12]},{"name":"MONITOR_FROM_FLAGS","features":[12]},{"name":"MONO_FONT","features":[12]},{"name":"MOUSETRAILS","features":[12]},{"name":"MWT_IDENTITY","features":[12]},{"name":"MWT_LEFTMULTIPLY","features":[12]},{"name":"MWT_RIGHTMULTIPLY","features":[12]},{"name":"MapWindowPoints","features":[1,12]},{"name":"MaskBlt","features":[1,12]},{"name":"MergeFontPackage","features":[12]},{"name":"ModifyWorldTransform","features":[1,12]},{"name":"MonitorFromPoint","features":[1,12]},{"name":"MonitorFromRect","features":[1,12]},{"name":"MonitorFromWindow","features":[1,12]},{"name":"MoveToEx","features":[1,12]},{"name":"NEWFRAME","features":[12]},{"name":"NEWTEXTMETRICA","features":[12]},{"name":"NEWTEXTMETRICW","features":[12]},{"name":"NEWTRANSPARENT","features":[12]},{"name":"NEXTBAND","features":[12]},{"name":"NOMIRRORBITMAP","features":[12]},{"name":"NONANTIALIASED_QUALITY","features":[12]},{"name":"NOTSRCCOPY","features":[12]},{"name":"NOTSRCERASE","features":[12]},{"name":"NTM_BOLD","features":[12]},{"name":"NTM_DSIG","features":[12]},{"name":"NTM_ITALIC","features":[12]},{"name":"NTM_MULTIPLEMASTER","features":[12]},{"name":"NTM_NONNEGATIVE_AC","features":[12]},{"name":"NTM_PS_OPENTYPE","features":[12]},{"name":"NTM_REGULAR","features":[12]},{"name":"NTM_TT_OPENTYPE","features":[12]},{"name":"NTM_TYPE1","features":[12]},{"name":"NULLREGION","features":[12]},{"name":"NULL_BRUSH","features":[12]},{"name":"NULL_PEN","features":[12]},{"name":"NUMBRUSHES","features":[12]},{"name":"NUMCOLORS","features":[12]},{"name":"NUMFONTS","features":[12]},{"name":"NUMMARKERS","features":[12]},{"name":"NUMPENS","features":[12]},{"name":"NUMRESERVED","features":[12]},{"name":"OBJ_BITMAP","features":[12]},{"name":"OBJ_BRUSH","features":[12]},{"name":"OBJ_COLORSPACE","features":[12]},{"name":"OBJ_DC","features":[12]},{"name":"OBJ_ENHMETADC","features":[12]},{"name":"OBJ_ENHMETAFILE","features":[12]},{"name":"OBJ_EXTPEN","features":[12]},{"name":"OBJ_FONT","features":[12]},{"name":"OBJ_MEMDC","features":[12]},{"name":"OBJ_METADC","features":[12]},{"name":"OBJ_METAFILE","features":[12]},{"name":"OBJ_PAL","features":[12]},{"name":"OBJ_PEN","features":[12]},{"name":"OBJ_REGION","features":[12]},{"name":"OBJ_TYPE","features":[12]},{"name":"OEM_CHARSET","features":[12]},{"name":"OEM_FIXED_FONT","features":[12]},{"name":"OPAQUE","features":[12]},{"name":"OPENCHANNEL","features":[12]},{"name":"OUTLINETEXTMETRICA","features":[1,12]},{"name":"OUTLINETEXTMETRICW","features":[1,12]},{"name":"OUT_CHARACTER_PRECIS","features":[12]},{"name":"OUT_DEFAULT_PRECIS","features":[12]},{"name":"OUT_DEVICE_PRECIS","features":[12]},{"name":"OUT_OUTLINE_PRECIS","features":[12]},{"name":"OUT_PS_ONLY_PRECIS","features":[12]},{"name":"OUT_RASTER_PRECIS","features":[12]},{"name":"OUT_SCREEN_OUTLINE_PRECIS","features":[12]},{"name":"OUT_STRING_PRECIS","features":[12]},{"name":"OUT_STROKE_PRECIS","features":[12]},{"name":"OUT_TT_ONLY_PRECIS","features":[12]},{"name":"OUT_TT_PRECIS","features":[12]},{"name":"OffsetClipRgn","features":[12]},{"name":"OffsetRect","features":[1,12]},{"name":"OffsetRgn","features":[12]},{"name":"OffsetViewportOrgEx","features":[1,12]},{"name":"OffsetWindowOrgEx","features":[1,12]},{"name":"PAINTSTRUCT","features":[1,12]},{"name":"PALETTEENTRY","features":[12]},{"name":"PANOSE","features":[12]},{"name":"PANOSE_COUNT","features":[12]},{"name":"PAN_ANY","features":[12]},{"name":"PAN_ARMSTYLE_INDEX","features":[12]},{"name":"PAN_ARM_ANY","features":[12]},{"name":"PAN_ARM_NO_FIT","features":[12]},{"name":"PAN_ARM_STYLE","features":[12]},{"name":"PAN_BENT_ARMS_DOUBLE_SERIF","features":[12]},{"name":"PAN_BENT_ARMS_HORZ","features":[12]},{"name":"PAN_BENT_ARMS_SINGLE_SERIF","features":[12]},{"name":"PAN_BENT_ARMS_VERT","features":[12]},{"name":"PAN_BENT_ARMS_WEDGE","features":[12]},{"name":"PAN_CONTRAST","features":[12]},{"name":"PAN_CONTRAST_ANY","features":[12]},{"name":"PAN_CONTRAST_HIGH","features":[12]},{"name":"PAN_CONTRAST_INDEX","features":[12]},{"name":"PAN_CONTRAST_LOW","features":[12]},{"name":"PAN_CONTRAST_MEDIUM","features":[12]},{"name":"PAN_CONTRAST_MEDIUM_HIGH","features":[12]},{"name":"PAN_CONTRAST_MEDIUM_LOW","features":[12]},{"name":"PAN_CONTRAST_NONE","features":[12]},{"name":"PAN_CONTRAST_NO_FIT","features":[12]},{"name":"PAN_CONTRAST_VERY_HIGH","features":[12]},{"name":"PAN_CONTRAST_VERY_LOW","features":[12]},{"name":"PAN_CULTURE_LATIN","features":[12]},{"name":"PAN_FAMILYTYPE_INDEX","features":[12]},{"name":"PAN_FAMILY_ANY","features":[12]},{"name":"PAN_FAMILY_DECORATIVE","features":[12]},{"name":"PAN_FAMILY_NO_FIT","features":[12]},{"name":"PAN_FAMILY_PICTORIAL","features":[12]},{"name":"PAN_FAMILY_SCRIPT","features":[12]},{"name":"PAN_FAMILY_TEXT_DISPLAY","features":[12]},{"name":"PAN_FAMILY_TYPE","features":[12]},{"name":"PAN_LETTERFORM_INDEX","features":[12]},{"name":"PAN_LETT_FORM","features":[12]},{"name":"PAN_LETT_FORM_ANY","features":[12]},{"name":"PAN_LETT_FORM_NO_FIT","features":[12]},{"name":"PAN_LETT_NORMAL_BOXED","features":[12]},{"name":"PAN_LETT_NORMAL_CONTACT","features":[12]},{"name":"PAN_LETT_NORMAL_FLATTENED","features":[12]},{"name":"PAN_LETT_NORMAL_OFF_CENTER","features":[12]},{"name":"PAN_LETT_NORMAL_ROUNDED","features":[12]},{"name":"PAN_LETT_NORMAL_SQUARE","features":[12]},{"name":"PAN_LETT_NORMAL_WEIGHTED","features":[12]},{"name":"PAN_LETT_OBLIQUE_BOXED","features":[12]},{"name":"PAN_LETT_OBLIQUE_CONTACT","features":[12]},{"name":"PAN_LETT_OBLIQUE_FLATTENED","features":[12]},{"name":"PAN_LETT_OBLIQUE_OFF_CENTER","features":[12]},{"name":"PAN_LETT_OBLIQUE_ROUNDED","features":[12]},{"name":"PAN_LETT_OBLIQUE_SQUARE","features":[12]},{"name":"PAN_LETT_OBLIQUE_WEIGHTED","features":[12]},{"name":"PAN_MIDLINE","features":[12]},{"name":"PAN_MIDLINE_ANY","features":[12]},{"name":"PAN_MIDLINE_CONSTANT_POINTED","features":[12]},{"name":"PAN_MIDLINE_CONSTANT_SERIFED","features":[12]},{"name":"PAN_MIDLINE_CONSTANT_TRIMMED","features":[12]},{"name":"PAN_MIDLINE_HIGH_POINTED","features":[12]},{"name":"PAN_MIDLINE_HIGH_SERIFED","features":[12]},{"name":"PAN_MIDLINE_HIGH_TRIMMED","features":[12]},{"name":"PAN_MIDLINE_INDEX","features":[12]},{"name":"PAN_MIDLINE_LOW_POINTED","features":[12]},{"name":"PAN_MIDLINE_LOW_SERIFED","features":[12]},{"name":"PAN_MIDLINE_LOW_TRIMMED","features":[12]},{"name":"PAN_MIDLINE_NO_FIT","features":[12]},{"name":"PAN_MIDLINE_STANDARD_POINTED","features":[12]},{"name":"PAN_MIDLINE_STANDARD_SERIFED","features":[12]},{"name":"PAN_MIDLINE_STANDARD_TRIMMED","features":[12]},{"name":"PAN_NO_FIT","features":[12]},{"name":"PAN_PROPORTION","features":[12]},{"name":"PAN_PROPORTION_INDEX","features":[12]},{"name":"PAN_PROP_ANY","features":[12]},{"name":"PAN_PROP_CONDENSED","features":[12]},{"name":"PAN_PROP_EVEN_WIDTH","features":[12]},{"name":"PAN_PROP_EXPANDED","features":[12]},{"name":"PAN_PROP_MODERN","features":[12]},{"name":"PAN_PROP_MONOSPACED","features":[12]},{"name":"PAN_PROP_NO_FIT","features":[12]},{"name":"PAN_PROP_OLD_STYLE","features":[12]},{"name":"PAN_PROP_VERY_CONDENSED","features":[12]},{"name":"PAN_PROP_VERY_EXPANDED","features":[12]},{"name":"PAN_SERIFSTYLE_INDEX","features":[12]},{"name":"PAN_SERIF_ANY","features":[12]},{"name":"PAN_SERIF_BONE","features":[12]},{"name":"PAN_SERIF_COVE","features":[12]},{"name":"PAN_SERIF_EXAGGERATED","features":[12]},{"name":"PAN_SERIF_FLARED","features":[12]},{"name":"PAN_SERIF_NORMAL_SANS","features":[12]},{"name":"PAN_SERIF_NO_FIT","features":[12]},{"name":"PAN_SERIF_OBTUSE_COVE","features":[12]},{"name":"PAN_SERIF_OBTUSE_SANS","features":[12]},{"name":"PAN_SERIF_OBTUSE_SQUARE_COVE","features":[12]},{"name":"PAN_SERIF_PERP_SANS","features":[12]},{"name":"PAN_SERIF_ROUNDED","features":[12]},{"name":"PAN_SERIF_SQUARE","features":[12]},{"name":"PAN_SERIF_SQUARE_COVE","features":[12]},{"name":"PAN_SERIF_STYLE","features":[12]},{"name":"PAN_SERIF_THIN","features":[12]},{"name":"PAN_SERIF_TRIANGLE","features":[12]},{"name":"PAN_STRAIGHT_ARMS_DOUBLE_SERIF","features":[12]},{"name":"PAN_STRAIGHT_ARMS_HORZ","features":[12]},{"name":"PAN_STRAIGHT_ARMS_SINGLE_SERIF","features":[12]},{"name":"PAN_STRAIGHT_ARMS_VERT","features":[12]},{"name":"PAN_STRAIGHT_ARMS_WEDGE","features":[12]},{"name":"PAN_STROKEVARIATION_INDEX","features":[12]},{"name":"PAN_STROKE_ANY","features":[12]},{"name":"PAN_STROKE_GRADUAL_DIAG","features":[12]},{"name":"PAN_STROKE_GRADUAL_HORZ","features":[12]},{"name":"PAN_STROKE_GRADUAL_TRAN","features":[12]},{"name":"PAN_STROKE_GRADUAL_VERT","features":[12]},{"name":"PAN_STROKE_INSTANT_VERT","features":[12]},{"name":"PAN_STROKE_NO_FIT","features":[12]},{"name":"PAN_STROKE_RAPID_HORZ","features":[12]},{"name":"PAN_STROKE_RAPID_VERT","features":[12]},{"name":"PAN_STROKE_VARIATION","features":[12]},{"name":"PAN_WEIGHT","features":[12]},{"name":"PAN_WEIGHT_ANY","features":[12]},{"name":"PAN_WEIGHT_BLACK","features":[12]},{"name":"PAN_WEIGHT_BOLD","features":[12]},{"name":"PAN_WEIGHT_BOOK","features":[12]},{"name":"PAN_WEIGHT_DEMI","features":[12]},{"name":"PAN_WEIGHT_HEAVY","features":[12]},{"name":"PAN_WEIGHT_INDEX","features":[12]},{"name":"PAN_WEIGHT_LIGHT","features":[12]},{"name":"PAN_WEIGHT_MEDIUM","features":[12]},{"name":"PAN_WEIGHT_NORD","features":[12]},{"name":"PAN_WEIGHT_NO_FIT","features":[12]},{"name":"PAN_WEIGHT_THIN","features":[12]},{"name":"PAN_WEIGHT_VERY_LIGHT","features":[12]},{"name":"PAN_XHEIGHT","features":[12]},{"name":"PAN_XHEIGHT_ANY","features":[12]},{"name":"PAN_XHEIGHT_CONSTANT_LARGE","features":[12]},{"name":"PAN_XHEIGHT_CONSTANT_SMALL","features":[12]},{"name":"PAN_XHEIGHT_CONSTANT_STD","features":[12]},{"name":"PAN_XHEIGHT_DUCKING_LARGE","features":[12]},{"name":"PAN_XHEIGHT_DUCKING_SMALL","features":[12]},{"name":"PAN_XHEIGHT_DUCKING_STD","features":[12]},{"name":"PAN_XHEIGHT_INDEX","features":[12]},{"name":"PAN_XHEIGHT_NO_FIT","features":[12]},{"name":"PASSTHROUGH","features":[12]},{"name":"PATCOPY","features":[12]},{"name":"PATINVERT","features":[12]},{"name":"PATPAINT","features":[12]},{"name":"PC_EXPLICIT","features":[12]},{"name":"PC_INTERIORS","features":[12]},{"name":"PC_NOCOLLAPSE","features":[12]},{"name":"PC_NONE","features":[12]},{"name":"PC_PATHS","features":[12]},{"name":"PC_POLYGON","features":[12]},{"name":"PC_POLYPOLYGON","features":[12]},{"name":"PC_RECTANGLE","features":[12]},{"name":"PC_RESERVED","features":[12]},{"name":"PC_SCANLINE","features":[12]},{"name":"PC_STYLED","features":[12]},{"name":"PC_TRAPEZOID","features":[12]},{"name":"PC_WIDE","features":[12]},{"name":"PC_WIDESTYLED","features":[12]},{"name":"PC_WINDPOLYGON","features":[12]},{"name":"PDEVICESIZE","features":[12]},{"name":"PELARRAY","features":[12]},{"name":"PEN_STYLE","features":[12]},{"name":"PHYSICALHEIGHT","features":[12]},{"name":"PHYSICALOFFSETX","features":[12]},{"name":"PHYSICALOFFSETY","features":[12]},{"name":"PHYSICALWIDTH","features":[12]},{"name":"PLANES","features":[12]},{"name":"POINTFX","features":[12]},{"name":"POLYFILL_LAST","features":[12]},{"name":"POLYGONALCAPS","features":[12]},{"name":"POLYTEXTA","features":[1,12]},{"name":"POLYTEXTW","features":[1,12]},{"name":"POSTSCRIPT_DATA","features":[12]},{"name":"POSTSCRIPT_IDENTIFY","features":[12]},{"name":"POSTSCRIPT_IGNORE","features":[12]},{"name":"POSTSCRIPT_INJECTION","features":[12]},{"name":"POSTSCRIPT_PASSTHROUGH","features":[12]},{"name":"PRINTRATEUNIT_CPS","features":[12]},{"name":"PRINTRATEUNIT_IPM","features":[12]},{"name":"PRINTRATEUNIT_LPM","features":[12]},{"name":"PRINTRATEUNIT_PPM","features":[12]},{"name":"PROOF_QUALITY","features":[12]},{"name":"PR_JOBSTATUS","features":[12]},{"name":"PSIDENT_GDICENTRIC","features":[12]},{"name":"PSIDENT_PSCENTRIC","features":[12]},{"name":"PSINJECT_DLFONT","features":[12]},{"name":"PSPROTOCOL_ASCII","features":[12]},{"name":"PSPROTOCOL_BCP","features":[12]},{"name":"PSPROTOCOL_BINARY","features":[12]},{"name":"PSPROTOCOL_TBCP","features":[12]},{"name":"PS_ALTERNATE","features":[12]},{"name":"PS_COSMETIC","features":[12]},{"name":"PS_DASH","features":[12]},{"name":"PS_DASHDOT","features":[12]},{"name":"PS_DASHDOTDOT","features":[12]},{"name":"PS_DOT","features":[12]},{"name":"PS_ENDCAP_FLAT","features":[12]},{"name":"PS_ENDCAP_MASK","features":[12]},{"name":"PS_ENDCAP_ROUND","features":[12]},{"name":"PS_ENDCAP_SQUARE","features":[12]},{"name":"PS_GEOMETRIC","features":[12]},{"name":"PS_INSIDEFRAME","features":[12]},{"name":"PS_JOIN_BEVEL","features":[12]},{"name":"PS_JOIN_MASK","features":[12]},{"name":"PS_JOIN_MITER","features":[12]},{"name":"PS_JOIN_ROUND","features":[12]},{"name":"PS_NULL","features":[12]},{"name":"PS_SOLID","features":[12]},{"name":"PS_STYLE_MASK","features":[12]},{"name":"PS_TYPE_MASK","features":[12]},{"name":"PS_USERSTYLE","features":[12]},{"name":"PT_BEZIERTO","features":[12]},{"name":"PT_CLOSEFIGURE","features":[12]},{"name":"PT_LINETO","features":[12]},{"name":"PT_MOVETO","features":[12]},{"name":"PaintDesktop","features":[1,12]},{"name":"PaintRgn","features":[1,12]},{"name":"PatBlt","features":[1,12]},{"name":"PathToRegion","features":[12]},{"name":"Pie","features":[1,12]},{"name":"PlayEnhMetaFile","features":[1,12]},{"name":"PlayEnhMetaFileRecord","features":[1,12]},{"name":"PlayMetaFile","features":[1,12]},{"name":"PlayMetaFileRecord","features":[1,12]},{"name":"PlgBlt","features":[1,12]},{"name":"PolyBezier","features":[1,12]},{"name":"PolyBezierTo","features":[1,12]},{"name":"PolyDraw","features":[1,12]},{"name":"PolyPolygon","features":[1,12]},{"name":"PolyPolyline","features":[1,12]},{"name":"PolyTextOutA","features":[1,12]},{"name":"PolyTextOutW","features":[1,12]},{"name":"Polygon","features":[1,12]},{"name":"Polyline","features":[1,12]},{"name":"PolylineTo","features":[1,12]},{"name":"PtInRect","features":[1,12]},{"name":"PtInRegion","features":[1,12]},{"name":"PtVisible","features":[1,12]},{"name":"QDI_DIBTOSCREEN","features":[12]},{"name":"QDI_GETDIBITS","features":[12]},{"name":"QDI_SETDIBITS","features":[12]},{"name":"QDI_STRETCHDIB","features":[12]},{"name":"QUERYDIBSUPPORT","features":[12]},{"name":"QUERYESCSUPPORT","features":[12]},{"name":"QUERYROPSUPPORT","features":[12]},{"name":"R2_BLACK","features":[12]},{"name":"R2_COPYPEN","features":[12]},{"name":"R2_LAST","features":[12]},{"name":"R2_MASKNOTPEN","features":[12]},{"name":"R2_MASKPEN","features":[12]},{"name":"R2_MASKPENNOT","features":[12]},{"name":"R2_MERGENOTPEN","features":[12]},{"name":"R2_MERGEPEN","features":[12]},{"name":"R2_MERGEPENNOT","features":[12]},{"name":"R2_MODE","features":[12]},{"name":"R2_NOP","features":[12]},{"name":"R2_NOT","features":[12]},{"name":"R2_NOTCOPYPEN","features":[12]},{"name":"R2_NOTMASKPEN","features":[12]},{"name":"R2_NOTMERGEPEN","features":[12]},{"name":"R2_NOTXORPEN","features":[12]},{"name":"R2_WHITE","features":[12]},{"name":"R2_XORPEN","features":[12]},{"name":"RASTERCAPS","features":[12]},{"name":"RASTERIZER_STATUS","features":[12]},{"name":"RASTER_FONTTYPE","features":[12]},{"name":"RC_BANDING","features":[12]},{"name":"RC_BIGFONT","features":[12]},{"name":"RC_BITBLT","features":[12]},{"name":"RC_BITMAP64","features":[12]},{"name":"RC_DEVBITS","features":[12]},{"name":"RC_DIBTODEV","features":[12]},{"name":"RC_DI_BITMAP","features":[12]},{"name":"RC_FLOODFILL","features":[12]},{"name":"RC_GDI20_OUTPUT","features":[12]},{"name":"RC_GDI20_STATE","features":[12]},{"name":"RC_OP_DX_OUTPUT","features":[12]},{"name":"RC_PALETTE","features":[12]},{"name":"RC_SAVEBITMAP","features":[12]},{"name":"RC_SCALING","features":[12]},{"name":"RC_STRETCHBLT","features":[12]},{"name":"RC_STRETCHDIB","features":[12]},{"name":"RDH_RECTANGLES","features":[12]},{"name":"RDW_ALLCHILDREN","features":[12]},{"name":"RDW_ERASE","features":[12]},{"name":"RDW_ERASENOW","features":[12]},{"name":"RDW_FRAME","features":[12]},{"name":"RDW_INTERNALPAINT","features":[12]},{"name":"RDW_INVALIDATE","features":[12]},{"name":"RDW_NOCHILDREN","features":[12]},{"name":"RDW_NOERASE","features":[12]},{"name":"RDW_NOFRAME","features":[12]},{"name":"RDW_NOINTERNALPAINT","features":[12]},{"name":"RDW_UPDATENOW","features":[12]},{"name":"RDW_VALIDATE","features":[12]},{"name":"READEMBEDPROC","features":[12]},{"name":"REDRAW_WINDOW_FLAGS","features":[12]},{"name":"RELATIVE","features":[12]},{"name":"RESTORE_CTM","features":[12]},{"name":"RGBQUAD","features":[12]},{"name":"RGBTRIPLE","features":[12]},{"name":"RGNDATA","features":[1,12]},{"name":"RGNDATAHEADER","features":[1,12]},{"name":"RGN_AND","features":[12]},{"name":"RGN_COMBINE_MODE","features":[12]},{"name":"RGN_COPY","features":[12]},{"name":"RGN_DIFF","features":[12]},{"name":"RGN_ERROR","features":[12]},{"name":"RGN_MAX","features":[12]},{"name":"RGN_MIN","features":[12]},{"name":"RGN_OR","features":[12]},{"name":"RGN_XOR","features":[12]},{"name":"ROP_CODE","features":[12]},{"name":"RUSSIAN_CHARSET","features":[12]},{"name":"RealizePalette","features":[12]},{"name":"RectInRegion","features":[1,12]},{"name":"RectVisible","features":[1,12]},{"name":"Rectangle","features":[1,12]},{"name":"RedrawWindow","features":[1,12]},{"name":"ReleaseDC","features":[1,12]},{"name":"RemoveFontMemResourceEx","features":[1,12]},{"name":"RemoveFontResourceA","features":[1,12]},{"name":"RemoveFontResourceExA","features":[1,12]},{"name":"RemoveFontResourceExW","features":[1,12]},{"name":"RemoveFontResourceW","features":[1,12]},{"name":"ResetDCA","features":[1,12]},{"name":"ResetDCW","features":[1,12]},{"name":"ResizePalette","features":[1,12]},{"name":"RestoreDC","features":[1,12]},{"name":"RoundRect","features":[1,12]},{"name":"SAVE_CTM","features":[12]},{"name":"SB_CONST_ALPHA","features":[12]},{"name":"SB_GRAD_RECT","features":[12]},{"name":"SB_GRAD_TRI","features":[12]},{"name":"SB_NONE","features":[12]},{"name":"SB_PIXEL_ALPHA","features":[12]},{"name":"SB_PREMULT_ALPHA","features":[12]},{"name":"SCALINGFACTORX","features":[12]},{"name":"SCALINGFACTORY","features":[12]},{"name":"SC_SCREENSAVE","features":[12]},{"name":"SELECTDIB","features":[12]},{"name":"SELECTPAPERSOURCE","features":[12]},{"name":"SETABORTPROC","features":[12]},{"name":"SETALLJUSTVALUES","features":[12]},{"name":"SETCHARSET","features":[12]},{"name":"SETCOLORTABLE","features":[12]},{"name":"SETCOPYCOUNT","features":[12]},{"name":"SETDIBSCALING","features":[12]},{"name":"SETICMPROFILE_EMBEDED","features":[12]},{"name":"SETKERNTRACK","features":[12]},{"name":"SETLINECAP","features":[12]},{"name":"SETLINEJOIN","features":[12]},{"name":"SETMITERLIMIT","features":[12]},{"name":"SET_ARC_DIRECTION","features":[12]},{"name":"SET_BACKGROUND_COLOR","features":[12]},{"name":"SET_BOUNDS","features":[12]},{"name":"SET_BOUNDS_RECT_FLAGS","features":[12]},{"name":"SET_CLIP_BOX","features":[12]},{"name":"SET_MIRROR_MODE","features":[12]},{"name":"SET_POLY_MODE","features":[12]},{"name":"SET_SCREEN_ANGLE","features":[12]},{"name":"SET_SPREAD","features":[12]},{"name":"SHADEBLENDCAPS","features":[12]},{"name":"SHIFTJIS_CHARSET","features":[12]},{"name":"SIMPLEREGION","features":[12]},{"name":"SIZEPALETTE","features":[12]},{"name":"SPCLPASSTHROUGH2","features":[12]},{"name":"SP_APPABORT","features":[12]},{"name":"SP_ERROR","features":[12]},{"name":"SP_NOTREPORTED","features":[12]},{"name":"SP_OUTOFDISK","features":[12]},{"name":"SP_OUTOFMEMORY","features":[12]},{"name":"SP_USERABORT","features":[12]},{"name":"SRCAND","features":[12]},{"name":"SRCCOPY","features":[12]},{"name":"SRCERASE","features":[12]},{"name":"SRCINVERT","features":[12]},{"name":"SRCPAINT","features":[12]},{"name":"STARTDOC","features":[12]},{"name":"STOCK_LAST","features":[12]},{"name":"STRETCHBLT","features":[12]},{"name":"STRETCH_ANDSCANS","features":[12]},{"name":"STRETCH_BLT_MODE","features":[12]},{"name":"STRETCH_DELETESCANS","features":[12]},{"name":"STRETCH_HALFTONE","features":[12]},{"name":"STRETCH_ORSCANS","features":[12]},{"name":"SYMBOL_CHARSET","features":[12]},{"name":"SYSPAL_ERROR","features":[12]},{"name":"SYSPAL_NOSTATIC","features":[12]},{"name":"SYSPAL_NOSTATIC256","features":[12]},{"name":"SYSPAL_STATIC","features":[12]},{"name":"SYSRGN","features":[12]},{"name":"SYSTEM_FIXED_FONT","features":[12]},{"name":"SYSTEM_FONT","features":[12]},{"name":"SYSTEM_PALETTE_USE","features":[12]},{"name":"SYS_COLOR_INDEX","features":[12]},{"name":"SaveDC","features":[12]},{"name":"ScaleViewportExtEx","features":[1,12]},{"name":"ScaleWindowExtEx","features":[1,12]},{"name":"ScreenToClient","features":[1,12]},{"name":"SelectClipPath","features":[1,12]},{"name":"SelectClipRgn","features":[12]},{"name":"SelectObject","features":[12]},{"name":"SelectPalette","features":[1,12]},{"name":"SetArcDirection","features":[12]},{"name":"SetBitmapBits","features":[12]},{"name":"SetBitmapDimensionEx","features":[1,12]},{"name":"SetBkColor","features":[1,12]},{"name":"SetBkMode","features":[12]},{"name":"SetBoundsRect","features":[1,12]},{"name":"SetBrushOrgEx","features":[1,12]},{"name":"SetColorAdjustment","features":[1,12]},{"name":"SetDCBrushColor","features":[1,12]},{"name":"SetDCPenColor","features":[1,12]},{"name":"SetDIBColorTable","features":[12]},{"name":"SetDIBits","features":[12]},{"name":"SetDIBitsToDevice","features":[12]},{"name":"SetEnhMetaFileBits","features":[12]},{"name":"SetGraphicsMode","features":[12]},{"name":"SetLayout","features":[12]},{"name":"SetMapMode","features":[12]},{"name":"SetMapperFlags","features":[12]},{"name":"SetMetaFileBitsEx","features":[12]},{"name":"SetMetaRgn","features":[12]},{"name":"SetMiterLimit","features":[1,12]},{"name":"SetPaletteEntries","features":[12]},{"name":"SetPixel","features":[1,12]},{"name":"SetPixelV","features":[1,12]},{"name":"SetPolyFillMode","features":[12]},{"name":"SetROP2","features":[12]},{"name":"SetRect","features":[1,12]},{"name":"SetRectEmpty","features":[1,12]},{"name":"SetRectRgn","features":[1,12]},{"name":"SetStretchBltMode","features":[12]},{"name":"SetSysColors","features":[1,12]},{"name":"SetSystemPaletteUse","features":[12]},{"name":"SetTextAlign","features":[12]},{"name":"SetTextCharacterExtra","features":[12]},{"name":"SetTextColor","features":[1,12]},{"name":"SetTextJustification","features":[1,12]},{"name":"SetViewportExtEx","features":[1,12]},{"name":"SetViewportOrgEx","features":[1,12]},{"name":"SetWindowExtEx","features":[1,12]},{"name":"SetWindowOrgEx","features":[1,12]},{"name":"SetWindowRgn","features":[1,12]},{"name":"SetWorldTransform","features":[1,12]},{"name":"StretchBlt","features":[1,12]},{"name":"StretchDIBits","features":[12]},{"name":"StrokeAndFillPath","features":[1,12]},{"name":"StrokePath","features":[1,12]},{"name":"SubtractRect","features":[1,12]},{"name":"TA_BASELINE","features":[12]},{"name":"TA_BOTTOM","features":[12]},{"name":"TA_CENTER","features":[12]},{"name":"TA_LEFT","features":[12]},{"name":"TA_MASK","features":[12]},{"name":"TA_NOUPDATECP","features":[12]},{"name":"TA_RIGHT","features":[12]},{"name":"TA_RTLREADING","features":[12]},{"name":"TA_TOP","features":[12]},{"name":"TA_UPDATECP","features":[12]},{"name":"TC_CP_STROKE","features":[12]},{"name":"TC_CR_90","features":[12]},{"name":"TC_CR_ANY","features":[12]},{"name":"TC_EA_DOUBLE","features":[12]},{"name":"TC_IA_ABLE","features":[12]},{"name":"TC_OP_CHARACTER","features":[12]},{"name":"TC_OP_STROKE","features":[12]},{"name":"TC_RA_ABLE","features":[12]},{"name":"TC_RESERVED","features":[12]},{"name":"TC_SA_CONTIN","features":[12]},{"name":"TC_SA_DOUBLE","features":[12]},{"name":"TC_SA_INTEGER","features":[12]},{"name":"TC_SCROLLBLT","features":[12]},{"name":"TC_SF_X_YINDEP","features":[12]},{"name":"TC_SO_ABLE","features":[12]},{"name":"TC_UA_ABLE","features":[12]},{"name":"TC_VA_ABLE","features":[12]},{"name":"TECHNOLOGY","features":[12]},{"name":"TEXTCAPS","features":[12]},{"name":"TEXTMETRICA","features":[12]},{"name":"TEXTMETRICW","features":[12]},{"name":"TEXT_ALIGN_OPTIONS","features":[12]},{"name":"THAI_CHARSET","features":[12]},{"name":"TMPF_DEVICE","features":[12]},{"name":"TMPF_FIXED_PITCH","features":[12]},{"name":"TMPF_FLAGS","features":[12]},{"name":"TMPF_TRUETYPE","features":[12]},{"name":"TMPF_VECTOR","features":[12]},{"name":"TRANSFORM_CTM","features":[12]},{"name":"TRANSPARENT","features":[12]},{"name":"TRIVERTEX","features":[12]},{"name":"TRUETYPE_FONTTYPE","features":[12]},{"name":"TTCharToUnicode","features":[12]},{"name":"TTDELETE_DONTREMOVEFONT","features":[12]},{"name":"TTDeleteEmbeddedFont","features":[1,12]},{"name":"TTEMBEDINFO","features":[12]},{"name":"TTEMBED_EMBEDEUDC","features":[12]},{"name":"TTEMBED_EUDCEMBEDDED","features":[12]},{"name":"TTEMBED_FAILIFVARIATIONSIMULATED","features":[12]},{"name":"TTEMBED_FLAGS","features":[12]},{"name":"TTEMBED_RAW","features":[12]},{"name":"TTEMBED_SUBSET","features":[12]},{"name":"TTEMBED_SUBSETCANCEL","features":[12]},{"name":"TTEMBED_TTCOMPRESSED","features":[12]},{"name":"TTEMBED_VARIATIONSIMULATED","features":[12]},{"name":"TTEMBED_WEBOBJECT","features":[12]},{"name":"TTEMBED_XORENCRYPTDATA","features":[12]},{"name":"TTEmbedFont","features":[12]},{"name":"TTEmbedFontEx","features":[12]},{"name":"TTEmbedFontFromFileA","features":[12]},{"name":"TTEnableEmbeddingForFacename","features":[1,12]},{"name":"TTFCFP_APPLE_PLATFORMID","features":[12]},{"name":"TTFCFP_DELTA","features":[12]},{"name":"TTFCFP_DONT_CARE","features":[12]},{"name":"TTFCFP_FLAGS_COMPRESS","features":[12]},{"name":"TTFCFP_FLAGS_GLYPHLIST","features":[12]},{"name":"TTFCFP_FLAGS_SUBSET","features":[12]},{"name":"TTFCFP_FLAGS_TTC","features":[12]},{"name":"TTFCFP_ISO_PLATFORMID","features":[12]},{"name":"TTFCFP_LANG_KEEP_ALL","features":[12]},{"name":"TTFCFP_MS_PLATFORMID","features":[12]},{"name":"TTFCFP_STD_MAC_CHAR_SET","features":[12]},{"name":"TTFCFP_SUBSET","features":[12]},{"name":"TTFCFP_SUBSET1","features":[12]},{"name":"TTFCFP_SYMBOL_CHAR_SET","features":[12]},{"name":"TTFCFP_UNICODE_CHAR_SET","features":[12]},{"name":"TTFCFP_UNICODE_PLATFORMID","features":[12]},{"name":"TTFMFP_DELTA","features":[12]},{"name":"TTFMFP_SUBSET","features":[12]},{"name":"TTFMFP_SUBSET1","features":[12]},{"name":"TTGetEmbeddedFontInfo","features":[12]},{"name":"TTGetEmbeddingType","features":[12]},{"name":"TTGetNewFontName","features":[1,12]},{"name":"TTIsEmbeddingEnabled","features":[1,12]},{"name":"TTIsEmbeddingEnabledForFacename","features":[1,12]},{"name":"TTLOADINFO","features":[12]},{"name":"TTLOAD_EMBEDDED_FONT_STATUS","features":[12]},{"name":"TTLOAD_EUDC_OVERWRITE","features":[12]},{"name":"TTLOAD_EUDC_SET","features":[12]},{"name":"TTLOAD_FONT_IN_SYSSTARTUP","features":[12]},{"name":"TTLOAD_FONT_SUBSETTED","features":[12]},{"name":"TTLOAD_PRIVATE","features":[12]},{"name":"TTLoadEmbeddedFont","features":[1,12]},{"name":"TTPOLYCURVE","features":[12]},{"name":"TTPOLYGONHEADER","features":[12]},{"name":"TTRunValidationTests","features":[12]},{"name":"TTRunValidationTestsEx","features":[12]},{"name":"TTVALIDATIONTESTSPARAMS","features":[12]},{"name":"TTVALIDATIONTESTSPARAMSEX","features":[12]},{"name":"TT_AVAILABLE","features":[12]},{"name":"TT_ENABLED","features":[12]},{"name":"TT_POLYGON_TYPE","features":[12]},{"name":"TT_PRIM_CSPLINE","features":[12]},{"name":"TT_PRIM_LINE","features":[12]},{"name":"TT_PRIM_QSPLINE","features":[12]},{"name":"TURKISH_CHARSET","features":[12]},{"name":"TabbedTextOutA","features":[12]},{"name":"TabbedTextOutW","features":[12]},{"name":"TextOutA","features":[1,12]},{"name":"TextOutW","features":[1,12]},{"name":"TransparentBlt","features":[1,12]},{"name":"UnionRect","features":[1,12]},{"name":"UnrealizeObject","features":[1,12]},{"name":"UpdateColors","features":[1,12]},{"name":"UpdateWindow","features":[1,12]},{"name":"VARIABLE_PITCH","features":[12]},{"name":"VERTRES","features":[12]},{"name":"VERTSIZE","features":[12]},{"name":"VIETNAMESE_CHARSET","features":[12]},{"name":"VREFRESH","features":[12]},{"name":"VTA_BASELINE","features":[12]},{"name":"VTA_BOTTOM","features":[12]},{"name":"VTA_CENTER","features":[12]},{"name":"VTA_LEFT","features":[12]},{"name":"VTA_RIGHT","features":[12]},{"name":"VTA_TOP","features":[12]},{"name":"ValidateRect","features":[1,12]},{"name":"ValidateRgn","features":[1,12]},{"name":"WCRANGE","features":[12]},{"name":"WGLSWAP","features":[12]},{"name":"WGL_FONT_LINES","features":[12]},{"name":"WGL_FONT_POLYGONS","features":[12]},{"name":"WGL_SWAPMULTIPLE_MAX","features":[12]},{"name":"WGL_SWAP_MAIN_PLANE","features":[12]},{"name":"WGL_SWAP_OVERLAY1","features":[12]},{"name":"WGL_SWAP_OVERLAY10","features":[12]},{"name":"WGL_SWAP_OVERLAY11","features":[12]},{"name":"WGL_SWAP_OVERLAY12","features":[12]},{"name":"WGL_SWAP_OVERLAY13","features":[12]},{"name":"WGL_SWAP_OVERLAY14","features":[12]},{"name":"WGL_SWAP_OVERLAY15","features":[12]},{"name":"WGL_SWAP_OVERLAY2","features":[12]},{"name":"WGL_SWAP_OVERLAY3","features":[12]},{"name":"WGL_SWAP_OVERLAY4","features":[12]},{"name":"WGL_SWAP_OVERLAY5","features":[12]},{"name":"WGL_SWAP_OVERLAY6","features":[12]},{"name":"WGL_SWAP_OVERLAY7","features":[12]},{"name":"WGL_SWAP_OVERLAY8","features":[12]},{"name":"WGL_SWAP_OVERLAY9","features":[12]},{"name":"WGL_SWAP_UNDERLAY1","features":[12]},{"name":"WGL_SWAP_UNDERLAY10","features":[12]},{"name":"WGL_SWAP_UNDERLAY11","features":[12]},{"name":"WGL_SWAP_UNDERLAY12","features":[12]},{"name":"WGL_SWAP_UNDERLAY13","features":[12]},{"name":"WGL_SWAP_UNDERLAY14","features":[12]},{"name":"WGL_SWAP_UNDERLAY15","features":[12]},{"name":"WGL_SWAP_UNDERLAY2","features":[12]},{"name":"WGL_SWAP_UNDERLAY3","features":[12]},{"name":"WGL_SWAP_UNDERLAY4","features":[12]},{"name":"WGL_SWAP_UNDERLAY5","features":[12]},{"name":"WGL_SWAP_UNDERLAY6","features":[12]},{"name":"WGL_SWAP_UNDERLAY7","features":[12]},{"name":"WGL_SWAP_UNDERLAY8","features":[12]},{"name":"WGL_SWAP_UNDERLAY9","features":[12]},{"name":"WHITENESS","features":[12]},{"name":"WHITEONBLACK","features":[12]},{"name":"WHITE_BRUSH","features":[12]},{"name":"WHITE_PEN","features":[12]},{"name":"WINDING","features":[12]},{"name":"WRITEEMBEDPROC","features":[12]},{"name":"WidenPath","features":[1,12]},{"name":"WindowFromDC","features":[1,12]},{"name":"XFORM","features":[12]},{"name":"wglSwapMultipleBuffers","features":[12]}],"414":[{"name":"ALPHA_SHIFT","features":[72]},{"name":"Aborted","features":[72]},{"name":"AccessDenied","features":[72]},{"name":"AdjustBlackSaturation","features":[72]},{"name":"AdjustContrast","features":[72]},{"name":"AdjustDensity","features":[72]},{"name":"AdjustExposure","features":[72]},{"name":"AdjustHighlight","features":[72]},{"name":"AdjustMidtone","features":[72]},{"name":"AdjustShadow","features":[72]},{"name":"AdjustWhiteSaturation","features":[72]},{"name":"BLUE_SHIFT","features":[72]},{"name":"Bitmap","features":[72]},{"name":"BitmapData","features":[72]},{"name":"Blur","features":[1,72]},{"name":"BlurEffectGuid","features":[72]},{"name":"BlurParams","features":[1,72]},{"name":"BrightnessContrast","features":[1,72]},{"name":"BrightnessContrastEffectGuid","features":[72]},{"name":"BrightnessContrastParams","features":[72]},{"name":"BrushType","features":[72]},{"name":"BrushTypeHatchFill","features":[72]},{"name":"BrushTypeLinearGradient","features":[72]},{"name":"BrushTypePathGradient","features":[72]},{"name":"BrushTypeSolidColor","features":[72]},{"name":"BrushTypeTextureFill","features":[72]},{"name":"CGpEffect","features":[72]},{"name":"CachedBitmap","features":[72]},{"name":"CharacterRange","features":[72]},{"name":"CodecIImageBytes","features":[72]},{"name":"Color","features":[72]},{"name":"ColorAdjustType","features":[72]},{"name":"ColorAdjustTypeAny","features":[72]},{"name":"ColorAdjustTypeBitmap","features":[72]},{"name":"ColorAdjustTypeBrush","features":[72]},{"name":"ColorAdjustTypeCount","features":[72]},{"name":"ColorAdjustTypeDefault","features":[72]},{"name":"ColorAdjustTypePen","features":[72]},{"name":"ColorAdjustTypeText","features":[72]},{"name":"ColorBalance","features":[1,72]},{"name":"ColorBalanceEffectGuid","features":[72]},{"name":"ColorBalanceParams","features":[72]},{"name":"ColorChannelFlags","features":[72]},{"name":"ColorChannelFlagsC","features":[72]},{"name":"ColorChannelFlagsK","features":[72]},{"name":"ColorChannelFlagsLast","features":[72]},{"name":"ColorChannelFlagsM","features":[72]},{"name":"ColorChannelFlagsY","features":[72]},{"name":"ColorCurve","features":[1,72]},{"name":"ColorCurveEffectGuid","features":[72]},{"name":"ColorCurveParams","features":[72]},{"name":"ColorLUT","features":[1,72]},{"name":"ColorLUTEffectGuid","features":[72]},{"name":"ColorLUTParams","features":[72]},{"name":"ColorMap","features":[72]},{"name":"ColorMatrix","features":[72]},{"name":"ColorMatrixEffect","features":[1,72]},{"name":"ColorMatrixEffectGuid","features":[72]},{"name":"ColorMatrixFlags","features":[72]},{"name":"ColorMatrixFlagsAltGray","features":[72]},{"name":"ColorMatrixFlagsDefault","features":[72]},{"name":"ColorMatrixFlagsSkipGrays","features":[72]},{"name":"ColorMode","features":[72]},{"name":"ColorModeARGB32","features":[72]},{"name":"ColorModeARGB64","features":[72]},{"name":"ColorPalette","features":[72]},{"name":"CombineMode","features":[72]},{"name":"CombineModeComplement","features":[72]},{"name":"CombineModeExclude","features":[72]},{"name":"CombineModeIntersect","features":[72]},{"name":"CombineModeReplace","features":[72]},{"name":"CombineModeUnion","features":[72]},{"name":"CombineModeXor","features":[72]},{"name":"CompositingMode","features":[72]},{"name":"CompositingModeSourceCopy","features":[72]},{"name":"CompositingModeSourceOver","features":[72]},{"name":"CompositingQuality","features":[72]},{"name":"CompositingQualityAssumeLinear","features":[72]},{"name":"CompositingQualityDefault","features":[72]},{"name":"CompositingQualityGammaCorrected","features":[72]},{"name":"CompositingQualityHighQuality","features":[72]},{"name":"CompositingQualityHighSpeed","features":[72]},{"name":"CompositingQualityInvalid","features":[72]},{"name":"ConvertToEmfPlusFlags","features":[72]},{"name":"ConvertToEmfPlusFlagsDefault","features":[72]},{"name":"ConvertToEmfPlusFlagsInvalidRecord","features":[72]},{"name":"ConvertToEmfPlusFlagsRopUsed","features":[72]},{"name":"ConvertToEmfPlusFlagsText","features":[72]},{"name":"CoordinateSpace","features":[72]},{"name":"CoordinateSpaceDevice","features":[72]},{"name":"CoordinateSpacePage","features":[72]},{"name":"CoordinateSpaceWorld","features":[72]},{"name":"CurveAdjustments","features":[72]},{"name":"CurveChannel","features":[72]},{"name":"CurveChannelAll","features":[72]},{"name":"CurveChannelBlue","features":[72]},{"name":"CurveChannelGreen","features":[72]},{"name":"CurveChannelRed","features":[72]},{"name":"CustomLineCap","features":[72]},{"name":"CustomLineCapType","features":[72]},{"name":"CustomLineCapTypeAdjustableArrow","features":[72]},{"name":"CustomLineCapTypeDefault","features":[72]},{"name":"DashCap","features":[72]},{"name":"DashCapFlat","features":[72]},{"name":"DashCapRound","features":[72]},{"name":"DashCapTriangle","features":[72]},{"name":"DashStyle","features":[72]},{"name":"DashStyleCustom","features":[72]},{"name":"DashStyleDash","features":[72]},{"name":"DashStyleDashDot","features":[72]},{"name":"DashStyleDashDotDot","features":[72]},{"name":"DashStyleDot","features":[72]},{"name":"DashStyleSolid","features":[72]},{"name":"DebugEventLevel","features":[72]},{"name":"DebugEventLevelFatal","features":[72]},{"name":"DebugEventLevelWarning","features":[72]},{"name":"DebugEventProc","features":[72]},{"name":"DitherType","features":[72]},{"name":"DitherTypeDualSpiral4x4","features":[72]},{"name":"DitherTypeDualSpiral8x8","features":[72]},{"name":"DitherTypeErrorDiffusion","features":[72]},{"name":"DitherTypeMax","features":[72]},{"name":"DitherTypeNone","features":[72]},{"name":"DitherTypeOrdered16x16","features":[72]},{"name":"DitherTypeOrdered4x4","features":[72]},{"name":"DitherTypeOrdered8x8","features":[72]},{"name":"DitherTypeSolid","features":[72]},{"name":"DitherTypeSpiral4x4","features":[72]},{"name":"DitherTypeSpiral8x8","features":[72]},{"name":"DrawImageAbort","features":[1,72]},{"name":"DriverStringOptions","features":[72]},{"name":"DriverStringOptionsCmapLookup","features":[72]},{"name":"DriverStringOptionsLimitSubpixel","features":[72]},{"name":"DriverStringOptionsRealizedAdvance","features":[72]},{"name":"DriverStringOptionsVertical","features":[72]},{"name":"ENHMETAHEADER3","features":[1,72]},{"name":"Effect","features":[1,72]},{"name":"EmfPlusRecordTotal","features":[72]},{"name":"EmfPlusRecordType","features":[72]},{"name":"EmfPlusRecordTypeBeginContainer","features":[72]},{"name":"EmfPlusRecordTypeBeginContainerNoParams","features":[72]},{"name":"EmfPlusRecordTypeClear","features":[72]},{"name":"EmfPlusRecordTypeComment","features":[72]},{"name":"EmfPlusRecordTypeDrawArc","features":[72]},{"name":"EmfPlusRecordTypeDrawBeziers","features":[72]},{"name":"EmfPlusRecordTypeDrawClosedCurve","features":[72]},{"name":"EmfPlusRecordTypeDrawCurve","features":[72]},{"name":"EmfPlusRecordTypeDrawDriverString","features":[72]},{"name":"EmfPlusRecordTypeDrawEllipse","features":[72]},{"name":"EmfPlusRecordTypeDrawImage","features":[72]},{"name":"EmfPlusRecordTypeDrawImagePoints","features":[72]},{"name":"EmfPlusRecordTypeDrawLines","features":[72]},{"name":"EmfPlusRecordTypeDrawPath","features":[72]},{"name":"EmfPlusRecordTypeDrawPie","features":[72]},{"name":"EmfPlusRecordTypeDrawRects","features":[72]},{"name":"EmfPlusRecordTypeDrawString","features":[72]},{"name":"EmfPlusRecordTypeEndContainer","features":[72]},{"name":"EmfPlusRecordTypeEndOfFile","features":[72]},{"name":"EmfPlusRecordTypeFillClosedCurve","features":[72]},{"name":"EmfPlusRecordTypeFillEllipse","features":[72]},{"name":"EmfPlusRecordTypeFillPath","features":[72]},{"name":"EmfPlusRecordTypeFillPie","features":[72]},{"name":"EmfPlusRecordTypeFillPolygon","features":[72]},{"name":"EmfPlusRecordTypeFillRects","features":[72]},{"name":"EmfPlusRecordTypeFillRegion","features":[72]},{"name":"EmfPlusRecordTypeGetDC","features":[72]},{"name":"EmfPlusRecordTypeHeader","features":[72]},{"name":"EmfPlusRecordTypeInvalid","features":[72]},{"name":"EmfPlusRecordTypeMax","features":[72]},{"name":"EmfPlusRecordTypeMin","features":[72]},{"name":"EmfPlusRecordTypeMultiFormatEnd","features":[72]},{"name":"EmfPlusRecordTypeMultiFormatSection","features":[72]},{"name":"EmfPlusRecordTypeMultiFormatStart","features":[72]},{"name":"EmfPlusRecordTypeMultiplyWorldTransform","features":[72]},{"name":"EmfPlusRecordTypeObject","features":[72]},{"name":"EmfPlusRecordTypeOffsetClip","features":[72]},{"name":"EmfPlusRecordTypeResetClip","features":[72]},{"name":"EmfPlusRecordTypeResetWorldTransform","features":[72]},{"name":"EmfPlusRecordTypeRestore","features":[72]},{"name":"EmfPlusRecordTypeRotateWorldTransform","features":[72]},{"name":"EmfPlusRecordTypeSave","features":[72]},{"name":"EmfPlusRecordTypeScaleWorldTransform","features":[72]},{"name":"EmfPlusRecordTypeSerializableObject","features":[72]},{"name":"EmfPlusRecordTypeSetAntiAliasMode","features":[72]},{"name":"EmfPlusRecordTypeSetClipPath","features":[72]},{"name":"EmfPlusRecordTypeSetClipRect","features":[72]},{"name":"EmfPlusRecordTypeSetClipRegion","features":[72]},{"name":"EmfPlusRecordTypeSetCompositingMode","features":[72]},{"name":"EmfPlusRecordTypeSetCompositingQuality","features":[72]},{"name":"EmfPlusRecordTypeSetInterpolationMode","features":[72]},{"name":"EmfPlusRecordTypeSetPageTransform","features":[72]},{"name":"EmfPlusRecordTypeSetPixelOffsetMode","features":[72]},{"name":"EmfPlusRecordTypeSetRenderingOrigin","features":[72]},{"name":"EmfPlusRecordTypeSetTSClip","features":[72]},{"name":"EmfPlusRecordTypeSetTSGraphics","features":[72]},{"name":"EmfPlusRecordTypeSetTextContrast","features":[72]},{"name":"EmfPlusRecordTypeSetTextRenderingHint","features":[72]},{"name":"EmfPlusRecordTypeSetWorldTransform","features":[72]},{"name":"EmfPlusRecordTypeStrokeFillPath","features":[72]},{"name":"EmfPlusRecordTypeTranslateWorldTransform","features":[72]},{"name":"EmfRecordTypeAbortPath","features":[72]},{"name":"EmfRecordTypeAlphaBlend","features":[72]},{"name":"EmfRecordTypeAngleArc","features":[72]},{"name":"EmfRecordTypeArc","features":[72]},{"name":"EmfRecordTypeArcTo","features":[72]},{"name":"EmfRecordTypeBeginPath","features":[72]},{"name":"EmfRecordTypeBitBlt","features":[72]},{"name":"EmfRecordTypeChord","features":[72]},{"name":"EmfRecordTypeCloseFigure","features":[72]},{"name":"EmfRecordTypeColorCorrectPalette","features":[72]},{"name":"EmfRecordTypeColorMatchToTargetW","features":[72]},{"name":"EmfRecordTypeCreateBrushIndirect","features":[72]},{"name":"EmfRecordTypeCreateColorSpace","features":[72]},{"name":"EmfRecordTypeCreateColorSpaceW","features":[72]},{"name":"EmfRecordTypeCreateDIBPatternBrushPt","features":[72]},{"name":"EmfRecordTypeCreateMonoBrush","features":[72]},{"name":"EmfRecordTypeCreatePalette","features":[72]},{"name":"EmfRecordTypeCreatePen","features":[72]},{"name":"EmfRecordTypeDeleteColorSpace","features":[72]},{"name":"EmfRecordTypeDeleteObject","features":[72]},{"name":"EmfRecordTypeDrawEscape","features":[72]},{"name":"EmfRecordTypeEOF","features":[72]},{"name":"EmfRecordTypeEllipse","features":[72]},{"name":"EmfRecordTypeEndPath","features":[72]},{"name":"EmfRecordTypeExcludeClipRect","features":[72]},{"name":"EmfRecordTypeExtCreateFontIndirect","features":[72]},{"name":"EmfRecordTypeExtCreatePen","features":[72]},{"name":"EmfRecordTypeExtEscape","features":[72]},{"name":"EmfRecordTypeExtFloodFill","features":[72]},{"name":"EmfRecordTypeExtSelectClipRgn","features":[72]},{"name":"EmfRecordTypeExtTextOutA","features":[72]},{"name":"EmfRecordTypeExtTextOutW","features":[72]},{"name":"EmfRecordTypeFillPath","features":[72]},{"name":"EmfRecordTypeFillRgn","features":[72]},{"name":"EmfRecordTypeFlattenPath","features":[72]},{"name":"EmfRecordTypeForceUFIMapping","features":[72]},{"name":"EmfRecordTypeFrameRgn","features":[72]},{"name":"EmfRecordTypeGLSBoundedRecord","features":[72]},{"name":"EmfRecordTypeGLSRecord","features":[72]},{"name":"EmfRecordTypeGdiComment","features":[72]},{"name":"EmfRecordTypeGradientFill","features":[72]},{"name":"EmfRecordTypeHeader","features":[72]},{"name":"EmfRecordTypeIntersectClipRect","features":[72]},{"name":"EmfRecordTypeInvertRgn","features":[72]},{"name":"EmfRecordTypeLineTo","features":[72]},{"name":"EmfRecordTypeMaskBlt","features":[72]},{"name":"EmfRecordTypeMax","features":[72]},{"name":"EmfRecordTypeMin","features":[72]},{"name":"EmfRecordTypeModifyWorldTransform","features":[72]},{"name":"EmfRecordTypeMoveToEx","features":[72]},{"name":"EmfRecordTypeNamedEscape","features":[72]},{"name":"EmfRecordTypeOffsetClipRgn","features":[72]},{"name":"EmfRecordTypePaintRgn","features":[72]},{"name":"EmfRecordTypePie","features":[72]},{"name":"EmfRecordTypePixelFormat","features":[72]},{"name":"EmfRecordTypePlgBlt","features":[72]},{"name":"EmfRecordTypePolyBezier","features":[72]},{"name":"EmfRecordTypePolyBezier16","features":[72]},{"name":"EmfRecordTypePolyBezierTo","features":[72]},{"name":"EmfRecordTypePolyBezierTo16","features":[72]},{"name":"EmfRecordTypePolyDraw","features":[72]},{"name":"EmfRecordTypePolyDraw16","features":[72]},{"name":"EmfRecordTypePolyLineTo","features":[72]},{"name":"EmfRecordTypePolyPolygon","features":[72]},{"name":"EmfRecordTypePolyPolygon16","features":[72]},{"name":"EmfRecordTypePolyPolyline","features":[72]},{"name":"EmfRecordTypePolyPolyline16","features":[72]},{"name":"EmfRecordTypePolyTextOutA","features":[72]},{"name":"EmfRecordTypePolyTextOutW","features":[72]},{"name":"EmfRecordTypePolygon","features":[72]},{"name":"EmfRecordTypePolygon16","features":[72]},{"name":"EmfRecordTypePolyline","features":[72]},{"name":"EmfRecordTypePolyline16","features":[72]},{"name":"EmfRecordTypePolylineTo16","features":[72]},{"name":"EmfRecordTypeRealizePalette","features":[72]},{"name":"EmfRecordTypeRectangle","features":[72]},{"name":"EmfRecordTypeReserved_069","features":[72]},{"name":"EmfRecordTypeReserved_117","features":[72]},{"name":"EmfRecordTypeResizePalette","features":[72]},{"name":"EmfRecordTypeRestoreDC","features":[72]},{"name":"EmfRecordTypeRoundRect","features":[72]},{"name":"EmfRecordTypeSaveDC","features":[72]},{"name":"EmfRecordTypeScaleViewportExtEx","features":[72]},{"name":"EmfRecordTypeScaleWindowExtEx","features":[72]},{"name":"EmfRecordTypeSelectClipPath","features":[72]},{"name":"EmfRecordTypeSelectObject","features":[72]},{"name":"EmfRecordTypeSelectPalette","features":[72]},{"name":"EmfRecordTypeSetArcDirection","features":[72]},{"name":"EmfRecordTypeSetBkColor","features":[72]},{"name":"EmfRecordTypeSetBkMode","features":[72]},{"name":"EmfRecordTypeSetBrushOrgEx","features":[72]},{"name":"EmfRecordTypeSetColorAdjustment","features":[72]},{"name":"EmfRecordTypeSetColorSpace","features":[72]},{"name":"EmfRecordTypeSetDIBitsToDevice","features":[72]},{"name":"EmfRecordTypeSetICMMode","features":[72]},{"name":"EmfRecordTypeSetICMProfileA","features":[72]},{"name":"EmfRecordTypeSetICMProfileW","features":[72]},{"name":"EmfRecordTypeSetLayout","features":[72]},{"name":"EmfRecordTypeSetLinkedUFIs","features":[72]},{"name":"EmfRecordTypeSetMapMode","features":[72]},{"name":"EmfRecordTypeSetMapperFlags","features":[72]},{"name":"EmfRecordTypeSetMetaRgn","features":[72]},{"name":"EmfRecordTypeSetMiterLimit","features":[72]},{"name":"EmfRecordTypeSetPaletteEntries","features":[72]},{"name":"EmfRecordTypeSetPixelV","features":[72]},{"name":"EmfRecordTypeSetPolyFillMode","features":[72]},{"name":"EmfRecordTypeSetROP2","features":[72]},{"name":"EmfRecordTypeSetStretchBltMode","features":[72]},{"name":"EmfRecordTypeSetTextAlign","features":[72]},{"name":"EmfRecordTypeSetTextColor","features":[72]},{"name":"EmfRecordTypeSetTextJustification","features":[72]},{"name":"EmfRecordTypeSetViewportExtEx","features":[72]},{"name":"EmfRecordTypeSetViewportOrgEx","features":[72]},{"name":"EmfRecordTypeSetWindowExtEx","features":[72]},{"name":"EmfRecordTypeSetWindowOrgEx","features":[72]},{"name":"EmfRecordTypeSetWorldTransform","features":[72]},{"name":"EmfRecordTypeSmallTextOut","features":[72]},{"name":"EmfRecordTypeStartDoc","features":[72]},{"name":"EmfRecordTypeStretchBlt","features":[72]},{"name":"EmfRecordTypeStretchDIBits","features":[72]},{"name":"EmfRecordTypeStrokeAndFillPath","features":[72]},{"name":"EmfRecordTypeStrokePath","features":[72]},{"name":"EmfRecordTypeTransparentBlt","features":[72]},{"name":"EmfRecordTypeWidenPath","features":[72]},{"name":"EmfToWmfBitsFlags","features":[72]},{"name":"EmfToWmfBitsFlagsDefault","features":[72]},{"name":"EmfToWmfBitsFlagsEmbedEmf","features":[72]},{"name":"EmfToWmfBitsFlagsIncludePlaceable","features":[72]},{"name":"EmfToWmfBitsFlagsNoXORClip","features":[72]},{"name":"EmfType","features":[72]},{"name":"EmfTypeEmfOnly","features":[72]},{"name":"EmfTypeEmfPlusDual","features":[72]},{"name":"EmfTypeEmfPlusOnly","features":[72]},{"name":"EncoderChrominanceTable","features":[72]},{"name":"EncoderColorDepth","features":[72]},{"name":"EncoderColorSpace","features":[72]},{"name":"EncoderCompression","features":[72]},{"name":"EncoderImageItems","features":[72]},{"name":"EncoderLuminanceTable","features":[72]},{"name":"EncoderParameter","features":[72]},{"name":"EncoderParameterValueType","features":[72]},{"name":"EncoderParameterValueTypeASCII","features":[72]},{"name":"EncoderParameterValueTypeByte","features":[72]},{"name":"EncoderParameterValueTypeLong","features":[72]},{"name":"EncoderParameterValueTypeLongRange","features":[72]},{"name":"EncoderParameterValueTypePointer","features":[72]},{"name":"EncoderParameterValueTypeRational","features":[72]},{"name":"EncoderParameterValueTypeRationalRange","features":[72]},{"name":"EncoderParameterValueTypeShort","features":[72]},{"name":"EncoderParameterValueTypeUndefined","features":[72]},{"name":"EncoderParameters","features":[72]},{"name":"EncoderQuality","features":[72]},{"name":"EncoderRenderMethod","features":[72]},{"name":"EncoderSaveAsCMYK","features":[72]},{"name":"EncoderSaveFlag","features":[72]},{"name":"EncoderScanMethod","features":[72]},{"name":"EncoderTransformation","features":[72]},{"name":"EncoderValue","features":[72]},{"name":"EncoderValueColorTypeCMYK","features":[72]},{"name":"EncoderValueColorTypeGray","features":[72]},{"name":"EncoderValueColorTypeRGB","features":[72]},{"name":"EncoderValueColorTypeYCCK","features":[72]},{"name":"EncoderValueCompressionCCITT3","features":[72]},{"name":"EncoderValueCompressionCCITT4","features":[72]},{"name":"EncoderValueCompressionLZW","features":[72]},{"name":"EncoderValueCompressionNone","features":[72]},{"name":"EncoderValueCompressionRle","features":[72]},{"name":"EncoderValueFlush","features":[72]},{"name":"EncoderValueFrameDimensionPage","features":[72]},{"name":"EncoderValueFrameDimensionResolution","features":[72]},{"name":"EncoderValueFrameDimensionTime","features":[72]},{"name":"EncoderValueLastFrame","features":[72]},{"name":"EncoderValueMultiFrame","features":[72]},{"name":"EncoderValueRenderNonProgressive","features":[72]},{"name":"EncoderValueRenderProgressive","features":[72]},{"name":"EncoderValueScanMethodInterlaced","features":[72]},{"name":"EncoderValueScanMethodNonInterlaced","features":[72]},{"name":"EncoderValueTransformFlipHorizontal","features":[72]},{"name":"EncoderValueTransformFlipVertical","features":[72]},{"name":"EncoderValueTransformRotate180","features":[72]},{"name":"EncoderValueTransformRotate270","features":[72]},{"name":"EncoderValueTransformRotate90","features":[72]},{"name":"EncoderValueVersionGif87","features":[72]},{"name":"EncoderValueVersionGif89","features":[72]},{"name":"EncoderVersion","features":[72]},{"name":"EnumerateMetafileProc","features":[1,72]},{"name":"FileNotFound","features":[72]},{"name":"FillMode","features":[72]},{"name":"FillModeAlternate","features":[72]},{"name":"FillModeWinding","features":[72]},{"name":"FlatnessDefault","features":[72]},{"name":"FlushIntention","features":[72]},{"name":"FlushIntentionFlush","features":[72]},{"name":"FlushIntentionSync","features":[72]},{"name":"Font","features":[72]},{"name":"FontCollection","features":[72]},{"name":"FontFamily","features":[72]},{"name":"FontFamilyNotFound","features":[72]},{"name":"FontStyle","features":[72]},{"name":"FontStyleBold","features":[72]},{"name":"FontStyleBoldItalic","features":[72]},{"name":"FontStyleItalic","features":[72]},{"name":"FontStyleNotFound","features":[72]},{"name":"FontStyleRegular","features":[72]},{"name":"FontStyleStrikeout","features":[72]},{"name":"FontStyleUnderline","features":[72]},{"name":"FormatIDImageInformation","features":[72]},{"name":"FormatIDJpegAppHeaders","features":[72]},{"name":"FrameDimensionPage","features":[72]},{"name":"FrameDimensionResolution","features":[72]},{"name":"FrameDimensionTime","features":[72]},{"name":"GDIP_EMFPLUSFLAGS_DISPLAY","features":[72]},{"name":"GDIP_EMFPLUS_RECORD_BASE","features":[72]},{"name":"GDIP_WMF_RECORD_BASE","features":[72]},{"name":"GREEN_SHIFT","features":[72]},{"name":"GdipAddPathArc","features":[72]},{"name":"GdipAddPathArcI","features":[72]},{"name":"GdipAddPathBezier","features":[72]},{"name":"GdipAddPathBezierI","features":[72]},{"name":"GdipAddPathBeziers","features":[72]},{"name":"GdipAddPathBeziersI","features":[72]},{"name":"GdipAddPathClosedCurve","features":[72]},{"name":"GdipAddPathClosedCurve2","features":[72]},{"name":"GdipAddPathClosedCurve2I","features":[72]},{"name":"GdipAddPathClosedCurveI","features":[72]},{"name":"GdipAddPathCurve","features":[72]},{"name":"GdipAddPathCurve2","features":[72]},{"name":"GdipAddPathCurve2I","features":[72]},{"name":"GdipAddPathCurve3","features":[72]},{"name":"GdipAddPathCurve3I","features":[72]},{"name":"GdipAddPathCurveI","features":[72]},{"name":"GdipAddPathEllipse","features":[72]},{"name":"GdipAddPathEllipseI","features":[72]},{"name":"GdipAddPathLine","features":[72]},{"name":"GdipAddPathLine2","features":[72]},{"name":"GdipAddPathLine2I","features":[72]},{"name":"GdipAddPathLineI","features":[72]},{"name":"GdipAddPathPath","features":[1,72]},{"name":"GdipAddPathPie","features":[72]},{"name":"GdipAddPathPieI","features":[72]},{"name":"GdipAddPathPolygon","features":[72]},{"name":"GdipAddPathPolygonI","features":[72]},{"name":"GdipAddPathRectangle","features":[72]},{"name":"GdipAddPathRectangleI","features":[72]},{"name":"GdipAddPathRectangles","features":[72]},{"name":"GdipAddPathRectanglesI","features":[72]},{"name":"GdipAddPathString","features":[72]},{"name":"GdipAddPathStringI","features":[72]},{"name":"GdipAlloc","features":[72]},{"name":"GdipBeginContainer","features":[72]},{"name":"GdipBeginContainer2","features":[72]},{"name":"GdipBeginContainerI","features":[72]},{"name":"GdipBitmapApplyEffect","features":[1,72]},{"name":"GdipBitmapConvertFormat","features":[72]},{"name":"GdipBitmapCreateApplyEffect","features":[1,72]},{"name":"GdipBitmapGetHistogram","features":[72]},{"name":"GdipBitmapGetHistogramSize","features":[72]},{"name":"GdipBitmapGetPixel","features":[72]},{"name":"GdipBitmapLockBits","features":[72]},{"name":"GdipBitmapSetPixel","features":[72]},{"name":"GdipBitmapSetResolution","features":[72]},{"name":"GdipBitmapUnlockBits","features":[72]},{"name":"GdipClearPathMarkers","features":[72]},{"name":"GdipCloneBitmapArea","features":[72]},{"name":"GdipCloneBitmapAreaI","features":[72]},{"name":"GdipCloneBrush","features":[72]},{"name":"GdipCloneCustomLineCap","features":[72]},{"name":"GdipCloneFont","features":[72]},{"name":"GdipCloneFontFamily","features":[72]},{"name":"GdipCloneImage","features":[72]},{"name":"GdipCloneImageAttributes","features":[72]},{"name":"GdipCloneMatrix","features":[72]},{"name":"GdipClonePath","features":[72]},{"name":"GdipClonePen","features":[72]},{"name":"GdipCloneRegion","features":[72]},{"name":"GdipCloneStringFormat","features":[72]},{"name":"GdipClosePathFigure","features":[72]},{"name":"GdipClosePathFigures","features":[72]},{"name":"GdipCombineRegionPath","features":[72]},{"name":"GdipCombineRegionRect","features":[72]},{"name":"GdipCombineRegionRectI","features":[72]},{"name":"GdipCombineRegionRegion","features":[72]},{"name":"GdipComment","features":[72]},{"name":"GdipConvertToEmfPlus","features":[72]},{"name":"GdipConvertToEmfPlusToFile","features":[72]},{"name":"GdipConvertToEmfPlusToStream","features":[72]},{"name":"GdipCreateAdjustableArrowCap","features":[1,72]},{"name":"GdipCreateBitmapFromDirectDrawSurface","features":[72]},{"name":"GdipCreateBitmapFromFile","features":[72]},{"name":"GdipCreateBitmapFromFileICM","features":[72]},{"name":"GdipCreateBitmapFromGdiDib","features":[12,72]},{"name":"GdipCreateBitmapFromGraphics","features":[72]},{"name":"GdipCreateBitmapFromHBITMAP","features":[12,72]},{"name":"GdipCreateBitmapFromHICON","features":[72,50]},{"name":"GdipCreateBitmapFromResource","features":[1,72]},{"name":"GdipCreateBitmapFromScan0","features":[72]},{"name":"GdipCreateBitmapFromStream","features":[72]},{"name":"GdipCreateBitmapFromStreamICM","features":[72]},{"name":"GdipCreateCachedBitmap","features":[72]},{"name":"GdipCreateCustomLineCap","features":[72]},{"name":"GdipCreateEffect","features":[72]},{"name":"GdipCreateFont","features":[72]},{"name":"GdipCreateFontFamilyFromName","features":[72]},{"name":"GdipCreateFontFromDC","features":[12,72]},{"name":"GdipCreateFontFromLogfontA","features":[12,72]},{"name":"GdipCreateFontFromLogfontW","features":[12,72]},{"name":"GdipCreateFromHDC","features":[12,72]},{"name":"GdipCreateFromHDC2","features":[1,12,72]},{"name":"GdipCreateFromHWND","features":[1,72]},{"name":"GdipCreateFromHWNDICM","features":[1,72]},{"name":"GdipCreateHBITMAPFromBitmap","features":[12,72]},{"name":"GdipCreateHICONFromBitmap","features":[72,50]},{"name":"GdipCreateHalftonePalette","features":[12,72]},{"name":"GdipCreateHatchBrush","features":[72]},{"name":"GdipCreateImageAttributes","features":[72]},{"name":"GdipCreateLineBrush","features":[72]},{"name":"GdipCreateLineBrushFromRect","features":[72]},{"name":"GdipCreateLineBrushFromRectI","features":[72]},{"name":"GdipCreateLineBrushFromRectWithAngle","features":[1,72]},{"name":"GdipCreateLineBrushFromRectWithAngleI","features":[1,72]},{"name":"GdipCreateLineBrushI","features":[72]},{"name":"GdipCreateMatrix","features":[72]},{"name":"GdipCreateMatrix2","features":[72]},{"name":"GdipCreateMatrix3","features":[72]},{"name":"GdipCreateMatrix3I","features":[72]},{"name":"GdipCreateMetafileFromEmf","features":[1,12,72]},{"name":"GdipCreateMetafileFromFile","features":[72]},{"name":"GdipCreateMetafileFromStream","features":[72]},{"name":"GdipCreateMetafileFromWmf","features":[1,12,72]},{"name":"GdipCreateMetafileFromWmfFile","features":[72]},{"name":"GdipCreatePath","features":[72]},{"name":"GdipCreatePath2","features":[72]},{"name":"GdipCreatePath2I","features":[72]},{"name":"GdipCreatePathGradient","features":[72]},{"name":"GdipCreatePathGradientFromPath","features":[72]},{"name":"GdipCreatePathGradientI","features":[72]},{"name":"GdipCreatePathIter","features":[72]},{"name":"GdipCreatePen1","features":[72]},{"name":"GdipCreatePen2","features":[72]},{"name":"GdipCreateRegion","features":[72]},{"name":"GdipCreateRegionHrgn","features":[12,72]},{"name":"GdipCreateRegionPath","features":[72]},{"name":"GdipCreateRegionRect","features":[72]},{"name":"GdipCreateRegionRectI","features":[72]},{"name":"GdipCreateRegionRgnData","features":[72]},{"name":"GdipCreateSolidFill","features":[72]},{"name":"GdipCreateStreamOnFile","features":[72]},{"name":"GdipCreateStringFormat","features":[72]},{"name":"GdipCreateTexture","features":[72]},{"name":"GdipCreateTexture2","features":[72]},{"name":"GdipCreateTexture2I","features":[72]},{"name":"GdipCreateTextureIA","features":[72]},{"name":"GdipCreateTextureIAI","features":[72]},{"name":"GdipDeleteBrush","features":[72]},{"name":"GdipDeleteCachedBitmap","features":[72]},{"name":"GdipDeleteCustomLineCap","features":[72]},{"name":"GdipDeleteEffect","features":[72]},{"name":"GdipDeleteFont","features":[72]},{"name":"GdipDeleteFontFamily","features":[72]},{"name":"GdipDeleteGraphics","features":[72]},{"name":"GdipDeleteMatrix","features":[72]},{"name":"GdipDeletePath","features":[72]},{"name":"GdipDeletePathIter","features":[72]},{"name":"GdipDeletePen","features":[72]},{"name":"GdipDeletePrivateFontCollection","features":[72]},{"name":"GdipDeleteRegion","features":[72]},{"name":"GdipDeleteStringFormat","features":[72]},{"name":"GdipDisposeImage","features":[72]},{"name":"GdipDisposeImageAttributes","features":[72]},{"name":"GdipDrawArc","features":[72]},{"name":"GdipDrawArcI","features":[72]},{"name":"GdipDrawBezier","features":[72]},{"name":"GdipDrawBezierI","features":[72]},{"name":"GdipDrawBeziers","features":[72]},{"name":"GdipDrawBeziersI","features":[72]},{"name":"GdipDrawCachedBitmap","features":[72]},{"name":"GdipDrawClosedCurve","features":[72]},{"name":"GdipDrawClosedCurve2","features":[72]},{"name":"GdipDrawClosedCurve2I","features":[72]},{"name":"GdipDrawClosedCurveI","features":[72]},{"name":"GdipDrawCurve","features":[72]},{"name":"GdipDrawCurve2","features":[72]},{"name":"GdipDrawCurve2I","features":[72]},{"name":"GdipDrawCurve3","features":[72]},{"name":"GdipDrawCurve3I","features":[72]},{"name":"GdipDrawCurveI","features":[72]},{"name":"GdipDrawDriverString","features":[72]},{"name":"GdipDrawEllipse","features":[72]},{"name":"GdipDrawEllipseI","features":[72]},{"name":"GdipDrawImage","features":[72]},{"name":"GdipDrawImageFX","features":[72]},{"name":"GdipDrawImageI","features":[72]},{"name":"GdipDrawImagePointRect","features":[72]},{"name":"GdipDrawImagePointRectI","features":[72]},{"name":"GdipDrawImagePoints","features":[72]},{"name":"GdipDrawImagePointsI","features":[72]},{"name":"GdipDrawImagePointsRect","features":[72]},{"name":"GdipDrawImagePointsRectI","features":[72]},{"name":"GdipDrawImageRect","features":[72]},{"name":"GdipDrawImageRectI","features":[72]},{"name":"GdipDrawImageRectRect","features":[72]},{"name":"GdipDrawImageRectRectI","features":[72]},{"name":"GdipDrawLine","features":[72]},{"name":"GdipDrawLineI","features":[72]},{"name":"GdipDrawLines","features":[72]},{"name":"GdipDrawLinesI","features":[72]},{"name":"GdipDrawPath","features":[72]},{"name":"GdipDrawPie","features":[72]},{"name":"GdipDrawPieI","features":[72]},{"name":"GdipDrawPolygon","features":[72]},{"name":"GdipDrawPolygonI","features":[72]},{"name":"GdipDrawRectangle","features":[72]},{"name":"GdipDrawRectangleI","features":[72]},{"name":"GdipDrawRectangles","features":[72]},{"name":"GdipDrawRectanglesI","features":[72]},{"name":"GdipDrawString","features":[72]},{"name":"GdipEmfToWmfBits","features":[12,72]},{"name":"GdipEndContainer","features":[72]},{"name":"GdipEnumerateMetafileDestPoint","features":[72]},{"name":"GdipEnumerateMetafileDestPointI","features":[72]},{"name":"GdipEnumerateMetafileDestPoints","features":[72]},{"name":"GdipEnumerateMetafileDestPointsI","features":[72]},{"name":"GdipEnumerateMetafileDestRect","features":[72]},{"name":"GdipEnumerateMetafileDestRectI","features":[72]},{"name":"GdipEnumerateMetafileSrcRectDestPoint","features":[72]},{"name":"GdipEnumerateMetafileSrcRectDestPointI","features":[72]},{"name":"GdipEnumerateMetafileSrcRectDestPoints","features":[72]},{"name":"GdipEnumerateMetafileSrcRectDestPointsI","features":[72]},{"name":"GdipEnumerateMetafileSrcRectDestRect","features":[72]},{"name":"GdipEnumerateMetafileSrcRectDestRectI","features":[72]},{"name":"GdipFillClosedCurve","features":[72]},{"name":"GdipFillClosedCurve2","features":[72]},{"name":"GdipFillClosedCurve2I","features":[72]},{"name":"GdipFillClosedCurveI","features":[72]},{"name":"GdipFillEllipse","features":[72]},{"name":"GdipFillEllipseI","features":[72]},{"name":"GdipFillPath","features":[72]},{"name":"GdipFillPie","features":[72]},{"name":"GdipFillPieI","features":[72]},{"name":"GdipFillPolygon","features":[72]},{"name":"GdipFillPolygon2","features":[72]},{"name":"GdipFillPolygon2I","features":[72]},{"name":"GdipFillPolygonI","features":[72]},{"name":"GdipFillRectangle","features":[72]},{"name":"GdipFillRectangleI","features":[72]},{"name":"GdipFillRectangles","features":[72]},{"name":"GdipFillRectanglesI","features":[72]},{"name":"GdipFillRegion","features":[72]},{"name":"GdipFindFirstImageItem","features":[72]},{"name":"GdipFindNextImageItem","features":[72]},{"name":"GdipFlattenPath","features":[72]},{"name":"GdipFlush","features":[72]},{"name":"GdipFree","features":[72]},{"name":"GdipGetAdjustableArrowCapFillState","features":[1,72]},{"name":"GdipGetAdjustableArrowCapHeight","features":[72]},{"name":"GdipGetAdjustableArrowCapMiddleInset","features":[72]},{"name":"GdipGetAdjustableArrowCapWidth","features":[72]},{"name":"GdipGetAllPropertyItems","features":[72]},{"name":"GdipGetBrushType","features":[72]},{"name":"GdipGetCellAscent","features":[72]},{"name":"GdipGetCellDescent","features":[72]},{"name":"GdipGetClip","features":[72]},{"name":"GdipGetClipBounds","features":[72]},{"name":"GdipGetClipBoundsI","features":[72]},{"name":"GdipGetCompositingMode","features":[72]},{"name":"GdipGetCompositingQuality","features":[72]},{"name":"GdipGetCustomLineCapBaseCap","features":[72]},{"name":"GdipGetCustomLineCapBaseInset","features":[72]},{"name":"GdipGetCustomLineCapStrokeCaps","features":[72]},{"name":"GdipGetCustomLineCapStrokeJoin","features":[72]},{"name":"GdipGetCustomLineCapType","features":[72]},{"name":"GdipGetCustomLineCapWidthScale","features":[72]},{"name":"GdipGetDC","features":[12,72]},{"name":"GdipGetDpiX","features":[72]},{"name":"GdipGetDpiY","features":[72]},{"name":"GdipGetEffectParameterSize","features":[72]},{"name":"GdipGetEffectParameters","features":[72]},{"name":"GdipGetEmHeight","features":[72]},{"name":"GdipGetEncoderParameterList","features":[72]},{"name":"GdipGetEncoderParameterListSize","features":[72]},{"name":"GdipGetFamily","features":[72]},{"name":"GdipGetFamilyName","features":[72]},{"name":"GdipGetFontCollectionFamilyCount","features":[72]},{"name":"GdipGetFontCollectionFamilyList","features":[72]},{"name":"GdipGetFontHeight","features":[72]},{"name":"GdipGetFontHeightGivenDPI","features":[72]},{"name":"GdipGetFontSize","features":[72]},{"name":"GdipGetFontStyle","features":[72]},{"name":"GdipGetFontUnit","features":[72]},{"name":"GdipGetGenericFontFamilyMonospace","features":[72]},{"name":"GdipGetGenericFontFamilySansSerif","features":[72]},{"name":"GdipGetGenericFontFamilySerif","features":[72]},{"name":"GdipGetHatchBackgroundColor","features":[72]},{"name":"GdipGetHatchForegroundColor","features":[72]},{"name":"GdipGetHatchStyle","features":[72]},{"name":"GdipGetHemfFromMetafile","features":[12,72]},{"name":"GdipGetImageAttributesAdjustedPalette","features":[72]},{"name":"GdipGetImageBounds","features":[72]},{"name":"GdipGetImageDecoders","features":[72]},{"name":"GdipGetImageDecodersSize","features":[72]},{"name":"GdipGetImageDimension","features":[72]},{"name":"GdipGetImageEncoders","features":[72]},{"name":"GdipGetImageEncodersSize","features":[72]},{"name":"GdipGetImageFlags","features":[72]},{"name":"GdipGetImageGraphicsContext","features":[72]},{"name":"GdipGetImageHeight","features":[72]},{"name":"GdipGetImageHorizontalResolution","features":[72]},{"name":"GdipGetImageItemData","features":[72]},{"name":"GdipGetImagePalette","features":[72]},{"name":"GdipGetImagePaletteSize","features":[72]},{"name":"GdipGetImagePixelFormat","features":[72]},{"name":"GdipGetImageRawFormat","features":[72]},{"name":"GdipGetImageThumbnail","features":[72]},{"name":"GdipGetImageType","features":[72]},{"name":"GdipGetImageVerticalResolution","features":[72]},{"name":"GdipGetImageWidth","features":[72]},{"name":"GdipGetInterpolationMode","features":[72]},{"name":"GdipGetLineBlend","features":[72]},{"name":"GdipGetLineBlendCount","features":[72]},{"name":"GdipGetLineColors","features":[72]},{"name":"GdipGetLineGammaCorrection","features":[1,72]},{"name":"GdipGetLinePresetBlend","features":[72]},{"name":"GdipGetLinePresetBlendCount","features":[72]},{"name":"GdipGetLineRect","features":[72]},{"name":"GdipGetLineRectI","features":[72]},{"name":"GdipGetLineSpacing","features":[72]},{"name":"GdipGetLineTransform","features":[72]},{"name":"GdipGetLineWrapMode","features":[72]},{"name":"GdipGetLogFontA","features":[12,72]},{"name":"GdipGetLogFontW","features":[12,72]},{"name":"GdipGetMatrixElements","features":[72]},{"name":"GdipGetMetafileDownLevelRasterizationLimit","features":[72]},{"name":"GdipGetMetafileHeaderFromEmf","features":[1,12,72]},{"name":"GdipGetMetafileHeaderFromFile","features":[1,12,72]},{"name":"GdipGetMetafileHeaderFromMetafile","features":[1,12,72]},{"name":"GdipGetMetafileHeaderFromStream","features":[1,12,72]},{"name":"GdipGetMetafileHeaderFromWmf","features":[1,12,72]},{"name":"GdipGetNearestColor","features":[72]},{"name":"GdipGetPageScale","features":[72]},{"name":"GdipGetPageUnit","features":[72]},{"name":"GdipGetPathData","features":[72]},{"name":"GdipGetPathFillMode","features":[72]},{"name":"GdipGetPathGradientBlend","features":[72]},{"name":"GdipGetPathGradientBlendCount","features":[72]},{"name":"GdipGetPathGradientCenterColor","features":[72]},{"name":"GdipGetPathGradientCenterPoint","features":[72]},{"name":"GdipGetPathGradientCenterPointI","features":[72]},{"name":"GdipGetPathGradientFocusScales","features":[72]},{"name":"GdipGetPathGradientGammaCorrection","features":[1,72]},{"name":"GdipGetPathGradientPath","features":[72]},{"name":"GdipGetPathGradientPointCount","features":[72]},{"name":"GdipGetPathGradientPresetBlend","features":[72]},{"name":"GdipGetPathGradientPresetBlendCount","features":[72]},{"name":"GdipGetPathGradientRect","features":[72]},{"name":"GdipGetPathGradientRectI","features":[72]},{"name":"GdipGetPathGradientSurroundColorCount","features":[72]},{"name":"GdipGetPathGradientSurroundColorsWithCount","features":[72]},{"name":"GdipGetPathGradientTransform","features":[72]},{"name":"GdipGetPathGradientWrapMode","features":[72]},{"name":"GdipGetPathLastPoint","features":[72]},{"name":"GdipGetPathPoints","features":[72]},{"name":"GdipGetPathPointsI","features":[72]},{"name":"GdipGetPathTypes","features":[72]},{"name":"GdipGetPathWorldBounds","features":[72]},{"name":"GdipGetPathWorldBoundsI","features":[72]},{"name":"GdipGetPenBrushFill","features":[72]},{"name":"GdipGetPenColor","features":[72]},{"name":"GdipGetPenCompoundArray","features":[72]},{"name":"GdipGetPenCompoundCount","features":[72]},{"name":"GdipGetPenCustomEndCap","features":[72]},{"name":"GdipGetPenCustomStartCap","features":[72]},{"name":"GdipGetPenDashArray","features":[72]},{"name":"GdipGetPenDashCap197819","features":[72]},{"name":"GdipGetPenDashCount","features":[72]},{"name":"GdipGetPenDashOffset","features":[72]},{"name":"GdipGetPenDashStyle","features":[72]},{"name":"GdipGetPenEndCap","features":[72]},{"name":"GdipGetPenFillType","features":[72]},{"name":"GdipGetPenLineJoin","features":[72]},{"name":"GdipGetPenMiterLimit","features":[72]},{"name":"GdipGetPenMode","features":[72]},{"name":"GdipGetPenStartCap","features":[72]},{"name":"GdipGetPenTransform","features":[72]},{"name":"GdipGetPenUnit","features":[72]},{"name":"GdipGetPenWidth","features":[72]},{"name":"GdipGetPixelOffsetMode","features":[72]},{"name":"GdipGetPointCount","features":[72]},{"name":"GdipGetPropertyCount","features":[72]},{"name":"GdipGetPropertyIdList","features":[72]},{"name":"GdipGetPropertyItem","features":[72]},{"name":"GdipGetPropertyItemSize","features":[72]},{"name":"GdipGetPropertySize","features":[72]},{"name":"GdipGetRegionBounds","features":[72]},{"name":"GdipGetRegionBoundsI","features":[72]},{"name":"GdipGetRegionData","features":[72]},{"name":"GdipGetRegionDataSize","features":[72]},{"name":"GdipGetRegionHRgn","features":[12,72]},{"name":"GdipGetRegionScans","features":[72]},{"name":"GdipGetRegionScansCount","features":[72]},{"name":"GdipGetRegionScansI","features":[72]},{"name":"GdipGetRenderingOrigin","features":[72]},{"name":"GdipGetSmoothingMode","features":[72]},{"name":"GdipGetSolidFillColor","features":[72]},{"name":"GdipGetStringFormatAlign","features":[72]},{"name":"GdipGetStringFormatDigitSubstitution","features":[72]},{"name":"GdipGetStringFormatFlags","features":[72]},{"name":"GdipGetStringFormatHotkeyPrefix","features":[72]},{"name":"GdipGetStringFormatLineAlign","features":[72]},{"name":"GdipGetStringFormatMeasurableCharacterRangeCount","features":[72]},{"name":"GdipGetStringFormatTabStopCount","features":[72]},{"name":"GdipGetStringFormatTabStops","features":[72]},{"name":"GdipGetStringFormatTrimming","features":[72]},{"name":"GdipGetTextContrast","features":[72]},{"name":"GdipGetTextRenderingHint","features":[72]},{"name":"GdipGetTextureImage","features":[72]},{"name":"GdipGetTextureTransform","features":[72]},{"name":"GdipGetTextureWrapMode","features":[72]},{"name":"GdipGetVisibleClipBounds","features":[72]},{"name":"GdipGetVisibleClipBoundsI","features":[72]},{"name":"GdipGetWorldTransform","features":[72]},{"name":"GdipGraphicsClear","features":[72]},{"name":"GdipGraphicsSetAbort","features":[72]},{"name":"GdipImageForceValidation","features":[72]},{"name":"GdipImageGetFrameCount","features":[72]},{"name":"GdipImageGetFrameDimensionsCount","features":[72]},{"name":"GdipImageGetFrameDimensionsList","features":[72]},{"name":"GdipImageRotateFlip","features":[72]},{"name":"GdipImageSelectActiveFrame","features":[72]},{"name":"GdipImageSetAbort","features":[72]},{"name":"GdipInitializePalette","features":[1,72]},{"name":"GdipInvertMatrix","features":[72]},{"name":"GdipIsClipEmpty","features":[1,72]},{"name":"GdipIsEmptyRegion","features":[1,72]},{"name":"GdipIsEqualRegion","features":[1,72]},{"name":"GdipIsInfiniteRegion","features":[1,72]},{"name":"GdipIsMatrixEqual","features":[1,72]},{"name":"GdipIsMatrixIdentity","features":[1,72]},{"name":"GdipIsMatrixInvertible","features":[1,72]},{"name":"GdipIsOutlineVisiblePathPoint","features":[1,72]},{"name":"GdipIsOutlineVisiblePathPointI","features":[1,72]},{"name":"GdipIsStyleAvailable","features":[1,72]},{"name":"GdipIsVisibleClipEmpty","features":[1,72]},{"name":"GdipIsVisiblePathPoint","features":[1,72]},{"name":"GdipIsVisiblePathPointI","features":[1,72]},{"name":"GdipIsVisiblePoint","features":[1,72]},{"name":"GdipIsVisiblePointI","features":[1,72]},{"name":"GdipIsVisibleRect","features":[1,72]},{"name":"GdipIsVisibleRectI","features":[1,72]},{"name":"GdipIsVisibleRegionPoint","features":[1,72]},{"name":"GdipIsVisibleRegionPointI","features":[1,72]},{"name":"GdipIsVisibleRegionRect","features":[1,72]},{"name":"GdipIsVisibleRegionRectI","features":[1,72]},{"name":"GdipLoadImageFromFile","features":[72]},{"name":"GdipLoadImageFromFileICM","features":[72]},{"name":"GdipLoadImageFromStream","features":[72]},{"name":"GdipLoadImageFromStreamICM","features":[72]},{"name":"GdipMeasureCharacterRanges","features":[72]},{"name":"GdipMeasureDriverString","features":[72]},{"name":"GdipMeasureString","features":[72]},{"name":"GdipMultiplyLineTransform","features":[72]},{"name":"GdipMultiplyMatrix","features":[72]},{"name":"GdipMultiplyPathGradientTransform","features":[72]},{"name":"GdipMultiplyPenTransform","features":[72]},{"name":"GdipMultiplyTextureTransform","features":[72]},{"name":"GdipMultiplyWorldTransform","features":[72]},{"name":"GdipNewInstalledFontCollection","features":[72]},{"name":"GdipNewPrivateFontCollection","features":[72]},{"name":"GdipPathIterCopyData","features":[72]},{"name":"GdipPathIterEnumerate","features":[72]},{"name":"GdipPathIterGetCount","features":[72]},{"name":"GdipPathIterGetSubpathCount","features":[72]},{"name":"GdipPathIterHasCurve","features":[1,72]},{"name":"GdipPathIterIsValid","features":[1,72]},{"name":"GdipPathIterNextMarker","features":[72]},{"name":"GdipPathIterNextMarkerPath","features":[72]},{"name":"GdipPathIterNextPathType","features":[72]},{"name":"GdipPathIterNextSubpath","features":[1,72]},{"name":"GdipPathIterNextSubpathPath","features":[1,72]},{"name":"GdipPathIterRewind","features":[72]},{"name":"GdipPlayMetafileRecord","features":[72]},{"name":"GdipPrivateAddFontFile","features":[72]},{"name":"GdipPrivateAddMemoryFont","features":[72]},{"name":"GdipRecordMetafile","features":[12,72]},{"name":"GdipRecordMetafileFileName","features":[12,72]},{"name":"GdipRecordMetafileFileNameI","features":[12,72]},{"name":"GdipRecordMetafileI","features":[12,72]},{"name":"GdipRecordMetafileStream","features":[12,72]},{"name":"GdipRecordMetafileStreamI","features":[12,72]},{"name":"GdipReleaseDC","features":[12,72]},{"name":"GdipRemovePropertyItem","features":[72]},{"name":"GdipResetClip","features":[72]},{"name":"GdipResetImageAttributes","features":[72]},{"name":"GdipResetLineTransform","features":[72]},{"name":"GdipResetPageTransform","features":[72]},{"name":"GdipResetPath","features":[72]},{"name":"GdipResetPathGradientTransform","features":[72]},{"name":"GdipResetPenTransform","features":[72]},{"name":"GdipResetTextureTransform","features":[72]},{"name":"GdipResetWorldTransform","features":[72]},{"name":"GdipRestoreGraphics","features":[72]},{"name":"GdipReversePath","features":[72]},{"name":"GdipRotateLineTransform","features":[72]},{"name":"GdipRotateMatrix","features":[72]},{"name":"GdipRotatePathGradientTransform","features":[72]},{"name":"GdipRotatePenTransform","features":[72]},{"name":"GdipRotateTextureTransform","features":[72]},{"name":"GdipRotateWorldTransform","features":[72]},{"name":"GdipSaveAdd","features":[72]},{"name":"GdipSaveAddImage","features":[72]},{"name":"GdipSaveGraphics","features":[72]},{"name":"GdipSaveImageToFile","features":[72]},{"name":"GdipSaveImageToStream","features":[72]},{"name":"GdipScaleLineTransform","features":[72]},{"name":"GdipScaleMatrix","features":[72]},{"name":"GdipScalePathGradientTransform","features":[72]},{"name":"GdipScalePenTransform","features":[72]},{"name":"GdipScaleTextureTransform","features":[72]},{"name":"GdipScaleWorldTransform","features":[72]},{"name":"GdipSetAdjustableArrowCapFillState","features":[1,72]},{"name":"GdipSetAdjustableArrowCapHeight","features":[72]},{"name":"GdipSetAdjustableArrowCapMiddleInset","features":[72]},{"name":"GdipSetAdjustableArrowCapWidth","features":[72]},{"name":"GdipSetClipGraphics","features":[72]},{"name":"GdipSetClipHrgn","features":[12,72]},{"name":"GdipSetClipPath","features":[72]},{"name":"GdipSetClipRect","features":[72]},{"name":"GdipSetClipRectI","features":[72]},{"name":"GdipSetClipRegion","features":[72]},{"name":"GdipSetCompositingMode","features":[72]},{"name":"GdipSetCompositingQuality","features":[72]},{"name":"GdipSetCustomLineCapBaseCap","features":[72]},{"name":"GdipSetCustomLineCapBaseInset","features":[72]},{"name":"GdipSetCustomLineCapStrokeCaps","features":[72]},{"name":"GdipSetCustomLineCapStrokeJoin","features":[72]},{"name":"GdipSetCustomLineCapWidthScale","features":[72]},{"name":"GdipSetEffectParameters","features":[72]},{"name":"GdipSetEmpty","features":[72]},{"name":"GdipSetImageAttributesCachedBackground","features":[1,72]},{"name":"GdipSetImageAttributesColorKeys","features":[1,72]},{"name":"GdipSetImageAttributesColorMatrix","features":[1,72]},{"name":"GdipSetImageAttributesGamma","features":[1,72]},{"name":"GdipSetImageAttributesNoOp","features":[1,72]},{"name":"GdipSetImageAttributesOutputChannel","features":[1,72]},{"name":"GdipSetImageAttributesOutputChannelColorProfile","features":[1,72]},{"name":"GdipSetImageAttributesRemapTable","features":[1,72]},{"name":"GdipSetImageAttributesThreshold","features":[1,72]},{"name":"GdipSetImageAttributesToIdentity","features":[72]},{"name":"GdipSetImageAttributesWrapMode","features":[1,72]},{"name":"GdipSetImagePalette","features":[72]},{"name":"GdipSetInfinite","features":[72]},{"name":"GdipSetInterpolationMode","features":[72]},{"name":"GdipSetLineBlend","features":[72]},{"name":"GdipSetLineColors","features":[72]},{"name":"GdipSetLineGammaCorrection","features":[1,72]},{"name":"GdipSetLineLinearBlend","features":[72]},{"name":"GdipSetLinePresetBlend","features":[72]},{"name":"GdipSetLineSigmaBlend","features":[72]},{"name":"GdipSetLineTransform","features":[72]},{"name":"GdipSetLineWrapMode","features":[72]},{"name":"GdipSetMatrixElements","features":[72]},{"name":"GdipSetMetafileDownLevelRasterizationLimit","features":[72]},{"name":"GdipSetPageScale","features":[72]},{"name":"GdipSetPageUnit","features":[72]},{"name":"GdipSetPathFillMode","features":[72]},{"name":"GdipSetPathGradientBlend","features":[72]},{"name":"GdipSetPathGradientCenterColor","features":[72]},{"name":"GdipSetPathGradientCenterPoint","features":[72]},{"name":"GdipSetPathGradientCenterPointI","features":[72]},{"name":"GdipSetPathGradientFocusScales","features":[72]},{"name":"GdipSetPathGradientGammaCorrection","features":[1,72]},{"name":"GdipSetPathGradientLinearBlend","features":[72]},{"name":"GdipSetPathGradientPath","features":[72]},{"name":"GdipSetPathGradientPresetBlend","features":[72]},{"name":"GdipSetPathGradientSigmaBlend","features":[72]},{"name":"GdipSetPathGradientSurroundColorsWithCount","features":[72]},{"name":"GdipSetPathGradientTransform","features":[72]},{"name":"GdipSetPathGradientWrapMode","features":[72]},{"name":"GdipSetPathMarker","features":[72]},{"name":"GdipSetPenBrushFill","features":[72]},{"name":"GdipSetPenColor","features":[72]},{"name":"GdipSetPenCompoundArray","features":[72]},{"name":"GdipSetPenCustomEndCap","features":[72]},{"name":"GdipSetPenCustomStartCap","features":[72]},{"name":"GdipSetPenDashArray","features":[72]},{"name":"GdipSetPenDashCap197819","features":[72]},{"name":"GdipSetPenDashOffset","features":[72]},{"name":"GdipSetPenDashStyle","features":[72]},{"name":"GdipSetPenEndCap","features":[72]},{"name":"GdipSetPenLineCap197819","features":[72]},{"name":"GdipSetPenLineJoin","features":[72]},{"name":"GdipSetPenMiterLimit","features":[72]},{"name":"GdipSetPenMode","features":[72]},{"name":"GdipSetPenStartCap","features":[72]},{"name":"GdipSetPenTransform","features":[72]},{"name":"GdipSetPenUnit","features":[72]},{"name":"GdipSetPenWidth","features":[72]},{"name":"GdipSetPixelOffsetMode","features":[72]},{"name":"GdipSetPropertyItem","features":[72]},{"name":"GdipSetRenderingOrigin","features":[72]},{"name":"GdipSetSmoothingMode","features":[72]},{"name":"GdipSetSolidFillColor","features":[72]},{"name":"GdipSetStringFormatAlign","features":[72]},{"name":"GdipSetStringFormatDigitSubstitution","features":[72]},{"name":"GdipSetStringFormatFlags","features":[72]},{"name":"GdipSetStringFormatHotkeyPrefix","features":[72]},{"name":"GdipSetStringFormatLineAlign","features":[72]},{"name":"GdipSetStringFormatMeasurableCharacterRanges","features":[72]},{"name":"GdipSetStringFormatTabStops","features":[72]},{"name":"GdipSetStringFormatTrimming","features":[72]},{"name":"GdipSetTextContrast","features":[72]},{"name":"GdipSetTextRenderingHint","features":[72]},{"name":"GdipSetTextureTransform","features":[72]},{"name":"GdipSetTextureWrapMode","features":[72]},{"name":"GdipSetWorldTransform","features":[72]},{"name":"GdipShearMatrix","features":[72]},{"name":"GdipStartPathFigure","features":[72]},{"name":"GdipStringFormatGetGenericDefault","features":[72]},{"name":"GdipStringFormatGetGenericTypographic","features":[72]},{"name":"GdipTestControl","features":[72]},{"name":"GdipTransformMatrixPoints","features":[72]},{"name":"GdipTransformMatrixPointsI","features":[72]},{"name":"GdipTransformPath","features":[72]},{"name":"GdipTransformPoints","features":[72]},{"name":"GdipTransformPointsI","features":[72]},{"name":"GdipTransformRegion","features":[72]},{"name":"GdipTranslateClip","features":[72]},{"name":"GdipTranslateClipI","features":[72]},{"name":"GdipTranslateLineTransform","features":[72]},{"name":"GdipTranslateMatrix","features":[72]},{"name":"GdipTranslatePathGradientTransform","features":[72]},{"name":"GdipTranslatePenTransform","features":[72]},{"name":"GdipTranslateRegion","features":[72]},{"name":"GdipTranslateRegionI","features":[72]},{"name":"GdipTranslateTextureTransform","features":[72]},{"name":"GdipTranslateWorldTransform","features":[72]},{"name":"GdipVectorTransformMatrixPoints","features":[72]},{"name":"GdipVectorTransformMatrixPointsI","features":[72]},{"name":"GdipWarpPath","features":[72]},{"name":"GdipWidenPath","features":[72]},{"name":"GdipWindingModeOutline","features":[72]},{"name":"GdiplusAbort","features":[72]},{"name":"GdiplusNotInitialized","features":[72]},{"name":"GdiplusNotificationHook","features":[72]},{"name":"GdiplusNotificationUnhook","features":[72]},{"name":"GdiplusShutdown","features":[72]},{"name":"GdiplusStartup","features":[1,72]},{"name":"GdiplusStartupDefault","features":[72]},{"name":"GdiplusStartupInput","features":[1,72]},{"name":"GdiplusStartupInputEx","features":[1,72]},{"name":"GdiplusStartupNoSetRound","features":[72]},{"name":"GdiplusStartupOutput","features":[72]},{"name":"GdiplusStartupParams","features":[72]},{"name":"GdiplusStartupSetPSValue","features":[72]},{"name":"GdiplusStartupTransparencyMask","features":[72]},{"name":"GenericError","features":[72]},{"name":"GenericFontFamily","features":[72]},{"name":"GenericFontFamilyMonospace","features":[72]},{"name":"GenericFontFamilySansSerif","features":[72]},{"name":"GenericFontFamilySerif","features":[72]},{"name":"GetThumbnailImageAbort","features":[1,72]},{"name":"GpAdjustableArrowCap","features":[72]},{"name":"GpBitmap","features":[72]},{"name":"GpBrush","features":[72]},{"name":"GpCachedBitmap","features":[72]},{"name":"GpCustomLineCap","features":[72]},{"name":"GpFont","features":[72]},{"name":"GpFontCollection","features":[72]},{"name":"GpFontFamily","features":[72]},{"name":"GpGraphics","features":[72]},{"name":"GpHatch","features":[72]},{"name":"GpImage","features":[72]},{"name":"GpImageAttributes","features":[72]},{"name":"GpInstalledFontCollection","features":[72]},{"name":"GpLineGradient","features":[72]},{"name":"GpMetafile","features":[72]},{"name":"GpPath","features":[72]},{"name":"GpPathGradient","features":[72]},{"name":"GpPathIterator","features":[72]},{"name":"GpPen","features":[72]},{"name":"GpPrivateFontCollection","features":[72]},{"name":"GpRegion","features":[72]},{"name":"GpSolidFill","features":[72]},{"name":"GpStringFormat","features":[72]},{"name":"GpTestControlEnum","features":[72]},{"name":"GpTexture","features":[72]},{"name":"HatchStyle","features":[72]},{"name":"HatchStyle05Percent","features":[72]},{"name":"HatchStyle10Percent","features":[72]},{"name":"HatchStyle20Percent","features":[72]},{"name":"HatchStyle25Percent","features":[72]},{"name":"HatchStyle30Percent","features":[72]},{"name":"HatchStyle40Percent","features":[72]},{"name":"HatchStyle50Percent","features":[72]},{"name":"HatchStyle60Percent","features":[72]},{"name":"HatchStyle70Percent","features":[72]},{"name":"HatchStyle75Percent","features":[72]},{"name":"HatchStyle80Percent","features":[72]},{"name":"HatchStyle90Percent","features":[72]},{"name":"HatchStyleBackwardDiagonal","features":[72]},{"name":"HatchStyleCross","features":[72]},{"name":"HatchStyleDarkDownwardDiagonal","features":[72]},{"name":"HatchStyleDarkHorizontal","features":[72]},{"name":"HatchStyleDarkUpwardDiagonal","features":[72]},{"name":"HatchStyleDarkVertical","features":[72]},{"name":"HatchStyleDashedDownwardDiagonal","features":[72]},{"name":"HatchStyleDashedHorizontal","features":[72]},{"name":"HatchStyleDashedUpwardDiagonal","features":[72]},{"name":"HatchStyleDashedVertical","features":[72]},{"name":"HatchStyleDiagonalBrick","features":[72]},{"name":"HatchStyleDiagonalCross","features":[72]},{"name":"HatchStyleDivot","features":[72]},{"name":"HatchStyleDottedDiamond","features":[72]},{"name":"HatchStyleDottedGrid","features":[72]},{"name":"HatchStyleForwardDiagonal","features":[72]},{"name":"HatchStyleHorizontal","features":[72]},{"name":"HatchStyleHorizontalBrick","features":[72]},{"name":"HatchStyleLargeCheckerBoard","features":[72]},{"name":"HatchStyleLargeConfetti","features":[72]},{"name":"HatchStyleLargeGrid","features":[72]},{"name":"HatchStyleLightDownwardDiagonal","features":[72]},{"name":"HatchStyleLightHorizontal","features":[72]},{"name":"HatchStyleLightUpwardDiagonal","features":[72]},{"name":"HatchStyleLightVertical","features":[72]},{"name":"HatchStyleMax","features":[72]},{"name":"HatchStyleMin","features":[72]},{"name":"HatchStyleNarrowHorizontal","features":[72]},{"name":"HatchStyleNarrowVertical","features":[72]},{"name":"HatchStyleOutlinedDiamond","features":[72]},{"name":"HatchStylePlaid","features":[72]},{"name":"HatchStyleShingle","features":[72]},{"name":"HatchStyleSmallCheckerBoard","features":[72]},{"name":"HatchStyleSmallConfetti","features":[72]},{"name":"HatchStyleSmallGrid","features":[72]},{"name":"HatchStyleSolidDiamond","features":[72]},{"name":"HatchStyleSphere","features":[72]},{"name":"HatchStyleTotal","features":[72]},{"name":"HatchStyleTrellis","features":[72]},{"name":"HatchStyleVertical","features":[72]},{"name":"HatchStyleWave","features":[72]},{"name":"HatchStyleWeave","features":[72]},{"name":"HatchStyleWideDownwardDiagonal","features":[72]},{"name":"HatchStyleWideUpwardDiagonal","features":[72]},{"name":"HatchStyleZigZag","features":[72]},{"name":"HistogramFormat","features":[72]},{"name":"HistogramFormatA","features":[72]},{"name":"HistogramFormatARGB","features":[72]},{"name":"HistogramFormatB","features":[72]},{"name":"HistogramFormatG","features":[72]},{"name":"HistogramFormatGray","features":[72]},{"name":"HistogramFormatPARGB","features":[72]},{"name":"HistogramFormatR","features":[72]},{"name":"HistogramFormatRGB","features":[72]},{"name":"HotkeyPrefix","features":[72]},{"name":"HotkeyPrefixHide","features":[72]},{"name":"HotkeyPrefixNone","features":[72]},{"name":"HotkeyPrefixShow","features":[72]},{"name":"HueSaturationLightness","features":[1,72]},{"name":"HueSaturationLightnessEffectGuid","features":[72]},{"name":"HueSaturationLightnessParams","features":[72]},{"name":"IImageBytes","features":[72]},{"name":"Image","features":[72]},{"name":"ImageAbort","features":[1,72]},{"name":"ImageCodecFlags","features":[72]},{"name":"ImageCodecFlagsBlockingDecode","features":[72]},{"name":"ImageCodecFlagsBuiltin","features":[72]},{"name":"ImageCodecFlagsDecoder","features":[72]},{"name":"ImageCodecFlagsEncoder","features":[72]},{"name":"ImageCodecFlagsSeekableEncode","features":[72]},{"name":"ImageCodecFlagsSupportBitmap","features":[72]},{"name":"ImageCodecFlagsSupportVector","features":[72]},{"name":"ImageCodecFlagsSystem","features":[72]},{"name":"ImageCodecFlagsUser","features":[72]},{"name":"ImageCodecInfo","features":[72]},{"name":"ImageFlags","features":[72]},{"name":"ImageFlagsCaching","features":[72]},{"name":"ImageFlagsColorSpaceCMYK","features":[72]},{"name":"ImageFlagsColorSpaceGRAY","features":[72]},{"name":"ImageFlagsColorSpaceRGB","features":[72]},{"name":"ImageFlagsColorSpaceYCBCR","features":[72]},{"name":"ImageFlagsColorSpaceYCCK","features":[72]},{"name":"ImageFlagsHasAlpha","features":[72]},{"name":"ImageFlagsHasRealDPI","features":[72]},{"name":"ImageFlagsHasRealPixelSize","features":[72]},{"name":"ImageFlagsHasTranslucent","features":[72]},{"name":"ImageFlagsNone","features":[72]},{"name":"ImageFlagsPartiallyScalable","features":[72]},{"name":"ImageFlagsReadOnly","features":[72]},{"name":"ImageFlagsScalable","features":[72]},{"name":"ImageFormatBMP","features":[72]},{"name":"ImageFormatEMF","features":[72]},{"name":"ImageFormatEXIF","features":[72]},{"name":"ImageFormatGIF","features":[72]},{"name":"ImageFormatHEIF","features":[72]},{"name":"ImageFormatIcon","features":[72]},{"name":"ImageFormatJPEG","features":[72]},{"name":"ImageFormatMemoryBMP","features":[72]},{"name":"ImageFormatPNG","features":[72]},{"name":"ImageFormatTIFF","features":[72]},{"name":"ImageFormatUndefined","features":[72]},{"name":"ImageFormatWEBP","features":[72]},{"name":"ImageFormatWMF","features":[72]},{"name":"ImageItemData","features":[72]},{"name":"ImageLockMode","features":[72]},{"name":"ImageLockModeRead","features":[72]},{"name":"ImageLockModeUserInputBuf","features":[72]},{"name":"ImageLockModeWrite","features":[72]},{"name":"ImageType","features":[72]},{"name":"ImageTypeBitmap","features":[72]},{"name":"ImageTypeMetafile","features":[72]},{"name":"ImageTypeUnknown","features":[72]},{"name":"InstalledFontCollection","features":[72]},{"name":"InsufficientBuffer","features":[72]},{"name":"InterpolationMode","features":[72]},{"name":"InterpolationModeBicubic","features":[72]},{"name":"InterpolationModeBilinear","features":[72]},{"name":"InterpolationModeDefault","features":[72]},{"name":"InterpolationModeHighQuality","features":[72]},{"name":"InterpolationModeHighQualityBicubic","features":[72]},{"name":"InterpolationModeHighQualityBilinear","features":[72]},{"name":"InterpolationModeInvalid","features":[72]},{"name":"InterpolationModeLowQuality","features":[72]},{"name":"InterpolationModeNearestNeighbor","features":[72]},{"name":"InvalidParameter","features":[72]},{"name":"ItemDataPosition","features":[72]},{"name":"ItemDataPositionAfterBits","features":[72]},{"name":"ItemDataPositionAfterHeader","features":[72]},{"name":"ItemDataPositionAfterPalette","features":[72]},{"name":"Levels","features":[1,72]},{"name":"LevelsEffectGuid","features":[72]},{"name":"LevelsParams","features":[72]},{"name":"LineCap","features":[72]},{"name":"LineCapAnchorMask","features":[72]},{"name":"LineCapArrowAnchor","features":[72]},{"name":"LineCapCustom","features":[72]},{"name":"LineCapDiamondAnchor","features":[72]},{"name":"LineCapFlat","features":[72]},{"name":"LineCapNoAnchor","features":[72]},{"name":"LineCapRound","features":[72]},{"name":"LineCapRoundAnchor","features":[72]},{"name":"LineCapSquare","features":[72]},{"name":"LineCapSquareAnchor","features":[72]},{"name":"LineCapTriangle","features":[72]},{"name":"LineJoin","features":[72]},{"name":"LineJoinBevel","features":[72]},{"name":"LineJoinMiter","features":[72]},{"name":"LineJoinMiterClipped","features":[72]},{"name":"LineJoinRound","features":[72]},{"name":"LinearGradientMode","features":[72]},{"name":"LinearGradientModeBackwardDiagonal","features":[72]},{"name":"LinearGradientModeForwardDiagonal","features":[72]},{"name":"LinearGradientModeHorizontal","features":[72]},{"name":"LinearGradientModeVertical","features":[72]},{"name":"Matrix","features":[72]},{"name":"MatrixOrder","features":[72]},{"name":"MatrixOrderAppend","features":[72]},{"name":"MatrixOrderPrepend","features":[72]},{"name":"Metafile","features":[72]},{"name":"MetafileFrameUnit","features":[72]},{"name":"MetafileFrameUnitDocument","features":[72]},{"name":"MetafileFrameUnitGdi","features":[72]},{"name":"MetafileFrameUnitInch","features":[72]},{"name":"MetafileFrameUnitMillimeter","features":[72]},{"name":"MetafileFrameUnitPixel","features":[72]},{"name":"MetafileFrameUnitPoint","features":[72]},{"name":"MetafileHeader","features":[1,12,72]},{"name":"MetafileType","features":[72]},{"name":"MetafileTypeEmf","features":[72]},{"name":"MetafileTypeEmfPlusDual","features":[72]},{"name":"MetafileTypeEmfPlusOnly","features":[72]},{"name":"MetafileTypeInvalid","features":[72]},{"name":"MetafileTypeWmf","features":[72]},{"name":"MetafileTypeWmfPlaceable","features":[72]},{"name":"NotImplemented","features":[72]},{"name":"NotTrueTypeFont","features":[72]},{"name":"NotificationHookProc","features":[72]},{"name":"NotificationUnhookProc","features":[72]},{"name":"ObjectBusy","features":[72]},{"name":"ObjectType","features":[72]},{"name":"ObjectTypeBrush","features":[72]},{"name":"ObjectTypeCustomLineCap","features":[72]},{"name":"ObjectTypeFont","features":[72]},{"name":"ObjectTypeGraphics","features":[72]},{"name":"ObjectTypeImage","features":[72]},{"name":"ObjectTypeImageAttributes","features":[72]},{"name":"ObjectTypeInvalid","features":[72]},{"name":"ObjectTypeMax","features":[72]},{"name":"ObjectTypeMin","features":[72]},{"name":"ObjectTypePath","features":[72]},{"name":"ObjectTypePen","features":[72]},{"name":"ObjectTypeRegion","features":[72]},{"name":"ObjectTypeStringFormat","features":[72]},{"name":"Ok","features":[72]},{"name":"OutOfMemory","features":[72]},{"name":"PWMFRect16","features":[72]},{"name":"PaletteFlags","features":[72]},{"name":"PaletteFlagsGrayScale","features":[72]},{"name":"PaletteFlagsHalftone","features":[72]},{"name":"PaletteFlagsHasAlpha","features":[72]},{"name":"PaletteType","features":[72]},{"name":"PaletteTypeCustom","features":[72]},{"name":"PaletteTypeFixedBW","features":[72]},{"name":"PaletteTypeFixedHalftone125","features":[72]},{"name":"PaletteTypeFixedHalftone216","features":[72]},{"name":"PaletteTypeFixedHalftone252","features":[72]},{"name":"PaletteTypeFixedHalftone256","features":[72]},{"name":"PaletteTypeFixedHalftone27","features":[72]},{"name":"PaletteTypeFixedHalftone64","features":[72]},{"name":"PaletteTypeFixedHalftone8","features":[72]},{"name":"PaletteTypeOptimal","features":[72]},{"name":"PathData","features":[72]},{"name":"PathPointType","features":[72]},{"name":"PathPointTypeBezier","features":[72]},{"name":"PathPointTypeBezier3","features":[72]},{"name":"PathPointTypeCloseSubpath","features":[72]},{"name":"PathPointTypeDashMode","features":[72]},{"name":"PathPointTypeLine","features":[72]},{"name":"PathPointTypePathMarker","features":[72]},{"name":"PathPointTypePathTypeMask","features":[72]},{"name":"PathPointTypeStart","features":[72]},{"name":"PenAlignment","features":[72]},{"name":"PenAlignmentCenter","features":[72]},{"name":"PenAlignmentInset","features":[72]},{"name":"PenType","features":[72]},{"name":"PenTypeHatchFill","features":[72]},{"name":"PenTypeLinearGradient","features":[72]},{"name":"PenTypePathGradient","features":[72]},{"name":"PenTypeSolidColor","features":[72]},{"name":"PenTypeTextureFill","features":[72]},{"name":"PenTypeUnknown","features":[72]},{"name":"PixelFormatAlpha","features":[72]},{"name":"PixelFormatCanonical","features":[72]},{"name":"PixelFormatDontCare","features":[72]},{"name":"PixelFormatExtended","features":[72]},{"name":"PixelFormatGDI","features":[72]},{"name":"PixelFormatIndexed","features":[72]},{"name":"PixelFormatMax","features":[72]},{"name":"PixelFormatPAlpha","features":[72]},{"name":"PixelFormatUndefined","features":[72]},{"name":"PixelOffsetMode","features":[72]},{"name":"PixelOffsetModeDefault","features":[72]},{"name":"PixelOffsetModeHalf","features":[72]},{"name":"PixelOffsetModeHighQuality","features":[72]},{"name":"PixelOffsetModeHighSpeed","features":[72]},{"name":"PixelOffsetModeInvalid","features":[72]},{"name":"PixelOffsetModeNone","features":[72]},{"name":"Point","features":[72]},{"name":"PointF","features":[72]},{"name":"PrivateFontCollection","features":[72]},{"name":"ProfileNotFound","features":[72]},{"name":"PropertyItem","features":[72]},{"name":"PropertyNotFound","features":[72]},{"name":"PropertyNotSupported","features":[72]},{"name":"PropertyTagArtist","features":[72]},{"name":"PropertyTagBitsPerSample","features":[72]},{"name":"PropertyTagCellHeight","features":[72]},{"name":"PropertyTagCellWidth","features":[72]},{"name":"PropertyTagChrominanceTable","features":[72]},{"name":"PropertyTagColorMap","features":[72]},{"name":"PropertyTagColorTransferFunction","features":[72]},{"name":"PropertyTagCompression","features":[72]},{"name":"PropertyTagCopyright","features":[72]},{"name":"PropertyTagDateTime","features":[72]},{"name":"PropertyTagDocumentName","features":[72]},{"name":"PropertyTagDotRange","features":[72]},{"name":"PropertyTagEquipMake","features":[72]},{"name":"PropertyTagEquipModel","features":[72]},{"name":"PropertyTagExifAperture","features":[72]},{"name":"PropertyTagExifBrightness","features":[72]},{"name":"PropertyTagExifCfaPattern","features":[72]},{"name":"PropertyTagExifColorSpace","features":[72]},{"name":"PropertyTagExifCompBPP","features":[72]},{"name":"PropertyTagExifCompConfig","features":[72]},{"name":"PropertyTagExifContrast","features":[72]},{"name":"PropertyTagExifCustomRendered","features":[72]},{"name":"PropertyTagExifDTDigSS","features":[72]},{"name":"PropertyTagExifDTDigitized","features":[72]},{"name":"PropertyTagExifDTOrig","features":[72]},{"name":"PropertyTagExifDTOrigSS","features":[72]},{"name":"PropertyTagExifDTSubsec","features":[72]},{"name":"PropertyTagExifDeviceSettingDesc","features":[72]},{"name":"PropertyTagExifDigitalZoomRatio","features":[72]},{"name":"PropertyTagExifExposureBias","features":[72]},{"name":"PropertyTagExifExposureIndex","features":[72]},{"name":"PropertyTagExifExposureMode","features":[72]},{"name":"PropertyTagExifExposureProg","features":[72]},{"name":"PropertyTagExifExposureTime","features":[72]},{"name":"PropertyTagExifFNumber","features":[72]},{"name":"PropertyTagExifFPXVer","features":[72]},{"name":"PropertyTagExifFileSource","features":[72]},{"name":"PropertyTagExifFlash","features":[72]},{"name":"PropertyTagExifFlashEnergy","features":[72]},{"name":"PropertyTagExifFocalLength","features":[72]},{"name":"PropertyTagExifFocalLengthIn35mmFilm","features":[72]},{"name":"PropertyTagExifFocalResUnit","features":[72]},{"name":"PropertyTagExifFocalXRes","features":[72]},{"name":"PropertyTagExifFocalYRes","features":[72]},{"name":"PropertyTagExifGainControl","features":[72]},{"name":"PropertyTagExifIFD","features":[72]},{"name":"PropertyTagExifISOSpeed","features":[72]},{"name":"PropertyTagExifInterop","features":[72]},{"name":"PropertyTagExifLightSource","features":[72]},{"name":"PropertyTagExifMakerNote","features":[72]},{"name":"PropertyTagExifMaxAperture","features":[72]},{"name":"PropertyTagExifMeteringMode","features":[72]},{"name":"PropertyTagExifOECF","features":[72]},{"name":"PropertyTagExifPixXDim","features":[72]},{"name":"PropertyTagExifPixYDim","features":[72]},{"name":"PropertyTagExifRelatedWav","features":[72]},{"name":"PropertyTagExifSaturation","features":[72]},{"name":"PropertyTagExifSceneCaptureType","features":[72]},{"name":"PropertyTagExifSceneType","features":[72]},{"name":"PropertyTagExifSensingMethod","features":[72]},{"name":"PropertyTagExifSharpness","features":[72]},{"name":"PropertyTagExifShutterSpeed","features":[72]},{"name":"PropertyTagExifSpatialFR","features":[72]},{"name":"PropertyTagExifSpectralSense","features":[72]},{"name":"PropertyTagExifSubjectArea","features":[72]},{"name":"PropertyTagExifSubjectDist","features":[72]},{"name":"PropertyTagExifSubjectDistanceRange","features":[72]},{"name":"PropertyTagExifSubjectLoc","features":[72]},{"name":"PropertyTagExifUniqueImageID","features":[72]},{"name":"PropertyTagExifUserComment","features":[72]},{"name":"PropertyTagExifVer","features":[72]},{"name":"PropertyTagExifWhiteBalance","features":[72]},{"name":"PropertyTagExtraSamples","features":[72]},{"name":"PropertyTagFillOrder","features":[72]},{"name":"PropertyTagFrameDelay","features":[72]},{"name":"PropertyTagFreeByteCounts","features":[72]},{"name":"PropertyTagFreeOffset","features":[72]},{"name":"PropertyTagGamma","features":[72]},{"name":"PropertyTagGlobalPalette","features":[72]},{"name":"PropertyTagGpsAltitude","features":[72]},{"name":"PropertyTagGpsAltitudeRef","features":[72]},{"name":"PropertyTagGpsAreaInformation","features":[72]},{"name":"PropertyTagGpsDate","features":[72]},{"name":"PropertyTagGpsDestBear","features":[72]},{"name":"PropertyTagGpsDestBearRef","features":[72]},{"name":"PropertyTagGpsDestDist","features":[72]},{"name":"PropertyTagGpsDestDistRef","features":[72]},{"name":"PropertyTagGpsDestLat","features":[72]},{"name":"PropertyTagGpsDestLatRef","features":[72]},{"name":"PropertyTagGpsDestLong","features":[72]},{"name":"PropertyTagGpsDestLongRef","features":[72]},{"name":"PropertyTagGpsDifferential","features":[72]},{"name":"PropertyTagGpsGpsDop","features":[72]},{"name":"PropertyTagGpsGpsMeasureMode","features":[72]},{"name":"PropertyTagGpsGpsSatellites","features":[72]},{"name":"PropertyTagGpsGpsStatus","features":[72]},{"name":"PropertyTagGpsGpsTime","features":[72]},{"name":"PropertyTagGpsIFD","features":[72]},{"name":"PropertyTagGpsImgDir","features":[72]},{"name":"PropertyTagGpsImgDirRef","features":[72]},{"name":"PropertyTagGpsLatitude","features":[72]},{"name":"PropertyTagGpsLatitudeRef","features":[72]},{"name":"PropertyTagGpsLongitude","features":[72]},{"name":"PropertyTagGpsLongitudeRef","features":[72]},{"name":"PropertyTagGpsMapDatum","features":[72]},{"name":"PropertyTagGpsProcessingMethod","features":[72]},{"name":"PropertyTagGpsSpeed","features":[72]},{"name":"PropertyTagGpsSpeedRef","features":[72]},{"name":"PropertyTagGpsTrack","features":[72]},{"name":"PropertyTagGpsTrackRef","features":[72]},{"name":"PropertyTagGpsVer","features":[72]},{"name":"PropertyTagGrayResponseCurve","features":[72]},{"name":"PropertyTagGrayResponseUnit","features":[72]},{"name":"PropertyTagGridSize","features":[72]},{"name":"PropertyTagHalftoneDegree","features":[72]},{"name":"PropertyTagHalftoneHints","features":[72]},{"name":"PropertyTagHalftoneLPI","features":[72]},{"name":"PropertyTagHalftoneLPIUnit","features":[72]},{"name":"PropertyTagHalftoneMisc","features":[72]},{"name":"PropertyTagHalftoneScreen","features":[72]},{"name":"PropertyTagHalftoneShape","features":[72]},{"name":"PropertyTagHostComputer","features":[72]},{"name":"PropertyTagICCProfile","features":[72]},{"name":"PropertyTagICCProfileDescriptor","features":[72]},{"name":"PropertyTagImageDescription","features":[72]},{"name":"PropertyTagImageHeight","features":[72]},{"name":"PropertyTagImageTitle","features":[72]},{"name":"PropertyTagImageWidth","features":[72]},{"name":"PropertyTagIndexBackground","features":[72]},{"name":"PropertyTagIndexTransparent","features":[72]},{"name":"PropertyTagInkNames","features":[72]},{"name":"PropertyTagInkSet","features":[72]},{"name":"PropertyTagJPEGACTables","features":[72]},{"name":"PropertyTagJPEGDCTables","features":[72]},{"name":"PropertyTagJPEGInterFormat","features":[72]},{"name":"PropertyTagJPEGInterLength","features":[72]},{"name":"PropertyTagJPEGLosslessPredictors","features":[72]},{"name":"PropertyTagJPEGPointTransforms","features":[72]},{"name":"PropertyTagJPEGProc","features":[72]},{"name":"PropertyTagJPEGQTables","features":[72]},{"name":"PropertyTagJPEGQuality","features":[72]},{"name":"PropertyTagJPEGRestartInterval","features":[72]},{"name":"PropertyTagLoopCount","features":[72]},{"name":"PropertyTagLuminanceTable","features":[72]},{"name":"PropertyTagMaxSampleValue","features":[72]},{"name":"PropertyTagMinSampleValue","features":[72]},{"name":"PropertyTagNewSubfileType","features":[72]},{"name":"PropertyTagNumberOfInks","features":[72]},{"name":"PropertyTagOrientation","features":[72]},{"name":"PropertyTagPageName","features":[72]},{"name":"PropertyTagPageNumber","features":[72]},{"name":"PropertyTagPaletteHistogram","features":[72]},{"name":"PropertyTagPhotometricInterp","features":[72]},{"name":"PropertyTagPixelPerUnitX","features":[72]},{"name":"PropertyTagPixelPerUnitY","features":[72]},{"name":"PropertyTagPixelUnit","features":[72]},{"name":"PropertyTagPlanarConfig","features":[72]},{"name":"PropertyTagPredictor","features":[72]},{"name":"PropertyTagPrimaryChromaticities","features":[72]},{"name":"PropertyTagPrintFlags","features":[72]},{"name":"PropertyTagPrintFlagsBleedWidth","features":[72]},{"name":"PropertyTagPrintFlagsBleedWidthScale","features":[72]},{"name":"PropertyTagPrintFlagsCrop","features":[72]},{"name":"PropertyTagPrintFlagsVersion","features":[72]},{"name":"PropertyTagREFBlackWhite","features":[72]},{"name":"PropertyTagResolutionUnit","features":[72]},{"name":"PropertyTagResolutionXLengthUnit","features":[72]},{"name":"PropertyTagResolutionXUnit","features":[72]},{"name":"PropertyTagResolutionYLengthUnit","features":[72]},{"name":"PropertyTagResolutionYUnit","features":[72]},{"name":"PropertyTagRowsPerStrip","features":[72]},{"name":"PropertyTagSMaxSampleValue","features":[72]},{"name":"PropertyTagSMinSampleValue","features":[72]},{"name":"PropertyTagSRGBRenderingIntent","features":[72]},{"name":"PropertyTagSampleFormat","features":[72]},{"name":"PropertyTagSamplesPerPixel","features":[72]},{"name":"PropertyTagSoftwareUsed","features":[72]},{"name":"PropertyTagStripBytesCount","features":[72]},{"name":"PropertyTagStripOffsets","features":[72]},{"name":"PropertyTagSubfileType","features":[72]},{"name":"PropertyTagT4Option","features":[72]},{"name":"PropertyTagT6Option","features":[72]},{"name":"PropertyTagTargetPrinter","features":[72]},{"name":"PropertyTagThreshHolding","features":[72]},{"name":"PropertyTagThumbnailArtist","features":[72]},{"name":"PropertyTagThumbnailBitsPerSample","features":[72]},{"name":"PropertyTagThumbnailColorDepth","features":[72]},{"name":"PropertyTagThumbnailCompressedSize","features":[72]},{"name":"PropertyTagThumbnailCompression","features":[72]},{"name":"PropertyTagThumbnailCopyRight","features":[72]},{"name":"PropertyTagThumbnailData","features":[72]},{"name":"PropertyTagThumbnailDateTime","features":[72]},{"name":"PropertyTagThumbnailEquipMake","features":[72]},{"name":"PropertyTagThumbnailEquipModel","features":[72]},{"name":"PropertyTagThumbnailFormat","features":[72]},{"name":"PropertyTagThumbnailHeight","features":[72]},{"name":"PropertyTagThumbnailImageDescription","features":[72]},{"name":"PropertyTagThumbnailImageHeight","features":[72]},{"name":"PropertyTagThumbnailImageWidth","features":[72]},{"name":"PropertyTagThumbnailOrientation","features":[72]},{"name":"PropertyTagThumbnailPhotometricInterp","features":[72]},{"name":"PropertyTagThumbnailPlanarConfig","features":[72]},{"name":"PropertyTagThumbnailPlanes","features":[72]},{"name":"PropertyTagThumbnailPrimaryChromaticities","features":[72]},{"name":"PropertyTagThumbnailRawBytes","features":[72]},{"name":"PropertyTagThumbnailRefBlackWhite","features":[72]},{"name":"PropertyTagThumbnailResolutionUnit","features":[72]},{"name":"PropertyTagThumbnailResolutionX","features":[72]},{"name":"PropertyTagThumbnailResolutionY","features":[72]},{"name":"PropertyTagThumbnailRowsPerStrip","features":[72]},{"name":"PropertyTagThumbnailSamplesPerPixel","features":[72]},{"name":"PropertyTagThumbnailSize","features":[72]},{"name":"PropertyTagThumbnailSoftwareUsed","features":[72]},{"name":"PropertyTagThumbnailStripBytesCount","features":[72]},{"name":"PropertyTagThumbnailStripOffsets","features":[72]},{"name":"PropertyTagThumbnailTransferFunction","features":[72]},{"name":"PropertyTagThumbnailWhitePoint","features":[72]},{"name":"PropertyTagThumbnailWidth","features":[72]},{"name":"PropertyTagThumbnailYCbCrCoefficients","features":[72]},{"name":"PropertyTagThumbnailYCbCrPositioning","features":[72]},{"name":"PropertyTagThumbnailYCbCrSubsampling","features":[72]},{"name":"PropertyTagTileByteCounts","features":[72]},{"name":"PropertyTagTileLength","features":[72]},{"name":"PropertyTagTileOffset","features":[72]},{"name":"PropertyTagTileWidth","features":[72]},{"name":"PropertyTagTransferFuncition","features":[72]},{"name":"PropertyTagTransferRange","features":[72]},{"name":"PropertyTagTypeASCII","features":[72]},{"name":"PropertyTagTypeByte","features":[72]},{"name":"PropertyTagTypeLong","features":[72]},{"name":"PropertyTagTypeRational","features":[72]},{"name":"PropertyTagTypeSLONG","features":[72]},{"name":"PropertyTagTypeSRational","features":[72]},{"name":"PropertyTagTypeShort","features":[72]},{"name":"PropertyTagTypeUndefined","features":[72]},{"name":"PropertyTagWhitePoint","features":[72]},{"name":"PropertyTagXPosition","features":[72]},{"name":"PropertyTagXResolution","features":[72]},{"name":"PropertyTagYCbCrCoefficients","features":[72]},{"name":"PropertyTagYCbCrPositioning","features":[72]},{"name":"PropertyTagYCbCrSubsampling","features":[72]},{"name":"PropertyTagYPosition","features":[72]},{"name":"PropertyTagYResolution","features":[72]},{"name":"QualityMode","features":[72]},{"name":"QualityModeDefault","features":[72]},{"name":"QualityModeHigh","features":[72]},{"name":"QualityModeInvalid","features":[72]},{"name":"QualityModeLow","features":[72]},{"name":"RED_SHIFT","features":[72]},{"name":"Rect","features":[72]},{"name":"RectF","features":[72]},{"name":"RedEyeCorrection","features":[1,72]},{"name":"RedEyeCorrectionEffectGuid","features":[72]},{"name":"RedEyeCorrectionParams","features":[1,72]},{"name":"Region","features":[72]},{"name":"Rotate180FlipNone","features":[72]},{"name":"Rotate180FlipX","features":[72]},{"name":"Rotate180FlipXY","features":[72]},{"name":"Rotate180FlipY","features":[72]},{"name":"Rotate270FlipNone","features":[72]},{"name":"Rotate270FlipX","features":[72]},{"name":"Rotate270FlipXY","features":[72]},{"name":"Rotate270FlipY","features":[72]},{"name":"Rotate90FlipNone","features":[72]},{"name":"Rotate90FlipX","features":[72]},{"name":"Rotate90FlipXY","features":[72]},{"name":"Rotate90FlipY","features":[72]},{"name":"RotateFlipType","features":[72]},{"name":"RotateNoneFlipNone","features":[72]},{"name":"RotateNoneFlipX","features":[72]},{"name":"RotateNoneFlipXY","features":[72]},{"name":"RotateNoneFlipY","features":[72]},{"name":"Sharpen","features":[1,72]},{"name":"SharpenEffectGuid","features":[72]},{"name":"SharpenParams","features":[72]},{"name":"Size","features":[72]},{"name":"SizeF","features":[72]},{"name":"SmoothingMode","features":[72]},{"name":"SmoothingModeAntiAlias","features":[72]},{"name":"SmoothingModeAntiAlias8x4","features":[72]},{"name":"SmoothingModeAntiAlias8x8","features":[72]},{"name":"SmoothingModeDefault","features":[72]},{"name":"SmoothingModeHighQuality","features":[72]},{"name":"SmoothingModeHighSpeed","features":[72]},{"name":"SmoothingModeInvalid","features":[72]},{"name":"SmoothingModeNone","features":[72]},{"name":"Status","features":[72]},{"name":"StringAlignment","features":[72]},{"name":"StringAlignmentCenter","features":[72]},{"name":"StringAlignmentFar","features":[72]},{"name":"StringAlignmentNear","features":[72]},{"name":"StringDigitSubstitute","features":[72]},{"name":"StringDigitSubstituteNational","features":[72]},{"name":"StringDigitSubstituteNone","features":[72]},{"name":"StringDigitSubstituteTraditional","features":[72]},{"name":"StringDigitSubstituteUser","features":[72]},{"name":"StringFormatFlags","features":[72]},{"name":"StringFormatFlagsBypassGDI","features":[72]},{"name":"StringFormatFlagsDirectionRightToLeft","features":[72]},{"name":"StringFormatFlagsDirectionVertical","features":[72]},{"name":"StringFormatFlagsDisplayFormatControl","features":[72]},{"name":"StringFormatFlagsLineLimit","features":[72]},{"name":"StringFormatFlagsMeasureTrailingSpaces","features":[72]},{"name":"StringFormatFlagsNoClip","features":[72]},{"name":"StringFormatFlagsNoFitBlackBox","features":[72]},{"name":"StringFormatFlagsNoFontFallback","features":[72]},{"name":"StringFormatFlagsNoWrap","features":[72]},{"name":"StringTrimming","features":[72]},{"name":"StringTrimmingCharacter","features":[72]},{"name":"StringTrimmingEllipsisCharacter","features":[72]},{"name":"StringTrimmingEllipsisPath","features":[72]},{"name":"StringTrimmingEllipsisWord","features":[72]},{"name":"StringTrimmingNone","features":[72]},{"name":"StringTrimmingWord","features":[72]},{"name":"TestControlForceBilinear","features":[72]},{"name":"TestControlGetBuildNumber","features":[72]},{"name":"TestControlNoICM","features":[72]},{"name":"TextRenderingHint","features":[72]},{"name":"TextRenderingHintAntiAlias","features":[72]},{"name":"TextRenderingHintAntiAliasGridFit","features":[72]},{"name":"TextRenderingHintClearTypeGridFit","features":[72]},{"name":"TextRenderingHintSingleBitPerPixel","features":[72]},{"name":"TextRenderingHintSingleBitPerPixelGridFit","features":[72]},{"name":"TextRenderingHintSystemDefault","features":[72]},{"name":"Tint","features":[1,72]},{"name":"TintEffectGuid","features":[72]},{"name":"TintParams","features":[72]},{"name":"Unit","features":[72]},{"name":"UnitDisplay","features":[72]},{"name":"UnitDocument","features":[72]},{"name":"UnitInch","features":[72]},{"name":"UnitMillimeter","features":[72]},{"name":"UnitPixel","features":[72]},{"name":"UnitPoint","features":[72]},{"name":"UnitWorld","features":[72]},{"name":"UnknownImageFormat","features":[72]},{"name":"UnsupportedGdiplusVersion","features":[72]},{"name":"ValueOverflow","features":[72]},{"name":"WarpMode","features":[72]},{"name":"WarpModeBilinear","features":[72]},{"name":"WarpModePerspective","features":[72]},{"name":"Win32Error","features":[72]},{"name":"WmfPlaceableFileHeader","features":[72]},{"name":"WmfRecordTypeAbortDoc","features":[72]},{"name":"WmfRecordTypeAnimatePalette","features":[72]},{"name":"WmfRecordTypeArc","features":[72]},{"name":"WmfRecordTypeBitBlt","features":[72]},{"name":"WmfRecordTypeChord","features":[72]},{"name":"WmfRecordTypeCreateBitmap","features":[72]},{"name":"WmfRecordTypeCreateBitmapIndirect","features":[72]},{"name":"WmfRecordTypeCreateBrush","features":[72]},{"name":"WmfRecordTypeCreateBrushIndirect","features":[72]},{"name":"WmfRecordTypeCreateFontIndirect","features":[72]},{"name":"WmfRecordTypeCreatePalette","features":[72]},{"name":"WmfRecordTypeCreatePatternBrush","features":[72]},{"name":"WmfRecordTypeCreatePenIndirect","features":[72]},{"name":"WmfRecordTypeCreateRegion","features":[72]},{"name":"WmfRecordTypeDIBBitBlt","features":[72]},{"name":"WmfRecordTypeDIBCreatePatternBrush","features":[72]},{"name":"WmfRecordTypeDIBStretchBlt","features":[72]},{"name":"WmfRecordTypeDeleteObject","features":[72]},{"name":"WmfRecordTypeDrawText","features":[72]},{"name":"WmfRecordTypeEllipse","features":[72]},{"name":"WmfRecordTypeEndDoc","features":[72]},{"name":"WmfRecordTypeEndPage","features":[72]},{"name":"WmfRecordTypeEscape","features":[72]},{"name":"WmfRecordTypeExcludeClipRect","features":[72]},{"name":"WmfRecordTypeExtFloodFill","features":[72]},{"name":"WmfRecordTypeExtTextOut","features":[72]},{"name":"WmfRecordTypeFillRegion","features":[72]},{"name":"WmfRecordTypeFloodFill","features":[72]},{"name":"WmfRecordTypeFrameRegion","features":[72]},{"name":"WmfRecordTypeIntersectClipRect","features":[72]},{"name":"WmfRecordTypeInvertRegion","features":[72]},{"name":"WmfRecordTypeLineTo","features":[72]},{"name":"WmfRecordTypeMoveTo","features":[72]},{"name":"WmfRecordTypeOffsetClipRgn","features":[72]},{"name":"WmfRecordTypeOffsetViewportOrg","features":[72]},{"name":"WmfRecordTypeOffsetWindowOrg","features":[72]},{"name":"WmfRecordTypePaintRegion","features":[72]},{"name":"WmfRecordTypePatBlt","features":[72]},{"name":"WmfRecordTypePie","features":[72]},{"name":"WmfRecordTypePolyPolygon","features":[72]},{"name":"WmfRecordTypePolygon","features":[72]},{"name":"WmfRecordTypePolyline","features":[72]},{"name":"WmfRecordTypeRealizePalette","features":[72]},{"name":"WmfRecordTypeRectangle","features":[72]},{"name":"WmfRecordTypeResetDC","features":[72]},{"name":"WmfRecordTypeResizePalette","features":[72]},{"name":"WmfRecordTypeRestoreDC","features":[72]},{"name":"WmfRecordTypeRoundRect","features":[72]},{"name":"WmfRecordTypeSaveDC","features":[72]},{"name":"WmfRecordTypeScaleViewportExt","features":[72]},{"name":"WmfRecordTypeScaleWindowExt","features":[72]},{"name":"WmfRecordTypeSelectClipRegion","features":[72]},{"name":"WmfRecordTypeSelectObject","features":[72]},{"name":"WmfRecordTypeSelectPalette","features":[72]},{"name":"WmfRecordTypeSetBkColor","features":[72]},{"name":"WmfRecordTypeSetBkMode","features":[72]},{"name":"WmfRecordTypeSetDIBToDev","features":[72]},{"name":"WmfRecordTypeSetLayout","features":[72]},{"name":"WmfRecordTypeSetMapMode","features":[72]},{"name":"WmfRecordTypeSetMapperFlags","features":[72]},{"name":"WmfRecordTypeSetPalEntries","features":[72]},{"name":"WmfRecordTypeSetPixel","features":[72]},{"name":"WmfRecordTypeSetPolyFillMode","features":[72]},{"name":"WmfRecordTypeSetROP2","features":[72]},{"name":"WmfRecordTypeSetRelAbs","features":[72]},{"name":"WmfRecordTypeSetStretchBltMode","features":[72]},{"name":"WmfRecordTypeSetTextAlign","features":[72]},{"name":"WmfRecordTypeSetTextCharExtra","features":[72]},{"name":"WmfRecordTypeSetTextColor","features":[72]},{"name":"WmfRecordTypeSetTextJustification","features":[72]},{"name":"WmfRecordTypeSetViewportExt","features":[72]},{"name":"WmfRecordTypeSetViewportOrg","features":[72]},{"name":"WmfRecordTypeSetWindowExt","features":[72]},{"name":"WmfRecordTypeSetWindowOrg","features":[72]},{"name":"WmfRecordTypeStartDoc","features":[72]},{"name":"WmfRecordTypeStartPage","features":[72]},{"name":"WmfRecordTypeStretchBlt","features":[72]},{"name":"WmfRecordTypeStretchDIB","features":[72]},{"name":"WmfRecordTypeTextOut","features":[72]},{"name":"WrapMode","features":[72]},{"name":"WrapModeClamp","features":[72]},{"name":"WrapModeTile","features":[72]},{"name":"WrapModeTileFlipX","features":[72]},{"name":"WrapModeTileFlipXY","features":[72]},{"name":"WrapModeTileFlipY","features":[72]},{"name":"WrongState","features":[72]}],"415":[{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL2","features":[73]},{"name":"D3D_COMPILE_STANDARD_FILE_INCLUDE","features":[73]}],"418":[{"name":"ChoosePixelFormat","features":[12,54]},{"name":"DescribePixelFormat","features":[12,54]},{"name":"EMRPIXELFORMAT","features":[12,54]},{"name":"GLU_AUTO_LOAD_MATRIX","features":[54]},{"name":"GLU_BEGIN","features":[54]},{"name":"GLU_CCW","features":[54]},{"name":"GLU_CULLING","features":[54]},{"name":"GLU_CW","features":[54]},{"name":"GLU_DISPLAY_MODE","features":[54]},{"name":"GLU_DOMAIN_DISTANCE","features":[54]},{"name":"GLU_EDGE_FLAG","features":[54]},{"name":"GLU_END","features":[54]},{"name":"GLU_ERROR","features":[54]},{"name":"GLU_EXTENSIONS","features":[54]},{"name":"GLU_EXTERIOR","features":[54]},{"name":"GLU_FALSE","features":[54]},{"name":"GLU_FILL","features":[54]},{"name":"GLU_FLAT","features":[54]},{"name":"GLU_INCOMPATIBLE_GL_VERSION","features":[54]},{"name":"GLU_INSIDE","features":[54]},{"name":"GLU_INTERIOR","features":[54]},{"name":"GLU_INVALID_ENUM","features":[54]},{"name":"GLU_INVALID_VALUE","features":[54]},{"name":"GLU_LINE","features":[54]},{"name":"GLU_MAP1_TRIM_2","features":[54]},{"name":"GLU_MAP1_TRIM_3","features":[54]},{"name":"GLU_NONE","features":[54]},{"name":"GLU_NURBS_ERROR1","features":[54]},{"name":"GLU_NURBS_ERROR10","features":[54]},{"name":"GLU_NURBS_ERROR11","features":[54]},{"name":"GLU_NURBS_ERROR12","features":[54]},{"name":"GLU_NURBS_ERROR13","features":[54]},{"name":"GLU_NURBS_ERROR14","features":[54]},{"name":"GLU_NURBS_ERROR15","features":[54]},{"name":"GLU_NURBS_ERROR16","features":[54]},{"name":"GLU_NURBS_ERROR17","features":[54]},{"name":"GLU_NURBS_ERROR18","features":[54]},{"name":"GLU_NURBS_ERROR19","features":[54]},{"name":"GLU_NURBS_ERROR2","features":[54]},{"name":"GLU_NURBS_ERROR20","features":[54]},{"name":"GLU_NURBS_ERROR21","features":[54]},{"name":"GLU_NURBS_ERROR22","features":[54]},{"name":"GLU_NURBS_ERROR23","features":[54]},{"name":"GLU_NURBS_ERROR24","features":[54]},{"name":"GLU_NURBS_ERROR25","features":[54]},{"name":"GLU_NURBS_ERROR26","features":[54]},{"name":"GLU_NURBS_ERROR27","features":[54]},{"name":"GLU_NURBS_ERROR28","features":[54]},{"name":"GLU_NURBS_ERROR29","features":[54]},{"name":"GLU_NURBS_ERROR3","features":[54]},{"name":"GLU_NURBS_ERROR30","features":[54]},{"name":"GLU_NURBS_ERROR31","features":[54]},{"name":"GLU_NURBS_ERROR32","features":[54]},{"name":"GLU_NURBS_ERROR33","features":[54]},{"name":"GLU_NURBS_ERROR34","features":[54]},{"name":"GLU_NURBS_ERROR35","features":[54]},{"name":"GLU_NURBS_ERROR36","features":[54]},{"name":"GLU_NURBS_ERROR37","features":[54]},{"name":"GLU_NURBS_ERROR4","features":[54]},{"name":"GLU_NURBS_ERROR5","features":[54]},{"name":"GLU_NURBS_ERROR6","features":[54]},{"name":"GLU_NURBS_ERROR7","features":[54]},{"name":"GLU_NURBS_ERROR8","features":[54]},{"name":"GLU_NURBS_ERROR9","features":[54]},{"name":"GLU_OUTLINE_PATCH","features":[54]},{"name":"GLU_OUTLINE_POLYGON","features":[54]},{"name":"GLU_OUTSIDE","features":[54]},{"name":"GLU_OUT_OF_MEMORY","features":[54]},{"name":"GLU_PARAMETRIC_ERROR","features":[54]},{"name":"GLU_PARAMETRIC_TOLERANCE","features":[54]},{"name":"GLU_PATH_LENGTH","features":[54]},{"name":"GLU_POINT","features":[54]},{"name":"GLU_SAMPLING_METHOD","features":[54]},{"name":"GLU_SAMPLING_TOLERANCE","features":[54]},{"name":"GLU_SILHOUETTE","features":[54]},{"name":"GLU_SMOOTH","features":[54]},{"name":"GLU_TESS_BEGIN","features":[54]},{"name":"GLU_TESS_BEGIN_DATA","features":[54]},{"name":"GLU_TESS_BOUNDARY_ONLY","features":[54]},{"name":"GLU_TESS_COMBINE","features":[54]},{"name":"GLU_TESS_COMBINE_DATA","features":[54]},{"name":"GLU_TESS_COORD_TOO_LARGE","features":[54]},{"name":"GLU_TESS_EDGE_FLAG","features":[54]},{"name":"GLU_TESS_EDGE_FLAG_DATA","features":[54]},{"name":"GLU_TESS_END","features":[54]},{"name":"GLU_TESS_END_DATA","features":[54]},{"name":"GLU_TESS_ERROR","features":[54]},{"name":"GLU_TESS_ERROR1","features":[54]},{"name":"GLU_TESS_ERROR2","features":[54]},{"name":"GLU_TESS_ERROR3","features":[54]},{"name":"GLU_TESS_ERROR4","features":[54]},{"name":"GLU_TESS_ERROR5","features":[54]},{"name":"GLU_TESS_ERROR6","features":[54]},{"name":"GLU_TESS_ERROR7","features":[54]},{"name":"GLU_TESS_ERROR8","features":[54]},{"name":"GLU_TESS_ERROR_DATA","features":[54]},{"name":"GLU_TESS_MISSING_BEGIN_CONTOUR","features":[54]},{"name":"GLU_TESS_MISSING_BEGIN_POLYGON","features":[54]},{"name":"GLU_TESS_MISSING_END_CONTOUR","features":[54]},{"name":"GLU_TESS_MISSING_END_POLYGON","features":[54]},{"name":"GLU_TESS_NEED_COMBINE_CALLBACK","features":[54]},{"name":"GLU_TESS_TOLERANCE","features":[54]},{"name":"GLU_TESS_VERTEX","features":[54]},{"name":"GLU_TESS_VERTEX_DATA","features":[54]},{"name":"GLU_TESS_WINDING_ABS_GEQ_TWO","features":[54]},{"name":"GLU_TESS_WINDING_NEGATIVE","features":[54]},{"name":"GLU_TESS_WINDING_NONZERO","features":[54]},{"name":"GLU_TESS_WINDING_ODD","features":[54]},{"name":"GLU_TESS_WINDING_POSITIVE","features":[54]},{"name":"GLU_TESS_WINDING_RULE","features":[54]},{"name":"GLU_TRUE","features":[54]},{"name":"GLU_UNKNOWN","features":[54]},{"name":"GLU_U_STEP","features":[54]},{"name":"GLU_VERSION","features":[54]},{"name":"GLU_VERSION_1_1","features":[54]},{"name":"GLU_VERSION_1_2","features":[54]},{"name":"GLU_VERTEX","features":[54]},{"name":"GLU_V_STEP","features":[54]},{"name":"GLUnurbs","features":[54]},{"name":"GLUnurbsErrorProc","features":[54]},{"name":"GLUquadric","features":[54]},{"name":"GLUquadricErrorProc","features":[54]},{"name":"GLUtessBeginDataProc","features":[54]},{"name":"GLUtessBeginProc","features":[54]},{"name":"GLUtessCombineDataProc","features":[54]},{"name":"GLUtessCombineProc","features":[54]},{"name":"GLUtessEdgeFlagDataProc","features":[54]},{"name":"GLUtessEdgeFlagProc","features":[54]},{"name":"GLUtessEndDataProc","features":[54]},{"name":"GLUtessEndProc","features":[54]},{"name":"GLUtessErrorDataProc","features":[54]},{"name":"GLUtessErrorProc","features":[54]},{"name":"GLUtessVertexDataProc","features":[54]},{"name":"GLUtessVertexProc","features":[54]},{"name":"GLUtesselator","features":[54]},{"name":"GLYPHMETRICSFLOAT","features":[54]},{"name":"GL_2D","features":[54]},{"name":"GL_2_BYTES","features":[54]},{"name":"GL_3D","features":[54]},{"name":"GL_3D_COLOR","features":[54]},{"name":"GL_3D_COLOR_TEXTURE","features":[54]},{"name":"GL_3_BYTES","features":[54]},{"name":"GL_4D_COLOR_TEXTURE","features":[54]},{"name":"GL_4_BYTES","features":[54]},{"name":"GL_ACCUM","features":[54]},{"name":"GL_ACCUM_ALPHA_BITS","features":[54]},{"name":"GL_ACCUM_BLUE_BITS","features":[54]},{"name":"GL_ACCUM_BUFFER_BIT","features":[54]},{"name":"GL_ACCUM_CLEAR_VALUE","features":[54]},{"name":"GL_ACCUM_GREEN_BITS","features":[54]},{"name":"GL_ACCUM_RED_BITS","features":[54]},{"name":"GL_ADD","features":[54]},{"name":"GL_ALL_ATTRIB_BITS","features":[54]},{"name":"GL_ALPHA","features":[54]},{"name":"GL_ALPHA12","features":[54]},{"name":"GL_ALPHA16","features":[54]},{"name":"GL_ALPHA4","features":[54]},{"name":"GL_ALPHA8","features":[54]},{"name":"GL_ALPHA_BIAS","features":[54]},{"name":"GL_ALPHA_BITS","features":[54]},{"name":"GL_ALPHA_SCALE","features":[54]},{"name":"GL_ALPHA_TEST","features":[54]},{"name":"GL_ALPHA_TEST_FUNC","features":[54]},{"name":"GL_ALPHA_TEST_REF","features":[54]},{"name":"GL_ALWAYS","features":[54]},{"name":"GL_AMBIENT","features":[54]},{"name":"GL_AMBIENT_AND_DIFFUSE","features":[54]},{"name":"GL_AND","features":[54]},{"name":"GL_AND_INVERTED","features":[54]},{"name":"GL_AND_REVERSE","features":[54]},{"name":"GL_ATTRIB_STACK_DEPTH","features":[54]},{"name":"GL_AUTO_NORMAL","features":[54]},{"name":"GL_AUX0","features":[54]},{"name":"GL_AUX1","features":[54]},{"name":"GL_AUX2","features":[54]},{"name":"GL_AUX3","features":[54]},{"name":"GL_AUX_BUFFERS","features":[54]},{"name":"GL_BACK","features":[54]},{"name":"GL_BACK_LEFT","features":[54]},{"name":"GL_BACK_RIGHT","features":[54]},{"name":"GL_BGRA_EXT","features":[54]},{"name":"GL_BGR_EXT","features":[54]},{"name":"GL_BITMAP","features":[54]},{"name":"GL_BITMAP_TOKEN","features":[54]},{"name":"GL_BLEND","features":[54]},{"name":"GL_BLEND_DST","features":[54]},{"name":"GL_BLEND_SRC","features":[54]},{"name":"GL_BLUE","features":[54]},{"name":"GL_BLUE_BIAS","features":[54]},{"name":"GL_BLUE_BITS","features":[54]},{"name":"GL_BLUE_SCALE","features":[54]},{"name":"GL_BYTE","features":[54]},{"name":"GL_C3F_V3F","features":[54]},{"name":"GL_C4F_N3F_V3F","features":[54]},{"name":"GL_C4UB_V2F","features":[54]},{"name":"GL_C4UB_V3F","features":[54]},{"name":"GL_CCW","features":[54]},{"name":"GL_CLAMP","features":[54]},{"name":"GL_CLEAR","features":[54]},{"name":"GL_CLIENT_ALL_ATTRIB_BITS","features":[54]},{"name":"GL_CLIENT_ATTRIB_STACK_DEPTH","features":[54]},{"name":"GL_CLIENT_PIXEL_STORE_BIT","features":[54]},{"name":"GL_CLIENT_VERTEX_ARRAY_BIT","features":[54]},{"name":"GL_CLIP_PLANE0","features":[54]},{"name":"GL_CLIP_PLANE1","features":[54]},{"name":"GL_CLIP_PLANE2","features":[54]},{"name":"GL_CLIP_PLANE3","features":[54]},{"name":"GL_CLIP_PLANE4","features":[54]},{"name":"GL_CLIP_PLANE5","features":[54]},{"name":"GL_COEFF","features":[54]},{"name":"GL_COLOR","features":[54]},{"name":"GL_COLOR_ARRAY","features":[54]},{"name":"GL_COLOR_ARRAY_COUNT_EXT","features":[54]},{"name":"GL_COLOR_ARRAY_EXT","features":[54]},{"name":"GL_COLOR_ARRAY_POINTER","features":[54]},{"name":"GL_COLOR_ARRAY_POINTER_EXT","features":[54]},{"name":"GL_COLOR_ARRAY_SIZE","features":[54]},{"name":"GL_COLOR_ARRAY_SIZE_EXT","features":[54]},{"name":"GL_COLOR_ARRAY_STRIDE","features":[54]},{"name":"GL_COLOR_ARRAY_STRIDE_EXT","features":[54]},{"name":"GL_COLOR_ARRAY_TYPE","features":[54]},{"name":"GL_COLOR_ARRAY_TYPE_EXT","features":[54]},{"name":"GL_COLOR_BUFFER_BIT","features":[54]},{"name":"GL_COLOR_CLEAR_VALUE","features":[54]},{"name":"GL_COLOR_INDEX","features":[54]},{"name":"GL_COLOR_INDEX12_EXT","features":[54]},{"name":"GL_COLOR_INDEX16_EXT","features":[54]},{"name":"GL_COLOR_INDEX1_EXT","features":[54]},{"name":"GL_COLOR_INDEX2_EXT","features":[54]},{"name":"GL_COLOR_INDEX4_EXT","features":[54]},{"name":"GL_COLOR_INDEX8_EXT","features":[54]},{"name":"GL_COLOR_INDEXES","features":[54]},{"name":"GL_COLOR_LOGIC_OP","features":[54]},{"name":"GL_COLOR_MATERIAL","features":[54]},{"name":"GL_COLOR_MATERIAL_FACE","features":[54]},{"name":"GL_COLOR_MATERIAL_PARAMETER","features":[54]},{"name":"GL_COLOR_TABLE_ALPHA_SIZE_EXT","features":[54]},{"name":"GL_COLOR_TABLE_BLUE_SIZE_EXT","features":[54]},{"name":"GL_COLOR_TABLE_FORMAT_EXT","features":[54]},{"name":"GL_COLOR_TABLE_GREEN_SIZE_EXT","features":[54]},{"name":"GL_COLOR_TABLE_INTENSITY_SIZE_EXT","features":[54]},{"name":"GL_COLOR_TABLE_LUMINANCE_SIZE_EXT","features":[54]},{"name":"GL_COLOR_TABLE_RED_SIZE_EXT","features":[54]},{"name":"GL_COLOR_TABLE_WIDTH_EXT","features":[54]},{"name":"GL_COLOR_WRITEMASK","features":[54]},{"name":"GL_COMPILE","features":[54]},{"name":"GL_COMPILE_AND_EXECUTE","features":[54]},{"name":"GL_CONSTANT_ATTENUATION","features":[54]},{"name":"GL_COPY","features":[54]},{"name":"GL_COPY_INVERTED","features":[54]},{"name":"GL_COPY_PIXEL_TOKEN","features":[54]},{"name":"GL_CULL_FACE","features":[54]},{"name":"GL_CULL_FACE_MODE","features":[54]},{"name":"GL_CURRENT_BIT","features":[54]},{"name":"GL_CURRENT_COLOR","features":[54]},{"name":"GL_CURRENT_INDEX","features":[54]},{"name":"GL_CURRENT_NORMAL","features":[54]},{"name":"GL_CURRENT_RASTER_COLOR","features":[54]},{"name":"GL_CURRENT_RASTER_DISTANCE","features":[54]},{"name":"GL_CURRENT_RASTER_INDEX","features":[54]},{"name":"GL_CURRENT_RASTER_POSITION","features":[54]},{"name":"GL_CURRENT_RASTER_POSITION_VALID","features":[54]},{"name":"GL_CURRENT_RASTER_TEXTURE_COORDS","features":[54]},{"name":"GL_CURRENT_TEXTURE_COORDS","features":[54]},{"name":"GL_CW","features":[54]},{"name":"GL_DECAL","features":[54]},{"name":"GL_DECR","features":[54]},{"name":"GL_DEPTH","features":[54]},{"name":"GL_DEPTH_BIAS","features":[54]},{"name":"GL_DEPTH_BITS","features":[54]},{"name":"GL_DEPTH_BUFFER_BIT","features":[54]},{"name":"GL_DEPTH_CLEAR_VALUE","features":[54]},{"name":"GL_DEPTH_COMPONENT","features":[54]},{"name":"GL_DEPTH_FUNC","features":[54]},{"name":"GL_DEPTH_RANGE","features":[54]},{"name":"GL_DEPTH_SCALE","features":[54]},{"name":"GL_DEPTH_TEST","features":[54]},{"name":"GL_DEPTH_WRITEMASK","features":[54]},{"name":"GL_DIFFUSE","features":[54]},{"name":"GL_DITHER","features":[54]},{"name":"GL_DOMAIN","features":[54]},{"name":"GL_DONT_CARE","features":[54]},{"name":"GL_DOUBLE","features":[54]},{"name":"GL_DOUBLEBUFFER","features":[54]},{"name":"GL_DOUBLE_EXT","features":[54]},{"name":"GL_DRAW_BUFFER","features":[54]},{"name":"GL_DRAW_PIXEL_TOKEN","features":[54]},{"name":"GL_DST_ALPHA","features":[54]},{"name":"GL_DST_COLOR","features":[54]},{"name":"GL_EDGE_FLAG","features":[54]},{"name":"GL_EDGE_FLAG_ARRAY","features":[54]},{"name":"GL_EDGE_FLAG_ARRAY_COUNT_EXT","features":[54]},{"name":"GL_EDGE_FLAG_ARRAY_EXT","features":[54]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER","features":[54]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER_EXT","features":[54]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE","features":[54]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE_EXT","features":[54]},{"name":"GL_EMISSION","features":[54]},{"name":"GL_ENABLE_BIT","features":[54]},{"name":"GL_EQUAL","features":[54]},{"name":"GL_EQUIV","features":[54]},{"name":"GL_EVAL_BIT","features":[54]},{"name":"GL_EXP","features":[54]},{"name":"GL_EXP2","features":[54]},{"name":"GL_EXTENSIONS","features":[54]},{"name":"GL_EXT_bgra","features":[54]},{"name":"GL_EXT_paletted_texture","features":[54]},{"name":"GL_EXT_vertex_array","features":[54]},{"name":"GL_EYE_LINEAR","features":[54]},{"name":"GL_EYE_PLANE","features":[54]},{"name":"GL_FALSE","features":[54]},{"name":"GL_FASTEST","features":[54]},{"name":"GL_FEEDBACK","features":[54]},{"name":"GL_FEEDBACK_BUFFER_POINTER","features":[54]},{"name":"GL_FEEDBACK_BUFFER_SIZE","features":[54]},{"name":"GL_FEEDBACK_BUFFER_TYPE","features":[54]},{"name":"GL_FILL","features":[54]},{"name":"GL_FLAT","features":[54]},{"name":"GL_FLOAT","features":[54]},{"name":"GL_FOG","features":[54]},{"name":"GL_FOG_BIT","features":[54]},{"name":"GL_FOG_COLOR","features":[54]},{"name":"GL_FOG_DENSITY","features":[54]},{"name":"GL_FOG_END","features":[54]},{"name":"GL_FOG_HINT","features":[54]},{"name":"GL_FOG_INDEX","features":[54]},{"name":"GL_FOG_MODE","features":[54]},{"name":"GL_FOG_SPECULAR_TEXTURE_WIN","features":[54]},{"name":"GL_FOG_START","features":[54]},{"name":"GL_FRONT","features":[54]},{"name":"GL_FRONT_AND_BACK","features":[54]},{"name":"GL_FRONT_FACE","features":[54]},{"name":"GL_FRONT_LEFT","features":[54]},{"name":"GL_FRONT_RIGHT","features":[54]},{"name":"GL_GEQUAL","features":[54]},{"name":"GL_GREATER","features":[54]},{"name":"GL_GREEN","features":[54]},{"name":"GL_GREEN_BIAS","features":[54]},{"name":"GL_GREEN_BITS","features":[54]},{"name":"GL_GREEN_SCALE","features":[54]},{"name":"GL_HINT_BIT","features":[54]},{"name":"GL_INCR","features":[54]},{"name":"GL_INDEX_ARRAY","features":[54]},{"name":"GL_INDEX_ARRAY_COUNT_EXT","features":[54]},{"name":"GL_INDEX_ARRAY_EXT","features":[54]},{"name":"GL_INDEX_ARRAY_POINTER","features":[54]},{"name":"GL_INDEX_ARRAY_POINTER_EXT","features":[54]},{"name":"GL_INDEX_ARRAY_STRIDE","features":[54]},{"name":"GL_INDEX_ARRAY_STRIDE_EXT","features":[54]},{"name":"GL_INDEX_ARRAY_TYPE","features":[54]},{"name":"GL_INDEX_ARRAY_TYPE_EXT","features":[54]},{"name":"GL_INDEX_BITS","features":[54]},{"name":"GL_INDEX_CLEAR_VALUE","features":[54]},{"name":"GL_INDEX_LOGIC_OP","features":[54]},{"name":"GL_INDEX_MODE","features":[54]},{"name":"GL_INDEX_OFFSET","features":[54]},{"name":"GL_INDEX_SHIFT","features":[54]},{"name":"GL_INDEX_WRITEMASK","features":[54]},{"name":"GL_INT","features":[54]},{"name":"GL_INTENSITY","features":[54]},{"name":"GL_INTENSITY12","features":[54]},{"name":"GL_INTENSITY16","features":[54]},{"name":"GL_INTENSITY4","features":[54]},{"name":"GL_INTENSITY8","features":[54]},{"name":"GL_INVALID_ENUM","features":[54]},{"name":"GL_INVALID_OPERATION","features":[54]},{"name":"GL_INVALID_VALUE","features":[54]},{"name":"GL_INVERT","features":[54]},{"name":"GL_KEEP","features":[54]},{"name":"GL_LEFT","features":[54]},{"name":"GL_LEQUAL","features":[54]},{"name":"GL_LESS","features":[54]},{"name":"GL_LIGHT0","features":[54]},{"name":"GL_LIGHT1","features":[54]},{"name":"GL_LIGHT2","features":[54]},{"name":"GL_LIGHT3","features":[54]},{"name":"GL_LIGHT4","features":[54]},{"name":"GL_LIGHT5","features":[54]},{"name":"GL_LIGHT6","features":[54]},{"name":"GL_LIGHT7","features":[54]},{"name":"GL_LIGHTING","features":[54]},{"name":"GL_LIGHTING_BIT","features":[54]},{"name":"GL_LIGHT_MODEL_AMBIENT","features":[54]},{"name":"GL_LIGHT_MODEL_LOCAL_VIEWER","features":[54]},{"name":"GL_LIGHT_MODEL_TWO_SIDE","features":[54]},{"name":"GL_LINE","features":[54]},{"name":"GL_LINEAR","features":[54]},{"name":"GL_LINEAR_ATTENUATION","features":[54]},{"name":"GL_LINEAR_MIPMAP_LINEAR","features":[54]},{"name":"GL_LINEAR_MIPMAP_NEAREST","features":[54]},{"name":"GL_LINES","features":[54]},{"name":"GL_LINE_BIT","features":[54]},{"name":"GL_LINE_LOOP","features":[54]},{"name":"GL_LINE_RESET_TOKEN","features":[54]},{"name":"GL_LINE_SMOOTH","features":[54]},{"name":"GL_LINE_SMOOTH_HINT","features":[54]},{"name":"GL_LINE_STIPPLE","features":[54]},{"name":"GL_LINE_STIPPLE_PATTERN","features":[54]},{"name":"GL_LINE_STIPPLE_REPEAT","features":[54]},{"name":"GL_LINE_STRIP","features":[54]},{"name":"GL_LINE_TOKEN","features":[54]},{"name":"GL_LINE_WIDTH","features":[54]},{"name":"GL_LINE_WIDTH_GRANULARITY","features":[54]},{"name":"GL_LINE_WIDTH_RANGE","features":[54]},{"name":"GL_LIST_BASE","features":[54]},{"name":"GL_LIST_BIT","features":[54]},{"name":"GL_LIST_INDEX","features":[54]},{"name":"GL_LIST_MODE","features":[54]},{"name":"GL_LOAD","features":[54]},{"name":"GL_LOGIC_OP","features":[54]},{"name":"GL_LOGIC_OP_MODE","features":[54]},{"name":"GL_LUMINANCE","features":[54]},{"name":"GL_LUMINANCE12","features":[54]},{"name":"GL_LUMINANCE12_ALPHA12","features":[54]},{"name":"GL_LUMINANCE12_ALPHA4","features":[54]},{"name":"GL_LUMINANCE16","features":[54]},{"name":"GL_LUMINANCE16_ALPHA16","features":[54]},{"name":"GL_LUMINANCE4","features":[54]},{"name":"GL_LUMINANCE4_ALPHA4","features":[54]},{"name":"GL_LUMINANCE6_ALPHA2","features":[54]},{"name":"GL_LUMINANCE8","features":[54]},{"name":"GL_LUMINANCE8_ALPHA8","features":[54]},{"name":"GL_LUMINANCE_ALPHA","features":[54]},{"name":"GL_MAP1_COLOR_4","features":[54]},{"name":"GL_MAP1_GRID_DOMAIN","features":[54]},{"name":"GL_MAP1_GRID_SEGMENTS","features":[54]},{"name":"GL_MAP1_INDEX","features":[54]},{"name":"GL_MAP1_NORMAL","features":[54]},{"name":"GL_MAP1_TEXTURE_COORD_1","features":[54]},{"name":"GL_MAP1_TEXTURE_COORD_2","features":[54]},{"name":"GL_MAP1_TEXTURE_COORD_3","features":[54]},{"name":"GL_MAP1_TEXTURE_COORD_4","features":[54]},{"name":"GL_MAP1_VERTEX_3","features":[54]},{"name":"GL_MAP1_VERTEX_4","features":[54]},{"name":"GL_MAP2_COLOR_4","features":[54]},{"name":"GL_MAP2_GRID_DOMAIN","features":[54]},{"name":"GL_MAP2_GRID_SEGMENTS","features":[54]},{"name":"GL_MAP2_INDEX","features":[54]},{"name":"GL_MAP2_NORMAL","features":[54]},{"name":"GL_MAP2_TEXTURE_COORD_1","features":[54]},{"name":"GL_MAP2_TEXTURE_COORD_2","features":[54]},{"name":"GL_MAP2_TEXTURE_COORD_3","features":[54]},{"name":"GL_MAP2_TEXTURE_COORD_4","features":[54]},{"name":"GL_MAP2_VERTEX_3","features":[54]},{"name":"GL_MAP2_VERTEX_4","features":[54]},{"name":"GL_MAP_COLOR","features":[54]},{"name":"GL_MAP_STENCIL","features":[54]},{"name":"GL_MATRIX_MODE","features":[54]},{"name":"GL_MAX_ATTRIB_STACK_DEPTH","features":[54]},{"name":"GL_MAX_CLIENT_ATTRIB_STACK_DEPTH","features":[54]},{"name":"GL_MAX_CLIP_PLANES","features":[54]},{"name":"GL_MAX_ELEMENTS_INDICES_WIN","features":[54]},{"name":"GL_MAX_ELEMENTS_VERTICES_WIN","features":[54]},{"name":"GL_MAX_EVAL_ORDER","features":[54]},{"name":"GL_MAX_LIGHTS","features":[54]},{"name":"GL_MAX_LIST_NESTING","features":[54]},{"name":"GL_MAX_MODELVIEW_STACK_DEPTH","features":[54]},{"name":"GL_MAX_NAME_STACK_DEPTH","features":[54]},{"name":"GL_MAX_PIXEL_MAP_TABLE","features":[54]},{"name":"GL_MAX_PROJECTION_STACK_DEPTH","features":[54]},{"name":"GL_MAX_TEXTURE_SIZE","features":[54]},{"name":"GL_MAX_TEXTURE_STACK_DEPTH","features":[54]},{"name":"GL_MAX_VIEWPORT_DIMS","features":[54]},{"name":"GL_MODELVIEW","features":[54]},{"name":"GL_MODELVIEW_MATRIX","features":[54]},{"name":"GL_MODELVIEW_STACK_DEPTH","features":[54]},{"name":"GL_MODULATE","features":[54]},{"name":"GL_MULT","features":[54]},{"name":"GL_N3F_V3F","features":[54]},{"name":"GL_NAME_STACK_DEPTH","features":[54]},{"name":"GL_NAND","features":[54]},{"name":"GL_NEAREST","features":[54]},{"name":"GL_NEAREST_MIPMAP_LINEAR","features":[54]},{"name":"GL_NEAREST_MIPMAP_NEAREST","features":[54]},{"name":"GL_NEVER","features":[54]},{"name":"GL_NICEST","features":[54]},{"name":"GL_NONE","features":[54]},{"name":"GL_NOOP","features":[54]},{"name":"GL_NOR","features":[54]},{"name":"GL_NORMALIZE","features":[54]},{"name":"GL_NORMAL_ARRAY","features":[54]},{"name":"GL_NORMAL_ARRAY_COUNT_EXT","features":[54]},{"name":"GL_NORMAL_ARRAY_EXT","features":[54]},{"name":"GL_NORMAL_ARRAY_POINTER","features":[54]},{"name":"GL_NORMAL_ARRAY_POINTER_EXT","features":[54]},{"name":"GL_NORMAL_ARRAY_STRIDE","features":[54]},{"name":"GL_NORMAL_ARRAY_STRIDE_EXT","features":[54]},{"name":"GL_NORMAL_ARRAY_TYPE","features":[54]},{"name":"GL_NORMAL_ARRAY_TYPE_EXT","features":[54]},{"name":"GL_NOTEQUAL","features":[54]},{"name":"GL_NO_ERROR","features":[54]},{"name":"GL_OBJECT_LINEAR","features":[54]},{"name":"GL_OBJECT_PLANE","features":[54]},{"name":"GL_ONE","features":[54]},{"name":"GL_ONE_MINUS_DST_ALPHA","features":[54]},{"name":"GL_ONE_MINUS_DST_COLOR","features":[54]},{"name":"GL_ONE_MINUS_SRC_ALPHA","features":[54]},{"name":"GL_ONE_MINUS_SRC_COLOR","features":[54]},{"name":"GL_OR","features":[54]},{"name":"GL_ORDER","features":[54]},{"name":"GL_OR_INVERTED","features":[54]},{"name":"GL_OR_REVERSE","features":[54]},{"name":"GL_OUT_OF_MEMORY","features":[54]},{"name":"GL_PACK_ALIGNMENT","features":[54]},{"name":"GL_PACK_LSB_FIRST","features":[54]},{"name":"GL_PACK_ROW_LENGTH","features":[54]},{"name":"GL_PACK_SKIP_PIXELS","features":[54]},{"name":"GL_PACK_SKIP_ROWS","features":[54]},{"name":"GL_PACK_SWAP_BYTES","features":[54]},{"name":"GL_PASS_THROUGH_TOKEN","features":[54]},{"name":"GL_PERSPECTIVE_CORRECTION_HINT","features":[54]},{"name":"GL_PHONG_HINT_WIN","features":[54]},{"name":"GL_PHONG_WIN","features":[54]},{"name":"GL_PIXEL_MAP_A_TO_A","features":[54]},{"name":"GL_PIXEL_MAP_A_TO_A_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_B_TO_B","features":[54]},{"name":"GL_PIXEL_MAP_B_TO_B_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_G_TO_G","features":[54]},{"name":"GL_PIXEL_MAP_G_TO_G_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_A","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_A_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_B","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_B_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_G","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_G_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_I","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_I_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_R","features":[54]},{"name":"GL_PIXEL_MAP_I_TO_R_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_R_TO_R","features":[54]},{"name":"GL_PIXEL_MAP_R_TO_R_SIZE","features":[54]},{"name":"GL_PIXEL_MAP_S_TO_S","features":[54]},{"name":"GL_PIXEL_MAP_S_TO_S_SIZE","features":[54]},{"name":"GL_PIXEL_MODE_BIT","features":[54]},{"name":"GL_POINT","features":[54]},{"name":"GL_POINTS","features":[54]},{"name":"GL_POINT_BIT","features":[54]},{"name":"GL_POINT_SIZE","features":[54]},{"name":"GL_POINT_SIZE_GRANULARITY","features":[54]},{"name":"GL_POINT_SIZE_RANGE","features":[54]},{"name":"GL_POINT_SMOOTH","features":[54]},{"name":"GL_POINT_SMOOTH_HINT","features":[54]},{"name":"GL_POINT_TOKEN","features":[54]},{"name":"GL_POLYGON","features":[54]},{"name":"GL_POLYGON_BIT","features":[54]},{"name":"GL_POLYGON_MODE","features":[54]},{"name":"GL_POLYGON_OFFSET_FACTOR","features":[54]},{"name":"GL_POLYGON_OFFSET_FILL","features":[54]},{"name":"GL_POLYGON_OFFSET_LINE","features":[54]},{"name":"GL_POLYGON_OFFSET_POINT","features":[54]},{"name":"GL_POLYGON_OFFSET_UNITS","features":[54]},{"name":"GL_POLYGON_SMOOTH","features":[54]},{"name":"GL_POLYGON_SMOOTH_HINT","features":[54]},{"name":"GL_POLYGON_STIPPLE","features":[54]},{"name":"GL_POLYGON_STIPPLE_BIT","features":[54]},{"name":"GL_POLYGON_TOKEN","features":[54]},{"name":"GL_POSITION","features":[54]},{"name":"GL_PROJECTION","features":[54]},{"name":"GL_PROJECTION_MATRIX","features":[54]},{"name":"GL_PROJECTION_STACK_DEPTH","features":[54]},{"name":"GL_PROXY_TEXTURE_1D","features":[54]},{"name":"GL_PROXY_TEXTURE_2D","features":[54]},{"name":"GL_Q","features":[54]},{"name":"GL_QUADRATIC_ATTENUATION","features":[54]},{"name":"GL_QUADS","features":[54]},{"name":"GL_QUAD_STRIP","features":[54]},{"name":"GL_R","features":[54]},{"name":"GL_R3_G3_B2","features":[54]},{"name":"GL_READ_BUFFER","features":[54]},{"name":"GL_RED","features":[54]},{"name":"GL_RED_BIAS","features":[54]},{"name":"GL_RED_BITS","features":[54]},{"name":"GL_RED_SCALE","features":[54]},{"name":"GL_RENDER","features":[54]},{"name":"GL_RENDERER","features":[54]},{"name":"GL_RENDER_MODE","features":[54]},{"name":"GL_REPEAT","features":[54]},{"name":"GL_REPLACE","features":[54]},{"name":"GL_RETURN","features":[54]},{"name":"GL_RGB","features":[54]},{"name":"GL_RGB10","features":[54]},{"name":"GL_RGB10_A2","features":[54]},{"name":"GL_RGB12","features":[54]},{"name":"GL_RGB16","features":[54]},{"name":"GL_RGB4","features":[54]},{"name":"GL_RGB5","features":[54]},{"name":"GL_RGB5_A1","features":[54]},{"name":"GL_RGB8","features":[54]},{"name":"GL_RGBA","features":[54]},{"name":"GL_RGBA12","features":[54]},{"name":"GL_RGBA16","features":[54]},{"name":"GL_RGBA2","features":[54]},{"name":"GL_RGBA4","features":[54]},{"name":"GL_RGBA8","features":[54]},{"name":"GL_RGBA_MODE","features":[54]},{"name":"GL_RIGHT","features":[54]},{"name":"GL_S","features":[54]},{"name":"GL_SCISSOR_BIT","features":[54]},{"name":"GL_SCISSOR_BOX","features":[54]},{"name":"GL_SCISSOR_TEST","features":[54]},{"name":"GL_SELECT","features":[54]},{"name":"GL_SELECTION_BUFFER_POINTER","features":[54]},{"name":"GL_SELECTION_BUFFER_SIZE","features":[54]},{"name":"GL_SET","features":[54]},{"name":"GL_SHADE_MODEL","features":[54]},{"name":"GL_SHININESS","features":[54]},{"name":"GL_SHORT","features":[54]},{"name":"GL_SMOOTH","features":[54]},{"name":"GL_SPECULAR","features":[54]},{"name":"GL_SPHERE_MAP","features":[54]},{"name":"GL_SPOT_CUTOFF","features":[54]},{"name":"GL_SPOT_DIRECTION","features":[54]},{"name":"GL_SPOT_EXPONENT","features":[54]},{"name":"GL_SRC_ALPHA","features":[54]},{"name":"GL_SRC_ALPHA_SATURATE","features":[54]},{"name":"GL_SRC_COLOR","features":[54]},{"name":"GL_STACK_OVERFLOW","features":[54]},{"name":"GL_STACK_UNDERFLOW","features":[54]},{"name":"GL_STENCIL","features":[54]},{"name":"GL_STENCIL_BITS","features":[54]},{"name":"GL_STENCIL_BUFFER_BIT","features":[54]},{"name":"GL_STENCIL_CLEAR_VALUE","features":[54]},{"name":"GL_STENCIL_FAIL","features":[54]},{"name":"GL_STENCIL_FUNC","features":[54]},{"name":"GL_STENCIL_INDEX","features":[54]},{"name":"GL_STENCIL_PASS_DEPTH_FAIL","features":[54]},{"name":"GL_STENCIL_PASS_DEPTH_PASS","features":[54]},{"name":"GL_STENCIL_REF","features":[54]},{"name":"GL_STENCIL_TEST","features":[54]},{"name":"GL_STENCIL_VALUE_MASK","features":[54]},{"name":"GL_STENCIL_WRITEMASK","features":[54]},{"name":"GL_STEREO","features":[54]},{"name":"GL_SUBPIXEL_BITS","features":[54]},{"name":"GL_T","features":[54]},{"name":"GL_T2F_C3F_V3F","features":[54]},{"name":"GL_T2F_C4F_N3F_V3F","features":[54]},{"name":"GL_T2F_C4UB_V3F","features":[54]},{"name":"GL_T2F_N3F_V3F","features":[54]},{"name":"GL_T2F_V3F","features":[54]},{"name":"GL_T4F_C4F_N3F_V4F","features":[54]},{"name":"GL_T4F_V4F","features":[54]},{"name":"GL_TEXTURE","features":[54]},{"name":"GL_TEXTURE_1D","features":[54]},{"name":"GL_TEXTURE_2D","features":[54]},{"name":"GL_TEXTURE_ALPHA_SIZE","features":[54]},{"name":"GL_TEXTURE_BINDING_1D","features":[54]},{"name":"GL_TEXTURE_BINDING_2D","features":[54]},{"name":"GL_TEXTURE_BIT","features":[54]},{"name":"GL_TEXTURE_BLUE_SIZE","features":[54]},{"name":"GL_TEXTURE_BORDER","features":[54]},{"name":"GL_TEXTURE_BORDER_COLOR","features":[54]},{"name":"GL_TEXTURE_COMPONENTS","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_COUNT_EXT","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_EXT","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER_EXT","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE_EXT","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE_EXT","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE","features":[54]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE_EXT","features":[54]},{"name":"GL_TEXTURE_ENV","features":[54]},{"name":"GL_TEXTURE_ENV_COLOR","features":[54]},{"name":"GL_TEXTURE_ENV_MODE","features":[54]},{"name":"GL_TEXTURE_GEN_MODE","features":[54]},{"name":"GL_TEXTURE_GEN_Q","features":[54]},{"name":"GL_TEXTURE_GEN_R","features":[54]},{"name":"GL_TEXTURE_GEN_S","features":[54]},{"name":"GL_TEXTURE_GEN_T","features":[54]},{"name":"GL_TEXTURE_GREEN_SIZE","features":[54]},{"name":"GL_TEXTURE_HEIGHT","features":[54]},{"name":"GL_TEXTURE_INTENSITY_SIZE","features":[54]},{"name":"GL_TEXTURE_INTERNAL_FORMAT","features":[54]},{"name":"GL_TEXTURE_LUMINANCE_SIZE","features":[54]},{"name":"GL_TEXTURE_MAG_FILTER","features":[54]},{"name":"GL_TEXTURE_MATRIX","features":[54]},{"name":"GL_TEXTURE_MIN_FILTER","features":[54]},{"name":"GL_TEXTURE_PRIORITY","features":[54]},{"name":"GL_TEXTURE_RED_SIZE","features":[54]},{"name":"GL_TEXTURE_RESIDENT","features":[54]},{"name":"GL_TEXTURE_STACK_DEPTH","features":[54]},{"name":"GL_TEXTURE_WIDTH","features":[54]},{"name":"GL_TEXTURE_WRAP_S","features":[54]},{"name":"GL_TEXTURE_WRAP_T","features":[54]},{"name":"GL_TRANSFORM_BIT","features":[54]},{"name":"GL_TRIANGLES","features":[54]},{"name":"GL_TRIANGLE_FAN","features":[54]},{"name":"GL_TRIANGLE_STRIP","features":[54]},{"name":"GL_TRUE","features":[54]},{"name":"GL_UNPACK_ALIGNMENT","features":[54]},{"name":"GL_UNPACK_LSB_FIRST","features":[54]},{"name":"GL_UNPACK_ROW_LENGTH","features":[54]},{"name":"GL_UNPACK_SKIP_PIXELS","features":[54]},{"name":"GL_UNPACK_SKIP_ROWS","features":[54]},{"name":"GL_UNPACK_SWAP_BYTES","features":[54]},{"name":"GL_UNSIGNED_BYTE","features":[54]},{"name":"GL_UNSIGNED_INT","features":[54]},{"name":"GL_UNSIGNED_SHORT","features":[54]},{"name":"GL_V2F","features":[54]},{"name":"GL_V3F","features":[54]},{"name":"GL_VENDOR","features":[54]},{"name":"GL_VERSION","features":[54]},{"name":"GL_VERSION_1_1","features":[54]},{"name":"GL_VERTEX_ARRAY","features":[54]},{"name":"GL_VERTEX_ARRAY_COUNT_EXT","features":[54]},{"name":"GL_VERTEX_ARRAY_EXT","features":[54]},{"name":"GL_VERTEX_ARRAY_POINTER","features":[54]},{"name":"GL_VERTEX_ARRAY_POINTER_EXT","features":[54]},{"name":"GL_VERTEX_ARRAY_SIZE","features":[54]},{"name":"GL_VERTEX_ARRAY_SIZE_EXT","features":[54]},{"name":"GL_VERTEX_ARRAY_STRIDE","features":[54]},{"name":"GL_VERTEX_ARRAY_STRIDE_EXT","features":[54]},{"name":"GL_VERTEX_ARRAY_TYPE","features":[54]},{"name":"GL_VERTEX_ARRAY_TYPE_EXT","features":[54]},{"name":"GL_VIEWPORT","features":[54]},{"name":"GL_VIEWPORT_BIT","features":[54]},{"name":"GL_WIN_draw_range_elements","features":[54]},{"name":"GL_WIN_swap_hint","features":[54]},{"name":"GL_XOR","features":[54]},{"name":"GL_ZERO","features":[54]},{"name":"GL_ZOOM_X","features":[54]},{"name":"GL_ZOOM_Y","features":[54]},{"name":"GetEnhMetaFilePixelFormat","features":[12,54]},{"name":"GetPixelFormat","features":[12,54]},{"name":"HGLRC","features":[54]},{"name":"LAYERPLANEDESCRIPTOR","features":[1,54]},{"name":"PFD_DEPTH_DONTCARE","features":[54]},{"name":"PFD_DIRECT3D_ACCELERATED","features":[54]},{"name":"PFD_DOUBLEBUFFER","features":[54]},{"name":"PFD_DOUBLEBUFFER_DONTCARE","features":[54]},{"name":"PFD_DRAW_TO_BITMAP","features":[54]},{"name":"PFD_DRAW_TO_WINDOW","features":[54]},{"name":"PFD_FLAGS","features":[54]},{"name":"PFD_GENERIC_ACCELERATED","features":[54]},{"name":"PFD_GENERIC_FORMAT","features":[54]},{"name":"PFD_LAYER_TYPE","features":[54]},{"name":"PFD_MAIN_PLANE","features":[54]},{"name":"PFD_NEED_PALETTE","features":[54]},{"name":"PFD_NEED_SYSTEM_PALETTE","features":[54]},{"name":"PFD_OVERLAY_PLANE","features":[54]},{"name":"PFD_PIXEL_TYPE","features":[54]},{"name":"PFD_STEREO","features":[54]},{"name":"PFD_STEREO_DONTCARE","features":[54]},{"name":"PFD_SUPPORT_COMPOSITION","features":[54]},{"name":"PFD_SUPPORT_DIRECTDRAW","features":[54]},{"name":"PFD_SUPPORT_GDI","features":[54]},{"name":"PFD_SUPPORT_OPENGL","features":[54]},{"name":"PFD_SWAP_COPY","features":[54]},{"name":"PFD_SWAP_EXCHANGE","features":[54]},{"name":"PFD_SWAP_LAYER_BUFFERS","features":[54]},{"name":"PFD_TYPE_COLORINDEX","features":[54]},{"name":"PFD_TYPE_RGBA","features":[54]},{"name":"PFD_UNDERLAY_PLANE","features":[54]},{"name":"PFNGLADDSWAPHINTRECTWINPROC","features":[54]},{"name":"PFNGLARRAYELEMENTARRAYEXTPROC","features":[54]},{"name":"PFNGLARRAYELEMENTEXTPROC","features":[54]},{"name":"PFNGLCOLORPOINTEREXTPROC","features":[54]},{"name":"PFNGLCOLORSUBTABLEEXTPROC","features":[54]},{"name":"PFNGLCOLORTABLEEXTPROC","features":[54]},{"name":"PFNGLDRAWARRAYSEXTPROC","features":[54]},{"name":"PFNGLDRAWRANGEELEMENTSWINPROC","features":[54]},{"name":"PFNGLEDGEFLAGPOINTEREXTPROC","features":[54]},{"name":"PFNGLGETCOLORTABLEEXTPROC","features":[54]},{"name":"PFNGLGETCOLORTABLEPARAMETERFVEXTPROC","features":[54]},{"name":"PFNGLGETCOLORTABLEPARAMETERIVEXTPROC","features":[54]},{"name":"PFNGLGETPOINTERVEXTPROC","features":[54]},{"name":"PFNGLINDEXPOINTEREXTPROC","features":[54]},{"name":"PFNGLNORMALPOINTEREXTPROC","features":[54]},{"name":"PFNGLTEXCOORDPOINTEREXTPROC","features":[54]},{"name":"PFNGLVERTEXPOINTEREXTPROC","features":[54]},{"name":"PIXELFORMATDESCRIPTOR","features":[54]},{"name":"POINTFLOAT","features":[54]},{"name":"SetPixelFormat","features":[1,12,54]},{"name":"SwapBuffers","features":[1,12,54]},{"name":"glAccum","features":[54]},{"name":"glAlphaFunc","features":[54]},{"name":"glAreTexturesResident","features":[54]},{"name":"glArrayElement","features":[54]},{"name":"glBegin","features":[54]},{"name":"glBindTexture","features":[54]},{"name":"glBitmap","features":[54]},{"name":"glBlendFunc","features":[54]},{"name":"glCallList","features":[54]},{"name":"glCallLists","features":[54]},{"name":"glClear","features":[54]},{"name":"glClearAccum","features":[54]},{"name":"glClearColor","features":[54]},{"name":"glClearDepth","features":[54]},{"name":"glClearIndex","features":[54]},{"name":"glClearStencil","features":[54]},{"name":"glClipPlane","features":[54]},{"name":"glColor3b","features":[54]},{"name":"glColor3bv","features":[54]},{"name":"glColor3d","features":[54]},{"name":"glColor3dv","features":[54]},{"name":"glColor3f","features":[54]},{"name":"glColor3fv","features":[54]},{"name":"glColor3i","features":[54]},{"name":"glColor3iv","features":[54]},{"name":"glColor3s","features":[54]},{"name":"glColor3sv","features":[54]},{"name":"glColor3ub","features":[54]},{"name":"glColor3ubv","features":[54]},{"name":"glColor3ui","features":[54]},{"name":"glColor3uiv","features":[54]},{"name":"glColor3us","features":[54]},{"name":"glColor3usv","features":[54]},{"name":"glColor4b","features":[54]},{"name":"glColor4bv","features":[54]},{"name":"glColor4d","features":[54]},{"name":"glColor4dv","features":[54]},{"name":"glColor4f","features":[54]},{"name":"glColor4fv","features":[54]},{"name":"glColor4i","features":[54]},{"name":"glColor4iv","features":[54]},{"name":"glColor4s","features":[54]},{"name":"glColor4sv","features":[54]},{"name":"glColor4ub","features":[54]},{"name":"glColor4ubv","features":[54]},{"name":"glColor4ui","features":[54]},{"name":"glColor4uiv","features":[54]},{"name":"glColor4us","features":[54]},{"name":"glColor4usv","features":[54]},{"name":"glColorMask","features":[54]},{"name":"glColorMaterial","features":[54]},{"name":"glColorPointer","features":[54]},{"name":"glCopyPixels","features":[54]},{"name":"glCopyTexImage1D","features":[54]},{"name":"glCopyTexImage2D","features":[54]},{"name":"glCopyTexSubImage1D","features":[54]},{"name":"glCopyTexSubImage2D","features":[54]},{"name":"glCullFace","features":[54]},{"name":"glDeleteLists","features":[54]},{"name":"glDeleteTextures","features":[54]},{"name":"glDepthFunc","features":[54]},{"name":"glDepthMask","features":[54]},{"name":"glDepthRange","features":[54]},{"name":"glDisable","features":[54]},{"name":"glDisableClientState","features":[54]},{"name":"glDrawArrays","features":[54]},{"name":"glDrawBuffer","features":[54]},{"name":"glDrawElements","features":[54]},{"name":"glDrawPixels","features":[54]},{"name":"glEdgeFlag","features":[54]},{"name":"glEdgeFlagPointer","features":[54]},{"name":"glEdgeFlagv","features":[54]},{"name":"glEnable","features":[54]},{"name":"glEnableClientState","features":[54]},{"name":"glEnd","features":[54]},{"name":"glEndList","features":[54]},{"name":"glEvalCoord1d","features":[54]},{"name":"glEvalCoord1dv","features":[54]},{"name":"glEvalCoord1f","features":[54]},{"name":"glEvalCoord1fv","features":[54]},{"name":"glEvalCoord2d","features":[54]},{"name":"glEvalCoord2dv","features":[54]},{"name":"glEvalCoord2f","features":[54]},{"name":"glEvalCoord2fv","features":[54]},{"name":"glEvalMesh1","features":[54]},{"name":"glEvalMesh2","features":[54]},{"name":"glEvalPoint1","features":[54]},{"name":"glEvalPoint2","features":[54]},{"name":"glFeedbackBuffer","features":[54]},{"name":"glFinish","features":[54]},{"name":"glFlush","features":[54]},{"name":"glFogf","features":[54]},{"name":"glFogfv","features":[54]},{"name":"glFogi","features":[54]},{"name":"glFogiv","features":[54]},{"name":"glFrontFace","features":[54]},{"name":"glFrustum","features":[54]},{"name":"glGenLists","features":[54]},{"name":"glGenTextures","features":[54]},{"name":"glGetBooleanv","features":[54]},{"name":"glGetClipPlane","features":[54]},{"name":"glGetDoublev","features":[54]},{"name":"glGetError","features":[54]},{"name":"glGetFloatv","features":[54]},{"name":"glGetIntegerv","features":[54]},{"name":"glGetLightfv","features":[54]},{"name":"glGetLightiv","features":[54]},{"name":"glGetMapdv","features":[54]},{"name":"glGetMapfv","features":[54]},{"name":"glGetMapiv","features":[54]},{"name":"glGetMaterialfv","features":[54]},{"name":"glGetMaterialiv","features":[54]},{"name":"glGetPixelMapfv","features":[54]},{"name":"glGetPixelMapuiv","features":[54]},{"name":"glGetPixelMapusv","features":[54]},{"name":"glGetPointerv","features":[54]},{"name":"glGetPolygonStipple","features":[54]},{"name":"glGetString","features":[54]},{"name":"glGetTexEnvfv","features":[54]},{"name":"glGetTexEnviv","features":[54]},{"name":"glGetTexGendv","features":[54]},{"name":"glGetTexGenfv","features":[54]},{"name":"glGetTexGeniv","features":[54]},{"name":"glGetTexImage","features":[54]},{"name":"glGetTexLevelParameterfv","features":[54]},{"name":"glGetTexLevelParameteriv","features":[54]},{"name":"glGetTexParameterfv","features":[54]},{"name":"glGetTexParameteriv","features":[54]},{"name":"glHint","features":[54]},{"name":"glIndexMask","features":[54]},{"name":"glIndexPointer","features":[54]},{"name":"glIndexd","features":[54]},{"name":"glIndexdv","features":[54]},{"name":"glIndexf","features":[54]},{"name":"glIndexfv","features":[54]},{"name":"glIndexi","features":[54]},{"name":"glIndexiv","features":[54]},{"name":"glIndexs","features":[54]},{"name":"glIndexsv","features":[54]},{"name":"glIndexub","features":[54]},{"name":"glIndexubv","features":[54]},{"name":"glInitNames","features":[54]},{"name":"glInterleavedArrays","features":[54]},{"name":"glIsEnabled","features":[54]},{"name":"glIsList","features":[54]},{"name":"glIsTexture","features":[54]},{"name":"glLightModelf","features":[54]},{"name":"glLightModelfv","features":[54]},{"name":"glLightModeli","features":[54]},{"name":"glLightModeliv","features":[54]},{"name":"glLightf","features":[54]},{"name":"glLightfv","features":[54]},{"name":"glLighti","features":[54]},{"name":"glLightiv","features":[54]},{"name":"glLineStipple","features":[54]},{"name":"glLineWidth","features":[54]},{"name":"glListBase","features":[54]},{"name":"glLoadIdentity","features":[54]},{"name":"glLoadMatrixd","features":[54]},{"name":"glLoadMatrixf","features":[54]},{"name":"glLoadName","features":[54]},{"name":"glLogicOp","features":[54]},{"name":"glMap1d","features":[54]},{"name":"glMap1f","features":[54]},{"name":"glMap2d","features":[54]},{"name":"glMap2f","features":[54]},{"name":"glMapGrid1d","features":[54]},{"name":"glMapGrid1f","features":[54]},{"name":"glMapGrid2d","features":[54]},{"name":"glMapGrid2f","features":[54]},{"name":"glMaterialf","features":[54]},{"name":"glMaterialfv","features":[54]},{"name":"glMateriali","features":[54]},{"name":"glMaterialiv","features":[54]},{"name":"glMatrixMode","features":[54]},{"name":"glMultMatrixd","features":[54]},{"name":"glMultMatrixf","features":[54]},{"name":"glNewList","features":[54]},{"name":"glNormal3b","features":[54]},{"name":"glNormal3bv","features":[54]},{"name":"glNormal3d","features":[54]},{"name":"glNormal3dv","features":[54]},{"name":"glNormal3f","features":[54]},{"name":"glNormal3fv","features":[54]},{"name":"glNormal3i","features":[54]},{"name":"glNormal3iv","features":[54]},{"name":"glNormal3s","features":[54]},{"name":"glNormal3sv","features":[54]},{"name":"glNormalPointer","features":[54]},{"name":"glOrtho","features":[54]},{"name":"glPassThrough","features":[54]},{"name":"glPixelMapfv","features":[54]},{"name":"glPixelMapuiv","features":[54]},{"name":"glPixelMapusv","features":[54]},{"name":"glPixelStoref","features":[54]},{"name":"glPixelStorei","features":[54]},{"name":"glPixelTransferf","features":[54]},{"name":"glPixelTransferi","features":[54]},{"name":"glPixelZoom","features":[54]},{"name":"glPointSize","features":[54]},{"name":"glPolygonMode","features":[54]},{"name":"glPolygonOffset","features":[54]},{"name":"glPolygonStipple","features":[54]},{"name":"glPopAttrib","features":[54]},{"name":"glPopClientAttrib","features":[54]},{"name":"glPopMatrix","features":[54]},{"name":"glPopName","features":[54]},{"name":"glPrioritizeTextures","features":[54]},{"name":"glPushAttrib","features":[54]},{"name":"glPushClientAttrib","features":[54]},{"name":"glPushMatrix","features":[54]},{"name":"glPushName","features":[54]},{"name":"glRasterPos2d","features":[54]},{"name":"glRasterPos2dv","features":[54]},{"name":"glRasterPos2f","features":[54]},{"name":"glRasterPos2fv","features":[54]},{"name":"glRasterPos2i","features":[54]},{"name":"glRasterPos2iv","features":[54]},{"name":"glRasterPos2s","features":[54]},{"name":"glRasterPos2sv","features":[54]},{"name":"glRasterPos3d","features":[54]},{"name":"glRasterPos3dv","features":[54]},{"name":"glRasterPos3f","features":[54]},{"name":"glRasterPos3fv","features":[54]},{"name":"glRasterPos3i","features":[54]},{"name":"glRasterPos3iv","features":[54]},{"name":"glRasterPos3s","features":[54]},{"name":"glRasterPos3sv","features":[54]},{"name":"glRasterPos4d","features":[54]},{"name":"glRasterPos4dv","features":[54]},{"name":"glRasterPos4f","features":[54]},{"name":"glRasterPos4fv","features":[54]},{"name":"glRasterPos4i","features":[54]},{"name":"glRasterPos4iv","features":[54]},{"name":"glRasterPos4s","features":[54]},{"name":"glRasterPos4sv","features":[54]},{"name":"glReadBuffer","features":[54]},{"name":"glReadPixels","features":[54]},{"name":"glRectd","features":[54]},{"name":"glRectdv","features":[54]},{"name":"glRectf","features":[54]},{"name":"glRectfv","features":[54]},{"name":"glRecti","features":[54]},{"name":"glRectiv","features":[54]},{"name":"glRects","features":[54]},{"name":"glRectsv","features":[54]},{"name":"glRenderMode","features":[54]},{"name":"glRotated","features":[54]},{"name":"glRotatef","features":[54]},{"name":"glScaled","features":[54]},{"name":"glScalef","features":[54]},{"name":"glScissor","features":[54]},{"name":"glSelectBuffer","features":[54]},{"name":"glShadeModel","features":[54]},{"name":"glStencilFunc","features":[54]},{"name":"glStencilMask","features":[54]},{"name":"glStencilOp","features":[54]},{"name":"glTexCoord1d","features":[54]},{"name":"glTexCoord1dv","features":[54]},{"name":"glTexCoord1f","features":[54]},{"name":"glTexCoord1fv","features":[54]},{"name":"glTexCoord1i","features":[54]},{"name":"glTexCoord1iv","features":[54]},{"name":"glTexCoord1s","features":[54]},{"name":"glTexCoord1sv","features":[54]},{"name":"glTexCoord2d","features":[54]},{"name":"glTexCoord2dv","features":[54]},{"name":"glTexCoord2f","features":[54]},{"name":"glTexCoord2fv","features":[54]},{"name":"glTexCoord2i","features":[54]},{"name":"glTexCoord2iv","features":[54]},{"name":"glTexCoord2s","features":[54]},{"name":"glTexCoord2sv","features":[54]},{"name":"glTexCoord3d","features":[54]},{"name":"glTexCoord3dv","features":[54]},{"name":"glTexCoord3f","features":[54]},{"name":"glTexCoord3fv","features":[54]},{"name":"glTexCoord3i","features":[54]},{"name":"glTexCoord3iv","features":[54]},{"name":"glTexCoord3s","features":[54]},{"name":"glTexCoord3sv","features":[54]},{"name":"glTexCoord4d","features":[54]},{"name":"glTexCoord4dv","features":[54]},{"name":"glTexCoord4f","features":[54]},{"name":"glTexCoord4fv","features":[54]},{"name":"glTexCoord4i","features":[54]},{"name":"glTexCoord4iv","features":[54]},{"name":"glTexCoord4s","features":[54]},{"name":"glTexCoord4sv","features":[54]},{"name":"glTexCoordPointer","features":[54]},{"name":"glTexEnvf","features":[54]},{"name":"glTexEnvfv","features":[54]},{"name":"glTexEnvi","features":[54]},{"name":"glTexEnviv","features":[54]},{"name":"glTexGend","features":[54]},{"name":"glTexGendv","features":[54]},{"name":"glTexGenf","features":[54]},{"name":"glTexGenfv","features":[54]},{"name":"glTexGeni","features":[54]},{"name":"glTexGeniv","features":[54]},{"name":"glTexImage1D","features":[54]},{"name":"glTexImage2D","features":[54]},{"name":"glTexParameterf","features":[54]},{"name":"glTexParameterfv","features":[54]},{"name":"glTexParameteri","features":[54]},{"name":"glTexParameteriv","features":[54]},{"name":"glTexSubImage1D","features":[54]},{"name":"glTexSubImage2D","features":[54]},{"name":"glTranslated","features":[54]},{"name":"glTranslatef","features":[54]},{"name":"glVertex2d","features":[54]},{"name":"glVertex2dv","features":[54]},{"name":"glVertex2f","features":[54]},{"name":"glVertex2fv","features":[54]},{"name":"glVertex2i","features":[54]},{"name":"glVertex2iv","features":[54]},{"name":"glVertex2s","features":[54]},{"name":"glVertex2sv","features":[54]},{"name":"glVertex3d","features":[54]},{"name":"glVertex3dv","features":[54]},{"name":"glVertex3f","features":[54]},{"name":"glVertex3fv","features":[54]},{"name":"glVertex3i","features":[54]},{"name":"glVertex3iv","features":[54]},{"name":"glVertex3s","features":[54]},{"name":"glVertex3sv","features":[54]},{"name":"glVertex4d","features":[54]},{"name":"glVertex4dv","features":[54]},{"name":"glVertex4f","features":[54]},{"name":"glVertex4fv","features":[54]},{"name":"glVertex4i","features":[54]},{"name":"glVertex4iv","features":[54]},{"name":"glVertex4s","features":[54]},{"name":"glVertex4sv","features":[54]},{"name":"glVertexPointer","features":[54]},{"name":"glViewport","features":[54]},{"name":"gluBeginCurve","features":[54]},{"name":"gluBeginPolygon","features":[54]},{"name":"gluBeginSurface","features":[54]},{"name":"gluBeginTrim","features":[54]},{"name":"gluBuild1DMipmaps","features":[54]},{"name":"gluBuild2DMipmaps","features":[54]},{"name":"gluCylinder","features":[54]},{"name":"gluDeleteNurbsRenderer","features":[54]},{"name":"gluDeleteQuadric","features":[54]},{"name":"gluDeleteTess","features":[54]},{"name":"gluDisk","features":[54]},{"name":"gluEndCurve","features":[54]},{"name":"gluEndPolygon","features":[54]},{"name":"gluEndSurface","features":[54]},{"name":"gluEndTrim","features":[54]},{"name":"gluErrorString","features":[54]},{"name":"gluErrorUnicodeStringEXT","features":[54]},{"name":"gluGetNurbsProperty","features":[54]},{"name":"gluGetString","features":[54]},{"name":"gluGetTessProperty","features":[54]},{"name":"gluLoadSamplingMatrices","features":[54]},{"name":"gluLookAt","features":[54]},{"name":"gluNewNurbsRenderer","features":[54]},{"name":"gluNewQuadric","features":[54]},{"name":"gluNewTess","features":[54]},{"name":"gluNextContour","features":[54]},{"name":"gluNurbsCallback","features":[54]},{"name":"gluNurbsCurve","features":[54]},{"name":"gluNurbsProperty","features":[54]},{"name":"gluNurbsSurface","features":[54]},{"name":"gluOrtho2D","features":[54]},{"name":"gluPartialDisk","features":[54]},{"name":"gluPerspective","features":[54]},{"name":"gluPickMatrix","features":[54]},{"name":"gluProject","features":[54]},{"name":"gluPwlCurve","features":[54]},{"name":"gluQuadricCallback","features":[54]},{"name":"gluQuadricDrawStyle","features":[54]},{"name":"gluQuadricNormals","features":[54]},{"name":"gluQuadricOrientation","features":[54]},{"name":"gluQuadricTexture","features":[54]},{"name":"gluScaleImage","features":[54]},{"name":"gluSphere","features":[54]},{"name":"gluTessBeginContour","features":[54]},{"name":"gluTessBeginPolygon","features":[54]},{"name":"gluTessCallback","features":[54]},{"name":"gluTessEndContour","features":[54]},{"name":"gluTessEndPolygon","features":[54]},{"name":"gluTessNormal","features":[54]},{"name":"gluTessProperty","features":[54]},{"name":"gluTessVertex","features":[54]},{"name":"gluUnProject","features":[54]},{"name":"wglCopyContext","features":[1,54]},{"name":"wglCreateContext","features":[12,54]},{"name":"wglCreateLayerContext","features":[12,54]},{"name":"wglDeleteContext","features":[1,54]},{"name":"wglDescribeLayerPlane","features":[1,12,54]},{"name":"wglGetCurrentContext","features":[54]},{"name":"wglGetCurrentDC","features":[12,54]},{"name":"wglGetLayerPaletteEntries","features":[1,12,54]},{"name":"wglGetProcAddress","features":[1,54]},{"name":"wglMakeCurrent","features":[1,12,54]},{"name":"wglRealizeLayerPalette","features":[1,12,54]},{"name":"wglSetLayerPaletteEntries","features":[1,12,54]},{"name":"wglShareLists","features":[1,54]},{"name":"wglSwapLayerBuffers","features":[1,12,54]},{"name":"wglUseFontBitmapsA","features":[1,12,54]},{"name":"wglUseFontBitmapsW","features":[1,12,54]},{"name":"wglUseFontOutlinesA","features":[1,12,54]},{"name":"wglUseFontOutlinesW","features":[1,12,54]}],"419":[{"name":"ADDJOB_INFO_1A","features":[74]},{"name":"ADDJOB_INFO_1W","features":[74]},{"name":"ALREADY_REGISTERED","features":[74]},{"name":"ALREADY_UNREGISTERED","features":[74]},{"name":"APD_COPY_ALL_FILES","features":[74]},{"name":"APD_COPY_FROM_DIRECTORY","features":[74]},{"name":"APD_COPY_NEW_FILES","features":[74]},{"name":"APD_STRICT_DOWNGRADE","features":[74]},{"name":"APD_STRICT_UPGRADE","features":[74]},{"name":"APPLYCPSUI_NO_NEWDEF","features":[74]},{"name":"APPLYCPSUI_OK_CANCEL_BUTTON","features":[74]},{"name":"ASYNC_CALL_ALREADY_PARKED","features":[74]},{"name":"ASYNC_CALL_IN_PROGRESS","features":[74]},{"name":"ASYNC_NOTIFICATION_FAILURE","features":[74]},{"name":"ATTRIBUTE_INFO_1","features":[74]},{"name":"ATTRIBUTE_INFO_2","features":[74]},{"name":"ATTRIBUTE_INFO_3","features":[74]},{"name":"ATTRIBUTE_INFO_4","features":[74]},{"name":"AbortPrinter","features":[1,74]},{"name":"AddFormA","features":[1,74]},{"name":"AddFormW","features":[1,74]},{"name":"AddJobA","features":[1,74]},{"name":"AddJobW","features":[1,74]},{"name":"AddMonitorA","features":[1,74]},{"name":"AddMonitorW","features":[1,74]},{"name":"AddPortA","features":[1,74]},{"name":"AddPortW","features":[1,74]},{"name":"AddPrintDeviceObject","features":[1,74]},{"name":"AddPrintProcessorA","features":[1,74]},{"name":"AddPrintProcessorW","features":[1,74]},{"name":"AddPrintProvidorA","features":[1,74]},{"name":"AddPrintProvidorW","features":[1,74]},{"name":"AddPrinterA","features":[1,74]},{"name":"AddPrinterConnection2A","features":[1,74]},{"name":"AddPrinterConnection2W","features":[1,74]},{"name":"AddPrinterConnectionA","features":[1,74]},{"name":"AddPrinterConnectionW","features":[1,74]},{"name":"AddPrinterDriverA","features":[1,74]},{"name":"AddPrinterDriverExA","features":[1,74]},{"name":"AddPrinterDriverExW","features":[1,74]},{"name":"AddPrinterDriverW","features":[1,74]},{"name":"AddPrinterW","features":[1,74]},{"name":"AdvancedDocumentPropertiesA","features":[1,12,74]},{"name":"AdvancedDocumentPropertiesW","features":[1,12,74]},{"name":"AppendPrinterNotifyInfoData","features":[1,74]},{"name":"BIDI_ACCESS_ADMINISTRATOR","features":[74]},{"name":"BIDI_ACCESS_USER","features":[74]},{"name":"BIDI_ACTION_ENUM_SCHEMA","features":[74]},{"name":"BIDI_ACTION_GET","features":[74]},{"name":"BIDI_ACTION_GET_ALL","features":[74]},{"name":"BIDI_ACTION_GET_WITH_ARGUMENT","features":[74]},{"name":"BIDI_ACTION_SET","features":[74]},{"name":"BIDI_BLOB","features":[74]},{"name":"BIDI_BOOL","features":[74]},{"name":"BIDI_DATA","features":[1,74]},{"name":"BIDI_ENUM","features":[74]},{"name":"BIDI_FLOAT","features":[74]},{"name":"BIDI_INT","features":[74]},{"name":"BIDI_NULL","features":[74]},{"name":"BIDI_REQUEST_CONTAINER","features":[1,74]},{"name":"BIDI_REQUEST_DATA","features":[1,74]},{"name":"BIDI_RESPONSE_CONTAINER","features":[1,74]},{"name":"BIDI_RESPONSE_DATA","features":[1,74]},{"name":"BIDI_STRING","features":[74]},{"name":"BIDI_TEXT","features":[74]},{"name":"BIDI_TYPE","features":[74]},{"name":"BINARY_CONTAINER","features":[74]},{"name":"BOOKLET_EDGE_LEFT","features":[74]},{"name":"BOOKLET_EDGE_RIGHT","features":[74]},{"name":"BOOKLET_PRINT","features":[74]},{"name":"BORDER_PRINT","features":[74]},{"name":"BidiRequest","features":[74]},{"name":"BidiRequestContainer","features":[74]},{"name":"BidiSpl","features":[74]},{"name":"BranchOfficeJobData","features":[74]},{"name":"BranchOfficeJobDataContainer","features":[74]},{"name":"BranchOfficeJobDataError","features":[74]},{"name":"BranchOfficeJobDataPipelineFailed","features":[74]},{"name":"BranchOfficeJobDataPrinted","features":[74]},{"name":"BranchOfficeJobDataRendered","features":[74]},{"name":"BranchOfficeLogOfflineFileFull","features":[74]},{"name":"CC_BIG5","features":[74]},{"name":"CC_CP437","features":[74]},{"name":"CC_CP850","features":[74]},{"name":"CC_CP863","features":[74]},{"name":"CC_DEFAULT","features":[74]},{"name":"CC_GB2312","features":[74]},{"name":"CC_ISC","features":[74]},{"name":"CC_JIS","features":[74]},{"name":"CC_JIS_ANK","features":[74]},{"name":"CC_NOPRECNV","features":[74]},{"name":"CC_NS86","features":[74]},{"name":"CC_SJIS","features":[74]},{"name":"CC_TCA","features":[74]},{"name":"CC_WANSUNG","features":[74]},{"name":"CDM_CONVERT","features":[74]},{"name":"CDM_CONVERT351","features":[74]},{"name":"CDM_DRIVER_DEFAULT","features":[74]},{"name":"CHANNEL_ACQUIRED","features":[74]},{"name":"CHANNEL_ALREADY_CLOSED","features":[74]},{"name":"CHANNEL_ALREADY_OPENED","features":[74]},{"name":"CHANNEL_CLOSED_BY_ANOTHER_LISTENER","features":[74]},{"name":"CHANNEL_CLOSED_BY_SAME_LISTENER","features":[74]},{"name":"CHANNEL_CLOSED_BY_SERVER","features":[74]},{"name":"CHANNEL_NOT_OPENED","features":[74]},{"name":"CHANNEL_RELEASED_BY_LISTENER","features":[74]},{"name":"CHANNEL_WAITING_FOR_CLIENT_NOTIFICATION","features":[74]},{"name":"CHKBOXS_FALSE_PDATA","features":[74]},{"name":"CHKBOXS_FALSE_TRUE","features":[74]},{"name":"CHKBOXS_NONE_PDATA","features":[74]},{"name":"CHKBOXS_NO_PDATA","features":[74]},{"name":"CHKBOXS_NO_YES","features":[74]},{"name":"CHKBOXS_OFF_ON","features":[74]},{"name":"CHKBOXS_OFF_PDATA","features":[74]},{"name":"CLSID_OEMPTPROVIDER","features":[74]},{"name":"CLSID_OEMRENDER","features":[74]},{"name":"CLSID_OEMUI","features":[74]},{"name":"CLSID_OEMUIMXDC","features":[74]},{"name":"CLSID_PTPROVIDER","features":[74]},{"name":"CLSID_XPSRASTERIZER_FACTORY","features":[74]},{"name":"COLOR_OPTIMIZATION","features":[74]},{"name":"COMPROPSHEETUI","features":[1,74,50]},{"name":"CONFIG_INFO_DATA_1","features":[74]},{"name":"COPYFILE_EVENT_ADD_PRINTER_CONNECTION","features":[74]},{"name":"COPYFILE_EVENT_DELETE_PRINTER","features":[74]},{"name":"COPYFILE_EVENT_DELETE_PRINTER_CONNECTION","features":[74]},{"name":"COPYFILE_EVENT_FILES_CHANGED","features":[74]},{"name":"COPYFILE_EVENT_SET_PRINTER_DATAEX","features":[74]},{"name":"COPYFILE_FLAG_CLIENT_SPOOLER","features":[74]},{"name":"COPYFILE_FLAG_SERVER_SPOOLER","features":[74]},{"name":"CORE_PRINTER_DRIVERA","features":[1,74]},{"name":"CORE_PRINTER_DRIVERW","features":[1,74]},{"name":"CPSFUNC_ADD_HPROPSHEETPAGE","features":[74]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUI","features":[74]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIA","features":[74]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIW","features":[74]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUI","features":[74]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIA","features":[74]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIW","features":[74]},{"name":"CPSFUNC_ADD_PROPSHEETPAGE","features":[74]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEA","features":[74]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEW","features":[74]},{"name":"CPSFUNC_DELETE_HCOMPROPSHEET","features":[74]},{"name":"CPSFUNC_DO_APPLY_CPSUI","features":[74]},{"name":"CPSFUNC_GET_HPSUIPAGES","features":[74]},{"name":"CPSFUNC_GET_PAGECOUNT","features":[74]},{"name":"CPSFUNC_GET_PFNPROPSHEETUI_ICON","features":[74]},{"name":"CPSFUNC_IGNORE_CPSUI_PSN_APPLY","features":[74]},{"name":"CPSFUNC_INSERT_PSUIPAGE","features":[74]},{"name":"CPSFUNC_INSERT_PSUIPAGEA","features":[74]},{"name":"CPSFUNC_INSERT_PSUIPAGEW","features":[74]},{"name":"CPSFUNC_LOAD_CPSUI_ICON","features":[74]},{"name":"CPSFUNC_LOAD_CPSUI_STRING","features":[74]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGA","features":[74]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGW","features":[74]},{"name":"CPSFUNC_QUERY_DATABLOCK","features":[74]},{"name":"CPSFUNC_SET_DATABLOCK","features":[74]},{"name":"CPSFUNC_SET_DMPUB_HIDEBITS","features":[74]},{"name":"CPSFUNC_SET_FUSION_CONTEXT","features":[74]},{"name":"CPSFUNC_SET_HSTARTPAGE","features":[74]},{"name":"CPSFUNC_SET_PSUIPAGE_ICON","features":[74]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLE","features":[74]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEA","features":[74]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEW","features":[74]},{"name":"CPSFUNC_SET_RESULT","features":[74]},{"name":"CPSUICBPARAM","features":[1,74,50]},{"name":"CPSUICB_ACTION_ITEMS_APPLIED","features":[74]},{"name":"CPSUICB_ACTION_NONE","features":[74]},{"name":"CPSUICB_ACTION_NO_APPLY_EXIT","features":[74]},{"name":"CPSUICB_ACTION_OPTIF_CHANGED","features":[74]},{"name":"CPSUICB_ACTION_REINIT_ITEMS","features":[74]},{"name":"CPSUICB_REASON_ABOUT","features":[74]},{"name":"CPSUICB_REASON_APPLYNOW","features":[74]},{"name":"CPSUICB_REASON_DLGPROC","features":[74]},{"name":"CPSUICB_REASON_ECB_CHANGED","features":[74]},{"name":"CPSUICB_REASON_EXTPUSH","features":[74]},{"name":"CPSUICB_REASON_ITEMS_REVERTED","features":[74]},{"name":"CPSUICB_REASON_KILLACTIVE","features":[74]},{"name":"CPSUICB_REASON_OPTITEM_SETFOCUS","features":[74]},{"name":"CPSUICB_REASON_PUSHBUTTON","features":[74]},{"name":"CPSUICB_REASON_SEL_CHANGED","features":[74]},{"name":"CPSUICB_REASON_SETACTIVE","features":[74]},{"name":"CPSUICB_REASON_UNDO_CHANGES","features":[74]},{"name":"CPSUIDATABLOCK","features":[74]},{"name":"CPSUIF_ABOUT_CALLBACK","features":[74]},{"name":"CPSUIF_ICONID_AS_HICON","features":[74]},{"name":"CPSUIF_UPDATE_PERMISSION","features":[74]},{"name":"CPSUI_CANCEL","features":[74]},{"name":"CPSUI_OK","features":[74]},{"name":"CPSUI_REBOOTSYSTEM","features":[74]},{"name":"CPSUI_RESTARTWINDOWS","features":[74]},{"name":"CUSTOMPARAM_HEIGHT","features":[74]},{"name":"CUSTOMPARAM_HEIGHTOFFSET","features":[74]},{"name":"CUSTOMPARAM_MAX","features":[74]},{"name":"CUSTOMPARAM_ORIENTATION","features":[74]},{"name":"CUSTOMPARAM_WIDTH","features":[74]},{"name":"CUSTOMPARAM_WIDTHOFFSET","features":[74]},{"name":"CUSTOMSIZEPARAM","features":[74]},{"name":"CallRouterFindFirstPrinterChangeNotification","features":[1,74]},{"name":"ClosePrinter","features":[1,74]},{"name":"CloseSpoolFileHandle","features":[1,74]},{"name":"CommitSpoolData","features":[1,74]},{"name":"CommonPropertySheetUIA","features":[1,74]},{"name":"CommonPropertySheetUIW","features":[1,74]},{"name":"Compression_Fast","features":[74]},{"name":"Compression_Normal","features":[74]},{"name":"Compression_NotCompressed","features":[74]},{"name":"Compression_Small","features":[74]},{"name":"ConfigurePortA","features":[1,74]},{"name":"ConfigurePortW","features":[1,74]},{"name":"ConnectToPrinterDlg","features":[1,74]},{"name":"CorePrinterDriverInstalledA","features":[1,74]},{"name":"CorePrinterDriverInstalledW","features":[1,74]},{"name":"CreatePrintAsyncNotifyChannel","features":[74]},{"name":"CreatePrinterIC","features":[1,12,74]},{"name":"DATATYPES_INFO_1A","features":[74]},{"name":"DATATYPES_INFO_1W","features":[74]},{"name":"DATA_HEADER","features":[74]},{"name":"DEF_PRIORITY","features":[74]},{"name":"DELETE_PORT_DATA_1","features":[74]},{"name":"DEVICEPROPERTYHEADER","features":[1,74]},{"name":"DEVQUERYPRINT_INFO","features":[1,12,74]},{"name":"DF_BKSP_OK","features":[74]},{"name":"DF_NOITALIC","features":[74]},{"name":"DF_NOUNDER","features":[74]},{"name":"DF_NO_BOLD","features":[74]},{"name":"DF_NO_DOUBLE_UNDERLINE","features":[74]},{"name":"DF_NO_STRIKETHRU","features":[74]},{"name":"DF_TYPE_CAPSL","features":[74]},{"name":"DF_TYPE_HPINTELLIFONT","features":[74]},{"name":"DF_TYPE_OEM1","features":[74]},{"name":"DF_TYPE_OEM2","features":[74]},{"name":"DF_TYPE_PST1","features":[74]},{"name":"DF_TYPE_TRUETYPE","features":[74]},{"name":"DF_XM_CR","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_COUNT","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_GETAT","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_DRIVERPROPERTIES","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTERQUEUE","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTSCHEMATICKET","features":[74]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_USERPROPERTIES","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENT","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_BIDINOTIFICATION","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_DETAILEDREASONID","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REASONID","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REQUEST","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_SOURCEAPPLICATION","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWMODAL","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWPARENT","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONDRIVEREVENT","features":[74]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONPRINTERQUEUESENUMERATED","features":[74]},{"name":"DISPID_PRINTEREXTENSION_REQUEST","features":[74]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_CANCEL","features":[74]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_COMPLETE","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBOOL","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBYTES","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_GETINT32","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_GETREADSTREAM","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_GETSTRING","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_GETWRITESTREAM","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBOOL","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBYTES","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_SETINT32","features":[74]},{"name":"DISPID_PRINTERPROPERTYBAG_SETSTRING","features":[74]},{"name":"DISPID_PRINTERQUEUE","features":[74]},{"name":"DISPID_PRINTERQUEUEEVENT","features":[74]},{"name":"DISPID_PRINTERQUEUEEVENT_ONBIDIRESPONSERECEIVED","features":[74]},{"name":"DISPID_PRINTERQUEUEVIEW","features":[74]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT","features":[74]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT_ONCHANGED","features":[74]},{"name":"DISPID_PRINTERQUEUEVIEW_SETVIEWRANGE","features":[74]},{"name":"DISPID_PRINTERQUEUE_GETPRINTERQUEUEVIEW","features":[74]},{"name":"DISPID_PRINTERQUEUE_GETPROPERTIES","features":[74]},{"name":"DISPID_PRINTERQUEUE_HANDLE","features":[74]},{"name":"DISPID_PRINTERQUEUE_NAME","features":[74]},{"name":"DISPID_PRINTERQUEUE_SENDBIDIQUERY","features":[74]},{"name":"DISPID_PRINTERQUEUE_SENDBIDISETREQUESTASYNC","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBOOL","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBYTES","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETINT32","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETREADSTREAM","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTREAMASXML","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTRING","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETWRITESTREAM","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBOOL","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBYTES","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETINT32","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETSTRING","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_READ","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_WRITE","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_COMMIT","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SEEK","features":[74]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SETSIZE","features":[74]},{"name":"DISPID_PRINTERSCRIPTCONTEXT","features":[74]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_DRIVERPROPERTIES","features":[74]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_QUEUEPROPERTIES","features":[74]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_USERPROPERTIES","features":[74]},{"name":"DISPID_PRINTJOBCOLLECTION","features":[74]},{"name":"DISPID_PRINTJOBCOLLECTION_COUNT","features":[74]},{"name":"DISPID_PRINTJOBCOLLECTION_GETAT","features":[74]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION","features":[74]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT","features":[74]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT_COMPLETED","features":[74]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_CANCEL","features":[74]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_START","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE_KEYNAME","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETOPTIONS","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETPARAMETERDEFINITION","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETSELECTEDOPTION","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMAXVALUE","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMINVALUE","features":[74]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_PAGEIMAGEABLESIZE","features":[74]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT","features":[74]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT_DISPLAYNAME","features":[74]},{"name":"DISPID_PRINTSCHEMA_ELEMENT","features":[74]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAME","features":[74]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAMESPACEURI","features":[74]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_XMLNODE","features":[74]},{"name":"DISPID_PRINTSCHEMA_FEATURE","features":[74]},{"name":"DISPID_PRINTSCHEMA_FEATURE_DISPLAYUI","features":[74]},{"name":"DISPID_PRINTSCHEMA_FEATURE_GETOPTION","features":[74]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTEDOPTION","features":[74]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTIONTYPE","features":[74]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION","features":[74]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION_PAGESPERSHEET","features":[74]},{"name":"DISPID_PRINTSCHEMA_OPTION","features":[74]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION","features":[74]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_COUNT","features":[74]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_GETAT","features":[74]},{"name":"DISPID_PRINTSCHEMA_OPTION_CONSTRAINED","features":[74]},{"name":"DISPID_PRINTSCHEMA_OPTION_GETPROPERTYVALUE","features":[74]},{"name":"DISPID_PRINTSCHEMA_OPTION_SELECTED","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_HEIGHT","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_WIDTH","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_HEIGHT","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_WIDTH","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_HEIGHT","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_WIDTH","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_HEIGHT","features":[74]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_WIDTH","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_DATATYPE","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMAX","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMIN","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_UNITTYPE","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_USERINPUTREQUIRED","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER","features":[74]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER_VALUE","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_COMMITASYNC","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETCAPABILITIES","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE_KEYNAME","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETPARAMETERINITIALIZER","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_JOBCOPIESALLDOCUMENTS","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_NOTIFYXMLCHANGED","features":[74]},{"name":"DISPID_PRINTSCHEMA_TICKET_VALIDATEASYNC","features":[74]},{"name":"DI_CHANNEL","features":[74]},{"name":"DI_MEMORYMAP_WRITE","features":[74]},{"name":"DI_READ_SPOOL_JOB","features":[74]},{"name":"DLGPAGE","features":[1,74,50]},{"name":"DMPUB_BOOKLET_EDGE","features":[74]},{"name":"DMPUB_COLOR","features":[74]},{"name":"DMPUB_COPIES_COLLATE","features":[74]},{"name":"DMPUB_DEFSOURCE","features":[74]},{"name":"DMPUB_DITHERTYPE","features":[74]},{"name":"DMPUB_DUPLEX","features":[74]},{"name":"DMPUB_FIRST","features":[74]},{"name":"DMPUB_FORMNAME","features":[74]},{"name":"DMPUB_ICMINTENT","features":[74]},{"name":"DMPUB_ICMMETHOD","features":[74]},{"name":"DMPUB_LAST","features":[74]},{"name":"DMPUB_MANUAL_DUPLEX","features":[74]},{"name":"DMPUB_MEDIATYPE","features":[74]},{"name":"DMPUB_NONE","features":[74]},{"name":"DMPUB_NUP","features":[74]},{"name":"DMPUB_NUP_DIRECTION","features":[74]},{"name":"DMPUB_OEM_GRAPHIC_ITEM","features":[74]},{"name":"DMPUB_OEM_PAPER_ITEM","features":[74]},{"name":"DMPUB_OEM_ROOT_ITEM","features":[74]},{"name":"DMPUB_ORIENTATION","features":[74]},{"name":"DMPUB_OUTPUTBIN","features":[74]},{"name":"DMPUB_PAGEORDER","features":[74]},{"name":"DMPUB_PRINTQUALITY","features":[74]},{"name":"DMPUB_QUALITY","features":[74]},{"name":"DMPUB_SCALE","features":[74]},{"name":"DMPUB_STAPLE","features":[74]},{"name":"DMPUB_TTOPTION","features":[74]},{"name":"DMPUB_USER","features":[74]},{"name":"DM_ADVANCED","features":[74]},{"name":"DM_INVALIDATE_DRIVER_CACHE","features":[74]},{"name":"DM_NOPERMISSION","features":[74]},{"name":"DM_PROMPT_NON_MODAL","features":[74]},{"name":"DM_RESERVED","features":[74]},{"name":"DM_USER_DEFAULT","features":[74]},{"name":"DOCEVENT_CREATEDCPRE","features":[1,12,74]},{"name":"DOCEVENT_ESCAPE","features":[74]},{"name":"DOCEVENT_FILTER","features":[74]},{"name":"DOCUMENTEVENT_ABORTDOC","features":[74]},{"name":"DOCUMENTEVENT_CREATEDCPOST","features":[74]},{"name":"DOCUMENTEVENT_CREATEDCPRE","features":[74]},{"name":"DOCUMENTEVENT_DELETEDC","features":[74]},{"name":"DOCUMENTEVENT_ENDDOC","features":[74]},{"name":"DOCUMENTEVENT_ENDDOCPOST","features":[74]},{"name":"DOCUMENTEVENT_ENDDOCPRE","features":[74]},{"name":"DOCUMENTEVENT_ENDPAGE","features":[74]},{"name":"DOCUMENTEVENT_ESCAPE","features":[74]},{"name":"DOCUMENTEVENT_FAILURE","features":[74]},{"name":"DOCUMENTEVENT_FIRST","features":[74]},{"name":"DOCUMENTEVENT_LAST","features":[74]},{"name":"DOCUMENTEVENT_QUERYFILTER","features":[74]},{"name":"DOCUMENTEVENT_RESETDCPOST","features":[74]},{"name":"DOCUMENTEVENT_RESETDCPRE","features":[74]},{"name":"DOCUMENTEVENT_SPOOLED","features":[74]},{"name":"DOCUMENTEVENT_STARTDOC","features":[74]},{"name":"DOCUMENTEVENT_STARTDOCPOST","features":[74]},{"name":"DOCUMENTEVENT_STARTDOCPRE","features":[74]},{"name":"DOCUMENTEVENT_STARTPAGE","features":[74]},{"name":"DOCUMENTEVENT_SUCCESS","features":[74]},{"name":"DOCUMENTEVENT_UNSUPPORTED","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPOST","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRE","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPOST","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPRE","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPOST","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRE","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPOST","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPRE","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEEPRE","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPOST","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPOST","features":[74]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPRE","features":[74]},{"name":"DOCUMENTEVENT_XPS_CANCELJOB","features":[74]},{"name":"DOCUMENTPROPERTYHEADER","features":[1,12,74]},{"name":"DOC_INFO_1A","features":[74]},{"name":"DOC_INFO_1W","features":[74]},{"name":"DOC_INFO_2A","features":[74]},{"name":"DOC_INFO_2W","features":[74]},{"name":"DOC_INFO_3A","features":[74]},{"name":"DOC_INFO_3W","features":[74]},{"name":"DOC_INFO_INTERNAL","features":[1,74]},{"name":"DOC_INFO_INTERNAL_LEVEL","features":[74]},{"name":"DPD_DELETE_ALL_FILES","features":[74]},{"name":"DPD_DELETE_SPECIFIC_VERSION","features":[74]},{"name":"DPD_DELETE_UNUSED_FILES","features":[74]},{"name":"DPF_ICONID_AS_HICON","features":[74]},{"name":"DPF_USE_HDLGTEMPLATE","features":[74]},{"name":"DPS_NOPERMISSION","features":[74]},{"name":"DP_STD_DOCPROPPAGE1","features":[74]},{"name":"DP_STD_DOCPROPPAGE2","features":[74]},{"name":"DP_STD_RESERVED_START","features":[74]},{"name":"DP_STD_TREEVIEWPAGE","features":[74]},{"name":"DRIVER_EVENT_DELETE","features":[74]},{"name":"DRIVER_EVENT_INITIALIZE","features":[74]},{"name":"DRIVER_INFO_1A","features":[74]},{"name":"DRIVER_INFO_1W","features":[74]},{"name":"DRIVER_INFO_2A","features":[74]},{"name":"DRIVER_INFO_2W","features":[74]},{"name":"DRIVER_INFO_3A","features":[74]},{"name":"DRIVER_INFO_3W","features":[74]},{"name":"DRIVER_INFO_4A","features":[74]},{"name":"DRIVER_INFO_4W","features":[74]},{"name":"DRIVER_INFO_5A","features":[74]},{"name":"DRIVER_INFO_5W","features":[74]},{"name":"DRIVER_INFO_6A","features":[1,74]},{"name":"DRIVER_INFO_6W","features":[1,74]},{"name":"DRIVER_INFO_8A","features":[1,74]},{"name":"DRIVER_INFO_8W","features":[1,74]},{"name":"DRIVER_KERNELMODE","features":[74]},{"name":"DRIVER_UPGRADE_INFO_1","features":[74]},{"name":"DRIVER_UPGRADE_INFO_2","features":[74]},{"name":"DRIVER_USERMODE","features":[74]},{"name":"DSPRINT_PENDING","features":[74]},{"name":"DSPRINT_PUBLISH","features":[74]},{"name":"DSPRINT_REPUBLISH","features":[74]},{"name":"DSPRINT_UNPUBLISH","features":[74]},{"name":"DSPRINT_UPDATE","features":[74]},{"name":"DeleteFormA","features":[1,74]},{"name":"DeleteFormW","features":[1,74]},{"name":"DeleteJobNamedProperty","features":[1,74]},{"name":"DeleteMonitorA","features":[1,74]},{"name":"DeleteMonitorW","features":[1,74]},{"name":"DeletePortA","features":[1,74]},{"name":"DeletePortW","features":[1,74]},{"name":"DeletePrintProcessorA","features":[1,74]},{"name":"DeletePrintProcessorW","features":[1,74]},{"name":"DeletePrintProvidorA","features":[1,74]},{"name":"DeletePrintProvidorW","features":[1,74]},{"name":"DeletePrinter","features":[1,74]},{"name":"DeletePrinterConnectionA","features":[1,74]},{"name":"DeletePrinterConnectionW","features":[1,74]},{"name":"DeletePrinterDataA","features":[1,74]},{"name":"DeletePrinterDataExA","features":[1,74]},{"name":"DeletePrinterDataExW","features":[1,74]},{"name":"DeletePrinterDataW","features":[1,74]},{"name":"DeletePrinterDriverA","features":[1,74]},{"name":"DeletePrinterDriverExA","features":[1,74]},{"name":"DeletePrinterDriverExW","features":[1,74]},{"name":"DeletePrinterDriverPackageA","features":[74]},{"name":"DeletePrinterDriverPackageW","features":[74]},{"name":"DeletePrinterDriverW","features":[1,74]},{"name":"DeletePrinterIC","features":[1,74]},{"name":"DeletePrinterKeyA","features":[1,74]},{"name":"DeletePrinterKeyW","features":[1,74]},{"name":"DevQueryPrint","features":[1,12,74]},{"name":"DevQueryPrintEx","features":[1,12,74]},{"name":"DocumentPropertiesA","features":[1,12,74]},{"name":"DocumentPropertiesW","features":[1,12,74]},{"name":"EATTRIBUTE_DATATYPE","features":[74]},{"name":"EBranchOfficeJobEventType","features":[74]},{"name":"ECBF_CHECKNAME_AT_FRONT","features":[74]},{"name":"ECBF_CHECKNAME_ONLY","features":[74]},{"name":"ECBF_CHECKNAME_ONLY_ENABLED","features":[74]},{"name":"ECBF_ICONID_AS_HICON","features":[74]},{"name":"ECBF_MASK","features":[74]},{"name":"ECBF_OVERLAY_ECBICON_IF_CHECKED","features":[74]},{"name":"ECBF_OVERLAY_NO_ICON","features":[74]},{"name":"ECBF_OVERLAY_STOP_ICON","features":[74]},{"name":"ECBF_OVERLAY_WARNING_ICON","features":[74]},{"name":"EMFPLAYPROC","features":[1,12,74]},{"name":"EMF_PP_COLOR_OPTIMIZATION","features":[74]},{"name":"EPF_ICONID_AS_HICON","features":[74]},{"name":"EPF_INCL_SETUP_TITLE","features":[74]},{"name":"EPF_MASK","features":[74]},{"name":"EPF_NO_DOT_DOT_DOT","features":[74]},{"name":"EPF_OVERLAY_NO_ICON","features":[74]},{"name":"EPF_OVERLAY_STOP_ICON","features":[74]},{"name":"EPF_OVERLAY_WARNING_ICON","features":[74]},{"name":"EPF_PUSH_TYPE_DLGPROC","features":[74]},{"name":"EPF_USE_HDLGTEMPLATE","features":[74]},{"name":"EPrintPropertyType","features":[74]},{"name":"EPrintXPSJobOperation","features":[74]},{"name":"EPrintXPSJobProgress","features":[74]},{"name":"ERROR_BIDI_DEVICE_CONFIG_UNCHANGED","features":[74]},{"name":"ERROR_BIDI_DEVICE_OFFLINE","features":[74]},{"name":"ERROR_BIDI_ERROR_BASE","features":[74]},{"name":"ERROR_BIDI_GET_ARGUMENT_NOT_SUPPORTED","features":[74]},{"name":"ERROR_BIDI_GET_MISSING_ARGUMENT","features":[74]},{"name":"ERROR_BIDI_GET_REQUIRES_ARGUMENT","features":[74]},{"name":"ERROR_BIDI_NO_BIDI_SCHEMA_EXTENSIONS","features":[74]},{"name":"ERROR_BIDI_NO_LOCALIZED_RESOURCES","features":[74]},{"name":"ERROR_BIDI_SCHEMA_NOT_SUPPORTED","features":[74]},{"name":"ERROR_BIDI_SCHEMA_READ_ONLY","features":[74]},{"name":"ERROR_BIDI_SCHEMA_WRITE_ONLY","features":[74]},{"name":"ERROR_BIDI_SERVER_OFFLINE","features":[74]},{"name":"ERROR_BIDI_SET_DIFFERENT_TYPE","features":[74]},{"name":"ERROR_BIDI_SET_INVALID_SCHEMAPATH","features":[74]},{"name":"ERROR_BIDI_SET_MULTIPLE_SCHEMAPATH","features":[74]},{"name":"ERROR_BIDI_SET_UNKNOWN_FAILURE","features":[74]},{"name":"ERROR_BIDI_STATUS_OK","features":[74]},{"name":"ERROR_BIDI_STATUS_WARNING","features":[74]},{"name":"ERROR_BIDI_UNSUPPORTED_CLIENT_LANGUAGE","features":[74]},{"name":"ERROR_BIDI_UNSUPPORTED_RESOURCE_FORMAT","features":[74]},{"name":"ERR_CPSUI_ALLOCMEM_FAILED","features":[74]},{"name":"ERR_CPSUI_CREATEPROPPAGE_FAILED","features":[74]},{"name":"ERR_CPSUI_CREATE_IMAGELIST_FAILED","features":[74]},{"name":"ERR_CPSUI_CREATE_TRACKBAR_FAILED","features":[74]},{"name":"ERR_CPSUI_CREATE_UDARROW_FAILED","features":[74]},{"name":"ERR_CPSUI_DMCOPIES_USE_EXTPUSH","features":[74]},{"name":"ERR_CPSUI_FUNCTION_NOT_IMPLEMENTED","features":[74]},{"name":"ERR_CPSUI_GETLASTERROR","features":[74]},{"name":"ERR_CPSUI_INTERNAL_ERROR","features":[74]},{"name":"ERR_CPSUI_INVALID_DLGPAGEIDX","features":[74]},{"name":"ERR_CPSUI_INVALID_DLGPAGE_CBSIZE","features":[74]},{"name":"ERR_CPSUI_INVALID_DMPUBID","features":[74]},{"name":"ERR_CPSUI_INVALID_DMPUB_TVOT","features":[74]},{"name":"ERR_CPSUI_INVALID_ECB_CBSIZE","features":[74]},{"name":"ERR_CPSUI_INVALID_EDITBOX_BUF_SIZE","features":[74]},{"name":"ERR_CPSUI_INVALID_EDITBOX_PSEL","features":[74]},{"name":"ERR_CPSUI_INVALID_EXTPUSH_CBSIZE","features":[74]},{"name":"ERR_CPSUI_INVALID_LBCB_TYPE","features":[74]},{"name":"ERR_CPSUI_INVALID_LPARAM","features":[74]},{"name":"ERR_CPSUI_INVALID_OPTITEM_CBSIZE","features":[74]},{"name":"ERR_CPSUI_INVALID_OPTPARAM_CBSIZE","features":[74]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_CBSIZE","features":[74]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_COUNT","features":[74]},{"name":"ERR_CPSUI_INVALID_PDATA","features":[74]},{"name":"ERR_CPSUI_INVALID_PDLGPAGE","features":[74]},{"name":"ERR_CPSUI_INVALID_PUSHBUTTON_TYPE","features":[74]},{"name":"ERR_CPSUI_INVALID_TVOT_TYPE","features":[74]},{"name":"ERR_CPSUI_MORE_THAN_ONE_STDPAGE","features":[74]},{"name":"ERR_CPSUI_MORE_THAN_ONE_TVPAGE","features":[74]},{"name":"ERR_CPSUI_NO_EXTPUSH_DLGTEMPLATEID","features":[74]},{"name":"ERR_CPSUI_NO_PROPSHEETPAGE","features":[74]},{"name":"ERR_CPSUI_NULL_CALLERNAME","features":[74]},{"name":"ERR_CPSUI_NULL_ECB_PCHECKEDNAME","features":[74]},{"name":"ERR_CPSUI_NULL_ECB_PTITLE","features":[74]},{"name":"ERR_CPSUI_NULL_EXTPUSH_CALLBACK","features":[74]},{"name":"ERR_CPSUI_NULL_EXTPUSH_DLGPROC","features":[74]},{"name":"ERR_CPSUI_NULL_HINST","features":[74]},{"name":"ERR_CPSUI_NULL_OPTITEMNAME","features":[74]},{"name":"ERR_CPSUI_NULL_POPTITEM","features":[74]},{"name":"ERR_CPSUI_NULL_POPTPARAM","features":[74]},{"name":"ERR_CPSUI_SUBITEM_DIFF_DLGPAGEIDX","features":[74]},{"name":"ERR_CPSUI_SUBITEM_DIFF_OPTIF_HIDE","features":[74]},{"name":"ERR_CPSUI_TOO_MANY_DLGPAGES","features":[74]},{"name":"ERR_CPSUI_TOO_MANY_PROPSHEETPAGES","features":[74]},{"name":"ERR_CPSUI_ZERO_OPTITEM","features":[74]},{"name":"EXTCHKBOX","features":[74]},{"name":"EXTPUSH","features":[1,74,50]},{"name":"EXTTEXTMETRIC","features":[74]},{"name":"EXpsCompressionOptions","features":[74]},{"name":"EXpsFontOptions","features":[74]},{"name":"EXpsFontRestriction","features":[74]},{"name":"EXpsJobConsumption","features":[74]},{"name":"E_VERSION_NOT_SUPPORTED","features":[74]},{"name":"EndDocPrinter","features":[1,74]},{"name":"EndPagePrinter","features":[1,74]},{"name":"EnumFormsA","features":[1,74]},{"name":"EnumFormsW","features":[1,74]},{"name":"EnumJobNamedProperties","features":[1,74]},{"name":"EnumJobsA","features":[1,74]},{"name":"EnumJobsW","features":[1,74]},{"name":"EnumMonitorsA","features":[1,74]},{"name":"EnumMonitorsW","features":[1,74]},{"name":"EnumPortsA","features":[1,74]},{"name":"EnumPortsW","features":[1,74]},{"name":"EnumPrintProcessorDatatypesA","features":[1,74]},{"name":"EnumPrintProcessorDatatypesW","features":[1,74]},{"name":"EnumPrintProcessorsA","features":[1,74]},{"name":"EnumPrintProcessorsW","features":[1,74]},{"name":"EnumPrinterDataA","features":[1,74]},{"name":"EnumPrinterDataExA","features":[1,74]},{"name":"EnumPrinterDataExW","features":[1,74]},{"name":"EnumPrinterDataW","features":[1,74]},{"name":"EnumPrinterDriversA","features":[1,74]},{"name":"EnumPrinterDriversW","features":[1,74]},{"name":"EnumPrinterKeyA","features":[1,74]},{"name":"EnumPrinterKeyW","features":[1,74]},{"name":"EnumPrintersA","features":[1,74]},{"name":"EnumPrintersW","features":[1,74]},{"name":"ExtDeviceMode","features":[1,12,74]},{"name":"FG_CANCHANGE","features":[74]},{"name":"FILL_WITH_DEFAULTS","features":[74]},{"name":"FMTID_PrinterPropertyBag","features":[74]},{"name":"FNT_INFO_CURRENTFONTID","features":[74]},{"name":"FNT_INFO_FONTBOLD","features":[74]},{"name":"FNT_INFO_FONTHEIGHT","features":[74]},{"name":"FNT_INFO_FONTITALIC","features":[74]},{"name":"FNT_INFO_FONTMAXWIDTH","features":[74]},{"name":"FNT_INFO_FONTSTRIKETHRU","features":[74]},{"name":"FNT_INFO_FONTUNDERLINE","features":[74]},{"name":"FNT_INFO_FONTWIDTH","features":[74]},{"name":"FNT_INFO_GRAYPERCENTAGE","features":[74]},{"name":"FNT_INFO_MAX","features":[74]},{"name":"FNT_INFO_NEXTFONTID","features":[74]},{"name":"FNT_INFO_NEXTGLYPH","features":[74]},{"name":"FNT_INFO_PRINTDIRINCCDEGREES","features":[74]},{"name":"FNT_INFO_TEXTXRES","features":[74]},{"name":"FNT_INFO_TEXTYRES","features":[74]},{"name":"FONT_DIR_SORTED","features":[74]},{"name":"FONT_FL_DEVICEFONT","features":[74]},{"name":"FONT_FL_GLYPHSET_GTT","features":[74]},{"name":"FONT_FL_GLYPHSET_RLE","features":[74]},{"name":"FONT_FL_IFI","features":[74]},{"name":"FONT_FL_PERMANENT_SF","features":[74]},{"name":"FONT_FL_RESERVED","features":[74]},{"name":"FONT_FL_SOFTFONT","features":[74]},{"name":"FONT_FL_UFM","features":[74]},{"name":"FORM_BUILTIN","features":[74]},{"name":"FORM_INFO_1A","features":[1,74]},{"name":"FORM_INFO_1W","features":[1,74]},{"name":"FORM_INFO_2A","features":[1,74]},{"name":"FORM_INFO_2W","features":[1,74]},{"name":"FORM_PRINTER","features":[74]},{"name":"FORM_USER","features":[74]},{"name":"FinalPageCount","features":[74]},{"name":"FindClosePrinterChangeNotification","features":[1,74]},{"name":"FindFirstPrinterChangeNotification","features":[1,74]},{"name":"FindNextPrinterChangeNotification","features":[1,74]},{"name":"FlushPrinter","features":[1,74]},{"name":"Font_Normal","features":[74]},{"name":"Font_Obfusticate","features":[74]},{"name":"FreePrintNamedPropertyArray","features":[74]},{"name":"FreePrintPropertyValue","features":[74]},{"name":"FreePrinterNotifyInfo","features":[1,74]},{"name":"GLYPHRUN","features":[74]},{"name":"GPD_OEMCUSTOMDATA","features":[74]},{"name":"GUID_DEVINTERFACE_IPPUSB_PRINT","features":[74]},{"name":"GUID_DEVINTERFACE_USBPRINT","features":[74]},{"name":"GdiDeleteSpoolFileHandle","features":[1,74]},{"name":"GdiEndDocEMF","features":[1,74]},{"name":"GdiEndPageEMF","features":[1,74]},{"name":"GdiGetDC","features":[1,12,74]},{"name":"GdiGetDevmodeForPage","features":[1,12,74]},{"name":"GdiGetPageCount","features":[1,74]},{"name":"GdiGetPageHandle","features":[1,74]},{"name":"GdiGetSpoolFileHandle","features":[1,12,74]},{"name":"GdiPlayPageEMF","features":[1,74]},{"name":"GdiResetDCEMF","features":[1,12,74]},{"name":"GdiStartDocEMF","features":[1,74,75]},{"name":"GdiStartPageEMF","features":[1,74]},{"name":"GenerateCopyFilePaths","features":[74]},{"name":"GetCPSUIUserData","features":[1,74]},{"name":"GetCorePrinterDriversA","features":[1,74]},{"name":"GetCorePrinterDriversW","features":[1,74]},{"name":"GetDefaultPrinterA","features":[1,74]},{"name":"GetDefaultPrinterW","features":[1,74]},{"name":"GetFormA","features":[1,74]},{"name":"GetFormW","features":[1,74]},{"name":"GetJobA","features":[1,74]},{"name":"GetJobAttributes","features":[1,12,74]},{"name":"GetJobAttributesEx","features":[1,12,74]},{"name":"GetJobNamedPropertyValue","features":[1,74]},{"name":"GetJobW","features":[1,74]},{"name":"GetPrintExecutionData","features":[1,74]},{"name":"GetPrintOutputInfo","features":[1,74]},{"name":"GetPrintProcessorDirectoryA","features":[1,74]},{"name":"GetPrintProcessorDirectoryW","features":[1,74]},{"name":"GetPrinterA","features":[1,74]},{"name":"GetPrinterDataA","features":[1,74]},{"name":"GetPrinterDataExA","features":[1,74]},{"name":"GetPrinterDataExW","features":[1,74]},{"name":"GetPrinterDataW","features":[1,74]},{"name":"GetPrinterDriver2A","features":[1,74]},{"name":"GetPrinterDriver2W","features":[1,74]},{"name":"GetPrinterDriverA","features":[1,74]},{"name":"GetPrinterDriverDirectoryA","features":[1,74]},{"name":"GetPrinterDriverDirectoryW","features":[1,74]},{"name":"GetPrinterDriverPackagePathA","features":[74]},{"name":"GetPrinterDriverPackagePathW","features":[74]},{"name":"GetPrinterDriverW","features":[1,74]},{"name":"GetPrinterW","features":[1,74]},{"name":"GetSpoolFileHandle","features":[1,74]},{"name":"IAsyncGetSendNotificationCookie","features":[74]},{"name":"IAsyncGetSrvReferralCookie","features":[74]},{"name":"IBidiAsyncNotifyChannel","features":[74]},{"name":"IBidiRequest","features":[74]},{"name":"IBidiRequestContainer","features":[74]},{"name":"IBidiSpl","features":[74]},{"name":"IBidiSpl2","features":[74]},{"name":"IDI_CPSUI_ADVANCE","features":[74]},{"name":"IDI_CPSUI_AUTOSEL","features":[74]},{"name":"IDI_CPSUI_COLLATE","features":[74]},{"name":"IDI_CPSUI_COLOR","features":[74]},{"name":"IDI_CPSUI_COPY","features":[74]},{"name":"IDI_CPSUI_DEVICE","features":[74]},{"name":"IDI_CPSUI_DEVICE2","features":[74]},{"name":"IDI_CPSUI_DEVICE_FEATURE","features":[74]},{"name":"IDI_CPSUI_DITHER_COARSE","features":[74]},{"name":"IDI_CPSUI_DITHER_FINE","features":[74]},{"name":"IDI_CPSUI_DITHER_LINEART","features":[74]},{"name":"IDI_CPSUI_DITHER_NONE","features":[74]},{"name":"IDI_CPSUI_DOCUMENT","features":[74]},{"name":"IDI_CPSUI_DUPLEX_HORZ","features":[74]},{"name":"IDI_CPSUI_DUPLEX_HORZ_L","features":[74]},{"name":"IDI_CPSUI_DUPLEX_NONE","features":[74]},{"name":"IDI_CPSUI_DUPLEX_NONE_L","features":[74]},{"name":"IDI_CPSUI_DUPLEX_VERT","features":[74]},{"name":"IDI_CPSUI_DUPLEX_VERT_L","features":[74]},{"name":"IDI_CPSUI_EMPTY","features":[74]},{"name":"IDI_CPSUI_ENVELOPE","features":[74]},{"name":"IDI_CPSUI_ENVELOPE_FEED","features":[74]},{"name":"IDI_CPSUI_ERROR","features":[74]},{"name":"IDI_CPSUI_FALSE","features":[74]},{"name":"IDI_CPSUI_FAX","features":[74]},{"name":"IDI_CPSUI_FONTCART","features":[74]},{"name":"IDI_CPSUI_FONTCARTHDR","features":[74]},{"name":"IDI_CPSUI_FONTCART_SLOT","features":[74]},{"name":"IDI_CPSUI_FONTSUB","features":[74]},{"name":"IDI_CPSUI_FORMTRAYASSIGN","features":[74]},{"name":"IDI_CPSUI_GENERIC_ITEM","features":[74]},{"name":"IDI_CPSUI_GENERIC_OPTION","features":[74]},{"name":"IDI_CPSUI_GRAPHIC","features":[74]},{"name":"IDI_CPSUI_HALFTONE_SETUP","features":[74]},{"name":"IDI_CPSUI_HTCLRADJ","features":[74]},{"name":"IDI_CPSUI_HT_DEVICE","features":[74]},{"name":"IDI_CPSUI_HT_HOST","features":[74]},{"name":"IDI_CPSUI_ICM_INTENT","features":[74]},{"name":"IDI_CPSUI_ICM_METHOD","features":[74]},{"name":"IDI_CPSUI_ICM_OPTION","features":[74]},{"name":"IDI_CPSUI_ICONID_FIRST","features":[74]},{"name":"IDI_CPSUI_ICONID_LAST","features":[74]},{"name":"IDI_CPSUI_INSTALLABLE_OPTION","features":[74]},{"name":"IDI_CPSUI_LANDSCAPE","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWL","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWLR","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWS","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL_NB","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP_NB","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_PORTRAIT","features":[74]},{"name":"IDI_CPSUI_LAYOUT_BMP_ROT_PORT","features":[74]},{"name":"IDI_CPSUI_LF_PEN_PLOTTER","features":[74]},{"name":"IDI_CPSUI_LF_RASTER_PLOTTER","features":[74]},{"name":"IDI_CPSUI_MANUAL_FEED","features":[74]},{"name":"IDI_CPSUI_MEM","features":[74]},{"name":"IDI_CPSUI_MONO","features":[74]},{"name":"IDI_CPSUI_NO","features":[74]},{"name":"IDI_CPSUI_NOTINSTALLED","features":[74]},{"name":"IDI_CPSUI_NUP_BORDER","features":[74]},{"name":"IDI_CPSUI_OFF","features":[74]},{"name":"IDI_CPSUI_ON","features":[74]},{"name":"IDI_CPSUI_OPTION","features":[74]},{"name":"IDI_CPSUI_OPTION2","features":[74]},{"name":"IDI_CPSUI_OUTBIN","features":[74]},{"name":"IDI_CPSUI_OUTPUT","features":[74]},{"name":"IDI_CPSUI_PAGE_PROTECT","features":[74]},{"name":"IDI_CPSUI_PAPER_OUTPUT","features":[74]},{"name":"IDI_CPSUI_PAPER_TRAY","features":[74]},{"name":"IDI_CPSUI_PAPER_TRAY2","features":[74]},{"name":"IDI_CPSUI_PAPER_TRAY3","features":[74]},{"name":"IDI_CPSUI_PEN_CARROUSEL","features":[74]},{"name":"IDI_CPSUI_PLOTTER_PEN","features":[74]},{"name":"IDI_CPSUI_PORTRAIT","features":[74]},{"name":"IDI_CPSUI_POSTSCRIPT","features":[74]},{"name":"IDI_CPSUI_PRINTER","features":[74]},{"name":"IDI_CPSUI_PRINTER2","features":[74]},{"name":"IDI_CPSUI_PRINTER3","features":[74]},{"name":"IDI_CPSUI_PRINTER4","features":[74]},{"name":"IDI_CPSUI_PRINTER_FEATURE","features":[74]},{"name":"IDI_CPSUI_PRINTER_FOLDER","features":[74]},{"name":"IDI_CPSUI_QUESTION","features":[74]},{"name":"IDI_CPSUI_RES_DRAFT","features":[74]},{"name":"IDI_CPSUI_RES_HIGH","features":[74]},{"name":"IDI_CPSUI_RES_LOW","features":[74]},{"name":"IDI_CPSUI_RES_MEDIUM","features":[74]},{"name":"IDI_CPSUI_RES_PRESENTATION","features":[74]},{"name":"IDI_CPSUI_ROLL_PAPER","features":[74]},{"name":"IDI_CPSUI_ROT_LAND","features":[74]},{"name":"IDI_CPSUI_ROT_PORT","features":[74]},{"name":"IDI_CPSUI_RUN_DIALOG","features":[74]},{"name":"IDI_CPSUI_SCALING","features":[74]},{"name":"IDI_CPSUI_SEL_NONE","features":[74]},{"name":"IDI_CPSUI_SF_PEN_PLOTTER","features":[74]},{"name":"IDI_CPSUI_SF_RASTER_PLOTTER","features":[74]},{"name":"IDI_CPSUI_STAPLER_OFF","features":[74]},{"name":"IDI_CPSUI_STAPLER_ON","features":[74]},{"name":"IDI_CPSUI_STD_FORM","features":[74]},{"name":"IDI_CPSUI_STOP","features":[74]},{"name":"IDI_CPSUI_STOP_WARNING_OVERLAY","features":[74]},{"name":"IDI_CPSUI_TELEPHONE","features":[74]},{"name":"IDI_CPSUI_TRANSPARENT","features":[74]},{"name":"IDI_CPSUI_TRUE","features":[74]},{"name":"IDI_CPSUI_TT_DOWNLOADSOFT","features":[74]},{"name":"IDI_CPSUI_TT_DOWNLOADVECT","features":[74]},{"name":"IDI_CPSUI_TT_PRINTASGRAPHIC","features":[74]},{"name":"IDI_CPSUI_TT_SUBDEV","features":[74]},{"name":"IDI_CPSUI_WARNING","features":[74]},{"name":"IDI_CPSUI_WARNING_OVERLAY","features":[74]},{"name":"IDI_CPSUI_WATERMARK","features":[74]},{"name":"IDI_CPSUI_YES","features":[74]},{"name":"IDS_CPSUI_ABOUT","features":[74]},{"name":"IDS_CPSUI_ADVANCED","features":[74]},{"name":"IDS_CPSUI_ADVANCEDOCUMENT","features":[74]},{"name":"IDS_CPSUI_ALL","features":[74]},{"name":"IDS_CPSUI_AUTOSELECT","features":[74]},{"name":"IDS_CPSUI_BACKTOFRONT","features":[74]},{"name":"IDS_CPSUI_BOND","features":[74]},{"name":"IDS_CPSUI_BOOKLET","features":[74]},{"name":"IDS_CPSUI_BOOKLET_EDGE","features":[74]},{"name":"IDS_CPSUI_BOOKLET_EDGE_LEFT","features":[74]},{"name":"IDS_CPSUI_BOOKLET_EDGE_RIGHT","features":[74]},{"name":"IDS_CPSUI_CASSETTE_TRAY","features":[74]},{"name":"IDS_CPSUI_CHANGE","features":[74]},{"name":"IDS_CPSUI_CHANGED","features":[74]},{"name":"IDS_CPSUI_CHANGES","features":[74]},{"name":"IDS_CPSUI_COARSE","features":[74]},{"name":"IDS_CPSUI_COLLATE","features":[74]},{"name":"IDS_CPSUI_COLLATED","features":[74]},{"name":"IDS_CPSUI_COLON_SEP","features":[74]},{"name":"IDS_CPSUI_COLOR","features":[74]},{"name":"IDS_CPSUI_COLOR_APPERANCE","features":[74]},{"name":"IDS_CPSUI_COPIES","features":[74]},{"name":"IDS_CPSUI_COPY","features":[74]},{"name":"IDS_CPSUI_DEFAULT","features":[74]},{"name":"IDS_CPSUI_DEFAULTDOCUMENT","features":[74]},{"name":"IDS_CPSUI_DEFAULT_TRAY","features":[74]},{"name":"IDS_CPSUI_DEVICE","features":[74]},{"name":"IDS_CPSUI_DEVICEOPTIONS","features":[74]},{"name":"IDS_CPSUI_DEVICE_SETTINGS","features":[74]},{"name":"IDS_CPSUI_DITHERING","features":[74]},{"name":"IDS_CPSUI_DOCUMENT","features":[74]},{"name":"IDS_CPSUI_DOWN_THEN_LEFT","features":[74]},{"name":"IDS_CPSUI_DOWN_THEN_RIGHT","features":[74]},{"name":"IDS_CPSUI_DRAFT","features":[74]},{"name":"IDS_CPSUI_DUPLEX","features":[74]},{"name":"IDS_CPSUI_ENVELOPE_TRAY","features":[74]},{"name":"IDS_CPSUI_ENVMANUAL_TRAY","features":[74]},{"name":"IDS_CPSUI_ERRDIFFUSE","features":[74]},{"name":"IDS_CPSUI_ERROR","features":[74]},{"name":"IDS_CPSUI_EXIST","features":[74]},{"name":"IDS_CPSUI_FALSE","features":[74]},{"name":"IDS_CPSUI_FAST","features":[74]},{"name":"IDS_CPSUI_FAX","features":[74]},{"name":"IDS_CPSUI_FINE","features":[74]},{"name":"IDS_CPSUI_FORMNAME","features":[74]},{"name":"IDS_CPSUI_FORMSOURCE","features":[74]},{"name":"IDS_CPSUI_FORMTRAYASSIGN","features":[74]},{"name":"IDS_CPSUI_FRONTTOBACK","features":[74]},{"name":"IDS_CPSUI_GLOSSY","features":[74]},{"name":"IDS_CPSUI_GRAPHIC","features":[74]},{"name":"IDS_CPSUI_GRAYSCALE","features":[74]},{"name":"IDS_CPSUI_HALFTONE","features":[74]},{"name":"IDS_CPSUI_HALFTONE_SETUP","features":[74]},{"name":"IDS_CPSUI_HIGH","features":[74]},{"name":"IDS_CPSUI_HORIZONTAL","features":[74]},{"name":"IDS_CPSUI_HTCLRADJ","features":[74]},{"name":"IDS_CPSUI_ICM","features":[74]},{"name":"IDS_CPSUI_ICMINTENT","features":[74]},{"name":"IDS_CPSUI_ICMMETHOD","features":[74]},{"name":"IDS_CPSUI_ICM_BLACKWHITE","features":[74]},{"name":"IDS_CPSUI_ICM_COLORMETRIC","features":[74]},{"name":"IDS_CPSUI_ICM_CONTRAST","features":[74]},{"name":"IDS_CPSUI_ICM_NO","features":[74]},{"name":"IDS_CPSUI_ICM_SATURATION","features":[74]},{"name":"IDS_CPSUI_ICM_YES","features":[74]},{"name":"IDS_CPSUI_INSTFONTCART","features":[74]},{"name":"IDS_CPSUI_LANDSCAPE","features":[74]},{"name":"IDS_CPSUI_LARGECAP_TRAY","features":[74]},{"name":"IDS_CPSUI_LARGEFMT_TRAY","features":[74]},{"name":"IDS_CPSUI_LBCB_NOSEL","features":[74]},{"name":"IDS_CPSUI_LEFT_ANGLE","features":[74]},{"name":"IDS_CPSUI_LEFT_SLOT","features":[74]},{"name":"IDS_CPSUI_LEFT_THEN_DOWN","features":[74]},{"name":"IDS_CPSUI_LINEART","features":[74]},{"name":"IDS_CPSUI_LONG_SIDE","features":[74]},{"name":"IDS_CPSUI_LOW","features":[74]},{"name":"IDS_CPSUI_LOWER_TRAY","features":[74]},{"name":"IDS_CPSUI_MAILBOX","features":[74]},{"name":"IDS_CPSUI_MAKE","features":[74]},{"name":"IDS_CPSUI_MANUALFEED","features":[74]},{"name":"IDS_CPSUI_MANUAL_DUPLEX","features":[74]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_OFF","features":[74]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_ON","features":[74]},{"name":"IDS_CPSUI_MANUAL_TRAY","features":[74]},{"name":"IDS_CPSUI_MEDIA","features":[74]},{"name":"IDS_CPSUI_MEDIUM","features":[74]},{"name":"IDS_CPSUI_MIDDLE_TRAY","features":[74]},{"name":"IDS_CPSUI_MONOCHROME","features":[74]},{"name":"IDS_CPSUI_MORE","features":[74]},{"name":"IDS_CPSUI_NO","features":[74]},{"name":"IDS_CPSUI_NONE","features":[74]},{"name":"IDS_CPSUI_NOT","features":[74]},{"name":"IDS_CPSUI_NOTINSTALLED","features":[74]},{"name":"IDS_CPSUI_NO_NAME","features":[74]},{"name":"IDS_CPSUI_NUM_OF_COPIES","features":[74]},{"name":"IDS_CPSUI_NUP","features":[74]},{"name":"IDS_CPSUI_NUP_BORDER","features":[74]},{"name":"IDS_CPSUI_NUP_BORDERED","features":[74]},{"name":"IDS_CPSUI_NUP_DIRECTION","features":[74]},{"name":"IDS_CPSUI_NUP_FOURUP","features":[74]},{"name":"IDS_CPSUI_NUP_NINEUP","features":[74]},{"name":"IDS_CPSUI_NUP_NORMAL","features":[74]},{"name":"IDS_CPSUI_NUP_SIXTEENUP","features":[74]},{"name":"IDS_CPSUI_NUP_SIXUP","features":[74]},{"name":"IDS_CPSUI_NUP_TWOUP","features":[74]},{"name":"IDS_CPSUI_OF","features":[74]},{"name":"IDS_CPSUI_OFF","features":[74]},{"name":"IDS_CPSUI_ON","features":[74]},{"name":"IDS_CPSUI_ONLYONE","features":[74]},{"name":"IDS_CPSUI_OPTION","features":[74]},{"name":"IDS_CPSUI_OPTIONS","features":[74]},{"name":"IDS_CPSUI_ORIENTATION","features":[74]},{"name":"IDS_CPSUI_OUTBINASSIGN","features":[74]},{"name":"IDS_CPSUI_OUTPUTBIN","features":[74]},{"name":"IDS_CPSUI_PAGEORDER","features":[74]},{"name":"IDS_CPSUI_PAGEPROTECT","features":[74]},{"name":"IDS_CPSUI_PAPER_OUTPUT","features":[74]},{"name":"IDS_CPSUI_PERCENT","features":[74]},{"name":"IDS_CPSUI_PLOT","features":[74]},{"name":"IDS_CPSUI_PORTRAIT","features":[74]},{"name":"IDS_CPSUI_POSTER","features":[74]},{"name":"IDS_CPSUI_POSTER_2x2","features":[74]},{"name":"IDS_CPSUI_POSTER_3x3","features":[74]},{"name":"IDS_CPSUI_POSTER_4x4","features":[74]},{"name":"IDS_CPSUI_PRESENTATION","features":[74]},{"name":"IDS_CPSUI_PRINT","features":[74]},{"name":"IDS_CPSUI_PRINTER","features":[74]},{"name":"IDS_CPSUI_PRINTERMEM_KB","features":[74]},{"name":"IDS_CPSUI_PRINTERMEM_MB","features":[74]},{"name":"IDS_CPSUI_PRINTFLDSETTING","features":[74]},{"name":"IDS_CPSUI_PRINTQUALITY","features":[74]},{"name":"IDS_CPSUI_PROPERTIES","features":[74]},{"name":"IDS_CPSUI_QUALITY_BEST","features":[74]},{"name":"IDS_CPSUI_QUALITY_BETTER","features":[74]},{"name":"IDS_CPSUI_QUALITY_CUSTOM","features":[74]},{"name":"IDS_CPSUI_QUALITY_DRAFT","features":[74]},{"name":"IDS_CPSUI_QUALITY_SETTINGS","features":[74]},{"name":"IDS_CPSUI_RANGE_FROM","features":[74]},{"name":"IDS_CPSUI_REGULAR","features":[74]},{"name":"IDS_CPSUI_RESET","features":[74]},{"name":"IDS_CPSUI_RESOLUTION","features":[74]},{"name":"IDS_CPSUI_REVERT","features":[74]},{"name":"IDS_CPSUI_RIGHT_ANGLE","features":[74]},{"name":"IDS_CPSUI_RIGHT_SLOT","features":[74]},{"name":"IDS_CPSUI_RIGHT_THEN_DOWN","features":[74]},{"name":"IDS_CPSUI_ROTATED","features":[74]},{"name":"IDS_CPSUI_ROT_LAND","features":[74]},{"name":"IDS_CPSUI_ROT_PORT","features":[74]},{"name":"IDS_CPSUI_SCALING","features":[74]},{"name":"IDS_CPSUI_SETTING","features":[74]},{"name":"IDS_CPSUI_SETTINGS","features":[74]},{"name":"IDS_CPSUI_SETUP","features":[74]},{"name":"IDS_CPSUI_SHORT_SIDE","features":[74]},{"name":"IDS_CPSUI_SIDE1","features":[74]},{"name":"IDS_CPSUI_SIDE2","features":[74]},{"name":"IDS_CPSUI_SIMPLEX","features":[74]},{"name":"IDS_CPSUI_SLASH_SEP","features":[74]},{"name":"IDS_CPSUI_SLOT1","features":[74]},{"name":"IDS_CPSUI_SLOT2","features":[74]},{"name":"IDS_CPSUI_SLOT3","features":[74]},{"name":"IDS_CPSUI_SLOT4","features":[74]},{"name":"IDS_CPSUI_SLOW","features":[74]},{"name":"IDS_CPSUI_SMALLFMT_TRAY","features":[74]},{"name":"IDS_CPSUI_SOURCE","features":[74]},{"name":"IDS_CPSUI_STACKER","features":[74]},{"name":"IDS_CPSUI_STANDARD","features":[74]},{"name":"IDS_CPSUI_STAPLE","features":[74]},{"name":"IDS_CPSUI_STAPLER","features":[74]},{"name":"IDS_CPSUI_STAPLER_OFF","features":[74]},{"name":"IDS_CPSUI_STAPLER_ON","features":[74]},{"name":"IDS_CPSUI_STDDOCPROPTAB","features":[74]},{"name":"IDS_CPSUI_STDDOCPROPTAB1","features":[74]},{"name":"IDS_CPSUI_STDDOCPROPTAB2","features":[74]},{"name":"IDS_CPSUI_STDDOCPROPTVTAB","features":[74]},{"name":"IDS_CPSUI_STRID_FIRST","features":[74]},{"name":"IDS_CPSUI_STRID_LAST","features":[74]},{"name":"IDS_CPSUI_TO","features":[74]},{"name":"IDS_CPSUI_TOTAL","features":[74]},{"name":"IDS_CPSUI_TRACTOR_TRAY","features":[74]},{"name":"IDS_CPSUI_TRANSPARENCY","features":[74]},{"name":"IDS_CPSUI_TRUE","features":[74]},{"name":"IDS_CPSUI_TTOPTION","features":[74]},{"name":"IDS_CPSUI_TT_DOWNLOADSOFT","features":[74]},{"name":"IDS_CPSUI_TT_DOWNLOADVECT","features":[74]},{"name":"IDS_CPSUI_TT_PRINTASGRAPHIC","features":[74]},{"name":"IDS_CPSUI_TT_SUBDEV","features":[74]},{"name":"IDS_CPSUI_UPPER_TRAY","features":[74]},{"name":"IDS_CPSUI_USE_DEVICE_HT","features":[74]},{"name":"IDS_CPSUI_USE_HOST_HT","features":[74]},{"name":"IDS_CPSUI_USE_PRINTER_HT","features":[74]},{"name":"IDS_CPSUI_VERSION","features":[74]},{"name":"IDS_CPSUI_VERTICAL","features":[74]},{"name":"IDS_CPSUI_WARNING","features":[74]},{"name":"IDS_CPSUI_WATERMARK","features":[74]},{"name":"IDS_CPSUI_YES","features":[74]},{"name":"IFixedDocument","features":[74]},{"name":"IFixedDocumentSequence","features":[74]},{"name":"IFixedPage","features":[74]},{"name":"IImgCreateErrorInfo","features":[74]},{"name":"IImgErrorInfo","features":[74]},{"name":"IInterFilterCommunicator","features":[74]},{"name":"INSERTPSUIPAGE_INFO","features":[74]},{"name":"INSPSUIPAGE_MODE_AFTER","features":[74]},{"name":"INSPSUIPAGE_MODE_BEFORE","features":[74]},{"name":"INSPSUIPAGE_MODE_FIRST_CHILD","features":[74]},{"name":"INSPSUIPAGE_MODE_INDEX","features":[74]},{"name":"INSPSUIPAGE_MODE_LAST_CHILD","features":[74]},{"name":"INTERNAL_NOTIFICATION_QUEUE_IS_FULL","features":[74]},{"name":"INVALID_NOTIFICATION_TYPE","features":[74]},{"name":"INVOC","features":[74]},{"name":"IOCTL_USBPRINT_ADD_CHILD_DEVICE","features":[74]},{"name":"IOCTL_USBPRINT_ADD_MSIPP_COMPAT_ID","features":[74]},{"name":"IOCTL_USBPRINT_CYCLE_PORT","features":[74]},{"name":"IOCTL_USBPRINT_GET_1284_ID","features":[74]},{"name":"IOCTL_USBPRINT_GET_INTERFACE_TYPE","features":[74]},{"name":"IOCTL_USBPRINT_GET_LPT_STATUS","features":[74]},{"name":"IOCTL_USBPRINT_GET_PROTOCOL","features":[74]},{"name":"IOCTL_USBPRINT_SET_DEVICE_ID","features":[74]},{"name":"IOCTL_USBPRINT_SET_PORT_NUMBER","features":[74]},{"name":"IOCTL_USBPRINT_SET_PROTOCOL","features":[74]},{"name":"IOCTL_USBPRINT_SOFT_RESET","features":[74]},{"name":"IOCTL_USBPRINT_VENDOR_GET_COMMAND","features":[74]},{"name":"IOCTL_USBPRINT_VENDOR_SET_COMMAND","features":[74]},{"name":"IPDFP_COPY_ALL_FILES","features":[74]},{"name":"IPartBase","features":[74]},{"name":"IPartColorProfile","features":[74]},{"name":"IPartDiscardControl","features":[74]},{"name":"IPartFont","features":[74]},{"name":"IPartFont2","features":[74]},{"name":"IPartImage","features":[74]},{"name":"IPartPrintTicket","features":[74]},{"name":"IPartResourceDictionary","features":[74]},{"name":"IPartThumbnail","features":[74]},{"name":"IPrintAsyncCookie","features":[74]},{"name":"IPrintAsyncNewChannelCookie","features":[74]},{"name":"IPrintAsyncNotify","features":[74]},{"name":"IPrintAsyncNotifyCallback","features":[74]},{"name":"IPrintAsyncNotifyChannel","features":[74]},{"name":"IPrintAsyncNotifyDataObject","features":[74]},{"name":"IPrintAsyncNotifyRegistration","features":[74]},{"name":"IPrintAsyncNotifyServerReferral","features":[74]},{"name":"IPrintBidiAsyncNotifyRegistration","features":[74]},{"name":"IPrintClassObjectFactory","features":[74]},{"name":"IPrintCoreHelper","features":[74]},{"name":"IPrintCoreHelperPS","features":[74]},{"name":"IPrintCoreHelperUni","features":[74]},{"name":"IPrintCoreHelperUni2","features":[74]},{"name":"IPrintCoreUI2","features":[74]},{"name":"IPrintJob","features":[74]},{"name":"IPrintJobCollection","features":[74]},{"name":"IPrintOemCommon","features":[74]},{"name":"IPrintOemDriverUI","features":[74]},{"name":"IPrintOemUI","features":[74]},{"name":"IPrintOemUI2","features":[74]},{"name":"IPrintOemUIMXDC","features":[74]},{"name":"IPrintPipelineFilter","features":[74]},{"name":"IPrintPipelineManagerControl","features":[74]},{"name":"IPrintPipelineProgressReport","features":[74]},{"name":"IPrintPipelinePropertyBag","features":[74]},{"name":"IPrintPreviewDxgiPackageTarget","features":[74]},{"name":"IPrintReadStream","features":[74]},{"name":"IPrintReadStreamFactory","features":[74]},{"name":"IPrintSchemaAsyncOperation","features":[74]},{"name":"IPrintSchemaAsyncOperationEvent","features":[74]},{"name":"IPrintSchemaCapabilities","features":[74]},{"name":"IPrintSchemaCapabilities2","features":[74]},{"name":"IPrintSchemaDisplayableElement","features":[74]},{"name":"IPrintSchemaElement","features":[74]},{"name":"IPrintSchemaFeature","features":[74]},{"name":"IPrintSchemaNUpOption","features":[74]},{"name":"IPrintSchemaOption","features":[74]},{"name":"IPrintSchemaOptionCollection","features":[74]},{"name":"IPrintSchemaPageImageableSize","features":[74]},{"name":"IPrintSchemaPageMediaSizeOption","features":[74]},{"name":"IPrintSchemaParameterDefinition","features":[74]},{"name":"IPrintSchemaParameterInitializer","features":[74]},{"name":"IPrintSchemaTicket","features":[74]},{"name":"IPrintSchemaTicket2","features":[74]},{"name":"IPrintTicketProvider","features":[74]},{"name":"IPrintTicketProvider2","features":[74]},{"name":"IPrintUnidiAsyncNotifyRegistration","features":[74]},{"name":"IPrintWriteStream","features":[74]},{"name":"IPrintWriteStreamFlush","features":[74]},{"name":"IPrinterBidiSetRequestCallback","features":[74]},{"name":"IPrinterExtensionAsyncOperation","features":[74]},{"name":"IPrinterExtensionContext","features":[74]},{"name":"IPrinterExtensionContextCollection","features":[74]},{"name":"IPrinterExtensionEvent","features":[74]},{"name":"IPrinterExtensionEventArgs","features":[74]},{"name":"IPrinterExtensionManager","features":[74]},{"name":"IPrinterExtensionRequest","features":[74]},{"name":"IPrinterPropertyBag","features":[74]},{"name":"IPrinterQueue","features":[74]},{"name":"IPrinterQueue2","features":[74]},{"name":"IPrinterQueueEvent","features":[74]},{"name":"IPrinterQueueView","features":[74]},{"name":"IPrinterQueueViewEvent","features":[74]},{"name":"IPrinterScriptContext","features":[74]},{"name":"IPrinterScriptablePropertyBag","features":[74]},{"name":"IPrinterScriptablePropertyBag2","features":[74]},{"name":"IPrinterScriptableSequentialStream","features":[74]},{"name":"IPrinterScriptableStream","features":[74]},{"name":"IXpsDocument","features":[74]},{"name":"IXpsDocumentConsumer","features":[74]},{"name":"IXpsDocumentProvider","features":[74]},{"name":"IXpsPartIterator","features":[74]},{"name":"IXpsRasterizationFactory","features":[74]},{"name":"IXpsRasterizationFactory1","features":[74]},{"name":"IXpsRasterizationFactory2","features":[74]},{"name":"IXpsRasterizer","features":[74]},{"name":"IXpsRasterizerNotificationCallback","features":[74]},{"name":"ImgErrorInfo","features":[74]},{"name":"ImpersonatePrinterClient","features":[1,74]},{"name":"InstallPrinterDriverFromPackageA","features":[74]},{"name":"InstallPrinterDriverFromPackageW","features":[74]},{"name":"IntermediatePageCount","features":[74]},{"name":"IsValidDevmodeA","features":[1,12,74]},{"name":"IsValidDevmodeW","features":[1,12,74]},{"name":"JOB_ACCESS_ADMINISTER","features":[74]},{"name":"JOB_ACCESS_READ","features":[74]},{"name":"JOB_CONTROL_CANCEL","features":[74]},{"name":"JOB_CONTROL_DELETE","features":[74]},{"name":"JOB_CONTROL_LAST_PAGE_EJECTED","features":[74]},{"name":"JOB_CONTROL_PAUSE","features":[74]},{"name":"JOB_CONTROL_RELEASE","features":[74]},{"name":"JOB_CONTROL_RESTART","features":[74]},{"name":"JOB_CONTROL_RESUME","features":[74]},{"name":"JOB_CONTROL_RETAIN","features":[74]},{"name":"JOB_CONTROL_SEND_TOAST","features":[74]},{"name":"JOB_CONTROL_SENT_TO_PRINTER","features":[74]},{"name":"JOB_INFO_1A","features":[1,74]},{"name":"JOB_INFO_1W","features":[1,74]},{"name":"JOB_INFO_2A","features":[1,12,74,4]},{"name":"JOB_INFO_2W","features":[1,12,74,4]},{"name":"JOB_INFO_3","features":[74]},{"name":"JOB_INFO_4A","features":[1,12,74,4]},{"name":"JOB_INFO_4W","features":[1,12,74,4]},{"name":"JOB_NOTIFY_FIELD_BYTES_PRINTED","features":[74]},{"name":"JOB_NOTIFY_FIELD_DATATYPE","features":[74]},{"name":"JOB_NOTIFY_FIELD_DEVMODE","features":[74]},{"name":"JOB_NOTIFY_FIELD_DOCUMENT","features":[74]},{"name":"JOB_NOTIFY_FIELD_DRIVER_NAME","features":[74]},{"name":"JOB_NOTIFY_FIELD_MACHINE_NAME","features":[74]},{"name":"JOB_NOTIFY_FIELD_NOTIFY_NAME","features":[74]},{"name":"JOB_NOTIFY_FIELD_PAGES_PRINTED","features":[74]},{"name":"JOB_NOTIFY_FIELD_PARAMETERS","features":[74]},{"name":"JOB_NOTIFY_FIELD_PORT_NAME","features":[74]},{"name":"JOB_NOTIFY_FIELD_POSITION","features":[74]},{"name":"JOB_NOTIFY_FIELD_PRINTER_NAME","features":[74]},{"name":"JOB_NOTIFY_FIELD_PRINT_PROCESSOR","features":[74]},{"name":"JOB_NOTIFY_FIELD_PRIORITY","features":[74]},{"name":"JOB_NOTIFY_FIELD_REMOTE_JOB_ID","features":[74]},{"name":"JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[74]},{"name":"JOB_NOTIFY_FIELD_START_TIME","features":[74]},{"name":"JOB_NOTIFY_FIELD_STATUS","features":[74]},{"name":"JOB_NOTIFY_FIELD_STATUS_STRING","features":[74]},{"name":"JOB_NOTIFY_FIELD_SUBMITTED","features":[74]},{"name":"JOB_NOTIFY_FIELD_TIME","features":[74]},{"name":"JOB_NOTIFY_FIELD_TOTAL_BYTES","features":[74]},{"name":"JOB_NOTIFY_FIELD_TOTAL_PAGES","features":[74]},{"name":"JOB_NOTIFY_FIELD_UNTIL_TIME","features":[74]},{"name":"JOB_NOTIFY_FIELD_USER_NAME","features":[74]},{"name":"JOB_NOTIFY_TYPE","features":[74]},{"name":"JOB_POSITION_UNSPECIFIED","features":[74]},{"name":"JOB_STATUS_BLOCKED_DEVQ","features":[74]},{"name":"JOB_STATUS_COMPLETE","features":[74]},{"name":"JOB_STATUS_DELETED","features":[74]},{"name":"JOB_STATUS_DELETING","features":[74]},{"name":"JOB_STATUS_ERROR","features":[74]},{"name":"JOB_STATUS_OFFLINE","features":[74]},{"name":"JOB_STATUS_PAPEROUT","features":[74]},{"name":"JOB_STATUS_PAUSED","features":[74]},{"name":"JOB_STATUS_PRINTED","features":[74]},{"name":"JOB_STATUS_PRINTING","features":[74]},{"name":"JOB_STATUS_RENDERING_LOCALLY","features":[74]},{"name":"JOB_STATUS_RESTART","features":[74]},{"name":"JOB_STATUS_RETAINED","features":[74]},{"name":"JOB_STATUS_SPOOLING","features":[74]},{"name":"JOB_STATUS_USER_INTERVENTION","features":[74]},{"name":"KERNDATA","features":[52,74]},{"name":"LOCAL_ONLY_REGISTRATION","features":[74]},{"name":"LPR","features":[74]},{"name":"MAPTABLE","features":[74]},{"name":"MAX_ADDRESS_STR_LEN","features":[74]},{"name":"MAX_CHANNEL_COUNT_EXCEEDED","features":[74]},{"name":"MAX_CPSFUNC_INDEX","features":[74]},{"name":"MAX_DEVICEDESCRIPTION_STR_LEN","features":[74]},{"name":"MAX_DLGPAGE_COUNT","features":[74]},{"name":"MAX_FORM_KEYWORD_LENGTH","features":[74]},{"name":"MAX_IPADDR_STR_LEN","features":[74]},{"name":"MAX_NETWORKNAME2_LEN","features":[74]},{"name":"MAX_NETWORKNAME_LEN","features":[74]},{"name":"MAX_NOTIFICATION_SIZE_EXCEEDED","features":[74]},{"name":"MAX_PORTNAME_LEN","features":[74]},{"name":"MAX_PRIORITY","features":[74]},{"name":"MAX_PROPSHEETUI_REASON_INDEX","features":[74]},{"name":"MAX_PSUIPAGEINSERT_INDEX","features":[74]},{"name":"MAX_QUEUENAME_LEN","features":[74]},{"name":"MAX_REGISTRATION_COUNT_EXCEEDED","features":[74]},{"name":"MAX_RES_STR_CHARS","features":[74]},{"name":"MAX_SNMP_COMMUNITY_STR_LEN","features":[74]},{"name":"MESSAGEBOX_PARAMS","features":[1,74]},{"name":"MIN_PRIORITY","features":[74]},{"name":"MONITOR","features":[47,1,74,8]},{"name":"MONITOR2","features":[47,1,74,8]},{"name":"MONITOREX","features":[47,1,74,8]},{"name":"MONITORINIT","features":[1,74,49]},{"name":"MONITORREG","features":[74]},{"name":"MONITORUI","features":[74]},{"name":"MONITOR_INFO_1A","features":[74]},{"name":"MONITOR_INFO_1W","features":[74]},{"name":"MONITOR_INFO_2A","features":[74]},{"name":"MONITOR_INFO_2W","features":[74]},{"name":"MS_PRINT_JOB_OUTPUT_FILE","features":[74]},{"name":"MTYPE_ADD","features":[74]},{"name":"MTYPE_COMPOSE","features":[74]},{"name":"MTYPE_DIRECT","features":[74]},{"name":"MTYPE_DISABLE","features":[74]},{"name":"MTYPE_DOUBLE","features":[74]},{"name":"MTYPE_DOUBLEBYTECHAR_MASK","features":[74]},{"name":"MTYPE_FORMAT_MASK","features":[74]},{"name":"MTYPE_PAIRED","features":[74]},{"name":"MTYPE_PREDEFIN_MASK","features":[74]},{"name":"MTYPE_REPLACE","features":[74]},{"name":"MTYPE_SINGLE","features":[74]},{"name":"MV_GRAPHICS","features":[74]},{"name":"MV_PHYSICAL","features":[74]},{"name":"MV_RELATIVE","features":[74]},{"name":"MV_SENDXMOVECMD","features":[74]},{"name":"MV_SENDYMOVECMD","features":[74]},{"name":"MV_UPDATE","features":[74]},{"name":"MXDCOP_GET_FILENAME","features":[74]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC","features":[74]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC_SEQ","features":[74]},{"name":"MXDCOP_PRINTTICKET_FIXED_PAGE","features":[74]},{"name":"MXDCOP_SET_S0PAGE","features":[74]},{"name":"MXDCOP_SET_S0PAGE_RESOURCE","features":[74]},{"name":"MXDCOP_SET_XPSPASSTHRU_MODE","features":[74]},{"name":"MXDC_ESCAPE","features":[74]},{"name":"MXDC_ESCAPE_HEADER_T","features":[74]},{"name":"MXDC_GET_FILENAME_DATA_T","features":[74]},{"name":"MXDC_IMAGETYPE_JPEGHIGH_COMPRESSION","features":[74]},{"name":"MXDC_IMAGETYPE_JPEGLOW_COMPRESSION","features":[74]},{"name":"MXDC_IMAGETYPE_JPEGMEDIUM_COMPRESSION","features":[74]},{"name":"MXDC_IMAGETYPE_PNG","features":[74]},{"name":"MXDC_IMAGE_TYPE_ENUMS","features":[74]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_270_DEGREES","features":[74]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_90_DEGREES","features":[74]},{"name":"MXDC_LANDSCAPE_ROTATE_NONE","features":[74]},{"name":"MXDC_LANDSCAPE_ROTATION_ENUMS","features":[74]},{"name":"MXDC_PRINTTICKET_DATA_T","features":[74]},{"name":"MXDC_PRINTTICKET_ESCAPE_T","features":[74]},{"name":"MXDC_RESOURCE_DICTIONARY","features":[74]},{"name":"MXDC_RESOURCE_ICC_PROFILE","features":[74]},{"name":"MXDC_RESOURCE_JPEG","features":[74]},{"name":"MXDC_RESOURCE_JPEG_THUMBNAIL","features":[74]},{"name":"MXDC_RESOURCE_MAX","features":[74]},{"name":"MXDC_RESOURCE_PNG","features":[74]},{"name":"MXDC_RESOURCE_PNG_THUMBNAIL","features":[74]},{"name":"MXDC_RESOURCE_TIFF","features":[74]},{"name":"MXDC_RESOURCE_TTF","features":[74]},{"name":"MXDC_RESOURCE_WDP","features":[74]},{"name":"MXDC_S0PAGE_DATA_T","features":[74]},{"name":"MXDC_S0PAGE_PASSTHROUGH_ESCAPE_T","features":[74]},{"name":"MXDC_S0PAGE_RESOURCE_ESCAPE_T","features":[74]},{"name":"MXDC_S0_PAGE_ENUMS","features":[74]},{"name":"MXDC_XPS_S0PAGE_RESOURCE_T","features":[74]},{"name":"NORMAL_PRINT","features":[74]},{"name":"NOTIFICATION_CALLBACK_COMMANDS","features":[74]},{"name":"NOTIFICATION_COMMAND_CONTEXT_ACQUIRE","features":[74]},{"name":"NOTIFICATION_COMMAND_CONTEXT_RELEASE","features":[74]},{"name":"NOTIFICATION_COMMAND_NOTIFY","features":[74]},{"name":"NOTIFICATION_CONFIG_1","features":[1,74]},{"name":"NOTIFICATION_CONFIG_ASYNC_CHANNEL","features":[74]},{"name":"NOTIFICATION_CONFIG_CREATE_EVENT","features":[74]},{"name":"NOTIFICATION_CONFIG_EVENT_TRIGGER","features":[74]},{"name":"NOTIFICATION_CONFIG_FLAGS","features":[74]},{"name":"NOTIFICATION_CONFIG_REGISTER_CALLBACK","features":[74]},{"name":"NOTIFICATION_RELEASE","features":[74]},{"name":"NOT_REGISTERED","features":[74]},{"name":"NO_BORDER_PRINT","features":[74]},{"name":"NO_COLOR_OPTIMIZATION","features":[74]},{"name":"NO_LISTENERS","features":[74]},{"name":"NO_PRIORITY","features":[74]},{"name":"OEMCUIPCALLBACK","features":[1,12,74,50]},{"name":"OEMCUIPPARAM","features":[1,12,74,50]},{"name":"OEMCUIP_DOCPROP","features":[74]},{"name":"OEMCUIP_PRNPROP","features":[74]},{"name":"OEMDMPARAM","features":[1,12,74]},{"name":"OEMDM_CONVERT","features":[74]},{"name":"OEMDM_DEFAULT","features":[74]},{"name":"OEMDM_MERGE","features":[74]},{"name":"OEMDM_SIZE","features":[74]},{"name":"OEMFONTINSTPARAM","features":[1,74]},{"name":"OEMGDS_FREEMEM","features":[74]},{"name":"OEMGDS_JOBTIMEOUT","features":[74]},{"name":"OEMGDS_MAX","features":[74]},{"name":"OEMGDS_MAXBITMAP","features":[74]},{"name":"OEMGDS_MINOUTLINE","features":[74]},{"name":"OEMGDS_MIN_DOCSTICKY","features":[74]},{"name":"OEMGDS_MIN_PRINTERSTICKY","features":[74]},{"name":"OEMGDS_PRINTFLAGS","features":[74]},{"name":"OEMGDS_PROTOCOL","features":[74]},{"name":"OEMGDS_PSDM_CUSTOMSIZE","features":[74]},{"name":"OEMGDS_PSDM_DIALECT","features":[74]},{"name":"OEMGDS_PSDM_FLAGS","features":[74]},{"name":"OEMGDS_PSDM_NUP","features":[74]},{"name":"OEMGDS_PSDM_PSLEVEL","features":[74]},{"name":"OEMGDS_PSDM_TTDLFMT","features":[74]},{"name":"OEMGDS_UNIDM_FLAGS","features":[74]},{"name":"OEMGDS_UNIDM_GPDVER","features":[74]},{"name":"OEMGDS_WAITTIMEOUT","features":[74]},{"name":"OEMGI_GETINTERFACEVERSION","features":[74]},{"name":"OEMGI_GETPUBLISHERINFO","features":[74]},{"name":"OEMGI_GETREQUESTEDHELPERINTERFACES","features":[74]},{"name":"OEMGI_GETSIGNATURE","features":[74]},{"name":"OEMGI_GETVERSION","features":[74]},{"name":"OEMPUBLISH_DEFAULT","features":[74]},{"name":"OEMPUBLISH_IPRINTCOREHELPER","features":[74]},{"name":"OEMTTY_INFO_CODEPAGE","features":[74]},{"name":"OEMTTY_INFO_MARGINS","features":[74]},{"name":"OEMTTY_INFO_NUM_UFMS","features":[74]},{"name":"OEMTTY_INFO_UFM_IDS","features":[74]},{"name":"OEMUIOBJ","features":[1,74]},{"name":"OEMUIPROCS","features":[1,74]},{"name":"OEMUIPSPARAM","features":[1,12,74]},{"name":"OEM_DMEXTRAHEADER","features":[74]},{"name":"OEM_MODE_PUBLISHER","features":[74]},{"name":"OIEXT","features":[1,74]},{"name":"OIEXTF_ANSI_STRING","features":[74]},{"name":"OPTCF_HIDE","features":[74]},{"name":"OPTCF_MASK","features":[74]},{"name":"OPTCOMBO","features":[1,74]},{"name":"OPTIF_CALLBACK","features":[74]},{"name":"OPTIF_CHANGED","features":[74]},{"name":"OPTIF_CHANGEONCE","features":[74]},{"name":"OPTIF_COLLAPSE","features":[74]},{"name":"OPTIF_DISABLED","features":[74]},{"name":"OPTIF_ECB_CHECKED","features":[74]},{"name":"OPTIF_EXT_DISABLED","features":[74]},{"name":"OPTIF_EXT_HIDE","features":[74]},{"name":"OPTIF_EXT_IS_EXTPUSH","features":[74]},{"name":"OPTIF_HAS_POIEXT","features":[74]},{"name":"OPTIF_HIDE","features":[74]},{"name":"OPTIF_INITIAL_TVITEM","features":[74]},{"name":"OPTIF_MASK","features":[74]},{"name":"OPTIF_NO_GROUPBOX_NAME","features":[74]},{"name":"OPTIF_OVERLAY_NO_ICON","features":[74]},{"name":"OPTIF_OVERLAY_STOP_ICON","features":[74]},{"name":"OPTIF_OVERLAY_WARNING_ICON","features":[74]},{"name":"OPTIF_SEL_AS_HICON","features":[74]},{"name":"OPTITEM","features":[1,74,50]},{"name":"OPTPARAM","features":[1,74]},{"name":"OPTPF_DISABLED","features":[74]},{"name":"OPTPF_HIDE","features":[74]},{"name":"OPTPF_ICONID_AS_HICON","features":[74]},{"name":"OPTPF_MASK","features":[74]},{"name":"OPTPF_OVERLAY_NO_ICON","features":[74]},{"name":"OPTPF_OVERLAY_STOP_ICON","features":[74]},{"name":"OPTPF_OVERLAY_WARNING_ICON","features":[74]},{"name":"OPTPF_USE_HDLGTEMPLATE","features":[74]},{"name":"OPTTF_MASK","features":[74]},{"name":"OPTTF_NOSPACE_BEFORE_POSTFIX","features":[74]},{"name":"OPTTF_TYPE_DISABLED","features":[74]},{"name":"OPTTYPE","features":[1,74]},{"name":"OTS_LBCB_INCL_ITEM_NONE","features":[74]},{"name":"OTS_LBCB_NO_ICON16_IN_ITEM","features":[74]},{"name":"OTS_LBCB_PROPPAGE_CBUSELB","features":[74]},{"name":"OTS_LBCB_PROPPAGE_LBUSECB","features":[74]},{"name":"OTS_LBCB_SORT","features":[74]},{"name":"OTS_MASK","features":[74]},{"name":"OTS_PUSH_ENABLE_ALWAYS","features":[74]},{"name":"OTS_PUSH_INCL_SETUP_TITLE","features":[74]},{"name":"OTS_PUSH_NO_DOT_DOT_DOT","features":[74]},{"name":"OpenPrinter2A","features":[1,12,74]},{"name":"OpenPrinter2W","features":[1,12,74]},{"name":"OpenPrinterA","features":[1,12,74]},{"name":"OpenPrinterW","features":[1,12,74]},{"name":"PDEV_ADJUST_PAPER_MARGIN_TYPE","features":[74]},{"name":"PDEV_HOSTFONT_ENABLED_TYPE","features":[74]},{"name":"PDEV_USE_TRUE_COLOR_TYPE","features":[74]},{"name":"PFNCOMPROPSHEET","features":[1,74]},{"name":"PFNPROPSHEETUI","features":[1,74]},{"name":"PFN_DrvGetDriverSetting","features":[1,74]},{"name":"PFN_DrvUpdateUISetting","features":[1,74]},{"name":"PFN_DrvUpgradeRegistrySetting","features":[1,74]},{"name":"PFN_PRINTING_ADDPORT","features":[1,74]},{"name":"PFN_PRINTING_ADDPORT2","features":[1,74]},{"name":"PFN_PRINTING_ADDPORTEX","features":[1,74]},{"name":"PFN_PRINTING_ADDPORTEX2","features":[1,74]},{"name":"PFN_PRINTING_CLOSEPORT","features":[1,74]},{"name":"PFN_PRINTING_CLOSEPORT2","features":[1,74]},{"name":"PFN_PRINTING_CONFIGUREPORT","features":[1,74]},{"name":"PFN_PRINTING_CONFIGUREPORT2","features":[1,74]},{"name":"PFN_PRINTING_DELETEPORT","features":[1,74]},{"name":"PFN_PRINTING_DELETEPORT2","features":[1,74]},{"name":"PFN_PRINTING_ENDDOCPORT","features":[1,74]},{"name":"PFN_PRINTING_ENDDOCPORT2","features":[1,74]},{"name":"PFN_PRINTING_ENUMPORTS","features":[1,74]},{"name":"PFN_PRINTING_ENUMPORTS2","features":[1,74]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT","features":[1,74]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT2","features":[1,74]},{"name":"PFN_PRINTING_NOTIFYUNUSEDPORTS2","features":[1,74]},{"name":"PFN_PRINTING_NOTIFYUSEDPORTS2","features":[1,74]},{"name":"PFN_PRINTING_OPENPORT","features":[1,74]},{"name":"PFN_PRINTING_OPENPORT2","features":[1,74]},{"name":"PFN_PRINTING_OPENPORTEX","features":[47,1,74,8]},{"name":"PFN_PRINTING_OPENPORTEX2","features":[47,1,74,8]},{"name":"PFN_PRINTING_POWEREVENT2","features":[1,74,8]},{"name":"PFN_PRINTING_READPORT","features":[1,74]},{"name":"PFN_PRINTING_READPORT2","features":[1,74]},{"name":"PFN_PRINTING_SENDRECVBIDIDATAFROMPORT2","features":[1,74]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS","features":[47,1,74]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS2","features":[47,1,74]},{"name":"PFN_PRINTING_SHUTDOWN2","features":[1,74]},{"name":"PFN_PRINTING_STARTDOCPORT","features":[1,74]},{"name":"PFN_PRINTING_STARTDOCPORT2","features":[1,74]},{"name":"PFN_PRINTING_WRITEPORT","features":[1,74]},{"name":"PFN_PRINTING_WRITEPORT2","features":[1,74]},{"name":"PFN_PRINTING_XCVCLOSEPORT","features":[1,74]},{"name":"PFN_PRINTING_XCVCLOSEPORT2","features":[1,74]},{"name":"PFN_PRINTING_XCVDATAPORT","features":[1,74]},{"name":"PFN_PRINTING_XCVDATAPORT2","features":[1,74]},{"name":"PFN_PRINTING_XCVOPENPORT","features":[1,74]},{"name":"PFN_PRINTING_XCVOPENPORT2","features":[1,74]},{"name":"PORT_DATA_1","features":[74]},{"name":"PORT_DATA_2","features":[74]},{"name":"PORT_DATA_LIST_1","features":[74]},{"name":"PORT_INFO_1A","features":[74]},{"name":"PORT_INFO_1W","features":[74]},{"name":"PORT_INFO_2A","features":[74]},{"name":"PORT_INFO_2W","features":[74]},{"name":"PORT_INFO_3A","features":[74]},{"name":"PORT_INFO_3W","features":[74]},{"name":"PORT_STATUS_DOOR_OPEN","features":[74]},{"name":"PORT_STATUS_NO_TONER","features":[74]},{"name":"PORT_STATUS_OFFLINE","features":[74]},{"name":"PORT_STATUS_OUTPUT_BIN_FULL","features":[74]},{"name":"PORT_STATUS_OUT_OF_MEMORY","features":[74]},{"name":"PORT_STATUS_PAPER_JAM","features":[74]},{"name":"PORT_STATUS_PAPER_OUT","features":[74]},{"name":"PORT_STATUS_PAPER_PROBLEM","features":[74]},{"name":"PORT_STATUS_POWER_SAVE","features":[74]},{"name":"PORT_STATUS_TONER_LOW","features":[74]},{"name":"PORT_STATUS_TYPE_ERROR","features":[74]},{"name":"PORT_STATUS_TYPE_INFO","features":[74]},{"name":"PORT_STATUS_TYPE_WARNING","features":[74]},{"name":"PORT_STATUS_USER_INTERVENTION","features":[74]},{"name":"PORT_STATUS_WARMING_UP","features":[74]},{"name":"PORT_TYPE_NET_ATTACHED","features":[74]},{"name":"PORT_TYPE_READ","features":[74]},{"name":"PORT_TYPE_REDIRECTED","features":[74]},{"name":"PORT_TYPE_WRITE","features":[74]},{"name":"PPCAPS_BOOKLET_EDGE","features":[74]},{"name":"PPCAPS_BORDER_PRINT","features":[74]},{"name":"PPCAPS_REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[74]},{"name":"PPCAPS_RIGHT_THEN_DOWN","features":[74]},{"name":"PPCAPS_SQUARE_SCALING","features":[74]},{"name":"PRINTER_ACCESS_ADMINISTER","features":[74]},{"name":"PRINTER_ACCESS_MANAGE_LIMITED","features":[74]},{"name":"PRINTER_ACCESS_RIGHTS","features":[74]},{"name":"PRINTER_ACCESS_USE","features":[74]},{"name":"PRINTER_ALL_ACCESS","features":[74]},{"name":"PRINTER_ATTRIBUTE_DEFAULT","features":[74]},{"name":"PRINTER_ATTRIBUTE_DIRECT","features":[74]},{"name":"PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST","features":[74]},{"name":"PRINTER_ATTRIBUTE_ENABLE_BIDI","features":[74]},{"name":"PRINTER_ATTRIBUTE_ENABLE_DEVQ","features":[74]},{"name":"PRINTER_ATTRIBUTE_ENTERPRISE_CLOUD","features":[74]},{"name":"PRINTER_ATTRIBUTE_FAX","features":[74]},{"name":"PRINTER_ATTRIBUTE_FRIENDLY_NAME","features":[74]},{"name":"PRINTER_ATTRIBUTE_HIDDEN","features":[74]},{"name":"PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS","features":[74]},{"name":"PRINTER_ATTRIBUTE_LOCAL","features":[74]},{"name":"PRINTER_ATTRIBUTE_MACHINE","features":[74]},{"name":"PRINTER_ATTRIBUTE_NETWORK","features":[74]},{"name":"PRINTER_ATTRIBUTE_PER_USER","features":[74]},{"name":"PRINTER_ATTRIBUTE_PUBLISHED","features":[74]},{"name":"PRINTER_ATTRIBUTE_PUSHED_MACHINE","features":[74]},{"name":"PRINTER_ATTRIBUTE_PUSHED_USER","features":[74]},{"name":"PRINTER_ATTRIBUTE_QUEUED","features":[74]},{"name":"PRINTER_ATTRIBUTE_RAW_ONLY","features":[74]},{"name":"PRINTER_ATTRIBUTE_SHARED","features":[74]},{"name":"PRINTER_ATTRIBUTE_TS","features":[74]},{"name":"PRINTER_ATTRIBUTE_TS_GENERIC_DRIVER","features":[74]},{"name":"PRINTER_ATTRIBUTE_WORK_OFFLINE","features":[74]},{"name":"PRINTER_CHANGE_ADD_FORM","features":[74]},{"name":"PRINTER_CHANGE_ADD_JOB","features":[74]},{"name":"PRINTER_CHANGE_ADD_PORT","features":[74]},{"name":"PRINTER_CHANGE_ADD_PRINTER","features":[74]},{"name":"PRINTER_CHANGE_ADD_PRINTER_DRIVER","features":[74]},{"name":"PRINTER_CHANGE_ADD_PRINT_PROCESSOR","features":[74]},{"name":"PRINTER_CHANGE_ALL","features":[74]},{"name":"PRINTER_CHANGE_CONFIGURE_PORT","features":[74]},{"name":"PRINTER_CHANGE_DELETE_FORM","features":[74]},{"name":"PRINTER_CHANGE_DELETE_JOB","features":[74]},{"name":"PRINTER_CHANGE_DELETE_PORT","features":[74]},{"name":"PRINTER_CHANGE_DELETE_PRINTER","features":[74]},{"name":"PRINTER_CHANGE_DELETE_PRINTER_DRIVER","features":[74]},{"name":"PRINTER_CHANGE_DELETE_PRINT_PROCESSOR","features":[74]},{"name":"PRINTER_CHANGE_FAILED_CONNECTION_PRINTER","features":[74]},{"name":"PRINTER_CHANGE_FORM","features":[74]},{"name":"PRINTER_CHANGE_JOB","features":[74]},{"name":"PRINTER_CHANGE_PORT","features":[74]},{"name":"PRINTER_CHANGE_PRINTER","features":[74]},{"name":"PRINTER_CHANGE_PRINTER_DRIVER","features":[74]},{"name":"PRINTER_CHANGE_PRINT_PROCESSOR","features":[74]},{"name":"PRINTER_CHANGE_SERVER","features":[74]},{"name":"PRINTER_CHANGE_SET_FORM","features":[74]},{"name":"PRINTER_CHANGE_SET_JOB","features":[74]},{"name":"PRINTER_CHANGE_SET_PRINTER","features":[74]},{"name":"PRINTER_CHANGE_SET_PRINTER_DRIVER","features":[74]},{"name":"PRINTER_CHANGE_TIMEOUT","features":[74]},{"name":"PRINTER_CHANGE_WRITE_JOB","features":[74]},{"name":"PRINTER_CONNECTION_INFO_1A","features":[74]},{"name":"PRINTER_CONNECTION_INFO_1W","features":[74]},{"name":"PRINTER_CONNECTION_MISMATCH","features":[74]},{"name":"PRINTER_CONNECTION_NO_UI","features":[74]},{"name":"PRINTER_CONTROL_PAUSE","features":[74]},{"name":"PRINTER_CONTROL_PURGE","features":[74]},{"name":"PRINTER_CONTROL_RESUME","features":[74]},{"name":"PRINTER_CONTROL_SET_STATUS","features":[74]},{"name":"PRINTER_DEFAULTSA","features":[1,12,74]},{"name":"PRINTER_DEFAULTSW","features":[1,12,74]},{"name":"PRINTER_DELETE","features":[74]},{"name":"PRINTER_DRIVER_CATEGORY_3D","features":[74]},{"name":"PRINTER_DRIVER_CATEGORY_CLOUD","features":[74]},{"name":"PRINTER_DRIVER_CATEGORY_FAX","features":[74]},{"name":"PRINTER_DRIVER_CATEGORY_FILE","features":[74]},{"name":"PRINTER_DRIVER_CATEGORY_SERVICE","features":[74]},{"name":"PRINTER_DRIVER_CATEGORY_VIRTUAL","features":[74]},{"name":"PRINTER_DRIVER_CLASS","features":[74]},{"name":"PRINTER_DRIVER_DERIVED","features":[74]},{"name":"PRINTER_DRIVER_NOT_SHAREABLE","features":[74]},{"name":"PRINTER_DRIVER_PACKAGE_AWARE","features":[74]},{"name":"PRINTER_DRIVER_SANDBOX_DISABLED","features":[74]},{"name":"PRINTER_DRIVER_SANDBOX_ENABLED","features":[74]},{"name":"PRINTER_DRIVER_SOFT_RESET_REQUIRED","features":[74]},{"name":"PRINTER_DRIVER_XPS","features":[74]},{"name":"PRINTER_ENUM_CATEGORY_3D","features":[74]},{"name":"PRINTER_ENUM_CATEGORY_ALL","features":[74]},{"name":"PRINTER_ENUM_CONNECTIONS","features":[74]},{"name":"PRINTER_ENUM_CONTAINER","features":[74]},{"name":"PRINTER_ENUM_DEFAULT","features":[74]},{"name":"PRINTER_ENUM_EXPAND","features":[74]},{"name":"PRINTER_ENUM_FAVORITE","features":[74]},{"name":"PRINTER_ENUM_HIDE","features":[74]},{"name":"PRINTER_ENUM_ICON1","features":[74]},{"name":"PRINTER_ENUM_ICON2","features":[74]},{"name":"PRINTER_ENUM_ICON3","features":[74]},{"name":"PRINTER_ENUM_ICON4","features":[74]},{"name":"PRINTER_ENUM_ICON5","features":[74]},{"name":"PRINTER_ENUM_ICON6","features":[74]},{"name":"PRINTER_ENUM_ICON7","features":[74]},{"name":"PRINTER_ENUM_ICON8","features":[74]},{"name":"PRINTER_ENUM_ICONMASK","features":[74]},{"name":"PRINTER_ENUM_LOCAL","features":[74]},{"name":"PRINTER_ENUM_NAME","features":[74]},{"name":"PRINTER_ENUM_NETWORK","features":[74]},{"name":"PRINTER_ENUM_REMOTE","features":[74]},{"name":"PRINTER_ENUM_SHARED","features":[74]},{"name":"PRINTER_ENUM_VALUESA","features":[74]},{"name":"PRINTER_ENUM_VALUESW","features":[74]},{"name":"PRINTER_ERROR_INFORMATION","features":[74]},{"name":"PRINTER_ERROR_JAM","features":[74]},{"name":"PRINTER_ERROR_OUTOFPAPER","features":[74]},{"name":"PRINTER_ERROR_OUTOFTONER","features":[74]},{"name":"PRINTER_ERROR_SEVERE","features":[74]},{"name":"PRINTER_ERROR_WARNING","features":[74]},{"name":"PRINTER_EVENT_ADD_CONNECTION","features":[74]},{"name":"PRINTER_EVENT_ADD_CONNECTION_NO_UI","features":[74]},{"name":"PRINTER_EVENT_ATTRIBUTES_CHANGED","features":[74]},{"name":"PRINTER_EVENT_ATTRIBUTES_INFO","features":[74]},{"name":"PRINTER_EVENT_CACHE_DELETE","features":[74]},{"name":"PRINTER_EVENT_CACHE_REFRESH","features":[74]},{"name":"PRINTER_EVENT_CONFIGURATION_CHANGE","features":[74]},{"name":"PRINTER_EVENT_CONFIGURATION_UPDATE","features":[74]},{"name":"PRINTER_EVENT_DELETE","features":[74]},{"name":"PRINTER_EVENT_DELETE_CONNECTION","features":[74]},{"name":"PRINTER_EVENT_DELETE_CONNECTION_NO_UI","features":[74]},{"name":"PRINTER_EVENT_FLAG_NO_UI","features":[74]},{"name":"PRINTER_EVENT_INITIALIZE","features":[74]},{"name":"PRINTER_EXECUTE","features":[74]},{"name":"PRINTER_EXTENSION_DETAILEDREASON_PRINTER_STATUS","features":[74]},{"name":"PRINTER_EXTENSION_REASON_DRIVER_EVENT","features":[74]},{"name":"PRINTER_EXTENSION_REASON_PRINT_PREFERENCES","features":[74]},{"name":"PRINTER_INFO_1A","features":[74]},{"name":"PRINTER_INFO_1W","features":[74]},{"name":"PRINTER_INFO_2A","features":[1,12,74,4]},{"name":"PRINTER_INFO_2W","features":[1,12,74,4]},{"name":"PRINTER_INFO_3","features":[74,4]},{"name":"PRINTER_INFO_4A","features":[74]},{"name":"PRINTER_INFO_4W","features":[74]},{"name":"PRINTER_INFO_5A","features":[74]},{"name":"PRINTER_INFO_5W","features":[74]},{"name":"PRINTER_INFO_6","features":[74]},{"name":"PRINTER_INFO_7A","features":[74]},{"name":"PRINTER_INFO_7W","features":[74]},{"name":"PRINTER_INFO_8A","features":[1,12,74]},{"name":"PRINTER_INFO_8W","features":[1,12,74]},{"name":"PRINTER_INFO_9A","features":[1,12,74]},{"name":"PRINTER_INFO_9W","features":[1,12,74]},{"name":"PRINTER_NOTIFY_CATEGORY_3D","features":[74]},{"name":"PRINTER_NOTIFY_CATEGORY_ALL","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_ATTRIBUTES","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_AVERAGE_PPM","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_BRANCH_OFFICE_PRINTING","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_BYTES_PRINTED","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_CJOBS","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_COMMENT","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_DATATYPE","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_DEVMODE","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_DRIVER_NAME","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_FRIENDLY_NAME","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_LOCATION","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_OBJECT_GUID","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_PAGES_PRINTED","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_PARAMETERS","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_PORT_NAME","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_PRINTER_NAME","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_PRIORITY","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_SEPFILE","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_SERVER_NAME","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_SHARE_NAME","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_START_TIME","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_STATUS","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_STATUS_STRING","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_BYTES","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_PAGES","features":[74]},{"name":"PRINTER_NOTIFY_FIELD_UNTIL_TIME","features":[74]},{"name":"PRINTER_NOTIFY_INFO","features":[74]},{"name":"PRINTER_NOTIFY_INFO_DATA","features":[74]},{"name":"PRINTER_NOTIFY_INFO_DATA_COMPACT","features":[74]},{"name":"PRINTER_NOTIFY_INFO_DISCARDED","features":[74]},{"name":"PRINTER_NOTIFY_INIT","features":[74]},{"name":"PRINTER_NOTIFY_OPTIONS","features":[74]},{"name":"PRINTER_NOTIFY_OPTIONS_REFRESH","features":[74]},{"name":"PRINTER_NOTIFY_OPTIONS_TYPE","features":[74]},{"name":"PRINTER_NOTIFY_STATUS_ENDPOINT","features":[74]},{"name":"PRINTER_NOTIFY_STATUS_INFO","features":[74]},{"name":"PRINTER_NOTIFY_STATUS_POLL","features":[74]},{"name":"PRINTER_NOTIFY_TYPE","features":[74]},{"name":"PRINTER_OEMINTF_VERSION","features":[74]},{"name":"PRINTER_OPTIONSA","features":[74]},{"name":"PRINTER_OPTIONSW","features":[74]},{"name":"PRINTER_OPTION_CACHE","features":[74]},{"name":"PRINTER_OPTION_CLIENT_CHANGE","features":[74]},{"name":"PRINTER_OPTION_FLAGS","features":[74]},{"name":"PRINTER_OPTION_NO_CACHE","features":[74]},{"name":"PRINTER_OPTION_NO_CLIENT_DATA","features":[74]},{"name":"PRINTER_READ","features":[74]},{"name":"PRINTER_READ_CONTROL","features":[74]},{"name":"PRINTER_STANDARD_RIGHTS_EXECUTE","features":[74]},{"name":"PRINTER_STANDARD_RIGHTS_READ","features":[74]},{"name":"PRINTER_STANDARD_RIGHTS_REQUIRED","features":[74]},{"name":"PRINTER_STANDARD_RIGHTS_WRITE","features":[74]},{"name":"PRINTER_STATUS_BUSY","features":[74]},{"name":"PRINTER_STATUS_DOOR_OPEN","features":[74]},{"name":"PRINTER_STATUS_DRIVER_UPDATE_NEEDED","features":[74]},{"name":"PRINTER_STATUS_ERROR","features":[74]},{"name":"PRINTER_STATUS_INITIALIZING","features":[74]},{"name":"PRINTER_STATUS_IO_ACTIVE","features":[74]},{"name":"PRINTER_STATUS_MANUAL_FEED","features":[74]},{"name":"PRINTER_STATUS_NOT_AVAILABLE","features":[74]},{"name":"PRINTER_STATUS_NO_TONER","features":[74]},{"name":"PRINTER_STATUS_OFFLINE","features":[74]},{"name":"PRINTER_STATUS_OUTPUT_BIN_FULL","features":[74]},{"name":"PRINTER_STATUS_OUT_OF_MEMORY","features":[74]},{"name":"PRINTER_STATUS_PAGE_PUNT","features":[74]},{"name":"PRINTER_STATUS_PAPER_JAM","features":[74]},{"name":"PRINTER_STATUS_PAPER_OUT","features":[74]},{"name":"PRINTER_STATUS_PAPER_PROBLEM","features":[74]},{"name":"PRINTER_STATUS_PAUSED","features":[74]},{"name":"PRINTER_STATUS_PENDING_DELETION","features":[74]},{"name":"PRINTER_STATUS_POWER_SAVE","features":[74]},{"name":"PRINTER_STATUS_PRINTING","features":[74]},{"name":"PRINTER_STATUS_PROCESSING","features":[74]},{"name":"PRINTER_STATUS_SERVER_OFFLINE","features":[74]},{"name":"PRINTER_STATUS_SERVER_UNKNOWN","features":[74]},{"name":"PRINTER_STATUS_TONER_LOW","features":[74]},{"name":"PRINTER_STATUS_USER_INTERVENTION","features":[74]},{"name":"PRINTER_STATUS_WAITING","features":[74]},{"name":"PRINTER_STATUS_WARMING_UP","features":[74]},{"name":"PRINTER_SYNCHRONIZE","features":[74]},{"name":"PRINTER_WRITE","features":[74]},{"name":"PRINTER_WRITE_DAC","features":[74]},{"name":"PRINTER_WRITE_OWNER","features":[74]},{"name":"PRINTIFI32","features":[1,12,74]},{"name":"PRINTPROCESSOROPENDATA","features":[1,12,74]},{"name":"PRINTPROCESSOR_CAPS_1","features":[74]},{"name":"PRINTPROCESSOR_CAPS_2","features":[74]},{"name":"PRINTPROCESSOR_INFO_1A","features":[74]},{"name":"PRINTPROCESSOR_INFO_1W","features":[74]},{"name":"PRINTPROVIDOR","features":[74]},{"name":"PRINT_APP_BIDI_NOTIFY_CHANNEL","features":[74]},{"name":"PRINT_EXECUTION_CONTEXT","features":[74]},{"name":"PRINT_EXECUTION_CONTEXT_APPLICATION","features":[74]},{"name":"PRINT_EXECUTION_CONTEXT_FILTER_PIPELINE","features":[74]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_ISOLATION_HOST","features":[74]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_SERVICE","features":[74]},{"name":"PRINT_EXECUTION_CONTEXT_WOW64","features":[74]},{"name":"PRINT_EXECUTION_DATA","features":[74]},{"name":"PRINT_FEATURE_OPTION","features":[74]},{"name":"PRINT_PORT_MONITOR_NOTIFY_CHANNEL","features":[74]},{"name":"PROPSHEETUI_GETICON_INFO","features":[74,50]},{"name":"PROPSHEETUI_INFO","features":[1,74]},{"name":"PROPSHEETUI_INFO_HEADER","features":[1,74,50]},{"name":"PROPSHEETUI_INFO_VERSION","features":[74]},{"name":"PROPSHEETUI_REASON_BEFORE_INIT","features":[74]},{"name":"PROPSHEETUI_REASON_DESTROY","features":[74]},{"name":"PROPSHEETUI_REASON_GET_ICON","features":[74]},{"name":"PROPSHEETUI_REASON_GET_INFO_HEADER","features":[74]},{"name":"PROPSHEETUI_REASON_INIT","features":[74]},{"name":"PROPSHEETUI_REASON_SET_RESULT","features":[74]},{"name":"PROTOCOL_LPR_TYPE","features":[74]},{"name":"PROTOCOL_RAWTCP_TYPE","features":[74]},{"name":"PROTOCOL_UNKNOWN_TYPE","features":[74]},{"name":"PROVIDOR_INFO_1A","features":[74]},{"name":"PROVIDOR_INFO_1W","features":[74]},{"name":"PROVIDOR_INFO_2A","features":[74]},{"name":"PROVIDOR_INFO_2W","features":[74]},{"name":"PSCRIPT5_PRIVATE_DEVMODE","features":[74]},{"name":"PSPINFO","features":[1,74]},{"name":"PSUIHDRF_DEFTITLE","features":[74]},{"name":"PSUIHDRF_EXACT_PTITLE","features":[74]},{"name":"PSUIHDRF_NOAPPLYNOW","features":[74]},{"name":"PSUIHDRF_OBSOLETE","features":[74]},{"name":"PSUIHDRF_PROPTITLE","features":[74]},{"name":"PSUIHDRF_USEHICON","features":[74]},{"name":"PSUIINFO_UNICODE","features":[74]},{"name":"PSUIPAGEINSERT_DLL","features":[74]},{"name":"PSUIPAGEINSERT_GROUP_PARENT","features":[74]},{"name":"PSUIPAGEINSERT_HPROPSHEETPAGE","features":[74]},{"name":"PSUIPAGEINSERT_PCOMPROPSHEETUI","features":[74]},{"name":"PSUIPAGEINSERT_PFNPROPSHEETUI","features":[74]},{"name":"PSUIPAGEINSERT_PROPSHEETPAGE","features":[74]},{"name":"PTSHIM_DEFAULT","features":[74]},{"name":"PTSHIM_NOSNAPSHOT","features":[74]},{"name":"PUBLISHERINFO","features":[74]},{"name":"PUSHBUTTON_TYPE_CALLBACK","features":[74]},{"name":"PUSHBUTTON_TYPE_DLGPROC","features":[74]},{"name":"PUSHBUTTON_TYPE_HTCLRADJ","features":[74]},{"name":"PUSHBUTTON_TYPE_HTSETUP","features":[74]},{"name":"PageCountType","features":[74]},{"name":"PartialReplyPrinterChangeNotification","features":[1,74]},{"name":"PlayGdiScriptOnPrinterIC","features":[1,74]},{"name":"PrintAsyncNotifyConversationStyle","features":[74]},{"name":"PrintAsyncNotifyError","features":[74]},{"name":"PrintAsyncNotifyUserFilter","features":[74]},{"name":"PrintJobStatus","features":[74]},{"name":"PrintJobStatus_BlockedDeviceQueue","features":[74]},{"name":"PrintJobStatus_Complete","features":[74]},{"name":"PrintJobStatus_Deleted","features":[74]},{"name":"PrintJobStatus_Deleting","features":[74]},{"name":"PrintJobStatus_Error","features":[74]},{"name":"PrintJobStatus_Offline","features":[74]},{"name":"PrintJobStatus_PaperOut","features":[74]},{"name":"PrintJobStatus_Paused","features":[74]},{"name":"PrintJobStatus_Printed","features":[74]},{"name":"PrintJobStatus_Printing","features":[74]},{"name":"PrintJobStatus_Restarted","features":[74]},{"name":"PrintJobStatus_Retained","features":[74]},{"name":"PrintJobStatus_Spooling","features":[74]},{"name":"PrintJobStatus_UserIntervention","features":[74]},{"name":"PrintNamedProperty","features":[74]},{"name":"PrintPropertiesCollection","features":[74]},{"name":"PrintPropertyValue","features":[74]},{"name":"PrintSchemaAsyncOperation","features":[74]},{"name":"PrintSchemaConstrainedSetting","features":[74]},{"name":"PrintSchemaConstrainedSetting_Admin","features":[74]},{"name":"PrintSchemaConstrainedSetting_Device","features":[74]},{"name":"PrintSchemaConstrainedSetting_None","features":[74]},{"name":"PrintSchemaConstrainedSetting_PrintTicket","features":[74]},{"name":"PrintSchemaParameterDataType","features":[74]},{"name":"PrintSchemaParameterDataType_Integer","features":[74]},{"name":"PrintSchemaParameterDataType_NumericString","features":[74]},{"name":"PrintSchemaParameterDataType_String","features":[74]},{"name":"PrintSchemaSelectionType","features":[74]},{"name":"PrintSchemaSelectionType_PickMany","features":[74]},{"name":"PrintSchemaSelectionType_PickOne","features":[74]},{"name":"PrinterExtensionManager","features":[74]},{"name":"PrinterMessageBoxA","features":[1,74]},{"name":"PrinterMessageBoxW","features":[1,74]},{"name":"PrinterProperties","features":[1,74]},{"name":"PrinterQueue","features":[74]},{"name":"PrinterQueueView","features":[74]},{"name":"ProvidorFindClosePrinterChangeNotification","features":[1,74]},{"name":"ProvidorFindFirstPrinterChangeNotification","features":[1,74]},{"name":"QCP_DEVICEPROFILE","features":[74]},{"name":"QCP_PROFILEDISK","features":[74]},{"name":"QCP_PROFILEMEMORY","features":[74]},{"name":"QCP_SOURCEPROFILE","features":[74]},{"name":"RAWTCP","features":[74]},{"name":"REMOTE_ONLY_REGISTRATION","features":[74]},{"name":"REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[74]},{"name":"REVERSE_PRINT","features":[74]},{"name":"RIGHT_THEN_DOWN","features":[74]},{"name":"ROUTER_NOTIFY_CALLBACK","features":[1,74]},{"name":"ROUTER_STOP_ROUTING","features":[74]},{"name":"ROUTER_SUCCESS","features":[74]},{"name":"ROUTER_UNKNOWN","features":[74]},{"name":"ReadPrinter","features":[1,74]},{"name":"RegisterForPrintAsyncNotifications","features":[1,74]},{"name":"RemovePrintDeviceObject","features":[1,74]},{"name":"ReplyPrinterChangeNotification","features":[1,74]},{"name":"ReplyPrinterChangeNotificationEx","features":[1,74]},{"name":"ReportJobProcessingProgress","features":[1,74]},{"name":"ResetPrinterA","features":[1,12,74]},{"name":"ResetPrinterW","features":[1,12,74]},{"name":"RevertToPrinterSelf","features":[1,74]},{"name":"RouterAllocBidiMem","features":[74]},{"name":"RouterAllocBidiResponseContainer","features":[1,74]},{"name":"RouterAllocPrinterNotifyInfo","features":[74]},{"name":"RouterFreeBidiMem","features":[74]},{"name":"RouterFreeBidiResponseContainer","features":[1,74]},{"name":"RouterFreePrinterNotifyInfo","features":[1,74]},{"name":"SERVER_ACCESS_ADMINISTER","features":[74]},{"name":"SERVER_ACCESS_ENUMERATE","features":[74]},{"name":"SERVER_ALL_ACCESS","features":[74]},{"name":"SERVER_EXECUTE","features":[74]},{"name":"SERVER_NOTIFY_FIELD_PRINT_DRIVER_ISOLATION_GROUP","features":[74]},{"name":"SERVER_NOTIFY_TYPE","features":[74]},{"name":"SERVER_READ","features":[74]},{"name":"SERVER_WRITE","features":[74]},{"name":"SETOPTIONS_FLAG_KEEP_CONFLICT","features":[74]},{"name":"SETOPTIONS_FLAG_RESOLVE_CONFLICT","features":[74]},{"name":"SETOPTIONS_RESULT_CONFLICT_REMAINED","features":[74]},{"name":"SETOPTIONS_RESULT_CONFLICT_RESOLVED","features":[74]},{"name":"SETOPTIONS_RESULT_NO_CONFLICT","features":[74]},{"name":"SETRESULT_INFO","features":[1,74]},{"name":"SHIMOPTS","features":[74]},{"name":"SHOWUIPARAMS","features":[1,74]},{"name":"SIMULATE_CAPS_1","features":[74]},{"name":"SPLCLIENT_INFO_1","features":[74]},{"name":"SPLCLIENT_INFO_2_W2K","features":[74]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[74]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[74]},{"name":"SPLCLIENT_INFO_3_VISTA","features":[74]},{"name":"SPLCLIENT_INFO_INTERNAL","features":[74]},{"name":"SPLCLIENT_INFO_INTERNAL_LEVEL","features":[74]},{"name":"SPLDS_ASSET_NUMBER","features":[74]},{"name":"SPLDS_BYTES_PER_MINUTE","features":[74]},{"name":"SPLDS_DESCRIPTION","features":[74]},{"name":"SPLDS_DRIVER_KEY","features":[74]},{"name":"SPLDS_DRIVER_NAME","features":[74]},{"name":"SPLDS_DRIVER_VERSION","features":[74]},{"name":"SPLDS_FLAGS","features":[74]},{"name":"SPLDS_LOCATION","features":[74]},{"name":"SPLDS_PORT_NAME","features":[74]},{"name":"SPLDS_PRINTER_CLASS","features":[74]},{"name":"SPLDS_PRINTER_LOCATIONS","features":[74]},{"name":"SPLDS_PRINTER_MODEL","features":[74]},{"name":"SPLDS_PRINTER_NAME","features":[74]},{"name":"SPLDS_PRINTER_NAME_ALIASES","features":[74]},{"name":"SPLDS_PRINT_ATTRIBUTES","features":[74]},{"name":"SPLDS_PRINT_BIN_NAMES","features":[74]},{"name":"SPLDS_PRINT_COLLATE","features":[74]},{"name":"SPLDS_PRINT_COLOR","features":[74]},{"name":"SPLDS_PRINT_DUPLEX_SUPPORTED","features":[74]},{"name":"SPLDS_PRINT_END_TIME","features":[74]},{"name":"SPLDS_PRINT_KEEP_PRINTED_JOBS","features":[74]},{"name":"SPLDS_PRINT_LANGUAGE","features":[74]},{"name":"SPLDS_PRINT_MAC_ADDRESS","features":[74]},{"name":"SPLDS_PRINT_MAX_RESOLUTION_SUPPORTED","features":[74]},{"name":"SPLDS_PRINT_MAX_X_EXTENT","features":[74]},{"name":"SPLDS_PRINT_MAX_Y_EXTENT","features":[74]},{"name":"SPLDS_PRINT_MEDIA_READY","features":[74]},{"name":"SPLDS_PRINT_MEDIA_SUPPORTED","features":[74]},{"name":"SPLDS_PRINT_MEMORY","features":[74]},{"name":"SPLDS_PRINT_MIN_X_EXTENT","features":[74]},{"name":"SPLDS_PRINT_MIN_Y_EXTENT","features":[74]},{"name":"SPLDS_PRINT_NETWORK_ADDRESS","features":[74]},{"name":"SPLDS_PRINT_NOTIFY","features":[74]},{"name":"SPLDS_PRINT_NUMBER_UP","features":[74]},{"name":"SPLDS_PRINT_ORIENTATIONS_SUPPORTED","features":[74]},{"name":"SPLDS_PRINT_OWNER","features":[74]},{"name":"SPLDS_PRINT_PAGES_PER_MINUTE","features":[74]},{"name":"SPLDS_PRINT_RATE","features":[74]},{"name":"SPLDS_PRINT_RATE_UNIT","features":[74]},{"name":"SPLDS_PRINT_SEPARATOR_FILE","features":[74]},{"name":"SPLDS_PRINT_SHARE_NAME","features":[74]},{"name":"SPLDS_PRINT_SPOOLING","features":[74]},{"name":"SPLDS_PRINT_STAPLING_SUPPORTED","features":[74]},{"name":"SPLDS_PRINT_START_TIME","features":[74]},{"name":"SPLDS_PRINT_STATUS","features":[74]},{"name":"SPLDS_PRIORITY","features":[74]},{"name":"SPLDS_SERVER_NAME","features":[74]},{"name":"SPLDS_SHORT_SERVER_NAME","features":[74]},{"name":"SPLDS_SPOOLER_KEY","features":[74]},{"name":"SPLDS_UNC_NAME","features":[74]},{"name":"SPLDS_URL","features":[74]},{"name":"SPLDS_USER_KEY","features":[74]},{"name":"SPLDS_VERSION_NUMBER","features":[74]},{"name":"SPLPRINTER_USER_MODE_PRINTER_DRIVER","features":[74]},{"name":"SPLREG_ALLOW_USER_MANAGEFORMS","features":[74]},{"name":"SPLREG_ARCHITECTURE","features":[74]},{"name":"SPLREG_BEEP_ENABLED","features":[74]},{"name":"SPLREG_DEFAULT_SPOOL_DIRECTORY","features":[74]},{"name":"SPLREG_DNS_MACHINE_NAME","features":[74]},{"name":"SPLREG_DS_PRESENT","features":[74]},{"name":"SPLREG_DS_PRESENT_FOR_USER","features":[74]},{"name":"SPLREG_EVENT_LOG","features":[74]},{"name":"SPLREG_MAJOR_VERSION","features":[74]},{"name":"SPLREG_MINOR_VERSION","features":[74]},{"name":"SPLREG_NET_POPUP","features":[74]},{"name":"SPLREG_NET_POPUP_TO_COMPUTER","features":[74]},{"name":"SPLREG_OS_VERSION","features":[74]},{"name":"SPLREG_OS_VERSIONEX","features":[74]},{"name":"SPLREG_PORT_THREAD_PRIORITY","features":[74]},{"name":"SPLREG_PORT_THREAD_PRIORITY_DEFAULT","features":[74]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_EXECUTION_POLICY","features":[74]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_GROUPS","features":[74]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_IDLE_TIMEOUT","features":[74]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_MAX_OBJECTS_BEFORE_RECYCLE","features":[74]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_OVERRIDE_POLICY","features":[74]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_TIME_BEFORE_RECYCLE","features":[74]},{"name":"SPLREG_PRINT_QUEUE_V4_DRIVER_DIRECTORY","features":[74]},{"name":"SPLREG_REMOTE_FAX","features":[74]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ENABLED","features":[74]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ERROR","features":[74]},{"name":"SPLREG_RETRY_POPUP","features":[74]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY","features":[74]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY_DEFAULT","features":[74]},{"name":"SPLREG_WEBSHAREMGMT","features":[74]},{"name":"SPOOL_FILE_PERSISTENT","features":[74]},{"name":"SPOOL_FILE_TEMPORARY","features":[74]},{"name":"SR_OWNER","features":[74]},{"name":"SR_OWNER_PARENT","features":[74]},{"name":"SSP_STDPAGE1","features":[74]},{"name":"SSP_STDPAGE2","features":[74]},{"name":"SSP_TVPAGE","features":[74]},{"name":"STRING_LANGPAIR","features":[74]},{"name":"STRING_MUIDLL","features":[74]},{"name":"STRING_NONE","features":[74]},{"name":"S_CONFLICT_RESOLVED","features":[74]},{"name":"S_DEVCAP_OUTPUT_FULL_REPLACEMENT","features":[74]},{"name":"S_NO_CONFLICT","features":[74]},{"name":"ScheduleJob","features":[1,74]},{"name":"SetCPSUIUserData","features":[1,74]},{"name":"SetDefaultPrinterA","features":[1,74]},{"name":"SetDefaultPrinterW","features":[1,74]},{"name":"SetFormA","features":[1,74]},{"name":"SetFormW","features":[1,74]},{"name":"SetJobA","features":[1,74]},{"name":"SetJobNamedProperty","features":[1,74]},{"name":"SetJobW","features":[1,74]},{"name":"SetPortA","features":[1,74]},{"name":"SetPortW","features":[1,74]},{"name":"SetPrinterA","features":[1,74]},{"name":"SetPrinterDataA","features":[1,74]},{"name":"SetPrinterDataExA","features":[1,74]},{"name":"SetPrinterDataExW","features":[1,74]},{"name":"SetPrinterDataW","features":[1,74]},{"name":"SetPrinterW","features":[1,74]},{"name":"SplIsSessionZero","features":[1,74]},{"name":"SplPromptUIInUsersSession","features":[1,74]},{"name":"SpoolerCopyFileEvent","features":[1,74]},{"name":"SpoolerFindClosePrinterChangeNotification","features":[1,74]},{"name":"SpoolerFindFirstPrinterChangeNotification","features":[1,74]},{"name":"SpoolerFindNextPrinterChangeNotification","features":[1,74]},{"name":"SpoolerFreePrinterNotifyInfo","features":[74]},{"name":"SpoolerRefreshPrinterChangeNotification","features":[1,74]},{"name":"StartDocPrinterA","features":[1,74]},{"name":"StartDocPrinterW","features":[1,74]},{"name":"StartPagePrinter","features":[1,74]},{"name":"TRANSDATA","features":[74]},{"name":"TTDOWNLOAD_BITMAP","features":[74]},{"name":"TTDOWNLOAD_DONTCARE","features":[74]},{"name":"TTDOWNLOAD_GRAPHICS","features":[74]},{"name":"TTDOWNLOAD_TTOUTLINE","features":[74]},{"name":"TVOT_2STATES","features":[74]},{"name":"TVOT_3STATES","features":[74]},{"name":"TVOT_CHKBOX","features":[74]},{"name":"TVOT_COMBOBOX","features":[74]},{"name":"TVOT_EDITBOX","features":[74]},{"name":"TVOT_LISTBOX","features":[74]},{"name":"TVOT_NSTATES_EX","features":[74]},{"name":"TVOT_PUSHBUTTON","features":[74]},{"name":"TVOT_SCROLLBAR","features":[74]},{"name":"TVOT_TRACKBAR","features":[74]},{"name":"TVOT_UDARROW","features":[74]},{"name":"TYPE_GLYPHHANDLE","features":[74]},{"name":"TYPE_GLYPHID","features":[74]},{"name":"TYPE_TRANSDATA","features":[74]},{"name":"TYPE_UNICODE","features":[74]},{"name":"UFF_FILEHEADER","features":[74]},{"name":"UFF_FONTDIRECTORY","features":[74]},{"name":"UFF_VERSION_NUMBER","features":[74]},{"name":"UFM_CART","features":[74]},{"name":"UFM_SCALABLE","features":[74]},{"name":"UFM_SOFT","features":[74]},{"name":"UFOFLAG_TTDOWNLOAD_BITMAP","features":[74]},{"name":"UFOFLAG_TTDOWNLOAD_TTOUTLINE","features":[74]},{"name":"UFOFLAG_TTFONT","features":[74]},{"name":"UFOFLAG_TTOUTLINE_BOLD_SIM","features":[74]},{"name":"UFOFLAG_TTOUTLINE_ITALIC_SIM","features":[74]},{"name":"UFOFLAG_TTOUTLINE_VERTICAL","features":[74]},{"name":"UFOFLAG_TTSUBSTITUTED","features":[74]},{"name":"UFO_GETINFO_FONTOBJ","features":[74]},{"name":"UFO_GETINFO_GLYPHBITMAP","features":[74]},{"name":"UFO_GETINFO_GLYPHSTRING","features":[74]},{"name":"UFO_GETINFO_GLYPHWIDTH","features":[74]},{"name":"UFO_GETINFO_MEMORY","features":[74]},{"name":"UFO_GETINFO_STDVARIABLE","features":[74]},{"name":"UI_TYPE","features":[74]},{"name":"UNIDRVINFO","features":[74]},{"name":"UNIDRV_PRIVATE_DEVMODE","features":[74]},{"name":"UNIFM_HDR","features":[74]},{"name":"UNIFM_VERSION_1_0","features":[74]},{"name":"UNIRECTIONAL_NOTIFICATION_LOST","features":[74]},{"name":"UNI_CODEPAGEINFO","features":[74]},{"name":"UNI_GLYPHSETDATA","features":[74]},{"name":"UNI_GLYPHSETDATA_VERSION_1_0","features":[74]},{"name":"UNKNOWN_PROTOCOL","features":[74]},{"name":"UPDP_CHECK_DRIVERSTORE","features":[74]},{"name":"UPDP_SILENT_UPLOAD","features":[74]},{"name":"UPDP_UPLOAD_ALWAYS","features":[74]},{"name":"USBPRINT_IOCTL_INDEX","features":[74]},{"name":"USB_PRINTER_INTERFACE_CLASSIC","features":[74]},{"name":"USB_PRINTER_INTERFACE_DUAL","features":[74]},{"name":"USB_PRINTER_INTERFACE_IPP","features":[74]},{"name":"USERDATA","features":[74]},{"name":"UnRegisterForPrintAsyncNotifications","features":[1,74]},{"name":"UpdatePrintDeviceObject","features":[1,74]},{"name":"UploadPrinterDriverPackageA","features":[1,74]},{"name":"UploadPrinterDriverPackageW","features":[1,74]},{"name":"WIDTHRUN","features":[74]},{"name":"WIDTHTABLE","features":[74]},{"name":"WM_FI_FILENAME","features":[74]},{"name":"WaitForPrinterChange","features":[1,74]},{"name":"WritePrinter","features":[1,74]},{"name":"XPSRAS_BACKGROUND_COLOR","features":[74]},{"name":"XPSRAS_BACKGROUND_COLOR_OPAQUE","features":[74]},{"name":"XPSRAS_BACKGROUND_COLOR_TRANSPARENT","features":[74]},{"name":"XPSRAS_PIXEL_FORMAT","features":[74]},{"name":"XPSRAS_PIXEL_FORMAT_128BPP_PRGBA_FLOAT_SCRGB","features":[74]},{"name":"XPSRAS_PIXEL_FORMAT_32BPP_PBGRA_UINT_SRGB","features":[74]},{"name":"XPSRAS_PIXEL_FORMAT_64BPP_PRGBA_HALF_SCRGB","features":[74]},{"name":"XPSRAS_RENDERING_MODE","features":[74]},{"name":"XPSRAS_RENDERING_MODE_ALIASED","features":[74]},{"name":"XPSRAS_RENDERING_MODE_ANTIALIASED","features":[74]},{"name":"XPS_FP_DRIVER_PROPERTY_BAG","features":[74]},{"name":"XPS_FP_JOB_ID","features":[74]},{"name":"XPS_FP_JOB_LEVEL_PRINTTICKET","features":[74]},{"name":"XPS_FP_MERGED_DATAFILE_PATH","features":[74]},{"name":"XPS_FP_MS_CONTENT_TYPE","features":[74]},{"name":"XPS_FP_MS_CONTENT_TYPE_OPENXPS","features":[74]},{"name":"XPS_FP_MS_CONTENT_TYPE_XPS","features":[74]},{"name":"XPS_FP_OUTPUT_FILE","features":[74]},{"name":"XPS_FP_PRINTDEVICECAPABILITIES","features":[74]},{"name":"XPS_FP_PRINTER_HANDLE","features":[74]},{"name":"XPS_FP_PRINTER_NAME","features":[74]},{"name":"XPS_FP_PRINT_CLASS_FACTORY","features":[74]},{"name":"XPS_FP_PROGRESS_REPORT","features":[74]},{"name":"XPS_FP_QUEUE_PROPERTY_BAG","features":[74]},{"name":"XPS_FP_RESOURCE_DLL_PATHS","features":[74]},{"name":"XPS_FP_USER_PRINT_TICKET","features":[74]},{"name":"XPS_FP_USER_TOKEN","features":[74]},{"name":"XcvDataW","features":[1,74]},{"name":"XpsJob_DocumentSequenceAdded","features":[74]},{"name":"XpsJob_FixedDocumentAdded","features":[74]},{"name":"XpsJob_FixedPageAdded","features":[74]},{"name":"Xps_Restricted_Font_Editable","features":[74]},{"name":"Xps_Restricted_Font_Installable","features":[74]},{"name":"Xps_Restricted_Font_NoEmbedding","features":[74]},{"name":"Xps_Restricted_Font_PreviewPrint","features":[74]},{"name":"_CPSUICALLBACK","features":[1,74,50]},{"name":"_SPLCLIENT_INFO_2_V3","features":[74]},{"name":"kADT_ASCII","features":[74]},{"name":"kADT_BINARY","features":[74]},{"name":"kADT_BOOL","features":[74]},{"name":"kADT_CUSTOMSIZEPARAMS","features":[74]},{"name":"kADT_DWORD","features":[74]},{"name":"kADT_INT","features":[74]},{"name":"kADT_LONG","features":[74]},{"name":"kADT_RECT","features":[74]},{"name":"kADT_SIZE","features":[74]},{"name":"kADT_UNICODE","features":[74]},{"name":"kADT_UNKNOWN","features":[74]},{"name":"kAddingDocumentSequence","features":[74]},{"name":"kAddingFixedDocument","features":[74]},{"name":"kAddingFixedPage","features":[74]},{"name":"kAllUsers","features":[74]},{"name":"kBiDirectional","features":[74]},{"name":"kDocumentSequenceAdded","features":[74]},{"name":"kFixedDocumentAdded","features":[74]},{"name":"kFixedPageAdded","features":[74]},{"name":"kFontAdded","features":[74]},{"name":"kImageAdded","features":[74]},{"name":"kInvalidJobState","features":[74]},{"name":"kJobConsumption","features":[74]},{"name":"kJobProduction","features":[74]},{"name":"kLogJobError","features":[74]},{"name":"kLogJobPipelineError","features":[74]},{"name":"kLogJobPrinted","features":[74]},{"name":"kLogJobRendered","features":[74]},{"name":"kLogOfflineFileFull","features":[74]},{"name":"kMessageBox","features":[74]},{"name":"kPerUser","features":[74]},{"name":"kPropertyTypeBuffer","features":[74]},{"name":"kPropertyTypeByte","features":[74]},{"name":"kPropertyTypeDevMode","features":[74]},{"name":"kPropertyTypeInt32","features":[74]},{"name":"kPropertyTypeInt64","features":[74]},{"name":"kPropertyTypeNotificationOptions","features":[74]},{"name":"kPropertyTypeNotificationReply","features":[74]},{"name":"kPropertyTypeSD","features":[74]},{"name":"kPropertyTypeString","features":[74]},{"name":"kPropertyTypeTime","features":[74]},{"name":"kResourceAdded","features":[74]},{"name":"kUniDirectional","features":[74]},{"name":"kXpsDocumentCommitted","features":[74]}],"420":[{"name":"EDefaultDevmodeType","features":[76]},{"name":"EPrintTicketScope","features":[76]},{"name":"E_DELTA_PRINTTICKET_FORMAT","features":[76]},{"name":"E_PRINTCAPABILITIES_FORMAT","features":[76]},{"name":"E_PRINTDEVICECAPABILITIES_FORMAT","features":[76]},{"name":"E_PRINTTICKET_FORMAT","features":[76]},{"name":"PRINTTICKET_ISTREAM_APIS","features":[76]},{"name":"PTCloseProvider","features":[76,75]},{"name":"PTConvertDevModeToPrintTicket","features":[1,12,76,75]},{"name":"PTConvertPrintTicketToDevMode","features":[1,12,76,75]},{"name":"PTGetPrintCapabilities","features":[76,75]},{"name":"PTGetPrintDeviceCapabilities","features":[76,75]},{"name":"PTGetPrintDeviceResources","features":[76,75]},{"name":"PTMergeAndValidatePrintTicket","features":[76,75]},{"name":"PTOpenProvider","features":[76,75]},{"name":"PTOpenProviderEx","features":[76,75]},{"name":"PTQuerySchemaVersionSupport","features":[76]},{"name":"PTReleaseMemory","features":[76]},{"name":"S_PT_CONFLICT_RESOLVED","features":[76]},{"name":"S_PT_NO_CONFLICT","features":[76]},{"name":"kPTDocumentScope","features":[76]},{"name":"kPTJobScope","features":[76]},{"name":"kPTPageScope","features":[76]},{"name":"kPrinterDefaultDevmode","features":[76]},{"name":"kUserDefaultDevmode","features":[76]}],"421":[{"name":"ApplyLocalManagementSyncML","features":[77]},{"name":"DEVICEREGISTRATIONTYPE_MAM","features":[77]},{"name":"DEVICEREGISTRATIONTYPE_MDM_DEVICEWIDE_WITH_AAD","features":[77]},{"name":"DEVICEREGISTRATIONTYPE_MDM_ONLY","features":[77]},{"name":"DEVICEREGISTRATIONTYPE_MDM_USERSPECIFIC_WITH_AAD","features":[77]},{"name":"DEVICE_ENROLLER_FACILITY_CODE","features":[77]},{"name":"DeviceRegistrationBasicInfo","features":[77]},{"name":"DiscoverManagementService","features":[77]},{"name":"DiscoverManagementServiceEx","features":[77]},{"name":"GetDeviceManagementConfigInfo","features":[77]},{"name":"GetDeviceRegistrationInfo","features":[77]},{"name":"GetManagementAppHyperlink","features":[77]},{"name":"IsDeviceRegisteredWithManagement","features":[1,77]},{"name":"IsManagementRegistrationAllowed","features":[1,77]},{"name":"IsMdmUxWithoutAadAllowed","features":[1,77]},{"name":"MANAGEMENT_REGISTRATION_INFO","features":[1,77]},{"name":"MANAGEMENT_SERVICE_INFO","features":[77]},{"name":"MDM_REGISTRATION_FACILITY_CODE","features":[77]},{"name":"MENROLL_E_CERTAUTH_FAILED_TO_FIND_CERT","features":[77]},{"name":"MENROLL_E_CERTPOLICY_PRIVATEKEYCREATION_FAILED","features":[77]},{"name":"MENROLL_E_CONNECTIVITY","features":[77]},{"name":"MENROLL_E_CUSTOMSERVERERROR","features":[77]},{"name":"MENROLL_E_DEVICECAPREACHED","features":[77]},{"name":"MENROLL_E_DEVICENOTSUPPORTED","features":[77]},{"name":"MENROLL_E_DEVICE_ALREADY_ENROLLED","features":[77]},{"name":"MENROLL_E_DEVICE_AUTHENTICATION_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_AUTHORIZATION_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_CERTIFICATEREQUEST_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_INTERNALSERVICE_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_INVALIDSECURITY_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_MANAGEMENT_BLOCKED","features":[77]},{"name":"MENROLL_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[77]},{"name":"MENROLL_E_DEVICE_NOT_ENROLLED","features":[77]},{"name":"MENROLL_E_DEVICE_UNKNOWN_ERROR","features":[77]},{"name":"MENROLL_E_DISCOVERY_SEC_CERT_DATE_INVALID","features":[77]},{"name":"MENROLL_E_EMPTY_MESSAGE","features":[77]},{"name":"MENROLL_E_ENROLLMENTDATAINVALID","features":[77]},{"name":"MENROLL_E_ENROLLMENT_IN_PROGRESS","features":[77]},{"name":"MENROLL_E_INMAINTENANCE","features":[77]},{"name":"MENROLL_E_INSECUREREDIRECT","features":[77]},{"name":"MENROLL_E_INVALIDSSLCERT","features":[77]},{"name":"MENROLL_E_MDM_NOT_CONFIGURED","features":[77]},{"name":"MENROLL_E_NOTELIGIBLETORENEW","features":[77]},{"name":"MENROLL_E_NOTSUPPORTED","features":[77]},{"name":"MENROLL_E_NOT_SUPPORTED","features":[77]},{"name":"MENROLL_E_PASSWORD_NEEDED","features":[77]},{"name":"MENROLL_E_PLATFORM_LICENSE_ERROR","features":[77]},{"name":"MENROLL_E_PLATFORM_UNKNOWN_ERROR","features":[77]},{"name":"MENROLL_E_PLATFORM_WRONG_STATE","features":[77]},{"name":"MENROLL_E_PROV_CSP_APPMGMT","features":[77]},{"name":"MENROLL_E_PROV_CSP_CERTSTORE","features":[77]},{"name":"MENROLL_E_PROV_CSP_DMCLIENT","features":[77]},{"name":"MENROLL_E_PROV_CSP_MISC","features":[77]},{"name":"MENROLL_E_PROV_CSP_PFW","features":[77]},{"name":"MENROLL_E_PROV_CSP_W7","features":[77]},{"name":"MENROLL_E_PROV_SSLCERTNOTFOUND","features":[77]},{"name":"MENROLL_E_PROV_UNKNOWN","features":[77]},{"name":"MENROLL_E_USERLICENSE","features":[77]},{"name":"MENROLL_E_USER_CANCELED","features":[77]},{"name":"MENROLL_E_USER_CANCELLED","features":[77]},{"name":"MENROLL_E_USER_LICENSE","features":[77]},{"name":"MENROLL_E_WAB_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_ALREADY_REGISTERED","features":[77]},{"name":"MREGISTER_E_DEVICE_AUTHENTICATION_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_AUTHORIZATION_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_INTERNALSERVICE_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_INVALIDSECURITY_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_NOT_AD_REGISTERED_ERROR","features":[77]},{"name":"MREGISTER_E_DEVICE_NOT_REGISTERED","features":[77]},{"name":"MREGISTER_E_DEVICE_UNKNOWN_ERROR","features":[77]},{"name":"MREGISTER_E_DISCOVERY_FAILED","features":[77]},{"name":"MREGISTER_E_DISCOVERY_REDIRECTED","features":[77]},{"name":"MREGISTER_E_REGISTRATION_IN_PROGRESS","features":[77]},{"name":"MaxDeviceInfoClass","features":[77]},{"name":"REGISTRATION_INFORMATION_CLASS","features":[77]},{"name":"RegisterDeviceWithLocalManagement","features":[1,77]},{"name":"RegisterDeviceWithManagement","features":[77]},{"name":"RegisterDeviceWithManagementUsingAADCredentials","features":[1,77]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials","features":[77]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials2","features":[77]},{"name":"SetDeviceManagementConfigInfo","features":[77]},{"name":"SetManagedExternally","features":[1,77]},{"name":"UnregisterDeviceWithLocalManagement","features":[77]},{"name":"UnregisterDeviceWithManagement","features":[77]}],"422":[{"name":"ED_DEVCAP_ATN_READ","features":[78]},{"name":"ED_DEVCAP_RTC_READ","features":[78]},{"name":"ED_DEVCAP_TIMECODE_READ","features":[78]},{"name":"HTASK","features":[78]},{"name":"IReferenceClock","features":[78]},{"name":"IReferenceClock2","features":[78]},{"name":"IReferenceClockTimerControl","features":[78]},{"name":"JOYERR_BASE","features":[78]},{"name":"LPDRVCALLBACK","features":[79]},{"name":"LPTIMECALLBACK","features":[78]},{"name":"MAXERRORLENGTH","features":[78]},{"name":"MAXPNAMELEN","features":[78]},{"name":"MCIERR_BASE","features":[78]},{"name":"MCI_CD_OFFSET","features":[78]},{"name":"MCI_SEQ_OFFSET","features":[78]},{"name":"MCI_STRING_OFFSET","features":[78]},{"name":"MCI_VD_OFFSET","features":[78]},{"name":"MCI_WAVE_OFFSET","features":[78]},{"name":"MIDIERR_BASE","features":[78]},{"name":"MIXERR_BASE","features":[78]},{"name":"MMSYSERR_ALLOCATED","features":[78]},{"name":"MMSYSERR_BADDB","features":[78]},{"name":"MMSYSERR_BADDEVICEID","features":[78]},{"name":"MMSYSERR_BADERRNUM","features":[78]},{"name":"MMSYSERR_BASE","features":[78]},{"name":"MMSYSERR_DELETEERROR","features":[78]},{"name":"MMSYSERR_ERROR","features":[78]},{"name":"MMSYSERR_HANDLEBUSY","features":[78]},{"name":"MMSYSERR_INVALFLAG","features":[78]},{"name":"MMSYSERR_INVALHANDLE","features":[78]},{"name":"MMSYSERR_INVALIDALIAS","features":[78]},{"name":"MMSYSERR_INVALPARAM","features":[78]},{"name":"MMSYSERR_KEYNOTFOUND","features":[78]},{"name":"MMSYSERR_LASTERROR","features":[78]},{"name":"MMSYSERR_MOREDATA","features":[78]},{"name":"MMSYSERR_NODRIVER","features":[78]},{"name":"MMSYSERR_NODRIVERCB","features":[78]},{"name":"MMSYSERR_NOERROR","features":[78]},{"name":"MMSYSERR_NOMEM","features":[78]},{"name":"MMSYSERR_NOTENABLED","features":[78]},{"name":"MMSYSERR_NOTSUPPORTED","features":[78]},{"name":"MMSYSERR_READERROR","features":[78]},{"name":"MMSYSERR_VALNOTFOUND","features":[78]},{"name":"MMSYSERR_WRITEERROR","features":[78]},{"name":"MMTIME","features":[78]},{"name":"MM_ADLIB","features":[78]},{"name":"MM_DRVM_CLOSE","features":[78]},{"name":"MM_DRVM_DATA","features":[78]},{"name":"MM_DRVM_ERROR","features":[78]},{"name":"MM_DRVM_OPEN","features":[78]},{"name":"MM_JOY1BUTTONDOWN","features":[78]},{"name":"MM_JOY1BUTTONUP","features":[78]},{"name":"MM_JOY1MOVE","features":[78]},{"name":"MM_JOY1ZMOVE","features":[78]},{"name":"MM_JOY2BUTTONDOWN","features":[78]},{"name":"MM_JOY2BUTTONUP","features":[78]},{"name":"MM_JOY2MOVE","features":[78]},{"name":"MM_JOY2ZMOVE","features":[78]},{"name":"MM_MCINOTIFY","features":[78]},{"name":"MM_MCISIGNAL","features":[78]},{"name":"MM_MICROSOFT","features":[78]},{"name":"MM_MIDI_MAPPER","features":[78]},{"name":"MM_MIM_CLOSE","features":[78]},{"name":"MM_MIM_DATA","features":[78]},{"name":"MM_MIM_ERROR","features":[78]},{"name":"MM_MIM_LONGDATA","features":[78]},{"name":"MM_MIM_LONGERROR","features":[78]},{"name":"MM_MIM_MOREDATA","features":[78]},{"name":"MM_MIM_OPEN","features":[78]},{"name":"MM_MIXM_CONTROL_CHANGE","features":[78]},{"name":"MM_MIXM_LINE_CHANGE","features":[78]},{"name":"MM_MOM_CLOSE","features":[78]},{"name":"MM_MOM_DONE","features":[78]},{"name":"MM_MOM_OPEN","features":[78]},{"name":"MM_MOM_POSITIONCB","features":[78]},{"name":"MM_MPU401_MIDIIN","features":[78]},{"name":"MM_MPU401_MIDIOUT","features":[78]},{"name":"MM_PC_JOYSTICK","features":[78]},{"name":"MM_SNDBLST_MIDIIN","features":[78]},{"name":"MM_SNDBLST_MIDIOUT","features":[78]},{"name":"MM_SNDBLST_SYNTH","features":[78]},{"name":"MM_SNDBLST_WAVEIN","features":[78]},{"name":"MM_SNDBLST_WAVEOUT","features":[78]},{"name":"MM_STREAM_CLOSE","features":[78]},{"name":"MM_STREAM_DONE","features":[78]},{"name":"MM_STREAM_ERROR","features":[78]},{"name":"MM_STREAM_OPEN","features":[78]},{"name":"MM_WAVE_MAPPER","features":[78]},{"name":"MM_WIM_CLOSE","features":[78]},{"name":"MM_WIM_DATA","features":[78]},{"name":"MM_WIM_OPEN","features":[78]},{"name":"MM_WOM_CLOSE","features":[78]},{"name":"MM_WOM_DONE","features":[78]},{"name":"MM_WOM_OPEN","features":[78]},{"name":"TIMECAPS","features":[78]},{"name":"TIMECODE","features":[78]},{"name":"TIMECODE_SAMPLE","features":[78]},{"name":"TIMECODE_SAMPLE_FLAGS","features":[78]},{"name":"TIMERR_BASE","features":[78]},{"name":"TIMERR_NOCANDO","features":[78]},{"name":"TIMERR_NOERROR","features":[78]},{"name":"TIMERR_STRUCT","features":[78]},{"name":"TIME_BYTES","features":[78]},{"name":"TIME_CALLBACK_EVENT_PULSE","features":[78]},{"name":"TIME_CALLBACK_EVENT_SET","features":[78]},{"name":"TIME_CALLBACK_FUNCTION","features":[78]},{"name":"TIME_KILL_SYNCHRONOUS","features":[78]},{"name":"TIME_MIDI","features":[78]},{"name":"TIME_MS","features":[78]},{"name":"TIME_ONESHOT","features":[78]},{"name":"TIME_PERIODIC","features":[78]},{"name":"TIME_SAMPLES","features":[78]},{"name":"TIME_SMPTE","features":[78]},{"name":"TIME_TICKS","features":[78]},{"name":"WAVERR_BASE","features":[78]},{"name":"timeBeginPeriod","features":[78]},{"name":"timeEndPeriod","features":[78]},{"name":"timeGetDevCaps","features":[78]},{"name":"timeGetSystemTime","features":[78]},{"name":"timeGetTime","features":[78]},{"name":"timeKillEvent","features":[78]},{"name":"timeSetEvent","features":[78]}],"423":[{"name":"ACMDM_DRIVER_ABOUT","features":[80]},{"name":"ACMDM_DRIVER_DETAILS","features":[80]},{"name":"ACMDM_DRIVER_NOTIFY","features":[80]},{"name":"ACMDM_FILTERTAG_DETAILS","features":[80]},{"name":"ACMDM_FILTER_DETAILS","features":[80]},{"name":"ACMDM_FORMATTAG_DETAILS","features":[80]},{"name":"ACMDM_FORMAT_DETAILS","features":[80]},{"name":"ACMDM_FORMAT_SUGGEST","features":[80]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_INPUT","features":[80]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_OUTPUT","features":[80]},{"name":"ACMDM_RESERVED_HIGH","features":[80]},{"name":"ACMDM_RESERVED_LOW","features":[80]},{"name":"ACMDM_STREAM_CLOSE","features":[80]},{"name":"ACMDM_STREAM_CONVERT","features":[80]},{"name":"ACMDM_STREAM_OPEN","features":[80]},{"name":"ACMDM_STREAM_PREPARE","features":[80]},{"name":"ACMDM_STREAM_RESET","features":[80]},{"name":"ACMDM_STREAM_SIZE","features":[80]},{"name":"ACMDM_STREAM_UNPREPARE","features":[80]},{"name":"ACMDM_STREAM_UPDATE","features":[80]},{"name":"ACMDM_USER","features":[80]},{"name":"ACMDRIVERDETAILSA","features":[80,50]},{"name":"ACMDRIVERDETAILSW","features":[80,50]},{"name":"ACMDRIVERDETAILS_COPYRIGHT_CHARS","features":[80]},{"name":"ACMDRIVERDETAILS_FEATURES_CHARS","features":[80]},{"name":"ACMDRIVERDETAILS_LICENSING_CHARS","features":[80]},{"name":"ACMDRIVERDETAILS_LONGNAME_CHARS","features":[80]},{"name":"ACMDRIVERDETAILS_SHORTNAME_CHARS","features":[80]},{"name":"ACMDRIVERDETAILS_SUPPORTF_ASYNC","features":[80]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CODEC","features":[80]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CONVERTER","features":[80]},{"name":"ACMDRIVERDETAILS_SUPPORTF_DISABLED","features":[80]},{"name":"ACMDRIVERDETAILS_SUPPORTF_FILTER","features":[80]},{"name":"ACMDRIVERDETAILS_SUPPORTF_HARDWARE","features":[80]},{"name":"ACMDRIVERDETAILS_SUPPORTF_LOCAL","features":[80]},{"name":"ACMDRIVERENUMCB","features":[1,80]},{"name":"ACMDRVFORMATSUGGEST","features":[80]},{"name":"ACMDRVOPENDESCA","features":[80]},{"name":"ACMDRVOPENDESCW","features":[80]},{"name":"ACMDRVSTREAMHEADER","features":[80]},{"name":"ACMDRVSTREAMINSTANCE","features":[80]},{"name":"ACMDRVSTREAMSIZE","features":[80]},{"name":"ACMERR_BASE","features":[80]},{"name":"ACMERR_BUSY","features":[80]},{"name":"ACMERR_CANCELED","features":[80]},{"name":"ACMERR_NOTPOSSIBLE","features":[80]},{"name":"ACMERR_UNPREPARED","features":[80]},{"name":"ACMFILTERCHOOSEA","features":[1,80]},{"name":"ACMFILTERCHOOSEHOOKPROCA","features":[1,80]},{"name":"ACMFILTERCHOOSEHOOKPROCW","features":[1,80]},{"name":"ACMFILTERCHOOSEW","features":[1,80]},{"name":"ACMFILTERCHOOSE_STYLEF_CONTEXTHELP","features":[80]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLEHOOK","features":[80]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATE","features":[80]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[80]},{"name":"ACMFILTERCHOOSE_STYLEF_INITTOFILTERSTRUCT","features":[80]},{"name":"ACMFILTERCHOOSE_STYLEF_SHOWHELP","features":[80]},{"name":"ACMFILTERDETAILSA","features":[80]},{"name":"ACMFILTERDETAILSW","features":[80]},{"name":"ACMFILTERDETAILS_FILTER_CHARS","features":[80]},{"name":"ACMFILTERENUMCBA","features":[1,80]},{"name":"ACMFILTERENUMCBW","features":[1,80]},{"name":"ACMFILTERTAGDETAILSA","features":[80]},{"name":"ACMFILTERTAGDETAILSW","features":[80]},{"name":"ACMFILTERTAGDETAILS_FILTERTAG_CHARS","features":[80]},{"name":"ACMFILTERTAGENUMCBA","features":[1,80]},{"name":"ACMFILTERTAGENUMCBW","features":[1,80]},{"name":"ACMFORMATCHOOSEA","features":[1,80]},{"name":"ACMFORMATCHOOSEHOOKPROCA","features":[1,80]},{"name":"ACMFORMATCHOOSEHOOKPROCW","features":[1,80]},{"name":"ACMFORMATCHOOSEW","features":[1,80]},{"name":"ACMFORMATCHOOSE_STYLEF_CONTEXTHELP","features":[80]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLEHOOK","features":[80]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATE","features":[80]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[80]},{"name":"ACMFORMATCHOOSE_STYLEF_INITTOWFXSTRUCT","features":[80]},{"name":"ACMFORMATCHOOSE_STYLEF_SHOWHELP","features":[80]},{"name":"ACMFORMATDETAILSA","features":[80]},{"name":"ACMFORMATDETAILS_FORMAT_CHARS","features":[80]},{"name":"ACMFORMATENUMCBA","features":[1,80]},{"name":"ACMFORMATENUMCBW","features":[1,80]},{"name":"ACMFORMATTAGDETAILSA","features":[80]},{"name":"ACMFORMATTAGDETAILSW","features":[80]},{"name":"ACMFORMATTAGDETAILS_FORMATTAG_CHARS","features":[80]},{"name":"ACMFORMATTAGENUMCBA","features":[1,80]},{"name":"ACMFORMATTAGENUMCBW","features":[1,80]},{"name":"ACMHELPMSGCONTEXTHELP","features":[80]},{"name":"ACMHELPMSGCONTEXTHELPA","features":[80]},{"name":"ACMHELPMSGCONTEXTHELPW","features":[80]},{"name":"ACMHELPMSGCONTEXTMENU","features":[80]},{"name":"ACMHELPMSGCONTEXTMENUA","features":[80]},{"name":"ACMHELPMSGCONTEXTMENUW","features":[80]},{"name":"ACMHELPMSGSTRING","features":[80]},{"name":"ACMHELPMSGSTRINGA","features":[80]},{"name":"ACMHELPMSGSTRINGW","features":[80]},{"name":"ACMSTREAMHEADER","features":[80]},{"name":"ACMSTREAMHEADER","features":[80]},{"name":"ACMSTREAMHEADER_STATUSF_DONE","features":[80]},{"name":"ACMSTREAMHEADER_STATUSF_INQUEUE","features":[80]},{"name":"ACMSTREAMHEADER_STATUSF_PREPARED","features":[80]},{"name":"ACM_DRIVERADDF_FUNCTION","features":[80]},{"name":"ACM_DRIVERADDF_GLOBAL","features":[80]},{"name":"ACM_DRIVERADDF_LOCAL","features":[80]},{"name":"ACM_DRIVERADDF_NAME","features":[80]},{"name":"ACM_DRIVERADDF_NOTIFYHWND","features":[80]},{"name":"ACM_DRIVERADDF_TYPEMASK","features":[80]},{"name":"ACM_DRIVERENUMF_DISABLED","features":[80]},{"name":"ACM_DRIVERENUMF_NOLOCAL","features":[80]},{"name":"ACM_DRIVERPRIORITYF_ABLEMASK","features":[80]},{"name":"ACM_DRIVERPRIORITYF_BEGIN","features":[80]},{"name":"ACM_DRIVERPRIORITYF_DEFERMASK","features":[80]},{"name":"ACM_DRIVERPRIORITYF_DISABLE","features":[80]},{"name":"ACM_DRIVERPRIORITYF_ENABLE","features":[80]},{"name":"ACM_DRIVERPRIORITYF_END","features":[80]},{"name":"ACM_FILTERDETAILSF_FILTER","features":[80]},{"name":"ACM_FILTERDETAILSF_INDEX","features":[80]},{"name":"ACM_FILTERDETAILSF_QUERYMASK","features":[80]},{"name":"ACM_FILTERENUMF_DWFILTERTAG","features":[80]},{"name":"ACM_FILTERTAGDETAILSF_FILTERTAG","features":[80]},{"name":"ACM_FILTERTAGDETAILSF_INDEX","features":[80]},{"name":"ACM_FILTERTAGDETAILSF_LARGESTSIZE","features":[80]},{"name":"ACM_FILTERTAGDETAILSF_QUERYMASK","features":[80]},{"name":"ACM_FORMATDETAILSF_FORMAT","features":[80]},{"name":"ACM_FORMATDETAILSF_INDEX","features":[80]},{"name":"ACM_FORMATDETAILSF_QUERYMASK","features":[80]},{"name":"ACM_FORMATENUMF_CONVERT","features":[80]},{"name":"ACM_FORMATENUMF_HARDWARE","features":[80]},{"name":"ACM_FORMATENUMF_INPUT","features":[80]},{"name":"ACM_FORMATENUMF_NCHANNELS","features":[80]},{"name":"ACM_FORMATENUMF_NSAMPLESPERSEC","features":[80]},{"name":"ACM_FORMATENUMF_OUTPUT","features":[80]},{"name":"ACM_FORMATENUMF_SUGGEST","features":[80]},{"name":"ACM_FORMATENUMF_WBITSPERSAMPLE","features":[80]},{"name":"ACM_FORMATENUMF_WFORMATTAG","features":[80]},{"name":"ACM_FORMATSUGGESTF_NCHANNELS","features":[80]},{"name":"ACM_FORMATSUGGESTF_NSAMPLESPERSEC","features":[80]},{"name":"ACM_FORMATSUGGESTF_TYPEMASK","features":[80]},{"name":"ACM_FORMATSUGGESTF_WBITSPERSAMPLE","features":[80]},{"name":"ACM_FORMATSUGGESTF_WFORMATTAG","features":[80]},{"name":"ACM_FORMATTAGDETAILSF_FORMATTAG","features":[80]},{"name":"ACM_FORMATTAGDETAILSF_INDEX","features":[80]},{"name":"ACM_FORMATTAGDETAILSF_LARGESTSIZE","features":[80]},{"name":"ACM_FORMATTAGDETAILSF_QUERYMASK","features":[80]},{"name":"ACM_METRIC_COUNT_CODECS","features":[80]},{"name":"ACM_METRIC_COUNT_CONVERTERS","features":[80]},{"name":"ACM_METRIC_COUNT_DISABLED","features":[80]},{"name":"ACM_METRIC_COUNT_DRIVERS","features":[80]},{"name":"ACM_METRIC_COUNT_FILTERS","features":[80]},{"name":"ACM_METRIC_COUNT_HARDWARE","features":[80]},{"name":"ACM_METRIC_COUNT_LOCAL_CODECS","features":[80]},{"name":"ACM_METRIC_COUNT_LOCAL_CONVERTERS","features":[80]},{"name":"ACM_METRIC_COUNT_LOCAL_DISABLED","features":[80]},{"name":"ACM_METRIC_COUNT_LOCAL_DRIVERS","features":[80]},{"name":"ACM_METRIC_COUNT_LOCAL_FILTERS","features":[80]},{"name":"ACM_METRIC_DRIVER_PRIORITY","features":[80]},{"name":"ACM_METRIC_DRIVER_SUPPORT","features":[80]},{"name":"ACM_METRIC_HARDWARE_WAVE_INPUT","features":[80]},{"name":"ACM_METRIC_HARDWARE_WAVE_OUTPUT","features":[80]},{"name":"ACM_METRIC_MAX_SIZE_FILTER","features":[80]},{"name":"ACM_METRIC_MAX_SIZE_FORMAT","features":[80]},{"name":"ACM_STREAMCONVERTF_BLOCKALIGN","features":[80]},{"name":"ACM_STREAMCONVERTF_END","features":[80]},{"name":"ACM_STREAMCONVERTF_START","features":[80]},{"name":"ACM_STREAMOPENF_ASYNC","features":[80]},{"name":"ACM_STREAMOPENF_NONREALTIME","features":[80]},{"name":"ACM_STREAMOPENF_QUERY","features":[80]},{"name":"ACM_STREAMSIZEF_DESTINATION","features":[80]},{"name":"ACM_STREAMSIZEF_QUERYMASK","features":[80]},{"name":"ACM_STREAMSIZEF_SOURCE","features":[80]},{"name":"AMBISONICS_CHANNEL_ORDERING","features":[80]},{"name":"AMBISONICS_CHANNEL_ORDERING_ACN","features":[80]},{"name":"AMBISONICS_NORMALIZATION","features":[80]},{"name":"AMBISONICS_NORMALIZATION_N3D","features":[80]},{"name":"AMBISONICS_NORMALIZATION_SN3D","features":[80]},{"name":"AMBISONICS_PARAMS","features":[80]},{"name":"AMBISONICS_PARAM_VERSION_1","features":[80]},{"name":"AMBISONICS_TYPE","features":[80]},{"name":"AMBISONICS_TYPE_FULL3D","features":[80]},{"name":"AUDCLNT_BUFFERFLAGS_DATA_DISCONTINUITY","features":[80]},{"name":"AUDCLNT_BUFFERFLAGS_SILENT","features":[80]},{"name":"AUDCLNT_BUFFERFLAGS_TIMESTAMP_ERROR","features":[80]},{"name":"AUDCLNT_E_ALREADY_INITIALIZED","features":[80]},{"name":"AUDCLNT_E_BUFDURATION_PERIOD_NOT_EQUAL","features":[80]},{"name":"AUDCLNT_E_BUFFER_ERROR","features":[80]},{"name":"AUDCLNT_E_BUFFER_OPERATION_PENDING","features":[80]},{"name":"AUDCLNT_E_BUFFER_SIZE_ERROR","features":[80]},{"name":"AUDCLNT_E_BUFFER_SIZE_NOT_ALIGNED","features":[80]},{"name":"AUDCLNT_E_BUFFER_TOO_LARGE","features":[80]},{"name":"AUDCLNT_E_CPUUSAGE_EXCEEDED","features":[80]},{"name":"AUDCLNT_E_DEVICE_INVALIDATED","features":[80]},{"name":"AUDCLNT_E_DEVICE_IN_USE","features":[80]},{"name":"AUDCLNT_E_EFFECT_NOT_AVAILABLE","features":[80]},{"name":"AUDCLNT_E_EFFECT_STATE_READ_ONLY","features":[80]},{"name":"AUDCLNT_E_ENDPOINT_CREATE_FAILED","features":[80]},{"name":"AUDCLNT_E_ENDPOINT_OFFLOAD_NOT_CAPABLE","features":[80]},{"name":"AUDCLNT_E_ENGINE_FORMAT_LOCKED","features":[80]},{"name":"AUDCLNT_E_ENGINE_PERIODICITY_LOCKED","features":[80]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_EXPECTED","features":[80]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_SET","features":[80]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED","features":[80]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_ONLY","features":[80]},{"name":"AUDCLNT_E_HEADTRACKING_ENABLED","features":[80]},{"name":"AUDCLNT_E_HEADTRACKING_UNSUPPORTED","features":[80]},{"name":"AUDCLNT_E_INCORRECT_BUFFER_SIZE","features":[80]},{"name":"AUDCLNT_E_INVALID_DEVICE_PERIOD","features":[80]},{"name":"AUDCLNT_E_INVALID_SIZE","features":[80]},{"name":"AUDCLNT_E_INVALID_STREAM_FLAG","features":[80]},{"name":"AUDCLNT_E_NONOFFLOAD_MODE_ONLY","features":[80]},{"name":"AUDCLNT_E_NOT_INITIALIZED","features":[80]},{"name":"AUDCLNT_E_NOT_STOPPED","features":[80]},{"name":"AUDCLNT_E_OFFLOAD_MODE_ONLY","features":[80]},{"name":"AUDCLNT_E_OUT_OF_OFFLOAD_RESOURCES","features":[80]},{"name":"AUDCLNT_E_OUT_OF_ORDER","features":[80]},{"name":"AUDCLNT_E_RAW_MODE_UNSUPPORTED","features":[80]},{"name":"AUDCLNT_E_RESOURCES_INVALIDATED","features":[80]},{"name":"AUDCLNT_E_SERVICE_NOT_RUNNING","features":[80]},{"name":"AUDCLNT_E_THREAD_NOT_REGISTERED","features":[80]},{"name":"AUDCLNT_E_UNSUPPORTED_FORMAT","features":[80]},{"name":"AUDCLNT_E_WRONG_ENDPOINT_TYPE","features":[80]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDE","features":[80]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDEWHENEXPIRED","features":[80]},{"name":"AUDCLNT_SESSIONFLAGS_EXPIREWHENUNOWNED","features":[80]},{"name":"AUDCLNT_SHAREMODE","features":[80]},{"name":"AUDCLNT_SHAREMODE_EXCLUSIVE","features":[80]},{"name":"AUDCLNT_SHAREMODE_SHARED","features":[80]},{"name":"AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM","features":[80]},{"name":"AUDCLNT_STREAMFLAGS_CROSSPROCESS","features":[80]},{"name":"AUDCLNT_STREAMFLAGS_EVENTCALLBACK","features":[80]},{"name":"AUDCLNT_STREAMFLAGS_LOOPBACK","features":[80]},{"name":"AUDCLNT_STREAMFLAGS_NOPERSIST","features":[80]},{"name":"AUDCLNT_STREAMFLAGS_RATEADJUST","features":[80]},{"name":"AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY","features":[80]},{"name":"AUDCLNT_STREAMOPTIONS","features":[80]},{"name":"AUDCLNT_STREAMOPTIONS_AMBISONICS","features":[80]},{"name":"AUDCLNT_STREAMOPTIONS_MATCH_FORMAT","features":[80]},{"name":"AUDCLNT_STREAMOPTIONS_NONE","features":[80]},{"name":"AUDCLNT_STREAMOPTIONS_RAW","features":[80]},{"name":"AUDCLNT_S_BUFFER_EMPTY","features":[80]},{"name":"AUDCLNT_S_POSITION_STALLED","features":[80]},{"name":"AUDCLNT_S_THREAD_ALREADY_REGISTERED","features":[80]},{"name":"AUDIOCLIENT_ACTIVATION_PARAMS","features":[80]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE","features":[80]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_DEFAULT","features":[80]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_PROCESS_LOOPBACK","features":[80]},{"name":"AUDIOCLIENT_PROCESS_LOOPBACK_PARAMS","features":[80]},{"name":"AUDIOCLOCK_CHARACTERISTIC_FIXED_FREQ","features":[80]},{"name":"AUDIO_DUCKING_OPTIONS","features":[80]},{"name":"AUDIO_DUCKING_OPTIONS_DEFAULT","features":[80]},{"name":"AUDIO_DUCKING_OPTIONS_DO_NOT_DUCK_OTHER_STREAMS","features":[80]},{"name":"AUDIO_EFFECT","features":[1,80]},{"name":"AUDIO_EFFECT_STATE","features":[80]},{"name":"AUDIO_EFFECT_STATE_OFF","features":[80]},{"name":"AUDIO_EFFECT_STATE_ON","features":[80]},{"name":"AUDIO_STREAM_CATEGORY","features":[80]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE","features":[80]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_DEFAULT","features":[80]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_ENUM_COUNT","features":[80]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_USER","features":[80]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_VOLATILE","features":[80]},{"name":"AUDIO_VOLUME_NOTIFICATION_DATA","features":[1,80]},{"name":"AUXCAPS2A","features":[80]},{"name":"AUXCAPS2W","features":[80]},{"name":"AUXCAPSA","features":[80]},{"name":"AUXCAPSW","features":[80]},{"name":"AUXCAPS_AUXIN","features":[80]},{"name":"AUXCAPS_CDAUDIO","features":[80]},{"name":"AUXCAPS_LRVOLUME","features":[80]},{"name":"AUXCAPS_VOLUME","features":[80]},{"name":"ActivateAudioInterfaceAsync","features":[1,80,63,42]},{"name":"AudioCategory_Alerts","features":[80]},{"name":"AudioCategory_Communications","features":[80]},{"name":"AudioCategory_FarFieldSpeech","features":[80]},{"name":"AudioCategory_ForegroundOnlyMedia","features":[80]},{"name":"AudioCategory_GameChat","features":[80]},{"name":"AudioCategory_GameEffects","features":[80]},{"name":"AudioCategory_GameMedia","features":[80]},{"name":"AudioCategory_Media","features":[80]},{"name":"AudioCategory_Movie","features":[80]},{"name":"AudioCategory_Other","features":[80]},{"name":"AudioCategory_SoundEffects","features":[80]},{"name":"AudioCategory_Speech","features":[80]},{"name":"AudioCategory_UniformSpeech","features":[80]},{"name":"AudioCategory_VoiceTyping","features":[80]},{"name":"AudioClient3ActivationParams","features":[80]},{"name":"AudioClientProperties","features":[1,80]},{"name":"AudioExtensionParams","features":[1,80]},{"name":"AudioObjectType","features":[80]},{"name":"AudioObjectType_BackCenter","features":[80]},{"name":"AudioObjectType_BackLeft","features":[80]},{"name":"AudioObjectType_BackRight","features":[80]},{"name":"AudioObjectType_BottomBackLeft","features":[80]},{"name":"AudioObjectType_BottomBackRight","features":[80]},{"name":"AudioObjectType_BottomFrontLeft","features":[80]},{"name":"AudioObjectType_BottomFrontRight","features":[80]},{"name":"AudioObjectType_Dynamic","features":[80]},{"name":"AudioObjectType_FrontCenter","features":[80]},{"name":"AudioObjectType_FrontLeft","features":[80]},{"name":"AudioObjectType_FrontRight","features":[80]},{"name":"AudioObjectType_LowFrequency","features":[80]},{"name":"AudioObjectType_None","features":[80]},{"name":"AudioObjectType_SideLeft","features":[80]},{"name":"AudioObjectType_SideRight","features":[80]},{"name":"AudioObjectType_TopBackLeft","features":[80]},{"name":"AudioObjectType_TopBackRight","features":[80]},{"name":"AudioObjectType_TopFrontLeft","features":[80]},{"name":"AudioObjectType_TopFrontRight","features":[80]},{"name":"AudioSessionDisconnectReason","features":[80]},{"name":"AudioSessionState","features":[80]},{"name":"AudioSessionStateActive","features":[80]},{"name":"AudioSessionStateExpired","features":[80]},{"name":"AudioSessionStateInactive","features":[80]},{"name":"AudioStateMonitorSoundLevel","features":[80]},{"name":"CALLBACK_EVENT","features":[80]},{"name":"CALLBACK_FUNCTION","features":[80]},{"name":"CALLBACK_NULL","features":[80]},{"name":"CALLBACK_TASK","features":[80]},{"name":"CALLBACK_THREAD","features":[80]},{"name":"CALLBACK_TYPEMASK","features":[80]},{"name":"CALLBACK_WINDOW","features":[80]},{"name":"CoRegisterMessageFilter","features":[80]},{"name":"Connector","features":[80]},{"name":"ConnectorType","features":[80]},{"name":"CreateCaptureAudioStateMonitor","features":[80]},{"name":"CreateCaptureAudioStateMonitorForCategory","features":[80]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceId","features":[80]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceRole","features":[80]},{"name":"CreateRenderAudioStateMonitor","features":[80]},{"name":"CreateRenderAudioStateMonitorForCategory","features":[80]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceId","features":[80]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceRole","features":[80]},{"name":"DEVICE_STATE","features":[80]},{"name":"DEVICE_STATEMASK_ALL","features":[80]},{"name":"DEVICE_STATE_ACTIVE","features":[80]},{"name":"DEVICE_STATE_DISABLED","features":[80]},{"name":"DEVICE_STATE_NOTPRESENT","features":[80]},{"name":"DEVICE_STATE_UNPLUGGED","features":[80]},{"name":"DEVINTERFACE_AUDIO_CAPTURE","features":[80]},{"name":"DEVINTERFACE_AUDIO_RENDER","features":[80]},{"name":"DEVINTERFACE_MIDI_INPUT","features":[80]},{"name":"DEVINTERFACE_MIDI_OUTPUT","features":[80]},{"name":"DIRECTX_AUDIO_ACTIVATION_PARAMS","features":[80]},{"name":"DRVM_MAPPER","features":[80]},{"name":"DRVM_MAPPER_STATUS","features":[80]},{"name":"DRV_MAPPER_PREFERRED_INPUT_GET","features":[80]},{"name":"DRV_MAPPER_PREFERRED_OUTPUT_GET","features":[80]},{"name":"DataFlow","features":[80]},{"name":"DeviceTopology","features":[80]},{"name":"DigitalAudioDisplayDevice","features":[80]},{"name":"DisconnectReasonDeviceRemoval","features":[80]},{"name":"DisconnectReasonExclusiveModeOverride","features":[80]},{"name":"DisconnectReasonFormatChanged","features":[80]},{"name":"DisconnectReasonServerShutdown","features":[80]},{"name":"DisconnectReasonSessionDisconnected","features":[80]},{"name":"DisconnectReasonSessionLogoff","features":[80]},{"name":"ECHOWAVEFILTER","features":[80]},{"name":"EDataFlow","features":[80]},{"name":"EDataFlow_enum_count","features":[80]},{"name":"ENDPOINT_FORMAT_RESET_MIX_ONLY","features":[80]},{"name":"ENDPOINT_HARDWARE_SUPPORT_METER","features":[80]},{"name":"ENDPOINT_HARDWARE_SUPPORT_MUTE","features":[80]},{"name":"ENDPOINT_HARDWARE_SUPPORT_VOLUME","features":[80]},{"name":"ENDPOINT_SYSFX_DISABLED","features":[80]},{"name":"ENDPOINT_SYSFX_ENABLED","features":[80]},{"name":"ERole","features":[80]},{"name":"ERole_enum_count","features":[80]},{"name":"EVENTCONTEXT_VOLUMESLIDER","features":[80]},{"name":"EndpointFormFactor","features":[80]},{"name":"EndpointFormFactor_enum_count","features":[80]},{"name":"FILTERCHOOSE_CUSTOM_VERIFY","features":[80]},{"name":"FILTERCHOOSE_FILTERTAG_VERIFY","features":[80]},{"name":"FILTERCHOOSE_FILTER_VERIFY","features":[80]},{"name":"FILTERCHOOSE_MESSAGE","features":[80]},{"name":"FORMATCHOOSE_CUSTOM_VERIFY","features":[80]},{"name":"FORMATCHOOSE_FORMATTAG_VERIFY","features":[80]},{"name":"FORMATCHOOSE_FORMAT_VERIFY","features":[80]},{"name":"FORMATCHOOSE_MESSAGE","features":[80]},{"name":"Full","features":[80]},{"name":"HACMDRIVER","features":[80]},{"name":"HACMDRIVERID","features":[80]},{"name":"HACMOBJ","features":[80]},{"name":"HACMSTREAM","features":[80]},{"name":"HMIDI","features":[80]},{"name":"HMIDIIN","features":[80]},{"name":"HMIDIOUT","features":[80]},{"name":"HMIDISTRM","features":[80]},{"name":"HMIXER","features":[80]},{"name":"HMIXEROBJ","features":[80]},{"name":"HWAVE","features":[80]},{"name":"HWAVEIN","features":[80]},{"name":"HWAVEOUT","features":[80]},{"name":"Handset","features":[80]},{"name":"Headphones","features":[80]},{"name":"Headset","features":[80]},{"name":"IAcousticEchoCancellationControl","features":[80]},{"name":"IActivateAudioInterfaceAsyncOperation","features":[80]},{"name":"IActivateAudioInterfaceCompletionHandler","features":[80]},{"name":"IAudioAmbisonicsControl","features":[80]},{"name":"IAudioAutoGainControl","features":[80]},{"name":"IAudioBass","features":[80]},{"name":"IAudioCaptureClient","features":[80]},{"name":"IAudioChannelConfig","features":[80]},{"name":"IAudioClient","features":[80]},{"name":"IAudioClient2","features":[80]},{"name":"IAudioClient3","features":[80]},{"name":"IAudioClientDuckingControl","features":[80]},{"name":"IAudioClock","features":[80]},{"name":"IAudioClock2","features":[80]},{"name":"IAudioClockAdjustment","features":[80]},{"name":"IAudioEffectsChangedNotificationClient","features":[80]},{"name":"IAudioEffectsManager","features":[80]},{"name":"IAudioFormatEnumerator","features":[80]},{"name":"IAudioInputSelector","features":[80]},{"name":"IAudioLoudness","features":[80]},{"name":"IAudioMidrange","features":[80]},{"name":"IAudioMute","features":[80]},{"name":"IAudioOutputSelector","features":[80]},{"name":"IAudioPeakMeter","features":[80]},{"name":"IAudioRenderClient","features":[80]},{"name":"IAudioSessionControl","features":[80]},{"name":"IAudioSessionControl2","features":[80]},{"name":"IAudioSessionEnumerator","features":[80]},{"name":"IAudioSessionEvents","features":[80]},{"name":"IAudioSessionManager","features":[80]},{"name":"IAudioSessionManager2","features":[80]},{"name":"IAudioSessionNotification","features":[80]},{"name":"IAudioStateMonitor","features":[80]},{"name":"IAudioStreamVolume","features":[80]},{"name":"IAudioSystemEffectsPropertyChangeNotificationClient","features":[80]},{"name":"IAudioSystemEffectsPropertyStore","features":[80]},{"name":"IAudioTreble","features":[80]},{"name":"IAudioViewManagerService","features":[80]},{"name":"IAudioVolumeDuckNotification","features":[80]},{"name":"IAudioVolumeLevel","features":[80]},{"name":"IChannelAudioVolume","features":[80]},{"name":"IConnector","features":[80]},{"name":"IControlChangeNotify","features":[80]},{"name":"IControlInterface","features":[80]},{"name":"IDeviceSpecificProperty","features":[80]},{"name":"IDeviceTopology","features":[80]},{"name":"IMMDevice","features":[80]},{"name":"IMMDeviceActivator","features":[80]},{"name":"IMMDeviceCollection","features":[80]},{"name":"IMMDeviceEnumerator","features":[80]},{"name":"IMMEndpoint","features":[80]},{"name":"IMMNotificationClient","features":[80]},{"name":"IMessageFilter","features":[80]},{"name":"IPart","features":[80]},{"name":"IPartsList","features":[80]},{"name":"IPerChannelDbLevel","features":[80]},{"name":"ISimpleAudioVolume","features":[80]},{"name":"ISpatialAudioClient","features":[80]},{"name":"ISpatialAudioClient2","features":[80]},{"name":"ISpatialAudioMetadataClient","features":[80]},{"name":"ISpatialAudioMetadataCopier","features":[80]},{"name":"ISpatialAudioMetadataItems","features":[80]},{"name":"ISpatialAudioMetadataItemsBuffer","features":[80]},{"name":"ISpatialAudioMetadataReader","features":[80]},{"name":"ISpatialAudioMetadataWriter","features":[80]},{"name":"ISpatialAudioObject","features":[80]},{"name":"ISpatialAudioObjectBase","features":[80]},{"name":"ISpatialAudioObjectForHrtf","features":[80]},{"name":"ISpatialAudioObjectForMetadataCommands","features":[80]},{"name":"ISpatialAudioObjectForMetadataItems","features":[80]},{"name":"ISpatialAudioObjectRenderStream","features":[80]},{"name":"ISpatialAudioObjectRenderStreamBase","features":[80]},{"name":"ISpatialAudioObjectRenderStreamForHrtf","features":[80]},{"name":"ISpatialAudioObjectRenderStreamForMetadata","features":[80]},{"name":"ISpatialAudioObjectRenderStreamNotify","features":[80]},{"name":"ISubunit","features":[80]},{"name":"In","features":[80]},{"name":"LPACMDRIVERPROC","features":[1,80]},{"name":"LPMIDICALLBACK","features":[80,79]},{"name":"LPWAVECALLBACK","features":[80,79]},{"name":"LineLevel","features":[80]},{"name":"Low","features":[80]},{"name":"MEVT_COMMENT","features":[80]},{"name":"MEVT_F_CALLBACK","features":[80]},{"name":"MEVT_F_LONG","features":[80]},{"name":"MEVT_F_SHORT","features":[80]},{"name":"MEVT_LONGMSG","features":[80]},{"name":"MEVT_NOP","features":[80]},{"name":"MEVT_SHORTMSG","features":[80]},{"name":"MEVT_TEMPO","features":[80]},{"name":"MEVT_VERSION","features":[80]},{"name":"MHDR_DONE","features":[80]},{"name":"MHDR_INQUEUE","features":[80]},{"name":"MHDR_ISSTRM","features":[80]},{"name":"MHDR_PREPARED","features":[80]},{"name":"MIDICAPS_CACHE","features":[80]},{"name":"MIDICAPS_LRVOLUME","features":[80]},{"name":"MIDICAPS_STREAM","features":[80]},{"name":"MIDICAPS_VOLUME","features":[80]},{"name":"MIDIERR_BADOPENMODE","features":[80]},{"name":"MIDIERR_DONT_CONTINUE","features":[80]},{"name":"MIDIERR_INVALIDSETUP","features":[80]},{"name":"MIDIERR_LASTERROR","features":[80]},{"name":"MIDIERR_NODEVICE","features":[80]},{"name":"MIDIERR_NOMAP","features":[80]},{"name":"MIDIERR_NOTREADY","features":[80]},{"name":"MIDIERR_STILLPLAYING","features":[80]},{"name":"MIDIERR_UNPREPARED","features":[80]},{"name":"MIDIEVENT","features":[80]},{"name":"MIDIHDR","features":[80]},{"name":"MIDIINCAPS2A","features":[80]},{"name":"MIDIINCAPS2W","features":[80]},{"name":"MIDIINCAPSA","features":[80]},{"name":"MIDIINCAPSW","features":[80]},{"name":"MIDIOUTCAPS2A","features":[80]},{"name":"MIDIOUTCAPS2W","features":[80]},{"name":"MIDIOUTCAPSA","features":[80]},{"name":"MIDIOUTCAPSW","features":[80]},{"name":"MIDIPATCHSIZE","features":[80]},{"name":"MIDIPROPTEMPO","features":[80]},{"name":"MIDIPROPTIMEDIV","features":[80]},{"name":"MIDIPROP_GET","features":[80]},{"name":"MIDIPROP_SET","features":[80]},{"name":"MIDIPROP_TEMPO","features":[80]},{"name":"MIDIPROP_TIMEDIV","features":[80]},{"name":"MIDISTRMBUFFVER","features":[80]},{"name":"MIDISTRM_ERROR","features":[80]},{"name":"MIDI_CACHE_ALL","features":[80]},{"name":"MIDI_CACHE_BESTFIT","features":[80]},{"name":"MIDI_CACHE_QUERY","features":[80]},{"name":"MIDI_IO_STATUS","features":[80]},{"name":"MIDI_UNCACHE","features":[80]},{"name":"MIDI_WAVE_OPEN_TYPE","features":[80]},{"name":"MIXERCAPS2A","features":[80]},{"name":"MIXERCAPS2W","features":[80]},{"name":"MIXERCAPSA","features":[80]},{"name":"MIXERCAPSW","features":[80]},{"name":"MIXERCONTROLA","features":[80]},{"name":"MIXERCONTROLDETAILS","features":[1,80]},{"name":"MIXERCONTROLDETAILS_BOOLEAN","features":[80]},{"name":"MIXERCONTROLDETAILS_LISTTEXTA","features":[80]},{"name":"MIXERCONTROLDETAILS_LISTTEXTW","features":[80]},{"name":"MIXERCONTROLDETAILS_SIGNED","features":[80]},{"name":"MIXERCONTROLDETAILS_UNSIGNED","features":[80]},{"name":"MIXERCONTROLW","features":[80]},{"name":"MIXERCONTROL_CONTROLF_DISABLED","features":[80]},{"name":"MIXERCONTROL_CONTROLF_MULTIPLE","features":[80]},{"name":"MIXERCONTROL_CONTROLF_UNIFORM","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS_BOOST","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEAN","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEANMETER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_BUTTON","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_CUSTOM","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_DECIBELS","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_EQUALIZER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_FADER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_LOUDNESS","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_MICROTIME","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_MILLITIME","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_MIXER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_MONO","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_MUTE","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_MUX","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_ONOFF","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_PAN","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_PEAKMETER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_PERCENT","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_QSOUNDPAN","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNED","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNEDMETER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_SINGLESELECT","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_SLIDER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_STEREOENH","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_TREBLE","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNED","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER","features":[80]},{"name":"MIXERCONTROL_CONTROLTYPE_VOLUME","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_CUSTOM","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_FADER","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_LIST","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_MASK","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_METER","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_NUMBER","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_SLIDER","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_SWITCH","features":[80]},{"name":"MIXERCONTROL_CT_CLASS_TIME","features":[80]},{"name":"MIXERCONTROL_CT_SC_LIST_MULTIPLE","features":[80]},{"name":"MIXERCONTROL_CT_SC_LIST_SINGLE","features":[80]},{"name":"MIXERCONTROL_CT_SC_METER_POLLED","features":[80]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BOOLEAN","features":[80]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BUTTON","features":[80]},{"name":"MIXERCONTROL_CT_SC_TIME_MICROSECS","features":[80]},{"name":"MIXERCONTROL_CT_SC_TIME_MILLISECS","features":[80]},{"name":"MIXERCONTROL_CT_SUBCLASS_MASK","features":[80]},{"name":"MIXERCONTROL_CT_UNITS_BOOLEAN","features":[80]},{"name":"MIXERCONTROL_CT_UNITS_CUSTOM","features":[80]},{"name":"MIXERCONTROL_CT_UNITS_DECIBELS","features":[80]},{"name":"MIXERCONTROL_CT_UNITS_MASK","features":[80]},{"name":"MIXERCONTROL_CT_UNITS_PERCENT","features":[80]},{"name":"MIXERCONTROL_CT_UNITS_SIGNED","features":[80]},{"name":"MIXERCONTROL_CT_UNITS_UNSIGNED","features":[80]},{"name":"MIXERLINEA","features":[80]},{"name":"MIXERLINECONTROLSA","features":[80]},{"name":"MIXERLINECONTROLSW","features":[80]},{"name":"MIXERLINEW","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_DIGITAL","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_FIRST","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_HEADPHONES","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LAST","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LINE","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_MONITOR","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_SPEAKERS","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_TELEPHONE","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_UNDEFINED","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_VOICEIN","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_DST_WAVEIN","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_ANALOG","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_DIGITAL","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_FIRST","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LAST","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LINE","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED","features":[80]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT","features":[80]},{"name":"MIXERLINE_LINEF_ACTIVE","features":[80]},{"name":"MIXERLINE_LINEF_DISCONNECTED","features":[80]},{"name":"MIXERLINE_LINEF_SOURCE","features":[80]},{"name":"MIXERLINE_TARGETTYPE_AUX","features":[80]},{"name":"MIXERLINE_TARGETTYPE_MIDIIN","features":[80]},{"name":"MIXERLINE_TARGETTYPE_MIDIOUT","features":[80]},{"name":"MIXERLINE_TARGETTYPE_UNDEFINED","features":[80]},{"name":"MIXERLINE_TARGETTYPE_WAVEIN","features":[80]},{"name":"MIXERLINE_TARGETTYPE_WAVEOUT","features":[80]},{"name":"MIXERR_INVALCONTROL","features":[80]},{"name":"MIXERR_INVALLINE","features":[80]},{"name":"MIXERR_INVALVALUE","features":[80]},{"name":"MIXERR_LASTERROR","features":[80]},{"name":"MIXER_GETCONTROLDETAILSF_LISTTEXT","features":[80]},{"name":"MIXER_GETCONTROLDETAILSF_QUERYMASK","features":[80]},{"name":"MIXER_GETCONTROLDETAILSF_VALUE","features":[80]},{"name":"MIXER_GETLINECONTROLSF_ALL","features":[80]},{"name":"MIXER_GETLINECONTROLSF_ONEBYID","features":[80]},{"name":"MIXER_GETLINECONTROLSF_ONEBYTYPE","features":[80]},{"name":"MIXER_GETLINECONTROLSF_QUERYMASK","features":[80]},{"name":"MIXER_GETLINEINFOF_COMPONENTTYPE","features":[80]},{"name":"MIXER_GETLINEINFOF_DESTINATION","features":[80]},{"name":"MIXER_GETLINEINFOF_LINEID","features":[80]},{"name":"MIXER_GETLINEINFOF_QUERYMASK","features":[80]},{"name":"MIXER_GETLINEINFOF_SOURCE","features":[80]},{"name":"MIXER_GETLINEINFOF_TARGETTYPE","features":[80]},{"name":"MIXER_LONG_NAME_CHARS","features":[80]},{"name":"MIXER_OBJECTF_AUX","features":[80]},{"name":"MIXER_OBJECTF_HANDLE","features":[80]},{"name":"MIXER_OBJECTF_MIDIIN","features":[80]},{"name":"MIXER_OBJECTF_MIDIOUT","features":[80]},{"name":"MIXER_OBJECTF_MIXER","features":[80]},{"name":"MIXER_OBJECTF_WAVEIN","features":[80]},{"name":"MIXER_OBJECTF_WAVEOUT","features":[80]},{"name":"MIXER_SETCONTROLDETAILSF_CUSTOM","features":[80]},{"name":"MIXER_SETCONTROLDETAILSF_QUERYMASK","features":[80]},{"name":"MIXER_SETCONTROLDETAILSF_VALUE","features":[80]},{"name":"MIXER_SHORT_NAME_CHARS","features":[80]},{"name":"MMDeviceEnumerator","features":[80]},{"name":"MM_ACM_FILTERCHOOSE","features":[80]},{"name":"MM_ACM_FORMATCHOOSE","features":[80]},{"name":"MOD_FMSYNTH","features":[80]},{"name":"MOD_MAPPER","features":[80]},{"name":"MOD_MIDIPORT","features":[80]},{"name":"MOD_SQSYNTH","features":[80]},{"name":"MOD_SWSYNTH","features":[80]},{"name":"MOD_SYNTH","features":[80]},{"name":"MOD_WAVETABLE","features":[80]},{"name":"Microphone","features":[80]},{"name":"Muted","features":[80]},{"name":"Out","features":[80]},{"name":"PAudioStateMonitorCallback","features":[80]},{"name":"PCMWAVEFORMAT","features":[80]},{"name":"PKEY_AudioEndpointLogo_IconEffects","features":[80,60]},{"name":"PKEY_AudioEndpointLogo_IconPath","features":[80,60]},{"name":"PKEY_AudioEndpointSettings_LaunchContract","features":[80,60]},{"name":"PKEY_AudioEndpointSettings_MenuText","features":[80,60]},{"name":"PKEY_AudioEndpoint_Association","features":[80,60]},{"name":"PKEY_AudioEndpoint_ControlPanelPageProvider","features":[80,60]},{"name":"PKEY_AudioEndpoint_Default_VolumeInDb","features":[80,60]},{"name":"PKEY_AudioEndpoint_Disable_SysFx","features":[80,60]},{"name":"PKEY_AudioEndpoint_FormFactor","features":[80,60]},{"name":"PKEY_AudioEndpoint_FullRangeSpeakers","features":[80,60]},{"name":"PKEY_AudioEndpoint_GUID","features":[80,60]},{"name":"PKEY_AudioEndpoint_JackSubType","features":[80,60]},{"name":"PKEY_AudioEndpoint_PhysicalSpeakers","features":[80,60]},{"name":"PKEY_AudioEndpoint_Supports_EventDriven_Mode","features":[80,60]},{"name":"PKEY_AudioEngine_DeviceFormat","features":[80,60]},{"name":"PKEY_AudioEngine_OEMFormat","features":[80,60]},{"name":"PROCESS_LOOPBACK_MODE","features":[80]},{"name":"PROCESS_LOOPBACK_MODE_EXCLUDE_TARGET_PROCESS_TREE","features":[80]},{"name":"PROCESS_LOOPBACK_MODE_INCLUDE_TARGET_PROCESS_TREE","features":[80]},{"name":"PartType","features":[80]},{"name":"PlaySoundA","features":[1,80]},{"name":"PlaySoundW","features":[1,80]},{"name":"RemoteNetworkDevice","features":[80]},{"name":"SND_ALIAS","features":[80]},{"name":"SND_ALIAS_ID","features":[80]},{"name":"SND_ALIAS_START","features":[80]},{"name":"SND_APPLICATION","features":[80]},{"name":"SND_ASYNC","features":[80]},{"name":"SND_FILENAME","features":[80]},{"name":"SND_FLAGS","features":[80]},{"name":"SND_LOOP","features":[80]},{"name":"SND_MEMORY","features":[80]},{"name":"SND_NODEFAULT","features":[80]},{"name":"SND_NOSTOP","features":[80]},{"name":"SND_NOWAIT","features":[80]},{"name":"SND_PURGE","features":[80]},{"name":"SND_RESOURCE","features":[80]},{"name":"SND_RING","features":[80]},{"name":"SND_SENTRY","features":[80]},{"name":"SND_SYNC","features":[80]},{"name":"SND_SYSTEM","features":[80]},{"name":"SPATIAL_AUDIO_POSITION","features":[80]},{"name":"SPATIAL_AUDIO_STANDARD_COMMANDS_START","features":[80]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS","features":[80]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_NONE","features":[80]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_OFFLOAD","features":[80]},{"name":"SPDIF","features":[80]},{"name":"SPTLAUDCLNT_E_DESTROYED","features":[80]},{"name":"SPTLAUDCLNT_E_ERRORS_IN_OBJECT_CALLS","features":[80]},{"name":"SPTLAUDCLNT_E_INTERNAL","features":[80]},{"name":"SPTLAUDCLNT_E_INVALID_LICENSE","features":[80]},{"name":"SPTLAUDCLNT_E_METADATA_FORMAT_NOT_SUPPORTED","features":[80]},{"name":"SPTLAUDCLNT_E_NO_MORE_OBJECTS","features":[80]},{"name":"SPTLAUDCLNT_E_OBJECT_ALREADY_ACTIVE","features":[80]},{"name":"SPTLAUDCLNT_E_OUT_OF_ORDER","features":[80]},{"name":"SPTLAUDCLNT_E_PROPERTY_NOT_SUPPORTED","features":[80]},{"name":"SPTLAUDCLNT_E_RESOURCES_INVALIDATED","features":[80]},{"name":"SPTLAUDCLNT_E_STATIC_OBJECT_NOT_AVAILABLE","features":[80]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_AVAILABLE","features":[80]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_STOPPED","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_ATTACH_FAILED_INTERNAL_BUFFER","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_ALREADY_ATTACHED","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_NOT_ATTACHED","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_STILL_ATTACHED","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_ALREADY_WRITTEN","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_NOT_FOUND","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_DETACH_FAILED_INTERNAL_BUFFER","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_FORMAT_MISMATCH","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_FRAMECOUNT_OUT_OF_RANGE","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_FRAMEOFFSET_OUT_OF_RANGE","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_INVALID_ARGS","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_ALREADY_OPEN","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_LOCKED_FOR_WRITING","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_COPY_OVERFLOW","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_MUST_HAVE_COMMANDS","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_MEMORY_BOUNDS","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_METADATA_FORMAT_NOT_FOUND","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_NO_BUFFER_ATTACHED","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMOFFSET_WRITTEN","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_FOUND","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_OPEN","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_WRITTEN","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_COMMANDS","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_ITEMS","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_OBJECT_NOT_INITIALIZED","features":[80]},{"name":"SPTLAUD_MD_CLNT_E_VALUE_BUFFER_INCORRECT_SIZE","features":[80]},{"name":"SpatialAudioClientActivationParams","features":[80]},{"name":"SpatialAudioHrtfActivationParams","features":[1,80]},{"name":"SpatialAudioHrtfActivationParams2","features":[1,80]},{"name":"SpatialAudioHrtfDirectivity","features":[80]},{"name":"SpatialAudioHrtfDirectivityCardioid","features":[80]},{"name":"SpatialAudioHrtfDirectivityCone","features":[80]},{"name":"SpatialAudioHrtfDirectivityType","features":[80]},{"name":"SpatialAudioHrtfDirectivityUnion","features":[80]},{"name":"SpatialAudioHrtfDirectivity_Cardioid","features":[80]},{"name":"SpatialAudioHrtfDirectivity_Cone","features":[80]},{"name":"SpatialAudioHrtfDirectivity_OmniDirectional","features":[80]},{"name":"SpatialAudioHrtfDistanceDecay","features":[80]},{"name":"SpatialAudioHrtfDistanceDecayType","features":[80]},{"name":"SpatialAudioHrtfDistanceDecay_CustomDecay","features":[80]},{"name":"SpatialAudioHrtfDistanceDecay_NaturalDecay","features":[80]},{"name":"SpatialAudioHrtfEnvironmentType","features":[80]},{"name":"SpatialAudioHrtfEnvironment_Average","features":[80]},{"name":"SpatialAudioHrtfEnvironment_Large","features":[80]},{"name":"SpatialAudioHrtfEnvironment_Medium","features":[80]},{"name":"SpatialAudioHrtfEnvironment_Outdoors","features":[80]},{"name":"SpatialAudioHrtfEnvironment_Small","features":[80]},{"name":"SpatialAudioMetadataCopyMode","features":[80]},{"name":"SpatialAudioMetadataCopy_Append","features":[80]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithFirst","features":[80]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithLast","features":[80]},{"name":"SpatialAudioMetadataCopy_Overwrite","features":[80]},{"name":"SpatialAudioMetadataItemsInfo","features":[80]},{"name":"SpatialAudioMetadataWriterOverflowMode","features":[80]},{"name":"SpatialAudioMetadataWriterOverflow_Fail","features":[80]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithLast","features":[80]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithNew","features":[80]},{"name":"SpatialAudioObjectRenderStreamActivationParams","features":[1,80]},{"name":"SpatialAudioObjectRenderStreamActivationParams2","features":[1,80]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams","features":[1,80,63,42]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams2","features":[1,80,63,42]},{"name":"Speakers","features":[80]},{"name":"Subunit","features":[80]},{"name":"UnknownDigitalPassthrough","features":[80]},{"name":"UnknownFormFactor","features":[80]},{"name":"VIRTUAL_AUDIO_DEVICE_PROCESS_LOOPBACK","features":[80]},{"name":"VOLUMEWAVEFILTER","features":[80]},{"name":"WAVECAPS_LRVOLUME","features":[80]},{"name":"WAVECAPS_PITCH","features":[80]},{"name":"WAVECAPS_PLAYBACKRATE","features":[80]},{"name":"WAVECAPS_SAMPLEACCURATE","features":[80]},{"name":"WAVECAPS_SYNC","features":[80]},{"name":"WAVECAPS_VOLUME","features":[80]},{"name":"WAVEFILTER","features":[80]},{"name":"WAVEFORMAT","features":[80]},{"name":"WAVEFORMATEX","features":[80]},{"name":"WAVEFORMATEXTENSIBLE","features":[80]},{"name":"WAVEHDR","features":[80]},{"name":"WAVEINCAPS2A","features":[80]},{"name":"WAVEINCAPS2W","features":[80]},{"name":"WAVEINCAPSA","features":[80]},{"name":"WAVEINCAPSW","features":[80]},{"name":"WAVEIN_MAPPER_STATUS_DEVICE","features":[80]},{"name":"WAVEIN_MAPPER_STATUS_FORMAT","features":[80]},{"name":"WAVEIN_MAPPER_STATUS_MAPPED","features":[80]},{"name":"WAVEOUTCAPS2A","features":[80]},{"name":"WAVEOUTCAPS2W","features":[80]},{"name":"WAVEOUTCAPSA","features":[80]},{"name":"WAVEOUTCAPSW","features":[80]},{"name":"WAVEOUT_MAPPER_STATUS_DEVICE","features":[80]},{"name":"WAVEOUT_MAPPER_STATUS_FORMAT","features":[80]},{"name":"WAVEOUT_MAPPER_STATUS_MAPPED","features":[80]},{"name":"WAVERR_BADFORMAT","features":[80]},{"name":"WAVERR_LASTERROR","features":[80]},{"name":"WAVERR_STILLPLAYING","features":[80]},{"name":"WAVERR_SYNC","features":[80]},{"name":"WAVERR_UNPREPARED","features":[80]},{"name":"WAVE_ALLOWSYNC","features":[80]},{"name":"WAVE_FORMAT_1M08","features":[80]},{"name":"WAVE_FORMAT_1M16","features":[80]},{"name":"WAVE_FORMAT_1S08","features":[80]},{"name":"WAVE_FORMAT_1S16","features":[80]},{"name":"WAVE_FORMAT_2M08","features":[80]},{"name":"WAVE_FORMAT_2M16","features":[80]},{"name":"WAVE_FORMAT_2S08","features":[80]},{"name":"WAVE_FORMAT_2S16","features":[80]},{"name":"WAVE_FORMAT_44M08","features":[80]},{"name":"WAVE_FORMAT_44M16","features":[80]},{"name":"WAVE_FORMAT_44S08","features":[80]},{"name":"WAVE_FORMAT_44S16","features":[80]},{"name":"WAVE_FORMAT_48M08","features":[80]},{"name":"WAVE_FORMAT_48M16","features":[80]},{"name":"WAVE_FORMAT_48S08","features":[80]},{"name":"WAVE_FORMAT_48S16","features":[80]},{"name":"WAVE_FORMAT_4M08","features":[80]},{"name":"WAVE_FORMAT_4M16","features":[80]},{"name":"WAVE_FORMAT_4S08","features":[80]},{"name":"WAVE_FORMAT_4S16","features":[80]},{"name":"WAVE_FORMAT_96M08","features":[80]},{"name":"WAVE_FORMAT_96M16","features":[80]},{"name":"WAVE_FORMAT_96S08","features":[80]},{"name":"WAVE_FORMAT_96S16","features":[80]},{"name":"WAVE_FORMAT_DIRECT","features":[80]},{"name":"WAVE_FORMAT_DIRECT_QUERY","features":[80]},{"name":"WAVE_FORMAT_PCM","features":[80]},{"name":"WAVE_FORMAT_QUERY","features":[80]},{"name":"WAVE_INVALIDFORMAT","features":[80]},{"name":"WAVE_MAPPED","features":[80]},{"name":"WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE","features":[80]},{"name":"WAVE_MAPPER","features":[80]},{"name":"WHDR_BEGINLOOP","features":[80]},{"name":"WHDR_DONE","features":[80]},{"name":"WHDR_ENDLOOP","features":[80]},{"name":"WHDR_INQUEUE","features":[80]},{"name":"WHDR_PREPARED","features":[80]},{"name":"WIDM_MAPPER_STATUS","features":[80]},{"name":"WODM_MAPPER_STATUS","features":[80]},{"name":"_AUDCLNT_BUFFERFLAGS","features":[80]},{"name":"acmDriverAddA","features":[1,80]},{"name":"acmDriverAddW","features":[1,80]},{"name":"acmDriverClose","features":[80]},{"name":"acmDriverDetailsA","features":[80,50]},{"name":"acmDriverDetailsW","features":[80,50]},{"name":"acmDriverEnum","features":[1,80]},{"name":"acmDriverID","features":[80]},{"name":"acmDriverMessage","features":[1,80]},{"name":"acmDriverOpen","features":[80]},{"name":"acmDriverPriority","features":[80]},{"name":"acmDriverRemove","features":[80]},{"name":"acmFilterChooseA","features":[1,80]},{"name":"acmFilterChooseW","features":[1,80]},{"name":"acmFilterDetailsA","features":[80]},{"name":"acmFilterDetailsW","features":[80]},{"name":"acmFilterEnumA","features":[1,80]},{"name":"acmFilterEnumW","features":[1,80]},{"name":"acmFilterTagDetailsA","features":[80]},{"name":"acmFilterTagDetailsW","features":[80]},{"name":"acmFilterTagEnumA","features":[1,80]},{"name":"acmFilterTagEnumW","features":[1,80]},{"name":"acmFormatChooseA","features":[1,80]},{"name":"acmFormatChooseW","features":[1,80]},{"name":"acmFormatDetailsA","features":[80]},{"name":"acmFormatDetailsW","features":[80]},{"name":"acmFormatEnumA","features":[1,80]},{"name":"acmFormatEnumW","features":[1,80]},{"name":"acmFormatSuggest","features":[80]},{"name":"acmFormatTagDetailsA","features":[80]},{"name":"acmFormatTagDetailsW","features":[80]},{"name":"acmFormatTagEnumA","features":[1,80]},{"name":"acmFormatTagEnumW","features":[1,80]},{"name":"acmGetVersion","features":[80]},{"name":"acmMetrics","features":[80]},{"name":"acmStreamClose","features":[80]},{"name":"acmStreamConvert","features":[80]},{"name":"acmStreamMessage","features":[1,80]},{"name":"acmStreamOpen","features":[80]},{"name":"acmStreamPrepareHeader","features":[80]},{"name":"acmStreamReset","features":[80]},{"name":"acmStreamSize","features":[80]},{"name":"acmStreamUnprepareHeader","features":[80]},{"name":"auxGetDevCapsA","features":[80]},{"name":"auxGetDevCapsW","features":[80]},{"name":"auxGetNumDevs","features":[80]},{"name":"auxGetVolume","features":[80]},{"name":"auxOutMessage","features":[80]},{"name":"auxSetVolume","features":[80]},{"name":"eAll","features":[80]},{"name":"eCapture","features":[80]},{"name":"eCommunications","features":[80]},{"name":"eConsole","features":[80]},{"name":"eMultimedia","features":[80]},{"name":"eRender","features":[80]},{"name":"midiConnect","features":[80]},{"name":"midiDisconnect","features":[80]},{"name":"midiInAddBuffer","features":[80]},{"name":"midiInClose","features":[80]},{"name":"midiInGetDevCapsA","features":[80]},{"name":"midiInGetDevCapsW","features":[80]},{"name":"midiInGetErrorTextA","features":[80]},{"name":"midiInGetErrorTextW","features":[80]},{"name":"midiInGetID","features":[80]},{"name":"midiInGetNumDevs","features":[80]},{"name":"midiInMessage","features":[80]},{"name":"midiInOpen","features":[80]},{"name":"midiInPrepareHeader","features":[80]},{"name":"midiInReset","features":[80]},{"name":"midiInStart","features":[80]},{"name":"midiInStop","features":[80]},{"name":"midiInUnprepareHeader","features":[80]},{"name":"midiOutCacheDrumPatches","features":[80]},{"name":"midiOutCachePatches","features":[80]},{"name":"midiOutClose","features":[80]},{"name":"midiOutGetDevCapsA","features":[80]},{"name":"midiOutGetDevCapsW","features":[80]},{"name":"midiOutGetErrorTextA","features":[80]},{"name":"midiOutGetErrorTextW","features":[80]},{"name":"midiOutGetID","features":[80]},{"name":"midiOutGetNumDevs","features":[80]},{"name":"midiOutGetVolume","features":[80]},{"name":"midiOutLongMsg","features":[80]},{"name":"midiOutMessage","features":[80]},{"name":"midiOutOpen","features":[80]},{"name":"midiOutPrepareHeader","features":[80]},{"name":"midiOutReset","features":[80]},{"name":"midiOutSetVolume","features":[80]},{"name":"midiOutShortMsg","features":[80]},{"name":"midiOutUnprepareHeader","features":[80]},{"name":"midiStreamClose","features":[80]},{"name":"midiStreamOpen","features":[80]},{"name":"midiStreamOut","features":[80]},{"name":"midiStreamPause","features":[80]},{"name":"midiStreamPosition","features":[80]},{"name":"midiStreamProperty","features":[80]},{"name":"midiStreamRestart","features":[80]},{"name":"midiStreamStop","features":[80]},{"name":"mixerClose","features":[80]},{"name":"mixerGetControlDetailsA","features":[1,80]},{"name":"mixerGetControlDetailsW","features":[1,80]},{"name":"mixerGetDevCapsA","features":[80]},{"name":"mixerGetDevCapsW","features":[80]},{"name":"mixerGetID","features":[80]},{"name":"mixerGetLineControlsA","features":[80]},{"name":"mixerGetLineControlsW","features":[80]},{"name":"mixerGetLineInfoA","features":[80]},{"name":"mixerGetLineInfoW","features":[80]},{"name":"mixerGetNumDevs","features":[80]},{"name":"mixerMessage","features":[80]},{"name":"mixerOpen","features":[80]},{"name":"mixerSetControlDetails","features":[1,80]},{"name":"sndPlaySoundA","features":[1,80]},{"name":"sndPlaySoundW","features":[1,80]},{"name":"tACMFORMATDETAILSW","features":[80]},{"name":"waveInAddBuffer","features":[80]},{"name":"waveInClose","features":[80]},{"name":"waveInGetDevCapsA","features":[80]},{"name":"waveInGetDevCapsW","features":[80]},{"name":"waveInGetErrorTextA","features":[80]},{"name":"waveInGetErrorTextW","features":[80]},{"name":"waveInGetID","features":[80]},{"name":"waveInGetNumDevs","features":[80]},{"name":"waveInGetPosition","features":[80]},{"name":"waveInMessage","features":[80]},{"name":"waveInOpen","features":[80]},{"name":"waveInPrepareHeader","features":[80]},{"name":"waveInReset","features":[80]},{"name":"waveInStart","features":[80]},{"name":"waveInStop","features":[80]},{"name":"waveInUnprepareHeader","features":[80]},{"name":"waveOutBreakLoop","features":[80]},{"name":"waveOutClose","features":[80]},{"name":"waveOutGetDevCapsA","features":[80]},{"name":"waveOutGetDevCapsW","features":[80]},{"name":"waveOutGetErrorTextA","features":[80]},{"name":"waveOutGetErrorTextW","features":[80]},{"name":"waveOutGetID","features":[80]},{"name":"waveOutGetNumDevs","features":[80]},{"name":"waveOutGetPitch","features":[80]},{"name":"waveOutGetPlaybackRate","features":[80]},{"name":"waveOutGetPosition","features":[80]},{"name":"waveOutGetVolume","features":[80]},{"name":"waveOutMessage","features":[80]},{"name":"waveOutOpen","features":[80]},{"name":"waveOutPause","features":[80]},{"name":"waveOutPrepareHeader","features":[80]},{"name":"waveOutReset","features":[80]},{"name":"waveOutRestart","features":[80]},{"name":"waveOutSetPitch","features":[80]},{"name":"waveOutSetPlaybackRate","features":[80]},{"name":"waveOutSetVolume","features":[80]},{"name":"waveOutUnprepareHeader","features":[80]},{"name":"waveOutWrite","features":[80]}],"433":[{"name":"DMOCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[81]},{"name":"DMOCATEGORY_AGC","features":[81]},{"name":"DMOCATEGORY_AUDIO_CAPTURE_EFFECT","features":[81]},{"name":"DMOCATEGORY_AUDIO_DECODER","features":[81]},{"name":"DMOCATEGORY_AUDIO_EFFECT","features":[81]},{"name":"DMOCATEGORY_AUDIO_ENCODER","features":[81]},{"name":"DMOCATEGORY_AUDIO_NOISE_SUPPRESS","features":[81]},{"name":"DMOCATEGORY_VIDEO_DECODER","features":[81]},{"name":"DMOCATEGORY_VIDEO_EFFECT","features":[81]},{"name":"DMOCATEGORY_VIDEO_ENCODER","features":[81]},{"name":"DMOEnum","features":[81]},{"name":"DMOGetName","features":[81]},{"name":"DMOGetTypes","features":[81]},{"name":"DMORegister","features":[81]},{"name":"DMOUnregister","features":[81]},{"name":"DMO_ENUMF_INCLUDE_KEYED","features":[81]},{"name":"DMO_ENUM_FLAGS","features":[81]},{"name":"DMO_E_INVALIDSTREAMINDEX","features":[81]},{"name":"DMO_E_INVALIDTYPE","features":[81]},{"name":"DMO_E_NOTACCEPTING","features":[81]},{"name":"DMO_E_NO_MORE_ITEMS","features":[81]},{"name":"DMO_E_TYPE_NOT_ACCEPTED","features":[81]},{"name":"DMO_E_TYPE_NOT_SET","features":[81]},{"name":"DMO_INPLACE_NORMAL","features":[81]},{"name":"DMO_INPLACE_ZERO","features":[81]},{"name":"DMO_INPUT_DATA_BUFFERF_DISCONTINUITY","features":[81]},{"name":"DMO_INPUT_DATA_BUFFERF_SYNCPOINT","features":[81]},{"name":"DMO_INPUT_DATA_BUFFERF_TIME","features":[81]},{"name":"DMO_INPUT_DATA_BUFFERF_TIMELENGTH","features":[81]},{"name":"DMO_INPUT_STATUSF_ACCEPT_DATA","features":[81]},{"name":"DMO_INPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[81]},{"name":"DMO_INPUT_STREAMF_HOLDS_BUFFERS","features":[81]},{"name":"DMO_INPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[81]},{"name":"DMO_INPUT_STREAMF_WHOLE_SAMPLES","features":[81]},{"name":"DMO_MEDIA_TYPE","features":[1,81]},{"name":"DMO_OUTPUT_DATA_BUFFER","features":[81]},{"name":"DMO_OUTPUT_DATA_BUFFERF_DISCONTINUITY","features":[81]},{"name":"DMO_OUTPUT_DATA_BUFFERF_INCOMPLETE","features":[81]},{"name":"DMO_OUTPUT_DATA_BUFFERF_SYNCPOINT","features":[81]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIME","features":[81]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIMELENGTH","features":[81]},{"name":"DMO_OUTPUT_STREAMF_DISCARDABLE","features":[81]},{"name":"DMO_OUTPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[81]},{"name":"DMO_OUTPUT_STREAMF_OPTIONAL","features":[81]},{"name":"DMO_OUTPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[81]},{"name":"DMO_OUTPUT_STREAMF_WHOLE_SAMPLES","features":[81]},{"name":"DMO_PARTIAL_MEDIATYPE","features":[81]},{"name":"DMO_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER","features":[81]},{"name":"DMO_QUALITY_STATUS_ENABLED","features":[81]},{"name":"DMO_REGISTERF_IS_KEYED","features":[81]},{"name":"DMO_REGISTER_FLAGS","features":[81]},{"name":"DMO_SET_TYPEF_CLEAR","features":[81]},{"name":"DMO_SET_TYPEF_TEST_ONLY","features":[81]},{"name":"DMO_VOSF_NEEDS_PREVIOUS_SAMPLE","features":[81]},{"name":"IDMOQualityControl","features":[81]},{"name":"IDMOVideoOutputOptimizations","features":[81]},{"name":"IEnumDMO","features":[81]},{"name":"IMediaBuffer","features":[81]},{"name":"IMediaObject","features":[81]},{"name":"IMediaObjectInPlace","features":[81]},{"name":"MoCopyMediaType","features":[1,81]},{"name":"MoCreateMediaType","features":[1,81]},{"name":"MoDeleteMediaType","features":[1,81]},{"name":"MoDuplicateMediaType","features":[1,81]},{"name":"MoFreeMediaType","features":[1,81]},{"name":"MoInitMediaType","features":[1,81]},{"name":"_DMO_INPLACE_PROCESS_FLAGS","features":[81]},{"name":"_DMO_INPUT_DATA_BUFFER_FLAGS","features":[81]},{"name":"_DMO_INPUT_STATUS_FLAGS","features":[81]},{"name":"_DMO_INPUT_STREAM_INFO_FLAGS","features":[81]},{"name":"_DMO_OUTPUT_DATA_BUFFER_FLAGS","features":[81]},{"name":"_DMO_OUTPUT_STREAM_INFO_FLAGS","features":[81]},{"name":"_DMO_PROCESS_OUTPUT_FLAGS","features":[81]},{"name":"_DMO_QUALITY_STATUS_FLAGS","features":[81]},{"name":"_DMO_SET_TYPE_FLAGS","features":[81]},{"name":"_DMO_VIDEO_OUTPUT_STREAM_FLAGS","features":[81]}],"434":[{"name":"AEC_MODE_FULL_DUPLEX","features":[82]},{"name":"AEC_MODE_HALF_DUPLEX","features":[82]},{"name":"AEC_MODE_PASS_THROUGH","features":[82]},{"name":"AEC_STATUS_FD_CURRENTLY_CONVERGED","features":[82]},{"name":"AEC_STATUS_FD_HISTORY_CONTINUOUSLY_CONVERGED","features":[82]},{"name":"AEC_STATUS_FD_HISTORY_PREVIOUSLY_DIVERGED","features":[82]},{"name":"AEC_STATUS_FD_HISTORY_UNINITIALIZED","features":[82]},{"name":"ALLOCATOR_PROPERTIES_EX","features":[82]},{"name":"APO_CLASS_UUID","features":[82]},{"name":"AUDIOENDPOINT_CLASS_UUID","features":[82]},{"name":"AUDIOMODULE_MAX_DATA_SIZE","features":[82]},{"name":"AUDIOMODULE_MAX_NAME_CCH_SIZE","features":[82]},{"name":"AUDIOPOSTURE_ORIENTATION","features":[82]},{"name":"AUDIOPOSTURE_ORIENTATION_NOTROTATED","features":[82]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED180DEGREESCOUNTERCLOCKWISE","features":[82]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED270DEGREESCOUNTERCLOCKWISE","features":[82]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED90DEGREESCOUNTERCLOCKWISE","features":[82]},{"name":"AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[1,82]},{"name":"AUDIO_CURVE_TYPE","features":[82]},{"name":"AUDIO_CURVE_TYPE_NONE","features":[82]},{"name":"AUDIO_CURVE_TYPE_WINDOWS_FADE","features":[82]},{"name":"AUDIO_EFFECT_TYPE_ACOUSTIC_ECHO_CANCELLATION","features":[82]},{"name":"AUDIO_EFFECT_TYPE_AUTOMATIC_GAIN_CONTROL","features":[82]},{"name":"AUDIO_EFFECT_TYPE_BASS_BOOST","features":[82]},{"name":"AUDIO_EFFECT_TYPE_BASS_MANAGEMENT","features":[82]},{"name":"AUDIO_EFFECT_TYPE_BEAMFORMING","features":[82]},{"name":"AUDIO_EFFECT_TYPE_CONSTANT_TONE_REMOVAL","features":[82]},{"name":"AUDIO_EFFECT_TYPE_DEEP_NOISE_SUPPRESSION","features":[82]},{"name":"AUDIO_EFFECT_TYPE_DYNAMIC_RANGE_COMPRESSION","features":[82]},{"name":"AUDIO_EFFECT_TYPE_ENVIRONMENTAL_EFFECTS","features":[82]},{"name":"AUDIO_EFFECT_TYPE_EQUALIZER","features":[82]},{"name":"AUDIO_EFFECT_TYPE_FAR_FIELD_BEAMFORMING","features":[82]},{"name":"AUDIO_EFFECT_TYPE_LOUDNESS_EQUALIZER","features":[82]},{"name":"AUDIO_EFFECT_TYPE_NOISE_SUPPRESSION","features":[82]},{"name":"AUDIO_EFFECT_TYPE_ROOM_CORRECTION","features":[82]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_COMPENSATION","features":[82]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_FILL","features":[82]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_PROTECTION","features":[82]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_HEADPHONES","features":[82]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_SURROUND","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_COMMUNICATIONS","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_DEFAULT","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_FAR_FIELD_SPEECH","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MEDIA","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MOVIE","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_NOTIFICATION","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_RAW","features":[82]},{"name":"AUDIO_SIGNALPROCESSINGMODE_SPEECH","features":[82]},{"name":"AllocatorStrategy_DontCare","features":[82]},{"name":"AllocatorStrategy_MaximizeSpeed","features":[82]},{"name":"AllocatorStrategy_MinimizeFrameSize","features":[82]},{"name":"AllocatorStrategy_MinimizeNumberOfAllocators","features":[82]},{"name":"AllocatorStrategy_MinimizeNumberOfFrames","features":[82]},{"name":"BLUETOOTHLE_MIDI_SERVICE_UUID","features":[82]},{"name":"BLUETOOTH_MIDI_DATAIO_CHARACTERISTIC","features":[82]},{"name":"BUS_INTERFACE_REFERENCE_VERSION","features":[82]},{"name":"CAPTURE_MEMORY_ALLOCATION_FLAGS","features":[82]},{"name":"CASCADE_FORM","features":[82]},{"name":"CC_BYTE_PAIR","features":[82]},{"name":"CC_HW_FIELD","features":[82]},{"name":"CC_MAX_HW_DECODE_LINES","features":[82]},{"name":"CLSID_KsIBasicAudioInterfaceHandler","features":[82]},{"name":"CLSID_Proxy","features":[82]},{"name":"CONSTRICTOR_OPTION","features":[82]},{"name":"CONSTRICTOR_OPTION_DISABLE","features":[82]},{"name":"CONSTRICTOR_OPTION_MUTE","features":[82]},{"name":"DEVCAPS","features":[82]},{"name":"DEVPKEY_KsAudio_Controller_DeviceInterface_Path","features":[35,82]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints","features":[35,82]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints2","features":[35,82]},{"name":"DIRECT_FORM","features":[82]},{"name":"DS3DVECTOR","features":[82]},{"name":"DS3D_HRTF_VERSION_1","features":[82]},{"name":"EDeviceControlUseType","features":[82]},{"name":"EPcxConnectionType","features":[82]},{"name":"EPcxGenLocation","features":[82]},{"name":"EPcxGenLocation_enum_count","features":[82]},{"name":"EPcxGeoLocation","features":[82]},{"name":"EPcxGeoLocation_enum_count","features":[82]},{"name":"EPxcPortConnection","features":[82]},{"name":"EVENTSETID_CROSSBAR","features":[82]},{"name":"EVENTSETID_TUNER","features":[82]},{"name":"EVENTSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[82]},{"name":"EVENTSETID_VIDEODECODER","features":[82]},{"name":"FLOAT_COEFF","features":[82]},{"name":"FRAMING_CACHE_OPS","features":[82]},{"name":"FRAMING_PROP","features":[82]},{"name":"FULL_FILTER","features":[82]},{"name":"FramingProp_Ex","features":[82]},{"name":"FramingProp_None","features":[82]},{"name":"FramingProp_Old","features":[82]},{"name":"FramingProp_Uninitialized","features":[82]},{"name":"Framing_Cache_ReadLast","features":[82]},{"name":"Framing_Cache_ReadOrig","features":[82]},{"name":"Framing_Cache_Update","features":[82]},{"name":"Framing_Cache_Write","features":[82]},{"name":"GUID_NULL","features":[82]},{"name":"IKsAggregateControl","features":[82]},{"name":"IKsAllocator","features":[82]},{"name":"IKsAllocatorEx","features":[82]},{"name":"IKsClockPropertySet","features":[82]},{"name":"IKsControl","features":[82]},{"name":"IKsDataTypeCompletion","features":[82]},{"name":"IKsDataTypeHandler","features":[82]},{"name":"IKsFormatSupport","features":[82]},{"name":"IKsInterfaceHandler","features":[82]},{"name":"IKsJackContainerId","features":[82]},{"name":"IKsJackDescription","features":[82]},{"name":"IKsJackDescription2","features":[82]},{"name":"IKsJackDescription3","features":[82]},{"name":"IKsJackSinkInformation","features":[82]},{"name":"IKsNodeControl","features":[82]},{"name":"IKsNotifyEvent","features":[82]},{"name":"IKsObject","features":[82]},{"name":"IKsPin","features":[82]},{"name":"IKsPinEx","features":[82]},{"name":"IKsPinFactory","features":[82]},{"name":"IKsPinPipe","features":[82]},{"name":"IKsPropertySet","features":[82]},{"name":"IKsQualityForwarder","features":[82]},{"name":"IKsTopology","features":[82]},{"name":"IKsTopologyInfo","features":[82]},{"name":"INTERLEAVED_AUDIO_FORMAT_INFORMATION","features":[82]},{"name":"IOCTL_KS_DISABLE_EVENT","features":[82]},{"name":"IOCTL_KS_ENABLE_EVENT","features":[82]},{"name":"IOCTL_KS_HANDSHAKE","features":[82]},{"name":"IOCTL_KS_METHOD","features":[82]},{"name":"IOCTL_KS_PROPERTY","features":[82]},{"name":"IOCTL_KS_READ_STREAM","features":[82]},{"name":"IOCTL_KS_RESET_STATE","features":[82]},{"name":"IOCTL_KS_WRITE_STREAM","features":[82]},{"name":"JACKDESC2_DYNAMIC_FORMAT_CHANGE_CAPABILITY","features":[82]},{"name":"JACKDESC2_PRESENCE_DETECT_CAPABILITY","features":[82]},{"name":"KSAC3_ALTERNATE_AUDIO","features":[1,82]},{"name":"KSAC3_ALTERNATE_AUDIO_1","features":[82]},{"name":"KSAC3_ALTERNATE_AUDIO_2","features":[82]},{"name":"KSAC3_ALTERNATE_AUDIO_BOTH","features":[82]},{"name":"KSAC3_BIT_STREAM_MODE","features":[82]},{"name":"KSAC3_DIALOGUE_LEVEL","features":[82]},{"name":"KSAC3_DOWNMIX","features":[1,82]},{"name":"KSAC3_ERROR_CONCEALMENT","features":[1,82]},{"name":"KSAC3_ROOM_TYPE","features":[1,82]},{"name":"KSAC3_SERVICE_COMMENTARY","features":[82]},{"name":"KSAC3_SERVICE_DIALOG_ONLY","features":[82]},{"name":"KSAC3_SERVICE_EMERGENCY_FLASH","features":[82]},{"name":"KSAC3_SERVICE_HEARING_IMPAIRED","features":[82]},{"name":"KSAC3_SERVICE_MAIN_AUDIO","features":[82]},{"name":"KSAC3_SERVICE_NO_DIALOG","features":[82]},{"name":"KSAC3_SERVICE_VISUALLY_IMPAIRED","features":[82]},{"name":"KSAC3_SERVICE_VOICE_OVER","features":[82]},{"name":"KSALGORITHMINSTANCE_SYSTEM_ACOUSTIC_ECHO_CANCEL","features":[82]},{"name":"KSALGORITHMINSTANCE_SYSTEM_AGC","features":[82]},{"name":"KSALGORITHMINSTANCE_SYSTEM_MICROPHONE_ARRAY_PROCESSOR","features":[82]},{"name":"KSALGORITHMINSTANCE_SYSTEM_NOISE_SUPPRESS","features":[82]},{"name":"KSALLOCATORMODE","features":[82]},{"name":"KSALLOCATOR_FLAG_2D_BUFFER_REQUIRED","features":[82]},{"name":"KSALLOCATOR_FLAG_ALLOCATOR_EXISTS","features":[82]},{"name":"KSALLOCATOR_FLAG_ATTENTION_STEPPING","features":[82]},{"name":"KSALLOCATOR_FLAG_CAN_ALLOCATE","features":[82]},{"name":"KSALLOCATOR_FLAG_CYCLE","features":[82]},{"name":"KSALLOCATOR_FLAG_DEVICE_SPECIFIC","features":[82]},{"name":"KSALLOCATOR_FLAG_ENABLE_CACHED_MDL","features":[82]},{"name":"KSALLOCATOR_FLAG_INDEPENDENT_RANGES","features":[82]},{"name":"KSALLOCATOR_FLAG_INSIST_ON_FRAMESIZE_RATIO","features":[82]},{"name":"KSALLOCATOR_FLAG_MULTIPLE_OUTPUT","features":[82]},{"name":"KSALLOCATOR_FLAG_NO_FRAME_INTEGRITY","features":[82]},{"name":"KSALLOCATOR_FLAG_PARTIAL_READ_SUPPORT","features":[82]},{"name":"KSALLOCATOR_FRAMING","features":[82]},{"name":"KSALLOCATOR_FRAMING_EX","features":[82]},{"name":"KSALLOCATOR_OPTIONF_COMPATIBLE","features":[82]},{"name":"KSALLOCATOR_OPTIONF_SYSTEM_MEMORY","features":[82]},{"name":"KSALLOCATOR_OPTIONF_VALID","features":[82]},{"name":"KSALLOCATOR_REQUIREMENTF_FRAME_INTEGRITY","features":[82]},{"name":"KSALLOCATOR_REQUIREMENTF_INPLACE_MODIFIER","features":[82]},{"name":"KSALLOCATOR_REQUIREMENTF_MUST_ALLOCATE","features":[82]},{"name":"KSALLOCATOR_REQUIREMENTF_PREFERENCES_ONLY","features":[82]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY","features":[82]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY_CUSTOM_ALLOCATION","features":[82]},{"name":"KSATTRIBUTE","features":[82]},{"name":"KSATTRIBUTEID_AUDIOSIGNALPROCESSING_MODE","features":[82]},{"name":"KSATTRIBUTE_AUDIOSIGNALPROCESSING_MODE","features":[82]},{"name":"KSATTRIBUTE_REQUIRED","features":[82]},{"name":"KSAUDDECOUTMODE_PCM_51","features":[82]},{"name":"KSAUDDECOUTMODE_SPDIFF","features":[82]},{"name":"KSAUDDECOUTMODE_STEREO_ANALOG","features":[82]},{"name":"KSAUDFNAME_3D_CENTER","features":[82]},{"name":"KSAUDFNAME_3D_DEPTH","features":[82]},{"name":"KSAUDFNAME_3D_STEREO","features":[82]},{"name":"KSAUDFNAME_ALTERNATE_MICROPHONE","features":[82]},{"name":"KSAUDFNAME_AUX","features":[82]},{"name":"KSAUDFNAME_AUX_MUTE","features":[82]},{"name":"KSAUDFNAME_AUX_VOLUME","features":[82]},{"name":"KSAUDFNAME_BASS","features":[82]},{"name":"KSAUDFNAME_CD_AUDIO","features":[82]},{"name":"KSAUDFNAME_CD_IN_VOLUME","features":[82]},{"name":"KSAUDFNAME_CD_MUTE","features":[82]},{"name":"KSAUDFNAME_CD_VOLUME","features":[82]},{"name":"KSAUDFNAME_LINE_IN","features":[82]},{"name":"KSAUDFNAME_LINE_IN_VOLUME","features":[82]},{"name":"KSAUDFNAME_LINE_MUTE","features":[82]},{"name":"KSAUDFNAME_LINE_VOLUME","features":[82]},{"name":"KSAUDFNAME_MASTER_MUTE","features":[82]},{"name":"KSAUDFNAME_MASTER_VOLUME","features":[82]},{"name":"KSAUDFNAME_MICROPHONE_BOOST","features":[82]},{"name":"KSAUDFNAME_MIC_IN_VOLUME","features":[82]},{"name":"KSAUDFNAME_MIC_MUTE","features":[82]},{"name":"KSAUDFNAME_MIC_VOLUME","features":[82]},{"name":"KSAUDFNAME_MIDI","features":[82]},{"name":"KSAUDFNAME_MIDI_IN_VOLUME","features":[82]},{"name":"KSAUDFNAME_MIDI_MUTE","features":[82]},{"name":"KSAUDFNAME_MIDI_VOLUME","features":[82]},{"name":"KSAUDFNAME_MIDRANGE","features":[82]},{"name":"KSAUDFNAME_MONO_MIX","features":[82]},{"name":"KSAUDFNAME_MONO_MIX_MUTE","features":[82]},{"name":"KSAUDFNAME_MONO_MIX_VOLUME","features":[82]},{"name":"KSAUDFNAME_MONO_OUT","features":[82]},{"name":"KSAUDFNAME_MONO_OUT_MUTE","features":[82]},{"name":"KSAUDFNAME_MONO_OUT_VOLUME","features":[82]},{"name":"KSAUDFNAME_PC_SPEAKER","features":[82]},{"name":"KSAUDFNAME_PC_SPEAKER_MUTE","features":[82]},{"name":"KSAUDFNAME_PC_SPEAKER_VOLUME","features":[82]},{"name":"KSAUDFNAME_PEAKMETER","features":[82]},{"name":"KSAUDFNAME_RECORDING_CONTROL","features":[82]},{"name":"KSAUDFNAME_RECORDING_SOURCE","features":[82]},{"name":"KSAUDFNAME_STEREO_MIX","features":[82]},{"name":"KSAUDFNAME_STEREO_MIX_MUTE","features":[82]},{"name":"KSAUDFNAME_STEREO_MIX_VOLUME","features":[82]},{"name":"KSAUDFNAME_TREBLE","features":[82]},{"name":"KSAUDFNAME_VIDEO","features":[82]},{"name":"KSAUDFNAME_VIDEO_MUTE","features":[82]},{"name":"KSAUDFNAME_VIDEO_VOLUME","features":[82]},{"name":"KSAUDFNAME_VOLUME_CONTROL","features":[82]},{"name":"KSAUDFNAME_WAVE_IN_VOLUME","features":[82]},{"name":"KSAUDFNAME_WAVE_MUTE","features":[82]},{"name":"KSAUDFNAME_WAVE_OUT_MIX","features":[82]},{"name":"KSAUDFNAME_WAVE_VOLUME","features":[82]},{"name":"KSAUDIOENGINE_BUFFER_SIZE_RANGE","features":[82]},{"name":"KSAUDIOENGINE_DESCRIPTOR","features":[82]},{"name":"KSAUDIOENGINE_DEVICECONTROLS","features":[82]},{"name":"KSAUDIOENGINE_VOLUMELEVEL","features":[82]},{"name":"KSAUDIOMODULE_DESCRIPTOR","features":[82]},{"name":"KSAUDIOMODULE_NOTIFICATION","features":[82]},{"name":"KSAUDIOMODULE_PROPERTY","features":[82]},{"name":"KSAUDIO_CHANNEL_CONFIG","features":[82]},{"name":"KSAUDIO_COPY_PROTECTION","features":[1,82]},{"name":"KSAUDIO_CPU_RESOURCES_HOST_CPU","features":[82]},{"name":"KSAUDIO_CPU_RESOURCES_NOT_HOST_CPU","features":[82]},{"name":"KSAUDIO_DYNAMIC_RANGE","features":[82]},{"name":"KSAUDIO_MICROPHONE_COORDINATES","features":[82]},{"name":"KSAUDIO_MIC_ARRAY_GEOMETRY","features":[82]},{"name":"KSAUDIO_MIXCAP_TABLE","features":[1,82]},{"name":"KSAUDIO_MIXLEVEL","features":[1,82]},{"name":"KSAUDIO_MIX_CAPS","features":[1,82]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS","features":[82]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS2","features":[82]},{"name":"KSAUDIO_PACKETSIZE_PROCESSINGMODE_CONSTRAINT","features":[82]},{"name":"KSAUDIO_POSITION","features":[82]},{"name":"KSAUDIO_POSITIONEX","features":[82]},{"name":"KSAUDIO_PRESENTATION_POSITION","features":[82]},{"name":"KSAUDIO_QUALITY_ADVANCED","features":[82]},{"name":"KSAUDIO_QUALITY_BASIC","features":[82]},{"name":"KSAUDIO_QUALITY_PC","features":[82]},{"name":"KSAUDIO_QUALITY_WORST","features":[82]},{"name":"KSAUDIO_SPEAKER_DIRECTOUT","features":[82]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_CENTER","features":[82]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_LEFT","features":[82]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_RIGHT","features":[82]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_LEFT","features":[82]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_RIGHT","features":[82]},{"name":"KSAUDIO_SPEAKER_MONO","features":[82]},{"name":"KSAUDIO_SPEAKER_SUPER_WOOFER","features":[82]},{"name":"KSAUDIO_SPEAKER_TOP_MIDDLE","features":[82]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_HEADPHONE","features":[82]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MAX","features":[82]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MIN","features":[82]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_NARROW","features":[82]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_WIDE","features":[82]},{"name":"KSCAMERAPROFILE_BalancedVideoAndPhoto","features":[82]},{"name":"KSCAMERAPROFILE_CompressedCamera","features":[82]},{"name":"KSCAMERAPROFILE_FLAGS_FACEDETECTION","features":[82]},{"name":"KSCAMERAPROFILE_FLAGS_PHOTOHDR","features":[82]},{"name":"KSCAMERAPROFILE_FLAGS_PREVIEW_RES_MUSTMATCH","features":[82]},{"name":"KSCAMERAPROFILE_FLAGS_VARIABLEPHOTOSEQUENCE","features":[82]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOHDR","features":[82]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOSTABLIZATION","features":[82]},{"name":"KSCAMERAPROFILE_FaceAuth_Mode","features":[82]},{"name":"KSCAMERAPROFILE_HDRWithWCGPhoto","features":[82]},{"name":"KSCAMERAPROFILE_HDRWithWCGVideo","features":[82]},{"name":"KSCAMERAPROFILE_HighFrameRate","features":[82]},{"name":"KSCAMERAPROFILE_HighQualityPhoto","features":[82]},{"name":"KSCAMERAPROFILE_Legacy","features":[82]},{"name":"KSCAMERAPROFILE_PhotoSequence","features":[82]},{"name":"KSCAMERAPROFILE_VariablePhotoSequence","features":[82]},{"name":"KSCAMERAPROFILE_VideoConferencing","features":[82]},{"name":"KSCAMERAPROFILE_VideoHDR8","features":[82]},{"name":"KSCAMERAPROFILE_VideoRecording","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_FNF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_HDR","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_ULTRALOWLIGHT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_BLUR","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_CONFIGCAPS","features":[1,82]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_MASK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_SHALLOWFOCUS","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_CAMERAOFFSET","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_ASYNCCONTROL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_CANCELLABLE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_MASK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_RESERVED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_AUTOFACEFRAMING","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPS","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPSHEADER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_MANUAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_SETTING","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMPENSATION","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_FULLSTEP","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_HALFSTEP","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_QUARTERSTEP","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_SIXTHSTEP","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_THIRDSTEP","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_STARE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_ALTERNATIVE_FRAME_ILLUMINATION","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_BACKGROUND_SUBTRACTION","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_DISABLED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_BLINK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PHOTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PREVIEW","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_SMILE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_VIDEO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FIELDOFVIEW","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FILTERSCOPE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_CANCELOPERATION","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_MASK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO_ADJUSTABLEPOWER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_MULTIFLASHSUPPORTED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON_ADJUSTABLEPOWER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_REDEYEREDUCTION","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_SINGLEFLASH","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FAILED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FOCUSED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_LOST","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_SEARCHING","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_UNINITIALIZED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUS","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUSLOCK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_HYPERFOCAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_INFINITY","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_NEAREST","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DRIVERFALLBACK_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_FULLRANGE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_HYPERFOCAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_INFINITY","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_MACRO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_NORMAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_REGIONBASED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_UNLOCK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_HEADER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALTERNATING_FRAME_ILLUMINATION","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALWAYS_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_100","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_12800","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_1600","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_200","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_25600","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_3200","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_400","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_50","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_6400","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_80","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_800","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_MANUAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_METADATAINFO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_ALIGNMENTREQUIRED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_MEMORYTYPE_MASK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_SYSTEMMEMORY","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_1024","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_128","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_16","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_2048","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_256","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_32","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_4096","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_512","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_64","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_8192","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_DEFAULT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_LATENCY","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_PHOTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_POWER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_QUALITY","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_VIDEO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_NORMAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_NONE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_VARIABLE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_16X","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_2X","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_4X","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_8X","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_DISABLE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_PROFILE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_DYNAMIC","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_FACE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_UNKNOWN","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPS","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPSHEADER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_EXPOSURE","features":[1,82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_FOCUS","features":[1,82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_INFO","features":[1,82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROLHEADER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_WHITEBALANCE","features":[1,82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BACKLIT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BEACH","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_CANDLELIGHT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_LANDSCAPE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MACRO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MANUAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHTPORTRAIT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_PORTRAIT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SNOW","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SPORT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SUNSET","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_DISABLED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_ENABLED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VALUE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_LOCK","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_MANUAL","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCSETTING","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_AUTO","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_OFF","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON_ADJUSTABLEPOWER","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_DISABLED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_ENABLED","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CANDLELIGHT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CLOUDY","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_DAYLIGHT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLASH","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLUORESCENT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_TUNGSTEN","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_MODE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_PRESET","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_TEMPERATURE","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DEFAULT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DIRECT","features":[82]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_SMOOTH","features":[82]},{"name":"KSCAMERA_MAXVIDEOFPS_FORPHOTORES","features":[82]},{"name":"KSCAMERA_METADATA_BACKGROUNDSEGMENTATIONMASK","features":[1,82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURECOMPENSATION","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURETIME","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASH","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASHPOWER","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FOCUSSTATE","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ISOSPEED","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_LENSPOSITION","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SCENEMODE","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SENSORFRAMERATE","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_WHITEBALANCE","features":[82]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ZOOMFACTOR","features":[82]},{"name":"KSCAMERA_METADATA_DIGITALWINDOW","features":[82]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION","features":[82]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION_FLAG_ON","features":[82]},{"name":"KSCAMERA_METADATA_ITEMHEADER","features":[82]},{"name":"KSCAMERA_METADATA_PHOTOCONFIRMATION","features":[82]},{"name":"KSCAMERA_MetadataId","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_AUTO","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_HEADER","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_ITEM_HEADER","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_CUSTOM_ITEM","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_FRAME_HEADER","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_HEADER","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_CUSTOM","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_COMPENSATION","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_TIME","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FLASH","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FOCUS","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_HEADER","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_ISO","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_PHOTOCONFIRMATION","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_TYPE","features":[82]},{"name":"KSCAMERA_PERFRAMESETTING_MANUAL","features":[82]},{"name":"KSCAMERA_PROFILE_CONCURRENCYINFO","features":[82]},{"name":"KSCAMERA_PROFILE_INFO","features":[82]},{"name":"KSCAMERA_PROFILE_MEDIAINFO","features":[82]},{"name":"KSCAMERA_PROFILE_PININFO","features":[82]},{"name":"KSCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[82]},{"name":"KSCATEGORY_AUDIO","features":[82]},{"name":"KSCATEGORY_BRIDGE","features":[82]},{"name":"KSCATEGORY_CAPTURE","features":[82]},{"name":"KSCATEGORY_CLOCK","features":[82]},{"name":"KSCATEGORY_COMMUNICATIONSTRANSFORM","features":[82]},{"name":"KSCATEGORY_CROSSBAR","features":[82]},{"name":"KSCATEGORY_DATACOMPRESSOR","features":[82]},{"name":"KSCATEGORY_DATADECOMPRESSOR","features":[82]},{"name":"KSCATEGORY_DATATRANSFORM","features":[82]},{"name":"KSCATEGORY_ENCODER","features":[82]},{"name":"KSCATEGORY_ESCALANTE_PLATFORM_DRIVER","features":[82]},{"name":"KSCATEGORY_FILESYSTEM","features":[82]},{"name":"KSCATEGORY_INTERFACETRANSFORM","features":[82]},{"name":"KSCATEGORY_MEDIUMTRANSFORM","features":[82]},{"name":"KSCATEGORY_MICROPHONE_ARRAY_PROCESSOR","features":[82]},{"name":"KSCATEGORY_MIXER","features":[82]},{"name":"KSCATEGORY_MULTIPLEXER","features":[82]},{"name":"KSCATEGORY_NETWORK","features":[82]},{"name":"KSCATEGORY_NETWORK_CAMERA","features":[82]},{"name":"KSCATEGORY_PROXY","features":[82]},{"name":"KSCATEGORY_QUALITY","features":[82]},{"name":"KSCATEGORY_REALTIME","features":[82]},{"name":"KSCATEGORY_RENDER","features":[82]},{"name":"KSCATEGORY_SENSOR_CAMERA","features":[82]},{"name":"KSCATEGORY_SENSOR_GROUP","features":[82]},{"name":"KSCATEGORY_SPLITTER","features":[82]},{"name":"KSCATEGORY_TEXT","features":[82]},{"name":"KSCATEGORY_TOPOLOGY","features":[82]},{"name":"KSCATEGORY_TVAUDIO","features":[82]},{"name":"KSCATEGORY_TVTUNER","features":[82]},{"name":"KSCATEGORY_VBICODEC","features":[82]},{"name":"KSCATEGORY_VIDEO","features":[82]},{"name":"KSCATEGORY_VIDEO_CAMERA","features":[82]},{"name":"KSCATEGORY_VIRTUAL","features":[82]},{"name":"KSCATEGORY_VPMUX","features":[82]},{"name":"KSCATEGORY_WDMAUD_USE_PIN_NAME","features":[82]},{"name":"KSCLOCK_CREATE","features":[82]},{"name":"KSCOMPONENTID","features":[82]},{"name":"KSCOMPONENTID_USBAUDIO","features":[82]},{"name":"KSCORRELATED_TIME","features":[82]},{"name":"KSCREATE_ITEM_FREEONSTOP","features":[82]},{"name":"KSCREATE_ITEM_NOPARAMETERS","features":[82]},{"name":"KSCREATE_ITEM_SECURITYCHANGED","features":[82]},{"name":"KSCREATE_ITEM_WILDCARD","features":[82]},{"name":"KSCameraProfileSensorType_Custom","features":[82]},{"name":"KSCameraProfileSensorType_Depth","features":[82]},{"name":"KSCameraProfileSensorType_ImageSegmentation","features":[82]},{"name":"KSCameraProfileSensorType_Infrared","features":[82]},{"name":"KSCameraProfileSensorType_PoseTracking","features":[82]},{"name":"KSCameraProfileSensorType_RGB","features":[82]},{"name":"KSDATAFORMAT","features":[82]},{"name":"KSDATAFORMAT_BIT_ATTRIBUTES","features":[82]},{"name":"KSDATAFORMAT_BIT_TEMPORAL_COMPRESSION","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_AC3_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_ANALOGVIDEO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_AC3_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_DSOUND","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_FILEHANDLE","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_FILENAME","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_H264_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_IMAGE","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_JPEG_IMAGE","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_LPCM_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG1_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_NONE","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_VBI","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_VC_ID","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO2","features":[82]},{"name":"KSDATAFORMAT_SPECIFIER_WAVEFORMATEX","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_AC3_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_ANALOG","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_CC","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_D16","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_DTS_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_AAC","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ATRAC","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS_ATMOS","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT20","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT21","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MLP","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DST","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E1","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E2","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS_HD","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG1","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG2","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG3","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ONE_BIT_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_WMA_PRO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_IMAGE_RGB32","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_JPEG","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_L16","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_L16_CUSTOM","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_L16_IR","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_L8","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_L8_CUSTOM","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_L8_IR","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_LPCM_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_BytePair","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_GOPPacket","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI_BUS","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_CUSTOM","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_DEPTH","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_IR","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Packet","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Payload","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Video","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MPEGLAYER3","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG_HEAAC","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS_FEC","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_NONE","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_OVERLAY","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_PCM","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_RAW8","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_RIFF","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFMIDI","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFWAVE","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_SDDS_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_AC3_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_AUDIO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_VIDEO","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_SUBPICTURE","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_TELETEXT","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_VPVBI","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_VPVideo","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_WAVEFORMATEX","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO2","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO3","features":[82]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO_LOSSLESS","features":[82]},{"name":"KSDATAFORMAT_TYPE_ANALOGAUDIO","features":[82]},{"name":"KSDATAFORMAT_TYPE_ANALOGVIDEO","features":[82]},{"name":"KSDATAFORMAT_TYPE_AUDIO","features":[82]},{"name":"KSDATAFORMAT_TYPE_AUXLine21Data","features":[82]},{"name":"KSDATAFORMAT_TYPE_DVD_ENCRYPTED_PACK","features":[82]},{"name":"KSDATAFORMAT_TYPE_IMAGE","features":[82]},{"name":"KSDATAFORMAT_TYPE_MIDI","features":[82]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PES","features":[82]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PROGRAM","features":[82]},{"name":"KSDATAFORMAT_TYPE_MPEG2_TRANSPORT","features":[82]},{"name":"KSDATAFORMAT_TYPE_MUSIC","features":[82]},{"name":"KSDATAFORMAT_TYPE_NABTS","features":[82]},{"name":"KSDATAFORMAT_TYPE_STANDARD_ELEMENTARY_STREAM","features":[82]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PACK_HEADER","features":[82]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PES_PACKET","features":[82]},{"name":"KSDATAFORMAT_TYPE_STREAM","features":[82]},{"name":"KSDATAFORMAT_TYPE_TEXT","features":[82]},{"name":"KSDATAFORMAT_TYPE_VBI","features":[82]},{"name":"KSDATAFORMAT_TYPE_VIDEO","features":[82]},{"name":"KSDATARANGE_AUDIO","features":[82]},{"name":"KSDATARANGE_BIT_ATTRIBUTES","features":[82]},{"name":"KSDATARANGE_BIT_REQUIRED_ATTRIBUTES","features":[82]},{"name":"KSDATARANGE_MUSIC","features":[82]},{"name":"KSDEGRADESETID_Standard","features":[82]},{"name":"KSDEGRADE_STANDARD","features":[82]},{"name":"KSDEGRADE_STANDARD_COMPUTATION","features":[82]},{"name":"KSDEGRADE_STANDARD_QUALITY","features":[82]},{"name":"KSDEGRADE_STANDARD_SAMPLE","features":[82]},{"name":"KSDEGRADE_STANDARD_SKIP","features":[82]},{"name":"KSDEVICE_DESCRIPTOR_VERSION","features":[82]},{"name":"KSDEVICE_DESCRIPTOR_VERSION_2","features":[82]},{"name":"KSDEVICE_FLAG_ENABLE_QUERYINTERFACE","features":[82]},{"name":"KSDEVICE_FLAG_ENABLE_REMOTE_WAKEUP","features":[82]},{"name":"KSDEVICE_FLAG_LOWPOWER_PASSTHROUGH","features":[82]},{"name":"KSDEVICE_PROFILE_INFO","features":[82]},{"name":"KSDEVICE_PROFILE_TYPE_CAMERA","features":[82]},{"name":"KSDEVICE_PROFILE_TYPE_UNKNOWN","features":[82]},{"name":"KSDEVICE_THERMAL_STATE","features":[82]},{"name":"KSDEVICE_THERMAL_STATE_HIGH","features":[82]},{"name":"KSDEVICE_THERMAL_STATE_LOW","features":[82]},{"name":"KSDISPATCH_FASTIO","features":[82]},{"name":"KSDISPLAYCHANGE","features":[82]},{"name":"KSDS3D_BUFFER_ALL","features":[82]},{"name":"KSDS3D_BUFFER_CONE_ANGLES","features":[82]},{"name":"KSDS3D_COEFF_COUNT","features":[82]},{"name":"KSDS3D_FILTER_METHOD_COUNT","features":[82]},{"name":"KSDS3D_FILTER_QUALITY_COUNT","features":[82]},{"name":"KSDS3D_HRTF_COEFF_FORMAT","features":[82]},{"name":"KSDS3D_HRTF_FILTER_FORMAT_MSG","features":[82]},{"name":"KSDS3D_HRTF_FILTER_METHOD","features":[82]},{"name":"KSDS3D_HRTF_FILTER_QUALITY","features":[82]},{"name":"KSDS3D_HRTF_FILTER_VERSION","features":[82]},{"name":"KSDS3D_HRTF_INIT_MSG","features":[82]},{"name":"KSDS3D_HRTF_PARAMS_MSG","features":[1,82]},{"name":"KSDS3D_ITD_PARAMS","features":[82]},{"name":"KSDS3D_ITD_PARAMS_MSG","features":[82]},{"name":"KSDS3D_LISTENER_ALL","features":[82]},{"name":"KSDS3D_LISTENER_ORIENTATION","features":[82]},{"name":"KSDSOUND_3D_MODE_DISABLE","features":[82]},{"name":"KSDSOUND_3D_MODE_HEADRELATIVE","features":[82]},{"name":"KSDSOUND_3D_MODE_NORMAL","features":[82]},{"name":"KSDSOUND_BUFFER_CTRL_3D","features":[82]},{"name":"KSDSOUND_BUFFER_CTRL_FREQUENCY","features":[82]},{"name":"KSDSOUND_BUFFER_CTRL_HRTF_3D","features":[82]},{"name":"KSDSOUND_BUFFER_CTRL_PAN","features":[82]},{"name":"KSDSOUND_BUFFER_CTRL_POSITIONNOTIFY","features":[82]},{"name":"KSDSOUND_BUFFER_CTRL_VOLUME","features":[82]},{"name":"KSDSOUND_BUFFER_LOCHARDWARE","features":[82]},{"name":"KSDSOUND_BUFFER_LOCSOFTWARE","features":[82]},{"name":"KSDSOUND_BUFFER_PRIMARY","features":[82]},{"name":"KSDSOUND_BUFFER_STATIC","features":[82]},{"name":"KSERROR","features":[82]},{"name":"KSEVENTDATA","features":[1,82]},{"name":"KSEVENTF_DPC","features":[82]},{"name":"KSEVENTF_EVENT_HANDLE","features":[82]},{"name":"KSEVENTF_EVENT_OBJECT","features":[82]},{"name":"KSEVENTF_KSWORKITEM","features":[82]},{"name":"KSEVENTF_SEMAPHORE_HANDLE","features":[82]},{"name":"KSEVENTF_SEMAPHORE_OBJECT","features":[82]},{"name":"KSEVENTF_WORKITEM","features":[82]},{"name":"KSEVENTSETID_AudioControlChange","features":[82]},{"name":"KSEVENTSETID_CameraAsyncControl","features":[82]},{"name":"KSEVENTSETID_CameraEvent","features":[82]},{"name":"KSEVENTSETID_Clock","features":[82]},{"name":"KSEVENTSETID_Connection","features":[82]},{"name":"KSEVENTSETID_Device","features":[82]},{"name":"KSEVENTSETID_DynamicFormatChange","features":[82]},{"name":"KSEVENTSETID_EXTDEV_Command","features":[82]},{"name":"KSEVENTSETID_ExtendedCameraControl","features":[82]},{"name":"KSEVENTSETID_LoopedStreaming","features":[82]},{"name":"KSEVENTSETID_PinCapsChange","features":[82]},{"name":"KSEVENTSETID_SoundDetector","features":[82]},{"name":"KSEVENTSETID_StreamAllocator","features":[82]},{"name":"KSEVENTSETID_Telephony","features":[82]},{"name":"KSEVENTSETID_VIDCAPTOSTI","features":[82]},{"name":"KSEVENTSETID_VIDCAP_TVAUDIO","features":[82]},{"name":"KSEVENTSETID_VPNotify","features":[82]},{"name":"KSEVENTSETID_VPVBINotify","features":[82]},{"name":"KSEVENTSETID_VolumeLimit","features":[82]},{"name":"KSEVENT_AUDIO_CONTROL_CHANGE","features":[82]},{"name":"KSEVENT_CAMERACONTROL","features":[82]},{"name":"KSEVENT_CAMERACONTROL_FOCUS","features":[82]},{"name":"KSEVENT_CAMERACONTROL_ZOOM","features":[82]},{"name":"KSEVENT_CAMERAEVENT","features":[82]},{"name":"KSEVENT_CLOCK_INTERVAL_MARK","features":[82]},{"name":"KSEVENT_CLOCK_POSITION","features":[82]},{"name":"KSEVENT_CLOCK_POSITION_MARK","features":[82]},{"name":"KSEVENT_CONNECTION","features":[82]},{"name":"KSEVENT_CONNECTION_DATADISCONTINUITY","features":[82]},{"name":"KSEVENT_CONNECTION_ENDOFSTREAM","features":[82]},{"name":"KSEVENT_CONNECTION_POSITIONUPDATE","features":[82]},{"name":"KSEVENT_CONNECTION_PRIORITY","features":[82]},{"name":"KSEVENT_CONNECTION_TIMEDISCONTINUITY","features":[82]},{"name":"KSEVENT_CONTROL_CHANGE","features":[82]},{"name":"KSEVENT_CROSSBAR","features":[82]},{"name":"KSEVENT_CROSSBAR_CHANGED","features":[82]},{"name":"KSEVENT_DEVCMD","features":[82]},{"name":"KSEVENT_DEVICE","features":[82]},{"name":"KSEVENT_DEVICE_LOST","features":[82]},{"name":"KSEVENT_DEVICE_PREEMPTED","features":[82]},{"name":"KSEVENT_DEVICE_THERMAL_HIGH","features":[82]},{"name":"KSEVENT_DEVICE_THERMAL_LOW","features":[82]},{"name":"KSEVENT_DYNAMICFORMATCHANGE","features":[82]},{"name":"KSEVENT_DYNAMIC_FORMAT_CHANGE","features":[82]},{"name":"KSEVENT_ENTRY_BUFFERED","features":[82]},{"name":"KSEVENT_ENTRY_DELETED","features":[82]},{"name":"KSEVENT_ENTRY_ONESHOT","features":[82]},{"name":"KSEVENT_EXTDEV_COMMAND_BUSRESET","features":[82]},{"name":"KSEVENT_EXTDEV_COMMAND_CONTROL_INTERIM_READY","features":[82]},{"name":"KSEVENT_EXTDEV_COMMAND_NOTIFY_INTERIM_READY","features":[82]},{"name":"KSEVENT_EXTDEV_NOTIFY_MEDIUM_CHANGE","features":[82]},{"name":"KSEVENT_EXTDEV_NOTIFY_REMOVAL","features":[82]},{"name":"KSEVENT_EXTDEV_OPERATION_MODE_UPDATE","features":[82]},{"name":"KSEVENT_EXTDEV_TIMECODE_UPDATE","features":[82]},{"name":"KSEVENT_EXTDEV_TRANSPORT_STATE_UPDATE","features":[82]},{"name":"KSEVENT_LOOPEDSTREAMING","features":[82]},{"name":"KSEVENT_LOOPEDSTREAMING_POSITION","features":[82]},{"name":"KSEVENT_PHOTO_SAMPLE_SCANNED","features":[82]},{"name":"KSEVENT_PINCAPS_CHANGENOTIFICATIONS","features":[82]},{"name":"KSEVENT_PINCAPS_FORMATCHANGE","features":[82]},{"name":"KSEVENT_PINCAPS_JACKINFOCHANGE","features":[82]},{"name":"KSEVENT_SOUNDDETECTOR","features":[82]},{"name":"KSEVENT_SOUNDDETECTOR_MATCHDETECTED","features":[82]},{"name":"KSEVENT_STREAMALLOCATOR","features":[82]},{"name":"KSEVENT_STREAMALLOCATOR_FREEFRAME","features":[82]},{"name":"KSEVENT_STREAMALLOCATOR_INTERNAL_FREEFRAME","features":[82]},{"name":"KSEVENT_TELEPHONY","features":[82]},{"name":"KSEVENT_TELEPHONY_ENDPOINTPAIRS_CHANGED","features":[82]},{"name":"KSEVENT_TIME_INTERVAL","features":[1,82]},{"name":"KSEVENT_TIME_MARK","features":[1,82]},{"name":"KSEVENT_TUNER","features":[82]},{"name":"KSEVENT_TUNER_CHANGED","features":[82]},{"name":"KSEVENT_TUNER_INITIATE_SCAN","features":[82]},{"name":"KSEVENT_TUNER_INITIATE_SCAN_S","features":[1,82]},{"name":"KSEVENT_TVAUDIO","features":[82]},{"name":"KSEVENT_TVAUDIO_CHANGED","features":[82]},{"name":"KSEVENT_TYPE_BASICSUPPORT","features":[82]},{"name":"KSEVENT_TYPE_ENABLE","features":[82]},{"name":"KSEVENT_TYPE_ENABLEBUFFERED","features":[82]},{"name":"KSEVENT_TYPE_ONESHOT","features":[82]},{"name":"KSEVENT_TYPE_QUERYBUFFER","features":[82]},{"name":"KSEVENT_TYPE_SETSUPPORT","features":[82]},{"name":"KSEVENT_TYPE_TOPOLOGY","features":[82]},{"name":"KSEVENT_VIDCAPTOSTI","features":[82]},{"name":"KSEVENT_VIDCAPTOSTI_EXT_TRIGGER","features":[82]},{"name":"KSEVENT_VIDCAP_AUTO_UPDATE","features":[82]},{"name":"KSEVENT_VIDCAP_SEARCH","features":[82]},{"name":"KSEVENT_VIDEODECODER","features":[82]},{"name":"KSEVENT_VIDEODECODER_CHANGED","features":[82]},{"name":"KSEVENT_VOLUMELIMIT","features":[82]},{"name":"KSEVENT_VOLUMELIMIT_CHANGED","features":[82]},{"name":"KSEVENT_VPNOTIFY","features":[82]},{"name":"KSEVENT_VPNOTIFY_FORMATCHANGE","features":[82]},{"name":"KSEVENT_VPVBINOTIFY","features":[82]},{"name":"KSEVENT_VPVBINOTIFY_FORMATCHANGE","features":[82]},{"name":"KSE_NODE","features":[82]},{"name":"KSE_PIN","features":[82]},{"name":"KSFILTER_FLAG_CRITICAL_PROCESSING","features":[82]},{"name":"KSFILTER_FLAG_DENY_USERMODE_ACCESS","features":[82]},{"name":"KSFILTER_FLAG_DISPATCH_LEVEL_PROCESSING","features":[82]},{"name":"KSFILTER_FLAG_HYPERCRITICAL_PROCESSING","features":[82]},{"name":"KSFILTER_FLAG_PRIORITIZE_REFERENCEGUID","features":[82]},{"name":"KSFILTER_FLAG_RECEIVE_ZERO_LENGTH_SAMPLES","features":[82]},{"name":"KSFRAMETIME","features":[82]},{"name":"KSFRAMETIME_VARIABLESIZE","features":[82]},{"name":"KSGOP_USERDATA","features":[82]},{"name":"KSIDENTIFIER","features":[82]},{"name":"KSINTERFACESETID_FileIo","features":[82]},{"name":"KSINTERFACESETID_Media","features":[82]},{"name":"KSINTERFACESETID_Standard","features":[82]},{"name":"KSINTERFACE_FILEIO","features":[82]},{"name":"KSINTERFACE_FILEIO_STREAMING","features":[82]},{"name":"KSINTERFACE_MEDIA","features":[82]},{"name":"KSINTERFACE_MEDIA_MUSIC","features":[82]},{"name":"KSINTERFACE_MEDIA_WAVE_BUFFERED","features":[82]},{"name":"KSINTERFACE_MEDIA_WAVE_QUEUED","features":[82]},{"name":"KSINTERFACE_STANDARD","features":[82]},{"name":"KSINTERFACE_STANDARD_CONTROL","features":[82]},{"name":"KSINTERFACE_STANDARD_LOOPED_STREAMING","features":[82]},{"name":"KSINTERFACE_STANDARD_STREAMING","features":[82]},{"name":"KSINTERVAL","features":[82]},{"name":"KSIOOPERATION","features":[82]},{"name":"KSJACK_DESCRIPTION","features":[1,82]},{"name":"KSJACK_DESCRIPTION2","features":[82]},{"name":"KSJACK_DESCRIPTION3","features":[82]},{"name":"KSJACK_SINK_CONNECTIONTYPE","features":[82]},{"name":"KSJACK_SINK_CONNECTIONTYPE_DISPLAYPORT","features":[82]},{"name":"KSJACK_SINK_CONNECTIONTYPE_HDMI","features":[82]},{"name":"KSJACK_SINK_INFORMATION","features":[1,82]},{"name":"KSMEDIUMSETID_MidiBus","features":[82]},{"name":"KSMEDIUMSETID_Standard","features":[82]},{"name":"KSMEDIUMSETID_VPBus","features":[82]},{"name":"KSMEDIUM_STANDARD_DEVIO","features":[82]},{"name":"KSMEDIUM_TYPE_ANYINSTANCE","features":[82]},{"name":"KSMEMORY_TYPE_DEVICE_UNKNOWN","features":[82]},{"name":"KSMEMORY_TYPE_KERNEL_NONPAGED","features":[82]},{"name":"KSMEMORY_TYPE_KERNEL_PAGED","features":[82]},{"name":"KSMEMORY_TYPE_SYSTEM","features":[82]},{"name":"KSMEMORY_TYPE_USER","features":[82]},{"name":"KSMETHODSETID_StreamAllocator","features":[82]},{"name":"KSMETHODSETID_StreamIo","features":[82]},{"name":"KSMETHODSETID_Wavetable","features":[82]},{"name":"KSMETHOD_STREAMALLOCATOR","features":[82]},{"name":"KSMETHOD_STREAMALLOCATOR_ALLOC","features":[82]},{"name":"KSMETHOD_STREAMALLOCATOR_FREE","features":[82]},{"name":"KSMETHOD_STREAMIO","features":[82]},{"name":"KSMETHOD_STREAMIO_READ","features":[82]},{"name":"KSMETHOD_STREAMIO_WRITE","features":[82]},{"name":"KSMETHOD_TYPE_BASICSUPPORT","features":[82]},{"name":"KSMETHOD_TYPE_MODIFY","features":[82]},{"name":"KSMETHOD_TYPE_NONE","features":[82]},{"name":"KSMETHOD_TYPE_READ","features":[82]},{"name":"KSMETHOD_TYPE_SEND","features":[82]},{"name":"KSMETHOD_TYPE_SETSUPPORT","features":[82]},{"name":"KSMETHOD_TYPE_SOURCE","features":[82]},{"name":"KSMETHOD_TYPE_TOPOLOGY","features":[82]},{"name":"KSMETHOD_TYPE_WRITE","features":[82]},{"name":"KSMETHOD_WAVETABLE","features":[82]},{"name":"KSMETHOD_WAVETABLE_WAVE_ALLOC","features":[82]},{"name":"KSMETHOD_WAVETABLE_WAVE_FIND","features":[82]},{"name":"KSMETHOD_WAVETABLE_WAVE_FREE","features":[82]},{"name":"KSMETHOD_WAVETABLE_WAVE_WRITE","features":[82]},{"name":"KSMETHOD_WAVE_QUEUED_BREAKLOOP","features":[82]},{"name":"KSMFT_CATEGORY_AUDIO_DECODER","features":[82]},{"name":"KSMFT_CATEGORY_AUDIO_EFFECT","features":[82]},{"name":"KSMFT_CATEGORY_AUDIO_ENCODER","features":[82]},{"name":"KSMFT_CATEGORY_DEMULTIPLEXER","features":[82]},{"name":"KSMFT_CATEGORY_MULTIPLEXER","features":[82]},{"name":"KSMFT_CATEGORY_OTHER","features":[82]},{"name":"KSMFT_CATEGORY_VIDEO_DECODER","features":[82]},{"name":"KSMFT_CATEGORY_VIDEO_EFFECT","features":[82]},{"name":"KSMFT_CATEGORY_VIDEO_ENCODER","features":[82]},{"name":"KSMFT_CATEGORY_VIDEO_PROCESSOR","features":[82]},{"name":"KSMICARRAY_MICARRAYTYPE","features":[82]},{"name":"KSMICARRAY_MICARRAYTYPE_3D","features":[82]},{"name":"KSMICARRAY_MICARRAYTYPE_LINEAR","features":[82]},{"name":"KSMICARRAY_MICARRAYTYPE_PLANAR","features":[82]},{"name":"KSMICARRAY_MICTYPE","features":[82]},{"name":"KSMICARRAY_MICTYPE_8SHAPED","features":[82]},{"name":"KSMICARRAY_MICTYPE_CARDIOID","features":[82]},{"name":"KSMICARRAY_MICTYPE_HYPERCARDIOID","features":[82]},{"name":"KSMICARRAY_MICTYPE_OMNIDIRECTIONAL","features":[82]},{"name":"KSMICARRAY_MICTYPE_SUBCARDIOID","features":[82]},{"name":"KSMICARRAY_MICTYPE_SUPERCARDIOID","features":[82]},{"name":"KSMICARRAY_MICTYPE_VENDORDEFINED","features":[82]},{"name":"KSMPEGVIDMODE_LTRBOX","features":[82]},{"name":"KSMPEGVIDMODE_PANSCAN","features":[82]},{"name":"KSMPEGVIDMODE_SCALE","features":[82]},{"name":"KSMPEGVID_RECT","features":[82]},{"name":"KSMULTIPLE_DATA_PROP","features":[82]},{"name":"KSMULTIPLE_ITEM","features":[82]},{"name":"KSMUSICFORMAT","features":[82]},{"name":"KSMUSIC_TECHNOLOGY_FMSYNTH","features":[82]},{"name":"KSMUSIC_TECHNOLOGY_PORT","features":[82]},{"name":"KSMUSIC_TECHNOLOGY_SQSYNTH","features":[82]},{"name":"KSMUSIC_TECHNOLOGY_SWSYNTH","features":[82]},{"name":"KSMUSIC_TECHNOLOGY_WAVETABLE","features":[82]},{"name":"KSM_NODE","features":[82]},{"name":"KSNAME_Allocator","features":[82]},{"name":"KSNAME_Clock","features":[82]},{"name":"KSNAME_Filter","features":[82]},{"name":"KSNAME_Pin","features":[82]},{"name":"KSNAME_TopologyNode","features":[82]},{"name":"KSNODEPIN_AEC_CAPTURE_IN","features":[82]},{"name":"KSNODEPIN_AEC_CAPTURE_OUT","features":[82]},{"name":"KSNODEPIN_AEC_RENDER_IN","features":[82]},{"name":"KSNODEPIN_AEC_RENDER_OUT","features":[82]},{"name":"KSNODEPIN_DEMUX_IN","features":[82]},{"name":"KSNODEPIN_DEMUX_OUT","features":[82]},{"name":"KSNODEPIN_STANDARD_IN","features":[82]},{"name":"KSNODEPIN_STANDARD_OUT","features":[82]},{"name":"KSNODEPIN_SUM_MUX_IN","features":[82]},{"name":"KSNODEPIN_SUM_MUX_OUT","features":[82]},{"name":"KSNODEPROPERTY","features":[82]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[82]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[82]},{"name":"KSNODEPROPERTY_AUDIO_CHANNEL","features":[82]},{"name":"KSNODEPROPERTY_AUDIO_DEV_SPECIFIC","features":[82]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[82]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[82]},{"name":"KSNODETYPE_1394_DA_STREAM","features":[82]},{"name":"KSNODETYPE_1394_DV_STREAM_SOUNDTRACK","features":[82]},{"name":"KSNODETYPE_3D_EFFECTS","features":[82]},{"name":"KSNODETYPE_ADC","features":[82]},{"name":"KSNODETYPE_AGC","features":[82]},{"name":"KSNODETYPE_ANALOG_CONNECTOR","features":[82]},{"name":"KSNODETYPE_ANALOG_TAPE","features":[82]},{"name":"KSNODETYPE_AUDIO_ENGINE","features":[82]},{"name":"KSNODETYPE_AUDIO_KEYWORDDETECTOR","features":[82]},{"name":"KSNODETYPE_AUDIO_LOOPBACK","features":[82]},{"name":"KSNODETYPE_AUDIO_MODULE","features":[82]},{"name":"KSNODETYPE_BIDIRECTIONAL_UNDEFINED","features":[82]},{"name":"KSNODETYPE_CABLE_TUNER_AUDIO","features":[82]},{"name":"KSNODETYPE_CD_PLAYER","features":[82]},{"name":"KSNODETYPE_CHORUS","features":[82]},{"name":"KSNODETYPE_COMMUNICATION_SPEAKER","features":[82]},{"name":"KSNODETYPE_DAC","features":[82]},{"name":"KSNODETYPE_DAT_IO_DIGITAL_AUDIO_TAPE","features":[82]},{"name":"KSNODETYPE_DCC_IO_DIGITAL_COMPACT_CASSETTE","features":[82]},{"name":"KSNODETYPE_DELAY","features":[82]},{"name":"KSNODETYPE_DEMUX","features":[82]},{"name":"KSNODETYPE_DESKTOP_MICROPHONE","features":[82]},{"name":"KSNODETYPE_DESKTOP_SPEAKER","features":[82]},{"name":"KSNODETYPE_DEV_SPECIFIC","features":[82]},{"name":"KSNODETYPE_DIGITAL_AUDIO_INTERFACE","features":[82]},{"name":"KSNODETYPE_DISPLAYPORT_INTERFACE","features":[82]},{"name":"KSNODETYPE_DOWN_LINE_PHONE","features":[82]},{"name":"KSNODETYPE_DRM_DESCRAMBLE","features":[82]},{"name":"KSNODETYPE_DSS_AUDIO","features":[82]},{"name":"KSNODETYPE_DVD_AUDIO","features":[82]},{"name":"KSNODETYPE_DYN_RANGE_COMPRESSOR","features":[82]},{"name":"KSNODETYPE_ECHO_CANCELING_SPEAKERPHONE","features":[82]},{"name":"KSNODETYPE_ECHO_SUPPRESSING_SPEAKERPHONE","features":[82]},{"name":"KSNODETYPE_EMBEDDED_UNDEFINED","features":[82]},{"name":"KSNODETYPE_EQUALIZATION_NOISE","features":[82]},{"name":"KSNODETYPE_EQUALIZER","features":[82]},{"name":"KSNODETYPE_EXTERNAL_UNDEFINED","features":[82]},{"name":"KSNODETYPE_FM_RX","features":[82]},{"name":"KSNODETYPE_HANDSET","features":[82]},{"name":"KSNODETYPE_HDMI_INTERFACE","features":[82]},{"name":"KSNODETYPE_HEADPHONES","features":[82]},{"name":"KSNODETYPE_HEADSET","features":[82]},{"name":"KSNODETYPE_HEAD_MOUNTED_DISPLAY_AUDIO","features":[82]},{"name":"KSNODETYPE_INPUT_UNDEFINED","features":[82]},{"name":"KSNODETYPE_LEGACY_AUDIO_CONNECTOR","features":[82]},{"name":"KSNODETYPE_LEVEL_CALIBRATION_NOISE_SOURCE","features":[82]},{"name":"KSNODETYPE_LINE_CONNECTOR","features":[82]},{"name":"KSNODETYPE_LOUDNESS","features":[82]},{"name":"KSNODETYPE_LOW_FREQUENCY_EFFECTS_SPEAKER","features":[82]},{"name":"KSNODETYPE_MICROPHONE","features":[82]},{"name":"KSNODETYPE_MICROPHONE_ARRAY","features":[82]},{"name":"KSNODETYPE_MIDI_ELEMENT","features":[82]},{"name":"KSNODETYPE_MIDI_JACK","features":[82]},{"name":"KSNODETYPE_MINIDISK","features":[82]},{"name":"KSNODETYPE_MULTITRACK_RECORDER","features":[82]},{"name":"KSNODETYPE_MUTE","features":[82]},{"name":"KSNODETYPE_MUX","features":[82]},{"name":"KSNODETYPE_NOISE_SUPPRESS","features":[82]},{"name":"KSNODETYPE_OMNI_DIRECTIONAL_MICROPHONE","features":[82]},{"name":"KSNODETYPE_OUTPUT_UNDEFINED","features":[82]},{"name":"KSNODETYPE_PARAMETRIC_EQUALIZER","features":[82]},{"name":"KSNODETYPE_PEAKMETER","features":[82]},{"name":"KSNODETYPE_PERSONAL_MICROPHONE","features":[82]},{"name":"KSNODETYPE_PHONE_LINE","features":[82]},{"name":"KSNODETYPE_PHONOGRAPH","features":[82]},{"name":"KSNODETYPE_PROCESSING_MICROPHONE_ARRAY","features":[82]},{"name":"KSNODETYPE_PROLOGIC_DECODER","features":[82]},{"name":"KSNODETYPE_PROLOGIC_ENCODER","features":[82]},{"name":"KSNODETYPE_RADIO_RECEIVER","features":[82]},{"name":"KSNODETYPE_RADIO_TRANSMITTER","features":[82]},{"name":"KSNODETYPE_REVERB","features":[82]},{"name":"KSNODETYPE_ROOM_SPEAKER","features":[82]},{"name":"KSNODETYPE_SATELLITE_RECEIVER_AUDIO","features":[82]},{"name":"KSNODETYPE_SPDIF_INTERFACE","features":[82]},{"name":"KSNODETYPE_SPEAKER","features":[82]},{"name":"KSNODETYPE_SPEAKERPHONE_NO_ECHO_REDUCTION","features":[82]},{"name":"KSNODETYPE_SPEAKERS_STATIC_JACK","features":[82]},{"name":"KSNODETYPE_SRC","features":[82]},{"name":"KSNODETYPE_STEREO_WIDE","features":[82]},{"name":"KSNODETYPE_SUM","features":[82]},{"name":"KSNODETYPE_SUPERMIX","features":[82]},{"name":"KSNODETYPE_SYNTHESIZER","features":[82]},{"name":"KSNODETYPE_TELEPHONE","features":[82]},{"name":"KSNODETYPE_TELEPHONY_BIDI","features":[82]},{"name":"KSNODETYPE_TELEPHONY_UNDEFINED","features":[82]},{"name":"KSNODETYPE_TONE","features":[82]},{"name":"KSNODETYPE_TV_TUNER_AUDIO","features":[82]},{"name":"KSNODETYPE_UPDOWN_MIX","features":[82]},{"name":"KSNODETYPE_VCR_AUDIO","features":[82]},{"name":"KSNODETYPE_VIDEO_CAMERA_TERMINAL","features":[82]},{"name":"KSNODETYPE_VIDEO_DISC_AUDIO","features":[82]},{"name":"KSNODETYPE_VIDEO_INPUT_MTT","features":[82]},{"name":"KSNODETYPE_VIDEO_INPUT_TERMINAL","features":[82]},{"name":"KSNODETYPE_VIDEO_OUTPUT_MTT","features":[82]},{"name":"KSNODETYPE_VIDEO_OUTPUT_TERMINAL","features":[82]},{"name":"KSNODETYPE_VIDEO_PROCESSING","features":[82]},{"name":"KSNODETYPE_VIDEO_SELECTOR","features":[82]},{"name":"KSNODETYPE_VIDEO_STREAMING","features":[82]},{"name":"KSNODETYPE_VOLUME","features":[82]},{"name":"KSNODE_CREATE","features":[82]},{"name":"KSNOTIFICATIONID_AudioModule","features":[82]},{"name":"KSNOTIFICATIONID_SoundDetector","features":[82]},{"name":"KSPEEKOPERATION","features":[82]},{"name":"KSPIN_CINSTANCES","features":[82]},{"name":"KSPIN_COMMUNICATION","features":[82]},{"name":"KSPIN_COMMUNICATION_BOTH","features":[82]},{"name":"KSPIN_COMMUNICATION_BRIDGE","features":[82]},{"name":"KSPIN_COMMUNICATION_NONE","features":[82]},{"name":"KSPIN_COMMUNICATION_SINK","features":[82]},{"name":"KSPIN_COMMUNICATION_SOURCE","features":[82]},{"name":"KSPIN_CONNECT","features":[1,82]},{"name":"KSPIN_DATAFLOW","features":[82]},{"name":"KSPIN_DATAFLOW_IN","features":[82]},{"name":"KSPIN_DATAFLOW_OUT","features":[82]},{"name":"KSPIN_FLAG_ASYNCHRONOUS_PROCESSING","features":[82]},{"name":"KSPIN_FLAG_CRITICAL_PROCESSING","features":[82]},{"name":"KSPIN_FLAG_DENY_USERMODE_ACCESS","features":[82]},{"name":"KSPIN_FLAG_DISPATCH_LEVEL_PROCESSING","features":[82]},{"name":"KSPIN_FLAG_DISTINCT_TRAILING_EDGE","features":[82]},{"name":"KSPIN_FLAG_DO_NOT_INITIATE_PROCESSING","features":[82]},{"name":"KSPIN_FLAG_DO_NOT_USE_STANDARD_TRANSPORT","features":[82]},{"name":"KSPIN_FLAG_ENFORCE_FIFO","features":[82]},{"name":"KSPIN_FLAG_FIXED_FORMAT","features":[82]},{"name":"KSPIN_FLAG_FRAMES_NOT_REQUIRED_FOR_PROCESSING","features":[82]},{"name":"KSPIN_FLAG_GENERATE_EOS_EVENTS","features":[82]},{"name":"KSPIN_FLAG_GENERATE_MAPPINGS","features":[82]},{"name":"KSPIN_FLAG_HYPERCRITICAL_PROCESSING","features":[82]},{"name":"KSPIN_FLAG_IMPLEMENT_CLOCK","features":[82]},{"name":"KSPIN_FLAG_INITIATE_PROCESSING_ON_EVERY_ARRIVAL","features":[82]},{"name":"KSPIN_FLAG_PROCESS_IF_ANY_IN_RUN_STATE","features":[82]},{"name":"KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY","features":[82]},{"name":"KSPIN_FLAG_SOME_FRAMES_REQUIRED_FOR_PROCESSING","features":[82]},{"name":"KSPIN_FLAG_SPLITTER","features":[82]},{"name":"KSPIN_FLAG_USE_STANDARD_TRANSPORT","features":[82]},{"name":"KSPIN_MDL_CACHING_EVENT","features":[82]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION","features":[82]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION32","features":[82]},{"name":"KSPIN_MDL_CACHING_NOTIFY_ADDSAMPLE","features":[82]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_NOWAIT","features":[82]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_WAIT","features":[82]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANUP","features":[82]},{"name":"KSPIN_PHYSICALCONNECTION","features":[82]},{"name":"KSPPROPERTY_ALLOCATOR_MDLCACHING","features":[82]},{"name":"KSPRIORITY","features":[82]},{"name":"KSPRIORITY_EXCLUSIVE","features":[82]},{"name":"KSPRIORITY_HIGH","features":[82]},{"name":"KSPRIORITY_LOW","features":[82]},{"name":"KSPRIORITY_NORMAL","features":[82]},{"name":"KSPROBE_ALLOCATEMDL","features":[82]},{"name":"KSPROBE_ALLOWFORMATCHANGE","features":[82]},{"name":"KSPROBE_MODIFY","features":[82]},{"name":"KSPROBE_PROBEANDLOCK","features":[82]},{"name":"KSPROBE_STREAMREAD","features":[82]},{"name":"KSPROBE_STREAMWRITE","features":[82]},{"name":"KSPROBE_SYSTEMADDRESS","features":[82]},{"name":"KSPROPERTYSETID_ExtendedCameraControl","features":[82]},{"name":"KSPROPERTYSETID_NetworkCameraControl","features":[82]},{"name":"KSPROPERTYSETID_PerFrameSettingControl","features":[82]},{"name":"KSPROPERTY_AC3","features":[82]},{"name":"KSPROPERTY_AC3_ALTERNATE_AUDIO","features":[82]},{"name":"KSPROPERTY_AC3_BIT_STREAM_MODE","features":[82]},{"name":"KSPROPERTY_AC3_DIALOGUE_LEVEL","features":[82]},{"name":"KSPROPERTY_AC3_DOWNMIX","features":[82]},{"name":"KSPROPERTY_AC3_ERROR_CONCEALMENT","features":[82]},{"name":"KSPROPERTY_AC3_LANGUAGE_CODE","features":[82]},{"name":"KSPROPERTY_AC3_ROOM_TYPE","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CLEANUP_CACHEDMDLPAGES","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS_S","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE_S","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_HONOR_COUNT","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE","features":[82]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE_S","features":[82]},{"name":"KSPROPERTY_ATN_READER","features":[82]},{"name":"KSPROPERTY_AUDDECOUT","features":[82]},{"name":"KSPROPERTY_AUDDECOUT_CUR_MODE","features":[82]},{"name":"KSPROPERTY_AUDDECOUT_MODES","features":[82]},{"name":"KSPROPERTY_AUDIO","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_BUFFER_SIZE_RANGE","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_DESCRIPTOR","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICECONTROLS","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICEFORMAT","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_GFXENABLE","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_LFXENABLE","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_LOOPBACK_PROTECTION","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_MIXFORMAT","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_SUPPORTEDDEVICEFORMATS","features":[82]},{"name":"KSPROPERTY_AUDIOENGINE_VOLUMELEVEL","features":[82]},{"name":"KSPROPERTY_AUDIOMODULE","features":[82]},{"name":"KSPROPERTY_AUDIOMODULE_COMMAND","features":[82]},{"name":"KSPROPERTY_AUDIOMODULE_DESCRIPTORS","features":[82]},{"name":"KSPROPERTY_AUDIOMODULE_NOTIFICATION_DEVICE_ID","features":[82]},{"name":"KSPROPERTY_AUDIOPOSTURE","features":[82]},{"name":"KSPROPERTY_AUDIOPOSTURE_ORIENTATION","features":[82]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT","features":[82]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[82]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING","features":[82]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING_MODES","features":[82]},{"name":"KSPROPERTY_AUDIO_3D_INTERFACE","features":[82]},{"name":"KSPROPERTY_AUDIO_AGC","features":[82]},{"name":"KSPROPERTY_AUDIO_ALGORITHM_INSTANCE","features":[82]},{"name":"KSPROPERTY_AUDIO_BASS","features":[82]},{"name":"KSPROPERTY_AUDIO_BASS_BOOST","features":[82]},{"name":"KSPROPERTY_AUDIO_BUFFER_DURATION","features":[82]},{"name":"KSPROPERTY_AUDIO_CHANNEL_CONFIG","features":[82]},{"name":"KSPROPERTY_AUDIO_CHORUS_LEVEL","features":[82]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_DEPTH","features":[82]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_RATE","features":[82]},{"name":"KSPROPERTY_AUDIO_COPY_PROTECTION","features":[82]},{"name":"KSPROPERTY_AUDIO_CPU_RESOURCES","features":[82]},{"name":"KSPROPERTY_AUDIO_DELAY","features":[82]},{"name":"KSPROPERTY_AUDIO_DEMUX_DEST","features":[82]},{"name":"KSPROPERTY_AUDIO_DEV_SPECIFIC","features":[82]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_RANGE","features":[82]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_SAMPLING_RATE","features":[82]},{"name":"KSPROPERTY_AUDIO_EQ_BANDS","features":[82]},{"name":"KSPROPERTY_AUDIO_EQ_LEVEL","features":[82]},{"name":"KSPROPERTY_AUDIO_FILTER_STATE","features":[82]},{"name":"KSPROPERTY_AUDIO_LATENCY","features":[82]},{"name":"KSPROPERTY_AUDIO_LINEAR_BUFFER_POSITION","features":[82]},{"name":"KSPROPERTY_AUDIO_LOUDNESS","features":[82]},{"name":"KSPROPERTY_AUDIO_MANUFACTURE_GUID","features":[82]},{"name":"KSPROPERTY_AUDIO_MIC_ARRAY_GEOMETRY","features":[82]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY","features":[82]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY2","features":[82]},{"name":"KSPROPERTY_AUDIO_MIC_SNR","features":[82]},{"name":"KSPROPERTY_AUDIO_MID","features":[82]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_CAPS","features":[82]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_TABLE","features":[82]},{"name":"KSPROPERTY_AUDIO_MUTE","features":[82]},{"name":"KSPROPERTY_AUDIO_MUX_SOURCE","features":[82]},{"name":"KSPROPERTY_AUDIO_NUM_EQ_BANDS","features":[82]},{"name":"KSPROPERTY_AUDIO_PEAKMETER","features":[82]},{"name":"KSPROPERTY_AUDIO_PEAKMETER2","features":[82]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_CENTER_FREQ","features":[82]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_LEVEL","features":[82]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_Q_FACTOR","features":[82]},{"name":"KSPROPERTY_AUDIO_PEQ_MAX_BANDS","features":[82]},{"name":"KSPROPERTY_AUDIO_PEQ_NUM_BANDS","features":[82]},{"name":"KSPROPERTY_AUDIO_POSITION","features":[82]},{"name":"KSPROPERTY_AUDIO_POSITIONEX","features":[82]},{"name":"KSPROPERTY_AUDIO_PREFERRED_STATUS","features":[82]},{"name":"KSPROPERTY_AUDIO_PRESENTATION_POSITION","features":[82]},{"name":"KSPROPERTY_AUDIO_PRODUCT_GUID","features":[82]},{"name":"KSPROPERTY_AUDIO_QUALITY","features":[82]},{"name":"KSPROPERTY_AUDIO_REVERB_DELAY_FEEDBACK","features":[82]},{"name":"KSPROPERTY_AUDIO_REVERB_LEVEL","features":[82]},{"name":"KSPROPERTY_AUDIO_REVERB_TIME","features":[82]},{"name":"KSPROPERTY_AUDIO_SAMPLING_RATE","features":[82]},{"name":"KSPROPERTY_AUDIO_STEREO_ENHANCE","features":[82]},{"name":"KSPROPERTY_AUDIO_STEREO_SPEAKER_GEOMETRY","features":[82]},{"name":"KSPROPERTY_AUDIO_SURROUND_ENCODE","features":[82]},{"name":"KSPROPERTY_AUDIO_TREBLE","features":[82]},{"name":"KSPROPERTY_AUDIO_VOLUMELEVEL","features":[82]},{"name":"KSPROPERTY_AUDIO_VOLUMELIMIT_ENGAGED","features":[82]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_LASTBUFFER_POSITION","features":[82]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_POSITION","features":[82]},{"name":"KSPROPERTY_AUDIO_WIDENESS","features":[82]},{"name":"KSPROPERTY_AUDIO_WIDE_MODE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYGEOGRAPHIC","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYPERSONALNAME","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYRELATED","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTITLE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTOPICALTERM","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYUNIFORMTITLE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDFORMAVAILABLE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_AWARDS","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_BIBLIOGRAPHYNOTE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CATALOGINGSOURCE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CITATION","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CONTENTSNOTE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CREATIONCREDIT","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_GENERALNOTE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMCURRICULUM","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMGENRE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISBN","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISSN","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LCCN","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LEADER","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINCORPORATEBODY","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINMEETINGNAME","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINPERSONALNAME","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINUNIFORMTITLE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PARTICIPANT","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PHYSICALDESCRIPTION","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PUBLICATION","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENT","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTPERSONALNAME","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTUNIFORMTITLE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SUMMARY","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SYSTEMDETAILS","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TARGETAUDIENCE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TITLESTATEMENT","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_UNIFORMTITLE","features":[82]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_VARYINGFORMTITLE","features":[82]},{"name":"KSPROPERTY_BOUNDS_LONG","features":[82]},{"name":"KSPROPERTY_BOUNDS_LONGLONG","features":[82]},{"name":"KSPROPERTY_BTAUDIO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_AUTO_EXPOSURE_PRIORITY","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ADVANCEDPHOTO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_BACKGROUNDSEGMENTATION","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_CAMERAANGLEOFFSET","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW_CONFIGCAPS","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END2","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EVCOMPENSATION","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EXPOSUREMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EYEGAZECORRECTION","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEAUTH_MODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEDETECTION","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FIELDOFVIEW","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FLASHMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSPRIORITY","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSSTATE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_HISTOGRAM","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_IRTORCHMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO_ADVANCED","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MAXVIDFPS_PHOTORES","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MCC","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_METADATA","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OIS","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OPTIMIZATIONHINT","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOCONFIRMATION","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOFRAMERATE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMAXFRAMERATE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTHUMBNAIL","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTRIGGERTIME","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROFILE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROPERTY","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_RELATIVEPANELOPTIMIZATION","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_CONFIGCAPS","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_ISPCONTROL","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SCENEMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SECURE_MODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_TORCHMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VFR","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOHDR","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOSTABILIZATION","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOTEMPORALDENOISING","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WARMSTART","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WHITEBALANCEMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ZOOM","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ABSOLUTE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ASYNCHRONOUS","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_AUTO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_MANUAL","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_AUTO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_AUTO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_MANUAL","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_OFF","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_ON","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_PROPERTY_ID","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_S","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH_S","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_EXCLUSIVE_WITH_RECORD","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_PROPERTY_ID","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_S","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_SEQUENCE_EXCLUSIVE_WITH_RECORD","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_FOCAL_LENGTH_S","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S2","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PAN","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PAN_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CAPABILITY","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CLEAR","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_PROPERTY","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_SET","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_PRIVACY","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_EXPOSURE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_FOCUS","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_WB","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONVERGEMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_ASYNC","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_AUTO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_MANUAL","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_PROPERTY_ID","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_S","features":[1,82]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_S","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_S2","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_SCANMODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_S_EX","features":[1,82]},{"name":"KSPROPERTY_CAMERACONTROL_TILT","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_TILT_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_AUTO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_AUTO","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_MANUAL","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_HIGH","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_LOW","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_MEDIUM","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_OFF","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_S","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE_PROPERTY_ID","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM","features":[82]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM_RELATIVE","features":[82]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_CLEAR","features":[82]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_FLAGS","features":[82]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_SET","features":[82]},{"name":"KSPROPERTY_CLOCK","features":[82]},{"name":"KSPROPERTY_CLOCK_CORRELATEDPHYSICALTIME","features":[82]},{"name":"KSPROPERTY_CLOCK_CORRELATEDTIME","features":[82]},{"name":"KSPROPERTY_CLOCK_PHYSICALTIME","features":[82]},{"name":"KSPROPERTY_CLOCK_RESOLUTION","features":[82]},{"name":"KSPROPERTY_CLOCK_STATE","features":[82]},{"name":"KSPROPERTY_CLOCK_TIME","features":[82]},{"name":"KSPROPERTY_CONNECTION","features":[82]},{"name":"KSPROPERTY_CONNECTION_ACQUIREORDERING","features":[82]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING","features":[82]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING_EX","features":[82]},{"name":"KSPROPERTY_CONNECTION_DATAFORMAT","features":[82]},{"name":"KSPROPERTY_CONNECTION_PRIORITY","features":[82]},{"name":"KSPROPERTY_CONNECTION_PROPOSEDATAFORMAT","features":[82]},{"name":"KSPROPERTY_CONNECTION_STARTAT","features":[82]},{"name":"KSPROPERTY_CONNECTION_STATE","features":[82]},{"name":"KSPROPERTY_COPYPROT","features":[82]},{"name":"KSPROPERTY_COPY_MACROVISION","features":[82]},{"name":"KSPROPERTY_CROSSBAR_ACTIVE_S","features":[82]},{"name":"KSPROPERTY_CROSSBAR_CAN_ROUTE","features":[82]},{"name":"KSPROPERTY_CROSSBAR_CAPS","features":[82]},{"name":"KSPROPERTY_CROSSBAR_CAPS_S","features":[82]},{"name":"KSPROPERTY_CROSSBAR_INPUT_ACTIVE","features":[82]},{"name":"KSPROPERTY_CROSSBAR_PININFO","features":[82]},{"name":"KSPROPERTY_CROSSBAR_PININFO_S","features":[82]},{"name":"KSPROPERTY_CROSSBAR_ROUTE","features":[82]},{"name":"KSPROPERTY_CROSSBAR_ROUTE_S","features":[82]},{"name":"KSPROPERTY_CURRENT_CAPTURE_SURFACE","features":[82]},{"name":"KSPROPERTY_CYCLIC","features":[82]},{"name":"KSPROPERTY_CYCLIC_POSITION","features":[82]},{"name":"KSPROPERTY_DESCRIPTION","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_ALL","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEANGLES","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEORIENTATION","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEOUTSIDEVOLUME","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MAXDISTANCE","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MINDISTANCE","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MODE","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_POSITION","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_VELOCITY","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALL","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALLOCATION","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_BATCH","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DISTANCEFACTOR","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DOPPLERFACTOR","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ORIENTATION","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_POSITION","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ROLLOFFFACTOR","features":[82]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_VELOCITY","features":[82]},{"name":"KSPROPERTY_DISPLAY_ADAPTER_GUID","features":[82]},{"name":"KSPROPERTY_DRMAUDIOSTREAM","features":[82]},{"name":"KSPROPERTY_DRMAUDIOSTREAM_CONTENTID","features":[82]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT","features":[82]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT_S","features":[82]},{"name":"KSPROPERTY_DVDCOPY_CHLG_KEY","features":[82]},{"name":"KSPROPERTY_DVDCOPY_DEC_KEY2","features":[82]},{"name":"KSPROPERTY_DVDCOPY_DISC_KEY","features":[82]},{"name":"KSPROPERTY_DVDCOPY_DVD_KEY1","features":[82]},{"name":"KSPROPERTY_DVDCOPY_REGION","features":[82]},{"name":"KSPROPERTY_DVDCOPY_SET_COPY_STATE","features":[82]},{"name":"KSPROPERTY_DVDCOPY_TITLE_KEY","features":[82]},{"name":"KSPROPERTY_DVDSUBPIC","features":[82]},{"name":"KSPROPERTY_DVDSUBPIC_COMPOSIT_ON","features":[82]},{"name":"KSPROPERTY_DVDSUBPIC_HLI","features":[82]},{"name":"KSPROPERTY_DVDSUBPIC_PALETTE","features":[82]},{"name":"KSPROPERTY_EXTDEVICE","features":[82]},{"name":"KSPROPERTY_EXTDEVICE_CAPABILITIES","features":[82]},{"name":"KSPROPERTY_EXTDEVICE_ID","features":[82]},{"name":"KSPROPERTY_EXTDEVICE_PORT","features":[82]},{"name":"KSPROPERTY_EXTDEVICE_POWER_STATE","features":[82]},{"name":"KSPROPERTY_EXTDEVICE_S","features":[82]},{"name":"KSPROPERTY_EXTDEVICE_VERSION","features":[82]},{"name":"KSPROPERTY_EXTENSION_UNIT","features":[82]},{"name":"KSPROPERTY_EXTENSION_UNIT_CONTROL","features":[82]},{"name":"KSPROPERTY_EXTENSION_UNIT_INFO","features":[82]},{"name":"KSPROPERTY_EXTENSION_UNIT_PASS_THROUGH","features":[82]},{"name":"KSPROPERTY_EXTXPORT","features":[82]},{"name":"KSPROPERTY_EXTXPORT_ATN_SEARCH","features":[82]},{"name":"KSPROPERTY_EXTXPORT_CAPABILITIES","features":[82]},{"name":"KSPROPERTY_EXTXPORT_INPUT_SIGNAL_MODE","features":[82]},{"name":"KSPROPERTY_EXTXPORT_LOAD_MEDIUM","features":[82]},{"name":"KSPROPERTY_EXTXPORT_MEDIUM_INFO","features":[82]},{"name":"KSPROPERTY_EXTXPORT_NODE_S","features":[1,82]},{"name":"KSPROPERTY_EXTXPORT_OUTPUT_SIGNAL_MODE","features":[82]},{"name":"KSPROPERTY_EXTXPORT_RTC_SEARCH","features":[82]},{"name":"KSPROPERTY_EXTXPORT_S","features":[1,82]},{"name":"KSPROPERTY_EXTXPORT_STATE","features":[82]},{"name":"KSPROPERTY_EXTXPORT_STATE_NOTIFY","features":[82]},{"name":"KSPROPERTY_EXTXPORT_TIMECODE_SEARCH","features":[82]},{"name":"KSPROPERTY_FMRX_ANTENNAENDPOINTID","features":[82]},{"name":"KSPROPERTY_FMRX_CONTROL","features":[82]},{"name":"KSPROPERTY_FMRX_ENDPOINTID","features":[82]},{"name":"KSPROPERTY_FMRX_STATE","features":[82]},{"name":"KSPROPERTY_FMRX_TOPOLOGY","features":[82]},{"name":"KSPROPERTY_FMRX_VOLUME","features":[82]},{"name":"KSPROPERTY_GENERAL","features":[82]},{"name":"KSPROPERTY_GENERAL_COMPONENTID","features":[82]},{"name":"KSPROPERTY_HRTF3D","features":[82]},{"name":"KSPROPERTY_HRTF3D_FILTER_FORMAT","features":[82]},{"name":"KSPROPERTY_HRTF3D_INITIALIZE","features":[82]},{"name":"KSPROPERTY_HRTF3D_PARAMS","features":[82]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO","features":[82]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO_FORMATINFORMATION","features":[82]},{"name":"KSPROPERTY_ITD3D","features":[82]},{"name":"KSPROPERTY_ITD3D_PARAMS","features":[82]},{"name":"KSPROPERTY_JACK","features":[82]},{"name":"KSPROPERTY_JACK_CONTAINERID","features":[82]},{"name":"KSPROPERTY_JACK_DESCRIPTION","features":[82]},{"name":"KSPROPERTY_JACK_DESCRIPTION2","features":[82]},{"name":"KSPROPERTY_JACK_DESCRIPTION3","features":[82]},{"name":"KSPROPERTY_JACK_SINK_INFO","features":[82]},{"name":"KSPROPERTY_MAP_CAPTURE_HANDLE_TO_VRAM_ADDRESS","features":[82]},{"name":"KSPROPERTY_MEDIAAVAILABLE","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_AVAILABLE","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_CAPABILITIES","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_CONVERTTIMEFORMAT","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_DURATION","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_FORMATS","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_POSITION","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_POSITIONS","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_PREROLL","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_STOPPOSITION","features":[82]},{"name":"KSPROPERTY_MEDIASEEKING_TIMEFORMAT","features":[82]},{"name":"KSPROPERTY_MEMBERSHEADER","features":[82]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_MULTICHANNEL","features":[82]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_UNIFORM","features":[82]},{"name":"KSPROPERTY_MEMBER_FLAG_DEFAULT","features":[82]},{"name":"KSPROPERTY_MEMBER_RANGES","features":[82]},{"name":"KSPROPERTY_MEMBER_STEPPEDRANGES","features":[82]},{"name":"KSPROPERTY_MEMBER_VALUES","features":[82]},{"name":"KSPROPERTY_MEMORY_TRANSPORT","features":[82]},{"name":"KSPROPERTY_MPEG2VID","features":[82]},{"name":"KSPROPERTY_MPEG2VID_16_9_PANSCAN","features":[82]},{"name":"KSPROPERTY_MPEG2VID_16_9_RECT","features":[82]},{"name":"KSPROPERTY_MPEG2VID_4_3_RECT","features":[82]},{"name":"KSPROPERTY_MPEG2VID_CUR_MODE","features":[82]},{"name":"KSPROPERTY_MPEG2VID_MODES","features":[82]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_ATTRIBUTES","features":[82]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_SD_BOX","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENTTOPICS_XML","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENT_INFO","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_INFO","features":[1,82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE_EVENTSINFO","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTP","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_HEADER","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_CUSTOM","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_DISABLE","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_HOSTNTP","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_PROPERTY","features":[82]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_URI","features":[82]},{"name":"KSPROPERTY_ONESHOT_DISCONNECT","features":[82]},{"name":"KSPROPERTY_ONESHOT_RECONNECT","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE_CLIPLIST","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORKEY","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORREF","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE_DISPLAYCHANGE","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE_INTERESTS","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE_PALETTE","features":[82]},{"name":"KSPROPERTY_OVERLAYUPDATE_VIDEOPOSITION","features":[82]},{"name":"KSPROPERTY_PIN","features":[82]},{"name":"KSPROPERTY_PIN_CATEGORY","features":[82]},{"name":"KSPROPERTY_PIN_CINSTANCES","features":[82]},{"name":"KSPROPERTY_PIN_COMMUNICATION","features":[82]},{"name":"KSPROPERTY_PIN_CONSTRAINEDDATARANGES","features":[82]},{"name":"KSPROPERTY_PIN_CTYPES","features":[82]},{"name":"KSPROPERTY_PIN_DATAFLOW","features":[82]},{"name":"KSPROPERTY_PIN_DATAINTERSECTION","features":[82]},{"name":"KSPROPERTY_PIN_DATARANGES","features":[82]},{"name":"KSPROPERTY_PIN_FLAGS_ATTRIBUTE_RANGE_AWARE","features":[82]},{"name":"KSPROPERTY_PIN_FLAGS_MASK","features":[82]},{"name":"KSPROPERTY_PIN_GLOBALCINSTANCES","features":[82]},{"name":"KSPROPERTY_PIN_INTERFACES","features":[82]},{"name":"KSPROPERTY_PIN_MEDIUMS","features":[82]},{"name":"KSPROPERTY_PIN_MODEDATAFORMATS","features":[82]},{"name":"KSPROPERTY_PIN_NAME","features":[82]},{"name":"KSPROPERTY_PIN_NECESSARYINSTANCES","features":[82]},{"name":"KSPROPERTY_PIN_PHYSICALCONNECTION","features":[82]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT","features":[82]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT2","features":[82]},{"name":"KSPROPERTY_POSITIONS","features":[82]},{"name":"KSPROPERTY_PREFERRED_CAPTURE_SURFACE","features":[82]},{"name":"KSPROPERTY_QUALITY","features":[82]},{"name":"KSPROPERTY_QUALITY_ERROR","features":[82]},{"name":"KSPROPERTY_QUALITY_REPORT","features":[82]},{"name":"KSPROPERTY_RAW_AVC_CMD","features":[82]},{"name":"KSPROPERTY_RTAUDIO","features":[82]},{"name":"KSPROPERTY_RTAUDIO_BUFFER","features":[82]},{"name":"KSPROPERTY_RTAUDIO_BUFFER_WITH_NOTIFICATION","features":[82]},{"name":"KSPROPERTY_RTAUDIO_CLOCKREGISTER","features":[82]},{"name":"KSPROPERTY_RTAUDIO_GETPOSITIONFUNCTION","features":[82]},{"name":"KSPROPERTY_RTAUDIO_GETREADPACKET","features":[82]},{"name":"KSPROPERTY_RTAUDIO_HWLATENCY","features":[82]},{"name":"KSPROPERTY_RTAUDIO_PACKETCOUNT","features":[82]},{"name":"KSPROPERTY_RTAUDIO_PACKETVREGISTER","features":[82]},{"name":"KSPROPERTY_RTAUDIO_POSITIONREGISTER","features":[82]},{"name":"KSPROPERTY_RTAUDIO_PRESENTATION_POSITION","features":[82]},{"name":"KSPROPERTY_RTAUDIO_QUERY_NOTIFICATION_SUPPORT","features":[82]},{"name":"KSPROPERTY_RTAUDIO_REGISTER_NOTIFICATION_EVENT","features":[82]},{"name":"KSPROPERTY_RTAUDIO_SETWRITEPACKET","features":[82]},{"name":"KSPROPERTY_RTAUDIO_UNREGISTER_NOTIFICATION_EVENT","features":[82]},{"name":"KSPROPERTY_RTC_READER","features":[82]},{"name":"KSPROPERTY_SELECTOR_NODE_S","features":[82]},{"name":"KSPROPERTY_SELECTOR_NUM_SOURCES","features":[82]},{"name":"KSPROPERTY_SELECTOR_S","features":[82]},{"name":"KSPROPERTY_SELECTOR_SOURCE_NODE_ID","features":[82]},{"name":"KSPROPERTY_SERIAL","features":[82]},{"name":"KSPROPERTY_SERIALHDR","features":[82]},{"name":"KSPROPERTY_SOUNDDETECTOR","features":[82]},{"name":"KSPROPERTY_SOUNDDETECTOR_ARMED","features":[82]},{"name":"KSPROPERTY_SOUNDDETECTOR_MATCHRESULT","features":[82]},{"name":"KSPROPERTY_SOUNDDETECTOR_PATTERNS","features":[82]},{"name":"KSPROPERTY_SOUNDDETECTOR_RESET","features":[82]},{"name":"KSPROPERTY_SOUNDDETECTOR_STREAMINGSUPPORT","features":[82]},{"name":"KSPROPERTY_SOUNDDETECTOR_SUPPORTEDPATTERNS","features":[82]},{"name":"KSPROPERTY_SPHLI","features":[82]},{"name":"KSPROPERTY_SPPAL","features":[82]},{"name":"KSPROPERTY_STEPPING_LONG","features":[82]},{"name":"KSPROPERTY_STEPPING_LONGLONG","features":[82]},{"name":"KSPROPERTY_STREAM","features":[82]},{"name":"KSPROPERTY_STREAMINTERFACE","features":[82]},{"name":"KSPROPERTY_STREAMINTERFACE_HEADERSIZE","features":[82]},{"name":"KSPROPERTY_STREAM_ALLOCATOR","features":[82]},{"name":"KSPROPERTY_STREAM_DEGRADATION","features":[82]},{"name":"KSPROPERTY_STREAM_FRAMETIME","features":[82]},{"name":"KSPROPERTY_STREAM_MASTERCLOCK","features":[82]},{"name":"KSPROPERTY_STREAM_PIPE_ID","features":[82]},{"name":"KSPROPERTY_STREAM_PRESENTATIONEXTENT","features":[82]},{"name":"KSPROPERTY_STREAM_PRESENTATIONTIME","features":[82]},{"name":"KSPROPERTY_STREAM_QUALITY","features":[82]},{"name":"KSPROPERTY_STREAM_RATE","features":[82]},{"name":"KSPROPERTY_STREAM_RATECAPABILITY","features":[82]},{"name":"KSPROPERTY_STREAM_TIMEFORMAT","features":[82]},{"name":"KSPROPERTY_TELEPHONY_CALLCONTROL","features":[82]},{"name":"KSPROPERTY_TELEPHONY_CALLHOLD","features":[82]},{"name":"KSPROPERTY_TELEPHONY_CALLINFO","features":[82]},{"name":"KSPROPERTY_TELEPHONY_CONTROL","features":[82]},{"name":"KSPROPERTY_TELEPHONY_ENDPOINTIDPAIR","features":[82]},{"name":"KSPROPERTY_TELEPHONY_MUTE_TX","features":[82]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERCHANGE","features":[82]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERID","features":[82]},{"name":"KSPROPERTY_TELEPHONY_TOPOLOGY","features":[82]},{"name":"KSPROPERTY_TELEPHONY_VOLUME","features":[82]},{"name":"KSPROPERTY_TIMECODE","features":[82]},{"name":"KSPROPERTY_TIMECODE_NODE_S","features":[82]},{"name":"KSPROPERTY_TIMECODE_READER","features":[82]},{"name":"KSPROPERTY_TIMECODE_S","features":[82]},{"name":"KSPROPERTY_TOPOLOGY","features":[82]},{"name":"KSPROPERTY_TOPOLOGYNODE","features":[82]},{"name":"KSPROPERTY_TOPOLOGYNODE_ENABLE","features":[82]},{"name":"KSPROPERTY_TOPOLOGYNODE_RESET","features":[82]},{"name":"KSPROPERTY_TOPOLOGY_CATEGORIES","features":[82]},{"name":"KSPROPERTY_TOPOLOGY_CONNECTIONS","features":[82]},{"name":"KSPROPERTY_TOPOLOGY_NAME","features":[82]},{"name":"KSPROPERTY_TOPOLOGY_NODES","features":[82]},{"name":"KSPROPERTY_TUNER","features":[82]},{"name":"KSPROPERTY_TUNER_CAPS","features":[82]},{"name":"KSPROPERTY_TUNER_CAPS_S","features":[82]},{"name":"KSPROPERTY_TUNER_FREQUENCY","features":[82]},{"name":"KSPROPERTY_TUNER_FREQUENCY_S","features":[82]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM","features":[82]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM_S","features":[82]},{"name":"KSPROPERTY_TUNER_INPUT","features":[82]},{"name":"KSPROPERTY_TUNER_INPUT_S","features":[82]},{"name":"KSPROPERTY_TUNER_MODE","features":[82]},{"name":"KSPROPERTY_TUNER_MODES","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_AM_RADIO","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_ATSC","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_CAPS","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_CAPS_S","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_DSS","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_FM_RADIO","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_S","features":[82]},{"name":"KSPROPERTY_TUNER_MODE_TV","features":[82]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS","features":[82]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS_S","features":[82]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS","features":[82]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS_S","features":[1,82]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS","features":[82]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS_S","features":[82]},{"name":"KSPROPERTY_TUNER_STANDARD","features":[82]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE","features":[82]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE_S","features":[1,82]},{"name":"KSPROPERTY_TUNER_STANDARD_S","features":[82]},{"name":"KSPROPERTY_TUNER_STATUS","features":[82]},{"name":"KSPROPERTY_TUNER_STATUS_S","features":[82]},{"name":"KSPROPERTY_TVAUDIO_CAPS","features":[82]},{"name":"KSPROPERTY_TVAUDIO_CAPS_S","features":[82]},{"name":"KSPROPERTY_TVAUDIO_CURRENTLY_AVAILABLE_MODES","features":[82]},{"name":"KSPROPERTY_TVAUDIO_MODE","features":[82]},{"name":"KSPROPERTY_TVAUDIO_S","features":[82]},{"name":"KSPROPERTY_TYPE_BASICSUPPORT","features":[82]},{"name":"KSPROPERTY_TYPE_COPYPAYLOAD","features":[82]},{"name":"KSPROPERTY_TYPE_DEFAULTVALUES","features":[82]},{"name":"KSPROPERTY_TYPE_FSFILTERSCOPE","features":[82]},{"name":"KSPROPERTY_TYPE_GET","features":[82]},{"name":"KSPROPERTY_TYPE_GETPAYLOADSIZE","features":[82]},{"name":"KSPROPERTY_TYPE_HIGHPRIORITY","features":[82]},{"name":"KSPROPERTY_TYPE_RELATIONS","features":[82]},{"name":"KSPROPERTY_TYPE_SERIALIZERAW","features":[82]},{"name":"KSPROPERTY_TYPE_SERIALIZESET","features":[82]},{"name":"KSPROPERTY_TYPE_SERIALIZESIZE","features":[82]},{"name":"KSPROPERTY_TYPE_SET","features":[82]},{"name":"KSPROPERTY_TYPE_SETSUPPORT","features":[82]},{"name":"KSPROPERTY_TYPE_TOPOLOGY","features":[82]},{"name":"KSPROPERTY_TYPE_UNSERIALIZERAW","features":[82]},{"name":"KSPROPERTY_TYPE_UNSERIALIZESET","features":[82]},{"name":"KSPROPERTY_VBICAP","features":[82]},{"name":"KSPROPERTY_VBICAP_PROPERTIES_PROTECTION","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_CC_SUBSTREAMS_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_NABTS_SUBSTREAMS_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_DISCOVERED_BIT_ARRAY","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_REQUESTED_BIT_ARRAY","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_PIN_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_PIN_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_PIN_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_S","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_DISCOVERED_BIT_ARRAY","features":[82]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_REQUESTED_BIT_ARRAY","features":[82]},{"name":"KSPROPERTY_VIDCAP_CAMERACONTROL","features":[82]},{"name":"KSPROPERTY_VIDCAP_CROSSBAR","features":[82]},{"name":"KSPROPERTY_VIDCAP_DROPPEDFRAMES","features":[82]},{"name":"KSPROPERTY_VIDCAP_SELECTOR","features":[82]},{"name":"KSPROPERTY_VIDCAP_TVAUDIO","features":[82]},{"name":"KSPROPERTY_VIDCAP_VIDEOCOMPRESSION","features":[82]},{"name":"KSPROPERTY_VIDCAP_VIDEOCONTROL","features":[82]},{"name":"KSPROPERTY_VIDCAP_VIDEODECODER","features":[82]},{"name":"KSPROPERTY_VIDCAP_VIDEOENCODER","features":[82]},{"name":"KSPROPERTY_VIDCAP_VIDEOPROCAMP","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO_S","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_KEYFRAME_RATE","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_FRAME_SIZE","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_KEYFRAME","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_PFRAMES_PER_KEYFRAME","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_QUALITY","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S1","features":[82]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_WINDOWSIZE","features":[82]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE","features":[82]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE_S","features":[1,82]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS","features":[82]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS_S","features":[82]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES","features":[82]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES_S","features":[1,82]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE","features":[82]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE_S","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_CAPS","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_CAPS_S","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_OUTPUT_ENABLE","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_S","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_STANDARD","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_STATUS","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2_S","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_STATUS_S","features":[82]},{"name":"KSPROPERTY_VIDEODECODER_VCR_TIMING","features":[82]},{"name":"KSPROPERTY_VIDEOENCODER_CAPS","features":[82]},{"name":"KSPROPERTY_VIDEOENCODER_CC_ENABLE","features":[82]},{"name":"KSPROPERTY_VIDEOENCODER_COPYPROTECTION","features":[82]},{"name":"KSPROPERTY_VIDEOENCODER_S","features":[82]},{"name":"KSPROPERTY_VIDEOENCODER_STANDARD","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_BACKLIGHT_COMPENSATION","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_BRIGHTNESS","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_COLORENABLE","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_CONTRAST","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER_LIMIT","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_AUTO","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_MANUAL","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAIN","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAMMA","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_HUE","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S2","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_POWERLINE_FREQUENCY","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_S","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_S2","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_SATURATION","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_SHARPNESS","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE","features":[82]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE_COMPONENT","features":[82]},{"name":"KSPROPERTY_VIDMEM_TRANSPORT","features":[82]},{"name":"KSPROPERTY_VPCONFIG","features":[82]},{"name":"KSPROPERTY_VPCONFIG_DDRAWHANDLE","features":[82]},{"name":"KSPROPERTY_VPCONFIG_DDRAWSURFACEHANDLE","features":[82]},{"name":"KSPROPERTY_VPCONFIG_DECIMATIONCAPABILITY","features":[82]},{"name":"KSPROPERTY_VPCONFIG_GETCONNECTINFO","features":[82]},{"name":"KSPROPERTY_VPCONFIG_GETVIDEOFORMAT","features":[82]},{"name":"KSPROPERTY_VPCONFIG_INFORMVPINPUT","features":[82]},{"name":"KSPROPERTY_VPCONFIG_INVERTPOLARITY","features":[82]},{"name":"KSPROPERTY_VPCONFIG_MAXPIXELRATE","features":[82]},{"name":"KSPROPERTY_VPCONFIG_NUMCONNECTINFO","features":[82]},{"name":"KSPROPERTY_VPCONFIG_NUMVIDEOFORMAT","features":[82]},{"name":"KSPROPERTY_VPCONFIG_SCALEFACTOR","features":[82]},{"name":"KSPROPERTY_VPCONFIG_SETCONNECTINFO","features":[82]},{"name":"KSPROPERTY_VPCONFIG_SETVIDEOFORMAT","features":[82]},{"name":"KSPROPERTY_VPCONFIG_SURFACEPARAMS","features":[82]},{"name":"KSPROPERTY_VPCONFIG_VIDEOPORTID","features":[82]},{"name":"KSPROPERTY_VPCONFIG_VPDATAINFO","features":[82]},{"name":"KSPROPERTY_WAVE","features":[82]},{"name":"KSPROPERTY_WAVE_BUFFER","features":[82]},{"name":"KSPROPERTY_WAVE_COMPATIBLE_CAPABILITIES","features":[82]},{"name":"KSPROPERTY_WAVE_FREQUENCY","features":[82]},{"name":"KSPROPERTY_WAVE_INPUT_CAPABILITIES","features":[82]},{"name":"KSPROPERTY_WAVE_OUTPUT_CAPABILITIES","features":[82]},{"name":"KSPROPERTY_WAVE_PAN","features":[82]},{"name":"KSPROPERTY_WAVE_QUEUED_POSITION","features":[82]},{"name":"KSPROPERTY_WAVE_VOLUME","features":[82]},{"name":"KSPROPSETID_AC3","features":[82]},{"name":"KSPROPSETID_Audio","features":[82]},{"name":"KSPROPSETID_AudioBufferDuration","features":[82]},{"name":"KSPROPSETID_AudioDecoderOut","features":[82]},{"name":"KSPROPSETID_AudioEngine","features":[82]},{"name":"KSPROPSETID_AudioModule","features":[82]},{"name":"KSPROPSETID_AudioPosture","features":[82]},{"name":"KSPROPSETID_AudioResourceManagement","features":[82]},{"name":"KSPROPSETID_AudioSignalProcessing","features":[82]},{"name":"KSPROPSETID_Bibliographic","features":[82]},{"name":"KSPROPSETID_BtAudio","features":[82]},{"name":"KSPROPSETID_Clock","features":[82]},{"name":"KSPROPSETID_Connection","features":[82]},{"name":"KSPROPSETID_CopyProt","features":[82]},{"name":"KSPROPSETID_Cyclic","features":[82]},{"name":"KSPROPSETID_DirectSound3DBuffer","features":[82]},{"name":"KSPROPSETID_DirectSound3DListener","features":[82]},{"name":"KSPROPSETID_DrmAudioStream","features":[82]},{"name":"KSPROPSETID_DvdSubPic","features":[82]},{"name":"KSPROPSETID_FMRXControl","features":[82]},{"name":"KSPROPSETID_FMRXTopology","features":[82]},{"name":"KSPROPSETID_General","features":[82]},{"name":"KSPROPSETID_Hrtf3d","features":[82]},{"name":"KSPROPSETID_InterleavedAudio","features":[82]},{"name":"KSPROPSETID_Itd3d","features":[82]},{"name":"KSPROPSETID_Jack","features":[82]},{"name":"KSPROPSETID_MPEG4_MediaType_Attributes","features":[82]},{"name":"KSPROPSETID_MediaSeeking","features":[82]},{"name":"KSPROPSETID_MemoryTransport","features":[82]},{"name":"KSPROPSETID_Mpeg2Vid","features":[82]},{"name":"KSPROPSETID_OverlayUpdate","features":[82]},{"name":"KSPROPSETID_Pin","features":[82]},{"name":"KSPROPSETID_PinMDLCacheClearProp","features":[82]},{"name":"KSPROPSETID_Quality","features":[82]},{"name":"KSPROPSETID_RtAudio","features":[82]},{"name":"KSPROPSETID_SoundDetector","features":[82]},{"name":"KSPROPSETID_SoundDetector2","features":[82]},{"name":"KSPROPSETID_Stream","features":[82]},{"name":"KSPROPSETID_StreamAllocator","features":[82]},{"name":"KSPROPSETID_StreamInterface","features":[82]},{"name":"KSPROPSETID_TSRateChange","features":[82]},{"name":"KSPROPSETID_TelephonyControl","features":[82]},{"name":"KSPROPSETID_TelephonyTopology","features":[82]},{"name":"KSPROPSETID_Topology","features":[82]},{"name":"KSPROPSETID_TopologyNode","features":[82]},{"name":"KSPROPSETID_VBICAP_PROPERTIES","features":[82]},{"name":"KSPROPSETID_VBICodecFiltering","features":[82]},{"name":"KSPROPSETID_VPConfig","features":[82]},{"name":"KSPROPSETID_VPVBIConfig","features":[82]},{"name":"KSPROPSETID_VramCapture","features":[82]},{"name":"KSPROPSETID_Wave","features":[82]},{"name":"KSPROPTYPESETID_General","features":[82]},{"name":"KSP_NODE","features":[82]},{"name":"KSP_PIN","features":[82]},{"name":"KSP_TIMEFORMAT","features":[82]},{"name":"KSQUALITY","features":[82]},{"name":"KSQUALITY_MANAGER","features":[1,82]},{"name":"KSQUERYBUFFER","features":[1,82]},{"name":"KSRATE","features":[82]},{"name":"KSRATE_CAPABILITY","features":[82]},{"name":"KSRATE_NOPRESENTATIONDURATION","features":[82]},{"name":"KSRATE_NOPRESENTATIONSTART","features":[82]},{"name":"KSRELATIVEEVENT","features":[1,82]},{"name":"KSRELATIVEEVENT_FLAG_HANDLE","features":[82]},{"name":"KSRELATIVEEVENT_FLAG_POINTER","features":[82]},{"name":"KSRESET","features":[82]},{"name":"KSRESET_BEGIN","features":[82]},{"name":"KSRESET_END","features":[82]},{"name":"KSRESOLUTION","features":[82]},{"name":"KSRTAUDIO_BUFFER","features":[1,82]},{"name":"KSRTAUDIO_BUFFER32","features":[1,82]},{"name":"KSRTAUDIO_BUFFER_PROPERTY","features":[82]},{"name":"KSRTAUDIO_BUFFER_PROPERTY32","features":[82]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION","features":[82]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION32","features":[82]},{"name":"KSRTAUDIO_GETREADPACKET_INFO","features":[1,82]},{"name":"KSRTAUDIO_HWLATENCY","features":[82]},{"name":"KSRTAUDIO_HWREGISTER","features":[82]},{"name":"KSRTAUDIO_HWREGISTER32","features":[82]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY","features":[82]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY32","features":[82]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY","features":[1,82]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY32","features":[82]},{"name":"KSRTAUDIO_PACKETVREGISTER","features":[82]},{"name":"KSRTAUDIO_PACKETVREGISTER_PROPERTY","features":[82]},{"name":"KSRTAUDIO_SETWRITEPACKET_INFO","features":[82]},{"name":"KSSOUNDDETECTORPROPERTY","features":[82]},{"name":"KSSTATE","features":[82]},{"name":"KSSTATE_ACQUIRE","features":[82]},{"name":"KSSTATE_PAUSE","features":[82]},{"name":"KSSTATE_RUN","features":[82]},{"name":"KSSTATE_STOP","features":[82]},{"name":"KSSTREAMALLOCATOR_STATUS","features":[82]},{"name":"KSSTREAMALLOCATOR_STATUS_EX","features":[82]},{"name":"KSSTREAM_FAILUREEXCEPTION","features":[82]},{"name":"KSSTREAM_HEADER","features":[82]},{"name":"KSSTREAM_HEADER","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_BUFFEREDTRANSFER","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_DATADISCONTINUITY","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_DURATIONVALID","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFPHOTOSEQUENCE","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFSTREAM","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_FLUSHONPAUSE","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_FRAMEINFO","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_LOOPEDDATA","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_METADATA","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_PERSIST_SAMPLE","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_PREROLL","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_SAMPLE_PERSISTED","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_SECUREBUFFERTRANSFER","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_SPLICEPOINT","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEDISCONTINUITY","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEVALID","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_TYPECHANGED","features":[82]},{"name":"KSSTREAM_HEADER_OPTIONSF_VRAM_DATA_TRANSFER","features":[82]},{"name":"KSSTREAM_HEADER_TRACK_COMPLETION_NUMBERS","features":[82]},{"name":"KSSTREAM_METADATA_INFO","features":[82]},{"name":"KSSTREAM_NONPAGED_DATA","features":[82]},{"name":"KSSTREAM_PAGED_DATA","features":[82]},{"name":"KSSTREAM_READ","features":[82]},{"name":"KSSTREAM_SEGMENT","features":[1,82]},{"name":"KSSTREAM_SYNCHRONOUS","features":[82]},{"name":"KSSTREAM_UVC_METADATA","features":[82]},{"name":"KSSTREAM_UVC_METADATATYPE_TIMESTAMP","features":[82]},{"name":"KSSTREAM_UVC_SECURE_ATTRIBUTE_SIZE","features":[82]},{"name":"KSSTREAM_WRITE","features":[82]},{"name":"KSSTRING_Allocator","features":[82]},{"name":"KSSTRING_AllocatorEx","features":[82]},{"name":"KSSTRING_Clock","features":[82]},{"name":"KSSTRING_Filter","features":[82]},{"name":"KSSTRING_Pin","features":[82]},{"name":"KSSTRING_TopologyNode","features":[82]},{"name":"KSTELEPHONY_CALLCONTROL","features":[82]},{"name":"KSTELEPHONY_CALLINFO","features":[82]},{"name":"KSTELEPHONY_PROVIDERCHANGE","features":[82]},{"name":"KSTIME","features":[82]},{"name":"KSTIME_FORMAT_BYTE","features":[82]},{"name":"KSTIME_FORMAT_FIELD","features":[82]},{"name":"KSTIME_FORMAT_FRAME","features":[82]},{"name":"KSTIME_FORMAT_MEDIA_TIME","features":[82]},{"name":"KSTIME_FORMAT_SAMPLE","features":[82]},{"name":"KSTOPOLOGY","features":[82]},{"name":"KSTOPOLOGY_CONNECTION","features":[82]},{"name":"KSTOPOLOGY_ENDPOINTID","features":[82]},{"name":"KSTOPOLOGY_ENDPOINTIDPAIR","features":[82]},{"name":"KSVPMAXPIXELRATE","features":[82]},{"name":"KSVPSIZE_PROP","features":[82]},{"name":"KSVPSURFACEPARAMS","features":[82]},{"name":"KSWAVETABLE_WAVE_DESC","features":[1,82]},{"name":"KSWAVE_BUFFER","features":[82]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_LOOPING","features":[82]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_STATIC","features":[82]},{"name":"KSWAVE_COMPATCAPS","features":[82]},{"name":"KSWAVE_COMPATCAPS_INPUT","features":[82]},{"name":"KSWAVE_COMPATCAPS_OUTPUT","features":[82]},{"name":"KSWAVE_INPUT_CAPABILITIES","features":[82]},{"name":"KSWAVE_OUTPUT_CAPABILITIES","features":[82]},{"name":"KSWAVE_VOLUME","features":[82]},{"name":"KS_AMCONTROL_COLORINFO_PRESENT","features":[82]},{"name":"KS_AMCONTROL_PAD_TO_16x9","features":[82]},{"name":"KS_AMCONTROL_PAD_TO_4x3","features":[82]},{"name":"KS_AMCONTROL_USED","features":[82]},{"name":"KS_AMPixAspectRatio","features":[82]},{"name":"KS_AMVPDATAINFO","features":[1,82]},{"name":"KS_AMVPDIMINFO","features":[1,82]},{"name":"KS_AMVPSIZE","features":[82]},{"name":"KS_AMVP_BEST_BANDWIDTH","features":[82]},{"name":"KS_AMVP_DO_NOT_CARE","features":[82]},{"name":"KS_AMVP_INPUT_SAME_AS_OUTPUT","features":[82]},{"name":"KS_AMVP_MODE","features":[82]},{"name":"KS_AMVP_MODE_BOBINTERLEAVED","features":[82]},{"name":"KS_AMVP_MODE_BOBNONINTERLEAVED","features":[82]},{"name":"KS_AMVP_MODE_SKIPEVEN","features":[82]},{"name":"KS_AMVP_MODE_SKIPODD","features":[82]},{"name":"KS_AMVP_MODE_WEAVE","features":[82]},{"name":"KS_AMVP_SELECTFORMATBY","features":[82]},{"name":"KS_AM_ExactRateChange","features":[82]},{"name":"KS_AM_PROPERTY_TS_RATE_CHANGE","features":[82]},{"name":"KS_AM_RATE_ExactRateChange","features":[82]},{"name":"KS_AM_RATE_MaxFullDataRate","features":[82]},{"name":"KS_AM_RATE_SimpleRateChange","features":[82]},{"name":"KS_AM_RATE_Step","features":[82]},{"name":"KS_AM_SimpleRateChange","features":[82]},{"name":"KS_AM_UseNewCSSKey","features":[82]},{"name":"KS_ANALOGVIDEOINFO","features":[1,82]},{"name":"KS_AnalogVideoStandard","features":[82]},{"name":"KS_AnalogVideo_NTSC_433","features":[82]},{"name":"KS_AnalogVideo_NTSC_M","features":[82]},{"name":"KS_AnalogVideo_NTSC_M_J","features":[82]},{"name":"KS_AnalogVideo_NTSC_Mask","features":[82]},{"name":"KS_AnalogVideo_None","features":[82]},{"name":"KS_AnalogVideo_PAL_60","features":[82]},{"name":"KS_AnalogVideo_PAL_B","features":[82]},{"name":"KS_AnalogVideo_PAL_D","features":[82]},{"name":"KS_AnalogVideo_PAL_G","features":[82]},{"name":"KS_AnalogVideo_PAL_H","features":[82]},{"name":"KS_AnalogVideo_PAL_I","features":[82]},{"name":"KS_AnalogVideo_PAL_M","features":[82]},{"name":"KS_AnalogVideo_PAL_Mask","features":[82]},{"name":"KS_AnalogVideo_PAL_N","features":[82]},{"name":"KS_AnalogVideo_PAL_N_COMBO","features":[82]},{"name":"KS_AnalogVideo_SECAM_B","features":[82]},{"name":"KS_AnalogVideo_SECAM_D","features":[82]},{"name":"KS_AnalogVideo_SECAM_G","features":[82]},{"name":"KS_AnalogVideo_SECAM_H","features":[82]},{"name":"KS_AnalogVideo_SECAM_K","features":[82]},{"name":"KS_AnalogVideo_SECAM_K1","features":[82]},{"name":"KS_AnalogVideo_SECAM_L","features":[82]},{"name":"KS_AnalogVideo_SECAM_L1","features":[82]},{"name":"KS_AnalogVideo_SECAM_Mask","features":[82]},{"name":"KS_BITMAPINFOHEADER","features":[82]},{"name":"KS_BI_BITFIELDS","features":[82]},{"name":"KS_BI_JPEG","features":[82]},{"name":"KS_BI_RGB","features":[82]},{"name":"KS_BI_RLE4","features":[82]},{"name":"KS_BI_RLE8","features":[82]},{"name":"KS_CAMERACONTROL_ASYNC_RESET","features":[82]},{"name":"KS_CAMERACONTROL_ASYNC_START","features":[82]},{"name":"KS_CAMERACONTROL_ASYNC_STOP","features":[82]},{"name":"KS_CAPTURE_ALLOC_INVALID","features":[82]},{"name":"KS_CAPTURE_ALLOC_SECURE_BUFFER","features":[82]},{"name":"KS_CAPTURE_ALLOC_SYSTEM","features":[82]},{"name":"KS_CAPTURE_ALLOC_SYSTEM_AGP","features":[82]},{"name":"KS_CAPTURE_ALLOC_VRAM","features":[82]},{"name":"KS_CAPTURE_ALLOC_VRAM_MAPPED","features":[82]},{"name":"KS_CC_SUBSTREAM_EVEN","features":[82]},{"name":"KS_CC_SUBSTREAM_FIELD1_MASK","features":[82]},{"name":"KS_CC_SUBSTREAM_FIELD2_MASK","features":[82]},{"name":"KS_CC_SUBSTREAM_ODD","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC1","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC2","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC3","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC4","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_T1","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_T2","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_T3","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_T4","features":[82]},{"name":"KS_CC_SUBSTREAM_SERVICE_XDS","features":[82]},{"name":"KS_COLCON","features":[82]},{"name":"KS_COMPRESSION","features":[82]},{"name":"KS_COPYPROTECT_RestrictDuplication","features":[82]},{"name":"KS_COPY_MACROVISION","features":[82]},{"name":"KS_COPY_MACROVISION_LEVEL","features":[82]},{"name":"KS_CameraControlAsyncOperation","features":[82]},{"name":"KS_CompressionCaps","features":[82]},{"name":"KS_CompressionCaps_CanBFrame","features":[82]},{"name":"KS_CompressionCaps_CanCrunch","features":[82]},{"name":"KS_CompressionCaps_CanKeyFrame","features":[82]},{"name":"KS_CompressionCaps_CanQuality","features":[82]},{"name":"KS_CompressionCaps_CanWindow","features":[82]},{"name":"KS_DATAFORMAT_H264VIDEOINFO","features":[82]},{"name":"KS_DATAFORMAT_IMAGEINFO","features":[82]},{"name":"KS_DATAFORMAT_MPEGVIDEOINFO2","features":[1,82]},{"name":"KS_DATAFORMAT_VBIINFOHEADER","features":[82]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER","features":[1,82]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER2","features":[1,82]},{"name":"KS_DATAFORMAT_VIDEOINFO_PALETTE","features":[1,82]},{"name":"KS_DATARANGE_ANALOGVIDEO","features":[1,82]},{"name":"KS_DATARANGE_H264_VIDEO","features":[1,82]},{"name":"KS_DATARANGE_IMAGE","features":[1,82]},{"name":"KS_DATARANGE_MPEG1_VIDEO","features":[1,82]},{"name":"KS_DATARANGE_MPEG2_VIDEO","features":[1,82]},{"name":"KS_DATARANGE_VIDEO","features":[1,82]},{"name":"KS_DATARANGE_VIDEO2","features":[1,82]},{"name":"KS_DATARANGE_VIDEO_PALETTE","features":[1,82]},{"name":"KS_DATARANGE_VIDEO_VBI","features":[1,82]},{"name":"KS_DVDCOPYSTATE","features":[82]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_NOT_REQUIRED","features":[82]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_REQUIRED","features":[82]},{"name":"KS_DVDCOPYSTATE_DONE","features":[82]},{"name":"KS_DVDCOPYSTATE_INITIALIZE","features":[82]},{"name":"KS_DVDCOPYSTATE_INITIALIZE_TITLE","features":[82]},{"name":"KS_DVDCOPY_BUSKEY","features":[82]},{"name":"KS_DVDCOPY_CHLGKEY","features":[82]},{"name":"KS_DVDCOPY_DISCKEY","features":[82]},{"name":"KS_DVDCOPY_REGION","features":[82]},{"name":"KS_DVDCOPY_SET_COPY_STATE","features":[82]},{"name":"KS_DVDCOPY_TITLEKEY","features":[82]},{"name":"KS_DVD_CGMS_COPY_ONCE","features":[82]},{"name":"KS_DVD_CGMS_COPY_PERMITTED","features":[82]},{"name":"KS_DVD_CGMS_COPY_PROTECT_MASK","features":[82]},{"name":"KS_DVD_CGMS_NO_COPY","features":[82]},{"name":"KS_DVD_CGMS_RESERVED_MASK","features":[82]},{"name":"KS_DVD_COPYRIGHTED","features":[82]},{"name":"KS_DVD_COPYRIGHT_MASK","features":[82]},{"name":"KS_DVD_NOT_COPYRIGHTED","features":[82]},{"name":"KS_DVD_SECTOR_NOT_PROTECTED","features":[82]},{"name":"KS_DVD_SECTOR_PROTECTED","features":[82]},{"name":"KS_DVD_SECTOR_PROTECT_MASK","features":[82]},{"name":"KS_DVD_YCrCb","features":[82]},{"name":"KS_DVD_YUV","features":[82]},{"name":"KS_FRAME_INFO","features":[1,82]},{"name":"KS_FRAMING_ITEM","features":[82]},{"name":"KS_FRAMING_RANGE","features":[82]},{"name":"KS_FRAMING_RANGE_WEIGHTED","features":[82]},{"name":"KS_H264VIDEOINFO","features":[82]},{"name":"KS_INTERLACE_1FieldPerSample","features":[82]},{"name":"KS_INTERLACE_DisplayModeBobOnly","features":[82]},{"name":"KS_INTERLACE_DisplayModeBobOrWeave","features":[82]},{"name":"KS_INTERLACE_DisplayModeMask","features":[82]},{"name":"KS_INTERLACE_DisplayModeWeaveOnly","features":[82]},{"name":"KS_INTERLACE_Field1First","features":[82]},{"name":"KS_INTERLACE_FieldPatBothIrregular","features":[82]},{"name":"KS_INTERLACE_FieldPatBothRegular","features":[82]},{"name":"KS_INTERLACE_FieldPatField1Only","features":[82]},{"name":"KS_INTERLACE_FieldPatField2Only","features":[82]},{"name":"KS_INTERLACE_FieldPatternMask","features":[82]},{"name":"KS_INTERLACE_IsInterlaced","features":[82]},{"name":"KS_INTERLACE_UNUSED","features":[82]},{"name":"KS_LogicalMemoryType","features":[82]},{"name":"KS_MACROVISION_DISABLED","features":[82]},{"name":"KS_MACROVISION_LEVEL1","features":[82]},{"name":"KS_MACROVISION_LEVEL2","features":[82]},{"name":"KS_MACROVISION_LEVEL3","features":[82]},{"name":"KS_MAX_SIZE_MPEG1_SEQUENCE_INFO","features":[82]},{"name":"KS_MPEG1VIDEOINFO","features":[1,82]},{"name":"KS_MPEG2Level","features":[82]},{"name":"KS_MPEG2Level_High","features":[82]},{"name":"KS_MPEG2Level_High1440","features":[82]},{"name":"KS_MPEG2Level_Low","features":[82]},{"name":"KS_MPEG2Level_Main","features":[82]},{"name":"KS_MPEG2Profile","features":[82]},{"name":"KS_MPEG2Profile_High","features":[82]},{"name":"KS_MPEG2Profile_Main","features":[82]},{"name":"KS_MPEG2Profile_SNRScalable","features":[82]},{"name":"KS_MPEG2Profile_Simple","features":[82]},{"name":"KS_MPEG2Profile_SpatiallyScalable","features":[82]},{"name":"KS_MPEG2_27MhzTimebase","features":[82]},{"name":"KS_MPEG2_DSS_UserData","features":[82]},{"name":"KS_MPEG2_DVB_UserData","features":[82]},{"name":"KS_MPEG2_DVDLine21Field1","features":[82]},{"name":"KS_MPEG2_DVDLine21Field2","features":[82]},{"name":"KS_MPEG2_DoPanScan","features":[82]},{"name":"KS_MPEG2_FilmCameraMode","features":[82]},{"name":"KS_MPEG2_LetterboxAnalogOut","features":[82]},{"name":"KS_MPEG2_SourceIsLetterboxed","features":[82]},{"name":"KS_MPEG2_WidescreenAnalogOut","features":[82]},{"name":"KS_MPEGAUDIOINFO","features":[82]},{"name":"KS_MPEGAUDIOINFO_27MhzTimebase","features":[82]},{"name":"KS_MPEGVIDEOINFO2","features":[1,82]},{"name":"KS_MemoryTypeAnyHost","features":[82]},{"name":"KS_MemoryTypeDeviceHostMapped","features":[82]},{"name":"KS_MemoryTypeDeviceSpecific","features":[82]},{"name":"KS_MemoryTypeDontCare","features":[82]},{"name":"KS_MemoryTypeKernelNonPaged","features":[82]},{"name":"KS_MemoryTypeKernelPaged","features":[82]},{"name":"KS_MemoryTypeUser","features":[82]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_ADVERTISER_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_CONTENT_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_MICROSOFT_RESERVED_TEST_DATA_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_ADVERTISER_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_CONTENT_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_ADVERTISER_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_ADVERTISER_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_CONTENT_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_ADVERTISER_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_CONTENT_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_ADVERTISER_BASE","features":[82]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_CONTENT_BASE","features":[82]},{"name":"KS_Obsolete_VideoControlFlag_ExternalTriggerEnable","features":[82]},{"name":"KS_Obsolete_VideoControlFlag_Trigger","features":[82]},{"name":"KS_PhysConn_Audio_1394","features":[82]},{"name":"KS_PhysConn_Audio_AESDigital","features":[82]},{"name":"KS_PhysConn_Audio_AUX","features":[82]},{"name":"KS_PhysConn_Audio_AudioDecoder","features":[82]},{"name":"KS_PhysConn_Audio_Line","features":[82]},{"name":"KS_PhysConn_Audio_Mic","features":[82]},{"name":"KS_PhysConn_Audio_SCSI","features":[82]},{"name":"KS_PhysConn_Audio_SPDIFDigital","features":[82]},{"name":"KS_PhysConn_Audio_Tuner","features":[82]},{"name":"KS_PhysConn_Audio_USB","features":[82]},{"name":"KS_PhysConn_Video_1394","features":[82]},{"name":"KS_PhysConn_Video_AUX","features":[82]},{"name":"KS_PhysConn_Video_Composite","features":[82]},{"name":"KS_PhysConn_Video_ParallelDigital","features":[82]},{"name":"KS_PhysConn_Video_RGB","features":[82]},{"name":"KS_PhysConn_Video_SCART","features":[82]},{"name":"KS_PhysConn_Video_SCSI","features":[82]},{"name":"KS_PhysConn_Video_SVideo","features":[82]},{"name":"KS_PhysConn_Video_SerialDigital","features":[82]},{"name":"KS_PhysConn_Video_Tuner","features":[82]},{"name":"KS_PhysConn_Video_USB","features":[82]},{"name":"KS_PhysConn_Video_VideoDecoder","features":[82]},{"name":"KS_PhysConn_Video_VideoEncoder","features":[82]},{"name":"KS_PhysConn_Video_YRYBY","features":[82]},{"name":"KS_PhysicalConnectorType","features":[82]},{"name":"KS_PixAspectRatio_NTSC16x9","features":[82]},{"name":"KS_PixAspectRatio_NTSC4x3","features":[82]},{"name":"KS_PixAspectRatio_PAL16x9","features":[82]},{"name":"KS_PixAspectRatio_PAL4x3","features":[82]},{"name":"KS_RGBQUAD","features":[82]},{"name":"KS_SECURE_CAMERA_SCENARIO_ID","features":[82]},{"name":"KS_SEEKING_AbsolutePositioning","features":[82]},{"name":"KS_SEEKING_CAPABILITIES","features":[82]},{"name":"KS_SEEKING_CanGetCurrentPos","features":[82]},{"name":"KS_SEEKING_CanGetDuration","features":[82]},{"name":"KS_SEEKING_CanGetStopPos","features":[82]},{"name":"KS_SEEKING_CanPlayBackwards","features":[82]},{"name":"KS_SEEKING_CanSeekAbsolute","features":[82]},{"name":"KS_SEEKING_CanSeekBackwards","features":[82]},{"name":"KS_SEEKING_CanSeekForwards","features":[82]},{"name":"KS_SEEKING_FLAGS","features":[82]},{"name":"KS_SEEKING_IncrementalPositioning","features":[82]},{"name":"KS_SEEKING_NoPositioning","features":[82]},{"name":"KS_SEEKING_PositioningBitsMask","features":[82]},{"name":"KS_SEEKING_RelativePositioning","features":[82]},{"name":"KS_SEEKING_ReturnTime","features":[82]},{"name":"KS_SEEKING_SeekToKeyFrame","features":[82]},{"name":"KS_StreamingHint_CompQuality","features":[82]},{"name":"KS_StreamingHint_CompWindowSize","features":[82]},{"name":"KS_StreamingHint_FrameInterval","features":[82]},{"name":"KS_StreamingHint_KeyFrameRate","features":[82]},{"name":"KS_StreamingHint_PFrameRate","features":[82]},{"name":"KS_TRUECOLORINFO","features":[82]},{"name":"KS_TUNER_STRATEGY","features":[82]},{"name":"KS_TUNER_STRATEGY_DRIVER_TUNES","features":[82]},{"name":"KS_TUNER_STRATEGY_PLL","features":[82]},{"name":"KS_TUNER_STRATEGY_SIGNAL_STRENGTH","features":[82]},{"name":"KS_TUNER_TUNING_COARSE","features":[82]},{"name":"KS_TUNER_TUNING_EXACT","features":[82]},{"name":"KS_TUNER_TUNING_FINE","features":[82]},{"name":"KS_TUNER_TUNING_FLAGS","features":[82]},{"name":"KS_TVAUDIO_MODE_LANG_A","features":[82]},{"name":"KS_TVAUDIO_MODE_LANG_B","features":[82]},{"name":"KS_TVAUDIO_MODE_LANG_C","features":[82]},{"name":"KS_TVAUDIO_MODE_MONO","features":[82]},{"name":"KS_TVAUDIO_MODE_STEREO","features":[82]},{"name":"KS_TVAUDIO_PRESET_LANG_A","features":[82]},{"name":"KS_TVAUDIO_PRESET_LANG_B","features":[82]},{"name":"KS_TVAUDIO_PRESET_LANG_C","features":[82]},{"name":"KS_TVAUDIO_PRESET_STEREO","features":[82]},{"name":"KS_TVTUNER_CHANGE_BEGIN_TUNE","features":[82]},{"name":"KS_TVTUNER_CHANGE_END_TUNE","features":[82]},{"name":"KS_TVTUNER_CHANGE_INFO","features":[82]},{"name":"KS_VBICAP_PROTECTION_MV_DETECTED","features":[82]},{"name":"KS_VBICAP_PROTECTION_MV_HARDWARE","features":[82]},{"name":"KS_VBICAP_PROTECTION_MV_PRESENT","features":[82]},{"name":"KS_VBIDATARATE_CC","features":[82]},{"name":"KS_VBIDATARATE_NABTS","features":[82]},{"name":"KS_VBIINFOHEADER","features":[82]},{"name":"KS_VBI_FLAG_FIELD1","features":[82]},{"name":"KS_VBI_FLAG_FIELD2","features":[82]},{"name":"KS_VBI_FLAG_FRAME","features":[82]},{"name":"KS_VBI_FLAG_MV_DETECTED","features":[82]},{"name":"KS_VBI_FLAG_MV_HARDWARE","features":[82]},{"name":"KS_VBI_FLAG_MV_PRESENT","features":[82]},{"name":"KS_VBI_FLAG_TVTUNER_CHANGE","features":[82]},{"name":"KS_VBI_FLAG_VBIINFOHEADER_CHANGE","features":[82]},{"name":"KS_VBI_FRAME_INFO","features":[82]},{"name":"KS_VIDEODECODER_FLAGS","features":[82]},{"name":"KS_VIDEODECODER_FLAGS_CAN_DISABLE_OUTPUT","features":[82]},{"name":"KS_VIDEODECODER_FLAGS_CAN_INDICATE_LOCKED","features":[82]},{"name":"KS_VIDEODECODER_FLAGS_CAN_USE_VCR_LOCKING","features":[82]},{"name":"KS_VIDEOINFO","features":[1,82]},{"name":"KS_VIDEOINFOHEADER","features":[1,82]},{"name":"KS_VIDEOINFOHEADER2","features":[1,82]},{"name":"KS_VIDEOSTREAM_CAPTURE","features":[82]},{"name":"KS_VIDEOSTREAM_CC","features":[82]},{"name":"KS_VIDEOSTREAM_EDS","features":[82]},{"name":"KS_VIDEOSTREAM_IS_VPE","features":[82]},{"name":"KS_VIDEOSTREAM_NABTS","features":[82]},{"name":"KS_VIDEOSTREAM_PREVIEW","features":[82]},{"name":"KS_VIDEOSTREAM_STILL","features":[82]},{"name":"KS_VIDEOSTREAM_TELETEXT","features":[82]},{"name":"KS_VIDEOSTREAM_VBI","features":[82]},{"name":"KS_VIDEO_ALLOC_VPE_AGP","features":[82]},{"name":"KS_VIDEO_ALLOC_VPE_DISPLAY","features":[82]},{"name":"KS_VIDEO_ALLOC_VPE_SYSTEM","features":[82]},{"name":"KS_VIDEO_FLAG_B_FRAME","features":[82]},{"name":"KS_VIDEO_FLAG_FIELD1","features":[82]},{"name":"KS_VIDEO_FLAG_FIELD1FIRST","features":[82]},{"name":"KS_VIDEO_FLAG_FIELD2","features":[82]},{"name":"KS_VIDEO_FLAG_FIELD_MASK","features":[82]},{"name":"KS_VIDEO_FLAG_FRAME","features":[82]},{"name":"KS_VIDEO_FLAG_IPB_MASK","features":[82]},{"name":"KS_VIDEO_FLAG_I_FRAME","features":[82]},{"name":"KS_VIDEO_FLAG_P_FRAME","features":[82]},{"name":"KS_VIDEO_FLAG_REPEAT_FIELD","features":[82]},{"name":"KS_VIDEO_FLAG_WEAVE","features":[82]},{"name":"KS_VIDEO_STREAM_CONFIG_CAPS","features":[1,82]},{"name":"KS_VideoControlFlag_ExternalTriggerEnable","features":[82]},{"name":"KS_VideoControlFlag_FlipHorizontal","features":[82]},{"name":"KS_VideoControlFlag_FlipVertical","features":[82]},{"name":"KS_VideoControlFlag_IndependentImagePin","features":[82]},{"name":"KS_VideoControlFlag_StartPhotoSequenceCapture","features":[82]},{"name":"KS_VideoControlFlag_StillCapturePreviewFrame","features":[82]},{"name":"KS_VideoControlFlag_StopPhotoSequenceCapture","features":[82]},{"name":"KS_VideoControlFlag_Trigger","features":[82]},{"name":"KS_VideoControlFlags","features":[82]},{"name":"KS_VideoStreamingHints","features":[82]},{"name":"KS_iBLUE","features":[82]},{"name":"KS_iEGA_COLORS","features":[82]},{"name":"KS_iGREEN","features":[82]},{"name":"KS_iMASK_COLORS","features":[82]},{"name":"KS_iMAXBITS","features":[82]},{"name":"KS_iPALETTE","features":[82]},{"name":"KS_iPALETTE_COLORS","features":[82]},{"name":"KS_iRED","features":[82]},{"name":"KS_iTRUECOLOR","features":[82]},{"name":"KsAllocatorMode_Kernel","features":[82]},{"name":"KsAllocatorMode_User","features":[82]},{"name":"KsCreateAllocator","features":[1,82]},{"name":"KsCreateAllocator2","features":[1,82]},{"name":"KsCreateClock","features":[1,82]},{"name":"KsCreateClock2","features":[1,82]},{"name":"KsCreatePin","features":[1,82]},{"name":"KsCreatePin2","features":[1,82]},{"name":"KsCreateTopologyNode","features":[1,82]},{"name":"KsCreateTopologyNode2","features":[1,82]},{"name":"KsGetMediaType","features":[1,82,83]},{"name":"KsGetMediaTypeCount","features":[1,82]},{"name":"KsGetMultiplePinFactoryItems","features":[1,82]},{"name":"KsIoOperation_Read","features":[82]},{"name":"KsIoOperation_Write","features":[82]},{"name":"KsOpenDefaultDevice","features":[1,82]},{"name":"KsPeekOperation_AddRef","features":[82]},{"name":"KsPeekOperation_PeekOnly","features":[82]},{"name":"KsResolveRequiredAttributes","features":[82]},{"name":"KsSynchronousDeviceControl","features":[1,82]},{"name":"LIGHT_FILTER","features":[82]},{"name":"LOOPEDSTREAMING_POSITION_EVENT_DATA","features":[1,82]},{"name":"MAX_NABTS_VBI_LINES_PER_FIELD","features":[82]},{"name":"MAX_RESOURCEGROUPID_LENGTH","features":[82]},{"name":"MAX_SINK_DESCRIPTION_NAME_LENGTH","features":[82]},{"name":"MAX_WST_VBI_LINES_PER_FIELD","features":[82]},{"name":"MEDIUM_INFO","features":[1,82]},{"name":"MF_MDL_SHARED_PAYLOAD_KEY","features":[82]},{"name":"MIN_DEV_VER_FOR_FLAGS","features":[82]},{"name":"MIN_DEV_VER_FOR_QI","features":[82]},{"name":"MetadataId_BackgroundSegmentationMask","features":[82]},{"name":"MetadataId_CameraExtrinsics","features":[82]},{"name":"MetadataId_CameraIntrinsics","features":[82]},{"name":"MetadataId_CaptureStats","features":[82]},{"name":"MetadataId_Custom_Start","features":[82]},{"name":"MetadataId_DigitalWindow","features":[82]},{"name":"MetadataId_FrameIllumination","features":[82]},{"name":"MetadataId_PhotoConfirmation","features":[82]},{"name":"MetadataId_Standard_End","features":[82]},{"name":"MetadataId_Standard_Start","features":[82]},{"name":"MetadataId_UsbVideoHeader","features":[82]},{"name":"NABTSFEC_BUFFER","features":[82]},{"name":"NABTS_BUFFER","features":[82]},{"name":"NABTS_BUFFER_LINE","features":[82]},{"name":"NABTS_BUFFER_PICTURENUMBER_SUPPORT","features":[82]},{"name":"NABTS_BYTES_PER_LINE","features":[82]},{"name":"NABTS_LINES_PER_BUNDLE","features":[82]},{"name":"NABTS_PAYLOAD_PER_LINE","features":[82]},{"name":"NANOSECONDS","features":[82]},{"name":"OPTIMAL_WEIGHT_TOTALS","features":[82]},{"name":"PINNAME_DISPLAYPORT_OUT","features":[82]},{"name":"PINNAME_HDMI_OUT","features":[82]},{"name":"PINNAME_IMAGE","features":[82]},{"name":"PINNAME_SPDIF_IN","features":[82]},{"name":"PINNAME_SPDIF_OUT","features":[82]},{"name":"PINNAME_VIDEO_ANALOGVIDEOIN","features":[82]},{"name":"PINNAME_VIDEO_CAPTURE","features":[82]},{"name":"PINNAME_VIDEO_CC","features":[82]},{"name":"PINNAME_VIDEO_CC_CAPTURE","features":[82]},{"name":"PINNAME_VIDEO_EDS","features":[82]},{"name":"PINNAME_VIDEO_NABTS","features":[82]},{"name":"PINNAME_VIDEO_NABTS_CAPTURE","features":[82]},{"name":"PINNAME_VIDEO_PREVIEW","features":[82]},{"name":"PINNAME_VIDEO_STILL","features":[82]},{"name":"PINNAME_VIDEO_TELETEXT","features":[82]},{"name":"PINNAME_VIDEO_TIMECODE","features":[82]},{"name":"PINNAME_VIDEO_VBI","features":[82]},{"name":"PINNAME_VIDEO_VIDEOPORT","features":[82]},{"name":"PINNAME_VIDEO_VIDEOPORT_VBI","features":[82]},{"name":"PIPE_ALLOCATOR_PLACE","features":[82]},{"name":"PIPE_DIMENSIONS","features":[82]},{"name":"PIPE_STATE","features":[82]},{"name":"PIPE_TERMINATION","features":[82]},{"name":"PROPSETID_ALLOCATOR_CONTROL","features":[82]},{"name":"PROPSETID_EXT_DEVICE","features":[82]},{"name":"PROPSETID_EXT_TRANSPORT","features":[82]},{"name":"PROPSETID_TIMECODE_READER","features":[82]},{"name":"PROPSETID_TUNER","features":[82]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL","features":[82]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_FLASH","features":[82]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[82]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[82]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_VIDEO_STABILIZATION","features":[82]},{"name":"PROPSETID_VIDCAP_CROSSBAR","features":[82]},{"name":"PROPSETID_VIDCAP_DROPPEDFRAMES","features":[82]},{"name":"PROPSETID_VIDCAP_SELECTOR","features":[82]},{"name":"PROPSETID_VIDCAP_TVAUDIO","features":[82]},{"name":"PROPSETID_VIDCAP_VIDEOCOMPRESSION","features":[82]},{"name":"PROPSETID_VIDCAP_VIDEOCONTROL","features":[82]},{"name":"PROPSETID_VIDCAP_VIDEODECODER","features":[82]},{"name":"PROPSETID_VIDCAP_VIDEOENCODER","features":[82]},{"name":"PROPSETID_VIDCAP_VIDEOPROCAMP","features":[82]},{"name":"PipeFactor_Align","features":[82]},{"name":"PipeFactor_Buffers","features":[82]},{"name":"PipeFactor_FixedCompression","features":[82]},{"name":"PipeFactor_Flags","features":[82]},{"name":"PipeFactor_LogicalEnd","features":[82]},{"name":"PipeFactor_MemoryTypes","features":[82]},{"name":"PipeFactor_None","features":[82]},{"name":"PipeFactor_OptimalRanges","features":[82]},{"name":"PipeFactor_PhysicalEnd","features":[82]},{"name":"PipeFactor_PhysicalRanges","features":[82]},{"name":"PipeFactor_UnknownCompression","features":[82]},{"name":"PipeFactor_UserModeDownstream","features":[82]},{"name":"PipeFactor_UserModeUpstream","features":[82]},{"name":"PipeState_CompressionUnknown","features":[82]},{"name":"PipeState_DontCare","features":[82]},{"name":"PipeState_Finalized","features":[82]},{"name":"PipeState_RangeFixed","features":[82]},{"name":"PipeState_RangeNotFixed","features":[82]},{"name":"Pipe_Allocator_FirstPin","features":[82]},{"name":"Pipe_Allocator_LastPin","features":[82]},{"name":"Pipe_Allocator_MiddlePin","features":[82]},{"name":"Pipe_Allocator_None","features":[82]},{"name":"RT_RCDATA","features":[82]},{"name":"RT_STRING","features":[82]},{"name":"SECURE_BUFFER_INFO","features":[82]},{"name":"SHORT_COEFF","features":[82]},{"name":"SOUNDDETECTOR_PATTERNHEADER","features":[82]},{"name":"SPEAKER_ALL","features":[82]},{"name":"SPEAKER_BACK_CENTER","features":[82]},{"name":"SPEAKER_BACK_LEFT","features":[82]},{"name":"SPEAKER_BACK_RIGHT","features":[82]},{"name":"SPEAKER_FRONT_CENTER","features":[82]},{"name":"SPEAKER_FRONT_LEFT","features":[82]},{"name":"SPEAKER_FRONT_LEFT_OF_CENTER","features":[82]},{"name":"SPEAKER_FRONT_RIGHT","features":[82]},{"name":"SPEAKER_FRONT_RIGHT_OF_CENTER","features":[82]},{"name":"SPEAKER_LOW_FREQUENCY","features":[82]},{"name":"SPEAKER_RESERVED","features":[82]},{"name":"SPEAKER_SIDE_LEFT","features":[82]},{"name":"SPEAKER_SIDE_RIGHT","features":[82]},{"name":"SPEAKER_TOP_BACK_CENTER","features":[82]},{"name":"SPEAKER_TOP_BACK_LEFT","features":[82]},{"name":"SPEAKER_TOP_BACK_RIGHT","features":[82]},{"name":"SPEAKER_TOP_CENTER","features":[82]},{"name":"SPEAKER_TOP_FRONT_CENTER","features":[82]},{"name":"SPEAKER_TOP_FRONT_LEFT","features":[82]},{"name":"SPEAKER_TOP_FRONT_RIGHT","features":[82]},{"name":"SYSAUDIO_FLAGS_CLEAR_PREFERRED","features":[82]},{"name":"SYSAUDIO_FLAGS_DONT_COMBINE_PINS","features":[82]},{"name":"TELEPHONY_CALLCONTROLOP","features":[82]},{"name":"TELEPHONY_CALLCONTROLOP_DISABLE","features":[82]},{"name":"TELEPHONY_CALLCONTROLOP_ENABLE","features":[82]},{"name":"TELEPHONY_CALLSTATE","features":[82]},{"name":"TELEPHONY_CALLSTATE_DISABLED","features":[82]},{"name":"TELEPHONY_CALLSTATE_ENABLED","features":[82]},{"name":"TELEPHONY_CALLSTATE_HOLD","features":[82]},{"name":"TELEPHONY_CALLSTATE_PROVIDERTRANSITION","features":[82]},{"name":"TELEPHONY_CALLTYPE","features":[82]},{"name":"TELEPHONY_CALLTYPE_CIRCUITSWITCHED","features":[82]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_LTE","features":[82]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_WLAN","features":[82]},{"name":"TELEPHONY_PROVIDERCHANGEOP","features":[82]},{"name":"TELEPHONY_PROVIDERCHANGEOP_BEGIN","features":[82]},{"name":"TELEPHONY_PROVIDERCHANGEOP_CANCEL","features":[82]},{"name":"TELEPHONY_PROVIDERCHANGEOP_END","features":[82]},{"name":"TRANSPORTAUDIOPARMS","features":[82]},{"name":"TRANSPORTBASICPARMS","features":[82]},{"name":"TRANSPORTSTATUS","features":[82]},{"name":"TRANSPORTVIDEOPARMS","features":[82]},{"name":"TRANSPORT_STATE","features":[82]},{"name":"TUNER_ANALOG_CAPS_S","features":[82]},{"name":"TunerLockType","features":[82]},{"name":"Tuner_LockType_Locked","features":[82]},{"name":"Tuner_LockType_None","features":[82]},{"name":"Tuner_LockType_Within_Scan_Sensing_Range","features":[82]},{"name":"VBICAP_PROPERTIES_PROTECTION_S","features":[82]},{"name":"VBICODECFILTERING_CC_SUBSTREAMS","features":[82]},{"name":"VBICODECFILTERING_NABTS_SUBSTREAMS","features":[82]},{"name":"VBICODECFILTERING_SCANLINES","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_CC","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_CC_PIN","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_COMMON","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_COMMON_PIN","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_NABTS","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_NABTS_PIN","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT","features":[82]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT_PIN","features":[82]},{"name":"VRAM_SURFACE_INFO","features":[82]},{"name":"VRAM_SURFACE_INFO_PROPERTY_S","features":[82]},{"name":"WAVE_FORMAT_EXTENSIBLE","features":[82]},{"name":"WNF_KSCAMERA_STREAMSTATE_INFO","features":[82]},{"name":"WST_BUFFER","features":[82]},{"name":"WST_BUFFER_LINE","features":[82]},{"name":"WST_BYTES_PER_LINE","features":[82]},{"name":"WST_TVTUNER_CHANGE_BEGIN_TUNE","features":[82]},{"name":"WST_TVTUNER_CHANGE_END_TUNE","features":[82]},{"name":"eConnType3Point5mm","features":[82]},{"name":"eConnTypeAtapiInternal","features":[82]},{"name":"eConnTypeCombination","features":[82]},{"name":"eConnTypeMultichannelAnalogDIN","features":[82]},{"name":"eConnTypeOptical","features":[82]},{"name":"eConnTypeOtherAnalog","features":[82]},{"name":"eConnTypeOtherDigital","features":[82]},{"name":"eConnTypeQuarter","features":[82]},{"name":"eConnTypeRCA","features":[82]},{"name":"eConnTypeRJ11Modem","features":[82]},{"name":"eConnTypeUnknown","features":[82]},{"name":"eConnTypeXlrProfessional","features":[82]},{"name":"eDeviceControlUseMissing","features":[82]},{"name":"eDeviceControlUsePrimary","features":[82]},{"name":"eDeviceControlUseSecondary","features":[82]},{"name":"eGenLocInternal","features":[82]},{"name":"eGenLocOther","features":[82]},{"name":"eGenLocPrimaryBox","features":[82]},{"name":"eGenLocSeparate","features":[82]},{"name":"eGeoLocATAPI","features":[82]},{"name":"eGeoLocBottom","features":[82]},{"name":"eGeoLocDrivebay","features":[82]},{"name":"eGeoLocFront","features":[82]},{"name":"eGeoLocHDMI","features":[82]},{"name":"eGeoLocInsideMobileLid","features":[82]},{"name":"eGeoLocLeft","features":[82]},{"name":"eGeoLocNotApplicable","features":[82]},{"name":"eGeoLocOutsideMobileLid","features":[82]},{"name":"eGeoLocRear","features":[82]},{"name":"eGeoLocRearPanel","features":[82]},{"name":"eGeoLocReserved6","features":[82]},{"name":"eGeoLocRight","features":[82]},{"name":"eGeoLocRiser","features":[82]},{"name":"eGeoLocTop","features":[82]},{"name":"ePortConnBothIntegratedAndJack","features":[82]},{"name":"ePortConnIntegratedDevice","features":[82]},{"name":"ePortConnJack","features":[82]},{"name":"ePortConnUnknown","features":[82]}],"438":[{"name":"ACMDM_BASE","features":[79]},{"name":"ACM_MPEG_COPYRIGHT","features":[79]},{"name":"ACM_MPEG_DUALCHANNEL","features":[79]},{"name":"ACM_MPEG_ID_MPEG1","features":[79]},{"name":"ACM_MPEG_JOINTSTEREO","features":[79]},{"name":"ACM_MPEG_LAYER1","features":[79]},{"name":"ACM_MPEG_LAYER2","features":[79]},{"name":"ACM_MPEG_LAYER3","features":[79]},{"name":"ACM_MPEG_ORIGINALHOME","features":[79]},{"name":"ACM_MPEG_PRIVATEBIT","features":[79]},{"name":"ACM_MPEG_PROTECTIONBIT","features":[79]},{"name":"ACM_MPEG_SINGLECHANNEL","features":[79]},{"name":"ACM_MPEG_STEREO","features":[79]},{"name":"ADPCMCOEFSET","features":[79]},{"name":"ADPCMEWAVEFORMAT","features":[80,79]},{"name":"ADPCMWAVEFORMAT","features":[80,79]},{"name":"APTXWAVEFORMAT","features":[80,79]},{"name":"AUDIOFILE_AF10WAVEFORMAT","features":[80,79]},{"name":"AUDIOFILE_AF36WAVEFORMAT","features":[80,79]},{"name":"AUXDM_GETDEVCAPS","features":[79]},{"name":"AUXDM_GETNUMDEVS","features":[79]},{"name":"AUXDM_GETVOLUME","features":[79]},{"name":"AUXDM_SETVOLUME","features":[79]},{"name":"AUXM_INIT","features":[79]},{"name":"AUXM_INIT_EX","features":[79]},{"name":"AVIBuildFilterA","features":[1,79]},{"name":"AVIBuildFilterW","features":[1,79]},{"name":"AVICOMPRESSF_DATARATE","features":[79]},{"name":"AVICOMPRESSF_INTERLEAVE","features":[79]},{"name":"AVICOMPRESSF_KEYFRAMES","features":[79]},{"name":"AVICOMPRESSF_VALID","features":[79]},{"name":"AVICOMPRESSOPTIONS","features":[79]},{"name":"AVIClearClipboard","features":[79]},{"name":"AVIERR_OK","features":[79]},{"name":"AVIFILECAPS_ALLKEYFRAMES","features":[79]},{"name":"AVIFILECAPS_CANREAD","features":[79]},{"name":"AVIFILECAPS_CANWRITE","features":[79]},{"name":"AVIFILECAPS_NOCOMPRESSION","features":[79]},{"name":"AVIFILEHANDLER_CANACCEPTNONRGB","features":[79]},{"name":"AVIFILEHANDLER_CANREAD","features":[79]},{"name":"AVIFILEHANDLER_CANWRITE","features":[79]},{"name":"AVIFILEINFOA","features":[79]},{"name":"AVIFILEINFOW","features":[79]},{"name":"AVIFILEINFO_COPYRIGHTED","features":[79]},{"name":"AVIFILEINFO_HASINDEX","features":[79]},{"name":"AVIFILEINFO_ISINTERLEAVED","features":[79]},{"name":"AVIFILEINFO_MUSTUSEINDEX","features":[79]},{"name":"AVIFILEINFO_WASCAPTUREFILE","features":[79]},{"name":"AVIFileAddRef","features":[79]},{"name":"AVIFileCreateStreamA","features":[1,79]},{"name":"AVIFileCreateStreamW","features":[1,79]},{"name":"AVIFileEndRecord","features":[79]},{"name":"AVIFileExit","features":[79]},{"name":"AVIFileGetStream","features":[79]},{"name":"AVIFileInfoA","features":[79]},{"name":"AVIFileInfoW","features":[79]},{"name":"AVIFileInit","features":[79]},{"name":"AVIFileOpenA","features":[79]},{"name":"AVIFileOpenW","features":[79]},{"name":"AVIFileReadData","features":[79]},{"name":"AVIFileRelease","features":[79]},{"name":"AVIFileWriteData","features":[79]},{"name":"AVIGETFRAMEF_BESTDISPLAYFMT","features":[79]},{"name":"AVIGetFromClipboard","features":[79]},{"name":"AVIIF_CONTROLFRAME","features":[79]},{"name":"AVIIF_TWOCC","features":[79]},{"name":"AVIMakeCompressedStream","features":[79]},{"name":"AVIMakeFileFromStreams","features":[79]},{"name":"AVIMakeStreamFromClipboard","features":[1,79]},{"name":"AVIPutFileOnClipboard","features":[79]},{"name":"AVISAVECALLBACK","features":[1,79]},{"name":"AVISTREAMINFOA","features":[1,79]},{"name":"AVISTREAMINFOW","features":[1,79]},{"name":"AVISTREAMINFO_DISABLED","features":[79]},{"name":"AVISTREAMINFO_FORMATCHANGES","features":[79]},{"name":"AVISTREAMREAD_CONVENIENT","features":[79]},{"name":"AVISaveA","features":[1,79]},{"name":"AVISaveOptions","features":[1,79]},{"name":"AVISaveOptionsFree","features":[79]},{"name":"AVISaveVA","features":[1,79]},{"name":"AVISaveVW","features":[1,79]},{"name":"AVISaveW","features":[1,79]},{"name":"AVIStreamAddRef","features":[79]},{"name":"AVIStreamBeginStreaming","features":[79]},{"name":"AVIStreamCreate","features":[79]},{"name":"AVIStreamEndStreaming","features":[79]},{"name":"AVIStreamFindSample","features":[79]},{"name":"AVIStreamGetFrame","features":[79]},{"name":"AVIStreamGetFrameClose","features":[79]},{"name":"AVIStreamGetFrameOpen","features":[12,79]},{"name":"AVIStreamInfoA","features":[1,79]},{"name":"AVIStreamInfoW","features":[1,79]},{"name":"AVIStreamLength","features":[79]},{"name":"AVIStreamOpenFromFileA","features":[79]},{"name":"AVIStreamOpenFromFileW","features":[79]},{"name":"AVIStreamRead","features":[79]},{"name":"AVIStreamReadData","features":[79]},{"name":"AVIStreamReadFormat","features":[79]},{"name":"AVIStreamRelease","features":[79]},{"name":"AVIStreamSampleToTime","features":[79]},{"name":"AVIStreamSetFormat","features":[79]},{"name":"AVIStreamStart","features":[79]},{"name":"AVIStreamTimeToSample","features":[79]},{"name":"AVIStreamWrite","features":[79]},{"name":"AVIStreamWriteData","features":[79]},{"name":"AVSTREAMMASTER_AUDIO","features":[79]},{"name":"AVSTREAMMASTER_NONE","features":[79]},{"name":"BI_1632","features":[79]},{"name":"CAPCONTROLCALLBACK","features":[1,79]},{"name":"CAPDRIVERCAPS","features":[1,79]},{"name":"CAPERRORCALLBACKA","features":[1,79]},{"name":"CAPERRORCALLBACKW","features":[1,79]},{"name":"CAPINFOCHUNK","features":[79]},{"name":"CAPSTATUS","features":[1,12,79]},{"name":"CAPSTATUSCALLBACKA","features":[1,79]},{"name":"CAPSTATUSCALLBACKW","features":[1,79]},{"name":"CAPTUREPARMS","features":[1,79]},{"name":"CAPVIDEOCALLBACK","features":[1,79]},{"name":"CAPWAVECALLBACK","features":[1,80,79]},{"name":"CAPYIELDCALLBACK","features":[1,79]},{"name":"CHANNEL_CAPS","features":[79]},{"name":"CLSID_AVIFile","features":[79]},{"name":"CLSID_AVISimpleUnMarshal","features":[79]},{"name":"COMPVARS","features":[12,79]},{"name":"CONTRESCR10WAVEFORMAT","features":[80,79]},{"name":"CONTRESVQLPCWAVEFORMAT","features":[80,79]},{"name":"CONTROLCALLBACK_CAPTURING","features":[79]},{"name":"CONTROLCALLBACK_PREROLL","features":[79]},{"name":"CREATIVEADPCMWAVEFORMAT","features":[80,79]},{"name":"CREATIVEFASTSPEECH10WAVEFORMAT","features":[80,79]},{"name":"CREATIVEFASTSPEECH8WAVEFORMAT","features":[80,79]},{"name":"CRYSTAL_NET_SFM_CODEC","features":[79]},{"name":"CSIMAADPCMWAVEFORMAT","features":[80,79]},{"name":"CloseDriver","features":[1,79]},{"name":"CreateEditableStream","features":[79]},{"name":"DCB_EVENT","features":[79]},{"name":"DCB_FUNCTION","features":[79]},{"name":"DCB_NOSWITCH","features":[79]},{"name":"DCB_NULL","features":[79]},{"name":"DCB_TASK","features":[79]},{"name":"DCB_TYPEMASK","features":[79]},{"name":"DCB_WINDOW","features":[79]},{"name":"DDF_0001","features":[79]},{"name":"DDF_2000","features":[79]},{"name":"DDF_ANIMATE","features":[79]},{"name":"DDF_BACKGROUNDPAL","features":[79]},{"name":"DDF_BUFFER","features":[79]},{"name":"DDF_DONTDRAW","features":[79]},{"name":"DDF_FULLSCREEN","features":[79]},{"name":"DDF_HALFTONE","features":[79]},{"name":"DDF_HURRYUP","features":[79]},{"name":"DDF_JUSTDRAWIT","features":[79]},{"name":"DDF_NOTKEYFRAME","features":[79]},{"name":"DDF_PREROLL","features":[79]},{"name":"DDF_SAME_DIB","features":[79]},{"name":"DDF_SAME_DRAW","features":[79]},{"name":"DDF_SAME_HDC","features":[79]},{"name":"DDF_SAME_SIZE","features":[79]},{"name":"DDF_UPDATE","features":[79]},{"name":"DIALOGICOKIADPCMWAVEFORMAT","features":[80,79]},{"name":"DIGIADPCMWAVEFORMAT","features":[80,79]},{"name":"DIGIFIXWAVEFORMAT","features":[80,79]},{"name":"DIGIREALWAVEFORMAT","features":[80,79]},{"name":"DIGISTDWAVEFORMAT","features":[80,79]},{"name":"DLG_ACMFILTERCHOOSE_ID","features":[79]},{"name":"DLG_ACMFORMATCHOOSE_ID","features":[79]},{"name":"DOLBYAC2WAVEFORMAT","features":[80,79]},{"name":"DRAWDIBTIME","features":[79]},{"name":"DRIVERMSGPROC","features":[79]},{"name":"DRIVERPROC","features":[1,79]},{"name":"DRIVERS_SECTION","features":[79]},{"name":"DRMWAVEFORMAT","features":[80,79]},{"name":"DRVCNF_CANCEL","features":[79]},{"name":"DRVCNF_OK","features":[79]},{"name":"DRVCNF_RESTART","features":[79]},{"name":"DRVCONFIGINFO","features":[79]},{"name":"DRVCONFIGINFOEX","features":[79]},{"name":"DRVM_ADD_THRU","features":[79]},{"name":"DRVM_DISABLE","features":[79]},{"name":"DRVM_ENABLE","features":[79]},{"name":"DRVM_EXIT","features":[79]},{"name":"DRVM_INIT","features":[79]},{"name":"DRVM_INIT_EX","features":[79]},{"name":"DRVM_IOCTL","features":[79]},{"name":"DRVM_IOCTL_CMD_SYSTEM","features":[79]},{"name":"DRVM_IOCTL_CMD_USER","features":[79]},{"name":"DRVM_IOCTL_DATA","features":[79]},{"name":"DRVM_IOCTL_LAST","features":[79]},{"name":"DRVM_MAPPER_CONSOLEVOICECOM_GET","features":[79]},{"name":"DRVM_MAPPER_PREFERRED_FLAGS_PREFERREDONLY","features":[79]},{"name":"DRVM_MAPPER_PREFERRED_GET","features":[79]},{"name":"DRVM_MAPPER_RECONFIGURE","features":[79]},{"name":"DRVM_REMOVE_THRU","features":[79]},{"name":"DRVM_USER","features":[79]},{"name":"DRV_CANCEL","features":[79]},{"name":"DRV_CLOSE","features":[79]},{"name":"DRV_CONFIGURE","features":[79]},{"name":"DRV_DISABLE","features":[79]},{"name":"DRV_ENABLE","features":[79]},{"name":"DRV_EXITSESSION","features":[79]},{"name":"DRV_FREE","features":[79]},{"name":"DRV_INSTALL","features":[79]},{"name":"DRV_LOAD","features":[79]},{"name":"DRV_MCI_FIRST","features":[79]},{"name":"DRV_MCI_LAST","features":[79]},{"name":"DRV_OK","features":[79]},{"name":"DRV_OPEN","features":[79]},{"name":"DRV_PNPINSTALL","features":[79]},{"name":"DRV_POWER","features":[79]},{"name":"DRV_QUERYCONFIGURE","features":[79]},{"name":"DRV_QUERYDEVICEINTERFACE","features":[79]},{"name":"DRV_QUERYDEVICEINTERFACESIZE","features":[79]},{"name":"DRV_QUERYDEVNODE","features":[79]},{"name":"DRV_QUERYFUNCTIONINSTANCEID","features":[79]},{"name":"DRV_QUERYFUNCTIONINSTANCEIDSIZE","features":[79]},{"name":"DRV_QUERYIDFROMSTRINGID","features":[79]},{"name":"DRV_QUERYMAPPABLE","features":[79]},{"name":"DRV_QUERYMODULE","features":[79]},{"name":"DRV_QUERYSTRINGID","features":[79]},{"name":"DRV_QUERYSTRINGIDSIZE","features":[79]},{"name":"DRV_REMOVE","features":[79]},{"name":"DRV_RESERVED","features":[79]},{"name":"DRV_RESTART","features":[79]},{"name":"DRV_USER","features":[79]},{"name":"DVIADPCMWAVEFORMAT","features":[80,79]},{"name":"DVM_CONFIGURE_END","features":[79]},{"name":"DVM_CONFIGURE_START","features":[79]},{"name":"DVM_DST_RECT","features":[79]},{"name":"DVM_FORMAT","features":[79]},{"name":"DVM_PALETTE","features":[79]},{"name":"DVM_PALETTERGB555","features":[79]},{"name":"DVM_SRC_RECT","features":[79]},{"name":"DVM_USER","features":[79]},{"name":"DV_ERR_13","features":[79]},{"name":"DV_ERR_ALLOCATED","features":[79]},{"name":"DV_ERR_BADDEVICEID","features":[79]},{"name":"DV_ERR_BADERRNUM","features":[79]},{"name":"DV_ERR_BADFORMAT","features":[79]},{"name":"DV_ERR_BADINSTALL","features":[79]},{"name":"DV_ERR_BASE","features":[79]},{"name":"DV_ERR_CONFIG1","features":[79]},{"name":"DV_ERR_CONFIG2","features":[79]},{"name":"DV_ERR_CREATEPALETTE","features":[79]},{"name":"DV_ERR_DMA_CONFLICT","features":[79]},{"name":"DV_ERR_FLAGS","features":[79]},{"name":"DV_ERR_INT_CONFLICT","features":[79]},{"name":"DV_ERR_INVALHANDLE","features":[79]},{"name":"DV_ERR_IO_CONFLICT","features":[79]},{"name":"DV_ERR_LASTERROR","features":[79]},{"name":"DV_ERR_MEM_CONFLICT","features":[79]},{"name":"DV_ERR_NOMEM","features":[79]},{"name":"DV_ERR_NONSPECIFIC","features":[79]},{"name":"DV_ERR_NOTDETECTED","features":[79]},{"name":"DV_ERR_NOTSUPPORTED","features":[79]},{"name":"DV_ERR_NO_BUFFERS","features":[79]},{"name":"DV_ERR_OK","features":[79]},{"name":"DV_ERR_PARAM1","features":[79]},{"name":"DV_ERR_PARAM2","features":[79]},{"name":"DV_ERR_PROTECT_ONLY","features":[79]},{"name":"DV_ERR_SIZEFIELD","features":[79]},{"name":"DV_ERR_STILLPLAYING","features":[79]},{"name":"DV_ERR_SYNC","features":[79]},{"name":"DV_ERR_TOOMANYCHANNELS","features":[79]},{"name":"DV_ERR_UNPREPARED","features":[79]},{"name":"DV_ERR_USER_MSG","features":[79]},{"name":"DV_VM_CLOSE","features":[79]},{"name":"DV_VM_DATA","features":[79]},{"name":"DV_VM_ERROR","features":[79]},{"name":"DV_VM_OPEN","features":[79]},{"name":"DefDriverProc","features":[1,79]},{"name":"DrawDibBegin","features":[1,12,79]},{"name":"DrawDibChangePalette","features":[1,12,79]},{"name":"DrawDibClose","features":[1,79]},{"name":"DrawDibDraw","features":[1,12,79]},{"name":"DrawDibEnd","features":[1,79]},{"name":"DrawDibGetBuffer","features":[12,79]},{"name":"DrawDibGetPalette","features":[12,79]},{"name":"DrawDibOpen","features":[79]},{"name":"DrawDibProfileDisplay","features":[1,12,79]},{"name":"DrawDibRealize","features":[1,12,79]},{"name":"DrawDibSetPalette","features":[1,12,79]},{"name":"DrawDibStart","features":[1,79]},{"name":"DrawDibStop","features":[1,79]},{"name":"DrawDibTime","features":[1,79]},{"name":"DriverCallback","features":[1,79]},{"name":"DrvGetModuleHandle","features":[1,79]},{"name":"ECHOSC1WAVEFORMAT","features":[80,79]},{"name":"EXBMINFOHEADER","features":[12,79]},{"name":"EditStreamClone","features":[79]},{"name":"EditStreamCopy","features":[79]},{"name":"EditStreamCut","features":[79]},{"name":"EditStreamPaste","features":[79]},{"name":"EditStreamSetInfoA","features":[1,79]},{"name":"EditStreamSetInfoW","features":[1,79]},{"name":"EditStreamSetNameA","features":[79]},{"name":"EditStreamSetNameW","features":[79]},{"name":"FACILITY_NS","features":[79]},{"name":"FACILITY_NS_WIN32","features":[79]},{"name":"FIND_ANY","features":[79]},{"name":"FIND_DIR","features":[79]},{"name":"FIND_FORMAT","features":[79]},{"name":"FIND_FROM_START","features":[79]},{"name":"FIND_INDEX","features":[79]},{"name":"FIND_KEY","features":[79]},{"name":"FIND_LENGTH","features":[79]},{"name":"FIND_NEXT","features":[79]},{"name":"FIND_OFFSET","features":[79]},{"name":"FIND_POS","features":[79]},{"name":"FIND_PREV","features":[79]},{"name":"FIND_RET","features":[79]},{"name":"FIND_SIZE","features":[79]},{"name":"FIND_TYPE","features":[79]},{"name":"FMTOWNS_SND_WAVEFORMAT","features":[80,79]},{"name":"G721_ADPCMWAVEFORMAT","features":[80,79]},{"name":"G723_ADPCMWAVEFORMAT","features":[80,79]},{"name":"GSM610WAVEFORMAT","features":[80,79]},{"name":"GetDriverModuleHandle","features":[1,79]},{"name":"GetOpenFileNamePreviewA","features":[1,79,84]},{"name":"GetOpenFileNamePreviewW","features":[1,79,84]},{"name":"GetSaveFileNamePreviewA","features":[1,79,84]},{"name":"GetSaveFileNamePreviewW","features":[1,79,84]},{"name":"HDRVR","features":[79]},{"name":"HIC","features":[79]},{"name":"HMMIO","features":[79]},{"name":"HVIDEO","features":[79]},{"name":"IAVIEditStream","features":[79]},{"name":"IAVIFile","features":[79]},{"name":"IAVIPersistFile","features":[79]},{"name":"IAVIStream","features":[79]},{"name":"IAVIStreaming","features":[79]},{"name":"ICCOMPRESS","features":[12,79]},{"name":"ICCOMPRESSFRAMES","features":[1,12,79]},{"name":"ICCOMPRESSFRAMES_PADDING","features":[79]},{"name":"ICCOMPRESS_KEYFRAME","features":[79]},{"name":"ICClose","features":[1,79]},{"name":"ICCompress","features":[12,79]},{"name":"ICCompressorChoose","features":[1,12,79]},{"name":"ICCompressorFree","features":[12,79]},{"name":"ICDECOMPRESS","features":[12,79]},{"name":"ICDECOMPRESSEX","features":[12,79]},{"name":"ICDECOMPRESS_HURRYUP","features":[79]},{"name":"ICDECOMPRESS_NOTKEYFRAME","features":[79]},{"name":"ICDECOMPRESS_NULLFRAME","features":[79]},{"name":"ICDECOMPRESS_PREROLL","features":[79]},{"name":"ICDECOMPRESS_UPDATE","features":[79]},{"name":"ICDRAW","features":[79]},{"name":"ICDRAWBEGIN","features":[1,12,79]},{"name":"ICDRAWSUGGEST","features":[12,79]},{"name":"ICDRAW_ANIMATE","features":[79]},{"name":"ICDRAW_BUFFER","features":[79]},{"name":"ICDRAW_CONTINUE","features":[79]},{"name":"ICDRAW_FULLSCREEN","features":[79]},{"name":"ICDRAW_HDC","features":[79]},{"name":"ICDRAW_HURRYUP","features":[79]},{"name":"ICDRAW_MEMORYDC","features":[79]},{"name":"ICDRAW_NOTKEYFRAME","features":[79]},{"name":"ICDRAW_NULLFRAME","features":[79]},{"name":"ICDRAW_PREROLL","features":[79]},{"name":"ICDRAW_QUERY","features":[79]},{"name":"ICDRAW_RENDER","features":[79]},{"name":"ICDRAW_UPDATE","features":[79]},{"name":"ICDRAW_UPDATING","features":[79]},{"name":"ICDecompress","features":[12,79]},{"name":"ICDraw","features":[79]},{"name":"ICDrawBegin","features":[1,12,79]},{"name":"ICERR_ABORT","features":[79]},{"name":"ICERR_BADBITDEPTH","features":[79]},{"name":"ICERR_BADFLAGS","features":[79]},{"name":"ICERR_BADFORMAT","features":[79]},{"name":"ICERR_BADHANDLE","features":[79]},{"name":"ICERR_BADIMAGESIZE","features":[79]},{"name":"ICERR_BADPARAM","features":[79]},{"name":"ICERR_BADSIZE","features":[79]},{"name":"ICERR_CANTUPDATE","features":[79]},{"name":"ICERR_CUSTOM","features":[79]},{"name":"ICERR_DONTDRAW","features":[79]},{"name":"ICERR_ERROR","features":[79]},{"name":"ICERR_GOTOKEYFRAME","features":[79]},{"name":"ICERR_INTERNAL","features":[79]},{"name":"ICERR_MEMORY","features":[79]},{"name":"ICERR_NEWPALETTE","features":[79]},{"name":"ICERR_OK","features":[79]},{"name":"ICERR_STOPDRAWING","features":[79]},{"name":"ICERR_UNSUPPORTED","features":[79]},{"name":"ICGetDisplayFormat","features":[12,79]},{"name":"ICGetInfo","features":[1,79]},{"name":"ICINFO","features":[79]},{"name":"ICINSTALL_DRIVER","features":[79]},{"name":"ICINSTALL_DRIVERW","features":[79]},{"name":"ICINSTALL_FUNCTION","features":[79]},{"name":"ICINSTALL_HDRV","features":[79]},{"name":"ICINSTALL_UNICODE","features":[79]},{"name":"ICImageCompress","features":[1,12,79]},{"name":"ICImageDecompress","features":[1,12,79]},{"name":"ICInfo","features":[1,79]},{"name":"ICInstall","features":[1,79]},{"name":"ICLocate","features":[12,79]},{"name":"ICMF_ABOUT_QUERY","features":[79]},{"name":"ICMF_CHOOSE_ALLCOMPRESSORS","features":[79]},{"name":"ICMF_CHOOSE_DATARATE","features":[79]},{"name":"ICMF_CHOOSE_KEYFRAME","features":[79]},{"name":"ICMF_CHOOSE_PREVIEW","features":[79]},{"name":"ICMF_COMPVARS_VALID","features":[79]},{"name":"ICMF_CONFIGURE_QUERY","features":[79]},{"name":"ICMODE_COMPRESS","features":[79]},{"name":"ICMODE_DECOMPRESS","features":[79]},{"name":"ICMODE_DRAW","features":[79]},{"name":"ICMODE_FASTCOMPRESS","features":[79]},{"name":"ICMODE_FASTDECOMPRESS","features":[79]},{"name":"ICMODE_INTERNALF_FUNCTION32","features":[79]},{"name":"ICMODE_INTERNALF_MASK","features":[79]},{"name":"ICMODE_QUERY","features":[79]},{"name":"ICM_ABOUT","features":[79]},{"name":"ICM_COMPRESS","features":[79]},{"name":"ICM_COMPRESS_BEGIN","features":[79]},{"name":"ICM_COMPRESS_END","features":[79]},{"name":"ICM_COMPRESS_FRAMES","features":[79]},{"name":"ICM_COMPRESS_FRAMES_INFO","features":[79]},{"name":"ICM_COMPRESS_GET_FORMAT","features":[79]},{"name":"ICM_COMPRESS_GET_SIZE","features":[79]},{"name":"ICM_COMPRESS_QUERY","features":[79]},{"name":"ICM_CONFIGURE","features":[79]},{"name":"ICM_DECOMPRESS","features":[79]},{"name":"ICM_DECOMPRESSEX","features":[79]},{"name":"ICM_DECOMPRESSEX_BEGIN","features":[79]},{"name":"ICM_DECOMPRESSEX_END","features":[79]},{"name":"ICM_DECOMPRESSEX_QUERY","features":[79]},{"name":"ICM_DECOMPRESS_BEGIN","features":[79]},{"name":"ICM_DECOMPRESS_END","features":[79]},{"name":"ICM_DECOMPRESS_GET_FORMAT","features":[79]},{"name":"ICM_DECOMPRESS_GET_PALETTE","features":[79]},{"name":"ICM_DECOMPRESS_QUERY","features":[79]},{"name":"ICM_DECOMPRESS_SET_PALETTE","features":[79]},{"name":"ICM_DRAW","features":[79]},{"name":"ICM_DRAW_BEGIN","features":[79]},{"name":"ICM_DRAW_BITS","features":[79]},{"name":"ICM_DRAW_CHANGEPALETTE","features":[79]},{"name":"ICM_DRAW_END","features":[79]},{"name":"ICM_DRAW_FLUSH","features":[79]},{"name":"ICM_DRAW_GETTIME","features":[79]},{"name":"ICM_DRAW_GET_PALETTE","features":[79]},{"name":"ICM_DRAW_IDLE","features":[79]},{"name":"ICM_DRAW_QUERY","features":[79]},{"name":"ICM_DRAW_REALIZE","features":[79]},{"name":"ICM_DRAW_RENDERBUFFER","features":[79]},{"name":"ICM_DRAW_SETTIME","features":[79]},{"name":"ICM_DRAW_START","features":[79]},{"name":"ICM_DRAW_START_PLAY","features":[79]},{"name":"ICM_DRAW_STOP","features":[79]},{"name":"ICM_DRAW_STOP_PLAY","features":[79]},{"name":"ICM_DRAW_SUGGESTFORMAT","features":[79]},{"name":"ICM_DRAW_UPDATE","features":[79]},{"name":"ICM_DRAW_WINDOW","features":[79]},{"name":"ICM_ENUMFORMATS","features":[79]},{"name":"ICM_GET","features":[79]},{"name":"ICM_GETBUFFERSWANTED","features":[79]},{"name":"ICM_GETDEFAULTKEYFRAMERATE","features":[79]},{"name":"ICM_GETDEFAULTQUALITY","features":[79]},{"name":"ICM_GETERRORTEXT","features":[79]},{"name":"ICM_GETFORMATNAME","features":[79]},{"name":"ICM_GETINFO","features":[79]},{"name":"ICM_GETQUALITY","features":[79]},{"name":"ICM_GETSTATE","features":[79]},{"name":"ICM_RESERVED","features":[79]},{"name":"ICM_RESERVED_HIGH","features":[79]},{"name":"ICM_RESERVED_LOW","features":[79]},{"name":"ICM_SET","features":[79]},{"name":"ICM_SETQUALITY","features":[79]},{"name":"ICM_SETSTATE","features":[79]},{"name":"ICM_SET_STATUS_PROC","features":[79]},{"name":"ICM_USER","features":[79]},{"name":"ICOPEN","features":[1,79]},{"name":"ICOpen","features":[79]},{"name":"ICOpenFunction","features":[1,79]},{"name":"ICPALETTE","features":[12,79]},{"name":"ICQUALITY_DEFAULT","features":[79]},{"name":"ICQUALITY_HIGH","features":[79]},{"name":"ICQUALITY_LOW","features":[79]},{"name":"ICRemove","features":[1,79]},{"name":"ICSETSTATUSPROC","features":[1,79]},{"name":"ICSTATUS_END","features":[79]},{"name":"ICSTATUS_ERROR","features":[79]},{"name":"ICSTATUS_START","features":[79]},{"name":"ICSTATUS_STATUS","features":[79]},{"name":"ICSTATUS_YIELD","features":[79]},{"name":"ICSendMessage","features":[1,79]},{"name":"ICSeqCompressFrame","features":[1,12,79]},{"name":"ICSeqCompressFrameEnd","features":[12,79]},{"name":"ICSeqCompressFrameStart","features":[1,12,79]},{"name":"ICVERSION","features":[79]},{"name":"IDD_ACMFILTERCHOOSE_BTN_DELNAME","features":[79]},{"name":"IDD_ACMFILTERCHOOSE_BTN_HELP","features":[79]},{"name":"IDD_ACMFILTERCHOOSE_BTN_SETNAME","features":[79]},{"name":"IDD_ACMFILTERCHOOSE_CMB_CUSTOM","features":[79]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTER","features":[79]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTERTAG","features":[79]},{"name":"IDD_ACMFORMATCHOOSE_BTN_DELNAME","features":[79]},{"name":"IDD_ACMFORMATCHOOSE_BTN_HELP","features":[79]},{"name":"IDD_ACMFORMATCHOOSE_BTN_SETNAME","features":[79]},{"name":"IDD_ACMFORMATCHOOSE_CMB_CUSTOM","features":[79]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMAT","features":[79]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMATTAG","features":[79]},{"name":"IDS_CAP_AUDIO_DROP_COMPERROR","features":[79]},{"name":"IDS_CAP_AUDIO_DROP_ERROR","features":[79]},{"name":"IDS_CAP_AVI_DRAWDIB_ERROR","features":[79]},{"name":"IDS_CAP_AVI_INIT_ERROR","features":[79]},{"name":"IDS_CAP_BEGIN","features":[79]},{"name":"IDS_CAP_CANTOPEN","features":[79]},{"name":"IDS_CAP_COMPRESSOR_ERROR","features":[79]},{"name":"IDS_CAP_DEFAVIEXT","features":[79]},{"name":"IDS_CAP_DEFPALEXT","features":[79]},{"name":"IDS_CAP_DRIVER_ERROR","features":[79]},{"name":"IDS_CAP_END","features":[79]},{"name":"IDS_CAP_ERRORDIBSAVE","features":[79]},{"name":"IDS_CAP_ERRORPALOPEN","features":[79]},{"name":"IDS_CAP_ERRORPALSAVE","features":[79]},{"name":"IDS_CAP_FILEEXISTS","features":[79]},{"name":"IDS_CAP_FILE_OPEN_ERROR","features":[79]},{"name":"IDS_CAP_FILE_WRITE_ERROR","features":[79]},{"name":"IDS_CAP_INFO","features":[79]},{"name":"IDS_CAP_MCI_CANT_STEP_ERROR","features":[79]},{"name":"IDS_CAP_MCI_CONTROL_ERROR","features":[79]},{"name":"IDS_CAP_NODISKSPACE","features":[79]},{"name":"IDS_CAP_NO_AUDIO_CAP_ERROR","features":[79]},{"name":"IDS_CAP_NO_FRAME_CAP_ERROR","features":[79]},{"name":"IDS_CAP_NO_PALETTE_WARN","features":[79]},{"name":"IDS_CAP_OUTOFMEM","features":[79]},{"name":"IDS_CAP_READONLYFILE","features":[79]},{"name":"IDS_CAP_RECORDING_ERROR","features":[79]},{"name":"IDS_CAP_RECORDING_ERROR2","features":[79]},{"name":"IDS_CAP_SAVEASPERCENT","features":[79]},{"name":"IDS_CAP_SEQ_MSGSTART","features":[79]},{"name":"IDS_CAP_SEQ_MSGSTOP","features":[79]},{"name":"IDS_CAP_SETFILESIZE","features":[79]},{"name":"IDS_CAP_STAT_CAP_AUDIO","features":[79]},{"name":"IDS_CAP_STAT_CAP_FINI","features":[79]},{"name":"IDS_CAP_STAT_CAP_INIT","features":[79]},{"name":"IDS_CAP_STAT_CAP_L_FRAMES","features":[79]},{"name":"IDS_CAP_STAT_FRAMESDROPPED","features":[79]},{"name":"IDS_CAP_STAT_I_FRAMES","features":[79]},{"name":"IDS_CAP_STAT_LIVE_MODE","features":[79]},{"name":"IDS_CAP_STAT_L_FRAMES","features":[79]},{"name":"IDS_CAP_STAT_OPTPAL_BUILD","features":[79]},{"name":"IDS_CAP_STAT_OVERLAY_MODE","features":[79]},{"name":"IDS_CAP_STAT_PALETTE_BUILD","features":[79]},{"name":"IDS_CAP_STAT_VIDEOAUDIO","features":[79]},{"name":"IDS_CAP_STAT_VIDEOCURRENT","features":[79]},{"name":"IDS_CAP_STAT_VIDEOONLY","features":[79]},{"name":"IDS_CAP_VIDEDITERR","features":[79]},{"name":"IDS_CAP_VIDEO_ADD_ERROR","features":[79]},{"name":"IDS_CAP_VIDEO_ALLOC_ERROR","features":[79]},{"name":"IDS_CAP_VIDEO_OPEN_ERROR","features":[79]},{"name":"IDS_CAP_VIDEO_PREPARE_ERROR","features":[79]},{"name":"IDS_CAP_VIDEO_SIZE_ERROR","features":[79]},{"name":"IDS_CAP_WAVE_ADD_ERROR","features":[79]},{"name":"IDS_CAP_WAVE_ALLOC_ERROR","features":[79]},{"name":"IDS_CAP_WAVE_OPEN_ERROR","features":[79]},{"name":"IDS_CAP_WAVE_PREPARE_ERROR","features":[79]},{"name":"IDS_CAP_WAVE_SIZE_ERROR","features":[79]},{"name":"IDS_CAP_WRITEERROR","features":[79]},{"name":"IGetFrame","features":[79]},{"name":"IMAADPCMWAVEFORMAT","features":[80,79]},{"name":"JDD_CONFIGCHANGED","features":[79]},{"name":"JDD_GETDEVCAPS","features":[79]},{"name":"JDD_GETNUMDEVS","features":[79]},{"name":"JDD_GETPOS","features":[79]},{"name":"JDD_GETPOSEX","features":[79]},{"name":"JDD_SETCALIBRATION","features":[79]},{"name":"JIFMK_00","features":[79]},{"name":"JIFMK_APP0","features":[79]},{"name":"JIFMK_APP1","features":[79]},{"name":"JIFMK_APP2","features":[79]},{"name":"JIFMK_APP3","features":[79]},{"name":"JIFMK_APP4","features":[79]},{"name":"JIFMK_APP5","features":[79]},{"name":"JIFMK_APP6","features":[79]},{"name":"JIFMK_APP7","features":[79]},{"name":"JIFMK_COM","features":[79]},{"name":"JIFMK_DAC","features":[79]},{"name":"JIFMK_DHP","features":[79]},{"name":"JIFMK_DHT","features":[79]},{"name":"JIFMK_DNL","features":[79]},{"name":"JIFMK_DQT","features":[79]},{"name":"JIFMK_DRI","features":[79]},{"name":"JIFMK_EOI","features":[79]},{"name":"JIFMK_EXP","features":[79]},{"name":"JIFMK_FF","features":[79]},{"name":"JIFMK_JPG","features":[79]},{"name":"JIFMK_JPG0","features":[79]},{"name":"JIFMK_JPG1","features":[79]},{"name":"JIFMK_JPG10","features":[79]},{"name":"JIFMK_JPG11","features":[79]},{"name":"JIFMK_JPG12","features":[79]},{"name":"JIFMK_JPG13","features":[79]},{"name":"JIFMK_JPG2","features":[79]},{"name":"JIFMK_JPG3","features":[79]},{"name":"JIFMK_JPG4","features":[79]},{"name":"JIFMK_JPG5","features":[79]},{"name":"JIFMK_JPG6","features":[79]},{"name":"JIFMK_JPG7","features":[79]},{"name":"JIFMK_JPG8","features":[79]},{"name":"JIFMK_JPG9","features":[79]},{"name":"JIFMK_RES","features":[79]},{"name":"JIFMK_RST0","features":[79]},{"name":"JIFMK_RST1","features":[79]},{"name":"JIFMK_RST2","features":[79]},{"name":"JIFMK_RST3","features":[79]},{"name":"JIFMK_RST4","features":[79]},{"name":"JIFMK_RST5","features":[79]},{"name":"JIFMK_RST6","features":[79]},{"name":"JIFMK_RST7","features":[79]},{"name":"JIFMK_SOF0","features":[79]},{"name":"JIFMK_SOF1","features":[79]},{"name":"JIFMK_SOF10","features":[79]},{"name":"JIFMK_SOF11","features":[79]},{"name":"JIFMK_SOF13","features":[79]},{"name":"JIFMK_SOF14","features":[79]},{"name":"JIFMK_SOF15","features":[79]},{"name":"JIFMK_SOF2","features":[79]},{"name":"JIFMK_SOF3","features":[79]},{"name":"JIFMK_SOF5","features":[79]},{"name":"JIFMK_SOF6","features":[79]},{"name":"JIFMK_SOF7","features":[79]},{"name":"JIFMK_SOF9","features":[79]},{"name":"JIFMK_SOI","features":[79]},{"name":"JIFMK_SOS","features":[79]},{"name":"JIFMK_TEM","features":[79]},{"name":"JOYCAPS2A","features":[79]},{"name":"JOYCAPS2W","features":[79]},{"name":"JOYCAPSA","features":[79]},{"name":"JOYCAPSW","features":[79]},{"name":"JOYCAPS_HASPOV","features":[79]},{"name":"JOYCAPS_HASR","features":[79]},{"name":"JOYCAPS_HASU","features":[79]},{"name":"JOYCAPS_HASV","features":[79]},{"name":"JOYCAPS_HASZ","features":[79]},{"name":"JOYCAPS_POV4DIR","features":[79]},{"name":"JOYCAPS_POVCTS","features":[79]},{"name":"JOYERR_NOCANDO","features":[79]},{"name":"JOYERR_NOERROR","features":[79]},{"name":"JOYERR_PARMS","features":[79]},{"name":"JOYERR_UNPLUGGED","features":[79]},{"name":"JOYINFO","features":[79]},{"name":"JOYINFOEX","features":[79]},{"name":"JOYSTICKID1","features":[79]},{"name":"JOYSTICKID2","features":[79]},{"name":"JOY_BUTTON1","features":[79]},{"name":"JOY_BUTTON10","features":[79]},{"name":"JOY_BUTTON11","features":[79]},{"name":"JOY_BUTTON12","features":[79]},{"name":"JOY_BUTTON13","features":[79]},{"name":"JOY_BUTTON14","features":[79]},{"name":"JOY_BUTTON15","features":[79]},{"name":"JOY_BUTTON16","features":[79]},{"name":"JOY_BUTTON17","features":[79]},{"name":"JOY_BUTTON18","features":[79]},{"name":"JOY_BUTTON19","features":[79]},{"name":"JOY_BUTTON1CHG","features":[79]},{"name":"JOY_BUTTON2","features":[79]},{"name":"JOY_BUTTON20","features":[79]},{"name":"JOY_BUTTON21","features":[79]},{"name":"JOY_BUTTON22","features":[79]},{"name":"JOY_BUTTON23","features":[79]},{"name":"JOY_BUTTON24","features":[79]},{"name":"JOY_BUTTON25","features":[79]},{"name":"JOY_BUTTON26","features":[79]},{"name":"JOY_BUTTON27","features":[79]},{"name":"JOY_BUTTON28","features":[79]},{"name":"JOY_BUTTON29","features":[79]},{"name":"JOY_BUTTON2CHG","features":[79]},{"name":"JOY_BUTTON3","features":[79]},{"name":"JOY_BUTTON30","features":[79]},{"name":"JOY_BUTTON31","features":[79]},{"name":"JOY_BUTTON32","features":[79]},{"name":"JOY_BUTTON3CHG","features":[79]},{"name":"JOY_BUTTON4","features":[79]},{"name":"JOY_BUTTON4CHG","features":[79]},{"name":"JOY_BUTTON5","features":[79]},{"name":"JOY_BUTTON6","features":[79]},{"name":"JOY_BUTTON7","features":[79]},{"name":"JOY_BUTTON8","features":[79]},{"name":"JOY_BUTTON9","features":[79]},{"name":"JOY_CAL_READ3","features":[79]},{"name":"JOY_CAL_READ4","features":[79]},{"name":"JOY_CAL_READ5","features":[79]},{"name":"JOY_CAL_READ6","features":[79]},{"name":"JOY_CAL_READALWAYS","features":[79]},{"name":"JOY_CAL_READRONLY","features":[79]},{"name":"JOY_CAL_READUONLY","features":[79]},{"name":"JOY_CAL_READVONLY","features":[79]},{"name":"JOY_CAL_READXONLY","features":[79]},{"name":"JOY_CAL_READXYONLY","features":[79]},{"name":"JOY_CAL_READYONLY","features":[79]},{"name":"JOY_CAL_READZONLY","features":[79]},{"name":"JOY_CONFIGCHANGED_MSGSTRING","features":[79]},{"name":"JOY_POVBACKWARD","features":[79]},{"name":"JOY_POVFORWARD","features":[79]},{"name":"JOY_POVLEFT","features":[79]},{"name":"JOY_POVRIGHT","features":[79]},{"name":"JOY_RETURNBUTTONS","features":[79]},{"name":"JOY_RETURNCENTERED","features":[79]},{"name":"JOY_RETURNPOV","features":[79]},{"name":"JOY_RETURNPOVCTS","features":[79]},{"name":"JOY_RETURNR","features":[79]},{"name":"JOY_RETURNRAWDATA","features":[79]},{"name":"JOY_RETURNU","features":[79]},{"name":"JOY_RETURNV","features":[79]},{"name":"JOY_RETURNX","features":[79]},{"name":"JOY_RETURNY","features":[79]},{"name":"JOY_RETURNZ","features":[79]},{"name":"JOY_USEDEADZONE","features":[79]},{"name":"JPEGINFOHEADER","features":[79]},{"name":"JPEG_PROCESS_BASELINE","features":[79]},{"name":"JPEG_RGB","features":[79]},{"name":"JPEG_Y","features":[79]},{"name":"JPEG_YCbCr","features":[79]},{"name":"KSDATAFORMAT_SUBTYPE_IEEE_FLOAT","features":[79]},{"name":"LPFNEXTDEVIO","features":[1,79,6]},{"name":"LPMMIOPROC","features":[1,79]},{"name":"LPTASKCALLBACK","features":[79]},{"name":"MCIERR_AVI_AUDIOERROR","features":[79]},{"name":"MCIERR_AVI_BADPALETTE","features":[79]},{"name":"MCIERR_AVI_CANTPLAYFULLSCREEN","features":[79]},{"name":"MCIERR_AVI_DISPLAYERROR","features":[79]},{"name":"MCIERR_AVI_NOCOMPRESSOR","features":[79]},{"name":"MCIERR_AVI_NODISPDIB","features":[79]},{"name":"MCIERR_AVI_NOTINTERLEAVED","features":[79]},{"name":"MCIERR_AVI_OLDAVIFORMAT","features":[79]},{"name":"MCIERR_AVI_TOOBIGFORVGA","features":[79]},{"name":"MCIERR_BAD_CONSTANT","features":[79]},{"name":"MCIERR_BAD_INTEGER","features":[79]},{"name":"MCIERR_BAD_TIME_FORMAT","features":[79]},{"name":"MCIERR_CANNOT_LOAD_DRIVER","features":[79]},{"name":"MCIERR_CANNOT_USE_ALL","features":[79]},{"name":"MCIERR_CREATEWINDOW","features":[79]},{"name":"MCIERR_CUSTOM_DRIVER_BASE","features":[79]},{"name":"MCIERR_DEVICE_LENGTH","features":[79]},{"name":"MCIERR_DEVICE_LOCKED","features":[79]},{"name":"MCIERR_DEVICE_NOT_INSTALLED","features":[79]},{"name":"MCIERR_DEVICE_NOT_READY","features":[79]},{"name":"MCIERR_DEVICE_OPEN","features":[79]},{"name":"MCIERR_DEVICE_ORD_LENGTH","features":[79]},{"name":"MCIERR_DEVICE_TYPE_REQUIRED","features":[79]},{"name":"MCIERR_DGV_BAD_CLIPBOARD_RANGE","features":[79]},{"name":"MCIERR_DGV_DEVICE_LIMIT","features":[79]},{"name":"MCIERR_DGV_DEVICE_MEMORY_FULL","features":[79]},{"name":"MCIERR_DGV_DISK_FULL","features":[79]},{"name":"MCIERR_DGV_IOERR","features":[79]},{"name":"MCIERR_DGV_WORKSPACE_EMPTY","features":[79]},{"name":"MCIERR_DRIVER","features":[79]},{"name":"MCIERR_DRIVER_INTERNAL","features":[79]},{"name":"MCIERR_DUPLICATE_ALIAS","features":[79]},{"name":"MCIERR_DUPLICATE_FLAGS","features":[79]},{"name":"MCIERR_EXTENSION_NOT_FOUND","features":[79]},{"name":"MCIERR_EXTRA_CHARACTERS","features":[79]},{"name":"MCIERR_FILENAME_REQUIRED","features":[79]},{"name":"MCIERR_FILE_NOT_FOUND","features":[79]},{"name":"MCIERR_FILE_NOT_SAVED","features":[79]},{"name":"MCIERR_FILE_READ","features":[79]},{"name":"MCIERR_FILE_WRITE","features":[79]},{"name":"MCIERR_FLAGS_NOT_COMPATIBLE","features":[79]},{"name":"MCIERR_GET_CD","features":[79]},{"name":"MCIERR_HARDWARE","features":[79]},{"name":"MCIERR_ILLEGAL_FOR_AUTO_OPEN","features":[79]},{"name":"MCIERR_INTERNAL","features":[79]},{"name":"MCIERR_INVALID_DEVICE_ID","features":[79]},{"name":"MCIERR_INVALID_DEVICE_NAME","features":[79]},{"name":"MCIERR_INVALID_FILE","features":[79]},{"name":"MCIERR_MISSING_COMMAND_STRING","features":[79]},{"name":"MCIERR_MISSING_DEVICE_NAME","features":[79]},{"name":"MCIERR_MISSING_PARAMETER","features":[79]},{"name":"MCIERR_MISSING_STRING_ARGUMENT","features":[79]},{"name":"MCIERR_MULTIPLE","features":[79]},{"name":"MCIERR_MUST_USE_SHAREABLE","features":[79]},{"name":"MCIERR_NEW_REQUIRES_ALIAS","features":[79]},{"name":"MCIERR_NONAPPLICABLE_FUNCTION","features":[79]},{"name":"MCIERR_NOTIFY_ON_AUTO_OPEN","features":[79]},{"name":"MCIERR_NO_CLOSING_QUOTE","features":[79]},{"name":"MCIERR_NO_ELEMENT_ALLOWED","features":[79]},{"name":"MCIERR_NO_IDENTITY","features":[79]},{"name":"MCIERR_NO_INTEGER","features":[79]},{"name":"MCIERR_NO_WINDOW","features":[79]},{"name":"MCIERR_NULL_PARAMETER_BLOCK","features":[79]},{"name":"MCIERR_OUTOFRANGE","features":[79]},{"name":"MCIERR_OUT_OF_MEMORY","features":[79]},{"name":"MCIERR_PARAM_OVERFLOW","features":[79]},{"name":"MCIERR_PARSER_INTERNAL","features":[79]},{"name":"MCIERR_SEQ_DIV_INCOMPATIBLE","features":[79]},{"name":"MCIERR_SEQ_NOMIDIPRESENT","features":[79]},{"name":"MCIERR_SEQ_PORTUNSPECIFIED","features":[79]},{"name":"MCIERR_SEQ_PORT_INUSE","features":[79]},{"name":"MCIERR_SEQ_PORT_MAPNODEVICE","features":[79]},{"name":"MCIERR_SEQ_PORT_MISCERROR","features":[79]},{"name":"MCIERR_SEQ_PORT_NONEXISTENT","features":[79]},{"name":"MCIERR_SEQ_TIMER","features":[79]},{"name":"MCIERR_SET_CD","features":[79]},{"name":"MCIERR_SET_DRIVE","features":[79]},{"name":"MCIERR_UNNAMED_RESOURCE","features":[79]},{"name":"MCIERR_UNRECOGNIZED_COMMAND","features":[79]},{"name":"MCIERR_UNRECOGNIZED_KEYWORD","features":[79]},{"name":"MCIERR_UNSUPPORTED_FUNCTION","features":[79]},{"name":"MCIERR_WAVE_INPUTSINUSE","features":[79]},{"name":"MCIERR_WAVE_INPUTSUNSUITABLE","features":[79]},{"name":"MCIERR_WAVE_INPUTUNSPECIFIED","features":[79]},{"name":"MCIERR_WAVE_OUTPUTSINUSE","features":[79]},{"name":"MCIERR_WAVE_OUTPUTSUNSUITABLE","features":[79]},{"name":"MCIERR_WAVE_OUTPUTUNSPECIFIED","features":[79]},{"name":"MCIERR_WAVE_SETINPUTINUSE","features":[79]},{"name":"MCIERR_WAVE_SETINPUTUNSUITABLE","features":[79]},{"name":"MCIERR_WAVE_SETOUTPUTINUSE","features":[79]},{"name":"MCIERR_WAVE_SETOUTPUTUNSUITABLE","features":[79]},{"name":"MCIWNDF_NOAUTOSIZEMOVIE","features":[79]},{"name":"MCIWNDF_NOAUTOSIZEWINDOW","features":[79]},{"name":"MCIWNDF_NOERRORDLG","features":[79]},{"name":"MCIWNDF_NOMENU","features":[79]},{"name":"MCIWNDF_NOOPEN","features":[79]},{"name":"MCIWNDF_NOPLAYBAR","features":[79]},{"name":"MCIWNDF_NOTIFYALL","features":[79]},{"name":"MCIWNDF_NOTIFYANSI","features":[79]},{"name":"MCIWNDF_NOTIFYERROR","features":[79]},{"name":"MCIWNDF_NOTIFYMEDIA","features":[79]},{"name":"MCIWNDF_NOTIFYMEDIAA","features":[79]},{"name":"MCIWNDF_NOTIFYMEDIAW","features":[79]},{"name":"MCIWNDF_NOTIFYMODE","features":[79]},{"name":"MCIWNDF_NOTIFYPOS","features":[79]},{"name":"MCIWNDF_NOTIFYSIZE","features":[79]},{"name":"MCIWNDF_RECORD","features":[79]},{"name":"MCIWNDF_SHOWALL","features":[79]},{"name":"MCIWNDF_SHOWMODE","features":[79]},{"name":"MCIWNDF_SHOWNAME","features":[79]},{"name":"MCIWNDF_SHOWPOS","features":[79]},{"name":"MCIWNDM_CAN_CONFIG","features":[79]},{"name":"MCIWNDM_CAN_EJECT","features":[79]},{"name":"MCIWNDM_CAN_PLAY","features":[79]},{"name":"MCIWNDM_CAN_RECORD","features":[79]},{"name":"MCIWNDM_CAN_SAVE","features":[79]},{"name":"MCIWNDM_CAN_WINDOW","features":[79]},{"name":"MCIWNDM_CHANGESTYLES","features":[79]},{"name":"MCIWNDM_EJECT","features":[79]},{"name":"MCIWNDM_GETACTIVETIMER","features":[79]},{"name":"MCIWNDM_GETALIAS","features":[79]},{"name":"MCIWNDM_GETDEVICE","features":[79]},{"name":"MCIWNDM_GETDEVICEA","features":[79]},{"name":"MCIWNDM_GETDEVICEID","features":[79]},{"name":"MCIWNDM_GETDEVICEW","features":[79]},{"name":"MCIWNDM_GETEND","features":[79]},{"name":"MCIWNDM_GETERROR","features":[79]},{"name":"MCIWNDM_GETERRORA","features":[79]},{"name":"MCIWNDM_GETERRORW","features":[79]},{"name":"MCIWNDM_GETFILENAME","features":[79]},{"name":"MCIWNDM_GETFILENAMEA","features":[79]},{"name":"MCIWNDM_GETFILENAMEW","features":[79]},{"name":"MCIWNDM_GETINACTIVETIMER","features":[79]},{"name":"MCIWNDM_GETLENGTH","features":[79]},{"name":"MCIWNDM_GETMODE","features":[79]},{"name":"MCIWNDM_GETMODEA","features":[79]},{"name":"MCIWNDM_GETMODEW","features":[79]},{"name":"MCIWNDM_GETPALETTE","features":[79]},{"name":"MCIWNDM_GETPOSITION","features":[79]},{"name":"MCIWNDM_GETPOSITIONA","features":[79]},{"name":"MCIWNDM_GETPOSITIONW","features":[79]},{"name":"MCIWNDM_GETREPEAT","features":[79]},{"name":"MCIWNDM_GETSPEED","features":[79]},{"name":"MCIWNDM_GETSTART","features":[79]},{"name":"MCIWNDM_GETSTYLES","features":[79]},{"name":"MCIWNDM_GETTIMEFORMAT","features":[79]},{"name":"MCIWNDM_GETTIMEFORMATA","features":[79]},{"name":"MCIWNDM_GETTIMEFORMATW","features":[79]},{"name":"MCIWNDM_GETVOLUME","features":[79]},{"name":"MCIWNDM_GETZOOM","features":[79]},{"name":"MCIWNDM_GET_DEST","features":[79]},{"name":"MCIWNDM_GET_SOURCE","features":[79]},{"name":"MCIWNDM_NEW","features":[79]},{"name":"MCIWNDM_NEWA","features":[79]},{"name":"MCIWNDM_NEWW","features":[79]},{"name":"MCIWNDM_NOTIFYERROR","features":[79]},{"name":"MCIWNDM_NOTIFYMEDIA","features":[79]},{"name":"MCIWNDM_NOTIFYMODE","features":[79]},{"name":"MCIWNDM_NOTIFYPOS","features":[79]},{"name":"MCIWNDM_NOTIFYSIZE","features":[79]},{"name":"MCIWNDM_OPEN","features":[79]},{"name":"MCIWNDM_OPENA","features":[79]},{"name":"MCIWNDM_OPENINTERFACE","features":[79]},{"name":"MCIWNDM_OPENW","features":[79]},{"name":"MCIWNDM_PALETTEKICK","features":[79]},{"name":"MCIWNDM_PLAYFROM","features":[79]},{"name":"MCIWNDM_PLAYREVERSE","features":[79]},{"name":"MCIWNDM_PLAYTO","features":[79]},{"name":"MCIWNDM_PUT_DEST","features":[79]},{"name":"MCIWNDM_PUT_SOURCE","features":[79]},{"name":"MCIWNDM_REALIZE","features":[79]},{"name":"MCIWNDM_RETURNSTRING","features":[79]},{"name":"MCIWNDM_RETURNSTRINGA","features":[79]},{"name":"MCIWNDM_RETURNSTRINGW","features":[79]},{"name":"MCIWNDM_SENDSTRING","features":[79]},{"name":"MCIWNDM_SENDSTRINGA","features":[79]},{"name":"MCIWNDM_SENDSTRINGW","features":[79]},{"name":"MCIWNDM_SETACTIVETIMER","features":[79]},{"name":"MCIWNDM_SETINACTIVETIMER","features":[79]},{"name":"MCIWNDM_SETOWNER","features":[79]},{"name":"MCIWNDM_SETPALETTE","features":[79]},{"name":"MCIWNDM_SETREPEAT","features":[79]},{"name":"MCIWNDM_SETSPEED","features":[79]},{"name":"MCIWNDM_SETTIMEFORMAT","features":[79]},{"name":"MCIWNDM_SETTIMEFORMATA","features":[79]},{"name":"MCIWNDM_SETTIMEFORMATW","features":[79]},{"name":"MCIWNDM_SETTIMERS","features":[79]},{"name":"MCIWNDM_SETVOLUME","features":[79]},{"name":"MCIWNDM_SETZOOM","features":[79]},{"name":"MCIWNDM_VALIDATEMEDIA","features":[79]},{"name":"MCIWNDOPENF_NEW","features":[79]},{"name":"MCIWND_END","features":[79]},{"name":"MCIWND_START","features":[79]},{"name":"MCIWND_WINDOW_CLASS","features":[79]},{"name":"MCIWndCreateA","features":[1,79]},{"name":"MCIWndCreateW","features":[1,79]},{"name":"MCIWndRegisterClass","features":[1,79]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_REVERSE","features":[79]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_STRETCH","features":[79]},{"name":"MCI_ANIM_GETDEVCAPS_FAST_RATE","features":[79]},{"name":"MCI_ANIM_GETDEVCAPS_MAX_WINDOWS","features":[79]},{"name":"MCI_ANIM_GETDEVCAPS_NORMAL_RATE","features":[79]},{"name":"MCI_ANIM_GETDEVCAPS_PALETTES","features":[79]},{"name":"MCI_ANIM_GETDEVCAPS_SLOW_RATE","features":[79]},{"name":"MCI_ANIM_INFO_TEXT","features":[79]},{"name":"MCI_ANIM_OPEN_NOSTATIC","features":[79]},{"name":"MCI_ANIM_OPEN_PARENT","features":[79]},{"name":"MCI_ANIM_OPEN_PARMSA","features":[1,79]},{"name":"MCI_ANIM_OPEN_PARMSW","features":[1,79]},{"name":"MCI_ANIM_OPEN_WS","features":[79]},{"name":"MCI_ANIM_PLAY_FAST","features":[79]},{"name":"MCI_ANIM_PLAY_PARMS","features":[79]},{"name":"MCI_ANIM_PLAY_REVERSE","features":[79]},{"name":"MCI_ANIM_PLAY_SCAN","features":[79]},{"name":"MCI_ANIM_PLAY_SLOW","features":[79]},{"name":"MCI_ANIM_PLAY_SPEED","features":[79]},{"name":"MCI_ANIM_PUT_DESTINATION","features":[79]},{"name":"MCI_ANIM_PUT_SOURCE","features":[79]},{"name":"MCI_ANIM_REALIZE_BKGD","features":[79]},{"name":"MCI_ANIM_REALIZE_NORM","features":[79]},{"name":"MCI_ANIM_RECT","features":[79]},{"name":"MCI_ANIM_RECT_PARMS","features":[1,79]},{"name":"MCI_ANIM_STATUS_FORWARD","features":[79]},{"name":"MCI_ANIM_STATUS_HPAL","features":[79]},{"name":"MCI_ANIM_STATUS_HWND","features":[79]},{"name":"MCI_ANIM_STATUS_SPEED","features":[79]},{"name":"MCI_ANIM_STATUS_STRETCH","features":[79]},{"name":"MCI_ANIM_STEP_FRAMES","features":[79]},{"name":"MCI_ANIM_STEP_PARMS","features":[79]},{"name":"MCI_ANIM_STEP_REVERSE","features":[79]},{"name":"MCI_ANIM_UPDATE_HDC","features":[79]},{"name":"MCI_ANIM_UPDATE_PARMS","features":[1,12,79]},{"name":"MCI_ANIM_WHERE_DESTINATION","features":[79]},{"name":"MCI_ANIM_WHERE_SOURCE","features":[79]},{"name":"MCI_ANIM_WINDOW_DEFAULT","features":[79]},{"name":"MCI_ANIM_WINDOW_DISABLE_STRETCH","features":[79]},{"name":"MCI_ANIM_WINDOW_ENABLE_STRETCH","features":[79]},{"name":"MCI_ANIM_WINDOW_HWND","features":[79]},{"name":"MCI_ANIM_WINDOW_PARMSA","features":[1,79]},{"name":"MCI_ANIM_WINDOW_PARMSW","features":[1,79]},{"name":"MCI_ANIM_WINDOW_STATE","features":[79]},{"name":"MCI_ANIM_WINDOW_TEXT","features":[79]},{"name":"MCI_AVI_SETVIDEO_DRAW_PROCEDURE","features":[79]},{"name":"MCI_AVI_SETVIDEO_PALETTE_COLOR","features":[79]},{"name":"MCI_AVI_SETVIDEO_PALETTE_HALFTONE","features":[79]},{"name":"MCI_AVI_STATUS_AUDIO_BREAKS","features":[79]},{"name":"MCI_AVI_STATUS_FRAMES_SKIPPED","features":[79]},{"name":"MCI_AVI_STATUS_LAST_PLAY_SPEED","features":[79]},{"name":"MCI_BREAK","features":[79]},{"name":"MCI_BREAK_HWND","features":[79]},{"name":"MCI_BREAK_KEY","features":[79]},{"name":"MCI_BREAK_OFF","features":[79]},{"name":"MCI_BREAK_PARMS","features":[1,79]},{"name":"MCI_CAPTURE","features":[79]},{"name":"MCI_CDA_STATUS_TYPE_TRACK","features":[79]},{"name":"MCI_CDA_TRACK_AUDIO","features":[79]},{"name":"MCI_CDA_TRACK_OTHER","features":[79]},{"name":"MCI_CLOSE","features":[79]},{"name":"MCI_CLOSE_DRIVER","features":[79]},{"name":"MCI_COLONIZED3_RETURN","features":[79]},{"name":"MCI_COLONIZED4_RETURN","features":[79]},{"name":"MCI_COMMAND_HEAD","features":[79]},{"name":"MCI_CONFIGURE","features":[79]},{"name":"MCI_CONSTANT","features":[79]},{"name":"MCI_COPY","features":[79]},{"name":"MCI_CUE","features":[79]},{"name":"MCI_CUT","features":[79]},{"name":"MCI_DELETE","features":[79]},{"name":"MCI_DEVTYPE_ANIMATION","features":[79]},{"name":"MCI_DEVTYPE_CD_AUDIO","features":[79]},{"name":"MCI_DEVTYPE_DAT","features":[79]},{"name":"MCI_DEVTYPE_DIGITAL_VIDEO","features":[79]},{"name":"MCI_DEVTYPE_FIRST","features":[79]},{"name":"MCI_DEVTYPE_FIRST_USER","features":[79]},{"name":"MCI_DEVTYPE_LAST","features":[79]},{"name":"MCI_DEVTYPE_OTHER","features":[79]},{"name":"MCI_DEVTYPE_OVERLAY","features":[79]},{"name":"MCI_DEVTYPE_SCANNER","features":[79]},{"name":"MCI_DEVTYPE_SEQUENCER","features":[79]},{"name":"MCI_DEVTYPE_VCR","features":[79]},{"name":"MCI_DEVTYPE_VIDEODISC","features":[79]},{"name":"MCI_DEVTYPE_WAVEFORM_AUDIO","features":[79]},{"name":"MCI_DGV_CAPTURE_AS","features":[79]},{"name":"MCI_DGV_CAPTURE_AT","features":[79]},{"name":"MCI_DGV_CAPTURE_PARMSA","features":[1,79]},{"name":"MCI_DGV_CAPTURE_PARMSW","features":[1,79]},{"name":"MCI_DGV_COPY_AT","features":[79]},{"name":"MCI_DGV_COPY_AUDIO_STREAM","features":[79]},{"name":"MCI_DGV_COPY_PARMS","features":[1,79]},{"name":"MCI_DGV_COPY_VIDEO_STREAM","features":[79]},{"name":"MCI_DGV_CUE_INPUT","features":[79]},{"name":"MCI_DGV_CUE_NOSHOW","features":[79]},{"name":"MCI_DGV_CUE_OUTPUT","features":[79]},{"name":"MCI_DGV_CUE_PARMS","features":[79]},{"name":"MCI_DGV_CUT_AT","features":[79]},{"name":"MCI_DGV_CUT_AUDIO_STREAM","features":[79]},{"name":"MCI_DGV_CUT_PARMS","features":[1,79]},{"name":"MCI_DGV_CUT_VIDEO_STREAM","features":[79]},{"name":"MCI_DGV_DELETE_AT","features":[79]},{"name":"MCI_DGV_DELETE_AUDIO_STREAM","features":[79]},{"name":"MCI_DGV_DELETE_PARMS","features":[1,79]},{"name":"MCI_DGV_DELETE_VIDEO_STREAM","features":[79]},{"name":"MCI_DGV_FF_AVI","features":[79]},{"name":"MCI_DGV_FF_AVSS","features":[79]},{"name":"MCI_DGV_FF_DIB","features":[79]},{"name":"MCI_DGV_FF_JFIF","features":[79]},{"name":"MCI_DGV_FF_JPEG","features":[79]},{"name":"MCI_DGV_FF_MPEG","features":[79]},{"name":"MCI_DGV_FF_RDIB","features":[79]},{"name":"MCI_DGV_FF_RJPEG","features":[79]},{"name":"MCI_DGV_FILE_MODE_EDITING","features":[79]},{"name":"MCI_DGV_FILE_MODE_EDITING_S","features":[79]},{"name":"MCI_DGV_FILE_MODE_IDLE","features":[79]},{"name":"MCI_DGV_FILE_MODE_IDLE_S","features":[79]},{"name":"MCI_DGV_FILE_MODE_LOADING","features":[79]},{"name":"MCI_DGV_FILE_MODE_LOADING_S","features":[79]},{"name":"MCI_DGV_FILE_MODE_SAVING","features":[79]},{"name":"MCI_DGV_FILE_MODE_SAVING_S","features":[79]},{"name":"MCI_DGV_FILE_S","features":[79]},{"name":"MCI_DGV_FREEZE_AT","features":[79]},{"name":"MCI_DGV_FREEZE_OUTSIDE","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_CAN_FREEZE","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_CAN_LOCK","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_CAN_REVERSE","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STRETCH","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STR_IN","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_CAN_TEST","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_HAS_STILL","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_MAXIMUM_RATE","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_MAX_WINDOWS","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_MINIMUM_RATE","features":[79]},{"name":"MCI_DGV_GETDEVCAPS_PALETTES","features":[79]},{"name":"MCI_DGV_INFO_AUDIO_ALG","features":[79]},{"name":"MCI_DGV_INFO_AUDIO_QUALITY","features":[79]},{"name":"MCI_DGV_INFO_ITEM","features":[79]},{"name":"MCI_DGV_INFO_PARMSA","features":[79]},{"name":"MCI_DGV_INFO_PARMSW","features":[79]},{"name":"MCI_DGV_INFO_STILL_ALG","features":[79]},{"name":"MCI_DGV_INFO_STILL_QUALITY","features":[79]},{"name":"MCI_DGV_INFO_TEXT","features":[79]},{"name":"MCI_DGV_INFO_USAGE","features":[79]},{"name":"MCI_DGV_INFO_VIDEO_ALG","features":[79]},{"name":"MCI_DGV_INFO_VIDEO_QUALITY","features":[79]},{"name":"MCI_DGV_INPUT_S","features":[79]},{"name":"MCI_DGV_LIST_ALG","features":[79]},{"name":"MCI_DGV_LIST_AUDIO_ALG","features":[79]},{"name":"MCI_DGV_LIST_AUDIO_QUALITY","features":[79]},{"name":"MCI_DGV_LIST_AUDIO_STREAM","features":[79]},{"name":"MCI_DGV_LIST_COUNT","features":[79]},{"name":"MCI_DGV_LIST_ITEM","features":[79]},{"name":"MCI_DGV_LIST_NUMBER","features":[79]},{"name":"MCI_DGV_LIST_PARMSA","features":[79]},{"name":"MCI_DGV_LIST_PARMSW","features":[79]},{"name":"MCI_DGV_LIST_STILL_ALG","features":[79]},{"name":"MCI_DGV_LIST_STILL_QUALITY","features":[79]},{"name":"MCI_DGV_LIST_VIDEO_ALG","features":[79]},{"name":"MCI_DGV_LIST_VIDEO_QUALITY","features":[79]},{"name":"MCI_DGV_LIST_VIDEO_SOURCE","features":[79]},{"name":"MCI_DGV_LIST_VIDEO_STREAM","features":[79]},{"name":"MCI_DGV_METHOD_DIRECT","features":[79]},{"name":"MCI_DGV_METHOD_POST","features":[79]},{"name":"MCI_DGV_METHOD_PRE","features":[79]},{"name":"MCI_DGV_MONITOR_FILE","features":[79]},{"name":"MCI_DGV_MONITOR_INPUT","features":[79]},{"name":"MCI_DGV_MONITOR_METHOD","features":[79]},{"name":"MCI_DGV_MONITOR_PARMS","features":[79]},{"name":"MCI_DGV_MONITOR_SOURCE","features":[79]},{"name":"MCI_DGV_OPEN_16BIT","features":[79]},{"name":"MCI_DGV_OPEN_32BIT","features":[79]},{"name":"MCI_DGV_OPEN_NOSTATIC","features":[79]},{"name":"MCI_DGV_OPEN_PARENT","features":[79]},{"name":"MCI_DGV_OPEN_PARMSA","features":[1,79]},{"name":"MCI_DGV_OPEN_PARMSW","features":[1,79]},{"name":"MCI_DGV_OPEN_WS","features":[79]},{"name":"MCI_DGV_PASTE_AT","features":[79]},{"name":"MCI_DGV_PASTE_AUDIO_STREAM","features":[79]},{"name":"MCI_DGV_PASTE_INSERT","features":[79]},{"name":"MCI_DGV_PASTE_OVERWRITE","features":[79]},{"name":"MCI_DGV_PASTE_PARMS","features":[1,79]},{"name":"MCI_DGV_PASTE_VIDEO_STREAM","features":[79]},{"name":"MCI_DGV_PLAY_REPEAT","features":[79]},{"name":"MCI_DGV_PLAY_REVERSE","features":[79]},{"name":"MCI_DGV_PUT_CLIENT","features":[79]},{"name":"MCI_DGV_PUT_DESTINATION","features":[79]},{"name":"MCI_DGV_PUT_FRAME","features":[79]},{"name":"MCI_DGV_PUT_SOURCE","features":[79]},{"name":"MCI_DGV_PUT_VIDEO","features":[79]},{"name":"MCI_DGV_PUT_WINDOW","features":[79]},{"name":"MCI_DGV_QUALITY_PARMSA","features":[79]},{"name":"MCI_DGV_QUALITY_PARMSW","features":[79]},{"name":"MCI_DGV_REALIZE_BKGD","features":[79]},{"name":"MCI_DGV_REALIZE_NORM","features":[79]},{"name":"MCI_DGV_RECORD_AUDIO_STREAM","features":[79]},{"name":"MCI_DGV_RECORD_HOLD","features":[79]},{"name":"MCI_DGV_RECORD_PARMS","features":[1,79]},{"name":"MCI_DGV_RECORD_VIDEO_STREAM","features":[79]},{"name":"MCI_DGV_RECT","features":[79]},{"name":"MCI_DGV_RECT_PARMS","features":[1,79]},{"name":"MCI_DGV_RESERVE_IN","features":[79]},{"name":"MCI_DGV_RESERVE_PARMSA","features":[79]},{"name":"MCI_DGV_RESERVE_PARMSW","features":[79]},{"name":"MCI_DGV_RESERVE_SIZE","features":[79]},{"name":"MCI_DGV_RESTORE_AT","features":[79]},{"name":"MCI_DGV_RESTORE_FROM","features":[79]},{"name":"MCI_DGV_RESTORE_PARMSA","features":[1,79]},{"name":"MCI_DGV_RESTORE_PARMSW","features":[1,79]},{"name":"MCI_DGV_SAVE_ABORT","features":[79]},{"name":"MCI_DGV_SAVE_KEEPRESERVE","features":[79]},{"name":"MCI_DGV_SAVE_PARMSA","features":[1,79]},{"name":"MCI_DGV_SAVE_PARMSW","features":[1,79]},{"name":"MCI_DGV_SETAUDIO_ALG","features":[79]},{"name":"MCI_DGV_SETAUDIO_AVGBYTESPERSEC","features":[79]},{"name":"MCI_DGV_SETAUDIO_BASS","features":[79]},{"name":"MCI_DGV_SETAUDIO_BITSPERSAMPLE","features":[79]},{"name":"MCI_DGV_SETAUDIO_BLOCKALIGN","features":[79]},{"name":"MCI_DGV_SETAUDIO_CLOCKTIME","features":[79]},{"name":"MCI_DGV_SETAUDIO_INPUT","features":[79]},{"name":"MCI_DGV_SETAUDIO_ITEM","features":[79]},{"name":"MCI_DGV_SETAUDIO_LEFT","features":[79]},{"name":"MCI_DGV_SETAUDIO_OUTPUT","features":[79]},{"name":"MCI_DGV_SETAUDIO_OVER","features":[79]},{"name":"MCI_DGV_SETAUDIO_PARMSA","features":[79]},{"name":"MCI_DGV_SETAUDIO_PARMSW","features":[79]},{"name":"MCI_DGV_SETAUDIO_QUALITY","features":[79]},{"name":"MCI_DGV_SETAUDIO_RECORD","features":[79]},{"name":"MCI_DGV_SETAUDIO_RIGHT","features":[79]},{"name":"MCI_DGV_SETAUDIO_SAMPLESPERSEC","features":[79]},{"name":"MCI_DGV_SETAUDIO_SOURCE","features":[79]},{"name":"MCI_DGV_SETAUDIO_SOURCE_AVERAGE","features":[79]},{"name":"MCI_DGV_SETAUDIO_SOURCE_LEFT","features":[79]},{"name":"MCI_DGV_SETAUDIO_SOURCE_RIGHT","features":[79]},{"name":"MCI_DGV_SETAUDIO_SOURCE_STEREO","features":[79]},{"name":"MCI_DGV_SETAUDIO_SRC_AVERAGE_S","features":[79]},{"name":"MCI_DGV_SETAUDIO_SRC_LEFT_S","features":[79]},{"name":"MCI_DGV_SETAUDIO_SRC_RIGHT_S","features":[79]},{"name":"MCI_DGV_SETAUDIO_SRC_STEREO_S","features":[79]},{"name":"MCI_DGV_SETAUDIO_STREAM","features":[79]},{"name":"MCI_DGV_SETAUDIO_TREBLE","features":[79]},{"name":"MCI_DGV_SETAUDIO_VALUE","features":[79]},{"name":"MCI_DGV_SETAUDIO_VOLUME","features":[79]},{"name":"MCI_DGV_SETVIDEO_ALG","features":[79]},{"name":"MCI_DGV_SETVIDEO_BITSPERPEL","features":[79]},{"name":"MCI_DGV_SETVIDEO_BRIGHTNESS","features":[79]},{"name":"MCI_DGV_SETVIDEO_CLOCKTIME","features":[79]},{"name":"MCI_DGV_SETVIDEO_COLOR","features":[79]},{"name":"MCI_DGV_SETVIDEO_CONTRAST","features":[79]},{"name":"MCI_DGV_SETVIDEO_FRAME_RATE","features":[79]},{"name":"MCI_DGV_SETVIDEO_GAMMA","features":[79]},{"name":"MCI_DGV_SETVIDEO_INPUT","features":[79]},{"name":"MCI_DGV_SETVIDEO_ITEM","features":[79]},{"name":"MCI_DGV_SETVIDEO_KEY_COLOR","features":[79]},{"name":"MCI_DGV_SETVIDEO_KEY_INDEX","features":[79]},{"name":"MCI_DGV_SETVIDEO_OUTPUT","features":[79]},{"name":"MCI_DGV_SETVIDEO_OVER","features":[79]},{"name":"MCI_DGV_SETVIDEO_PALHANDLE","features":[79]},{"name":"MCI_DGV_SETVIDEO_PARMSA","features":[79]},{"name":"MCI_DGV_SETVIDEO_PARMSW","features":[79]},{"name":"MCI_DGV_SETVIDEO_QUALITY","features":[79]},{"name":"MCI_DGV_SETVIDEO_RECORD","features":[79]},{"name":"MCI_DGV_SETVIDEO_SHARPNESS","features":[79]},{"name":"MCI_DGV_SETVIDEO_SOURCE","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC_S","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC_S","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_NUMBER","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL_S","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB_S","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM_S","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO","features":[79]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO_S","features":[79]},{"name":"MCI_DGV_SETVIDEO_STILL","features":[79]},{"name":"MCI_DGV_SETVIDEO_STREAM","features":[79]},{"name":"MCI_DGV_SETVIDEO_TINT","features":[79]},{"name":"MCI_DGV_SETVIDEO_VALUE","features":[79]},{"name":"MCI_DGV_SET_FILEFORMAT","features":[79]},{"name":"MCI_DGV_SET_PARMS","features":[79]},{"name":"MCI_DGV_SET_SEEK_EXACTLY","features":[79]},{"name":"MCI_DGV_SET_SPEED","features":[79]},{"name":"MCI_DGV_SET_STILL","features":[79]},{"name":"MCI_DGV_SIGNAL_AT","features":[79]},{"name":"MCI_DGV_SIGNAL_CANCEL","features":[79]},{"name":"MCI_DGV_SIGNAL_EVERY","features":[79]},{"name":"MCI_DGV_SIGNAL_PARMS","features":[79]},{"name":"MCI_DGV_SIGNAL_POSITION","features":[79]},{"name":"MCI_DGV_SIGNAL_USERVAL","features":[79]},{"name":"MCI_DGV_STATUS_AUDIO","features":[79]},{"name":"MCI_DGV_STATUS_AUDIO_INPUT","features":[79]},{"name":"MCI_DGV_STATUS_AUDIO_RECORD","features":[79]},{"name":"MCI_DGV_STATUS_AUDIO_SOURCE","features":[79]},{"name":"MCI_DGV_STATUS_AUDIO_STREAM","features":[79]},{"name":"MCI_DGV_STATUS_AVGBYTESPERSEC","features":[79]},{"name":"MCI_DGV_STATUS_BASS","features":[79]},{"name":"MCI_DGV_STATUS_BITSPERPEL","features":[79]},{"name":"MCI_DGV_STATUS_BITSPERSAMPLE","features":[79]},{"name":"MCI_DGV_STATUS_BLOCKALIGN","features":[79]},{"name":"MCI_DGV_STATUS_BRIGHTNESS","features":[79]},{"name":"MCI_DGV_STATUS_COLOR","features":[79]},{"name":"MCI_DGV_STATUS_CONTRAST","features":[79]},{"name":"MCI_DGV_STATUS_DISKSPACE","features":[79]},{"name":"MCI_DGV_STATUS_FILEFORMAT","features":[79]},{"name":"MCI_DGV_STATUS_FILE_COMPLETION","features":[79]},{"name":"MCI_DGV_STATUS_FILE_MODE","features":[79]},{"name":"MCI_DGV_STATUS_FORWARD","features":[79]},{"name":"MCI_DGV_STATUS_FRAME_RATE","features":[79]},{"name":"MCI_DGV_STATUS_GAMMA","features":[79]},{"name":"MCI_DGV_STATUS_HPAL","features":[79]},{"name":"MCI_DGV_STATUS_HWND","features":[79]},{"name":"MCI_DGV_STATUS_INPUT","features":[79]},{"name":"MCI_DGV_STATUS_KEY_COLOR","features":[79]},{"name":"MCI_DGV_STATUS_KEY_INDEX","features":[79]},{"name":"MCI_DGV_STATUS_LEFT","features":[79]},{"name":"MCI_DGV_STATUS_MONITOR","features":[79]},{"name":"MCI_DGV_STATUS_MONITOR_METHOD","features":[79]},{"name":"MCI_DGV_STATUS_NOMINAL","features":[79]},{"name":"MCI_DGV_STATUS_OUTPUT","features":[79]},{"name":"MCI_DGV_STATUS_PARMSA","features":[79]},{"name":"MCI_DGV_STATUS_PARMSW","features":[79]},{"name":"MCI_DGV_STATUS_PAUSE_MODE","features":[79]},{"name":"MCI_DGV_STATUS_RECORD","features":[79]},{"name":"MCI_DGV_STATUS_REFERENCE","features":[79]},{"name":"MCI_DGV_STATUS_RIGHT","features":[79]},{"name":"MCI_DGV_STATUS_SAMPLESPERSEC","features":[79]},{"name":"MCI_DGV_STATUS_SEEK_EXACTLY","features":[79]},{"name":"MCI_DGV_STATUS_SHARPNESS","features":[79]},{"name":"MCI_DGV_STATUS_SIZE","features":[79]},{"name":"MCI_DGV_STATUS_SMPTE","features":[79]},{"name":"MCI_DGV_STATUS_SPEED","features":[79]},{"name":"MCI_DGV_STATUS_STILL_FILEFORMAT","features":[79]},{"name":"MCI_DGV_STATUS_TINT","features":[79]},{"name":"MCI_DGV_STATUS_TREBLE","features":[79]},{"name":"MCI_DGV_STATUS_UNSAVED","features":[79]},{"name":"MCI_DGV_STATUS_VIDEO","features":[79]},{"name":"MCI_DGV_STATUS_VIDEO_RECORD","features":[79]},{"name":"MCI_DGV_STATUS_VIDEO_SOURCE","features":[79]},{"name":"MCI_DGV_STATUS_VIDEO_SRC_NUM","features":[79]},{"name":"MCI_DGV_STATUS_VIDEO_STREAM","features":[79]},{"name":"MCI_DGV_STATUS_VOLUME","features":[79]},{"name":"MCI_DGV_STATUS_WINDOW_MAXIMIZED","features":[79]},{"name":"MCI_DGV_STATUS_WINDOW_MINIMIZED","features":[79]},{"name":"MCI_DGV_STATUS_WINDOW_VISIBLE","features":[79]},{"name":"MCI_DGV_STEP_FRAMES","features":[79]},{"name":"MCI_DGV_STEP_PARMS","features":[79]},{"name":"MCI_DGV_STEP_REVERSE","features":[79]},{"name":"MCI_DGV_STOP_HOLD","features":[79]},{"name":"MCI_DGV_UPDATE_HDC","features":[79]},{"name":"MCI_DGV_UPDATE_PAINT","features":[79]},{"name":"MCI_DGV_UPDATE_PARMS","features":[1,12,79]},{"name":"MCI_DGV_WHERE_DESTINATION","features":[79]},{"name":"MCI_DGV_WHERE_FRAME","features":[79]},{"name":"MCI_DGV_WHERE_MAX","features":[79]},{"name":"MCI_DGV_WHERE_SOURCE","features":[79]},{"name":"MCI_DGV_WHERE_VIDEO","features":[79]},{"name":"MCI_DGV_WHERE_WINDOW","features":[79]},{"name":"MCI_DGV_WINDOW_DEFAULT","features":[79]},{"name":"MCI_DGV_WINDOW_HWND","features":[79]},{"name":"MCI_DGV_WINDOW_PARMSA","features":[1,79]},{"name":"MCI_DGV_WINDOW_PARMSW","features":[1,79]},{"name":"MCI_DGV_WINDOW_STATE","features":[79]},{"name":"MCI_DGV_WINDOW_TEXT","features":[79]},{"name":"MCI_END_COMMAND","features":[79]},{"name":"MCI_END_COMMAND_LIST","features":[79]},{"name":"MCI_END_CONSTANT","features":[79]},{"name":"MCI_ESCAPE","features":[79]},{"name":"MCI_FALSE","features":[79]},{"name":"MCI_FIRST","features":[79]},{"name":"MCI_FLAG","features":[79]},{"name":"MCI_FORMAT_BYTES","features":[79]},{"name":"MCI_FORMAT_BYTES_S","features":[79]},{"name":"MCI_FORMAT_FRAMES","features":[79]},{"name":"MCI_FORMAT_FRAMES_S","features":[79]},{"name":"MCI_FORMAT_HMS","features":[79]},{"name":"MCI_FORMAT_HMS_S","features":[79]},{"name":"MCI_FORMAT_MILLISECONDS","features":[79]},{"name":"MCI_FORMAT_MILLISECONDS_S","features":[79]},{"name":"MCI_FORMAT_MSF","features":[79]},{"name":"MCI_FORMAT_MSF_S","features":[79]},{"name":"MCI_FORMAT_SAMPLES","features":[79]},{"name":"MCI_FORMAT_SAMPLES_S","features":[79]},{"name":"MCI_FORMAT_SMPTE_24","features":[79]},{"name":"MCI_FORMAT_SMPTE_24_S","features":[79]},{"name":"MCI_FORMAT_SMPTE_25","features":[79]},{"name":"MCI_FORMAT_SMPTE_25_S","features":[79]},{"name":"MCI_FORMAT_SMPTE_30","features":[79]},{"name":"MCI_FORMAT_SMPTE_30DROP","features":[79]},{"name":"MCI_FORMAT_SMPTE_30DROP_S","features":[79]},{"name":"MCI_FORMAT_SMPTE_30_S","features":[79]},{"name":"MCI_FORMAT_TMSF","features":[79]},{"name":"MCI_FORMAT_TMSF_S","features":[79]},{"name":"MCI_FREEZE","features":[79]},{"name":"MCI_FROM","features":[79]},{"name":"MCI_GENERIC_PARMS","features":[79]},{"name":"MCI_GETDEVCAPS","features":[79]},{"name":"MCI_GETDEVCAPS_CAN_EJECT","features":[79]},{"name":"MCI_GETDEVCAPS_CAN_PLAY","features":[79]},{"name":"MCI_GETDEVCAPS_CAN_RECORD","features":[79]},{"name":"MCI_GETDEVCAPS_CAN_SAVE","features":[79]},{"name":"MCI_GETDEVCAPS_COMPOUND_DEVICE","features":[79]},{"name":"MCI_GETDEVCAPS_DEVICE_TYPE","features":[79]},{"name":"MCI_GETDEVCAPS_HAS_AUDIO","features":[79]},{"name":"MCI_GETDEVCAPS_HAS_VIDEO","features":[79]},{"name":"MCI_GETDEVCAPS_ITEM","features":[79]},{"name":"MCI_GETDEVCAPS_PARMS","features":[79]},{"name":"MCI_GETDEVCAPS_USES_FILES","features":[79]},{"name":"MCI_HDC","features":[79]},{"name":"MCI_HPAL","features":[79]},{"name":"MCI_HWND","features":[79]},{"name":"MCI_INFO","features":[79]},{"name":"MCI_INFO_COPYRIGHT","features":[79]},{"name":"MCI_INFO_FILE","features":[79]},{"name":"MCI_INFO_MEDIA_IDENTITY","features":[79]},{"name":"MCI_INFO_MEDIA_UPC","features":[79]},{"name":"MCI_INFO_NAME","features":[79]},{"name":"MCI_INFO_PARMSA","features":[79]},{"name":"MCI_INFO_PARMSW","features":[79]},{"name":"MCI_INFO_PRODUCT","features":[79]},{"name":"MCI_INFO_VERSION","features":[79]},{"name":"MCI_INTEGER","features":[79]},{"name":"MCI_INTEGER64","features":[79]},{"name":"MCI_INTEGER_RETURNED","features":[79]},{"name":"MCI_LAST","features":[79]},{"name":"MCI_LIST","features":[79]},{"name":"MCI_LOAD","features":[79]},{"name":"MCI_LOAD_FILE","features":[79]},{"name":"MCI_LOAD_PARMSA","features":[79]},{"name":"MCI_LOAD_PARMSW","features":[79]},{"name":"MCI_MAX_DEVICE_TYPE_LENGTH","features":[79]},{"name":"MCI_MCIAVI_PLAY_FULLBY2","features":[79]},{"name":"MCI_MCIAVI_PLAY_FULLSCREEN","features":[79]},{"name":"MCI_MCIAVI_PLAY_WINDOW","features":[79]},{"name":"MCI_MODE_NOT_READY","features":[79]},{"name":"MCI_MODE_OPEN","features":[79]},{"name":"MCI_MODE_PAUSE","features":[79]},{"name":"MCI_MODE_PLAY","features":[79]},{"name":"MCI_MODE_RECORD","features":[79]},{"name":"MCI_MODE_SEEK","features":[79]},{"name":"MCI_MODE_STOP","features":[79]},{"name":"MCI_MONITOR","features":[79]},{"name":"MCI_NOTIFY","features":[79]},{"name":"MCI_NOTIFY_ABORTED","features":[79]},{"name":"MCI_NOTIFY_FAILURE","features":[79]},{"name":"MCI_NOTIFY_SUCCESSFUL","features":[79]},{"name":"MCI_NOTIFY_SUPERSEDED","features":[79]},{"name":"MCI_OFF","features":[79]},{"name":"MCI_OFF_S","features":[79]},{"name":"MCI_ON","features":[79]},{"name":"MCI_ON_S","features":[79]},{"name":"MCI_OPEN","features":[79]},{"name":"MCI_OPEN_ALIAS","features":[79]},{"name":"MCI_OPEN_DRIVER","features":[79]},{"name":"MCI_OPEN_DRIVER_PARMS","features":[79]},{"name":"MCI_OPEN_ELEMENT","features":[79]},{"name":"MCI_OPEN_ELEMENT_ID","features":[79]},{"name":"MCI_OPEN_PARMSA","features":[79]},{"name":"MCI_OPEN_PARMSW","features":[79]},{"name":"MCI_OPEN_SHAREABLE","features":[79]},{"name":"MCI_OPEN_TYPE","features":[79]},{"name":"MCI_OPEN_TYPE_ID","features":[79]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_FREEZE","features":[79]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_STRETCH","features":[79]},{"name":"MCI_OVLY_GETDEVCAPS_MAX_WINDOWS","features":[79]},{"name":"MCI_OVLY_INFO_TEXT","features":[79]},{"name":"MCI_OVLY_LOAD_PARMSA","features":[1,79]},{"name":"MCI_OVLY_LOAD_PARMSW","features":[1,79]},{"name":"MCI_OVLY_OPEN_PARENT","features":[79]},{"name":"MCI_OVLY_OPEN_PARMSA","features":[1,79]},{"name":"MCI_OVLY_OPEN_PARMSW","features":[1,79]},{"name":"MCI_OVLY_OPEN_WS","features":[79]},{"name":"MCI_OVLY_PUT_DESTINATION","features":[79]},{"name":"MCI_OVLY_PUT_FRAME","features":[79]},{"name":"MCI_OVLY_PUT_SOURCE","features":[79]},{"name":"MCI_OVLY_PUT_VIDEO","features":[79]},{"name":"MCI_OVLY_RECT","features":[79]},{"name":"MCI_OVLY_RECT_PARMS","features":[1,79]},{"name":"MCI_OVLY_SAVE_PARMSA","features":[1,79]},{"name":"MCI_OVLY_SAVE_PARMSW","features":[1,79]},{"name":"MCI_OVLY_STATUS_HWND","features":[79]},{"name":"MCI_OVLY_STATUS_STRETCH","features":[79]},{"name":"MCI_OVLY_WHERE_DESTINATION","features":[79]},{"name":"MCI_OVLY_WHERE_FRAME","features":[79]},{"name":"MCI_OVLY_WHERE_SOURCE","features":[79]},{"name":"MCI_OVLY_WHERE_VIDEO","features":[79]},{"name":"MCI_OVLY_WINDOW_DEFAULT","features":[79]},{"name":"MCI_OVLY_WINDOW_DISABLE_STRETCH","features":[79]},{"name":"MCI_OVLY_WINDOW_ENABLE_STRETCH","features":[79]},{"name":"MCI_OVLY_WINDOW_HWND","features":[79]},{"name":"MCI_OVLY_WINDOW_PARMSA","features":[1,79]},{"name":"MCI_OVLY_WINDOW_PARMSW","features":[1,79]},{"name":"MCI_OVLY_WINDOW_STATE","features":[79]},{"name":"MCI_OVLY_WINDOW_TEXT","features":[79]},{"name":"MCI_PASTE","features":[79]},{"name":"MCI_PAUSE","features":[79]},{"name":"MCI_PLAY","features":[79]},{"name":"MCI_PLAY_PARMS","features":[79]},{"name":"MCI_PUT","features":[79]},{"name":"MCI_QUALITY","features":[79]},{"name":"MCI_QUALITY_ALG","features":[79]},{"name":"MCI_QUALITY_DIALOG","features":[79]},{"name":"MCI_QUALITY_HANDLE","features":[79]},{"name":"MCI_QUALITY_ITEM","features":[79]},{"name":"MCI_QUALITY_ITEM_AUDIO","features":[79]},{"name":"MCI_QUALITY_ITEM_STILL","features":[79]},{"name":"MCI_QUALITY_ITEM_VIDEO","features":[79]},{"name":"MCI_QUALITY_NAME","features":[79]},{"name":"MCI_REALIZE","features":[79]},{"name":"MCI_RECORD","features":[79]},{"name":"MCI_RECORD_INSERT","features":[79]},{"name":"MCI_RECORD_OVERWRITE","features":[79]},{"name":"MCI_RECORD_PARMS","features":[79]},{"name":"MCI_RECT","features":[79]},{"name":"MCI_RESERVE","features":[79]},{"name":"MCI_RESOURCE_DRIVER","features":[79]},{"name":"MCI_RESOURCE_RETURNED","features":[79]},{"name":"MCI_RESTORE","features":[79]},{"name":"MCI_RESUME","features":[79]},{"name":"MCI_RETURN","features":[79]},{"name":"MCI_SAVE","features":[79]},{"name":"MCI_SAVE_FILE","features":[79]},{"name":"MCI_SAVE_PARMSA","features":[79]},{"name":"MCI_SAVE_PARMSW","features":[79]},{"name":"MCI_SECTION","features":[79]},{"name":"MCI_SEEK","features":[79]},{"name":"MCI_SEEK_PARMS","features":[79]},{"name":"MCI_SEEK_TO_END","features":[79]},{"name":"MCI_SEEK_TO_START","features":[79]},{"name":"MCI_SEQ_FILE","features":[79]},{"name":"MCI_SEQ_FILE_S","features":[79]},{"name":"MCI_SEQ_FORMAT_SONGPTR","features":[79]},{"name":"MCI_SEQ_FORMAT_SONGPTR_S","features":[79]},{"name":"MCI_SEQ_MAPPER","features":[79]},{"name":"MCI_SEQ_MAPPER_S","features":[79]},{"name":"MCI_SEQ_MIDI","features":[79]},{"name":"MCI_SEQ_MIDI_S","features":[79]},{"name":"MCI_SEQ_NONE","features":[79]},{"name":"MCI_SEQ_NONE_S","features":[79]},{"name":"MCI_SEQ_SET_MASTER","features":[79]},{"name":"MCI_SEQ_SET_OFFSET","features":[79]},{"name":"MCI_SEQ_SET_PARMS","features":[79]},{"name":"MCI_SEQ_SET_PORT","features":[79]},{"name":"MCI_SEQ_SET_SLAVE","features":[79]},{"name":"MCI_SEQ_SET_TEMPO","features":[79]},{"name":"MCI_SEQ_SMPTE","features":[79]},{"name":"MCI_SEQ_SMPTE_S","features":[79]},{"name":"MCI_SEQ_STATUS_COPYRIGHT","features":[79]},{"name":"MCI_SEQ_STATUS_DIVTYPE","features":[79]},{"name":"MCI_SEQ_STATUS_MASTER","features":[79]},{"name":"MCI_SEQ_STATUS_NAME","features":[79]},{"name":"MCI_SEQ_STATUS_OFFSET","features":[79]},{"name":"MCI_SEQ_STATUS_PORT","features":[79]},{"name":"MCI_SEQ_STATUS_SLAVE","features":[79]},{"name":"MCI_SEQ_STATUS_TEMPO","features":[79]},{"name":"MCI_SET","features":[79]},{"name":"MCI_SETAUDIO","features":[79]},{"name":"MCI_SETVIDEO","features":[79]},{"name":"MCI_SET_AUDIO","features":[79]},{"name":"MCI_SET_AUDIO_ALL","features":[79]},{"name":"MCI_SET_AUDIO_LEFT","features":[79]},{"name":"MCI_SET_AUDIO_RIGHT","features":[79]},{"name":"MCI_SET_DOOR_CLOSED","features":[79]},{"name":"MCI_SET_DOOR_OPEN","features":[79]},{"name":"MCI_SET_OFF","features":[79]},{"name":"MCI_SET_ON","features":[79]},{"name":"MCI_SET_PARMS","features":[79]},{"name":"MCI_SET_TIME_FORMAT","features":[79]},{"name":"MCI_SET_VIDEO","features":[79]},{"name":"MCI_SIGNAL","features":[79]},{"name":"MCI_SPIN","features":[79]},{"name":"MCI_STATUS","features":[79]},{"name":"MCI_STATUS_CURRENT_TRACK","features":[79]},{"name":"MCI_STATUS_ITEM","features":[79]},{"name":"MCI_STATUS_LENGTH","features":[79]},{"name":"MCI_STATUS_MEDIA_PRESENT","features":[79]},{"name":"MCI_STATUS_MODE","features":[79]},{"name":"MCI_STATUS_NUMBER_OF_TRACKS","features":[79]},{"name":"MCI_STATUS_PARMS","features":[79]},{"name":"MCI_STATUS_POSITION","features":[79]},{"name":"MCI_STATUS_READY","features":[79]},{"name":"MCI_STATUS_START","features":[79]},{"name":"MCI_STATUS_TIME_FORMAT","features":[79]},{"name":"MCI_STEP","features":[79]},{"name":"MCI_STOP","features":[79]},{"name":"MCI_STRING","features":[79]},{"name":"MCI_SYSINFO","features":[79]},{"name":"MCI_SYSINFO_INSTALLNAME","features":[79]},{"name":"MCI_SYSINFO_NAME","features":[79]},{"name":"MCI_SYSINFO_OPEN","features":[79]},{"name":"MCI_SYSINFO_PARMSA","features":[79]},{"name":"MCI_SYSINFO_PARMSW","features":[79]},{"name":"MCI_SYSINFO_QUANTITY","features":[79]},{"name":"MCI_TEST","features":[79]},{"name":"MCI_TO","features":[79]},{"name":"MCI_TRACK","features":[79]},{"name":"MCI_TRUE","features":[79]},{"name":"MCI_UNDO","features":[79]},{"name":"MCI_UNFREEZE","features":[79]},{"name":"MCI_UPDATE","features":[79]},{"name":"MCI_USER_MESSAGES","features":[79]},{"name":"MCI_VD_ESCAPE_PARMSA","features":[79]},{"name":"MCI_VD_ESCAPE_PARMSW","features":[79]},{"name":"MCI_VD_ESCAPE_STRING","features":[79]},{"name":"MCI_VD_FORMAT_TRACK","features":[79]},{"name":"MCI_VD_FORMAT_TRACK_S","features":[79]},{"name":"MCI_VD_GETDEVCAPS_CAN_REVERSE","features":[79]},{"name":"MCI_VD_GETDEVCAPS_CAV","features":[79]},{"name":"MCI_VD_GETDEVCAPS_CLV","features":[79]},{"name":"MCI_VD_GETDEVCAPS_FAST_RATE","features":[79]},{"name":"MCI_VD_GETDEVCAPS_NORMAL_RATE","features":[79]},{"name":"MCI_VD_GETDEVCAPS_SLOW_RATE","features":[79]},{"name":"MCI_VD_MEDIA_CAV","features":[79]},{"name":"MCI_VD_MEDIA_CLV","features":[79]},{"name":"MCI_VD_MEDIA_OTHER","features":[79]},{"name":"MCI_VD_MODE_PARK","features":[79]},{"name":"MCI_VD_PLAY_FAST","features":[79]},{"name":"MCI_VD_PLAY_PARMS","features":[79]},{"name":"MCI_VD_PLAY_REVERSE","features":[79]},{"name":"MCI_VD_PLAY_SCAN","features":[79]},{"name":"MCI_VD_PLAY_SLOW","features":[79]},{"name":"MCI_VD_PLAY_SPEED","features":[79]},{"name":"MCI_VD_SEEK_REVERSE","features":[79]},{"name":"MCI_VD_SPIN_DOWN","features":[79]},{"name":"MCI_VD_SPIN_UP","features":[79]},{"name":"MCI_VD_STATUS_DISC_SIZE","features":[79]},{"name":"MCI_VD_STATUS_FORWARD","features":[79]},{"name":"MCI_VD_STATUS_MEDIA_TYPE","features":[79]},{"name":"MCI_VD_STATUS_SIDE","features":[79]},{"name":"MCI_VD_STATUS_SPEED","features":[79]},{"name":"MCI_VD_STEP_FRAMES","features":[79]},{"name":"MCI_VD_STEP_PARMS","features":[79]},{"name":"MCI_VD_STEP_REVERSE","features":[79]},{"name":"MCI_WAIT","features":[79]},{"name":"MCI_WAVE_DELETE_PARMS","features":[79]},{"name":"MCI_WAVE_GETDEVCAPS_INPUTS","features":[79]},{"name":"MCI_WAVE_GETDEVCAPS_OUTPUTS","features":[79]},{"name":"MCI_WAVE_INPUT","features":[79]},{"name":"MCI_WAVE_MAPPER","features":[79]},{"name":"MCI_WAVE_OPEN_BUFFER","features":[79]},{"name":"MCI_WAVE_OPEN_PARMSA","features":[79]},{"name":"MCI_WAVE_OPEN_PARMSW","features":[79]},{"name":"MCI_WAVE_OUTPUT","features":[79]},{"name":"MCI_WAVE_PCM","features":[79]},{"name":"MCI_WAVE_SET_ANYINPUT","features":[79]},{"name":"MCI_WAVE_SET_ANYOUTPUT","features":[79]},{"name":"MCI_WAVE_SET_AVGBYTESPERSEC","features":[79]},{"name":"MCI_WAVE_SET_BITSPERSAMPLE","features":[79]},{"name":"MCI_WAVE_SET_BLOCKALIGN","features":[79]},{"name":"MCI_WAVE_SET_CHANNELS","features":[79]},{"name":"MCI_WAVE_SET_FORMATTAG","features":[79]},{"name":"MCI_WAVE_SET_PARMS","features":[79]},{"name":"MCI_WAVE_SET_SAMPLESPERSEC","features":[79]},{"name":"MCI_WAVE_STATUS_AVGBYTESPERSEC","features":[79]},{"name":"MCI_WAVE_STATUS_BITSPERSAMPLE","features":[79]},{"name":"MCI_WAVE_STATUS_BLOCKALIGN","features":[79]},{"name":"MCI_WAVE_STATUS_CHANNELS","features":[79]},{"name":"MCI_WAVE_STATUS_FORMATTAG","features":[79]},{"name":"MCI_WAVE_STATUS_LEVEL","features":[79]},{"name":"MCI_WAVE_STATUS_SAMPLESPERSEC","features":[79]},{"name":"MCI_WHERE","features":[79]},{"name":"MCI_WINDOW","features":[79]},{"name":"MCMADM_E_REGKEY_NOT_FOUND","features":[79]},{"name":"MCMADM_I_NO_EVENTS","features":[79]},{"name":"MEDIASPACEADPCMWAVEFORMAT","features":[80,79]},{"name":"MIDIMAPPER_S","features":[79]},{"name":"MIDIOPENSTRMID","features":[79]},{"name":"MIDI_IO_COOKED","features":[79]},{"name":"MIDI_IO_PACKED","features":[79]},{"name":"MIDM_ADDBUFFER","features":[79]},{"name":"MIDM_CLOSE","features":[79]},{"name":"MIDM_GETDEVCAPS","features":[79]},{"name":"MIDM_GETNUMDEVS","features":[79]},{"name":"MIDM_INIT","features":[79]},{"name":"MIDM_INIT_EX","features":[79]},{"name":"MIDM_MAPPER","features":[79]},{"name":"MIDM_OPEN","features":[79]},{"name":"MIDM_PREPARE","features":[79]},{"name":"MIDM_RESET","features":[79]},{"name":"MIDM_START","features":[79]},{"name":"MIDM_STOP","features":[79]},{"name":"MIDM_UNPREPARE","features":[79]},{"name":"MIDM_USER","features":[79]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_MTS","features":[79]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_ONOFF","features":[79]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_SYNTHSELECT","features":[79]},{"name":"MIXEROPENDESC","features":[80,79]},{"name":"MMCKINFO","features":[79]},{"name":"MMIOERR_ACCESSDENIED","features":[79]},{"name":"MMIOERR_BASE","features":[79]},{"name":"MMIOERR_CANNOTCLOSE","features":[79]},{"name":"MMIOERR_CANNOTEXPAND","features":[79]},{"name":"MMIOERR_CANNOTOPEN","features":[79]},{"name":"MMIOERR_CANNOTREAD","features":[79]},{"name":"MMIOERR_CANNOTSEEK","features":[79]},{"name":"MMIOERR_CANNOTWRITE","features":[79]},{"name":"MMIOERR_CHUNKNOTFOUND","features":[79]},{"name":"MMIOERR_FILENOTFOUND","features":[79]},{"name":"MMIOERR_INVALIDFILE","features":[79]},{"name":"MMIOERR_NETWORKERROR","features":[79]},{"name":"MMIOERR_OUTOFMEMORY","features":[79]},{"name":"MMIOERR_PATHNOTFOUND","features":[79]},{"name":"MMIOERR_SHARINGVIOLATION","features":[79]},{"name":"MMIOERR_TOOMANYOPENFILES","features":[79]},{"name":"MMIOERR_UNBUFFERED","features":[79]},{"name":"MMIOINFO","features":[1,79]},{"name":"MMIOM_CLOSE","features":[79]},{"name":"MMIOM_OPEN","features":[79]},{"name":"MMIOM_READ","features":[79]},{"name":"MMIOM_RENAME","features":[79]},{"name":"MMIOM_SEEK","features":[79]},{"name":"MMIOM_USER","features":[79]},{"name":"MMIOM_WRITE","features":[79]},{"name":"MMIOM_WRITEFLUSH","features":[79]},{"name":"MMIO_ALLOCBUF","features":[79]},{"name":"MMIO_COMPAT","features":[79]},{"name":"MMIO_CREATE","features":[79]},{"name":"MMIO_CREATELIST","features":[79]},{"name":"MMIO_CREATERIFF","features":[79]},{"name":"MMIO_DEFAULTBUFFER","features":[79]},{"name":"MMIO_DELETE","features":[79]},{"name":"MMIO_DENYNONE","features":[79]},{"name":"MMIO_DENYREAD","features":[79]},{"name":"MMIO_DENYWRITE","features":[79]},{"name":"MMIO_DIRTY","features":[79]},{"name":"MMIO_EMPTYBUF","features":[79]},{"name":"MMIO_EXCLUSIVE","features":[79]},{"name":"MMIO_EXIST","features":[79]},{"name":"MMIO_FHOPEN","features":[79]},{"name":"MMIO_FINDCHUNK","features":[79]},{"name":"MMIO_FINDLIST","features":[79]},{"name":"MMIO_FINDPROC","features":[79]},{"name":"MMIO_FINDRIFF","features":[79]},{"name":"MMIO_GETTEMP","features":[79]},{"name":"MMIO_GLOBALPROC","features":[79]},{"name":"MMIO_INSTALLPROC","features":[79]},{"name":"MMIO_PARSE","features":[79]},{"name":"MMIO_READ","features":[79]},{"name":"MMIO_READWRITE","features":[79]},{"name":"MMIO_REMOVEPROC","features":[79]},{"name":"MMIO_RWMODE","features":[79]},{"name":"MMIO_SHAREMODE","features":[79]},{"name":"MMIO_TOUPPER","features":[79]},{"name":"MMIO_UNICODEPROC","features":[79]},{"name":"MMIO_WRITE","features":[79]},{"name":"MM_3COM","features":[79]},{"name":"MM_3COM_CB_MIXER","features":[79]},{"name":"MM_3COM_CB_WAVEIN","features":[79]},{"name":"MM_3COM_CB_WAVEOUT","features":[79]},{"name":"MM_3DFX","features":[79]},{"name":"MM_AARDVARK","features":[79]},{"name":"MM_AARDVARK_STUDIO12_WAVEIN","features":[79]},{"name":"MM_AARDVARK_STUDIO12_WAVEOUT","features":[79]},{"name":"MM_AARDVARK_STUDIO88_WAVEIN","features":[79]},{"name":"MM_AARDVARK_STUDIO88_WAVEOUT","features":[79]},{"name":"MM_ACTIVEVOICE","features":[79]},{"name":"MM_ACTIVEVOICE_ACM_VOXADPCM","features":[79]},{"name":"MM_ACULAB","features":[79]},{"name":"MM_ADDX","features":[79]},{"name":"MM_ADDX_PCTV_AUX_CD","features":[79]},{"name":"MM_ADDX_PCTV_AUX_LINE","features":[79]},{"name":"MM_ADDX_PCTV_DIGITALMIX","features":[79]},{"name":"MM_ADDX_PCTV_MIXER","features":[79]},{"name":"MM_ADDX_PCTV_WAVEIN","features":[79]},{"name":"MM_ADDX_PCTV_WAVEOUT","features":[79]},{"name":"MM_ADLACC","features":[79]},{"name":"MM_ADMOS","features":[79]},{"name":"MM_ADMOS_FM_SYNTH","features":[79]},{"name":"MM_ADMOS_QS3AMIDIIN","features":[79]},{"name":"MM_ADMOS_QS3AMIDIOUT","features":[79]},{"name":"MM_ADMOS_QS3AWAVEIN","features":[79]},{"name":"MM_ADMOS_QS3AWAVEOUT","features":[79]},{"name":"MM_AHEAD","features":[79]},{"name":"MM_AHEAD_GENERIC","features":[79]},{"name":"MM_AHEAD_MULTISOUND","features":[79]},{"name":"MM_AHEAD_PROAUDIO","features":[79]},{"name":"MM_AHEAD_SOUNDBLASTER","features":[79]},{"name":"MM_ALARIS","features":[79]},{"name":"MM_ALDIGITAL","features":[79]},{"name":"MM_ALESIS","features":[79]},{"name":"MM_ALGOVISION","features":[79]},{"name":"MM_ALGOVISION_VB80AUX","features":[79]},{"name":"MM_ALGOVISION_VB80AUX2","features":[79]},{"name":"MM_ALGOVISION_VB80MIXER","features":[79]},{"name":"MM_ALGOVISION_VB80WAVEIN","features":[79]},{"name":"MM_ALGOVISION_VB80WAVEOUT","features":[79]},{"name":"MM_AMD","features":[79]},{"name":"MM_AMD_INTERWAVE_AUX1","features":[79]},{"name":"MM_AMD_INTERWAVE_AUX2","features":[79]},{"name":"MM_AMD_INTERWAVE_AUX_CD","features":[79]},{"name":"MM_AMD_INTERWAVE_AUX_MIC","features":[79]},{"name":"MM_AMD_INTERWAVE_EX_CD","features":[79]},{"name":"MM_AMD_INTERWAVE_EX_TELEPHONY","features":[79]},{"name":"MM_AMD_INTERWAVE_JOYSTICK","features":[79]},{"name":"MM_AMD_INTERWAVE_MIDIIN","features":[79]},{"name":"MM_AMD_INTERWAVE_MIDIOUT","features":[79]},{"name":"MM_AMD_INTERWAVE_MIXER1","features":[79]},{"name":"MM_AMD_INTERWAVE_MIXER2","features":[79]},{"name":"MM_AMD_INTERWAVE_MONO_IN","features":[79]},{"name":"MM_AMD_INTERWAVE_MONO_OUT","features":[79]},{"name":"MM_AMD_INTERWAVE_STEREO_ENHANCED","features":[79]},{"name":"MM_AMD_INTERWAVE_SYNTH","features":[79]},{"name":"MM_AMD_INTERWAVE_WAVEIN","features":[79]},{"name":"MM_AMD_INTERWAVE_WAVEOUT","features":[79]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_BASE","features":[79]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_TREBLE","features":[79]},{"name":"MM_ANALOGDEVICES","features":[79]},{"name":"MM_ANTEX","features":[79]},{"name":"MM_ANTEX_AUDIOPORT22_FEEDTHRU","features":[79]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEIN","features":[79]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEOUT","features":[79]},{"name":"MM_ANTEX_SX12_WAVEIN","features":[79]},{"name":"MM_ANTEX_SX12_WAVEOUT","features":[79]},{"name":"MM_ANTEX_SX15_WAVEIN","features":[79]},{"name":"MM_ANTEX_SX15_WAVEOUT","features":[79]},{"name":"MM_ANTEX_VP625_WAVEIN","features":[79]},{"name":"MM_ANTEX_VP625_WAVEOUT","features":[79]},{"name":"MM_APICOM","features":[79]},{"name":"MM_APPLE","features":[79]},{"name":"MM_APPS","features":[79]},{"name":"MM_APT","features":[79]},{"name":"MM_APT_ACE100CD","features":[79]},{"name":"MM_ARRAY","features":[79]},{"name":"MM_ARTISOFT","features":[79]},{"name":"MM_ARTISOFT_SBWAVEIN","features":[79]},{"name":"MM_ARTISOFT_SBWAVEOUT","features":[79]},{"name":"MM_AST","features":[79]},{"name":"MM_AST_MODEMWAVE_WAVEIN","features":[79]},{"name":"MM_AST_MODEMWAVE_WAVEOUT","features":[79]},{"name":"MM_ATI","features":[79]},{"name":"MM_ATT","features":[79]},{"name":"MM_ATT_G729A","features":[79]},{"name":"MM_ATT_MICROELECTRONICS","features":[79]},{"name":"MM_AU8820_AUX","features":[79]},{"name":"MM_AU8820_MIDIIN","features":[79]},{"name":"MM_AU8820_MIDIOUT","features":[79]},{"name":"MM_AU8820_MIXER","features":[79]},{"name":"MM_AU8820_SYNTH","features":[79]},{"name":"MM_AU8820_WAVEIN","features":[79]},{"name":"MM_AU8820_WAVEOUT","features":[79]},{"name":"MM_AU8830_AUX","features":[79]},{"name":"MM_AU8830_MIDIIN","features":[79]},{"name":"MM_AU8830_MIDIOUT","features":[79]},{"name":"MM_AU8830_MIXER","features":[79]},{"name":"MM_AU8830_SYNTH","features":[79]},{"name":"MM_AU8830_WAVEIN","features":[79]},{"name":"MM_AU8830_WAVEOUT","features":[79]},{"name":"MM_AUDIOFILE","features":[79]},{"name":"MM_AUDIOPT","features":[79]},{"name":"MM_AUDIOSCIENCE","features":[79]},{"name":"MM_AURAVISION","features":[79]},{"name":"MM_AUREAL","features":[79]},{"name":"MM_AUREAL_AU8820","features":[79]},{"name":"MM_AUREAL_AU8830","features":[79]},{"name":"MM_AZTECH","features":[79]},{"name":"MM_AZTECH_AUX","features":[79]},{"name":"MM_AZTECH_AUX_CD","features":[79]},{"name":"MM_AZTECH_AUX_LINE","features":[79]},{"name":"MM_AZTECH_AUX_MIC","features":[79]},{"name":"MM_AZTECH_DSP16_FMSYNTH","features":[79]},{"name":"MM_AZTECH_DSP16_WAVEIN","features":[79]},{"name":"MM_AZTECH_DSP16_WAVEOUT","features":[79]},{"name":"MM_AZTECH_DSP16_WAVESYNTH","features":[79]},{"name":"MM_AZTECH_FMSYNTH","features":[79]},{"name":"MM_AZTECH_MIDIIN","features":[79]},{"name":"MM_AZTECH_MIDIOUT","features":[79]},{"name":"MM_AZTECH_MIXER","features":[79]},{"name":"MM_AZTECH_NOVA16_MIXER","features":[79]},{"name":"MM_AZTECH_NOVA16_WAVEIN","features":[79]},{"name":"MM_AZTECH_NOVA16_WAVEOUT","features":[79]},{"name":"MM_AZTECH_PRO16_FMSYNTH","features":[79]},{"name":"MM_AZTECH_PRO16_WAVEIN","features":[79]},{"name":"MM_AZTECH_PRO16_WAVEOUT","features":[79]},{"name":"MM_AZTECH_WASH16_MIXER","features":[79]},{"name":"MM_AZTECH_WASH16_WAVEIN","features":[79]},{"name":"MM_AZTECH_WASH16_WAVEOUT","features":[79]},{"name":"MM_AZTECH_WAVEIN","features":[79]},{"name":"MM_AZTECH_WAVEOUT","features":[79]},{"name":"MM_BCB","features":[79]},{"name":"MM_BCB_NETBOARD_10","features":[79]},{"name":"MM_BCB_TT75_10","features":[79]},{"name":"MM_BECUBED","features":[79]},{"name":"MM_BERCOS","features":[79]},{"name":"MM_BERCOS_MIXER","features":[79]},{"name":"MM_BERCOS_WAVEIN","features":[79]},{"name":"MM_BERCOS_WAVEOUT","features":[79]},{"name":"MM_BERKOM","features":[79]},{"name":"MM_BINTEC","features":[79]},{"name":"MM_BINTEC_TAPI_WAVE","features":[79]},{"name":"MM_BROOKTREE","features":[79]},{"name":"MM_BTV_AUX_CD","features":[79]},{"name":"MM_BTV_AUX_LINE","features":[79]},{"name":"MM_BTV_AUX_MIC","features":[79]},{"name":"MM_BTV_DIGITALIN","features":[79]},{"name":"MM_BTV_DIGITALOUT","features":[79]},{"name":"MM_BTV_MIDIIN","features":[79]},{"name":"MM_BTV_MIDIOUT","features":[79]},{"name":"MM_BTV_MIDISYNTH","features":[79]},{"name":"MM_BTV_MIDIWAVESTREAM","features":[79]},{"name":"MM_BTV_MIXER","features":[79]},{"name":"MM_BTV_WAVEIN","features":[79]},{"name":"MM_BTV_WAVEOUT","features":[79]},{"name":"MM_CANAM","features":[79]},{"name":"MM_CANAM_CBXWAVEIN","features":[79]},{"name":"MM_CANAM_CBXWAVEOUT","features":[79]},{"name":"MM_CANOPUS","features":[79]},{"name":"MM_CANOPUS_ACM_DVREX","features":[79]},{"name":"MM_CASIO","features":[79]},{"name":"MM_CASIO_LSG_MIDIOUT","features":[79]},{"name":"MM_CASIO_WP150_MIDIIN","features":[79]},{"name":"MM_CASIO_WP150_MIDIOUT","features":[79]},{"name":"MM_CAT","features":[79]},{"name":"MM_CAT_WAVEOUT","features":[79]},{"name":"MM_CDPC_AUX","features":[79]},{"name":"MM_CDPC_MIDIIN","features":[79]},{"name":"MM_CDPC_MIDIOUT","features":[79]},{"name":"MM_CDPC_MIXER","features":[79]},{"name":"MM_CDPC_SYNTH","features":[79]},{"name":"MM_CDPC_WAVEIN","features":[79]},{"name":"MM_CDPC_WAVEOUT","features":[79]},{"name":"MM_CHROMATIC","features":[79]},{"name":"MM_CHROMATIC_M1","features":[79]},{"name":"MM_CHROMATIC_M1_AUX","features":[79]},{"name":"MM_CHROMATIC_M1_AUX_CD","features":[79]},{"name":"MM_CHROMATIC_M1_FMSYNTH","features":[79]},{"name":"MM_CHROMATIC_M1_MIDIIN","features":[79]},{"name":"MM_CHROMATIC_M1_MIDIOUT","features":[79]},{"name":"MM_CHROMATIC_M1_MIXER","features":[79]},{"name":"MM_CHROMATIC_M1_MPEGWAVEIN","features":[79]},{"name":"MM_CHROMATIC_M1_MPEGWAVEOUT","features":[79]},{"name":"MM_CHROMATIC_M1_WAVEIN","features":[79]},{"name":"MM_CHROMATIC_M1_WAVEOUT","features":[79]},{"name":"MM_CHROMATIC_M1_WTSYNTH","features":[79]},{"name":"MM_CHROMATIC_M2","features":[79]},{"name":"MM_CHROMATIC_M2_AUX","features":[79]},{"name":"MM_CHROMATIC_M2_AUX_CD","features":[79]},{"name":"MM_CHROMATIC_M2_FMSYNTH","features":[79]},{"name":"MM_CHROMATIC_M2_MIDIIN","features":[79]},{"name":"MM_CHROMATIC_M2_MIDIOUT","features":[79]},{"name":"MM_CHROMATIC_M2_MIXER","features":[79]},{"name":"MM_CHROMATIC_M2_MPEGWAVEIN","features":[79]},{"name":"MM_CHROMATIC_M2_MPEGWAVEOUT","features":[79]},{"name":"MM_CHROMATIC_M2_WAVEIN","features":[79]},{"name":"MM_CHROMATIC_M2_WAVEOUT","features":[79]},{"name":"MM_CHROMATIC_M2_WTSYNTH","features":[79]},{"name":"MM_CIRRUSLOGIC","features":[79]},{"name":"MM_COLORGRAPH","features":[79]},{"name":"MM_COMPAQ","features":[79]},{"name":"MM_COMPAQ_BB_WAVEAUX","features":[79]},{"name":"MM_COMPAQ_BB_WAVEIN","features":[79]},{"name":"MM_COMPAQ_BB_WAVEOUT","features":[79]},{"name":"MM_COMPUSIC","features":[79]},{"name":"MM_COMPUTER_FRIENDS","features":[79]},{"name":"MM_CONCEPTS","features":[79]},{"name":"MM_CONNECTIX","features":[79]},{"name":"MM_CONNECTIX_VIDEC_CODEC","features":[79]},{"name":"MM_CONTROLRES","features":[79]},{"name":"MM_COREDYNAMICS","features":[79]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_VGA","features":[79]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_IN","features":[79]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_OUT","features":[79]},{"name":"MM_COREDYNAMICS_DYNAMIXHR","features":[79]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_IN","features":[79]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_OUT","features":[79]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_IN","features":[79]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_OUT","features":[79]},{"name":"MM_COREDYNAMICS_DYNASONIX_SYNTH","features":[79]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_IN","features":[79]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_OUT","features":[79]},{"name":"MM_CREATIVE","features":[79]},{"name":"MM_CREATIVE_AUX_CD","features":[79]},{"name":"MM_CREATIVE_AUX_LINE","features":[79]},{"name":"MM_CREATIVE_AUX_MASTER","features":[79]},{"name":"MM_CREATIVE_AUX_MIC","features":[79]},{"name":"MM_CREATIVE_AUX_MIDI","features":[79]},{"name":"MM_CREATIVE_AUX_PCSPK","features":[79]},{"name":"MM_CREATIVE_AUX_WAVE","features":[79]},{"name":"MM_CREATIVE_FMSYNTH_MONO","features":[79]},{"name":"MM_CREATIVE_FMSYNTH_STEREO","features":[79]},{"name":"MM_CREATIVE_MIDIIN","features":[79]},{"name":"MM_CREATIVE_MIDIOUT","features":[79]},{"name":"MM_CREATIVE_MIDI_AWE32","features":[79]},{"name":"MM_CREATIVE_PHNBLST_WAVEIN","features":[79]},{"name":"MM_CREATIVE_PHNBLST_WAVEOUT","features":[79]},{"name":"MM_CREATIVE_SB15_WAVEIN","features":[79]},{"name":"MM_CREATIVE_SB15_WAVEOUT","features":[79]},{"name":"MM_CREATIVE_SB16_MIXER","features":[79]},{"name":"MM_CREATIVE_SB20_WAVEIN","features":[79]},{"name":"MM_CREATIVE_SB20_WAVEOUT","features":[79]},{"name":"MM_CREATIVE_SBP16_WAVEIN","features":[79]},{"name":"MM_CREATIVE_SBP16_WAVEOUT","features":[79]},{"name":"MM_CREATIVE_SBPRO_MIXER","features":[79]},{"name":"MM_CREATIVE_SBPRO_WAVEIN","features":[79]},{"name":"MM_CREATIVE_SBPRO_WAVEOUT","features":[79]},{"name":"MM_CRYSTAL","features":[79]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_AUX1","features":[79]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_LOOP","features":[79]},{"name":"MM_CRYSTAL_CS4232_MIDIIN","features":[79]},{"name":"MM_CRYSTAL_CS4232_MIDIOUT","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX1","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX2","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_LINE","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MASTER","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MONO","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEIN","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEMIXER","features":[79]},{"name":"MM_CRYSTAL_CS4232_WAVEOUT","features":[79]},{"name":"MM_CRYSTAL_NET","features":[79]},{"name":"MM_CRYSTAL_SOUND_FUSION_JOYSTICK","features":[79]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIIN","features":[79]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIOUT","features":[79]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIXER","features":[79]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEIN","features":[79]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEOUT","features":[79]},{"name":"MM_CS","features":[79]},{"name":"MM_CYRIX","features":[79]},{"name":"MM_CYRIX_XAAUX","features":[79]},{"name":"MM_CYRIX_XAMIDIIN","features":[79]},{"name":"MM_CYRIX_XAMIDIOUT","features":[79]},{"name":"MM_CYRIX_XAMIXER","features":[79]},{"name":"MM_CYRIX_XASYNTH","features":[79]},{"name":"MM_CYRIX_XAWAVEIN","features":[79]},{"name":"MM_CYRIX_XAWAVEOUT","features":[79]},{"name":"MM_DATAFUSION","features":[79]},{"name":"MM_DATARAN","features":[79]},{"name":"MM_DDD","features":[79]},{"name":"MM_DDD_MIDILINK_MIDIIN","features":[79]},{"name":"MM_DDD_MIDILINK_MIDIOUT","features":[79]},{"name":"MM_DF_ACM_G726","features":[79]},{"name":"MM_DF_ACM_GSM610","features":[79]},{"name":"MM_DIACOUSTICS","features":[79]},{"name":"MM_DIACOUSTICS_DRUM_ACTION","features":[79]},{"name":"MM_DIALOGIC","features":[79]},{"name":"MM_DIAMONDMM","features":[79]},{"name":"MM_DICTAPHONE","features":[79]},{"name":"MM_DICTAPHONE_G726","features":[79]},{"name":"MM_DIGIGRAM","features":[79]},{"name":"MM_DIGITAL","features":[79]},{"name":"MM_DIGITAL_ACM_G723","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS_CDLX","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS_CPRO","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS_CTDIF","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS_DOC","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS_TC","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS_V8","features":[79]},{"name":"MM_DIGITAL_AUDIO_LABS_VP","features":[79]},{"name":"MM_DIGITAL_AV320_WAVEIN","features":[79]},{"name":"MM_DIGITAL_AV320_WAVEOUT","features":[79]},{"name":"MM_DIGITAL_ICM_H261","features":[79]},{"name":"MM_DIGITAL_ICM_H263","features":[79]},{"name":"MM_DIMD_AUX_LINE","features":[79]},{"name":"MM_DIMD_DIRSOUND","features":[79]},{"name":"MM_DIMD_MIDIIN","features":[79]},{"name":"MM_DIMD_MIDIOUT","features":[79]},{"name":"MM_DIMD_MIXER","features":[79]},{"name":"MM_DIMD_PLATFORM","features":[79]},{"name":"MM_DIMD_VIRTJOY","features":[79]},{"name":"MM_DIMD_VIRTMPU","features":[79]},{"name":"MM_DIMD_VIRTSB","features":[79]},{"name":"MM_DIMD_WAVEIN","features":[79]},{"name":"MM_DIMD_WAVEOUT","features":[79]},{"name":"MM_DIMD_WSS_AUX","features":[79]},{"name":"MM_DIMD_WSS_MIXER","features":[79]},{"name":"MM_DIMD_WSS_SYNTH","features":[79]},{"name":"MM_DIMD_WSS_WAVEIN","features":[79]},{"name":"MM_DIMD_WSS_WAVEOUT","features":[79]},{"name":"MM_DOLBY","features":[79]},{"name":"MM_DPSINC","features":[79]},{"name":"MM_DSP_GROUP","features":[79]},{"name":"MM_DSP_GROUP_TRUESPEECH","features":[79]},{"name":"MM_DSP_SOLUTIONS","features":[79]},{"name":"MM_DSP_SOLUTIONS_AUX","features":[79]},{"name":"MM_DSP_SOLUTIONS_SYNTH","features":[79]},{"name":"MM_DSP_SOLUTIONS_WAVEIN","features":[79]},{"name":"MM_DSP_SOLUTIONS_WAVEOUT","features":[79]},{"name":"MM_DTS","features":[79]},{"name":"MM_DTS_DS","features":[79]},{"name":"MM_DUCK","features":[79]},{"name":"MM_DVISION","features":[79]},{"name":"MM_ECHO","features":[79]},{"name":"MM_ECHO_AUX","features":[79]},{"name":"MM_ECHO_MIDIIN","features":[79]},{"name":"MM_ECHO_MIDIOUT","features":[79]},{"name":"MM_ECHO_SYNTH","features":[79]},{"name":"MM_ECHO_WAVEIN","features":[79]},{"name":"MM_ECHO_WAVEOUT","features":[79]},{"name":"MM_ECS","features":[79]},{"name":"MM_ECS_AADF_MIDI_IN","features":[79]},{"name":"MM_ECS_AADF_MIDI_OUT","features":[79]},{"name":"MM_ECS_AADF_WAVE2MIDI_IN","features":[79]},{"name":"MM_EES","features":[79]},{"name":"MM_EES_PCMIDI14","features":[79]},{"name":"MM_EES_PCMIDI14_IN","features":[79]},{"name":"MM_EES_PCMIDI14_OUT1","features":[79]},{"name":"MM_EES_PCMIDI14_OUT2","features":[79]},{"name":"MM_EES_PCMIDI14_OUT3","features":[79]},{"name":"MM_EES_PCMIDI14_OUT4","features":[79]},{"name":"MM_EMAGIC","features":[79]},{"name":"MM_EMAGIC_UNITOR8","features":[79]},{"name":"MM_EMU","features":[79]},{"name":"MM_EMU_APSMIDIIN","features":[79]},{"name":"MM_EMU_APSMIDIOUT","features":[79]},{"name":"MM_EMU_APSSYNTH","features":[79]},{"name":"MM_EMU_APSWAVEIN","features":[79]},{"name":"MM_EMU_APSWAVEOUT","features":[79]},{"name":"MM_ENET","features":[79]},{"name":"MM_ENET_T2000_HANDSETIN","features":[79]},{"name":"MM_ENET_T2000_HANDSETOUT","features":[79]},{"name":"MM_ENET_T2000_LINEIN","features":[79]},{"name":"MM_ENET_T2000_LINEOUT","features":[79]},{"name":"MM_ENSONIQ","features":[79]},{"name":"MM_ENSONIQ_SOUNDSCAPE","features":[79]},{"name":"MM_EPSON","features":[79]},{"name":"MM_EPS_FMSND","features":[79]},{"name":"MM_ESS","features":[79]},{"name":"MM_ESS_AMAUX","features":[79]},{"name":"MM_ESS_AMMIDIIN","features":[79]},{"name":"MM_ESS_AMMIDIOUT","features":[79]},{"name":"MM_ESS_AMSYNTH","features":[79]},{"name":"MM_ESS_AMWAVEIN","features":[79]},{"name":"MM_ESS_AMWAVEOUT","features":[79]},{"name":"MM_ESS_AUX_CD","features":[79]},{"name":"MM_ESS_ES1488_MIXER","features":[79]},{"name":"MM_ESS_ES1488_WAVEIN","features":[79]},{"name":"MM_ESS_ES1488_WAVEOUT","features":[79]},{"name":"MM_ESS_ES1688_MIXER","features":[79]},{"name":"MM_ESS_ES1688_WAVEIN","features":[79]},{"name":"MM_ESS_ES1688_WAVEOUT","features":[79]},{"name":"MM_ESS_ES1788_MIXER","features":[79]},{"name":"MM_ESS_ES1788_WAVEIN","features":[79]},{"name":"MM_ESS_ES1788_WAVEOUT","features":[79]},{"name":"MM_ESS_ES1868_MIXER","features":[79]},{"name":"MM_ESS_ES1868_WAVEIN","features":[79]},{"name":"MM_ESS_ES1868_WAVEOUT","features":[79]},{"name":"MM_ESS_ES1878_MIXER","features":[79]},{"name":"MM_ESS_ES1878_WAVEIN","features":[79]},{"name":"MM_ESS_ES1878_WAVEOUT","features":[79]},{"name":"MM_ESS_ES1888_MIXER","features":[79]},{"name":"MM_ESS_ES1888_WAVEIN","features":[79]},{"name":"MM_ESS_ES1888_WAVEOUT","features":[79]},{"name":"MM_ESS_ES488_MIXER","features":[79]},{"name":"MM_ESS_ES488_WAVEIN","features":[79]},{"name":"MM_ESS_ES488_WAVEOUT","features":[79]},{"name":"MM_ESS_ES688_MIXER","features":[79]},{"name":"MM_ESS_ES688_WAVEIN","features":[79]},{"name":"MM_ESS_ES688_WAVEOUT","features":[79]},{"name":"MM_ESS_MIXER","features":[79]},{"name":"MM_ESS_MPU401_MIDIIN","features":[79]},{"name":"MM_ESS_MPU401_MIDIOUT","features":[79]},{"name":"MM_ETEK","features":[79]},{"name":"MM_ETEK_KWIKMIDI_MIDIIN","features":[79]},{"name":"MM_ETEK_KWIKMIDI_MIDIOUT","features":[79]},{"name":"MM_EUPHONICS","features":[79]},{"name":"MM_EUPHONICS_AUX_CD","features":[79]},{"name":"MM_EUPHONICS_AUX_LINE","features":[79]},{"name":"MM_EUPHONICS_AUX_MASTER","features":[79]},{"name":"MM_EUPHONICS_AUX_MIC","features":[79]},{"name":"MM_EUPHONICS_AUX_MIDI","features":[79]},{"name":"MM_EUPHONICS_AUX_WAVE","features":[79]},{"name":"MM_EUPHONICS_EUSYNTH","features":[79]},{"name":"MM_EUPHONICS_FMSYNTH_MONO","features":[79]},{"name":"MM_EUPHONICS_FMSYNTH_STEREO","features":[79]},{"name":"MM_EUPHONICS_MIDIIN","features":[79]},{"name":"MM_EUPHONICS_MIDIOUT","features":[79]},{"name":"MM_EUPHONICS_MIXER","features":[79]},{"name":"MM_EUPHONICS_WAVEIN","features":[79]},{"name":"MM_EUPHONICS_WAVEOUT","features":[79]},{"name":"MM_EVEREX","features":[79]},{"name":"MM_EVEREX_CARRIER","features":[79]},{"name":"MM_EXAN","features":[79]},{"name":"MM_FAITH","features":[79]},{"name":"MM_FAST","features":[79]},{"name":"MM_FHGIIS_MPEGLAYER3","features":[79]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCED","features":[79]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCEDPLUS","features":[79]},{"name":"MM_FHGIIS_MPEGLAYER3_BASIC","features":[79]},{"name":"MM_FHGIIS_MPEGLAYER3_DECODE","features":[79]},{"name":"MM_FHGIIS_MPEGLAYER3_LITE","features":[79]},{"name":"MM_FHGIIS_MPEGLAYER3_PROFESSIONAL","features":[79]},{"name":"MM_FLEXION","features":[79]},{"name":"MM_FLEXION_X300_WAVEIN","features":[79]},{"name":"MM_FLEXION_X300_WAVEOUT","features":[79]},{"name":"MM_FORTEMEDIA","features":[79]},{"name":"MM_FORTEMEDIA_AUX","features":[79]},{"name":"MM_FORTEMEDIA_FMSYNC","features":[79]},{"name":"MM_FORTEMEDIA_MIXER","features":[79]},{"name":"MM_FORTEMEDIA_WAVEIN","features":[79]},{"name":"MM_FORTEMEDIA_WAVEOUT","features":[79]},{"name":"MM_FRAUNHOFER_IIS","features":[79]},{"name":"MM_FRONTIER","features":[79]},{"name":"MM_FRONTIER_WAVECENTER_MIDIIN","features":[79]},{"name":"MM_FRONTIER_WAVECENTER_MIDIOUT","features":[79]},{"name":"MM_FRONTIER_WAVECENTER_WAVEIN","features":[79]},{"name":"MM_FRONTIER_WAVECENTER_WAVEOUT","features":[79]},{"name":"MM_FTR","features":[79]},{"name":"MM_FTR_ACM","features":[79]},{"name":"MM_FTR_ENCODER_WAVEIN","features":[79]},{"name":"MM_FUJITSU","features":[79]},{"name":"MM_GADGETLABS","features":[79]},{"name":"MM_GADGETLABS_WAVE42_WAVEIN","features":[79]},{"name":"MM_GADGETLABS_WAVE42_WAVEOUT","features":[79]},{"name":"MM_GADGETLABS_WAVE44_WAVEIN","features":[79]},{"name":"MM_GADGETLABS_WAVE44_WAVEOUT","features":[79]},{"name":"MM_GADGETLABS_WAVE4_MIDIIN","features":[79]},{"name":"MM_GADGETLABS_WAVE4_MIDIOUT","features":[79]},{"name":"MM_GRANDE","features":[79]},{"name":"MM_GRAVIS","features":[79]},{"name":"MM_GUILLEMOT","features":[79]},{"name":"MM_GULBRANSEN","features":[79]},{"name":"MM_HAFTMANN","features":[79]},{"name":"MM_HAFTMANN_LPTDAC2","features":[79]},{"name":"MM_HEADSPACE","features":[79]},{"name":"MM_HEADSPACE_HAEMIXER","features":[79]},{"name":"MM_HEADSPACE_HAESYNTH","features":[79]},{"name":"MM_HEADSPACE_HAEWAVEIN","features":[79]},{"name":"MM_HEADSPACE_HAEWAVEOUT","features":[79]},{"name":"MM_HEWLETT_PACKARD","features":[79]},{"name":"MM_HEWLETT_PACKARD_CU_CODEC","features":[79]},{"name":"MM_HORIZONS","features":[79]},{"name":"MM_HP","features":[79]},{"name":"MM_HP_WAVEIN","features":[79]},{"name":"MM_HP_WAVEOUT","features":[79]},{"name":"MM_HYPERACTIVE","features":[79]},{"name":"MM_IBM","features":[79]},{"name":"MM_IBM_MWAVE_AUX","features":[79]},{"name":"MM_IBM_MWAVE_MIDIIN","features":[79]},{"name":"MM_IBM_MWAVE_MIDIOUT","features":[79]},{"name":"MM_IBM_MWAVE_MIXER","features":[79]},{"name":"MM_IBM_MWAVE_WAVEIN","features":[79]},{"name":"MM_IBM_MWAVE_WAVEOUT","features":[79]},{"name":"MM_IBM_PCMCIA_AUX","features":[79]},{"name":"MM_IBM_PCMCIA_MIDIIN","features":[79]},{"name":"MM_IBM_PCMCIA_MIDIOUT","features":[79]},{"name":"MM_IBM_PCMCIA_SYNTH","features":[79]},{"name":"MM_IBM_PCMCIA_WAVEIN","features":[79]},{"name":"MM_IBM_PCMCIA_WAVEOUT","features":[79]},{"name":"MM_IBM_THINKPAD200","features":[79]},{"name":"MM_IBM_WC_MIDIOUT","features":[79]},{"name":"MM_IBM_WC_MIXEROUT","features":[79]},{"name":"MM_IBM_WC_WAVEOUT","features":[79]},{"name":"MM_ICCC","features":[79]},{"name":"MM_ICCC_UNA3_AUX","features":[79]},{"name":"MM_ICCC_UNA3_MIXER","features":[79]},{"name":"MM_ICCC_UNA3_WAVEIN","features":[79]},{"name":"MM_ICCC_UNA3_WAVEOUT","features":[79]},{"name":"MM_ICE","features":[79]},{"name":"MM_ICE_AUX","features":[79]},{"name":"MM_ICE_MIDIIN1","features":[79]},{"name":"MM_ICE_MIDIIN2","features":[79]},{"name":"MM_ICE_MIDIOUT1","features":[79]},{"name":"MM_ICE_MIDIOUT2","features":[79]},{"name":"MM_ICE_MIXER","features":[79]},{"name":"MM_ICE_MTWAVEIN","features":[79]},{"name":"MM_ICE_MTWAVEOUT","features":[79]},{"name":"MM_ICE_SYNTH","features":[79]},{"name":"MM_ICE_WAVEIN","features":[79]},{"name":"MM_ICE_WAVEOUT","features":[79]},{"name":"MM_ICL_PS","features":[79]},{"name":"MM_ICOM_AUX","features":[79]},{"name":"MM_ICOM_LINE","features":[79]},{"name":"MM_ICOM_MIXER","features":[79]},{"name":"MM_ICOM_WAVEIN","features":[79]},{"name":"MM_ICOM_WAVEOUT","features":[79]},{"name":"MM_ICS","features":[79]},{"name":"MM_ICS_2115_LITE_MIDIOUT","features":[79]},{"name":"MM_ICS_2120_LITE_MIDIOUT","features":[79]},{"name":"MM_ICS_WAVEDECK_AUX","features":[79]},{"name":"MM_ICS_WAVEDECK_MIXER","features":[79]},{"name":"MM_ICS_WAVEDECK_SYNTH","features":[79]},{"name":"MM_ICS_WAVEDECK_WAVEIN","features":[79]},{"name":"MM_ICS_WAVEDECK_WAVEOUT","features":[79]},{"name":"MM_ICS_WAVEDEC_SB_AUX","features":[79]},{"name":"MM_ICS_WAVEDEC_SB_FM_MIDIOUT","features":[79]},{"name":"MM_ICS_WAVEDEC_SB_MIXER","features":[79]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIIN","features":[79]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIOUT","features":[79]},{"name":"MM_ICS_WAVEDEC_SB_WAVEIN","features":[79]},{"name":"MM_ICS_WAVEDEC_SB_WAVEOUT","features":[79]},{"name":"MM_INSOFT","features":[79]},{"name":"MM_INTEL","features":[79]},{"name":"MM_INTELOPD_AUX","features":[79]},{"name":"MM_INTELOPD_WAVEIN","features":[79]},{"name":"MM_INTELOPD_WAVEOUT","features":[79]},{"name":"MM_INTEL_NSPMODEMLINEIN","features":[79]},{"name":"MM_INTEL_NSPMODEMLINEOUT","features":[79]},{"name":"MM_INTERACTIVE","features":[79]},{"name":"MM_INTERACTIVE_WAVEIN","features":[79]},{"name":"MM_INTERACTIVE_WAVEOUT","features":[79]},{"name":"MM_INTERNET","features":[79]},{"name":"MM_INTERNET_SSW_MIDIIN","features":[79]},{"name":"MM_INTERNET_SSW_MIDIOUT","features":[79]},{"name":"MM_INTERNET_SSW_WAVEIN","features":[79]},{"name":"MM_INTERNET_SSW_WAVEOUT","features":[79]},{"name":"MM_INVISION","features":[79]},{"name":"MM_IODD","features":[79]},{"name":"MM_IOMAGIC","features":[79]},{"name":"MM_IOMAGIC_TEMPO_AUXOUT","features":[79]},{"name":"MM_IOMAGIC_TEMPO_MIDIOUT","features":[79]},{"name":"MM_IOMAGIC_TEMPO_MXDOUT","features":[79]},{"name":"MM_IOMAGIC_TEMPO_SYNTH","features":[79]},{"name":"MM_IOMAGIC_TEMPO_WAVEIN","features":[79]},{"name":"MM_IOMAGIC_TEMPO_WAVEOUT","features":[79]},{"name":"MM_IPI","features":[79]},{"name":"MM_IPI_ACM_HSX","features":[79]},{"name":"MM_IPI_ACM_RPELP","features":[79]},{"name":"MM_IPI_AT_MIXER","features":[79]},{"name":"MM_IPI_AT_WAVEIN","features":[79]},{"name":"MM_IPI_AT_WAVEOUT","features":[79]},{"name":"MM_IPI_WF_ASSS","features":[79]},{"name":"MM_ISOLUTION","features":[79]},{"name":"MM_ISOLUTION_PASCAL","features":[79]},{"name":"MM_ITERATEDSYS","features":[79]},{"name":"MM_ITERATEDSYS_FUFCODEC","features":[79]},{"name":"MM_I_LINK","features":[79]},{"name":"MM_I_LINK_VOICE_CODER","features":[79]},{"name":"MM_KAY_ELEMETRICS","features":[79]},{"name":"MM_KAY_ELEMETRICS_CSL","features":[79]},{"name":"MM_KAY_ELEMETRICS_CSL_4CHANNEL","features":[79]},{"name":"MM_KAY_ELEMETRICS_CSL_DAT","features":[79]},{"name":"MM_KORG","features":[79]},{"name":"MM_KORG_1212IO_MSWAVEIN","features":[79]},{"name":"MM_KORG_1212IO_MSWAVEOUT","features":[79]},{"name":"MM_KORG_PCIF_MIDIIN","features":[79]},{"name":"MM_KORG_PCIF_MIDIOUT","features":[79]},{"name":"MM_LERNOUT_ANDHAUSPIE_LHCODECACM","features":[79]},{"name":"MM_LERNOUT_AND_HAUSPIE","features":[79]},{"name":"MM_LEXICON","features":[79]},{"name":"MM_LEXICON_STUDIO_WAVE_IN","features":[79]},{"name":"MM_LEXICON_STUDIO_WAVE_OUT","features":[79]},{"name":"MM_LOGITECH","features":[79]},{"name":"MM_LUCENT","features":[79]},{"name":"MM_LUCENT_ACM_G723","features":[79]},{"name":"MM_LUCID","features":[79]},{"name":"MM_LUCID_PCI24WAVEIN","features":[79]},{"name":"MM_LUCID_PCI24WAVEOUT","features":[79]},{"name":"MM_LUMINOSITI","features":[79]},{"name":"MM_LUMINOSITI_SCWAVEIN","features":[79]},{"name":"MM_LUMINOSITI_SCWAVEMIX","features":[79]},{"name":"MM_LUMINOSITI_SCWAVEOUT","features":[79]},{"name":"MM_LYNX","features":[79]},{"name":"MM_LYRRUS","features":[79]},{"name":"MM_LYRRUS_BRIDGE_GUITAR","features":[79]},{"name":"MM_MALDEN","features":[79]},{"name":"MM_MARIAN","features":[79]},{"name":"MM_MARIAN_ARC44WAVEIN","features":[79]},{"name":"MM_MARIAN_ARC44WAVEOUT","features":[79]},{"name":"MM_MARIAN_ARC88WAVEIN","features":[79]},{"name":"MM_MARIAN_ARC88WAVEOUT","features":[79]},{"name":"MM_MARIAN_PRODIF24WAVEIN","features":[79]},{"name":"MM_MARIAN_PRODIF24WAVEOUT","features":[79]},{"name":"MM_MATROX_DIV","features":[79]},{"name":"MM_MATSUSHITA","features":[79]},{"name":"MM_MATSUSHITA_AUX","features":[79]},{"name":"MM_MATSUSHITA_FMSYNTH_STEREO","features":[79]},{"name":"MM_MATSUSHITA_MIXER","features":[79]},{"name":"MM_MATSUSHITA_WAVEIN","features":[79]},{"name":"MM_MATSUSHITA_WAVEOUT","features":[79]},{"name":"MM_MEDIASONIC","features":[79]},{"name":"MM_MEDIASONIC_ACM_G723","features":[79]},{"name":"MM_MEDIASONIC_ICOM","features":[79]},{"name":"MM_MEDIATRIX","features":[79]},{"name":"MM_MEDIAVISION","features":[79]},{"name":"MM_MEDIAVISION_CDPC","features":[79]},{"name":"MM_MEDIAVISION_OPUS1208","features":[79]},{"name":"MM_MEDIAVISION_OPUS1216","features":[79]},{"name":"MM_MEDIAVISION_PROAUDIO","features":[79]},{"name":"MM_MEDIAVISION_PROAUDIO_16","features":[79]},{"name":"MM_MEDIAVISION_PROAUDIO_PLUS","features":[79]},{"name":"MM_MEDIAVISION_PROSTUDIO_16","features":[79]},{"name":"MM_MEDIAVISION_THUNDER","features":[79]},{"name":"MM_MEDIAVISION_TPORT","features":[79]},{"name":"MM_MELABS","features":[79]},{"name":"MM_MELABS_MIDI2GO","features":[79]},{"name":"MM_MERGING_MPEGL3","features":[79]},{"name":"MM_MERGING_TECHNOLOGIES","features":[79]},{"name":"MM_METHEUS","features":[79]},{"name":"MM_METHEUS_ZIPPER","features":[79]},{"name":"MM_MICRONAS","features":[79]},{"name":"MM_MICRONAS_CLP833","features":[79]},{"name":"MM_MICRONAS_SC4","features":[79]},{"name":"MM_MINDMAKER","features":[79]},{"name":"MM_MINDMAKER_GC_MIXER","features":[79]},{"name":"MM_MINDMAKER_GC_WAVEIN","features":[79]},{"name":"MM_MINDMAKER_GC_WAVEOUT","features":[79]},{"name":"MM_MIRO","features":[79]},{"name":"MM_MIRO_DC30_MIX","features":[79]},{"name":"MM_MIRO_DC30_WAVEIN","features":[79]},{"name":"MM_MIRO_DC30_WAVEOUT","features":[79]},{"name":"MM_MIRO_MOVIEPRO","features":[79]},{"name":"MM_MIRO_VIDEOD1","features":[79]},{"name":"MM_MIRO_VIDEODC1TV","features":[79]},{"name":"MM_MIRO_VIDEOTD","features":[79]},{"name":"MM_MITEL","features":[79]},{"name":"MM_MITEL_MEDIAPATH_WAVEIN","features":[79]},{"name":"MM_MITEL_MEDIAPATH_WAVEOUT","features":[79]},{"name":"MM_MITEL_MPA_HANDSET_WAVEIN","features":[79]},{"name":"MM_MITEL_MPA_HANDSET_WAVEOUT","features":[79]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEIN","features":[79]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEOUT","features":[79]},{"name":"MM_MITEL_MPA_LINE1_WAVEIN","features":[79]},{"name":"MM_MITEL_MPA_LINE1_WAVEOUT","features":[79]},{"name":"MM_MITEL_MPA_LINE2_WAVEIN","features":[79]},{"name":"MM_MITEL_MPA_LINE2_WAVEOUT","features":[79]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEIN","features":[79]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEOUT","features":[79]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEIN","features":[79]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEOUT","features":[79]},{"name":"MM_MITEL_TALKTO_LINE_WAVEIN","features":[79]},{"name":"MM_MITEL_TALKTO_LINE_WAVEOUT","features":[79]},{"name":"MM_MMOTION_WAVEAUX","features":[79]},{"name":"MM_MMOTION_WAVEIN","features":[79]},{"name":"MM_MMOTION_WAVEOUT","features":[79]},{"name":"MM_MOSCOM","features":[79]},{"name":"MM_MOSCOM_VPC2400_IN","features":[79]},{"name":"MM_MOSCOM_VPC2400_OUT","features":[79]},{"name":"MM_MOTIONPIXELS","features":[79]},{"name":"MM_MOTIONPIXELS_MVI2","features":[79]},{"name":"MM_MOTOROLA","features":[79]},{"name":"MM_MOTU","features":[79]},{"name":"MM_MOTU_DTX_MIDI_IN_A","features":[79]},{"name":"MM_MOTU_DTX_MIDI_IN_B","features":[79]},{"name":"MM_MOTU_DTX_MIDI_IN_SYNC","features":[79]},{"name":"MM_MOTU_DTX_MIDI_OUT_A","features":[79]},{"name":"MM_MOTU_DTX_MIDI_OUT_B","features":[79]},{"name":"MM_MOTU_FLYER_MIDI_IN_A","features":[79]},{"name":"MM_MOTU_FLYER_MIDI_IN_B","features":[79]},{"name":"MM_MOTU_FLYER_MIDI_IN_SYNC","features":[79]},{"name":"MM_MOTU_FLYER_MIDI_OUT_A","features":[79]},{"name":"MM_MOTU_FLYER_MIDI_OUT_B","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_7","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_8","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_ADAT","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIIN_SYNC","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_7","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_8","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ADAT","features":[79]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ALL","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_7","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_8","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_7","features":[79]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_8","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_7","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_8","features":[79]},{"name":"MM_MOTU_MTPII_MIDIIN_SYNC","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_7","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_8","features":[79]},{"name":"MM_MOTU_MTPII_MIDIOUT_ALL","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_7","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_8","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_7","features":[79]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_8","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_7","features":[79]},{"name":"MM_MOTU_MTP_MIDIIN_8","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_7","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_8","features":[79]},{"name":"MM_MOTU_MTP_MIDIOUT_ALL","features":[79]},{"name":"MM_MOTU_MXN_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MXN_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MXN_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MXN_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MXN_MIDIIN_SYNC","features":[79]},{"name":"MM_MOTU_MXN_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MXN_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MXN_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MXN_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MXN_MIDIOUT_ALL","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIIN_SYNC","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_ALL","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_7","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_8","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIIN_SYNC","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_7","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_8","features":[79]},{"name":"MM_MOTU_MXPXT_MIDIOUT_ALL","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_1","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_2","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_3","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_4","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_5","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_6","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_1","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_2","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_3","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_4","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_5","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_6","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_ALL","features":[79]},{"name":"MM_MOTU_MXP_MIDIIN_SYNC","features":[79]},{"name":"MM_MOTU_PKX_MIDI_IN_A","features":[79]},{"name":"MM_MOTU_PKX_MIDI_IN_B","features":[79]},{"name":"MM_MOTU_PKX_MIDI_IN_SYNC","features":[79]},{"name":"MM_MOTU_PKX_MIDI_OUT_A","features":[79]},{"name":"MM_MOTU_PKX_MIDI_OUT_B","features":[79]},{"name":"MM_MPTUS","features":[79]},{"name":"MM_MPTUS_SPWAVEOUT","features":[79]},{"name":"MM_MSFT_ACM_G711","features":[79]},{"name":"MM_MSFT_ACM_GSM610","features":[79]},{"name":"MM_MSFT_ACM_IMAADPCM","features":[79]},{"name":"MM_MSFT_ACM_MSADPCM","features":[79]},{"name":"MM_MSFT_ACM_MSAUDIO1","features":[79]},{"name":"MM_MSFT_ACM_MSFILTER","features":[79]},{"name":"MM_MSFT_ACM_MSG723","features":[79]},{"name":"MM_MSFT_ACM_MSNAUDIO","features":[79]},{"name":"MM_MSFT_ACM_MSRT24","features":[79]},{"name":"MM_MSFT_ACM_PCM","features":[79]},{"name":"MM_MSFT_ACM_WMAUDIO","features":[79]},{"name":"MM_MSFT_ACM_WMAUDIO2","features":[79]},{"name":"MM_MSFT_GENERIC_AUX_CD","features":[79]},{"name":"MM_MSFT_GENERIC_AUX_LINE","features":[79]},{"name":"MM_MSFT_GENERIC_AUX_MIC","features":[79]},{"name":"MM_MSFT_GENERIC_MIDIIN","features":[79]},{"name":"MM_MSFT_GENERIC_MIDIOUT","features":[79]},{"name":"MM_MSFT_GENERIC_MIDISYNTH","features":[79]},{"name":"MM_MSFT_GENERIC_WAVEIN","features":[79]},{"name":"MM_MSFT_GENERIC_WAVEOUT","features":[79]},{"name":"MM_MSFT_MSACM","features":[79]},{"name":"MM_MSFT_MSOPL_SYNTH","features":[79]},{"name":"MM_MSFT_SB16_AUX_CD","features":[79]},{"name":"MM_MSFT_SB16_AUX_LINE","features":[79]},{"name":"MM_MSFT_SB16_MIDIIN","features":[79]},{"name":"MM_MSFT_SB16_MIDIOUT","features":[79]},{"name":"MM_MSFT_SB16_MIXER","features":[79]},{"name":"MM_MSFT_SB16_SYNTH","features":[79]},{"name":"MM_MSFT_SB16_WAVEIN","features":[79]},{"name":"MM_MSFT_SB16_WAVEOUT","features":[79]},{"name":"MM_MSFT_SBPRO_AUX_CD","features":[79]},{"name":"MM_MSFT_SBPRO_AUX_LINE","features":[79]},{"name":"MM_MSFT_SBPRO_MIDIIN","features":[79]},{"name":"MM_MSFT_SBPRO_MIDIOUT","features":[79]},{"name":"MM_MSFT_SBPRO_MIXER","features":[79]},{"name":"MM_MSFT_SBPRO_SYNTH","features":[79]},{"name":"MM_MSFT_SBPRO_WAVEIN","features":[79]},{"name":"MM_MSFT_SBPRO_WAVEOUT","features":[79]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEIN","features":[79]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEOUT","features":[79]},{"name":"MM_MSFT_VMDMS_LINE_WAVEIN","features":[79]},{"name":"MM_MSFT_VMDMS_LINE_WAVEOUT","features":[79]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEIN","features":[79]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEOUT","features":[79]},{"name":"MM_MSFT_VMDMW_LINE_WAVEIN","features":[79]},{"name":"MM_MSFT_VMDMW_LINE_WAVEOUT","features":[79]},{"name":"MM_MSFT_VMDMW_MIXER","features":[79]},{"name":"MM_MSFT_VMDM_GAME_WAVEIN","features":[79]},{"name":"MM_MSFT_VMDM_GAME_WAVEOUT","features":[79]},{"name":"MM_MSFT_WDMAUDIO_AUX","features":[79]},{"name":"MM_MSFT_WDMAUDIO_MIDIIN","features":[79]},{"name":"MM_MSFT_WDMAUDIO_MIDIOUT","features":[79]},{"name":"MM_MSFT_WDMAUDIO_MIXER","features":[79]},{"name":"MM_MSFT_WDMAUDIO_WAVEIN","features":[79]},{"name":"MM_MSFT_WDMAUDIO_WAVEOUT","features":[79]},{"name":"MM_MSFT_WSS_AUX","features":[79]},{"name":"MM_MSFT_WSS_FMSYNTH_STEREO","features":[79]},{"name":"MM_MSFT_WSS_MIXER","features":[79]},{"name":"MM_MSFT_WSS_NT_AUX","features":[79]},{"name":"MM_MSFT_WSS_NT_FMSYNTH_STEREO","features":[79]},{"name":"MM_MSFT_WSS_NT_MIXER","features":[79]},{"name":"MM_MSFT_WSS_NT_WAVEIN","features":[79]},{"name":"MM_MSFT_WSS_NT_WAVEOUT","features":[79]},{"name":"MM_MSFT_WSS_OEM_AUX","features":[79]},{"name":"MM_MSFT_WSS_OEM_FMSYNTH_STEREO","features":[79]},{"name":"MM_MSFT_WSS_OEM_MIXER","features":[79]},{"name":"MM_MSFT_WSS_OEM_WAVEIN","features":[79]},{"name":"MM_MSFT_WSS_OEM_WAVEOUT","features":[79]},{"name":"MM_MSFT_WSS_WAVEIN","features":[79]},{"name":"MM_MSFT_WSS_WAVEOUT","features":[79]},{"name":"MM_MWM","features":[79]},{"name":"MM_NCR","features":[79]},{"name":"MM_NCR_BA_AUX","features":[79]},{"name":"MM_NCR_BA_MIXER","features":[79]},{"name":"MM_NCR_BA_SYNTH","features":[79]},{"name":"MM_NCR_BA_WAVEIN","features":[79]},{"name":"MM_NCR_BA_WAVEOUT","features":[79]},{"name":"MM_NEC","features":[79]},{"name":"MM_NEC_26_SYNTH","features":[79]},{"name":"MM_NEC_73_86_SYNTH","features":[79]},{"name":"MM_NEC_73_86_WAVEIN","features":[79]},{"name":"MM_NEC_73_86_WAVEOUT","features":[79]},{"name":"MM_NEC_JOYSTICK","features":[79]},{"name":"MM_NEC_MPU401_MIDIIN","features":[79]},{"name":"MM_NEC_MPU401_MIDIOUT","features":[79]},{"name":"MM_NEOMAGIC","features":[79]},{"name":"MM_NEOMAGIC_AUX","features":[79]},{"name":"MM_NEOMAGIC_MIDIIN","features":[79]},{"name":"MM_NEOMAGIC_MIDIOUT","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_AUX","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_FMSYNTH","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_GMSYNTH","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_MIDIIN","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_MIDIOUT","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_MIXER","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_WAVEIN","features":[79]},{"name":"MM_NEOMAGIC_MW3DX_WAVEOUT","features":[79]},{"name":"MM_NEOMAGIC_MWAVE_AUX","features":[79]},{"name":"MM_NEOMAGIC_MWAVE_MIDIIN","features":[79]},{"name":"MM_NEOMAGIC_MWAVE_MIDIOUT","features":[79]},{"name":"MM_NEOMAGIC_MWAVE_MIXER","features":[79]},{"name":"MM_NEOMAGIC_MWAVE_WAVEIN","features":[79]},{"name":"MM_NEOMAGIC_MWAVE_WAVEOUT","features":[79]},{"name":"MM_NEOMAGIC_SYNTH","features":[79]},{"name":"MM_NEOMAGIC_WAVEIN","features":[79]},{"name":"MM_NEOMAGIC_WAVEOUT","features":[79]},{"name":"MM_NETSCAPE","features":[79]},{"name":"MM_NETXL","features":[79]},{"name":"MM_NETXL_XLVIDEO","features":[79]},{"name":"MM_NEWMEDIA","features":[79]},{"name":"MM_NEWMEDIA_WAVJAMMER","features":[79]},{"name":"MM_NMP","features":[79]},{"name":"MM_NMP_ACM_AMR","features":[79]},{"name":"MM_NMP_CCP_WAVEIN","features":[79]},{"name":"MM_NMP_CCP_WAVEOUT","features":[79]},{"name":"MM_NMS","features":[79]},{"name":"MM_NOGATECH","features":[79]},{"name":"MM_NORRIS","features":[79]},{"name":"MM_NORRIS_VOICELINK","features":[79]},{"name":"MM_NORTEL_MPXAC_WAVEIN","features":[79]},{"name":"MM_NORTEL_MPXAC_WAVEOUT","features":[79]},{"name":"MM_NORTHERN_TELECOM","features":[79]},{"name":"MM_NVIDIA","features":[79]},{"name":"MM_NVIDIA_AUX","features":[79]},{"name":"MM_NVIDIA_GAMEPORT","features":[79]},{"name":"MM_NVIDIA_MIDIIN","features":[79]},{"name":"MM_NVIDIA_MIDIOUT","features":[79]},{"name":"MM_NVIDIA_MIXER","features":[79]},{"name":"MM_NVIDIA_WAVEIN","features":[79]},{"name":"MM_NVIDIA_WAVEOUT","features":[79]},{"name":"MM_OKI","features":[79]},{"name":"MM_OKSORI","features":[79]},{"name":"MM_OKSORI_BASE","features":[79]},{"name":"MM_OKSORI_EXT_MIC1","features":[79]},{"name":"MM_OKSORI_EXT_MIC2","features":[79]},{"name":"MM_OKSORI_FM_OPL4","features":[79]},{"name":"MM_OKSORI_MIDIIN","features":[79]},{"name":"MM_OKSORI_MIDIOUT","features":[79]},{"name":"MM_OKSORI_MIX_AUX1","features":[79]},{"name":"MM_OKSORI_MIX_CD","features":[79]},{"name":"MM_OKSORI_MIX_ECHO","features":[79]},{"name":"MM_OKSORI_MIX_FM","features":[79]},{"name":"MM_OKSORI_MIX_LINE","features":[79]},{"name":"MM_OKSORI_MIX_LINE1","features":[79]},{"name":"MM_OKSORI_MIX_MASTER","features":[79]},{"name":"MM_OKSORI_MIX_MIC","features":[79]},{"name":"MM_OKSORI_MIX_WAVE","features":[79]},{"name":"MM_OKSORI_MPEG_CDVISION","features":[79]},{"name":"MM_OKSORI_OSR16_WAVEIN","features":[79]},{"name":"MM_OKSORI_OSR16_WAVEOUT","features":[79]},{"name":"MM_OKSORI_OSR8_WAVEIN","features":[79]},{"name":"MM_OKSORI_OSR8_WAVEOUT","features":[79]},{"name":"MM_OLIVETTI","features":[79]},{"name":"MM_OLIVETTI_ACM_ADPCM","features":[79]},{"name":"MM_OLIVETTI_ACM_CELP","features":[79]},{"name":"MM_OLIVETTI_ACM_GSM","features":[79]},{"name":"MM_OLIVETTI_ACM_OPR","features":[79]},{"name":"MM_OLIVETTI_ACM_SBC","features":[79]},{"name":"MM_OLIVETTI_AUX","features":[79]},{"name":"MM_OLIVETTI_JOYSTICK","features":[79]},{"name":"MM_OLIVETTI_MIDIIN","features":[79]},{"name":"MM_OLIVETTI_MIDIOUT","features":[79]},{"name":"MM_OLIVETTI_MIXER","features":[79]},{"name":"MM_OLIVETTI_SYNTH","features":[79]},{"name":"MM_OLIVETTI_WAVEIN","features":[79]},{"name":"MM_OLIVETTI_WAVEOUT","features":[79]},{"name":"MM_ONLIVE","features":[79]},{"name":"MM_ONLIVE_MPCODEC","features":[79]},{"name":"MM_OPCODE","features":[79]},{"name":"MM_OPTI","features":[79]},{"name":"MM_OPTI_M16_AUX","features":[79]},{"name":"MM_OPTI_M16_FMSYNTH_STEREO","features":[79]},{"name":"MM_OPTI_M16_MIDIIN","features":[79]},{"name":"MM_OPTI_M16_MIDIOUT","features":[79]},{"name":"MM_OPTI_M16_MIXER","features":[79]},{"name":"MM_OPTI_M16_WAVEIN","features":[79]},{"name":"MM_OPTI_M16_WAVEOUT","features":[79]},{"name":"MM_OPTI_M32_AUX","features":[79]},{"name":"MM_OPTI_M32_MIDIIN","features":[79]},{"name":"MM_OPTI_M32_MIDIOUT","features":[79]},{"name":"MM_OPTI_M32_MIXER","features":[79]},{"name":"MM_OPTI_M32_SYNTH_STEREO","features":[79]},{"name":"MM_OPTI_M32_WAVEIN","features":[79]},{"name":"MM_OPTI_M32_WAVEOUT","features":[79]},{"name":"MM_OPTI_P16_AUX","features":[79]},{"name":"MM_OPTI_P16_FMSYNTH_STEREO","features":[79]},{"name":"MM_OPTI_P16_MIDIIN","features":[79]},{"name":"MM_OPTI_P16_MIDIOUT","features":[79]},{"name":"MM_OPTI_P16_MIXER","features":[79]},{"name":"MM_OPTI_P16_WAVEIN","features":[79]},{"name":"MM_OPTI_P16_WAVEOUT","features":[79]},{"name":"MM_OPUS1208_AUX","features":[79]},{"name":"MM_OPUS1208_MIXER","features":[79]},{"name":"MM_OPUS1208_SYNTH","features":[79]},{"name":"MM_OPUS1208_WAVEIN","features":[79]},{"name":"MM_OPUS1208_WAVEOUT","features":[79]},{"name":"MM_OPUS1216_AUX","features":[79]},{"name":"MM_OPUS1216_MIDIIN","features":[79]},{"name":"MM_OPUS1216_MIDIOUT","features":[79]},{"name":"MM_OPUS1216_MIXER","features":[79]},{"name":"MM_OPUS1216_SYNTH","features":[79]},{"name":"MM_OPUS1216_WAVEIN","features":[79]},{"name":"MM_OPUS1216_WAVEOUT","features":[79]},{"name":"MM_OPUS401_MIDIIN","features":[79]},{"name":"MM_OPUS401_MIDIOUT","features":[79]},{"name":"MM_OSITECH","features":[79]},{"name":"MM_OSITECH_TRUMPCARD","features":[79]},{"name":"MM_OSPREY","features":[79]},{"name":"MM_OSPREY_1000WAVEIN","features":[79]},{"name":"MM_OSPREY_1000WAVEOUT","features":[79]},{"name":"MM_OTI","features":[79]},{"name":"MM_OTI_611MIDIN","features":[79]},{"name":"MM_OTI_611MIDIOUT","features":[79]},{"name":"MM_OTI_611MIXER","features":[79]},{"name":"MM_OTI_611WAVEIN","features":[79]},{"name":"MM_OTI_611WAVEOUT","features":[79]},{"name":"MM_PACIFICRESEARCH","features":[79]},{"name":"MM_PCSPEAKER_WAVEOUT","features":[79]},{"name":"MM_PHILIPS_ACM_LPCBB","features":[79]},{"name":"MM_PHILIPS_SPEECH_PROCESSING","features":[79]},{"name":"MM_PHONET","features":[79]},{"name":"MM_PHONET_PP_MIXER","features":[79]},{"name":"MM_PHONET_PP_WAVEIN","features":[79]},{"name":"MM_PHONET_PP_WAVEOUT","features":[79]},{"name":"MM_PICTURETEL","features":[79]},{"name":"MM_PID_UNMAPPED","features":[79]},{"name":"MM_PINNACLE","features":[79]},{"name":"MM_PRAGMATRAX","features":[79]},{"name":"MM_PRECEPT","features":[79]},{"name":"MM_PROAUD_16_AUX","features":[79]},{"name":"MM_PROAUD_16_MIDIIN","features":[79]},{"name":"MM_PROAUD_16_MIDIOUT","features":[79]},{"name":"MM_PROAUD_16_MIXER","features":[79]},{"name":"MM_PROAUD_16_SYNTH","features":[79]},{"name":"MM_PROAUD_16_WAVEIN","features":[79]},{"name":"MM_PROAUD_16_WAVEOUT","features":[79]},{"name":"MM_PROAUD_AUX","features":[79]},{"name":"MM_PROAUD_MIDIIN","features":[79]},{"name":"MM_PROAUD_MIDIOUT","features":[79]},{"name":"MM_PROAUD_MIXER","features":[79]},{"name":"MM_PROAUD_PLUS_AUX","features":[79]},{"name":"MM_PROAUD_PLUS_MIDIIN","features":[79]},{"name":"MM_PROAUD_PLUS_MIDIOUT","features":[79]},{"name":"MM_PROAUD_PLUS_MIXER","features":[79]},{"name":"MM_PROAUD_PLUS_SYNTH","features":[79]},{"name":"MM_PROAUD_PLUS_WAVEIN","features":[79]},{"name":"MM_PROAUD_PLUS_WAVEOUT","features":[79]},{"name":"MM_PROAUD_SYNTH","features":[79]},{"name":"MM_PROAUD_WAVEIN","features":[79]},{"name":"MM_PROAUD_WAVEOUT","features":[79]},{"name":"MM_QCIAR","features":[79]},{"name":"MM_QDESIGN","features":[79]},{"name":"MM_QDESIGN_ACM_MPEG","features":[79]},{"name":"MM_QDESIGN_ACM_QDESIGN_MUSIC","features":[79]},{"name":"MM_QTEAM","features":[79]},{"name":"MM_QUALCOMM","features":[79]},{"name":"MM_QUANTUM3D","features":[79]},{"name":"MM_QUARTERDECK","features":[79]},{"name":"MM_QUARTERDECK_LHWAVEIN","features":[79]},{"name":"MM_QUARTERDECK_LHWAVEOUT","features":[79]},{"name":"MM_QUICKAUDIO","features":[79]},{"name":"MM_QUICKAUDIO_MAXIMIDI","features":[79]},{"name":"MM_QUICKAUDIO_MINIMIDI","features":[79]},{"name":"MM_QUICKNET","features":[79]},{"name":"MM_QUICKNET_PJWAVEIN","features":[79]},{"name":"MM_QUICKNET_PJWAVEOUT","features":[79]},{"name":"MM_RADIUS","features":[79]},{"name":"MM_RHETOREX","features":[79]},{"name":"MM_RHETOREX_WAVEIN","features":[79]},{"name":"MM_RHETOREX_WAVEOUT","features":[79]},{"name":"MM_RICHMOND","features":[79]},{"name":"MM_ROCKWELL","features":[79]},{"name":"MM_ROLAND","features":[79]},{"name":"MM_ROLAND_MPU401_MIDIIN","features":[79]},{"name":"MM_ROLAND_MPU401_MIDIOUT","features":[79]},{"name":"MM_ROLAND_RAP10_MIDIIN","features":[79]},{"name":"MM_ROLAND_RAP10_MIDIOUT","features":[79]},{"name":"MM_ROLAND_RAP10_SYNTH","features":[79]},{"name":"MM_ROLAND_RAP10_WAVEIN","features":[79]},{"name":"MM_ROLAND_RAP10_WAVEOUT","features":[79]},{"name":"MM_ROLAND_SC7_MIDIIN","features":[79]},{"name":"MM_ROLAND_SC7_MIDIOUT","features":[79]},{"name":"MM_ROLAND_SCP_AUX","features":[79]},{"name":"MM_ROLAND_SCP_MIDIIN","features":[79]},{"name":"MM_ROLAND_SCP_MIDIOUT","features":[79]},{"name":"MM_ROLAND_SCP_MIXER","features":[79]},{"name":"MM_ROLAND_SCP_WAVEIN","features":[79]},{"name":"MM_ROLAND_SCP_WAVEOUT","features":[79]},{"name":"MM_ROLAND_SERIAL_MIDIIN","features":[79]},{"name":"MM_ROLAND_SERIAL_MIDIOUT","features":[79]},{"name":"MM_ROLAND_SMPU_MIDIINA","features":[79]},{"name":"MM_ROLAND_SMPU_MIDIINB","features":[79]},{"name":"MM_ROLAND_SMPU_MIDIOUTA","features":[79]},{"name":"MM_ROLAND_SMPU_MIDIOUTB","features":[79]},{"name":"MM_RZS","features":[79]},{"name":"MM_RZS_ACM_TUBGSM","features":[79]},{"name":"MM_S3","features":[79]},{"name":"MM_S3_AUX","features":[79]},{"name":"MM_S3_FMSYNTH","features":[79]},{"name":"MM_S3_MIDIIN","features":[79]},{"name":"MM_S3_MIDIOUT","features":[79]},{"name":"MM_S3_MIXER","features":[79]},{"name":"MM_S3_WAVEIN","features":[79]},{"name":"MM_S3_WAVEOUT","features":[79]},{"name":"MM_SANYO","features":[79]},{"name":"MM_SANYO_ACM_LD_ADPCM","features":[79]},{"name":"MM_SCALACS","features":[79]},{"name":"MM_SEERSYS","features":[79]},{"name":"MM_SEERSYS_REALITY","features":[79]},{"name":"MM_SEERSYS_SEERMIX","features":[79]},{"name":"MM_SEERSYS_SEERSYNTH","features":[79]},{"name":"MM_SEERSYS_SEERWAVE","features":[79]},{"name":"MM_SEERSYS_WAVESYNTH","features":[79]},{"name":"MM_SEERSYS_WAVESYNTH_WG","features":[79]},{"name":"MM_SELSIUS_SYSTEMS","features":[79]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEIN","features":[79]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEOUT","features":[79]},{"name":"MM_SGI","features":[79]},{"name":"MM_SGI_320_MIXER","features":[79]},{"name":"MM_SGI_320_WAVEIN","features":[79]},{"name":"MM_SGI_320_WAVEOUT","features":[79]},{"name":"MM_SGI_540_MIXER","features":[79]},{"name":"MM_SGI_540_WAVEIN","features":[79]},{"name":"MM_SGI_540_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO32_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO34_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_AESMONO1_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_AESMONO1_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_AESMONO2_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_AESMONO2_WAVEOUT","features":[79]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEIN","features":[79]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEOUT","features":[79]},{"name":"MM_SHARP","features":[79]},{"name":"MM_SHARP_MDC_AUX","features":[79]},{"name":"MM_SHARP_MDC_AUX_BASS","features":[79]},{"name":"MM_SHARP_MDC_AUX_CHR","features":[79]},{"name":"MM_SHARP_MDC_AUX_MASTER","features":[79]},{"name":"MM_SHARP_MDC_AUX_MIDI_VOL","features":[79]},{"name":"MM_SHARP_MDC_AUX_RVB","features":[79]},{"name":"MM_SHARP_MDC_AUX_TREBLE","features":[79]},{"name":"MM_SHARP_MDC_AUX_VOL","features":[79]},{"name":"MM_SHARP_MDC_AUX_WAVE_CHR","features":[79]},{"name":"MM_SHARP_MDC_AUX_WAVE_RVB","features":[79]},{"name":"MM_SHARP_MDC_AUX_WAVE_VOL","features":[79]},{"name":"MM_SHARP_MDC_MIDI_IN","features":[79]},{"name":"MM_SHARP_MDC_MIDI_OUT","features":[79]},{"name":"MM_SHARP_MDC_MIDI_SYNTH","features":[79]},{"name":"MM_SHARP_MDC_MIXER","features":[79]},{"name":"MM_SHARP_MDC_WAVE_IN","features":[79]},{"name":"MM_SHARP_MDC_WAVE_OUT","features":[79]},{"name":"MM_SICRESOURCE","features":[79]},{"name":"MM_SICRESOURCE_SSO3D","features":[79]},{"name":"MM_SICRESOURCE_SSOW3DI","features":[79]},{"name":"MM_SIEMENS_SBC","features":[79]},{"name":"MM_SIERRA","features":[79]},{"name":"MM_SIERRA_ARIA_AUX","features":[79]},{"name":"MM_SIERRA_ARIA_AUX2","features":[79]},{"name":"MM_SIERRA_ARIA_MIDIIN","features":[79]},{"name":"MM_SIERRA_ARIA_MIDIOUT","features":[79]},{"name":"MM_SIERRA_ARIA_SYNTH","features":[79]},{"name":"MM_SIERRA_ARIA_WAVEIN","features":[79]},{"name":"MM_SIERRA_ARIA_WAVEOUT","features":[79]},{"name":"MM_SIERRA_QUARTET_AUX_CD","features":[79]},{"name":"MM_SIERRA_QUARTET_AUX_LINE","features":[79]},{"name":"MM_SIERRA_QUARTET_AUX_MODEM","features":[79]},{"name":"MM_SIERRA_QUARTET_MIDIIN","features":[79]},{"name":"MM_SIERRA_QUARTET_MIDIOUT","features":[79]},{"name":"MM_SIERRA_QUARTET_MIXER","features":[79]},{"name":"MM_SIERRA_QUARTET_SYNTH","features":[79]},{"name":"MM_SIERRA_QUARTET_WAVEIN","features":[79]},{"name":"MM_SIERRA_QUARTET_WAVEOUT","features":[79]},{"name":"MM_SILICONSOFT","features":[79]},{"name":"MM_SILICONSOFT_SC1_WAVEIN","features":[79]},{"name":"MM_SILICONSOFT_SC1_WAVEOUT","features":[79]},{"name":"MM_SILICONSOFT_SC2_WAVEIN","features":[79]},{"name":"MM_SILICONSOFT_SC2_WAVEOUT","features":[79]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEIN","features":[79]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEOUT","features":[79]},{"name":"MM_SILICONSOFT_SOUNDJR2_WAVEOUT","features":[79]},{"name":"MM_SILICONSOFT_SOUNDJR3_WAVEOUT","features":[79]},{"name":"MM_SIPROLAB","features":[79]},{"name":"MM_SIPROLAB_ACELPNET","features":[79]},{"name":"MM_SNI","features":[79]},{"name":"MM_SNI_ACM_G721","features":[79]},{"name":"MM_SOFTLAB_NSK","features":[79]},{"name":"MM_SOFTLAB_NSK_FRW_AUX","features":[79]},{"name":"MM_SOFTLAB_NSK_FRW_MIXER","features":[79]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEIN","features":[79]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEOUT","features":[79]},{"name":"MM_SOFTSOUND","features":[79]},{"name":"MM_SOFTSOUND_CODEC","features":[79]},{"name":"MM_SONICFOUNDRY","features":[79]},{"name":"MM_SONORUS","features":[79]},{"name":"MM_SONORUS_STUDIO","features":[79]},{"name":"MM_SONY","features":[79]},{"name":"MM_SONY_ACM_SCX","features":[79]},{"name":"MM_SORVIS","features":[79]},{"name":"MM_SOUNDESIGNS","features":[79]},{"name":"MM_SOUNDESIGNS_WAVEIN","features":[79]},{"name":"MM_SOUNDESIGNS_WAVEOUT","features":[79]},{"name":"MM_SOUNDSCAPE_AUX","features":[79]},{"name":"MM_SOUNDSCAPE_MIDIIN","features":[79]},{"name":"MM_SOUNDSCAPE_MIDIOUT","features":[79]},{"name":"MM_SOUNDSCAPE_MIXER","features":[79]},{"name":"MM_SOUNDSCAPE_SYNTH","features":[79]},{"name":"MM_SOUNDSCAPE_WAVEIN","features":[79]},{"name":"MM_SOUNDSCAPE_WAVEOUT","features":[79]},{"name":"MM_SOUNDSCAPE_WAVEOUT_AUX","features":[79]},{"name":"MM_SOUNDSPACE","features":[79]},{"name":"MM_SPECTRUM_PRODUCTIONS","features":[79]},{"name":"MM_SPECTRUM_SIGNAL_PROCESSING","features":[79]},{"name":"MM_SPEECHCOMP","features":[79]},{"name":"MM_SPLASH_STUDIOS","features":[79]},{"name":"MM_SSP_SNDFESAUX","features":[79]},{"name":"MM_SSP_SNDFESMIDIIN","features":[79]},{"name":"MM_SSP_SNDFESMIDIOUT","features":[79]},{"name":"MM_SSP_SNDFESMIX","features":[79]},{"name":"MM_SSP_SNDFESSYNTH","features":[79]},{"name":"MM_SSP_SNDFESWAVEIN","features":[79]},{"name":"MM_SSP_SNDFESWAVEOUT","features":[79]},{"name":"MM_STUDER","features":[79]},{"name":"MM_STUDIO_16_AUX","features":[79]},{"name":"MM_STUDIO_16_MIDIIN","features":[79]},{"name":"MM_STUDIO_16_MIDIOUT","features":[79]},{"name":"MM_STUDIO_16_MIXER","features":[79]},{"name":"MM_STUDIO_16_SYNTH","features":[79]},{"name":"MM_STUDIO_16_WAVEIN","features":[79]},{"name":"MM_STUDIO_16_WAVEOUT","features":[79]},{"name":"MM_ST_MICROELECTRONICS","features":[79]},{"name":"MM_SUNCOM","features":[79]},{"name":"MM_SUPERMAC","features":[79]},{"name":"MM_SYDEC_NV","features":[79]},{"name":"MM_SYDEC_NV_WAVEIN","features":[79]},{"name":"MM_SYDEC_NV_WAVEOUT","features":[79]},{"name":"MM_TANDY","features":[79]},{"name":"MM_TANDY_PSSJWAVEIN","features":[79]},{"name":"MM_TANDY_PSSJWAVEOUT","features":[79]},{"name":"MM_TANDY_SENS_MMAMIDIIN","features":[79]},{"name":"MM_TANDY_SENS_MMAMIDIOUT","features":[79]},{"name":"MM_TANDY_SENS_MMAWAVEIN","features":[79]},{"name":"MM_TANDY_SENS_MMAWAVEOUT","features":[79]},{"name":"MM_TANDY_SENS_VISWAVEOUT","features":[79]},{"name":"MM_TANDY_VISBIOSSYNTH","features":[79]},{"name":"MM_TANDY_VISWAVEIN","features":[79]},{"name":"MM_TANDY_VISWAVEOUT","features":[79]},{"name":"MM_TBS_TROPEZ_AUX1","features":[79]},{"name":"MM_TBS_TROPEZ_AUX2","features":[79]},{"name":"MM_TBS_TROPEZ_LINE","features":[79]},{"name":"MM_TBS_TROPEZ_WAVEIN","features":[79]},{"name":"MM_TBS_TROPEZ_WAVEOUT","features":[79]},{"name":"MM_TDK","features":[79]},{"name":"MM_TDK_MW_AUX","features":[79]},{"name":"MM_TDK_MW_AUX_BASS","features":[79]},{"name":"MM_TDK_MW_AUX_CHR","features":[79]},{"name":"MM_TDK_MW_AUX_MASTER","features":[79]},{"name":"MM_TDK_MW_AUX_MIDI_VOL","features":[79]},{"name":"MM_TDK_MW_AUX_RVB","features":[79]},{"name":"MM_TDK_MW_AUX_TREBLE","features":[79]},{"name":"MM_TDK_MW_AUX_VOL","features":[79]},{"name":"MM_TDK_MW_AUX_WAVE_CHR","features":[79]},{"name":"MM_TDK_MW_AUX_WAVE_RVB","features":[79]},{"name":"MM_TDK_MW_AUX_WAVE_VOL","features":[79]},{"name":"MM_TDK_MW_MIDI_IN","features":[79]},{"name":"MM_TDK_MW_MIDI_OUT","features":[79]},{"name":"MM_TDK_MW_MIDI_SYNTH","features":[79]},{"name":"MM_TDK_MW_MIXER","features":[79]},{"name":"MM_TDK_MW_WAVE_IN","features":[79]},{"name":"MM_TDK_MW_WAVE_OUT","features":[79]},{"name":"MM_TELEKOL","features":[79]},{"name":"MM_TELEKOL_WAVEIN","features":[79]},{"name":"MM_TELEKOL_WAVEOUT","features":[79]},{"name":"MM_TERALOGIC","features":[79]},{"name":"MM_TERRATEC","features":[79]},{"name":"MM_THUNDER_AUX","features":[79]},{"name":"MM_THUNDER_SYNTH","features":[79]},{"name":"MM_THUNDER_WAVEIN","features":[79]},{"name":"MM_THUNDER_WAVEOUT","features":[79]},{"name":"MM_TPORT_SYNTH","features":[79]},{"name":"MM_TPORT_WAVEIN","features":[79]},{"name":"MM_TPORT_WAVEOUT","features":[79]},{"name":"MM_TRUEVISION","features":[79]},{"name":"MM_TRUEVISION_WAVEIN1","features":[79]},{"name":"MM_TRUEVISION_WAVEOUT1","features":[79]},{"name":"MM_TTEWS_AUX","features":[79]},{"name":"MM_TTEWS_MIDIIN","features":[79]},{"name":"MM_TTEWS_MIDIMONITOR","features":[79]},{"name":"MM_TTEWS_MIDIOUT","features":[79]},{"name":"MM_TTEWS_MIDISYNTH","features":[79]},{"name":"MM_TTEWS_MIXER","features":[79]},{"name":"MM_TTEWS_VMIDIIN","features":[79]},{"name":"MM_TTEWS_VMIDIOUT","features":[79]},{"name":"MM_TTEWS_WAVEIN","features":[79]},{"name":"MM_TTEWS_WAVEOUT","features":[79]},{"name":"MM_TURTLE_BEACH","features":[79]},{"name":"MM_UHER_INFORMATIC","features":[79]},{"name":"MM_UH_ACM_ADPCM","features":[79]},{"name":"MM_UNISYS","features":[79]},{"name":"MM_UNISYS_ACM_NAP","features":[79]},{"name":"MM_UNMAPPED","features":[79]},{"name":"MM_VAL","features":[79]},{"name":"MM_VAL_MICROKEY_AP_WAVEIN","features":[79]},{"name":"MM_VAL_MICROKEY_AP_WAVEOUT","features":[79]},{"name":"MM_VANKOEVERING","features":[79]},{"name":"MM_VIA","features":[79]},{"name":"MM_VIA_AUX","features":[79]},{"name":"MM_VIA_MIXER","features":[79]},{"name":"MM_VIA_MPU401_MIDIIN","features":[79]},{"name":"MM_VIA_MPU401_MIDIOUT","features":[79]},{"name":"MM_VIA_SWFM_SYNTH","features":[79]},{"name":"MM_VIA_WAVEIN","features":[79]},{"name":"MM_VIA_WAVEOUT","features":[79]},{"name":"MM_VIA_WDM_MIXER","features":[79]},{"name":"MM_VIA_WDM_MPU401_MIDIIN","features":[79]},{"name":"MM_VIA_WDM_MPU401_MIDIOUT","features":[79]},{"name":"MM_VIA_WDM_WAVEIN","features":[79]},{"name":"MM_VIA_WDM_WAVEOUT","features":[79]},{"name":"MM_VIDEOLOGIC","features":[79]},{"name":"MM_VIDEOLOGIC_MSWAVEIN","features":[79]},{"name":"MM_VIDEOLOGIC_MSWAVEOUT","features":[79]},{"name":"MM_VIENNASYS","features":[79]},{"name":"MM_VIENNASYS_TSP_WAVE_DRIVER","features":[79]},{"name":"MM_VIONA","features":[79]},{"name":"MM_VIONAQVINPCI_WAVEOUT","features":[79]},{"name":"MM_VIONA_BUSTER_MIXER","features":[79]},{"name":"MM_VIONA_CINEMASTER_MIXER","features":[79]},{"name":"MM_VIONA_CONCERTO_MIXER","features":[79]},{"name":"MM_VIONA_QVINPCI_MIXER","features":[79]},{"name":"MM_VIONA_QVINPCI_WAVEIN","features":[79]},{"name":"MM_VIRTUALMUSIC","features":[79]},{"name":"MM_VITEC","features":[79]},{"name":"MM_VITEC_VMAKER","features":[79]},{"name":"MM_VITEC_VMPRO","features":[79]},{"name":"MM_VIVO","features":[79]},{"name":"MM_VIVO_AUDIO_CODEC","features":[79]},{"name":"MM_VKC_MPU401_MIDIIN","features":[79]},{"name":"MM_VKC_MPU401_MIDIOUT","features":[79]},{"name":"MM_VKC_SERIAL_MIDIIN","features":[79]},{"name":"MM_VKC_SERIAL_MIDIOUT","features":[79]},{"name":"MM_VOCALTEC","features":[79]},{"name":"MM_VOCALTEC_WAVEIN","features":[79]},{"name":"MM_VOCALTEC_WAVEOUT","features":[79]},{"name":"MM_VOICEINFO","features":[79]},{"name":"MM_VOICEMIXER","features":[79]},{"name":"MM_VOXWARE","features":[79]},{"name":"MM_VOXWARE_CODEC","features":[79]},{"name":"MM_VOYETRA","features":[79]},{"name":"MM_VQST","features":[79]},{"name":"MM_VQST_VQC1","features":[79]},{"name":"MM_VQST_VQC2","features":[79]},{"name":"MM_VTG","features":[79]},{"name":"MM_WANGLABS","features":[79]},{"name":"MM_WANGLABS_WAVEIN1","features":[79]},{"name":"MM_WANGLABS_WAVEOUT1","features":[79]},{"name":"MM_WEITEK","features":[79]},{"name":"MM_WILDCAT","features":[79]},{"name":"MM_WILDCAT_AUTOSCOREMIDIIN","features":[79]},{"name":"MM_WILLOPOND_SNDCOMM_WAVEIN","features":[79]},{"name":"MM_WILLOWPOND","features":[79]},{"name":"MM_WILLOWPOND_FMSYNTH_STEREO","features":[79]},{"name":"MM_WILLOWPOND_GENERIC_AUX","features":[79]},{"name":"MM_WILLOWPOND_GENERIC_MIXER","features":[79]},{"name":"MM_WILLOWPOND_GENERIC_WAVEIN","features":[79]},{"name":"MM_WILLOWPOND_GENERIC_WAVEOUT","features":[79]},{"name":"MM_WILLOWPOND_MPU401","features":[79]},{"name":"MM_WILLOWPOND_PH_AUX","features":[79]},{"name":"MM_WILLOWPOND_PH_MIXER","features":[79]},{"name":"MM_WILLOWPOND_PH_WAVEIN","features":[79]},{"name":"MM_WILLOWPOND_PH_WAVEOUT","features":[79]},{"name":"MM_WILLOWPOND_SNDCOMM_AUX","features":[79]},{"name":"MM_WILLOWPOND_SNDCOMM_MIXER","features":[79]},{"name":"MM_WILLOWPOND_SNDCOMM_WAVEOUT","features":[79]},{"name":"MM_WILLOWPOND_SNDPORT_AUX","features":[79]},{"name":"MM_WILLOWPOND_SNDPORT_MIXER","features":[79]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEIN","features":[79]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEOUT","features":[79]},{"name":"MM_WINBOND","features":[79]},{"name":"MM_WINNOV","features":[79]},{"name":"MM_WINNOV_CAVIAR_CHAMPAGNE","features":[79]},{"name":"MM_WINNOV_CAVIAR_VIDC","features":[79]},{"name":"MM_WINNOV_CAVIAR_WAVEIN","features":[79]},{"name":"MM_WINNOV_CAVIAR_WAVEOUT","features":[79]},{"name":"MM_WINNOV_CAVIAR_YUV8","features":[79]},{"name":"MM_WORKBIT","features":[79]},{"name":"MM_WORKBIT_AUX","features":[79]},{"name":"MM_WORKBIT_FMSYNTH","features":[79]},{"name":"MM_WORKBIT_JOYSTICK","features":[79]},{"name":"MM_WORKBIT_MIDIIN","features":[79]},{"name":"MM_WORKBIT_MIDIOUT","features":[79]},{"name":"MM_WORKBIT_MIXER","features":[79]},{"name":"MM_WORKBIT_WAVEIN","features":[79]},{"name":"MM_WORKBIT_WAVEOUT","features":[79]},{"name":"MM_WSS_SB16_AUX_CD","features":[79]},{"name":"MM_WSS_SB16_AUX_LINE","features":[79]},{"name":"MM_WSS_SB16_MIDIIN","features":[79]},{"name":"MM_WSS_SB16_MIDIOUT","features":[79]},{"name":"MM_WSS_SB16_MIXER","features":[79]},{"name":"MM_WSS_SB16_SYNTH","features":[79]},{"name":"MM_WSS_SB16_WAVEIN","features":[79]},{"name":"MM_WSS_SB16_WAVEOUT","features":[79]},{"name":"MM_WSS_SBPRO_AUX_CD","features":[79]},{"name":"MM_WSS_SBPRO_AUX_LINE","features":[79]},{"name":"MM_WSS_SBPRO_MIDIIN","features":[79]},{"name":"MM_WSS_SBPRO_MIDIOUT","features":[79]},{"name":"MM_WSS_SBPRO_MIXER","features":[79]},{"name":"MM_WSS_SBPRO_SYNTH","features":[79]},{"name":"MM_WSS_SBPRO_WAVEIN","features":[79]},{"name":"MM_WSS_SBPRO_WAVEOUT","features":[79]},{"name":"MM_XEBEC","features":[79]},{"name":"MM_XIRLINK","features":[79]},{"name":"MM_XIRLINK_VISIONLINK","features":[79]},{"name":"MM_XYZ","features":[79]},{"name":"MM_YAMAHA","features":[79]},{"name":"MM_YAMAHA_ACXG_AUX","features":[79]},{"name":"MM_YAMAHA_ACXG_MIDIOUT","features":[79]},{"name":"MM_YAMAHA_ACXG_MIXER","features":[79]},{"name":"MM_YAMAHA_ACXG_WAVEIN","features":[79]},{"name":"MM_YAMAHA_ACXG_WAVEOUT","features":[79]},{"name":"MM_YAMAHA_GSS_AUX","features":[79]},{"name":"MM_YAMAHA_GSS_MIDIIN","features":[79]},{"name":"MM_YAMAHA_GSS_MIDIOUT","features":[79]},{"name":"MM_YAMAHA_GSS_SYNTH","features":[79]},{"name":"MM_YAMAHA_GSS_WAVEIN","features":[79]},{"name":"MM_YAMAHA_GSS_WAVEOUT","features":[79]},{"name":"MM_YAMAHA_OPL3SA_FMSYNTH","features":[79]},{"name":"MM_YAMAHA_OPL3SA_JOYSTICK","features":[79]},{"name":"MM_YAMAHA_OPL3SA_MIDIIN","features":[79]},{"name":"MM_YAMAHA_OPL3SA_MIDIOUT","features":[79]},{"name":"MM_YAMAHA_OPL3SA_MIXER","features":[79]},{"name":"MM_YAMAHA_OPL3SA_WAVEIN","features":[79]},{"name":"MM_YAMAHA_OPL3SA_WAVEOUT","features":[79]},{"name":"MM_YAMAHA_OPL3SA_YSYNTH","features":[79]},{"name":"MM_YAMAHA_SERIAL_MIDIIN","features":[79]},{"name":"MM_YAMAHA_SERIAL_MIDIOUT","features":[79]},{"name":"MM_YAMAHA_SXG_MIDIOUT","features":[79]},{"name":"MM_YAMAHA_SXG_MIXER","features":[79]},{"name":"MM_YAMAHA_SXG_WAVEOUT","features":[79]},{"name":"MM_YAMAHA_YMF724LEG_FMSYNTH","features":[79]},{"name":"MM_YAMAHA_YMF724LEG_MIDIIN","features":[79]},{"name":"MM_YAMAHA_YMF724LEG_MIDIOUT","features":[79]},{"name":"MM_YAMAHA_YMF724LEG_MIXER","features":[79]},{"name":"MM_YAMAHA_YMF724_AUX","features":[79]},{"name":"MM_YAMAHA_YMF724_MIDIOUT","features":[79]},{"name":"MM_YAMAHA_YMF724_MIXER","features":[79]},{"name":"MM_YAMAHA_YMF724_WAVEIN","features":[79]},{"name":"MM_YAMAHA_YMF724_WAVEOUT","features":[79]},{"name":"MM_YOUCOM","features":[79]},{"name":"MM_ZEFIRO","features":[79]},{"name":"MM_ZEFIRO_ZA2","features":[79]},{"name":"MM_ZYXEL","features":[79]},{"name":"MM_ZYXEL_ACM_ADPCM","features":[79]},{"name":"MODM_CACHEDRUMPATCHES","features":[79]},{"name":"MODM_CACHEPATCHES","features":[79]},{"name":"MODM_CLOSE","features":[79]},{"name":"MODM_DATA","features":[79]},{"name":"MODM_GETDEVCAPS","features":[79]},{"name":"MODM_GETNUMDEVS","features":[79]},{"name":"MODM_GETPOS","features":[79]},{"name":"MODM_GETVOLUME","features":[79]},{"name":"MODM_INIT","features":[79]},{"name":"MODM_INIT_EX","features":[79]},{"name":"MODM_LONGDATA","features":[79]},{"name":"MODM_MAPPER","features":[79]},{"name":"MODM_OPEN","features":[79]},{"name":"MODM_PAUSE","features":[79]},{"name":"MODM_PREFERRED","features":[79]},{"name":"MODM_PREPARE","features":[79]},{"name":"MODM_PROPERTIES","features":[79]},{"name":"MODM_RECONFIGURE","features":[79]},{"name":"MODM_RESET","features":[79]},{"name":"MODM_RESTART","features":[79]},{"name":"MODM_SETVOLUME","features":[79]},{"name":"MODM_STOP","features":[79]},{"name":"MODM_STRMDATA","features":[79]},{"name":"MODM_UNPREPARE","features":[79]},{"name":"MODM_USER","features":[79]},{"name":"MPEGLAYER3_ID_CONSTANTFRAMESIZE","features":[79]},{"name":"MPEGLAYER3_ID_MPEG","features":[79]},{"name":"MPEGLAYER3_ID_UNKNOWN","features":[79]},{"name":"MPEGLAYER3_WFX_EXTRA_BYTES","features":[79]},{"name":"MSAUDIO1WAVEFORMAT","features":[80,79]},{"name":"MSAUDIO1_BITS_PER_SAMPLE","features":[79]},{"name":"MSAUDIO1_MAX_CHANNELS","features":[79]},{"name":"MXDM_BASE","features":[79]},{"name":"MXDM_CLOSE","features":[79]},{"name":"MXDM_GETCONTROLDETAILS","features":[79]},{"name":"MXDM_GETDEVCAPS","features":[79]},{"name":"MXDM_GETLINECONTROLS","features":[79]},{"name":"MXDM_GETLINEINFO","features":[79]},{"name":"MXDM_GETNUMDEVS","features":[79]},{"name":"MXDM_INIT","features":[79]},{"name":"MXDM_INIT_EX","features":[79]},{"name":"MXDM_OPEN","features":[79]},{"name":"MXDM_SETCONTROLDETAILS","features":[79]},{"name":"MXDM_USER","features":[79]},{"name":"NMS_VBXADPCMWAVEFORMAT","features":[80,79]},{"name":"NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS","features":[79]},{"name":"NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE","features":[79]},{"name":"NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH","features":[79]},{"name":"NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID","features":[79]},{"name":"NS_E_8BIT_WAVE_UNSUPPORTED","features":[79]},{"name":"NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED","features":[79]},{"name":"NS_E_ACTIVE_SG_DEVICE_DISCONNECTED","features":[79]},{"name":"NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES","features":[79]},{"name":"NS_E_ALLOCATE_FILE_FAIL","features":[79]},{"name":"NS_E_ALL_PROTOCOLS_DISABLED","features":[79]},{"name":"NS_E_ALREADY_CONNECTED","features":[79]},{"name":"NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[79]},{"name":"NS_E_ARCHIVE_ABORT_DUE_TO_BCAST","features":[79]},{"name":"NS_E_ARCHIVE_FILENAME_NOTSET","features":[79]},{"name":"NS_E_ARCHIVE_GAP_DETECTED","features":[79]},{"name":"NS_E_ARCHIVE_REACH_QUOTA","features":[79]},{"name":"NS_E_ARCHIVE_SAME_AS_INPUT","features":[79]},{"name":"NS_E_ASSERT","features":[79]},{"name":"NS_E_ASX_INVALIDFORMAT","features":[79]},{"name":"NS_E_ASX_INVALIDVERSION","features":[79]},{"name":"NS_E_ASX_INVALID_REPEAT_BLOCK","features":[79]},{"name":"NS_E_ASX_NOTHING_TO_WRITE","features":[79]},{"name":"NS_E_ATTRIBUTE_NOT_ALLOWED","features":[79]},{"name":"NS_E_ATTRIBUTE_READ_ONLY","features":[79]},{"name":"NS_E_AUDIENCE_CONTENTTYPE_MISMATCH","features":[79]},{"name":"NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH","features":[79]},{"name":"NS_E_AUDIODEVICE_BADFORMAT","features":[79]},{"name":"NS_E_AUDIODEVICE_BUSY","features":[79]},{"name":"NS_E_AUDIODEVICE_UNEXPECTED","features":[79]},{"name":"NS_E_AUDIO_BITRATE_STEPDOWN","features":[79]},{"name":"NS_E_AUDIO_CODEC_ERROR","features":[79]},{"name":"NS_E_AUDIO_CODEC_NOT_INSTALLED","features":[79]},{"name":"NS_E_AUTHORIZATION_FILE_NOT_FOUND","features":[79]},{"name":"NS_E_BACKUP_RESTORE_BAD_DATA","features":[79]},{"name":"NS_E_BACKUP_RESTORE_BAD_REQUEST_ID","features":[79]},{"name":"NS_E_BACKUP_RESTORE_FAILURE","features":[79]},{"name":"NS_E_BACKUP_RESTORE_TOO_MANY_RESETS","features":[79]},{"name":"NS_E_BAD_ADAPTER_ADDRESS","features":[79]},{"name":"NS_E_BAD_ADAPTER_NAME","features":[79]},{"name":"NS_E_BAD_BLOCK0_VERSION","features":[79]},{"name":"NS_E_BAD_CONTENTEDL","features":[79]},{"name":"NS_E_BAD_CONTROL_DATA","features":[79]},{"name":"NS_E_BAD_CUB_UID","features":[79]},{"name":"NS_E_BAD_DELIVERY_MODE","features":[79]},{"name":"NS_E_BAD_DISK_UID","features":[79]},{"name":"NS_E_BAD_FSMAJOR_VERSION","features":[79]},{"name":"NS_E_BAD_MARKIN","features":[79]},{"name":"NS_E_BAD_MARKOUT","features":[79]},{"name":"NS_E_BAD_MULTICAST_ADDRESS","features":[79]},{"name":"NS_E_BAD_REQUEST","features":[79]},{"name":"NS_E_BAD_STAMPNUMBER","features":[79]},{"name":"NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE","features":[79]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCENDED","features":[79]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCFAILED","features":[79]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT","features":[79]},{"name":"NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB","features":[79]},{"name":"NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB","features":[79]},{"name":"NS_E_BKGDOWNLOAD_FAILEDINITIALIZE","features":[79]},{"name":"NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE","features":[79]},{"name":"NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE","features":[79]},{"name":"NS_E_BKGDOWNLOAD_INVALID_FILE_NAME","features":[79]},{"name":"NS_E_BKGDOWNLOAD_NOJOBPOINTER","features":[79]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE","features":[79]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE","features":[79]},{"name":"NS_E_BKGDOWNLOAD_WMDUNPACKFAILED","features":[79]},{"name":"NS_E_BKGDOWNLOAD_WRONG_NO_FILES","features":[79]},{"name":"NS_E_BUSY","features":[79]},{"name":"NS_E_CACHE_ARCHIVE_CONFLICT","features":[79]},{"name":"NS_E_CACHE_CANNOT_BE_CACHED","features":[79]},{"name":"NS_E_CACHE_NOT_BROADCAST","features":[79]},{"name":"NS_E_CACHE_NOT_MODIFIED","features":[79]},{"name":"NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND","features":[79]},{"name":"NS_E_CACHE_ORIGIN_SERVER_TIMEOUT","features":[79]},{"name":"NS_E_CANNOTCONNECT","features":[79]},{"name":"NS_E_CANNOTCONNECTEVENTS","features":[79]},{"name":"NS_E_CANNOTDESTROYTITLE","features":[79]},{"name":"NS_E_CANNOTOFFLINEDISK","features":[79]},{"name":"NS_E_CANNOTONLINEDISK","features":[79]},{"name":"NS_E_CANNOTRENAMETITLE","features":[79]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT","features":[79]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES","features":[79]},{"name":"NS_E_CANNOT_CONNECT_TO_PROXY","features":[79]},{"name":"NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP","features":[79]},{"name":"NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR","features":[79]},{"name":"NS_E_CANNOT_PAUSE_LIVEBROADCAST","features":[79]},{"name":"NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER","features":[79]},{"name":"NS_E_CANNOT_REMOVE_PLUGIN","features":[79]},{"name":"NS_E_CANNOT_REMOVE_PUBLISHING_POINT","features":[79]},{"name":"NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE","features":[79]},{"name":"NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING","features":[79]},{"name":"NS_E_CANT_READ_DIGITAL","features":[79]},{"name":"NS_E_CCLINK_DOWN","features":[79]},{"name":"NS_E_CD_COPYTO_CD","features":[79]},{"name":"NS_E_CD_DRIVER_PROBLEM","features":[79]},{"name":"NS_E_CD_EMPTY_TRACK_QUEUE","features":[79]},{"name":"NS_E_CD_ISRC_INVALID","features":[79]},{"name":"NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID","features":[79]},{"name":"NS_E_CD_NO_BUFFERS_READ","features":[79]},{"name":"NS_E_CD_NO_READER","features":[79]},{"name":"NS_E_CD_QUEUEING_DISABLED","features":[79]},{"name":"NS_E_CD_READ_ERROR","features":[79]},{"name":"NS_E_CD_READ_ERROR_NO_CORRECTION","features":[79]},{"name":"NS_E_CD_REFRESH","features":[79]},{"name":"NS_E_CD_SLOW_COPY","features":[79]},{"name":"NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS","features":[79]},{"name":"NS_E_CHANGING_PROXYBYPASS","features":[79]},{"name":"NS_E_CHANGING_PROXY_EXCEPTIONLIST","features":[79]},{"name":"NS_E_CHANGING_PROXY_NAME","features":[79]},{"name":"NS_E_CHANGING_PROXY_PORT","features":[79]},{"name":"NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND","features":[79]},{"name":"NS_E_CLOSED_ON_SUSPEND","features":[79]},{"name":"NS_E_CODEC_DMO_ERROR","features":[79]},{"name":"NS_E_CODEC_UNAVAILABLE","features":[79]},{"name":"NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[79]},{"name":"NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[79]},{"name":"NS_E_CONNECTION_FAILURE","features":[79]},{"name":"NS_E_CONNECT_TIMEOUT","features":[79]},{"name":"NS_E_CONTENT_PARTNER_STILL_INITIALIZING","features":[79]},{"name":"NS_E_CORECD_NOTAMEDIACD","features":[79]},{"name":"NS_E_CRITICAL_ERROR","features":[79]},{"name":"NS_E_CUB_FAIL","features":[79]},{"name":"NS_E_CUB_FAIL_LINK","features":[79]},{"name":"NS_E_CURLHELPER_NOTADIRECTORY","features":[79]},{"name":"NS_E_CURLHELPER_NOTAFILE","features":[79]},{"name":"NS_E_CURLHELPER_NOTRELATIVE","features":[79]},{"name":"NS_E_CURL_CANTDECODE","features":[79]},{"name":"NS_E_CURL_CANTWALK","features":[79]},{"name":"NS_E_CURL_INVALIDBUFFERSIZE","features":[79]},{"name":"NS_E_CURL_INVALIDCHAR","features":[79]},{"name":"NS_E_CURL_INVALIDHOSTNAME","features":[79]},{"name":"NS_E_CURL_INVALIDPATH","features":[79]},{"name":"NS_E_CURL_INVALIDPORT","features":[79]},{"name":"NS_E_CURL_INVALIDSCHEME","features":[79]},{"name":"NS_E_CURL_INVALIDURL","features":[79]},{"name":"NS_E_CURL_NOTSAFE","features":[79]},{"name":"NS_E_DAMAGED_FILE","features":[79]},{"name":"NS_E_DATAPATH_NO_SINK","features":[79]},{"name":"NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED","features":[79]},{"name":"NS_E_DATA_UNIT_EXTENSION_TOO_LARGE","features":[79]},{"name":"NS_E_DDRAW_GENERIC","features":[79]},{"name":"NS_E_DEVCONTROL_FAILED_SEEK","features":[79]},{"name":"NS_E_DEVICECONTROL_UNSTABLE","features":[79]},{"name":"NS_E_DEVICE_DISCONNECTED","features":[79]},{"name":"NS_E_DEVICE_IS_NOT_READY","features":[79]},{"name":"NS_E_DEVICE_NOT_READY","features":[79]},{"name":"NS_E_DEVICE_NOT_SUPPORT_FORMAT","features":[79]},{"name":"NS_E_DEVICE_NOT_WMDRM_DEVICE","features":[79]},{"name":"NS_E_DISK_FAIL","features":[79]},{"name":"NS_E_DISK_READ","features":[79]},{"name":"NS_E_DISK_WRITE","features":[79]},{"name":"NS_E_DISPLAY_MODE_CHANGE_FAILED","features":[79]},{"name":"NS_E_DRMPROFILE_NOTFOUND","features":[79]},{"name":"NS_E_DRM_ACQUIRING_LICENSE","features":[79]},{"name":"NS_E_DRM_ACTION_NOT_QUERIED","features":[79]},{"name":"NS_E_DRM_ALREADY_INDIVIDUALIZED","features":[79]},{"name":"NS_E_DRM_APPCERT_REVOKED","features":[79]},{"name":"NS_E_DRM_ATTRIBUTE_TOO_LONG","features":[79]},{"name":"NS_E_DRM_BACKUPRESTORE_BUSY","features":[79]},{"name":"NS_E_DRM_BACKUP_CORRUPT","features":[79]},{"name":"NS_E_DRM_BACKUP_EXISTS","features":[79]},{"name":"NS_E_DRM_BAD_REQUEST","features":[79]},{"name":"NS_E_DRM_BB_UNABLE_TO_INITIALIZE","features":[79]},{"name":"NS_E_DRM_BUFFER_TOO_SMALL","features":[79]},{"name":"NS_E_DRM_BUSY","features":[79]},{"name":"NS_E_DRM_CACHED_CONTENT_ERROR","features":[79]},{"name":"NS_E_DRM_CERTIFICATE_REVOKED","features":[79]},{"name":"NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE","features":[79]},{"name":"NS_E_DRM_CHAIN_TOO_LONG","features":[79]},{"name":"NS_E_DRM_CHECKPOINT_CORRUPT","features":[79]},{"name":"NS_E_DRM_CHECKPOINT_FAILED","features":[79]},{"name":"NS_E_DRM_CHECKPOINT_MISMATCH","features":[79]},{"name":"NS_E_DRM_CLIENT_CODE_EXPIRED","features":[79]},{"name":"NS_E_DRM_DATASTORE_CORRUPT","features":[79]},{"name":"NS_E_DRM_DEBUGGING_NOT_ALLOWED","features":[79]},{"name":"NS_E_DRM_DECRYPT_ERROR","features":[79]},{"name":"NS_E_DRM_DEVICE_ACTIVATION_CANCELED","features":[79]},{"name":"NS_E_DRM_DEVICE_ALREADY_REGISTERED","features":[79]},{"name":"NS_E_DRM_DEVICE_LIMIT_REACHED","features":[79]},{"name":"NS_E_DRM_DEVICE_NOT_OPEN","features":[79]},{"name":"NS_E_DRM_DEVICE_NOT_REGISTERED","features":[79]},{"name":"NS_E_DRM_DRIVER_AUTH_FAILURE","features":[79]},{"name":"NS_E_DRM_DRIVER_DIGIOUT_FAILURE","features":[79]},{"name":"NS_E_DRM_DRMV2CLT_REVOKED","features":[79]},{"name":"NS_E_DRM_ENCRYPT_ERROR","features":[79]},{"name":"NS_E_DRM_ENUM_LICENSE_FAILED","features":[79]},{"name":"NS_E_DRM_ERROR_BAD_NET_RESP","features":[79]},{"name":"NS_E_DRM_EXPIRED_LICENSEBLOB","features":[79]},{"name":"NS_E_DRM_GET_CONTENTSTRING_ERROR","features":[79]},{"name":"NS_E_DRM_GET_LICENSESTRING_ERROR","features":[79]},{"name":"NS_E_DRM_GET_LICENSE_ERROR","features":[79]},{"name":"NS_E_DRM_HARDWAREID_MISMATCH","features":[79]},{"name":"NS_E_DRM_HARDWARE_INCONSISTENT","features":[79]},{"name":"NS_E_DRM_INCLUSION_LIST_REQUIRED","features":[79]},{"name":"NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE","features":[79]},{"name":"NS_E_DRM_INDIVIDUALIZE_ERROR","features":[79]},{"name":"NS_E_DRM_INDIVIDUALIZING","features":[79]},{"name":"NS_E_DRM_INDIV_FRAUD","features":[79]},{"name":"NS_E_DRM_INDIV_NO_CABS","features":[79]},{"name":"NS_E_DRM_INDIV_SERVICE_UNAVAILABLE","features":[79]},{"name":"NS_E_DRM_INVALID_APPCERT","features":[79]},{"name":"NS_E_DRM_INVALID_APPDATA","features":[79]},{"name":"NS_E_DRM_INVALID_APPDATA_VERSION","features":[79]},{"name":"NS_E_DRM_INVALID_APPLICATION","features":[79]},{"name":"NS_E_DRM_INVALID_CERTIFICATE","features":[79]},{"name":"NS_E_DRM_INVALID_CONTENT","features":[79]},{"name":"NS_E_DRM_INVALID_CRL","features":[79]},{"name":"NS_E_DRM_INVALID_DATA","features":[79]},{"name":"NS_E_DRM_INVALID_KID","features":[79]},{"name":"NS_E_DRM_INVALID_LICENSE","features":[79]},{"name":"NS_E_DRM_INVALID_LICENSEBLOB","features":[79]},{"name":"NS_E_DRM_INVALID_LICENSE_ACQUIRED","features":[79]},{"name":"NS_E_DRM_INVALID_LICENSE_REQUEST","features":[79]},{"name":"NS_E_DRM_INVALID_MACHINE","features":[79]},{"name":"NS_E_DRM_INVALID_MIGRATION_IMAGE","features":[79]},{"name":"NS_E_DRM_INVALID_PROPERTY","features":[79]},{"name":"NS_E_DRM_INVALID_PROXIMITY_RESPONSE","features":[79]},{"name":"NS_E_DRM_INVALID_SECURESTORE_PASSWORD","features":[79]},{"name":"NS_E_DRM_INVALID_SESSION","features":[79]},{"name":"NS_E_DRM_KEY_ERROR","features":[79]},{"name":"NS_E_DRM_LICENSE_APPSECLOW","features":[79]},{"name":"NS_E_DRM_LICENSE_APP_NOTALLOWED","features":[79]},{"name":"NS_E_DRM_LICENSE_CERT_EXPIRED","features":[79]},{"name":"NS_E_DRM_LICENSE_CLOSE_ERROR","features":[79]},{"name":"NS_E_DRM_LICENSE_CONTENT_REVOKED","features":[79]},{"name":"NS_E_DRM_LICENSE_DELETION_ERROR","features":[79]},{"name":"NS_E_DRM_LICENSE_EXPIRED","features":[79]},{"name":"NS_E_DRM_LICENSE_INITIALIZATION_ERROR","features":[79]},{"name":"NS_E_DRM_LICENSE_INVALID_XML","features":[79]},{"name":"NS_E_DRM_LICENSE_NOSAP","features":[79]},{"name":"NS_E_DRM_LICENSE_NOSVP","features":[79]},{"name":"NS_E_DRM_LICENSE_NOTACQUIRED","features":[79]},{"name":"NS_E_DRM_LICENSE_NOTENABLED","features":[79]},{"name":"NS_E_DRM_LICENSE_NOTRUSTEDCODEC","features":[79]},{"name":"NS_E_DRM_LICENSE_NOWDM","features":[79]},{"name":"NS_E_DRM_LICENSE_OPEN_ERROR","features":[79]},{"name":"NS_E_DRM_LICENSE_SECLOW","features":[79]},{"name":"NS_E_DRM_LICENSE_SERVER_INFO_MISSING","features":[79]},{"name":"NS_E_DRM_LICENSE_STORE_ERROR","features":[79]},{"name":"NS_E_DRM_LICENSE_STORE_SAVE_ERROR","features":[79]},{"name":"NS_E_DRM_LICENSE_UNAVAILABLE","features":[79]},{"name":"NS_E_DRM_LICENSE_UNUSABLE","features":[79]},{"name":"NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET","features":[79]},{"name":"NS_E_DRM_MALFORMED_CONTENT_HEADER","features":[79]},{"name":"NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE","features":[79]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA","features":[79]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD","features":[79]},{"name":"NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS","features":[79]},{"name":"NS_E_DRM_MIGRATION_NOT_SUPPORTED","features":[79]},{"name":"NS_E_DRM_MIGRATION_OBJECT_IN_USE","features":[79]},{"name":"NS_E_DRM_MIGRATION_OPERATION_CANCELLED","features":[79]},{"name":"NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE","features":[79]},{"name":"NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED","features":[79]},{"name":"NS_E_DRM_MONITOR_ERROR","features":[79]},{"name":"NS_E_DRM_MUST_APPROVE","features":[79]},{"name":"NS_E_DRM_MUST_REGISTER","features":[79]},{"name":"NS_E_DRM_MUST_REVALIDATE","features":[79]},{"name":"NS_E_DRM_NEEDS_INDIVIDUALIZATION","features":[79]},{"name":"NS_E_DRM_NEEDS_UPGRADE_TEMPFILE","features":[79]},{"name":"NS_E_DRM_NEED_UPGRADE_MSSAP","features":[79]},{"name":"NS_E_DRM_NEED_UPGRADE_PD","features":[79]},{"name":"NS_E_DRM_NOT_CONFIGURED","features":[79]},{"name":"NS_E_DRM_NO_RIGHTS","features":[79]},{"name":"NS_E_DRM_NO_UPLINK_LICENSE","features":[79]},{"name":"NS_E_DRM_OPERATION_CANCELED","features":[79]},{"name":"NS_E_DRM_PARAMETERS_MISMATCHED","features":[79]},{"name":"NS_E_DRM_PASSWORD_TOO_LONG","features":[79]},{"name":"NS_E_DRM_PD_TOO_MANY_DEVICES","features":[79]},{"name":"NS_E_DRM_POLICY_DISABLE_ONLINE","features":[79]},{"name":"NS_E_DRM_POLICY_METERING_DISABLED","features":[79]},{"name":"NS_E_DRM_PROFILE_NOT_SET","features":[79]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE","features":[79]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION","features":[79]},{"name":"NS_E_DRM_QUERY_ERROR","features":[79]},{"name":"NS_E_DRM_REOPEN_CONTENT","features":[79]},{"name":"NS_E_DRM_REPORT_ERROR","features":[79]},{"name":"NS_E_DRM_RESTORE_FRAUD","features":[79]},{"name":"NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE","features":[79]},{"name":"NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED","features":[79]},{"name":"NS_E_DRM_RIV_TOO_SMALL","features":[79]},{"name":"NS_E_DRM_SDK_VERSIONMISMATCH","features":[79]},{"name":"NS_E_DRM_SDMI_NOMORECOPIES","features":[79]},{"name":"NS_E_DRM_SDMI_TRIGGER","features":[79]},{"name":"NS_E_DRM_SECURE_STORE_ERROR","features":[79]},{"name":"NS_E_DRM_SECURE_STORE_NOT_FOUND","features":[79]},{"name":"NS_E_DRM_SECURE_STORE_UNLOCK_ERROR","features":[79]},{"name":"NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID","features":[79]},{"name":"NS_E_DRM_SIGNATURE_FAILURE","features":[79]},{"name":"NS_E_DRM_SOURCEID_NOT_SUPPORTED","features":[79]},{"name":"NS_E_DRM_STORE_NEEDINDI","features":[79]},{"name":"NS_E_DRM_STORE_NOTALLOWED","features":[79]},{"name":"NS_E_DRM_STORE_NOTALLSTORED","features":[79]},{"name":"NS_E_DRM_STUBLIB_REQUIRED","features":[79]},{"name":"NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION","features":[79]},{"name":"NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION","features":[79]},{"name":"NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_INITIALIZE","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_LICENSE","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_PORT","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_SET_PARAMETER","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK","features":[79]},{"name":"NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY","features":[79]},{"name":"NS_E_DRM_UNSUPPORTED_ACTION","features":[79]},{"name":"NS_E_DRM_UNSUPPORTED_ALGORITHM","features":[79]},{"name":"NS_E_DRM_UNSUPPORTED_PROPERTY","features":[79]},{"name":"NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION","features":[79]},{"name":"NS_E_DUPLICATE_ADDRESS","features":[79]},{"name":"NS_E_DUPLICATE_DRMPROFILE","features":[79]},{"name":"NS_E_DUPLICATE_NAME","features":[79]},{"name":"NS_E_DUPLICATE_PACKET","features":[79]},{"name":"NS_E_DVD_AUTHORING_PROBLEM","features":[79]},{"name":"NS_E_DVD_CANNOT_COPY_PROTECTED","features":[79]},{"name":"NS_E_DVD_CANNOT_JUMP","features":[79]},{"name":"NS_E_DVD_COMPATIBLE_VIDEO_CARD","features":[79]},{"name":"NS_E_DVD_COPY_PROTECT","features":[79]},{"name":"NS_E_DVD_DEVICE_CONTENTION","features":[79]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED","features":[79]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS","features":[79]},{"name":"NS_E_DVD_DISC_DECODER_REGION","features":[79]},{"name":"NS_E_DVD_GRAPH_BUILDING","features":[79]},{"name":"NS_E_DVD_INVALID_DISC_REGION","features":[79]},{"name":"NS_E_DVD_INVALID_TITLE_CHAPTER","features":[79]},{"name":"NS_E_DVD_MACROVISION","features":[79]},{"name":"NS_E_DVD_NO_AUDIO_STREAM","features":[79]},{"name":"NS_E_DVD_NO_DECODER","features":[79]},{"name":"NS_E_DVD_NO_SUBPICTURE_STREAM","features":[79]},{"name":"NS_E_DVD_NO_VIDEO_MEMORY","features":[79]},{"name":"NS_E_DVD_NO_VIDEO_STREAM","features":[79]},{"name":"NS_E_DVD_PARENTAL","features":[79]},{"name":"NS_E_DVD_REQUIRED_PROPERTY_NOT_SET","features":[79]},{"name":"NS_E_DVD_SYSTEM_DECODER_REGION","features":[79]},{"name":"NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS","features":[79]},{"name":"NS_E_EMPTY_PLAYLIST","features":[79]},{"name":"NS_E_EMPTY_PROGRAM_NAME","features":[79]},{"name":"NS_E_ENACTPLAN_GIVEUP","features":[79]},{"name":"NS_E_END_OF_PLAYLIST","features":[79]},{"name":"NS_E_END_OF_TAPE","features":[79]},{"name":"NS_E_ERROR_FROM_PROXY","features":[79]},{"name":"NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT","features":[79]},{"name":"NS_E_EXPECT_MONO_WAV_INPUT","features":[79]},{"name":"NS_E_FAILED_DOWNLOAD_ABORT_BURN","features":[79]},{"name":"NS_E_FAIL_LAUNCH_ROXIO_PLUGIN","features":[79]},{"name":"NS_E_FEATURE_DISABLED_BY_GROUP_POLICY","features":[79]},{"name":"NS_E_FEATURE_DISABLED_IN_SKU","features":[79]},{"name":"NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER","features":[79]},{"name":"NS_E_FILE_ALLOCATION_FAILED","features":[79]},{"name":"NS_E_FILE_BANDWIDTH_LIMIT","features":[79]},{"name":"NS_E_FILE_EXISTS","features":[79]},{"name":"NS_E_FILE_FAILED_CHECKS","features":[79]},{"name":"NS_E_FILE_INIT_FAILED","features":[79]},{"name":"NS_E_FILE_NOT_FOUND","features":[79]},{"name":"NS_E_FILE_OPEN_FAILED","features":[79]},{"name":"NS_E_FILE_PLAY_FAILED","features":[79]},{"name":"NS_E_FILE_READ","features":[79]},{"name":"NS_E_FILE_WRITE","features":[79]},{"name":"NS_E_FIREWALL","features":[79]},{"name":"NS_E_FLASH_PLAYBACK_NOT_ALLOWED","features":[79]},{"name":"NS_E_GLITCH_MODE","features":[79]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGE","features":[79]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGESELECTED","features":[79]},{"name":"NS_E_HDS_KEY_MISMATCH","features":[79]},{"name":"NS_E_HEADER_MISMATCH","features":[79]},{"name":"NS_E_HTTP_DISABLED","features":[79]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE","features":[79]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED","features":[79]},{"name":"NS_E_ICMQUERYFORMAT","features":[79]},{"name":"NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[79]},{"name":"NS_E_IMAGE_DOWNLOAD_FAILED","features":[79]},{"name":"NS_E_IMAPI_LOSSOFSTREAMING","features":[79]},{"name":"NS_E_IMAPI_MEDIUM_INVALIDTYPE","features":[79]},{"name":"NS_E_INCOMPATIBLE_FORMAT","features":[79]},{"name":"NS_E_INCOMPATIBLE_PUSH_SERVER","features":[79]},{"name":"NS_E_INCOMPATIBLE_SERVER","features":[79]},{"name":"NS_E_INCOMPATIBLE_VERSION","features":[79]},{"name":"NS_E_INCOMPLETE_PLAYLIST","features":[79]},{"name":"NS_E_INCORRECTCLIPSETTINGS","features":[79]},{"name":"NS_E_INDUCED","features":[79]},{"name":"NS_E_INPUTSOURCE_PROBLEM","features":[79]},{"name":"NS_E_INPUT_DOESNOT_SUPPORT_SMPTE","features":[79]},{"name":"NS_E_INPUT_WAVFORMAT_MISMATCH","features":[79]},{"name":"NS_E_INSUFFICIENT_BANDWIDTH","features":[79]},{"name":"NS_E_INSUFFICIENT_DATA","features":[79]},{"name":"NS_E_INTERFACE_NOT_REGISTERED_IN_GIT","features":[79]},{"name":"NS_E_INTERLACEMODE_MISMATCH","features":[79]},{"name":"NS_E_INTERLACE_REQUIRE_SAMESIZE","features":[79]},{"name":"NS_E_INTERNAL","features":[79]},{"name":"NS_E_INTERNAL_SERVER_ERROR","features":[79]},{"name":"NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING","features":[79]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING","features":[79]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED","features":[79]},{"name":"NS_E_INVALIDINPUTFPS","features":[79]},{"name":"NS_E_INVALIDPACKETSIZE","features":[79]},{"name":"NS_E_INVALIDPROFILE","features":[79]},{"name":"NS_E_INVALID_ARCHIVE","features":[79]},{"name":"NS_E_INVALID_AUDIO_BUFFERMAX","features":[79]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE","features":[79]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE_2","features":[79]},{"name":"NS_E_INVALID_BLACKHOLE_ADDRESS","features":[79]},{"name":"NS_E_INVALID_CHANNEL","features":[79]},{"name":"NS_E_INVALID_CLIENT","features":[79]},{"name":"NS_E_INVALID_DATA","features":[79]},{"name":"NS_E_INVALID_DEVICE","features":[79]},{"name":"NS_E_INVALID_DRMV2CLT_STUBLIB","features":[79]},{"name":"NS_E_INVALID_EDL","features":[79]},{"name":"NS_E_INVALID_FILE_BITRATE","features":[79]},{"name":"NS_E_INVALID_FOLDDOWN_COEFFICIENTS","features":[79]},{"name":"NS_E_INVALID_INDEX","features":[79]},{"name":"NS_E_INVALID_INDEX2","features":[79]},{"name":"NS_E_INVALID_INPUT_AUDIENCE_INDEX","features":[79]},{"name":"NS_E_INVALID_INPUT_FORMAT","features":[79]},{"name":"NS_E_INVALID_INPUT_LANGUAGE","features":[79]},{"name":"NS_E_INVALID_INPUT_STREAM","features":[79]},{"name":"NS_E_INVALID_INTERLACEMODE","features":[79]},{"name":"NS_E_INVALID_INTERLACE_COMPAT","features":[79]},{"name":"NS_E_INVALID_KEY","features":[79]},{"name":"NS_E_INVALID_LOG_URL","features":[79]},{"name":"NS_E_INVALID_MTU_RANGE","features":[79]},{"name":"NS_E_INVALID_NAME","features":[79]},{"name":"NS_E_INVALID_NONSQUAREPIXEL_COMPAT","features":[79]},{"name":"NS_E_INVALID_NUM_PASSES","features":[79]},{"name":"NS_E_INVALID_OPERATING_SYSTEM_VERSION","features":[79]},{"name":"NS_E_INVALID_OUTPUT_FORMAT","features":[79]},{"name":"NS_E_INVALID_PIXEL_ASPECT_RATIO","features":[79]},{"name":"NS_E_INVALID_PLAY_STATISTICS","features":[79]},{"name":"NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION","features":[79]},{"name":"NS_E_INVALID_PORT","features":[79]},{"name":"NS_E_INVALID_PROFILE_CONTENTTYPE","features":[79]},{"name":"NS_E_INVALID_PUBLISHING_POINT_NAME","features":[79]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT","features":[79]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST","features":[79]},{"name":"NS_E_INVALID_PUSH_TEMPLATE","features":[79]},{"name":"NS_E_INVALID_QUERY_OPERATOR","features":[79]},{"name":"NS_E_INVALID_QUERY_PROPERTY","features":[79]},{"name":"NS_E_INVALID_REDIRECT","features":[79]},{"name":"NS_E_INVALID_REQUEST","features":[79]},{"name":"NS_E_INVALID_SAMPLING_RATE","features":[79]},{"name":"NS_E_INVALID_SCRIPT_BITRATE","features":[79]},{"name":"NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL","features":[79]},{"name":"NS_E_INVALID_STREAM","features":[79]},{"name":"NS_E_INVALID_TIMECODE","features":[79]},{"name":"NS_E_INVALID_TTL","features":[79]},{"name":"NS_E_INVALID_VBR_COMPAT","features":[79]},{"name":"NS_E_INVALID_VBR_WITH_UNCOMP","features":[79]},{"name":"NS_E_INVALID_VIDEO_BITRATE","features":[79]},{"name":"NS_E_INVALID_VIDEO_BUFFER","features":[79]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX","features":[79]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX_2","features":[79]},{"name":"NS_E_INVALID_VIDEO_CQUALITY","features":[79]},{"name":"NS_E_INVALID_VIDEO_FPS","features":[79]},{"name":"NS_E_INVALID_VIDEO_HEIGHT","features":[79]},{"name":"NS_E_INVALID_VIDEO_HEIGHT_ALIGN","features":[79]},{"name":"NS_E_INVALID_VIDEO_IQUALITY","features":[79]},{"name":"NS_E_INVALID_VIDEO_KEYFRAME","features":[79]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE","features":[79]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE_2","features":[79]},{"name":"NS_E_INVALID_VIDEO_WIDTH","features":[79]},{"name":"NS_E_INVALID_VIDEO_WIDTH_ALIGN","features":[79]},{"name":"NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING","features":[79]},{"name":"NS_E_LANGUAGE_MISMATCH","features":[79]},{"name":"NS_E_LATE_OPERATION","features":[79]},{"name":"NS_E_LATE_PACKET","features":[79]},{"name":"NS_E_LICENSE_EXPIRED","features":[79]},{"name":"NS_E_LICENSE_HEADER_MISSING_URL","features":[79]},{"name":"NS_E_LICENSE_INCORRECT_RIGHTS","features":[79]},{"name":"NS_E_LICENSE_OUTOFDATE","features":[79]},{"name":"NS_E_LICENSE_REQUIRED","features":[79]},{"name":"NS_E_LOGFILEPERIOD","features":[79]},{"name":"NS_E_LOG_FILE_SIZE","features":[79]},{"name":"NS_E_LOG_NEED_TO_BE_SKIPPED","features":[79]},{"name":"NS_E_MARKIN_UNSUPPORTED","features":[79]},{"name":"NS_E_MAX_BITRATE","features":[79]},{"name":"NS_E_MAX_CLIENTS","features":[79]},{"name":"NS_E_MAX_FILERATE","features":[79]},{"name":"NS_E_MAX_FUNNELS_ALERT","features":[79]},{"name":"NS_E_MAX_PACKET_SIZE_TOO_SMALL","features":[79]},{"name":"NS_E_MEDIACD_READ_ERROR","features":[79]},{"name":"NS_E_MEDIA_LIBRARY_FAILED","features":[79]},{"name":"NS_E_MEDIA_PARSER_INVALID_FORMAT","features":[79]},{"name":"NS_E_MEMSTORAGE_BAD_DATA","features":[79]},{"name":"NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE","features":[79]},{"name":"NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE","features":[79]},{"name":"NS_E_METADATA_CANNOT_SET_LOCALE","features":[79]},{"name":"NS_E_METADATA_FORMAT_NOT_SUPPORTED","features":[79]},{"name":"NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE","features":[79]},{"name":"NS_E_METADATA_INVALID_DOCUMENT_TYPE","features":[79]},{"name":"NS_E_METADATA_LANGUAGE_NOT_SUPORTED","features":[79]},{"name":"NS_E_METADATA_NOT_AVAILABLE","features":[79]},{"name":"NS_E_METADATA_NO_EDITING_CAPABILITY","features":[79]},{"name":"NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE","features":[79]},{"name":"NS_E_MISMATCHED_MEDIACONTENT","features":[79]},{"name":"NS_E_MISSING_AUDIENCE","features":[79]},{"name":"NS_E_MISSING_CHANNEL","features":[79]},{"name":"NS_E_MISSING_SOURCE_INDEX","features":[79]},{"name":"NS_E_MIXER_INVALID_CONTROL","features":[79]},{"name":"NS_E_MIXER_INVALID_LINE","features":[79]},{"name":"NS_E_MIXER_INVALID_VALUE","features":[79]},{"name":"NS_E_MIXER_NODRIVER","features":[79]},{"name":"NS_E_MIXER_UNKNOWN_MMRESULT","features":[79]},{"name":"NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED","features":[79]},{"name":"NS_E_MMSAUTOSERVER_CANTFINDWALKER","features":[79]},{"name":"NS_E_MMS_NOT_SUPPORTED","features":[79]},{"name":"NS_E_MONITOR_GIVEUP","features":[79]},{"name":"NS_E_MP3_FORMAT_NOT_FOUND","features":[79]},{"name":"NS_E_MPDB_GENERIC","features":[79]},{"name":"NS_E_MSAUDIO_NOT_INSTALLED","features":[79]},{"name":"NS_E_MSBD_NO_LONGER_SUPPORTED","features":[79]},{"name":"NS_E_MULTICAST_DISABLED","features":[79]},{"name":"NS_E_MULTICAST_PLUGIN_NOT_ENABLED","features":[79]},{"name":"NS_E_MULTIPLE_AUDIO_CODECS","features":[79]},{"name":"NS_E_MULTIPLE_AUDIO_FORMATS","features":[79]},{"name":"NS_E_MULTIPLE_FILE_BITRATES","features":[79]},{"name":"NS_E_MULTIPLE_SCRIPT_BITRATES","features":[79]},{"name":"NS_E_MULTIPLE_VBR_AUDIENCES","features":[79]},{"name":"NS_E_MULTIPLE_VIDEO_CODECS","features":[79]},{"name":"NS_E_MULTIPLE_VIDEO_SIZES","features":[79]},{"name":"NS_E_NAMESPACE_BAD_NAME","features":[79]},{"name":"NS_E_NAMESPACE_BUFFER_TOO_SMALL","features":[79]},{"name":"NS_E_NAMESPACE_CALLBACK_NOT_FOUND","features":[79]},{"name":"NS_E_NAMESPACE_DUPLICATE_CALLBACK","features":[79]},{"name":"NS_E_NAMESPACE_DUPLICATE_NAME","features":[79]},{"name":"NS_E_NAMESPACE_EMPTY_NAME","features":[79]},{"name":"NS_E_NAMESPACE_INDEX_TOO_LARGE","features":[79]},{"name":"NS_E_NAMESPACE_NAME_TOO_LONG","features":[79]},{"name":"NS_E_NAMESPACE_NODE_CONFLICT","features":[79]},{"name":"NS_E_NAMESPACE_NODE_NOT_FOUND","features":[79]},{"name":"NS_E_NAMESPACE_TOO_MANY_CALLBACKS","features":[79]},{"name":"NS_E_NAMESPACE_WRONG_PERSIST","features":[79]},{"name":"NS_E_NAMESPACE_WRONG_SECURITY","features":[79]},{"name":"NS_E_NAMESPACE_WRONG_TYPE","features":[79]},{"name":"NS_E_NEED_CORE_REFERENCE","features":[79]},{"name":"NS_E_NEED_TO_ASK_USER","features":[79]},{"name":"NS_E_NETWORK_BUSY","features":[79]},{"name":"NS_E_NETWORK_RESOURCE_FAILURE","features":[79]},{"name":"NS_E_NETWORK_SERVICE_FAILURE","features":[79]},{"name":"NS_E_NETWORK_SINK_WRITE","features":[79]},{"name":"NS_E_NET_READ","features":[79]},{"name":"NS_E_NET_WRITE","features":[79]},{"name":"NS_E_NOCONNECTION","features":[79]},{"name":"NS_E_NOFUNNEL","features":[79]},{"name":"NS_E_NOMATCHING_ELEMENT","features":[79]},{"name":"NS_E_NOMATCHING_MEDIASOURCE","features":[79]},{"name":"NS_E_NONSQUAREPIXELMODE_MISMATCH","features":[79]},{"name":"NS_E_NOREGISTEREDWALKER","features":[79]},{"name":"NS_E_NOSOURCEGROUPS","features":[79]},{"name":"NS_E_NOSTATSAVAILABLE","features":[79]},{"name":"NS_E_NOTARCHIVING","features":[79]},{"name":"NS_E_NOTHING_TO_DO","features":[79]},{"name":"NS_E_NOTITLES","features":[79]},{"name":"NS_E_NOT_CONFIGURED","features":[79]},{"name":"NS_E_NOT_CONNECTED","features":[79]},{"name":"NS_E_NOT_CONTENT_PARTNER_TRACK","features":[79]},{"name":"NS_E_NOT_LICENSED","features":[79]},{"name":"NS_E_NOT_REBUILDING","features":[79]},{"name":"NS_E_NO_ACTIVE_SOURCEGROUP","features":[79]},{"name":"NS_E_NO_AUDIENCES","features":[79]},{"name":"NS_E_NO_AUDIODATA","features":[79]},{"name":"NS_E_NO_AUDIO_COMPAT","features":[79]},{"name":"NS_E_NO_AUDIO_TIMECOMPRESSION","features":[79]},{"name":"NS_E_NO_CD","features":[79]},{"name":"NS_E_NO_CD_BURNER","features":[79]},{"name":"NS_E_NO_CHANNELS","features":[79]},{"name":"NS_E_NO_DATAVIEW_SUPPORT","features":[79]},{"name":"NS_E_NO_DEVICE","features":[79]},{"name":"NS_E_NO_ERROR_STRING_FOUND","features":[79]},{"name":"NS_E_NO_EXISTING_PACKETIZER","features":[79]},{"name":"NS_E_NO_FORMATS","features":[79]},{"name":"NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER","features":[79]},{"name":"NS_E_NO_LOCALPLAY","features":[79]},{"name":"NS_E_NO_MBR_WITH_TIMECODE","features":[79]},{"name":"NS_E_NO_MEDIAFORMAT_IN_SOURCE","features":[79]},{"name":"NS_E_NO_MEDIA_IN_AUDIENCE","features":[79]},{"name":"NS_E_NO_MEDIA_PROTOCOL","features":[79]},{"name":"NS_E_NO_MORE_SAMPLES","features":[79]},{"name":"NS_E_NO_MULTICAST","features":[79]},{"name":"NS_E_NO_MULTIPASS_FOR_LIVEDEVICE","features":[79]},{"name":"NS_E_NO_NEW_CONNECTIONS","features":[79]},{"name":"NS_E_NO_PAL_INVERSE_TELECINE","features":[79]},{"name":"NS_E_NO_PDA","features":[79]},{"name":"NS_E_NO_PROFILE_IN_SOURCEGROUP","features":[79]},{"name":"NS_E_NO_PROFILE_NAME","features":[79]},{"name":"NS_E_NO_REALTIME_PREPROCESS","features":[79]},{"name":"NS_E_NO_REALTIME_TIMECOMPRESSION","features":[79]},{"name":"NS_E_NO_REFERENCES","features":[79]},{"name":"NS_E_NO_REPEAT_PREPROCESS","features":[79]},{"name":"NS_E_NO_SCRIPT_ENGINE","features":[79]},{"name":"NS_E_NO_SCRIPT_STREAM","features":[79]},{"name":"NS_E_NO_SERVER_CONTACT","features":[79]},{"name":"NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS","features":[79]},{"name":"NS_E_NO_SPECIFIED_DEVICE","features":[79]},{"name":"NS_E_NO_STREAM","features":[79]},{"name":"NS_E_NO_TWOPASS_TIMECOMPRESSION","features":[79]},{"name":"NS_E_NO_VALID_OUTPUT_STREAM","features":[79]},{"name":"NS_E_NO_VALID_SOURCE_PLUGIN","features":[79]},{"name":"NS_E_NUM_LANGUAGE_MISMATCH","features":[79]},{"name":"NS_E_OFFLINE_MODE","features":[79]},{"name":"NS_E_OPEN_CONTAINING_FOLDER_FAILED","features":[79]},{"name":"NS_E_OPEN_FILE_LIMIT","features":[79]},{"name":"NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED","features":[79]},{"name":"NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED","features":[79]},{"name":"NS_E_PACKETSINK_UNKNOWN_FEC_STREAM","features":[79]},{"name":"NS_E_PAGING_ERROR","features":[79]},{"name":"NS_E_PARTIALLY_REBUILT_DISK","features":[79]},{"name":"NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP","features":[79]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_INTERNET","features":[79]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_LOCATION","features":[79]},{"name":"NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST","features":[79]},{"name":"NS_E_PDA_CANNOT_TRANSCODE","features":[79]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO","features":[79]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE","features":[79]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO","features":[79]},{"name":"NS_E_PDA_CEWMDM_DRM_ERROR","features":[79]},{"name":"NS_E_PDA_DELETE_FAILED","features":[79]},{"name":"NS_E_PDA_DEVICESUPPORTDISABLED","features":[79]},{"name":"NS_E_PDA_DEVICE_FULL","features":[79]},{"name":"NS_E_PDA_DEVICE_FULL_IN_SESSION","features":[79]},{"name":"NS_E_PDA_DEVICE_NOT_RESPONDING","features":[79]},{"name":"NS_E_PDA_ENCODER_NOT_RESPONDING","features":[79]},{"name":"NS_E_PDA_FAILED_TO_BURN","features":[79]},{"name":"NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE","features":[79]},{"name":"NS_E_PDA_FAILED_TO_RETRIEVE_FILE","features":[79]},{"name":"NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE","features":[79]},{"name":"NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO","features":[79]},{"name":"NS_E_PDA_FAIL_READ_WAVE_FILE","features":[79]},{"name":"NS_E_PDA_FAIL_SELECT_DEVICE","features":[79]},{"name":"NS_E_PDA_INITIALIZINGDEVICES","features":[79]},{"name":"NS_E_PDA_MANUALDEVICE","features":[79]},{"name":"NS_E_PDA_NO_LONGER_AVAILABLE","features":[79]},{"name":"NS_E_PDA_NO_TRANSCODE_OF_DRM","features":[79]},{"name":"NS_E_PDA_OBSOLETE_SP","features":[79]},{"name":"NS_E_PDA_PARTNERSHIPNOTEXIST","features":[79]},{"name":"NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG","features":[79]},{"name":"NS_E_PDA_SYNC_FAILED","features":[79]},{"name":"NS_E_PDA_SYNC_LOGIN_ERROR","features":[79]},{"name":"NS_E_PDA_SYNC_RUNNING","features":[79]},{"name":"NS_E_PDA_TITLE_COLLISION","features":[79]},{"name":"NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY","features":[79]},{"name":"NS_E_PDA_TOO_MANY_FILE_COLLISIONS","features":[79]},{"name":"NS_E_PDA_TRANSCODECACHEFULL","features":[79]},{"name":"NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND","features":[79]},{"name":"NS_E_PDA_TRANSCODE_NOT_PERMITTED","features":[79]},{"name":"NS_E_PDA_UNSPECIFIED_ERROR","features":[79]},{"name":"NS_E_PDA_UNSUPPORTED_FORMAT","features":[79]},{"name":"NS_E_PLAYLIST_CONTAINS_ERRORS","features":[79]},{"name":"NS_E_PLAYLIST_END_RECEDING","features":[79]},{"name":"NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING","features":[79]},{"name":"NS_E_PLAYLIST_ENTRY_HAS_CHANGED","features":[79]},{"name":"NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST","features":[79]},{"name":"NS_E_PLAYLIST_ENTRY_SEEK","features":[79]},{"name":"NS_E_PLAYLIST_PARSE_FAILURE","features":[79]},{"name":"NS_E_PLAYLIST_PLUGIN_NOT_FOUND","features":[79]},{"name":"NS_E_PLAYLIST_RECURSIVE_PLAYLISTS","features":[79]},{"name":"NS_E_PLAYLIST_SHUTDOWN","features":[79]},{"name":"NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS","features":[79]},{"name":"NS_E_PLAYLIST_UNSUPPORTED_ENTRY","features":[79]},{"name":"NS_E_PLUGIN_CLSID_INVALID","features":[79]},{"name":"NS_E_PLUGIN_ERROR_REPORTED","features":[79]},{"name":"NS_E_PLUGIN_NOTSHUTDOWN","features":[79]},{"name":"NS_E_PORT_IN_USE","features":[79]},{"name":"NS_E_PORT_IN_USE_HTTP","features":[79]},{"name":"NS_E_PROCESSINGSHOWSYNCWIZARD","features":[79]},{"name":"NS_E_PROFILE_MISMATCH","features":[79]},{"name":"NS_E_PROPERTY_NOT_FOUND","features":[79]},{"name":"NS_E_PROPERTY_NOT_SUPPORTED","features":[79]},{"name":"NS_E_PROPERTY_READ_ONLY","features":[79]},{"name":"NS_E_PROTECTED_CONTENT","features":[79]},{"name":"NS_E_PROTOCOL_MISMATCH","features":[79]},{"name":"NS_E_PROXY_ACCESSDENIED","features":[79]},{"name":"NS_E_PROXY_CONNECT_TIMEOUT","features":[79]},{"name":"NS_E_PROXY_DNS_TIMEOUT","features":[79]},{"name":"NS_E_PROXY_NOT_FOUND","features":[79]},{"name":"NS_E_PROXY_SOURCE_ACCESSDENIED","features":[79]},{"name":"NS_E_PROXY_TIMEOUT","features":[79]},{"name":"NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED","features":[79]},{"name":"NS_E_PUBLISHING_POINT_REMOVED","features":[79]},{"name":"NS_E_PUBLISHING_POINT_STOPPED","features":[79]},{"name":"NS_E_PUSH_CANNOTCONNECT","features":[79]},{"name":"NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME","features":[79]},{"name":"NS_E_REBOOT_RECOMMENDED","features":[79]},{"name":"NS_E_REBOOT_REQUIRED","features":[79]},{"name":"NS_E_RECORDQ_DISK_FULL","features":[79]},{"name":"NS_E_REDBOOK_ENABLED_WHILE_COPYING","features":[79]},{"name":"NS_E_REDIRECT","features":[79]},{"name":"NS_E_REDIRECT_TO_PROXY","features":[79]},{"name":"NS_E_REFUSED_BY_SERVER","features":[79]},{"name":"NS_E_REG_FLUSH_FAILURE","features":[79]},{"name":"NS_E_REMIRRORED_DISK","features":[79]},{"name":"NS_E_REQUIRE_STREAMING_CLIENT","features":[79]},{"name":"NS_E_RESET_SOCKET_CONNECTION","features":[79]},{"name":"NS_E_RESOURCE_GONE","features":[79]},{"name":"NS_E_SAME_AS_INPUT_COMBINATION","features":[79]},{"name":"NS_E_SCHEMA_CLASSIFY_FAILURE","features":[79]},{"name":"NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED","features":[79]},{"name":"NS_E_SDK_BUFFERTOOSMALL","features":[79]},{"name":"NS_E_SERVER_ACCESSDENIED","features":[79]},{"name":"NS_E_SERVER_DNS_TIMEOUT","features":[79]},{"name":"NS_E_SERVER_NOT_FOUND","features":[79]},{"name":"NS_E_SERVER_UNAVAILABLE","features":[79]},{"name":"NS_E_SESSION_INVALID","features":[79]},{"name":"NS_E_SESSION_NOT_FOUND","features":[79]},{"name":"NS_E_SETUP_BLOCKED","features":[79]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED","features":[79]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE","features":[79]},{"name":"NS_E_SETUP_IGNORABLE_FAILURE","features":[79]},{"name":"NS_E_SETUP_INCOMPLETE","features":[79]},{"name":"NS_E_SET_DISK_UID_FAILED","features":[79]},{"name":"NS_E_SHARING_STATE_OUT_OF_SYNC","features":[79]},{"name":"NS_E_SHARING_VIOLATION","features":[79]},{"name":"NS_E_SHUTDOWN","features":[79]},{"name":"NS_E_SLOW_READ_DIGITAL","features":[79]},{"name":"NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION","features":[79]},{"name":"NS_E_SMPTEMODE_MISMATCH","features":[79]},{"name":"NS_E_SOURCEGROUP_NOTPREPARED","features":[79]},{"name":"NS_E_SOURCE_CANNOT_LOOP","features":[79]},{"name":"NS_E_SOURCE_NOTSPECIFIED","features":[79]},{"name":"NS_E_SOURCE_PLUGIN_NOT_FOUND","features":[79]},{"name":"NS_E_SPEECHEDL_ON_NON_MIXEDMODE","features":[79]},{"name":"NS_E_STALE_PRESENTATION","features":[79]},{"name":"NS_E_STREAM_END","features":[79]},{"name":"NS_E_STRIDE_REFUSED","features":[79]},{"name":"NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT","features":[79]},{"name":"NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED","features":[79]},{"name":"NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED","features":[79]},{"name":"NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS","features":[79]},{"name":"NS_E_SYNCWIZ_DEVICE_FULL","features":[79]},{"name":"NS_E_TABLE_KEY_NOT_FOUND","features":[79]},{"name":"NS_E_TAMPERED_CONTENT","features":[79]},{"name":"NS_E_TCP_DISABLED","features":[79]},{"name":"NS_E_TIGER_FAIL","features":[79]},{"name":"NS_E_TIMECODE_REQUIRES_VIDEOSTREAM","features":[79]},{"name":"NS_E_TIMEOUT","features":[79]},{"name":"NS_E_TITLE_BITRATE","features":[79]},{"name":"NS_E_TITLE_SIZE_EXCEEDED","features":[79]},{"name":"NS_E_TOO_MANY_AUDIO","features":[79]},{"name":"NS_E_TOO_MANY_DEVICECONTROL","features":[79]},{"name":"NS_E_TOO_MANY_HOPS","features":[79]},{"name":"NS_E_TOO_MANY_MULTICAST_SINKS","features":[79]},{"name":"NS_E_TOO_MANY_SESS","features":[79]},{"name":"NS_E_TOO_MANY_TITLES","features":[79]},{"name":"NS_E_TOO_MANY_VIDEO","features":[79]},{"name":"NS_E_TOO_MUCH_DATA","features":[79]},{"name":"NS_E_TOO_MUCH_DATA_FROM_SERVER","features":[79]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE","features":[79]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE","features":[79]},{"name":"NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED","features":[79]},{"name":"NS_E_TRANSCODE_DELETECACHEERROR","features":[79]},{"name":"NS_E_TRANSFORM_PLUGIN_INVALID","features":[79]},{"name":"NS_E_TRANSFORM_PLUGIN_NOT_FOUND","features":[79]},{"name":"NS_E_UDP_DISABLED","features":[79]},{"name":"NS_E_UNABLE_TO_CREATE_RIP_LOCATION","features":[79]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[79]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[79]},{"name":"NS_E_UNCOMP_COMP_COMBINATION","features":[79]},{"name":"NS_E_UNEXPECTED_DISPLAY_SETTINGS","features":[79]},{"name":"NS_E_UNEXPECTED_MSAUDIO_ERROR","features":[79]},{"name":"NS_E_UNKNOWN_PROTOCOL","features":[79]},{"name":"NS_E_UNRECOGNIZED_STREAM_TYPE","features":[79]},{"name":"NS_E_UNSUPPORTED_ARCHIVEOPERATION","features":[79]},{"name":"NS_E_UNSUPPORTED_ARCHIVETYPE","features":[79]},{"name":"NS_E_UNSUPPORTED_ENCODER_DEVICE","features":[79]},{"name":"NS_E_UNSUPPORTED_LANGUAGE","features":[79]},{"name":"NS_E_UNSUPPORTED_LOAD_TYPE","features":[79]},{"name":"NS_E_UNSUPPORTED_PROPERTY","features":[79]},{"name":"NS_E_UNSUPPORTED_SOURCETYPE","features":[79]},{"name":"NS_E_URLLIST_INVALIDFORMAT","features":[79]},{"name":"NS_E_USER_STOP","features":[79]},{"name":"NS_E_USE_FILE_SOURCE","features":[79]},{"name":"NS_E_VBRMODE_MISMATCH","features":[79]},{"name":"NS_E_VIDCAPCREATEWINDOW","features":[79]},{"name":"NS_E_VIDCAPDRVINUSE","features":[79]},{"name":"NS_E_VIDCAPSTARTFAILED","features":[79]},{"name":"NS_E_VIDEODEVICE_BUSY","features":[79]},{"name":"NS_E_VIDEODEVICE_UNEXPECTED","features":[79]},{"name":"NS_E_VIDEODRIVER_UNSTABLE","features":[79]},{"name":"NS_E_VIDEO_BITRATE_STEPDOWN","features":[79]},{"name":"NS_E_VIDEO_CODEC_ERROR","features":[79]},{"name":"NS_E_VIDEO_CODEC_NOT_INSTALLED","features":[79]},{"name":"NS_E_VIDSOURCECOMPRESSION","features":[79]},{"name":"NS_E_VIDSOURCESIZE","features":[79]},{"name":"NS_E_WALKER_SERVER","features":[79]},{"name":"NS_E_WALKER_UNKNOWN","features":[79]},{"name":"NS_E_WALKER_USAGE","features":[79]},{"name":"NS_E_WAVE_OPEN","features":[79]},{"name":"NS_E_WINSOCK_ERROR_STRING","features":[79]},{"name":"NS_E_WIZARD_RUNNING","features":[79]},{"name":"NS_E_WMDM_REVOKED","features":[79]},{"name":"NS_E_WMDRM_DEPRECATED","features":[79]},{"name":"NS_E_WME_VERSION_MISMATCH","features":[79]},{"name":"NS_E_WMG_CANNOTQUEUE","features":[79]},{"name":"NS_E_WMG_COPP_SECURITY_INVALID","features":[79]},{"name":"NS_E_WMG_COPP_UNSUPPORTED","features":[79]},{"name":"NS_E_WMG_FILETRANSFERNOTALLOWED","features":[79]},{"name":"NS_E_WMG_INVALIDSTATE","features":[79]},{"name":"NS_E_WMG_INVALID_COPP_CERTIFICATE","features":[79]},{"name":"NS_E_WMG_LICENSE_TAMPERED","features":[79]},{"name":"NS_E_WMG_NOSDKINTERFACE","features":[79]},{"name":"NS_E_WMG_NOTALLOUTPUTSRENDERED","features":[79]},{"name":"NS_E_WMG_PLUGINUNAVAILABLE","features":[79]},{"name":"NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED","features":[79]},{"name":"NS_E_WMG_RATEUNAVAILABLE","features":[79]},{"name":"NS_E_WMG_SINKALREADYEXISTS","features":[79]},{"name":"NS_E_WMG_UNEXPECTEDPREROLLSTATUS","features":[79]},{"name":"NS_E_WMPBR_BACKUPCANCEL","features":[79]},{"name":"NS_E_WMPBR_BACKUPRESTOREFAILED","features":[79]},{"name":"NS_E_WMPBR_DRIVE_INVALID","features":[79]},{"name":"NS_E_WMPBR_ERRORWITHURL","features":[79]},{"name":"NS_E_WMPBR_NAMECOLLISION","features":[79]},{"name":"NS_E_WMPBR_NOLISTENER","features":[79]},{"name":"NS_E_WMPBR_RESTORECANCEL","features":[79]},{"name":"NS_E_WMPCORE_BUFFERTOOSMALL","features":[79]},{"name":"NS_E_WMPCORE_BUSY","features":[79]},{"name":"NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT","features":[79]},{"name":"NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED","features":[79]},{"name":"NS_E_WMPCORE_CODEC_NOT_FOUND","features":[79]},{"name":"NS_E_WMPCORE_CODEC_NOT_TRUSTED","features":[79]},{"name":"NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE","features":[79]},{"name":"NS_E_WMPCORE_DEVICE_DRIVERS_MISSING","features":[79]},{"name":"NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE","features":[79]},{"name":"NS_E_WMPCORE_ERRORSINKNOTREGISTERED","features":[79]},{"name":"NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST","features":[79]},{"name":"NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE","features":[79]},{"name":"NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST","features":[79]},{"name":"NS_E_WMPCORE_FILE_NOT_FOUND","features":[79]},{"name":"NS_E_WMPCORE_GRAPH_NOT_IN_LIST","features":[79]},{"name":"NS_E_WMPCORE_INVALIDPLAYLISTMODE","features":[79]},{"name":"NS_E_WMPCORE_INVALID_PLAYLIST_URL","features":[79]},{"name":"NS_E_WMPCORE_ITEMNOTINPLAYLIST","features":[79]},{"name":"NS_E_WMPCORE_LIST_ENTRY_NO_REF","features":[79]},{"name":"NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY","features":[79]},{"name":"NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE","features":[79]},{"name":"NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED","features":[79]},{"name":"NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST","features":[79]},{"name":"NS_E_WMPCORE_MEDIA_UNAVAILABLE","features":[79]},{"name":"NS_E_WMPCORE_MEDIA_URL_TOO_LONG","features":[79]},{"name":"NS_E_WMPCORE_MISMATCHED_RUNTIME","features":[79]},{"name":"NS_E_WMPCORE_MISNAMED_FILE","features":[79]},{"name":"NS_E_WMPCORE_NOBROWSER","features":[79]},{"name":"NS_E_WMPCORE_NOSOURCEURLSTRING","features":[79]},{"name":"NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST","features":[79]},{"name":"NS_E_WMPCORE_NO_REF_IN_ENTRY","features":[79]},{"name":"NS_E_WMPCORE_PLAYLISTEMPTY","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE","features":[79]},{"name":"NS_E_WMPCORE_PLAYLIST_STACK_EMPTY","features":[79]},{"name":"NS_E_WMPCORE_SOME_CODECS_MISSING","features":[79]},{"name":"NS_E_WMPCORE_TEMP_FILE_NOT_FOUND","features":[79]},{"name":"NS_E_WMPCORE_UNAVAILABLE","features":[79]},{"name":"NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL","features":[79]},{"name":"NS_E_WMPCORE_USER_CANCEL","features":[79]},{"name":"NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION","features":[79]},{"name":"NS_E_WMPCORE_WEBHELPFAILED","features":[79]},{"name":"NS_E_WMPCORE_WMX_ENTRYREF_NO_REF","features":[79]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY","features":[79]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL","features":[79]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY","features":[79]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL","features":[79]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY","features":[79]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL","features":[79]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY","features":[79]},{"name":"NS_E_WMPFLASH_CANT_FIND_COM_SERVER","features":[79]},{"name":"NS_E_WMPFLASH_INCOMPATIBLEVERSION","features":[79]},{"name":"NS_E_WMPIM_DIALUPFAILED","features":[79]},{"name":"NS_E_WMPIM_USERCANCELED","features":[79]},{"name":"NS_E_WMPIM_USEROFFLINE","features":[79]},{"name":"NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[79]},{"name":"NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE","features":[79]},{"name":"NS_E_WMPOCX_NOT_RUNNING_REMOTELY","features":[79]},{"name":"NS_E_WMPOCX_NO_ACTIVE_CORE","features":[79]},{"name":"NS_E_WMPOCX_NO_REMOTE_CORE","features":[79]},{"name":"NS_E_WMPOCX_NO_REMOTE_WINDOW","features":[79]},{"name":"NS_E_WMPOCX_PLAYER_NOT_DOCKED","features":[79]},{"name":"NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING","features":[79]},{"name":"NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN","features":[79]},{"name":"NS_E_WMPXML_ATTRIBUTENOTFOUND","features":[79]},{"name":"NS_E_WMPXML_EMPTYDOC","features":[79]},{"name":"NS_E_WMPXML_ENDOFDATA","features":[79]},{"name":"NS_E_WMPXML_NOERROR","features":[79]},{"name":"NS_E_WMPXML_PARSEERROR","features":[79]},{"name":"NS_E_WMPXML_PINOTFOUND","features":[79]},{"name":"NS_E_WMPZIP_CORRUPT","features":[79]},{"name":"NS_E_WMPZIP_FILENOTFOUND","features":[79]},{"name":"NS_E_WMPZIP_NOTAZIPFILE","features":[79]},{"name":"NS_E_WMP_ACCESS_DENIED","features":[79]},{"name":"NS_E_WMP_ADDTOLIBRARY_FAILED","features":[79]},{"name":"NS_E_WMP_ALREADY_IN_USE","features":[79]},{"name":"NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED","features":[79]},{"name":"NS_E_WMP_AUDIO_DEVICE_LOST","features":[79]},{"name":"NS_E_WMP_AUDIO_HW_PROBLEM","features":[79]},{"name":"NS_E_WMP_AUTOPLAY_INVALID_STATE","features":[79]},{"name":"NS_E_WMP_BAD_DRIVER","features":[79]},{"name":"NS_E_WMP_BMP_BITMAP_NOT_CREATED","features":[79]},{"name":"NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED","features":[79]},{"name":"NS_E_WMP_BMP_INVALID_BITMASK","features":[79]},{"name":"NS_E_WMP_BMP_INVALID_FORMAT","features":[79]},{"name":"NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED","features":[79]},{"name":"NS_E_WMP_BSTR_TOO_LONG","features":[79]},{"name":"NS_E_WMP_BURN_DISC_OVERFLOW","features":[79]},{"name":"NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE","features":[79]},{"name":"NS_E_WMP_CANNOT_FIND_FILE","features":[79]},{"name":"NS_E_WMP_CANNOT_FIND_FOLDER","features":[79]},{"name":"NS_E_WMP_CANT_PLAY_PROTECTED","features":[79]},{"name":"NS_E_WMP_CD_ANOTHER_USER","features":[79]},{"name":"NS_E_WMP_CD_STASH_NO_SPACE","features":[79]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_4CC","features":[79]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG","features":[79]},{"name":"NS_E_WMP_COMPONENT_REVOKED","features":[79]},{"name":"NS_E_WMP_CONNECT_TIMEOUT","features":[79]},{"name":"NS_E_WMP_CONVERT_FILE_CORRUPT","features":[79]},{"name":"NS_E_WMP_CONVERT_FILE_FAILED","features":[79]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL","features":[79]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL","features":[79]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL","features":[79]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL","features":[79]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER","features":[79]},{"name":"NS_E_WMP_CS_JPGPOSITIONIMAGE","features":[79]},{"name":"NS_E_WMP_CS_NOTEVENLYDIVISIBLE","features":[79]},{"name":"NS_E_WMP_DAI_SONGTOOSHORT","features":[79]},{"name":"NS_E_WMP_DRM_ACQUIRING_LICENSE","features":[79]},{"name":"NS_E_WMP_DRM_CANNOT_RESTORE","features":[79]},{"name":"NS_E_WMP_DRM_COMPONENT_FAILURE","features":[79]},{"name":"NS_E_WMP_DRM_CORRUPT_BACKUP","features":[79]},{"name":"NS_E_WMP_DRM_DRIVER_AUTH_FAILURE","features":[79]},{"name":"NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE","features":[79]},{"name":"NS_E_WMP_DRM_INDIV_FAILED","features":[79]},{"name":"NS_E_WMP_DRM_INVALID_SIG","features":[79]},{"name":"NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED","features":[79]},{"name":"NS_E_WMP_DRM_LICENSE_EXPIRED","features":[79]},{"name":"NS_E_WMP_DRM_LICENSE_NOSAP","features":[79]},{"name":"NS_E_WMP_DRM_LICENSE_NOTACQUIRED","features":[79]},{"name":"NS_E_WMP_DRM_LICENSE_NOTENABLED","features":[79]},{"name":"NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE","features":[79]},{"name":"NS_E_WMP_DRM_LICENSE_UNUSABLE","features":[79]},{"name":"NS_E_WMP_DRM_NEEDS_AUTHORIZATION","features":[79]},{"name":"NS_E_WMP_DRM_NEW_HARDWARE","features":[79]},{"name":"NS_E_WMP_DRM_NOT_ACQUIRING","features":[79]},{"name":"NS_E_WMP_DRM_NO_DEVICE_CERT","features":[79]},{"name":"NS_E_WMP_DRM_NO_RIGHTS","features":[79]},{"name":"NS_E_WMP_DRM_NO_SECURE_CLOCK","features":[79]},{"name":"NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[79]},{"name":"NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT","features":[79]},{"name":"NS_E_WMP_ERASE_FAILED","features":[79]},{"name":"NS_E_WMP_EXTERNAL_NOTREADY","features":[79]},{"name":"NS_E_WMP_FAILED_TO_OPEN_IMAGE","features":[79]},{"name":"NS_E_WMP_FAILED_TO_OPEN_WMD","features":[79]},{"name":"NS_E_WMP_FAILED_TO_RIP_TRACK","features":[79]},{"name":"NS_E_WMP_FAILED_TO_SAVE_FILE","features":[79]},{"name":"NS_E_WMP_FAILED_TO_SAVE_PLAYLIST","features":[79]},{"name":"NS_E_WMP_FILESCANALREADYSTARTED","features":[79]},{"name":"NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD","features":[79]},{"name":"NS_E_WMP_FILE_NO_DURATION","features":[79]},{"name":"NS_E_WMP_FILE_OPEN_FAILED","features":[79]},{"name":"NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD","features":[79]},{"name":"NS_E_WMP_FORMAT_FAILED","features":[79]},{"name":"NS_E_WMP_GIF_BAD_VERSION_NUMBER","features":[79]},{"name":"NS_E_WMP_GIF_INVALID_FORMAT","features":[79]},{"name":"NS_E_WMP_GIF_NO_IMAGE_IN_FILE","features":[79]},{"name":"NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE","features":[79]},{"name":"NS_E_WMP_GOFULLSCREEN_FAILED","features":[79]},{"name":"NS_E_WMP_HME_INVALIDOBJECTID","features":[79]},{"name":"NS_E_WMP_HME_NOTSEARCHABLEFORITEMS","features":[79]},{"name":"NS_E_WMP_HME_STALEREQUEST","features":[79]},{"name":"NS_E_WMP_HWND_NOTFOUND","features":[79]},{"name":"NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED","features":[79]},{"name":"NS_E_WMP_IMAGE_INVALID_FORMAT","features":[79]},{"name":"NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY","features":[79]},{"name":"NS_E_WMP_IMAPI2_ERASE_FAIL","features":[79]},{"name":"NS_E_WMP_IMAPI_DEVICE_BUSY","features":[79]},{"name":"NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE","features":[79]},{"name":"NS_E_WMP_IMAPI_DEVICE_NOTPRESENT","features":[79]},{"name":"NS_E_WMP_IMAPI_FAILURE","features":[79]},{"name":"NS_E_WMP_IMAPI_GENERIC","features":[79]},{"name":"NS_E_WMP_IMAPI_LOSS_OF_STREAMING","features":[79]},{"name":"NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE","features":[79]},{"name":"NS_E_WMP_INVALID_ASX","features":[79]},{"name":"NS_E_WMP_INVALID_KEY","features":[79]},{"name":"NS_E_WMP_INVALID_LIBRARY_ADD","features":[79]},{"name":"NS_E_WMP_INVALID_MAX_VAL","features":[79]},{"name":"NS_E_WMP_INVALID_MIN_VAL","features":[79]},{"name":"NS_E_WMP_INVALID_PROTOCOL","features":[79]},{"name":"NS_E_WMP_INVALID_REQUEST","features":[79]},{"name":"NS_E_WMP_INVALID_SKIN","features":[79]},{"name":"NS_E_WMP_JPGTRANSPARENCY","features":[79]},{"name":"NS_E_WMP_JPG_BAD_DCTSIZE","features":[79]},{"name":"NS_E_WMP_JPG_BAD_PRECISION","features":[79]},{"name":"NS_E_WMP_JPG_BAD_VERSION_NUMBER","features":[79]},{"name":"NS_E_WMP_JPG_CCIR601_NOTIMPL","features":[79]},{"name":"NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL","features":[79]},{"name":"NS_E_WMP_JPG_IMAGE_TOO_BIG","features":[79]},{"name":"NS_E_WMP_JPG_INVALID_FORMAT","features":[79]},{"name":"NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL","features":[79]},{"name":"NS_E_WMP_JPG_NO_IMAGE_IN_FILE","features":[79]},{"name":"NS_E_WMP_JPG_READ_ERROR","features":[79]},{"name":"NS_E_WMP_JPG_SOF_UNSUPPORTED","features":[79]},{"name":"NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE","features":[79]},{"name":"NS_E_WMP_JPG_UNKNOWN_MARKER","features":[79]},{"name":"NS_E_WMP_LICENSE_REQUIRED","features":[79]},{"name":"NS_E_WMP_LICENSE_RESTRICTS","features":[79]},{"name":"NS_E_WMP_LOCKEDINSKINMODE","features":[79]},{"name":"NS_E_WMP_LOGON_FAILURE","features":[79]},{"name":"NS_E_WMP_MF_CODE_EXPIRED","features":[79]},{"name":"NS_E_WMP_MLS_STALE_DATA","features":[79]},{"name":"NS_E_WMP_MMS_NOT_SUPPORTED","features":[79]},{"name":"NS_E_WMP_MSSAP_NOT_AVAILABLE","features":[79]},{"name":"NS_E_WMP_MULTICAST_DISABLED","features":[79]},{"name":"NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST","features":[79]},{"name":"NS_E_WMP_NEED_UPGRADE","features":[79]},{"name":"NS_E_WMP_NETWORK_ERROR","features":[79]},{"name":"NS_E_WMP_NETWORK_FIREWALL","features":[79]},{"name":"NS_E_WMP_NETWORK_RESOURCE_FAILURE","features":[79]},{"name":"NS_E_WMP_NONMEDIA_FILES","features":[79]},{"name":"NS_E_WMP_NO_DISK_SPACE","features":[79]},{"name":"NS_E_WMP_NO_PROTOCOLS_SELECTED","features":[79]},{"name":"NS_E_WMP_NO_REMOVABLE_MEDIA","features":[79]},{"name":"NS_E_WMP_OUTOFMEMORY","features":[79]},{"name":"NS_E_WMP_PATH_ALREADY_IN_LIBRARY","features":[79]},{"name":"NS_E_WMP_PLAYLIST_EXISTS","features":[79]},{"name":"NS_E_WMP_PLUGINDLL_NOTFOUND","features":[79]},{"name":"NS_E_WMP_PNG_INVALIDFORMAT","features":[79]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC","features":[79]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH","features":[79]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION","features":[79]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_FILTER","features":[79]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_INTERLACE","features":[79]},{"name":"NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED","features":[79]},{"name":"NS_E_WMP_PROTECTED_CONTENT","features":[79]},{"name":"NS_E_WMP_PROTOCOL_PROBLEM","features":[79]},{"name":"NS_E_WMP_PROXY_CONNECT_TIMEOUT","features":[79]},{"name":"NS_E_WMP_PROXY_NOT_FOUND","features":[79]},{"name":"NS_E_WMP_RBC_JPGMAPPINGIMAGE","features":[79]},{"name":"NS_E_WMP_RECORDING_NOT_ALLOWED","features":[79]},{"name":"NS_E_WMP_RIP_FAILED","features":[79]},{"name":"NS_E_WMP_SAVEAS_READONLY","features":[79]},{"name":"NS_E_WMP_SENDMAILFAILED","features":[79]},{"name":"NS_E_WMP_SERVER_DNS_TIMEOUT","features":[79]},{"name":"NS_E_WMP_SERVER_INACCESSIBLE","features":[79]},{"name":"NS_E_WMP_SERVER_NONEWCONNECTIONS","features":[79]},{"name":"NS_E_WMP_SERVER_NOT_RESPONDING","features":[79]},{"name":"NS_E_WMP_SERVER_SECURITY_ERROR","features":[79]},{"name":"NS_E_WMP_SERVER_UNAVAILABLE","features":[79]},{"name":"NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED","features":[79]},{"name":"NS_E_WMP_TAMPERED_CONTENT","features":[79]},{"name":"NS_E_WMP_UDRM_NOUSERLIST","features":[79]},{"name":"NS_E_WMP_UI_NOSKININZIP","features":[79]},{"name":"NS_E_WMP_UI_NOTATHEMEFILE","features":[79]},{"name":"NS_E_WMP_UI_OBJECTNOTFOUND","features":[79]},{"name":"NS_E_WMP_UI_PASSTHROUGH","features":[79]},{"name":"NS_E_WMP_UI_SECONDHANDLER","features":[79]},{"name":"NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED","features":[79]},{"name":"NS_E_WMP_UI_SUBELEMENTNOTFOUND","features":[79]},{"name":"NS_E_WMP_UI_VERSIONMISMATCH","features":[79]},{"name":"NS_E_WMP_UI_VERSIONPARSE","features":[79]},{"name":"NS_E_WMP_UI_VIEWIDNOTFOUND","features":[79]},{"name":"NS_E_WMP_UNKNOWN_ERROR","features":[79]},{"name":"NS_E_WMP_UNSUPPORTED_FORMAT","features":[79]},{"name":"NS_E_WMP_UPGRADE_APPLICATION","features":[79]},{"name":"NS_E_WMP_URLDOWNLOADFAILED","features":[79]},{"name":"NS_E_WMP_VERIFY_ONLINE","features":[79]},{"name":"NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED","features":[79]},{"name":"NS_E_WMP_WINDOWSAPIFAILURE","features":[79]},{"name":"NS_E_WMP_WMDM_BUSY","features":[79]},{"name":"NS_E_WMP_WMDM_FAILURE","features":[79]},{"name":"NS_E_WMP_WMDM_INCORRECT_RIGHTS","features":[79]},{"name":"NS_E_WMP_WMDM_INTERFACEDEAD","features":[79]},{"name":"NS_E_WMP_WMDM_LICENSE_EXPIRED","features":[79]},{"name":"NS_E_WMP_WMDM_LICENSE_NOTEXIST","features":[79]},{"name":"NS_E_WMP_WMDM_NORIGHTS","features":[79]},{"name":"NS_E_WMP_WMDM_NOTCERTIFIED","features":[79]},{"name":"NS_E_WMR_CANNOT_RENDER_BINARY_STREAM","features":[79]},{"name":"NS_E_WMR_NOCALLBACKAVAILABLE","features":[79]},{"name":"NS_E_WMR_NOSOURCEFILTER","features":[79]},{"name":"NS_E_WMR_PINNOTFOUND","features":[79]},{"name":"NS_E_WMR_PINTYPENOMATCH","features":[79]},{"name":"NS_E_WMR_SAMPLEPROPERTYNOTSET","features":[79]},{"name":"NS_E_WMR_UNSUPPORTEDSTREAM","features":[79]},{"name":"NS_E_WMR_WAITINGONFORMATSWITCH","features":[79]},{"name":"NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM","features":[79]},{"name":"NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS","features":[79]},{"name":"NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST","features":[79]},{"name":"NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE","features":[79]},{"name":"NS_E_WMX_INVALID_FORMAT_OVER_NESTING","features":[79]},{"name":"NS_E_WMX_ITEM_DOES_NOT_EXIST","features":[79]},{"name":"NS_E_WMX_ITEM_TYPE_ILLEGAL","features":[79]},{"name":"NS_E_WMX_ITEM_UNSETTABLE","features":[79]},{"name":"NS_E_WMX_PLAYLIST_EMPTY","features":[79]},{"name":"NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT","features":[79]},{"name":"NS_E_WONT_DO_DIGITAL","features":[79]},{"name":"NS_E_WRONG_OS_VERSION","features":[79]},{"name":"NS_E_WRONG_PUBLISHING_POINT_TYPE","features":[79]},{"name":"NS_E_WSX_INVALID_VERSION","features":[79]},{"name":"NS_I_CATATONIC_AUTO_UNFAIL","features":[79]},{"name":"NS_I_CATATONIC_FAILURE","features":[79]},{"name":"NS_I_CUB_RUNNING","features":[79]},{"name":"NS_I_CUB_START","features":[79]},{"name":"NS_I_CUB_UNFAIL_LINK","features":[79]},{"name":"NS_I_DISK_REBUILD_ABORTED","features":[79]},{"name":"NS_I_DISK_REBUILD_FINISHED","features":[79]},{"name":"NS_I_DISK_REBUILD_STARTED","features":[79]},{"name":"NS_I_DISK_START","features":[79]},{"name":"NS_I_DISK_STOP","features":[79]},{"name":"NS_I_EXISTING_PACKETIZER","features":[79]},{"name":"NS_I_KILL_CONNECTION","features":[79]},{"name":"NS_I_KILL_USERSESSION","features":[79]},{"name":"NS_I_LIMIT_BANDWIDTH","features":[79]},{"name":"NS_I_LIMIT_FUNNELS","features":[79]},{"name":"NS_I_LOGGING_FAILED","features":[79]},{"name":"NS_I_MANUAL_PROXY","features":[79]},{"name":"NS_I_NOLOG_STOP","features":[79]},{"name":"NS_I_PLAYLIST_CHANGE_RECEDING","features":[79]},{"name":"NS_I_REBUILD_DISK","features":[79]},{"name":"NS_I_RECONNECTED","features":[79]},{"name":"NS_I_RESTRIPE_CUB_OUT","features":[79]},{"name":"NS_I_RESTRIPE_DISK_OUT","features":[79]},{"name":"NS_I_RESTRIPE_DONE","features":[79]},{"name":"NS_I_RESTRIPE_START","features":[79]},{"name":"NS_I_START_DISK","features":[79]},{"name":"NS_I_STOP_CUB","features":[79]},{"name":"NS_I_STOP_DISK","features":[79]},{"name":"NS_I_TIGER_START","features":[79]},{"name":"NS_S_CALLABORTED","features":[79]},{"name":"NS_S_CALLPENDING","features":[79]},{"name":"NS_S_CHANGENOTICE","features":[79]},{"name":"NS_S_DEGRADING_QUALITY","features":[79]},{"name":"NS_S_DRM_ACQUIRE_CANCELLED","features":[79]},{"name":"NS_S_DRM_BURNABLE_TRACK","features":[79]},{"name":"NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION","features":[79]},{"name":"NS_S_DRM_INDIVIDUALIZED","features":[79]},{"name":"NS_S_DRM_LICENSE_ACQUIRED","features":[79]},{"name":"NS_S_DRM_MONITOR_CANCELLED","features":[79]},{"name":"NS_S_DRM_NEEDS_INDIVIDUALIZATION","features":[79]},{"name":"NS_S_EOSRECEDING","features":[79]},{"name":"NS_S_NAVIGATION_COMPLETE_WITH_ERRORS","features":[79]},{"name":"NS_S_NEED_TO_BUY_BURN_RIGHTS","features":[79]},{"name":"NS_S_OPERATION_PENDING","features":[79]},{"name":"NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS","features":[79]},{"name":"NS_S_REBOOT_RECOMMENDED","features":[79]},{"name":"NS_S_REBOOT_REQUIRED","features":[79]},{"name":"NS_S_REBUFFERING","features":[79]},{"name":"NS_S_STREAM_TRUNCATED","features":[79]},{"name":"NS_S_TRACK_ALREADY_DOWNLOADED","features":[79]},{"name":"NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE","features":[79]},{"name":"NS_S_TRANSCRYPTOR_EOF","features":[79]},{"name":"NS_S_WMG_ADVISE_DROP_FRAME","features":[79]},{"name":"NS_S_WMG_ADVISE_DROP_TO_KEYFRAME","features":[79]},{"name":"NS_S_WMG_FORCE_DROP_FRAME","features":[79]},{"name":"NS_S_WMPBR_PARTIALSUCCESS","features":[79]},{"name":"NS_S_WMPBR_SUCCESS","features":[79]},{"name":"NS_S_WMPCORE_COMMAND_NOT_AVAILABLE","features":[79]},{"name":"NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING","features":[79]},{"name":"NS_S_WMPCORE_MEDIA_VALIDATION_PENDING","features":[79]},{"name":"NS_S_WMPCORE_MORE_NODES_AVAIABLE","features":[79]},{"name":"NS_S_WMPCORE_PLAYLISTCLEARABORT","features":[79]},{"name":"NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT","features":[79]},{"name":"NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA","features":[79]},{"name":"NS_S_WMPCORE_PLAYLIST_CREATION_PENDING","features":[79]},{"name":"NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS","features":[79]},{"name":"NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED","features":[79]},{"name":"NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED","features":[79]},{"name":"NS_S_WMPEFFECT_OPAQUE","features":[79]},{"name":"NS_S_WMPEFFECT_TRANSPARENT","features":[79]},{"name":"NS_S_WMP_EXCEPTION","features":[79]},{"name":"NS_S_WMP_LOADED_BMP_IMAGE","features":[79]},{"name":"NS_S_WMP_LOADED_GIF_IMAGE","features":[79]},{"name":"NS_S_WMP_LOADED_JPG_IMAGE","features":[79]},{"name":"NS_S_WMP_LOADED_PNG_IMAGE","features":[79]},{"name":"NS_S_WMP_UI_VERSIONMISMATCH","features":[79]},{"name":"NS_S_WMR_ALREADYRENDERED","features":[79]},{"name":"NS_S_WMR_PINTYPEFULLMATCH","features":[79]},{"name":"NS_S_WMR_PINTYPEPARTIALMATCH","features":[79]},{"name":"NS_W_FILE_BANDWIDTH_LIMIT","features":[79]},{"name":"NS_W_SERVER_BANDWIDTH_LIMIT","features":[79]},{"name":"NS_W_UNKNOWN_EVENT","features":[79]},{"name":"OLIADPCMWAVEFORMAT","features":[80,79]},{"name":"OLICELPWAVEFORMAT","features":[80,79]},{"name":"OLIGSMWAVEFORMAT","features":[80,79]},{"name":"OLIOPRWAVEFORMAT","features":[80,79]},{"name":"OLISBCWAVEFORMAT","features":[80,79]},{"name":"OpenDriver","features":[1,79]},{"name":"PD_CAN_DRAW_DIB","features":[79]},{"name":"PD_CAN_STRETCHDIB","features":[79]},{"name":"PD_STRETCHDIB_1_1_OK","features":[79]},{"name":"PD_STRETCHDIB_1_2_OK","features":[79]},{"name":"PD_STRETCHDIB_1_N_OK","features":[79]},{"name":"ROCKWELL_WA1_MIXER","features":[79]},{"name":"ROCKWELL_WA1_MPU401_IN","features":[79]},{"name":"ROCKWELL_WA1_MPU401_OUT","features":[79]},{"name":"ROCKWELL_WA1_SYNTH","features":[79]},{"name":"ROCKWELL_WA1_WAVEIN","features":[79]},{"name":"ROCKWELL_WA1_WAVEOUT","features":[79]},{"name":"ROCKWELL_WA2_MIXER","features":[79]},{"name":"ROCKWELL_WA2_MPU401_IN","features":[79]},{"name":"ROCKWELL_WA2_MPU401_OUT","features":[79]},{"name":"ROCKWELL_WA2_SYNTH","features":[79]},{"name":"ROCKWELL_WA2_WAVEIN","features":[79]},{"name":"ROCKWELL_WA2_WAVEOUT","features":[79]},{"name":"SEARCH_ANY","features":[79]},{"name":"SEARCH_BACKWARD","features":[79]},{"name":"SEARCH_FORWARD","features":[79]},{"name":"SEARCH_KEY","features":[79]},{"name":"SEARCH_NEAREST","features":[79]},{"name":"SEEK_CUR","features":[79]},{"name":"SEEK_END","features":[79]},{"name":"SEEK_SET","features":[79]},{"name":"SIERRAADPCMWAVEFORMAT","features":[80,79]},{"name":"SONARCWAVEFORMAT","features":[80,79]},{"name":"SendDriverMessage","features":[1,79]},{"name":"TARGET_DEVICE_FRIENDLY_NAME","features":[79]},{"name":"TARGET_DEVICE_OPEN_EXCLUSIVELY","features":[79]},{"name":"TASKERR_NOTASKSUPPORT","features":[79]},{"name":"TASKERR_OUTOFMEMORY","features":[79]},{"name":"TDD_BEGINMINPERIOD","features":[79]},{"name":"TDD_ENDMINPERIOD","features":[79]},{"name":"TDD_GETDEVCAPS","features":[79]},{"name":"TDD_GETSYSTEMTIME","features":[79]},{"name":"TDD_KILLTIMEREVENT","features":[79]},{"name":"TDD_SETTIMEREVENT","features":[79]},{"name":"TIMEREVENT","features":[79]},{"name":"TRUESPEECHWAVEFORMAT","features":[80,79]},{"name":"VADMAD_Device_ID","features":[79]},{"name":"VCAPS_CAN_SCALE","features":[79]},{"name":"VCAPS_DST_CAN_CLIP","features":[79]},{"name":"VCAPS_OVERLAY","features":[79]},{"name":"VCAPS_SRC_CAN_CLIP","features":[79]},{"name":"VFWWDMExtensionProc","features":[1,79,40]},{"name":"VFW_HIDE_CAMERACONTROL_PAGE","features":[79]},{"name":"VFW_HIDE_SETTINGS_PAGE","features":[79]},{"name":"VFW_HIDE_VIDEOSRC_PAGE","features":[79]},{"name":"VFW_OEM_ADD_PAGE","features":[79]},{"name":"VFW_QUERY_DEV_CHANGED","features":[79]},{"name":"VFW_USE_DEVICE_HANDLE","features":[79]},{"name":"VFW_USE_STREAM_HANDLE","features":[79]},{"name":"VHDR_DONE","features":[79]},{"name":"VHDR_INQUEUE","features":[79]},{"name":"VHDR_KEYFRAME","features":[79]},{"name":"VHDR_PREPARED","features":[79]},{"name":"VHDR_VALID","features":[79]},{"name":"VIDCF_COMPRESSFRAMES","features":[79]},{"name":"VIDCF_CRUNCH","features":[79]},{"name":"VIDCF_DRAW","features":[79]},{"name":"VIDCF_FASTTEMPORALC","features":[79]},{"name":"VIDCF_FASTTEMPORALD","features":[79]},{"name":"VIDCF_QUALITY","features":[79]},{"name":"VIDCF_TEMPORAL","features":[79]},{"name":"VIDEOHDR","features":[79]},{"name":"VIDEO_CONFIGURE_CURRENT","features":[79]},{"name":"VIDEO_CONFIGURE_GET","features":[79]},{"name":"VIDEO_CONFIGURE_MAX","features":[79]},{"name":"VIDEO_CONFIGURE_MIN","features":[79]},{"name":"VIDEO_CONFIGURE_NOMINAL","features":[79]},{"name":"VIDEO_CONFIGURE_QUERY","features":[79]},{"name":"VIDEO_CONFIGURE_QUERYSIZE","features":[79]},{"name":"VIDEO_CONFIGURE_SET","features":[79]},{"name":"VIDEO_DLG_QUERY","features":[79]},{"name":"VIDEO_EXTERNALIN","features":[79]},{"name":"VIDEO_EXTERNALOUT","features":[79]},{"name":"VIDEO_IN","features":[79]},{"name":"VIDEO_OUT","features":[79]},{"name":"VP_COMMAND_GET","features":[79]},{"name":"VP_COMMAND_SET","features":[79]},{"name":"VP_CP_CMD_ACTIVATE","features":[79]},{"name":"VP_CP_CMD_CHANGE","features":[79]},{"name":"VP_CP_CMD_DEACTIVATE","features":[79]},{"name":"VP_CP_TYPE_APS_TRIGGER","features":[79]},{"name":"VP_CP_TYPE_MACROVISION","features":[79]},{"name":"VP_FLAGS_BRIGHTNESS","features":[79]},{"name":"VP_FLAGS_CONTRAST","features":[79]},{"name":"VP_FLAGS_COPYPROTECT","features":[79]},{"name":"VP_FLAGS_FLICKER","features":[79]},{"name":"VP_FLAGS_MAX_UNSCALED","features":[79]},{"name":"VP_FLAGS_OVERSCAN","features":[79]},{"name":"VP_FLAGS_POSITION","features":[79]},{"name":"VP_FLAGS_TV_MODE","features":[79]},{"name":"VP_FLAGS_TV_STANDARD","features":[79]},{"name":"VP_MODE_TV_PLAYBACK","features":[79]},{"name":"VP_MODE_WIN_GRAPHICS","features":[79]},{"name":"VP_TV_STANDARD_NTSC_433","features":[79]},{"name":"VP_TV_STANDARD_NTSC_M","features":[79]},{"name":"VP_TV_STANDARD_NTSC_M_J","features":[79]},{"name":"VP_TV_STANDARD_PAL_60","features":[79]},{"name":"VP_TV_STANDARD_PAL_B","features":[79]},{"name":"VP_TV_STANDARD_PAL_D","features":[79]},{"name":"VP_TV_STANDARD_PAL_G","features":[79]},{"name":"VP_TV_STANDARD_PAL_H","features":[79]},{"name":"VP_TV_STANDARD_PAL_I","features":[79]},{"name":"VP_TV_STANDARD_PAL_M","features":[79]},{"name":"VP_TV_STANDARD_PAL_N","features":[79]},{"name":"VP_TV_STANDARD_SECAM_B","features":[79]},{"name":"VP_TV_STANDARD_SECAM_D","features":[79]},{"name":"VP_TV_STANDARD_SECAM_G","features":[79]},{"name":"VP_TV_STANDARD_SECAM_H","features":[79]},{"name":"VP_TV_STANDARD_SECAM_K","features":[79]},{"name":"VP_TV_STANDARD_SECAM_K1","features":[79]},{"name":"VP_TV_STANDARD_SECAM_L","features":[79]},{"name":"VP_TV_STANDARD_SECAM_L1","features":[79]},{"name":"VP_TV_STANDARD_WIN_VGA","features":[79]},{"name":"VideoForWindowsVersion","features":[79]},{"name":"WAVEOPENDESC","features":[80,79]},{"name":"WAVE_FILTER_DEVELOPMENT","features":[79]},{"name":"WAVE_FILTER_ECHO","features":[79]},{"name":"WAVE_FILTER_UNKNOWN","features":[79]},{"name":"WAVE_FILTER_VOLUME","features":[79]},{"name":"WAVE_FORMAT_3COM_NBX","features":[79]},{"name":"WAVE_FORMAT_ADPCM","features":[79]},{"name":"WAVE_FORMAT_ALAC","features":[79]},{"name":"WAVE_FORMAT_ALAW","features":[79]},{"name":"WAVE_FORMAT_AMR_NB","features":[79]},{"name":"WAVE_FORMAT_AMR_WB","features":[79]},{"name":"WAVE_FORMAT_AMR_WP","features":[79]},{"name":"WAVE_FORMAT_ANTEX_ADPCME","features":[79]},{"name":"WAVE_FORMAT_APTX","features":[79]},{"name":"WAVE_FORMAT_AUDIOFILE_AF10","features":[79]},{"name":"WAVE_FORMAT_AUDIOFILE_AF36","features":[79]},{"name":"WAVE_FORMAT_BTV_DIGITAL","features":[79]},{"name":"WAVE_FORMAT_CANOPUS_ATRAC","features":[79]},{"name":"WAVE_FORMAT_CIRRUS","features":[79]},{"name":"WAVE_FORMAT_CODIAN","features":[79]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_AVQSBC","features":[79]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_G723_1","features":[79]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_SBC","features":[79]},{"name":"WAVE_FORMAT_CONGRUENCY","features":[79]},{"name":"WAVE_FORMAT_CONTROL_RES_CR10","features":[79]},{"name":"WAVE_FORMAT_CONTROL_RES_VQLPC","features":[79]},{"name":"WAVE_FORMAT_CONVEDIA_G729","features":[79]},{"name":"WAVE_FORMAT_CREATIVE_ADPCM","features":[79]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH10","features":[79]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH8","features":[79]},{"name":"WAVE_FORMAT_CS2","features":[79]},{"name":"WAVE_FORMAT_CS_IMAADPCM","features":[79]},{"name":"WAVE_FORMAT_CUSEEME","features":[79]},{"name":"WAVE_FORMAT_CU_CODEC","features":[79]},{"name":"WAVE_FORMAT_DEVELOPMENT","features":[79]},{"name":"WAVE_FORMAT_DF_G726","features":[79]},{"name":"WAVE_FORMAT_DF_GSM610","features":[79]},{"name":"WAVE_FORMAT_DIALOGIC_OKI_ADPCM","features":[79]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP54","features":[79]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP68","features":[79]},{"name":"WAVE_FORMAT_DIGIADPCM","features":[79]},{"name":"WAVE_FORMAT_DIGIFIX","features":[79]},{"name":"WAVE_FORMAT_DIGIREAL","features":[79]},{"name":"WAVE_FORMAT_DIGISTD","features":[79]},{"name":"WAVE_FORMAT_DIGITAL_G723","features":[79]},{"name":"WAVE_FORMAT_DIVIO_G726","features":[79]},{"name":"WAVE_FORMAT_DIVIO_MPEG4_AAC","features":[79]},{"name":"WAVE_FORMAT_DOLBY_AC2","features":[79]},{"name":"WAVE_FORMAT_DOLBY_AC3_SPDIF","features":[79]},{"name":"WAVE_FORMAT_DOLBY_AC4","features":[79]},{"name":"WAVE_FORMAT_DRM","features":[79]},{"name":"WAVE_FORMAT_DSAT","features":[79]},{"name":"WAVE_FORMAT_DSAT_DISPLAY","features":[79]},{"name":"WAVE_FORMAT_DSPGROUP_TRUESPEECH","features":[79]},{"name":"WAVE_FORMAT_DTS","features":[79]},{"name":"WAVE_FORMAT_DTS2","features":[79]},{"name":"WAVE_FORMAT_DTS_DS","features":[79]},{"name":"WAVE_FORMAT_DVI_ADPCM","features":[79]},{"name":"WAVE_FORMAT_DVM","features":[79]},{"name":"WAVE_FORMAT_ECHOSC1","features":[79]},{"name":"WAVE_FORMAT_ECHOSC3","features":[79]},{"name":"WAVE_FORMAT_ENCORE_G726","features":[79]},{"name":"WAVE_FORMAT_ESPCM","features":[79]},{"name":"WAVE_FORMAT_ESST_AC3","features":[79]},{"name":"WAVE_FORMAT_FAAD_AAC","features":[79]},{"name":"WAVE_FORMAT_FLAC","features":[79]},{"name":"WAVE_FORMAT_FM_TOWNS_SND","features":[79]},{"name":"WAVE_FORMAT_FRACE_TELECOM_G729","features":[79]},{"name":"WAVE_FORMAT_FRAUNHOFER_IIS_MPEG2_AAC","features":[79]},{"name":"WAVE_FORMAT_G721_ADPCM","features":[79]},{"name":"WAVE_FORMAT_G722_ADPCM","features":[79]},{"name":"WAVE_FORMAT_G723_ADPCM","features":[79]},{"name":"WAVE_FORMAT_G726ADPCM","features":[79]},{"name":"WAVE_FORMAT_G726_ADPCM","features":[79]},{"name":"WAVE_FORMAT_G728_CELP","features":[79]},{"name":"WAVE_FORMAT_G729A","features":[79]},{"name":"WAVE_FORMAT_GENERIC_PASSTHRU","features":[79]},{"name":"WAVE_FORMAT_GLOBAL_IP_ILBC","features":[79]},{"name":"WAVE_FORMAT_GSM610","features":[79]},{"name":"WAVE_FORMAT_GSM_610","features":[79]},{"name":"WAVE_FORMAT_GSM_620","features":[79]},{"name":"WAVE_FORMAT_GSM_660","features":[79]},{"name":"WAVE_FORMAT_GSM_690","features":[79]},{"name":"WAVE_FORMAT_GSM_ADAPTIVE_MULTIRATE_WB","features":[79]},{"name":"WAVE_FORMAT_GSM_AMR_CBR","features":[79]},{"name":"WAVE_FORMAT_GSM_AMR_VBR_SID","features":[79]},{"name":"WAVE_FORMAT_HP_DYN_VOICE","features":[79]},{"name":"WAVE_FORMAT_IBM_CVSD","features":[79]},{"name":"WAVE_FORMAT_IEEE_FLOAT","features":[79]},{"name":"WAVE_FORMAT_ILINK_VC","features":[79]},{"name":"WAVE_FORMAT_IMA_ADPCM","features":[79]},{"name":"WAVE_FORMAT_INDEO_AUDIO","features":[79]},{"name":"WAVE_FORMAT_INFOCOM_ITS_G721_ADPCM","features":[79]},{"name":"WAVE_FORMAT_INGENIENT_G726","features":[79]},{"name":"WAVE_FORMAT_INNINGS_TELECOM_ADPCM","features":[79]},{"name":"WAVE_FORMAT_INTEL_G723_1","features":[79]},{"name":"WAVE_FORMAT_INTEL_G729","features":[79]},{"name":"WAVE_FORMAT_INTEL_MUSIC_CODER","features":[79]},{"name":"WAVE_FORMAT_IPI_HSX","features":[79]},{"name":"WAVE_FORMAT_IPI_RPELP","features":[79]},{"name":"WAVE_FORMAT_IRAT","features":[79]},{"name":"WAVE_FORMAT_ISIAUDIO","features":[79]},{"name":"WAVE_FORMAT_ISIAUDIO_2","features":[79]},{"name":"WAVE_FORMAT_KNOWLEDGE_ADVENTURE_ADPCM","features":[79]},{"name":"WAVE_FORMAT_LEAD_SPEECH","features":[79]},{"name":"WAVE_FORMAT_LEAD_VORBIS","features":[79]},{"name":"WAVE_FORMAT_LH_CODEC","features":[79]},{"name":"WAVE_FORMAT_LH_CODEC_CELP","features":[79]},{"name":"WAVE_FORMAT_LH_CODEC_SBC12","features":[79]},{"name":"WAVE_FORMAT_LH_CODEC_SBC16","features":[79]},{"name":"WAVE_FORMAT_LH_CODEC_SBC8","features":[79]},{"name":"WAVE_FORMAT_LIGHTWAVE_LOSSLESS","features":[79]},{"name":"WAVE_FORMAT_LRC","features":[79]},{"name":"WAVE_FORMAT_LUCENT_G723","features":[79]},{"name":"WAVE_FORMAT_LUCENT_SX5363S","features":[79]},{"name":"WAVE_FORMAT_LUCENT_SX8300P","features":[79]},{"name":"WAVE_FORMAT_MAKEAVIS","features":[79]},{"name":"WAVE_FORMAT_MALDEN_PHONYTALK","features":[79]},{"name":"WAVE_FORMAT_MEDIASONIC_G723","features":[79]},{"name":"WAVE_FORMAT_MEDIASPACE_ADPCM","features":[79]},{"name":"WAVE_FORMAT_MEDIAVISION_ADPCM","features":[79]},{"name":"WAVE_FORMAT_MICRONAS","features":[79]},{"name":"WAVE_FORMAT_MICRONAS_CELP833","features":[79]},{"name":"WAVE_FORMAT_MPEG","features":[79]},{"name":"WAVE_FORMAT_MPEG4_AAC","features":[79]},{"name":"WAVE_FORMAT_MPEGLAYER3","features":[79]},{"name":"WAVE_FORMAT_MPEG_ADTS_AAC","features":[79]},{"name":"WAVE_FORMAT_MPEG_HEAAC","features":[79]},{"name":"WAVE_FORMAT_MPEG_LOAS","features":[79]},{"name":"WAVE_FORMAT_MPEG_RAW_AAC","features":[79]},{"name":"WAVE_FORMAT_MSAUDIO1","features":[79]},{"name":"WAVE_FORMAT_MSG723","features":[79]},{"name":"WAVE_FORMAT_MSNAUDIO","features":[79]},{"name":"WAVE_FORMAT_MSRT24","features":[79]},{"name":"WAVE_FORMAT_MULAW","features":[79]},{"name":"WAVE_FORMAT_MULTITUDE_FT_SX20","features":[79]},{"name":"WAVE_FORMAT_MVI_MVI2","features":[79]},{"name":"WAVE_FORMAT_NEC_AAC","features":[79]},{"name":"WAVE_FORMAT_NICE_ACA","features":[79]},{"name":"WAVE_FORMAT_NICE_ADPCM","features":[79]},{"name":"WAVE_FORMAT_NICE_G728","features":[79]},{"name":"WAVE_FORMAT_NMS_VBXADPCM","features":[79]},{"name":"WAVE_FORMAT_NOKIA_ADAPTIVE_MULTIRATE","features":[79]},{"name":"WAVE_FORMAT_NOKIA_MPEG_ADTS_AAC","features":[79]},{"name":"WAVE_FORMAT_NOKIA_MPEG_RAW_AAC","features":[79]},{"name":"WAVE_FORMAT_NORCOM_VOICE_SYSTEMS_ADPCM","features":[79]},{"name":"WAVE_FORMAT_NORRIS","features":[79]},{"name":"WAVE_FORMAT_NTCSOFT_ALF2CM_ACM","features":[79]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1","features":[79]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1_PLUS","features":[79]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2","features":[79]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2_PLUS","features":[79]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3","features":[79]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3_PLUS","features":[79]},{"name":"WAVE_FORMAT_OKI_ADPCM","features":[79]},{"name":"WAVE_FORMAT_OLIADPCM","features":[79]},{"name":"WAVE_FORMAT_OLICELP","features":[79]},{"name":"WAVE_FORMAT_OLIGSM","features":[79]},{"name":"WAVE_FORMAT_OLIOPR","features":[79]},{"name":"WAVE_FORMAT_OLISBC","features":[79]},{"name":"WAVE_FORMAT_ON2_VP6_AUDIO","features":[79]},{"name":"WAVE_FORMAT_ON2_VP7_AUDIO","features":[79]},{"name":"WAVE_FORMAT_ONLIVE","features":[79]},{"name":"WAVE_FORMAT_OPUS","features":[79]},{"name":"WAVE_FORMAT_PAC","features":[79]},{"name":"WAVE_FORMAT_PACKED","features":[79]},{"name":"WAVE_FORMAT_PCM_S","features":[79]},{"name":"WAVE_FORMAT_PHILIPS_CELP","features":[79]},{"name":"WAVE_FORMAT_PHILIPS_GRUNDIG","features":[79]},{"name":"WAVE_FORMAT_PHILIPS_LPCBB","features":[79]},{"name":"WAVE_FORMAT_POLYCOM_G722","features":[79]},{"name":"WAVE_FORMAT_POLYCOM_G728","features":[79]},{"name":"WAVE_FORMAT_POLYCOM_G729_A","features":[79]},{"name":"WAVE_FORMAT_POLYCOM_SIREN","features":[79]},{"name":"WAVE_FORMAT_PROSODY_1612","features":[79]},{"name":"WAVE_FORMAT_PROSODY_8KBPS","features":[79]},{"name":"WAVE_FORMAT_QDESIGN_MUSIC","features":[79]},{"name":"WAVE_FORMAT_QUALCOMM_HALFRATE","features":[79]},{"name":"WAVE_FORMAT_QUALCOMM_PUREVOICE","features":[79]},{"name":"WAVE_FORMAT_QUARTERDECK","features":[79]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G720_A","features":[79]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G723_1","features":[79]},{"name":"WAVE_FORMAT_RACAL_RECORDER_GSM","features":[79]},{"name":"WAVE_FORMAT_RACAL_RECORDER_TETRA_ACELP","features":[79]},{"name":"WAVE_FORMAT_RADIOTIME_TIME_SHIFT_RADIO","features":[79]},{"name":"WAVE_FORMAT_RAW_AAC1","features":[79]},{"name":"WAVE_FORMAT_RAW_SPORT","features":[79]},{"name":"WAVE_FORMAT_RHETOREX_ADPCM","features":[79]},{"name":"WAVE_FORMAT_ROCKWELL_ADPCM","features":[79]},{"name":"WAVE_FORMAT_ROCKWELL_DIGITALK","features":[79]},{"name":"WAVE_FORMAT_RT24","features":[79]},{"name":"WAVE_FORMAT_SANYO_LD_ADPCM","features":[79]},{"name":"WAVE_FORMAT_SBC24","features":[79]},{"name":"WAVE_FORMAT_SHARP_G726","features":[79]},{"name":"WAVE_FORMAT_SIERRA_ADPCM","features":[79]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP4800","features":[79]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP8V3","features":[79]},{"name":"WAVE_FORMAT_SIPROLAB_ACEPLNET","features":[79]},{"name":"WAVE_FORMAT_SIPROLAB_G729","features":[79]},{"name":"WAVE_FORMAT_SIPROLAB_G729A","features":[79]},{"name":"WAVE_FORMAT_SIPROLAB_KELVIN","features":[79]},{"name":"WAVE_FORMAT_SOFTSOUND","features":[79]},{"name":"WAVE_FORMAT_SONARC","features":[79]},{"name":"WAVE_FORMAT_SONICFOUNDRY_LOSSLESS","features":[79]},{"name":"WAVE_FORMAT_SONY_ATRAC3","features":[79]},{"name":"WAVE_FORMAT_SONY_SCX","features":[79]},{"name":"WAVE_FORMAT_SONY_SCY","features":[79]},{"name":"WAVE_FORMAT_SONY_SPC","features":[79]},{"name":"WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS","features":[79]},{"name":"WAVE_FORMAT_SPEEX_VOICE","features":[79]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC008","features":[79]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP54","features":[79]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP68","features":[79]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_G726L","features":[79]},{"name":"WAVE_FORMAT_SYMBOL_G729_A","features":[79]},{"name":"WAVE_FORMAT_TELUM_AUDIO","features":[79]},{"name":"WAVE_FORMAT_TELUM_IA_AUDIO","features":[79]},{"name":"WAVE_FORMAT_TPC","features":[79]},{"name":"WAVE_FORMAT_TUBGSM","features":[79]},{"name":"WAVE_FORMAT_UHER_ADPCM","features":[79]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO","features":[79]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO_1","features":[79]},{"name":"WAVE_FORMAT_UNISYS_NAP_16K","features":[79]},{"name":"WAVE_FORMAT_UNISYS_NAP_ADPCM","features":[79]},{"name":"WAVE_FORMAT_UNISYS_NAP_ALAW","features":[79]},{"name":"WAVE_FORMAT_UNISYS_NAP_ULAW","features":[79]},{"name":"WAVE_FORMAT_UNKNOWN","features":[79]},{"name":"WAVE_FORMAT_VIANIX_MASC","features":[79]},{"name":"WAVE_FORMAT_VIVO_G723","features":[79]},{"name":"WAVE_FORMAT_VIVO_SIREN","features":[79]},{"name":"WAVE_FORMAT_VME_VMPCM","features":[79]},{"name":"WAVE_FORMAT_VOCORD_G721","features":[79]},{"name":"WAVE_FORMAT_VOCORD_G722_1","features":[79]},{"name":"WAVE_FORMAT_VOCORD_G723_1","features":[79]},{"name":"WAVE_FORMAT_VOCORD_G726","features":[79]},{"name":"WAVE_FORMAT_VOCORD_G728","features":[79]},{"name":"WAVE_FORMAT_VOCORD_G729","features":[79]},{"name":"WAVE_FORMAT_VOCORD_G729_A","features":[79]},{"name":"WAVE_FORMAT_VOCORD_LBC","features":[79]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_ADTS_AAC","features":[79]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_RAW_AAC","features":[79]},{"name":"WAVE_FORMAT_VOICEAGE_AMR","features":[79]},{"name":"WAVE_FORMAT_VOICEAGE_AMR_WB","features":[79]},{"name":"WAVE_FORMAT_VOXWARE","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_AC10","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_AC16","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_AC20","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_AC8","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_BYTE_ALIGNED","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_RT24","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_RT24_SPEECH","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_RT29","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_RT29HW","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_SC3","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_SC3_1","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_TQ40","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_TQ60","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_VR12","features":[79]},{"name":"WAVE_FORMAT_VOXWARE_VR18","features":[79]},{"name":"WAVE_FORMAT_VSELP","features":[79]},{"name":"WAVE_FORMAT_WAVPACK_AUDIO","features":[79]},{"name":"WAVE_FORMAT_WM9_SPECTRUM_ANALYZER","features":[79]},{"name":"WAVE_FORMAT_WMASPDIF","features":[79]},{"name":"WAVE_FORMAT_WMAUDIO2","features":[79]},{"name":"WAVE_FORMAT_WMAUDIO3","features":[79]},{"name":"WAVE_FORMAT_WMAUDIO_LOSSLESS","features":[79]},{"name":"WAVE_FORMAT_WMAVOICE10","features":[79]},{"name":"WAVE_FORMAT_WMAVOICE9","features":[79]},{"name":"WAVE_FORMAT_WMF_SPECTRUM_ANAYZER","features":[79]},{"name":"WAVE_FORMAT_XEBEC","features":[79]},{"name":"WAVE_FORMAT_YAMAHA_ADPCM","features":[79]},{"name":"WAVE_FORMAT_ZOLL_ASAO","features":[79]},{"name":"WAVE_FORMAT_ZYXEL_ADPCM","features":[79]},{"name":"WAVE_MAPPER_S","features":[79]},{"name":"WIDM_ADDBUFFER","features":[79]},{"name":"WIDM_CLOSE","features":[79]},{"name":"WIDM_GETDEVCAPS","features":[79]},{"name":"WIDM_GETNUMDEVS","features":[79]},{"name":"WIDM_GETPOS","features":[79]},{"name":"WIDM_INIT","features":[79]},{"name":"WIDM_INIT_EX","features":[79]},{"name":"WIDM_OPEN","features":[79]},{"name":"WIDM_PREFERRED","features":[79]},{"name":"WIDM_PREPARE","features":[79]},{"name":"WIDM_RESET","features":[79]},{"name":"WIDM_START","features":[79]},{"name":"WIDM_STOP","features":[79]},{"name":"WIDM_UNPREPARE","features":[79]},{"name":"WMAUDIO2WAVEFORMAT","features":[80,79]},{"name":"WMAUDIO2_BITS_PER_SAMPLE","features":[79]},{"name":"WMAUDIO2_MAX_CHANNELS","features":[79]},{"name":"WMAUDIO3WAVEFORMAT","features":[80,79]},{"name":"WMAUDIO_BITS_PER_SAMPLE","features":[79]},{"name":"WMAUDIO_MAX_CHANNELS","features":[79]},{"name":"WM_CAP_ABORT","features":[79]},{"name":"WM_CAP_DLG_VIDEOCOMPRESSION","features":[79]},{"name":"WM_CAP_DLG_VIDEODISPLAY","features":[79]},{"name":"WM_CAP_DLG_VIDEOFORMAT","features":[79]},{"name":"WM_CAP_DLG_VIDEOSOURCE","features":[79]},{"name":"WM_CAP_DRIVER_CONNECT","features":[79]},{"name":"WM_CAP_DRIVER_DISCONNECT","features":[79]},{"name":"WM_CAP_DRIVER_GET_CAPS","features":[79]},{"name":"WM_CAP_DRIVER_GET_NAME","features":[79]},{"name":"WM_CAP_DRIVER_GET_NAMEA","features":[79]},{"name":"WM_CAP_DRIVER_GET_NAMEW","features":[79]},{"name":"WM_CAP_DRIVER_GET_VERSION","features":[79]},{"name":"WM_CAP_DRIVER_GET_VERSIONA","features":[79]},{"name":"WM_CAP_DRIVER_GET_VERSIONW","features":[79]},{"name":"WM_CAP_EDIT_COPY","features":[79]},{"name":"WM_CAP_END","features":[79]},{"name":"WM_CAP_FILE_ALLOCATE","features":[79]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILE","features":[79]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEA","features":[79]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEW","features":[79]},{"name":"WM_CAP_FILE_SAVEAS","features":[79]},{"name":"WM_CAP_FILE_SAVEASA","features":[79]},{"name":"WM_CAP_FILE_SAVEASW","features":[79]},{"name":"WM_CAP_FILE_SAVEDIB","features":[79]},{"name":"WM_CAP_FILE_SAVEDIBA","features":[79]},{"name":"WM_CAP_FILE_SAVEDIBW","features":[79]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILE","features":[79]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEA","features":[79]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEW","features":[79]},{"name":"WM_CAP_FILE_SET_INFOCHUNK","features":[79]},{"name":"WM_CAP_GET_AUDIOFORMAT","features":[79]},{"name":"WM_CAP_GET_CAPSTREAMPTR","features":[79]},{"name":"WM_CAP_GET_MCI_DEVICE","features":[79]},{"name":"WM_CAP_GET_MCI_DEVICEA","features":[79]},{"name":"WM_CAP_GET_MCI_DEVICEW","features":[79]},{"name":"WM_CAP_GET_SEQUENCE_SETUP","features":[79]},{"name":"WM_CAP_GET_STATUS","features":[79]},{"name":"WM_CAP_GET_USER_DATA","features":[79]},{"name":"WM_CAP_GET_VIDEOFORMAT","features":[79]},{"name":"WM_CAP_GRAB_FRAME","features":[79]},{"name":"WM_CAP_GRAB_FRAME_NOSTOP","features":[79]},{"name":"WM_CAP_PAL_AUTOCREATE","features":[79]},{"name":"WM_CAP_PAL_MANUALCREATE","features":[79]},{"name":"WM_CAP_PAL_OPEN","features":[79]},{"name":"WM_CAP_PAL_OPENA","features":[79]},{"name":"WM_CAP_PAL_OPENW","features":[79]},{"name":"WM_CAP_PAL_PASTE","features":[79]},{"name":"WM_CAP_PAL_SAVE","features":[79]},{"name":"WM_CAP_PAL_SAVEA","features":[79]},{"name":"WM_CAP_PAL_SAVEW","features":[79]},{"name":"WM_CAP_SEQUENCE","features":[79]},{"name":"WM_CAP_SEQUENCE_NOFILE","features":[79]},{"name":"WM_CAP_SET_AUDIOFORMAT","features":[79]},{"name":"WM_CAP_SET_CALLBACK_CAPCONTROL","features":[79]},{"name":"WM_CAP_SET_CALLBACK_ERROR","features":[79]},{"name":"WM_CAP_SET_CALLBACK_ERRORA","features":[79]},{"name":"WM_CAP_SET_CALLBACK_ERRORW","features":[79]},{"name":"WM_CAP_SET_CALLBACK_FRAME","features":[79]},{"name":"WM_CAP_SET_CALLBACK_STATUS","features":[79]},{"name":"WM_CAP_SET_CALLBACK_STATUSA","features":[79]},{"name":"WM_CAP_SET_CALLBACK_STATUSW","features":[79]},{"name":"WM_CAP_SET_CALLBACK_VIDEOSTREAM","features":[79]},{"name":"WM_CAP_SET_CALLBACK_WAVESTREAM","features":[79]},{"name":"WM_CAP_SET_CALLBACK_YIELD","features":[79]},{"name":"WM_CAP_SET_MCI_DEVICE","features":[79]},{"name":"WM_CAP_SET_MCI_DEVICEA","features":[79]},{"name":"WM_CAP_SET_MCI_DEVICEW","features":[79]},{"name":"WM_CAP_SET_OVERLAY","features":[79]},{"name":"WM_CAP_SET_PREVIEW","features":[79]},{"name":"WM_CAP_SET_PREVIEWRATE","features":[79]},{"name":"WM_CAP_SET_SCALE","features":[79]},{"name":"WM_CAP_SET_SCROLL","features":[79]},{"name":"WM_CAP_SET_SEQUENCE_SETUP","features":[79]},{"name":"WM_CAP_SET_USER_DATA","features":[79]},{"name":"WM_CAP_SET_VIDEOFORMAT","features":[79]},{"name":"WM_CAP_SINGLE_FRAME","features":[79]},{"name":"WM_CAP_SINGLE_FRAME_CLOSE","features":[79]},{"name":"WM_CAP_SINGLE_FRAME_OPEN","features":[79]},{"name":"WM_CAP_START","features":[79]},{"name":"WM_CAP_STOP","features":[79]},{"name":"WM_CAP_UNICODE_END","features":[79]},{"name":"WM_CAP_UNICODE_START","features":[79]},{"name":"WODM_BREAKLOOP","features":[79]},{"name":"WODM_BUSY","features":[79]},{"name":"WODM_CLOSE","features":[79]},{"name":"WODM_GETDEVCAPS","features":[79]},{"name":"WODM_GETNUMDEVS","features":[79]},{"name":"WODM_GETPITCH","features":[79]},{"name":"WODM_GETPLAYBACKRATE","features":[79]},{"name":"WODM_GETPOS","features":[79]},{"name":"WODM_GETVOLUME","features":[79]},{"name":"WODM_INIT","features":[79]},{"name":"WODM_INIT_EX","features":[79]},{"name":"WODM_OPEN","features":[79]},{"name":"WODM_PAUSE","features":[79]},{"name":"WODM_PREFERRED","features":[79]},{"name":"WODM_PREPARE","features":[79]},{"name":"WODM_RESET","features":[79]},{"name":"WODM_RESTART","features":[79]},{"name":"WODM_SETPITCH","features":[79]},{"name":"WODM_SETPLAYBACKRATE","features":[79]},{"name":"WODM_SETVOLUME","features":[79]},{"name":"WODM_UNPREPARE","features":[79]},{"name":"WODM_WRITE","features":[79]},{"name":"YAMAHA_ADPCMWAVEFORMAT","features":[80,79]},{"name":"YIELDPROC","features":[79]},{"name":"capCreateCaptureWindowA","features":[1,79]},{"name":"capCreateCaptureWindowW","features":[1,79]},{"name":"capGetDriverDescriptionA","features":[1,79]},{"name":"capGetDriverDescriptionW","features":[1,79]},{"name":"joyGetDevCapsA","features":[79]},{"name":"joyGetDevCapsW","features":[79]},{"name":"joyGetNumDevs","features":[79]},{"name":"joyGetPos","features":[79]},{"name":"joyGetPosEx","features":[79]},{"name":"joyGetThreshold","features":[79]},{"name":"joyReleaseCapture","features":[79]},{"name":"joySetCapture","features":[1,79]},{"name":"joySetThreshold","features":[79]},{"name":"mciDriverNotify","features":[1,79]},{"name":"mciDriverYield","features":[79]},{"name":"mciFreeCommandResource","features":[1,79]},{"name":"mciGetCreatorTask","features":[79]},{"name":"mciGetDeviceIDA","features":[79]},{"name":"mciGetDeviceIDFromElementIDA","features":[79]},{"name":"mciGetDeviceIDFromElementIDW","features":[79]},{"name":"mciGetDeviceIDW","features":[79]},{"name":"mciGetDriverData","features":[79]},{"name":"mciGetErrorStringA","features":[1,79]},{"name":"mciGetErrorStringW","features":[1,79]},{"name":"mciGetYieldProc","features":[79]},{"name":"mciLoadCommandResource","features":[1,79]},{"name":"mciSendCommandA","features":[79]},{"name":"mciSendCommandW","features":[79]},{"name":"mciSendStringA","features":[1,79]},{"name":"mciSendStringW","features":[1,79]},{"name":"mciSetDriverData","features":[1,79]},{"name":"mciSetYieldProc","features":[1,79]},{"name":"mmDrvInstall","features":[79]},{"name":"mmGetCurrentTask","features":[79]},{"name":"mmTaskBlock","features":[79]},{"name":"mmTaskCreate","features":[1,79]},{"name":"mmTaskSignal","features":[1,79]},{"name":"mmTaskYield","features":[79]},{"name":"mmioAdvance","features":[1,79]},{"name":"mmioAscend","features":[79]},{"name":"mmioClose","features":[79]},{"name":"mmioCreateChunk","features":[79]},{"name":"mmioDescend","features":[79]},{"name":"mmioFlush","features":[79]},{"name":"mmioGetInfo","features":[1,79]},{"name":"mmioInstallIOProcA","features":[1,79]},{"name":"mmioInstallIOProcW","features":[1,79]},{"name":"mmioOpenA","features":[1,79]},{"name":"mmioOpenW","features":[1,79]},{"name":"mmioRead","features":[79]},{"name":"mmioRenameA","features":[1,79]},{"name":"mmioRenameW","features":[1,79]},{"name":"mmioSeek","features":[79]},{"name":"mmioSendMessage","features":[1,79]},{"name":"mmioSetBuffer","features":[79]},{"name":"mmioSetInfo","features":[1,79]},{"name":"mmioStringToFOURCCA","features":[79]},{"name":"mmioStringToFOURCCW","features":[79]},{"name":"mmioWrite","features":[79]},{"name":"s_RIFFWAVE_inst","features":[79]},{"name":"sndOpenSound","features":[1,79]}],"441":[{"name":"CapturedMetadataExposureCompensation","features":[85]},{"name":"CapturedMetadataISOGains","features":[85]},{"name":"CapturedMetadataWhiteBalanceGains","features":[85]},{"name":"DEVPKEY_Device_DLNACAP","features":[35,85]},{"name":"DEVPKEY_Device_DLNADOC","features":[35,85]},{"name":"DEVPKEY_Device_MaxVolume","features":[35,85]},{"name":"DEVPKEY_Device_PacketWakeSupported","features":[35,85]},{"name":"DEVPKEY_Device_SendPacketWakeSupported","features":[35,85]},{"name":"DEVPKEY_Device_SinkProtocolInfo","features":[35,85]},{"name":"DEVPKEY_Device_SupportsAudio","features":[35,85]},{"name":"DEVPKEY_Device_SupportsImages","features":[35,85]},{"name":"DEVPKEY_Device_SupportsMute","features":[35,85]},{"name":"DEVPKEY_Device_SupportsSearch","features":[35,85]},{"name":"DEVPKEY_Device_SupportsSetNextAVT","features":[35,85]},{"name":"DEVPKEY_Device_SupportsVideo","features":[35,85]},{"name":"DEVPKEY_Device_UDN","features":[35,85]},{"name":"FaceCharacterization","features":[85]},{"name":"FaceCharacterizationBlobHeader","features":[85]},{"name":"FaceRectInfo","features":[1,85]},{"name":"FaceRectInfoBlobHeader","features":[85]},{"name":"GUID_DEVINTERFACE_DMP","features":[85]},{"name":"GUID_DEVINTERFACE_DMR","features":[85]},{"name":"GUID_DEVINTERFACE_DMS","features":[85]},{"name":"HistogramBlobHeader","features":[85]},{"name":"HistogramDataHeader","features":[85]},{"name":"HistogramGrid","features":[1,85]},{"name":"HistogramHeader","features":[1,85]},{"name":"MF_MEDIASOURCE_STATUS_INFO","features":[85]},{"name":"MF_MEDIASOURCE_STATUS_INFO_FULLYSUPPORTED","features":[85]},{"name":"MF_MEDIASOURCE_STATUS_INFO_UNKNOWN","features":[85]},{"name":"MF_TRANSFER_VIDEO_FRAME_DEFAULT","features":[85]},{"name":"MF_TRANSFER_VIDEO_FRAME_FLAGS","features":[85]},{"name":"MF_TRANSFER_VIDEO_FRAME_IGNORE_PAR","features":[85]},{"name":"MF_TRANSFER_VIDEO_FRAME_STRETCH","features":[85]},{"name":"MetadataTimeStamps","features":[85]}],"442":[{"name":"AM_CONFIGASFWRITER_PARAM_AUTOINDEX","features":[86]},{"name":"AM_CONFIGASFWRITER_PARAM_DONTCOMPRESS","features":[86]},{"name":"AM_CONFIGASFWRITER_PARAM_MULTIPASS","features":[86]},{"name":"AM_WMT_EVENT_DATA","features":[86]},{"name":"CLSID_ClientNetManager","features":[86]},{"name":"CLSID_WMBandwidthSharing_Exclusive","features":[86]},{"name":"CLSID_WMBandwidthSharing_Partial","features":[86]},{"name":"CLSID_WMMUTEX_Bitrate","features":[86]},{"name":"CLSID_WMMUTEX_Language","features":[86]},{"name":"CLSID_WMMUTEX_Presentation","features":[86]},{"name":"CLSID_WMMUTEX_Unknown","features":[86]},{"name":"DRM_COPY_OPL","features":[86]},{"name":"DRM_MINIMUM_OUTPUT_PROTECTION_LEVELS","features":[86]},{"name":"DRM_OPL_OUTPUT_IDS","features":[86]},{"name":"DRM_OPL_TYPES","features":[86]},{"name":"DRM_OUTPUT_PROTECTION","features":[86]},{"name":"DRM_PLAY_OPL","features":[86]},{"name":"DRM_VAL16","features":[86]},{"name":"DRM_VIDEO_OUTPUT_PROTECTION_IDS","features":[86]},{"name":"INSNetSourceCreator","features":[86]},{"name":"INSSBuffer","features":[86]},{"name":"INSSBuffer2","features":[86]},{"name":"INSSBuffer3","features":[86]},{"name":"INSSBuffer4","features":[86]},{"name":"IWMAddressAccess","features":[86]},{"name":"IWMAddressAccess2","features":[86]},{"name":"IWMAuthorizer","features":[86]},{"name":"IWMBackupRestoreProps","features":[86]},{"name":"IWMBandwidthSharing","features":[86]},{"name":"IWMClientConnections","features":[86]},{"name":"IWMClientConnections2","features":[86]},{"name":"IWMCodecInfo","features":[86]},{"name":"IWMCodecInfo2","features":[86]},{"name":"IWMCodecInfo3","features":[86]},{"name":"IWMCredentialCallback","features":[86]},{"name":"IWMDRMEditor","features":[86]},{"name":"IWMDRMMessageParser","features":[86]},{"name":"IWMDRMReader","features":[86]},{"name":"IWMDRMReader2","features":[86]},{"name":"IWMDRMReader3","features":[86]},{"name":"IWMDRMTranscryptionManager","features":[86]},{"name":"IWMDRMTranscryptor","features":[86]},{"name":"IWMDRMTranscryptor2","features":[86]},{"name":"IWMDRMWriter","features":[86]},{"name":"IWMDRMWriter2","features":[86]},{"name":"IWMDRMWriter3","features":[86]},{"name":"IWMDeviceRegistration","features":[86]},{"name":"IWMGetSecureChannel","features":[86]},{"name":"IWMHeaderInfo","features":[86]},{"name":"IWMHeaderInfo2","features":[86]},{"name":"IWMHeaderInfo3","features":[86]},{"name":"IWMIStreamProps","features":[86]},{"name":"IWMImageInfo","features":[86]},{"name":"IWMIndexer","features":[86]},{"name":"IWMIndexer2","features":[86]},{"name":"IWMInputMediaProps","features":[86]},{"name":"IWMLanguageList","features":[86]},{"name":"IWMLicenseBackup","features":[86]},{"name":"IWMLicenseRestore","features":[86]},{"name":"IWMLicenseRevocationAgent","features":[86]},{"name":"IWMMediaProps","features":[86]},{"name":"IWMMetadataEditor","features":[86]},{"name":"IWMMetadataEditor2","features":[86]},{"name":"IWMMutualExclusion","features":[86]},{"name":"IWMMutualExclusion2","features":[86]},{"name":"IWMOutputMediaProps","features":[86]},{"name":"IWMPacketSize","features":[86]},{"name":"IWMPacketSize2","features":[86]},{"name":"IWMPlayerHook","features":[86]},{"name":"IWMPlayerTimestampHook","features":[86]},{"name":"IWMProfile","features":[86]},{"name":"IWMProfile2","features":[86]},{"name":"IWMProfile3","features":[86]},{"name":"IWMProfileManager","features":[86]},{"name":"IWMProfileManager2","features":[86]},{"name":"IWMProfileManagerLanguage","features":[86]},{"name":"IWMPropertyVault","features":[86]},{"name":"IWMProximityDetection","features":[86]},{"name":"IWMReader","features":[86]},{"name":"IWMReaderAccelerator","features":[86]},{"name":"IWMReaderAdvanced","features":[86]},{"name":"IWMReaderAdvanced2","features":[86]},{"name":"IWMReaderAdvanced3","features":[86]},{"name":"IWMReaderAdvanced4","features":[86]},{"name":"IWMReaderAdvanced5","features":[86]},{"name":"IWMReaderAdvanced6","features":[86]},{"name":"IWMReaderAllocatorEx","features":[86]},{"name":"IWMReaderCallback","features":[86]},{"name":"IWMReaderCallbackAdvanced","features":[86]},{"name":"IWMReaderNetworkConfig","features":[86]},{"name":"IWMReaderNetworkConfig2","features":[86]},{"name":"IWMReaderPlaylistBurn","features":[86]},{"name":"IWMReaderStreamClock","features":[86]},{"name":"IWMReaderTimecode","features":[86]},{"name":"IWMReaderTypeNegotiation","features":[86]},{"name":"IWMRegisterCallback","features":[86]},{"name":"IWMRegisteredDevice","features":[86]},{"name":"IWMSBufferAllocator","features":[86]},{"name":"IWMSInternalAdminNetSource","features":[86]},{"name":"IWMSInternalAdminNetSource2","features":[86]},{"name":"IWMSInternalAdminNetSource3","features":[86]},{"name":"IWMSecureChannel","features":[86]},{"name":"IWMStatusCallback","features":[86]},{"name":"IWMStreamConfig","features":[86]},{"name":"IWMStreamConfig2","features":[86]},{"name":"IWMStreamConfig3","features":[86]},{"name":"IWMStreamList","features":[86]},{"name":"IWMStreamPrioritization","features":[86]},{"name":"IWMSyncReader","features":[86]},{"name":"IWMSyncReader2","features":[86]},{"name":"IWMVideoMediaProps","features":[86]},{"name":"IWMWatermarkInfo","features":[86]},{"name":"IWMWriter","features":[86]},{"name":"IWMWriterAdvanced","features":[86]},{"name":"IWMWriterAdvanced2","features":[86]},{"name":"IWMWriterAdvanced3","features":[86]},{"name":"IWMWriterFileSink","features":[86]},{"name":"IWMWriterFileSink2","features":[86]},{"name":"IWMWriterFileSink3","features":[86]},{"name":"IWMWriterNetworkSink","features":[86]},{"name":"IWMWriterPostView","features":[86]},{"name":"IWMWriterPostViewCallback","features":[86]},{"name":"IWMWriterPreprocess","features":[86]},{"name":"IWMWriterPushSink","features":[86]},{"name":"IWMWriterSink","features":[86]},{"name":"NETSOURCE_URLCREDPOLICY_SETTINGS","features":[86]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_ANONYMOUSONLY","features":[86]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_MUSTPROMPTUSER","features":[86]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_SILENTLOGONOK","features":[86]},{"name":"WEBSTREAM_SAMPLE_TYPE","features":[86]},{"name":"WEBSTREAM_SAMPLE_TYPE_FILE","features":[86]},{"name":"WEBSTREAM_SAMPLE_TYPE_RENDER","features":[86]},{"name":"WMCreateBackupRestorer","features":[86]},{"name":"WMCreateEditor","features":[86]},{"name":"WMCreateIndexer","features":[86]},{"name":"WMCreateProfileManager","features":[86]},{"name":"WMCreateReader","features":[86]},{"name":"WMCreateSyncReader","features":[86]},{"name":"WMCreateWriter","features":[86]},{"name":"WMCreateWriterFileSink","features":[86]},{"name":"WMCreateWriterNetworkSink","features":[86]},{"name":"WMCreateWriterPushSink","features":[86]},{"name":"WMDRM_IMPORT_INIT_STRUCT","features":[86]},{"name":"WMDRM_IMPORT_INIT_STRUCT_DEFINED","features":[86]},{"name":"WMFORMAT_MPEG2Video","features":[86]},{"name":"WMFORMAT_Script","features":[86]},{"name":"WMFORMAT_VideoInfo","features":[86]},{"name":"WMFORMAT_WaveFormatEx","features":[86]},{"name":"WMFORMAT_WebStream","features":[86]},{"name":"WMIsContentProtected","features":[1,86]},{"name":"WMMEDIASUBTYPE_ACELPnet","features":[86]},{"name":"WMMEDIASUBTYPE_Base","features":[86]},{"name":"WMMEDIASUBTYPE_DRM","features":[86]},{"name":"WMMEDIASUBTYPE_I420","features":[86]},{"name":"WMMEDIASUBTYPE_IYUV","features":[86]},{"name":"WMMEDIASUBTYPE_M4S2","features":[86]},{"name":"WMMEDIASUBTYPE_MP3","features":[86]},{"name":"WMMEDIASUBTYPE_MP43","features":[86]},{"name":"WMMEDIASUBTYPE_MP4S","features":[86]},{"name":"WMMEDIASUBTYPE_MPEG2_VIDEO","features":[86]},{"name":"WMMEDIASUBTYPE_MSS1","features":[86]},{"name":"WMMEDIASUBTYPE_MSS2","features":[86]},{"name":"WMMEDIASUBTYPE_P422","features":[86]},{"name":"WMMEDIASUBTYPE_PCM","features":[86]},{"name":"WMMEDIASUBTYPE_RGB1","features":[86]},{"name":"WMMEDIASUBTYPE_RGB24","features":[86]},{"name":"WMMEDIASUBTYPE_RGB32","features":[86]},{"name":"WMMEDIASUBTYPE_RGB4","features":[86]},{"name":"WMMEDIASUBTYPE_RGB555","features":[86]},{"name":"WMMEDIASUBTYPE_RGB565","features":[86]},{"name":"WMMEDIASUBTYPE_RGB8","features":[86]},{"name":"WMMEDIASUBTYPE_UYVY","features":[86]},{"name":"WMMEDIASUBTYPE_VIDEOIMAGE","features":[86]},{"name":"WMMEDIASUBTYPE_WMAudioV2","features":[86]},{"name":"WMMEDIASUBTYPE_WMAudioV7","features":[86]},{"name":"WMMEDIASUBTYPE_WMAudioV8","features":[86]},{"name":"WMMEDIASUBTYPE_WMAudioV9","features":[86]},{"name":"WMMEDIASUBTYPE_WMAudio_Lossless","features":[86]},{"name":"WMMEDIASUBTYPE_WMSP1","features":[86]},{"name":"WMMEDIASUBTYPE_WMSP2","features":[86]},{"name":"WMMEDIASUBTYPE_WMV1","features":[86]},{"name":"WMMEDIASUBTYPE_WMV2","features":[86]},{"name":"WMMEDIASUBTYPE_WMV3","features":[86]},{"name":"WMMEDIASUBTYPE_WMVA","features":[86]},{"name":"WMMEDIASUBTYPE_WMVP","features":[86]},{"name":"WMMEDIASUBTYPE_WVC1","features":[86]},{"name":"WMMEDIASUBTYPE_WVP2","features":[86]},{"name":"WMMEDIASUBTYPE_WebStream","features":[86]},{"name":"WMMEDIASUBTYPE_YUY2","features":[86]},{"name":"WMMEDIASUBTYPE_YV12","features":[86]},{"name":"WMMEDIASUBTYPE_YVU9","features":[86]},{"name":"WMMEDIASUBTYPE_YVYU","features":[86]},{"name":"WMMEDIATYPE_Audio","features":[86]},{"name":"WMMEDIATYPE_FileTransfer","features":[86]},{"name":"WMMEDIATYPE_Image","features":[86]},{"name":"WMMEDIATYPE_Script","features":[86]},{"name":"WMMEDIATYPE_Text","features":[86]},{"name":"WMMEDIATYPE_Video","features":[86]},{"name":"WMMPEG2VIDEOINFO","features":[1,12,86]},{"name":"WMSCRIPTFORMAT","features":[86]},{"name":"WMSCRIPTTYPE_TwoStrings","features":[86]},{"name":"WMT_ACQUIRE_LICENSE","features":[86]},{"name":"WMT_ATTR_DATATYPE","features":[86]},{"name":"WMT_ATTR_IMAGETYPE","features":[86]},{"name":"WMT_BACKUPRESTORE_BEGIN","features":[86]},{"name":"WMT_BACKUPRESTORE_CONNECTING","features":[86]},{"name":"WMT_BACKUPRESTORE_DISCONNECTING","features":[86]},{"name":"WMT_BACKUPRESTORE_END","features":[86]},{"name":"WMT_BUFFERING_START","features":[86]},{"name":"WMT_BUFFERING_STOP","features":[86]},{"name":"WMT_BUFFER_SEGMENT","features":[86]},{"name":"WMT_CLEANPOINT_ONLY","features":[86]},{"name":"WMT_CLIENT_CONNECT","features":[86]},{"name":"WMT_CLIENT_CONNECT_EX","features":[86]},{"name":"WMT_CLIENT_DISCONNECT","features":[86]},{"name":"WMT_CLIENT_DISCONNECT_EX","features":[86]},{"name":"WMT_CLIENT_PROPERTIES","features":[86]},{"name":"WMT_CLOSED","features":[86]},{"name":"WMT_CODECINFO_AUDIO","features":[86]},{"name":"WMT_CODECINFO_UNKNOWN","features":[86]},{"name":"WMT_CODECINFO_VIDEO","features":[86]},{"name":"WMT_CODEC_INFO_TYPE","features":[86]},{"name":"WMT_COLORSPACEINFO_EXTENSION_DATA","features":[86]},{"name":"WMT_CONNECTING","features":[86]},{"name":"WMT_CONTENT_ENABLER","features":[86]},{"name":"WMT_CREDENTIAL_CLEAR_TEXT","features":[86]},{"name":"WMT_CREDENTIAL_DONT_CACHE","features":[86]},{"name":"WMT_CREDENTIAL_ENCRYPT","features":[86]},{"name":"WMT_CREDENTIAL_FLAGS","features":[86]},{"name":"WMT_CREDENTIAL_PROXY","features":[86]},{"name":"WMT_CREDENTIAL_SAVE","features":[86]},{"name":"WMT_DMOCATEGORY_AUDIO_WATERMARK","features":[86]},{"name":"WMT_DMOCATEGORY_VIDEO_WATERMARK","features":[86]},{"name":"WMT_DRMLA_TAMPERED","features":[86]},{"name":"WMT_DRMLA_TRUST","features":[86]},{"name":"WMT_DRMLA_TRUSTED","features":[86]},{"name":"WMT_DRMLA_UNTRUSTED","features":[86]},{"name":"WMT_END_OF_FILE","features":[86]},{"name":"WMT_END_OF_SEGMENT","features":[86]},{"name":"WMT_END_OF_STREAMING","features":[86]},{"name":"WMT_EOF","features":[86]},{"name":"WMT_ERROR","features":[86]},{"name":"WMT_ERROR_WITHURL","features":[86]},{"name":"WMT_FILESINK_DATA_UNIT","features":[86]},{"name":"WMT_FILESINK_MODE","features":[86]},{"name":"WMT_FM_FILESINK_DATA_UNITS","features":[86]},{"name":"WMT_FM_FILESINK_UNBUFFERED","features":[86]},{"name":"WMT_FM_SINGLE_BUFFERS","features":[86]},{"name":"WMT_IMAGETYPE_BITMAP","features":[86]},{"name":"WMT_IMAGETYPE_GIF","features":[86]},{"name":"WMT_IMAGETYPE_JPEG","features":[86]},{"name":"WMT_IMAGE_TYPE","features":[86]},{"name":"WMT_INDEXER_TYPE","features":[86]},{"name":"WMT_INDEX_PROGRESS","features":[86]},{"name":"WMT_INDEX_TYPE","features":[86]},{"name":"WMT_INDIVIDUALIZE","features":[86]},{"name":"WMT_INIT_PLAYLIST_BURN","features":[86]},{"name":"WMT_IT_BITMAP","features":[86]},{"name":"WMT_IT_FRAME_NUMBERS","features":[86]},{"name":"WMT_IT_GIF","features":[86]},{"name":"WMT_IT_JPEG","features":[86]},{"name":"WMT_IT_NEAREST_CLEAN_POINT","features":[86]},{"name":"WMT_IT_NEAREST_DATA_UNIT","features":[86]},{"name":"WMT_IT_NEAREST_OBJECT","features":[86]},{"name":"WMT_IT_NONE","features":[86]},{"name":"WMT_IT_PRESENTATION_TIME","features":[86]},{"name":"WMT_IT_TIMECODE","features":[86]},{"name":"WMT_LICENSEURL_SIGNATURE_STATE","features":[86]},{"name":"WMT_LOCATING","features":[86]},{"name":"WMT_MISSING_CODEC","features":[86]},{"name":"WMT_MS_CLASS_MIXED","features":[86]},{"name":"WMT_MS_CLASS_MUSIC","features":[86]},{"name":"WMT_MS_CLASS_SPEECH","features":[86]},{"name":"WMT_MUSICSPEECH_CLASS_MODE","features":[86]},{"name":"WMT_NATIVE_OUTPUT_PROPS_CHANGED","features":[86]},{"name":"WMT_NEEDS_INDIVIDUALIZATION","features":[86]},{"name":"WMT_NET_PROTOCOL","features":[86]},{"name":"WMT_NEW_METADATA","features":[86]},{"name":"WMT_NEW_SOURCEFLAGS","features":[86]},{"name":"WMT_NO_RIGHTS","features":[86]},{"name":"WMT_NO_RIGHTS_EX","features":[86]},{"name":"WMT_OFF","features":[86]},{"name":"WMT_OFFSET_FORMAT","features":[86]},{"name":"WMT_OFFSET_FORMAT_100NS","features":[86]},{"name":"WMT_OFFSET_FORMAT_100NS_APPROXIMATE","features":[86]},{"name":"WMT_OFFSET_FORMAT_FRAME_NUMBERS","features":[86]},{"name":"WMT_OFFSET_FORMAT_PLAYLIST_OFFSET","features":[86]},{"name":"WMT_OFFSET_FORMAT_TIMECODE","features":[86]},{"name":"WMT_ON","features":[86]},{"name":"WMT_OPENED","features":[86]},{"name":"WMT_PAYLOAD_FRAGMENT","features":[86]},{"name":"WMT_PLAY_MODE","features":[86]},{"name":"WMT_PLAY_MODE_AUTOSELECT","features":[86]},{"name":"WMT_PLAY_MODE_DOWNLOAD","features":[86]},{"name":"WMT_PLAY_MODE_LOCAL","features":[86]},{"name":"WMT_PLAY_MODE_STREAMING","features":[86]},{"name":"WMT_PREROLL_COMPLETE","features":[86]},{"name":"WMT_PREROLL_READY","features":[86]},{"name":"WMT_PROTOCOL_HTTP","features":[86]},{"name":"WMT_PROXIMITY_COMPLETED","features":[86]},{"name":"WMT_PROXIMITY_RESULT","features":[86]},{"name":"WMT_PROXY_SETTINGS","features":[86]},{"name":"WMT_PROXY_SETTING_AUTO","features":[86]},{"name":"WMT_PROXY_SETTING_BROWSER","features":[86]},{"name":"WMT_PROXY_SETTING_MANUAL","features":[86]},{"name":"WMT_PROXY_SETTING_MAX","features":[86]},{"name":"WMT_PROXY_SETTING_NONE","features":[86]},{"name":"WMT_RECONNECT_END","features":[86]},{"name":"WMT_RECONNECT_START","features":[86]},{"name":"WMT_RESTRICTED_LICENSE","features":[86]},{"name":"WMT_RIGHTS","features":[86]},{"name":"WMT_RIGHT_COLLABORATIVE_PLAY","features":[86]},{"name":"WMT_RIGHT_COPY","features":[86]},{"name":"WMT_RIGHT_COPY_TO_CD","features":[86]},{"name":"WMT_RIGHT_COPY_TO_NON_SDMI_DEVICE","features":[86]},{"name":"WMT_RIGHT_COPY_TO_SDMI_DEVICE","features":[86]},{"name":"WMT_RIGHT_ONE_TIME","features":[86]},{"name":"WMT_RIGHT_PLAYBACK","features":[86]},{"name":"WMT_RIGHT_SAVE_STREAM_PROTECTED","features":[86]},{"name":"WMT_RIGHT_SDMI_NOMORECOPIES","features":[86]},{"name":"WMT_RIGHT_SDMI_TRIGGER","features":[86]},{"name":"WMT_SAVEAS_START","features":[86]},{"name":"WMT_SAVEAS_STOP","features":[86]},{"name":"WMT_SET_FEC_SPAN","features":[86]},{"name":"WMT_SOURCE_SWITCH","features":[86]},{"name":"WMT_STARTED","features":[86]},{"name":"WMT_STATUS","features":[86]},{"name":"WMT_STOPPED","features":[86]},{"name":"WMT_STORAGE_FORMAT","features":[86]},{"name":"WMT_STREAM_SELECTION","features":[86]},{"name":"WMT_STRIDING","features":[86]},{"name":"WMT_Storage_Format_MP3","features":[86]},{"name":"WMT_Storage_Format_V1","features":[86]},{"name":"WMT_TIMECODE_EXTENSION_DATA","features":[86]},{"name":"WMT_TIMECODE_FRAMERATE","features":[86]},{"name":"WMT_TIMECODE_FRAMERATE_24","features":[86]},{"name":"WMT_TIMECODE_FRAMERATE_25","features":[86]},{"name":"WMT_TIMECODE_FRAMERATE_30","features":[86]},{"name":"WMT_TIMECODE_FRAMERATE_30DROP","features":[86]},{"name":"WMT_TIMER","features":[86]},{"name":"WMT_TRANSCRYPTOR_CLOSED","features":[86]},{"name":"WMT_TRANSCRYPTOR_INIT","features":[86]},{"name":"WMT_TRANSCRYPTOR_READ","features":[86]},{"name":"WMT_TRANSCRYPTOR_SEEKED","features":[86]},{"name":"WMT_TRANSPORT_TYPE","features":[86]},{"name":"WMT_TYPE_BINARY","features":[86]},{"name":"WMT_TYPE_BOOL","features":[86]},{"name":"WMT_TYPE_DWORD","features":[86]},{"name":"WMT_TYPE_GUID","features":[86]},{"name":"WMT_TYPE_QWORD","features":[86]},{"name":"WMT_TYPE_STRING","features":[86]},{"name":"WMT_TYPE_WORD","features":[86]},{"name":"WMT_Transport_Type_Reliable","features":[86]},{"name":"WMT_Transport_Type_Unreliable","features":[86]},{"name":"WMT_VERSION","features":[86]},{"name":"WMT_VER_4_0","features":[86]},{"name":"WMT_VER_7_0","features":[86]},{"name":"WMT_VER_8_0","features":[86]},{"name":"WMT_VER_9_0","features":[86]},{"name":"WMT_VIDEOIMAGE_INTEGER_DENOMINATOR","features":[86]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER","features":[86]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER_2","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE2","features":[1,86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ADV_BLENDING","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_BLENDING","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_INPUT_FRAME","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_MOTION","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_OUTPUT_FRAME","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ROTATION","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_CURRENT_INPUT_FRAME","features":[86]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_PREVIOUS_INPUT_FRAME","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_BOW_TIE","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CIRCLE","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CROSS_FADE","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAGONAL","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAMOND","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FADE_TO_COLOR","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FILLED_V","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FLIP","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_INSET","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_IRIS","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_PAGE_ROLL","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_RECTANGLE","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_REVEAL","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SLIDE","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SPLIT","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_STAR","features":[86]},{"name":"WMT_VIDEOIMAGE_TRANSITION_WHEEL","features":[86]},{"name":"WMT_WATERMARK_ENTRY","features":[86]},{"name":"WMT_WATERMARK_ENTRY_TYPE","features":[86]},{"name":"WMT_WEBSTREAM_FORMAT","features":[86]},{"name":"WMT_WEBSTREAM_SAMPLE_HEADER","features":[86]},{"name":"WMT_WMETYPE_AUDIO","features":[86]},{"name":"WMT_WMETYPE_VIDEO","features":[86]},{"name":"WMVIDEOINFOHEADER","features":[1,12,86]},{"name":"WMVIDEOINFOHEADER2","features":[1,12,86]},{"name":"WM_ADDRESS_ACCESSENTRY","features":[86]},{"name":"WM_AETYPE","features":[86]},{"name":"WM_AETYPE_EXCLUDE","features":[86]},{"name":"WM_AETYPE_INCLUDE","features":[86]},{"name":"WM_CLIENT_PROPERTIES","features":[86]},{"name":"WM_CLIENT_PROPERTIES_EX","features":[86]},{"name":"WM_CL_INTERLACED420","features":[86]},{"name":"WM_CL_PROGRESSIVE420","features":[86]},{"name":"WM_CT_BOTTOM_FIELD_FIRST","features":[86]},{"name":"WM_CT_INTERLACED","features":[86]},{"name":"WM_CT_REPEAT_FIRST_FIELD","features":[86]},{"name":"WM_CT_TOP_FIELD_FIRST","features":[86]},{"name":"WM_DM_DEINTERLACE_HALFSIZE","features":[86]},{"name":"WM_DM_DEINTERLACE_HALFSIZEDOUBLERATE","features":[86]},{"name":"WM_DM_DEINTERLACE_INVERSETELECINE","features":[86]},{"name":"WM_DM_DEINTERLACE_NORMAL","features":[86]},{"name":"WM_DM_DEINTERLACE_VERTICALHALFSIZEDOUBLERATE","features":[86]},{"name":"WM_DM_INTERLACED_TYPE","features":[86]},{"name":"WM_DM_IT_DISABLE_COHERENT_MODE","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_COHERENCY","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_BOTTOM","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_TOP","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_BOTTOM","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_TOP","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_BOTTOM","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_TOP","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_BOTTOM","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_TOP","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_BOTTOM","features":[86]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_TOP","features":[86]},{"name":"WM_DM_NOTINTERLACED","features":[86]},{"name":"WM_LEAKY_BUCKET_PAIR","features":[86]},{"name":"WM_MAX_STREAMS","features":[86]},{"name":"WM_MAX_VIDEO_STREAMS","features":[86]},{"name":"WM_MEDIA_TYPE","features":[1,86]},{"name":"WM_PICTURE","features":[86]},{"name":"WM_PLAYBACK_DRC_HIGH","features":[86]},{"name":"WM_PLAYBACK_DRC_LEVEL","features":[86]},{"name":"WM_PLAYBACK_DRC_LOW","features":[86]},{"name":"WM_PLAYBACK_DRC_MEDIUM","features":[86]},{"name":"WM_PORT_NUMBER_RANGE","features":[86]},{"name":"WM_READER_CLIENTINFO","features":[1,86]},{"name":"WM_READER_STATISTICS","features":[86]},{"name":"WM_SFEX_DATALOSS","features":[86]},{"name":"WM_SFEX_NOTASYNCPOINT","features":[86]},{"name":"WM_SFEX_TYPE","features":[86]},{"name":"WM_SF_CLEANPOINT","features":[86]},{"name":"WM_SF_DATALOSS","features":[86]},{"name":"WM_SF_DISCONTINUITY","features":[86]},{"name":"WM_SF_TYPE","features":[86]},{"name":"WM_STREAM_PRIORITY_RECORD","features":[1,86]},{"name":"WM_STREAM_TYPE_INFO","features":[86]},{"name":"WM_SYNCHRONISED_LYRICS","features":[86]},{"name":"WM_SampleExtensionGUID_ChromaLocation","features":[86]},{"name":"WM_SampleExtensionGUID_ColorSpaceInfo","features":[86]},{"name":"WM_SampleExtensionGUID_ContentType","features":[86]},{"name":"WM_SampleExtensionGUID_FileName","features":[86]},{"name":"WM_SampleExtensionGUID_OutputCleanPoint","features":[86]},{"name":"WM_SampleExtensionGUID_PixelAspectRatio","features":[86]},{"name":"WM_SampleExtensionGUID_SampleDuration","features":[86]},{"name":"WM_SampleExtensionGUID_SampleProtectionSalt","features":[86]},{"name":"WM_SampleExtensionGUID_Timecode","features":[86]},{"name":"WM_SampleExtensionGUID_UserDataInfo","features":[86]},{"name":"WM_SampleExtension_ChromaLocation_Size","features":[86]},{"name":"WM_SampleExtension_ColorSpaceInfo_Size","features":[86]},{"name":"WM_SampleExtension_ContentType_Size","features":[86]},{"name":"WM_SampleExtension_PixelAspectRatio_Size","features":[86]},{"name":"WM_SampleExtension_SampleDuration_Size","features":[86]},{"name":"WM_SampleExtension_Timecode_Size","features":[86]},{"name":"WM_USER_TEXT","features":[86]},{"name":"WM_USER_WEB_URL","features":[86]},{"name":"WM_WRITER_STATISTICS","features":[86]},{"name":"WM_WRITER_STATISTICS_EX","features":[86]},{"name":"_AM_ASFWRITERCONFIG_PARAM","features":[86]},{"name":"g_dwWMContentAttributes","features":[86]},{"name":"g_dwWMNSCAttributes","features":[86]},{"name":"g_dwWMSpecialAttributes","features":[86]},{"name":"g_wszASFLeakyBucketPairs","features":[86]},{"name":"g_wszAllowInterlacedOutput","features":[86]},{"name":"g_wszAverageLevel","features":[86]},{"name":"g_wszBufferAverage","features":[86]},{"name":"g_wszComplexity","features":[86]},{"name":"g_wszComplexityLive","features":[86]},{"name":"g_wszComplexityMax","features":[86]},{"name":"g_wszComplexityOffline","features":[86]},{"name":"g_wszDecoderComplexityRequested","features":[86]},{"name":"g_wszDedicatedDeliveryThread","features":[86]},{"name":"g_wszDeinterlaceMode","features":[86]},{"name":"g_wszDeliverOnReceive","features":[86]},{"name":"g_wszDeviceConformanceTemplate","features":[86]},{"name":"g_wszDynamicRangeControl","features":[86]},{"name":"g_wszEDL","features":[86]},{"name":"g_wszEarlyDataDelivery","features":[86]},{"name":"g_wszEnableDiscreteOutput","features":[86]},{"name":"g_wszEnableFrameInterpolation","features":[86]},{"name":"g_wszEnableWMAProSPDIFOutput","features":[86]},{"name":"g_wszFailSeekOnError","features":[86]},{"name":"g_wszFixedFrameRate","features":[86]},{"name":"g_wszFold6To2Channels3","features":[86]},{"name":"g_wszFoldToChannelsTemplate","features":[86]},{"name":"g_wszInitialPatternForInverseTelecine","features":[86]},{"name":"g_wszInterlacedCoding","features":[86]},{"name":"g_wszIsVBRSupported","features":[86]},{"name":"g_wszJPEGCompressionQuality","features":[86]},{"name":"g_wszJustInTimeDecode","features":[86]},{"name":"g_wszMixedClassMode","features":[86]},{"name":"g_wszMusicClassMode","features":[86]},{"name":"g_wszMusicSpeechClassMode","features":[86]},{"name":"g_wszNeedsPreviousSample","features":[86]},{"name":"g_wszNumPasses","features":[86]},{"name":"g_wszOriginalSourceFormatTag","features":[86]},{"name":"g_wszOriginalWaveFormat","features":[86]},{"name":"g_wszPeakValue","features":[86]},{"name":"g_wszPermitSeeksBeyondEndOfStream","features":[86]},{"name":"g_wszReloadIndexOnSeek","features":[86]},{"name":"g_wszScrambledAudio","features":[86]},{"name":"g_wszSingleOutputBuffer","features":[86]},{"name":"g_wszSoftwareScaling","features":[86]},{"name":"g_wszSourceBufferTime","features":[86]},{"name":"g_wszSourceMaxBytesAtOnce","features":[86]},{"name":"g_wszSpeakerConfig","features":[86]},{"name":"g_wszSpeechCaps","features":[86]},{"name":"g_wszSpeechClassMode","features":[86]},{"name":"g_wszStreamLanguage","features":[86]},{"name":"g_wszStreamNumIndexObjects","features":[86]},{"name":"g_wszUsePacketAtSeekPoint","features":[86]},{"name":"g_wszVBRBitrateMax","features":[86]},{"name":"g_wszVBRBufferWindowMax","features":[86]},{"name":"g_wszVBREnabled","features":[86]},{"name":"g_wszVBRPeak","features":[86]},{"name":"g_wszVBRQuality","features":[86]},{"name":"g_wszVideoSampleDurations","features":[86]},{"name":"g_wszWMADID","features":[86]},{"name":"g_wszWMASFPacketCount","features":[86]},{"name":"g_wszWMASFSecurityObjectsSize","features":[86]},{"name":"g_wszWMAlbumArtist","features":[86]},{"name":"g_wszWMAlbumArtistSort","features":[86]},{"name":"g_wszWMAlbumCoverURL","features":[86]},{"name":"g_wszWMAlbumTitle","features":[86]},{"name":"g_wszWMAlbumTitleSort","features":[86]},{"name":"g_wszWMAspectRatioX","features":[86]},{"name":"g_wszWMAspectRatioY","features":[86]},{"name":"g_wszWMAudioFileURL","features":[86]},{"name":"g_wszWMAudioSourceURL","features":[86]},{"name":"g_wszWMAuthor","features":[86]},{"name":"g_wszWMAuthorSort","features":[86]},{"name":"g_wszWMAuthorURL","features":[86]},{"name":"g_wszWMBannerImageData","features":[86]},{"name":"g_wszWMBannerImageType","features":[86]},{"name":"g_wszWMBannerImageURL","features":[86]},{"name":"g_wszWMBeatsPerMinute","features":[86]},{"name":"g_wszWMBitrate","features":[86]},{"name":"g_wszWMBroadcast","features":[86]},{"name":"g_wszWMCategory","features":[86]},{"name":"g_wszWMCodec","features":[86]},{"name":"g_wszWMComposer","features":[86]},{"name":"g_wszWMComposerSort","features":[86]},{"name":"g_wszWMConductor","features":[86]},{"name":"g_wszWMContainerFormat","features":[86]},{"name":"g_wszWMContentDistributor","features":[86]},{"name":"g_wszWMContentGroupDescription","features":[86]},{"name":"g_wszWMCopyright","features":[86]},{"name":"g_wszWMCopyrightURL","features":[86]},{"name":"g_wszWMCurrentBitrate","features":[86]},{"name":"g_wszWMDRM","features":[86]},{"name":"g_wszWMDRM_ContentID","features":[86]},{"name":"g_wszWMDRM_Flags","features":[86]},{"name":"g_wszWMDRM_HeaderSignPrivKey","features":[86]},{"name":"g_wszWMDRM_IndividualizedVersion","features":[86]},{"name":"g_wszWMDRM_KeyID","features":[86]},{"name":"g_wszWMDRM_KeySeed","features":[86]},{"name":"g_wszWMDRM_LASignatureCert","features":[86]},{"name":"g_wszWMDRM_LASignatureLicSrvCert","features":[86]},{"name":"g_wszWMDRM_LASignaturePrivKey","features":[86]},{"name":"g_wszWMDRM_LASignatureRootCert","features":[86]},{"name":"g_wszWMDRM_Level","features":[86]},{"name":"g_wszWMDRM_LicenseAcqURL","features":[86]},{"name":"g_wszWMDRM_SourceID","features":[86]},{"name":"g_wszWMDRM_V1LicenseAcqURL","features":[86]},{"name":"g_wszWMDVDID","features":[86]},{"name":"g_wszWMDescription","features":[86]},{"name":"g_wszWMDirector","features":[86]},{"name":"g_wszWMDuration","features":[86]},{"name":"g_wszWMEncodedBy","features":[86]},{"name":"g_wszWMEncodingSettings","features":[86]},{"name":"g_wszWMEncodingTime","features":[86]},{"name":"g_wszWMEpisodeNumber","features":[86]},{"name":"g_wszWMFileSize","features":[86]},{"name":"g_wszWMGenre","features":[86]},{"name":"g_wszWMGenreID","features":[86]},{"name":"g_wszWMHasArbitraryDataStream","features":[86]},{"name":"g_wszWMHasAttachedImages","features":[86]},{"name":"g_wszWMHasAudio","features":[86]},{"name":"g_wszWMHasFileTransferStream","features":[86]},{"name":"g_wszWMHasImage","features":[86]},{"name":"g_wszWMHasScript","features":[86]},{"name":"g_wszWMHasVideo","features":[86]},{"name":"g_wszWMISAN","features":[86]},{"name":"g_wszWMISRC","features":[86]},{"name":"g_wszWMInitialKey","features":[86]},{"name":"g_wszWMIsCompilation","features":[86]},{"name":"g_wszWMIsVBR","features":[86]},{"name":"g_wszWMLanguage","features":[86]},{"name":"g_wszWMLyrics","features":[86]},{"name":"g_wszWMLyrics_Synchronised","features":[86]},{"name":"g_wszWMMCDI","features":[86]},{"name":"g_wszWMMediaClassPrimaryID","features":[86]},{"name":"g_wszWMMediaClassSecondaryID","features":[86]},{"name":"g_wszWMMediaCredits","features":[86]},{"name":"g_wszWMMediaIsDelay","features":[86]},{"name":"g_wszWMMediaIsFinale","features":[86]},{"name":"g_wszWMMediaIsLive","features":[86]},{"name":"g_wszWMMediaIsPremiere","features":[86]},{"name":"g_wszWMMediaIsRepeat","features":[86]},{"name":"g_wszWMMediaIsSAP","features":[86]},{"name":"g_wszWMMediaIsStereo","features":[86]},{"name":"g_wszWMMediaIsSubtitled","features":[86]},{"name":"g_wszWMMediaIsTape","features":[86]},{"name":"g_wszWMMediaNetworkAffiliation","features":[86]},{"name":"g_wszWMMediaOriginalBroadcastDateTime","features":[86]},{"name":"g_wszWMMediaOriginalChannel","features":[86]},{"name":"g_wszWMMediaStationCallSign","features":[86]},{"name":"g_wszWMMediaStationName","features":[86]},{"name":"g_wszWMModifiedBy","features":[86]},{"name":"g_wszWMMood","features":[86]},{"name":"g_wszWMNSCAddress","features":[86]},{"name":"g_wszWMNSCDescription","features":[86]},{"name":"g_wszWMNSCEmail","features":[86]},{"name":"g_wszWMNSCName","features":[86]},{"name":"g_wszWMNSCPhone","features":[86]},{"name":"g_wszWMNumberOfFrames","features":[86]},{"name":"g_wszWMOptimalBitrate","features":[86]},{"name":"g_wszWMOriginalAlbumTitle","features":[86]},{"name":"g_wszWMOriginalArtist","features":[86]},{"name":"g_wszWMOriginalFilename","features":[86]},{"name":"g_wszWMOriginalLyricist","features":[86]},{"name":"g_wszWMOriginalReleaseTime","features":[86]},{"name":"g_wszWMOriginalReleaseYear","features":[86]},{"name":"g_wszWMParentalRating","features":[86]},{"name":"g_wszWMParentalRatingReason","features":[86]},{"name":"g_wszWMPartOfSet","features":[86]},{"name":"g_wszWMPeakBitrate","features":[86]},{"name":"g_wszWMPeriod","features":[86]},{"name":"g_wszWMPicture","features":[86]},{"name":"g_wszWMPlaylistDelay","features":[86]},{"name":"g_wszWMProducer","features":[86]},{"name":"g_wszWMPromotionURL","features":[86]},{"name":"g_wszWMProtected","features":[86]},{"name":"g_wszWMProtectionType","features":[86]},{"name":"g_wszWMProvider","features":[86]},{"name":"g_wszWMProviderCopyright","features":[86]},{"name":"g_wszWMProviderRating","features":[86]},{"name":"g_wszWMProviderStyle","features":[86]},{"name":"g_wszWMPublisher","features":[86]},{"name":"g_wszWMRadioStationName","features":[86]},{"name":"g_wszWMRadioStationOwner","features":[86]},{"name":"g_wszWMRating","features":[86]},{"name":"g_wszWMSeasonNumber","features":[86]},{"name":"g_wszWMSeekable","features":[86]},{"name":"g_wszWMSharedUserRating","features":[86]},{"name":"g_wszWMSignature_Name","features":[86]},{"name":"g_wszWMSkipBackward","features":[86]},{"name":"g_wszWMSkipForward","features":[86]},{"name":"g_wszWMStreamTypeInfo","features":[86]},{"name":"g_wszWMStridable","features":[86]},{"name":"g_wszWMSubTitle","features":[86]},{"name":"g_wszWMSubTitleDescription","features":[86]},{"name":"g_wszWMSubscriptionContentID","features":[86]},{"name":"g_wszWMText","features":[86]},{"name":"g_wszWMTitle","features":[86]},{"name":"g_wszWMTitleSort","features":[86]},{"name":"g_wszWMToolName","features":[86]},{"name":"g_wszWMToolVersion","features":[86]},{"name":"g_wszWMTrack","features":[86]},{"name":"g_wszWMTrackNumber","features":[86]},{"name":"g_wszWMTrusted","features":[86]},{"name":"g_wszWMUniqueFileIdentifier","features":[86]},{"name":"g_wszWMUse_Advanced_DRM","features":[86]},{"name":"g_wszWMUse_DRM","features":[86]},{"name":"g_wszWMUserWebURL","features":[86]},{"name":"g_wszWMVideoClosedCaptioning","features":[86]},{"name":"g_wszWMVideoFrameRate","features":[86]},{"name":"g_wszWMVideoHeight","features":[86]},{"name":"g_wszWMVideoWidth","features":[86]},{"name":"g_wszWMWMADRCAverageReference","features":[86]},{"name":"g_wszWMWMADRCAverageTarget","features":[86]},{"name":"g_wszWMWMADRCPeakReference","features":[86]},{"name":"g_wszWMWMADRCPeakTarget","features":[86]},{"name":"g_wszWMWMCPDistributor","features":[86]},{"name":"g_wszWMWMCPDistributorID","features":[86]},{"name":"g_wszWMWMCollectionGroupID","features":[86]},{"name":"g_wszWMWMCollectionID","features":[86]},{"name":"g_wszWMWMContentID","features":[86]},{"name":"g_wszWMWMShadowFileSourceDRMType","features":[86]},{"name":"g_wszWMWMShadowFileSourceFileType","features":[86]},{"name":"g_wszWMWriter","features":[86]},{"name":"g_wszWMYear","features":[86]},{"name":"g_wszWatermarkCLSID","features":[86]},{"name":"g_wszWatermarkConfig","features":[86]}],"443":[{"name":"ADDRESS_TYPE_IANA","features":[87]},{"name":"ADDRESS_TYPE_IATA","features":[87]},{"name":"Allow","features":[87]},{"name":"CHANGESTATE","features":[87]},{"name":"CLIENT_TYPE_BOOTP","features":[87]},{"name":"CLIENT_TYPE_DHCP","features":[87]},{"name":"CLIENT_TYPE_NONE","features":[87]},{"name":"CLIENT_TYPE_RESERVATION_FLAG","features":[87]},{"name":"CLIENT_TYPE_UNSPECIFIED","features":[87]},{"name":"COMMUNICATION_INT","features":[87]},{"name":"CONFLICT_DONE","features":[87]},{"name":"DATE_TIME","features":[87]},{"name":"DEFAULTQUARSETTING","features":[87]},{"name":"DHCPAPI_PARAMS","features":[1,87]},{"name":"DHCPCAPI_CLASSID","features":[87]},{"name":"DHCPCAPI_DEREGISTER_HANDLE_EVENT","features":[87]},{"name":"DHCPCAPI_PARAMS_ARRAY","features":[1,87]},{"name":"DHCPCAPI_REGISTER_HANDLE_EVENT","features":[87]},{"name":"DHCPCAPI_REQUEST_ASYNCHRONOUS","features":[87]},{"name":"DHCPCAPI_REQUEST_CANCEL","features":[87]},{"name":"DHCPCAPI_REQUEST_MASK","features":[87]},{"name":"DHCPCAPI_REQUEST_PERSISTENT","features":[87]},{"name":"DHCPCAPI_REQUEST_SYNCHRONOUS","features":[87]},{"name":"DHCPDS_SERVER","features":[87]},{"name":"DHCPDS_SERVERS","features":[87]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO","features":[1,87]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_ARRAY","features":[1,87]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_EX","features":[1,87]},{"name":"DHCPV6CAPI_CLASSID","features":[87]},{"name":"DHCPV6CAPI_PARAMS","features":[1,87]},{"name":"DHCPV6CAPI_PARAMS_ARRAY","features":[1,87]},{"name":"DHCPV6Prefix","features":[87]},{"name":"DHCPV6PrefixLeaseInformation","features":[87]},{"name":"DHCPV6_BIND_ELEMENT","features":[1,87]},{"name":"DHCPV6_BIND_ELEMENT_ARRAY","features":[1,87]},{"name":"DHCPV6_IP_ARRAY","features":[87]},{"name":"DHCPV6_OPTION_CLIENTID","features":[87]},{"name":"DHCPV6_OPTION_DNS_SERVERS","features":[87]},{"name":"DHCPV6_OPTION_DOMAIN_LIST","features":[87]},{"name":"DHCPV6_OPTION_IA_NA","features":[87]},{"name":"DHCPV6_OPTION_IA_PD","features":[87]},{"name":"DHCPV6_OPTION_IA_TA","features":[87]},{"name":"DHCPV6_OPTION_NISP_DOMAIN_NAME","features":[87]},{"name":"DHCPV6_OPTION_NISP_SERVERS","features":[87]},{"name":"DHCPV6_OPTION_NIS_DOMAIN_NAME","features":[87]},{"name":"DHCPV6_OPTION_NIS_SERVERS","features":[87]},{"name":"DHCPV6_OPTION_ORO","features":[87]},{"name":"DHCPV6_OPTION_PREFERENCE","features":[87]},{"name":"DHCPV6_OPTION_RAPID_COMMIT","features":[87]},{"name":"DHCPV6_OPTION_RECONF_MSG","features":[87]},{"name":"DHCPV6_OPTION_SERVERID","features":[87]},{"name":"DHCPV6_OPTION_SIP_SERVERS_ADDRS","features":[87]},{"name":"DHCPV6_OPTION_SIP_SERVERS_NAMES","features":[87]},{"name":"DHCPV6_OPTION_UNICAST","features":[87]},{"name":"DHCPV6_OPTION_USER_CLASS","features":[87]},{"name":"DHCPV6_OPTION_VENDOR_CLASS","features":[87]},{"name":"DHCPV6_OPTION_VENDOR_OPTS","features":[87]},{"name":"DHCPV6_STATELESS_PARAMS","features":[1,87]},{"name":"DHCPV6_STATELESS_PARAM_TYPE","features":[87]},{"name":"DHCPV6_STATELESS_SCOPE_STATS","features":[87]},{"name":"DHCPV6_STATELESS_STATS","features":[87]},{"name":"DHCP_ADDR_PATTERN","features":[1,87]},{"name":"DHCP_ALL_OPTIONS","features":[87]},{"name":"DHCP_ALL_OPTION_VALUES","features":[1,87]},{"name":"DHCP_ALL_OPTION_VALUES_PB","features":[1,87]},{"name":"DHCP_ATTRIB","features":[1,87]},{"name":"DHCP_ATTRIB_ARRAY","features":[1,87]},{"name":"DHCP_ATTRIB_BOOL_IS_ADMIN","features":[87]},{"name":"DHCP_ATTRIB_BOOL_IS_BINDING_AWARE","features":[87]},{"name":"DHCP_ATTRIB_BOOL_IS_DYNBOOTP","features":[87]},{"name":"DHCP_ATTRIB_BOOL_IS_PART_OF_DSDC","features":[87]},{"name":"DHCP_ATTRIB_BOOL_IS_ROGUE","features":[87]},{"name":"DHCP_ATTRIB_TYPE_BOOL","features":[87]},{"name":"DHCP_ATTRIB_TYPE_ULONG","features":[87]},{"name":"DHCP_ATTRIB_ULONG_RESTORE_STATUS","features":[87]},{"name":"DHCP_BINARY_DATA","features":[87]},{"name":"DHCP_BIND_ELEMENT","features":[1,87]},{"name":"DHCP_BIND_ELEMENT_ARRAY","features":[1,87]},{"name":"DHCP_BOOTP_IP_RANGE","features":[87]},{"name":"DHCP_CALLOUT_ENTRY_POINT","features":[87]},{"name":"DHCP_CALLOUT_LIST_KEY","features":[87]},{"name":"DHCP_CALLOUT_LIST_VALUE","features":[87]},{"name":"DHCP_CALLOUT_TABLE","features":[1,87]},{"name":"DHCP_CLASS_INFO","features":[1,87]},{"name":"DHCP_CLASS_INFO_ARRAY","features":[1,87]},{"name":"DHCP_CLASS_INFO_ARRAY_V6","features":[1,87]},{"name":"DHCP_CLASS_INFO_V6","features":[1,87]},{"name":"DHCP_CLIENT_BOOTP","features":[87]},{"name":"DHCP_CLIENT_DHCP","features":[87]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO","features":[1,87]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY","features":[1,87]},{"name":"DHCP_CLIENT_INFO","features":[87]},{"name":"DHCP_CLIENT_INFO_ARRAY","features":[87]},{"name":"DHCP_CLIENT_INFO_ARRAY_V4","features":[87]},{"name":"DHCP_CLIENT_INFO_ARRAY_V5","features":[87]},{"name":"DHCP_CLIENT_INFO_ARRAY_V6","features":[87]},{"name":"DHCP_CLIENT_INFO_ARRAY_VQ","features":[1,87]},{"name":"DHCP_CLIENT_INFO_EX","features":[1,87]},{"name":"DHCP_CLIENT_INFO_EX_ARRAY","features":[1,87]},{"name":"DHCP_CLIENT_INFO_PB","features":[1,87]},{"name":"DHCP_CLIENT_INFO_PB_ARRAY","features":[1,87]},{"name":"DHCP_CLIENT_INFO_V4","features":[87]},{"name":"DHCP_CLIENT_INFO_V5","features":[87]},{"name":"DHCP_CLIENT_INFO_V6","features":[87]},{"name":"DHCP_CLIENT_INFO_VQ","features":[1,87]},{"name":"DHCP_CONTROL_CONTINUE","features":[87]},{"name":"DHCP_CONTROL_PAUSE","features":[87]},{"name":"DHCP_CONTROL_START","features":[87]},{"name":"DHCP_CONTROL_STOP","features":[87]},{"name":"DHCP_DROP_DUPLICATE","features":[87]},{"name":"DHCP_DROP_GEN_FAILURE","features":[87]},{"name":"DHCP_DROP_INTERNAL_ERROR","features":[87]},{"name":"DHCP_DROP_INVALID","features":[87]},{"name":"DHCP_DROP_NOADDRESS","features":[87]},{"name":"DHCP_DROP_NOMEM","features":[87]},{"name":"DHCP_DROP_NO_SUBNETS","features":[87]},{"name":"DHCP_DROP_PAUSED","features":[87]},{"name":"DHCP_DROP_PROCESSED","features":[87]},{"name":"DHCP_DROP_TIMEOUT","features":[87]},{"name":"DHCP_DROP_UNAUTH","features":[87]},{"name":"DHCP_DROP_WRONG_SERVER","features":[87]},{"name":"DHCP_ENDPOINT_FLAG_CANT_MODIFY","features":[87]},{"name":"DHCP_FAILOVER_DELETE_SCOPES","features":[87]},{"name":"DHCP_FAILOVER_MAX_NUM_ADD_SCOPES","features":[87]},{"name":"DHCP_FAILOVER_MAX_NUM_REL","features":[87]},{"name":"DHCP_FAILOVER_MODE","features":[87]},{"name":"DHCP_FAILOVER_RELATIONSHIP","features":[87]},{"name":"DHCP_FAILOVER_RELATIONSHIP_ARRAY","features":[87]},{"name":"DHCP_FAILOVER_SERVER","features":[87]},{"name":"DHCP_FAILOVER_STATISTICS","features":[87]},{"name":"DHCP_FILTER_ADD_INFO","features":[1,87]},{"name":"DHCP_FILTER_ENUM_INFO","features":[1,87]},{"name":"DHCP_FILTER_GLOBAL_INFO","features":[1,87]},{"name":"DHCP_FILTER_LIST_TYPE","features":[87]},{"name":"DHCP_FILTER_RECORD","features":[1,87]},{"name":"DHCP_FLAGS_DONT_ACCESS_DS","features":[87]},{"name":"DHCP_FLAGS_DONT_DO_RPC","features":[87]},{"name":"DHCP_FLAGS_OPTION_IS_VENDOR","features":[87]},{"name":"DHCP_FORCE_FLAG","features":[87]},{"name":"DHCP_GIVE_ADDRESS_NEW","features":[87]},{"name":"DHCP_GIVE_ADDRESS_OLD","features":[87]},{"name":"DHCP_HOST_INFO","features":[87]},{"name":"DHCP_HOST_INFO_V6","features":[87]},{"name":"DHCP_IPV6_ADDRESS","features":[87]},{"name":"DHCP_IP_ARRAY","features":[87]},{"name":"DHCP_IP_CLUSTER","features":[87]},{"name":"DHCP_IP_RANGE","features":[87]},{"name":"DHCP_IP_RANGE_ARRAY","features":[87]},{"name":"DHCP_IP_RANGE_V6","features":[87]},{"name":"DHCP_IP_RESERVATION","features":[87]},{"name":"DHCP_IP_RESERVATION_INFO","features":[87]},{"name":"DHCP_IP_RESERVATION_V4","features":[87]},{"name":"DHCP_IP_RESERVATION_V6","features":[87]},{"name":"DHCP_MAX_DELAY","features":[87]},{"name":"DHCP_MIB_INFO","features":[87]},{"name":"DHCP_MIB_INFO_V5","features":[87]},{"name":"DHCP_MIB_INFO_V6","features":[87]},{"name":"DHCP_MIB_INFO_VQ","features":[87]},{"name":"DHCP_MIN_DELAY","features":[87]},{"name":"DHCP_OPTION","features":[87]},{"name":"DHCP_OPTION_ARRAY","features":[87]},{"name":"DHCP_OPTION_DATA","features":[87]},{"name":"DHCP_OPTION_DATA_ELEMENT","features":[87]},{"name":"DHCP_OPTION_DATA_TYPE","features":[87]},{"name":"DHCP_OPTION_LIST","features":[87]},{"name":"DHCP_OPTION_SCOPE_INFO","features":[87]},{"name":"DHCP_OPTION_SCOPE_INFO6","features":[87]},{"name":"DHCP_OPTION_SCOPE_TYPE","features":[87]},{"name":"DHCP_OPTION_SCOPE_TYPE6","features":[87]},{"name":"DHCP_OPTION_TYPE","features":[87]},{"name":"DHCP_OPTION_VALUE","features":[87]},{"name":"DHCP_OPTION_VALUE_ARRAY","features":[87]},{"name":"DHCP_OPT_ENUM_IGNORE_VENDOR","features":[87]},{"name":"DHCP_OPT_ENUM_USE_CLASSNAME","features":[87]},{"name":"DHCP_PERF_STATS","features":[87]},{"name":"DHCP_POLICY","features":[1,87]},{"name":"DHCP_POLICY_ARRAY","features":[1,87]},{"name":"DHCP_POLICY_EX","features":[1,87]},{"name":"DHCP_POLICY_EX_ARRAY","features":[1,87]},{"name":"DHCP_POLICY_FIELDS_TO_UPDATE","features":[87]},{"name":"DHCP_POL_ATTR_TYPE","features":[87]},{"name":"DHCP_POL_COMPARATOR","features":[87]},{"name":"DHCP_POL_COND","features":[87]},{"name":"DHCP_POL_COND_ARRAY","features":[87]},{"name":"DHCP_POL_EXPR","features":[87]},{"name":"DHCP_POL_EXPR_ARRAY","features":[87]},{"name":"DHCP_POL_LOGIC_OPER","features":[87]},{"name":"DHCP_PROB_CONFLICT","features":[87]},{"name":"DHCP_PROB_DECLINE","features":[87]},{"name":"DHCP_PROB_NACKED","features":[87]},{"name":"DHCP_PROB_RELEASE","features":[87]},{"name":"DHCP_PROPERTY","features":[87]},{"name":"DHCP_PROPERTY_ARRAY","features":[87]},{"name":"DHCP_PROPERTY_ID","features":[87]},{"name":"DHCP_PROPERTY_TYPE","features":[87]},{"name":"DHCP_RESERVATION_INFO_ARRAY","features":[87]},{"name":"DHCP_RESERVED_SCOPE","features":[87]},{"name":"DHCP_RESERVED_SCOPE6","features":[87]},{"name":"DHCP_SCAN_FLAG","features":[87]},{"name":"DHCP_SCAN_ITEM","features":[87]},{"name":"DHCP_SCAN_LIST","features":[87]},{"name":"DHCP_SEARCH_INFO","features":[87]},{"name":"DHCP_SEARCH_INFO_TYPE","features":[87]},{"name":"DHCP_SEARCH_INFO_TYPE_V6","features":[87]},{"name":"DHCP_SEARCH_INFO_V6","features":[87]},{"name":"DHCP_SEND_PACKET","features":[87]},{"name":"DHCP_SERVER_CONFIG_INFO","features":[87]},{"name":"DHCP_SERVER_CONFIG_INFO_V4","features":[1,87]},{"name":"DHCP_SERVER_CONFIG_INFO_V6","features":[1,87]},{"name":"DHCP_SERVER_CONFIG_INFO_VQ","features":[1,87]},{"name":"DHCP_SERVER_OPTIONS","features":[1,87]},{"name":"DHCP_SERVER_SPECIFIC_STRINGS","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_DATA","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V4","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V5","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V6","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V4","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V5","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V6","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_TYPE","features":[87]},{"name":"DHCP_SUBNET_ELEMENT_TYPE_V6","features":[87]},{"name":"DHCP_SUBNET_INFO","features":[87]},{"name":"DHCP_SUBNET_INFO_V6","features":[87]},{"name":"DHCP_SUBNET_INFO_VQ","features":[87]},{"name":"DHCP_SUBNET_INFO_VQ_FLAG_QUARANTINE","features":[87]},{"name":"DHCP_SUBNET_STATE","features":[87]},{"name":"DHCP_SUPER_SCOPE_TABLE","features":[87]},{"name":"DHCP_SUPER_SCOPE_TABLE_ENTRY","features":[87]},{"name":"DNS_FLAG_CLEANUP_EXPIRED","features":[87]},{"name":"DNS_FLAG_DISABLE_PTR_UPDATE","features":[87]},{"name":"DNS_FLAG_ENABLED","features":[87]},{"name":"DNS_FLAG_HAS_DNS_SUFFIX","features":[87]},{"name":"DNS_FLAG_UPDATE_BOTH_ALWAYS","features":[87]},{"name":"DNS_FLAG_UPDATE_DHCID","features":[87]},{"name":"DNS_FLAG_UPDATE_DOWNLEVEL","features":[87]},{"name":"DROPPACKET","features":[87]},{"name":"DWORD_DWORD","features":[87]},{"name":"Deny","features":[87]},{"name":"DhcpAddFilterV4","features":[1,87]},{"name":"DhcpAddSecurityGroup","features":[87]},{"name":"DhcpAddServer","features":[87]},{"name":"DhcpAddSubnetElement","features":[87]},{"name":"DhcpAddSubnetElementV4","features":[87]},{"name":"DhcpAddSubnetElementV5","features":[87]},{"name":"DhcpAddSubnetElementV6","features":[87]},{"name":"DhcpArrayTypeOption","features":[87]},{"name":"DhcpAttrFqdn","features":[87]},{"name":"DhcpAttrFqdnSingleLabel","features":[87]},{"name":"DhcpAttrHWAddr","features":[87]},{"name":"DhcpAttrOption","features":[87]},{"name":"DhcpAttrSubOption","features":[87]},{"name":"DhcpAuditLogGetParams","features":[87]},{"name":"DhcpAuditLogSetParams","features":[87]},{"name":"DhcpBinaryDataOption","features":[87]},{"name":"DhcpByteOption","features":[87]},{"name":"DhcpCApiCleanup","features":[87]},{"name":"DhcpCApiInitialize","features":[87]},{"name":"DhcpClientHardwareAddress","features":[87]},{"name":"DhcpClientIpAddress","features":[87]},{"name":"DhcpClientName","features":[87]},{"name":"DhcpCompBeginsWith","features":[87]},{"name":"DhcpCompEndsWith","features":[87]},{"name":"DhcpCompEqual","features":[87]},{"name":"DhcpCompNotBeginWith","features":[87]},{"name":"DhcpCompNotEndWith","features":[87]},{"name":"DhcpCompNotEqual","features":[87]},{"name":"DhcpCreateClass","features":[1,87]},{"name":"DhcpCreateClassV6","features":[1,87]},{"name":"DhcpCreateClientInfo","features":[87]},{"name":"DhcpCreateClientInfoV4","features":[87]},{"name":"DhcpCreateClientInfoVQ","features":[1,87]},{"name":"DhcpCreateOption","features":[87]},{"name":"DhcpCreateOptionV5","features":[87]},{"name":"DhcpCreateOptionV6","features":[87]},{"name":"DhcpCreateSubnet","features":[87]},{"name":"DhcpCreateSubnetV6","features":[87]},{"name":"DhcpCreateSubnetVQ","features":[87]},{"name":"DhcpDWordDWordOption","features":[87]},{"name":"DhcpDWordOption","features":[87]},{"name":"DhcpDatabaseFix","features":[87]},{"name":"DhcpDeRegisterParamChange","features":[87]},{"name":"DhcpDefaultOptions","features":[87]},{"name":"DhcpDefaultOptions6","features":[87]},{"name":"DhcpDeleteClass","features":[87]},{"name":"DhcpDeleteClassV6","features":[87]},{"name":"DhcpDeleteClientInfo","features":[87]},{"name":"DhcpDeleteClientInfoV6","features":[87]},{"name":"DhcpDeleteFilterV4","features":[1,87]},{"name":"DhcpDeleteServer","features":[87]},{"name":"DhcpDeleteSubnet","features":[87]},{"name":"DhcpDeleteSubnetV6","features":[87]},{"name":"DhcpDeleteSuperScopeV4","features":[87]},{"name":"DhcpDsCleanup","features":[87]},{"name":"DhcpDsInit","features":[87]},{"name":"DhcpEncapsulatedDataOption","features":[87]},{"name":"DhcpEnumClasses","features":[1,87]},{"name":"DhcpEnumClassesV6","features":[1,87]},{"name":"DhcpEnumFilterV4","features":[1,87]},{"name":"DhcpEnumOptionValues","features":[87]},{"name":"DhcpEnumOptionValuesV5","features":[87]},{"name":"DhcpEnumOptionValuesV6","features":[87]},{"name":"DhcpEnumOptions","features":[87]},{"name":"DhcpEnumOptionsV5","features":[87]},{"name":"DhcpEnumOptionsV6","features":[87]},{"name":"DhcpEnumServers","features":[87]},{"name":"DhcpEnumSubnetClients","features":[87]},{"name":"DhcpEnumSubnetClientsFilterStatusInfo","features":[1,87]},{"name":"DhcpEnumSubnetClientsV4","features":[87]},{"name":"DhcpEnumSubnetClientsV5","features":[87]},{"name":"DhcpEnumSubnetClientsV6","features":[87]},{"name":"DhcpEnumSubnetClientsVQ","features":[1,87]},{"name":"DhcpEnumSubnetElements","features":[87]},{"name":"DhcpEnumSubnetElementsV4","features":[87]},{"name":"DhcpEnumSubnetElementsV5","features":[87]},{"name":"DhcpEnumSubnetElementsV6","features":[87]},{"name":"DhcpEnumSubnets","features":[87]},{"name":"DhcpEnumSubnetsV6","features":[87]},{"name":"DhcpExcludedIpRanges","features":[87]},{"name":"DhcpFailoverForce","features":[87]},{"name":"DhcpFullForce","features":[87]},{"name":"DhcpGetAllOptionValues","features":[1,87]},{"name":"DhcpGetAllOptionValuesV6","features":[1,87]},{"name":"DhcpGetAllOptions","features":[87]},{"name":"DhcpGetAllOptionsV6","features":[87]},{"name":"DhcpGetClassInfo","features":[1,87]},{"name":"DhcpGetClientInfo","features":[87]},{"name":"DhcpGetClientInfoV4","features":[87]},{"name":"DhcpGetClientInfoV6","features":[87]},{"name":"DhcpGetClientInfoVQ","features":[1,87]},{"name":"DhcpGetClientOptions","features":[87]},{"name":"DhcpGetFilterV4","features":[1,87]},{"name":"DhcpGetMibInfo","features":[87]},{"name":"DhcpGetMibInfoV5","features":[87]},{"name":"DhcpGetMibInfoV6","features":[87]},{"name":"DhcpGetOptionInfo","features":[87]},{"name":"DhcpGetOptionInfoV5","features":[87]},{"name":"DhcpGetOptionInfoV6","features":[87]},{"name":"DhcpGetOptionValue","features":[87]},{"name":"DhcpGetOptionValueV5","features":[87]},{"name":"DhcpGetOptionValueV6","features":[87]},{"name":"DhcpGetOriginalSubnetMask","features":[87]},{"name":"DhcpGetServerBindingInfo","features":[1,87]},{"name":"DhcpGetServerBindingInfoV6","features":[1,87]},{"name":"DhcpGetServerSpecificStrings","features":[87]},{"name":"DhcpGetSubnetDelayOffer","features":[87]},{"name":"DhcpGetSubnetInfo","features":[87]},{"name":"DhcpGetSubnetInfoV6","features":[87]},{"name":"DhcpGetSubnetInfoVQ","features":[87]},{"name":"DhcpGetSuperScopeInfoV4","features":[87]},{"name":"DhcpGetThreadOptions","features":[87]},{"name":"DhcpGetVersion","features":[87]},{"name":"DhcpGlobalOptions","features":[87]},{"name":"DhcpGlobalOptions6","features":[87]},{"name":"DhcpHlprAddV4PolicyCondition","features":[1,87]},{"name":"DhcpHlprAddV4PolicyExpr","features":[1,87]},{"name":"DhcpHlprAddV4PolicyRange","features":[1,87]},{"name":"DhcpHlprCreateV4Policy","features":[1,87]},{"name":"DhcpHlprCreateV4PolicyEx","features":[1,87]},{"name":"DhcpHlprFindV4DhcpProperty","features":[87]},{"name":"DhcpHlprFreeV4DhcpProperty","features":[87]},{"name":"DhcpHlprFreeV4DhcpPropertyArray","features":[87]},{"name":"DhcpHlprFreeV4Policy","features":[1,87]},{"name":"DhcpHlprFreeV4PolicyArray","features":[1,87]},{"name":"DhcpHlprFreeV4PolicyEx","features":[1,87]},{"name":"DhcpHlprFreeV4PolicyExArray","features":[1,87]},{"name":"DhcpHlprIsV4PolicySingleUC","features":[1,87]},{"name":"DhcpHlprIsV4PolicyValid","features":[1,87]},{"name":"DhcpHlprIsV4PolicyWellFormed","features":[1,87]},{"name":"DhcpHlprModifyV4PolicyExpr","features":[1,87]},{"name":"DhcpHlprResetV4PolicyExpr","features":[1,87]},{"name":"DhcpIpAddressOption","features":[87]},{"name":"DhcpIpRanges","features":[87]},{"name":"DhcpIpRangesBootpOnly","features":[87]},{"name":"DhcpIpRangesDhcpBootp","features":[87]},{"name":"DhcpIpRangesDhcpOnly","features":[87]},{"name":"DhcpIpUsedClusters","features":[87]},{"name":"DhcpIpv6AddressOption","features":[87]},{"name":"DhcpLogicalAnd","features":[87]},{"name":"DhcpLogicalOr","features":[87]},{"name":"DhcpMScopeOptions","features":[87]},{"name":"DhcpModifyClass","features":[1,87]},{"name":"DhcpModifyClassV6","features":[1,87]},{"name":"DhcpNoForce","features":[87]},{"name":"DhcpPropIdClientAddressStateEx","features":[87]},{"name":"DhcpPropIdPolicyDnsSuffix","features":[87]},{"name":"DhcpPropTypeBinary","features":[87]},{"name":"DhcpPropTypeByte","features":[87]},{"name":"DhcpPropTypeDword","features":[87]},{"name":"DhcpPropTypeString","features":[87]},{"name":"DhcpPropTypeWord","features":[87]},{"name":"DhcpRegisterParamChange","features":[1,87]},{"name":"DhcpRegistryFix","features":[87]},{"name":"DhcpRemoveDNSRegistrations","features":[87]},{"name":"DhcpRemoveOption","features":[87]},{"name":"DhcpRemoveOptionV5","features":[87]},{"name":"DhcpRemoveOptionV6","features":[87]},{"name":"DhcpRemoveOptionValue","features":[87]},{"name":"DhcpRemoveOptionValueV5","features":[87]},{"name":"DhcpRemoveOptionValueV6","features":[87]},{"name":"DhcpRemoveSubnetElement","features":[87]},{"name":"DhcpRemoveSubnetElementV4","features":[87]},{"name":"DhcpRemoveSubnetElementV5","features":[87]},{"name":"DhcpRemoveSubnetElementV6","features":[87]},{"name":"DhcpRequestParams","features":[1,87]},{"name":"DhcpReservedIps","features":[87]},{"name":"DhcpReservedOptions","features":[87]},{"name":"DhcpReservedOptions6","features":[87]},{"name":"DhcpRpcFreeMemory","features":[87]},{"name":"DhcpScanDatabase","features":[87]},{"name":"DhcpScopeOptions6","features":[87]},{"name":"DhcpSecondaryHosts","features":[87]},{"name":"DhcpServerAuditlogParamsFree","features":[1,87]},{"name":"DhcpServerBackupDatabase","features":[87]},{"name":"DhcpServerGetConfig","features":[87]},{"name":"DhcpServerGetConfigV4","features":[1,87]},{"name":"DhcpServerGetConfigV6","features":[1,87]},{"name":"DhcpServerGetConfigVQ","features":[1,87]},{"name":"DhcpServerQueryAttribute","features":[1,87]},{"name":"DhcpServerQueryAttributes","features":[1,87]},{"name":"DhcpServerQueryDnsRegCredentials","features":[87]},{"name":"DhcpServerRedoAuthorization","features":[87]},{"name":"DhcpServerRestoreDatabase","features":[87]},{"name":"DhcpServerSetConfig","features":[87]},{"name":"DhcpServerSetConfigV4","features":[1,87]},{"name":"DhcpServerSetConfigV6","features":[1,87]},{"name":"DhcpServerSetConfigVQ","features":[1,87]},{"name":"DhcpServerSetDnsRegCredentials","features":[87]},{"name":"DhcpServerSetDnsRegCredentialsV5","features":[87]},{"name":"DhcpSetClientInfo","features":[87]},{"name":"DhcpSetClientInfoV4","features":[87]},{"name":"DhcpSetClientInfoV6","features":[87]},{"name":"DhcpSetClientInfoVQ","features":[1,87]},{"name":"DhcpSetFilterV4","features":[1,87]},{"name":"DhcpSetOptionInfo","features":[87]},{"name":"DhcpSetOptionInfoV5","features":[87]},{"name":"DhcpSetOptionInfoV6","features":[87]},{"name":"DhcpSetOptionValue","features":[87]},{"name":"DhcpSetOptionValueV5","features":[87]},{"name":"DhcpSetOptionValueV6","features":[87]},{"name":"DhcpSetOptionValues","features":[87]},{"name":"DhcpSetOptionValuesV5","features":[87]},{"name":"DhcpSetServerBindingInfo","features":[1,87]},{"name":"DhcpSetServerBindingInfoV6","features":[1,87]},{"name":"DhcpSetSubnetDelayOffer","features":[87]},{"name":"DhcpSetSubnetInfo","features":[87]},{"name":"DhcpSetSubnetInfoV6","features":[87]},{"name":"DhcpSetSubnetInfoVQ","features":[87]},{"name":"DhcpSetSuperScopeV4","features":[1,87]},{"name":"DhcpSetThreadOptions","features":[87]},{"name":"DhcpStatelessPurgeInterval","features":[87]},{"name":"DhcpStatelessStatus","features":[87]},{"name":"DhcpStringDataOption","features":[87]},{"name":"DhcpSubnetDisabled","features":[87]},{"name":"DhcpSubnetDisabledSwitched","features":[87]},{"name":"DhcpSubnetEnabled","features":[87]},{"name":"DhcpSubnetEnabledSwitched","features":[87]},{"name":"DhcpSubnetInvalidState","features":[87]},{"name":"DhcpSubnetOptions","features":[87]},{"name":"DhcpUnaryElementTypeOption","features":[87]},{"name":"DhcpUndoRequestParams","features":[87]},{"name":"DhcpUpdatePolicyDescr","features":[87]},{"name":"DhcpUpdatePolicyDnsSuffix","features":[87]},{"name":"DhcpUpdatePolicyExpr","features":[87]},{"name":"DhcpUpdatePolicyName","features":[87]},{"name":"DhcpUpdatePolicyOrder","features":[87]},{"name":"DhcpUpdatePolicyRanges","features":[87]},{"name":"DhcpUpdatePolicyStatus","features":[87]},{"name":"DhcpV4AddPolicyRange","features":[87]},{"name":"DhcpV4CreateClientInfo","features":[1,87]},{"name":"DhcpV4CreateClientInfoEx","features":[1,87]},{"name":"DhcpV4CreatePolicy","features":[1,87]},{"name":"DhcpV4CreatePolicyEx","features":[1,87]},{"name":"DhcpV4DeletePolicy","features":[1,87]},{"name":"DhcpV4EnumPolicies","features":[1,87]},{"name":"DhcpV4EnumPoliciesEx","features":[1,87]},{"name":"DhcpV4EnumSubnetClients","features":[1,87]},{"name":"DhcpV4EnumSubnetClientsEx","features":[1,87]},{"name":"DhcpV4EnumSubnetReservations","features":[87]},{"name":"DhcpV4FailoverAddScopeToRelationship","features":[87]},{"name":"DhcpV4FailoverCreateRelationship","features":[87]},{"name":"DhcpV4FailoverDeleteRelationship","features":[87]},{"name":"DhcpV4FailoverDeleteScopeFromRelationship","features":[87]},{"name":"DhcpV4FailoverEnumRelationship","features":[87]},{"name":"DhcpV4FailoverGetAddressStatus","features":[87]},{"name":"DhcpV4FailoverGetClientInfo","features":[1,87]},{"name":"DhcpV4FailoverGetRelationship","features":[87]},{"name":"DhcpV4FailoverGetScopeRelationship","features":[87]},{"name":"DhcpV4FailoverGetScopeStatistics","features":[87]},{"name":"DhcpV4FailoverGetSystemTime","features":[87]},{"name":"DhcpV4FailoverSetRelationship","features":[87]},{"name":"DhcpV4FailoverTriggerAddrAllocation","features":[87]},{"name":"DhcpV4GetAllOptionValues","features":[1,87]},{"name":"DhcpV4GetClientInfo","features":[1,87]},{"name":"DhcpV4GetClientInfoEx","features":[1,87]},{"name":"DhcpV4GetFreeIPAddress","features":[87]},{"name":"DhcpV4GetOptionValue","features":[87]},{"name":"DhcpV4GetPolicy","features":[1,87]},{"name":"DhcpV4GetPolicyEx","features":[1,87]},{"name":"DhcpV4QueryPolicyEnforcement","features":[1,87]},{"name":"DhcpV4RemoveOptionValue","features":[87]},{"name":"DhcpV4RemovePolicyRange","features":[87]},{"name":"DhcpV4SetOptionValue","features":[87]},{"name":"DhcpV4SetOptionValues","features":[87]},{"name":"DhcpV4SetPolicy","features":[1,87]},{"name":"DhcpV4SetPolicyEnforcement","features":[1,87]},{"name":"DhcpV4SetPolicyEx","features":[1,87]},{"name":"DhcpV6CreateClientInfo","features":[87]},{"name":"DhcpV6GetFreeIPAddress","features":[87]},{"name":"DhcpV6GetStatelessStatistics","features":[87]},{"name":"DhcpV6GetStatelessStoreParams","features":[1,87]},{"name":"DhcpV6SetStatelessStoreParams","features":[1,87]},{"name":"DhcpWordOption","features":[87]},{"name":"Dhcpv6CApiCleanup","features":[87]},{"name":"Dhcpv6CApiInitialize","features":[87]},{"name":"Dhcpv6ClientDUID","features":[87]},{"name":"Dhcpv6ClientIpAddress","features":[87]},{"name":"Dhcpv6ClientName","features":[87]},{"name":"Dhcpv6ExcludedIpRanges","features":[87]},{"name":"Dhcpv6IpRanges","features":[87]},{"name":"Dhcpv6ReleasePrefix","features":[87]},{"name":"Dhcpv6RenewPrefix","features":[87]},{"name":"Dhcpv6RequestParams","features":[1,87]},{"name":"Dhcpv6RequestPrefix","features":[87]},{"name":"Dhcpv6ReservedIps","features":[87]},{"name":"ERROR_DDS_CLASS_DOES_NOT_EXIST","features":[87]},{"name":"ERROR_DDS_CLASS_EXISTS","features":[87]},{"name":"ERROR_DDS_DHCP_SERVER_NOT_FOUND","features":[87]},{"name":"ERROR_DDS_NO_DHCP_ROOT","features":[87]},{"name":"ERROR_DDS_NO_DS_AVAILABLE","features":[87]},{"name":"ERROR_DDS_OPTION_ALREADY_EXISTS","features":[87]},{"name":"ERROR_DDS_OPTION_DOES_NOT_EXIST","features":[87]},{"name":"ERROR_DDS_POSSIBLE_RANGE_CONFLICT","features":[87]},{"name":"ERROR_DDS_RANGE_DOES_NOT_EXIST","features":[87]},{"name":"ERROR_DDS_RESERVATION_CONFLICT","features":[87]},{"name":"ERROR_DDS_RESERVATION_NOT_PRESENT","features":[87]},{"name":"ERROR_DDS_SERVER_ADDRESS_MISMATCH","features":[87]},{"name":"ERROR_DDS_SERVER_ALREADY_EXISTS","features":[87]},{"name":"ERROR_DDS_SERVER_DOES_NOT_EXIST","features":[87]},{"name":"ERROR_DDS_SUBNET_EXISTS","features":[87]},{"name":"ERROR_DDS_SUBNET_HAS_DIFF_SSCOPE","features":[87]},{"name":"ERROR_DDS_SUBNET_NOT_PRESENT","features":[87]},{"name":"ERROR_DDS_TOO_MANY_ERRORS","features":[87]},{"name":"ERROR_DDS_UNEXPECTED_ERROR","features":[87]},{"name":"ERROR_DHCP_ADDRESS_NOT_AVAILABLE","features":[87]},{"name":"ERROR_DHCP_CANNOT_MODIFY_BINDINGS","features":[87]},{"name":"ERROR_DHCP_CANT_CHANGE_ATTRIBUTE","features":[87]},{"name":"ERROR_DHCP_CLASS_ALREADY_EXISTS","features":[87]},{"name":"ERROR_DHCP_CLASS_NOT_FOUND","features":[87]},{"name":"ERROR_DHCP_CLIENT_EXISTS","features":[87]},{"name":"ERROR_DHCP_DATABASE_INIT_FAILED","features":[87]},{"name":"ERROR_DHCP_DEFAULT_SCOPE_EXITS","features":[87]},{"name":"ERROR_DHCP_DELETE_BUILTIN_CLASS","features":[87]},{"name":"ERROR_DHCP_ELEMENT_CANT_REMOVE","features":[87]},{"name":"ERROR_DHCP_EXEMPTION_EXISTS","features":[87]},{"name":"ERROR_DHCP_EXEMPTION_NOT_PRESENT","features":[87]},{"name":"ERROR_DHCP_FO_ADDSCOPE_LEASES_NOT_SYNCED","features":[87]},{"name":"ERROR_DHCP_FO_BOOT_NOT_SUPPORTED","features":[87]},{"name":"ERROR_DHCP_FO_FEATURE_NOT_SUPPORTED","features":[87]},{"name":"ERROR_DHCP_FO_IPRANGE_TYPE_CONV_ILLEGAL","features":[87]},{"name":"ERROR_DHCP_FO_MAX_ADD_SCOPES","features":[87]},{"name":"ERROR_DHCP_FO_MAX_RELATIONSHIPS","features":[87]},{"name":"ERROR_DHCP_FO_NOT_SUPPORTED","features":[87]},{"name":"ERROR_DHCP_FO_RANGE_PART_OF_REL","features":[87]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_DOES_NOT_EXIST","features":[87]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_EXISTS","features":[87]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_NAME_TOO_LONG","features":[87]},{"name":"ERROR_DHCP_FO_RELATION_IS_SECONDARY","features":[87]},{"name":"ERROR_DHCP_FO_SCOPE_ALREADY_IN_RELATIONSHIP","features":[87]},{"name":"ERROR_DHCP_FO_SCOPE_NOT_IN_RELATIONSHIP","features":[87]},{"name":"ERROR_DHCP_FO_SCOPE_SYNC_IN_PROGRESS","features":[87]},{"name":"ERROR_DHCP_FO_STATE_NOT_NORMAL","features":[87]},{"name":"ERROR_DHCP_FO_TIME_OUT_OF_SYNC","features":[87]},{"name":"ERROR_DHCP_HARDWARE_ADDRESS_TYPE_ALREADY_EXEMPT","features":[87]},{"name":"ERROR_DHCP_INVALID_DELAY","features":[87]},{"name":"ERROR_DHCP_INVALID_DHCP_CLIENT","features":[87]},{"name":"ERROR_DHCP_INVALID_DHCP_MESSAGE","features":[87]},{"name":"ERROR_DHCP_INVALID_PARAMETER_OPTION32","features":[87]},{"name":"ERROR_DHCP_INVALID_POLICY_EXPRESSION","features":[87]},{"name":"ERROR_DHCP_INVALID_PROCESSING_ORDER","features":[87]},{"name":"ERROR_DHCP_INVALID_RANGE","features":[87]},{"name":"ERROR_DHCP_INVALID_SUBNET_PREFIX","features":[87]},{"name":"ERROR_DHCP_IPRANGE_CONV_ILLEGAL","features":[87]},{"name":"ERROR_DHCP_IPRANGE_EXITS","features":[87]},{"name":"ERROR_DHCP_IP_ADDRESS_IN_USE","features":[87]},{"name":"ERROR_DHCP_JET97_CONV_REQUIRED","features":[87]},{"name":"ERROR_DHCP_JET_CONV_REQUIRED","features":[87]},{"name":"ERROR_DHCP_JET_ERROR","features":[87]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_DOES_NOT_EXIST","features":[87]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_EXISTS","features":[87]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_RESERVATION_EXISTS","features":[87]},{"name":"ERROR_DHCP_LOG_FILE_PATH_TOO_LONG","features":[87]},{"name":"ERROR_DHCP_MSCOPE_EXISTS","features":[87]},{"name":"ERROR_DHCP_NAP_NOT_SUPPORTED","features":[87]},{"name":"ERROR_DHCP_NETWORK_CHANGED","features":[87]},{"name":"ERROR_DHCP_NETWORK_INIT_FAILED","features":[87]},{"name":"ERROR_DHCP_NOT_RESERVED_CLIENT","features":[87]},{"name":"ERROR_DHCP_NO_ADMIN_PERMISSION","features":[87]},{"name":"ERROR_DHCP_OPTION_EXITS","features":[87]},{"name":"ERROR_DHCP_OPTION_NOT_PRESENT","features":[87]},{"name":"ERROR_DHCP_OPTION_TYPE_MISMATCH","features":[87]},{"name":"ERROR_DHCP_POLICY_BAD_PARENT_EXPR","features":[87]},{"name":"ERROR_DHCP_POLICY_EDIT_FQDN_UNSUPPORTED","features":[87]},{"name":"ERROR_DHCP_POLICY_EXISTS","features":[87]},{"name":"ERROR_DHCP_POLICY_FQDN_OPTION_UNSUPPORTED","features":[87]},{"name":"ERROR_DHCP_POLICY_FQDN_RANGE_UNSUPPORTED","features":[87]},{"name":"ERROR_DHCP_POLICY_NOT_FOUND","features":[87]},{"name":"ERROR_DHCP_POLICY_RANGE_BAD","features":[87]},{"name":"ERROR_DHCP_POLICY_RANGE_EXISTS","features":[87]},{"name":"ERROR_DHCP_PRIMARY_NOT_FOUND","features":[87]},{"name":"ERROR_DHCP_RANGE_EXTENDED","features":[87]},{"name":"ERROR_DHCP_RANGE_FULL","features":[87]},{"name":"ERROR_DHCP_RANGE_INVALID_IN_SERVER_POLICY","features":[87]},{"name":"ERROR_DHCP_RANGE_TOO_SMALL","features":[87]},{"name":"ERROR_DHCP_REACHED_END_OF_SELECTION","features":[87]},{"name":"ERROR_DHCP_REGISTRY_INIT_FAILED","features":[87]},{"name":"ERROR_DHCP_RESERVEDIP_EXITS","features":[87]},{"name":"ERROR_DHCP_RESERVED_CLIENT","features":[87]},{"name":"ERROR_DHCP_ROGUE_DS_CONFLICT","features":[87]},{"name":"ERROR_DHCP_ROGUE_DS_UNREACHABLE","features":[87]},{"name":"ERROR_DHCP_ROGUE_INIT_FAILED","features":[87]},{"name":"ERROR_DHCP_ROGUE_NOT_AUTHORIZED","features":[87]},{"name":"ERROR_DHCP_ROGUE_NOT_OUR_ENTERPRISE","features":[87]},{"name":"ERROR_DHCP_ROGUE_SAMSHUTDOWN","features":[87]},{"name":"ERROR_DHCP_ROGUE_STANDALONE_IN_DS","features":[87]},{"name":"ERROR_DHCP_RPC_INIT_FAILED","features":[87]},{"name":"ERROR_DHCP_SCOPE_NAME_TOO_LONG","features":[87]},{"name":"ERROR_DHCP_SERVER_NAME_NOT_RESOLVED","features":[87]},{"name":"ERROR_DHCP_SERVER_NOT_REACHABLE","features":[87]},{"name":"ERROR_DHCP_SERVER_NOT_RUNNING","features":[87]},{"name":"ERROR_DHCP_SERVICE_PAUSED","features":[87]},{"name":"ERROR_DHCP_SUBNET_EXISTS","features":[87]},{"name":"ERROR_DHCP_SUBNET_EXITS","features":[87]},{"name":"ERROR_DHCP_SUBNET_NOT_PRESENT","features":[87]},{"name":"ERROR_DHCP_SUPER_SCOPE_NAME_TOO_LONG","features":[87]},{"name":"ERROR_DHCP_UNDEFINED_HARDWARE_ADDRESS_TYPE","features":[87]},{"name":"ERROR_DHCP_UNSUPPORTED_CLIENT","features":[87]},{"name":"ERROR_EXTEND_TOO_SMALL","features":[87]},{"name":"ERROR_LAST_DHCP_SERVER_ERROR","features":[87]},{"name":"ERROR_MSCOPE_RANGE_TOO_SMALL","features":[87]},{"name":"ERROR_SCOPE_RANGE_POLICY_RANGE_CONFLICT","features":[87]},{"name":"ERROR_SERVER_INVALID_BOOT_FILE_TABLE","features":[87]},{"name":"ERROR_SERVER_UNKNOWN_BOOT_FILE_NAME","features":[87]},{"name":"EXEMPT","features":[87]},{"name":"FILTER_STATUS_FULL_MATCH_IN_ALLOW_LIST","features":[87]},{"name":"FILTER_STATUS_FULL_MATCH_IN_DENY_LIST","features":[87]},{"name":"FILTER_STATUS_NONE","features":[87]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_ALLOW_LIST","features":[87]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_DENY_LIST","features":[87]},{"name":"FSM_STATE","features":[87]},{"name":"HWTYPE_ETHERNET_10MB","features":[87]},{"name":"HotStandby","features":[87]},{"name":"INIT","features":[87]},{"name":"LPDHCP_CONTROL","features":[87]},{"name":"LPDHCP_DELETE_CLIENT","features":[87]},{"name":"LPDHCP_DROP_SEND","features":[87]},{"name":"LPDHCP_ENTRY_POINT_FUNC","features":[1,87]},{"name":"LPDHCP_GIVE_ADDRESS","features":[87]},{"name":"LPDHCP_HANDLE_OPTIONS","features":[1,87]},{"name":"LPDHCP_NEWPKT","features":[1,87]},{"name":"LPDHCP_PROB","features":[87]},{"name":"LoadBalance","features":[87]},{"name":"MAC_ADDRESS_LENGTH","features":[87]},{"name":"MAX_PATTERN_LENGTH","features":[87]},{"name":"MCLT","features":[87]},{"name":"MODE","features":[87]},{"name":"NOQUARANTINE","features":[87]},{"name":"NOQUARINFO","features":[87]},{"name":"NORMAL","features":[87]},{"name":"NO_STATE","features":[87]},{"name":"OPTION_ALL_SUBNETS_MTU","features":[87]},{"name":"OPTION_ARP_CACHE_TIMEOUT","features":[87]},{"name":"OPTION_BE_A_MASK_SUPPLIER","features":[87]},{"name":"OPTION_BE_A_ROUTER","features":[87]},{"name":"OPTION_BOOTFILE_NAME","features":[87]},{"name":"OPTION_BOOT_FILE_SIZE","features":[87]},{"name":"OPTION_BROADCAST_ADDRESS","features":[87]},{"name":"OPTION_CLIENT_CLASS_INFO","features":[87]},{"name":"OPTION_CLIENT_ID","features":[87]},{"name":"OPTION_COOKIE_SERVERS","features":[87]},{"name":"OPTION_DEFAULT_TTL","features":[87]},{"name":"OPTION_DOMAIN_NAME","features":[87]},{"name":"OPTION_DOMAIN_NAME_SERVERS","features":[87]},{"name":"OPTION_END","features":[87]},{"name":"OPTION_ETHERNET_ENCAPSULATION","features":[87]},{"name":"OPTION_EXTENSIONS_PATH","features":[87]},{"name":"OPTION_HOST_NAME","features":[87]},{"name":"OPTION_IEN116_NAME_SERVERS","features":[87]},{"name":"OPTION_IMPRESS_SERVERS","features":[87]},{"name":"OPTION_KEEP_ALIVE_DATA_SIZE","features":[87]},{"name":"OPTION_KEEP_ALIVE_INTERVAL","features":[87]},{"name":"OPTION_LEASE_TIME","features":[87]},{"name":"OPTION_LOG_SERVERS","features":[87]},{"name":"OPTION_LPR_SERVERS","features":[87]},{"name":"OPTION_MAX_REASSEMBLY_SIZE","features":[87]},{"name":"OPTION_MERIT_DUMP_FILE","features":[87]},{"name":"OPTION_MESSAGE","features":[87]},{"name":"OPTION_MESSAGE_LENGTH","features":[87]},{"name":"OPTION_MESSAGE_TYPE","features":[87]},{"name":"OPTION_MSFT_IE_PROXY","features":[87]},{"name":"OPTION_MTU","features":[87]},{"name":"OPTION_NETBIOS_DATAGRAM_SERVER","features":[87]},{"name":"OPTION_NETBIOS_NAME_SERVER","features":[87]},{"name":"OPTION_NETBIOS_NODE_TYPE","features":[87]},{"name":"OPTION_NETBIOS_SCOPE_OPTION","features":[87]},{"name":"OPTION_NETWORK_INFO_SERVERS","features":[87]},{"name":"OPTION_NETWORK_INFO_SERVICE_DOM","features":[87]},{"name":"OPTION_NETWORK_TIME_SERVERS","features":[87]},{"name":"OPTION_NON_LOCAL_SOURCE_ROUTING","features":[87]},{"name":"OPTION_OK_TO_OVERLAY","features":[87]},{"name":"OPTION_PAD","features":[87]},{"name":"OPTION_PARAMETER_REQUEST_LIST","features":[87]},{"name":"OPTION_PERFORM_MASK_DISCOVERY","features":[87]},{"name":"OPTION_PERFORM_ROUTER_DISCOVERY","features":[87]},{"name":"OPTION_PMTU_AGING_TIMEOUT","features":[87]},{"name":"OPTION_PMTU_PLATEAU_TABLE","features":[87]},{"name":"OPTION_POLICY_FILTER_FOR_NLSR","features":[87]},{"name":"OPTION_REBIND_TIME","features":[87]},{"name":"OPTION_RENEWAL_TIME","features":[87]},{"name":"OPTION_REQUESTED_ADDRESS","features":[87]},{"name":"OPTION_RLP_SERVERS","features":[87]},{"name":"OPTION_ROOT_DISK","features":[87]},{"name":"OPTION_ROUTER_ADDRESS","features":[87]},{"name":"OPTION_ROUTER_SOLICITATION_ADDR","features":[87]},{"name":"OPTION_SERVER_IDENTIFIER","features":[87]},{"name":"OPTION_STATIC_ROUTES","features":[87]},{"name":"OPTION_SUBNET_MASK","features":[87]},{"name":"OPTION_SWAP_SERVER","features":[87]},{"name":"OPTION_TFTP_SERVER_NAME","features":[87]},{"name":"OPTION_TIME_OFFSET","features":[87]},{"name":"OPTION_TIME_SERVERS","features":[87]},{"name":"OPTION_TRAILERS","features":[87]},{"name":"OPTION_TTL","features":[87]},{"name":"OPTION_VENDOR_SPEC_INFO","features":[87]},{"name":"OPTION_XWINDOW_DISPLAY_MANAGER","features":[87]},{"name":"OPTION_XWINDOW_FONT_SERVER","features":[87]},{"name":"PARTNER_DOWN","features":[87]},{"name":"PAUSED","features":[87]},{"name":"PERCENTAGE","features":[87]},{"name":"POTENTIAL_CONFLICT","features":[87]},{"name":"PREVSTATE","features":[87]},{"name":"PROBATION","features":[87]},{"name":"PrimaryServer","features":[87]},{"name":"QUARANTINE_CONFIG_OPTION","features":[87]},{"name":"QUARANTINE_SCOPE_QUARPROFILE_OPTION","features":[87]},{"name":"QUARANTIN_OPTION_BASE","features":[87]},{"name":"QuarantineStatus","features":[87]},{"name":"RECOVER","features":[87]},{"name":"RECOVER_DONE","features":[87]},{"name":"RECOVER_WAIT","features":[87]},{"name":"RESOLUTION_INT","features":[87]},{"name":"RESTRICTEDACCESS","features":[87]},{"name":"SAFEPERIOD","features":[87]},{"name":"SCOPE_MIB_INFO","features":[87]},{"name":"SCOPE_MIB_INFO_V5","features":[87]},{"name":"SCOPE_MIB_INFO_V6","features":[87]},{"name":"SCOPE_MIB_INFO_VQ","features":[87]},{"name":"SHAREDSECRET","features":[87]},{"name":"SHUTDOWN","features":[87]},{"name":"STARTUP","features":[87]},{"name":"STATUS_NOPREFIX_AVAIL","features":[87]},{"name":"STATUS_NO_BINDING","features":[87]},{"name":"STATUS_NO_ERROR","features":[87]},{"name":"STATUS_UNSPECIFIED_FAILURE","features":[87]},{"name":"SecondaryServer","features":[87]},{"name":"Set_APIProtocolSupport","features":[87]},{"name":"Set_AuditLogState","features":[87]},{"name":"Set_BackupInterval","features":[87]},{"name":"Set_BackupPath","features":[87]},{"name":"Set_BootFileTable","features":[87]},{"name":"Set_DatabaseCleanupInterval","features":[87]},{"name":"Set_DatabaseLoggingFlag","features":[87]},{"name":"Set_DatabaseName","features":[87]},{"name":"Set_DatabasePath","features":[87]},{"name":"Set_DebugFlag","features":[87]},{"name":"Set_PingRetries","features":[87]},{"name":"Set_PreferredLifetime","features":[87]},{"name":"Set_PreferredLifetimeIATA","features":[87]},{"name":"Set_QuarantineDefFail","features":[87]},{"name":"Set_QuarantineON","features":[87]},{"name":"Set_RapidCommitFlag","features":[87]},{"name":"Set_RestoreFlag","features":[87]},{"name":"Set_T1","features":[87]},{"name":"Set_T2","features":[87]},{"name":"Set_UnicastFlag","features":[87]},{"name":"Set_ValidLifetime","features":[87]},{"name":"Set_ValidLifetimeIATA","features":[87]},{"name":"StatusCode","features":[87]},{"name":"V5_ADDRESS_BIT_BOTH_REC","features":[87]},{"name":"V5_ADDRESS_BIT_DELETED","features":[87]},{"name":"V5_ADDRESS_BIT_UNREGISTERED","features":[87]},{"name":"V5_ADDRESS_EX_BIT_DISABLE_PTR_RR","features":[87]},{"name":"V5_ADDRESS_STATE_ACTIVE","features":[87]},{"name":"V5_ADDRESS_STATE_DECLINED","features":[87]},{"name":"V5_ADDRESS_STATE_DOOM","features":[87]},{"name":"V5_ADDRESS_STATE_OFFERED","features":[87]},{"name":"WARNING_EXTENDED_LESS","features":[87]}],"444":[{"name":"DDR_MAX_IP_HINTS","features":[88]},{"name":"DNSREC_ADDITIONAL","features":[88]},{"name":"DNSREC_ANSWER","features":[88]},{"name":"DNSREC_AUTHORITY","features":[88]},{"name":"DNSREC_DELETE","features":[88]},{"name":"DNSREC_NOEXIST","features":[88]},{"name":"DNSREC_PREREQ","features":[88]},{"name":"DNSREC_QUESTION","features":[88]},{"name":"DNSREC_SECTION","features":[88]},{"name":"DNSREC_UPDATE","features":[88]},{"name":"DNSREC_ZONE","features":[88]},{"name":"DNSSEC_ALGORITHM_ECDSAP256_SHA256","features":[88]},{"name":"DNSSEC_ALGORITHM_ECDSAP384_SHA384","features":[88]},{"name":"DNSSEC_ALGORITHM_NULL","features":[88]},{"name":"DNSSEC_ALGORITHM_PRIVATE","features":[88]},{"name":"DNSSEC_ALGORITHM_RSAMD5","features":[88]},{"name":"DNSSEC_ALGORITHM_RSASHA1","features":[88]},{"name":"DNSSEC_ALGORITHM_RSASHA1_NSEC3","features":[88]},{"name":"DNSSEC_ALGORITHM_RSASHA256","features":[88]},{"name":"DNSSEC_ALGORITHM_RSASHA512","features":[88]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA1","features":[88]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA256","features":[88]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA384","features":[88]},{"name":"DNSSEC_KEY_FLAG_EXTEND","features":[88]},{"name":"DNSSEC_KEY_FLAG_FLAG10","features":[88]},{"name":"DNSSEC_KEY_FLAG_FLAG11","features":[88]},{"name":"DNSSEC_KEY_FLAG_FLAG2","features":[88]},{"name":"DNSSEC_KEY_FLAG_FLAG4","features":[88]},{"name":"DNSSEC_KEY_FLAG_FLAG5","features":[88]},{"name":"DNSSEC_KEY_FLAG_FLAG8","features":[88]},{"name":"DNSSEC_KEY_FLAG_FLAG9","features":[88]},{"name":"DNSSEC_KEY_FLAG_HOST","features":[88]},{"name":"DNSSEC_KEY_FLAG_NOAUTH","features":[88]},{"name":"DNSSEC_KEY_FLAG_NOCONF","features":[88]},{"name":"DNSSEC_KEY_FLAG_NTPE3","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG0","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG1","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG10","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG11","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG12","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG13","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG14","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG15","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG2","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG3","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG4","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG5","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG6","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG7","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG8","features":[88]},{"name":"DNSSEC_KEY_FLAG_SIG9","features":[88]},{"name":"DNSSEC_KEY_FLAG_USER","features":[88]},{"name":"DNSSEC_KEY_FLAG_ZONE","features":[88]},{"name":"DNSSEC_PROTOCOL_DNSSEC","features":[88]},{"name":"DNSSEC_PROTOCOL_EMAIL","features":[88]},{"name":"DNSSEC_PROTOCOL_IPSEC","features":[88]},{"name":"DNSSEC_PROTOCOL_NONE","features":[88]},{"name":"DNSSEC_PROTOCOL_TLS","features":[88]},{"name":"DNS_AAAA_DATA","features":[88]},{"name":"DNS_ADDR","features":[88]},{"name":"DNS_ADDRESS_STRING_LENGTH","features":[88]},{"name":"DNS_ADDR_ARRAY","features":[88]},{"name":"DNS_ADDR_MAX_SOCKADDR_LENGTH","features":[88]},{"name":"DNS_APPLICATION_SETTINGS","features":[88]},{"name":"DNS_APP_SETTINGS_EXCLUSIVE_SERVERS","features":[88]},{"name":"DNS_APP_SETTINGS_VERSION1","features":[88]},{"name":"DNS_ATMA_AESA_ADDR_LENGTH","features":[88]},{"name":"DNS_ATMA_DATA","features":[88]},{"name":"DNS_ATMA_FORMAT_AESA","features":[88]},{"name":"DNS_ATMA_FORMAT_E164","features":[88]},{"name":"DNS_ATMA_MAX_ADDR_LENGTH","features":[88]},{"name":"DNS_ATMA_MAX_RECORD_LENGTH","features":[88]},{"name":"DNS_A_DATA","features":[88]},{"name":"DNS_CHARSET","features":[88]},{"name":"DNS_CLASS_ALL","features":[88]},{"name":"DNS_CLASS_ANY","features":[88]},{"name":"DNS_CLASS_CHAOS","features":[88]},{"name":"DNS_CLASS_CSNET","features":[88]},{"name":"DNS_CLASS_HESIOD","features":[88]},{"name":"DNS_CLASS_INTERNET","features":[88]},{"name":"DNS_CLASS_NONE","features":[88]},{"name":"DNS_CLASS_UNICAST_RESPONSE","features":[88]},{"name":"DNS_COMPRESSED_QUESTION_NAME","features":[88]},{"name":"DNS_CONFIG_FLAG_ALLOC","features":[88]},{"name":"DNS_CONFIG_TYPE","features":[88]},{"name":"DNS_CONNECTION_IFINDEX_ENTRY","features":[88]},{"name":"DNS_CONNECTION_IFINDEX_LIST","features":[88]},{"name":"DNS_CONNECTION_NAME","features":[88]},{"name":"DNS_CONNECTION_NAME_LIST","features":[88]},{"name":"DNS_CONNECTION_NAME_MAX_LENGTH","features":[88]},{"name":"DNS_CONNECTION_POLICY_ENTRY","features":[88]},{"name":"DNS_CONNECTION_POLICY_ENTRY_LIST","features":[88]},{"name":"DNS_CONNECTION_POLICY_ENTRY_ONDEMAND","features":[88]},{"name":"DNS_CONNECTION_POLICY_TAG","features":[88]},{"name":"DNS_CONNECTION_PROXY_ELEMENT","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_CURRENT_VERSION","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_EX","features":[1,88]},{"name":"DNS_CONNECTION_PROXY_INFO_EXCEPTION_MAX_LENGTH","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_EXTRA_INFO_MAX_LENGTH","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_BYPASSLOCAL","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_DISABLED","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_FRIENDLY_NAME_MAX_LENGTH","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_PASSWORD_MAX_LENGTH","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_SERVER_MAX_LENGTH","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_CONFIG","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_SCRIPT","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_WPAD","features":[88]},{"name":"DNS_CONNECTION_PROXY_INFO_USERNAME_MAX_LENGTH","features":[88]},{"name":"DNS_CONNECTION_PROXY_LIST","features":[88]},{"name":"DNS_CONNECTION_PROXY_TYPE","features":[88]},{"name":"DNS_CONNECTION_PROXY_TYPE_HTTP","features":[88]},{"name":"DNS_CONNECTION_PROXY_TYPE_NULL","features":[88]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS4","features":[88]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS5","features":[88]},{"name":"DNS_CONNECTION_PROXY_TYPE_WAP","features":[88]},{"name":"DNS_CUSTOM_SERVER","features":[88]},{"name":"DNS_CUSTOM_SERVER_TYPE_DOH","features":[88]},{"name":"DNS_CUSTOM_SERVER_TYPE_UDP","features":[88]},{"name":"DNS_CUSTOM_SERVER_UDP_FALLBACK","features":[88]},{"name":"DNS_DHCID_DATA","features":[88]},{"name":"DNS_DS_DATA","features":[88]},{"name":"DNS_FREE_TYPE","features":[88]},{"name":"DNS_HEADER","features":[88]},{"name":"DNS_HEADER_EXT","features":[88]},{"name":"DNS_KEY_DATA","features":[88]},{"name":"DNS_LOC_DATA","features":[88]},{"name":"DNS_MAX_IP4_REVERSE_NAME_BUFFER_LENGTH","features":[88]},{"name":"DNS_MAX_IP4_REVERSE_NAME_LENGTH","features":[88]},{"name":"DNS_MAX_IP6_REVERSE_NAME_BUFFER_LENGTH","features":[88]},{"name":"DNS_MAX_IP6_REVERSE_NAME_LENGTH","features":[88]},{"name":"DNS_MAX_LABEL_BUFFER_LENGTH","features":[88]},{"name":"DNS_MAX_LABEL_LENGTH","features":[88]},{"name":"DNS_MAX_NAME_BUFFER_LENGTH","features":[88]},{"name":"DNS_MAX_NAME_LENGTH","features":[88]},{"name":"DNS_MAX_REVERSE_NAME_BUFFER_LENGTH","features":[88]},{"name":"DNS_MAX_REVERSE_NAME_LENGTH","features":[88]},{"name":"DNS_MAX_TEXT_STRING_LENGTH","features":[88]},{"name":"DNS_MESSAGE_BUFFER","features":[88]},{"name":"DNS_MINFO_DATAA","features":[88]},{"name":"DNS_MINFO_DATAW","features":[88]},{"name":"DNS_MX_DATAA","features":[88]},{"name":"DNS_MX_DATAW","features":[88]},{"name":"DNS_NAME_FORMAT","features":[88]},{"name":"DNS_NAPTR_DATAA","features":[88]},{"name":"DNS_NAPTR_DATAW","features":[88]},{"name":"DNS_NSEC3PARAM_DATA","features":[88]},{"name":"DNS_NSEC3_DATA","features":[88]},{"name":"DNS_NSEC_DATAA","features":[88]},{"name":"DNS_NSEC_DATAW","features":[88]},{"name":"DNS_NULL_DATA","features":[88]},{"name":"DNS_NXT_DATAA","features":[88]},{"name":"DNS_NXT_DATAW","features":[88]},{"name":"DNS_OPCODE_IQUERY","features":[88]},{"name":"DNS_OPCODE_NOTIFY","features":[88]},{"name":"DNS_OPCODE_QUERY","features":[88]},{"name":"DNS_OPCODE_SERVER_STATUS","features":[88]},{"name":"DNS_OPCODE_UNKNOWN","features":[88]},{"name":"DNS_OPCODE_UPDATE","features":[88]},{"name":"DNS_OPT_DATA","features":[88]},{"name":"DNS_PORT_HOST_ORDER","features":[88]},{"name":"DNS_PORT_NET_ORDER","features":[88]},{"name":"DNS_PROTOCOL_DOH","features":[88]},{"name":"DNS_PROTOCOL_NO_WIRE","features":[88]},{"name":"DNS_PROTOCOL_TCP","features":[88]},{"name":"DNS_PROTOCOL_UDP","features":[88]},{"name":"DNS_PROTOCOL_UNSPECIFIED","features":[88]},{"name":"DNS_PROXY_COMPLETION_ROUTINE","features":[88]},{"name":"DNS_PROXY_INFORMATION","features":[88]},{"name":"DNS_PROXY_INFORMATION_DEFAULT_SETTINGS","features":[88]},{"name":"DNS_PROXY_INFORMATION_DIRECT","features":[88]},{"name":"DNS_PROXY_INFORMATION_DOES_NOT_EXIST","features":[88]},{"name":"DNS_PROXY_INFORMATION_PROXY_NAME","features":[88]},{"name":"DNS_PROXY_INFORMATION_TYPE","features":[88]},{"name":"DNS_PTR_DATAA","features":[88]},{"name":"DNS_PTR_DATAW","features":[88]},{"name":"DNS_QUERY_ACCEPT_TRUNCATED_RESPONSE","features":[88]},{"name":"DNS_QUERY_ADDRCONFIG","features":[88]},{"name":"DNS_QUERY_APPEND_MULTILABEL","features":[88]},{"name":"DNS_QUERY_BYPASS_CACHE","features":[88]},{"name":"DNS_QUERY_CACHE_ONLY","features":[88]},{"name":"DNS_QUERY_CANCEL","features":[88]},{"name":"DNS_QUERY_DISABLE_IDN_ENCODING","features":[88]},{"name":"DNS_QUERY_DNSSEC_CHECKING_DISABLED","features":[88]},{"name":"DNS_QUERY_DNSSEC_OK","features":[88]},{"name":"DNS_QUERY_DONT_RESET_TTL_VALUES","features":[88]},{"name":"DNS_QUERY_DUAL_ADDR","features":[88]},{"name":"DNS_QUERY_MULTICAST_ONLY","features":[88]},{"name":"DNS_QUERY_NO_HOSTS_FILE","features":[88]},{"name":"DNS_QUERY_NO_LOCAL_NAME","features":[88]},{"name":"DNS_QUERY_NO_MULTICAST","features":[88]},{"name":"DNS_QUERY_NO_NETBT","features":[88]},{"name":"DNS_QUERY_NO_RECURSION","features":[88]},{"name":"DNS_QUERY_NO_WIRE_QUERY","features":[88]},{"name":"DNS_QUERY_OPTIONS","features":[88]},{"name":"DNS_QUERY_RAW_CANCEL","features":[88]},{"name":"DNS_QUERY_RAW_COMPLETION_ROUTINE","features":[1,88]},{"name":"DNS_QUERY_RAW_OPTION_BEST_EFFORT_PARSE","features":[88]},{"name":"DNS_QUERY_RAW_REQUEST","features":[1,88]},{"name":"DNS_QUERY_RAW_REQUEST_VERSION1","features":[88]},{"name":"DNS_QUERY_RAW_RESULT","features":[1,88]},{"name":"DNS_QUERY_RAW_RESULTS_VERSION1","features":[88]},{"name":"DNS_QUERY_REQUEST","features":[1,88]},{"name":"DNS_QUERY_REQUEST3","features":[1,88]},{"name":"DNS_QUERY_REQUEST_VERSION1","features":[88]},{"name":"DNS_QUERY_REQUEST_VERSION2","features":[88]},{"name":"DNS_QUERY_REQUEST_VERSION3","features":[88]},{"name":"DNS_QUERY_RESERVED","features":[88]},{"name":"DNS_QUERY_RESULT","features":[1,88]},{"name":"DNS_QUERY_RESULTS_VERSION1","features":[88]},{"name":"DNS_QUERY_RETURN_MESSAGE","features":[88]},{"name":"DNS_QUERY_STANDARD","features":[88]},{"name":"DNS_QUERY_TREAT_AS_FQDN","features":[88]},{"name":"DNS_QUERY_USE_TCP_ONLY","features":[88]},{"name":"DNS_QUERY_WIRE_ONLY","features":[88]},{"name":"DNS_RCLASS_ALL","features":[88]},{"name":"DNS_RCLASS_ANY","features":[88]},{"name":"DNS_RCLASS_CHAOS","features":[88]},{"name":"DNS_RCLASS_CSNET","features":[88]},{"name":"DNS_RCLASS_HESIOD","features":[88]},{"name":"DNS_RCLASS_INTERNET","features":[88]},{"name":"DNS_RCLASS_MDNS_CACHE_FLUSH","features":[88]},{"name":"DNS_RCLASS_NONE","features":[88]},{"name":"DNS_RCLASS_UNICAST_RESPONSE","features":[88]},{"name":"DNS_RCODE_BADKEY","features":[88]},{"name":"DNS_RCODE_BADSIG","features":[88]},{"name":"DNS_RCODE_BADTIME","features":[88]},{"name":"DNS_RCODE_BADVERS","features":[88]},{"name":"DNS_RCODE_FORMAT_ERROR","features":[88]},{"name":"DNS_RCODE_FORMERR","features":[88]},{"name":"DNS_RCODE_MAX","features":[88]},{"name":"DNS_RCODE_NAME_ERROR","features":[88]},{"name":"DNS_RCODE_NOERROR","features":[88]},{"name":"DNS_RCODE_NOTAUTH","features":[88]},{"name":"DNS_RCODE_NOTIMPL","features":[88]},{"name":"DNS_RCODE_NOTZONE","features":[88]},{"name":"DNS_RCODE_NOT_IMPLEMENTED","features":[88]},{"name":"DNS_RCODE_NO_ERROR","features":[88]},{"name":"DNS_RCODE_NXDOMAIN","features":[88]},{"name":"DNS_RCODE_NXRRSET","features":[88]},{"name":"DNS_RCODE_REFUSED","features":[88]},{"name":"DNS_RCODE_SERVER_FAILURE","features":[88]},{"name":"DNS_RCODE_SERVFAIL","features":[88]},{"name":"DNS_RCODE_YXDOMAIN","features":[88]},{"name":"DNS_RCODE_YXRRSET","features":[88]},{"name":"DNS_RECORDA","features":[1,88]},{"name":"DNS_RECORDW","features":[1,88]},{"name":"DNS_RECORD_FLAGS","features":[88]},{"name":"DNS_RECORD_OPTW","features":[1,88]},{"name":"DNS_RFC_MAX_UDP_PACKET_LENGTH","features":[88]},{"name":"DNS_RRSET","features":[1,88]},{"name":"DNS_RTYPE_A","features":[88]},{"name":"DNS_RTYPE_A6","features":[88]},{"name":"DNS_RTYPE_AAAA","features":[88]},{"name":"DNS_RTYPE_AFSDB","features":[88]},{"name":"DNS_RTYPE_ALL","features":[88]},{"name":"DNS_RTYPE_ANY","features":[88]},{"name":"DNS_RTYPE_ATMA","features":[88]},{"name":"DNS_RTYPE_AXFR","features":[88]},{"name":"DNS_RTYPE_CERT","features":[88]},{"name":"DNS_RTYPE_CNAME","features":[88]},{"name":"DNS_RTYPE_DHCID","features":[88]},{"name":"DNS_RTYPE_DNAME","features":[88]},{"name":"DNS_RTYPE_DNSKEY","features":[88]},{"name":"DNS_RTYPE_DS","features":[88]},{"name":"DNS_RTYPE_EID","features":[88]},{"name":"DNS_RTYPE_GID","features":[88]},{"name":"DNS_RTYPE_GPOS","features":[88]},{"name":"DNS_RTYPE_HINFO","features":[88]},{"name":"DNS_RTYPE_ISDN","features":[88]},{"name":"DNS_RTYPE_IXFR","features":[88]},{"name":"DNS_RTYPE_KEY","features":[88]},{"name":"DNS_RTYPE_KX","features":[88]},{"name":"DNS_RTYPE_LOC","features":[88]},{"name":"DNS_RTYPE_MAILA","features":[88]},{"name":"DNS_RTYPE_MAILB","features":[88]},{"name":"DNS_RTYPE_MB","features":[88]},{"name":"DNS_RTYPE_MD","features":[88]},{"name":"DNS_RTYPE_MF","features":[88]},{"name":"DNS_RTYPE_MG","features":[88]},{"name":"DNS_RTYPE_MINFO","features":[88]},{"name":"DNS_RTYPE_MR","features":[88]},{"name":"DNS_RTYPE_MX","features":[88]},{"name":"DNS_RTYPE_NAPTR","features":[88]},{"name":"DNS_RTYPE_NIMLOC","features":[88]},{"name":"DNS_RTYPE_NS","features":[88]},{"name":"DNS_RTYPE_NSAP","features":[88]},{"name":"DNS_RTYPE_NSAPPTR","features":[88]},{"name":"DNS_RTYPE_NSEC","features":[88]},{"name":"DNS_RTYPE_NSEC3","features":[88]},{"name":"DNS_RTYPE_NSEC3PARAM","features":[88]},{"name":"DNS_RTYPE_NULL","features":[88]},{"name":"DNS_RTYPE_NXT","features":[88]},{"name":"DNS_RTYPE_OPT","features":[88]},{"name":"DNS_RTYPE_PTR","features":[88]},{"name":"DNS_RTYPE_PX","features":[88]},{"name":"DNS_RTYPE_RP","features":[88]},{"name":"DNS_RTYPE_RRSIG","features":[88]},{"name":"DNS_RTYPE_RT","features":[88]},{"name":"DNS_RTYPE_SIG","features":[88]},{"name":"DNS_RTYPE_SINK","features":[88]},{"name":"DNS_RTYPE_SOA","features":[88]},{"name":"DNS_RTYPE_SRV","features":[88]},{"name":"DNS_RTYPE_TEXT","features":[88]},{"name":"DNS_RTYPE_TKEY","features":[88]},{"name":"DNS_RTYPE_TLSA","features":[88]},{"name":"DNS_RTYPE_TSIG","features":[88]},{"name":"DNS_RTYPE_UID","features":[88]},{"name":"DNS_RTYPE_UINFO","features":[88]},{"name":"DNS_RTYPE_UNSPEC","features":[88]},{"name":"DNS_RTYPE_WINS","features":[88]},{"name":"DNS_RTYPE_WINSR","features":[88]},{"name":"DNS_RTYPE_WKS","features":[88]},{"name":"DNS_RTYPE_X25","features":[88]},{"name":"DNS_SECTION","features":[88]},{"name":"DNS_SERVICE_BROWSE_REQUEST","features":[1,88]},{"name":"DNS_SERVICE_CANCEL","features":[88]},{"name":"DNS_SERVICE_INSTANCE","features":[88]},{"name":"DNS_SERVICE_REGISTER_REQUEST","features":[1,88]},{"name":"DNS_SERVICE_RESOLVE_REQUEST","features":[88]},{"name":"DNS_SIG_DATAA","features":[88]},{"name":"DNS_SIG_DATAW","features":[88]},{"name":"DNS_SOA_DATAA","features":[88]},{"name":"DNS_SOA_DATAW","features":[88]},{"name":"DNS_SRV_DATAA","features":[88]},{"name":"DNS_SRV_DATAW","features":[88]},{"name":"DNS_SVCB_DATA","features":[88]},{"name":"DNS_SVCB_PARAM","features":[88]},{"name":"DNS_SVCB_PARAM_ALPN","features":[88]},{"name":"DNS_SVCB_PARAM_ALPN_ID","features":[88]},{"name":"DNS_SVCB_PARAM_IPV4","features":[88]},{"name":"DNS_SVCB_PARAM_IPV6","features":[88]},{"name":"DNS_SVCB_PARAM_MANDATORY","features":[88]},{"name":"DNS_SVCB_PARAM_TYPE","features":[88]},{"name":"DNS_SVCB_PARAM_UNKNOWN","features":[88]},{"name":"DNS_TKEY_DATAA","features":[1,88]},{"name":"DNS_TKEY_DATAW","features":[1,88]},{"name":"DNS_TKEY_MODE_DIFFIE_HELLMAN","features":[88]},{"name":"DNS_TKEY_MODE_GSS","features":[88]},{"name":"DNS_TKEY_MODE_RESOLVER_ASSIGN","features":[88]},{"name":"DNS_TKEY_MODE_SERVER_ASSIGN","features":[88]},{"name":"DNS_TLSA_DATA","features":[88]},{"name":"DNS_TSIG_DATAA","features":[1,88]},{"name":"DNS_TSIG_DATAW","features":[1,88]},{"name":"DNS_TXT_DATAA","features":[88]},{"name":"DNS_TXT_DATAW","features":[88]},{"name":"DNS_TYPE","features":[88]},{"name":"DNS_TYPE_A","features":[88]},{"name":"DNS_TYPE_A6","features":[88]},{"name":"DNS_TYPE_AAAA","features":[88]},{"name":"DNS_TYPE_ADDRS","features":[88]},{"name":"DNS_TYPE_AFSDB","features":[88]},{"name":"DNS_TYPE_ALL","features":[88]},{"name":"DNS_TYPE_ANY","features":[88]},{"name":"DNS_TYPE_ATMA","features":[88]},{"name":"DNS_TYPE_AXFR","features":[88]},{"name":"DNS_TYPE_CERT","features":[88]},{"name":"DNS_TYPE_CNAME","features":[88]},{"name":"DNS_TYPE_DHCID","features":[88]},{"name":"DNS_TYPE_DNAME","features":[88]},{"name":"DNS_TYPE_DNSKEY","features":[88]},{"name":"DNS_TYPE_DS","features":[88]},{"name":"DNS_TYPE_EID","features":[88]},{"name":"DNS_TYPE_GID","features":[88]},{"name":"DNS_TYPE_GPOS","features":[88]},{"name":"DNS_TYPE_HINFO","features":[88]},{"name":"DNS_TYPE_HTTPS","features":[88]},{"name":"DNS_TYPE_ISDN","features":[88]},{"name":"DNS_TYPE_IXFR","features":[88]},{"name":"DNS_TYPE_KEY","features":[88]},{"name":"DNS_TYPE_KX","features":[88]},{"name":"DNS_TYPE_LOC","features":[88]},{"name":"DNS_TYPE_MAILA","features":[88]},{"name":"DNS_TYPE_MAILB","features":[88]},{"name":"DNS_TYPE_MB","features":[88]},{"name":"DNS_TYPE_MD","features":[88]},{"name":"DNS_TYPE_MF","features":[88]},{"name":"DNS_TYPE_MG","features":[88]},{"name":"DNS_TYPE_MINFO","features":[88]},{"name":"DNS_TYPE_MR","features":[88]},{"name":"DNS_TYPE_MX","features":[88]},{"name":"DNS_TYPE_NAPTR","features":[88]},{"name":"DNS_TYPE_NBSTAT","features":[88]},{"name":"DNS_TYPE_NIMLOC","features":[88]},{"name":"DNS_TYPE_NS","features":[88]},{"name":"DNS_TYPE_NSAP","features":[88]},{"name":"DNS_TYPE_NSAPPTR","features":[88]},{"name":"DNS_TYPE_NSEC","features":[88]},{"name":"DNS_TYPE_NSEC3","features":[88]},{"name":"DNS_TYPE_NSEC3PARAM","features":[88]},{"name":"DNS_TYPE_NULL","features":[88]},{"name":"DNS_TYPE_NXT","features":[88]},{"name":"DNS_TYPE_OPT","features":[88]},{"name":"DNS_TYPE_PTR","features":[88]},{"name":"DNS_TYPE_PX","features":[88]},{"name":"DNS_TYPE_RP","features":[88]},{"name":"DNS_TYPE_RRSIG","features":[88]},{"name":"DNS_TYPE_RT","features":[88]},{"name":"DNS_TYPE_SIG","features":[88]},{"name":"DNS_TYPE_SINK","features":[88]},{"name":"DNS_TYPE_SOA","features":[88]},{"name":"DNS_TYPE_SRV","features":[88]},{"name":"DNS_TYPE_SVCB","features":[88]},{"name":"DNS_TYPE_TEXT","features":[88]},{"name":"DNS_TYPE_TKEY","features":[88]},{"name":"DNS_TYPE_TLSA","features":[88]},{"name":"DNS_TYPE_TSIG","features":[88]},{"name":"DNS_TYPE_UID","features":[88]},{"name":"DNS_TYPE_UINFO","features":[88]},{"name":"DNS_TYPE_UNSPEC","features":[88]},{"name":"DNS_TYPE_WINS","features":[88]},{"name":"DNS_TYPE_WINSR","features":[88]},{"name":"DNS_TYPE_WKS","features":[88]},{"name":"DNS_TYPE_X25","features":[88]},{"name":"DNS_TYPE_ZERO","features":[88]},{"name":"DNS_UNKNOWN_DATA","features":[88]},{"name":"DNS_UPDATE_CACHE_SECURITY_CONTEXT","features":[88]},{"name":"DNS_UPDATE_FORCE_SECURITY_NEGO","features":[88]},{"name":"DNS_UPDATE_REMOTE_SERVER","features":[88]},{"name":"DNS_UPDATE_RESERVED","features":[88]},{"name":"DNS_UPDATE_SECURITY_OFF","features":[88]},{"name":"DNS_UPDATE_SECURITY_ON","features":[88]},{"name":"DNS_UPDATE_SECURITY_ONLY","features":[88]},{"name":"DNS_UPDATE_SECURITY_USE_DEFAULT","features":[88]},{"name":"DNS_UPDATE_SKIP_NO_UPDATE_ADAPTERS","features":[88]},{"name":"DNS_UPDATE_TEST_USE_LOCAL_SYS_ACCT","features":[88]},{"name":"DNS_UPDATE_TRY_ALL_MASTER_SERVERS","features":[88]},{"name":"DNS_VALSVR_ERROR_INVALID_ADDR","features":[88]},{"name":"DNS_VALSVR_ERROR_INVALID_NAME","features":[88]},{"name":"DNS_VALSVR_ERROR_NO_AUTH","features":[88]},{"name":"DNS_VALSVR_ERROR_NO_RESPONSE","features":[88]},{"name":"DNS_VALSVR_ERROR_NO_TCP","features":[88]},{"name":"DNS_VALSVR_ERROR_REFUSED","features":[88]},{"name":"DNS_VALSVR_ERROR_UNKNOWN","features":[88]},{"name":"DNS_VALSVR_ERROR_UNREACHABLE","features":[88]},{"name":"DNS_WINSR_DATAA","features":[88]},{"name":"DNS_WINSR_DATAW","features":[88]},{"name":"DNS_WINS_DATA","features":[88]},{"name":"DNS_WINS_FLAG_LOCAL","features":[88]},{"name":"DNS_WINS_FLAG_SCOPE","features":[88]},{"name":"DNS_WIRE_QUESTION","features":[88]},{"name":"DNS_WIRE_RECORD","features":[88]},{"name":"DNS_WKS_DATA","features":[88]},{"name":"DnsAcquireContextHandle_A","features":[1,88]},{"name":"DnsAcquireContextHandle_W","features":[1,88]},{"name":"DnsCancelQuery","features":[88]},{"name":"DnsCancelQueryRaw","features":[88]},{"name":"DnsCharSetAnsi","features":[88]},{"name":"DnsCharSetUnicode","features":[88]},{"name":"DnsCharSetUnknown","features":[88]},{"name":"DnsCharSetUtf8","features":[88]},{"name":"DnsConfigAdapterDomainName_A","features":[88]},{"name":"DnsConfigAdapterDomainName_UTF8","features":[88]},{"name":"DnsConfigAdapterDomainName_W","features":[88]},{"name":"DnsConfigAdapterHostNameRegistrationEnabled","features":[88]},{"name":"DnsConfigAdapterInfo","features":[88]},{"name":"DnsConfigAddressRegistrationMaxCount","features":[88]},{"name":"DnsConfigDnsServerList","features":[88]},{"name":"DnsConfigFullHostName_A","features":[88]},{"name":"DnsConfigFullHostName_UTF8","features":[88]},{"name":"DnsConfigFullHostName_W","features":[88]},{"name":"DnsConfigHostName_A","features":[88]},{"name":"DnsConfigHostName_UTF8","features":[88]},{"name":"DnsConfigHostName_W","features":[88]},{"name":"DnsConfigNameServer","features":[88]},{"name":"DnsConfigPrimaryDomainName_A","features":[88]},{"name":"DnsConfigPrimaryDomainName_UTF8","features":[88]},{"name":"DnsConfigPrimaryDomainName_W","features":[88]},{"name":"DnsConfigPrimaryHostNameRegistrationEnabled","features":[88]},{"name":"DnsConfigSearchList","features":[88]},{"name":"DnsConnectionDeletePolicyEntries","features":[88]},{"name":"DnsConnectionDeleteProxyInfo","features":[88]},{"name":"DnsConnectionFreeNameList","features":[88]},{"name":"DnsConnectionFreeProxyInfo","features":[88]},{"name":"DnsConnectionFreeProxyInfoEx","features":[1,88]},{"name":"DnsConnectionFreeProxyList","features":[88]},{"name":"DnsConnectionGetNameList","features":[88]},{"name":"DnsConnectionGetProxyInfo","features":[88]},{"name":"DnsConnectionGetProxyInfoForHostUrl","features":[1,88]},{"name":"DnsConnectionGetProxyInfoForHostUrlEx","features":[1,88]},{"name":"DnsConnectionGetProxyList","features":[88]},{"name":"DnsConnectionSetPolicyEntries","features":[88]},{"name":"DnsConnectionSetProxyInfo","features":[88]},{"name":"DnsConnectionUpdateIfIndexTable","features":[88]},{"name":"DnsExtractRecordsFromMessage_UTF8","features":[1,88]},{"name":"DnsExtractRecordsFromMessage_W","features":[1,88]},{"name":"DnsFree","features":[88]},{"name":"DnsFreeCustomServers","features":[88]},{"name":"DnsFreeFlat","features":[88]},{"name":"DnsFreeParsedMessageFields","features":[88]},{"name":"DnsFreeProxyName","features":[88]},{"name":"DnsFreeRecordList","features":[88]},{"name":"DnsGetApplicationSettings","features":[88]},{"name":"DnsGetProxyInformation","features":[88]},{"name":"DnsModifyRecordsInSet_A","features":[1,88]},{"name":"DnsModifyRecordsInSet_UTF8","features":[1,88]},{"name":"DnsModifyRecordsInSet_W","features":[1,88]},{"name":"DnsNameCompare_A","features":[1,88]},{"name":"DnsNameCompare_W","features":[1,88]},{"name":"DnsNameDomain","features":[88]},{"name":"DnsNameDomainLabel","features":[88]},{"name":"DnsNameHostnameFull","features":[88]},{"name":"DnsNameHostnameLabel","features":[88]},{"name":"DnsNameSrvRecord","features":[88]},{"name":"DnsNameValidateTld","features":[88]},{"name":"DnsNameWildcard","features":[88]},{"name":"DnsQueryConfig","features":[88]},{"name":"DnsQueryEx","features":[1,88]},{"name":"DnsQueryRaw","features":[1,88]},{"name":"DnsQueryRawResultFree","features":[1,88]},{"name":"DnsQuery_A","features":[1,88]},{"name":"DnsQuery_UTF8","features":[1,88]},{"name":"DnsQuery_W","features":[1,88]},{"name":"DnsRecordCompare","features":[1,88]},{"name":"DnsRecordCopyEx","features":[1,88]},{"name":"DnsRecordSetCompare","features":[1,88]},{"name":"DnsRecordSetCopyEx","features":[1,88]},{"name":"DnsRecordSetDetach","features":[1,88]},{"name":"DnsReleaseContextHandle","features":[1,88]},{"name":"DnsReplaceRecordSetA","features":[1,88]},{"name":"DnsReplaceRecordSetUTF8","features":[1,88]},{"name":"DnsReplaceRecordSetW","features":[1,88]},{"name":"DnsSectionAddtional","features":[88]},{"name":"DnsSectionAnswer","features":[88]},{"name":"DnsSectionAuthority","features":[88]},{"name":"DnsSectionQuestion","features":[88]},{"name":"DnsServiceBrowse","features":[1,88]},{"name":"DnsServiceBrowseCancel","features":[88]},{"name":"DnsServiceConstructInstance","features":[88]},{"name":"DnsServiceCopyInstance","features":[88]},{"name":"DnsServiceDeRegister","features":[1,88]},{"name":"DnsServiceFreeInstance","features":[88]},{"name":"DnsServiceRegister","features":[1,88]},{"name":"DnsServiceRegisterCancel","features":[88]},{"name":"DnsServiceResolve","features":[88]},{"name":"DnsServiceResolveCancel","features":[88]},{"name":"DnsSetApplicationSettings","features":[88]},{"name":"DnsStartMulticastQuery","features":[1,88]},{"name":"DnsStopMulticastQuery","features":[88]},{"name":"DnsSvcbParamAlpn","features":[88]},{"name":"DnsSvcbParamDohPath","features":[88]},{"name":"DnsSvcbParamDohPathOpenDns","features":[88]},{"name":"DnsSvcbParamDohPathQuad9","features":[88]},{"name":"DnsSvcbParamEch","features":[88]},{"name":"DnsSvcbParamIpv4Hint","features":[88]},{"name":"DnsSvcbParamIpv6Hint","features":[88]},{"name":"DnsSvcbParamMandatory","features":[88]},{"name":"DnsSvcbParamNoDefaultAlpn","features":[88]},{"name":"DnsSvcbParamPort","features":[88]},{"name":"DnsValidateName_A","features":[88]},{"name":"DnsValidateName_UTF8","features":[88]},{"name":"DnsValidateName_W","features":[88]},{"name":"DnsWriteQuestionToBuffer_UTF8","features":[1,88]},{"name":"DnsWriteQuestionToBuffer_W","features":[1,88]},{"name":"IP4_ADDRESS_STRING_BUFFER_LENGTH","features":[88]},{"name":"IP4_ADDRESS_STRING_LENGTH","features":[88]},{"name":"IP4_ARRAY","features":[88]},{"name":"IP6_ADDRESS","features":[88]},{"name":"IP6_ADDRESS","features":[88]},{"name":"IP6_ADDRESS_STRING_BUFFER_LENGTH","features":[88]},{"name":"IP6_ADDRESS_STRING_LENGTH","features":[88]},{"name":"MDNS_QUERY_HANDLE","features":[88]},{"name":"MDNS_QUERY_REQUEST","features":[1,88]},{"name":"PDNS_QUERY_COMPLETION_ROUTINE","features":[1,88]},{"name":"PDNS_SERVICE_BROWSE_CALLBACK","features":[1,88]},{"name":"PDNS_SERVICE_REGISTER_COMPLETE","features":[88]},{"name":"PDNS_SERVICE_RESOLVE_COMPLETE","features":[88]},{"name":"PMDNS_QUERY_CALLBACK","features":[1,88]},{"name":"SIZEOF_IP4_ADDRESS","features":[88]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_CONNECTION_MANAGER","features":[88]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_DEFAULT","features":[88]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_WWWPT","features":[88]},{"name":"_DnsRecordOptA","features":[1,88]}],"445":[{"name":"ICW_ALREADYRUN","features":[89]},{"name":"ICW_CHECKSTATUS","features":[89]},{"name":"ICW_FULLPRESENT","features":[89]},{"name":"ICW_FULL_SMARTSTART","features":[89]},{"name":"ICW_LAUNCHEDFULL","features":[89]},{"name":"ICW_LAUNCHEDMANUAL","features":[89]},{"name":"ICW_LAUNCHFULL","features":[89]},{"name":"ICW_LAUNCHMANUAL","features":[89]},{"name":"ICW_MANUALPRESENT","features":[89]},{"name":"ICW_MAX_ACCTNAME","features":[89]},{"name":"ICW_MAX_EMAILADDR","features":[89]},{"name":"ICW_MAX_EMAILNAME","features":[89]},{"name":"ICW_MAX_LOGONNAME","features":[89]},{"name":"ICW_MAX_PASSWORD","features":[89]},{"name":"ICW_MAX_RASNAME","features":[89]},{"name":"ICW_MAX_SERVERNAME","features":[89]},{"name":"ICW_REGKEYCOMPLETED","features":[89]},{"name":"ICW_REGPATHSETTINGS","features":[89]},{"name":"ICW_USEDEFAULTS","features":[89]},{"name":"ICW_USE_SHELLNEXT","features":[89]},{"name":"PFNCHECKCONNECTIONWIZARD","features":[89]},{"name":"PFNSETSHELLNEXT","features":[89]}],"446":[{"name":"ANY_SIZE","features":[90]},{"name":"ARP_SEND_REPLY","features":[90]},{"name":"AddIPAddress","features":[90]},{"name":"BEST_IF","features":[90]},{"name":"BEST_ROUTE","features":[90]},{"name":"BROADCAST_NODETYPE","features":[90]},{"name":"CancelIPChangeNotify","features":[1,90,6]},{"name":"CancelIfTimestampConfigChange","features":[90]},{"name":"CancelMibChangeNotify2","features":[1,90]},{"name":"CaptureInterfaceHardwareCrossTimestamp","features":[90,16]},{"name":"ConvertCompartmentGuidToId","features":[1,90]},{"name":"ConvertCompartmentIdToGuid","features":[1,90]},{"name":"ConvertInterfaceAliasToLuid","features":[1,90,16]},{"name":"ConvertInterfaceGuidToLuid","features":[1,90,16]},{"name":"ConvertInterfaceIndexToLuid","features":[1,90,16]},{"name":"ConvertInterfaceLuidToAlias","features":[1,90,16]},{"name":"ConvertInterfaceLuidToGuid","features":[1,90,16]},{"name":"ConvertInterfaceLuidToIndex","features":[1,90,16]},{"name":"ConvertInterfaceLuidToNameA","features":[1,90,16]},{"name":"ConvertInterfaceLuidToNameW","features":[1,90,16]},{"name":"ConvertInterfaceNameToLuidA","features":[1,90,16]},{"name":"ConvertInterfaceNameToLuidW","features":[1,90,16]},{"name":"ConvertIpv4MaskToLength","features":[1,90]},{"name":"ConvertLengthToIpv4Mask","features":[1,90]},{"name":"CreateAnycastIpAddressEntry","features":[1,90,16,15]},{"name":"CreateIpForwardEntry","features":[90,15]},{"name":"CreateIpForwardEntry2","features":[1,90,16,15]},{"name":"CreateIpNetEntry","features":[90]},{"name":"CreateIpNetEntry2","features":[1,90,16,15]},{"name":"CreatePersistentTcpPortReservation","features":[90]},{"name":"CreatePersistentUdpPortReservation","features":[90]},{"name":"CreateProxyArpEntry","features":[90]},{"name":"CreateSortedAddressPairs","features":[1,90,15]},{"name":"CreateUnicastIpAddressEntry","features":[1,90,16,15]},{"name":"DEFAULT_MINIMUM_ENTITIES","features":[90]},{"name":"DEST_LONGER","features":[90]},{"name":"DEST_MATCHING","features":[90]},{"name":"DEST_SHORTER","features":[90]},{"name":"DNS_DDR_ADAPTER_ENABLE_DOH","features":[90]},{"name":"DNS_DDR_ADAPTER_ENABLE_UDP_FALLBACK","features":[90]},{"name":"DNS_DOH_AUTO_UPGRADE_SERVER","features":[90]},{"name":"DNS_DOH_POLICY_AUTO","features":[90]},{"name":"DNS_DOH_POLICY_DISABLE","features":[90]},{"name":"DNS_DOH_POLICY_NOT_CONFIGURED","features":[90]},{"name":"DNS_DOH_POLICY_REQUIRED","features":[90]},{"name":"DNS_DOH_SERVER_SETTINGS","features":[90]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE","features":[90]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_AUTO","features":[90]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_DDR","features":[90]},{"name":"DNS_DOH_SERVER_SETTINGS_FALLBACK_TO_UDP","features":[90]},{"name":"DNS_ENABLE_DDR","features":[90]},{"name":"DNS_ENABLE_DOH","features":[90]},{"name":"DNS_INTERFACE_SETTINGS","features":[90]},{"name":"DNS_INTERFACE_SETTINGS3","features":[90]},{"name":"DNS_INTERFACE_SETTINGS4","features":[90]},{"name":"DNS_INTERFACE_SETTINGS_EX","features":[90]},{"name":"DNS_INTERFACE_SETTINGS_VERSION1","features":[90]},{"name":"DNS_INTERFACE_SETTINGS_VERSION2","features":[90]},{"name":"DNS_INTERFACE_SETTINGS_VERSION3","features":[90]},{"name":"DNS_INTERFACE_SETTINGS_VERSION4","features":[90]},{"name":"DNS_SERVER_PROPERTY","features":[90]},{"name":"DNS_SERVER_PROPERTY_TYPE","features":[90]},{"name":"DNS_SERVER_PROPERTY_TYPES","features":[90]},{"name":"DNS_SERVER_PROPERTY_VERSION1","features":[90]},{"name":"DNS_SETTINGS","features":[90]},{"name":"DNS_SETTINGS2","features":[90]},{"name":"DNS_SETTINGS_ENABLE_LLMNR","features":[90]},{"name":"DNS_SETTINGS_QUERY_ADAPTER_NAME","features":[90]},{"name":"DNS_SETTINGS_VERSION1","features":[90]},{"name":"DNS_SETTINGS_VERSION2","features":[90]},{"name":"DNS_SETTING_DDR","features":[90]},{"name":"DNS_SETTING_DISABLE_UNCONSTRAINED_QUERIES","features":[90]},{"name":"DNS_SETTING_DOH","features":[90]},{"name":"DNS_SETTING_DOH_PROFILE","features":[90]},{"name":"DNS_SETTING_DOMAIN","features":[90]},{"name":"DNS_SETTING_ENCRYPTED_DNS_ADAPTER_FLAGS","features":[90]},{"name":"DNS_SETTING_HOSTNAME","features":[90]},{"name":"DNS_SETTING_IPV6","features":[90]},{"name":"DNS_SETTING_NAMESERVER","features":[90]},{"name":"DNS_SETTING_PROFILE_NAMESERVER","features":[90]},{"name":"DNS_SETTING_REGISTER_ADAPTER_NAME","features":[90]},{"name":"DNS_SETTING_REGISTRATION_ENABLED","features":[90]},{"name":"DNS_SETTING_SEARCHLIST","features":[90]},{"name":"DNS_SETTING_SUPPLEMENTAL_SEARCH_LIST","features":[90]},{"name":"DeleteAnycastIpAddressEntry","features":[1,90,16,15]},{"name":"DeleteIPAddress","features":[90]},{"name":"DeleteIpForwardEntry","features":[90,15]},{"name":"DeleteIpForwardEntry2","features":[1,90,16,15]},{"name":"DeleteIpNetEntry","features":[90]},{"name":"DeleteIpNetEntry2","features":[1,90,16,15]},{"name":"DeletePersistentTcpPortReservation","features":[90]},{"name":"DeletePersistentUdpPortReservation","features":[90]},{"name":"DeleteProxyArpEntry","features":[90]},{"name":"DeleteUnicastIpAddressEntry","features":[1,90,16,15]},{"name":"DisableMediaSense","features":[1,90,6]},{"name":"DnsServerDohProperty","features":[90]},{"name":"DnsServerInvalidProperty","features":[90]},{"name":"ERROR_BASE","features":[90]},{"name":"ERROR_IPV6_NOT_IMPLEMENTED","features":[90]},{"name":"EnableRouter","features":[1,90,6]},{"name":"FD_FLAGS_ALLFLAGS","features":[90]},{"name":"FD_FLAGS_NOSYN","features":[90]},{"name":"FILTER_ICMP_CODE_ANY","features":[90]},{"name":"FILTER_ICMP_TYPE_ANY","features":[90]},{"name":"FIXED_INFO_W2KSP1","features":[90]},{"name":"FlushIpNetTable","features":[90]},{"name":"FlushIpNetTable2","features":[1,90,15]},{"name":"FlushIpPathTable","features":[1,90,15]},{"name":"FreeDnsSettings","features":[90]},{"name":"FreeInterfaceDnsSettings","features":[90]},{"name":"FreeMibTable","features":[90]},{"name":"GAA_FLAG_INCLUDE_ALL_COMPARTMENTS","features":[90]},{"name":"GAA_FLAG_INCLUDE_ALL_INTERFACES","features":[90]},{"name":"GAA_FLAG_INCLUDE_GATEWAYS","features":[90]},{"name":"GAA_FLAG_INCLUDE_PREFIX","features":[90]},{"name":"GAA_FLAG_INCLUDE_TUNNEL_BINDINGORDER","features":[90]},{"name":"GAA_FLAG_INCLUDE_WINS_INFO","features":[90]},{"name":"GAA_FLAG_SKIP_ANYCAST","features":[90]},{"name":"GAA_FLAG_SKIP_DNS_INFO","features":[90]},{"name":"GAA_FLAG_SKIP_DNS_SERVER","features":[90]},{"name":"GAA_FLAG_SKIP_FRIENDLY_NAME","features":[90]},{"name":"GAA_FLAG_SKIP_MULTICAST","features":[90]},{"name":"GAA_FLAG_SKIP_UNICAST","features":[90]},{"name":"GET_ADAPTERS_ADDRESSES_FLAGS","features":[90]},{"name":"GF_FRAGCACHE","features":[90]},{"name":"GF_FRAGMENTS","features":[90]},{"name":"GF_STRONGHOST","features":[90]},{"name":"GLOBAL_FILTER","features":[90]},{"name":"GetAdapterIndex","features":[90]},{"name":"GetAdapterOrderMap","features":[90]},{"name":"GetAdaptersAddresses","features":[90,16,15]},{"name":"GetAdaptersInfo","features":[1,90]},{"name":"GetAnycastIpAddressEntry","features":[1,90,16,15]},{"name":"GetAnycastIpAddressTable","features":[1,90,16,15]},{"name":"GetBestInterface","features":[90]},{"name":"GetBestInterfaceEx","features":[90,15]},{"name":"GetBestRoute","features":[90,15]},{"name":"GetBestRoute2","features":[1,90,16,15]},{"name":"GetCurrentThreadCompartmentId","features":[1,90]},{"name":"GetCurrentThreadCompartmentScope","features":[90]},{"name":"GetDefaultCompartmentId","features":[1,90]},{"name":"GetDnsSettings","features":[1,90]},{"name":"GetExtendedTcpTable","features":[1,90]},{"name":"GetExtendedUdpTable","features":[1,90]},{"name":"GetFriendlyIfIndex","features":[90]},{"name":"GetIcmpStatistics","features":[90]},{"name":"GetIcmpStatisticsEx","features":[90]},{"name":"GetIfEntry","features":[90]},{"name":"GetIfEntry2","features":[1,90,16]},{"name":"GetIfEntry2Ex","features":[1,90,16]},{"name":"GetIfStackTable","features":[1,90]},{"name":"GetIfTable","features":[1,90]},{"name":"GetIfTable2","features":[1,90,16]},{"name":"GetIfTable2Ex","features":[1,90,16]},{"name":"GetInterfaceActiveTimestampCapabilities","features":[1,90,16]},{"name":"GetInterfaceCurrentTimestampCapabilities","features":[1,90,16]},{"name":"GetInterfaceDnsSettings","features":[1,90]},{"name":"GetInterfaceHardwareTimestampCapabilities","features":[1,90,16]},{"name":"GetInterfaceInfo","features":[90]},{"name":"GetInterfaceSupportedTimestampCapabilities","features":[1,90,16]},{"name":"GetInvertedIfStackTable","features":[1,90]},{"name":"GetIpAddrTable","features":[1,90]},{"name":"GetIpErrorString","features":[90]},{"name":"GetIpForwardEntry2","features":[1,90,16,15]},{"name":"GetIpForwardTable","features":[1,90,15]},{"name":"GetIpForwardTable2","features":[1,90,16,15]},{"name":"GetIpInterfaceEntry","features":[1,90,16,15]},{"name":"GetIpInterfaceTable","features":[1,90,16,15]},{"name":"GetIpNetEntry2","features":[1,90,16,15]},{"name":"GetIpNetTable","features":[1,90]},{"name":"GetIpNetTable2","features":[1,90,16,15]},{"name":"GetIpNetworkConnectionBandwidthEstimates","features":[1,90,15]},{"name":"GetIpPathEntry","features":[1,90,16,15]},{"name":"GetIpPathTable","features":[1,90,16,15]},{"name":"GetIpStatistics","features":[90]},{"name":"GetIpStatisticsEx","features":[90]},{"name":"GetJobCompartmentId","features":[1,90]},{"name":"GetMulticastIpAddressEntry","features":[1,90,16,15]},{"name":"GetMulticastIpAddressTable","features":[1,90,16,15]},{"name":"GetNetworkConnectivityHint","features":[1,90,15]},{"name":"GetNetworkConnectivityHintForInterface","features":[1,90,15]},{"name":"GetNetworkInformation","features":[1,90]},{"name":"GetNetworkParams","features":[1,90]},{"name":"GetNumberOfInterfaces","features":[90]},{"name":"GetOwnerModuleFromPidAndInfo","features":[90]},{"name":"GetOwnerModuleFromTcp6Entry","features":[90]},{"name":"GetOwnerModuleFromTcpEntry","features":[90]},{"name":"GetOwnerModuleFromUdp6Entry","features":[90]},{"name":"GetOwnerModuleFromUdpEntry","features":[90]},{"name":"GetPerAdapterInfo","features":[90]},{"name":"GetPerTcp6ConnectionEStats","features":[90,15]},{"name":"GetPerTcpConnectionEStats","features":[90]},{"name":"GetRTTAndHopCount","features":[1,90]},{"name":"GetSessionCompartmentId","features":[1,90]},{"name":"GetTcp6Table","features":[1,90,15]},{"name":"GetTcp6Table2","features":[1,90,15]},{"name":"GetTcpStatistics","features":[90]},{"name":"GetTcpStatisticsEx","features":[90]},{"name":"GetTcpStatisticsEx2","features":[90]},{"name":"GetTcpTable","features":[1,90]},{"name":"GetTcpTable2","features":[1,90]},{"name":"GetTeredoPort","features":[1,90]},{"name":"GetUdp6Table","features":[1,90,15]},{"name":"GetUdpStatistics","features":[90]},{"name":"GetUdpStatisticsEx","features":[90]},{"name":"GetUdpStatisticsEx2","features":[90]},{"name":"GetUdpTable","features":[1,90]},{"name":"GetUniDirectionalAdapterInfo","features":[90]},{"name":"GetUnicastIpAddressEntry","features":[1,90,16,15]},{"name":"GetUnicastIpAddressTable","features":[1,90,16,15]},{"name":"HIFTIMESTAMPCHANGE","features":[90]},{"name":"HYBRID_NODETYPE","features":[90]},{"name":"ICMP4_DST_UNREACH","features":[90]},{"name":"ICMP4_ECHO_REPLY","features":[90]},{"name":"ICMP4_ECHO_REQUEST","features":[90]},{"name":"ICMP4_MASK_REPLY","features":[90]},{"name":"ICMP4_MASK_REQUEST","features":[90]},{"name":"ICMP4_PARAM_PROB","features":[90]},{"name":"ICMP4_REDIRECT","features":[90]},{"name":"ICMP4_ROUTER_ADVERT","features":[90]},{"name":"ICMP4_ROUTER_SOLICIT","features":[90]},{"name":"ICMP4_SOURCE_QUENCH","features":[90]},{"name":"ICMP4_TIMESTAMP_REPLY","features":[90]},{"name":"ICMP4_TIMESTAMP_REQUEST","features":[90]},{"name":"ICMP4_TIME_EXCEEDED","features":[90]},{"name":"ICMP4_TYPE","features":[90]},{"name":"ICMP6_DST_UNREACH","features":[90]},{"name":"ICMP6_ECHO_REPLY","features":[90]},{"name":"ICMP6_ECHO_REQUEST","features":[90]},{"name":"ICMP6_INFOMSG_MASK","features":[90]},{"name":"ICMP6_MEMBERSHIP_QUERY","features":[90]},{"name":"ICMP6_MEMBERSHIP_REDUCTION","features":[90]},{"name":"ICMP6_MEMBERSHIP_REPORT","features":[90]},{"name":"ICMP6_PACKET_TOO_BIG","features":[90]},{"name":"ICMP6_PARAM_PROB","features":[90]},{"name":"ICMP6_TIME_EXCEEDED","features":[90]},{"name":"ICMP6_TYPE","features":[90]},{"name":"ICMP6_V2_MEMBERSHIP_REPORT","features":[90]},{"name":"ICMPV6_ECHO_REPLY_LH","features":[90]},{"name":"ICMP_ECHO_REPLY","features":[90]},{"name":"ICMP_ECHO_REPLY32","features":[90]},{"name":"ICMP_STATS","features":[90]},{"name":"IF_ACCESS_BROADCAST","features":[90]},{"name":"IF_ACCESS_LOOPBACK","features":[90]},{"name":"IF_ACCESS_POINTTOMULTIPOINT","features":[90]},{"name":"IF_ACCESS_POINTTOPOINT","features":[90]},{"name":"IF_ACCESS_POINT_TO_MULTI_POINT","features":[90]},{"name":"IF_ACCESS_POINT_TO_POINT","features":[90]},{"name":"IF_ACCESS_TYPE","features":[90]},{"name":"IF_ADMIN_STATUS_DOWN","features":[90]},{"name":"IF_ADMIN_STATUS_TESTING","features":[90]},{"name":"IF_ADMIN_STATUS_UP","features":[90]},{"name":"IF_CHECK_MCAST","features":[90]},{"name":"IF_CHECK_NONE","features":[90]},{"name":"IF_CHECK_SEND","features":[90]},{"name":"IF_CONNECTION_DEDICATED","features":[90]},{"name":"IF_CONNECTION_DEMAND","features":[90]},{"name":"IF_CONNECTION_PASSIVE","features":[90]},{"name":"IF_NUMBER","features":[90]},{"name":"IF_OPER_STATUS_CONNECTED","features":[90]},{"name":"IF_OPER_STATUS_CONNECTING","features":[90]},{"name":"IF_OPER_STATUS_DISCONNECTED","features":[90]},{"name":"IF_OPER_STATUS_NON_OPERATIONAL","features":[90]},{"name":"IF_OPER_STATUS_OPERATIONAL","features":[90]},{"name":"IF_OPER_STATUS_UNREACHABLE","features":[90]},{"name":"IF_ROW","features":[90]},{"name":"IF_STATUS","features":[90]},{"name":"IF_TABLE","features":[90]},{"name":"IF_TYPE_A12MPPSWITCH","features":[90]},{"name":"IF_TYPE_AAL2","features":[90]},{"name":"IF_TYPE_AAL5","features":[90]},{"name":"IF_TYPE_ADSL","features":[90]},{"name":"IF_TYPE_AFLANE_8023","features":[90]},{"name":"IF_TYPE_AFLANE_8025","features":[90]},{"name":"IF_TYPE_ARAP","features":[90]},{"name":"IF_TYPE_ARCNET","features":[90]},{"name":"IF_TYPE_ARCNET_PLUS","features":[90]},{"name":"IF_TYPE_ASYNC","features":[90]},{"name":"IF_TYPE_ATM","features":[90]},{"name":"IF_TYPE_ATM_DXI","features":[90]},{"name":"IF_TYPE_ATM_FUNI","features":[90]},{"name":"IF_TYPE_ATM_IMA","features":[90]},{"name":"IF_TYPE_ATM_LOGICAL","features":[90]},{"name":"IF_TYPE_ATM_RADIO","features":[90]},{"name":"IF_TYPE_ATM_SUBINTERFACE","features":[90]},{"name":"IF_TYPE_ATM_VCI_ENDPT","features":[90]},{"name":"IF_TYPE_ATM_VIRTUAL","features":[90]},{"name":"IF_TYPE_BASIC_ISDN","features":[90]},{"name":"IF_TYPE_BGP_POLICY_ACCOUNTING","features":[90]},{"name":"IF_TYPE_BSC","features":[90]},{"name":"IF_TYPE_CCTEMUL","features":[90]},{"name":"IF_TYPE_CES","features":[90]},{"name":"IF_TYPE_CHANNEL","features":[90]},{"name":"IF_TYPE_CNR","features":[90]},{"name":"IF_TYPE_COFFEE","features":[90]},{"name":"IF_TYPE_COMPOSITELINK","features":[90]},{"name":"IF_TYPE_DCN","features":[90]},{"name":"IF_TYPE_DDN_X25","features":[90]},{"name":"IF_TYPE_DIGITALPOWERLINE","features":[90]},{"name":"IF_TYPE_DIGITAL_WRAPPER_OVERHEAD_CHANNEL","features":[90]},{"name":"IF_TYPE_DLSW","features":[90]},{"name":"IF_TYPE_DOCSCABLE_DOWNSTREAM","features":[90]},{"name":"IF_TYPE_DOCSCABLE_MACLAYER","features":[90]},{"name":"IF_TYPE_DOCSCABLE_UPSTREAM","features":[90]},{"name":"IF_TYPE_DS0","features":[90]},{"name":"IF_TYPE_DS0_BUNDLE","features":[90]},{"name":"IF_TYPE_DS1","features":[90]},{"name":"IF_TYPE_DS1_FDL","features":[90]},{"name":"IF_TYPE_DS3","features":[90]},{"name":"IF_TYPE_DTM","features":[90]},{"name":"IF_TYPE_DVBRCC_DOWNSTREAM","features":[90]},{"name":"IF_TYPE_DVBRCC_MACLAYER","features":[90]},{"name":"IF_TYPE_DVBRCC_UPSTREAM","features":[90]},{"name":"IF_TYPE_DVB_ASI_IN","features":[90]},{"name":"IF_TYPE_DVB_ASI_OUT","features":[90]},{"name":"IF_TYPE_E1","features":[90]},{"name":"IF_TYPE_EON","features":[90]},{"name":"IF_TYPE_EPLRS","features":[90]},{"name":"IF_TYPE_ESCON","features":[90]},{"name":"IF_TYPE_ETHERNET_3MBIT","features":[90]},{"name":"IF_TYPE_ETHERNET_CSMACD","features":[90]},{"name":"IF_TYPE_FAST","features":[90]},{"name":"IF_TYPE_FASTETHER","features":[90]},{"name":"IF_TYPE_FASTETHER_FX","features":[90]},{"name":"IF_TYPE_FDDI","features":[90]},{"name":"IF_TYPE_FIBRECHANNEL","features":[90]},{"name":"IF_TYPE_FRAMERELAY","features":[90]},{"name":"IF_TYPE_FRAMERELAY_INTERCONNECT","features":[90]},{"name":"IF_TYPE_FRAMERELAY_MPI","features":[90]},{"name":"IF_TYPE_FRAMERELAY_SERVICE","features":[90]},{"name":"IF_TYPE_FRF16_MFR_BUNDLE","features":[90]},{"name":"IF_TYPE_FR_DLCI_ENDPT","features":[90]},{"name":"IF_TYPE_FR_FORWARD","features":[90]},{"name":"IF_TYPE_G703_2MB","features":[90]},{"name":"IF_TYPE_G703_64K","features":[90]},{"name":"IF_TYPE_GIGABITETHERNET","features":[90]},{"name":"IF_TYPE_GR303_IDT","features":[90]},{"name":"IF_TYPE_GR303_RDT","features":[90]},{"name":"IF_TYPE_H323_GATEKEEPER","features":[90]},{"name":"IF_TYPE_H323_PROXY","features":[90]},{"name":"IF_TYPE_HDH_1822","features":[90]},{"name":"IF_TYPE_HDLC","features":[90]},{"name":"IF_TYPE_HDSL2","features":[90]},{"name":"IF_TYPE_HIPERLAN2","features":[90]},{"name":"IF_TYPE_HIPPI","features":[90]},{"name":"IF_TYPE_HIPPIINTERFACE","features":[90]},{"name":"IF_TYPE_HOSTPAD","features":[90]},{"name":"IF_TYPE_HSSI","features":[90]},{"name":"IF_TYPE_HYPERCHANNEL","features":[90]},{"name":"IF_TYPE_IBM370PARCHAN","features":[90]},{"name":"IF_TYPE_IDSL","features":[90]},{"name":"IF_TYPE_IEEE1394","features":[90]},{"name":"IF_TYPE_IEEE80211","features":[90]},{"name":"IF_TYPE_IEEE80212","features":[90]},{"name":"IF_TYPE_IEEE802154","features":[90]},{"name":"IF_TYPE_IEEE80216_WMAN","features":[90]},{"name":"IF_TYPE_IEEE8023AD_LAG","features":[90]},{"name":"IF_TYPE_IF_GSN","features":[90]},{"name":"IF_TYPE_IMT","features":[90]},{"name":"IF_TYPE_INTERLEAVE","features":[90]},{"name":"IF_TYPE_IP","features":[90]},{"name":"IF_TYPE_IPFORWARD","features":[90]},{"name":"IF_TYPE_IPOVER_ATM","features":[90]},{"name":"IF_TYPE_IPOVER_CDLC","features":[90]},{"name":"IF_TYPE_IPOVER_CLAW","features":[90]},{"name":"IF_TYPE_IPSWITCH","features":[90]},{"name":"IF_TYPE_IS088023_CSMACD","features":[90]},{"name":"IF_TYPE_ISDN","features":[90]},{"name":"IF_TYPE_ISDN_S","features":[90]},{"name":"IF_TYPE_ISDN_U","features":[90]},{"name":"IF_TYPE_ISO88022_LLC","features":[90]},{"name":"IF_TYPE_ISO88024_TOKENBUS","features":[90]},{"name":"IF_TYPE_ISO88025R_DTR","features":[90]},{"name":"IF_TYPE_ISO88025_CRFPRINT","features":[90]},{"name":"IF_TYPE_ISO88025_FIBER","features":[90]},{"name":"IF_TYPE_ISO88025_TOKENRING","features":[90]},{"name":"IF_TYPE_ISO88026_MAN","features":[90]},{"name":"IF_TYPE_ISUP","features":[90]},{"name":"IF_TYPE_L2_VLAN","features":[90]},{"name":"IF_TYPE_L3_IPVLAN","features":[90]},{"name":"IF_TYPE_L3_IPXVLAN","features":[90]},{"name":"IF_TYPE_LAP_B","features":[90]},{"name":"IF_TYPE_LAP_D","features":[90]},{"name":"IF_TYPE_LAP_F","features":[90]},{"name":"IF_TYPE_LOCALTALK","features":[90]},{"name":"IF_TYPE_MEDIAMAILOVERIP","features":[90]},{"name":"IF_TYPE_MF_SIGLINK","features":[90]},{"name":"IF_TYPE_MIO_X25","features":[90]},{"name":"IF_TYPE_MODEM","features":[90]},{"name":"IF_TYPE_MPC","features":[90]},{"name":"IF_TYPE_MPLS","features":[90]},{"name":"IF_TYPE_MPLS_TUNNEL","features":[90]},{"name":"IF_TYPE_MSDSL","features":[90]},{"name":"IF_TYPE_MVL","features":[90]},{"name":"IF_TYPE_MYRINET","features":[90]},{"name":"IF_TYPE_NFAS","features":[90]},{"name":"IF_TYPE_NSIP","features":[90]},{"name":"IF_TYPE_OPTICAL_CHANNEL","features":[90]},{"name":"IF_TYPE_OPTICAL_TRANSPORT","features":[90]},{"name":"IF_TYPE_OTHER","features":[90]},{"name":"IF_TYPE_PARA","features":[90]},{"name":"IF_TYPE_PLC","features":[90]},{"name":"IF_TYPE_POS","features":[90]},{"name":"IF_TYPE_PPP","features":[90]},{"name":"IF_TYPE_PPPMULTILINKBUNDLE","features":[90]},{"name":"IF_TYPE_PRIMARY_ISDN","features":[90]},{"name":"IF_TYPE_PROP_BWA_P2MP","features":[90]},{"name":"IF_TYPE_PROP_CNLS","features":[90]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_DOWNSTREAM","features":[90]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_MACLAYER","features":[90]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_UPSTREAM","features":[90]},{"name":"IF_TYPE_PROP_MULTIPLEXOR","features":[90]},{"name":"IF_TYPE_PROP_POINT2POINT_SERIAL","features":[90]},{"name":"IF_TYPE_PROP_VIRTUAL","features":[90]},{"name":"IF_TYPE_PROP_WIRELESS_P2P","features":[90]},{"name":"IF_TYPE_PROTEON_10MBIT","features":[90]},{"name":"IF_TYPE_PROTEON_80MBIT","features":[90]},{"name":"IF_TYPE_QLLC","features":[90]},{"name":"IF_TYPE_RADIO_MAC","features":[90]},{"name":"IF_TYPE_RADSL","features":[90]},{"name":"IF_TYPE_REACH_DSL","features":[90]},{"name":"IF_TYPE_REGULAR_1822","features":[90]},{"name":"IF_TYPE_RFC1483","features":[90]},{"name":"IF_TYPE_RFC877_X25","features":[90]},{"name":"IF_TYPE_RS232","features":[90]},{"name":"IF_TYPE_RSRB","features":[90]},{"name":"IF_TYPE_SDLC","features":[90]},{"name":"IF_TYPE_SDSL","features":[90]},{"name":"IF_TYPE_SHDSL","features":[90]},{"name":"IF_TYPE_SIP","features":[90]},{"name":"IF_TYPE_SLIP","features":[90]},{"name":"IF_TYPE_SMDS_DXI","features":[90]},{"name":"IF_TYPE_SMDS_ICIP","features":[90]},{"name":"IF_TYPE_SOFTWARE_LOOPBACK","features":[90]},{"name":"IF_TYPE_SONET","features":[90]},{"name":"IF_TYPE_SONET_OVERHEAD_CHANNEL","features":[90]},{"name":"IF_TYPE_SONET_PATH","features":[90]},{"name":"IF_TYPE_SONET_VT","features":[90]},{"name":"IF_TYPE_SRP","features":[90]},{"name":"IF_TYPE_SS7_SIGLINK","features":[90]},{"name":"IF_TYPE_STACKTOSTACK","features":[90]},{"name":"IF_TYPE_STARLAN","features":[90]},{"name":"IF_TYPE_TDLC","features":[90]},{"name":"IF_TYPE_TERMPAD","features":[90]},{"name":"IF_TYPE_TR008","features":[90]},{"name":"IF_TYPE_TRANSPHDLC","features":[90]},{"name":"IF_TYPE_TUNNEL","features":[90]},{"name":"IF_TYPE_ULTRA","features":[90]},{"name":"IF_TYPE_USB","features":[90]},{"name":"IF_TYPE_V11","features":[90]},{"name":"IF_TYPE_V35","features":[90]},{"name":"IF_TYPE_V36","features":[90]},{"name":"IF_TYPE_V37","features":[90]},{"name":"IF_TYPE_VDSL","features":[90]},{"name":"IF_TYPE_VIRTUALIPADDRESS","features":[90]},{"name":"IF_TYPE_VOICEOVERATM","features":[90]},{"name":"IF_TYPE_VOICEOVERFRAMERELAY","features":[90]},{"name":"IF_TYPE_VOICE_EM","features":[90]},{"name":"IF_TYPE_VOICE_ENCAP","features":[90]},{"name":"IF_TYPE_VOICE_FXO","features":[90]},{"name":"IF_TYPE_VOICE_FXS","features":[90]},{"name":"IF_TYPE_VOICE_OVERIP","features":[90]},{"name":"IF_TYPE_WWANPP","features":[90]},{"name":"IF_TYPE_WWANPP2","features":[90]},{"name":"IF_TYPE_X213","features":[90]},{"name":"IF_TYPE_X25_HUNTGROUP","features":[90]},{"name":"IF_TYPE_X25_MLP","features":[90]},{"name":"IF_TYPE_X25_PLE","features":[90]},{"name":"IF_TYPE_XBOX_WIRELESS","features":[90]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP","features":[90]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP_VERSION_1","features":[90]},{"name":"INTERFACE_HARDWARE_TIMESTAMP_CAPABILITIES","features":[1,90]},{"name":"INTERFACE_SOFTWARE_TIMESTAMP_CAPABILITIES","features":[1,90]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES","features":[1,90]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES_VERSION_1","features":[90]},{"name":"INTERNAL_IF_OPER_STATUS","features":[90]},{"name":"IOCTL_ARP_SEND_REQUEST","features":[90]},{"name":"IOCTL_IP_ADDCHANGE_NOTIFY_REQUEST","features":[90]},{"name":"IOCTL_IP_GET_BEST_INTERFACE","features":[90]},{"name":"IOCTL_IP_INTERFACE_INFO","features":[90]},{"name":"IOCTL_IP_RTCHANGE_NOTIFY_REQUEST","features":[90]},{"name":"IOCTL_IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[90]},{"name":"IP6_STATS","features":[90]},{"name":"IPRTRMGR_PID","features":[90]},{"name":"IPV6_ADDRESS_EX","features":[90]},{"name":"IPV6_GLOBAL_INFO","features":[90]},{"name":"IPV6_ROUTE_INFO","features":[90]},{"name":"IP_ADAPTER_ADDRESSES_LH","features":[90,16,15]},{"name":"IP_ADAPTER_ADDRESSES_XP","features":[90,16,15]},{"name":"IP_ADAPTER_ADDRESS_DNS_ELIGIBLE","features":[90]},{"name":"IP_ADAPTER_ADDRESS_TRANSIENT","features":[90]},{"name":"IP_ADAPTER_ANYCAST_ADDRESS_XP","features":[90,15]},{"name":"IP_ADAPTER_DDNS_ENABLED","features":[90]},{"name":"IP_ADAPTER_DHCP_ENABLED","features":[90]},{"name":"IP_ADAPTER_DNS_SERVER_ADDRESS_XP","features":[90,15]},{"name":"IP_ADAPTER_DNS_SUFFIX","features":[90]},{"name":"IP_ADAPTER_GATEWAY_ADDRESS_LH","features":[90,15]},{"name":"IP_ADAPTER_INDEX_MAP","features":[90]},{"name":"IP_ADAPTER_INFO","features":[1,90]},{"name":"IP_ADAPTER_IPV4_ENABLED","features":[90]},{"name":"IP_ADAPTER_IPV6_ENABLED","features":[90]},{"name":"IP_ADAPTER_IPV6_MANAGE_ADDRESS_CONFIG","features":[90]},{"name":"IP_ADAPTER_IPV6_OTHER_STATEFUL_CONFIG","features":[90]},{"name":"IP_ADAPTER_MULTICAST_ADDRESS_XP","features":[90,15]},{"name":"IP_ADAPTER_NETBIOS_OVER_TCPIP_ENABLED","features":[90]},{"name":"IP_ADAPTER_NO_MULTICAST","features":[90]},{"name":"IP_ADAPTER_ORDER_MAP","features":[90]},{"name":"IP_ADAPTER_PREFIX_XP","features":[90,15]},{"name":"IP_ADAPTER_RECEIVE_ONLY","features":[90]},{"name":"IP_ADAPTER_REGISTER_ADAPTER_SUFFIX","features":[90]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_LH","features":[90,15]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_XP","features":[90,15]},{"name":"IP_ADAPTER_WINS_SERVER_ADDRESS_LH","features":[90,15]},{"name":"IP_ADDRESS_PREFIX","features":[90,15]},{"name":"IP_ADDRESS_STRING","features":[90]},{"name":"IP_ADDRROW","features":[90]},{"name":"IP_ADDRTABLE","features":[90]},{"name":"IP_ADDR_ADDED","features":[90]},{"name":"IP_ADDR_DELETED","features":[90]},{"name":"IP_ADDR_STRING","features":[90]},{"name":"IP_BAD_DESTINATION","features":[90]},{"name":"IP_BAD_HEADER","features":[90]},{"name":"IP_BAD_OPTION","features":[90]},{"name":"IP_BAD_REQ","features":[90]},{"name":"IP_BAD_ROUTE","features":[90]},{"name":"IP_BIND_ADAPTER","features":[90]},{"name":"IP_BUF_TOO_SMALL","features":[90]},{"name":"IP_DEMAND_DIAL_FILTER_INFO","features":[90]},{"name":"IP_DEMAND_DIAL_FILTER_INFO_V6","features":[90]},{"name":"IP_DEST_ADDR_UNREACHABLE","features":[90]},{"name":"IP_DEST_HOST_UNREACHABLE","features":[90]},{"name":"IP_DEST_NET_UNREACHABLE","features":[90]},{"name":"IP_DEST_NO_ROUTE","features":[90]},{"name":"IP_DEST_PORT_UNREACHABLE","features":[90]},{"name":"IP_DEST_PROHIBITED","features":[90]},{"name":"IP_DEST_PROT_UNREACHABLE","features":[90]},{"name":"IP_DEST_SCOPE_MISMATCH","features":[90]},{"name":"IP_DEST_UNREACHABLE","features":[90]},{"name":"IP_DEVICE_DOES_NOT_EXIST","features":[90]},{"name":"IP_DUPLICATE_ADDRESS","features":[90]},{"name":"IP_DUPLICATE_IPADD","features":[90]},{"name":"IP_EXPORT_INCLUDED","features":[90]},{"name":"IP_FILTER_ENABLE_INFO","features":[90]},{"name":"IP_FILTER_ENABLE_INFO_V6","features":[90]},{"name":"IP_FLAG_DF","features":[90]},{"name":"IP_FLAG_REVERSE","features":[90]},{"name":"IP_FORWARDNUMBER","features":[90]},{"name":"IP_FORWARDROW","features":[90]},{"name":"IP_FORWARDTABLE","features":[90]},{"name":"IP_GENERAL_FAILURE","features":[90]},{"name":"IP_GENERAL_INFO_BASE","features":[90]},{"name":"IP_GLOBAL_INFO","features":[90]},{"name":"IP_HOP_LIMIT_EXCEEDED","features":[90]},{"name":"IP_HW_ERROR","features":[90]},{"name":"IP_ICMP_ERROR","features":[90]},{"name":"IP_IFFILTER_INFO","features":[90]},{"name":"IP_IFFILTER_INFO_V6","features":[90]},{"name":"IP_INTERFACE_INFO","features":[90]},{"name":"IP_INTERFACE_METRIC_CHANGE","features":[90]},{"name":"IP_INTERFACE_NAME_INFO_W2KSP1","features":[90]},{"name":"IP_INTERFACE_STATUS_INFO","features":[90]},{"name":"IP_INTERFACE_WOL_CAPABILITY_CHANGE","features":[90]},{"name":"IP_IN_FILTER_INFO","features":[90]},{"name":"IP_IN_FILTER_INFO_V6","features":[90]},{"name":"IP_IPINIP_CFG_INFO","features":[90]},{"name":"IP_MCAST_BOUNDARY_INFO","features":[90]},{"name":"IP_MCAST_COUNTER_INFO","features":[90]},{"name":"IP_MCAST_HEARBEAT_INFO","features":[90]},{"name":"IP_MCAST_LIMIT_INFO","features":[90]},{"name":"IP_MEDIA_CONNECT","features":[90]},{"name":"IP_MEDIA_DISCONNECT","features":[90]},{"name":"IP_MTU_CHANGE","features":[90]},{"name":"IP_NEGOTIATING_IPSEC","features":[90]},{"name":"IP_NETROW","features":[90]},{"name":"IP_NETTABLE","features":[90]},{"name":"IP_NO_RESOURCES","features":[90]},{"name":"IP_OPTION_INFORMATION","features":[90]},{"name":"IP_OPTION_INFORMATION32","features":[90]},{"name":"IP_OPTION_TOO_BIG","features":[90]},{"name":"IP_OUT_FILTER_INFO","features":[90]},{"name":"IP_OUT_FILTER_INFO_V6","features":[90]},{"name":"IP_PACKET_TOO_BIG","features":[90]},{"name":"IP_PARAMETER_PROBLEM","features":[90]},{"name":"IP_PARAM_PROBLEM","features":[90]},{"name":"IP_PENDING","features":[90]},{"name":"IP_PER_ADAPTER_INFO_W2KSP1","features":[90]},{"name":"IP_PROT_PRIORITY_INFO","features":[90]},{"name":"IP_PROT_PRIORITY_INFO_EX","features":[90]},{"name":"IP_REASSEMBLY_TIME_EXCEEDED","features":[90]},{"name":"IP_RECONFIG_SECFLTR","features":[90]},{"name":"IP_REQ_TIMED_OUT","features":[90]},{"name":"IP_ROUTER_DISC_INFO","features":[90]},{"name":"IP_ROUTER_MANAGER_VERSION","features":[90]},{"name":"IP_ROUTE_INFO","features":[90]},{"name":"IP_SOURCE_QUENCH","features":[90]},{"name":"IP_SPEC_MTU_CHANGE","features":[90]},{"name":"IP_STATS","features":[90]},{"name":"IP_STATUS_BASE","features":[90]},{"name":"IP_SUCCESS","features":[90]},{"name":"IP_TIME_EXCEEDED","features":[90]},{"name":"IP_TTL_EXPIRED_REASSEM","features":[90]},{"name":"IP_TTL_EXPIRED_TRANSIT","features":[90]},{"name":"IP_UNBIND_ADAPTER","features":[90]},{"name":"IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[90]},{"name":"IP_UNLOAD","features":[90]},{"name":"IP_UNRECOGNIZED_NEXT_HEADER","features":[90]},{"name":"Icmp6CreateFile","features":[1,90]},{"name":"Icmp6ParseReplies","features":[90]},{"name":"Icmp6SendEcho2","features":[1,90,15,6]},{"name":"IcmpCloseHandle","features":[1,90]},{"name":"IcmpCreateFile","features":[1,90]},{"name":"IcmpParseReplies","features":[90]},{"name":"IcmpSendEcho","features":[1,90]},{"name":"IcmpSendEcho2","features":[1,90,6]},{"name":"IcmpSendEcho2Ex","features":[1,90,6]},{"name":"InitializeIpForwardEntry","features":[1,90,16,15]},{"name":"InitializeIpInterfaceEntry","features":[1,90,16,15]},{"name":"InitializeUnicastIpAddressEntry","features":[1,90,16,15]},{"name":"IpReleaseAddress","features":[90]},{"name":"IpRenewAddress","features":[90]},{"name":"LB_DST_ADDR_USE_DSTADDR_FLAG","features":[90]},{"name":"LB_DST_ADDR_USE_SRCADDR_FLAG","features":[90]},{"name":"LB_DST_MASK_LATE_FLAG","features":[90]},{"name":"LB_SRC_ADDR_USE_DSTADDR_FLAG","features":[90]},{"name":"LB_SRC_ADDR_USE_SRCADDR_FLAG","features":[90]},{"name":"LB_SRC_MASK_LATE_FLAG","features":[90]},{"name":"LookupPersistentTcpPortReservation","features":[90]},{"name":"LookupPersistentUdpPortReservation","features":[90]},{"name":"MAXLEN_IFDESCR","features":[90]},{"name":"MAXLEN_PHYSADDR","features":[90]},{"name":"MAX_ADAPTER_ADDRESS_LENGTH","features":[90]},{"name":"MAX_ADAPTER_DESCRIPTION_LENGTH","features":[90]},{"name":"MAX_ADAPTER_NAME","features":[90]},{"name":"MAX_ADAPTER_NAME_LENGTH","features":[90]},{"name":"MAX_DHCPV6_DUID_LENGTH","features":[90]},{"name":"MAX_DNS_SUFFIX_STRING_LENGTH","features":[90]},{"name":"MAX_DOMAIN_NAME_LEN","features":[90]},{"name":"MAX_HOSTNAME_LEN","features":[90]},{"name":"MAX_IF_TYPE","features":[90]},{"name":"MAX_INTERFACE_NAME_LEN","features":[90]},{"name":"MAX_IP_STATUS","features":[90]},{"name":"MAX_MIB_OFFSET","features":[90]},{"name":"MAX_OPT_SIZE","features":[90]},{"name":"MAX_SCOPE_ID_LEN","features":[90]},{"name":"MAX_SCOPE_NAME_LEN","features":[90]},{"name":"MCAST_BOUNDARY","features":[90]},{"name":"MCAST_GLOBAL","features":[90]},{"name":"MCAST_IF_ENTRY","features":[90]},{"name":"MCAST_MFE","features":[90]},{"name":"MCAST_MFE_STATS","features":[90]},{"name":"MCAST_MFE_STATS_EX","features":[90]},{"name":"MCAST_SCOPE","features":[90]},{"name":"MIBICMPINFO","features":[90]},{"name":"MIBICMPSTATS","features":[90]},{"name":"MIBICMPSTATS_EX_XPSP1","features":[90]},{"name":"MIB_ANYCASTIPADDRESS_ROW","features":[90,16,15]},{"name":"MIB_ANYCASTIPADDRESS_TABLE","features":[90,16,15]},{"name":"MIB_BEST_IF","features":[90]},{"name":"MIB_BOUNDARYROW","features":[90]},{"name":"MIB_ICMP","features":[90]},{"name":"MIB_ICMP_EX_XPSP1","features":[90]},{"name":"MIB_IFNUMBER","features":[90]},{"name":"MIB_IFROW","features":[90]},{"name":"MIB_IFSTACK_ROW","features":[90]},{"name":"MIB_IFSTACK_TABLE","features":[90]},{"name":"MIB_IFSTATUS","features":[1,90]},{"name":"MIB_IFTABLE","features":[90]},{"name":"MIB_IF_ADMIN_STATUS_DOWN","features":[90]},{"name":"MIB_IF_ADMIN_STATUS_TESTING","features":[90]},{"name":"MIB_IF_ADMIN_STATUS_UP","features":[90]},{"name":"MIB_IF_ENTRY_LEVEL","features":[90]},{"name":"MIB_IF_ROW2","features":[90,16]},{"name":"MIB_IF_TABLE2","features":[90,16]},{"name":"MIB_IF_TABLE_LEVEL","features":[90]},{"name":"MIB_IF_TYPE_ETHERNET","features":[90]},{"name":"MIB_IF_TYPE_FDDI","features":[90]},{"name":"MIB_IF_TYPE_LOOPBACK","features":[90]},{"name":"MIB_IF_TYPE_OTHER","features":[90]},{"name":"MIB_IF_TYPE_PPP","features":[90]},{"name":"MIB_IF_TYPE_SLIP","features":[90]},{"name":"MIB_IF_TYPE_TOKENRING","features":[90]},{"name":"MIB_INVALID_TEREDO_PORT_NUMBER","features":[90]},{"name":"MIB_INVERTEDIFSTACK_ROW","features":[90]},{"name":"MIB_INVERTEDIFSTACK_TABLE","features":[90]},{"name":"MIB_IPADDRROW_W2K","features":[90]},{"name":"MIB_IPADDRROW_XP","features":[90]},{"name":"MIB_IPADDRTABLE","features":[90]},{"name":"MIB_IPADDR_DELETED","features":[90]},{"name":"MIB_IPADDR_DISCONNECTED","features":[90]},{"name":"MIB_IPADDR_DNS_ELIGIBLE","features":[90]},{"name":"MIB_IPADDR_DYNAMIC","features":[90]},{"name":"MIB_IPADDR_PRIMARY","features":[90]},{"name":"MIB_IPADDR_TRANSIENT","features":[90]},{"name":"MIB_IPDESTROW","features":[90,15]},{"name":"MIB_IPDESTTABLE","features":[90,15]},{"name":"MIB_IPFORWARDNUMBER","features":[90]},{"name":"MIB_IPFORWARDROW","features":[90,15]},{"name":"MIB_IPFORWARDTABLE","features":[90,15]},{"name":"MIB_IPFORWARD_ROW2","features":[1,90,16,15]},{"name":"MIB_IPFORWARD_TABLE2","features":[1,90,16,15]},{"name":"MIB_IPFORWARD_TYPE","features":[90]},{"name":"MIB_IPINTERFACE_ROW","features":[1,90,16,15]},{"name":"MIB_IPINTERFACE_TABLE","features":[1,90,16,15]},{"name":"MIB_IPMCAST_BOUNDARY","features":[90]},{"name":"MIB_IPMCAST_BOUNDARY_TABLE","features":[90]},{"name":"MIB_IPMCAST_GLOBAL","features":[90]},{"name":"MIB_IPMCAST_IF_ENTRY","features":[90]},{"name":"MIB_IPMCAST_IF_TABLE","features":[90]},{"name":"MIB_IPMCAST_MFE","features":[90]},{"name":"MIB_IPMCAST_MFE_STATS","features":[90]},{"name":"MIB_IPMCAST_MFE_STATS_EX_XP","features":[90]},{"name":"MIB_IPMCAST_OIF_STATS_LH","features":[90]},{"name":"MIB_IPMCAST_OIF_STATS_W2K","features":[90]},{"name":"MIB_IPMCAST_OIF_W2K","features":[90]},{"name":"MIB_IPMCAST_OIF_XP","features":[90]},{"name":"MIB_IPMCAST_SCOPE","features":[90]},{"name":"MIB_IPNETROW_LH","features":[90]},{"name":"MIB_IPNETROW_W2K","features":[90]},{"name":"MIB_IPNETTABLE","features":[90]},{"name":"MIB_IPNET_ROW2","features":[90,16,15]},{"name":"MIB_IPNET_TABLE2","features":[90,16,15]},{"name":"MIB_IPNET_TYPE","features":[90]},{"name":"MIB_IPNET_TYPE_DYNAMIC","features":[90]},{"name":"MIB_IPNET_TYPE_INVALID","features":[90]},{"name":"MIB_IPNET_TYPE_OTHER","features":[90]},{"name":"MIB_IPNET_TYPE_STATIC","features":[90]},{"name":"MIB_IPPATH_ROW","features":[1,90,16,15]},{"name":"MIB_IPPATH_TABLE","features":[1,90,16,15]},{"name":"MIB_IPROUTE_METRIC_UNUSED","features":[90]},{"name":"MIB_IPROUTE_TYPE_DIRECT","features":[90]},{"name":"MIB_IPROUTE_TYPE_INDIRECT","features":[90]},{"name":"MIB_IPROUTE_TYPE_INVALID","features":[90]},{"name":"MIB_IPROUTE_TYPE_OTHER","features":[90]},{"name":"MIB_IPSTATS_FORWARDING","features":[90]},{"name":"MIB_IPSTATS_LH","features":[90]},{"name":"MIB_IPSTATS_W2K","features":[90]},{"name":"MIB_IP_FORWARDING","features":[90]},{"name":"MIB_IP_NETWORK_CONNECTION_BANDWIDTH_ESTIMATES","features":[1,90,15]},{"name":"MIB_IP_NOT_FORWARDING","features":[90]},{"name":"MIB_MCAST_LIMIT_ROW","features":[90]},{"name":"MIB_MFE_STATS_TABLE","features":[90]},{"name":"MIB_MFE_STATS_TABLE_EX_XP","features":[90]},{"name":"MIB_MFE_TABLE","features":[90]},{"name":"MIB_MULTICASTIPADDRESS_ROW","features":[90,16,15]},{"name":"MIB_MULTICASTIPADDRESS_TABLE","features":[90,16,15]},{"name":"MIB_NOTIFICATION_TYPE","features":[90]},{"name":"MIB_OPAQUE_INFO","features":[90]},{"name":"MIB_OPAQUE_QUERY","features":[90]},{"name":"MIB_PROXYARP","features":[90]},{"name":"MIB_ROUTESTATE","features":[1,90]},{"name":"MIB_TCP6ROW","features":[90,15]},{"name":"MIB_TCP6ROW2","features":[90,15]},{"name":"MIB_TCP6ROW_OWNER_MODULE","features":[90]},{"name":"MIB_TCP6ROW_OWNER_PID","features":[90]},{"name":"MIB_TCP6TABLE","features":[90,15]},{"name":"MIB_TCP6TABLE2","features":[90,15]},{"name":"MIB_TCP6TABLE_OWNER_MODULE","features":[90]},{"name":"MIB_TCP6TABLE_OWNER_PID","features":[90]},{"name":"MIB_TCPROW2","features":[90]},{"name":"MIB_TCPROW_LH","features":[90]},{"name":"MIB_TCPROW_OWNER_MODULE","features":[90]},{"name":"MIB_TCPROW_OWNER_PID","features":[90]},{"name":"MIB_TCPROW_W2K","features":[90]},{"name":"MIB_TCPSTATS2","features":[90]},{"name":"MIB_TCPSTATS_LH","features":[90]},{"name":"MIB_TCPSTATS_W2K","features":[90]},{"name":"MIB_TCPTABLE","features":[90]},{"name":"MIB_TCPTABLE2","features":[90]},{"name":"MIB_TCPTABLE_OWNER_MODULE","features":[90]},{"name":"MIB_TCPTABLE_OWNER_PID","features":[90]},{"name":"MIB_TCP_RTO_CONSTANT","features":[90]},{"name":"MIB_TCP_RTO_OTHER","features":[90]},{"name":"MIB_TCP_RTO_RSRE","features":[90]},{"name":"MIB_TCP_RTO_VANJ","features":[90]},{"name":"MIB_TCP_STATE","features":[90]},{"name":"MIB_TCP_STATE_CLOSED","features":[90]},{"name":"MIB_TCP_STATE_CLOSE_WAIT","features":[90]},{"name":"MIB_TCP_STATE_CLOSING","features":[90]},{"name":"MIB_TCP_STATE_DELETE_TCB","features":[90]},{"name":"MIB_TCP_STATE_ESTAB","features":[90]},{"name":"MIB_TCP_STATE_FIN_WAIT1","features":[90]},{"name":"MIB_TCP_STATE_FIN_WAIT2","features":[90]},{"name":"MIB_TCP_STATE_LAST_ACK","features":[90]},{"name":"MIB_TCP_STATE_LISTEN","features":[90]},{"name":"MIB_TCP_STATE_RESERVED","features":[90]},{"name":"MIB_TCP_STATE_SYN_RCVD","features":[90]},{"name":"MIB_TCP_STATE_SYN_SENT","features":[90]},{"name":"MIB_TCP_STATE_TIME_WAIT","features":[90]},{"name":"MIB_UDP6ROW","features":[90,15]},{"name":"MIB_UDP6ROW2","features":[90]},{"name":"MIB_UDP6ROW_OWNER_MODULE","features":[90]},{"name":"MIB_UDP6ROW_OWNER_PID","features":[90]},{"name":"MIB_UDP6TABLE","features":[90,15]},{"name":"MIB_UDP6TABLE2","features":[90]},{"name":"MIB_UDP6TABLE_OWNER_MODULE","features":[90]},{"name":"MIB_UDP6TABLE_OWNER_PID","features":[90]},{"name":"MIB_UDPROW","features":[90]},{"name":"MIB_UDPROW2","features":[90]},{"name":"MIB_UDPROW_OWNER_MODULE","features":[90]},{"name":"MIB_UDPROW_OWNER_PID","features":[90]},{"name":"MIB_UDPSTATS","features":[90]},{"name":"MIB_UDPSTATS2","features":[90]},{"name":"MIB_UDPTABLE","features":[90]},{"name":"MIB_UDPTABLE2","features":[90]},{"name":"MIB_UDPTABLE_OWNER_MODULE","features":[90]},{"name":"MIB_UDPTABLE_OWNER_PID","features":[90]},{"name":"MIB_UNICASTIPADDRESS_ROW","features":[1,90,16,15]},{"name":"MIB_UNICASTIPADDRESS_TABLE","features":[1,90,16,15]},{"name":"MIB_USE_CURRENT_FORWARDING","features":[90]},{"name":"MIB_USE_CURRENT_TTL","features":[90]},{"name":"MIN_IF_TYPE","features":[90]},{"name":"MIXED_NODETYPE","features":[90]},{"name":"MibAddInstance","features":[90]},{"name":"MibDeleteInstance","features":[90]},{"name":"MibIfEntryNormal","features":[90]},{"name":"MibIfEntryNormalWithoutStatistics","features":[90]},{"name":"MibIfTableNormal","features":[90]},{"name":"MibIfTableNormalWithoutStatistics","features":[90]},{"name":"MibIfTableRaw","features":[90]},{"name":"MibInitialNotification","features":[90]},{"name":"MibParameterNotification","features":[90]},{"name":"ND_NEIGHBOR_ADVERT","features":[90]},{"name":"ND_NEIGHBOR_SOLICIT","features":[90]},{"name":"ND_REDIRECT","features":[90]},{"name":"ND_ROUTER_ADVERT","features":[90]},{"name":"ND_ROUTER_SOLICIT","features":[90]},{"name":"NET_ADDRESS_DNS_NAME","features":[90]},{"name":"NET_ADDRESS_FORMAT","features":[90]},{"name":"NET_ADDRESS_FORMAT_UNSPECIFIED","features":[90]},{"name":"NET_ADDRESS_INFO","features":[90,15]},{"name":"NET_ADDRESS_IPV4","features":[90]},{"name":"NET_ADDRESS_IPV6","features":[90]},{"name":"NET_STRING_IPV4_ADDRESS","features":[90]},{"name":"NET_STRING_IPV4_NETWORK","features":[90]},{"name":"NET_STRING_IPV4_SERVICE","features":[90]},{"name":"NET_STRING_IPV6_ADDRESS","features":[90]},{"name":"NET_STRING_IPV6_ADDRESS_NO_SCOPE","features":[90]},{"name":"NET_STRING_IPV6_NETWORK","features":[90]},{"name":"NET_STRING_IPV6_SERVICE","features":[90]},{"name":"NET_STRING_IPV6_SERVICE_NO_SCOPE","features":[90]},{"name":"NET_STRING_NAMED_ADDRESS","features":[90]},{"name":"NET_STRING_NAMED_SERVICE","features":[90]},{"name":"NUMBER_OF_EXPORTED_VARIABLES","features":[90]},{"name":"NhpAllocateAndGetInterfaceInfoFromStack","features":[1,90]},{"name":"NotifyAddrChange","features":[1,90,6]},{"name":"NotifyIfTimestampConfigChange","features":[90]},{"name":"NotifyIpInterfaceChange","features":[1,90,16,15]},{"name":"NotifyNetworkConnectivityHintChange","features":[1,90,15]},{"name":"NotifyRouteChange","features":[1,90,6]},{"name":"NotifyRouteChange2","features":[1,90,16,15]},{"name":"NotifyStableUnicastIpAddressTable","features":[1,90,16,15]},{"name":"NotifyTeredoPortChange","features":[1,90]},{"name":"NotifyUnicastIpAddressChange","features":[1,90,16,15]},{"name":"PEER_TO_PEER_NODETYPE","features":[90]},{"name":"PFADDRESSTYPE","features":[90]},{"name":"PFERROR_BUFFER_TOO_SMALL","features":[90]},{"name":"PFERROR_NO_FILTERS_GIVEN","features":[90]},{"name":"PFERROR_NO_PF_INTERFACE","features":[90]},{"name":"PFFORWARD_ACTION","features":[90]},{"name":"PFFRAMETYPE","features":[90]},{"name":"PFFT_FILTER","features":[90]},{"name":"PFFT_FRAG","features":[90]},{"name":"PFFT_SPOOF","features":[90]},{"name":"PFLOGFRAME","features":[90]},{"name":"PF_ACTION_DROP","features":[90]},{"name":"PF_ACTION_FORWARD","features":[90]},{"name":"PF_FILTER_DESCRIPTOR","features":[90]},{"name":"PF_FILTER_STATS","features":[90]},{"name":"PF_INTERFACE_STATS","features":[90]},{"name":"PF_IPV4","features":[90]},{"name":"PF_IPV6","features":[90]},{"name":"PF_LATEBIND_INFO","features":[90]},{"name":"PINTERFACE_TIMESTAMP_CONFIG_CHANGE_CALLBACK","features":[90]},{"name":"PIPFORWARD_CHANGE_CALLBACK","features":[1,90,16,15]},{"name":"PIPINTERFACE_CHANGE_CALLBACK","features":[1,90,16,15]},{"name":"PNETWORK_CONNECTIVITY_HINT_CHANGE_CALLBACK","features":[1,90,15]},{"name":"PROXY_ARP","features":[90]},{"name":"PSTABLE_UNICAST_IPADDRESS_TABLE_CALLBACK","features":[1,90,16,15]},{"name":"PTEREDO_PORT_CHANGE_CALLBACK","features":[90]},{"name":"PUNICAST_IPADDRESS_CHANGE_CALLBACK","features":[1,90,16,15]},{"name":"ParseNetworkString","features":[90,15]},{"name":"PfAddFiltersToInterface","features":[90]},{"name":"PfAddGlobalFilterToInterface","features":[90]},{"name":"PfBindInterfaceToIPAddress","features":[90]},{"name":"PfBindInterfaceToIndex","features":[90]},{"name":"PfCreateInterface","features":[1,90]},{"name":"PfDeleteInterface","features":[90]},{"name":"PfDeleteLog","features":[90]},{"name":"PfGetInterfaceStatistics","features":[1,90]},{"name":"PfMakeLog","features":[1,90]},{"name":"PfRebindFilters","features":[90]},{"name":"PfRemoveFilterHandles","features":[90]},{"name":"PfRemoveFiltersFromInterface","features":[90]},{"name":"PfRemoveGlobalFilterFromInterface","features":[90]},{"name":"PfSetLogBuffer","features":[90]},{"name":"PfTestPacket","features":[90]},{"name":"PfUnBindInterface","features":[90]},{"name":"ROUTE_LONGER","features":[90]},{"name":"ROUTE_MATCHING","features":[90]},{"name":"ROUTE_SHORTER","features":[90]},{"name":"ROUTE_STATE","features":[90]},{"name":"RegisterInterfaceTimestampConfigChange","features":[90]},{"name":"ResolveIpNetEntry2","features":[1,90,16,15]},{"name":"ResolveNeighbor","features":[90,15]},{"name":"RestoreMediaSense","features":[1,90,6]},{"name":"SendARP","features":[90]},{"name":"SetCurrentThreadCompartmentId","features":[1,90]},{"name":"SetCurrentThreadCompartmentScope","features":[1,90]},{"name":"SetDnsSettings","features":[1,90]},{"name":"SetIfEntry","features":[90]},{"name":"SetInterfaceDnsSettings","features":[1,90]},{"name":"SetIpForwardEntry","features":[90,15]},{"name":"SetIpForwardEntry2","features":[1,90,16,15]},{"name":"SetIpInterfaceEntry","features":[1,90,16,15]},{"name":"SetIpNetEntry","features":[90]},{"name":"SetIpNetEntry2","features":[1,90,16,15]},{"name":"SetIpStatistics","features":[90]},{"name":"SetIpStatisticsEx","features":[90]},{"name":"SetIpTTL","features":[90]},{"name":"SetJobCompartmentId","features":[1,90]},{"name":"SetNetworkInformation","features":[1,90]},{"name":"SetPerTcp6ConnectionEStats","features":[90,15]},{"name":"SetPerTcpConnectionEStats","features":[90]},{"name":"SetSessionCompartmentId","features":[1,90]},{"name":"SetTcpEntry","features":[90]},{"name":"SetUnicastIpAddressEntry","features":[1,90,16,15]},{"name":"TCP6_STATS","features":[90]},{"name":"TCPIP_OWNER_MODULE_BASIC_INFO","features":[90]},{"name":"TCPIP_OWNER_MODULE_INFO_BASIC","features":[90]},{"name":"TCPIP_OWNER_MODULE_INFO_CLASS","features":[90]},{"name":"TCPIP_OWNING_MODULE_SIZE","features":[90]},{"name":"TCP_BOOLEAN_OPTIONAL","features":[90]},{"name":"TCP_CONNECTION_OFFLOAD_STATE","features":[90]},{"name":"TCP_ESTATS_BANDWIDTH_ROD_v0","features":[1,90]},{"name":"TCP_ESTATS_BANDWIDTH_RW_v0","features":[90]},{"name":"TCP_ESTATS_DATA_ROD_v0","features":[90]},{"name":"TCP_ESTATS_DATA_RW_v0","features":[1,90]},{"name":"TCP_ESTATS_FINE_RTT_ROD_v0","features":[90]},{"name":"TCP_ESTATS_FINE_RTT_RW_v0","features":[1,90]},{"name":"TCP_ESTATS_OBS_REC_ROD_v0","features":[90]},{"name":"TCP_ESTATS_OBS_REC_RW_v0","features":[1,90]},{"name":"TCP_ESTATS_PATH_ROD_v0","features":[90]},{"name":"TCP_ESTATS_PATH_RW_v0","features":[1,90]},{"name":"TCP_ESTATS_REC_ROD_v0","features":[90]},{"name":"TCP_ESTATS_REC_RW_v0","features":[1,90]},{"name":"TCP_ESTATS_SEND_BUFF_ROD_v0","features":[90]},{"name":"TCP_ESTATS_SEND_BUFF_RW_v0","features":[1,90]},{"name":"TCP_ESTATS_SND_CONG_ROD_v0","features":[90]},{"name":"TCP_ESTATS_SND_CONG_ROS_v0","features":[90]},{"name":"TCP_ESTATS_SND_CONG_RW_v0","features":[1,90]},{"name":"TCP_ESTATS_SYN_OPTS_ROS_v0","features":[1,90]},{"name":"TCP_ESTATS_TYPE","features":[90]},{"name":"TCP_RESERVE_PORT_RANGE","features":[90]},{"name":"TCP_ROW","features":[90]},{"name":"TCP_RTO_ALGORITHM","features":[90]},{"name":"TCP_SOFT_ERROR","features":[90]},{"name":"TCP_STATS","features":[90]},{"name":"TCP_TABLE","features":[90]},{"name":"TCP_TABLE_BASIC_ALL","features":[90]},{"name":"TCP_TABLE_BASIC_CONNECTIONS","features":[90]},{"name":"TCP_TABLE_BASIC_LISTENER","features":[90]},{"name":"TCP_TABLE_CLASS","features":[90]},{"name":"TCP_TABLE_OWNER_MODULE_ALL","features":[90]},{"name":"TCP_TABLE_OWNER_MODULE_CONNECTIONS","features":[90]},{"name":"TCP_TABLE_OWNER_MODULE_LISTENER","features":[90]},{"name":"TCP_TABLE_OWNER_PID_ALL","features":[90]},{"name":"TCP_TABLE_OWNER_PID_CONNECTIONS","features":[90]},{"name":"TCP_TABLE_OWNER_PID_LISTENER","features":[90]},{"name":"TcpBoolOptDisabled","features":[90]},{"name":"TcpBoolOptEnabled","features":[90]},{"name":"TcpBoolOptUnchanged","features":[90]},{"name":"TcpConnectionEstatsBandwidth","features":[90]},{"name":"TcpConnectionEstatsData","features":[90]},{"name":"TcpConnectionEstatsFineRtt","features":[90]},{"name":"TcpConnectionEstatsMaximum","features":[90]},{"name":"TcpConnectionEstatsObsRec","features":[90]},{"name":"TcpConnectionEstatsPath","features":[90]},{"name":"TcpConnectionEstatsRec","features":[90]},{"name":"TcpConnectionEstatsSendBuff","features":[90]},{"name":"TcpConnectionEstatsSndCong","features":[90]},{"name":"TcpConnectionEstatsSynOpts","features":[90]},{"name":"TcpConnectionOffloadStateInHost","features":[90]},{"name":"TcpConnectionOffloadStateMax","features":[90]},{"name":"TcpConnectionOffloadStateOffloaded","features":[90]},{"name":"TcpConnectionOffloadStateOffloading","features":[90]},{"name":"TcpConnectionOffloadStateUploading","features":[90]},{"name":"TcpErrorAboveAckWindow","features":[90]},{"name":"TcpErrorAboveDataWindow","features":[90]},{"name":"TcpErrorAboveTsWindow","features":[90]},{"name":"TcpErrorBelowAckWindow","features":[90]},{"name":"TcpErrorBelowDataWindow","features":[90]},{"name":"TcpErrorBelowTsWindow","features":[90]},{"name":"TcpErrorDataChecksumError","features":[90]},{"name":"TcpErrorDataLengthError","features":[90]},{"name":"TcpErrorMaxSoftError","features":[90]},{"name":"TcpErrorNone","features":[90]},{"name":"TcpRtoAlgorithmConstant","features":[90]},{"name":"TcpRtoAlgorithmOther","features":[90]},{"name":"TcpRtoAlgorithmRsre","features":[90]},{"name":"TcpRtoAlgorithmVanj","features":[90]},{"name":"UDP6_STATS","features":[90]},{"name":"UDP_ROW","features":[90]},{"name":"UDP_STATS","features":[90]},{"name":"UDP_TABLE","features":[90]},{"name":"UDP_TABLE_BASIC","features":[90]},{"name":"UDP_TABLE_CLASS","features":[90]},{"name":"UDP_TABLE_OWNER_MODULE","features":[90]},{"name":"UDP_TABLE_OWNER_PID","features":[90]},{"name":"UnenableRouter","features":[1,90,6]},{"name":"UnregisterInterfaceTimestampConfigChange","features":[90]},{"name":"if_indextoname","features":[90]},{"name":"if_nametoindex","features":[90]}],"448":[{"name":"IPNG_ADDRESS","features":[91]},{"name":"MCAST_API_CURRENT_VERSION","features":[91]},{"name":"MCAST_API_VERSION_0","features":[91]},{"name":"MCAST_API_VERSION_1","features":[91]},{"name":"MCAST_CLIENT_ID_LEN","features":[91]},{"name":"MCAST_CLIENT_UID","features":[91]},{"name":"MCAST_LEASE_REQUEST","features":[91]},{"name":"MCAST_LEASE_RESPONSE","features":[91]},{"name":"MCAST_SCOPE_CTX","features":[91]},{"name":"MCAST_SCOPE_ENTRY","features":[1,91]},{"name":"McastApiCleanup","features":[91]},{"name":"McastApiStartup","features":[91]},{"name":"McastEnumerateScopes","features":[1,91]},{"name":"McastGenUID","features":[91]},{"name":"McastReleaseAddress","features":[91]},{"name":"McastRenewAddress","features":[91]},{"name":"McastRequestAddress","features":[91]}],"449":[{"name":"AUTHENTICATE","features":[16]},{"name":"BSSID_INFO","features":[16]},{"name":"CLOCK_NETWORK_DERIVED","features":[16]},{"name":"CLOCK_PRECISION","features":[16]},{"name":"DD_NDIS_DEVICE_NAME","features":[16]},{"name":"DOT11_RSN_KCK_LENGTH","features":[16]},{"name":"DOT11_RSN_KEK_LENGTH","features":[16]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[16]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[16]},{"name":"ENCRYPT","features":[16]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[16]},{"name":"GEN_GET_NETCARD_TIME","features":[16]},{"name":"GEN_GET_TIME_CAPS","features":[16]},{"name":"GUID_DEVINTERFACE_NET","features":[16]},{"name":"GUID_DEVINTERFACE_NETUIO","features":[16]},{"name":"GUID_NDIS_802_11_ADD_KEY","features":[16]},{"name":"GUID_NDIS_802_11_ADD_WEP","features":[16]},{"name":"GUID_NDIS_802_11_ASSOCIATION_INFORMATION","features":[16]},{"name":"GUID_NDIS_802_11_AUTHENTICATION_MODE","features":[16]},{"name":"GUID_NDIS_802_11_BSSID","features":[16]},{"name":"GUID_NDIS_802_11_BSSID_LIST","features":[16]},{"name":"GUID_NDIS_802_11_BSSID_LIST_SCAN","features":[16]},{"name":"GUID_NDIS_802_11_CONFIGURATION","features":[16]},{"name":"GUID_NDIS_802_11_DESIRED_RATES","features":[16]},{"name":"GUID_NDIS_802_11_DISASSOCIATE","features":[16]},{"name":"GUID_NDIS_802_11_FRAGMENTATION_THRESHOLD","features":[16]},{"name":"GUID_NDIS_802_11_INFRASTRUCTURE_MODE","features":[16]},{"name":"GUID_NDIS_802_11_MEDIA_STREAM_MODE","features":[16]},{"name":"GUID_NDIS_802_11_NETWORK_TYPES_SUPPORTED","features":[16]},{"name":"GUID_NDIS_802_11_NETWORK_TYPE_IN_USE","features":[16]},{"name":"GUID_NDIS_802_11_NUMBER_OF_ANTENNAS","features":[16]},{"name":"GUID_NDIS_802_11_POWER_MODE","features":[16]},{"name":"GUID_NDIS_802_11_PRIVACY_FILTER","features":[16]},{"name":"GUID_NDIS_802_11_RELOAD_DEFAULTS","features":[16]},{"name":"GUID_NDIS_802_11_REMOVE_KEY","features":[16]},{"name":"GUID_NDIS_802_11_REMOVE_WEP","features":[16]},{"name":"GUID_NDIS_802_11_RSSI","features":[16]},{"name":"GUID_NDIS_802_11_RSSI_TRIGGER","features":[16]},{"name":"GUID_NDIS_802_11_RTS_THRESHOLD","features":[16]},{"name":"GUID_NDIS_802_11_RX_ANTENNA_SELECTED","features":[16]},{"name":"GUID_NDIS_802_11_SSID","features":[16]},{"name":"GUID_NDIS_802_11_STATISTICS","features":[16]},{"name":"GUID_NDIS_802_11_SUPPORTED_RATES","features":[16]},{"name":"GUID_NDIS_802_11_TEST","features":[16]},{"name":"GUID_NDIS_802_11_TX_ANTENNA_SELECTED","features":[16]},{"name":"GUID_NDIS_802_11_TX_POWER_LEVEL","features":[16]},{"name":"GUID_NDIS_802_11_WEP_STATUS","features":[16]},{"name":"GUID_NDIS_802_3_CURRENT_ADDRESS","features":[16]},{"name":"GUID_NDIS_802_3_MAC_OPTIONS","features":[16]},{"name":"GUID_NDIS_802_3_MAXIMUM_LIST_SIZE","features":[16]},{"name":"GUID_NDIS_802_3_MULTICAST_LIST","features":[16]},{"name":"GUID_NDIS_802_3_PERMANENT_ADDRESS","features":[16]},{"name":"GUID_NDIS_802_3_RCV_ERROR_ALIGNMENT","features":[16]},{"name":"GUID_NDIS_802_3_XMIT_MORE_COLLISIONS","features":[16]},{"name":"GUID_NDIS_802_3_XMIT_ONE_COLLISION","features":[16]},{"name":"GUID_NDIS_802_5_CURRENT_ADDRESS","features":[16]},{"name":"GUID_NDIS_802_5_CURRENT_FUNCTIONAL","features":[16]},{"name":"GUID_NDIS_802_5_CURRENT_GROUP","features":[16]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATE","features":[16]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATUS","features":[16]},{"name":"GUID_NDIS_802_5_LAST_OPEN_STATUS","features":[16]},{"name":"GUID_NDIS_802_5_LINE_ERRORS","features":[16]},{"name":"GUID_NDIS_802_5_LOST_FRAMES","features":[16]},{"name":"GUID_NDIS_802_5_PERMANENT_ADDRESS","features":[16]},{"name":"GUID_NDIS_ENUMERATE_ADAPTER","features":[16]},{"name":"GUID_NDIS_ENUMERATE_ADAPTERS_EX","features":[16]},{"name":"GUID_NDIS_ENUMERATE_VC","features":[16]},{"name":"GUID_NDIS_GEN_CO_DRIVER_VERSION","features":[16]},{"name":"GUID_NDIS_GEN_CO_HARDWARE_STATUS","features":[16]},{"name":"GUID_NDIS_GEN_CO_LINK_SPEED","features":[16]},{"name":"GUID_NDIS_GEN_CO_MAC_OPTIONS","features":[16]},{"name":"GUID_NDIS_GEN_CO_MEDIA_CONNECT_STATUS","features":[16]},{"name":"GUID_NDIS_GEN_CO_MEDIA_IN_USE","features":[16]},{"name":"GUID_NDIS_GEN_CO_MEDIA_SUPPORTED","features":[16]},{"name":"GUID_NDIS_GEN_CO_MINIMUM_LINK_SPEED","features":[16]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_ERROR","features":[16]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_NO_BUFFER","features":[16]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_OK","features":[16]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DESCRIPTION","features":[16]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DRIVER_VERSION","features":[16]},{"name":"GUID_NDIS_GEN_CO_VENDOR_ID","features":[16]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_ERROR","features":[16]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_OK","features":[16]},{"name":"GUID_NDIS_GEN_CURRENT_LOOKAHEAD","features":[16]},{"name":"GUID_NDIS_GEN_CURRENT_PACKET_FILTER","features":[16]},{"name":"GUID_NDIS_GEN_DRIVER_VERSION","features":[16]},{"name":"GUID_NDIS_GEN_ENUMERATE_PORTS","features":[16]},{"name":"GUID_NDIS_GEN_HARDWARE_STATUS","features":[16]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION","features":[16]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION_PARAMETERS","features":[16]},{"name":"GUID_NDIS_GEN_LINK_PARAMETERS","features":[16]},{"name":"GUID_NDIS_GEN_LINK_SPEED","features":[16]},{"name":"GUID_NDIS_GEN_LINK_STATE","features":[16]},{"name":"GUID_NDIS_GEN_MAC_OPTIONS","features":[16]},{"name":"GUID_NDIS_GEN_MAXIMUM_FRAME_SIZE","features":[16]},{"name":"GUID_NDIS_GEN_MAXIMUM_LOOKAHEAD","features":[16]},{"name":"GUID_NDIS_GEN_MAXIMUM_SEND_PACKETS","features":[16]},{"name":"GUID_NDIS_GEN_MAXIMUM_TOTAL_SIZE","features":[16]},{"name":"GUID_NDIS_GEN_MEDIA_CONNECT_STATUS","features":[16]},{"name":"GUID_NDIS_GEN_MEDIA_IN_USE","features":[16]},{"name":"GUID_NDIS_GEN_MEDIA_SUPPORTED","features":[16]},{"name":"GUID_NDIS_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[16]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM","features":[16]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM_EX","features":[16]},{"name":"GUID_NDIS_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[16]},{"name":"GUID_NDIS_GEN_PORT_STATE","features":[16]},{"name":"GUID_NDIS_GEN_RCV_ERROR","features":[16]},{"name":"GUID_NDIS_GEN_RCV_NO_BUFFER","features":[16]},{"name":"GUID_NDIS_GEN_RCV_OK","features":[16]},{"name":"GUID_NDIS_GEN_RECEIVE_BLOCK_SIZE","features":[16]},{"name":"GUID_NDIS_GEN_RECEIVE_BUFFER_SPACE","features":[16]},{"name":"GUID_NDIS_GEN_STATISTICS","features":[16]},{"name":"GUID_NDIS_GEN_TRANSMIT_BLOCK_SIZE","features":[16]},{"name":"GUID_NDIS_GEN_TRANSMIT_BUFFER_SPACE","features":[16]},{"name":"GUID_NDIS_GEN_VENDOR_DESCRIPTION","features":[16]},{"name":"GUID_NDIS_GEN_VENDOR_DRIVER_VERSION","features":[16]},{"name":"GUID_NDIS_GEN_VENDOR_ID","features":[16]},{"name":"GUID_NDIS_GEN_VLAN_ID","features":[16]},{"name":"GUID_NDIS_GEN_XMIT_ERROR","features":[16]},{"name":"GUID_NDIS_GEN_XMIT_OK","features":[16]},{"name":"GUID_NDIS_HD_SPLIT_CURRENT_CONFIG","features":[16]},{"name":"GUID_NDIS_HD_SPLIT_PARAMETERS","features":[16]},{"name":"GUID_NDIS_LAN_CLASS","features":[16]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_NDK_STATE","features":[16]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_ARRIVAL","features":[16]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_REMOVAL","features":[16]},{"name":"GUID_NDIS_NOTIFY_BIND","features":[16]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF","features":[16]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF_EX","features":[16]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON","features":[16]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON_EX","features":[16]},{"name":"GUID_NDIS_NOTIFY_FILTER_ARRIVAL","features":[16]},{"name":"GUID_NDIS_NOTIFY_FILTER_REMOVAL","features":[16]},{"name":"GUID_NDIS_NOTIFY_UNBIND","features":[16]},{"name":"GUID_NDIS_NOTIFY_VC_ARRIVAL","features":[16]},{"name":"GUID_NDIS_NOTIFY_VC_REMOVAL","features":[16]},{"name":"GUID_NDIS_PM_ACTIVE_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_PM_ADMIN_CONFIG","features":[16]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_FILTERS","features":[16]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_QUEUES","features":[16]},{"name":"GUID_NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[16]},{"name":"GUID_NDIS_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_RECEIVE_FILTER_PARAMETERS","features":[16]},{"name":"GUID_NDIS_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[16]},{"name":"GUID_NDIS_RECEIVE_SCALE_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_RSS_ENABLED","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_COMPLETION","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_START","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_COMPLETION","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_START","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_DISASSOCIATION","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_LINK_QUALITY","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_MPDU_MAX_LENGTH_CHANGED","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_PHY_STATE_CHANGED","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_PMKID_CANDIDATE_LIST","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_COMPLETION","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_START","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_SCAN_CONFIRM","features":[16]},{"name":"GUID_NDIS_STATUS_DOT11_TKIPMIC_FAILURE","features":[16]},{"name":"GUID_NDIS_STATUS_EXTERNAL_CONNECTIVITY_CHANGE","features":[16]},{"name":"GUID_NDIS_STATUS_HD_SPLIT_CURRENT_CONFIG","features":[16]},{"name":"GUID_NDIS_STATUS_LINK_SPEED_CHANGE","features":[16]},{"name":"GUID_NDIS_STATUS_LINK_STATE","features":[16]},{"name":"GUID_NDIS_STATUS_MEDIA_CONNECT","features":[16]},{"name":"GUID_NDIS_STATUS_MEDIA_DISCONNECT","features":[16]},{"name":"GUID_NDIS_STATUS_MEDIA_SPECIFIC_INDICATION","features":[16]},{"name":"GUID_NDIS_STATUS_NETWORK_CHANGE","features":[16]},{"name":"GUID_NDIS_STATUS_OPER_STATUS","features":[16]},{"name":"GUID_NDIS_STATUS_PACKET_FILTER","features":[16]},{"name":"GUID_NDIS_STATUS_PM_OFFLOAD_REJECTED","features":[16]},{"name":"GUID_NDIS_STATUS_PM_WAKE_REASON","features":[16]},{"name":"GUID_NDIS_STATUS_PM_WOL_PATTERN_REJECTED","features":[16]},{"name":"GUID_NDIS_STATUS_PORT_STATE","features":[16]},{"name":"GUID_NDIS_STATUS_RESET_END","features":[16]},{"name":"GUID_NDIS_STATUS_RESET_START","features":[16]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_SWITCH_MICROSOFT_VENDOR_ID","features":[16]},{"name":"GUID_NDIS_SWITCH_PORT_PROPERTY_PROFILE_ID_DEFAULT_EXTERNAL_NIC","features":[16]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_TCP_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"GUID_NDIS_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_TCP_OFFLOAD_PARAMETERS","features":[16]},{"name":"GUID_NDIS_TCP_RSC_STATISTICS","features":[16]},{"name":"GUID_NDIS_WAKE_ON_MAGIC_PACKET_ONLY","features":[16]},{"name":"GUID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[16]},{"name":"GUID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[16]},{"name":"GUID_PM_ADD_PROTOCOL_OFFLOAD","features":[16]},{"name":"GUID_PM_ADD_WOL_PATTERN","features":[16]},{"name":"GUID_PM_CURRENT_CAPABILITIES","features":[16]},{"name":"GUID_PM_GET_PROTOCOL_OFFLOAD","features":[16]},{"name":"GUID_PM_HARDWARE_CAPABILITIES","features":[16]},{"name":"GUID_PM_PARAMETERS","features":[16]},{"name":"GUID_PM_PROTOCOL_OFFLOAD_LIST","features":[16]},{"name":"GUID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[16]},{"name":"GUID_PM_REMOVE_WOL_PATTERN","features":[16]},{"name":"GUID_PM_WOL_PATTERN_LIST","features":[16]},{"name":"GUID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[16]},{"name":"GUID_STATUS_MEDIA_SPECIFIC_INDICATION_EX","features":[16]},{"name":"IF_ADMINISTRATIVE_DEMANDDIAL","features":[16]},{"name":"IF_ADMINISTRATIVE_DISABLED","features":[16]},{"name":"IF_ADMINISTRATIVE_ENABLED","features":[16]},{"name":"IF_ADMINISTRATIVE_STATE","features":[16]},{"name":"IF_COUNTED_STRING_LH","features":[16]},{"name":"IF_MAX_PHYS_ADDRESS_LENGTH","features":[16]},{"name":"IF_MAX_STRING_SIZE","features":[16]},{"name":"IF_OPER_STATUS","features":[16]},{"name":"IF_PHYSICAL_ADDRESS_LH","features":[16]},{"name":"IOCTL_NDIS_RESERVED5","features":[16]},{"name":"IOCTL_NDIS_RESERVED6","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[16]},{"name":"IfOperStatusDormant","features":[16]},{"name":"IfOperStatusDown","features":[16]},{"name":"IfOperStatusLowerLayerDown","features":[16]},{"name":"IfOperStatusNotPresent","features":[16]},{"name":"IfOperStatusTesting","features":[16]},{"name":"IfOperStatusUnknown","features":[16]},{"name":"IfOperStatusUp","features":[16]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[16]},{"name":"MediaConnectStateConnected","features":[16]},{"name":"MediaConnectStateDisconnected","features":[16]},{"name":"MediaConnectStateUnknown","features":[16]},{"name":"MediaDuplexStateFull","features":[16]},{"name":"MediaDuplexStateHalf","features":[16]},{"name":"MediaDuplexStateUnknown","features":[16]},{"name":"NDIS_802_11_AI_REQFI","features":[16]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[16]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[16]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[16]},{"name":"NDIS_802_11_AI_RESFI","features":[16]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[16]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[16]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[16]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[16]},{"name":"NDIS_802_11_BSSID_LIST","features":[16]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[16]},{"name":"NDIS_802_11_CAPABILITY","features":[16]},{"name":"NDIS_802_11_CONFIGURATION","features":[16]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[16]},{"name":"NDIS_802_11_FIXED_IEs","features":[16]},{"name":"NDIS_802_11_KEY","features":[16]},{"name":"NDIS_802_11_LENGTH_RATES","features":[16]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[16]},{"name":"NDIS_802_11_LENGTH_SSID","features":[16]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[16]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[16]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[16]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[16]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[16]},{"name":"NDIS_802_11_PMKID","features":[16]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[16]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[16]},{"name":"NDIS_802_11_POWER_MODE","features":[16]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[16]},{"name":"NDIS_802_11_RADIO_STATUS","features":[16]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[16]},{"name":"NDIS_802_11_REMOVE_KEY","features":[16]},{"name":"NDIS_802_11_SSID","features":[16]},{"name":"NDIS_802_11_STATISTICS","features":[16]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[16]},{"name":"NDIS_802_11_STATUS_TYPE","features":[16]},{"name":"NDIS_802_11_TEST","features":[16]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[16]},{"name":"NDIS_802_11_WEP","features":[16]},{"name":"NDIS_802_11_WEP_STATUS","features":[16]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[16]},{"name":"NDIS_802_5_RING_STATE","features":[16]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[16]},{"name":"NDIS_CO_LINK_SPEED","features":[16]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[16]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[16]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[16]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[16]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[16]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[16]},{"name":"NDIS_DEVICE_POWER_STATE","features":[16]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[16]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[16]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[16]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[16]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[16]},{"name":"NDIS_ENCAPSULATION_NULL","features":[16]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[16]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[16]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[16]},{"name":"NDIS_ETH_TYPE_802_1X","features":[16]},{"name":"NDIS_ETH_TYPE_ARP","features":[16]},{"name":"NDIS_ETH_TYPE_IPV4","features":[16]},{"name":"NDIS_ETH_TYPE_IPV6","features":[16]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[16]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[16]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[16]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[16]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[16]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[16]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[16]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[16]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[16]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[16]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[16]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[16]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[16]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[16]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[16]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[16]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[16]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[16]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[16]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[16]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[16]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[16]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[16]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[16]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[16]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[16]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[16]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[16]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[16]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[16]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[16]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[16]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[16]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[16]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[16]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[16]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[16]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[16]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[16]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[16]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[16]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[16]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[16]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[16]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[16]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_GUID","features":[16]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[16]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[16]},{"name":"NDIS_HARDWARE_STATUS","features":[16]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[16]},{"name":"NDIS_HASH_IPV4","features":[16]},{"name":"NDIS_HASH_IPV6","features":[16]},{"name":"NDIS_HASH_IPV6_EX","features":[16]},{"name":"NDIS_HASH_TCP_IPV4","features":[16]},{"name":"NDIS_HASH_TCP_IPV6","features":[16]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[16]},{"name":"NDIS_HASH_TYPE_MASK","features":[16]},{"name":"NDIS_HASH_UDP_IPV4","features":[16]},{"name":"NDIS_HASH_UDP_IPV6","features":[16]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[16]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[16]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[16]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[16]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[16]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[16]},{"name":"NDIS_INTERFACE_INFORMATION","features":[1,16]},{"name":"NDIS_INTERRUPT_MODERATION","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[16]},{"name":"NDIS_IP_OPER_STATE","features":[16]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[16]},{"name":"NDIS_IP_OPER_STATUS","features":[16]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[16]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[16]},{"name":"NDIS_IRDA_PACKET_INFO","features":[16]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[16]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_LINK_PARAMETERS","features":[16]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_LINK_SPEED","features":[16]},{"name":"NDIS_LINK_STATE","features":[16]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[16]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[16]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[16]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[16]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[16]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[16]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[16]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[16]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[16]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[16]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[16]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[16]},{"name":"NDIS_MAXIMUM_PORTS","features":[16]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[16]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[16]},{"name":"NDIS_MEDIA_STATE","features":[16]},{"name":"NDIS_MEDIUM","features":[16]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[16]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[16]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[16]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[16]},{"name":"NDIS_OBJECT_HEADER","features":[16]},{"name":"NDIS_OBJECT_REVISION_1","features":[16]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[16]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[16]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[16]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[16]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[16]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[16]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[16]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[16]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[16]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[16]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[16]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[16]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[16]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[16]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[16]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[16]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[16]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OFFLOAD","features":[16]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[16]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[16]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[16]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[16]},{"name":"NDIS_OFFLOAD_SET_ON","features":[16]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[16]},{"name":"NDIS_OPER_STATE","features":[16]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[16]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[16]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[16]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[16]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[16]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[16]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[16]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[16]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[16]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[16]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[16]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[16]},{"name":"NDIS_PACKET_TYPE_SMT","features":[16]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[16]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[16]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[16]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[16]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[16]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[16]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[16]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[16]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[16]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[16]},{"name":"NDIS_PM_PACKET_PATTERN","features":[16]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[16]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[16]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[16]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[16]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[16]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[16]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[16]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[16]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[16]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[16]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[16]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[16]},{"name":"NDIS_PNP_CAPABILITIES","features":[16]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[16]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[16]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[16]},{"name":"NDIS_PORT","features":[16]},{"name":"NDIS_PORT_ARRAY","features":[16]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[16]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[16]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[16]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[16]},{"name":"NDIS_PORT_CONTROL_STATE","features":[16]},{"name":"NDIS_PORT_STATE","features":[16]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[16]},{"name":"NDIS_PORT_TYPE","features":[16]},{"name":"NDIS_PROCESSOR_VENDOR","features":[16]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[16]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[16]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[16]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[16]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[16]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[16]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[16]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[16]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[16]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[16]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[16]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[16]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[16]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[16]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[16]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[16]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[16]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[16]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[16]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[16]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[16]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[16]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[16]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[16]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[16]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[16]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[16]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[16]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[16]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[16]},{"name":"NDIS_QOS_TSA_CBS","features":[16]},{"name":"NDIS_QOS_TSA_ETS","features":[16]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[16]},{"name":"NDIS_QOS_TSA_STRICT","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[16]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[16]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[16]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[16]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[16]},{"name":"NDIS_REQUEST_TYPE","features":[16]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[16]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[16]},{"name":"NDIS_RING_HARD_ERROR","features":[16]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[16]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[16]},{"name":"NDIS_RING_RING_RECOVERY","features":[16]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[16]},{"name":"NDIS_RING_SINGLE_STATION","features":[16]},{"name":"NDIS_RING_SOFT_ERROR","features":[16]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[16]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[16]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[16]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[16]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[16]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[16]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[16]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[16]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[16]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[16]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[16]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[16]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[16]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[16]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[16]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[16]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[16]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[16]},{"name":"NDIS_STATISTICS_INFO","features":[16]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[16]},{"name":"NDIS_STATISTICS_VALUE","features":[16]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[16]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[16]},{"name":"NDIS_SUPPORT_NDIS6","features":[16]},{"name":"NDIS_SUPPORT_NDIS61","features":[16]},{"name":"NDIS_SUPPORT_NDIS620","features":[16]},{"name":"NDIS_SUPPORT_NDIS630","features":[16]},{"name":"NDIS_SUPPORT_NDIS640","features":[16]},{"name":"NDIS_SUPPORT_NDIS650","features":[16]},{"name":"NDIS_SUPPORT_NDIS651","features":[16]},{"name":"NDIS_SUPPORT_NDIS660","features":[16]},{"name":"NDIS_SUPPORT_NDIS670","features":[16]},{"name":"NDIS_SUPPORT_NDIS680","features":[16]},{"name":"NDIS_SUPPORT_NDIS681","features":[16]},{"name":"NDIS_SUPPORT_NDIS682","features":[16]},{"name":"NDIS_SUPPORT_NDIS683","features":[16]},{"name":"NDIS_SUPPORT_NDIS684","features":[16]},{"name":"NDIS_SUPPORT_NDIS685","features":[16]},{"name":"NDIS_SUPPORT_NDIS686","features":[16]},{"name":"NDIS_SUPPORT_NDIS687","features":[16]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[16]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[16]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[16]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[16]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[16]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[16]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[16]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[16]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[16]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[16]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[1,16]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[1,16]},{"name":"NDIS_VAR_DATA_DESC","features":[16]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[16]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[16]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[16]},{"name":"NDIS_WAN_QUALITY","features":[16]},{"name":"NDIS_WLAN_BSSID","features":[16]},{"name":"NDIS_WLAN_BSSID_EX","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[16]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[16]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[16]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[16]},{"name":"NDIS_WMI_EVENT_HEADER","features":[16]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[16]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[16]},{"name":"NDIS_WMI_METHOD_HEADER","features":[16]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[16]},{"name":"NDIS_WMI_OFFLOAD","features":[16]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[16]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[16]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[16]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_WMI_SET_HEADER","features":[16]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[16]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[16]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[16]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[16]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[16]},{"name":"NDK_ADAPTER_FLAG_CQ_INTERRUPT_MODERATION_SUPPORTED","features":[16]},{"name":"NDK_ADAPTER_FLAG_CQ_RESIZE_SUPPORTED","features":[16]},{"name":"NDK_ADAPTER_FLAG_IN_ORDER_DMA_SUPPORTED","features":[16]},{"name":"NDK_ADAPTER_FLAG_LOOPBACK_CONNECTIONS_SUPPORTED","features":[16]},{"name":"NDK_ADAPTER_FLAG_MULTI_ENGINE_SUPPORTED","features":[16]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_LOCAL_INVALIDATE_SUPPORTED","features":[16]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_SINK_NOT_REQUIRED","features":[16]},{"name":"NDK_ADAPTER_INFO","features":[16]},{"name":"NDK_RDMA_TECHNOLOGY","features":[16]},{"name":"NDK_VERSION","features":[16]},{"name":"NETWORK_ADDRESS","features":[16]},{"name":"NETWORK_ADDRESS_IP","features":[16]},{"name":"NETWORK_ADDRESS_IP6","features":[16]},{"name":"NETWORK_ADDRESS_IPX","features":[16]},{"name":"NETWORK_ADDRESS_LIST","features":[16]},{"name":"NET_IFLUID_UNSPECIFIED","features":[16]},{"name":"NET_IF_ACCESS_BROADCAST","features":[16]},{"name":"NET_IF_ACCESS_LOOPBACK","features":[16]},{"name":"NET_IF_ACCESS_MAXIMUM","features":[16]},{"name":"NET_IF_ACCESS_POINT_TO_MULTI_POINT","features":[16]},{"name":"NET_IF_ACCESS_POINT_TO_POINT","features":[16]},{"name":"NET_IF_ACCESS_TYPE","features":[16]},{"name":"NET_IF_ADMIN_STATUS","features":[16]},{"name":"NET_IF_ADMIN_STATUS_DOWN","features":[16]},{"name":"NET_IF_ADMIN_STATUS_TESTING","features":[16]},{"name":"NET_IF_ADMIN_STATUS_UP","features":[16]},{"name":"NET_IF_ALIAS_LH","features":[16]},{"name":"NET_IF_CONNECTION_DEDICATED","features":[16]},{"name":"NET_IF_CONNECTION_DEMAND","features":[16]},{"name":"NET_IF_CONNECTION_MAXIMUM","features":[16]},{"name":"NET_IF_CONNECTION_PASSIVE","features":[16]},{"name":"NET_IF_CONNECTION_TYPE","features":[16]},{"name":"NET_IF_DIRECTION_MAXIMUM","features":[16]},{"name":"NET_IF_DIRECTION_RECEIVEONLY","features":[16]},{"name":"NET_IF_DIRECTION_SENDONLY","features":[16]},{"name":"NET_IF_DIRECTION_SENDRECEIVE","features":[16]},{"name":"NET_IF_DIRECTION_TYPE","features":[16]},{"name":"NET_IF_MEDIA_CONNECT_STATE","features":[16]},{"name":"NET_IF_MEDIA_DUPLEX_STATE","features":[16]},{"name":"NET_IF_OID_COMPARTMENT_ID","features":[16]},{"name":"NET_IF_OID_IF_ALIAS","features":[16]},{"name":"NET_IF_OID_IF_ENTRY","features":[16]},{"name":"NET_IF_OID_NETWORK_GUID","features":[16]},{"name":"NET_IF_OPER_STATUS","features":[16]},{"name":"NET_IF_OPER_STATUS_DORMANT","features":[16]},{"name":"NET_IF_OPER_STATUS_DORMANT_LOW_POWER","features":[16]},{"name":"NET_IF_OPER_STATUS_DORMANT_PAUSED","features":[16]},{"name":"NET_IF_OPER_STATUS_DOWN","features":[16]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_AUTHENTICATED","features":[16]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_MEDIA_CONNECTED","features":[16]},{"name":"NET_IF_OPER_STATUS_LOWER_LAYER_DOWN","features":[16]},{"name":"NET_IF_OPER_STATUS_NOT_PRESENT","features":[16]},{"name":"NET_IF_OPER_STATUS_TESTING","features":[16]},{"name":"NET_IF_OPER_STATUS_UNKNOWN","features":[16]},{"name":"NET_IF_OPER_STATUS_UP","features":[16]},{"name":"NET_IF_RCV_ADDRESS_LH","features":[16]},{"name":"NET_IF_RCV_ADDRESS_TYPE","features":[16]},{"name":"NET_IF_RCV_ADDRESS_TYPE_NON_VOLATILE","features":[16]},{"name":"NET_IF_RCV_ADDRESS_TYPE_OTHER","features":[16]},{"name":"NET_IF_RCV_ADDRESS_TYPE_VOLATILE","features":[16]},{"name":"NET_LUID_LH","features":[16]},{"name":"NET_PHYSICAL_LOCATION_LH","features":[16]},{"name":"NET_SITEID_MAXSYSTEM","features":[16]},{"name":"NET_SITEID_MAXUSER","features":[16]},{"name":"NET_SITEID_UNSPECIFIED","features":[16]},{"name":"NIIF_FILTER_INTERFACE","features":[16]},{"name":"NIIF_HARDWARE_INTERFACE","features":[16]},{"name":"NIIF_NDIS_ENDPOINT_INTERFACE","features":[16]},{"name":"NIIF_NDIS_ISCSI_INTERFACE","features":[16]},{"name":"NIIF_NDIS_RESERVED1","features":[16]},{"name":"NIIF_NDIS_RESERVED2","features":[16]},{"name":"NIIF_NDIS_RESERVED3","features":[16]},{"name":"NIIF_NDIS_RESERVED4","features":[16]},{"name":"NIIF_NDIS_WDM_INTERFACE","features":[16]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[16]},{"name":"Ndis802_11AuthModeMax","features":[16]},{"name":"Ndis802_11AuthModeOpen","features":[16]},{"name":"Ndis802_11AuthModeShared","features":[16]},{"name":"Ndis802_11AuthModeWPA","features":[16]},{"name":"Ndis802_11AuthModeWPA2","features":[16]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[16]},{"name":"Ndis802_11AuthModeWPA3","features":[16]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[16]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[16]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[16]},{"name":"Ndis802_11AuthModeWPANone","features":[16]},{"name":"Ndis802_11AuthModeWPAPSK","features":[16]},{"name":"Ndis802_11AutoUnknown","features":[16]},{"name":"Ndis802_11Automode","features":[16]},{"name":"Ndis802_11DS","features":[16]},{"name":"Ndis802_11Encryption1Enabled","features":[16]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[16]},{"name":"Ndis802_11Encryption2Enabled","features":[16]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[16]},{"name":"Ndis802_11Encryption3Enabled","features":[16]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[16]},{"name":"Ndis802_11EncryptionDisabled","features":[16]},{"name":"Ndis802_11EncryptionNotSupported","features":[16]},{"name":"Ndis802_11FH","features":[16]},{"name":"Ndis802_11IBSS","features":[16]},{"name":"Ndis802_11Infrastructure","features":[16]},{"name":"Ndis802_11InfrastructureMax","features":[16]},{"name":"Ndis802_11MediaStreamOff","features":[16]},{"name":"Ndis802_11MediaStreamOn","features":[16]},{"name":"Ndis802_11NetworkTypeMax","features":[16]},{"name":"Ndis802_11OFDM24","features":[16]},{"name":"Ndis802_11OFDM5","features":[16]},{"name":"Ndis802_11PowerModeCAM","features":[16]},{"name":"Ndis802_11PowerModeFast_PSP","features":[16]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[16]},{"name":"Ndis802_11PowerModeMax","features":[16]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[16]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[16]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[16]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[16]},{"name":"Ndis802_11RadioStatusMax","features":[16]},{"name":"Ndis802_11RadioStatusOn","features":[16]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[16]},{"name":"Ndis802_11ReloadWEPKeys","features":[16]},{"name":"Ndis802_11StatusTypeMax","features":[16]},{"name":"Ndis802_11StatusType_Authentication","features":[16]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[16]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[16]},{"name":"Ndis802_11WEPDisabled","features":[16]},{"name":"Ndis802_11WEPEnabled","features":[16]},{"name":"Ndis802_11WEPKeyAbsent","features":[16]},{"name":"Ndis802_11WEPNotSupported","features":[16]},{"name":"NdisDefinitelyNetworkChange","features":[16]},{"name":"NdisDeviceStateD0","features":[16]},{"name":"NdisDeviceStateD1","features":[16]},{"name":"NdisDeviceStateD2","features":[16]},{"name":"NdisDeviceStateD3","features":[16]},{"name":"NdisDeviceStateMaximum","features":[16]},{"name":"NdisDeviceStateUnspecified","features":[16]},{"name":"NdisFddiRingDetect","features":[16]},{"name":"NdisFddiRingDirected","features":[16]},{"name":"NdisFddiRingIsolated","features":[16]},{"name":"NdisFddiRingNonOperational","features":[16]},{"name":"NdisFddiRingNonOperationalDup","features":[16]},{"name":"NdisFddiRingOperational","features":[16]},{"name":"NdisFddiRingOperationalDup","features":[16]},{"name":"NdisFddiRingTrace","features":[16]},{"name":"NdisFddiStateActive","features":[16]},{"name":"NdisFddiStateBreak","features":[16]},{"name":"NdisFddiStateConnect","features":[16]},{"name":"NdisFddiStateJoin","features":[16]},{"name":"NdisFddiStateMaintenance","features":[16]},{"name":"NdisFddiStateNext","features":[16]},{"name":"NdisFddiStateOff","features":[16]},{"name":"NdisFddiStateSignal","features":[16]},{"name":"NdisFddiStateTrace","features":[16]},{"name":"NdisFddiStateVerify","features":[16]},{"name":"NdisFddiTypeCWrapA","features":[16]},{"name":"NdisFddiTypeCWrapB","features":[16]},{"name":"NdisFddiTypeCWrapS","features":[16]},{"name":"NdisFddiTypeIsolated","features":[16]},{"name":"NdisFddiTypeLocalA","features":[16]},{"name":"NdisFddiTypeLocalAB","features":[16]},{"name":"NdisFddiTypeLocalB","features":[16]},{"name":"NdisFddiTypeLocalS","features":[16]},{"name":"NdisFddiTypeThrough","features":[16]},{"name":"NdisFddiTypeWrapA","features":[16]},{"name":"NdisFddiTypeWrapAB","features":[16]},{"name":"NdisFddiTypeWrapB","features":[16]},{"name":"NdisFddiTypeWrapS","features":[16]},{"name":"NdisHardwareStatusClosing","features":[16]},{"name":"NdisHardwareStatusInitializing","features":[16]},{"name":"NdisHardwareStatusNotReady","features":[16]},{"name":"NdisHardwareStatusReady","features":[16]},{"name":"NdisHardwareStatusReset","features":[16]},{"name":"NdisHashFunctionReserved1","features":[16]},{"name":"NdisHashFunctionReserved2","features":[16]},{"name":"NdisHashFunctionReserved3","features":[16]},{"name":"NdisHashFunctionToeplitz","features":[16]},{"name":"NdisInterruptModerationDisabled","features":[16]},{"name":"NdisInterruptModerationEnabled","features":[16]},{"name":"NdisInterruptModerationNotSupported","features":[16]},{"name":"NdisInterruptModerationUnknown","features":[16]},{"name":"NdisMediaStateConnected","features":[16]},{"name":"NdisMediaStateDisconnected","features":[16]},{"name":"NdisMedium1394","features":[16]},{"name":"NdisMedium802_3","features":[16]},{"name":"NdisMedium802_5","features":[16]},{"name":"NdisMediumArcnet878_2","features":[16]},{"name":"NdisMediumArcnetRaw","features":[16]},{"name":"NdisMediumAtm","features":[16]},{"name":"NdisMediumBpc","features":[16]},{"name":"NdisMediumCoWan","features":[16]},{"name":"NdisMediumDix","features":[16]},{"name":"NdisMediumFddi","features":[16]},{"name":"NdisMediumIP","features":[16]},{"name":"NdisMediumInfiniBand","features":[16]},{"name":"NdisMediumIrda","features":[16]},{"name":"NdisMediumLocalTalk","features":[16]},{"name":"NdisMediumLoopback","features":[16]},{"name":"NdisMediumMax","features":[16]},{"name":"NdisMediumNative802_11","features":[16]},{"name":"NdisMediumTunnel","features":[16]},{"name":"NdisMediumWan","features":[16]},{"name":"NdisMediumWiMAX","features":[16]},{"name":"NdisMediumWirelessWan","features":[16]},{"name":"NdisNetworkChangeFromMediaConnect","features":[16]},{"name":"NdisNetworkChangeMax","features":[16]},{"name":"NdisPauseFunctionsReceiveOnly","features":[16]},{"name":"NdisPauseFunctionsSendAndReceive","features":[16]},{"name":"NdisPauseFunctionsSendOnly","features":[16]},{"name":"NdisPauseFunctionsUnknown","features":[16]},{"name":"NdisPauseFunctionsUnsupported","features":[16]},{"name":"NdisPhysicalMedium1394","features":[16]},{"name":"NdisPhysicalMedium802_3","features":[16]},{"name":"NdisPhysicalMedium802_5","features":[16]},{"name":"NdisPhysicalMediumBluetooth","features":[16]},{"name":"NdisPhysicalMediumCableModem","features":[16]},{"name":"NdisPhysicalMediumDSL","features":[16]},{"name":"NdisPhysicalMediumFibreChannel","features":[16]},{"name":"NdisPhysicalMediumInfiniband","features":[16]},{"name":"NdisPhysicalMediumIrda","features":[16]},{"name":"NdisPhysicalMediumMax","features":[16]},{"name":"NdisPhysicalMediumNative802_11","features":[16]},{"name":"NdisPhysicalMediumNative802_15_4","features":[16]},{"name":"NdisPhysicalMediumOther","features":[16]},{"name":"NdisPhysicalMediumPhoneLine","features":[16]},{"name":"NdisPhysicalMediumPowerLine","features":[16]},{"name":"NdisPhysicalMediumUWB","features":[16]},{"name":"NdisPhysicalMediumUnspecified","features":[16]},{"name":"NdisPhysicalMediumWiMax","features":[16]},{"name":"NdisPhysicalMediumWiredCoWan","features":[16]},{"name":"NdisPhysicalMediumWiredWAN","features":[16]},{"name":"NdisPhysicalMediumWirelessLan","features":[16]},{"name":"NdisPhysicalMediumWirelessWan","features":[16]},{"name":"NdisPortAuthorizationUnknown","features":[16]},{"name":"NdisPortAuthorized","features":[16]},{"name":"NdisPortControlStateControlled","features":[16]},{"name":"NdisPortControlStateUncontrolled","features":[16]},{"name":"NdisPortControlStateUnknown","features":[16]},{"name":"NdisPortReauthorizing","features":[16]},{"name":"NdisPortType8021xSupplicant","features":[16]},{"name":"NdisPortTypeBridge","features":[16]},{"name":"NdisPortTypeMax","features":[16]},{"name":"NdisPortTypeRasConnection","features":[16]},{"name":"NdisPortTypeUndefined","features":[16]},{"name":"NdisPortUnauthorized","features":[16]},{"name":"NdisPossibleNetworkChange","features":[16]},{"name":"NdisProcessorVendorAuthenticAMD","features":[16]},{"name":"NdisProcessorVendorGenuinIntel","features":[16]},{"name":"NdisProcessorVendorGenuineIntel","features":[16]},{"name":"NdisProcessorVendorUnknown","features":[16]},{"name":"NdisRequestClose","features":[16]},{"name":"NdisRequestGeneric1","features":[16]},{"name":"NdisRequestGeneric2","features":[16]},{"name":"NdisRequestGeneric3","features":[16]},{"name":"NdisRequestGeneric4","features":[16]},{"name":"NdisRequestOpen","features":[16]},{"name":"NdisRequestQueryInformation","features":[16]},{"name":"NdisRequestQueryStatistics","features":[16]},{"name":"NdisRequestReset","features":[16]},{"name":"NdisRequestSend","features":[16]},{"name":"NdisRequestSetInformation","features":[16]},{"name":"NdisRequestTransferData","features":[16]},{"name":"NdisRingStateClosed","features":[16]},{"name":"NdisRingStateClosing","features":[16]},{"name":"NdisRingStateOpenFailure","features":[16]},{"name":"NdisRingStateOpened","features":[16]},{"name":"NdisRingStateOpening","features":[16]},{"name":"NdisRingStateRingFailure","features":[16]},{"name":"NdisWanErrorControl","features":[16]},{"name":"NdisWanHeaderEthernet","features":[16]},{"name":"NdisWanHeaderNative","features":[16]},{"name":"NdisWanMediumAgileVPN","features":[16]},{"name":"NdisWanMediumAtm","features":[16]},{"name":"NdisWanMediumFrameRelay","features":[16]},{"name":"NdisWanMediumGre","features":[16]},{"name":"NdisWanMediumHub","features":[16]},{"name":"NdisWanMediumIrda","features":[16]},{"name":"NdisWanMediumIsdn","features":[16]},{"name":"NdisWanMediumL2TP","features":[16]},{"name":"NdisWanMediumPPTP","features":[16]},{"name":"NdisWanMediumParallel","features":[16]},{"name":"NdisWanMediumPppoe","features":[16]},{"name":"NdisWanMediumSSTP","features":[16]},{"name":"NdisWanMediumSW56K","features":[16]},{"name":"NdisWanMediumSerial","features":[16]},{"name":"NdisWanMediumSonet","features":[16]},{"name":"NdisWanMediumSubTypeMax","features":[16]},{"name":"NdisWanMediumX_25","features":[16]},{"name":"NdisWanRaw","features":[16]},{"name":"NdisWanReliable","features":[16]},{"name":"NdkInfiniBand","features":[16]},{"name":"NdkMaxTechnology","features":[16]},{"name":"NdkRoCE","features":[16]},{"name":"NdkRoCEv2","features":[16]},{"name":"NdkUndefined","features":[16]},{"name":"NdkiWarp","features":[16]},{"name":"OFFLOAD_ALGO_INFO","features":[16]},{"name":"OFFLOAD_CONF_ALGO","features":[16]},{"name":"OFFLOAD_INBOUND_SA","features":[16]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[16]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[1,16]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[1,16]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[16]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[1,16]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[1,16]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[16]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[16]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[16]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[16]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[16]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[16]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[16]},{"name":"OFFLOAD_MAX_SAS","features":[16]},{"name":"OFFLOAD_OPERATION_E","features":[16]},{"name":"OFFLOAD_OUTBOUND_SA","features":[16]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[16]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[16]},{"name":"OID_1394_VC_INFO","features":[16]},{"name":"OID_802_11_ADD_KEY","features":[16]},{"name":"OID_802_11_ADD_WEP","features":[16]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[16]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[16]},{"name":"OID_802_11_BSSID","features":[16]},{"name":"OID_802_11_BSSID_LIST","features":[16]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[16]},{"name":"OID_802_11_CAPABILITY","features":[16]},{"name":"OID_802_11_CONFIGURATION","features":[16]},{"name":"OID_802_11_DESIRED_RATES","features":[16]},{"name":"OID_802_11_DISASSOCIATE","features":[16]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[16]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[16]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[16]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[16]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[16]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[16]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[16]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[16]},{"name":"OID_802_11_PMKID","features":[16]},{"name":"OID_802_11_POWER_MODE","features":[16]},{"name":"OID_802_11_PRIVACY_FILTER","features":[16]},{"name":"OID_802_11_RADIO_STATUS","features":[16]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[16]},{"name":"OID_802_11_REMOVE_KEY","features":[16]},{"name":"OID_802_11_REMOVE_WEP","features":[16]},{"name":"OID_802_11_RSSI","features":[16]},{"name":"OID_802_11_RSSI_TRIGGER","features":[16]},{"name":"OID_802_11_RTS_THRESHOLD","features":[16]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[16]},{"name":"OID_802_11_SSID","features":[16]},{"name":"OID_802_11_STATISTICS","features":[16]},{"name":"OID_802_11_SUPPORTED_RATES","features":[16]},{"name":"OID_802_11_TEST","features":[16]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[16]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[16]},{"name":"OID_802_11_WEP_STATUS","features":[16]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[16]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[16]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[16]},{"name":"OID_802_3_MAC_OPTIONS","features":[16]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[16]},{"name":"OID_802_3_MULTICAST_LIST","features":[16]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[16]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[16]},{"name":"OID_802_3_RCV_OVERRUN","features":[16]},{"name":"OID_802_3_XMIT_DEFERRED","features":[16]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[16]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[16]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[16]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[16]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[16]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[16]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[16]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[16]},{"name":"OID_802_5_AC_ERRORS","features":[16]},{"name":"OID_802_5_BURST_ERRORS","features":[16]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[16]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[16]},{"name":"OID_802_5_CURRENT_GROUP","features":[16]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[16]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[16]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[16]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[16]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[16]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[16]},{"name":"OID_802_5_LINE_ERRORS","features":[16]},{"name":"OID_802_5_LOST_FRAMES","features":[16]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[16]},{"name":"OID_802_5_TOKEN_ERRORS","features":[16]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[16]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[16]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[16]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[16]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[16]},{"name":"OID_ATM_ASSIGNED_VPI","features":[16]},{"name":"OID_ATM_CALL_ALERTING","features":[16]},{"name":"OID_ATM_CALL_NOTIFY","features":[16]},{"name":"OID_ATM_CALL_PROCEEDING","features":[16]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[16]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[16]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[16]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[16]},{"name":"OID_ATM_ILMI_VPIVCI","features":[16]},{"name":"OID_ATM_LECS_ADDRESS","features":[16]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[16]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[16]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[16]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[16]},{"name":"OID_ATM_PARTY_ALERTING","features":[16]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[16]},{"name":"OID_ATM_RCV_CELLS_OK","features":[16]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[16]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[16]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[16]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[16]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[16]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[16]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[16]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[16]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[16]},{"name":"OID_CO_ADDRESS_CHANGE","features":[16]},{"name":"OID_CO_ADD_ADDRESS","features":[16]},{"name":"OID_CO_ADD_PVC","features":[16]},{"name":"OID_CO_AF_CLOSE","features":[16]},{"name":"OID_CO_DELETE_ADDRESS","features":[16]},{"name":"OID_CO_DELETE_PVC","features":[16]},{"name":"OID_CO_GET_ADDRESSES","features":[16]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[16]},{"name":"OID_CO_SIGNALING_DISABLED","features":[16]},{"name":"OID_CO_SIGNALING_ENABLED","features":[16]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[16]},{"name":"OID_CO_TAPI_CM_CAPS","features":[16]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[16]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[16]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[16]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[16]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[16]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[16]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[16]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[16]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[16]},{"name":"OID_FDDI_FRAMES_LOST","features":[16]},{"name":"OID_FDDI_FRAME_ERRORS","features":[16]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[16]},{"name":"OID_FDDI_IF_DESCR","features":[16]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[16]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[16]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[16]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[16]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[16]},{"name":"OID_FDDI_IF_MTU","features":[16]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[16]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[16]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[16]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[16]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[16]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[16]},{"name":"OID_FDDI_IF_SPECIFIC","features":[16]},{"name":"OID_FDDI_IF_SPEED","features":[16]},{"name":"OID_FDDI_IF_TYPE","features":[16]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[16]},{"name":"OID_FDDI_LCT_FAILURES","features":[16]},{"name":"OID_FDDI_LEM_REJECTS","features":[16]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[16]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[16]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[16]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[16]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[16]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[16]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[16]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[16]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[16]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[16]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[16]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[16]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[16]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[16]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[16]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[16]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[16]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[16]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[16]},{"name":"OID_FDDI_MAC_INDEX","features":[16]},{"name":"OID_FDDI_MAC_LATE_CT","features":[16]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[16]},{"name":"OID_FDDI_MAC_LOST_CT","features":[16]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[16]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[16]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[16]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[16]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[16]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[16]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[16]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[16]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[16]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[16]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[16]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[16]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[16]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[16]},{"name":"OID_FDDI_MAC_T_MAX","features":[16]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[16]},{"name":"OID_FDDI_MAC_T_NEG","features":[16]},{"name":"OID_FDDI_MAC_T_PRI0","features":[16]},{"name":"OID_FDDI_MAC_T_PRI1","features":[16]},{"name":"OID_FDDI_MAC_T_PRI2","features":[16]},{"name":"OID_FDDI_MAC_T_PRI3","features":[16]},{"name":"OID_FDDI_MAC_T_PRI4","features":[16]},{"name":"OID_FDDI_MAC_T_PRI5","features":[16]},{"name":"OID_FDDI_MAC_T_PRI6","features":[16]},{"name":"OID_FDDI_MAC_T_REQ","features":[16]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[16]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[16]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[16]},{"name":"OID_FDDI_PATH_INDEX","features":[16]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[16]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[16]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[16]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[16]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[16]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[16]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[16]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[16]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[16]},{"name":"OID_FDDI_PORT_ACTION","features":[16]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[16]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[16]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[16]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[16]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[16]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[16]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[16]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[16]},{"name":"OID_FDDI_PORT_INDEX","features":[16]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[16]},{"name":"OID_FDDI_PORT_LEM_CT","features":[16]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[16]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[16]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[16]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[16]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[16]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[16]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[16]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[16]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[16]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[16]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[16]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[16]},{"name":"OID_FDDI_PORT_PC_LS","features":[16]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[16]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[16]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[16]},{"name":"OID_FDDI_RING_MGT_STATE","features":[16]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[16]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[16]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[16]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[16]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[16]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[16]},{"name":"OID_FDDI_SMT_CF_STATE","features":[16]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[16]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[16]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[16]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[16]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[16]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[16]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_MAC_CT","features":[16]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[16]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[16]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[16]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[16]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[16]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[16]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[16]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[16]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[16]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[16]},{"name":"OID_FDDI_SMT_STATION_ID","features":[16]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[16]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[16]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[16]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[16]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[16]},{"name":"OID_FDDI_SMT_USER_DATA","features":[16]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[16]},{"name":"OID_FFP_ADAPTER_STATS","features":[16]},{"name":"OID_FFP_CONTROL","features":[16]},{"name":"OID_FFP_DATA","features":[16]},{"name":"OID_FFP_DRIVER_STATS","features":[16]},{"name":"OID_FFP_FLUSH","features":[16]},{"name":"OID_FFP_PARAMS","features":[16]},{"name":"OID_FFP_SUPPORT","features":[16]},{"name":"OID_GEN_ADMIN_STATUS","features":[16]},{"name":"OID_GEN_ALIAS","features":[16]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[16]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[16]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[16]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[16]},{"name":"OID_GEN_BYTES_RCV","features":[16]},{"name":"OID_GEN_BYTES_XMIT","features":[16]},{"name":"OID_GEN_CO_BYTES_RCV","features":[16]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[16]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[16]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[16]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[16]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[16]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[16]},{"name":"OID_GEN_CO_LINK_SPEED","features":[16]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[16]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[16]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[16]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[16]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[16]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[16]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[16]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[16]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[16]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[16]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[16]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[16]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[16]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[16]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[16]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_CO_VENDOR_ID","features":[16]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[16]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[16]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[16]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[16]},{"name":"OID_GEN_DEVICE_PROFILE","features":[16]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[16]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[16]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[16]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[16]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[16]},{"name":"OID_GEN_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[16]},{"name":"OID_GEN_FRIENDLY_NAME","features":[16]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[16]},{"name":"OID_GEN_GET_TIME_CAPS","features":[16]},{"name":"OID_GEN_HARDWARE_STATUS","features":[16]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[16]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[16]},{"name":"OID_GEN_INIT_TIME_MS","features":[16]},{"name":"OID_GEN_INTERFACE_INFO","features":[16]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[16]},{"name":"OID_GEN_IP_OPER_STATUS","features":[16]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[16]},{"name":"OID_GEN_LAST_CHANGE","features":[16]},{"name":"OID_GEN_LINK_PARAMETERS","features":[16]},{"name":"OID_GEN_LINK_SPEED","features":[16]},{"name":"OID_GEN_LINK_SPEED_EX","features":[16]},{"name":"OID_GEN_LINK_STATE","features":[16]},{"name":"OID_GEN_MACHINE_NAME","features":[16]},{"name":"OID_GEN_MAC_ADDRESS","features":[16]},{"name":"OID_GEN_MAC_OPTIONS","features":[16]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[16]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[16]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[16]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[16]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[16]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[16]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[16]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[16]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[16]},{"name":"OID_GEN_MEDIA_IN_USE","features":[16]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[16]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[16]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[16]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[16]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[16]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[16]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[16]},{"name":"OID_GEN_NETCARD_LOAD","features":[16]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[16]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[16]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[16]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[16]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[16]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[16]},{"name":"OID_GEN_PORT_STATE","features":[16]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[16]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[16]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[16]},{"name":"OID_GEN_RCV_DISCARDS","features":[16]},{"name":"OID_GEN_RCV_ERROR","features":[16]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[16]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[16]},{"name":"OID_GEN_RCV_OK","features":[16]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[16]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[16]},{"name":"OID_GEN_RECEIVE_HASH","features":[16]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[16]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[16]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[16]},{"name":"OID_GEN_RESET_COUNTS","features":[16]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[16]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[16]},{"name":"OID_GEN_STATISTICS","features":[16]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[16]},{"name":"OID_GEN_SUPPORTED_LIST","features":[16]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[16]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[16]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[16]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[16]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[16]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[16]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[16]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_VENDOR_ID","features":[16]},{"name":"OID_GEN_VLAN_ID","features":[16]},{"name":"OID_GEN_XMIT_DISCARDS","features":[16]},{"name":"OID_GEN_XMIT_ERROR","features":[16]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[16]},{"name":"OID_GEN_XMIT_OK","features":[16]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[16]},{"name":"OID_GFT_COUNTER_VALUES","features":[16]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[16]},{"name":"OID_GFT_CREATE_TABLE","features":[16]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[16]},{"name":"OID_GFT_DELETE_PROFILE","features":[16]},{"name":"OID_GFT_DELETE_TABLE","features":[16]},{"name":"OID_GFT_ENUM_COUNTERS","features":[16]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[16]},{"name":"OID_GFT_ENUM_PROFILES","features":[16]},{"name":"OID_GFT_ENUM_TABLES","features":[16]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[16]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[16]},{"name":"OID_GFT_FREE_COUNTERS","features":[16]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[16]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[16]},{"name":"OID_GFT_STATISTICS","features":[16]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[16]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[16]},{"name":"OID_IP4_OFFLOAD_STATS","features":[16]},{"name":"OID_IP6_OFFLOAD_STATS","features":[16]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[16]},{"name":"OID_IRDA_LINK_SPEED","features":[16]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[16]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[16]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[16]},{"name":"OID_IRDA_MEDIA_BUSY","features":[16]},{"name":"OID_IRDA_RATE_SNIFF","features":[16]},{"name":"OID_IRDA_RECEIVING","features":[16]},{"name":"OID_IRDA_RESERVED1","features":[16]},{"name":"OID_IRDA_RESERVED2","features":[16]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[16]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[16]},{"name":"OID_IRDA_UNICAST_LIST","features":[16]},{"name":"OID_KDNET_ADD_PF","features":[16]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[16]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[16]},{"name":"OID_KDNET_REMOVE_PF","features":[16]},{"name":"OID_LTALK_COLLISIONS","features":[16]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[16]},{"name":"OID_LTALK_DEFERS","features":[16]},{"name":"OID_LTALK_FCS_ERRORS","features":[16]},{"name":"OID_LTALK_IN_BROADCASTS","features":[16]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[16]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[16]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[16]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[16]},{"name":"OID_NDK_CONNECTIONS","features":[16]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[16]},{"name":"OID_NDK_SET_STATE","features":[16]},{"name":"OID_NDK_STATISTICS","features":[16]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[16]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[16]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[16]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[16]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[16]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[16]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[16]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[16]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[16]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[16]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[16]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[16]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[16]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[16]},{"name":"OID_PD_CLOSE_PROVIDER","features":[16]},{"name":"OID_PD_OPEN_PROVIDER","features":[16]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[16]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[16]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[16]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[16]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_PM_PARAMETERS","features":[16]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[16]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[16]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[16]},{"name":"OID_PM_RESERVED_1","features":[16]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[16]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[16]},{"name":"OID_PNP_CAPABILITIES","features":[16]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[16]},{"name":"OID_PNP_QUERY_POWER","features":[16]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[16]},{"name":"OID_PNP_SET_POWER","features":[16]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[16]},{"name":"OID_PNP_WAKE_UP_OK","features":[16]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[16]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[16]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[16]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[16]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[16]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[16]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[16]},{"name":"OID_QOS_PARAMETERS","features":[16]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[16]},{"name":"OID_QOS_RESERVED1","features":[16]},{"name":"OID_QOS_RESERVED10","features":[16]},{"name":"OID_QOS_RESERVED11","features":[16]},{"name":"OID_QOS_RESERVED12","features":[16]},{"name":"OID_QOS_RESERVED13","features":[16]},{"name":"OID_QOS_RESERVED14","features":[16]},{"name":"OID_QOS_RESERVED15","features":[16]},{"name":"OID_QOS_RESERVED16","features":[16]},{"name":"OID_QOS_RESERVED17","features":[16]},{"name":"OID_QOS_RESERVED18","features":[16]},{"name":"OID_QOS_RESERVED19","features":[16]},{"name":"OID_QOS_RESERVED2","features":[16]},{"name":"OID_QOS_RESERVED20","features":[16]},{"name":"OID_QOS_RESERVED3","features":[16]},{"name":"OID_QOS_RESERVED4","features":[16]},{"name":"OID_QOS_RESERVED5","features":[16]},{"name":"OID_QOS_RESERVED6","features":[16]},{"name":"OID_QOS_RESERVED7","features":[16]},{"name":"OID_QOS_RESERVED8","features":[16]},{"name":"OID_QOS_RESERVED9","features":[16]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[16]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[16]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[16]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[16]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[16]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[16]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[16]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[16]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[16]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[16]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[16]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[16]},{"name":"OID_SRIOV_CONFIG_STATE","features":[16]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[16]},{"name":"OID_SRIOV_PF_LUID","features":[16]},{"name":"OID_SRIOV_PROBED_BARS","features":[16]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[16]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[16]},{"name":"OID_SRIOV_RESET_VF","features":[16]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[16]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[16]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[16]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[16]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[16]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[16]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[16]},{"name":"OID_SWITCH_NIC_ARRAY","features":[16]},{"name":"OID_SWITCH_NIC_CONNECT","features":[16]},{"name":"OID_SWITCH_NIC_CREATE","features":[16]},{"name":"OID_SWITCH_NIC_DELETE","features":[16]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[16]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[16]},{"name":"OID_SWITCH_NIC_REQUEST","features":[16]},{"name":"OID_SWITCH_NIC_RESTORE","features":[16]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[16]},{"name":"OID_SWITCH_NIC_RESUME","features":[16]},{"name":"OID_SWITCH_NIC_SAVE","features":[16]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[16]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[16]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[16]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[16]},{"name":"OID_SWITCH_NIC_UPDATED","features":[16]},{"name":"OID_SWITCH_PARAMETERS","features":[16]},{"name":"OID_SWITCH_PORT_ARRAY","features":[16]},{"name":"OID_SWITCH_PORT_CREATE","features":[16]},{"name":"OID_SWITCH_PORT_DELETE","features":[16]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[16]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[16]},{"name":"OID_SWITCH_PORT_UPDATED","features":[16]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[16]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[16]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[16]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[16]},{"name":"OID_TAPI_ACCEPT","features":[16]},{"name":"OID_TAPI_ANSWER","features":[16]},{"name":"OID_TAPI_CLOSE","features":[16]},{"name":"OID_TAPI_CLOSE_CALL","features":[16]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[16]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[16]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[16]},{"name":"OID_TAPI_DIAL","features":[16]},{"name":"OID_TAPI_DROP","features":[16]},{"name":"OID_TAPI_GATHER_DIGITS","features":[16]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[16]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[16]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[16]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[16]},{"name":"OID_TAPI_GET_CALL_INFO","features":[16]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[16]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[16]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[16]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[16]},{"name":"OID_TAPI_GET_ID","features":[16]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[16]},{"name":"OID_TAPI_MAKE_CALL","features":[16]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[16]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[16]},{"name":"OID_TAPI_OPEN","features":[16]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[16]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[16]},{"name":"OID_TAPI_SECURE_CALL","features":[16]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[16]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[16]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[16]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[16]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[16]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[16]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[16]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[16]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[16]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[16]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[16]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[16]},{"name":"OID_TCP_RSC_STATISTICS","features":[16]},{"name":"OID_TCP_SAN_SUPPORT","features":[16]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[16]},{"name":"OID_TCP_TASK_OFFLOAD","features":[16]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[16]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[16]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[16]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[16]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[16]},{"name":"OID_VLAN_RESERVED1","features":[16]},{"name":"OID_VLAN_RESERVED2","features":[16]},{"name":"OID_VLAN_RESERVED3","features":[16]},{"name":"OID_VLAN_RESERVED4","features":[16]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[16]},{"name":"OID_WAN_CO_GET_INFO","features":[16]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[16]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[16]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[16]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[16]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[16]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[16]},{"name":"OID_WAN_GET_COMP_INFO","features":[16]},{"name":"OID_WAN_GET_INFO","features":[16]},{"name":"OID_WAN_GET_LINK_INFO","features":[16]},{"name":"OID_WAN_GET_STATS_INFO","features":[16]},{"name":"OID_WAN_HEADER_FORMAT","features":[16]},{"name":"OID_WAN_LINE_COUNT","features":[16]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[16]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[16]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[16]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[16]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[16]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[16]},{"name":"OID_WAN_SET_COMP_INFO","features":[16]},{"name":"OID_WAN_SET_LINK_INFO","features":[16]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[16]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[16]},{"name":"OID_WWAN_CONNECT","features":[16]},{"name":"OID_WWAN_CREATE_MAC","features":[16]},{"name":"OID_WWAN_DELETE_MAC","features":[16]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[16]},{"name":"OID_WWAN_DEVICE_CAPS","features":[16]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[16]},{"name":"OID_WWAN_DEVICE_RESET","features":[16]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[16]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[16]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[16]},{"name":"OID_WWAN_DRIVER_CAPS","features":[16]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[16]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[16]},{"name":"OID_WWAN_HOME_PROVIDER","features":[16]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[16]},{"name":"OID_WWAN_LOCATION_STATE","features":[16]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[16]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[16]},{"name":"OID_WWAN_MBIM_VERSION","features":[16]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[16]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[16]},{"name":"OID_WWAN_MPDP","features":[16]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[16]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[16]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[16]},{"name":"OID_WWAN_NITZ","features":[16]},{"name":"OID_WWAN_PACKET_SERVICE","features":[16]},{"name":"OID_WWAN_PCO","features":[16]},{"name":"OID_WWAN_PIN","features":[16]},{"name":"OID_WWAN_PIN_EX","features":[16]},{"name":"OID_WWAN_PIN_EX2","features":[16]},{"name":"OID_WWAN_PIN_LIST","features":[16]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[16]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[16]},{"name":"OID_WWAN_PRESHUTDOWN","features":[16]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[16]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[16]},{"name":"OID_WWAN_RADIO_STATE","features":[16]},{"name":"OID_WWAN_READY_INFO","features":[16]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[16]},{"name":"OID_WWAN_REGISTER_STATE","features":[16]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[16]},{"name":"OID_WWAN_SAR_CONFIG","features":[16]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[16]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[16]},{"name":"OID_WWAN_SIGNAL_STATE","features":[16]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[16]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[16]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[16]},{"name":"OID_WWAN_SMS_DELETE","features":[16]},{"name":"OID_WWAN_SMS_READ","features":[16]},{"name":"OID_WWAN_SMS_SEND","features":[16]},{"name":"OID_WWAN_SMS_STATUS","features":[16]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[16]},{"name":"OID_WWAN_SYS_CAPS","features":[16]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[16]},{"name":"OID_WWAN_UE_POLICY","features":[16]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[16]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[16]},{"name":"OID_WWAN_UICC_APDU","features":[16]},{"name":"OID_WWAN_UICC_APP_LIST","features":[16]},{"name":"OID_WWAN_UICC_ATR","features":[16]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[16]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[16]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[16]},{"name":"OID_WWAN_UICC_RESET","features":[16]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[16]},{"name":"OID_WWAN_USSD","features":[16]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[16]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[16]},{"name":"OID_XBOX_ACC_RESERVED0","features":[16]},{"name":"PMKID_CANDIDATE","features":[16]},{"name":"READABLE_LOCAL_CLOCK","features":[16]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[16]},{"name":"TIMED_SEND_CAPABLE","features":[16]},{"name":"TIME_STAMP_CAPABLE","features":[16]},{"name":"TRANSPORT_HEADER_OFFSET","features":[16]},{"name":"TUNNEL_TYPE","features":[16]},{"name":"TUNNEL_TYPE_6TO4","features":[16]},{"name":"TUNNEL_TYPE_DIRECT","features":[16]},{"name":"TUNNEL_TYPE_IPHTTPS","features":[16]},{"name":"TUNNEL_TYPE_ISATAP","features":[16]},{"name":"TUNNEL_TYPE_NONE","features":[16]},{"name":"TUNNEL_TYPE_OTHER","features":[16]},{"name":"TUNNEL_TYPE_TEREDO","features":[16]},{"name":"UDP_ENCAP_TYPE","features":[16]},{"name":"UNSPECIFIED_NETWORK_GUID","features":[16]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[16]},{"name":"fNDIS_GUID_ALLOW_READ","features":[16]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[16]},{"name":"fNDIS_GUID_ANSI_STRING","features":[16]},{"name":"fNDIS_GUID_ARRAY","features":[16]},{"name":"fNDIS_GUID_METHOD","features":[16]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[16]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[16]},{"name":"fNDIS_GUID_TO_OID","features":[16]},{"name":"fNDIS_GUID_TO_STATUS","features":[16]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[16]}],"450":[{"name":"ACTION_HEADER","features":[92]},{"name":"ADAPTER_STATUS","features":[92]},{"name":"ALL_TRANSPORTS","features":[92]},{"name":"ASYNCH","features":[92]},{"name":"CALL_PENDING","features":[92]},{"name":"DEREGISTERED","features":[92]},{"name":"DUPLICATE","features":[92]},{"name":"DUPLICATE_DEREG","features":[92]},{"name":"FIND_NAME_BUFFER","features":[92]},{"name":"FIND_NAME_HEADER","features":[92]},{"name":"GROUP_NAME","features":[92]},{"name":"HANGUP_COMPLETE","features":[92]},{"name":"HANGUP_PENDING","features":[92]},{"name":"LANA_ENUM","features":[92]},{"name":"LISTEN_OUTSTANDING","features":[92]},{"name":"MAX_LANA","features":[92]},{"name":"MS_NBF","features":[92]},{"name":"NAME_BUFFER","features":[92]},{"name":"NAME_FLAGS_MASK","features":[92]},{"name":"NCB","features":[1,92]},{"name":"NCB","features":[1,92]},{"name":"NCBACTION","features":[92]},{"name":"NCBADDGRNAME","features":[92]},{"name":"NCBADDNAME","features":[92]},{"name":"NCBASTAT","features":[92]},{"name":"NCBCALL","features":[92]},{"name":"NCBCANCEL","features":[92]},{"name":"NCBCHAINSEND","features":[92]},{"name":"NCBCHAINSENDNA","features":[92]},{"name":"NCBDELNAME","features":[92]},{"name":"NCBDGRECV","features":[92]},{"name":"NCBDGRECVBC","features":[92]},{"name":"NCBDGSEND","features":[92]},{"name":"NCBDGSENDBC","features":[92]},{"name":"NCBENUM","features":[92]},{"name":"NCBFINDNAME","features":[92]},{"name":"NCBHANGUP","features":[92]},{"name":"NCBLANSTALERT","features":[92]},{"name":"NCBLISTEN","features":[92]},{"name":"NCBNAMSZ","features":[92]},{"name":"NCBRECV","features":[92]},{"name":"NCBRECVANY","features":[92]},{"name":"NCBRESET","features":[92]},{"name":"NCBSEND","features":[92]},{"name":"NCBSENDNA","features":[92]},{"name":"NCBSSTAT","features":[92]},{"name":"NCBTRACE","features":[92]},{"name":"NCBUNLINK","features":[92]},{"name":"NRC_ACTSES","features":[92]},{"name":"NRC_BADDR","features":[92]},{"name":"NRC_BRIDGE","features":[92]},{"name":"NRC_BUFLEN","features":[92]},{"name":"NRC_CANCEL","features":[92]},{"name":"NRC_CANOCCR","features":[92]},{"name":"NRC_CMDCAN","features":[92]},{"name":"NRC_CMDTMO","features":[92]},{"name":"NRC_DUPENV","features":[92]},{"name":"NRC_DUPNAME","features":[92]},{"name":"NRC_ENVNOTDEF","features":[92]},{"name":"NRC_GOODRET","features":[92]},{"name":"NRC_IFBUSY","features":[92]},{"name":"NRC_ILLCMD","features":[92]},{"name":"NRC_ILLNN","features":[92]},{"name":"NRC_INCOMP","features":[92]},{"name":"NRC_INUSE","features":[92]},{"name":"NRC_INVADDRESS","features":[92]},{"name":"NRC_INVDDID","features":[92]},{"name":"NRC_LOCKFAIL","features":[92]},{"name":"NRC_LOCTFUL","features":[92]},{"name":"NRC_MAXAPPS","features":[92]},{"name":"NRC_NAMCONF","features":[92]},{"name":"NRC_NAMERR","features":[92]},{"name":"NRC_NAMTFUL","features":[92]},{"name":"NRC_NOCALL","features":[92]},{"name":"NRC_NORES","features":[92]},{"name":"NRC_NORESOURCES","features":[92]},{"name":"NRC_NOSAPS","features":[92]},{"name":"NRC_NOWILD","features":[92]},{"name":"NRC_OPENERR","features":[92]},{"name":"NRC_OSRESNOTAV","features":[92]},{"name":"NRC_PENDING","features":[92]},{"name":"NRC_REMTFUL","features":[92]},{"name":"NRC_SABORT","features":[92]},{"name":"NRC_SCLOSED","features":[92]},{"name":"NRC_SNUMOUT","features":[92]},{"name":"NRC_SYSTEM","features":[92]},{"name":"NRC_TOOMANY","features":[92]},{"name":"Netbios","features":[1,92]},{"name":"REGISTERED","features":[92]},{"name":"REGISTERING","features":[92]},{"name":"SESSION_ABORTED","features":[92]},{"name":"SESSION_BUFFER","features":[92]},{"name":"SESSION_ESTABLISHED","features":[92]},{"name":"SESSION_HEADER","features":[92]},{"name":"UNIQUE_NAME","features":[92]}],"451":[{"name":"AA_AUDIT_ALL","features":[93]},{"name":"AA_A_ACL","features":[93]},{"name":"AA_A_CREATE","features":[93]},{"name":"AA_A_DELETE","features":[93]},{"name":"AA_A_OPEN","features":[93]},{"name":"AA_A_OWNER","features":[93]},{"name":"AA_A_WRITE","features":[93]},{"name":"AA_CLOSE","features":[93]},{"name":"AA_F_ACL","features":[93]},{"name":"AA_F_CREATE","features":[93]},{"name":"AA_F_DELETE","features":[93]},{"name":"AA_F_OPEN","features":[93]},{"name":"AA_F_WRITE","features":[93]},{"name":"AA_S_ACL","features":[93]},{"name":"AA_S_CREATE","features":[93]},{"name":"AA_S_DELETE","features":[93]},{"name":"AA_S_OPEN","features":[93]},{"name":"AA_S_WRITE","features":[93]},{"name":"ACCESS_ACCESS_LIST_PARMNUM","features":[93]},{"name":"ACCESS_ATTR_PARMNUM","features":[93]},{"name":"ACCESS_AUDIT","features":[93]},{"name":"ACCESS_COUNT_PARMNUM","features":[93]},{"name":"ACCESS_FAIL_ACL","features":[93]},{"name":"ACCESS_FAIL_DELETE","features":[93]},{"name":"ACCESS_FAIL_MASK","features":[93]},{"name":"ACCESS_FAIL_OPEN","features":[93]},{"name":"ACCESS_FAIL_SHIFT","features":[93]},{"name":"ACCESS_FAIL_WRITE","features":[93]},{"name":"ACCESS_GROUP","features":[93]},{"name":"ACCESS_INFO_0","features":[93]},{"name":"ACCESS_INFO_1","features":[93]},{"name":"ACCESS_INFO_1002","features":[93]},{"name":"ACCESS_LETTERS","features":[93]},{"name":"ACCESS_LIST","features":[93]},{"name":"ACCESS_NONE","features":[93]},{"name":"ACCESS_RESOURCE_NAME_PARMNUM","features":[93]},{"name":"ACCESS_SUCCESS_ACL","features":[93]},{"name":"ACCESS_SUCCESS_DELETE","features":[93]},{"name":"ACCESS_SUCCESS_MASK","features":[93]},{"name":"ACCESS_SUCCESS_OPEN","features":[93]},{"name":"ACCESS_SUCCESS_WRITE","features":[93]},{"name":"ACTION_ADMINUNLOCK","features":[93]},{"name":"ACTION_LOCKOUT","features":[93]},{"name":"ADMIN_OTHER_INFO","features":[93]},{"name":"AE_ACCLIM","features":[93]},{"name":"AE_ACCLIMITEXCD","features":[93]},{"name":"AE_ACCRESTRICT","features":[93]},{"name":"AE_ACLMOD","features":[93]},{"name":"AE_ACLMOD","features":[93]},{"name":"AE_ACLMODFAIL","features":[93]},{"name":"AE_ADD","features":[93]},{"name":"AE_ADMIN","features":[93]},{"name":"AE_ADMINDIS","features":[93]},{"name":"AE_ADMINPRIVREQD","features":[93]},{"name":"AE_ADMIN_CLOSE","features":[93]},{"name":"AE_AUTODIS","features":[93]},{"name":"AE_BADPW","features":[93]},{"name":"AE_CLOSEFILE","features":[93]},{"name":"AE_CLOSEFILE","features":[93]},{"name":"AE_CONNREJ","features":[93]},{"name":"AE_CONNREJ","features":[93]},{"name":"AE_CONNSTART","features":[93]},{"name":"AE_CONNSTART","features":[93]},{"name":"AE_CONNSTOP","features":[93]},{"name":"AE_CONNSTOP","features":[93]},{"name":"AE_DELETE","features":[93]},{"name":"AE_ERROR","features":[93]},{"name":"AE_GENERAL","features":[93]},{"name":"AE_GENERIC","features":[93]},{"name":"AE_GENERIC_TYPE","features":[93]},{"name":"AE_GUEST","features":[93]},{"name":"AE_LIM_DELETED","features":[93]},{"name":"AE_LIM_DISABLED","features":[93]},{"name":"AE_LIM_EXPIRED","features":[93]},{"name":"AE_LIM_INVAL_WKSTA","features":[93]},{"name":"AE_LIM_LOGONHOURS","features":[93]},{"name":"AE_LIM_UNKNOWN","features":[93]},{"name":"AE_LOCKOUT","features":[93]},{"name":"AE_LOCKOUT","features":[93]},{"name":"AE_MOD","features":[93]},{"name":"AE_NETLOGDENIED","features":[93]},{"name":"AE_NETLOGOFF","features":[93]},{"name":"AE_NETLOGOFF","features":[93]},{"name":"AE_NETLOGON","features":[93]},{"name":"AE_NETLOGON","features":[93]},{"name":"AE_NOACCESSPERM","features":[93]},{"name":"AE_NORMAL","features":[93]},{"name":"AE_NORMAL_CLOSE","features":[93]},{"name":"AE_RESACCESS","features":[93]},{"name":"AE_RESACCESS","features":[93]},{"name":"AE_RESACCESS2","features":[93]},{"name":"AE_RESACCESSREJ","features":[93]},{"name":"AE_RESACCESSREJ","features":[93]},{"name":"AE_SERVICESTAT","features":[93]},{"name":"AE_SERVICESTAT","features":[93]},{"name":"AE_SESSDIS","features":[93]},{"name":"AE_SESSLOGOFF","features":[93]},{"name":"AE_SESSLOGOFF","features":[93]},{"name":"AE_SESSLOGON","features":[93]},{"name":"AE_SESSLOGON","features":[93]},{"name":"AE_SESSPWERR","features":[93]},{"name":"AE_SESSPWERR","features":[93]},{"name":"AE_SES_CLOSE","features":[93]},{"name":"AE_SRVCONT","features":[93]},{"name":"AE_SRVPAUSED","features":[93]},{"name":"AE_SRVSTART","features":[93]},{"name":"AE_SRVSTATUS","features":[93]},{"name":"AE_SRVSTATUS","features":[93]},{"name":"AE_SRVSTOP","features":[93]},{"name":"AE_UASMOD","features":[93]},{"name":"AE_UASMOD","features":[93]},{"name":"AE_UAS_GROUP","features":[93]},{"name":"AE_UAS_MODALS","features":[93]},{"name":"AE_UAS_USER","features":[93]},{"name":"AE_UNSHARE","features":[93]},{"name":"AE_USER","features":[93]},{"name":"AE_USERLIMIT","features":[93]},{"name":"AF_OP","features":[93]},{"name":"AF_OP_ACCOUNTS","features":[93]},{"name":"AF_OP_COMM","features":[93]},{"name":"AF_OP_PRINT","features":[93]},{"name":"AF_OP_SERVER","features":[93]},{"name":"ALERTER_MAILSLOT","features":[93]},{"name":"ALERTSZ","features":[93]},{"name":"ALERT_ADMIN_EVENT","features":[93]},{"name":"ALERT_ERRORLOG_EVENT","features":[93]},{"name":"ALERT_MESSAGE_EVENT","features":[93]},{"name":"ALERT_PRINT_EVENT","features":[93]},{"name":"ALERT_USER_EVENT","features":[93]},{"name":"ALIGN_SHIFT","features":[93]},{"name":"ALIGN_SIZE","features":[93]},{"name":"ALLOCATE_RESPONSE","features":[93]},{"name":"AT_ENUM","features":[93]},{"name":"AT_INFO","features":[93]},{"name":"AUDIT_ENTRY","features":[93]},{"name":"BACKUP_MSG_FILENAME","features":[93]},{"name":"BIND_FLAGS1","features":[93]},{"name":"CLTYPE_LEN","features":[93]},{"name":"CNLEN","features":[93]},{"name":"COMPONENT_CHARACTERISTICS","features":[93]},{"name":"CONFIG_INFO_0","features":[93]},{"name":"COULD_NOT_VERIFY_VOLUMES","features":[93]},{"name":"CREATE_BYPASS_CSC","features":[93]},{"name":"CREATE_CRED_RESET","features":[93]},{"name":"CREATE_GLOBAL_MAPPING","features":[93]},{"name":"CREATE_NO_CONNECT","features":[93]},{"name":"CREATE_PERSIST_MAPPING","features":[93]},{"name":"CREATE_REQUIRE_CONNECTION_INTEGRITY","features":[93]},{"name":"CREATE_REQUIRE_CONNECTION_PRIVACY","features":[93]},{"name":"CREATE_WRITE_THROUGH_SEMANTICS","features":[93]},{"name":"CRYPT_KEY_LEN","features":[93]},{"name":"CRYPT_TXT_LEN","features":[93]},{"name":"DEFAULT_PAGES","features":[93]},{"name":"DEF_MAX_BADPW","features":[93]},{"name":"DEF_MAX_PWHIST","features":[93]},{"name":"DEF_MIN_PWLEN","features":[93]},{"name":"DEF_PWUNIQUENESS","features":[93]},{"name":"DEVLEN","features":[93]},{"name":"DFS_CONNECTION_FAILURE","features":[93]},{"name":"DFS_ERROR_ACTIVEDIRECTORY_OFFLINE","features":[93]},{"name":"DFS_ERROR_CLUSTERINFO_FAILED","features":[93]},{"name":"DFS_ERROR_COMPUTERINFO_FAILED","features":[93]},{"name":"DFS_ERROR_CREATEEVENT_FAILED","features":[93]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_FAILURE","features":[93]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_SUCCESS","features":[93]},{"name":"DFS_ERROR_CROSS_FOREST_TRUST_INFO_FAILED","features":[93]},{"name":"DFS_ERROR_DCINFO_FAILED","features":[93]},{"name":"DFS_ERROR_DSCONNECT_FAILED","features":[93]},{"name":"DFS_ERROR_DUPLICATE_LINK","features":[93]},{"name":"DFS_ERROR_HANDLENAMESPACE_FAILED","features":[93]},{"name":"DFS_ERROR_LINKS_OVERLAP","features":[93]},{"name":"DFS_ERROR_LINK_OVERLAP","features":[93]},{"name":"DFS_ERROR_MUTLIPLE_ROOTS_NOT_SUPPORTED","features":[93]},{"name":"DFS_ERROR_NO_DFS_DATA","features":[93]},{"name":"DFS_ERROR_ON_ROOT","features":[93]},{"name":"DFS_ERROR_OVERLAPPING_DIRECTORIES","features":[93]},{"name":"DFS_ERROR_PREFIXTABLE_FAILED","features":[93]},{"name":"DFS_ERROR_REFLECTIONENGINE_FAILED","features":[93]},{"name":"DFS_ERROR_REGISTERSTORE_FAILED","features":[93]},{"name":"DFS_ERROR_REMOVE_LINK_FAILED","features":[93]},{"name":"DFS_ERROR_RESYNCHRONIZE_FAILED","features":[93]},{"name":"DFS_ERROR_ROOTSYNCINIT_FAILED","features":[93]},{"name":"DFS_ERROR_SECURITYINIT_FAILED","features":[93]},{"name":"DFS_ERROR_SITECACHEINIT_FAILED","features":[93]},{"name":"DFS_ERROR_SITESUPPOR_FAILED","features":[93]},{"name":"DFS_ERROR_TARGET_LIST_INCORRECT","features":[93]},{"name":"DFS_ERROR_THREADINIT_FAILED","features":[93]},{"name":"DFS_ERROR_TOO_MANY_ERRORS","features":[93]},{"name":"DFS_ERROR_TRUSTED_DOMAIN_INFO_FAILED","features":[93]},{"name":"DFS_ERROR_UNSUPPORTED_FILESYSTEM","features":[93]},{"name":"DFS_ERROR_WINSOCKINIT_FAILED","features":[93]},{"name":"DFS_INFO_ACTIVEDIRECTORY_ONLINE","features":[93]},{"name":"DFS_INFO_CROSS_FOREST_TRUST_INFO_SUCCESS","features":[93]},{"name":"DFS_INFO_DOMAIN_REFERRAL_MIN_OVERFLOW","features":[93]},{"name":"DFS_INFO_DS_RECONNECTED","features":[93]},{"name":"DFS_INFO_FINISH_BUILDING_NAMESPACE","features":[93]},{"name":"DFS_INFO_FINISH_INIT","features":[93]},{"name":"DFS_INFO_RECONNECT_DATA","features":[93]},{"name":"DFS_INFO_TRUSTED_DOMAIN_INFO_SUCCESS","features":[93]},{"name":"DFS_INIT_SUCCESS","features":[93]},{"name":"DFS_MAX_DNR_ATTEMPTS","features":[93]},{"name":"DFS_OPEN_FAILURE","features":[93]},{"name":"DFS_REFERRAL_FAILURE","features":[93]},{"name":"DFS_REFERRAL_REQUEST","features":[93]},{"name":"DFS_REFERRAL_SUCCESS","features":[93]},{"name":"DFS_ROOT_SHARE_ACQUIRE_FAILED","features":[93]},{"name":"DFS_ROOT_SHARE_ACQUIRE_SUCCESS","features":[93]},{"name":"DFS_SPECIAL_REFERRAL_FAILURE","features":[93]},{"name":"DFS_WARN_DOMAIN_REFERRAL_OVERFLOW","features":[93]},{"name":"DFS_WARN_INCOMPLETE_MOVE","features":[93]},{"name":"DFS_WARN_METADATA_LINK_INFO_INVALID","features":[93]},{"name":"DFS_WARN_METADATA_LINK_TYPE_INCORRECT","features":[93]},{"name":"DNLEN","features":[93]},{"name":"DPP_ADVANCED","features":[93]},{"name":"DSREG_DEVICE_JOIN","features":[93]},{"name":"DSREG_JOIN_INFO","features":[1,93,68]},{"name":"DSREG_JOIN_TYPE","features":[93]},{"name":"DSREG_UNKNOWN_JOIN","features":[93]},{"name":"DSREG_USER_INFO","features":[93]},{"name":"DSREG_WORKPLACE_JOIN","features":[93]},{"name":"EBP_ABOVE","features":[93]},{"name":"EBP_BELOW","features":[93]},{"name":"ENCRYPTED_PWLEN","features":[93]},{"name":"ENUM_BINDING_PATHS_FLAGS","features":[93]},{"name":"ERRLOG2_BASE","features":[93]},{"name":"ERRLOG_BASE","features":[93]},{"name":"ERRLOG_OTHER_INFO","features":[93]},{"name":"ERROR_LOG","features":[93]},{"name":"EVENT_BAD_ACCOUNT_NAME","features":[93]},{"name":"EVENT_BAD_SERVICE_STATE","features":[93]},{"name":"EVENT_BOOT_SYSTEM_DRIVERS_FAILED","features":[93]},{"name":"EVENT_BOWSER_CANT_READ_REGISTRY","features":[93]},{"name":"EVENT_BOWSER_ELECTION_RECEIVED","features":[93]},{"name":"EVENT_BOWSER_ELECTION_SENT_FIND_MASTER_FAILED","features":[93]},{"name":"EVENT_BOWSER_ELECTION_SENT_GETBLIST_FAILED","features":[93]},{"name":"EVENT_BOWSER_GETBROWSERLIST_THRESHOLD_EXCEEDED","features":[93]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM","features":[93]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM_THRESHOLD","features":[93]},{"name":"EVENT_BOWSER_MAILSLOT_DATAGRAM_THRESHOLD_EXCEEDED","features":[93]},{"name":"EVENT_BOWSER_NAME_CONVERSION_FAILED","features":[93]},{"name":"EVENT_BOWSER_NON_MASTER_MASTER_ANNOUNCE","features":[93]},{"name":"EVENT_BOWSER_NON_PDC_WON_ELECTION","features":[93]},{"name":"EVENT_BOWSER_OLD_BACKUP_FOUND","features":[93]},{"name":"EVENT_BOWSER_OTHER_MASTER_ON_NET","features":[93]},{"name":"EVENT_BOWSER_PDC_LOST_ELECTION","features":[93]},{"name":"EVENT_BOWSER_PROMOTED_WHILE_ALREADY_MASTER","features":[93]},{"name":"EVENT_BRIDGE_ADAPTER_BIND_FAILED","features":[93]},{"name":"EVENT_BRIDGE_ADAPTER_FILTER_FAILED","features":[93]},{"name":"EVENT_BRIDGE_ADAPTER_LINK_SPEED_QUERY_FAILED","features":[93]},{"name":"EVENT_BRIDGE_ADAPTER_MAC_ADDR_QUERY_FAILED","features":[93]},{"name":"EVENT_BRIDGE_ADAPTER_NAME_QUERY_FAILED","features":[93]},{"name":"EVENT_BRIDGE_BUFFER_POOL_CREATION_FAILED","features":[93]},{"name":"EVENT_BRIDGE_DEVICE_CREATION_FAILED","features":[93]},{"name":"EVENT_BRIDGE_ETHERNET_NOT_OFFERED","features":[93]},{"name":"EVENT_BRIDGE_INIT_MALLOC_FAILED","features":[93]},{"name":"EVENT_BRIDGE_MINIPORT_INIT_FAILED","features":[93]},{"name":"EVENT_BRIDGE_MINIPORT_REGISTER_FAILED","features":[93]},{"name":"EVENT_BRIDGE_MINIPROT_DEVNAME_MISSING","features":[93]},{"name":"EVENT_BRIDGE_NO_BRIDGE_MAC_ADDR","features":[93]},{"name":"EVENT_BRIDGE_PACKET_POOL_CREATION_FAILED","features":[93]},{"name":"EVENT_BRIDGE_PROTOCOL_REGISTER_FAILED","features":[93]},{"name":"EVENT_BRIDGE_THREAD_CREATION_FAILED","features":[93]},{"name":"EVENT_BRIDGE_THREAD_REF_FAILED","features":[93]},{"name":"EVENT_BROWSER_BACKUP_STOPPED","features":[93]},{"name":"EVENT_BROWSER_DEPENDANT_SERVICE_FAILED","features":[93]},{"name":"EVENT_BROWSER_DOMAIN_LIST_FAILED","features":[93]},{"name":"EVENT_BROWSER_DOMAIN_LIST_RETRIEVED","features":[93]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STARTED","features":[93]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STOPPED","features":[93]},{"name":"EVENT_BROWSER_ELECTION_SENT_ROLE_CHANGED","features":[93]},{"name":"EVENT_BROWSER_GETBLIST_RECEIVED_NOT_MASTER","features":[93]},{"name":"EVENT_BROWSER_ILLEGAL_CONFIG","features":[93]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED","features":[93]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_NO_MASTER","features":[93]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_STOPPING","features":[93]},{"name":"EVENT_BROWSER_NOT_STARTED_IPX_CONFIG_MISMATCH","features":[93]},{"name":"EVENT_BROWSER_OTHERDOMAIN_ADD_FAILED","features":[93]},{"name":"EVENT_BROWSER_ROLE_CHANGE_FAILED","features":[93]},{"name":"EVENT_BROWSER_SERVER_LIST_FAILED","features":[93]},{"name":"EVENT_BROWSER_SERVER_LIST_RETRIEVED","features":[93]},{"name":"EVENT_BROWSER_STATUS_BITS_UPDATE_FAILED","features":[93]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED","features":[93]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED_II","features":[93]},{"name":"EVENT_CIRCULAR_DEPENDENCY_AUTO","features":[93]},{"name":"EVENT_CIRCULAR_DEPENDENCY_DEMAND","features":[93]},{"name":"EVENT_COMMAND_NOT_INTERACTIVE","features":[93]},{"name":"EVENT_COMMAND_START_FAILED","features":[93]},{"name":"EVENT_CONNECTION_TIMEOUT","features":[93]},{"name":"EVENT_ComputerNameChange","features":[93]},{"name":"EVENT_DAV_REDIR_DELAYED_WRITE_FAILED","features":[93]},{"name":"EVENT_DCOM_ASSERTION_FAILURE","features":[93]},{"name":"EVENT_DCOM_COMPLUS_DISABLED","features":[93]},{"name":"EVENT_DCOM_INVALID_ENDPOINT_DATA","features":[93]},{"name":"EVENT_DEPEND_ON_LATER_GROUP","features":[93]},{"name":"EVENT_DEPEND_ON_LATER_SERVICE","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT","features":[93]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_NOTSUPP","features":[93]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_OTHER","features":[93]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_REFUSED","features":[93]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SECURITY","features":[93]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SERVERFAIL","features":[93]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_TIMEOUT","features":[93]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_NOTSUPP","features":[93]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_OTHER","features":[93]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_REFUSED","features":[93]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SECURITY","features":[93]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SERVERFAIL","features":[93]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_TIMEOUT","features":[93]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER","features":[93]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_REGISTERED_PTR","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT","features":[93]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[93]},{"name":"EVENT_DNSDomainNameChange","features":[93]},{"name":"EVENT_DNS_CACHE_NETWORK_PERF_WARNING","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_LOW_MEMORY","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_CONTROL","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DLL","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DONE_EVENT","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_ENTRY","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_RPC","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_SHUTDOWN_NOTIFY","features":[93]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_UPDATE","features":[93]},{"name":"EVENT_DNS_CACHE_UNABLE_TO_REACH_SERVER_WARNING","features":[93]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_SIZE_ZERO","features":[93]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_TOO_LONG","features":[93]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_REFERESH","features":[93]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_ROOT_KEY","features":[93]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_SUBKEY","features":[93]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_ROOT_KEY","features":[93]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_SUBKEY","features":[93]},{"name":"EVENT_EQOS_ERROR_PROCESSING_MACHINE_POLICY_FIELD","features":[93]},{"name":"EVENT_EQOS_ERROR_PROCESSING_USER_POLICY_FIELD","features":[93]},{"name":"EVENT_EQOS_ERROR_SETTING_APP_MARKING","features":[93]},{"name":"EVENT_EQOS_ERROR_SETTING_TCP_AUTOTUNING","features":[93]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_SIZE_ZERO","features":[93]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_TOO_LONG","features":[93]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_REFERESH","features":[93]},{"name":"EVENT_EQOS_INFO_APP_MARKING_ALLOWED","features":[93]},{"name":"EVENT_EQOS_INFO_APP_MARKING_IGNORED","features":[93]},{"name":"EVENT_EQOS_INFO_APP_MARKING_NOT_CONFIGURED","features":[93]},{"name":"EVENT_EQOS_INFO_LOCAL_SETTING_DONT_USE_NLA","features":[93]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_NO_CHANGE","features":[93]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_WITH_CHANGE","features":[93]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_HIGHLY_RESTRICTED","features":[93]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NORMAL","features":[93]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NOT_CONFIGURED","features":[93]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_OFF","features":[93]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_RESTRICTED","features":[93]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_NO_CHANGE","features":[93]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_WITH_CHANGE","features":[93]},{"name":"EVENT_EQOS_URL_QOS_APPLICATION_CONFLICT","features":[93]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_CONFLICT","features":[93]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_NO_FULLPATH_APPNAME","features":[93]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_PROFILE_NOT_SPECIFIED","features":[93]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_QUOTA_EXCEEDED","features":[93]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_VERSION","features":[93]},{"name":"EVENT_EQOS_WARNING_TEST_1","features":[93]},{"name":"EVENT_EQOS_WARNING_TEST_2","features":[93]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_CONFLICT","features":[93]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_NO_FULLPATH_APPNAME","features":[93]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_PROFILE_NOT_SPECIFIED","features":[93]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_QUOTA_EXCEEDED","features":[93]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_VERSION","features":[93]},{"name":"EVENT_EventLogProductInfo","features":[93]},{"name":"EVENT_EventlogAbnormalShutdown","features":[93]},{"name":"EVENT_EventlogStarted","features":[93]},{"name":"EVENT_EventlogStopped","features":[93]},{"name":"EVENT_EventlogUptime","features":[93]},{"name":"EVENT_FIRST_LOGON_FAILED","features":[93]},{"name":"EVENT_FIRST_LOGON_FAILED_II","features":[93]},{"name":"EVENT_FRS_ACCESS_CHECKS_DISABLED","features":[93]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_UNKNOWN","features":[93]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_USER","features":[93]},{"name":"EVENT_FRS_ASSERT","features":[93]},{"name":"EVENT_FRS_BAD_REG_DATA","features":[93]},{"name":"EVENT_FRS_CANNOT_COMMUNICATE","features":[93]},{"name":"EVENT_FRS_CANNOT_CREATE_UUID","features":[93]},{"name":"EVENT_FRS_CANNOT_START_BACKUP_RESTORE_IN_PROGRESS","features":[93]},{"name":"EVENT_FRS_CANT_OPEN_PREINSTALL","features":[93]},{"name":"EVENT_FRS_CANT_OPEN_STAGE","features":[93]},{"name":"EVENT_FRS_DATABASE_SPACE","features":[93]},{"name":"EVENT_FRS_DISK_WRITE_CACHE_ENABLED","features":[93]},{"name":"EVENT_FRS_DS_POLL_ERROR_SUMMARY","features":[93]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION","features":[93]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION_SYSVOL","features":[93]},{"name":"EVENT_FRS_ERROR","features":[93]},{"name":"EVENT_FRS_ERROR_REPLICA_SET_DELETED","features":[93]},{"name":"EVENT_FRS_HUGE_FILE","features":[93]},{"name":"EVENT_FRS_IN_ERROR_STATE","features":[93]},{"name":"EVENT_FRS_JET_1414","features":[93]},{"name":"EVENT_FRS_JOIN_FAIL_TIME_SKEW","features":[93]},{"name":"EVENT_FRS_LONG_JOIN","features":[93]},{"name":"EVENT_FRS_LONG_JOIN_DONE","features":[93]},{"name":"EVENT_FRS_MOVED_PREEXISTING","features":[93]},{"name":"EVENT_FRS_NO_DNS_ATTRIBUTE","features":[93]},{"name":"EVENT_FRS_NO_SID","features":[93]},{"name":"EVENT_FRS_OVERLAPS_LOGGING","features":[93]},{"name":"EVENT_FRS_OVERLAPS_OTHER_STAGE","features":[93]},{"name":"EVENT_FRS_OVERLAPS_ROOT","features":[93]},{"name":"EVENT_FRS_OVERLAPS_STAGE","features":[93]},{"name":"EVENT_FRS_OVERLAPS_WORKING","features":[93]},{"name":"EVENT_FRS_PREPARE_ROOT_FAILED","features":[93]},{"name":"EVENT_FRS_REPLICA_IN_JRNL_WRAP_ERROR","features":[93]},{"name":"EVENT_FRS_REPLICA_NO_ROOT_CHANGE","features":[93]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_FAIL","features":[93]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_OK","features":[93]},{"name":"EVENT_FRS_REPLICA_SET_CXTIONS","features":[93]},{"name":"EVENT_FRS_RMTCO_TIME_SKEW","features":[93]},{"name":"EVENT_FRS_ROOT_HAS_MOVED","features":[93]},{"name":"EVENT_FRS_ROOT_NOT_VALID","features":[93]},{"name":"EVENT_FRS_STAGE_NOT_VALID","features":[93]},{"name":"EVENT_FRS_STAGING_AREA_FULL","features":[93]},{"name":"EVENT_FRS_STARTING","features":[93]},{"name":"EVENT_FRS_STOPPED","features":[93]},{"name":"EVENT_FRS_STOPPED_ASSERT","features":[93]},{"name":"EVENT_FRS_STOPPED_FORCE","features":[93]},{"name":"EVENT_FRS_STOPPING","features":[93]},{"name":"EVENT_FRS_SYSVOL_NOT_READY","features":[93]},{"name":"EVENT_FRS_SYSVOL_NOT_READY_PRIMARY","features":[93]},{"name":"EVENT_FRS_SYSVOL_READY","features":[93]},{"name":"EVENT_FRS_VOLUME_NOT_SUPPORTED","features":[93]},{"name":"EVENT_INVALID_DRIVER_DEPENDENCY","features":[93]},{"name":"EVENT_IPX_CREATE_DEVICE","features":[93]},{"name":"EVENT_IPX_ILLEGAL_CONFIG","features":[93]},{"name":"EVENT_IPX_INTERNAL_NET_INVALID","features":[93]},{"name":"EVENT_IPX_NEW_DEFAULT_TYPE","features":[93]},{"name":"EVENT_IPX_NO_ADAPTERS","features":[93]},{"name":"EVENT_IPX_NO_FRAME_TYPES","features":[93]},{"name":"EVENT_IPX_SAP_ANNOUNCE","features":[93]},{"name":"EVENT_NBT_BAD_BACKUP_WINS_ADDR","features":[93]},{"name":"EVENT_NBT_BAD_PRIMARY_WINS_ADDR","features":[93]},{"name":"EVENT_NBT_CREATE_ADDRESS","features":[93]},{"name":"EVENT_NBT_CREATE_CONNECTION","features":[93]},{"name":"EVENT_NBT_CREATE_DEVICE","features":[93]},{"name":"EVENT_NBT_CREATE_DRIVER","features":[93]},{"name":"EVENT_NBT_DUPLICATE_NAME","features":[93]},{"name":"EVENT_NBT_DUPLICATE_NAME_ERROR","features":[93]},{"name":"EVENT_NBT_NAME_RELEASE","features":[93]},{"name":"EVENT_NBT_NAME_SERVER_ADDRS","features":[93]},{"name":"EVENT_NBT_NON_OS_INIT","features":[93]},{"name":"EVENT_NBT_NO_BACKUP_WINS","features":[93]},{"name":"EVENT_NBT_NO_DEVICES","features":[93]},{"name":"EVENT_NBT_NO_RESOURCES","features":[93]},{"name":"EVENT_NBT_NO_WINS","features":[93]},{"name":"EVENT_NBT_OPEN_REG_LINKAGE","features":[93]},{"name":"EVENT_NBT_OPEN_REG_NAMESERVER","features":[93]},{"name":"EVENT_NBT_OPEN_REG_PARAMS","features":[93]},{"name":"EVENT_NBT_READ_BIND","features":[93]},{"name":"EVENT_NBT_READ_EXPORT","features":[93]},{"name":"EVENT_NBT_TIMERS","features":[93]},{"name":"EVENT_NDIS_ADAPTER_CHECK_ERROR","features":[93]},{"name":"EVENT_NDIS_ADAPTER_DISABLED","features":[93]},{"name":"EVENT_NDIS_ADAPTER_NOT_FOUND","features":[93]},{"name":"EVENT_NDIS_BAD_IO_BASE_ADDRESS","features":[93]},{"name":"EVENT_NDIS_BAD_VERSION","features":[93]},{"name":"EVENT_NDIS_CABLE_DISCONNECTED_ERROR","features":[93]},{"name":"EVENT_NDIS_DMA_CONFLICT","features":[93]},{"name":"EVENT_NDIS_DRIVER_FAILURE","features":[93]},{"name":"EVENT_NDIS_HARDWARE_FAILURE","features":[93]},{"name":"EVENT_NDIS_INTERRUPT_CONFLICT","features":[93]},{"name":"EVENT_NDIS_INTERRUPT_CONNECT","features":[93]},{"name":"EVENT_NDIS_INVALID_DOWNLOAD_FILE_ERROR","features":[93]},{"name":"EVENT_NDIS_INVALID_VALUE_FROM_ADAPTER","features":[93]},{"name":"EVENT_NDIS_IO_PORT_CONFLICT","features":[93]},{"name":"EVENT_NDIS_LOBE_FAILUE_ERROR","features":[93]},{"name":"EVENT_NDIS_MAXFRAMESIZE_ERROR","features":[93]},{"name":"EVENT_NDIS_MAXINTERNALBUFS_ERROR","features":[93]},{"name":"EVENT_NDIS_MAXMULTICAST_ERROR","features":[93]},{"name":"EVENT_NDIS_MAXRECEIVES_ERROR","features":[93]},{"name":"EVENT_NDIS_MAXTRANSMITS_ERROR","features":[93]},{"name":"EVENT_NDIS_MEMORY_CONFLICT","features":[93]},{"name":"EVENT_NDIS_MISSING_CONFIGURATION_PARAMETER","features":[93]},{"name":"EVENT_NDIS_NETWORK_ADDRESS","features":[93]},{"name":"EVENT_NDIS_OUT_OF_RESOURCE","features":[93]},{"name":"EVENT_NDIS_PORT_OR_DMA_CONFLICT","features":[93]},{"name":"EVENT_NDIS_PRODUCTID_ERROR","features":[93]},{"name":"EVENT_NDIS_RECEIVE_SPACE_SMALL","features":[93]},{"name":"EVENT_NDIS_REMOVE_RECEIVED_ERROR","features":[93]},{"name":"EVENT_NDIS_RESET_FAILURE_CORRECTION","features":[93]},{"name":"EVENT_NDIS_RESET_FAILURE_ERROR","features":[93]},{"name":"EVENT_NDIS_RESOURCE_CONFLICT","features":[93]},{"name":"EVENT_NDIS_SIGNAL_LOSS_ERROR","features":[93]},{"name":"EVENT_NDIS_TIMEOUT","features":[93]},{"name":"EVENT_NDIS_TOKEN_RING_CORRECTION","features":[93]},{"name":"EVENT_NDIS_UNSUPPORTED_CONFIGURATION","features":[93]},{"name":"EVENT_PS_ADMISSIONCONTROL_OVERFLOW","features":[93]},{"name":"EVENT_PS_BAD_BESTEFFORT_LIMIT","features":[93]},{"name":"EVENT_PS_BINDING_FAILED","features":[93]},{"name":"EVENT_PS_GPC_REGISTER_FAILED","features":[93]},{"name":"EVENT_PS_INIT_DEVICE_FAILED","features":[93]},{"name":"EVENT_PS_MISSING_ADAPTER_REGISTRY_DATA","features":[93]},{"name":"EVENT_PS_NETWORK_ADDRESS_FAIL","features":[93]},{"name":"EVENT_PS_NO_RESOURCES_FOR_INIT","features":[93]},{"name":"EVENT_PS_QUERY_OID_GEN_LINK_SPEED","features":[93]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_FRAME_SIZE","features":[93]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_TOTAL_SIZE","features":[93]},{"name":"EVENT_PS_REGISTER_ADDRESS_FAMILY_FAILED","features":[93]},{"name":"EVENT_PS_REGISTER_MINIPORT_FAILED","features":[93]},{"name":"EVENT_PS_REGISTER_PROTOCOL_FAILED","features":[93]},{"name":"EVENT_PS_RESOURCE_POOL","features":[93]},{"name":"EVENT_PS_WAN_LIMITED_BESTEFFORT","features":[93]},{"name":"EVENT_PS_WMI_INSTANCE_NAME_FAILED","features":[93]},{"name":"EVENT_RDR_AT_THREAD_MAX","features":[93]},{"name":"EVENT_RDR_CANT_BIND_TRANSPORT","features":[93]},{"name":"EVENT_RDR_CANT_BUILD_SMB_HEADER","features":[93]},{"name":"EVENT_RDR_CANT_CREATE_DEVICE","features":[93]},{"name":"EVENT_RDR_CANT_CREATE_THREAD","features":[93]},{"name":"EVENT_RDR_CANT_GET_SECURITY_CONTEXT","features":[93]},{"name":"EVENT_RDR_CANT_READ_REGISTRY","features":[93]},{"name":"EVENT_RDR_CANT_REGISTER_ADDRESS","features":[93]},{"name":"EVENT_RDR_CANT_SET_THREAD","features":[93]},{"name":"EVENT_RDR_CLOSE_BEHIND","features":[93]},{"name":"EVENT_RDR_CONNECTION","features":[93]},{"name":"EVENT_RDR_CONNECTION_REFERENCE","features":[93]},{"name":"EVENT_RDR_CONTEXTS","features":[93]},{"name":"EVENT_RDR_DELAYED_SET_ATTRIBUTES_FAILED","features":[93]},{"name":"EVENT_RDR_DELETEONCLOSE_FAILED","features":[93]},{"name":"EVENT_RDR_DISPOSITION","features":[93]},{"name":"EVENT_RDR_ENCRYPT","features":[93]},{"name":"EVENT_RDR_FAILED_UNLOCK","features":[93]},{"name":"EVENT_RDR_INVALID_LOCK_REPLY","features":[93]},{"name":"EVENT_RDR_INVALID_OPLOCK","features":[93]},{"name":"EVENT_RDR_INVALID_REPLY","features":[93]},{"name":"EVENT_RDR_INVALID_SMB","features":[93]},{"name":"EVENT_RDR_MAXCMDS","features":[93]},{"name":"EVENT_RDR_OPLOCK_SMB","features":[93]},{"name":"EVENT_RDR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[93]},{"name":"EVENT_RDR_RESOURCE_SHORTAGE","features":[93]},{"name":"EVENT_RDR_SECURITY_SIGNATURE_MISMATCH","features":[93]},{"name":"EVENT_RDR_SERVER_REFERENCE","features":[93]},{"name":"EVENT_RDR_SMB_REFERENCE","features":[93]},{"name":"EVENT_RDR_TIMEOUT","features":[93]},{"name":"EVENT_RDR_TIMEZONE_BIAS_TOO_LARGE","features":[93]},{"name":"EVENT_RDR_UNEXPECTED_ERROR","features":[93]},{"name":"EVENT_RDR_WRITE_BEHIND_FLUSH_FAILED","features":[93]},{"name":"EVENT_READFILE_TIMEOUT","features":[93]},{"name":"EVENT_REVERTED_TO_LASTKNOWNGOOD","features":[93]},{"name":"EVENT_RPCSS_ACTIVATION_ERROR","features":[93]},{"name":"EVENT_RPCSS_CREATEDEBUGGERPROCESS_FAILURE","features":[93]},{"name":"EVENT_RPCSS_CREATEPROCESS_FAILURE","features":[93]},{"name":"EVENT_RPCSS_DEFAULT_LAUNCH_ACCESS_DENIED","features":[93]},{"name":"EVENT_RPCSS_LAUNCH_ACCESS_DENIED","features":[93]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR","features":[93]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR_WITH_FILE","features":[93]},{"name":"EVENT_RPCSS_REMOTE_SIDE_UNAVAILABLE","features":[93]},{"name":"EVENT_RPCSS_RUNAS_CANT_LOGIN","features":[93]},{"name":"EVENT_RPCSS_RUNAS_CREATEPROCESS_FAILURE","features":[93]},{"name":"EVENT_RPCSS_SERVER_NOT_RESPONDING","features":[93]},{"name":"EVENT_RPCSS_SERVER_START_TIMEOUT","features":[93]},{"name":"EVENT_RPCSS_START_SERVICE_FAILURE","features":[93]},{"name":"EVENT_RPCSS_STOP_SERVICE_FAILURE","features":[93]},{"name":"EVENT_RUNNING_LASTKNOWNGOOD","features":[93]},{"name":"EVENT_SCOPE_LABEL_TOO_LONG","features":[93]},{"name":"EVENT_SCOPE_TOO_LONG","features":[93]},{"name":"EVENT_SECOND_LOGON_FAILED","features":[93]},{"name":"EVENT_SERVICE_CONFIG_BACKOUT_FAILED","features":[93]},{"name":"EVENT_SERVICE_CONTROL_SUCCESS","features":[93]},{"name":"EVENT_SERVICE_CRASH","features":[93]},{"name":"EVENT_SERVICE_CRASH_NO_ACTION","features":[93]},{"name":"EVENT_SERVICE_DIFFERENT_PID_CONNECTED","features":[93]},{"name":"EVENT_SERVICE_EXIT_FAILED","features":[93]},{"name":"EVENT_SERVICE_EXIT_FAILED_SPECIFIC","features":[93]},{"name":"EVENT_SERVICE_LOGON_TYPE_NOT_GRANTED","features":[93]},{"name":"EVENT_SERVICE_NOT_INTERACTIVE","features":[93]},{"name":"EVENT_SERVICE_RECOVERY_FAILED","features":[93]},{"name":"EVENT_SERVICE_SCESRV_FAILED","features":[93]},{"name":"EVENT_SERVICE_SHUTDOWN_FAILED","features":[93]},{"name":"EVENT_SERVICE_START_AT_BOOT_FAILED","features":[93]},{"name":"EVENT_SERVICE_START_FAILED","features":[93]},{"name":"EVENT_SERVICE_START_FAILED_GROUP","features":[93]},{"name":"EVENT_SERVICE_START_FAILED_II","features":[93]},{"name":"EVENT_SERVICE_START_FAILED_NONE","features":[93]},{"name":"EVENT_SERVICE_START_HUNG","features":[93]},{"name":"EVENT_SERVICE_START_TYPE_CHANGED","features":[93]},{"name":"EVENT_SERVICE_STATUS_SUCCESS","features":[93]},{"name":"EVENT_SERVICE_STOP_SUCCESS_WITH_REASON","features":[93]},{"name":"EVENT_SEVERE_SERVICE_FAILED","features":[93]},{"name":"EVENT_SRV_CANT_BIND_DUP_NAME","features":[93]},{"name":"EVENT_SRV_CANT_BIND_TO_TRANSPORT","features":[93]},{"name":"EVENT_SRV_CANT_CHANGE_DOMAIN_NAME","features":[93]},{"name":"EVENT_SRV_CANT_CREATE_DEVICE","features":[93]},{"name":"EVENT_SRV_CANT_CREATE_PROCESS","features":[93]},{"name":"EVENT_SRV_CANT_CREATE_THREAD","features":[93]},{"name":"EVENT_SRV_CANT_GROW_TABLE","features":[93]},{"name":"EVENT_SRV_CANT_LOAD_DRIVER","features":[93]},{"name":"EVENT_SRV_CANT_MAP_ERROR","features":[93]},{"name":"EVENT_SRV_CANT_OPEN_NPFS","features":[93]},{"name":"EVENT_SRV_CANT_RECREATE_SHARE","features":[93]},{"name":"EVENT_SRV_CANT_START_SCAVENGER","features":[93]},{"name":"EVENT_SRV_CANT_UNLOAD_DRIVER","features":[93]},{"name":"EVENT_SRV_DISK_FULL","features":[93]},{"name":"EVENT_SRV_DOS_ATTACK_DETECTED","features":[93]},{"name":"EVENT_SRV_INVALID_REGISTRY_VALUE","features":[93]},{"name":"EVENT_SRV_INVALID_REQUEST","features":[93]},{"name":"EVENT_SRV_INVALID_SD","features":[93]},{"name":"EVENT_SRV_IRP_STACK_SIZE","features":[93]},{"name":"EVENT_SRV_KEY_NOT_CREATED","features":[93]},{"name":"EVENT_SRV_KEY_NOT_FOUND","features":[93]},{"name":"EVENT_SRV_NETWORK_ERROR","features":[93]},{"name":"EVENT_SRV_NONPAGED_POOL_LIMIT","features":[93]},{"name":"EVENT_SRV_NO_BLOCKING_IO","features":[93]},{"name":"EVENT_SRV_NO_FREE_CONNECTIONS","features":[93]},{"name":"EVENT_SRV_NO_FREE_RAW_WORK_ITEM","features":[93]},{"name":"EVENT_SRV_NO_NONPAGED_POOL","features":[93]},{"name":"EVENT_SRV_NO_PAGED_POOL","features":[93]},{"name":"EVENT_SRV_NO_TRANSPORTS_BOUND","features":[93]},{"name":"EVENT_SRV_NO_VIRTUAL_MEMORY","features":[93]},{"name":"EVENT_SRV_NO_WORK_ITEM","features":[93]},{"name":"EVENT_SRV_OUT_OF_WORK_ITEM_DOS","features":[93]},{"name":"EVENT_SRV_PAGED_POOL_LIMIT","features":[93]},{"name":"EVENT_SRV_RESOURCE_SHORTAGE","features":[93]},{"name":"EVENT_SRV_SERVICE_FAILED","features":[93]},{"name":"EVENT_SRV_TOO_MANY_DOS","features":[93]},{"name":"EVENT_SRV_TXF_INIT_FAILED","features":[93]},{"name":"EVENT_SRV_UNEXPECTED_DISC","features":[93]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE","features":[93]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE_CNT","features":[93]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE","features":[93]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE_CNT","features":[93]},{"name":"EVENT_STREAMS_STRLOG","features":[93]},{"name":"EVENT_TAKE_OWNERSHIP","features":[93]},{"name":"EVENT_TCPIP6_STARTED","features":[93]},{"name":"EVENT_TCPIP_ADAPTER_REG_FAILURE","features":[93]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT1","features":[93]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT2","features":[93]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ADDRESS_LIMIT_REACHED","features":[93]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ROUTE_LIMIT_REACHED","features":[93]},{"name":"EVENT_TCPIP_CREATE_DEVICE_FAILED","features":[93]},{"name":"EVENT_TCPIP_DHCP_INIT_FAILED","features":[93]},{"name":"EVENT_TCPIP_INTERFACE_BIND_FAILURE","features":[93]},{"name":"EVENT_TCPIP_INVALID_ADDRESS","features":[93]},{"name":"EVENT_TCPIP_INVALID_DEFAULT_GATEWAY","features":[93]},{"name":"EVENT_TCPIP_INVALID_MASK","features":[93]},{"name":"EVENT_TCPIP_IPV4_UNINSTALLED","features":[93]},{"name":"EVENT_TCPIP_IP_INIT_FAILED","features":[93]},{"name":"EVENT_TCPIP_MEDIA_CONNECT","features":[93]},{"name":"EVENT_TCPIP_MEDIA_DISCONNECT","features":[93]},{"name":"EVENT_TCPIP_NO_ADAPTER_RESOURCES","features":[93]},{"name":"EVENT_TCPIP_NO_ADDRESS_LIST","features":[93]},{"name":"EVENT_TCPIP_NO_BINDINGS","features":[93]},{"name":"EVENT_TCPIP_NO_MASK","features":[93]},{"name":"EVENT_TCPIP_NO_MASK_LIST","features":[93]},{"name":"EVENT_TCPIP_NO_RESOURCES_FOR_INIT","features":[93]},{"name":"EVENT_TCPIP_NTE_CONTEXT_LIST_FAILURE","features":[93]},{"name":"EVENT_TCPIP_OUT_OF_ORDER_FRAGMENTS_EXCEEDED","features":[93]},{"name":"EVENT_TCPIP_PCF_CLEAR_FILTER_FAILURE","features":[93]},{"name":"EVENT_TCPIP_PCF_MISSING_CAPABILITY","features":[93]},{"name":"EVENT_TCPIP_PCF_MULTICAST_OID_ISSUE","features":[93]},{"name":"EVENT_TCPIP_PCF_NO_ARP_FILTER","features":[93]},{"name":"EVENT_TCPIP_PCF_SET_FILTER_FAILURE","features":[93]},{"name":"EVENT_TCPIP_TCP_CONNECTIONS_PERF_IMPACTED","features":[93]},{"name":"EVENT_TCPIP_TCP_CONNECT_LIMIT_REACHED","features":[93]},{"name":"EVENT_TCPIP_TCP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[93]},{"name":"EVENT_TCPIP_TCP_INIT_FAILED","features":[93]},{"name":"EVENT_TCPIP_TCP_MPP_ATTACKS_DETECTED","features":[93]},{"name":"EVENT_TCPIP_TCP_TIME_WAIT_COLLISION","features":[93]},{"name":"EVENT_TCPIP_TCP_WSD_WS_RESTRICTED","features":[93]},{"name":"EVENT_TCPIP_TOO_MANY_GATEWAYS","features":[93]},{"name":"EVENT_TCPIP_TOO_MANY_NETS","features":[93]},{"name":"EVENT_TCPIP_UDP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[93]},{"name":"EVENT_TCPIP_UDP_LIMIT_REACHED","features":[93]},{"name":"EVENT_TRANSACT_INVALID","features":[93]},{"name":"EVENT_TRANSACT_TIMEOUT","features":[93]},{"name":"EVENT_TRANSPORT_ADAPTER_NOT_FOUND","features":[93]},{"name":"EVENT_TRANSPORT_BAD_PROTOCOL","features":[93]},{"name":"EVENT_TRANSPORT_BINDING_FAILED","features":[93]},{"name":"EVENT_TRANSPORT_QUERY_OID_FAILED","features":[93]},{"name":"EVENT_TRANSPORT_REGISTER_FAILED","features":[93]},{"name":"EVENT_TRANSPORT_RESOURCE_LIMIT","features":[93]},{"name":"EVENT_TRANSPORT_RESOURCE_POOL","features":[93]},{"name":"EVENT_TRANSPORT_RESOURCE_SPECIFIC","features":[93]},{"name":"EVENT_TRANSPORT_SET_OID_FAILED","features":[93]},{"name":"EVENT_TRANSPORT_TOO_MANY_LINKS","features":[93]},{"name":"EVENT_TRANSPORT_TRANSFER_DATA","features":[93]},{"name":"EVENT_TRK_INTERNAL_ERROR","features":[93]},{"name":"EVENT_TRK_SERVICE_CORRUPT_LOG","features":[93]},{"name":"EVENT_TRK_SERVICE_DUPLICATE_VOLIDS","features":[93]},{"name":"EVENT_TRK_SERVICE_MOVE_QUOTA_EXCEEDED","features":[93]},{"name":"EVENT_TRK_SERVICE_START_FAILURE","features":[93]},{"name":"EVENT_TRK_SERVICE_START_SUCCESS","features":[93]},{"name":"EVENT_TRK_SERVICE_VOLUME_CLAIM","features":[93]},{"name":"EVENT_TRK_SERVICE_VOLUME_CREATE","features":[93]},{"name":"EVENT_TRK_SERVICE_VOL_QUOTA_EXCEEDED","features":[93]},{"name":"EVENT_UP_DRIVER_ON_MP","features":[93]},{"name":"EVENT_WEBCLIENT_CLOSE_DELETE_FAILED","features":[93]},{"name":"EVENT_WEBCLIENT_CLOSE_PROPPATCH_FAILED","features":[93]},{"name":"EVENT_WEBCLIENT_CLOSE_PUT_FAILED","features":[93]},{"name":"EVENT_WEBCLIENT_SETINFO_PROPPATCH_FAILED","features":[93]},{"name":"EVENT_WINNAT_SESSION_LIMIT_REACHED","features":[93]},{"name":"EVENT_WINSOCK_CLOSESOCKET_STUCK","features":[93]},{"name":"EVENT_WINSOCK_TDI_FILTER_DETECTED","features":[93]},{"name":"EVENT_WSK_OWNINGTHREAD_PARAMETER_IGNORED","features":[93]},{"name":"EVLEN","features":[93]},{"name":"EXTRA_EXIT_POINT","features":[93]},{"name":"EXTRA_EXIT_POINT_DELETED","features":[93]},{"name":"EXTRA_EXIT_POINT_NOT_DELETED","features":[93]},{"name":"EXTRA_VOLUME","features":[93]},{"name":"EXTRA_VOLUME_DELETED","features":[93]},{"name":"EXTRA_VOLUME_NOT_DELETED","features":[93]},{"name":"FILTER_INTERDOMAIN_TRUST_ACCOUNT","features":[93]},{"name":"FILTER_NORMAL_ACCOUNT","features":[93]},{"name":"FILTER_SERVER_TRUST_ACCOUNT","features":[93]},{"name":"FILTER_TEMP_DUPLICATE_ACCOUNT","features":[93]},{"name":"FILTER_WORKSTATION_TRUST_ACCOUNT","features":[93]},{"name":"FLAT_STRING","features":[93]},{"name":"FORCE_LEVEL_FLAGS","features":[93]},{"name":"GNLEN","features":[93]},{"name":"GROUPIDMASK","features":[93]},{"name":"GROUP_ALL_PARMNUM","features":[93]},{"name":"GROUP_ATTRIBUTES_PARMNUM","features":[93]},{"name":"GROUP_COMMENT_PARMNUM","features":[93]},{"name":"GROUP_INFO_0","features":[93]},{"name":"GROUP_INFO_1","features":[93]},{"name":"GROUP_INFO_1002","features":[93]},{"name":"GROUP_INFO_1005","features":[93]},{"name":"GROUP_INFO_2","features":[93]},{"name":"GROUP_INFO_3","features":[1,93]},{"name":"GROUP_NAME_PARMNUM","features":[93]},{"name":"GROUP_SPECIALGRP_ADMINS","features":[93]},{"name":"GROUP_SPECIALGRP_GUESTS","features":[93]},{"name":"GROUP_SPECIALGRP_LOCAL","features":[93]},{"name":"GROUP_SPECIALGRP_USERS","features":[93]},{"name":"GROUP_USERS_INFO_0","features":[93]},{"name":"GROUP_USERS_INFO_1","features":[93]},{"name":"GetNetScheduleAccountInformation","features":[93]},{"name":"HARDWARE_ADDRESS","features":[93]},{"name":"HARDWARE_ADDRESS_LENGTH","features":[93]},{"name":"HELP_MSG_FILENAME","features":[93]},{"name":"HLOG","features":[93]},{"name":"IEnumNetCfgBindingInterface","features":[93]},{"name":"IEnumNetCfgBindingPath","features":[93]},{"name":"IEnumNetCfgComponent","features":[93]},{"name":"INTERFACE_INFO_REVISION_1","features":[93]},{"name":"INVALID_TRACEID","features":[93]},{"name":"INetCfg","features":[93]},{"name":"INetCfgBindingInterface","features":[93]},{"name":"INetCfgBindingPath","features":[93]},{"name":"INetCfgClass","features":[93]},{"name":"INetCfgClassSetup","features":[93]},{"name":"INetCfgClassSetup2","features":[93]},{"name":"INetCfgComponent","features":[93]},{"name":"INetCfgComponentBindings","features":[93]},{"name":"INetCfgComponentControl","features":[93]},{"name":"INetCfgComponentNotifyBinding","features":[93]},{"name":"INetCfgComponentNotifyGlobal","features":[93]},{"name":"INetCfgComponentPropertyUi","features":[93]},{"name":"INetCfgComponentSetup","features":[93]},{"name":"INetCfgComponentSysPrep","features":[93]},{"name":"INetCfgComponentUpperEdge","features":[93]},{"name":"INetCfgLock","features":[93]},{"name":"INetCfgPnpReconfigCallback","features":[93]},{"name":"INetCfgSysPrep","features":[93]},{"name":"INetLanConnectionUiInfo","features":[93]},{"name":"INetRasConnectionIpUiInfo","features":[93]},{"name":"IPX_PROTOCOL_BASE","features":[93]},{"name":"IPX_PROTOCOL_RIP","features":[93]},{"name":"IProvisioningDomain","features":[93]},{"name":"IProvisioningProfileWireless","features":[93]},{"name":"IR_PROMISCUOUS","features":[93]},{"name":"IR_PROMISCUOUS_MULTICAST","features":[93]},{"name":"I_NetLogonControl2","features":[93]},{"name":"JOB_ADD_CURRENT_DATE","features":[93]},{"name":"JOB_EXEC_ERROR","features":[93]},{"name":"JOB_NONINTERACTIVE","features":[93]},{"name":"JOB_RUNS_TODAY","features":[93]},{"name":"JOB_RUN_PERIODICALLY","features":[93]},{"name":"KNOWLEDGE_INCONSISTENCY_DETECTED","features":[93]},{"name":"LG_INCLUDE_INDIRECT","features":[93]},{"name":"LM20_CNLEN","features":[93]},{"name":"LM20_DEVLEN","features":[93]},{"name":"LM20_DNLEN","features":[93]},{"name":"LM20_GNLEN","features":[93]},{"name":"LM20_MAXCOMMENTSZ","features":[93]},{"name":"LM20_NNLEN","features":[93]},{"name":"LM20_PATHLEN","features":[93]},{"name":"LM20_PWLEN","features":[93]},{"name":"LM20_QNLEN","features":[93]},{"name":"LM20_SERVICE_ACTIVE","features":[93]},{"name":"LM20_SERVICE_CONTINUE_PENDING","features":[93]},{"name":"LM20_SERVICE_PAUSED","features":[93]},{"name":"LM20_SERVICE_PAUSE_PENDING","features":[93]},{"name":"LM20_SNLEN","features":[93]},{"name":"LM20_STXTLEN","features":[93]},{"name":"LM20_UNCLEN","features":[93]},{"name":"LM20_UNLEN","features":[93]},{"name":"LM_REDIR_FAILURE","features":[93]},{"name":"LOCALGROUP_COMMENT_PARMNUM","features":[93]},{"name":"LOCALGROUP_INFO_0","features":[93]},{"name":"LOCALGROUP_INFO_1","features":[93]},{"name":"LOCALGROUP_INFO_1002","features":[93]},{"name":"LOCALGROUP_MEMBERS_INFO_0","features":[1,93]},{"name":"LOCALGROUP_MEMBERS_INFO_1","features":[1,93,4]},{"name":"LOCALGROUP_MEMBERS_INFO_2","features":[1,93,4]},{"name":"LOCALGROUP_MEMBERS_INFO_3","features":[93]},{"name":"LOCALGROUP_NAME_PARMNUM","features":[93]},{"name":"LOCALGROUP_USERS_INFO_0","features":[93]},{"name":"LOGFLAGS_BACKWARD","features":[93]},{"name":"LOGFLAGS_FORWARD","features":[93]},{"name":"LOGFLAGS_SEEK","features":[93]},{"name":"LOWER_GET_HINT_MASK","features":[93]},{"name":"LOWER_HINT_MASK","features":[93]},{"name":"LogErrorA","features":[93]},{"name":"LogErrorW","features":[93]},{"name":"LogEventA","features":[93]},{"name":"LogEventW","features":[93]},{"name":"MACHINE_UNJOINED","features":[93]},{"name":"MAJOR_VERSION_MASK","features":[93]},{"name":"MAXCOMMENTSZ","features":[93]},{"name":"MAXPERMENTRIES","features":[93]},{"name":"MAX_LANMAN_MESSAGE_ID","features":[93]},{"name":"MAX_NERR","features":[93]},{"name":"MAX_PASSWD_LEN","features":[93]},{"name":"MAX_PREFERRED_LENGTH","features":[93]},{"name":"MAX_PROTOCOL_DLL_LEN","features":[93]},{"name":"MAX_PROTOCOL_NAME_LEN","features":[93]},{"name":"MESSAGE_FILENAME","features":[93]},{"name":"MFE_BOUNDARY_REACHED","features":[93]},{"name":"MFE_IIF","features":[93]},{"name":"MFE_NOT_FORWARDING","features":[93]},{"name":"MFE_NOT_LAST_HOP","features":[93]},{"name":"MFE_NO_ERROR","features":[93]},{"name":"MFE_NO_MULTICAST","features":[93]},{"name":"MFE_NO_ROUTE","features":[93]},{"name":"MFE_NO_SPACE","features":[93]},{"name":"MFE_OIF_PRUNED","features":[93]},{"name":"MFE_OLD_ROUTER","features":[93]},{"name":"MFE_PROHIBITED","features":[93]},{"name":"MFE_PRUNED_UPSTREAM","features":[93]},{"name":"MFE_REACHED_CORE","features":[93]},{"name":"MFE_WRONG_IF","features":[93]},{"name":"MIN_LANMAN_MESSAGE_ID","features":[93]},{"name":"MISSING_EXIT_POINT","features":[93]},{"name":"MISSING_EXIT_POINT_CREATED","features":[93]},{"name":"MISSING_EXIT_POINT_NOT_CREATED","features":[93]},{"name":"MISSING_VOLUME","features":[93]},{"name":"MISSING_VOLUME_CREATED","features":[93]},{"name":"MISSING_VOLUME_NOT_CREATED","features":[93]},{"name":"MODALS_DOMAIN_ID_PARMNUM","features":[93]},{"name":"MODALS_DOMAIN_NAME_PARMNUM","features":[93]},{"name":"MODALS_FORCE_LOGOFF_PARMNUM","features":[93]},{"name":"MODALS_LOCKOUT_DURATION_PARMNUM","features":[93]},{"name":"MODALS_LOCKOUT_OBSERVATION_WINDOW_PARMNUM","features":[93]},{"name":"MODALS_LOCKOUT_THRESHOLD_PARMNUM","features":[93]},{"name":"MODALS_MAX_PASSWD_AGE_PARMNUM","features":[93]},{"name":"MODALS_MIN_PASSWD_AGE_PARMNUM","features":[93]},{"name":"MODALS_MIN_PASSWD_LEN_PARMNUM","features":[93]},{"name":"MODALS_PASSWD_HIST_LEN_PARMNUM","features":[93]},{"name":"MODALS_PRIMARY_PARMNUM","features":[93]},{"name":"MODALS_ROLE_PARMNUM","features":[93]},{"name":"MPR_PROTOCOL_0","features":[93]},{"name":"MRINFO_DISABLED_FLAG","features":[93]},{"name":"MRINFO_DOWN_FLAG","features":[93]},{"name":"MRINFO_LEAF_FLAG","features":[93]},{"name":"MRINFO_PIM_FLAG","features":[93]},{"name":"MRINFO_QUERIER_FLAG","features":[93]},{"name":"MRINFO_TUNNEL_FLAG","features":[93]},{"name":"MSA_INFO_0","features":[93]},{"name":"MSA_INFO_LEVEL","features":[93]},{"name":"MSA_INFO_STATE","features":[93]},{"name":"MSGNAME_FORWARDED_FROM","features":[93]},{"name":"MSGNAME_FORWARDED_TO","features":[93]},{"name":"MSGNAME_NOT_FORWARDED","features":[93]},{"name":"MSG_INFO_0","features":[93]},{"name":"MSG_INFO_1","features":[93]},{"name":"MS_ROUTER_VERSION","features":[93]},{"name":"MprSetupProtocolEnum","features":[93]},{"name":"MprSetupProtocolFree","features":[93]},{"name":"MsaInfoCanInstall","features":[93]},{"name":"MsaInfoCannotInstall","features":[93]},{"name":"MsaInfoInstalled","features":[93]},{"name":"MsaInfoLevel0","features":[93]},{"name":"MsaInfoLevelMax","features":[93]},{"name":"MsaInfoNotExist","features":[93]},{"name":"MsaInfoNotService","features":[93]},{"name":"NCF_DONTEXPOSELOWER","features":[93]},{"name":"NCF_FILTER","features":[93]},{"name":"NCF_FIXED_BINDING","features":[93]},{"name":"NCF_HAS_UI","features":[93]},{"name":"NCF_HIDDEN","features":[93]},{"name":"NCF_HIDE_BINDING","features":[93]},{"name":"NCF_LOWER","features":[93]},{"name":"NCF_LW_FILTER","features":[93]},{"name":"NCF_MULTIPORT_INSTANCED_ADAPTER","features":[93]},{"name":"NCF_NDIS_PROTOCOL","features":[93]},{"name":"NCF_NOT_USER_REMOVABLE","features":[93]},{"name":"NCF_NO_SERVICE","features":[93]},{"name":"NCF_PHYSICAL","features":[93]},{"name":"NCF_SINGLE_INSTANCE","features":[93]},{"name":"NCF_SOFTWARE_ENUMERATED","features":[93]},{"name":"NCF_UPPER","features":[93]},{"name":"NCF_VIRTUAL","features":[93]},{"name":"NCN_ADD","features":[93]},{"name":"NCN_BINDING_PATH","features":[93]},{"name":"NCN_DISABLE","features":[93]},{"name":"NCN_ENABLE","features":[93]},{"name":"NCN_NET","features":[93]},{"name":"NCN_NETCLIENT","features":[93]},{"name":"NCN_NETSERVICE","features":[93]},{"name":"NCN_NETTRANS","features":[93]},{"name":"NCN_PROPERTYCHANGE","features":[93]},{"name":"NCN_REMOVE","features":[93]},{"name":"NCN_UPDATE","features":[93]},{"name":"NCPNP_RECONFIG_LAYER","features":[93]},{"name":"NCRL_NDIS","features":[93]},{"name":"NCRL_TDI","features":[93]},{"name":"NCRP_FLAGS","features":[93]},{"name":"NCRP_QUERY_PROPERTY_UI","features":[93]},{"name":"NCRP_SHOW_PROPERTY_UI","features":[93]},{"name":"NELOG_AT_Exec_Err","features":[93]},{"name":"NELOG_AT_cannot_read","features":[93]},{"name":"NELOG_AT_cannot_write","features":[93]},{"name":"NELOG_AT_sched_err","features":[93]},{"name":"NELOG_AT_schedule_file_created","features":[93]},{"name":"NELOG_Access_File_Bad","features":[93]},{"name":"NELOG_Build_Name","features":[93]},{"name":"NELOG_Cant_Make_Msg_File","features":[93]},{"name":"NELOG_DiskFT","features":[93]},{"name":"NELOG_DriverNotLoaded","features":[93]},{"name":"NELOG_Entries_Lost","features":[93]},{"name":"NELOG_Error_in_DLL","features":[93]},{"name":"NELOG_Exec_Netservr_NoMem","features":[93]},{"name":"NELOG_FT_ErrLog_Too_Large","features":[93]},{"name":"NELOG_FT_Update_In_Progress","features":[93]},{"name":"NELOG_FailedToGetComputerName","features":[93]},{"name":"NELOG_FailedToRegisterSC","features":[93]},{"name":"NELOG_FailedToSetServiceStatus","features":[93]},{"name":"NELOG_File_Changed","features":[93]},{"name":"NELOG_Files_Dont_Fit","features":[93]},{"name":"NELOG_HardErr_From_Server","features":[93]},{"name":"NELOG_HotFix","features":[93]},{"name":"NELOG_Init_Chardev_Err","features":[93]},{"name":"NELOG_Init_Exec_Fail","features":[93]},{"name":"NELOG_Init_OpenCreate_Err","features":[93]},{"name":"NELOG_Init_Seg_Overflow","features":[93]},{"name":"NELOG_Internal_Error","features":[93]},{"name":"NELOG_Invalid_Config_File","features":[93]},{"name":"NELOG_Invalid_Config_Line","features":[93]},{"name":"NELOG_Ioctl_Error","features":[93]},{"name":"NELOG_Joined_Domain","features":[93]},{"name":"NELOG_Joined_Workgroup","features":[93]},{"name":"NELOG_Lazy_Write_Err","features":[93]},{"name":"NELOG_LocalSecFail1","features":[93]},{"name":"NELOG_LocalSecFail2","features":[93]},{"name":"NELOG_LocalSecFail3","features":[93]},{"name":"NELOG_LocalSecGeneralFail","features":[93]},{"name":"NELOG_Mail_Slt_Err","features":[93]},{"name":"NELOG_Mailslot_err","features":[93]},{"name":"NELOG_Message_Send","features":[93]},{"name":"NELOG_Missing_Parameter","features":[93]},{"name":"NELOG_Msg_Log_Err","features":[93]},{"name":"NELOG_Msg_Sem_Shutdown","features":[93]},{"name":"NELOG_Msg_Shutdown","features":[93]},{"name":"NELOG_Msg_Unexpected_SMB_Type","features":[93]},{"name":"NELOG_Name_Expansion","features":[93]},{"name":"NELOG_Ncb_Error","features":[93]},{"name":"NELOG_Ncb_TooManyErr","features":[93]},{"name":"NELOG_NetBios","features":[93]},{"name":"NELOG_NetLogonFailedToInitializeAuthzRm","features":[93]},{"name":"NELOG_NetLogonFailedToInitializeRPCSD","features":[93]},{"name":"NELOG_NetWkSta_Internal_Error","features":[93]},{"name":"NELOG_NetWkSta_NCB_Err","features":[93]},{"name":"NELOG_NetWkSta_No_Resource","features":[93]},{"name":"NELOG_NetWkSta_Reset_Err","features":[93]},{"name":"NELOG_NetWkSta_SMB_Err","features":[93]},{"name":"NELOG_NetWkSta_Stuck_VC_Err","features":[93]},{"name":"NELOG_NetWkSta_Too_Many","features":[93]},{"name":"NELOG_NetWkSta_VC_Err","features":[93]},{"name":"NELOG_NetWkSta_Write_Behind_Err","features":[93]},{"name":"NELOG_Net_Not_Started","features":[93]},{"name":"NELOG_NetlogonAddNameFailure","features":[93]},{"name":"NELOG_NetlogonAuthDCFail","features":[93]},{"name":"NELOG_NetlogonAuthDomainDowngraded","features":[93]},{"name":"NELOG_NetlogonAuthNoDomainController","features":[93]},{"name":"NELOG_NetlogonAuthNoTrustLsaSecret","features":[93]},{"name":"NELOG_NetlogonAuthNoTrustSamAccount","features":[93]},{"name":"NELOG_NetlogonAuthNoUplevelDomainController","features":[93]},{"name":"NELOG_NetlogonBadSiteName","features":[93]},{"name":"NELOG_NetlogonBadSubnetName","features":[93]},{"name":"NELOG_NetlogonBrowserDriver","features":[93]},{"name":"NELOG_NetlogonChangeLogCorrupt","features":[93]},{"name":"NELOG_NetlogonDcOldSiteCovered","features":[93]},{"name":"NELOG_NetlogonDcSiteCovered","features":[93]},{"name":"NELOG_NetlogonDcSiteNotCovered","features":[93]},{"name":"NELOG_NetlogonDcSiteNotCoveredAuto","features":[93]},{"name":"NELOG_NetlogonDnsDeregAborted","features":[93]},{"name":"NELOG_NetlogonDnsHostNameLowerCasingFailed","features":[93]},{"name":"NELOG_NetlogonDownLevelLogoffFailed","features":[93]},{"name":"NELOG_NetlogonDownLevelLogonFailed","features":[93]},{"name":"NELOG_NetlogonDuplicateMachineAccounts","features":[93]},{"name":"NELOG_NetlogonDynamicDnsDeregisterFailure","features":[93]},{"name":"NELOG_NetlogonDynamicDnsFailure","features":[93]},{"name":"NELOG_NetlogonDynamicDnsRegisterFailure","features":[93]},{"name":"NELOG_NetlogonDynamicDnsServerFailure","features":[93]},{"name":"NELOG_NetlogonFailedAccountDelta","features":[93]},{"name":"NELOG_NetlogonFailedDnsHostNameUpdate","features":[93]},{"name":"NELOG_NetlogonFailedDomainDelta","features":[93]},{"name":"NELOG_NetlogonFailedFileCreate","features":[93]},{"name":"NELOG_NetlogonFailedGlobalGroupDelta","features":[93]},{"name":"NELOG_NetlogonFailedLocalGroupDelta","features":[93]},{"name":"NELOG_NetlogonFailedPolicyDelta","features":[93]},{"name":"NELOG_NetlogonFailedPrimary","features":[93]},{"name":"NELOG_NetlogonFailedSecretDelta","features":[93]},{"name":"NELOG_NetlogonFailedSpnUpdate","features":[93]},{"name":"NELOG_NetlogonFailedToAddAuthzRpcInterface","features":[93]},{"name":"NELOG_NetlogonFailedToAddRpcInterface","features":[93]},{"name":"NELOG_NetlogonFailedToCreateShare","features":[93]},{"name":"NELOG_NetlogonFailedToReadMailslot","features":[93]},{"name":"NELOG_NetlogonFailedToRegisterSC","features":[93]},{"name":"NELOG_NetlogonFailedToUpdateTrustList","features":[93]},{"name":"NELOG_NetlogonFailedTrustedDomainDelta","features":[93]},{"name":"NELOG_NetlogonFailedUserDelta","features":[93]},{"name":"NELOG_NetlogonFullSyncCallFailed","features":[93]},{"name":"NELOG_NetlogonFullSyncCallSuccess","features":[93]},{"name":"NELOG_NetlogonFullSyncFailed","features":[93]},{"name":"NELOG_NetlogonFullSyncSuccess","features":[93]},{"name":"NELOG_NetlogonGcOldSiteCovered","features":[93]},{"name":"NELOG_NetlogonGcSiteCovered","features":[93]},{"name":"NELOG_NetlogonGcSiteNotCovered","features":[93]},{"name":"NELOG_NetlogonGcSiteNotCoveredAuto","features":[93]},{"name":"NELOG_NetlogonGetSubnetToSite","features":[93]},{"name":"NELOG_NetlogonInvalidDwordParameterValue","features":[93]},{"name":"NELOG_NetlogonInvalidGenericParameterValue","features":[93]},{"name":"NELOG_NetlogonLanmanBdcsNotAllowed","features":[93]},{"name":"NELOG_NetlogonMachinePasswdSetSucceeded","features":[93]},{"name":"NELOG_NetlogonMsaPasswdSetSucceeded","features":[93]},{"name":"NELOG_NetlogonNTLogoffFailed","features":[93]},{"name":"NELOG_NetlogonNTLogonFailed","features":[93]},{"name":"NELOG_NetlogonNdncOldSiteCovered","features":[93]},{"name":"NELOG_NetlogonNdncSiteCovered","features":[93]},{"name":"NELOG_NetlogonNdncSiteNotCovered","features":[93]},{"name":"NELOG_NetlogonNdncSiteNotCoveredAuto","features":[93]},{"name":"NELOG_NetlogonNoAddressToSiteMapping","features":[93]},{"name":"NELOG_NetlogonNoDynamicDns","features":[93]},{"name":"NELOG_NetlogonNoDynamicDnsManual","features":[93]},{"name":"NELOG_NetlogonNoSiteForClient","features":[93]},{"name":"NELOG_NetlogonNoSiteForClients","features":[93]},{"name":"NELOG_NetlogonPartialSiteMappingForClients","features":[93]},{"name":"NELOG_NetlogonPartialSyncCallFailed","features":[93]},{"name":"NELOG_NetlogonPartialSyncCallSuccess","features":[93]},{"name":"NELOG_NetlogonPartialSyncFailed","features":[93]},{"name":"NELOG_NetlogonPartialSyncSuccess","features":[93]},{"name":"NELOG_NetlogonPasswdSetFailed","features":[93]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsDeregister","features":[93]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsRegister","features":[93]},{"name":"NELOG_NetlogonRemoteDynamicDnsDeregisterFailure","features":[93]},{"name":"NELOG_NetlogonRemoteDynamicDnsRegisterFailure","features":[93]},{"name":"NELOG_NetlogonRemoteDynamicDnsUpdateRequestFailure","features":[93]},{"name":"NELOG_NetlogonRequireSignOrSealError","features":[93]},{"name":"NELOG_NetlogonRpcCallCancelled","features":[93]},{"name":"NELOG_NetlogonRpcPortRequestFailure","features":[93]},{"name":"NELOG_NetlogonSSIInitError","features":[93]},{"name":"NELOG_NetlogonServerAuthFailed","features":[93]},{"name":"NELOG_NetlogonServerAuthFailedNoAccount","features":[93]},{"name":"NELOG_NetlogonServerAuthNoTrustSamAccount","features":[93]},{"name":"NELOG_NetlogonSessionTypeWrong","features":[93]},{"name":"NELOG_NetlogonSpnCrackNamesFailure","features":[93]},{"name":"NELOG_NetlogonSpnMultipleSamAccountNames","features":[93]},{"name":"NELOG_NetlogonSyncError","features":[93]},{"name":"NELOG_NetlogonSystemError","features":[93]},{"name":"NELOG_NetlogonTooManyGlobalGroups","features":[93]},{"name":"NELOG_NetlogonTrackingError","features":[93]},{"name":"NELOG_NetlogonUserValidationReqInitialTimeOut","features":[93]},{"name":"NELOG_NetlogonUserValidationReqRecurringTimeOut","features":[93]},{"name":"NELOG_NetlogonUserValidationReqWaitInitialWarning","features":[93]},{"name":"NELOG_NetlogonUserValidationReqWaitRecurringWarning","features":[93]},{"name":"NELOG_NoTranportLoaded","features":[93]},{"name":"NELOG_OEM_Code","features":[93]},{"name":"NELOG_ReleaseMem_Alert","features":[93]},{"name":"NELOG_Remote_API","features":[93]},{"name":"NELOG_ReplAccessDenied","features":[93]},{"name":"NELOG_ReplBadExport","features":[93]},{"name":"NELOG_ReplBadImport","features":[93]},{"name":"NELOG_ReplBadMsg","features":[93]},{"name":"NELOG_ReplCannotMasterDir","features":[93]},{"name":"NELOG_ReplLogonFailed","features":[93]},{"name":"NELOG_ReplLostMaster","features":[93]},{"name":"NELOG_ReplMaxFiles","features":[93]},{"name":"NELOG_ReplMaxTreeDepth","features":[93]},{"name":"NELOG_ReplNetErr","features":[93]},{"name":"NELOG_ReplSignalFileErr","features":[93]},{"name":"NELOG_ReplSysErr","features":[93]},{"name":"NELOG_ReplUpdateError","features":[93]},{"name":"NELOG_ReplUserCurDir","features":[93]},{"name":"NELOG_ReplUserLoged","features":[93]},{"name":"NELOG_Resource_Shortage","features":[93]},{"name":"NELOG_RplAdapterResource","features":[93]},{"name":"NELOG_RplBackupDatabase","features":[93]},{"name":"NELOG_RplCheckConfigs","features":[93]},{"name":"NELOG_RplCheckSecurity","features":[93]},{"name":"NELOG_RplCreateProfiles","features":[93]},{"name":"NELOG_RplFileCopy","features":[93]},{"name":"NELOG_RplFileDelete","features":[93]},{"name":"NELOG_RplFilePerms","features":[93]},{"name":"NELOG_RplInitDatabase","features":[93]},{"name":"NELOG_RplInitRestoredDatabase","features":[93]},{"name":"NELOG_RplMessages","features":[93]},{"name":"NELOG_RplRegistry","features":[93]},{"name":"NELOG_RplReplaceRPLDISK","features":[93]},{"name":"NELOG_RplRestoreDatabaseFailure","features":[93]},{"name":"NELOG_RplRestoreDatabaseSuccess","features":[93]},{"name":"NELOG_RplSystem","features":[93]},{"name":"NELOG_RplUpgradeDBTo40","features":[93]},{"name":"NELOG_RplWkstaBbcFile","features":[93]},{"name":"NELOG_RplWkstaFileChecksum","features":[93]},{"name":"NELOG_RplWkstaFileLineCount","features":[93]},{"name":"NELOG_RplWkstaFileOpen","features":[93]},{"name":"NELOG_RplWkstaFileRead","features":[93]},{"name":"NELOG_RplWkstaFileSize","features":[93]},{"name":"NELOG_RplWkstaInternal","features":[93]},{"name":"NELOG_RplWkstaMemory","features":[93]},{"name":"NELOG_RplWkstaNetwork","features":[93]},{"name":"NELOG_RplWkstaTimeout","features":[93]},{"name":"NELOG_RplWkstaWrongVersion","features":[93]},{"name":"NELOG_RplXnsBoot","features":[93]},{"name":"NELOG_SMB_Illegal","features":[93]},{"name":"NELOG_Server_Lock_Failure","features":[93]},{"name":"NELOG_Service_Fail","features":[93]},{"name":"NELOG_Srv_Close_Failure","features":[93]},{"name":"NELOG_Srv_No_Mem_Grow","features":[93]},{"name":"NELOG_Srv_Thread_Failure","features":[93]},{"name":"NELOG_Srvnet_NB_Open","features":[93]},{"name":"NELOG_Srvnet_Not_Started","features":[93]},{"name":"NELOG_System_Error","features":[93]},{"name":"NELOG_System_Semaphore","features":[93]},{"name":"NELOG_UPS_CannotOpenDriver","features":[93]},{"name":"NELOG_UPS_CmdFileConfig","features":[93]},{"name":"NELOG_UPS_CmdFileError","features":[93]},{"name":"NELOG_UPS_CmdFileExec","features":[93]},{"name":"NELOG_UPS_PowerBack","features":[93]},{"name":"NELOG_UPS_PowerOut","features":[93]},{"name":"NELOG_UPS_Shutdown","features":[93]},{"name":"NELOG_Unable_To_Lock_Segment","features":[93]},{"name":"NELOG_Unable_To_Unlock_Segment","features":[93]},{"name":"NELOG_Uninstall_Service","features":[93]},{"name":"NELOG_VIO_POPUP_ERR","features":[93]},{"name":"NELOG_Wksta_Bad_Mailslot_SMB","features":[93]},{"name":"NELOG_Wksta_BiosThreadFailure","features":[93]},{"name":"NELOG_Wksta_Compname","features":[93]},{"name":"NELOG_Wksta_HostTab_Full","features":[93]},{"name":"NELOG_Wksta_Infoseg","features":[93]},{"name":"NELOG_Wksta_IniSeg","features":[93]},{"name":"NELOG_Wksta_SSIRelogon","features":[93]},{"name":"NELOG_Wksta_UASInit","features":[93]},{"name":"NELOG_Wrong_DLL_Version","features":[93]},{"name":"NERR_ACFFileIOFail","features":[93]},{"name":"NERR_ACFNoParent","features":[93]},{"name":"NERR_ACFNoRoom","features":[93]},{"name":"NERR_ACFNotFound","features":[93]},{"name":"NERR_ACFNotLoaded","features":[93]},{"name":"NERR_ACFTooManyLists","features":[93]},{"name":"NERR_AccountExpired","features":[93]},{"name":"NERR_AccountLockedOut","features":[93]},{"name":"NERR_AccountReuseBlockedByPolicy","features":[93]},{"name":"NERR_AccountUndefined","features":[93]},{"name":"NERR_AcctLimitExceeded","features":[93]},{"name":"NERR_ActiveConns","features":[93]},{"name":"NERR_AddForwarded","features":[93]},{"name":"NERR_AlertExists","features":[93]},{"name":"NERR_AlreadyCloudDomainJoined","features":[93]},{"name":"NERR_AlreadyExists","features":[93]},{"name":"NERR_AlreadyForwarded","features":[93]},{"name":"NERR_AlreadyLoggedOn","features":[93]},{"name":"NERR_BASE","features":[93]},{"name":"NERR_BadAsgType","features":[93]},{"name":"NERR_BadComponent","features":[93]},{"name":"NERR_BadControlRecv","features":[93]},{"name":"NERR_BadDest","features":[93]},{"name":"NERR_BadDev","features":[93]},{"name":"NERR_BadDevString","features":[93]},{"name":"NERR_BadDomainJoinInfo","features":[93]},{"name":"NERR_BadDosFunction","features":[93]},{"name":"NERR_BadDosRetCode","features":[93]},{"name":"NERR_BadEventName","features":[93]},{"name":"NERR_BadFileCheckSum","features":[93]},{"name":"NERR_BadOfflineJoinInfo","features":[93]},{"name":"NERR_BadPassword","features":[93]},{"name":"NERR_BadPasswordCore","features":[93]},{"name":"NERR_BadQueueDevString","features":[93]},{"name":"NERR_BadQueuePriority","features":[93]},{"name":"NERR_BadReceive","features":[93]},{"name":"NERR_BadRecipient","features":[93]},{"name":"NERR_BadServiceName","features":[93]},{"name":"NERR_BadServiceProgName","features":[93]},{"name":"NERR_BadSource","features":[93]},{"name":"NERR_BadTransactConfig","features":[93]},{"name":"NERR_BadUasConfig","features":[93]},{"name":"NERR_BadUsername","features":[93]},{"name":"NERR_BrowserConfiguredToNotRun","features":[93]},{"name":"NERR_BrowserNotStarted","features":[93]},{"name":"NERR_BrowserTableIncomplete","features":[93]},{"name":"NERR_BufTooSmall","features":[93]},{"name":"NERR_CallingRplSrvr","features":[93]},{"name":"NERR_CanNotGrowSegment","features":[93]},{"name":"NERR_CanNotGrowUASFile","features":[93]},{"name":"NERR_CannotUnjoinAadDomain","features":[93]},{"name":"NERR_CannotUpdateAadHostName","features":[93]},{"name":"NERR_CantConnectRplSrvr","features":[93]},{"name":"NERR_CantCreateJoinInfo","features":[93]},{"name":"NERR_CantLoadOfflineHive","features":[93]},{"name":"NERR_CantOpenImageFile","features":[93]},{"name":"NERR_CantType","features":[93]},{"name":"NERR_CantVerifyHostname","features":[93]},{"name":"NERR_CfgCompNotFound","features":[93]},{"name":"NERR_CfgParamNotFound","features":[93]},{"name":"NERR_ClientNameNotFound","features":[93]},{"name":"NERR_CommDevInUse","features":[93]},{"name":"NERR_ComputerAccountNotFound","features":[93]},{"name":"NERR_ConnectionInsecure","features":[93]},{"name":"NERR_DCNotFound","features":[93]},{"name":"NERR_DS8DCNotFound","features":[93]},{"name":"NERR_DS8DCRequired","features":[93]},{"name":"NERR_DS9DCNotFound","features":[93]},{"name":"NERR_DataTypeInvalid","features":[93]},{"name":"NERR_DatabaseUpToDate","features":[93]},{"name":"NERR_DefaultJoinRequired","features":[93]},{"name":"NERR_DelComputerName","features":[93]},{"name":"NERR_DeleteLater","features":[93]},{"name":"NERR_DestExists","features":[93]},{"name":"NERR_DestIdle","features":[93]},{"name":"NERR_DestInvalidOp","features":[93]},{"name":"NERR_DestInvalidState","features":[93]},{"name":"NERR_DestNoRoom","features":[93]},{"name":"NERR_DestNotFound","features":[93]},{"name":"NERR_DevInUse","features":[93]},{"name":"NERR_DevInvalidOpCode","features":[93]},{"name":"NERR_DevNotFound","features":[93]},{"name":"NERR_DevNotOpen","features":[93]},{"name":"NERR_DevNotRedirected","features":[93]},{"name":"NERR_DeviceIsShared","features":[93]},{"name":"NERR_DeviceNotShared","features":[93]},{"name":"NERR_DeviceShareConflict","features":[93]},{"name":"NERR_DfsAlreadyShared","features":[93]},{"name":"NERR_DfsBadRenamePath","features":[93]},{"name":"NERR_DfsCantCreateJunctionPoint","features":[93]},{"name":"NERR_DfsCantRemoveDfsRoot","features":[93]},{"name":"NERR_DfsCantRemoveLastServerShare","features":[93]},{"name":"NERR_DfsChildOrParentInDfs","features":[93]},{"name":"NERR_DfsCyclicalName","features":[93]},{"name":"NERR_DfsDataIsIdentical","features":[93]},{"name":"NERR_DfsDuplicateService","features":[93]},{"name":"NERR_DfsInconsistent","features":[93]},{"name":"NERR_DfsInternalCorruption","features":[93]},{"name":"NERR_DfsInternalError","features":[93]},{"name":"NERR_DfsLeafVolume","features":[93]},{"name":"NERR_DfsNoSuchServer","features":[93]},{"name":"NERR_DfsNoSuchShare","features":[93]},{"name":"NERR_DfsNoSuchVolume","features":[93]},{"name":"NERR_DfsNotALeafVolume","features":[93]},{"name":"NERR_DfsNotSupportedInServerDfs","features":[93]},{"name":"NERR_DfsServerNotDfsAware","features":[93]},{"name":"NERR_DfsServerUpgraded","features":[93]},{"name":"NERR_DfsVolumeAlreadyExists","features":[93]},{"name":"NERR_DfsVolumeDataCorrupt","features":[93]},{"name":"NERR_DfsVolumeHasMultipleServers","features":[93]},{"name":"NERR_DfsVolumeIsInterDfs","features":[93]},{"name":"NERR_DfsVolumeIsOffline","features":[93]},{"name":"NERR_DifferentServers","features":[93]},{"name":"NERR_DriverNotFound","features":[93]},{"name":"NERR_DupNameReboot","features":[93]},{"name":"NERR_DuplicateHostName","features":[93]},{"name":"NERR_DuplicateName","features":[93]},{"name":"NERR_DuplicateShare","features":[93]},{"name":"NERR_ErrCommRunSrv","features":[93]},{"name":"NERR_ErrorExecingGhost","features":[93]},{"name":"NERR_ExecFailure","features":[93]},{"name":"NERR_FileIdNotFound","features":[93]},{"name":"NERR_GroupExists","features":[93]},{"name":"NERR_GroupNotFound","features":[93]},{"name":"NERR_GrpMsgProcessor","features":[93]},{"name":"NERR_HostNameTooLong","features":[93]},{"name":"NERR_ImageParamErr","features":[93]},{"name":"NERR_InUseBySpooler","features":[93]},{"name":"NERR_IncompleteDel","features":[93]},{"name":"NERR_InternalError","features":[93]},{"name":"NERR_InvalidAPI","features":[93]},{"name":"NERR_InvalidComputer","features":[93]},{"name":"NERR_InvalidDatabase","features":[93]},{"name":"NERR_InvalidDevice","features":[93]},{"name":"NERR_InvalidLana","features":[93]},{"name":"NERR_InvalidLogSeek","features":[93]},{"name":"NERR_InvalidLogonHours","features":[93]},{"name":"NERR_InvalidMachineNameForJoin","features":[93]},{"name":"NERR_InvalidMaxUsers","features":[93]},{"name":"NERR_InvalidUASOp","features":[93]},{"name":"NERR_InvalidWorkgroupName","features":[93]},{"name":"NERR_InvalidWorkstation","features":[93]},{"name":"NERR_IsDfsShare","features":[93]},{"name":"NERR_ItemNotFound","features":[93]},{"name":"NERR_JobInvalidState","features":[93]},{"name":"NERR_JobNoRoom","features":[93]},{"name":"NERR_JobNotFound","features":[93]},{"name":"NERR_JoinPerformedMustRestart","features":[93]},{"name":"NERR_LDAPCapableDCRequired","features":[93]},{"name":"NERR_LanmanIniError","features":[93]},{"name":"NERR_LastAdmin","features":[93]},{"name":"NERR_LineTooLong","features":[93]},{"name":"NERR_LocalDrive","features":[93]},{"name":"NERR_LocalForward","features":[93]},{"name":"NERR_LogFileChanged","features":[93]},{"name":"NERR_LogFileCorrupt","features":[93]},{"name":"NERR_LogOverflow","features":[93]},{"name":"NERR_LogonDomainExists","features":[93]},{"name":"NERR_LogonNoUserPath","features":[93]},{"name":"NERR_LogonScriptError","features":[93]},{"name":"NERR_LogonServerConflict","features":[93]},{"name":"NERR_LogonServerNotFound","features":[93]},{"name":"NERR_LogonTrackingError","features":[93]},{"name":"NERR_LogonsPaused","features":[93]},{"name":"NERR_MaxLenExceeded","features":[93]},{"name":"NERR_MsgAlreadyStarted","features":[93]},{"name":"NERR_MsgInitFailed","features":[93]},{"name":"NERR_MsgNotStarted","features":[93]},{"name":"NERR_MultipleNets","features":[93]},{"name":"NERR_NameInUse","features":[93]},{"name":"NERR_NameNotForwarded","features":[93]},{"name":"NERR_NameNotFound","features":[93]},{"name":"NERR_NameUsesIncompatibleCodePage","features":[93]},{"name":"NERR_NetNameNotFound","features":[93]},{"name":"NERR_NetNotStarted","features":[93]},{"name":"NERR_NetlogonNotStarted","features":[93]},{"name":"NERR_NetworkError","features":[93]},{"name":"NERR_NoAlternateServers","features":[93]},{"name":"NERR_NoCommDevs","features":[93]},{"name":"NERR_NoComputerName","features":[93]},{"name":"NERR_NoForwardName","features":[93]},{"name":"NERR_NoJoinPending","features":[93]},{"name":"NERR_NoNetworkResource","features":[93]},{"name":"NERR_NoOfflineJoinInfo","features":[93]},{"name":"NERR_NoRoom","features":[93]},{"name":"NERR_NoRplBootSystem","features":[93]},{"name":"NERR_NoSuchAlert","features":[93]},{"name":"NERR_NoSuchConnection","features":[93]},{"name":"NERR_NoSuchServer","features":[93]},{"name":"NERR_NoSuchSession","features":[93]},{"name":"NERR_NonDosFloppyUsed","features":[93]},{"name":"NERR_NonValidatedLogon","features":[93]},{"name":"NERR_NotInCache","features":[93]},{"name":"NERR_NotInDispatchTbl","features":[93]},{"name":"NERR_NotLocalDomain","features":[93]},{"name":"NERR_NotLocalName","features":[93]},{"name":"NERR_NotLoggedOn","features":[93]},{"name":"NERR_NotPrimary","features":[93]},{"name":"NERR_OpenFiles","features":[93]},{"name":"NERR_PasswordCantChange","features":[93]},{"name":"NERR_PasswordExpired","features":[93]},{"name":"NERR_PasswordFilterError","features":[93]},{"name":"NERR_PasswordHistConflict","features":[93]},{"name":"NERR_PasswordMismatch","features":[93]},{"name":"NERR_PasswordMustChange","features":[93]},{"name":"NERR_PasswordNotComplexEnough","features":[93]},{"name":"NERR_PasswordTooLong","features":[93]},{"name":"NERR_PasswordTooRecent","features":[93]},{"name":"NERR_PasswordTooShort","features":[93]},{"name":"NERR_PausedRemote","features":[93]},{"name":"NERR_PersonalSku","features":[93]},{"name":"NERR_PlainTextSecretsRequired","features":[93]},{"name":"NERR_ProcNoRespond","features":[93]},{"name":"NERR_ProcNotFound","features":[93]},{"name":"NERR_ProfileCleanup","features":[93]},{"name":"NERR_ProfileFileTooBig","features":[93]},{"name":"NERR_ProfileLoadErr","features":[93]},{"name":"NERR_ProfileOffset","features":[93]},{"name":"NERR_ProfileSaveErr","features":[93]},{"name":"NERR_ProfileUnknownCmd","features":[93]},{"name":"NERR_ProgNeedsExtraMem","features":[93]},{"name":"NERR_ProvisioningBlobUnsupported","features":[93]},{"name":"NERR_QExists","features":[93]},{"name":"NERR_QInvalidState","features":[93]},{"name":"NERR_QNoRoom","features":[93]},{"name":"NERR_QNotFound","features":[93]},{"name":"NERR_QueueNotFound","features":[93]},{"name":"NERR_RPL_CONNECTED","features":[93]},{"name":"NERR_RedirectedPath","features":[93]},{"name":"NERR_RemoteBootFailed","features":[93]},{"name":"NERR_RemoteErr","features":[93]},{"name":"NERR_RemoteFull","features":[93]},{"name":"NERR_RemoteOnly","features":[93]},{"name":"NERR_ResourceExists","features":[93]},{"name":"NERR_ResourceNotFound","features":[93]},{"name":"NERR_RplAdapterInfoCorrupted","features":[93]},{"name":"NERR_RplAdapterNameUnavailable","features":[93]},{"name":"NERR_RplAdapterNotFound","features":[93]},{"name":"NERR_RplBackupDatabase","features":[93]},{"name":"NERR_RplBadDatabase","features":[93]},{"name":"NERR_RplBadRegistry","features":[93]},{"name":"NERR_RplBootInUse","features":[93]},{"name":"NERR_RplBootInfoCorrupted","features":[93]},{"name":"NERR_RplBootNameUnavailable","features":[93]},{"name":"NERR_RplBootNotFound","features":[93]},{"name":"NERR_RplBootRestart","features":[93]},{"name":"NERR_RplBootServiceTerm","features":[93]},{"name":"NERR_RplBootStartFailed","features":[93]},{"name":"NERR_RplCannotEnum","features":[93]},{"name":"NERR_RplConfigInfoCorrupted","features":[93]},{"name":"NERR_RplConfigNameUnavailable","features":[93]},{"name":"NERR_RplConfigNotEmpty","features":[93]},{"name":"NERR_RplConfigNotFound","features":[93]},{"name":"NERR_RplIncompatibleProfile","features":[93]},{"name":"NERR_RplInternal","features":[93]},{"name":"NERR_RplLoadrDiskErr","features":[93]},{"name":"NERR_RplLoadrNetBiosErr","features":[93]},{"name":"NERR_RplNeedsRPLUSERAcct","features":[93]},{"name":"NERR_RplNoAdaptersStarted","features":[93]},{"name":"NERR_RplNotRplServer","features":[93]},{"name":"NERR_RplProfileInfoCorrupted","features":[93]},{"name":"NERR_RplProfileNameUnavailable","features":[93]},{"name":"NERR_RplProfileNotEmpty","features":[93]},{"name":"NERR_RplProfileNotFound","features":[93]},{"name":"NERR_RplRplfilesShare","features":[93]},{"name":"NERR_RplSrvrCallFailed","features":[93]},{"name":"NERR_RplVendorInfoCorrupted","features":[93]},{"name":"NERR_RplVendorNameUnavailable","features":[93]},{"name":"NERR_RplVendorNotFound","features":[93]},{"name":"NERR_RplWkstaInfoCorrupted","features":[93]},{"name":"NERR_RplWkstaNameUnavailable","features":[93]},{"name":"NERR_RplWkstaNeedsUserAcct","features":[93]},{"name":"NERR_RplWkstaNotFound","features":[93]},{"name":"NERR_RunSrvPaused","features":[93]},{"name":"NERR_SameAsComputerName","features":[93]},{"name":"NERR_ServerNotStarted","features":[93]},{"name":"NERR_ServiceCtlBusy","features":[93]},{"name":"NERR_ServiceCtlNotValid","features":[93]},{"name":"NERR_ServiceCtlTimeout","features":[93]},{"name":"NERR_ServiceEntryLocked","features":[93]},{"name":"NERR_ServiceInstalled","features":[93]},{"name":"NERR_ServiceKillProc","features":[93]},{"name":"NERR_ServiceNotCtrl","features":[93]},{"name":"NERR_ServiceNotInstalled","features":[93]},{"name":"NERR_ServiceNotStarting","features":[93]},{"name":"NERR_ServiceTableFull","features":[93]},{"name":"NERR_ServiceTableLocked","features":[93]},{"name":"NERR_SetupAlreadyJoined","features":[93]},{"name":"NERR_SetupCheckDNSConfig","features":[93]},{"name":"NERR_SetupDomainController","features":[93]},{"name":"NERR_SetupNotJoined","features":[93]},{"name":"NERR_ShareMem","features":[93]},{"name":"NERR_ShareNotFound","features":[93]},{"name":"NERR_SourceIsDir","features":[93]},{"name":"NERR_SpeGroupOp","features":[93]},{"name":"NERR_SpoolNoMemory","features":[93]},{"name":"NERR_SpoolerNotLoaded","features":[93]},{"name":"NERR_StandaloneLogon","features":[93]},{"name":"NERR_StartingRplBoot","features":[93]},{"name":"NERR_Success","features":[93]},{"name":"NERR_SyncRequired","features":[93]},{"name":"NERR_TargetVersionUnsupported","features":[93]},{"name":"NERR_TimeDiffAtDC","features":[93]},{"name":"NERR_TmpFile","features":[93]},{"name":"NERR_TooManyAlerts","features":[93]},{"name":"NERR_TooManyConnections","features":[93]},{"name":"NERR_TooManyEntries","features":[93]},{"name":"NERR_TooManyFiles","features":[93]},{"name":"NERR_TooManyHostNames","features":[93]},{"name":"NERR_TooManyImageParams","features":[93]},{"name":"NERR_TooManyItems","features":[93]},{"name":"NERR_TooManyNames","features":[93]},{"name":"NERR_TooManyServers","features":[93]},{"name":"NERR_TooManySessions","features":[93]},{"name":"NERR_TooMuchData","features":[93]},{"name":"NERR_TruncatedBroadcast","features":[93]},{"name":"NERR_TryDownLevel","features":[93]},{"name":"NERR_UPSDriverNotStarted","features":[93]},{"name":"NERR_UPSInvalidCommPort","features":[93]},{"name":"NERR_UPSInvalidConfig","features":[93]},{"name":"NERR_UPSShutdownFailed","features":[93]},{"name":"NERR_UPSSignalAsserted","features":[93]},{"name":"NERR_UnableToAddName_F","features":[93]},{"name":"NERR_UnableToAddName_W","features":[93]},{"name":"NERR_UnableToDelName_F","features":[93]},{"name":"NERR_UnableToDelName_W","features":[93]},{"name":"NERR_UnknownDevDir","features":[93]},{"name":"NERR_UnknownServer","features":[93]},{"name":"NERR_UseNotFound","features":[93]},{"name":"NERR_UserExists","features":[93]},{"name":"NERR_UserInGroup","features":[93]},{"name":"NERR_UserLogon","features":[93]},{"name":"NERR_UserNotFound","features":[93]},{"name":"NERR_UserNotInGroup","features":[93]},{"name":"NERR_ValuesNotSet","features":[93]},{"name":"NERR_WkstaInconsistentState","features":[93]},{"name":"NERR_WkstaNotStarted","features":[93]},{"name":"NERR_WriteFault","features":[93]},{"name":"NETBIOS_NAME_LEN","features":[93]},{"name":"NETCFG_CLIENT_CID_MS_MSClient","features":[93]},{"name":"NETCFG_E_ACTIVE_RAS_CONNECTIONS","features":[93]},{"name":"NETCFG_E_ADAPTER_NOT_FOUND","features":[93]},{"name":"NETCFG_E_ALREADY_INITIALIZED","features":[93]},{"name":"NETCFG_E_COMPONENT_REMOVED_PENDING_REBOOT","features":[93]},{"name":"NETCFG_E_DUPLICATE_INSTANCEID","features":[93]},{"name":"NETCFG_E_IN_USE","features":[93]},{"name":"NETCFG_E_MAX_FILTER_LIMIT","features":[93]},{"name":"NETCFG_E_NEED_REBOOT","features":[93]},{"name":"NETCFG_E_NOT_INITIALIZED","features":[93]},{"name":"NETCFG_E_NO_WRITE_LOCK","features":[93]},{"name":"NETCFG_E_VMSWITCH_ACTIVE_OVER_ADAPTER","features":[93]},{"name":"NETCFG_SERVICE_CID_MS_NETBIOS","features":[93]},{"name":"NETCFG_SERVICE_CID_MS_PSCHED","features":[93]},{"name":"NETCFG_SERVICE_CID_MS_SERVER","features":[93]},{"name":"NETCFG_SERVICE_CID_MS_WLBS","features":[93]},{"name":"NETCFG_S_CAUSED_SETUP_CHANGE","features":[93]},{"name":"NETCFG_S_COMMIT_NOW","features":[93]},{"name":"NETCFG_S_DISABLE_QUERY","features":[93]},{"name":"NETCFG_S_REBOOT","features":[93]},{"name":"NETCFG_S_STILL_REFERENCED","features":[93]},{"name":"NETCFG_TRANS_CID_MS_APPLETALK","features":[93]},{"name":"NETCFG_TRANS_CID_MS_NETBEUI","features":[93]},{"name":"NETCFG_TRANS_CID_MS_NETMON","features":[93]},{"name":"NETCFG_TRANS_CID_MS_NWIPX","features":[93]},{"name":"NETCFG_TRANS_CID_MS_NWSPX","features":[93]},{"name":"NETCFG_TRANS_CID_MS_TCPIP","features":[93]},{"name":"NETLOGON_CONTROL_BACKUP_CHANGE_LOG","features":[93]},{"name":"NETLOGON_CONTROL_BREAKPOINT","features":[93]},{"name":"NETLOGON_CONTROL_CHANGE_PASSWORD","features":[93]},{"name":"NETLOGON_CONTROL_FIND_USER","features":[93]},{"name":"NETLOGON_CONTROL_FORCE_DNS_REG","features":[93]},{"name":"NETLOGON_CONTROL_PDC_REPLICATE","features":[93]},{"name":"NETLOGON_CONTROL_QUERY","features":[93]},{"name":"NETLOGON_CONTROL_QUERY_DNS_REG","features":[93]},{"name":"NETLOGON_CONTROL_QUERY_ENC_TYPES","features":[93]},{"name":"NETLOGON_CONTROL_REDISCOVER","features":[93]},{"name":"NETLOGON_CONTROL_REPLICATE","features":[93]},{"name":"NETLOGON_CONTROL_SET_DBFLAG","features":[93]},{"name":"NETLOGON_CONTROL_SYNCHRONIZE","features":[93]},{"name":"NETLOGON_CONTROL_TC_QUERY","features":[93]},{"name":"NETLOGON_CONTROL_TC_VERIFY","features":[93]},{"name":"NETLOGON_CONTROL_TRANSPORT_NOTIFY","features":[93]},{"name":"NETLOGON_CONTROL_TRUNCATE_LOG","features":[93]},{"name":"NETLOGON_CONTROL_UNLOAD_NETLOGON_DLL","features":[93]},{"name":"NETLOGON_DNS_UPDATE_FAILURE","features":[93]},{"name":"NETLOGON_FULL_SYNC_REPLICATION","features":[93]},{"name":"NETLOGON_HAS_IP","features":[93]},{"name":"NETLOGON_HAS_TIMESERV","features":[93]},{"name":"NETLOGON_INFO_1","features":[93]},{"name":"NETLOGON_INFO_2","features":[93]},{"name":"NETLOGON_INFO_3","features":[93]},{"name":"NETLOGON_INFO_4","features":[93]},{"name":"NETLOGON_REDO_NEEDED","features":[93]},{"name":"NETLOGON_REPLICATION_IN_PROGRESS","features":[93]},{"name":"NETLOGON_REPLICATION_NEEDED","features":[93]},{"name":"NETLOGON_VERIFY_STATUS_RETURNED","features":[93]},{"name":"NETLOG_NetlogonNonWindowsSupportsSecureRpc","features":[93]},{"name":"NETLOG_NetlogonRc4Allowed","features":[93]},{"name":"NETLOG_NetlogonRc4Denied","features":[93]},{"name":"NETLOG_NetlogonRpcBacklogLimitFailure","features":[93]},{"name":"NETLOG_NetlogonRpcBacklogLimitSet","features":[93]},{"name":"NETLOG_NetlogonRpcSigningClient","features":[93]},{"name":"NETLOG_NetlogonRpcSigningTrust","features":[93]},{"name":"NETLOG_NetlogonUnsecureRpcClient","features":[93]},{"name":"NETLOG_NetlogonUnsecureRpcMachineAllowedBySsdl","features":[93]},{"name":"NETLOG_NetlogonUnsecureRpcTrust","features":[93]},{"name":"NETLOG_NetlogonUnsecureRpcTrustAllowedBySsdl","features":[93]},{"name":"NETLOG_NetlogonUnsecuredRpcMachineTemporarilyAllowed","features":[93]},{"name":"NETLOG_PassThruFilterError_Request_AdminOverride","features":[93]},{"name":"NETLOG_PassThruFilterError_Request_Blocked","features":[93]},{"name":"NETLOG_PassThruFilterError_Summary_AdminOverride","features":[93]},{"name":"NETLOG_PassThruFilterError_Summary_Blocked","features":[93]},{"name":"NETMAN_VARTYPE_HARDWARE_ADDRESS","features":[93]},{"name":"NETMAN_VARTYPE_STRING","features":[93]},{"name":"NETMAN_VARTYPE_ULONG","features":[93]},{"name":"NETSETUP_ACCT_CREATE","features":[93]},{"name":"NETSETUP_ACCT_DELETE","features":[93]},{"name":"NETSETUP_ALT_SAMACCOUNTNAME","features":[93]},{"name":"NETSETUP_AMBIGUOUS_DC","features":[93]},{"name":"NETSETUP_DEFER_SPN_SET","features":[93]},{"name":"NETSETUP_DNS_NAME_CHANGES_ONLY","features":[93]},{"name":"NETSETUP_DOMAIN_JOIN_IF_JOINED","features":[93]},{"name":"NETSETUP_DONT_CONTROL_SERVICES","features":[93]},{"name":"NETSETUP_FORCE_SPN_SET","features":[93]},{"name":"NETSETUP_IGNORE_UNSUPPORTED_FLAGS","features":[93]},{"name":"NETSETUP_INSTALL_INVOCATION","features":[93]},{"name":"NETSETUP_JOIN_DC_ACCOUNT","features":[93]},{"name":"NETSETUP_JOIN_DOMAIN","features":[93]},{"name":"NETSETUP_JOIN_READONLY","features":[93]},{"name":"NETSETUP_JOIN_STATUS","features":[93]},{"name":"NETSETUP_JOIN_UNSECURE","features":[93]},{"name":"NETSETUP_JOIN_WITH_NEW_NAME","features":[93]},{"name":"NETSETUP_MACHINE_PWD_PASSED","features":[93]},{"name":"NETSETUP_NAME_TYPE","features":[93]},{"name":"NETSETUP_NO_ACCT_REUSE","features":[93]},{"name":"NETSETUP_NO_NETLOGON_CACHE","features":[93]},{"name":"NETSETUP_PROVISION","features":[93]},{"name":"NETSETUP_PROVISIONING_PARAMS","features":[93]},{"name":"NETSETUP_PROVISIONING_PARAMS_CURRENT_VERSION","features":[93]},{"name":"NETSETUP_PROVISIONING_PARAMS_WIN8_VERSION","features":[93]},{"name":"NETSETUP_PROVISION_CHECK_PWD_ONLY","features":[93]},{"name":"NETSETUP_PROVISION_DOWNLEVEL_PRIV_SUPPORT","features":[93]},{"name":"NETSETUP_PROVISION_ONLINE_CALLER","features":[93]},{"name":"NETSETUP_PROVISION_PERSISTENTSITE","features":[93]},{"name":"NETSETUP_PROVISION_REUSE_ACCOUNT","features":[93]},{"name":"NETSETUP_PROVISION_ROOT_CA_CERTS","features":[93]},{"name":"NETSETUP_PROVISION_SKIP_ACCOUNT_SEARCH","features":[93]},{"name":"NETSETUP_PROVISION_USE_DEFAULT_PASSWORD","features":[93]},{"name":"NETSETUP_SET_MACHINE_NAME","features":[93]},{"name":"NETSETUP_WIN9X_UPGRADE","features":[93]},{"name":"NETWORK_INSTALL_TIME","features":[93]},{"name":"NETWORK_NAME","features":[93]},{"name":"NETWORK_UPGRADE_TYPE","features":[93]},{"name":"NET_COMPUTER_NAME_TYPE","features":[93]},{"name":"NET_DFS_ENUM","features":[93]},{"name":"NET_DFS_ENUMEX","features":[93]},{"name":"NET_DISPLAY_GROUP","features":[93]},{"name":"NET_DISPLAY_MACHINE","features":[93]},{"name":"NET_DISPLAY_USER","features":[93]},{"name":"NET_IGNORE_UNSUPPORTED_FLAGS","features":[93]},{"name":"NET_JOIN_DOMAIN_JOIN_OPTIONS","features":[93]},{"name":"NET_REMOTE_COMPUTER_SUPPORTS_OPTIONS","features":[93]},{"name":"NET_REQUEST_PROVISION_OPTIONS","features":[93]},{"name":"NET_SERVER_TYPE","features":[93]},{"name":"NET_USER_ENUM_FILTER_FLAGS","features":[93]},{"name":"NET_VALIDATE_AUTHENTICATION_INPUT_ARG","features":[1,93]},{"name":"NET_VALIDATE_BAD_PASSWORD_COUNT","features":[93]},{"name":"NET_VALIDATE_BAD_PASSWORD_TIME","features":[93]},{"name":"NET_VALIDATE_LOCKOUT_TIME","features":[93]},{"name":"NET_VALIDATE_OUTPUT_ARG","features":[1,93]},{"name":"NET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG","features":[1,93]},{"name":"NET_VALIDATE_PASSWORD_HASH","features":[93]},{"name":"NET_VALIDATE_PASSWORD_HISTORY","features":[93]},{"name":"NET_VALIDATE_PASSWORD_HISTORY_LENGTH","features":[93]},{"name":"NET_VALIDATE_PASSWORD_LAST_SET","features":[93]},{"name":"NET_VALIDATE_PASSWORD_RESET_INPUT_ARG","features":[1,93]},{"name":"NET_VALIDATE_PASSWORD_TYPE","features":[93]},{"name":"NET_VALIDATE_PERSISTED_FIELDS","features":[1,93]},{"name":"NON_VALIDATED_LOGON","features":[93]},{"name":"NOT_A_DFS_PATH","features":[93]},{"name":"NO_PERMISSION_REQUIRED","features":[93]},{"name":"NSF_COMPONENT_UPDATE","features":[93]},{"name":"NSF_POSTSYSINSTALL","features":[93]},{"name":"NSF_PRIMARYINSTALL","features":[93]},{"name":"NSF_WIN16_UPGRADE","features":[93]},{"name":"NSF_WIN95_UPGRADE","features":[93]},{"name":"NSF_WINNT_SBS_UPGRADE","features":[93]},{"name":"NSF_WINNT_SVR_UPGRADE","features":[93]},{"name":"NSF_WINNT_WKS_UPGRADE","features":[93]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_CONN","features":[93]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_SET","features":[93]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_CONN","features":[93]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_SET","features":[93]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_CONN","features":[93]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_SET","features":[93]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_CONN","features":[93]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_SET","features":[93]},{"name":"NTFRSPRF_REGISTRY_ERROR_CONN","features":[93]},{"name":"NTFRSPRF_REGISTRY_ERROR_SET","features":[93]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_CONN","features":[93]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_SET","features":[93]},{"name":"NULL_USERSETINFO_PASSWD","features":[93]},{"name":"NWSAP_DISPLAY_NAME","features":[93]},{"name":"NWSAP_EVENT_BADWANFILTER_VALUE","features":[93]},{"name":"NWSAP_EVENT_BIND_FAILED","features":[93]},{"name":"NWSAP_EVENT_CARDLISTEVENT_FAIL","features":[93]},{"name":"NWSAP_EVENT_CARDMALLOC_FAILED","features":[93]},{"name":"NWSAP_EVENT_CREATELPCEVENT_ERROR","features":[93]},{"name":"NWSAP_EVENT_CREATELPCPORT_ERROR","features":[93]},{"name":"NWSAP_EVENT_GETSOCKNAME_FAILED","features":[93]},{"name":"NWSAP_EVENT_HASHTABLE_MALLOC_FAILED","features":[93]},{"name":"NWSAP_EVENT_INVALID_FILTERNAME","features":[93]},{"name":"NWSAP_EVENT_KEY_NOT_FOUND","features":[93]},{"name":"NWSAP_EVENT_LPCHANDLEMEMORY_ERROR","features":[93]},{"name":"NWSAP_EVENT_LPCLISTENMEMORY_ERROR","features":[93]},{"name":"NWSAP_EVENT_NOCARDS","features":[93]},{"name":"NWSAP_EVENT_OPTBCASTINADDR_FAILED","features":[93]},{"name":"NWSAP_EVENT_OPTEXTENDEDADDR_FAILED","features":[93]},{"name":"NWSAP_EVENT_OPTMAXADAPTERNUM_ERROR","features":[93]},{"name":"NWSAP_EVENT_RECVSEM_FAIL","features":[93]},{"name":"NWSAP_EVENT_SDMDEVENT_FAIL","features":[93]},{"name":"NWSAP_EVENT_SENDEVENT_FAIL","features":[93]},{"name":"NWSAP_EVENT_SETOPTBCAST_FAILED","features":[93]},{"name":"NWSAP_EVENT_SOCKET_FAILED","features":[93]},{"name":"NWSAP_EVENT_STARTLPCWORKER_ERROR","features":[93]},{"name":"NWSAP_EVENT_STARTRECEIVE_ERROR","features":[93]},{"name":"NWSAP_EVENT_STARTWANCHECK_ERROR","features":[93]},{"name":"NWSAP_EVENT_STARTWANWORKER_ERROR","features":[93]},{"name":"NWSAP_EVENT_STARTWORKER_ERROR","features":[93]},{"name":"NWSAP_EVENT_TABLE_MALLOC_FAILED","features":[93]},{"name":"NWSAP_EVENT_THREADEVENT_FAIL","features":[93]},{"name":"NWSAP_EVENT_WANBIND_FAILED","features":[93]},{"name":"NWSAP_EVENT_WANEVENT_ERROR","features":[93]},{"name":"NWSAP_EVENT_WANHANDLEMEMORY_ERROR","features":[93]},{"name":"NWSAP_EVENT_WANSEM_FAIL","features":[93]},{"name":"NWSAP_EVENT_WANSOCKET_FAILED","features":[93]},{"name":"NWSAP_EVENT_WSASTARTUP_FAILED","features":[93]},{"name":"NetAccessAdd","features":[93]},{"name":"NetAccessDel","features":[93]},{"name":"NetAccessEnum","features":[93]},{"name":"NetAccessGetInfo","features":[93]},{"name":"NetAccessGetUserPerms","features":[93]},{"name":"NetAccessSetInfo","features":[93]},{"name":"NetAddAlternateComputerName","features":[93]},{"name":"NetAddServiceAccount","features":[1,93]},{"name":"NetAlertRaise","features":[93]},{"name":"NetAlertRaiseEx","features":[93]},{"name":"NetAllComputerNames","features":[93]},{"name":"NetAlternateComputerNames","features":[93]},{"name":"NetApiBufferAllocate","features":[93]},{"name":"NetApiBufferFree","features":[93]},{"name":"NetApiBufferReallocate","features":[93]},{"name":"NetApiBufferSize","features":[93]},{"name":"NetAuditClear","features":[93]},{"name":"NetAuditRead","features":[93]},{"name":"NetAuditWrite","features":[93]},{"name":"NetComputerNameTypeMax","features":[93]},{"name":"NetConfigGet","features":[93]},{"name":"NetConfigGetAll","features":[93]},{"name":"NetConfigSet","features":[93]},{"name":"NetCreateProvisioningPackage","features":[93]},{"name":"NetEnumerateComputerNames","features":[93]},{"name":"NetEnumerateServiceAccounts","features":[1,93]},{"name":"NetErrorLogClear","features":[93]},{"name":"NetErrorLogRead","features":[93]},{"name":"NetErrorLogWrite","features":[93]},{"name":"NetFreeAadJoinInformation","features":[1,93,68]},{"name":"NetGetAadJoinInformation","features":[1,93,68]},{"name":"NetGetAnyDCName","features":[93]},{"name":"NetGetDCName","features":[93]},{"name":"NetGetDisplayInformationIndex","features":[93]},{"name":"NetGetJoinInformation","features":[93]},{"name":"NetGetJoinableOUs","features":[93]},{"name":"NetGroupAdd","features":[93]},{"name":"NetGroupAddUser","features":[93]},{"name":"NetGroupDel","features":[93]},{"name":"NetGroupDelUser","features":[93]},{"name":"NetGroupEnum","features":[93]},{"name":"NetGroupGetInfo","features":[93]},{"name":"NetGroupGetUsers","features":[93]},{"name":"NetGroupSetInfo","features":[93]},{"name":"NetGroupSetUsers","features":[93]},{"name":"NetIsServiceAccount","features":[1,93]},{"name":"NetJoinDomain","features":[93]},{"name":"NetLocalGroupAdd","features":[93]},{"name":"NetLocalGroupAddMember","features":[1,93]},{"name":"NetLocalGroupAddMembers","features":[93]},{"name":"NetLocalGroupDel","features":[93]},{"name":"NetLocalGroupDelMember","features":[1,93]},{"name":"NetLocalGroupDelMembers","features":[93]},{"name":"NetLocalGroupEnum","features":[93]},{"name":"NetLocalGroupGetInfo","features":[93]},{"name":"NetLocalGroupGetMembers","features":[93]},{"name":"NetLocalGroupSetInfo","features":[93]},{"name":"NetLocalGroupSetMembers","features":[93]},{"name":"NetMessageBufferSend","features":[93]},{"name":"NetMessageNameAdd","features":[93]},{"name":"NetMessageNameDel","features":[93]},{"name":"NetMessageNameEnum","features":[93]},{"name":"NetMessageNameGetInfo","features":[93]},{"name":"NetPrimaryComputerName","features":[93]},{"name":"NetProvisionComputerAccount","features":[93]},{"name":"NetProvisioning","features":[93]},{"name":"NetQueryDisplayInformation","features":[93]},{"name":"NetQueryServiceAccount","features":[1,93]},{"name":"NetRemoteComputerSupports","features":[93]},{"name":"NetRemoteTOD","features":[93]},{"name":"NetRemoveAlternateComputerName","features":[93]},{"name":"NetRemoveServiceAccount","features":[1,93]},{"name":"NetRenameMachineInDomain","features":[93]},{"name":"NetReplExportDirAdd","features":[93]},{"name":"NetReplExportDirDel","features":[93]},{"name":"NetReplExportDirEnum","features":[93]},{"name":"NetReplExportDirGetInfo","features":[93]},{"name":"NetReplExportDirLock","features":[93]},{"name":"NetReplExportDirSetInfo","features":[93]},{"name":"NetReplExportDirUnlock","features":[93]},{"name":"NetReplGetInfo","features":[93]},{"name":"NetReplImportDirAdd","features":[93]},{"name":"NetReplImportDirDel","features":[93]},{"name":"NetReplImportDirEnum","features":[93]},{"name":"NetReplImportDirGetInfo","features":[93]},{"name":"NetReplImportDirLock","features":[93]},{"name":"NetReplImportDirUnlock","features":[93]},{"name":"NetReplSetInfo","features":[93]},{"name":"NetRequestOfflineDomainJoin","features":[93]},{"name":"NetRequestProvisioningPackageInstall","features":[93]},{"name":"NetScheduleJobAdd","features":[93]},{"name":"NetScheduleJobDel","features":[93]},{"name":"NetScheduleJobEnum","features":[93]},{"name":"NetScheduleJobGetInfo","features":[93]},{"name":"NetServerComputerNameAdd","features":[93]},{"name":"NetServerComputerNameDel","features":[93]},{"name":"NetServerDiskEnum","features":[93]},{"name":"NetServerEnum","features":[93]},{"name":"NetServerGetInfo","features":[93]},{"name":"NetServerSetInfo","features":[93]},{"name":"NetServerTransportAdd","features":[93]},{"name":"NetServerTransportAddEx","features":[93]},{"name":"NetServerTransportDel","features":[93]},{"name":"NetServerTransportEnum","features":[93]},{"name":"NetServiceControl","features":[93]},{"name":"NetServiceEnum","features":[93]},{"name":"NetServiceGetInfo","features":[93]},{"name":"NetServiceInstall","features":[93]},{"name":"NetSetPrimaryComputerName","features":[93]},{"name":"NetSetupDnsMachine","features":[93]},{"name":"NetSetupDomain","features":[93]},{"name":"NetSetupDomainName","features":[93]},{"name":"NetSetupMachine","features":[93]},{"name":"NetSetupNonExistentDomain","features":[93]},{"name":"NetSetupUnjoined","features":[93]},{"name":"NetSetupUnknown","features":[93]},{"name":"NetSetupUnknownStatus","features":[93]},{"name":"NetSetupWorkgroup","features":[93]},{"name":"NetSetupWorkgroupName","features":[93]},{"name":"NetUnjoinDomain","features":[93]},{"name":"NetUseAdd","features":[93]},{"name":"NetUseDel","features":[93]},{"name":"NetUseEnum","features":[93]},{"name":"NetUseGetInfo","features":[93]},{"name":"NetUserAdd","features":[93]},{"name":"NetUserChangePassword","features":[93]},{"name":"NetUserDel","features":[93]},{"name":"NetUserEnum","features":[93]},{"name":"NetUserGetGroups","features":[93]},{"name":"NetUserGetInfo","features":[93]},{"name":"NetUserGetLocalGroups","features":[93]},{"name":"NetUserModalsGet","features":[93]},{"name":"NetUserModalsSet","features":[93]},{"name":"NetUserSetGroups","features":[93]},{"name":"NetUserSetInfo","features":[93]},{"name":"NetValidateAuthentication","features":[93]},{"name":"NetValidateName","features":[93]},{"name":"NetValidatePasswordChange","features":[93]},{"name":"NetValidatePasswordPolicy","features":[93]},{"name":"NetValidatePasswordPolicyFree","features":[93]},{"name":"NetValidatePasswordReset","features":[93]},{"name":"NetWkstaGetInfo","features":[93]},{"name":"NetWkstaSetInfo","features":[93]},{"name":"NetWkstaTransportAdd","features":[93]},{"name":"NetWkstaTransportDel","features":[93]},{"name":"NetWkstaTransportEnum","features":[93]},{"name":"NetWkstaUserEnum","features":[93]},{"name":"NetWkstaUserGetInfo","features":[93]},{"name":"NetWkstaUserSetInfo","features":[93]},{"name":"OBO_COMPONENT","features":[93]},{"name":"OBO_SOFTWARE","features":[93]},{"name":"OBO_TOKEN","features":[1,93]},{"name":"OBO_TOKEN_TYPE","features":[93]},{"name":"OBO_USER","features":[93]},{"name":"OS2MSG_FILENAME","features":[93]},{"name":"PARMNUM_ALL","features":[93]},{"name":"PARMNUM_BASE_INFOLEVEL","features":[93]},{"name":"PARM_ERROR_NONE","features":[93]},{"name":"PARM_ERROR_UNKNOWN","features":[93]},{"name":"PASSWORD_EXPIRED","features":[93]},{"name":"PATHLEN","features":[93]},{"name":"PLATFORM_ID_DOS","features":[93]},{"name":"PLATFORM_ID_NT","features":[93]},{"name":"PLATFORM_ID_OS2","features":[93]},{"name":"PLATFORM_ID_OSF","features":[93]},{"name":"PLATFORM_ID_VMS","features":[93]},{"name":"PREFIX_MISMATCH","features":[93]},{"name":"PREFIX_MISMATCH_FIXED","features":[93]},{"name":"PREFIX_MISMATCH_NOT_FIXED","features":[93]},{"name":"PRINT_OTHER_INFO","features":[93]},{"name":"PRJOB_COMPLETE","features":[93]},{"name":"PRJOB_DELETED","features":[93]},{"name":"PRJOB_DESTNOPAPER","features":[93]},{"name":"PRJOB_DESTOFFLINE","features":[93]},{"name":"PRJOB_DESTPAUSED","features":[93]},{"name":"PRJOB_DEVSTATUS","features":[93]},{"name":"PRJOB_ERROR","features":[93]},{"name":"PRJOB_INTERV","features":[93]},{"name":"PRJOB_NOTIFY","features":[93]},{"name":"PRJOB_QSTATUS","features":[93]},{"name":"PRJOB_QS_PAUSED","features":[93]},{"name":"PRJOB_QS_PRINTING","features":[93]},{"name":"PRJOB_QS_QUEUED","features":[93]},{"name":"PRJOB_QS_SPOOLING","features":[93]},{"name":"PROTO_IPV6_DHCP","features":[93]},{"name":"PROTO_IP_ALG","features":[93]},{"name":"PROTO_IP_BGMP","features":[93]},{"name":"PROTO_IP_BOOTP","features":[93]},{"name":"PROTO_IP_DHCP_ALLOCATOR","features":[93]},{"name":"PROTO_IP_DIFFSERV","features":[93]},{"name":"PROTO_IP_DNS_PROXY","features":[93]},{"name":"PROTO_IP_DTP","features":[93]},{"name":"PROTO_IP_FTP","features":[93]},{"name":"PROTO_IP_H323","features":[93]},{"name":"PROTO_IP_IGMP","features":[93]},{"name":"PROTO_IP_MGM","features":[93]},{"name":"PROTO_IP_MSDP","features":[93]},{"name":"PROTO_IP_NAT","features":[93]},{"name":"PROTO_IP_VRRP","features":[93]},{"name":"PROTO_TYPE_MCAST","features":[93]},{"name":"PROTO_TYPE_MS0","features":[93]},{"name":"PROTO_TYPE_MS1","features":[93]},{"name":"PROTO_TYPE_UCAST","features":[93]},{"name":"PROTO_VENDOR_MS0","features":[93]},{"name":"PROTO_VENDOR_MS1","features":[93]},{"name":"PROTO_VENDOR_MS2","features":[93]},{"name":"PWLEN","features":[93]},{"name":"QNLEN","features":[93]},{"name":"RASCON_IPUI","features":[1,93]},{"name":"RASCON_UIINFO_FLAGS","features":[93]},{"name":"RCUIF_DEMAND_DIAL","features":[93]},{"name":"RCUIF_DISABLE_CLASS_BASED_ROUTE","features":[93]},{"name":"RCUIF_ENABLE_NBT","features":[93]},{"name":"RCUIF_NOT_ADMIN","features":[93]},{"name":"RCUIF_USE_DISABLE_REGISTER_DNS","features":[93]},{"name":"RCUIF_USE_HEADER_COMPRESSION","features":[93]},{"name":"RCUIF_USE_IPv4_EXPLICIT_METRIC","features":[93]},{"name":"RCUIF_USE_IPv4_NAME_SERVERS","features":[93]},{"name":"RCUIF_USE_IPv4_REMOTE_GATEWAY","features":[93]},{"name":"RCUIF_USE_IPv4_STATICADDRESS","features":[93]},{"name":"RCUIF_USE_IPv6_EXPLICIT_METRIC","features":[93]},{"name":"RCUIF_USE_IPv6_NAME_SERVERS","features":[93]},{"name":"RCUIF_USE_IPv6_REMOTE_GATEWAY","features":[93]},{"name":"RCUIF_USE_IPv6_STATICADDRESS","features":[93]},{"name":"RCUIF_USE_PRIVATE_DNS_SUFFIX","features":[93]},{"name":"RCUIF_VPN","features":[93]},{"name":"REGISTER_PROTOCOL_ENTRY_POINT_STRING","features":[93]},{"name":"REPL_EDIR_INFO_0","features":[93]},{"name":"REPL_EDIR_INFO_1","features":[93]},{"name":"REPL_EDIR_INFO_1000","features":[93]},{"name":"REPL_EDIR_INFO_1001","features":[93]},{"name":"REPL_EDIR_INFO_2","features":[93]},{"name":"REPL_EXPORT_EXTENT_INFOLEVEL","features":[93]},{"name":"REPL_EXPORT_INTEGRITY_INFOLEVEL","features":[93]},{"name":"REPL_EXTENT_FILE","features":[93]},{"name":"REPL_EXTENT_TREE","features":[93]},{"name":"REPL_GUARDTIME_INFOLEVEL","features":[93]},{"name":"REPL_IDIR_INFO_0","features":[93]},{"name":"REPL_IDIR_INFO_1","features":[93]},{"name":"REPL_INFO_0","features":[93]},{"name":"REPL_INFO_1000","features":[93]},{"name":"REPL_INFO_1001","features":[93]},{"name":"REPL_INFO_1002","features":[93]},{"name":"REPL_INFO_1003","features":[93]},{"name":"REPL_INTEGRITY_FILE","features":[93]},{"name":"REPL_INTEGRITY_TREE","features":[93]},{"name":"REPL_INTERVAL_INFOLEVEL","features":[93]},{"name":"REPL_PULSE_INFOLEVEL","features":[93]},{"name":"REPL_RANDOM_INFOLEVEL","features":[93]},{"name":"REPL_ROLE_BOTH","features":[93]},{"name":"REPL_ROLE_EXPORT","features":[93]},{"name":"REPL_ROLE_IMPORT","features":[93]},{"name":"REPL_STATE_NEVER_REPLICATED","features":[93]},{"name":"REPL_STATE_NO_MASTER","features":[93]},{"name":"REPL_STATE_NO_SYNC","features":[93]},{"name":"REPL_STATE_OK","features":[93]},{"name":"REPL_UNLOCK_FORCE","features":[93]},{"name":"REPL_UNLOCK_NOFORCE","features":[93]},{"name":"RF_ADD_ALL_INTERFACES","features":[93]},{"name":"RF_DEMAND_UPDATE_ROUTES","features":[93]},{"name":"RF_MULTICAST","features":[93]},{"name":"RF_POWER","features":[93]},{"name":"RF_ROUTING","features":[93]},{"name":"RF_ROUTINGV6","features":[93]},{"name":"RIS_INTERFACE_ADDRESS_CHANGE","features":[93]},{"name":"RIS_INTERFACE_DISABLED","features":[93]},{"name":"RIS_INTERFACE_ENABLED","features":[93]},{"name":"RIS_INTERFACE_MEDIA_ABSENT","features":[93]},{"name":"RIS_INTERFACE_MEDIA_PRESENT","features":[93]},{"name":"ROUTING_DOMAIN_INFO_REVISION_1","features":[93]},{"name":"RTR_INFO_BLOCK_HEADER","features":[93]},{"name":"RTR_INFO_BLOCK_VERSION","features":[93]},{"name":"RTR_TOC_ENTRY","features":[93]},{"name":"RTUTILS_MAX_PROTOCOL_DLL_LEN","features":[93]},{"name":"RTUTILS_MAX_PROTOCOL_NAME_LEN","features":[93]},{"name":"RouterAssert","features":[93]},{"name":"RouterGetErrorStringA","features":[93]},{"name":"RouterGetErrorStringW","features":[93]},{"name":"RouterLogDeregisterA","features":[1,93]},{"name":"RouterLogDeregisterW","features":[1,93]},{"name":"RouterLogEventA","features":[1,93]},{"name":"RouterLogEventDataA","features":[1,93]},{"name":"RouterLogEventDataW","features":[1,93]},{"name":"RouterLogEventExA","features":[1,93]},{"name":"RouterLogEventExW","features":[1,93]},{"name":"RouterLogEventStringA","features":[1,93]},{"name":"RouterLogEventStringW","features":[1,93]},{"name":"RouterLogEventValistExA","features":[1,93]},{"name":"RouterLogEventValistExW","features":[1,93]},{"name":"RouterLogEventW","features":[1,93]},{"name":"RouterLogRegisterA","features":[1,93]},{"name":"RouterLogRegisterW","features":[1,93]},{"name":"SERVCE_LM20_W32TIME","features":[93]},{"name":"SERVER_DISPLAY_NAME","features":[93]},{"name":"SERVER_INFO_100","features":[93]},{"name":"SERVER_INFO_1005","features":[93]},{"name":"SERVER_INFO_101","features":[93]},{"name":"SERVER_INFO_1010","features":[93]},{"name":"SERVER_INFO_1016","features":[93]},{"name":"SERVER_INFO_1017","features":[93]},{"name":"SERVER_INFO_1018","features":[93]},{"name":"SERVER_INFO_102","features":[93]},{"name":"SERVER_INFO_103","features":[1,93]},{"name":"SERVER_INFO_1107","features":[93]},{"name":"SERVER_INFO_1501","features":[93]},{"name":"SERVER_INFO_1502","features":[93]},{"name":"SERVER_INFO_1503","features":[93]},{"name":"SERVER_INFO_1506","features":[93]},{"name":"SERVER_INFO_1509","features":[93]},{"name":"SERVER_INFO_1510","features":[93]},{"name":"SERVER_INFO_1511","features":[93]},{"name":"SERVER_INFO_1512","features":[93]},{"name":"SERVER_INFO_1513","features":[93]},{"name":"SERVER_INFO_1514","features":[1,93]},{"name":"SERVER_INFO_1515","features":[1,93]},{"name":"SERVER_INFO_1516","features":[1,93]},{"name":"SERVER_INFO_1518","features":[1,93]},{"name":"SERVER_INFO_1520","features":[93]},{"name":"SERVER_INFO_1521","features":[93]},{"name":"SERVER_INFO_1522","features":[93]},{"name":"SERVER_INFO_1523","features":[93]},{"name":"SERVER_INFO_1524","features":[93]},{"name":"SERVER_INFO_1525","features":[93]},{"name":"SERVER_INFO_1528","features":[93]},{"name":"SERVER_INFO_1529","features":[93]},{"name":"SERVER_INFO_1530","features":[93]},{"name":"SERVER_INFO_1533","features":[93]},{"name":"SERVER_INFO_1534","features":[93]},{"name":"SERVER_INFO_1535","features":[93]},{"name":"SERVER_INFO_1536","features":[1,93]},{"name":"SERVER_INFO_1537","features":[1,93]},{"name":"SERVER_INFO_1538","features":[1,93]},{"name":"SERVER_INFO_1539","features":[1,93]},{"name":"SERVER_INFO_1540","features":[1,93]},{"name":"SERVER_INFO_1541","features":[1,93]},{"name":"SERVER_INFO_1542","features":[1,93]},{"name":"SERVER_INFO_1543","features":[93]},{"name":"SERVER_INFO_1544","features":[93]},{"name":"SERVER_INFO_1545","features":[93]},{"name":"SERVER_INFO_1546","features":[93]},{"name":"SERVER_INFO_1547","features":[93]},{"name":"SERVER_INFO_1548","features":[93]},{"name":"SERVER_INFO_1549","features":[93]},{"name":"SERVER_INFO_1550","features":[93]},{"name":"SERVER_INFO_1552","features":[93]},{"name":"SERVER_INFO_1553","features":[93]},{"name":"SERVER_INFO_1554","features":[93]},{"name":"SERVER_INFO_1555","features":[93]},{"name":"SERVER_INFO_1556","features":[93]},{"name":"SERVER_INFO_1557","features":[93]},{"name":"SERVER_INFO_1560","features":[93]},{"name":"SERVER_INFO_1561","features":[93]},{"name":"SERVER_INFO_1562","features":[93]},{"name":"SERVER_INFO_1563","features":[93]},{"name":"SERVER_INFO_1564","features":[93]},{"name":"SERVER_INFO_1565","features":[93]},{"name":"SERVER_INFO_1566","features":[1,93]},{"name":"SERVER_INFO_1567","features":[93]},{"name":"SERVER_INFO_1568","features":[93]},{"name":"SERVER_INFO_1569","features":[93]},{"name":"SERVER_INFO_1570","features":[93]},{"name":"SERVER_INFO_1571","features":[93]},{"name":"SERVER_INFO_1572","features":[93]},{"name":"SERVER_INFO_1573","features":[93]},{"name":"SERVER_INFO_1574","features":[93]},{"name":"SERVER_INFO_1575","features":[93]},{"name":"SERVER_INFO_1576","features":[93]},{"name":"SERVER_INFO_1577","features":[93]},{"name":"SERVER_INFO_1578","features":[93]},{"name":"SERVER_INFO_1579","features":[93]},{"name":"SERVER_INFO_1580","features":[93]},{"name":"SERVER_INFO_1581","features":[93]},{"name":"SERVER_INFO_1582","features":[93]},{"name":"SERVER_INFO_1583","features":[93]},{"name":"SERVER_INFO_1584","features":[93]},{"name":"SERVER_INFO_1585","features":[1,93]},{"name":"SERVER_INFO_1586","features":[93]},{"name":"SERVER_INFO_1587","features":[93]},{"name":"SERVER_INFO_1588","features":[93]},{"name":"SERVER_INFO_1590","features":[93]},{"name":"SERVER_INFO_1591","features":[93]},{"name":"SERVER_INFO_1592","features":[93]},{"name":"SERVER_INFO_1593","features":[93]},{"name":"SERVER_INFO_1594","features":[93]},{"name":"SERVER_INFO_1595","features":[93]},{"name":"SERVER_INFO_1596","features":[93]},{"name":"SERVER_INFO_1597","features":[93]},{"name":"SERVER_INFO_1598","features":[93]},{"name":"SERVER_INFO_1599","features":[1,93]},{"name":"SERVER_INFO_1600","features":[1,93]},{"name":"SERVER_INFO_1601","features":[93]},{"name":"SERVER_INFO_1602","features":[1,93]},{"name":"SERVER_INFO_402","features":[93]},{"name":"SERVER_INFO_403","features":[93]},{"name":"SERVER_INFO_502","features":[1,93]},{"name":"SERVER_INFO_503","features":[1,93]},{"name":"SERVER_INFO_598","features":[1,93]},{"name":"SERVER_INFO_599","features":[1,93]},{"name":"SERVER_INFO_HIDDEN","features":[93]},{"name":"SERVER_INFO_SECURITY","features":[93]},{"name":"SERVER_TRANSPORT_INFO_0","features":[93]},{"name":"SERVER_TRANSPORT_INFO_1","features":[93]},{"name":"SERVER_TRANSPORT_INFO_2","features":[93]},{"name":"SERVER_TRANSPORT_INFO_3","features":[93]},{"name":"SERVICE2_BASE","features":[93]},{"name":"SERVICE_ACCOUNT_FLAG_ADD_AGAINST_RODC","features":[93]},{"name":"SERVICE_ACCOUNT_FLAG_LINK_TO_HOST_ONLY","features":[93]},{"name":"SERVICE_ACCOUNT_FLAG_REMOVE_OFFLINE","features":[93]},{"name":"SERVICE_ACCOUNT_FLAG_UNLINK_FROM_HOST_ONLY","features":[93]},{"name":"SERVICE_ACCOUNT_PASSWORD","features":[93]},{"name":"SERVICE_ACCOUNT_SECRET_PREFIX","features":[93]},{"name":"SERVICE_ADWS","features":[93]},{"name":"SERVICE_AFP","features":[93]},{"name":"SERVICE_ALERTER","features":[93]},{"name":"SERVICE_BASE","features":[93]},{"name":"SERVICE_BROWSER","features":[93]},{"name":"SERVICE_CCP_CHKPT_NUM","features":[93]},{"name":"SERVICE_CCP_NO_HINT","features":[93]},{"name":"SERVICE_CCP_QUERY_HINT","features":[93]},{"name":"SERVICE_CCP_WAIT_TIME","features":[93]},{"name":"SERVICE_CTRL_CONTINUE","features":[93]},{"name":"SERVICE_CTRL_INTERROGATE","features":[93]},{"name":"SERVICE_CTRL_PAUSE","features":[93]},{"name":"SERVICE_CTRL_REDIR_COMM","features":[93]},{"name":"SERVICE_CTRL_REDIR_DISK","features":[93]},{"name":"SERVICE_CTRL_REDIR_PRINT","features":[93]},{"name":"SERVICE_CTRL_UNINSTALL","features":[93]},{"name":"SERVICE_DHCP","features":[93]},{"name":"SERVICE_DNS_CACHE","features":[93]},{"name":"SERVICE_DOS_ENCRYPTION","features":[93]},{"name":"SERVICE_DSROLE","features":[93]},{"name":"SERVICE_INFO_0","features":[93]},{"name":"SERVICE_INFO_1","features":[93]},{"name":"SERVICE_INFO_2","features":[93]},{"name":"SERVICE_INSTALLED","features":[93]},{"name":"SERVICE_INSTALL_PENDING","features":[93]},{"name":"SERVICE_INSTALL_STATE","features":[93]},{"name":"SERVICE_IP_CHKPT_NUM","features":[93]},{"name":"SERVICE_IP_NO_HINT","features":[93]},{"name":"SERVICE_IP_QUERY_HINT","features":[93]},{"name":"SERVICE_IP_WAITTIME_SHIFT","features":[93]},{"name":"SERVICE_IP_WAIT_TIME","features":[93]},{"name":"SERVICE_ISMSERV","features":[93]},{"name":"SERVICE_KDC","features":[93]},{"name":"SERVICE_LM20_AFP","features":[93]},{"name":"SERVICE_LM20_ALERTER","features":[93]},{"name":"SERVICE_LM20_BROWSER","features":[93]},{"name":"SERVICE_LM20_DHCP","features":[93]},{"name":"SERVICE_LM20_DSROLE","features":[93]},{"name":"SERVICE_LM20_ISMSERV","features":[93]},{"name":"SERVICE_LM20_KDC","features":[93]},{"name":"SERVICE_LM20_LMHOSTS","features":[93]},{"name":"SERVICE_LM20_MESSENGER","features":[93]},{"name":"SERVICE_LM20_NBT","features":[93]},{"name":"SERVICE_LM20_NETLOGON","features":[93]},{"name":"SERVICE_LM20_NETPOPUP","features":[93]},{"name":"SERVICE_LM20_NETRUN","features":[93]},{"name":"SERVICE_LM20_NTDS","features":[93]},{"name":"SERVICE_LM20_NTFRS","features":[93]},{"name":"SERVICE_LM20_NWSAP","features":[93]},{"name":"SERVICE_LM20_REPL","features":[93]},{"name":"SERVICE_LM20_RIPL","features":[93]},{"name":"SERVICE_LM20_RPCLOCATOR","features":[93]},{"name":"SERVICE_LM20_SCHEDULE","features":[93]},{"name":"SERVICE_LM20_SERVER","features":[93]},{"name":"SERVICE_LM20_SPOOLER","features":[93]},{"name":"SERVICE_LM20_SQLSERVER","features":[93]},{"name":"SERVICE_LM20_TCPIP","features":[93]},{"name":"SERVICE_LM20_TELNET","features":[93]},{"name":"SERVICE_LM20_TIMESOURCE","features":[93]},{"name":"SERVICE_LM20_TRKSVR","features":[93]},{"name":"SERVICE_LM20_TRKWKS","features":[93]},{"name":"SERVICE_LM20_UPS","features":[93]},{"name":"SERVICE_LM20_WORKSTATION","features":[93]},{"name":"SERVICE_LM20_XACTSRV","features":[93]},{"name":"SERVICE_LMHOSTS","features":[93]},{"name":"SERVICE_MAXTIME","features":[93]},{"name":"SERVICE_MESSENGER","features":[93]},{"name":"SERVICE_NBT","features":[93]},{"name":"SERVICE_NETLOGON","features":[93]},{"name":"SERVICE_NETPOPUP","features":[93]},{"name":"SERVICE_NETRUN","features":[93]},{"name":"SERVICE_NOT_PAUSABLE","features":[93]},{"name":"SERVICE_NOT_UNINSTALLABLE","features":[93]},{"name":"SERVICE_NTDS","features":[93]},{"name":"SERVICE_NTFRS","features":[93]},{"name":"SERVICE_NTIP_WAITTIME_SHIFT","features":[93]},{"name":"SERVICE_NTLMSSP","features":[93]},{"name":"SERVICE_NT_MAXTIME","features":[93]},{"name":"SERVICE_NWCS","features":[93]},{"name":"SERVICE_NWSAP","features":[93]},{"name":"SERVICE_PAUSABLE","features":[93]},{"name":"SERVICE_PAUSE_STATE","features":[93]},{"name":"SERVICE_REDIR_COMM_PAUSED","features":[93]},{"name":"SERVICE_REDIR_DISK_PAUSED","features":[93]},{"name":"SERVICE_REDIR_PAUSED","features":[93]},{"name":"SERVICE_REDIR_PRINT_PAUSED","features":[93]},{"name":"SERVICE_REPL","features":[93]},{"name":"SERVICE_RESRV_MASK","features":[93]},{"name":"SERVICE_RIPL","features":[93]},{"name":"SERVICE_RPCLOCATOR","features":[93]},{"name":"SERVICE_SCHEDULE","features":[93]},{"name":"SERVICE_SERVER","features":[93]},{"name":"SERVICE_SPOOLER","features":[93]},{"name":"SERVICE_SQLSERVER","features":[93]},{"name":"SERVICE_TCPIP","features":[93]},{"name":"SERVICE_TELNET","features":[93]},{"name":"SERVICE_TIMESOURCE","features":[93]},{"name":"SERVICE_TRKSVR","features":[93]},{"name":"SERVICE_TRKWKS","features":[93]},{"name":"SERVICE_UIC_AMBIGPARM","features":[93]},{"name":"SERVICE_UIC_BADPARMVAL","features":[93]},{"name":"SERVICE_UIC_CONFIG","features":[93]},{"name":"SERVICE_UIC_CONFLPARM","features":[93]},{"name":"SERVICE_UIC_DUPPARM","features":[93]},{"name":"SERVICE_UIC_EXEC","features":[93]},{"name":"SERVICE_UIC_FILE","features":[93]},{"name":"SERVICE_UIC_INTERNAL","features":[93]},{"name":"SERVICE_UIC_KILL","features":[93]},{"name":"SERVICE_UIC_MISSPARM","features":[93]},{"name":"SERVICE_UIC_M_ADDPAK","features":[93]},{"name":"SERVICE_UIC_M_ANNOUNCE","features":[93]},{"name":"SERVICE_UIC_M_DATABASE_ERROR","features":[93]},{"name":"SERVICE_UIC_M_DISK","features":[93]},{"name":"SERVICE_UIC_M_ERRLOG","features":[93]},{"name":"SERVICE_UIC_M_FILES","features":[93]},{"name":"SERVICE_UIC_M_FILE_UW","features":[93]},{"name":"SERVICE_UIC_M_LANGROUP","features":[93]},{"name":"SERVICE_UIC_M_LANROOT","features":[93]},{"name":"SERVICE_UIC_M_LAZY","features":[93]},{"name":"SERVICE_UIC_M_LOGS","features":[93]},{"name":"SERVICE_UIC_M_LSA_MACHINE_ACCT","features":[93]},{"name":"SERVICE_UIC_M_MEMORY","features":[93]},{"name":"SERVICE_UIC_M_MSGNAME","features":[93]},{"name":"SERVICE_UIC_M_NETLOGON_AUTH","features":[93]},{"name":"SERVICE_UIC_M_NETLOGON_DC_CFLCT","features":[93]},{"name":"SERVICE_UIC_M_NETLOGON_MPATH","features":[93]},{"name":"SERVICE_UIC_M_NETLOGON_NO_DC","features":[93]},{"name":"SERVICE_UIC_M_NULL","features":[93]},{"name":"SERVICE_UIC_M_PROCESSES","features":[93]},{"name":"SERVICE_UIC_M_REDIR","features":[93]},{"name":"SERVICE_UIC_M_SECURITY","features":[93]},{"name":"SERVICE_UIC_M_SEC_FILE_ERR","features":[93]},{"name":"SERVICE_UIC_M_SERVER","features":[93]},{"name":"SERVICE_UIC_M_SERVER_SEC_ERR","features":[93]},{"name":"SERVICE_UIC_M_THREADS","features":[93]},{"name":"SERVICE_UIC_M_UAS","features":[93]},{"name":"SERVICE_UIC_M_UAS_INVALID_ROLE","features":[93]},{"name":"SERVICE_UIC_M_UAS_MACHINE_ACCT","features":[93]},{"name":"SERVICE_UIC_M_UAS_PROLOG","features":[93]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NMEMB","features":[93]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NOGRP","features":[93]},{"name":"SERVICE_UIC_M_WKSTA","features":[93]},{"name":"SERVICE_UIC_NORMAL","features":[93]},{"name":"SERVICE_UIC_RESOURCE","features":[93]},{"name":"SERVICE_UIC_SUBSERV","features":[93]},{"name":"SERVICE_UIC_SYSTEM","features":[93]},{"name":"SERVICE_UIC_UNKPARM","features":[93]},{"name":"SERVICE_UNINSTALLABLE","features":[93]},{"name":"SERVICE_UNINSTALLED","features":[93]},{"name":"SERVICE_UNINSTALL_PENDING","features":[93]},{"name":"SERVICE_UPS","features":[93]},{"name":"SERVICE_W32TIME","features":[93]},{"name":"SERVICE_WORKSTATION","features":[93]},{"name":"SERVICE_XACTSRV","features":[93]},{"name":"SESSION_CRYPT_KLEN","features":[93]},{"name":"SESSION_PWLEN","features":[93]},{"name":"SHPWLEN","features":[93]},{"name":"SMB_COMPRESSION_INFO","features":[1,93]},{"name":"SMB_TREE_CONNECT_PARAMETERS","features":[93]},{"name":"SMB_USE_OPTION_COMPRESSION_PARAMETERS","features":[93]},{"name":"SNLEN","features":[93]},{"name":"SRV_HASH_GENERATION_ACTIVE","features":[93]},{"name":"SRV_SUPPORT_HASH_GENERATION","features":[93]},{"name":"STD_ALERT","features":[93]},{"name":"STXTLEN","features":[93]},{"name":"SUPPORTS_ANY","features":[93]},{"name":"SUPPORTS_BINDING_INTERFACE_FLAGS","features":[93]},{"name":"SUPPORTS_LOCAL","features":[93]},{"name":"SUPPORTS_REMOTE_ADMIN_PROTOCOL","features":[93]},{"name":"SUPPORTS_RPC","features":[93]},{"name":"SUPPORTS_SAM_PROTOCOL","features":[93]},{"name":"SUPPORTS_UNICODE","features":[93]},{"name":"SVAUD_BADNETLOGON","features":[93]},{"name":"SVAUD_BADSESSLOGON","features":[93]},{"name":"SVAUD_BADUSE","features":[93]},{"name":"SVAUD_GOODNETLOGON","features":[93]},{"name":"SVAUD_GOODSESSLOGON","features":[93]},{"name":"SVAUD_GOODUSE","features":[93]},{"name":"SVAUD_LOGONLIM","features":[93]},{"name":"SVAUD_PERMISSIONS","features":[93]},{"name":"SVAUD_RESOURCE","features":[93]},{"name":"SVAUD_SERVICE","features":[93]},{"name":"SVAUD_USERLIST","features":[93]},{"name":"SVI1_NUM_ELEMENTS","features":[93]},{"name":"SVI2_NUM_ELEMENTS","features":[93]},{"name":"SVI3_NUM_ELEMENTS","features":[93]},{"name":"SVTI2_CLUSTER_DNN_NAME","features":[93]},{"name":"SVTI2_CLUSTER_NAME","features":[93]},{"name":"SVTI2_REMAP_PIPE_NAMES","features":[93]},{"name":"SVTI2_RESERVED1","features":[93]},{"name":"SVTI2_RESERVED2","features":[93]},{"name":"SVTI2_RESERVED3","features":[93]},{"name":"SVTI2_SCOPED_NAME","features":[93]},{"name":"SVTI2_UNICODE_TRANSPORT_ADDRESS","features":[93]},{"name":"SV_ACCEPTDOWNLEVELAPIS_PARMNUM","features":[93]},{"name":"SV_ACCESSALERT_PARMNUM","features":[93]},{"name":"SV_ACTIVELOCKS_PARMNUM","features":[93]},{"name":"SV_ALERTSCHEDULE_PARMNUM","features":[93]},{"name":"SV_ALERTSCHED_PARMNUM","features":[93]},{"name":"SV_ALERTS_PARMNUM","features":[93]},{"name":"SV_ALIST_MTIME_PARMNUM","features":[93]},{"name":"SV_ANNDELTA_PARMNUM","features":[93]},{"name":"SV_ANNOUNCE_PARMNUM","features":[93]},{"name":"SV_AUTOSHARESERVER_PARMNUM","features":[93]},{"name":"SV_AUTOSHAREWKS_PARMNUM","features":[93]},{"name":"SV_BALANCECOUNT_PARMNUM","features":[93]},{"name":"SV_CACHEDDIRECTORYLIMIT_PARMNUM","features":[93]},{"name":"SV_CACHEDOPENLIMIT_PARMNUM","features":[93]},{"name":"SV_CHDEVJOBS_PARMNUM","features":[93]},{"name":"SV_CHDEVQ_PARMNUM","features":[93]},{"name":"SV_COMMENT_PARMNUM","features":[93]},{"name":"SV_CONNECTIONLESSAUTODISC_PARMNUM","features":[93]},{"name":"SV_CONNECTIONNOSESSIONSTIMEOUT_PARMNUM","features":[93]},{"name":"SV_CONNECTIONS_PARMNUM","features":[93]},{"name":"SV_CRITICALTHREADS_PARMNUM","features":[93]},{"name":"SV_DISABLEDOS_PARMNUM","features":[93]},{"name":"SV_DISABLESTRICTNAMECHECKING_PARMNUM","features":[93]},{"name":"SV_DISC_PARMNUM","features":[93]},{"name":"SV_DISKALERT_PARMNUM","features":[93]},{"name":"SV_DISKSPACETHRESHOLD_PARMNUM","features":[93]},{"name":"SV_DOMAIN_PARMNUM","features":[93]},{"name":"SV_ENABLEAUTHENTICATEUSERSHARING_PARMNUM","features":[93]},{"name":"SV_ENABLECOMPRESSION_PARMNUM","features":[93]},{"name":"SV_ENABLEFCBOPENS_PARMNUM","features":[93]},{"name":"SV_ENABLEFORCEDLOGOFF_PARMNUM","features":[93]},{"name":"SV_ENABLEOPLOCKFORCECLOSE_PARMNUM","features":[93]},{"name":"SV_ENABLEOPLOCKS_PARMNUM","features":[93]},{"name":"SV_ENABLERAW_PARMNUM","features":[93]},{"name":"SV_ENABLESECURITYSIGNATURE_PARMNUM","features":[93]},{"name":"SV_ENABLESHAREDNETDRIVES_PARMNUM","features":[93]},{"name":"SV_ENABLESOFTCOMPAT_PARMNUM","features":[93]},{"name":"SV_ENABLEW9XSECURITYSIGNATURE_PARMNUM","features":[93]},{"name":"SV_ENABLEWFW311DIRECTIPX_PARMNUM","features":[93]},{"name":"SV_ENFORCEKERBEROSREAUTHENTICATION_PARMNUM","features":[93]},{"name":"SV_ERRORALERT_PARMNUM","features":[93]},{"name":"SV_ERRORTHRESHOLD_PARMNUM","features":[93]},{"name":"SV_GLIST_MTIME_PARMNUM","features":[93]},{"name":"SV_GUESTACC_PARMNUM","features":[93]},{"name":"SV_HIDDEN","features":[93]},{"name":"SV_HIDDEN_PARMNUM","features":[93]},{"name":"SV_IDLETHREADTIMEOUT_PARMNUM","features":[93]},{"name":"SV_INITCONNTABLE_PARMNUM","features":[93]},{"name":"SV_INITFILETABLE_PARMNUM","features":[93]},{"name":"SV_INITSEARCHTABLE_PARMNUM","features":[93]},{"name":"SV_INITSESSTABLE_PARMNUM","features":[93]},{"name":"SV_INITWORKITEMS_PARMNUM","features":[93]},{"name":"SV_IRPSTACKSIZE_PARMNUM","features":[93]},{"name":"SV_LANMASK_PARMNUM","features":[93]},{"name":"SV_LINKINFOVALIDTIME_PARMNUM","features":[93]},{"name":"SV_LMANNOUNCE_PARMNUM","features":[93]},{"name":"SV_LOCKVIOLATIONDELAY_PARMNUM","features":[93]},{"name":"SV_LOCKVIOLATIONOFFSET_PARMNUM","features":[93]},{"name":"SV_LOCKVIOLATIONRETRIES_PARMNUM","features":[93]},{"name":"SV_LOGONALERT_PARMNUM","features":[93]},{"name":"SV_LOWDISKSPACEMINIMUM_PARMNUM","features":[93]},{"name":"SV_MAXAUDITSZ_PARMNUM","features":[93]},{"name":"SV_MAXCOPYLENGTH_PARMNUM","features":[93]},{"name":"SV_MAXCOPYREADLEN_PARMNUM","features":[93]},{"name":"SV_MAXCOPYWRITELEN_PARMNUM","features":[93]},{"name":"SV_MAXFREECONNECTIONS_PARMNUM","features":[93]},{"name":"SV_MAXFREELFCBS_PARMNUM","features":[93]},{"name":"SV_MAXFREEMFCBS_PARMNUM","features":[93]},{"name":"SV_MAXFREEPAGEDPOOLCHUNKS_PARMNUM","features":[93]},{"name":"SV_MAXFREERFCBS_PARMNUM","features":[93]},{"name":"SV_MAXGLOBALOPENSEARCH_PARMNUM","features":[93]},{"name":"SV_MAXKEEPCOMPLSEARCH_PARMNUM","features":[93]},{"name":"SV_MAXKEEPSEARCH_PARMNUM","features":[93]},{"name":"SV_MAXLINKDELAY_PARMNUM","features":[93]},{"name":"SV_MAXMPXCT_PARMNUM","features":[93]},{"name":"SV_MAXNONPAGEDMEMORYUSAGE_PARMNUM","features":[93]},{"name":"SV_MAXPAGEDMEMORYUSAGE_PARMNUM","features":[93]},{"name":"SV_MAXPAGEDPOOLCHUNKSIZE_PARMNUM","features":[93]},{"name":"SV_MAXRAWBUFLEN_PARMNUM","features":[93]},{"name":"SV_MAXRAWWORKITEMS_PARMNUM","features":[93]},{"name":"SV_MAXTHREADSPERQUEUE_PARMNUM","features":[93]},{"name":"SV_MAXWORKITEMIDLETIME_PARMNUM","features":[93]},{"name":"SV_MAXWORKITEMS_PARMNUM","features":[93]},{"name":"SV_MAX_CMD_LEN","features":[93]},{"name":"SV_MAX_SRV_HEUR_LEN","features":[93]},{"name":"SV_MDLREADSWITCHOVER_PARMNUM","features":[93]},{"name":"SV_MINCLIENTBUFFERSIZE_PARMNUM","features":[93]},{"name":"SV_MINFREECONNECTIONS_PARMNUM","features":[93]},{"name":"SV_MINFREEWORKITEMS_PARMNUM","features":[93]},{"name":"SV_MINKEEPCOMPLSEARCH_PARMNUM","features":[93]},{"name":"SV_MINKEEPSEARCH_PARMNUM","features":[93]},{"name":"SV_MINLINKTHROUGHPUT_PARMNUM","features":[93]},{"name":"SV_MINPAGEDPOOLCHUNKSIZE_PARMNUM","features":[93]},{"name":"SV_MINRCVQUEUE_PARMNUM","features":[93]},{"name":"SV_NAME_PARMNUM","features":[93]},{"name":"SV_NETIOALERT_PARMNUM","features":[93]},{"name":"SV_NETWORKERRORTHRESHOLD_PARMNUM","features":[93]},{"name":"SV_NODISC","features":[93]},{"name":"SV_NUMADMIN_PARMNUM","features":[93]},{"name":"SV_NUMBIGBUF_PARMNUM","features":[93]},{"name":"SV_NUMBLOCKTHREADS_PARMNUM","features":[93]},{"name":"SV_NUMFILETASKS_PARMNUM","features":[93]},{"name":"SV_NUMREQBUF_PARMNUM","features":[93]},{"name":"SV_OPENFILES_PARMNUM","features":[93]},{"name":"SV_OPENSEARCH_PARMNUM","features":[93]},{"name":"SV_OPLOCKBREAKRESPONSEWAIT_PARMNUM","features":[93]},{"name":"SV_OPLOCKBREAKWAIT_PARMNUM","features":[93]},{"name":"SV_OTHERQUEUEAFFINITY_PARMNUM","features":[93]},{"name":"SV_PLATFORM_ID_NT","features":[93]},{"name":"SV_PLATFORM_ID_OS2","features":[93]},{"name":"SV_PLATFORM_ID_PARMNUM","features":[93]},{"name":"SV_PREFERREDAFFINITY_PARMNUM","features":[93]},{"name":"SV_PRODUCTTYPE_PARMNUM","features":[93]},{"name":"SV_QUEUESAMPLESECS_PARMNUM","features":[93]},{"name":"SV_RAWWORKITEMS_PARMNUM","features":[93]},{"name":"SV_REMOVEDUPLICATESEARCHES_PARMNUM","features":[93]},{"name":"SV_REQUIRESECURITYSIGNATURE_PARMNUM","features":[93]},{"name":"SV_RESTRICTNULLSESSACCESS_PARMNUM","features":[93]},{"name":"SV_SCAVQOSINFOUPDATETIME_PARMNUM","features":[93]},{"name":"SV_SCAVTIMEOUT_PARMNUM","features":[93]},{"name":"SV_SECURITY_PARMNUM","features":[93]},{"name":"SV_SENDSFROMPREFERREDPROCESSOR_PARMNUM","features":[93]},{"name":"SV_SERVERSIZE_PARMNUM","features":[93]},{"name":"SV_SESSCONNS_PARMNUM","features":[93]},{"name":"SV_SESSOPENS_PARMNUM","features":[93]},{"name":"SV_SESSREQS_PARMNUM","features":[93]},{"name":"SV_SESSUSERS_PARMNUM","features":[93]},{"name":"SV_SESSVCS_PARMNUM","features":[93]},{"name":"SV_SHARESECURITY","features":[93]},{"name":"SV_SHARES_PARMNUM","features":[93]},{"name":"SV_SHARINGVIOLATIONDELAY_PARMNUM","features":[93]},{"name":"SV_SHARINGVIOLATIONRETRIES_PARMNUM","features":[93]},{"name":"SV_SIZREQBUF_PARMNUM","features":[93]},{"name":"SV_SRVHEURISTICS_PARMNUM","features":[93]},{"name":"SV_THREADCOUNTADD_PARMNUM","features":[93]},{"name":"SV_THREADPRIORITY_PARMNUM","features":[93]},{"name":"SV_TIMESOURCE_PARMNUM","features":[93]},{"name":"SV_TYPE_AFP","features":[93]},{"name":"SV_TYPE_ALL","features":[93]},{"name":"SV_TYPE_ALTERNATE_XPORT","features":[93]},{"name":"SV_TYPE_BACKUP_BROWSER","features":[93]},{"name":"SV_TYPE_CLUSTER_NT","features":[93]},{"name":"SV_TYPE_CLUSTER_VS_NT","features":[93]},{"name":"SV_TYPE_DCE","features":[93]},{"name":"SV_TYPE_DFS","features":[93]},{"name":"SV_TYPE_DIALIN_SERVER","features":[93]},{"name":"SV_TYPE_DOMAIN_BAKCTRL","features":[93]},{"name":"SV_TYPE_DOMAIN_CTRL","features":[93]},{"name":"SV_TYPE_DOMAIN_ENUM","features":[93]},{"name":"SV_TYPE_DOMAIN_MASTER","features":[93]},{"name":"SV_TYPE_DOMAIN_MEMBER","features":[93]},{"name":"SV_TYPE_LOCAL_LIST_ONLY","features":[93]},{"name":"SV_TYPE_MASTER_BROWSER","features":[93]},{"name":"SV_TYPE_NOVELL","features":[93]},{"name":"SV_TYPE_NT","features":[93]},{"name":"SV_TYPE_PARMNUM","features":[93]},{"name":"SV_TYPE_POTENTIAL_BROWSER","features":[93]},{"name":"SV_TYPE_PRINTQ_SERVER","features":[93]},{"name":"SV_TYPE_SERVER","features":[93]},{"name":"SV_TYPE_SERVER_MFPN","features":[93]},{"name":"SV_TYPE_SERVER_NT","features":[93]},{"name":"SV_TYPE_SERVER_OSF","features":[93]},{"name":"SV_TYPE_SERVER_UNIX","features":[93]},{"name":"SV_TYPE_SERVER_VMS","features":[93]},{"name":"SV_TYPE_SQLSERVER","features":[93]},{"name":"SV_TYPE_TERMINALSERVER","features":[93]},{"name":"SV_TYPE_TIME_SOURCE","features":[93]},{"name":"SV_TYPE_WFW","features":[93]},{"name":"SV_TYPE_WINDOWS","features":[93]},{"name":"SV_TYPE_WORKSTATION","features":[93]},{"name":"SV_TYPE_XENIX_SERVER","features":[93]},{"name":"SV_ULIST_MTIME_PARMNUM","features":[93]},{"name":"SV_USERPATH_PARMNUM","features":[93]},{"name":"SV_USERSECURITY","features":[93]},{"name":"SV_USERS_PARMNUM","features":[93]},{"name":"SV_USERS_PER_LICENSE","features":[93]},{"name":"SV_VERSION_MAJOR_PARMNUM","features":[93]},{"name":"SV_VERSION_MINOR_PARMNUM","features":[93]},{"name":"SV_VISIBLE","features":[93]},{"name":"SV_XACTMEMSIZE_PARMNUM","features":[93]},{"name":"SW_AUTOPROF_LOAD_MASK","features":[93]},{"name":"SW_AUTOPROF_SAVE_MASK","features":[93]},{"name":"ServiceAccountPasswordGUID","features":[93]},{"name":"SetNetScheduleAccountInformation","features":[93]},{"name":"TIME_OF_DAY_INFO","features":[93]},{"name":"TITLE_SC_MESSAGE_BOX","features":[93]},{"name":"TRACE_NO_STDINFO","features":[93]},{"name":"TRACE_NO_SYNCH","features":[93]},{"name":"TRACE_USE_CONSOLE","features":[93]},{"name":"TRACE_USE_DATE","features":[93]},{"name":"TRACE_USE_FILE","features":[93]},{"name":"TRACE_USE_MASK","features":[93]},{"name":"TRACE_USE_MSEC","features":[93]},{"name":"TRANSPORT_INFO","features":[1,93]},{"name":"TRANSPORT_NAME_PARMNUM","features":[93]},{"name":"TRANSPORT_QUALITYOFSERVICE_PARMNUM","features":[93]},{"name":"TRANSPORT_TYPE","features":[93]},{"name":"TraceDeregisterA","features":[93]},{"name":"TraceDeregisterExA","features":[93]},{"name":"TraceDeregisterExW","features":[93]},{"name":"TraceDeregisterW","features":[93]},{"name":"TraceDumpExA","features":[1,93]},{"name":"TraceDumpExW","features":[1,93]},{"name":"TraceGetConsoleA","features":[1,93]},{"name":"TraceGetConsoleW","features":[1,93]},{"name":"TracePrintfA","features":[93]},{"name":"TracePrintfExA","features":[93]},{"name":"TracePrintfExW","features":[93]},{"name":"TracePrintfW","features":[93]},{"name":"TracePutsExA","features":[93]},{"name":"TracePutsExW","features":[93]},{"name":"TraceRegisterExA","features":[93]},{"name":"TraceRegisterExW","features":[93]},{"name":"TraceVprintfExA","features":[93]},{"name":"TraceVprintfExW","features":[93]},{"name":"UAS_ROLE_BACKUP","features":[93]},{"name":"UAS_ROLE_MEMBER","features":[93]},{"name":"UAS_ROLE_PRIMARY","features":[93]},{"name":"UAS_ROLE_STANDALONE","features":[93]},{"name":"UF_ACCOUNTDISABLE","features":[93]},{"name":"UF_DONT_EXPIRE_PASSWD","features":[93]},{"name":"UF_DONT_REQUIRE_PREAUTH","features":[93]},{"name":"UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[93]},{"name":"UF_HOMEDIR_REQUIRED","features":[93]},{"name":"UF_INTERDOMAIN_TRUST_ACCOUNT","features":[93]},{"name":"UF_LOCKOUT","features":[93]},{"name":"UF_MNS_LOGON_ACCOUNT","features":[93]},{"name":"UF_NORMAL_ACCOUNT","features":[93]},{"name":"UF_NOT_DELEGATED","features":[93]},{"name":"UF_NO_AUTH_DATA_REQUIRED","features":[93]},{"name":"UF_PARTIAL_SECRETS_ACCOUNT","features":[93]},{"name":"UF_PASSWD_CANT_CHANGE","features":[93]},{"name":"UF_PASSWD_NOTREQD","features":[93]},{"name":"UF_PASSWORD_EXPIRED","features":[93]},{"name":"UF_SCRIPT","features":[93]},{"name":"UF_SERVER_TRUST_ACCOUNT","features":[93]},{"name":"UF_SMARTCARD_REQUIRED","features":[93]},{"name":"UF_TEMP_DUPLICATE_ACCOUNT","features":[93]},{"name":"UF_TRUSTED_FOR_DELEGATION","features":[93]},{"name":"UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[93]},{"name":"UF_USE_AES_KEYS","features":[93]},{"name":"UF_USE_DES_KEY_ONLY","features":[93]},{"name":"UF_WORKSTATION_TRUST_ACCOUNT","features":[93]},{"name":"UNCLEN","features":[93]},{"name":"UNITS_PER_DAY","features":[93]},{"name":"UNLEN","features":[93]},{"name":"UPPER_GET_HINT_MASK","features":[93]},{"name":"UPPER_HINT_MASK","features":[93]},{"name":"USER_ACCOUNT_FLAGS","features":[93]},{"name":"USER_ACCT_EXPIRES_PARMNUM","features":[93]},{"name":"USER_AUTH_FLAGS_PARMNUM","features":[93]},{"name":"USER_CODE_PAGE_PARMNUM","features":[93]},{"name":"USER_COMMENT_PARMNUM","features":[93]},{"name":"USER_COUNTRY_CODE_PARMNUM","features":[93]},{"name":"USER_FLAGS_PARMNUM","features":[93]},{"name":"USER_FULL_NAME_PARMNUM","features":[93]},{"name":"USER_HOME_DIR_DRIVE_PARMNUM","features":[93]},{"name":"USER_HOME_DIR_PARMNUM","features":[93]},{"name":"USER_INFO_0","features":[93]},{"name":"USER_INFO_1","features":[93]},{"name":"USER_INFO_10","features":[93]},{"name":"USER_INFO_1003","features":[93]},{"name":"USER_INFO_1005","features":[93]},{"name":"USER_INFO_1006","features":[93]},{"name":"USER_INFO_1007","features":[93]},{"name":"USER_INFO_1008","features":[93]},{"name":"USER_INFO_1009","features":[93]},{"name":"USER_INFO_1010","features":[93]},{"name":"USER_INFO_1011","features":[93]},{"name":"USER_INFO_1012","features":[93]},{"name":"USER_INFO_1013","features":[93]},{"name":"USER_INFO_1014","features":[93]},{"name":"USER_INFO_1017","features":[93]},{"name":"USER_INFO_1018","features":[93]},{"name":"USER_INFO_1020","features":[93]},{"name":"USER_INFO_1023","features":[93]},{"name":"USER_INFO_1024","features":[93]},{"name":"USER_INFO_1025","features":[93]},{"name":"USER_INFO_1051","features":[93]},{"name":"USER_INFO_1052","features":[93]},{"name":"USER_INFO_1053","features":[93]},{"name":"USER_INFO_11","features":[93]},{"name":"USER_INFO_2","features":[93]},{"name":"USER_INFO_20","features":[93]},{"name":"USER_INFO_21","features":[93]},{"name":"USER_INFO_22","features":[93]},{"name":"USER_INFO_23","features":[1,93]},{"name":"USER_INFO_24","features":[1,93]},{"name":"USER_INFO_3","features":[93]},{"name":"USER_INFO_4","features":[1,93]},{"name":"USER_LAST_LOGOFF_PARMNUM","features":[93]},{"name":"USER_LAST_LOGON_PARMNUM","features":[93]},{"name":"USER_LOGON_HOURS_PARMNUM","features":[93]},{"name":"USER_LOGON_SERVER_PARMNUM","features":[93]},{"name":"USER_MAX_STORAGE_PARMNUM","features":[93]},{"name":"USER_MODALS_INFO_0","features":[93]},{"name":"USER_MODALS_INFO_1","features":[93]},{"name":"USER_MODALS_INFO_1001","features":[93]},{"name":"USER_MODALS_INFO_1002","features":[93]},{"name":"USER_MODALS_INFO_1003","features":[93]},{"name":"USER_MODALS_INFO_1004","features":[93]},{"name":"USER_MODALS_INFO_1005","features":[93]},{"name":"USER_MODALS_INFO_1006","features":[93]},{"name":"USER_MODALS_INFO_1007","features":[93]},{"name":"USER_MODALS_INFO_2","features":[1,93]},{"name":"USER_MODALS_INFO_3","features":[93]},{"name":"USER_MODALS_ROLES","features":[93]},{"name":"USER_NAME_PARMNUM","features":[93]},{"name":"USER_NUM_LOGONS_PARMNUM","features":[93]},{"name":"USER_OTHER_INFO","features":[93]},{"name":"USER_PAD_PW_COUNT_PARMNUM","features":[93]},{"name":"USER_PARMS_PARMNUM","features":[93]},{"name":"USER_PASSWORD_AGE_PARMNUM","features":[93]},{"name":"USER_PASSWORD_PARMNUM","features":[93]},{"name":"USER_PRIMARY_GROUP_PARMNUM","features":[93]},{"name":"USER_PRIV","features":[93]},{"name":"USER_PRIV_ADMIN","features":[93]},{"name":"USER_PRIV_GUEST","features":[93]},{"name":"USER_PRIV_MASK","features":[93]},{"name":"USER_PRIV_PARMNUM","features":[93]},{"name":"USER_PRIV_USER","features":[93]},{"name":"USER_PROFILE","features":[93]},{"name":"USER_PROFILE_PARMNUM","features":[93]},{"name":"USER_SCRIPT_PATH_PARMNUM","features":[93]},{"name":"USER_UNITS_PER_WEEK_PARMNUM","features":[93]},{"name":"USER_USR_COMMENT_PARMNUM","features":[93]},{"name":"USER_WORKSTATIONS_PARMNUM","features":[93]},{"name":"USE_ASGTYPE_PARMNUM","features":[93]},{"name":"USE_AUTHIDENTITY_PARMNUM","features":[93]},{"name":"USE_CHARDEV","features":[93]},{"name":"USE_CONN","features":[93]},{"name":"USE_DEFAULT_CREDENTIALS","features":[93]},{"name":"USE_DISCONN","features":[93]},{"name":"USE_DISKDEV","features":[93]},{"name":"USE_DOMAINNAME_PARMNUM","features":[93]},{"name":"USE_FLAGS_PARMNUM","features":[93]},{"name":"USE_FLAG_GLOBAL_MAPPING","features":[93]},{"name":"USE_FORCE","features":[93]},{"name":"USE_INFO_0","features":[93]},{"name":"USE_INFO_1","features":[93]},{"name":"USE_INFO_2","features":[93]},{"name":"USE_INFO_3","features":[93]},{"name":"USE_INFO_4","features":[93]},{"name":"USE_INFO_5","features":[93]},{"name":"USE_INFO_ASG_TYPE","features":[93]},{"name":"USE_IPC","features":[93]},{"name":"USE_LOCAL_PARMNUM","features":[93]},{"name":"USE_LOTS_OF_FORCE","features":[93]},{"name":"USE_NETERR","features":[93]},{"name":"USE_NOFORCE","features":[93]},{"name":"USE_OK","features":[93]},{"name":"USE_OPTIONS_PARMNUM","features":[93]},{"name":"USE_OPTION_DEFERRED_CONNECTION_PARAMETERS","features":[93]},{"name":"USE_OPTION_GENERIC","features":[93]},{"name":"USE_OPTION_PROPERTIES","features":[93]},{"name":"USE_OPTION_TRANSPORT_PARAMETERS","features":[93]},{"name":"USE_PASSWORD_PARMNUM","features":[93]},{"name":"USE_PAUSED","features":[93]},{"name":"USE_RECONN","features":[93]},{"name":"USE_REMOTE_PARMNUM","features":[93]},{"name":"USE_SD_PARMNUM","features":[93]},{"name":"USE_SESSLOST","features":[93]},{"name":"USE_SPECIFIC_TRANSPORT","features":[93]},{"name":"USE_SPOOLDEV","features":[93]},{"name":"USE_USERNAME_PARMNUM","features":[93]},{"name":"USE_WILDCARD","features":[93]},{"name":"UseTransportType_None","features":[93]},{"name":"UseTransportType_Quic","features":[93]},{"name":"UseTransportType_Wsk","features":[93]},{"name":"VALIDATED_LOGON","features":[93]},{"name":"VALID_LOGOFF","features":[93]},{"name":"WKSTA_BUFFERNAMEDPIPES_PARMNUM","features":[93]},{"name":"WKSTA_BUFFERREADONLYFILES_PARMNUM","features":[93]},{"name":"WKSTA_BUFFILESWITHDENYWRITE_PARMNUM","features":[93]},{"name":"WKSTA_CACHEFILETIMEOUT_PARMNUM","features":[93]},{"name":"WKSTA_CHARCOUNT_PARMNUM","features":[93]},{"name":"WKSTA_CHARTIME_PARMNUM","features":[93]},{"name":"WKSTA_CHARWAIT_PARMNUM","features":[93]},{"name":"WKSTA_COMPUTERNAME_PARMNUM","features":[93]},{"name":"WKSTA_DORMANTFILELIMIT_PARMNUM","features":[93]},{"name":"WKSTA_ERRLOGSZ_PARMNUM","features":[93]},{"name":"WKSTA_FORCECORECREATEMODE_PARMNUM","features":[93]},{"name":"WKSTA_INFO_100","features":[93]},{"name":"WKSTA_INFO_101","features":[93]},{"name":"WKSTA_INFO_1010","features":[93]},{"name":"WKSTA_INFO_1011","features":[93]},{"name":"WKSTA_INFO_1012","features":[93]},{"name":"WKSTA_INFO_1013","features":[93]},{"name":"WKSTA_INFO_1018","features":[93]},{"name":"WKSTA_INFO_102","features":[93]},{"name":"WKSTA_INFO_1023","features":[93]},{"name":"WKSTA_INFO_1027","features":[93]},{"name":"WKSTA_INFO_1028","features":[93]},{"name":"WKSTA_INFO_1032","features":[93]},{"name":"WKSTA_INFO_1033","features":[93]},{"name":"WKSTA_INFO_1041","features":[93]},{"name":"WKSTA_INFO_1042","features":[93]},{"name":"WKSTA_INFO_1043","features":[93]},{"name":"WKSTA_INFO_1044","features":[93]},{"name":"WKSTA_INFO_1045","features":[93]},{"name":"WKSTA_INFO_1046","features":[93]},{"name":"WKSTA_INFO_1047","features":[93]},{"name":"WKSTA_INFO_1048","features":[1,93]},{"name":"WKSTA_INFO_1049","features":[1,93]},{"name":"WKSTA_INFO_1050","features":[1,93]},{"name":"WKSTA_INFO_1051","features":[1,93]},{"name":"WKSTA_INFO_1052","features":[1,93]},{"name":"WKSTA_INFO_1053","features":[1,93]},{"name":"WKSTA_INFO_1054","features":[1,93]},{"name":"WKSTA_INFO_1055","features":[1,93]},{"name":"WKSTA_INFO_1056","features":[1,93]},{"name":"WKSTA_INFO_1057","features":[1,93]},{"name":"WKSTA_INFO_1058","features":[1,93]},{"name":"WKSTA_INFO_1059","features":[1,93]},{"name":"WKSTA_INFO_1060","features":[1,93]},{"name":"WKSTA_INFO_1061","features":[1,93]},{"name":"WKSTA_INFO_1062","features":[93]},{"name":"WKSTA_INFO_302","features":[93]},{"name":"WKSTA_INFO_402","features":[93]},{"name":"WKSTA_INFO_502","features":[1,93]},{"name":"WKSTA_KEEPCONN_PARMNUM","features":[93]},{"name":"WKSTA_KEEPSEARCH_PARMNUM","features":[93]},{"name":"WKSTA_LANGROUP_PARMNUM","features":[93]},{"name":"WKSTA_LANROOT_PARMNUM","features":[93]},{"name":"WKSTA_LOCKINCREMENT_PARMNUM","features":[93]},{"name":"WKSTA_LOCKMAXIMUM_PARMNUM","features":[93]},{"name":"WKSTA_LOCKQUOTA_PARMNUM","features":[93]},{"name":"WKSTA_LOGGED_ON_USERS_PARMNUM","features":[93]},{"name":"WKSTA_LOGON_DOMAIN_PARMNUM","features":[93]},{"name":"WKSTA_LOGON_SERVER_PARMNUM","features":[93]},{"name":"WKSTA_MAILSLOTS_PARMNUM","features":[93]},{"name":"WKSTA_MAXCMDS_PARMNUM","features":[93]},{"name":"WKSTA_MAXTHREADS_PARMNUM","features":[93]},{"name":"WKSTA_MAXWRKCACHE_PARMNUM","features":[93]},{"name":"WKSTA_NUMALERTS_PARMNUM","features":[93]},{"name":"WKSTA_NUMCHARBUF_PARMNUM","features":[93]},{"name":"WKSTA_NUMDGRAMBUF_PARMNUM","features":[93]},{"name":"WKSTA_NUMSERVICES_PARMNUM","features":[93]},{"name":"WKSTA_NUMWORKBUF_PARMNUM","features":[93]},{"name":"WKSTA_OTH_DOMAINS_PARMNUM","features":[93]},{"name":"WKSTA_PIPEINCREMENT_PARMNUM","features":[93]},{"name":"WKSTA_PIPEMAXIMUM_PARMNUM","features":[93]},{"name":"WKSTA_PLATFORM_ID_PARMNUM","features":[93]},{"name":"WKSTA_PRINTBUFTIME_PARMNUM","features":[93]},{"name":"WKSTA_READAHEADTHRUPUT_PARMNUM","features":[93]},{"name":"WKSTA_SESSTIMEOUT_PARMNUM","features":[93]},{"name":"WKSTA_SIZCHARBUF_PARMNUM","features":[93]},{"name":"WKSTA_SIZERROR_PARMNUM","features":[93]},{"name":"WKSTA_SIZWORKBUF_PARMNUM","features":[93]},{"name":"WKSTA_TRANSPORT_INFO_0","features":[1,93]},{"name":"WKSTA_USE512BYTESMAXTRANSFER_PARMNUM","features":[93]},{"name":"WKSTA_USECLOSEBEHIND_PARMNUM","features":[93]},{"name":"WKSTA_USEENCRYPTION_PARMNUM","features":[93]},{"name":"WKSTA_USELOCKANDREADANDUNLOCK_PARMNUM","features":[93]},{"name":"WKSTA_USEOPPORTUNISTICLOCKING_PARMNUM","features":[93]},{"name":"WKSTA_USERAWREAD_PARMNUM","features":[93]},{"name":"WKSTA_USERAWWRITE_PARMNUM","features":[93]},{"name":"WKSTA_USER_INFO_0","features":[93]},{"name":"WKSTA_USER_INFO_1","features":[93]},{"name":"WKSTA_USER_INFO_1101","features":[93]},{"name":"WKSTA_USEUNLOCKBEHIND_PARMNUM","features":[93]},{"name":"WKSTA_USEWRITERAWWITHDATA_PARMNUM","features":[93]},{"name":"WKSTA_UTILIZENTCACHING_PARMNUM","features":[93]},{"name":"WKSTA_VER_MAJOR_PARMNUM","features":[93]},{"name":"WKSTA_VER_MINOR_PARMNUM","features":[93]},{"name":"WKSTA_WRKHEURISTICS_PARMNUM","features":[93]},{"name":"WORKERFUNCTION","features":[93]},{"name":"WORKSTATION_DISPLAY_NAME","features":[93]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_SCHEMA","features":[93]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_XML","features":[93]},{"name":"WZC_PROFILE_API_ERROR_INTERNAL","features":[93]},{"name":"WZC_PROFILE_API_ERROR_NOT_SUPPORTED","features":[93]},{"name":"WZC_PROFILE_API_ERROR_XML_VALIDATION_FAILED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED_KEY_REQUIRED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ENABLED_KEY_PROVIDED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_NOT_APPLICABLE","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_REQUIRED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_AUTH_FOR_CONNECTION_TYPE","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_ENCRYPTION_FOR_AUTHMODE","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_NOT_APPLICABLE","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_REQUIRED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_REQUIRED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_ENCRYPTION_NOT_SUPPORTED","features":[93]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_NOT_SUPPORTED","features":[93]},{"name":"WZC_PROFILE_SET_ERROR_DUPLICATE_NETWORK","features":[93]},{"name":"WZC_PROFILE_SET_ERROR_MEMORY_ALLOCATION","features":[93]},{"name":"WZC_PROFILE_SET_ERROR_READING_1X_CONFIG","features":[93]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_1X_CONFIG","features":[93]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_WZC_CFG","features":[93]},{"name":"WZC_PROFILE_SUCCESS","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_1X_ENABLED","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_AUTHENTICATION","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_BAD_KEY_INDEX","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_BAD_NETWORK_KEY","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_BAD_SSID","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_BAD_VERSION","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_CONNECTION_TYPE","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_EAP_METHOD","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_ENCRYPTION","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_KEY_INDEX_RANGE","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_KEY_PROVIDED_AUTOMATICALLY","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_NO_VERSION","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_SSID_NOT_FOUND","features":[93]},{"name":"WZC_PROFILE_XML_ERROR_UNSUPPORTED_VERSION","features":[93]}],"452":[{"name":"CMD_ENTRY","features":[1,94]},{"name":"CMD_FLAG_HIDDEN","features":[94]},{"name":"CMD_FLAG_INTERACTIVE","features":[94]},{"name":"CMD_FLAG_LIMIT_MASK","features":[94]},{"name":"CMD_FLAG_LOCAL","features":[94]},{"name":"CMD_FLAG_ONLINE","features":[94]},{"name":"CMD_FLAG_PRIORITY","features":[94]},{"name":"CMD_FLAG_PRIVATE","features":[94]},{"name":"CMD_GROUP_ENTRY","features":[1,94]},{"name":"DEFAULT_CONTEXT_PRIORITY","features":[94]},{"name":"ERROR_CMD_NOT_FOUND","features":[94]},{"name":"ERROR_CONTEXT_ALREADY_REGISTERED","features":[94]},{"name":"ERROR_CONTINUE_IN_PARENT_CONTEXT","features":[94]},{"name":"ERROR_DLL_LOAD_FAILED","features":[94]},{"name":"ERROR_ENTRY_PT_NOT_FOUND","features":[94]},{"name":"ERROR_HELPER_ALREADY_REGISTERED","features":[94]},{"name":"ERROR_INIT_DISPLAY","features":[94]},{"name":"ERROR_INVALID_OPTION_TAG","features":[94]},{"name":"ERROR_INVALID_OPTION_VALUE","features":[94]},{"name":"ERROR_INVALID_SYNTAX","features":[94]},{"name":"ERROR_MISSING_OPTION","features":[94]},{"name":"ERROR_NO_CHANGE","features":[94]},{"name":"ERROR_NO_ENTRIES","features":[94]},{"name":"ERROR_NO_TAG","features":[94]},{"name":"ERROR_OKAY","features":[94]},{"name":"ERROR_PARSING_FAILURE","features":[94]},{"name":"ERROR_PROTOCOL_NOT_IN_TRANSPORT","features":[94]},{"name":"ERROR_SHOW_USAGE","features":[94]},{"name":"ERROR_SUPPRESS_OUTPUT","features":[94]},{"name":"ERROR_TAG_ALREADY_PRESENT","features":[94]},{"name":"ERROR_TRANSPORT_NOT_PRESENT","features":[94]},{"name":"GET_RESOURCE_STRING_FN_NAME","features":[94]},{"name":"MAX_NAME_LEN","features":[94]},{"name":"MatchEnumTag","features":[1,94]},{"name":"MatchToken","features":[1,94]},{"name":"NETSH_ARG_DELIMITER","features":[94]},{"name":"NETSH_CMD_DELIMITER","features":[94]},{"name":"NETSH_COMMIT","features":[94]},{"name":"NETSH_COMMIT_STATE","features":[94]},{"name":"NETSH_ERROR_BASE","features":[94]},{"name":"NETSH_ERROR_END","features":[94]},{"name":"NETSH_FLUSH","features":[94]},{"name":"NETSH_MAX_CMD_TOKEN_LENGTH","features":[94]},{"name":"NETSH_MAX_TOKEN_LENGTH","features":[94]},{"name":"NETSH_SAVE","features":[94]},{"name":"NETSH_UNCOMMIT","features":[94]},{"name":"NETSH_VERSION_50","features":[94]},{"name":"NS_CMD_FLAGS","features":[94]},{"name":"NS_CONTEXT_ATTRIBUTES","features":[1,94]},{"name":"NS_EVENTS","features":[94]},{"name":"NS_EVENT_FROM_N","features":[94]},{"name":"NS_EVENT_FROM_START","features":[94]},{"name":"NS_EVENT_LAST_N","features":[94]},{"name":"NS_EVENT_LAST_SECS","features":[94]},{"name":"NS_EVENT_LOOP","features":[94]},{"name":"NS_GET_EVENT_IDS_FN_NAME","features":[94]},{"name":"NS_HELPER_ATTRIBUTES","features":[94]},{"name":"NS_MODE_CHANGE","features":[94]},{"name":"NS_REQS","features":[94]},{"name":"NS_REQ_ALLOW_MULTIPLE","features":[94]},{"name":"NS_REQ_ONE_OR_MORE","features":[94]},{"name":"NS_REQ_PRESENT","features":[94]},{"name":"NS_REQ_ZERO","features":[94]},{"name":"PFN_CUSTOM_HELP","features":[1,94]},{"name":"PFN_HANDLE_CMD","features":[1,94]},{"name":"PGET_RESOURCE_STRING_FN","features":[94]},{"name":"PNS_CONTEXT_COMMIT_FN","features":[94]},{"name":"PNS_CONTEXT_CONNECT_FN","features":[94]},{"name":"PNS_CONTEXT_DUMP_FN","features":[94]},{"name":"PNS_DLL_INIT_FN","features":[94]},{"name":"PNS_DLL_STOP_FN","features":[94]},{"name":"PNS_HELPER_START_FN","features":[94]},{"name":"PNS_HELPER_STOP_FN","features":[94]},{"name":"PNS_OSVERSIONCHECK","features":[1,94]},{"name":"PreprocessCommand","features":[1,94]},{"name":"PrintError","features":[1,94]},{"name":"PrintMessage","features":[94]},{"name":"PrintMessageFromModule","features":[1,94]},{"name":"RegisterContext","features":[1,94]},{"name":"RegisterHelper","features":[94]},{"name":"TAG_TYPE","features":[1,94]},{"name":"TOKEN_VALUE","features":[94]}],"453":[{"name":"ATTRIBUTE_TYPE","features":[95]},{"name":"AT_BOOLEAN","features":[95]},{"name":"AT_GUID","features":[95]},{"name":"AT_INT16","features":[95]},{"name":"AT_INT32","features":[95]},{"name":"AT_INT64","features":[95]},{"name":"AT_INT8","features":[95]},{"name":"AT_INVALID","features":[95]},{"name":"AT_LIFE_TIME","features":[95]},{"name":"AT_OCTET_STRING","features":[95]},{"name":"AT_SOCKADDR","features":[95]},{"name":"AT_STRING","features":[95]},{"name":"AT_UINT16","features":[95]},{"name":"AT_UINT32","features":[95]},{"name":"AT_UINT64","features":[95]},{"name":"AT_UINT8","features":[95]},{"name":"DF_IMPERSONATION","features":[95]},{"name":"DF_TRACELESS","features":[95]},{"name":"DIAGNOSIS_STATUS","features":[95]},{"name":"DIAG_SOCKADDR","features":[95]},{"name":"DS_CONFIRMED","features":[95]},{"name":"DS_DEFERRED","features":[95]},{"name":"DS_INDETERMINATE","features":[95]},{"name":"DS_NOT_IMPLEMENTED","features":[95]},{"name":"DS_PASSTHROUGH","features":[95]},{"name":"DS_REJECTED","features":[95]},{"name":"DiagnosticsInfo","features":[95]},{"name":"HELPER_ATTRIBUTE","features":[1,95]},{"name":"HYPOTHESIS","features":[1,95]},{"name":"HelperAttributeInfo","features":[95]},{"name":"HypothesisResult","features":[1,95]},{"name":"INetDiagExtensibleHelper","features":[95]},{"name":"INetDiagHelper","features":[95]},{"name":"INetDiagHelperEx","features":[95]},{"name":"INetDiagHelperInfo","features":[95]},{"name":"INetDiagHelperUtilFactory","features":[95]},{"name":"LIFE_TIME","features":[1,95]},{"name":"NDF_ADD_CAPTURE_TRACE","features":[95]},{"name":"NDF_APPLY_INCLUSION_LIST_FILTER","features":[95]},{"name":"NDF_ERROR_START","features":[95]},{"name":"NDF_E_BAD_PARAM","features":[95]},{"name":"NDF_E_CANCELLED","features":[95]},{"name":"NDF_E_DISABLED","features":[95]},{"name":"NDF_E_LENGTH_EXCEEDED","features":[95]},{"name":"NDF_E_NOHELPERCLASS","features":[95]},{"name":"NDF_E_PROBLEM_PRESENT","features":[95]},{"name":"NDF_E_UNKNOWN","features":[95]},{"name":"NDF_E_VALIDATION","features":[95]},{"name":"NDF_INBOUND_FLAG_EDGETRAVERSAL","features":[95]},{"name":"NDF_INBOUND_FLAG_HEALTHCHECK","features":[95]},{"name":"NdfCancelIncident","features":[95]},{"name":"NdfCloseIncident","features":[95]},{"name":"NdfCreateConnectivityIncident","features":[95]},{"name":"NdfCreateDNSIncident","features":[95]},{"name":"NdfCreateGroupingIncident","features":[95,15]},{"name":"NdfCreateIncident","features":[1,95]},{"name":"NdfCreateNetConnectionIncident","features":[95]},{"name":"NdfCreatePnrpIncident","features":[1,95]},{"name":"NdfCreateSharingIncident","features":[95]},{"name":"NdfCreateWebIncident","features":[95]},{"name":"NdfCreateWebIncidentEx","features":[1,95]},{"name":"NdfCreateWinSockIncident","features":[95,15,4]},{"name":"NdfDiagnoseIncident","features":[95]},{"name":"NdfExecuteDiagnosis","features":[1,95]},{"name":"NdfGetTraceFile","features":[95]},{"name":"NdfRepairIncident","features":[95]},{"name":"OCTET_STRING","features":[95]},{"name":"PROBLEM_TYPE","features":[95]},{"name":"PT_DOWN_STREAM_HEALTH","features":[95]},{"name":"PT_HIGHER_UTILIZATION","features":[95]},{"name":"PT_HIGH_UTILIZATION","features":[95]},{"name":"PT_INVALID","features":[95]},{"name":"PT_LOWER_HEALTH","features":[95]},{"name":"PT_LOW_HEALTH","features":[95]},{"name":"PT_UP_STREAM_UTILIZATION","features":[95]},{"name":"RCF_ISCONFIRMED","features":[95]},{"name":"RCF_ISLEAF","features":[95]},{"name":"RCF_ISTHIRDPARTY","features":[95]},{"name":"REPAIR_RISK","features":[95]},{"name":"REPAIR_SCOPE","features":[95]},{"name":"REPAIR_STATUS","features":[95]},{"name":"RF_CONTACT_ADMIN","features":[95]},{"name":"RF_INFORMATION_ONLY","features":[95]},{"name":"RF_REPRO","features":[95]},{"name":"RF_RESERVED","features":[95]},{"name":"RF_RESERVED_CA","features":[95]},{"name":"RF_RESERVED_LNI","features":[95]},{"name":"RF_SHOW_EVENTS","features":[95]},{"name":"RF_UI_ONLY","features":[95]},{"name":"RF_USER_ACTION","features":[95]},{"name":"RF_USER_CONFIRMATION","features":[95]},{"name":"RF_VALIDATE_HELPTOPIC","features":[95]},{"name":"RF_WORKAROUND","features":[95]},{"name":"RR_NORISK","features":[95]},{"name":"RR_NOROLLBACK","features":[95]},{"name":"RR_ROLLBACK","features":[95]},{"name":"RS_APPLICATION","features":[95]},{"name":"RS_DEFERRED","features":[95]},{"name":"RS_NOT_IMPLEMENTED","features":[95]},{"name":"RS_PROCESS","features":[95]},{"name":"RS_REPAIRED","features":[95]},{"name":"RS_SYSTEM","features":[95]},{"name":"RS_UNREPAIRED","features":[95]},{"name":"RS_USER","features":[95]},{"name":"RS_USER_ACTION","features":[95]},{"name":"RepairInfo","features":[95]},{"name":"RepairInfoEx","features":[95]},{"name":"RootCauseInfo","features":[95]},{"name":"ShellCommandInfo","features":[95]},{"name":"UIT_DUI","features":[95]},{"name":"UIT_HELP_PANE","features":[95]},{"name":"UIT_INVALID","features":[95]},{"name":"UIT_NONE","features":[95]},{"name":"UIT_SHELL_COMMAND","features":[95]},{"name":"UI_INFO_TYPE","features":[95]},{"name":"UiInfo","features":[95]}],"455":[{"name":"DRT_ACTIVE","features":[96]},{"name":"DRT_ADDRESS","features":[96,15]},{"name":"DRT_ADDRESS_FLAGS","features":[96]},{"name":"DRT_ADDRESS_FLAG_ACCEPTED","features":[96]},{"name":"DRT_ADDRESS_FLAG_BAD_VALIDATE_ID","features":[96]},{"name":"DRT_ADDRESS_FLAG_INQUIRE","features":[96]},{"name":"DRT_ADDRESS_FLAG_LOOP","features":[96]},{"name":"DRT_ADDRESS_FLAG_REJECTED","features":[96]},{"name":"DRT_ADDRESS_FLAG_SUSPECT_UNREGISTERED_ID","features":[96]},{"name":"DRT_ADDRESS_FLAG_TOO_BUSY","features":[96]},{"name":"DRT_ADDRESS_FLAG_UNREACHABLE","features":[96]},{"name":"DRT_ADDRESS_LIST","features":[96,15]},{"name":"DRT_ALONE","features":[96]},{"name":"DRT_BOOTSTRAP_PROVIDER","features":[96]},{"name":"DRT_BOOTSTRAP_RESOLVE_CALLBACK","features":[1,96,15]},{"name":"DRT_DATA","features":[96]},{"name":"DRT_EVENT_DATA","features":[96,15]},{"name":"DRT_EVENT_LEAFSET_KEY_CHANGED","features":[96]},{"name":"DRT_EVENT_REGISTRATION_STATE_CHANGED","features":[96]},{"name":"DRT_EVENT_STATUS_CHANGED","features":[96]},{"name":"DRT_EVENT_TYPE","features":[96]},{"name":"DRT_E_BOOTSTRAPPROVIDER_IN_USE","features":[96]},{"name":"DRT_E_BOOTSTRAPPROVIDER_NOT_ATTACHED","features":[96]},{"name":"DRT_E_CAPABILITY_MISMATCH","features":[96]},{"name":"DRT_E_DUPLICATE_KEY","features":[96]},{"name":"DRT_E_FAULTED","features":[96]},{"name":"DRT_E_INSUFFICIENT_BUFFER","features":[96]},{"name":"DRT_E_INVALID_ADDRESS","features":[96]},{"name":"DRT_E_INVALID_BOOTSTRAP_PROVIDER","features":[96]},{"name":"DRT_E_INVALID_CERT_CHAIN","features":[96]},{"name":"DRT_E_INVALID_INSTANCE_PREFIX","features":[96]},{"name":"DRT_E_INVALID_KEY","features":[96]},{"name":"DRT_E_INVALID_KEY_SIZE","features":[96]},{"name":"DRT_E_INVALID_MAX_ADDRESSES","features":[96]},{"name":"DRT_E_INVALID_MAX_ENDPOINTS","features":[96]},{"name":"DRT_E_INVALID_MESSAGE","features":[96]},{"name":"DRT_E_INVALID_PORT","features":[96]},{"name":"DRT_E_INVALID_SCOPE","features":[96]},{"name":"DRT_E_INVALID_SEARCH_INFO","features":[96]},{"name":"DRT_E_INVALID_SEARCH_RANGE","features":[96]},{"name":"DRT_E_INVALID_SECURITY_MODE","features":[96]},{"name":"DRT_E_INVALID_SECURITY_PROVIDER","features":[96]},{"name":"DRT_E_INVALID_SETTINGS","features":[96]},{"name":"DRT_E_INVALID_TRANSPORT_PROVIDER","features":[96]},{"name":"DRT_E_NO_ADDRESSES_AVAILABLE","features":[96]},{"name":"DRT_E_NO_MORE","features":[96]},{"name":"DRT_E_SEARCH_IN_PROGRESS","features":[96]},{"name":"DRT_E_SECURITYPROVIDER_IN_USE","features":[96]},{"name":"DRT_E_SECURITYPROVIDER_NOT_ATTACHED","features":[96]},{"name":"DRT_E_STILL_IN_USE","features":[96]},{"name":"DRT_E_TIMEOUT","features":[96]},{"name":"DRT_E_TRANSPORTPROVIDER_IN_USE","features":[96]},{"name":"DRT_E_TRANSPORTPROVIDER_NOT_ATTACHED","features":[96]},{"name":"DRT_E_TRANSPORT_ALREADY_BOUND","features":[96]},{"name":"DRT_E_TRANSPORT_ALREADY_EXISTS_FOR_SCOPE","features":[96]},{"name":"DRT_E_TRANSPORT_EXECUTING_CALLBACK","features":[96]},{"name":"DRT_E_TRANSPORT_INVALID_ARGUMENT","features":[96]},{"name":"DRT_E_TRANSPORT_NOT_BOUND","features":[96]},{"name":"DRT_E_TRANSPORT_NO_DEST_ADDRESSES","features":[96]},{"name":"DRT_E_TRANSPORT_SHUTTING_DOWN","features":[96]},{"name":"DRT_E_TRANSPORT_STILL_BOUND","features":[96]},{"name":"DRT_E_TRANSPORT_UNEXPECTED","features":[96]},{"name":"DRT_FAULTED","features":[96]},{"name":"DRT_GLOBAL_SCOPE","features":[96]},{"name":"DRT_LEAFSET_KEY_ADDED","features":[96]},{"name":"DRT_LEAFSET_KEY_CHANGE_TYPE","features":[96]},{"name":"DRT_LEAFSET_KEY_DELETED","features":[96]},{"name":"DRT_LINK_LOCAL_ISATAP_SCOPEID","features":[96]},{"name":"DRT_LINK_LOCAL_SCOPE","features":[96]},{"name":"DRT_MATCH_EXACT","features":[96]},{"name":"DRT_MATCH_INTERMEDIATE","features":[96]},{"name":"DRT_MATCH_NEAR","features":[96]},{"name":"DRT_MATCH_TYPE","features":[96]},{"name":"DRT_MAX_INSTANCE_PREFIX_LEN","features":[96]},{"name":"DRT_MAX_PAYLOAD_SIZE","features":[96]},{"name":"DRT_MAX_ROUTING_ADDRESSES","features":[96]},{"name":"DRT_MIN_ROUTING_ADDRESSES","features":[96]},{"name":"DRT_NO_NETWORK","features":[96]},{"name":"DRT_PAYLOAD_REVOKED","features":[96]},{"name":"DRT_REGISTRATION","features":[96]},{"name":"DRT_REGISTRATION_STATE","features":[96]},{"name":"DRT_REGISTRATION_STATE_UNRESOLVEABLE","features":[96]},{"name":"DRT_SCOPE","features":[96]},{"name":"DRT_SEARCH_INFO","features":[1,96]},{"name":"DRT_SEARCH_RESULT","features":[96]},{"name":"DRT_SECURE_CONFIDENTIALPAYLOAD","features":[96]},{"name":"DRT_SECURE_MEMBERSHIP","features":[96]},{"name":"DRT_SECURE_RESOLVE","features":[96]},{"name":"DRT_SECURITY_MODE","features":[96]},{"name":"DRT_SECURITY_PROVIDER","features":[96]},{"name":"DRT_SETTINGS","features":[96]},{"name":"DRT_SITE_LOCAL_SCOPE","features":[96]},{"name":"DRT_STATUS","features":[96]},{"name":"DRT_S_RETRY","features":[96]},{"name":"DrtClose","features":[96]},{"name":"DrtContinueSearch","features":[96]},{"name":"DrtCreateDerivedKey","features":[1,96,68]},{"name":"DrtCreateDerivedKeySecurityProvider","features":[1,96,68]},{"name":"DrtCreateDnsBootstrapResolver","features":[96]},{"name":"DrtCreateIpv6UdpTransport","features":[96]},{"name":"DrtCreateNullSecurityProvider","features":[96]},{"name":"DrtCreatePnrpBootstrapResolver","features":[1,96]},{"name":"DrtDeleteDerivedKeySecurityProvider","features":[96]},{"name":"DrtDeleteDnsBootstrapResolver","features":[96]},{"name":"DrtDeleteIpv6UdpTransport","features":[96]},{"name":"DrtDeleteNullSecurityProvider","features":[96]},{"name":"DrtDeletePnrpBootstrapResolver","features":[96]},{"name":"DrtEndSearch","features":[96]},{"name":"DrtGetEventData","features":[96,15]},{"name":"DrtGetEventDataSize","features":[96]},{"name":"DrtGetInstanceName","features":[96]},{"name":"DrtGetInstanceNameSize","features":[96]},{"name":"DrtGetSearchPath","features":[96,15]},{"name":"DrtGetSearchPathSize","features":[96]},{"name":"DrtGetSearchResult","features":[96]},{"name":"DrtGetSearchResultSize","features":[96]},{"name":"DrtOpen","features":[1,96]},{"name":"DrtRegisterKey","features":[96]},{"name":"DrtStartSearch","features":[1,96]},{"name":"DrtUnregisterKey","features":[96]},{"name":"DrtUpdateKey","features":[96]},{"name":"FACILITY_DRT","features":[96]},{"name":"MaximumPeerDistClientInfoByHandlesClass","features":[96]},{"name":"NS_PNRPCLOUD","features":[96]},{"name":"NS_PNRPNAME","features":[96]},{"name":"NS_PROVIDER_PNRPCLOUD","features":[96]},{"name":"NS_PROVIDER_PNRPNAME","features":[96]},{"name":"PEERDIST_CLIENT_BASIC_INFO","features":[1,96]},{"name":"PEERDIST_CLIENT_INFO_BY_HANDLE_CLASS","features":[96]},{"name":"PEERDIST_CONTENT_TAG","features":[96]},{"name":"PEERDIST_PUBLICATION_OPTIONS","features":[96]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION","features":[96]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_1","features":[96]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_2","features":[96]},{"name":"PEERDIST_READ_TIMEOUT_DEFAULT","features":[96]},{"name":"PEERDIST_READ_TIMEOUT_LOCAL_CACHE_ONLY","features":[96]},{"name":"PEERDIST_RETRIEVAL_OPTIONS","features":[96]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION","features":[96]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_1","features":[96]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_2","features":[96]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_VALUE","features":[96]},{"name":"PEERDIST_STATUS","features":[96]},{"name":"PEERDIST_STATUS_AVAILABLE","features":[96]},{"name":"PEERDIST_STATUS_DISABLED","features":[96]},{"name":"PEERDIST_STATUS_INFO","features":[96]},{"name":"PEERDIST_STATUS_UNAVAILABLE","features":[96]},{"name":"PEER_ADDRESS","features":[96,15]},{"name":"PEER_APPLICATION","features":[96]},{"name":"PEER_APPLICATION_ALL_USERS","features":[96]},{"name":"PEER_APPLICATION_CURRENT_USER","features":[96]},{"name":"PEER_APPLICATION_REGISTRATION_INFO","features":[96]},{"name":"PEER_APPLICATION_REGISTRATION_TYPE","features":[96]},{"name":"PEER_APP_LAUNCH_INFO","features":[1,96,15]},{"name":"PEER_CHANGE_ADDED","features":[96]},{"name":"PEER_CHANGE_DELETED","features":[96]},{"name":"PEER_CHANGE_TYPE","features":[96]},{"name":"PEER_CHANGE_UPDATED","features":[96]},{"name":"PEER_COLLAB_EVENT_DATA","features":[1,96,15]},{"name":"PEER_COLLAB_EVENT_REGISTRATION","features":[96]},{"name":"PEER_COLLAB_EVENT_TYPE","features":[96]},{"name":"PEER_COLLAB_OBJECTID_USER_PICTURE","features":[96]},{"name":"PEER_CONNECTED","features":[96]},{"name":"PEER_CONNECTION_DIRECT","features":[96]},{"name":"PEER_CONNECTION_FAILED","features":[96]},{"name":"PEER_CONNECTION_FLAGS","features":[96]},{"name":"PEER_CONNECTION_INFO","features":[96,15]},{"name":"PEER_CONNECTION_NEIGHBOR","features":[96]},{"name":"PEER_CONNECTION_STATUS","features":[96]},{"name":"PEER_CONTACT","features":[1,96]},{"name":"PEER_CREDENTIAL_INFO","features":[1,96,68]},{"name":"PEER_DATA","features":[96]},{"name":"PEER_DEFER_EXPIRATION","features":[96]},{"name":"PEER_DISABLE_PRESENCE","features":[96]},{"name":"PEER_DISCONNECTED","features":[96]},{"name":"PEER_ENDPOINT","features":[96,15]},{"name":"PEER_EVENT_APPLICATION_CHANGED_DATA","features":[1,96,15]},{"name":"PEER_EVENT_CONNECTION_CHANGE_DATA","features":[96]},{"name":"PEER_EVENT_ENDPOINT_APPLICATION_CHANGED","features":[96]},{"name":"PEER_EVENT_ENDPOINT_CHANGED","features":[96]},{"name":"PEER_EVENT_ENDPOINT_CHANGED_DATA","features":[1,96,15]},{"name":"PEER_EVENT_ENDPOINT_OBJECT_CHANGED","features":[96]},{"name":"PEER_EVENT_ENDPOINT_PRESENCE_CHANGED","features":[96]},{"name":"PEER_EVENT_INCOMING_DATA","features":[96]},{"name":"PEER_EVENT_MEMBER_CHANGE_DATA","features":[96]},{"name":"PEER_EVENT_MY_APPLICATION_CHANGED","features":[96]},{"name":"PEER_EVENT_MY_ENDPOINT_CHANGED","features":[96]},{"name":"PEER_EVENT_MY_OBJECT_CHANGED","features":[96]},{"name":"PEER_EVENT_MY_PRESENCE_CHANGED","features":[96]},{"name":"PEER_EVENT_NODE_CHANGE_DATA","features":[96]},{"name":"PEER_EVENT_OBJECT_CHANGED_DATA","features":[1,96,15]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED","features":[96]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED_DATA","features":[96,15]},{"name":"PEER_EVENT_PRESENCE_CHANGED_DATA","features":[1,96,15]},{"name":"PEER_EVENT_RECORD_CHANGE_DATA","features":[96]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED","features":[96]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED_DATA","features":[96,15]},{"name":"PEER_EVENT_SYNCHRONIZED_DATA","features":[96]},{"name":"PEER_EVENT_WATCHLIST_CHANGED","features":[96]},{"name":"PEER_EVENT_WATCHLIST_CHANGED_DATA","features":[1,96]},{"name":"PEER_E_ALREADY_EXISTS","features":[96]},{"name":"PEER_E_CLIENT_INVALID_COMPARTMENT_ID","features":[96]},{"name":"PEER_E_CLOUD_DISABLED","features":[96]},{"name":"PEER_E_CLOUD_IS_DEAD","features":[96]},{"name":"PEER_E_CLOUD_IS_SEARCH_ONLY","features":[96]},{"name":"PEER_E_CLOUD_NOT_FOUND","features":[96]},{"name":"PEER_E_DISK_FULL","features":[96]},{"name":"PEER_E_DUPLICATE_PEER_NAME","features":[96]},{"name":"PEER_E_INVALID_IDENTITY","features":[96]},{"name":"PEER_E_NOT_FOUND","features":[96]},{"name":"PEER_E_TOO_MUCH_LOAD","features":[96]},{"name":"PEER_GRAPH_EVENT_CONNECTION_REQUIRED","features":[96]},{"name":"PEER_GRAPH_EVENT_DATA","features":[96]},{"name":"PEER_GRAPH_EVENT_DIRECT_CONNECTION","features":[96]},{"name":"PEER_GRAPH_EVENT_INCOMING_DATA","features":[96]},{"name":"PEER_GRAPH_EVENT_NEIGHBOR_CONNECTION","features":[96]},{"name":"PEER_GRAPH_EVENT_NODE_CHANGED","features":[96]},{"name":"PEER_GRAPH_EVENT_PROPERTY_CHANGED","features":[96]},{"name":"PEER_GRAPH_EVENT_RECORD_CHANGED","features":[96]},{"name":"PEER_GRAPH_EVENT_REGISTRATION","features":[96]},{"name":"PEER_GRAPH_EVENT_STATUS_CHANGED","features":[96]},{"name":"PEER_GRAPH_EVENT_SYNCHRONIZED","features":[96]},{"name":"PEER_GRAPH_EVENT_TYPE","features":[96]},{"name":"PEER_GRAPH_PROPERTIES","features":[96]},{"name":"PEER_GRAPH_PROPERTY_DEFER_EXPIRATION","features":[96]},{"name":"PEER_GRAPH_PROPERTY_FLAGS","features":[96]},{"name":"PEER_GRAPH_PROPERTY_HEARTBEATS","features":[96]},{"name":"PEER_GRAPH_SCOPE","features":[96]},{"name":"PEER_GRAPH_SCOPE_ANY","features":[96]},{"name":"PEER_GRAPH_SCOPE_GLOBAL","features":[96]},{"name":"PEER_GRAPH_SCOPE_LINKLOCAL","features":[96]},{"name":"PEER_GRAPH_SCOPE_LOOPBACK","features":[96]},{"name":"PEER_GRAPH_SCOPE_SITELOCAL","features":[96]},{"name":"PEER_GRAPH_STATUS_FLAGS","features":[96]},{"name":"PEER_GRAPH_STATUS_HAS_CONNECTIONS","features":[96]},{"name":"PEER_GRAPH_STATUS_LISTENING","features":[96]},{"name":"PEER_GRAPH_STATUS_SYNCHRONIZED","features":[96]},{"name":"PEER_GROUP_AUTHENTICATION_SCHEME","features":[96]},{"name":"PEER_GROUP_EVENT_AUTHENTICATION_FAILED","features":[96]},{"name":"PEER_GROUP_EVENT_CONNECTION_FAILED","features":[96]},{"name":"PEER_GROUP_EVENT_DATA","features":[96]},{"name":"PEER_GROUP_EVENT_DIRECT_CONNECTION","features":[96]},{"name":"PEER_GROUP_EVENT_INCOMING_DATA","features":[96]},{"name":"PEER_GROUP_EVENT_MEMBER_CHANGED","features":[96]},{"name":"PEER_GROUP_EVENT_NEIGHBOR_CONNECTION","features":[96]},{"name":"PEER_GROUP_EVENT_PROPERTY_CHANGED","features":[96]},{"name":"PEER_GROUP_EVENT_RECORD_CHANGED","features":[96]},{"name":"PEER_GROUP_EVENT_REGISTRATION","features":[96]},{"name":"PEER_GROUP_EVENT_STATUS_CHANGED","features":[96]},{"name":"PEER_GROUP_EVENT_TYPE","features":[96]},{"name":"PEER_GROUP_GMC_AUTHENTICATION","features":[96]},{"name":"PEER_GROUP_ISSUE_CREDENTIAL_FLAGS","features":[96]},{"name":"PEER_GROUP_PASSWORD_AUTHENTICATION","features":[96]},{"name":"PEER_GROUP_PROPERTIES","features":[96]},{"name":"PEER_GROUP_PROPERTY_FLAGS","features":[96]},{"name":"PEER_GROUP_ROLE_ADMIN","features":[96]},{"name":"PEER_GROUP_ROLE_INVITING_MEMBER","features":[96]},{"name":"PEER_GROUP_ROLE_MEMBER","features":[96]},{"name":"PEER_GROUP_STATUS","features":[96]},{"name":"PEER_GROUP_STATUS_HAS_CONNECTIONS","features":[96]},{"name":"PEER_GROUP_STATUS_LISTENING","features":[96]},{"name":"PEER_GROUP_STORE_CREDENTIALS","features":[96]},{"name":"PEER_INVITATION","features":[96]},{"name":"PEER_INVITATION_INFO","features":[1,96,68]},{"name":"PEER_INVITATION_RESPONSE","features":[96]},{"name":"PEER_INVITATION_RESPONSE_ACCEPTED","features":[96]},{"name":"PEER_INVITATION_RESPONSE_DECLINED","features":[96]},{"name":"PEER_INVITATION_RESPONSE_ERROR","features":[96]},{"name":"PEER_INVITATION_RESPONSE_EXPIRED","features":[96]},{"name":"PEER_INVITATION_RESPONSE_TYPE","features":[96]},{"name":"PEER_MEMBER","features":[1,96,15,68]},{"name":"PEER_MEMBER_CHANGE_TYPE","features":[96]},{"name":"PEER_MEMBER_CONNECTED","features":[96]},{"name":"PEER_MEMBER_DATA_OPTIONAL","features":[96]},{"name":"PEER_MEMBER_DISCONNECTED","features":[96]},{"name":"PEER_MEMBER_FLAGS","features":[96]},{"name":"PEER_MEMBER_JOINED","features":[96]},{"name":"PEER_MEMBER_LEFT","features":[96]},{"name":"PEER_MEMBER_PRESENT","features":[96]},{"name":"PEER_MEMBER_UPDATED","features":[96]},{"name":"PEER_NAME_PAIR","features":[96]},{"name":"PEER_NODE_CHANGE_CONNECTED","features":[96]},{"name":"PEER_NODE_CHANGE_DISCONNECTED","features":[96]},{"name":"PEER_NODE_CHANGE_TYPE","features":[96]},{"name":"PEER_NODE_CHANGE_UPDATED","features":[96]},{"name":"PEER_NODE_INFO","features":[96,15]},{"name":"PEER_OBJECT","features":[96]},{"name":"PEER_PEOPLE_NEAR_ME","features":[96,15]},{"name":"PEER_PNRP_ALL_LINK_CLOUDS","features":[96]},{"name":"PEER_PNRP_CLOUD_INFO","features":[96]},{"name":"PEER_PNRP_ENDPOINT_INFO","features":[96,15]},{"name":"PEER_PNRP_REGISTRATION_INFO","features":[96,15]},{"name":"PEER_PRESENCE_AWAY","features":[96]},{"name":"PEER_PRESENCE_BE_RIGHT_BACK","features":[96]},{"name":"PEER_PRESENCE_BUSY","features":[96]},{"name":"PEER_PRESENCE_IDLE","features":[96]},{"name":"PEER_PRESENCE_INFO","features":[96]},{"name":"PEER_PRESENCE_OFFLINE","features":[96]},{"name":"PEER_PRESENCE_ONLINE","features":[96]},{"name":"PEER_PRESENCE_ON_THE_PHONE","features":[96]},{"name":"PEER_PRESENCE_OUT_TO_LUNCH","features":[96]},{"name":"PEER_PRESENCE_STATUS","features":[96]},{"name":"PEER_PUBLICATION_SCOPE","features":[96]},{"name":"PEER_PUBLICATION_SCOPE_ALL","features":[96]},{"name":"PEER_PUBLICATION_SCOPE_INTERNET","features":[96]},{"name":"PEER_PUBLICATION_SCOPE_NEAR_ME","features":[96]},{"name":"PEER_PUBLICATION_SCOPE_NONE","features":[96]},{"name":"PEER_RECORD","features":[1,96]},{"name":"PEER_RECORD_ADDED","features":[96]},{"name":"PEER_RECORD_CHANGE_TYPE","features":[96]},{"name":"PEER_RECORD_DELETED","features":[96]},{"name":"PEER_RECORD_EXPIRED","features":[96]},{"name":"PEER_RECORD_FLAGS","features":[96]},{"name":"PEER_RECORD_FLAG_AUTOREFRESH","features":[96]},{"name":"PEER_RECORD_FLAG_DELETED","features":[96]},{"name":"PEER_RECORD_UPDATED","features":[96]},{"name":"PEER_SECURITY_INTERFACE","features":[1,96]},{"name":"PEER_SIGNIN_ALL","features":[96]},{"name":"PEER_SIGNIN_FLAGS","features":[96]},{"name":"PEER_SIGNIN_INTERNET","features":[96]},{"name":"PEER_SIGNIN_NEAR_ME","features":[96]},{"name":"PEER_SIGNIN_NONE","features":[96]},{"name":"PEER_VERSION_DATA","features":[96]},{"name":"PEER_WATCH_ALLOWED","features":[96]},{"name":"PEER_WATCH_BLOCKED","features":[96]},{"name":"PEER_WATCH_PERMISSION","features":[96]},{"name":"PFNPEER_FREE_SECURITY_DATA","features":[96]},{"name":"PFNPEER_ON_PASSWORD_AUTH_FAILED","features":[96]},{"name":"PFNPEER_SECURE_RECORD","features":[1,96]},{"name":"PFNPEER_VALIDATE_RECORD","features":[1,96]},{"name":"PNRPCLOUDINFO","features":[96]},{"name":"PNRPINFO_HINT","features":[96]},{"name":"PNRPINFO_V1","features":[96,15]},{"name":"PNRPINFO_V2","features":[96,15,41]},{"name":"PNRP_CLOUD_FLAGS","features":[96]},{"name":"PNRP_CLOUD_FULL_PARTICIPANT","features":[96]},{"name":"PNRP_CLOUD_ID","features":[96]},{"name":"PNRP_CLOUD_NAME_LOCAL","features":[96]},{"name":"PNRP_CLOUD_NO_FLAGS","features":[96]},{"name":"PNRP_CLOUD_RESOLVE_ONLY","features":[96]},{"name":"PNRP_CLOUD_STATE","features":[96]},{"name":"PNRP_CLOUD_STATE_ACTIVE","features":[96]},{"name":"PNRP_CLOUD_STATE_ALONE","features":[96]},{"name":"PNRP_CLOUD_STATE_DEAD","features":[96]},{"name":"PNRP_CLOUD_STATE_DISABLED","features":[96]},{"name":"PNRP_CLOUD_STATE_NO_NET","features":[96]},{"name":"PNRP_CLOUD_STATE_SYNCHRONISING","features":[96]},{"name":"PNRP_CLOUD_STATE_VIRTUAL","features":[96]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE","features":[96]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_BINARY","features":[96]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_NONE","features":[96]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_STRING","features":[96]},{"name":"PNRP_GLOBAL_SCOPE","features":[96]},{"name":"PNRP_LINK_LOCAL_SCOPE","features":[96]},{"name":"PNRP_MAX_ENDPOINT_ADDRESSES","features":[96]},{"name":"PNRP_MAX_EXTENDED_PAYLOAD_BYTES","features":[96]},{"name":"PNRP_REGISTERED_ID_STATE","features":[96]},{"name":"PNRP_REGISTERED_ID_STATE_OK","features":[96]},{"name":"PNRP_REGISTERED_ID_STATE_PROBLEM","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA_ANY_PEER_NAME","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA_DEFAULT","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_NON_CURRENT_PROCESS_PEER_NAME","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_PEER_NAME","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_REMOTE_PEER_NAME","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA_NON_CURRENT_PROCESS_PEER_NAME","features":[96]},{"name":"PNRP_RESOLVE_CRITERIA_REMOTE_PEER_NAME","features":[96]},{"name":"PNRP_SCOPE","features":[96]},{"name":"PNRP_SCOPE_ANY","features":[96]},{"name":"PNRP_SITE_LOCAL_SCOPE","features":[96]},{"name":"PeerCollabAddContact","features":[1,96]},{"name":"PeerCollabAsyncInviteContact","features":[1,96,15]},{"name":"PeerCollabAsyncInviteEndpoint","features":[1,96,15]},{"name":"PeerCollabCancelInvitation","features":[1,96]},{"name":"PeerCollabCloseHandle","features":[1,96]},{"name":"PeerCollabDeleteContact","features":[96]},{"name":"PeerCollabDeleteEndpointData","features":[96,15]},{"name":"PeerCollabDeleteObject","features":[96]},{"name":"PeerCollabEnumApplicationRegistrationInfo","features":[96]},{"name":"PeerCollabEnumApplications","features":[96,15]},{"name":"PeerCollabEnumContacts","features":[96]},{"name":"PeerCollabEnumEndpoints","features":[1,96]},{"name":"PeerCollabEnumObjects","features":[96,15]},{"name":"PeerCollabEnumPeopleNearMe","features":[96]},{"name":"PeerCollabExportContact","features":[96]},{"name":"PeerCollabGetAppLaunchInfo","features":[1,96,15]},{"name":"PeerCollabGetApplicationRegistrationInfo","features":[96]},{"name":"PeerCollabGetContact","features":[1,96]},{"name":"PeerCollabGetEndpointName","features":[96]},{"name":"PeerCollabGetEventData","features":[1,96,15]},{"name":"PeerCollabGetInvitationResponse","features":[1,96]},{"name":"PeerCollabGetPresenceInfo","features":[96,15]},{"name":"PeerCollabGetSigninOptions","features":[96]},{"name":"PeerCollabInviteContact","features":[1,96,15]},{"name":"PeerCollabInviteEndpoint","features":[96,15]},{"name":"PeerCollabParseContact","features":[1,96]},{"name":"PeerCollabQueryContactData","features":[96,15]},{"name":"PeerCollabRefreshEndpointData","features":[96,15]},{"name":"PeerCollabRegisterApplication","features":[96]},{"name":"PeerCollabRegisterEvent","features":[1,96]},{"name":"PeerCollabSetEndpointName","features":[96]},{"name":"PeerCollabSetObject","features":[96]},{"name":"PeerCollabSetPresenceInfo","features":[96]},{"name":"PeerCollabShutdown","features":[96]},{"name":"PeerCollabSignin","features":[1,96]},{"name":"PeerCollabSignout","features":[96]},{"name":"PeerCollabStartup","features":[96]},{"name":"PeerCollabSubscribeEndpointData","features":[96,15]},{"name":"PeerCollabUnregisterApplication","features":[96]},{"name":"PeerCollabUnregisterEvent","features":[96]},{"name":"PeerCollabUnsubscribeEndpointData","features":[96,15]},{"name":"PeerCollabUpdateContact","features":[1,96]},{"name":"PeerCreatePeerName","features":[96]},{"name":"PeerDistClientAddContentInformation","features":[1,96,6]},{"name":"PeerDistClientAddData","features":[1,96,6]},{"name":"PeerDistClientBasicInfo","features":[96]},{"name":"PeerDistClientBlockRead","features":[1,96,6]},{"name":"PeerDistClientCancelAsyncOperation","features":[1,96,6]},{"name":"PeerDistClientCloseContent","features":[96]},{"name":"PeerDistClientCompleteContentInformation","features":[1,96,6]},{"name":"PeerDistClientFlushContent","features":[1,96,6]},{"name":"PeerDistClientGetInformationByHandle","features":[96]},{"name":"PeerDistClientOpenContent","features":[1,96]},{"name":"PeerDistClientStreamRead","features":[1,96,6]},{"name":"PeerDistGetOverlappedResult","features":[1,96,6]},{"name":"PeerDistGetStatus","features":[96]},{"name":"PeerDistGetStatusEx","features":[96]},{"name":"PeerDistRegisterForStatusChangeNotification","features":[1,96,6]},{"name":"PeerDistRegisterForStatusChangeNotificationEx","features":[1,96,6]},{"name":"PeerDistServerCancelAsyncOperation","features":[1,96,6]},{"name":"PeerDistServerCloseContentInformation","features":[96]},{"name":"PeerDistServerCloseStreamHandle","features":[96]},{"name":"PeerDistServerOpenContentInformation","features":[1,96]},{"name":"PeerDistServerOpenContentInformationEx","features":[1,96]},{"name":"PeerDistServerPublishAddToStream","features":[1,96,6]},{"name":"PeerDistServerPublishCompleteStream","features":[1,96,6]},{"name":"PeerDistServerPublishStream","features":[1,96]},{"name":"PeerDistServerRetrieveContentInformation","features":[1,96,6]},{"name":"PeerDistServerUnpublish","features":[96]},{"name":"PeerDistShutdown","features":[96]},{"name":"PeerDistStartup","features":[96]},{"name":"PeerDistUnregisterForStatusChangeNotification","features":[96]},{"name":"PeerEndEnumeration","features":[96]},{"name":"PeerEnumGroups","features":[96]},{"name":"PeerEnumIdentities","features":[96]},{"name":"PeerFreeData","features":[96]},{"name":"PeerGetItemCount","features":[96]},{"name":"PeerGetNextItem","features":[96]},{"name":"PeerGraphAddRecord","features":[1,96]},{"name":"PeerGraphClose","features":[96]},{"name":"PeerGraphCloseDirectConnection","features":[96]},{"name":"PeerGraphConnect","features":[96,15]},{"name":"PeerGraphCreate","features":[1,96]},{"name":"PeerGraphDelete","features":[96]},{"name":"PeerGraphDeleteRecord","features":[1,96]},{"name":"PeerGraphEndEnumeration","features":[96]},{"name":"PeerGraphEnumConnections","features":[96]},{"name":"PeerGraphEnumNodes","features":[96]},{"name":"PeerGraphEnumRecords","features":[96]},{"name":"PeerGraphExportDatabase","features":[96]},{"name":"PeerGraphFreeData","features":[96]},{"name":"PeerGraphGetEventData","features":[96]},{"name":"PeerGraphGetItemCount","features":[96]},{"name":"PeerGraphGetNextItem","features":[96]},{"name":"PeerGraphGetNodeInfo","features":[96,15]},{"name":"PeerGraphGetProperties","features":[96]},{"name":"PeerGraphGetRecord","features":[1,96]},{"name":"PeerGraphGetStatus","features":[96]},{"name":"PeerGraphImportDatabase","features":[96]},{"name":"PeerGraphListen","features":[96]},{"name":"PeerGraphOpen","features":[1,96]},{"name":"PeerGraphOpenDirectConnection","features":[96,15]},{"name":"PeerGraphPeerTimeToUniversalTime","features":[1,96]},{"name":"PeerGraphRegisterEvent","features":[1,96]},{"name":"PeerGraphSearchRecords","features":[96]},{"name":"PeerGraphSendData","features":[96]},{"name":"PeerGraphSetNodeAttributes","features":[96]},{"name":"PeerGraphSetPresence","features":[1,96]},{"name":"PeerGraphSetProperties","features":[96]},{"name":"PeerGraphShutdown","features":[96]},{"name":"PeerGraphStartup","features":[96]},{"name":"PeerGraphUniversalTimeToPeerTime","features":[1,96]},{"name":"PeerGraphUnregisterEvent","features":[96]},{"name":"PeerGraphUpdateRecord","features":[1,96]},{"name":"PeerGraphValidateDeferredRecords","features":[96]},{"name":"PeerGroupAddRecord","features":[1,96]},{"name":"PeerGroupClose","features":[96]},{"name":"PeerGroupCloseDirectConnection","features":[96]},{"name":"PeerGroupConnect","features":[96]},{"name":"PeerGroupConnectByAddress","features":[96,15]},{"name":"PeerGroupCreate","features":[96]},{"name":"PeerGroupCreateInvitation","features":[1,96]},{"name":"PeerGroupCreatePasswordInvitation","features":[96]},{"name":"PeerGroupDelete","features":[96]},{"name":"PeerGroupDeleteRecord","features":[96]},{"name":"PeerGroupEnumConnections","features":[96]},{"name":"PeerGroupEnumMembers","features":[96]},{"name":"PeerGroupEnumRecords","features":[96]},{"name":"PeerGroupExportConfig","features":[96]},{"name":"PeerGroupExportDatabase","features":[96]},{"name":"PeerGroupGetEventData","features":[96]},{"name":"PeerGroupGetProperties","features":[96]},{"name":"PeerGroupGetRecord","features":[1,96]},{"name":"PeerGroupGetStatus","features":[96]},{"name":"PeerGroupImportConfig","features":[1,96]},{"name":"PeerGroupImportDatabase","features":[96]},{"name":"PeerGroupIssueCredentials","features":[1,96,68]},{"name":"PeerGroupJoin","features":[96]},{"name":"PeerGroupOpen","features":[96]},{"name":"PeerGroupOpenDirectConnection","features":[96,15]},{"name":"PeerGroupParseInvitation","features":[1,96,68]},{"name":"PeerGroupPasswordJoin","features":[96]},{"name":"PeerGroupPeerTimeToUniversalTime","features":[1,96]},{"name":"PeerGroupRegisterEvent","features":[1,96]},{"name":"PeerGroupResumePasswordAuthentication","features":[96]},{"name":"PeerGroupSearchRecords","features":[96]},{"name":"PeerGroupSendData","features":[96]},{"name":"PeerGroupSetProperties","features":[96]},{"name":"PeerGroupShutdown","features":[96]},{"name":"PeerGroupStartup","features":[96]},{"name":"PeerGroupUniversalTimeToPeerTime","features":[1,96]},{"name":"PeerGroupUnregisterEvent","features":[96]},{"name":"PeerGroupUpdateRecord","features":[1,96]},{"name":"PeerHostNameToPeerName","features":[96]},{"name":"PeerIdentityCreate","features":[96]},{"name":"PeerIdentityDelete","features":[96]},{"name":"PeerIdentityExport","features":[96]},{"name":"PeerIdentityGetCryptKey","features":[96]},{"name":"PeerIdentityGetDefault","features":[96]},{"name":"PeerIdentityGetFriendlyName","features":[96]},{"name":"PeerIdentityGetXML","features":[96]},{"name":"PeerIdentityImport","features":[96]},{"name":"PeerIdentitySetFriendlyName","features":[96]},{"name":"PeerNameToPeerHostName","features":[96]},{"name":"PeerPnrpEndResolve","features":[96]},{"name":"PeerPnrpGetCloudInfo","features":[96]},{"name":"PeerPnrpGetEndpoint","features":[96,15]},{"name":"PeerPnrpRegister","features":[96,15]},{"name":"PeerPnrpResolve","features":[96,15]},{"name":"PeerPnrpShutdown","features":[96]},{"name":"PeerPnrpStartResolve","features":[1,96]},{"name":"PeerPnrpStartup","features":[96]},{"name":"PeerPnrpUnregister","features":[96]},{"name":"PeerPnrpUpdateRegistration","features":[96,15]},{"name":"SVCID_PNRPCLOUD","features":[96]},{"name":"SVCID_PNRPNAME_V1","features":[96]},{"name":"SVCID_PNRPNAME_V2","features":[96]},{"name":"WSA_PNRP_CLIENT_INVALID_COMPARTMENT_ID","features":[96]},{"name":"WSA_PNRP_CLOUD_DISABLED","features":[96]},{"name":"WSA_PNRP_CLOUD_IS_DEAD","features":[96]},{"name":"WSA_PNRP_CLOUD_IS_SEARCH_ONLY","features":[96]},{"name":"WSA_PNRP_CLOUD_NOT_FOUND","features":[96]},{"name":"WSA_PNRP_DUPLICATE_PEER_NAME","features":[96]},{"name":"WSA_PNRP_ERROR_BASE","features":[96]},{"name":"WSA_PNRP_INVALID_IDENTITY","features":[96]},{"name":"WSA_PNRP_TOO_MUCH_LOAD","features":[96]},{"name":"WSZ_SCOPE_GLOBAL","features":[96]},{"name":"WSZ_SCOPE_LINKLOCAL","features":[96]},{"name":"WSZ_SCOPE_SITELOCAL","features":[96]}],"456":[{"name":"ABLE_TO_RECV_RSVP","features":[97]},{"name":"ADDRESS_LIST_DESCRIPTOR","features":[16,97]},{"name":"ADM_CTRL_FAILED","features":[97]},{"name":"ADSPEC","features":[97]},{"name":"AD_FLAG_BREAK_BIT","features":[97]},{"name":"AD_GENERAL_PARAMS","features":[97]},{"name":"AD_GUARANTEED","features":[97]},{"name":"ALLOWED_TO_SEND_DATA","features":[97]},{"name":"ANY_DEST_ADDR","features":[97]},{"name":"CBADMITRESULT","features":[97]},{"name":"CBGETRSVPOBJECTS","features":[97]},{"name":"CONTROLLED_DELAY_SERV","features":[97]},{"name":"CONTROLLED_LOAD_SERV","features":[97]},{"name":"CONTROL_SERVICE","features":[97]},{"name":"CREDENTIAL_SUB_TYPE_ASCII_ID","features":[97]},{"name":"CREDENTIAL_SUB_TYPE_KERBEROS_TKT","features":[97]},{"name":"CREDENTIAL_SUB_TYPE_PGP_CERT","features":[97]},{"name":"CREDENTIAL_SUB_TYPE_UNICODE_ID","features":[97]},{"name":"CREDENTIAL_SUB_TYPE_X509_V3_CERT","features":[97]},{"name":"CURRENT_TCI_VERSION","features":[97]},{"name":"CtrlLoadFlowspec","features":[97]},{"name":"DD_TCP_DEVICE_NAME","features":[97]},{"name":"DUP_RESULTS","features":[97]},{"name":"END_TO_END_QOSABILITY","features":[97]},{"name":"ENUMERATION_BUFFER","features":[97,15]},{"name":"ERROR_ADDRESS_TYPE_NOT_SUPPORTED","features":[97]},{"name":"ERROR_DS_MAPPING_EXISTS","features":[97]},{"name":"ERROR_DUPLICATE_FILTER","features":[97]},{"name":"ERROR_FILTER_CONFLICT","features":[97]},{"name":"ERROR_INCOMPATABLE_QOS","features":[97]},{"name":"ERROR_INCOMPATIBLE_TCI_VERSION","features":[97]},{"name":"ERROR_INVALID_ADDRESS_TYPE","features":[97]},{"name":"ERROR_INVALID_DIFFSERV_FLOW","features":[97]},{"name":"ERROR_INVALID_DS_CLASS","features":[97]},{"name":"ERROR_INVALID_FLOW_MODE","features":[97]},{"name":"ERROR_INVALID_PEAK_RATE","features":[97]},{"name":"ERROR_INVALID_QOS_PRIORITY","features":[97]},{"name":"ERROR_INVALID_SD_MODE","features":[97]},{"name":"ERROR_INVALID_SERVICE_TYPE","features":[97]},{"name":"ERROR_INVALID_SHAPE_RATE","features":[97]},{"name":"ERROR_INVALID_TOKEN_RATE","features":[97]},{"name":"ERROR_INVALID_TRAFFIC_CLASS","features":[97]},{"name":"ERROR_NO_MORE_INFO","features":[97]},{"name":"ERROR_SPEC","features":[97,15]},{"name":"ERROR_SPECF_InPlace","features":[97]},{"name":"ERROR_SPECF_NotGuilty","features":[97]},{"name":"ERROR_TC_NOT_SUPPORTED","features":[97]},{"name":"ERROR_TC_OBJECT_LENGTH_INVALID","features":[97]},{"name":"ERROR_TC_SUPPORTED_OBJECTS_EXIST","features":[97]},{"name":"ERROR_TOO_MANY_CLIENTS","features":[97]},{"name":"ERR_FORWARD_OK","features":[97]},{"name":"ERR_Usage_globl","features":[97]},{"name":"ERR_Usage_local","features":[97]},{"name":"ERR_Usage_serv","features":[97]},{"name":"ERR_global_mask","features":[97]},{"name":"EXPIRED_CREDENTIAL","features":[97]},{"name":"Error_Spec_IPv4","features":[97,15]},{"name":"FILTERSPECV4","features":[97]},{"name":"FILTERSPECV4_GPI","features":[97]},{"name":"FILTERSPECV6","features":[97]},{"name":"FILTERSPECV6_FLOW","features":[97]},{"name":"FILTERSPECV6_GPI","features":[97]},{"name":"FILTERSPEC_END","features":[97]},{"name":"FILTER_SPEC","features":[97,15]},{"name":"FLOWDESCRIPTOR","features":[97,15]},{"name":"FLOW_DESC","features":[97,15]},{"name":"FLOW_DURATION","features":[97]},{"name":"FORCE_IMMEDIATE_REFRESH","features":[97]},{"name":"FSCTL_TCP_BASE","features":[97]},{"name":"FVEB_UNLOCK_FLAG_AUK_OSFVEINFO","features":[97]},{"name":"FVEB_UNLOCK_FLAG_CACHED","features":[97]},{"name":"FVEB_UNLOCK_FLAG_EXTERNAL","features":[97]},{"name":"FVEB_UNLOCK_FLAG_MEDIA","features":[97]},{"name":"FVEB_UNLOCK_FLAG_NBP","features":[97]},{"name":"FVEB_UNLOCK_FLAG_NONE","features":[97]},{"name":"FVEB_UNLOCK_FLAG_PASSPHRASE","features":[97]},{"name":"FVEB_UNLOCK_FLAG_PIN","features":[97]},{"name":"FVEB_UNLOCK_FLAG_RECOVERY","features":[97]},{"name":"FVEB_UNLOCK_FLAG_TPM","features":[97]},{"name":"FilterType","features":[97]},{"name":"Filter_Spec_IPv4","features":[97,15]},{"name":"Filter_Spec_IPv4GPI","features":[97,15]},{"name":"GENERAL_INFO","features":[97]},{"name":"GQOS_API","features":[97]},{"name":"GQOS_ERRORCODE_UNKNOWN","features":[97]},{"name":"GQOS_ERRORVALUE_UNKNOWN","features":[97]},{"name":"GQOS_KERNEL_TC","features":[97]},{"name":"GQOS_KERNEL_TC_SYS","features":[97]},{"name":"GQOS_NET_ADMISSION","features":[97]},{"name":"GQOS_NET_POLICY","features":[97]},{"name":"GQOS_NO_ERRORCODE","features":[97]},{"name":"GQOS_NO_ERRORVALUE","features":[97]},{"name":"GQOS_RSVP","features":[97]},{"name":"GQOS_RSVP_SYS","features":[97]},{"name":"GUARANTEED_SERV","features":[97]},{"name":"GUAR_ADSPARM_C","features":[97]},{"name":"GUAR_ADSPARM_Csum","features":[97]},{"name":"GUAR_ADSPARM_Ctot","features":[97]},{"name":"GUAR_ADSPARM_D","features":[97]},{"name":"GUAR_ADSPARM_Dsum","features":[97]},{"name":"GUAR_ADSPARM_Dtot","features":[97]},{"name":"GUID_QOS_BESTEFFORT_BANDWIDTH","features":[97]},{"name":"GUID_QOS_ENABLE_AVG_STATS","features":[97]},{"name":"GUID_QOS_ENABLE_WINDOW_ADJUSTMENT","features":[97]},{"name":"GUID_QOS_FLOW_8021P_CONFORMING","features":[97]},{"name":"GUID_QOS_FLOW_8021P_NONCONFORMING","features":[97]},{"name":"GUID_QOS_FLOW_COUNT","features":[97]},{"name":"GUID_QOS_FLOW_IP_CONFORMING","features":[97]},{"name":"GUID_QOS_FLOW_IP_NONCONFORMING","features":[97]},{"name":"GUID_QOS_FLOW_MODE","features":[97]},{"name":"GUID_QOS_ISSLOW_FLOW","features":[97]},{"name":"GUID_QOS_LATENCY","features":[97]},{"name":"GUID_QOS_MAX_OUTSTANDING_SENDS","features":[97]},{"name":"GUID_QOS_NON_BESTEFFORT_LIMIT","features":[97]},{"name":"GUID_QOS_REMAINING_BANDWIDTH","features":[97]},{"name":"GUID_QOS_STATISTICS_BUFFER","features":[97]},{"name":"GUID_QOS_TIMER_RESOLUTION","features":[97]},{"name":"Gads_parms_t","features":[97]},{"name":"GenAdspecParams","features":[97]},{"name":"GenTspec","features":[97]},{"name":"GenTspecParms","features":[97]},{"name":"GuarFlowSpec","features":[97]},{"name":"GuarRspec","features":[97]},{"name":"HIGHLY_DELAY_SENSITIVE","features":[97]},{"name":"HSP_UPGRADE_IMAGEDATA","features":[97]},{"name":"IDENTITY_CHANGED","features":[97]},{"name":"IDPE_ATTR","features":[97]},{"name":"ID_ERROR_OBJECT","features":[97]},{"name":"IF_MIB_STATS_ID","features":[97]},{"name":"INFO_NOT_AVAILABLE","features":[97]},{"name":"INSUFFICIENT_PRIVILEGES","features":[97]},{"name":"INTSERV_VERSION0","features":[97]},{"name":"INTSERV_VERS_MASK","features":[97]},{"name":"INV_LPM_HANDLE","features":[97]},{"name":"INV_REQ_HANDLE","features":[97]},{"name":"INV_RESULTS","features":[97]},{"name":"IN_ADDR_IPV4","features":[97]},{"name":"IN_ADDR_IPV6","features":[97]},{"name":"IPX_PATTERN","features":[97]},{"name":"IP_INTFC_INFO_ID","features":[97]},{"name":"IP_MIB_ADDRTABLE_ENTRY_ID","features":[97]},{"name":"IP_MIB_STATS_ID","features":[97]},{"name":"IP_PATTERN","features":[97]},{"name":"ISPH_FLG_INV","features":[97]},{"name":"ISSH_BREAK_BIT","features":[97]},{"name":"IS_ADSPEC_BODY","features":[97]},{"name":"IS_FLOWSPEC","features":[97]},{"name":"IS_GUAR_RSPEC","features":[97]},{"name":"IS_WKP_COMPOSED_MTU","features":[97]},{"name":"IS_WKP_HOP_CNT","features":[97]},{"name":"IS_WKP_MIN_LATENCY","features":[97]},{"name":"IS_WKP_PATH_BW","features":[97]},{"name":"IS_WKP_Q_TSPEC","features":[97]},{"name":"IS_WKP_TB_TSPEC","features":[97]},{"name":"IntServFlowSpec","features":[97]},{"name":"IntServMainHdr","features":[97]},{"name":"IntServParmHdr","features":[97]},{"name":"IntServServiceHdr","features":[97]},{"name":"IntServTspecBody","features":[97]},{"name":"LINE_RATE","features":[97]},{"name":"LOCAL_QOSABILITY","features":[97]},{"name":"LOCAL_TRAFFIC_CONTROL","features":[97]},{"name":"LPMIPTABLE","features":[97,15]},{"name":"LPM_API_VERSION_1","features":[97]},{"name":"LPM_HANDLE","features":[97]},{"name":"LPM_INIT_INFO","features":[97]},{"name":"LPM_OK","features":[97]},{"name":"LPM_PE_ALL_TYPES","features":[97]},{"name":"LPM_PE_APP_IDENTITY","features":[97]},{"name":"LPM_PE_USER_IDENTITY","features":[97]},{"name":"LPM_RESULT_DEFER","features":[97]},{"name":"LPM_RESULT_READY","features":[97]},{"name":"LPM_TIME_OUT","features":[97]},{"name":"LPV_DONT_CARE","features":[97]},{"name":"LPV_DROP_MSG","features":[97]},{"name":"LPV_MAX_PRIORITY","features":[97]},{"name":"LPV_MIN_PRIORITY","features":[97]},{"name":"LPV_REJECT","features":[97]},{"name":"LPV_RESERVED","features":[97]},{"name":"MAX_HSP_UPGRADE_FILENAME_LENGTH","features":[97]},{"name":"MAX_PHYSADDR_SIZE","features":[97]},{"name":"MAX_STRING_LENGTH","features":[97]},{"name":"MODERATELY_DELAY_SENSITIVE","features":[97]},{"name":"OSDEVICE_TYPE_BLOCKIO_CDROM","features":[97]},{"name":"OSDEVICE_TYPE_BLOCKIO_FILE","features":[97]},{"name":"OSDEVICE_TYPE_BLOCKIO_HARDDISK","features":[97]},{"name":"OSDEVICE_TYPE_BLOCKIO_PARTITION","features":[97]},{"name":"OSDEVICE_TYPE_BLOCKIO_RAMDISK","features":[97]},{"name":"OSDEVICE_TYPE_BLOCKIO_REMOVABLEDISK","features":[97]},{"name":"OSDEVICE_TYPE_BLOCKIO_VIRTUALHARDDISK","features":[97]},{"name":"OSDEVICE_TYPE_CIMFS","features":[97]},{"name":"OSDEVICE_TYPE_COMPOSITE","features":[97]},{"name":"OSDEVICE_TYPE_SERIAL","features":[97]},{"name":"OSDEVICE_TYPE_UDP","features":[97]},{"name":"OSDEVICE_TYPE_UNKNOWN","features":[97]},{"name":"OSDEVICE_TYPE_VMBUS","features":[97]},{"name":"Opt_Distinct","features":[97]},{"name":"Opt_Explicit","features":[97]},{"name":"Opt_Share_mask","features":[97]},{"name":"Opt_Shared","features":[97]},{"name":"Opt_SndSel_mask","features":[97]},{"name":"Opt_Wildcard","features":[97]},{"name":"PALLOCMEM","features":[97]},{"name":"PARAM_BUFFER","features":[97]},{"name":"PCM_VERSION_1","features":[97]},{"name":"PE_ATTRIB_TYPE_CREDENTIAL","features":[97]},{"name":"PE_ATTRIB_TYPE_POLICY_LOCATOR","features":[97]},{"name":"PE_TYPE_APPID","features":[97]},{"name":"PFREEMEM","features":[97]},{"name":"POLICY_DATA","features":[97]},{"name":"POLICY_DECISION","features":[97]},{"name":"POLICY_ELEMENT","features":[97]},{"name":"POLICY_ERRV_CRAZY_FLOWSPEC","features":[97]},{"name":"POLICY_ERRV_EXPIRED_CREDENTIALS","features":[97]},{"name":"POLICY_ERRV_EXPIRED_USER_TOKEN","features":[97]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_DEF_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_GRP_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_USER_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_IDENTITY_CHANGED","features":[97]},{"name":"POLICY_ERRV_INSUFFICIENT_PRIVILEGES","features":[97]},{"name":"POLICY_ERRV_NO_ACCEPTS","features":[97]},{"name":"POLICY_ERRV_NO_MEMORY","features":[97]},{"name":"POLICY_ERRV_NO_MORE_INFO","features":[97]},{"name":"POLICY_ERRV_NO_PRIVILEGES","features":[97]},{"name":"POLICY_ERRV_NO_RESOURCES","features":[97]},{"name":"POLICY_ERRV_PRE_EMPTED","features":[97]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_DEF_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_GRP_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_COUNT","features":[97]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_DURATION","features":[97]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_USER_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_FLOW_RATE","features":[97]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_PEAK_RATE","features":[97]},{"name":"POLICY_ERRV_UNKNOWN","features":[97]},{"name":"POLICY_ERRV_UNKNOWN_USER","features":[97]},{"name":"POLICY_ERRV_UNSUPPORTED_CREDENTIAL_TYPE","features":[97]},{"name":"POLICY_ERRV_USER_CHANGED","features":[97]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN","features":[97]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN_ENC","features":[97]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN","features":[97]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN_ENC","features":[97]},{"name":"POSITIVE_INFINITY_RATE","features":[97]},{"name":"PREDICTIVE_SERV","features":[97]},{"name":"QOSAddSocketToFlow","features":[1,97,15]},{"name":"QOSCancel","features":[1,97,6]},{"name":"QOSCloseHandle","features":[1,97]},{"name":"QOSCreateHandle","features":[1,97]},{"name":"QOSEnumerateFlows","features":[1,97]},{"name":"QOSFlowRateCongestion","features":[97]},{"name":"QOSFlowRateContentChange","features":[97]},{"name":"QOSFlowRateHigherContentEncoding","features":[97]},{"name":"QOSFlowRateNotApplicable","features":[97]},{"name":"QOSFlowRateUserCaused","features":[97]},{"name":"QOSNotifyAvailable","features":[97]},{"name":"QOSNotifyCongested","features":[97]},{"name":"QOSNotifyFlow","features":[1,97,6]},{"name":"QOSNotifyUncongested","features":[97]},{"name":"QOSQueryFlow","features":[1,97,6]},{"name":"QOSQueryFlowFundamentals","features":[97]},{"name":"QOSQueryOutgoingRate","features":[97]},{"name":"QOSQueryPacketPriority","features":[97]},{"name":"QOSRemoveSocketFromFlow","features":[1,97,15]},{"name":"QOSSPBASE","features":[97]},{"name":"QOSSP_ERR_BASE","features":[97]},{"name":"QOSSetFlow","features":[1,97,6]},{"name":"QOSSetOutgoingDSCPValue","features":[97]},{"name":"QOSSetOutgoingRate","features":[97]},{"name":"QOSSetTrafficType","features":[97]},{"name":"QOSShapeAndMark","features":[97]},{"name":"QOSShapeOnly","features":[97]},{"name":"QOSStartTrackingClient","features":[1,97,15]},{"name":"QOSStopTrackingClient","features":[1,97,15]},{"name":"QOSTrafficTypeAudioVideo","features":[97]},{"name":"QOSTrafficTypeBackground","features":[97]},{"name":"QOSTrafficTypeBestEffort","features":[97]},{"name":"QOSTrafficTypeControl","features":[97]},{"name":"QOSTrafficTypeExcellentEffort","features":[97]},{"name":"QOSTrafficTypeVoice","features":[97]},{"name":"QOSUseNonConformantMarkings","features":[97]},{"name":"QOS_DESTADDR","features":[97,15]},{"name":"QOS_DIFFSERV","features":[97]},{"name":"QOS_DIFFSERV_RULE","features":[97]},{"name":"QOS_DS_CLASS","features":[97]},{"name":"QOS_FLOWRATE_OUTGOING","features":[97]},{"name":"QOS_FLOWRATE_REASON","features":[97]},{"name":"QOS_FLOW_FUNDAMENTALS","features":[1,97]},{"name":"QOS_FRIENDLY_NAME","features":[97]},{"name":"QOS_GENERAL_ID_BASE","features":[97]},{"name":"QOS_MAX_OBJECT_STRING_LENGTH","features":[97]},{"name":"QOS_NON_ADAPTIVE_FLOW","features":[97]},{"name":"QOS_NOTIFY_FLOW","features":[97]},{"name":"QOS_NOT_SPECIFIED","features":[97]},{"name":"QOS_OBJECT_HDR","features":[97]},{"name":"QOS_OUTGOING_DEFAULT_MINIMUM_BANDWIDTH","features":[97]},{"name":"QOS_PACKET_PRIORITY","features":[97]},{"name":"QOS_QUERYFLOW_FRESH","features":[97]},{"name":"QOS_QUERY_FLOW","features":[97]},{"name":"QOS_SD_MODE","features":[97]},{"name":"QOS_SET_FLOW","features":[97]},{"name":"QOS_SHAPING","features":[97]},{"name":"QOS_SHAPING_RATE","features":[97]},{"name":"QOS_TCP_TRAFFIC","features":[97]},{"name":"QOS_TRAFFIC_CLASS","features":[97]},{"name":"QOS_TRAFFIC_GENERAL_ID_BASE","features":[97]},{"name":"QOS_TRAFFIC_TYPE","features":[97]},{"name":"QOS_VERSION","features":[97]},{"name":"QUALITATIVE_SERV","features":[97]},{"name":"QualAppFlowSpec","features":[97]},{"name":"QualTspec","features":[97]},{"name":"QualTspecParms","features":[97]},{"name":"RCVD_PATH_TEAR","features":[97]},{"name":"RCVD_RESV_TEAR","features":[97]},{"name":"RESOURCES_ALLOCATED","features":[97]},{"name":"RESOURCES_MODIFIED","features":[97]},{"name":"RESV_STYLE","features":[97]},{"name":"RHANDLE","features":[97]},{"name":"RSVP_ADSPEC","features":[97]},{"name":"RSVP_DEFAULT_STYLE","features":[97]},{"name":"RSVP_Err_ADMISSION","features":[97]},{"name":"RSVP_Err_AMBIG_FILTER","features":[97]},{"name":"RSVP_Err_API_ERROR","features":[97]},{"name":"RSVP_Err_BAD_DSTPORT","features":[97]},{"name":"RSVP_Err_BAD_SNDPORT","features":[97]},{"name":"RSVP_Err_BAD_STYLE","features":[97]},{"name":"RSVP_Err_NONE","features":[97]},{"name":"RSVP_Err_NO_PATH","features":[97]},{"name":"RSVP_Err_NO_SENDER","features":[97]},{"name":"RSVP_Err_POLICY","features":[97]},{"name":"RSVP_Err_PREEMPTED","features":[97]},{"name":"RSVP_Err_RSVP_SYS_ERROR","features":[97]},{"name":"RSVP_Err_TC_ERROR","features":[97]},{"name":"RSVP_Err_TC_SYS_ERROR","features":[97]},{"name":"RSVP_Err_UNKNOWN_CTYPE","features":[97]},{"name":"RSVP_Err_UNKNOWN_STYLE","features":[97]},{"name":"RSVP_Err_UNKN_OBJ_CLASS","features":[97]},{"name":"RSVP_Erv_API","features":[97]},{"name":"RSVP_Erv_Bandwidth","features":[97]},{"name":"RSVP_Erv_Bucket_szie","features":[97]},{"name":"RSVP_Erv_Conflict_Serv","features":[97]},{"name":"RSVP_Erv_Crazy_Flowspec","features":[97]},{"name":"RSVP_Erv_Crazy_Tspec","features":[97]},{"name":"RSVP_Erv_DelayBnd","features":[97]},{"name":"RSVP_Erv_Flow_Rate","features":[97]},{"name":"RSVP_Erv_MEMORY","features":[97]},{"name":"RSVP_Erv_MTU","features":[97]},{"name":"RSVP_Erv_Min_Policied_size","features":[97]},{"name":"RSVP_Erv_No_Serv","features":[97]},{"name":"RSVP_Erv_Nonev","features":[97]},{"name":"RSVP_Erv_Other","features":[97]},{"name":"RSVP_Erv_Peak_Rate","features":[97]},{"name":"RSVP_FILTERSPEC","features":[97]},{"name":"RSVP_FILTERSPEC_V4","features":[97]},{"name":"RSVP_FILTERSPEC_V4_GPI","features":[97]},{"name":"RSVP_FILTERSPEC_V6","features":[97]},{"name":"RSVP_FILTERSPEC_V6_FLOW","features":[97]},{"name":"RSVP_FILTERSPEC_V6_GPI","features":[97]},{"name":"RSVP_FIXED_FILTER_STYLE","features":[97]},{"name":"RSVP_HOP","features":[97,15]},{"name":"RSVP_MSG_OBJS","features":[97,15]},{"name":"RSVP_OBJECT_ID_BASE","features":[97]},{"name":"RSVP_PATH","features":[97]},{"name":"RSVP_PATH_ERR","features":[97]},{"name":"RSVP_PATH_TEAR","features":[97]},{"name":"RSVP_POLICY","features":[97]},{"name":"RSVP_POLICY_INFO","features":[97]},{"name":"RSVP_RESERVE_INFO","features":[97,15]},{"name":"RSVP_RESV","features":[97]},{"name":"RSVP_RESV_ERR","features":[97]},{"name":"RSVP_RESV_TEAR","features":[97]},{"name":"RSVP_SCOPE","features":[97,15]},{"name":"RSVP_SESSION","features":[97,15]},{"name":"RSVP_SHARED_EXPLICIT_STYLE","features":[97]},{"name":"RSVP_STATUS_INFO","features":[97]},{"name":"RSVP_WILDCARD_STYLE","features":[97]},{"name":"RsvpObjHdr","features":[97]},{"name":"Rsvp_Hop_IPv4","features":[97,15]},{"name":"SENDER_TSPEC","features":[97]},{"name":"SERVICETYPE_BESTEFFORT","features":[97]},{"name":"SERVICETYPE_CONTROLLEDLOAD","features":[97]},{"name":"SERVICETYPE_GENERAL_INFORMATION","features":[97]},{"name":"SERVICETYPE_GUARANTEED","features":[97]},{"name":"SERVICETYPE_NETWORK_CONTROL","features":[97]},{"name":"SERVICETYPE_NETWORK_UNAVAILABLE","features":[97]},{"name":"SERVICETYPE_NOCHANGE","features":[97]},{"name":"SERVICETYPE_NONCONFORMING","features":[97]},{"name":"SERVICETYPE_NOTRAFFIC","features":[97]},{"name":"SERVICETYPE_QUALITATIVE","features":[97]},{"name":"SERVICE_BESTEFFORT","features":[97]},{"name":"SERVICE_CONTROLLEDLOAD","features":[97]},{"name":"SERVICE_GUARANTEED","features":[97]},{"name":"SERVICE_NO_QOS_SIGNALING","features":[97]},{"name":"SERVICE_NO_TRAFFIC_CONTROL","features":[97]},{"name":"SERVICE_QUALITATIVE","features":[97]},{"name":"SESSFLG_E_Police","features":[97]},{"name":"SIPAERROR_FIRMWAREFAILURE","features":[97]},{"name":"SIPAERROR_INTERNALFAILURE","features":[97]},{"name":"SIPAEVENTTYPE_AGGREGATION","features":[97]},{"name":"SIPAEVENTTYPE_AUTHORITY","features":[97]},{"name":"SIPAEVENTTYPE_CONTAINER","features":[97]},{"name":"SIPAEVENTTYPE_DRTM","features":[97]},{"name":"SIPAEVENTTYPE_ELAM","features":[97]},{"name":"SIPAEVENTTYPE_ERROR","features":[97]},{"name":"SIPAEVENTTYPE_INFORMATION","features":[97]},{"name":"SIPAEVENTTYPE_KSR","features":[97]},{"name":"SIPAEVENTTYPE_LOADEDMODULE","features":[97]},{"name":"SIPAEVENTTYPE_NONMEASURED","features":[97]},{"name":"SIPAEVENTTYPE_OSPARAMETER","features":[97]},{"name":"SIPAEVENTTYPE_PREOSPARAMETER","features":[97]},{"name":"SIPAEVENTTYPE_TRUSTPOINT","features":[97]},{"name":"SIPAEVENTTYPE_VBS","features":[97]},{"name":"SIPAEVENT_APPLICATION_RETURN","features":[97]},{"name":"SIPAEVENT_APPLICATION_SVN","features":[97]},{"name":"SIPAEVENT_AUTHENTICODEHASH","features":[97]},{"name":"SIPAEVENT_AUTHORITYISSUER","features":[97]},{"name":"SIPAEVENT_AUTHORITYPUBKEY","features":[97]},{"name":"SIPAEVENT_AUTHORITYPUBLISHER","features":[97]},{"name":"SIPAEVENT_AUTHORITYSERIAL","features":[97]},{"name":"SIPAEVENT_AUTHORITYSHA1THUMBPRINT","features":[97]},{"name":"SIPAEVENT_BITLOCKER_UNLOCK","features":[97]},{"name":"SIPAEVENT_BOOTCOUNTER","features":[97]},{"name":"SIPAEVENT_BOOTDEBUGGING","features":[97]},{"name":"SIPAEVENT_BOOT_REVOCATION_LIST","features":[97]},{"name":"SIPAEVENT_CODEINTEGRITY","features":[97]},{"name":"SIPAEVENT_COUNTERID","features":[97]},{"name":"SIPAEVENT_DATAEXECUTIONPREVENTION","features":[97]},{"name":"SIPAEVENT_DRIVER_LOAD_POLICY","features":[97]},{"name":"SIPAEVENT_DRTM_AMD_SMM_HASH","features":[97]},{"name":"SIPAEVENT_DRTM_AMD_SMM_SIGNER_KEY","features":[97]},{"name":"SIPAEVENT_DRTM_SMM_LEVEL","features":[97]},{"name":"SIPAEVENT_DRTM_STATE_AUTH","features":[97]},{"name":"SIPAEVENT_DUMPS_DISABLED","features":[97]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_ENABLED","features":[97]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_KEY_DIGEST","features":[97]},{"name":"SIPAEVENT_ELAM_CONFIGURATION","features":[97]},{"name":"SIPAEVENT_ELAM_KEYNAME","features":[97]},{"name":"SIPAEVENT_ELAM_MEASURED","features":[97]},{"name":"SIPAEVENT_ELAM_POLICY","features":[97]},{"name":"SIPAEVENT_EVENTCOUNTER","features":[97]},{"name":"SIPAEVENT_FILEPATH","features":[97]},{"name":"SIPAEVENT_FLIGHTSIGNING","features":[97]},{"name":"SIPAEVENT_HASHALGORITHMID","features":[97]},{"name":"SIPAEVENT_HIBERNATION_DISABLED","features":[97]},{"name":"SIPAEVENT_HYPERVISOR_BOOT_DMA_PROTECTION","features":[97]},{"name":"SIPAEVENT_HYPERVISOR_DEBUG","features":[97]},{"name":"SIPAEVENT_HYPERVISOR_IOMMU_POLICY","features":[97]},{"name":"SIPAEVENT_HYPERVISOR_LAUNCH_TYPE","features":[97]},{"name":"SIPAEVENT_HYPERVISOR_MMIO_NX_POLICY","features":[97]},{"name":"SIPAEVENT_HYPERVISOR_MSR_FILTER_POLICY","features":[97]},{"name":"SIPAEVENT_HYPERVISOR_PATH","features":[97]},{"name":"SIPAEVENT_IMAGEBASE","features":[97]},{"name":"SIPAEVENT_IMAGESIZE","features":[97]},{"name":"SIPAEVENT_IMAGEVALIDATED","features":[97]},{"name":"SIPAEVENT_INFORMATION","features":[97]},{"name":"SIPAEVENT_KSR_SIGNATURE","features":[97]},{"name":"SIPAEVENT_KSR_SIGNATURE_PAYLOAD","features":[97]},{"name":"SIPAEVENT_LSAISO_CONFIG","features":[97]},{"name":"SIPAEVENT_MODULE_HSP","features":[97]},{"name":"SIPAEVENT_MODULE_SVN","features":[97]},{"name":"SIPAEVENT_MORBIT_API_STATUS","features":[97]},{"name":"SIPAEVENT_MORBIT_NOT_CANCELABLE","features":[97]},{"name":"SIPAEVENT_NOAUTHORITY","features":[97]},{"name":"SIPAEVENT_OSDEVICE","features":[97]},{"name":"SIPAEVENT_OSKERNELDEBUG","features":[97]},{"name":"SIPAEVENT_OS_REVOCATION_LIST","features":[97]},{"name":"SIPAEVENT_PAGEFILE_ENCRYPTION_ENABLED","features":[97]},{"name":"SIPAEVENT_PHYSICALADDRESSEXTENSION","features":[97]},{"name":"SIPAEVENT_REVOCATION_LIST_PAYLOAD","features":[97]},{"name":"SIPAEVENT_SAFEMODE","features":[97]},{"name":"SIPAEVENT_SBCP_INFO","features":[97]},{"name":"SIPAEVENT_SBCP_INFO_PAYLOAD_V1","features":[97]},{"name":"SIPAEVENT_SI_POLICY","features":[97]},{"name":"SIPAEVENT_SI_POLICY_PAYLOAD","features":[97]},{"name":"SIPAEVENT_SMT_STATUS","features":[97]},{"name":"SIPAEVENT_SVN_CHAIN_STATUS","features":[97]},{"name":"SIPAEVENT_SYSTEMROOT","features":[97]},{"name":"SIPAEVENT_TESTSIGNING","features":[97]},{"name":"SIPAEVENT_TRANSFER_CONTROL","features":[97]},{"name":"SIPAEVENT_VBS_DUMP_USES_AMEROOT","features":[97]},{"name":"SIPAEVENT_VBS_HVCI_POLICY","features":[97]},{"name":"SIPAEVENT_VBS_IOMMU_REQUIRED","features":[97]},{"name":"SIPAEVENT_VBS_MANDATORY_ENFORCEMENT","features":[97]},{"name":"SIPAEVENT_VBS_MICROSOFT_BOOT_CHAIN_REQUIRED","features":[97]},{"name":"SIPAEVENT_VBS_MMIO_NX_REQUIRED","features":[97]},{"name":"SIPAEVENT_VBS_MSR_FILTERING_REQUIRED","features":[97]},{"name":"SIPAEVENT_VBS_SECUREBOOT_REQUIRED","features":[97]},{"name":"SIPAEVENT_VBS_VSM_NOSECRETS_ENFORCED","features":[97]},{"name":"SIPAEVENT_VBS_VSM_REQUIRED","features":[97]},{"name":"SIPAEVENT_VSM_IDKS_INFO","features":[97]},{"name":"SIPAEVENT_VSM_IDK_INFO","features":[97]},{"name":"SIPAEVENT_VSM_IDK_INFO_PAYLOAD","features":[97]},{"name":"SIPAEVENT_VSM_IDK_RSA_INFO","features":[97]},{"name":"SIPAEVENT_VSM_LAUNCH_TYPE","features":[97]},{"name":"SIPAEVENT_WINPE","features":[97]},{"name":"SIPAEV_ACTION","features":[97]},{"name":"SIPAEV_AMD_SL_EVENT_BASE","features":[97]},{"name":"SIPAEV_AMD_SL_LOAD","features":[97]},{"name":"SIPAEV_AMD_SL_LOAD_1","features":[97]},{"name":"SIPAEV_AMD_SL_PSP_FW_SPLT","features":[97]},{"name":"SIPAEV_AMD_SL_PUB_KEY","features":[97]},{"name":"SIPAEV_AMD_SL_SEPARATOR","features":[97]},{"name":"SIPAEV_AMD_SL_SVN","features":[97]},{"name":"SIPAEV_AMD_SL_TSME_RB_FUSE","features":[97]},{"name":"SIPAEV_COMPACT_HASH","features":[97]},{"name":"SIPAEV_CPU_MICROCODE","features":[97]},{"name":"SIPAEV_EFI_ACTION","features":[97]},{"name":"SIPAEV_EFI_BOOT_SERVICES_APPLICATION","features":[97]},{"name":"SIPAEV_EFI_BOOT_SERVICES_DRIVER","features":[97]},{"name":"SIPAEV_EFI_EVENT_BASE","features":[97]},{"name":"SIPAEV_EFI_GPT_EVENT","features":[97]},{"name":"SIPAEV_EFI_HANDOFF_TABLES","features":[97]},{"name":"SIPAEV_EFI_HANDOFF_TABLES2","features":[97]},{"name":"SIPAEV_EFI_HCRTM_EVENT","features":[97]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB","features":[97]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB2","features":[97]},{"name":"SIPAEV_EFI_RUNTIME_SERVICES_DRIVER","features":[97]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_BLOB","features":[97]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_CONFIG","features":[97]},{"name":"SIPAEV_EFI_VARIABLE_AUTHORITY","features":[97]},{"name":"SIPAEV_EFI_VARIABLE_BOOT","features":[97]},{"name":"SIPAEV_EFI_VARIABLE_BOOT2","features":[97]},{"name":"SIPAEV_EFI_VARIABLE_DRIVER_CONFIG","features":[97]},{"name":"SIPAEV_EVENT_TAG","features":[97]},{"name":"SIPAEV_IPL","features":[97]},{"name":"SIPAEV_IPL_PARTITION_DATA","features":[97]},{"name":"SIPAEV_NONHOST_CODE","features":[97]},{"name":"SIPAEV_NONHOST_CONFIG","features":[97]},{"name":"SIPAEV_NONHOST_INFO","features":[97]},{"name":"SIPAEV_NO_ACTION","features":[97]},{"name":"SIPAEV_OMIT_BOOT_DEVICE_EVENTS","features":[97]},{"name":"SIPAEV_PLATFORM_CONFIG_FLAGS","features":[97]},{"name":"SIPAEV_POST_CODE","features":[97]},{"name":"SIPAEV_PREBOOT_CERT","features":[97]},{"name":"SIPAEV_SEPARATOR","features":[97]},{"name":"SIPAEV_S_CRTM_CONTENTS","features":[97]},{"name":"SIPAEV_S_CRTM_VERSION","features":[97]},{"name":"SIPAEV_TABLE_OF_DEVICES","features":[97]},{"name":"SIPAEV_TXT_BIOSAC_REG_DATA","features":[97]},{"name":"SIPAEV_TXT_BOOT_POL_HASH","features":[97]},{"name":"SIPAEV_TXT_BPM_HASH","features":[97]},{"name":"SIPAEV_TXT_BPM_INFO_HASH","features":[97]},{"name":"SIPAEV_TXT_CAP_VALUE","features":[97]},{"name":"SIPAEV_TXT_COLD_BOOT_BIOS_HASH","features":[97]},{"name":"SIPAEV_TXT_COMBINED_HASH","features":[97]},{"name":"SIPAEV_TXT_CPU_SCRTM_STAT","features":[97]},{"name":"SIPAEV_TXT_ELEMENTS_HASH","features":[97]},{"name":"SIPAEV_TXT_EVENT_BASE","features":[97]},{"name":"SIPAEV_TXT_HASH_START","features":[97]},{"name":"SIPAEV_TXT_KM_HASH","features":[97]},{"name":"SIPAEV_TXT_KM_INFO_HASH","features":[97]},{"name":"SIPAEV_TXT_LCP_AUTHORITIES_HASH","features":[97]},{"name":"SIPAEV_TXT_LCP_CONTROL_HASH","features":[97]},{"name":"SIPAEV_TXT_LCP_DETAILS_HASH","features":[97]},{"name":"SIPAEV_TXT_LCP_HASH","features":[97]},{"name":"SIPAEV_TXT_MLE_HASH","features":[97]},{"name":"SIPAEV_TXT_NV_INFO_HASH","features":[97]},{"name":"SIPAEV_TXT_OSSINITDATA_CAP_HASH","features":[97]},{"name":"SIPAEV_TXT_PCR_MAPPING","features":[97]},{"name":"SIPAEV_TXT_RANDOM_VALUE","features":[97]},{"name":"SIPAEV_TXT_SINIT_PUBKEY_HASH","features":[97]},{"name":"SIPAEV_TXT_STM_HASH","features":[97]},{"name":"SIPAEV_UNUSED","features":[97]},{"name":"SIPAHDRSIGNATURE","features":[97]},{"name":"SIPAKSRHDRSIGNATURE","features":[97]},{"name":"SIPALOGVERSION","features":[97]},{"name":"STATE_TIMEOUT","features":[97]},{"name":"Scope_list_ipv4","features":[97,15]},{"name":"Session_IPv4","features":[97,15]},{"name":"TCBASE","features":[97]},{"name":"TCG_PCClientPCREventStruct","features":[97]},{"name":"TCG_PCClientTaggedEventStruct","features":[97]},{"name":"TCI_ADD_FLOW_COMPLETE_HANDLER","features":[1,97]},{"name":"TCI_CLIENT_FUNC_LIST","features":[1,97]},{"name":"TCI_DEL_FLOW_COMPLETE_HANDLER","features":[1,97]},{"name":"TCI_MOD_FLOW_COMPLETE_HANDLER","features":[1,97]},{"name":"TCI_NOTIFY_HANDLER","features":[1,97]},{"name":"TC_GEN_FILTER","features":[97]},{"name":"TC_GEN_FLOW","features":[97,15]},{"name":"TC_IFC_DESCRIPTOR","features":[16,97]},{"name":"TC_NONCONF_BORROW","features":[97]},{"name":"TC_NONCONF_BORROW_PLUS","features":[97]},{"name":"TC_NONCONF_DISCARD","features":[97]},{"name":"TC_NONCONF_SHAPE","features":[97]},{"name":"TC_NOTIFY_FLOW_CLOSE","features":[97]},{"name":"TC_NOTIFY_IFC_CHANGE","features":[97]},{"name":"TC_NOTIFY_IFC_CLOSE","features":[97]},{"name":"TC_NOTIFY_IFC_UP","features":[97]},{"name":"TC_NOTIFY_PARAM_CHANGED","features":[97]},{"name":"TC_SUPPORTED_INFO_BUFFER","features":[16,97]},{"name":"TcAddFilter","features":[1,97]},{"name":"TcAddFlow","features":[1,97,15]},{"name":"TcCloseInterface","features":[1,97]},{"name":"TcDeleteFilter","features":[1,97]},{"name":"TcDeleteFlow","features":[1,97]},{"name":"TcDeregisterClient","features":[1,97]},{"name":"TcEnumerateFlows","features":[1,97,15]},{"name":"TcEnumerateInterfaces","features":[1,16,97]},{"name":"TcGetFlowNameA","features":[1,97]},{"name":"TcGetFlowNameW","features":[1,97]},{"name":"TcModifyFlow","features":[1,97,15]},{"name":"TcOpenInterfaceA","features":[1,97]},{"name":"TcOpenInterfaceW","features":[1,97]},{"name":"TcQueryFlowA","features":[97]},{"name":"TcQueryFlowW","features":[97]},{"name":"TcQueryInterface","features":[1,97]},{"name":"TcRegisterClient","features":[1,97]},{"name":"TcSetFlowA","features":[97]},{"name":"TcSetFlowW","features":[97]},{"name":"TcSetInterface","features":[1,97]},{"name":"UNSUPPORTED_CREDENTIAL_TYPE","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_256","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_384","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_512","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_1","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_256","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_384","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_512","features":[97]},{"name":"WBCL_DIGEST_ALG_BITMAP_SM3_256","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_256","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_384","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_512","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SHA_1","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_256","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_384","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_512","features":[97]},{"name":"WBCL_DIGEST_ALG_ID_SM3_256","features":[97]},{"name":"WBCL_HASH_LEN_SHA1","features":[97]},{"name":"WBCL_Iterator","features":[97]},{"name":"WBCL_LogHdr","features":[97]},{"name":"WBCL_MAX_HSP_UPGRADE_HASH_LEN","features":[97]},{"name":"class_ADSPEC","features":[97]},{"name":"class_CONFIRM","features":[97]},{"name":"class_ERROR_SPEC","features":[97]},{"name":"class_FILTER_SPEC","features":[97]},{"name":"class_FLOWSPEC","features":[97]},{"name":"class_INTEGRITY","features":[97]},{"name":"class_IS_FLOWSPEC","features":[97]},{"name":"class_MAX","features":[97]},{"name":"class_NULL","features":[97]},{"name":"class_POLICY_DATA","features":[97]},{"name":"class_RSVP_HOP","features":[97]},{"name":"class_SCOPE","features":[97]},{"name":"class_SENDER_TEMPLATE","features":[97]},{"name":"class_SENDER_TSPEC","features":[97]},{"name":"class_SESSION","features":[97]},{"name":"class_SESSION_GROUP","features":[97]},{"name":"class_STYLE","features":[97]},{"name":"class_TIME_VALUES","features":[97]},{"name":"ctype_ADSPEC_INTSERV","features":[97]},{"name":"ctype_ERROR_SPEC_ipv4","features":[97]},{"name":"ctype_FILTER_SPEC_ipv4","features":[97]},{"name":"ctype_FILTER_SPEC_ipv4GPI","features":[97]},{"name":"ctype_FLOWSPEC_Intserv0","features":[97]},{"name":"ctype_POLICY_DATA","features":[97]},{"name":"ctype_RSVP_HOP_ipv4","features":[97]},{"name":"ctype_SCOPE_list_ipv4","features":[97]},{"name":"ctype_SENDER_TEMPLATE_ipv4","features":[97]},{"name":"ctype_SENDER_TEMPLATE_ipv4GPI","features":[97]},{"name":"ctype_SENDER_TSPEC","features":[97]},{"name":"ctype_SESSION_ipv4","features":[97]},{"name":"ctype_SESSION_ipv4GPI","features":[97]},{"name":"ctype_STYLE","features":[97]},{"name":"int_serv_wkp","features":[97]},{"name":"ioctl_code","features":[97]},{"name":"mCOMPANY","features":[97]},{"name":"mIOC_IN","features":[97]},{"name":"mIOC_OUT","features":[97]},{"name":"mIOC_VENDOR","features":[97]}],"457":[{"name":"ALLOW_NO_AUTH","features":[98]},{"name":"ALL_SOURCES","features":[98]},{"name":"ANY_SOURCE","features":[98]},{"name":"ATADDRESSLEN","features":[98]},{"name":"AUTH_VALIDATION_EX","features":[1,98]},{"name":"DO_NOT_ALLOW_NO_AUTH","features":[98]},{"name":"ERROR_ACCESSING_TCPCFGDLL","features":[98]},{"name":"ERROR_ACCT_DISABLED","features":[98]},{"name":"ERROR_ACCT_EXPIRED","features":[98]},{"name":"ERROR_ACTION_REQUIRED","features":[98]},{"name":"ERROR_ALLOCATING_MEMORY","features":[98]},{"name":"ERROR_ALREADY_DISCONNECTING","features":[98]},{"name":"ERROR_ASYNC_REQUEST_PENDING","features":[98]},{"name":"ERROR_AUTHENTICATION_FAILURE","features":[98]},{"name":"ERROR_AUTH_INTERNAL","features":[98]},{"name":"ERROR_AUTOMATIC_VPN_FAILED","features":[98]},{"name":"ERROR_BAD_ADDRESS_SPECIFIED","features":[98]},{"name":"ERROR_BAD_CALLBACK_NUMBER","features":[98]},{"name":"ERROR_BAD_PHONE_NUMBER","features":[98]},{"name":"ERROR_BAD_STRING","features":[98]},{"name":"ERROR_BAD_USAGE_IN_INI_FILE","features":[98]},{"name":"ERROR_BIPLEX_PORT_NOT_AVAILABLE","features":[98]},{"name":"ERROR_BLOCKED","features":[98]},{"name":"ERROR_BROADBAND_ACTIVE","features":[98]},{"name":"ERROR_BROADBAND_NO_NIC","features":[98]},{"name":"ERROR_BROADBAND_TIMEOUT","features":[98]},{"name":"ERROR_BUFFER_INVALID","features":[98]},{"name":"ERROR_BUFFER_TOO_SMALL","features":[98]},{"name":"ERROR_BUNDLE_NOT_FOUND","features":[98]},{"name":"ERROR_CANNOT_DELETE","features":[98]},{"name":"ERROR_CANNOT_DO_CUSTOMDIAL","features":[98]},{"name":"ERROR_CANNOT_FIND_PHONEBOOK_ENTRY","features":[98]},{"name":"ERROR_CANNOT_GET_LANA","features":[98]},{"name":"ERROR_CANNOT_INITIATE_MOBIKE_UPDATE","features":[98]},{"name":"ERROR_CANNOT_LOAD_PHONEBOOK","features":[98]},{"name":"ERROR_CANNOT_LOAD_STRING","features":[98]},{"name":"ERROR_CANNOT_OPEN_PHONEBOOK","features":[98]},{"name":"ERROR_CANNOT_PROJECT_CLIENT","features":[98]},{"name":"ERROR_CANNOT_SET_PORT_INFO","features":[98]},{"name":"ERROR_CANNOT_SHARE_CONNECTION","features":[98]},{"name":"ERROR_CANNOT_USE_LOGON_CREDENTIALS","features":[98]},{"name":"ERROR_CANNOT_WRITE_PHONEBOOK","features":[98]},{"name":"ERROR_CERT_FOR_ENCRYPTION_NOT_FOUND","features":[98]},{"name":"ERROR_CHANGING_PASSWORD","features":[98]},{"name":"ERROR_CMD_TOO_LONG","features":[98]},{"name":"ERROR_CONGESTION","features":[98]},{"name":"ERROR_CONNECTING_DEVICE_NOT_FOUND","features":[98]},{"name":"ERROR_CONNECTION_ALREADY_SHARED","features":[98]},{"name":"ERROR_CONNECTION_REJECT","features":[98]},{"name":"ERROR_CORRUPT_PHONEBOOK","features":[98]},{"name":"ERROR_DCB_NOT_FOUND","features":[98]},{"name":"ERROR_DEFAULTOFF_MACRO_NOT_FOUND","features":[98]},{"name":"ERROR_DEVICENAME_NOT_FOUND","features":[98]},{"name":"ERROR_DEVICENAME_TOO_LONG","features":[98]},{"name":"ERROR_DEVICETYPE_DOES_NOT_EXIST","features":[98]},{"name":"ERROR_DEVICE_COMPLIANCE","features":[98]},{"name":"ERROR_DEVICE_DOES_NOT_EXIST","features":[98]},{"name":"ERROR_DEVICE_NOT_READY","features":[98]},{"name":"ERROR_DIAL_ALREADY_IN_PROGRESS","features":[98]},{"name":"ERROR_DISCONNECTION","features":[98]},{"name":"ERROR_DNSNAME_NOT_RESOLVABLE","features":[98]},{"name":"ERROR_DONOTDISTURB","features":[98]},{"name":"ERROR_EAPTLS_CACHE_CREDENTIALS_INVALID","features":[98]},{"name":"ERROR_EAPTLS_PASSWD_INVALID","features":[98]},{"name":"ERROR_EAPTLS_SCARD_CACHE_CREDENTIALS_INVALID","features":[98]},{"name":"ERROR_EAP_METHOD_DOES_NOT_SUPPORT_SSO","features":[98]},{"name":"ERROR_EAP_METHOD_NOT_INSTALLED","features":[98]},{"name":"ERROR_EAP_METHOD_OPERATION_NOT_SUPPORTED","features":[98]},{"name":"ERROR_EAP_SERVER_CERT_EXPIRED","features":[98]},{"name":"ERROR_EAP_SERVER_CERT_INVALID","features":[98]},{"name":"ERROR_EAP_SERVER_CERT_OTHER_ERROR","features":[98]},{"name":"ERROR_EAP_SERVER_CERT_REVOKED","features":[98]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_INVALID","features":[98]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NAME_REQUIRED","features":[98]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NOT_FOUND","features":[98]},{"name":"ERROR_EAP_USER_CERT_EXPIRED","features":[98]},{"name":"ERROR_EAP_USER_CERT_INVALID","features":[98]},{"name":"ERROR_EAP_USER_CERT_OTHER_ERROR","features":[98]},{"name":"ERROR_EAP_USER_CERT_REVOKED","features":[98]},{"name":"ERROR_EAP_USER_ROOT_CERT_EXPIRED","features":[98]},{"name":"ERROR_EAP_USER_ROOT_CERT_INVALID","features":[98]},{"name":"ERROR_EAP_USER_ROOT_CERT_NOT_FOUND","features":[98]},{"name":"ERROR_EMPTY_INI_FILE","features":[98]},{"name":"ERROR_EVENT_INVALID","features":[98]},{"name":"ERROR_FAILED_CP_REQUIRED","features":[98]},{"name":"ERROR_FAILED_TO_ENCRYPT","features":[98]},{"name":"ERROR_FAST_USER_SWITCH","features":[98]},{"name":"ERROR_FEATURE_DEPRECATED","features":[98]},{"name":"ERROR_FILE_COULD_NOT_BE_OPENED","features":[98]},{"name":"ERROR_FROM_DEVICE","features":[98]},{"name":"ERROR_HANGUP_FAILED","features":[98]},{"name":"ERROR_HARDWARE_FAILURE","features":[98]},{"name":"ERROR_HIBERNATION","features":[98]},{"name":"ERROR_IDLE_TIMEOUT","features":[98]},{"name":"ERROR_IKEV2_PSK_INTERFACE_ALREADY_EXISTS","features":[98]},{"name":"ERROR_INCOMPATIBLE","features":[98]},{"name":"ERROR_INTERACTIVE_MODE","features":[98]},{"name":"ERROR_INTERNAL_ADDRESS_FAILURE","features":[98]},{"name":"ERROR_INVALID_AUTH_STATE","features":[98]},{"name":"ERROR_INVALID_CALLBACK_NUMBER","features":[98]},{"name":"ERROR_INVALID_COMPRESSION_SPECIFIED","features":[98]},{"name":"ERROR_INVALID_DESTINATION_IP","features":[98]},{"name":"ERROR_INVALID_FUNCTION_FOR_ENTRY","features":[98]},{"name":"ERROR_INVALID_INTERFACE_CONFIG","features":[98]},{"name":"ERROR_INVALID_MSCHAPV2_CONFIG","features":[98]},{"name":"ERROR_INVALID_PEAP_COOKIE_ATTRIBUTES","features":[98]},{"name":"ERROR_INVALID_PEAP_COOKIE_CONFIG","features":[98]},{"name":"ERROR_INVALID_PEAP_COOKIE_USER","features":[98]},{"name":"ERROR_INVALID_PORT_HANDLE","features":[98]},{"name":"ERROR_INVALID_PREFERENCES","features":[98]},{"name":"ERROR_INVALID_SERVER_CERT","features":[98]},{"name":"ERROR_INVALID_SIZE","features":[98]},{"name":"ERROR_INVALID_SMM","features":[98]},{"name":"ERROR_INVALID_TUNNELID","features":[98]},{"name":"ERROR_INVALID_VPNSTRATEGY","features":[98]},{"name":"ERROR_IN_COMMAND","features":[98]},{"name":"ERROR_IPSEC_SERVICE_STOPPED","features":[98]},{"name":"ERROR_IPXCP_DIALOUT_ALREADY_ACTIVE","features":[98]},{"name":"ERROR_IPXCP_NET_NUMBER_CONFLICT","features":[98]},{"name":"ERROR_IPXCP_NO_DIALIN_CONFIGURED","features":[98]},{"name":"ERROR_IPXCP_NO_DIALOUT_CONFIGURED","features":[98]},{"name":"ERROR_IP_CONFIGURATION","features":[98]},{"name":"ERROR_KEY_NOT_FOUND","features":[98]},{"name":"ERROR_LINE_BUSY","features":[98]},{"name":"ERROR_LINK_FAILURE","features":[98]},{"name":"ERROR_MACRO_NOT_DEFINED","features":[98]},{"name":"ERROR_MACRO_NOT_FOUND","features":[98]},{"name":"ERROR_MESSAGE_MACRO_NOT_FOUND","features":[98]},{"name":"ERROR_MOBIKE_DISABLED","features":[98]},{"name":"ERROR_NAME_EXISTS_ON_NET","features":[98]},{"name":"ERROR_NETBIOS_ERROR","features":[98]},{"name":"ERROR_NOT_BINARY_MACRO","features":[98]},{"name":"ERROR_NOT_NAP_CAPABLE","features":[98]},{"name":"ERROR_NO_ACTIVE_ISDN_LINES","features":[98]},{"name":"ERROR_NO_ANSWER","features":[98]},{"name":"ERROR_NO_CARRIER","features":[98]},{"name":"ERROR_NO_CERTIFICATE","features":[98]},{"name":"ERROR_NO_COMMAND_FOUND","features":[98]},{"name":"ERROR_NO_CONNECTION","features":[98]},{"name":"ERROR_NO_DIALIN_PERMISSION","features":[98]},{"name":"ERROR_NO_DIALTONE","features":[98]},{"name":"ERROR_NO_DIFF_USER_AT_LOGON","features":[98]},{"name":"ERROR_NO_EAPTLS_CERTIFICATE","features":[98]},{"name":"ERROR_NO_ENDPOINTS","features":[98]},{"name":"ERROR_NO_IP_ADDRESSES","features":[98]},{"name":"ERROR_NO_IP_RAS_ADAPTER","features":[98]},{"name":"ERROR_NO_ISDN_CHANNELS_AVAILABLE","features":[98]},{"name":"ERROR_NO_LOCAL_ENCRYPTION","features":[98]},{"name":"ERROR_NO_MAC_FOR_PORT","features":[98]},{"name":"ERROR_NO_REG_CERT_AT_LOGON","features":[98]},{"name":"ERROR_NO_REMOTE_ENCRYPTION","features":[98]},{"name":"ERROR_NO_RESPONSES","features":[98]},{"name":"ERROR_NO_SMART_CARD_READER","features":[98]},{"name":"ERROR_NUMBERCHANGED","features":[98]},{"name":"ERROR_OAKLEY_ATTRIB_FAIL","features":[98]},{"name":"ERROR_OAKLEY_AUTH_FAIL","features":[98]},{"name":"ERROR_OAKLEY_ERROR","features":[98]},{"name":"ERROR_OAKLEY_GENERAL_PROCESSING","features":[98]},{"name":"ERROR_OAKLEY_NO_CERT","features":[98]},{"name":"ERROR_OAKLEY_NO_PEER_CERT","features":[98]},{"name":"ERROR_OAKLEY_NO_POLICY","features":[98]},{"name":"ERROR_OAKLEY_TIMED_OUT","features":[98]},{"name":"ERROR_OUTOFORDER","features":[98]},{"name":"ERROR_OUT_OF_BUFFERS","features":[98]},{"name":"ERROR_OVERRUN","features":[98]},{"name":"ERROR_PARTIAL_RESPONSE_LOOPING","features":[98]},{"name":"ERROR_PASSWD_EXPIRED","features":[98]},{"name":"ERROR_PEAP_CRYPTOBINDING_INVALID","features":[98]},{"name":"ERROR_PEAP_CRYPTOBINDING_NOTRECEIVED","features":[98]},{"name":"ERROR_PEAP_IDENTITY_MISMATCH","features":[98]},{"name":"ERROR_PEAP_SERVER_REJECTED_CLIENT_TLV","features":[98]},{"name":"ERROR_PHONE_NUMBER_TOO_LONG","features":[98]},{"name":"ERROR_PLUGIN_NOT_INSTALLED","features":[98]},{"name":"ERROR_PORT_ALREADY_OPEN","features":[98]},{"name":"ERROR_PORT_DISCONNECTED","features":[98]},{"name":"ERROR_PORT_NOT_AVAILABLE","features":[98]},{"name":"ERROR_PORT_NOT_CONFIGURED","features":[98]},{"name":"ERROR_PORT_NOT_CONNECTED","features":[98]},{"name":"ERROR_PORT_NOT_FOUND","features":[98]},{"name":"ERROR_PORT_NOT_OPEN","features":[98]},{"name":"ERROR_PORT_OR_DEVICE","features":[98]},{"name":"ERROR_PPP_CP_REJECTED","features":[98]},{"name":"ERROR_PPP_INVALID_PACKET","features":[98]},{"name":"ERROR_PPP_LCP_TERMINATED","features":[98]},{"name":"ERROR_PPP_LOOPBACK_DETECTED","features":[98]},{"name":"ERROR_PPP_NCP_TERMINATED","features":[98]},{"name":"ERROR_PPP_NOT_CONVERGING","features":[98]},{"name":"ERROR_PPP_NO_ADDRESS_ASSIGNED","features":[98]},{"name":"ERROR_PPP_NO_PROTOCOLS_CONFIGURED","features":[98]},{"name":"ERROR_PPP_NO_RESPONSE","features":[98]},{"name":"ERROR_PPP_REMOTE_TERMINATED","features":[98]},{"name":"ERROR_PPP_REQUIRED_ADDRESS_REJECTED","features":[98]},{"name":"ERROR_PPP_TIMEOUT","features":[98]},{"name":"ERROR_PROJECTION_NOT_COMPLETE","features":[98]},{"name":"ERROR_PROTOCOL_ENGINE_DISABLED","features":[98]},{"name":"ERROR_PROTOCOL_NOT_CONFIGURED","features":[98]},{"name":"ERROR_RASAUTO_CANNOT_INITIALIZE","features":[98]},{"name":"ERROR_RASMAN_CANNOT_INITIALIZE","features":[98]},{"name":"ERROR_RASMAN_SERVICE_STOPPED","features":[98]},{"name":"ERROR_RASQEC_CONN_DOESNOTEXIST","features":[98]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_CONNECTED","features":[98]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_ENABLED","features":[98]},{"name":"ERROR_RASQEC_RESOURCE_CREATION_FAILED","features":[98]},{"name":"ERROR_RASQEC_TIMEOUT","features":[98]},{"name":"ERROR_READING_DEFAULTOFF","features":[98]},{"name":"ERROR_READING_DEVICENAME","features":[98]},{"name":"ERROR_READING_DEVICETYPE","features":[98]},{"name":"ERROR_READING_INI_FILE","features":[98]},{"name":"ERROR_READING_MAXCARRIERBPS","features":[98]},{"name":"ERROR_READING_MAXCONNECTBPS","features":[98]},{"name":"ERROR_READING_SCARD","features":[98]},{"name":"ERROR_READING_SECTIONNAME","features":[98]},{"name":"ERROR_READING_USAGE","features":[98]},{"name":"ERROR_RECV_BUF_FULL","features":[98]},{"name":"ERROR_REMOTE_DISCONNECTION","features":[98]},{"name":"ERROR_REMOTE_REQUIRES_ENCRYPTION","features":[98]},{"name":"ERROR_REQUEST_TIMEOUT","features":[98]},{"name":"ERROR_RESTRICTED_LOGON_HOURS","features":[98]},{"name":"ERROR_ROUTE_NOT_ALLOCATED","features":[98]},{"name":"ERROR_ROUTE_NOT_AVAILABLE","features":[98]},{"name":"ERROR_SCRIPT_SYNTAX","features":[98]},{"name":"ERROR_SERVER_GENERAL_NET_FAILURE","features":[98]},{"name":"ERROR_SERVER_NOT_RESPONDING","features":[98]},{"name":"ERROR_SERVER_OUT_OF_RESOURCES","features":[98]},{"name":"ERROR_SERVER_POLICY","features":[98]},{"name":"ERROR_SHARE_CONNECTION_FAILED","features":[98]},{"name":"ERROR_SHARING_ADDRESS_EXISTS","features":[98]},{"name":"ERROR_SHARING_CHANGE_FAILED","features":[98]},{"name":"ERROR_SHARING_HOST_ADDRESS_CONFLICT","features":[98]},{"name":"ERROR_SHARING_MULTIPLE_ADDRESSES","features":[98]},{"name":"ERROR_SHARING_NO_PRIVATE_LAN","features":[98]},{"name":"ERROR_SHARING_PRIVATE_INSTALL","features":[98]},{"name":"ERROR_SHARING_ROUTER_INSTALL","features":[98]},{"name":"ERROR_SHARING_RRAS_CONFLICT","features":[98]},{"name":"ERROR_SLIP_REQUIRES_IP","features":[98]},{"name":"ERROR_SMART_CARD_REQUIRED","features":[98]},{"name":"ERROR_SMM_TIMEOUT","features":[98]},{"name":"ERROR_SMM_UNINITIALIZED","features":[98]},{"name":"ERROR_SSO_CERT_MISSING","features":[98]},{"name":"ERROR_SSTP_COOKIE_SET_FAILURE","features":[98]},{"name":"ERROR_STATE_MACHINES_ALREADY_STARTED","features":[98]},{"name":"ERROR_STATE_MACHINES_NOT_STARTED","features":[98]},{"name":"ERROR_SYSTEM_SUSPENDED","features":[98]},{"name":"ERROR_TAPI_CONFIGURATION","features":[98]},{"name":"ERROR_TEMPFAILURE","features":[98]},{"name":"ERROR_TOO_MANY_LINE_ERRORS","features":[98]},{"name":"ERROR_TS_UNACCEPTABLE","features":[98]},{"name":"ERROR_UNABLE_TO_AUTHENTICATE_SERVER","features":[98]},{"name":"ERROR_UNEXPECTED_RESPONSE","features":[98]},{"name":"ERROR_UNKNOWN","features":[98]},{"name":"ERROR_UNKNOWN_DEVICE_TYPE","features":[98]},{"name":"ERROR_UNKNOWN_FRAMED_PROTOCOL","features":[98]},{"name":"ERROR_UNKNOWN_RESPONSE_KEY","features":[98]},{"name":"ERROR_UNKNOWN_SERVICE_TYPE","features":[98]},{"name":"ERROR_UNRECOGNIZED_RESPONSE","features":[98]},{"name":"ERROR_UNSUPPORTED_BPS","features":[98]},{"name":"ERROR_UPDATECONNECTION_REQUEST_IN_PROCESS","features":[98]},{"name":"ERROR_USER_DISCONNECTION","features":[98]},{"name":"ERROR_USER_LOGOFF","features":[98]},{"name":"ERROR_VALIDATING_SERVER_CERT","features":[98]},{"name":"ERROR_VOICE_ANSWER","features":[98]},{"name":"ERROR_VPN_BAD_CERT","features":[98]},{"name":"ERROR_VPN_BAD_PSK","features":[98]},{"name":"ERROR_VPN_DISCONNECT","features":[98]},{"name":"ERROR_VPN_GRE_BLOCKED","features":[98]},{"name":"ERROR_VPN_PLUGIN_GENERIC","features":[98]},{"name":"ERROR_VPN_REFUSED","features":[98]},{"name":"ERROR_VPN_TIMEOUT","features":[98]},{"name":"ERROR_WRITING_DEFAULTOFF","features":[98]},{"name":"ERROR_WRITING_DEVICENAME","features":[98]},{"name":"ERROR_WRITING_DEVICETYPE","features":[98]},{"name":"ERROR_WRITING_INITBPS","features":[98]},{"name":"ERROR_WRITING_MAXCARRIERBPS","features":[98]},{"name":"ERROR_WRITING_MAXCONNECTBPS","features":[98]},{"name":"ERROR_WRITING_SECTIONNAME","features":[98]},{"name":"ERROR_WRITING_USAGE","features":[98]},{"name":"ERROR_WRONG_DEVICE_ATTACHED","features":[98]},{"name":"ERROR_WRONG_INFO_SPECIFIED","features":[98]},{"name":"ERROR_WRONG_KEY_SPECIFIED","features":[98]},{"name":"ERROR_WRONG_MODULE","features":[98]},{"name":"ERROR_WRONG_TUNNEL_TYPE","features":[98]},{"name":"ERROR_X25_DIAGNOSTIC","features":[98]},{"name":"ET_None","features":[98]},{"name":"ET_Optional","features":[98]},{"name":"ET_Require","features":[98]},{"name":"ET_RequireMax","features":[98]},{"name":"GRE_CONFIG_PARAMS0","features":[98]},{"name":"HRASCONN","features":[98]},{"name":"IKEV2_CONFIG_PARAMS","features":[1,98,68]},{"name":"IKEV2_ID_PAYLOAD_TYPE","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_DN","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_GN","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_FQDN","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_ID_IPV6_ADDR","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_INVALID","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_IPV4_ADDR","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_KEY_ID","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_MAX","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED1","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED2","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED3","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED4","features":[98]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RFC822_ADDR","features":[98]},{"name":"IKEV2_PROJECTION_INFO","features":[98]},{"name":"IKEV2_PROJECTION_INFO2","features":[98]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS2","features":[98,68]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS3","features":[1,98,68]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS4","features":[1,98,68]},{"name":"IPADDRESSLEN","features":[98]},{"name":"IPV6_ADDRESS_LEN_IN_BYTES","features":[98]},{"name":"IPXADDRESSLEN","features":[98]},{"name":"L2TP_CONFIG_PARAMS0","features":[98]},{"name":"L2TP_CONFIG_PARAMS1","features":[98]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS1","features":[98]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS2","features":[98]},{"name":"MAXIPADRESSLEN","features":[98]},{"name":"MAX_SSTP_HASH_SIZE","features":[98]},{"name":"METHOD_BGP4_AS_PATH","features":[98]},{"name":"METHOD_BGP4_NEXTHOP_ATTR","features":[98]},{"name":"METHOD_BGP4_PA_ORIGIN","features":[98]},{"name":"METHOD_BGP4_PEER_ID","features":[98]},{"name":"METHOD_RIP2_NEIGHBOUR_ADDR","features":[98]},{"name":"METHOD_RIP2_OUTBOUND_INTF","features":[98]},{"name":"METHOD_RIP2_ROUTE_TAG","features":[98]},{"name":"METHOD_RIP2_ROUTE_TIMESTAMP","features":[98]},{"name":"METHOD_TYPE_ALL_METHODS","features":[98]},{"name":"MGM_ENUM_TYPES","features":[98]},{"name":"MGM_FORWARD_STATE_FLAG","features":[98]},{"name":"MGM_IF_ENTRY","features":[1,98]},{"name":"MGM_JOIN_STATE_FLAG","features":[98]},{"name":"MGM_MFE_STATS_0","features":[98]},{"name":"MGM_MFE_STATS_1","features":[98]},{"name":"MPRAPI_ADMIN_DLL_CALLBACKS","features":[1,98,15]},{"name":"MPRAPI_ADMIN_DLL_VERSION_1","features":[98]},{"name":"MPRAPI_ADMIN_DLL_VERSION_2","features":[98]},{"name":"MPRAPI_IF_CUSTOM_CONFIG_FOR_IKEV2","features":[98]},{"name":"MPRAPI_IKEV2_AUTH_USING_CERT","features":[98]},{"name":"MPRAPI_IKEV2_AUTH_USING_EAP","features":[98]},{"name":"MPRAPI_IKEV2_PROJECTION_INFO_TYPE","features":[98]},{"name":"MPRAPI_IKEV2_SET_TUNNEL_CONFIG_PARAMS","features":[98]},{"name":"MPRAPI_L2TP_SET_TUNNEL_CONFIG_PARAMS","features":[98]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_1","features":[98]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_2","features":[98]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_3","features":[98]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_1","features":[98]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_2","features":[98]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_3","features":[98]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_4","features":[98]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_5","features":[98]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_1","features":[98]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_2","features":[98]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_3","features":[98]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_4","features":[98]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_5","features":[98]},{"name":"MPRAPI_OBJECT_HEADER","features":[98]},{"name":"MPRAPI_OBJECT_TYPE","features":[98]},{"name":"MPRAPI_OBJECT_TYPE_AUTH_VALIDATION_OBJECT","features":[98]},{"name":"MPRAPI_OBJECT_TYPE_IF_CUSTOM_CONFIG_OBJECT","features":[98]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_OBJECT","features":[98]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_SET_CONFIG_OBJECT","features":[98]},{"name":"MPRAPI_OBJECT_TYPE_RAS_CONNECTION_OBJECT","features":[98]},{"name":"MPRAPI_OBJECT_TYPE_UPDATE_CONNECTION_OBJECT","features":[98]},{"name":"MPRAPI_PPP_PROJECTION_INFO_TYPE","features":[98]},{"name":"MPRAPI_RAS_CONNECTION_OBJECT_REVISION_1","features":[98]},{"name":"MPRAPI_RAS_UPDATE_CONNECTION_OBJECT_REVISION_1","features":[98]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_GRE","features":[98]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_IKEV2","features":[98]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_L2TP","features":[98]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_PPTP","features":[98]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_SSTP","features":[98]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS0","features":[1,98,68]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS1","features":[1,98,68]},{"name":"MPRDM_DialAll","features":[98]},{"name":"MPRDM_DialAsNeeded","features":[98]},{"name":"MPRDM_DialFirst","features":[98]},{"name":"MPRDT_Atm","features":[98]},{"name":"MPRDT_FrameRelay","features":[98]},{"name":"MPRDT_Generic","features":[98]},{"name":"MPRDT_Irda","features":[98]},{"name":"MPRDT_Isdn","features":[98]},{"name":"MPRDT_Modem","features":[98]},{"name":"MPRDT_Pad","features":[98]},{"name":"MPRDT_Parallel","features":[98]},{"name":"MPRDT_SW56","features":[98]},{"name":"MPRDT_Serial","features":[98]},{"name":"MPRDT_Sonet","features":[98]},{"name":"MPRDT_Vpn","features":[98]},{"name":"MPRDT_X25","features":[98]},{"name":"MPRET_Direct","features":[98]},{"name":"MPRET_Phone","features":[98]},{"name":"MPRET_Vpn","features":[98]},{"name":"MPRIDS_Disabled","features":[98]},{"name":"MPRIDS_UseGlobalValue","features":[98]},{"name":"MPRIO_DisableLcpExtensions","features":[98]},{"name":"MPRIO_IpHeaderCompression","features":[98]},{"name":"MPRIO_IpSecPreSharedKey","features":[98]},{"name":"MPRIO_NetworkLogon","features":[98]},{"name":"MPRIO_PromoteAlternates","features":[98]},{"name":"MPRIO_RemoteDefaultGateway","features":[98]},{"name":"MPRIO_RequireCHAP","features":[98]},{"name":"MPRIO_RequireDataEncryption","features":[98]},{"name":"MPRIO_RequireEAP","features":[98]},{"name":"MPRIO_RequireEncryptedPw","features":[98]},{"name":"MPRIO_RequireMachineCertificates","features":[98]},{"name":"MPRIO_RequireMsCHAP","features":[98]},{"name":"MPRIO_RequireMsCHAP2","features":[98]},{"name":"MPRIO_RequireMsEncryptedPw","features":[98]},{"name":"MPRIO_RequirePAP","features":[98]},{"name":"MPRIO_RequireSPAP","features":[98]},{"name":"MPRIO_SecureLocalFiles","features":[98]},{"name":"MPRIO_SharedPhoneNumbers","features":[98]},{"name":"MPRIO_SpecificIpAddr","features":[98]},{"name":"MPRIO_SpecificNameServers","features":[98]},{"name":"MPRIO_SwCompression","features":[98]},{"name":"MPRIO_UsePreSharedKeyForIkev2Initiator","features":[98]},{"name":"MPRIO_UsePreSharedKeyForIkev2Responder","features":[98]},{"name":"MPRNP_Ip","features":[98]},{"name":"MPRNP_Ipv6","features":[98]},{"name":"MPRNP_Ipx","features":[98]},{"name":"MPR_CERT_EKU","features":[1,98]},{"name":"MPR_CREDENTIALSEX_0","features":[98]},{"name":"MPR_CREDENTIALSEX_1","features":[98]},{"name":"MPR_DEVICE_0","features":[98]},{"name":"MPR_DEVICE_1","features":[98]},{"name":"MPR_ENABLE_RAS_ON_DEVICE","features":[98]},{"name":"MPR_ENABLE_ROUTING_ON_DEVICE","features":[98]},{"name":"MPR_ET","features":[98]},{"name":"MPR_ET_None","features":[98]},{"name":"MPR_ET_Optional","features":[98]},{"name":"MPR_ET_Require","features":[98]},{"name":"MPR_ET_RequireMax","features":[98]},{"name":"MPR_FILTER_0","features":[1,98]},{"name":"MPR_IFTRANSPORT_0","features":[1,98]},{"name":"MPR_IF_CUSTOMINFOEX0","features":[98,68]},{"name":"MPR_IF_CUSTOMINFOEX1","features":[98,68]},{"name":"MPR_IF_CUSTOMINFOEX2","features":[98,15,68]},{"name":"MPR_INTERFACE_0","features":[1,98]},{"name":"MPR_INTERFACE_1","features":[1,98]},{"name":"MPR_INTERFACE_2","features":[1,98]},{"name":"MPR_INTERFACE_3","features":[1,98,15]},{"name":"MPR_INTERFACE_ADMIN_DISABLED","features":[98]},{"name":"MPR_INTERFACE_CONNECTION_FAILURE","features":[98]},{"name":"MPR_INTERFACE_DIALOUT_HOURS_RESTRICTION","features":[98]},{"name":"MPR_INTERFACE_DIAL_MODE","features":[98]},{"name":"MPR_INTERFACE_NO_DEVICE","features":[98]},{"name":"MPR_INTERFACE_NO_MEDIA_SENSE","features":[98]},{"name":"MPR_INTERFACE_OUT_OF_RESOURCES","features":[98]},{"name":"MPR_INTERFACE_SERVICE_PAUSED","features":[98]},{"name":"MPR_IPINIP_INTERFACE_0","features":[98]},{"name":"MPR_MaxAreaCode","features":[98]},{"name":"MPR_MaxCallbackNumber","features":[98]},{"name":"MPR_MaxDeviceName","features":[98]},{"name":"MPR_MaxDeviceType","features":[98]},{"name":"MPR_MaxEntryName","features":[98]},{"name":"MPR_MaxFacilities","features":[98]},{"name":"MPR_MaxIpAddress","features":[98]},{"name":"MPR_MaxIpxAddress","features":[98]},{"name":"MPR_MaxPadType","features":[98]},{"name":"MPR_MaxPhoneNumber","features":[98]},{"name":"MPR_MaxUserData","features":[98]},{"name":"MPR_MaxX25Address","features":[98]},{"name":"MPR_SERVER_0","features":[1,98]},{"name":"MPR_SERVER_1","features":[98]},{"name":"MPR_SERVER_2","features":[98]},{"name":"MPR_SERVER_EX0","features":[1,98,68]},{"name":"MPR_SERVER_EX1","features":[1,98,68]},{"name":"MPR_SERVER_SET_CONFIG_EX0","features":[1,98,68]},{"name":"MPR_SERVER_SET_CONFIG_EX1","features":[1,98,68]},{"name":"MPR_TRANSPORT_0","features":[1,98]},{"name":"MPR_VPN_TRAFFIC_SELECTOR","features":[98,15]},{"name":"MPR_VPN_TRAFFIC_SELECTORS","features":[98,15]},{"name":"MPR_VPN_TS_IPv4_ADDR_RANGE","features":[98]},{"name":"MPR_VPN_TS_IPv6_ADDR_RANGE","features":[98]},{"name":"MPR_VPN_TS_TYPE","features":[98]},{"name":"MPR_VS","features":[98]},{"name":"MPR_VS_Default","features":[98]},{"name":"MPR_VS_Ikev2First","features":[98]},{"name":"MPR_VS_Ikev2Only","features":[98]},{"name":"MPR_VS_L2tpFirst","features":[98]},{"name":"MPR_VS_L2tpOnly","features":[98]},{"name":"MPR_VS_PptpFirst","features":[98]},{"name":"MPR_VS_PptpOnly","features":[98]},{"name":"MgmAddGroupMembershipEntry","features":[1,98]},{"name":"MgmDeRegisterMProtocol","features":[1,98]},{"name":"MgmDeleteGroupMembershipEntry","features":[1,98]},{"name":"MgmGetFirstMfe","features":[98]},{"name":"MgmGetFirstMfeStats","features":[98]},{"name":"MgmGetMfe","features":[90,98]},{"name":"MgmGetMfeStats","features":[90,98]},{"name":"MgmGetNextMfe","features":[90,98]},{"name":"MgmGetNextMfeStats","features":[90,98]},{"name":"MgmGetProtocolOnInterface","features":[98]},{"name":"MgmGroupEnumerationEnd","features":[1,98]},{"name":"MgmGroupEnumerationGetNext","features":[1,98]},{"name":"MgmGroupEnumerationStart","features":[1,98]},{"name":"MgmRegisterMProtocol","features":[1,98]},{"name":"MgmReleaseInterfaceOwnership","features":[1,98]},{"name":"MgmTakeInterfaceOwnership","features":[1,98]},{"name":"MprAdminBufferFree","features":[98]},{"name":"MprAdminConnectionClearStats","features":[1,98]},{"name":"MprAdminConnectionEnum","features":[98]},{"name":"MprAdminConnectionEnumEx","features":[1,98]},{"name":"MprAdminConnectionGetInfo","features":[1,98]},{"name":"MprAdminConnectionGetInfoEx","features":[1,98]},{"name":"MprAdminConnectionRemoveQuarantine","features":[1,98]},{"name":"MprAdminDeregisterConnectionNotification","features":[1,98]},{"name":"MprAdminDeviceEnum","features":[98]},{"name":"MprAdminEstablishDomainRasServer","features":[1,98]},{"name":"MprAdminGetErrorString","features":[98]},{"name":"MprAdminGetPDCServer","features":[98]},{"name":"MprAdminInterfaceConnect","features":[1,98]},{"name":"MprAdminInterfaceCreate","features":[1,98]},{"name":"MprAdminInterfaceDelete","features":[1,98]},{"name":"MprAdminInterfaceDeviceGetInfo","features":[1,98]},{"name":"MprAdminInterfaceDeviceSetInfo","features":[1,98]},{"name":"MprAdminInterfaceDisconnect","features":[1,98]},{"name":"MprAdminInterfaceEnum","features":[98]},{"name":"MprAdminInterfaceGetCredentials","features":[98]},{"name":"MprAdminInterfaceGetCredentialsEx","features":[1,98]},{"name":"MprAdminInterfaceGetCustomInfoEx","features":[1,98,15,68]},{"name":"MprAdminInterfaceGetHandle","features":[1,98]},{"name":"MprAdminInterfaceGetInfo","features":[1,98]},{"name":"MprAdminInterfaceQueryUpdateResult","features":[1,98]},{"name":"MprAdminInterfaceSetCredentials","features":[98]},{"name":"MprAdminInterfaceSetCredentialsEx","features":[1,98]},{"name":"MprAdminInterfaceSetCustomInfoEx","features":[1,98,15,68]},{"name":"MprAdminInterfaceSetInfo","features":[1,98]},{"name":"MprAdminInterfaceTransportAdd","features":[1,98]},{"name":"MprAdminInterfaceTransportGetInfo","features":[1,98]},{"name":"MprAdminInterfaceTransportRemove","features":[1,98]},{"name":"MprAdminInterfaceTransportSetInfo","features":[1,98]},{"name":"MprAdminInterfaceUpdatePhonebookInfo","features":[1,98]},{"name":"MprAdminInterfaceUpdateRoutes","features":[1,98]},{"name":"MprAdminIsDomainRasServer","features":[1,98]},{"name":"MprAdminIsServiceInitialized","features":[1,98]},{"name":"MprAdminIsServiceRunning","features":[1,98]},{"name":"MprAdminMIBBufferFree","features":[98]},{"name":"MprAdminMIBEntryCreate","features":[98]},{"name":"MprAdminMIBEntryDelete","features":[98]},{"name":"MprAdminMIBEntryGet","features":[98]},{"name":"MprAdminMIBEntryGetFirst","features":[98]},{"name":"MprAdminMIBEntryGetNext","features":[98]},{"name":"MprAdminMIBEntrySet","features":[98]},{"name":"MprAdminMIBServerConnect","features":[98]},{"name":"MprAdminMIBServerDisconnect","features":[98]},{"name":"MprAdminPortClearStats","features":[1,98]},{"name":"MprAdminPortDisconnect","features":[1,98]},{"name":"MprAdminPortEnum","features":[1,98]},{"name":"MprAdminPortGetInfo","features":[1,98]},{"name":"MprAdminPortReset","features":[1,98]},{"name":"MprAdminRegisterConnectionNotification","features":[1,98]},{"name":"MprAdminSendUserMessage","features":[1,98]},{"name":"MprAdminServerConnect","features":[98]},{"name":"MprAdminServerDisconnect","features":[98]},{"name":"MprAdminServerGetCredentials","features":[98]},{"name":"MprAdminServerGetInfo","features":[98]},{"name":"MprAdminServerGetInfoEx","features":[1,98,68]},{"name":"MprAdminServerSetCredentials","features":[98]},{"name":"MprAdminServerSetInfo","features":[98]},{"name":"MprAdminServerSetInfoEx","features":[1,98,68]},{"name":"MprAdminTransportCreate","features":[98]},{"name":"MprAdminTransportGetInfo","features":[98]},{"name":"MprAdminTransportSetInfo","features":[98]},{"name":"MprAdminUpdateConnection","features":[1,98]},{"name":"MprAdminUserGetInfo","features":[98]},{"name":"MprAdminUserSetInfo","features":[98]},{"name":"MprConfigBufferFree","features":[98]},{"name":"MprConfigFilterGetInfo","features":[1,98]},{"name":"MprConfigFilterSetInfo","features":[1,98]},{"name":"MprConfigGetFriendlyName","features":[1,98]},{"name":"MprConfigGetGuidName","features":[1,98]},{"name":"MprConfigInterfaceCreate","features":[1,98]},{"name":"MprConfigInterfaceDelete","features":[1,98]},{"name":"MprConfigInterfaceEnum","features":[1,98]},{"name":"MprConfigInterfaceGetCustomInfoEx","features":[1,98,15,68]},{"name":"MprConfigInterfaceGetHandle","features":[1,98]},{"name":"MprConfigInterfaceGetInfo","features":[1,98]},{"name":"MprConfigInterfaceSetCustomInfoEx","features":[1,98,15,68]},{"name":"MprConfigInterfaceSetInfo","features":[1,98]},{"name":"MprConfigInterfaceTransportAdd","features":[1,98]},{"name":"MprConfigInterfaceTransportEnum","features":[1,98]},{"name":"MprConfigInterfaceTransportGetHandle","features":[1,98]},{"name":"MprConfigInterfaceTransportGetInfo","features":[1,98]},{"name":"MprConfigInterfaceTransportRemove","features":[1,98]},{"name":"MprConfigInterfaceTransportSetInfo","features":[1,98]},{"name":"MprConfigServerBackup","features":[1,98]},{"name":"MprConfigServerConnect","features":[1,98]},{"name":"MprConfigServerDisconnect","features":[1,98]},{"name":"MprConfigServerGetInfo","features":[1,98]},{"name":"MprConfigServerGetInfoEx","features":[1,98,68]},{"name":"MprConfigServerInstall","features":[98]},{"name":"MprConfigServerRefresh","features":[1,98]},{"name":"MprConfigServerRestore","features":[1,98]},{"name":"MprConfigServerSetInfo","features":[98]},{"name":"MprConfigServerSetInfoEx","features":[1,98,68]},{"name":"MprConfigTransportCreate","features":[1,98]},{"name":"MprConfigTransportDelete","features":[1,98]},{"name":"MprConfigTransportEnum","features":[1,98]},{"name":"MprConfigTransportGetHandle","features":[1,98]},{"name":"MprConfigTransportGetInfo","features":[1,98]},{"name":"MprConfigTransportSetInfo","features":[1,98]},{"name":"MprInfoBlockAdd","features":[98]},{"name":"MprInfoBlockFind","features":[98]},{"name":"MprInfoBlockQuerySize","features":[98]},{"name":"MprInfoBlockRemove","features":[98]},{"name":"MprInfoBlockSet","features":[98]},{"name":"MprInfoCreate","features":[98]},{"name":"MprInfoDelete","features":[98]},{"name":"MprInfoDuplicate","features":[98]},{"name":"MprInfoRemoveAll","features":[98]},{"name":"ORASADFUNC","features":[1,98]},{"name":"PENDING","features":[98]},{"name":"PFNRASFREEBUFFER","features":[98]},{"name":"PFNRASGETBUFFER","features":[98]},{"name":"PFNRASRECEIVEBUFFER","features":[1,98]},{"name":"PFNRASRETRIEVEBUFFER","features":[1,98]},{"name":"PFNRASSENDBUFFER","features":[1,98]},{"name":"PFNRASSETCOMMSETTINGS","features":[1,98]},{"name":"PID_ATALK","features":[98]},{"name":"PID_IP","features":[98]},{"name":"PID_IPV6","features":[98]},{"name":"PID_IPX","features":[98]},{"name":"PID_NBF","features":[98]},{"name":"PMGM_CREATION_ALERT_CALLBACK","features":[1,98]},{"name":"PMGM_DISABLE_IGMP_CALLBACK","features":[98]},{"name":"PMGM_ENABLE_IGMP_CALLBACK","features":[98]},{"name":"PMGM_JOIN_ALERT_CALLBACK","features":[1,98]},{"name":"PMGM_LOCAL_JOIN_CALLBACK","features":[98]},{"name":"PMGM_LOCAL_LEAVE_CALLBACK","features":[98]},{"name":"PMGM_PRUNE_ALERT_CALLBACK","features":[1,98]},{"name":"PMGM_RPF_CALLBACK","features":[98]},{"name":"PMGM_WRONG_IF_CALLBACK","features":[98]},{"name":"PMPRADMINACCEPTNEWCONNECTION","features":[1,98]},{"name":"PMPRADMINACCEPTNEWCONNECTION2","features":[1,98]},{"name":"PMPRADMINACCEPTNEWCONNECTION3","features":[1,98]},{"name":"PMPRADMINACCEPTNEWCONNECTIONEX","features":[1,98]},{"name":"PMPRADMINACCEPTNEWLINK","features":[1,98]},{"name":"PMPRADMINACCEPTREAUTHENTICATION","features":[1,98]},{"name":"PMPRADMINACCEPTREAUTHENTICATIONEX","features":[1,98]},{"name":"PMPRADMINACCEPTTUNNELENDPOINTCHANGEEX","features":[1,98]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION","features":[1,98]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION2","features":[1,98]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION3","features":[1,98]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATIONEX","features":[1,98]},{"name":"PMPRADMINGETIPADDRESSFORUSER","features":[1,98]},{"name":"PMPRADMINGETIPV6ADDRESSFORUSER","features":[1,98,15]},{"name":"PMPRADMINLINKHANGUPNOTIFICATION","features":[1,98]},{"name":"PMPRADMINRASVALIDATEPREAUTHENTICATEDCONNECTIONEX","features":[1,98]},{"name":"PMPRADMINRELEASEIPADRESS","features":[98]},{"name":"PMPRADMINRELEASEIPV6ADDRESSFORUSER","features":[98,15]},{"name":"PMPRADMINTERMINATEDLL","features":[98]},{"name":"PPP_ATCP_INFO","features":[98]},{"name":"PPP_CCP_COMPRESSION","features":[98]},{"name":"PPP_CCP_ENCRYPTION128BIT","features":[98]},{"name":"PPP_CCP_ENCRYPTION40BIT","features":[98]},{"name":"PPP_CCP_ENCRYPTION40BITOLD","features":[98]},{"name":"PPP_CCP_ENCRYPTION56BIT","features":[98]},{"name":"PPP_CCP_HISTORYLESS","features":[98]},{"name":"PPP_CCP_INFO","features":[98]},{"name":"PPP_INFO","features":[98]},{"name":"PPP_INFO_2","features":[98]},{"name":"PPP_INFO_3","features":[98]},{"name":"PPP_IPCP_INFO","features":[98]},{"name":"PPP_IPCP_INFO2","features":[98]},{"name":"PPP_IPCP_VJ","features":[98]},{"name":"PPP_IPV6_CP_INFO","features":[98]},{"name":"PPP_IPXCP_INFO","features":[98]},{"name":"PPP_LCP","features":[98]},{"name":"PPP_LCP_3_DES","features":[98]},{"name":"PPP_LCP_ACFC","features":[98]},{"name":"PPP_LCP_AES_128","features":[98]},{"name":"PPP_LCP_AES_192","features":[98]},{"name":"PPP_LCP_AES_256","features":[98]},{"name":"PPP_LCP_CHAP","features":[98]},{"name":"PPP_LCP_CHAP_MD5","features":[98]},{"name":"PPP_LCP_CHAP_MS","features":[98]},{"name":"PPP_LCP_CHAP_MSV2","features":[98]},{"name":"PPP_LCP_DES_56","features":[98]},{"name":"PPP_LCP_EAP","features":[98]},{"name":"PPP_LCP_GCM_AES_128","features":[98]},{"name":"PPP_LCP_GCM_AES_192","features":[98]},{"name":"PPP_LCP_GCM_AES_256","features":[98]},{"name":"PPP_LCP_INFO","features":[98]},{"name":"PPP_LCP_INFO_AUTH_DATA","features":[98]},{"name":"PPP_LCP_MULTILINK_FRAMING","features":[98]},{"name":"PPP_LCP_PAP","features":[98]},{"name":"PPP_LCP_PFC","features":[98]},{"name":"PPP_LCP_SPAP","features":[98]},{"name":"PPP_LCP_SSHF","features":[98]},{"name":"PPP_NBFCP_INFO","features":[98]},{"name":"PPP_PROJECTION_INFO","features":[98]},{"name":"PPP_PROJECTION_INFO2","features":[98]},{"name":"PPTP_CONFIG_PARAMS","features":[98]},{"name":"PROJECTION_INFO","features":[98]},{"name":"PROJECTION_INFO2","features":[98]},{"name":"PROJECTION_INFO_TYPE_IKEv2","features":[98]},{"name":"PROJECTION_INFO_TYPE_PPP","features":[98]},{"name":"RASADFLG_PositionDlg","features":[98]},{"name":"RASADFUNCA","features":[1,98]},{"name":"RASADFUNCW","features":[1,98]},{"name":"RASADPARAMS","features":[1,98]},{"name":"RASADP_ConnectionQueryTimeout","features":[98]},{"name":"RASADP_DisableConnectionQuery","features":[98]},{"name":"RASADP_FailedConnectionTimeout","features":[98]},{"name":"RASADP_LoginSessionDisable","features":[98]},{"name":"RASADP_SavedAddressesLimit","features":[98]},{"name":"RASAMBA","features":[98]},{"name":"RASAMBW","features":[98]},{"name":"RASAPIVERSION","features":[98]},{"name":"RASAPIVERSION_500","features":[98]},{"name":"RASAPIVERSION_501","features":[98]},{"name":"RASAPIVERSION_600","features":[98]},{"name":"RASAPIVERSION_601","features":[98]},{"name":"RASAUTODIALENTRYA","features":[98]},{"name":"RASAUTODIALENTRYW","features":[98]},{"name":"RASBASE","features":[98]},{"name":"RASBASEEND","features":[98]},{"name":"RASCCPCA_MPPC","features":[98]},{"name":"RASCCPCA_STAC","features":[98]},{"name":"RASCCPO_Compression","features":[98]},{"name":"RASCCPO_Encryption128bit","features":[98]},{"name":"RASCCPO_Encryption40bit","features":[98]},{"name":"RASCCPO_Encryption56bit","features":[98]},{"name":"RASCCPO_HistoryLess","features":[98]},{"name":"RASCF_AllUsers","features":[98]},{"name":"RASCF_GlobalCreds","features":[98]},{"name":"RASCF_OwnerKnown","features":[98]},{"name":"RASCF_OwnerMatch","features":[98]},{"name":"RASCM_DDMPreSharedKey","features":[98]},{"name":"RASCM_DefaultCreds","features":[98]},{"name":"RASCM_Domain","features":[98]},{"name":"RASCM_Password","features":[98]},{"name":"RASCM_PreSharedKey","features":[98]},{"name":"RASCM_ServerPreSharedKey","features":[98]},{"name":"RASCM_UserName","features":[98]},{"name":"RASCN_BandwidthAdded","features":[98]},{"name":"RASCN_BandwidthRemoved","features":[98]},{"name":"RASCN_Connection","features":[98]},{"name":"RASCN_Disconnection","features":[98]},{"name":"RASCN_Dormant","features":[98]},{"name":"RASCN_EPDGPacketArrival","features":[98]},{"name":"RASCN_ReConnection","features":[98]},{"name":"RASCOMMSETTINGS","features":[98]},{"name":"RASCONNA","features":[1,98]},{"name":"RASCONNA","features":[1,98]},{"name":"RASCONNSTATE","features":[98]},{"name":"RASCONNSTATUSA","features":[98,15]},{"name":"RASCONNSTATUSW","features":[98,15]},{"name":"RASCONNSUBSTATE","features":[98]},{"name":"RASCONNW","features":[1,98]},{"name":"RASCONNW","features":[1,98]},{"name":"RASCREDENTIALSA","features":[98]},{"name":"RASCREDENTIALSW","features":[98]},{"name":"RASCSS_DONE","features":[98]},{"name":"RASCSS_Dormant","features":[98]},{"name":"RASCSS_None","features":[98]},{"name":"RASCSS_Reconnected","features":[98]},{"name":"RASCSS_Reconnecting","features":[98]},{"name":"RASCS_AllDevicesConnected","features":[98]},{"name":"RASCS_ApplySettings","features":[98]},{"name":"RASCS_AuthAck","features":[98]},{"name":"RASCS_AuthCallback","features":[98]},{"name":"RASCS_AuthChangePassword","features":[98]},{"name":"RASCS_AuthLinkSpeed","features":[98]},{"name":"RASCS_AuthNotify","features":[98]},{"name":"RASCS_AuthProject","features":[98]},{"name":"RASCS_AuthRetry","features":[98]},{"name":"RASCS_Authenticate","features":[98]},{"name":"RASCS_Authenticated","features":[98]},{"name":"RASCS_CallbackComplete","features":[98]},{"name":"RASCS_CallbackSetByCaller","features":[98]},{"name":"RASCS_ConnectDevice","features":[98]},{"name":"RASCS_Connected","features":[98]},{"name":"RASCS_DONE","features":[98]},{"name":"RASCS_DeviceConnected","features":[98]},{"name":"RASCS_Disconnected","features":[98]},{"name":"RASCS_Interactive","features":[98]},{"name":"RASCS_InvokeEapUI","features":[98]},{"name":"RASCS_LogonNetwork","features":[98]},{"name":"RASCS_OpenPort","features":[98]},{"name":"RASCS_PAUSED","features":[98]},{"name":"RASCS_PasswordExpired","features":[98]},{"name":"RASCS_PortOpened","features":[98]},{"name":"RASCS_PrepareForCallback","features":[98]},{"name":"RASCS_Projected","features":[98]},{"name":"RASCS_ReAuthenticate","features":[98]},{"name":"RASCS_RetryAuthentication","features":[98]},{"name":"RASCS_StartAuthentication","features":[98]},{"name":"RASCS_SubEntryConnected","features":[98]},{"name":"RASCS_SubEntryDisconnected","features":[98]},{"name":"RASCS_WaitForCallback","features":[98]},{"name":"RASCS_WaitForModemReset","features":[98]},{"name":"RASCTRYINFO","features":[98]},{"name":"RASCUSTOMSCRIPTEXTENSIONS","features":[1,98]},{"name":"RASDDFLAG_AoacRedial","features":[98]},{"name":"RASDDFLAG_LinkFailure","features":[98]},{"name":"RASDDFLAG_NoPrompt","features":[98]},{"name":"RASDDFLAG_PositionDlg","features":[98]},{"name":"RASDEVINFOA","features":[98]},{"name":"RASDEVINFOW","features":[98]},{"name":"RASDEVSPECIFICINFO","features":[98]},{"name":"RASDEVSPECIFICINFO","features":[98]},{"name":"RASDIALDLG","features":[1,98]},{"name":"RASDIALEVENT","features":[98]},{"name":"RASDIALEXTENSIONS","features":[1,98]},{"name":"RASDIALFUNC","features":[98]},{"name":"RASDIALFUNC1","features":[98]},{"name":"RASDIALFUNC2","features":[98]},{"name":"RASDIALPARAMSA","features":[98]},{"name":"RASDIALPARAMSA","features":[98]},{"name":"RASDIALPARAMSW","features":[98]},{"name":"RASDIALPARAMSW","features":[98]},{"name":"RASDT_Atm","features":[98]},{"name":"RASDT_FrameRelay","features":[98]},{"name":"RASDT_Generic","features":[98]},{"name":"RASDT_Irda","features":[98]},{"name":"RASDT_Isdn","features":[98]},{"name":"RASDT_Modem","features":[98]},{"name":"RASDT_PPPoE","features":[98]},{"name":"RASDT_Pad","features":[98]},{"name":"RASDT_Parallel","features":[98]},{"name":"RASDT_SW56","features":[98]},{"name":"RASDT_Serial","features":[98]},{"name":"RASDT_Sonet","features":[98]},{"name":"RASDT_Vpn","features":[98]},{"name":"RASDT_X25","features":[98]},{"name":"RASEAPF_Logon","features":[98]},{"name":"RASEAPF_NonInteractive","features":[98]},{"name":"RASEAPF_Preview","features":[98]},{"name":"RASEAPINFO","features":[98]},{"name":"RASEAPUSERIDENTITYA","features":[98]},{"name":"RASEAPUSERIDENTITYW","features":[98]},{"name":"RASEDFLAG_CloneEntry","features":[98]},{"name":"RASEDFLAG_IncomingConnection","features":[98]},{"name":"RASEDFLAG_InternetEntry","features":[98]},{"name":"RASEDFLAG_NAT","features":[98]},{"name":"RASEDFLAG_NewBroadbandEntry","features":[98]},{"name":"RASEDFLAG_NewDirectEntry","features":[98]},{"name":"RASEDFLAG_NewEntry","features":[98]},{"name":"RASEDFLAG_NewPhoneEntry","features":[98]},{"name":"RASEDFLAG_NewTunnelEntry","features":[98]},{"name":"RASEDFLAG_NoRename","features":[98]},{"name":"RASEDFLAG_PositionDlg","features":[98]},{"name":"RASEDFLAG_ShellOwned","features":[98]},{"name":"RASEDM_DialAll","features":[98]},{"name":"RASEDM_DialAsNeeded","features":[98]},{"name":"RASENTRYA","features":[1,98,15]},{"name":"RASENTRYDLGA","features":[1,98]},{"name":"RASENTRYDLGA","features":[1,98]},{"name":"RASENTRYDLGW","features":[1,98]},{"name":"RASENTRYDLGW","features":[1,98]},{"name":"RASENTRYNAMEA","features":[98]},{"name":"RASENTRYNAMEW","features":[98]},{"name":"RASENTRYW","features":[1,98,15]},{"name":"RASENTRY_DIAL_MODE","features":[98]},{"name":"RASEO2_AuthTypeIsOtp","features":[98]},{"name":"RASEO2_AutoTriggerCapable","features":[98]},{"name":"RASEO2_CacheCredentials","features":[98]},{"name":"RASEO2_DisableClassBasedStaticRoute","features":[98]},{"name":"RASEO2_DisableIKENameEkuCheck","features":[98]},{"name":"RASEO2_DisableMobility","features":[98]},{"name":"RASEO2_DisableNbtOverIP","features":[98]},{"name":"RASEO2_DontNegotiateMultilink","features":[98]},{"name":"RASEO2_DontUseRasCredentials","features":[98]},{"name":"RASEO2_IPv4ExplicitMetric","features":[98]},{"name":"RASEO2_IPv6ExplicitMetric","features":[98]},{"name":"RASEO2_IPv6RemoteDefaultGateway","features":[98]},{"name":"RASEO2_IPv6SpecificNameServers","features":[98]},{"name":"RASEO2_Internet","features":[98]},{"name":"RASEO2_IsAlwaysOn","features":[98]},{"name":"RASEO2_IsPrivateNetwork","features":[98]},{"name":"RASEO2_IsThirdPartyProfile","features":[98]},{"name":"RASEO2_PlumbIKEv2TSAsRoutes","features":[98]},{"name":"RASEO2_ReconnectIfDropped","features":[98]},{"name":"RASEO2_RegisterIpWithDNS","features":[98]},{"name":"RASEO2_RequireMachineCertificates","features":[98]},{"name":"RASEO2_SecureClientForMSNet","features":[98]},{"name":"RASEO2_SecureFileAndPrint","features":[98]},{"name":"RASEO2_SecureRoutingCompartment","features":[98]},{"name":"RASEO2_SharePhoneNumbers","features":[98]},{"name":"RASEO2_SpecificIPv6Addr","features":[98]},{"name":"RASEO2_UseDNSSuffixForRegistration","features":[98]},{"name":"RASEO2_UseGlobalDeviceSettings","features":[98]},{"name":"RASEO2_UsePreSharedKey","features":[98]},{"name":"RASEO2_UsePreSharedKeyForIkev2Initiator","features":[98]},{"name":"RASEO2_UsePreSharedKeyForIkev2Responder","features":[98]},{"name":"RASEO2_UseTypicalSettings","features":[98]},{"name":"RASEO_Custom","features":[98]},{"name":"RASEO_CustomScript","features":[98]},{"name":"RASEO_DisableLcpExtensions","features":[98]},{"name":"RASEO_IpHeaderCompression","features":[98]},{"name":"RASEO_ModemLights","features":[98]},{"name":"RASEO_NetworkLogon","features":[98]},{"name":"RASEO_PreviewDomain","features":[98]},{"name":"RASEO_PreviewPhoneNumber","features":[98]},{"name":"RASEO_PreviewUserPw","features":[98]},{"name":"RASEO_PromoteAlternates","features":[98]},{"name":"RASEO_RemoteDefaultGateway","features":[98]},{"name":"RASEO_RequireCHAP","features":[98]},{"name":"RASEO_RequireDataEncryption","features":[98]},{"name":"RASEO_RequireEAP","features":[98]},{"name":"RASEO_RequireEncryptedPw","features":[98]},{"name":"RASEO_RequireMsCHAP","features":[98]},{"name":"RASEO_RequireMsCHAP2","features":[98]},{"name":"RASEO_RequireMsEncryptedPw","features":[98]},{"name":"RASEO_RequirePAP","features":[98]},{"name":"RASEO_RequireSPAP","features":[98]},{"name":"RASEO_RequireW95MSCHAP","features":[98]},{"name":"RASEO_SecureLocalFiles","features":[98]},{"name":"RASEO_SharedPhoneNumbers","features":[98]},{"name":"RASEO_ShowDialingProgress","features":[98]},{"name":"RASEO_SpecificIpAddr","features":[98]},{"name":"RASEO_SpecificNameServers","features":[98]},{"name":"RASEO_SwCompression","features":[98]},{"name":"RASEO_TerminalAfterDial","features":[98]},{"name":"RASEO_TerminalBeforeDial","features":[98]},{"name":"RASEO_UseCountryAndAreaCodes","features":[98]},{"name":"RASEO_UseLogonCredentials","features":[98]},{"name":"RASET_Broadband","features":[98]},{"name":"RASET_Direct","features":[98]},{"name":"RASET_Internet","features":[98]},{"name":"RASET_Phone","features":[98]},{"name":"RASET_Vpn","features":[98]},{"name":"RASFP_Ppp","features":[98]},{"name":"RASFP_Ras","features":[98]},{"name":"RASFP_Slip","features":[98]},{"name":"RASIDS_Disabled","features":[98]},{"name":"RASIDS_UseGlobalValue","features":[98]},{"name":"RASIKEV2_PROJECTION_INFO","features":[98,15]},{"name":"RASIKEV2_PROJECTION_INFO","features":[98,15]},{"name":"RASIKEV_PROJECTION_INFO_FLAGS","features":[98]},{"name":"RASIKEv2_AUTH_EAP","features":[98]},{"name":"RASIKEv2_AUTH_MACHINECERTIFICATES","features":[98]},{"name":"RASIKEv2_AUTH_PSK","features":[98]},{"name":"RASIKEv2_FLAGS_BEHIND_NAT","features":[98]},{"name":"RASIKEv2_FLAGS_MOBIKESUPPORTED","features":[98]},{"name":"RASIKEv2_FLAGS_SERVERBEHIND_NAT","features":[98]},{"name":"RASIPADDR","features":[98]},{"name":"RASIPO_VJ","features":[98]},{"name":"RASIPXW","features":[98]},{"name":"RASLCPAD_CHAP_MD5","features":[98]},{"name":"RASLCPAD_CHAP_MS","features":[98]},{"name":"RASLCPAD_CHAP_MSV2","features":[98]},{"name":"RASLCPAP_CHAP","features":[98]},{"name":"RASLCPAP_EAP","features":[98]},{"name":"RASLCPAP_PAP","features":[98]},{"name":"RASLCPAP_SPAP","features":[98]},{"name":"RASLCPO_3_DES","features":[98]},{"name":"RASLCPO_ACFC","features":[98]},{"name":"RASLCPO_AES_128","features":[98]},{"name":"RASLCPO_AES_192","features":[98]},{"name":"RASLCPO_AES_256","features":[98]},{"name":"RASLCPO_DES_56","features":[98]},{"name":"RASLCPO_GCM_AES_128","features":[98]},{"name":"RASLCPO_GCM_AES_192","features":[98]},{"name":"RASLCPO_GCM_AES_256","features":[98]},{"name":"RASLCPO_PFC","features":[98]},{"name":"RASLCPO_SSHF","features":[98]},{"name":"RASNAP_ProbationTime","features":[98]},{"name":"RASNOUSERA","features":[98]},{"name":"RASNOUSERW","features":[98]},{"name":"RASNOUSER_SmartCard","features":[98]},{"name":"RASNP_Ip","features":[98]},{"name":"RASNP_Ipv6","features":[98]},{"name":"RASNP_Ipx","features":[98]},{"name":"RASNP_NetBEUI","features":[98]},{"name":"RASPBDEVENT_AddEntry","features":[98]},{"name":"RASPBDEVENT_DialEntry","features":[98]},{"name":"RASPBDEVENT_EditEntry","features":[98]},{"name":"RASPBDEVENT_EditGlobals","features":[98]},{"name":"RASPBDEVENT_NoUser","features":[98]},{"name":"RASPBDEVENT_NoUserEdit","features":[98]},{"name":"RASPBDEVENT_RemoveEntry","features":[98]},{"name":"RASPBDFLAG_ForceCloseOnDial","features":[98]},{"name":"RASPBDFLAG_NoUser","features":[98]},{"name":"RASPBDFLAG_PositionDlg","features":[98]},{"name":"RASPBDFLAG_UpdateDefaults","features":[98]},{"name":"RASPBDLGA","features":[1,98]},{"name":"RASPBDLGA","features":[1,98]},{"name":"RASPBDLGFUNCA","features":[98]},{"name":"RASPBDLGFUNCW","features":[98]},{"name":"RASPBDLGW","features":[1,98]},{"name":"RASPBDLGW","features":[1,98]},{"name":"RASPPPCCP","features":[98]},{"name":"RASPPPIPA","features":[98]},{"name":"RASPPPIPV6","features":[98]},{"name":"RASPPPIPW","features":[98]},{"name":"RASPPPIPXA","features":[98]},{"name":"RASPPPLCPA","features":[1,98]},{"name":"RASPPPLCPW","features":[1,98]},{"name":"RASPPPNBFA","features":[98]},{"name":"RASPPPNBFW","features":[98]},{"name":"RASPPP_PROJECTION_INFO","features":[1,98,15]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_DATA","features":[98]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_PROTOCOL","features":[98]},{"name":"RASPRIV2_DialinPolicy","features":[98]},{"name":"RASPRIV_AdminSetCallback","features":[98]},{"name":"RASPRIV_CallerSetCallback","features":[98]},{"name":"RASPRIV_DialinPrivilege","features":[98]},{"name":"RASPRIV_NoCallback","features":[98]},{"name":"RASPROJECTION","features":[98]},{"name":"RASPROJECTION_INFO_TYPE","features":[98]},{"name":"RASP_Amb","features":[98]},{"name":"RASP_PppCcp","features":[98]},{"name":"RASP_PppIp","features":[98]},{"name":"RASP_PppIpv6","features":[98]},{"name":"RASP_PppIpx","features":[98]},{"name":"RASP_PppLcp","features":[98]},{"name":"RASP_PppNbf","features":[98]},{"name":"RASSECURITYPROC","features":[98]},{"name":"RASSUBENTRYA","features":[98]},{"name":"RASSUBENTRYW","features":[98]},{"name":"RASTUNNELENDPOINT","features":[98,15]},{"name":"RASTUNNELENDPOINT_IPv4","features":[98]},{"name":"RASTUNNELENDPOINT_IPv6","features":[98]},{"name":"RASTUNNELENDPOINT_UNKNOWN","features":[98]},{"name":"RASUPDATECONN","features":[98,15]},{"name":"RAS_CONNECTION_0","features":[1,98]},{"name":"RAS_CONNECTION_1","features":[1,98]},{"name":"RAS_CONNECTION_2","features":[1,98]},{"name":"RAS_CONNECTION_3","features":[1,98]},{"name":"RAS_CONNECTION_4","features":[1,98]},{"name":"RAS_CONNECTION_EX","features":[1,98]},{"name":"RAS_FLAGS","features":[98]},{"name":"RAS_FLAGS_ARAP_CONNECTION","features":[98]},{"name":"RAS_FLAGS_DORMANT","features":[98]},{"name":"RAS_FLAGS_IKEV2_CONNECTION","features":[98]},{"name":"RAS_FLAGS_MESSENGER_PRESENT","features":[98]},{"name":"RAS_FLAGS_PPP_CONNECTION","features":[98]},{"name":"RAS_FLAGS_QUARANTINE_PRESENT","features":[98]},{"name":"RAS_FLAGS_RAS_CONNECTION","features":[98]},{"name":"RAS_HARDWARE_CONDITION","features":[98]},{"name":"RAS_HARDWARE_FAILURE","features":[98]},{"name":"RAS_HARDWARE_OPERATIONAL","features":[98]},{"name":"RAS_MaxAreaCode","features":[98]},{"name":"RAS_MaxCallbackNumber","features":[98]},{"name":"RAS_MaxDeviceName","features":[98]},{"name":"RAS_MaxDeviceType","features":[98]},{"name":"RAS_MaxDnsSuffix","features":[98]},{"name":"RAS_MaxEntryName","features":[98]},{"name":"RAS_MaxFacilities","features":[98]},{"name":"RAS_MaxIDSize","features":[98]},{"name":"RAS_MaxIpAddress","features":[98]},{"name":"RAS_MaxIpxAddress","features":[98]},{"name":"RAS_MaxPadType","features":[98]},{"name":"RAS_MaxPhoneNumber","features":[98]},{"name":"RAS_MaxReplyMessage","features":[98]},{"name":"RAS_MaxUserData","features":[98]},{"name":"RAS_MaxX25Address","features":[98]},{"name":"RAS_PORT_0","features":[1,98]},{"name":"RAS_PORT_1","features":[1,98]},{"name":"RAS_PORT_2","features":[1,98]},{"name":"RAS_PORT_AUTHENTICATED","features":[98]},{"name":"RAS_PORT_AUTHENTICATING","features":[98]},{"name":"RAS_PORT_CALLING_BACK","features":[98]},{"name":"RAS_PORT_CONDITION","features":[98]},{"name":"RAS_PORT_DISCONNECTED","features":[98]},{"name":"RAS_PORT_INITIALIZING","features":[98]},{"name":"RAS_PORT_LISTENING","features":[98]},{"name":"RAS_PORT_NON_OPERATIONAL","features":[98]},{"name":"RAS_PROJECTION_INFO","features":[1,98,15]},{"name":"RAS_QUARANTINE_STATE","features":[98]},{"name":"RAS_QUAR_STATE_NORMAL","features":[98]},{"name":"RAS_QUAR_STATE_NOT_CAPABLE","features":[98]},{"name":"RAS_QUAR_STATE_PROBATION","features":[98]},{"name":"RAS_QUAR_STATE_QUARANTINE","features":[98]},{"name":"RAS_SECURITY_INFO","features":[98]},{"name":"RAS_STATS","features":[98]},{"name":"RAS_UPDATE_CONNECTION","features":[98]},{"name":"RAS_USER_0","features":[98]},{"name":"RAS_USER_1","features":[98]},{"name":"RCD_AllUsers","features":[98]},{"name":"RCD_Eap","features":[98]},{"name":"RCD_Logon","features":[98]},{"name":"RCD_SingleUser","features":[98]},{"name":"RDEOPT_CustomDial","features":[98]},{"name":"RDEOPT_DisableConnectedUI","features":[98]},{"name":"RDEOPT_DisableReconnect","features":[98]},{"name":"RDEOPT_DisableReconnectUI","features":[98]},{"name":"RDEOPT_EapInfoCryptInCapable","features":[98]},{"name":"RDEOPT_IgnoreModemSpeaker","features":[98]},{"name":"RDEOPT_IgnoreSoftwareCompression","features":[98]},{"name":"RDEOPT_InvokeAutoTriggerCredentialUI","features":[98]},{"name":"RDEOPT_NoUser","features":[98]},{"name":"RDEOPT_PauseOnScript","features":[98]},{"name":"RDEOPT_PausedStates","features":[98]},{"name":"RDEOPT_Router","features":[98]},{"name":"RDEOPT_SetModemSpeaker","features":[98]},{"name":"RDEOPT_SetSoftwareCompression","features":[98]},{"name":"RDEOPT_UseCustomScripting","features":[98]},{"name":"RDEOPT_UsePrefixSuffix","features":[98]},{"name":"REN_AllUsers","features":[98]},{"name":"REN_User","features":[98]},{"name":"ROUTER_CONNECTION_STATE","features":[98]},{"name":"ROUTER_CUSTOM_IKEv2_POLICY0","features":[98]},{"name":"ROUTER_IF_STATE_CONNECTED","features":[98]},{"name":"ROUTER_IF_STATE_CONNECTING","features":[98]},{"name":"ROUTER_IF_STATE_DISCONNECTED","features":[98]},{"name":"ROUTER_IF_STATE_UNREACHABLE","features":[98]},{"name":"ROUTER_IF_TYPE_CLIENT","features":[98]},{"name":"ROUTER_IF_TYPE_DEDICATED","features":[98]},{"name":"ROUTER_IF_TYPE_DIALOUT","features":[98]},{"name":"ROUTER_IF_TYPE_FULL_ROUTER","features":[98]},{"name":"ROUTER_IF_TYPE_HOME_ROUTER","features":[98]},{"name":"ROUTER_IF_TYPE_INTERNAL","features":[98]},{"name":"ROUTER_IF_TYPE_LOOPBACK","features":[98]},{"name":"ROUTER_IF_TYPE_MAX","features":[98]},{"name":"ROUTER_IF_TYPE_TUNNEL1","features":[98]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG0","features":[98,68]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG1","features":[98,68]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG2","features":[98,15,68]},{"name":"ROUTER_INTERFACE_TYPE","features":[98]},{"name":"ROUTING_PROTOCOL_CONFIG","features":[1,98]},{"name":"RRAS_SERVICE_NAME","features":[98]},{"name":"RTM_BLOCK_METHODS","features":[98]},{"name":"RTM_CHANGE_NOTIFICATION","features":[98]},{"name":"RTM_CHANGE_TYPE_ALL","features":[98]},{"name":"RTM_CHANGE_TYPE_BEST","features":[98]},{"name":"RTM_CHANGE_TYPE_FORWARDING","features":[98]},{"name":"RTM_DEST_FLAG_DONT_FORWARD","features":[98]},{"name":"RTM_DEST_FLAG_FWD_ENGIN_ADD","features":[98]},{"name":"RTM_DEST_FLAG_NATURAL_NET","features":[98]},{"name":"RTM_DEST_INFO","features":[1,98]},{"name":"RTM_ENTITY_DEREGISTERED","features":[98]},{"name":"RTM_ENTITY_EXPORT_METHOD","features":[98]},{"name":"RTM_ENTITY_EXPORT_METHODS","features":[98]},{"name":"RTM_ENTITY_ID","features":[98]},{"name":"RTM_ENTITY_INFO","features":[98]},{"name":"RTM_ENTITY_METHOD_INPUT","features":[98]},{"name":"RTM_ENTITY_METHOD_OUTPUT","features":[98]},{"name":"RTM_ENTITY_REGISTERED","features":[98]},{"name":"RTM_ENUM_ALL_DESTS","features":[98]},{"name":"RTM_ENUM_ALL_ROUTES","features":[98]},{"name":"RTM_ENUM_NEXT","features":[98]},{"name":"RTM_ENUM_OWN_DESTS","features":[98]},{"name":"RTM_ENUM_OWN_ROUTES","features":[98]},{"name":"RTM_ENUM_RANGE","features":[98]},{"name":"RTM_ENUM_START","features":[98]},{"name":"RTM_EVENT_CALLBACK","features":[98]},{"name":"RTM_EVENT_TYPE","features":[98]},{"name":"RTM_MATCH_FULL","features":[98]},{"name":"RTM_MATCH_INTERFACE","features":[98]},{"name":"RTM_MATCH_NEIGHBOUR","features":[98]},{"name":"RTM_MATCH_NEXTHOP","features":[98]},{"name":"RTM_MATCH_NONE","features":[98]},{"name":"RTM_MATCH_OWNER","features":[98]},{"name":"RTM_MATCH_PREF","features":[98]},{"name":"RTM_MAX_ADDRESS_SIZE","features":[98]},{"name":"RTM_MAX_VIEWS","features":[98]},{"name":"RTM_NET_ADDRESS","features":[98]},{"name":"RTM_NEXTHOP_CHANGE_NEW","features":[98]},{"name":"RTM_NEXTHOP_FLAGS_DOWN","features":[98]},{"name":"RTM_NEXTHOP_FLAGS_REMOTE","features":[98]},{"name":"RTM_NEXTHOP_INFO","features":[98]},{"name":"RTM_NEXTHOP_LIST","features":[98]},{"name":"RTM_NEXTHOP_STATE_CREATED","features":[98]},{"name":"RTM_NEXTHOP_STATE_DELETED","features":[98]},{"name":"RTM_NOTIFY_ONLY_MARKED_DESTS","features":[98]},{"name":"RTM_NUM_CHANGE_TYPES","features":[98]},{"name":"RTM_PREF_INFO","features":[98]},{"name":"RTM_REGN_PROFILE","features":[98]},{"name":"RTM_RESUME_METHODS","features":[98]},{"name":"RTM_ROUTE_CHANGE_BEST","features":[98]},{"name":"RTM_ROUTE_CHANGE_FIRST","features":[98]},{"name":"RTM_ROUTE_CHANGE_NEW","features":[98]},{"name":"RTM_ROUTE_EXPIRED","features":[98]},{"name":"RTM_ROUTE_FLAGS_BLACKHOLE","features":[98]},{"name":"RTM_ROUTE_FLAGS_DISCARD","features":[98]},{"name":"RTM_ROUTE_FLAGS_INACTIVE","features":[98]},{"name":"RTM_ROUTE_FLAGS_LIMITED_BC","features":[98]},{"name":"RTM_ROUTE_FLAGS_LOCAL","features":[98]},{"name":"RTM_ROUTE_FLAGS_LOCAL_MCAST","features":[98]},{"name":"RTM_ROUTE_FLAGS_LOOPBACK","features":[98]},{"name":"RTM_ROUTE_FLAGS_MARTIAN","features":[98]},{"name":"RTM_ROUTE_FLAGS_MCAST","features":[98]},{"name":"RTM_ROUTE_FLAGS_MYSELF","features":[98]},{"name":"RTM_ROUTE_FLAGS_ONES_NETBC","features":[98]},{"name":"RTM_ROUTE_FLAGS_ONES_SUBNETBC","features":[98]},{"name":"RTM_ROUTE_FLAGS_REMOTE","features":[98]},{"name":"RTM_ROUTE_FLAGS_ZEROS_NETBC","features":[98]},{"name":"RTM_ROUTE_FLAGS_ZEROS_SUBNETBC","features":[98]},{"name":"RTM_ROUTE_INFO","features":[98]},{"name":"RTM_ROUTE_STATE_CREATED","features":[98]},{"name":"RTM_ROUTE_STATE_DELETED","features":[98]},{"name":"RTM_ROUTE_STATE_DELETING","features":[98]},{"name":"RTM_VIEW_ID_MCAST","features":[98]},{"name":"RTM_VIEW_ID_UCAST","features":[98]},{"name":"RTM_VIEW_MASK_ALL","features":[98]},{"name":"RTM_VIEW_MASK_ANY","features":[98]},{"name":"RTM_VIEW_MASK_MCAST","features":[98]},{"name":"RTM_VIEW_MASK_NONE","features":[98]},{"name":"RTM_VIEW_MASK_SIZE","features":[98]},{"name":"RTM_VIEW_MASK_UCAST","features":[98]},{"name":"RasClearConnectionStatistics","features":[98]},{"name":"RasClearLinkStatistics","features":[98]},{"name":"RasConnectionNotificationA","features":[1,98]},{"name":"RasConnectionNotificationW","features":[1,98]},{"name":"RasCreatePhonebookEntryA","features":[1,98]},{"name":"RasCreatePhonebookEntryW","features":[1,98]},{"name":"RasCustomDeleteEntryNotifyFn","features":[98]},{"name":"RasCustomDialDlgFn","features":[1,98]},{"name":"RasCustomDialFn","features":[1,98]},{"name":"RasCustomEntryDlgFn","features":[1,98]},{"name":"RasCustomHangUpFn","features":[98]},{"name":"RasCustomScriptExecuteFn","features":[1,98]},{"name":"RasDeleteEntryA","features":[98]},{"name":"RasDeleteEntryW","features":[98]},{"name":"RasDeleteSubEntryA","features":[98]},{"name":"RasDeleteSubEntryW","features":[98]},{"name":"RasDialA","features":[1,98]},{"name":"RasDialDlgA","features":[1,98]},{"name":"RasDialDlgW","features":[1,98]},{"name":"RasDialW","features":[1,98]},{"name":"RasEditPhonebookEntryA","features":[1,98]},{"name":"RasEditPhonebookEntryW","features":[1,98]},{"name":"RasEntryDlgA","features":[1,98]},{"name":"RasEntryDlgW","features":[1,98]},{"name":"RasEnumAutodialAddressesA","features":[98]},{"name":"RasEnumAutodialAddressesW","features":[98]},{"name":"RasEnumConnectionsA","features":[1,98]},{"name":"RasEnumConnectionsW","features":[1,98]},{"name":"RasEnumDevicesA","features":[98]},{"name":"RasEnumDevicesW","features":[98]},{"name":"RasEnumEntriesA","features":[98]},{"name":"RasEnumEntriesW","features":[98]},{"name":"RasFreeEapUserIdentityA","features":[98]},{"name":"RasFreeEapUserIdentityW","features":[98]},{"name":"RasGetAutodialAddressA","features":[98]},{"name":"RasGetAutodialAddressW","features":[98]},{"name":"RasGetAutodialEnableA","features":[1,98]},{"name":"RasGetAutodialEnableW","features":[1,98]},{"name":"RasGetAutodialParamA","features":[98]},{"name":"RasGetAutodialParamW","features":[98]},{"name":"RasGetConnectStatusA","features":[98,15]},{"name":"RasGetConnectStatusW","features":[98,15]},{"name":"RasGetConnectionStatistics","features":[98]},{"name":"RasGetCountryInfoA","features":[98]},{"name":"RasGetCountryInfoW","features":[98]},{"name":"RasGetCredentialsA","features":[98]},{"name":"RasGetCredentialsW","features":[98]},{"name":"RasGetCustomAuthDataA","features":[98]},{"name":"RasGetCustomAuthDataW","features":[98]},{"name":"RasGetEapUserDataA","features":[1,98]},{"name":"RasGetEapUserDataW","features":[1,98]},{"name":"RasGetEapUserIdentityA","features":[1,98]},{"name":"RasGetEapUserIdentityW","features":[1,98]},{"name":"RasGetEntryDialParamsA","features":[1,98]},{"name":"RasGetEntryDialParamsW","features":[1,98]},{"name":"RasGetEntryPropertiesA","features":[1,98,15]},{"name":"RasGetEntryPropertiesW","features":[1,98,15]},{"name":"RasGetErrorStringA","features":[98]},{"name":"RasGetErrorStringW","features":[98]},{"name":"RasGetLinkStatistics","features":[98]},{"name":"RasGetPCscf","features":[98]},{"name":"RasGetProjectionInfoA","features":[98]},{"name":"RasGetProjectionInfoEx","features":[1,98,15]},{"name":"RasGetProjectionInfoW","features":[98]},{"name":"RasGetSubEntryHandleA","features":[98]},{"name":"RasGetSubEntryHandleW","features":[98]},{"name":"RasGetSubEntryPropertiesA","features":[98]},{"name":"RasGetSubEntryPropertiesW","features":[98]},{"name":"RasHangUpA","features":[98]},{"name":"RasHangUpW","features":[98]},{"name":"RasInvokeEapUI","features":[1,98]},{"name":"RasPhonebookDlgA","features":[1,98]},{"name":"RasPhonebookDlgW","features":[1,98]},{"name":"RasRenameEntryA","features":[98]},{"name":"RasRenameEntryW","features":[98]},{"name":"RasSetAutodialAddressA","features":[98]},{"name":"RasSetAutodialAddressW","features":[98]},{"name":"RasSetAutodialEnableA","features":[1,98]},{"name":"RasSetAutodialEnableW","features":[1,98]},{"name":"RasSetAutodialParamA","features":[98]},{"name":"RasSetAutodialParamW","features":[98]},{"name":"RasSetCredentialsA","features":[1,98]},{"name":"RasSetCredentialsW","features":[1,98]},{"name":"RasSetCustomAuthDataA","features":[98]},{"name":"RasSetCustomAuthDataW","features":[98]},{"name":"RasSetEapUserDataA","features":[1,98]},{"name":"RasSetEapUserDataW","features":[1,98]},{"name":"RasSetEntryDialParamsA","features":[1,98]},{"name":"RasSetEntryDialParamsW","features":[1,98]},{"name":"RasSetEntryPropertiesA","features":[1,98,15]},{"name":"RasSetEntryPropertiesW","features":[1,98,15]},{"name":"RasSetSubEntryPropertiesA","features":[98]},{"name":"RasSetSubEntryPropertiesW","features":[98]},{"name":"RasUpdateConnection","features":[98,15]},{"name":"RasValidateEntryNameA","features":[98]},{"name":"RasValidateEntryNameW","features":[98]},{"name":"RtmAddNextHop","features":[98]},{"name":"RtmAddRouteToDest","features":[98]},{"name":"RtmBlockMethods","features":[1,98]},{"name":"RtmConvertIpv6AddressAndLengthToNetAddress","features":[98,15]},{"name":"RtmConvertNetAddressToIpv6AddressAndLength","features":[98,15]},{"name":"RtmCreateDestEnum","features":[98]},{"name":"RtmCreateNextHopEnum","features":[98]},{"name":"RtmCreateRouteEnum","features":[98]},{"name":"RtmCreateRouteList","features":[98]},{"name":"RtmCreateRouteListEnum","features":[98]},{"name":"RtmDeleteEnumHandle","features":[98]},{"name":"RtmDeleteNextHop","features":[98]},{"name":"RtmDeleteRouteList","features":[98]},{"name":"RtmDeleteRouteToDest","features":[98]},{"name":"RtmDeregisterEntity","features":[98]},{"name":"RtmDeregisterFromChangeNotification","features":[98]},{"name":"RtmFindNextHop","features":[98]},{"name":"RtmGetChangeStatus","features":[1,98]},{"name":"RtmGetChangedDests","features":[1,98]},{"name":"RtmGetDestInfo","features":[1,98]},{"name":"RtmGetEntityInfo","features":[98]},{"name":"RtmGetEntityMethods","features":[98]},{"name":"RtmGetEnumDests","features":[1,98]},{"name":"RtmGetEnumNextHops","features":[98]},{"name":"RtmGetEnumRoutes","features":[98]},{"name":"RtmGetExactMatchDestination","features":[1,98]},{"name":"RtmGetExactMatchRoute","features":[98]},{"name":"RtmGetLessSpecificDestination","features":[1,98]},{"name":"RtmGetListEnumRoutes","features":[98]},{"name":"RtmGetMostSpecificDestination","features":[1,98]},{"name":"RtmGetNextHopInfo","features":[98]},{"name":"RtmGetNextHopPointer","features":[98]},{"name":"RtmGetOpaqueInformationPointer","features":[98]},{"name":"RtmGetRegisteredEntities","features":[98]},{"name":"RtmGetRouteInfo","features":[98]},{"name":"RtmGetRoutePointer","features":[98]},{"name":"RtmHoldDestination","features":[98]},{"name":"RtmIgnoreChangedDests","features":[98]},{"name":"RtmInsertInRouteList","features":[98]},{"name":"RtmInvokeMethod","features":[98]},{"name":"RtmIsBestRoute","features":[98]},{"name":"RtmIsMarkedForChangeNotification","features":[1,98]},{"name":"RtmLockDestination","features":[1,98]},{"name":"RtmLockNextHop","features":[1,98]},{"name":"RtmLockRoute","features":[1,98]},{"name":"RtmMarkDestForChangeNotification","features":[1,98]},{"name":"RtmReferenceHandles","features":[1,98]},{"name":"RtmRegisterEntity","features":[1,98]},{"name":"RtmRegisterForChangeNotification","features":[98]},{"name":"RtmReleaseChangedDests","features":[1,98]},{"name":"RtmReleaseDestInfo","features":[1,98]},{"name":"RtmReleaseDests","features":[1,98]},{"name":"RtmReleaseEntities","features":[98]},{"name":"RtmReleaseEntityInfo","features":[98]},{"name":"RtmReleaseNextHopInfo","features":[98]},{"name":"RtmReleaseNextHops","features":[98]},{"name":"RtmReleaseRouteInfo","features":[98]},{"name":"RtmReleaseRoutes","features":[98]},{"name":"RtmUpdateAndUnlockRoute","features":[98]},{"name":"SECURITYMSG_ERROR","features":[98]},{"name":"SECURITYMSG_FAILURE","features":[98]},{"name":"SECURITYMSG_SUCCESS","features":[98]},{"name":"SECURITY_MESSAGE","features":[98]},{"name":"SECURITY_MESSAGE_MSG_ID","features":[98]},{"name":"SOURCE_GROUP_ENTRY","features":[98]},{"name":"SSTP_CERT_INFO","features":[1,98,68]},{"name":"SSTP_CONFIG_PARAMS","features":[1,98,68]},{"name":"VPN_TS_IP_ADDRESS","features":[98,15]},{"name":"VS_Default","features":[98]},{"name":"VS_GREOnly","features":[98]},{"name":"VS_Ikev2First","features":[98]},{"name":"VS_Ikev2Only","features":[98]},{"name":"VS_Ikev2Sstp","features":[98]},{"name":"VS_L2tpFirst","features":[98]},{"name":"VS_L2tpOnly","features":[98]},{"name":"VS_L2tpSstp","features":[98]},{"name":"VS_PptpFirst","features":[98]},{"name":"VS_PptpOnly","features":[98]},{"name":"VS_PptpSstp","features":[98]},{"name":"VS_ProtocolList","features":[98]},{"name":"VS_SstpFirst","features":[98]},{"name":"VS_SstpOnly","features":[98]},{"name":"WARNING_MSG_ALIAS_NOT_ADDED","features":[98]},{"name":"WM_RASDIALEVENT","features":[98]}],"458":[{"name":"ASN_APPLICATION","features":[99]},{"name":"ASN_CONSTRUCTOR","features":[99]},{"name":"ASN_CONTEXT","features":[99]},{"name":"ASN_CONTEXTSPECIFIC","features":[99]},{"name":"ASN_PRIMATIVE","features":[99]},{"name":"ASN_PRIMITIVE","features":[99]},{"name":"ASN_PRIVATE","features":[99]},{"name":"ASN_UNIVERSAL","features":[99]},{"name":"AsnAny","features":[1,99]},{"name":"AsnObjectIdentifier","features":[99]},{"name":"AsnObjectIdentifier","features":[99]},{"name":"AsnOctetString","features":[1,99]},{"name":"AsnOctetString","features":[1,99]},{"name":"DEFAULT_SNMPTRAP_PORT_IPX","features":[99]},{"name":"DEFAULT_SNMPTRAP_PORT_UDP","features":[99]},{"name":"DEFAULT_SNMP_PORT_IPX","features":[99]},{"name":"DEFAULT_SNMP_PORT_UDP","features":[99]},{"name":"MAXOBJIDSIZE","features":[99]},{"name":"MAXOBJIDSTRSIZE","features":[99]},{"name":"MAXVENDORINFO","features":[99]},{"name":"MGMCTL_SETAGENTPORT","features":[99]},{"name":"PFNSNMPCLEANUPEX","features":[99]},{"name":"PFNSNMPEXTENSIONCLOSE","features":[99]},{"name":"PFNSNMPEXTENSIONINIT","features":[1,99]},{"name":"PFNSNMPEXTENSIONINITEX","features":[1,99]},{"name":"PFNSNMPEXTENSIONMONITOR","features":[1,99]},{"name":"PFNSNMPEXTENSIONQUERY","features":[1,99]},{"name":"PFNSNMPEXTENSIONQUERYEX","features":[1,99]},{"name":"PFNSNMPEXTENSIONTRAP","features":[1,99]},{"name":"PFNSNMPSTARTUPEX","features":[99]},{"name":"SNMPAPI_ALLOC_ERROR","features":[99]},{"name":"SNMPAPI_CALLBACK","features":[1,99]},{"name":"SNMPAPI_CONTEXT_INVALID","features":[99]},{"name":"SNMPAPI_CONTEXT_UNKNOWN","features":[99]},{"name":"SNMPAPI_ENTITY_INVALID","features":[99]},{"name":"SNMPAPI_ENTITY_UNKNOWN","features":[99]},{"name":"SNMPAPI_ERROR","features":[99]},{"name":"SNMPAPI_FAILURE","features":[99]},{"name":"SNMPAPI_HWND_INVALID","features":[99]},{"name":"SNMPAPI_INDEX_INVALID","features":[99]},{"name":"SNMPAPI_M2M_SUPPORT","features":[99]},{"name":"SNMPAPI_MESSAGE_INVALID","features":[99]},{"name":"SNMPAPI_MODE_INVALID","features":[99]},{"name":"SNMPAPI_NOERROR","features":[99]},{"name":"SNMPAPI_NOOP","features":[99]},{"name":"SNMPAPI_NOT_INITIALIZED","features":[99]},{"name":"SNMPAPI_NO_SUPPORT","features":[99]},{"name":"SNMPAPI_OFF","features":[99]},{"name":"SNMPAPI_OID_INVALID","features":[99]},{"name":"SNMPAPI_ON","features":[99]},{"name":"SNMPAPI_OPERATION_INVALID","features":[99]},{"name":"SNMPAPI_OTHER_ERROR","features":[99]},{"name":"SNMPAPI_OUTPUT_TRUNCATED","features":[99]},{"name":"SNMPAPI_PDU_INVALID","features":[99]},{"name":"SNMPAPI_SESSION_INVALID","features":[99]},{"name":"SNMPAPI_SIZE_INVALID","features":[99]},{"name":"SNMPAPI_SUCCESS","features":[99]},{"name":"SNMPAPI_SYNTAX_INVALID","features":[99]},{"name":"SNMPAPI_TL_INVALID_PARAM","features":[99]},{"name":"SNMPAPI_TL_IN_USE","features":[99]},{"name":"SNMPAPI_TL_NOT_AVAILABLE","features":[99]},{"name":"SNMPAPI_TL_NOT_INITIALIZED","features":[99]},{"name":"SNMPAPI_TL_NOT_SUPPORTED","features":[99]},{"name":"SNMPAPI_TL_OTHER","features":[99]},{"name":"SNMPAPI_TL_PDU_TOO_BIG","features":[99]},{"name":"SNMPAPI_TL_RESOURCE_ERROR","features":[99]},{"name":"SNMPAPI_TL_SRC_INVALID","features":[99]},{"name":"SNMPAPI_TL_TIMEOUT","features":[99]},{"name":"SNMPAPI_TL_UNDELIVERABLE","features":[99]},{"name":"SNMPAPI_TRANSLATED","features":[99]},{"name":"SNMPAPI_UNTRANSLATED_V1","features":[99]},{"name":"SNMPAPI_UNTRANSLATED_V2","features":[99]},{"name":"SNMPAPI_V1_SUPPORT","features":[99]},{"name":"SNMPAPI_V2_SUPPORT","features":[99]},{"name":"SNMPAPI_VBL_INVALID","features":[99]},{"name":"SNMPLISTEN_ALL_ADDR","features":[99]},{"name":"SNMPLISTEN_USEENTITY_ADDR","features":[99]},{"name":"SNMP_ACCESS_NONE","features":[99]},{"name":"SNMP_ACCESS_NOTIFY","features":[99]},{"name":"SNMP_ACCESS_READ_CREATE","features":[99]},{"name":"SNMP_ACCESS_READ_ONLY","features":[99]},{"name":"SNMP_ACCESS_READ_WRITE","features":[99]},{"name":"SNMP_API_TRANSLATE_MODE","features":[99]},{"name":"SNMP_AUTHAPI_INVALID_MSG_TYPE","features":[99]},{"name":"SNMP_AUTHAPI_INVALID_VERSION","features":[99]},{"name":"SNMP_AUTHAPI_TRIV_AUTH_FAILED","features":[99]},{"name":"SNMP_BERAPI_INVALID_LENGTH","features":[99]},{"name":"SNMP_BERAPI_INVALID_OBJELEM","features":[99]},{"name":"SNMP_BERAPI_INVALID_TAG","features":[99]},{"name":"SNMP_BERAPI_OVERFLOW","features":[99]},{"name":"SNMP_BERAPI_SHORT_BUFFER","features":[99]},{"name":"SNMP_ERROR","features":[99]},{"name":"SNMP_ERRORSTATUS_AUTHORIZATIONERROR","features":[99]},{"name":"SNMP_ERRORSTATUS_BADVALUE","features":[99]},{"name":"SNMP_ERRORSTATUS_COMMITFAILED","features":[99]},{"name":"SNMP_ERRORSTATUS_GENERR","features":[99]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTNAME","features":[99]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTVALUE","features":[99]},{"name":"SNMP_ERRORSTATUS_NOACCESS","features":[99]},{"name":"SNMP_ERRORSTATUS_NOCREATION","features":[99]},{"name":"SNMP_ERRORSTATUS_NOERROR","features":[99]},{"name":"SNMP_ERRORSTATUS_NOSUCHNAME","features":[99]},{"name":"SNMP_ERRORSTATUS_NOTWRITABLE","features":[99]},{"name":"SNMP_ERRORSTATUS_READONLY","features":[99]},{"name":"SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE","features":[99]},{"name":"SNMP_ERRORSTATUS_TOOBIG","features":[99]},{"name":"SNMP_ERRORSTATUS_UNDOFAILED","features":[99]},{"name":"SNMP_ERRORSTATUS_WRONGENCODING","features":[99]},{"name":"SNMP_ERRORSTATUS_WRONGLENGTH","features":[99]},{"name":"SNMP_ERRORSTATUS_WRONGTYPE","features":[99]},{"name":"SNMP_ERRORSTATUS_WRONGVALUE","features":[99]},{"name":"SNMP_ERROR_AUTHORIZATIONERROR","features":[99]},{"name":"SNMP_ERROR_BADVALUE","features":[99]},{"name":"SNMP_ERROR_COMMITFAILED","features":[99]},{"name":"SNMP_ERROR_GENERR","features":[99]},{"name":"SNMP_ERROR_INCONSISTENTNAME","features":[99]},{"name":"SNMP_ERROR_INCONSISTENTVALUE","features":[99]},{"name":"SNMP_ERROR_NOACCESS","features":[99]},{"name":"SNMP_ERROR_NOCREATION","features":[99]},{"name":"SNMP_ERROR_NOERROR","features":[99]},{"name":"SNMP_ERROR_NOSUCHNAME","features":[99]},{"name":"SNMP_ERROR_NOTWRITABLE","features":[99]},{"name":"SNMP_ERROR_READONLY","features":[99]},{"name":"SNMP_ERROR_RESOURCEUNAVAILABLE","features":[99]},{"name":"SNMP_ERROR_STATUS","features":[99]},{"name":"SNMP_ERROR_TOOBIG","features":[99]},{"name":"SNMP_ERROR_UNDOFAILED","features":[99]},{"name":"SNMP_ERROR_WRONGENCODING","features":[99]},{"name":"SNMP_ERROR_WRONGLENGTH","features":[99]},{"name":"SNMP_ERROR_WRONGTYPE","features":[99]},{"name":"SNMP_ERROR_WRONGVALUE","features":[99]},{"name":"SNMP_EXTENSION_GET","features":[99]},{"name":"SNMP_EXTENSION_GET_NEXT","features":[99]},{"name":"SNMP_EXTENSION_REQUEST_TYPE","features":[99]},{"name":"SNMP_EXTENSION_SET_CLEANUP","features":[99]},{"name":"SNMP_EXTENSION_SET_COMMIT","features":[99]},{"name":"SNMP_EXTENSION_SET_TEST","features":[99]},{"name":"SNMP_EXTENSION_SET_UNDO","features":[99]},{"name":"SNMP_GENERICTRAP","features":[99]},{"name":"SNMP_GENERICTRAP_AUTHFAILURE","features":[99]},{"name":"SNMP_GENERICTRAP_COLDSTART","features":[99]},{"name":"SNMP_GENERICTRAP_EGPNEIGHLOSS","features":[99]},{"name":"SNMP_GENERICTRAP_ENTERSPECIFIC","features":[99]},{"name":"SNMP_GENERICTRAP_LINKDOWN","features":[99]},{"name":"SNMP_GENERICTRAP_LINKUP","features":[99]},{"name":"SNMP_GENERICTRAP_WARMSTART","features":[99]},{"name":"SNMP_LOG","features":[99]},{"name":"SNMP_LOG_ERROR","features":[99]},{"name":"SNMP_LOG_FATAL","features":[99]},{"name":"SNMP_LOG_SILENT","features":[99]},{"name":"SNMP_LOG_TRACE","features":[99]},{"name":"SNMP_LOG_VERBOSE","features":[99]},{"name":"SNMP_LOG_WARNING","features":[99]},{"name":"SNMP_MAX_OID_LEN","features":[99]},{"name":"SNMP_MEM_ALLOC_ERROR","features":[99]},{"name":"SNMP_MGMTAPI_AGAIN","features":[99]},{"name":"SNMP_MGMTAPI_INVALID_BUFFER","features":[99]},{"name":"SNMP_MGMTAPI_INVALID_CTL","features":[99]},{"name":"SNMP_MGMTAPI_INVALID_SESSION","features":[99]},{"name":"SNMP_MGMTAPI_NOTRAPS","features":[99]},{"name":"SNMP_MGMTAPI_SELECT_FDERRORS","features":[99]},{"name":"SNMP_MGMTAPI_TIMEOUT","features":[99]},{"name":"SNMP_MGMTAPI_TRAP_DUPINIT","features":[99]},{"name":"SNMP_MGMTAPI_TRAP_ERRORS","features":[99]},{"name":"SNMP_OUTPUT_LOG_TYPE","features":[99]},{"name":"SNMP_OUTPUT_TO_CONSOLE","features":[99]},{"name":"SNMP_OUTPUT_TO_DEBUGGER","features":[99]},{"name":"SNMP_OUTPUT_TO_EVENTLOG","features":[99]},{"name":"SNMP_OUTPUT_TO_LOGFILE","features":[99]},{"name":"SNMP_PDUAPI_INVALID_ES","features":[99]},{"name":"SNMP_PDUAPI_INVALID_GT","features":[99]},{"name":"SNMP_PDUAPI_UNRECOGNIZED_PDU","features":[99]},{"name":"SNMP_PDU_GET","features":[99]},{"name":"SNMP_PDU_GETBULK","features":[99]},{"name":"SNMP_PDU_GETNEXT","features":[99]},{"name":"SNMP_PDU_RESPONSE","features":[99]},{"name":"SNMP_PDU_SET","features":[99]},{"name":"SNMP_PDU_TRAP","features":[99]},{"name":"SNMP_PDU_TYPE","features":[99]},{"name":"SNMP_STATUS","features":[99]},{"name":"SNMP_TRAP_AUTHFAIL","features":[99]},{"name":"SNMP_TRAP_COLDSTART","features":[99]},{"name":"SNMP_TRAP_EGPNEIGHBORLOSS","features":[99]},{"name":"SNMP_TRAP_ENTERPRISESPECIFIC","features":[99]},{"name":"SNMP_TRAP_LINKDOWN","features":[99]},{"name":"SNMP_TRAP_LINKUP","features":[99]},{"name":"SNMP_TRAP_WARMSTART","features":[99]},{"name":"SnmpCancelMsg","features":[99]},{"name":"SnmpCleanup","features":[99]},{"name":"SnmpCleanupEx","features":[99]},{"name":"SnmpClose","features":[99]},{"name":"SnmpContextToStr","features":[99]},{"name":"SnmpCountVbl","features":[99]},{"name":"SnmpCreatePdu","features":[99]},{"name":"SnmpCreateSession","features":[1,99]},{"name":"SnmpCreateVbl","features":[99]},{"name":"SnmpDecodeMsg","features":[99]},{"name":"SnmpDeleteVb","features":[99]},{"name":"SnmpDuplicatePdu","features":[99]},{"name":"SnmpDuplicateVbl","features":[99]},{"name":"SnmpEncodeMsg","features":[99]},{"name":"SnmpEntityToStr","features":[99]},{"name":"SnmpFreeContext","features":[99]},{"name":"SnmpFreeDescriptor","features":[99]},{"name":"SnmpFreeEntity","features":[99]},{"name":"SnmpFreePdu","features":[99]},{"name":"SnmpFreeVbl","features":[99]},{"name":"SnmpGetLastError","features":[99]},{"name":"SnmpGetPduData","features":[99]},{"name":"SnmpGetRetransmitMode","features":[99]},{"name":"SnmpGetRetry","features":[99]},{"name":"SnmpGetTimeout","features":[99]},{"name":"SnmpGetTranslateMode","features":[99]},{"name":"SnmpGetVb","features":[99]},{"name":"SnmpGetVendorInfo","features":[99]},{"name":"SnmpListen","features":[99]},{"name":"SnmpListenEx","features":[99]},{"name":"SnmpMgrClose","features":[1,99]},{"name":"SnmpMgrCtl","features":[1,99]},{"name":"SnmpMgrGetTrap","features":[1,99]},{"name":"SnmpMgrGetTrapEx","features":[1,99]},{"name":"SnmpMgrOidToStr","features":[1,99]},{"name":"SnmpMgrOpen","features":[99]},{"name":"SnmpMgrRequest","features":[1,99]},{"name":"SnmpMgrStrToOid","features":[1,99]},{"name":"SnmpMgrTrapListen","features":[1,99]},{"name":"SnmpOidCompare","features":[99]},{"name":"SnmpOidCopy","features":[99]},{"name":"SnmpOidToStr","features":[99]},{"name":"SnmpOpen","features":[1,99]},{"name":"SnmpRecvMsg","features":[99]},{"name":"SnmpRegister","features":[99]},{"name":"SnmpSendMsg","features":[99]},{"name":"SnmpSetPduData","features":[99]},{"name":"SnmpSetPort","features":[99]},{"name":"SnmpSetRetransmitMode","features":[99]},{"name":"SnmpSetRetry","features":[99]},{"name":"SnmpSetTimeout","features":[99]},{"name":"SnmpSetTranslateMode","features":[99]},{"name":"SnmpSetVb","features":[99]},{"name":"SnmpStartup","features":[99]},{"name":"SnmpStartupEx","features":[99]},{"name":"SnmpStrToContext","features":[99]},{"name":"SnmpStrToEntity","features":[99]},{"name":"SnmpStrToOid","features":[99]},{"name":"SnmpSvcGetUptime","features":[99]},{"name":"SnmpSvcSetLogLevel","features":[99]},{"name":"SnmpSvcSetLogType","features":[99]},{"name":"SnmpUtilAsnAnyCpy","features":[1,99]},{"name":"SnmpUtilAsnAnyFree","features":[1,99]},{"name":"SnmpUtilDbgPrint","features":[99]},{"name":"SnmpUtilIdsToA","features":[99]},{"name":"SnmpUtilMemAlloc","features":[99]},{"name":"SnmpUtilMemFree","features":[99]},{"name":"SnmpUtilMemReAlloc","features":[99]},{"name":"SnmpUtilOctetsCmp","features":[1,99]},{"name":"SnmpUtilOctetsCpy","features":[1,99]},{"name":"SnmpUtilOctetsFree","features":[1,99]},{"name":"SnmpUtilOctetsNCmp","features":[1,99]},{"name":"SnmpUtilOidAppend","features":[99]},{"name":"SnmpUtilOidCmp","features":[99]},{"name":"SnmpUtilOidCpy","features":[99]},{"name":"SnmpUtilOidFree","features":[99]},{"name":"SnmpUtilOidNCmp","features":[99]},{"name":"SnmpUtilOidToA","features":[99]},{"name":"SnmpUtilPrintAsnAny","features":[1,99]},{"name":"SnmpUtilPrintOid","features":[99]},{"name":"SnmpUtilVarBindCpy","features":[1,99]},{"name":"SnmpUtilVarBindFree","features":[1,99]},{"name":"SnmpUtilVarBindListCpy","features":[1,99]},{"name":"SnmpUtilVarBindListFree","features":[1,99]},{"name":"SnmpVarBind","features":[1,99]},{"name":"SnmpVarBindList","features":[1,99]},{"name":"SnmpVarBindList","features":[1,99]},{"name":"smiCNTR64","features":[99]},{"name":"smiOCTETS","features":[99]},{"name":"smiOID","features":[99]},{"name":"smiVALUE","features":[99]},{"name":"smiVENDORINFO","features":[99]}],"459":[{"name":"CONNDLG_CONN_POINT","features":[100]},{"name":"CONNDLG_HIDE_BOX","features":[100]},{"name":"CONNDLG_NOT_PERSIST","features":[100]},{"name":"CONNDLG_PERSIST","features":[100]},{"name":"CONNDLG_RO_PATH","features":[100]},{"name":"CONNDLG_USE_MRU","features":[100]},{"name":"CONNECTDLGSTRUCTA","features":[1,100]},{"name":"CONNECTDLGSTRUCTW","features":[1,100]},{"name":"CONNECTDLGSTRUCT_FLAGS","features":[100]},{"name":"CONNECT_CMD_SAVECRED","features":[100]},{"name":"CONNECT_COMMANDLINE","features":[100]},{"name":"CONNECT_CRED_RESET","features":[100]},{"name":"CONNECT_CURRENT_MEDIA","features":[100]},{"name":"CONNECT_DEFERRED","features":[100]},{"name":"CONNECT_GLOBAL_MAPPING","features":[100]},{"name":"CONNECT_INTERACTIVE","features":[100]},{"name":"CONNECT_LOCALDRIVE","features":[100]},{"name":"CONNECT_NEED_DRIVE","features":[100]},{"name":"CONNECT_PROMPT","features":[100]},{"name":"CONNECT_REDIRECT","features":[100]},{"name":"CONNECT_REFCOUNT","features":[100]},{"name":"CONNECT_REQUIRE_INTEGRITY","features":[100]},{"name":"CONNECT_REQUIRE_PRIVACY","features":[100]},{"name":"CONNECT_RESERVED","features":[100]},{"name":"CONNECT_TEMPORARY","features":[100]},{"name":"CONNECT_UPDATE_PROFILE","features":[100]},{"name":"CONNECT_UPDATE_RECENT","features":[100]},{"name":"CONNECT_WRITE_THROUGH_SEMANTICS","features":[100]},{"name":"DISCDLGSTRUCTA","features":[1,100]},{"name":"DISCDLGSTRUCTW","features":[1,100]},{"name":"DISCDLGSTRUCT_FLAGS","features":[100]},{"name":"DISC_NO_FORCE","features":[100]},{"name":"DISC_UPDATE_PROFILE","features":[100]},{"name":"MultinetGetConnectionPerformanceA","features":[100]},{"name":"MultinetGetConnectionPerformanceW","features":[100]},{"name":"NETCONNECTINFOSTRUCT","features":[100]},{"name":"NETINFOSTRUCT","features":[1,100]},{"name":"NETINFOSTRUCT_CHARACTERISTICS","features":[100]},{"name":"NETINFO_DISKRED","features":[100]},{"name":"NETINFO_DLL16","features":[100]},{"name":"NETINFO_PRINTERRED","features":[100]},{"name":"NETPROPERTY_PERSISTENT","features":[100]},{"name":"NETRESOURCEA","features":[100]},{"name":"NETRESOURCEW","features":[100]},{"name":"NETWORK_NAME_FORMAT_FLAGS","features":[100]},{"name":"NET_RESOURCE_SCOPE","features":[100]},{"name":"NET_RESOURCE_TYPE","features":[100]},{"name":"NET_USE_CONNECT_FLAGS","features":[100]},{"name":"NOTIFYADD","features":[1,100]},{"name":"NOTIFYCANCEL","features":[1,100]},{"name":"NOTIFYINFO","features":[100]},{"name":"NOTIFY_POST","features":[100]},{"name":"NOTIFY_PRE","features":[100]},{"name":"NPAddConnection","features":[100]},{"name":"NPAddConnection3","features":[1,100]},{"name":"NPAddConnection4","features":[1,100]},{"name":"NPCancelConnection","features":[1,100]},{"name":"NPCancelConnection2","features":[1,100]},{"name":"NPCloseEnum","features":[1,100]},{"name":"NPDIRECTORY_NOTIFY_OPERATION","features":[100]},{"name":"NPEnumResource","features":[1,100]},{"name":"NPFormatNetworkName","features":[100]},{"name":"NPGetCaps","features":[100]},{"name":"NPGetConnection","features":[100]},{"name":"NPGetConnection3","features":[100]},{"name":"NPGetConnectionPerformance","features":[100]},{"name":"NPGetPersistentUseOptionsForConnection","features":[100]},{"name":"NPGetResourceInformation","features":[100]},{"name":"NPGetResourceParent","features":[100]},{"name":"NPGetUniversalName","features":[100]},{"name":"NPGetUser","features":[100]},{"name":"NPOpenEnum","features":[1,100]},{"name":"NP_PROPERTY_DIALOG_SELECTION","features":[100]},{"name":"PF_AddConnectNotify","features":[1,100]},{"name":"PF_CancelConnectNotify","features":[1,100]},{"name":"PF_NPAddConnection","features":[100]},{"name":"PF_NPAddConnection3","features":[1,100]},{"name":"PF_NPAddConnection4","features":[1,100]},{"name":"PF_NPCancelConnection","features":[1,100]},{"name":"PF_NPCancelConnection2","features":[1,100]},{"name":"PF_NPCloseEnum","features":[1,100]},{"name":"PF_NPDeviceMode","features":[1,100]},{"name":"PF_NPDirectoryNotify","features":[1,100]},{"name":"PF_NPEnumResource","features":[1,100]},{"name":"PF_NPFMXEditPerm","features":[1,100]},{"name":"PF_NPFMXGetPermCaps","features":[100]},{"name":"PF_NPFMXGetPermHelp","features":[1,100]},{"name":"PF_NPFormatNetworkName","features":[100]},{"name":"PF_NPGetCaps","features":[100]},{"name":"PF_NPGetConnection","features":[100]},{"name":"PF_NPGetConnection3","features":[100]},{"name":"PF_NPGetConnectionPerformance","features":[100]},{"name":"PF_NPGetDirectoryType","features":[1,100]},{"name":"PF_NPGetPersistentUseOptionsForConnection","features":[100]},{"name":"PF_NPGetPropertyText","features":[100]},{"name":"PF_NPGetResourceInformation","features":[100]},{"name":"PF_NPGetResourceParent","features":[100]},{"name":"PF_NPGetUniversalName","features":[100]},{"name":"PF_NPGetUser","features":[100]},{"name":"PF_NPLogonNotify","features":[1,100]},{"name":"PF_NPOpenEnum","features":[1,100]},{"name":"PF_NPPasswordChangeNotify","features":[100]},{"name":"PF_NPPropertyDialog","features":[1,100]},{"name":"PF_NPSearchDialog","features":[1,100]},{"name":"REMOTE_NAME_INFOA","features":[100]},{"name":"REMOTE_NAME_INFOW","features":[100]},{"name":"REMOTE_NAME_INFO_LEVEL","features":[100]},{"name":"RESOURCEDISPLAYTYPE_DIRECTORY","features":[100]},{"name":"RESOURCEDISPLAYTYPE_NDSCONTAINER","features":[100]},{"name":"RESOURCEDISPLAYTYPE_NETWORK","features":[100]},{"name":"RESOURCEDISPLAYTYPE_ROOT","features":[100]},{"name":"RESOURCEDISPLAYTYPE_SHAREADMIN","features":[100]},{"name":"RESOURCETYPE_ANY","features":[100]},{"name":"RESOURCETYPE_DISK","features":[100]},{"name":"RESOURCETYPE_PRINT","features":[100]},{"name":"RESOURCETYPE_RESERVED","features":[100]},{"name":"RESOURCETYPE_UNKNOWN","features":[100]},{"name":"RESOURCEUSAGE_ALL","features":[100]},{"name":"RESOURCEUSAGE_ATTACHED","features":[100]},{"name":"RESOURCEUSAGE_CONNECTABLE","features":[100]},{"name":"RESOURCEUSAGE_CONTAINER","features":[100]},{"name":"RESOURCEUSAGE_NOLOCALDEVICE","features":[100]},{"name":"RESOURCEUSAGE_NONE","features":[100]},{"name":"RESOURCEUSAGE_RESERVED","features":[100]},{"name":"RESOURCEUSAGE_SIBLING","features":[100]},{"name":"RESOURCE_CONNECTED","features":[100]},{"name":"RESOURCE_CONTEXT","features":[100]},{"name":"RESOURCE_GLOBALNET","features":[100]},{"name":"RESOURCE_RECENT","features":[100]},{"name":"RESOURCE_REMEMBERED","features":[100]},{"name":"UNC_INFO_LEVEL","features":[100]},{"name":"UNIVERSAL_NAME_INFOA","features":[100]},{"name":"UNIVERSAL_NAME_INFOW","features":[100]},{"name":"UNIVERSAL_NAME_INFO_LEVEL","features":[100]},{"name":"WNCON_DYNAMIC","features":[100]},{"name":"WNCON_FORNETCARD","features":[100]},{"name":"WNCON_NOTROUTED","features":[100]},{"name":"WNCON_SLOWLINK","features":[100]},{"name":"WNDN_MKDIR","features":[100]},{"name":"WNDN_MVDIR","features":[100]},{"name":"WNDN_RMDIR","features":[100]},{"name":"WNDT_NETWORK","features":[100]},{"name":"WNDT_NORMAL","features":[100]},{"name":"WNET_OPEN_ENUM_USAGE","features":[100]},{"name":"WNFMT_ABBREVIATED","features":[100]},{"name":"WNFMT_CONNECTION","features":[100]},{"name":"WNFMT_INENUM","features":[100]},{"name":"WNFMT_MULTILINE","features":[100]},{"name":"WNGETCON_CONNECTED","features":[100]},{"name":"WNGETCON_DISCONNECTED","features":[100]},{"name":"WNNC_ADMIN","features":[100]},{"name":"WNNC_ADM_DIRECTORYNOTIFY","features":[100]},{"name":"WNNC_ADM_GETDIRECTORYTYPE","features":[100]},{"name":"WNNC_CONNECTION","features":[100]},{"name":"WNNC_CONNECTION_FLAGS","features":[100]},{"name":"WNNC_CON_ADDCONNECTION","features":[100]},{"name":"WNNC_CON_ADDCONNECTION3","features":[100]},{"name":"WNNC_CON_ADDCONNECTION4","features":[100]},{"name":"WNNC_CON_CANCELCONNECTION","features":[100]},{"name":"WNNC_CON_CANCELCONNECTION2","features":[100]},{"name":"WNNC_CON_DEFER","features":[100]},{"name":"WNNC_CON_GETCONNECTIONS","features":[100]},{"name":"WNNC_CON_GETPERFORMANCE","features":[100]},{"name":"WNNC_DIALOG","features":[100]},{"name":"WNNC_DLG_DEVICEMODE","features":[100]},{"name":"WNNC_DLG_FORMATNETWORKNAME","features":[100]},{"name":"WNNC_DLG_GETRESOURCEINFORMATION","features":[100]},{"name":"WNNC_DLG_GETRESOURCEPARENT","features":[100]},{"name":"WNNC_DLG_PERMISSIONEDITOR","features":[100]},{"name":"WNNC_DLG_PROPERTYDIALOG","features":[100]},{"name":"WNNC_DLG_SEARCHDIALOG","features":[100]},{"name":"WNNC_DRIVER_VERSION","features":[100]},{"name":"WNNC_ENUMERATION","features":[100]},{"name":"WNNC_ENUM_CONTEXT","features":[100]},{"name":"WNNC_ENUM_GLOBAL","features":[100]},{"name":"WNNC_ENUM_LOCAL","features":[100]},{"name":"WNNC_ENUM_SHAREABLE","features":[100]},{"name":"WNNC_NET_NONE","features":[100]},{"name":"WNNC_NET_TYPE","features":[100]},{"name":"WNNC_SPEC_VERSION","features":[100]},{"name":"WNNC_SPEC_VERSION51","features":[100]},{"name":"WNNC_START","features":[100]},{"name":"WNNC_USER","features":[100]},{"name":"WNNC_USR_GETUSER","features":[100]},{"name":"WNNC_WAIT_FOR_START","features":[100]},{"name":"WNPERMC_AUDIT","features":[100]},{"name":"WNPERMC_OWNER","features":[100]},{"name":"WNPERMC_PERM","features":[100]},{"name":"WNPERM_DLG","features":[100]},{"name":"WNPERM_DLG_AUDIT","features":[100]},{"name":"WNPERM_DLG_OWNER","features":[100]},{"name":"WNPERM_DLG_PERM","features":[100]},{"name":"WNPS_DIR","features":[100]},{"name":"WNPS_FILE","features":[100]},{"name":"WNPS_MULT","features":[100]},{"name":"WNSRCH_REFRESH_FIRST_LEVEL","features":[100]},{"name":"WNTYPE_COMM","features":[100]},{"name":"WNTYPE_DRIVE","features":[100]},{"name":"WNTYPE_FILE","features":[100]},{"name":"WNTYPE_PRINTER","features":[100]},{"name":"WN_CREDENTIAL_CLASS","features":[100]},{"name":"WN_NETWORK_CLASS","features":[100]},{"name":"WN_NT_PASSWORD_CHANGED","features":[100]},{"name":"WN_PRIMARY_AUTHENT_CLASS","features":[100]},{"name":"WN_SERVICE_CLASS","features":[100]},{"name":"WN_VALID_LOGON_ACCOUNT","features":[100]},{"name":"WNetAddConnection2A","features":[1,100]},{"name":"WNetAddConnection2W","features":[1,100]},{"name":"WNetAddConnection3A","features":[1,100]},{"name":"WNetAddConnection3W","features":[1,100]},{"name":"WNetAddConnection4A","features":[1,100]},{"name":"WNetAddConnection4W","features":[1,100]},{"name":"WNetAddConnectionA","features":[1,100]},{"name":"WNetAddConnectionW","features":[1,100]},{"name":"WNetCancelConnection2A","features":[1,100]},{"name":"WNetCancelConnection2W","features":[1,100]},{"name":"WNetCancelConnectionA","features":[1,100]},{"name":"WNetCancelConnectionW","features":[1,100]},{"name":"WNetCloseEnum","features":[1,100]},{"name":"WNetConnectionDialog","features":[1,100]},{"name":"WNetConnectionDialog1A","features":[1,100]},{"name":"WNetConnectionDialog1W","features":[1,100]},{"name":"WNetDisconnectDialog","features":[1,100]},{"name":"WNetDisconnectDialog1A","features":[1,100]},{"name":"WNetDisconnectDialog1W","features":[1,100]},{"name":"WNetEnumResourceA","features":[1,100]},{"name":"WNetEnumResourceW","features":[1,100]},{"name":"WNetGetConnectionA","features":[1,100]},{"name":"WNetGetConnectionW","features":[1,100]},{"name":"WNetGetLastErrorA","features":[1,100]},{"name":"WNetGetLastErrorW","features":[1,100]},{"name":"WNetGetNetworkInformationA","features":[1,100]},{"name":"WNetGetNetworkInformationW","features":[1,100]},{"name":"WNetGetProviderNameA","features":[1,100]},{"name":"WNetGetProviderNameW","features":[1,100]},{"name":"WNetGetResourceInformationA","features":[1,100]},{"name":"WNetGetResourceInformationW","features":[1,100]},{"name":"WNetGetResourceParentA","features":[1,100]},{"name":"WNetGetResourceParentW","features":[1,100]},{"name":"WNetGetUniversalNameA","features":[1,100]},{"name":"WNetGetUniversalNameW","features":[1,100]},{"name":"WNetGetUserA","features":[1,100]},{"name":"WNetGetUserW","features":[1,100]},{"name":"WNetOpenEnumA","features":[1,100]},{"name":"WNetOpenEnumW","features":[1,100]},{"name":"WNetSetLastErrorA","features":[100]},{"name":"WNetSetLastErrorW","features":[100]},{"name":"WNetUseConnection4A","features":[1,100]},{"name":"WNetUseConnection4W","features":[1,100]},{"name":"WNetUseConnectionA","features":[1,100]},{"name":"WNetUseConnectionW","features":[1,100]}],"460":[{"name":"AUTHNEXTSTEP","features":[101]},{"name":"CancelRequest","features":[101]},{"name":"DAV_AUTHN_SCHEME_BASIC","features":[101]},{"name":"DAV_AUTHN_SCHEME_CERT","features":[101]},{"name":"DAV_AUTHN_SCHEME_DIGEST","features":[101]},{"name":"DAV_AUTHN_SCHEME_FBA","features":[101]},{"name":"DAV_AUTHN_SCHEME_NEGOTIATE","features":[101]},{"name":"DAV_AUTHN_SCHEME_NTLM","features":[101]},{"name":"DAV_AUTHN_SCHEME_PASSPORT","features":[101]},{"name":"DAV_CALLBACK_AUTH_BLOB","features":[101]},{"name":"DAV_CALLBACK_AUTH_UNP","features":[101]},{"name":"DAV_CALLBACK_CRED","features":[1,101]},{"name":"DavAddConnection","features":[1,101]},{"name":"DavCancelConnectionsToServer","features":[1,101]},{"name":"DavDeleteConnection","features":[1,101]},{"name":"DavFlushFile","features":[1,101]},{"name":"DavGetExtendedError","features":[1,101]},{"name":"DavGetHTTPFromUNCPath","features":[101]},{"name":"DavGetTheLockOwnerOfTheFile","features":[101]},{"name":"DavGetUNCFromHTTPPath","features":[101]},{"name":"DavInvalidateCache","features":[101]},{"name":"DavRegisterAuthCallback","features":[1,101]},{"name":"DavUnregisterAuthCallback","features":[101]},{"name":"DefaultBehavior","features":[101]},{"name":"PFNDAVAUTHCALLBACK","features":[1,101]},{"name":"PFNDAVAUTHCALLBACK_FREECRED","features":[101]},{"name":"RetryRequest","features":[101]}],"461":[{"name":"CH_DESCRIPTION_TYPE","features":[102]},{"name":"DEVPKEY_InfraCast_AccessPointBssid","features":[35,102]},{"name":"DEVPKEY_InfraCast_ChallengeAep","features":[35,102]},{"name":"DEVPKEY_InfraCast_DevnodeAep","features":[35,102]},{"name":"DEVPKEY_InfraCast_HostName_ResolutionMode","features":[35,102]},{"name":"DEVPKEY_InfraCast_PinSupported","features":[35,102]},{"name":"DEVPKEY_InfraCast_RtspTcpConnectionParametersSupported","features":[35,102]},{"name":"DEVPKEY_InfraCast_SinkHostName","features":[35,102]},{"name":"DEVPKEY_InfraCast_SinkIpAddress","features":[35,102]},{"name":"DEVPKEY_InfraCast_StreamSecuritySupported","features":[35,102]},{"name":"DEVPKEY_InfraCast_Supported","features":[35,102]},{"name":"DEVPKEY_PciDevice_AERCapabilityPresent","features":[35,102]},{"name":"DEVPKEY_PciDevice_AcsCapabilityRegister","features":[35,102]},{"name":"DEVPKEY_PciDevice_AcsCompatibleUpHierarchy","features":[35,102]},{"name":"DEVPKEY_PciDevice_AcsSupport","features":[35,102]},{"name":"DEVPKEY_PciDevice_AriSupport","features":[35,102]},{"name":"DEVPKEY_PciDevice_AtomicsSupported","features":[35,102]},{"name":"DEVPKEY_PciDevice_AtsSupport","features":[35,102]},{"name":"DEVPKEY_PciDevice_BarTypes","features":[35,102]},{"name":"DEVPKEY_PciDevice_BaseClass","features":[35,102]},{"name":"DEVPKEY_PciDevice_Correctable_Error_Mask","features":[35,102]},{"name":"DEVPKEY_PciDevice_CurrentLinkSpeed","features":[35,102]},{"name":"DEVPKEY_PciDevice_CurrentLinkWidth","features":[35,102]},{"name":"DEVPKEY_PciDevice_CurrentPayloadSize","features":[35,102]},{"name":"DEVPKEY_PciDevice_CurrentSpeedAndMode","features":[35,102]},{"name":"DEVPKEY_PciDevice_D3ColdSupport","features":[35,102]},{"name":"DEVPKEY_PciDevice_DeviceType","features":[35,102]},{"name":"DEVPKEY_PciDevice_ECRC_Errors","features":[35,102]},{"name":"DEVPKEY_PciDevice_Error_Reporting","features":[35,102]},{"name":"DEVPKEY_PciDevice_ExpressSpecVersion","features":[35,102]},{"name":"DEVPKEY_PciDevice_FirmwareErrorHandling","features":[35,102]},{"name":"DEVPKEY_PciDevice_InterruptMessageMaximum","features":[35,102]},{"name":"DEVPKEY_PciDevice_InterruptSupport","features":[35,102]},{"name":"DEVPKEY_PciDevice_Label_Id","features":[35,102]},{"name":"DEVPKEY_PciDevice_Label_String","features":[35,102]},{"name":"DEVPKEY_PciDevice_MaxLinkSpeed","features":[35,102]},{"name":"DEVPKEY_PciDevice_MaxLinkWidth","features":[35,102]},{"name":"DEVPKEY_PciDevice_MaxPayloadSize","features":[35,102]},{"name":"DEVPKEY_PciDevice_MaxReadRequestSize","features":[35,102]},{"name":"DEVPKEY_PciDevice_OnPostPath","features":[35,102]},{"name":"DEVPKEY_PciDevice_ParentSerialNumber","features":[35,102]},{"name":"DEVPKEY_PciDevice_ProgIf","features":[35,102]},{"name":"DEVPKEY_PciDevice_RequiresReservedMemoryRegion","features":[35,102]},{"name":"DEVPKEY_PciDevice_RootError_Reporting","features":[35,102]},{"name":"DEVPKEY_PciDevice_S0WakeupSupported","features":[35,102]},{"name":"DEVPKEY_PciDevice_SerialNumber","features":[35,102]},{"name":"DEVPKEY_PciDevice_SriovSupport","features":[35,102]},{"name":"DEVPKEY_PciDevice_SubClass","features":[35,102]},{"name":"DEVPKEY_PciDevice_SupportedLinkSubState","features":[35,102]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Mask","features":[35,102]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Severity","features":[35,102]},{"name":"DEVPKEY_PciDevice_UsbComponentRelation","features":[35,102]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortSpecificAttributes","features":[35,102]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortType","features":[35,102]},{"name":"DEVPKEY_PciDevice_UsbHostRouterName","features":[35,102]},{"name":"DEVPKEY_PciRootBus_ASPMSupport","features":[35,102]},{"name":"DEVPKEY_PciRootBus_ClockPowerManagementSupport","features":[35,102]},{"name":"DEVPKEY_PciRootBus_CurrentSpeedAndMode","features":[35,102]},{"name":"DEVPKEY_PciRootBus_DeviceIDMessagingCapable","features":[35,102]},{"name":"DEVPKEY_PciRootBus_ExtendedConfigAvailable","features":[35,102]},{"name":"DEVPKEY_PciRootBus_ExtendedPCIConfigOpRegionSupport","features":[35,102]},{"name":"DEVPKEY_PciRootBus_MSISupport","features":[35,102]},{"name":"DEVPKEY_PciRootBus_NativePciExpressControl","features":[35,102]},{"name":"DEVPKEY_PciRootBus_PCIExpressAERControl","features":[35,102]},{"name":"DEVPKEY_PciRootBus_PCIExpressCapabilityControl","features":[35,102]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativeHotPlugControl","features":[35,102]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativePMEControl","features":[35,102]},{"name":"DEVPKEY_PciRootBus_PCISegmentGroupsSupport","features":[35,102]},{"name":"DEVPKEY_PciRootBus_SHPCNativeHotPlugControl","features":[35,102]},{"name":"DEVPKEY_PciRootBus_SecondaryBusWidth","features":[35,102]},{"name":"DEVPKEY_PciRootBus_SecondaryInterface","features":[35,102]},{"name":"DEVPKEY_PciRootBus_SupportedSpeedsAndModes","features":[35,102]},{"name":"DEVPKEY_PciRootBus_SystemMsiSupport","features":[35,102]},{"name":"DEVPKEY_WiFiDirectServices_AdvertisementId","features":[35,102]},{"name":"DEVPKEY_WiFiDirectServices_RequestServiceInformation","features":[35,102]},{"name":"DEVPKEY_WiFiDirectServices_ServiceAddress","features":[35,102]},{"name":"DEVPKEY_WiFiDirectServices_ServiceConfigMethods","features":[35,102]},{"name":"DEVPKEY_WiFiDirectServices_ServiceInformation","features":[35,102]},{"name":"DEVPKEY_WiFiDirectServices_ServiceName","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_DeviceAddress","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_DeviceAddressCopy","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_FoundWsbService","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_GroupId","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_InformationElements","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_InterfaceAddress","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_InterfaceGuid","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_IsConnected","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_IsDMGCapable","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_IsLegacyDevice","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_IsMiracastLCPSupported","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_IsRecentlyAssociated","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_IsVisible","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_LinkQuality","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_MiracastVersion","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_Miracast_SessionMgmtControlPort","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_NoMiracastAutoProject","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_RtspTcpConnectionParametersSupported","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_Service_Aeps","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_Services","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_SupportedChannelList","features":[35,102]},{"name":"DEVPKEY_WiFiDirect_TransientAssociation","features":[35,102]},{"name":"DEVPKEY_WiFi_InterfaceGuid","features":[35,102]},{"name":"DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY","features":[102]},{"name":"DEVPROP_PCIDEVICE_ACSSUPPORT","features":[102]},{"name":"DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE","features":[102]},{"name":"DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE","features":[102]},{"name":"DEVPROP_PCIDEVICE_INTERRUPTTYPE","features":[102]},{"name":"DEVPROP_PCIDEVICE_SRIOVSUPPORT","features":[102]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKSPEED","features":[102]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH","features":[102]},{"name":"DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE","features":[102]},{"name":"DEVPROP_PCIEXPRESSDEVICE_SPEC_VERSION","features":[102]},{"name":"DEVPROP_PCIROOTBUS_BUSWIDTH","features":[102]},{"name":"DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE","features":[102]},{"name":"DEVPROP_PCIROOTBUS_SECONDARYINTERFACE","features":[102]},{"name":"DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES","features":[102]},{"name":"DISCOVERY_FILTER_BITMASK_ANY","features":[102]},{"name":"DISCOVERY_FILTER_BITMASK_DEVICE","features":[102]},{"name":"DISCOVERY_FILTER_BITMASK_GO","features":[102]},{"name":"DOT11EXTIHV_ADAPTER_RESET","features":[1,102]},{"name":"DOT11EXTIHV_CONTROL","features":[1,102]},{"name":"DOT11EXTIHV_CREATE_DISCOVERY_PROFILES","features":[1,102,103]},{"name":"DOT11EXTIHV_DEINIT_ADAPTER","features":[1,102]},{"name":"DOT11EXTIHV_DEINIT_SERVICE","features":[102]},{"name":"DOT11EXTIHV_GET_VERSION_INFO","features":[102]},{"name":"DOT11EXTIHV_INIT_ADAPTER","features":[1,102]},{"name":"DOT11EXTIHV_INIT_SERVICE","features":[1,16,102,103,104]},{"name":"DOT11EXTIHV_INIT_VIRTUAL_STATION","features":[1,102]},{"name":"DOT11EXTIHV_IS_UI_REQUEST_PENDING","features":[1,102]},{"name":"DOT11EXTIHV_ONEX_INDICATE_RESULT","features":[1,102,103]},{"name":"DOT11EXTIHV_PERFORM_CAPABILITY_MATCH","features":[1,102,103]},{"name":"DOT11EXTIHV_PERFORM_POST_ASSOCIATE","features":[1,16,102]},{"name":"DOT11EXTIHV_PERFORM_PRE_ASSOCIATE","features":[1,102,103]},{"name":"DOT11EXTIHV_PROCESS_SESSION_CHANGE","features":[102,104]},{"name":"DOT11EXTIHV_PROCESS_UI_RESPONSE","features":[102]},{"name":"DOT11EXTIHV_QUERY_UI_REQUEST","features":[1,102]},{"name":"DOT11EXTIHV_RECEIVE_INDICATION","features":[1,102]},{"name":"DOT11EXTIHV_RECEIVE_PACKET","features":[1,102]},{"name":"DOT11EXTIHV_SEND_PACKET_COMPLETION","features":[1,102]},{"name":"DOT11EXTIHV_STOP_POST_ASSOCIATE","features":[1,102]},{"name":"DOT11EXTIHV_VALIDATE_PROFILE","features":[1,102,103]},{"name":"DOT11EXT_ALLOCATE_BUFFER","features":[102]},{"name":"DOT11EXT_APIS","features":[1,16,102,103]},{"name":"DOT11EXT_FREE_BUFFER","features":[102]},{"name":"DOT11EXT_GET_PROFILE_CUSTOM_USER_DATA","features":[1,102]},{"name":"DOT11EXT_IHV_CONNECTION_PHASE","features":[102]},{"name":"DOT11EXT_IHV_CONNECTIVITY_PROFILE","features":[102]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE","features":[1,102]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE_LIST","features":[1,102]},{"name":"DOT11EXT_IHV_HANDLERS","features":[1,16,102,103,104]},{"name":"DOT11EXT_IHV_INDICATION_TYPE","features":[102]},{"name":"DOT11EXT_IHV_PARAMS","features":[1,102,103]},{"name":"DOT11EXT_IHV_PROFILE_PARAMS","features":[1,102,103]},{"name":"DOT11EXT_IHV_SECURITY_PROFILE","features":[1,102]},{"name":"DOT11EXT_IHV_SSID_LIST","features":[102]},{"name":"DOT11EXT_IHV_UI_REQUEST","features":[102]},{"name":"DOT11EXT_NIC_SPECIFIC_EXTENSION","features":[1,102]},{"name":"DOT11EXT_ONEX_START","features":[1,102,103]},{"name":"DOT11EXT_ONEX_STOP","features":[1,102]},{"name":"DOT11EXT_POST_ASSOCIATE_COMPLETION","features":[1,102]},{"name":"DOT11EXT_PRE_ASSOCIATE_COMPLETION","features":[1,102]},{"name":"DOT11EXT_PROCESS_ONEX_PACKET","features":[1,102]},{"name":"DOT11EXT_PSK_MAX_LENGTH","features":[102]},{"name":"DOT11EXT_QUERY_VIRTUAL_STATION_PROPERTIES","features":[1,102]},{"name":"DOT11EXT_RELEASE_VIRTUAL_STATION","features":[1,102]},{"name":"DOT11EXT_REQUEST_VIRTUAL_STATION","features":[1,102]},{"name":"DOT11EXT_SEND_NOTIFICATION","features":[1,102]},{"name":"DOT11EXT_SEND_PACKET","features":[1,102]},{"name":"DOT11EXT_SEND_UI_REQUEST","features":[1,102]},{"name":"DOT11EXT_SET_AUTH_ALGORITHM","features":[1,102]},{"name":"DOT11EXT_SET_CURRENT_PROFILE","features":[1,102]},{"name":"DOT11EXT_SET_DEFAULT_KEY","features":[1,16,102]},{"name":"DOT11EXT_SET_DEFAULT_KEY_ID","features":[1,102]},{"name":"DOT11EXT_SET_ETHERTYPE_HANDLING","features":[1,102]},{"name":"DOT11EXT_SET_EXCLUDE_UNENCRYPTED","features":[1,102]},{"name":"DOT11EXT_SET_KEY_MAPPING_KEY","features":[1,102]},{"name":"DOT11EXT_SET_MULTICAST_CIPHER_ALGORITHM","features":[1,102]},{"name":"DOT11EXT_SET_PROFILE_CUSTOM_USER_DATA","features":[1,102]},{"name":"DOT11EXT_SET_UNICAST_CIPHER_ALGORITHM","features":[1,102]},{"name":"DOT11EXT_SET_VIRTUAL_STATION_AP_PROPERTIES","features":[1,102]},{"name":"DOT11EXT_VIRTUAL_STATION_APIS","features":[1,102]},{"name":"DOT11EXT_VIRTUAL_STATION_AP_PROPERTY","features":[1,102]},{"name":"DOT11_ACCESSNETWORKOPTIONS","features":[102]},{"name":"DOT11_AC_PARAM","features":[102]},{"name":"DOT11_ADAPTER","features":[102]},{"name":"DOT11_ADDITIONAL_IE","features":[16,102]},{"name":"DOT11_ADDITIONAL_IE_REVISION_1","features":[102]},{"name":"DOT11_ADHOC_AUTH_ALGORITHM","features":[102]},{"name":"DOT11_ADHOC_AUTH_ALGO_80211_OPEN","features":[102]},{"name":"DOT11_ADHOC_AUTH_ALGO_INVALID","features":[102]},{"name":"DOT11_ADHOC_AUTH_ALGO_RSNA_PSK","features":[102]},{"name":"DOT11_ADHOC_CIPHER_ALGORITHM","features":[102]},{"name":"DOT11_ADHOC_CIPHER_ALGO_CCMP","features":[102]},{"name":"DOT11_ADHOC_CIPHER_ALGO_INVALID","features":[102]},{"name":"DOT11_ADHOC_CIPHER_ALGO_NONE","features":[102]},{"name":"DOT11_ADHOC_CIPHER_ALGO_WEP","features":[102]},{"name":"DOT11_ADHOC_CONNECT_FAIL_DOMAIN_MISMATCH","features":[102]},{"name":"DOT11_ADHOC_CONNECT_FAIL_OTHER","features":[102]},{"name":"DOT11_ADHOC_CONNECT_FAIL_PASSPHRASE_MISMATCH","features":[102]},{"name":"DOT11_ADHOC_CONNECT_FAIL_REASON","features":[102]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS","features":[102]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTED","features":[102]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTING","features":[102]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_DISCONNECTED","features":[102]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_FORMED","features":[102]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_INVALID","features":[102]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS","features":[1,16,102]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_ANQP_QUERY_RESULT","features":[102]},{"name":"DOT11_AP_JOIN_REQUEST","features":[102]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS","features":[1,16,102]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_2","features":[102]},{"name":"DOT11_ASSOCIATION_INFO_EX","features":[102]},{"name":"DOT11_ASSOCIATION_INFO_LIST","features":[16,102]},{"name":"DOT11_ASSOCIATION_INFO_LIST_REVISION_1","features":[102]},{"name":"DOT11_ASSOCIATION_PARAMS","features":[16,102]},{"name":"DOT11_ASSOCIATION_PARAMS_REVISION_1","features":[102]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS","features":[16,102]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_ASSOCIATION_STATE","features":[102]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OS","features":[102]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OTHER","features":[102]},{"name":"DOT11_ASSOC_ERROR_SOURCE_REMOTE","features":[102]},{"name":"DOT11_ASSOC_STATUS_SUCCESS","features":[102]},{"name":"DOT11_AUTH_ALGORITHM","features":[102]},{"name":"DOT11_AUTH_ALGORITHM_LIST","features":[16,102]},{"name":"DOT11_AUTH_ALGORITHM_LIST_REVISION_1","features":[102]},{"name":"DOT11_AUTH_ALGO_80211_OPEN","features":[102]},{"name":"DOT11_AUTH_ALGO_80211_SHARED_KEY","features":[102]},{"name":"DOT11_AUTH_ALGO_IHV_END","features":[102]},{"name":"DOT11_AUTH_ALGO_IHV_START","features":[102]},{"name":"DOT11_AUTH_ALGO_MICHAEL","features":[102]},{"name":"DOT11_AUTH_ALGO_OWE","features":[102]},{"name":"DOT11_AUTH_ALGO_RSNA","features":[102]},{"name":"DOT11_AUTH_ALGO_RSNA_PSK","features":[102]},{"name":"DOT11_AUTH_ALGO_WPA","features":[102]},{"name":"DOT11_AUTH_ALGO_WPA3","features":[102]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT","features":[102]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT_192","features":[102]},{"name":"DOT11_AUTH_ALGO_WPA3_SAE","features":[102]},{"name":"DOT11_AUTH_ALGO_WPA_NONE","features":[102]},{"name":"DOT11_AUTH_ALGO_WPA_PSK","features":[102]},{"name":"DOT11_AUTH_CIPHER_PAIR","features":[102]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST","features":[16,102]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST_REVISION_1","features":[102]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST","features":[16,102]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST_REVISION_1","features":[102]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST","features":[16,102]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST_REVISION_1","features":[102]},{"name":"DOT11_BAND","features":[102]},{"name":"DOT11_BSSID_CANDIDATE","features":[102]},{"name":"DOT11_BSSID_LIST","features":[16,102]},{"name":"DOT11_BSSID_LIST_REVISION_1","features":[102]},{"name":"DOT11_BSS_DESCRIPTION","features":[102]},{"name":"DOT11_BSS_ENTRY","features":[1,102]},{"name":"DOT11_BSS_ENTRY_BYTE_ARRAY_REVISION_1","features":[102]},{"name":"DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO","features":[102]},{"name":"DOT11_BSS_LIST","features":[102]},{"name":"DOT11_BSS_TYPE","features":[102]},{"name":"DOT11_BYTE_ARRAY","features":[16,102]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS","features":[16,102]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_END","features":[102]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_START","features":[102]},{"name":"DOT11_CAPABILITY_CHANNEL_AGILITY","features":[102]},{"name":"DOT11_CAPABILITY_DSSSOFDM","features":[102]},{"name":"DOT11_CAPABILITY_INFO_CF_POLLABLE","features":[102]},{"name":"DOT11_CAPABILITY_INFO_CF_POLL_REQ","features":[102]},{"name":"DOT11_CAPABILITY_INFO_ESS","features":[102]},{"name":"DOT11_CAPABILITY_INFO_IBSS","features":[102]},{"name":"DOT11_CAPABILITY_INFO_PRIVACY","features":[102]},{"name":"DOT11_CAPABILITY_PBCC","features":[102]},{"name":"DOT11_CAPABILITY_SHORT_PREAMBLE","features":[102]},{"name":"DOT11_CAPABILITY_SHORT_SLOT_TIME","features":[102]},{"name":"DOT11_CCA_MODE_CS_ONLY","features":[102]},{"name":"DOT11_CCA_MODE_CS_WITH_TIMER","features":[102]},{"name":"DOT11_CCA_MODE_ED_ONLY","features":[102]},{"name":"DOT11_CCA_MODE_ED_and_CS","features":[102]},{"name":"DOT11_CCA_MODE_HRCS_AND_ED","features":[102]},{"name":"DOT11_CHANNEL_HINT","features":[102]},{"name":"DOT11_CIPHER_ALGORITHM","features":[102]},{"name":"DOT11_CIPHER_ALGORITHM_LIST","features":[16,102]},{"name":"DOT11_CIPHER_ALGORITHM_LIST_REVISION_1","features":[102]},{"name":"DOT11_CIPHER_ALGO_BIP","features":[102]},{"name":"DOT11_CIPHER_ALGO_BIP_CMAC_256","features":[102]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_128","features":[102]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_256","features":[102]},{"name":"DOT11_CIPHER_ALGO_CCMP","features":[102]},{"name":"DOT11_CIPHER_ALGO_CCMP_256","features":[102]},{"name":"DOT11_CIPHER_ALGO_GCMP","features":[102]},{"name":"DOT11_CIPHER_ALGO_GCMP_256","features":[102]},{"name":"DOT11_CIPHER_ALGO_IHV_END","features":[102]},{"name":"DOT11_CIPHER_ALGO_IHV_START","features":[102]},{"name":"DOT11_CIPHER_ALGO_NONE","features":[102]},{"name":"DOT11_CIPHER_ALGO_RSN_USE_GROUP","features":[102]},{"name":"DOT11_CIPHER_ALGO_TKIP","features":[102]},{"name":"DOT11_CIPHER_ALGO_WEP","features":[102]},{"name":"DOT11_CIPHER_ALGO_WEP104","features":[102]},{"name":"DOT11_CIPHER_ALGO_WEP40","features":[102]},{"name":"DOT11_CIPHER_ALGO_WPA_USE_GROUP","features":[102]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE","features":[1,16,102]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE_REVISION_1","features":[102]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE","features":[1,102]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE_BYTE_ARRAY_REVISION_1","features":[102]},{"name":"DOT11_CONF_ALGO_TKIP","features":[102]},{"name":"DOT11_CONF_ALGO_WEP_RC4","features":[102]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS","features":[16,102]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_CONNECTION_START_PARAMETERS","features":[16,102]},{"name":"DOT11_CONNECTION_START_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_CONNECTION_STATUS_SUCCESS","features":[102]},{"name":"DOT11_COUNTERS_ENTRY","features":[102]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST","features":[16,102]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST_REVISION_1","features":[102]},{"name":"DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[102]},{"name":"DOT11_CURRENT_OPERATION_MODE","features":[102]},{"name":"DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[1,102]},{"name":"DOT11_DATA_RATE_MAPPING_ENTRY","features":[102]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE","features":[16,102]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE_REVISION_1","features":[102]},{"name":"DOT11_DEFAULT_WEP_OFFLOAD","features":[1,102]},{"name":"DOT11_DEFAULT_WEP_UPLOAD","features":[1,102]},{"name":"DOT11_DEVICE_ENTRY_BYTE_ARRAY_REVISION_1","features":[102]},{"name":"DOT11_DIRECTION","features":[102]},{"name":"DOT11_DIR_BOTH","features":[102]},{"name":"DOT11_DIR_INBOUND","features":[102]},{"name":"DOT11_DIR_OUTBOUND","features":[102]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST","features":[16,102]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST_REVISION_1","features":[102]},{"name":"DOT11_DISASSOCIATION_PARAMETERS","features":[16,102]},{"name":"DOT11_DISASSOCIATION_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_DIVERSITY_SELECTION_RX","features":[1,102]},{"name":"DOT11_DIVERSITY_SELECTION_RX_LIST","features":[1,102]},{"name":"DOT11_DIVERSITY_SUPPORT","features":[102]},{"name":"DOT11_DS_CHANGED","features":[102]},{"name":"DOT11_DS_INFO","features":[102]},{"name":"DOT11_DS_UNCHANGED","features":[102]},{"name":"DOT11_DS_UNKNOWN","features":[102]},{"name":"DOT11_EAP_RESULT","features":[102,103]},{"name":"DOT11_ENCAP_802_1H","features":[102]},{"name":"DOT11_ENCAP_ENTRY","features":[102]},{"name":"DOT11_ENCAP_RFC_1042","features":[102]},{"name":"DOT11_ERP_PHY_ATTRIBUTES","features":[1,102]},{"name":"DOT11_EXEMPT_ALWAYS","features":[102]},{"name":"DOT11_EXEMPT_BOTH","features":[102]},{"name":"DOT11_EXEMPT_MULTICAST","features":[102]},{"name":"DOT11_EXEMPT_NO_EXEMPTION","features":[102]},{"name":"DOT11_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE","features":[102]},{"name":"DOT11_EXEMPT_UNICAST","features":[102]},{"name":"DOT11_EXTAP_ATTRIBUTES","features":[1,16,102]},{"name":"DOT11_EXTAP_ATTRIBUTES_REVISION_1","features":[102]},{"name":"DOT11_EXTAP_RECV_CONTEXT_REVISION_1","features":[102]},{"name":"DOT11_EXTAP_SEND_CONTEXT_REVISION_1","features":[102]},{"name":"DOT11_EXTSTA_ATTRIBUTES","features":[1,16,102]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_1","features":[102]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_2","features":[102]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_3","features":[102]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_4","features":[102]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_CERTIFIED","features":[102]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_OID_SUPPORTED","features":[102]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_RESERVED","features":[102]},{"name":"DOT11_EXTSTA_CAPABILITY","features":[16,102]},{"name":"DOT11_EXTSTA_CAPABILITY_REVISION_1","features":[102]},{"name":"DOT11_EXTSTA_RECV_CONTEXT","features":[16,102]},{"name":"DOT11_EXTSTA_RECV_CONTEXT_REVISION_1","features":[102]},{"name":"DOT11_EXTSTA_SEND_CONTEXT","features":[16,102]},{"name":"DOT11_EXTSTA_SEND_CONTEXT_REVISION_1","features":[102]},{"name":"DOT11_FLAGS_80211B_CHANNEL_AGILITY","features":[102]},{"name":"DOT11_FLAGS_80211B_PBCC","features":[102]},{"name":"DOT11_FLAGS_80211B_SHORT_PREAMBLE","features":[102]},{"name":"DOT11_FLAGS_80211G_BARKER_PREAMBLE_MODE","features":[102]},{"name":"DOT11_FLAGS_80211G_DSSS_OFDM","features":[102]},{"name":"DOT11_FLAGS_80211G_NON_ERP_PRESENT","features":[102]},{"name":"DOT11_FLAGS_80211G_USE_PROTECTION","features":[102]},{"name":"DOT11_FLAGS_PS_ON","features":[102]},{"name":"DOT11_FRAGMENT_DESCRIPTOR","features":[102]},{"name":"DOT11_FREQUENCY_BANDS_LOWER","features":[102]},{"name":"DOT11_FREQUENCY_BANDS_MIDDLE","features":[102]},{"name":"DOT11_FREQUENCY_BANDS_UPPER","features":[102]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_HESSID_LENGTH","features":[102]},{"name":"DOT11_HOPPING_PATTERN_ENTRY","features":[102]},{"name":"DOT11_HOPPING_PATTERN_ENTRY_LIST","features":[102]},{"name":"DOT11_HOP_ALGO_ADOPTED","features":[102]},{"name":"DOT11_HRDSSS_PHY_ATTRIBUTES","features":[1,102]},{"name":"DOT11_HR_CCA_MODE_CS_AND_ED","features":[102]},{"name":"DOT11_HR_CCA_MODE_CS_ONLY","features":[102]},{"name":"DOT11_HR_CCA_MODE_CS_WITH_TIMER","features":[102]},{"name":"DOT11_HR_CCA_MODE_ED_ONLY","features":[102]},{"name":"DOT11_HR_CCA_MODE_HRCS_AND_ED","features":[102]},{"name":"DOT11_HW_DEFRAGMENTATION_SUPPORTED","features":[102]},{"name":"DOT11_HW_FRAGMENTATION_SUPPORTED","features":[102]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_RX","features":[102]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_TX","features":[102]},{"name":"DOT11_HW_WEP_SUPPORTED_RX","features":[102]},{"name":"DOT11_HW_WEP_SUPPORTED_TX","features":[102]},{"name":"DOT11_IBSS_PARAMS","features":[1,16,102]},{"name":"DOT11_IBSS_PARAMS_REVISION_1","features":[102]},{"name":"DOT11_IHV_VERSION_INFO","features":[102]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS","features":[1,16,102]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_INCOMING_ASSOC_DECISION","features":[1,16,102]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_1","features":[102]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_2","features":[102]},{"name":"DOT11_INCOMING_ASSOC_DECISION_V2","features":[1,16,102]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS","features":[1,16,102]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS","features":[16,102]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_INVALID_CHANNEL_NUMBER","features":[102]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_IV48_COUNTER","features":[102]},{"name":"DOT11_JOIN_REQUEST","features":[102]},{"name":"DOT11_KEY_ALGO_BIP","features":[102]},{"name":"DOT11_KEY_ALGO_BIP_GMAC_256","features":[102]},{"name":"DOT11_KEY_ALGO_CCMP","features":[102]},{"name":"DOT11_KEY_ALGO_GCMP","features":[102]},{"name":"DOT11_KEY_ALGO_GCMP_256","features":[102]},{"name":"DOT11_KEY_ALGO_TKIP_MIC","features":[102]},{"name":"DOT11_KEY_DIRECTION","features":[102]},{"name":"DOT11_LINK_QUALITY_ENTRY","features":[102]},{"name":"DOT11_LINK_QUALITY_PARAMETERS","features":[16,102]},{"name":"DOT11_LINK_QUALITY_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_MAC_ADDRESS_LIST","features":[16,102]},{"name":"DOT11_MAC_ADDRESS_LIST_REVISION_1","features":[102]},{"name":"DOT11_MAC_FRAME_STATISTICS","features":[102]},{"name":"DOT11_MAC_INFO","features":[102]},{"name":"DOT11_MAC_PARAMETERS","features":[16,102]},{"name":"DOT11_MAC_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_MANUFACTURING_CALLBACK_PARAMETERS","features":[16,102]},{"name":"DOT11_MANUFACTURING_CALLBACK_REVISION_1","features":[102]},{"name":"DOT11_MANUFACTURING_CALLBACK_TYPE","features":[102]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_QUERY_ADC","features":[102]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_RX","features":[1,102]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_TX","features":[1,102]},{"name":"DOT11_MANUFACTURING_SELF_TEST_QUERY_RESULTS","features":[1,102]},{"name":"DOT11_MANUFACTURING_SELF_TEST_SET_PARAMS","features":[102]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE","features":[102]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_BT_COEXISTENCE","features":[102]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_INTERFACE","features":[102]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_RF_INTERFACE","features":[102]},{"name":"DOT11_MANUFACTURING_TEST","features":[102]},{"name":"DOT11_MANUFACTURING_TEST_QUERY_DATA","features":[102]},{"name":"DOT11_MANUFACTURING_TEST_REVISION_1","features":[102]},{"name":"DOT11_MANUFACTURING_TEST_SET_DATA","features":[102]},{"name":"DOT11_MANUFACTURING_TEST_SLEEP","features":[102]},{"name":"DOT11_MANUFACTURING_TEST_TYPE","features":[102]},{"name":"DOT11_MAX_CHANNEL_HINTS","features":[102]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY","features":[102]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY_MFP","features":[102]},{"name":"DOT11_MAX_NUM_OF_FRAGMENTS","features":[102]},{"name":"DOT11_MAX_PDU_SIZE","features":[102]},{"name":"DOT11_MAX_REQUESTED_SERVICE_INFORMATION_LENGTH","features":[102]},{"name":"DOT11_MD_CAPABILITY_ENTRY_LIST","features":[102]},{"name":"DOT11_MIN_PDU_SIZE","features":[102]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION","features":[16,102]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION_REVISION_1","features":[102]},{"name":"DOT11_MSONEX_FAILURE","features":[102]},{"name":"DOT11_MSONEX_IN_PROGRESS","features":[102]},{"name":"DOT11_MSONEX_RESULT","features":[102]},{"name":"DOT11_MSONEX_RESULT_PARAMS","features":[102,103]},{"name":"DOT11_MSONEX_SUCCESS","features":[102]},{"name":"DOT11_MSSECURITY_SETTINGS","features":[1,102,103]},{"name":"DOT11_MULTI_DOMAIN_CAPABILITY_ENTRY","features":[102]},{"name":"DOT11_NETWORK","features":[102]},{"name":"DOT11_NETWORK_LIST","features":[102]},{"name":"DOT11_NIC_SPECIFIC_EXTENSION","features":[102]},{"name":"DOT11_NLO_FLAG_SCAN_AT_SYSTEM_RESUME","features":[102]},{"name":"DOT11_NLO_FLAG_SCAN_ON_AOAC_PLATFORM","features":[102]},{"name":"DOT11_NLO_FLAG_STOP_NLO_INDICATION","features":[102]},{"name":"DOT11_OFDM_PHY_ATTRIBUTES","features":[102]},{"name":"DOT11_OFFLOAD_CAPABILITY","features":[102]},{"name":"DOT11_OFFLOAD_NETWORK","features":[102]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_INFO","features":[16,102]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_REVISION_1","features":[102]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS","features":[16,102]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_OFFLOAD_TYPE","features":[102]},{"name":"DOT11_OI","features":[102]},{"name":"DOT11_OI_MAX_LENGTH","features":[102]},{"name":"DOT11_OI_MIN_LENGTH","features":[102]},{"name":"DOT11_OPERATION_MODE_AP","features":[102]},{"name":"DOT11_OPERATION_MODE_CAPABILITY","features":[102]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_AP","features":[102]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_STATION","features":[102]},{"name":"DOT11_OPERATION_MODE_MANUFACTURING","features":[102]},{"name":"DOT11_OPERATION_MODE_NETWORK_MONITOR","features":[102]},{"name":"DOT11_OPERATION_MODE_STATION","features":[102]},{"name":"DOT11_OPERATION_MODE_UNKNOWN","features":[102]},{"name":"DOT11_OPERATION_MODE_WFD_CLIENT","features":[102]},{"name":"DOT11_OPERATION_MODE_WFD_DEVICE","features":[102]},{"name":"DOT11_OPERATION_MODE_WFD_GROUP_OWNER","features":[102]},{"name":"DOT11_OPTIONAL_CAPABILITY","features":[1,102]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_CTRL","features":[102]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_DATA","features":[102]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_MGMT","features":[102]},{"name":"DOT11_PACKET_TYPE_BROADCAST_CTRL","features":[102]},{"name":"DOT11_PACKET_TYPE_BROADCAST_DATA","features":[102]},{"name":"DOT11_PACKET_TYPE_BROADCAST_MGMT","features":[102]},{"name":"DOT11_PACKET_TYPE_DIRECTED_CTRL","features":[102]},{"name":"DOT11_PACKET_TYPE_DIRECTED_DATA","features":[102]},{"name":"DOT11_PACKET_TYPE_DIRECTED_MGMT","features":[102]},{"name":"DOT11_PACKET_TYPE_MULTICAST_CTRL","features":[102]},{"name":"DOT11_PACKET_TYPE_MULTICAST_DATA","features":[102]},{"name":"DOT11_PACKET_TYPE_MULTICAST_MGMT","features":[102]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_CTRL","features":[102]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_DATA","features":[102]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_MGMT","features":[102]},{"name":"DOT11_PEER_INFO","features":[1,102]},{"name":"DOT11_PEER_INFO_LIST","features":[1,16,102]},{"name":"DOT11_PEER_INFO_LIST_REVISION_1","features":[102]},{"name":"DOT11_PEER_STATISTICS","features":[102]},{"name":"DOT11_PER_MSDU_COUNTERS","features":[102]},{"name":"DOT11_PHY_ATTRIBUTES","features":[1,16,102]},{"name":"DOT11_PHY_ATTRIBUTES_REVISION_1","features":[102]},{"name":"DOT11_PHY_FRAME_STATISTICS","features":[102]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS","features":[16,102]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_PHY_ID_LIST","features":[16,102]},{"name":"DOT11_PHY_ID_LIST_REVISION_1","features":[102]},{"name":"DOT11_PHY_STATE_PARAMETERS","features":[1,16,102]},{"name":"DOT11_PHY_STATE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_PHY_TYPE","features":[102]},{"name":"DOT11_PHY_TYPE_INFO","features":[1,102]},{"name":"DOT11_PHY_TYPE_LIST","features":[16,102]},{"name":"DOT11_PHY_TYPE_LIST_REVISION_1","features":[102]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS","features":[16,102]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_PMKID_ENTRY","features":[102]},{"name":"DOT11_PMKID_LIST","features":[16,102]},{"name":"DOT11_PMKID_LIST_REVISION_1","features":[102]},{"name":"DOT11_PORT_STATE","features":[1,102]},{"name":"DOT11_PORT_STATE_NOTIFICATION","features":[1,16,102]},{"name":"DOT11_PORT_STATE_NOTIFICATION_REVISION_1","features":[102]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_INFO","features":[1,16,102]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_REVISION_1","features":[102]},{"name":"DOT11_POWER_MGMT_MODE","features":[1,102]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO","features":[16,102]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO_REVISION_1","features":[102]},{"name":"DOT11_POWER_MODE","features":[102]},{"name":"DOT11_POWER_MODE_REASON","features":[102]},{"name":"DOT11_POWER_SAVE_LEVEL_FAST_PSP","features":[102]},{"name":"DOT11_POWER_SAVE_LEVEL_MAX_PSP","features":[102]},{"name":"DOT11_POWER_SAVING_FAST_PSP","features":[102]},{"name":"DOT11_POWER_SAVING_MAXIMUM_LEVEL","features":[102]},{"name":"DOT11_POWER_SAVING_MAX_PSP","features":[102]},{"name":"DOT11_POWER_SAVING_NO_POWER_SAVING","features":[102]},{"name":"DOT11_PRIORITY_CONTENTION","features":[102]},{"name":"DOT11_PRIORITY_CONTENTION_FREE","features":[102]},{"name":"DOT11_PRIVACY_EXEMPTION","features":[102]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST","features":[16,102]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST_REVISION_1","features":[102]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_PSD_IE_MAX_DATA_SIZE","features":[102]},{"name":"DOT11_PSD_IE_MAX_ENTRY_NUMBER","features":[102]},{"name":"DOT11_QOS_PARAMS","features":[16,102]},{"name":"DOT11_QOS_PARAMS_REVISION_1","features":[102]},{"name":"DOT11_QOS_TX_DURATION","features":[102]},{"name":"DOT11_QOS_TX_MEDIUM_TIME","features":[102]},{"name":"DOT11_RADIO_STATE","features":[102]},{"name":"DOT11_RATE_SET","features":[102]},{"name":"DOT11_RATE_SET_MAX_LENGTH","features":[102]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[16,102]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[16,102]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[16,102]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS","features":[16,102]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS","features":[16,102]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[16,102]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[16,102]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RECV_CONTEXT_REVISION_1","features":[102]},{"name":"DOT11_RECV_EXTENSION_INFO","features":[1,102]},{"name":"DOT11_RECV_EXTENSION_INFO_V2","features":[1,102]},{"name":"DOT11_RECV_SENSITIVITY","features":[102]},{"name":"DOT11_RECV_SENSITIVITY_LIST","features":[102]},{"name":"DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[102]},{"name":"DOT11_REG_DOMAIN_DOC","features":[102]},{"name":"DOT11_REG_DOMAIN_ETSI","features":[102]},{"name":"DOT11_REG_DOMAIN_FCC","features":[102]},{"name":"DOT11_REG_DOMAIN_FRANCE","features":[102]},{"name":"DOT11_REG_DOMAIN_MKK","features":[102]},{"name":"DOT11_REG_DOMAIN_OTHER","features":[102]},{"name":"DOT11_REG_DOMAIN_SPAIN","features":[102]},{"name":"DOT11_REG_DOMAIN_VALUE","features":[102]},{"name":"DOT11_RESET_REQUEST","features":[1,102]},{"name":"DOT11_RESET_TYPE","features":[102]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS","features":[16,102]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_ROAMING_START_PARAMETERS","features":[16,102]},{"name":"DOT11_ROAMING_START_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_RSSI_RANGE","features":[102]},{"name":"DOT11_SCAN_REQUEST","features":[1,102]},{"name":"DOT11_SCAN_REQUEST_V2","features":[1,102]},{"name":"DOT11_SCAN_TYPE","features":[102]},{"name":"DOT11_SECURITY_PACKET_HEADER","features":[102]},{"name":"DOT11_SEND_CONTEXT_REVISION_1","features":[102]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[1,16,102]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[16,102]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[1,16,102]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS","features":[1,16,102]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS","features":[1,16,102]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[1,16,102]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[16,102]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_SERVICE_CLASS_REORDERABLE_MULTICAST","features":[102]},{"name":"DOT11_SERVICE_CLASS_STRICTLY_ORDERED","features":[102]},{"name":"DOT11_SSID","features":[102]},{"name":"DOT11_SSID_LIST","features":[16,102]},{"name":"DOT11_SSID_LIST_REVISION_1","features":[102]},{"name":"DOT11_SSID_MAX_LENGTH","features":[102]},{"name":"DOT11_START_REQUEST","features":[102]},{"name":"DOT11_STATISTICS","features":[16,102]},{"name":"DOT11_STATISTICS_REVISION_1","features":[102]},{"name":"DOT11_STATUS_AP_JOIN_CONFIRM","features":[102]},{"name":"DOT11_STATUS_AUTH_FAILED","features":[102]},{"name":"DOT11_STATUS_AUTH_NOT_VERIFIED","features":[102]},{"name":"DOT11_STATUS_AUTH_VERIFIED","features":[102]},{"name":"DOT11_STATUS_ENCRYPTION_FAILED","features":[102]},{"name":"DOT11_STATUS_EXCESSIVE_DATA_LENGTH","features":[102]},{"name":"DOT11_STATUS_GENERATE_AUTH_FAILED","features":[102]},{"name":"DOT11_STATUS_ICV_VERIFIED","features":[102]},{"name":"DOT11_STATUS_INDICATION","features":[102]},{"name":"DOT11_STATUS_JOIN_CONFIRM","features":[102]},{"name":"DOT11_STATUS_MPDU_MAX_LENGTH_CHANGED","features":[102]},{"name":"DOT11_STATUS_PACKET_NOT_REASSEMBLED","features":[102]},{"name":"DOT11_STATUS_PACKET_REASSEMBLED","features":[102]},{"name":"DOT11_STATUS_PS_LIFETIME_EXPIRED","features":[102]},{"name":"DOT11_STATUS_RESET_CONFIRM","features":[102]},{"name":"DOT11_STATUS_RETRY_LIMIT_EXCEEDED","features":[102]},{"name":"DOT11_STATUS_SCAN_CONFIRM","features":[102]},{"name":"DOT11_STATUS_START_CONFIRM","features":[102]},{"name":"DOT11_STATUS_SUCCESS","features":[102]},{"name":"DOT11_STATUS_UNAVAILABLE_BSS","features":[102]},{"name":"DOT11_STATUS_UNAVAILABLE_PRIORITY","features":[102]},{"name":"DOT11_STATUS_UNAVAILABLE_SERVICE_CLASS","features":[102]},{"name":"DOT11_STATUS_UNSUPPORTED_PRIORITY","features":[102]},{"name":"DOT11_STATUS_UNSUPPORTED_SERVICE_CLASS","features":[102]},{"name":"DOT11_STATUS_WEP_KEY_UNAVAILABLE","features":[102]},{"name":"DOT11_STATUS_XMIT_MSDU_TIMER_EXPIRED","features":[102]},{"name":"DOT11_STOP_AP_PARAMETERS","features":[16,102]},{"name":"DOT11_STOP_AP_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_STOP_AP_REASON_AP_ACTIVE","features":[102]},{"name":"DOT11_STOP_AP_REASON_CHANNEL_NOT_AVAILABLE","features":[102]},{"name":"DOT11_STOP_AP_REASON_FREQUENCY_NOT_AVAILABLE","features":[102]},{"name":"DOT11_STOP_AP_REASON_IHV_END","features":[102]},{"name":"DOT11_STOP_AP_REASON_IHV_START","features":[102]},{"name":"DOT11_SUPPORTED_ANTENNA","features":[1,102]},{"name":"DOT11_SUPPORTED_ANTENNA_LIST","features":[1,102]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE","features":[102]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE_V2","features":[102]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL","features":[102]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[102]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY","features":[102]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[102]},{"name":"DOT11_SUPPORTED_PHY_TYPES","features":[102]},{"name":"DOT11_SUPPORTED_POWER_LEVELS","features":[102]},{"name":"DOT11_TEMP_TYPE","features":[102]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS","features":[1,16,102]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_UPDATE_IE","features":[102]},{"name":"DOT11_UPDATE_IE_OP","features":[102]},{"name":"DOT11_VENUEINFO","features":[102]},{"name":"DOT11_VWIFI_ATTRIBUTES","features":[16,102]},{"name":"DOT11_VWIFI_ATTRIBUTES_REVISION_1","features":[102]},{"name":"DOT11_VWIFI_COMBINATION","features":[16,102]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_1","features":[102]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_2","features":[102]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_3","features":[102]},{"name":"DOT11_VWIFI_COMBINATION_V2","features":[16,102]},{"name":"DOT11_VWIFI_COMBINATION_V3","features":[16,102]},{"name":"DOT11_WEP_OFFLOAD","features":[1,102]},{"name":"DOT11_WEP_UPLOAD","features":[1,102]},{"name":"DOT11_WFD_ADDITIONAL_IE","features":[16,102]},{"name":"DOT11_WFD_ADDITIONAL_IE_REVISION_1","features":[102]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_DESCRIPTOR","features":[102]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_LIST","features":[102]},{"name":"DOT11_WFD_ADVERTISEMENT_ID","features":[102]},{"name":"DOT11_WFD_APS2_SERVICE_TYPE_MAX_LENGTH","features":[102]},{"name":"DOT11_WFD_ASP2_INSTANCE_NAME_MAX_LENGTH","features":[102]},{"name":"DOT11_WFD_ATTRIBUTES","features":[1,16,102]},{"name":"DOT11_WFD_ATTRIBUTES_REVISION_1","features":[102]},{"name":"DOT11_WFD_CHANNEL","features":[102]},{"name":"DOT11_WFD_CONFIGURATION_TIMEOUT","features":[102]},{"name":"DOT11_WFD_DEVICE_AUTO_AVAILABILITY","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONCURRENT_OPERATION","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG","features":[1,16,102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG_REVISION_1","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_CLIENT_DISCOVERABILITY","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_DEVICE_LIMIT","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INFRASTRUCTURE_MANAGED","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INVITATION_PROCEDURE","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_6","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_7","features":[102]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_SERVICE_DISCOVERY","features":[102]},{"name":"DOT11_WFD_DEVICE_ENTRY","features":[102]},{"name":"DOT11_WFD_DEVICE_HIGH_AVAILABILITY","features":[102]},{"name":"DOT11_WFD_DEVICE_INFO","features":[16,102]},{"name":"DOT11_WFD_DEVICE_INFO_REVISION_1","features":[102]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL","features":[16,102]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL_REVISION_1","features":[102]},{"name":"DOT11_WFD_DEVICE_NOT_DISCOVERABLE","features":[102]},{"name":"DOT11_WFD_DEVICE_TYPE","features":[102]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE","features":[102]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS","features":[16,102]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_WFD_DISCOVER_DEVICE_FILTER","features":[102]},{"name":"DOT11_WFD_DISCOVER_REQUEST","features":[1,16,102]},{"name":"DOT11_WFD_DISCOVER_REQUEST_REVISION_1","features":[102]},{"name":"DOT11_WFD_DISCOVER_TYPE","features":[102]},{"name":"DOT11_WFD_GO_INTENT","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_CROSS_CONNECTION_SUPPORTED","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_EAPOL_KEY_IP_ADDRESS_ALLOCATION_SUPPORTED","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_LIMIT_REACHED","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_OWNER","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_INTRABSS_DISTRIBUTION_SUPPORTED","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_IN_GROUP_FORMATION","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_NONE","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_GROUP","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_RECONNECT_SUPPORTED","features":[102]},{"name":"DOT11_WFD_GROUP_CAPABILITY_RESERVED_7","features":[102]},{"name":"DOT11_WFD_GROUP_ID","features":[102]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS","features":[1,16,102]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG","features":[1,16,102]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_1","features":[102]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_2","features":[102]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_V2","features":[1,16,102]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS","features":[16,102]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS_REVISION_1","features":[102]},{"name":"DOT11_WFD_INVITATION_FLAGS","features":[102]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_FROM_WLAN_CROSS_CONNECTION_POLICY","features":[102]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_INFRASTRUCTURE_MANAGED_POLICY","features":[102]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_NOT_MANAGED_INFRASTRUCTURE_CAPABLE","features":[102]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_WFD_COEXISTENCE_POLICY","features":[102]},{"name":"DOT11_WFD_MINOR_REASON_SUCCESS","features":[102]},{"name":"DOT11_WFD_SCAN_TYPE","features":[102]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST","features":[16,102]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST_REVISION_1","features":[102]},{"name":"DOT11_WFD_SERVICE_HASH_LIST","features":[102]},{"name":"DOT11_WFD_SERVICE_INFORMATION_MAX_LENGTH","features":[102]},{"name":"DOT11_WFD_SERVICE_NAME_MAX_LENGTH","features":[102]},{"name":"DOT11_WFD_SESSION_ID","features":[102]},{"name":"DOT11_WFD_SESSION_INFO","features":[102]},{"name":"DOT11_WFD_SESSION_INFO_MAX_LENGTH","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PARAMETERS","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PROVISIONING_METHOD","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_INFORMATION_IS_UNAVAILABLE","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_INVALID_PARAMETERS","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_LIMIT_REACHED","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_MATCHING_MAX_INTENT","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_NO_COMMON_CHANNELS","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_PREVIOUS_PROTOCOL_ERROR","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_REJECTED_BY_USER","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_UNABLE_TO_ACCOMODATE_REQUEST","features":[102]},{"name":"DOT11_WFD_STATUS_FAILED_UNKNOWN_WFD_GROUP","features":[102]},{"name":"DOT11_WFD_STATUS_SUCCESS","features":[102]},{"name":"DOT11_WFD_STATUS_SUCCESS_ACCEPTED_BY_USER","features":[102]},{"name":"DOT11_WME_AC_PARAMETERS","features":[102]},{"name":"DOT11_WME_AC_PARAMETERS_LIST","features":[102]},{"name":"DOT11_WME_PACKET","features":[102]},{"name":"DOT11_WME_UPDATE_IE","features":[102]},{"name":"DOT11_WPA_TSC","features":[1,102]},{"name":"DOT11_WPS_CONFIG_METHOD","features":[102]},{"name":"DOT11_WPS_CONFIG_METHOD_DISPLAY","features":[102]},{"name":"DOT11_WPS_CONFIG_METHOD_KEYPAD","features":[102]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_INTERFACE","features":[102]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_TAG","features":[102]},{"name":"DOT11_WPS_CONFIG_METHOD_NULL","features":[102]},{"name":"DOT11_WPS_CONFIG_METHOD_PUSHBUTTON","features":[102]},{"name":"DOT11_WPS_CONFIG_METHOD_WFDS_DEFAULT","features":[102]},{"name":"DOT11_WPS_DEVICE_NAME","features":[102]},{"name":"DOT11_WPS_DEVICE_NAME_MAX_LENGTH","features":[102]},{"name":"DOT11_WPS_DEVICE_PASSWORD_ID","features":[102]},{"name":"DOT11_WPS_MAX_MODEL_NAME_LENGTH","features":[102]},{"name":"DOT11_WPS_MAX_MODEL_NUMBER_LENGTH","features":[102]},{"name":"DOT11_WPS_MAX_PASSKEY_LENGTH","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_DEFAULT","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_MACHINE_SPECIFIED","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_NFC_CONNECTION_HANDOVER","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MAX","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MIN","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_PUSHBUTTON","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_REGISTRAR_SPECIFIED","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_REKEY","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_USER_SPECIFIED","features":[102]},{"name":"DOT11_WPS_PASSWORD_ID_WFD_SERVICES","features":[102]},{"name":"DOT11_WPS_VERSION_1_0","features":[102]},{"name":"DOT11_WPS_VERSION_2_0","features":[102]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Enhanced","features":[102]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NoP2PSupported","features":[102]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NotSupported","features":[102]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_SingleFunctionSupported","features":[102]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Supported","features":[102]},{"name":"DevProp_PciDevice_AcsSupport_Missing","features":[102]},{"name":"DevProp_PciDevice_AcsSupport_NotNeeded","features":[102]},{"name":"DevProp_PciDevice_AcsSupport_Present","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciConventional","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciExpressDownstreamSwitchPort","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciExpressEventCollector","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciExpressRootPort","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciExpressToPciXBridge","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciExpressTreatedAsPci","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciExpressUpstreamSwitchPort","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciX","features":[102]},{"name":"DevProp_PciDevice_BridgeType_PciXToExpressBridge","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_100Mhz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_133MHZ","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_66Mhz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_100Mhz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_133Mhz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_66Mhz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_100MHz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_133MHz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_66MHz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_100MHz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_133MHz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_66MHz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode_Conventional_Pci","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_33MHz","features":[102]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_66MHz","features":[102]},{"name":"DevProp_PciDevice_DeviceType_PciConventional","features":[102]},{"name":"DevProp_PciDevice_DeviceType_PciExpressEndpoint","features":[102]},{"name":"DevProp_PciDevice_DeviceType_PciExpressLegacyEndpoint","features":[102]},{"name":"DevProp_PciDevice_DeviceType_PciExpressRootComplexIntegratedEndpoint","features":[102]},{"name":"DevProp_PciDevice_DeviceType_PciExpressTreatedAsPci","features":[102]},{"name":"DevProp_PciDevice_DeviceType_PciX","features":[102]},{"name":"DevProp_PciDevice_InterruptType_LineBased","features":[102]},{"name":"DevProp_PciDevice_InterruptType_Msi","features":[102]},{"name":"DevProp_PciDevice_InterruptType_MsiX","features":[102]},{"name":"DevProp_PciDevice_SriovSupport_DidntGetVfBarSpace","features":[102]},{"name":"DevProp_PciDevice_SriovSupport_MissingAcs","features":[102]},{"name":"DevProp_PciDevice_SriovSupport_MissingPfDriver","features":[102]},{"name":"DevProp_PciDevice_SriovSupport_NoBusResource","features":[102]},{"name":"DevProp_PciDevice_SriovSupport_Ok","features":[102]},{"name":"DevProp_PciExpressDevice_LinkSpeed_Five_Gbps","features":[102]},{"name":"DevProp_PciExpressDevice_LinkSpeed_TwoAndHalf_Gbps","features":[102]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_1","features":[102]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_12","features":[102]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_16","features":[102]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_2","features":[102]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_32","features":[102]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_4","features":[102]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_8","features":[102]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_1024Bytes","features":[102]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_128Bytes","features":[102]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_2048Bytes","features":[102]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_256Bytes","features":[102]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_4096Bytes","features":[102]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_512Bytes","features":[102]},{"name":"DevProp_PciExpressDevice_Spec_Version_10","features":[102]},{"name":"DevProp_PciExpressDevice_Spec_Version_11","features":[102]},{"name":"DevProp_PciRootBus_BusWidth_32Bits","features":[102]},{"name":"DevProp_PciRootBus_BusWidth_64Bits","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_33Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_66Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_100Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_133Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_66Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_100Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_133Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_66Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_100Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_133Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_66Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_100Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_133Mhz","features":[102]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_66Mhz","features":[102]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciConventional","features":[102]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciExpress","features":[102]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode1","features":[102]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode2","features":[102]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_33Mhz","features":[102]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_66Mhz","features":[102]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_133Mhz","features":[102]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_266Mhz","features":[102]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_533Mhz","features":[102]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_66Mhz","features":[102]},{"name":"Dot11AdHocManager","features":[102]},{"name":"GUID_AEPSERVICE_WIFIDIRECT_DEVICE","features":[102]},{"name":"GUID_DEVINTERFACE_ASP_INFRA_DEVICE","features":[102]},{"name":"GUID_DEVINTERFACE_WIFIDIRECT_DEVICE","features":[102]},{"name":"IDot11AdHocInterface","features":[102]},{"name":"IDot11AdHocInterfaceNotificationSink","features":[102]},{"name":"IDot11AdHocManager","features":[102]},{"name":"IDot11AdHocManagerNotificationSink","features":[102]},{"name":"IDot11AdHocNetwork","features":[102]},{"name":"IDot11AdHocNetworkNotificationSink","features":[102]},{"name":"IDot11AdHocSecuritySettings","features":[102]},{"name":"IEnumDot11AdHocInterfaces","features":[102]},{"name":"IEnumDot11AdHocNetworks","features":[102]},{"name":"IEnumDot11AdHocSecuritySettings","features":[102]},{"name":"IHV_INIT_FUNCTION_NAME","features":[102]},{"name":"IHV_INIT_VS_FUNCTION_NAME","features":[102]},{"name":"IHV_VERSION_FUNCTION_NAME","features":[102]},{"name":"IndicationTypeLinkQuality","features":[102]},{"name":"IndicationTypeNicSpecificNotification","features":[102]},{"name":"IndicationTypePhyStateChange","features":[102]},{"name":"IndicationTypePmkidCandidateList","features":[102]},{"name":"IndicationTypeTkipMicFailure","features":[102]},{"name":"L2_NOTIFICATION_CODE_GROUP_SIZE","features":[102]},{"name":"L2_NOTIFICATION_CODE_PUBLIC_BEGIN","features":[102]},{"name":"L2_NOTIFICATION_DATA","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_ALL","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_DOT3_AUTO_CONFIG","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_NONE","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_ONEX","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_SECURITY","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WCM","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WCM_CSP","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WFD","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_ACM","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_DEVICE_SERVICE","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_HNWK","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_IHV","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_MSM","features":[102]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_SECURITY","features":[102]},{"name":"L2_PROFILE_MAX_NAME_LENGTH","features":[102]},{"name":"L2_REASON_CODE_DOT11_AC_BASE","features":[102]},{"name":"L2_REASON_CODE_DOT11_MSM_BASE","features":[102]},{"name":"L2_REASON_CODE_DOT11_SECURITY_BASE","features":[102]},{"name":"L2_REASON_CODE_DOT3_AC_BASE","features":[102]},{"name":"L2_REASON_CODE_DOT3_MSM_BASE","features":[102]},{"name":"L2_REASON_CODE_GEN_BASE","features":[102]},{"name":"L2_REASON_CODE_GROUP_SIZE","features":[102]},{"name":"L2_REASON_CODE_IHV_BASE","features":[102]},{"name":"L2_REASON_CODE_ONEX_BASE","features":[102]},{"name":"L2_REASON_CODE_PROFILE_BASE","features":[102]},{"name":"L2_REASON_CODE_PROFILE_MISSING","features":[102]},{"name":"L2_REASON_CODE_RESERVED_BASE","features":[102]},{"name":"L2_REASON_CODE_SUCCESS","features":[102]},{"name":"L2_REASON_CODE_UNKNOWN","features":[102]},{"name":"L2_REASON_CODE_WIMAX_BASE","features":[102]},{"name":"MAX_NUM_SUPPORTED_RATES","features":[102]},{"name":"MAX_NUM_SUPPORTED_RATES_V2","features":[102]},{"name":"MS_MAX_PROFILE_NAME_LENGTH","features":[102]},{"name":"MS_PROFILE_GROUP_POLICY","features":[102]},{"name":"MS_PROFILE_USER","features":[102]},{"name":"NDIS_PACKET_TYPE_802_11_ALL_MULTICAST_DATA","features":[102]},{"name":"NDIS_PACKET_TYPE_802_11_BROADCAST_DATA","features":[102]},{"name":"NDIS_PACKET_TYPE_802_11_DIRECTED_DATA","features":[102]},{"name":"NDIS_PACKET_TYPE_802_11_MULTICAST_DATA","features":[102]},{"name":"NDIS_PACKET_TYPE_802_11_PROMISCUOUS_DATA","features":[102]},{"name":"OID_DOT11_AP_JOIN_REQUEST","features":[102]},{"name":"OID_DOT11_ATIM_WINDOW","features":[102]},{"name":"OID_DOT11_BEACON_PERIOD","features":[102]},{"name":"OID_DOT11_CCA_MODE_SUPPORTED","features":[102]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MAX","features":[102]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MIN","features":[102]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MAX","features":[102]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MIN","features":[102]},{"name":"OID_DOT11_CFP_MAX_DURATION","features":[102]},{"name":"OID_DOT11_CFP_PERIOD","features":[102]},{"name":"OID_DOT11_CF_POLLABLE","features":[102]},{"name":"OID_DOT11_CHANNEL_AGILITY_ENABLED","features":[102]},{"name":"OID_DOT11_CHANNEL_AGILITY_PRESENT","features":[102]},{"name":"OID_DOT11_COUNTERS_ENTRY","features":[102]},{"name":"OID_DOT11_COUNTRY_STRING","features":[102]},{"name":"OID_DOT11_CURRENT_ADDRESS","features":[102]},{"name":"OID_DOT11_CURRENT_CCA_MODE","features":[102]},{"name":"OID_DOT11_CURRENT_CHANNEL","features":[102]},{"name":"OID_DOT11_CURRENT_CHANNEL_NUMBER","features":[102]},{"name":"OID_DOT11_CURRENT_DWELL_TIME","features":[102]},{"name":"OID_DOT11_CURRENT_FREQUENCY","features":[102]},{"name":"OID_DOT11_CURRENT_INDEX","features":[102]},{"name":"OID_DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[102]},{"name":"OID_DOT11_CURRENT_OPERATION_MODE","features":[102]},{"name":"OID_DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[102]},{"name":"OID_DOT11_CURRENT_PACKET_FILTER","features":[102]},{"name":"OID_DOT11_CURRENT_PATTERN","features":[102]},{"name":"OID_DOT11_CURRENT_PHY_TYPE","features":[102]},{"name":"OID_DOT11_CURRENT_REG_DOMAIN","features":[102]},{"name":"OID_DOT11_CURRENT_RX_ANTENNA","features":[102]},{"name":"OID_DOT11_CURRENT_SET","features":[102]},{"name":"OID_DOT11_CURRENT_TX_ANTENNA","features":[102]},{"name":"OID_DOT11_CURRENT_TX_POWER_LEVEL","features":[102]},{"name":"OID_DOT11_DEFAULT_WEP_OFFLOAD","features":[102]},{"name":"OID_DOT11_DEFAULT_WEP_UPLOAD","features":[102]},{"name":"OID_DOT11_DIVERSITY_SELECTION_RX","features":[102]},{"name":"OID_DOT11_DIVERSITY_SUPPORT","features":[102]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_ENABLED","features":[102]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_DTIM_PERIOD","features":[102]},{"name":"OID_DOT11_ED_THRESHOLD","features":[102]},{"name":"OID_DOT11_EHCC_CAPABILITY_ENABLED","features":[102]},{"name":"OID_DOT11_EHCC_CAPABILITY_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_EHCC_NUMBER_OF_CHANNELS_FAMILY_INDEX","features":[102]},{"name":"OID_DOT11_EHCC_PRIME_RADIX","features":[102]},{"name":"OID_DOT11_ERP_PBCC_OPTION_ENABLED","features":[102]},{"name":"OID_DOT11_ERP_PBCC_OPTION_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_FRAGMENTATION_THRESHOLD","features":[102]},{"name":"OID_DOT11_FREQUENCY_BANDS_SUPPORTED","features":[102]},{"name":"OID_DOT11_HOPPING_PATTERN","features":[102]},{"name":"OID_DOT11_HOP_ALGORITHM_ADOPTED","features":[102]},{"name":"OID_DOT11_HOP_MODULUS","features":[102]},{"name":"OID_DOT11_HOP_OFFSET","features":[102]},{"name":"OID_DOT11_HOP_TIME","features":[102]},{"name":"OID_DOT11_HR_CCA_MODE_SUPPORTED","features":[102]},{"name":"OID_DOT11_JOIN_REQUEST","features":[102]},{"name":"OID_DOT11_LONG_RETRY_LIMIT","features":[102]},{"name":"OID_DOT11_MAC_ADDRESS","features":[102]},{"name":"OID_DOT11_MAXIMUM_LIST_SIZE","features":[102]},{"name":"OID_DOT11_MAX_DWELL_TIME","features":[102]},{"name":"OID_DOT11_MAX_MAC_ADDRESS_STATES","features":[102]},{"name":"OID_DOT11_MAX_RECEIVE_LIFETIME","features":[102]},{"name":"OID_DOT11_MAX_TRANSMIT_MSDU_LIFETIME","features":[102]},{"name":"OID_DOT11_MEDIUM_OCCUPANCY_LIMIT","features":[102]},{"name":"OID_DOT11_MPDU_MAX_LENGTH","features":[102]},{"name":"OID_DOT11_MULTICAST_LIST","features":[102]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY","features":[102]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_ENABLED","features":[102]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_NDIS_START","features":[102]},{"name":"OID_DOT11_NIC_POWER_STATE","features":[102]},{"name":"OID_DOT11_NIC_SPECIFIC_EXTENSION","features":[102]},{"name":"OID_DOT11_NUMBER_OF_HOPPING_SETS","features":[102]},{"name":"OID_DOT11_OFFLOAD_CAPABILITY","features":[102]},{"name":"OID_DOT11_OPERATIONAL_RATE_SET","features":[102]},{"name":"OID_DOT11_OPERATION_MODE_CAPABILITY","features":[102]},{"name":"OID_DOT11_OPTIONAL_CAPABILITY","features":[102]},{"name":"OID_DOT11_PBCC_OPTION_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_PERMANENT_ADDRESS","features":[102]},{"name":"OID_DOT11_POWER_MGMT_MODE","features":[102]},{"name":"OID_DOT11_PRIVATE_OIDS_START","features":[102]},{"name":"OID_DOT11_QOS_TX_DURATION","features":[102]},{"name":"OID_DOT11_QOS_TX_MEDIUM_TIME","features":[102]},{"name":"OID_DOT11_QOS_TX_QUEUES_SUPPORTED","features":[102]},{"name":"OID_DOT11_RANDOM_TABLE_FIELD_NUMBER","features":[102]},{"name":"OID_DOT11_RANDOM_TABLE_FLAG","features":[102]},{"name":"OID_DOT11_RECV_SENSITIVITY_LIST","features":[102]},{"name":"OID_DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[102]},{"name":"OID_DOT11_RESET_REQUEST","features":[102]},{"name":"OID_DOT11_RF_USAGE","features":[102]},{"name":"OID_DOT11_RSSI_RANGE","features":[102]},{"name":"OID_DOT11_RTS_THRESHOLD","features":[102]},{"name":"OID_DOT11_SCAN_REQUEST","features":[102]},{"name":"OID_DOT11_SHORT_PREAMBLE_OPTION_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_SHORT_RETRY_LIMIT","features":[102]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_ENABLED","features":[102]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_START_REQUEST","features":[102]},{"name":"OID_DOT11_STATION_ID","features":[102]},{"name":"OID_DOT11_SUPPORTED_DATA_RATES_VALUE","features":[102]},{"name":"OID_DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[102]},{"name":"OID_DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[102]},{"name":"OID_DOT11_SUPPORTED_PHY_TYPES","features":[102]},{"name":"OID_DOT11_SUPPORTED_POWER_LEVELS","features":[102]},{"name":"OID_DOT11_SUPPORTED_RX_ANTENNA","features":[102]},{"name":"OID_DOT11_SUPPORTED_TX_ANTENNA","features":[102]},{"name":"OID_DOT11_TEMP_TYPE","features":[102]},{"name":"OID_DOT11_TI_THRESHOLD","features":[102]},{"name":"OID_DOT11_UPDATE_IE","features":[102]},{"name":"OID_DOT11_WEP_ICV_ERROR_COUNT","features":[102]},{"name":"OID_DOT11_WEP_OFFLOAD","features":[102]},{"name":"OID_DOT11_WEP_UPLOAD","features":[102]},{"name":"OID_DOT11_WME_AC_PARAMETERS","features":[102]},{"name":"OID_DOT11_WME_ENABLED","features":[102]},{"name":"OID_DOT11_WME_IMPLEMENTED","features":[102]},{"name":"OID_DOT11_WME_UPDATE_IE","features":[102]},{"name":"OID_DOT11_WPA_TSC","features":[102]},{"name":"ONEX_AUTHENTICATOR_NO_LONGER_PRESENT","features":[102]},{"name":"ONEX_AUTH_IDENTITY","features":[102]},{"name":"ONEX_AUTH_PARAMS","features":[1,102]},{"name":"ONEX_AUTH_RESTART_REASON","features":[102]},{"name":"ONEX_AUTH_STATUS","features":[102]},{"name":"ONEX_EAP_ERROR","features":[102,103]},{"name":"ONEX_EAP_FAILURE_RECEIVED","features":[102]},{"name":"ONEX_EAP_METHOD_BACKEND_SUPPORT","features":[102]},{"name":"ONEX_IDENTITY_NOT_FOUND","features":[102]},{"name":"ONEX_NOTIFICATION_TYPE","features":[102]},{"name":"ONEX_NO_RESPONSE_TO_IDENTITY","features":[102]},{"name":"ONEX_PROFILE_DISALLOWED_EAP_TYPE","features":[102]},{"name":"ONEX_PROFILE_EXPIRED_EXPLICIT_CREDENTIALS","features":[102]},{"name":"ONEX_PROFILE_INVALID_AUTH_MODE","features":[102]},{"name":"ONEX_PROFILE_INVALID_EAP_CONNECTION_PROPERTIES","features":[102]},{"name":"ONEX_PROFILE_INVALID_EAP_TYPE_OR_FLAG","features":[102]},{"name":"ONEX_PROFILE_INVALID_EXPLICIT_CREDENTIALS","features":[102]},{"name":"ONEX_PROFILE_INVALID_LENGTH","features":[102]},{"name":"ONEX_PROFILE_INVALID_ONEX_FLAGS","features":[102]},{"name":"ONEX_PROFILE_INVALID_SUPPLICANT_MODE","features":[102]},{"name":"ONEX_PROFILE_INVALID_TIMER_VALUE","features":[102]},{"name":"ONEX_PROFILE_VERSION_NOT_SUPPORTED","features":[102]},{"name":"ONEX_REASON_CODE","features":[102]},{"name":"ONEX_REASON_CODE_SUCCESS","features":[102]},{"name":"ONEX_REASON_START","features":[102]},{"name":"ONEX_RESULT_UPDATE_DATA","features":[1,102]},{"name":"ONEX_STATUS","features":[102]},{"name":"ONEX_UI_CANCELLED","features":[102]},{"name":"ONEX_UI_DISABLED","features":[102]},{"name":"ONEX_UI_FAILURE","features":[102]},{"name":"ONEX_UI_NOT_PERMITTED","features":[102]},{"name":"ONEX_UNABLE_TO_IDENTIFY_USER","features":[102]},{"name":"ONEX_USER_INFO","features":[102]},{"name":"ONEX_VARIABLE_BLOB","features":[102]},{"name":"OneXAuthFailure","features":[102]},{"name":"OneXAuthIdentityExplicitUser","features":[102]},{"name":"OneXAuthIdentityGuest","features":[102]},{"name":"OneXAuthIdentityInvalid","features":[102]},{"name":"OneXAuthIdentityMachine","features":[102]},{"name":"OneXAuthIdentityNone","features":[102]},{"name":"OneXAuthIdentityUser","features":[102]},{"name":"OneXAuthInProgress","features":[102]},{"name":"OneXAuthInvalid","features":[102]},{"name":"OneXAuthNoAuthenticatorFound","features":[102]},{"name":"OneXAuthNotStarted","features":[102]},{"name":"OneXAuthSuccess","features":[102]},{"name":"OneXEapMethodBackendSupportUnknown","features":[102]},{"name":"OneXEapMethodBackendSupported","features":[102]},{"name":"OneXEapMethodBackendUnsupported","features":[102]},{"name":"OneXNotificationTypeAuthRestarted","features":[102]},{"name":"OneXNotificationTypeEventInvalid","features":[102]},{"name":"OneXNotificationTypeResultUpdate","features":[102]},{"name":"OneXNumNotifications","features":[102]},{"name":"OneXPublicNotificationBase","features":[102]},{"name":"OneXRestartReasonAltCredsTrial","features":[102]},{"name":"OneXRestartReasonInvalid","features":[102]},{"name":"OneXRestartReasonMsmInitiated","features":[102]},{"name":"OneXRestartReasonOneXAuthTimeout","features":[102]},{"name":"OneXRestartReasonOneXConfigurationChanged","features":[102]},{"name":"OneXRestartReasonOneXHeldStateTimeout","features":[102]},{"name":"OneXRestartReasonOneXUserChanged","features":[102]},{"name":"OneXRestartReasonPeerInitiated","features":[102]},{"name":"OneXRestartReasonQuarantineStateChanged","features":[102]},{"name":"WDIAG_IHV_WLAN_ID","features":[102]},{"name":"WDIAG_IHV_WLAN_ID_FLAG_SECURITY_ENABLED","features":[102]},{"name":"WFDCancelOpenSession","features":[1,102]},{"name":"WFDCloseHandle","features":[1,102]},{"name":"WFDCloseSession","features":[1,102]},{"name":"WFDOpenHandle","features":[1,102]},{"name":"WFDOpenLegacySession","features":[1,102]},{"name":"WFDSVC_CONNECTION_CAPABILITY","features":[1,102]},{"name":"WFDSVC_CONNECTION_CAPABILITY_CLIENT","features":[102]},{"name":"WFDSVC_CONNECTION_CAPABILITY_GO","features":[102]},{"name":"WFDSVC_CONNECTION_CAPABILITY_NEW","features":[102]},{"name":"WFDStartOpenSession","features":[1,102]},{"name":"WFDUpdateDeviceVisibility","features":[102]},{"name":"WFD_API_VERSION","features":[102]},{"name":"WFD_API_VERSION_1_0","features":[102]},{"name":"WFD_GROUP_ID","features":[102]},{"name":"WFD_OPEN_SESSION_COMPLETE_CALLBACK","features":[1,102]},{"name":"WFD_ROLE_TYPE","features":[102]},{"name":"WFD_ROLE_TYPE_CLIENT","features":[102]},{"name":"WFD_ROLE_TYPE_DEVICE","features":[102]},{"name":"WFD_ROLE_TYPE_GROUP_OWNER","features":[102]},{"name":"WFD_ROLE_TYPE_MAX","features":[102]},{"name":"WFD_ROLE_TYPE_NONE","features":[102]},{"name":"WLAN_ADHOC_NETWORK_STATE","features":[102]},{"name":"WLAN_API_VERSION","features":[102]},{"name":"WLAN_API_VERSION_1_0","features":[102]},{"name":"WLAN_API_VERSION_2_0","features":[102]},{"name":"WLAN_ASSOCIATION_ATTRIBUTES","features":[102]},{"name":"WLAN_AUTH_CIPHER_PAIR_LIST","features":[102]},{"name":"WLAN_AUTOCONF_OPCODE","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK","features":[1,102]},{"name":"WLAN_AVAILABLE_NETWORK_ANQP_SUPPORTED","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_AUTO_CONNECT_FAILED","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_CONNECTED","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_CONSOLE_USER_PROFILE","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_HAS_PROFILE","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_DOMAIN","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ENABLED","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ROAMING","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_ADHOC_PROFILES","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_MANUAL_HIDDEN_PROFILES","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_INTERWORKING_SUPPORTED","features":[102]},{"name":"WLAN_AVAILABLE_NETWORK_LIST","features":[1,102]},{"name":"WLAN_AVAILABLE_NETWORK_LIST_V2","features":[1,102]},{"name":"WLAN_AVAILABLE_NETWORK_V2","features":[1,102]},{"name":"WLAN_BSS_ENTRY","features":[1,102]},{"name":"WLAN_BSS_LIST","features":[1,102]},{"name":"WLAN_CONNECTION_ADHOC_JOIN_ONLY","features":[102]},{"name":"WLAN_CONNECTION_ATTRIBUTES","features":[1,102]},{"name":"WLAN_CONNECTION_EAPOL_PASSTHROUGH","features":[102]},{"name":"WLAN_CONNECTION_HIDDEN_NETWORK","features":[102]},{"name":"WLAN_CONNECTION_IGNORE_PRIVACY_BIT","features":[102]},{"name":"WLAN_CONNECTION_MODE","features":[102]},{"name":"WLAN_CONNECTION_NOTIFICATION_ADHOC_NETWORK_FORMED","features":[102]},{"name":"WLAN_CONNECTION_NOTIFICATION_CONSOLE_USER_PROFILE","features":[102]},{"name":"WLAN_CONNECTION_NOTIFICATION_DATA","features":[1,102]},{"name":"WLAN_CONNECTION_NOTIFICATION_FLAGS","features":[102]},{"name":"WLAN_CONNECTION_PARAMETERS","features":[16,102]},{"name":"WLAN_CONNECTION_PARAMETERS_V2","features":[16,102]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE","features":[102]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_CONNECTION_MODE_AUTO","features":[102]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_OVERWRITE_EXISTING","features":[102]},{"name":"WLAN_COUNTRY_OR_REGION_STRING_LIST","features":[102]},{"name":"WLAN_DEVICE_SERVICE_GUID_LIST","features":[102]},{"name":"WLAN_DEVICE_SERVICE_NOTIFICATION_DATA","features":[102]},{"name":"WLAN_FILTER_LIST_TYPE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_CONNECTION_SETTINGS","features":[102]},{"name":"WLAN_HOSTED_NETWORK_DATA_PEER_STATE_CHANGE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_NOTIFICATION_CODE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_OPCODE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_PEER_AUTH_STATE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_PEER_STATE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_RADIO_STATE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_REASON","features":[102]},{"name":"WLAN_HOSTED_NETWORK_SECURITY_SETTINGS","features":[102]},{"name":"WLAN_HOSTED_NETWORK_STATE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_STATE_CHANGE","features":[102]},{"name":"WLAN_HOSTED_NETWORK_STATUS","features":[102]},{"name":"WLAN_IHV_CONTROL_TYPE","features":[102]},{"name":"WLAN_INTERFACE_CAPABILITY","features":[1,102]},{"name":"WLAN_INTERFACE_INFO","features":[102]},{"name":"WLAN_INTERFACE_INFO_LIST","features":[102]},{"name":"WLAN_INTERFACE_STATE","features":[102]},{"name":"WLAN_INTERFACE_TYPE","features":[102]},{"name":"WLAN_INTF_OPCODE","features":[102]},{"name":"WLAN_MAC_FRAME_STATISTICS","features":[102]},{"name":"WLAN_MAX_NAME_LENGTH","features":[102]},{"name":"WLAN_MAX_PHY_INDEX","features":[102]},{"name":"WLAN_MAX_PHY_TYPE_NUMBER","features":[102]},{"name":"WLAN_MSM_NOTIFICATION_DATA","features":[1,102]},{"name":"WLAN_NOTIFICATION_ACM","features":[102]},{"name":"WLAN_NOTIFICATION_CALLBACK","features":[102]},{"name":"WLAN_NOTIFICATION_MSM","features":[102]},{"name":"WLAN_NOTIFICATION_SECURITY","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCES","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_ACM","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_ALL","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_DEVICE_SERVICE","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_HNWK","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_IHV","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_MSM","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_NONE","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_ONEX","features":[102]},{"name":"WLAN_NOTIFICATION_SOURCE_SECURITY","features":[102]},{"name":"WLAN_OPCODE_VALUE_TYPE","features":[102]},{"name":"WLAN_OPERATIONAL_STATE","features":[102]},{"name":"WLAN_PHY_FRAME_STATISTICS","features":[102]},{"name":"WLAN_PHY_RADIO_STATE","features":[102]},{"name":"WLAN_POWER_SETTING","features":[102]},{"name":"WLAN_PROFILE_CONNECTION_MODE_AUTO","features":[102]},{"name":"WLAN_PROFILE_CONNECTION_MODE_SET_BY_CLIENT","features":[102]},{"name":"WLAN_PROFILE_GET_PLAINTEXT_KEY","features":[102]},{"name":"WLAN_PROFILE_GROUP_POLICY","features":[102]},{"name":"WLAN_PROFILE_INFO","features":[102]},{"name":"WLAN_PROFILE_INFO_LIST","features":[102]},{"name":"WLAN_PROFILE_USER","features":[102]},{"name":"WLAN_RADIO_STATE","features":[102]},{"name":"WLAN_RATE_SET","features":[102]},{"name":"WLAN_RAW_DATA","features":[102]},{"name":"WLAN_RAW_DATA_LIST","features":[102]},{"name":"WLAN_REASON_CODE_AC_BASE","features":[102]},{"name":"WLAN_REASON_CODE_AC_CONNECT_BASE","features":[102]},{"name":"WLAN_REASON_CODE_AC_END","features":[102]},{"name":"WLAN_REASON_CODE_ADHOC_SECURITY_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED","features":[102]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED_FOR_CLIENT","features":[102]},{"name":"WLAN_REASON_CODE_AP_STARTING_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_ASSOCIATION_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_ASSOCIATION_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_AUTO_AP_PROFILE_NOT_ALLOWED","features":[102]},{"name":"WLAN_REASON_CODE_AUTO_CONNECTION_NOT_ALLOWED","features":[102]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_ADHOC","features":[102]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_MANUAL_CONNECTION","features":[102]},{"name":"WLAN_REASON_CODE_BAD_MAX_NUMBER_OF_CLIENTS_FOR_AP","features":[102]},{"name":"WLAN_REASON_CODE_BASE","features":[102]},{"name":"WLAN_REASON_CODE_BSS_TYPE_NOT_ALLOWED","features":[102]},{"name":"WLAN_REASON_CODE_BSS_TYPE_UNMATCH","features":[102]},{"name":"WLAN_REASON_CODE_CONFLICT_SECURITY","features":[102]},{"name":"WLAN_REASON_CODE_CONNECT_CALL_FAIL","features":[102]},{"name":"WLAN_REASON_CODE_DATARATE_UNMATCH","features":[102]},{"name":"WLAN_REASON_CODE_DISCONNECT_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_DRIVER_DISCONNECTED","features":[102]},{"name":"WLAN_REASON_CODE_DRIVER_OPERATION_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_GP_DENIED","features":[102]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_DENIED","features":[102]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_NOT_ALLOWED","features":[102]},{"name":"WLAN_REASON_CODE_IHV_CONNECTIVITY_NOT_SUPPORTED","features":[102]},{"name":"WLAN_REASON_CODE_IHV_NOT_AVAILABLE","features":[102]},{"name":"WLAN_REASON_CODE_IHV_NOT_RESPONDING","features":[102]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISMATCH","features":[102]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISSING","features":[102]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_NOT_SUPPORTED","features":[102]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_ONEX_MISSING","features":[102]},{"name":"WLAN_REASON_CODE_IHV_SETTINGS_MISSING","features":[102]},{"name":"WLAN_REASON_CODE_INTERNAL_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_INVALID_ADHOC_CONNECTION_MODE","features":[102]},{"name":"WLAN_REASON_CODE_INVALID_BSS_TYPE","features":[102]},{"name":"WLAN_REASON_CODE_INVALID_CHANNEL","features":[102]},{"name":"WLAN_REASON_CODE_INVALID_PHY_TYPE","features":[102]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_NAME","features":[102]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_SCHEMA","features":[102]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_TYPE","features":[102]},{"name":"WLAN_REASON_CODE_IN_BLOCKED_LIST","features":[102]},{"name":"WLAN_REASON_CODE_IN_FAILED_LIST","features":[102]},{"name":"WLAN_REASON_CODE_KEY_MISMATCH","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_START_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_SUCCESS_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_WCN_COMPLETED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_BASE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CANCELLED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_DISCOVERY","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_MFP_NW_NIC","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NETWORK","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NIC","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_AUTH","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_CIPHER","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NIC","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NW","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_CONNECT_BASE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_DOWNGRADE_DETECTED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_END","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_FORCED_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_GRP_KEY","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_KEY_DATA","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_MGMT_GRP_KEY","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_FORMAT","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_START_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_SUCCESS_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_IE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_KEY_DATA","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_GRP_KEY","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_IE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_KEY_DATA","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_MGMT_GRP_KEY","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_TOO_MANY_RSNIE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_MAX","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_MIN","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_MIXED_CELL","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_NIC_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_AUTHENTICATOR","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_PAIRWISE_KEY","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PEER_INDICATED_INSECURE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_AUTH_TIMERS_INVALID","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_DUPLICATE_AUTH_CIPHER","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_AUTH_CIPHER","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_GKEY_INTV","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_KEY_INDEX","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_MODE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_SIZE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_TTL","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_MODE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_THROTTLE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEYMATERIAL_CHAR","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_LENGTH","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_UNMAPPED_CHAR","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_NO_AUTH_CIPHER_SPECIFIED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_DISABLED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_ENABLED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PASSPHRASE_CHAR","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PREAUTH_ONLY_ENABLED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_LENGTH","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_PRESENT","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_RAWDATA_INVALID","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_SAFE_MODE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_TOO_MANY_AUTH_CIPHER_SPECIFIED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_AUTH","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_CIPHER","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_WRONG_KEYTYPE","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PR_IE_MATCHING","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_PSK_MISMATCH_SUSPECTED","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_SEC_IE_MATCHING","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_TRANSITION_NETWORK","features":[102]},{"name":"WLAN_REASON_CODE_MSMSEC_UI_REQUEST_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_MSM_BASE","features":[102]},{"name":"WLAN_REASON_CODE_MSM_CONNECT_BASE","features":[102]},{"name":"WLAN_REASON_CODE_MSM_END","features":[102]},{"name":"WLAN_REASON_CODE_MSM_SECURITY_MISSING","features":[102]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_AVAILABLE","features":[102]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_COMPATIBLE","features":[102]},{"name":"WLAN_REASON_CODE_NON_BROADCAST_SET_FOR_ADHOC","features":[102]},{"name":"WLAN_REASON_CODE_NOT_VISIBLE","features":[102]},{"name":"WLAN_REASON_CODE_NO_AUTO_CONNECTION","features":[102]},{"name":"WLAN_REASON_CODE_NO_VISIBLE_AP","features":[102]},{"name":"WLAN_REASON_CODE_OPERATION_MODE_NOT_SUPPORTED","features":[102]},{"name":"WLAN_REASON_CODE_PHY_TYPE_UNMATCH","features":[102]},{"name":"WLAN_REASON_CODE_PRE_SECURITY_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_PROFILE_BASE","features":[102]},{"name":"WLAN_REASON_CODE_PROFILE_CHANGED_OR_DELETED","features":[102]},{"name":"WLAN_REASON_CODE_PROFILE_CONNECT_BASE","features":[102]},{"name":"WLAN_REASON_CODE_PROFILE_END","features":[102]},{"name":"WLAN_REASON_CODE_PROFILE_MISSING","features":[102]},{"name":"WLAN_REASON_CODE_PROFILE_NOT_COMPATIBLE","features":[102]},{"name":"WLAN_REASON_CODE_PROFILE_SSID_INVALID","features":[102]},{"name":"WLAN_REASON_CODE_RANGE_SIZE","features":[102]},{"name":"WLAN_REASON_CODE_RESERVED_BASE","features":[102]},{"name":"WLAN_REASON_CODE_RESERVED_END","features":[102]},{"name":"WLAN_REASON_CODE_ROAMING_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_ROAMING_SECURITY_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_SCAN_CALL_FAIL","features":[102]},{"name":"WLAN_REASON_CODE_SECURITY_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_SECURITY_MISSING","features":[102]},{"name":"WLAN_REASON_CODE_SECURITY_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_SSID_LIST_TOO_LONG","features":[102]},{"name":"WLAN_REASON_CODE_START_SECURITY_FAILURE","features":[102]},{"name":"WLAN_REASON_CODE_SUCCESS","features":[102]},{"name":"WLAN_REASON_CODE_TOO_MANY_SECURITY_ATTEMPTS","features":[102]},{"name":"WLAN_REASON_CODE_TOO_MANY_SSID","features":[102]},{"name":"WLAN_REASON_CODE_UI_REQUEST_TIMEOUT","features":[102]},{"name":"WLAN_REASON_CODE_UNKNOWN","features":[102]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET","features":[102]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET_BY_OS","features":[102]},{"name":"WLAN_REASON_CODE_USER_CANCELLED","features":[102]},{"name":"WLAN_REASON_CODE_USER_DENIED","features":[102]},{"name":"WLAN_REASON_CODE_USER_NOT_RESPOND","features":[102]},{"name":"WLAN_SECURABLE_OBJECT","features":[102]},{"name":"WLAN_SECURABLE_OBJECT_COUNT","features":[102]},{"name":"WLAN_SECURITY_ATTRIBUTES","features":[1,102]},{"name":"WLAN_SET_EAPHOST_DATA_ALL_USERS","features":[102]},{"name":"WLAN_SET_EAPHOST_FLAGS","features":[102]},{"name":"WLAN_STATISTICS","features":[102]},{"name":"WLAN_UI_API_INITIAL_VERSION","features":[102]},{"name":"WLAN_UI_API_VERSION","features":[102]},{"name":"WLAdvPage","features":[102]},{"name":"WLConnectionPage","features":[102]},{"name":"WLSecurityPage","features":[102]},{"name":"WL_DISPLAY_PAGES","features":[102]},{"name":"WlanAllocateMemory","features":[102]},{"name":"WlanCloseHandle","features":[1,102]},{"name":"WlanConnect","features":[1,16,102]},{"name":"WlanConnect2","features":[1,16,102]},{"name":"WlanDeleteProfile","features":[1,102]},{"name":"WlanDeviceServiceCommand","features":[1,102]},{"name":"WlanDisconnect","features":[1,102]},{"name":"WlanEnumInterfaces","features":[1,102]},{"name":"WlanExtractPsdIEDataList","features":[1,102]},{"name":"WlanFreeMemory","features":[102]},{"name":"WlanGetAvailableNetworkList","features":[1,102]},{"name":"WlanGetAvailableNetworkList2","features":[1,102]},{"name":"WlanGetFilterList","features":[1,102]},{"name":"WlanGetInterfaceCapability","features":[1,102]},{"name":"WlanGetNetworkBssList","features":[1,102]},{"name":"WlanGetProfile","features":[1,102]},{"name":"WlanGetProfileCustomUserData","features":[1,102]},{"name":"WlanGetProfileList","features":[1,102]},{"name":"WlanGetSecuritySettings","features":[1,102]},{"name":"WlanGetSupportedDeviceServices","features":[1,102]},{"name":"WlanHostedNetworkForceStart","features":[1,102]},{"name":"WlanHostedNetworkForceStop","features":[1,102]},{"name":"WlanHostedNetworkInitSettings","features":[1,102]},{"name":"WlanHostedNetworkQueryProperty","features":[1,102]},{"name":"WlanHostedNetworkQuerySecondaryKey","features":[1,102]},{"name":"WlanHostedNetworkQueryStatus","features":[1,102]},{"name":"WlanHostedNetworkRefreshSecuritySettings","features":[1,102]},{"name":"WlanHostedNetworkSetProperty","features":[1,102]},{"name":"WlanHostedNetworkSetSecondaryKey","features":[1,102]},{"name":"WlanHostedNetworkStartUsing","features":[1,102]},{"name":"WlanHostedNetworkStopUsing","features":[1,102]},{"name":"WlanIhvControl","features":[1,102]},{"name":"WlanOpenHandle","features":[1,102]},{"name":"WlanQueryAutoConfigParameter","features":[1,102]},{"name":"WlanQueryInterface","features":[1,102]},{"name":"WlanReasonCodeToString","features":[102]},{"name":"WlanRegisterDeviceServiceNotification","features":[1,102]},{"name":"WlanRegisterNotification","features":[1,102]},{"name":"WlanRegisterVirtualStationNotification","features":[1,102]},{"name":"WlanRenameProfile","features":[1,102]},{"name":"WlanSaveTemporaryProfile","features":[1,102]},{"name":"WlanScan","features":[1,102]},{"name":"WlanSetAutoConfigParameter","features":[1,102]},{"name":"WlanSetFilterList","features":[1,102]},{"name":"WlanSetInterface","features":[1,102]},{"name":"WlanSetProfile","features":[1,102]},{"name":"WlanSetProfileCustomUserData","features":[1,102]},{"name":"WlanSetProfileEapUserData","features":[1,102,103]},{"name":"WlanSetProfileEapXmlUserData","features":[1,102]},{"name":"WlanSetProfileList","features":[1,102]},{"name":"WlanSetProfilePosition","features":[1,102]},{"name":"WlanSetPsdIEDataList","features":[1,102]},{"name":"WlanSetSecuritySettings","features":[1,102]},{"name":"WlanUIEditProfile","features":[1,102]},{"name":"ch_description_type_center_frequency","features":[102]},{"name":"ch_description_type_logical","features":[102]},{"name":"ch_description_type_phy_specific","features":[102]},{"name":"connection_phase_any","features":[102]},{"name":"connection_phase_initial_connection","features":[102]},{"name":"connection_phase_post_l3_connection","features":[102]},{"name":"dot11_AC_param_BE","features":[102]},{"name":"dot11_AC_param_BK","features":[102]},{"name":"dot11_AC_param_VI","features":[102]},{"name":"dot11_AC_param_VO","features":[102]},{"name":"dot11_AC_param_max","features":[102]},{"name":"dot11_ANQP_query_result_access_issues","features":[102]},{"name":"dot11_ANQP_query_result_advertisement_protocol_not_supported_on_remote","features":[102]},{"name":"dot11_ANQP_query_result_advertisement_server_not_responding","features":[102]},{"name":"dot11_ANQP_query_result_failure","features":[102]},{"name":"dot11_ANQP_query_result_gas_protocol_failure","features":[102]},{"name":"dot11_ANQP_query_result_resources","features":[102]},{"name":"dot11_ANQP_query_result_success","features":[102]},{"name":"dot11_ANQP_query_result_timed_out","features":[102]},{"name":"dot11_BSS_type_any","features":[102]},{"name":"dot11_BSS_type_independent","features":[102]},{"name":"dot11_BSS_type_infrastructure","features":[102]},{"name":"dot11_assoc_state_auth_assoc","features":[102]},{"name":"dot11_assoc_state_auth_unassoc","features":[102]},{"name":"dot11_assoc_state_unauth_unassoc","features":[102]},{"name":"dot11_assoc_state_zero","features":[102]},{"name":"dot11_band_2p4g","features":[102]},{"name":"dot11_band_4p9g","features":[102]},{"name":"dot11_band_5g","features":[102]},{"name":"dot11_diversity_support_dynamic","features":[102]},{"name":"dot11_diversity_support_fixedlist","features":[102]},{"name":"dot11_diversity_support_notsupported","features":[102]},{"name":"dot11_diversity_support_unknown","features":[102]},{"name":"dot11_hop_algo_current","features":[102]},{"name":"dot11_hop_algo_hcc","features":[102]},{"name":"dot11_hop_algo_hop_index","features":[102]},{"name":"dot11_key_direction_both","features":[102]},{"name":"dot11_key_direction_inbound","features":[102]},{"name":"dot11_key_direction_outbound","features":[102]},{"name":"dot11_manufacturing_callback_IHV_end","features":[102]},{"name":"dot11_manufacturing_callback_IHV_start","features":[102]},{"name":"dot11_manufacturing_callback_self_test_complete","features":[102]},{"name":"dot11_manufacturing_callback_sleep_complete","features":[102]},{"name":"dot11_manufacturing_callback_unknown","features":[102]},{"name":"dot11_manufacturing_test_IHV_end","features":[102]},{"name":"dot11_manufacturing_test_IHV_start","features":[102]},{"name":"dot11_manufacturing_test_awake","features":[102]},{"name":"dot11_manufacturing_test_query_adc","features":[102]},{"name":"dot11_manufacturing_test_query_data","features":[102]},{"name":"dot11_manufacturing_test_rx","features":[102]},{"name":"dot11_manufacturing_test_self_query_result","features":[102]},{"name":"dot11_manufacturing_test_self_start","features":[102]},{"name":"dot11_manufacturing_test_set_data","features":[102]},{"name":"dot11_manufacturing_test_sleep","features":[102]},{"name":"dot11_manufacturing_test_tx","features":[102]},{"name":"dot11_manufacturing_test_unknown","features":[102]},{"name":"dot11_offload_type_auth","features":[102]},{"name":"dot11_offload_type_wep","features":[102]},{"name":"dot11_phy_type_IHV_end","features":[102]},{"name":"dot11_phy_type_IHV_start","features":[102]},{"name":"dot11_phy_type_any","features":[102]},{"name":"dot11_phy_type_dmg","features":[102]},{"name":"dot11_phy_type_dsss","features":[102]},{"name":"dot11_phy_type_eht","features":[102]},{"name":"dot11_phy_type_erp","features":[102]},{"name":"dot11_phy_type_fhss","features":[102]},{"name":"dot11_phy_type_he","features":[102]},{"name":"dot11_phy_type_hrdsss","features":[102]},{"name":"dot11_phy_type_ht","features":[102]},{"name":"dot11_phy_type_irbaseband","features":[102]},{"name":"dot11_phy_type_ofdm","features":[102]},{"name":"dot11_phy_type_unknown","features":[102]},{"name":"dot11_phy_type_vht","features":[102]},{"name":"dot11_power_mode_active","features":[102]},{"name":"dot11_power_mode_powersave","features":[102]},{"name":"dot11_power_mode_reason_compliant_AP","features":[102]},{"name":"dot11_power_mode_reason_compliant_WFD_device","features":[102]},{"name":"dot11_power_mode_reason_legacy_WFD_device","features":[102]},{"name":"dot11_power_mode_reason_no_change","features":[102]},{"name":"dot11_power_mode_reason_noncompliant_AP","features":[102]},{"name":"dot11_power_mode_reason_others","features":[102]},{"name":"dot11_power_mode_unknown","features":[102]},{"name":"dot11_radio_state_off","features":[102]},{"name":"dot11_radio_state_on","features":[102]},{"name":"dot11_radio_state_unknown","features":[102]},{"name":"dot11_reset_type_mac","features":[102]},{"name":"dot11_reset_type_phy","features":[102]},{"name":"dot11_reset_type_phy_and_mac","features":[102]},{"name":"dot11_scan_type_active","features":[102]},{"name":"dot11_scan_type_auto","features":[102]},{"name":"dot11_scan_type_forced","features":[102]},{"name":"dot11_scan_type_passive","features":[102]},{"name":"dot11_temp_type_1","features":[102]},{"name":"dot11_temp_type_2","features":[102]},{"name":"dot11_temp_type_unknown","features":[102]},{"name":"dot11_update_ie_op_create_replace","features":[102]},{"name":"dot11_update_ie_op_delete","features":[102]},{"name":"dot11_wfd_discover_type_auto","features":[102]},{"name":"dot11_wfd_discover_type_find_only","features":[102]},{"name":"dot11_wfd_discover_type_forced","features":[102]},{"name":"dot11_wfd_discover_type_scan_only","features":[102]},{"name":"dot11_wfd_discover_type_scan_social_channels","features":[102]},{"name":"dot11_wfd_scan_type_active","features":[102]},{"name":"dot11_wfd_scan_type_auto","features":[102]},{"name":"dot11_wfd_scan_type_passive","features":[102]},{"name":"wlan_adhoc_network_state_connected","features":[102]},{"name":"wlan_adhoc_network_state_formed","features":[102]},{"name":"wlan_autoconf_opcode_allow_explicit_creds","features":[102]},{"name":"wlan_autoconf_opcode_allow_virtual_station_extensibility","features":[102]},{"name":"wlan_autoconf_opcode_block_period","features":[102]},{"name":"wlan_autoconf_opcode_end","features":[102]},{"name":"wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks","features":[102]},{"name":"wlan_autoconf_opcode_power_setting","features":[102]},{"name":"wlan_autoconf_opcode_show_denied_networks","features":[102]},{"name":"wlan_autoconf_opcode_start","features":[102]},{"name":"wlan_connection_mode_auto","features":[102]},{"name":"wlan_connection_mode_discovery_secure","features":[102]},{"name":"wlan_connection_mode_discovery_unsecure","features":[102]},{"name":"wlan_connection_mode_invalid","features":[102]},{"name":"wlan_connection_mode_profile","features":[102]},{"name":"wlan_connection_mode_temporary_profile","features":[102]},{"name":"wlan_filter_list_type_gp_deny","features":[102]},{"name":"wlan_filter_list_type_gp_permit","features":[102]},{"name":"wlan_filter_list_type_user_deny","features":[102]},{"name":"wlan_filter_list_type_user_permit","features":[102]},{"name":"wlan_hosted_network_active","features":[102]},{"name":"wlan_hosted_network_idle","features":[102]},{"name":"wlan_hosted_network_opcode_connection_settings","features":[102]},{"name":"wlan_hosted_network_opcode_enable","features":[102]},{"name":"wlan_hosted_network_opcode_security_settings","features":[102]},{"name":"wlan_hosted_network_opcode_station_profile","features":[102]},{"name":"wlan_hosted_network_peer_state_authenticated","features":[102]},{"name":"wlan_hosted_network_peer_state_change","features":[102]},{"name":"wlan_hosted_network_peer_state_invalid","features":[102]},{"name":"wlan_hosted_network_radio_state_change","features":[102]},{"name":"wlan_hosted_network_reason_ap_start_failed","features":[102]},{"name":"wlan_hosted_network_reason_bad_parameters","features":[102]},{"name":"wlan_hosted_network_reason_client_abort","features":[102]},{"name":"wlan_hosted_network_reason_crypt_error","features":[102]},{"name":"wlan_hosted_network_reason_device_change","features":[102]},{"name":"wlan_hosted_network_reason_elevation_required","features":[102]},{"name":"wlan_hosted_network_reason_gp_denied","features":[102]},{"name":"wlan_hosted_network_reason_impersonation","features":[102]},{"name":"wlan_hosted_network_reason_incompatible_connection_started","features":[102]},{"name":"wlan_hosted_network_reason_incompatible_connection_stopped","features":[102]},{"name":"wlan_hosted_network_reason_insufficient_resources","features":[102]},{"name":"wlan_hosted_network_reason_interface_available","features":[102]},{"name":"wlan_hosted_network_reason_interface_unavailable","features":[102]},{"name":"wlan_hosted_network_reason_miniport_started","features":[102]},{"name":"wlan_hosted_network_reason_miniport_stopped","features":[102]},{"name":"wlan_hosted_network_reason_peer_arrived","features":[102]},{"name":"wlan_hosted_network_reason_peer_departed","features":[102]},{"name":"wlan_hosted_network_reason_peer_timeout","features":[102]},{"name":"wlan_hosted_network_reason_persistence_failed","features":[102]},{"name":"wlan_hosted_network_reason_properties_change","features":[102]},{"name":"wlan_hosted_network_reason_read_only","features":[102]},{"name":"wlan_hosted_network_reason_service_available_on_virtual_station","features":[102]},{"name":"wlan_hosted_network_reason_service_shutting_down","features":[102]},{"name":"wlan_hosted_network_reason_service_unavailable","features":[102]},{"name":"wlan_hosted_network_reason_stop_before_start","features":[102]},{"name":"wlan_hosted_network_reason_success","features":[102]},{"name":"wlan_hosted_network_reason_unspecified","features":[102]},{"name":"wlan_hosted_network_reason_user_action","features":[102]},{"name":"wlan_hosted_network_reason_virtual_station_blocking_use","features":[102]},{"name":"wlan_hosted_network_state_change","features":[102]},{"name":"wlan_hosted_network_unavailable","features":[102]},{"name":"wlan_ihv_control_type_driver","features":[102]},{"name":"wlan_ihv_control_type_service","features":[102]},{"name":"wlan_interface_state_ad_hoc_network_formed","features":[102]},{"name":"wlan_interface_state_associating","features":[102]},{"name":"wlan_interface_state_authenticating","features":[102]},{"name":"wlan_interface_state_connected","features":[102]},{"name":"wlan_interface_state_disconnected","features":[102]},{"name":"wlan_interface_state_disconnecting","features":[102]},{"name":"wlan_interface_state_discovering","features":[102]},{"name":"wlan_interface_state_not_ready","features":[102]},{"name":"wlan_interface_type_emulated_802_11","features":[102]},{"name":"wlan_interface_type_invalid","features":[102]},{"name":"wlan_interface_type_native_802_11","features":[102]},{"name":"wlan_intf_opcode_autoconf_enabled","features":[102]},{"name":"wlan_intf_opcode_autoconf_end","features":[102]},{"name":"wlan_intf_opcode_autoconf_start","features":[102]},{"name":"wlan_intf_opcode_background_scan_enabled","features":[102]},{"name":"wlan_intf_opcode_bss_type","features":[102]},{"name":"wlan_intf_opcode_certified_safe_mode","features":[102]},{"name":"wlan_intf_opcode_channel_number","features":[102]},{"name":"wlan_intf_opcode_current_connection","features":[102]},{"name":"wlan_intf_opcode_current_operation_mode","features":[102]},{"name":"wlan_intf_opcode_hosted_network_capable","features":[102]},{"name":"wlan_intf_opcode_ihv_end","features":[102]},{"name":"wlan_intf_opcode_ihv_start","features":[102]},{"name":"wlan_intf_opcode_interface_state","features":[102]},{"name":"wlan_intf_opcode_management_frame_protection_capable","features":[102]},{"name":"wlan_intf_opcode_media_streaming_mode","features":[102]},{"name":"wlan_intf_opcode_msm_end","features":[102]},{"name":"wlan_intf_opcode_msm_start","features":[102]},{"name":"wlan_intf_opcode_radio_state","features":[102]},{"name":"wlan_intf_opcode_rssi","features":[102]},{"name":"wlan_intf_opcode_secondary_sta_interfaces","features":[102]},{"name":"wlan_intf_opcode_secondary_sta_synchronized_connections","features":[102]},{"name":"wlan_intf_opcode_security_end","features":[102]},{"name":"wlan_intf_opcode_security_start","features":[102]},{"name":"wlan_intf_opcode_statistics","features":[102]},{"name":"wlan_intf_opcode_supported_adhoc_auth_cipher_pairs","features":[102]},{"name":"wlan_intf_opcode_supported_country_or_region_string_list","features":[102]},{"name":"wlan_intf_opcode_supported_infrastructure_auth_cipher_pairs","features":[102]},{"name":"wlan_intf_opcode_supported_safe_mode","features":[102]},{"name":"wlan_notification_acm_adhoc_network_state_change","features":[102]},{"name":"wlan_notification_acm_autoconf_disabled","features":[102]},{"name":"wlan_notification_acm_autoconf_enabled","features":[102]},{"name":"wlan_notification_acm_background_scan_disabled","features":[102]},{"name":"wlan_notification_acm_background_scan_enabled","features":[102]},{"name":"wlan_notification_acm_bss_type_change","features":[102]},{"name":"wlan_notification_acm_connection_attempt_fail","features":[102]},{"name":"wlan_notification_acm_connection_complete","features":[102]},{"name":"wlan_notification_acm_connection_start","features":[102]},{"name":"wlan_notification_acm_disconnected","features":[102]},{"name":"wlan_notification_acm_disconnecting","features":[102]},{"name":"wlan_notification_acm_end","features":[102]},{"name":"wlan_notification_acm_filter_list_change","features":[102]},{"name":"wlan_notification_acm_interface_arrival","features":[102]},{"name":"wlan_notification_acm_interface_removal","features":[102]},{"name":"wlan_notification_acm_network_available","features":[102]},{"name":"wlan_notification_acm_network_not_available","features":[102]},{"name":"wlan_notification_acm_operational_state_change","features":[102]},{"name":"wlan_notification_acm_power_setting_change","features":[102]},{"name":"wlan_notification_acm_profile_blocked","features":[102]},{"name":"wlan_notification_acm_profile_change","features":[102]},{"name":"wlan_notification_acm_profile_name_change","features":[102]},{"name":"wlan_notification_acm_profile_unblocked","features":[102]},{"name":"wlan_notification_acm_profiles_exhausted","features":[102]},{"name":"wlan_notification_acm_scan_complete","features":[102]},{"name":"wlan_notification_acm_scan_fail","features":[102]},{"name":"wlan_notification_acm_scan_list_refresh","features":[102]},{"name":"wlan_notification_acm_screen_power_change","features":[102]},{"name":"wlan_notification_acm_start","features":[102]},{"name":"wlan_notification_msm_adapter_operation_mode_change","features":[102]},{"name":"wlan_notification_msm_adapter_removal","features":[102]},{"name":"wlan_notification_msm_associated","features":[102]},{"name":"wlan_notification_msm_associating","features":[102]},{"name":"wlan_notification_msm_authenticating","features":[102]},{"name":"wlan_notification_msm_connected","features":[102]},{"name":"wlan_notification_msm_disassociating","features":[102]},{"name":"wlan_notification_msm_disconnected","features":[102]},{"name":"wlan_notification_msm_end","features":[102]},{"name":"wlan_notification_msm_link_degraded","features":[102]},{"name":"wlan_notification_msm_link_improved","features":[102]},{"name":"wlan_notification_msm_peer_join","features":[102]},{"name":"wlan_notification_msm_peer_leave","features":[102]},{"name":"wlan_notification_msm_radio_state_change","features":[102]},{"name":"wlan_notification_msm_roaming_end","features":[102]},{"name":"wlan_notification_msm_roaming_start","features":[102]},{"name":"wlan_notification_msm_signal_quality_change","features":[102]},{"name":"wlan_notification_msm_start","features":[102]},{"name":"wlan_notification_security_end","features":[102]},{"name":"wlan_notification_security_start","features":[102]},{"name":"wlan_opcode_value_type_invalid","features":[102]},{"name":"wlan_opcode_value_type_query_only","features":[102]},{"name":"wlan_opcode_value_type_set_by_group_policy","features":[102]},{"name":"wlan_opcode_value_type_set_by_user","features":[102]},{"name":"wlan_operational_state_going_off","features":[102]},{"name":"wlan_operational_state_going_on","features":[102]},{"name":"wlan_operational_state_off","features":[102]},{"name":"wlan_operational_state_on","features":[102]},{"name":"wlan_operational_state_unknown","features":[102]},{"name":"wlan_power_setting_invalid","features":[102]},{"name":"wlan_power_setting_low_saving","features":[102]},{"name":"wlan_power_setting_maximum_saving","features":[102]},{"name":"wlan_power_setting_medium_saving","features":[102]},{"name":"wlan_power_setting_no_saving","features":[102]},{"name":"wlan_secure_ac_enabled","features":[102]},{"name":"wlan_secure_add_new_all_user_profiles","features":[102]},{"name":"wlan_secure_add_new_per_user_profiles","features":[102]},{"name":"wlan_secure_all_user_profiles_order","features":[102]},{"name":"wlan_secure_bc_scan_enabled","features":[102]},{"name":"wlan_secure_bss_type","features":[102]},{"name":"wlan_secure_current_operation_mode","features":[102]},{"name":"wlan_secure_deny_list","features":[102]},{"name":"wlan_secure_get_plaintext_key","features":[102]},{"name":"wlan_secure_hosted_network_elevated_access","features":[102]},{"name":"wlan_secure_ihv_control","features":[102]},{"name":"wlan_secure_interface_properties","features":[102]},{"name":"wlan_secure_media_streaming_mode_enabled","features":[102]},{"name":"wlan_secure_permit_list","features":[102]},{"name":"wlan_secure_show_denied","features":[102]},{"name":"wlan_secure_virtual_station_extensibility","features":[102]},{"name":"wlan_secure_wfd_elevated_access","features":[102]}],"463":[{"name":"FreeInterfaceContextTable","features":[1,105]},{"name":"GetInterfaceContextTableForHostName","features":[1,105]},{"name":"NET_INTERFACE_CONTEXT","features":[105]},{"name":"NET_INTERFACE_CONTEXT_TABLE","features":[1,105]},{"name":"NET_INTERFACE_FLAG_CONNECT_IF_NEEDED","features":[105]},{"name":"NET_INTERFACE_FLAG_NONE","features":[105]},{"name":"ONDEMAND_NOTIFICATION_CALLBACK","features":[105]},{"name":"OnDemandGetRoutingHint","features":[105]},{"name":"OnDemandRegisterNotification","features":[1,105]},{"name":"OnDemandUnRegisterNotification","features":[1,105]},{"name":"WCM_API_VERSION","features":[105]},{"name":"WCM_API_VERSION_1_0","features":[105]},{"name":"WCM_BILLING_CYCLE_INFO","features":[1,105]},{"name":"WCM_CONNECTION_COST","features":[105]},{"name":"WCM_CONNECTION_COST_APPROACHINGDATALIMIT","features":[105]},{"name":"WCM_CONNECTION_COST_CONGESTED","features":[105]},{"name":"WCM_CONNECTION_COST_DATA","features":[105]},{"name":"WCM_CONNECTION_COST_FIXED","features":[105]},{"name":"WCM_CONNECTION_COST_OVERDATALIMIT","features":[105]},{"name":"WCM_CONNECTION_COST_ROAMING","features":[105]},{"name":"WCM_CONNECTION_COST_SOURCE","features":[105]},{"name":"WCM_CONNECTION_COST_SOURCE_DEFAULT","features":[105]},{"name":"WCM_CONNECTION_COST_SOURCE_GP","features":[105]},{"name":"WCM_CONNECTION_COST_SOURCE_OPERATOR","features":[105]},{"name":"WCM_CONNECTION_COST_SOURCE_USER","features":[105]},{"name":"WCM_CONNECTION_COST_UNKNOWN","features":[105]},{"name":"WCM_CONNECTION_COST_UNRESTRICTED","features":[105]},{"name":"WCM_CONNECTION_COST_VARIABLE","features":[105]},{"name":"WCM_DATAPLAN_STATUS","features":[1,105]},{"name":"WCM_MAX_PROFILE_NAME","features":[105]},{"name":"WCM_MEDIA_TYPE","features":[105]},{"name":"WCM_POLICY_VALUE","features":[1,105]},{"name":"WCM_PROFILE_INFO","features":[105]},{"name":"WCM_PROFILE_INFO_LIST","features":[105]},{"name":"WCM_PROPERTY","features":[105]},{"name":"WCM_TIME_INTERVAL","features":[105]},{"name":"WCM_UNKNOWN_DATAPLAN_STATUS","features":[105]},{"name":"WCM_USAGE_DATA","features":[1,105]},{"name":"WcmFreeMemory","features":[105]},{"name":"WcmGetProfileList","features":[105]},{"name":"WcmQueryProperty","features":[105]},{"name":"WcmSetProfileList","features":[1,105]},{"name":"WcmSetProperty","features":[105]},{"name":"wcm_global_property_domain_policy","features":[105]},{"name":"wcm_global_property_minimize_policy","features":[105]},{"name":"wcm_global_property_powermanagement_policy","features":[105]},{"name":"wcm_global_property_roaming_policy","features":[105]},{"name":"wcm_intf_property_connection_cost","features":[105]},{"name":"wcm_intf_property_dataplan_status","features":[105]},{"name":"wcm_intf_property_hotspot_profile","features":[105]},{"name":"wcm_media_ethernet","features":[105]},{"name":"wcm_media_invalid","features":[105]},{"name":"wcm_media_max","features":[105]},{"name":"wcm_media_mbn","features":[105]},{"name":"wcm_media_unknown","features":[105]},{"name":"wcm_media_wlan","features":[105]}],"464":[{"name":"DL_ADDRESS_TYPE","features":[18]},{"name":"DlBroadcast","features":[18]},{"name":"DlMulticast","features":[18]},{"name":"DlUnicast","features":[18]},{"name":"FWPM_ACTION0","features":[18]},{"name":"FWPM_ACTRL_ADD","features":[18]},{"name":"FWPM_ACTRL_ADD_LINK","features":[18]},{"name":"FWPM_ACTRL_BEGIN_READ_TXN","features":[18]},{"name":"FWPM_ACTRL_BEGIN_WRITE_TXN","features":[18]},{"name":"FWPM_ACTRL_CLASSIFY","features":[18]},{"name":"FWPM_ACTRL_ENUM","features":[18]},{"name":"FWPM_ACTRL_OPEN","features":[18]},{"name":"FWPM_ACTRL_READ","features":[18]},{"name":"FWPM_ACTRL_READ_STATS","features":[18]},{"name":"FWPM_ACTRL_SUBSCRIBE","features":[18]},{"name":"FWPM_ACTRL_WRITE","features":[18]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT","features":[18]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT_SERVER","features":[18]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_PRIVATE_NETWORK","features":[18]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_TYPE","features":[18]},{"name":"FWPM_AUTO_WEIGHT_BITS","features":[18]},{"name":"FWPM_CALLOUT0","features":[18]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_1","features":[18]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_2","features":[18]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_3","features":[18]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_4","features":[18]},{"name":"FWPM_CALLOUT_CHANGE0","features":[18]},{"name":"FWPM_CALLOUT_CHANGE_CALLBACK0","features":[18]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_LISTEN_V4","features":[18]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_RESOURCE_ASSIGNMENT_V4","features":[18]},{"name":"FWPM_CALLOUT_ENUM_TEMPLATE0","features":[18]},{"name":"FWPM_CALLOUT_FLAG_PERSISTENT","features":[18]},{"name":"FWPM_CALLOUT_FLAG_REGISTERED","features":[18]},{"name":"FWPM_CALLOUT_FLAG_USES_PROVIDER_CONTEXT","features":[18]},{"name":"FWPM_CALLOUT_HTTP_TEMPLATE_SSL_HANDSHAKE","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V6","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V4","features":[18]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V6","features":[18]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_SUBSCRIPTION0","features":[18]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V4","features":[18]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V6","features":[18]},{"name":"FWPM_CALLOUT_TEREDO_ALE_LISTEN_V6","features":[18]},{"name":"FWPM_CALLOUT_TEREDO_ALE_RESOURCE_ASSIGNMENT_V6","features":[18]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V4_SILENT_DROP","features":[18]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V6_SILENT_DROP","features":[18]},{"name":"FWPM_CHANGE_ADD","features":[18]},{"name":"FWPM_CHANGE_DELETE","features":[18]},{"name":"FWPM_CHANGE_TYPE","features":[18]},{"name":"FWPM_CHANGE_TYPE_MAX","features":[18]},{"name":"FWPM_CLASSIFY_OPTION0","features":[1,18,4]},{"name":"FWPM_CLASSIFY_OPTIONS0","features":[1,18,4]},{"name":"FWPM_CLASSIFY_OPTIONS_CONTEXT","features":[18]},{"name":"FWPM_CONDITION_ALE_APP_ID","features":[18]},{"name":"FWPM_CONDITION_ALE_EFFECTIVE_NAME","features":[18]},{"name":"FWPM_CONDITION_ALE_NAP_CONTEXT","features":[18]},{"name":"FWPM_CONDITION_ALE_ORIGINAL_APP_ID","features":[18]},{"name":"FWPM_CONDITION_ALE_PACKAGE_ID","features":[18]},{"name":"FWPM_CONDITION_ALE_PROMISCUOUS_MODE","features":[18]},{"name":"FWPM_CONDITION_ALE_REAUTH_REASON","features":[18]},{"name":"FWPM_CONDITION_ALE_REMOTE_MACHINE_ID","features":[18]},{"name":"FWPM_CONDITION_ALE_REMOTE_USER_ID","features":[18]},{"name":"FWPM_CONDITION_ALE_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[18]},{"name":"FWPM_CONDITION_ALE_SIO_FIREWALL_SYSTEM_PORT","features":[18]},{"name":"FWPM_CONDITION_ALE_USER_ID","features":[18]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_PROFILE_ID","features":[18]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_TYPE","features":[18]},{"name":"FWPM_CONDITION_ARRIVAL_TUNNEL_TYPE","features":[18]},{"name":"FWPM_CONDITION_AUTHENTICATION_TYPE","features":[18]},{"name":"FWPM_CONDITION_CLIENT_CERT_KEY_LENGTH","features":[18]},{"name":"FWPM_CONDITION_CLIENT_CERT_OID","features":[18]},{"name":"FWPM_CONDITION_CLIENT_TOKEN","features":[18]},{"name":"FWPM_CONDITION_COMPARTMENT_ID","features":[18]},{"name":"FWPM_CONDITION_CURRENT_PROFILE_ID","features":[18]},{"name":"FWPM_CONDITION_DCOM_APP_ID","features":[18]},{"name":"FWPM_CONDITION_DESTINATION_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_DESTINATION_SUB_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_DIRECTION","features":[18]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_ADDRESS_TYPE","features":[18]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_PORT","features":[18]},{"name":"FWPM_CONDITION_EMBEDDED_PROTOCOL","features":[18]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_PORT","features":[18]},{"name":"FWPM_CONDITION_ETHER_TYPE","features":[18]},{"name":"FWPM_CONDITION_FLAGS","features":[18]},{"name":"FWPM_CONDITION_IMAGE_NAME","features":[18]},{"name":"FWPM_CONDITION_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_INTERFACE_MAC_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_INTERFACE_QUARANTINE_EPOCH","features":[18]},{"name":"FWPM_CONDITION_INTERFACE_TYPE","features":[18]},{"name":"FWPM_CONDITION_IPSEC_POLICY_KEY","features":[18]},{"name":"FWPM_CONDITION_IPSEC_SECURITY_REALM_ID","features":[18]},{"name":"FWPM_CONDITION_IP_ARRIVAL_INTERFACE","features":[18]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS_TYPE","features":[18]},{"name":"FWPM_CONDITION_IP_DESTINATION_PORT","features":[18]},{"name":"FWPM_CONDITION_IP_FORWARD_INTERFACE","features":[18]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_TYPE","features":[18]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V4","features":[18]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V6","features":[18]},{"name":"FWPM_CONDITION_IP_LOCAL_INTERFACE","features":[18]},{"name":"FWPM_CONDITION_IP_LOCAL_PORT","features":[18]},{"name":"FWPM_CONDITION_IP_NEXTHOP_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_IP_NEXTHOP_INTERFACE","features":[18]},{"name":"FWPM_CONDITION_IP_PHYSICAL_ARRIVAL_INTERFACE","features":[18]},{"name":"FWPM_CONDITION_IP_PHYSICAL_NEXTHOP_INTERFACE","features":[18]},{"name":"FWPM_CONDITION_IP_PROTOCOL","features":[18]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V4","features":[18]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V6","features":[18]},{"name":"FWPM_CONDITION_IP_REMOTE_PORT","features":[18]},{"name":"FWPM_CONDITION_IP_SOURCE_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_IP_SOURCE_PORT","features":[18]},{"name":"FWPM_CONDITION_KM_AUTH_NAP_CONTEXT","features":[18]},{"name":"FWPM_CONDITION_KM_MODE","features":[18]},{"name":"FWPM_CONDITION_KM_TYPE","features":[18]},{"name":"FWPM_CONDITION_L2_FLAGS","features":[18]},{"name":"FWPM_CONDITION_LOCAL_INTERFACE_PROFILE_ID","features":[18]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS_TYPE","features":[18]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS_TYPE","features":[18]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS_TYPE","features":[18]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS","features":[18]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS_TYPE","features":[18]},{"name":"FWPM_CONDITION_NDIS_MEDIA_TYPE","features":[18]},{"name":"FWPM_CONDITION_NDIS_PHYSICAL_MEDIA_TYPE","features":[18]},{"name":"FWPM_CONDITION_NDIS_PORT","features":[18]},{"name":"FWPM_CONDITION_NET_EVENT_TYPE","features":[18]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_PROFILE_ID","features":[18]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_TYPE","features":[18]},{"name":"FWPM_CONDITION_NEXTHOP_SUB_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_NEXTHOP_TUNNEL_TYPE","features":[18]},{"name":"FWPM_CONDITION_ORIGINAL_ICMP_TYPE","features":[18]},{"name":"FWPM_CONDITION_ORIGINAL_PROFILE_ID","features":[18]},{"name":"FWPM_CONDITION_PEER_NAME","features":[18]},{"name":"FWPM_CONDITION_PIPE","features":[18]},{"name":"FWPM_CONDITION_PROCESS_WITH_RPC_IF_UUID","features":[18]},{"name":"FWPM_CONDITION_QM_MODE","features":[18]},{"name":"FWPM_CONDITION_REAUTHORIZE_REASON","features":[18]},{"name":"FWPM_CONDITION_REMOTE_ID","features":[18]},{"name":"FWPM_CONDITION_REMOTE_USER_TOKEN","features":[18]},{"name":"FWPM_CONDITION_RESERVED0","features":[18]},{"name":"FWPM_CONDITION_RESERVED1","features":[18]},{"name":"FWPM_CONDITION_RESERVED10","features":[18]},{"name":"FWPM_CONDITION_RESERVED11","features":[18]},{"name":"FWPM_CONDITION_RESERVED12","features":[18]},{"name":"FWPM_CONDITION_RESERVED13","features":[18]},{"name":"FWPM_CONDITION_RESERVED14","features":[18]},{"name":"FWPM_CONDITION_RESERVED15","features":[18]},{"name":"FWPM_CONDITION_RESERVED2","features":[18]},{"name":"FWPM_CONDITION_RESERVED3","features":[18]},{"name":"FWPM_CONDITION_RESERVED4","features":[18]},{"name":"FWPM_CONDITION_RESERVED5","features":[18]},{"name":"FWPM_CONDITION_RESERVED6","features":[18]},{"name":"FWPM_CONDITION_RESERVED7","features":[18]},{"name":"FWPM_CONDITION_RESERVED8","features":[18]},{"name":"FWPM_CONDITION_RESERVED9","features":[18]},{"name":"FWPM_CONDITION_RPC_AUTH_LEVEL","features":[18]},{"name":"FWPM_CONDITION_RPC_AUTH_TYPE","features":[18]},{"name":"FWPM_CONDITION_RPC_EP_FLAGS","features":[18]},{"name":"FWPM_CONDITION_RPC_EP_VALUE","features":[18]},{"name":"FWPM_CONDITION_RPC_IF_FLAG","features":[18]},{"name":"FWPM_CONDITION_RPC_IF_UUID","features":[18]},{"name":"FWPM_CONDITION_RPC_IF_VERSION","features":[18]},{"name":"FWPM_CONDITION_RPC_PROTOCOL","features":[18]},{"name":"FWPM_CONDITION_RPC_PROXY_AUTH_TYPE","features":[18]},{"name":"FWPM_CONDITION_RPC_SERVER_NAME","features":[18]},{"name":"FWPM_CONDITION_RPC_SERVER_PORT","features":[18]},{"name":"FWPM_CONDITION_SEC_ENCRYPT_ALGORITHM","features":[18]},{"name":"FWPM_CONDITION_SEC_KEY_SIZE","features":[18]},{"name":"FWPM_CONDITION_SOURCE_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_SOURCE_SUB_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_SUB_INTERFACE_INDEX","features":[18]},{"name":"FWPM_CONDITION_TUNNEL_TYPE","features":[18]},{"name":"FWPM_CONDITION_VLAN_ID","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_ID","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_TYPE","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_VM_ID","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_ID","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_NETWORK_TYPE","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_ID","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_TYPE","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_VM_ID","features":[18]},{"name":"FWPM_CONDITION_VSWITCH_TENANT_NETWORK_ID","features":[18]},{"name":"FWPM_CONNECTION0","features":[1,18]},{"name":"FWPM_CONNECTION_CALLBACK0","features":[1,18]},{"name":"FWPM_CONNECTION_ENUM_FLAG_QUERY_BYTES_TRANSFERRED","features":[18]},{"name":"FWPM_CONNECTION_ENUM_TEMPLATE0","features":[18]},{"name":"FWPM_CONNECTION_EVENT_ADD","features":[18]},{"name":"FWPM_CONNECTION_EVENT_DELETE","features":[18]},{"name":"FWPM_CONNECTION_EVENT_MAX","features":[18]},{"name":"FWPM_CONNECTION_EVENT_TYPE","features":[18]},{"name":"FWPM_CONNECTION_SUBSCRIPTION0","features":[18]},{"name":"FWPM_DISPLAY_DATA0","features":[18]},{"name":"FWPM_DYNAMIC_KEYWORD_CALLBACK0","features":[18]},{"name":"FWPM_ENGINE_COLLECT_NET_EVENTS","features":[18]},{"name":"FWPM_ENGINE_MONITOR_IPSEC_CONNECTIONS","features":[18]},{"name":"FWPM_ENGINE_NAME_CACHE","features":[18]},{"name":"FWPM_ENGINE_NET_EVENT_MATCH_ANY_KEYWORDS","features":[18]},{"name":"FWPM_ENGINE_OPTION","features":[18]},{"name":"FWPM_ENGINE_OPTION_MAX","features":[18]},{"name":"FWPM_ENGINE_OPTION_PACKET_BATCH_INBOUND","features":[18]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_FORWARD","features":[18]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_INBOUND","features":[18]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_NONE","features":[18]},{"name":"FWPM_ENGINE_PACKET_QUEUING","features":[18]},{"name":"FWPM_ENGINE_TXN_WATCHDOG_TIMEOUT_IN_MSEC","features":[18]},{"name":"FWPM_FIELD0","features":[18]},{"name":"FWPM_FIELD_FLAGS","features":[18]},{"name":"FWPM_FIELD_IP_ADDRESS","features":[18]},{"name":"FWPM_FIELD_RAW_DATA","features":[18]},{"name":"FWPM_FIELD_TYPE","features":[18]},{"name":"FWPM_FIELD_TYPE_MAX","features":[18]},{"name":"FWPM_FILTER0","features":[1,18,4]},{"name":"FWPM_FILTER_CHANGE0","features":[18]},{"name":"FWPM_FILTER_CHANGE_CALLBACK0","features":[18]},{"name":"FWPM_FILTER_CONDITION0","features":[1,18,4]},{"name":"FWPM_FILTER_ENUM_TEMPLATE0","features":[1,18,4]},{"name":"FWPM_FILTER_FLAGS","features":[18]},{"name":"FWPM_FILTER_FLAG_BOOTTIME","features":[18]},{"name":"FWPM_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[18]},{"name":"FWPM_FILTER_FLAG_DISABLED","features":[18]},{"name":"FWPM_FILTER_FLAG_GAMEOS_ONLY","features":[18]},{"name":"FWPM_FILTER_FLAG_HAS_PROVIDER_CONTEXT","features":[18]},{"name":"FWPM_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[18]},{"name":"FWPM_FILTER_FLAG_INDEXED","features":[18]},{"name":"FWPM_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[18]},{"name":"FWPM_FILTER_FLAG_NONE","features":[18]},{"name":"FWPM_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[18]},{"name":"FWPM_FILTER_FLAG_PERSISTENT","features":[18]},{"name":"FWPM_FILTER_FLAG_RESERVED0","features":[18]},{"name":"FWPM_FILTER_FLAG_RESERVED1","features":[18]},{"name":"FWPM_FILTER_FLAG_SILENT_MODE","features":[18]},{"name":"FWPM_FILTER_FLAG_SYSTEMOS_ONLY","features":[18]},{"name":"FWPM_FILTER_SUBSCRIPTION0","features":[1,18,4]},{"name":"FWPM_GENERAL_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_AUTHIP_MM_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_AUTHIP_QM_TRANSPORT_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_AUTHIP_QM_TUNNEL_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_DOSP_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_IKEV2_MM_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_IKEV2_QM_TRANSPORT_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_IKEV2_QM_TUNNEL_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_IKE_MM_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_IKE_QM_TRANSPORT_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_IKE_QM_TUNNEL_CONTEXT","features":[18]},{"name":"FWPM_IPSEC_KEYING_CONTEXT","features":[18]},{"name":"FWPM_KEYING_MODULE_AUTHIP","features":[18]},{"name":"FWPM_KEYING_MODULE_IKE","features":[18]},{"name":"FWPM_KEYING_MODULE_IKEV2","features":[18]},{"name":"FWPM_LAYER0","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6","features":[18]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V4","features":[18]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V6","features":[18]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V4","features":[18]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V6","features":[18]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V4","features":[18]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V6","features":[18]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4","features":[18]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6","features":[18]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4","features":[18]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6","features":[18]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V4","features":[18]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V6","features":[18]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4","features":[18]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6","features":[18]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_ETHERNET","features":[18]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V4","features":[18]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V6","features":[18]},{"name":"FWPM_LAYER_ENUM_TEMPLATE0","features":[18]},{"name":"FWPM_LAYER_FLAG_BUFFERED","features":[18]},{"name":"FWPM_LAYER_FLAG_BUILTIN","features":[18]},{"name":"FWPM_LAYER_FLAG_CLASSIFY_MOSTLY","features":[18]},{"name":"FWPM_LAYER_FLAG_KERNEL","features":[18]},{"name":"FWPM_LAYER_IKEEXT_V4","features":[18]},{"name":"FWPM_LAYER_IKEEXT_V6","features":[18]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4","features":[18]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6","features":[18]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4","features":[18]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6","features":[18]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_ETHERNET","features":[18]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE","features":[18]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE_FAST","features":[18]},{"name":"FWPM_LAYER_INBOUND_RESERVED2","features":[18]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_FAST","features":[18]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4","features":[18]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6","features":[18]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_ETHERNET","features":[18]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V4","features":[18]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V6","features":[18]},{"name":"FWPM_LAYER_IPFORWARD_V4","features":[18]},{"name":"FWPM_LAYER_IPFORWARD_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_IPFORWARD_V6","features":[18]},{"name":"FWPM_LAYER_IPFORWARD_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V4","features":[18]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V6","features":[18]},{"name":"FWPM_LAYER_IPSEC_V4","features":[18]},{"name":"FWPM_LAYER_IPSEC_V6","features":[18]},{"name":"FWPM_LAYER_KM_AUTHORIZATION","features":[18]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V4","features":[18]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V6","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_ETHERNET","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE_FAST","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V4","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V6","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_FAST","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6","features":[18]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6_DISCARD","features":[18]},{"name":"FWPM_LAYER_RPC_EPMAP","features":[18]},{"name":"FWPM_LAYER_RPC_EP_ADD","features":[18]},{"name":"FWPM_LAYER_RPC_PROXY_CONN","features":[18]},{"name":"FWPM_LAYER_RPC_PROXY_IF","features":[18]},{"name":"FWPM_LAYER_RPC_UM","features":[18]},{"name":"FWPM_LAYER_STATISTICS0","features":[18]},{"name":"FWPM_LAYER_STREAM_PACKET_V4","features":[18]},{"name":"FWPM_LAYER_STREAM_PACKET_V6","features":[18]},{"name":"FWPM_LAYER_STREAM_V4","features":[18]},{"name":"FWPM_LAYER_STREAM_V4_DISCARD","features":[18]},{"name":"FWPM_LAYER_STREAM_V6","features":[18]},{"name":"FWPM_LAYER_STREAM_V6_DISCARD","features":[18]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_CONTEXT","features":[18]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTING0","features":[1,18,4]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTINGS0","features":[1,18,4]},{"name":"FWPM_NET_EVENT0","features":[1,18,4]},{"name":"FWPM_NET_EVENT1","features":[1,18,4]},{"name":"FWPM_NET_EVENT2","features":[1,18,4]},{"name":"FWPM_NET_EVENT3","features":[1,18,4]},{"name":"FWPM_NET_EVENT4","features":[1,18,4]},{"name":"FWPM_NET_EVENT5","features":[1,18,4]},{"name":"FWPM_NET_EVENT_CALLBACK0","features":[1,18,4]},{"name":"FWPM_NET_EVENT_CALLBACK1","features":[1,18,4]},{"name":"FWPM_NET_EVENT_CALLBACK2","features":[1,18,4]},{"name":"FWPM_NET_EVENT_CALLBACK3","features":[1,18,4]},{"name":"FWPM_NET_EVENT_CALLBACK4","features":[1,18,4]},{"name":"FWPM_NET_EVENT_CAPABILITY_ALLOW0","features":[1,18]},{"name":"FWPM_NET_EVENT_CAPABILITY_DROP0","features":[1,18]},{"name":"FWPM_NET_EVENT_CLASSIFY_ALLOW0","features":[1,18]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP0","features":[18]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP1","features":[1,18]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP2","features":[1,18]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP_MAC0","features":[1,18]},{"name":"FWPM_NET_EVENT_ENUM_TEMPLATE0","features":[1,18,4]},{"name":"FWPM_NET_EVENT_FLAG_APP_ID_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_EFFECTIVE_NAME_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_ENTERPRISE_ID_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_IP_PROTOCOL_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_IP_VERSION_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_ADDR_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_PORT_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_PACKAGE_ID_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_POLICY_FLAGS_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_REAUTH_REASON_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_ADDR_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_PORT_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_SCOPE_ID_SET","features":[18]},{"name":"FWPM_NET_EVENT_FLAG_USER_ID_SET","features":[18]},{"name":"FWPM_NET_EVENT_HEADER0","features":[1,18,4]},{"name":"FWPM_NET_EVENT_HEADER1","features":[1,18,4]},{"name":"FWPM_NET_EVENT_HEADER2","features":[1,18,4]},{"name":"FWPM_NET_EVENT_HEADER3","features":[1,18,4]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE0","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE1","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_BENIGN","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_MULTIPLE","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE0","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE1","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE2","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_BENIGN","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_MULTIPLE","features":[18]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE0","features":[1,18,4]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE1","features":[1,18,4]},{"name":"FWPM_NET_EVENT_IPSEC_DOSP_DROP0","features":[18]},{"name":"FWPM_NET_EVENT_IPSEC_KERNEL_DROP0","features":[18]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_ALLOW","features":[18]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_DROP","features":[18]},{"name":"FWPM_NET_EVENT_KEYWORD_CLASSIFY_ALLOW","features":[18]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_BCAST","features":[18]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_MCAST","features":[18]},{"name":"FWPM_NET_EVENT_KEYWORD_PORT_SCANNING_DROP","features":[18]},{"name":"FWPM_NET_EVENT_LPM_PACKET_ARRIVAL0","features":[18]},{"name":"FWPM_NET_EVENT_SUBSCRIPTION0","features":[1,18,4]},{"name":"FWPM_NET_EVENT_TYPE","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_ALLOW","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_DROP","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_ALLOW","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP_MAC","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_EM_FAILURE","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_MM_FAILURE","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_QM_FAILURE","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_DOSP_DROP","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_KERNEL_DROP","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_LPM_PACKET_ARRIVAL","features":[18]},{"name":"FWPM_NET_EVENT_TYPE_MAX","features":[18]},{"name":"FWPM_PROVIDER0","features":[18]},{"name":"FWPM_PROVIDER_CHANGE0","features":[18]},{"name":"FWPM_PROVIDER_CHANGE_CALLBACK0","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT0","features":[1,18,4]},{"name":"FWPM_PROVIDER_CONTEXT1","features":[1,18,4]},{"name":"FWPM_PROVIDER_CONTEXT2","features":[1,18,4]},{"name":"FWPM_PROVIDER_CONTEXT3","features":[1,18,4]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE0","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE_CALLBACK0","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_DOWNLEVEL","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_PERSISTENT","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_AUTHIP","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_IPSEC","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE","features":[18]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE_MAX","features":[18]},{"name":"FWPM_PROVIDER_ENUM_TEMPLATE0","features":[18]},{"name":"FWPM_PROVIDER_FLAG_DISABLED","features":[18]},{"name":"FWPM_PROVIDER_FLAG_PERSISTENT","features":[18]},{"name":"FWPM_PROVIDER_IKEEXT","features":[18]},{"name":"FWPM_PROVIDER_IPSEC_DOSP_CONFIG","features":[18]},{"name":"FWPM_PROVIDER_MPSSVC_APP_ISOLATION","features":[18]},{"name":"FWPM_PROVIDER_MPSSVC_EDP","features":[18]},{"name":"FWPM_PROVIDER_MPSSVC_TENANT_RESTRICTIONS","features":[18]},{"name":"FWPM_PROVIDER_MPSSVC_WF","features":[18]},{"name":"FWPM_PROVIDER_MPSSVC_WSH","features":[18]},{"name":"FWPM_PROVIDER_SUBSCRIPTION0","features":[18]},{"name":"FWPM_PROVIDER_TCP_CHIMNEY_OFFLOAD","features":[18]},{"name":"FWPM_PROVIDER_TCP_TEMPLATES","features":[18]},{"name":"FWPM_SERVICE_RUNNING","features":[18]},{"name":"FWPM_SERVICE_START_PENDING","features":[18]},{"name":"FWPM_SERVICE_STATE","features":[18]},{"name":"FWPM_SERVICE_STATE_MAX","features":[18]},{"name":"FWPM_SERVICE_STOPPED","features":[18]},{"name":"FWPM_SERVICE_STOP_PENDING","features":[18]},{"name":"FWPM_SESSION0","features":[1,18,4]},{"name":"FWPM_SESSION_ENUM_TEMPLATE0","features":[18]},{"name":"FWPM_SESSION_FLAG_DYNAMIC","features":[18]},{"name":"FWPM_SESSION_FLAG_RESERVED","features":[18]},{"name":"FWPM_STATISTICS0","features":[18]},{"name":"FWPM_SUBLAYER0","features":[18]},{"name":"FWPM_SUBLAYER_CHANGE0","features":[18]},{"name":"FWPM_SUBLAYER_CHANGE_CALLBACK0","features":[18]},{"name":"FWPM_SUBLAYER_ENUM_TEMPLATE0","features":[18]},{"name":"FWPM_SUBLAYER_FLAG_PERSISTENT","features":[18]},{"name":"FWPM_SUBLAYER_INSPECTION","features":[18]},{"name":"FWPM_SUBLAYER_IPSEC_DOSP","features":[18]},{"name":"FWPM_SUBLAYER_IPSEC_FORWARD_OUTBOUND_TUNNEL","features":[18]},{"name":"FWPM_SUBLAYER_IPSEC_SECURITY_REALM","features":[18]},{"name":"FWPM_SUBLAYER_IPSEC_TUNNEL","features":[18]},{"name":"FWPM_SUBLAYER_LIPS","features":[18]},{"name":"FWPM_SUBLAYER_MPSSVC_APP_ISOLATION","features":[18]},{"name":"FWPM_SUBLAYER_MPSSVC_EDP","features":[18]},{"name":"FWPM_SUBLAYER_MPSSVC_QUARANTINE","features":[18]},{"name":"FWPM_SUBLAYER_MPSSVC_TENANT_RESTRICTIONS","features":[18]},{"name":"FWPM_SUBLAYER_MPSSVC_WF","features":[18]},{"name":"FWPM_SUBLAYER_MPSSVC_WSH","features":[18]},{"name":"FWPM_SUBLAYER_RPC_AUDIT","features":[18]},{"name":"FWPM_SUBLAYER_SECURE_SOCKET","features":[18]},{"name":"FWPM_SUBLAYER_SUBSCRIPTION0","features":[18]},{"name":"FWPM_SUBLAYER_TCP_CHIMNEY_OFFLOAD","features":[18]},{"name":"FWPM_SUBLAYER_TCP_TEMPLATES","features":[18]},{"name":"FWPM_SUBLAYER_TEREDO","features":[18]},{"name":"FWPM_SUBLAYER_UNIVERSAL","features":[18]},{"name":"FWPM_SUBSCRIPTION_FLAGS","features":[18]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_ADD","features":[18]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_DELETE","features":[18]},{"name":"FWPM_SYSTEM_PORTS0","features":[18]},{"name":"FWPM_SYSTEM_PORTS_BY_TYPE0","features":[18]},{"name":"FWPM_SYSTEM_PORTS_CALLBACK0","features":[18]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_IN","features":[18]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_OUT","features":[18]},{"name":"FWPM_SYSTEM_PORT_RPC_EPMAP","features":[18]},{"name":"FWPM_SYSTEM_PORT_TEREDO","features":[18]},{"name":"FWPM_SYSTEM_PORT_TYPE","features":[18]},{"name":"FWPM_SYSTEM_PORT_TYPE_MAX","features":[18]},{"name":"FWPM_TUNNEL_FLAG_ENABLE_VIRTUAL_IF_TUNNELING","features":[18]},{"name":"FWPM_TUNNEL_FLAG_POINT_TO_POINT","features":[18]},{"name":"FWPM_TUNNEL_FLAG_RESERVED0","features":[18]},{"name":"FWPM_TXN_READ_ONLY","features":[18]},{"name":"FWPM_VSWITCH_EVENT0","features":[1,18]},{"name":"FWPM_VSWITCH_EVENT_CALLBACK0","features":[1,18]},{"name":"FWPM_VSWITCH_EVENT_DISABLED_FOR_INSPECTION","features":[18]},{"name":"FWPM_VSWITCH_EVENT_ENABLED_FOR_INSPECTION","features":[18]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ADD_TO_INCOMPLETE_LAYER","features":[18]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_NOT_IN_REQUIRED_POSITION","features":[18]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_REORDER","features":[18]},{"name":"FWPM_VSWITCH_EVENT_MAX","features":[18]},{"name":"FWPM_VSWITCH_EVENT_SUBSCRIPTION0","features":[18]},{"name":"FWPM_VSWITCH_EVENT_TYPE","features":[18]},{"name":"FWPM_WEIGHT_RANGE_IKE_EXEMPTIONS","features":[18]},{"name":"FWPM_WEIGHT_RANGE_IPSEC","features":[18]},{"name":"FWPS_ALE_ENDPOINT_FLAG_IPSEC_SECURED","features":[18]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ABSORB","features":[18]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_CHECK","features":[18]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_POSSIBLE","features":[18]},{"name":"FWPS_CLASSIFY_OUT_FLAG_BUFFER_LIMIT_REACHED","features":[18]},{"name":"FWPS_CLASSIFY_OUT_FLAG_NO_MORE_DATA","features":[18]},{"name":"FWPS_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[18]},{"name":"FWPS_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[18]},{"name":"FWPS_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[18]},{"name":"FWPS_FILTER_FLAG_OR_CONDITIONS","features":[18]},{"name":"FWPS_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[18]},{"name":"FWPS_FILTER_FLAG_RESERVED0","features":[18]},{"name":"FWPS_FILTER_FLAG_RESERVED1","features":[18]},{"name":"FWPS_FILTER_FLAG_SILENT_MODE","features":[18]},{"name":"FWPS_INCOMING_FLAG_ABSORB","features":[18]},{"name":"FWPS_INCOMING_FLAG_CACHE_SAFE","features":[18]},{"name":"FWPS_INCOMING_FLAG_CONNECTION_FAILING_INDICATION","features":[18]},{"name":"FWPS_INCOMING_FLAG_ENFORCE_QUERY","features":[18]},{"name":"FWPS_INCOMING_FLAG_IS_LOCAL_ONLY_FLOW","features":[18]},{"name":"FWPS_INCOMING_FLAG_IS_LOOSE_SOURCE_FLOW","features":[18]},{"name":"FWPS_INCOMING_FLAG_MID_STREAM_INSPECTION","features":[18]},{"name":"FWPS_INCOMING_FLAG_RECLASSIFY","features":[18]},{"name":"FWPS_INCOMING_FLAG_RESERVED0","features":[18]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV4_FRAMING","features":[18]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV6_FRAMING","features":[18]},{"name":"FWPS_L2_INCOMING_FLAG_RECLASSIFY_MULTI_DESTINATION","features":[18]},{"name":"FWPS_L2_METADATA_FIELD_ETHERNET_MAC_HEADER_SIZE","features":[18]},{"name":"FWPS_L2_METADATA_FIELD_RESERVED","features":[18]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_DESTINATION_PORT_ID","features":[18]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_PACKET_CONTEXT","features":[18]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_NIC_INDEX","features":[18]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_PORT_ID","features":[18]},{"name":"FWPS_L2_METADATA_FIELD_WIFI_OPERATION_MODE","features":[18]},{"name":"FWPS_METADATA_FIELD_ALE_CLASSIFY_REQUIRED","features":[18]},{"name":"FWPS_METADATA_FIELD_COMPARTMENT_ID","features":[18]},{"name":"FWPS_METADATA_FIELD_COMPLETION_HANDLE","features":[18]},{"name":"FWPS_METADATA_FIELD_DESTINATION_INTERFACE_INDEX","features":[18]},{"name":"FWPS_METADATA_FIELD_DESTINATION_PREFIX","features":[18]},{"name":"FWPS_METADATA_FIELD_DISCARD_REASON","features":[18]},{"name":"FWPS_METADATA_FIELD_ETHER_FRAME_LENGTH","features":[18]},{"name":"FWPS_METADATA_FIELD_FLOW_HANDLE","features":[18]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_INBOUND_PASS_THRU","features":[18]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_OUTBOUND_PASS_THRU","features":[18]},{"name":"FWPS_METADATA_FIELD_FRAGMENT_DATA","features":[18]},{"name":"FWPS_METADATA_FIELD_ICMP_ID_AND_SEQUENCE","features":[18]},{"name":"FWPS_METADATA_FIELD_IP_HEADER_SIZE","features":[18]},{"name":"FWPS_METADATA_FIELD_LOCAL_REDIRECT_TARGET_PID","features":[18]},{"name":"FWPS_METADATA_FIELD_ORIGINAL_DESTINATION","features":[18]},{"name":"FWPS_METADATA_FIELD_PACKET_DIRECTION","features":[18]},{"name":"FWPS_METADATA_FIELD_PACKET_SYSTEM_CRITICAL","features":[18]},{"name":"FWPS_METADATA_FIELD_PARENT_ENDPOINT_HANDLE","features":[18]},{"name":"FWPS_METADATA_FIELD_PATH_MTU","features":[18]},{"name":"FWPS_METADATA_FIELD_PROCESS_ID","features":[18]},{"name":"FWPS_METADATA_FIELD_PROCESS_PATH","features":[18]},{"name":"FWPS_METADATA_FIELD_REDIRECT_RECORD_HANDLE","features":[18]},{"name":"FWPS_METADATA_FIELD_REMOTE_SCOPE_ID","features":[18]},{"name":"FWPS_METADATA_FIELD_RESERVED","features":[18]},{"name":"FWPS_METADATA_FIELD_SOURCE_INTERFACE_INDEX","features":[18]},{"name":"FWPS_METADATA_FIELD_SUB_PROCESS_TAG","features":[18]},{"name":"FWPS_METADATA_FIELD_SYSTEM_FLAGS","features":[18]},{"name":"FWPS_METADATA_FIELD_TOKEN","features":[18]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_CONTROL_DATA","features":[18]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_ENDPOINT_HANDLE","features":[18]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_INCLUDE_HEADER","features":[18]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_SIZE","features":[18]},{"name":"FWPS_RIGHT_ACTION_WRITE","features":[18]},{"name":"FWP_ACTION_BLOCK","features":[18]},{"name":"FWP_ACTION_CALLOUT_INSPECTION","features":[18]},{"name":"FWP_ACTION_CALLOUT_TERMINATING","features":[18]},{"name":"FWP_ACTION_CALLOUT_UNKNOWN","features":[18]},{"name":"FWP_ACTION_CONTINUE","features":[18]},{"name":"FWP_ACTION_FLAG_CALLOUT","features":[18]},{"name":"FWP_ACTION_FLAG_NON_TERMINATING","features":[18]},{"name":"FWP_ACTION_FLAG_TERMINATING","features":[18]},{"name":"FWP_ACTION_NONE","features":[18]},{"name":"FWP_ACTION_NONE_NO_MATCH","features":[18]},{"name":"FWP_ACTION_PERMIT","features":[18]},{"name":"FWP_ACTION_TYPE","features":[18]},{"name":"FWP_ACTRL_MATCH_FILTER","features":[18]},{"name":"FWP_AF","features":[18]},{"name":"FWP_AF_ETHER","features":[18]},{"name":"FWP_AF_INET","features":[18]},{"name":"FWP_AF_INET6","features":[18]},{"name":"FWP_AF_NONE","features":[18]},{"name":"FWP_BYTEMAP_ARRAY64_SIZE","features":[18]},{"name":"FWP_BYTE_ARRAY16","features":[18]},{"name":"FWP_BYTE_ARRAY16_TYPE","features":[18]},{"name":"FWP_BYTE_ARRAY6","features":[18]},{"name":"FWP_BYTE_ARRAY6_SIZE","features":[18]},{"name":"FWP_BYTE_ARRAY6_TYPE","features":[18]},{"name":"FWP_BYTE_BLOB","features":[18]},{"name":"FWP_BYTE_BLOB_TYPE","features":[18]},{"name":"FWP_CALLOUT_FLAG_ALLOW_L2_BATCH_CLASSIFY","features":[18]},{"name":"FWP_CALLOUT_FLAG_ALLOW_MID_STREAM_INSPECTION","features":[18]},{"name":"FWP_CALLOUT_FLAG_ALLOW_OFFLOAD","features":[18]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RECLASSIFY","features":[18]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RSC","features":[18]},{"name":"FWP_CALLOUT_FLAG_ALLOW_URO","features":[18]},{"name":"FWP_CALLOUT_FLAG_ALLOW_USO","features":[18]},{"name":"FWP_CALLOUT_FLAG_CONDITIONAL_ON_FLOW","features":[18]},{"name":"FWP_CALLOUT_FLAG_ENABLE_COMMIT_ADD_NOTIFY","features":[18]},{"name":"FWP_CALLOUT_FLAG_RESERVED1","features":[18]},{"name":"FWP_CALLOUT_FLAG_RESERVED2","features":[18]},{"name":"FWP_CLASSIFY_OPTION_LOCAL_ONLY_MAPPING","features":[18]},{"name":"FWP_CLASSIFY_OPTION_LOOSE_SOURCE_MAPPING","features":[18]},{"name":"FWP_CLASSIFY_OPTION_MAX","features":[18]},{"name":"FWP_CLASSIFY_OPTION_MCAST_BCAST_LIFETIME","features":[18]},{"name":"FWP_CLASSIFY_OPTION_MULTICAST_STATE","features":[18]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_MM_POLICY_KEY","features":[18]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_QM_POLICY_KEY","features":[18]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_SECURITY_FLAGS","features":[18]},{"name":"FWP_CLASSIFY_OPTION_TYPE","features":[18]},{"name":"FWP_CLASSIFY_OPTION_UNICAST_LIFETIME","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_APPCONTAINER_LOOPBACK","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_AUTH_FW","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_CONNECTION_REDIRECTED","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT_GROUP","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_HONORING_POLICY_AUTHORIZE","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_IMPLICIT_BIND","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_INBOUND_PASS_THRU","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_NATT_RECLASSIFY","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_SECURED","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_LOOPBACK","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_NAME_APP_SPECIFIED","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_NON_APPCONTAINER_LOOPBACK","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_OUTBOUND_PASS_THRU","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_PROMISCUOUS","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_PROXY_CONNECTION","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_RAW_ENDPOINT","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_REASSEMBLED","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_REAUTHORIZE","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_RECLASSIFY","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_RESERVED","features":[18]},{"name":"FWP_CONDITION_FLAG_IS_WILDCARD_BIND","features":[18]},{"name":"FWP_CONDITION_FLAG_REQUIRES_ALE_CLASSIFY","features":[18]},{"name":"FWP_CONDITION_L2_IF_CONNECTOR_PRESENT","features":[18]},{"name":"FWP_CONDITION_L2_IS_IP_FRAGMENT_GROUP","features":[18]},{"name":"FWP_CONDITION_L2_IS_MALFORMED_PACKET","features":[18]},{"name":"FWP_CONDITION_L2_IS_MOBILE_BROADBAND","features":[18]},{"name":"FWP_CONDITION_L2_IS_NATIVE_ETHERNET","features":[18]},{"name":"FWP_CONDITION_L2_IS_VM2VM","features":[18]},{"name":"FWP_CONDITION_L2_IS_WIFI","features":[18]},{"name":"FWP_CONDITION_L2_IS_WIFI_DIRECT_DATA","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CHECK_OFFLOAD","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CLASSIFY_COMPLETION","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_EDP_POLICY_CHANGED","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_IPSEC_PROPERTIES_CHANGED","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_MID_STREAM_INSPECTION","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_ARRIVAL_INTERFACE","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_INBOUND_MCAST_BCAST_PACKET","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_NEXTHOP_INTERFACE","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_POLICY_CHANGE","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROFILE_CROSSING","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROXY_HANDLE_CHANGED","features":[18]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_SOCKET_PROPERTY_CHANGED","features":[18]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_ALLOW_EDGE_TRAFFIC","features":[18]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_DENY_EDGE_TRAFFIC","features":[18]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_IS_SYSTEM_PORT_RPC","features":[18]},{"name":"FWP_CONDITION_VALUE0","features":[1,18,4]},{"name":"FWP_DATA_TYPE","features":[18]},{"name":"FWP_DATA_TYPE_MAX","features":[18]},{"name":"FWP_DIRECTION","features":[18]},{"name":"FWP_DIRECTION_INBOUND","features":[18]},{"name":"FWP_DIRECTION_MAX","features":[18]},{"name":"FWP_DIRECTION_OUTBOUND","features":[18]},{"name":"FWP_DOUBLE","features":[18]},{"name":"FWP_EMPTY","features":[18]},{"name":"FWP_ETHER_ENCAP_METHOD","features":[18]},{"name":"FWP_ETHER_ENCAP_METHOD_ETHER_V2","features":[18]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP","features":[18]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP_W_OUI_ZERO","features":[18]},{"name":"FWP_FILTER_ENUM_FLAG_BEST_TERMINATING_MATCH","features":[18]},{"name":"FWP_FILTER_ENUM_FLAG_BOOTTIME_ONLY","features":[18]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_BOOTTIME","features":[18]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_DISABLED","features":[18]},{"name":"FWP_FILTER_ENUM_FLAG_RESERVED1","features":[18]},{"name":"FWP_FILTER_ENUM_FLAG_SORTED","features":[18]},{"name":"FWP_FILTER_ENUM_FULLY_CONTAINED","features":[18]},{"name":"FWP_FILTER_ENUM_OVERLAPPING","features":[18]},{"name":"FWP_FILTER_ENUM_TYPE","features":[18]},{"name":"FWP_FILTER_ENUM_TYPE_MAX","features":[18]},{"name":"FWP_FLOAT","features":[18]},{"name":"FWP_INT16","features":[18]},{"name":"FWP_INT32","features":[18]},{"name":"FWP_INT64","features":[18]},{"name":"FWP_INT8","features":[18]},{"name":"FWP_IP_VERSION","features":[18]},{"name":"FWP_IP_VERSION_MAX","features":[18]},{"name":"FWP_IP_VERSION_NONE","features":[18]},{"name":"FWP_IP_VERSION_V4","features":[18]},{"name":"FWP_IP_VERSION_V6","features":[18]},{"name":"FWP_MATCH_EQUAL","features":[18]},{"name":"FWP_MATCH_EQUAL_CASE_INSENSITIVE","features":[18]},{"name":"FWP_MATCH_FLAGS_ALL_SET","features":[18]},{"name":"FWP_MATCH_FLAGS_ANY_SET","features":[18]},{"name":"FWP_MATCH_FLAGS_NONE_SET","features":[18]},{"name":"FWP_MATCH_GREATER","features":[18]},{"name":"FWP_MATCH_GREATER_OR_EQUAL","features":[18]},{"name":"FWP_MATCH_LESS","features":[18]},{"name":"FWP_MATCH_LESS_OR_EQUAL","features":[18]},{"name":"FWP_MATCH_NOT_EQUAL","features":[18]},{"name":"FWP_MATCH_NOT_PREFIX","features":[18]},{"name":"FWP_MATCH_PREFIX","features":[18]},{"name":"FWP_MATCH_RANGE","features":[18]},{"name":"FWP_MATCH_TYPE","features":[18]},{"name":"FWP_MATCH_TYPE_MAX","features":[18]},{"name":"FWP_NETWORK_CONNECTION_POLICY_MAX","features":[18]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP","features":[18]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP_INTERFACE","features":[18]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE","features":[18]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SOURCE_ADDRESS","features":[18]},{"name":"FWP_OPTION_VALUE_ALLOW_GLOBAL_MULTICAST_STATE","features":[18]},{"name":"FWP_OPTION_VALUE_ALLOW_MULTICAST_STATE","features":[18]},{"name":"FWP_OPTION_VALUE_DENY_MULTICAST_STATE","features":[18]},{"name":"FWP_OPTION_VALUE_DISABLE_LOCAL_ONLY_MAPPING","features":[18]},{"name":"FWP_OPTION_VALUE_DISABLE_LOOSE_SOURCE","features":[18]},{"name":"FWP_OPTION_VALUE_ENABLE_LOCAL_ONLY_MAPPING","features":[18]},{"name":"FWP_OPTION_VALUE_ENABLE_LOOSE_SOURCE","features":[18]},{"name":"FWP_RANGE0","features":[1,18,4]},{"name":"FWP_RANGE_TYPE","features":[18]},{"name":"FWP_SECURITY_DESCRIPTOR_TYPE","features":[18]},{"name":"FWP_SID","features":[18]},{"name":"FWP_SINGLE_DATA_TYPE_MAX","features":[18]},{"name":"FWP_TOKEN_ACCESS_INFORMATION_TYPE","features":[18]},{"name":"FWP_TOKEN_INFORMATION","features":[1,18,4]},{"name":"FWP_TOKEN_INFORMATION_TYPE","features":[18]},{"name":"FWP_UINT16","features":[18]},{"name":"FWP_UINT32","features":[18]},{"name":"FWP_UINT64","features":[18]},{"name":"FWP_UINT8","features":[18]},{"name":"FWP_UNICODE_STRING_TYPE","features":[18]},{"name":"FWP_V4_ADDR_AND_MASK","features":[18]},{"name":"FWP_V4_ADDR_MASK","features":[18]},{"name":"FWP_V6_ADDR_AND_MASK","features":[18]},{"name":"FWP_V6_ADDR_MASK","features":[18]},{"name":"FWP_V6_ADDR_SIZE","features":[18]},{"name":"FWP_VALUE0","features":[1,18,4]},{"name":"FWP_VSWITCH_NETWORK_TYPE","features":[18]},{"name":"FWP_VSWITCH_NETWORK_TYPE_EXTERNAL","features":[18]},{"name":"FWP_VSWITCH_NETWORK_TYPE_INTERNAL","features":[18]},{"name":"FWP_VSWITCH_NETWORK_TYPE_PRIVATE","features":[18]},{"name":"FWP_VSWITCH_NETWORK_TYPE_UNKNOWN","features":[18]},{"name":"FwpmCalloutAdd0","features":[1,18,4]},{"name":"FwpmCalloutCreateEnumHandle0","features":[1,18]},{"name":"FwpmCalloutDeleteById0","features":[1,18]},{"name":"FwpmCalloutDeleteByKey0","features":[1,18]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[1,18]},{"name":"FwpmCalloutEnum0","features":[1,18]},{"name":"FwpmCalloutGetById0","features":[1,18]},{"name":"FwpmCalloutGetByKey0","features":[1,18]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmCalloutSubscribeChanges0","features":[1,18]},{"name":"FwpmCalloutSubscriptionsGet0","features":[1,18]},{"name":"FwpmCalloutUnsubscribeChanges0","features":[1,18]},{"name":"FwpmConnectionCreateEnumHandle0","features":[1,18]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[1,18]},{"name":"FwpmConnectionEnum0","features":[1,18]},{"name":"FwpmConnectionGetById0","features":[1,18]},{"name":"FwpmConnectionGetSecurityInfo0","features":[1,18,4]},{"name":"FwpmConnectionSetSecurityInfo0","features":[1,18,4]},{"name":"FwpmConnectionSubscribe0","features":[1,18]},{"name":"FwpmConnectionUnsubscribe0","features":[1,18]},{"name":"FwpmDynamicKeywordSubscribe0","features":[1,18]},{"name":"FwpmDynamicKeywordUnsubscribe0","features":[1,18]},{"name":"FwpmEngineClose0","features":[1,18]},{"name":"FwpmEngineGetOption0","features":[1,18,4]},{"name":"FwpmEngineGetSecurityInfo0","features":[1,18,4]},{"name":"FwpmEngineOpen0","features":[1,18,4,19]},{"name":"FwpmEngineSetOption0","features":[1,18,4]},{"name":"FwpmEngineSetSecurityInfo0","features":[1,18,4]},{"name":"FwpmFilterAdd0","features":[1,18,4]},{"name":"FwpmFilterCreateEnumHandle0","features":[1,18,4]},{"name":"FwpmFilterDeleteById0","features":[1,18]},{"name":"FwpmFilterDeleteByKey0","features":[1,18]},{"name":"FwpmFilterDestroyEnumHandle0","features":[1,18]},{"name":"FwpmFilterEnum0","features":[1,18,4]},{"name":"FwpmFilterGetById0","features":[1,18,4]},{"name":"FwpmFilterGetByKey0","features":[1,18,4]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmFilterSubscribeChanges0","features":[1,18,4]},{"name":"FwpmFilterSubscriptionsGet0","features":[1,18,4]},{"name":"FwpmFilterUnsubscribeChanges0","features":[1,18]},{"name":"FwpmFreeMemory0","features":[18]},{"name":"FwpmGetAppIdFromFileName0","features":[18]},{"name":"FwpmIPsecTunnelAdd0","features":[1,18,4]},{"name":"FwpmIPsecTunnelAdd1","features":[1,18,4]},{"name":"FwpmIPsecTunnelAdd2","features":[1,18,4]},{"name":"FwpmIPsecTunnelAdd3","features":[1,18,4]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[1,18]},{"name":"FwpmLayerCreateEnumHandle0","features":[1,18]},{"name":"FwpmLayerDestroyEnumHandle0","features":[1,18]},{"name":"FwpmLayerEnum0","features":[1,18]},{"name":"FwpmLayerGetById0","features":[1,18]},{"name":"FwpmLayerGetByKey0","features":[1,18]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmNetEventCreateEnumHandle0","features":[1,18,4]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[1,18]},{"name":"FwpmNetEventEnum0","features":[1,18,4]},{"name":"FwpmNetEventEnum1","features":[1,18,4]},{"name":"FwpmNetEventEnum2","features":[1,18,4]},{"name":"FwpmNetEventEnum3","features":[1,18,4]},{"name":"FwpmNetEventEnum4","features":[1,18,4]},{"name":"FwpmNetEventEnum5","features":[1,18,4]},{"name":"FwpmNetEventSubscribe0","features":[1,18,4]},{"name":"FwpmNetEventSubscribe1","features":[1,18,4]},{"name":"FwpmNetEventSubscribe2","features":[1,18,4]},{"name":"FwpmNetEventSubscribe3","features":[1,18,4]},{"name":"FwpmNetEventSubscribe4","features":[1,18,4]},{"name":"FwpmNetEventSubscriptionsGet0","features":[1,18,4]},{"name":"FwpmNetEventUnsubscribe0","features":[1,18]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[1,18,4]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[1,18,4]},{"name":"FwpmProviderAdd0","features":[1,18,4]},{"name":"FwpmProviderContextAdd0","features":[1,18,4]},{"name":"FwpmProviderContextAdd1","features":[1,18,4]},{"name":"FwpmProviderContextAdd2","features":[1,18,4]},{"name":"FwpmProviderContextAdd3","features":[1,18,4]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[1,18]},{"name":"FwpmProviderContextDeleteById0","features":[1,18]},{"name":"FwpmProviderContextDeleteByKey0","features":[1,18]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[1,18]},{"name":"FwpmProviderContextEnum0","features":[1,18,4]},{"name":"FwpmProviderContextEnum1","features":[1,18,4]},{"name":"FwpmProviderContextEnum2","features":[1,18,4]},{"name":"FwpmProviderContextEnum3","features":[1,18,4]},{"name":"FwpmProviderContextGetById0","features":[1,18,4]},{"name":"FwpmProviderContextGetById1","features":[1,18,4]},{"name":"FwpmProviderContextGetById2","features":[1,18,4]},{"name":"FwpmProviderContextGetById3","features":[1,18,4]},{"name":"FwpmProviderContextGetByKey0","features":[1,18,4]},{"name":"FwpmProviderContextGetByKey1","features":[1,18,4]},{"name":"FwpmProviderContextGetByKey2","features":[1,18,4]},{"name":"FwpmProviderContextGetByKey3","features":[1,18,4]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmProviderContextSubscribeChanges0","features":[1,18]},{"name":"FwpmProviderContextSubscriptionsGet0","features":[1,18]},{"name":"FwpmProviderContextUnsubscribeChanges0","features":[1,18]},{"name":"FwpmProviderCreateEnumHandle0","features":[1,18]},{"name":"FwpmProviderDeleteByKey0","features":[1,18]},{"name":"FwpmProviderDestroyEnumHandle0","features":[1,18]},{"name":"FwpmProviderEnum0","features":[1,18]},{"name":"FwpmProviderGetByKey0","features":[1,18]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmProviderSubscribeChanges0","features":[1,18]},{"name":"FwpmProviderSubscriptionsGet0","features":[1,18]},{"name":"FwpmProviderUnsubscribeChanges0","features":[1,18]},{"name":"FwpmSessionCreateEnumHandle0","features":[1,18]},{"name":"FwpmSessionDestroyEnumHandle0","features":[1,18]},{"name":"FwpmSessionEnum0","features":[1,18,4]},{"name":"FwpmSubLayerAdd0","features":[1,18,4]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[1,18]},{"name":"FwpmSubLayerDeleteByKey0","features":[1,18]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[1,18]},{"name":"FwpmSubLayerEnum0","features":[1,18]},{"name":"FwpmSubLayerGetByKey0","features":[1,18]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[1,18,4]},{"name":"FwpmSubLayerSubscribeChanges0","features":[1,18]},{"name":"FwpmSubLayerSubscriptionsGet0","features":[1,18]},{"name":"FwpmSubLayerUnsubscribeChanges0","features":[1,18]},{"name":"FwpmSystemPortsGet0","features":[1,18]},{"name":"FwpmSystemPortsSubscribe0","features":[1,18]},{"name":"FwpmSystemPortsUnsubscribe0","features":[1,18]},{"name":"FwpmTransactionAbort0","features":[1,18]},{"name":"FwpmTransactionBegin0","features":[1,18]},{"name":"FwpmTransactionCommit0","features":[1,18]},{"name":"FwpmvSwitchEventSubscribe0","features":[1,18]},{"name":"FwpmvSwitchEventUnsubscribe0","features":[1,18]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[1,18,4]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[1,18,4]},{"name":"IKEEXT_ANONYMOUS","features":[18]},{"name":"IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE","features":[18]},{"name":"IKEEXT_AUTHENTICATION_METHOD0","features":[18]},{"name":"IKEEXT_AUTHENTICATION_METHOD1","features":[18]},{"name":"IKEEXT_AUTHENTICATION_METHOD2","features":[18]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE","features":[18]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE_MAX","features":[18]},{"name":"IKEEXT_CERTIFICATE","features":[18]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION0","features":[18]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION1","features":[18]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION2","features":[18]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL0","features":[18]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL1","features":[18]},{"name":"IKEEXT_CERTIFICATE_CRITERIA0","features":[18]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P256","features":[18]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P384","features":[18]},{"name":"IKEEXT_CERT_AUTH","features":[18]},{"name":"IKEEXT_CERT_AUTH_ALLOW_HTTP_CERT_LOOKUP","features":[18]},{"name":"IKEEXT_CERT_AUTH_DISABLE_SSL_CERT_VALIDATION","features":[18]},{"name":"IKEEXT_CERT_AUTH_ENABLE_CRL_CHECK_STRONG","features":[18]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_CRL_CHECK","features":[18]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_REQUEST_PAYLOAD","features":[18]},{"name":"IKEEXT_CERT_AUTH_FLAG_SSL_ONE_WAY","features":[18]},{"name":"IKEEXT_CERT_AUTH_URL_CONTAINS_BUNDLE","features":[18]},{"name":"IKEEXT_CERT_CONFIG_ENTERPRISE_STORE","features":[18]},{"name":"IKEEXT_CERT_CONFIG_EXPLICIT_TRUST_LIST","features":[18]},{"name":"IKEEXT_CERT_CONFIG_TRUSTED_ROOT_STORE","features":[18]},{"name":"IKEEXT_CERT_CONFIG_TYPE","features":[18]},{"name":"IKEEXT_CERT_CONFIG_TYPE_MAX","features":[18]},{"name":"IKEEXT_CERT_CONFIG_UNSPECIFIED","features":[18]},{"name":"IKEEXT_CERT_CREDENTIAL_FLAG_NAP_CERT","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_CN","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_DC","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_DNS","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE_MAX","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_O","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_OU","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_RFC822","features":[18]},{"name":"IKEEXT_CERT_CRITERIA_UPN","features":[18]},{"name":"IKEEXT_CERT_EKUS0","features":[18]},{"name":"IKEEXT_CERT_FLAGS","features":[18]},{"name":"IKEEXT_CERT_FLAG_DISABLE_REQUEST_PAYLOAD","features":[18]},{"name":"IKEEXT_CERT_FLAG_ENABLE_ACCOUNT_MAPPING","features":[18]},{"name":"IKEEXT_CERT_FLAG_FOLLOW_RENEWAL_CERTIFICATE","features":[18]},{"name":"IKEEXT_CERT_FLAG_IGNORE_INIT_CERT_MAP_FAILURE","features":[18]},{"name":"IKEEXT_CERT_FLAG_INTERMEDIATE_CA","features":[18]},{"name":"IKEEXT_CERT_FLAG_PREFER_NAP_CERTIFICATE_OUTBOUND","features":[18]},{"name":"IKEEXT_CERT_FLAG_SELECT_NAP_CERTIFICATE","features":[18]},{"name":"IKEEXT_CERT_FLAG_USE_NAP_CERTIFICATE","features":[18]},{"name":"IKEEXT_CERT_FLAG_VERIFY_NAP_CERTIFICATE","features":[18]},{"name":"IKEEXT_CERT_HASH_LEN","features":[18]},{"name":"IKEEXT_CERT_NAME0","features":[18]},{"name":"IKEEXT_CERT_ROOT_CONFIG0","features":[18]},{"name":"IKEEXT_CIPHER_3DES","features":[18]},{"name":"IKEEXT_CIPHER_AES_128","features":[18]},{"name":"IKEEXT_CIPHER_AES_192","features":[18]},{"name":"IKEEXT_CIPHER_AES_256","features":[18]},{"name":"IKEEXT_CIPHER_AES_GCM_128_16ICV","features":[18]},{"name":"IKEEXT_CIPHER_AES_GCM_256_16ICV","features":[18]},{"name":"IKEEXT_CIPHER_ALGORITHM0","features":[18]},{"name":"IKEEXT_CIPHER_DES","features":[18]},{"name":"IKEEXT_CIPHER_TYPE","features":[18]},{"name":"IKEEXT_CIPHER_TYPE_MAX","features":[18]},{"name":"IKEEXT_COMMON_STATISTICS0","features":[18]},{"name":"IKEEXT_COMMON_STATISTICS1","features":[18]},{"name":"IKEEXT_COOKIE_PAIR0","features":[18]},{"name":"IKEEXT_CREDENTIAL0","features":[18]},{"name":"IKEEXT_CREDENTIAL1","features":[18]},{"name":"IKEEXT_CREDENTIAL2","features":[18]},{"name":"IKEEXT_CREDENTIALS0","features":[18]},{"name":"IKEEXT_CREDENTIALS1","features":[18]},{"name":"IKEEXT_CREDENTIALS2","features":[18]},{"name":"IKEEXT_CREDENTIAL_PAIR0","features":[18]},{"name":"IKEEXT_CREDENTIAL_PAIR1","features":[18]},{"name":"IKEEXT_CREDENTIAL_PAIR2","features":[18]},{"name":"IKEEXT_DH_ECP_256","features":[18]},{"name":"IKEEXT_DH_ECP_384","features":[18]},{"name":"IKEEXT_DH_GROUP","features":[18]},{"name":"IKEEXT_DH_GROUP_1","features":[18]},{"name":"IKEEXT_DH_GROUP_14","features":[18]},{"name":"IKEEXT_DH_GROUP_2","features":[18]},{"name":"IKEEXT_DH_GROUP_2048","features":[18]},{"name":"IKEEXT_DH_GROUP_24","features":[18]},{"name":"IKEEXT_DH_GROUP_MAX","features":[18]},{"name":"IKEEXT_DH_GROUP_NONE","features":[18]},{"name":"IKEEXT_EAP","features":[18]},{"name":"IKEEXT_EAP_AUTHENTICATION0","features":[18]},{"name":"IKEEXT_EAP_AUTHENTICATION_FLAGS","features":[18]},{"name":"IKEEXT_EAP_FLAG_LOCAL_AUTH_ONLY","features":[18]},{"name":"IKEEXT_EAP_FLAG_REMOTE_AUTH_ONLY","features":[18]},{"name":"IKEEXT_EM_POLICY0","features":[18]},{"name":"IKEEXT_EM_POLICY1","features":[18]},{"name":"IKEEXT_EM_POLICY2","features":[18]},{"name":"IKEEXT_EM_SA_STATE","features":[18]},{"name":"IKEEXT_EM_SA_STATE_AUTH_COMPLETE","features":[18]},{"name":"IKEEXT_EM_SA_STATE_COMPLETE","features":[18]},{"name":"IKEEXT_EM_SA_STATE_FINAL","features":[18]},{"name":"IKEEXT_EM_SA_STATE_MAX","features":[18]},{"name":"IKEEXT_EM_SA_STATE_NONE","features":[18]},{"name":"IKEEXT_EM_SA_STATE_SENT_ATTS","features":[18]},{"name":"IKEEXT_EM_SA_STATE_SSPI_SENT","features":[18]},{"name":"IKEEXT_IMPERSONATION_MAX","features":[18]},{"name":"IKEEXT_IMPERSONATION_NONE","features":[18]},{"name":"IKEEXT_IMPERSONATION_SOCKET_PRINCIPAL","features":[18]},{"name":"IKEEXT_INTEGRITY_ALGORITHM0","features":[18]},{"name":"IKEEXT_INTEGRITY_MD5","features":[18]},{"name":"IKEEXT_INTEGRITY_SHA1","features":[18]},{"name":"IKEEXT_INTEGRITY_SHA_256","features":[18]},{"name":"IKEEXT_INTEGRITY_SHA_384","features":[18]},{"name":"IKEEXT_INTEGRITY_TYPE","features":[18]},{"name":"IKEEXT_INTEGRITY_TYPE_MAX","features":[18]},{"name":"IKEEXT_IPV6_CGA","features":[18]},{"name":"IKEEXT_IPV6_CGA_AUTHENTICATION0","features":[18]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS0","features":[18]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS1","features":[18]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS0","features":[18]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS1","features":[18]},{"name":"IKEEXT_KERBEROS","features":[18]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION0","features":[18]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION1","features":[18]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION_FLAGS","features":[18]},{"name":"IKEEXT_KERB_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[18]},{"name":"IKEEXT_KERB_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[18]},{"name":"IKEEXT_KERB_AUTH_FORCE_PROXY_ON_INITIATOR","features":[18]},{"name":"IKEEXT_KEYMODULE_STATISTICS0","features":[18]},{"name":"IKEEXT_KEYMODULE_STATISTICS1","features":[18]},{"name":"IKEEXT_KEY_MODULE_AUTHIP","features":[18]},{"name":"IKEEXT_KEY_MODULE_IKE","features":[18]},{"name":"IKEEXT_KEY_MODULE_IKEV2","features":[18]},{"name":"IKEEXT_KEY_MODULE_MAX","features":[18]},{"name":"IKEEXT_KEY_MODULE_TYPE","features":[18]},{"name":"IKEEXT_MM_SA_STATE","features":[18]},{"name":"IKEEXT_MM_SA_STATE_COMPLETE","features":[18]},{"name":"IKEEXT_MM_SA_STATE_FINAL","features":[18]},{"name":"IKEEXT_MM_SA_STATE_FINAL_SENT","features":[18]},{"name":"IKEEXT_MM_SA_STATE_MAX","features":[18]},{"name":"IKEEXT_MM_SA_STATE_NONE","features":[18]},{"name":"IKEEXT_MM_SA_STATE_SA_SENT","features":[18]},{"name":"IKEEXT_MM_SA_STATE_SSPI_SENT","features":[18]},{"name":"IKEEXT_NAME_CREDENTIAL0","features":[18]},{"name":"IKEEXT_NTLM_V2","features":[18]},{"name":"IKEEXT_NTLM_V2_AUTHENTICATION0","features":[18]},{"name":"IKEEXT_NTLM_V2_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[18]},{"name":"IKEEXT_POLICY0","features":[18]},{"name":"IKEEXT_POLICY1","features":[18]},{"name":"IKEEXT_POLICY2","features":[18]},{"name":"IKEEXT_POLICY_ENABLE_IKEV2_FRAGMENTATION","features":[18]},{"name":"IKEEXT_POLICY_FLAG","features":[18]},{"name":"IKEEXT_POLICY_FLAG_DISABLE_DIAGNOSTICS","features":[18]},{"name":"IKEEXT_POLICY_FLAG_ENABLE_OPTIONAL_DH","features":[18]},{"name":"IKEEXT_POLICY_FLAG_IMS_VPN","features":[18]},{"name":"IKEEXT_POLICY_FLAG_MOBIKE_NOT_SUPPORTED","features":[18]},{"name":"IKEEXT_POLICY_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[18]},{"name":"IKEEXT_POLICY_FLAG_NO_MACHINE_LUID_VERIFY","features":[18]},{"name":"IKEEXT_POLICY_FLAG_SITE_TO_SITE","features":[18]},{"name":"IKEEXT_POLICY_SUPPORT_LOW_POWER_MODE","features":[18]},{"name":"IKEEXT_PRESHARED_KEY","features":[18]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION0","features":[18]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION1","features":[18]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS","features":[18]},{"name":"IKEEXT_PROPOSAL0","features":[18]},{"name":"IKEEXT_PSK_FLAG_LOCAL_AUTH_ONLY","features":[18]},{"name":"IKEEXT_PSK_FLAG_REMOTE_AUTH_ONLY","features":[18]},{"name":"IKEEXT_QM_SA_STATE","features":[18]},{"name":"IKEEXT_QM_SA_STATE_COMPLETE","features":[18]},{"name":"IKEEXT_QM_SA_STATE_FINAL","features":[18]},{"name":"IKEEXT_QM_SA_STATE_INITIAL","features":[18]},{"name":"IKEEXT_QM_SA_STATE_MAX","features":[18]},{"name":"IKEEXT_QM_SA_STATE_NONE","features":[18]},{"name":"IKEEXT_RESERVED","features":[18]},{"name":"IKEEXT_RESERVED_AUTHENTICATION0","features":[18]},{"name":"IKEEXT_RESERVED_AUTHENTICATION_FLAGS","features":[18]},{"name":"IKEEXT_RESERVED_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[18]},{"name":"IKEEXT_SA_DETAILS0","features":[18]},{"name":"IKEEXT_SA_DETAILS1","features":[18]},{"name":"IKEEXT_SA_DETAILS2","features":[18]},{"name":"IKEEXT_SA_ENUM_TEMPLATE0","features":[1,18,4]},{"name":"IKEEXT_SA_ROLE","features":[18]},{"name":"IKEEXT_SA_ROLE_INITIATOR","features":[18]},{"name":"IKEEXT_SA_ROLE_MAX","features":[18]},{"name":"IKEEXT_SA_ROLE_RESPONDER","features":[18]},{"name":"IKEEXT_SSL","features":[18]},{"name":"IKEEXT_SSL_ECDSA_P256","features":[18]},{"name":"IKEEXT_SSL_ECDSA_P384","features":[18]},{"name":"IKEEXT_STATISTICS0","features":[18]},{"name":"IKEEXT_STATISTICS1","features":[18]},{"name":"IKEEXT_TRAFFIC0","features":[18]},{"name":"IPSEC_ADDRESS_INFO0","features":[18]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS0","features":[18]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS1","features":[18]},{"name":"IPSEC_AGGREGATE_SA_STATISTICS0","features":[18]},{"name":"IPSEC_AH_DROP_PACKET_STATISTICS0","features":[18]},{"name":"IPSEC_AUTH_AES_128","features":[18]},{"name":"IPSEC_AUTH_AES_192","features":[18]},{"name":"IPSEC_AUTH_AES_256","features":[18]},{"name":"IPSEC_AUTH_AND_CIPHER_TRANSFORM0","features":[18]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_128","features":[18]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_192","features":[18]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_256","features":[18]},{"name":"IPSEC_AUTH_CONFIG_HMAC_MD5_96","features":[18]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_1_96","features":[18]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_256_128","features":[18]},{"name":"IPSEC_AUTH_CONFIG_MAX","features":[18]},{"name":"IPSEC_AUTH_MAX","features":[18]},{"name":"IPSEC_AUTH_MD5","features":[18]},{"name":"IPSEC_AUTH_SHA_1","features":[18]},{"name":"IPSEC_AUTH_SHA_256","features":[18]},{"name":"IPSEC_AUTH_TRANSFORM0","features":[18]},{"name":"IPSEC_AUTH_TRANSFORM_ID0","features":[18]},{"name":"IPSEC_AUTH_TYPE","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_CBC_3DES","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_128","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_192","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_256","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_CBC_DES","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_128","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_192","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_256","features":[18]},{"name":"IPSEC_CIPHER_CONFIG_MAX","features":[18]},{"name":"IPSEC_CIPHER_TRANSFORM0","features":[18]},{"name":"IPSEC_CIPHER_TRANSFORM_ID0","features":[18]},{"name":"IPSEC_CIPHER_TYPE","features":[18]},{"name":"IPSEC_CIPHER_TYPE_3DES","features":[18]},{"name":"IPSEC_CIPHER_TYPE_AES_128","features":[18]},{"name":"IPSEC_CIPHER_TYPE_AES_192","features":[18]},{"name":"IPSEC_CIPHER_TYPE_AES_256","features":[18]},{"name":"IPSEC_CIPHER_TYPE_DES","features":[18]},{"name":"IPSEC_CIPHER_TYPE_MAX","features":[18]},{"name":"IPSEC_DOSP_DSCP_DISABLE_VALUE","features":[18]},{"name":"IPSEC_DOSP_FLAGS","features":[18]},{"name":"IPSEC_DOSP_FLAG_DISABLE_AUTHIP","features":[18]},{"name":"IPSEC_DOSP_FLAG_DISABLE_DEFAULT_BLOCK","features":[18]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV1","features":[18]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV2","features":[18]},{"name":"IPSEC_DOSP_FLAG_FILTER_BLOCK","features":[18]},{"name":"IPSEC_DOSP_FLAG_FILTER_EXEMPT","features":[18]},{"name":"IPSEC_DOSP_OPTIONS0","features":[18]},{"name":"IPSEC_DOSP_RATE_LIMIT_DISABLE_VALUE","features":[18]},{"name":"IPSEC_DOSP_STATE0","features":[18]},{"name":"IPSEC_DOSP_STATE_ENUM_TEMPLATE0","features":[18]},{"name":"IPSEC_DOSP_STATISTICS0","features":[18]},{"name":"IPSEC_ESP_DROP_PACKET_STATISTICS0","features":[18]},{"name":"IPSEC_FAILURE_ME","features":[18]},{"name":"IPSEC_FAILURE_NONE","features":[18]},{"name":"IPSEC_FAILURE_PEER","features":[18]},{"name":"IPSEC_FAILURE_POINT","features":[18]},{"name":"IPSEC_FAILURE_POINT_MAX","features":[18]},{"name":"IPSEC_GETSPI0","features":[18]},{"name":"IPSEC_GETSPI1","features":[18]},{"name":"IPSEC_ID0","features":[18]},{"name":"IPSEC_KEYING_POLICY0","features":[18]},{"name":"IPSEC_KEYING_POLICY1","features":[18]},{"name":"IPSEC_KEYING_POLICY_FLAG_TERMINATING_MATCH","features":[18]},{"name":"IPSEC_KEYMODULE_STATE0","features":[18]},{"name":"IPSEC_KEY_MANAGER0","features":[18]},{"name":"IPSEC_KEY_MANAGER_CALLBACKS0","features":[1,18,4]},{"name":"IPSEC_KEY_MANAGER_DICTATE_KEY0","features":[1,18,4]},{"name":"IPSEC_KEY_MANAGER_FLAG_DICTATE_KEY","features":[18]},{"name":"IPSEC_KEY_MANAGER_KEY_DICTATION_CHECK0","features":[1,18]},{"name":"IPSEC_KEY_MANAGER_NOTIFY_KEY0","features":[1,18,4]},{"name":"IPSEC_PFS_1","features":[18]},{"name":"IPSEC_PFS_14","features":[18]},{"name":"IPSEC_PFS_2","features":[18]},{"name":"IPSEC_PFS_2048","features":[18]},{"name":"IPSEC_PFS_24","features":[18]},{"name":"IPSEC_PFS_ECP_256","features":[18]},{"name":"IPSEC_PFS_ECP_384","features":[18]},{"name":"IPSEC_PFS_GROUP","features":[18]},{"name":"IPSEC_PFS_MAX","features":[18]},{"name":"IPSEC_PFS_MM","features":[18]},{"name":"IPSEC_PFS_NONE","features":[18]},{"name":"IPSEC_POLICY_FLAG","features":[18]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH1","features":[18]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH2","features":[18]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH3","features":[18]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH4","features":[18]},{"name":"IPSEC_POLICY_FLAG_CLEAR_DF_ON_TUNNEL","features":[18]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_BYTE_LIFETIME","features":[18]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_SECOND_LIFETIME","features":[18]},{"name":"IPSEC_POLICY_FLAG_ENABLE_SERVER_ADDR_ASSIGNMENT","features":[18]},{"name":"IPSEC_POLICY_FLAG_ENABLE_V6_IN_V4_TUNNELING","features":[18]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_DICTATE_KEY","features":[18]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_NOTIFY_KEY","features":[18]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_GENERAL_NAT_TRAVERSAL","features":[18]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_PEER_BEHIND_NAT","features":[18]},{"name":"IPSEC_POLICY_FLAG_ND_BOUNDARY","features":[18]},{"name":"IPSEC_POLICY_FLAG_ND_SECURE","features":[18]},{"name":"IPSEC_POLICY_FLAG_RESERVED1","features":[18]},{"name":"IPSEC_POLICY_FLAG_SITE_TO_SITE_TUNNEL","features":[18]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_ALLOW_OUTBOUND_CLEAR_CONNECTION","features":[18]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ALREADY_SECURE_CONNECTION","features":[18]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ICMPV6","features":[18]},{"name":"IPSEC_PROPOSAL0","features":[18]},{"name":"IPSEC_SA0","features":[18]},{"name":"IPSEC_SA_AUTH_AND_CIPHER_INFORMATION0","features":[18]},{"name":"IPSEC_SA_AUTH_INFORMATION0","features":[18]},{"name":"IPSEC_SA_BUNDLE0","features":[18]},{"name":"IPSEC_SA_BUNDLE1","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAGS","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_ALLOW_NULL_TARGET_NAME_MATCH","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_ASSUME_UDP_CONTEXT_OUTBOUND","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_CLEAR_DF_ON_TUNNEL","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_ENABLE_OPTIONAL_ASYMMETRIC_IDLE","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_INBOUND_CONNECTIONS","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_OUTBOUND_CONNECTIONS","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORWARD_PATH_INITIATOR","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_GUARANTEE_ENCRYPTION","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_IP_IN_IP_PKT","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOCALLY_DICTATED_KEYS","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOW_POWER_MODE_SUPPORT","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_BOUNDARY","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_BOUNDARY","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_NAT_BOUNDARY","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_SECURE","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_NLB","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_EXPLICIT_CRED_MATCH","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_MACHINE_LUID_VERIFY","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_PEER_SUPPORTS_GUARANTEE_ENCRYPTION","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_SA_OFFLOADED","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_SUPPRESS_DUPLICATE_DELETION","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH1","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH2","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH3","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH4","features":[18]},{"name":"IPSEC_SA_BUNDLE_FLAG_USING_DICTATED_KEYS","features":[18]},{"name":"IPSEC_SA_CIPHER_INFORMATION0","features":[18]},{"name":"IPSEC_SA_CONTEXT0","features":[1,18,4]},{"name":"IPSEC_SA_CONTEXT1","features":[1,18,4]},{"name":"IPSEC_SA_CONTEXT_CALLBACK0","features":[18]},{"name":"IPSEC_SA_CONTEXT_CHANGE0","features":[18]},{"name":"IPSEC_SA_CONTEXT_ENUM_TEMPLATE0","features":[1,18,4]},{"name":"IPSEC_SA_CONTEXT_EVENT_ADD","features":[18]},{"name":"IPSEC_SA_CONTEXT_EVENT_DELETE","features":[18]},{"name":"IPSEC_SA_CONTEXT_EVENT_MAX","features":[18]},{"name":"IPSEC_SA_CONTEXT_EVENT_TYPE0","features":[18]},{"name":"IPSEC_SA_CONTEXT_SUBSCRIPTION0","features":[1,18,4]},{"name":"IPSEC_SA_DETAILS0","features":[1,18,4]},{"name":"IPSEC_SA_DETAILS1","features":[1,18,4]},{"name":"IPSEC_SA_ENUM_TEMPLATE0","features":[18]},{"name":"IPSEC_SA_IDLE_TIMEOUT0","features":[18]},{"name":"IPSEC_SA_LIFETIME0","features":[18]},{"name":"IPSEC_SA_TRANSFORM0","features":[18]},{"name":"IPSEC_STATISTICS0","features":[18]},{"name":"IPSEC_STATISTICS1","features":[18]},{"name":"IPSEC_TOKEN0","features":[18]},{"name":"IPSEC_TOKEN_MODE","features":[18]},{"name":"IPSEC_TOKEN_MODE_EXTENDED","features":[18]},{"name":"IPSEC_TOKEN_MODE_MAIN","features":[18]},{"name":"IPSEC_TOKEN_MODE_MAX","features":[18]},{"name":"IPSEC_TOKEN_PRINCIPAL","features":[18]},{"name":"IPSEC_TOKEN_PRINCIPAL_LOCAL","features":[18]},{"name":"IPSEC_TOKEN_PRINCIPAL_MAX","features":[18]},{"name":"IPSEC_TOKEN_PRINCIPAL_PEER","features":[18]},{"name":"IPSEC_TOKEN_TYPE","features":[18]},{"name":"IPSEC_TOKEN_TYPE_IMPERSONATION","features":[18]},{"name":"IPSEC_TOKEN_TYPE_MACHINE","features":[18]},{"name":"IPSEC_TOKEN_TYPE_MAX","features":[18]},{"name":"IPSEC_TRAFFIC0","features":[18]},{"name":"IPSEC_TRAFFIC1","features":[18]},{"name":"IPSEC_TRAFFIC_SELECTOR0","features":[18]},{"name":"IPSEC_TRAFFIC_SELECTOR_POLICY0","features":[18]},{"name":"IPSEC_TRAFFIC_STATISTICS0","features":[18]},{"name":"IPSEC_TRAFFIC_STATISTICS1","features":[18]},{"name":"IPSEC_TRAFFIC_TYPE","features":[18]},{"name":"IPSEC_TRAFFIC_TYPE_MAX","features":[18]},{"name":"IPSEC_TRAFFIC_TYPE_TRANSPORT","features":[18]},{"name":"IPSEC_TRAFFIC_TYPE_TUNNEL","features":[18]},{"name":"IPSEC_TRANSFORM_AH","features":[18]},{"name":"IPSEC_TRANSFORM_ESP_AUTH","features":[18]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_AND_CIPHER","features":[18]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_FW","features":[18]},{"name":"IPSEC_TRANSFORM_ESP_CIPHER","features":[18]},{"name":"IPSEC_TRANSFORM_TYPE","features":[18]},{"name":"IPSEC_TRANSFORM_TYPE_MAX","features":[18]},{"name":"IPSEC_TRANSPORT_POLICY0","features":[18]},{"name":"IPSEC_TRANSPORT_POLICY1","features":[18]},{"name":"IPSEC_TRANSPORT_POLICY2","features":[18]},{"name":"IPSEC_TUNNEL_ENDPOINT0","features":[18]},{"name":"IPSEC_TUNNEL_ENDPOINTS0","features":[18]},{"name":"IPSEC_TUNNEL_ENDPOINTS1","features":[18]},{"name":"IPSEC_TUNNEL_ENDPOINTS2","features":[18]},{"name":"IPSEC_TUNNEL_POLICY0","features":[18]},{"name":"IPSEC_TUNNEL_POLICY1","features":[18]},{"name":"IPSEC_TUNNEL_POLICY2","features":[18]},{"name":"IPSEC_TUNNEL_POLICY3","features":[18]},{"name":"IPSEC_V4_UDP_ENCAPSULATION0","features":[18]},{"name":"IPSEC_VIRTUAL_IF_TUNNEL_INFO0","features":[18]},{"name":"IPsecDospGetSecurityInfo0","features":[1,18,4]},{"name":"IPsecDospGetStatistics0","features":[1,18]},{"name":"IPsecDospSetSecurityInfo0","features":[1,18,4]},{"name":"IPsecDospStateCreateEnumHandle0","features":[1,18]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[1,18]},{"name":"IPsecDospStateEnum0","features":[1,18]},{"name":"IPsecGetStatistics0","features":[1,18]},{"name":"IPsecGetStatistics1","features":[1,18]},{"name":"IPsecKeyManagerAddAndRegister0","features":[1,18,4]},{"name":"IPsecKeyManagerGetSecurityInfoByKey0","features":[1,18,4]},{"name":"IPsecKeyManagerSetSecurityInfoByKey0","features":[1,18,4]},{"name":"IPsecKeyManagerUnregisterAndDelete0","features":[1,18]},{"name":"IPsecKeyManagersGet0","features":[1,18]},{"name":"IPsecSaContextAddInbound0","features":[1,18]},{"name":"IPsecSaContextAddInbound1","features":[1,18]},{"name":"IPsecSaContextAddOutbound0","features":[1,18]},{"name":"IPsecSaContextAddOutbound1","features":[1,18]},{"name":"IPsecSaContextCreate0","features":[1,18]},{"name":"IPsecSaContextCreate1","features":[1,18]},{"name":"IPsecSaContextCreateEnumHandle0","features":[1,18,4]},{"name":"IPsecSaContextDeleteById0","features":[1,18]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[1,18]},{"name":"IPsecSaContextEnum0","features":[1,18,4]},{"name":"IPsecSaContextEnum1","features":[1,18,4]},{"name":"IPsecSaContextExpire0","features":[1,18]},{"name":"IPsecSaContextGetById0","features":[1,18,4]},{"name":"IPsecSaContextGetById1","features":[1,18,4]},{"name":"IPsecSaContextGetSpi0","features":[1,18]},{"name":"IPsecSaContextGetSpi1","features":[1,18]},{"name":"IPsecSaContextSetSpi0","features":[1,18]},{"name":"IPsecSaContextSubscribe0","features":[1,18,4]},{"name":"IPsecSaContextSubscriptionsGet0","features":[1,18,4]},{"name":"IPsecSaContextUnsubscribe0","features":[1,18]},{"name":"IPsecSaContextUpdate0","features":[1,18,4]},{"name":"IPsecSaCreateEnumHandle0","features":[1,18]},{"name":"IPsecSaDbGetSecurityInfo0","features":[1,18,4]},{"name":"IPsecSaDbSetSecurityInfo0","features":[1,18,4]},{"name":"IPsecSaDestroyEnumHandle0","features":[1,18]},{"name":"IPsecSaEnum0","features":[1,18,4]},{"name":"IPsecSaEnum1","features":[1,18,4]},{"name":"IkeextGetStatistics0","features":[1,18]},{"name":"IkeextGetStatistics1","features":[1,18]},{"name":"IkeextSaCreateEnumHandle0","features":[1,18,4]},{"name":"IkeextSaDbGetSecurityInfo0","features":[1,18,4]},{"name":"IkeextSaDbSetSecurityInfo0","features":[1,18,4]},{"name":"IkeextSaDeleteById0","features":[1,18]},{"name":"IkeextSaDestroyEnumHandle0","features":[1,18]},{"name":"IkeextSaEnum0","features":[1,18]},{"name":"IkeextSaEnum1","features":[1,18]},{"name":"IkeextSaEnum2","features":[1,18]},{"name":"IkeextSaGetById0","features":[1,18]},{"name":"IkeextSaGetById1","features":[1,18]},{"name":"IkeextSaGetById2","features":[1,18]}],"465":[{"name":"FW_DYNAMIC_KEYWORD_ADDRESS0","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_DATA0","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_ALL","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_AUTO_RESOLVE","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_NON_AUTO_RESOLVE","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS_AUTO_RESOLVE","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_INVALID","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_LOCAL","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_MDM","features":[106]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_TYPE","features":[106]},{"name":"ICSSC_DEFAULT","features":[106]},{"name":"ICSSC_ENABLED","features":[106]},{"name":"ICSSHARINGTYPE_PRIVATE","features":[106]},{"name":"ICSSHARINGTYPE_PUBLIC","features":[106]},{"name":"ICSTT_IPADDRESS","features":[106]},{"name":"ICSTT_NAME","features":[106]},{"name":"ICS_TARGETTYPE","features":[106]},{"name":"IDynamicPortMapping","features":[106]},{"name":"IDynamicPortMappingCollection","features":[106]},{"name":"IEnumNetConnection","features":[106]},{"name":"IEnumNetSharingEveryConnection","features":[106]},{"name":"IEnumNetSharingPortMapping","features":[106]},{"name":"IEnumNetSharingPrivateConnection","features":[106]},{"name":"IEnumNetSharingPublicConnection","features":[106]},{"name":"INATEventManager","features":[106]},{"name":"INATExternalIPAddressCallback","features":[106]},{"name":"INATNumberOfEntriesCallback","features":[106]},{"name":"INET_FIREWALL_AC_BINARIES","features":[106]},{"name":"INET_FIREWALL_AC_BINARY","features":[106]},{"name":"INET_FIREWALL_AC_CAPABILITIES","features":[1,106,4]},{"name":"INET_FIREWALL_AC_CHANGE","features":[1,106,4]},{"name":"INET_FIREWALL_AC_CHANGE_CREATE","features":[106]},{"name":"INET_FIREWALL_AC_CHANGE_DELETE","features":[106]},{"name":"INET_FIREWALL_AC_CHANGE_INVALID","features":[106]},{"name":"INET_FIREWALL_AC_CHANGE_MAX","features":[106]},{"name":"INET_FIREWALL_AC_CHANGE_TYPE","features":[106]},{"name":"INET_FIREWALL_AC_CREATION_TYPE","features":[106]},{"name":"INET_FIREWALL_AC_MAX","features":[106]},{"name":"INET_FIREWALL_AC_NONE","features":[106]},{"name":"INET_FIREWALL_AC_PACKAGE_ID_ONLY","features":[106]},{"name":"INET_FIREWALL_APP_CONTAINER","features":[1,106,4]},{"name":"INetConnection","features":[106]},{"name":"INetConnectionConnectUi","features":[106]},{"name":"INetConnectionManager","features":[106]},{"name":"INetConnectionProps","features":[106]},{"name":"INetFwAuthorizedApplication","features":[106]},{"name":"INetFwAuthorizedApplications","features":[106]},{"name":"INetFwIcmpSettings","features":[106]},{"name":"INetFwMgr","features":[106]},{"name":"INetFwOpenPort","features":[106]},{"name":"INetFwOpenPorts","features":[106]},{"name":"INetFwPolicy","features":[106]},{"name":"INetFwPolicy2","features":[106]},{"name":"INetFwProduct","features":[106]},{"name":"INetFwProducts","features":[106]},{"name":"INetFwProfile","features":[106]},{"name":"INetFwRemoteAdminSettings","features":[106]},{"name":"INetFwRule","features":[106]},{"name":"INetFwRule2","features":[106]},{"name":"INetFwRule3","features":[106]},{"name":"INetFwRules","features":[106]},{"name":"INetFwService","features":[106]},{"name":"INetFwServiceRestriction","features":[106]},{"name":"INetFwServices","features":[106]},{"name":"INetSharingConfiguration","features":[106]},{"name":"INetSharingEveryConnectionCollection","features":[106]},{"name":"INetSharingManager","features":[106]},{"name":"INetSharingPortMapping","features":[106]},{"name":"INetSharingPortMappingCollection","features":[106]},{"name":"INetSharingPortMappingProps","features":[106]},{"name":"INetSharingPrivateConnectionCollection","features":[106]},{"name":"INetSharingPublicConnectionCollection","features":[106]},{"name":"IStaticPortMapping","features":[106]},{"name":"IStaticPortMappingCollection","features":[106]},{"name":"IUPnPNAT","features":[106]},{"name":"NCCF_ALLOW_DUPLICATION","features":[106]},{"name":"NCCF_ALLOW_REMOVAL","features":[106]},{"name":"NCCF_ALLOW_RENAME","features":[106]},{"name":"NCCF_ALL_USERS","features":[106]},{"name":"NCCF_BLUETOOTH_MASK","features":[106]},{"name":"NCCF_BRANDED","features":[106]},{"name":"NCCF_BRIDGED","features":[106]},{"name":"NCCF_DEFAULT","features":[106]},{"name":"NCCF_FIREWALLED","features":[106]},{"name":"NCCF_HOMENET_CAPABLE","features":[106]},{"name":"NCCF_HOSTED_NETWORK","features":[106]},{"name":"NCCF_INCOMING_ONLY","features":[106]},{"name":"NCCF_LAN_MASK","features":[106]},{"name":"NCCF_NONE","features":[106]},{"name":"NCCF_OUTGOING_ONLY","features":[106]},{"name":"NCCF_QUARANTINED","features":[106]},{"name":"NCCF_RESERVED","features":[106]},{"name":"NCCF_SHARED","features":[106]},{"name":"NCCF_SHARED_PRIVATE","features":[106]},{"name":"NCCF_VIRTUAL_STATION","features":[106]},{"name":"NCCF_WIFI_DIRECT","features":[106]},{"name":"NCME_DEFAULT","features":[106]},{"name":"NCME_HIDDEN","features":[106]},{"name":"NCM_BRIDGE","features":[106]},{"name":"NCM_DIRECT","features":[106]},{"name":"NCM_ISDN","features":[106]},{"name":"NCM_LAN","features":[106]},{"name":"NCM_NONE","features":[106]},{"name":"NCM_PHONE","features":[106]},{"name":"NCM_PPPOE","features":[106]},{"name":"NCM_SHAREDACCESSHOST_LAN","features":[106]},{"name":"NCM_SHAREDACCESSHOST_RAS","features":[106]},{"name":"NCM_TUNNEL","features":[106]},{"name":"NCS_ACTION_REQUIRED","features":[106]},{"name":"NCS_ACTION_REQUIRED_RETRY","features":[106]},{"name":"NCS_AUTHENTICATING","features":[106]},{"name":"NCS_AUTHENTICATION_FAILED","features":[106]},{"name":"NCS_AUTHENTICATION_SUCCEEDED","features":[106]},{"name":"NCS_CONNECTED","features":[106]},{"name":"NCS_CONNECTING","features":[106]},{"name":"NCS_CONNECT_FAILED","features":[106]},{"name":"NCS_CREDENTIALS_REQUIRED","features":[106]},{"name":"NCS_DISCONNECTED","features":[106]},{"name":"NCS_DISCONNECTING","features":[106]},{"name":"NCS_HARDWARE_DISABLED","features":[106]},{"name":"NCS_HARDWARE_MALFUNCTION","features":[106]},{"name":"NCS_HARDWARE_NOT_PRESENT","features":[106]},{"name":"NCS_INVALID_ADDRESS","features":[106]},{"name":"NCS_MEDIA_DISCONNECTED","features":[106]},{"name":"NCT_BRIDGE","features":[106]},{"name":"NCT_DIRECT_CONNECT","features":[106]},{"name":"NCT_INBOUND","features":[106]},{"name":"NCT_INTERNET","features":[106]},{"name":"NCT_LAN","features":[106]},{"name":"NCT_PHONE","features":[106]},{"name":"NCT_TUNNEL","features":[106]},{"name":"NCUC_DEFAULT","features":[106]},{"name":"NCUC_ENABLE_DISABLE","features":[106]},{"name":"NCUC_NO_UI","features":[106]},{"name":"NETCONMGR_ENUM_FLAGS","features":[106]},{"name":"NETCONUI_CONNECT_FLAGS","features":[106]},{"name":"NETCON_CHARACTERISTIC_FLAGS","features":[106]},{"name":"NETCON_MAX_NAME_LEN","features":[106]},{"name":"NETCON_MEDIATYPE","features":[106]},{"name":"NETCON_PROPERTIES","features":[106]},{"name":"NETCON_STATUS","features":[106]},{"name":"NETCON_TYPE","features":[106]},{"name":"NETISO_ERROR_TYPE","features":[106]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT","features":[106]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT_SERVER","features":[106]},{"name":"NETISO_ERROR_TYPE_MAX","features":[106]},{"name":"NETISO_ERROR_TYPE_NONE","features":[106]},{"name":"NETISO_ERROR_TYPE_PRIVATE_NETWORK","features":[106]},{"name":"NETISO_FLAG","features":[106]},{"name":"NETISO_FLAG_FORCE_COMPUTE_BINARIES","features":[106]},{"name":"NETISO_FLAG_MAX","features":[106]},{"name":"NETISO_GEID_FOR_NEUTRAL_AWARE","features":[106]},{"name":"NETISO_GEID_FOR_WDAG","features":[106]},{"name":"NET_FW_ACTION","features":[106]},{"name":"NET_FW_ACTION_ALLOW","features":[106]},{"name":"NET_FW_ACTION_BLOCK","features":[106]},{"name":"NET_FW_ACTION_MAX","features":[106]},{"name":"NET_FW_AUTHENTICATE_AND_ENCRYPT","features":[106]},{"name":"NET_FW_AUTHENTICATE_AND_NEGOTIATE_ENCRYPTION","features":[106]},{"name":"NET_FW_AUTHENTICATE_NONE","features":[106]},{"name":"NET_FW_AUTHENTICATE_NO_ENCAPSULATION","features":[106]},{"name":"NET_FW_AUTHENTICATE_TYPE","features":[106]},{"name":"NET_FW_AUTHENTICATE_WITH_INTEGRITY","features":[106]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE","features":[106]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_ALLOW","features":[106]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_APP","features":[106]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_USER","features":[106]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DENY","features":[106]},{"name":"NET_FW_IP_PROTOCOL","features":[106]},{"name":"NET_FW_IP_PROTOCOL_ANY","features":[106]},{"name":"NET_FW_IP_PROTOCOL_TCP","features":[106]},{"name":"NET_FW_IP_PROTOCOL_UDP","features":[106]},{"name":"NET_FW_IP_VERSION","features":[106]},{"name":"NET_FW_IP_VERSION_ANY","features":[106]},{"name":"NET_FW_IP_VERSION_MAX","features":[106]},{"name":"NET_FW_IP_VERSION_V4","features":[106]},{"name":"NET_FW_IP_VERSION_V6","features":[106]},{"name":"NET_FW_MODIFY_STATE","features":[106]},{"name":"NET_FW_MODIFY_STATE_GP_OVERRIDE","features":[106]},{"name":"NET_FW_MODIFY_STATE_INBOUND_BLOCKED","features":[106]},{"name":"NET_FW_MODIFY_STATE_OK","features":[106]},{"name":"NET_FW_POLICY_EFFECTIVE","features":[106]},{"name":"NET_FW_POLICY_GROUP","features":[106]},{"name":"NET_FW_POLICY_LOCAL","features":[106]},{"name":"NET_FW_POLICY_TYPE","features":[106]},{"name":"NET_FW_POLICY_TYPE_MAX","features":[106]},{"name":"NET_FW_PROFILE2_ALL","features":[106]},{"name":"NET_FW_PROFILE2_DOMAIN","features":[106]},{"name":"NET_FW_PROFILE2_PRIVATE","features":[106]},{"name":"NET_FW_PROFILE2_PUBLIC","features":[106]},{"name":"NET_FW_PROFILE_CURRENT","features":[106]},{"name":"NET_FW_PROFILE_DOMAIN","features":[106]},{"name":"NET_FW_PROFILE_STANDARD","features":[106]},{"name":"NET_FW_PROFILE_TYPE","features":[106]},{"name":"NET_FW_PROFILE_TYPE2","features":[106]},{"name":"NET_FW_PROFILE_TYPE_MAX","features":[106]},{"name":"NET_FW_RULE_CATEGORY","features":[106]},{"name":"NET_FW_RULE_CATEGORY_BOOT","features":[106]},{"name":"NET_FW_RULE_CATEGORY_CONSEC","features":[106]},{"name":"NET_FW_RULE_CATEGORY_FIREWALL","features":[106]},{"name":"NET_FW_RULE_CATEGORY_MAX","features":[106]},{"name":"NET_FW_RULE_CATEGORY_STEALTH","features":[106]},{"name":"NET_FW_RULE_DIRECTION","features":[106]},{"name":"NET_FW_RULE_DIR_IN","features":[106]},{"name":"NET_FW_RULE_DIR_MAX","features":[106]},{"name":"NET_FW_RULE_DIR_OUT","features":[106]},{"name":"NET_FW_SCOPE","features":[106]},{"name":"NET_FW_SCOPE_ALL","features":[106]},{"name":"NET_FW_SCOPE_CUSTOM","features":[106]},{"name":"NET_FW_SCOPE_LOCAL_SUBNET","features":[106]},{"name":"NET_FW_SCOPE_MAX","features":[106]},{"name":"NET_FW_SERVICE_FILE_AND_PRINT","features":[106]},{"name":"NET_FW_SERVICE_NONE","features":[106]},{"name":"NET_FW_SERVICE_REMOTE_DESKTOP","features":[106]},{"name":"NET_FW_SERVICE_TYPE","features":[106]},{"name":"NET_FW_SERVICE_TYPE_MAX","features":[106]},{"name":"NET_FW_SERVICE_UPNP","features":[106]},{"name":"NcFreeNetconProperties","features":[106]},{"name":"NcIsValidConnectionName","features":[1,106]},{"name":"NetFwAuthorizedApplication","features":[106]},{"name":"NetFwMgr","features":[106]},{"name":"NetFwOpenPort","features":[106]},{"name":"NetFwPolicy2","features":[106]},{"name":"NetFwProduct","features":[106]},{"name":"NetFwProducts","features":[106]},{"name":"NetFwRule","features":[106]},{"name":"NetSharingManager","features":[106]},{"name":"NetworkIsolationDiagnoseConnectFailureAndGetInfo","features":[106]},{"name":"NetworkIsolationEnumAppContainers","features":[1,106,4]},{"name":"NetworkIsolationEnumerateAppContainerRules","features":[106]},{"name":"NetworkIsolationFreeAppContainers","features":[1,106,4]},{"name":"NetworkIsolationGetAppContainerConfig","features":[1,106,4]},{"name":"NetworkIsolationGetEnterpriseIdAsync","features":[1,106]},{"name":"NetworkIsolationGetEnterpriseIdClose","features":[1,106]},{"name":"NetworkIsolationRegisterForAppContainerChanges","features":[1,106,4]},{"name":"NetworkIsolationSetAppContainerConfig","features":[1,106,4]},{"name":"NetworkIsolationSetupAppContainerBinaries","features":[1,106]},{"name":"NetworkIsolationUnregisterForAppContainerChanges","features":[1,106]},{"name":"PAC_CHANGES_CALLBACK_FN","features":[1,106,4]},{"name":"PFN_FWADDDYNAMICKEYWORDADDRESS0","features":[106]},{"name":"PFN_FWDELETEDYNAMICKEYWORDADDRESS0","features":[106]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSBYID0","features":[106]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSESBYTYPE0","features":[106]},{"name":"PFN_FWFREEDYNAMICKEYWORDADDRESSDATA0","features":[106]},{"name":"PFN_FWUPDATEDYNAMICKEYWORDADDRESS0","features":[1,106]},{"name":"PNETISO_EDP_ID_CALLBACK_FN","features":[106]},{"name":"SHARINGCONNECTIONTYPE","features":[106]},{"name":"SHARINGCONNECTION_ENUM_FLAGS","features":[106]},{"name":"S_OBJECT_NO_LONGER_VALID","features":[106]},{"name":"UPnPNAT","features":[106]}],"466":[{"name":"WNV_API_MAJOR_VERSION_1","features":[107]},{"name":"WNV_API_MINOR_VERSION_0","features":[107]},{"name":"WNV_CA_NOTIFICATION_TYPE","features":[107]},{"name":"WNV_CUSTOMER_ADDRESS_CHANGE_PARAM","features":[107,15]},{"name":"WNV_IP_ADDRESS","features":[107,15]},{"name":"WNV_NOTIFICATION_PARAM","features":[107]},{"name":"WNV_NOTIFICATION_TYPE","features":[107]},{"name":"WNV_OBJECT_CHANGE_PARAM","features":[107,15]},{"name":"WNV_OBJECT_HEADER","features":[107]},{"name":"WNV_OBJECT_TYPE","features":[107]},{"name":"WNV_POLICY_MISMATCH_PARAM","features":[107,15]},{"name":"WNV_PROVIDER_ADDRESS_CHANGE_PARAM","features":[107,15]},{"name":"WNV_REDIRECT_PARAM","features":[107,15]},{"name":"WnvCustomerAddressAdded","features":[107]},{"name":"WnvCustomerAddressDeleted","features":[107]},{"name":"WnvCustomerAddressMax","features":[107]},{"name":"WnvCustomerAddressMoved","features":[107]},{"name":"WnvCustomerAddressType","features":[107]},{"name":"WnvNotificationTypeMax","features":[107]},{"name":"WnvObjectChangeType","features":[107]},{"name":"WnvObjectTypeMax","features":[107]},{"name":"WnvOpen","features":[1,107]},{"name":"WnvPolicyMismatchType","features":[107]},{"name":"WnvProviderAddressType","features":[107]},{"name":"WnvRedirectType","features":[107]},{"name":"WnvRequestNotification","features":[1,107,6]}],"467":[{"name":"ACTRL_DS_CONTROL_ACCESS","features":[108]},{"name":"ACTRL_DS_CREATE_CHILD","features":[108]},{"name":"ACTRL_DS_DELETE_CHILD","features":[108]},{"name":"ACTRL_DS_DELETE_TREE","features":[108]},{"name":"ACTRL_DS_LIST","features":[108]},{"name":"ACTRL_DS_LIST_OBJECT","features":[108]},{"name":"ACTRL_DS_OPEN","features":[108]},{"name":"ACTRL_DS_READ_PROP","features":[108]},{"name":"ACTRL_DS_SELF","features":[108]},{"name":"ACTRL_DS_WRITE_PROP","features":[108]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_MUTUAL_AUTH_REQUIRED","features":[108]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE","features":[108]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE_PASS_THROUGH","features":[108]},{"name":"ADAM_SCP_FSMO_NAMING_STRING","features":[108]},{"name":"ADAM_SCP_FSMO_NAMING_STRING_W","features":[108]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING","features":[108]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING_W","features":[108]},{"name":"ADAM_SCP_FSMO_STRING","features":[108]},{"name":"ADAM_SCP_FSMO_STRING_W","features":[108]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING","features":[108]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING_W","features":[108]},{"name":"ADAM_SCP_PARTITION_STRING","features":[108]},{"name":"ADAM_SCP_PARTITION_STRING_W","features":[108]},{"name":"ADAM_SCP_SITE_NAME_STRING","features":[108]},{"name":"ADAM_SCP_SITE_NAME_STRING_W","features":[108]},{"name":"ADSIPROP_ADSIFLAG","features":[108]},{"name":"ADSIPROP_ASYNCHRONOUS","features":[108]},{"name":"ADSIPROP_ATTRIBTYPES_ONLY","features":[108]},{"name":"ADSIPROP_CACHE_RESULTS","features":[108]},{"name":"ADSIPROP_CHASE_REFERRALS","features":[108]},{"name":"ADSIPROP_DEREF_ALIASES","features":[108]},{"name":"ADSIPROP_PAGED_TIME_LIMIT","features":[108]},{"name":"ADSIPROP_PAGESIZE","features":[108]},{"name":"ADSIPROP_SEARCH_SCOPE","features":[108]},{"name":"ADSIPROP_SIZE_LIMIT","features":[108]},{"name":"ADSIPROP_SORT_ON","features":[108]},{"name":"ADSIPROP_TIMEOUT","features":[108]},{"name":"ADSIPROP_TIME_LIMIT","features":[108]},{"name":"ADSI_DIALECT_ENUM","features":[108]},{"name":"ADSI_DIALECT_LDAP","features":[108]},{"name":"ADSI_DIALECT_SQL","features":[108]},{"name":"ADSPROPERROR","features":[1,108]},{"name":"ADSPROPINITPARAMS","features":[1,108]},{"name":"ADSTYPE","features":[108]},{"name":"ADSTYPE_BACKLINK","features":[108]},{"name":"ADSTYPE_BOOLEAN","features":[108]},{"name":"ADSTYPE_CASEIGNORE_LIST","features":[108]},{"name":"ADSTYPE_CASE_EXACT_STRING","features":[108]},{"name":"ADSTYPE_CASE_IGNORE_STRING","features":[108]},{"name":"ADSTYPE_DN_STRING","features":[108]},{"name":"ADSTYPE_DN_WITH_BINARY","features":[108]},{"name":"ADSTYPE_DN_WITH_STRING","features":[108]},{"name":"ADSTYPE_EMAIL","features":[108]},{"name":"ADSTYPE_FAXNUMBER","features":[108]},{"name":"ADSTYPE_HOLD","features":[108]},{"name":"ADSTYPE_INTEGER","features":[108]},{"name":"ADSTYPE_INVALID","features":[108]},{"name":"ADSTYPE_LARGE_INTEGER","features":[108]},{"name":"ADSTYPE_NETADDRESS","features":[108]},{"name":"ADSTYPE_NT_SECURITY_DESCRIPTOR","features":[108]},{"name":"ADSTYPE_NUMERIC_STRING","features":[108]},{"name":"ADSTYPE_OBJECT_CLASS","features":[108]},{"name":"ADSTYPE_OCTET_LIST","features":[108]},{"name":"ADSTYPE_OCTET_STRING","features":[108]},{"name":"ADSTYPE_PATH","features":[108]},{"name":"ADSTYPE_POSTALADDRESS","features":[108]},{"name":"ADSTYPE_PRINTABLE_STRING","features":[108]},{"name":"ADSTYPE_PROV_SPECIFIC","features":[108]},{"name":"ADSTYPE_REPLICAPOINTER","features":[108]},{"name":"ADSTYPE_TIMESTAMP","features":[108]},{"name":"ADSTYPE_TYPEDNAME","features":[108]},{"name":"ADSTYPE_UNKNOWN","features":[108]},{"name":"ADSTYPE_UTC_TIME","features":[108]},{"name":"ADSVALUE","features":[1,108]},{"name":"ADS_ACEFLAG_ENUM","features":[108]},{"name":"ADS_ACEFLAG_FAILED_ACCESS","features":[108]},{"name":"ADS_ACEFLAG_INHERITED_ACE","features":[108]},{"name":"ADS_ACEFLAG_INHERIT_ACE","features":[108]},{"name":"ADS_ACEFLAG_INHERIT_ONLY_ACE","features":[108]},{"name":"ADS_ACEFLAG_NO_PROPAGATE_INHERIT_ACE","features":[108]},{"name":"ADS_ACEFLAG_SUCCESSFUL_ACCESS","features":[108]},{"name":"ADS_ACEFLAG_VALID_INHERIT_FLAGS","features":[108]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED","features":[108]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK","features":[108]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK_OBJECT","features":[108]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_OBJECT","features":[108]},{"name":"ADS_ACETYPE_ACCESS_DENIED","features":[108]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK","features":[108]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK_OBJECT","features":[108]},{"name":"ADS_ACETYPE_ACCESS_DENIED_OBJECT","features":[108]},{"name":"ADS_ACETYPE_ENUM","features":[108]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK","features":[108]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK_OBJECT","features":[108]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_OBJECT","features":[108]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT","features":[108]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK","features":[108]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK_OBJECT","features":[108]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_OBJECT","features":[108]},{"name":"ADS_ATTR_APPEND","features":[108]},{"name":"ADS_ATTR_CLEAR","features":[108]},{"name":"ADS_ATTR_DEF","features":[1,108]},{"name":"ADS_ATTR_DELETE","features":[108]},{"name":"ADS_ATTR_INFO","features":[1,108]},{"name":"ADS_ATTR_UPDATE","features":[108]},{"name":"ADS_AUTHENTICATION_ENUM","features":[108]},{"name":"ADS_AUTH_RESERVED","features":[108]},{"name":"ADS_BACKLINK","features":[108]},{"name":"ADS_CASEIGNORE_LIST","features":[108]},{"name":"ADS_CHASE_REFERRALS_ALWAYS","features":[108]},{"name":"ADS_CHASE_REFERRALS_ENUM","features":[108]},{"name":"ADS_CHASE_REFERRALS_EXTERNAL","features":[108]},{"name":"ADS_CHASE_REFERRALS_NEVER","features":[108]},{"name":"ADS_CHASE_REFERRALS_SUBORDINATE","features":[108]},{"name":"ADS_CLASS_DEF","features":[1,108]},{"name":"ADS_DEREFENUM","features":[108]},{"name":"ADS_DEREF_ALWAYS","features":[108]},{"name":"ADS_DEREF_FINDING","features":[108]},{"name":"ADS_DEREF_NEVER","features":[108]},{"name":"ADS_DEREF_SEARCHING","features":[108]},{"name":"ADS_DISPLAY_ENUM","features":[108]},{"name":"ADS_DISPLAY_FULL","features":[108]},{"name":"ADS_DISPLAY_VALUE_ONLY","features":[108]},{"name":"ADS_DN_WITH_BINARY","features":[108]},{"name":"ADS_DN_WITH_STRING","features":[108]},{"name":"ADS_EMAIL","features":[108]},{"name":"ADS_ESCAPEDMODE_DEFAULT","features":[108]},{"name":"ADS_ESCAPEDMODE_OFF","features":[108]},{"name":"ADS_ESCAPEDMODE_OFF_EX","features":[108]},{"name":"ADS_ESCAPEDMODE_ON","features":[108]},{"name":"ADS_ESCAPE_MODE_ENUM","features":[108]},{"name":"ADS_EXT_INITCREDENTIALS","features":[108]},{"name":"ADS_EXT_INITIALIZE_COMPLETE","features":[108]},{"name":"ADS_EXT_MAXEXTDISPID","features":[108]},{"name":"ADS_EXT_MINEXTDISPID","features":[108]},{"name":"ADS_FAST_BIND","features":[108]},{"name":"ADS_FAXNUMBER","features":[108]},{"name":"ADS_FLAGTYPE_ENUM","features":[108]},{"name":"ADS_FLAG_INHERITED_OBJECT_TYPE_PRESENT","features":[108]},{"name":"ADS_FLAG_OBJECT_TYPE_PRESENT","features":[108]},{"name":"ADS_FORMAT_ENUM","features":[108]},{"name":"ADS_FORMAT_LEAF","features":[108]},{"name":"ADS_FORMAT_PROVIDER","features":[108]},{"name":"ADS_FORMAT_SERVER","features":[108]},{"name":"ADS_FORMAT_WINDOWS","features":[108]},{"name":"ADS_FORMAT_WINDOWS_DN","features":[108]},{"name":"ADS_FORMAT_WINDOWS_NO_SERVER","features":[108]},{"name":"ADS_FORMAT_WINDOWS_PARENT","features":[108]},{"name":"ADS_FORMAT_X500","features":[108]},{"name":"ADS_FORMAT_X500_DN","features":[108]},{"name":"ADS_FORMAT_X500_NO_SERVER","features":[108]},{"name":"ADS_FORMAT_X500_PARENT","features":[108]},{"name":"ADS_GROUP_TYPE_DOMAIN_LOCAL_GROUP","features":[108]},{"name":"ADS_GROUP_TYPE_ENUM","features":[108]},{"name":"ADS_GROUP_TYPE_GLOBAL_GROUP","features":[108]},{"name":"ADS_GROUP_TYPE_LOCAL_GROUP","features":[108]},{"name":"ADS_GROUP_TYPE_SECURITY_ENABLED","features":[108]},{"name":"ADS_GROUP_TYPE_UNIVERSAL_GROUP","features":[108]},{"name":"ADS_HOLD","features":[108]},{"name":"ADS_NAME_INITTYPE_DOMAIN","features":[108]},{"name":"ADS_NAME_INITTYPE_ENUM","features":[108]},{"name":"ADS_NAME_INITTYPE_GC","features":[108]},{"name":"ADS_NAME_INITTYPE_SERVER","features":[108]},{"name":"ADS_NAME_TYPE_1779","features":[108]},{"name":"ADS_NAME_TYPE_CANONICAL","features":[108]},{"name":"ADS_NAME_TYPE_CANONICAL_EX","features":[108]},{"name":"ADS_NAME_TYPE_DISPLAY","features":[108]},{"name":"ADS_NAME_TYPE_DOMAIN_SIMPLE","features":[108]},{"name":"ADS_NAME_TYPE_ENTERPRISE_SIMPLE","features":[108]},{"name":"ADS_NAME_TYPE_ENUM","features":[108]},{"name":"ADS_NAME_TYPE_GUID","features":[108]},{"name":"ADS_NAME_TYPE_NT4","features":[108]},{"name":"ADS_NAME_TYPE_SERVICE_PRINCIPAL_NAME","features":[108]},{"name":"ADS_NAME_TYPE_SID_OR_SID_HISTORY_NAME","features":[108]},{"name":"ADS_NAME_TYPE_UNKNOWN","features":[108]},{"name":"ADS_NAME_TYPE_USER_PRINCIPAL_NAME","features":[108]},{"name":"ADS_NETADDRESS","features":[108]},{"name":"ADS_NO_AUTHENTICATION","features":[108]},{"name":"ADS_NO_REFERRAL_CHASING","features":[108]},{"name":"ADS_NT_SECURITY_DESCRIPTOR","features":[108]},{"name":"ADS_OBJECT_INFO","features":[108]},{"name":"ADS_OCTET_LIST","features":[108]},{"name":"ADS_OCTET_STRING","features":[108]},{"name":"ADS_OPTION_ACCUMULATIVE_MODIFICATION","features":[108]},{"name":"ADS_OPTION_ENUM","features":[108]},{"name":"ADS_OPTION_MUTUAL_AUTH_STATUS","features":[108]},{"name":"ADS_OPTION_PAGE_SIZE","features":[108]},{"name":"ADS_OPTION_PASSWORD_METHOD","features":[108]},{"name":"ADS_OPTION_PASSWORD_PORTNUMBER","features":[108]},{"name":"ADS_OPTION_QUOTA","features":[108]},{"name":"ADS_OPTION_REFERRALS","features":[108]},{"name":"ADS_OPTION_SECURITY_MASK","features":[108]},{"name":"ADS_OPTION_SERVERNAME","features":[108]},{"name":"ADS_OPTION_SKIP_SID_LOOKUP","features":[108]},{"name":"ADS_PASSWORD_ENCODE_CLEAR","features":[108]},{"name":"ADS_PASSWORD_ENCODE_REQUIRE_SSL","features":[108]},{"name":"ADS_PASSWORD_ENCODING_ENUM","features":[108]},{"name":"ADS_PATH","features":[108]},{"name":"ADS_PATHTYPE_ENUM","features":[108]},{"name":"ADS_PATH_FILE","features":[108]},{"name":"ADS_PATH_FILESHARE","features":[108]},{"name":"ADS_PATH_REGISTRY","features":[108]},{"name":"ADS_POSTALADDRESS","features":[108]},{"name":"ADS_PREFERENCES_ENUM","features":[108]},{"name":"ADS_PROMPT_CREDENTIALS","features":[108]},{"name":"ADS_PROPERTY_APPEND","features":[108]},{"name":"ADS_PROPERTY_CLEAR","features":[108]},{"name":"ADS_PROPERTY_DELETE","features":[108]},{"name":"ADS_PROPERTY_OPERATION_ENUM","features":[108]},{"name":"ADS_PROPERTY_UPDATE","features":[108]},{"name":"ADS_PROV_SPECIFIC","features":[108]},{"name":"ADS_READONLY_SERVER","features":[108]},{"name":"ADS_REPLICAPOINTER","features":[108]},{"name":"ADS_RIGHTS_ENUM","features":[108]},{"name":"ADS_RIGHT_ACCESS_SYSTEM_SECURITY","features":[108]},{"name":"ADS_RIGHT_ACTRL_DS_LIST","features":[108]},{"name":"ADS_RIGHT_DELETE","features":[108]},{"name":"ADS_RIGHT_DS_CONTROL_ACCESS","features":[108]},{"name":"ADS_RIGHT_DS_CREATE_CHILD","features":[108]},{"name":"ADS_RIGHT_DS_DELETE_CHILD","features":[108]},{"name":"ADS_RIGHT_DS_DELETE_TREE","features":[108]},{"name":"ADS_RIGHT_DS_LIST_OBJECT","features":[108]},{"name":"ADS_RIGHT_DS_READ_PROP","features":[108]},{"name":"ADS_RIGHT_DS_SELF","features":[108]},{"name":"ADS_RIGHT_DS_WRITE_PROP","features":[108]},{"name":"ADS_RIGHT_GENERIC_ALL","features":[108]},{"name":"ADS_RIGHT_GENERIC_EXECUTE","features":[108]},{"name":"ADS_RIGHT_GENERIC_READ","features":[108]},{"name":"ADS_RIGHT_GENERIC_WRITE","features":[108]},{"name":"ADS_RIGHT_READ_CONTROL","features":[108]},{"name":"ADS_RIGHT_SYNCHRONIZE","features":[108]},{"name":"ADS_RIGHT_WRITE_DAC","features":[108]},{"name":"ADS_RIGHT_WRITE_OWNER","features":[108]},{"name":"ADS_SCOPEENUM","features":[108]},{"name":"ADS_SCOPE_BASE","features":[108]},{"name":"ADS_SCOPE_ONELEVEL","features":[108]},{"name":"ADS_SCOPE_SUBTREE","features":[108]},{"name":"ADS_SD_CONTROL_ENUM","features":[108]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERITED","features":[108]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERIT_REQ","features":[108]},{"name":"ADS_SD_CONTROL_SE_DACL_DEFAULTED","features":[108]},{"name":"ADS_SD_CONTROL_SE_DACL_PRESENT","features":[108]},{"name":"ADS_SD_CONTROL_SE_DACL_PROTECTED","features":[108]},{"name":"ADS_SD_CONTROL_SE_GROUP_DEFAULTED","features":[108]},{"name":"ADS_SD_CONTROL_SE_OWNER_DEFAULTED","features":[108]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERITED","features":[108]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERIT_REQ","features":[108]},{"name":"ADS_SD_CONTROL_SE_SACL_DEFAULTED","features":[108]},{"name":"ADS_SD_CONTROL_SE_SACL_PRESENT","features":[108]},{"name":"ADS_SD_CONTROL_SE_SACL_PROTECTED","features":[108]},{"name":"ADS_SD_CONTROL_SE_SELF_RELATIVE","features":[108]},{"name":"ADS_SD_FORMAT_ENUM","features":[108]},{"name":"ADS_SD_FORMAT_HEXSTRING","features":[108]},{"name":"ADS_SD_FORMAT_IID","features":[108]},{"name":"ADS_SD_FORMAT_RAW","features":[108]},{"name":"ADS_SD_REVISION_DS","features":[108]},{"name":"ADS_SD_REVISION_ENUM","features":[108]},{"name":"ADS_SEARCHPREF_ASYNCHRONOUS","features":[108]},{"name":"ADS_SEARCHPREF_ATTRIBTYPES_ONLY","features":[108]},{"name":"ADS_SEARCHPREF_ATTRIBUTE_QUERY","features":[108]},{"name":"ADS_SEARCHPREF_CACHE_RESULTS","features":[108]},{"name":"ADS_SEARCHPREF_CHASE_REFERRALS","features":[108]},{"name":"ADS_SEARCHPREF_DEREF_ALIASES","features":[108]},{"name":"ADS_SEARCHPREF_DIRSYNC","features":[108]},{"name":"ADS_SEARCHPREF_DIRSYNC_FLAG","features":[108]},{"name":"ADS_SEARCHPREF_ENUM","features":[108]},{"name":"ADS_SEARCHPREF_EXTENDED_DN","features":[108]},{"name":"ADS_SEARCHPREF_INFO","features":[1,108]},{"name":"ADS_SEARCHPREF_PAGED_TIME_LIMIT","features":[108]},{"name":"ADS_SEARCHPREF_PAGESIZE","features":[108]},{"name":"ADS_SEARCHPREF_SEARCH_SCOPE","features":[108]},{"name":"ADS_SEARCHPREF_SECURITY_MASK","features":[108]},{"name":"ADS_SEARCHPREF_SIZE_LIMIT","features":[108]},{"name":"ADS_SEARCHPREF_SORT_ON","features":[108]},{"name":"ADS_SEARCHPREF_TIMEOUT","features":[108]},{"name":"ADS_SEARCHPREF_TIME_LIMIT","features":[108]},{"name":"ADS_SEARCHPREF_TOMBSTONE","features":[108]},{"name":"ADS_SEARCHPREF_VLV","features":[108]},{"name":"ADS_SEARCH_COLUMN","features":[1,108]},{"name":"ADS_SEARCH_HANDLE","features":[108]},{"name":"ADS_SECURE_AUTHENTICATION","features":[108]},{"name":"ADS_SECURITY_INFO_DACL","features":[108]},{"name":"ADS_SECURITY_INFO_ENUM","features":[108]},{"name":"ADS_SECURITY_INFO_GROUP","features":[108]},{"name":"ADS_SECURITY_INFO_OWNER","features":[108]},{"name":"ADS_SECURITY_INFO_SACL","features":[108]},{"name":"ADS_SERVER_BIND","features":[108]},{"name":"ADS_SETTYPE_DN","features":[108]},{"name":"ADS_SETTYPE_ENUM","features":[108]},{"name":"ADS_SETTYPE_FULL","features":[108]},{"name":"ADS_SETTYPE_PROVIDER","features":[108]},{"name":"ADS_SETTYPE_SERVER","features":[108]},{"name":"ADS_SORTKEY","features":[1,108]},{"name":"ADS_STATUSENUM","features":[108]},{"name":"ADS_STATUS_INVALID_SEARCHPREF","features":[108]},{"name":"ADS_STATUS_INVALID_SEARCHPREFVALUE","features":[108]},{"name":"ADS_STATUS_S_OK","features":[108]},{"name":"ADS_SYSTEMFLAG_ATTR_IS_CONSTRUCTED","features":[108]},{"name":"ADS_SYSTEMFLAG_ATTR_NOT_REPLICATED","features":[108]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_LIMITED_MOVE","features":[108]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_MOVE","features":[108]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_RENAME","features":[108]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_DOMAIN","features":[108]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_NC","features":[108]},{"name":"ADS_SYSTEMFLAG_DISALLOW_DELETE","features":[108]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_MOVE","features":[108]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_RENAME","features":[108]},{"name":"ADS_SYSTEMFLAG_ENUM","features":[108]},{"name":"ADS_TIMESTAMP","features":[108]},{"name":"ADS_TYPEDNAME","features":[108]},{"name":"ADS_UF_ACCOUNTDISABLE","features":[108]},{"name":"ADS_UF_DONT_EXPIRE_PASSWD","features":[108]},{"name":"ADS_UF_DONT_REQUIRE_PREAUTH","features":[108]},{"name":"ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[108]},{"name":"ADS_UF_HOMEDIR_REQUIRED","features":[108]},{"name":"ADS_UF_INTERDOMAIN_TRUST_ACCOUNT","features":[108]},{"name":"ADS_UF_LOCKOUT","features":[108]},{"name":"ADS_UF_MNS_LOGON_ACCOUNT","features":[108]},{"name":"ADS_UF_NORMAL_ACCOUNT","features":[108]},{"name":"ADS_UF_NOT_DELEGATED","features":[108]},{"name":"ADS_UF_PASSWD_CANT_CHANGE","features":[108]},{"name":"ADS_UF_PASSWD_NOTREQD","features":[108]},{"name":"ADS_UF_PASSWORD_EXPIRED","features":[108]},{"name":"ADS_UF_SCRIPT","features":[108]},{"name":"ADS_UF_SERVER_TRUST_ACCOUNT","features":[108]},{"name":"ADS_UF_SMARTCARD_REQUIRED","features":[108]},{"name":"ADS_UF_TEMP_DUPLICATE_ACCOUNT","features":[108]},{"name":"ADS_UF_TRUSTED_FOR_DELEGATION","features":[108]},{"name":"ADS_UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[108]},{"name":"ADS_UF_USE_DES_KEY_ONLY","features":[108]},{"name":"ADS_UF_WORKSTATION_TRUST_ACCOUNT","features":[108]},{"name":"ADS_USER_FLAG_ENUM","features":[108]},{"name":"ADS_USE_DELEGATION","features":[108]},{"name":"ADS_USE_ENCRYPTION","features":[108]},{"name":"ADS_USE_SEALING","features":[108]},{"name":"ADS_USE_SIGNING","features":[108]},{"name":"ADS_USE_SSL","features":[108]},{"name":"ADS_VLV","features":[108]},{"name":"ADSystemInfo","features":[108]},{"name":"ADsBuildEnumerator","features":[108]},{"name":"ADsBuildVarArrayInt","features":[1,108,41,42]},{"name":"ADsBuildVarArrayStr","features":[1,108,41,42]},{"name":"ADsDecodeBinaryData","features":[108]},{"name":"ADsEncodeBinaryData","features":[108]},{"name":"ADsEnumerateNext","features":[1,108,41,42]},{"name":"ADsFreeEnumerator","features":[108]},{"name":"ADsGetLastError","features":[108]},{"name":"ADsGetObject","features":[108]},{"name":"ADsOpenObject","features":[108]},{"name":"ADsPropCheckIfWritable","features":[1,108]},{"name":"ADsPropCreateNotifyObj","features":[1,108]},{"name":"ADsPropGetInitInfo","features":[1,108]},{"name":"ADsPropSendErrorMessage","features":[1,108]},{"name":"ADsPropSetHwnd","features":[1,108]},{"name":"ADsPropSetHwndWithTitle","features":[1,108]},{"name":"ADsPropShowErrorDialog","features":[1,108]},{"name":"ADsSecurityUtility","features":[108]},{"name":"ADsSetLastError","features":[108]},{"name":"AccessControlEntry","features":[108]},{"name":"AccessControlList","features":[108]},{"name":"AdsFreeAdsValues","features":[1,108]},{"name":"AdsTypeToPropVariant","features":[1,108,41,42]},{"name":"AllocADsMem","features":[108]},{"name":"AllocADsStr","features":[108]},{"name":"BackLink","features":[108]},{"name":"BinarySDToSecurityDescriptor","features":[1,108,4,41,42]},{"name":"CFSTR_DSDISPLAYSPECOPTIONS","features":[108]},{"name":"CFSTR_DSOBJECTNAMES","features":[108]},{"name":"CFSTR_DSOP_DS_SELECTION_LIST","features":[108]},{"name":"CFSTR_DSPROPERTYPAGEINFO","features":[108]},{"name":"CFSTR_DSQUERYPARAMS","features":[108]},{"name":"CFSTR_DSQUERYSCOPE","features":[108]},{"name":"CFSTR_DS_DISPLAY_SPEC_OPTIONS","features":[108]},{"name":"CLSID_CommonQuery","features":[108]},{"name":"CLSID_DsAdminCreateObj","features":[108]},{"name":"CLSID_DsDisplaySpecifier","features":[108]},{"name":"CLSID_DsDomainTreeBrowser","features":[108]},{"name":"CLSID_DsFindAdvanced","features":[108]},{"name":"CLSID_DsFindComputer","features":[108]},{"name":"CLSID_DsFindContainer","features":[108]},{"name":"CLSID_DsFindDomainController","features":[108]},{"name":"CLSID_DsFindFrsMembers","features":[108]},{"name":"CLSID_DsFindObjects","features":[108]},{"name":"CLSID_DsFindPeople","features":[108]},{"name":"CLSID_DsFindPrinter","features":[108]},{"name":"CLSID_DsFindVolume","features":[108]},{"name":"CLSID_DsFindWriteableDomainController","features":[108]},{"name":"CLSID_DsFolderProperties","features":[108]},{"name":"CLSID_DsObjectPicker","features":[108]},{"name":"CLSID_DsPropertyPages","features":[108]},{"name":"CLSID_DsQuery","features":[108]},{"name":"CLSID_MicrosoftDS","features":[108]},{"name":"CQFF_ISOPTIONAL","features":[108]},{"name":"CQFF_NOGLOBALPAGES","features":[108]},{"name":"CQFORM","features":[108,50]},{"name":"CQPAGE","features":[1,108,50]},{"name":"CQPM_CLEARFORM","features":[108]},{"name":"CQPM_ENABLE","features":[108]},{"name":"CQPM_GETPARAMETERS","features":[108]},{"name":"CQPM_HANDLERSPECIFIC","features":[108]},{"name":"CQPM_HELP","features":[108]},{"name":"CQPM_INITIALIZE","features":[108]},{"name":"CQPM_PERSIST","features":[108]},{"name":"CQPM_RELEASE","features":[108]},{"name":"CQPM_SETDEFAULTPARAMETERS","features":[108]},{"name":"CaseIgnoreList","features":[108]},{"name":"DBDTF_RETURNEXTERNAL","features":[108]},{"name":"DBDTF_RETURNFQDN","features":[108]},{"name":"DBDTF_RETURNINBOUND","features":[108]},{"name":"DBDTF_RETURNINOUTBOUND","features":[108]},{"name":"DBDTF_RETURNMIXEDDOMAINS","features":[108]},{"name":"DNWithBinary","features":[108]},{"name":"DNWithString","features":[108]},{"name":"DOMAINDESC","features":[1,108]},{"name":"DOMAIN_CONTROLLER_INFOA","features":[108]},{"name":"DOMAIN_CONTROLLER_INFOW","features":[108]},{"name":"DOMAIN_TREE","features":[1,108]},{"name":"DSA_NEWOBJ_CTX_CLEANUP","features":[108]},{"name":"DSA_NEWOBJ_CTX_COMMIT","features":[108]},{"name":"DSA_NEWOBJ_CTX_POSTCOMMIT","features":[108]},{"name":"DSA_NEWOBJ_CTX_PRECOMMIT","features":[108]},{"name":"DSA_NEWOBJ_DISPINFO","features":[108,50]},{"name":"DSA_NOTIFY_DEL","features":[108]},{"name":"DSA_NOTIFY_FLAG_ADDITIONAL_DATA","features":[108]},{"name":"DSA_NOTIFY_FLAG_FORCE_ADDITIONAL_DATA","features":[108]},{"name":"DSA_NOTIFY_MOV","features":[108]},{"name":"DSA_NOTIFY_PROP","features":[108]},{"name":"DSA_NOTIFY_REN","features":[108]},{"name":"DSBF_DISPLAYNAME","features":[108]},{"name":"DSBF_ICONLOCATION","features":[108]},{"name":"DSBF_STATE","features":[108]},{"name":"DSBID_BANNER","features":[108]},{"name":"DSBID_CONTAINERLIST","features":[108]},{"name":"DSBITEMA","features":[108]},{"name":"DSBITEMW","features":[108]},{"name":"DSBI_CHECKBOXES","features":[108]},{"name":"DSBI_DONTSIGNSEAL","features":[108]},{"name":"DSBI_ENTIREDIRECTORY","features":[108]},{"name":"DSBI_EXPANDONOPEN","features":[108]},{"name":"DSBI_HASCREDENTIALS","features":[108]},{"name":"DSBI_IGNORETREATASLEAF","features":[108]},{"name":"DSBI_INCLUDEHIDDEN","features":[108]},{"name":"DSBI_NOBUTTONS","features":[108]},{"name":"DSBI_NOLINES","features":[108]},{"name":"DSBI_NOLINESATROOT","features":[108]},{"name":"DSBI_NOROOT","features":[108]},{"name":"DSBI_RETURNOBJECTCLASS","features":[108]},{"name":"DSBI_RETURN_FORMAT","features":[108]},{"name":"DSBI_SIMPLEAUTHENTICATE","features":[108]},{"name":"DSBM_CHANGEIMAGESTATE","features":[108]},{"name":"DSBM_CONTEXTMENU","features":[108]},{"name":"DSBM_HELP","features":[108]},{"name":"DSBM_QUERYINSERT","features":[108]},{"name":"DSBM_QUERYINSERTA","features":[108]},{"name":"DSBM_QUERYINSERTW","features":[108]},{"name":"DSBROWSEINFOA","features":[1,108,109]},{"name":"DSBROWSEINFOW","features":[1,108,109]},{"name":"DSBS_CHECKED","features":[108]},{"name":"DSBS_HIDDEN","features":[108]},{"name":"DSBS_ROOT","features":[108]},{"name":"DSB_MAX_DISPLAYNAME_CHARS","features":[108]},{"name":"DSCCIF_HASWIZARDDIALOG","features":[108]},{"name":"DSCCIF_HASWIZARDPRIMARYPAGE","features":[108]},{"name":"DSCLASSCREATIONINFO","features":[108]},{"name":"DSCOLUMN","features":[108]},{"name":"DSDISPLAYSPECOPTIONS","features":[108]},{"name":"DSDSOF_DONTSIGNSEAL","features":[108]},{"name":"DSDSOF_DSAVAILABLE","features":[108]},{"name":"DSDSOF_HASUSERANDSERVERINFO","features":[108]},{"name":"DSDSOF_SIMPLEAUTHENTICATE","features":[108]},{"name":"DSECAF_NOTLISTED","features":[108]},{"name":"DSGIF_DEFAULTISCONTAINER","features":[108]},{"name":"DSGIF_GETDEFAULTICON","features":[108]},{"name":"DSGIF_ISDISABLED","features":[108]},{"name":"DSGIF_ISMASK","features":[108]},{"name":"DSGIF_ISNORMAL","features":[108]},{"name":"DSGIF_ISOPEN","features":[108]},{"name":"DSICCF_IGNORETREATASLEAF","features":[108]},{"name":"DSOBJECT","features":[108]},{"name":"DSOBJECTNAMES","features":[108]},{"name":"DSOBJECT_ISCONTAINER","features":[108]},{"name":"DSOBJECT_READONLYPAGES","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_APP_PACKAGES","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_WELLKNOWN_SIDS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_ANONYMOUS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_AUTHENTICATED_USER","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_BATCH","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_COMPUTERS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_GROUP","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_OWNER","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_DIALUP","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_EXCLUDE_BUILTIN_GROUPS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_GLOBAL_GROUPS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_IIS_APP_POOL","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERACTIVE","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERNET_USER","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_ACCOUNTS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_GROUPS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_LOGON","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_SERVICE","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK_SERVICE","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_OWNER_RIGHTS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_REMOTE_LOGON","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICE","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICES","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_SYSTEM","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_TERMINAL_SERVER","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_THIS_ORG_CERT","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_USERS","features":[108]},{"name":"DSOP_DOWNLEVEL_FILTER_WORLD","features":[108]},{"name":"DSOP_FILTER_BUILTIN_GROUPS","features":[108]},{"name":"DSOP_FILTER_COMPUTERS","features":[108]},{"name":"DSOP_FILTER_CONTACTS","features":[108]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_DL","features":[108]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_SE","features":[108]},{"name":"DSOP_FILTER_FLAGS","features":[108]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_DL","features":[108]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_SE","features":[108]},{"name":"DSOP_FILTER_INCLUDE_ADVANCED_VIEW","features":[108]},{"name":"DSOP_FILTER_PASSWORDSETTINGS_OBJECTS","features":[108]},{"name":"DSOP_FILTER_SERVICE_ACCOUNTS","features":[108]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_DL","features":[108]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_SE","features":[108]},{"name":"DSOP_FILTER_USERS","features":[108]},{"name":"DSOP_FILTER_WELL_KNOWN_PRINCIPALS","features":[108]},{"name":"DSOP_FLAG_MULTISELECT","features":[108]},{"name":"DSOP_FLAG_SKIP_TARGET_COMPUTER_DC_CHECK","features":[108]},{"name":"DSOP_INIT_INFO","features":[108]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_COMPUTERS","features":[108]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_CONTACTS","features":[108]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_GROUPS","features":[108]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_PASSWORDSETTINGS_OBJECTS","features":[108]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_SERVICE_ACCOUNTS","features":[108]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_USERS","features":[108]},{"name":"DSOP_SCOPE_FLAG_STARTING_SCOPE","features":[108]},{"name":"DSOP_SCOPE_FLAG_WANT_DOWNLEVEL_BUILTIN_PATH","features":[108]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_GC","features":[108]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_LDAP","features":[108]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_WINNT","features":[108]},{"name":"DSOP_SCOPE_FLAG_WANT_SID_PATH","features":[108]},{"name":"DSOP_SCOPE_INIT_INFO","features":[108]},{"name":"DSOP_SCOPE_TYPE_DOWNLEVEL_JOINED_DOMAIN","features":[108]},{"name":"DSOP_SCOPE_TYPE_ENTERPRISE_DOMAIN","features":[108]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_DOWNLEVEL_DOMAIN","features":[108]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_UPLEVEL_DOMAIN","features":[108]},{"name":"DSOP_SCOPE_TYPE_GLOBAL_CATALOG","features":[108]},{"name":"DSOP_SCOPE_TYPE_TARGET_COMPUTER","features":[108]},{"name":"DSOP_SCOPE_TYPE_UPLEVEL_JOINED_DOMAIN","features":[108]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_DOWNLEVEL_SCOPE","features":[108]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_UPLEVEL_SCOPE","features":[108]},{"name":"DSOP_SCOPE_TYPE_WORKGROUP","features":[108]},{"name":"DSOP_UPLEVEL_FILTER_FLAGS","features":[108]},{"name":"DSPROPERTYPAGEINFO","features":[108]},{"name":"DSPROP_ATTRCHANGED_MSG","features":[108]},{"name":"DSPROVIDER_ADVANCED","features":[108]},{"name":"DSPROVIDER_AD_LDS","features":[108]},{"name":"DSPROVIDER_UNUSED_0","features":[108]},{"name":"DSPROVIDER_UNUSED_1","features":[108]},{"name":"DSPROVIDER_UNUSED_2","features":[108]},{"name":"DSPROVIDER_UNUSED_3","features":[108]},{"name":"DSQPF_ENABLEADMINFEATURES","features":[108]},{"name":"DSQPF_ENABLEADVANCEDFEATURES","features":[108]},{"name":"DSQPF_HASCREDENTIALS","features":[108]},{"name":"DSQPF_NOCHOOSECOLUMNS","features":[108]},{"name":"DSQPF_NOSAVE","features":[108]},{"name":"DSQPF_SAVELOCATION","features":[108]},{"name":"DSQPF_SHOWHIDDENOBJECTS","features":[108]},{"name":"DSQPM_GETCLASSLIST","features":[108]},{"name":"DSQPM_HELPTOPICS","features":[108]},{"name":"DSQUERYCLASSLIST","features":[108]},{"name":"DSQUERYINITPARAMS","features":[108]},{"name":"DSQUERYPARAMS","features":[1,108]},{"name":"DSROLE_MACHINE_ROLE","features":[108]},{"name":"DSROLE_OPERATION_STATE","features":[108]},{"name":"DSROLE_OPERATION_STATE_INFO","features":[108]},{"name":"DSROLE_PRIMARY_DOMAIN_GUID_PRESENT","features":[108]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_BASIC","features":[108]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_LEVEL","features":[108]},{"name":"DSROLE_PRIMARY_DS_MIXED_MODE","features":[108]},{"name":"DSROLE_PRIMARY_DS_READONLY","features":[108]},{"name":"DSROLE_PRIMARY_DS_RUNNING","features":[108]},{"name":"DSROLE_SERVER_STATE","features":[108]},{"name":"DSROLE_UPGRADE_IN_PROGRESS","features":[108]},{"name":"DSROLE_UPGRADE_STATUS_INFO","features":[108]},{"name":"DSSSF_DONTSIGNSEAL","features":[108]},{"name":"DSSSF_DSAVAILABLE","features":[108]},{"name":"DSSSF_SIMPLEAUTHENTICATE","features":[108]},{"name":"DS_AVOID_SELF","features":[108]},{"name":"DS_BACKGROUND_ONLY","features":[108]},{"name":"DS_BEHAVIOR_LONGHORN","features":[108]},{"name":"DS_BEHAVIOR_WIN2000","features":[108]},{"name":"DS_BEHAVIOR_WIN2003","features":[108]},{"name":"DS_BEHAVIOR_WIN2003_WITH_MIXED_DOMAINS","features":[108]},{"name":"DS_BEHAVIOR_WIN2008","features":[108]},{"name":"DS_BEHAVIOR_WIN2008R2","features":[108]},{"name":"DS_BEHAVIOR_WIN2012","features":[108]},{"name":"DS_BEHAVIOR_WIN2012R2","features":[108]},{"name":"DS_BEHAVIOR_WIN2016","features":[108]},{"name":"DS_BEHAVIOR_WIN7","features":[108]},{"name":"DS_BEHAVIOR_WIN8","features":[108]},{"name":"DS_BEHAVIOR_WINBLUE","features":[108]},{"name":"DS_BEHAVIOR_WINTHRESHOLD","features":[108]},{"name":"DS_CANONICAL_NAME","features":[108]},{"name":"DS_CANONICAL_NAME_EX","features":[108]},{"name":"DS_CLOSEST_FLAG","features":[108]},{"name":"DS_DIRECTORY_SERVICE_10_REQUIRED","features":[108]},{"name":"DS_DIRECTORY_SERVICE_6_REQUIRED","features":[108]},{"name":"DS_DIRECTORY_SERVICE_8_REQUIRED","features":[108]},{"name":"DS_DIRECTORY_SERVICE_9_REQUIRED","features":[108]},{"name":"DS_DIRECTORY_SERVICE_PREFERRED","features":[108]},{"name":"DS_DIRECTORY_SERVICE_REQUIRED","features":[108]},{"name":"DS_DISPLAY_NAME","features":[108]},{"name":"DS_DNS_CONTROLLER_FLAG","features":[108]},{"name":"DS_DNS_DOMAIN_FLAG","features":[108]},{"name":"DS_DNS_DOMAIN_NAME","features":[108]},{"name":"DS_DNS_FOREST_FLAG","features":[108]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1A","features":[1,108]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1W","features":[1,108]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2A","features":[1,108]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2W","features":[1,108]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3A","features":[1,108]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3W","features":[1,108]},{"name":"DS_DOMAIN_DIRECT_INBOUND","features":[108]},{"name":"DS_DOMAIN_DIRECT_OUTBOUND","features":[108]},{"name":"DS_DOMAIN_IN_FOREST","features":[108]},{"name":"DS_DOMAIN_NATIVE_MODE","features":[108]},{"name":"DS_DOMAIN_PRIMARY","features":[108]},{"name":"DS_DOMAIN_TREE_ROOT","features":[108]},{"name":"DS_DOMAIN_TRUSTSA","features":[1,108]},{"name":"DS_DOMAIN_TRUSTSW","features":[1,108]},{"name":"DS_DS_10_FLAG","features":[108]},{"name":"DS_DS_8_FLAG","features":[108]},{"name":"DS_DS_9_FLAG","features":[108]},{"name":"DS_DS_FLAG","features":[108]},{"name":"DS_EXIST_ADVISORY_MODE","features":[108]},{"name":"DS_FORCE_REDISCOVERY","features":[108]},{"name":"DS_FQDN_1779_NAME","features":[108]},{"name":"DS_FULL_SECRET_DOMAIN_6_FLAG","features":[108]},{"name":"DS_GC_FLAG","features":[108]},{"name":"DS_GC_SERVER_REQUIRED","features":[108]},{"name":"DS_GFTI_UPDATE_TDO","features":[108]},{"name":"DS_GFTI_VALID_FLAGS","features":[108]},{"name":"DS_GOOD_TIMESERV_FLAG","features":[108]},{"name":"DS_GOOD_TIMESERV_PREFERRED","features":[108]},{"name":"DS_INSTANCETYPE_IS_NC_HEAD","features":[108]},{"name":"DS_INSTANCETYPE_NC_COMING","features":[108]},{"name":"DS_INSTANCETYPE_NC_GOING","features":[108]},{"name":"DS_INSTANCETYPE_NC_IS_WRITEABLE","features":[108]},{"name":"DS_IP_REQUIRED","features":[108]},{"name":"DS_IS_DNS_NAME","features":[108]},{"name":"DS_IS_FLAT_NAME","features":[108]},{"name":"DS_KCC_FLAG_ASYNC_OP","features":[108]},{"name":"DS_KCC_FLAG_DAMPED","features":[108]},{"name":"DS_KCC_TASKID","features":[108]},{"name":"DS_KCC_TASKID_UPDATE_TOPOLOGY","features":[108]},{"name":"DS_KDC_FLAG","features":[108]},{"name":"DS_KDC_REQUIRED","features":[108]},{"name":"DS_KEY_LIST_FLAG","features":[108]},{"name":"DS_KEY_LIST_SUPPORT_REQUIRED","features":[108]},{"name":"DS_LDAP_FLAG","features":[108]},{"name":"DS_LIST_ACCOUNT_OBJECT_FOR_SERVER","features":[108]},{"name":"DS_LIST_DNS_HOST_NAME_FOR_SERVER","features":[108]},{"name":"DS_LIST_DSA_OBJECT_FOR_SERVER","features":[108]},{"name":"DS_MANGLE_FOR","features":[108]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_DELETION","features":[108]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_NAME_CONFLICT","features":[108]},{"name":"DS_MANGLE_UNKNOWN","features":[108]},{"name":"DS_NAME_ERROR","features":[108]},{"name":"DS_NAME_ERROR_DOMAIN_ONLY","features":[108]},{"name":"DS_NAME_ERROR_NOT_FOUND","features":[108]},{"name":"DS_NAME_ERROR_NOT_UNIQUE","features":[108]},{"name":"DS_NAME_ERROR_NO_MAPPING","features":[108]},{"name":"DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[108]},{"name":"DS_NAME_ERROR_RESOLVING","features":[108]},{"name":"DS_NAME_ERROR_TRUST_REFERRAL","features":[108]},{"name":"DS_NAME_FLAGS","features":[108]},{"name":"DS_NAME_FLAG_EVAL_AT_DC","features":[108]},{"name":"DS_NAME_FLAG_GCVERIFY","features":[108]},{"name":"DS_NAME_FLAG_SYNTACTICAL_ONLY","features":[108]},{"name":"DS_NAME_FLAG_TRUST_REFERRAL","features":[108]},{"name":"DS_NAME_FORMAT","features":[108]},{"name":"DS_NAME_NO_ERROR","features":[108]},{"name":"DS_NAME_NO_FLAGS","features":[108]},{"name":"DS_NAME_RESULTA","features":[108]},{"name":"DS_NAME_RESULTW","features":[108]},{"name":"DS_NAME_RESULT_ITEMA","features":[108]},{"name":"DS_NAME_RESULT_ITEMW","features":[108]},{"name":"DS_NDNC_FLAG","features":[108]},{"name":"DS_NOTIFY_AFTER_SITE_RECORDS","features":[108]},{"name":"DS_NT4_ACCOUNT_NAME","features":[108]},{"name":"DS_ONLY_DO_SITE_NAME","features":[108]},{"name":"DS_ONLY_LDAP_NEEDED","features":[108]},{"name":"DS_PDC_FLAG","features":[108]},{"name":"DS_PDC_REQUIRED","features":[108]},{"name":"DS_PING_FLAGS","features":[108]},{"name":"DS_PROP_ADMIN_PREFIX","features":[108]},{"name":"DS_PROP_SHELL_PREFIX","features":[108]},{"name":"DS_REPADD_ASYNCHRONOUS_OPERATION","features":[108]},{"name":"DS_REPADD_ASYNCHRONOUS_REPLICA","features":[108]},{"name":"DS_REPADD_CRITICAL","features":[108]},{"name":"DS_REPADD_DISABLE_NOTIFICATION","features":[108]},{"name":"DS_REPADD_DISABLE_PERIODIC","features":[108]},{"name":"DS_REPADD_INITIAL","features":[108]},{"name":"DS_REPADD_INTERSITE_MESSAGING","features":[108]},{"name":"DS_REPADD_NEVER_NOTIFY","features":[108]},{"name":"DS_REPADD_NONGC_RO_REPLICA","features":[108]},{"name":"DS_REPADD_PERIODIC","features":[108]},{"name":"DS_REPADD_SELECT_SECRETS","features":[108]},{"name":"DS_REPADD_TWO_WAY","features":[108]},{"name":"DS_REPADD_USE_COMPRESSION","features":[108]},{"name":"DS_REPADD_WRITEABLE","features":[108]},{"name":"DS_REPDEL_ASYNCHRONOUS_OPERATION","features":[108]},{"name":"DS_REPDEL_IGNORE_ERRORS","features":[108]},{"name":"DS_REPDEL_INTERSITE_MESSAGING","features":[108]},{"name":"DS_REPDEL_LOCAL_ONLY","features":[108]},{"name":"DS_REPDEL_NO_SOURCE","features":[108]},{"name":"DS_REPDEL_REF_OK","features":[108]},{"name":"DS_REPDEL_WRITEABLE","features":[108]},{"name":"DS_REPL_ATTR_META_DATA","features":[1,108]},{"name":"DS_REPL_ATTR_META_DATA_2","features":[1,108]},{"name":"DS_REPL_ATTR_META_DATA_BLOB","features":[1,108]},{"name":"DS_REPL_ATTR_VALUE_META_DATA","features":[1,108]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_2","features":[1,108]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_EXT","features":[1,108]},{"name":"DS_REPL_CURSOR","features":[108]},{"name":"DS_REPL_CURSORS","features":[108]},{"name":"DS_REPL_CURSORS_2","features":[1,108]},{"name":"DS_REPL_CURSORS_3W","features":[1,108]},{"name":"DS_REPL_CURSOR_2","features":[1,108]},{"name":"DS_REPL_CURSOR_3W","features":[1,108]},{"name":"DS_REPL_CURSOR_BLOB","features":[1,108]},{"name":"DS_REPL_INFO_CURSORS_2_FOR_NC","features":[108]},{"name":"DS_REPL_INFO_CURSORS_3_FOR_NC","features":[108]},{"name":"DS_REPL_INFO_CURSORS_FOR_NC","features":[108]},{"name":"DS_REPL_INFO_FLAG_IMPROVE_LINKED_ATTRS","features":[108]},{"name":"DS_REPL_INFO_KCC_DSA_CONNECT_FAILURES","features":[108]},{"name":"DS_REPL_INFO_KCC_DSA_LINK_FAILURES","features":[108]},{"name":"DS_REPL_INFO_METADATA_2_FOR_ATTR_VALUE","features":[108]},{"name":"DS_REPL_INFO_METADATA_2_FOR_OBJ","features":[108]},{"name":"DS_REPL_INFO_METADATA_EXT_FOR_ATTR_VALUE","features":[108]},{"name":"DS_REPL_INFO_METADATA_FOR_ATTR_VALUE","features":[108]},{"name":"DS_REPL_INFO_METADATA_FOR_OBJ","features":[108]},{"name":"DS_REPL_INFO_NEIGHBORS","features":[108]},{"name":"DS_REPL_INFO_PENDING_OPS","features":[108]},{"name":"DS_REPL_INFO_TYPE","features":[108]},{"name":"DS_REPL_INFO_TYPE_MAX","features":[108]},{"name":"DS_REPL_KCC_DSA_FAILURESW","features":[1,108]},{"name":"DS_REPL_KCC_DSA_FAILUREW","features":[1,108]},{"name":"DS_REPL_KCC_DSA_FAILUREW_BLOB","features":[1,108]},{"name":"DS_REPL_NBR_COMPRESS_CHANGES","features":[108]},{"name":"DS_REPL_NBR_DISABLE_SCHEDULED_SYNC","features":[108]},{"name":"DS_REPL_NBR_DO_SCHEDULED_SYNCS","features":[108]},{"name":"DS_REPL_NBR_FULL_SYNC_IN_PROGRESS","features":[108]},{"name":"DS_REPL_NBR_FULL_SYNC_NEXT_PACKET","features":[108]},{"name":"DS_REPL_NBR_GCSPN","features":[108]},{"name":"DS_REPL_NBR_IGNORE_CHANGE_NOTIFICATIONS","features":[108]},{"name":"DS_REPL_NBR_NEVER_SYNCED","features":[108]},{"name":"DS_REPL_NBR_NONGC_RO_REPLICA","features":[108]},{"name":"DS_REPL_NBR_NO_CHANGE_NOTIFICATIONS","features":[108]},{"name":"DS_REPL_NBR_PARTIAL_ATTRIBUTE_SET","features":[108]},{"name":"DS_REPL_NBR_PREEMPTED","features":[108]},{"name":"DS_REPL_NBR_RETURN_OBJECT_PARENTS","features":[108]},{"name":"DS_REPL_NBR_SELECT_SECRETS","features":[108]},{"name":"DS_REPL_NBR_SYNC_ON_STARTUP","features":[108]},{"name":"DS_REPL_NBR_TWO_WAY_SYNC","features":[108]},{"name":"DS_REPL_NBR_USE_ASYNC_INTERSITE_TRANSPORT","features":[108]},{"name":"DS_REPL_NBR_WRITEABLE","features":[108]},{"name":"DS_REPL_NEIGHBORSW","features":[1,108]},{"name":"DS_REPL_NEIGHBORW","features":[1,108]},{"name":"DS_REPL_NEIGHBORW_BLOB","features":[1,108]},{"name":"DS_REPL_OBJ_META_DATA","features":[1,108]},{"name":"DS_REPL_OBJ_META_DATA_2","features":[1,108]},{"name":"DS_REPL_OPW","features":[1,108]},{"name":"DS_REPL_OPW_BLOB","features":[1,108]},{"name":"DS_REPL_OP_TYPE","features":[108]},{"name":"DS_REPL_OP_TYPE_ADD","features":[108]},{"name":"DS_REPL_OP_TYPE_DELETE","features":[108]},{"name":"DS_REPL_OP_TYPE_MODIFY","features":[108]},{"name":"DS_REPL_OP_TYPE_SYNC","features":[108]},{"name":"DS_REPL_OP_TYPE_UPDATE_REFS","features":[108]},{"name":"DS_REPL_PENDING_OPSW","features":[1,108]},{"name":"DS_REPL_QUEUE_STATISTICSW","features":[1,108]},{"name":"DS_REPL_VALUE_META_DATA","features":[1,108]},{"name":"DS_REPL_VALUE_META_DATA_2","features":[1,108]},{"name":"DS_REPL_VALUE_META_DATA_BLOB","features":[1,108]},{"name":"DS_REPL_VALUE_META_DATA_BLOB_EXT","features":[1,108]},{"name":"DS_REPL_VALUE_META_DATA_EXT","features":[1,108]},{"name":"DS_REPMOD_ASYNCHRONOUS_OPERATION","features":[108]},{"name":"DS_REPMOD_UPDATE_ADDRESS","features":[108]},{"name":"DS_REPMOD_UPDATE_FLAGS","features":[108]},{"name":"DS_REPMOD_UPDATE_INSTANCE","features":[108]},{"name":"DS_REPMOD_UPDATE_RESULT","features":[108]},{"name":"DS_REPMOD_UPDATE_SCHEDULE","features":[108]},{"name":"DS_REPMOD_UPDATE_TRANSPORT","features":[108]},{"name":"DS_REPMOD_WRITEABLE","features":[108]},{"name":"DS_REPSYNCALL_ABORT_IF_SERVER_UNAVAILABLE","features":[108]},{"name":"DS_REPSYNCALL_CROSS_SITE_BOUNDARIES","features":[108]},{"name":"DS_REPSYNCALL_DO_NOT_SYNC","features":[108]},{"name":"DS_REPSYNCALL_ERRINFOA","features":[108]},{"name":"DS_REPSYNCALL_ERRINFOW","features":[108]},{"name":"DS_REPSYNCALL_ERROR","features":[108]},{"name":"DS_REPSYNCALL_EVENT","features":[108]},{"name":"DS_REPSYNCALL_EVENT_ERROR","features":[108]},{"name":"DS_REPSYNCALL_EVENT_FINISHED","features":[108]},{"name":"DS_REPSYNCALL_EVENT_SYNC_COMPLETED","features":[108]},{"name":"DS_REPSYNCALL_EVENT_SYNC_STARTED","features":[108]},{"name":"DS_REPSYNCALL_ID_SERVERS_BY_DN","features":[108]},{"name":"DS_REPSYNCALL_NO_OPTIONS","features":[108]},{"name":"DS_REPSYNCALL_PUSH_CHANGES_OUTWARD","features":[108]},{"name":"DS_REPSYNCALL_SERVER_UNREACHABLE","features":[108]},{"name":"DS_REPSYNCALL_SKIP_INITIAL_CHECK","features":[108]},{"name":"DS_REPSYNCALL_SYNCA","features":[108]},{"name":"DS_REPSYNCALL_SYNCW","features":[108]},{"name":"DS_REPSYNCALL_SYNC_ADJACENT_SERVERS_ONLY","features":[108]},{"name":"DS_REPSYNCALL_UPDATEA","features":[108]},{"name":"DS_REPSYNCALL_UPDATEW","features":[108]},{"name":"DS_REPSYNCALL_WIN32_ERROR_CONTACTING_SERVER","features":[108]},{"name":"DS_REPSYNCALL_WIN32_ERROR_REPLICATING","features":[108]},{"name":"DS_REPSYNC_ABANDONED","features":[108]},{"name":"DS_REPSYNC_ADD_REFERENCE","features":[108]},{"name":"DS_REPSYNC_ASYNCHRONOUS_OPERATION","features":[108]},{"name":"DS_REPSYNC_ASYNCHRONOUS_REPLICA","features":[108]},{"name":"DS_REPSYNC_CRITICAL","features":[108]},{"name":"DS_REPSYNC_FORCE","features":[108]},{"name":"DS_REPSYNC_FULL","features":[108]},{"name":"DS_REPSYNC_FULL_IN_PROGRESS","features":[108]},{"name":"DS_REPSYNC_INITIAL","features":[108]},{"name":"DS_REPSYNC_INITIAL_IN_PROGRESS","features":[108]},{"name":"DS_REPSYNC_INTERSITE_MESSAGING","features":[108]},{"name":"DS_REPSYNC_NEVER_COMPLETED","features":[108]},{"name":"DS_REPSYNC_NEVER_NOTIFY","features":[108]},{"name":"DS_REPSYNC_NONGC_RO_REPLICA","features":[108]},{"name":"DS_REPSYNC_NOTIFICATION","features":[108]},{"name":"DS_REPSYNC_NO_DISCARD","features":[108]},{"name":"DS_REPSYNC_PARTIAL_ATTRIBUTE_SET","features":[108]},{"name":"DS_REPSYNC_PERIODIC","features":[108]},{"name":"DS_REPSYNC_PREEMPTED","features":[108]},{"name":"DS_REPSYNC_REQUEUE","features":[108]},{"name":"DS_REPSYNC_SELECT_SECRETS","features":[108]},{"name":"DS_REPSYNC_TWO_WAY","features":[108]},{"name":"DS_REPSYNC_URGENT","features":[108]},{"name":"DS_REPSYNC_USE_COMPRESSION","features":[108]},{"name":"DS_REPSYNC_WRITEABLE","features":[108]},{"name":"DS_REPUPD_ADD_REFERENCE","features":[108]},{"name":"DS_REPUPD_ASYNCHRONOUS_OPERATION","features":[108]},{"name":"DS_REPUPD_DELETE_REFERENCE","features":[108]},{"name":"DS_REPUPD_REFERENCE_GCSPN","features":[108]},{"name":"DS_REPUPD_WRITEABLE","features":[108]},{"name":"DS_RETURN_DNS_NAME","features":[108]},{"name":"DS_RETURN_FLAT_NAME","features":[108]},{"name":"DS_ROLE_DOMAIN_OWNER","features":[108]},{"name":"DS_ROLE_INFRASTRUCTURE_OWNER","features":[108]},{"name":"DS_ROLE_PDC_OWNER","features":[108]},{"name":"DS_ROLE_RID_OWNER","features":[108]},{"name":"DS_ROLE_SCHEMA_OWNER","features":[108]},{"name":"DS_SCHEMA_GUID_ATTR","features":[108]},{"name":"DS_SCHEMA_GUID_ATTR_SET","features":[108]},{"name":"DS_SCHEMA_GUID_CLASS","features":[108]},{"name":"DS_SCHEMA_GUID_CONTROL_RIGHT","features":[108]},{"name":"DS_SCHEMA_GUID_MAPA","features":[108]},{"name":"DS_SCHEMA_GUID_MAPW","features":[108]},{"name":"DS_SCHEMA_GUID_NOT_FOUND","features":[108]},{"name":"DS_SELECTION","features":[1,108,41,42]},{"name":"DS_SELECTION_LIST","features":[1,108,41,42]},{"name":"DS_SELECT_SECRET_DOMAIN_6_FLAG","features":[108]},{"name":"DS_SERVICE_PRINCIPAL_NAME","features":[108]},{"name":"DS_SID_OR_SID_HISTORY_NAME","features":[108]},{"name":"DS_SITE_COST_INFO","features":[108]},{"name":"DS_SPN_ADD_SPN_OP","features":[108]},{"name":"DS_SPN_DELETE_SPN_OP","features":[108]},{"name":"DS_SPN_DNS_HOST","features":[108]},{"name":"DS_SPN_DN_HOST","features":[108]},{"name":"DS_SPN_DOMAIN","features":[108]},{"name":"DS_SPN_NAME_TYPE","features":[108]},{"name":"DS_SPN_NB_DOMAIN","features":[108]},{"name":"DS_SPN_NB_HOST","features":[108]},{"name":"DS_SPN_REPLACE_SPN_OP","features":[108]},{"name":"DS_SPN_SERVICE","features":[108]},{"name":"DS_SPN_WRITE_OP","features":[108]},{"name":"DS_SYNCED_EVENT_NAME","features":[108]},{"name":"DS_SYNCED_EVENT_NAME_W","features":[108]},{"name":"DS_TIMESERV_FLAG","features":[108]},{"name":"DS_TIMESERV_REQUIRED","features":[108]},{"name":"DS_TRY_NEXTCLOSEST_SITE","features":[108]},{"name":"DS_UNIQUE_ID_NAME","features":[108]},{"name":"DS_UNKNOWN_NAME","features":[108]},{"name":"DS_USER_PRINCIPAL_NAME","features":[108]},{"name":"DS_WEB_SERVICE_REQUIRED","features":[108]},{"name":"DS_WRITABLE_FLAG","features":[108]},{"name":"DS_WRITABLE_REQUIRED","features":[108]},{"name":"DS_WS_FLAG","features":[108]},{"name":"DsAddSidHistoryA","features":[1,108]},{"name":"DsAddSidHistoryW","features":[1,108]},{"name":"DsAddressToSiteNamesA","features":[108,15]},{"name":"DsAddressToSiteNamesExA","features":[108,15]},{"name":"DsAddressToSiteNamesExW","features":[108,15]},{"name":"DsAddressToSiteNamesW","features":[108,15]},{"name":"DsBindA","features":[1,108]},{"name":"DsBindByInstanceA","features":[1,108]},{"name":"DsBindByInstanceW","features":[1,108]},{"name":"DsBindToISTGA","features":[1,108]},{"name":"DsBindToISTGW","features":[1,108]},{"name":"DsBindW","features":[1,108]},{"name":"DsBindWithCredA","features":[1,108]},{"name":"DsBindWithCredW","features":[1,108]},{"name":"DsBindWithSpnA","features":[1,108]},{"name":"DsBindWithSpnExA","features":[1,108]},{"name":"DsBindWithSpnExW","features":[1,108]},{"name":"DsBindWithSpnW","features":[1,108]},{"name":"DsBindingSetTimeout","features":[1,108]},{"name":"DsBrowseForContainerA","features":[1,108,109]},{"name":"DsBrowseForContainerW","features":[1,108,109]},{"name":"DsClientMakeSpnForTargetServerA","features":[108]},{"name":"DsClientMakeSpnForTargetServerW","features":[108]},{"name":"DsCrackNamesA","features":[1,108]},{"name":"DsCrackNamesW","features":[1,108]},{"name":"DsCrackSpn2A","features":[108]},{"name":"DsCrackSpn2W","features":[108]},{"name":"DsCrackSpn3W","features":[108]},{"name":"DsCrackSpn4W","features":[108]},{"name":"DsCrackSpnA","features":[108]},{"name":"DsCrackSpnW","features":[108]},{"name":"DsCrackUnquotedMangledRdnA","features":[1,108]},{"name":"DsCrackUnquotedMangledRdnW","features":[1,108]},{"name":"DsDeregisterDnsHostRecordsA","features":[108]},{"name":"DsDeregisterDnsHostRecordsW","features":[108]},{"name":"DsEnumerateDomainTrustsA","features":[1,108]},{"name":"DsEnumerateDomainTrustsW","features":[1,108]},{"name":"DsFreeDomainControllerInfoA","features":[108]},{"name":"DsFreeDomainControllerInfoW","features":[108]},{"name":"DsFreeNameResultA","features":[108]},{"name":"DsFreeNameResultW","features":[108]},{"name":"DsFreePasswordCredentials","features":[108]},{"name":"DsFreeSchemaGuidMapA","features":[108]},{"name":"DsFreeSchemaGuidMapW","features":[108]},{"name":"DsFreeSpnArrayA","features":[108]},{"name":"DsFreeSpnArrayW","features":[108]},{"name":"DsGetDcCloseW","features":[1,108]},{"name":"DsGetDcNameA","features":[108]},{"name":"DsGetDcNameW","features":[108]},{"name":"DsGetDcNextA","features":[1,108,15]},{"name":"DsGetDcNextW","features":[1,108,15]},{"name":"DsGetDcOpenA","features":[1,108]},{"name":"DsGetDcOpenW","features":[1,108]},{"name":"DsGetDcSiteCoverageA","features":[108]},{"name":"DsGetDcSiteCoverageW","features":[108]},{"name":"DsGetDomainControllerInfoA","features":[1,108]},{"name":"DsGetDomainControllerInfoW","features":[1,108]},{"name":"DsGetForestTrustInformationW","features":[1,108,23]},{"name":"DsGetFriendlyClassName","features":[108]},{"name":"DsGetIcon","features":[108,50]},{"name":"DsGetRdnW","features":[108]},{"name":"DsGetSiteNameA","features":[108]},{"name":"DsGetSiteNameW","features":[108]},{"name":"DsGetSpnA","features":[108]},{"name":"DsGetSpnW","features":[108]},{"name":"DsInheritSecurityIdentityA","features":[1,108]},{"name":"DsInheritSecurityIdentityW","features":[1,108]},{"name":"DsIsMangledDnA","features":[1,108]},{"name":"DsIsMangledDnW","features":[1,108]},{"name":"DsIsMangledRdnValueA","features":[1,108]},{"name":"DsIsMangledRdnValueW","features":[1,108]},{"name":"DsListDomainsInSiteA","features":[1,108]},{"name":"DsListDomainsInSiteW","features":[1,108]},{"name":"DsListInfoForServerA","features":[1,108]},{"name":"DsListInfoForServerW","features":[1,108]},{"name":"DsListRolesA","features":[1,108]},{"name":"DsListRolesW","features":[1,108]},{"name":"DsListServersForDomainInSiteA","features":[1,108]},{"name":"DsListServersForDomainInSiteW","features":[1,108]},{"name":"DsListServersInSiteA","features":[1,108]},{"name":"DsListServersInSiteW","features":[1,108]},{"name":"DsListSitesA","features":[1,108]},{"name":"DsListSitesW","features":[1,108]},{"name":"DsMakePasswordCredentialsA","features":[108]},{"name":"DsMakePasswordCredentialsW","features":[108]},{"name":"DsMakeSpnA","features":[108]},{"name":"DsMakeSpnW","features":[108]},{"name":"DsMapSchemaGuidsA","features":[1,108]},{"name":"DsMapSchemaGuidsW","features":[1,108]},{"name":"DsMergeForestTrustInformationW","features":[1,108,23]},{"name":"DsQuerySitesByCostA","features":[1,108]},{"name":"DsQuerySitesByCostW","features":[1,108]},{"name":"DsQuerySitesFree","features":[108]},{"name":"DsQuoteRdnValueA","features":[108]},{"name":"DsQuoteRdnValueW","features":[108]},{"name":"DsRemoveDsDomainA","features":[1,108]},{"name":"DsRemoveDsDomainW","features":[1,108]},{"name":"DsRemoveDsServerA","features":[1,108]},{"name":"DsRemoveDsServerW","features":[1,108]},{"name":"DsReplicaAddA","features":[1,108]},{"name":"DsReplicaAddW","features":[1,108]},{"name":"DsReplicaConsistencyCheck","features":[1,108]},{"name":"DsReplicaDelA","features":[1,108]},{"name":"DsReplicaDelW","features":[1,108]},{"name":"DsReplicaFreeInfo","features":[108]},{"name":"DsReplicaGetInfo2W","features":[1,108]},{"name":"DsReplicaGetInfoW","features":[1,108]},{"name":"DsReplicaModifyA","features":[1,108]},{"name":"DsReplicaModifyW","features":[1,108]},{"name":"DsReplicaSyncA","features":[1,108]},{"name":"DsReplicaSyncAllA","features":[1,108]},{"name":"DsReplicaSyncAllW","features":[1,108]},{"name":"DsReplicaSyncW","features":[1,108]},{"name":"DsReplicaUpdateRefsA","features":[1,108]},{"name":"DsReplicaUpdateRefsW","features":[1,108]},{"name":"DsReplicaVerifyObjectsA","features":[1,108]},{"name":"DsReplicaVerifyObjectsW","features":[1,108]},{"name":"DsRoleFreeMemory","features":[108]},{"name":"DsRoleGetPrimaryDomainInformation","features":[108]},{"name":"DsRoleOperationActive","features":[108]},{"name":"DsRoleOperationIdle","features":[108]},{"name":"DsRoleOperationNeedReboot","features":[108]},{"name":"DsRoleOperationState","features":[108]},{"name":"DsRolePrimaryDomainInfoBasic","features":[108]},{"name":"DsRoleServerBackup","features":[108]},{"name":"DsRoleServerPrimary","features":[108]},{"name":"DsRoleServerUnknown","features":[108]},{"name":"DsRoleUpgradeStatus","features":[108]},{"name":"DsRole_RoleBackupDomainController","features":[108]},{"name":"DsRole_RoleMemberServer","features":[108]},{"name":"DsRole_RoleMemberWorkstation","features":[108]},{"name":"DsRole_RolePrimaryDomainController","features":[108]},{"name":"DsRole_RoleStandaloneServer","features":[108]},{"name":"DsRole_RoleStandaloneWorkstation","features":[108]},{"name":"DsServerRegisterSpnA","features":[108]},{"name":"DsServerRegisterSpnW","features":[108]},{"name":"DsUnBindA","features":[1,108]},{"name":"DsUnBindW","features":[1,108]},{"name":"DsUnquoteRdnValueA","features":[108]},{"name":"DsUnquoteRdnValueW","features":[108]},{"name":"DsValidateSubnetNameA","features":[108]},{"name":"DsValidateSubnetNameW","features":[108]},{"name":"DsWriteAccountSpnA","features":[1,108]},{"name":"DsWriteAccountSpnW","features":[1,108]},{"name":"Email","features":[108]},{"name":"FACILITY_BACKUP","features":[108]},{"name":"FACILITY_NTDSB","features":[108]},{"name":"FACILITY_SYSTEM","features":[108]},{"name":"FLAG_DISABLABLE_OPTIONAL_FEATURE","features":[108]},{"name":"FLAG_DOMAIN_OPTIONAL_FEATURE","features":[108]},{"name":"FLAG_FOREST_OPTIONAL_FEATURE","features":[108]},{"name":"FLAG_SERVER_OPTIONAL_FEATURE","features":[108]},{"name":"FRSCONN_MAX_PRIORITY","features":[108]},{"name":"FRSCONN_PRIORITY_MASK","features":[108]},{"name":"FaxNumber","features":[108]},{"name":"FreeADsMem","features":[1,108]},{"name":"FreeADsStr","features":[1,108]},{"name":"GUID_COMPUTRS_CONTAINER_A","features":[108]},{"name":"GUID_COMPUTRS_CONTAINER_W","features":[108]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_A","features":[108]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_W","features":[108]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_A","features":[108]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_W","features":[108]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_A","features":[108]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_W","features":[108]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_A","features":[108]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_W","features":[108]},{"name":"GUID_KEYS_CONTAINER_W","features":[108]},{"name":"GUID_LOSTANDFOUND_CONTAINER_A","features":[108]},{"name":"GUID_LOSTANDFOUND_CONTAINER_W","features":[108]},{"name":"GUID_MANAGED_SERVICE_ACCOUNTS_CONTAINER_W","features":[108]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_A","features":[108]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_W","features":[108]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_A","features":[108]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_W","features":[108]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_A","features":[108]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_W","features":[108]},{"name":"GUID_PROGRAM_DATA_CONTAINER_A","features":[108]},{"name":"GUID_PROGRAM_DATA_CONTAINER_W","features":[108]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_A","features":[108]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_W","features":[108]},{"name":"GUID_SYSTEMS_CONTAINER_A","features":[108]},{"name":"GUID_SYSTEMS_CONTAINER_W","features":[108]},{"name":"GUID_USERS_CONTAINER_A","features":[108]},{"name":"GUID_USERS_CONTAINER_W","features":[108]},{"name":"Hold","features":[108]},{"name":"IADs","features":[108]},{"name":"IADsADSystemInfo","features":[108]},{"name":"IADsAccessControlEntry","features":[108]},{"name":"IADsAccessControlList","features":[108]},{"name":"IADsAcl","features":[108]},{"name":"IADsAggregatee","features":[108]},{"name":"IADsAggregator","features":[108]},{"name":"IADsBackLink","features":[108]},{"name":"IADsCaseIgnoreList","features":[108]},{"name":"IADsClass","features":[108]},{"name":"IADsCollection","features":[108]},{"name":"IADsComputer","features":[108]},{"name":"IADsComputerOperations","features":[108]},{"name":"IADsContainer","features":[108]},{"name":"IADsDNWithBinary","features":[108]},{"name":"IADsDNWithString","features":[108]},{"name":"IADsDeleteOps","features":[108]},{"name":"IADsDomain","features":[108]},{"name":"IADsEmail","features":[108]},{"name":"IADsExtension","features":[108]},{"name":"IADsFaxNumber","features":[108]},{"name":"IADsFileService","features":[108]},{"name":"IADsFileServiceOperations","features":[108]},{"name":"IADsFileShare","features":[108]},{"name":"IADsGroup","features":[108]},{"name":"IADsHold","features":[108]},{"name":"IADsLargeInteger","features":[108]},{"name":"IADsLocality","features":[108]},{"name":"IADsMembers","features":[108]},{"name":"IADsNameTranslate","features":[108]},{"name":"IADsNamespaces","features":[108]},{"name":"IADsNetAddress","features":[108]},{"name":"IADsO","features":[108]},{"name":"IADsOU","features":[108]},{"name":"IADsObjectOptions","features":[108]},{"name":"IADsOctetList","features":[108]},{"name":"IADsOpenDSObject","features":[108]},{"name":"IADsPath","features":[108]},{"name":"IADsPathname","features":[108]},{"name":"IADsPostalAddress","features":[108]},{"name":"IADsPrintJob","features":[108]},{"name":"IADsPrintJobOperations","features":[108]},{"name":"IADsPrintQueue","features":[108]},{"name":"IADsPrintQueueOperations","features":[108]},{"name":"IADsProperty","features":[108]},{"name":"IADsPropertyEntry","features":[108]},{"name":"IADsPropertyList","features":[108]},{"name":"IADsPropertyValue","features":[108]},{"name":"IADsPropertyValue2","features":[108]},{"name":"IADsReplicaPointer","features":[108]},{"name":"IADsResource","features":[108]},{"name":"IADsSecurityDescriptor","features":[108]},{"name":"IADsSecurityUtility","features":[108]},{"name":"IADsService","features":[108]},{"name":"IADsServiceOperations","features":[108]},{"name":"IADsSession","features":[108]},{"name":"IADsSyntax","features":[108]},{"name":"IADsTimestamp","features":[108]},{"name":"IADsTypedName","features":[108]},{"name":"IADsUser","features":[108]},{"name":"IADsWinNTSystemInfo","features":[108]},{"name":"ICommonQuery","features":[108]},{"name":"IDirectoryObject","features":[108]},{"name":"IDirectorySchemaMgmt","features":[108]},{"name":"IDirectorySearch","features":[108]},{"name":"IDsAdminCreateObj","features":[108]},{"name":"IDsAdminNewObj","features":[108]},{"name":"IDsAdminNewObjExt","features":[108]},{"name":"IDsAdminNewObjPrimarySite","features":[108]},{"name":"IDsAdminNotifyHandler","features":[108]},{"name":"IDsBrowseDomainTree","features":[108]},{"name":"IDsDisplaySpecifier","features":[108]},{"name":"IDsObjectPicker","features":[108]},{"name":"IDsObjectPickerCredentials","features":[108]},{"name":"IPersistQuery","features":[108]},{"name":"IPrivateDispatch","features":[108]},{"name":"IPrivateUnknown","features":[108]},{"name":"IQueryForm","features":[108]},{"name":"LPCQADDFORMSPROC","features":[1,108,50]},{"name":"LPCQADDPAGESPROC","features":[1,108,50]},{"name":"LPCQPAGEPROC","features":[1,108,50]},{"name":"LPDSENUMATTRIBUTES","features":[1,108]},{"name":"LargeInteger","features":[108]},{"name":"NTDSAPI_BIND_ALLOW_DELEGATION","features":[108]},{"name":"NTDSAPI_BIND_FIND_BINDING","features":[108]},{"name":"NTDSAPI_BIND_FORCE_KERBEROS","features":[108]},{"name":"NTDSCONN_KCC_GC_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_INTERSITE_GC_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_INTERSITE_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_MINIMIZE_HOPS_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_NO_REASON","features":[108]},{"name":"NTDSCONN_KCC_OSCILLATING_CONNECTION_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_REDUNDANT_SERVER_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_RING_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_SERVER_FAILOVER_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_SITE_FAILOVER_TOPOLOGY","features":[108]},{"name":"NTDSCONN_KCC_STALE_SERVERS_TOPOLOGY","features":[108]},{"name":"NTDSCONN_OPT_DISABLE_INTERSITE_COMPRESSION","features":[108]},{"name":"NTDSCONN_OPT_IGNORE_SCHEDULE_MASK","features":[108]},{"name":"NTDSCONN_OPT_IS_GENERATED","features":[108]},{"name":"NTDSCONN_OPT_OVERRIDE_NOTIFY_DEFAULT","features":[108]},{"name":"NTDSCONN_OPT_RODC_TOPOLOGY","features":[108]},{"name":"NTDSCONN_OPT_TWOWAY_SYNC","features":[108]},{"name":"NTDSCONN_OPT_USER_OWNED_SCHEDULE","features":[108]},{"name":"NTDSCONN_OPT_USE_NOTIFY","features":[108]},{"name":"NTDSDSA_OPT_BLOCK_RPC","features":[108]},{"name":"NTDSDSA_OPT_DISABLE_INBOUND_REPL","features":[108]},{"name":"NTDSDSA_OPT_DISABLE_NTDSCONN_XLATE","features":[108]},{"name":"NTDSDSA_OPT_DISABLE_OUTBOUND_REPL","features":[108]},{"name":"NTDSDSA_OPT_DISABLE_SPN_REGISTRATION","features":[108]},{"name":"NTDSDSA_OPT_GENERATE_OWN_TOPO","features":[108]},{"name":"NTDSDSA_OPT_IS_GC","features":[108]},{"name":"NTDSSETTINGS_DEFAULT_SERVER_REDUNDANCY","features":[108]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_W2K_ELECTION","features":[108]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_WHISTLER_BEHAVIOR","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_AUTO_TOPOLOGY_DISABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_GROUP_CACHING_ENABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_INTER_SITE_AUTO_TOPOLOGY_DISABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_RAND_BH_SELECTION_DISABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_REDUNDANT_SERVER_TOPOLOGY_ENABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_SCHEDULE_HASHING_ENABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_CLEANUP_DISABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_DETECT_STALE_DISABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_MIN_HOPS_DISABLED","features":[108]},{"name":"NTDSSETTINGS_OPT_W2K3_BRIDGES_REQUIRED","features":[108]},{"name":"NTDSSETTINGS_OPT_W2K3_IGNORE_SCHEDULES","features":[108]},{"name":"NTDSSITECONN_OPT_DISABLE_COMPRESSION","features":[108]},{"name":"NTDSSITECONN_OPT_TWOWAY_SYNC","features":[108]},{"name":"NTDSSITECONN_OPT_USE_NOTIFY","features":[108]},{"name":"NTDSSITELINK_OPT_DISABLE_COMPRESSION","features":[108]},{"name":"NTDSSITELINK_OPT_TWOWAY_SYNC","features":[108]},{"name":"NTDSSITELINK_OPT_USE_NOTIFY","features":[108]},{"name":"NTDSTRANSPORT_OPT_BRIDGES_REQUIRED","features":[108]},{"name":"NTDSTRANSPORT_OPT_IGNORE_SCHEDULES","features":[108]},{"name":"NameTranslate","features":[108]},{"name":"NetAddress","features":[108]},{"name":"OPENQUERYWINDOW","features":[108]},{"name":"OQWF_DEFAULTFORM","features":[108]},{"name":"OQWF_HIDEMENUS","features":[108]},{"name":"OQWF_HIDESEARCHUI","features":[108]},{"name":"OQWF_ISSUEONOPEN","features":[108]},{"name":"OQWF_LOADQUERY","features":[108]},{"name":"OQWF_OKCANCEL","features":[108]},{"name":"OQWF_PARAMISPROPERTYBAG","features":[108]},{"name":"OQWF_REMOVEFORMS","features":[108]},{"name":"OQWF_REMOVESCOPES","features":[108]},{"name":"OQWF_SAVEQUERYONOK","features":[108]},{"name":"OQWF_SHOWOPTIONAL","features":[108]},{"name":"OQWF_SINGLESELECT","features":[108]},{"name":"OctetList","features":[108]},{"name":"Path","features":[108]},{"name":"Pathname","features":[108]},{"name":"PostalAddress","features":[108]},{"name":"PropVariantToAdsType","features":[1,108,41,42]},{"name":"PropertyEntry","features":[108]},{"name":"PropertyValue","features":[108]},{"name":"QUERYFORM_CHANGESFORMLIST","features":[108]},{"name":"QUERYFORM_CHANGESOPTFORMLIST","features":[108]},{"name":"ReallocADsMem","features":[108]},{"name":"ReallocADsStr","features":[1,108]},{"name":"ReplicaPointer","features":[108]},{"name":"SCHEDULE","features":[108]},{"name":"SCHEDULE_BANDWIDTH","features":[108]},{"name":"SCHEDULE_HEADER","features":[108]},{"name":"SCHEDULE_INTERVAL","features":[108]},{"name":"SCHEDULE_PRIORITY","features":[108]},{"name":"SecurityDescriptor","features":[108]},{"name":"SecurityDescriptorToBinarySD","features":[1,108,4,41,42]},{"name":"Timestamp","features":[108]},{"name":"TypedName","features":[108]},{"name":"WM_ADSPROP_NOTIFY_APPLY","features":[108]},{"name":"WM_ADSPROP_NOTIFY_CHANGE","features":[108]},{"name":"WM_ADSPROP_NOTIFY_ERROR","features":[108]},{"name":"WM_ADSPROP_NOTIFY_EXIT","features":[108]},{"name":"WM_ADSPROP_NOTIFY_FOREGROUND","features":[108]},{"name":"WM_ADSPROP_NOTIFY_PAGEHWND","features":[108]},{"name":"WM_ADSPROP_NOTIFY_PAGEINIT","features":[108]},{"name":"WM_ADSPROP_NOTIFY_SETFOCUS","features":[108]},{"name":"WinNTSystemInfo","features":[108]},{"name":"hrAccessDenied","features":[108]},{"name":"hrAfterInitialization","features":[108]},{"name":"hrAlreadyInitialized","features":[108]},{"name":"hrAlreadyOpen","features":[108]},{"name":"hrAlreadyPrepared","features":[108]},{"name":"hrBFInUse","features":[108]},{"name":"hrBFNotSynchronous","features":[108]},{"name":"hrBFPageNotFound","features":[108]},{"name":"hrBackupDirectoryNotEmpty","features":[108]},{"name":"hrBackupInProgress","features":[108]},{"name":"hrBackupNotAllowedYet","features":[108]},{"name":"hrBadBackupDatabaseSize","features":[108]},{"name":"hrBadCheckpointSignature","features":[108]},{"name":"hrBadColumnId","features":[108]},{"name":"hrBadDbSignature","features":[108]},{"name":"hrBadItagSequence","features":[108]},{"name":"hrBadLogSignature","features":[108]},{"name":"hrBadLogVersion","features":[108]},{"name":"hrBufferTooSmall","features":[108]},{"name":"hrBufferTruncated","features":[108]},{"name":"hrCannotBeTagged","features":[108]},{"name":"hrCannotRename","features":[108]},{"name":"hrCheckpointCorrupt","features":[108]},{"name":"hrCircularLogging","features":[108]},{"name":"hrColumn2ndSysMaint","features":[108]},{"name":"hrColumnCannotIndex","features":[108]},{"name":"hrColumnDoesNotFit","features":[108]},{"name":"hrColumnDuplicate","features":[108]},{"name":"hrColumnInUse","features":[108]},{"name":"hrColumnIndexed","features":[108]},{"name":"hrColumnLong","features":[108]},{"name":"hrColumnMaxTruncated","features":[108]},{"name":"hrColumnNotFound","features":[108]},{"name":"hrColumnNotUpdatable","features":[108]},{"name":"hrColumnNull","features":[108]},{"name":"hrColumnSetNull","features":[108]},{"name":"hrColumnTooBig","features":[108]},{"name":"hrCommunicationError","features":[108]},{"name":"hrConsistentTimeMismatch","features":[108]},{"name":"hrContainerNotEmpty","features":[108]},{"name":"hrContentsExpired","features":[108]},{"name":"hrCouldNotConnect","features":[108]},{"name":"hrCreateIndexFailed","features":[108]},{"name":"hrCurrencyStackOutOfMemory","features":[108]},{"name":"hrDatabaseAttached","features":[108]},{"name":"hrDatabaseCorrupted","features":[108]},{"name":"hrDatabaseDuplicate","features":[108]},{"name":"hrDatabaseInUse","features":[108]},{"name":"hrDatabaseInconsistent","features":[108]},{"name":"hrDatabaseInvalidName","features":[108]},{"name":"hrDatabaseInvalidPages","features":[108]},{"name":"hrDatabaseLocked","features":[108]},{"name":"hrDatabaseNotFound","features":[108]},{"name":"hrDeleteBackupFileFail","features":[108]},{"name":"hrDensityInvalid","features":[108]},{"name":"hrDiskFull","features":[108]},{"name":"hrDiskIO","features":[108]},{"name":"hrError","features":[108]},{"name":"hrExistingLogFileHasBadSignature","features":[108]},{"name":"hrExistingLogFileIsNotContiguous","features":[108]},{"name":"hrFLDKeyTooBig","features":[108]},{"name":"hrFLDNullKey","features":[108]},{"name":"hrFLDTooManySegments","features":[108]},{"name":"hrFeatureNotAvailable","features":[108]},{"name":"hrFileAccessDenied","features":[108]},{"name":"hrFileClose","features":[108]},{"name":"hrFileNotFound","features":[108]},{"name":"hrFileOpenReadOnly","features":[108]},{"name":"hrFullBackupNotTaken","features":[108]},{"name":"hrGivenLogFileHasBadSignature","features":[108]},{"name":"hrGivenLogFileIsNotContiguous","features":[108]},{"name":"hrIllegalOperation","features":[108]},{"name":"hrInTransaction","features":[108]},{"name":"hrIncrementalBackupDisabled","features":[108]},{"name":"hrIndexCantBuild","features":[108]},{"name":"hrIndexDuplicate","features":[108]},{"name":"hrIndexHasClustered","features":[108]},{"name":"hrIndexHasPrimary","features":[108]},{"name":"hrIndexInUse","features":[108]},{"name":"hrIndexInvalidDef","features":[108]},{"name":"hrIndexMustStay","features":[108]},{"name":"hrIndexNotFound","features":[108]},{"name":"hrInvalidBackup","features":[108]},{"name":"hrInvalidBackupSequence","features":[108]},{"name":"hrInvalidBookmark","features":[108]},{"name":"hrInvalidBufferSize","features":[108]},{"name":"hrInvalidCodePage","features":[108]},{"name":"hrInvalidColumnType","features":[108]},{"name":"hrInvalidCountry","features":[108]},{"name":"hrInvalidDatabase","features":[108]},{"name":"hrInvalidDatabaseId","features":[108]},{"name":"hrInvalidFilename","features":[108]},{"name":"hrInvalidHandle","features":[108]},{"name":"hrInvalidLanguageId","features":[108]},{"name":"hrInvalidLogSequence","features":[108]},{"name":"hrInvalidName","features":[108]},{"name":"hrInvalidObject","features":[108]},{"name":"hrInvalidOnSort","features":[108]},{"name":"hrInvalidOperation","features":[108]},{"name":"hrInvalidParam","features":[108]},{"name":"hrInvalidParameter","features":[108]},{"name":"hrInvalidPath","features":[108]},{"name":"hrInvalidRecips","features":[108]},{"name":"hrInvalidSesid","features":[108]},{"name":"hrInvalidTableId","features":[108]},{"name":"hrKeyChanged","features":[108]},{"name":"hrKeyDuplicate","features":[108]},{"name":"hrKeyIsMade","features":[108]},{"name":"hrKeyNotMade","features":[108]},{"name":"hrLogBufferTooSmall","features":[108]},{"name":"hrLogCorrupted","features":[108]},{"name":"hrLogDiskFull","features":[108]},{"name":"hrLogFileCorrupt","features":[108]},{"name":"hrLogFileNotFound","features":[108]},{"name":"hrLogSequenceEnd","features":[108]},{"name":"hrLogWriteFail","features":[108]},{"name":"hrLoggingDisabled","features":[108]},{"name":"hrMakeBackupDirectoryFail","features":[108]},{"name":"hrMissingExpiryToken","features":[108]},{"name":"hrMissingFullBackup","features":[108]},{"name":"hrMissingLogFile","features":[108]},{"name":"hrMissingPreviousLogFile","features":[108]},{"name":"hrMissingRestoreLogFiles","features":[108]},{"name":"hrNoBackup","features":[108]},{"name":"hrNoBackupDirectory","features":[108]},{"name":"hrNoCurrentIndex","features":[108]},{"name":"hrNoCurrentRecord","features":[108]},{"name":"hrNoFullRestore","features":[108]},{"name":"hrNoIdleActivity","features":[108]},{"name":"hrNoWriteLock","features":[108]},{"name":"hrNone","features":[108]},{"name":"hrNotInTransaction","features":[108]},{"name":"hrNotInitialized","features":[108]},{"name":"hrNullInvalid","features":[108]},{"name":"hrNullKeyDisallowed","features":[108]},{"name":"hrNyi","features":[108]},{"name":"hrObjectDuplicate","features":[108]},{"name":"hrObjectNotFound","features":[108]},{"name":"hrOutOfBuffers","features":[108]},{"name":"hrOutOfCursors","features":[108]},{"name":"hrOutOfDatabaseSpace","features":[108]},{"name":"hrOutOfFileHandles","features":[108]},{"name":"hrOutOfMemory","features":[108]},{"name":"hrOutOfSessions","features":[108]},{"name":"hrOutOfThreads","features":[108]},{"name":"hrPMRecDeleted","features":[108]},{"name":"hrPatchFileMismatch","features":[108]},{"name":"hrPermissionDenied","features":[108]},{"name":"hrReadVerifyFailure","features":[108]},{"name":"hrRecordClusteredChanged","features":[108]},{"name":"hrRecordDeleted","features":[108]},{"name":"hrRecordNotFound","features":[108]},{"name":"hrRecordTooBig","features":[108]},{"name":"hrRecoveredWithErrors","features":[108]},{"name":"hrRemainingVersions","features":[108]},{"name":"hrRestoreInProgress","features":[108]},{"name":"hrRestoreLogTooHigh","features":[108]},{"name":"hrRestoreLogTooLow","features":[108]},{"name":"hrRestoreMapExists","features":[108]},{"name":"hrSeekNotEqual","features":[108]},{"name":"hrSessionWriteConflict","features":[108]},{"name":"hrTableDuplicate","features":[108]},{"name":"hrTableEmpty","features":[108]},{"name":"hrTableInUse","features":[108]},{"name":"hrTableLocked","features":[108]},{"name":"hrTableNotEmpty","features":[108]},{"name":"hrTaggedNotNULL","features":[108]},{"name":"hrTempFileOpenError","features":[108]},{"name":"hrTermInProgress","features":[108]},{"name":"hrTooManyActiveUsers","features":[108]},{"name":"hrTooManyAttachedDatabases","features":[108]},{"name":"hrTooManyColumns","features":[108]},{"name":"hrTooManyIO","features":[108]},{"name":"hrTooManyIndexes","features":[108]},{"name":"hrTooManyKeys","features":[108]},{"name":"hrTooManyOpenDatabases","features":[108]},{"name":"hrTooManyOpenIndexes","features":[108]},{"name":"hrTooManyOpenTables","features":[108]},{"name":"hrTooManySorts","features":[108]},{"name":"hrTransTooDeep","features":[108]},{"name":"hrUnknownExpiryTokenFormat","features":[108]},{"name":"hrUpdateNotPrepared","features":[108]},{"name":"hrVersionStoreOutOfMemory","features":[108]},{"name":"hrWriteConflict","features":[108]},{"name":"hrerrDataHasChanged","features":[108]},{"name":"hrwrnDataHasChanged","features":[108]}],"469":[{"name":"AddClusterGroupDependency","features":[110]},{"name":"AddClusterGroupDependencyEx","features":[110]},{"name":"AddClusterGroupSetDependency","features":[110]},{"name":"AddClusterGroupSetDependencyEx","features":[110]},{"name":"AddClusterGroupToGroupSetDependency","features":[110]},{"name":"AddClusterGroupToGroupSetDependencyEx","features":[110]},{"name":"AddClusterNode","features":[1,110]},{"name":"AddClusterNodeEx","features":[1,110]},{"name":"AddClusterResourceDependency","features":[110]},{"name":"AddClusterResourceDependencyEx","features":[110]},{"name":"AddClusterResourceNode","features":[110]},{"name":"AddClusterResourceNodeEx","features":[110]},{"name":"AddClusterStorageNode","features":[1,110]},{"name":"AddCrossClusterGroupSetDependency","features":[110]},{"name":"AddResourceToClusterSharedVolumes","features":[110]},{"name":"BackupClusterDatabase","features":[110]},{"name":"BitLockerDecrypted","features":[110]},{"name":"BitLockerDecrypting","features":[110]},{"name":"BitLockerEnabled","features":[110]},{"name":"BitLockerPaused","features":[110]},{"name":"BitLockerStopped","features":[110]},{"name":"BitlockerEncrypted","features":[110]},{"name":"BitlockerEncrypting","features":[110]},{"name":"CA_UPGRADE_VERSION","features":[110]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT","features":[110]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT_EX","features":[110]},{"name":"CLCTL_ADD_DEPENDENCY","features":[110]},{"name":"CLCTL_ADD_OWNER","features":[110]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT","features":[110]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_32BIT","features":[110]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_64BIT","features":[110]},{"name":"CLCTL_BATCH_BLOCK_KEY","features":[110]},{"name":"CLCTL_BATCH_UNBLOCK_KEY","features":[110]},{"name":"CLCTL_BLOCK_GEM_SEND_RECV","features":[110]},{"name":"CLCTL_CHECK_DRAIN_VETO","features":[110]},{"name":"CLCTL_CHECK_VOTER_DOWN","features":[110]},{"name":"CLCTL_CHECK_VOTER_DOWN_WITNESS","features":[110]},{"name":"CLCTL_CHECK_VOTER_EVICT","features":[110]},{"name":"CLCTL_CHECK_VOTER_EVICT_WITNESS","features":[110]},{"name":"CLCTL_CLEAR_NODE_CONNECTION_INFO","features":[110]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[110]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[110]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[110]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[110]},{"name":"CLCTL_CLUSTER_BASE","features":[110]},{"name":"CLCTL_CLUSTER_NAME_CHANGED","features":[110]},{"name":"CLCTL_CLUSTER_VERSION_CHANGED","features":[110]},{"name":"CLCTL_CODES","features":[110]},{"name":"CLCTL_DELETE","features":[110]},{"name":"CLCTL_DELETE_CRYPTO_CHECKPOINT","features":[110]},{"name":"CLCTL_DELETE_REGISTRY_CHECKPOINT","features":[110]},{"name":"CLCTL_DISABLE_SHARED_VOLUME_DIRECTIO","features":[110]},{"name":"CLCTL_ENABLE_SHARED_VOLUME_DIRECTIO","features":[110]},{"name":"CLCTL_ENUM_AFFINITY_RULE_NAMES","features":[110]},{"name":"CLCTL_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLCTL_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLCTL_EVICT_NODE","features":[110]},{"name":"CLCTL_FILESERVER_SHARE_ADD","features":[110]},{"name":"CLCTL_FILESERVER_SHARE_DEL","features":[110]},{"name":"CLCTL_FILESERVER_SHARE_MODIFY","features":[110]},{"name":"CLCTL_FILESERVER_SHARE_REPORT","features":[110]},{"name":"CLCTL_FIXUP_ON_UPGRADE","features":[110]},{"name":"CLCTL_FORCE_DB_FLUSH","features":[110]},{"name":"CLCTL_FORCE_QUORUM","features":[110]},{"name":"CLCTL_FSWITNESS_GET_EPOCH_INFO","features":[110]},{"name":"CLCTL_FSWITNESS_RELEASE_LOCK","features":[110]},{"name":"CLCTL_FSWITNESS_SET_EPOCH_INFO","features":[110]},{"name":"CLCTL_GET_ARB_TIMEOUT","features":[110]},{"name":"CLCTL_GET_CHARACTERISTICS","features":[110]},{"name":"CLCTL_GET_CLASS_INFO","features":[110]},{"name":"CLCTL_GET_CLUSDB_TIMESTAMP","features":[110]},{"name":"CLCTL_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[110]},{"name":"CLCTL_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLCTL_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLCTL_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[110]},{"name":"CLCTL_GET_CRYPTO_CHECKPOINTS","features":[110]},{"name":"CLCTL_GET_DNS_NAME","features":[110]},{"name":"CLCTL_GET_FAILURE_INFO","features":[110]},{"name":"CLCTL_GET_FLAGS","features":[110]},{"name":"CLCTL_GET_FQDN","features":[110]},{"name":"CLCTL_GET_GEMID_VECTOR","features":[110]},{"name":"CLCTL_GET_GUM_LOCK_OWNER","features":[110]},{"name":"CLCTL_GET_ID","features":[110]},{"name":"CLCTL_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[110]},{"name":"CLCTL_GET_LOADBAL_PROCESS_LIST","features":[110]},{"name":"CLCTL_GET_NAME","features":[110]},{"name":"CLCTL_GET_NETWORK","features":[110]},{"name":"CLCTL_GET_NETWORK_NAME","features":[110]},{"name":"CLCTL_GET_NODE","features":[110]},{"name":"CLCTL_GET_NODES_IN_FD","features":[110]},{"name":"CLCTL_GET_OPERATION_CONTEXT","features":[110]},{"name":"CLCTL_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLCTL_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLCTL_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[110]},{"name":"CLCTL_GET_REGISTRY_CHECKPOINTS","features":[110]},{"name":"CLCTL_GET_REQUIRED_DEPENDENCIES","features":[110]},{"name":"CLCTL_GET_RESOURCE_TYPE","features":[110]},{"name":"CLCTL_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLCTL_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLCTL_GET_SHARED_VOLUME_ID","features":[110]},{"name":"CLCTL_GET_STATE_CHANGE_TIME","features":[110]},{"name":"CLCTL_GET_STORAGE_CONFIGURATION","features":[110]},{"name":"CLCTL_GET_STORAGE_CONFIG_ATTRIBUTES","features":[110]},{"name":"CLCTL_GET_STUCK_NODES","features":[110]},{"name":"CLCTL_GLOBAL_SHIFT","features":[110]},{"name":"CLCTL_GROUPSET_GET_GROUPS","features":[110]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[110]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[110]},{"name":"CLCTL_GROUP_GET_LAST_MOVE_TIME","features":[110]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPS","features":[110]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[110]},{"name":"CLCTL_GROUP_SET_CCF_FROM_MASTER","features":[110]},{"name":"CLCTL_HOLD_IO","features":[110]},{"name":"CLCTL_INITIALIZE","features":[110]},{"name":"CLCTL_INJECT_GEM_FAULT","features":[110]},{"name":"CLCTL_INSTALL_NODE","features":[110]},{"name":"CLCTL_INTERNAL_SHIFT","features":[110]},{"name":"CLCTL_INTRODUCE_GEM_REPAIR_DELAY","features":[110]},{"name":"CLCTL_IPADDRESS_RELEASE_LEASE","features":[110]},{"name":"CLCTL_IPADDRESS_RENEW_LEASE","features":[110]},{"name":"CLCTL_IS_FEATURE_INSTALLED","features":[110]},{"name":"CLCTL_IS_QUORUM_BLOCKED","features":[110]},{"name":"CLCTL_IS_S2D_FEATURE_SUPPORTED","features":[110]},{"name":"CLCTL_JOINING_GROUP","features":[110]},{"name":"CLCTL_LEAVING_GROUP","features":[110]},{"name":"CLCTL_MODIFY_SHIFT","features":[110]},{"name":"CLCTL_NETNAME_CREDS_NOTIFYCAM","features":[110]},{"name":"CLCTL_NETNAME_DELETE_CO","features":[110]},{"name":"CLCTL_NETNAME_GET_OU_FOR_VCO","features":[110]},{"name":"CLCTL_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[110]},{"name":"CLCTL_NETNAME_REGISTER_DNS_RECORDS","features":[110]},{"name":"CLCTL_NETNAME_REPAIR_VCO","features":[110]},{"name":"CLCTL_NETNAME_RESET_VCO","features":[110]},{"name":"CLCTL_NETNAME_SET_PWD_INFO","features":[110]},{"name":"CLCTL_NETNAME_SET_PWD_INFOEX","features":[110]},{"name":"CLCTL_NETNAME_VALIDATE_VCO","features":[110]},{"name":"CLCTL_NOTIFY_DRAIN_COMPLETE","features":[110]},{"name":"CLCTL_NOTIFY_INFRASTRUCTURE_SOFS_CHANGED","features":[110]},{"name":"CLCTL_NOTIFY_MONITOR_SHUTTING_DOWN","features":[110]},{"name":"CLCTL_NOTIFY_OWNER_CHANGE","features":[110]},{"name":"CLCTL_NOTIFY_QUORUM_STATUS","features":[110]},{"name":"CLCTL_POOL_GET_DRIVE_INFO","features":[110]},{"name":"CLCTL_PROVIDER_STATE_CHANGE","features":[110]},{"name":"CLCTL_QUERY_DELETE","features":[110]},{"name":"CLCTL_QUERY_MAINTENANCE_MODE","features":[110]},{"name":"CLCTL_RELOAD_AUTOLOGGER_CONFIG","features":[110]},{"name":"CLCTL_REMOVE_DEPENDENCY","features":[110]},{"name":"CLCTL_REMOVE_NODE","features":[110]},{"name":"CLCTL_REMOVE_OWNER","features":[110]},{"name":"CLCTL_REPLICATION_ADD_REPLICATION_GROUP","features":[110]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[110]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[110]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[110]},{"name":"CLCTL_REPLICATION_GET_LOG_INFO","features":[110]},{"name":"CLCTL_REPLICATION_GET_LOG_VOLUME","features":[110]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_DISKS","features":[110]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[110]},{"name":"CLCTL_REPLICATION_GET_REPLICA_VOLUMES","features":[110]},{"name":"CLCTL_REPLICATION_GET_RESOURCE_GROUP","features":[110]},{"name":"CLCTL_RESOURCE_PREPARE_UPGRADE","features":[110]},{"name":"CLCTL_RESOURCE_UPGRADE_COMPLETED","features":[110]},{"name":"CLCTL_RESOURCE_UPGRADE_DLL","features":[110]},{"name":"CLCTL_RESUME_IO","features":[110]},{"name":"CLCTL_RW_MODIFY_NOOP","features":[110]},{"name":"CLCTL_SCALEOUT_COMMAND","features":[110]},{"name":"CLCTL_SCALEOUT_CONTROL","features":[110]},{"name":"CLCTL_SCALEOUT_GET_CLUSTERS","features":[110]},{"name":"CLCTL_SEND_DUMMY_GEM_MESSAGES","features":[110]},{"name":"CLCTL_SET_ACCOUNT_ACCESS","features":[110]},{"name":"CLCTL_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[110]},{"name":"CLCTL_SET_CLUSTER_S2D_ENABLED","features":[110]},{"name":"CLCTL_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLCTL_SET_CSV_MAINTENANCE_MODE","features":[110]},{"name":"CLCTL_SET_DNS_DOMAIN","features":[110]},{"name":"CLCTL_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[110]},{"name":"CLCTL_SET_MAINTENANCE_MODE","features":[110]},{"name":"CLCTL_SET_NAME","features":[110]},{"name":"CLCTL_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLCTL_SET_SHARED_VOLUME_BACKUP_MODE","features":[110]},{"name":"CLCTL_SET_STORAGE_CONFIGURATION","features":[110]},{"name":"CLCTL_SHUTDOWN","features":[110]},{"name":"CLCTL_STARTING_PHASE1","features":[110]},{"name":"CLCTL_STARTING_PHASE2","features":[110]},{"name":"CLCTL_STATE_CHANGE_REASON","features":[110]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS","features":[110]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX","features":[110]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[110]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHINFO","features":[110]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHS","features":[110]},{"name":"CLCTL_STORAGE_GET_CLUSPORT_DISK_COUNT","features":[110]},{"name":"CLCTL_STORAGE_GET_DIRTY","features":[110]},{"name":"CLCTL_STORAGE_GET_DISKID","features":[110]},{"name":"CLCTL_STORAGE_GET_DISK_INFO","features":[110]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX","features":[110]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX2","features":[110]},{"name":"CLCTL_STORAGE_GET_DISK_NUMBER_INFO","features":[110]},{"name":"CLCTL_STORAGE_GET_DRIVELETTERS","features":[110]},{"name":"CLCTL_STORAGE_GET_MOUNTPOINTS","features":[110]},{"name":"CLCTL_STORAGE_GET_PHYSICAL_DISK_INFO","features":[110]},{"name":"CLCTL_STORAGE_GET_RESOURCEID","features":[110]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_INFO","features":[110]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[110]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_STATES","features":[110]},{"name":"CLCTL_STORAGE_IS_CLUSTERABLE","features":[110]},{"name":"CLCTL_STORAGE_IS_CSV_FILE","features":[110]},{"name":"CLCTL_STORAGE_IS_PATH_VALID","features":[110]},{"name":"CLCTL_STORAGE_IS_SHARED_VOLUME","features":[110]},{"name":"CLCTL_STORAGE_REMAP_DRIVELETTER","features":[110]},{"name":"CLCTL_STORAGE_REMOVE_VM_OWNERSHIP","features":[110]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME","features":[110]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[110]},{"name":"CLCTL_STORAGE_SET_DRIVELETTER","features":[110]},{"name":"CLCTL_STORAGE_SYNC_CLUSDISK_DB","features":[110]},{"name":"CLCTL_UNDELETE","features":[110]},{"name":"CLCTL_UNKNOWN","features":[110]},{"name":"CLCTL_USER_SHIFT","features":[110]},{"name":"CLCTL_VALIDATE_CHANGE_GROUP","features":[110]},{"name":"CLCTL_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLCTL_VALIDATE_DIRECTORY","features":[110]},{"name":"CLCTL_VALIDATE_NETNAME","features":[110]},{"name":"CLCTL_VALIDATE_PATH","features":[110]},{"name":"CLCTL_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLOUD_WITNESS_CONTAINER_NAME","features":[110]},{"name":"CLRES_CALLBACK_FUNCTION_TABLE","features":[1,110]},{"name":"CLRES_FUNCTION_TABLE","features":[1,110,49]},{"name":"CLRES_V1_FUNCTIONS","features":[1,110,49]},{"name":"CLRES_V2_FUNCTIONS","features":[1,110,49]},{"name":"CLRES_V3_FUNCTIONS","features":[1,110,49]},{"name":"CLRES_V4_FUNCTIONS","features":[1,110,49]},{"name":"CLRES_VERSION_V1_00","features":[110]},{"name":"CLRES_VERSION_V2_00","features":[110]},{"name":"CLRES_VERSION_V3_00","features":[110]},{"name":"CLRES_VERSION_V4_00","features":[110]},{"name":"CLUADMEX_OBJECT_TYPE","features":[110]},{"name":"CLUADMEX_OT_CLUSTER","features":[110]},{"name":"CLUADMEX_OT_GROUP","features":[110]},{"name":"CLUADMEX_OT_NETINTERFACE","features":[110]},{"name":"CLUADMEX_OT_NETWORK","features":[110]},{"name":"CLUADMEX_OT_NODE","features":[110]},{"name":"CLUADMEX_OT_NONE","features":[110]},{"name":"CLUADMEX_OT_RESOURCE","features":[110]},{"name":"CLUADMEX_OT_RESOURCETYPE","features":[110]},{"name":"CLUSAPI_CHANGE_ACCESS","features":[110]},{"name":"CLUSAPI_CHANGE_RESOURCE_GROUP_FORCE_MOVE_TO_CSV","features":[110]},{"name":"CLUSAPI_GROUP_MOVE_FAILBACK","features":[110]},{"name":"CLUSAPI_GROUP_MOVE_HIGH_PRIORITY_START","features":[110]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_AFFINITY_RULE","features":[110]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_RESOURCE_STATUS","features":[110]},{"name":"CLUSAPI_GROUP_MOVE_QUEUE_ENABLED","features":[110]},{"name":"CLUSAPI_GROUP_MOVE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[110]},{"name":"CLUSAPI_GROUP_OFFLINE_IGNORE_RESOURCE_STATUS","features":[110]},{"name":"CLUSAPI_GROUP_ONLINE_BEST_POSSIBLE_NODE","features":[110]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_AFFINITY_RULE","features":[110]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_RESOURCE_STATUS","features":[110]},{"name":"CLUSAPI_GROUP_ONLINE_SYNCHRONOUS","features":[110]},{"name":"CLUSAPI_NODE_AVOID_PLACEMENT","features":[110]},{"name":"CLUSAPI_NODE_PAUSE_REMAIN_ON_PAUSED_NODE_ON_MOVE_ERROR","features":[110]},{"name":"CLUSAPI_NODE_PAUSE_RETRY_DRAIN_ON_FAILURE","features":[110]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_PINNED_VMS_ONLY","features":[110]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_STORAGE","features":[110]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_VMS","features":[110]},{"name":"CLUSAPI_NO_ACCESS","features":[110]},{"name":"CLUSAPI_READ_ACCESS","features":[110]},{"name":"CLUSAPI_REASON_HANDLER","features":[1,110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_FORCE_WITH_TERMINATION","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_IGNORE_RESOURCE_STATUS","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_DELETED","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_RESTARTED","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_MOVING","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_NONE","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_PREEMPTED","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_SHUTTING_DOWN","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_UNKNOWN","features":[110]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_USER_REQUESTED","features":[110]},{"name":"CLUSAPI_RESOURCE_ONLINE_BEST_POSSIBLE_NODE","features":[110]},{"name":"CLUSAPI_RESOURCE_ONLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[110]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_AFFINITY_RULE","features":[110]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_RESOURCE_STATUS","features":[110]},{"name":"CLUSAPI_RESOURCE_ONLINE_NECESSARY_FOR_QUORUM","features":[110]},{"name":"CLUSAPI_VALID_CHANGE_RESOURCE_GROUP_FLAGS","features":[110]},{"name":"CLUSAPI_VERSION","features":[110]},{"name":"CLUSAPI_VERSION_NI","features":[110]},{"name":"CLUSAPI_VERSION_RS3","features":[110]},{"name":"CLUSAPI_VERSION_SERVER2008","features":[110]},{"name":"CLUSAPI_VERSION_SERVER2008R2","features":[110]},{"name":"CLUSAPI_VERSION_WINDOWS8","features":[110]},{"name":"CLUSAPI_VERSION_WINDOWSBLUE","features":[110]},{"name":"CLUSAPI_VERSION_WINTHRESHOLD","features":[110]},{"name":"CLUSCTL_ACCESS_MODE_MASK","features":[110]},{"name":"CLUSCTL_ACCESS_SHIFT","features":[110]},{"name":"CLUSCTL_AFFINITYRULE_CODES","features":[110]},{"name":"CLUSCTL_AFFINITYRULE_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_AFFINITYRULE_GET_GROUPNAMES","features":[110]},{"name":"CLUSCTL_AFFINITYRULE_GET_ID","features":[110]},{"name":"CLUSCTL_AFFINITYRULE_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_AFFINITYRULE_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[110]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[110]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[110]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[110]},{"name":"CLUSCTL_CLUSTER_BATCH_BLOCK_KEY","features":[110]},{"name":"CLUSCTL_CLUSTER_BATCH_UNBLOCK_KEY","features":[110]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN","features":[110]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN_WITNESS","features":[110]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT","features":[110]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT_WITNESS","features":[110]},{"name":"CLUSCTL_CLUSTER_CLEAR_NODE_CONNECTION_INFO","features":[110]},{"name":"CLUSCTL_CLUSTER_CODES","features":[110]},{"name":"CLUSCTL_CLUSTER_ENUM_AFFINITY_RULE_NAMES","features":[110]},{"name":"CLUSCTL_CLUSTER_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_FORCE_FLUSH_DB","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_CLMUSR_TOKEN","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_CLUSDB_TIMESTAMP","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_FQDN","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_GUM_LOCK_OWNER","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_NODES_IN_FD","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_SHARED_VOLUME_ID","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIGURATION","features":[110]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIG_ATTRIBUTES","features":[110]},{"name":"CLUSCTL_CLUSTER_RELOAD_AUTOLOGGER_CONFIG","features":[110]},{"name":"CLUSCTL_CLUSTER_REMOVE_NODE","features":[110]},{"name":"CLUSCTL_CLUSTER_SET_ACCOUNT_ACCESS","features":[110]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[110]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_ENABLED","features":[110]},{"name":"CLUSCTL_CLUSTER_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_SET_DNS_DOMAIN","features":[110]},{"name":"CLUSCTL_CLUSTER_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_SET_STORAGE_CONFIGURATION","features":[110]},{"name":"CLUSCTL_CLUSTER_SHUTDOWN","features":[110]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME","features":[110]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[110]},{"name":"CLUSCTL_CLUSTER_UNKNOWN","features":[110]},{"name":"CLUSCTL_CLUSTER_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_CLUSTER_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_CONTROL_CODE_MASK","features":[110]},{"name":"CLUSCTL_FUNCTION_SHIFT","features":[110]},{"name":"CLUSCTL_GET_OPERATION_CONTEXT_PARAMS_VERSION_1","features":[110]},{"name":"CLUSCTL_GROUPSET_CODES","features":[110]},{"name":"CLUSCTL_GROUPSET_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUPSET_GET_GROUPS","features":[110]},{"name":"CLUSCTL_GROUPSET_GET_ID","features":[110]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[110]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[110]},{"name":"CLUSCTL_GROUPSET_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUPSET_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_CODES","features":[110]},{"name":"CLUSCTL_GROUP_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_GET_CHARACTERISTICS","features":[110]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_GROUP_GET_FAILURE_INFO","features":[110]},{"name":"CLUSCTL_GROUP_GET_FLAGS","features":[110]},{"name":"CLUSCTL_GROUP_GET_ID","features":[110]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME","features":[110]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME_OUTPUT","features":[1,110]},{"name":"CLUSCTL_GROUP_GET_NAME","features":[110]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPS","features":[110]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[110]},{"name":"CLUSCTL_GROUP_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_QUERY_DELETE","features":[110]},{"name":"CLUSCTL_GROUP_SET_CCF_FROM_MASTER","features":[110]},{"name":"CLUSCTL_GROUP_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_UNKNOWN","features":[110]},{"name":"CLUSCTL_GROUP_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_GROUP_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_CODES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_CHARACTERISTICS","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_FLAGS","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_ID","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_NAME","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_NETWORK","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_NODE","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_UNKNOWN","features":[110]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_CODES","features":[110]},{"name":"CLUSCTL_NETWORK_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_GET_CHARACTERISTICS","features":[110]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_NETWORK_GET_FLAGS","features":[110]},{"name":"CLUSCTL_NETWORK_GET_ID","features":[110]},{"name":"CLUSCTL_NETWORK_GET_NAME","features":[110]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_NETWORK_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_UNKNOWN","features":[110]},{"name":"CLUSCTL_NETWORK_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NETWORK_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_BLOCK_GEM_SEND_RECV","features":[110]},{"name":"CLUSCTL_NODE_CODES","features":[110]},{"name":"CLUSCTL_NODE_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_GET_CHARACTERISTICS","features":[110]},{"name":"CLUSCTL_NODE_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[110]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_NODE_GET_FLAGS","features":[110]},{"name":"CLUSCTL_NODE_GET_GEMID_VECTOR","features":[110]},{"name":"CLUSCTL_NODE_GET_ID","features":[110]},{"name":"CLUSCTL_NODE_GET_NAME","features":[110]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_NODE_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_GET_STUCK_NODES","features":[110]},{"name":"CLUSCTL_NODE_INJECT_GEM_FAULT","features":[110]},{"name":"CLUSCTL_NODE_INTRODUCE_GEM_REPAIR_DELAY","features":[110]},{"name":"CLUSCTL_NODE_SEND_DUMMY_GEM_MESSAGES","features":[110]},{"name":"CLUSCTL_NODE_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_UNKNOWN","features":[110]},{"name":"CLUSCTL_NODE_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_NODE_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_OBJECT_MASK","features":[110]},{"name":"CLUSCTL_OBJECT_SHIFT","features":[110]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT","features":[110]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT_EX","features":[110]},{"name":"CLUSCTL_RESOURCE_ADD_DEPENDENCY","features":[110]},{"name":"CLUSCTL_RESOURCE_ADD_OWNER","features":[110]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT","features":[110]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_32BIT","features":[110]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_64BIT","features":[110]},{"name":"CLUSCTL_RESOURCE_CHECK_DRAIN_VETO","features":[110]},{"name":"CLUSCTL_RESOURCE_CLUSTER_NAME_CHANGED","features":[110]},{"name":"CLUSCTL_RESOURCE_CLUSTER_VERSION_CHANGED","features":[110]},{"name":"CLUSCTL_RESOURCE_CODES","features":[110]},{"name":"CLUSCTL_RESOURCE_DELETE","features":[110]},{"name":"CLUSCTL_RESOURCE_DELETE_CRYPTO_CHECKPOINT","features":[110]},{"name":"CLUSCTL_RESOURCE_DELETE_REGISTRY_CHECKPOINT","features":[110]},{"name":"CLUSCTL_RESOURCE_DISABLE_SHARED_VOLUME_DIRECTIO","features":[110]},{"name":"CLUSCTL_RESOURCE_ENABLE_SHARED_VOLUME_DIRECTIO","features":[110]},{"name":"CLUSCTL_RESOURCE_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_EVICT_NODE","features":[110]},{"name":"CLUSCTL_RESOURCE_FORCE_QUORUM","features":[110]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_GET_EPOCH_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_RELEASE_LOCK","features":[110]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_SET_EPOCH_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_CHARACTERISTICS","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_CLASS_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_CRYPTO_CHECKPOINTS","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_DNS_NAME","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_FAILURE_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_FLAGS","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_ID","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_LOADBAL_PROCESS_LIST","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_NAME","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_NETWORK_NAME","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_NODES_IN_FD","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_OPERATION_CONTEXT","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_REGISTRY_CHECKPOINTS","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_REQUIRED_DEPENDENCIES","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_RESOURCE_TYPE","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_GET_STATE_CHANGE_TIME","features":[110]},{"name":"CLUSCTL_RESOURCE_INITIALIZE","features":[110]},{"name":"CLUSCTL_RESOURCE_INSTALL_NODE","features":[110]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RELEASE_LEASE","features":[110]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RENEW_LEASE","features":[110]},{"name":"CLUSCTL_RESOURCE_IS_QUORUM_BLOCKED","features":[110]},{"name":"CLUSCTL_RESOURCE_JOINING_GROUP","features":[110]},{"name":"CLUSCTL_RESOURCE_LEAVING_GROUP","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_CREDS_NOTIFYCAM","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_DELETE_CO","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_REGISTER_DNS_RECORDS","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_REPAIR_VCO","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_RESET_VCO","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFOEX","features":[110]},{"name":"CLUSCTL_RESOURCE_NETNAME_VALIDATE_VCO","features":[110]},{"name":"CLUSCTL_RESOURCE_NOTIFY_DRAIN_COMPLETE","features":[110]},{"name":"CLUSCTL_RESOURCE_NOTIFY_OWNER_CHANGE","features":[110]},{"name":"CLUSCTL_RESOURCE_NOTIFY_QUORUM_STATUS","features":[110]},{"name":"CLUSCTL_RESOURCE_POOL_GET_DRIVE_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_PREPARE_UPGRADE","features":[110]},{"name":"CLUSCTL_RESOURCE_PROVIDER_STATE_CHANGE","features":[110]},{"name":"CLUSCTL_RESOURCE_QUERY_DELETE","features":[110]},{"name":"CLUSCTL_RESOURCE_QUERY_MAINTENANCE_MODE","features":[110]},{"name":"CLUSCTL_RESOURCE_REMOVE_DEPENDENCY","features":[110]},{"name":"CLUSCTL_RESOURCE_REMOVE_OWNER","features":[110]},{"name":"CLUSCTL_RESOURCE_RLUA_GET_VIRTUAL_SERVER_TOKEN","features":[110]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFOEX","features":[110]},{"name":"CLUSCTL_RESOURCE_RW_MODIFY_NOOP","features":[110]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_COMMAND","features":[110]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_CONTROL","features":[110]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_GET_CLUSTERS","features":[110]},{"name":"CLUSCTL_RESOURCE_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_SET_CSV_MAINTENANCE_MODE","features":[110]},{"name":"CLUSCTL_RESOURCE_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[110]},{"name":"CLUSCTL_RESOURCE_SET_MAINTENANCE_MODE","features":[110]},{"name":"CLUSCTL_RESOURCE_SET_NAME","features":[110]},{"name":"CLUSCTL_RESOURCE_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_SET_SHARED_VOLUME_BACKUP_MODE","features":[110]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON","features":[110]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_STRUCT","features":[110]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_VERSION_1","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DIRTY","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISKID","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX2","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_NUMBER_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_MOUNTPOINTS","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_STATES","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_PATH_VALID","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_SHARED_VOLUME","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[110]},{"name":"CLUSCTL_RESOURCE_STORAGE_SET_DRIVELETTER","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_CHECK_DRAIN_VETO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_CLUSTER_VERSION_CHANGED","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_CODES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_EVICT_NODE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_FIXUP_ON_UPGRADE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_DIRECTORY","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_PATH","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_SCRIPT_VALIDATE_PATH","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_ARB_TIMEOUT","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CHARACTERISTICS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CLASS_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CRYPTO_CHECKPOINTS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_FLAGS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REGISTRY_CHECKPOINTS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REQUIRED_DEPENDENCIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_HOLD_IO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_INSTALL_NODE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_GET_OU_FOR_VCO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_VALIDATE_NETNAME","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_DRAIN_COMPLETE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_MONITOR_SHUTTING_DOWN","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_PREPARE_UPGRADE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_QUERY_DELETE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_ADD_REPLICATION_GROUP","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_VOLUME","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_DISKS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICA_VOLUMES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_RESOURCE_GROUP","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_RESUME_IO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_ADD_VOLUME_INFO","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_FILTER_BY_POOL","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_INCLUDE_NON_SHARED_DISKS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INPUT","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DISKID","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DRIVELETTERS","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_RESOURCEID","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CLUSTERABLE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CSV_FILE","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMAP_DRIVELETTER","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMOVE_VM_OWNERSHIP","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_SYNC_CLUSDISK_DB","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_UNKNOWN","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_UPGRADE_COMPLETED","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_TYPE_WITNESS_VALIDATE_PATH","features":[110]},{"name":"CLUSCTL_RESOURCE_UNDELETE","features":[110]},{"name":"CLUSCTL_RESOURCE_UNKNOWN","features":[110]},{"name":"CLUSCTL_RESOURCE_UPGRADE_COMPLETED","features":[110]},{"name":"CLUSCTL_RESOURCE_UPGRADE_DLL","features":[110]},{"name":"CLUSCTL_RESOURCE_VALIDATE_CHANGE_GROUP","features":[110]},{"name":"CLUSCTL_RESOURCE_VALIDATE_COMMON_PROPERTIES","features":[110]},{"name":"CLUSCTL_RESOURCE_VALIDATE_PRIVATE_PROPERTIES","features":[110]},{"name":"CLUSGROUPSET_STATUS_APPLICATION_READY","features":[110]},{"name":"CLUSGROUPSET_STATUS_GROUPS_ONLINE","features":[110]},{"name":"CLUSGROUPSET_STATUS_GROUPS_PENDING","features":[110]},{"name":"CLUSGROUPSET_STATUS_OS_HEARTBEAT","features":[110]},{"name":"CLUSGROUP_TYPE","features":[110]},{"name":"CLUSGRP_STATUS_APPLICATION_READY","features":[110]},{"name":"CLUSGRP_STATUS_EMBEDDED_FAILURE","features":[110]},{"name":"CLUSGRP_STATUS_LOCKED_MODE","features":[110]},{"name":"CLUSGRP_STATUS_NETWORK_FAILURE","features":[110]},{"name":"CLUSGRP_STATUS_OFFLINE_DUE_TO_ANTIAFFINITY_CONFLICT","features":[110]},{"name":"CLUSGRP_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[110]},{"name":"CLUSGRP_STATUS_OS_HEARTBEAT","features":[110]},{"name":"CLUSGRP_STATUS_PHYSICAL_RESOURCES_LACKING","features":[110]},{"name":"CLUSGRP_STATUS_PREEMPTED","features":[110]},{"name":"CLUSGRP_STATUS_UNMONITORED","features":[110]},{"name":"CLUSGRP_STATUS_WAITING_FOR_DEPENDENCIES","features":[110]},{"name":"CLUSGRP_STATUS_WAITING_IN_QUEUE_FOR_MOVE","features":[110]},{"name":"CLUSGRP_STATUS_WAITING_TO_START","features":[110]},{"name":"CLUSPROP_BINARY","features":[110]},{"name":"CLUSPROP_BUFFER_HELPER","features":[1,110,4]},{"name":"CLUSPROP_DWORD","features":[110]},{"name":"CLUSPROP_FILETIME","features":[1,110]},{"name":"CLUSPROP_FORMAT_BINARY","features":[110]},{"name":"CLUSPROP_FORMAT_DWORD","features":[110]},{"name":"CLUSPROP_FORMAT_EXPANDED_SZ","features":[110]},{"name":"CLUSPROP_FORMAT_EXPAND_SZ","features":[110]},{"name":"CLUSPROP_FORMAT_FILETIME","features":[110]},{"name":"CLUSPROP_FORMAT_LARGE_INTEGER","features":[110]},{"name":"CLUSPROP_FORMAT_LONG","features":[110]},{"name":"CLUSPROP_FORMAT_MULTI_SZ","features":[110]},{"name":"CLUSPROP_FORMAT_PROPERTY_LIST","features":[110]},{"name":"CLUSPROP_FORMAT_SECURITY_DESCRIPTOR","features":[110]},{"name":"CLUSPROP_FORMAT_SZ","features":[110]},{"name":"CLUSPROP_FORMAT_ULARGE_INTEGER","features":[110]},{"name":"CLUSPROP_FORMAT_UNKNOWN","features":[110]},{"name":"CLUSPROP_FORMAT_USER","features":[110]},{"name":"CLUSPROP_FORMAT_VALUE_LIST","features":[110]},{"name":"CLUSPROP_FORMAT_WORD","features":[110]},{"name":"CLUSPROP_FTSET_INFO","features":[110]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS","features":[110]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_DISABLED","features":[110]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_ENABLED","features":[110]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_TRACK_NIC","features":[110]},{"name":"CLUSPROP_LARGE_INTEGER","features":[110]},{"name":"CLUSPROP_LIST","features":[110]},{"name":"CLUSPROP_LONG","features":[110]},{"name":"CLUSPROP_PARTITION_INFO","features":[110]},{"name":"CLUSPROP_PARTITION_INFO_EX","features":[110]},{"name":"CLUSPROP_PARTITION_INFO_EX2","features":[110]},{"name":"CLUSPROP_PIFLAGS","features":[110]},{"name":"CLUSPROP_PIFLAG_DEFAULT_QUORUM","features":[110]},{"name":"CLUSPROP_PIFLAG_ENCRYPTION_ENABLED","features":[110]},{"name":"CLUSPROP_PIFLAG_RAW","features":[110]},{"name":"CLUSPROP_PIFLAG_REMOVABLE","features":[110]},{"name":"CLUSPROP_PIFLAG_STICKY","features":[110]},{"name":"CLUSPROP_PIFLAG_UNKNOWN","features":[110]},{"name":"CLUSPROP_PIFLAG_USABLE","features":[110]},{"name":"CLUSPROP_PIFLAG_USABLE_FOR_CSV","features":[110]},{"name":"CLUSPROP_REQUIRED_DEPENDENCY","features":[110]},{"name":"CLUSPROP_RESOURCE_CLASS","features":[110]},{"name":"CLUSPROP_RESOURCE_CLASS_INFO","features":[110]},{"name":"CLUSPROP_SCSI_ADDRESS","features":[110]},{"name":"CLUSPROP_SECURITY_DESCRIPTOR","features":[110,4]},{"name":"CLUSPROP_SYNTAX","features":[110]},{"name":"CLUSPROP_SYNTAX_DISK_GUID","features":[110]},{"name":"CLUSPROP_SYNTAX_DISK_NUMBER","features":[110]},{"name":"CLUSPROP_SYNTAX_DISK_SERIALNUMBER","features":[110]},{"name":"CLUSPROP_SYNTAX_DISK_SIGNATURE","features":[110]},{"name":"CLUSPROP_SYNTAX_DISK_SIZE","features":[110]},{"name":"CLUSPROP_SYNTAX_ENDMARK","features":[110]},{"name":"CLUSPROP_SYNTAX_FTSET_INFO","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_BINARY","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_DWORD","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPANDED_SZ","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPAND_SZ","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_FILETIME","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LARGE_INTEGER","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LONG","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_MULTI_SZ","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_PROPERTY_LIST","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SECURITY_DESCRIPTOR","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SZ","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_ULARGE_INTEGER","features":[110]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_WORD","features":[110]},{"name":"CLUSPROP_SYNTAX_NAME","features":[110]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO","features":[110]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX","features":[110]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX2","features":[110]},{"name":"CLUSPROP_SYNTAX_RESCLASS","features":[110]},{"name":"CLUSPROP_SYNTAX_SCSI_ADDRESS","features":[110]},{"name":"CLUSPROP_SYNTAX_STORAGE_DEVICE_ID_DESCRIPTOR","features":[110]},{"name":"CLUSPROP_SZ","features":[110]},{"name":"CLUSPROP_TYPE_DISK_GUID","features":[110]},{"name":"CLUSPROP_TYPE_DISK_NUMBER","features":[110]},{"name":"CLUSPROP_TYPE_DISK_SERIALNUMBER","features":[110]},{"name":"CLUSPROP_TYPE_DISK_SIZE","features":[110]},{"name":"CLUSPROP_TYPE_ENDMARK","features":[110]},{"name":"CLUSPROP_TYPE_FTSET_INFO","features":[110]},{"name":"CLUSPROP_TYPE_LIST_VALUE","features":[110]},{"name":"CLUSPROP_TYPE_NAME","features":[110]},{"name":"CLUSPROP_TYPE_PARTITION_INFO","features":[110]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX","features":[110]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX2","features":[110]},{"name":"CLUSPROP_TYPE_RESCLASS","features":[110]},{"name":"CLUSPROP_TYPE_RESERVED1","features":[110]},{"name":"CLUSPROP_TYPE_SCSI_ADDRESS","features":[110]},{"name":"CLUSPROP_TYPE_SIGNATURE","features":[110]},{"name":"CLUSPROP_TYPE_STORAGE_DEVICE_ID_DESCRIPTOR","features":[110]},{"name":"CLUSPROP_TYPE_UNKNOWN","features":[110]},{"name":"CLUSPROP_TYPE_USER","features":[110]},{"name":"CLUSPROP_ULARGE_INTEGER","features":[110]},{"name":"CLUSPROP_VALUE","features":[110]},{"name":"CLUSPROP_WORD","features":[110]},{"name":"CLUSREG_COMMAND_NONE","features":[110]},{"name":"CLUSREG_CONDITION_EXISTS","features":[110]},{"name":"CLUSREG_CONDITION_IS_EQUAL","features":[110]},{"name":"CLUSREG_CONDITION_IS_GREATER_THAN","features":[110]},{"name":"CLUSREG_CONDITION_IS_LESS_THAN","features":[110]},{"name":"CLUSREG_CONDITION_IS_NOT_EQUAL","features":[110]},{"name":"CLUSREG_CONDITION_KEY_EXISTS","features":[110]},{"name":"CLUSREG_CONDITION_KEY_NOT_EXISTS","features":[110]},{"name":"CLUSREG_CONDITION_NOT_EXISTS","features":[110]},{"name":"CLUSREG_CONTROL_COMMAND","features":[110]},{"name":"CLUSREG_CREATE_KEY","features":[110]},{"name":"CLUSREG_DATABASE_ISOLATE_READ","features":[110]},{"name":"CLUSREG_DATABASE_SYNC_WRITE_TO_ALL_NODES","features":[110]},{"name":"CLUSREG_DELETE_KEY","features":[110]},{"name":"CLUSREG_DELETE_VALUE","features":[110]},{"name":"CLUSREG_KEYNAME_OBJECTGUIDS","features":[110]},{"name":"CLUSREG_LAST_COMMAND","features":[110]},{"name":"CLUSREG_NAME_AFFINITYRULE_ENABLED","features":[110]},{"name":"CLUSREG_NAME_AFFINITYRULE_GROUPS","features":[110]},{"name":"CLUSREG_NAME_AFFINITYRULE_NAME","features":[110]},{"name":"CLUSREG_NAME_AFFINITYRULE_TYPE","features":[110]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ACCOUNT_NAME","features":[110]},{"name":"CLUSREG_NAME_CLOUDWITNESS_CONTAINER_NAME","features":[110]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ENDPOINT_INFO","features":[110]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_KEY","features":[110]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_TOKEN","features":[110]},{"name":"CLUSREG_NAME_CLUS_DEFAULT_NETWORK_ROLE","features":[110]},{"name":"CLUSREG_NAME_CLUS_DESC","features":[110]},{"name":"CLUSREG_NAME_CLUS_SD","features":[110]},{"name":"CLUSREG_NAME_CROSS_SITE_DELAY","features":[110]},{"name":"CLUSREG_NAME_CROSS_SITE_THRESHOLD","features":[110]},{"name":"CLUSREG_NAME_CROSS_SUBNET_DELAY","features":[110]},{"name":"CLUSREG_NAME_CROSS_SUBNET_THRESHOLD","features":[110]},{"name":"CLUSREG_NAME_CSV_BLOCK_CACHE","features":[110]},{"name":"CLUSREG_NAME_CSV_MDS_SD","features":[110]},{"name":"CLUSREG_NAME_DATABASE_READ_WRITE_MODE","features":[110]},{"name":"CLUSREG_NAME_DDA_DEVICE_ALLOCATIONS","features":[110]},{"name":"CLUSREG_NAME_DHCP_BACKUP_PATH","features":[110]},{"name":"CLUSREG_NAME_DHCP_DATABASE_PATH","features":[110]},{"name":"CLUSREG_NAME_DRAIN_ON_SHUTDOWN","features":[110]},{"name":"CLUSREG_NAME_ENABLED_EVENT_LOGS","features":[110]},{"name":"CLUSREG_NAME_FAILOVER_MOVE_MIGRATION_TYPE","features":[110]},{"name":"CLUSREG_NAME_FILESHR_CA_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_FILESHR_HIDE_SUBDIR_SHARES","features":[110]},{"name":"CLUSREG_NAME_FILESHR_IS_DFS_ROOT","features":[110]},{"name":"CLUSREG_NAME_FILESHR_MAX_USERS","features":[110]},{"name":"CLUSREG_NAME_FILESHR_PATH","features":[110]},{"name":"CLUSREG_NAME_FILESHR_QOS_FLOWSCOPE","features":[110]},{"name":"CLUSREG_NAME_FILESHR_QOS_POLICYID","features":[110]},{"name":"CLUSREG_NAME_FILESHR_REMARK","features":[110]},{"name":"CLUSREG_NAME_FILESHR_SD","features":[110]},{"name":"CLUSREG_NAME_FILESHR_SERVER_NAME","features":[110]},{"name":"CLUSREG_NAME_FILESHR_SHARE_FLAGS","features":[110]},{"name":"CLUSREG_NAME_FILESHR_SHARE_NAME","features":[110]},{"name":"CLUSREG_NAME_FILESHR_SHARE_SUBDIRS","features":[110]},{"name":"CLUSREG_NAME_FIXQUORUM","features":[110]},{"name":"CLUSREG_NAME_FSWITNESS_ARB_DELAY","features":[110]},{"name":"CLUSREG_NAME_FSWITNESS_IMPERSONATE_CNO","features":[110]},{"name":"CLUSREG_NAME_FSWITNESS_SHARE_PATH","features":[110]},{"name":"CLUSREG_NAME_FUNCTIONAL_LEVEL","features":[110]},{"name":"CLUSREG_NAME_GENAPP_COMMAND_LINE","features":[110]},{"name":"CLUSREG_NAME_GENAPP_CURRENT_DIRECTORY","features":[110]},{"name":"CLUSREG_NAME_GENAPP_USE_NETWORK_NAME","features":[110]},{"name":"CLUSREG_NAME_GENSCRIPT_SCRIPT_FILEPATH","features":[110]},{"name":"CLUSREG_NAME_GENSVC_SERVICE_NAME","features":[110]},{"name":"CLUSREG_NAME_GENSVC_STARTUP_PARAMS","features":[110]},{"name":"CLUSREG_NAME_GENSVC_USE_NETWORK_NAME","features":[110]},{"name":"CLUSREG_NAME_GPUP_DEVICE_ALLOCATIONS","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_AVAILABILITY_SET_INDEX_TO_NODE_MAPPING","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_FAULT_DOMAINS","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_IS_AVAILABILITY_SET","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_IS_GLOBAL","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_NAME","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_RESERVE_NODE","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_COUNT","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_DELAY","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_SETTING","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_STATUS_INFORMATION","features":[110]},{"name":"CLUSREG_NAME_GROUPSET_UPDATE_DOMAINS","features":[110]},{"name":"CLUSREG_NAME_GROUP_DEPENDENCY_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_GRP_ANTI_AFFINITY_CLASS_NAME","features":[110]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH","features":[110]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH_HIGH","features":[110]},{"name":"CLUSREG_NAME_GRP_COLD_START_SETTING","features":[110]},{"name":"CLUSREG_NAME_GRP_DEFAULT_OWNER","features":[110]},{"name":"CLUSREG_NAME_GRP_DESC","features":[110]},{"name":"CLUSREG_NAME_GRP_FAILBACK_TYPE","features":[110]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_END","features":[110]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_START","features":[110]},{"name":"CLUSREG_NAME_GRP_FAILOVER_PERIOD","features":[110]},{"name":"CLUSREG_NAME_GRP_FAILOVER_THRESHOLD","features":[110]},{"name":"CLUSREG_NAME_GRP_FAULT_DOMAIN","features":[110]},{"name":"CLUSREG_NAME_GRP_LOCK_MOVE","features":[110]},{"name":"CLUSREG_NAME_GRP_NAME","features":[110]},{"name":"CLUSREG_NAME_GRP_PERSISTENT_STATE","features":[110]},{"name":"CLUSREG_NAME_GRP_PLACEMENT_OPTIONS","features":[110]},{"name":"CLUSREG_NAME_GRP_PREFERRED_SITE","features":[110]},{"name":"CLUSREG_NAME_GRP_PRIORITY","features":[110]},{"name":"CLUSREG_NAME_GRP_RESILIENCY_PERIOD","features":[110]},{"name":"CLUSREG_NAME_GRP_START_DELAY","features":[110]},{"name":"CLUSREG_NAME_GRP_STATUS_INFORMATION","features":[110]},{"name":"CLUSREG_NAME_GRP_TYPE","features":[110]},{"name":"CLUSREG_NAME_GRP_UPDATE_DOMAIN","features":[110]},{"name":"CLUSREG_NAME_IGNORE_PERSISTENT_STATE","features":[110]},{"name":"CLUSREG_NAME_IPADDR_ADDRESS","features":[110]},{"name":"CLUSREG_NAME_IPADDR_DHCP_ADDRESS","features":[110]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SERVER","features":[110]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SUBNET_MASK","features":[110]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_DHCP","features":[110]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_NETBIOS","features":[110]},{"name":"CLUSREG_NAME_IPADDR_LEASE_OBTAINED_TIME","features":[110]},{"name":"CLUSREG_NAME_IPADDR_LEASE_TERMINATES_TIME","features":[110]},{"name":"CLUSREG_NAME_IPADDR_NETWORK","features":[110]},{"name":"CLUSREG_NAME_IPADDR_OVERRIDE_ADDRMATCH","features":[110]},{"name":"CLUSREG_NAME_IPADDR_PROBE_FAILURE_THRESHOLD","features":[110]},{"name":"CLUSREG_NAME_IPADDR_PROBE_PORT","features":[110]},{"name":"CLUSREG_NAME_IPADDR_SHARED_NETNAME","features":[110]},{"name":"CLUSREG_NAME_IPADDR_SUBNET_MASK","features":[110]},{"name":"CLUSREG_NAME_IPADDR_T1","features":[110]},{"name":"CLUSREG_NAME_IPADDR_T2","features":[110]},{"name":"CLUSREG_NAME_IPV6_NATIVE_ADDRESS","features":[110]},{"name":"CLUSREG_NAME_IPV6_NATIVE_NETWORK","features":[110]},{"name":"CLUSREG_NAME_IPV6_NATIVE_PREFIX_LENGTH","features":[110]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_ADDRESS","features":[110]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_TUNNELTYPE","features":[110]},{"name":"CLUSREG_NAME_LAST_RECENT_EVENTS_RESET_TIME","features":[110]},{"name":"CLUSREG_NAME_LOG_FILE_PATH","features":[110]},{"name":"CLUSREG_NAME_MESSAGE_BUFFER_LENGTH","features":[110]},{"name":"CLUSREG_NAME_MIXED_MODE","features":[110]},{"name":"CLUSREG_NAME_NETFT_IPSEC_ENABLED","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_ID","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_NAME","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_ADDRESS","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_DESC","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_DHCP_ENABLED","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_IPV4_ADDRESSES","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_IPV6_ADDRESSES","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_NAME","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_NETWORK","features":[110]},{"name":"CLUSREG_NAME_NETIFACE_NODE","features":[110]},{"name":"CLUSREG_NAME_NETNAME_AD_AWARE","features":[110]},{"name":"CLUSREG_NAME_NETNAME_ALIASES","features":[110]},{"name":"CLUSREG_NAME_NETNAME_CONTAINERGUID","features":[110]},{"name":"CLUSREG_NAME_NETNAME_CREATING_DC","features":[110]},{"name":"CLUSREG_NAME_NETNAME_DNN_DISABLE_CLONES","features":[110]},{"name":"CLUSREG_NAME_NETNAME_DNS_NAME","features":[110]},{"name":"CLUSREG_NAME_NETNAME_DNS_SUFFIX","features":[110]},{"name":"CLUSREG_NAME_NETNAME_EXCLUDE_NETWORKS","features":[110]},{"name":"CLUSREG_NAME_NETNAME_HOST_TTL","features":[110]},{"name":"CLUSREG_NAME_NETNAME_IN_USE_NETWORKS","features":[110]},{"name":"CLUSREG_NAME_NETNAME_LAST_DNS_UPDATE","features":[110]},{"name":"CLUSREG_NAME_NETNAME_NAME","features":[110]},{"name":"CLUSREG_NAME_NETNAME_OBJECT_ID","features":[110]},{"name":"CLUSREG_NAME_NETNAME_PUBLISH_PTR","features":[110]},{"name":"CLUSREG_NAME_NETNAME_REGISTER_ALL_IP","features":[110]},{"name":"CLUSREG_NAME_NETNAME_REMAP_PIPE_NAMES","features":[110]},{"name":"CLUSREG_NAME_NETNAME_REMOVEVCO_ONDELETE","features":[110]},{"name":"CLUSREG_NAME_NETNAME_RESOURCE_DATA","features":[110]},{"name":"CLUSREG_NAME_NETNAME_STATUS_DNS","features":[110]},{"name":"CLUSREG_NAME_NETNAME_STATUS_KERBEROS","features":[110]},{"name":"CLUSREG_NAME_NETNAME_STATUS_NETBIOS","features":[110]},{"name":"CLUSREG_NAME_NETNAME_VCO_CONTAINER","features":[110]},{"name":"CLUSREG_NAME_NET_ADDRESS","features":[110]},{"name":"CLUSREG_NAME_NET_ADDRESS_MASK","features":[110]},{"name":"CLUSREG_NAME_NET_AUTOMETRIC","features":[110]},{"name":"CLUSREG_NAME_NET_DESC","features":[110]},{"name":"CLUSREG_NAME_NET_IPV4_ADDRESSES","features":[110]},{"name":"CLUSREG_NAME_NET_IPV4_PREFIXLENGTHS","features":[110]},{"name":"CLUSREG_NAME_NET_IPV6_ADDRESSES","features":[110]},{"name":"CLUSREG_NAME_NET_IPV6_PREFIXLENGTHS","features":[110]},{"name":"CLUSREG_NAME_NET_METRIC","features":[110]},{"name":"CLUSREG_NAME_NET_NAME","features":[110]},{"name":"CLUSREG_NAME_NET_RDMA_CAPABLE","features":[110]},{"name":"CLUSREG_NAME_NET_ROLE","features":[110]},{"name":"CLUSREG_NAME_NET_RSS_CAPABLE","features":[110]},{"name":"CLUSREG_NAME_NET_SPEED","features":[110]},{"name":"CLUSREG_NAME_NODE_BUILD_NUMBER","features":[110]},{"name":"CLUSREG_NAME_NODE_CSDVERSION","features":[110]},{"name":"CLUSREG_NAME_NODE_DESC","features":[110]},{"name":"CLUSREG_NAME_NODE_DRAIN_STATUS","features":[110]},{"name":"CLUSREG_NAME_NODE_DRAIN_TARGET","features":[110]},{"name":"CLUSREG_NAME_NODE_DYNAMIC_WEIGHT","features":[110]},{"name":"CLUSREG_NAME_NODE_FAULT_DOMAIN","features":[110]},{"name":"CLUSREG_NAME_NODE_FDID","features":[110]},{"name":"CLUSREG_NAME_NODE_HIGHEST_VERSION","features":[110]},{"name":"CLUSREG_NAME_NODE_IS_PRIMARY","features":[110]},{"name":"CLUSREG_NAME_NODE_LOWEST_VERSION","features":[110]},{"name":"CLUSREG_NAME_NODE_MAJOR_VERSION","features":[110]},{"name":"CLUSREG_NAME_NODE_MANUFACTURER","features":[110]},{"name":"CLUSREG_NAME_NODE_MINOR_VERSION","features":[110]},{"name":"CLUSREG_NAME_NODE_MODEL","features":[110]},{"name":"CLUSREG_NAME_NODE_NAME","features":[110]},{"name":"CLUSREG_NAME_NODE_NEEDS_PQ","features":[110]},{"name":"CLUSREG_NAME_NODE_SERIALNUMBER","features":[110]},{"name":"CLUSREG_NAME_NODE_STATUS_INFO","features":[110]},{"name":"CLUSREG_NAME_NODE_UNIQUEID","features":[110]},{"name":"CLUSREG_NAME_NODE_WEIGHT","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_CSVBLOCKCACHE","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTAGELIMIT","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTDIFFAREASIZE","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_CSVWRITETHROUGH","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBINTERVAL","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBTYPE","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKGUID","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDGUID","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDTYPE","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIODELAY","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKPATH","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRECOVERYACTION","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRELOAD","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRUNCHKDSK","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKSIGNATURE","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKUNIQUEIDS","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_DISKVOLUMEINFO","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_FASTONLINEARBITRATE","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_MAINTMODE","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_MIGRATEFIXUP","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_SPACEIDGUID","features":[110]},{"name":"CLUSREG_NAME_PHYSDISK_VOLSNAPACTIVATETIMEOUT","features":[110]},{"name":"CLUSREG_NAME_PLACEMENT_OPTIONS","features":[110]},{"name":"CLUSREG_NAME_PLUMB_ALL_CROSS_SUBNET_ROUTES","features":[110]},{"name":"CLUSREG_NAME_PREVENTQUORUM","features":[110]},{"name":"CLUSREG_NAME_PRTSPOOL_DEFAULT_SPOOL_DIR","features":[110]},{"name":"CLUSREG_NAME_PRTSPOOL_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_QUARANTINE_DURATION","features":[110]},{"name":"CLUSREG_NAME_QUARANTINE_THRESHOLD","features":[110]},{"name":"CLUSREG_NAME_QUORUM_ARBITRATION_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_RESILIENCY_DEFAULT_SECONDS","features":[110]},{"name":"CLUSREG_NAME_RESILIENCY_LEVEL","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_ADMIN_EXTENSIONS","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_DEADLOCK_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_DESC","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_DLL_NAME","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_LOG_QUERY","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_POLICY","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_SERVICES","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_ENABLED_EVENT_LOGS","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_IS_ALIVE","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_LOOKS_ALIVE","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_MAX_MONITORS","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_NAME","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_PENDING_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_WPR_PROFILES","features":[110]},{"name":"CLUSREG_NAME_RESTYPE_WPR_START_AFTER","features":[110]},{"name":"CLUSREG_NAME_RES_DATA1","features":[110]},{"name":"CLUSREG_NAME_RES_DATA2","features":[110]},{"name":"CLUSREG_NAME_RES_DEADLOCK_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_RES_DESC","features":[110]},{"name":"CLUSREG_NAME_RES_EMBEDDED_FAILURE_ACTION","features":[110]},{"name":"CLUSREG_NAME_RES_IS_ALIVE","features":[110]},{"name":"CLUSREG_NAME_RES_LAST_OPERATION_STATUS_CODE","features":[110]},{"name":"CLUSREG_NAME_RES_LOOKS_ALIVE","features":[110]},{"name":"CLUSREG_NAME_RES_MONITOR_PID","features":[110]},{"name":"CLUSREG_NAME_RES_NAME","features":[110]},{"name":"CLUSREG_NAME_RES_PENDING_TIMEOUT","features":[110]},{"name":"CLUSREG_NAME_RES_PERSISTENT_STATE","features":[110]},{"name":"CLUSREG_NAME_RES_RESTART_ACTION","features":[110]},{"name":"CLUSREG_NAME_RES_RESTART_DELAY","features":[110]},{"name":"CLUSREG_NAME_RES_RESTART_PERIOD","features":[110]},{"name":"CLUSREG_NAME_RES_RESTART_THRESHOLD","features":[110]},{"name":"CLUSREG_NAME_RES_RETRY_PERIOD_ON_FAILURE","features":[110]},{"name":"CLUSREG_NAME_RES_SEPARATE_MONITOR","features":[110]},{"name":"CLUSREG_NAME_RES_STATUS","features":[110]},{"name":"CLUSREG_NAME_RES_STATUS_INFORMATION","features":[110]},{"name":"CLUSREG_NAME_RES_TYPE","features":[110]},{"name":"CLUSREG_NAME_ROUTE_HISTORY_LENGTH","features":[110]},{"name":"CLUSREG_NAME_SAME_SUBNET_DELAY","features":[110]},{"name":"CLUSREG_NAME_SAME_SUBNET_THRESHOLD","features":[110]},{"name":"CLUSREG_NAME_SHUTDOWN_TIMEOUT_MINUTES","features":[110]},{"name":"CLUSREG_NAME_SOFS_SMBASYMMETRYMODE","features":[110]},{"name":"CLUSREG_NAME_START_MEMORY","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_DESCRIPTION","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_HEALTH","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_NAME","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLARBITRATE","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLCONSUMEDCAPACITY","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDESC","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDRIVEIDS","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLHEALTH","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLIDGUID","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLNAME","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMSHARE","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMUSERACCOUNT","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLREEVALTIMEOUT","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLSTATE","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLTOTALCAPACITY","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_PROVISIONING","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYCOLUMNS","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYINTERLEAVE","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYTYPE","features":[110]},{"name":"CLUSREG_NAME_STORAGESPACE_STATE","features":[110]},{"name":"CLUSREG_NAME_UPGRADE_VERSION","features":[110]},{"name":"CLUSREG_NAME_VIP_ADAPTER_NAME","features":[110]},{"name":"CLUSREG_NAME_VIP_ADDRESS","features":[110]},{"name":"CLUSREG_NAME_VIP_PREFIX_LENGTH","features":[110]},{"name":"CLUSREG_NAME_VIP_RDID","features":[110]},{"name":"CLUSREG_NAME_VIP_VSID","features":[110]},{"name":"CLUSREG_NAME_VIRTUAL_NUMA_COUNT","features":[110]},{"name":"CLUSREG_NAME_VSSTASK_APPNAME","features":[110]},{"name":"CLUSREG_NAME_VSSTASK_APPPARAMS","features":[110]},{"name":"CLUSREG_NAME_VSSTASK_CURRENTDIRECTORY","features":[110]},{"name":"CLUSREG_NAME_VSSTASK_TRIGGERARRAY","features":[110]},{"name":"CLUSREG_NAME_WINS_BACKUP_PATH","features":[110]},{"name":"CLUSREG_NAME_WINS_DATABASE_PATH","features":[110]},{"name":"CLUSREG_NAME_WITNESS_DYNAMIC_WEIGHT","features":[110]},{"name":"CLUSREG_READ_ERROR","features":[110]},{"name":"CLUSREG_READ_KEY","features":[110]},{"name":"CLUSREG_READ_VALUE","features":[110]},{"name":"CLUSREG_SET_KEY_SECURITY","features":[110]},{"name":"CLUSREG_SET_VALUE","features":[110]},{"name":"CLUSREG_VALUE_DELETED","features":[110]},{"name":"CLUSRESDLL_STATUS_DO_NOT_COLLECT_WER_REPORT","features":[110]},{"name":"CLUSRESDLL_STATUS_DUMP_NOW","features":[110]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_MEMORY","features":[110]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_OTHER_RESOURCES","features":[110]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_PROCESSOR","features":[110]},{"name":"CLUSRESDLL_STATUS_INVALID_PARAMETERS","features":[110]},{"name":"CLUSRESDLL_STATUS_NETWORK_NOT_AVAILABLE","features":[110]},{"name":"CLUSRESDLL_STATUS_OFFLINE_BUSY","features":[110]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_REJECTED","features":[110]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_THROTTLED","features":[110]},{"name":"CLUSRESDLL_STATUS_OFFLINE_SOURCE_THROTTLED","features":[110]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_OFFLINE_CALLS","features":[110]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_ONLINE_CALLS","features":[110]},{"name":"CLUSRES_NAME_GET_OPERATION_CONTEXT_FLAGS","features":[110]},{"name":"CLUSRES_STATUS_APPLICATION_READY","features":[110]},{"name":"CLUSRES_STATUS_EMBEDDED_FAILURE","features":[110]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_CPU","features":[110]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_GENERIC_RESOURCES","features":[110]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_MEMORY","features":[110]},{"name":"CLUSRES_STATUS_LOCKED_MODE","features":[110]},{"name":"CLUSRES_STATUS_NETWORK_FAILURE","features":[110]},{"name":"CLUSRES_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[110]},{"name":"CLUSRES_STATUS_OS_HEARTBEAT","features":[110]},{"name":"CLUSRES_STATUS_UNMONITORED","features":[110]},{"name":"CLUSTERSET_OBJECT_TYPE","features":[110]},{"name":"CLUSTERSET_OBJECT_TYPE_DATABASE","features":[110]},{"name":"CLUSTERSET_OBJECT_TYPE_MEMBER","features":[110]},{"name":"CLUSTERSET_OBJECT_TYPE_NONE","features":[110]},{"name":"CLUSTERSET_OBJECT_TYPE_WORKLOAD","features":[110]},{"name":"CLUSTERVERSIONINFO","features":[110]},{"name":"CLUSTERVERSIONINFO_NT4","features":[110]},{"name":"CLUSTER_ADD_EVICT_DELAY","features":[110]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG","features":[1,110]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG_V1","features":[110]},{"name":"CLUSTER_BATCH_COMMAND","features":[110]},{"name":"CLUSTER_CHANGE","features":[110]},{"name":"CLUSTER_CHANGE_ALL","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_GROUP_ADDED_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_HANDLE_CLOSE_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_LOST_NOTIFICATIONS_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_MEMBERSHIP_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_NETWORK_ADDED_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_NODE_ADDED_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_PROPERTY","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_RENAME_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_RESOURCE_TYPE_ADDED_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_UPGRADED_V2","features":[110]},{"name":"CLUSTER_CHANGE_CLUSTER_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_DELETED_v2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENCIES_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENTS_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_ADDED","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_REMOVED","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_HANDLE_CLOSE_v2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUPSET_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_ADDED","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_DELETED","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_DELETED_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_HANDLE_CLOSE_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_OWNER_NODE_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_PREFERRED_OWNERS_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_PROPERTY","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_ADDED_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_GAINED_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_LOST_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_STATE","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_GROUP_V2","features":[110]},{"name":"CLUSTER_CHANGE_HANDLE_CLOSE","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ADDED","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_HANDLE_CLOSE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PROPERTY","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETINTERFACE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_ADDED","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_HANDLE_CLOSE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_PROPERTY","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_STATE","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NETWORK_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_ADDED","features":[110]},{"name":"CLUSTER_CHANGE_NODE_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_DELETED","features":[110]},{"name":"CLUSTER_CHANGE_NODE_DELETED_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_GROUP_GAINED_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_GROUP_LOST_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_HANDLE_CLOSE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_NETINTERFACE_ADDED_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_PROPERTY","features":[110]},{"name":"CLUSTER_CHANGE_NODE_STATE","features":[110]},{"name":"CLUSTER_CHANGE_NODE_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_UPGRADE_PHASE_V2","features":[110]},{"name":"CLUSTER_CHANGE_NODE_V2","features":[110]},{"name":"CLUSTER_CHANGE_QUORUM_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_QUORUM_STATE","features":[110]},{"name":"CLUSTER_CHANGE_QUORUM_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_QUORUM_V2","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES_V2","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_HANDLE_CLOSE_V2","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME_V2","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE_V2","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_V2","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE","features":[110]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_ADDED","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENCIES_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENTS_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_DLL_UPGRADED_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_HANDLE_CLOSE_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_OWNER_GROUP_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_POSSIBLE_OWNERS_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_PROPERTY","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TERMINAL_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ADDED","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_COMMON_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DLL_UPGRADED_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_POSSIBLE_OWNERS_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PRIVATE_PROPERTY_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PROPERTY","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_V2","features":[110]},{"name":"CLUSTER_CHANGE_RESOURCE_V2","features":[110]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ADDED_V2","features":[110]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ALL_V2","features":[110]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_REMOVED_V2","features":[110]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_STATE_V2","features":[110]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_V2","features":[110]},{"name":"CLUSTER_CHANGE_SPACEPORT_CUSTOM_PNP_V2","features":[110]},{"name":"CLUSTER_CHANGE_SPACEPORT_V2","features":[110]},{"name":"CLUSTER_CHANGE_UPGRADE_ALL","features":[110]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_COMMIT","features":[110]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_POSTCOMMIT","features":[110]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_PREPARE","features":[110]},{"name":"CLUSTER_CLOUD_TYPE","features":[110]},{"name":"CLUSTER_CLOUD_TYPE_AZURE","features":[110]},{"name":"CLUSTER_CLOUD_TYPE_MIXED","features":[110]},{"name":"CLUSTER_CLOUD_TYPE_NONE","features":[110]},{"name":"CLUSTER_CLOUD_TYPE_UNKNOWN","features":[110]},{"name":"CLUSTER_CONFIGURED","features":[110]},{"name":"CLUSTER_CONTROL_OBJECT","features":[110]},{"name":"CLUSTER_CREATE_GROUP_INFO","features":[110]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION","features":[110]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION_1","features":[110]},{"name":"CLUSTER_CSA_VSS_STATE","features":[110]},{"name":"CLUSTER_CSV_COMPATIBLE_FILTERS","features":[110]},{"name":"CLUSTER_CSV_INCOMPATIBLE_FILTERS","features":[110]},{"name":"CLUSTER_CSV_VOLUME_FAULT_STATE","features":[110]},{"name":"CLUSTER_DELETE_ACCESS_CONTROL_ENTRY","features":[110]},{"name":"CLUSTER_ENFORCED_ANTIAFFINITY","features":[110]},{"name":"CLUSTER_ENUM","features":[110]},{"name":"CLUSTER_ENUM_ALL","features":[110]},{"name":"CLUSTER_ENUM_GROUP","features":[110]},{"name":"CLUSTER_ENUM_INTERNAL_NETWORK","features":[110]},{"name":"CLUSTER_ENUM_ITEM","features":[110]},{"name":"CLUSTER_ENUM_ITEM_VERSION","features":[110]},{"name":"CLUSTER_ENUM_ITEM_VERSION_1","features":[110]},{"name":"CLUSTER_ENUM_NETINTERFACE","features":[110]},{"name":"CLUSTER_ENUM_NETWORK","features":[110]},{"name":"CLUSTER_ENUM_NODE","features":[110]},{"name":"CLUSTER_ENUM_RESOURCE","features":[110]},{"name":"CLUSTER_ENUM_RESTYPE","features":[110]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_GROUP","features":[110]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_RESOURCE","features":[110]},{"name":"CLUSTER_GROUP_AUTOFAILBACK_TYPE","features":[110]},{"name":"CLUSTER_GROUP_ENUM","features":[110]},{"name":"CLUSTER_GROUP_ENUM_ALL","features":[110]},{"name":"CLUSTER_GROUP_ENUM_CONTAINS","features":[110]},{"name":"CLUSTER_GROUP_ENUM_ITEM","features":[110]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION","features":[110]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION_1","features":[110]},{"name":"CLUSTER_GROUP_ENUM_NODES","features":[110]},{"name":"CLUSTER_GROUP_PRIORITY","features":[110]},{"name":"CLUSTER_GROUP_STATE","features":[110]},{"name":"CLUSTER_GROUP_WAIT_DELAY","features":[110]},{"name":"CLUSTER_HANG_RECOVERY_ACTION_KEYNAME","features":[110]},{"name":"CLUSTER_HANG_TIMEOUT_KEYNAME","features":[110]},{"name":"CLUSTER_HEALTH_FAULT","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ARGS","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ARRAY","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION_LABEL","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE_LABEL","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE_LABEL","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS_LABEL","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ID","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_ID_LABEL","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_PROPERTY_NAME","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER_LABEL","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED","features":[110]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED_LABEL","features":[110]},{"name":"CLUSTER_INSTALLED","features":[110]},{"name":"CLUSTER_IP_ENTRY","features":[110]},{"name":"CLUSTER_MEMBERSHIP_INFO","features":[1,110]},{"name":"CLUSTER_MGMT_POINT_RESTYPE","features":[110]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_AUTO","features":[110]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_DNN","features":[110]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_SNN","features":[110]},{"name":"CLUSTER_MGMT_POINT_TYPE","features":[110]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO","features":[110]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO_ONLY","features":[110]},{"name":"CLUSTER_MGMT_POINT_TYPE_DNS_ONLY","features":[110]},{"name":"CLUSTER_MGMT_POINT_TYPE_NONE","features":[110]},{"name":"CLUSTER_NAME_AUTO_BALANCER_LEVEL","features":[110]},{"name":"CLUSTER_NAME_AUTO_BALANCER_MODE","features":[110]},{"name":"CLUSTER_NAME_PREFERRED_SITE","features":[110]},{"name":"CLUSTER_NETINTERFACE_STATE","features":[110]},{"name":"CLUSTER_NETWORK_ENUM","features":[110]},{"name":"CLUSTER_NETWORK_ENUM_ALL","features":[110]},{"name":"CLUSTER_NETWORK_ENUM_NETINTERFACES","features":[110]},{"name":"CLUSTER_NETWORK_ROLE","features":[110]},{"name":"CLUSTER_NETWORK_STATE","features":[110]},{"name":"CLUSTER_NODE_DRAIN_STATUS","features":[110]},{"name":"CLUSTER_NODE_ENUM","features":[110]},{"name":"CLUSTER_NODE_ENUM_ALL","features":[110]},{"name":"CLUSTER_NODE_ENUM_GROUPS","features":[110]},{"name":"CLUSTER_NODE_ENUM_NETINTERFACES","features":[110]},{"name":"CLUSTER_NODE_ENUM_PREFERRED_GROUPS","features":[110]},{"name":"CLUSTER_NODE_RESUME_FAILBACK_TYPE","features":[110]},{"name":"CLUSTER_NODE_STATE","features":[110]},{"name":"CLUSTER_NODE_STATUS","features":[110]},{"name":"CLUSTER_NOTIFICATIONS_V1","features":[110]},{"name":"CLUSTER_NOTIFICATIONS_V2","features":[110]},{"name":"CLUSTER_NOTIFICATIONS_VERSION","features":[110]},{"name":"CLUSTER_OBJECT_TYPE","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_AFFINITYRULE","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_CLUSTER","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_FAULTDOMAIN","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_GROUP","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_GROUPSET","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK_INTERFACE","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_NODE","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_NONE","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_QUORUM","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_REGISTRY","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE_TYPE","features":[110]},{"name":"CLUSTER_OBJECT_TYPE_SHARED_VOLUME","features":[110]},{"name":"CLUSTER_PROPERTY_FORMAT","features":[110]},{"name":"CLUSTER_PROPERTY_SYNTAX","features":[110]},{"name":"CLUSTER_PROPERTY_TYPE","features":[110]},{"name":"CLUSTER_QUORUM_LOST","features":[110]},{"name":"CLUSTER_QUORUM_MAINTAINED","features":[110]},{"name":"CLUSTER_QUORUM_TYPE","features":[110]},{"name":"CLUSTER_QUORUM_VALUE","features":[110]},{"name":"CLUSTER_READ_BATCH_COMMAND","features":[110]},{"name":"CLUSTER_REG_COMMAND","features":[110]},{"name":"CLUSTER_REQUEST_REPLY_TIMEOUT","features":[110]},{"name":"CLUSTER_RESOURCE_APPLICATION_STATE","features":[110]},{"name":"CLUSTER_RESOURCE_CLASS","features":[110]},{"name":"CLUSTER_RESOURCE_CREATE_FLAGS","features":[110]},{"name":"CLUSTER_RESOURCE_DEFAULT_MONITOR","features":[110]},{"name":"CLUSTER_RESOURCE_EMBEDDED_FAILURE_ACTION","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM_ALL","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM_DEPENDS","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION_1","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM_NODES","features":[110]},{"name":"CLUSTER_RESOURCE_ENUM_PROVIDES","features":[110]},{"name":"CLUSTER_RESOURCE_RESTART_ACTION","features":[110]},{"name":"CLUSTER_RESOURCE_SEPARATE_MONITOR","features":[110]},{"name":"CLUSTER_RESOURCE_STATE","features":[110]},{"name":"CLUSTER_RESOURCE_STATE_CHANGE_REASON","features":[110]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM","features":[110]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_ALL","features":[110]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_NODES","features":[110]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_RESOURCES","features":[110]},{"name":"CLUSTER_RESOURCE_TYPE_SPECIFIC_V2","features":[110]},{"name":"CLUSTER_RESOURCE_VALID_FLAGS","features":[110]},{"name":"CLUSTER_ROLE","features":[110]},{"name":"CLUSTER_ROLE_STATE","features":[110]},{"name":"CLUSTER_RUNNING","features":[110]},{"name":"CLUSTER_S2D_BUS_TYPES","features":[110]},{"name":"CLUSTER_S2D_CACHE_BEHAVIOR_FLAGS","features":[110]},{"name":"CLUSTER_S2D_CACHE_DESIRED_STATE","features":[110]},{"name":"CLUSTER_S2D_CACHE_FLASH_RESERVE_PERCENT","features":[110]},{"name":"CLUSTER_S2D_CACHE_METADATA_RESERVE","features":[110]},{"name":"CLUSTER_S2D_CACHE_PAGE_SIZE_KBYTES","features":[110]},{"name":"CLUSTER_S2D_ENABLED","features":[110]},{"name":"CLUSTER_S2D_IO_LATENCY_THRESHOLD","features":[110]},{"name":"CLUSTER_S2D_OPTIMIZATIONS","features":[110]},{"name":"CLUSTER_SETUP_PHASE","features":[110]},{"name":"CLUSTER_SETUP_PHASE_SEVERITY","features":[110]},{"name":"CLUSTER_SETUP_PHASE_TYPE","features":[110]},{"name":"CLUSTER_SET_ACCESS_TYPE_ALLOWED","features":[110]},{"name":"CLUSTER_SET_ACCESS_TYPE_DENIED","features":[110]},{"name":"CLUSTER_SET_PASSWORD_STATUS","features":[1,110]},{"name":"CLUSTER_SHARED_VOLUMES_ROOT","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_BACKUP_STATE","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_GUID_INPUT","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_GUID_NAME","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_NAME","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_TYPE","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_VOLUME","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_SNAPSHOT_STATE","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_STATE","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO_EX","features":[110]},{"name":"CLUSTER_SHARED_VOLUME_VSS_WRITER_OPERATION_TIMEOUT","features":[110]},{"name":"CLUSTER_STORAGENODE_STATE","features":[110]},{"name":"CLUSTER_UPGRADE_PHASE","features":[110]},{"name":"CLUSTER_VALIDATE_CSV_FILENAME","features":[110]},{"name":"CLUSTER_VALIDATE_DIRECTORY","features":[110]},{"name":"CLUSTER_VALIDATE_NETNAME","features":[110]},{"name":"CLUSTER_VALIDATE_PATH","features":[110]},{"name":"CLUSTER_VERSION_FLAG_MIXED_MODE","features":[110]},{"name":"CLUSTER_VERSION_UNKNOWN","features":[110]},{"name":"CLUSTER_WITNESS_DATABASE_WRITE_TIMEOUT","features":[110]},{"name":"CLUSTER_WITNESS_FAILED_RESTART_INTERVAL","features":[110]},{"name":"CLUS_ACCESS_ANY","features":[110]},{"name":"CLUS_ACCESS_READ","features":[110]},{"name":"CLUS_ACCESS_WRITE","features":[110]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_FAULT_DOMAIN","features":[110]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_NODE","features":[110]},{"name":"CLUS_AFFINITY_RULE_MAX","features":[110]},{"name":"CLUS_AFFINITY_RULE_MIN","features":[110]},{"name":"CLUS_AFFINITY_RULE_NONE","features":[110]},{"name":"CLUS_AFFINITY_RULE_SAME_FAULT_DOMAIN","features":[110]},{"name":"CLUS_AFFINITY_RULE_SAME_NODE","features":[110]},{"name":"CLUS_AFFINITY_RULE_TYPE","features":[110]},{"name":"CLUS_CHARACTERISTICS","features":[110]},{"name":"CLUS_CHAR_BROADCAST_DELETE","features":[110]},{"name":"CLUS_CHAR_CLONES","features":[110]},{"name":"CLUS_CHAR_COEXIST_IN_SHARED_VOLUME_GROUP","features":[110]},{"name":"CLUS_CHAR_DELETE_REQUIRES_ALL_NODES","features":[110]},{"name":"CLUS_CHAR_DRAIN_LOCAL_OFFLINE","features":[110]},{"name":"CLUS_CHAR_INFRASTRUCTURE","features":[110]},{"name":"CLUS_CHAR_LOCAL_QUORUM","features":[110]},{"name":"CLUS_CHAR_LOCAL_QUORUM_DEBUG","features":[110]},{"name":"CLUS_CHAR_MONITOR_DETACH","features":[110]},{"name":"CLUS_CHAR_MONITOR_REATTACH","features":[110]},{"name":"CLUS_CHAR_NOTIFY_NEW_OWNER","features":[110]},{"name":"CLUS_CHAR_NOT_PREEMPTABLE","features":[110]},{"name":"CLUS_CHAR_OPERATION_CONTEXT","features":[110]},{"name":"CLUS_CHAR_PLACEMENT_DATA","features":[110]},{"name":"CLUS_CHAR_QUORUM","features":[110]},{"name":"CLUS_CHAR_REQUIRES_STATE_CHANGE_REASON","features":[110]},{"name":"CLUS_CHAR_SINGLE_CLUSTER_INSTANCE","features":[110]},{"name":"CLUS_CHAR_SINGLE_GROUP_INSTANCE","features":[110]},{"name":"CLUS_CHAR_SUPPORTS_UNMONITORED_STATE","features":[110]},{"name":"CLUS_CHAR_UNKNOWN","features":[110]},{"name":"CLUS_CHAR_VETO_DRAIN","features":[110]},{"name":"CLUS_CHKDSK_INFO","features":[110]},{"name":"CLUS_CREATE_CRYPT_CONTAINER_NOT_FOUND","features":[110]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_INPUT","features":[110]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT","features":[110]},{"name":"CLUS_CSV_MAINTENANCE_MODE_INFO","features":[1,110]},{"name":"CLUS_CSV_VOLUME_INFO","features":[110]},{"name":"CLUS_CSV_VOLUME_NAME","features":[110]},{"name":"CLUS_DISK_NUMBER_INFO","features":[110]},{"name":"CLUS_DNN_LEADER_STATUS","features":[1,110]},{"name":"CLUS_DNN_SODAFS_CLONE_STATUS","features":[110]},{"name":"CLUS_FLAGS","features":[110]},{"name":"CLUS_FLAG_CORE","features":[110]},{"name":"CLUS_FORCE_QUORUM_INFO","features":[110]},{"name":"CLUS_FTSET_INFO","features":[110]},{"name":"CLUS_GLOBAL","features":[110]},{"name":"CLUS_GROUP_DO_NOT_START","features":[110]},{"name":"CLUS_GROUP_START_ALLOWED","features":[110]},{"name":"CLUS_GROUP_START_ALWAYS","features":[110]},{"name":"CLUS_GROUP_START_SETTING","features":[110]},{"name":"CLUS_GRP_MOVE_ALLOWED","features":[110]},{"name":"CLUS_GRP_MOVE_LOCKED","features":[110]},{"name":"CLUS_HYBRID_QUORUM","features":[110]},{"name":"CLUS_MAINTENANCE_MODE_INFO","features":[1,110]},{"name":"CLUS_MAINTENANCE_MODE_INFOEX","features":[1,110]},{"name":"CLUS_MODIFY","features":[110]},{"name":"CLUS_NAME_RES_TYPE_CLUSTER_GROUPID","features":[110]},{"name":"CLUS_NAME_RES_TYPE_DATA_RESID","features":[110]},{"name":"CLUS_NAME_RES_TYPE_LOG_MULTIPLE","features":[110]},{"name":"CLUS_NAME_RES_TYPE_LOG_RESID","features":[110]},{"name":"CLUS_NAME_RES_TYPE_LOG_VOLUME","features":[110]},{"name":"CLUS_NAME_RES_TYPE_MINIMUM_LOG_SIZE","features":[110]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUPID","features":[110]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUP_TYPE","features":[110]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_RESID","features":[110]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_VOLUMES","features":[110]},{"name":"CLUS_NAME_RES_TYPE_TARGET_RESID","features":[110]},{"name":"CLUS_NAME_RES_TYPE_TARGET_VOLUMES","features":[110]},{"name":"CLUS_NAME_RES_TYPE_UNIT_LOG_SIZE_CHANGE","features":[110]},{"name":"CLUS_NETNAME_IP_INFO_ENTRY","features":[110]},{"name":"CLUS_NETNAME_IP_INFO_FOR_MULTICHANNEL","features":[110]},{"name":"CLUS_NETNAME_PWD_INFO","features":[110]},{"name":"CLUS_NETNAME_PWD_INFOEX","features":[110]},{"name":"CLUS_NETNAME_VS_TOKEN_INFO","features":[1,110]},{"name":"CLUS_NODE_MAJORITY_QUORUM","features":[110]},{"name":"CLUS_NOT_GLOBAL","features":[110]},{"name":"CLUS_NO_MODIFY","features":[110]},{"name":"CLUS_OBJECT_AFFINITYRULE","features":[110]},{"name":"CLUS_OBJECT_CLUSTER","features":[110]},{"name":"CLUS_OBJECT_GROUP","features":[110]},{"name":"CLUS_OBJECT_GROUPSET","features":[110]},{"name":"CLUS_OBJECT_INVALID","features":[110]},{"name":"CLUS_OBJECT_NETINTERFACE","features":[110]},{"name":"CLUS_OBJECT_NETWORK","features":[110]},{"name":"CLUS_OBJECT_NODE","features":[110]},{"name":"CLUS_OBJECT_RESOURCE","features":[110]},{"name":"CLUS_OBJECT_RESOURCE_TYPE","features":[110]},{"name":"CLUS_OBJECT_USER","features":[110]},{"name":"CLUS_PARTITION_INFO","features":[110]},{"name":"CLUS_PARTITION_INFO_EX","features":[110]},{"name":"CLUS_PARTITION_INFO_EX2","features":[110]},{"name":"CLUS_PROVIDER_STATE_CHANGE_INFO","features":[110]},{"name":"CLUS_RESCLASS_NETWORK","features":[110]},{"name":"CLUS_RESCLASS_STORAGE","features":[110]},{"name":"CLUS_RESCLASS_UNKNOWN","features":[110]},{"name":"CLUS_RESCLASS_USER","features":[110]},{"name":"CLUS_RESDLL_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[110]},{"name":"CLUS_RESDLL_OFFLINE_DUE_TO_EMBEDDED_FAILURE","features":[110]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_NETWORK_CONNECTIVITY","features":[110]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_RESOURCE_STATUS","features":[110]},{"name":"CLUS_RESDLL_OFFLINE_QUEUE_ENABLED","features":[110]},{"name":"CLUS_RESDLL_OFFLINE_RETURNING_TO_SOURCE_NODE_BECAUSE_OF_ERROR","features":[110]},{"name":"CLUS_RESDLL_OFFLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[110]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_NETWORK_CONNECTIVITY","features":[110]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_RESOURCE_STATUS","features":[110]},{"name":"CLUS_RESDLL_ONLINE_RECOVER_MONITOR_STATE","features":[110]},{"name":"CLUS_RESDLL_ONLINE_RESTORE_ONLINE_STATE","features":[110]},{"name":"CLUS_RESDLL_ONLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[110]},{"name":"CLUS_RESDLL_OPEN_DONT_DELETE_TEMP_DISK","features":[110]},{"name":"CLUS_RESDLL_OPEN_RECOVER_MONITOR_STATE","features":[110]},{"name":"CLUS_RESOURCE_CLASS_INFO","features":[110]},{"name":"CLUS_RESSUBCLASS","features":[110]},{"name":"CLUS_RESSUBCLASS_NETWORK","features":[110]},{"name":"CLUS_RESSUBCLASS_NETWORK_INTERNET_PROTOCOL","features":[110]},{"name":"CLUS_RESSUBCLASS_SHARED","features":[110]},{"name":"CLUS_RESSUBCLASS_STORAGE","features":[110]},{"name":"CLUS_RESSUBCLASS_STORAGE_DISK","features":[110]},{"name":"CLUS_RESSUBCLASS_STORAGE_REPLICATION","features":[110]},{"name":"CLUS_RESSUBCLASS_STORAGE_SHARED_BUS","features":[110]},{"name":"CLUS_RESTYPE_NAME_CAU","features":[110]},{"name":"CLUS_RESTYPE_NAME_CLOUD_WITNESS","features":[110]},{"name":"CLUS_RESTYPE_NAME_CONTAINER","features":[110]},{"name":"CLUS_RESTYPE_NAME_CROSS_CLUSTER","features":[110]},{"name":"CLUS_RESTYPE_NAME_DFS","features":[110]},{"name":"CLUS_RESTYPE_NAME_DFSR","features":[110]},{"name":"CLUS_RESTYPE_NAME_DHCP","features":[110]},{"name":"CLUS_RESTYPE_NAME_DNN","features":[110]},{"name":"CLUS_RESTYPE_NAME_FILESERVER","features":[110]},{"name":"CLUS_RESTYPE_NAME_FILESHR","features":[110]},{"name":"CLUS_RESTYPE_NAME_FSWITNESS","features":[110]},{"name":"CLUS_RESTYPE_NAME_GENAPP","features":[110]},{"name":"CLUS_RESTYPE_NAME_GENSCRIPT","features":[110]},{"name":"CLUS_RESTYPE_NAME_GENSVC","features":[110]},{"name":"CLUS_RESTYPE_NAME_HARDDISK","features":[110]},{"name":"CLUS_RESTYPE_NAME_HCSVM","features":[110]},{"name":"CLUS_RESTYPE_NAME_HEALTH_SERVICE","features":[110]},{"name":"CLUS_RESTYPE_NAME_IPADDR","features":[110]},{"name":"CLUS_RESTYPE_NAME_IPV6_NATIVE","features":[110]},{"name":"CLUS_RESTYPE_NAME_IPV6_TUNNEL","features":[110]},{"name":"CLUS_RESTYPE_NAME_ISCSITARGET","features":[110]},{"name":"CLUS_RESTYPE_NAME_ISNS","features":[110]},{"name":"CLUS_RESTYPE_NAME_MSDTC","features":[110]},{"name":"CLUS_RESTYPE_NAME_MSMQ","features":[110]},{"name":"CLUS_RESTYPE_NAME_MSMQ_TRIGGER","features":[110]},{"name":"CLUS_RESTYPE_NAME_NAT","features":[110]},{"name":"CLUS_RESTYPE_NAME_NETNAME","features":[110]},{"name":"CLUS_RESTYPE_NAME_NETWORK_FILE_SYSTEM","features":[110]},{"name":"CLUS_RESTYPE_NAME_NEW_MSMQ","features":[110]},{"name":"CLUS_RESTYPE_NAME_NFS","features":[110]},{"name":"CLUS_RESTYPE_NAME_NFS_MSNS","features":[110]},{"name":"CLUS_RESTYPE_NAME_NFS_V2","features":[110]},{"name":"CLUS_RESTYPE_NAME_NV_PROVIDER_ADDRESS","features":[110]},{"name":"CLUS_RESTYPE_NAME_PHYS_DISK","features":[110]},{"name":"CLUS_RESTYPE_NAME_PRTSPLR","features":[110]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_MASTER","features":[110]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_WORKER","features":[110]},{"name":"CLUS_RESTYPE_NAME_SDDC_MANAGEMENT","features":[110]},{"name":"CLUS_RESTYPE_NAME_SODAFILESERVER","features":[110]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POLICIES","features":[110]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POOL","features":[110]},{"name":"CLUS_RESTYPE_NAME_STORAGE_REPLICA","features":[110]},{"name":"CLUS_RESTYPE_NAME_STORQOS","features":[110]},{"name":"CLUS_RESTYPE_NAME_TASKSCHEDULER","features":[110]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV4","features":[110]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV6","features":[110]},{"name":"CLUS_RESTYPE_NAME_VM","features":[110]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_BROKER","features":[110]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_COORDINATOR","features":[110]},{"name":"CLUS_RESTYPE_NAME_VM_CONFIG","features":[110]},{"name":"CLUS_RESTYPE_NAME_VM_WMI","features":[110]},{"name":"CLUS_RESTYPE_NAME_VSSTASK","features":[110]},{"name":"CLUS_RESTYPE_NAME_WINS","features":[110]},{"name":"CLUS_RES_NAME_SCALEOUT_MASTER","features":[110]},{"name":"CLUS_RES_NAME_SCALEOUT_WORKER","features":[110]},{"name":"CLUS_SCSI_ADDRESS","features":[110]},{"name":"CLUS_SET_MAINTENANCE_MODE_INPUT","features":[1,110]},{"name":"CLUS_SHARED_VOLUME_BACKUP_MODE","features":[110]},{"name":"CLUS_STARTING_PARAMS","features":[1,110]},{"name":"CLUS_STORAGE_GET_AVAILABLE_DRIVELETTERS","features":[110]},{"name":"CLUS_STORAGE_REMAP_DRIVELETTER","features":[110]},{"name":"CLUS_STORAGE_SET_DRIVELETTER","features":[110]},{"name":"CLUS_WORKER","features":[1,110]},{"name":"CREATEDC_PRESENT","features":[110]},{"name":"CREATE_CLUSTER_CONFIG","features":[1,110]},{"name":"CREATE_CLUSTER_MAJOR_VERSION_MASK","features":[110]},{"name":"CREATE_CLUSTER_NAME_ACCOUNT","features":[1,110]},{"name":"CREATE_CLUSTER_VERSION","features":[110]},{"name":"CTCTL_GET_FAULT_DOMAIN_STATE","features":[110]},{"name":"CTCTL_GET_ROUTESTATUS_BASIC","features":[110]},{"name":"CTCTL_GET_ROUTESTATUS_EXTENDED","features":[110]},{"name":"CanResourceBeDependent","features":[1,110]},{"name":"CancelClusterGroupOperation","features":[110]},{"name":"ChangeClusterResourceGroup","features":[110]},{"name":"ChangeClusterResourceGroupEx","features":[110]},{"name":"ChangeClusterResourceGroupEx2","features":[110]},{"name":"CloseCluster","features":[1,110]},{"name":"CloseClusterCryptProvider","features":[110]},{"name":"CloseClusterGroup","features":[1,110]},{"name":"CloseClusterGroupSet","features":[1,110]},{"name":"CloseClusterNetInterface","features":[1,110]},{"name":"CloseClusterNetwork","features":[1,110]},{"name":"CloseClusterNode","features":[1,110]},{"name":"CloseClusterNotifyPort","features":[1,110]},{"name":"CloseClusterResource","features":[1,110]},{"name":"ClusAddClusterHealthFault","features":[110]},{"name":"ClusApplication","features":[110]},{"name":"ClusCryptoKeys","features":[110]},{"name":"ClusDisk","features":[110]},{"name":"ClusDisks","features":[110]},{"name":"ClusGetClusterHealthFaults","features":[110]},{"name":"ClusGroupTypeAvailableStorage","features":[110]},{"name":"ClusGroupTypeClusterUpdateAgent","features":[110]},{"name":"ClusGroupTypeCoreCluster","features":[110]},{"name":"ClusGroupTypeCoreSddc","features":[110]},{"name":"ClusGroupTypeCrossClusterOrchestrator","features":[110]},{"name":"ClusGroupTypeDhcpServer","features":[110]},{"name":"ClusGroupTypeDtc","features":[110]},{"name":"ClusGroupTypeFileServer","features":[110]},{"name":"ClusGroupTypeGenericApplication","features":[110]},{"name":"ClusGroupTypeGenericScript","features":[110]},{"name":"ClusGroupTypeGenericService","features":[110]},{"name":"ClusGroupTypeIScsiNameService","features":[110]},{"name":"ClusGroupTypeIScsiTarget","features":[110]},{"name":"ClusGroupTypeInfrastructureFileServer","features":[110]},{"name":"ClusGroupTypeMsmq","features":[110]},{"name":"ClusGroupTypePrintServer","features":[110]},{"name":"ClusGroupTypeScaleoutCluster","features":[110]},{"name":"ClusGroupTypeScaleoutFileServer","features":[110]},{"name":"ClusGroupTypeSharedVolume","features":[110]},{"name":"ClusGroupTypeStandAloneDfs","features":[110]},{"name":"ClusGroupTypeStoragePool","features":[110]},{"name":"ClusGroupTypeStorageReplica","features":[110]},{"name":"ClusGroupTypeTaskScheduler","features":[110]},{"name":"ClusGroupTypeTemporary","features":[110]},{"name":"ClusGroupTypeTsSessionBroker","features":[110]},{"name":"ClusGroupTypeUnknown","features":[110]},{"name":"ClusGroupTypeVMReplicaBroker","features":[110]},{"name":"ClusGroupTypeVMReplicaCoordinator","features":[110]},{"name":"ClusGroupTypeVirtualMachine","features":[110]},{"name":"ClusGroupTypeWins","features":[110]},{"name":"ClusNetInterface","features":[110]},{"name":"ClusNetInterfaces","features":[110]},{"name":"ClusNetwork","features":[110]},{"name":"ClusNetworkNetInterfaces","features":[110]},{"name":"ClusNetworks","features":[110]},{"name":"ClusNode","features":[110]},{"name":"ClusNodeNetInterfaces","features":[110]},{"name":"ClusNodes","features":[110]},{"name":"ClusPartition","features":[110]},{"name":"ClusPartitionEx","features":[110]},{"name":"ClusPartitions","features":[110]},{"name":"ClusProperties","features":[110]},{"name":"ClusProperty","features":[110]},{"name":"ClusPropertyValue","features":[110]},{"name":"ClusPropertyValueData","features":[110]},{"name":"ClusPropertyValues","features":[110]},{"name":"ClusRefObject","features":[110]},{"name":"ClusRegistryKeys","features":[110]},{"name":"ClusRemoveClusterHealthFault","features":[110]},{"name":"ClusResDependencies","features":[110]},{"name":"ClusResDependents","features":[110]},{"name":"ClusResGroup","features":[110]},{"name":"ClusResGroupPreferredOwnerNodes","features":[110]},{"name":"ClusResGroupResources","features":[110]},{"name":"ClusResGroups","features":[110]},{"name":"ClusResPossibleOwnerNodes","features":[110]},{"name":"ClusResType","features":[110]},{"name":"ClusResTypePossibleOwnerNodes","features":[110]},{"name":"ClusResTypeResources","features":[110]},{"name":"ClusResTypes","features":[110]},{"name":"ClusResource","features":[110]},{"name":"ClusResources","features":[110]},{"name":"ClusScsiAddress","features":[110]},{"name":"ClusVersion","features":[110]},{"name":"ClusWorkerCheckTerminate","features":[1,110]},{"name":"ClusWorkerCreate","features":[1,110]},{"name":"ClusWorkerTerminate","features":[1,110]},{"name":"ClusWorkerTerminateEx","features":[1,110]},{"name":"ClusWorkersTerminate","features":[1,110]},{"name":"ClusapiSetReasonHandler","features":[1,110]},{"name":"Cluster","features":[110]},{"name":"ClusterAddGroupToAffinityRule","features":[110]},{"name":"ClusterAddGroupToGroupSet","features":[110]},{"name":"ClusterAddGroupToGroupSetWithDomains","features":[110]},{"name":"ClusterAddGroupToGroupSetWithDomainsEx","features":[110]},{"name":"ClusterAffinityRuleControl","features":[110]},{"name":"ClusterClearBackupStateForSharedVolume","features":[110]},{"name":"ClusterCloseEnum","features":[110]},{"name":"ClusterCloseEnumEx","features":[110]},{"name":"ClusterControl","features":[110]},{"name":"ClusterControlEx","features":[110]},{"name":"ClusterCreateAffinityRule","features":[110]},{"name":"ClusterDecrypt","features":[110]},{"name":"ClusterEncrypt","features":[110]},{"name":"ClusterEnum","features":[110]},{"name":"ClusterEnumEx","features":[110]},{"name":"ClusterGetEnumCount","features":[110]},{"name":"ClusterGetEnumCountEx","features":[110]},{"name":"ClusterGetVolumeNameForVolumeMountPoint","features":[1,110]},{"name":"ClusterGetVolumePathName","features":[1,110]},{"name":"ClusterGroupAllowFailback","features":[110]},{"name":"ClusterGroupCloseEnum","features":[110]},{"name":"ClusterGroupCloseEnumEx","features":[110]},{"name":"ClusterGroupControl","features":[110]},{"name":"ClusterGroupControlEx","features":[110]},{"name":"ClusterGroupEnum","features":[110]},{"name":"ClusterGroupEnumEx","features":[110]},{"name":"ClusterGroupFailbackTypeCount","features":[110]},{"name":"ClusterGroupFailed","features":[110]},{"name":"ClusterGroupGetEnumCount","features":[110]},{"name":"ClusterGroupGetEnumCountEx","features":[110]},{"name":"ClusterGroupOffline","features":[110]},{"name":"ClusterGroupOnline","features":[110]},{"name":"ClusterGroupOpenEnum","features":[110]},{"name":"ClusterGroupOpenEnumEx","features":[110]},{"name":"ClusterGroupPartialOnline","features":[110]},{"name":"ClusterGroupPending","features":[110]},{"name":"ClusterGroupPreventFailback","features":[110]},{"name":"ClusterGroupSetCloseEnum","features":[110]},{"name":"ClusterGroupSetControl","features":[110]},{"name":"ClusterGroupSetControlEx","features":[110]},{"name":"ClusterGroupSetEnum","features":[110]},{"name":"ClusterGroupSetGetEnumCount","features":[110]},{"name":"ClusterGroupSetOpenEnum","features":[110]},{"name":"ClusterGroupStateUnknown","features":[110]},{"name":"ClusterIsPathOnSharedVolume","features":[1,110]},{"name":"ClusterNames","features":[110]},{"name":"ClusterNetInterfaceCloseEnum","features":[110]},{"name":"ClusterNetInterfaceControl","features":[110]},{"name":"ClusterNetInterfaceControlEx","features":[110]},{"name":"ClusterNetInterfaceEnum","features":[110]},{"name":"ClusterNetInterfaceFailed","features":[110]},{"name":"ClusterNetInterfaceOpenEnum","features":[110]},{"name":"ClusterNetInterfaceStateUnknown","features":[110]},{"name":"ClusterNetInterfaceUnavailable","features":[110]},{"name":"ClusterNetInterfaceUnreachable","features":[110]},{"name":"ClusterNetInterfaceUp","features":[110]},{"name":"ClusterNetworkCloseEnum","features":[110]},{"name":"ClusterNetworkControl","features":[110]},{"name":"ClusterNetworkControlEx","features":[110]},{"name":"ClusterNetworkDown","features":[110]},{"name":"ClusterNetworkEnum","features":[110]},{"name":"ClusterNetworkGetEnumCount","features":[110]},{"name":"ClusterNetworkOpenEnum","features":[110]},{"name":"ClusterNetworkPartitioned","features":[110]},{"name":"ClusterNetworkRoleClientAccess","features":[110]},{"name":"ClusterNetworkRoleInternalAndClient","features":[110]},{"name":"ClusterNetworkRoleInternalUse","features":[110]},{"name":"ClusterNetworkRoleNone","features":[110]},{"name":"ClusterNetworkStateUnknown","features":[110]},{"name":"ClusterNetworkUnavailable","features":[110]},{"name":"ClusterNetworkUp","features":[110]},{"name":"ClusterNodeCloseEnum","features":[110]},{"name":"ClusterNodeCloseEnumEx","features":[110]},{"name":"ClusterNodeControl","features":[110]},{"name":"ClusterNodeControlEx","features":[110]},{"name":"ClusterNodeDown","features":[110]},{"name":"ClusterNodeDrainStatusCount","features":[110]},{"name":"ClusterNodeEnum","features":[110]},{"name":"ClusterNodeEnumEx","features":[110]},{"name":"ClusterNodeGetEnumCount","features":[110]},{"name":"ClusterNodeGetEnumCountEx","features":[110]},{"name":"ClusterNodeJoining","features":[110]},{"name":"ClusterNodeOpenEnum","features":[110]},{"name":"ClusterNodeOpenEnumEx","features":[110]},{"name":"ClusterNodePaused","features":[110]},{"name":"ClusterNodeReplacement","features":[110]},{"name":"ClusterNodeResumeFailbackTypeCount","features":[110]},{"name":"ClusterNodeStateUnknown","features":[110]},{"name":"ClusterNodeUp","features":[110]},{"name":"ClusterOpenEnum","features":[110]},{"name":"ClusterOpenEnumEx","features":[110]},{"name":"ClusterPrepareSharedVolumeForBackup","features":[110]},{"name":"ClusterRegBatchAddCommand","features":[110]},{"name":"ClusterRegBatchCloseNotification","features":[110]},{"name":"ClusterRegBatchReadCommand","features":[110]},{"name":"ClusterRegCloseBatch","features":[1,110]},{"name":"ClusterRegCloseBatchEx","features":[110]},{"name":"ClusterRegCloseBatchNotifyPort","features":[110]},{"name":"ClusterRegCloseKey","features":[110,49]},{"name":"ClusterRegCloseReadBatch","features":[110]},{"name":"ClusterRegCloseReadBatchEx","features":[110]},{"name":"ClusterRegCloseReadBatchReply","features":[110]},{"name":"ClusterRegCreateBatch","features":[110,49]},{"name":"ClusterRegCreateBatchNotifyPort","features":[110,49]},{"name":"ClusterRegCreateKey","features":[1,110,4,49]},{"name":"ClusterRegCreateKeyEx","features":[1,110,4,49]},{"name":"ClusterRegCreateReadBatch","features":[110,49]},{"name":"ClusterRegDeleteKey","features":[110,49]},{"name":"ClusterRegDeleteKeyEx","features":[110,49]},{"name":"ClusterRegDeleteValue","features":[110,49]},{"name":"ClusterRegDeleteValueEx","features":[110,49]},{"name":"ClusterRegEnumKey","features":[1,110,49]},{"name":"ClusterRegEnumValue","features":[110,49]},{"name":"ClusterRegGetBatchNotification","features":[110]},{"name":"ClusterRegGetKeySecurity","features":[110,4,49]},{"name":"ClusterRegOpenKey","features":[110,49]},{"name":"ClusterRegQueryInfoKey","features":[1,110,49]},{"name":"ClusterRegQueryValue","features":[110,49]},{"name":"ClusterRegReadBatchAddCommand","features":[110]},{"name":"ClusterRegReadBatchReplyNextCommand","features":[110]},{"name":"ClusterRegSetKeySecurity","features":[110,4,49]},{"name":"ClusterRegSetKeySecurityEx","features":[110,4,49]},{"name":"ClusterRegSetValue","features":[110,49]},{"name":"ClusterRegSetValueEx","features":[110,49]},{"name":"ClusterRegSyncDatabase","features":[110]},{"name":"ClusterRemoveAffinityRule","features":[110]},{"name":"ClusterRemoveGroupFromAffinityRule","features":[110]},{"name":"ClusterRemoveGroupFromGroupSet","features":[110]},{"name":"ClusterRemoveGroupFromGroupSetEx","features":[110]},{"name":"ClusterResourceApplicationOSHeartBeat","features":[110]},{"name":"ClusterResourceApplicationReady","features":[110]},{"name":"ClusterResourceApplicationStateUnknown","features":[110]},{"name":"ClusterResourceCloseEnum","features":[110]},{"name":"ClusterResourceCloseEnumEx","features":[110]},{"name":"ClusterResourceControl","features":[110]},{"name":"ClusterResourceControlAsUser","features":[110]},{"name":"ClusterResourceControlAsUserEx","features":[110]},{"name":"ClusterResourceControlEx","features":[110]},{"name":"ClusterResourceDontRestart","features":[110]},{"name":"ClusterResourceEmbeddedFailureActionLogOnly","features":[110]},{"name":"ClusterResourceEmbeddedFailureActionNone","features":[110]},{"name":"ClusterResourceEmbeddedFailureActionRecover","features":[110]},{"name":"ClusterResourceEnum","features":[110]},{"name":"ClusterResourceEnumEx","features":[110]},{"name":"ClusterResourceFailed","features":[110]},{"name":"ClusterResourceGetEnumCount","features":[110]},{"name":"ClusterResourceGetEnumCountEx","features":[110]},{"name":"ClusterResourceInherited","features":[110]},{"name":"ClusterResourceInitializing","features":[110]},{"name":"ClusterResourceOffline","features":[110]},{"name":"ClusterResourceOfflinePending","features":[110]},{"name":"ClusterResourceOnline","features":[110]},{"name":"ClusterResourceOnlinePending","features":[110]},{"name":"ClusterResourceOpenEnum","features":[110]},{"name":"ClusterResourceOpenEnumEx","features":[110]},{"name":"ClusterResourcePending","features":[110]},{"name":"ClusterResourceRestartActionCount","features":[110]},{"name":"ClusterResourceRestartNoNotify","features":[110]},{"name":"ClusterResourceRestartNotify","features":[110]},{"name":"ClusterResourceStateUnknown","features":[110]},{"name":"ClusterResourceTypeCloseEnum","features":[110]},{"name":"ClusterResourceTypeControl","features":[110]},{"name":"ClusterResourceTypeControlAsUser","features":[110]},{"name":"ClusterResourceTypeControlAsUserEx","features":[110]},{"name":"ClusterResourceTypeControlEx","features":[110]},{"name":"ClusterResourceTypeEnum","features":[110]},{"name":"ClusterResourceTypeGetEnumCount","features":[110]},{"name":"ClusterResourceTypeOpenEnum","features":[110]},{"name":"ClusterRoleClustered","features":[110]},{"name":"ClusterRoleDFSReplicatedFolder","features":[110]},{"name":"ClusterRoleDHCP","features":[110]},{"name":"ClusterRoleDTC","features":[110]},{"name":"ClusterRoleDistributedFileSystem","features":[110]},{"name":"ClusterRoleDistributedNetworkName","features":[110]},{"name":"ClusterRoleFileServer","features":[110]},{"name":"ClusterRoleFileShare","features":[110]},{"name":"ClusterRoleFileShareWitness","features":[110]},{"name":"ClusterRoleGenericApplication","features":[110]},{"name":"ClusterRoleGenericScript","features":[110]},{"name":"ClusterRoleGenericService","features":[110]},{"name":"ClusterRoleHardDisk","features":[110]},{"name":"ClusterRoleIPAddress","features":[110]},{"name":"ClusterRoleIPV6Address","features":[110]},{"name":"ClusterRoleIPV6TunnelAddress","features":[110]},{"name":"ClusterRoleISCSINameServer","features":[110]},{"name":"ClusterRoleISCSITargetServer","features":[110]},{"name":"ClusterRoleMSMQ","features":[110]},{"name":"ClusterRoleNFS","features":[110]},{"name":"ClusterRoleNetworkFileSystem","features":[110]},{"name":"ClusterRoleNetworkName","features":[110]},{"name":"ClusterRolePhysicalDisk","features":[110]},{"name":"ClusterRolePrintServer","features":[110]},{"name":"ClusterRoleSODAFileServer","features":[110]},{"name":"ClusterRoleStandAloneNamespaceServer","features":[110]},{"name":"ClusterRoleStoragePool","features":[110]},{"name":"ClusterRoleTaskScheduler","features":[110]},{"name":"ClusterRoleUnclustered","features":[110]},{"name":"ClusterRoleUnknown","features":[110]},{"name":"ClusterRoleVirtualMachine","features":[110]},{"name":"ClusterRoleVirtualMachineConfiguration","features":[110]},{"name":"ClusterRoleVirtualMachineReplicaBroker","features":[110]},{"name":"ClusterRoleVolumeShadowCopyServiceTask","features":[110]},{"name":"ClusterRoleWINS","features":[110]},{"name":"ClusterSetAccountAccess","features":[110]},{"name":"ClusterSetupPhaseAddClusterProperties","features":[110]},{"name":"ClusterSetupPhaseAddNodeToCluster","features":[110]},{"name":"ClusterSetupPhaseCleanupCOs","features":[110]},{"name":"ClusterSetupPhaseCleanupNode","features":[110]},{"name":"ClusterSetupPhaseClusterGroupOnline","features":[110]},{"name":"ClusterSetupPhaseConfigureClusSvc","features":[110]},{"name":"ClusterSetupPhaseConfigureClusterAccount","features":[110]},{"name":"ClusterSetupPhaseContinue","features":[110]},{"name":"ClusterSetupPhaseCoreGroupCleanup","features":[110]},{"name":"ClusterSetupPhaseCreateClusterAccount","features":[110]},{"name":"ClusterSetupPhaseCreateGroups","features":[110]},{"name":"ClusterSetupPhaseCreateIPAddressResources","features":[110]},{"name":"ClusterSetupPhaseCreateNetworkName","features":[110]},{"name":"ClusterSetupPhaseCreateResourceTypes","features":[110]},{"name":"ClusterSetupPhaseDeleteGroup","features":[110]},{"name":"ClusterSetupPhaseEnd","features":[110]},{"name":"ClusterSetupPhaseEvictNode","features":[110]},{"name":"ClusterSetupPhaseFailureCleanup","features":[110]},{"name":"ClusterSetupPhaseFatal","features":[110]},{"name":"ClusterSetupPhaseFormingCluster","features":[110]},{"name":"ClusterSetupPhaseGettingCurrentMembership","features":[110]},{"name":"ClusterSetupPhaseInformational","features":[110]},{"name":"ClusterSetupPhaseInitialize","features":[110]},{"name":"ClusterSetupPhaseMoveGroup","features":[110]},{"name":"ClusterSetupPhaseNodeUp","features":[110]},{"name":"ClusterSetupPhaseOfflineGroup","features":[110]},{"name":"ClusterSetupPhaseQueryClusterNameAccount","features":[110]},{"name":"ClusterSetupPhaseReport","features":[110]},{"name":"ClusterSetupPhaseStart","features":[110]},{"name":"ClusterSetupPhaseStartingClusSvc","features":[110]},{"name":"ClusterSetupPhaseValidateClusDisk","features":[110]},{"name":"ClusterSetupPhaseValidateClusterNameAccount","features":[110]},{"name":"ClusterSetupPhaseValidateNetft","features":[110]},{"name":"ClusterSetupPhaseValidateNodeState","features":[110]},{"name":"ClusterSetupPhaseWarning","features":[110]},{"name":"ClusterSharedVolumeHWSnapshotCompleted","features":[110]},{"name":"ClusterSharedVolumePrepareForFreeze","features":[110]},{"name":"ClusterSharedVolumePrepareForHWSnapshot","features":[110]},{"name":"ClusterSharedVolumeRenameInputTypeNone","features":[110]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeGuid","features":[110]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeId","features":[110]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeName","features":[110]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeOffset","features":[110]},{"name":"ClusterSharedVolumeSetSnapshotState","features":[110]},{"name":"ClusterSharedVolumeSnapshotStateUnknown","features":[110]},{"name":"ClusterStateNotConfigured","features":[110]},{"name":"ClusterStateNotInstalled","features":[110]},{"name":"ClusterStateNotRunning","features":[110]},{"name":"ClusterStateRunning","features":[110]},{"name":"ClusterStorageNodeDown","features":[110]},{"name":"ClusterStorageNodePaused","features":[110]},{"name":"ClusterStorageNodeStarting","features":[110]},{"name":"ClusterStorageNodeStateUnknown","features":[110]},{"name":"ClusterStorageNodeStopping","features":[110]},{"name":"ClusterStorageNodeUp","features":[110]},{"name":"ClusterUpgradeFunctionalLevel","features":[1,110]},{"name":"ClusterUpgradePhaseInitialize","features":[110]},{"name":"ClusterUpgradePhaseInstallingNewComponents","features":[110]},{"name":"ClusterUpgradePhaseUpgradeComplete","features":[110]},{"name":"ClusterUpgradePhaseUpgradingComponents","features":[110]},{"name":"ClusterUpgradePhaseValidatingUpgrade","features":[110]},{"name":"CreateCluster","features":[1,110]},{"name":"CreateClusterAvailabilitySet","features":[1,110]},{"name":"CreateClusterGroup","features":[110]},{"name":"CreateClusterGroupEx","features":[110]},{"name":"CreateClusterGroupSet","features":[110]},{"name":"CreateClusterNameAccount","features":[1,110]},{"name":"CreateClusterNotifyPort","features":[110]},{"name":"CreateClusterNotifyPortV2","features":[110]},{"name":"CreateClusterResource","features":[110]},{"name":"CreateClusterResourceEx","features":[110]},{"name":"CreateClusterResourceType","features":[110]},{"name":"CreateClusterResourceTypeEx","features":[110]},{"name":"DNS_LENGTH","features":[110]},{"name":"DeleteClusterGroup","features":[110]},{"name":"DeleteClusterGroupEx","features":[110]},{"name":"DeleteClusterGroupSet","features":[110]},{"name":"DeleteClusterGroupSetEx","features":[110]},{"name":"DeleteClusterResource","features":[110]},{"name":"DeleteClusterResourceEx","features":[110]},{"name":"DeleteClusterResourceType","features":[110]},{"name":"DeleteClusterResourceTypeEx","features":[110]},{"name":"DestroyCluster","features":[1,110]},{"name":"DestroyClusterGroup","features":[110]},{"name":"DestroyClusterGroupEx","features":[110]},{"name":"DetermineCNOResTypeFromCluster","features":[110]},{"name":"DetermineCNOResTypeFromNodelist","features":[110]},{"name":"DetermineClusterCloudTypeFromCluster","features":[110]},{"name":"DetermineClusterCloudTypeFromNodelist","features":[110]},{"name":"DoNotFailbackGroups","features":[110]},{"name":"DomainNames","features":[110]},{"name":"ENABLE_CLUSTER_SHARED_VOLUMES","features":[110]},{"name":"EvictClusterNode","features":[110]},{"name":"EvictClusterNodeEx","features":[110]},{"name":"EvictClusterNodeEx2","features":[110]},{"name":"FAILURE_TYPE","features":[110]},{"name":"FAILURE_TYPE_EMBEDDED","features":[110]},{"name":"FAILURE_TYPE_GENERAL","features":[110]},{"name":"FAILURE_TYPE_NETWORK_LOSS","features":[110]},{"name":"FE_UPGRADE_VERSION","features":[110]},{"name":"FILESHARE_CHANGE","features":[110]},{"name":"FILESHARE_CHANGE_ADD","features":[110]},{"name":"FILESHARE_CHANGE_DEL","features":[110]},{"name":"FILESHARE_CHANGE_ENUM","features":[110]},{"name":"FILESHARE_CHANGE_LIST","features":[110]},{"name":"FILESHARE_CHANGE_MODIFY","features":[110]},{"name":"FILESHARE_CHANGE_NONE","features":[110]},{"name":"FailClusterResource","features":[110]},{"name":"FailClusterResourceEx","features":[110]},{"name":"FailbackGroupsImmediately","features":[110]},{"name":"FailbackGroupsPerPolicy","features":[110]},{"name":"FreeClusterCrypt","features":[110]},{"name":"FreeClusterHealthFault","features":[110]},{"name":"FreeClusterHealthFaultArray","features":[110]},{"name":"GET_OPERATION_CONTEXT_PARAMS","features":[110]},{"name":"GROUPSET_READY_SETTING_APPLICATION_READY","features":[110]},{"name":"GROUPSET_READY_SETTING_DELAY","features":[110]},{"name":"GROUPSET_READY_SETTING_ONLINE","features":[110]},{"name":"GROUPSET_READY_SETTING_OS_HEARTBEAT","features":[110]},{"name":"GROUP_FAILURE_INFO","features":[110]},{"name":"GROUP_FAILURE_INFO_BUFFER","features":[110]},{"name":"GROUP_FAILURE_INFO_VERSION_1","features":[110]},{"name":"GRP_PLACEMENT_OPTIONS","features":[110]},{"name":"GRP_PLACEMENT_OPTIONS_ALL","features":[110]},{"name":"GRP_PLACEMENT_OPTIONS_DEFAULT","features":[110]},{"name":"GRP_PLACEMENT_OPTIONS_DISABLE_AUTOBALANCING","features":[110]},{"name":"GRP_PLACEMENT_OPTIONS_MIN_VALUE","features":[110]},{"name":"GUID_PRESENT","features":[110]},{"name":"GetClusterFromGroup","features":[110]},{"name":"GetClusterFromNetInterface","features":[110]},{"name":"GetClusterFromNetwork","features":[110]},{"name":"GetClusterFromNode","features":[110]},{"name":"GetClusterFromResource","features":[110]},{"name":"GetClusterGroupKey","features":[110,49]},{"name":"GetClusterGroupState","features":[110]},{"name":"GetClusterInformation","features":[110]},{"name":"GetClusterKey","features":[110,49]},{"name":"GetClusterNetInterface","features":[110]},{"name":"GetClusterNetInterfaceKey","features":[110,49]},{"name":"GetClusterNetInterfaceState","features":[110]},{"name":"GetClusterNetworkId","features":[110]},{"name":"GetClusterNetworkKey","features":[110,49]},{"name":"GetClusterNetworkState","features":[110]},{"name":"GetClusterNodeId","features":[110]},{"name":"GetClusterNodeKey","features":[110,49]},{"name":"GetClusterNodeState","features":[110]},{"name":"GetClusterNotify","features":[110]},{"name":"GetClusterNotifyV2","features":[110]},{"name":"GetClusterQuorumResource","features":[110]},{"name":"GetClusterResourceDependencyExpression","features":[110]},{"name":"GetClusterResourceKey","features":[110,49]},{"name":"GetClusterResourceNetworkName","features":[1,110]},{"name":"GetClusterResourceState","features":[110]},{"name":"GetClusterResourceTypeKey","features":[110,49]},{"name":"GetNodeCloudTypeDW","features":[110]},{"name":"GetNodeClusterState","features":[110]},{"name":"GetNotifyEventHandle","features":[1,110]},{"name":"HCHANGE","features":[110]},{"name":"HCI_UPGRADE_BIT","features":[110]},{"name":"HCLUSCRYPTPROVIDER","features":[110]},{"name":"HCLUSENUM","features":[110]},{"name":"HCLUSENUMEX","features":[110]},{"name":"HCLUSTER","features":[110]},{"name":"HGROUP","features":[110]},{"name":"HGROUPENUM","features":[110]},{"name":"HGROUPENUMEX","features":[110]},{"name":"HGROUPSET","features":[110]},{"name":"HGROUPSETENUM","features":[110]},{"name":"HNETINTERFACE","features":[110]},{"name":"HNETINTERFACEENUM","features":[110]},{"name":"HNETWORK","features":[110]},{"name":"HNETWORKENUM","features":[110]},{"name":"HNODE","features":[110]},{"name":"HNODEENUM","features":[110]},{"name":"HNODEENUMEX","features":[110]},{"name":"HREGBATCH","features":[110]},{"name":"HREGBATCHNOTIFICATION","features":[110]},{"name":"HREGBATCHPORT","features":[110]},{"name":"HREGREADBATCH","features":[110]},{"name":"HREGREADBATCHREPLY","features":[110]},{"name":"HRESENUM","features":[110]},{"name":"HRESENUMEX","features":[110]},{"name":"HRESOURCE","features":[110]},{"name":"HRESTYPEENUM","features":[110]},{"name":"IGetClusterDataInfo","features":[110]},{"name":"IGetClusterGroupInfo","features":[110]},{"name":"IGetClusterNetInterfaceInfo","features":[110]},{"name":"IGetClusterNetworkInfo","features":[110]},{"name":"IGetClusterNodeInfo","features":[110]},{"name":"IGetClusterObjectInfo","features":[110]},{"name":"IGetClusterResourceInfo","features":[110]},{"name":"IGetClusterUIInfo","features":[110]},{"name":"ISClusApplication","features":[110]},{"name":"ISClusCryptoKeys","features":[110]},{"name":"ISClusDisk","features":[110]},{"name":"ISClusDisks","features":[110]},{"name":"ISClusNetInterface","features":[110]},{"name":"ISClusNetInterfaces","features":[110]},{"name":"ISClusNetwork","features":[110]},{"name":"ISClusNetworkNetInterfaces","features":[110]},{"name":"ISClusNetworks","features":[110]},{"name":"ISClusNode","features":[110]},{"name":"ISClusNodeNetInterfaces","features":[110]},{"name":"ISClusNodes","features":[110]},{"name":"ISClusPartition","features":[110]},{"name":"ISClusPartitionEx","features":[110]},{"name":"ISClusPartitions","features":[110]},{"name":"ISClusProperties","features":[110]},{"name":"ISClusProperty","features":[110]},{"name":"ISClusPropertyValue","features":[110]},{"name":"ISClusPropertyValueData","features":[110]},{"name":"ISClusPropertyValues","features":[110]},{"name":"ISClusRefObject","features":[110]},{"name":"ISClusRegistryKeys","features":[110]},{"name":"ISClusResDependencies","features":[110]},{"name":"ISClusResDependents","features":[110]},{"name":"ISClusResGroup","features":[110]},{"name":"ISClusResGroupPreferredOwnerNodes","features":[110]},{"name":"ISClusResGroupResources","features":[110]},{"name":"ISClusResGroups","features":[110]},{"name":"ISClusResPossibleOwnerNodes","features":[110]},{"name":"ISClusResType","features":[110]},{"name":"ISClusResTypePossibleOwnerNodes","features":[110]},{"name":"ISClusResTypeResources","features":[110]},{"name":"ISClusResTypes","features":[110]},{"name":"ISClusResource","features":[110]},{"name":"ISClusResources","features":[110]},{"name":"ISClusScsiAddress","features":[110]},{"name":"ISClusVersion","features":[110]},{"name":"ISCluster","features":[110]},{"name":"ISClusterNames","features":[110]},{"name":"ISDomainNames","features":[110]},{"name":"IWCContextMenuCallback","features":[110]},{"name":"IWCPropertySheetCallback","features":[110]},{"name":"IWCWizard97Callback","features":[110]},{"name":"IWCWizardCallback","features":[110]},{"name":"IWEExtendContextMenu","features":[110]},{"name":"IWEExtendPropertySheet","features":[110]},{"name":"IWEExtendWizard","features":[110]},{"name":"IWEExtendWizard97","features":[110]},{"name":"IWEInvokeCommand","features":[110]},{"name":"InitializeClusterHealthFault","features":[110]},{"name":"InitializeClusterHealthFaultArray","features":[110]},{"name":"IsFileOnClusterSharedVolume","features":[1,110]},{"name":"LOCKED_MODE_FLAGS_DONT_REMOVE_FROM_MOVE_QUEUE","features":[110]},{"name":"LOG_ERROR","features":[110]},{"name":"LOG_INFORMATION","features":[110]},{"name":"LOG_LEVEL","features":[110]},{"name":"LOG_SEVERE","features":[110]},{"name":"LOG_WARNING","features":[110]},{"name":"LPGROUP_CALLBACK_EX","features":[110]},{"name":"LPNODE_CALLBACK","features":[110]},{"name":"LPRESOURCE_CALLBACK","features":[110]},{"name":"LPRESOURCE_CALLBACK_EX","features":[110]},{"name":"MAINTENANCE_MODE_TYPE_ENUM","features":[110]},{"name":"MAINTENANCE_MODE_V2_SIG","features":[110]},{"name":"MAX_CLUSTERNAME_LENGTH","features":[110]},{"name":"MAX_CO_PASSWORD_LENGTH","features":[110]},{"name":"MAX_CO_PASSWORD_LENGTHEX","features":[110]},{"name":"MAX_CO_PASSWORD_STORAGEEX","features":[110]},{"name":"MAX_CREATINGDC_LENGTH","features":[110]},{"name":"MAX_OBJECTID","features":[110]},{"name":"MINIMUM_NEVER_PREEMPT_PRIORITY","features":[110]},{"name":"MINIMUM_PREEMPTOR_PRIORITY","features":[110]},{"name":"MN_UPGRADE_VERSION","features":[110]},{"name":"MONITOR_STATE","features":[1,110]},{"name":"MaintenanceModeTypeDisableIsAliveCheck","features":[110]},{"name":"MaintenanceModeTypeOfflineResource","features":[110]},{"name":"MaintenanceModeTypeUnclusterResource","features":[110]},{"name":"ModifyQuorum","features":[110]},{"name":"MoveClusterGroup","features":[110]},{"name":"MoveClusterGroupEx","features":[110]},{"name":"MoveClusterGroupEx2","features":[110]},{"name":"NINETEEN_H1_UPGRADE_VERSION","features":[110]},{"name":"NINETEEN_H2_UPGRADE_VERSION","features":[110]},{"name":"NI_UPGRADE_VERSION","features":[110]},{"name":"NNLEN","features":[110]},{"name":"NODE_CLUSTER_STATE","features":[110]},{"name":"NOTIFY_FILTER_AND_TYPE","features":[110]},{"name":"NT10_MAJOR_VERSION","features":[110]},{"name":"NT11_MAJOR_VERSION","features":[110]},{"name":"NT12_MAJOR_VERSION","features":[110]},{"name":"NT13_MAJOR_VERSION","features":[110]},{"name":"NT4SP4_MAJOR_VERSION","features":[110]},{"name":"NT4_MAJOR_VERSION","features":[110]},{"name":"NT51_MAJOR_VERSION","features":[110]},{"name":"NT5_MAJOR_VERSION","features":[110]},{"name":"NT6_MAJOR_VERSION","features":[110]},{"name":"NT7_MAJOR_VERSION","features":[110]},{"name":"NT8_MAJOR_VERSION","features":[110]},{"name":"NT9_MAJOR_VERSION","features":[110]},{"name":"NodeDrainStatusCompleted","features":[110]},{"name":"NodeDrainStatusFailed","features":[110]},{"name":"NodeDrainStatusInProgress","features":[110]},{"name":"NodeDrainStatusNotInitiated","features":[110]},{"name":"NodeStatusAvoidPlacement","features":[110]},{"name":"NodeStatusDrainCompleted","features":[110]},{"name":"NodeStatusDrainFailed","features":[110]},{"name":"NodeStatusDrainInProgress","features":[110]},{"name":"NodeStatusIsolated","features":[110]},{"name":"NodeStatusMax","features":[110]},{"name":"NodeStatusNormal","features":[110]},{"name":"NodeStatusQuarantined","features":[110]},{"name":"NodeUtilizationInfoElement","features":[110]},{"name":"OfflineClusterGroup","features":[110]},{"name":"OfflineClusterGroupEx","features":[110]},{"name":"OfflineClusterGroupEx2","features":[110]},{"name":"OfflineClusterResource","features":[110]},{"name":"OfflineClusterResourceEx","features":[110]},{"name":"OfflineClusterResourceEx2","features":[110]},{"name":"OnlineClusterGroup","features":[110]},{"name":"OnlineClusterGroupEx","features":[110]},{"name":"OnlineClusterGroupEx2","features":[110]},{"name":"OnlineClusterResource","features":[110]},{"name":"OnlineClusterResourceEx","features":[110]},{"name":"OnlineClusterResourceEx2","features":[110]},{"name":"OpenCluster","features":[110]},{"name":"OpenClusterCryptProvider","features":[110]},{"name":"OpenClusterCryptProviderEx","features":[110]},{"name":"OpenClusterEx","features":[110]},{"name":"OpenClusterGroup","features":[110]},{"name":"OpenClusterGroupEx","features":[110]},{"name":"OpenClusterGroupSet","features":[110]},{"name":"OpenClusterNetInterface","features":[110]},{"name":"OpenClusterNetInterfaceEx","features":[110]},{"name":"OpenClusterNetwork","features":[110]},{"name":"OpenClusterNetworkEx","features":[110]},{"name":"OpenClusterNode","features":[110]},{"name":"OpenClusterNodeById","features":[110]},{"name":"OpenClusterNodeEx","features":[110]},{"name":"OpenClusterResource","features":[110]},{"name":"OpenClusterResourceEx","features":[110]},{"name":"OperationalQuorum","features":[110]},{"name":"PARBITRATE_ROUTINE","features":[110]},{"name":"PARM_WPR_WATCHDOG_FOR_CURRENT_RESOURCE_CALL_ROUTINE","features":[110]},{"name":"PBEGIN_RESCALL_AS_USER_ROUTINE","features":[1,110]},{"name":"PBEGIN_RESCALL_ROUTINE","features":[1,110]},{"name":"PBEGIN_RESTYPECALL_AS_USER_ROUTINE","features":[1,110]},{"name":"PBEGIN_RESTYPECALL_ROUTINE","features":[1,110]},{"name":"PCANCEL_ROUTINE","features":[110]},{"name":"PCHANGE_RESOURCE_PROCESS_FOR_DUMPS","features":[1,110]},{"name":"PCHANGE_RES_TYPE_PROCESS_FOR_DUMPS","features":[1,110]},{"name":"PCLOSE_CLUSTER_CRYPT_PROVIDER","features":[110]},{"name":"PCLOSE_ROUTINE","features":[110]},{"name":"PCLUSAPIClusWorkerCheckTerminate","features":[1,110]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE","features":[1,110]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE_EX","features":[1,110]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE","features":[110]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE_EX","features":[110]},{"name":"PCLUSAPI_ADD_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_ADD_RESOURCE_TO_CLUSTER_SHARED_VOLUMES","features":[110]},{"name":"PCLUSAPI_BACKUP_CLUSTER_DATABASE","features":[110]},{"name":"PCLUSAPI_CAN_RESOURCE_BE_DEPENDENT","features":[1,110]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP","features":[110]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX","features":[110]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX2","features":[110]},{"name":"PCLUSAPI_CLOSE_CLUSTER","features":[1,110]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP","features":[1,110]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP_GROUPSET","features":[1,110]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NETWORK","features":[1,110]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NET_INTERFACE","features":[1,110]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NODE","features":[1,110]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NOTIFY_PORT","features":[1,110]},{"name":"PCLUSAPI_CLOSE_CLUSTER_RESOURCE","features":[1,110]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_AFFINITY_RULE","features":[110]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUPSET_WITH_DOMAINS_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUP_GROUPSET","features":[110]},{"name":"PCLUSAPI_CLUSTER_AFFINITY_RULE_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_CREATE_AFFINITY_RULE","features":[110]},{"name":"PCLUSAPI_CLUSTER_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT","features":[110]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CLOSE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_NETWORK_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_NETWORK_GET_ENUM_COUNT","features":[110]},{"name":"PCLUSAPI_CLUSTER_NETWORK_OPEN_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_REG_CLOSE_KEY","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_BATCH","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY","features":[1,110,4,49]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY_EX","features":[1,110,4,49]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY_EX","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE_EX","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_KEY","features":[1,110,49]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_VALUE","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_GET_KEY_SECURITY","features":[110,4,49]},{"name":"PCLUSAPI_CLUSTER_REG_OPEN_KEY","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_INFO_KEY","features":[1,110,49]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_VALUE","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY","features":[110,4,49]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY_EX","features":[110,4,49]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE_EX","features":[110,49]},{"name":"PCLUSAPI_CLUSTER_REG_SYNC_DATABASE","features":[110]},{"name":"PCLUSAPI_CLUSTER_REMOVE_AFFINITY_RULE","features":[110]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_AFFINITY_RULE","features":[110]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET","features":[110]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_AS_USER_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CLOSE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_AS_USER_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_EX","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_GET_ENUM_COUNT","features":[110]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_OPEN_ENUM","features":[110]},{"name":"PCLUSAPI_CLUSTER_UPGRADE","features":[1,110]},{"name":"PCLUSAPI_CLUS_WORKER_CREATE","features":[1,110]},{"name":"PCLUSAPI_CLUS_WORKER_TERMINATE","features":[1,110]},{"name":"PCLUSAPI_CREATE_CLUSTER","features":[1,110]},{"name":"PCLUSAPI_CREATE_CLUSTER_AVAILABILITY_SET","features":[1,110]},{"name":"PCLUSAPI_CREATE_CLUSTER_CNOLESS","features":[1,110]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUPEX","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP_GROUPSET","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_NAME_ACCOUNT","features":[1,110]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT_V2","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_EX","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE","features":[110]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE_EX","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_EX","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET_EX","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_EX","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE","features":[110]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE_EX","features":[110]},{"name":"PCLUSAPI_DESTROY_CLUSTER","features":[1,110]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP","features":[110]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP_EX","features":[110]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE","features":[110]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX","features":[110]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX2","features":[110]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE","features":[110]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE_EX","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP_GROUPSET","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NETWORK","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NET_INTERFACE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NODE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_RESOURCE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_KEY","features":[110,49]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_STATE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_INFORMATION","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_KEY","features":[110,49]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_ID","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_KEY","features":[110,49]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_STATE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_KEY","features":[110,49]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_STATE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_ID","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_KEY","features":[110,49]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_STATE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY_V2","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_QUORUM_RESOURCE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_KEY","features":[110,49]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_NETWORK_NAME","features":[1,110]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_STATE","features":[110]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_TYPE_KEY","features":[110,49]},{"name":"PCLUSAPI_GET_NODE_CLUSTER_STATE","features":[110]},{"name":"PCLUSAPI_GET_NOTIFY_EVENT_HANDLE_V2","features":[1,110]},{"name":"PCLUSAPI_IS_FILE_ON_CLUSTER_SHARED_VOLUME","features":[1,110]},{"name":"PCLUSAPI_MOVE_CLUSTER_GROUP","features":[110]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_GROUP","features":[110]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_RESOURCE","features":[110]},{"name":"PCLUSAPI_ONLINE_CLUSTER_GROUP","features":[110]},{"name":"PCLUSAPI_ONLINE_CLUSTER_RESOURCE","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_EX","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_EX","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_GROUPSET","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETINTERFACE_EX","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK_EX","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_NET_INTERFACE","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE_EX","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE","features":[110]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE_EX","features":[110]},{"name":"PCLUSAPI_OPEN_NODE_BY_ID","features":[110]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE","features":[110]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX","features":[1,110]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX2","features":[1,110]},{"name":"PCLUSAPI_PFN_REASON_HANDLER","features":[1,110]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY","features":[1,110]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY_V2","features":[1,110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_NAME_ACCOUNT","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE","features":[110]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE_EX","features":[110]},{"name":"PCLUSAPI_REMOVE_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[110]},{"name":"PCLUSAPI_REMOVE_RESOURCE_FROM_CLUSTER_SHARED_VOLUMES","features":[110]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE","features":[110]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE_EX","features":[110]},{"name":"PCLUSAPI_RESTORE_CLUSTER_DATABASE","features":[1,110]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE","features":[110]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX","features":[110]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX2","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION_EX","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME_EX","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST_EX","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_NAME_EX","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME_EX","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_PRIORITY_ORDER","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE_EX","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME_EX","features":[110]},{"name":"PCLUSAPI_SET_CLUSTER_SERVICE_ACCOUNT_PASSWORD","features":[1,110]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION","features":[110]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION_EX","features":[110]},{"name":"PCLUSAPI_SET_REASON_HANDLER","features":[1,110]},{"name":"PCLUSAPI_SHARED_VOLUME_SET_SNAPSHOT_STATE","features":[110]},{"name":"PCLUSAPI_SetClusterName","features":[110]},{"name":"PCLUSTER_CLEAR_BACKUP_STATE_FOR_SHARED_VOLUME","features":[110]},{"name":"PCLUSTER_DECRYPT","features":[110]},{"name":"PCLUSTER_ENCRYPT","features":[110]},{"name":"PCLUSTER_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[1,110]},{"name":"PCLUSTER_GET_VOLUME_PATH_NAME","features":[1,110]},{"name":"PCLUSTER_IS_PATH_ON_SHARED_VOLUME","features":[1,110]},{"name":"PCLUSTER_PREPARE_SHARED_VOLUME_FOR_BACKUP","features":[110]},{"name":"PCLUSTER_REG_BATCH_ADD_COMMAND","features":[110]},{"name":"PCLUSTER_REG_BATCH_CLOSE_NOTIFICATION","features":[110]},{"name":"PCLUSTER_REG_BATCH_READ_COMMAND","features":[110]},{"name":"PCLUSTER_REG_CLOSE_BATCH","features":[1,110]},{"name":"PCLUSTER_REG_CLOSE_BATCH_NOTIFY_PORT","features":[110]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH","features":[110]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_EX","features":[110]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_REPLY","features":[110]},{"name":"PCLUSTER_REG_CREATE_BATCH_NOTIFY_PORT","features":[110,49]},{"name":"PCLUSTER_REG_CREATE_READ_BATCH","features":[110,49]},{"name":"PCLUSTER_REG_GET_BATCH_NOTIFICATION","features":[110]},{"name":"PCLUSTER_REG_READ_BATCH_ADD_COMMAND","features":[110]},{"name":"PCLUSTER_REG_READ_BATCH_REPLY_NEXT_COMMAND","features":[110]},{"name":"PCLUSTER_SETUP_PROGRESS_CALLBACK","features":[1,110]},{"name":"PCLUSTER_SET_ACCOUNT_ACCESS","features":[110]},{"name":"PCLUSTER_UPGRADE_PROGRESS_CALLBACK","features":[1,110]},{"name":"PEND_CONTROL_CALL","features":[110]},{"name":"PEND_TYPE_CONTROL_CALL","features":[110]},{"name":"PEXTEND_RES_CONTROL_CALL","features":[110]},{"name":"PEXTEND_RES_TYPE_CONTROL_CALL","features":[110]},{"name":"PFREE_CLUSTER_CRYPT","features":[110]},{"name":"PIS_ALIVE_ROUTINE","features":[1,110]},{"name":"PLACEMENT_OPTIONS","features":[110]},{"name":"PLACEMENT_OPTIONS_ALL","features":[110]},{"name":"PLACEMENT_OPTIONS_AVAILABILITY_SET_DOMAIN_AFFINITY","features":[110]},{"name":"PLACEMENT_OPTIONS_CONSIDER_OFFLINE_VMS","features":[110]},{"name":"PLACEMENT_OPTIONS_DEFAULT_PLACEMENT_OPTIONS","features":[110]},{"name":"PLACEMENT_OPTIONS_DISABLE_CSV_VM_DEPENDENCY","features":[110]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_AVAILABILTY_SET_VMS_WITH_EXISTING_TEMP_DISK","features":[110]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_VMS_WITH_EXISTING_TEMP_DISK","features":[110]},{"name":"PLACEMENT_OPTIONS_DONT_USE_CPU","features":[110]},{"name":"PLACEMENT_OPTIONS_DONT_USE_LOCAL_TEMP_DISK","features":[110]},{"name":"PLACEMENT_OPTIONS_DONT_USE_MEMORY","features":[110]},{"name":"PLACEMENT_OPTIONS_MIN_VALUE","features":[110]},{"name":"PLACEMENT_OPTIONS_SAVE_AVAILABILTY_SET_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[110]},{"name":"PLACEMENT_OPTIONS_SAVE_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[110]},{"name":"PLOG_EVENT_ROUTINE","features":[110]},{"name":"PLOOKS_ALIVE_ROUTINE","features":[1,110]},{"name":"POFFLINE_ROUTINE","features":[110]},{"name":"POFFLINE_V2_ROUTINE","features":[110]},{"name":"PONLINE_ROUTINE","features":[1,110]},{"name":"PONLINE_V2_ROUTINE","features":[1,110]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDER","features":[110]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDEREX","features":[110]},{"name":"POPEN_ROUTINE","features":[110,49]},{"name":"POPEN_V2_ROUTINE","features":[110,49]},{"name":"POST_UPGRADE_VERSION_INFO","features":[110]},{"name":"PQUERY_APPINSTANCE_VERSION","features":[1,110]},{"name":"PQUORUM_RESOURCE_LOST","features":[110]},{"name":"PRAISE_RES_TYPE_NOTIFICATION","features":[110]},{"name":"PREGISTER_APPINSTANCE","features":[1,110]},{"name":"PREGISTER_APPINSTANCE_VERSION","features":[110]},{"name":"PRELEASE_ROUTINE","features":[110]},{"name":"PREQUEST_DUMP_ROUTINE","features":[1,110]},{"name":"PRESET_ALL_APPINSTANCE_VERSIONS","features":[110]},{"name":"PRESOURCE_CONTROL_ROUTINE","features":[110]},{"name":"PRESOURCE_TYPE_CONTROL_ROUTINE","features":[110]},{"name":"PRESUTIL_ADD_UNKNOWN_PROPERTIES","features":[1,110,49]},{"name":"PRESUTIL_CREATE_DIRECTORY_TREE","features":[110]},{"name":"PRESUTIL_DUP_PARAMETER_BLOCK","features":[1,110]},{"name":"PRESUTIL_DUP_STRING","features":[110]},{"name":"PRESUTIL_ENUM_PRIVATE_PROPERTIES","features":[110,49]},{"name":"PRESUTIL_ENUM_PROPERTIES","features":[1,110]},{"name":"PRESUTIL_ENUM_RESOURCES","features":[110]},{"name":"PRESUTIL_ENUM_RESOURCES_EX","features":[110]},{"name":"PRESUTIL_ENUM_RESOURCES_EX2","features":[110]},{"name":"PRESUTIL_EXPAND_ENVIRONMENT_STRINGS","features":[110]},{"name":"PRESUTIL_FIND_BINARY_PROPERTY","features":[110]},{"name":"PRESUTIL_FIND_DEPENDENT_DISK_RESOURCE_DRIVE_LETTER","features":[110]},{"name":"PRESUTIL_FIND_DWORD_PROPERTY","features":[110]},{"name":"PRESUTIL_FIND_EXPANDED_SZ_PROPERTY","features":[110]},{"name":"PRESUTIL_FIND_EXPAND_SZ_PROPERTY","features":[110]},{"name":"PRESUTIL_FIND_FILETIME_PROPERTY","features":[1,110]},{"name":"PRESUTIL_FIND_LONG_PROPERTY","features":[110]},{"name":"PRESUTIL_FIND_MULTI_SZ_PROPERTY","features":[110]},{"name":"PRESUTIL_FIND_SZ_PROPERTY","features":[110]},{"name":"PRESUTIL_FIND_ULARGEINTEGER_PROPERTY","features":[110]},{"name":"PRESUTIL_FREE_ENVIRONMENT","features":[110]},{"name":"PRESUTIL_FREE_PARAMETER_BLOCK","features":[1,110]},{"name":"PRESUTIL_GET_ALL_PROPERTIES","features":[1,110,49]},{"name":"PRESUTIL_GET_BINARY_PROPERTY","features":[110]},{"name":"PRESUTIL_GET_BINARY_VALUE","features":[110,49]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES","features":[110]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES_EX","features":[110]},{"name":"PRESUTIL_GET_DWORD_PROPERTY","features":[110]},{"name":"PRESUTIL_GET_DWORD_VALUE","features":[110,49]},{"name":"PRESUTIL_GET_ENVIRONMENT_WITH_NET_NAME","features":[110]},{"name":"PRESUTIL_GET_EXPAND_SZ_VALUE","features":[1,110,49]},{"name":"PRESUTIL_GET_FILETIME_PROPERTY","features":[1,110]},{"name":"PRESUTIL_GET_LONG_PROPERTY","features":[110]},{"name":"PRESUTIL_GET_MULTI_SZ_PROPERTY","features":[110]},{"name":"PRESUTIL_GET_PRIVATE_PROPERTIES","features":[110,49]},{"name":"PRESUTIL_GET_PROPERTIES","features":[1,110,49]},{"name":"PRESUTIL_GET_PROPERTIES_TO_PARAMETER_BLOCK","features":[1,110,49]},{"name":"PRESUTIL_GET_PROPERTY","features":[1,110,49]},{"name":"PRESUTIL_GET_PROPERTY_FORMATS","features":[1,110]},{"name":"PRESUTIL_GET_PROPERTY_SIZE","features":[1,110,49]},{"name":"PRESUTIL_GET_QWORD_VALUE","features":[110,49]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY","features":[1,110]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS","features":[1,110]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS_EX","features":[1,110]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME","features":[1,110]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME_EX","features":[1,110]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_EX","features":[1,110]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENTIP_ADDRESS_PROPS","features":[110]},{"name":"PRESUTIL_GET_RESOURCE_NAME","features":[110]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY","features":[110]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY_EX","features":[110]},{"name":"PRESUTIL_GET_SZ_PROPERTY","features":[110]},{"name":"PRESUTIL_GET_SZ_VALUE","features":[110,49]},{"name":"PRESUTIL_IS_PATH_VALID","features":[1,110]},{"name":"PRESUTIL_IS_RESOURCE_CLASS_EQUAL","features":[1,110]},{"name":"PRESUTIL_PROPERTY_LIST_FROM_PARAMETER_BLOCK","features":[1,110]},{"name":"PRESUTIL_REMOVE_RESOURCE_SERVICE_ENVIRONMENT","features":[110]},{"name":"PRESUTIL_RESOURCES_EQUAL","features":[1,110]},{"name":"PRESUTIL_RESOURCE_TYPES_EQUAL","features":[1,110]},{"name":"PRESUTIL_SET_BINARY_VALUE","features":[110,49]},{"name":"PRESUTIL_SET_DWORD_VALUE","features":[110,49]},{"name":"PRESUTIL_SET_EXPAND_SZ_VALUE","features":[110,49]},{"name":"PRESUTIL_SET_MULTI_SZ_VALUE","features":[110,49]},{"name":"PRESUTIL_SET_PRIVATE_PROPERTY_LIST","features":[110,49]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK","features":[1,110,49]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK_EX","features":[1,110,49]},{"name":"PRESUTIL_SET_PROPERTY_TABLE","features":[1,110,49]},{"name":"PRESUTIL_SET_PROPERTY_TABLE_EX","features":[1,110,49]},{"name":"PRESUTIL_SET_QWORD_VALUE","features":[110,49]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_ENVIRONMENT","features":[110]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS","features":[110,4]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX","features":[110,4]},{"name":"PRESUTIL_SET_SZ_VALUE","features":[110,49]},{"name":"PRESUTIL_SET_UNKNOWN_PROPERTIES","features":[1,110,49]},{"name":"PRESUTIL_START_RESOURCE_SERVICE","features":[110,4]},{"name":"PRESUTIL_STOP_RESOURCE_SERVICE","features":[110]},{"name":"PRESUTIL_STOP_SERVICE","features":[110,4]},{"name":"PRESUTIL_TERMINATE_SERVICE_PROCESS_FROM_RES_DLL","features":[1,110]},{"name":"PRESUTIL_VERIFY_PRIVATE_PROPERTY_LIST","features":[110]},{"name":"PRESUTIL_VERIFY_PROPERTY_TABLE","features":[1,110]},{"name":"PRESUTIL_VERIFY_RESOURCE_SERVICE","features":[110]},{"name":"PRESUTIL_VERIFY_SERVICE","features":[110,4]},{"name":"PRES_UTIL_VERIFY_SHUTDOWN_SAFE","features":[110]},{"name":"PSET_INTERNAL_STATE","features":[1,110]},{"name":"PSET_RESOURCE_INMEMORY_NODELOCAL_PROPERTIES_ROUTINE","features":[110]},{"name":"PSET_RESOURCE_LOCKED_MODE_EX_ROUTINE","features":[1,110]},{"name":"PSET_RESOURCE_LOCKED_MODE_ROUTINE","features":[1,110]},{"name":"PSET_RESOURCE_STATUS_ROUTINE","features":[1,110]},{"name":"PSET_RESOURCE_STATUS_ROUTINE_EX","features":[1,110]},{"name":"PSET_RESOURCE_WPR_POLICY_ROUTINE","features":[110]},{"name":"PSIGNAL_FAILURE_ROUTINE","features":[110]},{"name":"PSTARTUP_EX_ROUTINE","features":[1,110,49]},{"name":"PSTARTUP_ROUTINE","features":[1,110,49]},{"name":"PTERMINATE_ROUTINE","features":[110]},{"name":"PWORKER_START_ROUTINE","features":[1,110]},{"name":"PauseClusterNode","features":[110]},{"name":"PauseClusterNodeEx","features":[1,110]},{"name":"PauseClusterNodeEx2","features":[1,110]},{"name":"PaxosTagCStruct","features":[110]},{"name":"PriorityDisabled","features":[110]},{"name":"PriorityHigh","features":[110]},{"name":"PriorityLow","features":[110]},{"name":"PriorityMedium","features":[110]},{"name":"QueryAppInstanceVersion","features":[1,110]},{"name":"RESDLL_CONTEXT_OPERATION_TYPE","features":[110]},{"name":"RESOURCE_EXIT_STATE","features":[110]},{"name":"RESOURCE_FAILURE_INFO","features":[110]},{"name":"RESOURCE_FAILURE_INFO_BUFFER","features":[110]},{"name":"RESOURCE_FAILURE_INFO_VERSION_1","features":[110]},{"name":"RESOURCE_MONITOR_STATE","features":[110]},{"name":"RESOURCE_STATUS","features":[1,110]},{"name":"RESOURCE_STATUS_EX","features":[1,110]},{"name":"RESOURCE_TERMINAL_FAILURE_INFO_BUFFER","features":[1,110]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_CLUSSVC_CRASH","features":[110]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_NODE_STOP","features":[110]},{"name":"RESUTIL_FILETIME_DATA","features":[1,110]},{"name":"RESUTIL_LARGEINT_DATA","features":[110]},{"name":"RESUTIL_PROPERTY_ITEM","features":[1,110]},{"name":"RESUTIL_PROPITEM_IN_MEMORY","features":[110]},{"name":"RESUTIL_PROPITEM_READ_ONLY","features":[110]},{"name":"RESUTIL_PROPITEM_REQUIRED","features":[110]},{"name":"RESUTIL_PROPITEM_SIGNED","features":[110]},{"name":"RESUTIL_ULARGEINT_DATA","features":[110]},{"name":"RS3_UPGRADE_VERSION","features":[110]},{"name":"RS4_UPGRADE_VERSION","features":[110]},{"name":"RS5_UPGRADE_VERSION","features":[110]},{"name":"RedirectedIOReasonBitLockerInitializing","features":[110]},{"name":"RedirectedIOReasonFileSystemTiering","features":[110]},{"name":"RedirectedIOReasonMax","features":[110]},{"name":"RedirectedIOReasonReFs","features":[110]},{"name":"RedirectedIOReasonUnsafeFileSystemFilter","features":[110]},{"name":"RedirectedIOReasonUnsafeVolumeFilter","features":[110]},{"name":"RedirectedIOReasonUserRequest","features":[110]},{"name":"RegisterAppInstance","features":[1,110]},{"name":"RegisterAppInstanceVersion","features":[110]},{"name":"RegisterClusterNotify","features":[1,110]},{"name":"RegisterClusterNotifyV2","features":[1,110]},{"name":"RegisterClusterResourceTypeNotifyV2","features":[110]},{"name":"RemoveClusterGroupDependency","features":[110]},{"name":"RemoveClusterGroupDependencyEx","features":[110]},{"name":"RemoveClusterGroupSetDependency","features":[110]},{"name":"RemoveClusterGroupSetDependencyEx","features":[110]},{"name":"RemoveClusterGroupToGroupSetDependency","features":[110]},{"name":"RemoveClusterGroupToGroupSetDependencyEx","features":[110]},{"name":"RemoveClusterNameAccount","features":[1,110]},{"name":"RemoveClusterResourceDependency","features":[110]},{"name":"RemoveClusterResourceDependencyEx","features":[110]},{"name":"RemoveClusterResourceNode","features":[110]},{"name":"RemoveClusterResourceNodeEx","features":[110]},{"name":"RemoveClusterStorageNode","features":[110]},{"name":"RemoveCrossClusterGroupSetDependency","features":[110]},{"name":"RemoveResourceFromClusterSharedVolumes","features":[110]},{"name":"ResUtilAddUnknownProperties","features":[1,110,49]},{"name":"ResUtilCreateDirectoryTree","features":[110]},{"name":"ResUtilDupGroup","features":[110]},{"name":"ResUtilDupParameterBlock","features":[1,110]},{"name":"ResUtilDupResource","features":[110]},{"name":"ResUtilDupString","features":[110]},{"name":"ResUtilEnumGroups","features":[110]},{"name":"ResUtilEnumGroupsEx","features":[110]},{"name":"ResUtilEnumPrivateProperties","features":[110,49]},{"name":"ResUtilEnumProperties","features":[1,110]},{"name":"ResUtilEnumResources","features":[110]},{"name":"ResUtilEnumResourcesEx","features":[110]},{"name":"ResUtilEnumResourcesEx2","features":[110]},{"name":"ResUtilExpandEnvironmentStrings","features":[110]},{"name":"ResUtilFindBinaryProperty","features":[110]},{"name":"ResUtilFindDependentDiskResourceDriveLetter","features":[110]},{"name":"ResUtilFindDwordProperty","features":[110]},{"name":"ResUtilFindExpandSzProperty","features":[110]},{"name":"ResUtilFindExpandedSzProperty","features":[110]},{"name":"ResUtilFindFileTimeProperty","features":[1,110]},{"name":"ResUtilFindLongProperty","features":[110]},{"name":"ResUtilFindMultiSzProperty","features":[110]},{"name":"ResUtilFindSzProperty","features":[110]},{"name":"ResUtilFindULargeIntegerProperty","features":[110]},{"name":"ResUtilFreeEnvironment","features":[110]},{"name":"ResUtilFreeParameterBlock","features":[1,110]},{"name":"ResUtilGetAllProperties","features":[1,110,49]},{"name":"ResUtilGetBinaryProperty","features":[110]},{"name":"ResUtilGetBinaryValue","features":[110,49]},{"name":"ResUtilGetClusterGroupType","features":[110]},{"name":"ResUtilGetClusterId","features":[110]},{"name":"ResUtilGetClusterRoleState","features":[110]},{"name":"ResUtilGetCoreClusterResources","features":[110]},{"name":"ResUtilGetCoreClusterResourcesEx","features":[110]},{"name":"ResUtilGetCoreGroup","features":[110]},{"name":"ResUtilGetDwordProperty","features":[110]},{"name":"ResUtilGetDwordValue","features":[110,49]},{"name":"ResUtilGetEnvironmentWithNetName","features":[110]},{"name":"ResUtilGetFileTimeProperty","features":[1,110]},{"name":"ResUtilGetLongProperty","features":[110]},{"name":"ResUtilGetMultiSzProperty","features":[110]},{"name":"ResUtilGetPrivateProperties","features":[110,49]},{"name":"ResUtilGetProperties","features":[1,110,49]},{"name":"ResUtilGetPropertiesToParameterBlock","features":[1,110,49]},{"name":"ResUtilGetProperty","features":[1,110,49]},{"name":"ResUtilGetPropertyFormats","features":[1,110]},{"name":"ResUtilGetPropertySize","features":[1,110,49]},{"name":"ResUtilGetQwordValue","features":[110,49]},{"name":"ResUtilGetResourceDependency","features":[1,110]},{"name":"ResUtilGetResourceDependencyByClass","features":[1,110]},{"name":"ResUtilGetResourceDependencyByClassEx","features":[1,110]},{"name":"ResUtilGetResourceDependencyByName","features":[1,110]},{"name":"ResUtilGetResourceDependencyByNameEx","features":[1,110]},{"name":"ResUtilGetResourceDependencyEx","features":[1,110]},{"name":"ResUtilGetResourceDependentIPAddressProps","features":[110]},{"name":"ResUtilGetResourceName","features":[110]},{"name":"ResUtilGetResourceNameDependency","features":[110]},{"name":"ResUtilGetResourceNameDependencyEx","features":[110]},{"name":"ResUtilGetSzProperty","features":[110]},{"name":"ResUtilGetSzValue","features":[110,49]},{"name":"ResUtilGroupsEqual","features":[1,110]},{"name":"ResUtilIsPathValid","features":[1,110]},{"name":"ResUtilIsResourceClassEqual","features":[1,110]},{"name":"ResUtilLeftPaxosIsLessThanRight","features":[1,110]},{"name":"ResUtilNodeEnum","features":[110]},{"name":"ResUtilPaxosComparer","features":[1,110]},{"name":"ResUtilPropertyListFromParameterBlock","features":[1,110]},{"name":"ResUtilRemoveResourceServiceEnvironment","features":[110]},{"name":"ResUtilResourceDepEnum","features":[110]},{"name":"ResUtilResourceTypesEqual","features":[1,110]},{"name":"ResUtilResourcesEqual","features":[1,110]},{"name":"ResUtilSetBinaryValue","features":[110,49]},{"name":"ResUtilSetDwordValue","features":[110,49]},{"name":"ResUtilSetExpandSzValue","features":[110,49]},{"name":"ResUtilSetMultiSzValue","features":[110,49]},{"name":"ResUtilSetPrivatePropertyList","features":[110,49]},{"name":"ResUtilSetPropertyParameterBlock","features":[1,110,49]},{"name":"ResUtilSetPropertyParameterBlockEx","features":[1,110,49]},{"name":"ResUtilSetPropertyTable","features":[1,110,49]},{"name":"ResUtilSetPropertyTableEx","features":[1,110,49]},{"name":"ResUtilSetQwordValue","features":[110,49]},{"name":"ResUtilSetResourceServiceEnvironment","features":[110]},{"name":"ResUtilSetResourceServiceStartParameters","features":[110,4]},{"name":"ResUtilSetResourceServiceStartParametersEx","features":[110,4]},{"name":"ResUtilSetSzValue","features":[110,49]},{"name":"ResUtilSetUnknownProperties","features":[1,110,49]},{"name":"ResUtilSetValueEx","features":[110,49]},{"name":"ResUtilStartResourceService","features":[110,4]},{"name":"ResUtilStopResourceService","features":[110]},{"name":"ResUtilStopService","features":[110,4]},{"name":"ResUtilTerminateServiceProcessFromResDll","features":[1,110]},{"name":"ResUtilVerifyPrivatePropertyList","features":[110]},{"name":"ResUtilVerifyPropertyTable","features":[1,110]},{"name":"ResUtilVerifyResourceService","features":[110]},{"name":"ResUtilVerifyService","features":[110,4]},{"name":"ResUtilVerifyShutdownSafe","features":[110]},{"name":"ResUtilsDeleteKeyTree","features":[1,110,49]},{"name":"ResdllContextOperationTypeDrain","features":[110]},{"name":"ResdllContextOperationTypeDrainFailure","features":[110]},{"name":"ResdllContextOperationTypeEmbeddedFailure","features":[110]},{"name":"ResdllContextOperationTypeFailback","features":[110]},{"name":"ResdllContextOperationTypeNetworkDisconnect","features":[110]},{"name":"ResdllContextOperationTypeNetworkDisconnectMoveRetry","features":[110]},{"name":"ResdllContextOperationTypePreemption","features":[110]},{"name":"ResetAllAppInstanceVersions","features":[110]},{"name":"ResourceExitStateContinue","features":[110]},{"name":"ResourceExitStateMax","features":[110]},{"name":"ResourceExitStateTerminate","features":[110]},{"name":"ResourceUtilizationInfoElement","features":[110]},{"name":"RestartClusterResource","features":[110]},{"name":"RestartClusterResourceEx","features":[110]},{"name":"RestoreClusterDatabase","features":[1,110]},{"name":"ResumeClusterNode","features":[110]},{"name":"ResumeClusterNodeEx","features":[110]},{"name":"ResumeClusterNodeEx2","features":[110]},{"name":"RmonArbitrateResource","features":[110]},{"name":"RmonDeadlocked","features":[110]},{"name":"RmonDeletingResource","features":[110]},{"name":"RmonIdle","features":[110]},{"name":"RmonInitializing","features":[110]},{"name":"RmonInitializingResource","features":[110]},{"name":"RmonIsAlivePoll","features":[110]},{"name":"RmonLooksAlivePoll","features":[110]},{"name":"RmonOfflineResource","features":[110]},{"name":"RmonOnlineResource","features":[110]},{"name":"RmonReleaseResource","features":[110]},{"name":"RmonResourceControl","features":[110]},{"name":"RmonResourceTypeControl","features":[110]},{"name":"RmonShutdownResource","features":[110]},{"name":"RmonStartingResource","features":[110]},{"name":"RmonTerminateResource","features":[110]},{"name":"SET_APPINSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[110]},{"name":"SET_APP_INSTANCE_CSV_FLAGS","features":[1,110]},{"name":"SR_DISK_REPLICATION_ELIGIBLE","features":[110]},{"name":"SR_REPLICATED_DISK_TYPE","features":[110]},{"name":"SR_REPLICATED_PARTITION_DISALLOW_MULTINODE_IO","features":[110]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP","features":[1,110]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP_RESULT","features":[110]},{"name":"SR_RESOURCE_TYPE_DISK_INFO","features":[110]},{"name":"SR_RESOURCE_TYPE_ELIGIBLE_DISKS_RESULT","features":[110]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_LOGDISKS","features":[1,110]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_SOURCE_DATADISKS","features":[1,110]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_TARGET_DATADISKS","features":[1,110]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISK","features":[110]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISKS_RESULT","features":[110]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_ARRAY","features":[110]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_INFO","features":[110]},{"name":"STARTUP_EX_ROUTINE","features":[110]},{"name":"STARTUP_ROUTINE","features":[110]},{"name":"SetAppInstanceCsvFlags","features":[1,110]},{"name":"SetClusterGroupName","features":[110]},{"name":"SetClusterGroupNameEx","features":[110]},{"name":"SetClusterGroupNodeList","features":[110]},{"name":"SetClusterGroupNodeListEx","features":[110]},{"name":"SetClusterGroupSetDependencyExpression","features":[110]},{"name":"SetClusterGroupSetDependencyExpressionEx","features":[110]},{"name":"SetClusterName","features":[110]},{"name":"SetClusterNameEx","features":[110]},{"name":"SetClusterNetworkName","features":[110]},{"name":"SetClusterNetworkNameEx","features":[110]},{"name":"SetClusterNetworkPriorityOrder","features":[110]},{"name":"SetClusterQuorumResource","features":[110]},{"name":"SetClusterQuorumResourceEx","features":[110]},{"name":"SetClusterResourceDependencyExpression","features":[110]},{"name":"SetClusterResourceName","features":[110]},{"name":"SetClusterResourceNameEx","features":[110]},{"name":"SetClusterServiceAccountPassword","features":[1,110]},{"name":"SetGroupDependencyExpression","features":[110]},{"name":"SetGroupDependencyExpressionEx","features":[110]},{"name":"SharedVolumeStateActive","features":[110]},{"name":"SharedVolumeStateActiveRedirected","features":[110]},{"name":"SharedVolumeStateActiveVolumeRedirected","features":[110]},{"name":"SharedVolumeStatePaused","features":[110]},{"name":"SharedVolumeStateUnavailable","features":[110]},{"name":"SrDiskReplicationEligibleAlreadyInReplication","features":[110]},{"name":"SrDiskReplicationEligibleFileSystemNotSupported","features":[110]},{"name":"SrDiskReplicationEligibleInSameSite","features":[110]},{"name":"SrDiskReplicationEligibleInsufficientFreeSpace","features":[110]},{"name":"SrDiskReplicationEligibleNone","features":[110]},{"name":"SrDiskReplicationEligibleNotGpt","features":[110]},{"name":"SrDiskReplicationEligibleNotInSameSite","features":[110]},{"name":"SrDiskReplicationEligibleOffline","features":[110]},{"name":"SrDiskReplicationEligibleOther","features":[110]},{"name":"SrDiskReplicationEligiblePartitionLayoutMismatch","features":[110]},{"name":"SrDiskReplicationEligibleSameAsSpecifiedDisk","features":[110]},{"name":"SrDiskReplicationEligibleYes","features":[110]},{"name":"SrReplicatedDiskTypeDestination","features":[110]},{"name":"SrReplicatedDiskTypeLogDestination","features":[110]},{"name":"SrReplicatedDiskTypeLogNotInParthership","features":[110]},{"name":"SrReplicatedDiskTypeLogSource","features":[110]},{"name":"SrReplicatedDiskTypeNone","features":[110]},{"name":"SrReplicatedDiskTypeNotInParthership","features":[110]},{"name":"SrReplicatedDiskTypeOther","features":[110]},{"name":"SrReplicatedDiskTypeSource","features":[110]},{"name":"USE_CLIENT_ACCESS_NETWORKS_FOR_CSV","features":[110]},{"name":"VM_RESDLL_CONTEXT","features":[110]},{"name":"VmResdllContextLiveMigration","features":[110]},{"name":"VmResdllContextSave","features":[110]},{"name":"VmResdllContextShutdown","features":[110]},{"name":"VmResdllContextShutdownForce","features":[110]},{"name":"VmResdllContextTurnOff","features":[110]},{"name":"VolumeBackupInProgress","features":[110]},{"name":"VolumeBackupNone","features":[110]},{"name":"VolumeRedirectedIOReasonMax","features":[110]},{"name":"VolumeRedirectedIOReasonNoDiskConnectivity","features":[110]},{"name":"VolumeRedirectedIOReasonStorageSpaceNotAttached","features":[110]},{"name":"VolumeRedirectedIOReasonVolumeReplicationEnabled","features":[110]},{"name":"VolumeStateDismounted","features":[110]},{"name":"VolumeStateInMaintenance","features":[110]},{"name":"VolumeStateNoAccess","features":[110]},{"name":"VolumeStateNoDirectIO","features":[110]},{"name":"VolumeStateNoFaults","features":[110]},{"name":"WS2016_RTM_UPGRADE_VERSION","features":[110]},{"name":"WS2016_TP4_UPGRADE_VERSION","features":[110]},{"name":"WS2016_TP5_UPGRADE_VERSION","features":[110]},{"name":"WitnessTagHelper","features":[110]},{"name":"WitnessTagUpdateHelper","features":[110]},{"name":"eResourceStateChangeReasonFailedMove","features":[110]},{"name":"eResourceStateChangeReasonFailover","features":[110]},{"name":"eResourceStateChangeReasonMove","features":[110]},{"name":"eResourceStateChangeReasonRundown","features":[110]},{"name":"eResourceStateChangeReasonShutdown","features":[110]},{"name":"eResourceStateChangeReasonUnknown","features":[110]}],"470":[{"name":"CacheRangeChunkSize","features":[111]},{"name":"CreateRequestQueueExternalIdProperty","features":[111]},{"name":"CreateRequestQueueMax","features":[111]},{"name":"DelegateRequestDelegateUrlProperty","features":[111]},{"name":"DelegateRequestReservedProperty","features":[111]},{"name":"ExParamTypeErrorHeaders","features":[111]},{"name":"ExParamTypeHttp2SettingsLimits","features":[111]},{"name":"ExParamTypeHttp2Window","features":[111]},{"name":"ExParamTypeHttpPerformance","features":[111]},{"name":"ExParamTypeMax","features":[111]},{"name":"ExParamTypeTlsRestrictions","features":[111]},{"name":"ExParamTypeTlsSessionTicketKeys","features":[111]},{"name":"HTTP2_SETTINGS_LIMITS_PARAM","features":[111]},{"name":"HTTP2_WINDOW_SIZE_PARAM","features":[111]},{"name":"HTTPAPI_VERSION","features":[111]},{"name":"HTTP_503_RESPONSE_VERBOSITY","features":[111]},{"name":"HTTP_AUTHENTICATION_HARDENING_LEVELS","features":[111]},{"name":"HTTP_AUTH_ENABLE_BASIC","features":[111]},{"name":"HTTP_AUTH_ENABLE_DIGEST","features":[111]},{"name":"HTTP_AUTH_ENABLE_KERBEROS","features":[111]},{"name":"HTTP_AUTH_ENABLE_NEGOTIATE","features":[111]},{"name":"HTTP_AUTH_ENABLE_NTLM","features":[111]},{"name":"HTTP_AUTH_EX_FLAG_CAPTURE_CREDENTIAL","features":[111]},{"name":"HTTP_AUTH_EX_FLAG_ENABLE_KERBEROS_CREDENTIAL_CACHING","features":[111]},{"name":"HTTP_AUTH_STATUS","features":[111]},{"name":"HTTP_BANDWIDTH_LIMIT_INFO","features":[111]},{"name":"HTTP_BINDING_INFO","features":[1,111]},{"name":"HTTP_BYTE_RANGE","features":[111]},{"name":"HTTP_CACHE_POLICY","features":[111]},{"name":"HTTP_CACHE_POLICY_TYPE","features":[111]},{"name":"HTTP_CHANNEL_BIND_CLIENT_SERVICE","features":[111]},{"name":"HTTP_CHANNEL_BIND_DOTLESS_SERVICE","features":[111]},{"name":"HTTP_CHANNEL_BIND_INFO","features":[111]},{"name":"HTTP_CHANNEL_BIND_NO_SERVICE_NAME_CHECK","features":[111]},{"name":"HTTP_CHANNEL_BIND_PROXY","features":[111]},{"name":"HTTP_CHANNEL_BIND_PROXY_COHOSTING","features":[111]},{"name":"HTTP_CHANNEL_BIND_SECURE_CHANNEL_TOKEN","features":[111]},{"name":"HTTP_CONNECTION_LIMIT_INFO","features":[111]},{"name":"HTTP_COOKED_URL","features":[111]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_CONTROLLER","features":[111]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_DELEGATION","features":[111]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_OPEN_EXISTING","features":[111]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID","features":[111]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_INFO","features":[111]},{"name":"HTTP_DATA_CHUNK","features":[1,111]},{"name":"HTTP_DATA_CHUNK_TYPE","features":[111]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_ID","features":[111]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_INFO","features":[111]},{"name":"HTTP_DEMAND_CBT","features":[111]},{"name":"HTTP_ENABLED_STATE","features":[111]},{"name":"HTTP_ERROR_HEADERS_PARAM","features":[111]},{"name":"HTTP_FEATURE_ID","features":[111]},{"name":"HTTP_FLOWRATE_INFO","features":[111]},{"name":"HTTP_FLUSH_RESPONSE_FLAG_RECURSIVE","features":[111]},{"name":"HTTP_HEADER_ID","features":[111]},{"name":"HTTP_INITIALIZE","features":[111]},{"name":"HTTP_INITIALIZE_CONFIG","features":[111]},{"name":"HTTP_INITIALIZE_SERVER","features":[111]},{"name":"HTTP_KNOWN_HEADER","features":[111]},{"name":"HTTP_LISTEN_ENDPOINT_INFO","features":[1,111]},{"name":"HTTP_LOGGING_FLAG_LOCAL_TIME_ROLLOVER","features":[111]},{"name":"HTTP_LOGGING_FLAG_LOG_ERRORS_ONLY","features":[111]},{"name":"HTTP_LOGGING_FLAG_LOG_SUCCESS_ONLY","features":[111]},{"name":"HTTP_LOGGING_FLAG_USE_UTF8_CONVERSION","features":[111]},{"name":"HTTP_LOGGING_INFO","features":[111,4]},{"name":"HTTP_LOGGING_ROLLOVER_TYPE","features":[111]},{"name":"HTTP_LOGGING_TYPE","features":[111]},{"name":"HTTP_LOG_DATA","features":[111]},{"name":"HTTP_LOG_DATA_TYPE","features":[111]},{"name":"HTTP_LOG_FIELDS_DATA","features":[111]},{"name":"HTTP_LOG_FIELD_BYTES_RECV","features":[111]},{"name":"HTTP_LOG_FIELD_BYTES_SENT","features":[111]},{"name":"HTTP_LOG_FIELD_CLIENT_IP","features":[111]},{"name":"HTTP_LOG_FIELD_CLIENT_PORT","features":[111]},{"name":"HTTP_LOG_FIELD_COMPUTER_NAME","features":[111]},{"name":"HTTP_LOG_FIELD_COOKIE","features":[111]},{"name":"HTTP_LOG_FIELD_CORRELATION_ID","features":[111]},{"name":"HTTP_LOG_FIELD_DATE","features":[111]},{"name":"HTTP_LOG_FIELD_FAULT_CODE","features":[111]},{"name":"HTTP_LOG_FIELD_HOST","features":[111]},{"name":"HTTP_LOG_FIELD_METHOD","features":[111]},{"name":"HTTP_LOG_FIELD_QUEUE_NAME","features":[111]},{"name":"HTTP_LOG_FIELD_REASON","features":[111]},{"name":"HTTP_LOG_FIELD_REFERER","features":[111]},{"name":"HTTP_LOG_FIELD_SERVER_IP","features":[111]},{"name":"HTTP_LOG_FIELD_SERVER_PORT","features":[111]},{"name":"HTTP_LOG_FIELD_SITE_ID","features":[111]},{"name":"HTTP_LOG_FIELD_SITE_NAME","features":[111]},{"name":"HTTP_LOG_FIELD_STATUS","features":[111]},{"name":"HTTP_LOG_FIELD_STREAM_ID","features":[111]},{"name":"HTTP_LOG_FIELD_STREAM_ID_EX","features":[111]},{"name":"HTTP_LOG_FIELD_SUB_STATUS","features":[111]},{"name":"HTTP_LOG_FIELD_TIME","features":[111]},{"name":"HTTP_LOG_FIELD_TIME_TAKEN","features":[111]},{"name":"HTTP_LOG_FIELD_TRANSPORT_TYPE","features":[111]},{"name":"HTTP_LOG_FIELD_URI","features":[111]},{"name":"HTTP_LOG_FIELD_URI_QUERY","features":[111]},{"name":"HTTP_LOG_FIELD_URI_STEM","features":[111]},{"name":"HTTP_LOG_FIELD_USER_AGENT","features":[111]},{"name":"HTTP_LOG_FIELD_USER_NAME","features":[111]},{"name":"HTTP_LOG_FIELD_VERSION","features":[111]},{"name":"HTTP_LOG_FIELD_WIN32_STATUS","features":[111]},{"name":"HTTP_MAX_SERVER_QUEUE_LENGTH","features":[111]},{"name":"HTTP_MIN_SERVER_QUEUE_LENGTH","features":[111]},{"name":"HTTP_MULTIPLE_KNOWN_HEADERS","features":[111]},{"name":"HTTP_PERFORMANCE_PARAM","features":[111]},{"name":"HTTP_PERFORMANCE_PARAM_TYPE","features":[111]},{"name":"HTTP_PROPERTY_FLAGS","features":[111]},{"name":"HTTP_PROTECTION_LEVEL_INFO","features":[111]},{"name":"HTTP_PROTECTION_LEVEL_TYPE","features":[111]},{"name":"HTTP_QOS_SETTING_INFO","features":[111]},{"name":"HTTP_QOS_SETTING_TYPE","features":[111]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_QUIC","features":[111]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_TCP","features":[111]},{"name":"HTTP_QUIC_API_TIMINGS","features":[111]},{"name":"HTTP_QUIC_CONNECTION_API_TIMINGS","features":[111]},{"name":"HTTP_QUIC_STREAM_API_TIMINGS","features":[111]},{"name":"HTTP_QUIC_STREAM_REQUEST_STATS","features":[111]},{"name":"HTTP_RECEIVE_FULL_CHAIN","features":[111]},{"name":"HTTP_RECEIVE_HTTP_REQUEST_FLAGS","features":[111]},{"name":"HTTP_RECEIVE_REQUEST_ENTITY_BODY_FLAG_FILL_BUFFER","features":[111]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_COPY_BODY","features":[111]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_FLUSH_BODY","features":[111]},{"name":"HTTP_RECEIVE_SECURE_CHANNEL_TOKEN","features":[111]},{"name":"HTTP_REQUEST_AUTH_FLAG_TOKEN_FOR_CACHED_CRED","features":[111]},{"name":"HTTP_REQUEST_AUTH_INFO","features":[1,111]},{"name":"HTTP_REQUEST_AUTH_TYPE","features":[111]},{"name":"HTTP_REQUEST_CHANNEL_BIND_STATUS","features":[111]},{"name":"HTTP_REQUEST_FLAG_HTTP2","features":[111]},{"name":"HTTP_REQUEST_FLAG_HTTP3","features":[111]},{"name":"HTTP_REQUEST_FLAG_IP_ROUTED","features":[111]},{"name":"HTTP_REQUEST_FLAG_MORE_ENTITY_BODY_EXISTS","features":[111]},{"name":"HTTP_REQUEST_HEADERS","features":[111]},{"name":"HTTP_REQUEST_INFO","features":[111]},{"name":"HTTP_REQUEST_INFO_TYPE","features":[111]},{"name":"HTTP_REQUEST_PROPERTY","features":[111]},{"name":"HTTP_REQUEST_PROPERTY_SNI","features":[111]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_NO_SNI","features":[111]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_SNI_USED","features":[111]},{"name":"HTTP_REQUEST_PROPERTY_SNI_HOST_MAX_LENGTH","features":[111]},{"name":"HTTP_REQUEST_PROPERTY_STREAM_ERROR","features":[111]},{"name":"HTTP_REQUEST_SIZING_INFO","features":[111]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_FIRST_REQUEST","features":[111]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TCP_FAST_OPEN","features":[111]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_FALSE_START","features":[111]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_SESSION_RESUMPTION","features":[111]},{"name":"HTTP_REQUEST_SIZING_TYPE","features":[111]},{"name":"HTTP_REQUEST_TIMING_INFO","features":[111]},{"name":"HTTP_REQUEST_TIMING_TYPE","features":[111]},{"name":"HTTP_REQUEST_TOKEN_BINDING_INFO","features":[111]},{"name":"HTTP_REQUEST_V1","features":[1,111,15]},{"name":"HTTP_REQUEST_V2","features":[1,111,15]},{"name":"HTTP_RESPONSE_FLAG_MORE_ENTITY_BODY_EXISTS","features":[111]},{"name":"HTTP_RESPONSE_FLAG_MULTIPLE_ENCODINGS_AVAILABLE","features":[111]},{"name":"HTTP_RESPONSE_HEADERS","features":[111]},{"name":"HTTP_RESPONSE_INFO","features":[111]},{"name":"HTTP_RESPONSE_INFO_FLAGS_PRESERVE_ORDER","features":[111]},{"name":"HTTP_RESPONSE_INFO_TYPE","features":[111]},{"name":"HTTP_RESPONSE_V1","features":[1,111]},{"name":"HTTP_RESPONSE_V2","features":[1,111]},{"name":"HTTP_SCHEME","features":[111]},{"name":"HTTP_SEND_RESPONSE_FLAG_BUFFER_DATA","features":[111]},{"name":"HTTP_SEND_RESPONSE_FLAG_DISCONNECT","features":[111]},{"name":"HTTP_SEND_RESPONSE_FLAG_ENABLE_NAGLING","features":[111]},{"name":"HTTP_SEND_RESPONSE_FLAG_GOAWAY","features":[111]},{"name":"HTTP_SEND_RESPONSE_FLAG_MORE_DATA","features":[111]},{"name":"HTTP_SEND_RESPONSE_FLAG_OPAQUE","features":[111]},{"name":"HTTP_SEND_RESPONSE_FLAG_PROCESS_RANGES","features":[111]},{"name":"HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS","features":[111]},{"name":"HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS","features":[111]},{"name":"HTTP_SERVER_AUTHENTICATION_INFO","features":[1,111]},{"name":"HTTP_SERVER_PROPERTY","features":[111]},{"name":"HTTP_SERVICE_BINDING_A","features":[111]},{"name":"HTTP_SERVICE_BINDING_BASE","features":[111]},{"name":"HTTP_SERVICE_BINDING_TYPE","features":[111]},{"name":"HTTP_SERVICE_BINDING_W","features":[111]},{"name":"HTTP_SERVICE_CONFIG_CACHE_KEY","features":[111]},{"name":"HTTP_SERVICE_CONFIG_CACHE_SET","features":[111]},{"name":"HTTP_SERVICE_CONFIG_ID","features":[111]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_QUERY","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_QUERY_TYPE","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SETTING_KEY","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SETTING_SET","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_KEY","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY_EX","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET_EX","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_HTTP2","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_LEGACY_TLS","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_OCSP_STAPLING","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_QUIC","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_SESSION_ID","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS12","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS13","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_CLIENT_CORRELATION","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_SESSION_TICKET","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_TOKEN_BINDING","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_LOG_EXTENDED_EVENTS","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NEGOTIATE_CLIENT_CERT","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NO_RAW_FILTER","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_REJECT","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_USE_DS_MAPPER","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY_EX","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM_EX","features":[111]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY_EX","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET_EX","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_KEY","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY_EX","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET_EX","features":[111,15]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_KEY","features":[111]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_SET","features":[111]},{"name":"HTTP_SERVICE_CONFIG_URLACL_KEY","features":[111]},{"name":"HTTP_SERVICE_CONFIG_URLACL_PARAM","features":[111]},{"name":"HTTP_SERVICE_CONFIG_URLACL_QUERY","features":[111]},{"name":"HTTP_SERVICE_CONFIG_URLACL_SET","features":[111]},{"name":"HTTP_SSL_CLIENT_CERT_INFO","features":[1,111]},{"name":"HTTP_SSL_INFO","features":[1,111]},{"name":"HTTP_SSL_PROTOCOL_INFO","features":[111]},{"name":"HTTP_SSL_SERVICE_CONFIG_EX_PARAM_TYPE","features":[111]},{"name":"HTTP_STATE_INFO","features":[111]},{"name":"HTTP_TIMEOUT_LIMIT_INFO","features":[111]},{"name":"HTTP_TLS_RESTRICTIONS_PARAM","features":[111]},{"name":"HTTP_TLS_SESSION_TICKET_KEYS_PARAM","features":[111]},{"name":"HTTP_TRANSPORT_ADDRESS","features":[111,15]},{"name":"HTTP_UNKNOWN_HEADER","features":[111]},{"name":"HTTP_URL_FLAG_REMOVE_ALL","features":[111]},{"name":"HTTP_VERB","features":[111]},{"name":"HTTP_VERSION","features":[111]},{"name":"HTTP_VERSION","features":[111]},{"name":"HTTP_WSK_API_TIMINGS","features":[111]},{"name":"HeaderWaitTimeout","features":[111]},{"name":"Http503ResponseVerbosityBasic","features":[111]},{"name":"Http503ResponseVerbosityFull","features":[111]},{"name":"Http503ResponseVerbosityLimited","features":[111]},{"name":"HttpAddFragmentToCache","features":[1,111,6]},{"name":"HttpAddUrl","features":[1,111]},{"name":"HttpAddUrlToUrlGroup","features":[111]},{"name":"HttpAuthStatusFailure","features":[111]},{"name":"HttpAuthStatusNotAuthenticated","features":[111]},{"name":"HttpAuthStatusSuccess","features":[111]},{"name":"HttpAuthenticationHardeningLegacy","features":[111]},{"name":"HttpAuthenticationHardeningMedium","features":[111]},{"name":"HttpAuthenticationHardeningStrict","features":[111]},{"name":"HttpCachePolicyMaximum","features":[111]},{"name":"HttpCachePolicyNocache","features":[111]},{"name":"HttpCachePolicyTimeToLive","features":[111]},{"name":"HttpCachePolicyUserInvalidates","features":[111]},{"name":"HttpCancelHttpRequest","features":[1,111,6]},{"name":"HttpCloseRequestQueue","features":[1,111]},{"name":"HttpCloseServerSession","features":[111]},{"name":"HttpCloseUrlGroup","features":[111]},{"name":"HttpCreateHttpHandle","features":[1,111]},{"name":"HttpCreateRequestQueue","features":[1,111,4]},{"name":"HttpCreateServerSession","features":[111]},{"name":"HttpCreateUrlGroup","features":[111]},{"name":"HttpDataChunkFromFileHandle","features":[111]},{"name":"HttpDataChunkFromFragmentCache","features":[111]},{"name":"HttpDataChunkFromFragmentCacheEx","features":[111]},{"name":"HttpDataChunkFromMemory","features":[111]},{"name":"HttpDataChunkMaximum","features":[111]},{"name":"HttpDataChunkTrailers","features":[111]},{"name":"HttpDeclarePush","features":[1,111]},{"name":"HttpDelegateRequestEx","features":[1,111]},{"name":"HttpDeleteServiceConfiguration","features":[1,111,6]},{"name":"HttpEnabledStateActive","features":[111]},{"name":"HttpEnabledStateInactive","features":[111]},{"name":"HttpFeatureApiTimings","features":[111]},{"name":"HttpFeatureDelegateEx","features":[111]},{"name":"HttpFeatureHttp3","features":[111]},{"name":"HttpFeatureLast","features":[111]},{"name":"HttpFeatureResponseTrailers","features":[111]},{"name":"HttpFeatureUnknown","features":[111]},{"name":"HttpFeaturemax","features":[111]},{"name":"HttpFindUrlGroupId","features":[1,111]},{"name":"HttpFlushResponseCache","features":[1,111,6]},{"name":"HttpGetExtension","features":[111]},{"name":"HttpHeaderAccept","features":[111]},{"name":"HttpHeaderAcceptCharset","features":[111]},{"name":"HttpHeaderAcceptEncoding","features":[111]},{"name":"HttpHeaderAcceptLanguage","features":[111]},{"name":"HttpHeaderAcceptRanges","features":[111]},{"name":"HttpHeaderAge","features":[111]},{"name":"HttpHeaderAllow","features":[111]},{"name":"HttpHeaderAuthorization","features":[111]},{"name":"HttpHeaderCacheControl","features":[111]},{"name":"HttpHeaderConnection","features":[111]},{"name":"HttpHeaderContentEncoding","features":[111]},{"name":"HttpHeaderContentLanguage","features":[111]},{"name":"HttpHeaderContentLength","features":[111]},{"name":"HttpHeaderContentLocation","features":[111]},{"name":"HttpHeaderContentMd5","features":[111]},{"name":"HttpHeaderContentRange","features":[111]},{"name":"HttpHeaderContentType","features":[111]},{"name":"HttpHeaderCookie","features":[111]},{"name":"HttpHeaderDate","features":[111]},{"name":"HttpHeaderEtag","features":[111]},{"name":"HttpHeaderExpect","features":[111]},{"name":"HttpHeaderExpires","features":[111]},{"name":"HttpHeaderFrom","features":[111]},{"name":"HttpHeaderHost","features":[111]},{"name":"HttpHeaderIfMatch","features":[111]},{"name":"HttpHeaderIfModifiedSince","features":[111]},{"name":"HttpHeaderIfNoneMatch","features":[111]},{"name":"HttpHeaderIfRange","features":[111]},{"name":"HttpHeaderIfUnmodifiedSince","features":[111]},{"name":"HttpHeaderKeepAlive","features":[111]},{"name":"HttpHeaderLastModified","features":[111]},{"name":"HttpHeaderLocation","features":[111]},{"name":"HttpHeaderMaxForwards","features":[111]},{"name":"HttpHeaderMaximum","features":[111]},{"name":"HttpHeaderPragma","features":[111]},{"name":"HttpHeaderProxyAuthenticate","features":[111]},{"name":"HttpHeaderProxyAuthorization","features":[111]},{"name":"HttpHeaderRange","features":[111]},{"name":"HttpHeaderReferer","features":[111]},{"name":"HttpHeaderRequestMaximum","features":[111]},{"name":"HttpHeaderResponseMaximum","features":[111]},{"name":"HttpHeaderRetryAfter","features":[111]},{"name":"HttpHeaderServer","features":[111]},{"name":"HttpHeaderSetCookie","features":[111]},{"name":"HttpHeaderTe","features":[111]},{"name":"HttpHeaderTrailer","features":[111]},{"name":"HttpHeaderTransferEncoding","features":[111]},{"name":"HttpHeaderTranslate","features":[111]},{"name":"HttpHeaderUpgrade","features":[111]},{"name":"HttpHeaderUserAgent","features":[111]},{"name":"HttpHeaderVary","features":[111]},{"name":"HttpHeaderVia","features":[111]},{"name":"HttpHeaderWarning","features":[111]},{"name":"HttpHeaderWwwAuthenticate","features":[111]},{"name":"HttpInitialize","features":[111]},{"name":"HttpIsFeatureSupported","features":[1,111]},{"name":"HttpLogDataTypeFields","features":[111]},{"name":"HttpLoggingRolloverDaily","features":[111]},{"name":"HttpLoggingRolloverHourly","features":[111]},{"name":"HttpLoggingRolloverMonthly","features":[111]},{"name":"HttpLoggingRolloverSize","features":[111]},{"name":"HttpLoggingRolloverWeekly","features":[111]},{"name":"HttpLoggingTypeIIS","features":[111]},{"name":"HttpLoggingTypeNCSA","features":[111]},{"name":"HttpLoggingTypeRaw","features":[111]},{"name":"HttpLoggingTypeW3C","features":[111]},{"name":"HttpNone","features":[111]},{"name":"HttpPrepareUrl","features":[111]},{"name":"HttpProtectionLevelEdgeRestricted","features":[111]},{"name":"HttpProtectionLevelRestricted","features":[111]},{"name":"HttpProtectionLevelUnrestricted","features":[111]},{"name":"HttpQosSettingTypeBandwidth","features":[111]},{"name":"HttpQosSettingTypeConnectionLimit","features":[111]},{"name":"HttpQosSettingTypeFlowRate","features":[111]},{"name":"HttpQueryRequestQueueProperty","features":[1,111]},{"name":"HttpQueryServerSessionProperty","features":[111]},{"name":"HttpQueryServiceConfiguration","features":[1,111,6]},{"name":"HttpQueryUrlGroupProperty","features":[111]},{"name":"HttpReadFragmentFromCache","features":[1,111,6]},{"name":"HttpReceiveClientCertificate","features":[1,111,6]},{"name":"HttpReceiveHttpRequest","features":[1,111,15,6]},{"name":"HttpReceiveRequestEntityBody","features":[1,111,6]},{"name":"HttpRemoveUrl","features":[1,111]},{"name":"HttpRemoveUrlFromUrlGroup","features":[111]},{"name":"HttpRequestAuthTypeBasic","features":[111]},{"name":"HttpRequestAuthTypeDigest","features":[111]},{"name":"HttpRequestAuthTypeKerberos","features":[111]},{"name":"HttpRequestAuthTypeNTLM","features":[111]},{"name":"HttpRequestAuthTypeNegotiate","features":[111]},{"name":"HttpRequestAuthTypeNone","features":[111]},{"name":"HttpRequestInfoTypeAuth","features":[111]},{"name":"HttpRequestInfoTypeChannelBind","features":[111]},{"name":"HttpRequestInfoTypeQuicStats","features":[111]},{"name":"HttpRequestInfoTypeRequestSizing","features":[111]},{"name":"HttpRequestInfoTypeRequestTiming","features":[111]},{"name":"HttpRequestInfoTypeSslProtocol","features":[111]},{"name":"HttpRequestInfoTypeSslTokenBinding","features":[111]},{"name":"HttpRequestInfoTypeSslTokenBindingDraft","features":[111]},{"name":"HttpRequestInfoTypeTcpInfoV0","features":[111]},{"name":"HttpRequestInfoTypeTcpInfoV1","features":[111]},{"name":"HttpRequestPropertyIsb","features":[111]},{"name":"HttpRequestPropertyQuicApiTimings","features":[111]},{"name":"HttpRequestPropertyQuicStats","features":[111]},{"name":"HttpRequestPropertySni","features":[111]},{"name":"HttpRequestPropertyStreamError","features":[111]},{"name":"HttpRequestPropertyTcpInfoV0","features":[111]},{"name":"HttpRequestPropertyTcpInfoV1","features":[111]},{"name":"HttpRequestPropertyWskApiTimings","features":[111]},{"name":"HttpRequestSizingTypeHeaders","features":[111]},{"name":"HttpRequestSizingTypeMax","features":[111]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ClientData","features":[111]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ServerData","features":[111]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ClientData","features":[111]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ServerData","features":[111]},{"name":"HttpRequestTimingTypeConnectionStart","features":[111]},{"name":"HttpRequestTimingTypeDataStart","features":[111]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeEnd","features":[111]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeStart","features":[111]},{"name":"HttpRequestTimingTypeHttp2StreamStart","features":[111]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeEnd","features":[111]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeStart","features":[111]},{"name":"HttpRequestTimingTypeHttp3StreamStart","features":[111]},{"name":"HttpRequestTimingTypeMax","features":[111]},{"name":"HttpRequestTimingTypeRequestDeliveredForDelegation","features":[111]},{"name":"HttpRequestTimingTypeRequestDeliveredForIO","features":[111]},{"name":"HttpRequestTimingTypeRequestDeliveredForInspection","features":[111]},{"name":"HttpRequestTimingTypeRequestHeaderParseEnd","features":[111]},{"name":"HttpRequestTimingTypeRequestHeaderParseStart","features":[111]},{"name":"HttpRequestTimingTypeRequestQueuedForDelegation","features":[111]},{"name":"HttpRequestTimingTypeRequestQueuedForIO","features":[111]},{"name":"HttpRequestTimingTypeRequestQueuedForInspection","features":[111]},{"name":"HttpRequestTimingTypeRequestReturnedAfterDelegation","features":[111]},{"name":"HttpRequestTimingTypeRequestReturnedAfterInspection","features":[111]},{"name":"HttpRequestTimingTypeRequestRoutingEnd","features":[111]},{"name":"HttpRequestTimingTypeRequestRoutingStart","features":[111]},{"name":"HttpRequestTimingTypeTlsAttributesQueryEnd","features":[111]},{"name":"HttpRequestTimingTypeTlsAttributesQueryStart","features":[111]},{"name":"HttpRequestTimingTypeTlsCertificateLoadEnd","features":[111]},{"name":"HttpRequestTimingTypeTlsCertificateLoadStart","features":[111]},{"name":"HttpRequestTimingTypeTlsClientCertQueryEnd","features":[111]},{"name":"HttpRequestTimingTypeTlsClientCertQueryStart","features":[111]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1End","features":[111]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1Start","features":[111]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2End","features":[111]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2Start","features":[111]},{"name":"HttpResponseInfoTypeAuthenticationProperty","features":[111]},{"name":"HttpResponseInfoTypeChannelBind","features":[111]},{"name":"HttpResponseInfoTypeMultipleKnownHeaders","features":[111]},{"name":"HttpResponseInfoTypeQoSProperty","features":[111]},{"name":"HttpSchemeHttp","features":[111]},{"name":"HttpSchemeHttps","features":[111]},{"name":"HttpSchemeMaximum","features":[111]},{"name":"HttpSendHttpResponse","features":[1,111,6]},{"name":"HttpSendResponseEntityBody","features":[1,111,6]},{"name":"HttpServer503VerbosityProperty","features":[111]},{"name":"HttpServerAuthenticationProperty","features":[111]},{"name":"HttpServerBindingProperty","features":[111]},{"name":"HttpServerChannelBindProperty","features":[111]},{"name":"HttpServerDelegationProperty","features":[111]},{"name":"HttpServerExtendedAuthenticationProperty","features":[111]},{"name":"HttpServerListenEndpointProperty","features":[111]},{"name":"HttpServerLoggingProperty","features":[111]},{"name":"HttpServerProtectionLevelProperty","features":[111]},{"name":"HttpServerQosProperty","features":[111]},{"name":"HttpServerQueueLengthProperty","features":[111]},{"name":"HttpServerStateProperty","features":[111]},{"name":"HttpServerTimeoutsProperty","features":[111]},{"name":"HttpServiceBindingTypeA","features":[111]},{"name":"HttpServiceBindingTypeNone","features":[111]},{"name":"HttpServiceBindingTypeW","features":[111]},{"name":"HttpServiceConfigCache","features":[111]},{"name":"HttpServiceConfigIPListenList","features":[111]},{"name":"HttpServiceConfigMax","features":[111]},{"name":"HttpServiceConfigQueryExact","features":[111]},{"name":"HttpServiceConfigQueryMax","features":[111]},{"name":"HttpServiceConfigQueryNext","features":[111]},{"name":"HttpServiceConfigSSLCertInfo","features":[111]},{"name":"HttpServiceConfigSetting","features":[111]},{"name":"HttpServiceConfigSslCcsCertInfo","features":[111]},{"name":"HttpServiceConfigSslCcsCertInfoEx","features":[111]},{"name":"HttpServiceConfigSslCertInfoEx","features":[111]},{"name":"HttpServiceConfigSslScopedCcsCertInfo","features":[111]},{"name":"HttpServiceConfigSslScopedCcsCertInfoEx","features":[111]},{"name":"HttpServiceConfigSslSniCertInfo","features":[111]},{"name":"HttpServiceConfigSslSniCertInfoEx","features":[111]},{"name":"HttpServiceConfigTimeout","features":[111]},{"name":"HttpServiceConfigUrlAclInfo","features":[111]},{"name":"HttpSetRequestProperty","features":[1,111,6]},{"name":"HttpSetRequestQueueProperty","features":[1,111]},{"name":"HttpSetServerSessionProperty","features":[111]},{"name":"HttpSetServiceConfiguration","features":[1,111,6]},{"name":"HttpSetUrlGroupProperty","features":[111]},{"name":"HttpShutdownRequestQueue","features":[1,111]},{"name":"HttpTerminate","features":[111]},{"name":"HttpTlsThrottle","features":[111]},{"name":"HttpUpdateServiceConfiguration","features":[1,111,6]},{"name":"HttpVerbCONNECT","features":[111]},{"name":"HttpVerbCOPY","features":[111]},{"name":"HttpVerbDELETE","features":[111]},{"name":"HttpVerbGET","features":[111]},{"name":"HttpVerbHEAD","features":[111]},{"name":"HttpVerbInvalid","features":[111]},{"name":"HttpVerbLOCK","features":[111]},{"name":"HttpVerbMKCOL","features":[111]},{"name":"HttpVerbMOVE","features":[111]},{"name":"HttpVerbMaximum","features":[111]},{"name":"HttpVerbOPTIONS","features":[111]},{"name":"HttpVerbPOST","features":[111]},{"name":"HttpVerbPROPFIND","features":[111]},{"name":"HttpVerbPROPPATCH","features":[111]},{"name":"HttpVerbPUT","features":[111]},{"name":"HttpVerbSEARCH","features":[111]},{"name":"HttpVerbTRACE","features":[111]},{"name":"HttpVerbTRACK","features":[111]},{"name":"HttpVerbUNLOCK","features":[111]},{"name":"HttpVerbUnknown","features":[111]},{"name":"HttpVerbUnparsed","features":[111]},{"name":"HttpWaitForDemandStart","features":[1,111,6]},{"name":"HttpWaitForDisconnect","features":[1,111,6]},{"name":"HttpWaitForDisconnectEx","features":[1,111,6]},{"name":"IdleConnectionTimeout","features":[111]},{"name":"MaxCacheResponseSize","features":[111]},{"name":"PerformanceParamAggressiveICW","features":[111]},{"name":"PerformanceParamDecryptOnSspiThread","features":[111]},{"name":"PerformanceParamMax","features":[111]},{"name":"PerformanceParamMaxConcurrentClientStreams","features":[111]},{"name":"PerformanceParamMaxReceiveBufferSize","features":[111]},{"name":"PerformanceParamMaxSendBufferSize","features":[111]},{"name":"PerformanceParamSendBufferingFlags","features":[111]}],"471":[{"name":"BerElement","features":[112]},{"name":"DBGPRINT","features":[112]},{"name":"DEREFERENCECONNECTION","features":[112]},{"name":"LAPI_MAJOR_VER1","features":[112]},{"name":"LAPI_MINOR_VER1","features":[112]},{"name":"LBER_DEFAULT","features":[112]},{"name":"LBER_ERROR","features":[112]},{"name":"LBER_TRANSLATE_STRINGS","features":[112]},{"name":"LBER_USE_DER","features":[112]},{"name":"LBER_USE_INDEFINITE_LEN","features":[112]},{"name":"LDAP","features":[112]},{"name":"LDAPAPIFeatureInfoA","features":[112]},{"name":"LDAPAPIFeatureInfoW","features":[112]},{"name":"LDAPAPIInfoA","features":[112]},{"name":"LDAPAPIInfoW","features":[112]},{"name":"LDAPControlA","features":[1,112]},{"name":"LDAPControlW","features":[1,112]},{"name":"LDAPMessage","features":[1,112]},{"name":"LDAPModA","features":[112]},{"name":"LDAPModW","features":[112]},{"name":"LDAPSortKeyA","features":[1,112]},{"name":"LDAPSortKeyW","features":[1,112]},{"name":"LDAPVLVInfo","features":[112]},{"name":"LDAP_ABANDON_CMD","features":[112]},{"name":"LDAP_ADD_CMD","features":[112]},{"name":"LDAP_ADMIN_LIMIT_EXCEEDED","features":[112]},{"name":"LDAP_AFFECTS_MULTIPLE_DSAS","features":[112]},{"name":"LDAP_ALIAS_DEREF_PROBLEM","features":[112]},{"name":"LDAP_ALIAS_PROBLEM","features":[112]},{"name":"LDAP_ALREADY_EXISTS","features":[112]},{"name":"LDAP_API_FEATURE_VIRTUAL_LIST_VIEW","features":[112]},{"name":"LDAP_API_INFO_VERSION","features":[112]},{"name":"LDAP_API_VERSION","features":[112]},{"name":"LDAP_ATTRIBUTE_OR_VALUE_EXISTS","features":[112]},{"name":"LDAP_AUTH_METHOD_NOT_SUPPORTED","features":[112]},{"name":"LDAP_AUTH_OTHERKIND","features":[112]},{"name":"LDAP_AUTH_SASL","features":[112]},{"name":"LDAP_AUTH_SIMPLE","features":[112]},{"name":"LDAP_AUTH_UNKNOWN","features":[112]},{"name":"LDAP_BERVAL","features":[112]},{"name":"LDAP_BIND_CMD","features":[112]},{"name":"LDAP_BUSY","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID_W","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID","features":[112]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID_W","features":[112]},{"name":"LDAP_CHASE_EXTERNAL_REFERRALS","features":[112]},{"name":"LDAP_CHASE_SUBORDINATE_REFERRALS","features":[112]},{"name":"LDAP_CLIENT_LOOP","features":[112]},{"name":"LDAP_COMPARE_CMD","features":[112]},{"name":"LDAP_COMPARE_FALSE","features":[112]},{"name":"LDAP_COMPARE_TRUE","features":[112]},{"name":"LDAP_CONFIDENTIALITY_REQUIRED","features":[112]},{"name":"LDAP_CONNECT_ERROR","features":[112]},{"name":"LDAP_CONSTRAINT_VIOLATION","features":[112]},{"name":"LDAP_CONTROL_NOT_FOUND","features":[112]},{"name":"LDAP_CONTROL_REFERRALS","features":[112]},{"name":"LDAP_CONTROL_REFERRALS_W","features":[112]},{"name":"LDAP_CONTROL_VLVREQUEST","features":[112]},{"name":"LDAP_CONTROL_VLVREQUEST_W","features":[112]},{"name":"LDAP_CONTROL_VLVRESPONSE","features":[112]},{"name":"LDAP_CONTROL_VLVRESPONSE_W","features":[112]},{"name":"LDAP_DECODING_ERROR","features":[112]},{"name":"LDAP_DELETE_CMD","features":[112]},{"name":"LDAP_DEREF_ALWAYS","features":[112]},{"name":"LDAP_DEREF_FINDING","features":[112]},{"name":"LDAP_DEREF_NEVER","features":[112]},{"name":"LDAP_DEREF_SEARCHING","features":[112]},{"name":"LDAP_DIRSYNC_ANCESTORS_FIRST_ORDER","features":[112]},{"name":"LDAP_DIRSYNC_INCREMENTAL_VALUES","features":[112]},{"name":"LDAP_DIRSYNC_OBJECT_SECURITY","features":[112]},{"name":"LDAP_DIRSYNC_PUBLIC_DATA_ONLY","features":[112]},{"name":"LDAP_DIRSYNC_ROPAS_DATA_ONLY","features":[112]},{"name":"LDAP_ENCODING_ERROR","features":[112]},{"name":"LDAP_EXTENDED_CMD","features":[112]},{"name":"LDAP_FEATURE_INFO_VERSION","features":[112]},{"name":"LDAP_FILTER_AND","features":[112]},{"name":"LDAP_FILTER_APPROX","features":[112]},{"name":"LDAP_FILTER_EQUALITY","features":[112]},{"name":"LDAP_FILTER_ERROR","features":[112]},{"name":"LDAP_FILTER_EXTENSIBLE","features":[112]},{"name":"LDAP_FILTER_GE","features":[112]},{"name":"LDAP_FILTER_LE","features":[112]},{"name":"LDAP_FILTER_NOT","features":[112]},{"name":"LDAP_FILTER_OR","features":[112]},{"name":"LDAP_FILTER_PRESENT","features":[112]},{"name":"LDAP_FILTER_SUBSTRINGS","features":[112]},{"name":"LDAP_GC_PORT","features":[112]},{"name":"LDAP_INAPPROPRIATE_AUTH","features":[112]},{"name":"LDAP_INAPPROPRIATE_MATCHING","features":[112]},{"name":"LDAP_INSUFFICIENT_RIGHTS","features":[112]},{"name":"LDAP_INVALID_CMD","features":[112]},{"name":"LDAP_INVALID_CREDENTIALS","features":[112]},{"name":"LDAP_INVALID_DN_SYNTAX","features":[112]},{"name":"LDAP_INVALID_RES","features":[112]},{"name":"LDAP_INVALID_SYNTAX","features":[112]},{"name":"LDAP_IS_LEAF","features":[112]},{"name":"LDAP_LOCAL_ERROR","features":[112]},{"name":"LDAP_LOOP_DETECT","features":[112]},{"name":"LDAP_MATCHING_RULE_BIT_AND","features":[112]},{"name":"LDAP_MATCHING_RULE_BIT_AND_W","features":[112]},{"name":"LDAP_MATCHING_RULE_BIT_OR","features":[112]},{"name":"LDAP_MATCHING_RULE_BIT_OR_W","features":[112]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX","features":[112]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX_W","features":[112]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION","features":[112]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION_W","features":[112]},{"name":"LDAP_MODIFY_CMD","features":[112]},{"name":"LDAP_MODRDN_CMD","features":[112]},{"name":"LDAP_MOD_ADD","features":[112]},{"name":"LDAP_MOD_BVALUES","features":[112]},{"name":"LDAP_MOD_DELETE","features":[112]},{"name":"LDAP_MOD_REPLACE","features":[112]},{"name":"LDAP_MORE_RESULTS_TO_RETURN","features":[112]},{"name":"LDAP_MSG_ALL","features":[112]},{"name":"LDAP_MSG_ONE","features":[112]},{"name":"LDAP_MSG_RECEIVED","features":[112]},{"name":"LDAP_NAMING_VIOLATION","features":[112]},{"name":"LDAP_NOT_ALLOWED_ON_NONLEAF","features":[112]},{"name":"LDAP_NOT_ALLOWED_ON_RDN","features":[112]},{"name":"LDAP_NOT_SUPPORTED","features":[112]},{"name":"LDAP_NO_LIMIT","features":[112]},{"name":"LDAP_NO_MEMORY","features":[112]},{"name":"LDAP_NO_OBJECT_CLASS_MODS","features":[112]},{"name":"LDAP_NO_RESULTS_RETURNED","features":[112]},{"name":"LDAP_NO_SUCH_ATTRIBUTE","features":[112]},{"name":"LDAP_NO_SUCH_OBJECT","features":[112]},{"name":"LDAP_OBJECT_CLASS_VIOLATION","features":[112]},{"name":"LDAP_OFFSET_RANGE_ERROR","features":[112]},{"name":"LDAP_OPATT_ABANDON_REPL","features":[112]},{"name":"LDAP_OPATT_ABANDON_REPL_W","features":[112]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER","features":[112]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER_W","features":[112]},{"name":"LDAP_OPATT_BECOME_PDC","features":[112]},{"name":"LDAP_OPATT_BECOME_PDC_W","features":[112]},{"name":"LDAP_OPATT_BECOME_RID_MASTER","features":[112]},{"name":"LDAP_OPATT_BECOME_RID_MASTER_W","features":[112]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER","features":[112]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER_W","features":[112]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT","features":[112]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT_W","features":[112]},{"name":"LDAP_OPATT_CURRENT_TIME","features":[112]},{"name":"LDAP_OPATT_CURRENT_TIME_W","features":[112]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT","features":[112]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT_W","features":[112]},{"name":"LDAP_OPATT_DNS_HOST_NAME","features":[112]},{"name":"LDAP_OPATT_DNS_HOST_NAME_W","features":[112]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION","features":[112]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION_W","features":[112]},{"name":"LDAP_OPATT_DS_SERVICE_NAME","features":[112]},{"name":"LDAP_OPATT_DS_SERVICE_NAME_W","features":[112]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE","features":[112]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE_W","features":[112]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN","features":[112]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN_W","features":[112]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL","features":[112]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL_W","features":[112]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME","features":[112]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME_W","features":[112]},{"name":"LDAP_OPATT_NAMING_CONTEXTS","features":[112]},{"name":"LDAP_OPATT_NAMING_CONTEXTS_W","features":[112]},{"name":"LDAP_OPATT_RECALC_HIERARCHY","features":[112]},{"name":"LDAP_OPATT_RECALC_HIERARCHY_W","features":[112]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT","features":[112]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT_W","features":[112]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT","features":[112]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT_W","features":[112]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW","features":[112]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW_W","features":[112]},{"name":"LDAP_OPATT_SERVER_NAME","features":[112]},{"name":"LDAP_OPATT_SERVER_NAME_W","features":[112]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY","features":[112]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY_W","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES_W","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL_W","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES_W","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION_W","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM","features":[112]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM_W","features":[112]},{"name":"LDAP_OPERATIONS_ERROR","features":[112]},{"name":"LDAP_OPT_API_FEATURE_INFO","features":[112]},{"name":"LDAP_OPT_API_INFO","features":[112]},{"name":"LDAP_OPT_AREC_EXCLUSIVE","features":[112]},{"name":"LDAP_OPT_AUTO_RECONNECT","features":[112]},{"name":"LDAP_OPT_CACHE_ENABLE","features":[112]},{"name":"LDAP_OPT_CACHE_FN_PTRS","features":[112]},{"name":"LDAP_OPT_CACHE_STRATEGY","features":[112]},{"name":"LDAP_OPT_CHASE_REFERRALS","features":[112]},{"name":"LDAP_OPT_CLDAP_TIMEOUT","features":[112]},{"name":"LDAP_OPT_CLDAP_TRIES","features":[112]},{"name":"LDAP_OPT_CLIENT_CERTIFICATE","features":[112]},{"name":"LDAP_OPT_DEREF","features":[112]},{"name":"LDAP_OPT_DESC","features":[112]},{"name":"LDAP_OPT_DNS","features":[112]},{"name":"LDAP_OPT_DNSDOMAIN_NAME","features":[112]},{"name":"LDAP_OPT_ENCRYPT","features":[112]},{"name":"LDAP_OPT_ERROR_NUMBER","features":[112]},{"name":"LDAP_OPT_ERROR_STRING","features":[112]},{"name":"LDAP_OPT_FAST_CONCURRENT_BIND","features":[112]},{"name":"LDAP_OPT_GETDSNAME_FLAGS","features":[112]},{"name":"LDAP_OPT_HOST_NAME","features":[112]},{"name":"LDAP_OPT_HOST_REACHABLE","features":[112]},{"name":"LDAP_OPT_IO_FN_PTRS","features":[112]},{"name":"LDAP_OPT_PING_KEEP_ALIVE","features":[112]},{"name":"LDAP_OPT_PING_LIMIT","features":[112]},{"name":"LDAP_OPT_PING_WAIT_TIME","features":[112]},{"name":"LDAP_OPT_PROMPT_CREDENTIALS","features":[112]},{"name":"LDAP_OPT_PROTOCOL_VERSION","features":[112]},{"name":"LDAP_OPT_REBIND_ARG","features":[112]},{"name":"LDAP_OPT_REBIND_FN","features":[112]},{"name":"LDAP_OPT_REFERRALS","features":[112]},{"name":"LDAP_OPT_REFERRAL_CALLBACK","features":[112]},{"name":"LDAP_OPT_REFERRAL_HOP_LIMIT","features":[112]},{"name":"LDAP_OPT_REF_DEREF_CONN_PER_MSG","features":[112]},{"name":"LDAP_OPT_RESTART","features":[112]},{"name":"LDAP_OPT_RETURN_REFS","features":[112]},{"name":"LDAP_OPT_ROOTDSE_CACHE","features":[112]},{"name":"LDAP_OPT_SASL_METHOD","features":[112]},{"name":"LDAP_OPT_SCH_FLAGS","features":[112]},{"name":"LDAP_OPT_SECURITY_CONTEXT","features":[112]},{"name":"LDAP_OPT_SEND_TIMEOUT","features":[112]},{"name":"LDAP_OPT_SERVER_CERTIFICATE","features":[112]},{"name":"LDAP_OPT_SERVER_ERROR","features":[112]},{"name":"LDAP_OPT_SERVER_EXT_ERROR","features":[112]},{"name":"LDAP_OPT_SIGN","features":[112]},{"name":"LDAP_OPT_SIZELIMIT","features":[112]},{"name":"LDAP_OPT_SOCKET_BIND_ADDRESSES","features":[112]},{"name":"LDAP_OPT_SSL","features":[112]},{"name":"LDAP_OPT_SSL_INFO","features":[112]},{"name":"LDAP_OPT_SSPI_FLAGS","features":[112]},{"name":"LDAP_OPT_TCP_KEEPALIVE","features":[112]},{"name":"LDAP_OPT_THREAD_FN_PTRS","features":[112]},{"name":"LDAP_OPT_TIMELIMIT","features":[112]},{"name":"LDAP_OPT_TLS","features":[112]},{"name":"LDAP_OPT_TLS_INFO","features":[112]},{"name":"LDAP_OPT_VERSION","features":[112]},{"name":"LDAP_OTHER","features":[112]},{"name":"LDAP_PAGED_RESULT_OID_STRING","features":[112]},{"name":"LDAP_PAGED_RESULT_OID_STRING_W","features":[112]},{"name":"LDAP_PARAM_ERROR","features":[112]},{"name":"LDAP_PARTIAL_RESULTS","features":[112]},{"name":"LDAP_POLICYHINT_APPLY_FULLPWDPOLICY","features":[112]},{"name":"LDAP_PORT","features":[112]},{"name":"LDAP_PROTOCOL_ERROR","features":[112]},{"name":"LDAP_REFERRAL","features":[112]},{"name":"LDAP_REFERRAL_CALLBACK","features":[1,112]},{"name":"LDAP_REFERRAL_LIMIT_EXCEEDED","features":[112]},{"name":"LDAP_REFERRAL_V2","features":[112]},{"name":"LDAP_RESULTS_TOO_LARGE","features":[112]},{"name":"LDAP_RES_ADD","features":[112]},{"name":"LDAP_RES_ANY","features":[112]},{"name":"LDAP_RES_BIND","features":[112]},{"name":"LDAP_RES_COMPARE","features":[112]},{"name":"LDAP_RES_DELETE","features":[112]},{"name":"LDAP_RES_EXTENDED","features":[112]},{"name":"LDAP_RES_MODIFY","features":[112]},{"name":"LDAP_RES_MODRDN","features":[112]},{"name":"LDAP_RES_REFERRAL","features":[112]},{"name":"LDAP_RES_SEARCH_ENTRY","features":[112]},{"name":"LDAP_RES_SEARCH_RESULT","features":[112]},{"name":"LDAP_RES_SESSION","features":[112]},{"name":"LDAP_RETCODE","features":[112]},{"name":"LDAP_SASL_BIND_IN_PROGRESS","features":[112]},{"name":"LDAP_SCOPE_BASE","features":[112]},{"name":"LDAP_SCOPE_ONELEVEL","features":[112]},{"name":"LDAP_SCOPE_SUBTREE","features":[112]},{"name":"LDAP_SEARCH_CMD","features":[112]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID","features":[112]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID_W","features":[112]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID","features":[112]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID_W","features":[112]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID","features":[112]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID_W","features":[112]},{"name":"LDAP_SERVER_ASQ_OID","features":[112]},{"name":"LDAP_SERVER_ASQ_OID_W","features":[112]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID","features":[112]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID_W","features":[112]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID","features":[112]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID_W","features":[112]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID","features":[112]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID_W","features":[112]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID","features":[112]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID_W","features":[112]},{"name":"LDAP_SERVER_DIRSYNC_OID","features":[112]},{"name":"LDAP_SERVER_DIRSYNC_OID_W","features":[112]},{"name":"LDAP_SERVER_DN_INPUT_OID","features":[112]},{"name":"LDAP_SERVER_DN_INPUT_OID_W","features":[112]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID","features":[112]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID_W","features":[112]},{"name":"LDAP_SERVER_DOWN","features":[112]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID","features":[112]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID_W","features":[112]},{"name":"LDAP_SERVER_EXTENDED_DN_OID","features":[112]},{"name":"LDAP_SERVER_EXTENDED_DN_OID_W","features":[112]},{"name":"LDAP_SERVER_FAST_BIND_OID","features":[112]},{"name":"LDAP_SERVER_FAST_BIND_OID_W","features":[112]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID","features":[112]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID_W","features":[112]},{"name":"LDAP_SERVER_GET_STATS_OID","features":[112]},{"name":"LDAP_SERVER_GET_STATS_OID_W","features":[112]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID","features":[112]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID_W","features":[112]},{"name":"LDAP_SERVER_LINK_TTL_OID","features":[112]},{"name":"LDAP_SERVER_LINK_TTL_OID_W","features":[112]},{"name":"LDAP_SERVER_NOTIFICATION_OID","features":[112]},{"name":"LDAP_SERVER_NOTIFICATION_OID_W","features":[112]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID","features":[112]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID_W","features":[112]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID","features":[112]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID_W","features":[112]},{"name":"LDAP_SERVER_POLICY_HINTS_OID","features":[112]},{"name":"LDAP_SERVER_POLICY_HINTS_OID_W","features":[112]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID","features":[112]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID_W","features":[112]},{"name":"LDAP_SERVER_RANGE_OPTION_OID","features":[112]},{"name":"LDAP_SERVER_RANGE_OPTION_OID_W","features":[112]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID","features":[112]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID_W","features":[112]},{"name":"LDAP_SERVER_RESP_SORT_OID","features":[112]},{"name":"LDAP_SERVER_RESP_SORT_OID_W","features":[112]},{"name":"LDAP_SERVER_SD_FLAGS_OID","features":[112]},{"name":"LDAP_SERVER_SD_FLAGS_OID_W","features":[112]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID","features":[112]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID_W","features":[112]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID","features":[112]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID_W","features":[112]},{"name":"LDAP_SERVER_SET_OWNER_OID","features":[112]},{"name":"LDAP_SERVER_SET_OWNER_OID_W","features":[112]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID","features":[112]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID_W","features":[112]},{"name":"LDAP_SERVER_SHOW_DELETED_OID","features":[112]},{"name":"LDAP_SERVER_SHOW_DELETED_OID_W","features":[112]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID","features":[112]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID_W","features":[112]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID","features":[112]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID_W","features":[112]},{"name":"LDAP_SERVER_SORT_OID","features":[112]},{"name":"LDAP_SERVER_SORT_OID_W","features":[112]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID","features":[112]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID_W","features":[112]},{"name":"LDAP_SERVER_TREE_DELETE_OID","features":[112]},{"name":"LDAP_SERVER_TREE_DELETE_OID_W","features":[112]},{"name":"LDAP_SERVER_UPDATE_STATS_OID","features":[112]},{"name":"LDAP_SERVER_UPDATE_STATS_OID_W","features":[112]},{"name":"LDAP_SERVER_VERIFY_NAME_OID","features":[112]},{"name":"LDAP_SERVER_VERIFY_NAME_OID_W","features":[112]},{"name":"LDAP_SERVER_WHO_AM_I_OID","features":[112]},{"name":"LDAP_SERVER_WHO_AM_I_OID_W","features":[112]},{"name":"LDAP_SESSION_CMD","features":[112]},{"name":"LDAP_SIZELIMIT_EXCEEDED","features":[112]},{"name":"LDAP_SORT_CONTROL_MISSING","features":[112]},{"name":"LDAP_SSL_GC_PORT","features":[112]},{"name":"LDAP_SSL_PORT","features":[112]},{"name":"LDAP_START_TLS_OID","features":[112]},{"name":"LDAP_START_TLS_OID_W","features":[112]},{"name":"LDAP_STRONG_AUTH_REQUIRED","features":[112]},{"name":"LDAP_SUBSTRING_ANY","features":[112]},{"name":"LDAP_SUBSTRING_FINAL","features":[112]},{"name":"LDAP_SUBSTRING_INITIAL","features":[112]},{"name":"LDAP_SUCCESS","features":[112]},{"name":"LDAP_TIMELIMIT_EXCEEDED","features":[112]},{"name":"LDAP_TIMEOUT","features":[112]},{"name":"LDAP_TIMEVAL","features":[112]},{"name":"LDAP_TTL_EXTENDED_OP_OID","features":[112]},{"name":"LDAP_TTL_EXTENDED_OP_OID_W","features":[112]},{"name":"LDAP_UNAVAILABLE","features":[112]},{"name":"LDAP_UNAVAILABLE_CRIT_EXTENSION","features":[112]},{"name":"LDAP_UNBIND_CMD","features":[112]},{"name":"LDAP_UNDEFINED_TYPE","features":[112]},{"name":"LDAP_UNICODE","features":[112]},{"name":"LDAP_UNWILLING_TO_PERFORM","features":[112]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID","features":[112]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID_W","features":[112]},{"name":"LDAP_UPDATE_STATS_USN_OID","features":[112]},{"name":"LDAP_UPDATE_STATS_USN_OID_W","features":[112]},{"name":"LDAP_USER_CANCELLED","features":[112]},{"name":"LDAP_VENDOR_NAME","features":[112]},{"name":"LDAP_VENDOR_NAME_W","features":[112]},{"name":"LDAP_VENDOR_VERSION","features":[112]},{"name":"LDAP_VERSION","features":[112]},{"name":"LDAP_VERSION1","features":[112]},{"name":"LDAP_VERSION2","features":[112]},{"name":"LDAP_VERSION3","features":[112]},{"name":"LDAP_VERSION_INFO","features":[112]},{"name":"LDAP_VERSION_MAX","features":[112]},{"name":"LDAP_VERSION_MIN","features":[112]},{"name":"LDAP_VIRTUAL_LIST_VIEW_ERROR","features":[112]},{"name":"LDAP_VLVINFO_VERSION","features":[112]},{"name":"LdapGetLastError","features":[112]},{"name":"LdapMapErrorToWin32","features":[1,112]},{"name":"LdapUTF8ToUnicode","features":[112]},{"name":"LdapUnicodeToUTF8","features":[112]},{"name":"NOTIFYOFNEWCONNECTION","features":[1,112]},{"name":"PLDAPSearch","features":[112]},{"name":"QUERYCLIENTCERT","features":[1,112,23,68]},{"name":"QUERYFORCONNECTION","features":[112]},{"name":"SERVER_SEARCH_FLAG_DOMAIN_SCOPE","features":[112]},{"name":"SERVER_SEARCH_FLAG_PHANTOM_ROOT","features":[112]},{"name":"VERIFYSERVERCERT","features":[1,112,68]},{"name":"ber_alloc_t","features":[112]},{"name":"ber_bvdup","features":[112]},{"name":"ber_bvecfree","features":[112]},{"name":"ber_bvfree","features":[112]},{"name":"ber_first_element","features":[112]},{"name":"ber_flatten","features":[112]},{"name":"ber_free","features":[112]},{"name":"ber_init","features":[112]},{"name":"ber_next_element","features":[112]},{"name":"ber_peek_tag","features":[112]},{"name":"ber_printf","features":[112]},{"name":"ber_scanf","features":[112]},{"name":"ber_skip_tag","features":[112]},{"name":"cldap_open","features":[112]},{"name":"cldap_openA","features":[112]},{"name":"cldap_openW","features":[112]},{"name":"ldap_abandon","features":[112]},{"name":"ldap_add","features":[112]},{"name":"ldap_addA","features":[112]},{"name":"ldap_addW","features":[112]},{"name":"ldap_add_ext","features":[1,112]},{"name":"ldap_add_extA","features":[1,112]},{"name":"ldap_add_extW","features":[1,112]},{"name":"ldap_add_ext_s","features":[1,112]},{"name":"ldap_add_ext_sA","features":[1,112]},{"name":"ldap_add_ext_sW","features":[1,112]},{"name":"ldap_add_s","features":[112]},{"name":"ldap_add_sA","features":[112]},{"name":"ldap_add_sW","features":[112]},{"name":"ldap_bind","features":[112]},{"name":"ldap_bindA","features":[112]},{"name":"ldap_bindW","features":[112]},{"name":"ldap_bind_s","features":[112]},{"name":"ldap_bind_sA","features":[112]},{"name":"ldap_bind_sW","features":[112]},{"name":"ldap_check_filterA","features":[112]},{"name":"ldap_check_filterW","features":[112]},{"name":"ldap_cleanup","features":[1,112]},{"name":"ldap_close_extended_op","features":[112]},{"name":"ldap_compare","features":[112]},{"name":"ldap_compareA","features":[112]},{"name":"ldap_compareW","features":[112]},{"name":"ldap_compare_ext","features":[1,112]},{"name":"ldap_compare_extA","features":[1,112]},{"name":"ldap_compare_extW","features":[1,112]},{"name":"ldap_compare_ext_s","features":[1,112]},{"name":"ldap_compare_ext_sA","features":[1,112]},{"name":"ldap_compare_ext_sW","features":[1,112]},{"name":"ldap_compare_s","features":[112]},{"name":"ldap_compare_sA","features":[112]},{"name":"ldap_compare_sW","features":[112]},{"name":"ldap_conn_from_msg","features":[1,112]},{"name":"ldap_connect","features":[112]},{"name":"ldap_control_free","features":[1,112]},{"name":"ldap_control_freeA","features":[1,112]},{"name":"ldap_control_freeW","features":[1,112]},{"name":"ldap_controls_free","features":[1,112]},{"name":"ldap_controls_freeA","features":[1,112]},{"name":"ldap_controls_freeW","features":[1,112]},{"name":"ldap_count_entries","features":[1,112]},{"name":"ldap_count_references","features":[1,112]},{"name":"ldap_count_values","features":[112]},{"name":"ldap_count_valuesA","features":[112]},{"name":"ldap_count_valuesW","features":[112]},{"name":"ldap_count_values_len","features":[112]},{"name":"ldap_create_page_control","features":[1,112]},{"name":"ldap_create_page_controlA","features":[1,112]},{"name":"ldap_create_page_controlW","features":[1,112]},{"name":"ldap_create_sort_control","features":[1,112]},{"name":"ldap_create_sort_controlA","features":[1,112]},{"name":"ldap_create_sort_controlW","features":[1,112]},{"name":"ldap_create_vlv_controlA","features":[1,112]},{"name":"ldap_create_vlv_controlW","features":[1,112]},{"name":"ldap_delete","features":[112]},{"name":"ldap_deleteA","features":[112]},{"name":"ldap_deleteW","features":[112]},{"name":"ldap_delete_ext","features":[1,112]},{"name":"ldap_delete_extA","features":[1,112]},{"name":"ldap_delete_extW","features":[1,112]},{"name":"ldap_delete_ext_s","features":[1,112]},{"name":"ldap_delete_ext_sA","features":[1,112]},{"name":"ldap_delete_ext_sW","features":[1,112]},{"name":"ldap_delete_s","features":[112]},{"name":"ldap_delete_sA","features":[112]},{"name":"ldap_delete_sW","features":[112]},{"name":"ldap_dn2ufn","features":[112]},{"name":"ldap_dn2ufnA","features":[112]},{"name":"ldap_dn2ufnW","features":[112]},{"name":"ldap_encode_sort_controlA","features":[1,112]},{"name":"ldap_encode_sort_controlW","features":[1,112]},{"name":"ldap_err2string","features":[112]},{"name":"ldap_err2stringA","features":[112]},{"name":"ldap_err2stringW","features":[112]},{"name":"ldap_escape_filter_element","features":[112]},{"name":"ldap_escape_filter_elementA","features":[112]},{"name":"ldap_escape_filter_elementW","features":[112]},{"name":"ldap_explode_dn","features":[112]},{"name":"ldap_explode_dnA","features":[112]},{"name":"ldap_explode_dnW","features":[112]},{"name":"ldap_extended_operation","features":[1,112]},{"name":"ldap_extended_operationA","features":[1,112]},{"name":"ldap_extended_operationW","features":[1,112]},{"name":"ldap_extended_operation_sA","features":[1,112]},{"name":"ldap_extended_operation_sW","features":[1,112]},{"name":"ldap_first_attribute","features":[1,112]},{"name":"ldap_first_attributeA","features":[1,112]},{"name":"ldap_first_attributeW","features":[1,112]},{"name":"ldap_first_entry","features":[1,112]},{"name":"ldap_first_reference","features":[1,112]},{"name":"ldap_free_controls","features":[1,112]},{"name":"ldap_free_controlsA","features":[1,112]},{"name":"ldap_free_controlsW","features":[1,112]},{"name":"ldap_get_dn","features":[1,112]},{"name":"ldap_get_dnA","features":[1,112]},{"name":"ldap_get_dnW","features":[1,112]},{"name":"ldap_get_next_page","features":[112]},{"name":"ldap_get_next_page_s","features":[1,112]},{"name":"ldap_get_option","features":[112]},{"name":"ldap_get_optionW","features":[112]},{"name":"ldap_get_paged_count","features":[1,112]},{"name":"ldap_get_values","features":[1,112]},{"name":"ldap_get_valuesA","features":[1,112]},{"name":"ldap_get_valuesW","features":[1,112]},{"name":"ldap_get_values_len","features":[1,112]},{"name":"ldap_get_values_lenA","features":[1,112]},{"name":"ldap_get_values_lenW","features":[1,112]},{"name":"ldap_init","features":[112]},{"name":"ldap_initA","features":[112]},{"name":"ldap_initW","features":[112]},{"name":"ldap_memfree","features":[112]},{"name":"ldap_memfreeA","features":[112]},{"name":"ldap_memfreeW","features":[112]},{"name":"ldap_modify","features":[112]},{"name":"ldap_modifyA","features":[112]},{"name":"ldap_modifyW","features":[112]},{"name":"ldap_modify_ext","features":[1,112]},{"name":"ldap_modify_extA","features":[1,112]},{"name":"ldap_modify_extW","features":[1,112]},{"name":"ldap_modify_ext_s","features":[1,112]},{"name":"ldap_modify_ext_sA","features":[1,112]},{"name":"ldap_modify_ext_sW","features":[1,112]},{"name":"ldap_modify_s","features":[112]},{"name":"ldap_modify_sA","features":[112]},{"name":"ldap_modify_sW","features":[112]},{"name":"ldap_modrdn","features":[112]},{"name":"ldap_modrdn2","features":[112]},{"name":"ldap_modrdn2A","features":[112]},{"name":"ldap_modrdn2W","features":[112]},{"name":"ldap_modrdn2_s","features":[112]},{"name":"ldap_modrdn2_sA","features":[112]},{"name":"ldap_modrdn2_sW","features":[112]},{"name":"ldap_modrdnA","features":[112]},{"name":"ldap_modrdnW","features":[112]},{"name":"ldap_modrdn_s","features":[112]},{"name":"ldap_modrdn_sA","features":[112]},{"name":"ldap_modrdn_sW","features":[112]},{"name":"ldap_msgfree","features":[1,112]},{"name":"ldap_next_attribute","features":[1,112]},{"name":"ldap_next_attributeA","features":[1,112]},{"name":"ldap_next_attributeW","features":[1,112]},{"name":"ldap_next_entry","features":[1,112]},{"name":"ldap_next_reference","features":[1,112]},{"name":"ldap_open","features":[112]},{"name":"ldap_openA","features":[112]},{"name":"ldap_openW","features":[112]},{"name":"ldap_parse_extended_resultA","features":[1,112]},{"name":"ldap_parse_extended_resultW","features":[1,112]},{"name":"ldap_parse_page_control","features":[1,112]},{"name":"ldap_parse_page_controlA","features":[1,112]},{"name":"ldap_parse_page_controlW","features":[1,112]},{"name":"ldap_parse_reference","features":[1,112]},{"name":"ldap_parse_referenceA","features":[1,112]},{"name":"ldap_parse_referenceW","features":[1,112]},{"name":"ldap_parse_result","features":[1,112]},{"name":"ldap_parse_resultA","features":[1,112]},{"name":"ldap_parse_resultW","features":[1,112]},{"name":"ldap_parse_sort_control","features":[1,112]},{"name":"ldap_parse_sort_controlA","features":[1,112]},{"name":"ldap_parse_sort_controlW","features":[1,112]},{"name":"ldap_parse_vlv_controlA","features":[1,112]},{"name":"ldap_parse_vlv_controlW","features":[1,112]},{"name":"ldap_perror","features":[112]},{"name":"ldap_rename_ext","features":[1,112]},{"name":"ldap_rename_extA","features":[1,112]},{"name":"ldap_rename_extW","features":[1,112]},{"name":"ldap_rename_ext_s","features":[1,112]},{"name":"ldap_rename_ext_sA","features":[1,112]},{"name":"ldap_rename_ext_sW","features":[1,112]},{"name":"ldap_result","features":[1,112]},{"name":"ldap_result2error","features":[1,112]},{"name":"ldap_sasl_bindA","features":[1,112]},{"name":"ldap_sasl_bindW","features":[1,112]},{"name":"ldap_sasl_bind_sA","features":[1,112]},{"name":"ldap_sasl_bind_sW","features":[1,112]},{"name":"ldap_search","features":[112]},{"name":"ldap_searchA","features":[112]},{"name":"ldap_searchW","features":[112]},{"name":"ldap_search_abandon_page","features":[112]},{"name":"ldap_search_ext","features":[1,112]},{"name":"ldap_search_extA","features":[1,112]},{"name":"ldap_search_extW","features":[1,112]},{"name":"ldap_search_ext_s","features":[1,112]},{"name":"ldap_search_ext_sA","features":[1,112]},{"name":"ldap_search_ext_sW","features":[1,112]},{"name":"ldap_search_init_page","features":[1,112]},{"name":"ldap_search_init_pageA","features":[1,112]},{"name":"ldap_search_init_pageW","features":[1,112]},{"name":"ldap_search_s","features":[1,112]},{"name":"ldap_search_sA","features":[1,112]},{"name":"ldap_search_sW","features":[1,112]},{"name":"ldap_search_st","features":[1,112]},{"name":"ldap_search_stA","features":[1,112]},{"name":"ldap_search_stW","features":[1,112]},{"name":"ldap_set_dbg_flags","features":[112]},{"name":"ldap_set_dbg_routine","features":[112]},{"name":"ldap_set_option","features":[112]},{"name":"ldap_set_optionW","features":[112]},{"name":"ldap_simple_bind","features":[112]},{"name":"ldap_simple_bindA","features":[112]},{"name":"ldap_simple_bindW","features":[112]},{"name":"ldap_simple_bind_s","features":[112]},{"name":"ldap_simple_bind_sA","features":[112]},{"name":"ldap_simple_bind_sW","features":[112]},{"name":"ldap_sslinit","features":[112]},{"name":"ldap_sslinitA","features":[112]},{"name":"ldap_sslinitW","features":[112]},{"name":"ldap_start_tls_sA","features":[1,112]},{"name":"ldap_start_tls_sW","features":[1,112]},{"name":"ldap_startup","features":[1,112]},{"name":"ldap_stop_tls_s","features":[1,112]},{"name":"ldap_ufn2dn","features":[112]},{"name":"ldap_ufn2dnA","features":[112]},{"name":"ldap_ufn2dnW","features":[112]},{"name":"ldap_unbind","features":[112]},{"name":"ldap_unbind_s","features":[112]},{"name":"ldap_value_free","features":[112]},{"name":"ldap_value_freeA","features":[112]},{"name":"ldap_value_freeW","features":[112]},{"name":"ldap_value_free_len","features":[112]}],"474":[{"name":"WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_ACTION","features":[113]},{"name":"WEB_SOCKET_ACTION_QUEUE","features":[113]},{"name":"WEB_SOCKET_ALLOCATED_BUFFER_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_ALL_ACTION_QUEUE","features":[113]},{"name":"WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[113]},{"name":"WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[113]},{"name":"WEB_SOCKET_BUFFER","features":[113]},{"name":"WEB_SOCKET_BUFFER_TYPE","features":[113]},{"name":"WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[113]},{"name":"WEB_SOCKET_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_DISABLE_MASKING_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_DISABLE_UTF8_VERIFICATION_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_ENDPOINT_UNAVAILABLE_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_HANDLE","features":[113]},{"name":"WEB_SOCKET_HTTP_HEADER","features":[113]},{"name":"WEB_SOCKET_INDICATE_RECEIVE_COMPLETE_ACTION","features":[113]},{"name":"WEB_SOCKET_INDICATE_SEND_COMPLETE_ACTION","features":[113]},{"name":"WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_KEEPALIVE_INTERVAL_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[113]},{"name":"WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_NO_ACTION","features":[113]},{"name":"WEB_SOCKET_PING_PONG_BUFFER_TYPE","features":[113]},{"name":"WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_PROPERTY","features":[113]},{"name":"WEB_SOCKET_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_RECEIVE_ACTION_QUEUE","features":[113]},{"name":"WEB_SOCKET_RECEIVE_BUFFER_SIZE_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_RECEIVE_FROM_NETWORK_ACTION","features":[113]},{"name":"WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_SEND_ACTION_QUEUE","features":[113]},{"name":"WEB_SOCKET_SEND_BUFFER_SIZE_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_SEND_TO_NETWORK_ACTION","features":[113]},{"name":"WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_SUPPORTED_VERSIONS_PROPERTY_TYPE","features":[113]},{"name":"WEB_SOCKET_UNSOLICITED_PONG_BUFFER_TYPE","features":[113]},{"name":"WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[113]},{"name":"WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[113]},{"name":"WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[113]},{"name":"WebSocketAbortHandle","features":[113]},{"name":"WebSocketBeginClientHandshake","features":[113]},{"name":"WebSocketBeginServerHandshake","features":[113]},{"name":"WebSocketCompleteAction","features":[113]},{"name":"WebSocketCreateClientHandle","features":[113]},{"name":"WebSocketCreateServerHandle","features":[113]},{"name":"WebSocketDeleteHandle","features":[113]},{"name":"WebSocketEndClientHandshake","features":[113]},{"name":"WebSocketEndServerHandshake","features":[113]},{"name":"WebSocketGetAction","features":[113]},{"name":"WebSocketGetGlobalProperty","features":[113]},{"name":"WebSocketReceive","features":[113]},{"name":"WebSocketSend","features":[113]}],"475":[{"name":"API_GET_PROXY_FOR_URL","features":[114]},{"name":"API_GET_PROXY_SETTINGS","features":[114]},{"name":"API_QUERY_DATA_AVAILABLE","features":[114]},{"name":"API_READ_DATA","features":[114]},{"name":"API_RECEIVE_RESPONSE","features":[114]},{"name":"API_SEND_REQUEST","features":[114]},{"name":"API_WRITE_DATA","features":[114]},{"name":"AutoLogonPolicy_Always","features":[114]},{"name":"AutoLogonPolicy_Never","features":[114]},{"name":"AutoLogonPolicy_OnlyIfBypassProxy","features":[114]},{"name":"ERROR_WINHTTP_AUTODETECTION_FAILED","features":[114]},{"name":"ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR","features":[114]},{"name":"ERROR_WINHTTP_BAD_AUTO_PROXY_SCRIPT","features":[114]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_OPEN","features":[114]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_SEND","features":[114]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_OPEN","features":[114]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_SEND","features":[114]},{"name":"ERROR_WINHTTP_CANNOT_CONNECT","features":[114]},{"name":"ERROR_WINHTTP_CHUNKED_ENCODING_HEADER_SIZE_OVERFLOW","features":[114]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED","features":[114]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[114]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_ACCESS_PRIVATE_KEY","features":[114]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_PRIVATE_KEY","features":[114]},{"name":"ERROR_WINHTTP_CONNECTION_ERROR","features":[114]},{"name":"ERROR_WINHTTP_FEATURE_DISABLED","features":[114]},{"name":"ERROR_WINHTTP_GLOBAL_CALLBACK_FAILED","features":[114]},{"name":"ERROR_WINHTTP_HEADER_ALREADY_EXISTS","features":[114]},{"name":"ERROR_WINHTTP_HEADER_COUNT_EXCEEDED","features":[114]},{"name":"ERROR_WINHTTP_HEADER_NOT_FOUND","features":[114]},{"name":"ERROR_WINHTTP_HEADER_SIZE_OVERFLOW","features":[114]},{"name":"ERROR_WINHTTP_HTTP_PROTOCOL_MISMATCH","features":[114]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_STATE","features":[114]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_TYPE","features":[114]},{"name":"ERROR_WINHTTP_INTERNAL_ERROR","features":[114]},{"name":"ERROR_WINHTTP_INVALID_HEADER","features":[114]},{"name":"ERROR_WINHTTP_INVALID_OPTION","features":[114]},{"name":"ERROR_WINHTTP_INVALID_QUERY_REQUEST","features":[114]},{"name":"ERROR_WINHTTP_INVALID_SERVER_RESPONSE","features":[114]},{"name":"ERROR_WINHTTP_INVALID_URL","features":[114]},{"name":"ERROR_WINHTTP_LOGIN_FAILURE","features":[114]},{"name":"ERROR_WINHTTP_NAME_NOT_RESOLVED","features":[114]},{"name":"ERROR_WINHTTP_NOT_INITIALIZED","features":[114]},{"name":"ERROR_WINHTTP_OPERATION_CANCELLED","features":[114]},{"name":"ERROR_WINHTTP_OPTION_NOT_SETTABLE","features":[114]},{"name":"ERROR_WINHTTP_OUT_OF_HANDLES","features":[114]},{"name":"ERROR_WINHTTP_REDIRECT_FAILED","features":[114]},{"name":"ERROR_WINHTTP_RESEND_REQUEST","features":[114]},{"name":"ERROR_WINHTTP_RESERVED_189","features":[114]},{"name":"ERROR_WINHTTP_RESPONSE_DRAIN_OVERFLOW","features":[114]},{"name":"ERROR_WINHTTP_SCRIPT_EXECUTION_ERROR","features":[114]},{"name":"ERROR_WINHTTP_SECURE_CERT_CN_INVALID","features":[114]},{"name":"ERROR_WINHTTP_SECURE_CERT_DATE_INVALID","features":[114]},{"name":"ERROR_WINHTTP_SECURE_CERT_REVOKED","features":[114]},{"name":"ERROR_WINHTTP_SECURE_CERT_REV_FAILED","features":[114]},{"name":"ERROR_WINHTTP_SECURE_CERT_WRONG_USAGE","features":[114]},{"name":"ERROR_WINHTTP_SECURE_CHANNEL_ERROR","features":[114]},{"name":"ERROR_WINHTTP_SECURE_FAILURE","features":[114]},{"name":"ERROR_WINHTTP_SECURE_FAILURE_PROXY","features":[114]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CA","features":[114]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CERT","features":[114]},{"name":"ERROR_WINHTTP_SHUTDOWN","features":[114]},{"name":"ERROR_WINHTTP_TIMEOUT","features":[114]},{"name":"ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT","features":[114]},{"name":"ERROR_WINHTTP_UNHANDLED_SCRIPT_TYPE","features":[114]},{"name":"ERROR_WINHTTP_UNRECOGNIZED_SCHEME","features":[114]},{"name":"HTTPREQUEST_PROXYSETTING_DEFAULT","features":[114]},{"name":"HTTPREQUEST_PROXYSETTING_DIRECT","features":[114]},{"name":"HTTPREQUEST_PROXYSETTING_PRECONFIG","features":[114]},{"name":"HTTPREQUEST_PROXYSETTING_PROXY","features":[114]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_PROXY","features":[114]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_SERVER","features":[114]},{"name":"HTTP_STATUS_ACCEPTED","features":[114]},{"name":"HTTP_STATUS_AMBIGUOUS","features":[114]},{"name":"HTTP_STATUS_BAD_GATEWAY","features":[114]},{"name":"HTTP_STATUS_BAD_METHOD","features":[114]},{"name":"HTTP_STATUS_BAD_REQUEST","features":[114]},{"name":"HTTP_STATUS_CONFLICT","features":[114]},{"name":"HTTP_STATUS_CONTINUE","features":[114]},{"name":"HTTP_STATUS_CREATED","features":[114]},{"name":"HTTP_STATUS_DENIED","features":[114]},{"name":"HTTP_STATUS_FIRST","features":[114]},{"name":"HTTP_STATUS_FORBIDDEN","features":[114]},{"name":"HTTP_STATUS_GATEWAY_TIMEOUT","features":[114]},{"name":"HTTP_STATUS_GONE","features":[114]},{"name":"HTTP_STATUS_LAST","features":[114]},{"name":"HTTP_STATUS_LENGTH_REQUIRED","features":[114]},{"name":"HTTP_STATUS_MOVED","features":[114]},{"name":"HTTP_STATUS_NONE_ACCEPTABLE","features":[114]},{"name":"HTTP_STATUS_NOT_FOUND","features":[114]},{"name":"HTTP_STATUS_NOT_MODIFIED","features":[114]},{"name":"HTTP_STATUS_NOT_SUPPORTED","features":[114]},{"name":"HTTP_STATUS_NO_CONTENT","features":[114]},{"name":"HTTP_STATUS_OK","features":[114]},{"name":"HTTP_STATUS_PARTIAL","features":[114]},{"name":"HTTP_STATUS_PARTIAL_CONTENT","features":[114]},{"name":"HTTP_STATUS_PAYMENT_REQ","features":[114]},{"name":"HTTP_STATUS_PERMANENT_REDIRECT","features":[114]},{"name":"HTTP_STATUS_PRECOND_FAILED","features":[114]},{"name":"HTTP_STATUS_PROXY_AUTH_REQ","features":[114]},{"name":"HTTP_STATUS_REDIRECT","features":[114]},{"name":"HTTP_STATUS_REDIRECT_KEEP_VERB","features":[114]},{"name":"HTTP_STATUS_REDIRECT_METHOD","features":[114]},{"name":"HTTP_STATUS_REQUEST_TIMEOUT","features":[114]},{"name":"HTTP_STATUS_REQUEST_TOO_LARGE","features":[114]},{"name":"HTTP_STATUS_RESET_CONTENT","features":[114]},{"name":"HTTP_STATUS_RETRY_WITH","features":[114]},{"name":"HTTP_STATUS_SERVER_ERROR","features":[114]},{"name":"HTTP_STATUS_SERVICE_UNAVAIL","features":[114]},{"name":"HTTP_STATUS_SWITCH_PROTOCOLS","features":[114]},{"name":"HTTP_STATUS_UNSUPPORTED_MEDIA","features":[114]},{"name":"HTTP_STATUS_URI_TOO_LONG","features":[114]},{"name":"HTTP_STATUS_USE_PROXY","features":[114]},{"name":"HTTP_STATUS_VERSION_NOT_SUP","features":[114]},{"name":"HTTP_STATUS_WEBDAV_MULTI_STATUS","features":[114]},{"name":"HTTP_VERSION_INFO","features":[114]},{"name":"ICU_BROWSER_MODE","features":[114]},{"name":"ICU_DECODE","features":[114]},{"name":"ICU_ENCODE_PERCENT","features":[114]},{"name":"ICU_ENCODE_SPACES_ONLY","features":[114]},{"name":"ICU_ESCAPE","features":[114]},{"name":"ICU_ESCAPE_AUTHORITY","features":[114]},{"name":"ICU_NO_ENCODE","features":[114]},{"name":"ICU_NO_META","features":[114]},{"name":"ICU_REJECT_USERPWD","features":[114]},{"name":"INTERNET_DEFAULT_HTTPS_PORT","features":[114]},{"name":"INTERNET_DEFAULT_HTTP_PORT","features":[114]},{"name":"INTERNET_DEFAULT_PORT","features":[114]},{"name":"IWinHttpRequest","features":[114]},{"name":"IWinHttpRequestEvents","features":[114]},{"name":"NETWORKING_KEY_BUFSIZE","features":[114]},{"name":"SECURITY_FLAG_IGNORE_CERT_CN_INVALID","features":[114]},{"name":"SECURITY_FLAG_IGNORE_CERT_DATE_INVALID","features":[114]},{"name":"SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE","features":[114]},{"name":"SECURITY_FLAG_IGNORE_UNKNOWN_CA","features":[114]},{"name":"SECURITY_FLAG_SECURE","features":[114]},{"name":"SECURITY_FLAG_STRENGTH_MEDIUM","features":[114]},{"name":"SECURITY_FLAG_STRENGTH_STRONG","features":[114]},{"name":"SECURITY_FLAG_STRENGTH_WEAK","features":[114]},{"name":"SecureProtocol_ALL","features":[114]},{"name":"SecureProtocol_SSL2","features":[114]},{"name":"SecureProtocol_SSL3","features":[114]},{"name":"SecureProtocol_TLS1","features":[114]},{"name":"SecureProtocol_TLS1_1","features":[114]},{"name":"SecureProtocol_TLS1_2","features":[114]},{"name":"SslErrorFlag_CertCNInvalid","features":[114]},{"name":"SslErrorFlag_CertDateInvalid","features":[114]},{"name":"SslErrorFlag_CertWrongUsage","features":[114]},{"name":"SslErrorFlag_Ignore_All","features":[114]},{"name":"SslErrorFlag_UnknownCA","features":[114]},{"name":"URL_COMPONENTS","features":[114]},{"name":"WINHTTP_ACCESS_TYPE","features":[114]},{"name":"WINHTTP_ACCESS_TYPE_AUTOMATIC_PROXY","features":[114]},{"name":"WINHTTP_ACCESS_TYPE_DEFAULT_PROXY","features":[114]},{"name":"WINHTTP_ACCESS_TYPE_NAMED_PROXY","features":[114]},{"name":"WINHTTP_ACCESS_TYPE_NO_PROXY","features":[114]},{"name":"WINHTTP_ADDREQ_FLAGS_MASK","features":[114]},{"name":"WINHTTP_ADDREQ_FLAG_ADD","features":[114]},{"name":"WINHTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[114]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE","features":[114]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[114]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[114]},{"name":"WINHTTP_ADDREQ_FLAG_REPLACE","features":[114]},{"name":"WINHTTP_ADDREQ_INDEX_MASK","features":[114]},{"name":"WINHTTP_ASYNC_RESULT","features":[114]},{"name":"WINHTTP_AUTH_SCHEME_BASIC","features":[114]},{"name":"WINHTTP_AUTH_SCHEME_DIGEST","features":[114]},{"name":"WINHTTP_AUTH_SCHEME_NEGOTIATE","features":[114]},{"name":"WINHTTP_AUTH_SCHEME_NTLM","features":[114]},{"name":"WINHTTP_AUTH_SCHEME_PASSPORT","features":[114]},{"name":"WINHTTP_AUTH_TARGET_PROXY","features":[114]},{"name":"WINHTTP_AUTH_TARGET_SERVER","features":[114]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_DEFAULT","features":[114]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_HIGH","features":[114]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_LOW","features":[114]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MAX","features":[114]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MEDIUM","features":[114]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_PROXY_ONLY","features":[114]},{"name":"WINHTTP_AUTOPROXY_ALLOW_AUTOCONFIG","features":[114]},{"name":"WINHTTP_AUTOPROXY_ALLOW_CM","features":[114]},{"name":"WINHTTP_AUTOPROXY_ALLOW_STATIC","features":[114]},{"name":"WINHTTP_AUTOPROXY_AUTO_DETECT","features":[114]},{"name":"WINHTTP_AUTOPROXY_CONFIG_URL","features":[114]},{"name":"WINHTTP_AUTOPROXY_HOST_KEEPCASE","features":[114]},{"name":"WINHTTP_AUTOPROXY_HOST_LOWERCASE","features":[114]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_CLIENT","features":[114]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_SVC","features":[114]},{"name":"WINHTTP_AUTOPROXY_NO_DIRECTACCESS","features":[114]},{"name":"WINHTTP_AUTOPROXY_OPTIONS","features":[1,114]},{"name":"WINHTTP_AUTOPROXY_RUN_INPROCESS","features":[114]},{"name":"WINHTTP_AUTOPROXY_RUN_OUTPROCESS_ONLY","features":[114]},{"name":"WINHTTP_AUTOPROXY_SORT_RESULTS","features":[114]},{"name":"WINHTTP_AUTOPROXY_USE_INTERFACE_CONFIG","features":[114]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DHCP","features":[114]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DNS_A","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_DATA_AVAILABLE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_DETECTING_PROXY","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYFORURL_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYSETTINGS_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_HEADERS_AVAILABLE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_INTERMEDIATE_RESPONSE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_READ_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_REDIRECT","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_REQUEST_ERROR","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_SECURE_FAILURE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_SENDREQUEST_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_FLAG_WRITE_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSE_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSING_CONNECTION","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTION_CLOSED","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_DATA_AVAILABLE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_DETECTING_PROXY","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_DATE_INVALID","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REVOKED","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REV_FAILED","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_WRONG_USAGE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CA","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CERT","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_SECURITY_CHANNEL_ERROR","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYFORURL_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYSETTINGS_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CREATED","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_INTERMEDIATE_RESPONSE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_NAME_RESOLVED","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_READ_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_REDIRECT","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_ERROR","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_SENT","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_RESOLVING_NAME","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_SECURE_FAILURE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_SENDING_REQUEST","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_READ_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_WRITE_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_SHUTDOWN_COMPLETE","features":[114]},{"name":"WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE","features":[114]},{"name":"WINHTTP_CERTIFICATE_INFO","features":[1,114]},{"name":"WINHTTP_CONNECTION_GROUP","features":[114]},{"name":"WINHTTP_CONNECTION_INFO","features":[114,15]},{"name":"WINHTTP_CONNECTION_INFO","features":[114,15]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_408","features":[114]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_SSL_HANDSHAKE","features":[114]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_STALE_CONNECTION","features":[114]},{"name":"WINHTTP_CONNS_PER_SERVER_UNLIMITED","features":[114]},{"name":"WINHTTP_CREDS","features":[114]},{"name":"WINHTTP_CREDS_AUTHSCHEME","features":[114]},{"name":"WINHTTP_CREDS_EX","features":[114]},{"name":"WINHTTP_CURRENT_USER_IE_PROXY_CONFIG","features":[1,114]},{"name":"WINHTTP_DECOMPRESSION_FLAG_DEFLATE","features":[114]},{"name":"WINHTTP_DECOMPRESSION_FLAG_GZIP","features":[114]},{"name":"WINHTTP_DISABLE_AUTHENTICATION","features":[114]},{"name":"WINHTTP_DISABLE_COOKIES","features":[114]},{"name":"WINHTTP_DISABLE_KEEP_ALIVE","features":[114]},{"name":"WINHTTP_DISABLE_PASSPORT_AUTH","features":[114]},{"name":"WINHTTP_DISABLE_PASSPORT_KEYRING","features":[114]},{"name":"WINHTTP_DISABLE_REDIRECTS","features":[114]},{"name":"WINHTTP_DISABLE_SPN_SERVER_PORT","features":[114]},{"name":"WINHTTP_ENABLE_PASSPORT_AUTH","features":[114]},{"name":"WINHTTP_ENABLE_PASSPORT_KEYRING","features":[114]},{"name":"WINHTTP_ENABLE_SPN_SERVER_PORT","features":[114]},{"name":"WINHTTP_ENABLE_SSL_REVERT_IMPERSONATION","features":[114]},{"name":"WINHTTP_ENABLE_SSL_REVOCATION","features":[114]},{"name":"WINHTTP_ERROR_BASE","features":[114]},{"name":"WINHTTP_ERROR_LAST","features":[114]},{"name":"WINHTTP_EXTENDED_HEADER","features":[114]},{"name":"WINHTTP_EXTENDED_HEADER_FLAG_UNICODE","features":[114]},{"name":"WINHTTP_FAILED_CONNECTION_RETRIES","features":[114]},{"name":"WINHTTP_FEATURE_ADD_REQUEST_HEADERS_EX","features":[114]},{"name":"WINHTTP_FEATURE_BACKGROUND_CONNECTIONS","features":[114]},{"name":"WINHTTP_FEATURE_CONNECTION_GUID","features":[114]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V0","features":[114]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V1","features":[114]},{"name":"WINHTTP_FEATURE_DISABLE_CERT_CHAIN_BUILDING","features":[114]},{"name":"WINHTTP_FEATURE_DISABLE_PROXY_AUTH_SCHEMES","features":[114]},{"name":"WINHTTP_FEATURE_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[114]},{"name":"WINHTTP_FEATURE_DISABLE_STREAM_QUEUE","features":[114]},{"name":"WINHTTP_FEATURE_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[114]},{"name":"WINHTTP_FEATURE_EXPIRE_CONNECTION","features":[114]},{"name":"WINHTTP_FEATURE_EXTENDED_HEADER_FLAG_UNICODE","features":[114]},{"name":"WINHTTP_FEATURE_FAILED_CONNECTION_RETRIES","features":[114]},{"name":"WINHTTP_FEATURE_FIRST_AVAILABLE_CONNECTION","features":[114]},{"name":"WINHTTP_FEATURE_FLAG_AUTOMATIC_CHUNKING","features":[114]},{"name":"WINHTTP_FEATURE_FLAG_SECURE_DEFAULTS","features":[114]},{"name":"WINHTTP_FEATURE_FREE_QUERY_CONNECTION_GROUP_RESULT","features":[114]},{"name":"WINHTTP_FEATURE_HTTP2_KEEPALIVE","features":[114]},{"name":"WINHTTP_FEATURE_HTTP2_PLUS_TRANSFER_ENCODING","features":[114]},{"name":"WINHTTP_FEATURE_HTTP2_RECEIVE_WINDOW","features":[114]},{"name":"WINHTTP_FEATURE_HTTP3_HANDSHAKE_TIMEOUT","features":[114]},{"name":"WINHTTP_FEATURE_HTTP3_INITIAL_RTT","features":[114]},{"name":"WINHTTP_FEATURE_HTTP3_KEEPALIVE","features":[114]},{"name":"WINHTTP_FEATURE_HTTP3_STREAM_ERROR_CODE","features":[114]},{"name":"WINHTTP_FEATURE_HTTP_PROTOCOL_REQUIRED","features":[114]},{"name":"WINHTTP_FEATURE_IGNORE_CERT_REVOCATION_OFFLINE","features":[114]},{"name":"WINHTTP_FEATURE_IPV6_FAST_FALLBACK","features":[114]},{"name":"WINHTTP_FEATURE_IS_FEATURE_SUPPORTED","features":[114]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID","features":[114]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[114]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP","features":[114]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP_FLAG_INSECURE","features":[114]},{"name":"WINHTTP_FEATURE_QUERY_EX_ALL_HEADERS","features":[114]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_TRAILERS","features":[114]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_WIRE_ENCODING","features":[114]},{"name":"WINHTTP_FEATURE_QUERY_HEADERS_EX","features":[114]},{"name":"WINHTTP_FEATURE_QUIC_STATS","features":[114]},{"name":"WINHTTP_FEATURE_READ_DATA_EX","features":[114]},{"name":"WINHTTP_FEATURE_READ_DATA_EX_FLAG_FILL_BUFFER","features":[114]},{"name":"WINHTTP_FEATURE_REFERER_TOKEN_BINDING_HOSTNAME","features":[114]},{"name":"WINHTTP_FEATURE_REQUEST_ANNOTATION","features":[114]},{"name":"WINHTTP_FEATURE_REQUEST_STATS","features":[114]},{"name":"WINHTTP_FEATURE_REQUEST_TIMES","features":[114]},{"name":"WINHTTP_FEATURE_REQUIRE_STREAM_END","features":[114]},{"name":"WINHTTP_FEATURE_RESOLUTION_HOSTNAME","features":[114]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG","features":[114]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[114]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[114]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[114]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[114]},{"name":"WINHTTP_FEATURE_REVERT_IMPERSONATION_SERVER_CERT","features":[114]},{"name":"WINHTTP_FEATURE_SECURITY_FLAG_IGNORE_ALL_CERT_ERRORS","features":[114]},{"name":"WINHTTP_FEATURE_SECURITY_INFO","features":[114]},{"name":"WINHTTP_FEATURE_SERVER_CERT_CHAIN_CONTEXT","features":[114]},{"name":"WINHTTP_FEATURE_SET_PROXY_SETINGS_PER_USER","features":[114]},{"name":"WINHTTP_FEATURE_SET_TOKEN_BINDING","features":[114]},{"name":"WINHTTP_FEATURE_STREAM_ERROR_CODE","features":[114]},{"name":"WINHTTP_FEATURE_TCP_FAST_OPEN","features":[114]},{"name":"WINHTTP_FEATURE_TCP_KEEPALIVE","features":[114]},{"name":"WINHTTP_FEATURE_TCP_PRIORITY_STATUS","features":[114]},{"name":"WINHTTP_FEATURE_TLS_FALSE_START","features":[114]},{"name":"WINHTTP_FEATURE_TLS_PROTOCOL_INSECURE_FALLBACK","features":[114]},{"name":"WINHTTP_FEATURE_TOKEN_BINDING_PUBLIC_KEY","features":[114]},{"name":"WINHTTP_FLAG_ASYNC","features":[114]},{"name":"WINHTTP_FLAG_AUTOMATIC_CHUNKING","features":[114]},{"name":"WINHTTP_FLAG_BYPASS_PROXY_CACHE","features":[114]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE","features":[114]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE_QUERY","features":[114]},{"name":"WINHTTP_FLAG_ESCAPE_PERCENT","features":[114]},{"name":"WINHTTP_FLAG_NULL_CODEPAGE","features":[114]},{"name":"WINHTTP_FLAG_REFRESH","features":[114]},{"name":"WINHTTP_FLAG_SECURE","features":[114]},{"name":"WINHTTP_FLAG_SECURE_DEFAULTS","features":[114]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL2","features":[114]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL3","features":[114]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1","features":[114]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1","features":[114]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2","features":[114]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3","features":[114]},{"name":"WINHTTP_HANDLE_TYPE_CONNECT","features":[114]},{"name":"WINHTTP_HANDLE_TYPE_PROXY_RESOLVER","features":[114]},{"name":"WINHTTP_HANDLE_TYPE_REQUEST","features":[114]},{"name":"WINHTTP_HANDLE_TYPE_SESSION","features":[114]},{"name":"WINHTTP_HANDLE_TYPE_WEBSOCKET","features":[114]},{"name":"WINHTTP_HEADER_NAME","features":[114]},{"name":"WINHTTP_HOST_CONNECTION_GROUP","features":[114]},{"name":"WINHTTP_HTTP2_RECEIVE_WINDOW","features":[114]},{"name":"WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH","features":[114]},{"name":"WINHTTP_INTERNET_SCHEME","features":[114]},{"name":"WINHTTP_INTERNET_SCHEME_FTP","features":[114]},{"name":"WINHTTP_INTERNET_SCHEME_HTTP","features":[114]},{"name":"WINHTTP_INTERNET_SCHEME_HTTPS","features":[114]},{"name":"WINHTTP_INTERNET_SCHEME_SOCKS","features":[114]},{"name":"WINHTTP_LAST_OPTION","features":[114]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[114]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[114]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAGS_MASK","features":[114]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[114]},{"name":"WINHTTP_OPEN_REQUEST_FLAGS","features":[114]},{"name":"WINHTTP_OPTION_ASSURED_NON_BLOCKING_CALLBACKS","features":[114]},{"name":"WINHTTP_OPTION_AUTOLOGON_POLICY","features":[114]},{"name":"WINHTTP_OPTION_BACKGROUND_CONNECTIONS","features":[114]},{"name":"WINHTTP_OPTION_CALLBACK","features":[114]},{"name":"WINHTTP_OPTION_CLIENT_CERT_CONTEXT","features":[114]},{"name":"WINHTTP_OPTION_CLIENT_CERT_ISSUER_LIST","features":[114]},{"name":"WINHTTP_OPTION_CODEPAGE","features":[114]},{"name":"WINHTTP_OPTION_CONFIGURE_PASSPORT_AUTH","features":[114]},{"name":"WINHTTP_OPTION_CONNECTION_FILTER","features":[114]},{"name":"WINHTTP_OPTION_CONNECTION_GUID","features":[114]},{"name":"WINHTTP_OPTION_CONNECTION_INFO","features":[114]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V0","features":[114]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V1","features":[114]},{"name":"WINHTTP_OPTION_CONNECT_RETRIES","features":[114]},{"name":"WINHTTP_OPTION_CONNECT_TIMEOUT","features":[114]},{"name":"WINHTTP_OPTION_CONTEXT_VALUE","features":[114]},{"name":"WINHTTP_OPTION_DECOMPRESSION","features":[114]},{"name":"WINHTTP_OPTION_DISABLE_CERT_CHAIN_BUILDING","features":[114]},{"name":"WINHTTP_OPTION_DISABLE_FEATURE","features":[114]},{"name":"WINHTTP_OPTION_DISABLE_GLOBAL_POOLING","features":[114]},{"name":"WINHTTP_OPTION_DISABLE_PROXY_AUTH_SCHEMES","features":[114]},{"name":"WINHTTP_OPTION_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[114]},{"name":"WINHTTP_OPTION_DISABLE_STREAM_QUEUE","features":[114]},{"name":"WINHTTP_OPTION_ENABLETRACING","features":[114]},{"name":"WINHTTP_OPTION_ENABLE_FEATURE","features":[114]},{"name":"WINHTTP_OPTION_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[114]},{"name":"WINHTTP_OPTION_ENABLE_HTTP_PROTOCOL","features":[114]},{"name":"WINHTTP_OPTION_ENCODE_EXTRA","features":[114]},{"name":"WINHTTP_OPTION_EXPIRE_CONNECTION","features":[114]},{"name":"WINHTTP_OPTION_EXTENDED_ERROR","features":[114]},{"name":"WINHTTP_OPTION_FAILED_CONNECTION_RETRIES","features":[114]},{"name":"WINHTTP_OPTION_FEATURE_SUPPORTED","features":[114]},{"name":"WINHTTP_OPTION_FIRST_AVAILABLE_CONNECTION","features":[114]},{"name":"WINHTTP_OPTION_GLOBAL_PROXY_CREDS","features":[114]},{"name":"WINHTTP_OPTION_GLOBAL_SERVER_CREDS","features":[114]},{"name":"WINHTTP_OPTION_HANDLE_TYPE","features":[114]},{"name":"WINHTTP_OPTION_HTTP2_KEEPALIVE","features":[114]},{"name":"WINHTTP_OPTION_HTTP2_PLUS_TRANSFER_ENCODING","features":[114]},{"name":"WINHTTP_OPTION_HTTP2_RECEIVE_WINDOW","features":[114]},{"name":"WINHTTP_OPTION_HTTP3_HANDSHAKE_TIMEOUT","features":[114]},{"name":"WINHTTP_OPTION_HTTP3_INITIAL_RTT","features":[114]},{"name":"WINHTTP_OPTION_HTTP3_KEEPALIVE","features":[114]},{"name":"WINHTTP_OPTION_HTTP3_STREAM_ERROR_CODE","features":[114]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_REQUIRED","features":[114]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_USED","features":[114]},{"name":"WINHTTP_OPTION_HTTP_VERSION","features":[114]},{"name":"WINHTTP_OPTION_IGNORE_CERT_REVOCATION_OFFLINE","features":[114]},{"name":"WINHTTP_OPTION_IPV6_FAST_FALLBACK","features":[114]},{"name":"WINHTTP_OPTION_IS_PROXY_CONNECT_RESPONSE","features":[114]},{"name":"WINHTTP_OPTION_KDC_PROXY_SETTINGS","features":[114]},{"name":"WINHTTP_OPTION_MATCH_CONNECTION_GUID","features":[114]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[114]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_SERVER","features":[114]},{"name":"WINHTTP_OPTION_MAX_HTTP_AUTOMATIC_REDIRECTS","features":[114]},{"name":"WINHTTP_OPTION_MAX_HTTP_STATUS_CONTINUE","features":[114]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_DRAIN_SIZE","features":[114]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_HEADER_SIZE","features":[114]},{"name":"WINHTTP_OPTION_NETWORK_INTERFACE_AFFINITY","features":[114]},{"name":"WINHTTP_OPTION_PARENT_HANDLE","features":[114]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_TEXT","features":[114]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_URL","features":[114]},{"name":"WINHTTP_OPTION_PASSPORT_RETURN_URL","features":[114]},{"name":"WINHTTP_OPTION_PASSPORT_SIGN_OUT","features":[114]},{"name":"WINHTTP_OPTION_PASSWORD","features":[114]},{"name":"WINHTTP_OPTION_PROXY","features":[114]},{"name":"WINHTTP_OPTION_PROXY_DISABLE_SERVICE_CALLS","features":[114]},{"name":"WINHTTP_OPTION_PROXY_PASSWORD","features":[114]},{"name":"WINHTTP_OPTION_PROXY_RESULT_ENTRY","features":[114]},{"name":"WINHTTP_OPTION_PROXY_SPN_USED","features":[114]},{"name":"WINHTTP_OPTION_PROXY_USERNAME","features":[114]},{"name":"WINHTTP_OPTION_QUIC_STATS","features":[114]},{"name":"WINHTTP_OPTION_READ_BUFFER_SIZE","features":[114]},{"name":"WINHTTP_OPTION_RECEIVE_PROXY_CONNECT_RESPONSE","features":[114]},{"name":"WINHTTP_OPTION_RECEIVE_RESPONSE_TIMEOUT","features":[114]},{"name":"WINHTTP_OPTION_RECEIVE_TIMEOUT","features":[114]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY","features":[114]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_ALWAYS","features":[114]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DEFAULT","features":[114]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DISALLOW_HTTPS_TO_HTTP","features":[114]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_LAST","features":[114]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_NEVER","features":[114]},{"name":"WINHTTP_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[114]},{"name":"WINHTTP_OPTION_REJECT_USERPWD_IN_URL","features":[114]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION","features":[114]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[114]},{"name":"WINHTTP_OPTION_REQUEST_PRIORITY","features":[114]},{"name":"WINHTTP_OPTION_REQUEST_STATS","features":[114]},{"name":"WINHTTP_OPTION_REQUEST_TIMES","features":[114]},{"name":"WINHTTP_OPTION_REQUIRE_STREAM_END","features":[114]},{"name":"WINHTTP_OPTION_RESOLUTION_HOSTNAME","features":[114]},{"name":"WINHTTP_OPTION_RESOLVER_CACHE_CONFIG","features":[114]},{"name":"WINHTTP_OPTION_RESOLVE_TIMEOUT","features":[114]},{"name":"WINHTTP_OPTION_REVERT_IMPERSONATION_SERVER_CERT","features":[114]},{"name":"WINHTTP_OPTION_SECURE_PROTOCOLS","features":[114]},{"name":"WINHTTP_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[114]},{"name":"WINHTTP_OPTION_SECURITY_FLAGS","features":[114]},{"name":"WINHTTP_OPTION_SECURITY_INFO","features":[114]},{"name":"WINHTTP_OPTION_SECURITY_KEY_BITNESS","features":[114]},{"name":"WINHTTP_OPTION_SEND_TIMEOUT","features":[114]},{"name":"WINHTTP_OPTION_SERVER_CBT","features":[114]},{"name":"WINHTTP_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[114]},{"name":"WINHTTP_OPTION_SERVER_CERT_CONTEXT","features":[114]},{"name":"WINHTTP_OPTION_SERVER_SPN_USED","features":[114]},{"name":"WINHTTP_OPTION_SET_TOKEN_BINDING","features":[114]},{"name":"WINHTTP_OPTION_SPN","features":[114]},{"name":"WINHTTP_OPTION_SPN_MASK","features":[114]},{"name":"WINHTTP_OPTION_STREAM_ERROR_CODE","features":[114]},{"name":"WINHTTP_OPTION_TCP_FAST_OPEN","features":[114]},{"name":"WINHTTP_OPTION_TCP_KEEPALIVE","features":[114]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_HINT","features":[114]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_STATUS","features":[114]},{"name":"WINHTTP_OPTION_TLS_FALSE_START","features":[114]},{"name":"WINHTTP_OPTION_TLS_PROTOCOL_INSECURE_FALLBACK","features":[114]},{"name":"WINHTTP_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[114]},{"name":"WINHTTP_OPTION_UNLOAD_NOTIFY_EVENT","features":[114]},{"name":"WINHTTP_OPTION_UNSAFE_HEADER_PARSING","features":[114]},{"name":"WINHTTP_OPTION_UPGRADE_TO_WEB_SOCKET","features":[114]},{"name":"WINHTTP_OPTION_URL","features":[114]},{"name":"WINHTTP_OPTION_USERNAME","features":[114]},{"name":"WINHTTP_OPTION_USER_AGENT","features":[114]},{"name":"WINHTTP_OPTION_USE_GLOBAL_SERVER_CREDENTIALS","features":[114]},{"name":"WINHTTP_OPTION_USE_SESSION_SCH_CRED","features":[114]},{"name":"WINHTTP_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[114]},{"name":"WINHTTP_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[114]},{"name":"WINHTTP_OPTION_WEB_SOCKET_RECEIVE_BUFFER_SIZE","features":[114]},{"name":"WINHTTP_OPTION_WEB_SOCKET_SEND_BUFFER_SIZE","features":[114]},{"name":"WINHTTP_OPTION_WORKER_THREAD_COUNT","features":[114]},{"name":"WINHTTP_OPTION_WRITE_BUFFER_SIZE","features":[114]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP2","features":[114]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP3","features":[114]},{"name":"WINHTTP_PROXY_CHANGE_CALLBACK","features":[114]},{"name":"WINHTTP_PROXY_DISABLE_AUTH_LOCAL_SERVICE","features":[114]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_BASIC","features":[114]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_DIGEST","features":[114]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_KERBEROS","features":[114]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NEGOTIATE","features":[114]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NTLM","features":[114]},{"name":"WINHTTP_PROXY_INFO","features":[114]},{"name":"WINHTTP_PROXY_NETWORKING_KEY","features":[114]},{"name":"WINHTTP_PROXY_NOTIFY_CHANGE","features":[114]},{"name":"WINHTTP_PROXY_RESULT","features":[1,114]},{"name":"WINHTTP_PROXY_RESULT_ENTRY","features":[1,114]},{"name":"WINHTTP_PROXY_RESULT_EX","features":[1,114]},{"name":"WINHTTP_PROXY_SETTINGS","features":[1,114]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[114]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[114]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[114]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[114]},{"name":"WINHTTP_PROXY_SETTINGS_TYPE","features":[114]},{"name":"WINHTTP_PROXY_TYPE_AUTO_DETECT","features":[114]},{"name":"WINHTTP_PROXY_TYPE_AUTO_PROXY_URL","features":[114]},{"name":"WINHTTP_PROXY_TYPE_DIRECT","features":[114]},{"name":"WINHTTP_PROXY_TYPE_PROXY","features":[114]},{"name":"WINHTTP_QUERY_ACCEPT","features":[114]},{"name":"WINHTTP_QUERY_ACCEPT_CHARSET","features":[114]},{"name":"WINHTTP_QUERY_ACCEPT_ENCODING","features":[114]},{"name":"WINHTTP_QUERY_ACCEPT_LANGUAGE","features":[114]},{"name":"WINHTTP_QUERY_ACCEPT_RANGES","features":[114]},{"name":"WINHTTP_QUERY_AGE","features":[114]},{"name":"WINHTTP_QUERY_ALLOW","features":[114]},{"name":"WINHTTP_QUERY_AUTHENTICATION_INFO","features":[114]},{"name":"WINHTTP_QUERY_AUTHORIZATION","features":[114]},{"name":"WINHTTP_QUERY_CACHE_CONTROL","features":[114]},{"name":"WINHTTP_QUERY_CONNECTION","features":[114]},{"name":"WINHTTP_QUERY_CONNECTION_GROUP_RESULT","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_BASE","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_DESCRIPTION","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_DISPOSITION","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_ENCODING","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_ID","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_LANGUAGE","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_LENGTH","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_LOCATION","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_MD5","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_RANGE","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[114]},{"name":"WINHTTP_QUERY_CONTENT_TYPE","features":[114]},{"name":"WINHTTP_QUERY_COOKIE","features":[114]},{"name":"WINHTTP_QUERY_COST","features":[114]},{"name":"WINHTTP_QUERY_CUSTOM","features":[114]},{"name":"WINHTTP_QUERY_DATE","features":[114]},{"name":"WINHTTP_QUERY_DERIVED_FROM","features":[114]},{"name":"WINHTTP_QUERY_ETAG","features":[114]},{"name":"WINHTTP_QUERY_EXPECT","features":[114]},{"name":"WINHTTP_QUERY_EXPIRES","features":[114]},{"name":"WINHTTP_QUERY_EX_ALL_HEADERS","features":[114]},{"name":"WINHTTP_QUERY_FLAG_NUMBER","features":[114]},{"name":"WINHTTP_QUERY_FLAG_NUMBER64","features":[114]},{"name":"WINHTTP_QUERY_FLAG_REQUEST_HEADERS","features":[114]},{"name":"WINHTTP_QUERY_FLAG_SYSTEMTIME","features":[114]},{"name":"WINHTTP_QUERY_FLAG_TRAILERS","features":[114]},{"name":"WINHTTP_QUERY_FLAG_WIRE_ENCODING","features":[114]},{"name":"WINHTTP_QUERY_FORWARDED","features":[114]},{"name":"WINHTTP_QUERY_FROM","features":[114]},{"name":"WINHTTP_QUERY_HOST","features":[114]},{"name":"WINHTTP_QUERY_IF_MATCH","features":[114]},{"name":"WINHTTP_QUERY_IF_MODIFIED_SINCE","features":[114]},{"name":"WINHTTP_QUERY_IF_NONE_MATCH","features":[114]},{"name":"WINHTTP_QUERY_IF_RANGE","features":[114]},{"name":"WINHTTP_QUERY_IF_UNMODIFIED_SINCE","features":[114]},{"name":"WINHTTP_QUERY_LAST_MODIFIED","features":[114]},{"name":"WINHTTP_QUERY_LINK","features":[114]},{"name":"WINHTTP_QUERY_LOCATION","features":[114]},{"name":"WINHTTP_QUERY_MAX","features":[114]},{"name":"WINHTTP_QUERY_MAX_FORWARDS","features":[114]},{"name":"WINHTTP_QUERY_MESSAGE_ID","features":[114]},{"name":"WINHTTP_QUERY_MIME_VERSION","features":[114]},{"name":"WINHTTP_QUERY_ORIG_URI","features":[114]},{"name":"WINHTTP_QUERY_PASSPORT_CONFIG","features":[114]},{"name":"WINHTTP_QUERY_PASSPORT_URLS","features":[114]},{"name":"WINHTTP_QUERY_PRAGMA","features":[114]},{"name":"WINHTTP_QUERY_PROXY_AUTHENTICATE","features":[114]},{"name":"WINHTTP_QUERY_PROXY_AUTHORIZATION","features":[114]},{"name":"WINHTTP_QUERY_PROXY_CONNECTION","features":[114]},{"name":"WINHTTP_QUERY_PROXY_SUPPORT","features":[114]},{"name":"WINHTTP_QUERY_PUBLIC","features":[114]},{"name":"WINHTTP_QUERY_RANGE","features":[114]},{"name":"WINHTTP_QUERY_RAW_HEADERS","features":[114]},{"name":"WINHTTP_QUERY_RAW_HEADERS_CRLF","features":[114]},{"name":"WINHTTP_QUERY_REFERER","features":[114]},{"name":"WINHTTP_QUERY_REFRESH","features":[114]},{"name":"WINHTTP_QUERY_REQUEST_METHOD","features":[114]},{"name":"WINHTTP_QUERY_RETRY_AFTER","features":[114]},{"name":"WINHTTP_QUERY_SERVER","features":[114]},{"name":"WINHTTP_QUERY_SET_COOKIE","features":[114]},{"name":"WINHTTP_QUERY_STATUS_CODE","features":[114]},{"name":"WINHTTP_QUERY_STATUS_TEXT","features":[114]},{"name":"WINHTTP_QUERY_TITLE","features":[114]},{"name":"WINHTTP_QUERY_TRANSFER_ENCODING","features":[114]},{"name":"WINHTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[114]},{"name":"WINHTTP_QUERY_UPGRADE","features":[114]},{"name":"WINHTTP_QUERY_URI","features":[114]},{"name":"WINHTTP_QUERY_USER_AGENT","features":[114]},{"name":"WINHTTP_QUERY_VARY","features":[114]},{"name":"WINHTTP_QUERY_VERSION","features":[114]},{"name":"WINHTTP_QUERY_VIA","features":[114]},{"name":"WINHTTP_QUERY_WARNING","features":[114]},{"name":"WINHTTP_QUERY_WWW_AUTHENTICATE","features":[114]},{"name":"WINHTTP_REQUEST_STATS","features":[114]},{"name":"WINHTTP_REQUEST_STATS","features":[114]},{"name":"WINHTTP_REQUEST_STAT_ENTRY","features":[114]},{"name":"WINHTTP_REQUEST_STAT_FLAG_FIRST_REQUEST","features":[114]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_FALSE_START","features":[114]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_SESSION_RESUMPTION","features":[114]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TCP_FAST_OPEN","features":[114]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_FALSE_START","features":[114]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_SESSION_RESUMPTION","features":[114]},{"name":"WINHTTP_REQUEST_TIMES","features":[114]},{"name":"WINHTTP_REQUEST_TIMES","features":[114]},{"name":"WINHTTP_REQUEST_TIME_ENTRY","features":[114]},{"name":"WINHTTP_RESET_ALL","features":[114]},{"name":"WINHTTP_RESET_DISCARD_RESOLVERS","features":[114]},{"name":"WINHTTP_RESET_NOTIFY_NETWORK_CHANGED","features":[114]},{"name":"WINHTTP_RESET_OUT_OF_PROC","features":[114]},{"name":"WINHTTP_RESET_SCRIPT_CACHE","features":[114]},{"name":"WINHTTP_RESET_STATE","features":[114]},{"name":"WINHTTP_RESET_SWPAD_ALL","features":[114]},{"name":"WINHTTP_RESET_SWPAD_CURRENT_NETWORK","features":[114]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[114]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[114]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[114]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[114]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[114]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[114]},{"name":"WINHTTP_SECURE_DNS_SETTING","features":[114]},{"name":"WINHTTP_STATUS_CALLBACK","features":[114]},{"name":"WINHTTP_TIME_FORMAT_BUFSIZE","features":[114]},{"name":"WINHTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_ASYNC_RESULT","features":[114]},{"name":"WINHTTP_WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[114]},{"name":"WINHTTP_WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[114]},{"name":"WINHTTP_WEB_SOCKET_BUFFER_TYPE","features":[114]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[114]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_OPERATION","features":[114]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[114]},{"name":"WINHTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[114]},{"name":"WINHTTP_WEB_SOCKET_OPERATION","features":[114]},{"name":"WINHTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[114]},{"name":"WINHTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_SEND_OPERATION","features":[114]},{"name":"WINHTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[114]},{"name":"WINHTTP_WEB_SOCKET_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[114]},{"name":"WINHTTP_WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[114]},{"name":"WINHTTP_WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[114]},{"name":"WIN_HTTP_CREATE_URL_FLAGS","features":[114]},{"name":"WinHttpAddRequestHeaders","features":[1,114]},{"name":"WinHttpAddRequestHeadersEx","features":[114]},{"name":"WinHttpCheckPlatform","features":[1,114]},{"name":"WinHttpCloseHandle","features":[1,114]},{"name":"WinHttpConnect","features":[114]},{"name":"WinHttpConnectFailureCount","features":[114]},{"name":"WinHttpConnectionAcquireEnd","features":[114]},{"name":"WinHttpConnectionAcquireStart","features":[114]},{"name":"WinHttpConnectionAcquireWaitEnd","features":[114]},{"name":"WinHttpConnectionEstablishmentEnd","features":[114]},{"name":"WinHttpConnectionEstablishmentStart","features":[114]},{"name":"WinHttpCrackUrl","features":[1,114]},{"name":"WinHttpCreateProxyResolver","features":[114]},{"name":"WinHttpCreateUrl","features":[1,114]},{"name":"WinHttpDetectAutoProxyConfigUrl","features":[1,114]},{"name":"WinHttpFreeProxyResult","features":[1,114]},{"name":"WinHttpFreeProxyResultEx","features":[1,114]},{"name":"WinHttpFreeProxySettings","features":[1,114]},{"name":"WinHttpFreeProxySettingsEx","features":[114]},{"name":"WinHttpFreeQueryConnectionGroupResult","features":[114]},{"name":"WinHttpGetDefaultProxyConfiguration","features":[1,114]},{"name":"WinHttpGetIEProxyConfigForCurrentUser","features":[1,114]},{"name":"WinHttpGetProxyForUrl","features":[1,114]},{"name":"WinHttpGetProxyForUrlEx","features":[1,114]},{"name":"WinHttpGetProxyForUrlEx2","features":[1,114]},{"name":"WinHttpGetProxyResult","features":[1,114]},{"name":"WinHttpGetProxyResultEx","features":[1,114]},{"name":"WinHttpGetProxySettingsEx","features":[114]},{"name":"WinHttpGetProxySettingsResultEx","features":[114]},{"name":"WinHttpGetProxySettingsVersion","features":[114]},{"name":"WinHttpNameResolutionEnd","features":[114]},{"name":"WinHttpNameResolutionStart","features":[114]},{"name":"WinHttpOpen","features":[114]},{"name":"WinHttpOpenRequest","features":[114]},{"name":"WinHttpProxyDetectionEnd","features":[114]},{"name":"WinHttpProxyDetectionStart","features":[114]},{"name":"WinHttpProxyFailureCount","features":[114]},{"name":"WinHttpProxySettingsTypeUnknown","features":[114]},{"name":"WinHttpProxySettingsTypeWsa","features":[114]},{"name":"WinHttpProxySettingsTypeWsl","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg1End","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Size","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Start","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg2End","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Size","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Start","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg3End","features":[114]},{"name":"WinHttpProxyTlsHandshakeClientLeg3Start","features":[114]},{"name":"WinHttpProxyTlsHandshakeServerLeg1Size","features":[114]},{"name":"WinHttpProxyTlsHandshakeServerLeg2Size","features":[114]},{"name":"WinHttpProxyTunnelEnd","features":[114]},{"name":"WinHttpProxyTunnelStart","features":[114]},{"name":"WinHttpQueryAuthSchemes","features":[1,114]},{"name":"WinHttpQueryConnectionGroup","features":[114]},{"name":"WinHttpQueryDataAvailable","features":[1,114]},{"name":"WinHttpQueryHeaders","features":[1,114]},{"name":"WinHttpQueryHeadersEx","features":[114]},{"name":"WinHttpQueryOption","features":[1,114]},{"name":"WinHttpReadData","features":[1,114]},{"name":"WinHttpReadDataEx","features":[114]},{"name":"WinHttpReadProxySettings","features":[1,114]},{"name":"WinHttpReceiveResponse","features":[1,114]},{"name":"WinHttpReceiveResponseBodyDecompressionDelta","features":[114]},{"name":"WinHttpReceiveResponseEnd","features":[114]},{"name":"WinHttpReceiveResponseHeadersDecompressionEnd","features":[114]},{"name":"WinHttpReceiveResponseHeadersDecompressionStart","features":[114]},{"name":"WinHttpReceiveResponseHeadersEnd","features":[114]},{"name":"WinHttpReceiveResponseStart","features":[114]},{"name":"WinHttpRegisterProxyChangeNotification","features":[114]},{"name":"WinHttpRequest","features":[114]},{"name":"WinHttpRequestAutoLogonPolicy","features":[114]},{"name":"WinHttpRequestHeadersCompressedSize","features":[114]},{"name":"WinHttpRequestHeadersSize","features":[114]},{"name":"WinHttpRequestOption","features":[114]},{"name":"WinHttpRequestOption_EnableCertificateRevocationCheck","features":[114]},{"name":"WinHttpRequestOption_EnableHttp1_1","features":[114]},{"name":"WinHttpRequestOption_EnableHttpsToHttpRedirects","features":[114]},{"name":"WinHttpRequestOption_EnablePassportAuthentication","features":[114]},{"name":"WinHttpRequestOption_EnableRedirects","features":[114]},{"name":"WinHttpRequestOption_EnableTracing","features":[114]},{"name":"WinHttpRequestOption_EscapePercentInURL","features":[114]},{"name":"WinHttpRequestOption_MaxAutomaticRedirects","features":[114]},{"name":"WinHttpRequestOption_MaxResponseDrainSize","features":[114]},{"name":"WinHttpRequestOption_MaxResponseHeaderSize","features":[114]},{"name":"WinHttpRequestOption_RejectUserpwd","features":[114]},{"name":"WinHttpRequestOption_RevertImpersonationOverSsl","features":[114]},{"name":"WinHttpRequestOption_SecureProtocols","features":[114]},{"name":"WinHttpRequestOption_SelectCertificate","features":[114]},{"name":"WinHttpRequestOption_SslErrorIgnoreFlags","features":[114]},{"name":"WinHttpRequestOption_URL","features":[114]},{"name":"WinHttpRequestOption_URLCodePage","features":[114]},{"name":"WinHttpRequestOption_UrlEscapeDisable","features":[114]},{"name":"WinHttpRequestOption_UrlEscapeDisableQuery","features":[114]},{"name":"WinHttpRequestOption_UserAgentString","features":[114]},{"name":"WinHttpRequestSecureProtocols","features":[114]},{"name":"WinHttpRequestSslErrorFlags","features":[114]},{"name":"WinHttpRequestStatLast","features":[114]},{"name":"WinHttpRequestStatMax","features":[114]},{"name":"WinHttpRequestTimeLast","features":[114]},{"name":"WinHttpRequestTimeMax","features":[114]},{"name":"WinHttpResetAutoProxy","features":[114]},{"name":"WinHttpResponseBodyCompressedSize","features":[114]},{"name":"WinHttpResponseBodySize","features":[114]},{"name":"WinHttpResponseHeadersCompressedSize","features":[114]},{"name":"WinHttpResponseHeadersSize","features":[114]},{"name":"WinHttpSecureDnsSettingDefault","features":[114]},{"name":"WinHttpSecureDnsSettingForcePlaintext","features":[114]},{"name":"WinHttpSecureDnsSettingMax","features":[114]},{"name":"WinHttpSecureDnsSettingRequireEncryption","features":[114]},{"name":"WinHttpSecureDnsSettingTryEncryptionWithFallback","features":[114]},{"name":"WinHttpSendRequest","features":[1,114]},{"name":"WinHttpSendRequestEnd","features":[114]},{"name":"WinHttpSendRequestHeadersCompressionEnd","features":[114]},{"name":"WinHttpSendRequestHeadersCompressionStart","features":[114]},{"name":"WinHttpSendRequestHeadersEnd","features":[114]},{"name":"WinHttpSendRequestStart","features":[114]},{"name":"WinHttpSetCredentials","features":[1,114]},{"name":"WinHttpSetDefaultProxyConfiguration","features":[1,114]},{"name":"WinHttpSetOption","features":[1,114]},{"name":"WinHttpSetProxySettingsPerUser","features":[1,114]},{"name":"WinHttpSetStatusCallback","features":[114]},{"name":"WinHttpSetTimeouts","features":[1,114]},{"name":"WinHttpStreamWaitEnd","features":[114]},{"name":"WinHttpStreamWaitStart","features":[114]},{"name":"WinHttpTimeFromSystemTime","features":[1,114]},{"name":"WinHttpTimeToSystemTime","features":[1,114]},{"name":"WinHttpTlsHandshakeClientLeg1End","features":[114]},{"name":"WinHttpTlsHandshakeClientLeg1Size","features":[114]},{"name":"WinHttpTlsHandshakeClientLeg1Start","features":[114]},{"name":"WinHttpTlsHandshakeClientLeg2End","features":[114]},{"name":"WinHttpTlsHandshakeClientLeg2Size","features":[114]},{"name":"WinHttpTlsHandshakeClientLeg2Start","features":[114]},{"name":"WinHttpTlsHandshakeClientLeg3End","features":[114]},{"name":"WinHttpTlsHandshakeClientLeg3Start","features":[114]},{"name":"WinHttpTlsHandshakeServerLeg1Size","features":[114]},{"name":"WinHttpTlsHandshakeServerLeg2Size","features":[114]},{"name":"WinHttpUnregisterProxyChangeNotification","features":[114]},{"name":"WinHttpWebSocketClose","features":[114]},{"name":"WinHttpWebSocketCompleteUpgrade","features":[114]},{"name":"WinHttpWebSocketQueryCloseStatus","features":[114]},{"name":"WinHttpWebSocketReceive","features":[114]},{"name":"WinHttpWebSocketSend","features":[114]},{"name":"WinHttpWebSocketShutdown","features":[114]},{"name":"WinHttpWriteData","features":[1,114]},{"name":"WinHttpWriteProxySettings","features":[1,114]}],"476":[{"name":"ANY_CACHE_ENTRY","features":[115]},{"name":"APP_CACHE_DOWNLOAD_ENTRY","features":[115]},{"name":"APP_CACHE_DOWNLOAD_LIST","features":[115]},{"name":"APP_CACHE_ENTRY_TYPE_EXPLICIT","features":[115]},{"name":"APP_CACHE_ENTRY_TYPE_FALLBACK","features":[115]},{"name":"APP_CACHE_ENTRY_TYPE_FOREIGN","features":[115]},{"name":"APP_CACHE_ENTRY_TYPE_MANIFEST","features":[115]},{"name":"APP_CACHE_ENTRY_TYPE_MASTER","features":[115]},{"name":"APP_CACHE_FINALIZE_STATE","features":[115]},{"name":"APP_CACHE_GROUP_INFO","features":[1,115]},{"name":"APP_CACHE_GROUP_LIST","features":[1,115]},{"name":"APP_CACHE_LOOKUP_NO_MASTER_ONLY","features":[115]},{"name":"APP_CACHE_STATE","features":[115]},{"name":"AUTH_FLAG_DISABLE_BASIC_CLEARCHANNEL","features":[115]},{"name":"AUTH_FLAG_DISABLE_NEGOTIATE","features":[115]},{"name":"AUTH_FLAG_DISABLE_SERVER_AUTH","features":[115]},{"name":"AUTH_FLAG_ENABLE_NEGOTIATE","features":[115]},{"name":"AUTH_FLAG_RESET","features":[115]},{"name":"AUTODIAL_MODE_ALWAYS","features":[115]},{"name":"AUTODIAL_MODE_NEVER","features":[115]},{"name":"AUTODIAL_MODE_NO_NETWORK_PRESENT","features":[115]},{"name":"AUTO_PROXY_FLAG_ALWAYS_DETECT","features":[115]},{"name":"AUTO_PROXY_FLAG_CACHE_INIT_RUN","features":[115]},{"name":"AUTO_PROXY_FLAG_DETECTION_RUN","features":[115]},{"name":"AUTO_PROXY_FLAG_DETECTION_SUSPECT","features":[115]},{"name":"AUTO_PROXY_FLAG_DONT_CACHE_PROXY_RESULT","features":[115]},{"name":"AUTO_PROXY_FLAG_MIGRATED","features":[115]},{"name":"AUTO_PROXY_FLAG_USER_SET","features":[115]},{"name":"AUTO_PROXY_SCRIPT_BUFFER","features":[115]},{"name":"AppCacheCheckManifest","features":[115]},{"name":"AppCacheCloseHandle","features":[115]},{"name":"AppCacheCreateAndCommitFile","features":[115]},{"name":"AppCacheDeleteGroup","features":[115]},{"name":"AppCacheDeleteIEGroup","features":[115]},{"name":"AppCacheDuplicateHandle","features":[115]},{"name":"AppCacheFinalize","features":[115]},{"name":"AppCacheFinalizeStateComplete","features":[115]},{"name":"AppCacheFinalizeStateIncomplete","features":[115]},{"name":"AppCacheFinalizeStateManifestChange","features":[115]},{"name":"AppCacheFreeDownloadList","features":[115]},{"name":"AppCacheFreeGroupList","features":[1,115]},{"name":"AppCacheFreeIESpace","features":[1,115]},{"name":"AppCacheFreeSpace","features":[1,115]},{"name":"AppCacheGetDownloadList","features":[115]},{"name":"AppCacheGetFallbackUrl","features":[115]},{"name":"AppCacheGetGroupList","features":[1,115]},{"name":"AppCacheGetIEGroupList","features":[1,115]},{"name":"AppCacheGetInfo","features":[1,115]},{"name":"AppCacheGetManifestUrl","features":[115]},{"name":"AppCacheLookup","features":[115]},{"name":"AppCacheStateNoUpdateNeeded","features":[115]},{"name":"AppCacheStateUpdateNeeded","features":[115]},{"name":"AppCacheStateUpdateNeededMasterOnly","features":[115]},{"name":"AppCacheStateUpdateNeededNew","features":[115]},{"name":"AutoProxyHelperFunctions","features":[115]},{"name":"AutoProxyHelperVtbl","features":[115]},{"name":"CACHEGROUP_ATTRIBUTE_BASIC","features":[115]},{"name":"CACHEGROUP_ATTRIBUTE_FLAG","features":[115]},{"name":"CACHEGROUP_ATTRIBUTE_GET_ALL","features":[115]},{"name":"CACHEGROUP_ATTRIBUTE_GROUPNAME","features":[115]},{"name":"CACHEGROUP_ATTRIBUTE_QUOTA","features":[115]},{"name":"CACHEGROUP_ATTRIBUTE_STORAGE","features":[115]},{"name":"CACHEGROUP_ATTRIBUTE_TYPE","features":[115]},{"name":"CACHEGROUP_FLAG_FLUSHURL_ONDELETE","features":[115]},{"name":"CACHEGROUP_FLAG_GIDONLY","features":[115]},{"name":"CACHEGROUP_FLAG_NONPURGEABLE","features":[115]},{"name":"CACHEGROUP_FLAG_VALID","features":[115]},{"name":"CACHEGROUP_ID_BUILTIN_STICKY","features":[115]},{"name":"CACHEGROUP_SEARCH_ALL","features":[115]},{"name":"CACHEGROUP_SEARCH_BYURL","features":[115]},{"name":"CACHEGROUP_TYPE_INVALID","features":[115]},{"name":"CACHE_CONFIG","features":[115]},{"name":"CACHE_CONFIG_APPCONTAINER_CONTENT_QUOTA_FC","features":[115]},{"name":"CACHE_CONFIG_APPCONTAINER_TOTAL_CONTENT_QUOTA_FC","features":[115]},{"name":"CACHE_CONFIG_CONTENT_PATHS_FC","features":[115]},{"name":"CACHE_CONFIG_CONTENT_QUOTA_FC","features":[115]},{"name":"CACHE_CONFIG_CONTENT_USAGE_FC","features":[115]},{"name":"CACHE_CONFIG_COOKIES_PATHS_FC","features":[115]},{"name":"CACHE_CONFIG_DISK_CACHE_PATHS_FC","features":[115]},{"name":"CACHE_CONFIG_FORCE_CLEANUP_FC","features":[115]},{"name":"CACHE_CONFIG_HISTORY_PATHS_FC","features":[115]},{"name":"CACHE_CONFIG_QUOTA_FC","features":[115]},{"name":"CACHE_CONFIG_STICKY_CONTENT_USAGE_FC","features":[115]},{"name":"CACHE_CONFIG_SYNC_MODE_FC","features":[115]},{"name":"CACHE_CONFIG_TOTAL_CONTENT_QUOTA_FC","features":[115]},{"name":"CACHE_CONFIG_USER_MODE_FC","features":[115]},{"name":"CACHE_ENTRY_ACCTIME_FC","features":[115]},{"name":"CACHE_ENTRY_ATTRIBUTE_FC","features":[115]},{"name":"CACHE_ENTRY_EXEMPT_DELTA_FC","features":[115]},{"name":"CACHE_ENTRY_EXPTIME_FC","features":[115]},{"name":"CACHE_ENTRY_HEADERINFO_FC","features":[115]},{"name":"CACHE_ENTRY_HITRATE_FC","features":[115]},{"name":"CACHE_ENTRY_MODIFY_DATA_FC","features":[115]},{"name":"CACHE_ENTRY_MODTIME_FC","features":[115]},{"name":"CACHE_ENTRY_SYNCTIME_FC","features":[115]},{"name":"CACHE_ENTRY_TYPE_FC","features":[115]},{"name":"CACHE_FIND_CONTAINER_RETURN_NOCHANGE","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_READ_COUNT_SINCE_LAST_SCAVENGE","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_12","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_13","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_15","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_16","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_17","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_18","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_19","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_20","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_23","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_24","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_25","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_26","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_28","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_29","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_30","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_31","features":[115]},{"name":"CACHE_HEADER_DATA_CACHE_WRITE_COUNT_SINCE_LAST_SCAVENGE","features":[115]},{"name":"CACHE_HEADER_DATA_CONLIST_CHANGE_COUNT","features":[115]},{"name":"CACHE_HEADER_DATA_COOKIE_CHANGE_COUNT","features":[115]},{"name":"CACHE_HEADER_DATA_CURRENT_SETTINGS_VERSION","features":[115]},{"name":"CACHE_HEADER_DATA_DOWNLOAD_PARTIAL","features":[115]},{"name":"CACHE_HEADER_DATA_GID_HIGH","features":[115]},{"name":"CACHE_HEADER_DATA_GID_LOW","features":[115]},{"name":"CACHE_HEADER_DATA_HSTS_CHANGE_COUNT","features":[115]},{"name":"CACHE_HEADER_DATA_LAST","features":[115]},{"name":"CACHE_HEADER_DATA_LAST_SCAVENGE_TIMESTAMP","features":[115]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_FILTER","features":[115]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_HWND","features":[115]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_MESG","features":[115]},{"name":"CACHE_HEADER_DATA_ROOTGROUP_OFFSET","features":[115]},{"name":"CACHE_HEADER_DATA_ROOT_GROUPLIST_OFFSET","features":[115]},{"name":"CACHE_HEADER_DATA_ROOT_LEAK_OFFSET","features":[115]},{"name":"CACHE_HEADER_DATA_SSL_STATE_COUNT","features":[115]},{"name":"CACHE_NOTIFY_ADD_URL","features":[115]},{"name":"CACHE_NOTIFY_DELETE_ALL","features":[115]},{"name":"CACHE_NOTIFY_DELETE_URL","features":[115]},{"name":"CACHE_NOTIFY_FILTER_CHANGED","features":[115]},{"name":"CACHE_NOTIFY_SET_OFFLINE","features":[115]},{"name":"CACHE_NOTIFY_SET_ONLINE","features":[115]},{"name":"CACHE_NOTIFY_UPDATE_URL","features":[115]},{"name":"CACHE_NOTIFY_URL_SET_STICKY","features":[115]},{"name":"CACHE_NOTIFY_URL_UNSET_STICKY","features":[115]},{"name":"CACHE_OPERATOR","features":[1,115]},{"name":"COOKIE_ACCEPTED_CACHE_ENTRY","features":[115]},{"name":"COOKIE_ALLOW","features":[115]},{"name":"COOKIE_ALLOW_ALL","features":[115]},{"name":"COOKIE_CACHE_ENTRY","features":[115]},{"name":"COOKIE_DLG_INFO","features":[1,115]},{"name":"COOKIE_DONT_ALLOW","features":[115]},{"name":"COOKIE_DONT_ALLOW_ALL","features":[115]},{"name":"COOKIE_DOWNGRADED_CACHE_ENTRY","features":[115]},{"name":"COOKIE_LEASHED_CACHE_ENTRY","features":[115]},{"name":"COOKIE_OP_3RD_PARTY","features":[115]},{"name":"COOKIE_OP_GET","features":[115]},{"name":"COOKIE_OP_MODIFY","features":[115]},{"name":"COOKIE_OP_PERSISTENT","features":[115]},{"name":"COOKIE_OP_SESSION","features":[115]},{"name":"COOKIE_OP_SET","features":[115]},{"name":"COOKIE_REJECTED_CACHE_ENTRY","features":[115]},{"name":"COOKIE_STATE_ACCEPT","features":[115]},{"name":"COOKIE_STATE_DOWNGRADE","features":[115]},{"name":"COOKIE_STATE_LB","features":[115]},{"name":"COOKIE_STATE_LEASH","features":[115]},{"name":"COOKIE_STATE_MAX","features":[115]},{"name":"COOKIE_STATE_PROMPT","features":[115]},{"name":"COOKIE_STATE_REJECT","features":[115]},{"name":"COOKIE_STATE_UB","features":[115]},{"name":"COOKIE_STATE_UNKNOWN","features":[115]},{"name":"CommitUrlCacheEntryA","features":[1,115]},{"name":"CommitUrlCacheEntryBinaryBlob","features":[1,115]},{"name":"CommitUrlCacheEntryW","features":[1,115]},{"name":"ConnectionEstablishmentEnd","features":[115]},{"name":"ConnectionEstablishmentStart","features":[115]},{"name":"CookieDecision","features":[1,115]},{"name":"CreateMD5SSOHash","features":[1,115]},{"name":"CreateUrlCacheContainerA","features":[1,115]},{"name":"CreateUrlCacheContainerW","features":[1,115]},{"name":"CreateUrlCacheEntryA","features":[1,115]},{"name":"CreateUrlCacheEntryExW","features":[1,115]},{"name":"CreateUrlCacheEntryW","features":[1,115]},{"name":"CreateUrlCacheGroup","features":[115]},{"name":"DIALENG_OperationComplete","features":[115]},{"name":"DIALENG_RedialAttempt","features":[115]},{"name":"DIALENG_RedialWait","features":[115]},{"name":"DIALPROP_DOMAIN","features":[115]},{"name":"DIALPROP_LASTERROR","features":[115]},{"name":"DIALPROP_PASSWORD","features":[115]},{"name":"DIALPROP_PHONENUMBER","features":[115]},{"name":"DIALPROP_REDIALCOUNT","features":[115]},{"name":"DIALPROP_REDIALINTERVAL","features":[115]},{"name":"DIALPROP_RESOLVEDPHONE","features":[115]},{"name":"DIALPROP_SAVEPASSWORD","features":[115]},{"name":"DIALPROP_USERNAME","features":[115]},{"name":"DLG_FLAGS_INSECURE_FALLBACK","features":[115]},{"name":"DLG_FLAGS_INVALID_CA","features":[115]},{"name":"DLG_FLAGS_SEC_CERT_CN_INVALID","features":[115]},{"name":"DLG_FLAGS_SEC_CERT_DATE_INVALID","features":[115]},{"name":"DLG_FLAGS_SEC_CERT_REV_FAILED","features":[115]},{"name":"DLG_FLAGS_WEAK_SIGNATURE","features":[115]},{"name":"DOWNLOAD_CACHE_ENTRY","features":[115]},{"name":"DUO_PROTOCOL_FLAG_SPDY3","features":[115]},{"name":"DUO_PROTOCOL_MASK","features":[115]},{"name":"DeleteIE3Cache","features":[1,115]},{"name":"DeleteUrlCacheContainerA","features":[1,115]},{"name":"DeleteUrlCacheContainerW","features":[1,115]},{"name":"DeleteUrlCacheEntry","features":[1,115]},{"name":"DeleteUrlCacheEntryA","features":[1,115]},{"name":"DeleteUrlCacheEntryW","features":[1,115]},{"name":"DeleteUrlCacheGroup","features":[1,115]},{"name":"DeleteWpadCacheForNetworks","features":[1,115]},{"name":"DetectAutoProxyUrl","features":[1,115]},{"name":"DoConnectoidsExist","features":[1,115]},{"name":"EDITED_CACHE_ENTRY","features":[115]},{"name":"ERROR_FTP_DROPPED","features":[115]},{"name":"ERROR_FTP_NO_PASSIVE_MODE","features":[115]},{"name":"ERROR_FTP_TRANSFER_IN_PROGRESS","features":[115]},{"name":"ERROR_GOPHER_ATTRIBUTE_NOT_FOUND","features":[115]},{"name":"ERROR_GOPHER_DATA_ERROR","features":[115]},{"name":"ERROR_GOPHER_END_OF_DATA","features":[115]},{"name":"ERROR_GOPHER_INCORRECT_LOCATOR_TYPE","features":[115]},{"name":"ERROR_GOPHER_INVALID_LOCATOR","features":[115]},{"name":"ERROR_GOPHER_NOT_FILE","features":[115]},{"name":"ERROR_GOPHER_NOT_GOPHER_PLUS","features":[115]},{"name":"ERROR_GOPHER_PROTOCOL_ERROR","features":[115]},{"name":"ERROR_GOPHER_UNKNOWN_LOCATOR","features":[115]},{"name":"ERROR_HTTP_COOKIE_DECLINED","features":[115]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION","features":[115]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION_EX","features":[115]},{"name":"ERROR_HTTP_DOWNLEVEL_SERVER","features":[115]},{"name":"ERROR_HTTP_HEADER_ALREADY_EXISTS","features":[115]},{"name":"ERROR_HTTP_HEADER_NOT_FOUND","features":[115]},{"name":"ERROR_HTTP_HSTS_REDIRECT_REQUIRED","features":[115]},{"name":"ERROR_HTTP_INVALID_HEADER","features":[115]},{"name":"ERROR_HTTP_INVALID_QUERY_REQUEST","features":[115]},{"name":"ERROR_HTTP_INVALID_SERVER_RESPONSE","features":[115]},{"name":"ERROR_HTTP_NOT_REDIRECTED","features":[115]},{"name":"ERROR_HTTP_PUSH_ENABLE_FAILED","features":[115]},{"name":"ERROR_HTTP_PUSH_RETRY_NOT_SUPPORTED","features":[115]},{"name":"ERROR_HTTP_PUSH_STATUS_CODE_NOT_SUPPORTED","features":[115]},{"name":"ERROR_HTTP_REDIRECT_FAILED","features":[115]},{"name":"ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION","features":[115]},{"name":"ERROR_INTERNET_ASYNC_THREAD_FAILED","features":[115]},{"name":"ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT","features":[115]},{"name":"ERROR_INTERNET_BAD_OPTION_LENGTH","features":[115]},{"name":"ERROR_INTERNET_BAD_REGISTRY_PARAMETER","features":[115]},{"name":"ERROR_INTERNET_CACHE_SUCCESS","features":[115]},{"name":"ERROR_INTERNET_CANNOT_CONNECT","features":[115]},{"name":"ERROR_INTERNET_CHG_POST_IS_NON_SECURE","features":[115]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED","features":[115]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[115]},{"name":"ERROR_INTERNET_CLIENT_AUTH_NOT_SETUP","features":[115]},{"name":"ERROR_INTERNET_CONNECTION_ABORTED","features":[115]},{"name":"ERROR_INTERNET_CONNECTION_AVAILABLE","features":[115]},{"name":"ERROR_INTERNET_CONNECTION_RESET","features":[115]},{"name":"ERROR_INTERNET_DECODING_FAILED","features":[115]},{"name":"ERROR_INTERNET_DIALOG_PENDING","features":[115]},{"name":"ERROR_INTERNET_DISALLOW_INPRIVATE","features":[115]},{"name":"ERROR_INTERNET_DISCONNECTED","features":[115]},{"name":"ERROR_INTERNET_EXTENDED_ERROR","features":[115]},{"name":"ERROR_INTERNET_FAILED_DUETOSECURITYCHECK","features":[115]},{"name":"ERROR_INTERNET_FEATURE_DISABLED","features":[115]},{"name":"ERROR_INTERNET_FORCE_RETRY","features":[115]},{"name":"ERROR_INTERNET_FORTEZZA_LOGIN_NEEDED","features":[115]},{"name":"ERROR_INTERNET_GLOBAL_CALLBACK_FAILED","features":[115]},{"name":"ERROR_INTERNET_HANDLE_EXISTS","features":[115]},{"name":"ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR","features":[115]},{"name":"ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR","features":[115]},{"name":"ERROR_INTERNET_HTTP_PROTOCOL_MISMATCH","features":[115]},{"name":"ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR","features":[115]},{"name":"ERROR_INTERNET_INCORRECT_FORMAT","features":[115]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_STATE","features":[115]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_TYPE","features":[115]},{"name":"ERROR_INTERNET_INCORRECT_PASSWORD","features":[115]},{"name":"ERROR_INTERNET_INCORRECT_USER_NAME","features":[115]},{"name":"ERROR_INTERNET_INSECURE_FALLBACK_REQUIRED","features":[115]},{"name":"ERROR_INTERNET_INSERT_CDROM","features":[115]},{"name":"ERROR_INTERNET_INTERNAL_ERROR","features":[115]},{"name":"ERROR_INTERNET_INTERNAL_SOCKET_ERROR","features":[115]},{"name":"ERROR_INTERNET_INVALID_CA","features":[115]},{"name":"ERROR_INTERNET_INVALID_OPERATION","features":[115]},{"name":"ERROR_INTERNET_INVALID_OPTION","features":[115]},{"name":"ERROR_INTERNET_INVALID_PROXY_REQUEST","features":[115]},{"name":"ERROR_INTERNET_INVALID_URL","features":[115]},{"name":"ERROR_INTERNET_ITEM_NOT_FOUND","features":[115]},{"name":"ERROR_INTERNET_LOGIN_FAILURE","features":[115]},{"name":"ERROR_INTERNET_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[115]},{"name":"ERROR_INTERNET_MIXED_SECURITY","features":[115]},{"name":"ERROR_INTERNET_NAME_NOT_RESOLVED","features":[115]},{"name":"ERROR_INTERNET_NEED_MSN_SSPI_PKG","features":[115]},{"name":"ERROR_INTERNET_NEED_UI","features":[115]},{"name":"ERROR_INTERNET_NOT_INITIALIZED","features":[115]},{"name":"ERROR_INTERNET_NOT_PROXY_REQUEST","features":[115]},{"name":"ERROR_INTERNET_NO_CALLBACK","features":[115]},{"name":"ERROR_INTERNET_NO_CM_CONNECTION","features":[115]},{"name":"ERROR_INTERNET_NO_CONTEXT","features":[115]},{"name":"ERROR_INTERNET_NO_DIRECT_ACCESS","features":[115]},{"name":"ERROR_INTERNET_NO_KNOWN_SERVERS","features":[115]},{"name":"ERROR_INTERNET_NO_NEW_CONTAINERS","features":[115]},{"name":"ERROR_INTERNET_NO_PING_SUPPORT","features":[115]},{"name":"ERROR_INTERNET_OFFLINE","features":[115]},{"name":"ERROR_INTERNET_OPERATION_CANCELLED","features":[115]},{"name":"ERROR_INTERNET_OPTION_NOT_SETTABLE","features":[115]},{"name":"ERROR_INTERNET_OUT_OF_HANDLES","features":[115]},{"name":"ERROR_INTERNET_PING_FAILED","features":[115]},{"name":"ERROR_INTERNET_POST_IS_NON_SECURE","features":[115]},{"name":"ERROR_INTERNET_PROTOCOL_NOT_FOUND","features":[115]},{"name":"ERROR_INTERNET_PROXY_ALERT","features":[115]},{"name":"ERROR_INTERNET_PROXY_SERVER_UNREACHABLE","features":[115]},{"name":"ERROR_INTERNET_REDIRECT_SCHEME_CHANGE","features":[115]},{"name":"ERROR_INTERNET_REGISTRY_VALUE_NOT_FOUND","features":[115]},{"name":"ERROR_INTERNET_REQUEST_PENDING","features":[115]},{"name":"ERROR_INTERNET_RETRY_DIALOG","features":[115]},{"name":"ERROR_INTERNET_SECURE_FAILURE_PROXY","features":[115]},{"name":"ERROR_INTERNET_SECURITY_CHANNEL_ERROR","features":[115]},{"name":"ERROR_INTERNET_SEC_CERT_CN_INVALID","features":[115]},{"name":"ERROR_INTERNET_SEC_CERT_DATE_INVALID","features":[115]},{"name":"ERROR_INTERNET_SEC_CERT_ERRORS","features":[115]},{"name":"ERROR_INTERNET_SEC_CERT_NO_REV","features":[115]},{"name":"ERROR_INTERNET_SEC_CERT_REVOKED","features":[115]},{"name":"ERROR_INTERNET_SEC_CERT_REV_FAILED","features":[115]},{"name":"ERROR_INTERNET_SEC_CERT_WEAK_SIGNATURE","features":[115]},{"name":"ERROR_INTERNET_SEC_INVALID_CERT","features":[115]},{"name":"ERROR_INTERNET_SERVER_UNREACHABLE","features":[115]},{"name":"ERROR_INTERNET_SHUTDOWN","features":[115]},{"name":"ERROR_INTERNET_SOURCE_PORT_IN_USE","features":[115]},{"name":"ERROR_INTERNET_TCPIP_NOT_INSTALLED","features":[115]},{"name":"ERROR_INTERNET_TIMEOUT","features":[115]},{"name":"ERROR_INTERNET_UNABLE_TO_CACHE_FILE","features":[115]},{"name":"ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT","features":[115]},{"name":"ERROR_INTERNET_UNRECOGNIZED_SCHEME","features":[115]},{"name":"ExportCookieFileA","features":[1,115]},{"name":"ExportCookieFileW","features":[1,115]},{"name":"FLAGS_ERROR_UI_FILTER_FOR_ERRORS","features":[115]},{"name":"FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS","features":[115]},{"name":"FLAGS_ERROR_UI_FLAGS_GENERATE_DATA","features":[115]},{"name":"FLAGS_ERROR_UI_FLAGS_NO_UI","features":[115]},{"name":"FLAGS_ERROR_UI_SERIALIZE_DIALOGS","features":[115]},{"name":"FLAGS_ERROR_UI_SHOW_IDN_HOSTNAME","features":[115]},{"name":"FLAG_ICC_FORCE_CONNECTION","features":[115]},{"name":"FORTCMD","features":[115]},{"name":"FORTCMD_CHG_PERSONALITY","features":[115]},{"name":"FORTCMD_LOGOFF","features":[115]},{"name":"FORTCMD_LOGON","features":[115]},{"name":"FORTSTAT","features":[115]},{"name":"FORTSTAT_INSTALLED","features":[115]},{"name":"FORTSTAT_LOGGEDON","features":[115]},{"name":"FTP_FLAGS","features":[115]},{"name":"FTP_TRANSFER_TYPE_ASCII","features":[115]},{"name":"FTP_TRANSFER_TYPE_BINARY","features":[115]},{"name":"FTP_TRANSFER_TYPE_UNKNOWN","features":[115]},{"name":"FindCloseUrlCache","features":[1,115]},{"name":"FindFirstUrlCacheContainerA","features":[1,115]},{"name":"FindFirstUrlCacheContainerW","features":[1,115]},{"name":"FindFirstUrlCacheEntryA","features":[1,115]},{"name":"FindFirstUrlCacheEntryExA","features":[1,115]},{"name":"FindFirstUrlCacheEntryExW","features":[1,115]},{"name":"FindFirstUrlCacheEntryW","features":[1,115]},{"name":"FindFirstUrlCacheGroup","features":[1,115]},{"name":"FindNextUrlCacheContainerA","features":[1,115]},{"name":"FindNextUrlCacheContainerW","features":[1,115]},{"name":"FindNextUrlCacheEntryA","features":[1,115]},{"name":"FindNextUrlCacheEntryExA","features":[1,115]},{"name":"FindNextUrlCacheEntryExW","features":[1,115]},{"name":"FindNextUrlCacheEntryW","features":[1,115]},{"name":"FindNextUrlCacheGroup","features":[1,115]},{"name":"FindP3PPolicySymbol","features":[115]},{"name":"FreeUrlCacheSpaceA","features":[1,115]},{"name":"FreeUrlCacheSpaceW","features":[1,115]},{"name":"FtpCommandA","features":[1,115]},{"name":"FtpCommandW","features":[1,115]},{"name":"FtpCreateDirectoryA","features":[1,115]},{"name":"FtpCreateDirectoryW","features":[1,115]},{"name":"FtpDeleteFileA","features":[1,115]},{"name":"FtpDeleteFileW","features":[1,115]},{"name":"FtpFindFirstFileA","features":[1,115,21]},{"name":"FtpFindFirstFileW","features":[1,115,21]},{"name":"FtpGetCurrentDirectoryA","features":[1,115]},{"name":"FtpGetCurrentDirectoryW","features":[1,115]},{"name":"FtpGetFileA","features":[1,115]},{"name":"FtpGetFileEx","features":[1,115]},{"name":"FtpGetFileSize","features":[115]},{"name":"FtpGetFileW","features":[1,115]},{"name":"FtpOpenFileA","features":[115]},{"name":"FtpOpenFileW","features":[115]},{"name":"FtpPutFileA","features":[1,115]},{"name":"FtpPutFileEx","features":[1,115]},{"name":"FtpPutFileW","features":[1,115]},{"name":"FtpRemoveDirectoryA","features":[1,115]},{"name":"FtpRemoveDirectoryW","features":[1,115]},{"name":"FtpRenameFileA","features":[1,115]},{"name":"FtpRenameFileW","features":[1,115]},{"name":"FtpSetCurrentDirectoryA","features":[1,115]},{"name":"FtpSetCurrentDirectoryW","features":[1,115]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE","features":[115]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_ABSTRACT_CATEGORY","features":[115]},{"name":"GOPHER_ADMIN_ATTRIBUTE","features":[115]},{"name":"GOPHER_ADMIN_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_ADMIN_CATEGORY","features":[115]},{"name":"GOPHER_ASK_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_ATTRIBUTE_ENUMERATOR","features":[1,115]},{"name":"GOPHER_ATTRIBUTE_ID_ABSTRACT","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_ADMIN","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_ALL","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_BASE","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_GEOG","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_LOCATION","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_MOD_DATE","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_ORG","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_PROVIDER","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_RANGE","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_SCORE","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_SITE","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_TIMEZONE","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_TREEWALK","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_TTL","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_UNKNOWN","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_VERSION","features":[115]},{"name":"GOPHER_ATTRIBUTE_ID_VIEW","features":[115]},{"name":"GOPHER_ATTRIBUTE_TYPE","features":[1,115]},{"name":"GOPHER_CATEGORY_ID_ABSTRACT","features":[115]},{"name":"GOPHER_CATEGORY_ID_ADMIN","features":[115]},{"name":"GOPHER_CATEGORY_ID_ALL","features":[115]},{"name":"GOPHER_CATEGORY_ID_ASK","features":[115]},{"name":"GOPHER_CATEGORY_ID_INFO","features":[115]},{"name":"GOPHER_CATEGORY_ID_UNKNOWN","features":[115]},{"name":"GOPHER_CATEGORY_ID_VERONICA","features":[115]},{"name":"GOPHER_CATEGORY_ID_VIEWS","features":[115]},{"name":"GOPHER_FIND_DATAA","features":[1,115]},{"name":"GOPHER_FIND_DATAW","features":[1,115]},{"name":"GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_GEOG_ATTRIBUTE","features":[115]},{"name":"GOPHER_INFO_CATEGORY","features":[115]},{"name":"GOPHER_LOCATION_ATTRIBUTE","features":[115]},{"name":"GOPHER_LOCATION_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE","features":[115]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE_TYPE","features":[1,115]},{"name":"GOPHER_ORGANIZATION_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_ORG_ATTRIBUTE","features":[115]},{"name":"GOPHER_PROVIDER_ATTRIBUTE","features":[115]},{"name":"GOPHER_PROVIDER_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_RANGE_ATTRIBUTE","features":[115]},{"name":"GOPHER_SCORE_ATTRIBUTE","features":[115]},{"name":"GOPHER_SCORE_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_SITE_ATTRIBUTE","features":[115]},{"name":"GOPHER_SITE_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE","features":[115]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_TREEWALK_ATTRIBUTE","features":[115]},{"name":"GOPHER_TTL_ATTRIBUTE","features":[115]},{"name":"GOPHER_TTL_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_TYPE","features":[115]},{"name":"GOPHER_TYPE_ASK","features":[115]},{"name":"GOPHER_TYPE_BINARY","features":[115]},{"name":"GOPHER_TYPE_BITMAP","features":[115]},{"name":"GOPHER_TYPE_CALENDAR","features":[115]},{"name":"GOPHER_TYPE_CSO","features":[115]},{"name":"GOPHER_TYPE_DIRECTORY","features":[115]},{"name":"GOPHER_TYPE_DOS_ARCHIVE","features":[115]},{"name":"GOPHER_TYPE_ERROR","features":[115]},{"name":"GOPHER_TYPE_GIF","features":[115]},{"name":"GOPHER_TYPE_GOPHER_PLUS","features":[115]},{"name":"GOPHER_TYPE_HTML","features":[115]},{"name":"GOPHER_TYPE_IMAGE","features":[115]},{"name":"GOPHER_TYPE_INDEX_SERVER","features":[115]},{"name":"GOPHER_TYPE_INLINE","features":[115]},{"name":"GOPHER_TYPE_MAC_BINHEX","features":[115]},{"name":"GOPHER_TYPE_MOVIE","features":[115]},{"name":"GOPHER_TYPE_PDF","features":[115]},{"name":"GOPHER_TYPE_REDUNDANT","features":[115]},{"name":"GOPHER_TYPE_SOUND","features":[115]},{"name":"GOPHER_TYPE_TELNET","features":[115]},{"name":"GOPHER_TYPE_TEXT_FILE","features":[115]},{"name":"GOPHER_TYPE_TN3270","features":[115]},{"name":"GOPHER_TYPE_UNIX_UUENCODED","features":[115]},{"name":"GOPHER_TYPE_UNKNOWN","features":[115]},{"name":"GOPHER_UNKNOWN_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_VERONICA_ATTRIBUTE_TYPE","features":[1,115]},{"name":"GOPHER_VERONICA_CATEGORY","features":[115]},{"name":"GOPHER_VERSION_ATTRIBUTE","features":[115]},{"name":"GOPHER_VERSION_ATTRIBUTE_TYPE","features":[115]},{"name":"GOPHER_VIEWS_CATEGORY","features":[115]},{"name":"GOPHER_VIEW_ATTRIBUTE","features":[115]},{"name":"GOPHER_VIEW_ATTRIBUTE_TYPE","features":[115]},{"name":"GROUPNAME_MAX_LENGTH","features":[115]},{"name":"GROUP_OWNER_STORAGE_SIZE","features":[115]},{"name":"GetDiskInfoA","features":[1,115]},{"name":"GetUrlCacheConfigInfoA","features":[1,115]},{"name":"GetUrlCacheConfigInfoW","features":[1,115]},{"name":"GetUrlCacheEntryBinaryBlob","features":[1,115]},{"name":"GetUrlCacheEntryInfoA","features":[1,115]},{"name":"GetUrlCacheEntryInfoExA","features":[1,115]},{"name":"GetUrlCacheEntryInfoExW","features":[1,115]},{"name":"GetUrlCacheEntryInfoW","features":[1,115]},{"name":"GetUrlCacheGroupAttributeA","features":[1,115]},{"name":"GetUrlCacheGroupAttributeW","features":[1,115]},{"name":"GetUrlCacheHeaderData","features":[1,115]},{"name":"GopherCreateLocatorA","features":[1,115]},{"name":"GopherCreateLocatorW","features":[1,115]},{"name":"GopherFindFirstFileA","features":[1,115]},{"name":"GopherFindFirstFileW","features":[1,115]},{"name":"GopherGetAttributeA","features":[1,115]},{"name":"GopherGetAttributeW","features":[1,115]},{"name":"GopherGetLocatorTypeA","features":[1,115]},{"name":"GopherGetLocatorTypeW","features":[1,115]},{"name":"GopherOpenFileA","features":[115]},{"name":"GopherOpenFileW","features":[115]},{"name":"HSR_ASYNC","features":[115]},{"name":"HSR_CHUNKED","features":[115]},{"name":"HSR_DOWNLOAD","features":[115]},{"name":"HSR_INITIATE","features":[115]},{"name":"HSR_SYNC","features":[115]},{"name":"HSR_USE_CONTEXT","features":[115]},{"name":"HTTP_1_1_CACHE_ENTRY","features":[115]},{"name":"HTTP_ADDREQ_FLAG","features":[115]},{"name":"HTTP_ADDREQ_FLAGS_MASK","features":[115]},{"name":"HTTP_ADDREQ_FLAG_ADD","features":[115]},{"name":"HTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[115]},{"name":"HTTP_ADDREQ_FLAG_ALLOW_EMPTY_VALUES","features":[115]},{"name":"HTTP_ADDREQ_FLAG_COALESCE","features":[115]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[115]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[115]},{"name":"HTTP_ADDREQ_FLAG_REPLACE","features":[115]},{"name":"HTTP_ADDREQ_FLAG_RESPONSE_HEADERS","features":[115]},{"name":"HTTP_ADDREQ_INDEX_MASK","features":[115]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE","features":[115]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE_LAX","features":[115]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_MAX","features":[115]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_SAME_SITE","features":[115]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_UNKNOWN","features":[115]},{"name":"HTTP_MAJOR_VERSION","features":[115]},{"name":"HTTP_MINOR_VERSION","features":[115]},{"name":"HTTP_POLICY_EXTENSION_INIT","features":[115]},{"name":"HTTP_POLICY_EXTENSION_SHUTDOWN","features":[115]},{"name":"HTTP_POLICY_EXTENSION_TYPE","features":[115]},{"name":"HTTP_POLICY_EXTENSION_VERSION","features":[115]},{"name":"HTTP_PROTOCOL_FLAG_HTTP2","features":[115]},{"name":"HTTP_PROTOCOL_MASK","features":[115]},{"name":"HTTP_PUSH_NOTIFICATION_STATUS","features":[1,115]},{"name":"HTTP_PUSH_TRANSPORT_SETTING","features":[115]},{"name":"HTTP_PUSH_WAIT_HANDLE","features":[115]},{"name":"HTTP_PUSH_WAIT_TYPE","features":[115]},{"name":"HTTP_QUERY_ACCEPT","features":[115]},{"name":"HTTP_QUERY_ACCEPT_CHARSET","features":[115]},{"name":"HTTP_QUERY_ACCEPT_ENCODING","features":[115]},{"name":"HTTP_QUERY_ACCEPT_LANGUAGE","features":[115]},{"name":"HTTP_QUERY_ACCEPT_RANGES","features":[115]},{"name":"HTTP_QUERY_AGE","features":[115]},{"name":"HTTP_QUERY_ALLOW","features":[115]},{"name":"HTTP_QUERY_AUTHENTICATION_INFO","features":[115]},{"name":"HTTP_QUERY_AUTHORIZATION","features":[115]},{"name":"HTTP_QUERY_CACHE_CONTROL","features":[115]},{"name":"HTTP_QUERY_CONNECTION","features":[115]},{"name":"HTTP_QUERY_CONTENT_BASE","features":[115]},{"name":"HTTP_QUERY_CONTENT_DESCRIPTION","features":[115]},{"name":"HTTP_QUERY_CONTENT_DISPOSITION","features":[115]},{"name":"HTTP_QUERY_CONTENT_ENCODING","features":[115]},{"name":"HTTP_QUERY_CONTENT_ID","features":[115]},{"name":"HTTP_QUERY_CONTENT_LANGUAGE","features":[115]},{"name":"HTTP_QUERY_CONTENT_LENGTH","features":[115]},{"name":"HTTP_QUERY_CONTENT_LOCATION","features":[115]},{"name":"HTTP_QUERY_CONTENT_MD5","features":[115]},{"name":"HTTP_QUERY_CONTENT_RANGE","features":[115]},{"name":"HTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[115]},{"name":"HTTP_QUERY_CONTENT_TYPE","features":[115]},{"name":"HTTP_QUERY_COOKIE","features":[115]},{"name":"HTTP_QUERY_COST","features":[115]},{"name":"HTTP_QUERY_CUSTOM","features":[115]},{"name":"HTTP_QUERY_DATE","features":[115]},{"name":"HTTP_QUERY_DEFAULT_STYLE","features":[115]},{"name":"HTTP_QUERY_DERIVED_FROM","features":[115]},{"name":"HTTP_QUERY_DO_NOT_TRACK","features":[115]},{"name":"HTTP_QUERY_ECHO_HEADERS","features":[115]},{"name":"HTTP_QUERY_ECHO_HEADERS_CRLF","features":[115]},{"name":"HTTP_QUERY_ECHO_REPLY","features":[115]},{"name":"HTTP_QUERY_ECHO_REQUEST","features":[115]},{"name":"HTTP_QUERY_ETAG","features":[115]},{"name":"HTTP_QUERY_EXPECT","features":[115]},{"name":"HTTP_QUERY_EXPIRES","features":[115]},{"name":"HTTP_QUERY_FLAG_COALESCE","features":[115]},{"name":"HTTP_QUERY_FLAG_COALESCE_WITH_COMMA","features":[115]},{"name":"HTTP_QUERY_FLAG_NUMBER","features":[115]},{"name":"HTTP_QUERY_FLAG_NUMBER64","features":[115]},{"name":"HTTP_QUERY_FLAG_REQUEST_HEADERS","features":[115]},{"name":"HTTP_QUERY_FLAG_SYSTEMTIME","features":[115]},{"name":"HTTP_QUERY_FORWARDED","features":[115]},{"name":"HTTP_QUERY_FROM","features":[115]},{"name":"HTTP_QUERY_HOST","features":[115]},{"name":"HTTP_QUERY_HTTP2_SETTINGS","features":[115]},{"name":"HTTP_QUERY_IF_MATCH","features":[115]},{"name":"HTTP_QUERY_IF_MODIFIED_SINCE","features":[115]},{"name":"HTTP_QUERY_IF_NONE_MATCH","features":[115]},{"name":"HTTP_QUERY_IF_RANGE","features":[115]},{"name":"HTTP_QUERY_IF_UNMODIFIED_SINCE","features":[115]},{"name":"HTTP_QUERY_INCLUDE_REFERER_TOKEN_BINDING_ID","features":[115]},{"name":"HTTP_QUERY_INCLUDE_REFERRED_TOKEN_BINDING_ID","features":[115]},{"name":"HTTP_QUERY_KEEP_ALIVE","features":[115]},{"name":"HTTP_QUERY_LAST_MODIFIED","features":[115]},{"name":"HTTP_QUERY_LINK","features":[115]},{"name":"HTTP_QUERY_LOCATION","features":[115]},{"name":"HTTP_QUERY_MAX","features":[115]},{"name":"HTTP_QUERY_MAX_FORWARDS","features":[115]},{"name":"HTTP_QUERY_MESSAGE_ID","features":[115]},{"name":"HTTP_QUERY_MIME_VERSION","features":[115]},{"name":"HTTP_QUERY_ORIG_URI","features":[115]},{"name":"HTTP_QUERY_P3P","features":[115]},{"name":"HTTP_QUERY_PASSPORT_CONFIG","features":[115]},{"name":"HTTP_QUERY_PASSPORT_URLS","features":[115]},{"name":"HTTP_QUERY_PRAGMA","features":[115]},{"name":"HTTP_QUERY_PROXY_AUTHENTICATE","features":[115]},{"name":"HTTP_QUERY_PROXY_AUTHORIZATION","features":[115]},{"name":"HTTP_QUERY_PROXY_CONNECTION","features":[115]},{"name":"HTTP_QUERY_PROXY_SUPPORT","features":[115]},{"name":"HTTP_QUERY_PUBLIC","features":[115]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS","features":[115]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS_REPORT_ONLY","features":[115]},{"name":"HTTP_QUERY_RANGE","features":[115]},{"name":"HTTP_QUERY_RAW_HEADERS","features":[115]},{"name":"HTTP_QUERY_RAW_HEADERS_CRLF","features":[115]},{"name":"HTTP_QUERY_REFERER","features":[115]},{"name":"HTTP_QUERY_REFRESH","features":[115]},{"name":"HTTP_QUERY_REQUEST_METHOD","features":[115]},{"name":"HTTP_QUERY_RETRY_AFTER","features":[115]},{"name":"HTTP_QUERY_SERVER","features":[115]},{"name":"HTTP_QUERY_SET_COOKIE","features":[115]},{"name":"HTTP_QUERY_SET_COOKIE2","features":[115]},{"name":"HTTP_QUERY_STATUS_CODE","features":[115]},{"name":"HTTP_QUERY_STATUS_TEXT","features":[115]},{"name":"HTTP_QUERY_STRICT_TRANSPORT_SECURITY","features":[115]},{"name":"HTTP_QUERY_TITLE","features":[115]},{"name":"HTTP_QUERY_TOKEN_BINDING","features":[115]},{"name":"HTTP_QUERY_TRANSFER_ENCODING","features":[115]},{"name":"HTTP_QUERY_TRANSLATE","features":[115]},{"name":"HTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[115]},{"name":"HTTP_QUERY_UPGRADE","features":[115]},{"name":"HTTP_QUERY_URI","features":[115]},{"name":"HTTP_QUERY_USER_AGENT","features":[115]},{"name":"HTTP_QUERY_VARY","features":[115]},{"name":"HTTP_QUERY_VERSION","features":[115]},{"name":"HTTP_QUERY_VIA","features":[115]},{"name":"HTTP_QUERY_WARNING","features":[115]},{"name":"HTTP_QUERY_WWW_AUTHENTICATE","features":[115]},{"name":"HTTP_QUERY_X_CONTENT_TYPE_OPTIONS","features":[115]},{"name":"HTTP_QUERY_X_FRAME_OPTIONS","features":[115]},{"name":"HTTP_QUERY_X_P2P_PEERDIST","features":[115]},{"name":"HTTP_QUERY_X_UA_COMPATIBLE","features":[115]},{"name":"HTTP_QUERY_X_XSS_PROTECTION","features":[115]},{"name":"HTTP_REQUEST_TIMES","features":[115]},{"name":"HTTP_STATUS_MISDIRECTED_REQUEST","features":[115]},{"name":"HTTP_VERSIONA","features":[115]},{"name":"HTTP_VERSIONW","features":[115]},{"name":"HTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_ASYNC_RESULT","features":[115]},{"name":"HTTP_WEB_SOCKET_BINARY_FRAGMENT_TYPE","features":[115]},{"name":"HTTP_WEB_SOCKET_BINARY_MESSAGE_TYPE","features":[115]},{"name":"HTTP_WEB_SOCKET_BUFFER_TYPE","features":[115]},{"name":"HTTP_WEB_SOCKET_CLOSE_OPERATION","features":[115]},{"name":"HTTP_WEB_SOCKET_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_CLOSE_TYPE","features":[115]},{"name":"HTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[115]},{"name":"HTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[115]},{"name":"HTTP_WEB_SOCKET_OPERATION","features":[115]},{"name":"HTTP_WEB_SOCKET_PING_TYPE","features":[115]},{"name":"HTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[115]},{"name":"HTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_SEND_OPERATION","features":[115]},{"name":"HTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[115]},{"name":"HTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[115]},{"name":"HTTP_WEB_SOCKET_UTF8_FRAGMENT_TYPE","features":[115]},{"name":"HTTP_WEB_SOCKET_UTF8_MESSAGE_TYPE","features":[115]},{"name":"HttpAddRequestHeadersA","features":[1,115]},{"name":"HttpAddRequestHeadersW","features":[1,115]},{"name":"HttpCheckDavComplianceA","features":[1,115]},{"name":"HttpCheckDavComplianceW","features":[1,115]},{"name":"HttpCloseDependencyHandle","features":[115]},{"name":"HttpDuplicateDependencyHandle","features":[115]},{"name":"HttpEndRequestA","features":[1,115]},{"name":"HttpEndRequestW","features":[1,115]},{"name":"HttpGetServerCredentials","features":[115]},{"name":"HttpIndicatePageLoadComplete","features":[115]},{"name":"HttpIsHostHstsEnabled","features":[1,115]},{"name":"HttpOpenDependencyHandle","features":[1,115]},{"name":"HttpOpenRequestA","features":[115]},{"name":"HttpOpenRequestW","features":[115]},{"name":"HttpPushClose","features":[115]},{"name":"HttpPushEnable","features":[115]},{"name":"HttpPushWait","features":[1,115]},{"name":"HttpPushWaitEnableComplete","features":[115]},{"name":"HttpPushWaitReceiveComplete","features":[115]},{"name":"HttpPushWaitSendComplete","features":[115]},{"name":"HttpQueryInfoA","features":[1,115]},{"name":"HttpQueryInfoW","features":[1,115]},{"name":"HttpRequestTimeMax","features":[115]},{"name":"HttpSendRequestA","features":[1,115]},{"name":"HttpSendRequestExA","features":[1,115]},{"name":"HttpSendRequestExW","features":[1,115]},{"name":"HttpSendRequestW","features":[1,115]},{"name":"HttpWebSocketClose","features":[1,115]},{"name":"HttpWebSocketCompleteUpgrade","features":[115]},{"name":"HttpWebSocketQueryCloseStatus","features":[1,115]},{"name":"HttpWebSocketReceive","features":[1,115]},{"name":"HttpWebSocketSend","features":[1,115]},{"name":"HttpWebSocketShutdown","features":[1,115]},{"name":"ICU_USERNAME","features":[115]},{"name":"IDENTITY_CACHE_ENTRY","features":[115]},{"name":"IDSI_FLAG_KEEP_ALIVE","features":[115]},{"name":"IDSI_FLAG_PROXY","features":[115]},{"name":"IDSI_FLAG_SECURE","features":[115]},{"name":"IDSI_FLAG_TUNNEL","features":[115]},{"name":"IDialBranding","features":[115]},{"name":"IDialEngine","features":[115]},{"name":"IDialEventSink","features":[115]},{"name":"IMMUTABLE_CACHE_ENTRY","features":[115]},{"name":"INSTALLED_CACHE_ENTRY","features":[115]},{"name":"INTERENT_GOONLINE_MASK","features":[115]},{"name":"INTERENT_GOONLINE_NOPROMPT","features":[115]},{"name":"INTERENT_GOONLINE_REFRESH","features":[115]},{"name":"INTERNET_ACCESS_TYPE","features":[115]},{"name":"INTERNET_ASYNC_RESULT","features":[115]},{"name":"INTERNET_AUTH_NOTIFY_DATA","features":[115]},{"name":"INTERNET_AUTH_SCHEME_BASIC","features":[115]},{"name":"INTERNET_AUTH_SCHEME_DIGEST","features":[115]},{"name":"INTERNET_AUTH_SCHEME_KERBEROS","features":[115]},{"name":"INTERNET_AUTH_SCHEME_NEGOTIATE","features":[115]},{"name":"INTERNET_AUTH_SCHEME_NTLM","features":[115]},{"name":"INTERNET_AUTH_SCHEME_PASSPORT","features":[115]},{"name":"INTERNET_AUTH_SCHEME_UNKNOWN","features":[115]},{"name":"INTERNET_AUTODIAL","features":[115]},{"name":"INTERNET_AUTODIAL_FAILIFSECURITYCHECK","features":[115]},{"name":"INTERNET_AUTODIAL_FORCE_ONLINE","features":[115]},{"name":"INTERNET_AUTODIAL_FORCE_UNATTENDED","features":[115]},{"name":"INTERNET_AUTODIAL_OVERRIDE_NET_PRESENT","features":[115]},{"name":"INTERNET_AUTOPROXY_INIT_DEFAULT","features":[115]},{"name":"INTERNET_AUTOPROXY_INIT_DOWNLOADSYNC","features":[115]},{"name":"INTERNET_AUTOPROXY_INIT_ONLYQUERY","features":[115]},{"name":"INTERNET_AUTOPROXY_INIT_QUERYSTATE","features":[115]},{"name":"INTERNET_BUFFERSA","features":[115]},{"name":"INTERNET_BUFFERSW","features":[115]},{"name":"INTERNET_CACHE_CONFIG_INFOA","features":[1,115]},{"name":"INTERNET_CACHE_CONFIG_INFOW","features":[1,115]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYA","features":[115]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYW","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_AUTODELETE","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_BLOOM_FILTER","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_INFOA","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_INFOW","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_MAP_ENABLED","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_NODESKTOPINIT","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_NOSUBDIRS","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_RESERVED1","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ","features":[115]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ_WRITE","features":[115]},{"name":"INTERNET_CACHE_ENTRY_INFOA","features":[1,115]},{"name":"INTERNET_CACHE_ENTRY_INFOW","features":[1,115]},{"name":"INTERNET_CACHE_FLAG_ADD_FILENAME_ONLY","features":[115]},{"name":"INTERNET_CACHE_FLAG_ALLOW_COLLISIONS","features":[115]},{"name":"INTERNET_CACHE_FLAG_ENTRY_OR_MAPPING","features":[115]},{"name":"INTERNET_CACHE_FLAG_GET_STRUCT_ONLY","features":[115]},{"name":"INTERNET_CACHE_FLAG_INSTALLED_ENTRY","features":[115]},{"name":"INTERNET_CACHE_GROUP_ADD","features":[115]},{"name":"INTERNET_CACHE_GROUP_INFOA","features":[115]},{"name":"INTERNET_CACHE_GROUP_INFOW","features":[115]},{"name":"INTERNET_CACHE_GROUP_REMOVE","features":[115]},{"name":"INTERNET_CACHE_TIMESTAMPS","features":[1,115]},{"name":"INTERNET_CALLBACK_COOKIE","features":[1,115]},{"name":"INTERNET_CERTIFICATE_INFO","features":[1,115]},{"name":"INTERNET_CONNECTED_INFO","features":[115]},{"name":"INTERNET_CONNECTION","features":[115]},{"name":"INTERNET_CONNECTION_CONFIGURED","features":[115]},{"name":"INTERNET_CONNECTION_LAN","features":[115]},{"name":"INTERNET_CONNECTION_MODEM","features":[115]},{"name":"INTERNET_CONNECTION_MODEM_BUSY","features":[115]},{"name":"INTERNET_CONNECTION_OFFLINE","features":[115]},{"name":"INTERNET_CONNECTION_PROXY","features":[115]},{"name":"INTERNET_COOKIE","features":[1,115]},{"name":"INTERNET_COOKIE2","features":[1,115]},{"name":"INTERNET_COOKIE_ALL_COOKIES","features":[115]},{"name":"INTERNET_COOKIE_APPLY_HOST_ONLY","features":[115]},{"name":"INTERNET_COOKIE_APPLY_P3P","features":[115]},{"name":"INTERNET_COOKIE_ECTX_3RDPARTY","features":[115]},{"name":"INTERNET_COOKIE_EDGE_COOKIES","features":[115]},{"name":"INTERNET_COOKIE_EVALUATE_P3P","features":[115]},{"name":"INTERNET_COOKIE_FLAGS","features":[115]},{"name":"INTERNET_COOKIE_HOST_ONLY","features":[115]},{"name":"INTERNET_COOKIE_HOST_ONLY_APPLIED","features":[115]},{"name":"INTERNET_COOKIE_HTTPONLY","features":[115]},{"name":"INTERNET_COOKIE_IE6","features":[115]},{"name":"INTERNET_COOKIE_IS_LEGACY","features":[115]},{"name":"INTERNET_COOKIE_IS_RESTRICTED","features":[115]},{"name":"INTERNET_COOKIE_IS_SECURE","features":[115]},{"name":"INTERNET_COOKIE_IS_SESSION","features":[115]},{"name":"INTERNET_COOKIE_NON_SCRIPT","features":[115]},{"name":"INTERNET_COOKIE_NO_CALLBACK","features":[115]},{"name":"INTERNET_COOKIE_P3P_ENABLED","features":[115]},{"name":"INTERNET_COOKIE_PERSISTENT_HOST_ONLY","features":[115]},{"name":"INTERNET_COOKIE_PROMPT_REQUIRED","features":[115]},{"name":"INTERNET_COOKIE_RESTRICTED_ZONE","features":[115]},{"name":"INTERNET_COOKIE_SAME_SITE_LAX","features":[115]},{"name":"INTERNET_COOKIE_SAME_SITE_LEVEL_CROSS_SITE","features":[115]},{"name":"INTERNET_COOKIE_SAME_SITE_STRICT","features":[115]},{"name":"INTERNET_COOKIE_THIRD_PARTY","features":[115]},{"name":"INTERNET_CREDENTIALS","features":[1,115]},{"name":"INTERNET_CUSTOMDIAL_CAN_HANGUP","features":[115]},{"name":"INTERNET_CUSTOMDIAL_CONNECT","features":[115]},{"name":"INTERNET_CUSTOMDIAL_DISCONNECT","features":[115]},{"name":"INTERNET_CUSTOMDIAL_SAFE_FOR_UNATTENDED","features":[115]},{"name":"INTERNET_CUSTOMDIAL_SHOWOFFLINE","features":[115]},{"name":"INTERNET_CUSTOMDIAL_UNATTENDED","features":[115]},{"name":"INTERNET_CUSTOMDIAL_WILL_SUPPLY_STATE","features":[115]},{"name":"INTERNET_DEFAULT_FTP_PORT","features":[115]},{"name":"INTERNET_DEFAULT_GOPHER_PORT","features":[115]},{"name":"INTERNET_DEFAULT_SOCKS_PORT","features":[115]},{"name":"INTERNET_DIAGNOSTIC_SOCKET_INFO","features":[115]},{"name":"INTERNET_DIALSTATE_DISCONNECTED","features":[115]},{"name":"INTERNET_DIAL_FORCE_PROMPT","features":[115]},{"name":"INTERNET_DIAL_SHOW_OFFLINE","features":[115]},{"name":"INTERNET_DIAL_UNATTENDED","features":[115]},{"name":"INTERNET_DOWNLOAD_MODE_HANDLE","features":[1,115]},{"name":"INTERNET_END_BROWSER_SESSION_DATA","features":[115]},{"name":"INTERNET_ERROR_BASE","features":[115]},{"name":"INTERNET_ERROR_LAST","features":[115]},{"name":"INTERNET_ERROR_MASK_COMBINED_SEC_CERT","features":[115]},{"name":"INTERNET_ERROR_MASK_INSERT_CDROM","features":[115]},{"name":"INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[115]},{"name":"INTERNET_ERROR_MASK_NEED_MSN_SSPI_PKG","features":[115]},{"name":"INTERNET_FIRST_OPTION","features":[115]},{"name":"INTERNET_FLAG_ASYNC","features":[115]},{"name":"INTERNET_FLAG_BGUPDATE","features":[115]},{"name":"INTERNET_FLAG_CACHE_ASYNC","features":[115]},{"name":"INTERNET_FLAG_CACHE_IF_NET_FAIL","features":[115]},{"name":"INTERNET_FLAG_DONT_CACHE","features":[115]},{"name":"INTERNET_FLAG_EXISTING_CONNECT","features":[115]},{"name":"INTERNET_FLAG_FORMS_SUBMIT","features":[115]},{"name":"INTERNET_FLAG_FROM_CACHE","features":[115]},{"name":"INTERNET_FLAG_FTP_FOLDER_VIEW","features":[115]},{"name":"INTERNET_FLAG_FWD_BACK","features":[115]},{"name":"INTERNET_FLAG_HYPERLINK","features":[115]},{"name":"INTERNET_FLAG_IDN_DIRECT","features":[115]},{"name":"INTERNET_FLAG_IDN_PROXY","features":[115]},{"name":"INTERNET_FLAG_IGNORE_CERT_CN_INVALID","features":[115]},{"name":"INTERNET_FLAG_IGNORE_CERT_DATE_INVALID","features":[115]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[115]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[115]},{"name":"INTERNET_FLAG_KEEP_CONNECTION","features":[115]},{"name":"INTERNET_FLAG_MAKE_PERSISTENT","features":[115]},{"name":"INTERNET_FLAG_MUST_CACHE_REQUEST","features":[115]},{"name":"INTERNET_FLAG_NEED_FILE","features":[115]},{"name":"INTERNET_FLAG_NO_AUTH","features":[115]},{"name":"INTERNET_FLAG_NO_AUTO_REDIRECT","features":[115]},{"name":"INTERNET_FLAG_NO_CACHE_WRITE","features":[115]},{"name":"INTERNET_FLAG_NO_COOKIES","features":[115]},{"name":"INTERNET_FLAG_NO_UI","features":[115]},{"name":"INTERNET_FLAG_OFFLINE","features":[115]},{"name":"INTERNET_FLAG_PASSIVE","features":[115]},{"name":"INTERNET_FLAG_PRAGMA_NOCACHE","features":[115]},{"name":"INTERNET_FLAG_RAW_DATA","features":[115]},{"name":"INTERNET_FLAG_READ_PREFETCH","features":[115]},{"name":"INTERNET_FLAG_RELOAD","features":[115]},{"name":"INTERNET_FLAG_RESTRICTED_ZONE","features":[115]},{"name":"INTERNET_FLAG_RESYNCHRONIZE","features":[115]},{"name":"INTERNET_FLAG_SECURE","features":[115]},{"name":"INTERNET_FLAG_TRANSFER_ASCII","features":[115]},{"name":"INTERNET_FLAG_TRANSFER_BINARY","features":[115]},{"name":"INTERNET_GLOBAL_CALLBACK_DETECTING_PROXY","features":[115]},{"name":"INTERNET_GLOBAL_CALLBACK_SENDING_HTTP_HEADERS","features":[115]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_FTP","features":[115]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_GOPHER","features":[115]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_HTTP","features":[115]},{"name":"INTERNET_HANDLE_TYPE_FILE_REQUEST","features":[115]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE","features":[115]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE_HTML","features":[115]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND","features":[115]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND_HTML","features":[115]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE","features":[115]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE_HTML","features":[115]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND","features":[115]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND_HTML","features":[115]},{"name":"INTERNET_HANDLE_TYPE_HTTP_REQUEST","features":[115]},{"name":"INTERNET_HANDLE_TYPE_INTERNET","features":[115]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_CONTENT","features":[115]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_COOKIES","features":[115]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_DATA","features":[115]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_HISTORY","features":[115]},{"name":"INTERNET_IDENTITY_FLAG_PRIVATE_CACHE","features":[115]},{"name":"INTERNET_IDENTITY_FLAG_SHARED_CACHE","features":[115]},{"name":"INTERNET_INTERNAL_ERROR_BASE","features":[115]},{"name":"INTERNET_INVALID_PORT_NUMBER","features":[115]},{"name":"INTERNET_KEEP_ALIVE_DISABLED","features":[115]},{"name":"INTERNET_KEEP_ALIVE_ENABLED","features":[115]},{"name":"INTERNET_KEEP_ALIVE_UNKNOWN","features":[115]},{"name":"INTERNET_LAST_OPTION","features":[115]},{"name":"INTERNET_LAST_OPTION_INTERNAL","features":[115]},{"name":"INTERNET_MAX_HOST_NAME_LENGTH","features":[115]},{"name":"INTERNET_MAX_PASSWORD_LENGTH","features":[115]},{"name":"INTERNET_MAX_PORT_NUMBER_LENGTH","features":[115]},{"name":"INTERNET_MAX_PORT_NUMBER_VALUE","features":[115]},{"name":"INTERNET_MAX_USER_NAME_LENGTH","features":[115]},{"name":"INTERNET_NO_CALLBACK","features":[115]},{"name":"INTERNET_OPEN_TYPE_DIRECT","features":[115]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG","features":[115]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY","features":[115]},{"name":"INTERNET_OPEN_TYPE_PROXY","features":[115]},{"name":"INTERNET_OPTION_ACTIVATE_WORKER_THREADS","features":[115]},{"name":"INTERNET_OPTION_ACTIVITY_ID","features":[115]},{"name":"INTERNET_OPTION_ALLOW_FAILED_CONNECT_CONTENT","features":[115]},{"name":"INTERNET_OPTION_ALLOW_INSECURE_FALLBACK","features":[115]},{"name":"INTERNET_OPTION_ALTER_IDENTITY","features":[115]},{"name":"INTERNET_OPTION_APP_CACHE","features":[115]},{"name":"INTERNET_OPTION_ASYNC","features":[115]},{"name":"INTERNET_OPTION_ASYNC_ID","features":[115]},{"name":"INTERNET_OPTION_ASYNC_PRIORITY","features":[115]},{"name":"INTERNET_OPTION_AUTH_FLAGS","features":[115]},{"name":"INTERNET_OPTION_AUTH_SCHEME_SELECTED","features":[115]},{"name":"INTERNET_OPTION_AUTODIAL_CONNECTION","features":[115]},{"name":"INTERNET_OPTION_AUTODIAL_HWND","features":[115]},{"name":"INTERNET_OPTION_AUTODIAL_MODE","features":[115]},{"name":"INTERNET_OPTION_BACKGROUND_CONNECTIONS","features":[115]},{"name":"INTERNET_OPTION_BYPASS_EDITED_ENTRY","features":[115]},{"name":"INTERNET_OPTION_CACHE_ENTRY_EXTRA_DATA","features":[115]},{"name":"INTERNET_OPTION_CACHE_PARTITION","features":[115]},{"name":"INTERNET_OPTION_CACHE_STREAM_HANDLE","features":[115]},{"name":"INTERNET_OPTION_CACHE_TIMESTAMPS","features":[115]},{"name":"INTERNET_OPTION_CALLBACK","features":[115]},{"name":"INTERNET_OPTION_CALLBACK_FILTER","features":[115]},{"name":"INTERNET_OPTION_CALLER_MODULE","features":[115]},{"name":"INTERNET_OPTION_CANCEL_CACHE_WRITE","features":[115]},{"name":"INTERNET_OPTION_CERT_ERROR_FLAGS","features":[115]},{"name":"INTERNET_OPTION_CHUNK_ENCODE_REQUEST","features":[115]},{"name":"INTERNET_OPTION_CLIENT_CERT_CONTEXT","features":[115]},{"name":"INTERNET_OPTION_CLIENT_CERT_ISSUER_LIST","features":[115]},{"name":"INTERNET_OPTION_CM_HANDLE_COPY_REF","features":[115]},{"name":"INTERNET_OPTION_CODEPAGE","features":[115]},{"name":"INTERNET_OPTION_CODEPAGE_EXTRA","features":[115]},{"name":"INTERNET_OPTION_CODEPAGE_PATH","features":[115]},{"name":"INTERNET_OPTION_COMPRESSED_CONTENT_LENGTH","features":[115]},{"name":"INTERNET_OPTION_CONNECTED_STATE","features":[115]},{"name":"INTERNET_OPTION_CONNECTION_FILTER","features":[115]},{"name":"INTERNET_OPTION_CONNECTION_INFO","features":[115]},{"name":"INTERNET_OPTION_CONNECT_BACKOFF","features":[115]},{"name":"INTERNET_OPTION_CONNECT_LIMIT","features":[115]},{"name":"INTERNET_OPTION_CONNECT_RETRIES","features":[115]},{"name":"INTERNET_OPTION_CONNECT_TIME","features":[115]},{"name":"INTERNET_OPTION_CONNECT_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_CONTEXT_VALUE","features":[115]},{"name":"INTERNET_OPTION_CONTEXT_VALUE_OLD","features":[115]},{"name":"INTERNET_OPTION_CONTROL_RECEIVE_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_CONTROL_SEND_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_COOKIES_3RD_PARTY","features":[115]},{"name":"INTERNET_OPTION_COOKIES_APPLY_HOST_ONLY","features":[115]},{"name":"INTERNET_OPTION_COOKIES_SAME_SITE_LEVEL","features":[115]},{"name":"INTERNET_OPTION_DATAFILE_EXT","features":[115]},{"name":"INTERNET_OPTION_DATAFILE_NAME","features":[115]},{"name":"INTERNET_OPTION_DATA_RECEIVE_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_DATA_SEND_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_DEPENDENCY_HANDLE","features":[115]},{"name":"INTERNET_OPTION_DETECT_POST_SEND","features":[115]},{"name":"INTERNET_OPTION_DIAGNOSTIC_SOCKET_INFO","features":[115]},{"name":"INTERNET_OPTION_DIGEST_AUTH_UNLOAD","features":[115]},{"name":"INTERNET_OPTION_DISABLE_AUTODIAL","features":[115]},{"name":"INTERNET_OPTION_DISABLE_INSECURE_FALLBACK","features":[115]},{"name":"INTERNET_OPTION_DISABLE_NTLM_PREAUTH","features":[115]},{"name":"INTERNET_OPTION_DISABLE_PASSPORT_AUTH","features":[115]},{"name":"INTERNET_OPTION_DISABLE_PROXY_LINK_LOCAL_NAME_RESOLUTION","features":[115]},{"name":"INTERNET_OPTION_DISALLOW_PREMATURE_EOF","features":[115]},{"name":"INTERNET_OPTION_DISCONNECTED_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE","features":[115]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE_HANDLE","features":[115]},{"name":"INTERNET_OPTION_DO_NOT_TRACK","features":[115]},{"name":"INTERNET_OPTION_DUO_USED","features":[115]},{"name":"INTERNET_OPTION_EDGE_COOKIES","features":[115]},{"name":"INTERNET_OPTION_EDGE_COOKIES_TEMP","features":[115]},{"name":"INTERNET_OPTION_EDGE_MODE","features":[115]},{"name":"INTERNET_OPTION_ENABLE_DUO","features":[115]},{"name":"INTERNET_OPTION_ENABLE_HEADER_CALLBACKS","features":[115]},{"name":"INTERNET_OPTION_ENABLE_HTTP_PROTOCOL","features":[115]},{"name":"INTERNET_OPTION_ENABLE_PASSPORT_AUTH","features":[115]},{"name":"INTERNET_OPTION_ENABLE_REDIRECT_CACHE_READ","features":[115]},{"name":"INTERNET_OPTION_ENABLE_TEST_SIGNING","features":[115]},{"name":"INTERNET_OPTION_ENABLE_WBOEXT","features":[115]},{"name":"INTERNET_OPTION_ENABLE_ZLIB_DEFLATE","features":[115]},{"name":"INTERNET_OPTION_ENCODE_EXTRA","features":[115]},{"name":"INTERNET_OPTION_ENCODE_FALLBACK_FOR_REDIRECT_URI","features":[115]},{"name":"INTERNET_OPTION_END_BROWSER_SESSION","features":[115]},{"name":"INTERNET_OPTION_ENTERPRISE_CONTEXT","features":[115]},{"name":"INTERNET_OPTION_ERROR_MASK","features":[115]},{"name":"INTERNET_OPTION_EXEMPT_CONNECTION_LIMIT","features":[115]},{"name":"INTERNET_OPTION_EXTENDED_CALLBACKS","features":[115]},{"name":"INTERNET_OPTION_EXTENDED_ERROR","features":[115]},{"name":"INTERNET_OPTION_FAIL_ON_CACHE_WRITE_ERROR","features":[115]},{"name":"INTERNET_OPTION_FALSE_START","features":[115]},{"name":"INTERNET_OPTION_FLUSH_STATE","features":[115]},{"name":"INTERNET_OPTION_FORCE_DECODE","features":[115]},{"name":"INTERNET_OPTION_FROM_CACHE_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_GLOBAL_CALLBACK","features":[115]},{"name":"INTERNET_OPTION_HANDLE_TYPE","features":[115]},{"name":"INTERNET_OPTION_HIBERNATE_INACTIVE_WORKER_THREADS","features":[115]},{"name":"INTERNET_OPTION_HSTS","features":[115]},{"name":"INTERNET_OPTION_HTTP_09","features":[115]},{"name":"INTERNET_OPTION_HTTP_DECODING","features":[115]},{"name":"INTERNET_OPTION_HTTP_PROTOCOL_USED","features":[115]},{"name":"INTERNET_OPTION_HTTP_VERSION","features":[115]},{"name":"INTERNET_OPTION_IDENTITY","features":[115]},{"name":"INTERNET_OPTION_IDLE_STATE","features":[115]},{"name":"INTERNET_OPTION_IDN","features":[115]},{"name":"INTERNET_OPTION_IGNORE_CERT_ERROR_FLAGS","features":[115]},{"name":"INTERNET_OPTION_IGNORE_OFFLINE","features":[115]},{"name":"INTERNET_OPTION_KEEP_CONNECTION","features":[115]},{"name":"INTERNET_OPTION_LINE_STATE","features":[115]},{"name":"INTERNET_OPTION_LISTEN_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[115]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_PROXY","features":[115]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_SERVER","features":[115]},{"name":"INTERNET_OPTION_MAX_QUERY_BUFFER_SIZE","features":[115]},{"name":"INTERNET_OPTION_NET_SPEED","features":[115]},{"name":"INTERNET_OPTION_NOCACHE_WRITE_IN_PRIVATE","features":[115]},{"name":"INTERNET_OPTION_NOTIFY_SENDING_COOKIE","features":[115]},{"name":"INTERNET_OPTION_NO_HTTP_SERVER_AUTH","features":[115]},{"name":"INTERNET_OPTION_OFFLINE_MODE","features":[115]},{"name":"INTERNET_OPTION_OFFLINE_SEMANTICS","features":[115]},{"name":"INTERNET_OPTION_OFFLINE_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_OPT_IN_WEAK_SIGNATURE","features":[115]},{"name":"INTERNET_OPTION_ORIGINAL_CONNECT_FLAGS","features":[115]},{"name":"INTERNET_OPTION_PARENT_HANDLE","features":[115]},{"name":"INTERNET_OPTION_PARSE_LINE_FOLDING","features":[115]},{"name":"INTERNET_OPTION_PASSWORD","features":[115]},{"name":"INTERNET_OPTION_PER_CONNECTION_OPTION","features":[115]},{"name":"INTERNET_OPTION_POLICY","features":[115]},{"name":"INTERNET_OPTION_PRESERVE_REFERER_ON_HTTPS_TO_HTTP_REDIRECT","features":[115]},{"name":"INTERNET_OPTION_PRESERVE_REQUEST_SERVER_CREDENTIALS_ON_REDIRECT","features":[115]},{"name":"INTERNET_OPTION_PROXY","features":[115]},{"name":"INTERNET_OPTION_PROXY_AUTH_SCHEME","features":[115]},{"name":"INTERNET_OPTION_PROXY_CREDENTIALS","features":[115]},{"name":"INTERNET_OPTION_PROXY_FROM_REQUEST","features":[115]},{"name":"INTERNET_OPTION_PROXY_PASSWORD","features":[115]},{"name":"INTERNET_OPTION_PROXY_SETTINGS_CHANGED","features":[115]},{"name":"INTERNET_OPTION_PROXY_USERNAME","features":[115]},{"name":"INTERNET_OPTION_READ_BUFFER_SIZE","features":[115]},{"name":"INTERNET_OPTION_RECEIVE_THROUGHPUT","features":[115]},{"name":"INTERNET_OPTION_RECEIVE_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[115]},{"name":"INTERNET_OPTION_REFRESH","features":[115]},{"name":"INTERNET_OPTION_REMOVE_IDENTITY","features":[115]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION","features":[115]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[115]},{"name":"INTERNET_OPTION_REQUEST_FLAGS","features":[115]},{"name":"INTERNET_OPTION_REQUEST_PRIORITY","features":[115]},{"name":"INTERNET_OPTION_REQUEST_TIMES","features":[115]},{"name":"INTERNET_OPTION_RESET","features":[115]},{"name":"INTERNET_OPTION_RESET_URLCACHE_SESSION","features":[115]},{"name":"INTERNET_OPTION_RESPONSE_RESUMABLE","features":[115]},{"name":"INTERNET_OPTION_RESTORE_WORKER_THREAD_DEFAULTS","features":[115]},{"name":"INTERNET_OPTION_SECONDARY_CACHE_KEY","features":[115]},{"name":"INTERNET_OPTION_SECURE_FAILURE","features":[115]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE","features":[115]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[115]},{"name":"INTERNET_OPTION_SECURITY_CONNECTION_INFO","features":[115]},{"name":"INTERNET_OPTION_SECURITY_FLAGS","features":[115]},{"name":"INTERNET_OPTION_SECURITY_KEY_BITNESS","features":[115]},{"name":"INTERNET_OPTION_SECURITY_SELECT_CLIENT_CERT","features":[115]},{"name":"INTERNET_OPTION_SEND_THROUGHPUT","features":[115]},{"name":"INTERNET_OPTION_SEND_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY","features":[115]},{"name":"INTERNET_OPTION_SERVER_ADDRESS_INFO","features":[115]},{"name":"INTERNET_OPTION_SERVER_AUTH_SCHEME","features":[115]},{"name":"INTERNET_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[115]},{"name":"INTERNET_OPTION_SERVER_CREDENTIALS","features":[115]},{"name":"INTERNET_OPTION_SESSION_START_TIME","features":[115]},{"name":"INTERNET_OPTION_SETTINGS_CHANGED","features":[115]},{"name":"INTERNET_OPTION_SET_IN_PRIVATE","features":[115]},{"name":"INTERNET_OPTION_SOCKET_NODELAY","features":[115]},{"name":"INTERNET_OPTION_SOCKET_NOTIFICATION_IOCTL","features":[115]},{"name":"INTERNET_OPTION_SOCKET_SEND_BUFFER_LENGTH","features":[115]},{"name":"INTERNET_OPTION_SOURCE_PORT","features":[115]},{"name":"INTERNET_OPTION_SUPPRESS_BEHAVIOR","features":[115]},{"name":"INTERNET_OPTION_SUPPRESS_SERVER_AUTH","features":[115]},{"name":"INTERNET_OPTION_SYNC_MODE_AUTOMATIC_SESSION_DISABLED","features":[115]},{"name":"INTERNET_OPTION_TCP_FAST_OPEN","features":[115]},{"name":"INTERNET_OPTION_TIMED_CONNECTION_LIMIT_BYPASS","features":[115]},{"name":"INTERNET_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[115]},{"name":"INTERNET_OPTION_TUNNEL_ONLY","features":[115]},{"name":"INTERNET_OPTION_UNLOAD_NOTIFY_EVENT","features":[115]},{"name":"INTERNET_OPTION_UPGRADE_TO_WEB_SOCKET","features":[115]},{"name":"INTERNET_OPTION_URL","features":[115]},{"name":"INTERNET_OPTION_USERNAME","features":[115]},{"name":"INTERNET_OPTION_USER_AGENT","features":[115]},{"name":"INTERNET_OPTION_USER_PASS_SERVER_ONLY","features":[115]},{"name":"INTERNET_OPTION_USE_FIRST_AVAILABLE_CONNECTION","features":[115]},{"name":"INTERNET_OPTION_USE_MODIFIED_HEADER_FILTER","features":[115]},{"name":"INTERNET_OPTION_VERSION","features":[115]},{"name":"INTERNET_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[115]},{"name":"INTERNET_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[115]},{"name":"INTERNET_OPTION_WPAD_SLEEP","features":[115]},{"name":"INTERNET_OPTION_WRITE_BUFFER_SIZE","features":[115]},{"name":"INTERNET_OPTION_WWA_MODE","features":[115]},{"name":"INTERNET_PER_CONN","features":[115]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME","features":[115]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL","features":[115]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS","features":[115]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL","features":[115]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_URL","features":[115]},{"name":"INTERNET_PER_CONN_AUTODISCOVERY_FLAGS","features":[115]},{"name":"INTERNET_PER_CONN_FLAGS","features":[115]},{"name":"INTERNET_PER_CONN_FLAGS_UI","features":[115]},{"name":"INTERNET_PER_CONN_OPTIONA","features":[1,115]},{"name":"INTERNET_PER_CONN_OPTIONW","features":[1,115]},{"name":"INTERNET_PER_CONN_OPTION_LISTA","features":[1,115]},{"name":"INTERNET_PER_CONN_OPTION_LISTW","features":[1,115]},{"name":"INTERNET_PER_CONN_PROXY_BYPASS","features":[115]},{"name":"INTERNET_PER_CONN_PROXY_SERVER","features":[115]},{"name":"INTERNET_PREFETCH_ABORTED","features":[115]},{"name":"INTERNET_PREFETCH_COMPLETE","features":[115]},{"name":"INTERNET_PREFETCH_PROGRESS","features":[115]},{"name":"INTERNET_PREFETCH_STATUS","features":[115]},{"name":"INTERNET_PRIORITY_FOREGROUND","features":[115]},{"name":"INTERNET_PROXY_INFO","features":[115]},{"name":"INTERNET_RAS_INSTALLED","features":[115]},{"name":"INTERNET_REQFLAG_ASYNC","features":[115]},{"name":"INTERNET_REQFLAG_CACHE_WRITE_DISABLED","features":[115]},{"name":"INTERNET_REQFLAG_FROM_APP_CACHE","features":[115]},{"name":"INTERNET_REQFLAG_FROM_CACHE","features":[115]},{"name":"INTERNET_REQFLAG_NET_TIMEOUT","features":[115]},{"name":"INTERNET_REQFLAG_NO_HEADERS","features":[115]},{"name":"INTERNET_REQFLAG_PASSIVE","features":[115]},{"name":"INTERNET_REQFLAG_VIA_PROXY","features":[115]},{"name":"INTERNET_RFC1123_BUFSIZE","features":[115]},{"name":"INTERNET_RFC1123_FORMAT","features":[115]},{"name":"INTERNET_SCHEME","features":[115]},{"name":"INTERNET_SCHEME_DEFAULT","features":[115]},{"name":"INTERNET_SCHEME_FILE","features":[115]},{"name":"INTERNET_SCHEME_FIRST","features":[115]},{"name":"INTERNET_SCHEME_FTP","features":[115]},{"name":"INTERNET_SCHEME_GOPHER","features":[115]},{"name":"INTERNET_SCHEME_HTTP","features":[115]},{"name":"INTERNET_SCHEME_HTTPS","features":[115]},{"name":"INTERNET_SCHEME_JAVASCRIPT","features":[115]},{"name":"INTERNET_SCHEME_LAST","features":[115]},{"name":"INTERNET_SCHEME_MAILTO","features":[115]},{"name":"INTERNET_SCHEME_NEWS","features":[115]},{"name":"INTERNET_SCHEME_PARTIAL","features":[115]},{"name":"INTERNET_SCHEME_RES","features":[115]},{"name":"INTERNET_SCHEME_SOCKS","features":[115]},{"name":"INTERNET_SCHEME_UNKNOWN","features":[115]},{"name":"INTERNET_SCHEME_VBSCRIPT","features":[115]},{"name":"INTERNET_SECURITY_CONNECTION_INFO","features":[1,115,23,68]},{"name":"INTERNET_SECURITY_INFO","features":[1,115,23,68]},{"name":"INTERNET_SERVER_CONNECTION_STATE","features":[1,115]},{"name":"INTERNET_SERVICE_FTP","features":[115]},{"name":"INTERNET_SERVICE_GOPHER","features":[115]},{"name":"INTERNET_SERVICE_HTTP","features":[115]},{"name":"INTERNET_SERVICE_URL","features":[115]},{"name":"INTERNET_STATE","features":[115]},{"name":"INTERNET_STATE_BUSY","features":[115]},{"name":"INTERNET_STATE_CONNECTED","features":[115]},{"name":"INTERNET_STATE_DISCONNECTED","features":[115]},{"name":"INTERNET_STATE_DISCONNECTED_BY_USER","features":[115]},{"name":"INTERNET_STATE_IDLE","features":[115]},{"name":"INTERNET_STATUS_CLOSING_CONNECTION","features":[115]},{"name":"INTERNET_STATUS_CONNECTED_TO_SERVER","features":[115]},{"name":"INTERNET_STATUS_CONNECTING_TO_SERVER","features":[115]},{"name":"INTERNET_STATUS_CONNECTION_CLOSED","features":[115]},{"name":"INTERNET_STATUS_COOKIE","features":[115]},{"name":"INTERNET_STATUS_COOKIE_HISTORY","features":[115]},{"name":"INTERNET_STATUS_COOKIE_RECEIVED","features":[115]},{"name":"INTERNET_STATUS_COOKIE_SENT","features":[115]},{"name":"INTERNET_STATUS_CTL_RESPONSE_RECEIVED","features":[115]},{"name":"INTERNET_STATUS_DETECTING_PROXY","features":[115]},{"name":"INTERNET_STATUS_END_BROWSER_SESSION","features":[115]},{"name":"INTERNET_STATUS_FILTER_CLOSED","features":[115]},{"name":"INTERNET_STATUS_FILTER_CLOSING","features":[115]},{"name":"INTERNET_STATUS_FILTER_CONNECTED","features":[115]},{"name":"INTERNET_STATUS_FILTER_CONNECTING","features":[115]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CLOSING","features":[115]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CREATED","features":[115]},{"name":"INTERNET_STATUS_FILTER_PREFETCH","features":[115]},{"name":"INTERNET_STATUS_FILTER_RECEIVED","features":[115]},{"name":"INTERNET_STATUS_FILTER_RECEIVING","features":[115]},{"name":"INTERNET_STATUS_FILTER_REDIRECT","features":[115]},{"name":"INTERNET_STATUS_FILTER_RESOLVED","features":[115]},{"name":"INTERNET_STATUS_FILTER_RESOLVING","features":[115]},{"name":"INTERNET_STATUS_FILTER_SENDING","features":[115]},{"name":"INTERNET_STATUS_FILTER_SENT","features":[115]},{"name":"INTERNET_STATUS_FILTER_STATE_CHANGE","features":[115]},{"name":"INTERNET_STATUS_HANDLE_CLOSING","features":[115]},{"name":"INTERNET_STATUS_HANDLE_CREATED","features":[115]},{"name":"INTERNET_STATUS_INTERMEDIATE_RESPONSE","features":[115]},{"name":"INTERNET_STATUS_NAME_RESOLVED","features":[115]},{"name":"INTERNET_STATUS_P3P_HEADER","features":[115]},{"name":"INTERNET_STATUS_P3P_POLICYREF","features":[115]},{"name":"INTERNET_STATUS_PREFETCH","features":[115]},{"name":"INTERNET_STATUS_PRIVACY_IMPACTED","features":[115]},{"name":"INTERNET_STATUS_PROXY_CREDENTIALS","features":[115]},{"name":"INTERNET_STATUS_RECEIVING_RESPONSE","features":[115]},{"name":"INTERNET_STATUS_REDIRECT","features":[115]},{"name":"INTERNET_STATUS_REQUEST_COMPLETE","features":[115]},{"name":"INTERNET_STATUS_REQUEST_HEADERS_SET","features":[115]},{"name":"INTERNET_STATUS_REQUEST_SENT","features":[115]},{"name":"INTERNET_STATUS_RESOLVING_NAME","features":[115]},{"name":"INTERNET_STATUS_RESPONSE_HEADERS_SET","features":[115]},{"name":"INTERNET_STATUS_RESPONSE_RECEIVED","features":[115]},{"name":"INTERNET_STATUS_SENDING_COOKIE","features":[115]},{"name":"INTERNET_STATUS_SENDING_REQUEST","features":[115]},{"name":"INTERNET_STATUS_SERVER_CONNECTION_STATE","features":[115]},{"name":"INTERNET_STATUS_SERVER_CREDENTIALS","features":[115]},{"name":"INTERNET_STATUS_STATE_CHANGE","features":[115]},{"name":"INTERNET_STATUS_USER_INPUT_REQUIRED","features":[115]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST","features":[115]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST_RESET","features":[115]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY","features":[115]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY_RESET","features":[115]},{"name":"INTERNET_SUPPRESS_RESET_ALL","features":[115]},{"name":"INTERNET_VERSION_INFO","features":[115]},{"name":"IProofOfPossessionCookieInfoManager","features":[115]},{"name":"IProofOfPossessionCookieInfoManager2","features":[115]},{"name":"IRF_ASYNC","features":[115]},{"name":"IRF_NO_WAIT","features":[115]},{"name":"IRF_SYNC","features":[115]},{"name":"IRF_USE_CONTEXT","features":[115]},{"name":"ISO_FORCE_DISCONNECTED","features":[115]},{"name":"ISO_FORCE_OFFLINE","features":[115]},{"name":"ISO_GLOBAL","features":[115]},{"name":"ISO_REGISTRY","features":[115]},{"name":"ImportCookieFileA","features":[1,115]},{"name":"ImportCookieFileW","features":[1,115]},{"name":"IncomingCookieState","features":[115]},{"name":"IncrementUrlCacheHeaderData","features":[1,115]},{"name":"InternalInternetGetCookie","features":[115]},{"name":"InternetAlgIdToStringA","features":[1,115,68]},{"name":"InternetAlgIdToStringW","features":[1,115,68]},{"name":"InternetAttemptConnect","features":[115]},{"name":"InternetAutodial","features":[1,115]},{"name":"InternetAutodialHangup","features":[1,115]},{"name":"InternetCanonicalizeUrlA","features":[1,115]},{"name":"InternetCanonicalizeUrlW","features":[1,115]},{"name":"InternetCheckConnectionA","features":[1,115]},{"name":"InternetCheckConnectionW","features":[1,115]},{"name":"InternetClearAllPerSiteCookieDecisions","features":[1,115]},{"name":"InternetCloseHandle","features":[1,115]},{"name":"InternetCombineUrlA","features":[1,115]},{"name":"InternetCombineUrlW","features":[1,115]},{"name":"InternetConfirmZoneCrossing","features":[1,115]},{"name":"InternetConfirmZoneCrossingA","features":[1,115]},{"name":"InternetConfirmZoneCrossingW","features":[1,115]},{"name":"InternetConnectA","features":[115]},{"name":"InternetConnectW","features":[115]},{"name":"InternetConvertUrlFromWireToWideChar","features":[1,115]},{"name":"InternetCookieHistory","features":[1,115]},{"name":"InternetCookieState","features":[115]},{"name":"InternetCrackUrlA","features":[1,114,115]},{"name":"InternetCrackUrlW","features":[1,114,115]},{"name":"InternetCreateUrlA","features":[1,115]},{"name":"InternetCreateUrlW","features":[1,115]},{"name":"InternetDial","features":[1,115]},{"name":"InternetDialA","features":[1,115]},{"name":"InternetDialW","features":[1,115]},{"name":"InternetEnumPerSiteCookieDecisionA","features":[1,115]},{"name":"InternetEnumPerSiteCookieDecisionW","features":[1,115]},{"name":"InternetErrorDlg","features":[1,115]},{"name":"InternetFindNextFileA","features":[1,115]},{"name":"InternetFindNextFileW","features":[1,115]},{"name":"InternetFortezzaCommand","features":[1,115]},{"name":"InternetFreeCookies","features":[1,115]},{"name":"InternetFreeProxyInfoList","features":[1,115]},{"name":"InternetGetConnectedState","features":[1,115]},{"name":"InternetGetConnectedStateEx","features":[1,115]},{"name":"InternetGetConnectedStateExA","features":[1,115]},{"name":"InternetGetConnectedStateExW","features":[1,115]},{"name":"InternetGetCookieA","features":[1,115]},{"name":"InternetGetCookieEx2","features":[1,115]},{"name":"InternetGetCookieExA","features":[1,115]},{"name":"InternetGetCookieExW","features":[1,115]},{"name":"InternetGetCookieW","features":[1,115]},{"name":"InternetGetLastResponseInfoA","features":[1,115]},{"name":"InternetGetLastResponseInfoW","features":[1,115]},{"name":"InternetGetPerSiteCookieDecisionA","features":[1,115]},{"name":"InternetGetPerSiteCookieDecisionW","features":[1,115]},{"name":"InternetGetProxyForUrl","features":[1,115]},{"name":"InternetGetSecurityInfoByURL","features":[1,115,68]},{"name":"InternetGetSecurityInfoByURLA","features":[1,115,68]},{"name":"InternetGetSecurityInfoByURLW","features":[1,115,68]},{"name":"InternetGoOnline","features":[1,115]},{"name":"InternetGoOnlineA","features":[1,115]},{"name":"InternetGoOnlineW","features":[1,115]},{"name":"InternetHangUp","features":[115]},{"name":"InternetInitializeAutoProxyDll","features":[1,115]},{"name":"InternetLockRequestFile","features":[1,115]},{"name":"InternetOpenA","features":[115]},{"name":"InternetOpenUrlA","features":[115]},{"name":"InternetOpenUrlW","features":[115]},{"name":"InternetOpenW","features":[115]},{"name":"InternetQueryDataAvailable","features":[1,115]},{"name":"InternetQueryFortezzaStatus","features":[1,115]},{"name":"InternetQueryOptionA","features":[1,115]},{"name":"InternetQueryOptionW","features":[1,115]},{"name":"InternetReadFile","features":[1,115]},{"name":"InternetReadFileExA","features":[1,115]},{"name":"InternetReadFileExW","features":[1,115]},{"name":"InternetSecurityProtocolToStringA","features":[1,115]},{"name":"InternetSecurityProtocolToStringW","features":[1,115]},{"name":"InternetSetCookieA","features":[1,115]},{"name":"InternetSetCookieEx2","features":[1,115]},{"name":"InternetSetCookieExA","features":[115]},{"name":"InternetSetCookieExW","features":[115]},{"name":"InternetSetCookieW","features":[1,115]},{"name":"InternetSetDialState","features":[1,115]},{"name":"InternetSetDialStateA","features":[1,115]},{"name":"InternetSetDialStateW","features":[1,115]},{"name":"InternetSetFilePointer","features":[115]},{"name":"InternetSetOptionA","features":[1,115]},{"name":"InternetSetOptionExA","features":[1,115]},{"name":"InternetSetOptionExW","features":[1,115]},{"name":"InternetSetOptionW","features":[1,115]},{"name":"InternetSetPerSiteCookieDecisionA","features":[1,115]},{"name":"InternetSetPerSiteCookieDecisionW","features":[1,115]},{"name":"InternetSetStatusCallback","features":[115]},{"name":"InternetSetStatusCallbackA","features":[115]},{"name":"InternetSetStatusCallbackW","features":[115]},{"name":"InternetShowSecurityInfoByURL","features":[1,115]},{"name":"InternetShowSecurityInfoByURLA","features":[1,115]},{"name":"InternetShowSecurityInfoByURLW","features":[1,115]},{"name":"InternetTimeFromSystemTime","features":[1,115]},{"name":"InternetTimeFromSystemTimeA","features":[1,115]},{"name":"InternetTimeFromSystemTimeW","features":[1,115]},{"name":"InternetTimeToSystemTime","features":[1,115]},{"name":"InternetTimeToSystemTimeA","features":[1,115]},{"name":"InternetTimeToSystemTimeW","features":[1,115]},{"name":"InternetUnlockRequestFile","features":[1,115]},{"name":"InternetWriteFile","features":[1,115]},{"name":"InternetWriteFileExA","features":[1,115]},{"name":"InternetWriteFileExW","features":[1,115]},{"name":"IsDomainLegalCookieDomainA","features":[1,115]},{"name":"IsDomainLegalCookieDomainW","features":[1,115]},{"name":"IsHostInProxyBypassList","features":[1,115]},{"name":"IsProfilesEnabled","features":[1,115]},{"name":"IsUrlCacheEntryExpiredA","features":[1,115]},{"name":"IsUrlCacheEntryExpiredW","features":[1,115]},{"name":"LOCAL_NAMESPACE_PREFIX","features":[115]},{"name":"LOCAL_NAMESPACE_PREFIX_W","features":[115]},{"name":"LPINTERNET_STATUS_CALLBACK","features":[115]},{"name":"LoadUrlCacheContent","features":[1,115]},{"name":"MAX_CACHE_ENTRY_INFO_SIZE","features":[115]},{"name":"MAX_GOPHER_ATTRIBUTE_NAME","features":[115]},{"name":"MAX_GOPHER_CATEGORY_NAME","features":[115]},{"name":"MAX_GOPHER_DISPLAY_TEXT","features":[115]},{"name":"MAX_GOPHER_HOST_NAME","features":[115]},{"name":"MAX_GOPHER_SELECTOR_TEXT","features":[115]},{"name":"MIN_GOPHER_ATTRIBUTE_LENGTH","features":[115]},{"name":"MUST_REVALIDATE_CACHE_ENTRY","features":[115]},{"name":"MaxPrivacySettings","features":[115]},{"name":"NORMAL_CACHE_ENTRY","features":[115]},{"name":"NameResolutionEnd","features":[115]},{"name":"NameResolutionStart","features":[115]},{"name":"OTHER_USER_CACHE_ENTRY","features":[115]},{"name":"OutgoingCookieState","features":[115]},{"name":"PENDING_DELETE_CACHE_ENTRY","features":[115]},{"name":"PFN_AUTH_NOTIFY","features":[115]},{"name":"PFN_DIAL_HANDLER","features":[1,115]},{"name":"POLICY_EXTENSION_TYPE_NONE","features":[115]},{"name":"POLICY_EXTENSION_TYPE_WINHTTP","features":[115]},{"name":"POLICY_EXTENSION_TYPE_WININET","features":[115]},{"name":"POLICY_EXTENSION_VERSION1","features":[115]},{"name":"POST_CHECK_CACHE_ENTRY","features":[115]},{"name":"POST_RESPONSE_CACHE_ENTRY","features":[115]},{"name":"PRIVACY_IMPACTED_CACHE_ENTRY","features":[115]},{"name":"PRIVACY_MODE_CACHE_ENTRY","features":[115]},{"name":"PRIVACY_TEMPLATE_ADVANCED","features":[115]},{"name":"PRIVACY_TEMPLATE_CUSTOM","features":[115]},{"name":"PRIVACY_TEMPLATE_HIGH","features":[115]},{"name":"PRIVACY_TEMPLATE_LOW","features":[115]},{"name":"PRIVACY_TEMPLATE_MAX","features":[115]},{"name":"PRIVACY_TEMPLATE_MEDIUM","features":[115]},{"name":"PRIVACY_TEMPLATE_MEDIUM_HIGH","features":[115]},{"name":"PRIVACY_TEMPLATE_MEDIUM_LOW","features":[115]},{"name":"PRIVACY_TEMPLATE_NO_COOKIES","features":[115]},{"name":"PRIVACY_TYPE_FIRST_PARTY","features":[115]},{"name":"PRIVACY_TYPE_THIRD_PARTY","features":[115]},{"name":"PROXY_AUTO_DETECT_TYPE","features":[115]},{"name":"PROXY_AUTO_DETECT_TYPE_DHCP","features":[115]},{"name":"PROXY_AUTO_DETECT_TYPE_DNS_A","features":[115]},{"name":"PROXY_TYPE_AUTO_DETECT","features":[115]},{"name":"PROXY_TYPE_AUTO_PROXY_URL","features":[115]},{"name":"PROXY_TYPE_DIRECT","features":[115]},{"name":"PROXY_TYPE_PROXY","features":[115]},{"name":"ParseX509EncodedCertificateForListBoxEntry","features":[115]},{"name":"PerformOperationOverUrlCacheA","features":[1,115]},{"name":"PrivacyGetZonePreferenceW","features":[115]},{"name":"PrivacySetZonePreferenceW","features":[115]},{"name":"ProofOfPossessionCookieInfo","features":[115]},{"name":"ProofOfPossessionCookieInfoManager","features":[115]},{"name":"REDIRECT_CACHE_ENTRY","features":[115]},{"name":"REGSTR_DIAL_AUTOCONNECT","features":[115]},{"name":"REGSTR_LEASH_LEGACY_COOKIES","features":[115]},{"name":"REQUEST_TIMES","features":[115]},{"name":"ReadGuidsForConnectedNetworks","features":[1,115]},{"name":"ReadUrlCacheEntryStream","features":[1,115]},{"name":"ReadUrlCacheEntryStreamEx","features":[1,115]},{"name":"RegisterUrlCacheNotification","features":[1,115]},{"name":"ResumeSuspendedDownload","features":[1,115]},{"name":"RetrieveUrlCacheEntryFileA","features":[1,115]},{"name":"RetrieveUrlCacheEntryFileW","features":[1,115]},{"name":"RetrieveUrlCacheEntryStreamA","features":[1,115]},{"name":"RetrieveUrlCacheEntryStreamW","features":[1,115]},{"name":"RunOnceUrlCache","features":[1,115]},{"name":"SECURITY_FLAG_128BIT","features":[115]},{"name":"SECURITY_FLAG_40BIT","features":[115]},{"name":"SECURITY_FLAG_56BIT","features":[115]},{"name":"SECURITY_FLAG_FORTEZZA","features":[115]},{"name":"SECURITY_FLAG_IETFSSL4","features":[115]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[115]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[115]},{"name":"SECURITY_FLAG_IGNORE_REVOCATION","features":[115]},{"name":"SECURITY_FLAG_IGNORE_WEAK_SIGNATURE","features":[115]},{"name":"SECURITY_FLAG_IGNORE_WRONG_USAGE","features":[115]},{"name":"SECURITY_FLAG_NORMALBITNESS","features":[115]},{"name":"SECURITY_FLAG_OPT_IN_WEAK_SIGNATURE","features":[115]},{"name":"SECURITY_FLAG_PCT","features":[115]},{"name":"SECURITY_FLAG_PCT4","features":[115]},{"name":"SECURITY_FLAG_SSL","features":[115]},{"name":"SECURITY_FLAG_SSL3","features":[115]},{"name":"SECURITY_FLAG_UNKNOWNBIT","features":[115]},{"name":"SHORTPATH_CACHE_ENTRY","features":[115]},{"name":"SPARSE_CACHE_ENTRY","features":[115]},{"name":"STATIC_CACHE_ENTRY","features":[115]},{"name":"STICKY_CACHE_ENTRY","features":[115]},{"name":"SetUrlCacheConfigInfoA","features":[1,115]},{"name":"SetUrlCacheConfigInfoW","features":[1,115]},{"name":"SetUrlCacheEntryGroup","features":[1,115]},{"name":"SetUrlCacheEntryGroupA","features":[1,115]},{"name":"SetUrlCacheEntryGroupW","features":[1,115]},{"name":"SetUrlCacheEntryInfoA","features":[1,115]},{"name":"SetUrlCacheEntryInfoW","features":[1,115]},{"name":"SetUrlCacheGroupAttributeA","features":[1,115]},{"name":"SetUrlCacheGroupAttributeW","features":[1,115]},{"name":"SetUrlCacheHeaderData","features":[1,115]},{"name":"ShowClientAuthCerts","features":[1,115]},{"name":"ShowSecurityInfo","features":[1,115,23,68]},{"name":"ShowX509EncodedCertificate","features":[1,115]},{"name":"TLSHandshakeEnd","features":[115]},{"name":"TLSHandshakeStart","features":[115]},{"name":"TRACK_OFFLINE_CACHE_ENTRY","features":[115]},{"name":"TRACK_ONLINE_CACHE_ENTRY","features":[115]},{"name":"URLCACHE_ENTRY_INFO","features":[1,115]},{"name":"URLHISTORY_CACHE_ENTRY","features":[115]},{"name":"URL_CACHE_LIMIT_TYPE","features":[115]},{"name":"URL_COMPONENTSA","features":[115]},{"name":"URL_COMPONENTSW","features":[115]},{"name":"UnlockUrlCacheEntryFile","features":[1,115]},{"name":"UnlockUrlCacheEntryFileA","features":[1,115]},{"name":"UnlockUrlCacheEntryFileW","features":[1,115]},{"name":"UnlockUrlCacheEntryStream","features":[1,115]},{"name":"UpdateUrlCacheContentPath","features":[1,115]},{"name":"UrlCacheCheckEntriesExist","features":[1,115]},{"name":"UrlCacheCloseEntryHandle","features":[115]},{"name":"UrlCacheContainerSetEntryMaximumAge","features":[115]},{"name":"UrlCacheCreateContainer","features":[115]},{"name":"UrlCacheFindFirstEntry","features":[1,115]},{"name":"UrlCacheFindNextEntry","features":[1,115]},{"name":"UrlCacheFreeEntryInfo","features":[1,115]},{"name":"UrlCacheFreeGlobalSpace","features":[115]},{"name":"UrlCacheGetContentPaths","features":[115]},{"name":"UrlCacheGetEntryInfo","features":[1,115]},{"name":"UrlCacheGetGlobalCacheSize","features":[115]},{"name":"UrlCacheGetGlobalLimit","features":[115]},{"name":"UrlCacheLimitTypeAppContainer","features":[115]},{"name":"UrlCacheLimitTypeAppContainerTotal","features":[115]},{"name":"UrlCacheLimitTypeIE","features":[115]},{"name":"UrlCacheLimitTypeIETotal","features":[115]},{"name":"UrlCacheLimitTypeNum","features":[115]},{"name":"UrlCacheReadEntryStream","features":[115]},{"name":"UrlCacheReloadSettings","features":[115]},{"name":"UrlCacheRetrieveEntryFile","features":[1,115]},{"name":"UrlCacheRetrieveEntryStream","features":[1,115]},{"name":"UrlCacheServer","features":[115]},{"name":"UrlCacheSetGlobalLimit","features":[115]},{"name":"UrlCacheUpdateEntryExtraData","features":[115]},{"name":"WININET_API_FLAG_ASYNC","features":[115]},{"name":"WININET_API_FLAG_SYNC","features":[115]},{"name":"WININET_API_FLAG_USE_CONTEXT","features":[115]},{"name":"WININET_PROXY_INFO","features":[1,115]},{"name":"WININET_PROXY_INFO_LIST","features":[1,115]},{"name":"WININET_SYNC_MODE","features":[115]},{"name":"WININET_SYNC_MODE_ALWAYS","features":[115]},{"name":"WININET_SYNC_MODE_AUTOMATIC","features":[115]},{"name":"WININET_SYNC_MODE_DEFAULT","features":[115]},{"name":"WININET_SYNC_MODE_NEVER","features":[115]},{"name":"WININET_SYNC_MODE_ONCE_PER_SESSION","features":[115]},{"name":"WININET_SYNC_MODE_ON_EXPIRY","features":[115]},{"name":"WPAD_CACHE_DELETE","features":[115]},{"name":"WPAD_CACHE_DELETE_ALL","features":[115]},{"name":"WPAD_CACHE_DELETE_CURRENT","features":[115]},{"name":"XDR_CACHE_ENTRY","features":[115]},{"name":"pfnInternetDeInitializeAutoProxyDll","features":[1,115]},{"name":"pfnInternetGetProxyInfo","features":[1,115]},{"name":"pfnInternetInitializeAutoProxyDll","features":[1,115]}],"477":[{"name":"AAL5_MODE_MESSAGE","features":[15]},{"name":"AAL5_MODE_STREAMING","features":[15]},{"name":"AAL5_PARAMETERS","features":[15]},{"name":"AAL5_SSCS_FRAME_RELAY","features":[15]},{"name":"AAL5_SSCS_NULL","features":[15]},{"name":"AAL5_SSCS_SSCOP_ASSURED","features":[15]},{"name":"AAL5_SSCS_SSCOP_NON_ASSURED","features":[15]},{"name":"AALTYPE_5","features":[15]},{"name":"AALTYPE_USER","features":[15]},{"name":"AALUSER_PARAMETERS","features":[15]},{"name":"AAL_PARAMETERS_IE","features":[15]},{"name":"AAL_TYPE","features":[15]},{"name":"ADDRESS_FAMILY","features":[15]},{"name":"ADDRINFOA","features":[15]},{"name":"ADDRINFOEX2A","features":[15]},{"name":"ADDRINFOEX2W","features":[15]},{"name":"ADDRINFOEX3","features":[15]},{"name":"ADDRINFOEX4","features":[1,15]},{"name":"ADDRINFOEX5","features":[1,15]},{"name":"ADDRINFOEX6","features":[1,15]},{"name":"ADDRINFOEXA","features":[15]},{"name":"ADDRINFOEXW","features":[15]},{"name":"ADDRINFOEX_VERSION_2","features":[15]},{"name":"ADDRINFOEX_VERSION_3","features":[15]},{"name":"ADDRINFOEX_VERSION_4","features":[15]},{"name":"ADDRINFOEX_VERSION_5","features":[15]},{"name":"ADDRINFOEX_VERSION_6","features":[15]},{"name":"ADDRINFOW","features":[15]},{"name":"ADDRINFO_DNS_SERVER","features":[15]},{"name":"AFPROTOCOLS","features":[15]},{"name":"AF_12844","features":[15]},{"name":"AF_APPLETALK","features":[15]},{"name":"AF_ATM","features":[15]},{"name":"AF_BAN","features":[15]},{"name":"AF_CCITT","features":[15]},{"name":"AF_CHAOS","features":[15]},{"name":"AF_CLUSTER","features":[15]},{"name":"AF_DATAKIT","features":[15]},{"name":"AF_DECnet","features":[15]},{"name":"AF_DLI","features":[15]},{"name":"AF_ECMA","features":[15]},{"name":"AF_FIREFOX","features":[15]},{"name":"AF_HYLINK","features":[15]},{"name":"AF_HYPERV","features":[15]},{"name":"AF_ICLFXBM","features":[15]},{"name":"AF_IMPLINK","features":[15]},{"name":"AF_INET","features":[15]},{"name":"AF_INET6","features":[15]},{"name":"AF_IPX","features":[15]},{"name":"AF_IRDA","features":[15]},{"name":"AF_ISO","features":[15]},{"name":"AF_LAT","features":[15]},{"name":"AF_LINK","features":[15]},{"name":"AF_MAX","features":[15]},{"name":"AF_NETBIOS","features":[15]},{"name":"AF_NETDES","features":[15]},{"name":"AF_NS","features":[15]},{"name":"AF_OSI","features":[15]},{"name":"AF_PUP","features":[15]},{"name":"AF_SNA","features":[15]},{"name":"AF_TCNMESSAGE","features":[15]},{"name":"AF_TCNPROCESS","features":[15]},{"name":"AF_UNIX","features":[15]},{"name":"AF_UNKNOWN1","features":[15]},{"name":"AF_UNSPEC","features":[15]},{"name":"AF_VOICEVIEW","features":[15]},{"name":"AI_ADDRCONFIG","features":[15]},{"name":"AI_ALL","features":[15]},{"name":"AI_BYPASS_DNS_CACHE","features":[15]},{"name":"AI_CANONNAME","features":[15]},{"name":"AI_DISABLE_IDN_ENCODING","features":[15]},{"name":"AI_DNS_ONLY","features":[15]},{"name":"AI_DNS_RESPONSE_HOSTFILE","features":[15]},{"name":"AI_DNS_RESPONSE_SECURE","features":[15]},{"name":"AI_DNS_SERVER_TYPE_DOH","features":[15]},{"name":"AI_DNS_SERVER_TYPE_UDP","features":[15]},{"name":"AI_DNS_SERVER_UDP_FALLBACK","features":[15]},{"name":"AI_EXCLUSIVE_CUSTOM_SERVERS","features":[15]},{"name":"AI_EXTENDED","features":[15]},{"name":"AI_FILESERVER","features":[15]},{"name":"AI_FORCE_CLEAR_TEXT","features":[15]},{"name":"AI_FQDN","features":[15]},{"name":"AI_NON_AUTHORITATIVE","features":[15]},{"name":"AI_NUMERICHOST","features":[15]},{"name":"AI_NUMERICSERV","features":[15]},{"name":"AI_PASSIVE","features":[15]},{"name":"AI_REQUIRE_SECURE","features":[15]},{"name":"AI_RESOLUTION_HANDLE","features":[15]},{"name":"AI_RETURN_PREFERRED_NAMES","features":[15]},{"name":"AI_RETURN_RESPONSE_FLAGS","features":[15]},{"name":"AI_RETURN_TTL","features":[15]},{"name":"AI_SECURE","features":[15]},{"name":"AI_SECURE_WITH_FALLBACK","features":[15]},{"name":"AI_V4MAPPED","features":[15]},{"name":"ARP_HARDWARE_TYPE","features":[15]},{"name":"ARP_HEADER","features":[15]},{"name":"ARP_HW_802","features":[15]},{"name":"ARP_HW_ENET","features":[15]},{"name":"ARP_OPCODE","features":[15]},{"name":"ARP_REQUEST","features":[15]},{"name":"ARP_RESPONSE","features":[15]},{"name":"ASSOCIATE_NAMERES_CONTEXT","features":[15]},{"name":"ASSOCIATE_NAMERES_CONTEXT_INPUT","features":[15]},{"name":"ATMPROTO_AAL1","features":[15]},{"name":"ATMPROTO_AAL2","features":[15]},{"name":"ATMPROTO_AAL34","features":[15]},{"name":"ATMPROTO_AAL5","features":[15]},{"name":"ATMPROTO_AALUSER","features":[15]},{"name":"ATM_ADDRESS","features":[15]},{"name":"ATM_ADDR_SIZE","features":[15]},{"name":"ATM_AESA","features":[15]},{"name":"ATM_BHLI","features":[15]},{"name":"ATM_BLLI","features":[15]},{"name":"ATM_BLLI_IE","features":[15]},{"name":"ATM_BROADBAND_BEARER_CAPABILITY_IE","features":[15]},{"name":"ATM_CALLING_PARTY_NUMBER_IE","features":[15]},{"name":"ATM_CAUSE_IE","features":[15]},{"name":"ATM_CONNECTION_ID","features":[15]},{"name":"ATM_E164","features":[15]},{"name":"ATM_NSAP","features":[15]},{"name":"ATM_PVC_PARAMS","features":[15]},{"name":"ATM_QOS_CLASS_IE","features":[15]},{"name":"ATM_TD","features":[1,15]},{"name":"ATM_TRAFFIC_DESCRIPTOR_IE","features":[1,15]},{"name":"ATM_TRANSIT_NETWORK_SELECTION_IE","features":[15]},{"name":"AcceptEx","features":[1,15,6]},{"name":"BASE_PROTOCOL","features":[15]},{"name":"BCOB_A","features":[15]},{"name":"BCOB_C","features":[15]},{"name":"BCOB_X","features":[15]},{"name":"BHLI_HighLayerProfile","features":[15]},{"name":"BHLI_ISO","features":[15]},{"name":"BHLI_UserSpecific","features":[15]},{"name":"BHLI_VendorSpecificAppId","features":[15]},{"name":"BIGENDIAN","features":[15]},{"name":"BITS_PER_BYTE","features":[15]},{"name":"BLLI_L2_ELAPB","features":[15]},{"name":"BLLI_L2_HDLC_ABM","features":[15]},{"name":"BLLI_L2_HDLC_ARM","features":[15]},{"name":"BLLI_L2_HDLC_NRM","features":[15]},{"name":"BLLI_L2_ISO_1745","features":[15]},{"name":"BLLI_L2_ISO_7776","features":[15]},{"name":"BLLI_L2_LLC","features":[15]},{"name":"BLLI_L2_MODE_EXT","features":[15]},{"name":"BLLI_L2_MODE_NORMAL","features":[15]},{"name":"BLLI_L2_Q921","features":[15]},{"name":"BLLI_L2_Q922","features":[15]},{"name":"BLLI_L2_USER_SPECIFIED","features":[15]},{"name":"BLLI_L2_X25L","features":[15]},{"name":"BLLI_L2_X25M","features":[15]},{"name":"BLLI_L2_X75","features":[15]},{"name":"BLLI_L3_IPI_IP","features":[15]},{"name":"BLLI_L3_IPI_SNAP","features":[15]},{"name":"BLLI_L3_ISO_8208","features":[15]},{"name":"BLLI_L3_ISO_TR9577","features":[15]},{"name":"BLLI_L3_MODE_EXT","features":[15]},{"name":"BLLI_L3_MODE_NORMAL","features":[15]},{"name":"BLLI_L3_PACKET_1024","features":[15]},{"name":"BLLI_L3_PACKET_128","features":[15]},{"name":"BLLI_L3_PACKET_16","features":[15]},{"name":"BLLI_L3_PACKET_2048","features":[15]},{"name":"BLLI_L3_PACKET_256","features":[15]},{"name":"BLLI_L3_PACKET_32","features":[15]},{"name":"BLLI_L3_PACKET_4096","features":[15]},{"name":"BLLI_L3_PACKET_512","features":[15]},{"name":"BLLI_L3_PACKET_64","features":[15]},{"name":"BLLI_L3_SIO_8473","features":[15]},{"name":"BLLI_L3_T70","features":[15]},{"name":"BLLI_L3_USER_SPECIFIED","features":[15]},{"name":"BLLI_L3_X223","features":[15]},{"name":"BLLI_L3_X25","features":[15]},{"name":"BYTE_ORDER","features":[15]},{"name":"CAUSE_AAL_PARAMETERS_UNSUPPORTED","features":[15]},{"name":"CAUSE_ACCESS_INFORMAION_DISCARDED","features":[15]},{"name":"CAUSE_BEARER_CAPABILITY_UNAUTHORIZED","features":[15]},{"name":"CAUSE_BEARER_CAPABILITY_UNAVAILABLE","features":[15]},{"name":"CAUSE_BEARER_CAPABILITY_UNIMPLEMENTED","features":[15]},{"name":"CAUSE_CALL_REJECTED","features":[15]},{"name":"CAUSE_CHANNEL_NONEXISTENT","features":[15]},{"name":"CAUSE_COND_PERMANENT","features":[15]},{"name":"CAUSE_COND_TRANSIENT","features":[15]},{"name":"CAUSE_COND_UNKNOWN","features":[15]},{"name":"CAUSE_DESTINATION_OUT_OF_ORDER","features":[15]},{"name":"CAUSE_INCOMPATIBLE_DESTINATION","features":[15]},{"name":"CAUSE_INCORRECT_MESSAGE_LENGTH","features":[15]},{"name":"CAUSE_INVALID_CALL_REFERENCE","features":[15]},{"name":"CAUSE_INVALID_ENDPOINT_REFERENCE","features":[15]},{"name":"CAUSE_INVALID_IE_CONTENTS","features":[15]},{"name":"CAUSE_INVALID_NUMBER_FORMAT","features":[15]},{"name":"CAUSE_INVALID_STATE_FOR_MESSAGE","features":[15]},{"name":"CAUSE_INVALID_TRANSIT_NETWORK_SELECTION","features":[15]},{"name":"CAUSE_LOC_BEYOND_INTERWORKING","features":[15]},{"name":"CAUSE_LOC_INTERNATIONAL_NETWORK","features":[15]},{"name":"CAUSE_LOC_PRIVATE_LOCAL","features":[15]},{"name":"CAUSE_LOC_PRIVATE_REMOTE","features":[15]},{"name":"CAUSE_LOC_PUBLIC_LOCAL","features":[15]},{"name":"CAUSE_LOC_PUBLIC_REMOTE","features":[15]},{"name":"CAUSE_LOC_TRANSIT_NETWORK","features":[15]},{"name":"CAUSE_LOC_USER","features":[15]},{"name":"CAUSE_MANDATORY_IE_MISSING","features":[15]},{"name":"CAUSE_NA_ABNORMAL","features":[15]},{"name":"CAUSE_NA_NORMAL","features":[15]},{"name":"CAUSE_NETWORK_OUT_OF_ORDER","features":[15]},{"name":"CAUSE_NORMAL_CALL_CLEARING","features":[15]},{"name":"CAUSE_NORMAL_UNSPECIFIED","features":[15]},{"name":"CAUSE_NO_ROUTE_TO_DESTINATION","features":[15]},{"name":"CAUSE_NO_ROUTE_TO_TRANSIT_NETWORK","features":[15]},{"name":"CAUSE_NO_USER_RESPONDING","features":[15]},{"name":"CAUSE_NO_VPI_VCI_AVAILABLE","features":[15]},{"name":"CAUSE_NUMBER_CHANGED","features":[15]},{"name":"CAUSE_OPTION_UNAVAILABLE","features":[15]},{"name":"CAUSE_PROTOCOL_ERROR","features":[15]},{"name":"CAUSE_PU_PROVIDER","features":[15]},{"name":"CAUSE_PU_USER","features":[15]},{"name":"CAUSE_QOS_UNAVAILABLE","features":[15]},{"name":"CAUSE_REASON_IE_INSUFFICIENT","features":[15]},{"name":"CAUSE_REASON_IE_MISSING","features":[15]},{"name":"CAUSE_REASON_USER","features":[15]},{"name":"CAUSE_RECOVERY_ON_TIMEOUT","features":[15]},{"name":"CAUSE_RESOURCE_UNAVAILABLE","features":[15]},{"name":"CAUSE_STATUS_ENQUIRY_RESPONSE","features":[15]},{"name":"CAUSE_TEMPORARY_FAILURE","features":[15]},{"name":"CAUSE_TOO_MANY_PENDING_ADD_PARTY","features":[15]},{"name":"CAUSE_UNALLOCATED_NUMBER","features":[15]},{"name":"CAUSE_UNIMPLEMENTED_IE","features":[15]},{"name":"CAUSE_UNIMPLEMENTED_MESSAGE_TYPE","features":[15]},{"name":"CAUSE_UNSUPPORTED_TRAFFIC_PARAMETERS","features":[15]},{"name":"CAUSE_USER_BUSY","features":[15]},{"name":"CAUSE_USER_CELL_RATE_UNAVAILABLE","features":[15]},{"name":"CAUSE_USER_REJECTS_CLIR","features":[15]},{"name":"CAUSE_VPI_VCI_UNACCEPTABLE","features":[15]},{"name":"CAUSE_VPI_VCI_UNAVAILABLE","features":[15]},{"name":"CF_ACCEPT","features":[15]},{"name":"CF_DEFER","features":[15]},{"name":"CF_REJECT","features":[15]},{"name":"CLIP_NOT","features":[15]},{"name":"CLIP_SUS","features":[15]},{"name":"CMSGHDR","features":[15]},{"name":"COMP_EQUAL","features":[15]},{"name":"COMP_NOTLESS","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_HARDWARE_SLOT_ALLOCATED","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_INVALID","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_POLICY_ERROR","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SERVICE_UNAVAILABLE","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SOFTWARE_SLOT_ALLOCATED","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SYSTEM_ERROR","features":[15]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_TRANSPORT_DISCONNECTED","features":[15]},{"name":"CSADDR_INFO","features":[15]},{"name":"DE_REUSE_SOCKET","features":[15]},{"name":"DL_ADDRESS_LENGTH_MAXIMUM","features":[15]},{"name":"DL_EI48","features":[15]},{"name":"DL_EI64","features":[15]},{"name":"DL_EUI48","features":[15]},{"name":"DL_EUI64","features":[15]},{"name":"DL_HEADER_LENGTH_MAXIMUM","features":[15]},{"name":"DL_OUI","features":[15]},{"name":"DL_TEREDO_ADDRESS","features":[15]},{"name":"DL_TEREDO_ADDRESS_PRV","features":[15]},{"name":"DL_TUNNEL_ADDRESS","features":[15,7]},{"name":"ETHERNET_HEADER","features":[15]},{"name":"ETHERNET_TYPE_802_1AD","features":[15]},{"name":"ETHERNET_TYPE_802_1Q","features":[15]},{"name":"ETHERNET_TYPE_ARP","features":[15]},{"name":"ETHERNET_TYPE_IPV4","features":[15]},{"name":"ETHERNET_TYPE_IPV6","features":[15]},{"name":"ETHERNET_TYPE_MINIMUM","features":[15]},{"name":"ETH_LENGTH_OF_HEADER","features":[15]},{"name":"ETH_LENGTH_OF_SNAP_HEADER","features":[15]},{"name":"ETH_LENGTH_OF_VLAN_HEADER","features":[15]},{"name":"EXT_LEN_UNIT","features":[15]},{"name":"E_WINDOW_ADVANCE_BY_TIME","features":[15]},{"name":"E_WINDOW_USE_AS_DATA_CACHE","features":[15]},{"name":"EnumProtocolsA","features":[15]},{"name":"EnumProtocolsW","features":[15]},{"name":"FALLBACK_INDEX","features":[15]},{"name":"FD_ACCEPT","features":[15]},{"name":"FD_ACCEPT_BIT","features":[15]},{"name":"FD_ADDRESS_LIST_CHANGE_BIT","features":[15]},{"name":"FD_CLOSE","features":[15]},{"name":"FD_CLOSE_BIT","features":[15]},{"name":"FD_CONNECT","features":[15]},{"name":"FD_CONNECT_BIT","features":[15]},{"name":"FD_GROUP_QOS_BIT","features":[15]},{"name":"FD_MAX_EVENTS","features":[15]},{"name":"FD_OOB","features":[15]},{"name":"FD_OOB_BIT","features":[15]},{"name":"FD_QOS_BIT","features":[15]},{"name":"FD_READ","features":[15]},{"name":"FD_READ_BIT","features":[15]},{"name":"FD_ROUTING_INTERFACE_CHANGE_BIT","features":[15]},{"name":"FD_SET","features":[15]},{"name":"FD_SETSIZE","features":[15]},{"name":"FD_WRITE","features":[15]},{"name":"FD_WRITE_BIT","features":[15]},{"name":"FIOASYNC","features":[15]},{"name":"FIONBIO","features":[15]},{"name":"FIONREAD","features":[15]},{"name":"FLOWSPEC","features":[15]},{"name":"FROM_PROTOCOL_INFO","features":[15]},{"name":"FallbackIndexMax","features":[15]},{"name":"FallbackIndexTcpFastopen","features":[15]},{"name":"FreeAddrInfoEx","features":[15]},{"name":"FreeAddrInfoExW","features":[15]},{"name":"FreeAddrInfoW","features":[15]},{"name":"GAI_STRERROR_BUFFER_SIZE","features":[15]},{"name":"GROUP_FILTER","features":[15]},{"name":"GROUP_REQ","features":[15]},{"name":"GROUP_SOURCE_REQ","features":[15]},{"name":"GetAcceptExSockaddrs","features":[15]},{"name":"GetAddrInfoExA","features":[1,15,6]},{"name":"GetAddrInfoExCancel","features":[1,15]},{"name":"GetAddrInfoExOverlappedResult","features":[1,15,6]},{"name":"GetAddrInfoExW","features":[1,15,6]},{"name":"GetAddrInfoW","features":[15]},{"name":"GetAddressByNameA","features":[1,15]},{"name":"GetAddressByNameW","features":[1,15]},{"name":"GetHostNameW","features":[15]},{"name":"GetNameByTypeA","features":[15]},{"name":"GetNameByTypeW","features":[15]},{"name":"GetNameInfoW","features":[15]},{"name":"GetServiceA","features":[1,15]},{"name":"GetServiceW","features":[1,15]},{"name":"GetTypeByNameA","features":[15]},{"name":"GetTypeByNameW","features":[15]},{"name":"HOSTENT","features":[15]},{"name":"IAS_ATTRIB_INT","features":[15]},{"name":"IAS_ATTRIB_NO_ATTRIB","features":[15]},{"name":"IAS_ATTRIB_NO_CLASS","features":[15]},{"name":"IAS_ATTRIB_OCTETSEQ","features":[15]},{"name":"IAS_ATTRIB_STR","features":[15]},{"name":"IAS_MAX_ATTRIBNAME","features":[15]},{"name":"IAS_MAX_CLASSNAME","features":[15]},{"name":"IAS_MAX_OCTET_STRING","features":[15]},{"name":"IAS_MAX_USER_STRING","features":[15]},{"name":"ICMP4_TIME_EXCEED_CODE","features":[15]},{"name":"ICMP4_TIME_EXCEED_REASSEMBLY","features":[15]},{"name":"ICMP4_TIME_EXCEED_TRANSIT","features":[15]},{"name":"ICMP4_UNREACH_ADMIN","features":[15]},{"name":"ICMP4_UNREACH_CODE","features":[15]},{"name":"ICMP4_UNREACH_FRAG_NEEDED","features":[15]},{"name":"ICMP4_UNREACH_HOST","features":[15]},{"name":"ICMP4_UNREACH_HOST_ADMIN","features":[15]},{"name":"ICMP4_UNREACH_HOST_TOS","features":[15]},{"name":"ICMP4_UNREACH_HOST_UNKNOWN","features":[15]},{"name":"ICMP4_UNREACH_ISOLATED","features":[15]},{"name":"ICMP4_UNREACH_NET","features":[15]},{"name":"ICMP4_UNREACH_NET_ADMIN","features":[15]},{"name":"ICMP4_UNREACH_NET_TOS","features":[15]},{"name":"ICMP4_UNREACH_NET_UNKNOWN","features":[15]},{"name":"ICMP4_UNREACH_PORT","features":[15]},{"name":"ICMP4_UNREACH_PROTOCOL","features":[15]},{"name":"ICMP4_UNREACH_SOURCEROUTE_FAILED","features":[15]},{"name":"ICMP6_DST_UNREACH_ADDR","features":[15]},{"name":"ICMP6_DST_UNREACH_ADMIN","features":[15]},{"name":"ICMP6_DST_UNREACH_BEYONDSCOPE","features":[15]},{"name":"ICMP6_DST_UNREACH_NOPORT","features":[15]},{"name":"ICMP6_DST_UNREACH_NOROUTE","features":[15]},{"name":"ICMP6_PARAMPROB_FIRSTFRAGMENT","features":[15]},{"name":"ICMP6_PARAMPROB_HEADER","features":[15]},{"name":"ICMP6_PARAMPROB_NEXTHEADER","features":[15]},{"name":"ICMP6_PARAMPROB_OPTION","features":[15]},{"name":"ICMP6_TIME_EXCEED_REASSEMBLY","features":[15]},{"name":"ICMP6_TIME_EXCEED_TRANSIT","features":[15]},{"name":"ICMPV4_ADDRESS_MASK_MESSAGE","features":[15]},{"name":"ICMPV4_INVALID_PREFERENCE_LEVEL","features":[15]},{"name":"ICMPV4_ROUTER_ADVERT_ENTRY","features":[15]},{"name":"ICMPV4_ROUTER_ADVERT_HEADER","features":[15]},{"name":"ICMPV4_ROUTER_SOLICIT","features":[15]},{"name":"ICMPV4_TIMESTAMP_MESSAGE","features":[15]},{"name":"ICMPV6_ECHO_REQUEST_FLAG_REVERSE","features":[15]},{"name":"ICMP_ERROR_INFO","features":[15]},{"name":"ICMP_HEADER","features":[15]},{"name":"ICMP_MESSAGE","features":[15]},{"name":"IE_AALParameters","features":[15]},{"name":"IE_BHLI","features":[15]},{"name":"IE_BLLI","features":[15]},{"name":"IE_BroadbandBearerCapability","features":[15]},{"name":"IE_CalledPartyNumber","features":[15]},{"name":"IE_CalledPartySubaddress","features":[15]},{"name":"IE_CallingPartyNumber","features":[15]},{"name":"IE_CallingPartySubaddress","features":[15]},{"name":"IE_Cause","features":[15]},{"name":"IE_QOSClass","features":[15]},{"name":"IE_TrafficDescriptor","features":[15]},{"name":"IE_TransitNetworkSelection","features":[15]},{"name":"IFF_BROADCAST","features":[15]},{"name":"IFF_LOOPBACK","features":[15]},{"name":"IFF_MULTICAST","features":[15]},{"name":"IFF_POINTTOPOINT","features":[15]},{"name":"IFF_UP","features":[15]},{"name":"IGMPV3_QUERY_HEADER","features":[15]},{"name":"IGMPV3_REPORT_HEADER","features":[15]},{"name":"IGMPV3_REPORT_RECORD_HEADER","features":[15]},{"name":"IGMP_HEADER","features":[15]},{"name":"IGMP_LEAVE_GROUP_TYPE","features":[15]},{"name":"IGMP_MAX_RESP_CODE_TYPE","features":[15]},{"name":"IGMP_MAX_RESP_CODE_TYPE_FLOAT","features":[15]},{"name":"IGMP_MAX_RESP_CODE_TYPE_NORMAL","features":[15]},{"name":"IGMP_QUERY_TYPE","features":[15]},{"name":"IGMP_VERSION1_REPORT_TYPE","features":[15]},{"name":"IGMP_VERSION2_REPORT_TYPE","features":[15]},{"name":"IGMP_VERSION3_REPORT_TYPE","features":[15]},{"name":"IMPLINK_HIGHEXPER","features":[15]},{"name":"IMPLINK_IP","features":[15]},{"name":"IMPLINK_LOWEXPER","features":[15]},{"name":"IN4ADDR_LINKLOCALPREFIX_LENGTH","features":[15]},{"name":"IN4ADDR_LOOPBACK","features":[15]},{"name":"IN4ADDR_LOOPBACKPREFIX_LENGTH","features":[15]},{"name":"IN4ADDR_MULTICASTPREFIX_LENGTH","features":[15]},{"name":"IN6ADDR_6TO4PREFIX_LENGTH","features":[15]},{"name":"IN6ADDR_LINKLOCALPREFIX_LENGTH","features":[15]},{"name":"IN6ADDR_MULTICASTPREFIX_LENGTH","features":[15]},{"name":"IN6ADDR_SOLICITEDNODEMULTICASTPREFIX_LENGTH","features":[15]},{"name":"IN6ADDR_TEREDOPREFIX_LENGTH","features":[15]},{"name":"IN6ADDR_V4MAPPEDPREFIX_LENGTH","features":[15]},{"name":"IN6_ADDR","features":[15]},{"name":"IN6_EMBEDDEDV4_BITS_IN_BYTE","features":[15]},{"name":"IN6_EMBEDDEDV4_UOCTET_POSITION","features":[15]},{"name":"IN6_PKTINFO","features":[15]},{"name":"IN6_PKTINFO_EX","features":[15]},{"name":"INADDR_LOOPBACK","features":[15]},{"name":"INADDR_NONE","features":[15]},{"name":"INCL_WINSOCK_API_PROTOTYPES","features":[15]},{"name":"INCL_WINSOCK_API_TYPEDEFS","features":[15]},{"name":"INET6_ADDRSTRLEN","features":[15]},{"name":"INET_ADDRSTRLEN","features":[15]},{"name":"INET_PORT_RANGE","features":[15]},{"name":"INET_PORT_RESERVATION_INFORMATION","features":[15]},{"name":"INET_PORT_RESERVATION_INSTANCE","features":[15]},{"name":"INET_PORT_RESERVATION_TOKEN","features":[15]},{"name":"INTERFACE_INFO","features":[15]},{"name":"INTERFACE_INFO_EX","features":[15]},{"name":"INVALID_SOCKET","features":[15]},{"name":"IN_ADDR","features":[15]},{"name":"IN_CLASSA_HOST","features":[15]},{"name":"IN_CLASSA_MAX","features":[15]},{"name":"IN_CLASSA_NET","features":[15]},{"name":"IN_CLASSA_NSHIFT","features":[15]},{"name":"IN_CLASSB_HOST","features":[15]},{"name":"IN_CLASSB_MAX","features":[15]},{"name":"IN_CLASSB_NET","features":[15]},{"name":"IN_CLASSB_NSHIFT","features":[15]},{"name":"IN_CLASSC_HOST","features":[15]},{"name":"IN_CLASSC_NET","features":[15]},{"name":"IN_CLASSC_NSHIFT","features":[15]},{"name":"IN_CLASSD_HOST","features":[15]},{"name":"IN_CLASSD_NET","features":[15]},{"name":"IN_CLASSD_NSHIFT","features":[15]},{"name":"IN_PKTINFO","features":[15]},{"name":"IN_PKTINFO_EX","features":[15]},{"name":"IN_RECVERR","features":[15]},{"name":"IOCPARM_MASK","features":[15]},{"name":"IOC_IN","features":[15]},{"name":"IOC_INOUT","features":[15]},{"name":"IOC_OUT","features":[15]},{"name":"IOC_PROTOCOL","features":[15]},{"name":"IOC_UNIX","features":[15]},{"name":"IOC_VENDOR","features":[15]},{"name":"IOC_VOID","features":[15]},{"name":"IOC_WS2","features":[15]},{"name":"IP4_OFF_MASK","features":[15]},{"name":"IP6F_MORE_FRAG","features":[15]},{"name":"IP6F_OFF_MASK","features":[15]},{"name":"IP6F_RESERVED_MASK","features":[15]},{"name":"IP6OPT_JUMBO","features":[15]},{"name":"IP6OPT_MUTABLE","features":[15]},{"name":"IP6OPT_NSAP_ADDR","features":[15]},{"name":"IP6OPT_PAD1","features":[15]},{"name":"IP6OPT_PADN","features":[15]},{"name":"IP6OPT_ROUTER_ALERT","features":[15]},{"name":"IP6OPT_TUNNEL_LIMIT","features":[15]},{"name":"IP6OPT_TYPE_DISCARD","features":[15]},{"name":"IP6OPT_TYPE_FORCEICMP","features":[15]},{"name":"IP6OPT_TYPE_ICMP","features":[15]},{"name":"IP6OPT_TYPE_SKIP","features":[15]},{"name":"IP6T_SO_ORIGINAL_DST","features":[15]},{"name":"IPPORT_BIFFUDP","features":[15]},{"name":"IPPORT_CHARGEN","features":[15]},{"name":"IPPORT_CMDSERVER","features":[15]},{"name":"IPPORT_DAYTIME","features":[15]},{"name":"IPPORT_DISCARD","features":[15]},{"name":"IPPORT_DYNAMIC_MAX","features":[15]},{"name":"IPPORT_DYNAMIC_MIN","features":[15]},{"name":"IPPORT_ECHO","features":[15]},{"name":"IPPORT_EFSSERVER","features":[15]},{"name":"IPPORT_EPMAP","features":[15]},{"name":"IPPORT_EXECSERVER","features":[15]},{"name":"IPPORT_FINGER","features":[15]},{"name":"IPPORT_FTP","features":[15]},{"name":"IPPORT_FTP_DATA","features":[15]},{"name":"IPPORT_HTTPS","features":[15]},{"name":"IPPORT_IMAP","features":[15]},{"name":"IPPORT_IMAP3","features":[15]},{"name":"IPPORT_LDAP","features":[15]},{"name":"IPPORT_LOGINSERVER","features":[15]},{"name":"IPPORT_MICROSOFT_DS","features":[15]},{"name":"IPPORT_MSP","features":[15]},{"name":"IPPORT_MTP","features":[15]},{"name":"IPPORT_NAMESERVER","features":[15]},{"name":"IPPORT_NETBIOS_DGM","features":[15]},{"name":"IPPORT_NETBIOS_NS","features":[15]},{"name":"IPPORT_NETBIOS_SSN","features":[15]},{"name":"IPPORT_NETSTAT","features":[15]},{"name":"IPPORT_NTP","features":[15]},{"name":"IPPORT_POP3","features":[15]},{"name":"IPPORT_QOTD","features":[15]},{"name":"IPPORT_REGISTERED_MAX","features":[15]},{"name":"IPPORT_REGISTERED_MIN","features":[15]},{"name":"IPPORT_RESERVED","features":[15]},{"name":"IPPORT_RJE","features":[15]},{"name":"IPPORT_ROUTESERVER","features":[15]},{"name":"IPPORT_SMTP","features":[15]},{"name":"IPPORT_SNMP","features":[15]},{"name":"IPPORT_SNMP_TRAP","features":[15]},{"name":"IPPORT_SUPDUP","features":[15]},{"name":"IPPORT_SYSTAT","features":[15]},{"name":"IPPORT_TCPMUX","features":[15]},{"name":"IPPORT_TELNET","features":[15]},{"name":"IPPORT_TFTP","features":[15]},{"name":"IPPORT_TIMESERVER","features":[15]},{"name":"IPPORT_TTYLINK","features":[15]},{"name":"IPPORT_WHOIS","features":[15]},{"name":"IPPORT_WHOSERVER","features":[15]},{"name":"IPPROTO","features":[15]},{"name":"IPPROTO_AH","features":[15]},{"name":"IPPROTO_CBT","features":[15]},{"name":"IPPROTO_DSTOPTS","features":[15]},{"name":"IPPROTO_EGP","features":[15]},{"name":"IPPROTO_ESP","features":[15]},{"name":"IPPROTO_FRAGMENT","features":[15]},{"name":"IPPROTO_GGP","features":[15]},{"name":"IPPROTO_HOPOPTS","features":[15]},{"name":"IPPROTO_ICLFXBM","features":[15]},{"name":"IPPROTO_ICMP","features":[15]},{"name":"IPPROTO_ICMPV6","features":[15]},{"name":"IPPROTO_IDP","features":[15]},{"name":"IPPROTO_IGMP","features":[15]},{"name":"IPPROTO_IGP","features":[15]},{"name":"IPPROTO_IP","features":[15]},{"name":"IPPROTO_IPV4","features":[15]},{"name":"IPPROTO_IPV6","features":[15]},{"name":"IPPROTO_L2TP","features":[15]},{"name":"IPPROTO_MAX","features":[15]},{"name":"IPPROTO_ND","features":[15]},{"name":"IPPROTO_NONE","features":[15]},{"name":"IPPROTO_PGM","features":[15]},{"name":"IPPROTO_PIM","features":[15]},{"name":"IPPROTO_PUP","features":[15]},{"name":"IPPROTO_RAW","features":[15]},{"name":"IPPROTO_RDP","features":[15]},{"name":"IPPROTO_RESERVED_IPSEC","features":[15]},{"name":"IPPROTO_RESERVED_IPSECOFFLOAD","features":[15]},{"name":"IPPROTO_RESERVED_MAX","features":[15]},{"name":"IPPROTO_RESERVED_RAW","features":[15]},{"name":"IPPROTO_RESERVED_WNV","features":[15]},{"name":"IPPROTO_RM","features":[15]},{"name":"IPPROTO_ROUTING","features":[15]},{"name":"IPPROTO_SCTP","features":[15]},{"name":"IPPROTO_ST","features":[15]},{"name":"IPPROTO_TCP","features":[15]},{"name":"IPPROTO_UDP","features":[15]},{"name":"IPTLS_METADATA","features":[15]},{"name":"IPV4_HEADER","features":[15]},{"name":"IPV4_MAX_MINIMUM_MTU","features":[15]},{"name":"IPV4_MINIMUM_MTU","features":[15]},{"name":"IPV4_MIN_MINIMUM_MTU","features":[15]},{"name":"IPV4_OPTION_HEADER","features":[15]},{"name":"IPV4_OPTION_TYPE","features":[15]},{"name":"IPV4_ROUTING_HEADER","features":[15]},{"name":"IPV4_TIMESTAMP_OPTION","features":[15]},{"name":"IPV4_VERSION","features":[15]},{"name":"IPV6_ADD_IFLIST","features":[15]},{"name":"IPV6_ADD_MEMBERSHIP","features":[15]},{"name":"IPV6_CHECKSUM","features":[15]},{"name":"IPV6_DEL_IFLIST","features":[15]},{"name":"IPV6_DONTFRAG","features":[15]},{"name":"IPV6_DROP_MEMBERSHIP","features":[15]},{"name":"IPV6_ECN","features":[15]},{"name":"IPV6_ECN_MASK","features":[15]},{"name":"IPV6_ECN_SHIFT","features":[15]},{"name":"IPV6_EXTENSION_HEADER","features":[15]},{"name":"IPV6_FLOW_LABEL_MASK","features":[15]},{"name":"IPV6_FRAGMENT_HEADER","features":[15]},{"name":"IPV6_FULL_TRAFFIC_CLASS_MASK","features":[15]},{"name":"IPV6_GET_IFLIST","features":[15]},{"name":"IPV6_HDRINCL","features":[15]},{"name":"IPV6_HEADER","features":[15]},{"name":"IPV6_HOPLIMIT","features":[15]},{"name":"IPV6_HOPOPTS","features":[15]},{"name":"IPV6_IFLIST","features":[15]},{"name":"IPV6_JOIN_GROUP","features":[15]},{"name":"IPV6_LEAVE_GROUP","features":[15]},{"name":"IPV6_MINIMUM_MTU","features":[15]},{"name":"IPV6_MREQ","features":[15]},{"name":"IPV6_MTU","features":[15]},{"name":"IPV6_MTU_DISCOVER","features":[15]},{"name":"IPV6_MULTICAST_HOPS","features":[15]},{"name":"IPV6_MULTICAST_IF","features":[15]},{"name":"IPV6_MULTICAST_LOOP","features":[15]},{"name":"IPV6_NEIGHBOR_ADVERTISEMENT_FLAGS","features":[15]},{"name":"IPV6_NRT_INTERFACE","features":[15]},{"name":"IPV6_OPTION_HEADER","features":[15]},{"name":"IPV6_OPTION_JUMBOGRAM","features":[15]},{"name":"IPV6_OPTION_ROUTER_ALERT","features":[15]},{"name":"IPV6_OPTION_TYPE","features":[15]},{"name":"IPV6_PKTINFO","features":[15]},{"name":"IPV6_PKTINFO_EX","features":[15]},{"name":"IPV6_PROTECTION_LEVEL","features":[15]},{"name":"IPV6_RECVDSTADDR","features":[15]},{"name":"IPV6_RECVECN","features":[15]},{"name":"IPV6_RECVERR","features":[15]},{"name":"IPV6_RECVIF","features":[15]},{"name":"IPV6_RECVRTHDR","features":[15]},{"name":"IPV6_RECVTCLASS","features":[15]},{"name":"IPV6_ROUTER_ADVERTISEMENT_FLAGS","features":[15]},{"name":"IPV6_ROUTING_HEADER","features":[15]},{"name":"IPV6_RTHDR","features":[15]},{"name":"IPV6_TCLASS","features":[15]},{"name":"IPV6_TRAFFIC_CLASS_MASK","features":[15]},{"name":"IPV6_UNICAST_HOPS","features":[15]},{"name":"IPV6_UNICAST_IF","features":[15]},{"name":"IPV6_USER_MTU","features":[15]},{"name":"IPV6_V6ONLY","features":[15]},{"name":"IPV6_VERSION","features":[15]},{"name":"IPV6_WFP_REDIRECT_CONTEXT","features":[15]},{"name":"IPV6_WFP_REDIRECT_RECORDS","features":[15]},{"name":"IPX_ADDRESS","features":[15]},{"name":"IPX_ADDRESS_DATA","features":[1,15]},{"name":"IPX_ADDRESS_NOTIFY","features":[15]},{"name":"IPX_DSTYPE","features":[15]},{"name":"IPX_EXTENDED_ADDRESS","features":[15]},{"name":"IPX_FILTERPTYPE","features":[15]},{"name":"IPX_GETNETINFO","features":[15]},{"name":"IPX_GETNETINFO_NORIP","features":[15]},{"name":"IPX_IMMEDIATESPXACK","features":[15]},{"name":"IPX_MAXSIZE","features":[15]},{"name":"IPX_MAX_ADAPTER_NUM","features":[15]},{"name":"IPX_NETNUM_DATA","features":[15]},{"name":"IPX_PTYPE","features":[15]},{"name":"IPX_RECEIVE_BROADCAST","features":[15]},{"name":"IPX_RECVHDR","features":[15]},{"name":"IPX_RERIPNETNUMBER","features":[15]},{"name":"IPX_SPXCONNSTATUS_DATA","features":[15]},{"name":"IPX_SPXGETCONNECTIONSTATUS","features":[15]},{"name":"IPX_STOPFILTERPTYPE","features":[15]},{"name":"IP_ADD_IFLIST","features":[15]},{"name":"IP_ADD_MEMBERSHIP","features":[15]},{"name":"IP_ADD_SOURCE_MEMBERSHIP","features":[15]},{"name":"IP_BLOCK_SOURCE","features":[15]},{"name":"IP_DEFAULT_MULTICAST_LOOP","features":[15]},{"name":"IP_DEFAULT_MULTICAST_TTL","features":[15]},{"name":"IP_DEL_IFLIST","features":[15]},{"name":"IP_DONTFRAGMENT","features":[15]},{"name":"IP_DROP_MEMBERSHIP","features":[15]},{"name":"IP_DROP_SOURCE_MEMBERSHIP","features":[15]},{"name":"IP_ECN","features":[15]},{"name":"IP_GET_IFLIST","features":[15]},{"name":"IP_HDRINCL","features":[15]},{"name":"IP_HOPLIMIT","features":[15]},{"name":"IP_IFLIST","features":[15]},{"name":"IP_MAX_MEMBERSHIPS","features":[15]},{"name":"IP_MREQ","features":[15]},{"name":"IP_MREQ_SOURCE","features":[15]},{"name":"IP_MSFILTER","features":[15]},{"name":"IP_MTU","features":[15]},{"name":"IP_MTU_DISCOVER","features":[15]},{"name":"IP_MULTICAST_IF","features":[15]},{"name":"IP_MULTICAST_LOOP","features":[15]},{"name":"IP_MULTICAST_TTL","features":[15]},{"name":"IP_NRT_INTERFACE","features":[15]},{"name":"IP_OPTIONS","features":[15]},{"name":"IP_OPTION_TIMESTAMP_ADDRESS","features":[15]},{"name":"IP_OPTION_TIMESTAMP_FLAGS","features":[15]},{"name":"IP_OPTION_TIMESTAMP_ONLY","features":[15]},{"name":"IP_OPTION_TIMESTAMP_SPECIFIC_ADDRESS","features":[15]},{"name":"IP_OPT_EOL","features":[15]},{"name":"IP_OPT_LSRR","features":[15]},{"name":"IP_OPT_MULTIDEST","features":[15]},{"name":"IP_OPT_NOP","features":[15]},{"name":"IP_OPT_ROUTER_ALERT","features":[15]},{"name":"IP_OPT_RR","features":[15]},{"name":"IP_OPT_SECURITY","features":[15]},{"name":"IP_OPT_SID","features":[15]},{"name":"IP_OPT_SSRR","features":[15]},{"name":"IP_OPT_TS","features":[15]},{"name":"IP_ORIGINAL_ARRIVAL_IF","features":[15]},{"name":"IP_PKTINFO","features":[15]},{"name":"IP_PKTINFO_EX","features":[15]},{"name":"IP_PMTUDISC_DO","features":[15]},{"name":"IP_PMTUDISC_DONT","features":[15]},{"name":"IP_PMTUDISC_MAX","features":[15]},{"name":"IP_PMTUDISC_NOT_SET","features":[15]},{"name":"IP_PMTUDISC_PROBE","features":[15]},{"name":"IP_PROTECTION_LEVEL","features":[15]},{"name":"IP_RECEIVE_BROADCAST","features":[15]},{"name":"IP_RECVDSTADDR","features":[15]},{"name":"IP_RECVECN","features":[15]},{"name":"IP_RECVERR","features":[15]},{"name":"IP_RECVIF","features":[15]},{"name":"IP_RECVRTHDR","features":[15]},{"name":"IP_RECVTCLASS","features":[15]},{"name":"IP_RECVTOS","features":[15]},{"name":"IP_RECVTTL","features":[15]},{"name":"IP_RTHDR","features":[15]},{"name":"IP_TCLASS","features":[15]},{"name":"IP_TOS","features":[15]},{"name":"IP_TTL","features":[15]},{"name":"IP_UNBLOCK_SOURCE","features":[15]},{"name":"IP_UNICAST_IF","features":[15]},{"name":"IP_UNSPECIFIED_HOP_LIMIT","features":[15]},{"name":"IP_UNSPECIFIED_TYPE_OF_SERVICE","features":[15]},{"name":"IP_UNSPECIFIED_USER_MTU","features":[15]},{"name":"IP_USER_MTU","features":[15]},{"name":"IP_VER_MASK","features":[15]},{"name":"IP_WFP_REDIRECT_CONTEXT","features":[15]},{"name":"IP_WFP_REDIRECT_RECORDS","features":[15]},{"name":"IRDA_PROTO_SOCK_STREAM","features":[15]},{"name":"IRLMP_9WIRE_MODE","features":[15]},{"name":"IRLMP_DISCOVERY_MODE","features":[15]},{"name":"IRLMP_ENUMDEVICES","features":[15]},{"name":"IRLMP_EXCLUSIVE_MODE","features":[15]},{"name":"IRLMP_IAS_QUERY","features":[15]},{"name":"IRLMP_IAS_SET","features":[15]},{"name":"IRLMP_IRLPT_MODE","features":[15]},{"name":"IRLMP_PARAMETERS","features":[15]},{"name":"IRLMP_SEND_PDU_LEN","features":[15]},{"name":"IRLMP_SHARP_MODE","features":[15]},{"name":"IRLMP_TINYTP_MODE","features":[15]},{"name":"ISOPROTO_CLNP","features":[15]},{"name":"ISOPROTO_CLTP","features":[15]},{"name":"ISOPROTO_ESIS","features":[15]},{"name":"ISOPROTO_INACT_NL","features":[15]},{"name":"ISOPROTO_INTRAISIS","features":[15]},{"name":"ISOPROTO_TP","features":[15]},{"name":"ISOPROTO_TP0","features":[15]},{"name":"ISOPROTO_TP1","features":[15]},{"name":"ISOPROTO_TP2","features":[15]},{"name":"ISOPROTO_TP3","features":[15]},{"name":"ISOPROTO_TP4","features":[15]},{"name":"ISOPROTO_X25","features":[15]},{"name":"ISO_EXP_DATA_NUSE","features":[15]},{"name":"ISO_EXP_DATA_USE","features":[15]},{"name":"ISO_HIERARCHICAL","features":[15]},{"name":"ISO_MAX_ADDR_LENGTH","features":[15]},{"name":"ISO_NON_HIERARCHICAL","features":[15]},{"name":"InetNtopW","features":[15]},{"name":"InetPtonW","features":[15]},{"name":"IpDadStateDeprecated","features":[15]},{"name":"IpDadStateDuplicate","features":[15]},{"name":"IpDadStateInvalid","features":[15]},{"name":"IpDadStatePreferred","features":[15]},{"name":"IpDadStateTentative","features":[15]},{"name":"IpPrefixOriginDhcp","features":[15]},{"name":"IpPrefixOriginManual","features":[15]},{"name":"IpPrefixOriginOther","features":[15]},{"name":"IpPrefixOriginRouterAdvertisement","features":[15]},{"name":"IpPrefixOriginUnchanged","features":[15]},{"name":"IpPrefixOriginWellKnown","features":[15]},{"name":"IpSuffixOriginDhcp","features":[15]},{"name":"IpSuffixOriginLinkLayerAddress","features":[15]},{"name":"IpSuffixOriginManual","features":[15]},{"name":"IpSuffixOriginOther","features":[15]},{"name":"IpSuffixOriginRandom","features":[15]},{"name":"IpSuffixOriginUnchanged","features":[15]},{"name":"IpSuffixOriginWellKnown","features":[15]},{"name":"JL_BOTH","features":[15]},{"name":"JL_RECEIVER_ONLY","features":[15]},{"name":"JL_SENDER_ONLY","features":[15]},{"name":"LAYERED_PROTOCOL","features":[15]},{"name":"LINGER","features":[15]},{"name":"LITTLEENDIAN","features":[15]},{"name":"LM_BAUD_115200","features":[15]},{"name":"LM_BAUD_1152K","features":[15]},{"name":"LM_BAUD_1200","features":[15]},{"name":"LM_BAUD_16M","features":[15]},{"name":"LM_BAUD_19200","features":[15]},{"name":"LM_BAUD_2400","features":[15]},{"name":"LM_BAUD_38400","features":[15]},{"name":"LM_BAUD_4M","features":[15]},{"name":"LM_BAUD_57600","features":[15]},{"name":"LM_BAUD_576K","features":[15]},{"name":"LM_BAUD_9600","features":[15]},{"name":"LM_HB1_Computer","features":[15]},{"name":"LM_HB1_Fax","features":[15]},{"name":"LM_HB1_LANAccess","features":[15]},{"name":"LM_HB1_Modem","features":[15]},{"name":"LM_HB1_PDA_Palmtop","features":[15]},{"name":"LM_HB1_PnP","features":[15]},{"name":"LM_HB1_Printer","features":[15]},{"name":"LM_HB2_FileServer","features":[15]},{"name":"LM_HB2_Telephony","features":[15]},{"name":"LM_HB_Extension","features":[15]},{"name":"LM_IRPARMS","features":[15]},{"name":"LOG2_BITS_PER_BYTE","features":[15]},{"name":"LPBLOCKINGCALLBACK","features":[1,15]},{"name":"LPCONDITIONPROC","features":[15]},{"name":"LPFN_ACCEPTEX","features":[1,15,6]},{"name":"LPFN_CONNECTEX","features":[1,15,6]},{"name":"LPFN_DISCONNECTEX","features":[1,15,6]},{"name":"LPFN_GETACCEPTEXSOCKADDRS","features":[15]},{"name":"LPFN_NSPAPI","features":[15]},{"name":"LPFN_RIOCLOSECOMPLETIONQUEUE","features":[15]},{"name":"LPFN_RIOCREATECOMPLETIONQUEUE","features":[1,15]},{"name":"LPFN_RIOCREATEREQUESTQUEUE","features":[15]},{"name":"LPFN_RIODEQUEUECOMPLETION","features":[15]},{"name":"LPFN_RIODEREGISTERBUFFER","features":[15]},{"name":"LPFN_RIONOTIFY","features":[15]},{"name":"LPFN_RIORECEIVE","features":[1,15]},{"name":"LPFN_RIORECEIVEEX","features":[15]},{"name":"LPFN_RIOREGISTERBUFFER","features":[15]},{"name":"LPFN_RIORESIZECOMPLETIONQUEUE","features":[1,15]},{"name":"LPFN_RIORESIZEREQUESTQUEUE","features":[1,15]},{"name":"LPFN_RIOSEND","features":[1,15]},{"name":"LPFN_RIOSENDEX","features":[1,15]},{"name":"LPFN_TRANSMITFILE","features":[1,15,6]},{"name":"LPFN_TRANSMITPACKETS","features":[1,15,6]},{"name":"LPFN_WSAPOLL","features":[15]},{"name":"LPFN_WSARECVMSG","features":[1,15,6]},{"name":"LPFN_WSASENDMSG","features":[1,15,6]},{"name":"LPLOOKUPSERVICE_COMPLETION_ROUTINE","features":[1,15,6]},{"name":"LPNSPCLEANUP","features":[15]},{"name":"LPNSPGETSERVICECLASSINFO","features":[15]},{"name":"LPNSPINSTALLSERVICECLASS","features":[15]},{"name":"LPNSPIOCTL","features":[1,15,6]},{"name":"LPNSPLOOKUPSERVICEBEGIN","features":[1,15,41]},{"name":"LPNSPLOOKUPSERVICEEND","features":[1,15]},{"name":"LPNSPLOOKUPSERVICENEXT","features":[1,15,41]},{"name":"LPNSPREMOVESERVICECLASS","features":[15]},{"name":"LPNSPSETSERVICE","features":[15,41]},{"name":"LPNSPSTARTUP","features":[1,15,41,6]},{"name":"LPNSPV2CLEANUP","features":[15]},{"name":"LPNSPV2CLIENTSESSIONRUNDOWN","features":[15]},{"name":"LPNSPV2LOOKUPSERVICEBEGIN","features":[1,15,41]},{"name":"LPNSPV2LOOKUPSERVICEEND","features":[1,15]},{"name":"LPNSPV2LOOKUPSERVICENEXTEX","features":[1,15,41]},{"name":"LPNSPV2SETSERVICEEX","features":[1,15,41]},{"name":"LPNSPV2STARTUP","features":[15]},{"name":"LPSERVICE_CALLBACK_PROC","features":[1,15]},{"name":"LPWPUCLOSEEVENT","features":[1,15]},{"name":"LPWPUCLOSESOCKETHANDLE","features":[15]},{"name":"LPWPUCLOSETHREAD","features":[1,15]},{"name":"LPWPUCOMPLETEOVERLAPPEDREQUEST","features":[1,15,6]},{"name":"LPWPUCREATEEVENT","features":[1,15]},{"name":"LPWPUCREATESOCKETHANDLE","features":[15]},{"name":"LPWPUFDISSET","features":[15]},{"name":"LPWPUGETPROVIDERPATH","features":[15]},{"name":"LPWPUMODIFYIFSHANDLE","features":[15]},{"name":"LPWPUOPENCURRENTTHREAD","features":[1,15]},{"name":"LPWPUPOSTMESSAGE","features":[1,15]},{"name":"LPWPUQUERYBLOCKINGCALLBACK","features":[1,15]},{"name":"LPWPUQUERYSOCKETHANDLECONTEXT","features":[15]},{"name":"LPWPUQUEUEAPC","features":[1,15]},{"name":"LPWPURESETEVENT","features":[1,15]},{"name":"LPWPUSETEVENT","features":[1,15]},{"name":"LPWSAOVERLAPPED_COMPLETION_ROUTINE","features":[1,15,6]},{"name":"LPWSAUSERAPC","features":[15]},{"name":"LPWSCDEINSTALLPROVIDER","features":[15]},{"name":"LPWSCENABLENSPROVIDER","features":[1,15]},{"name":"LPWSCENUMPROTOCOLS","features":[15]},{"name":"LPWSCGETPROVIDERPATH","features":[15]},{"name":"LPWSCINSTALLNAMESPACE","features":[15]},{"name":"LPWSCINSTALLPROVIDER","features":[15]},{"name":"LPWSCUNINSTALLNAMESPACE","features":[15]},{"name":"LPWSCUPDATEPROVIDER","features":[15]},{"name":"LPWSCWRITENAMESPACEORDER","features":[15]},{"name":"LPWSCWRITEPROVIDERORDER","features":[15]},{"name":"LPWSPACCEPT","features":[15]},{"name":"LPWSPADDRESSTOSTRING","features":[15]},{"name":"LPWSPASYNCSELECT","features":[1,15]},{"name":"LPWSPBIND","features":[15]},{"name":"LPWSPCANCELBLOCKINGCALL","features":[15]},{"name":"LPWSPCLEANUP","features":[15]},{"name":"LPWSPCLOSESOCKET","features":[15]},{"name":"LPWSPCONNECT","features":[15]},{"name":"LPWSPDUPLICATESOCKET","features":[15]},{"name":"LPWSPENUMNETWORKEVENTS","features":[1,15]},{"name":"LPWSPEVENTSELECT","features":[1,15]},{"name":"LPWSPGETOVERLAPPEDRESULT","features":[1,15,6]},{"name":"LPWSPGETPEERNAME","features":[15]},{"name":"LPWSPGETQOSBYNAME","features":[1,15]},{"name":"LPWSPGETSOCKNAME","features":[15]},{"name":"LPWSPGETSOCKOPT","features":[15]},{"name":"LPWSPIOCTL","features":[1,15,6]},{"name":"LPWSPJOINLEAF","features":[15]},{"name":"LPWSPLISTEN","features":[15]},{"name":"LPWSPRECV","features":[1,15,6]},{"name":"LPWSPRECVDISCONNECT","features":[15]},{"name":"LPWSPRECVFROM","features":[1,15,6]},{"name":"LPWSPSELECT","features":[15]},{"name":"LPWSPSEND","features":[1,15,6]},{"name":"LPWSPSENDDISCONNECT","features":[15]},{"name":"LPWSPSENDTO","features":[1,15,6]},{"name":"LPWSPSETSOCKOPT","features":[15]},{"name":"LPWSPSHUTDOWN","features":[15]},{"name":"LPWSPSOCKET","features":[15]},{"name":"LPWSPSTARTUP","features":[1,15,6]},{"name":"LPWSPSTRINGTOADDRESS","features":[15]},{"name":"LSP_CRYPTO_COMPRESS","features":[15]},{"name":"LSP_FIREWALL","features":[15]},{"name":"LSP_INBOUND_MODIFY","features":[15]},{"name":"LSP_INSPECTOR","features":[15]},{"name":"LSP_LOCAL_CACHE","features":[15]},{"name":"LSP_OUTBOUND_MODIFY","features":[15]},{"name":"LSP_PROXY","features":[15]},{"name":"LSP_REDIRECTOR","features":[15]},{"name":"LSP_SYSTEM","features":[15]},{"name":"LUP_ADDRCONFIG","features":[15]},{"name":"LUP_API_ANSI","features":[15]},{"name":"LUP_CONTAINERS","features":[15]},{"name":"LUP_DEEP","features":[15]},{"name":"LUP_DISABLE_IDN_ENCODING","features":[15]},{"name":"LUP_DNS_ONLY","features":[15]},{"name":"LUP_DUAL_ADDR","features":[15]},{"name":"LUP_EXCLUSIVE_CUSTOM_SERVERS","features":[15]},{"name":"LUP_EXTENDED_QUERYSET","features":[15]},{"name":"LUP_FILESERVER","features":[15]},{"name":"LUP_FLUSHCACHE","features":[15]},{"name":"LUP_FLUSHPREVIOUS","features":[15]},{"name":"LUP_FORCE_CLEAR_TEXT","features":[15]},{"name":"LUP_NEAREST","features":[15]},{"name":"LUP_NOCONTAINERS","features":[15]},{"name":"LUP_NON_AUTHORITATIVE","features":[15]},{"name":"LUP_REQUIRE_SECURE","features":[15]},{"name":"LUP_RESOLUTION_HANDLE","features":[15]},{"name":"LUP_RES_SERVICE","features":[15]},{"name":"LUP_RETURN_ADDR","features":[15]},{"name":"LUP_RETURN_ALIASES","features":[15]},{"name":"LUP_RETURN_ALL","features":[15]},{"name":"LUP_RETURN_BLOB","features":[15]},{"name":"LUP_RETURN_COMMENT","features":[15]},{"name":"LUP_RETURN_NAME","features":[15]},{"name":"LUP_RETURN_PREFERRED_NAMES","features":[15]},{"name":"LUP_RETURN_QUERY_STRING","features":[15]},{"name":"LUP_RETURN_RESPONSE_FLAGS","features":[15]},{"name":"LUP_RETURN_TTL","features":[15]},{"name":"LUP_RETURN_TYPE","features":[15]},{"name":"LUP_RETURN_VERSION","features":[15]},{"name":"LUP_SECURE","features":[15]},{"name":"LUP_SECURE_WITH_FALLBACK","features":[15]},{"name":"LinkLocalAlwaysOff","features":[15]},{"name":"LinkLocalAlwaysOn","features":[15]},{"name":"LinkLocalDelayed","features":[15]},{"name":"LinkLocalUnchanged","features":[15]},{"name":"LmCharSetASCII","features":[15]},{"name":"LmCharSetISO_8859_1","features":[15]},{"name":"LmCharSetISO_8859_2","features":[15]},{"name":"LmCharSetISO_8859_3","features":[15]},{"name":"LmCharSetISO_8859_4","features":[15]},{"name":"LmCharSetISO_8859_5","features":[15]},{"name":"LmCharSetISO_8859_6","features":[15]},{"name":"LmCharSetISO_8859_7","features":[15]},{"name":"LmCharSetISO_8859_8","features":[15]},{"name":"LmCharSetISO_8859_9","features":[15]},{"name":"LmCharSetUNICODE","features":[15]},{"name":"MAXGETHOSTSTRUCT","features":[15]},{"name":"MAX_IPV4_HLEN","features":[15]},{"name":"MAX_IPV4_PACKET","features":[15]},{"name":"MAX_IPV6_PAYLOAD","features":[15]},{"name":"MAX_MCAST_TTL","features":[15]},{"name":"MAX_PROTOCOL_CHAIN","features":[15]},{"name":"MAX_WINDOW_INCREMENT_PERCENTAGE","features":[15]},{"name":"MCAST_BLOCK_SOURCE","features":[15]},{"name":"MCAST_EXCLUDE","features":[15]},{"name":"MCAST_INCLUDE","features":[15]},{"name":"MCAST_JOIN_GROUP","features":[15]},{"name":"MCAST_JOIN_SOURCE_GROUP","features":[15]},{"name":"MCAST_LEAVE_GROUP","features":[15]},{"name":"MCAST_LEAVE_SOURCE_GROUP","features":[15]},{"name":"MCAST_UNBLOCK_SOURCE","features":[15]},{"name":"MIB_IPPROTO_BBN","features":[15]},{"name":"MIB_IPPROTO_BGP","features":[15]},{"name":"MIB_IPPROTO_CISCO","features":[15]},{"name":"MIB_IPPROTO_DHCP","features":[15]},{"name":"MIB_IPPROTO_DVMRP","features":[15]},{"name":"MIB_IPPROTO_EGP","features":[15]},{"name":"MIB_IPPROTO_EIGRP","features":[15]},{"name":"MIB_IPPROTO_ES_IS","features":[15]},{"name":"MIB_IPPROTO_GGP","features":[15]},{"name":"MIB_IPPROTO_HELLO","features":[15]},{"name":"MIB_IPPROTO_ICMP","features":[15]},{"name":"MIB_IPPROTO_IDPR","features":[15]},{"name":"MIB_IPPROTO_IS_IS","features":[15]},{"name":"MIB_IPPROTO_LOCAL","features":[15]},{"name":"MIB_IPPROTO_NETMGMT","features":[15]},{"name":"MIB_IPPROTO_NT_AUTOSTATIC","features":[15]},{"name":"MIB_IPPROTO_NT_STATIC","features":[15]},{"name":"MIB_IPPROTO_NT_STATIC_NON_DOD","features":[15]},{"name":"MIB_IPPROTO_OSPF","features":[15]},{"name":"MIB_IPPROTO_OTHER","features":[15]},{"name":"MIB_IPPROTO_RIP","features":[15]},{"name":"MIB_IPPROTO_RPL","features":[15]},{"name":"MIT_GUID","features":[15]},{"name":"MIT_IF_LUID","features":[15]},{"name":"MLDV2_QUERY_HEADER","features":[15]},{"name":"MLDV2_REPORT_HEADER","features":[15]},{"name":"MLDV2_REPORT_RECORD_HEADER","features":[15]},{"name":"MLD_HEADER","features":[15]},{"name":"MLD_MAX_RESP_CODE_TYPE","features":[15]},{"name":"MLD_MAX_RESP_CODE_TYPE_FLOAT","features":[15]},{"name":"MLD_MAX_RESP_CODE_TYPE_NORMAL","features":[15]},{"name":"MSG_BCAST","features":[15]},{"name":"MSG_CTRUNC","features":[15]},{"name":"MSG_DONTROUTE","features":[15]},{"name":"MSG_ERRQUEUE","features":[15]},{"name":"MSG_INTERRUPT","features":[15]},{"name":"MSG_MAXIOVLEN","features":[15]},{"name":"MSG_MCAST","features":[15]},{"name":"MSG_OOB","features":[15]},{"name":"MSG_PARTIAL","features":[15]},{"name":"MSG_PEEK","features":[15]},{"name":"MSG_PUSH_IMMEDIATE","features":[15]},{"name":"MSG_TRUNC","features":[15]},{"name":"MSG_WAITALL","features":[15]},{"name":"MULTICAST_MODE_TYPE","features":[15]},{"name":"NAPI_DOMAIN_DESCRIPTION_BLOB","features":[15]},{"name":"NAPI_PROVIDER_INSTALLATION_BLOB","features":[15]},{"name":"NAPI_PROVIDER_LEVEL","features":[15]},{"name":"NAPI_PROVIDER_TYPE","features":[15]},{"name":"ND_NA_FLAG_OVERRIDE","features":[15]},{"name":"ND_NA_FLAG_ROUTER","features":[15]},{"name":"ND_NA_FLAG_SOLICITED","features":[15]},{"name":"ND_NEIGHBOR_ADVERT_HEADER","features":[15]},{"name":"ND_NEIGHBOR_SOLICIT_HEADER","features":[15]},{"name":"ND_OPTION_DNSSL","features":[15]},{"name":"ND_OPTION_HDR","features":[15]},{"name":"ND_OPTION_MTU","features":[15]},{"name":"ND_OPTION_PREFIX_INFO","features":[15]},{"name":"ND_OPTION_RDNSS","features":[15]},{"name":"ND_OPTION_RD_HDR","features":[15]},{"name":"ND_OPTION_ROUTE_INFO","features":[15]},{"name":"ND_OPTION_TYPE","features":[15]},{"name":"ND_OPT_ADVERTISEMENT_INTERVAL","features":[15]},{"name":"ND_OPT_DNSSL","features":[15]},{"name":"ND_OPT_DNSSL_MIN_LEN","features":[15]},{"name":"ND_OPT_HOME_AGENT_INFORMATION","features":[15]},{"name":"ND_OPT_MTU","features":[15]},{"name":"ND_OPT_NBMA_SHORTCUT_LIMIT","features":[15]},{"name":"ND_OPT_PI_FLAG_AUTO","features":[15]},{"name":"ND_OPT_PI_FLAG_ONLINK","features":[15]},{"name":"ND_OPT_PI_FLAG_ROUTE","features":[15]},{"name":"ND_OPT_PI_FLAG_ROUTER_ADDR","features":[15]},{"name":"ND_OPT_PI_FLAG_SITE_PREFIX","features":[15]},{"name":"ND_OPT_PREFIX_INFORMATION","features":[15]},{"name":"ND_OPT_RDNSS","features":[15]},{"name":"ND_OPT_RDNSS_MIN_LEN","features":[15]},{"name":"ND_OPT_REDIRECTED_HEADER","features":[15]},{"name":"ND_OPT_RI_FLAG_PREFERENCE","features":[15]},{"name":"ND_OPT_ROUTE_INFO","features":[15]},{"name":"ND_OPT_SOURCE_ADDR_LIST","features":[15]},{"name":"ND_OPT_SOURCE_LINKADDR","features":[15]},{"name":"ND_OPT_TARGET_ADDR_LIST","features":[15]},{"name":"ND_OPT_TARGET_LINKADDR","features":[15]},{"name":"ND_RA_FLAG_HOME_AGENT","features":[15]},{"name":"ND_RA_FLAG_MANAGED","features":[15]},{"name":"ND_RA_FLAG_OTHER","features":[15]},{"name":"ND_RA_FLAG_PREFERENCE","features":[15]},{"name":"ND_REDIRECT_HEADER","features":[15]},{"name":"ND_ROUTER_ADVERT_HEADER","features":[15]},{"name":"ND_ROUTER_SOLICIT_HEADER","features":[15]},{"name":"NETBIOS_GROUP_NAME","features":[15]},{"name":"NETBIOS_NAME_LENGTH","features":[15]},{"name":"NETBIOS_TYPE_QUICK_GROUP","features":[15]},{"name":"NETBIOS_TYPE_QUICK_UNIQUE","features":[15]},{"name":"NETBIOS_UNIQUE_NAME","features":[15]},{"name":"NETRESOURCE2A","features":[15]},{"name":"NETRESOURCE2W","features":[15]},{"name":"NI_DGRAM","features":[15]},{"name":"NI_MAXHOST","features":[15]},{"name":"NI_MAXSERV","features":[15]},{"name":"NI_NAMEREQD","features":[15]},{"name":"NI_NOFQDN","features":[15]},{"name":"NI_NUMERICHOST","features":[15]},{"name":"NI_NUMERICSERV","features":[15]},{"name":"NLA_802_1X_LOCATION","features":[15]},{"name":"NLA_ALLUSERS_NETWORK","features":[15]},{"name":"NLA_BLOB","features":[15]},{"name":"NLA_BLOB_DATA_TYPE","features":[15]},{"name":"NLA_CONNECTIVITY","features":[15]},{"name":"NLA_CONNECTIVITY_TYPE","features":[15]},{"name":"NLA_FRIENDLY_NAME","features":[15]},{"name":"NLA_ICS","features":[15]},{"name":"NLA_INTERFACE","features":[15]},{"name":"NLA_INTERNET","features":[15]},{"name":"NLA_INTERNET_NO","features":[15]},{"name":"NLA_INTERNET_UNKNOWN","features":[15]},{"name":"NLA_INTERNET_YES","features":[15]},{"name":"NLA_NAMESPACE_GUID","features":[15]},{"name":"NLA_NETWORK_AD_HOC","features":[15]},{"name":"NLA_NETWORK_MANAGED","features":[15]},{"name":"NLA_NETWORK_UNKNOWN","features":[15]},{"name":"NLA_NETWORK_UNMANAGED","features":[15]},{"name":"NLA_RAW_DATA","features":[15]},{"name":"NLA_SERVICE_CLASS_GUID","features":[15]},{"name":"NL_ADDRESS_TYPE","features":[15]},{"name":"NL_BANDWIDTH_FLAG","features":[15]},{"name":"NL_BANDWIDTH_INFORMATION","features":[1,15]},{"name":"NL_DAD_STATE","features":[15]},{"name":"NL_INTERFACE_NETWORK_CATEGORY_STATE","features":[15]},{"name":"NL_INTERFACE_OFFLOAD_ROD","features":[15]},{"name":"NL_LINK_LOCAL_ADDRESS_BEHAVIOR","features":[15]},{"name":"NL_NEIGHBOR_STATE","features":[15]},{"name":"NL_NETWORK_CATEGORY","features":[15]},{"name":"NL_NETWORK_CONNECTIVITY_COST_HINT","features":[15]},{"name":"NL_NETWORK_CONNECTIVITY_HINT","features":[1,15]},{"name":"NL_NETWORK_CONNECTIVITY_LEVEL_HINT","features":[15]},{"name":"NL_PATH_BANDWIDTH_ROD","features":[1,15]},{"name":"NL_PREFIX_ORIGIN","features":[15]},{"name":"NL_ROUTER_DISCOVERY_BEHAVIOR","features":[15]},{"name":"NL_ROUTE_ORIGIN","features":[15]},{"name":"NL_ROUTE_PROTOCOL","features":[15]},{"name":"NL_SUFFIX_ORIGIN","features":[15]},{"name":"NPI_MODULEID","features":[1,15]},{"name":"NPI_MODULEID_TYPE","features":[15]},{"name":"NSPROTO_IPX","features":[15]},{"name":"NSPROTO_SPX","features":[15]},{"name":"NSPROTO_SPXII","features":[15]},{"name":"NSPV2_ROUTINE","features":[1,15,41]},{"name":"NSP_NOTIFY_APC","features":[15]},{"name":"NSP_NOTIFY_EVENT","features":[15]},{"name":"NSP_NOTIFY_HWND","features":[15]},{"name":"NSP_NOTIFY_IMMEDIATELY","features":[15]},{"name":"NSP_NOTIFY_PORT","features":[15]},{"name":"NSP_ROUTINE","features":[1,15,41,6]},{"name":"NSTYPE_DYNAMIC","features":[15]},{"name":"NSTYPE_ENUMERABLE","features":[15]},{"name":"NSTYPE_HIERARCHICAL","features":[15]},{"name":"NSTYPE_WORKGROUP","features":[15]},{"name":"NS_ALL","features":[15]},{"name":"NS_DEFAULT","features":[15]},{"name":"NS_DHCP","features":[15]},{"name":"NS_DNS","features":[15]},{"name":"NS_EMAIL","features":[15]},{"name":"NS_INFOA","features":[15]},{"name":"NS_INFOW","features":[15]},{"name":"NS_LOCALNAME","features":[15]},{"name":"NS_MS","features":[15]},{"name":"NS_NBP","features":[15]},{"name":"NS_NDS","features":[15]},{"name":"NS_NETBT","features":[15]},{"name":"NS_NETDES","features":[15]},{"name":"NS_NIS","features":[15]},{"name":"NS_NISPLUS","features":[15]},{"name":"NS_NLA","features":[15]},{"name":"NS_NTDS","features":[15]},{"name":"NS_PEER_BROWSE","features":[15]},{"name":"NS_SAP","features":[15]},{"name":"NS_SERVICE_INFOA","features":[15,41]},{"name":"NS_SERVICE_INFOW","features":[15,41]},{"name":"NS_SLP","features":[15]},{"name":"NS_STDA","features":[15]},{"name":"NS_TCPIP_HOSTS","features":[15]},{"name":"NS_TCPIP_LOCAL","features":[15]},{"name":"NS_VNS","features":[15]},{"name":"NS_WINS","features":[15]},{"name":"NS_WRQ","features":[15]},{"name":"NS_X500","features":[15]},{"name":"NetworkCategoryDomainAuthenticated","features":[15]},{"name":"NetworkCategoryPrivate","features":[15]},{"name":"NetworkCategoryPublic","features":[15]},{"name":"NetworkCategoryUnchanged","features":[15]},{"name":"NetworkCategoryUnknown","features":[15]},{"name":"NetworkConnectivityCostHintFixed","features":[15]},{"name":"NetworkConnectivityCostHintUnknown","features":[15]},{"name":"NetworkConnectivityCostHintUnrestricted","features":[15]},{"name":"NetworkConnectivityCostHintVariable","features":[15]},{"name":"NetworkConnectivityLevelHintConstrainedInternetAccess","features":[15]},{"name":"NetworkConnectivityLevelHintHidden","features":[15]},{"name":"NetworkConnectivityLevelHintInternetAccess","features":[15]},{"name":"NetworkConnectivityLevelHintLocalAccess","features":[15]},{"name":"NetworkConnectivityLevelHintNone","features":[15]},{"name":"NetworkConnectivityLevelHintUnknown","features":[15]},{"name":"NlatAnycast","features":[15]},{"name":"NlatBroadcast","features":[15]},{"name":"NlatInvalid","features":[15]},{"name":"NlatMulticast","features":[15]},{"name":"NlatUnicast","features":[15]},{"name":"NlatUnspecified","features":[15]},{"name":"NlbwDisabled","features":[15]},{"name":"NlbwEnabled","features":[15]},{"name":"NlbwUnchanged","features":[15]},{"name":"NldsDeprecated","features":[15]},{"name":"NldsDuplicate","features":[15]},{"name":"NldsInvalid","features":[15]},{"name":"NldsPreferred","features":[15]},{"name":"NldsTentative","features":[15]},{"name":"NlincCategoryStateMax","features":[15]},{"name":"NlincCategoryUnknown","features":[15]},{"name":"NlincDomainAuthenticated","features":[15]},{"name":"NlincPrivate","features":[15]},{"name":"NlincPublic","features":[15]},{"name":"NlnsDelay","features":[15]},{"name":"NlnsIncomplete","features":[15]},{"name":"NlnsMaximum","features":[15]},{"name":"NlnsPermanent","features":[15]},{"name":"NlnsProbe","features":[15]},{"name":"NlnsReachable","features":[15]},{"name":"NlnsStale","features":[15]},{"name":"NlnsUnreachable","features":[15]},{"name":"Nlro6to4","features":[15]},{"name":"NlroDHCP","features":[15]},{"name":"NlroManual","features":[15]},{"name":"NlroRouterAdvertisement","features":[15]},{"name":"NlroWellKnown","features":[15]},{"name":"NlsoDhcp","features":[15]},{"name":"NlsoLinkLayerAddress","features":[15]},{"name":"NlsoManual","features":[15]},{"name":"NlsoOther","features":[15]},{"name":"NlsoRandom","features":[15]},{"name":"NlsoWellKnown","features":[15]},{"name":"PFL_HIDDEN","features":[15]},{"name":"PFL_MATCHES_PROTOCOL_ZERO","features":[15]},{"name":"PFL_MULTIPLE_PROTO_ENTRIES","features":[15]},{"name":"PFL_NETWORKDIRECT_PROVIDER","features":[15]},{"name":"PFL_RECOMMENDED_PROTO_ENTRY","features":[15]},{"name":"PF_APPLETALK","features":[15]},{"name":"PF_ATM","features":[15]},{"name":"PF_BAN","features":[15]},{"name":"PF_CCITT","features":[15]},{"name":"PF_CHAOS","features":[15]},{"name":"PF_DATAKIT","features":[15]},{"name":"PF_DECnet","features":[15]},{"name":"PF_DLI","features":[15]},{"name":"PF_ECMA","features":[15]},{"name":"PF_FIREFOX","features":[15]},{"name":"PF_HYLINK","features":[15]},{"name":"PF_IMPLINK","features":[15]},{"name":"PF_IPX","features":[15]},{"name":"PF_IRDA","features":[15]},{"name":"PF_ISO","features":[15]},{"name":"PF_LAT","features":[15]},{"name":"PF_MAX","features":[15]},{"name":"PF_NS","features":[15]},{"name":"PF_OSI","features":[15]},{"name":"PF_PUP","features":[15]},{"name":"PF_SNA","features":[15]},{"name":"PF_UNIX","features":[15]},{"name":"PF_UNKNOWN1","features":[15]},{"name":"PF_VOICEVIEW","features":[15]},{"name":"PI_ALLOWED","features":[15]},{"name":"PI_NUMBER_NOT_AVAILABLE","features":[15]},{"name":"PI_RESTRICTED","features":[15]},{"name":"PMTUD_STATE","features":[15]},{"name":"POLLERR","features":[15]},{"name":"POLLHUP","features":[15]},{"name":"POLLIN","features":[15]},{"name":"POLLNVAL","features":[15]},{"name":"POLLOUT","features":[15]},{"name":"POLLPRI","features":[15]},{"name":"POLLRDBAND","features":[15]},{"name":"POLLRDNORM","features":[15]},{"name":"POLLWRBAND","features":[15]},{"name":"POLLWRNORM","features":[15]},{"name":"PRIORITY_STATUS","features":[15]},{"name":"PROP_ADDRESSES","features":[15]},{"name":"PROP_ALL","features":[15]},{"name":"PROP_COMMENT","features":[15]},{"name":"PROP_DISPLAY_HINT","features":[15]},{"name":"PROP_LOCALE","features":[15]},{"name":"PROP_MACHINE","features":[15]},{"name":"PROP_SD","features":[15]},{"name":"PROP_START_TIME","features":[15]},{"name":"PROP_VERSION","features":[15]},{"name":"PROTECTION_LEVEL_DEFAULT","features":[15]},{"name":"PROTECTION_LEVEL_EDGERESTRICTED","features":[15]},{"name":"PROTECTION_LEVEL_RESTRICTED","features":[15]},{"name":"PROTECTION_LEVEL_UNRESTRICTED","features":[15]},{"name":"PROTOCOL_INFOA","features":[15]},{"name":"PROTOCOL_INFOW","features":[15]},{"name":"PROTOENT","features":[15]},{"name":"PROTO_IP_BBN","features":[15]},{"name":"PROTO_IP_BGP","features":[15]},{"name":"PROTO_IP_CISCO","features":[15]},{"name":"PROTO_IP_DHCP","features":[15]},{"name":"PROTO_IP_DVMRP","features":[15]},{"name":"PROTO_IP_EGP","features":[15]},{"name":"PROTO_IP_EIGRP","features":[15]},{"name":"PROTO_IP_ES_IS","features":[15]},{"name":"PROTO_IP_GGP","features":[15]},{"name":"PROTO_IP_HELLO","features":[15]},{"name":"PROTO_IP_ICMP","features":[15]},{"name":"PROTO_IP_IDPR","features":[15]},{"name":"PROTO_IP_IS_IS","features":[15]},{"name":"PROTO_IP_LOCAL","features":[15]},{"name":"PROTO_IP_NETMGMT","features":[15]},{"name":"PROTO_IP_NT_AUTOSTATIC","features":[15]},{"name":"PROTO_IP_NT_STATIC","features":[15]},{"name":"PROTO_IP_NT_STATIC_NON_DOD","features":[15]},{"name":"PROTO_IP_OSPF","features":[15]},{"name":"PROTO_IP_OTHER","features":[15]},{"name":"PROTO_IP_RIP","features":[15]},{"name":"PROTO_IP_RPL","features":[15]},{"name":"PVD_CONFIG","features":[15]},{"name":"ProcessSocketNotifications","features":[1,15,6]},{"name":"ProviderInfoAudit","features":[15]},{"name":"ProviderInfoLspCategories","features":[15]},{"name":"ProviderLevel_None","features":[15]},{"name":"ProviderLevel_Primary","features":[15]},{"name":"ProviderLevel_Secondary","features":[15]},{"name":"ProviderType_Application","features":[15]},{"name":"ProviderType_Service","features":[15]},{"name":"Q2931_IE","features":[15]},{"name":"Q2931_IE_TYPE","features":[15]},{"name":"QOS","features":[15]},{"name":"QOS_CLASS0","features":[15]},{"name":"QOS_CLASS1","features":[15]},{"name":"QOS_CLASS2","features":[15]},{"name":"QOS_CLASS3","features":[15]},{"name":"QOS_CLASS4","features":[15]},{"name":"RCVALL_IF","features":[15]},{"name":"RCVALL_IPLEVEL","features":[15]},{"name":"RCVALL_OFF","features":[15]},{"name":"RCVALL_ON","features":[15]},{"name":"RCVALL_SOCKETLEVELONLY","features":[15]},{"name":"RCVALL_VALUE","features":[15]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY","features":[15]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY_EX","features":[15]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT","features":[15]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT_EX","features":[1,15]},{"name":"REAL_TIME_NOTIFICATION_SETTING_OUTPUT","features":[15]},{"name":"RESOURCEDISPLAYTYPE_DOMAIN","features":[15]},{"name":"RESOURCEDISPLAYTYPE_FILE","features":[15]},{"name":"RESOURCEDISPLAYTYPE_GENERIC","features":[15]},{"name":"RESOURCEDISPLAYTYPE_GROUP","features":[15]},{"name":"RESOURCEDISPLAYTYPE_SERVER","features":[15]},{"name":"RESOURCEDISPLAYTYPE_SHARE","features":[15]},{"name":"RESOURCEDISPLAYTYPE_TREE","features":[15]},{"name":"RESOURCE_DISPLAY_TYPE","features":[15]},{"name":"RESULT_IS_ADDED","features":[15]},{"name":"RESULT_IS_ALIAS","features":[15]},{"name":"RESULT_IS_CHANGED","features":[15]},{"name":"RESULT_IS_DELETED","features":[15]},{"name":"RES_FIND_MULTIPLE","features":[15]},{"name":"RES_FLUSH_CACHE","features":[15]},{"name":"RES_SERVICE","features":[15]},{"name":"RES_SOFT_SEARCH","features":[15]},{"name":"RES_UNUSED_1","features":[15]},{"name":"RIORESULT","features":[15]},{"name":"RIO_BUF","features":[15]},{"name":"RIO_BUFFERID","features":[15]},{"name":"RIO_CMSG_BUFFER","features":[15]},{"name":"RIO_CORRUPT_CQ","features":[15]},{"name":"RIO_CQ","features":[15]},{"name":"RIO_EVENT_COMPLETION","features":[15]},{"name":"RIO_EXTENSION_FUNCTION_TABLE","features":[1,15]},{"name":"RIO_IOCP_COMPLETION","features":[15]},{"name":"RIO_MAX_CQ_SIZE","features":[15]},{"name":"RIO_MSG_COMMIT_ONLY","features":[15]},{"name":"RIO_MSG_DEFER","features":[15]},{"name":"RIO_MSG_DONT_NOTIFY","features":[15]},{"name":"RIO_MSG_WAITALL","features":[15]},{"name":"RIO_NOTIFICATION_COMPLETION","features":[1,15]},{"name":"RIO_NOTIFICATION_COMPLETION_TYPE","features":[15]},{"name":"RIO_RQ","features":[15]},{"name":"RM_ADD_RECEIVE_IF","features":[15]},{"name":"RM_DEL_RECEIVE_IF","features":[15]},{"name":"RM_FEC_INFO","features":[1,15]},{"name":"RM_FLUSHCACHE","features":[15]},{"name":"RM_HIGH_SPEED_INTRANET_OPT","features":[15]},{"name":"RM_LATEJOIN","features":[15]},{"name":"RM_OPTIONSBASE","features":[15]},{"name":"RM_RATE_WINDOW_SIZE","features":[15]},{"name":"RM_RECEIVER_STATISTICS","features":[15]},{"name":"RM_RECEIVER_STATS","features":[15]},{"name":"RM_SENDER_STATISTICS","features":[15]},{"name":"RM_SENDER_STATS","features":[15]},{"name":"RM_SENDER_WINDOW_ADVANCE_METHOD","features":[15]},{"name":"RM_SEND_WINDOW","features":[15]},{"name":"RM_SEND_WINDOW_ADV_RATE","features":[15]},{"name":"RM_SET_MCAST_TTL","features":[15]},{"name":"RM_SET_MESSAGE_BOUNDARY","features":[15]},{"name":"RM_SET_SEND_IF","features":[15]},{"name":"RM_USE_FEC","features":[15]},{"name":"RNRSERVICE_DELETE","features":[15]},{"name":"RNRSERVICE_DEREGISTER","features":[15]},{"name":"RNRSERVICE_REGISTER","features":[15]},{"name":"RSS_SCALABILITY_INFO","features":[1,15]},{"name":"RouteProtocolBbn","features":[15]},{"name":"RouteProtocolBgp","features":[15]},{"name":"RouteProtocolCisco","features":[15]},{"name":"RouteProtocolDhcp","features":[15]},{"name":"RouteProtocolDvmrp","features":[15]},{"name":"RouteProtocolEgp","features":[15]},{"name":"RouteProtocolEigrp","features":[15]},{"name":"RouteProtocolEsIs","features":[15]},{"name":"RouteProtocolGgp","features":[15]},{"name":"RouteProtocolHello","features":[15]},{"name":"RouteProtocolIcmp","features":[15]},{"name":"RouteProtocolIdpr","features":[15]},{"name":"RouteProtocolIsIs","features":[15]},{"name":"RouteProtocolLocal","features":[15]},{"name":"RouteProtocolNetMgmt","features":[15]},{"name":"RouteProtocolOspf","features":[15]},{"name":"RouteProtocolOther","features":[15]},{"name":"RouteProtocolRip","features":[15]},{"name":"RouteProtocolRpl","features":[15]},{"name":"RouterDiscoveryDhcp","features":[15]},{"name":"RouterDiscoveryDisabled","features":[15]},{"name":"RouterDiscoveryEnabled","features":[15]},{"name":"RouterDiscoveryUnchanged","features":[15]},{"name":"RtlEthernetAddressToStringA","features":[15]},{"name":"RtlEthernetAddressToStringW","features":[15]},{"name":"RtlEthernetStringToAddressA","features":[15]},{"name":"RtlEthernetStringToAddressW","features":[15]},{"name":"RtlIpv4AddressToStringA","features":[15]},{"name":"RtlIpv4AddressToStringExA","features":[15]},{"name":"RtlIpv4AddressToStringExW","features":[15]},{"name":"RtlIpv4AddressToStringW","features":[15]},{"name":"RtlIpv4StringToAddressA","features":[1,15]},{"name":"RtlIpv4StringToAddressExA","features":[1,15]},{"name":"RtlIpv4StringToAddressExW","features":[1,15]},{"name":"RtlIpv4StringToAddressW","features":[1,15]},{"name":"RtlIpv6AddressToStringA","features":[15]},{"name":"RtlIpv6AddressToStringExA","features":[15]},{"name":"RtlIpv6AddressToStringExW","features":[15]},{"name":"RtlIpv6AddressToStringW","features":[15]},{"name":"RtlIpv6StringToAddressA","features":[15]},{"name":"RtlIpv6StringToAddressExA","features":[15]},{"name":"RtlIpv6StringToAddressExW","features":[15]},{"name":"RtlIpv6StringToAddressW","features":[15]},{"name":"SAP_FIELD_ABSENT","features":[15]},{"name":"SAP_FIELD_ANY","features":[15]},{"name":"SAP_FIELD_ANY_AESA_REST","features":[15]},{"name":"SAP_FIELD_ANY_AESA_SEL","features":[15]},{"name":"SCOPE_ID","features":[15]},{"name":"SCOPE_LEVEL","features":[15]},{"name":"SD_BOTH","features":[15]},{"name":"SD_RECEIVE","features":[15]},{"name":"SD_SEND","features":[15]},{"name":"SECURITY_PROTOCOL_NONE","features":[15]},{"name":"SENDER_DEFAULT_LATE_JOINER_PERCENTAGE","features":[15]},{"name":"SENDER_DEFAULT_RATE_KBITS_PER_SEC","features":[15]},{"name":"SENDER_DEFAULT_WINDOW_ADV_PERCENTAGE","features":[15]},{"name":"SENDER_MAX_LATE_JOINER_PERCENTAGE","features":[15]},{"name":"SEND_RECV_FLAGS","features":[15]},{"name":"SERVENT","features":[15]},{"name":"SERVENT","features":[15]},{"name":"SERVICE_ADDRESS","features":[15]},{"name":"SERVICE_ADDRESSES","features":[15]},{"name":"SERVICE_ADDRESS_FLAG_RPC_CN","features":[15]},{"name":"SERVICE_ADDRESS_FLAG_RPC_DG","features":[15]},{"name":"SERVICE_ADDRESS_FLAG_RPC_NB","features":[15]},{"name":"SERVICE_ADD_TYPE","features":[15]},{"name":"SERVICE_ASYNC_INFO","features":[1,15]},{"name":"SERVICE_DELETE_TYPE","features":[15]},{"name":"SERVICE_DEREGISTER","features":[15]},{"name":"SERVICE_FLAG_DEFER","features":[15]},{"name":"SERVICE_FLAG_HARD","features":[15]},{"name":"SERVICE_FLUSH","features":[15]},{"name":"SERVICE_INFOA","features":[15,41]},{"name":"SERVICE_INFOW","features":[15,41]},{"name":"SERVICE_LOCAL","features":[15]},{"name":"SERVICE_MULTIPLE","features":[15]},{"name":"SERVICE_REGISTER","features":[15]},{"name":"SERVICE_RESOURCE","features":[15]},{"name":"SERVICE_SERVICE","features":[15]},{"name":"SERVICE_TYPE_INFO","features":[15]},{"name":"SERVICE_TYPE_INFO_ABSA","features":[15]},{"name":"SERVICE_TYPE_INFO_ABSW","features":[15]},{"name":"SERVICE_TYPE_VALUE","features":[15]},{"name":"SERVICE_TYPE_VALUE_ABSA","features":[15]},{"name":"SERVICE_TYPE_VALUE_ABSW","features":[15]},{"name":"SERVICE_TYPE_VALUE_CONN","features":[15]},{"name":"SERVICE_TYPE_VALUE_CONNA","features":[15]},{"name":"SERVICE_TYPE_VALUE_CONNW","features":[15]},{"name":"SERVICE_TYPE_VALUE_IPXPORTA","features":[15]},{"name":"SERVICE_TYPE_VALUE_IPXPORTW","features":[15]},{"name":"SERVICE_TYPE_VALUE_OBJECTID","features":[15]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDA","features":[15]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDW","features":[15]},{"name":"SERVICE_TYPE_VALUE_SAPID","features":[15]},{"name":"SERVICE_TYPE_VALUE_SAPIDA","features":[15]},{"name":"SERVICE_TYPE_VALUE_SAPIDW","features":[15]},{"name":"SERVICE_TYPE_VALUE_TCPPORT","features":[15]},{"name":"SERVICE_TYPE_VALUE_TCPPORTA","features":[15]},{"name":"SERVICE_TYPE_VALUE_TCPPORTW","features":[15]},{"name":"SERVICE_TYPE_VALUE_UDPPORT","features":[15]},{"name":"SERVICE_TYPE_VALUE_UDPPORTA","features":[15]},{"name":"SERVICE_TYPE_VALUE_UDPPORTW","features":[15]},{"name":"SET_SERVICE_OPERATION","features":[15]},{"name":"SET_SERVICE_PARTIAL_SUCCESS","features":[15]},{"name":"SG_CONSTRAINED_GROUP","features":[15]},{"name":"SG_UNCONSTRAINED_GROUP","features":[15]},{"name":"SIOCATMARK","features":[15]},{"name":"SIOCGHIWAT","features":[15]},{"name":"SIOCGLOWAT","features":[15]},{"name":"SIOCSHIWAT","features":[15]},{"name":"SIOCSLOWAT","features":[15]},{"name":"SIO_ABSORB_RTRALERT","features":[15]},{"name":"SIO_ACQUIRE_PORT_RESERVATION","features":[15]},{"name":"SIO_ADDRESS_LIST_CHANGE","features":[15]},{"name":"SIO_ADDRESS_LIST_QUERY","features":[15]},{"name":"SIO_ADDRESS_LIST_SORT","features":[15]},{"name":"SIO_AF_UNIX_GETPEERPID","features":[15]},{"name":"SIO_AF_UNIX_SETBINDPARENTPATH","features":[15]},{"name":"SIO_AF_UNIX_SETCONNPARENTPATH","features":[15]},{"name":"SIO_APPLY_TRANSPORT_SETTING","features":[15]},{"name":"SIO_ASSOCIATE_HANDLE","features":[15]},{"name":"SIO_ASSOCIATE_PORT_RESERVATION","features":[15]},{"name":"SIO_ASSOCIATE_PVC","features":[15]},{"name":"SIO_BASE_HANDLE","features":[15]},{"name":"SIO_BSP_HANDLE","features":[15]},{"name":"SIO_BSP_HANDLE_POLL","features":[15]},{"name":"SIO_BSP_HANDLE_SELECT","features":[15]},{"name":"SIO_CPU_AFFINITY","features":[15]},{"name":"SIO_DELETE_PEER_TARGET_NAME","features":[15]},{"name":"SIO_ENABLE_CIRCULAR_QUEUEING","features":[15]},{"name":"SIO_EXT_POLL","features":[15]},{"name":"SIO_EXT_SELECT","features":[15]},{"name":"SIO_EXT_SENDMSG","features":[15]},{"name":"SIO_FIND_ROUTE","features":[15]},{"name":"SIO_FLUSH","features":[15]},{"name":"SIO_GET_ATM_ADDRESS","features":[15]},{"name":"SIO_GET_ATM_CONNECTION_ID","features":[15]},{"name":"SIO_GET_BROADCAST_ADDRESS","features":[15]},{"name":"SIO_GET_EXTENSION_FUNCTION_POINTER","features":[15]},{"name":"SIO_GET_GROUP_QOS","features":[15]},{"name":"SIO_GET_MULTIPLE_EXTENSION_FUNCTION_POINTER","features":[15]},{"name":"SIO_GET_NUMBER_OF_ATM_DEVICES","features":[15]},{"name":"SIO_GET_QOS","features":[15]},{"name":"SIO_GET_TX_TIMESTAMP","features":[15]},{"name":"SIO_INDEX_ADD_MCAST","features":[15]},{"name":"SIO_INDEX_BIND","features":[15]},{"name":"SIO_INDEX_DEL_MCAST","features":[15]},{"name":"SIO_INDEX_MCASTIF","features":[15]},{"name":"SIO_KEEPALIVE_VALS","features":[15]},{"name":"SIO_LIMIT_BROADCASTS","features":[15]},{"name":"SIO_LOOPBACK_FAST_PATH","features":[15]},{"name":"SIO_MULTICAST_SCOPE","features":[15]},{"name":"SIO_MULTIPOINT_LOOPBACK","features":[15]},{"name":"SIO_NSP_NOTIFY_CHANGE","features":[15]},{"name":"SIO_PRIORITY_HINT","features":[15]},{"name":"SIO_QUERY_RSS_PROCESSOR_INFO","features":[15]},{"name":"SIO_QUERY_RSS_SCALABILITY_INFO","features":[15]},{"name":"SIO_QUERY_SECURITY","features":[15]},{"name":"SIO_QUERY_TARGET_PNP_HANDLE","features":[15]},{"name":"SIO_QUERY_TRANSPORT_SETTING","features":[15]},{"name":"SIO_QUERY_WFP_ALE_ENDPOINT_HANDLE","features":[15]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_CONTEXT","features":[15]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_RECORDS","features":[15]},{"name":"SIO_RCVALL","features":[15]},{"name":"SIO_RCVALL_IF","features":[15]},{"name":"SIO_RCVALL_IGMPMCAST","features":[15]},{"name":"SIO_RCVALL_MCAST","features":[15]},{"name":"SIO_RCVALL_MCAST_IF","features":[15]},{"name":"SIO_RELEASE_PORT_RESERVATION","features":[15]},{"name":"SIO_RESERVED_1","features":[15]},{"name":"SIO_RESERVED_2","features":[15]},{"name":"SIO_ROUTING_INTERFACE_CHANGE","features":[15]},{"name":"SIO_ROUTING_INTERFACE_QUERY","features":[15]},{"name":"SIO_SET_COMPATIBILITY_MODE","features":[15]},{"name":"SIO_SET_GROUP_QOS","features":[15]},{"name":"SIO_SET_PEER_TARGET_NAME","features":[15]},{"name":"SIO_SET_PRIORITY_HINT","features":[15]},{"name":"SIO_SET_QOS","features":[15]},{"name":"SIO_SET_SECURITY","features":[15]},{"name":"SIO_SET_WFP_CONNECTION_REDIRECT_RECORDS","features":[15]},{"name":"SIO_SOCKET_CLOSE_NOTIFY","features":[15]},{"name":"SIO_SOCKET_USAGE_NOTIFICATION","features":[15]},{"name":"SIO_TCP_INFO","features":[15]},{"name":"SIO_TCP_INITIAL_RTO","features":[15]},{"name":"SIO_TCP_SET_ACK_FREQUENCY","features":[15]},{"name":"SIO_TCP_SET_ICW","features":[15]},{"name":"SIO_TIMESTAMPING","features":[15]},{"name":"SIO_TRANSLATE_HANDLE","features":[15]},{"name":"SIO_UCAST_IF","features":[15]},{"name":"SIO_UDP_CONNRESET","features":[15]},{"name":"SIO_UDP_NETRESET","features":[15]},{"name":"SIZEOF_IP_OPT_ROUTERALERT","features":[15]},{"name":"SIZEOF_IP_OPT_ROUTING_HEADER","features":[15]},{"name":"SIZEOF_IP_OPT_SECURITY","features":[15]},{"name":"SIZEOF_IP_OPT_STREAMIDENTIFIER","features":[15]},{"name":"SIZEOF_IP_OPT_TIMESTAMP_HEADER","features":[15]},{"name":"SI_NETWORK","features":[15]},{"name":"SI_USER_FAILED","features":[15]},{"name":"SI_USER_NOT_SCREENED","features":[15]},{"name":"SI_USER_PASSED","features":[15]},{"name":"SNAP_CONTROL","features":[15]},{"name":"SNAP_DSAP","features":[15]},{"name":"SNAP_HEADER","features":[15]},{"name":"SNAP_OUI","features":[15]},{"name":"SNAP_SSAP","features":[15]},{"name":"SOCKADDR","features":[15]},{"name":"SOCKADDR_ATM","features":[15]},{"name":"SOCKADDR_DL","features":[15]},{"name":"SOCKADDR_IN","features":[15]},{"name":"SOCKADDR_IN6","features":[15]},{"name":"SOCKADDR_IN6_PAIR","features":[15]},{"name":"SOCKADDR_IN6_W2KSP1","features":[15]},{"name":"SOCKADDR_INET","features":[15]},{"name":"SOCKADDR_IPX","features":[15]},{"name":"SOCKADDR_IRDA","features":[15]},{"name":"SOCKADDR_NB","features":[15]},{"name":"SOCKADDR_STORAGE","features":[15]},{"name":"SOCKADDR_STORAGE_XP","features":[15]},{"name":"SOCKADDR_TP","features":[15]},{"name":"SOCKADDR_UN","features":[15]},{"name":"SOCKADDR_VNS","features":[15]},{"name":"SOCKET","features":[15]},{"name":"SOCKET_ADDRESS","features":[15]},{"name":"SOCKET_ADDRESS_LIST","features":[15]},{"name":"SOCKET_DEFAULT2_QM_POLICY","features":[15]},{"name":"SOCKET_ERROR","features":[15]},{"name":"SOCKET_INFO_CONNECTION_ENCRYPTED","features":[15]},{"name":"SOCKET_INFO_CONNECTION_IMPERSONATED","features":[15]},{"name":"SOCKET_INFO_CONNECTION_SECURED","features":[15]},{"name":"SOCKET_PEER_TARGET_NAME","features":[15]},{"name":"SOCKET_PRIORITY_HINT","features":[15]},{"name":"SOCKET_PROCESSOR_AFFINITY","features":[15,7]},{"name":"SOCKET_QUERY_IPSEC2_ABORT_CONNECTION_ON_FIELD_CHANGE","features":[15]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_MM_SA_ID","features":[15]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_QM_SA_ID","features":[15]},{"name":"SOCKET_SECURITY_PROTOCOL","features":[15]},{"name":"SOCKET_SECURITY_PROTOCOL_DEFAULT","features":[15]},{"name":"SOCKET_SECURITY_PROTOCOL_INVALID","features":[15]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC","features":[15]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC2","features":[15]},{"name":"SOCKET_SECURITY_QUERY_INFO","features":[15]},{"name":"SOCKET_SECURITY_QUERY_INFO_IPSEC2","features":[15]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE","features":[15]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE_IPSEC2","features":[15]},{"name":"SOCKET_SECURITY_SETTINGS","features":[15]},{"name":"SOCKET_SECURITY_SETTINGS_IPSEC","features":[15]},{"name":"SOCKET_SETTINGS_ALLOW_INSECURE","features":[15]},{"name":"SOCKET_SETTINGS_GUARANTEE_ENCRYPTION","features":[15]},{"name":"SOCKET_SETTINGS_IPSEC_ALLOW_FIRST_INBOUND_PKT_UNENCRYPTED","features":[15]},{"name":"SOCKET_SETTINGS_IPSEC_OPTIONAL_PEER_NAME_VERIFICATION","features":[15]},{"name":"SOCKET_SETTINGS_IPSEC_PEER_NAME_IS_RAW_FORMAT","features":[15]},{"name":"SOCKET_SETTINGS_IPSEC_SKIP_FILTER_INSTANTIATION","features":[15]},{"name":"SOCKET_USAGE_TYPE","features":[15]},{"name":"SOCK_DGRAM","features":[15]},{"name":"SOCK_NOTIFY_EVENT_ERR","features":[15]},{"name":"SOCK_NOTIFY_EVENT_HANGUP","features":[15]},{"name":"SOCK_NOTIFY_EVENT_IN","features":[15]},{"name":"SOCK_NOTIFY_EVENT_OUT","features":[15]},{"name":"SOCK_NOTIFY_EVENT_REMOVE","features":[15]},{"name":"SOCK_NOTIFY_OP_DISABLE","features":[15]},{"name":"SOCK_NOTIFY_OP_ENABLE","features":[15]},{"name":"SOCK_NOTIFY_OP_NONE","features":[15]},{"name":"SOCK_NOTIFY_OP_REMOVE","features":[15]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_HANGUP","features":[15]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_IN","features":[15]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_NONE","features":[15]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_OUT","features":[15]},{"name":"SOCK_NOTIFY_REGISTRATION","features":[15]},{"name":"SOCK_NOTIFY_TRIGGER_EDGE","features":[15]},{"name":"SOCK_NOTIFY_TRIGGER_LEVEL","features":[15]},{"name":"SOCK_NOTIFY_TRIGGER_ONESHOT","features":[15]},{"name":"SOCK_NOTIFY_TRIGGER_PERSISTENT","features":[15]},{"name":"SOCK_RAW","features":[15]},{"name":"SOCK_RDM","features":[15]},{"name":"SOCK_SEQPACKET","features":[15]},{"name":"SOCK_STREAM","features":[15]},{"name":"SOL_IP","features":[15]},{"name":"SOL_IPV6","features":[15]},{"name":"SOL_IRLMP","features":[15]},{"name":"SOL_SOCKET","features":[15]},{"name":"SOMAXCONN","features":[15]},{"name":"SO_ACCEPTCONN","features":[15]},{"name":"SO_BROADCAST","features":[15]},{"name":"SO_BSP_STATE","features":[15]},{"name":"SO_COMPARTMENT_ID","features":[15]},{"name":"SO_CONDITIONAL_ACCEPT","features":[15]},{"name":"SO_CONNDATA","features":[15]},{"name":"SO_CONNDATALEN","features":[15]},{"name":"SO_CONNECT_TIME","features":[15]},{"name":"SO_CONNOPT","features":[15]},{"name":"SO_CONNOPTLEN","features":[15]},{"name":"SO_DEBUG","features":[15]},{"name":"SO_DISCDATA","features":[15]},{"name":"SO_DISCDATALEN","features":[15]},{"name":"SO_DISCOPT","features":[15]},{"name":"SO_DISCOPTLEN","features":[15]},{"name":"SO_DONTROUTE","features":[15]},{"name":"SO_ERROR","features":[15]},{"name":"SO_GROUP_ID","features":[15]},{"name":"SO_GROUP_PRIORITY","features":[15]},{"name":"SO_KEEPALIVE","features":[15]},{"name":"SO_LINGER","features":[15]},{"name":"SO_MAXDG","features":[15]},{"name":"SO_MAXPATHDG","features":[15]},{"name":"SO_MAX_MSG_SIZE","features":[15]},{"name":"SO_OOBINLINE","features":[15]},{"name":"SO_OPENTYPE","features":[15]},{"name":"SO_ORIGINAL_DST","features":[15]},{"name":"SO_PAUSE_ACCEPT","features":[15]},{"name":"SO_PORT_SCALABILITY","features":[15]},{"name":"SO_PROTOCOL_INFO","features":[15]},{"name":"SO_PROTOCOL_INFOA","features":[15]},{"name":"SO_PROTOCOL_INFOW","features":[15]},{"name":"SO_RANDOMIZE_PORT","features":[15]},{"name":"SO_RCVBUF","features":[15]},{"name":"SO_RCVLOWAT","features":[15]},{"name":"SO_RCVTIMEO","features":[15]},{"name":"SO_REUSEADDR","features":[15]},{"name":"SO_REUSE_MULTICASTPORT","features":[15]},{"name":"SO_REUSE_UNICASTPORT","features":[15]},{"name":"SO_SNDBUF","features":[15]},{"name":"SO_SNDLOWAT","features":[15]},{"name":"SO_SNDTIMEO","features":[15]},{"name":"SO_SYNCHRONOUS_ALERT","features":[15]},{"name":"SO_SYNCHRONOUS_NONALERT","features":[15]},{"name":"SO_TIMESTAMP","features":[15]},{"name":"SO_TIMESTAMP_ID","features":[15]},{"name":"SO_TYPE","features":[15]},{"name":"SO_UPDATE_ACCEPT_CONTEXT","features":[15]},{"name":"SO_UPDATE_CONNECT_CONTEXT","features":[15]},{"name":"SO_USELOOPBACK","features":[15]},{"name":"SYSTEM_CRITICAL_SOCKET","features":[15]},{"name":"ScopeLevelAdmin","features":[15]},{"name":"ScopeLevelCount","features":[15]},{"name":"ScopeLevelGlobal","features":[15]},{"name":"ScopeLevelInterface","features":[15]},{"name":"ScopeLevelLink","features":[15]},{"name":"ScopeLevelOrganization","features":[15]},{"name":"ScopeLevelSite","features":[15]},{"name":"ScopeLevelSubnet","features":[15]},{"name":"SetAddrInfoExA","features":[1,15,41,6]},{"name":"SetAddrInfoExW","features":[1,15,41,6]},{"name":"SetServiceA","features":[1,15,41]},{"name":"SetServiceW","features":[1,15,41]},{"name":"SetSocketMediaStreamingMode","features":[1,15]},{"name":"SocketMaximumPriorityHintType","features":[15]},{"name":"SocketPriorityHintLow","features":[15]},{"name":"SocketPriorityHintNormal","features":[15]},{"name":"SocketPriorityHintVeryLow","features":[15]},{"name":"TCPSTATE","features":[15]},{"name":"TCPSTATE_CLOSED","features":[15]},{"name":"TCPSTATE_CLOSE_WAIT","features":[15]},{"name":"TCPSTATE_CLOSING","features":[15]},{"name":"TCPSTATE_ESTABLISHED","features":[15]},{"name":"TCPSTATE_FIN_WAIT_1","features":[15]},{"name":"TCPSTATE_FIN_WAIT_2","features":[15]},{"name":"TCPSTATE_LAST_ACK","features":[15]},{"name":"TCPSTATE_LISTEN","features":[15]},{"name":"TCPSTATE_MAX","features":[15]},{"name":"TCPSTATE_SYN_RCVD","features":[15]},{"name":"TCPSTATE_SYN_SENT","features":[15]},{"name":"TCPSTATE_TIME_WAIT","features":[15]},{"name":"TCP_ACK_FREQUENCY_PARAMETERS","features":[15]},{"name":"TCP_ATMARK","features":[15]},{"name":"TCP_BSDURGENT","features":[15]},{"name":"TCP_CONGESTION_ALGORITHM","features":[15]},{"name":"TCP_DELAY_FIN_ACK","features":[15]},{"name":"TCP_EXPEDITED_1122","features":[15]},{"name":"TCP_FAIL_CONNECT_ON_ICMP_ERROR","features":[15]},{"name":"TCP_FASTOPEN","features":[15]},{"name":"TCP_HDR","features":[15]},{"name":"TCP_ICMP_ERROR_INFO","features":[15]},{"name":"TCP_ICW_LEVEL","features":[15]},{"name":"TCP_ICW_LEVEL_AGGRESSIVE","features":[15]},{"name":"TCP_ICW_LEVEL_COMPAT","features":[15]},{"name":"TCP_ICW_LEVEL_DEFAULT","features":[15]},{"name":"TCP_ICW_LEVEL_EXPERIMENTAL","features":[15]},{"name":"TCP_ICW_LEVEL_HIGH","features":[15]},{"name":"TCP_ICW_LEVEL_MAX","features":[15]},{"name":"TCP_ICW_LEVEL_VERY_HIGH","features":[15]},{"name":"TCP_ICW_PARAMETERS","features":[15]},{"name":"TCP_INFO_v0","features":[1,15]},{"name":"TCP_INFO_v1","features":[1,15]},{"name":"TCP_INITIAL_RTO_DEFAULT_MAX_SYN_RETRANSMISSIONS","features":[15]},{"name":"TCP_INITIAL_RTO_DEFAULT_RTT","features":[15]},{"name":"TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS","features":[15]},{"name":"TCP_INITIAL_RTO_PARAMETERS","features":[15]},{"name":"TCP_INITIAL_RTO_UNSPECIFIED_MAX_SYN_RETRANSMISSIONS","features":[15]},{"name":"TCP_KEEPALIVE","features":[15]},{"name":"TCP_KEEPCNT","features":[15]},{"name":"TCP_KEEPIDLE","features":[15]},{"name":"TCP_KEEPINTVL","features":[15]},{"name":"TCP_MAXRT","features":[15]},{"name":"TCP_MAXRTMS","features":[15]},{"name":"TCP_MAXSEG","features":[15]},{"name":"TCP_NODELAY","features":[15]},{"name":"TCP_NOSYNRETRIES","features":[15]},{"name":"TCP_NOURG","features":[15]},{"name":"TCP_OFFLOAD_NOT_PREFERRED","features":[15]},{"name":"TCP_OFFLOAD_NO_PREFERENCE","features":[15]},{"name":"TCP_OFFLOAD_PREFERENCE","features":[15]},{"name":"TCP_OFFLOAD_PREFERRED","features":[15]},{"name":"TCP_OPT_FASTOPEN","features":[15]},{"name":"TCP_OPT_MSS","features":[15]},{"name":"TCP_OPT_SACK","features":[15]},{"name":"TCP_OPT_SACK_PERMITTED","features":[15]},{"name":"TCP_OPT_TS","features":[15]},{"name":"TCP_OPT_UNKNOWN","features":[15]},{"name":"TCP_OPT_WS","features":[15]},{"name":"TCP_STDURG","features":[15]},{"name":"TCP_TIMESTAMPS","features":[15]},{"name":"TF_DISCONNECT","features":[15]},{"name":"TF_REUSE_SOCKET","features":[15]},{"name":"TF_USE_DEFAULT_WORKER","features":[15]},{"name":"TF_USE_KERNEL_APC","features":[15]},{"name":"TF_USE_SYSTEM_THREAD","features":[15]},{"name":"TF_WRITE_BEHIND","features":[15]},{"name":"TH_ACK","features":[15]},{"name":"TH_CWR","features":[15]},{"name":"TH_ECE","features":[15]},{"name":"TH_FIN","features":[15]},{"name":"TH_NETDEV","features":[15]},{"name":"TH_OPT_EOL","features":[15]},{"name":"TH_OPT_FASTOPEN","features":[15]},{"name":"TH_OPT_MSS","features":[15]},{"name":"TH_OPT_NOP","features":[15]},{"name":"TH_OPT_SACK","features":[15]},{"name":"TH_OPT_SACK_PERMITTED","features":[15]},{"name":"TH_OPT_TS","features":[15]},{"name":"TH_OPT_WS","features":[15]},{"name":"TH_PSH","features":[15]},{"name":"TH_RST","features":[15]},{"name":"TH_SYN","features":[15]},{"name":"TH_TAPI","features":[15]},{"name":"TH_URG","features":[15]},{"name":"TIMESTAMPING_CONFIG","features":[15]},{"name":"TIMESTAMPING_FLAG_RX","features":[15]},{"name":"TIMESTAMPING_FLAG_TX","features":[15]},{"name":"TIMEVAL","features":[15]},{"name":"TNS_PLAN_CARRIER_ID_CODE","features":[15]},{"name":"TNS_TYPE_NATIONAL","features":[15]},{"name":"TP_DISCONNECT","features":[15]},{"name":"TP_ELEMENT_EOP","features":[15]},{"name":"TP_ELEMENT_FILE","features":[15]},{"name":"TP_ELEMENT_MEMORY","features":[15]},{"name":"TP_REUSE_SOCKET","features":[15]},{"name":"TP_USE_DEFAULT_WORKER","features":[15]},{"name":"TP_USE_KERNEL_APC","features":[15]},{"name":"TP_USE_SYSTEM_THREAD","features":[15]},{"name":"TRANSMIT_FILE_BUFFERS","features":[15]},{"name":"TRANSMIT_PACKETS_ELEMENT","features":[1,15]},{"name":"TRANSPORT_SETTING_ID","features":[15]},{"name":"TR_END_TO_END","features":[15]},{"name":"TR_NOIND","features":[15]},{"name":"TR_NO_END_TO_END","features":[15]},{"name":"TT_CBR","features":[15]},{"name":"TT_NOIND","features":[15]},{"name":"TT_VBR","features":[15]},{"name":"TUNNEL_SUB_TYPE","features":[15]},{"name":"TUNNEL_SUB_TYPE_CP","features":[15]},{"name":"TUNNEL_SUB_TYPE_HA","features":[15]},{"name":"TUNNEL_SUB_TYPE_IPTLS","features":[15]},{"name":"TUNNEL_SUB_TYPE_NONE","features":[15]},{"name":"TransmitFile","features":[1,15,6]},{"name":"UDP_CHECKSUM_COVERAGE","features":[15]},{"name":"UDP_COALESCED_INFO","features":[15]},{"name":"UDP_NOCHECKSUM","features":[15]},{"name":"UDP_RECV_MAX_COALESCED_SIZE","features":[15]},{"name":"UDP_SEND_MSG_SIZE","features":[15]},{"name":"UNIX_PATH_MAX","features":[15]},{"name":"UP_P2MP","features":[15]},{"name":"UP_P2P","features":[15]},{"name":"VLAN_TAG","features":[15]},{"name":"VNSPROTO_IPC","features":[15]},{"name":"VNSPROTO_RELIABLE_IPC","features":[15]},{"name":"VNSPROTO_SPP","features":[15]},{"name":"WCE_AF_IRDA","features":[15]},{"name":"WCE_DEVICELIST","features":[15]},{"name":"WCE_IRDA_DEVICE_INFO","features":[15]},{"name":"WCE_PF_IRDA","features":[15]},{"name":"WINDOWS_AF_IRDA","features":[15]},{"name":"WINDOWS_DEVICELIST","features":[15]},{"name":"WINDOWS_IAS_QUERY","features":[15]},{"name":"WINDOWS_IAS_SET","features":[15]},{"name":"WINDOWS_IRDA_DEVICE_INFO","features":[15]},{"name":"WINDOWS_PF_IRDA","features":[15]},{"name":"WINSOCK_SHUTDOWN_HOW","features":[15]},{"name":"WINSOCK_SOCKET_TYPE","features":[15]},{"name":"WPUCompleteOverlappedRequest","features":[1,15,6]},{"name":"WSAAccept","features":[15]},{"name":"WSAAddressToStringA","features":[15]},{"name":"WSAAddressToStringW","features":[15]},{"name":"WSAAdvertiseProvider","features":[1,15,41]},{"name":"WSAAsyncGetHostByAddr","features":[1,15]},{"name":"WSAAsyncGetHostByName","features":[1,15]},{"name":"WSAAsyncGetProtoByName","features":[1,15]},{"name":"WSAAsyncGetProtoByNumber","features":[1,15]},{"name":"WSAAsyncGetServByName","features":[1,15]},{"name":"WSAAsyncGetServByPort","features":[1,15]},{"name":"WSAAsyncSelect","features":[1,15]},{"name":"WSABASEERR","features":[15]},{"name":"WSABUF","features":[15]},{"name":"WSACOMPLETION","features":[1,15,6]},{"name":"WSACOMPLETIONTYPE","features":[15]},{"name":"WSACancelAsyncRequest","features":[1,15]},{"name":"WSACancelBlockingCall","features":[15]},{"name":"WSACleanup","features":[15]},{"name":"WSACloseEvent","features":[1,15]},{"name":"WSAConnect","features":[15]},{"name":"WSAConnectByList","features":[1,15,6]},{"name":"WSAConnectByNameA","features":[1,15,6]},{"name":"WSAConnectByNameW","features":[1,15,6]},{"name":"WSACreateEvent","features":[1,15]},{"name":"WSADATA","features":[15]},{"name":"WSADATA","features":[15]},{"name":"WSADESCRIPTION_LEN","features":[15]},{"name":"WSADeleteSocketPeerTargetName","features":[1,15,6]},{"name":"WSADuplicateSocketA","features":[15]},{"name":"WSADuplicateSocketW","features":[15]},{"name":"WSAEACCES","features":[15]},{"name":"WSAEADDRINUSE","features":[15]},{"name":"WSAEADDRNOTAVAIL","features":[15]},{"name":"WSAEAFNOSUPPORT","features":[15]},{"name":"WSAEALREADY","features":[15]},{"name":"WSAEBADF","features":[15]},{"name":"WSAECANCELLED","features":[15]},{"name":"WSAECOMPARATOR","features":[15]},{"name":"WSAECONNABORTED","features":[15]},{"name":"WSAECONNREFUSED","features":[15]},{"name":"WSAECONNRESET","features":[15]},{"name":"WSAEDESTADDRREQ","features":[15]},{"name":"WSAEDISCON","features":[15]},{"name":"WSAEDQUOT","features":[15]},{"name":"WSAEFAULT","features":[15]},{"name":"WSAEHOSTDOWN","features":[15]},{"name":"WSAEHOSTUNREACH","features":[15]},{"name":"WSAEINPROGRESS","features":[15]},{"name":"WSAEINTR","features":[15]},{"name":"WSAEINVAL","features":[15]},{"name":"WSAEINVALIDPROCTABLE","features":[15]},{"name":"WSAEINVALIDPROVIDER","features":[15]},{"name":"WSAEISCONN","features":[15]},{"name":"WSAELOOP","features":[15]},{"name":"WSAEMFILE","features":[15]},{"name":"WSAEMSGSIZE","features":[15]},{"name":"WSAENAMETOOLONG","features":[15]},{"name":"WSAENETDOWN","features":[15]},{"name":"WSAENETRESET","features":[15]},{"name":"WSAENETUNREACH","features":[15]},{"name":"WSAENOBUFS","features":[15]},{"name":"WSAENOMORE","features":[15]},{"name":"WSAENOPROTOOPT","features":[15]},{"name":"WSAENOTCONN","features":[15]},{"name":"WSAENOTEMPTY","features":[15]},{"name":"WSAENOTSOCK","features":[15]},{"name":"WSAEOPNOTSUPP","features":[15]},{"name":"WSAEPFNOSUPPORT","features":[15]},{"name":"WSAEPROCLIM","features":[15]},{"name":"WSAEPROTONOSUPPORT","features":[15]},{"name":"WSAEPROTOTYPE","features":[15]},{"name":"WSAEPROVIDERFAILEDINIT","features":[15]},{"name":"WSAEREFUSED","features":[15]},{"name":"WSAEREMOTE","features":[15]},{"name":"WSAESETSERVICEOP","features":[15]},{"name":"WSAESHUTDOWN","features":[15]},{"name":"WSAESOCKTNOSUPPORT","features":[15]},{"name":"WSAESTALE","features":[15]},{"name":"WSAETIMEDOUT","features":[15]},{"name":"WSAETOOMANYREFS","features":[15]},{"name":"WSAEUSERS","features":[15]},{"name":"WSAEVENT","features":[15]},{"name":"WSAEWOULDBLOCK","features":[15]},{"name":"WSAEnumNameSpaceProvidersA","features":[1,15]},{"name":"WSAEnumNameSpaceProvidersExA","features":[1,15,41]},{"name":"WSAEnumNameSpaceProvidersExW","features":[1,15,41]},{"name":"WSAEnumNameSpaceProvidersW","features":[1,15]},{"name":"WSAEnumNetworkEvents","features":[1,15]},{"name":"WSAEnumProtocolsA","features":[15]},{"name":"WSAEnumProtocolsW","features":[15]},{"name":"WSAEventSelect","features":[1,15]},{"name":"WSAGetLastError","features":[15]},{"name":"WSAGetOverlappedResult","features":[1,15,6]},{"name":"WSAGetQOSByName","features":[1,15]},{"name":"WSAGetServiceClassInfoA","features":[15]},{"name":"WSAGetServiceClassInfoW","features":[15]},{"name":"WSAGetServiceClassNameByClassIdA","features":[15]},{"name":"WSAGetServiceClassNameByClassIdW","features":[15]},{"name":"WSAHOST_NOT_FOUND","features":[15]},{"name":"WSAHtonl","features":[15]},{"name":"WSAHtons","features":[15]},{"name":"WSAID_ACCEPTEX","features":[15]},{"name":"WSAID_CONNECTEX","features":[15]},{"name":"WSAID_DISCONNECTEX","features":[15]},{"name":"WSAID_GETACCEPTEXSOCKADDRS","features":[15]},{"name":"WSAID_MULTIPLE_RIO","features":[15]},{"name":"WSAID_TRANSMITFILE","features":[15]},{"name":"WSAID_TRANSMITPACKETS","features":[15]},{"name":"WSAID_WSAPOLL","features":[15]},{"name":"WSAID_WSARECVMSG","features":[15]},{"name":"WSAID_WSASENDMSG","features":[15]},{"name":"WSAImpersonateSocketPeer","features":[15]},{"name":"WSAInstallServiceClassA","features":[15]},{"name":"WSAInstallServiceClassW","features":[15]},{"name":"WSAIoctl","features":[1,15,6]},{"name":"WSAIsBlocking","features":[1,15]},{"name":"WSAJoinLeaf","features":[15]},{"name":"WSALookupServiceBeginA","features":[1,15,41]},{"name":"WSALookupServiceBeginW","features":[1,15,41]},{"name":"WSALookupServiceEnd","features":[1,15]},{"name":"WSALookupServiceNextA","features":[1,15,41]},{"name":"WSALookupServiceNextW","features":[1,15,41]},{"name":"WSAMSG","features":[15]},{"name":"WSANAMESPACE_INFOA","features":[1,15]},{"name":"WSANAMESPACE_INFOEXA","features":[1,15,41]},{"name":"WSANAMESPACE_INFOEXW","features":[1,15,41]},{"name":"WSANAMESPACE_INFOW","features":[1,15]},{"name":"WSANETWORKEVENTS","features":[15]},{"name":"WSANOTINITIALISED","features":[15]},{"name":"WSANO_DATA","features":[15]},{"name":"WSANO_RECOVERY","features":[15]},{"name":"WSANSCLASSINFOA","features":[15]},{"name":"WSANSCLASSINFOW","features":[15]},{"name":"WSANSPIoctl","features":[1,15,6]},{"name":"WSANtohl","features":[15]},{"name":"WSANtohs","features":[15]},{"name":"WSAPOLLDATA","features":[15]},{"name":"WSAPOLLFD","features":[15]},{"name":"WSAPOLL_EVENT_FLAGS","features":[15]},{"name":"WSAPROTOCOLCHAIN","features":[15]},{"name":"WSAPROTOCOL_INFOA","features":[15]},{"name":"WSAPROTOCOL_INFOW","features":[15]},{"name":"WSAPROTOCOL_LEN","features":[15]},{"name":"WSAPoll","features":[15]},{"name":"WSAProviderCompleteAsyncCall","features":[1,15]},{"name":"WSAProviderConfigChange","features":[1,15,6]},{"name":"WSAQUERYSET2A","features":[15,41]},{"name":"WSAQUERYSET2W","features":[15,41]},{"name":"WSAQUERYSETA","features":[15,41]},{"name":"WSAQUERYSETW","features":[15,41]},{"name":"WSAQuerySocketSecurity","features":[1,15,6]},{"name":"WSARecv","features":[1,15,6]},{"name":"WSARecvDisconnect","features":[15]},{"name":"WSARecvEx","features":[15]},{"name":"WSARecvFrom","features":[1,15,6]},{"name":"WSARemoveServiceClass","features":[15]},{"name":"WSAResetEvent","features":[1,15]},{"name":"WSARevertImpersonation","features":[15]},{"name":"WSASENDMSG","features":[1,15,6]},{"name":"WSASERVICECLASSINFOA","features":[15]},{"name":"WSASERVICECLASSINFOW","features":[15]},{"name":"WSASERVICE_NOT_FOUND","features":[15]},{"name":"WSASYSCALLFAILURE","features":[15]},{"name":"WSASYSNOTREADY","features":[15]},{"name":"WSASYS_STATUS_LEN","features":[15]},{"name":"WSASend","features":[1,15,6]},{"name":"WSASendDisconnect","features":[15]},{"name":"WSASendMsg","features":[1,15,6]},{"name":"WSASendTo","features":[1,15,6]},{"name":"WSASetBlockingHook","features":[1,15]},{"name":"WSASetEvent","features":[1,15]},{"name":"WSASetLastError","features":[15]},{"name":"WSASetServiceA","features":[15,41]},{"name":"WSASetServiceW","features":[15,41]},{"name":"WSASetSocketPeerTargetName","features":[1,15,6]},{"name":"WSASetSocketSecurity","features":[1,15,6]},{"name":"WSASocketA","features":[15]},{"name":"WSASocketW","features":[15]},{"name":"WSAStartup","features":[15]},{"name":"WSAStringToAddressA","features":[15]},{"name":"WSAStringToAddressW","features":[15]},{"name":"WSATHREADID","features":[1,15]},{"name":"WSATRY_AGAIN","features":[15]},{"name":"WSATYPE_NOT_FOUND","features":[15]},{"name":"WSAUnadvertiseProvider","features":[15]},{"name":"WSAUnhookBlockingHook","features":[15]},{"name":"WSAVERNOTSUPPORTED","features":[15]},{"name":"WSAVERSION","features":[15]},{"name":"WSAWaitForMultipleEvents","features":[1,15]},{"name":"WSA_COMPATIBILITY_BEHAVIOR_ID","features":[15]},{"name":"WSA_COMPATIBILITY_MODE","features":[15]},{"name":"WSA_ERROR","features":[15]},{"name":"WSA_E_CANCELLED","features":[15]},{"name":"WSA_E_NO_MORE","features":[15]},{"name":"WSA_FLAG_ACCESS_SYSTEM_SECURITY","features":[15]},{"name":"WSA_FLAG_MULTIPOINT_C_LEAF","features":[15]},{"name":"WSA_FLAG_MULTIPOINT_C_ROOT","features":[15]},{"name":"WSA_FLAG_MULTIPOINT_D_LEAF","features":[15]},{"name":"WSA_FLAG_MULTIPOINT_D_ROOT","features":[15]},{"name":"WSA_FLAG_NO_HANDLE_INHERIT","features":[15]},{"name":"WSA_FLAG_OVERLAPPED","features":[15]},{"name":"WSA_FLAG_REGISTERED_IO","features":[15]},{"name":"WSA_INFINITE","features":[15]},{"name":"WSA_INVALID_HANDLE","features":[15]},{"name":"WSA_INVALID_PARAMETER","features":[15]},{"name":"WSA_IO_INCOMPLETE","features":[15]},{"name":"WSA_IO_PENDING","features":[15]},{"name":"WSA_IPSEC_NAME_POLICY_ERROR","features":[15]},{"name":"WSA_MAXIMUM_WAIT_EVENTS","features":[15]},{"name":"WSA_NOT_ENOUGH_MEMORY","features":[15]},{"name":"WSA_OPERATION_ABORTED","features":[15]},{"name":"WSA_QOS_ADMISSION_FAILURE","features":[15]},{"name":"WSA_QOS_BAD_OBJECT","features":[15]},{"name":"WSA_QOS_BAD_STYLE","features":[15]},{"name":"WSA_QOS_EFILTERCOUNT","features":[15]},{"name":"WSA_QOS_EFILTERSTYLE","features":[15]},{"name":"WSA_QOS_EFILTERTYPE","features":[15]},{"name":"WSA_QOS_EFLOWCOUNT","features":[15]},{"name":"WSA_QOS_EFLOWDESC","features":[15]},{"name":"WSA_QOS_EFLOWSPEC","features":[15]},{"name":"WSA_QOS_EOBJLENGTH","features":[15]},{"name":"WSA_QOS_EPOLICYOBJ","features":[15]},{"name":"WSA_QOS_EPROVSPECBUF","features":[15]},{"name":"WSA_QOS_EPSFILTERSPEC","features":[15]},{"name":"WSA_QOS_EPSFLOWSPEC","features":[15]},{"name":"WSA_QOS_ESDMODEOBJ","features":[15]},{"name":"WSA_QOS_ESERVICETYPE","features":[15]},{"name":"WSA_QOS_ESHAPERATEOBJ","features":[15]},{"name":"WSA_QOS_EUNKOWNPSOBJ","features":[15]},{"name":"WSA_QOS_GENERIC_ERROR","features":[15]},{"name":"WSA_QOS_NO_RECEIVERS","features":[15]},{"name":"WSA_QOS_NO_SENDERS","features":[15]},{"name":"WSA_QOS_POLICY_FAILURE","features":[15]},{"name":"WSA_QOS_RECEIVERS","features":[15]},{"name":"WSA_QOS_REQUEST_CONFIRMED","features":[15]},{"name":"WSA_QOS_RESERVED_PETYPE","features":[15]},{"name":"WSA_QOS_SENDERS","features":[15]},{"name":"WSA_QOS_TRAFFIC_CTRL_ERROR","features":[15]},{"name":"WSA_SECURE_HOST_NOT_FOUND","features":[15]},{"name":"WSA_WAIT_EVENT_0","features":[15]},{"name":"WSA_WAIT_FAILED","features":[15]},{"name":"WSA_WAIT_IO_COMPLETION","features":[15]},{"name":"WSA_WAIT_TIMEOUT","features":[15]},{"name":"WSCDeinstallProvider","features":[15]},{"name":"WSCDeinstallProvider32","features":[15]},{"name":"WSCEnableNSProvider","features":[1,15]},{"name":"WSCEnableNSProvider32","features":[1,15]},{"name":"WSCEnumNameSpaceProviders32","features":[1,15]},{"name":"WSCEnumNameSpaceProvidersEx32","features":[1,15,41]},{"name":"WSCEnumProtocols","features":[15]},{"name":"WSCEnumProtocols32","features":[15]},{"name":"WSCGetApplicationCategory","features":[15]},{"name":"WSCGetProviderInfo","features":[15]},{"name":"WSCGetProviderInfo32","features":[15]},{"name":"WSCGetProviderPath","features":[15]},{"name":"WSCGetProviderPath32","features":[15]},{"name":"WSCInstallNameSpace","features":[15]},{"name":"WSCInstallNameSpace32","features":[15]},{"name":"WSCInstallNameSpaceEx","features":[15,41]},{"name":"WSCInstallNameSpaceEx32","features":[15,41]},{"name":"WSCInstallProvider","features":[15]},{"name":"WSCInstallProvider64_32","features":[15]},{"name":"WSCInstallProviderAndChains64_32","features":[15]},{"name":"WSCSetApplicationCategory","features":[15]},{"name":"WSCSetProviderInfo","features":[15]},{"name":"WSCSetProviderInfo32","features":[15]},{"name":"WSCUnInstallNameSpace","features":[15]},{"name":"WSCUnInstallNameSpace32","features":[15]},{"name":"WSCUpdateProvider","features":[15]},{"name":"WSCUpdateProvider32","features":[15]},{"name":"WSCWriteNameSpaceOrder","features":[15]},{"name":"WSCWriteNameSpaceOrder32","features":[15]},{"name":"WSCWriteProviderOrder","features":[15]},{"name":"WSCWriteProviderOrder32","features":[15]},{"name":"WSC_PROVIDER_AUDIT_INFO","features":[15]},{"name":"WSC_PROVIDER_INFO_TYPE","features":[15]},{"name":"WSK_SO_BASE","features":[15]},{"name":"WSPDATA","features":[15]},{"name":"WSPDESCRIPTION_LEN","features":[15]},{"name":"WSPPROC_TABLE","features":[1,15,6]},{"name":"WSPUPCALLTABLE","features":[1,15]},{"name":"WSS_OPERATION_IN_PROGRESS","features":[15]},{"name":"WsaBehaviorAll","features":[15]},{"name":"WsaBehaviorAutoTuning","features":[15]},{"name":"WsaBehaviorReceiveBuffering","features":[15]},{"name":"XP1_CONNECTIONLESS","features":[15]},{"name":"XP1_CONNECT_DATA","features":[15]},{"name":"XP1_DISCONNECT_DATA","features":[15]},{"name":"XP1_EXPEDITED_DATA","features":[15]},{"name":"XP1_GRACEFUL_CLOSE","features":[15]},{"name":"XP1_GUARANTEED_DELIVERY","features":[15]},{"name":"XP1_GUARANTEED_ORDER","features":[15]},{"name":"XP1_IFS_HANDLES","features":[15]},{"name":"XP1_INTERRUPT","features":[15]},{"name":"XP1_MESSAGE_ORIENTED","features":[15]},{"name":"XP1_MULTIPOINT_CONTROL_PLANE","features":[15]},{"name":"XP1_MULTIPOINT_DATA_PLANE","features":[15]},{"name":"XP1_PARTIAL_MESSAGE","features":[15]},{"name":"XP1_PSEUDO_STREAM","features":[15]},{"name":"XP1_QOS_SUPPORTED","features":[15]},{"name":"XP1_SAN_SUPPORT_SDP","features":[15]},{"name":"XP1_SUPPORT_BROADCAST","features":[15]},{"name":"XP1_SUPPORT_MULTIPOINT","features":[15]},{"name":"XP1_UNI_RECV","features":[15]},{"name":"XP1_UNI_SEND","features":[15]},{"name":"XP_BANDWIDTH_ALLOCATION","features":[15]},{"name":"XP_CONNECTIONLESS","features":[15]},{"name":"XP_CONNECT_DATA","features":[15]},{"name":"XP_DISCONNECT_DATA","features":[15]},{"name":"XP_ENCRYPTS","features":[15]},{"name":"XP_EXPEDITED_DATA","features":[15]},{"name":"XP_FRAGMENTATION","features":[15]},{"name":"XP_GRACEFUL_CLOSE","features":[15]},{"name":"XP_GUARANTEED_DELIVERY","features":[15]},{"name":"XP_GUARANTEED_ORDER","features":[15]},{"name":"XP_MESSAGE_ORIENTED","features":[15]},{"name":"XP_PSEUDO_STREAM","features":[15]},{"name":"XP_SUPPORTS_BROADCAST","features":[15]},{"name":"XP_SUPPORTS_MULTICAST","features":[15]},{"name":"_BIG_ENDIAN","features":[15]},{"name":"_LITTLE_ENDIAN","features":[15]},{"name":"_PDP_ENDIAN","features":[15]},{"name":"_SS_MAXSIZE","features":[15]},{"name":"__WSAFDIsSet","features":[15]},{"name":"accept","features":[15]},{"name":"bind","features":[15]},{"name":"closesocket","features":[15]},{"name":"connect","features":[15]},{"name":"eWINDOW_ADVANCE_METHOD","features":[15]},{"name":"freeaddrinfo","features":[15]},{"name":"getaddrinfo","features":[15]},{"name":"gethostbyaddr","features":[15]},{"name":"gethostbyname","features":[15]},{"name":"gethostname","features":[15]},{"name":"getnameinfo","features":[15]},{"name":"getpeername","features":[15]},{"name":"getprotobyname","features":[15]},{"name":"getprotobynumber","features":[15]},{"name":"getservbyname","features":[15]},{"name":"getservbyport","features":[15]},{"name":"getsockname","features":[15]},{"name":"getsockopt","features":[15]},{"name":"htonl","features":[15]},{"name":"htons","features":[15]},{"name":"inet_addr","features":[15]},{"name":"inet_ntoa","features":[15]},{"name":"inet_ntop","features":[15]},{"name":"inet_pton","features":[15]},{"name":"ioctlsocket","features":[15]},{"name":"listen","features":[15]},{"name":"netent","features":[15]},{"name":"ntohl","features":[15]},{"name":"ntohs","features":[15]},{"name":"recv","features":[15]},{"name":"recvfrom","features":[15]},{"name":"select","features":[15]},{"name":"send","features":[15]},{"name":"sendto","features":[15]},{"name":"setsockopt","features":[15]},{"name":"shutdown","features":[15]},{"name":"sockaddr_gen","features":[15]},{"name":"sockaddr_in6_old","features":[15]},{"name":"socket","features":[15]},{"name":"socklen_t","features":[15]},{"name":"sockproto","features":[15]},{"name":"tcp_keepalive","features":[15]}],"478":[{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA","features":[116]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_CURRENT_VERSION","features":[116]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_VERSION_1","features":[116]},{"name":"IContentPrefetcherTaskTrigger","features":[116]},{"name":"WEBAUTHN_API_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_API_VERSION_1","features":[116]},{"name":"WEBAUTHN_API_VERSION_2","features":[116]},{"name":"WEBAUTHN_API_VERSION_3","features":[116]},{"name":"WEBAUTHN_API_VERSION_4","features":[116]},{"name":"WEBAUTHN_API_VERSION_5","features":[116]},{"name":"WEBAUTHN_API_VERSION_6","features":[116]},{"name":"WEBAUTHN_API_VERSION_7","features":[116]},{"name":"WEBAUTHN_ASSERTION","features":[116]},{"name":"WEBAUTHN_ASSERTION_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_ASSERTION_VERSION_1","features":[116]},{"name":"WEBAUTHN_ASSERTION_VERSION_2","features":[116]},{"name":"WEBAUTHN_ASSERTION_VERSION_3","features":[116]},{"name":"WEBAUTHN_ASSERTION_VERSION_4","features":[116]},{"name":"WEBAUTHN_ASSERTION_VERSION_5","features":[116]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_ANY","features":[116]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_DIRECT","features":[116]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_INDIRECT","features":[116]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_NONE","features":[116]},{"name":"WEBAUTHN_ATTESTATION_DECODE_COMMON","features":[116]},{"name":"WEBAUTHN_ATTESTATION_DECODE_NONE","features":[116]},{"name":"WEBAUTHN_ATTESTATION_TYPE_NONE","features":[116]},{"name":"WEBAUTHN_ATTESTATION_TYPE_PACKED","features":[116]},{"name":"WEBAUTHN_ATTESTATION_TYPE_TPM","features":[116]},{"name":"WEBAUTHN_ATTESTATION_TYPE_U2F","features":[116]},{"name":"WEBAUTHN_ATTESTATION_VER_TPM_2_0","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_ANY","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM_U2F_V2","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_PLATFORM","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS","features":[1,116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_1","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_2","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_3","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_4","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_5","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_6","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_7","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_HMAC_SECRET_VALUES_FLAG","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS","features":[1,116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_1","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_2","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_3","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_4","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_5","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_6","features":[116]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_7","features":[116]},{"name":"WEBAUTHN_CLIENT_DATA","features":[116]},{"name":"WEBAUTHN_CLIENT_DATA_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_COMMON_ATTESTATION","features":[116]},{"name":"WEBAUTHN_COMMON_ATTESTATION_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P256_WITH_SHA256","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P384_WITH_SHA384","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P521_WITH_SHA512","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA256","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA384","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA512","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA256","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA384","features":[116]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA512","features":[116]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER","features":[116]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETERS","features":[116]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_CREDENTIAL","features":[116]},{"name":"WEBAUTHN_CREDENTIALS","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION","features":[1,116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_1","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_2","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_3","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_4","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_5","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_6","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS","features":[1,116]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_LIST","features":[1,116]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_1","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_2","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_EX","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_EX_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_LIST","features":[116]},{"name":"WEBAUTHN_CREDENTIAL_TYPE_PUBLIC_KEY","features":[116]},{"name":"WEBAUTHN_CRED_BLOB_EXTENSION","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_DELETE","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_GET","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_NONE","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_SET","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_AUTHENTICATOR_ERROR","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_DATA","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_PARAMETER","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_LACK_OF_SPACE","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_MULTIPLE_CREDENTIALS","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NONE","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_FOUND","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_SUPPORTED","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_PLATFORM_ERROR","features":[116]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_SUCCESS","features":[116]},{"name":"WEBAUTHN_CRED_PROTECT_EXTENSION_IN","features":[1,116]},{"name":"WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT","features":[116]},{"name":"WEBAUTHN_CTAP_ONE_HMAC_SECRET_LENGTH","features":[116]},{"name":"WEBAUTHN_CTAP_TRANSPORT_BLE","features":[116]},{"name":"WEBAUTHN_CTAP_TRANSPORT_FLAGS_MASK","features":[116]},{"name":"WEBAUTHN_CTAP_TRANSPORT_HYBRID","features":[116]},{"name":"WEBAUTHN_CTAP_TRANSPORT_INTERNAL","features":[116]},{"name":"WEBAUTHN_CTAP_TRANSPORT_NFC","features":[116]},{"name":"WEBAUTHN_CTAP_TRANSPORT_TEST","features":[116]},{"name":"WEBAUTHN_CTAP_TRANSPORT_USB","features":[116]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_NONE","features":[116]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_PLATFORM_MANAGED","features":[116]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_VENDOR_FACILITATED","features":[116]},{"name":"WEBAUTHN_EXTENSION","features":[116]},{"name":"WEBAUTHN_EXTENSIONS","features":[116]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_BLOB","features":[116]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_PROTECT","features":[116]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_HMAC_SECRET","features":[116]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_MIN_PIN_LENGTH","features":[116]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS","features":[1,116]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_VERSION_1","features":[116]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_256","features":[116]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_384","features":[116]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_512","features":[116]},{"name":"WEBAUTHN_HMAC_SECRET_SALT","features":[116]},{"name":"WEBAUTHN_HMAC_SECRET_SALT_VALUES","features":[116]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_NONE","features":[116]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_PREFERRED","features":[116]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_REQUIRED","features":[116]},{"name":"WEBAUTHN_MAX_USER_ID_LENGTH","features":[116]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION","features":[116]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION","features":[116]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION_CURRENT_VERSION","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_ANY","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL_WITH_CREDENTIAL_ID_LIST","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIRED","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_ANY","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_DISCOURAGED","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_PREFERRED","features":[116]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_REQUIRED","features":[116]},{"name":"WEBAUTHN_X5C","features":[116]},{"name":"WS_ABANDON_MESSAGE_CALLBACK","features":[116]},{"name":"WS_ABORT_CHANNEL_CALLBACK","features":[116]},{"name":"WS_ABORT_LISTENER_CALLBACK","features":[116]},{"name":"WS_ACCEPT_CHANNEL_CALLBACK","features":[116]},{"name":"WS_ACTION_HEADER","features":[116]},{"name":"WS_ADDRESSING_VERSION","features":[116]},{"name":"WS_ADDRESSING_VERSION_0_9","features":[116]},{"name":"WS_ADDRESSING_VERSION_1_0","features":[116]},{"name":"WS_ADDRESSING_VERSION_TRANSPORT","features":[116]},{"name":"WS_ANY_ATTRIBUTE","features":[1,116]},{"name":"WS_ANY_ATTRIBUTES","features":[1,116]},{"name":"WS_ANY_ATTRIBUTES_FIELD_MAPPING","features":[116]},{"name":"WS_ANY_ATTRIBUTES_TYPE","features":[116]},{"name":"WS_ANY_CONTENT_FIELD_MAPPING","features":[116]},{"name":"WS_ANY_ELEMENT_FIELD_MAPPING","features":[116]},{"name":"WS_ANY_ELEMENT_TYPE_MAPPING","features":[116]},{"name":"WS_ASYNC_CALLBACK","features":[116]},{"name":"WS_ASYNC_CONTEXT","features":[116]},{"name":"WS_ASYNC_FUNCTION","features":[116]},{"name":"WS_ASYNC_OPERATION","features":[116]},{"name":"WS_ASYNC_STATE","features":[116]},{"name":"WS_ATTRIBUTE_DESCRIPTION","features":[1,116]},{"name":"WS_ATTRIBUTE_FIELD_MAPPING","features":[116]},{"name":"WS_ATTRIBUTE_TYPE_MAPPING","features":[116]},{"name":"WS_AUTO_COOKIE_MODE","features":[116]},{"name":"WS_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_BLANK_MESSAGE","features":[116]},{"name":"WS_BOOL_DESCRIPTION","features":[1,116]},{"name":"WS_BOOL_TYPE","features":[116]},{"name":"WS_BOOL_VALUE_TYPE","features":[116]},{"name":"WS_BUFFERED_TRANSFER_MODE","features":[116]},{"name":"WS_BUFFERS","features":[116]},{"name":"WS_BYTES","features":[116]},{"name":"WS_BYTES_DESCRIPTION","features":[116]},{"name":"WS_BYTES_TYPE","features":[116]},{"name":"WS_BYTE_ARRAY_DESCRIPTION","features":[116]},{"name":"WS_BYTE_ARRAY_TYPE","features":[116]},{"name":"WS_CALLBACK_MODEL","features":[116]},{"name":"WS_CALL_PROPERTY","features":[116]},{"name":"WS_CALL_PROPERTY_CALL_ID","features":[116]},{"name":"WS_CALL_PROPERTY_CHECK_MUST_UNDERSTAND","features":[116]},{"name":"WS_CALL_PROPERTY_ID","features":[116]},{"name":"WS_CALL_PROPERTY_RECEIVE_MESSAGE_CONTEXT","features":[116]},{"name":"WS_CALL_PROPERTY_SEND_MESSAGE_CONTEXT","features":[116]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[116]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[116]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK","features":[1,116,68]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[1,116,68]},{"name":"WS_CERT_CREDENTIAL","features":[116]},{"name":"WS_CERT_CREDENTIAL_TYPE","features":[116]},{"name":"WS_CERT_ENDPOINT_IDENTITY","features":[116]},{"name":"WS_CERT_ENDPOINT_IDENTITY_TYPE","features":[116]},{"name":"WS_CERT_FAILURE_CN_MISMATCH","features":[116]},{"name":"WS_CERT_FAILURE_INVALID_DATE","features":[116]},{"name":"WS_CERT_FAILURE_REVOCATION_OFFLINE","features":[116]},{"name":"WS_CERT_FAILURE_UNTRUSTED_ROOT","features":[116]},{"name":"WS_CERT_FAILURE_WRONG_USAGE","features":[116]},{"name":"WS_CERT_ISSUER_LIST_NOTIFICATION_CALLBACK","features":[116,23,68]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[116]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR","features":[1,116,68]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR_TYPE","features":[116]},{"name":"WS_CHANNEL","features":[116]},{"name":"WS_CHANNEL_BINDING","features":[116]},{"name":"WS_CHANNEL_DECODER","features":[116]},{"name":"WS_CHANNEL_ENCODER","features":[116]},{"name":"WS_CHANNEL_PROPERTIES","features":[116]},{"name":"WS_CHANNEL_PROPERTY","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ADDRESSING_VERSION","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ALLOW_UNSECURED_FAULTS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ASYNC_CALLBACK_MODEL","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CHANNEL_TYPE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CLOSE_TIMEOUT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CONNECT_TIMEOUT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CONSTRAINT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_COOKIE_MODE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_CALLBACKS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_INSTANCE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_PARAMETERS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_HTTP_PROXY","features":[116]},{"name":"WS_CHANNEL_PROPERTY_DECODER","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_HTTP_REDIRECT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_TIMEOUTS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ENCODER","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ENCODING","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ENVELOPE_VERSION","features":[116]},{"name":"WS_CHANNEL_PROPERTY_FAULTS_AS_ERRORS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_HTTP_CONNECTION_ID","features":[116]},{"name":"WS_CHANNEL_PROPERTY_HTTP_MESSAGE_MAPPING","features":[116]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SETTING_MODE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SPN","features":[116]},{"name":"WS_CHANNEL_PROPERTY_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_HTTP_SERVER_SPN","features":[116]},{"name":"WS_CHANNEL_PROPERTY_ID","features":[116]},{"name":"WS_CHANNEL_PROPERTY_IP_VERSION","features":[116]},{"name":"WS_CHANNEL_PROPERTY_IS_SESSION_SHUT_DOWN","features":[116]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_INTERVAL","features":[116]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_TIME","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MAX_BUFFERED_MESSAGE_SIZE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_REQUEST_HEADERS_BUFFER_SIZE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_SERVER_CONNECTIONS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MAX_SESSION_DICTIONARY_SIZE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_FLUSH_SIZE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_MESSAGE_SIZE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_START_SIZE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_HOPS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_INTERFACE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_NO_DELAY","features":[116]},{"name":"WS_CHANNEL_PROPERTY_PROTECTION_LEVEL","features":[116]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_RESPONSE_TIMEOUT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_TIMEOUT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_ADDRESS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_IP_ADDRESS","features":[116]},{"name":"WS_CHANNEL_PROPERTY_RESOLVE_TIMEOUT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_SEND_KEEP_ALIVES","features":[116]},{"name":"WS_CHANNEL_PROPERTY_SEND_TIMEOUT","features":[116]},{"name":"WS_CHANNEL_PROPERTY_STATE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_TRANSFER_MODE","features":[116]},{"name":"WS_CHANNEL_PROPERTY_TRANSPORT_URL","features":[116]},{"name":"WS_CHANNEL_PROPERTY_TRIM_BUFFERED_MESSAGE_SIZE","features":[116]},{"name":"WS_CHANNEL_STATE","features":[116]},{"name":"WS_CHANNEL_STATE_ACCEPTING","features":[116]},{"name":"WS_CHANNEL_STATE_CLOSED","features":[116]},{"name":"WS_CHANNEL_STATE_CLOSING","features":[116]},{"name":"WS_CHANNEL_STATE_CREATED","features":[116]},{"name":"WS_CHANNEL_STATE_FAULTED","features":[116]},{"name":"WS_CHANNEL_STATE_OPEN","features":[116]},{"name":"WS_CHANNEL_STATE_OPENING","features":[116]},{"name":"WS_CHANNEL_TYPE","features":[116]},{"name":"WS_CHANNEL_TYPE_DUPLEX","features":[116]},{"name":"WS_CHANNEL_TYPE_DUPLEX_SESSION","features":[116]},{"name":"WS_CHANNEL_TYPE_INPUT","features":[116]},{"name":"WS_CHANNEL_TYPE_INPUT_SESSION","features":[116]},{"name":"WS_CHANNEL_TYPE_OUTPUT","features":[116]},{"name":"WS_CHANNEL_TYPE_OUTPUT_SESSION","features":[116]},{"name":"WS_CHANNEL_TYPE_REPLY","features":[116]},{"name":"WS_CHANNEL_TYPE_REQUEST","features":[116]},{"name":"WS_CHANNEL_TYPE_SESSION","features":[116]},{"name":"WS_CHARSET","features":[116]},{"name":"WS_CHARSET_AUTO","features":[116]},{"name":"WS_CHARSET_UTF16BE","features":[116]},{"name":"WS_CHARSET_UTF16LE","features":[116]},{"name":"WS_CHARSET_UTF8","features":[116]},{"name":"WS_CHAR_ARRAY_DESCRIPTION","features":[116]},{"name":"WS_CHAR_ARRAY_TYPE","features":[116]},{"name":"WS_CLOSE_CHANNEL_CALLBACK","features":[116]},{"name":"WS_CLOSE_LISTENER_CALLBACK","features":[116]},{"name":"WS_CONTRACT_DESCRIPTION","features":[1,116]},{"name":"WS_COOKIE_MODE","features":[116]},{"name":"WS_CREATE_CHANNEL_CALLBACK","features":[116]},{"name":"WS_CREATE_CHANNEL_FOR_LISTENER_CALLBACK","features":[116]},{"name":"WS_CREATE_DECODER_CALLBACK","features":[116]},{"name":"WS_CREATE_ENCODER_CALLBACK","features":[116]},{"name":"WS_CREATE_LISTENER_CALLBACK","features":[116]},{"name":"WS_CUSTOM_CERT_CREDENTIAL","features":[1,116,23,68]},{"name":"WS_CUSTOM_CERT_CREDENTIAL_TYPE","features":[116]},{"name":"WS_CUSTOM_CHANNEL_BINDING","features":[116]},{"name":"WS_CUSTOM_CHANNEL_CALLBACKS","features":[116]},{"name":"WS_CUSTOM_HTTP_PROXY","features":[116]},{"name":"WS_CUSTOM_LISTENER_CALLBACKS","features":[116]},{"name":"WS_CUSTOM_TYPE","features":[116]},{"name":"WS_CUSTOM_TYPE_DESCRIPTION","features":[1,116]},{"name":"WS_DATETIME","features":[116]},{"name":"WS_DATETIME_DESCRIPTION","features":[116]},{"name":"WS_DATETIME_FORMAT","features":[116]},{"name":"WS_DATETIME_FORMAT_LOCAL","features":[116]},{"name":"WS_DATETIME_FORMAT_NONE","features":[116]},{"name":"WS_DATETIME_FORMAT_UTC","features":[116]},{"name":"WS_DATETIME_TYPE","features":[116]},{"name":"WS_DATETIME_VALUE_TYPE","features":[116]},{"name":"WS_DECIMAL_DESCRIPTION","features":[1,116]},{"name":"WS_DECIMAL_TYPE","features":[116]},{"name":"WS_DECIMAL_VALUE_TYPE","features":[116]},{"name":"WS_DECODER_DECODE_CALLBACK","features":[116]},{"name":"WS_DECODER_END_CALLBACK","features":[116]},{"name":"WS_DECODER_GET_CONTENT_TYPE_CALLBACK","features":[116]},{"name":"WS_DECODER_START_CALLBACK","features":[116]},{"name":"WS_DEFAULT_VALUE","features":[116]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[116]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[116]},{"name":"WS_DESCRIPTION_TYPE","features":[116]},{"name":"WS_DISALLOWED_USER_AGENT_SUBSTRINGS","features":[116]},{"name":"WS_DNS_ENDPOINT_IDENTITY","features":[116]},{"name":"WS_DNS_ENDPOINT_IDENTITY_TYPE","features":[116]},{"name":"WS_DOUBLE_DESCRIPTION","features":[116]},{"name":"WS_DOUBLE_TYPE","features":[116]},{"name":"WS_DOUBLE_VALUE_TYPE","features":[116]},{"name":"WS_DUPLICATE_MESSAGE","features":[116]},{"name":"WS_DURATION","features":[1,116]},{"name":"WS_DURATION_COMPARISON_CALLBACK","features":[1,116]},{"name":"WS_DURATION_DESCRIPTION","features":[1,116]},{"name":"WS_DURATION_TYPE","features":[116]},{"name":"WS_DURATION_VALUE_TYPE","features":[116]},{"name":"WS_DYNAMIC_STRING_CALLBACK","features":[1,116]},{"name":"WS_ELEMENT_CHOICE_FIELD_MAPPING","features":[116]},{"name":"WS_ELEMENT_CONTENT_TYPE_MAPPING","features":[116]},{"name":"WS_ELEMENT_DESCRIPTION","features":[1,116]},{"name":"WS_ELEMENT_FIELD_MAPPING","features":[116]},{"name":"WS_ELEMENT_TYPE_MAPPING","features":[116]},{"name":"WS_ENCODER_ENCODE_CALLBACK","features":[116]},{"name":"WS_ENCODER_END_CALLBACK","features":[116]},{"name":"WS_ENCODER_GET_CONTENT_TYPE_CALLBACK","features":[116]},{"name":"WS_ENCODER_START_CALLBACK","features":[116]},{"name":"WS_ENCODING","features":[116]},{"name":"WS_ENCODING_RAW","features":[116]},{"name":"WS_ENCODING_XML_BINARY_1","features":[116]},{"name":"WS_ENCODING_XML_BINARY_SESSION_1","features":[116]},{"name":"WS_ENCODING_XML_MTOM_UTF16BE","features":[116]},{"name":"WS_ENCODING_XML_MTOM_UTF16LE","features":[116]},{"name":"WS_ENCODING_XML_MTOM_UTF8","features":[116]},{"name":"WS_ENCODING_XML_UTF16BE","features":[116]},{"name":"WS_ENCODING_XML_UTF16LE","features":[116]},{"name":"WS_ENCODING_XML_UTF8","features":[116]},{"name":"WS_ENDPOINT_ADDRESS","features":[116]},{"name":"WS_ENDPOINT_ADDRESS_DESCRIPTION","features":[116]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_METADATA_ADDRESS","features":[116]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_TYPE","features":[116]},{"name":"WS_ENDPOINT_ADDRESS_TYPE","features":[116]},{"name":"WS_ENDPOINT_IDENTITY","features":[116]},{"name":"WS_ENDPOINT_IDENTITY_TYPE","features":[116]},{"name":"WS_ENDPOINT_POLICY_EXTENSION","features":[1,116]},{"name":"WS_ENDPOINT_POLICY_EXTENSION_TYPE","features":[116]},{"name":"WS_ENUM_DESCRIPTION","features":[1,116]},{"name":"WS_ENUM_TYPE","features":[116]},{"name":"WS_ENUM_VALUE","features":[1,116]},{"name":"WS_ENVELOPE_VERSION","features":[116]},{"name":"WS_ENVELOPE_VERSION_NONE","features":[116]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_1","features":[116]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_2","features":[116]},{"name":"WS_ERROR","features":[116]},{"name":"WS_ERROR_PROPERTY","features":[116]},{"name":"WS_ERROR_PROPERTY_ID","features":[116]},{"name":"WS_ERROR_PROPERTY_LANGID","features":[116]},{"name":"WS_ERROR_PROPERTY_ORIGINAL_ERROR_CODE","features":[116]},{"name":"WS_ERROR_PROPERTY_STRING_COUNT","features":[116]},{"name":"WS_EXCEPTION_CODE","features":[116]},{"name":"WS_EXCEPTION_CODE_INTERNAL_FAILURE","features":[116]},{"name":"WS_EXCEPTION_CODE_USAGE_FAILURE","features":[116]},{"name":"WS_EXCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[116]},{"name":"WS_EXCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[116]},{"name":"WS_EXTENDED_PROTECTION_POLICY","features":[116]},{"name":"WS_EXTENDED_PROTECTION_POLICY_ALWAYS","features":[116]},{"name":"WS_EXTENDED_PROTECTION_POLICY_NEVER","features":[116]},{"name":"WS_EXTENDED_PROTECTION_POLICY_WHEN_SUPPORTED","features":[116]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO","features":[116]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_BOUND_SERVER","features":[116]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_TERMINATED_SSL","features":[116]},{"name":"WS_FAULT","features":[1,116]},{"name":"WS_FAULT_CODE","features":[1,116]},{"name":"WS_FAULT_DESCRIPTION","features":[116]},{"name":"WS_FAULT_DETAIL_DESCRIPTION","features":[1,116]},{"name":"WS_FAULT_DISCLOSURE","features":[116]},{"name":"WS_FAULT_ERROR_PROPERTY_ACTION","features":[116]},{"name":"WS_FAULT_ERROR_PROPERTY_FAULT","features":[116]},{"name":"WS_FAULT_ERROR_PROPERTY_HEADER","features":[116]},{"name":"WS_FAULT_ERROR_PROPERTY_ID","features":[116]},{"name":"WS_FAULT_MESSAGE","features":[116]},{"name":"WS_FAULT_REASON","features":[116]},{"name":"WS_FAULT_TO_HEADER","features":[116]},{"name":"WS_FAULT_TYPE","features":[116]},{"name":"WS_FIELD_DESCRIPTION","features":[1,116]},{"name":"WS_FIELD_MAPPING","features":[116]},{"name":"WS_FIELD_NILLABLE","features":[116]},{"name":"WS_FIELD_NILLABLE_ITEM","features":[116]},{"name":"WS_FIELD_OPTIONAL","features":[116]},{"name":"WS_FIELD_OTHER_NAMESPACE","features":[116]},{"name":"WS_FIELD_POINTER","features":[116]},{"name":"WS_FLOAT_DESCRIPTION","features":[116]},{"name":"WS_FLOAT_TYPE","features":[116]},{"name":"WS_FLOAT_VALUE_TYPE","features":[116]},{"name":"WS_FREE_CHANNEL_CALLBACK","features":[116]},{"name":"WS_FREE_DECODER_CALLBACK","features":[116]},{"name":"WS_FREE_ENCODER_CALLBACK","features":[116]},{"name":"WS_FREE_LISTENER_CALLBACK","features":[116]},{"name":"WS_FROM_HEADER","features":[116]},{"name":"WS_FULL_FAULT_DISCLOSURE","features":[116]},{"name":"WS_GET_CERT_CALLBACK","features":[1,116,68]},{"name":"WS_GET_CHANNEL_PROPERTY_CALLBACK","features":[116]},{"name":"WS_GET_LISTENER_PROPERTY_CALLBACK","features":[116]},{"name":"WS_GUID_DESCRIPTION","features":[116]},{"name":"WS_GUID_TYPE","features":[116]},{"name":"WS_GUID_VALUE_TYPE","features":[116]},{"name":"WS_HEADER_TYPE","features":[116]},{"name":"WS_HEAP","features":[116]},{"name":"WS_HEAP_PROPERTIES","features":[116]},{"name":"WS_HEAP_PROPERTY","features":[116]},{"name":"WS_HEAP_PROPERTY_ACTUAL_SIZE","features":[116]},{"name":"WS_HEAP_PROPERTY_ID","features":[116]},{"name":"WS_HEAP_PROPERTY_MAX_SIZE","features":[116]},{"name":"WS_HEAP_PROPERTY_REQUESTED_SIZE","features":[116]},{"name":"WS_HEAP_PROPERTY_TRIM_SIZE","features":[116]},{"name":"WS_HOST_NAMES","features":[116]},{"name":"WS_HTTPS_URL","features":[116]},{"name":"WS_HTTP_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_CHANNEL_BINDING","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_BASIC","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_DIGEST","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NEGOTIATE","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NONE","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NTLM","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_PASSPORT","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_TARGET","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_PROXY","features":[116]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_SERVICE","features":[116]},{"name":"WS_HTTP_HEADER_MAPPING","features":[1,116]},{"name":"WS_HTTP_HEADER_MAPPING_COMMA_SEPARATOR","features":[116]},{"name":"WS_HTTP_HEADER_MAPPING_QUOTED_VALUE","features":[116]},{"name":"WS_HTTP_HEADER_MAPPING_SEMICOLON_SEPARATOR","features":[116]},{"name":"WS_HTTP_MESSAGE_MAPPING","features":[1,116]},{"name":"WS_HTTP_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_PROXY_SETTING_MODE","features":[116]},{"name":"WS_HTTP_PROXY_SETTING_MODE_AUTO","features":[116]},{"name":"WS_HTTP_PROXY_SETTING_MODE_CUSTOM","features":[116]},{"name":"WS_HTTP_PROXY_SETTING_MODE_NONE","features":[116]},{"name":"WS_HTTP_REDIRECT_CALLBACK","features":[116]},{"name":"WS_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[116]},{"name":"WS_HTTP_REQUEST_MAPPING_VERB","features":[116]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_CODE","features":[116]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_TEXT","features":[116]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_SSL_HEADER_AUTH_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_SSL_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_SSL_USERNAME_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[116]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[116]},{"name":"WS_HTTP_URL","features":[116]},{"name":"WS_INCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[116]},{"name":"WS_INCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[116]},{"name":"WS_INT16_DESCRIPTION","features":[116]},{"name":"WS_INT16_TYPE","features":[116]},{"name":"WS_INT16_VALUE_TYPE","features":[116]},{"name":"WS_INT32_DESCRIPTION","features":[116]},{"name":"WS_INT32_TYPE","features":[116]},{"name":"WS_INT32_VALUE_TYPE","features":[116]},{"name":"WS_INT64_DESCRIPTION","features":[116]},{"name":"WS_INT64_TYPE","features":[116]},{"name":"WS_INT64_VALUE_TYPE","features":[116]},{"name":"WS_INT8_DESCRIPTION","features":[116]},{"name":"WS_INT8_TYPE","features":[116]},{"name":"WS_INT8_VALUE_TYPE","features":[116]},{"name":"WS_IP_VERSION","features":[116]},{"name":"WS_IP_VERSION_4","features":[116]},{"name":"WS_IP_VERSION_6","features":[116]},{"name":"WS_IP_VERSION_AUTO","features":[116]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[1,116]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_IS_DEFAULT_VALUE_CALLBACK","features":[1,116]},{"name":"WS_ITEM_RANGE","features":[116]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING","features":[116]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[116]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[116]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[116]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_LISTENER","features":[116]},{"name":"WS_LISTENER_PROPERTIES","features":[116]},{"name":"WS_LISTENER_PROPERTY","features":[116]},{"name":"WS_LISTENER_PROPERTY_ASYNC_CALLBACK_MODEL","features":[116]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_BINDING","features":[116]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_TYPE","features":[116]},{"name":"WS_LISTENER_PROPERTY_CLOSE_TIMEOUT","features":[116]},{"name":"WS_LISTENER_PROPERTY_CONNECT_TIMEOUT","features":[116]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_CALLBACKS","features":[116]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_INSTANCE","features":[116]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_PARAMETERS","features":[116]},{"name":"WS_LISTENER_PROPERTY_DISALLOWED_USER_AGENT","features":[116]},{"name":"WS_LISTENER_PROPERTY_ID","features":[116]},{"name":"WS_LISTENER_PROPERTY_IP_VERSION","features":[116]},{"name":"WS_LISTENER_PROPERTY_IS_MULTICAST","features":[116]},{"name":"WS_LISTENER_PROPERTY_LISTEN_BACKLOG","features":[116]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_INTERFACES","features":[116]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_LOOPBACK","features":[116]},{"name":"WS_LISTENER_PROPERTY_STATE","features":[116]},{"name":"WS_LISTENER_PROPERTY_TO_HEADER_MATCHING_OPTIONS","features":[116]},{"name":"WS_LISTENER_PROPERTY_TRANSPORT_URL_MATCHING_OPTIONS","features":[116]},{"name":"WS_LISTENER_STATE","features":[116]},{"name":"WS_LISTENER_STATE_CLOSED","features":[116]},{"name":"WS_LISTENER_STATE_CLOSING","features":[116]},{"name":"WS_LISTENER_STATE_CREATED","features":[116]},{"name":"WS_LISTENER_STATE_FAULTED","features":[116]},{"name":"WS_LISTENER_STATE_OPEN","features":[116]},{"name":"WS_LISTENER_STATE_OPENING","features":[116]},{"name":"WS_LONG_CALLBACK","features":[116]},{"name":"WS_MANUAL_COOKIE_MODE","features":[116]},{"name":"WS_MATCH_URL_DNS_FULLY_QUALIFIED_HOST","features":[116]},{"name":"WS_MATCH_URL_DNS_HOST","features":[116]},{"name":"WS_MATCH_URL_EXACT_PATH","features":[116]},{"name":"WS_MATCH_URL_HOST_ADDRESSES","features":[116]},{"name":"WS_MATCH_URL_LOCAL_HOST","features":[116]},{"name":"WS_MATCH_URL_NETBIOS_HOST","features":[116]},{"name":"WS_MATCH_URL_NO_QUERY","features":[116]},{"name":"WS_MATCH_URL_PORT","features":[116]},{"name":"WS_MATCH_URL_PREFIX_PATH","features":[116]},{"name":"WS_MATCH_URL_THIS_HOST","features":[116]},{"name":"WS_MESSAGE","features":[116]},{"name":"WS_MESSAGE_DESCRIPTION","features":[1,116]},{"name":"WS_MESSAGE_DONE_CALLBACK","features":[116]},{"name":"WS_MESSAGE_ID_HEADER","features":[116]},{"name":"WS_MESSAGE_INITIALIZATION","features":[116]},{"name":"WS_MESSAGE_PROPERTIES","features":[116]},{"name":"WS_MESSAGE_PROPERTY","features":[116]},{"name":"WS_MESSAGE_PROPERTY_ADDRESSING_VERSION","features":[116]},{"name":"WS_MESSAGE_PROPERTY_BODY_READER","features":[116]},{"name":"WS_MESSAGE_PROPERTY_BODY_WRITER","features":[116]},{"name":"WS_MESSAGE_PROPERTY_ENCODED_CERT","features":[116]},{"name":"WS_MESSAGE_PROPERTY_ENVELOPE_VERSION","features":[116]},{"name":"WS_MESSAGE_PROPERTY_HEADER_BUFFER","features":[116]},{"name":"WS_MESSAGE_PROPERTY_HEADER_POSITION","features":[116]},{"name":"WS_MESSAGE_PROPERTY_HEAP","features":[116]},{"name":"WS_MESSAGE_PROPERTY_HEAP_PROPERTIES","features":[116]},{"name":"WS_MESSAGE_PROPERTY_HTTP_HEADER_AUTH_WINDOWS_TOKEN","features":[116]},{"name":"WS_MESSAGE_PROPERTY_ID","features":[116]},{"name":"WS_MESSAGE_PROPERTY_IS_ADDRESSED","features":[116]},{"name":"WS_MESSAGE_PROPERTY_IS_FAULT","features":[116]},{"name":"WS_MESSAGE_PROPERTY_MAX_PROCESSED_HEADERS","features":[116]},{"name":"WS_MESSAGE_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[116]},{"name":"WS_MESSAGE_PROPERTY_PROTECTION_LEVEL","features":[116]},{"name":"WS_MESSAGE_PROPERTY_SAML_ASSERTION","features":[116]},{"name":"WS_MESSAGE_PROPERTY_SECURITY_CONTEXT","features":[116]},{"name":"WS_MESSAGE_PROPERTY_STATE","features":[116]},{"name":"WS_MESSAGE_PROPERTY_TRANSPORT_SECURITY_WINDOWS_TOKEN","features":[116]},{"name":"WS_MESSAGE_PROPERTY_USERNAME","features":[116]},{"name":"WS_MESSAGE_PROPERTY_XML_READER_PROPERTIES","features":[116]},{"name":"WS_MESSAGE_PROPERTY_XML_WRITER_PROPERTIES","features":[116]},{"name":"WS_MESSAGE_SECURITY_USAGE","features":[116]},{"name":"WS_MESSAGE_STATE","features":[116]},{"name":"WS_MESSAGE_STATE_DONE","features":[116]},{"name":"WS_MESSAGE_STATE_EMPTY","features":[116]},{"name":"WS_MESSAGE_STATE_INITIALIZED","features":[116]},{"name":"WS_MESSAGE_STATE_READING","features":[116]},{"name":"WS_MESSAGE_STATE_WRITING","features":[116]},{"name":"WS_METADATA","features":[116]},{"name":"WS_METADATA_ENDPOINT","features":[1,116]},{"name":"WS_METADATA_ENDPOINTS","features":[1,116]},{"name":"WS_METADATA_EXCHANGE_TYPE","features":[116]},{"name":"WS_METADATA_EXCHANGE_TYPE_HTTP_GET","features":[116]},{"name":"WS_METADATA_EXCHANGE_TYPE_MEX","features":[116]},{"name":"WS_METADATA_EXCHANGE_TYPE_NONE","features":[116]},{"name":"WS_METADATA_PROPERTY","features":[116]},{"name":"WS_METADATA_PROPERTY_HEAP_PROPERTIES","features":[116]},{"name":"WS_METADATA_PROPERTY_HEAP_REQUESTED_SIZE","features":[116]},{"name":"WS_METADATA_PROPERTY_HOST_NAMES","features":[116]},{"name":"WS_METADATA_PROPERTY_ID","features":[116]},{"name":"WS_METADATA_PROPERTY_MAX_DOCUMENTS","features":[116]},{"name":"WS_METADATA_PROPERTY_POLICY_PROPERTIES","features":[116]},{"name":"WS_METADATA_PROPERTY_STATE","features":[116]},{"name":"WS_METADATA_PROPERTY_VERIFY_HOST_NAMES","features":[116]},{"name":"WS_METADATA_STATE","features":[116]},{"name":"WS_METADATA_STATE_CREATED","features":[116]},{"name":"WS_METADATA_STATE_FAULTED","features":[116]},{"name":"WS_METADATA_STATE_RESOLVED","features":[116]},{"name":"WS_MINIMAL_FAULT_DISCLOSURE","features":[116]},{"name":"WS_MOVE_TO","features":[116]},{"name":"WS_MOVE_TO_BOF","features":[116]},{"name":"WS_MOVE_TO_CHILD_ELEMENT","features":[116]},{"name":"WS_MOVE_TO_CHILD_NODE","features":[116]},{"name":"WS_MOVE_TO_END_ELEMENT","features":[116]},{"name":"WS_MOVE_TO_EOF","features":[116]},{"name":"WS_MOVE_TO_FIRST_NODE","features":[116]},{"name":"WS_MOVE_TO_NEXT_ELEMENT","features":[116]},{"name":"WS_MOVE_TO_NEXT_NODE","features":[116]},{"name":"WS_MOVE_TO_PARENT_ELEMENT","features":[116]},{"name":"WS_MOVE_TO_PREVIOUS_ELEMENT","features":[116]},{"name":"WS_MOVE_TO_PREVIOUS_NODE","features":[116]},{"name":"WS_MOVE_TO_ROOT_ELEMENT","features":[116]},{"name":"WS_MUST_UNDERSTAND_HEADER_ATTRIBUTE","features":[116]},{"name":"WS_NAMEDPIPE_CHANNEL_BINDING","features":[116]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING","features":[116]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[116,68]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[116]},{"name":"WS_NETPIPE_URL","features":[116]},{"name":"WS_NETTCP_URL","features":[116]},{"name":"WS_NON_RPC_LITERAL_OPERATION","features":[116]},{"name":"WS_NO_FIELD_MAPPING","features":[116]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[116]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[116]},{"name":"WS_OPEN_CHANNEL_CALLBACK","features":[116]},{"name":"WS_OPEN_LISTENER_CALLBACK","features":[116]},{"name":"WS_OPERATION_CANCEL_CALLBACK","features":[116]},{"name":"WS_OPERATION_CONTEXT","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL_USER_STATE","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CONTRACT_DESCRIPTION","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ENDPOINT_ADDRESS","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HEAP","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HOST_USER_STATE","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ID","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_INPUT_MESSAGE","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_LISTENER","features":[116]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_OUTPUT_MESSAGE","features":[116]},{"name":"WS_OPERATION_DESCRIPTION","features":[1,116]},{"name":"WS_OPERATION_FREE_STATE_CALLBACK","features":[116]},{"name":"WS_OPERATION_STYLE","features":[116]},{"name":"WS_PARAMETER_DESCRIPTION","features":[116]},{"name":"WS_PARAMETER_TYPE","features":[116]},{"name":"WS_PARAMETER_TYPE_ARRAY","features":[116]},{"name":"WS_PARAMETER_TYPE_ARRAY_COUNT","features":[116]},{"name":"WS_PARAMETER_TYPE_MESSAGES","features":[116]},{"name":"WS_PARAMETER_TYPE_NORMAL","features":[116]},{"name":"WS_POLICY","features":[116]},{"name":"WS_POLICY_CONSTRAINTS","features":[116]},{"name":"WS_POLICY_EXTENSION","features":[116]},{"name":"WS_POLICY_EXTENSION_TYPE","features":[116]},{"name":"WS_POLICY_PROPERTIES","features":[116]},{"name":"WS_POLICY_PROPERTY","features":[116]},{"name":"WS_POLICY_PROPERTY_ID","features":[116]},{"name":"WS_POLICY_PROPERTY_MAX_ALTERNATIVES","features":[116]},{"name":"WS_POLICY_PROPERTY_MAX_DEPTH","features":[116]},{"name":"WS_POLICY_PROPERTY_MAX_EXTENSIONS","features":[116]},{"name":"WS_POLICY_PROPERTY_STATE","features":[116]},{"name":"WS_POLICY_STATE","features":[116]},{"name":"WS_POLICY_STATE_CREATED","features":[116]},{"name":"WS_POLICY_STATE_FAULTED","features":[116]},{"name":"WS_PROTECTION_LEVEL","features":[116]},{"name":"WS_PROTECTION_LEVEL_NONE","features":[116]},{"name":"WS_PROTECTION_LEVEL_SIGN","features":[116]},{"name":"WS_PROTECTION_LEVEL_SIGN_AND_ENCRYPT","features":[116]},{"name":"WS_PROXY_FAULT_LANG_ID","features":[116]},{"name":"WS_PROXY_MESSAGE_CALLBACK","features":[116]},{"name":"WS_PROXY_MESSAGE_CALLBACK_CONTEXT","features":[116]},{"name":"WS_PROXY_PROPERTY","features":[116]},{"name":"WS_PROXY_PROPERTY_CALL_TIMEOUT","features":[116]},{"name":"WS_PROXY_PROPERTY_ID","features":[116]},{"name":"WS_PROXY_PROPERTY_MAX_CALL_POOL_SIZE","features":[116]},{"name":"WS_PROXY_PROPERTY_MAX_CLOSE_TIMEOUT","features":[116]},{"name":"WS_PROXY_PROPERTY_MAX_PENDING_CALLS","features":[116]},{"name":"WS_PROXY_PROPERTY_MESSAGE_PROPERTIES","features":[116]},{"name":"WS_PROXY_PROPERTY_STATE","features":[116]},{"name":"WS_PULL_BYTES_CALLBACK","features":[116]},{"name":"WS_PUSH_BYTES_CALLBACK","features":[116]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE","features":[116]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[116]},{"name":"WS_READ_CALLBACK","features":[116]},{"name":"WS_READ_MESSAGE_END_CALLBACK","features":[116]},{"name":"WS_READ_MESSAGE_START_CALLBACK","features":[116]},{"name":"WS_READ_NILLABLE_POINTER","features":[116]},{"name":"WS_READ_NILLABLE_VALUE","features":[116]},{"name":"WS_READ_OPTION","features":[116]},{"name":"WS_READ_OPTIONAL_POINTER","features":[116]},{"name":"WS_READ_REQUIRED_POINTER","features":[116]},{"name":"WS_READ_REQUIRED_VALUE","features":[116]},{"name":"WS_READ_TYPE_CALLBACK","features":[116]},{"name":"WS_RECEIVE_OPTION","features":[116]},{"name":"WS_RECEIVE_OPTIONAL_MESSAGE","features":[116]},{"name":"WS_RECEIVE_REQUIRED_MESSAGE","features":[116]},{"name":"WS_RELATES_TO_HEADER","features":[116]},{"name":"WS_RELAY_HEADER_ATTRIBUTE","features":[116]},{"name":"WS_REPEATING_ANY_ELEMENT_FIELD_MAPPING","features":[116]},{"name":"WS_REPEATING_ELEMENT_CHOICE_FIELD_MAPPING","features":[116]},{"name":"WS_REPEATING_ELEMENT_FIELD_MAPPING","features":[116]},{"name":"WS_REPEATING_HEADER","features":[116]},{"name":"WS_REPEATING_HEADER_OPTION","features":[116]},{"name":"WS_REPLY_MESSAGE","features":[116]},{"name":"WS_REPLY_TO_HEADER","features":[116]},{"name":"WS_REQUEST_MESSAGE","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_ISSUE","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_NEW_CONTEXT","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_RENEW_CONTEXT","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_APPLIES_TO","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_BEARER_KEY_TYPE_VERSION","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_CONSTRAINT","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_EXISTING_TOKEN","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ID","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_ENTROPY","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_SIZE","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_TYPE","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_TYPE","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_LOCAL_REQUEST_PARAMETERS","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_MESSAGE_PROPERTIES","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_REQUEST_ACTION","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SECURE_CONVERSATION_VERSION","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SERVICE_REQUEST_PARAMETERS","features":[116]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_TRUST_VERSION","features":[116]},{"name":"WS_RESET_CHANNEL_CALLBACK","features":[116]},{"name":"WS_RESET_LISTENER_CALLBACK","features":[116]},{"name":"WS_RPC_LITERAL_OPERATION","features":[116]},{"name":"WS_RSA_ENDPOINT_IDENTITY","features":[116]},{"name":"WS_RSA_ENDPOINT_IDENTITY_TYPE","features":[116]},{"name":"WS_SAML_AUTHENTICATOR","features":[116]},{"name":"WS_SAML_AUTHENTICATOR_TYPE","features":[116]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING","features":[116]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_SECURE_CONVERSATION_VERSION","features":[116]},{"name":"WS_SECURE_CONVERSATION_VERSION_1_3","features":[116]},{"name":"WS_SECURE_CONVERSATION_VERSION_FEBRUARY_2005","features":[116]},{"name":"WS_SECURE_PROTOCOL","features":[116]},{"name":"WS_SECURE_PROTOCOL_SSL2","features":[116]},{"name":"WS_SECURE_PROTOCOL_SSL3","features":[116]},{"name":"WS_SECURE_PROTOCOL_TLS1_0","features":[116]},{"name":"WS_SECURE_PROTOCOL_TLS1_1","features":[116]},{"name":"WS_SECURE_PROTOCOL_TLS1_2","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_1_5","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_OAEP","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_DSA_SHA1","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA1","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_256","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_384","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_512","features":[116]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE","features":[116]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE_WITH_COMMENTS","features":[116]},{"name":"WS_SECURITY_ALGORITHM_DEFAULT","features":[116]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA1","features":[116]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_256","features":[116]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_384","features":[116]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_512","features":[116]},{"name":"WS_SECURITY_ALGORITHM_ID","features":[116]},{"name":"WS_SECURITY_ALGORITHM_KEY_DERIVATION_P_SHA1","features":[116]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY","features":[116]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY_ID","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_RSA15","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256_RSA15","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_RSA15","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256_RSA15","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_RSA15","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256_RSA15","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA1","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_256","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_384","features":[116]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_512","features":[116]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION","features":[116]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ERRATA_01","features":[116]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SCHEMA","features":[116]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SPECIFICATION","features":[116]},{"name":"WS_SECURITY_BINDING","features":[116]},{"name":"WS_SECURITY_BINDING_CONSTRAINT","features":[116]},{"name":"WS_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTIES","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOWED_IMPERSONATION_LEVEL","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOW_ANONYMOUS_CLIENTS","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERT_FAILURES_TO_IGNORE","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_CONSTRAINT","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISABLE_CERT_REVOCATION_CHECK","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISALLOWED_SECURE_PROTOCOLS","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_BASIC_REALM","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_DOMAIN","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_REALM","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_SCHEME","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_TARGET","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_ID","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_MESSAGE_PROPERTIES","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SERVER_AUTH","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SSL_CLIENT_CERT","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURE_CONVERSATION_VERSION","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_ENTROPY_MODE","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_SIZE","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_ACTIVE_CONTEXTS","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_PENDING_CONTEXTS","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_RENEWAL_INTERVAL","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_ROLLOVER_INTERVAL","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_SUPPORT_RENEW","features":[116]},{"name":"WS_SECURITY_BINDING_PROPERTY_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[116]},{"name":"WS_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_SECURITY_CONSTRAINTS","features":[116]},{"name":"WS_SECURITY_CONTEXT","features":[116]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING","features":[116]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[116]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[116]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[116]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_SECURITY_CONTEXT_PROPERTY","features":[116]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_ID","features":[116]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_IDENTIFIER","features":[116]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[116]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_SAML_ASSERTION","features":[116]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_USERNAME","features":[116]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[116]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_TEMPLATE","features":[116]},{"name":"WS_SECURITY_DESCRIPTION","features":[116]},{"name":"WS_SECURITY_HEADER_LAYOUT","features":[116]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX","features":[116]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_FIRST","features":[116]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_LAST","features":[116]},{"name":"WS_SECURITY_HEADER_LAYOUT_STRICT","features":[116]},{"name":"WS_SECURITY_HEADER_VERSION","features":[116]},{"name":"WS_SECURITY_HEADER_VERSION_1_0","features":[116]},{"name":"WS_SECURITY_HEADER_VERSION_1_1","features":[116]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE","features":[116]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_CLIENT_ONLY","features":[116]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_COMBINED","features":[116]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_SERVER_ONLY","features":[116]},{"name":"WS_SECURITY_KEY_HANDLE","features":[116]},{"name":"WS_SECURITY_KEY_HANDLE_TYPE","features":[116]},{"name":"WS_SECURITY_KEY_TYPE","features":[116]},{"name":"WS_SECURITY_KEY_TYPE_ASYMMETRIC","features":[116]},{"name":"WS_SECURITY_KEY_TYPE_NONE","features":[116]},{"name":"WS_SECURITY_KEY_TYPE_SYMMETRIC","features":[116]},{"name":"WS_SECURITY_PROPERTIES","features":[116]},{"name":"WS_SECURITY_PROPERTY","features":[116]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE","features":[116]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE_NAME","features":[116]},{"name":"WS_SECURITY_PROPERTY_CONSTRAINT","features":[116]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_POLICY","features":[116]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_SCENARIO","features":[116]},{"name":"WS_SECURITY_PROPERTY_ID","features":[116]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_CLOCK_SKEW","features":[116]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_LATENCY","features":[116]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_LAYOUT","features":[116]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_VERSION","features":[116]},{"name":"WS_SECURITY_PROPERTY_SERVICE_IDENTITIES","features":[116]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_USAGE","features":[116]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_VALIDITY_DURATION","features":[116]},{"name":"WS_SECURITY_PROPERTY_TRANSPORT_PROTECTION_LEVEL","features":[116]},{"name":"WS_SECURITY_TIMESTAMP_USAGE","features":[116]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_ALWAYS","features":[116]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_NEVER","features":[116]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_REQUESTS_ONLY","features":[116]},{"name":"WS_SECURITY_TOKEN","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE_XML","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ID","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_KEY_TYPE","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SERIALIZED_XML","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SYMMETRIC_KEY","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE_XML","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[116]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[116]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE","features":[116]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_CERT_THUMBPRINT","features":[116]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_LOCAL_ID","features":[116]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SAML_ASSERTION_ID","features":[116]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SECURITY_CONTEXT_ID","features":[116]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_XML_BUFFER","features":[116]},{"name":"WS_SERVICE_ACCEPT_CHANNEL_CALLBACK","features":[116]},{"name":"WS_SERVICE_CANCEL_REASON","features":[116]},{"name":"WS_SERVICE_CHANNEL_FAULTED","features":[116]},{"name":"WS_SERVICE_CLOSE_CHANNEL_CALLBACK","features":[116]},{"name":"WS_SERVICE_CONTRACT","features":[1,116]},{"name":"WS_SERVICE_ENDPOINT","features":[1,116]},{"name":"WS_SERVICE_ENDPOINT_METADATA","features":[1,116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ACCEPT_CHANNEL_CALLBACK","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_MAX_SIZE","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_TRIM_SIZE","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CHECK_MUST_UNDERSTAND","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CLOSE_CHANNEL_CALLBACK","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ID","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_LISTENER_PROPERTIES","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_ACCEPTING_CHANNELS","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CALL_POOL_SIZE","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNELS","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNEL_POOL_SIZE","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CONCURRENCY","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MESSAGE_PROPERTIES","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_TYPE","features":[116]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_URL_SUFFIX","features":[116]},{"name":"WS_SERVICE_HOST","features":[116]},{"name":"WS_SERVICE_HOST_ABORT","features":[116]},{"name":"WS_SERVICE_HOST_STATE","features":[116]},{"name":"WS_SERVICE_HOST_STATE_CLOSED","features":[116]},{"name":"WS_SERVICE_HOST_STATE_CLOSING","features":[116]},{"name":"WS_SERVICE_HOST_STATE_CREATED","features":[116]},{"name":"WS_SERVICE_HOST_STATE_FAULTED","features":[116]},{"name":"WS_SERVICE_HOST_STATE_OPEN","features":[116]},{"name":"WS_SERVICE_HOST_STATE_OPENING","features":[116]},{"name":"WS_SERVICE_MESSAGE_RECEIVE_CALLBACK","features":[116]},{"name":"WS_SERVICE_METADATA","features":[1,116]},{"name":"WS_SERVICE_METADATA_DOCUMENT","features":[1,116]},{"name":"WS_SERVICE_OPERATION_MESSAGE_NILLABLE_ELEMENT","features":[116]},{"name":"WS_SERVICE_PROPERTY","features":[116]},{"name":"WS_SERVICE_PROPERTY_ACCEPT_CALLBACK","features":[116]},{"name":"WS_SERVICE_PROPERTY_CLOSE_CALLBACK","features":[116]},{"name":"WS_SERVICE_PROPERTY_CLOSE_TIMEOUT","features":[116]},{"name":"WS_SERVICE_PROPERTY_FAULT_DISCLOSURE","features":[116]},{"name":"WS_SERVICE_PROPERTY_FAULT_LANGID","features":[116]},{"name":"WS_SERVICE_PROPERTY_HOST_STATE","features":[116]},{"name":"WS_SERVICE_PROPERTY_HOST_USER_STATE","features":[116]},{"name":"WS_SERVICE_PROPERTY_ID","features":[116]},{"name":"WS_SERVICE_PROPERTY_METADATA","features":[116]},{"name":"WS_SERVICE_PROXY","features":[116]},{"name":"WS_SERVICE_PROXY_STATE","features":[116]},{"name":"WS_SERVICE_PROXY_STATE_CLOSED","features":[116]},{"name":"WS_SERVICE_PROXY_STATE_CLOSING","features":[116]},{"name":"WS_SERVICE_PROXY_STATE_CREATED","features":[116]},{"name":"WS_SERVICE_PROXY_STATE_FAULTED","features":[116]},{"name":"WS_SERVICE_PROXY_STATE_OPEN","features":[116]},{"name":"WS_SERVICE_PROXY_STATE_OPENING","features":[116]},{"name":"WS_SERVICE_SECURITY_CALLBACK","features":[1,116]},{"name":"WS_SERVICE_SECURITY_IDENTITIES","features":[116]},{"name":"WS_SERVICE_STUB_CALLBACK","features":[116]},{"name":"WS_SET_CHANNEL_PROPERTY_CALLBACK","features":[116]},{"name":"WS_SET_LISTENER_PROPERTY_CALLBACK","features":[116]},{"name":"WS_SHORT_CALLBACK","features":[116]},{"name":"WS_SHUTDOWN_SESSION_CHANNEL_CALLBACK","features":[116]},{"name":"WS_SINGLETON_HEADER","features":[116]},{"name":"WS_SOAPUDP_URL","features":[116]},{"name":"WS_SPN_ENDPOINT_IDENTITY","features":[116]},{"name":"WS_SPN_ENDPOINT_IDENTITY_TYPE","features":[116]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING","features":[116]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[1,116]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[116]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[116]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_SSPI_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[116]},{"name":"WS_STREAMED_INPUT_TRANSFER_MODE","features":[116]},{"name":"WS_STREAMED_OUTPUT_TRANSFER_MODE","features":[116]},{"name":"WS_STREAMED_TRANSFER_MODE","features":[116]},{"name":"WS_STRING","features":[116]},{"name":"WS_STRING_DESCRIPTION","features":[116]},{"name":"WS_STRING_TYPE","features":[116]},{"name":"WS_STRING_USERNAME_CREDENTIAL","features":[116]},{"name":"WS_STRING_USERNAME_CREDENTIAL_TYPE","features":[116]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[116]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[116]},{"name":"WS_STRUCT_ABSTRACT","features":[116]},{"name":"WS_STRUCT_DESCRIPTION","features":[1,116]},{"name":"WS_STRUCT_IGNORE_TRAILING_ELEMENT_CONTENT","features":[116]},{"name":"WS_STRUCT_IGNORE_UNHANDLED_ATTRIBUTES","features":[116]},{"name":"WS_STRUCT_TYPE","features":[116]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL","features":[116]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL_TYPE","features":[116]},{"name":"WS_SUPPORTING_MESSAGE_SECURITY_USAGE","features":[116]},{"name":"WS_TCP_BINDING_TEMPLATE","features":[116]},{"name":"WS_TCP_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_TCP_CHANNEL_BINDING","features":[116]},{"name":"WS_TCP_POLICY_DESCRIPTION","features":[116]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE","features":[116]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE","features":[116]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[116]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[116]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[116]},{"name":"WS_TCP_SSPI_POLICY_DESCRIPTION","features":[116]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING","features":[116]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[116]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[116]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE","features":[116]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_TCP_SSPI_USERNAME_POLICY_DESCRIPTION","features":[116]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[116]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[116]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[116]},{"name":"WS_TEXT_FIELD_MAPPING","features":[116]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL","features":[116]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL_TYPE","features":[116]},{"name":"WS_TIMESPAN","features":[116]},{"name":"WS_TIMESPAN_DESCRIPTION","features":[116]},{"name":"WS_TIMESPAN_TYPE","features":[116]},{"name":"WS_TIMESPAN_VALUE_TYPE","features":[116]},{"name":"WS_TO_HEADER","features":[116]},{"name":"WS_TRACE_API","features":[116]},{"name":"WS_TRACE_API_ABANDON_MESSAGE","features":[116]},{"name":"WS_TRACE_API_ABORT_CALL","features":[116]},{"name":"WS_TRACE_API_ABORT_CHANNEL","features":[116]},{"name":"WS_TRACE_API_ABORT_LISTENER","features":[116]},{"name":"WS_TRACE_API_ABORT_SERVICE_HOST","features":[116]},{"name":"WS_TRACE_API_ABORT_SERVICE_PROXY","features":[116]},{"name":"WS_TRACE_API_ACCEPT_CHANNEL","features":[116]},{"name":"WS_TRACE_API_ADDRESS_MESSAGE","features":[116]},{"name":"WS_TRACE_API_ADD_CUSTOM_HEADER","features":[116]},{"name":"WS_TRACE_API_ADD_ERROR_STRING","features":[116]},{"name":"WS_TRACE_API_ADD_MAPPED_HEADER","features":[116]},{"name":"WS_TRACE_API_ALLOC","features":[116]},{"name":"WS_TRACE_API_ASYNC_EXECUTE","features":[116]},{"name":"WS_TRACE_API_CALL","features":[116]},{"name":"WS_TRACE_API_CHECK_MUST_UNDERSTAND_HEADERS","features":[116]},{"name":"WS_TRACE_API_CLOSE_CHANNEL","features":[116]},{"name":"WS_TRACE_API_CLOSE_LISTENER","features":[116]},{"name":"WS_TRACE_API_CLOSE_SERVICE_HOST","features":[116]},{"name":"WS_TRACE_API_CLOSE_SERVICE_PROXY","features":[116]},{"name":"WS_TRACE_API_COMBINE_URL","features":[116]},{"name":"WS_TRACE_API_COPY_ERROR","features":[116]},{"name":"WS_TRACE_API_COPY_NODE","features":[116]},{"name":"WS_TRACE_API_CREATE_CHANNEL","features":[116]},{"name":"WS_TRACE_API_CREATE_CHANNEL_FOR_LISTENER","features":[116]},{"name":"WS_TRACE_API_CREATE_ERROR","features":[116]},{"name":"WS_TRACE_API_CREATE_FAULT_FROM_ERROR","features":[116]},{"name":"WS_TRACE_API_CREATE_HEAP","features":[116]},{"name":"WS_TRACE_API_CREATE_LISTENER","features":[116]},{"name":"WS_TRACE_API_CREATE_MESSAGE","features":[116]},{"name":"WS_TRACE_API_CREATE_MESSAGE_FOR_CHANNEL","features":[116]},{"name":"WS_TRACE_API_CREATE_METADATA","features":[116]},{"name":"WS_TRACE_API_CREATE_READER","features":[116]},{"name":"WS_TRACE_API_CREATE_SERVICE_HOST","features":[116]},{"name":"WS_TRACE_API_CREATE_SERVICE_PROXY","features":[116]},{"name":"WS_TRACE_API_CREATE_WRITER","features":[116]},{"name":"WS_TRACE_API_CREATE_XML_BUFFER","features":[116]},{"name":"WS_TRACE_API_CREATE_XML_SECURITY_TOKEN","features":[116]},{"name":"WS_TRACE_API_DATETIME_TO_FILETIME","features":[116]},{"name":"WS_TRACE_API_DECODE_URL","features":[116]},{"name":"WS_TRACE_API_DUMP_MEMORY","features":[116]},{"name":"WS_TRACE_API_ENCODE_URL","features":[116]},{"name":"WS_TRACE_API_END_READER_CANONICALIZATION","features":[116]},{"name":"WS_TRACE_API_END_WRITER_CANONICALIZATION","features":[116]},{"name":"WS_TRACE_API_FILETIME_TO_DATETIME","features":[116]},{"name":"WS_TRACE_API_FILL_BODY","features":[116]},{"name":"WS_TRACE_API_FILL_READER","features":[116]},{"name":"WS_TRACE_API_FIND_ATTRIBUTE","features":[116]},{"name":"WS_TRACE_API_FLUSH_BODY","features":[116]},{"name":"WS_TRACE_API_FLUSH_WRITER","features":[116]},{"name":"WS_TRACE_API_FREE_CHANNEL","features":[116]},{"name":"WS_TRACE_API_FREE_ERROR","features":[116]},{"name":"WS_TRACE_API_FREE_HEAP","features":[116]},{"name":"WS_TRACE_API_FREE_LISTENER","features":[116]},{"name":"WS_TRACE_API_FREE_MESSAGE","features":[116]},{"name":"WS_TRACE_API_FREE_METADATA","features":[116]},{"name":"WS_TRACE_API_FREE_SECURITY_TOKEN","features":[116]},{"name":"WS_TRACE_API_FREE_SERVICE_HOST","features":[116]},{"name":"WS_TRACE_API_FREE_SERVICE_PROXY","features":[116]},{"name":"WS_TRACE_API_FREE_XML_READER","features":[116]},{"name":"WS_TRACE_API_FREE_XML_WRITER","features":[116]},{"name":"WS_TRACE_API_GET_CHANNEL_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_CONTEXT_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_CUSTOM_HEADER","features":[116]},{"name":"WS_TRACE_API_GET_DICTIONARY","features":[116]},{"name":"WS_TRACE_API_GET_ERROR_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_ERROR_STRING","features":[116]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_DETAIL","features":[116]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_HEADER","features":[116]},{"name":"WS_TRACE_API_GET_HEADER_ATTRIBUTES","features":[116]},{"name":"WS_TRACE_API_GET_HEAP_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_LISTENER_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_MAPPED_HEADER","features":[116]},{"name":"WS_TRACE_API_GET_MESSAGE_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_METADATA_ENDPOINTS","features":[116]},{"name":"WS_TRACE_API_GET_METADATA_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_MISSING_METADATA_DOCUMENT_ADDRESS","features":[116]},{"name":"WS_TRACE_API_GET_POLICY_ALTERNATIVE_COUNT","features":[116]},{"name":"WS_TRACE_API_GET_POLICY_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_READER_NODE","features":[116]},{"name":"WS_TRACE_API_GET_READER_POSITION","features":[116]},{"name":"WS_TRACE_API_GET_READER_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_SECURITY_CONTEXT_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_SECURITY_TOKEN_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_SERVICE_HOST_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_SERVICE_PROXY_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_WRITER_POSITION","features":[116]},{"name":"WS_TRACE_API_GET_WRITER_PROPERTY","features":[116]},{"name":"WS_TRACE_API_GET_XML_ATTRIBUTE","features":[116]},{"name":"WS_TRACE_API_INITIALIZE_MESSAGE","features":[116]},{"name":"WS_TRACE_API_MARK_HEADER_AS_UNDERSTOOD","features":[116]},{"name":"WS_TRACE_API_MATCH_POLICY_ALTERNATIVE","features":[116]},{"name":"WS_TRACE_API_MOVE_READER","features":[116]},{"name":"WS_TRACE_API_MOVE_WRITER","features":[116]},{"name":"WS_TRACE_API_NAMESPACE_FROM_PREFIX","features":[116]},{"name":"WS_TRACE_API_NONE","features":[116]},{"name":"WS_TRACE_API_OPEN_CHANNEL","features":[116]},{"name":"WS_TRACE_API_OPEN_LISTENER","features":[116]},{"name":"WS_TRACE_API_OPEN_SERVICE_HOST","features":[116]},{"name":"WS_TRACE_API_OPEN_SERVICE_PROXY","features":[116]},{"name":"WS_TRACE_API_PREFIX_FROM_NAMESPACE","features":[116]},{"name":"WS_TRACE_API_PULL_BYTES","features":[116]},{"name":"WS_TRACE_API_PUSH_BYTES","features":[116]},{"name":"WS_TRACE_API_READ_ARRAY","features":[116]},{"name":"WS_TRACE_API_READ_ATTRIBUTE_TYPE","features":[116]},{"name":"WS_TRACE_API_READ_BODY","features":[116]},{"name":"WS_TRACE_API_READ_BYTES","features":[116]},{"name":"WS_TRACE_API_READ_CHARS","features":[116]},{"name":"WS_TRACE_API_READ_CHARS_UTF8","features":[116]},{"name":"WS_TRACE_API_READ_ELEMENT_TYPE","features":[116]},{"name":"WS_TRACE_API_READ_ELEMENT_VALUE","features":[116]},{"name":"WS_TRACE_API_READ_ENDPOINT_ADDRESS_EXTENSION","features":[116]},{"name":"WS_TRACE_API_READ_END_ATTRIBUTE","features":[116]},{"name":"WS_TRACE_API_READ_END_ELEMENT","features":[116]},{"name":"WS_TRACE_API_READ_ENVELOPE_END","features":[116]},{"name":"WS_TRACE_API_READ_ENVELOPE_START","features":[116]},{"name":"WS_TRACE_API_READ_MESSAGE_END","features":[116]},{"name":"WS_TRACE_API_READ_MESSAGE_START","features":[116]},{"name":"WS_TRACE_API_READ_METADATA","features":[116]},{"name":"WS_TRACE_API_READ_NODE","features":[116]},{"name":"WS_TRACE_API_READ_QUALIFIED_NAME","features":[116]},{"name":"WS_TRACE_API_READ_START_ATTRIBUTE","features":[116]},{"name":"WS_TRACE_API_READ_START_ELEMENT","features":[116]},{"name":"WS_TRACE_API_READ_TO_START_ELEMENT","features":[116]},{"name":"WS_TRACE_API_READ_TYPE","features":[116]},{"name":"WS_TRACE_API_READ_XML_BUFFER","features":[116]},{"name":"WS_TRACE_API_READ_XML_BUFFER_FROM_BYTES","features":[116]},{"name":"WS_TRACE_API_RECEIVE_MESSAGE","features":[116]},{"name":"WS_TRACE_API_REMOVE_CUSTOM_HEADER","features":[116]},{"name":"WS_TRACE_API_REMOVE_HEADER","features":[116]},{"name":"WS_TRACE_API_REMOVE_MAPPED_HEADER","features":[116]},{"name":"WS_TRACE_API_REMOVE_NODE","features":[116]},{"name":"WS_TRACE_API_REQUEST_REPLY","features":[116]},{"name":"WS_TRACE_API_REQUEST_SECURITY_TOKEN","features":[116]},{"name":"WS_TRACE_API_RESET_CHANNEL","features":[116]},{"name":"WS_TRACE_API_RESET_ERROR","features":[116]},{"name":"WS_TRACE_API_RESET_HEAP","features":[116]},{"name":"WS_TRACE_API_RESET_LISTENER","features":[116]},{"name":"WS_TRACE_API_RESET_MESSAGE","features":[116]},{"name":"WS_TRACE_API_RESET_METADATA","features":[116]},{"name":"WS_TRACE_API_RESET_SERVICE_HOST","features":[116]},{"name":"WS_TRACE_API_RESET_SERVICE_PROXY","features":[116]},{"name":"WS_TRACE_API_REVOKE_SECURITY_CONTEXT","features":[116]},{"name":"WS_TRACE_API_SEND_FAULT_MESSAGE_FOR_ERROR","features":[116]},{"name":"WS_TRACE_API_SEND_MESSAGE","features":[116]},{"name":"WS_TRACE_API_SEND_REPLY_MESSAGE","features":[116]},{"name":"WS_TRACE_API_SERVICE_REGISTER_FOR_CANCEL","features":[116]},{"name":"WS_TRACE_API_SET_AUTOFAIL","features":[116]},{"name":"WS_TRACE_API_SET_CHANNEL_PROPERTY","features":[116]},{"name":"WS_TRACE_API_SET_ERROR_PROPERTY","features":[116]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_DETAIL","features":[116]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_PROPERTY","features":[116]},{"name":"WS_TRACE_API_SET_HEADER","features":[116]},{"name":"WS_TRACE_API_SET_INPUT","features":[116]},{"name":"WS_TRACE_API_SET_INPUT_TO_BUFFER","features":[116]},{"name":"WS_TRACE_API_SET_LISTENER_PROPERTY","features":[116]},{"name":"WS_TRACE_API_SET_MESSAGE_PROPERTY","features":[116]},{"name":"WS_TRACE_API_SET_OUTPUT","features":[116]},{"name":"WS_TRACE_API_SET_OUTPUT_TO_BUFFER","features":[116]},{"name":"WS_TRACE_API_SET_READER_POSITION","features":[116]},{"name":"WS_TRACE_API_SET_WRITER_POSITION","features":[116]},{"name":"WS_TRACE_API_SHUTDOWN_SESSION_CHANNEL","features":[116]},{"name":"WS_TRACE_API_SKIP_NODE","features":[116]},{"name":"WS_TRACE_API_START_READER_CANONICALIZATION","features":[116]},{"name":"WS_TRACE_API_START_WRITER_CANONICALIZATION","features":[116]},{"name":"WS_TRACE_API_TRIM_XML_WHITESPACE","features":[116]},{"name":"WS_TRACE_API_VERIFY_XML_NCNAME","features":[116]},{"name":"WS_TRACE_API_WRITE_ARRAY","features":[116]},{"name":"WS_TRACE_API_WRITE_ATTRIBUTE_TYPE","features":[116]},{"name":"WS_TRACE_API_WRITE_BODY","features":[116]},{"name":"WS_TRACE_API_WRITE_BYTES","features":[116]},{"name":"WS_TRACE_API_WRITE_CHARS","features":[116]},{"name":"WS_TRACE_API_WRITE_CHARS_UTF8","features":[116]},{"name":"WS_TRACE_API_WRITE_ELEMENT_TYPE","features":[116]},{"name":"WS_TRACE_API_WRITE_END_ATTRIBUTE","features":[116]},{"name":"WS_TRACE_API_WRITE_END_CDATA","features":[116]},{"name":"WS_TRACE_API_WRITE_END_ELEMENT","features":[116]},{"name":"WS_TRACE_API_WRITE_END_START_ELEMENT","features":[116]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_END","features":[116]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_START","features":[116]},{"name":"WS_TRACE_API_WRITE_MESSAGE_END","features":[116]},{"name":"WS_TRACE_API_WRITE_MESSAGE_START","features":[116]},{"name":"WS_TRACE_API_WRITE_NODE","features":[116]},{"name":"WS_TRACE_API_WRITE_QUALIFIED_NAME","features":[116]},{"name":"WS_TRACE_API_WRITE_START_ATTRIBUTE","features":[116]},{"name":"WS_TRACE_API_WRITE_START_CDATA","features":[116]},{"name":"WS_TRACE_API_WRITE_START_ELEMENT","features":[116]},{"name":"WS_TRACE_API_WRITE_TEXT","features":[116]},{"name":"WS_TRACE_API_WRITE_TYPE","features":[116]},{"name":"WS_TRACE_API_WRITE_VALUE","features":[116]},{"name":"WS_TRACE_API_WRITE_XMLNS_ATTRIBUTE","features":[116]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER","features":[116]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER_TO_BYTES","features":[116]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_HOST_FROM_TEMPLATE","features":[116]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_PROXY_FROM_TEMPLATE","features":[116]},{"name":"WS_TRACE_API_XML_STRING_EQUALS","features":[116]},{"name":"WS_TRANSFER_MODE","features":[116]},{"name":"WS_TRUST_VERSION","features":[116]},{"name":"WS_TRUST_VERSION_1_3","features":[116]},{"name":"WS_TRUST_VERSION_FEBRUARY_2005","features":[116]},{"name":"WS_TYPE","features":[116]},{"name":"WS_TYPE_ATTRIBUTE_FIELD_MAPPING","features":[116]},{"name":"WS_TYPE_MAPPING","features":[116]},{"name":"WS_UDP_CHANNEL_BINDING","features":[116]},{"name":"WS_UINT16_DESCRIPTION","features":[116]},{"name":"WS_UINT16_TYPE","features":[116]},{"name":"WS_UINT16_VALUE_TYPE","features":[116]},{"name":"WS_UINT32_DESCRIPTION","features":[116]},{"name":"WS_UINT32_TYPE","features":[116]},{"name":"WS_UINT32_VALUE_TYPE","features":[116]},{"name":"WS_UINT64_DESCRIPTION","features":[116]},{"name":"WS_UINT64_TYPE","features":[116]},{"name":"WS_UINT64_VALUE_TYPE","features":[116]},{"name":"WS_UINT8_DESCRIPTION","features":[116]},{"name":"WS_UINT8_TYPE","features":[116]},{"name":"WS_UINT8_VALUE_TYPE","features":[116]},{"name":"WS_UNION_DESCRIPTION","features":[1,116]},{"name":"WS_UNION_FIELD_DESCRIPTION","features":[1,116]},{"name":"WS_UNION_TYPE","features":[116]},{"name":"WS_UNIQUE_ID","features":[116]},{"name":"WS_UNIQUE_ID_DESCRIPTION","features":[116]},{"name":"WS_UNIQUE_ID_TYPE","features":[116]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY","features":[116]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY_TYPE","features":[116]},{"name":"WS_UPN_ENDPOINT_IDENTITY","features":[116]},{"name":"WS_UPN_ENDPOINT_IDENTITY_TYPE","features":[116]},{"name":"WS_URL","features":[116]},{"name":"WS_URL_FLAGS_ALLOW_HOST_WILDCARDS","features":[116]},{"name":"WS_URL_FLAGS_NO_PATH_COLLAPSE","features":[116]},{"name":"WS_URL_FLAGS_ZERO_TERMINATE","features":[116]},{"name":"WS_URL_HTTPS_SCHEME_TYPE","features":[116]},{"name":"WS_URL_HTTP_SCHEME_TYPE","features":[116]},{"name":"WS_URL_NETPIPE_SCHEME_TYPE","features":[116]},{"name":"WS_URL_NETTCP_SCHEME_TYPE","features":[116]},{"name":"WS_URL_SCHEME_TYPE","features":[116]},{"name":"WS_URL_SOAPUDP_SCHEME_TYPE","features":[116]},{"name":"WS_USERNAME_CREDENTIAL","features":[116]},{"name":"WS_USERNAME_CREDENTIAL_TYPE","features":[116]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING","features":[116]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[116]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[116]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[116]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[116]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_UTF8_ARRAY_DESCRIPTION","features":[116]},{"name":"WS_UTF8_ARRAY_TYPE","features":[116]},{"name":"WS_VALIDATE_PASSWORD_CALLBACK","features":[116]},{"name":"WS_VALIDATE_SAML_CALLBACK","features":[116]},{"name":"WS_VALUE_TYPE","features":[116]},{"name":"WS_VOID_DESCRIPTION","features":[116]},{"name":"WS_VOID_TYPE","features":[116]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[116]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[116]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[116]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_KERBEROS","features":[116]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_NTLM","features":[116]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_SPNEGO","features":[116]},{"name":"WS_WRITE_CALLBACK","features":[116]},{"name":"WS_WRITE_MESSAGE_END_CALLBACK","features":[116]},{"name":"WS_WRITE_MESSAGE_START_CALLBACK","features":[116]},{"name":"WS_WRITE_NILLABLE_POINTER","features":[116]},{"name":"WS_WRITE_NILLABLE_VALUE","features":[116]},{"name":"WS_WRITE_OPTION","features":[116]},{"name":"WS_WRITE_REQUIRED_POINTER","features":[116]},{"name":"WS_WRITE_REQUIRED_VALUE","features":[116]},{"name":"WS_WRITE_TYPE_CALLBACK","features":[116]},{"name":"WS_WSZ_DESCRIPTION","features":[116]},{"name":"WS_WSZ_TYPE","features":[116]},{"name":"WS_XML_ATTRIBUTE","features":[1,116]},{"name":"WS_XML_ATTRIBUTE_FIELD_MAPPING","features":[116]},{"name":"WS_XML_BASE64_TEXT","features":[116]},{"name":"WS_XML_BOOL_TEXT","features":[1,116]},{"name":"WS_XML_BUFFER","features":[116]},{"name":"WS_XML_BUFFER_PROPERTY","features":[116]},{"name":"WS_XML_BUFFER_PROPERTY_ID","features":[116]},{"name":"WS_XML_BUFFER_TYPE","features":[116]},{"name":"WS_XML_CANONICALIZATION_ALGORITHM","features":[116]},{"name":"WS_XML_CANONICALIZATION_INCLUSIVE_PREFIXES","features":[1,116]},{"name":"WS_XML_CANONICALIZATION_PROPERTY","features":[116]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ALGORITHM","features":[116]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ID","features":[116]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_INCLUSIVE_PREFIXES","features":[116]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OMITTED_ELEMENT","features":[116]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OUTPUT_BUFFER_SIZE","features":[116]},{"name":"WS_XML_COMMENT_NODE","features":[1,116]},{"name":"WS_XML_DATETIME_TEXT","features":[116]},{"name":"WS_XML_DECIMAL_TEXT","features":[1,116]},{"name":"WS_XML_DICTIONARY","features":[1,116]},{"name":"WS_XML_DOUBLE_TEXT","features":[116]},{"name":"WS_XML_ELEMENT_NODE","features":[1,116]},{"name":"WS_XML_FLOAT_TEXT","features":[116]},{"name":"WS_XML_GUID_TEXT","features":[116]},{"name":"WS_XML_INT32_TEXT","features":[116]},{"name":"WS_XML_INT64_TEXT","features":[116]},{"name":"WS_XML_LIST_TEXT","features":[116]},{"name":"WS_XML_NODE","features":[116]},{"name":"WS_XML_NODE_POSITION","features":[116]},{"name":"WS_XML_NODE_TYPE","features":[116]},{"name":"WS_XML_NODE_TYPE_BOF","features":[116]},{"name":"WS_XML_NODE_TYPE_CDATA","features":[116]},{"name":"WS_XML_NODE_TYPE_COMMENT","features":[116]},{"name":"WS_XML_NODE_TYPE_ELEMENT","features":[116]},{"name":"WS_XML_NODE_TYPE_END_CDATA","features":[116]},{"name":"WS_XML_NODE_TYPE_END_ELEMENT","features":[116]},{"name":"WS_XML_NODE_TYPE_EOF","features":[116]},{"name":"WS_XML_NODE_TYPE_TEXT","features":[116]},{"name":"WS_XML_QNAME","features":[1,116]},{"name":"WS_XML_QNAME_DESCRIPTION","features":[116]},{"name":"WS_XML_QNAME_TEXT","features":[1,116]},{"name":"WS_XML_QNAME_TYPE","features":[116]},{"name":"WS_XML_READER","features":[116]},{"name":"WS_XML_READER_BINARY_ENCODING","features":[1,116]},{"name":"WS_XML_READER_BUFFER_INPUT","features":[116]},{"name":"WS_XML_READER_ENCODING","features":[116]},{"name":"WS_XML_READER_ENCODING_TYPE","features":[116]},{"name":"WS_XML_READER_ENCODING_TYPE_BINARY","features":[116]},{"name":"WS_XML_READER_ENCODING_TYPE_MTOM","features":[116]},{"name":"WS_XML_READER_ENCODING_TYPE_RAW","features":[116]},{"name":"WS_XML_READER_ENCODING_TYPE_TEXT","features":[116]},{"name":"WS_XML_READER_INPUT","features":[116]},{"name":"WS_XML_READER_INPUT_TYPE","features":[116]},{"name":"WS_XML_READER_INPUT_TYPE_BUFFER","features":[116]},{"name":"WS_XML_READER_INPUT_TYPE_STREAM","features":[116]},{"name":"WS_XML_READER_MTOM_ENCODING","features":[1,116]},{"name":"WS_XML_READER_PROPERTIES","features":[116]},{"name":"WS_XML_READER_PROPERTY","features":[116]},{"name":"WS_XML_READER_PROPERTY_ALLOW_FRAGMENT","features":[116]},{"name":"WS_XML_READER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[116]},{"name":"WS_XML_READER_PROPERTY_CHARSET","features":[116]},{"name":"WS_XML_READER_PROPERTY_COLUMN","features":[116]},{"name":"WS_XML_READER_PROPERTY_ID","features":[116]},{"name":"WS_XML_READER_PROPERTY_IN_ATTRIBUTE","features":[116]},{"name":"WS_XML_READER_PROPERTY_MAX_ATTRIBUTES","features":[116]},{"name":"WS_XML_READER_PROPERTY_MAX_DEPTH","features":[116]},{"name":"WS_XML_READER_PROPERTY_MAX_MIME_PARTS","features":[116]},{"name":"WS_XML_READER_PROPERTY_MAX_NAMESPACES","features":[116]},{"name":"WS_XML_READER_PROPERTY_READ_DECLARATION","features":[116]},{"name":"WS_XML_READER_PROPERTY_ROW","features":[116]},{"name":"WS_XML_READER_PROPERTY_STREAM_BUFFER_SIZE","features":[116]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_MIME_HEADERS_SIZE","features":[116]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_ROOT_MIME_PART_SIZE","features":[116]},{"name":"WS_XML_READER_PROPERTY_UTF8_TRIM_SIZE","features":[116]},{"name":"WS_XML_READER_RAW_ENCODING","features":[116]},{"name":"WS_XML_READER_STREAM_INPUT","features":[116]},{"name":"WS_XML_READER_TEXT_ENCODING","features":[116]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY","features":[116]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE","features":[116]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ID","features":[116]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE","features":[116]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[116]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[116]},{"name":"WS_XML_STRING","features":[1,116]},{"name":"WS_XML_STRING_DESCRIPTION","features":[116]},{"name":"WS_XML_STRING_TYPE","features":[116]},{"name":"WS_XML_TEXT","features":[116]},{"name":"WS_XML_TEXT_NODE","features":[116]},{"name":"WS_XML_TEXT_TYPE","features":[116]},{"name":"WS_XML_TEXT_TYPE_BASE64","features":[116]},{"name":"WS_XML_TEXT_TYPE_BOOL","features":[116]},{"name":"WS_XML_TEXT_TYPE_DATETIME","features":[116]},{"name":"WS_XML_TEXT_TYPE_DECIMAL","features":[116]},{"name":"WS_XML_TEXT_TYPE_DOUBLE","features":[116]},{"name":"WS_XML_TEXT_TYPE_FLOAT","features":[116]},{"name":"WS_XML_TEXT_TYPE_GUID","features":[116]},{"name":"WS_XML_TEXT_TYPE_INT32","features":[116]},{"name":"WS_XML_TEXT_TYPE_INT64","features":[116]},{"name":"WS_XML_TEXT_TYPE_LIST","features":[116]},{"name":"WS_XML_TEXT_TYPE_QNAME","features":[116]},{"name":"WS_XML_TEXT_TYPE_TIMESPAN","features":[116]},{"name":"WS_XML_TEXT_TYPE_UINT64","features":[116]},{"name":"WS_XML_TEXT_TYPE_UNIQUE_ID","features":[116]},{"name":"WS_XML_TEXT_TYPE_UTF16","features":[116]},{"name":"WS_XML_TEXT_TYPE_UTF8","features":[116]},{"name":"WS_XML_TIMESPAN_TEXT","features":[116]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING","features":[116]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING_TYPE","features":[116]},{"name":"WS_XML_UINT64_TEXT","features":[116]},{"name":"WS_XML_UNIQUE_ID_TEXT","features":[116]},{"name":"WS_XML_UTF16_TEXT","features":[116]},{"name":"WS_XML_UTF8_TEXT","features":[1,116]},{"name":"WS_XML_WRITER","features":[116]},{"name":"WS_XML_WRITER_BINARY_ENCODING","features":[1,116]},{"name":"WS_XML_WRITER_BUFFER_OUTPUT","features":[116]},{"name":"WS_XML_WRITER_ENCODING","features":[116]},{"name":"WS_XML_WRITER_ENCODING_TYPE","features":[116]},{"name":"WS_XML_WRITER_ENCODING_TYPE_BINARY","features":[116]},{"name":"WS_XML_WRITER_ENCODING_TYPE_MTOM","features":[116]},{"name":"WS_XML_WRITER_ENCODING_TYPE_RAW","features":[116]},{"name":"WS_XML_WRITER_ENCODING_TYPE_TEXT","features":[116]},{"name":"WS_XML_WRITER_MTOM_ENCODING","features":[1,116]},{"name":"WS_XML_WRITER_OUTPUT","features":[116]},{"name":"WS_XML_WRITER_OUTPUT_TYPE","features":[116]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_BUFFER","features":[116]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_STREAM","features":[116]},{"name":"WS_XML_WRITER_PROPERTIES","features":[116]},{"name":"WS_XML_WRITER_PROPERTY","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_FRAGMENT","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_BUFFERS","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_MAX_SIZE","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_TRIM_SIZE","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_BYTES","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_TO_CLOSE","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_WRITTEN","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_CHARSET","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_COMPRESS_EMPTY_ELEMENTS","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_EMIT_UNCOMPRESSED_EMPTY_ELEMENTS","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_ID","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_INDENT","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_INITIAL_BUFFER","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_IN_ATTRIBUTE","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_MAX_ATTRIBUTES","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_MAX_DEPTH","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_MAX_MIME_PARTS_BUFFER_SIZE","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_MAX_NAMESPACES","features":[116]},{"name":"WS_XML_WRITER_PROPERTY_WRITE_DECLARATION","features":[116]},{"name":"WS_XML_WRITER_RAW_ENCODING","features":[116]},{"name":"WS_XML_WRITER_STREAM_OUTPUT","features":[116]},{"name":"WS_XML_WRITER_TEXT_ENCODING","features":[116]},{"name":"WebAuthNAuthenticatorGetAssertion","features":[1,116]},{"name":"WebAuthNAuthenticatorMakeCredential","features":[1,116]},{"name":"WebAuthNCancelCurrentOperation","features":[116]},{"name":"WebAuthNDeletePlatformCredential","features":[116]},{"name":"WebAuthNFreeAssertion","features":[116]},{"name":"WebAuthNFreeCredentialAttestation","features":[1,116]},{"name":"WebAuthNFreePlatformCredentialList","features":[1,116]},{"name":"WebAuthNGetApiVersionNumber","features":[116]},{"name":"WebAuthNGetCancellationId","features":[116]},{"name":"WebAuthNGetErrorName","features":[116]},{"name":"WebAuthNGetPlatformCredentialList","features":[1,116]},{"name":"WebAuthNGetW3CExceptionDOMError","features":[116]},{"name":"WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable","features":[1,116]},{"name":"WsAbandonCall","features":[116]},{"name":"WsAbandonMessage","features":[116]},{"name":"WsAbortChannel","features":[116]},{"name":"WsAbortListener","features":[116]},{"name":"WsAbortServiceHost","features":[116]},{"name":"WsAbortServiceProxy","features":[116]},{"name":"WsAcceptChannel","features":[116]},{"name":"WsAddCustomHeader","features":[1,116]},{"name":"WsAddErrorString","features":[116]},{"name":"WsAddMappedHeader","features":[1,116]},{"name":"WsAddressMessage","features":[116]},{"name":"WsAlloc","features":[116]},{"name":"WsAsyncExecute","features":[116]},{"name":"WsCall","features":[1,116]},{"name":"WsCheckMustUnderstandHeaders","features":[116]},{"name":"WsCloseChannel","features":[116]},{"name":"WsCloseListener","features":[116]},{"name":"WsCloseServiceHost","features":[116]},{"name":"WsCloseServiceProxy","features":[116]},{"name":"WsCombineUrl","features":[116]},{"name":"WsCopyError","features":[116]},{"name":"WsCopyNode","features":[116]},{"name":"WsCreateChannel","features":[116]},{"name":"WsCreateChannelForListener","features":[116]},{"name":"WsCreateError","features":[116]},{"name":"WsCreateFaultFromError","features":[1,116]},{"name":"WsCreateHeap","features":[116]},{"name":"WsCreateListener","features":[116]},{"name":"WsCreateMessage","features":[116]},{"name":"WsCreateMessageForChannel","features":[116]},{"name":"WsCreateMetadata","features":[116]},{"name":"WsCreateReader","features":[116]},{"name":"WsCreateServiceEndpointFromTemplate","features":[1,116]},{"name":"WsCreateServiceHost","features":[1,116]},{"name":"WsCreateServiceProxy","features":[116]},{"name":"WsCreateServiceProxyFromTemplate","features":[116]},{"name":"WsCreateWriter","features":[116]},{"name":"WsCreateXmlBuffer","features":[116]},{"name":"WsCreateXmlSecurityToken","features":[116]},{"name":"WsDateTimeToFileTime","features":[1,116]},{"name":"WsDecodeUrl","features":[116]},{"name":"WsEncodeUrl","features":[116]},{"name":"WsEndReaderCanonicalization","features":[116]},{"name":"WsEndWriterCanonicalization","features":[116]},{"name":"WsFileTimeToDateTime","features":[1,116]},{"name":"WsFillBody","features":[116]},{"name":"WsFillReader","features":[116]},{"name":"WsFindAttribute","features":[1,116]},{"name":"WsFlushBody","features":[116]},{"name":"WsFlushWriter","features":[116]},{"name":"WsFreeChannel","features":[116]},{"name":"WsFreeError","features":[116]},{"name":"WsFreeHeap","features":[116]},{"name":"WsFreeListener","features":[116]},{"name":"WsFreeMessage","features":[116]},{"name":"WsFreeMetadata","features":[116]},{"name":"WsFreeReader","features":[116]},{"name":"WsFreeSecurityToken","features":[116]},{"name":"WsFreeServiceHost","features":[116]},{"name":"WsFreeServiceProxy","features":[116]},{"name":"WsFreeWriter","features":[116]},{"name":"WsGetChannelProperty","features":[116]},{"name":"WsGetCustomHeader","features":[1,116]},{"name":"WsGetDictionary","features":[1,116]},{"name":"WsGetErrorProperty","features":[116]},{"name":"WsGetErrorString","features":[116]},{"name":"WsGetFaultErrorDetail","features":[1,116]},{"name":"WsGetFaultErrorProperty","features":[116]},{"name":"WsGetHeader","features":[116]},{"name":"WsGetHeaderAttributes","features":[116]},{"name":"WsGetHeapProperty","features":[116]},{"name":"WsGetListenerProperty","features":[116]},{"name":"WsGetMappedHeader","features":[1,116]},{"name":"WsGetMessageProperty","features":[116]},{"name":"WsGetMetadataEndpoints","features":[1,116]},{"name":"WsGetMetadataProperty","features":[116]},{"name":"WsGetMissingMetadataDocumentAddress","features":[116]},{"name":"WsGetNamespaceFromPrefix","features":[1,116]},{"name":"WsGetOperationContextProperty","features":[116]},{"name":"WsGetPolicyAlternativeCount","features":[116]},{"name":"WsGetPolicyProperty","features":[116]},{"name":"WsGetPrefixFromNamespace","features":[1,116]},{"name":"WsGetReaderNode","features":[116]},{"name":"WsGetReaderPosition","features":[116]},{"name":"WsGetReaderProperty","features":[116]},{"name":"WsGetSecurityContextProperty","features":[116]},{"name":"WsGetSecurityTokenProperty","features":[116]},{"name":"WsGetServiceHostProperty","features":[116]},{"name":"WsGetServiceProxyProperty","features":[116]},{"name":"WsGetWriterPosition","features":[116]},{"name":"WsGetWriterProperty","features":[116]},{"name":"WsGetXmlAttribute","features":[1,116]},{"name":"WsInitializeMessage","features":[116]},{"name":"WsMarkHeaderAsUnderstood","features":[116]},{"name":"WsMatchPolicyAlternative","features":[1,116]},{"name":"WsMoveReader","features":[1,116]},{"name":"WsMoveWriter","features":[1,116]},{"name":"WsOpenChannel","features":[116]},{"name":"WsOpenListener","features":[116]},{"name":"WsOpenServiceHost","features":[116]},{"name":"WsOpenServiceProxy","features":[116]},{"name":"WsPullBytes","features":[116]},{"name":"WsPushBytes","features":[116]},{"name":"WsReadArray","features":[1,116]},{"name":"WsReadAttribute","features":[1,116]},{"name":"WsReadBody","features":[1,116]},{"name":"WsReadBytes","features":[116]},{"name":"WsReadChars","features":[116]},{"name":"WsReadCharsUtf8","features":[116]},{"name":"WsReadElement","features":[1,116]},{"name":"WsReadEndAttribute","features":[116]},{"name":"WsReadEndElement","features":[116]},{"name":"WsReadEndpointAddressExtension","features":[116]},{"name":"WsReadEnvelopeEnd","features":[116]},{"name":"WsReadEnvelopeStart","features":[116]},{"name":"WsReadMessageEnd","features":[116]},{"name":"WsReadMessageStart","features":[116]},{"name":"WsReadMetadata","features":[116]},{"name":"WsReadNode","features":[116]},{"name":"WsReadQualifiedName","features":[1,116]},{"name":"WsReadStartAttribute","features":[116]},{"name":"WsReadStartElement","features":[116]},{"name":"WsReadToStartElement","features":[1,116]},{"name":"WsReadType","features":[116]},{"name":"WsReadValue","features":[116]},{"name":"WsReadXmlBuffer","features":[116]},{"name":"WsReadXmlBufferFromBytes","features":[116]},{"name":"WsReceiveMessage","features":[1,116]},{"name":"WsRegisterOperationForCancel","features":[116]},{"name":"WsRemoveCustomHeader","features":[1,116]},{"name":"WsRemoveHeader","features":[116]},{"name":"WsRemoveMappedHeader","features":[1,116]},{"name":"WsRemoveNode","features":[116]},{"name":"WsRequestReply","features":[1,116]},{"name":"WsRequestSecurityToken","features":[116]},{"name":"WsResetChannel","features":[116]},{"name":"WsResetError","features":[116]},{"name":"WsResetHeap","features":[116]},{"name":"WsResetListener","features":[116]},{"name":"WsResetMessage","features":[116]},{"name":"WsResetMetadata","features":[116]},{"name":"WsResetServiceHost","features":[116]},{"name":"WsResetServiceProxy","features":[116]},{"name":"WsRevokeSecurityContext","features":[116]},{"name":"WsSendFaultMessageForError","features":[116]},{"name":"WsSendMessage","features":[1,116]},{"name":"WsSendReplyMessage","features":[1,116]},{"name":"WsSetChannelProperty","features":[116]},{"name":"WsSetErrorProperty","features":[116]},{"name":"WsSetFaultErrorDetail","features":[1,116]},{"name":"WsSetFaultErrorProperty","features":[116]},{"name":"WsSetHeader","features":[116]},{"name":"WsSetInput","features":[116]},{"name":"WsSetInputToBuffer","features":[116]},{"name":"WsSetListenerProperty","features":[116]},{"name":"WsSetMessageProperty","features":[116]},{"name":"WsSetOutput","features":[116]},{"name":"WsSetOutputToBuffer","features":[116]},{"name":"WsSetReaderPosition","features":[116]},{"name":"WsSetWriterPosition","features":[116]},{"name":"WsShutdownSessionChannel","features":[116]},{"name":"WsSkipNode","features":[116]},{"name":"WsStartReaderCanonicalization","features":[116]},{"name":"WsStartWriterCanonicalization","features":[116]},{"name":"WsTrimXmlWhitespace","features":[116]},{"name":"WsVerifyXmlNCName","features":[116]},{"name":"WsWriteArray","features":[1,116]},{"name":"WsWriteAttribute","features":[1,116]},{"name":"WsWriteBody","features":[1,116]},{"name":"WsWriteBytes","features":[116]},{"name":"WsWriteChars","features":[116]},{"name":"WsWriteCharsUtf8","features":[116]},{"name":"WsWriteElement","features":[1,116]},{"name":"WsWriteEndAttribute","features":[116]},{"name":"WsWriteEndCData","features":[116]},{"name":"WsWriteEndElement","features":[116]},{"name":"WsWriteEndStartElement","features":[116]},{"name":"WsWriteEnvelopeEnd","features":[116]},{"name":"WsWriteEnvelopeStart","features":[116]},{"name":"WsWriteMessageEnd","features":[116]},{"name":"WsWriteMessageStart","features":[116]},{"name":"WsWriteNode","features":[116]},{"name":"WsWriteQualifiedName","features":[1,116]},{"name":"WsWriteStartAttribute","features":[1,116]},{"name":"WsWriteStartCData","features":[116]},{"name":"WsWriteStartElement","features":[1,116]},{"name":"WsWriteText","features":[116]},{"name":"WsWriteType","features":[116]},{"name":"WsWriteValue","features":[116]},{"name":"WsWriteXmlBuffer","features":[116]},{"name":"WsWriteXmlBufferToBytes","features":[116]},{"name":"WsWriteXmlnsAttribute","features":[1,116]},{"name":"WsXmlStringEquals","features":[1,116]}],"479":[{"name":"ACCESS_ALLOWED_ACE","features":[4]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE","features":[4]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE","features":[4]},{"name":"ACCESS_ALLOWED_OBJECT_ACE","features":[4]},{"name":"ACCESS_DENIED_ACE","features":[4]},{"name":"ACCESS_DENIED_CALLBACK_ACE","features":[4]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE","features":[4]},{"name":"ACCESS_DENIED_OBJECT_ACE","features":[4]},{"name":"ACCESS_REASONS","features":[4]},{"name":"ACE_FLAGS","features":[4]},{"name":"ACE_HEADER","features":[4]},{"name":"ACE_INHERITED_OBJECT_TYPE_PRESENT","features":[4]},{"name":"ACE_OBJECT_TYPE_PRESENT","features":[4]},{"name":"ACE_REVISION","features":[4]},{"name":"ACL","features":[4]},{"name":"ACL_INFORMATION_CLASS","features":[4]},{"name":"ACL_REVISION","features":[4]},{"name":"ACL_REVISION_DS","features":[4]},{"name":"ACL_REVISION_INFORMATION","features":[4]},{"name":"ACL_SIZE_INFORMATION","features":[4]},{"name":"ATTRIBUTE_SECURITY_INFORMATION","features":[4]},{"name":"AUDIT_EVENT_TYPE","features":[4]},{"name":"AccessCheck","features":[1,4]},{"name":"AccessCheckAndAuditAlarmA","features":[1,4]},{"name":"AccessCheckAndAuditAlarmW","features":[1,4]},{"name":"AccessCheckByType","features":[1,4]},{"name":"AccessCheckByTypeAndAuditAlarmA","features":[1,4]},{"name":"AccessCheckByTypeAndAuditAlarmW","features":[1,4]},{"name":"AccessCheckByTypeResultList","features":[1,4]},{"name":"AccessCheckByTypeResultListAndAuditAlarmA","features":[1,4]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleA","features":[1,4]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleW","features":[1,4]},{"name":"AccessCheckByTypeResultListAndAuditAlarmW","features":[1,4]},{"name":"AclRevisionInformation","features":[4]},{"name":"AclSizeInformation","features":[4]},{"name":"AddAccessAllowedAce","features":[1,4]},{"name":"AddAccessAllowedAceEx","features":[1,4]},{"name":"AddAccessAllowedObjectAce","features":[1,4]},{"name":"AddAccessDeniedAce","features":[1,4]},{"name":"AddAccessDeniedAceEx","features":[1,4]},{"name":"AddAccessDeniedObjectAce","features":[1,4]},{"name":"AddAce","features":[1,4]},{"name":"AddAuditAccessAce","features":[1,4]},{"name":"AddAuditAccessAceEx","features":[1,4]},{"name":"AddAuditAccessObjectAce","features":[1,4]},{"name":"AddConditionalAce","features":[1,4]},{"name":"AddMandatoryAce","features":[1,4]},{"name":"AddResourceAttributeAce","features":[1,4]},{"name":"AddScopedPolicyIDAce","features":[1,4]},{"name":"AdjustTokenGroups","features":[1,4]},{"name":"AdjustTokenPrivileges","features":[1,4]},{"name":"AllocateAndInitializeSid","features":[1,4]},{"name":"AllocateLocallyUniqueId","features":[1,4]},{"name":"AreAllAccessesGranted","features":[1,4]},{"name":"AreAnyAccessesGranted","features":[1,4]},{"name":"AuditEventDirectoryServiceAccess","features":[4]},{"name":"AuditEventObjectAccess","features":[4]},{"name":"BACKUP_SECURITY_INFORMATION","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED_BY_DEFAULT","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FLAGS","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_MANDATORY","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INT64","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_SID","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_STRING","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_USE_FOR_DENY_ONLY","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_V1","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[4]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_TYPE","features":[4]},{"name":"CONTAINER_INHERIT_ACE","features":[4]},{"name":"CREATE_RESTRICTED_TOKEN_FLAGS","features":[4]},{"name":"CVT_SECONDS","features":[4]},{"name":"CheckTokenCapability","features":[1,4]},{"name":"CheckTokenMembership","features":[1,4]},{"name":"CheckTokenMembershipEx","features":[1,4]},{"name":"ConvertToAutoInheritPrivateObjectSecurity","features":[1,4]},{"name":"CopySid","features":[1,4]},{"name":"CreatePrivateObjectSecurity","features":[1,4]},{"name":"CreatePrivateObjectSecurityEx","features":[1,4]},{"name":"CreatePrivateObjectSecurityWithMultipleInheritance","features":[1,4]},{"name":"CreateRestrictedToken","features":[1,4]},{"name":"CreateWellKnownSid","features":[1,4]},{"name":"DACL_SECURITY_INFORMATION","features":[4]},{"name":"DISABLE_MAX_PRIVILEGE","features":[4]},{"name":"DeleteAce","features":[1,4]},{"name":"DeriveCapabilitySidsFromName","features":[1,4]},{"name":"DestroyPrivateObjectSecurity","features":[1,4]},{"name":"DuplicateToken","features":[1,4]},{"name":"DuplicateTokenEx","features":[1,4]},{"name":"ENUM_PERIOD","features":[4]},{"name":"ENUM_PERIOD_DAYS","features":[4]},{"name":"ENUM_PERIOD_HOURS","features":[4]},{"name":"ENUM_PERIOD_INVALID","features":[4]},{"name":"ENUM_PERIOD_MINUTES","features":[4]},{"name":"ENUM_PERIOD_MONTHS","features":[4]},{"name":"ENUM_PERIOD_SECONDS","features":[4]},{"name":"ENUM_PERIOD_WEEKS","features":[4]},{"name":"ENUM_PERIOD_YEARS","features":[4]},{"name":"EqualDomainSid","features":[1,4]},{"name":"EqualPrefixSid","features":[1,4]},{"name":"EqualSid","features":[1,4]},{"name":"FAILED_ACCESS_ACE_FLAG","features":[4]},{"name":"FindFirstFreeAce","features":[1,4]},{"name":"FreeSid","features":[1,4]},{"name":"GENERIC_MAPPING","features":[4]},{"name":"GROUP_SECURITY_INFORMATION","features":[4]},{"name":"GetAce","features":[1,4]},{"name":"GetAclInformation","features":[1,4]},{"name":"GetAppContainerAce","features":[1,4]},{"name":"GetCachedSigningLevel","features":[1,4]},{"name":"GetFileSecurityA","features":[1,4]},{"name":"GetFileSecurityW","features":[1,4]},{"name":"GetKernelObjectSecurity","features":[1,4]},{"name":"GetLengthSid","features":[1,4]},{"name":"GetPrivateObjectSecurity","features":[1,4]},{"name":"GetSecurityDescriptorControl","features":[1,4]},{"name":"GetSecurityDescriptorDacl","features":[1,4]},{"name":"GetSecurityDescriptorGroup","features":[1,4]},{"name":"GetSecurityDescriptorLength","features":[4]},{"name":"GetSecurityDescriptorOwner","features":[1,4]},{"name":"GetSecurityDescriptorRMControl","features":[4]},{"name":"GetSecurityDescriptorSacl","features":[1,4]},{"name":"GetSidIdentifierAuthority","features":[1,4]},{"name":"GetSidLengthRequired","features":[4]},{"name":"GetSidSubAuthority","features":[1,4]},{"name":"GetSidSubAuthorityCount","features":[1,4]},{"name":"GetTokenInformation","features":[1,4]},{"name":"GetUserObjectSecurity","features":[1,4]},{"name":"GetWindowsAccountDomainSid","features":[1,4]},{"name":"HDIAGNOSTIC_DATA_QUERY_SESSION","features":[4]},{"name":"HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION","features":[4]},{"name":"HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION","features":[4]},{"name":"HDIAGNOSTIC_EVENT_TAG_DESCRIPTION","features":[4]},{"name":"HDIAGNOSTIC_RECORD","features":[4]},{"name":"HDIAGNOSTIC_REPORT","features":[4]},{"name":"INHERITED_ACE","features":[4]},{"name":"INHERIT_NO_PROPAGATE","features":[4]},{"name":"INHERIT_ONLY","features":[4]},{"name":"INHERIT_ONLY_ACE","features":[4]},{"name":"ImpersonateAnonymousToken","features":[1,4]},{"name":"ImpersonateLoggedOnUser","features":[1,4]},{"name":"ImpersonateSelf","features":[1,4]},{"name":"InitializeAcl","features":[1,4]},{"name":"InitializeSecurityDescriptor","features":[1,4]},{"name":"InitializeSid","features":[1,4]},{"name":"IsTokenRestricted","features":[1,4]},{"name":"IsValidAcl","features":[1,4]},{"name":"IsValidSecurityDescriptor","features":[1,4]},{"name":"IsValidSid","features":[1,4]},{"name":"IsWellKnownSid","features":[1,4]},{"name":"LABEL_SECURITY_INFORMATION","features":[4]},{"name":"LLFILETIME","features":[1,4]},{"name":"LOGON32_LOGON","features":[4]},{"name":"LOGON32_LOGON_BATCH","features":[4]},{"name":"LOGON32_LOGON_INTERACTIVE","features":[4]},{"name":"LOGON32_LOGON_NETWORK","features":[4]},{"name":"LOGON32_LOGON_NETWORK_CLEARTEXT","features":[4]},{"name":"LOGON32_LOGON_NEW_CREDENTIALS","features":[4]},{"name":"LOGON32_LOGON_SERVICE","features":[4]},{"name":"LOGON32_LOGON_UNLOCK","features":[4]},{"name":"LOGON32_PROVIDER","features":[4]},{"name":"LOGON32_PROVIDER_DEFAULT","features":[4]},{"name":"LOGON32_PROVIDER_WINNT40","features":[4]},{"name":"LOGON32_PROVIDER_WINNT50","features":[4]},{"name":"LUA_TOKEN","features":[4]},{"name":"LUID_AND_ATTRIBUTES","features":[1,4]},{"name":"LogonUserA","features":[1,4]},{"name":"LogonUserExA","features":[1,4]},{"name":"LogonUserExW","features":[1,4]},{"name":"LogonUserW","features":[1,4]},{"name":"LookupAccountNameA","features":[1,4]},{"name":"LookupAccountNameW","features":[1,4]},{"name":"LookupAccountSidA","features":[1,4]},{"name":"LookupAccountSidW","features":[1,4]},{"name":"LookupPrivilegeDisplayNameA","features":[1,4]},{"name":"LookupPrivilegeDisplayNameW","features":[1,4]},{"name":"LookupPrivilegeNameA","features":[1,4]},{"name":"LookupPrivilegeNameW","features":[1,4]},{"name":"LookupPrivilegeValueA","features":[1,4]},{"name":"LookupPrivilegeValueW","features":[1,4]},{"name":"MANDATORY_LEVEL","features":[4]},{"name":"MakeAbsoluteSD","features":[1,4]},{"name":"MakeSelfRelativeSD","features":[1,4]},{"name":"MandatoryLevelCount","features":[4]},{"name":"MandatoryLevelHigh","features":[4]},{"name":"MandatoryLevelLow","features":[4]},{"name":"MandatoryLevelMedium","features":[4]},{"name":"MandatoryLevelSecureProcess","features":[4]},{"name":"MandatoryLevelSystem","features":[4]},{"name":"MandatoryLevelUntrusted","features":[4]},{"name":"MapGenericMask","features":[4]},{"name":"MaxTokenInfoClass","features":[4]},{"name":"NCRYPT_DESCRIPTOR_HANDLE","features":[4]},{"name":"NCRYPT_STREAM_HANDLE","features":[4]},{"name":"NO_INHERITANCE","features":[4]},{"name":"NO_PROPAGATE_INHERIT_ACE","features":[4]},{"name":"OBJECT_INHERIT_ACE","features":[4]},{"name":"OBJECT_SECURITY_INFORMATION","features":[4]},{"name":"OBJECT_TYPE_LIST","features":[4]},{"name":"OWNER_SECURITY_INFORMATION","features":[4]},{"name":"ObjectCloseAuditAlarmA","features":[1,4]},{"name":"ObjectCloseAuditAlarmW","features":[1,4]},{"name":"ObjectDeleteAuditAlarmA","features":[1,4]},{"name":"ObjectDeleteAuditAlarmW","features":[1,4]},{"name":"ObjectOpenAuditAlarmA","features":[1,4]},{"name":"ObjectOpenAuditAlarmW","features":[1,4]},{"name":"ObjectPrivilegeAuditAlarmA","features":[1,4]},{"name":"ObjectPrivilegeAuditAlarmW","features":[1,4]},{"name":"PLSA_AP_CALL_PACKAGE_UNTRUSTED","features":[1,4]},{"name":"PRIVILEGE_SET","features":[1,4]},{"name":"PROTECTED_DACL_SECURITY_INFORMATION","features":[4]},{"name":"PROTECTED_SACL_SECURITY_INFORMATION","features":[4]},{"name":"PSECURITY_DESCRIPTOR","features":[4]},{"name":"PrivilegeCheck","features":[1,4]},{"name":"PrivilegedServiceAuditAlarmA","features":[1,4]},{"name":"PrivilegedServiceAuditAlarmW","features":[1,4]},{"name":"QUOTA_LIMITS","features":[4]},{"name":"QuerySecurityAccessMask","features":[4]},{"name":"RevertToSelf","features":[1,4]},{"name":"RtlConvertSidToUnicodeString","features":[1,4]},{"name":"RtlNormalizeSecurityDescriptor","features":[1,4]},{"name":"SACL_SECURITY_INFORMATION","features":[4]},{"name":"SAFER_LEVEL_HANDLE","features":[4]},{"name":"SANDBOX_INERT","features":[4]},{"name":"SCOPE_SECURITY_INFORMATION","features":[4]},{"name":"SC_HANDLE","features":[4]},{"name":"SECURITY_APP_PACKAGE_AUTHORITY","features":[4]},{"name":"SECURITY_ATTRIBUTES","features":[1,4]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY","features":[4]},{"name":"SECURITY_AUTO_INHERIT_FLAGS","features":[4]},{"name":"SECURITY_CAPABILITIES","features":[1,4]},{"name":"SECURITY_CREATOR_SID_AUTHORITY","features":[4]},{"name":"SECURITY_DESCRIPTOR","features":[1,4]},{"name":"SECURITY_DESCRIPTOR_CONTROL","features":[4]},{"name":"SECURITY_DESCRIPTOR_RELATIVE","features":[4]},{"name":"SECURITY_DYNAMIC_TRACKING","features":[1,4]},{"name":"SECURITY_IMPERSONATION_LEVEL","features":[4]},{"name":"SECURITY_LOCAL_SID_AUTHORITY","features":[4]},{"name":"SECURITY_MANDATORY_LABEL_AUTHORITY","features":[4]},{"name":"SECURITY_NON_UNIQUE_AUTHORITY","features":[4]},{"name":"SECURITY_NT_AUTHORITY","features":[4]},{"name":"SECURITY_NULL_SID_AUTHORITY","features":[4]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY","features":[4]},{"name":"SECURITY_QUALITY_OF_SERVICE","features":[1,4]},{"name":"SECURITY_RESOURCE_MANAGER_AUTHORITY","features":[4]},{"name":"SECURITY_SCOPED_POLICY_ID_AUTHORITY","features":[4]},{"name":"SECURITY_STATIC_TRACKING","features":[1,4]},{"name":"SECURITY_WORLD_SID_AUTHORITY","features":[4]},{"name":"SEC_THREAD_START","features":[4]},{"name":"SEF_AVOID_OWNER_CHECK","features":[4]},{"name":"SEF_AVOID_OWNER_RESTRICTION","features":[4]},{"name":"SEF_AVOID_PRIVILEGE_CHECK","features":[4]},{"name":"SEF_DACL_AUTO_INHERIT","features":[4]},{"name":"SEF_DEFAULT_DESCRIPTOR_FOR_OBJECT","features":[4]},{"name":"SEF_DEFAULT_GROUP_FROM_PARENT","features":[4]},{"name":"SEF_DEFAULT_OWNER_FROM_PARENT","features":[4]},{"name":"SEF_MACL_NO_EXECUTE_UP","features":[4]},{"name":"SEF_MACL_NO_READ_UP","features":[4]},{"name":"SEF_MACL_NO_WRITE_UP","features":[4]},{"name":"SEF_SACL_AUTO_INHERIT","features":[4]},{"name":"SE_ACCESS_REPLY","features":[1,4]},{"name":"SE_ACCESS_REQUEST","features":[1,4]},{"name":"SE_ASSIGNPRIMARYTOKEN_NAME","features":[4]},{"name":"SE_AUDIT_NAME","features":[4]},{"name":"SE_BACKUP_NAME","features":[4]},{"name":"SE_CHANGE_NOTIFY_NAME","features":[4]},{"name":"SE_CREATE_GLOBAL_NAME","features":[4]},{"name":"SE_CREATE_PAGEFILE_NAME","features":[4]},{"name":"SE_CREATE_PERMANENT_NAME","features":[4]},{"name":"SE_CREATE_SYMBOLIC_LINK_NAME","features":[4]},{"name":"SE_CREATE_TOKEN_NAME","features":[4]},{"name":"SE_DACL_AUTO_INHERITED","features":[4]},{"name":"SE_DACL_AUTO_INHERIT_REQ","features":[4]},{"name":"SE_DACL_DEFAULTED","features":[4]},{"name":"SE_DACL_PRESENT","features":[4]},{"name":"SE_DACL_PROTECTED","features":[4]},{"name":"SE_DEBUG_NAME","features":[4]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_NAME","features":[4]},{"name":"SE_ENABLE_DELEGATION_NAME","features":[4]},{"name":"SE_GROUP_DEFAULTED","features":[4]},{"name":"SE_IMPERSONATE_NAME","features":[4]},{"name":"SE_IMPERSONATION_STATE","features":[1,4]},{"name":"SE_INCREASE_QUOTA_NAME","features":[4]},{"name":"SE_INC_BASE_PRIORITY_NAME","features":[4]},{"name":"SE_INC_WORKING_SET_NAME","features":[4]},{"name":"SE_LOAD_DRIVER_NAME","features":[4]},{"name":"SE_LOCK_MEMORY_NAME","features":[4]},{"name":"SE_MACHINE_ACCOUNT_NAME","features":[4]},{"name":"SE_MANAGE_VOLUME_NAME","features":[4]},{"name":"SE_OWNER_DEFAULTED","features":[4]},{"name":"SE_PRIVILEGE_ENABLED","features":[4]},{"name":"SE_PRIVILEGE_ENABLED_BY_DEFAULT","features":[4]},{"name":"SE_PRIVILEGE_REMOVED","features":[4]},{"name":"SE_PRIVILEGE_USED_FOR_ACCESS","features":[4]},{"name":"SE_PROF_SINGLE_PROCESS_NAME","features":[4]},{"name":"SE_RELABEL_NAME","features":[4]},{"name":"SE_REMOTE_SHUTDOWN_NAME","features":[4]},{"name":"SE_RESTORE_NAME","features":[4]},{"name":"SE_RM_CONTROL_VALID","features":[4]},{"name":"SE_SACL_AUTO_INHERITED","features":[4]},{"name":"SE_SACL_AUTO_INHERIT_REQ","features":[4]},{"name":"SE_SACL_DEFAULTED","features":[4]},{"name":"SE_SACL_PRESENT","features":[4]},{"name":"SE_SACL_PROTECTED","features":[4]},{"name":"SE_SECURITY_DESCRIPTOR","features":[4]},{"name":"SE_SECURITY_NAME","features":[4]},{"name":"SE_SELF_RELATIVE","features":[4]},{"name":"SE_SHUTDOWN_NAME","features":[4]},{"name":"SE_SID","features":[4]},{"name":"SE_SYNC_AGENT_NAME","features":[4]},{"name":"SE_SYSTEMTIME_NAME","features":[4]},{"name":"SE_SYSTEM_ENVIRONMENT_NAME","features":[4]},{"name":"SE_SYSTEM_PROFILE_NAME","features":[4]},{"name":"SE_TAKE_OWNERSHIP_NAME","features":[4]},{"name":"SE_TCB_NAME","features":[4]},{"name":"SE_TIME_ZONE_NAME","features":[4]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_NAME","features":[4]},{"name":"SE_UNDOCK_NAME","features":[4]},{"name":"SE_UNSOLICITED_INPUT_NAME","features":[4]},{"name":"SID","features":[4]},{"name":"SID_AND_ATTRIBUTES","features":[1,4]},{"name":"SID_AND_ATTRIBUTES_HASH","features":[1,4]},{"name":"SID_IDENTIFIER_AUTHORITY","features":[4]},{"name":"SID_NAME_USE","features":[4]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_NOT_VALIDATED","features":[4]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_VALIDATE_ONLY","features":[4]},{"name":"SIGNING_LEVEL_MICROSOFT","features":[4]},{"name":"SUB_CONTAINERS_AND_OBJECTS_INHERIT","features":[4]},{"name":"SUB_CONTAINERS_ONLY_INHERIT","features":[4]},{"name":"SUB_OBJECTS_ONLY_INHERIT","features":[4]},{"name":"SUCCESSFUL_ACCESS_ACE_FLAG","features":[4]},{"name":"SYSTEM_ACCESS_FILTER_ACE","features":[4]},{"name":"SYSTEM_ALARM_ACE","features":[4]},{"name":"SYSTEM_ALARM_CALLBACK_ACE","features":[4]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE","features":[4]},{"name":"SYSTEM_ALARM_OBJECT_ACE","features":[4]},{"name":"SYSTEM_AUDIT_ACE","features":[4]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE","features":[4]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE","features":[4]},{"name":"SYSTEM_AUDIT_OBJECT_ACE","features":[4]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_FLAGS","features":[4]},{"name":"SYSTEM_MANDATORY_LABEL_ACE","features":[4]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[4]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE","features":[4]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE","features":[4]},{"name":"SecurityAnonymous","features":[4]},{"name":"SecurityDelegation","features":[4]},{"name":"SecurityIdentification","features":[4]},{"name":"SecurityImpersonation","features":[4]},{"name":"SetAclInformation","features":[1,4]},{"name":"SetCachedSigningLevel","features":[1,4]},{"name":"SetFileSecurityA","features":[1,4]},{"name":"SetFileSecurityW","features":[1,4]},{"name":"SetKernelObjectSecurity","features":[1,4]},{"name":"SetPrivateObjectSecurity","features":[1,4]},{"name":"SetPrivateObjectSecurityEx","features":[1,4]},{"name":"SetSecurityAccessMask","features":[4]},{"name":"SetSecurityDescriptorControl","features":[1,4]},{"name":"SetSecurityDescriptorDacl","features":[1,4]},{"name":"SetSecurityDescriptorGroup","features":[1,4]},{"name":"SetSecurityDescriptorOwner","features":[1,4]},{"name":"SetSecurityDescriptorRMControl","features":[4]},{"name":"SetSecurityDescriptorSacl","features":[1,4]},{"name":"SetTokenInformation","features":[1,4]},{"name":"SetUserObjectSecurity","features":[1,4]},{"name":"SidTypeAlias","features":[4]},{"name":"SidTypeComputer","features":[4]},{"name":"SidTypeDeletedAccount","features":[4]},{"name":"SidTypeDomain","features":[4]},{"name":"SidTypeGroup","features":[4]},{"name":"SidTypeInvalid","features":[4]},{"name":"SidTypeLabel","features":[4]},{"name":"SidTypeLogonSession","features":[4]},{"name":"SidTypeUnknown","features":[4]},{"name":"SidTypeUser","features":[4]},{"name":"SidTypeWellKnownGroup","features":[4]},{"name":"TOKEN_ACCESS_INFORMATION","features":[1,4]},{"name":"TOKEN_ACCESS_MASK","features":[4]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE","features":[4]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE_WIN8","features":[4]},{"name":"TOKEN_ACCESS_SYSTEM_SECURITY","features":[4]},{"name":"TOKEN_ADJUST_DEFAULT","features":[4]},{"name":"TOKEN_ADJUST_GROUPS","features":[4]},{"name":"TOKEN_ADJUST_PRIVILEGES","features":[4]},{"name":"TOKEN_ADJUST_SESSIONID","features":[4]},{"name":"TOKEN_ALL_ACCESS","features":[4]},{"name":"TOKEN_APPCONTAINER_INFORMATION","features":[1,4]},{"name":"TOKEN_ASSIGN_PRIMARY","features":[4]},{"name":"TOKEN_AUDIT_POLICY","features":[4]},{"name":"TOKEN_CONTROL","features":[1,4]},{"name":"TOKEN_DEFAULT_DACL","features":[4]},{"name":"TOKEN_DELETE","features":[4]},{"name":"TOKEN_DEVICE_CLAIMS","features":[4]},{"name":"TOKEN_DUPLICATE","features":[4]},{"name":"TOKEN_ELEVATION","features":[4]},{"name":"TOKEN_ELEVATION_TYPE","features":[4]},{"name":"TOKEN_EXECUTE","features":[4]},{"name":"TOKEN_GROUPS","features":[1,4]},{"name":"TOKEN_GROUPS_AND_PRIVILEGES","features":[1,4]},{"name":"TOKEN_IMPERSONATE","features":[4]},{"name":"TOKEN_INFORMATION_CLASS","features":[4]},{"name":"TOKEN_LINKED_TOKEN","features":[1,4]},{"name":"TOKEN_MANDATORY_LABEL","features":[1,4]},{"name":"TOKEN_MANDATORY_POLICY","features":[4]},{"name":"TOKEN_MANDATORY_POLICY_ID","features":[4]},{"name":"TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN","features":[4]},{"name":"TOKEN_MANDATORY_POLICY_NO_WRITE_UP","features":[4]},{"name":"TOKEN_MANDATORY_POLICY_OFF","features":[4]},{"name":"TOKEN_MANDATORY_POLICY_VALID_MASK","features":[4]},{"name":"TOKEN_ORIGIN","features":[1,4]},{"name":"TOKEN_OWNER","features":[1,4]},{"name":"TOKEN_PRIMARY_GROUP","features":[1,4]},{"name":"TOKEN_PRIVILEGES","features":[1,4]},{"name":"TOKEN_PRIVILEGES_ATTRIBUTES","features":[4]},{"name":"TOKEN_QUERY","features":[4]},{"name":"TOKEN_QUERY_SOURCE","features":[4]},{"name":"TOKEN_READ","features":[4]},{"name":"TOKEN_READ_CONTROL","features":[4]},{"name":"TOKEN_SOURCE","features":[1,4]},{"name":"TOKEN_STATISTICS","features":[1,4]},{"name":"TOKEN_TRUST_CONSTRAINT_MASK","features":[4]},{"name":"TOKEN_TYPE","features":[4]},{"name":"TOKEN_USER","features":[1,4]},{"name":"TOKEN_USER_CLAIMS","features":[4]},{"name":"TOKEN_WRITE","features":[4]},{"name":"TOKEN_WRITE_DAC","features":[4]},{"name":"TOKEN_WRITE_OWNER","features":[4]},{"name":"TokenAccessInformation","features":[4]},{"name":"TokenAppContainerNumber","features":[4]},{"name":"TokenAppContainerSid","features":[4]},{"name":"TokenAuditPolicy","features":[4]},{"name":"TokenBnoIsolation","features":[4]},{"name":"TokenCapabilities","features":[4]},{"name":"TokenChildProcessFlags","features":[4]},{"name":"TokenDefaultDacl","features":[4]},{"name":"TokenDeviceClaimAttributes","features":[4]},{"name":"TokenDeviceGroups","features":[4]},{"name":"TokenElevation","features":[4]},{"name":"TokenElevationType","features":[4]},{"name":"TokenElevationTypeDefault","features":[4]},{"name":"TokenElevationTypeFull","features":[4]},{"name":"TokenElevationTypeLimited","features":[4]},{"name":"TokenGroups","features":[4]},{"name":"TokenGroupsAndPrivileges","features":[4]},{"name":"TokenHasRestrictions","features":[4]},{"name":"TokenImpersonation","features":[4]},{"name":"TokenImpersonationLevel","features":[4]},{"name":"TokenIntegrityLevel","features":[4]},{"name":"TokenIsAppContainer","features":[4]},{"name":"TokenIsAppSilo","features":[4]},{"name":"TokenIsLessPrivilegedAppContainer","features":[4]},{"name":"TokenIsRestricted","features":[4]},{"name":"TokenIsSandboxed","features":[4]},{"name":"TokenLinkedToken","features":[4]},{"name":"TokenLogonSid","features":[4]},{"name":"TokenMandatoryPolicy","features":[4]},{"name":"TokenOrigin","features":[4]},{"name":"TokenOwner","features":[4]},{"name":"TokenPrimary","features":[4]},{"name":"TokenPrimaryGroup","features":[4]},{"name":"TokenPrivateNameSpace","features":[4]},{"name":"TokenPrivileges","features":[4]},{"name":"TokenProcessTrustLevel","features":[4]},{"name":"TokenRestrictedDeviceClaimAttributes","features":[4]},{"name":"TokenRestrictedDeviceGroups","features":[4]},{"name":"TokenRestrictedSids","features":[4]},{"name":"TokenRestrictedUserClaimAttributes","features":[4]},{"name":"TokenSandBoxInert","features":[4]},{"name":"TokenSecurityAttributes","features":[4]},{"name":"TokenSessionId","features":[4]},{"name":"TokenSessionReference","features":[4]},{"name":"TokenSingletonAttributes","features":[4]},{"name":"TokenSource","features":[4]},{"name":"TokenStatistics","features":[4]},{"name":"TokenType","features":[4]},{"name":"TokenUIAccess","features":[4]},{"name":"TokenUser","features":[4]},{"name":"TokenUserClaimAttributes","features":[4]},{"name":"TokenVirtualizationAllowed","features":[4]},{"name":"TokenVirtualizationEnabled","features":[4]},{"name":"UNPROTECTED_DACL_SECURITY_INFORMATION","features":[4]},{"name":"UNPROTECTED_SACL_SECURITY_INFORMATION","features":[4]},{"name":"WELL_KNOWN_SID_TYPE","features":[4]},{"name":"WRITE_RESTRICTED","features":[4]},{"name":"WinAccountAdministratorSid","features":[4]},{"name":"WinAccountCertAdminsSid","features":[4]},{"name":"WinAccountCloneableControllersSid","features":[4]},{"name":"WinAccountComputersSid","features":[4]},{"name":"WinAccountControllersSid","features":[4]},{"name":"WinAccountDefaultSystemManagedSid","features":[4]},{"name":"WinAccountDomainAdminsSid","features":[4]},{"name":"WinAccountDomainGuestsSid","features":[4]},{"name":"WinAccountDomainUsersSid","features":[4]},{"name":"WinAccountEnterpriseAdminsSid","features":[4]},{"name":"WinAccountEnterpriseKeyAdminsSid","features":[4]},{"name":"WinAccountGuestSid","features":[4]},{"name":"WinAccountKeyAdminsSid","features":[4]},{"name":"WinAccountKrbtgtSid","features":[4]},{"name":"WinAccountPolicyAdminsSid","features":[4]},{"name":"WinAccountProtectedUsersSid","features":[4]},{"name":"WinAccountRasAndIasServersSid","features":[4]},{"name":"WinAccountReadonlyControllersSid","features":[4]},{"name":"WinAccountSchemaAdminsSid","features":[4]},{"name":"WinAnonymousSid","features":[4]},{"name":"WinApplicationPackageAuthoritySid","features":[4]},{"name":"WinAuthenticatedUserSid","features":[4]},{"name":"WinAuthenticationAuthorityAssertedSid","features":[4]},{"name":"WinAuthenticationFreshKeyAuthSid","features":[4]},{"name":"WinAuthenticationKeyPropertyAttestationSid","features":[4]},{"name":"WinAuthenticationKeyPropertyMFASid","features":[4]},{"name":"WinAuthenticationKeyTrustSid","features":[4]},{"name":"WinAuthenticationServiceAssertedSid","features":[4]},{"name":"WinBatchSid","features":[4]},{"name":"WinBuiltinAccessControlAssistanceOperatorsSid","features":[4]},{"name":"WinBuiltinAccountOperatorsSid","features":[4]},{"name":"WinBuiltinAdministratorsSid","features":[4]},{"name":"WinBuiltinAnyPackageSid","features":[4]},{"name":"WinBuiltinAuthorizationAccessSid","features":[4]},{"name":"WinBuiltinBackupOperatorsSid","features":[4]},{"name":"WinBuiltinCertSvcDComAccessGroup","features":[4]},{"name":"WinBuiltinCryptoOperatorsSid","features":[4]},{"name":"WinBuiltinDCOMUsersSid","features":[4]},{"name":"WinBuiltinDefaultSystemManagedGroupSid","features":[4]},{"name":"WinBuiltinDeviceOwnersSid","features":[4]},{"name":"WinBuiltinDomainSid","features":[4]},{"name":"WinBuiltinEventLogReadersGroup","features":[4]},{"name":"WinBuiltinGuestsSid","features":[4]},{"name":"WinBuiltinHyperVAdminsSid","features":[4]},{"name":"WinBuiltinIUsersSid","features":[4]},{"name":"WinBuiltinIncomingForestTrustBuildersSid","features":[4]},{"name":"WinBuiltinNetworkConfigurationOperatorsSid","features":[4]},{"name":"WinBuiltinPerfLoggingUsersSid","features":[4]},{"name":"WinBuiltinPerfMonitoringUsersSid","features":[4]},{"name":"WinBuiltinPowerUsersSid","features":[4]},{"name":"WinBuiltinPreWindows2000CompatibleAccessSid","features":[4]},{"name":"WinBuiltinPrintOperatorsSid","features":[4]},{"name":"WinBuiltinRDSEndpointServersSid","features":[4]},{"name":"WinBuiltinRDSManagementServersSid","features":[4]},{"name":"WinBuiltinRDSRemoteAccessServersSid","features":[4]},{"name":"WinBuiltinRemoteDesktopUsersSid","features":[4]},{"name":"WinBuiltinRemoteManagementUsersSid","features":[4]},{"name":"WinBuiltinReplicatorSid","features":[4]},{"name":"WinBuiltinStorageReplicaAdminsSid","features":[4]},{"name":"WinBuiltinSystemOperatorsSid","features":[4]},{"name":"WinBuiltinTerminalServerLicenseServersSid","features":[4]},{"name":"WinBuiltinUsersSid","features":[4]},{"name":"WinCacheablePrincipalsGroupSid","features":[4]},{"name":"WinCapabilityAppointmentsSid","features":[4]},{"name":"WinCapabilityContactsSid","features":[4]},{"name":"WinCapabilityDocumentsLibrarySid","features":[4]},{"name":"WinCapabilityEnterpriseAuthenticationSid","features":[4]},{"name":"WinCapabilityInternetClientServerSid","features":[4]},{"name":"WinCapabilityInternetClientSid","features":[4]},{"name":"WinCapabilityMusicLibrarySid","features":[4]},{"name":"WinCapabilityPicturesLibrarySid","features":[4]},{"name":"WinCapabilityPrivateNetworkClientServerSid","features":[4]},{"name":"WinCapabilityRemovableStorageSid","features":[4]},{"name":"WinCapabilitySharedUserCertificatesSid","features":[4]},{"name":"WinCapabilityVideosLibrarySid","features":[4]},{"name":"WinConsoleLogonSid","features":[4]},{"name":"WinCreatorGroupServerSid","features":[4]},{"name":"WinCreatorGroupSid","features":[4]},{"name":"WinCreatorOwnerRightsSid","features":[4]},{"name":"WinCreatorOwnerServerSid","features":[4]},{"name":"WinCreatorOwnerSid","features":[4]},{"name":"WinDialupSid","features":[4]},{"name":"WinDigestAuthenticationSid","features":[4]},{"name":"WinEnterpriseControllersSid","features":[4]},{"name":"WinEnterpriseReadonlyControllersSid","features":[4]},{"name":"WinHighLabelSid","features":[4]},{"name":"WinIUserSid","features":[4]},{"name":"WinInteractiveSid","features":[4]},{"name":"WinLocalAccountAndAdministratorSid","features":[4]},{"name":"WinLocalAccountSid","features":[4]},{"name":"WinLocalLogonSid","features":[4]},{"name":"WinLocalServiceSid","features":[4]},{"name":"WinLocalSid","features":[4]},{"name":"WinLocalSystemSid","features":[4]},{"name":"WinLogonIdsSid","features":[4]},{"name":"WinLowLabelSid","features":[4]},{"name":"WinMediumLabelSid","features":[4]},{"name":"WinMediumPlusLabelSid","features":[4]},{"name":"WinNTLMAuthenticationSid","features":[4]},{"name":"WinNetworkServiceSid","features":[4]},{"name":"WinNetworkSid","features":[4]},{"name":"WinNewEnterpriseReadonlyControllersSid","features":[4]},{"name":"WinNonCacheablePrincipalsGroupSid","features":[4]},{"name":"WinNtAuthoritySid","features":[4]},{"name":"WinNullSid","features":[4]},{"name":"WinOtherOrganizationSid","features":[4]},{"name":"WinProxySid","features":[4]},{"name":"WinRemoteLogonIdSid","features":[4]},{"name":"WinRestrictedCodeSid","features":[4]},{"name":"WinSChannelAuthenticationSid","features":[4]},{"name":"WinSelfSid","features":[4]},{"name":"WinServiceSid","features":[4]},{"name":"WinSystemLabelSid","features":[4]},{"name":"WinTerminalServerSid","features":[4]},{"name":"WinThisOrganizationCertificateSid","features":[4]},{"name":"WinThisOrganizationSid","features":[4]},{"name":"WinUntrustedLabelSid","features":[4]},{"name":"WinUserModeDriversSid","features":[4]},{"name":"WinWorldSid","features":[4]},{"name":"WinWriteRestrictedCodeSid","features":[4]},{"name":"cwcFILENAMESUFFIXMAX","features":[4]},{"name":"cwcHRESULTSTRING","features":[4]},{"name":"szLBRACE","features":[4]},{"name":"szLPAREN","features":[4]},{"name":"szRBRACE","features":[4]},{"name":"szRPAREN","features":[4]},{"name":"wszCERTENROLLSHAREPATH","features":[4]},{"name":"wszFCSAPARM_CERTFILENAMESUFFIX","features":[4]},{"name":"wszFCSAPARM_CONFIGDN","features":[4]},{"name":"wszFCSAPARM_CRLDELTAFILENAMESUFFIX","features":[4]},{"name":"wszFCSAPARM_CRLFILENAMESUFFIX","features":[4]},{"name":"wszFCSAPARM_DOMAINDN","features":[4]},{"name":"wszFCSAPARM_DSCACERTATTRIBUTE","features":[4]},{"name":"wszFCSAPARM_DSCRLATTRIBUTE","features":[4]},{"name":"wszFCSAPARM_DSCROSSCERTPAIRATTRIBUTE","features":[4]},{"name":"wszFCSAPARM_DSKRACERTATTRIBUTE","features":[4]},{"name":"wszFCSAPARM_DSUSERCERTATTRIBUTE","features":[4]},{"name":"wszFCSAPARM_SANITIZEDCANAME","features":[4]},{"name":"wszFCSAPARM_SANITIZEDCANAMEHASH","features":[4]},{"name":"wszFCSAPARM_SERVERDNSNAME","features":[4]},{"name":"wszFCSAPARM_SERVERSHORTNAME","features":[4]},{"name":"wszLBRACE","features":[4]},{"name":"wszLPAREN","features":[4]},{"name":"wszRBRACE","features":[4]},{"name":"wszRPAREN","features":[4]}],"480":[{"name":"SAFER_CODE_PROPERTIES_V1","features":[1,117,68]},{"name":"SAFER_CODE_PROPERTIES_V2","features":[1,117,68]},{"name":"SAFER_COMPUTE_TOKEN_FROM_LEVEL_FLAGS","features":[117]},{"name":"SAFER_CRITERIA_APPX_PACKAGE","features":[117]},{"name":"SAFER_CRITERIA_AUTHENTICODE","features":[117]},{"name":"SAFER_CRITERIA_IMAGEHASH","features":[117]},{"name":"SAFER_CRITERIA_IMAGEPATH","features":[117]},{"name":"SAFER_CRITERIA_IMAGEPATH_NT","features":[117]},{"name":"SAFER_CRITERIA_NOSIGNEDHASH","features":[117]},{"name":"SAFER_CRITERIA_URLZONE","features":[117]},{"name":"SAFER_HASH_IDENTIFICATION","features":[1,117,68]},{"name":"SAFER_HASH_IDENTIFICATION2","features":[1,117,68]},{"name":"SAFER_IDENTIFICATION_HEADER","features":[1,117]},{"name":"SAFER_IDENTIFICATION_TYPES","features":[117]},{"name":"SAFER_LEVELID_CONSTRAINED","features":[117]},{"name":"SAFER_LEVELID_DISALLOWED","features":[117]},{"name":"SAFER_LEVELID_FULLYTRUSTED","features":[117]},{"name":"SAFER_LEVELID_NORMALUSER","features":[117]},{"name":"SAFER_LEVELID_UNTRUSTED","features":[117]},{"name":"SAFER_LEVEL_OPEN","features":[117]},{"name":"SAFER_MAX_DESCRIPTION_SIZE","features":[117]},{"name":"SAFER_MAX_FRIENDLYNAME_SIZE","features":[117]},{"name":"SAFER_MAX_HASH_SIZE","features":[117]},{"name":"SAFER_OBJECT_INFO_CLASS","features":[117]},{"name":"SAFER_PATHNAME_IDENTIFICATION","features":[1,117]},{"name":"SAFER_POLICY_BLOCK_CLIENT_UI","features":[117]},{"name":"SAFER_POLICY_HASH_DUPLICATE","features":[117]},{"name":"SAFER_POLICY_INFO_CLASS","features":[117]},{"name":"SAFER_POLICY_JOBID_CONSTRAINED","features":[117]},{"name":"SAFER_POLICY_JOBID_MASK","features":[117]},{"name":"SAFER_POLICY_JOBID_UNTRUSTED","features":[117]},{"name":"SAFER_POLICY_ONLY_AUDIT","features":[117]},{"name":"SAFER_POLICY_ONLY_EXES","features":[117]},{"name":"SAFER_POLICY_SANDBOX_INERT","features":[117]},{"name":"SAFER_POLICY_UIFLAGS_HIDDEN","features":[117]},{"name":"SAFER_POLICY_UIFLAGS_INFORMATION_PROMPT","features":[117]},{"name":"SAFER_POLICY_UIFLAGS_MASK","features":[117]},{"name":"SAFER_POLICY_UIFLAGS_OPTION_PROMPT","features":[117]},{"name":"SAFER_SCOPEID_MACHINE","features":[117]},{"name":"SAFER_SCOPEID_USER","features":[117]},{"name":"SAFER_TOKEN_COMPARE_ONLY","features":[117]},{"name":"SAFER_TOKEN_MAKE_INERT","features":[117]},{"name":"SAFER_TOKEN_NULL_IF_EQUAL","features":[117]},{"name":"SAFER_TOKEN_WANT_FLAGS","features":[117]},{"name":"SAFER_URLZONE_IDENTIFICATION","features":[1,117]},{"name":"SRP_POLICY_APPX","features":[117]},{"name":"SRP_POLICY_DLL","features":[117]},{"name":"SRP_POLICY_EXE","features":[117]},{"name":"SRP_POLICY_MANAGEDINSTALLER","features":[117]},{"name":"SRP_POLICY_MSI","features":[117]},{"name":"SRP_POLICY_NOV2","features":[117]},{"name":"SRP_POLICY_SCRIPT","features":[117]},{"name":"SRP_POLICY_SHELL","features":[117]},{"name":"SRP_POLICY_WLDPCONFIGCI","features":[117]},{"name":"SRP_POLICY_WLDPMSI","features":[117]},{"name":"SRP_POLICY_WLDPSCRIPT","features":[117]},{"name":"SaferCloseLevel","features":[1,117]},{"name":"SaferComputeTokenFromLevel","features":[1,117]},{"name":"SaferCreateLevel","features":[1,117]},{"name":"SaferGetLevelInformation","features":[1,117]},{"name":"SaferGetPolicyInformation","features":[1,117]},{"name":"SaferIdentifyLevel","features":[1,117,68]},{"name":"SaferIdentityDefault","features":[117]},{"name":"SaferIdentityTypeCertificate","features":[117]},{"name":"SaferIdentityTypeImageHash","features":[117]},{"name":"SaferIdentityTypeImageName","features":[117]},{"name":"SaferIdentityTypeUrlZone","features":[117]},{"name":"SaferObjectAllIdentificationGuids","features":[117]},{"name":"SaferObjectBuiltin","features":[117]},{"name":"SaferObjectDefaultOwner","features":[117]},{"name":"SaferObjectDeletedPrivileges","features":[117]},{"name":"SaferObjectDescription","features":[117]},{"name":"SaferObjectDisableMaxPrivilege","features":[117]},{"name":"SaferObjectDisallowed","features":[117]},{"name":"SaferObjectExtendedError","features":[117]},{"name":"SaferObjectFriendlyName","features":[117]},{"name":"SaferObjectInvertDeletedPrivileges","features":[117]},{"name":"SaferObjectLevelId","features":[117]},{"name":"SaferObjectRestrictedSidsAdded","features":[117]},{"name":"SaferObjectRestrictedSidsInverted","features":[117]},{"name":"SaferObjectScopeId","features":[117]},{"name":"SaferObjectSidsToDisable","features":[117]},{"name":"SaferObjectSingleIdentification","features":[117]},{"name":"SaferPolicyAuthenticodeEnabled","features":[117]},{"name":"SaferPolicyDefaultLevel","features":[117]},{"name":"SaferPolicyDefaultLevelFlags","features":[117]},{"name":"SaferPolicyEnableTransparentEnforcement","features":[117]},{"name":"SaferPolicyEvaluateUserScope","features":[117]},{"name":"SaferPolicyLevelList","features":[117]},{"name":"SaferPolicyScopeFlags","features":[117]},{"name":"SaferRecordEventLogEntry","features":[1,117]},{"name":"SaferSetLevelInformation","features":[1,117]},{"name":"SaferSetPolicyInformation","features":[1,117]},{"name":"SaferiIsExecutableFileType","features":[1,117]}],"481":[{"name":"ACCEPT_SECURITY_CONTEXT_FN","features":[23,118]},{"name":"ACCOUNT_ADJUST_PRIVILEGES","features":[23]},{"name":"ACCOUNT_ADJUST_QUOTAS","features":[23]},{"name":"ACCOUNT_ADJUST_SYSTEM_ACCESS","features":[23]},{"name":"ACCOUNT_VIEW","features":[23]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_A","features":[23,118]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_W","features":[23,118]},{"name":"ADD_CREDENTIALS_FN_A","features":[23,118]},{"name":"ADD_CREDENTIALS_FN_W","features":[23,118]},{"name":"APPLY_CONTROL_TOKEN_FN","features":[23,118]},{"name":"ASC_REQ_ALLOCATE_MEMORY","features":[23]},{"name":"ASC_REQ_ALLOW_CONTEXT_REPLAY","features":[23]},{"name":"ASC_REQ_ALLOW_MISSING_BINDINGS","features":[23]},{"name":"ASC_REQ_ALLOW_NON_USER_LOGONS","features":[23]},{"name":"ASC_REQ_ALLOW_NULL_SESSION","features":[23]},{"name":"ASC_REQ_CALL_LEVEL","features":[23]},{"name":"ASC_REQ_CONFIDENTIALITY","features":[23]},{"name":"ASC_REQ_CONNECTION","features":[23]},{"name":"ASC_REQ_DATAGRAM","features":[23]},{"name":"ASC_REQ_DELEGATE","features":[23]},{"name":"ASC_REQ_EXTENDED_ERROR","features":[23]},{"name":"ASC_REQ_FLAGS","features":[23]},{"name":"ASC_REQ_FRAGMENT_SUPPLIED","features":[23]},{"name":"ASC_REQ_FRAGMENT_TO_FIT","features":[23]},{"name":"ASC_REQ_HIGH_FLAGS","features":[23]},{"name":"ASC_REQ_IDENTIFY","features":[23]},{"name":"ASC_REQ_INTEGRITY","features":[23]},{"name":"ASC_REQ_LICENSING","features":[23]},{"name":"ASC_REQ_MESSAGES","features":[23]},{"name":"ASC_REQ_MUTUAL_AUTH","features":[23]},{"name":"ASC_REQ_NO_TOKEN","features":[23]},{"name":"ASC_REQ_PROXY_BINDINGS","features":[23]},{"name":"ASC_REQ_REPLAY_DETECT","features":[23]},{"name":"ASC_REQ_SEQUENCE_DETECT","features":[23]},{"name":"ASC_REQ_SESSION_TICKET","features":[23]},{"name":"ASC_REQ_STREAM","features":[23]},{"name":"ASC_REQ_USE_DCE_STYLE","features":[23]},{"name":"ASC_REQ_USE_SESSION_KEY","features":[23]},{"name":"ASC_RET_ALLOCATED_MEMORY","features":[23]},{"name":"ASC_RET_ALLOW_CONTEXT_REPLAY","features":[23]},{"name":"ASC_RET_ALLOW_NON_USER_LOGONS","features":[23]},{"name":"ASC_RET_CALL_LEVEL","features":[23]},{"name":"ASC_RET_CONFIDENTIALITY","features":[23]},{"name":"ASC_RET_CONNECTION","features":[23]},{"name":"ASC_RET_DATAGRAM","features":[23]},{"name":"ASC_RET_DELEGATE","features":[23]},{"name":"ASC_RET_EXTENDED_ERROR","features":[23]},{"name":"ASC_RET_FRAGMENT_ONLY","features":[23]},{"name":"ASC_RET_IDENTIFY","features":[23]},{"name":"ASC_RET_INTEGRITY","features":[23]},{"name":"ASC_RET_LICENSING","features":[23]},{"name":"ASC_RET_MESSAGES","features":[23]},{"name":"ASC_RET_MUTUAL_AUTH","features":[23]},{"name":"ASC_RET_NO_ADDITIONAL_TOKEN","features":[23]},{"name":"ASC_RET_NO_TOKEN","features":[23]},{"name":"ASC_RET_NULL_SESSION","features":[23]},{"name":"ASC_RET_REPLAY_DETECT","features":[23]},{"name":"ASC_RET_SEQUENCE_DETECT","features":[23]},{"name":"ASC_RET_SESSION_TICKET","features":[23]},{"name":"ASC_RET_STREAM","features":[23]},{"name":"ASC_RET_THIRD_LEG_FAILED","features":[23]},{"name":"ASC_RET_USED_DCE_STYLE","features":[23]},{"name":"ASC_RET_USE_SESSION_KEY","features":[23]},{"name":"AUDIT_ENUMERATE_USERS","features":[23]},{"name":"AUDIT_POLICY_INFORMATION","features":[23]},{"name":"AUDIT_QUERY_MISC_POLICY","features":[23]},{"name":"AUDIT_QUERY_SYSTEM_POLICY","features":[23]},{"name":"AUDIT_QUERY_USER_POLICY","features":[23]},{"name":"AUDIT_SET_MISC_POLICY","features":[23]},{"name":"AUDIT_SET_SYSTEM_POLICY","features":[23]},{"name":"AUDIT_SET_USER_POLICY","features":[23]},{"name":"AUTH_REQ_ALLOW_ENC_TKT_IN_SKEY","features":[23]},{"name":"AUTH_REQ_ALLOW_FORWARDABLE","features":[23]},{"name":"AUTH_REQ_ALLOW_NOADDRESS","features":[23]},{"name":"AUTH_REQ_ALLOW_POSTDATE","features":[23]},{"name":"AUTH_REQ_ALLOW_PROXIABLE","features":[23]},{"name":"AUTH_REQ_ALLOW_RENEWABLE","features":[23]},{"name":"AUTH_REQ_ALLOW_S4U_DELEGATE","features":[23]},{"name":"AUTH_REQ_ALLOW_VALIDATE","features":[23]},{"name":"AUTH_REQ_OK_AS_DELEGATE","features":[23]},{"name":"AUTH_REQ_PREAUTH_REQUIRED","features":[23]},{"name":"AUTH_REQ_TRANSITIVE_TRUST","features":[23]},{"name":"AUTH_REQ_VALIDATE_CLIENT","features":[23]},{"name":"AcceptSecurityContext","features":[23,118]},{"name":"AccountDomainInformation","features":[23]},{"name":"AcquireCredentialsHandleA","features":[23,118]},{"name":"AcquireCredentialsHandleW","features":[23,118]},{"name":"AddCredentialsA","features":[23,118]},{"name":"AddCredentialsW","features":[23,118]},{"name":"AddSecurityPackageA","features":[23]},{"name":"AddSecurityPackageW","features":[23]},{"name":"ApplyControlToken","features":[23,118]},{"name":"AuditCategoryAccountLogon","features":[23]},{"name":"AuditCategoryAccountManagement","features":[23]},{"name":"AuditCategoryDetailedTracking","features":[23]},{"name":"AuditCategoryDirectoryServiceAccess","features":[23]},{"name":"AuditCategoryLogon","features":[23]},{"name":"AuditCategoryObjectAccess","features":[23]},{"name":"AuditCategoryPolicyChange","features":[23]},{"name":"AuditCategoryPrivilegeUse","features":[23]},{"name":"AuditCategorySystem","features":[23]},{"name":"AuditComputeEffectivePolicyBySid","features":[1,23]},{"name":"AuditComputeEffectivePolicyByToken","features":[1,23]},{"name":"AuditEnumerateCategories","features":[1,23]},{"name":"AuditEnumeratePerUserPolicy","features":[1,23]},{"name":"AuditEnumerateSubCategories","features":[1,23]},{"name":"AuditFree","features":[23]},{"name":"AuditLookupCategoryGuidFromCategoryId","features":[1,23]},{"name":"AuditLookupCategoryIdFromCategoryGuid","features":[1,23]},{"name":"AuditLookupCategoryNameA","features":[1,23]},{"name":"AuditLookupCategoryNameW","features":[1,23]},{"name":"AuditLookupSubCategoryNameA","features":[1,23]},{"name":"AuditLookupSubCategoryNameW","features":[1,23]},{"name":"AuditQueryGlobalSaclA","features":[1,23]},{"name":"AuditQueryGlobalSaclW","features":[1,23]},{"name":"AuditQueryPerUserPolicy","features":[1,23]},{"name":"AuditQuerySecurity","features":[1,23]},{"name":"AuditQuerySystemPolicy","features":[1,23]},{"name":"AuditSetGlobalSaclA","features":[1,23]},{"name":"AuditSetGlobalSaclW","features":[1,23]},{"name":"AuditSetPerUserPolicy","features":[1,23]},{"name":"AuditSetSecurity","features":[1,23]},{"name":"AuditSetSystemPolicy","features":[1,23]},{"name":"Audit_AccountLogon","features":[23]},{"name":"Audit_AccountLogon_CredentialValidation","features":[23]},{"name":"Audit_AccountLogon_KerbCredentialValidation","features":[23]},{"name":"Audit_AccountLogon_Kerberos","features":[23]},{"name":"Audit_AccountLogon_Others","features":[23]},{"name":"Audit_AccountManagement","features":[23]},{"name":"Audit_AccountManagement_ApplicationGroup","features":[23]},{"name":"Audit_AccountManagement_ComputerAccount","features":[23]},{"name":"Audit_AccountManagement_DistributionGroup","features":[23]},{"name":"Audit_AccountManagement_Others","features":[23]},{"name":"Audit_AccountManagement_SecurityGroup","features":[23]},{"name":"Audit_AccountManagement_UserAccount","features":[23]},{"name":"Audit_DSAccess_DSAccess","features":[23]},{"name":"Audit_DetailedTracking","features":[23]},{"name":"Audit_DetailedTracking_DpapiActivity","features":[23]},{"name":"Audit_DetailedTracking_PnpActivity","features":[23]},{"name":"Audit_DetailedTracking_ProcessCreation","features":[23]},{"name":"Audit_DetailedTracking_ProcessTermination","features":[23]},{"name":"Audit_DetailedTracking_RpcCall","features":[23]},{"name":"Audit_DetailedTracking_TokenRightAdjusted","features":[23]},{"name":"Audit_DirectoryServiceAccess","features":[23]},{"name":"Audit_DsAccess_AdAuditChanges","features":[23]},{"name":"Audit_Ds_DetailedReplication","features":[23]},{"name":"Audit_Ds_Replication","features":[23]},{"name":"Audit_Logon","features":[23]},{"name":"Audit_Logon_AccountLockout","features":[23]},{"name":"Audit_Logon_Claims","features":[23]},{"name":"Audit_Logon_Groups","features":[23]},{"name":"Audit_Logon_IPSecMainMode","features":[23]},{"name":"Audit_Logon_IPSecQuickMode","features":[23]},{"name":"Audit_Logon_IPSecUserMode","features":[23]},{"name":"Audit_Logon_Logoff","features":[23]},{"name":"Audit_Logon_Logon","features":[23]},{"name":"Audit_Logon_NPS","features":[23]},{"name":"Audit_Logon_Others","features":[23]},{"name":"Audit_Logon_SpecialLogon","features":[23]},{"name":"Audit_ObjectAccess","features":[23]},{"name":"Audit_ObjectAccess_ApplicationGenerated","features":[23]},{"name":"Audit_ObjectAccess_CbacStaging","features":[23]},{"name":"Audit_ObjectAccess_CertificationServices","features":[23]},{"name":"Audit_ObjectAccess_DetailedFileShare","features":[23]},{"name":"Audit_ObjectAccess_FileSystem","features":[23]},{"name":"Audit_ObjectAccess_FirewallConnection","features":[23]},{"name":"Audit_ObjectAccess_FirewallPacketDrops","features":[23]},{"name":"Audit_ObjectAccess_Handle","features":[23]},{"name":"Audit_ObjectAccess_Kernel","features":[23]},{"name":"Audit_ObjectAccess_Other","features":[23]},{"name":"Audit_ObjectAccess_Registry","features":[23]},{"name":"Audit_ObjectAccess_RemovableStorage","features":[23]},{"name":"Audit_ObjectAccess_Sam","features":[23]},{"name":"Audit_ObjectAccess_Share","features":[23]},{"name":"Audit_PolicyChange","features":[23]},{"name":"Audit_PolicyChange_AuditPolicy","features":[23]},{"name":"Audit_PolicyChange_AuthenticationPolicy","features":[23]},{"name":"Audit_PolicyChange_AuthorizationPolicy","features":[23]},{"name":"Audit_PolicyChange_MpsscvRulePolicy","features":[23]},{"name":"Audit_PolicyChange_Others","features":[23]},{"name":"Audit_PolicyChange_WfpIPSecPolicy","features":[23]},{"name":"Audit_PrivilegeUse","features":[23]},{"name":"Audit_PrivilegeUse_NonSensitive","features":[23]},{"name":"Audit_PrivilegeUse_Others","features":[23]},{"name":"Audit_PrivilegeUse_Sensitive","features":[23]},{"name":"Audit_System","features":[23]},{"name":"Audit_System_IPSecDriverEvents","features":[23]},{"name":"Audit_System_Integrity","features":[23]},{"name":"Audit_System_Others","features":[23]},{"name":"Audit_System_SecurityStateChange","features":[23]},{"name":"Audit_System_SecuritySubsystemExtension","features":[23]},{"name":"CENTRAL_ACCESS_POLICY","features":[1,23]},{"name":"CENTRAL_ACCESS_POLICY_ENTRY","features":[23]},{"name":"CENTRAL_ACCESS_POLICY_OWNER_RIGHTS_PRESENT_FLAG","features":[23]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_FLAG","features":[23]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_OWNER_RIGHTS_PRESENT_FLAG","features":[23]},{"name":"CHANGE_PASSWORD_FN_A","features":[1,23]},{"name":"CHANGE_PASSWORD_FN_W","features":[1,23]},{"name":"CLEAR_BLOCK","features":[23]},{"name":"CLEAR_BLOCK_LENGTH","features":[23]},{"name":"CLOUDAP_NAME","features":[23]},{"name":"CLOUDAP_NAME_W","features":[23]},{"name":"COMPLETE_AUTH_TOKEN_FN","features":[23,118]},{"name":"CREDP_FLAGS_CLEAR_PASSWORD","features":[23]},{"name":"CREDP_FLAGS_DONT_CACHE_TI","features":[23]},{"name":"CREDP_FLAGS_IN_PROCESS","features":[23]},{"name":"CREDP_FLAGS_TRUSTED_CALLER","features":[23]},{"name":"CREDP_FLAGS_USER_ENCRYPTED_PASSWORD","features":[23]},{"name":"CREDP_FLAGS_USE_MIDL_HEAP","features":[23]},{"name":"CREDP_FLAGS_VALIDATE_PROXY_TARGET","features":[23]},{"name":"CRED_FETCH","features":[23]},{"name":"CRED_MARSHALED_TI_SIZE_SIZE","features":[23]},{"name":"CRYPTO_SETTINGS","features":[23]},{"name":"CYPHER_BLOCK_LENGTH","features":[23]},{"name":"CertHashInfo","features":[23]},{"name":"ChangeAccountPasswordA","features":[1,23]},{"name":"ChangeAccountPasswordW","features":[1,23]},{"name":"ClOUDAP_NAME_A","features":[23]},{"name":"CollisionOther","features":[23]},{"name":"CollisionTdo","features":[23]},{"name":"CollisionXref","features":[23]},{"name":"CompleteAuthToken","features":[23,118]},{"name":"CredFetchDPAPI","features":[23]},{"name":"CredFetchDefault","features":[23]},{"name":"CredFetchForced","features":[23]},{"name":"CredFreeCredentialsFn","features":[1,23,118]},{"name":"CredMarshalTargetInfo","features":[1,23,118]},{"name":"CredReadDomainCredentialsFn","features":[1,23,118]},{"name":"CredReadFn","features":[1,23,118]},{"name":"CredUnmarshalTargetInfo","features":[1,23,118]},{"name":"CredWriteFn","features":[1,23,118]},{"name":"CrediUnmarshalandDecodeStringFn","features":[1,23]},{"name":"DECRYPT_MESSAGE_FN","features":[23,118]},{"name":"DEFAULT_TLS_SSP_NAME","features":[23]},{"name":"DEFAULT_TLS_SSP_NAME_A","features":[23]},{"name":"DEFAULT_TLS_SSP_NAME_W","features":[23]},{"name":"DELETE_SECURITY_CONTEXT_FN","features":[23,118]},{"name":"DOMAIN_LOCKOUT_ADMINS","features":[23]},{"name":"DOMAIN_NO_LM_OWF_CHANGE","features":[23]},{"name":"DOMAIN_PASSWORD_COMPLEX","features":[23]},{"name":"DOMAIN_PASSWORD_INFORMATION","features":[23]},{"name":"DOMAIN_PASSWORD_NO_ANON_CHANGE","features":[23]},{"name":"DOMAIN_PASSWORD_NO_CLEAR_CHANGE","features":[23]},{"name":"DOMAIN_PASSWORD_PROPERTIES","features":[23]},{"name":"DOMAIN_PASSWORD_STORE_CLEARTEXT","features":[23]},{"name":"DOMAIN_REFUSE_PASSWORD_CHANGE","features":[23]},{"name":"DS_INET_ADDRESS","features":[23]},{"name":"DS_NETBIOS_ADDRESS","features":[23]},{"name":"DS_UNKNOWN_ADDRESS_TYPE","features":[23]},{"name":"DecryptMessage","features":[23,118]},{"name":"DeleteSecurityContext","features":[23,118]},{"name":"DeleteSecurityPackageA","features":[23]},{"name":"DeleteSecurityPackageW","features":[23]},{"name":"DeprecatedIUMCredKey","features":[23]},{"name":"DnsDomainInformation","features":[23]},{"name":"DomainUserCredKey","features":[23]},{"name":"ENABLE_TLS_CLIENT_EARLY_START","features":[23]},{"name":"ENCRYPTED_CREDENTIALW","features":[1,23,118]},{"name":"ENCRYPT_MESSAGE_FN","features":[23,118]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_A","features":[23]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_W","features":[23]},{"name":"EXPORT_SECURITY_CONTEXT_FLAGS","features":[23]},{"name":"EXPORT_SECURITY_CONTEXT_FN","features":[23,118]},{"name":"EXTENDED_NAME_FORMAT","features":[23]},{"name":"E_RM_UNKNOWN_ERROR","features":[23]},{"name":"EncryptMessage","features":[23,118]},{"name":"EnumerateSecurityPackagesA","features":[23]},{"name":"EnumerateSecurityPackagesW","features":[23]},{"name":"ExportSecurityContext","features":[23,118]},{"name":"ExternallySuppliedCredKey","features":[23]},{"name":"FACILITY_SL_ITF","features":[23]},{"name":"FREE_CONTEXT_BUFFER_FN","features":[23]},{"name":"FREE_CREDENTIALS_HANDLE_FN","features":[23,118]},{"name":"ForestTrustBinaryInfo","features":[23]},{"name":"ForestTrustDomainInfo","features":[23]},{"name":"ForestTrustRecordTypeLast","features":[23]},{"name":"ForestTrustScannerInfo","features":[23]},{"name":"ForestTrustTopLevelName","features":[23]},{"name":"ForestTrustTopLevelNameEx","features":[23]},{"name":"FreeContextBuffer","features":[23]},{"name":"FreeCredentialsHandle","features":[23,118]},{"name":"GetComputerObjectNameA","features":[1,23]},{"name":"GetComputerObjectNameW","features":[1,23]},{"name":"GetUserNameExA","features":[1,23]},{"name":"GetUserNameExW","features":[1,23]},{"name":"ICcgDomainAuthCredentials","features":[23]},{"name":"ID_CAP_SLAPI","features":[23]},{"name":"IMPERSONATE_SECURITY_CONTEXT_FN","features":[23,118]},{"name":"IMPORT_SECURITY_CONTEXT_FN_A","features":[23,118]},{"name":"IMPORT_SECURITY_CONTEXT_FN_W","features":[23,118]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_A","features":[23,118]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_W","features":[23,118]},{"name":"INIT_SECURITY_INTERFACE_A","features":[1,23,118]},{"name":"INIT_SECURITY_INTERFACE_W","features":[1,23,118]},{"name":"ISC_REQ_ALLOCATE_MEMORY","features":[23]},{"name":"ISC_REQ_CALL_LEVEL","features":[23]},{"name":"ISC_REQ_CONFIDENTIALITY","features":[23]},{"name":"ISC_REQ_CONFIDENTIALITY_ONLY","features":[23]},{"name":"ISC_REQ_CONNECTION","features":[23]},{"name":"ISC_REQ_DATAGRAM","features":[23]},{"name":"ISC_REQ_DEFERRED_CRED_VALIDATION","features":[23]},{"name":"ISC_REQ_DELEGATE","features":[23]},{"name":"ISC_REQ_EXTENDED_ERROR","features":[23]},{"name":"ISC_REQ_FLAGS","features":[23]},{"name":"ISC_REQ_FORWARD_CREDENTIALS","features":[23]},{"name":"ISC_REQ_FRAGMENT_SUPPLIED","features":[23]},{"name":"ISC_REQ_FRAGMENT_TO_FIT","features":[23]},{"name":"ISC_REQ_HIGH_FLAGS","features":[23]},{"name":"ISC_REQ_IDENTIFY","features":[23]},{"name":"ISC_REQ_INTEGRITY","features":[23]},{"name":"ISC_REQ_MANUAL_CRED_VALIDATION","features":[23]},{"name":"ISC_REQ_MESSAGES","features":[23]},{"name":"ISC_REQ_MUTUAL_AUTH","features":[23]},{"name":"ISC_REQ_NO_INTEGRITY","features":[23]},{"name":"ISC_REQ_NO_POST_HANDSHAKE_AUTH","features":[23]},{"name":"ISC_REQ_NULL_SESSION","features":[23]},{"name":"ISC_REQ_PROMPT_FOR_CREDS","features":[23]},{"name":"ISC_REQ_REPLAY_DETECT","features":[23]},{"name":"ISC_REQ_RESERVED1","features":[23]},{"name":"ISC_REQ_SEQUENCE_DETECT","features":[23]},{"name":"ISC_REQ_STREAM","features":[23]},{"name":"ISC_REQ_UNVERIFIED_TARGET_NAME","features":[23]},{"name":"ISC_REQ_USE_DCE_STYLE","features":[23]},{"name":"ISC_REQ_USE_HTTP_STYLE","features":[23]},{"name":"ISC_REQ_USE_SESSION_KEY","features":[23]},{"name":"ISC_REQ_USE_SUPPLIED_CREDS","features":[23]},{"name":"ISC_RET_ALLOCATED_MEMORY","features":[23]},{"name":"ISC_RET_CALL_LEVEL","features":[23]},{"name":"ISC_RET_CONFIDENTIALITY","features":[23]},{"name":"ISC_RET_CONFIDENTIALITY_ONLY","features":[23]},{"name":"ISC_RET_CONNECTION","features":[23]},{"name":"ISC_RET_DATAGRAM","features":[23]},{"name":"ISC_RET_DEFERRED_CRED_VALIDATION","features":[23]},{"name":"ISC_RET_DELEGATE","features":[23]},{"name":"ISC_RET_EXTENDED_ERROR","features":[23]},{"name":"ISC_RET_FORWARD_CREDENTIALS","features":[23]},{"name":"ISC_RET_FRAGMENT_ONLY","features":[23]},{"name":"ISC_RET_IDENTIFY","features":[23]},{"name":"ISC_RET_INTEGRITY","features":[23]},{"name":"ISC_RET_INTERMEDIATE_RETURN","features":[23]},{"name":"ISC_RET_MANUAL_CRED_VALIDATION","features":[23]},{"name":"ISC_RET_MESSAGES","features":[23]},{"name":"ISC_RET_MUTUAL_AUTH","features":[23]},{"name":"ISC_RET_NO_ADDITIONAL_TOKEN","features":[23]},{"name":"ISC_RET_NO_POST_HANDSHAKE_AUTH","features":[23]},{"name":"ISC_RET_NULL_SESSION","features":[23]},{"name":"ISC_RET_REAUTHENTICATION","features":[23]},{"name":"ISC_RET_REPLAY_DETECT","features":[23]},{"name":"ISC_RET_RESERVED1","features":[23]},{"name":"ISC_RET_SEQUENCE_DETECT","features":[23]},{"name":"ISC_RET_STREAM","features":[23]},{"name":"ISC_RET_USED_COLLECTED_CREDS","features":[23]},{"name":"ISC_RET_USED_DCE_STYLE","features":[23]},{"name":"ISC_RET_USED_HTTP_STYLE","features":[23]},{"name":"ISC_RET_USED_SUPPLIED_CREDS","features":[23]},{"name":"ISC_RET_USE_SESSION_KEY","features":[23]},{"name":"ISSP_LEVEL","features":[23]},{"name":"ISSP_MODE","features":[23]},{"name":"ImpersonateSecurityContext","features":[23,118]},{"name":"ImportSecurityContextA","features":[23,118]},{"name":"ImportSecurityContextW","features":[23,118]},{"name":"InitSecurityInterfaceA","features":[1,23,118]},{"name":"InitSecurityInterfaceW","features":[1,23,118]},{"name":"InitializeSecurityContextA","features":[23,118]},{"name":"InitializeSecurityContextW","features":[23,118]},{"name":"InvalidCredKey","features":[23]},{"name":"KDC_PROXY_CACHE_ENTRY_DATA","features":[1,23]},{"name":"KDC_PROXY_SETTINGS_FLAGS_FORCEPROXY","features":[23]},{"name":"KDC_PROXY_SETTINGS_V1","features":[23]},{"name":"KERBEROS_REVISION","features":[23]},{"name":"KERBEROS_VERSION","features":[23]},{"name":"KERB_ADDRESS_TYPE","features":[23]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_EX_REQUEST","features":[23]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_REQUEST","features":[23]},{"name":"KERB_ADD_CREDENTIALS_REQUEST","features":[1,23]},{"name":"KERB_ADD_CREDENTIALS_REQUEST_EX","features":[1,23]},{"name":"KERB_AUTH_DATA","features":[23]},{"name":"KERB_BINDING_CACHE_ENTRY_DATA","features":[23]},{"name":"KERB_CERTIFICATE_HASHINFO","features":[23]},{"name":"KERB_CERTIFICATE_INFO","features":[23]},{"name":"KERB_CERTIFICATE_INFO_TYPE","features":[23]},{"name":"KERB_CERTIFICATE_LOGON","features":[23]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[23]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[23]},{"name":"KERB_CERTIFICATE_S4U_LOGON","features":[23]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_DUPLICATES","features":[23]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[23]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_FAIL_IF_NT_AUTH_POLICY_REQUIRED","features":[23]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_IDENTIFY","features":[23]},{"name":"KERB_CERTIFICATE_UNLOCK_LOGON","features":[1,23]},{"name":"KERB_CHANGEPASSWORD_REQUEST","features":[1,23]},{"name":"KERB_CHECKSUM_CRC32","features":[23]},{"name":"KERB_CHECKSUM_DES_MAC","features":[23]},{"name":"KERB_CHECKSUM_DES_MAC_MD5","features":[23]},{"name":"KERB_CHECKSUM_HMAC_MD5","features":[23]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128","features":[23]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128_Ki","features":[23]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256","features":[23]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256_Ki","features":[23]},{"name":"KERB_CHECKSUM_KRB_DES_MAC","features":[23]},{"name":"KERB_CHECKSUM_KRB_DES_MAC_K","features":[23]},{"name":"KERB_CHECKSUM_LM","features":[23]},{"name":"KERB_CHECKSUM_MD25","features":[23]},{"name":"KERB_CHECKSUM_MD4","features":[23]},{"name":"KERB_CHECKSUM_MD5","features":[23]},{"name":"KERB_CHECKSUM_MD5_DES","features":[23]},{"name":"KERB_CHECKSUM_MD5_HMAC","features":[23]},{"name":"KERB_CHECKSUM_NONE","features":[23]},{"name":"KERB_CHECKSUM_RC4_MD5","features":[23]},{"name":"KERB_CHECKSUM_REAL_CRC32","features":[23]},{"name":"KERB_CHECKSUM_SHA1","features":[23]},{"name":"KERB_CHECKSUM_SHA1_NEW","features":[23]},{"name":"KERB_CHECKSUM_SHA256","features":[23]},{"name":"KERB_CHECKSUM_SHA384","features":[23]},{"name":"KERB_CHECKSUM_SHA512","features":[23]},{"name":"KERB_CLEANUP_MACHINE_PKINIT_CREDS_REQUEST","features":[1,23]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA","features":[23]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_V0","features":[23]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_VERSION","features":[23]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_REQUEST","features":[1,23]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_RESPONSE","features":[23]},{"name":"KERB_CRYPTO_KEY","features":[23]},{"name":"KERB_CRYPTO_KEY32","features":[23]},{"name":"KERB_CRYPTO_KEY_TYPE","features":[23]},{"name":"KERB_DECRYPT_FLAG_DEFAULT_KEY","features":[23]},{"name":"KERB_DECRYPT_REQUEST","features":[1,23]},{"name":"KERB_DECRYPT_RESPONSE","features":[23]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96","features":[23]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96_PLAIN","features":[23]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96","features":[23]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96_PLAIN","features":[23]},{"name":"KERB_ETYPE_DEFAULT","features":[23]},{"name":"KERB_ETYPE_DES3_CBC_MD5","features":[23]},{"name":"KERB_ETYPE_DES3_CBC_SHA1","features":[23]},{"name":"KERB_ETYPE_DES3_CBC_SHA1_KD","features":[23]},{"name":"KERB_ETYPE_DES_CBC_CRC","features":[23]},{"name":"KERB_ETYPE_DES_CBC_MD4","features":[23]},{"name":"KERB_ETYPE_DES_CBC_MD5","features":[23]},{"name":"KERB_ETYPE_DES_CBC_MD5_NT","features":[23]},{"name":"KERB_ETYPE_DES_EDE3_CBC_ENV","features":[23]},{"name":"KERB_ETYPE_DES_PLAIN","features":[23]},{"name":"KERB_ETYPE_DSA_SHA1_CMS","features":[23]},{"name":"KERB_ETYPE_DSA_SIGN","features":[23]},{"name":"KERB_ETYPE_NULL","features":[23]},{"name":"KERB_ETYPE_PKCS7_PUB","features":[23]},{"name":"KERB_ETYPE_RC2_CBC_ENV","features":[23]},{"name":"KERB_ETYPE_RC4_HMAC_NT","features":[23]},{"name":"KERB_ETYPE_RC4_HMAC_NT_EXP","features":[23]},{"name":"KERB_ETYPE_RC4_HMAC_OLD","features":[23]},{"name":"KERB_ETYPE_RC4_HMAC_OLD_EXP","features":[23]},{"name":"KERB_ETYPE_RC4_LM","features":[23]},{"name":"KERB_ETYPE_RC4_MD4","features":[23]},{"name":"KERB_ETYPE_RC4_PLAIN","features":[23]},{"name":"KERB_ETYPE_RC4_PLAIN2","features":[23]},{"name":"KERB_ETYPE_RC4_PLAIN_EXP","features":[23]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD","features":[23]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD_EXP","features":[23]},{"name":"KERB_ETYPE_RC4_SHA","features":[23]},{"name":"KERB_ETYPE_RSA_ENV","features":[23]},{"name":"KERB_ETYPE_RSA_ES_OEAP_ENV","features":[23]},{"name":"KERB_ETYPE_RSA_MD5_CMS","features":[23]},{"name":"KERB_ETYPE_RSA_PRIV","features":[23]},{"name":"KERB_ETYPE_RSA_PUB","features":[23]},{"name":"KERB_ETYPE_RSA_PUB_MD5","features":[23]},{"name":"KERB_ETYPE_RSA_PUB_SHA1","features":[23]},{"name":"KERB_ETYPE_RSA_SHA1_CMS","features":[23]},{"name":"KERB_EXTERNAL_NAME","features":[23]},{"name":"KERB_EXTERNAL_TICKET","features":[23]},{"name":"KERB_INTERACTIVE_LOGON","features":[23]},{"name":"KERB_INTERACTIVE_PROFILE","features":[23]},{"name":"KERB_INTERACTIVE_UNLOCK_LOGON","features":[1,23]},{"name":"KERB_LOGON_FLAG_ALLOW_EXPIRED_TICKET","features":[23]},{"name":"KERB_LOGON_FLAG_REDIRECTED","features":[23]},{"name":"KERB_LOGON_SUBMIT_TYPE","features":[23]},{"name":"KERB_NET_ADDRESS","features":[23]},{"name":"KERB_NET_ADDRESSES","features":[23]},{"name":"KERB_PROFILE_BUFFER_TYPE","features":[23]},{"name":"KERB_PROTOCOL_MESSAGE_TYPE","features":[23]},{"name":"KERB_PURGE_ALL_TICKETS","features":[23]},{"name":"KERB_PURGE_BINDING_CACHE_REQUEST","features":[23]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_REQUEST","features":[1,23]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_RESPONSE","features":[23]},{"name":"KERB_PURGE_TKT_CACHE_EX_REQUEST","features":[1,23]},{"name":"KERB_PURGE_TKT_CACHE_REQUEST","features":[1,23]},{"name":"KERB_QUERY_BINDING_CACHE_REQUEST","features":[23]},{"name":"KERB_QUERY_BINDING_CACHE_RESPONSE","features":[23]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_REQUEST","features":[23]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE","features":[23]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE_FLAG_DAC_DISABLED","features":[23]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_REQUEST","features":[1,23]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_RESPONSE","features":[1,23]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_REQUEST","features":[1,23]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_RESPONSE","features":[1,23]},{"name":"KERB_QUERY_TKT_CACHE_EX2_RESPONSE","features":[23]},{"name":"KERB_QUERY_TKT_CACHE_EX3_RESPONSE","features":[23]},{"name":"KERB_QUERY_TKT_CACHE_EX_RESPONSE","features":[23]},{"name":"KERB_QUERY_TKT_CACHE_REQUEST","features":[1,23]},{"name":"KERB_QUERY_TKT_CACHE_RESPONSE","features":[23]},{"name":"KERB_REFRESH_POLICY_KDC","features":[23]},{"name":"KERB_REFRESH_POLICY_KERBEROS","features":[23]},{"name":"KERB_REFRESH_POLICY_REQUEST","features":[23]},{"name":"KERB_REFRESH_POLICY_RESPONSE","features":[23]},{"name":"KERB_REFRESH_SCCRED_GETTGT","features":[23]},{"name":"KERB_REFRESH_SCCRED_RELEASE","features":[23]},{"name":"KERB_REFRESH_SCCRED_REQUEST","features":[1,23]},{"name":"KERB_REQUEST_ADD_CREDENTIAL","features":[23]},{"name":"KERB_REQUEST_FLAGS","features":[23]},{"name":"KERB_REQUEST_REMOVE_CREDENTIAL","features":[23]},{"name":"KERB_REQUEST_REPLACE_CREDENTIAL","features":[23]},{"name":"KERB_RETRIEVE_KEY_TAB_REQUEST","features":[23]},{"name":"KERB_RETRIEVE_KEY_TAB_RESPONSE","features":[23]},{"name":"KERB_RETRIEVE_TICKET_AS_KERB_CRED","features":[23]},{"name":"KERB_RETRIEVE_TICKET_CACHE_TICKET","features":[23]},{"name":"KERB_RETRIEVE_TICKET_DEFAULT","features":[23]},{"name":"KERB_RETRIEVE_TICKET_DONT_USE_CACHE","features":[23]},{"name":"KERB_RETRIEVE_TICKET_MAX_LIFETIME","features":[23]},{"name":"KERB_RETRIEVE_TICKET_USE_CACHE_ONLY","features":[23]},{"name":"KERB_RETRIEVE_TICKET_USE_CREDHANDLE","features":[23]},{"name":"KERB_RETRIEVE_TICKET_WITH_SEC_CRED","features":[23]},{"name":"KERB_RETRIEVE_TKT_REQUEST","features":[1,23,118]},{"name":"KERB_RETRIEVE_TKT_RESPONSE","features":[23]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO","features":[1,23]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO_FLAG_NEGATIVE","features":[23]},{"name":"KERB_S4U2PROXY_CRED","features":[1,23]},{"name":"KERB_S4U2PROXY_CRED_FLAG_NEGATIVE","features":[23]},{"name":"KERB_S4U_LOGON","features":[23]},{"name":"KERB_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[23]},{"name":"KERB_S4U_LOGON_FLAG_IDENTIFY","features":[23]},{"name":"KERB_SETPASSWORD_EX_REQUEST","features":[1,23,118]},{"name":"KERB_SETPASSWORD_REQUEST","features":[1,23,118]},{"name":"KERB_SETPASS_USE_CREDHANDLE","features":[23]},{"name":"KERB_SETPASS_USE_LOGONID","features":[23]},{"name":"KERB_SMART_CARD_LOGON","features":[23]},{"name":"KERB_SMART_CARD_PROFILE","features":[23]},{"name":"KERB_SMART_CARD_UNLOCK_LOGON","features":[1,23]},{"name":"KERB_SUBMIT_TKT_REQUEST","features":[1,23]},{"name":"KERB_TICKET_CACHE_INFO","features":[23]},{"name":"KERB_TICKET_CACHE_INFO_EX","features":[23]},{"name":"KERB_TICKET_CACHE_INFO_EX2","features":[23]},{"name":"KERB_TICKET_CACHE_INFO_EX3","features":[23]},{"name":"KERB_TICKET_FLAGS","features":[23]},{"name":"KERB_TICKET_FLAGS_cname_in_pa_data","features":[23]},{"name":"KERB_TICKET_FLAGS_enc_pa_rep","features":[23]},{"name":"KERB_TICKET_FLAGS_forwardable","features":[23]},{"name":"KERB_TICKET_FLAGS_forwarded","features":[23]},{"name":"KERB_TICKET_FLAGS_hw_authent","features":[23]},{"name":"KERB_TICKET_FLAGS_initial","features":[23]},{"name":"KERB_TICKET_FLAGS_invalid","features":[23]},{"name":"KERB_TICKET_FLAGS_may_postdate","features":[23]},{"name":"KERB_TICKET_FLAGS_name_canonicalize","features":[23]},{"name":"KERB_TICKET_FLAGS_ok_as_delegate","features":[23]},{"name":"KERB_TICKET_FLAGS_postdated","features":[23]},{"name":"KERB_TICKET_FLAGS_pre_authent","features":[23]},{"name":"KERB_TICKET_FLAGS_proxiable","features":[23]},{"name":"KERB_TICKET_FLAGS_proxy","features":[23]},{"name":"KERB_TICKET_FLAGS_renewable","features":[23]},{"name":"KERB_TICKET_FLAGS_reserved","features":[23]},{"name":"KERB_TICKET_FLAGS_reserved1","features":[23]},{"name":"KERB_TICKET_LOGON","features":[23]},{"name":"KERB_TICKET_PROFILE","features":[23]},{"name":"KERB_TICKET_UNLOCK_LOGON","features":[1,23]},{"name":"KERB_TRANSFER_CRED_CLEANUP_CREDENTIALS","features":[23]},{"name":"KERB_TRANSFER_CRED_REQUEST","features":[1,23]},{"name":"KERB_TRANSFER_CRED_WITH_TICKETS","features":[23]},{"name":"KERB_USE_DEFAULT_TICKET_FLAGS","features":[23]},{"name":"KERB_WRAP_NO_ENCRYPT","features":[23]},{"name":"KERN_CONTEXT_CERT_INFO_V1","features":[23]},{"name":"KRB_ANONYMOUS_STRING","features":[23]},{"name":"KRB_NT_ENTERPRISE_PRINCIPAL","features":[23]},{"name":"KRB_NT_ENT_PRINCIPAL_AND_ID","features":[23]},{"name":"KRB_NT_MS_BRANCH_ID","features":[23]},{"name":"KRB_NT_MS_PRINCIPAL","features":[23]},{"name":"KRB_NT_MS_PRINCIPAL_AND_ID","features":[23]},{"name":"KRB_NT_PRINCIPAL","features":[23]},{"name":"KRB_NT_PRINCIPAL_AND_ID","features":[23]},{"name":"KRB_NT_SRV_HST","features":[23]},{"name":"KRB_NT_SRV_INST","features":[23]},{"name":"KRB_NT_SRV_INST_AND_ID","features":[23]},{"name":"KRB_NT_SRV_XHST","features":[23]},{"name":"KRB_NT_UID","features":[23]},{"name":"KRB_NT_UNKNOWN","features":[23]},{"name":"KRB_NT_WELLKNOWN","features":[23]},{"name":"KRB_NT_X500_PRINCIPAL","features":[23]},{"name":"KRB_WELLKNOWN_STRING","features":[23]},{"name":"KSEC_CONTEXT_TYPE","features":[23]},{"name":"KSEC_LIST_ENTRY","features":[23,7]},{"name":"KSecNonPaged","features":[23]},{"name":"KSecPaged","features":[23]},{"name":"KerbAddBindingCacheEntryExMessage","features":[23]},{"name":"KerbAddBindingCacheEntryMessage","features":[23]},{"name":"KerbAddExtraCredentialsExMessage","features":[23]},{"name":"KerbAddExtraCredentialsMessage","features":[23]},{"name":"KerbCertificateLogon","features":[23]},{"name":"KerbCertificateS4ULogon","features":[23]},{"name":"KerbCertificateUnlockLogon","features":[23]},{"name":"KerbChangeMachinePasswordMessage","features":[23]},{"name":"KerbChangePasswordMessage","features":[23]},{"name":"KerbCleanupMachinePkinitCredsMessage","features":[23]},{"name":"KerbDebugRequestMessage","features":[23]},{"name":"KerbDecryptDataMessage","features":[23]},{"name":"KerbInteractiveLogon","features":[23]},{"name":"KerbInteractiveProfile","features":[23]},{"name":"KerbLuidLogon","features":[23]},{"name":"KerbNoElevationLogon","features":[23]},{"name":"KerbPinKdcMessage","features":[23]},{"name":"KerbPrintCloudKerberosDebugMessage","features":[23]},{"name":"KerbProxyLogon","features":[23]},{"name":"KerbPurgeBindingCacheMessage","features":[23]},{"name":"KerbPurgeKdcProxyCacheMessage","features":[23]},{"name":"KerbPurgeTicketCacheExMessage","features":[23]},{"name":"KerbPurgeTicketCacheMessage","features":[23]},{"name":"KerbQueryBindingCacheMessage","features":[23]},{"name":"KerbQueryDomainExtendedPoliciesMessage","features":[23]},{"name":"KerbQueryKdcProxyCacheMessage","features":[23]},{"name":"KerbQueryS4U2ProxyCacheMessage","features":[23]},{"name":"KerbQuerySupplementalCredentialsMessage","features":[23]},{"name":"KerbQueryTicketCacheEx2Message","features":[23]},{"name":"KerbQueryTicketCacheEx3Message","features":[23]},{"name":"KerbQueryTicketCacheExMessage","features":[23]},{"name":"KerbQueryTicketCacheMessage","features":[23]},{"name":"KerbRefreshPolicyMessage","features":[23]},{"name":"KerbRefreshSmartcardCredentialsMessage","features":[23]},{"name":"KerbRetrieveEncodedTicketMessage","features":[23]},{"name":"KerbRetrieveKeyTabMessage","features":[23]},{"name":"KerbRetrieveTicketMessage","features":[23]},{"name":"KerbS4ULogon","features":[23]},{"name":"KerbSetPasswordExMessage","features":[23]},{"name":"KerbSetPasswordMessage","features":[23]},{"name":"KerbSmartCardLogon","features":[23]},{"name":"KerbSmartCardProfile","features":[23]},{"name":"KerbSmartCardUnlockLogon","features":[23]},{"name":"KerbSubmitTicketMessage","features":[23]},{"name":"KerbTicketLogon","features":[23]},{"name":"KerbTicketProfile","features":[23]},{"name":"KerbTicketUnlockLogon","features":[23]},{"name":"KerbTransferCredentialsMessage","features":[23]},{"name":"KerbUnpinAllKdcsMessage","features":[23]},{"name":"KerbUpdateAddressesMessage","features":[23]},{"name":"KerbVerifyCredentialsMessage","features":[23]},{"name":"KerbVerifyPacMessage","features":[23]},{"name":"KerbWorkstationUnlockLogon","features":[23]},{"name":"KspCompleteTokenFn","features":[1,23]},{"name":"KspDeleteContextFn","features":[1,23]},{"name":"KspGetTokenFn","features":[1,23]},{"name":"KspInitContextFn","features":[1,23]},{"name":"KspInitPackageFn","features":[1,23,7]},{"name":"KspMakeSignatureFn","features":[1,23]},{"name":"KspMapHandleFn","features":[1,23]},{"name":"KspQueryAttributesFn","features":[1,23]},{"name":"KspSealMessageFn","features":[1,23]},{"name":"KspSerializeAuthDataFn","features":[1,23]},{"name":"KspSetPagingModeFn","features":[1,23]},{"name":"KspUnsealMessageFn","features":[1,23]},{"name":"KspVerifySignatureFn","features":[1,23]},{"name":"LCRED_CRED_EXISTS","features":[23]},{"name":"LCRED_STATUS_NOCRED","features":[23]},{"name":"LCRED_STATUS_UNKNOWN_ISSUER","features":[23]},{"name":"LOGON_CACHED_ACCOUNT","features":[23]},{"name":"LOGON_EXTRA_SIDS","features":[23]},{"name":"LOGON_GRACE_LOGON","features":[23]},{"name":"LOGON_GUEST","features":[23]},{"name":"LOGON_HOURS","features":[23]},{"name":"LOGON_LM_V2","features":[23]},{"name":"LOGON_MANAGED_SERVICE","features":[23]},{"name":"LOGON_NOENCRYPTION","features":[23]},{"name":"LOGON_NO_ELEVATION","features":[23]},{"name":"LOGON_NO_OPTIMIZED","features":[23]},{"name":"LOGON_NTLMV2_ENABLED","features":[23]},{"name":"LOGON_NTLM_V2","features":[23]},{"name":"LOGON_NT_V2","features":[23]},{"name":"LOGON_OPTIMIZED","features":[23]},{"name":"LOGON_PKINIT","features":[23]},{"name":"LOGON_PROFILE_PATH_RETURNED","features":[23]},{"name":"LOGON_RESOURCE_GROUPS","features":[23]},{"name":"LOGON_SERVER_TRUST_ACCOUNT","features":[23]},{"name":"LOGON_SUBAUTH_SESSION_KEY","features":[23]},{"name":"LOGON_USED_LM_PASSWORD","features":[23]},{"name":"LOGON_WINLOGON","features":[23]},{"name":"LOOKUP_TRANSLATE_NAMES","features":[23]},{"name":"LOOKUP_VIEW_LOCAL_INFORMATION","features":[23]},{"name":"LSAD_AES_BLOCK_SIZE","features":[23]},{"name":"LSAD_AES_CRYPT_SHA512_HASH_SIZE","features":[23]},{"name":"LSAD_AES_KEY_SIZE","features":[23]},{"name":"LSAD_AES_SALT_SIZE","features":[23]},{"name":"LSASETCAPS_RELOAD_FLAG","features":[23]},{"name":"LSASETCAPS_VALID_FLAG_MASK","features":[23]},{"name":"LSA_ADT_LEGACY_SECURITY_SOURCE_NAME","features":[23]},{"name":"LSA_ADT_SECURITY_SOURCE_NAME","features":[23]},{"name":"LSA_AP_NAME_CALL_PACKAGE","features":[23]},{"name":"LSA_AP_NAME_CALL_PACKAGE_PASSTHROUGH","features":[23]},{"name":"LSA_AP_NAME_CALL_PACKAGE_UNTRUSTED","features":[23]},{"name":"LSA_AP_NAME_INITIALIZE_PACKAGE","features":[23]},{"name":"LSA_AP_NAME_LOGON_TERMINATED","features":[23]},{"name":"LSA_AP_NAME_LOGON_USER","features":[23]},{"name":"LSA_AP_NAME_LOGON_USER_EX","features":[23]},{"name":"LSA_AP_NAME_LOGON_USER_EX2","features":[23]},{"name":"LSA_AP_POST_LOGON_USER","features":[1,23]},{"name":"LSA_AUTH_INFORMATION","features":[23]},{"name":"LSA_AUTH_INFORMATION_AUTH_TYPE","features":[23]},{"name":"LSA_CALL_LICENSE_SERVER","features":[23]},{"name":"LSA_DISPATCH_TABLE","features":[1,23]},{"name":"LSA_ENUMERATION_INFORMATION","features":[1,23]},{"name":"LSA_FOREST_TRUST_BINARY_DATA","features":[23]},{"name":"LSA_FOREST_TRUST_COLLISION_INFORMATION","features":[23]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD","features":[23]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD_TYPE","features":[23]},{"name":"LSA_FOREST_TRUST_DOMAIN_INFO","features":[1,23]},{"name":"LSA_FOREST_TRUST_INFORMATION","features":[1,23]},{"name":"LSA_FOREST_TRUST_INFORMATION2","features":[1,23]},{"name":"LSA_FOREST_TRUST_RECORD","features":[1,23]},{"name":"LSA_FOREST_TRUST_RECORD2","features":[1,23]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE","features":[23]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE_UNRECOGNIZED","features":[23]},{"name":"LSA_FOREST_TRUST_SCANNER_INFO","features":[1,23]},{"name":"LSA_FTRECORD_DISABLED_REASONS","features":[23]},{"name":"LSA_GLOBAL_SECRET_PREFIX","features":[23]},{"name":"LSA_GLOBAL_SECRET_PREFIX_LENGTH","features":[23]},{"name":"LSA_HANDLE","features":[23]},{"name":"LSA_LAST_INTER_LOGON_INFO","features":[23]},{"name":"LSA_LOCAL_SECRET_PREFIX","features":[23]},{"name":"LSA_LOCAL_SECRET_PREFIX_LENGTH","features":[23]},{"name":"LSA_LOOKUP_DISALLOW_CONNECTED_ACCOUNT_INTERNET_SID","features":[23]},{"name":"LSA_LOOKUP_DOMAIN_INFO_CLASS","features":[23]},{"name":"LSA_LOOKUP_ISOLATED_AS_LOCAL","features":[23]},{"name":"LSA_LOOKUP_PREFER_INTERNET_NAMES","features":[23]},{"name":"LSA_MACHINE_SECRET_PREFIX","features":[23]},{"name":"LSA_MAXIMUM_ENUMERATION_LENGTH","features":[23]},{"name":"LSA_MAXIMUM_SID_COUNT","features":[23]},{"name":"LSA_MODE_INDIVIDUAL_ACCOUNTS","features":[23]},{"name":"LSA_MODE_LOG_FULL","features":[23]},{"name":"LSA_MODE_MANDATORY_ACCESS","features":[23]},{"name":"LSA_MODE_PASSWORD_PROTECTED","features":[23]},{"name":"LSA_NB_DISABLED_ADMIN","features":[23]},{"name":"LSA_NB_DISABLED_CONFLICT","features":[23]},{"name":"LSA_OBJECT_ATTRIBUTES","features":[1,23]},{"name":"LSA_QUERY_CLIENT_PRELOGON_SESSION_ID","features":[23]},{"name":"LSA_REFERENCED_DOMAIN_LIST","features":[1,23]},{"name":"LSA_SCANNER_INFO_ADMIN_ALL_FLAGS","features":[23]},{"name":"LSA_SCANNER_INFO_DISABLE_AUTH_TARGET_VALIDATION","features":[23]},{"name":"LSA_SECPKG_FUNCTION_TABLE","features":[1,23,118,37]},{"name":"LSA_SECRET_MAXIMUM_COUNT","features":[23]},{"name":"LSA_SECRET_MAXIMUM_LENGTH","features":[23]},{"name":"LSA_SID_DISABLED_ADMIN","features":[23]},{"name":"LSA_SID_DISABLED_CONFLICT","features":[23]},{"name":"LSA_STRING","features":[23]},{"name":"LSA_TLN_DISABLED_ADMIN","features":[23]},{"name":"LSA_TLN_DISABLED_CONFLICT","features":[23]},{"name":"LSA_TLN_DISABLED_NEW","features":[23]},{"name":"LSA_TOKEN_INFORMATION_NULL","features":[1,23]},{"name":"LSA_TOKEN_INFORMATION_TYPE","features":[23]},{"name":"LSA_TOKEN_INFORMATION_V1","features":[1,23]},{"name":"LSA_TOKEN_INFORMATION_V3","features":[1,23]},{"name":"LSA_TRANSLATED_NAME","features":[23]},{"name":"LSA_TRANSLATED_SID","features":[23]},{"name":"LSA_TRANSLATED_SID2","features":[1,23]},{"name":"LSA_TRUST_INFORMATION","features":[1,23]},{"name":"LSA_UNICODE_STRING","features":[23]},{"name":"LocalUserCredKey","features":[23]},{"name":"LsaAddAccountRights","features":[1,23]},{"name":"LsaCallAuthenticationPackage","features":[1,23]},{"name":"LsaClose","features":[1,23]},{"name":"LsaConnectUntrusted","features":[1,23]},{"name":"LsaCreateTrustedDomainEx","features":[1,23]},{"name":"LsaDeleteTrustedDomain","features":[1,23]},{"name":"LsaDeregisterLogonProcess","features":[1,23]},{"name":"LsaEnumerateAccountRights","features":[1,23]},{"name":"LsaEnumerateAccountsWithUserRight","features":[1,23]},{"name":"LsaEnumerateLogonSessions","features":[1,23]},{"name":"LsaEnumerateTrustedDomains","features":[1,23]},{"name":"LsaEnumerateTrustedDomainsEx","features":[1,23]},{"name":"LsaFreeMemory","features":[1,23]},{"name":"LsaFreeReturnBuffer","features":[1,23]},{"name":"LsaGetAppliedCAPIDs","features":[1,23]},{"name":"LsaGetLogonSessionData","features":[1,23]},{"name":"LsaLogonUser","features":[1,23]},{"name":"LsaLookupAuthenticationPackage","features":[1,23]},{"name":"LsaLookupNames","features":[1,23]},{"name":"LsaLookupNames2","features":[1,23]},{"name":"LsaLookupSids","features":[1,23]},{"name":"LsaLookupSids2","features":[1,23]},{"name":"LsaNtStatusToWinError","features":[1,23]},{"name":"LsaOpenPolicy","features":[1,23]},{"name":"LsaOpenTrustedDomainByName","features":[1,23]},{"name":"LsaQueryCAPs","features":[1,23]},{"name":"LsaQueryDomainInformationPolicy","features":[1,23]},{"name":"LsaQueryForestTrustInformation","features":[1,23]},{"name":"LsaQueryForestTrustInformation2","features":[1,23]},{"name":"LsaQueryInformationPolicy","features":[1,23]},{"name":"LsaQueryTrustedDomainInfo","features":[1,23]},{"name":"LsaQueryTrustedDomainInfoByName","features":[1,23]},{"name":"LsaRegisterLogonProcess","features":[1,23]},{"name":"LsaRegisterPolicyChangeNotification","features":[1,23]},{"name":"LsaRemoveAccountRights","features":[1,23]},{"name":"LsaRetrievePrivateData","features":[1,23]},{"name":"LsaSetCAPs","features":[1,23]},{"name":"LsaSetDomainInformationPolicy","features":[1,23]},{"name":"LsaSetForestTrustInformation","features":[1,23]},{"name":"LsaSetForestTrustInformation2","features":[1,23]},{"name":"LsaSetInformationPolicy","features":[1,23]},{"name":"LsaSetTrustedDomainInfoByName","features":[1,23]},{"name":"LsaSetTrustedDomainInformation","features":[1,23]},{"name":"LsaStorePrivateData","features":[1,23]},{"name":"LsaTokenInformationNull","features":[23]},{"name":"LsaTokenInformationV1","features":[23]},{"name":"LsaTokenInformationV2","features":[23]},{"name":"LsaTokenInformationV3","features":[23]},{"name":"LsaUnregisterPolicyChangeNotification","features":[1,23]},{"name":"MAKE_SIGNATURE_FN","features":[23,118]},{"name":"MAXIMUM_CAPES_PER_CAP","features":[23]},{"name":"MAX_CRED_SIZE","features":[23]},{"name":"MAX_PROTOCOL_ID_SIZE","features":[23]},{"name":"MAX_RECORDS_IN_FOREST_TRUST_INFO","features":[23]},{"name":"MAX_USER_RECORDS","features":[23]},{"name":"MICROSOFT_KERBEROS_NAME","features":[23]},{"name":"MICROSOFT_KERBEROS_NAME_A","features":[23]},{"name":"MICROSOFT_KERBEROS_NAME_W","features":[23]},{"name":"MSV1_0","features":[23]},{"name":"MSV1_0_ALLOW_FORCE_GUEST","features":[23]},{"name":"MSV1_0_ALLOW_MSVCHAPV2","features":[23]},{"name":"MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT","features":[23]},{"name":"MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT","features":[23]},{"name":"MSV1_0_AVID","features":[23]},{"name":"MSV1_0_AV_FLAG_FORCE_GUEST","features":[23]},{"name":"MSV1_0_AV_FLAG_MIC_HANDSHAKE_MESSAGES","features":[23]},{"name":"MSV1_0_AV_FLAG_UNVERIFIED_TARGET","features":[23]},{"name":"MSV1_0_AV_PAIR","features":[23]},{"name":"MSV1_0_CHALLENGE_LENGTH","features":[23]},{"name":"MSV1_0_CHANGEPASSWORD_REQUEST","features":[1,23]},{"name":"MSV1_0_CHANGEPASSWORD_RESPONSE","features":[1,23]},{"name":"MSV1_0_CHECK_LOGONHOURS_FOR_S4U","features":[23]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_ALLOWED","features":[23]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_SUPPLIED","features":[23]},{"name":"MSV1_0_CREDENTIAL_KEY","features":[23]},{"name":"MSV1_0_CREDENTIAL_KEY_LENGTH","features":[23]},{"name":"MSV1_0_CREDENTIAL_KEY_TYPE","features":[23]},{"name":"MSV1_0_CRED_CREDKEY_PRESENT","features":[23]},{"name":"MSV1_0_CRED_LM_PRESENT","features":[23]},{"name":"MSV1_0_CRED_NT_PRESENT","features":[23]},{"name":"MSV1_0_CRED_REMOVED","features":[23]},{"name":"MSV1_0_CRED_SHA_PRESENT","features":[23]},{"name":"MSV1_0_CRED_VERSION","features":[23]},{"name":"MSV1_0_CRED_VERSION_ARSO","features":[23]},{"name":"MSV1_0_CRED_VERSION_INVALID","features":[23]},{"name":"MSV1_0_CRED_VERSION_IUM","features":[23]},{"name":"MSV1_0_CRED_VERSION_REMOTE","features":[23]},{"name":"MSV1_0_CRED_VERSION_RESERVED_1","features":[23]},{"name":"MSV1_0_CRED_VERSION_V2","features":[23]},{"name":"MSV1_0_CRED_VERSION_V3","features":[23]},{"name":"MSV1_0_DISABLE_PERSONAL_FALLBACK","features":[23]},{"name":"MSV1_0_DONT_TRY_GUEST_ACCOUNT","features":[23]},{"name":"MSV1_0_GUEST_LOGON","features":[23]},{"name":"MSV1_0_INTERACTIVE_LOGON","features":[23]},{"name":"MSV1_0_INTERACTIVE_PROFILE","features":[23]},{"name":"MSV1_0_INTERNET_DOMAIN","features":[23]},{"name":"MSV1_0_IUM_SUPPLEMENTAL_CREDENTIAL","features":[23]},{"name":"MSV1_0_LANMAN_SESSION_KEY_LENGTH","features":[23]},{"name":"MSV1_0_LM20_LOGON","features":[23]},{"name":"MSV1_0_LM20_LOGON_PROFILE","features":[23]},{"name":"MSV1_0_LOGON_SUBMIT_TYPE","features":[23]},{"name":"MSV1_0_MAX_AVL_SIZE","features":[23]},{"name":"MSV1_0_MAX_NTLM3_LIFE","features":[23]},{"name":"MSV1_0_MNS_LOGON","features":[23]},{"name":"MSV1_0_NTLM3_OWF_LENGTH","features":[23]},{"name":"MSV1_0_NTLM3_RESPONSE","features":[23]},{"name":"MSV1_0_NTLM3_RESPONSE_LENGTH","features":[23]},{"name":"MSV1_0_OWF_PASSWORD_LENGTH","features":[23]},{"name":"MSV1_0_PACKAGE_NAME","features":[23]},{"name":"MSV1_0_PACKAGE_NAMEW","features":[23]},{"name":"MSV1_0_PASSTHROUGH_REQUEST","features":[23]},{"name":"MSV1_0_PASSTHROUGH_RESPONSE","features":[23]},{"name":"MSV1_0_PASSTHRU","features":[23]},{"name":"MSV1_0_PROFILE_BUFFER_TYPE","features":[23]},{"name":"MSV1_0_PROTOCOL_MESSAGE_TYPE","features":[23]},{"name":"MSV1_0_REMOTE_SUPPLEMENTAL_CREDENTIAL","features":[23]},{"name":"MSV1_0_RETURN_PASSWORD_EXPIRY","features":[23]},{"name":"MSV1_0_RETURN_PROFILE_PATH","features":[23]},{"name":"MSV1_0_RETURN_USER_PARAMETERS","features":[23]},{"name":"MSV1_0_S4U2SELF","features":[23]},{"name":"MSV1_0_S4U_LOGON","features":[23]},{"name":"MSV1_0_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[23]},{"name":"MSV1_0_SHA_PASSWORD_LENGTH","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_EX","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_IIS","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_RAS","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_SHIFT","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_FLAGS","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_KEY","features":[23]},{"name":"MSV1_0_SUBAUTHENTICATION_VALUE","features":[23]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_DISABLED","features":[23]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_EXPIRY","features":[23]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_TYPE","features":[23]},{"name":"MSV1_0_SUBAUTH_LOCKOUT","features":[23]},{"name":"MSV1_0_SUBAUTH_LOGON","features":[23]},{"name":"MSV1_0_SUBAUTH_LOGON_HOURS","features":[23]},{"name":"MSV1_0_SUBAUTH_PASSWORD","features":[23]},{"name":"MSV1_0_SUBAUTH_PASSWORD_EXPIRY","features":[23]},{"name":"MSV1_0_SUBAUTH_REQUEST","features":[23]},{"name":"MSV1_0_SUBAUTH_RESPONSE","features":[23]},{"name":"MSV1_0_SUBAUTH_WORKSTATIONS","features":[23]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL","features":[23]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V2","features":[23]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V3","features":[23]},{"name":"MSV1_0_TRY_GUEST_ACCOUNT_ONLY","features":[23]},{"name":"MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY","features":[23]},{"name":"MSV1_0_UPDATE_LOGON_STATISTICS","features":[23]},{"name":"MSV1_0_USER_SESSION_KEY_LENGTH","features":[23]},{"name":"MSV1_0_USE_CLIENT_CHALLENGE","features":[23]},{"name":"MSV1_0_USE_DOMAIN_FOR_ROUTING_ONLY","features":[23]},{"name":"MSV1_0_VALIDATION_INFO","features":[1,23,119]},{"name":"MSV1_0_VALIDATION_KICKOFF_TIME","features":[23]},{"name":"MSV1_0_VALIDATION_LOGOFF_TIME","features":[23]},{"name":"MSV1_0_VALIDATION_LOGON_DOMAIN","features":[23]},{"name":"MSV1_0_VALIDATION_LOGON_SERVER","features":[23]},{"name":"MSV1_0_VALIDATION_SESSION_KEY","features":[23]},{"name":"MSV1_0_VALIDATION_USER_FLAGS","features":[23]},{"name":"MSV1_0_VALIDATION_USER_ID","features":[23]},{"name":"MSV_SUBAUTH_LOGON_PARAMETER_CONTROL","features":[23]},{"name":"MSV_SUB_AUTHENTICATION_FILTER","features":[23]},{"name":"MSV_SUPPLEMENTAL_CREDENTIAL_FLAGS","features":[23]},{"name":"MakeSignature","features":[23,118]},{"name":"MsV1_0CacheLogon","features":[23]},{"name":"MsV1_0CacheLookup","features":[23]},{"name":"MsV1_0CacheLookupEx","features":[23]},{"name":"MsV1_0ChangeCachedPassword","features":[23]},{"name":"MsV1_0ChangePassword","features":[23]},{"name":"MsV1_0ClearCachedCredentials","features":[23]},{"name":"MsV1_0ConfigLocalAliases","features":[23]},{"name":"MsV1_0DecryptDpapiMasterKey","features":[23]},{"name":"MsV1_0DeleteTbalSecrets","features":[23]},{"name":"MsV1_0DeriveCredential","features":[23]},{"name":"MsV1_0EnumerateUsers","features":[23]},{"name":"MsV1_0GenericPassthrough","features":[23]},{"name":"MsV1_0GetCredentialKey","features":[23]},{"name":"MsV1_0GetStrongCredentialKey","features":[23]},{"name":"MsV1_0GetUserInfo","features":[23]},{"name":"MsV1_0InteractiveLogon","features":[23]},{"name":"MsV1_0InteractiveProfile","features":[23]},{"name":"MsV1_0Lm20ChallengeRequest","features":[23]},{"name":"MsV1_0Lm20GetChallengeResponse","features":[23]},{"name":"MsV1_0Lm20Logon","features":[23]},{"name":"MsV1_0Lm20LogonProfile","features":[23]},{"name":"MsV1_0LookupToken","features":[23]},{"name":"MsV1_0LuidLogon","features":[23]},{"name":"MsV1_0NetworkLogon","features":[23]},{"name":"MsV1_0NoElevationLogon","features":[23]},{"name":"MsV1_0ProvisionTbal","features":[23]},{"name":"MsV1_0ReLogonUsers","features":[23]},{"name":"MsV1_0S4ULogon","features":[23]},{"name":"MsV1_0SetProcessOption","features":[23]},{"name":"MsV1_0SetThreadOption","features":[23]},{"name":"MsV1_0SmartCardProfile","features":[23]},{"name":"MsV1_0SubAuth","features":[23]},{"name":"MsV1_0SubAuthLogon","features":[23]},{"name":"MsV1_0TransferCred","features":[23]},{"name":"MsV1_0ValidateAuth","features":[23]},{"name":"MsV1_0VirtualLogon","features":[23]},{"name":"MsV1_0WorkstationUnlockLogon","features":[23]},{"name":"MsvAvChannelBindings","features":[23]},{"name":"MsvAvDnsComputerName","features":[23]},{"name":"MsvAvDnsDomainName","features":[23]},{"name":"MsvAvDnsTreeName","features":[23]},{"name":"MsvAvEOL","features":[23]},{"name":"MsvAvFlags","features":[23]},{"name":"MsvAvNbComputerName","features":[23]},{"name":"MsvAvNbDomainName","features":[23]},{"name":"MsvAvRestrictions","features":[23]},{"name":"MsvAvTargetName","features":[23]},{"name":"MsvAvTimestamp","features":[23]},{"name":"NEGOSSP_NAME","features":[23]},{"name":"NEGOSSP_NAME_A","features":[23]},{"name":"NEGOSSP_NAME_W","features":[23]},{"name":"NEGOTIATE_ALLOW_NTLM","features":[23]},{"name":"NEGOTIATE_CALLER_NAME_REQUEST","features":[1,23]},{"name":"NEGOTIATE_CALLER_NAME_RESPONSE","features":[23]},{"name":"NEGOTIATE_MAX_PREFIX","features":[23]},{"name":"NEGOTIATE_MESSAGES","features":[23]},{"name":"NEGOTIATE_NEG_NTLM","features":[23]},{"name":"NEGOTIATE_PACKAGE_PREFIX","features":[23]},{"name":"NEGOTIATE_PACKAGE_PREFIXES","features":[23]},{"name":"NETLOGON_GENERIC_INFO","features":[23]},{"name":"NETLOGON_INTERACTIVE_INFO","features":[23,119]},{"name":"NETLOGON_LOGON_IDENTITY_INFO","features":[23]},{"name":"NETLOGON_LOGON_INFO_CLASS","features":[23]},{"name":"NETLOGON_NETWORK_INFO","features":[23]},{"name":"NETLOGON_SERVICE_INFO","features":[23,119]},{"name":"NGC_DATA_FLAG_IS_CLOUD_TRUST_CRED","features":[23]},{"name":"NGC_DATA_FLAG_IS_SMARTCARD_DATA","features":[23]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[23]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[23]},{"name":"NOTIFIER_FLAG_NEW_THREAD","features":[23]},{"name":"NOTIFIER_FLAG_ONE_SHOT","features":[23]},{"name":"NOTIFIER_FLAG_SECONDS","features":[23]},{"name":"NOTIFIER_TYPE_HANDLE_WAIT","features":[23]},{"name":"NOTIFIER_TYPE_IMMEDIATE","features":[23]},{"name":"NOTIFIER_TYPE_INTERVAL","features":[23]},{"name":"NOTIFIER_TYPE_NOTIFY_EVENT","features":[23]},{"name":"NOTIFIER_TYPE_STATE_CHANGE","features":[23]},{"name":"NOTIFY_CLASS_DOMAIN_CHANGE","features":[23]},{"name":"NOTIFY_CLASS_PACKAGE_CHANGE","features":[23]},{"name":"NOTIFY_CLASS_REGISTRY_CHANGE","features":[23]},{"name":"NOTIFY_CLASS_ROLE_CHANGE","features":[23]},{"name":"NO_LONG_NAMES","features":[23]},{"name":"NTLMSP_NAME","features":[23]},{"name":"NTLMSP_NAME_A","features":[23]},{"name":"NameCanonical","features":[23]},{"name":"NameCanonicalEx","features":[23]},{"name":"NameDisplay","features":[23]},{"name":"NameDnsDomain","features":[23]},{"name":"NameFullyQualifiedDN","features":[23]},{"name":"NameGivenName","features":[23]},{"name":"NameSamCompatible","features":[23]},{"name":"NameServicePrincipal","features":[23]},{"name":"NameSurname","features":[23]},{"name":"NameUniqueId","features":[23]},{"name":"NameUnknown","features":[23]},{"name":"NameUserPrincipal","features":[23]},{"name":"NegCallPackageMax","features":[23]},{"name":"NegEnumPackagePrefixes","features":[23]},{"name":"NegGetCallerName","features":[23]},{"name":"NegMsgReserved1","features":[23]},{"name":"NegTransferCredentials","features":[23]},{"name":"NetlogonGenericInformation","features":[23]},{"name":"NetlogonInteractiveInformation","features":[23]},{"name":"NetlogonInteractiveTransitiveInformation","features":[23]},{"name":"NetlogonNetworkInformation","features":[23]},{"name":"NetlogonNetworkTransitiveInformation","features":[23]},{"name":"NetlogonServiceInformation","features":[23]},{"name":"NetlogonServiceTransitiveInformation","features":[23]},{"name":"PCT1SP_NAME","features":[23]},{"name":"PCT1SP_NAME_A","features":[23]},{"name":"PCT1SP_NAME_W","features":[23]},{"name":"PER_USER_AUDIT_FAILURE_EXCLUDE","features":[23]},{"name":"PER_USER_AUDIT_FAILURE_INCLUDE","features":[23]},{"name":"PER_USER_AUDIT_NONE","features":[23]},{"name":"PER_USER_AUDIT_SUCCESS_EXCLUDE","features":[23]},{"name":"PER_USER_AUDIT_SUCCESS_INCLUDE","features":[23]},{"name":"PER_USER_POLICY_UNCHANGED","features":[23]},{"name":"PKSEC_CREATE_CONTEXT_LIST","features":[23]},{"name":"PKSEC_DEREFERENCE_LIST_ENTRY","features":[23,7]},{"name":"PKSEC_INSERT_LIST_ENTRY","features":[23,7]},{"name":"PKSEC_LOCATE_PKG_BY_ID","features":[23]},{"name":"PKSEC_REFERENCE_LIST_ENTRY","features":[1,23,7]},{"name":"PKSEC_SERIALIZE_SCHANNEL_AUTH_DATA","features":[1,23]},{"name":"PKSEC_SERIALIZE_WINNT_AUTH_DATA","features":[1,23]},{"name":"PKU2U_CERTIFICATE_S4U_LOGON","features":[23]},{"name":"PKU2U_CERT_BLOB","features":[23]},{"name":"PKU2U_CREDUI_CONTEXT","features":[23]},{"name":"PKU2U_LOGON_SUBMIT_TYPE","features":[23]},{"name":"PKU2U_PACKAGE_NAME","features":[23]},{"name":"PKU2U_PACKAGE_NAME_A","features":[23]},{"name":"PKU2U_PACKAGE_NAME_W","features":[23]},{"name":"PLSA_ADD_CREDENTIAL","features":[1,23]},{"name":"PLSA_ALLOCATE_CLIENT_BUFFER","features":[1,23]},{"name":"PLSA_ALLOCATE_LSA_HEAP","features":[23]},{"name":"PLSA_ALLOCATE_PRIVATE_HEAP","features":[23]},{"name":"PLSA_ALLOCATE_SHARED_MEMORY","features":[23]},{"name":"PLSA_AP_CALL_PACKAGE","features":[1,23]},{"name":"PLSA_AP_CALL_PACKAGE_PASSTHROUGH","features":[1,23]},{"name":"PLSA_AP_INITIALIZE_PACKAGE","features":[1,23]},{"name":"PLSA_AP_LOGON_TERMINATED","features":[1,23]},{"name":"PLSA_AP_LOGON_USER","features":[1,23]},{"name":"PLSA_AP_LOGON_USER_EX","features":[1,23]},{"name":"PLSA_AP_LOGON_USER_EX2","features":[1,23]},{"name":"PLSA_AP_LOGON_USER_EX3","features":[1,23]},{"name":"PLSA_AP_POST_LOGON_USER_SURROGATE","features":[1,23]},{"name":"PLSA_AP_PRE_LOGON_USER_SURROGATE","features":[1,23]},{"name":"PLSA_AUDIT_ACCOUNT_LOGON","features":[1,23]},{"name":"PLSA_AUDIT_LOGON","features":[1,23]},{"name":"PLSA_AUDIT_LOGON_EX","features":[1,23]},{"name":"PLSA_CALLBACK_FUNCTION","features":[1,23]},{"name":"PLSA_CALL_PACKAGE","features":[1,23]},{"name":"PLSA_CALL_PACKAGEEX","features":[1,23]},{"name":"PLSA_CALL_PACKAGE_PASSTHROUGH","features":[1,23]},{"name":"PLSA_CANCEL_NOTIFICATION","features":[1,23]},{"name":"PLSA_CHECK_PROTECTED_USER_BY_TOKEN","features":[1,23]},{"name":"PLSA_CLIENT_CALLBACK","features":[1,23]},{"name":"PLSA_CLOSE_SAM_USER","features":[1,23]},{"name":"PLSA_CONVERT_AUTH_DATA_TO_TOKEN","features":[1,23]},{"name":"PLSA_COPY_FROM_CLIENT_BUFFER","features":[1,23]},{"name":"PLSA_COPY_TO_CLIENT_BUFFER","features":[1,23]},{"name":"PLSA_CRACK_SINGLE_NAME","features":[1,23]},{"name":"PLSA_CREATE_LOGON_SESSION","features":[1,23]},{"name":"PLSA_CREATE_SHARED_MEMORY","features":[23]},{"name":"PLSA_CREATE_THREAD","features":[1,23,37]},{"name":"PLSA_CREATE_TOKEN","features":[1,23]},{"name":"PLSA_CREATE_TOKEN_EX","features":[1,23]},{"name":"PLSA_DELETE_CREDENTIAL","features":[1,23]},{"name":"PLSA_DELETE_LOGON_SESSION","features":[1,23]},{"name":"PLSA_DELETE_SHARED_MEMORY","features":[1,23]},{"name":"PLSA_DUPLICATE_HANDLE","features":[1,23]},{"name":"PLSA_EXPAND_AUTH_DATA_FOR_DOMAIN","features":[1,23]},{"name":"PLSA_FREE_CLIENT_BUFFER","features":[1,23]},{"name":"PLSA_FREE_LSA_HEAP","features":[23]},{"name":"PLSA_FREE_PRIVATE_HEAP","features":[23]},{"name":"PLSA_FREE_SHARED_MEMORY","features":[23]},{"name":"PLSA_GET_APP_MODE_INFO","features":[1,23]},{"name":"PLSA_GET_AUTH_DATA_FOR_USER","features":[1,23]},{"name":"PLSA_GET_CALL_INFO","features":[1,23]},{"name":"PLSA_GET_CLIENT_INFO","features":[1,23]},{"name":"PLSA_GET_CLIENT_INFO_EX","features":[1,23]},{"name":"PLSA_GET_CREDENTIALS","features":[1,23]},{"name":"PLSA_GET_EXTENDED_CALL_FLAGS","features":[1,23]},{"name":"PLSA_GET_SERVICE_ACCOUNT_PASSWORD","features":[1,23]},{"name":"PLSA_GET_USER_AUTH_DATA","features":[1,23]},{"name":"PLSA_GET_USER_CREDENTIALS","features":[1,23]},{"name":"PLSA_IMPERSONATE_CLIENT","features":[1,23]},{"name":"PLSA_LOCATE_PKG_BY_ID","features":[23]},{"name":"PLSA_MAP_BUFFER","features":[1,23]},{"name":"PLSA_OPEN_SAM_USER","features":[1,23]},{"name":"PLSA_OPEN_TOKEN_BY_LOGON_ID","features":[1,23]},{"name":"PLSA_PROTECT_MEMORY","features":[23]},{"name":"PLSA_QUERY_CLIENT_REQUEST","features":[1,23]},{"name":"PLSA_REDIRECTED_LOGON_CALLBACK","features":[1,23]},{"name":"PLSA_REDIRECTED_LOGON_CLEANUP_CALLBACK","features":[1,23]},{"name":"PLSA_REDIRECTED_LOGON_GET_LOGON_CREDS","features":[1,23]},{"name":"PLSA_REDIRECTED_LOGON_GET_SID","features":[1,23]},{"name":"PLSA_REDIRECTED_LOGON_GET_SUPP_CREDS","features":[1,23]},{"name":"PLSA_REDIRECTED_LOGON_INIT","features":[1,23]},{"name":"PLSA_REGISTER_CALLBACK","features":[1,23]},{"name":"PLSA_REGISTER_NOTIFICATION","features":[1,23,37]},{"name":"PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS","features":[1,23]},{"name":"PLSA_SET_APP_MODE_INFO","features":[1,23]},{"name":"PLSA_UNLOAD_PACKAGE","features":[1,23]},{"name":"PLSA_UPDATE_PRIMARY_CREDENTIALS","features":[1,23]},{"name":"POLICY_ACCOUNT_DOMAIN_INFO","features":[1,23]},{"name":"POLICY_AUDIT_CATEGORIES_INFO","features":[23]},{"name":"POLICY_AUDIT_EVENTS_INFO","features":[1,23]},{"name":"POLICY_AUDIT_EVENT_FAILURE","features":[23]},{"name":"POLICY_AUDIT_EVENT_NONE","features":[23]},{"name":"POLICY_AUDIT_EVENT_SUCCESS","features":[23]},{"name":"POLICY_AUDIT_EVENT_TYPE","features":[23]},{"name":"POLICY_AUDIT_EVENT_UNCHANGED","features":[23]},{"name":"POLICY_AUDIT_FULL_QUERY_INFO","features":[1,23]},{"name":"POLICY_AUDIT_FULL_SET_INFO","features":[1,23]},{"name":"POLICY_AUDIT_LOG_ADMIN","features":[23]},{"name":"POLICY_AUDIT_LOG_INFO","features":[1,23]},{"name":"POLICY_AUDIT_SID_ARRAY","features":[1,23]},{"name":"POLICY_AUDIT_SUBCATEGORIES_INFO","features":[23]},{"name":"POLICY_CREATE_ACCOUNT","features":[23]},{"name":"POLICY_CREATE_PRIVILEGE","features":[23]},{"name":"POLICY_CREATE_SECRET","features":[23]},{"name":"POLICY_DEFAULT_QUOTA_INFO","features":[23]},{"name":"POLICY_DNS_DOMAIN_INFO","features":[1,23]},{"name":"POLICY_DOMAIN_EFS_INFO","features":[23]},{"name":"POLICY_DOMAIN_INFORMATION_CLASS","features":[23]},{"name":"POLICY_DOMAIN_KERBEROS_TICKET_INFO","features":[23]},{"name":"POLICY_GET_PRIVATE_INFORMATION","features":[23]},{"name":"POLICY_INFORMATION_CLASS","features":[23]},{"name":"POLICY_KERBEROS_VALIDATE_CLIENT","features":[23]},{"name":"POLICY_LOOKUP_NAMES","features":[23]},{"name":"POLICY_LSA_SERVER_ROLE","features":[23]},{"name":"POLICY_LSA_SERVER_ROLE_INFO","features":[23]},{"name":"POLICY_MACHINE_ACCT_INFO","features":[1,23]},{"name":"POLICY_MACHINE_ACCT_INFO2","features":[1,23]},{"name":"POLICY_MODIFICATION_INFO","features":[23]},{"name":"POLICY_NOTIFICATION","features":[23]},{"name":"POLICY_NOTIFICATION_INFORMATION_CLASS","features":[23]},{"name":"POLICY_PD_ACCOUNT_INFO","features":[23]},{"name":"POLICY_PRIMARY_DOMAIN_INFO","features":[1,23]},{"name":"POLICY_QOS_ALLOW_LOCAL_ROOT_CERT_STORE","features":[23]},{"name":"POLICY_QOS_DHCP_SERVER_ALLOWED","features":[23]},{"name":"POLICY_QOS_INBOUND_CONFIDENTIALITY","features":[23]},{"name":"POLICY_QOS_INBOUND_INTEGRITY","features":[23]},{"name":"POLICY_QOS_OUTBOUND_CONFIDENTIALITY","features":[23]},{"name":"POLICY_QOS_OUTBOUND_INTEGRITY","features":[23]},{"name":"POLICY_QOS_RAS_SERVER_ALLOWED","features":[23]},{"name":"POLICY_QOS_SCHANNEL_REQUIRED","features":[23]},{"name":"POLICY_REPLICA_SOURCE_INFO","features":[23]},{"name":"POLICY_SERVER_ADMIN","features":[23]},{"name":"POLICY_SET_AUDIT_REQUIREMENTS","features":[23]},{"name":"POLICY_SET_DEFAULT_QUOTA_LIMITS","features":[23]},{"name":"POLICY_TRUST_ADMIN","features":[23]},{"name":"POLICY_VIEW_AUDIT_INFORMATION","features":[23]},{"name":"POLICY_VIEW_LOCAL_INFORMATION","features":[23]},{"name":"PRIMARY_CRED_ARSO_LOGON","features":[23]},{"name":"PRIMARY_CRED_AUTH_ID","features":[23]},{"name":"PRIMARY_CRED_CACHED_INTERACTIVE_LOGON","features":[23]},{"name":"PRIMARY_CRED_CACHED_LOGON","features":[23]},{"name":"PRIMARY_CRED_CLEAR_PASSWORD","features":[23]},{"name":"PRIMARY_CRED_DO_NOT_SPLIT","features":[23]},{"name":"PRIMARY_CRED_ENCRYPTED_CREDGUARD_PASSWORD","features":[23]},{"name":"PRIMARY_CRED_ENTERPRISE_INTERNET_USER","features":[23]},{"name":"PRIMARY_CRED_EX","features":[23]},{"name":"PRIMARY_CRED_FOR_PASSWORD_CHANGE","features":[23]},{"name":"PRIMARY_CRED_INTERACTIVE_FIDO_LOGON","features":[23]},{"name":"PRIMARY_CRED_INTERACTIVE_NGC_LOGON","features":[23]},{"name":"PRIMARY_CRED_INTERACTIVE_SMARTCARD_LOGON","features":[23]},{"name":"PRIMARY_CRED_INTERNET_USER","features":[23]},{"name":"PRIMARY_CRED_LOGON_LUA","features":[23]},{"name":"PRIMARY_CRED_LOGON_NO_TCB","features":[23]},{"name":"PRIMARY_CRED_LOGON_PACKAGE_SHIFT","features":[23]},{"name":"PRIMARY_CRED_OWF_PASSWORD","features":[23]},{"name":"PRIMARY_CRED_PACKAGE_MASK","features":[23]},{"name":"PRIMARY_CRED_PACKED_CREDS","features":[23]},{"name":"PRIMARY_CRED_PROTECTED_USER","features":[23]},{"name":"PRIMARY_CRED_REFRESH_NEEDED","features":[23]},{"name":"PRIMARY_CRED_RESTRICTED_TS","features":[23]},{"name":"PRIMARY_CRED_SUPPLEMENTAL","features":[23]},{"name":"PRIMARY_CRED_TRANSFER","features":[23]},{"name":"PRIMARY_CRED_UPDATE","features":[23]},{"name":"PSAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[23]},{"name":"PSAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[1,23]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[1,23]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[1,23]},{"name":"PSAM_INIT_NOTIFICATION_ROUTINE","features":[1,23]},{"name":"PSAM_PASSWORD_FILTER_ROUTINE","features":[1,23]},{"name":"PSAM_PASSWORD_NOTIFICATION_ROUTINE","features":[1,23]},{"name":"PctPublicKey","features":[23]},{"name":"Pku2uCertificateS4ULogon","features":[23]},{"name":"PolicyAccountDomainInformation","features":[23]},{"name":"PolicyAuditEventsInformation","features":[23]},{"name":"PolicyAuditFullQueryInformation","features":[23]},{"name":"PolicyAuditFullSetInformation","features":[23]},{"name":"PolicyAuditLogInformation","features":[23]},{"name":"PolicyDefaultQuotaInformation","features":[23]},{"name":"PolicyDnsDomainInformation","features":[23]},{"name":"PolicyDnsDomainInformationInt","features":[23]},{"name":"PolicyDomainEfsInformation","features":[23]},{"name":"PolicyDomainKerberosTicketInformation","features":[23]},{"name":"PolicyLastEntry","features":[23]},{"name":"PolicyLocalAccountDomainInformation","features":[23]},{"name":"PolicyLsaServerRoleInformation","features":[23]},{"name":"PolicyMachineAccountInformation","features":[23]},{"name":"PolicyMachineAccountInformation2","features":[23]},{"name":"PolicyModificationInformation","features":[23]},{"name":"PolicyNotifyAccountDomainInformation","features":[23]},{"name":"PolicyNotifyAuditEventsInformation","features":[23]},{"name":"PolicyNotifyDnsDomainInformation","features":[23]},{"name":"PolicyNotifyDomainEfsInformation","features":[23]},{"name":"PolicyNotifyDomainKerberosTicketInformation","features":[23]},{"name":"PolicyNotifyGlobalSaclInformation","features":[23]},{"name":"PolicyNotifyMachineAccountPasswordInformation","features":[23]},{"name":"PolicyNotifyMax","features":[23]},{"name":"PolicyNotifyServerRoleInformation","features":[23]},{"name":"PolicyPdAccountInformation","features":[23]},{"name":"PolicyPrimaryDomainInformation","features":[23]},{"name":"PolicyReplicaSourceInformation","features":[23]},{"name":"PolicyServerRoleBackup","features":[23]},{"name":"PolicyServerRolePrimary","features":[23]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_A","features":[23,118]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_W","features":[23,118]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_A","features":[23,118]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_W","features":[23,118]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_A","features":[23,118]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_W","features":[23,118]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_A","features":[23,118]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_W","features":[23,118]},{"name":"QUERY_SECURITY_CONTEXT_TOKEN_FN","features":[23,118]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_A","features":[23]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_W","features":[23]},{"name":"QueryContextAttributesA","features":[23,118]},{"name":"QueryContextAttributesExA","features":[23,118]},{"name":"QueryContextAttributesExW","features":[23,118]},{"name":"QueryContextAttributesW","features":[23,118]},{"name":"QueryCredentialsAttributesA","features":[23,118]},{"name":"QueryCredentialsAttributesExA","features":[23,118]},{"name":"QueryCredentialsAttributesExW","features":[23,118]},{"name":"QueryCredentialsAttributesW","features":[23,118]},{"name":"QuerySecurityContextToken","features":[23,118]},{"name":"QuerySecurityPackageInfoA","features":[23]},{"name":"QuerySecurityPackageInfoW","features":[23]},{"name":"RCRED_CRED_EXISTS","features":[23]},{"name":"RCRED_STATUS_NOCRED","features":[23]},{"name":"RCRED_STATUS_UNKNOWN_ISSUER","features":[23]},{"name":"REVERT_SECURITY_CONTEXT_FN","features":[23,118]},{"name":"RTL_ENCRYPT_MEMORY_SIZE","features":[23]},{"name":"RTL_ENCRYPT_OPTION_CROSS_PROCESS","features":[23]},{"name":"RTL_ENCRYPT_OPTION_FOR_SYSTEM","features":[23]},{"name":"RTL_ENCRYPT_OPTION_SAME_LOGON","features":[23]},{"name":"RevertSecurityContext","features":[23,118]},{"name":"RtlDecryptMemory","features":[1,23]},{"name":"RtlEncryptMemory","features":[1,23]},{"name":"RtlGenRandom","features":[1,23]},{"name":"SAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[23]},{"name":"SAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[23]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[23]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[23]},{"name":"SAM_DAYS_PER_WEEK","features":[23]},{"name":"SAM_INIT_NOTIFICATION_ROUTINE","features":[23]},{"name":"SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE","features":[23]},{"name":"SAM_PASSWORD_FILTER_ROUTINE","features":[23]},{"name":"SAM_REGISTER_MAPPING_ELEMENT","features":[1,23]},{"name":"SAM_REGISTER_MAPPING_LIST","features":[1,23]},{"name":"SAM_REGISTER_MAPPING_TABLE","features":[1,23]},{"name":"SASL_AUTHZID_STATE","features":[23]},{"name":"SASL_OPTION_AUTHZ_PROCESSING","features":[23]},{"name":"SASL_OPTION_AUTHZ_STRING","features":[23]},{"name":"SASL_OPTION_RECV_SIZE","features":[23]},{"name":"SASL_OPTION_SEND_SIZE","features":[23]},{"name":"SCHANNEL_ALERT","features":[23]},{"name":"SCHANNEL_ALERT_TOKEN","features":[23]},{"name":"SCHANNEL_ALERT_TOKEN_ALERT_TYPE","features":[23]},{"name":"SCHANNEL_CERT_HASH","features":[23]},{"name":"SCHANNEL_CERT_HASH_STORE","features":[23]},{"name":"SCHANNEL_CLIENT_SIGNATURE","features":[23,68]},{"name":"SCHANNEL_CRED","features":[1,23,68]},{"name":"SCHANNEL_CRED_FLAGS","features":[23]},{"name":"SCHANNEL_CRED_VERSION","features":[23]},{"name":"SCHANNEL_NAME","features":[23]},{"name":"SCHANNEL_NAME_A","features":[23]},{"name":"SCHANNEL_NAME_W","features":[23]},{"name":"SCHANNEL_RENEGOTIATE","features":[23]},{"name":"SCHANNEL_SECRET_PRIVKEY","features":[23]},{"name":"SCHANNEL_SECRET_TYPE_CAPI","features":[23]},{"name":"SCHANNEL_SESSION","features":[23]},{"name":"SCHANNEL_SESSION_TOKEN","features":[23]},{"name":"SCHANNEL_SESSION_TOKEN_FLAGS","features":[23]},{"name":"SCHANNEL_SHUTDOWN","features":[23]},{"name":"SCH_ALLOW_NULL_ENCRYPTION","features":[23]},{"name":"SCH_CRED","features":[23]},{"name":"SCH_CREDENTIALS","features":[1,23,68]},{"name":"SCH_CREDENTIALS_VERSION","features":[23]},{"name":"SCH_CRED_AUTO_CRED_VALIDATION","features":[23]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL","features":[23]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL_ON_CREATE","features":[23]},{"name":"SCH_CRED_CERT_CONTEXT","features":[23]},{"name":"SCH_CRED_DEFERRED_CRED_VALIDATION","features":[23]},{"name":"SCH_CRED_DISABLE_RECONNECTS","features":[23]},{"name":"SCH_CRED_FORMAT_CERT_CONTEXT","features":[23]},{"name":"SCH_CRED_FORMAT_CERT_HASH","features":[23]},{"name":"SCH_CRED_FORMAT_CERT_HASH_STORE","features":[23]},{"name":"SCH_CRED_IGNORE_NO_REVOCATION_CHECK","features":[23]},{"name":"SCH_CRED_IGNORE_REVOCATION_OFFLINE","features":[23]},{"name":"SCH_CRED_MANUAL_CRED_VALIDATION","features":[23]},{"name":"SCH_CRED_MAX_STORE_NAME_SIZE","features":[23]},{"name":"SCH_CRED_MAX_SUPPORTED_ALGS","features":[23]},{"name":"SCH_CRED_MAX_SUPPORTED_ALPN_IDS","features":[23]},{"name":"SCH_CRED_MAX_SUPPORTED_CERTS","features":[23]},{"name":"SCH_CRED_MAX_SUPPORTED_CHAINING_MODES","features":[23]},{"name":"SCH_CRED_MAX_SUPPORTED_CRYPTO_SETTINGS","features":[23]},{"name":"SCH_CRED_MAX_SUPPORTED_PARAMETERS","features":[23]},{"name":"SCH_CRED_MEMORY_STORE_CERT","features":[23]},{"name":"SCH_CRED_NO_DEFAULT_CREDS","features":[23]},{"name":"SCH_CRED_NO_SERVERNAME_CHECK","features":[23]},{"name":"SCH_CRED_NO_SYSTEM_MAPPER","features":[23]},{"name":"SCH_CRED_PUBLIC_CERTCHAIN","features":[23]},{"name":"SCH_CRED_RESTRICTED_ROOTS","features":[23]},{"name":"SCH_CRED_REVOCATION_CHECK_CACHE_ONLY","features":[23]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN","features":[23]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[23]},{"name":"SCH_CRED_REVOCATION_CHECK_END_CERT","features":[23]},{"name":"SCH_CRED_SECRET_CAPI","features":[23]},{"name":"SCH_CRED_SECRET_PRIVKEY","features":[23]},{"name":"SCH_CRED_SNI_CREDENTIAL","features":[23]},{"name":"SCH_CRED_SNI_ENABLE_OCSP","features":[23]},{"name":"SCH_CRED_USE_DEFAULT_CREDS","features":[23]},{"name":"SCH_CRED_V1","features":[23]},{"name":"SCH_CRED_V2","features":[23]},{"name":"SCH_CRED_V3","features":[23]},{"name":"SCH_CRED_VERSION","features":[23]},{"name":"SCH_CRED_X509_CAPI","features":[23]},{"name":"SCH_CRED_X509_CERTCHAIN","features":[23]},{"name":"SCH_DISABLE_RECONNECTS","features":[23]},{"name":"SCH_EXTENSIONS_OPTIONS_NONE","features":[23]},{"name":"SCH_EXTENSION_DATA","features":[23]},{"name":"SCH_MACHINE_CERT_HASH","features":[23]},{"name":"SCH_MAX_EXT_SUBSCRIPTIONS","features":[23]},{"name":"SCH_NO_RECORD_HEADER","features":[23]},{"name":"SCH_SEND_AUX_RECORD","features":[23]},{"name":"SCH_SEND_ROOT_CERT","features":[23]},{"name":"SCH_USE_DTLS_ONLY","features":[23]},{"name":"SCH_USE_PRESHAREDKEY_ONLY","features":[23]},{"name":"SCH_USE_STRONG_CRYPTO","features":[23]},{"name":"SECBUFFER_ALERT","features":[23]},{"name":"SECBUFFER_APPLICATION_PROTOCOLS","features":[23]},{"name":"SECBUFFER_ATTRMASK","features":[23]},{"name":"SECBUFFER_CERTIFICATE_REQUEST_CONTEXT","features":[23]},{"name":"SECBUFFER_CHANGE_PASS_RESPONSE","features":[23]},{"name":"SECBUFFER_CHANNEL_BINDINGS","features":[23]},{"name":"SECBUFFER_CHANNEL_BINDINGS_RESULT","features":[23]},{"name":"SECBUFFER_DATA","features":[23]},{"name":"SECBUFFER_DTLS_MTU","features":[23]},{"name":"SECBUFFER_EMPTY","features":[23]},{"name":"SECBUFFER_EXTRA","features":[23]},{"name":"SECBUFFER_FLAGS","features":[23]},{"name":"SECBUFFER_KERNEL_MAP","features":[23]},{"name":"SECBUFFER_MECHLIST","features":[23]},{"name":"SECBUFFER_MECHLIST_SIGNATURE","features":[23]},{"name":"SECBUFFER_MISSING","features":[23]},{"name":"SECBUFFER_NEGOTIATION_INFO","features":[23]},{"name":"SECBUFFER_PADDING","features":[23]},{"name":"SECBUFFER_PKG_PARAMS","features":[23]},{"name":"SECBUFFER_PRESHARED_KEY","features":[23]},{"name":"SECBUFFER_PRESHARED_KEY_IDENTITY","features":[23]},{"name":"SECBUFFER_READONLY","features":[23]},{"name":"SECBUFFER_READONLY_WITH_CHECKSUM","features":[23]},{"name":"SECBUFFER_RESERVED","features":[23]},{"name":"SECBUFFER_SEND_GENERIC_TLS_EXTENSION","features":[23]},{"name":"SECBUFFER_SRTP_MASTER_KEY_IDENTIFIER","features":[23]},{"name":"SECBUFFER_SRTP_PROTECTION_PROFILES","features":[23]},{"name":"SECBUFFER_STREAM","features":[23]},{"name":"SECBUFFER_STREAM_HEADER","features":[23]},{"name":"SECBUFFER_STREAM_TRAILER","features":[23]},{"name":"SECBUFFER_SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[23]},{"name":"SECBUFFER_TARGET","features":[23]},{"name":"SECBUFFER_TARGET_HOST","features":[23]},{"name":"SECBUFFER_TOKEN","features":[23]},{"name":"SECBUFFER_TOKEN_BINDING","features":[23]},{"name":"SECBUFFER_TRAFFIC_SECRETS","features":[23]},{"name":"SECBUFFER_UNMAPPED","features":[23]},{"name":"SECBUFFER_VERSION","features":[23]},{"name":"SECPKGCONTEXT_CIPHERINFO_V1","features":[23]},{"name":"SECPKGCONTEXT_CONNECTION_INFO_EX_V1","features":[23]},{"name":"SECPKG_ANSI_ATTRIBUTE","features":[23]},{"name":"SECPKG_APP_MODE_INFO","features":[1,23]},{"name":"SECPKG_ATTR","features":[23]},{"name":"SECPKG_ATTR_ACCESS_TOKEN","features":[23]},{"name":"SECPKG_ATTR_APPLICATION_PROTOCOL","features":[23]},{"name":"SECPKG_ATTR_APP_DATA","features":[23]},{"name":"SECPKG_ATTR_AUTHENTICATION_ID","features":[23]},{"name":"SECPKG_ATTR_AUTHORITY","features":[23]},{"name":"SECPKG_ATTR_CC_POLICY_RESULT","features":[23]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT","features":[23]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT_INPROC","features":[23]},{"name":"SECPKG_ATTR_CERT_TRUST_STATUS","features":[23]},{"name":"SECPKG_ATTR_CIPHER_INFO","features":[23]},{"name":"SECPKG_ATTR_CIPHER_STRENGTHS","features":[23]},{"name":"SECPKG_ATTR_CLIENT_CERT_POLICY","features":[23]},{"name":"SECPKG_ATTR_CLIENT_SPECIFIED_TARGET","features":[23]},{"name":"SECPKG_ATTR_CONNECTION_INFO","features":[23]},{"name":"SECPKG_ATTR_CONNECTION_INFO_EX","features":[23]},{"name":"SECPKG_ATTR_CONTEXT_DELETED","features":[23]},{"name":"SECPKG_ATTR_CREDENTIAL_NAME","features":[23]},{"name":"SECPKG_ATTR_CREDS","features":[23]},{"name":"SECPKG_ATTR_CREDS_2","features":[23]},{"name":"SECPKG_ATTR_C_ACCESS_TOKEN","features":[23]},{"name":"SECPKG_ATTR_C_FULL_ACCESS_TOKEN","features":[23]},{"name":"SECPKG_ATTR_DCE_INFO","features":[23]},{"name":"SECPKG_ATTR_DTLS_MTU","features":[23]},{"name":"SECPKG_ATTR_EAP_KEY_BLOCK","features":[23]},{"name":"SECPKG_ATTR_EAP_PRF_INFO","features":[23]},{"name":"SECPKG_ATTR_EARLY_START","features":[23]},{"name":"SECPKG_ATTR_ENDPOINT_BINDINGS","features":[23]},{"name":"SECPKG_ATTR_FLAGS","features":[23]},{"name":"SECPKG_ATTR_ISSUER_LIST","features":[23]},{"name":"SECPKG_ATTR_ISSUER_LIST_EX","features":[23]},{"name":"SECPKG_ATTR_IS_LOOPBACK","features":[23]},{"name":"SECPKG_ATTR_KEYING_MATERIAL","features":[23]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INFO","features":[23]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INPROC","features":[23]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_TOKEN_BINDING","features":[23]},{"name":"SECPKG_ATTR_KEY_INFO","features":[23]},{"name":"SECPKG_ATTR_LAST_CLIENT_TOKEN_STATUS","features":[23]},{"name":"SECPKG_ATTR_LCT_STATUS","features":[23]},{"name":"SECPKG_ATTR_LIFESPAN","features":[23]},{"name":"SECPKG_ATTR_LOCAL_CERT_CONTEXT","features":[23]},{"name":"SECPKG_ATTR_LOCAL_CERT_INFO","features":[23]},{"name":"SECPKG_ATTR_LOCAL_CRED","features":[23]},{"name":"SECPKG_ATTR_LOGOFF_TIME","features":[23]},{"name":"SECPKG_ATTR_MAPPED_CRED_ATTR","features":[23]},{"name":"SECPKG_ATTR_NAMES","features":[23]},{"name":"SECPKG_ATTR_NATIVE_NAMES","features":[23]},{"name":"SECPKG_ATTR_NEGOTIATED_TLS_EXTENSIONS","features":[23]},{"name":"SECPKG_ATTR_NEGOTIATION_INFO","features":[23]},{"name":"SECPKG_ATTR_NEGOTIATION_PACKAGE","features":[23]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_KERBEROS","features":[23]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_NTLM","features":[23]},{"name":"SECPKG_ATTR_NEGO_KEYS","features":[23]},{"name":"SECPKG_ATTR_NEGO_PKG_INFO","features":[23]},{"name":"SECPKG_ATTR_NEGO_STATUS","features":[23]},{"name":"SECPKG_ATTR_PACKAGE_INFO","features":[23]},{"name":"SECPKG_ATTR_PASSWORD_EXPIRY","features":[23]},{"name":"SECPKG_ATTR_PROMPTING_NEEDED","features":[23]},{"name":"SECPKG_ATTR_PROTO_INFO","features":[23]},{"name":"SECPKG_ATTR_REMOTE_CERTIFICATES","features":[23]},{"name":"SECPKG_ATTR_REMOTE_CERT_CHAIN","features":[23]},{"name":"SECPKG_ATTR_REMOTE_CERT_CONTEXT","features":[23]},{"name":"SECPKG_ATTR_REMOTE_CRED","features":[23]},{"name":"SECPKG_ATTR_ROOT_STORE","features":[23]},{"name":"SECPKG_ATTR_SASL_CONTEXT","features":[23]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT","features":[23]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT_INPROC","features":[23]},{"name":"SECPKG_ATTR_SERVER_AUTH_FLAGS","features":[23]},{"name":"SECPKG_ATTR_SESSION_INFO","features":[23]},{"name":"SECPKG_ATTR_SESSION_KEY","features":[23]},{"name":"SECPKG_ATTR_SESSION_TICKET_KEYS","features":[23]},{"name":"SECPKG_ATTR_SIZES","features":[23]},{"name":"SECPKG_ATTR_SRTP_PARAMETERS","features":[23]},{"name":"SECPKG_ATTR_STREAM_SIZES","features":[23]},{"name":"SECPKG_ATTR_SUBJECT_SECURITY_ATTRIBUTES","features":[23]},{"name":"SECPKG_ATTR_SUPPORTED_ALGS","features":[23]},{"name":"SECPKG_ATTR_SUPPORTED_PROTOCOLS","features":[23]},{"name":"SECPKG_ATTR_SUPPORTED_SIGNATURES","features":[23]},{"name":"SECPKG_ATTR_TARGET","features":[23]},{"name":"SECPKG_ATTR_TARGET_INFORMATION","features":[23]},{"name":"SECPKG_ATTR_THUNK_ALL","features":[23]},{"name":"SECPKG_ATTR_TOKEN_BINDING","features":[23]},{"name":"SECPKG_ATTR_UI_INFO","features":[23]},{"name":"SECPKG_ATTR_UNIQUE_BINDINGS","features":[23]},{"name":"SECPKG_ATTR_USER_FLAGS","features":[23]},{"name":"SECPKG_ATTR_USE_NCRYPT","features":[23]},{"name":"SECPKG_ATTR_USE_VALIDATED","features":[23]},{"name":"SECPKG_BYTE_VECTOR","features":[23]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER","features":[23]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_AUTHCAPABLE","features":[23]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_UPNCAPABLE","features":[23]},{"name":"SECPKG_CALLFLAGS_FORCE_SUPPLIED","features":[23]},{"name":"SECPKG_CALL_ANSI","features":[23]},{"name":"SECPKG_CALL_ASYNC_UPDATE","features":[23]},{"name":"SECPKG_CALL_BUFFER_MARSHAL","features":[23]},{"name":"SECPKG_CALL_CLEANUP","features":[23]},{"name":"SECPKG_CALL_CLOUDAP_CONNECT","features":[23]},{"name":"SECPKG_CALL_INFO","features":[23]},{"name":"SECPKG_CALL_IN_PROC","features":[23]},{"name":"SECPKG_CALL_IS_TCB","features":[23]},{"name":"SECPKG_CALL_KERNEL_MODE","features":[23]},{"name":"SECPKG_CALL_NEGO","features":[23]},{"name":"SECPKG_CALL_NEGO_EXTENDER","features":[23]},{"name":"SECPKG_CALL_NETWORK_ONLY","features":[23]},{"name":"SECPKG_CALL_PACKAGE_MESSAGE_TYPE","features":[23]},{"name":"SECPKG_CALL_PACKAGE_PIN_DC_REQUEST","features":[23]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST","features":[1,23]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_CLEANUP_CREDENTIALS","features":[23]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_OPTIMISTIC_LOGON","features":[23]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_TO_SSO_SESSION","features":[23]},{"name":"SECPKG_CALL_PACKAGE_UNPIN_ALL_DCS_REQUEST","features":[23]},{"name":"SECPKG_CALL_PROCESS_TERM","features":[23]},{"name":"SECPKG_CALL_RECURSIVE","features":[23]},{"name":"SECPKG_CALL_SYSTEM_PROC","features":[23]},{"name":"SECPKG_CALL_THREAD_TERM","features":[23]},{"name":"SECPKG_CALL_UNLOCK","features":[23]},{"name":"SECPKG_CALL_URGENT","features":[23]},{"name":"SECPKG_CALL_WINLOGON","features":[23]},{"name":"SECPKG_CALL_WOWA32","features":[23]},{"name":"SECPKG_CALL_WOWCLIENT","features":[23]},{"name":"SECPKG_CALL_WOWX86","features":[23]},{"name":"SECPKG_CLIENT_INFO","features":[1,23]},{"name":"SECPKG_CLIENT_INFO_EX","features":[1,23]},{"name":"SECPKG_CLIENT_PROCESS_TERMINATED","features":[23]},{"name":"SECPKG_CLIENT_THREAD_TERMINATED","features":[23]},{"name":"SECPKG_CONTEXT_EXPORT_DELETE_OLD","features":[23]},{"name":"SECPKG_CONTEXT_EXPORT_RESET_NEW","features":[23]},{"name":"SECPKG_CONTEXT_EXPORT_TO_KERNEL","features":[23]},{"name":"SECPKG_CONTEXT_THUNKS","features":[23]},{"name":"SECPKG_CRED","features":[23]},{"name":"SECPKG_CREDENTIAL","features":[1,23]},{"name":"SECPKG_CREDENTIAL_ATTRIBUTE","features":[23]},{"name":"SECPKG_CREDENTIAL_FLAGS_CALLER_HAS_TCB","features":[23]},{"name":"SECPKG_CREDENTIAL_FLAGS_CREDMAN_CRED","features":[23]},{"name":"SECPKG_CREDENTIAL_VERSION","features":[23]},{"name":"SECPKG_CRED_ATTR_CERT","features":[23]},{"name":"SECPKG_CRED_ATTR_KDC_PROXY_SETTINGS","features":[23]},{"name":"SECPKG_CRED_ATTR_NAMES","features":[23]},{"name":"SECPKG_CRED_ATTR_PAC_BYPASS","features":[23]},{"name":"SECPKG_CRED_ATTR_SSI_PROVIDER","features":[23]},{"name":"SECPKG_CRED_AUTOLOGON_RESTRICTED","features":[23]},{"name":"SECPKG_CRED_BOTH","features":[23]},{"name":"SECPKG_CRED_CLASS","features":[23]},{"name":"SECPKG_CRED_DEFAULT","features":[23]},{"name":"SECPKG_CRED_INBOUND","features":[23]},{"name":"SECPKG_CRED_OUTBOUND","features":[23]},{"name":"SECPKG_CRED_PROCESS_POLICY_ONLY","features":[23]},{"name":"SECPKG_CRED_RESERVED","features":[23]},{"name":"SECPKG_DLL_FUNCTIONS","features":[1,23]},{"name":"SECPKG_EVENT_NOTIFY","features":[23]},{"name":"SECPKG_EVENT_PACKAGE_CHANGE","features":[23]},{"name":"SECPKG_EVENT_ROLE_CHANGE","features":[23]},{"name":"SECPKG_EXTENDED_INFORMATION","features":[23]},{"name":"SECPKG_EXTENDED_INFORMATION_CLASS","features":[23]},{"name":"SECPKG_EXTRA_OIDS","features":[23]},{"name":"SECPKG_FLAG_ACCEPT_WIN32_NAME","features":[23]},{"name":"SECPKG_FLAG_APPCONTAINER_CHECKS","features":[23]},{"name":"SECPKG_FLAG_APPCONTAINER_PASSTHROUGH","features":[23]},{"name":"SECPKG_FLAG_APPLY_LOOPBACK","features":[23]},{"name":"SECPKG_FLAG_ASCII_BUFFERS","features":[23]},{"name":"SECPKG_FLAG_CLIENT_ONLY","features":[23]},{"name":"SECPKG_FLAG_CONNECTION","features":[23]},{"name":"SECPKG_FLAG_CREDENTIAL_ISOLATION_ENABLED","features":[23]},{"name":"SECPKG_FLAG_DATAGRAM","features":[23]},{"name":"SECPKG_FLAG_DELEGATION","features":[23]},{"name":"SECPKG_FLAG_EXTENDED_ERROR","features":[23]},{"name":"SECPKG_FLAG_FRAGMENT","features":[23]},{"name":"SECPKG_FLAG_GSS_COMPATIBLE","features":[23]},{"name":"SECPKG_FLAG_IMPERSONATION","features":[23]},{"name":"SECPKG_FLAG_INTEGRITY","features":[23]},{"name":"SECPKG_FLAG_LOGON","features":[23]},{"name":"SECPKG_FLAG_MULTI_REQUIRED","features":[23]},{"name":"SECPKG_FLAG_MUTUAL_AUTH","features":[23]},{"name":"SECPKG_FLAG_NEGOTIABLE","features":[23]},{"name":"SECPKG_FLAG_NEGOTIABLE2","features":[23]},{"name":"SECPKG_FLAG_NEGO_EXTENDER","features":[23]},{"name":"SECPKG_FLAG_PRIVACY","features":[23]},{"name":"SECPKG_FLAG_READONLY_WITH_CHECKSUM","features":[23]},{"name":"SECPKG_FLAG_RESTRICTED_TOKENS","features":[23]},{"name":"SECPKG_FLAG_STREAM","features":[23]},{"name":"SECPKG_FLAG_TOKEN_ONLY","features":[23]},{"name":"SECPKG_FUNCTION_TABLE","features":[1,23,118,37]},{"name":"SECPKG_GSS_INFO","features":[23]},{"name":"SECPKG_ID_NONE","features":[23]},{"name":"SECPKG_INTERFACE_VERSION","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_10","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_11","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_2","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_3","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_4","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_5","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_6","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_7","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_8","features":[23]},{"name":"SECPKG_INTERFACE_VERSION_9","features":[23]},{"name":"SECPKG_KERNEL_FUNCTIONS","features":[1,23,7]},{"name":"SECPKG_KERNEL_FUNCTION_TABLE","features":[1,23,7]},{"name":"SECPKG_LSAMODEINIT_NAME","features":[23]},{"name":"SECPKG_MAX_OID_LENGTH","features":[23]},{"name":"SECPKG_MSVAV_FLAGS_VALID","features":[23]},{"name":"SECPKG_MSVAV_TIMESTAMP_VALID","features":[23]},{"name":"SECPKG_MUTUAL_AUTH_LEVEL","features":[23]},{"name":"SECPKG_NAME_TYPE","features":[23]},{"name":"SECPKG_NEGO2_INFO","features":[23]},{"name":"SECPKG_NEGOTIATION_COMPLETE","features":[23]},{"name":"SECPKG_NEGOTIATION_DIRECT","features":[23]},{"name":"SECPKG_NEGOTIATION_IN_PROGRESS","features":[23]},{"name":"SECPKG_NEGOTIATION_OPTIMISTIC","features":[23]},{"name":"SECPKG_NEGOTIATION_TRY_MULTICRED","features":[23]},{"name":"SECPKG_NTLM_TARGETINFO","features":[1,23]},{"name":"SECPKG_OPTIONS_PERMANENT","features":[23]},{"name":"SECPKG_OPTIONS_TYPE_LSA","features":[23]},{"name":"SECPKG_OPTIONS_TYPE_SSPI","features":[23]},{"name":"SECPKG_OPTIONS_TYPE_UNKNOWN","features":[23]},{"name":"SECPKG_PACKAGE_CHANGE_LOAD","features":[23]},{"name":"SECPKG_PACKAGE_CHANGE_SELECT","features":[23]},{"name":"SECPKG_PACKAGE_CHANGE_TYPE","features":[23]},{"name":"SECPKG_PACKAGE_CHANGE_UNLOAD","features":[23]},{"name":"SECPKG_PARAMETERS","features":[1,23]},{"name":"SECPKG_POST_LOGON_USER_INFO","features":[1,23]},{"name":"SECPKG_PRIMARY_CRED","features":[1,23]},{"name":"SECPKG_PRIMARY_CRED_EX","features":[1,23]},{"name":"SECPKG_PRIMARY_CRED_EX_FLAGS_EX_DELEGATION_TOKEN","features":[23]},{"name":"SECPKG_REDIRECTED_LOGON_BUFFER","features":[1,23]},{"name":"SECPKG_REDIRECTED_LOGON_GUID_INITIALIZER","features":[23]},{"name":"SECPKG_SERIALIZED_OID","features":[23]},{"name":"SECPKG_SESSIONINFO_TYPE","features":[23]},{"name":"SECPKG_SHORT_VECTOR","features":[23]},{"name":"SECPKG_STATE_CRED_ISOLATION_ENABLED","features":[23]},{"name":"SECPKG_STATE_DOMAIN_CONTROLLER","features":[23]},{"name":"SECPKG_STATE_ENCRYPTION_PERMITTED","features":[23]},{"name":"SECPKG_STATE_RESERVED_1","features":[23]},{"name":"SECPKG_STATE_STANDALONE","features":[23]},{"name":"SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED","features":[23]},{"name":"SECPKG_STATE_WORKSTATION","features":[23]},{"name":"SECPKG_SUPPLEMENTAL_CRED","features":[23]},{"name":"SECPKG_SUPPLEMENTAL_CRED_ARRAY","features":[23]},{"name":"SECPKG_SUPPLIED_CREDENTIAL","features":[23]},{"name":"SECPKG_SURROGATE_LOGON","features":[1,23]},{"name":"SECPKG_SURROGATE_LOGON_ENTRY","features":[23]},{"name":"SECPKG_SURROGATE_LOGON_VERSION_1","features":[23]},{"name":"SECPKG_TARGETINFO","features":[1,23]},{"name":"SECPKG_UNICODE_ATTRIBUTE","features":[23]},{"name":"SECPKG_USERMODEINIT_NAME","features":[23]},{"name":"SECPKG_USER_FUNCTION_TABLE","features":[1,23]},{"name":"SECPKG_WOW_CLIENT_DLL","features":[23]},{"name":"SECQOP_WRAP_NO_ENCRYPT","features":[23]},{"name":"SECQOP_WRAP_OOB_DATA","features":[23]},{"name":"SECRET_QUERY_VALUE","features":[23]},{"name":"SECRET_SET_VALUE","features":[23]},{"name":"SECURITY_ENTRYPOINT","features":[23]},{"name":"SECURITY_ENTRYPOINT16","features":[23]},{"name":"SECURITY_ENTRYPOINT_ANSI","features":[23]},{"name":"SECURITY_ENTRYPOINT_ANSIA","features":[23]},{"name":"SECURITY_ENTRYPOINT_ANSIW","features":[23]},{"name":"SECURITY_LOGON_SESSION_DATA","features":[1,23]},{"name":"SECURITY_LOGON_TYPE","features":[23]},{"name":"SECURITY_NATIVE_DREP","features":[23]},{"name":"SECURITY_NETWORK_DREP","features":[23]},{"name":"SECURITY_PACKAGE_OPTIONS","features":[23]},{"name":"SECURITY_PACKAGE_OPTIONS_TYPE","features":[23]},{"name":"SECURITY_STRING","features":[23]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION","features":[23]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_2","features":[23]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_3","features":[23]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_4","features":[23]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_5","features":[23]},{"name":"SECURITY_USER_DATA","features":[1,23]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[23]},{"name":"SEC_APPLICATION_PROTOCOL_LIST","features":[23]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_EXT","features":[23]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_STATUS","features":[23]},{"name":"SEC_CERTIFICATE_REQUEST_CONTEXT","features":[23]},{"name":"SEC_CHANNEL_BINDINGS","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_AUDIT_BINDINGS","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_EX","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_ABSENT","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_CLIENT_SUPPORT","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISMATCH","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISSING","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MATCHED","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MISSING","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_PROXY","features":[23]},{"name":"SEC_CHANNEL_BINDINGS_VALID_FLAGS","features":[23]},{"name":"SEC_DTLS_MTU","features":[23]},{"name":"SEC_FLAGS","features":[23]},{"name":"SEC_GET_KEY_FN","features":[23]},{"name":"SEC_NEGOTIATION_INFO","features":[23]},{"name":"SEC_PRESHAREDKEY","features":[23]},{"name":"SEC_PRESHAREDKEY_IDENTITY","features":[23]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[23]},{"name":"SEC_SRTP_PROTECTION_PROFILES","features":[23]},{"name":"SEC_TOKEN_BINDING","features":[23]},{"name":"SEC_TRAFFIC_SECRETS","features":[23]},{"name":"SEC_TRAFFIC_SECRET_TYPE","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY32","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_FOR_SYSTEM","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_LOGON","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_PROCESS","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX2","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX32","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXA","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXW","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_ID_PROVIDER","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_DOMAIN","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_USER","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_PROCESS_ENCRYPTED","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_RESERVED","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_NO_CHECKBOX","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_BY_CALLER","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_CHECKED","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_USE_MASK","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_ENCRYPTED","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_PROTECTED","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_USER_PROTECTED","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_INFO","features":[23,19]},{"name":"SEC_WINNT_AUTH_IDENTITY_MARSHALLED","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_ONLY","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION","features":[23]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION_2","features":[23]},{"name":"SEND_GENERIC_TLS_EXTENSION","features":[23]},{"name":"SESSION_TICKET_INFO_V0","features":[23]},{"name":"SESSION_TICKET_INFO_VERSION","features":[23]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_A","features":[23,118]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_W","features":[23,118]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_A","features":[23,118]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_W","features":[23,118]},{"name":"SE_ADT_ACCESS_REASON","features":[23]},{"name":"SE_ADT_CLAIMS","features":[23]},{"name":"SE_ADT_OBJECT_ONLY","features":[23]},{"name":"SE_ADT_OBJECT_TYPE","features":[23]},{"name":"SE_ADT_PARAMETERS_SELF_RELATIVE","features":[23]},{"name":"SE_ADT_PARAMETERS_SEND_TO_LSA","features":[23]},{"name":"SE_ADT_PARAMETER_ARRAY","features":[23]},{"name":"SE_ADT_PARAMETER_ARRAY_ENTRY","features":[23]},{"name":"SE_ADT_PARAMETER_ARRAY_EX","features":[23]},{"name":"SE_ADT_PARAMETER_EXTENSIBLE_AUDIT","features":[23]},{"name":"SE_ADT_PARAMETER_GENERIC_AUDIT","features":[23]},{"name":"SE_ADT_PARAMETER_TYPE","features":[23]},{"name":"SE_ADT_PARAMETER_WRITE_SYNCHRONOUS","features":[23]},{"name":"SE_ADT_POLICY_AUDIT_EVENT_TYPE_EX_BEGIN","features":[23]},{"name":"SE_BATCH_LOGON_NAME","features":[23]},{"name":"SE_DENY_BATCH_LOGON_NAME","features":[23]},{"name":"SE_DENY_INTERACTIVE_LOGON_NAME","features":[23]},{"name":"SE_DENY_NETWORK_LOGON_NAME","features":[23]},{"name":"SE_DENY_REMOTE_INTERACTIVE_LOGON_NAME","features":[23]},{"name":"SE_DENY_SERVICE_LOGON_NAME","features":[23]},{"name":"SE_INTERACTIVE_LOGON_NAME","features":[23]},{"name":"SE_MAX_AUDIT_PARAMETERS","features":[23]},{"name":"SE_MAX_GENERIC_AUDIT_PARAMETERS","features":[23]},{"name":"SE_NETWORK_LOGON_NAME","features":[23]},{"name":"SE_REMOTE_INTERACTIVE_LOGON_NAME","features":[23]},{"name":"SE_SERVICE_LOGON_NAME","features":[23]},{"name":"SLAcquireGenuineTicket","features":[23]},{"name":"SLActivateProduct","features":[23]},{"name":"SLClose","features":[23]},{"name":"SLConsumeRight","features":[23]},{"name":"SLDATATYPE","features":[23]},{"name":"SLDepositOfflineConfirmationId","features":[23]},{"name":"SLDepositOfflineConfirmationIdEx","features":[23]},{"name":"SLFireEvent","features":[23]},{"name":"SLGenerateOfflineInstallationId","features":[23]},{"name":"SLGenerateOfflineInstallationIdEx","features":[23]},{"name":"SLGetApplicationInformation","features":[23]},{"name":"SLGetGenuineInformation","features":[23]},{"name":"SLGetInstalledProductKeyIds","features":[23]},{"name":"SLGetLicense","features":[23]},{"name":"SLGetLicenseFileId","features":[23]},{"name":"SLGetLicenseInformation","features":[23]},{"name":"SLGetLicensingStatusInformation","features":[23]},{"name":"SLGetPKeyId","features":[23]},{"name":"SLGetPKeyInformation","features":[23]},{"name":"SLGetPolicyInformation","features":[23]},{"name":"SLGetPolicyInformationDWORD","features":[23]},{"name":"SLGetProductSkuInformation","features":[23]},{"name":"SLGetReferralInformation","features":[23]},{"name":"SLGetSLIDList","features":[23]},{"name":"SLGetServerStatus","features":[23]},{"name":"SLGetServiceInformation","features":[23]},{"name":"SLGetWindowsInformation","features":[23]},{"name":"SLGetWindowsInformationDWORD","features":[23]},{"name":"SLIDTYPE","features":[23]},{"name":"SLInstallLicense","features":[23]},{"name":"SLInstallProofOfPurchase","features":[23]},{"name":"SLIsGenuineLocal","features":[23]},{"name":"SLLICENSINGSTATUS","features":[23]},{"name":"SLOpen","features":[23]},{"name":"SLQueryLicenseValueFromApp","features":[23]},{"name":"SLREFERRALTYPE","features":[23]},{"name":"SLRegisterEvent","features":[1,23]},{"name":"SLSetCurrentProductKey","features":[23]},{"name":"SLSetGenuineInformation","features":[23]},{"name":"SLUninstallLicense","features":[23]},{"name":"SLUninstallProofOfPurchase","features":[23]},{"name":"SLUnregisterEvent","features":[1,23]},{"name":"SL_ACTIVATION_INFO_HEADER","features":[23]},{"name":"SL_ACTIVATION_TYPE","features":[23]},{"name":"SL_ACTIVATION_TYPE_ACTIVE_DIRECTORY","features":[23]},{"name":"SL_ACTIVATION_TYPE_DEFAULT","features":[23]},{"name":"SL_AD_ACTIVATION_INFO","features":[23]},{"name":"SL_CLIENTAPI_ZONE","features":[23]},{"name":"SL_DATA_BINARY","features":[23]},{"name":"SL_DATA_DWORD","features":[23]},{"name":"SL_DATA_MULTI_SZ","features":[23]},{"name":"SL_DATA_NONE","features":[23]},{"name":"SL_DATA_SUM","features":[23]},{"name":"SL_DATA_SZ","features":[23]},{"name":"SL_DEFAULT_MIGRATION_ENCRYPTOR_URI","features":[23]},{"name":"SL_EVENT_LICENSING_STATE_CHANGED","features":[23]},{"name":"SL_EVENT_POLICY_CHANGED","features":[23]},{"name":"SL_EVENT_USER_NOTIFICATION","features":[23]},{"name":"SL_E_ACTIVATION_IN_PROGRESS","features":[23]},{"name":"SL_E_APPLICATION_POLICIES_MISSING","features":[23]},{"name":"SL_E_APPLICATION_POLICIES_NOT_LOADED","features":[23]},{"name":"SL_E_AUTHN_CANT_VERIFY","features":[23]},{"name":"SL_E_AUTHN_CHALLENGE_NOT_SET","features":[23]},{"name":"SL_E_AUTHN_MISMATCHED_KEY","features":[23]},{"name":"SL_E_AUTHN_WRONG_VERSION","features":[23]},{"name":"SL_E_BASE_SKU_NOT_AVAILABLE","features":[23]},{"name":"SL_E_BIOS_KEY","features":[23]},{"name":"SL_E_BLOCKED_PRODUCT_KEY","features":[23]},{"name":"SL_E_CHPA_ACTCONFIG_ID_NOT_FOUND","features":[23]},{"name":"SL_E_CHPA_BINDING_MAPPING_NOT_FOUND","features":[23]},{"name":"SL_E_CHPA_BINDING_NOT_FOUND","features":[23]},{"name":"SL_E_CHPA_BUSINESS_RULE_INPUT_NOT_FOUND","features":[23]},{"name":"SL_E_CHPA_DATABASE_ERROR","features":[23]},{"name":"SL_E_CHPA_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[23]},{"name":"SL_E_CHPA_DIGITALMARKER_INVALID_BINDING","features":[23]},{"name":"SL_E_CHPA_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[23]},{"name":"SL_E_CHPA_DMAK_LIMIT_EXCEEDED","features":[23]},{"name":"SL_E_CHPA_DYNAMICALLY_BLOCKED_PRODUCT_KEY","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCTKEY_BINDING","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCT_KEY_PROPERTY","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCTKEY_BINDING","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_PROPERTY","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_RECORD","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_PROCESS_PRODUCT_KEY_BINDINGS_XML","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCTKEY_BINDING","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_PROPERTY","features":[23]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_RECORD","features":[23]},{"name":"SL_E_CHPA_GENERAL_ERROR","features":[23]},{"name":"SL_E_CHPA_INVALID_ACTCONFIG_ID","features":[23]},{"name":"SL_E_CHPA_INVALID_ARGUMENT","features":[23]},{"name":"SL_E_CHPA_INVALID_BINDING","features":[23]},{"name":"SL_E_CHPA_INVALID_BINDING_URI","features":[23]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA","features":[23]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA_ID","features":[23]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY","features":[23]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_CHAR","features":[23]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_FORMAT","features":[23]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_LENGTH","features":[23]},{"name":"SL_E_CHPA_MAXIMUM_UNLOCK_EXCEEDED","features":[23]},{"name":"SL_E_CHPA_MSCH_RESPONSE_NOT_AVAILABLE_VGA","features":[23]},{"name":"SL_E_CHPA_NETWORK_ERROR","features":[23]},{"name":"SL_E_CHPA_NO_RULES_TO_ACTIVATE","features":[23]},{"name":"SL_E_CHPA_NULL_VALUE_FOR_PROPERTY_NAME_OR_ID","features":[23]},{"name":"SL_E_CHPA_OEM_SLP_COA0","features":[23]},{"name":"SL_E_CHPA_OVERRIDE_REQUEST_NOT_FOUND","features":[23]},{"name":"SL_E_CHPA_PRODUCT_KEY_BEING_USED","features":[23]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED","features":[23]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[23]},{"name":"SL_E_CHPA_PRODUCT_KEY_OUT_OF_RANGE","features":[23]},{"name":"SL_E_CHPA_REISSUANCE_LIMIT_NOT_FOUND","features":[23]},{"name":"SL_E_CHPA_RESPONSE_NOT_AVAILABLE","features":[23]},{"name":"SL_E_CHPA_SYSTEM_ERROR","features":[23]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[23]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[23]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[23]},{"name":"SL_E_CHPA_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[23]},{"name":"SL_E_CHPA_UNKNOWN_PRODUCT_KEY_TYPE","features":[23]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_ID","features":[23]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_NAME","features":[23]},{"name":"SL_E_CHPA_UNSUPPORTED_PRODUCT_KEY","features":[23]},{"name":"SL_E_CIDIID_INVALID_CHECK_DIGITS","features":[23]},{"name":"SL_E_CIDIID_INVALID_DATA","features":[23]},{"name":"SL_E_CIDIID_INVALID_DATA_LENGTH","features":[23]},{"name":"SL_E_CIDIID_INVALID_VERSION","features":[23]},{"name":"SL_E_CIDIID_MISMATCHED","features":[23]},{"name":"SL_E_CIDIID_MISMATCHED_PKEY","features":[23]},{"name":"SL_E_CIDIID_NOT_BOUND","features":[23]},{"name":"SL_E_CIDIID_NOT_DEPOSITED","features":[23]},{"name":"SL_E_CIDIID_VERSION_NOT_SUPPORTED","features":[23]},{"name":"SL_E_DATATYPE_MISMATCHED","features":[23]},{"name":"SL_E_DECRYPTION_LICENSES_NOT_AVAILABLE","features":[23]},{"name":"SL_E_DEPENDENT_PROPERTY_NOT_SET","features":[23]},{"name":"SL_E_DOWNLEVEL_SETUP_KEY","features":[23]},{"name":"SL_E_DUPLICATE_POLICY","features":[23]},{"name":"SL_E_EDITION_MISMATCHED","features":[23]},{"name":"SL_E_ENGINE_DETECTED_EXPLOIT","features":[23]},{"name":"SL_E_EUL_CONSUMPTION_FAILED","features":[23]},{"name":"SL_E_EUL_NOT_AVAILABLE","features":[23]},{"name":"SL_E_EVALUATION_FAILED","features":[23]},{"name":"SL_E_EVENT_ALREADY_REGISTERED","features":[23]},{"name":"SL_E_EVENT_NOT_REGISTERED","features":[23]},{"name":"SL_E_EXTERNAL_SIGNATURE_NOT_FOUND","features":[23]},{"name":"SL_E_GRACE_TIME_EXPIRED","features":[23]},{"name":"SL_E_HEALTH_CHECK_FAILED_MUI_FILES","features":[23]},{"name":"SL_E_HEALTH_CHECK_FAILED_NEUTRAL_FILES","features":[23]},{"name":"SL_E_HWID_CHANGED","features":[23]},{"name":"SL_E_HWID_ERROR","features":[23]},{"name":"SL_E_IA_ID_MISMATCH","features":[23]},{"name":"SL_E_IA_INVALID_VIRTUALIZATION_PLATFORM","features":[23]},{"name":"SL_E_IA_MACHINE_NOT_BOUND","features":[23]},{"name":"SL_E_IA_PARENT_PARTITION_NOT_ACTIVATED","features":[23]},{"name":"SL_E_IA_THROTTLE_LIMIT_EXCEEDED","features":[23]},{"name":"SL_E_INTERNAL_ERROR","features":[23]},{"name":"SL_E_INVALID_AD_DATA","features":[23]},{"name":"SL_E_INVALID_BINDING_BLOB","features":[23]},{"name":"SL_E_INVALID_CLIENT_TOKEN","features":[23]},{"name":"SL_E_INVALID_CONTEXT","features":[23]},{"name":"SL_E_INVALID_CONTEXT_DATA","features":[23]},{"name":"SL_E_INVALID_EVENT_ID","features":[23]},{"name":"SL_E_INVALID_FILE_HASH","features":[23]},{"name":"SL_E_INVALID_GUID","features":[23]},{"name":"SL_E_INVALID_HASH","features":[23]},{"name":"SL_E_INVALID_LICENSE","features":[23]},{"name":"SL_E_INVALID_LICENSE_STATE","features":[23]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE","features":[23]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE_EXPIRED","features":[23]},{"name":"SL_E_INVALID_OEM_OR_VOLUME_BINDING_DATA","features":[23]},{"name":"SL_E_INVALID_OFFLINE_BLOB","features":[23]},{"name":"SL_E_INVALID_OSVERSION_TEMPLATEID","features":[23]},{"name":"SL_E_INVALID_OS_FOR_PRODUCT_KEY","features":[23]},{"name":"SL_E_INVALID_PACKAGE","features":[23]},{"name":"SL_E_INVALID_PACKAGE_VERSION","features":[23]},{"name":"SL_E_INVALID_PKEY","features":[23]},{"name":"SL_E_INVALID_PRODUCT_KEY","features":[23]},{"name":"SL_E_INVALID_PRODUCT_KEY_TYPE","features":[23]},{"name":"SL_E_INVALID_RSDP_COUNT","features":[23]},{"name":"SL_E_INVALID_RULESET_RULE","features":[23]},{"name":"SL_E_INVALID_RUNNING_MODE","features":[23]},{"name":"SL_E_INVALID_TEMPLATE_ID","features":[23]},{"name":"SL_E_INVALID_TOKEN_DATA","features":[23]},{"name":"SL_E_INVALID_USE_OF_ADD_ON_PKEY","features":[23]},{"name":"SL_E_INVALID_XML_BLOB","features":[23]},{"name":"SL_E_IP_LOCATION_FALIED","features":[23]},{"name":"SL_E_ISSUANCE_LICENSE_NOT_INSTALLED","features":[23]},{"name":"SL_E_LICENSE_AUTHORIZATION_FAILED","features":[23]},{"name":"SL_E_LICENSE_DECRYPTION_FAILED","features":[23]},{"name":"SL_E_LICENSE_FILE_NOT_INSTALLED","features":[23]},{"name":"SL_E_LICENSE_INVALID_ADDON_INFO","features":[23]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_DUPLICATED","features":[23]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_NOT_FOUND","features":[23]},{"name":"SL_E_LICENSE_NOT_BOUND","features":[23]},{"name":"SL_E_LICENSE_SERVER_URL_NOT_FOUND","features":[23]},{"name":"SL_E_LICENSE_SIGNATURE_VERIFICATION_FAILED","features":[23]},{"name":"SL_E_LUA_ACCESSDENIED","features":[23]},{"name":"SL_E_MISMATCHED_APPID","features":[23]},{"name":"SL_E_MISMATCHED_KEY_TYPES","features":[23]},{"name":"SL_E_MISMATCHED_PID","features":[23]},{"name":"SL_E_MISMATCHED_PKEY_RANGE","features":[23]},{"name":"SL_E_MISMATCHED_PRODUCT_SKU","features":[23]},{"name":"SL_E_MISMATCHED_SECURITY_PROCESSOR","features":[23]},{"name":"SL_E_MISSING_OVERRIDE_ONLY_ATTRIBUTE","features":[23]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED","features":[23]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED_2","features":[23]},{"name":"SL_E_NON_GENUINE_STATUS_LAST","features":[23]},{"name":"SL_E_NOTIFICATION_BREACH_DETECTED","features":[23]},{"name":"SL_E_NOTIFICATION_GRACE_EXPIRED","features":[23]},{"name":"SL_E_NOTIFICATION_OTHER_REASONS","features":[23]},{"name":"SL_E_NOT_ACTIVATED","features":[23]},{"name":"SL_E_NOT_EVALUATED","features":[23]},{"name":"SL_E_NOT_GENUINE","features":[23]},{"name":"SL_E_NOT_SUPPORTED","features":[23]},{"name":"SL_E_NO_PID_CONFIG_DATA","features":[23]},{"name":"SL_E_NO_PRODUCT_KEY_FOUND","features":[23]},{"name":"SL_E_OEM_KEY_EDITION_MISMATCH","features":[23]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_NOT_FOUND","features":[23]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_REVOKED","features":[23]},{"name":"SL_E_OFFLINE_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[23]},{"name":"SL_E_OPERATION_NOT_ALLOWED","features":[23]},{"name":"SL_E_OUT_OF_TOLERANCE","features":[23]},{"name":"SL_E_PKEY_INTERNAL_ERROR","features":[23]},{"name":"SL_E_PKEY_INVALID_ALGORITHM","features":[23]},{"name":"SL_E_PKEY_INVALID_CONFIG","features":[23]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE1","features":[23]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE2","features":[23]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE3","features":[23]},{"name":"SL_E_PKEY_INVALID_UNIQUEID","features":[23]},{"name":"SL_E_PKEY_INVALID_UPGRADE","features":[23]},{"name":"SL_E_PKEY_NOT_INSTALLED","features":[23]},{"name":"SL_E_PLUGIN_INVALID_MANIFEST","features":[23]},{"name":"SL_E_PLUGIN_NOT_REGISTERED","features":[23]},{"name":"SL_E_POLICY_CACHE_INVALID","features":[23]},{"name":"SL_E_POLICY_OTHERINFO_MISMATCH","features":[23]},{"name":"SL_E_PRODUCT_KEY_INSTALLATION_NOT_ALLOWED","features":[23]},{"name":"SL_E_PRODUCT_SKU_NOT_INSTALLED","features":[23]},{"name":"SL_E_PRODUCT_UNIQUENESS_GROUP_ID_INVALID","features":[23]},{"name":"SL_E_PROXY_KEY_NOT_FOUND","features":[23]},{"name":"SL_E_PROXY_POLICY_NOT_UPDATED","features":[23]},{"name":"SL_E_PUBLISHING_LICENSE_NOT_INSTALLED","features":[23]},{"name":"SL_E_RAC_NOT_AVAILABLE","features":[23]},{"name":"SL_E_RIGHT_NOT_CONSUMED","features":[23]},{"name":"SL_E_RIGHT_NOT_GRANTED","features":[23]},{"name":"SL_E_SECURE_STORE_ID_MISMATCH","features":[23]},{"name":"SL_E_SERVICE_RUNNING","features":[23]},{"name":"SL_E_SERVICE_STOPPING","features":[23]},{"name":"SL_E_SFS_BAD_TOKEN_EXT","features":[23]},{"name":"SL_E_SFS_BAD_TOKEN_NAME","features":[23]},{"name":"SL_E_SFS_DUPLICATE_TOKEN_NAME","features":[23]},{"name":"SL_E_SFS_FILE_READ_ERROR","features":[23]},{"name":"SL_E_SFS_FILE_WRITE_ERROR","features":[23]},{"name":"SL_E_SFS_INVALID_FD_TABLE","features":[23]},{"name":"SL_E_SFS_INVALID_FILE_POSITION","features":[23]},{"name":"SL_E_SFS_INVALID_FS_HEADER","features":[23]},{"name":"SL_E_SFS_INVALID_FS_VERSION","features":[23]},{"name":"SL_E_SFS_INVALID_SYNC","features":[23]},{"name":"SL_E_SFS_INVALID_TOKEN_DATA_HASH","features":[23]},{"name":"SL_E_SFS_INVALID_TOKEN_DESCRIPTOR","features":[23]},{"name":"SL_E_SFS_NO_ACTIVE_TRANSACTION","features":[23]},{"name":"SL_E_SFS_TOKEN_SIZE_MISMATCH","features":[23]},{"name":"SL_E_SLP_BAD_FORMAT","features":[23]},{"name":"SL_E_SLP_INVALID_MARKER_VERSION","features":[23]},{"name":"SL_E_SLP_MISSING_ACPI_SLIC","features":[23]},{"name":"SL_E_SLP_MISSING_SLP_MARKER","features":[23]},{"name":"SL_E_SLP_NOT_SIGNED","features":[23]},{"name":"SL_E_SLP_OEM_CERT_MISSING","features":[23]},{"name":"SL_E_SOFTMOD_EXPLOIT_DETECTED","features":[23]},{"name":"SL_E_SPC_NOT_AVAILABLE","features":[23]},{"name":"SL_E_SRV_AUTHORIZATION_FAILED","features":[23]},{"name":"SL_E_SRV_BUSINESS_TOKEN_ENTRY_NOT_FOUND","features":[23]},{"name":"SL_E_SRV_CLIENT_CLOCK_OUT_OF_SYNC","features":[23]},{"name":"SL_E_SRV_GENERAL_ERROR","features":[23]},{"name":"SL_E_SRV_INVALID_BINDING","features":[23]},{"name":"SL_E_SRV_INVALID_LICENSE_STRUCTURE","features":[23]},{"name":"SL_E_SRV_INVALID_PAYLOAD","features":[23]},{"name":"SL_E_SRV_INVALID_PRODUCT_KEY_LICENSE","features":[23]},{"name":"SL_E_SRV_INVALID_PUBLISH_LICENSE","features":[23]},{"name":"SL_E_SRV_INVALID_RIGHTS_ACCOUNT_LICENSE","features":[23]},{"name":"SL_E_SRV_INVALID_SECURITY_PROCESSOR_LICENSE","features":[23]},{"name":"SL_E_SRV_SERVER_PONG","features":[23]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_AUTHORIZED","features":[23]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_PRS_SIGNED","features":[23]},{"name":"SL_E_STORE_UPGRADE_TOKEN_REQUIRED","features":[23]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_EDITION","features":[23]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_PID","features":[23]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_VERSION","features":[23]},{"name":"SL_E_TAMPER_DETECTED","features":[23]},{"name":"SL_E_TAMPER_RECOVERY_REQUIRES_ACTIVATION","features":[23]},{"name":"SL_E_TKA_CERT_CNG_NOT_AVAILABLE","features":[23]},{"name":"SL_E_TKA_CERT_NOT_FOUND","features":[23]},{"name":"SL_E_TKA_CHALLENGE_EXPIRED","features":[23]},{"name":"SL_E_TKA_CHALLENGE_MISMATCH","features":[23]},{"name":"SL_E_TKA_CRITERIA_MISMATCH","features":[23]},{"name":"SL_E_TKA_FAILED_GRANT_PARSING","features":[23]},{"name":"SL_E_TKA_GRANT_NOT_FOUND","features":[23]},{"name":"SL_E_TKA_INVALID_BLOB","features":[23]},{"name":"SL_E_TKA_INVALID_CERTIFICATE","features":[23]},{"name":"SL_E_TKA_INVALID_CERT_CHAIN","features":[23]},{"name":"SL_E_TKA_INVALID_SKU_ID","features":[23]},{"name":"SL_E_TKA_INVALID_SMARTCARD","features":[23]},{"name":"SL_E_TKA_INVALID_THUMBPRINT","features":[23]},{"name":"SL_E_TKA_SILENT_ACTIVATION_FAILURE","features":[23]},{"name":"SL_E_TKA_SOFT_CERT_DISALLOWED","features":[23]},{"name":"SL_E_TKA_SOFT_CERT_INVALID","features":[23]},{"name":"SL_E_TKA_TAMPERED_CERT_CHAIN","features":[23]},{"name":"SL_E_TKA_THUMBPRINT_CERT_NOT_FOUND","features":[23]},{"name":"SL_E_TKA_TPID_MISMATCH","features":[23]},{"name":"SL_E_TOKEN_STORE_INVALID_STATE","features":[23]},{"name":"SL_E_TOKSTO_ALREADY_INITIALIZED","features":[23]},{"name":"SL_E_TOKSTO_CANT_ACQUIRE_MUTEX","features":[23]},{"name":"SL_E_TOKSTO_CANT_CREATE_FILE","features":[23]},{"name":"SL_E_TOKSTO_CANT_CREATE_MUTEX","features":[23]},{"name":"SL_E_TOKSTO_CANT_PARSE_PROPERTIES","features":[23]},{"name":"SL_E_TOKSTO_CANT_READ_FILE","features":[23]},{"name":"SL_E_TOKSTO_CANT_WRITE_TO_FILE","features":[23]},{"name":"SL_E_TOKSTO_INVALID_FILE","features":[23]},{"name":"SL_E_TOKSTO_NOT_INITIALIZED","features":[23]},{"name":"SL_E_TOKSTO_NO_ID_SET","features":[23]},{"name":"SL_E_TOKSTO_NO_PROPERTIES","features":[23]},{"name":"SL_E_TOKSTO_NO_TOKEN_DATA","features":[23]},{"name":"SL_E_TOKSTO_PROPERTY_NOT_FOUND","features":[23]},{"name":"SL_E_TOKSTO_TOKEN_NOT_FOUND","features":[23]},{"name":"SL_E_USE_LICENSE_NOT_INSTALLED","features":[23]},{"name":"SL_E_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[23]},{"name":"SL_E_VALIDATION_BLOCKED_PRODUCT_KEY","features":[23]},{"name":"SL_E_VALIDATION_INVALID_PRODUCT_KEY","features":[23]},{"name":"SL_E_VALIDITY_PERIOD_EXPIRED","features":[23]},{"name":"SL_E_VALIDITY_TIME_EXPIRED","features":[23]},{"name":"SL_E_VALUE_NOT_FOUND","features":[23]},{"name":"SL_E_VL_AD_AO_NAME_TOO_LONG","features":[23]},{"name":"SL_E_VL_AD_AO_NOT_FOUND","features":[23]},{"name":"SL_E_VL_AD_SCHEMA_VERSION_NOT_SUPPORTED","features":[23]},{"name":"SL_E_VL_BINDING_SERVICE_NOT_ENABLED","features":[23]},{"name":"SL_E_VL_BINDING_SERVICE_UNAVAILABLE","features":[23]},{"name":"SL_E_VL_INFO_PRODUCT_USER_RIGHT","features":[23]},{"name":"SL_E_VL_INVALID_TIMESTAMP","features":[23]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_ID_MISMATCH","features":[23]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_NOT_ACTIVATED","features":[23]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_VM_NOT_SUPPORTED","features":[23]},{"name":"SL_E_VL_MACHINE_NOT_BOUND","features":[23]},{"name":"SL_E_VL_NOT_ENOUGH_COUNT","features":[23]},{"name":"SL_E_VL_NOT_WINDOWS_SLP","features":[23]},{"name":"SL_E_WINDOWS_INVALID_LICENSE_STATE","features":[23]},{"name":"SL_E_WINDOWS_VERSION_MISMATCH","features":[23]},{"name":"SL_GENUINE_STATE","features":[23]},{"name":"SL_GEN_STATE_INVALID_LICENSE","features":[23]},{"name":"SL_GEN_STATE_IS_GENUINE","features":[23]},{"name":"SL_GEN_STATE_LAST","features":[23]},{"name":"SL_GEN_STATE_OFFLINE","features":[23]},{"name":"SL_GEN_STATE_TAMPERED","features":[23]},{"name":"SL_ID_ALL_LICENSES","features":[23]},{"name":"SL_ID_ALL_LICENSE_FILES","features":[23]},{"name":"SL_ID_APPLICATION","features":[23]},{"name":"SL_ID_LAST","features":[23]},{"name":"SL_ID_LICENSE","features":[23]},{"name":"SL_ID_LICENSE_FILE","features":[23]},{"name":"SL_ID_PKEY","features":[23]},{"name":"SL_ID_PRODUCT_SKU","features":[23]},{"name":"SL_ID_STORE_TOKEN","features":[23]},{"name":"SL_INFO_KEY_ACTIVE_PLUGINS","features":[23]},{"name":"SL_INFO_KEY_AUTHOR","features":[23]},{"name":"SL_INFO_KEY_BIOS_OA2_MINOR_VERSION","features":[23]},{"name":"SL_INFO_KEY_BIOS_PKEY","features":[23]},{"name":"SL_INFO_KEY_BIOS_PKEY_DESCRIPTION","features":[23]},{"name":"SL_INFO_KEY_BIOS_PKEY_PKPN","features":[23]},{"name":"SL_INFO_KEY_BIOS_SLIC_STATE","features":[23]},{"name":"SL_INFO_KEY_CHANNEL","features":[23]},{"name":"SL_INFO_KEY_DESCRIPTION","features":[23]},{"name":"SL_INFO_KEY_DIGITAL_PID","features":[23]},{"name":"SL_INFO_KEY_DIGITAL_PID2","features":[23]},{"name":"SL_INFO_KEY_IS_KMS","features":[23]},{"name":"SL_INFO_KEY_IS_PRS","features":[23]},{"name":"SL_INFO_KEY_KMS_CURRENT_COUNT","features":[23]},{"name":"SL_INFO_KEY_KMS_FAILED_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_KMS_LICENSED_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_KMS_NON_GENUINE_GRACE_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_KMS_NOTIFICATION_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_KMS_OOB_GRACE_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_KMS_OOT_GRACE_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_KMS_REQUIRED_CLIENT_COUNT","features":[23]},{"name":"SL_INFO_KEY_KMS_TOTAL_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_KMS_UNLICENSED_REQUESTS","features":[23]},{"name":"SL_INFO_KEY_LICENSE_TYPE","features":[23]},{"name":"SL_INFO_KEY_LICENSOR_URL","features":[23]},{"name":"SL_INFO_KEY_NAME","features":[23]},{"name":"SL_INFO_KEY_PARTIAL_PRODUCT_KEY","features":[23]},{"name":"SL_INFO_KEY_PRODUCT_KEY_ACTIVATION_URL","features":[23]},{"name":"SL_INFO_KEY_PRODUCT_SKU_ID","features":[23]},{"name":"SL_INFO_KEY_RIGHT_ACCOUNT_ACTIVATION_URL","features":[23]},{"name":"SL_INFO_KEY_SECURE_PROCESSOR_ACTIVATION_URL","features":[23]},{"name":"SL_INFO_KEY_SECURE_STORE_ID","features":[23]},{"name":"SL_INFO_KEY_SYSTEM_STATE","features":[23]},{"name":"SL_INFO_KEY_USE_LICENSE_ACTIVATION_URL","features":[23]},{"name":"SL_INFO_KEY_VERSION","features":[23]},{"name":"SL_INTERNAL_ZONE","features":[23]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD","features":[23]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD_2","features":[23]},{"name":"SL_I_OOB_GRACE_PERIOD","features":[23]},{"name":"SL_I_OOT_GRACE_PERIOD","features":[23]},{"name":"SL_I_PERPETUAL_OOB_GRACE_PERIOD","features":[23]},{"name":"SL_I_STORE_BASED_ACTIVATION","features":[23]},{"name":"SL_I_TIMEBASED_EXTENDED_GRACE_PERIOD","features":[23]},{"name":"SL_I_TIMEBASED_VALIDITY_PERIOD","features":[23]},{"name":"SL_LICENSING_STATUS","features":[23]},{"name":"SL_LICENSING_STATUS_IN_GRACE_PERIOD","features":[23]},{"name":"SL_LICENSING_STATUS_LAST","features":[23]},{"name":"SL_LICENSING_STATUS_LICENSED","features":[23]},{"name":"SL_LICENSING_STATUS_NOTIFICATION","features":[23]},{"name":"SL_LICENSING_STATUS_UNLICENSED","features":[23]},{"name":"SL_MDOLLAR_ZONE","features":[23]},{"name":"SL_MSCH_ZONE","features":[23]},{"name":"SL_NONGENUINE_UI_OPTIONS","features":[23]},{"name":"SL_PKEY_DETECT","features":[23]},{"name":"SL_PKEY_MS2005","features":[23]},{"name":"SL_PKEY_MS2009","features":[23]},{"name":"SL_POLICY_EVALUATION_MODE_ENABLED","features":[23]},{"name":"SL_PROP_ACTIVATION_VALIDATION_IN_PROGRESS","features":[23]},{"name":"SL_PROP_BRT_COMMIT","features":[23]},{"name":"SL_PROP_BRT_DATA","features":[23]},{"name":"SL_PROP_GENUINE_RESULT","features":[23]},{"name":"SL_PROP_GET_GENUINE_AUTHZ","features":[23]},{"name":"SL_PROP_GET_GENUINE_SERVER_AUTHZ","features":[23]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_HRESULT","features":[23]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_SERVER_FLAGS","features":[23]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_TIME","features":[23]},{"name":"SL_PROP_NONGENUINE_GRACE_FLAG","features":[23]},{"name":"SL_REARM_REBOOT_REQUIRED","features":[23]},{"name":"SL_REFERRALTYPE_APPID","features":[23]},{"name":"SL_REFERRALTYPE_BEST_MATCH","features":[23]},{"name":"SL_REFERRALTYPE_OVERRIDE_APPID","features":[23]},{"name":"SL_REFERRALTYPE_OVERRIDE_SKUID","features":[23]},{"name":"SL_REFERRALTYPE_SKUID","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_CHECK_DIGITS","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA_LENGTH","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_VERSION","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_INVALID_BINDING","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_LIMIT_EXCEEDED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_OVERRIDE_LIMIT_REACHED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_FREE_OFFER_EXPIRED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ACTCONFIG_ID","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ARGUMENT","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING_URI","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA_ID","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_FORMAT","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_LENGTH","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_MAXIMUM_UNLOCK_EXCEEDED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_NO_RULES_TO_ACTIVATE","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OEM_SLP_COA0","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_BLOCKED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_THROTTLED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DONOR_HWID_NO_ENTITLEMENT","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GENERIC_ERROR","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GP_DISABLED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_HARDWARE_BLOCKED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_BLOCKED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_THROTTLED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NOT_ADMIN","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NO_ASSOCIATION","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_BLOCKED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_THROTTLED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_OUT_OF_RANGE","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_ROT_OVERRIDE_LIMIT_REACHED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[23]},{"name":"SL_REMAPPING_MDOLLAR_UNSUPPORTED_PRODUCT_KEY","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_BAD_GET_INFO_QUERY","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_HANDLE_NOT_COMMITED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_ALGORITHM_TYPE","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_HANDLE","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_KEY_LENGTH","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_LICENSE","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_NO_AES_PROVIDER","features":[23]},{"name":"SL_REMAPPING_SP_PUB_API_TOO_MANY_LOADED_ENVIRONMENTS","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_HASH_FINALIZED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCK","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCKLENGTH","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHER","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHERMODE","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_FORMAT","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_KEYLENGTH","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_PADDING","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURE","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURELENGTH","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_AVAILABLE","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_FOUND","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_NOT_BLOCK_ALIGNED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_ATTRIBUTEID","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_HASHID","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_KEYID","features":[23]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_PROVIDERID","features":[23]},{"name":"SL_REMAPPING_SP_PUB_GENERAL_NOT_INITIALIZED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_IDENTICAL","features":[23]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_POLICY_CHANGED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER","features":[23]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER_RESTORE_FAILED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_PROXY_SOFT_TAMPER","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_MODULE_AUTHENTICATION","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_SECURITY_PROCESSOR_PATCHED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TIMER_ALREADY_EXISTS","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TIMER_EXPIRED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NAME_SIZE_TOO_BIG","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NOT_FOUND","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TIMER_READ_ONLY","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TRUSTED_TIME_OK","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_ACCESS_DENIED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_NOT_FOUND","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_READ_ONLY","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_DATA_SIZE_TOO_BIG","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_ALREADY_EXISTS","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_NOT_FOUND","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_SIZE_TOO_BIG","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_READ_ONLY","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_FULL","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_INVALID_HW_BINDING","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_MAX_REARM_REACHED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_IN_USE","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_NOT_FOUND","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_REARMED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_RECREATED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_GENERATION","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_LOAD_INVALID","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_BREADCRUMB_MISMATCH","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_VERSION_MISMATCH","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_INVALID_DATA","features":[23]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_NO_DATA","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_ALREADY_EXISTS","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_DEBUGGER_DETECTED","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_GENERIC_FAILURE","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_INSUFFICIENT_BUFFER","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDARG","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDDATA","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_CALL","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_VERSION","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_NO_MORE_DATA","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_PUSHKEY_CONFLICT","features":[23]},{"name":"SL_REMAPPING_SP_STATUS_SYSTEM_TIME_SKEWED","features":[23]},{"name":"SL_SERVER_ZONE","features":[23]},{"name":"SL_SYSTEM_POLICY_INFORMATION","features":[23]},{"name":"SL_SYSTEM_STATE_REBOOT_POLICY_FOUND","features":[23]},{"name":"SL_SYSTEM_STATE_TAMPERED","features":[23]},{"name":"SPP_MIGRATION_GATHER_ACTIVATED_WINDOWS_STATE","features":[23]},{"name":"SPP_MIGRATION_GATHER_ALL","features":[23]},{"name":"SPP_MIGRATION_GATHER_MIGRATABLE_APPS","features":[23]},{"name":"SP_ACCEPT_CREDENTIALS_NAME","features":[23]},{"name":"SP_PROT_ALL","features":[23]},{"name":"SP_PROT_DTLS1_0_CLIENT","features":[23]},{"name":"SP_PROT_DTLS1_0_SERVER","features":[23]},{"name":"SP_PROT_DTLS1_2_CLIENT","features":[23]},{"name":"SP_PROT_DTLS1_2_SERVER","features":[23]},{"name":"SP_PROT_DTLS_CLIENT","features":[23]},{"name":"SP_PROT_DTLS_SERVER","features":[23]},{"name":"SP_PROT_NONE","features":[23]},{"name":"SP_PROT_PCT1_CLIENT","features":[23]},{"name":"SP_PROT_PCT1_SERVER","features":[23]},{"name":"SP_PROT_SSL2_CLIENT","features":[23]},{"name":"SP_PROT_SSL2_SERVER","features":[23]},{"name":"SP_PROT_SSL3_CLIENT","features":[23]},{"name":"SP_PROT_SSL3_SERVER","features":[23]},{"name":"SP_PROT_TLS1_0_CLIENT","features":[23]},{"name":"SP_PROT_TLS1_0_SERVER","features":[23]},{"name":"SP_PROT_TLS1_1_CLIENT","features":[23]},{"name":"SP_PROT_TLS1_1_SERVER","features":[23]},{"name":"SP_PROT_TLS1_2_CLIENT","features":[23]},{"name":"SP_PROT_TLS1_2_SERVER","features":[23]},{"name":"SP_PROT_TLS1_3PLUS_CLIENT","features":[23]},{"name":"SP_PROT_TLS1_3PLUS_SERVER","features":[23]},{"name":"SP_PROT_TLS1_3_CLIENT","features":[23]},{"name":"SP_PROT_TLS1_3_SERVER","features":[23]},{"name":"SP_PROT_TLS1_CLIENT","features":[23]},{"name":"SP_PROT_TLS1_SERVER","features":[23]},{"name":"SP_PROT_UNI_CLIENT","features":[23]},{"name":"SP_PROT_UNI_SERVER","features":[23]},{"name":"SR_SECURITY_DESCRIPTOR","features":[23]},{"name":"SSL2SP_NAME","features":[23]},{"name":"SSL2SP_NAME_A","features":[23]},{"name":"SSL2SP_NAME_W","features":[23]},{"name":"SSL3SP_NAME","features":[23]},{"name":"SSL3SP_NAME_A","features":[23]},{"name":"SSL3SP_NAME_W","features":[23]},{"name":"SSL_CRACK_CERTIFICATE_FN","features":[1,23,68]},{"name":"SSL_CRACK_CERTIFICATE_NAME","features":[23]},{"name":"SSL_CREDENTIAL_CERTIFICATE","features":[23]},{"name":"SSL_EMPTY_CACHE_FN_A","features":[1,23]},{"name":"SSL_EMPTY_CACHE_FN_W","features":[1,23]},{"name":"SSL_FREE_CERTIFICATE_FN","features":[1,23,68]},{"name":"SSL_FREE_CERTIFICATE_NAME","features":[23]},{"name":"SSL_SESSION_DISABLE_RECONNECTS","features":[23]},{"name":"SSL_SESSION_ENABLE_RECONNECTS","features":[23]},{"name":"SSL_SESSION_RECONNECT","features":[23]},{"name":"SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[23]},{"name":"SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[23]},{"name":"SSPIPFC_NO_CHECKBOX","features":[23]},{"name":"SSPIPFC_SAVE_CRED_BY_CALLER","features":[23]},{"name":"SSPIPFC_USE_CREDUIBROKER","features":[23]},{"name":"SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[23]},{"name":"SZ_ALG_MAX_SIZE","features":[23]},{"name":"SaslAcceptSecurityContext","features":[23,118]},{"name":"SaslEnumerateProfilesA","features":[23]},{"name":"SaslEnumerateProfilesW","features":[23]},{"name":"SaslGetContextOption","features":[23,118]},{"name":"SaslGetProfilePackageA","features":[23]},{"name":"SaslGetProfilePackageW","features":[23]},{"name":"SaslIdentifyPackageA","features":[23]},{"name":"SaslIdentifyPackageW","features":[23]},{"name":"SaslInitializeSecurityContextA","features":[23,118]},{"name":"SaslInitializeSecurityContextW","features":[23,118]},{"name":"SaslSetContextOption","features":[23,118]},{"name":"Sasl_AuthZIDForbidden","features":[23]},{"name":"Sasl_AuthZIDProcessed","features":[23]},{"name":"SchGetExtensionsOptions","features":[23]},{"name":"SeAdtParmTypeAccessMask","features":[23]},{"name":"SeAdtParmTypeAccessReason","features":[23]},{"name":"SeAdtParmTypeClaims","features":[23]},{"name":"SeAdtParmTypeDateTime","features":[23]},{"name":"SeAdtParmTypeDuration","features":[23]},{"name":"SeAdtParmTypeFileSpec","features":[23]},{"name":"SeAdtParmTypeGuid","features":[23]},{"name":"SeAdtParmTypeHexInt64","features":[23]},{"name":"SeAdtParmTypeHexUlong","features":[23]},{"name":"SeAdtParmTypeLogonHours","features":[23]},{"name":"SeAdtParmTypeLogonId","features":[23]},{"name":"SeAdtParmTypeLogonIdAsSid","features":[23]},{"name":"SeAdtParmTypeLogonIdEx","features":[23]},{"name":"SeAdtParmTypeLogonIdNoSid","features":[23]},{"name":"SeAdtParmTypeLuid","features":[23]},{"name":"SeAdtParmTypeMessage","features":[23]},{"name":"SeAdtParmTypeMultiSzString","features":[23]},{"name":"SeAdtParmTypeNoLogonId","features":[23]},{"name":"SeAdtParmTypeNoUac","features":[23]},{"name":"SeAdtParmTypeNone","features":[23]},{"name":"SeAdtParmTypeObjectTypes","features":[23]},{"name":"SeAdtParmTypePrivs","features":[23]},{"name":"SeAdtParmTypePtr","features":[23]},{"name":"SeAdtParmTypeResourceAttribute","features":[23]},{"name":"SeAdtParmTypeSD","features":[23]},{"name":"SeAdtParmTypeSid","features":[23]},{"name":"SeAdtParmTypeSidList","features":[23]},{"name":"SeAdtParmTypeSockAddr","features":[23]},{"name":"SeAdtParmTypeSockAddrNoPort","features":[23]},{"name":"SeAdtParmTypeStagingReason","features":[23]},{"name":"SeAdtParmTypeString","features":[23]},{"name":"SeAdtParmTypeStringList","features":[23]},{"name":"SeAdtParmTypeTime","features":[23]},{"name":"SeAdtParmTypeUlong","features":[23]},{"name":"SeAdtParmTypeUlongNoConv","features":[23]},{"name":"SeAdtParmTypeUserAccountControl","features":[23]},{"name":"SecApplicationProtocolNegotiationExt_ALPN","features":[23]},{"name":"SecApplicationProtocolNegotiationExt_NPN","features":[23]},{"name":"SecApplicationProtocolNegotiationExt_None","features":[23]},{"name":"SecApplicationProtocolNegotiationStatus_None","features":[23]},{"name":"SecApplicationProtocolNegotiationStatus_SelectedClientOnly","features":[23]},{"name":"SecApplicationProtocolNegotiationStatus_Success","features":[23]},{"name":"SecBuffer","features":[23]},{"name":"SecBufferDesc","features":[23]},{"name":"SecDelegationType","features":[23]},{"name":"SecDirectory","features":[23]},{"name":"SecFull","features":[23]},{"name":"SecNameAlternateId","features":[23]},{"name":"SecNameDN","features":[23]},{"name":"SecNameFlat","features":[23]},{"name":"SecNameSPN","features":[23]},{"name":"SecNameSamCompatible","features":[23]},{"name":"SecObject","features":[23]},{"name":"SecPkgAttrLastClientTokenMaybe","features":[23]},{"name":"SecPkgAttrLastClientTokenNo","features":[23]},{"name":"SecPkgAttrLastClientTokenYes","features":[23]},{"name":"SecPkgCallPackageMaxMessage","features":[23]},{"name":"SecPkgCallPackageMinMessage","features":[23]},{"name":"SecPkgCallPackagePinDcMessage","features":[23]},{"name":"SecPkgCallPackageTransferCredMessage","features":[23]},{"name":"SecPkgCallPackageUnpinAllDcsMessage","features":[23]},{"name":"SecPkgContext_AccessToken","features":[23]},{"name":"SecPkgContext_ApplicationProtocol","features":[23]},{"name":"SecPkgContext_AuthorityA","features":[23]},{"name":"SecPkgContext_AuthorityW","features":[23]},{"name":"SecPkgContext_AuthzID","features":[23]},{"name":"SecPkgContext_Bindings","features":[23]},{"name":"SecPkgContext_CertInfo","features":[23]},{"name":"SecPkgContext_CertificateValidationResult","features":[23]},{"name":"SecPkgContext_Certificates","features":[23]},{"name":"SecPkgContext_CipherInfo","features":[23]},{"name":"SecPkgContext_ClientCertPolicyResult","features":[23]},{"name":"SecPkgContext_ClientSpecifiedTarget","features":[23]},{"name":"SecPkgContext_ConnectionInfo","features":[23,68]},{"name":"SecPkgContext_ConnectionInfoEx","features":[23]},{"name":"SecPkgContext_CredInfo","features":[23]},{"name":"SecPkgContext_CredentialNameA","features":[23]},{"name":"SecPkgContext_CredentialNameW","features":[23]},{"name":"SecPkgContext_DceInfo","features":[23]},{"name":"SecPkgContext_EapKeyBlock","features":[23]},{"name":"SecPkgContext_EapPrfInfo","features":[23]},{"name":"SecPkgContext_EarlyStart","features":[23]},{"name":"SecPkgContext_Flags","features":[23]},{"name":"SecPkgContext_IssuerListInfoEx","features":[23,68]},{"name":"SecPkgContext_KeyInfoA","features":[23]},{"name":"SecPkgContext_KeyInfoW","features":[23]},{"name":"SecPkgContext_KeyingMaterial","features":[23]},{"name":"SecPkgContext_KeyingMaterialInfo","features":[23]},{"name":"SecPkgContext_KeyingMaterial_Inproc","features":[23]},{"name":"SecPkgContext_LastClientTokenStatus","features":[23]},{"name":"SecPkgContext_Lifespan","features":[23]},{"name":"SecPkgContext_LocalCredentialInfo","features":[23]},{"name":"SecPkgContext_LogoffTime","features":[23]},{"name":"SecPkgContext_MappedCredAttr","features":[23]},{"name":"SecPkgContext_NamesA","features":[23]},{"name":"SecPkgContext_NamesW","features":[23]},{"name":"SecPkgContext_NativeNamesA","features":[23]},{"name":"SecPkgContext_NativeNamesW","features":[23]},{"name":"SecPkgContext_NegoKeys","features":[23]},{"name":"SecPkgContext_NegoPackageInfo","features":[23]},{"name":"SecPkgContext_NegoStatus","features":[23]},{"name":"SecPkgContext_NegotiatedTlsExtensions","features":[23]},{"name":"SecPkgContext_NegotiationInfoA","features":[23]},{"name":"SecPkgContext_NegotiationInfoW","features":[23]},{"name":"SecPkgContext_PackageInfoA","features":[23]},{"name":"SecPkgContext_PackageInfoW","features":[23]},{"name":"SecPkgContext_PasswordExpiry","features":[23]},{"name":"SecPkgContext_ProtoInfoA","features":[23]},{"name":"SecPkgContext_ProtoInfoW","features":[23]},{"name":"SecPkgContext_RemoteCredentialInfo","features":[23]},{"name":"SecPkgContext_SaslContext","features":[23]},{"name":"SecPkgContext_SessionAppData","features":[23]},{"name":"SecPkgContext_SessionInfo","features":[23]},{"name":"SecPkgContext_SessionKey","features":[23]},{"name":"SecPkgContext_Sizes","features":[23]},{"name":"SecPkgContext_SrtpParameters","features":[23]},{"name":"SecPkgContext_StreamSizes","features":[23]},{"name":"SecPkgContext_SubjectAttributes","features":[23]},{"name":"SecPkgContext_SupportedSignatures","features":[23]},{"name":"SecPkgContext_Target","features":[23]},{"name":"SecPkgContext_TargetInformation","features":[23]},{"name":"SecPkgContext_TokenBinding","features":[23]},{"name":"SecPkgContext_UiInfo","features":[1,23]},{"name":"SecPkgContext_UserFlags","features":[23]},{"name":"SecPkgCredClass_Ephemeral","features":[23]},{"name":"SecPkgCredClass_Explicit","features":[23]},{"name":"SecPkgCredClass_None","features":[23]},{"name":"SecPkgCredClass_PersistedGeneric","features":[23]},{"name":"SecPkgCredClass_PersistedSpecific","features":[23]},{"name":"SecPkgCred_CipherStrengths","features":[23]},{"name":"SecPkgCred_ClientCertPolicy","features":[1,23]},{"name":"SecPkgCred_SessionTicketKey","features":[23]},{"name":"SecPkgCred_SessionTicketKeys","features":[23]},{"name":"SecPkgCred_SupportedAlgs","features":[23,68]},{"name":"SecPkgCred_SupportedProtocols","features":[23]},{"name":"SecPkgCredentials_Cert","features":[23]},{"name":"SecPkgCredentials_KdcProxySettingsW","features":[23]},{"name":"SecPkgCredentials_NamesA","features":[23]},{"name":"SecPkgCredentials_NamesW","features":[23]},{"name":"SecPkgCredentials_SSIProviderA","features":[23]},{"name":"SecPkgCredentials_SSIProviderW","features":[23]},{"name":"SecPkgInfoA","features":[23]},{"name":"SecPkgInfoW","features":[23]},{"name":"SecService","features":[23]},{"name":"SecSessionPrimaryCred","features":[23]},{"name":"SecTrafficSecret_Client","features":[23]},{"name":"SecTrafficSecret_None","features":[23]},{"name":"SecTrafficSecret_Server","features":[23]},{"name":"SecTree","features":[23]},{"name":"SecpkgContextThunks","features":[23]},{"name":"SecpkgExtraOids","features":[23]},{"name":"SecpkgGssInfo","features":[23]},{"name":"SecpkgMaxInfo","features":[23]},{"name":"SecpkgMutualAuthLevel","features":[23]},{"name":"SecpkgNego2Info","features":[23]},{"name":"SecpkgWowClientDll","features":[23]},{"name":"SecurityFunctionTableA","features":[1,23,118]},{"name":"SecurityFunctionTableW","features":[1,23,118]},{"name":"SendSAS","features":[1,23]},{"name":"SetContextAttributesA","features":[23,118]},{"name":"SetContextAttributesW","features":[23,118]},{"name":"SetCredentialsAttributesA","features":[23,118]},{"name":"SetCredentialsAttributesW","features":[23,118]},{"name":"SpAcceptCredentialsFn","features":[1,23]},{"name":"SpAcceptLsaModeContextFn","features":[1,23]},{"name":"SpAcquireCredentialsHandleFn","features":[1,23]},{"name":"SpAddCredentialsFn","features":[1,23]},{"name":"SpApplyControlTokenFn","features":[1,23]},{"name":"SpChangeAccountPasswordFn","features":[1,23]},{"name":"SpCompleteAuthTokenFn","features":[1,23]},{"name":"SpDeleteContextFn","features":[1,23]},{"name":"SpDeleteCredentialsFn","features":[1,23]},{"name":"SpExchangeMetaDataFn","features":[1,23]},{"name":"SpExportSecurityContextFn","features":[1,23]},{"name":"SpExtractTargetInfoFn","features":[1,23]},{"name":"SpFormatCredentialsFn","features":[1,23]},{"name":"SpFreeCredentialsHandleFn","features":[1,23]},{"name":"SpGetContextTokenFn","features":[1,23]},{"name":"SpGetCredUIContextFn","features":[1,23]},{"name":"SpGetCredentialsFn","features":[1,23]},{"name":"SpGetExtendedInformationFn","features":[1,23]},{"name":"SpGetInfoFn","features":[1,23]},{"name":"SpGetRemoteCredGuardLogonBufferFn","features":[1,23]},{"name":"SpGetRemoteCredGuardSupplementalCredsFn","features":[1,23]},{"name":"SpGetTbalSupplementalCredsFn","features":[1,23]},{"name":"SpGetUserInfoFn","features":[1,23]},{"name":"SpImportSecurityContextFn","features":[1,23]},{"name":"SpInitLsaModeContextFn","features":[1,23]},{"name":"SpInitUserModeContextFn","features":[1,23]},{"name":"SpInitializeFn","features":[1,23,118,37]},{"name":"SpInstanceInitFn","features":[1,23]},{"name":"SpLsaModeInitializeFn","features":[1,23,118,37]},{"name":"SpMakeSignatureFn","features":[1,23]},{"name":"SpMarshalAttributeDataFn","features":[1,23]},{"name":"SpMarshallSupplementalCredsFn","features":[1,23]},{"name":"SpQueryContextAttributesFn","features":[1,23]},{"name":"SpQueryCredentialsAttributesFn","features":[1,23]},{"name":"SpQueryMetaDataFn","features":[1,23]},{"name":"SpSaveCredentialsFn","features":[1,23]},{"name":"SpSealMessageFn","features":[1,23]},{"name":"SpSetContextAttributesFn","features":[1,23]},{"name":"SpSetCredentialsAttributesFn","features":[1,23]},{"name":"SpSetExtendedInformationFn","features":[1,23]},{"name":"SpShutdownFn","features":[1,23]},{"name":"SpUnsealMessageFn","features":[1,23]},{"name":"SpUpdateCredentialsFn","features":[1,23]},{"name":"SpUserModeInitializeFn","features":[1,23]},{"name":"SpValidateTargetInfoFn","features":[1,23]},{"name":"SpVerifySignatureFn","features":[1,23]},{"name":"SslCrackCertificate","features":[1,23,68]},{"name":"SslDeserializeCertificateStore","features":[1,23,68]},{"name":"SslDeserializeCertificateStoreFn","features":[1,23,68]},{"name":"SslEmptyCacheA","features":[1,23]},{"name":"SslEmptyCacheW","features":[1,23]},{"name":"SslFreeCertificate","features":[1,23,68]},{"name":"SslGenerateRandomBits","features":[23]},{"name":"SslGetExtensions","features":[23]},{"name":"SslGetExtensionsFn","features":[23]},{"name":"SslGetMaximumKeySize","features":[23]},{"name":"SslGetServerIdentity","features":[23]},{"name":"SslGetServerIdentityFn","features":[23]},{"name":"SspiCompareAuthIdentities","features":[1,23]},{"name":"SspiCopyAuthIdentity","features":[23]},{"name":"SspiDecryptAuthIdentity","features":[23]},{"name":"SspiDecryptAuthIdentityEx","features":[23]},{"name":"SspiEncodeAuthIdentityAsStrings","features":[23]},{"name":"SspiEncodeStringsAsAuthIdentity","features":[23]},{"name":"SspiEncryptAuthIdentity","features":[23]},{"name":"SspiEncryptAuthIdentityEx","features":[23]},{"name":"SspiExcludePackage","features":[23]},{"name":"SspiFreeAuthIdentity","features":[23]},{"name":"SspiGetTargetHostName","features":[23]},{"name":"SspiIsAuthIdentityEncrypted","features":[1,23]},{"name":"SspiIsPromptingNeeded","features":[1,23]},{"name":"SspiLocalFree","features":[23]},{"name":"SspiMarshalAuthIdentity","features":[23]},{"name":"SspiPrepareForCredRead","features":[23]},{"name":"SspiPrepareForCredWrite","features":[23]},{"name":"SspiPromptForCredentialsA","features":[23]},{"name":"SspiPromptForCredentialsW","features":[23]},{"name":"SspiSetChannelBindingFlags","features":[23]},{"name":"SspiUnmarshalAuthIdentity","features":[23]},{"name":"SspiValidateAuthIdentity","features":[23]},{"name":"SspiZeroAuthIdentity","features":[23]},{"name":"TLS1SP_NAME","features":[23]},{"name":"TLS1SP_NAME_A","features":[23]},{"name":"TLS1SP_NAME_W","features":[23]},{"name":"TLS1_ALERT_ACCESS_DENIED","features":[23]},{"name":"TLS1_ALERT_BAD_CERTIFICATE","features":[23]},{"name":"TLS1_ALERT_BAD_RECORD_MAC","features":[23]},{"name":"TLS1_ALERT_CERTIFICATE_EXPIRED","features":[23]},{"name":"TLS1_ALERT_CERTIFICATE_REVOKED","features":[23]},{"name":"TLS1_ALERT_CERTIFICATE_UNKNOWN","features":[23]},{"name":"TLS1_ALERT_CLOSE_NOTIFY","features":[23]},{"name":"TLS1_ALERT_DECODE_ERROR","features":[23]},{"name":"TLS1_ALERT_DECOMPRESSION_FAIL","features":[23]},{"name":"TLS1_ALERT_DECRYPTION_FAILED","features":[23]},{"name":"TLS1_ALERT_DECRYPT_ERROR","features":[23]},{"name":"TLS1_ALERT_EXPORT_RESTRICTION","features":[23]},{"name":"TLS1_ALERT_FATAL","features":[23]},{"name":"TLS1_ALERT_HANDSHAKE_FAILURE","features":[23]},{"name":"TLS1_ALERT_ILLEGAL_PARAMETER","features":[23]},{"name":"TLS1_ALERT_INSUFFIENT_SECURITY","features":[23]},{"name":"TLS1_ALERT_INTERNAL_ERROR","features":[23]},{"name":"TLS1_ALERT_NO_APP_PROTOCOL","features":[23]},{"name":"TLS1_ALERT_NO_RENEGOTIATION","features":[23]},{"name":"TLS1_ALERT_PROTOCOL_VERSION","features":[23]},{"name":"TLS1_ALERT_RECORD_OVERFLOW","features":[23]},{"name":"TLS1_ALERT_UNEXPECTED_MESSAGE","features":[23]},{"name":"TLS1_ALERT_UNKNOWN_CA","features":[23]},{"name":"TLS1_ALERT_UNKNOWN_PSK_IDENTITY","features":[23]},{"name":"TLS1_ALERT_UNSUPPORTED_CERT","features":[23]},{"name":"TLS1_ALERT_UNSUPPORTED_EXT","features":[23]},{"name":"TLS1_ALERT_USER_CANCELED","features":[23]},{"name":"TLS1_ALERT_WARNING","features":[23]},{"name":"TLS_EXTENSION_SUBSCRIPTION","features":[23]},{"name":"TLS_PARAMETERS","features":[23]},{"name":"TLS_PARAMS_OPTIONAL","features":[23]},{"name":"TOKENBINDING_EXTENSION_FORMAT","features":[23]},{"name":"TOKENBINDING_EXTENSION_FORMAT_UNDEFINED","features":[23]},{"name":"TOKENBINDING_IDENTIFIER","features":[23]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE","features":[23]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ANYEXISTING","features":[23]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ECDSAP256","features":[23]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PKCS","features":[23]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PSS","features":[23]},{"name":"TOKENBINDING_KEY_TYPES","features":[23]},{"name":"TOKENBINDING_RESULT_DATA","features":[23]},{"name":"TOKENBINDING_RESULT_LIST","features":[23]},{"name":"TOKENBINDING_TYPE","features":[23]},{"name":"TOKENBINDING_TYPE_PROVIDED","features":[23]},{"name":"TOKENBINDING_TYPE_REFERRED","features":[23]},{"name":"TRUSTED_CONTROLLERS_INFO","features":[23]},{"name":"TRUSTED_DOMAIN_AUTH_INFORMATION","features":[23]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION","features":[1,23]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION2","features":[1,23]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX","features":[1,23]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX2","features":[1,23]},{"name":"TRUSTED_DOMAIN_NAME_INFO","features":[23]},{"name":"TRUSTED_DOMAIN_SUPPORTED_ENCRYPTION_TYPES","features":[23]},{"name":"TRUSTED_DOMAIN_TRUST_ATTRIBUTES","features":[23]},{"name":"TRUSTED_DOMAIN_TRUST_DIRECTION","features":[23]},{"name":"TRUSTED_DOMAIN_TRUST_TYPE","features":[23]},{"name":"TRUSTED_INFORMATION_CLASS","features":[23]},{"name":"TRUSTED_PASSWORD_INFO","features":[23]},{"name":"TRUSTED_POSIX_OFFSET_INFO","features":[23]},{"name":"TRUSTED_QUERY_AUTH","features":[23]},{"name":"TRUSTED_QUERY_CONTROLLERS","features":[23]},{"name":"TRUSTED_QUERY_DOMAIN_NAME","features":[23]},{"name":"TRUSTED_QUERY_POSIX","features":[23]},{"name":"TRUSTED_SET_AUTH","features":[23]},{"name":"TRUSTED_SET_CONTROLLERS","features":[23]},{"name":"TRUSTED_SET_POSIX","features":[23]},{"name":"TRUST_ATTRIBUTES_USER","features":[23]},{"name":"TRUST_ATTRIBUTES_VALID","features":[23]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION","features":[23]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_ENABLE_TGT_DELEGATION","features":[23]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_NO_TGT_DELEGATION","features":[23]},{"name":"TRUST_ATTRIBUTE_DISABLE_AUTH_TARGET_VALIDATION","features":[23]},{"name":"TRUST_ATTRIBUTE_FILTER_SIDS","features":[23]},{"name":"TRUST_ATTRIBUTE_FOREST_TRANSITIVE","features":[23]},{"name":"TRUST_ATTRIBUTE_NON_TRANSITIVE","features":[23]},{"name":"TRUST_ATTRIBUTE_PIM_TRUST","features":[23]},{"name":"TRUST_ATTRIBUTE_QUARANTINED_DOMAIN","features":[23]},{"name":"TRUST_ATTRIBUTE_TREAT_AS_EXTERNAL","features":[23]},{"name":"TRUST_ATTRIBUTE_TREE_PARENT","features":[23]},{"name":"TRUST_ATTRIBUTE_TREE_ROOT","features":[23]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_AES_KEYS","features":[23]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_RC4_ENCRYPTION","features":[23]},{"name":"TRUST_ATTRIBUTE_UPLEVEL_ONLY","features":[23]},{"name":"TRUST_ATTRIBUTE_WITHIN_FOREST","features":[23]},{"name":"TRUST_AUTH_TYPE_CLEAR","features":[23]},{"name":"TRUST_AUTH_TYPE_NONE","features":[23]},{"name":"TRUST_AUTH_TYPE_NT4OWF","features":[23]},{"name":"TRUST_AUTH_TYPE_VERSION","features":[23]},{"name":"TRUST_DIRECTION_BIDIRECTIONAL","features":[23]},{"name":"TRUST_DIRECTION_DISABLED","features":[23]},{"name":"TRUST_DIRECTION_INBOUND","features":[23]},{"name":"TRUST_DIRECTION_OUTBOUND","features":[23]},{"name":"TRUST_TYPE_AAD","features":[23]},{"name":"TRUST_TYPE_DCE","features":[23]},{"name":"TRUST_TYPE_DOWNLEVEL","features":[23]},{"name":"TRUST_TYPE_MIT","features":[23]},{"name":"TRUST_TYPE_UPLEVEL","features":[23]},{"name":"TlsHashAlgorithm_Md5","features":[23]},{"name":"TlsHashAlgorithm_None","features":[23]},{"name":"TlsHashAlgorithm_Sha1","features":[23]},{"name":"TlsHashAlgorithm_Sha224","features":[23]},{"name":"TlsHashAlgorithm_Sha256","features":[23]},{"name":"TlsHashAlgorithm_Sha384","features":[23]},{"name":"TlsHashAlgorithm_Sha512","features":[23]},{"name":"TlsParametersCngAlgUsageCertSig","features":[23]},{"name":"TlsParametersCngAlgUsageCipher","features":[23]},{"name":"TlsParametersCngAlgUsageDigest","features":[23]},{"name":"TlsParametersCngAlgUsageKeyExchange","features":[23]},{"name":"TlsParametersCngAlgUsageSignature","features":[23]},{"name":"TlsSignatureAlgorithm_Anonymous","features":[23]},{"name":"TlsSignatureAlgorithm_Dsa","features":[23]},{"name":"TlsSignatureAlgorithm_Ecdsa","features":[23]},{"name":"TlsSignatureAlgorithm_Rsa","features":[23]},{"name":"TokenBindingDeleteAllBindings","features":[23]},{"name":"TokenBindingDeleteBinding","features":[23]},{"name":"TokenBindingGenerateBinding","features":[23]},{"name":"TokenBindingGenerateID","features":[23]},{"name":"TokenBindingGenerateIDForUri","features":[23]},{"name":"TokenBindingGenerateMessage","features":[23]},{"name":"TokenBindingGetHighestSupportedVersion","features":[23]},{"name":"TokenBindingGetKeyTypesClient","features":[23]},{"name":"TokenBindingGetKeyTypesServer","features":[23]},{"name":"TokenBindingVerifyMessage","features":[23]},{"name":"TranslateNameA","features":[1,23]},{"name":"TranslateNameW","features":[1,23]},{"name":"TrustedControllersInformation","features":[23]},{"name":"TrustedDomainAuthInformation","features":[23]},{"name":"TrustedDomainAuthInformationInternal","features":[23]},{"name":"TrustedDomainAuthInformationInternalAes","features":[23]},{"name":"TrustedDomainFullInformation","features":[23]},{"name":"TrustedDomainFullInformation2Internal","features":[23]},{"name":"TrustedDomainFullInformationInternal","features":[23]},{"name":"TrustedDomainFullInformationInternalAes","features":[23]},{"name":"TrustedDomainInformationBasic","features":[23]},{"name":"TrustedDomainInformationEx","features":[23]},{"name":"TrustedDomainInformationEx2Internal","features":[23]},{"name":"TrustedDomainNameInformation","features":[23]},{"name":"TrustedDomainSupportedEncryptionTypes","features":[23]},{"name":"TrustedPasswordInformation","features":[23]},{"name":"TrustedPosixOffsetInformation","features":[23]},{"name":"UNDERSTANDS_LONG_NAMES","features":[23]},{"name":"UNISP_NAME","features":[23]},{"name":"UNISP_NAME_A","features":[23]},{"name":"UNISP_NAME_W","features":[23]},{"name":"UNISP_RPC_ID","features":[23]},{"name":"USER_ACCOUNT_AUTO_LOCKED","features":[23]},{"name":"USER_ACCOUNT_DISABLED","features":[23]},{"name":"USER_ALL_INFORMATION","features":[1,23]},{"name":"USER_ALL_PARAMETERS","features":[23]},{"name":"USER_DONT_EXPIRE_PASSWORD","features":[23]},{"name":"USER_DONT_REQUIRE_PREAUTH","features":[23]},{"name":"USER_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[23]},{"name":"USER_HOME_DIRECTORY_REQUIRED","features":[23]},{"name":"USER_INTERDOMAIN_TRUST_ACCOUNT","features":[23]},{"name":"USER_MNS_LOGON_ACCOUNT","features":[23]},{"name":"USER_NORMAL_ACCOUNT","features":[23]},{"name":"USER_NOT_DELEGATED","features":[23]},{"name":"USER_NO_AUTH_DATA_REQUIRED","features":[23]},{"name":"USER_PARTIAL_SECRETS_ACCOUNT","features":[23]},{"name":"USER_PASSWORD_EXPIRED","features":[23]},{"name":"USER_PASSWORD_NOT_REQUIRED","features":[23]},{"name":"USER_SERVER_TRUST_ACCOUNT","features":[23]},{"name":"USER_SESSION_KEY","features":[23,119]},{"name":"USER_SMARTCARD_REQUIRED","features":[23]},{"name":"USER_TEMP_DUPLICATE_ACCOUNT","features":[23]},{"name":"USER_TRUSTED_FOR_DELEGATION","features":[23]},{"name":"USER_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[23]},{"name":"USER_USE_AES_KEYS","features":[23]},{"name":"USER_USE_DES_KEY_ONLY","features":[23]},{"name":"USER_WORKSTATION_TRUST_ACCOUNT","features":[23]},{"name":"VERIFY_SIGNATURE_FN","features":[23,118]},{"name":"VerifySignature","features":[23,118]},{"name":"WDIGEST_SP_NAME","features":[23]},{"name":"WDIGEST_SP_NAME_A","features":[23]},{"name":"WDIGEST_SP_NAME_W","features":[23]},{"name":"WINDOWS_SLID","features":[23]},{"name":"X509Certificate","features":[1,23,68]},{"name":"_FACILITY_WINDOWS_STORE","features":[23]},{"name":"_HMAPPER","features":[23]},{"name":"eTlsAlgorithmUsage","features":[23]},{"name":"eTlsHashAlgorithm","features":[23]},{"name":"eTlsSignatureAlgorithm","features":[23]}],"483":[{"name":"ACCCTRL_DEFAULT_PROVIDER","features":[120]},{"name":"ACCCTRL_DEFAULT_PROVIDERA","features":[120]},{"name":"ACCCTRL_DEFAULT_PROVIDERW","features":[120]},{"name":"ACCESS_MODE","features":[120]},{"name":"ACTRL_ACCESSA","features":[120]},{"name":"ACTRL_ACCESSW","features":[120]},{"name":"ACTRL_ACCESS_ALLOWED","features":[120]},{"name":"ACTRL_ACCESS_DENIED","features":[120]},{"name":"ACTRL_ACCESS_ENTRYA","features":[120]},{"name":"ACTRL_ACCESS_ENTRYW","features":[120]},{"name":"ACTRL_ACCESS_ENTRY_ACCESS_FLAGS","features":[120]},{"name":"ACTRL_ACCESS_ENTRY_LISTA","features":[120]},{"name":"ACTRL_ACCESS_ENTRY_LISTW","features":[120]},{"name":"ACTRL_ACCESS_INFOA","features":[120]},{"name":"ACTRL_ACCESS_INFOW","features":[120]},{"name":"ACTRL_ACCESS_NO_OPTIONS","features":[120]},{"name":"ACTRL_ACCESS_PROTECTED","features":[120]},{"name":"ACTRL_ACCESS_SUPPORTS_OBJECT_ENTRIES","features":[120]},{"name":"ACTRL_AUDIT_FAILURE","features":[120]},{"name":"ACTRL_AUDIT_SUCCESS","features":[120]},{"name":"ACTRL_CHANGE_ACCESS","features":[120]},{"name":"ACTRL_CHANGE_OWNER","features":[120]},{"name":"ACTRL_CONTROL_INFOA","features":[120]},{"name":"ACTRL_CONTROL_INFOW","features":[120]},{"name":"ACTRL_DELETE","features":[120]},{"name":"ACTRL_DIR_CREATE_CHILD","features":[120]},{"name":"ACTRL_DIR_CREATE_OBJECT","features":[120]},{"name":"ACTRL_DIR_DELETE_CHILD","features":[120]},{"name":"ACTRL_DIR_LIST","features":[120]},{"name":"ACTRL_DIR_TRAVERSE","features":[120]},{"name":"ACTRL_FILE_APPEND","features":[120]},{"name":"ACTRL_FILE_CREATE_PIPE","features":[120]},{"name":"ACTRL_FILE_EXECUTE","features":[120]},{"name":"ACTRL_FILE_READ","features":[120]},{"name":"ACTRL_FILE_READ_ATTRIB","features":[120]},{"name":"ACTRL_FILE_READ_PROP","features":[120]},{"name":"ACTRL_FILE_WRITE","features":[120]},{"name":"ACTRL_FILE_WRITE_ATTRIB","features":[120]},{"name":"ACTRL_FILE_WRITE_PROP","features":[120]},{"name":"ACTRL_KERNEL_ALERT","features":[120]},{"name":"ACTRL_KERNEL_CONTROL","features":[120]},{"name":"ACTRL_KERNEL_DIMPERSONATE","features":[120]},{"name":"ACTRL_KERNEL_DUP_HANDLE","features":[120]},{"name":"ACTRL_KERNEL_GET_CONTEXT","features":[120]},{"name":"ACTRL_KERNEL_GET_INFO","features":[120]},{"name":"ACTRL_KERNEL_IMPERSONATE","features":[120]},{"name":"ACTRL_KERNEL_PROCESS","features":[120]},{"name":"ACTRL_KERNEL_SET_CONTEXT","features":[120]},{"name":"ACTRL_KERNEL_SET_INFO","features":[120]},{"name":"ACTRL_KERNEL_TERMINATE","features":[120]},{"name":"ACTRL_KERNEL_THREAD","features":[120]},{"name":"ACTRL_KERNEL_TOKEN","features":[120]},{"name":"ACTRL_KERNEL_VM","features":[120]},{"name":"ACTRL_KERNEL_VM_READ","features":[120]},{"name":"ACTRL_KERNEL_VM_WRITE","features":[120]},{"name":"ACTRL_OVERLAPPED","features":[1,120]},{"name":"ACTRL_PERM_1","features":[120]},{"name":"ACTRL_PERM_10","features":[120]},{"name":"ACTRL_PERM_11","features":[120]},{"name":"ACTRL_PERM_12","features":[120]},{"name":"ACTRL_PERM_13","features":[120]},{"name":"ACTRL_PERM_14","features":[120]},{"name":"ACTRL_PERM_15","features":[120]},{"name":"ACTRL_PERM_16","features":[120]},{"name":"ACTRL_PERM_17","features":[120]},{"name":"ACTRL_PERM_18","features":[120]},{"name":"ACTRL_PERM_19","features":[120]},{"name":"ACTRL_PERM_2","features":[120]},{"name":"ACTRL_PERM_20","features":[120]},{"name":"ACTRL_PERM_3","features":[120]},{"name":"ACTRL_PERM_4","features":[120]},{"name":"ACTRL_PERM_5","features":[120]},{"name":"ACTRL_PERM_6","features":[120]},{"name":"ACTRL_PERM_7","features":[120]},{"name":"ACTRL_PERM_8","features":[120]},{"name":"ACTRL_PERM_9","features":[120]},{"name":"ACTRL_PRINT_JADMIN","features":[120]},{"name":"ACTRL_PRINT_PADMIN","features":[120]},{"name":"ACTRL_PRINT_PUSE","features":[120]},{"name":"ACTRL_PRINT_SADMIN","features":[120]},{"name":"ACTRL_PRINT_SLIST","features":[120]},{"name":"ACTRL_PROPERTY_ENTRYA","features":[120]},{"name":"ACTRL_PROPERTY_ENTRYW","features":[120]},{"name":"ACTRL_READ_CONTROL","features":[120]},{"name":"ACTRL_REG_CREATE_CHILD","features":[120]},{"name":"ACTRL_REG_LINK","features":[120]},{"name":"ACTRL_REG_LIST","features":[120]},{"name":"ACTRL_REG_NOTIFY","features":[120]},{"name":"ACTRL_REG_QUERY","features":[120]},{"name":"ACTRL_REG_SET","features":[120]},{"name":"ACTRL_RESERVED","features":[120]},{"name":"ACTRL_STD_RIGHTS_ALL","features":[120]},{"name":"ACTRL_SVC_GET_INFO","features":[120]},{"name":"ACTRL_SVC_INTERROGATE","features":[120]},{"name":"ACTRL_SVC_LIST","features":[120]},{"name":"ACTRL_SVC_PAUSE","features":[120]},{"name":"ACTRL_SVC_SET_INFO","features":[120]},{"name":"ACTRL_SVC_START","features":[120]},{"name":"ACTRL_SVC_STATUS","features":[120]},{"name":"ACTRL_SVC_STOP","features":[120]},{"name":"ACTRL_SVC_UCONTROL","features":[120]},{"name":"ACTRL_SYNCHRONIZE","features":[120]},{"name":"ACTRL_SYSTEM_ACCESS","features":[120]},{"name":"ACTRL_WIN_CLIPBRD","features":[120]},{"name":"ACTRL_WIN_CREATE","features":[120]},{"name":"ACTRL_WIN_EXIT","features":[120]},{"name":"ACTRL_WIN_GLOBAL_ATOMS","features":[120]},{"name":"ACTRL_WIN_LIST","features":[120]},{"name":"ACTRL_WIN_LIST_DESK","features":[120]},{"name":"ACTRL_WIN_READ_ATTRIBS","features":[120]},{"name":"ACTRL_WIN_SCREEN","features":[120]},{"name":"ACTRL_WIN_WRITE_ATTRIBS","features":[120]},{"name":"APF_AuditFailure","features":[120]},{"name":"APF_AuditSuccess","features":[120]},{"name":"APF_ValidFlags","features":[120]},{"name":"APT_Guid","features":[120]},{"name":"APT_Int64","features":[120]},{"name":"APT_IpAddress","features":[120]},{"name":"APT_LogonId","features":[120]},{"name":"APT_LogonIdWithSid","features":[120]},{"name":"APT_Luid","features":[120]},{"name":"APT_None","features":[120]},{"name":"APT_ObjectTypeList","features":[120]},{"name":"APT_Pointer","features":[120]},{"name":"APT_Sid","features":[120]},{"name":"APT_String","features":[120]},{"name":"APT_Time","features":[120]},{"name":"APT_Ulong","features":[120]},{"name":"AP_ParamTypeBits","features":[120]},{"name":"AP_ParamTypeMask","features":[120]},{"name":"AUDIT_IP_ADDRESS","features":[120]},{"name":"AUDIT_OBJECT_TYPE","features":[120]},{"name":"AUDIT_OBJECT_TYPES","features":[120]},{"name":"AUDIT_PARAM","features":[120]},{"name":"AUDIT_PARAMS","features":[120]},{"name":"AUDIT_PARAM_TYPE","features":[120]},{"name":"AUDIT_TYPE_LEGACY","features":[120]},{"name":"AUDIT_TYPE_WMI","features":[120]},{"name":"AUTHZP_WPD_EVENT","features":[120]},{"name":"AUTHZ_ACCESS_CHECK_FLAGS","features":[120]},{"name":"AUTHZ_ACCESS_CHECK_NO_DEEP_COPY_SD","features":[120]},{"name":"AUTHZ_ACCESS_CHECK_RESULTS_HANDLE","features":[120]},{"name":"AUTHZ_ACCESS_REPLY","features":[120]},{"name":"AUTHZ_ACCESS_REQUEST","features":[1,120]},{"name":"AUTHZ_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[120]},{"name":"AUTHZ_AUDIT_EVENT_HANDLE","features":[120]},{"name":"AUTHZ_AUDIT_EVENT_INFORMATION_CLASS","features":[120]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_HANDLE","features":[120]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_LEGACY","features":[120]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_OLD","features":[1,120]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_UNION","features":[120]},{"name":"AUTHZ_AUDIT_INSTANCE_INFORMATION","features":[120]},{"name":"AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE","features":[120]},{"name":"AUTHZ_CLIENT_CONTEXT_HANDLE","features":[120]},{"name":"AUTHZ_COMPUTE_PRIVILEGES","features":[120]},{"name":"AUTHZ_CONTEXT_INFORMATION_CLASS","features":[120]},{"name":"AUTHZ_FLAG_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[120]},{"name":"AUTHZ_GENERATE_FAILURE_AUDIT","features":[120]},{"name":"AUTHZ_GENERATE_RESULTS","features":[120]},{"name":"AUTHZ_GENERATE_SUCCESS_AUDIT","features":[120]},{"name":"AUTHZ_INITIALIZE_OBJECT_ACCESS_AUDIT_EVENT_FLAGS","features":[120]},{"name":"AUTHZ_INIT_INFO","features":[1,120]},{"name":"AUTHZ_INIT_INFO_VERSION_V1","features":[120]},{"name":"AUTHZ_MIGRATED_LEGACY_PUBLISHER","features":[120]},{"name":"AUTHZ_NO_ALLOC_STRINGS","features":[120]},{"name":"AUTHZ_NO_FAILURE_AUDIT","features":[120]},{"name":"AUTHZ_NO_SUCCESS_AUDIT","features":[120]},{"name":"AUTHZ_REGISTRATION_OBJECT_TYPE_NAME_OFFSET","features":[120]},{"name":"AUTHZ_REQUIRE_S4U_LOGON","features":[120]},{"name":"AUTHZ_RESOURCE_MANAGER_FLAGS","features":[120]},{"name":"AUTHZ_RESOURCE_MANAGER_HANDLE","features":[120]},{"name":"AUTHZ_RM_FLAG_INITIALIZE_UNDER_IMPERSONATION","features":[120]},{"name":"AUTHZ_RM_FLAG_NO_AUDIT","features":[120]},{"name":"AUTHZ_RM_FLAG_NO_CENTRAL_ACCESS_POLICIES","features":[120]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT","features":[120]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT_VERSION_V1","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FLAGS","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_ADD","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_DELETE","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_NONE","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE_ALL","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INT64","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_SID","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_STRING","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_V1","features":[120]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[120]},{"name":"AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE","features":[120]},{"name":"AUTHZ_SID_OPERATION","features":[120]},{"name":"AUTHZ_SID_OPERATION_ADD","features":[120]},{"name":"AUTHZ_SID_OPERATION_DELETE","features":[120]},{"name":"AUTHZ_SID_OPERATION_NONE","features":[120]},{"name":"AUTHZ_SID_OPERATION_REPLACE","features":[120]},{"name":"AUTHZ_SID_OPERATION_REPLACE_ALL","features":[120]},{"name":"AUTHZ_SKIP_TOKEN_GROUPS","features":[120]},{"name":"AUTHZ_SOURCE_SCHEMA_REGISTRATION","features":[120]},{"name":"AUTHZ_WPD_CATEGORY_FLAG","features":[120]},{"name":"AZ_AZSTORE_DEFAULT_DOMAIN_TIMEOUT","features":[120]},{"name":"AZ_AZSTORE_DEFAULT_MAX_SCRIPT_ENGINES","features":[120]},{"name":"AZ_AZSTORE_DEFAULT_SCRIPT_ENGINE_TIMEOUT","features":[120]},{"name":"AZ_AZSTORE_FLAG_AUDIT_IS_CRITICAL","features":[120]},{"name":"AZ_AZSTORE_FLAG_BATCH_UPDATE","features":[120]},{"name":"AZ_AZSTORE_FLAG_CREATE","features":[120]},{"name":"AZ_AZSTORE_FLAG_MANAGE_ONLY_PASSIVE_SUBMIT","features":[120]},{"name":"AZ_AZSTORE_FLAG_MANAGE_STORE_ONLY","features":[120]},{"name":"AZ_AZSTORE_FORCE_APPLICATION_CLOSE","features":[120]},{"name":"AZ_AZSTORE_MIN_DOMAIN_TIMEOUT","features":[120]},{"name":"AZ_AZSTORE_MIN_SCRIPT_ENGINE_TIMEOUT","features":[120]},{"name":"AZ_AZSTORE_NT6_FUNCTION_LEVEL","features":[120]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUPS_STORE_LEVEL_ONLY","features":[120]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUP_RECURSIVE","features":[120]},{"name":"AZ_CLIENT_CONTEXT_SKIP_GROUP","features":[120]},{"name":"AZ_CLIENT_CONTEXT_SKIP_LDAP_QUERY","features":[120]},{"name":"AZ_GROUPTYPE_BASIC","features":[120]},{"name":"AZ_GROUPTYPE_BIZRULE","features":[120]},{"name":"AZ_GROUPTYPE_LDAP_QUERY","features":[120]},{"name":"AZ_MAX_APPLICATION_DATA_LENGTH","features":[120]},{"name":"AZ_MAX_APPLICATION_NAME_LENGTH","features":[120]},{"name":"AZ_MAX_APPLICATION_VERSION_LENGTH","features":[120]},{"name":"AZ_MAX_BIZRULE_STRING","features":[120]},{"name":"AZ_MAX_DESCRIPTION_LENGTH","features":[120]},{"name":"AZ_MAX_GROUP_BIZRULE_IMPORTED_PATH_LENGTH","features":[120]},{"name":"AZ_MAX_GROUP_BIZRULE_LANGUAGE_LENGTH","features":[120]},{"name":"AZ_MAX_GROUP_BIZRULE_LENGTH","features":[120]},{"name":"AZ_MAX_GROUP_LDAP_QUERY_LENGTH","features":[120]},{"name":"AZ_MAX_GROUP_NAME_LENGTH","features":[120]},{"name":"AZ_MAX_NAME_LENGTH","features":[120]},{"name":"AZ_MAX_OPERATION_NAME_LENGTH","features":[120]},{"name":"AZ_MAX_POLICY_URL_LENGTH","features":[120]},{"name":"AZ_MAX_ROLE_NAME_LENGTH","features":[120]},{"name":"AZ_MAX_SCOPE_NAME_LENGTH","features":[120]},{"name":"AZ_MAX_TASK_BIZRULE_IMPORTED_PATH_LENGTH","features":[120]},{"name":"AZ_MAX_TASK_BIZRULE_LANGUAGE_LENGTH","features":[120]},{"name":"AZ_MAX_TASK_BIZRULE_LENGTH","features":[120]},{"name":"AZ_MAX_TASK_NAME_LENGTH","features":[120]},{"name":"AZ_PROP_APPLICATION_AUTHZ_INTERFACE_CLSID","features":[120]},{"name":"AZ_PROP_APPLICATION_BIZRULE_ENABLED","features":[120]},{"name":"AZ_PROP_APPLICATION_DATA","features":[120]},{"name":"AZ_PROP_APPLICATION_NAME","features":[120]},{"name":"AZ_PROP_APPLICATION_VERSION","features":[120]},{"name":"AZ_PROP_APPLY_STORE_SACL","features":[120]},{"name":"AZ_PROP_AZSTORE_DOMAIN_TIMEOUT","features":[120]},{"name":"AZ_PROP_AZSTORE_MAJOR_VERSION","features":[120]},{"name":"AZ_PROP_AZSTORE_MAX_SCRIPT_ENGINES","features":[120]},{"name":"AZ_PROP_AZSTORE_MINOR_VERSION","features":[120]},{"name":"AZ_PROP_AZSTORE_SCRIPT_ENGINE_TIMEOUT","features":[120]},{"name":"AZ_PROP_AZSTORE_TARGET_MACHINE","features":[120]},{"name":"AZ_PROP_AZTORE_IS_ADAM_INSTANCE","features":[120]},{"name":"AZ_PROP_CHILD_CREATE","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_LDAP_QUERY_DN","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_ROLE_FOR_ACCESS_CHECK","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_CANONICAL","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DISPLAY","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DN","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DNS_SAM_COMPAT","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_GUID","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_SAM_COMPAT","features":[120]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_UPN","features":[120]},{"name":"AZ_PROP_CONSTANTS","features":[120]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS","features":[120]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS_NAME","features":[120]},{"name":"AZ_PROP_DESCRIPTION","features":[120]},{"name":"AZ_PROP_GENERATE_AUDITS","features":[120]},{"name":"AZ_PROP_GROUP_APP_MEMBERS","features":[120]},{"name":"AZ_PROP_GROUP_APP_NON_MEMBERS","features":[120]},{"name":"AZ_PROP_GROUP_BIZRULE","features":[120]},{"name":"AZ_PROP_GROUP_BIZRULE_IMPORTED_PATH","features":[120]},{"name":"AZ_PROP_GROUP_BIZRULE_LANGUAGE","features":[120]},{"name":"AZ_PROP_GROUP_LDAP_QUERY","features":[120]},{"name":"AZ_PROP_GROUP_MEMBERS","features":[120]},{"name":"AZ_PROP_GROUP_MEMBERS_NAME","features":[120]},{"name":"AZ_PROP_GROUP_NON_MEMBERS","features":[120]},{"name":"AZ_PROP_GROUP_NON_MEMBERS_NAME","features":[120]},{"name":"AZ_PROP_GROUP_TYPE","features":[120]},{"name":"AZ_PROP_NAME","features":[120]},{"name":"AZ_PROP_OPERATION_ID","features":[120]},{"name":"AZ_PROP_POLICY_ADMINS","features":[120]},{"name":"AZ_PROP_POLICY_ADMINS_NAME","features":[120]},{"name":"AZ_PROP_POLICY_READERS","features":[120]},{"name":"AZ_PROP_POLICY_READERS_NAME","features":[120]},{"name":"AZ_PROP_ROLE_APP_MEMBERS","features":[120]},{"name":"AZ_PROP_ROLE_MEMBERS","features":[120]},{"name":"AZ_PROP_ROLE_MEMBERS_NAME","features":[120]},{"name":"AZ_PROP_ROLE_OPERATIONS","features":[120]},{"name":"AZ_PROP_ROLE_TASKS","features":[120]},{"name":"AZ_PROP_SCOPE_BIZRULES_WRITABLE","features":[120]},{"name":"AZ_PROP_SCOPE_CAN_BE_DELEGATED","features":[120]},{"name":"AZ_PROP_TASK_BIZRULE","features":[120]},{"name":"AZ_PROP_TASK_BIZRULE_IMPORTED_PATH","features":[120]},{"name":"AZ_PROP_TASK_BIZRULE_LANGUAGE","features":[120]},{"name":"AZ_PROP_TASK_IS_ROLE_DEFINITION","features":[120]},{"name":"AZ_PROP_TASK_OPERATIONS","features":[120]},{"name":"AZ_PROP_TASK_TASKS","features":[120]},{"name":"AZ_PROP_WRITABLE","features":[120]},{"name":"AZ_SUBMIT_FLAG_ABORT","features":[120]},{"name":"AZ_SUBMIT_FLAG_FLUSH","features":[120]},{"name":"AuthzAccessCheck","features":[1,120]},{"name":"AuthzAddSidsToContext","features":[1,120]},{"name":"AuthzAuditEventInfoAdditionalInfo","features":[120]},{"name":"AuthzAuditEventInfoFlags","features":[120]},{"name":"AuthzAuditEventInfoObjectName","features":[120]},{"name":"AuthzAuditEventInfoObjectType","features":[120]},{"name":"AuthzAuditEventInfoOperationType","features":[120]},{"name":"AuthzCachedAccessCheck","features":[1,120]},{"name":"AuthzContextInfoAll","features":[120]},{"name":"AuthzContextInfoAppContainerSid","features":[120]},{"name":"AuthzContextInfoAuthenticationId","features":[120]},{"name":"AuthzContextInfoCapabilitySids","features":[120]},{"name":"AuthzContextInfoDeviceClaims","features":[120]},{"name":"AuthzContextInfoDeviceSids","features":[120]},{"name":"AuthzContextInfoExpirationTime","features":[120]},{"name":"AuthzContextInfoGroupsSids","features":[120]},{"name":"AuthzContextInfoIdentifier","features":[120]},{"name":"AuthzContextInfoPrivileges","features":[120]},{"name":"AuthzContextInfoRestrictedSids","features":[120]},{"name":"AuthzContextInfoSecurityAttributes","features":[120]},{"name":"AuthzContextInfoServerContext","features":[120]},{"name":"AuthzContextInfoSource","features":[120]},{"name":"AuthzContextInfoUserClaims","features":[120]},{"name":"AuthzContextInfoUserSid","features":[120]},{"name":"AuthzEnumerateSecurityEventSources","features":[1,120]},{"name":"AuthzEvaluateSacl","features":[1,120]},{"name":"AuthzFreeAuditEvent","features":[1,120]},{"name":"AuthzFreeCentralAccessPolicyCache","features":[1,120]},{"name":"AuthzFreeContext","features":[1,120]},{"name":"AuthzFreeHandle","features":[1,120]},{"name":"AuthzFreeResourceManager","features":[1,120]},{"name":"AuthzGetInformationFromContext","features":[1,120]},{"name":"AuthzInitializeCompoundContext","features":[1,120]},{"name":"AuthzInitializeContextFromAuthzContext","features":[1,120]},{"name":"AuthzInitializeContextFromSid","features":[1,120]},{"name":"AuthzInitializeContextFromToken","features":[1,120]},{"name":"AuthzInitializeObjectAccessAuditEvent","features":[1,120]},{"name":"AuthzInitializeObjectAccessAuditEvent2","features":[1,120]},{"name":"AuthzInitializeRemoteResourceManager","features":[1,120]},{"name":"AuthzInitializeResourceManager","features":[1,120]},{"name":"AuthzInitializeResourceManagerEx","features":[1,120]},{"name":"AuthzInstallSecurityEventSource","features":[1,120]},{"name":"AuthzModifyClaims","features":[1,120]},{"name":"AuthzModifySecurityAttributes","features":[1,120]},{"name":"AuthzModifySids","features":[1,120]},{"name":"AuthzOpenObjectAudit","features":[1,120]},{"name":"AuthzRegisterCapChangeNotification","features":[1,120,37]},{"name":"AuthzRegisterSecurityEventSource","features":[1,120]},{"name":"AuthzReportSecurityEvent","features":[1,120]},{"name":"AuthzReportSecurityEventFromParams","features":[1,120]},{"name":"AuthzSetAppContainerInformation","features":[1,120]},{"name":"AuthzUninstallSecurityEventSource","features":[1,120]},{"name":"AuthzUnregisterCapChangeNotification","features":[1,120]},{"name":"AuthzUnregisterSecurityEventSource","features":[1,120]},{"name":"AzAuthorizationStore","features":[120]},{"name":"AzBizRuleContext","features":[120]},{"name":"AzPrincipalLocator","features":[120]},{"name":"BuildExplicitAccessWithNameA","features":[120]},{"name":"BuildExplicitAccessWithNameW","features":[120]},{"name":"BuildImpersonateExplicitAccessWithNameA","features":[120]},{"name":"BuildImpersonateExplicitAccessWithNameW","features":[120]},{"name":"BuildImpersonateTrusteeA","features":[120]},{"name":"BuildImpersonateTrusteeW","features":[120]},{"name":"BuildSecurityDescriptorA","features":[1,120]},{"name":"BuildSecurityDescriptorW","features":[1,120]},{"name":"BuildTrusteeWithNameA","features":[120]},{"name":"BuildTrusteeWithNameW","features":[120]},{"name":"BuildTrusteeWithObjectsAndNameA","features":[120]},{"name":"BuildTrusteeWithObjectsAndNameW","features":[120]},{"name":"BuildTrusteeWithObjectsAndSidA","features":[1,120]},{"name":"BuildTrusteeWithObjectsAndSidW","features":[1,120]},{"name":"BuildTrusteeWithSidA","features":[1,120]},{"name":"BuildTrusteeWithSidW","features":[1,120]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorA","features":[1,120]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorW","features":[1,120]},{"name":"ConvertSidToStringSidA","features":[1,120]},{"name":"ConvertSidToStringSidW","features":[1,120]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorA","features":[1,120]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorW","features":[1,120]},{"name":"ConvertStringSidToSidA","features":[1,120]},{"name":"ConvertStringSidToSidW","features":[1,120]},{"name":"DENY_ACCESS","features":[120]},{"name":"EXPLICIT_ACCESS_A","features":[120]},{"name":"EXPLICIT_ACCESS_W","features":[120]},{"name":"FN_OBJECT_MGR_FUNCTS","features":[120]},{"name":"FN_PROGRESS","features":[1,120]},{"name":"FreeInheritedFromArray","features":[1,120]},{"name":"GRANT_ACCESS","features":[120]},{"name":"GetAuditedPermissionsFromAclA","features":[1,120]},{"name":"GetAuditedPermissionsFromAclW","features":[1,120]},{"name":"GetEffectiveRightsFromAclA","features":[1,120]},{"name":"GetEffectiveRightsFromAclW","features":[1,120]},{"name":"GetExplicitEntriesFromAclA","features":[1,120]},{"name":"GetExplicitEntriesFromAclW","features":[1,120]},{"name":"GetInheritanceSourceA","features":[1,120]},{"name":"GetInheritanceSourceW","features":[1,120]},{"name":"GetMultipleTrusteeA","features":[120]},{"name":"GetMultipleTrusteeOperationA","features":[120]},{"name":"GetMultipleTrusteeOperationW","features":[120]},{"name":"GetMultipleTrusteeW","features":[120]},{"name":"GetNamedSecurityInfoA","features":[1,120]},{"name":"GetNamedSecurityInfoW","features":[1,120]},{"name":"GetSecurityInfo","features":[1,120]},{"name":"GetTrusteeFormA","features":[120]},{"name":"GetTrusteeFormW","features":[120]},{"name":"GetTrusteeNameA","features":[120]},{"name":"GetTrusteeNameW","features":[120]},{"name":"GetTrusteeTypeA","features":[120]},{"name":"GetTrusteeTypeW","features":[120]},{"name":"IAzApplication","features":[120]},{"name":"IAzApplication2","features":[120]},{"name":"IAzApplication3","features":[120]},{"name":"IAzApplicationGroup","features":[120]},{"name":"IAzApplicationGroup2","features":[120]},{"name":"IAzApplicationGroups","features":[120]},{"name":"IAzApplications","features":[120]},{"name":"IAzAuthorizationStore","features":[120]},{"name":"IAzAuthorizationStore2","features":[120]},{"name":"IAzAuthorizationStore3","features":[120]},{"name":"IAzBizRuleContext","features":[120]},{"name":"IAzBizRuleInterfaces","features":[120]},{"name":"IAzBizRuleParameters","features":[120]},{"name":"IAzClientContext","features":[120]},{"name":"IAzClientContext2","features":[120]},{"name":"IAzClientContext3","features":[120]},{"name":"IAzNameResolver","features":[120]},{"name":"IAzObjectPicker","features":[120]},{"name":"IAzOperation","features":[120]},{"name":"IAzOperation2","features":[120]},{"name":"IAzOperations","features":[120]},{"name":"IAzPrincipalLocator","features":[120]},{"name":"IAzRole","features":[120]},{"name":"IAzRoleAssignment","features":[120]},{"name":"IAzRoleAssignments","features":[120]},{"name":"IAzRoleDefinition","features":[120]},{"name":"IAzRoleDefinitions","features":[120]},{"name":"IAzRoles","features":[120]},{"name":"IAzScope","features":[120]},{"name":"IAzScope2","features":[120]},{"name":"IAzScopes","features":[120]},{"name":"IAzTask","features":[120]},{"name":"IAzTask2","features":[120]},{"name":"IAzTasks","features":[120]},{"name":"INHERITED_ACCESS_ENTRY","features":[120]},{"name":"INHERITED_FROMA","features":[120]},{"name":"INHERITED_FROMW","features":[120]},{"name":"INHERITED_GRANDPARENT","features":[120]},{"name":"INHERITED_PARENT","features":[120]},{"name":"LookupSecurityDescriptorPartsA","features":[1,120]},{"name":"LookupSecurityDescriptorPartsW","features":[1,120]},{"name":"MULTIPLE_TRUSTEE_OPERATION","features":[120]},{"name":"NOT_USED_ACCESS","features":[120]},{"name":"NO_MULTIPLE_TRUSTEE","features":[120]},{"name":"OBJECTS_AND_NAME_A","features":[120]},{"name":"OBJECTS_AND_NAME_W","features":[120]},{"name":"OBJECTS_AND_SID","features":[120]},{"name":"OLESCRIPT_E_SYNTAX","features":[120]},{"name":"PFN_AUTHZ_COMPUTE_DYNAMIC_GROUPS","features":[1,120]},{"name":"PFN_AUTHZ_DYNAMIC_ACCESS_CHECK","features":[1,120]},{"name":"PFN_AUTHZ_FREE_CENTRAL_ACCESS_POLICY","features":[120]},{"name":"PFN_AUTHZ_FREE_DYNAMIC_GROUPS","features":[1,120]},{"name":"PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY","features":[1,120]},{"name":"PROG_INVOKE_SETTING","features":[120]},{"name":"ProgressCancelOperation","features":[120]},{"name":"ProgressInvokeEveryObject","features":[120]},{"name":"ProgressInvokeNever","features":[120]},{"name":"ProgressInvokeOnError","features":[120]},{"name":"ProgressInvokePrePostError","features":[120]},{"name":"ProgressRetryOperation","features":[120]},{"name":"REVOKE_ACCESS","features":[120]},{"name":"SDDL_ACCESS_ALLOWED","features":[120]},{"name":"SDDL_ACCESS_CONTROL_ASSISTANCE_OPS","features":[120]},{"name":"SDDL_ACCESS_DENIED","features":[120]},{"name":"SDDL_ACCESS_FILTER","features":[120]},{"name":"SDDL_ACCOUNT_OPERATORS","features":[120]},{"name":"SDDL_ACE_BEGIN","features":[120]},{"name":"SDDL_ACE_COND_ATTRIBUTE_PREFIX","features":[120]},{"name":"SDDL_ACE_COND_BEGIN","features":[120]},{"name":"SDDL_ACE_COND_BLOB_PREFIX","features":[120]},{"name":"SDDL_ACE_COND_DEVICE_ATTRIBUTE_PREFIX","features":[120]},{"name":"SDDL_ACE_COND_END","features":[120]},{"name":"SDDL_ACE_COND_RESOURCE_ATTRIBUTE_PREFIX","features":[120]},{"name":"SDDL_ACE_COND_SID_PREFIX","features":[120]},{"name":"SDDL_ACE_COND_TOKEN_ATTRIBUTE_PREFIX","features":[120]},{"name":"SDDL_ACE_COND_USER_ATTRIBUTE_PREFIX","features":[120]},{"name":"SDDL_ACE_END","features":[120]},{"name":"SDDL_ALARM","features":[120]},{"name":"SDDL_ALIAS_PREW2KCOMPACC","features":[120]},{"name":"SDDL_ALIAS_SIZE","features":[120]},{"name":"SDDL_ALL_APP_PACKAGES","features":[120]},{"name":"SDDL_ANONYMOUS","features":[120]},{"name":"SDDL_AUDIT","features":[120]},{"name":"SDDL_AUDIT_FAILURE","features":[120]},{"name":"SDDL_AUDIT_SUCCESS","features":[120]},{"name":"SDDL_AUTHENTICATED_USERS","features":[120]},{"name":"SDDL_AUTHORITY_ASSERTED","features":[120]},{"name":"SDDL_AUTO_INHERITED","features":[120]},{"name":"SDDL_AUTO_INHERIT_REQ","features":[120]},{"name":"SDDL_BACKUP_OPERATORS","features":[120]},{"name":"SDDL_BLOB","features":[120]},{"name":"SDDL_BOOLEAN","features":[120]},{"name":"SDDL_BUILTIN_ADMINISTRATORS","features":[120]},{"name":"SDDL_BUILTIN_GUESTS","features":[120]},{"name":"SDDL_BUILTIN_USERS","features":[120]},{"name":"SDDL_CALLBACK_ACCESS_ALLOWED","features":[120]},{"name":"SDDL_CALLBACK_ACCESS_DENIED","features":[120]},{"name":"SDDL_CALLBACK_AUDIT","features":[120]},{"name":"SDDL_CALLBACK_OBJECT_ACCESS_ALLOWED","features":[120]},{"name":"SDDL_CERTSVC_DCOM_ACCESS","features":[120]},{"name":"SDDL_CERT_SERV_ADMINISTRATORS","features":[120]},{"name":"SDDL_CLONEABLE_CONTROLLERS","features":[120]},{"name":"SDDL_CONTAINER_INHERIT","features":[120]},{"name":"SDDL_CONTROL_ACCESS","features":[120]},{"name":"SDDL_CREATE_CHILD","features":[120]},{"name":"SDDL_CREATOR_GROUP","features":[120]},{"name":"SDDL_CREATOR_OWNER","features":[120]},{"name":"SDDL_CRITICAL","features":[120]},{"name":"SDDL_CRYPTO_OPERATORS","features":[120]},{"name":"SDDL_DACL","features":[120]},{"name":"SDDL_DELETE_CHILD","features":[120]},{"name":"SDDL_DELETE_TREE","features":[120]},{"name":"SDDL_DELIMINATOR","features":[120]},{"name":"SDDL_DOMAIN_ADMINISTRATORS","features":[120]},{"name":"SDDL_DOMAIN_COMPUTERS","features":[120]},{"name":"SDDL_DOMAIN_DOMAIN_CONTROLLERS","features":[120]},{"name":"SDDL_DOMAIN_GUESTS","features":[120]},{"name":"SDDL_DOMAIN_USERS","features":[120]},{"name":"SDDL_ENTERPRISE_ADMINS","features":[120]},{"name":"SDDL_ENTERPRISE_DOMAIN_CONTROLLERS","features":[120]},{"name":"SDDL_ENTERPRISE_KEY_ADMINS","features":[120]},{"name":"SDDL_ENTERPRISE_RO_DCs","features":[120]},{"name":"SDDL_EVENT_LOG_READERS","features":[120]},{"name":"SDDL_EVERYONE","features":[120]},{"name":"SDDL_FILE_ALL","features":[120]},{"name":"SDDL_FILE_EXECUTE","features":[120]},{"name":"SDDL_FILE_READ","features":[120]},{"name":"SDDL_FILE_WRITE","features":[120]},{"name":"SDDL_GENERIC_ALL","features":[120]},{"name":"SDDL_GENERIC_EXECUTE","features":[120]},{"name":"SDDL_GENERIC_READ","features":[120]},{"name":"SDDL_GENERIC_WRITE","features":[120]},{"name":"SDDL_GROUP","features":[120]},{"name":"SDDL_GROUP_POLICY_ADMINS","features":[120]},{"name":"SDDL_HYPER_V_ADMINS","features":[120]},{"name":"SDDL_IIS_USERS","features":[120]},{"name":"SDDL_INHERITED","features":[120]},{"name":"SDDL_INHERIT_ONLY","features":[120]},{"name":"SDDL_INT","features":[120]},{"name":"SDDL_INTERACTIVE","features":[120]},{"name":"SDDL_KEY_ADMINS","features":[120]},{"name":"SDDL_KEY_ALL","features":[120]},{"name":"SDDL_KEY_EXECUTE","features":[120]},{"name":"SDDL_KEY_READ","features":[120]},{"name":"SDDL_KEY_WRITE","features":[120]},{"name":"SDDL_LIST_CHILDREN","features":[120]},{"name":"SDDL_LIST_OBJECT","features":[120]},{"name":"SDDL_LOCAL_ADMIN","features":[120]},{"name":"SDDL_LOCAL_GUEST","features":[120]},{"name":"SDDL_LOCAL_SERVICE","features":[120]},{"name":"SDDL_LOCAL_SYSTEM","features":[120]},{"name":"SDDL_MANDATORY_LABEL","features":[120]},{"name":"SDDL_ML_HIGH","features":[120]},{"name":"SDDL_ML_LOW","features":[120]},{"name":"SDDL_ML_MEDIUM","features":[120]},{"name":"SDDL_ML_MEDIUM_PLUS","features":[120]},{"name":"SDDL_ML_SYSTEM","features":[120]},{"name":"SDDL_NETWORK","features":[120]},{"name":"SDDL_NETWORK_CONFIGURATION_OPS","features":[120]},{"name":"SDDL_NETWORK_SERVICE","features":[120]},{"name":"SDDL_NO_EXECUTE_UP","features":[120]},{"name":"SDDL_NO_PROPAGATE","features":[120]},{"name":"SDDL_NO_READ_UP","features":[120]},{"name":"SDDL_NO_WRITE_UP","features":[120]},{"name":"SDDL_NULL_ACL","features":[120]},{"name":"SDDL_OBJECT_ACCESS_ALLOWED","features":[120]},{"name":"SDDL_OBJECT_ACCESS_DENIED","features":[120]},{"name":"SDDL_OBJECT_ALARM","features":[120]},{"name":"SDDL_OBJECT_AUDIT","features":[120]},{"name":"SDDL_OBJECT_INHERIT","features":[120]},{"name":"SDDL_OWNER","features":[120]},{"name":"SDDL_OWNER_RIGHTS","features":[120]},{"name":"SDDL_PERFLOG_USERS","features":[120]},{"name":"SDDL_PERFMON_USERS","features":[120]},{"name":"SDDL_PERSONAL_SELF","features":[120]},{"name":"SDDL_POWER_USERS","features":[120]},{"name":"SDDL_PRINTER_OPERATORS","features":[120]},{"name":"SDDL_PROCESS_TRUST_LABEL","features":[120]},{"name":"SDDL_PROTECTED","features":[120]},{"name":"SDDL_PROTECTED_USERS","features":[120]},{"name":"SDDL_RAS_SERVERS","features":[120]},{"name":"SDDL_RDS_ENDPOINT_SERVERS","features":[120]},{"name":"SDDL_RDS_MANAGEMENT_SERVERS","features":[120]},{"name":"SDDL_RDS_REMOTE_ACCESS_SERVERS","features":[120]},{"name":"SDDL_READ_CONTROL","features":[120]},{"name":"SDDL_READ_PROPERTY","features":[120]},{"name":"SDDL_REMOTE_DESKTOP","features":[120]},{"name":"SDDL_REMOTE_MANAGEMENT_USERS","features":[120]},{"name":"SDDL_REPLICATOR","features":[120]},{"name":"SDDL_RESOURCE_ATTRIBUTE","features":[120]},{"name":"SDDL_RESTRICTED_CODE","features":[120]},{"name":"SDDL_REVISION","features":[120]},{"name":"SDDL_REVISION_1","features":[120]},{"name":"SDDL_SACL","features":[120]},{"name":"SDDL_SCHEMA_ADMINISTRATORS","features":[120]},{"name":"SDDL_SCOPED_POLICY_ID","features":[120]},{"name":"SDDL_SELF_WRITE","features":[120]},{"name":"SDDL_SEPERATOR","features":[120]},{"name":"SDDL_SERVER_OPERATORS","features":[120]},{"name":"SDDL_SERVICE","features":[120]},{"name":"SDDL_SERVICE_ASSERTED","features":[120]},{"name":"SDDL_SID","features":[120]},{"name":"SDDL_SPACE","features":[120]},{"name":"SDDL_STANDARD_DELETE","features":[120]},{"name":"SDDL_TRUST_PROTECTED_FILTER","features":[120]},{"name":"SDDL_UINT","features":[120]},{"name":"SDDL_USER_MODE_DRIVERS","features":[120]},{"name":"SDDL_WRITE_DAC","features":[120]},{"name":"SDDL_WRITE_OWNER","features":[120]},{"name":"SDDL_WRITE_PROPERTY","features":[120]},{"name":"SDDL_WRITE_RESTRICTED_CODE","features":[120]},{"name":"SDDL_WSTRING","features":[120]},{"name":"SET_ACCESS","features":[120]},{"name":"SET_AUDIT_FAILURE","features":[120]},{"name":"SET_AUDIT_SUCCESS","features":[120]},{"name":"SE_DS_OBJECT","features":[120]},{"name":"SE_DS_OBJECT_ALL","features":[120]},{"name":"SE_FILE_OBJECT","features":[120]},{"name":"SE_KERNEL_OBJECT","features":[120]},{"name":"SE_LMSHARE","features":[120]},{"name":"SE_OBJECT_TYPE","features":[120]},{"name":"SE_PRINTER","features":[120]},{"name":"SE_PROVIDER_DEFINED_OBJECT","features":[120]},{"name":"SE_REGISTRY_KEY","features":[120]},{"name":"SE_REGISTRY_WOW64_32KEY","features":[120]},{"name":"SE_REGISTRY_WOW64_64KEY","features":[120]},{"name":"SE_SERVICE","features":[120]},{"name":"SE_UNKNOWN_OBJECT_TYPE","features":[120]},{"name":"SE_WINDOW_OBJECT","features":[120]},{"name":"SE_WMIGUID_OBJECT","features":[120]},{"name":"SetEntriesInAclA","features":[1,120]},{"name":"SetEntriesInAclW","features":[1,120]},{"name":"SetNamedSecurityInfoA","features":[1,120]},{"name":"SetNamedSecurityInfoW","features":[1,120]},{"name":"SetSecurityInfo","features":[1,120]},{"name":"TREE_SEC_INFO","features":[120]},{"name":"TREE_SEC_INFO_RESET","features":[120]},{"name":"TREE_SEC_INFO_RESET_KEEP_EXPLICIT","features":[120]},{"name":"TREE_SEC_INFO_SET","features":[120]},{"name":"TRUSTEE_A","features":[120]},{"name":"TRUSTEE_ACCESSA","features":[120]},{"name":"TRUSTEE_ACCESSW","features":[120]},{"name":"TRUSTEE_ACCESS_ALL","features":[120]},{"name":"TRUSTEE_ACCESS_ALLOWED","features":[120]},{"name":"TRUSTEE_ACCESS_EXPLICIT","features":[120]},{"name":"TRUSTEE_ACCESS_READ","features":[120]},{"name":"TRUSTEE_ACCESS_WRITE","features":[120]},{"name":"TRUSTEE_BAD_FORM","features":[120]},{"name":"TRUSTEE_FORM","features":[120]},{"name":"TRUSTEE_IS_ALIAS","features":[120]},{"name":"TRUSTEE_IS_COMPUTER","features":[120]},{"name":"TRUSTEE_IS_DELETED","features":[120]},{"name":"TRUSTEE_IS_DOMAIN","features":[120]},{"name":"TRUSTEE_IS_GROUP","features":[120]},{"name":"TRUSTEE_IS_IMPERSONATE","features":[120]},{"name":"TRUSTEE_IS_INVALID","features":[120]},{"name":"TRUSTEE_IS_NAME","features":[120]},{"name":"TRUSTEE_IS_OBJECTS_AND_NAME","features":[120]},{"name":"TRUSTEE_IS_OBJECTS_AND_SID","features":[120]},{"name":"TRUSTEE_IS_SID","features":[120]},{"name":"TRUSTEE_IS_UNKNOWN","features":[120]},{"name":"TRUSTEE_IS_USER","features":[120]},{"name":"TRUSTEE_IS_WELL_KNOWN_GROUP","features":[120]},{"name":"TRUSTEE_TYPE","features":[120]},{"name":"TRUSTEE_W","features":[120]},{"name":"TreeResetNamedSecurityInfoA","features":[1,120]},{"name":"TreeResetNamedSecurityInfoW","features":[1,120]},{"name":"TreeSetNamedSecurityInfoA","features":[1,120]},{"name":"TreeSetNamedSecurityInfoW","features":[1,120]},{"name":"_AUTHZ_SS_MAXSIZE","features":[120]}],"486":[{"name":"BINARY_BLOB_CREDENTIAL_INFO","features":[118]},{"name":"BinaryBlobCredential","features":[118]},{"name":"BinaryBlobForSystem","features":[118]},{"name":"CERT_CREDENTIAL_INFO","features":[118]},{"name":"CERT_HASH_LENGTH","features":[118]},{"name":"CREDENTIALA","features":[1,118]},{"name":"CREDENTIALW","features":[1,118]},{"name":"CREDENTIAL_ATTRIBUTEA","features":[118]},{"name":"CREDENTIAL_ATTRIBUTEW","features":[118]},{"name":"CREDENTIAL_TARGET_INFORMATIONA","features":[118]},{"name":"CREDENTIAL_TARGET_INFORMATIONW","features":[118]},{"name":"CREDSPP_SUBMIT_TYPE","features":[118]},{"name":"CREDSSP_CRED","features":[118]},{"name":"CREDSSP_CRED_EX","features":[118]},{"name":"CREDSSP_CRED_EX_VERSION","features":[118]},{"name":"CREDSSP_FLAG_REDIRECT","features":[118]},{"name":"CREDSSP_NAME","features":[118]},{"name":"CREDSSP_SERVER_AUTH_CERTIFICATE","features":[118]},{"name":"CREDSSP_SERVER_AUTH_LOOPBACK","features":[118]},{"name":"CREDSSP_SERVER_AUTH_NEGOTIATE","features":[118]},{"name":"CREDUIWIN_AUTHPACKAGE_ONLY","features":[118]},{"name":"CREDUIWIN_CHECKBOX","features":[118]},{"name":"CREDUIWIN_DOWNLEVEL_HELLO_AS_SMART_CARD","features":[118]},{"name":"CREDUIWIN_ENUMERATE_ADMINS","features":[118]},{"name":"CREDUIWIN_ENUMERATE_CURRENT_USER","features":[118]},{"name":"CREDUIWIN_FLAGS","features":[118]},{"name":"CREDUIWIN_GENERIC","features":[118]},{"name":"CREDUIWIN_IGNORE_CLOUDAUTHORITY_NAME","features":[118]},{"name":"CREDUIWIN_IN_CRED_ONLY","features":[118]},{"name":"CREDUIWIN_PACK_32_WOW","features":[118]},{"name":"CREDUIWIN_PREPROMPTING","features":[118]},{"name":"CREDUIWIN_SECURE_PROMPT","features":[118]},{"name":"CREDUI_FLAGS","features":[118]},{"name":"CREDUI_FLAGS_ALWAYS_SHOW_UI","features":[118]},{"name":"CREDUI_FLAGS_COMPLETE_USERNAME","features":[118]},{"name":"CREDUI_FLAGS_DO_NOT_PERSIST","features":[118]},{"name":"CREDUI_FLAGS_EXCLUDE_CERTIFICATES","features":[118]},{"name":"CREDUI_FLAGS_EXPECT_CONFIRMATION","features":[118]},{"name":"CREDUI_FLAGS_GENERIC_CREDENTIALS","features":[118]},{"name":"CREDUI_FLAGS_INCORRECT_PASSWORD","features":[118]},{"name":"CREDUI_FLAGS_KEEP_USERNAME","features":[118]},{"name":"CREDUI_FLAGS_PASSWORD_ONLY_OK","features":[118]},{"name":"CREDUI_FLAGS_PERSIST","features":[118]},{"name":"CREDUI_FLAGS_REQUEST_ADMINISTRATOR","features":[118]},{"name":"CREDUI_FLAGS_REQUIRE_CERTIFICATE","features":[118]},{"name":"CREDUI_FLAGS_REQUIRE_SMARTCARD","features":[118]},{"name":"CREDUI_FLAGS_SERVER_CREDENTIAL","features":[118]},{"name":"CREDUI_FLAGS_SHOW_SAVE_CHECK_BOX","features":[118]},{"name":"CREDUI_FLAGS_USERNAME_TARGET_CREDENTIALS","features":[118]},{"name":"CREDUI_FLAGS_VALIDATE_USERNAME","features":[118]},{"name":"CREDUI_INFOA","features":[1,12,118]},{"name":"CREDUI_INFOW","features":[1,12,118]},{"name":"CREDUI_MAX_CAPTION_LENGTH","features":[118]},{"name":"CREDUI_MAX_DOMAIN_TARGET_LENGTH","features":[118]},{"name":"CREDUI_MAX_GENERIC_TARGET_LENGTH","features":[118]},{"name":"CREDUI_MAX_MESSAGE_LENGTH","features":[118]},{"name":"CREDUI_MAX_USERNAME_LENGTH","features":[118]},{"name":"CRED_ALLOW_NAME_RESOLUTION","features":[118]},{"name":"CRED_CACHE_TARGET_INFORMATION","features":[118]},{"name":"CRED_ENUMERATE_ALL_CREDENTIALS","features":[118]},{"name":"CRED_ENUMERATE_FLAGS","features":[118]},{"name":"CRED_FLAGS","features":[118]},{"name":"CRED_FLAGS_NGC_CERT","features":[118]},{"name":"CRED_FLAGS_OWF_CRED_BLOB","features":[118]},{"name":"CRED_FLAGS_PASSWORD_FOR_CERT","features":[118]},{"name":"CRED_FLAGS_PROMPT_NOW","features":[118]},{"name":"CRED_FLAGS_REQUIRE_CONFIRMATION","features":[118]},{"name":"CRED_FLAGS_USERNAME_TARGET","features":[118]},{"name":"CRED_FLAGS_VALID_FLAGS","features":[118]},{"name":"CRED_FLAGS_VALID_INPUT_FLAGS","features":[118]},{"name":"CRED_FLAGS_VSM_PROTECTED","features":[118]},{"name":"CRED_FLAGS_WILDCARD_MATCH","features":[118]},{"name":"CRED_LOGON_TYPES_MASK","features":[118]},{"name":"CRED_MARSHAL_TYPE","features":[118]},{"name":"CRED_MAX_ATTRIBUTES","features":[118]},{"name":"CRED_MAX_CREDENTIAL_BLOB_SIZE","features":[118]},{"name":"CRED_MAX_DOMAIN_TARGET_NAME_LENGTH","features":[118]},{"name":"CRED_MAX_GENERIC_TARGET_NAME_LENGTH","features":[118]},{"name":"CRED_MAX_STRING_LENGTH","features":[118]},{"name":"CRED_MAX_TARGETNAME_ATTRIBUTE_LENGTH","features":[118]},{"name":"CRED_MAX_TARGETNAME_NAMESPACE_LENGTH","features":[118]},{"name":"CRED_MAX_USERNAME_LENGTH","features":[118]},{"name":"CRED_MAX_VALUE_SIZE","features":[118]},{"name":"CRED_PACK_FLAGS","features":[118]},{"name":"CRED_PACK_GENERIC_CREDENTIALS","features":[118]},{"name":"CRED_PACK_ID_PROVIDER_CREDENTIALS","features":[118]},{"name":"CRED_PACK_PROTECTED_CREDENTIALS","features":[118]},{"name":"CRED_PACK_WOW_BUFFER","features":[118]},{"name":"CRED_PERSIST","features":[118]},{"name":"CRED_PERSIST_ENTERPRISE","features":[118]},{"name":"CRED_PERSIST_LOCAL_MACHINE","features":[118]},{"name":"CRED_PERSIST_NONE","features":[118]},{"name":"CRED_PERSIST_SESSION","features":[118]},{"name":"CRED_PRESERVE_CREDENTIAL_BLOB","features":[118]},{"name":"CRED_PROTECTION_TYPE","features":[118]},{"name":"CRED_PROTECT_AS_SELF","features":[118]},{"name":"CRED_PROTECT_TO_SYSTEM","features":[118]},{"name":"CRED_SESSION_WILDCARD_NAME","features":[118]},{"name":"CRED_SESSION_WILDCARD_NAME_A","features":[118]},{"name":"CRED_SESSION_WILDCARD_NAME_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_W","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_A","features":[118]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_W","features":[118]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE","features":[118]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_A","features":[118]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_W","features":[118]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_A","features":[118]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_W","features":[118]},{"name":"CRED_TI_CREATE_EXPLICIT_CRED","features":[118]},{"name":"CRED_TI_DNSTREE_IS_DFS_SERVER","features":[118]},{"name":"CRED_TI_DOMAIN_FORMAT_UNKNOWN","features":[118]},{"name":"CRED_TI_ONLY_PASSWORD_REQUIRED","features":[118]},{"name":"CRED_TI_SERVER_FORMAT_UNKNOWN","features":[118]},{"name":"CRED_TI_USERNAME_TARGET","features":[118]},{"name":"CRED_TI_VALID_FLAGS","features":[118]},{"name":"CRED_TI_WORKGROUP_MEMBER","features":[118]},{"name":"CRED_TYPE","features":[118]},{"name":"CRED_TYPE_DOMAIN_CERTIFICATE","features":[118]},{"name":"CRED_TYPE_DOMAIN_EXTENDED","features":[118]},{"name":"CRED_TYPE_DOMAIN_PASSWORD","features":[118]},{"name":"CRED_TYPE_DOMAIN_VISIBLE_PASSWORD","features":[118]},{"name":"CRED_TYPE_GENERIC","features":[118]},{"name":"CRED_TYPE_GENERIC_CERTIFICATE","features":[118]},{"name":"CRED_TYPE_MAXIMUM","features":[118]},{"name":"CRED_TYPE_MAXIMUM_EX","features":[118]},{"name":"CRED_UNPROTECT_ALLOW_TO_SYSTEM","features":[118]},{"name":"CRED_UNPROTECT_AS_SELF","features":[118]},{"name":"CertCredential","features":[118]},{"name":"CredDeleteA","features":[1,118]},{"name":"CredDeleteW","features":[1,118]},{"name":"CredEnumerateA","features":[1,118]},{"name":"CredEnumerateW","features":[1,118]},{"name":"CredFindBestCredentialA","features":[1,118]},{"name":"CredFindBestCredentialW","features":[1,118]},{"name":"CredForSystemProtection","features":[118]},{"name":"CredFree","features":[118]},{"name":"CredGetSessionTypes","features":[1,118]},{"name":"CredGetTargetInfoA","features":[1,118]},{"name":"CredGetTargetInfoW","features":[1,118]},{"name":"CredIsMarshaledCredentialA","features":[1,118]},{"name":"CredIsMarshaledCredentialW","features":[1,118]},{"name":"CredIsProtectedA","features":[1,118]},{"name":"CredIsProtectedW","features":[1,118]},{"name":"CredMarshalCredentialA","features":[1,118]},{"name":"CredMarshalCredentialW","features":[1,118]},{"name":"CredPackAuthenticationBufferA","features":[1,118]},{"name":"CredPackAuthenticationBufferW","features":[1,118]},{"name":"CredProtectA","features":[1,118]},{"name":"CredProtectW","features":[1,118]},{"name":"CredReadA","features":[1,118]},{"name":"CredReadDomainCredentialsA","features":[1,118]},{"name":"CredReadDomainCredentialsW","features":[1,118]},{"name":"CredReadW","features":[1,118]},{"name":"CredRenameA","features":[1,118]},{"name":"CredRenameW","features":[1,118]},{"name":"CredTrustedProtection","features":[118]},{"name":"CredUICmdLinePromptForCredentialsA","features":[1,118]},{"name":"CredUICmdLinePromptForCredentialsW","features":[1,118]},{"name":"CredUIConfirmCredentialsA","features":[1,118]},{"name":"CredUIConfirmCredentialsW","features":[1,118]},{"name":"CredUIParseUserNameA","features":[118]},{"name":"CredUIParseUserNameW","features":[118]},{"name":"CredUIPromptForCredentialsA","features":[1,12,118]},{"name":"CredUIPromptForCredentialsW","features":[1,12,118]},{"name":"CredUIPromptForWindowsCredentialsA","features":[1,12,118]},{"name":"CredUIPromptForWindowsCredentialsW","features":[1,12,118]},{"name":"CredUIReadSSOCredW","features":[118]},{"name":"CredUIStoreSSOCredW","features":[1,118]},{"name":"CredUnPackAuthenticationBufferA","features":[1,118]},{"name":"CredUnPackAuthenticationBufferW","features":[1,118]},{"name":"CredUnmarshalCredentialA","features":[1,118]},{"name":"CredUnmarshalCredentialW","features":[1,118]},{"name":"CredUnprotectA","features":[1,118]},{"name":"CredUnprotectW","features":[1,118]},{"name":"CredUnprotected","features":[118]},{"name":"CredUserProtection","features":[118]},{"name":"CredWriteA","features":[1,118]},{"name":"CredWriteDomainCredentialsA","features":[1,118]},{"name":"CredWriteDomainCredentialsW","features":[1,118]},{"name":"CredWriteW","features":[1,118]},{"name":"CredsspCertificateCreds","features":[118]},{"name":"CredsspCredEx","features":[118]},{"name":"CredsspPasswordCreds","features":[118]},{"name":"CredsspSchannelCreds","features":[118]},{"name":"CredsspSubmitBufferBoth","features":[118]},{"name":"CredsspSubmitBufferBothOld","features":[118]},{"name":"FILE_DEVICE_SMARTCARD","features":[118]},{"name":"GUID_DEVINTERFACE_SMARTCARD_READER","features":[118]},{"name":"GetOpenCardNameA","features":[1,118]},{"name":"GetOpenCardNameW","features":[1,118]},{"name":"KeyCredentialManagerFreeInformation","features":[118]},{"name":"KeyCredentialManagerGetInformation","features":[118]},{"name":"KeyCredentialManagerGetOperationErrorStates","features":[1,118]},{"name":"KeyCredentialManagerInfo","features":[118]},{"name":"KeyCredentialManagerOperationErrorStateCertificateFailure","features":[118]},{"name":"KeyCredentialManagerOperationErrorStateDeviceJoinFailure","features":[118]},{"name":"KeyCredentialManagerOperationErrorStateHardwareFailure","features":[118]},{"name":"KeyCredentialManagerOperationErrorStateNone","features":[118]},{"name":"KeyCredentialManagerOperationErrorStatePinExistsFailure","features":[118]},{"name":"KeyCredentialManagerOperationErrorStatePolicyFailure","features":[118]},{"name":"KeyCredentialManagerOperationErrorStateRemoteSessionFailure","features":[118]},{"name":"KeyCredentialManagerOperationErrorStateTokenFailure","features":[118]},{"name":"KeyCredentialManagerOperationErrorStates","features":[118]},{"name":"KeyCredentialManagerOperationType","features":[118]},{"name":"KeyCredentialManagerPinChange","features":[118]},{"name":"KeyCredentialManagerPinReset","features":[118]},{"name":"KeyCredentialManagerProvisioning","features":[118]},{"name":"KeyCredentialManagerShowUIOperation","features":[1,118]},{"name":"LPOCNCHKPROC","features":[1,118]},{"name":"LPOCNCONNPROCA","features":[118]},{"name":"LPOCNCONNPROCW","features":[118]},{"name":"LPOCNDSCPROC","features":[118]},{"name":"MAXIMUM_ATTR_STRING_LENGTH","features":[118]},{"name":"MAXIMUM_SMARTCARD_READERS","features":[118]},{"name":"OPENCARDNAMEA","features":[1,118]},{"name":"OPENCARDNAMEW","features":[1,118]},{"name":"OPENCARDNAME_EXA","features":[1,118,50]},{"name":"OPENCARDNAME_EXW","features":[1,118,50]},{"name":"OPENCARD_SEARCH_CRITERIAA","features":[1,118]},{"name":"OPENCARD_SEARCH_CRITERIAW","features":[1,118]},{"name":"READER_SEL_REQUEST","features":[118]},{"name":"READER_SEL_REQUEST_MATCH_TYPE","features":[118]},{"name":"READER_SEL_RESPONSE","features":[118]},{"name":"RSR_MATCH_TYPE_ALL_CARDS","features":[118]},{"name":"RSR_MATCH_TYPE_READER_AND_CONTAINER","features":[118]},{"name":"RSR_MATCH_TYPE_SERIAL_NUMBER","features":[118]},{"name":"SCARD_ABSENT","features":[118]},{"name":"SCARD_ALL_READERS","features":[118]},{"name":"SCARD_ATRMASK","features":[118]},{"name":"SCARD_ATR_LENGTH","features":[118]},{"name":"SCARD_AUDIT_CHV_FAILURE","features":[118]},{"name":"SCARD_AUDIT_CHV_SUCCESS","features":[118]},{"name":"SCARD_CLASS_COMMUNICATIONS","features":[118]},{"name":"SCARD_CLASS_ICC_STATE","features":[118]},{"name":"SCARD_CLASS_IFD_PROTOCOL","features":[118]},{"name":"SCARD_CLASS_MECHANICAL","features":[118]},{"name":"SCARD_CLASS_PERF","features":[118]},{"name":"SCARD_CLASS_POWER_MGMT","features":[118]},{"name":"SCARD_CLASS_PROTOCOL","features":[118]},{"name":"SCARD_CLASS_SECURITY","features":[118]},{"name":"SCARD_CLASS_SYSTEM","features":[118]},{"name":"SCARD_CLASS_VENDOR_DEFINED","features":[118]},{"name":"SCARD_CLASS_VENDOR_INFO","features":[118]},{"name":"SCARD_COLD_RESET","features":[118]},{"name":"SCARD_DEFAULT_READERS","features":[118]},{"name":"SCARD_EJECT_CARD","features":[118]},{"name":"SCARD_IO_REQUEST","features":[118]},{"name":"SCARD_LEAVE_CARD","features":[118]},{"name":"SCARD_LOCAL_READERS","features":[118]},{"name":"SCARD_NEGOTIABLE","features":[118]},{"name":"SCARD_POWERED","features":[118]},{"name":"SCARD_POWER_DOWN","features":[118]},{"name":"SCARD_PRESENT","features":[118]},{"name":"SCARD_PROTOCOL_DEFAULT","features":[118]},{"name":"SCARD_PROTOCOL_OPTIMAL","features":[118]},{"name":"SCARD_PROTOCOL_RAW","features":[118]},{"name":"SCARD_PROTOCOL_T0","features":[118]},{"name":"SCARD_PROTOCOL_T1","features":[118]},{"name":"SCARD_PROTOCOL_UNDEFINED","features":[118]},{"name":"SCARD_PROVIDER_CSP","features":[118]},{"name":"SCARD_PROVIDER_KSP","features":[118]},{"name":"SCARD_PROVIDER_PRIMARY","features":[118]},{"name":"SCARD_READERSTATEA","features":[118]},{"name":"SCARD_READERSTATEW","features":[118]},{"name":"SCARD_READER_CONFISCATES","features":[118]},{"name":"SCARD_READER_CONTACTLESS","features":[118]},{"name":"SCARD_READER_EJECTS","features":[118]},{"name":"SCARD_READER_SWALLOWS","features":[118]},{"name":"SCARD_READER_TYPE_EMBEDDEDSE","features":[118]},{"name":"SCARD_READER_TYPE_IDE","features":[118]},{"name":"SCARD_READER_TYPE_KEYBOARD","features":[118]},{"name":"SCARD_READER_TYPE_NFC","features":[118]},{"name":"SCARD_READER_TYPE_NGC","features":[118]},{"name":"SCARD_READER_TYPE_PARALELL","features":[118]},{"name":"SCARD_READER_TYPE_PCMCIA","features":[118]},{"name":"SCARD_READER_TYPE_SCSI","features":[118]},{"name":"SCARD_READER_TYPE_SERIAL","features":[118]},{"name":"SCARD_READER_TYPE_TPM","features":[118]},{"name":"SCARD_READER_TYPE_UICC","features":[118]},{"name":"SCARD_READER_TYPE_USB","features":[118]},{"name":"SCARD_READER_TYPE_VENDOR","features":[118]},{"name":"SCARD_RESET_CARD","features":[118]},{"name":"SCARD_SCOPE","features":[118]},{"name":"SCARD_SCOPE_SYSTEM","features":[118]},{"name":"SCARD_SCOPE_TERMINAL","features":[118]},{"name":"SCARD_SCOPE_USER","features":[118]},{"name":"SCARD_SHARE_DIRECT","features":[118]},{"name":"SCARD_SHARE_EXCLUSIVE","features":[118]},{"name":"SCARD_SHARE_SHARED","features":[118]},{"name":"SCARD_SPECIFIC","features":[118]},{"name":"SCARD_STATE","features":[118]},{"name":"SCARD_STATE_ATRMATCH","features":[118]},{"name":"SCARD_STATE_CHANGED","features":[118]},{"name":"SCARD_STATE_EMPTY","features":[118]},{"name":"SCARD_STATE_EXCLUSIVE","features":[118]},{"name":"SCARD_STATE_IGNORE","features":[118]},{"name":"SCARD_STATE_INUSE","features":[118]},{"name":"SCARD_STATE_MUTE","features":[118]},{"name":"SCARD_STATE_PRESENT","features":[118]},{"name":"SCARD_STATE_UNAVAILABLE","features":[118]},{"name":"SCARD_STATE_UNAWARE","features":[118]},{"name":"SCARD_STATE_UNKNOWN","features":[118]},{"name":"SCARD_STATE_UNPOWERED","features":[118]},{"name":"SCARD_SWALLOWED","features":[118]},{"name":"SCARD_SYSTEM_READERS","features":[118]},{"name":"SCARD_T0_CMD_LENGTH","features":[118]},{"name":"SCARD_T0_COMMAND","features":[118]},{"name":"SCARD_T0_HEADER_LENGTH","features":[118]},{"name":"SCARD_T0_REQUEST","features":[118]},{"name":"SCARD_T1_EPILOGUE_LENGTH","features":[118]},{"name":"SCARD_T1_EPILOGUE_LENGTH_LRC","features":[118]},{"name":"SCARD_T1_MAX_IFS","features":[118]},{"name":"SCARD_T1_PROLOGUE_LENGTH","features":[118]},{"name":"SCARD_T1_REQUEST","features":[118]},{"name":"SCARD_UNKNOWN","features":[118]},{"name":"SCARD_UNPOWER_CARD","features":[118]},{"name":"SCARD_WARM_RESET","features":[118]},{"name":"SCERR_NOCARDNAME","features":[118]},{"name":"SCERR_NOGUIDS","features":[118]},{"name":"SC_DLG_FORCE_UI","features":[118]},{"name":"SC_DLG_MINIMAL_UI","features":[118]},{"name":"SC_DLG_NO_UI","features":[118]},{"name":"SCardAccessStartedEvent","features":[1,118]},{"name":"SCardAddReaderToGroupA","features":[118]},{"name":"SCardAddReaderToGroupW","features":[118]},{"name":"SCardAudit","features":[118]},{"name":"SCardBeginTransaction","features":[118]},{"name":"SCardCancel","features":[118]},{"name":"SCardConnectA","features":[118]},{"name":"SCardConnectW","features":[118]},{"name":"SCardControl","features":[118]},{"name":"SCardDisconnect","features":[118]},{"name":"SCardDlgExtendedError","features":[118]},{"name":"SCardEndTransaction","features":[118]},{"name":"SCardEstablishContext","features":[118]},{"name":"SCardForgetCardTypeA","features":[118]},{"name":"SCardForgetCardTypeW","features":[118]},{"name":"SCardForgetReaderA","features":[118]},{"name":"SCardForgetReaderGroupA","features":[118]},{"name":"SCardForgetReaderGroupW","features":[118]},{"name":"SCardForgetReaderW","features":[118]},{"name":"SCardFreeMemory","features":[118]},{"name":"SCardGetAttrib","features":[118]},{"name":"SCardGetCardTypeProviderNameA","features":[118]},{"name":"SCardGetCardTypeProviderNameW","features":[118]},{"name":"SCardGetDeviceTypeIdA","features":[118]},{"name":"SCardGetDeviceTypeIdW","features":[118]},{"name":"SCardGetProviderIdA","features":[118]},{"name":"SCardGetProviderIdW","features":[118]},{"name":"SCardGetReaderDeviceInstanceIdA","features":[118]},{"name":"SCardGetReaderDeviceInstanceIdW","features":[118]},{"name":"SCardGetReaderIconA","features":[118]},{"name":"SCardGetReaderIconW","features":[118]},{"name":"SCardGetStatusChangeA","features":[118]},{"name":"SCardGetStatusChangeW","features":[118]},{"name":"SCardGetTransmitCount","features":[118]},{"name":"SCardIntroduceCardTypeA","features":[118]},{"name":"SCardIntroduceCardTypeW","features":[118]},{"name":"SCardIntroduceReaderA","features":[118]},{"name":"SCardIntroduceReaderGroupA","features":[118]},{"name":"SCardIntroduceReaderGroupW","features":[118]},{"name":"SCardIntroduceReaderW","features":[118]},{"name":"SCardIsValidContext","features":[118]},{"name":"SCardListCardsA","features":[118]},{"name":"SCardListCardsW","features":[118]},{"name":"SCardListInterfacesA","features":[118]},{"name":"SCardListInterfacesW","features":[118]},{"name":"SCardListReaderGroupsA","features":[118]},{"name":"SCardListReaderGroupsW","features":[118]},{"name":"SCardListReadersA","features":[118]},{"name":"SCardListReadersW","features":[118]},{"name":"SCardListReadersWithDeviceInstanceIdA","features":[118]},{"name":"SCardListReadersWithDeviceInstanceIdW","features":[118]},{"name":"SCardLocateCardsA","features":[118]},{"name":"SCardLocateCardsByATRA","features":[118]},{"name":"SCardLocateCardsByATRW","features":[118]},{"name":"SCardLocateCardsW","features":[118]},{"name":"SCardReadCacheA","features":[118]},{"name":"SCardReadCacheW","features":[118]},{"name":"SCardReconnect","features":[118]},{"name":"SCardReleaseContext","features":[118]},{"name":"SCardReleaseStartedEvent","features":[118]},{"name":"SCardRemoveReaderFromGroupA","features":[118]},{"name":"SCardRemoveReaderFromGroupW","features":[118]},{"name":"SCardSetAttrib","features":[118]},{"name":"SCardSetCardTypeProviderNameA","features":[118]},{"name":"SCardSetCardTypeProviderNameW","features":[118]},{"name":"SCardState","features":[118]},{"name":"SCardStatusA","features":[118]},{"name":"SCardStatusW","features":[118]},{"name":"SCardTransmit","features":[118]},{"name":"SCardUIDlgSelectCardA","features":[1,118,50]},{"name":"SCardUIDlgSelectCardW","features":[1,118,50]},{"name":"SCardWriteCacheA","features":[118]},{"name":"SCardWriteCacheW","features":[118]},{"name":"SECPKG_ALT_ATTR","features":[118]},{"name":"SECPKG_ATTR_C_FULL_IDENT_TOKEN","features":[118]},{"name":"STATUS_ACCOUNT_DISABLED","features":[1,118]},{"name":"STATUS_ACCOUNT_EXPIRED","features":[1,118]},{"name":"STATUS_ACCOUNT_LOCKED_OUT","features":[1,118]},{"name":"STATUS_ACCOUNT_RESTRICTION","features":[1,118]},{"name":"STATUS_AUTHENTICATION_FIREWALL_FAILED","features":[1,118]},{"name":"STATUS_DOWNGRADE_DETECTED","features":[1,118]},{"name":"STATUS_LOGON_FAILURE","features":[1,118]},{"name":"STATUS_LOGON_TYPE_NOT_GRANTED","features":[1,118]},{"name":"STATUS_NO_SUCH_LOGON_SESSION","features":[1,118]},{"name":"STATUS_NO_SUCH_USER","features":[1,118]},{"name":"STATUS_PASSWORD_EXPIRED","features":[1,118]},{"name":"STATUS_PASSWORD_MUST_CHANGE","features":[1,118]},{"name":"STATUS_WRONG_PASSWORD","features":[1,118]},{"name":"SecHandle","features":[118]},{"name":"SecPkgContext_ClientCreds","features":[118]},{"name":"TS_SSP_NAME","features":[118]},{"name":"TS_SSP_NAME_A","features":[118]},{"name":"USERNAME_TARGET_CREDENTIAL_INFO","features":[118]},{"name":"UsernameForPackedCredentials","features":[118]},{"name":"UsernameTargetCredential","features":[118]},{"name":"szOID_TS_KP_TS_SERVER_AUTH","features":[118]}],"487":[{"name":"ALG_CLASS_ALL","features":[68]},{"name":"ALG_CLASS_ANY","features":[68]},{"name":"ALG_CLASS_DATA_ENCRYPT","features":[68]},{"name":"ALG_CLASS_HASH","features":[68]},{"name":"ALG_CLASS_KEY_EXCHANGE","features":[68]},{"name":"ALG_CLASS_MSG_ENCRYPT","features":[68]},{"name":"ALG_CLASS_SIGNATURE","features":[68]},{"name":"ALG_ID","features":[68]},{"name":"ALG_SID_3DES","features":[68]},{"name":"ALG_SID_3DES_112","features":[68]},{"name":"ALG_SID_AES","features":[68]},{"name":"ALG_SID_AES_128","features":[68]},{"name":"ALG_SID_AES_192","features":[68]},{"name":"ALG_SID_AES_256","features":[68]},{"name":"ALG_SID_AGREED_KEY_ANY","features":[68]},{"name":"ALG_SID_ANY","features":[68]},{"name":"ALG_SID_CAST","features":[68]},{"name":"ALG_SID_CYLINK_MEK","features":[68]},{"name":"ALG_SID_DES","features":[68]},{"name":"ALG_SID_DESX","features":[68]},{"name":"ALG_SID_DH_EPHEM","features":[68]},{"name":"ALG_SID_DH_SANDF","features":[68]},{"name":"ALG_SID_DSS_ANY","features":[68]},{"name":"ALG_SID_DSS_DMS","features":[68]},{"name":"ALG_SID_DSS_PKCS","features":[68]},{"name":"ALG_SID_ECDH","features":[68]},{"name":"ALG_SID_ECDH_EPHEM","features":[68]},{"name":"ALG_SID_ECDSA","features":[68]},{"name":"ALG_SID_ECMQV","features":[68]},{"name":"ALG_SID_EXAMPLE","features":[68]},{"name":"ALG_SID_HASH_REPLACE_OWF","features":[68]},{"name":"ALG_SID_HMAC","features":[68]},{"name":"ALG_SID_IDEA","features":[68]},{"name":"ALG_SID_KEA","features":[68]},{"name":"ALG_SID_MAC","features":[68]},{"name":"ALG_SID_MD2","features":[68]},{"name":"ALG_SID_MD4","features":[68]},{"name":"ALG_SID_MD5","features":[68]},{"name":"ALG_SID_PCT1_MASTER","features":[68]},{"name":"ALG_SID_RC2","features":[68]},{"name":"ALG_SID_RC4","features":[68]},{"name":"ALG_SID_RC5","features":[68]},{"name":"ALG_SID_RIPEMD","features":[68]},{"name":"ALG_SID_RIPEMD160","features":[68]},{"name":"ALG_SID_RSA_ANY","features":[68]},{"name":"ALG_SID_RSA_ENTRUST","features":[68]},{"name":"ALG_SID_RSA_MSATWORK","features":[68]},{"name":"ALG_SID_RSA_PGP","features":[68]},{"name":"ALG_SID_RSA_PKCS","features":[68]},{"name":"ALG_SID_SAFERSK128","features":[68]},{"name":"ALG_SID_SAFERSK64","features":[68]},{"name":"ALG_SID_SCHANNEL_ENC_KEY","features":[68]},{"name":"ALG_SID_SCHANNEL_MAC_KEY","features":[68]},{"name":"ALG_SID_SCHANNEL_MASTER_HASH","features":[68]},{"name":"ALG_SID_SEAL","features":[68]},{"name":"ALG_SID_SHA","features":[68]},{"name":"ALG_SID_SHA1","features":[68]},{"name":"ALG_SID_SHA_256","features":[68]},{"name":"ALG_SID_SHA_384","features":[68]},{"name":"ALG_SID_SHA_512","features":[68]},{"name":"ALG_SID_SKIPJACK","features":[68]},{"name":"ALG_SID_SSL2_MASTER","features":[68]},{"name":"ALG_SID_SSL3SHAMD5","features":[68]},{"name":"ALG_SID_SSL3_MASTER","features":[68]},{"name":"ALG_SID_TEK","features":[68]},{"name":"ALG_SID_THIRDPARTY_ANY","features":[68]},{"name":"ALG_SID_TLS1PRF","features":[68]},{"name":"ALG_SID_TLS1_MASTER","features":[68]},{"name":"ALG_TYPE_ANY","features":[68]},{"name":"ALG_TYPE_BLOCK","features":[68]},{"name":"ALG_TYPE_DH","features":[68]},{"name":"ALG_TYPE_DSS","features":[68]},{"name":"ALG_TYPE_ECDH","features":[68]},{"name":"ALG_TYPE_RSA","features":[68]},{"name":"ALG_TYPE_SECURECHANNEL","features":[68]},{"name":"ALG_TYPE_STREAM","features":[68]},{"name":"ALG_TYPE_THIRDPARTY","features":[68]},{"name":"AT_KEYEXCHANGE","features":[68]},{"name":"AT_SIGNATURE","features":[68]},{"name":"AUDIT_CARD_DELETE","features":[68]},{"name":"AUDIT_CARD_IMPORT","features":[68]},{"name":"AUDIT_CARD_WRITTEN","features":[68]},{"name":"AUDIT_SERVICE_IDLE_STOP","features":[68]},{"name":"AUDIT_STORE_DELETE","features":[68]},{"name":"AUDIT_STORE_EXPORT","features":[68]},{"name":"AUDIT_STORE_IMPORT","features":[68]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA","features":[68]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[1,68]},{"name":"AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA","features":[1,68]},{"name":"AUTHTYPE_CLIENT","features":[68]},{"name":"AUTHTYPE_SERVER","features":[68]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_CA_FLAG","features":[68]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_END_ENTITY_FLAG","features":[68]},{"name":"BCRYPTBUFFER_VERSION","features":[68]},{"name":"BCRYPTGENRANDOM_FLAGS","features":[68]},{"name":"BCRYPT_3DES_112_ALGORITHM","features":[68]},{"name":"BCRYPT_3DES_112_CBC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_3DES_112_CFB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_3DES_112_ECB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_3DES_ALGORITHM","features":[68]},{"name":"BCRYPT_3DES_CBC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_3DES_CFB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_3DES_ECB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_ALGORITHM","features":[68]},{"name":"BCRYPT_AES_CBC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_CCM_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_CFB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_CMAC_ALGORITHM","features":[68]},{"name":"BCRYPT_AES_CMAC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_ECB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_GCM_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_GMAC_ALGORITHM","features":[68]},{"name":"BCRYPT_AES_GMAC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_AES_WRAP_KEY_BLOB","features":[68]},{"name":"BCRYPT_ALGORITHM_IDENTIFIER","features":[68]},{"name":"BCRYPT_ALGORITHM_NAME","features":[68]},{"name":"BCRYPT_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ALG_HANDLE_HMAC_FLAG","features":[68]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[68]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[68]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO","features":[68]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO_VERSION","features":[68]},{"name":"BCRYPT_AUTH_MODE_CHAIN_CALLS_FLAG","features":[68]},{"name":"BCRYPT_AUTH_MODE_IN_PROGRESS_FLAG","features":[68]},{"name":"BCRYPT_AUTH_TAG_LENGTH","features":[68]},{"name":"BCRYPT_BLOCK_LENGTH","features":[68]},{"name":"BCRYPT_BLOCK_PADDING","features":[68]},{"name":"BCRYPT_BLOCK_SIZE_LIST","features":[68]},{"name":"BCRYPT_BUFFERS_LOCKED_FLAG","features":[68]},{"name":"BCRYPT_CAPI_AES_FLAG","features":[68]},{"name":"BCRYPT_CAPI_KDF_ALGORITHM","features":[68]},{"name":"BCRYPT_CAPI_KDF_ALG_HANDLE","features":[68]},{"name":"BCRYPT_CHACHA20_POLY1305_ALGORITHM","features":[68]},{"name":"BCRYPT_CHACHA20_POLY1305_ALG_HANDLE","features":[68]},{"name":"BCRYPT_CHAINING_MODE","features":[68]},{"name":"BCRYPT_CHAIN_MODE_CBC","features":[68]},{"name":"BCRYPT_CHAIN_MODE_CCM","features":[68]},{"name":"BCRYPT_CHAIN_MODE_CFB","features":[68]},{"name":"BCRYPT_CHAIN_MODE_ECB","features":[68]},{"name":"BCRYPT_CHAIN_MODE_GCM","features":[68]},{"name":"BCRYPT_CHAIN_MODE_NA","features":[68]},{"name":"BCRYPT_CIPHER_INTERFACE","features":[68]},{"name":"BCRYPT_CIPHER_OPERATION","features":[68]},{"name":"BCRYPT_DESX_ALGORITHM","features":[68]},{"name":"BCRYPT_DESX_CBC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DESX_CFB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DESX_ECB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DES_ALGORITHM","features":[68]},{"name":"BCRYPT_DES_CBC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DES_CFB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DES_ECB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DH_ALGORITHM","features":[68]},{"name":"BCRYPT_DH_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DH_KEY_BLOB","features":[68]},{"name":"BCRYPT_DH_KEY_BLOB_MAGIC","features":[68]},{"name":"BCRYPT_DH_PARAMETERS","features":[68]},{"name":"BCRYPT_DH_PARAMETERS_MAGIC","features":[68]},{"name":"BCRYPT_DH_PARAMETER_HEADER","features":[68]},{"name":"BCRYPT_DH_PRIVATE_BLOB","features":[68]},{"name":"BCRYPT_DH_PRIVATE_MAGIC","features":[68]},{"name":"BCRYPT_DH_PUBLIC_BLOB","features":[68]},{"name":"BCRYPT_DH_PUBLIC_MAGIC","features":[68]},{"name":"BCRYPT_DSA_ALGORITHM","features":[68]},{"name":"BCRYPT_DSA_ALG_HANDLE","features":[68]},{"name":"BCRYPT_DSA_KEY_BLOB","features":[68]},{"name":"BCRYPT_DSA_KEY_BLOB_V2","features":[68]},{"name":"BCRYPT_DSA_MAGIC","features":[68]},{"name":"BCRYPT_DSA_PARAMETERS","features":[68]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC","features":[68]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC_V2","features":[68]},{"name":"BCRYPT_DSA_PARAMETER_HEADER","features":[68]},{"name":"BCRYPT_DSA_PARAMETER_HEADER_V2","features":[68]},{"name":"BCRYPT_DSA_PRIVATE_BLOB","features":[68]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC","features":[68]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC_V2","features":[68]},{"name":"BCRYPT_DSA_PUBLIC_BLOB","features":[68]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC","features":[68]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC_V2","features":[68]},{"name":"BCRYPT_ECCFULLKEY_BLOB","features":[68]},{"name":"BCRYPT_ECCFULLPRIVATE_BLOB","features":[68]},{"name":"BCRYPT_ECCFULLPUBLIC_BLOB","features":[68]},{"name":"BCRYPT_ECCKEY_BLOB","features":[68]},{"name":"BCRYPT_ECCPRIVATE_BLOB","features":[68]},{"name":"BCRYPT_ECCPUBLIC_BLOB","features":[68]},{"name":"BCRYPT_ECC_CURVE_25519","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_EC192WAPI","features":[68]},{"name":"BCRYPT_ECC_CURVE_NAME","features":[68]},{"name":"BCRYPT_ECC_CURVE_NAMES","features":[68]},{"name":"BCRYPT_ECC_CURVE_NAME_LIST","features":[68]},{"name":"BCRYPT_ECC_CURVE_NISTP192","features":[68]},{"name":"BCRYPT_ECC_CURVE_NISTP224","features":[68]},{"name":"BCRYPT_ECC_CURVE_NISTP256","features":[68]},{"name":"BCRYPT_ECC_CURVE_NISTP384","features":[68]},{"name":"BCRYPT_ECC_CURVE_NISTP521","features":[68]},{"name":"BCRYPT_ECC_CURVE_NUMSP256T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_NUMSP384T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_NUMSP512T1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP160K1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP160R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP160R2","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP192K1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP192R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP224K1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP224R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP256K1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP256R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP384R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_SECP521R1","features":[68]},{"name":"BCRYPT_ECC_CURVE_WTLS12","features":[68]},{"name":"BCRYPT_ECC_CURVE_WTLS7","features":[68]},{"name":"BCRYPT_ECC_CURVE_WTLS9","features":[68]},{"name":"BCRYPT_ECC_CURVE_X962P192V1","features":[68]},{"name":"BCRYPT_ECC_CURVE_X962P192V2","features":[68]},{"name":"BCRYPT_ECC_CURVE_X962P192V3","features":[68]},{"name":"BCRYPT_ECC_CURVE_X962P239V1","features":[68]},{"name":"BCRYPT_ECC_CURVE_X962P239V2","features":[68]},{"name":"BCRYPT_ECC_CURVE_X962P239V3","features":[68]},{"name":"BCRYPT_ECC_CURVE_X962P256V1","features":[68]},{"name":"BCRYPT_ECC_FULLKEY_BLOB_V1","features":[68]},{"name":"BCRYPT_ECC_PARAMETERS","features":[68]},{"name":"BCRYPT_ECC_PARAMETERS_MAGIC","features":[68]},{"name":"BCRYPT_ECC_PRIME_MONTGOMERY_CURVE","features":[68]},{"name":"BCRYPT_ECC_PRIME_SHORT_WEIERSTRASS_CURVE","features":[68]},{"name":"BCRYPT_ECC_PRIME_TWISTED_EDWARDS_CURVE","features":[68]},{"name":"BCRYPT_ECDH_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDH_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDH_P256_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDH_P256_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDH_P384_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDH_P384_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDH_P521_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDH_P521_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDH_PRIVATE_GENERIC_MAGIC","features":[68]},{"name":"BCRYPT_ECDH_PRIVATE_P256_MAGIC","features":[68]},{"name":"BCRYPT_ECDH_PRIVATE_P384_MAGIC","features":[68]},{"name":"BCRYPT_ECDH_PRIVATE_P521_MAGIC","features":[68]},{"name":"BCRYPT_ECDH_PUBLIC_GENERIC_MAGIC","features":[68]},{"name":"BCRYPT_ECDH_PUBLIC_P256_MAGIC","features":[68]},{"name":"BCRYPT_ECDH_PUBLIC_P384_MAGIC","features":[68]},{"name":"BCRYPT_ECDH_PUBLIC_P521_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDSA_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDSA_P256_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDSA_P256_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDSA_P384_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDSA_P384_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDSA_P521_ALGORITHM","features":[68]},{"name":"BCRYPT_ECDSA_P521_ALG_HANDLE","features":[68]},{"name":"BCRYPT_ECDSA_PRIVATE_GENERIC_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_PRIVATE_P256_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_PRIVATE_P384_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_PRIVATE_P521_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_PUBLIC_GENERIC_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_PUBLIC_P256_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_PUBLIC_P384_MAGIC","features":[68]},{"name":"BCRYPT_ECDSA_PUBLIC_P521_MAGIC","features":[68]},{"name":"BCRYPT_EFFECTIVE_KEY_LENGTH","features":[68]},{"name":"BCRYPT_ENABLE_INCOMPATIBLE_FIPS_CHECKS","features":[68]},{"name":"BCRYPT_EXTENDED_KEYSIZE","features":[68]},{"name":"BCRYPT_FLAGS","features":[68]},{"name":"BCRYPT_GENERATE_IV","features":[68]},{"name":"BCRYPT_GLOBAL_PARAMETERS","features":[68]},{"name":"BCRYPT_HANDLE","features":[68]},{"name":"BCRYPT_HASH_BLOCK_LENGTH","features":[68]},{"name":"BCRYPT_HASH_HANDLE","features":[68]},{"name":"BCRYPT_HASH_INTERFACE","features":[68]},{"name":"BCRYPT_HASH_INTERFACE_MAJORVERSION_2","features":[68]},{"name":"BCRYPT_HASH_LENGTH","features":[68]},{"name":"BCRYPT_HASH_OID_LIST","features":[68]},{"name":"BCRYPT_HASH_OPERATION","features":[68]},{"name":"BCRYPT_HASH_OPERATION_FINISH_HASH","features":[68]},{"name":"BCRYPT_HASH_OPERATION_HASH_DATA","features":[68]},{"name":"BCRYPT_HASH_OPERATION_TYPE","features":[68]},{"name":"BCRYPT_HASH_REUSABLE_FLAG","features":[68]},{"name":"BCRYPT_HKDF_ALGORITHM","features":[68]},{"name":"BCRYPT_HKDF_ALG_HANDLE","features":[68]},{"name":"BCRYPT_HKDF_HASH_ALGORITHM","features":[68]},{"name":"BCRYPT_HKDF_PRK_AND_FINALIZE","features":[68]},{"name":"BCRYPT_HKDF_SALT_AND_FINALIZE","features":[68]},{"name":"BCRYPT_HMAC_MD2_ALG_HANDLE","features":[68]},{"name":"BCRYPT_HMAC_MD4_ALG_HANDLE","features":[68]},{"name":"BCRYPT_HMAC_MD5_ALG_HANDLE","features":[68]},{"name":"BCRYPT_HMAC_SHA1_ALG_HANDLE","features":[68]},{"name":"BCRYPT_HMAC_SHA256_ALG_HANDLE","features":[68]},{"name":"BCRYPT_HMAC_SHA384_ALG_HANDLE","features":[68]},{"name":"BCRYPT_HMAC_SHA512_ALG_HANDLE","features":[68]},{"name":"BCRYPT_INITIALIZATION_VECTOR","features":[68]},{"name":"BCRYPT_INTERFACE","features":[68]},{"name":"BCRYPT_INTERFACE_VERSION","features":[68]},{"name":"BCRYPT_IS_IFX_TPM_WEAK_KEY","features":[68]},{"name":"BCRYPT_IS_KEYED_HASH","features":[68]},{"name":"BCRYPT_IS_REUSABLE_HASH","features":[68]},{"name":"BCRYPT_KDF_HASH","features":[68]},{"name":"BCRYPT_KDF_HKDF","features":[68]},{"name":"BCRYPT_KDF_HMAC","features":[68]},{"name":"BCRYPT_KDF_RAW_SECRET","features":[68]},{"name":"BCRYPT_KDF_SP80056A_CONCAT","features":[68]},{"name":"BCRYPT_KDF_TLS_PRF","features":[68]},{"name":"BCRYPT_KEY_BLOB","features":[68]},{"name":"BCRYPT_KEY_DATA_BLOB","features":[68]},{"name":"BCRYPT_KEY_DATA_BLOB_HEADER","features":[68]},{"name":"BCRYPT_KEY_DATA_BLOB_MAGIC","features":[68]},{"name":"BCRYPT_KEY_DATA_BLOB_VERSION1","features":[68]},{"name":"BCRYPT_KEY_DERIVATION_INTERFACE","features":[68]},{"name":"BCRYPT_KEY_DERIVATION_OPERATION","features":[68]},{"name":"BCRYPT_KEY_HANDLE","features":[68]},{"name":"BCRYPT_KEY_LENGTH","features":[68]},{"name":"BCRYPT_KEY_LENGTHS","features":[68]},{"name":"BCRYPT_KEY_LENGTHS_STRUCT","features":[68]},{"name":"BCRYPT_KEY_OBJECT_LENGTH","features":[68]},{"name":"BCRYPT_KEY_STRENGTH","features":[68]},{"name":"BCRYPT_KEY_VALIDATION_RANGE","features":[68]},{"name":"BCRYPT_KEY_VALIDATION_RANGE_AND_ORDER","features":[68]},{"name":"BCRYPT_KEY_VALIDATION_REGENERATE","features":[68]},{"name":"BCRYPT_MD2_ALGORITHM","features":[68]},{"name":"BCRYPT_MD2_ALG_HANDLE","features":[68]},{"name":"BCRYPT_MD4_ALGORITHM","features":[68]},{"name":"BCRYPT_MD4_ALG_HANDLE","features":[68]},{"name":"BCRYPT_MD5_ALGORITHM","features":[68]},{"name":"BCRYPT_MD5_ALG_HANDLE","features":[68]},{"name":"BCRYPT_MESSAGE_BLOCK_LENGTH","features":[68]},{"name":"BCRYPT_MULTI_FLAG","features":[68]},{"name":"BCRYPT_MULTI_HASH_OPERATION","features":[68]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH","features":[68]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH_STRUCT","features":[68]},{"name":"BCRYPT_MULTI_OPERATION_TYPE","features":[68]},{"name":"BCRYPT_NO_CURVE_GENERATION_ALG_ID","features":[68]},{"name":"BCRYPT_NO_KEY_VALIDATION","features":[68]},{"name":"BCRYPT_OAEP_PADDING_INFO","features":[68]},{"name":"BCRYPT_OBJECT_ALIGNMENT","features":[68]},{"name":"BCRYPT_OBJECT_LENGTH","features":[68]},{"name":"BCRYPT_OID","features":[68]},{"name":"BCRYPT_OID_LIST","features":[68]},{"name":"BCRYPT_OPAQUE_KEY_BLOB","features":[68]},{"name":"BCRYPT_OPEN_ALGORITHM_PROVIDER_FLAGS","features":[68]},{"name":"BCRYPT_OPERATION","features":[68]},{"name":"BCRYPT_OPERATION_TYPE_HASH","features":[68]},{"name":"BCRYPT_PADDING_SCHEMES","features":[68]},{"name":"BCRYPT_PAD_NONE","features":[68]},{"name":"BCRYPT_PAD_OAEP","features":[68]},{"name":"BCRYPT_PAD_PKCS1","features":[68]},{"name":"BCRYPT_PAD_PKCS1_OPTIONAL_HASH_OID","features":[68]},{"name":"BCRYPT_PAD_PSS","features":[68]},{"name":"BCRYPT_PBKDF2_ALGORITHM","features":[68]},{"name":"BCRYPT_PBKDF2_ALG_HANDLE","features":[68]},{"name":"BCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[68]},{"name":"BCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[68]},{"name":"BCRYPT_PKCS1_PADDING_INFO","features":[68]},{"name":"BCRYPT_PRIMITIVE_TYPE","features":[68]},{"name":"BCRYPT_PRIVATE_KEY","features":[68]},{"name":"BCRYPT_PRIVATE_KEY_BLOB","features":[68]},{"name":"BCRYPT_PRIVATE_KEY_FLAG","features":[68]},{"name":"BCRYPT_PROVIDER_HANDLE","features":[68]},{"name":"BCRYPT_PROVIDER_NAME","features":[68]},{"name":"BCRYPT_PROV_DISPATCH","features":[68]},{"name":"BCRYPT_PSS_PADDING_INFO","features":[68]},{"name":"BCRYPT_PUBLIC_KEY_BLOB","features":[68]},{"name":"BCRYPT_PUBLIC_KEY_FLAG","features":[68]},{"name":"BCRYPT_PUBLIC_KEY_LENGTH","features":[68]},{"name":"BCRYPT_QUERY_PROVIDER_MODE","features":[68]},{"name":"BCRYPT_RC2_ALGORITHM","features":[68]},{"name":"BCRYPT_RC2_CBC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_RC2_CFB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_RC2_ECB_ALG_HANDLE","features":[68]},{"name":"BCRYPT_RC4_ALGORITHM","features":[68]},{"name":"BCRYPT_RC4_ALG_HANDLE","features":[68]},{"name":"BCRYPT_RESOLVE_PROVIDERS_FLAGS","features":[68]},{"name":"BCRYPT_RNG_ALGORITHM","features":[68]},{"name":"BCRYPT_RNG_ALG_HANDLE","features":[68]},{"name":"BCRYPT_RNG_DUAL_EC_ALGORITHM","features":[68]},{"name":"BCRYPT_RNG_FIPS186_DSA_ALGORITHM","features":[68]},{"name":"BCRYPT_RNG_INTERFACE","features":[68]},{"name":"BCRYPT_RNG_OPERATION","features":[68]},{"name":"BCRYPT_RNG_USE_ENTROPY_IN_BUFFER","features":[68]},{"name":"BCRYPT_RSAFULLPRIVATE_BLOB","features":[68]},{"name":"BCRYPT_RSAFULLPRIVATE_MAGIC","features":[68]},{"name":"BCRYPT_RSAKEY_BLOB","features":[68]},{"name":"BCRYPT_RSAKEY_BLOB_MAGIC","features":[68]},{"name":"BCRYPT_RSAPRIVATE_BLOB","features":[68]},{"name":"BCRYPT_RSAPRIVATE_MAGIC","features":[68]},{"name":"BCRYPT_RSAPUBLIC_BLOB","features":[68]},{"name":"BCRYPT_RSAPUBLIC_MAGIC","features":[68]},{"name":"BCRYPT_RSA_ALGORITHM","features":[68]},{"name":"BCRYPT_RSA_ALG_HANDLE","features":[68]},{"name":"BCRYPT_RSA_SIGN_ALGORITHM","features":[68]},{"name":"BCRYPT_RSA_SIGN_ALG_HANDLE","features":[68]},{"name":"BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[68]},{"name":"BCRYPT_SECRET_AGREEMENT_OPERATION","features":[68]},{"name":"BCRYPT_SECRET_HANDLE","features":[68]},{"name":"BCRYPT_SHA1_ALGORITHM","features":[68]},{"name":"BCRYPT_SHA1_ALG_HANDLE","features":[68]},{"name":"BCRYPT_SHA256_ALGORITHM","features":[68]},{"name":"BCRYPT_SHA256_ALG_HANDLE","features":[68]},{"name":"BCRYPT_SHA384_ALGORITHM","features":[68]},{"name":"BCRYPT_SHA384_ALG_HANDLE","features":[68]},{"name":"BCRYPT_SHA512_ALGORITHM","features":[68]},{"name":"BCRYPT_SHA512_ALG_HANDLE","features":[68]},{"name":"BCRYPT_SIGNATURE_INTERFACE","features":[68]},{"name":"BCRYPT_SIGNATURE_LENGTH","features":[68]},{"name":"BCRYPT_SIGNATURE_OPERATION","features":[68]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[68]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALG_HANDLE","features":[68]},{"name":"BCRYPT_SP80056A_CONCAT_ALGORITHM","features":[68]},{"name":"BCRYPT_SP80056A_CONCAT_ALG_HANDLE","features":[68]},{"name":"BCRYPT_SUPPORTED_PAD_OAEP","features":[68]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_ENC","features":[68]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_SIG","features":[68]},{"name":"BCRYPT_SUPPORTED_PAD_PSS","features":[68]},{"name":"BCRYPT_SUPPORTED_PAD_ROUTER","features":[68]},{"name":"BCRYPT_TABLE","features":[68]},{"name":"BCRYPT_TLS1_1_KDF_ALGORITHM","features":[68]},{"name":"BCRYPT_TLS1_1_KDF_ALG_HANDLE","features":[68]},{"name":"BCRYPT_TLS1_2_KDF_ALGORITHM","features":[68]},{"name":"BCRYPT_TLS1_2_KDF_ALG_HANDLE","features":[68]},{"name":"BCRYPT_TLS_CBC_HMAC_VERIFY_FLAG","features":[68]},{"name":"BCRYPT_USE_SYSTEM_PREFERRED_RNG","features":[68]},{"name":"BCRYPT_XTS_AES_ALGORITHM","features":[68]},{"name":"BCRYPT_XTS_AES_ALG_HANDLE","features":[68]},{"name":"BCryptAddContextFunction","features":[1,68]},{"name":"BCryptBuffer","features":[68]},{"name":"BCryptBufferDesc","features":[68]},{"name":"BCryptCloseAlgorithmProvider","features":[1,68]},{"name":"BCryptConfigureContext","features":[1,68]},{"name":"BCryptConfigureContextFunction","features":[1,68]},{"name":"BCryptCreateContext","features":[1,68]},{"name":"BCryptCreateHash","features":[1,68]},{"name":"BCryptCreateMultiHash","features":[1,68]},{"name":"BCryptDecrypt","features":[1,68]},{"name":"BCryptDeleteContext","features":[1,68]},{"name":"BCryptDeriveKey","features":[1,68]},{"name":"BCryptDeriveKeyCapi","features":[1,68]},{"name":"BCryptDeriveKeyPBKDF2","features":[1,68]},{"name":"BCryptDestroyHash","features":[1,68]},{"name":"BCryptDestroyKey","features":[1,68]},{"name":"BCryptDestroySecret","features":[1,68]},{"name":"BCryptDuplicateHash","features":[1,68]},{"name":"BCryptDuplicateKey","features":[1,68]},{"name":"BCryptEncrypt","features":[1,68]},{"name":"BCryptEnumAlgorithms","features":[1,68]},{"name":"BCryptEnumContextFunctionProviders","features":[1,68]},{"name":"BCryptEnumContextFunctions","features":[1,68]},{"name":"BCryptEnumContexts","features":[1,68]},{"name":"BCryptEnumProviders","features":[1,68]},{"name":"BCryptEnumRegisteredProviders","features":[1,68]},{"name":"BCryptExportKey","features":[1,68]},{"name":"BCryptFinalizeKeyPair","features":[1,68]},{"name":"BCryptFinishHash","features":[1,68]},{"name":"BCryptFreeBuffer","features":[68]},{"name":"BCryptGenRandom","features":[1,68]},{"name":"BCryptGenerateKeyPair","features":[1,68]},{"name":"BCryptGenerateSymmetricKey","features":[1,68]},{"name":"BCryptGetFipsAlgorithmMode","features":[1,68]},{"name":"BCryptGetProperty","features":[1,68]},{"name":"BCryptHash","features":[1,68]},{"name":"BCryptHashData","features":[1,68]},{"name":"BCryptImportKey","features":[1,68]},{"name":"BCryptImportKeyPair","features":[1,68]},{"name":"BCryptKeyDerivation","features":[1,68]},{"name":"BCryptOpenAlgorithmProvider","features":[1,68]},{"name":"BCryptProcessMultiOperations","features":[1,68]},{"name":"BCryptQueryContextConfiguration","features":[1,68]},{"name":"BCryptQueryContextFunctionConfiguration","features":[1,68]},{"name":"BCryptQueryContextFunctionProperty","features":[1,68]},{"name":"BCryptQueryProviderRegistration","features":[1,68]},{"name":"BCryptRegisterConfigChangeNotify","features":[1,68]},{"name":"BCryptRemoveContextFunction","features":[1,68]},{"name":"BCryptResolveProviders","features":[1,68]},{"name":"BCryptSecretAgreement","features":[1,68]},{"name":"BCryptSetContextFunctionProperty","features":[1,68]},{"name":"BCryptSetProperty","features":[1,68]},{"name":"BCryptSignHash","features":[1,68]},{"name":"BCryptUnregisterConfigChangeNotify","features":[1,68]},{"name":"BCryptVerifySignature","features":[1,68]},{"name":"CALG_3DES","features":[68]},{"name":"CALG_3DES_112","features":[68]},{"name":"CALG_AES","features":[68]},{"name":"CALG_AES_128","features":[68]},{"name":"CALG_AES_192","features":[68]},{"name":"CALG_AES_256","features":[68]},{"name":"CALG_AGREEDKEY_ANY","features":[68]},{"name":"CALG_CYLINK_MEK","features":[68]},{"name":"CALG_DES","features":[68]},{"name":"CALG_DESX","features":[68]},{"name":"CALG_DH_EPHEM","features":[68]},{"name":"CALG_DH_SF","features":[68]},{"name":"CALG_DSS_SIGN","features":[68]},{"name":"CALG_ECDH","features":[68]},{"name":"CALG_ECDH_EPHEM","features":[68]},{"name":"CALG_ECDSA","features":[68]},{"name":"CALG_ECMQV","features":[68]},{"name":"CALG_HASH_REPLACE_OWF","features":[68]},{"name":"CALG_HMAC","features":[68]},{"name":"CALG_HUGHES_MD5","features":[68]},{"name":"CALG_KEA_KEYX","features":[68]},{"name":"CALG_MAC","features":[68]},{"name":"CALG_MD2","features":[68]},{"name":"CALG_MD4","features":[68]},{"name":"CALG_MD5","features":[68]},{"name":"CALG_NO_SIGN","features":[68]},{"name":"CALG_NULLCIPHER","features":[68]},{"name":"CALG_OID_INFO_CNG_ONLY","features":[68]},{"name":"CALG_OID_INFO_PARAMETERS","features":[68]},{"name":"CALG_PCT1_MASTER","features":[68]},{"name":"CALG_RC2","features":[68]},{"name":"CALG_RC4","features":[68]},{"name":"CALG_RC5","features":[68]},{"name":"CALG_RSA_KEYX","features":[68]},{"name":"CALG_RSA_SIGN","features":[68]},{"name":"CALG_SCHANNEL_ENC_KEY","features":[68]},{"name":"CALG_SCHANNEL_MAC_KEY","features":[68]},{"name":"CALG_SCHANNEL_MASTER_HASH","features":[68]},{"name":"CALG_SEAL","features":[68]},{"name":"CALG_SHA","features":[68]},{"name":"CALG_SHA1","features":[68]},{"name":"CALG_SHA_256","features":[68]},{"name":"CALG_SHA_384","features":[68]},{"name":"CALG_SHA_512","features":[68]},{"name":"CALG_SKIPJACK","features":[68]},{"name":"CALG_SSL2_MASTER","features":[68]},{"name":"CALG_SSL3_MASTER","features":[68]},{"name":"CALG_SSL3_SHAMD5","features":[68]},{"name":"CALG_TEK","features":[68]},{"name":"CALG_THIRDPARTY_CIPHER","features":[68]},{"name":"CALG_THIRDPARTY_HASH","features":[68]},{"name":"CALG_THIRDPARTY_KEY_EXCHANGE","features":[68]},{"name":"CALG_THIRDPARTY_SIGNATURE","features":[68]},{"name":"CALG_TLS1PRF","features":[68]},{"name":"CALG_TLS1_MASTER","features":[68]},{"name":"CASetupProperty","features":[68]},{"name":"CCertSrvSetup","features":[68]},{"name":"CCertSrvSetupKeyInformation","features":[68]},{"name":"CCertificateEnrollmentPolicyServerSetup","features":[68]},{"name":"CCertificateEnrollmentServerSetup","features":[68]},{"name":"CEPSetupProperty","features":[68]},{"name":"CERTIFICATE_CHAIN_BLOB","features":[68]},{"name":"CERT_ACCESS_DESCRIPTION","features":[68]},{"name":"CERT_ACCESS_STATE_GP_SYSTEM_STORE_FLAG","features":[68]},{"name":"CERT_ACCESS_STATE_LM_SYSTEM_STORE_FLAG","features":[68]},{"name":"CERT_ACCESS_STATE_PROP_ID","features":[68]},{"name":"CERT_ACCESS_STATE_SHARED_USER_FLAG","features":[68]},{"name":"CERT_ACCESS_STATE_SYSTEM_STORE_FLAG","features":[68]},{"name":"CERT_ACCESS_STATE_WRITE_PERSIST_FLAG","features":[68]},{"name":"CERT_AIA_URL_RETRIEVED_PROP_ID","features":[68]},{"name":"CERT_ALT_NAME_EDI_PARTY_NAME","features":[68]},{"name":"CERT_ALT_NAME_ENTRY","features":[68]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_MASK","features":[68]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_SHIFT","features":[68]},{"name":"CERT_ALT_NAME_INFO","features":[68]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_MASK","features":[68]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_SHIFT","features":[68]},{"name":"CERT_ALT_NAME_X400_ADDRESS","features":[68]},{"name":"CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[68]},{"name":"CERT_ARCHIVED_PROP_ID","features":[68]},{"name":"CERT_AUTHORITY_INFO_ACCESS","features":[68]},{"name":"CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[68]},{"name":"CERT_AUTHORITY_KEY_ID2_INFO","features":[68]},{"name":"CERT_AUTHORITY_KEY_ID_INFO","features":[68]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_PARTIAL_CHAIN_LOGGING_FLAG","features":[68]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_UNTRUSTED_ROOT_LOGGING_FLAG","features":[68]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[68]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_FLAGS_VALUE_NAME","features":[68]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[68]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[68]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[68]},{"name":"CERT_AUTH_ROOT_CAB_FILENAME","features":[68]},{"name":"CERT_AUTH_ROOT_CERT_EXT","features":[68]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME","features":[68]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME_A","features":[68]},{"name":"CERT_AUTH_ROOT_SEQ_FILENAME","features":[68]},{"name":"CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[68]},{"name":"CERT_AUTO_ENROLL_PROP_ID","features":[68]},{"name":"CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[68]},{"name":"CERT_AUTO_UPDATE_DISABLE_RANDOM_QUERY_STRING_FLAG","features":[68]},{"name":"CERT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[68]},{"name":"CERT_AUTO_UPDATE_SYNC_FROM_DIR_URL_VALUE_NAME","features":[68]},{"name":"CERT_BACKED_UP_PROP_ID","features":[68]},{"name":"CERT_BASIC_CONSTRAINTS2_INFO","features":[1,68]},{"name":"CERT_BASIC_CONSTRAINTS_INFO","features":[1,68]},{"name":"CERT_BIOMETRIC_DATA","features":[68]},{"name":"CERT_BIOMETRIC_DATA_TYPE","features":[68]},{"name":"CERT_BIOMETRIC_EXT_INFO","features":[68]},{"name":"CERT_BIOMETRIC_OID_DATA_CHOICE","features":[68]},{"name":"CERT_BIOMETRIC_PICTURE_TYPE","features":[68]},{"name":"CERT_BIOMETRIC_PREDEFINED_DATA_CHOICE","features":[68]},{"name":"CERT_BIOMETRIC_SIGNATURE_TYPE","features":[68]},{"name":"CERT_BUNDLE_CERTIFICATE","features":[68]},{"name":"CERT_BUNDLE_CRL","features":[68]},{"name":"CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG","features":[68]},{"name":"CERT_CA_DISABLE_CRL_PROP_ID","features":[68]},{"name":"CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[68]},{"name":"CERT_CA_SUBJECT_FLAG","features":[68]},{"name":"CERT_CEP_PROP_ID","features":[68]},{"name":"CERT_CHAIN","features":[68]},{"name":"CERT_CHAIN_AUTO_CURRENT_USER","features":[68]},{"name":"CERT_CHAIN_AUTO_FLAGS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_AUTO_FLUSH_DISABLE_FLAG","features":[68]},{"name":"CERT_CHAIN_AUTO_FLUSH_FIRST_DELTA_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_AUTO_FLUSH_NEXT_DELTA_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_AUTO_HPKP_RULE_INFO","features":[68]},{"name":"CERT_CHAIN_AUTO_IMPERSONATED","features":[68]},{"name":"CERT_CHAIN_AUTO_LOCAL_MACHINE","features":[68]},{"name":"CERT_CHAIN_AUTO_LOG_CREATE_FLAG","features":[68]},{"name":"CERT_CHAIN_AUTO_LOG_FILE_NAME_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_AUTO_LOG_FLUSH_FLAG","features":[68]},{"name":"CERT_CHAIN_AUTO_LOG_FREE_FLAG","features":[68]},{"name":"CERT_CHAIN_AUTO_NETWORK_INFO","features":[68]},{"name":"CERT_CHAIN_AUTO_PINRULE_INFO","features":[68]},{"name":"CERT_CHAIN_AUTO_PROCESS_INFO","features":[68]},{"name":"CERT_CHAIN_AUTO_SERIAL_LOCAL_MACHINE","features":[68]},{"name":"CERT_CHAIN_CACHE_END_CERT","features":[68]},{"name":"CERT_CHAIN_CACHE_ONLY_URL_RETRIEVAL","features":[68]},{"name":"CERT_CHAIN_CACHE_RESYNC_FILETIME_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_CONFIG_REGPATH","features":[68]},{"name":"CERT_CHAIN_CONTEXT","features":[1,68]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_DEFAULT","features":[68]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_CROSS_CERT_DOWNLOAD_INTERVAL_HOURS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_DEFAULT_CONFIG_SUBDIR","features":[68]},{"name":"CERT_CHAIN_DISABLE_AIA","features":[68]},{"name":"CERT_CHAIN_DISABLE_AIA_URL_RETRIEVAL_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_DISABLE_ALL_EKU_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_AUTH_ROOT_AUTO_UPDATE","features":[68]},{"name":"CERT_CHAIN_DISABLE_AUTO_FLUSH_PROCESS_NAME_LIST_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_DISABLE_CA_NAME_CONSTRAINTS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_DISABLE_CODE_SIGNING_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_ECC_PARA_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_FILE_HASH_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_MANDATORY_BASIC_CONSTRAINTS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_DISABLE_MD2_MD4","features":[68]},{"name":"CERT_CHAIN_DISABLE_MOTW_CODE_SIGNING_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_MOTW_FILE_HASH_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_HASH_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_MY_PEER_TRUST","features":[68]},{"name":"CERT_CHAIN_DISABLE_OPT_IN_SERVER_AUTH_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_PASS1_QUALITY_FILTERING","features":[68]},{"name":"CERT_CHAIN_DISABLE_SERIAL_CHAIN_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_DISABLE_SERVER_AUTH_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_SYNC_WITH_SSL_TIME_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_HASH_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_DISABLE_UNSUPPORTED_CRITICAL_EXTENSIONS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_ELEMENT","features":[1,68]},{"name":"CERT_CHAIN_ENABLE_ALL_EKU_HYGIENE_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_CACHE_AUTO_UPDATE","features":[68]},{"name":"CERT_CHAIN_ENABLE_CODE_SIGNING_HYGIENE_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_DISALLOWED_CA","features":[68]},{"name":"CERT_CHAIN_ENABLE_MD2_MD4_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_MOTW_CODE_SIGNING_HYGIENE_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_MOTW_TIMESTAMP_HYGIENE_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_ONLY_WEAK_LOGGING_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_PEER_TRUST","features":[68]},{"name":"CERT_CHAIN_ENABLE_SERVER_AUTH_HYGIENE_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_SHARE_STORE","features":[68]},{"name":"CERT_CHAIN_ENABLE_TIMESTAMP_HYGIENE_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_WEAK_LOGGING_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_WEAK_RSA_ROOT_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_WEAK_SETTINGS_FLAG","features":[68]},{"name":"CERT_CHAIN_ENABLE_WEAK_SIGNATURE_FLAGS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_ENGINE_CONFIG","features":[68]},{"name":"CERT_CHAIN_EXCLUSIVE_ENABLE_CA_FLAG","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG","features":[68]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_PARA","features":[1,68]},{"name":"CERT_CHAIN_HAS_MOTW","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_DEFAULT","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_DEFAULT","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_DEFAULT","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_DEFAULT","features":[68]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DEFAULT","features":[68]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DISABLE","features":[68]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_MAX_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_MIN_PUB_KEY_BIT_LENGTH_DISABLE","features":[68]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DEFAULT","features":[68]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DISABLE","features":[68]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_MOTW_IGNORE_AFTER_TIME_WEAK_FLAG","features":[68]},{"name":"CERT_CHAIN_OCSP_VALIDITY_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_ONLY_ADDITIONAL_AND_AUTH_ROOT","features":[68]},{"name":"CERT_CHAIN_OPTIONS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_OPTION_DISABLE_AIA_URL_RETRIEVAL","features":[68]},{"name":"CERT_CHAIN_OPTION_ENABLE_SIA_URL_RETRIEVAL","features":[68]},{"name":"CERT_CHAIN_OPT_IN_WEAK_FLAGS","features":[68]},{"name":"CERT_CHAIN_OPT_IN_WEAK_SIGNATURE","features":[68]},{"name":"CERT_CHAIN_PARA","features":[68]},{"name":"CERT_CHAIN_POLICY_ALLOW_TESTROOT_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_ALLOW_UNKNOWN_CA_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE","features":[68]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE_TS","features":[68]},{"name":"CERT_CHAIN_POLICY_BASE","features":[68]},{"name":"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS","features":[68]},{"name":"CERT_CHAIN_POLICY_EV","features":[68]},{"name":"CERT_CHAIN_POLICY_FLAGS","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_NOT_TIME_VALID_FLAGS","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_REV_UNKNOWN_FLAGS","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_CA_REV_UNKNOWN_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_NOT_TIME_VALID_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_SIGNER_REV_UNKNOWN_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_END_REV_UNKNOWN_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_BASIC_CONSTRAINTS_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_NAME_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_POLICY_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_SUPPORTED_CRITICAL_EXT_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_NESTED_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_VALID_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_PEER_TRUST_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_ROOT_REV_UNKNOWN_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_WEAK_SIGNATURE_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_IGNORE_WRONG_USAGE_FLAG","features":[68]},{"name":"CERT_CHAIN_POLICY_MICROSOFT_ROOT","features":[68]},{"name":"CERT_CHAIN_POLICY_NT_AUTH","features":[68]},{"name":"CERT_CHAIN_POLICY_PARA","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_F12","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ERROR_LEVEL","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_F12_NONE_CATEGORY","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ROOT_PROGRAM_CATEGORY","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_F12_SUCCESS_LEVEL","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WARNING_LEVEL","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WEAK_CRYPTO_CATEGORY","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_HPKP_HEADER","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_ERROR","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_WARNING","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_ERROR","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_WARNING","features":[68]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_SUCCESS","features":[68]},{"name":"CERT_CHAIN_POLICY_STATUS","features":[68]},{"name":"CERT_CHAIN_POLICY_THIRD_PARTY_ROOT","features":[68]},{"name":"CERT_CHAIN_POLICY_TRUST_TESTROOT_FLAG","features":[68]},{"name":"CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS","features":[68]},{"name":"CERT_CHAIN_REVOCATION_ACCUMULATIVE_TIMEOUT","features":[68]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CACHE_ONLY","features":[68]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN","features":[68]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[68]},{"name":"CERT_CHAIN_REVOCATION_CHECK_END_CERT","features":[68]},{"name":"CERT_CHAIN_REVOCATION_CHECK_OCSP_CERT","features":[68]},{"name":"CERT_CHAIN_REV_ACCUMULATIVE_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_SERIAL_CHAIN_LOG_FILE_NAME_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_SSL_HANDSHAKE_LOG_FILE_NAME_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_STRONG_SIGN_DISABLE_END_CHECK_FLAG","features":[68]},{"name":"CERT_CHAIN_THREAD_STORE_SYNC","features":[68]},{"name":"CERT_CHAIN_TIMESTAMP_TIME","features":[68]},{"name":"CERT_CHAIN_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_USE_LOCAL_MACHINE_STORE","features":[68]},{"name":"CERT_CHAIN_WEAK_AFTER_TIME_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_ALL_CONFIG_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_FILE_HASH_AFTER_TIME_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_FLAGS_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_HYGIENE_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_MIN_BIT_LENGTH_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_PREFIX_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_RSA_PUB_KEY_TIME_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_SHA256_ALLOW_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_SIGNATURE_LOG_DIR_VALUE_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_THIRD_PARTY_CONFIG_NAME","features":[68]},{"name":"CERT_CHAIN_WEAK_TIMESTAMP_HASH_AFTER_TIME_NAME","features":[68]},{"name":"CERT_CLOSE_STORE_CHECK_FLAG","features":[68]},{"name":"CERT_CLOSE_STORE_FORCE_FLAG","features":[68]},{"name":"CERT_CLR_DELETE_KEY_PROP_ID","features":[68]},{"name":"CERT_COMPARE_ANY","features":[68]},{"name":"CERT_COMPARE_ATTR","features":[68]},{"name":"CERT_COMPARE_CERT_ID","features":[68]},{"name":"CERT_COMPARE_CROSS_CERT_DIST_POINTS","features":[68]},{"name":"CERT_COMPARE_CTL_USAGE","features":[68]},{"name":"CERT_COMPARE_ENHKEY_USAGE","features":[68]},{"name":"CERT_COMPARE_EXISTING","features":[68]},{"name":"CERT_COMPARE_HASH","features":[68]},{"name":"CERT_COMPARE_HASH_STR","features":[68]},{"name":"CERT_COMPARE_HAS_PRIVATE_KEY","features":[68]},{"name":"CERT_COMPARE_ISSUER_OF","features":[68]},{"name":"CERT_COMPARE_KEY_IDENTIFIER","features":[68]},{"name":"CERT_COMPARE_KEY_SPEC","features":[68]},{"name":"CERT_COMPARE_MASK","features":[68]},{"name":"CERT_COMPARE_MD5_HASH","features":[68]},{"name":"CERT_COMPARE_NAME","features":[68]},{"name":"CERT_COMPARE_NAME_STR_A","features":[68]},{"name":"CERT_COMPARE_NAME_STR_W","features":[68]},{"name":"CERT_COMPARE_PROPERTY","features":[68]},{"name":"CERT_COMPARE_PUBKEY_MD5_HASH","features":[68]},{"name":"CERT_COMPARE_PUBLIC_KEY","features":[68]},{"name":"CERT_COMPARE_SHA1_HASH","features":[68]},{"name":"CERT_COMPARE_SHIFT","features":[68]},{"name":"CERT_COMPARE_SIGNATURE_HASH","features":[68]},{"name":"CERT_COMPARE_SUBJECT_CERT","features":[68]},{"name":"CERT_COMPARE_SUBJECT_INFO_ACCESS","features":[68]},{"name":"CERT_CONTEXT","features":[1,68]},{"name":"CERT_CONTEXT_REVOCATION_TYPE","features":[68]},{"name":"CERT_CONTROL_STORE_FLAGS","features":[68]},{"name":"CERT_CREATE_CONTEXT_NOCOPY_FLAG","features":[68]},{"name":"CERT_CREATE_CONTEXT_NO_ENTRY_FLAG","features":[68]},{"name":"CERT_CREATE_CONTEXT_NO_HCRYPTMSG_FLAG","features":[68]},{"name":"CERT_CREATE_CONTEXT_PARA","features":[1,68]},{"name":"CERT_CREATE_CONTEXT_SORTED_FLAG","features":[68]},{"name":"CERT_CREATE_SELFSIGN_FLAGS","features":[68]},{"name":"CERT_CREATE_SELFSIGN_NO_KEY_INFO","features":[68]},{"name":"CERT_CREATE_SELFSIGN_NO_SIGN","features":[68]},{"name":"CERT_CRL_CONTEXT_PAIR","features":[1,68]},{"name":"CERT_CRL_SIGN_KEY_USAGE","features":[68]},{"name":"CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[68]},{"name":"CERT_CTL_USAGE_PROP_ID","features":[68]},{"name":"CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[68]},{"name":"CERT_DATE_STAMP_PROP_ID","features":[68]},{"name":"CERT_DECIPHER_ONLY_KEY_USAGE","features":[68]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_SIGN","features":[68]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_XCHG","features":[68]},{"name":"CERT_DESCRIPTION_PROP_ID","features":[68]},{"name":"CERT_DH_PARAMETERS","features":[68]},{"name":"CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[68]},{"name":"CERT_DISABLE_PIN_RULES_AUTO_UPDATE_VALUE_NAME","features":[68]},{"name":"CERT_DISABLE_ROOT_AUTO_UPDATE_VALUE_NAME","features":[68]},{"name":"CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[68]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[68]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[68]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LIST_IDENTIFIER","features":[68]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[68]},{"name":"CERT_DISALLOWED_CERT_CAB_FILENAME","features":[68]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME","features":[68]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME_A","features":[68]},{"name":"CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[68]},{"name":"CERT_DISALLOWED_FILETIME_PROP_ID","features":[68]},{"name":"CERT_DSS_PARAMETERS","features":[68]},{"name":"CERT_DSS_R_LEN","features":[68]},{"name":"CERT_DSS_S_LEN","features":[68]},{"name":"CERT_ECC_SIGNATURE","features":[68]},{"name":"CERT_EFSBLOB_VALUE_NAME","features":[68]},{"name":"CERT_EFS_PROP_ID","features":[68]},{"name":"CERT_ENABLE_DISALLOWED_CERT_AUTO_UPDATE_VALUE_NAME","features":[68]},{"name":"CERT_ENCIPHER_ONLY_KEY_USAGE","features":[68]},{"name":"CERT_ENCODING_TYPE_MASK","features":[68]},{"name":"CERT_END_ENTITY_SUBJECT_FLAG","features":[68]},{"name":"CERT_ENHKEY_USAGE_PROP_ID","features":[68]},{"name":"CERT_ENROLLMENT_PROP_ID","features":[68]},{"name":"CERT_EXCLUDED_SUBTREE_BIT","features":[68]},{"name":"CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[68]},{"name":"CERT_EXTENSION","features":[1,68]},{"name":"CERT_EXTENSIONS","features":[1,68]},{"name":"CERT_FILE_HASH_USE_TYPE","features":[68]},{"name":"CERT_FILE_STORE_COMMIT_ENABLE_FLAG","features":[68]},{"name":"CERT_FIND_ANY","features":[68]},{"name":"CERT_FIND_CERT_ID","features":[68]},{"name":"CERT_FIND_CHAIN_IN_STORE_FLAGS","features":[68]},{"name":"CERT_FIND_CROSS_CERT_DIST_POINTS","features":[68]},{"name":"CERT_FIND_CTL_USAGE","features":[68]},{"name":"CERT_FIND_ENHKEY_USAGE","features":[68]},{"name":"CERT_FIND_EXISTING","features":[68]},{"name":"CERT_FIND_EXT_ONLY_CTL_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_FLAGS","features":[68]},{"name":"CERT_FIND_HASH","features":[68]},{"name":"CERT_FIND_HASH_STR","features":[68]},{"name":"CERT_FIND_HAS_PRIVATE_KEY","features":[68]},{"name":"CERT_FIND_ISSUER_ATTR","features":[68]},{"name":"CERT_FIND_ISSUER_NAME","features":[68]},{"name":"CERT_FIND_ISSUER_OF","features":[68]},{"name":"CERT_FIND_ISSUER_STR","features":[68]},{"name":"CERT_FIND_ISSUER_STR_A","features":[68]},{"name":"CERT_FIND_ISSUER_STR_W","features":[68]},{"name":"CERT_FIND_KEY_IDENTIFIER","features":[68]},{"name":"CERT_FIND_KEY_SPEC","features":[68]},{"name":"CERT_FIND_MD5_HASH","features":[68]},{"name":"CERT_FIND_NO_CTL_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_NO_ENHKEY_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_OPTIONAL_CTL_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_OR_CTL_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_OR_ENHKEY_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_PROPERTY","features":[68]},{"name":"CERT_FIND_PROP_ONLY_CTL_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_PUBKEY_MD5_HASH","features":[68]},{"name":"CERT_FIND_PUBLIC_KEY","features":[68]},{"name":"CERT_FIND_SHA1_HASH","features":[68]},{"name":"CERT_FIND_SIGNATURE_HASH","features":[68]},{"name":"CERT_FIND_SUBJECT_ATTR","features":[68]},{"name":"CERT_FIND_SUBJECT_CERT","features":[68]},{"name":"CERT_FIND_SUBJECT_INFO_ACCESS","features":[68]},{"name":"CERT_FIND_SUBJECT_NAME","features":[68]},{"name":"CERT_FIND_SUBJECT_STR","features":[68]},{"name":"CERT_FIND_SUBJECT_STR_A","features":[68]},{"name":"CERT_FIND_SUBJECT_STR_W","features":[68]},{"name":"CERT_FIND_TYPE","features":[68]},{"name":"CERT_FIND_VALID_CTL_USAGE_FLAG","features":[68]},{"name":"CERT_FIND_VALID_ENHKEY_USAGE_FLAG","features":[68]},{"name":"CERT_FIRST_RESERVED_PROP_ID","features":[68]},{"name":"CERT_FIRST_USER_PROP_ID","features":[68]},{"name":"CERT_FORTEZZA_DATA_PROP","features":[68]},{"name":"CERT_FORTEZZA_DATA_PROP_ID","features":[68]},{"name":"CERT_FRIENDLY_NAME_PROP_ID","features":[68]},{"name":"CERT_GENERAL_SUBTREE","features":[1,68]},{"name":"CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH","features":[68]},{"name":"CERT_HASHED_URL","features":[68]},{"name":"CERT_HASH_PROP_ID","features":[68]},{"name":"CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[68]},{"name":"CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[68]},{"name":"CERT_ID","features":[68]},{"name":"CERT_ID_ISSUER_SERIAL_NUMBER","features":[68]},{"name":"CERT_ID_KEY_IDENTIFIER","features":[68]},{"name":"CERT_ID_OPTION","features":[68]},{"name":"CERT_ID_SHA1_HASH","features":[68]},{"name":"CERT_IE30_RESERVED_PROP_ID","features":[68]},{"name":"CERT_IE_DIRTY_FLAGS_REGPATH","features":[68]},{"name":"CERT_INFO","features":[1,68]},{"name":"CERT_INFO_EXTENSION_FLAG","features":[68]},{"name":"CERT_INFO_ISSUER_FLAG","features":[68]},{"name":"CERT_INFO_ISSUER_UNIQUE_ID_FLAG","features":[68]},{"name":"CERT_INFO_NOT_AFTER_FLAG","features":[68]},{"name":"CERT_INFO_NOT_BEFORE_FLAG","features":[68]},{"name":"CERT_INFO_SERIAL_NUMBER_FLAG","features":[68]},{"name":"CERT_INFO_SIGNATURE_ALGORITHM_FLAG","features":[68]},{"name":"CERT_INFO_SUBJECT_FLAG","features":[68]},{"name":"CERT_INFO_SUBJECT_PUBLIC_KEY_INFO_FLAG","features":[68]},{"name":"CERT_INFO_SUBJECT_UNIQUE_ID_FLAG","features":[68]},{"name":"CERT_INFO_VERSION_FLAG","features":[68]},{"name":"CERT_ISOLATED_KEY_PROP_ID","features":[68]},{"name":"CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[68]},{"name":"CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[68]},{"name":"CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[68]},{"name":"CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[68]},{"name":"CERT_ISSUER_SERIAL_NUMBER","features":[68]},{"name":"CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[68]},{"name":"CERT_KEYGEN_REQUEST_INFO","features":[68]},{"name":"CERT_KEYGEN_REQUEST_V1","features":[68]},{"name":"CERT_KEY_AGREEMENT_KEY_USAGE","features":[68]},{"name":"CERT_KEY_ATTRIBUTES_INFO","features":[1,68]},{"name":"CERT_KEY_CERT_SIGN_KEY_USAGE","features":[68]},{"name":"CERT_KEY_CLASSIFICATION_PROP_ID","features":[68]},{"name":"CERT_KEY_CONTEXT","features":[68]},{"name":"CERT_KEY_CONTEXT_PROP_ID","features":[68]},{"name":"CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[68]},{"name":"CERT_KEY_IDENTIFIER_PROP_ID","features":[68]},{"name":"CERT_KEY_PROV_HANDLE_PROP_ID","features":[68]},{"name":"CERT_KEY_PROV_INFO_PROP_ID","features":[68]},{"name":"CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[68]},{"name":"CERT_KEY_SPEC","features":[68]},{"name":"CERT_KEY_SPEC_PROP_ID","features":[68]},{"name":"CERT_KEY_USAGE_RESTRICTION_INFO","features":[68]},{"name":"CERT_LAST_RESERVED_PROP_ID","features":[68]},{"name":"CERT_LAST_USER_PROP_ID","features":[68]},{"name":"CERT_LDAP_STORE_AREC_EXCLUSIVE_FLAG","features":[68]},{"name":"CERT_LDAP_STORE_OPENED_FLAG","features":[68]},{"name":"CERT_LDAP_STORE_OPENED_PARA","features":[68]},{"name":"CERT_LDAP_STORE_SIGN_FLAG","features":[68]},{"name":"CERT_LDAP_STORE_UNBIND_FLAG","features":[68]},{"name":"CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH","features":[68]},{"name":"CERT_LOGOTYPE_AUDIO","features":[68]},{"name":"CERT_LOGOTYPE_AUDIO_INFO","features":[68]},{"name":"CERT_LOGOTYPE_BITS_IMAGE_RESOLUTION_CHOICE","features":[68]},{"name":"CERT_LOGOTYPE_CHOICE","features":[68]},{"name":"CERT_LOGOTYPE_COLOR_IMAGE_INFO_CHOICE","features":[68]},{"name":"CERT_LOGOTYPE_DATA","features":[68]},{"name":"CERT_LOGOTYPE_DETAILS","features":[68]},{"name":"CERT_LOGOTYPE_DIRECT_INFO_CHOICE","features":[68]},{"name":"CERT_LOGOTYPE_EXT_INFO","features":[68]},{"name":"CERT_LOGOTYPE_GRAY_SCALE_IMAGE_INFO_CHOICE","features":[68]},{"name":"CERT_LOGOTYPE_IMAGE","features":[68]},{"name":"CERT_LOGOTYPE_IMAGE_INFO","features":[68]},{"name":"CERT_LOGOTYPE_IMAGE_INFO_TYPE","features":[68]},{"name":"CERT_LOGOTYPE_INDIRECT_INFO_CHOICE","features":[68]},{"name":"CERT_LOGOTYPE_INFO","features":[68]},{"name":"CERT_LOGOTYPE_NO_IMAGE_RESOLUTION_CHOICE","features":[68]},{"name":"CERT_LOGOTYPE_OPTION","features":[68]},{"name":"CERT_LOGOTYPE_REFERENCE","features":[68]},{"name":"CERT_LOGOTYPE_TABLE_SIZE_IMAGE_RESOLUTION_CHOICE","features":[68]},{"name":"CERT_MD5_HASH_PROP_ID","features":[68]},{"name":"CERT_NAME_ATTR_TYPE","features":[68]},{"name":"CERT_NAME_CONSTRAINTS_INFO","features":[1,68]},{"name":"CERT_NAME_DISABLE_IE4_UTF8_FLAG","features":[68]},{"name":"CERT_NAME_DNS_TYPE","features":[68]},{"name":"CERT_NAME_EMAIL_TYPE","features":[68]},{"name":"CERT_NAME_FRIENDLY_DISPLAY_TYPE","features":[68]},{"name":"CERT_NAME_INFO","features":[68]},{"name":"CERT_NAME_ISSUER_FLAG","features":[68]},{"name":"CERT_NAME_RDN_TYPE","features":[68]},{"name":"CERT_NAME_SEARCH_ALL_NAMES_FLAG","features":[68]},{"name":"CERT_NAME_SIMPLE_DISPLAY_TYPE","features":[68]},{"name":"CERT_NAME_STR_COMMA_FLAG","features":[68]},{"name":"CERT_NAME_STR_CRLF_FLAG","features":[68]},{"name":"CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[68]},{"name":"CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[68]},{"name":"CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[68]},{"name":"CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[68]},{"name":"CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[68]},{"name":"CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[68]},{"name":"CERT_NAME_STR_FORWARD_FLAG","features":[68]},{"name":"CERT_NAME_STR_NO_PLUS_FLAG","features":[68]},{"name":"CERT_NAME_STR_NO_QUOTING_FLAG","features":[68]},{"name":"CERT_NAME_STR_REVERSE_FLAG","features":[68]},{"name":"CERT_NAME_STR_SEMICOLON_FLAG","features":[68]},{"name":"CERT_NAME_UPN_TYPE","features":[68]},{"name":"CERT_NAME_URL_TYPE","features":[68]},{"name":"CERT_NAME_VALUE","features":[68]},{"name":"CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[68]},{"name":"CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[68]},{"name":"CERT_NCRYPT_KEY_SPEC","features":[68]},{"name":"CERT_NEW_KEY_PROP_ID","features":[68]},{"name":"CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[68]},{"name":"CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[68]},{"name":"CERT_NON_REPUDIATION_KEY_USAGE","features":[68]},{"name":"CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[68]},{"name":"CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[68]},{"name":"CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[68]},{"name":"CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[68]},{"name":"CERT_OCM_SUBCOMPONENTS_LOCAL_MACHINE_REGPATH","features":[68]},{"name":"CERT_OCM_SUBCOMPONENTS_ROOT_AUTO_UPDATE_VALUE_NAME","features":[68]},{"name":"CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[68]},{"name":"CERT_OCSP_MUST_STAPLE_PROP_ID","features":[68]},{"name":"CERT_OCSP_RESPONSE_PROP_ID","features":[68]},{"name":"CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[68]},{"name":"CERT_OID_NAME_STR","features":[68]},{"name":"CERT_OPEN_STORE_FLAGS","features":[68]},{"name":"CERT_OR_CRL_BLOB","features":[68]},{"name":"CERT_OR_CRL_BUNDLE","features":[68]},{"name":"CERT_OTHER_LOGOTYPE_INFO","features":[68]},{"name":"CERT_OTHER_NAME","features":[68]},{"name":"CERT_PAIR","features":[68]},{"name":"CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG","features":[68]},{"name":"CERT_PHYSICAL_STORE_AUTH_ROOT_NAME","features":[68]},{"name":"CERT_PHYSICAL_STORE_DEFAULT_NAME","features":[68]},{"name":"CERT_PHYSICAL_STORE_DS_USER_CERTIFICATE_NAME","features":[68]},{"name":"CERT_PHYSICAL_STORE_ENTERPRISE_NAME","features":[68]},{"name":"CERT_PHYSICAL_STORE_GROUP_POLICY_NAME","features":[68]},{"name":"CERT_PHYSICAL_STORE_INFO","features":[68]},{"name":"CERT_PHYSICAL_STORE_INSERT_COMPUTER_NAME_ENABLE_FLAG","features":[68]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_GROUP_POLICY_NAME","features":[68]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_NAME","features":[68]},{"name":"CERT_PHYSICAL_STORE_OPEN_DISABLE_FLAG","features":[68]},{"name":"CERT_PHYSICAL_STORE_PREDEFINED_ENUM_FLAG","features":[68]},{"name":"CERT_PHYSICAL_STORE_REMOTE_OPEN_DISABLE_FLAG","features":[68]},{"name":"CERT_PHYSICAL_STORE_SMART_CARD_NAME","features":[68]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[68]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[68]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LIST_IDENTIFIER","features":[68]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[68]},{"name":"CERT_PIN_RULES_CAB_FILENAME","features":[68]},{"name":"CERT_PIN_RULES_CTL_FILENAME","features":[68]},{"name":"CERT_PIN_RULES_CTL_FILENAME_A","features":[68]},{"name":"CERT_PIN_SHA256_HASH_PROP_ID","features":[68]},{"name":"CERT_POLICIES_INFO","features":[68]},{"name":"CERT_POLICY95_QUALIFIER1","features":[68]},{"name":"CERT_POLICY_CONSTRAINTS_INFO","features":[1,68]},{"name":"CERT_POLICY_ID","features":[68]},{"name":"CERT_POLICY_INFO","features":[68]},{"name":"CERT_POLICY_MAPPING","features":[68]},{"name":"CERT_POLICY_MAPPINGS_INFO","features":[68]},{"name":"CERT_POLICY_QUALIFIER_INFO","features":[68]},{"name":"CERT_POLICY_QUALIFIER_NOTICE_REFERENCE","features":[68]},{"name":"CERT_POLICY_QUALIFIER_USER_NOTICE","features":[68]},{"name":"CERT_PRIVATE_KEY_VALIDITY","features":[1,68]},{"name":"CERT_PROT_ROOT_DISABLE_CURRENT_USER_FLAG","features":[68]},{"name":"CERT_PROT_ROOT_DISABLE_LM_AUTH_FLAG","features":[68]},{"name":"CERT_PROT_ROOT_DISABLE_NOT_DEFINED_NAME_CONSTRAINT_FLAG","features":[68]},{"name":"CERT_PROT_ROOT_DISABLE_NT_AUTH_REQUIRED_FLAG","features":[68]},{"name":"CERT_PROT_ROOT_DISABLE_PEER_TRUST","features":[68]},{"name":"CERT_PROT_ROOT_FLAGS_VALUE_NAME","features":[68]},{"name":"CERT_PROT_ROOT_INHIBIT_ADD_AT_INIT_FLAG","features":[68]},{"name":"CERT_PROT_ROOT_INHIBIT_PURGE_LM_FLAG","features":[68]},{"name":"CERT_PROT_ROOT_ONLY_LM_GPT_FLAG","features":[68]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME","features":[68]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME_A","features":[68]},{"name":"CERT_PUBKEY_ALG_PARA_PROP_ID","features":[68]},{"name":"CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[68]},{"name":"CERT_PUBLIC_KEY_INFO","features":[68]},{"name":"CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[68]},{"name":"CERT_PVK_FILE_PROP_ID","features":[68]},{"name":"CERT_QC_STATEMENT","features":[68]},{"name":"CERT_QC_STATEMENTS_EXT_INFO","features":[68]},{"name":"CERT_QUERY_CONTENT_CERT","features":[68]},{"name":"CERT_QUERY_CONTENT_CERT_PAIR","features":[68]},{"name":"CERT_QUERY_CONTENT_CRL","features":[68]},{"name":"CERT_QUERY_CONTENT_CTL","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL_ISSUER_CERT","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT_PAIR","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_CRL","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_CTL","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX_AND_LOAD","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS10","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED_EMBED","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CERT","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CRL","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CTL","features":[68]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_STORE","features":[68]},{"name":"CERT_QUERY_CONTENT_PFX","features":[68]},{"name":"CERT_QUERY_CONTENT_PFX_AND_LOAD","features":[68]},{"name":"CERT_QUERY_CONTENT_PKCS10","features":[68]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED","features":[68]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED","features":[68]},{"name":"CERT_QUERY_CONTENT_PKCS7_UNSIGNED","features":[68]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CERT","features":[68]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CRL","features":[68]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CTL","features":[68]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_STORE","features":[68]},{"name":"CERT_QUERY_CONTENT_TYPE","features":[68]},{"name":"CERT_QUERY_CONTENT_TYPE_FLAGS","features":[68]},{"name":"CERT_QUERY_ENCODING_TYPE","features":[68]},{"name":"CERT_QUERY_FORMAT_ASN_ASCII_HEX_ENCODED","features":[68]},{"name":"CERT_QUERY_FORMAT_BASE64_ENCODED","features":[68]},{"name":"CERT_QUERY_FORMAT_BINARY","features":[68]},{"name":"CERT_QUERY_FORMAT_FLAG_ALL","features":[68]},{"name":"CERT_QUERY_FORMAT_FLAG_ASN_ASCII_HEX_ENCODED","features":[68]},{"name":"CERT_QUERY_FORMAT_FLAG_BASE64_ENCODED","features":[68]},{"name":"CERT_QUERY_FORMAT_FLAG_BINARY","features":[68]},{"name":"CERT_QUERY_FORMAT_TYPE","features":[68]},{"name":"CERT_QUERY_FORMAT_TYPE_FLAGS","features":[68]},{"name":"CERT_QUERY_OBJECT_BLOB","features":[68]},{"name":"CERT_QUERY_OBJECT_FILE","features":[68]},{"name":"CERT_QUERY_OBJECT_TYPE","features":[68]},{"name":"CERT_RDN","features":[68]},{"name":"CERT_RDN_ANY_TYPE","features":[68]},{"name":"CERT_RDN_ATTR","features":[68]},{"name":"CERT_RDN_ATTR_VALUE_TYPE","features":[68]},{"name":"CERT_RDN_BMP_STRING","features":[68]},{"name":"CERT_RDN_DISABLE_CHECK_TYPE_FLAG","features":[68]},{"name":"CERT_RDN_DISABLE_IE4_UTF8_FLAG","features":[68]},{"name":"CERT_RDN_ENABLE_PUNYCODE_FLAG","features":[68]},{"name":"CERT_RDN_ENABLE_T61_UNICODE_FLAG","features":[68]},{"name":"CERT_RDN_ENABLE_UTF8_UNICODE_FLAG","features":[68]},{"name":"CERT_RDN_ENCODED_BLOB","features":[68]},{"name":"CERT_RDN_FLAGS_MASK","features":[68]},{"name":"CERT_RDN_FORCE_UTF8_UNICODE_FLAG","features":[68]},{"name":"CERT_RDN_GENERAL_STRING","features":[68]},{"name":"CERT_RDN_GRAPHIC_STRING","features":[68]},{"name":"CERT_RDN_IA5_STRING","features":[68]},{"name":"CERT_RDN_INT4_STRING","features":[68]},{"name":"CERT_RDN_ISO646_STRING","features":[68]},{"name":"CERT_RDN_NUMERIC_STRING","features":[68]},{"name":"CERT_RDN_OCTET_STRING","features":[68]},{"name":"CERT_RDN_PRINTABLE_STRING","features":[68]},{"name":"CERT_RDN_T61_STRING","features":[68]},{"name":"CERT_RDN_TELETEX_STRING","features":[68]},{"name":"CERT_RDN_TYPE_MASK","features":[68]},{"name":"CERT_RDN_UNICODE_STRING","features":[68]},{"name":"CERT_RDN_UNIVERSAL_STRING","features":[68]},{"name":"CERT_RDN_UTF8_STRING","features":[68]},{"name":"CERT_RDN_VIDEOTEX_STRING","features":[68]},{"name":"CERT_RDN_VISIBLE_STRING","features":[68]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_FLAG","features":[68]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_PARA","features":[68,49]},{"name":"CERT_REGISTRY_STORE_EXTERNAL_FLAG","features":[68]},{"name":"CERT_REGISTRY_STORE_LM_GPT_FLAG","features":[68]},{"name":"CERT_REGISTRY_STORE_MY_IE_DIRTY_FLAG","features":[68]},{"name":"CERT_REGISTRY_STORE_REMOTE_FLAG","features":[68]},{"name":"CERT_REGISTRY_STORE_ROAMING_FLAG","features":[68]},{"name":"CERT_REGISTRY_STORE_ROAMING_PARA","features":[68,49]},{"name":"CERT_REGISTRY_STORE_SERIALIZED_FLAG","features":[68]},{"name":"CERT_RENEWAL_PROP_ID","features":[68]},{"name":"CERT_REQUEST_INFO","features":[68]},{"name":"CERT_REQUEST_ORIGINATOR_PROP_ID","features":[68]},{"name":"CERT_REQUEST_V1","features":[68]},{"name":"CERT_RETRIEVE_BIOMETRIC_PREDEFINED_BASE_TYPE","features":[68]},{"name":"CERT_RETRIEVE_COMMUNITY_LOGO","features":[68]},{"name":"CERT_RETRIEVE_ISSUER_LOGO","features":[68]},{"name":"CERT_RETRIEVE_SUBJECT_LOGO","features":[68]},{"name":"CERT_RETR_BEHAVIOR_FILE_VALUE_NAME","features":[68]},{"name":"CERT_RETR_BEHAVIOR_INET_AUTH_VALUE_NAME","features":[68]},{"name":"CERT_RETR_BEHAVIOR_INET_STATUS_VALUE_NAME","features":[68]},{"name":"CERT_RETR_BEHAVIOR_LDAP_VALUE_NAME","features":[68]},{"name":"CERT_REVOCATION_CHAIN_PARA","features":[1,68]},{"name":"CERT_REVOCATION_CRL_INFO","features":[1,68]},{"name":"CERT_REVOCATION_INFO","features":[1,68]},{"name":"CERT_REVOCATION_PARA","features":[1,68]},{"name":"CERT_REVOCATION_STATUS","features":[1,68]},{"name":"CERT_REVOCATION_STATUS_REASON","features":[68]},{"name":"CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[68]},{"name":"CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[68]},{"name":"CERT_ROOT_PROGRAM_FLAGS","features":[68]},{"name":"CERT_ROOT_PROGRAM_FLAG_ADDRESS","features":[68]},{"name":"CERT_ROOT_PROGRAM_FLAG_LSC","features":[68]},{"name":"CERT_ROOT_PROGRAM_FLAG_ORG","features":[68]},{"name":"CERT_ROOT_PROGRAM_FLAG_OU","features":[68]},{"name":"CERT_ROOT_PROGRAM_FLAG_SUBJECT_LOGO","features":[68]},{"name":"CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[68]},{"name":"CERT_RSA_PUBLIC_KEY_OBJID","features":[68]},{"name":"CERT_SCARD_PIN_ID_PROP_ID","features":[68]},{"name":"CERT_SCARD_PIN_INFO_PROP_ID","features":[68]},{"name":"CERT_SCEP_CA_CERT_PROP_ID","features":[68]},{"name":"CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[68]},{"name":"CERT_SCEP_FLAGS_PROP_ID","features":[68]},{"name":"CERT_SCEP_GUID_PROP_ID","features":[68]},{"name":"CERT_SCEP_NONCE_PROP_ID","features":[68]},{"name":"CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[68]},{"name":"CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[68]},{"name":"CERT_SCEP_SERVER_CERTS_PROP_ID","features":[68]},{"name":"CERT_SCEP_SIGNER_CERT_PROP_ID","features":[68]},{"name":"CERT_SELECT_ALLOW_DUPLICATES","features":[68]},{"name":"CERT_SELECT_ALLOW_EXPIRED","features":[68]},{"name":"CERT_SELECT_BY_ENHKEY_USAGE","features":[68]},{"name":"CERT_SELECT_BY_EXTENSION","features":[68]},{"name":"CERT_SELECT_BY_FRIENDLYNAME","features":[68]},{"name":"CERT_SELECT_BY_ISSUER_ATTR","features":[68]},{"name":"CERT_SELECT_BY_ISSUER_DISPLAYNAME","features":[68]},{"name":"CERT_SELECT_BY_ISSUER_NAME","features":[68]},{"name":"CERT_SELECT_BY_KEY_USAGE","features":[68]},{"name":"CERT_SELECT_BY_POLICY_OID","features":[68]},{"name":"CERT_SELECT_BY_PROV_NAME","features":[68]},{"name":"CERT_SELECT_BY_PUBLIC_KEY","features":[68]},{"name":"CERT_SELECT_BY_SUBJECT_ATTR","features":[68]},{"name":"CERT_SELECT_BY_SUBJECT_HOST_NAME","features":[68]},{"name":"CERT_SELECT_BY_THUMBPRINT","features":[68]},{"name":"CERT_SELECT_BY_TLS_SIGNATURES","features":[68]},{"name":"CERT_SELECT_CHAIN_PARA","features":[1,68]},{"name":"CERT_SELECT_CRITERIA","features":[68]},{"name":"CERT_SELECT_CRITERIA_TYPE","features":[68]},{"name":"CERT_SELECT_DISALLOW_SELFSIGNED","features":[68]},{"name":"CERT_SELECT_HARDWARE_ONLY","features":[68]},{"name":"CERT_SELECT_HAS_KEY_FOR_KEY_EXCHANGE","features":[68]},{"name":"CERT_SELECT_HAS_KEY_FOR_SIGNATURE","features":[68]},{"name":"CERT_SELECT_HAS_PRIVATE_KEY","features":[68]},{"name":"CERT_SELECT_IGNORE_AUTOSELECT","features":[68]},{"name":"CERT_SELECT_MAX_PARA","features":[68]},{"name":"CERT_SELECT_TRUSTED_ROOT","features":[68]},{"name":"CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[68]},{"name":"CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[68]},{"name":"CERT_SERIAL_CHAIN_PROP_ID","features":[68]},{"name":"CERT_SERVER_OCSP_RESPONSE_ASYNC_FLAG","features":[68]},{"name":"CERT_SERVER_OCSP_RESPONSE_CONTEXT","features":[68]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA","features":[1,68]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_READ_FLAG","features":[68]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_WRITE_FLAG","features":[68]},{"name":"CERT_SET_KEY_CONTEXT_PROP_ID","features":[68]},{"name":"CERT_SET_KEY_PROV_HANDLE_PROP_ID","features":[68]},{"name":"CERT_SET_PROPERTY_IGNORE_PERSIST_ERROR_FLAG","features":[68]},{"name":"CERT_SET_PROPERTY_INHIBIT_PERSIST_FLAG","features":[68]},{"name":"CERT_SHA1_HASH_PROP_ID","features":[68]},{"name":"CERT_SHA256_HASH_PROP_ID","features":[68]},{"name":"CERT_SIGNATURE_HASH_PROP_ID","features":[68]},{"name":"CERT_SIGNED_CONTENT_INFO","features":[68]},{"name":"CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[68]},{"name":"CERT_SIMPLE_CHAIN","features":[1,68]},{"name":"CERT_SIMPLE_NAME_STR","features":[68]},{"name":"CERT_SMART_CARD_DATA_PROP_ID","features":[68]},{"name":"CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[68]},{"name":"CERT_SMART_CARD_READER_PROP_ID","features":[68]},{"name":"CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[68]},{"name":"CERT_SOURCE_LOCATION_PROP_ID","features":[68]},{"name":"CERT_SOURCE_URL_PROP_ID","features":[68]},{"name":"CERT_SRV_OCSP_RESP_MAX_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_SRV_OCSP_RESP_MAX_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_SRV_OCSP_RESP_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_SRV_OCSP_RESP_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_DEFAULT","features":[68]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_SRV_OCSP_RESP_MIN_VALIDITY_SECONDS_VALUE_NAME","features":[68]},{"name":"CERT_SRV_OCSP_RESP_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[68]},{"name":"CERT_STORE_ADD_ALWAYS","features":[68]},{"name":"CERT_STORE_ADD_NEW","features":[68]},{"name":"CERT_STORE_ADD_NEWER","features":[68]},{"name":"CERT_STORE_ADD_NEWER_INHERIT_PROPERTIES","features":[68]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING","features":[68]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES","features":[68]},{"name":"CERT_STORE_ADD_USE_EXISTING","features":[68]},{"name":"CERT_STORE_BACKUP_RESTORE_FLAG","features":[68]},{"name":"CERT_STORE_BASE_CRL_FLAG","features":[68]},{"name":"CERT_STORE_CERTIFICATE_CONTEXT","features":[68]},{"name":"CERT_STORE_CREATE_NEW_FLAG","features":[68]},{"name":"CERT_STORE_CRL_CONTEXT","features":[68]},{"name":"CERT_STORE_CTL_CONTEXT","features":[68]},{"name":"CERT_STORE_CTRL_AUTO_RESYNC","features":[68]},{"name":"CERT_STORE_CTRL_CANCEL_NOTIFY","features":[68]},{"name":"CERT_STORE_CTRL_COMMIT","features":[68]},{"name":"CERT_STORE_CTRL_COMMIT_CLEAR_FLAG","features":[68]},{"name":"CERT_STORE_CTRL_COMMIT_FORCE_FLAG","features":[68]},{"name":"CERT_STORE_CTRL_INHIBIT_DUPLICATE_HANDLE_FLAG","features":[68]},{"name":"CERT_STORE_CTRL_NOTIFY_CHANGE","features":[68]},{"name":"CERT_STORE_CTRL_RESYNC","features":[68]},{"name":"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG","features":[68]},{"name":"CERT_STORE_DELETE_FLAG","features":[68]},{"name":"CERT_STORE_DELTA_CRL_FLAG","features":[68]},{"name":"CERT_STORE_ENUM_ARCHIVED_FLAG","features":[68]},{"name":"CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[68]},{"name":"CERT_STORE_MANIFOLD_FLAG","features":[68]},{"name":"CERT_STORE_MAXIMUM_ALLOWED_FLAG","features":[68]},{"name":"CERT_STORE_NO_CRL_FLAG","features":[68]},{"name":"CERT_STORE_NO_CRYPT_RELEASE_FLAG","features":[68]},{"name":"CERT_STORE_NO_ISSUER_FLAG","features":[68]},{"name":"CERT_STORE_OPEN_EXISTING_FLAG","features":[68]},{"name":"CERT_STORE_PROV_CLOSE_FUNC","features":[68]},{"name":"CERT_STORE_PROV_COLLECTION","features":[68]},{"name":"CERT_STORE_PROV_CONTROL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_DELETED_FLAG","features":[68]},{"name":"CERT_STORE_PROV_DELETE_CERT_FUNC","features":[68]},{"name":"CERT_STORE_PROV_DELETE_CRL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_DELETE_CTL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_EXTERNAL_FLAG","features":[68]},{"name":"CERT_STORE_PROV_FILE","features":[68]},{"name":"CERT_STORE_PROV_FILENAME","features":[68]},{"name":"CERT_STORE_PROV_FILENAME_A","features":[68]},{"name":"CERT_STORE_PROV_FILENAME_W","features":[68]},{"name":"CERT_STORE_PROV_FIND_CERT_FUNC","features":[68]},{"name":"CERT_STORE_PROV_FIND_CRL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_FIND_CTL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_FIND_INFO","features":[68]},{"name":"CERT_STORE_PROV_FLAGS","features":[68]},{"name":"CERT_STORE_PROV_FREE_FIND_CERT_FUNC","features":[68]},{"name":"CERT_STORE_PROV_FREE_FIND_CRL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_FREE_FIND_CTL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_GET_CERT_PROPERTY_FUNC","features":[68]},{"name":"CERT_STORE_PROV_GET_CRL_PROPERTY_FUNC","features":[68]},{"name":"CERT_STORE_PROV_GET_CTL_PROPERTY_FUNC","features":[68]},{"name":"CERT_STORE_PROV_GP_SYSTEM_STORE_FLAG","features":[68]},{"name":"CERT_STORE_PROV_INFO","features":[68]},{"name":"CERT_STORE_PROV_LDAP","features":[68]},{"name":"CERT_STORE_PROV_LDAP_W","features":[68]},{"name":"CERT_STORE_PROV_LM_SYSTEM_STORE_FLAG","features":[68]},{"name":"CERT_STORE_PROV_MEMORY","features":[68]},{"name":"CERT_STORE_PROV_MSG","features":[68]},{"name":"CERT_STORE_PROV_NO_PERSIST_FLAG","features":[68]},{"name":"CERT_STORE_PROV_PHYSICAL","features":[68]},{"name":"CERT_STORE_PROV_PHYSICAL_W","features":[68]},{"name":"CERT_STORE_PROV_PKCS12","features":[68]},{"name":"CERT_STORE_PROV_PKCS7","features":[68]},{"name":"CERT_STORE_PROV_READ_CERT_FUNC","features":[68]},{"name":"CERT_STORE_PROV_READ_CRL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_READ_CTL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_REG","features":[68]},{"name":"CERT_STORE_PROV_SERIALIZED","features":[68]},{"name":"CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC","features":[68]},{"name":"CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC","features":[68]},{"name":"CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC","features":[68]},{"name":"CERT_STORE_PROV_SHARED_USER_FLAG","features":[68]},{"name":"CERT_STORE_PROV_SMART_CARD","features":[68]},{"name":"CERT_STORE_PROV_SMART_CARD_W","features":[68]},{"name":"CERT_STORE_PROV_SYSTEM","features":[68]},{"name":"CERT_STORE_PROV_SYSTEM_A","features":[68]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY","features":[68]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_A","features":[68]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[68]},{"name":"CERT_STORE_PROV_SYSTEM_STORE_FLAG","features":[68]},{"name":"CERT_STORE_PROV_SYSTEM_W","features":[68]},{"name":"CERT_STORE_PROV_WRITE_ADD_FLAG","features":[68]},{"name":"CERT_STORE_PROV_WRITE_CERT_FUNC","features":[68]},{"name":"CERT_STORE_PROV_WRITE_CRL_FUNC","features":[68]},{"name":"CERT_STORE_PROV_WRITE_CTL_FUNC","features":[68]},{"name":"CERT_STORE_READONLY_FLAG","features":[68]},{"name":"CERT_STORE_REVOCATION_FLAG","features":[68]},{"name":"CERT_STORE_SAVE_AS","features":[68]},{"name":"CERT_STORE_SAVE_AS_PKCS12","features":[68]},{"name":"CERT_STORE_SAVE_AS_PKCS7","features":[68]},{"name":"CERT_STORE_SAVE_AS_STORE","features":[68]},{"name":"CERT_STORE_SAVE_TO","features":[68]},{"name":"CERT_STORE_SAVE_TO_FILE","features":[68]},{"name":"CERT_STORE_SAVE_TO_FILENAME","features":[68]},{"name":"CERT_STORE_SAVE_TO_FILENAME_A","features":[68]},{"name":"CERT_STORE_SAVE_TO_FILENAME_W","features":[68]},{"name":"CERT_STORE_SAVE_TO_MEMORY","features":[68]},{"name":"CERT_STORE_SET_LOCALIZED_NAME_FLAG","features":[68]},{"name":"CERT_STORE_SHARE_CONTEXT_FLAG","features":[68]},{"name":"CERT_STORE_SHARE_STORE_FLAG","features":[68]},{"name":"CERT_STORE_SIGNATURE_FLAG","features":[68]},{"name":"CERT_STORE_TIME_VALIDITY_FLAG","features":[68]},{"name":"CERT_STORE_UNSAFE_PHYSICAL_FLAG","features":[68]},{"name":"CERT_STORE_UPDATE_KEYID_FLAG","features":[68]},{"name":"CERT_STRING_TYPE","features":[68]},{"name":"CERT_STRONG_SIGN_ECDSA_ALGORITHM","features":[68]},{"name":"CERT_STRONG_SIGN_ENABLE_CRL_CHECK","features":[68]},{"name":"CERT_STRONG_SIGN_ENABLE_OCSP_CHECK","features":[68]},{"name":"CERT_STRONG_SIGN_FLAGS","features":[68]},{"name":"CERT_STRONG_SIGN_OID_INFO_CHOICE","features":[68]},{"name":"CERT_STRONG_SIGN_PARA","features":[68]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO","features":[68]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO_CHOICE","features":[68]},{"name":"CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[68]},{"name":"CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[68]},{"name":"CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[68]},{"name":"CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[68]},{"name":"CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[68]},{"name":"CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[68]},{"name":"CERT_SUPPORTED_ALGORITHM_INFO","features":[68]},{"name":"CERT_SYSTEM_STORE_CURRENT_SERVICE_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_DEFER_READ_FLAG","features":[68]},{"name":"CERT_SYSTEM_STORE_FLAGS","features":[68]},{"name":"CERT_SYSTEM_STORE_INFO","features":[68]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_WCOS_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_LOCATION_MASK","features":[68]},{"name":"CERT_SYSTEM_STORE_LOCATION_SHIFT","features":[68]},{"name":"CERT_SYSTEM_STORE_MASK","features":[68]},{"name":"CERT_SYSTEM_STORE_RELOCATE_FLAG","features":[68]},{"name":"CERT_SYSTEM_STORE_RELOCATE_PARA","features":[68,49]},{"name":"CERT_SYSTEM_STORE_SERVICES_ID","features":[68]},{"name":"CERT_SYSTEM_STORE_UNPROTECTED_FLAG","features":[68]},{"name":"CERT_SYSTEM_STORE_USERS_ID","features":[68]},{"name":"CERT_TEMPLATE_EXT","features":[1,68]},{"name":"CERT_TIMESTAMP_HASH_USE_TYPE","features":[68]},{"name":"CERT_TPM_SPECIFICATION_INFO","features":[68]},{"name":"CERT_TRUST_AUTO_UPDATE_CA_REVOCATION","features":[68]},{"name":"CERT_TRUST_AUTO_UPDATE_END_REVOCATION","features":[68]},{"name":"CERT_TRUST_BEFORE_DISALLOWED_CA_FILETIME","features":[68]},{"name":"CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID","features":[68]},{"name":"CERT_TRUST_CTL_IS_NOT_TIME_VALID","features":[68]},{"name":"CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE","features":[68]},{"name":"CERT_TRUST_HAS_ALLOW_WEAK_SIGNATURE","features":[68]},{"name":"CERT_TRUST_HAS_AUTO_UPDATE_WEAK_SIGNATURE","features":[68]},{"name":"CERT_TRUST_HAS_CRL_VALIDITY_EXTENDED","features":[68]},{"name":"CERT_TRUST_HAS_EXACT_MATCH_ISSUER","features":[68]},{"name":"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT","features":[68]},{"name":"CERT_TRUST_HAS_ISSUANCE_CHAIN_POLICY","features":[68]},{"name":"CERT_TRUST_HAS_KEY_MATCH_ISSUER","features":[68]},{"name":"CERT_TRUST_HAS_NAME_MATCH_ISSUER","features":[68]},{"name":"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT","features":[68]},{"name":"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT","features":[68]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT","features":[68]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT","features":[68]},{"name":"CERT_TRUST_HAS_PREFERRED_ISSUER","features":[68]},{"name":"CERT_TRUST_HAS_VALID_NAME_CONSTRAINTS","features":[68]},{"name":"CERT_TRUST_HAS_WEAK_HYGIENE","features":[68]},{"name":"CERT_TRUST_HAS_WEAK_SIGNATURE","features":[68]},{"name":"CERT_TRUST_INVALID_BASIC_CONSTRAINTS","features":[68]},{"name":"CERT_TRUST_INVALID_EXTENSION","features":[68]},{"name":"CERT_TRUST_INVALID_NAME_CONSTRAINTS","features":[68]},{"name":"CERT_TRUST_INVALID_POLICY_CONSTRAINTS","features":[68]},{"name":"CERT_TRUST_IS_CA_TRUSTED","features":[68]},{"name":"CERT_TRUST_IS_COMPLEX_CHAIN","features":[68]},{"name":"CERT_TRUST_IS_CYCLIC","features":[68]},{"name":"CERT_TRUST_IS_EXPLICIT_DISTRUST","features":[68]},{"name":"CERT_TRUST_IS_FROM_EXCLUSIVE_TRUST_STORE","features":[68]},{"name":"CERT_TRUST_IS_KEY_ROLLOVER","features":[68]},{"name":"CERT_TRUST_IS_NOT_SIGNATURE_VALID","features":[68]},{"name":"CERT_TRUST_IS_NOT_TIME_NESTED","features":[68]},{"name":"CERT_TRUST_IS_NOT_TIME_VALID","features":[68]},{"name":"CERT_TRUST_IS_NOT_VALID_FOR_USAGE","features":[68]},{"name":"CERT_TRUST_IS_OFFLINE_REVOCATION","features":[68]},{"name":"CERT_TRUST_IS_PARTIAL_CHAIN","features":[68]},{"name":"CERT_TRUST_IS_PEER_TRUSTED","features":[68]},{"name":"CERT_TRUST_IS_REVOKED","features":[68]},{"name":"CERT_TRUST_IS_SELF_SIGNED","features":[68]},{"name":"CERT_TRUST_IS_UNTRUSTED_ROOT","features":[68]},{"name":"CERT_TRUST_LIST_INFO","features":[1,68]},{"name":"CERT_TRUST_NO_ERROR","features":[68]},{"name":"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY","features":[68]},{"name":"CERT_TRUST_NO_OCSP_FAILOVER_TO_CRL","features":[68]},{"name":"CERT_TRUST_NO_TIME_CHECK","features":[68]},{"name":"CERT_TRUST_PUB_ALLOW_END_USER_TRUST","features":[68]},{"name":"CERT_TRUST_PUB_ALLOW_ENTERPRISE_ADMIN_TRUST","features":[68]},{"name":"CERT_TRUST_PUB_ALLOW_MACHINE_ADMIN_TRUST","features":[68]},{"name":"CERT_TRUST_PUB_ALLOW_TRUST_MASK","features":[68]},{"name":"CERT_TRUST_PUB_AUTHENTICODE_FLAGS_VALUE_NAME","features":[68]},{"name":"CERT_TRUST_PUB_CHECK_PUBLISHER_REV_FLAG","features":[68]},{"name":"CERT_TRUST_PUB_CHECK_TIMESTAMP_REV_FLAG","features":[68]},{"name":"CERT_TRUST_REVOCATION_STATUS_UNKNOWN","features":[68]},{"name":"CERT_TRUST_SSL_HANDSHAKE_OCSP","features":[68]},{"name":"CERT_TRUST_SSL_RECONNECT_OCSP","features":[68]},{"name":"CERT_TRUST_SSL_TIME_VALID","features":[68]},{"name":"CERT_TRUST_SSL_TIME_VALID_OCSP","features":[68]},{"name":"CERT_TRUST_STATUS","features":[68]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_MASK","features":[68]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_SHIFT","features":[68]},{"name":"CERT_UNICODE_IS_RDN_ATTRS_FLAG","features":[68]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_MASK","features":[68]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_SHIFT","features":[68]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_MASK","features":[68]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_SHIFT","features":[68]},{"name":"CERT_USAGE_MATCH","features":[68]},{"name":"CERT_V1","features":[68]},{"name":"CERT_V2","features":[68]},{"name":"CERT_V3","features":[68]},{"name":"CERT_VERIFY_ALLOW_MORE_USAGE_FLAG","features":[68]},{"name":"CERT_VERIFY_CACHE_ONLY_BASED_REVOCATION","features":[68]},{"name":"CERT_VERIFY_INHIBIT_CTL_UPDATE_FLAG","features":[68]},{"name":"CERT_VERIFY_NO_TIME_CHECK_FLAG","features":[68]},{"name":"CERT_VERIFY_REV_ACCUMULATIVE_TIMEOUT_FLAG","features":[68]},{"name":"CERT_VERIFY_REV_CHAIN_FLAG","features":[68]},{"name":"CERT_VERIFY_REV_NO_OCSP_FAILOVER_TO_CRL_FLAG","features":[68]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_FLAG","features":[68]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_WIRE_ONLY_FLAG","features":[68]},{"name":"CERT_VERIFY_TRUSTED_SIGNERS_FLAG","features":[68]},{"name":"CERT_VERIFY_UPDATED_CTL_FLAG","features":[68]},{"name":"CERT_X500_NAME_STR","features":[68]},{"name":"CERT_X942_DH_PARAMETERS","features":[68]},{"name":"CERT_X942_DH_VALIDATION_PARAMS","features":[68]},{"name":"CERT_XML_NAME_STR","features":[68]},{"name":"CESSetupProperty","features":[68]},{"name":"CLAIMLIST","features":[68]},{"name":"CMC_ADD_ATTRIBUTES","features":[68]},{"name":"CMC_ADD_ATTRIBUTES_INFO","features":[68]},{"name":"CMC_ADD_EXTENSIONS","features":[68]},{"name":"CMC_ADD_EXTENSIONS_INFO","features":[1,68]},{"name":"CMC_DATA","features":[68]},{"name":"CMC_DATA_INFO","features":[68]},{"name":"CMC_FAIL_BAD_ALG","features":[68]},{"name":"CMC_FAIL_BAD_CERT_ID","features":[68]},{"name":"CMC_FAIL_BAD_IDENTITY","features":[68]},{"name":"CMC_FAIL_BAD_MESSAGE_CHECK","features":[68]},{"name":"CMC_FAIL_BAD_REQUEST","features":[68]},{"name":"CMC_FAIL_BAD_TIME","features":[68]},{"name":"CMC_FAIL_INTERNAL_CA_ERROR","features":[68]},{"name":"CMC_FAIL_MUST_ARCHIVE_KEYS","features":[68]},{"name":"CMC_FAIL_NO_KEY_REUSE","features":[68]},{"name":"CMC_FAIL_POP_FAILED","features":[68]},{"name":"CMC_FAIL_POP_REQUIRED","features":[68]},{"name":"CMC_FAIL_TRY_LATER","features":[68]},{"name":"CMC_FAIL_UNSUPORTED_EXT","features":[68]},{"name":"CMC_OTHER_INFO_FAIL_CHOICE","features":[68]},{"name":"CMC_OTHER_INFO_NO_CHOICE","features":[68]},{"name":"CMC_OTHER_INFO_PEND_CHOICE","features":[68]},{"name":"CMC_PEND_INFO","features":[1,68]},{"name":"CMC_RESPONSE","features":[68]},{"name":"CMC_RESPONSE_INFO","features":[68]},{"name":"CMC_STATUS","features":[68]},{"name":"CMC_STATUS_CONFIRM_REQUIRED","features":[68]},{"name":"CMC_STATUS_FAILED","features":[68]},{"name":"CMC_STATUS_INFO","features":[1,68]},{"name":"CMC_STATUS_NO_SUPPORT","features":[68]},{"name":"CMC_STATUS_PENDING","features":[68]},{"name":"CMC_STATUS_SUCCESS","features":[68]},{"name":"CMC_TAGGED_ATTRIBUTE","features":[68]},{"name":"CMC_TAGGED_CERT_REQUEST","features":[68]},{"name":"CMC_TAGGED_CERT_REQUEST_CHOICE","features":[68]},{"name":"CMC_TAGGED_CONTENT_INFO","features":[68]},{"name":"CMC_TAGGED_OTHER_MSG","features":[68]},{"name":"CMC_TAGGED_REQUEST","features":[68]},{"name":"CMSCEPSetup","features":[68]},{"name":"CMSG_ATTR_CERT_COUNT_PARAM","features":[68]},{"name":"CMSG_ATTR_CERT_PARAM","features":[68]},{"name":"CMSG_AUTHENTICATED_ATTRIBUTES_FLAG","features":[68]},{"name":"CMSG_BARE_CONTENT_FLAG","features":[68]},{"name":"CMSG_BARE_CONTENT_PARAM","features":[68]},{"name":"CMSG_CERT_COUNT_PARAM","features":[68]},{"name":"CMSG_CERT_PARAM","features":[68]},{"name":"CMSG_CMS_ENCAPSULATED_CONTENT_FLAG","features":[68]},{"name":"CMSG_CMS_ENCAPSULATED_CTL_FLAG","features":[68]},{"name":"CMSG_CMS_RECIPIENT_COUNT_PARAM","features":[68]},{"name":"CMSG_CMS_RECIPIENT_ENCRYPTED_KEY_INDEX_PARAM","features":[68]},{"name":"CMSG_CMS_RECIPIENT_INDEX_PARAM","features":[68]},{"name":"CMSG_CMS_RECIPIENT_INFO","features":[1,68]},{"name":"CMSG_CMS_RECIPIENT_INFO_PARAM","features":[68]},{"name":"CMSG_CMS_SIGNER_INFO","features":[68]},{"name":"CMSG_CMS_SIGNER_INFO_PARAM","features":[68]},{"name":"CMSG_CNG_CONTENT_DECRYPT_INFO","features":[68]},{"name":"CMSG_COMPUTED_HASH_PARAM","features":[68]},{"name":"CMSG_CONTENTS_OCTETS_FLAG","features":[68]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_OBJID_FLAG","features":[68]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_PARA_FLAG","features":[68]},{"name":"CMSG_CONTENT_ENCRYPT_INFO","features":[1,68]},{"name":"CMSG_CONTENT_ENCRYPT_PAD_ENCODED_LEN_FLAG","features":[68]},{"name":"CMSG_CONTENT_ENCRYPT_RELEASE_CONTEXT_FLAG","features":[68]},{"name":"CMSG_CONTENT_PARAM","features":[68]},{"name":"CMSG_CRL_COUNT_PARAM","features":[68]},{"name":"CMSG_CRL_PARAM","features":[68]},{"name":"CMSG_CRYPT_RELEASE_CONTEXT_FLAG","features":[68]},{"name":"CMSG_CTRL_ADD_ATTR_CERT","features":[68]},{"name":"CMSG_CTRL_ADD_CERT","features":[68]},{"name":"CMSG_CTRL_ADD_CMS_SIGNER_INFO","features":[68]},{"name":"CMSG_CTRL_ADD_CRL","features":[68]},{"name":"CMSG_CTRL_ADD_SIGNER","features":[68]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR","features":[68]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA","features":[68]},{"name":"CMSG_CTRL_DECRYPT","features":[68]},{"name":"CMSG_CTRL_DECRYPT_PARA","features":[68]},{"name":"CMSG_CTRL_DEL_ATTR_CERT","features":[68]},{"name":"CMSG_CTRL_DEL_CERT","features":[68]},{"name":"CMSG_CTRL_DEL_CRL","features":[68]},{"name":"CMSG_CTRL_DEL_SIGNER","features":[68]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR","features":[68]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA","features":[68]},{"name":"CMSG_CTRL_ENABLE_STRONG_SIGNATURE","features":[68]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT","features":[68]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT_PARA","features":[1,68]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT","features":[68]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT_PARA","features":[68]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT","features":[68]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT_PARA","features":[1,68]},{"name":"CMSG_CTRL_VERIFY_HASH","features":[68]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE","features":[68]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX","features":[68]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA","features":[68]},{"name":"CMSG_DATA","features":[68]},{"name":"CMSG_DEFAULT_INSTALLABLE_FUNC_OID","features":[68]},{"name":"CMSG_DETACHED_FLAG","features":[68]},{"name":"CMSG_ENCODED_MESSAGE","features":[68]},{"name":"CMSG_ENCODED_SIGNER","features":[68]},{"name":"CMSG_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[68]},{"name":"CMSG_ENCODE_SORTED_CTL_FLAG","features":[68]},{"name":"CMSG_ENCODING_TYPE_MASK","features":[68]},{"name":"CMSG_ENCRYPTED","features":[68]},{"name":"CMSG_ENCRYPTED_DIGEST","features":[68]},{"name":"CMSG_ENCRYPTED_ENCODE_INFO","features":[68]},{"name":"CMSG_ENCRYPT_PARAM","features":[68]},{"name":"CMSG_ENVELOPED","features":[68]},{"name":"CMSG_ENVELOPED_DATA_CMS_VERSION","features":[68]},{"name":"CMSG_ENVELOPED_DATA_PKCS_1_5_VERSION","features":[68]},{"name":"CMSG_ENVELOPED_DATA_V0","features":[68]},{"name":"CMSG_ENVELOPED_DATA_V2","features":[68]},{"name":"CMSG_ENVELOPED_ENCODE_INFO","features":[1,68]},{"name":"CMSG_ENVELOPED_RECIPIENT_V0","features":[68]},{"name":"CMSG_ENVELOPED_RECIPIENT_V2","features":[68]},{"name":"CMSG_ENVELOPED_RECIPIENT_V3","features":[68]},{"name":"CMSG_ENVELOPED_RECIPIENT_V4","features":[68]},{"name":"CMSG_ENVELOPE_ALGORITHM_PARAM","features":[68]},{"name":"CMSG_HASHED","features":[68]},{"name":"CMSG_HASHED_DATA_CMS_VERSION","features":[68]},{"name":"CMSG_HASHED_DATA_PKCS_1_5_VERSION","features":[68]},{"name":"CMSG_HASHED_DATA_V0","features":[68]},{"name":"CMSG_HASHED_DATA_V2","features":[68]},{"name":"CMSG_HASHED_ENCODE_INFO","features":[68]},{"name":"CMSG_HASH_ALGORITHM_PARAM","features":[68]},{"name":"CMSG_HASH_DATA_PARAM","features":[68]},{"name":"CMSG_INDEFINITE_LENGTH","features":[68]},{"name":"CMSG_INNER_CONTENT_TYPE_PARAM","features":[68]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_MATERIAL_FLAG","features":[68]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_OBJID_FLAG","features":[68]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PARA_FLAG","features":[68]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_ALG_FLAG","features":[68]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_BITS_FLAG","features":[68]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_PARA_FLAG","features":[68]},{"name":"CMSG_KEY_AGREE_ENCRYPT_INFO","features":[68]},{"name":"CMSG_KEY_AGREE_EPHEMERAL_KEY_CHOICE","features":[68]},{"name":"CMSG_KEY_AGREE_KEY_ENCRYPT_INFO","features":[68]},{"name":"CMSG_KEY_AGREE_OPTION","features":[68]},{"name":"CMSG_KEY_AGREE_ORIGINATOR","features":[68]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_CERT","features":[68]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_PUBLIC_KEY","features":[68]},{"name":"CMSG_KEY_AGREE_RECIPIENT","features":[68]},{"name":"CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO","features":[1,68]},{"name":"CMSG_KEY_AGREE_RECIPIENT_INFO","features":[1,68]},{"name":"CMSG_KEY_AGREE_STATIC_KEY_CHOICE","features":[68]},{"name":"CMSG_KEY_AGREE_VERSION","features":[68]},{"name":"CMSG_KEY_TRANS_CMS_VERSION","features":[68]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_OBJID_FLAG","features":[68]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_PARA_FLAG","features":[68]},{"name":"CMSG_KEY_TRANS_ENCRYPT_INFO","features":[68]},{"name":"CMSG_KEY_TRANS_PKCS_1_5_VERSION","features":[68]},{"name":"CMSG_KEY_TRANS_RECIPIENT","features":[68]},{"name":"CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO","features":[68]},{"name":"CMSG_KEY_TRANS_RECIPIENT_INFO","features":[68]},{"name":"CMSG_LENGTH_ONLY_FLAG","features":[68]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_OBJID_FLAG","features":[68]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_PARA_FLAG","features":[68]},{"name":"CMSG_MAIL_LIST_ENCRYPT_INFO","features":[68]},{"name":"CMSG_MAIL_LIST_HANDLE_KEY_CHOICE","features":[68]},{"name":"CMSG_MAIL_LIST_RECIPIENT","features":[68]},{"name":"CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO","features":[1,68]},{"name":"CMSG_MAIL_LIST_RECIPIENT_INFO","features":[1,68]},{"name":"CMSG_MAIL_LIST_VERSION","features":[68]},{"name":"CMSG_MAX_LENGTH_FLAG","features":[68]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_AGREE_FUNC","features":[68]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_TRANS_FUNC","features":[68]},{"name":"CMSG_OID_CAPI1_EXPORT_MAIL_LIST_FUNC","features":[68]},{"name":"CMSG_OID_CAPI1_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[68]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_AGREE_FUNC","features":[68]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_TRANS_FUNC","features":[68]},{"name":"CMSG_OID_CAPI1_IMPORT_MAIL_LIST_FUNC","features":[68]},{"name":"CMSG_OID_CNG_EXPORT_KEY_AGREE_FUNC","features":[68]},{"name":"CMSG_OID_CNG_EXPORT_KEY_TRANS_FUNC","features":[68]},{"name":"CMSG_OID_CNG_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[68]},{"name":"CMSG_OID_CNG_IMPORT_CONTENT_ENCRYPT_KEY_FUNC","features":[68]},{"name":"CMSG_OID_CNG_IMPORT_KEY_AGREE_FUNC","features":[68]},{"name":"CMSG_OID_CNG_IMPORT_KEY_TRANS_FUNC","features":[68]},{"name":"CMSG_OID_EXPORT_ENCRYPT_KEY_FUNC","features":[68]},{"name":"CMSG_OID_EXPORT_KEY_AGREE_FUNC","features":[68]},{"name":"CMSG_OID_EXPORT_KEY_TRANS_FUNC","features":[68]},{"name":"CMSG_OID_EXPORT_MAIL_LIST_FUNC","features":[68]},{"name":"CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[68]},{"name":"CMSG_OID_GEN_ENCRYPT_KEY_FUNC","features":[68]},{"name":"CMSG_OID_IMPORT_ENCRYPT_KEY_FUNC","features":[68]},{"name":"CMSG_OID_IMPORT_KEY_AGREE_FUNC","features":[68]},{"name":"CMSG_OID_IMPORT_KEY_TRANS_FUNC","features":[68]},{"name":"CMSG_OID_IMPORT_MAIL_LIST_FUNC","features":[68]},{"name":"CMSG_RC2_AUX_INFO","features":[68]},{"name":"CMSG_RC4_AUX_INFO","features":[68]},{"name":"CMSG_RC4_NO_SALT_FLAG","features":[68]},{"name":"CMSG_RECIPIENT_COUNT_PARAM","features":[68]},{"name":"CMSG_RECIPIENT_ENCODE_INFO","features":[1,68]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO","features":[1,68]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_INFO","features":[1,68]},{"name":"CMSG_RECIPIENT_INDEX_PARAM","features":[68]},{"name":"CMSG_RECIPIENT_INFO_PARAM","features":[68]},{"name":"CMSG_SIGNED","features":[68]},{"name":"CMSG_SIGNED_AND_ENVELOPED","features":[68]},{"name":"CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO","features":[1,68]},{"name":"CMSG_SIGNED_DATA_CMS_VERSION","features":[68]},{"name":"CMSG_SIGNED_DATA_NO_SIGN_FLAG","features":[68]},{"name":"CMSG_SIGNED_DATA_PKCS_1_5_VERSION","features":[68]},{"name":"CMSG_SIGNED_DATA_V1","features":[68]},{"name":"CMSG_SIGNED_DATA_V3","features":[68]},{"name":"CMSG_SIGNED_ENCODE_INFO","features":[1,68]},{"name":"CMSG_SIGNER_AUTH_ATTR_PARAM","features":[68]},{"name":"CMSG_SIGNER_CERT_ID_PARAM","features":[68]},{"name":"CMSG_SIGNER_CERT_INFO_PARAM","features":[68]},{"name":"CMSG_SIGNER_COUNT_PARAM","features":[68]},{"name":"CMSG_SIGNER_ENCODE_INFO","features":[1,68]},{"name":"CMSG_SIGNER_HASH_ALGORITHM_PARAM","features":[68]},{"name":"CMSG_SIGNER_INFO","features":[68]},{"name":"CMSG_SIGNER_INFO_CMS_VERSION","features":[68]},{"name":"CMSG_SIGNER_INFO_PARAM","features":[68]},{"name":"CMSG_SIGNER_INFO_PKCS_1_5_VERSION","features":[68]},{"name":"CMSG_SIGNER_INFO_V1","features":[68]},{"name":"CMSG_SIGNER_INFO_V3","features":[68]},{"name":"CMSG_SIGNER_ONLY_FLAG","features":[68]},{"name":"CMSG_SIGNER_UNAUTH_ATTR_PARAM","features":[68]},{"name":"CMSG_SP3_COMPATIBLE_AUX_INFO","features":[68]},{"name":"CMSG_SP3_COMPATIBLE_ENCRYPT_FLAG","features":[68]},{"name":"CMSG_STREAM_INFO","features":[1,68]},{"name":"CMSG_TRUSTED_SIGNER_FLAG","features":[68]},{"name":"CMSG_TYPE_PARAM","features":[68]},{"name":"CMSG_UNPROTECTED_ATTR_PARAM","features":[68]},{"name":"CMSG_USE_SIGNER_INDEX_FLAG","features":[68]},{"name":"CMSG_VERIFY_COUNTER_SIGN_ENABLE_STRONG_FLAG","features":[68]},{"name":"CMSG_VERIFY_SIGNER_CERT","features":[68]},{"name":"CMSG_VERIFY_SIGNER_CHAIN","features":[68]},{"name":"CMSG_VERIFY_SIGNER_NULL","features":[68]},{"name":"CMSG_VERIFY_SIGNER_PUBKEY","features":[68]},{"name":"CMSG_VERSION_PARAM","features":[68]},{"name":"CMS_DH_KEY_INFO","features":[68]},{"name":"CMS_KEY_INFO","features":[68]},{"name":"CMS_SIGNER_INFO","features":[68]},{"name":"CNG_RSA_PRIVATE_KEY_BLOB","features":[68]},{"name":"CNG_RSA_PUBLIC_KEY_BLOB","features":[68]},{"name":"CONTEXT_OID_CAPI2_ANY","features":[68]},{"name":"CONTEXT_OID_CERTIFICATE","features":[68]},{"name":"CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC","features":[68]},{"name":"CONTEXT_OID_CRL","features":[68]},{"name":"CONTEXT_OID_CTL","features":[68]},{"name":"CONTEXT_OID_OCSP_RESP","features":[68]},{"name":"CONTEXT_OID_PKCS7","features":[68]},{"name":"CPS_URLS","features":[68]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS","features":[68]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_A","features":[68]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_W","features":[68]},{"name":"CRL_CONTEXT","features":[1,68]},{"name":"CRL_DIST_POINT","features":[68]},{"name":"CRL_DIST_POINTS_INFO","features":[68]},{"name":"CRL_DIST_POINT_ERR_CRL_ISSUER_BIT","features":[68]},{"name":"CRL_DIST_POINT_ERR_INDEX_MASK","features":[68]},{"name":"CRL_DIST_POINT_ERR_INDEX_SHIFT","features":[68]},{"name":"CRL_DIST_POINT_FULL_NAME","features":[68]},{"name":"CRL_DIST_POINT_ISSUER_RDN_NAME","features":[68]},{"name":"CRL_DIST_POINT_NAME","features":[68]},{"name":"CRL_DIST_POINT_NO_NAME","features":[68]},{"name":"CRL_ENTRY","features":[1,68]},{"name":"CRL_FIND_ANY","features":[68]},{"name":"CRL_FIND_EXISTING","features":[68]},{"name":"CRL_FIND_ISSUED_BY","features":[68]},{"name":"CRL_FIND_ISSUED_BY_AKI_FLAG","features":[68]},{"name":"CRL_FIND_ISSUED_BY_BASE_FLAG","features":[68]},{"name":"CRL_FIND_ISSUED_BY_DELTA_FLAG","features":[68]},{"name":"CRL_FIND_ISSUED_BY_SIGNATURE_FLAG","features":[68]},{"name":"CRL_FIND_ISSUED_FOR","features":[68]},{"name":"CRL_FIND_ISSUED_FOR_PARA","features":[1,68]},{"name":"CRL_FIND_ISSUED_FOR_SET_STRONG_PROPERTIES_FLAG","features":[68]},{"name":"CRL_INFO","features":[1,68]},{"name":"CRL_ISSUING_DIST_POINT","features":[1,68]},{"name":"CRL_REASON_AA_COMPROMISE","features":[68]},{"name":"CRL_REASON_AA_COMPROMISE_FLAG","features":[68]},{"name":"CRL_REASON_AFFILIATION_CHANGED","features":[68]},{"name":"CRL_REASON_AFFILIATION_CHANGED_FLAG","features":[68]},{"name":"CRL_REASON_CA_COMPROMISE","features":[68]},{"name":"CRL_REASON_CA_COMPROMISE_FLAG","features":[68]},{"name":"CRL_REASON_CERTIFICATE_HOLD","features":[68]},{"name":"CRL_REASON_CERTIFICATE_HOLD_FLAG","features":[68]},{"name":"CRL_REASON_CESSATION_OF_OPERATION","features":[68]},{"name":"CRL_REASON_CESSATION_OF_OPERATION_FLAG","features":[68]},{"name":"CRL_REASON_KEY_COMPROMISE","features":[68]},{"name":"CRL_REASON_KEY_COMPROMISE_FLAG","features":[68]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN","features":[68]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN_FLAG","features":[68]},{"name":"CRL_REASON_REMOVE_FROM_CRL","features":[68]},{"name":"CRL_REASON_SUPERSEDED","features":[68]},{"name":"CRL_REASON_SUPERSEDED_FLAG","features":[68]},{"name":"CRL_REASON_UNSPECIFIED","features":[68]},{"name":"CRL_REASON_UNUSED_FLAG","features":[68]},{"name":"CRL_REVOCATION_INFO","features":[1,68]},{"name":"CRL_V1","features":[68]},{"name":"CRL_V2","features":[68]},{"name":"CROSS_CERT_DIST_POINTS_INFO","features":[68]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_MASK","features":[68]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_SHIFT","features":[68]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_DEFAULT","features":[68]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_BEFORE_OCSP_ENABLE","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_DISABLE_INFORMATION_EVENTS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_LOG_FILE_NAME_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_MAX_AGE_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_PROCESS_NAME_LIST_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_RANDOM_INTERVAL_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_TIMEOUT_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_CRL_PRE_FETCH_URL_LIST_VALUE_NAME","features":[68]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_DEFAULT","features":[68]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_VALUE_NAME","features":[68]},{"name":"CRYPTNET_OCSP_AFTER_CRL_DISABLE","features":[68]},{"name":"CRYPTNET_PRE_FETCH_AFTER_CURRENT_TIME_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_DEFAULT","features":[68]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[68]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_MAX_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_MAX_MAX_AGE_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_MIN_MAX_AGE_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_MIN_OCSP_VALIDITY_PERIOD_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_RETRIEVAL_TIMEOUT_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_DEFAULT","features":[68]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_DISABLE","features":[68]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_PERIOD_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[68]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[68]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH","features":[68]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH_EXEMPT_SECONDS_VALUE_NAME","features":[68]},{"name":"CRYPTNET_URL_CACHE_DISABLE_FLUSH","features":[68]},{"name":"CRYPTNET_URL_CACHE_FLUSH_INFO","features":[1,68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_AUTOROOT_CAB","features":[68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_BLOB","features":[68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_CRL","features":[68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_DISALLOWED_CERT_CAB","features":[68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_INFO","features":[1,68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_NONE","features":[68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_OCSP","features":[68]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_PIN_RULES_CAB","features":[68]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_HTTP","features":[68]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_INFO","features":[1,68]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_NONE","features":[68]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_VALIDATED","features":[68]},{"name":"CRYPTPROTECTMEMORY_BLOCK_SIZE","features":[68]},{"name":"CRYPTPROTECTMEMORY_CROSS_PROCESS","features":[68]},{"name":"CRYPTPROTECTMEMORY_SAME_LOGON","features":[68]},{"name":"CRYPTPROTECTMEMORY_SAME_PROCESS","features":[68]},{"name":"CRYPTPROTECT_AUDIT","features":[68]},{"name":"CRYPTPROTECT_CRED_REGENERATE","features":[68]},{"name":"CRYPTPROTECT_CRED_SYNC","features":[68]},{"name":"CRYPTPROTECT_DEFAULT_PROVIDER","features":[68]},{"name":"CRYPTPROTECT_FIRST_RESERVED_FLAGVAL","features":[68]},{"name":"CRYPTPROTECT_LAST_RESERVED_FLAGVAL","features":[68]},{"name":"CRYPTPROTECT_LOCAL_MACHINE","features":[68]},{"name":"CRYPTPROTECT_NO_RECOVERY","features":[68]},{"name":"CRYPTPROTECT_PROMPTSTRUCT","features":[1,68]},{"name":"CRYPTPROTECT_PROMPT_ON_PROTECT","features":[68]},{"name":"CRYPTPROTECT_PROMPT_ON_UNPROTECT","features":[68]},{"name":"CRYPTPROTECT_PROMPT_REQUIRE_STRONG","features":[68]},{"name":"CRYPTPROTECT_PROMPT_RESERVED","features":[68]},{"name":"CRYPTPROTECT_PROMPT_STRONG","features":[68]},{"name":"CRYPTPROTECT_UI_FORBIDDEN","features":[68]},{"name":"CRYPTPROTECT_VERIFY_PROTECTION","features":[68]},{"name":"CRYPT_3DES_KEY_STATE","features":[68]},{"name":"CRYPT_ACCUMULATIVE_TIMEOUT","features":[68]},{"name":"CRYPT_ACQUIRE_ALLOW_NCRYPT_KEY_FLAG","features":[68]},{"name":"CRYPT_ACQUIRE_CACHE_FLAG","features":[68]},{"name":"CRYPT_ACQUIRE_COMPARE_KEY_FLAG","features":[68]},{"name":"CRYPT_ACQUIRE_FLAGS","features":[68]},{"name":"CRYPT_ACQUIRE_NCRYPT_KEY_FLAGS_MASK","features":[68]},{"name":"CRYPT_ACQUIRE_NO_HEALING","features":[68]},{"name":"CRYPT_ACQUIRE_ONLY_NCRYPT_KEY_FLAG","features":[68]},{"name":"CRYPT_ACQUIRE_PREFER_NCRYPT_KEY_FLAG","features":[68]},{"name":"CRYPT_ACQUIRE_SILENT_FLAG","features":[68]},{"name":"CRYPT_ACQUIRE_USE_PROV_INFO_FLAG","features":[68]},{"name":"CRYPT_ACQUIRE_WINDOW_HANDLE_FLAG","features":[68]},{"name":"CRYPT_AES_128_KEY_STATE","features":[68]},{"name":"CRYPT_AES_256_KEY_STATE","features":[68]},{"name":"CRYPT_AIA_RETRIEVAL","features":[68]},{"name":"CRYPT_ALGORITHM_IDENTIFIER","features":[68]},{"name":"CRYPT_ALL_FUNCTIONS","features":[68]},{"name":"CRYPT_ALL_PROVIDERS","features":[68]},{"name":"CRYPT_ANY","features":[68]},{"name":"CRYPT_ARCHIVABLE","features":[68]},{"name":"CRYPT_ARCHIVE","features":[68]},{"name":"CRYPT_ASN_ENCODING","features":[68]},{"name":"CRYPT_ASYNC_RETRIEVAL","features":[68]},{"name":"CRYPT_ASYNC_RETRIEVAL_COMPLETION","features":[68]},{"name":"CRYPT_ATTRIBUTE","features":[68]},{"name":"CRYPT_ATTRIBUTES","features":[68]},{"name":"CRYPT_ATTRIBUTE_TYPE_VALUE","features":[68]},{"name":"CRYPT_BIT_BLOB","features":[68]},{"name":"CRYPT_BLOB_ARRAY","features":[68]},{"name":"CRYPT_BLOB_VER3","features":[68]},{"name":"CRYPT_CACHE_ONLY_RETRIEVAL","features":[68]},{"name":"CRYPT_CHECK_FRESHNESS_TIME_VALIDITY","features":[68]},{"name":"CRYPT_CONTENT_INFO","features":[68]},{"name":"CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY","features":[68]},{"name":"CRYPT_CONTEXTS","features":[68]},{"name":"CRYPT_CONTEXT_CONFIG","features":[68]},{"name":"CRYPT_CONTEXT_CONFIG_FLAGS","features":[68]},{"name":"CRYPT_CONTEXT_FUNCTIONS","features":[68]},{"name":"CRYPT_CONTEXT_FUNCTION_CONFIG","features":[68]},{"name":"CRYPT_CONTEXT_FUNCTION_PROVIDERS","features":[68]},{"name":"CRYPT_CREATE_IV","features":[68]},{"name":"CRYPT_CREATE_NEW_FLUSH_ENTRY","features":[68]},{"name":"CRYPT_CREATE_SALT","features":[68]},{"name":"CRYPT_CREDENTIALS","features":[68]},{"name":"CRYPT_CSP_PROVIDER","features":[68]},{"name":"CRYPT_DATA_KEY","features":[68]},{"name":"CRYPT_DECODE_ALLOC_FLAG","features":[68]},{"name":"CRYPT_DECODE_ENABLE_PUNYCODE_FLAG","features":[68]},{"name":"CRYPT_DECODE_ENABLE_UTF8PERCENT_FLAG","features":[68]},{"name":"CRYPT_DECODE_NOCOPY_FLAG","features":[68]},{"name":"CRYPT_DECODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[68]},{"name":"CRYPT_DECODE_PARA","features":[68]},{"name":"CRYPT_DECODE_SHARE_OID_STRING_FLAG","features":[68]},{"name":"CRYPT_DECODE_TO_BE_SIGNED_FLAG","features":[68]},{"name":"CRYPT_DECRYPT","features":[68]},{"name":"CRYPT_DECRYPT_MESSAGE_PARA","features":[68]},{"name":"CRYPT_DECRYPT_RSA_NO_PADDING_CHECK","features":[68]},{"name":"CRYPT_DEFAULT_CONTAINER_OPTIONAL","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT_AUTO_RELEASE_FLAG","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT_CERT_SIGN_OID","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT_FLAGS","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_CERT_SIGN_OID","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT_PROCESS_FLAG","features":[68]},{"name":"CRYPT_DEFAULT_CONTEXT_TYPE","features":[68]},{"name":"CRYPT_DEFAULT_OID","features":[68]},{"name":"CRYPT_DELETEKEYSET","features":[68]},{"name":"CRYPT_DELETE_DEFAULT","features":[68]},{"name":"CRYPT_DELETE_KEYSET","features":[68]},{"name":"CRYPT_DESTROYKEY","features":[68]},{"name":"CRYPT_DES_KEY_STATE","features":[68]},{"name":"CRYPT_DOMAIN","features":[68]},{"name":"CRYPT_DONT_CACHE_RESULT","features":[68]},{"name":"CRYPT_DONT_CHECK_TIME_VALIDITY","features":[68]},{"name":"CRYPT_DONT_VERIFY_SIGNATURE","features":[68]},{"name":"CRYPT_ECC_CMS_SHARED_INFO","features":[68]},{"name":"CRYPT_ECC_CMS_SHARED_INFO_SUPPPUBINFO_BYTE_LENGTH","features":[68]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO","features":[68]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO_v1","features":[68]},{"name":"CRYPT_ENABLE_FILE_RETRIEVAL","features":[68]},{"name":"CRYPT_ENABLE_SSL_REVOCATION_RETRIEVAL","features":[68]},{"name":"CRYPT_ENCODE_ALLOC_FLAG","features":[68]},{"name":"CRYPT_ENCODE_DECODE_NONE","features":[68]},{"name":"CRYPT_ENCODE_ENABLE_PUNYCODE_FLAG","features":[68]},{"name":"CRYPT_ENCODE_ENABLE_UTF8PERCENT_FLAG","features":[68]},{"name":"CRYPT_ENCODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[68]},{"name":"CRYPT_ENCODE_OBJECT_FLAGS","features":[68]},{"name":"CRYPT_ENCODE_PARA","features":[68]},{"name":"CRYPT_ENCRYPT","features":[68]},{"name":"CRYPT_ENCRYPTED_PRIVATE_KEY_INFO","features":[68]},{"name":"CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[68]},{"name":"CRYPT_ENCRYPT_MESSAGE_PARA","features":[68]},{"name":"CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[68]},{"name":"CRYPT_ENROLLMENT_NAME_VALUE_PAIR","features":[68]},{"name":"CRYPT_EXCLUSIVE","features":[68]},{"name":"CRYPT_EXPORT","features":[68]},{"name":"CRYPT_EXPORTABLE","features":[68]},{"name":"CRYPT_EXPORT_KEY","features":[68]},{"name":"CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[68]},{"name":"CRYPT_FAILED","features":[68]},{"name":"CRYPT_FASTSGC","features":[68]},{"name":"CRYPT_FIND_FLAGS","features":[68]},{"name":"CRYPT_FIND_MACHINE_KEYSET_FLAG","features":[68]},{"name":"CRYPT_FIND_SILENT_KEYSET_FLAG","features":[68]},{"name":"CRYPT_FIND_USER_KEYSET_FLAG","features":[68]},{"name":"CRYPT_FIRST","features":[68]},{"name":"CRYPT_FIRST_ALG_OID_GROUP_ID","features":[68]},{"name":"CRYPT_FLAG_IPSEC","features":[68]},{"name":"CRYPT_FLAG_PCT1","features":[68]},{"name":"CRYPT_FLAG_SIGNING","features":[68]},{"name":"CRYPT_FLAG_SSL2","features":[68]},{"name":"CRYPT_FLAG_SSL3","features":[68]},{"name":"CRYPT_FLAG_TLS1","features":[68]},{"name":"CRYPT_FORCE_KEY_PROTECTION_HIGH","features":[68]},{"name":"CRYPT_FORMAT_COMMA","features":[68]},{"name":"CRYPT_FORMAT_CRLF","features":[68]},{"name":"CRYPT_FORMAT_OID","features":[68]},{"name":"CRYPT_FORMAT_RDN_CRLF","features":[68]},{"name":"CRYPT_FORMAT_RDN_REVERSE","features":[68]},{"name":"CRYPT_FORMAT_RDN_SEMICOLON","features":[68]},{"name":"CRYPT_FORMAT_RDN_UNQUOTE","features":[68]},{"name":"CRYPT_FORMAT_SEMICOLON","features":[68]},{"name":"CRYPT_FORMAT_SIMPLE","features":[68]},{"name":"CRYPT_FORMAT_STR_MULTI_LINE","features":[68]},{"name":"CRYPT_FORMAT_STR_NO_HEX","features":[68]},{"name":"CRYPT_FORMAT_X509","features":[68]},{"name":"CRYPT_GET_INSTALLED_OID_FUNC_FLAG","features":[68]},{"name":"CRYPT_GET_TIME_VALID_OBJECT_EXTRA_INFO","features":[1,68]},{"name":"CRYPT_GET_URL_FLAGS","features":[68]},{"name":"CRYPT_GET_URL_FROM_AUTH_ATTRIBUTE","features":[68]},{"name":"CRYPT_GET_URL_FROM_EXTENSION","features":[68]},{"name":"CRYPT_GET_URL_FROM_PROPERTY","features":[68]},{"name":"CRYPT_GET_URL_FROM_UNAUTH_ATTRIBUTE","features":[68]},{"name":"CRYPT_HASH_ALG_OID_GROUP_ID","features":[68]},{"name":"CRYPT_HASH_INFO","features":[68]},{"name":"CRYPT_HASH_MESSAGE_PARA","features":[68]},{"name":"CRYPT_HTTP_POST_RETRIEVAL","features":[68]},{"name":"CRYPT_IMAGE_REF","features":[68]},{"name":"CRYPT_IMAGE_REF_FLAGS","features":[68]},{"name":"CRYPT_IMAGE_REG","features":[68]},{"name":"CRYPT_IMPL_HARDWARE","features":[68]},{"name":"CRYPT_IMPL_MIXED","features":[68]},{"name":"CRYPT_IMPL_REMOVABLE","features":[68]},{"name":"CRYPT_IMPL_SOFTWARE","features":[68]},{"name":"CRYPT_IMPL_UNKNOWN","features":[68]},{"name":"CRYPT_IMPORT_KEY","features":[68]},{"name":"CRYPT_IMPORT_PUBLIC_KEY_FLAGS","features":[68]},{"name":"CRYPT_INITIATOR","features":[68]},{"name":"CRYPT_INSTALL_OID_FUNC_BEFORE_FLAG","features":[68]},{"name":"CRYPT_INSTALL_OID_INFO_BEFORE_FLAG","features":[68]},{"name":"CRYPT_INTEGER_BLOB","features":[68]},{"name":"CRYPT_INTERFACE_REG","features":[68]},{"name":"CRYPT_IPSEC_HMAC_KEY","features":[68]},{"name":"CRYPT_KDF_OID_GROUP_ID","features":[68]},{"name":"CRYPT_KEEP_TIME_VALID","features":[68]},{"name":"CRYPT_KEK","features":[68]},{"name":"CRYPT_KEYID_ALLOC_FLAG","features":[68]},{"name":"CRYPT_KEYID_DELETE_FLAG","features":[68]},{"name":"CRYPT_KEYID_MACHINE_FLAG","features":[68]},{"name":"CRYPT_KEYID_SET_NEW_FLAG","features":[68]},{"name":"CRYPT_KEY_FLAGS","features":[68]},{"name":"CRYPT_KEY_PARAM_ID","features":[68]},{"name":"CRYPT_KEY_PROV_INFO","features":[68]},{"name":"CRYPT_KEY_PROV_PARAM","features":[68]},{"name":"CRYPT_KEY_SIGN_MESSAGE_PARA","features":[68]},{"name":"CRYPT_KEY_VERIFY_MESSAGE_PARA","features":[68]},{"name":"CRYPT_KM","features":[68]},{"name":"CRYPT_LAST_ALG_OID_GROUP_ID","features":[68]},{"name":"CRYPT_LAST_OID_GROUP_ID","features":[68]},{"name":"CRYPT_LDAP_AREC_EXCLUSIVE_RETRIEVAL","features":[68]},{"name":"CRYPT_LDAP_INSERT_ENTRY_ATTRIBUTE","features":[68]},{"name":"CRYPT_LDAP_SCOPE_BASE_ONLY_RETRIEVAL","features":[68]},{"name":"CRYPT_LDAP_SIGN_RETRIEVAL","features":[68]},{"name":"CRYPT_LITTLE_ENDIAN","features":[68]},{"name":"CRYPT_LOCAL","features":[68]},{"name":"CRYPT_LOCALIZED_NAME_ENCODING_TYPE","features":[68]},{"name":"CRYPT_LOCALIZED_NAME_OID","features":[68]},{"name":"CRYPT_MAC","features":[68]},{"name":"CRYPT_MACHINE_DEFAULT","features":[68]},{"name":"CRYPT_MACHINE_KEYSET","features":[68]},{"name":"CRYPT_MASK_GEN_ALGORITHM","features":[68]},{"name":"CRYPT_MATCH_ANY_ENCODING_TYPE","features":[68]},{"name":"CRYPT_MESSAGE_BARE_CONTENT_OUT_FLAG","features":[68]},{"name":"CRYPT_MESSAGE_ENCAPSULATED_CONTENT_OUT_FLAG","features":[68]},{"name":"CRYPT_MESSAGE_KEYID_RECIPIENT_FLAG","features":[68]},{"name":"CRYPT_MESSAGE_KEYID_SIGNER_FLAG","features":[68]},{"name":"CRYPT_MESSAGE_SILENT_KEYSET_FLAG","features":[68]},{"name":"CRYPT_MIN_DEPENDENCIES","features":[68]},{"name":"CRYPT_MM","features":[68]},{"name":"CRYPT_MODE_CBC","features":[68]},{"name":"CRYPT_MODE_CBCI","features":[68]},{"name":"CRYPT_MODE_CBCOFM","features":[68]},{"name":"CRYPT_MODE_CBCOFMI","features":[68]},{"name":"CRYPT_MODE_CFB","features":[68]},{"name":"CRYPT_MODE_CFBP","features":[68]},{"name":"CRYPT_MODE_CTS","features":[68]},{"name":"CRYPT_MODE_ECB","features":[68]},{"name":"CRYPT_MODE_OFB","features":[68]},{"name":"CRYPT_MODE_OFBP","features":[68]},{"name":"CRYPT_MSG_TYPE","features":[68]},{"name":"CRYPT_NDR_ENCODING","features":[68]},{"name":"CRYPT_NEWKEYSET","features":[68]},{"name":"CRYPT_NEXT","features":[68]},{"name":"CRYPT_NOHASHOID","features":[68]},{"name":"CRYPT_NOT_MODIFIED_RETRIEVAL","features":[68]},{"name":"CRYPT_NO_AUTH_RETRIEVAL","features":[68]},{"name":"CRYPT_NO_OCSP_FAILOVER_TO_CRL_RETRIEVAL","features":[68]},{"name":"CRYPT_NO_SALT","features":[68]},{"name":"CRYPT_OAEP","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_FIRST_RESERVED_USER_NAME_TYPE","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_NAME_TYPE","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_USER_NAME_TYPE","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_PROVIDER_TABLE","features":[1,68]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_DLL_UNLOAD","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_PROCESS_EXIT","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_REASON","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SERVICE_STOP","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SYSTEM_SHUTDOWN","features":[68]},{"name":"CRYPT_OBJECT_LOCATOR_SPN_NAME_TYPE","features":[68]},{"name":"CRYPT_OBJID_TABLE","features":[68]},{"name":"CRYPT_OCSP_ONLY_RETRIEVAL","features":[68]},{"name":"CRYPT_OFFLINE_CHECK_RETRIEVAL","features":[68]},{"name":"CRYPT_OID_CREATE_COM_OBJECT_FUNC","features":[68]},{"name":"CRYPT_OID_DECODE_OBJECT_EX_FUNC","features":[68]},{"name":"CRYPT_OID_DECODE_OBJECT_FUNC","features":[68]},{"name":"CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[68]},{"name":"CRYPT_OID_ENCODE_OBJECT_EX_FUNC","features":[68]},{"name":"CRYPT_OID_ENCODE_OBJECT_FUNC","features":[68]},{"name":"CRYPT_OID_ENUM_PHYSICAL_STORE_FUNC","features":[68]},{"name":"CRYPT_OID_ENUM_SYSTEM_STORE_FUNC","features":[68]},{"name":"CRYPT_OID_EXPORT_PRIVATE_KEY_INFO_FUNC","features":[68]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[68]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[68]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FUNC","features":[68]},{"name":"CRYPT_OID_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[68]},{"name":"CRYPT_OID_FIND_LOCALIZED_NAME_FUNC","features":[68]},{"name":"CRYPT_OID_FIND_OID_INFO_FUNC","features":[68]},{"name":"CRYPT_OID_FORMAT_OBJECT_FUNC","features":[68]},{"name":"CRYPT_OID_FUNC_ENTRY","features":[68]},{"name":"CRYPT_OID_IMPORT_PRIVATE_KEY_INFO_FUNC","features":[68]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[68]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_FUNC","features":[68]},{"name":"CRYPT_OID_INFO","features":[68]},{"name":"CRYPT_OID_INFO_ALGID_KEY","features":[68]},{"name":"CRYPT_OID_INFO_CNG_ALGID_KEY","features":[68]},{"name":"CRYPT_OID_INFO_CNG_SIGN_KEY","features":[68]},{"name":"CRYPT_OID_INFO_ECC_PARAMETERS_ALGORITHM","features":[68]},{"name":"CRYPT_OID_INFO_ECC_WRAP_PARAMETERS_ALGORITHM","features":[68]},{"name":"CRYPT_OID_INFO_HASH_PARAMETERS_ALGORITHM","features":[68]},{"name":"CRYPT_OID_INFO_MGF1_PARAMETERS_ALGORITHM","features":[68]},{"name":"CRYPT_OID_INFO_NAME_KEY","features":[68]},{"name":"CRYPT_OID_INFO_NO_PARAMETERS_ALGORITHM","features":[68]},{"name":"CRYPT_OID_INFO_NO_SIGN_ALGORITHM","features":[68]},{"name":"CRYPT_OID_INFO_OAEP_PARAMETERS_ALGORITHM","features":[68]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[68]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[68]},{"name":"CRYPT_OID_INFO_OID_KEY","features":[68]},{"name":"CRYPT_OID_INFO_OID_KEY_FLAGS_MASK","features":[68]},{"name":"CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[68]},{"name":"CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[68]},{"name":"CRYPT_OID_INFO_SIGN_KEY","features":[68]},{"name":"CRYPT_OID_INHIBIT_SIGNATURE_FORMAT_FLAG","features":[68]},{"name":"CRYPT_OID_NO_NULL_ALGORITHM_PARA_FLAG","features":[68]},{"name":"CRYPT_OID_OPEN_STORE_PROV_FUNC","features":[68]},{"name":"CRYPT_OID_OPEN_SYSTEM_STORE_PROV_FUNC","features":[68]},{"name":"CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[68]},{"name":"CRYPT_OID_PUBKEY_ENCRYPT_ONLY_FLAG","features":[68]},{"name":"CRYPT_OID_PUBKEY_SIGN_ONLY_FLAG","features":[68]},{"name":"CRYPT_OID_REGISTER_PHYSICAL_STORE_FUNC","features":[68]},{"name":"CRYPT_OID_REGISTER_SYSTEM_STORE_FUNC","features":[68]},{"name":"CRYPT_OID_REGPATH","features":[68]},{"name":"CRYPT_OID_REG_DLL_VALUE_NAME","features":[68]},{"name":"CRYPT_OID_REG_ENCODING_TYPE_PREFIX","features":[68]},{"name":"CRYPT_OID_REG_FLAGS_VALUE_NAME","features":[68]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME","features":[68]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME_A","features":[68]},{"name":"CRYPT_OID_SIGN_AND_ENCODE_HASH_FUNC","features":[68]},{"name":"CRYPT_OID_SYSTEM_STORE_LOCATION_VALUE_NAME","features":[68]},{"name":"CRYPT_OID_UNREGISTER_PHYSICAL_STORE_FUNC","features":[68]},{"name":"CRYPT_OID_UNREGISTER_SYSTEM_STORE_FUNC","features":[68]},{"name":"CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[68]},{"name":"CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[68]},{"name":"CRYPT_OID_USE_PUBKEY_PARA_FOR_PKCS7_FLAG","features":[68]},{"name":"CRYPT_OID_VERIFY_CERTIFICATE_CHAIN_POLICY_FUNC","features":[68]},{"name":"CRYPT_OID_VERIFY_CTL_USAGE_FUNC","features":[68]},{"name":"CRYPT_OID_VERIFY_ENCODED_SIGNATURE_FUNC","features":[68]},{"name":"CRYPT_OID_VERIFY_REVOCATION_FUNC","features":[68]},{"name":"CRYPT_ONLINE","features":[68]},{"name":"CRYPT_OVERRIDE","features":[68]},{"name":"CRYPT_OVERWRITE","features":[68]},{"name":"CRYPT_OWF_REPL_LM_HASH","features":[68]},{"name":"CRYPT_PARAM_ASYNC_RETRIEVAL_COMPLETION","features":[68]},{"name":"CRYPT_PARAM_CANCEL_ASYNC_RETRIEVAL","features":[68]},{"name":"CRYPT_PASSWORD_CREDENTIALSA","features":[68]},{"name":"CRYPT_PASSWORD_CREDENTIALSW","features":[68]},{"name":"CRYPT_PKCS12_PBE_PARAMS","features":[68]},{"name":"CRYPT_PKCS8_EXPORT_PARAMS","features":[1,68]},{"name":"CRYPT_PKCS8_IMPORT_PARAMS","features":[1,68]},{"name":"CRYPT_POLICY_OID_GROUP_ID","features":[68]},{"name":"CRYPT_PREGEN","features":[68]},{"name":"CRYPT_PRIORITY_BOTTOM","features":[68]},{"name":"CRYPT_PRIORITY_TOP","features":[68]},{"name":"CRYPT_PRIVATE_KEY_INFO","features":[68]},{"name":"CRYPT_PROCESS_ISOLATE","features":[68]},{"name":"CRYPT_PROPERTY_REF","features":[68]},{"name":"CRYPT_PROVIDERS","features":[68]},{"name":"CRYPT_PROVIDER_REF","features":[68]},{"name":"CRYPT_PROVIDER_REFS","features":[68]},{"name":"CRYPT_PROVIDER_REG","features":[68]},{"name":"CRYPT_PROXY_CACHE_RETRIEVAL","features":[68]},{"name":"CRYPT_PSOURCE_ALGORITHM","features":[68]},{"name":"CRYPT_PSTORE","features":[68]},{"name":"CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[68]},{"name":"CRYPT_RANDOM_QUERY_STRING_RETRIEVAL","features":[68]},{"name":"CRYPT_RC2_128BIT_VERSION","features":[68]},{"name":"CRYPT_RC2_40BIT_VERSION","features":[68]},{"name":"CRYPT_RC2_56BIT_VERSION","features":[68]},{"name":"CRYPT_RC2_64BIT_VERSION","features":[68]},{"name":"CRYPT_RC2_CBC_PARAMETERS","features":[1,68]},{"name":"CRYPT_RC4_KEY_STATE","features":[68]},{"name":"CRYPT_RDN_ATTR_OID_GROUP_ID","features":[68]},{"name":"CRYPT_READ","features":[68]},{"name":"CRYPT_RECIPIENT","features":[68]},{"name":"CRYPT_REGISTER_FIRST_INDEX","features":[68]},{"name":"CRYPT_REGISTER_LAST_INDEX","features":[68]},{"name":"CRYPT_RETRIEVE_AUX_INFO","features":[1,68]},{"name":"CRYPT_RETRIEVE_MAX_ERROR_CONTENT_LENGTH","features":[68]},{"name":"CRYPT_RETRIEVE_MULTIPLE_OBJECTS","features":[68]},{"name":"CRYPT_RSAES_OAEP_PARAMETERS","features":[68]},{"name":"CRYPT_RSA_SSA_PSS_PARAMETERS","features":[68]},{"name":"CRYPT_SECRETDIGEST","features":[68]},{"name":"CRYPT_SEC_DESCR","features":[68]},{"name":"CRYPT_SEQUENCE_OF_ANY","features":[68]},{"name":"CRYPT_SERVER","features":[68]},{"name":"CRYPT_SET_HASH_PARAM","features":[68]},{"name":"CRYPT_SET_PROV_PARAM_ID","features":[68]},{"name":"CRYPT_SF","features":[68]},{"name":"CRYPT_SGC","features":[68]},{"name":"CRYPT_SGCKEY","features":[68]},{"name":"CRYPT_SGC_ENUM","features":[68]},{"name":"CRYPT_SIGN_ALG_OID_GROUP_ID","features":[68]},{"name":"CRYPT_SIGN_MESSAGE_PARA","features":[1,68]},{"name":"CRYPT_SILENT","features":[68]},{"name":"CRYPT_SMART_CARD_ROOT_INFO","features":[68]},{"name":"CRYPT_SMIME_CAPABILITIES","features":[68]},{"name":"CRYPT_SMIME_CAPABILITY","features":[68]},{"name":"CRYPT_SORTED_CTL_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[68]},{"name":"CRYPT_SSL2_FALLBACK","features":[68]},{"name":"CRYPT_STICKY_CACHE_RETRIEVAL","features":[68]},{"name":"CRYPT_STRING","features":[68]},{"name":"CRYPT_STRING_ANY","features":[68]},{"name":"CRYPT_STRING_BASE64","features":[68]},{"name":"CRYPT_STRING_BASE64HEADER","features":[68]},{"name":"CRYPT_STRING_BASE64REQUESTHEADER","features":[68]},{"name":"CRYPT_STRING_BASE64URI","features":[68]},{"name":"CRYPT_STRING_BASE64X509CRLHEADER","features":[68]},{"name":"CRYPT_STRING_BASE64_ANY","features":[68]},{"name":"CRYPT_STRING_BINARY","features":[68]},{"name":"CRYPT_STRING_ENCODEMASK","features":[68]},{"name":"CRYPT_STRING_HASHDATA","features":[68]},{"name":"CRYPT_STRING_HEX","features":[68]},{"name":"CRYPT_STRING_HEXADDR","features":[68]},{"name":"CRYPT_STRING_HEXASCII","features":[68]},{"name":"CRYPT_STRING_HEXASCIIADDR","features":[68]},{"name":"CRYPT_STRING_HEXRAW","features":[68]},{"name":"CRYPT_STRING_HEX_ANY","features":[68]},{"name":"CRYPT_STRING_NOCR","features":[68]},{"name":"CRYPT_STRING_NOCRLF","features":[68]},{"name":"CRYPT_STRING_PERCENTESCAPE","features":[68]},{"name":"CRYPT_STRING_RESERVED100","features":[68]},{"name":"CRYPT_STRING_RESERVED200","features":[68]},{"name":"CRYPT_STRING_STRICT","features":[68]},{"name":"CRYPT_SUCCEED","features":[68]},{"name":"CRYPT_TEMPLATE_OID_GROUP_ID","features":[68]},{"name":"CRYPT_TIMESTAMP_ACCURACY","features":[68]},{"name":"CRYPT_TIMESTAMP_CONTEXT","features":[1,68]},{"name":"CRYPT_TIMESTAMP_INFO","features":[1,68]},{"name":"CRYPT_TIMESTAMP_PARA","features":[1,68]},{"name":"CRYPT_TIMESTAMP_REQUEST","features":[1,68]},{"name":"CRYPT_TIMESTAMP_RESPONSE","features":[68]},{"name":"CRYPT_TIMESTAMP_RESPONSE_STATUS","features":[68]},{"name":"CRYPT_TIMESTAMP_VERSION","features":[68]},{"name":"CRYPT_TIME_STAMP_REQUEST_INFO","features":[68]},{"name":"CRYPT_TYPE2_FORMAT","features":[68]},{"name":"CRYPT_UI_PROMPT","features":[68]},{"name":"CRYPT_UM","features":[68]},{"name":"CRYPT_UNICODE_NAME_DECODE_DISABLE_IE4_UTF8_FLAG","features":[68]},{"name":"CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG","features":[68]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG","features":[68]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG","features":[68]},{"name":"CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG","features":[68]},{"name":"CRYPT_UPDATE_KEY","features":[68]},{"name":"CRYPT_URL_ARRAY","features":[68]},{"name":"CRYPT_URL_INFO","features":[68]},{"name":"CRYPT_USERDATA","features":[68]},{"name":"CRYPT_USER_DEFAULT","features":[68]},{"name":"CRYPT_USER_KEYSET","features":[68]},{"name":"CRYPT_USER_PROTECTED","features":[68]},{"name":"CRYPT_USER_PROTECTED_STRONG","features":[68]},{"name":"CRYPT_VERIFYCONTEXT","features":[68]},{"name":"CRYPT_VERIFY_CERT_FLAGS","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_CHECK_WEAK_HASH_FLAG","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_DISABLE_MD2_MD4_FLAG","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_NULL","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_RETURN_STRONG_PROPERTIES_FLAG","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_SET_STRONG_PROPERTIES_FLAG","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_STRONG_PROPERTIES_INFO","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_OCSP_BASIC_SIGNED_RESPONSE","features":[68]},{"name":"CRYPT_VERIFY_CERT_SIGN_WEAK_HASH_INFO","features":[68]},{"name":"CRYPT_VERIFY_CONTEXT_SIGNATURE","features":[68]},{"name":"CRYPT_VERIFY_DATA_HASH","features":[68]},{"name":"CRYPT_VERIFY_MESSAGE_PARA","features":[1,68]},{"name":"CRYPT_VOLATILE","features":[68]},{"name":"CRYPT_WIRE_ONLY_RETRIEVAL","features":[68]},{"name":"CRYPT_WRITE","features":[68]},{"name":"CRYPT_X931_FORMAT","features":[68]},{"name":"CRYPT_X942_COUNTER_BYTE_LENGTH","features":[68]},{"name":"CRYPT_X942_KEY_LENGTH_BYTE_LENGTH","features":[68]},{"name":"CRYPT_X942_OTHER_INFO","features":[68]},{"name":"CRYPT_XML_ALGORITHM","features":[68]},{"name":"CRYPT_XML_ALGORITHM_INFO","features":[68]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_ALGID","features":[68]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_SIGN_ALGID","features":[68]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_NAME","features":[68]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_URI","features":[68]},{"name":"CRYPT_XML_BLOB","features":[68]},{"name":"CRYPT_XML_BLOB_MAX","features":[68]},{"name":"CRYPT_XML_CHARSET","features":[68]},{"name":"CRYPT_XML_CHARSET_AUTO","features":[68]},{"name":"CRYPT_XML_CHARSET_UTF16BE","features":[68]},{"name":"CRYPT_XML_CHARSET_UTF16LE","features":[68]},{"name":"CRYPT_XML_CHARSET_UTF8","features":[68]},{"name":"CRYPT_XML_CRYPTOGRAPHIC_INTERFACE","features":[68]},{"name":"CRYPT_XML_DATA_BLOB","features":[68]},{"name":"CRYPT_XML_DATA_PROVIDER","features":[68]},{"name":"CRYPT_XML_DIGEST_REFERENCE_DATA_TRANSFORMED","features":[68]},{"name":"CRYPT_XML_DIGEST_VALUE_MAX","features":[68]},{"name":"CRYPT_XML_DOC_CTXT","features":[68]},{"name":"CRYPT_XML_E_ALGORITHM","features":[68]},{"name":"CRYPT_XML_E_BASE","features":[68]},{"name":"CRYPT_XML_E_ENCODING","features":[68]},{"name":"CRYPT_XML_E_HANDLE","features":[68]},{"name":"CRYPT_XML_E_HASH_FAILED","features":[68]},{"name":"CRYPT_XML_E_INVALID_DIGEST","features":[68]},{"name":"CRYPT_XML_E_INVALID_KEYVALUE","features":[68]},{"name":"CRYPT_XML_E_INVALID_SIGNATURE","features":[68]},{"name":"CRYPT_XML_E_LARGE","features":[68]},{"name":"CRYPT_XML_E_LAST","features":[68]},{"name":"CRYPT_XML_E_NON_UNIQUE_ID","features":[68]},{"name":"CRYPT_XML_E_OPERATION","features":[68]},{"name":"CRYPT_XML_E_SIGNER","features":[68]},{"name":"CRYPT_XML_E_SIGN_FAILED","features":[68]},{"name":"CRYPT_XML_E_TOO_MANY_SIGNATURES","features":[68]},{"name":"CRYPT_XML_E_TOO_MANY_TRANSFORMS","features":[68]},{"name":"CRYPT_XML_E_TRANSFORM","features":[68]},{"name":"CRYPT_XML_E_UNEXPECTED_XML","features":[68]},{"name":"CRYPT_XML_E_UNRESOLVED_REFERENCE","features":[68]},{"name":"CRYPT_XML_E_VERIFY_FAILED","features":[68]},{"name":"CRYPT_XML_FLAGS","features":[68]},{"name":"CRYPT_XML_FLAG_ADD_OBJECT_CREATE_COPY","features":[68]},{"name":"CRYPT_XML_FLAG_ALWAYS_RETURN_ENCODED_OBJECT","features":[68]},{"name":"CRYPT_XML_FLAG_CREATE_REFERENCE_AS_OBJECT","features":[68]},{"name":"CRYPT_XML_FLAG_DISABLE_EXTENSIONS","features":[68]},{"name":"CRYPT_XML_FLAG_ECDSA_DSIG11","features":[68]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NAME_FORMAT","features":[68]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NCNAME_FORMAT","features":[68]},{"name":"CRYPT_XML_FLAG_NO_SERIALIZE","features":[68]},{"name":"CRYPT_XML_GROUP_ID","features":[68]},{"name":"CRYPT_XML_GROUP_ID_HASH","features":[68]},{"name":"CRYPT_XML_GROUP_ID_SIGN","features":[68]},{"name":"CRYPT_XML_ID_MAX","features":[68]},{"name":"CRYPT_XML_ISSUER_SERIAL","features":[68]},{"name":"CRYPT_XML_KEYINFO_PARAM","features":[68]},{"name":"CRYPT_XML_KEYINFO_SPEC","features":[68]},{"name":"CRYPT_XML_KEYINFO_SPEC_ENCODED","features":[68]},{"name":"CRYPT_XML_KEYINFO_SPEC_NONE","features":[68]},{"name":"CRYPT_XML_KEYINFO_SPEC_PARAM","features":[68]},{"name":"CRYPT_XML_KEYINFO_TYPE","features":[68]},{"name":"CRYPT_XML_KEYINFO_TYPE_CUSTOM","features":[68]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYNAME","features":[68]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYVALUE","features":[68]},{"name":"CRYPT_XML_KEYINFO_TYPE_RETRIEVAL","features":[68]},{"name":"CRYPT_XML_KEYINFO_TYPE_X509DATA","features":[68]},{"name":"CRYPT_XML_KEY_DSA_KEY_VALUE","features":[68]},{"name":"CRYPT_XML_KEY_ECDSA_KEY_VALUE","features":[68]},{"name":"CRYPT_XML_KEY_INFO","features":[68]},{"name":"CRYPT_XML_KEY_INFO_ITEM","features":[68]},{"name":"CRYPT_XML_KEY_RSA_KEY_VALUE","features":[68]},{"name":"CRYPT_XML_KEY_VALUE","features":[68]},{"name":"CRYPT_XML_KEY_VALUE_TYPE","features":[68]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_CUSTOM","features":[68]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_DSA","features":[68]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_ECDSA","features":[68]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_RSA","features":[68]},{"name":"CRYPT_XML_OBJECT","features":[68]},{"name":"CRYPT_XML_OBJECTS_MAX","features":[68]},{"name":"CRYPT_XML_PROPERTY","features":[68]},{"name":"CRYPT_XML_PROPERTY_DOC_DECLARATION","features":[68]},{"name":"CRYPT_XML_PROPERTY_ID","features":[68]},{"name":"CRYPT_XML_PROPERTY_MAX_HEAP_SIZE","features":[68]},{"name":"CRYPT_XML_PROPERTY_MAX_SIGNATURES","features":[68]},{"name":"CRYPT_XML_PROPERTY_SIGNATURE_LOCATION","features":[68]},{"name":"CRYPT_XML_PROPERTY_XML_OUTPUT_CHARSET","features":[68]},{"name":"CRYPT_XML_REFERENCE","features":[68]},{"name":"CRYPT_XML_REFERENCES","features":[68]},{"name":"CRYPT_XML_REFERENCES_MAX","features":[68]},{"name":"CRYPT_XML_SIGNATURE","features":[68]},{"name":"CRYPT_XML_SIGNATURES_MAX","features":[68]},{"name":"CRYPT_XML_SIGNATURE_VALUE_MAX","features":[68]},{"name":"CRYPT_XML_SIGNED_INFO","features":[68]},{"name":"CRYPT_XML_SIGN_ADD_KEYVALUE","features":[68]},{"name":"CRYPT_XML_STATUS","features":[68]},{"name":"CRYPT_XML_STATUS_DIGESTING","features":[68]},{"name":"CRYPT_XML_STATUS_DIGEST_VALID","features":[68]},{"name":"CRYPT_XML_STATUS_ERROR_DIGEST_INVALID","features":[68]},{"name":"CRYPT_XML_STATUS_ERROR_KEYINFO_NOT_PARSED","features":[68]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_RESOLVED","features":[68]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_ALGORITHM","features":[68]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_TRANSFORM","features":[68]},{"name":"CRYPT_XML_STATUS_ERROR_SIGNATURE_INVALID","features":[68]},{"name":"CRYPT_XML_STATUS_ERROR_STATUS","features":[68]},{"name":"CRYPT_XML_STATUS_INFO_STATUS","features":[68]},{"name":"CRYPT_XML_STATUS_INTERNAL_REFERENCE","features":[68]},{"name":"CRYPT_XML_STATUS_KEY_AVAILABLE","features":[68]},{"name":"CRYPT_XML_STATUS_NO_ERROR","features":[68]},{"name":"CRYPT_XML_STATUS_OPENED_TO_ENCODE","features":[68]},{"name":"CRYPT_XML_STATUS_SIGNATURE_VALID","features":[68]},{"name":"CRYPT_XML_TRANSFORM_CHAIN_CONFIG","features":[68]},{"name":"CRYPT_XML_TRANSFORM_FLAGS","features":[68]},{"name":"CRYPT_XML_TRANSFORM_INFO","features":[68]},{"name":"CRYPT_XML_TRANSFORM_MAX","features":[68]},{"name":"CRYPT_XML_TRANSFORM_ON_NODESET","features":[68]},{"name":"CRYPT_XML_TRANSFORM_ON_STREAM","features":[68]},{"name":"CRYPT_XML_TRANSFORM_URI_QUERY_STRING","features":[68]},{"name":"CRYPT_XML_X509DATA","features":[68]},{"name":"CRYPT_XML_X509DATA_ITEM","features":[68]},{"name":"CRYPT_XML_X509DATA_TYPE","features":[68]},{"name":"CRYPT_XML_X509DATA_TYPE_CERTIFICATE","features":[68]},{"name":"CRYPT_XML_X509DATA_TYPE_CRL","features":[68]},{"name":"CRYPT_XML_X509DATA_TYPE_CUSTOM","features":[68]},{"name":"CRYPT_XML_X509DATA_TYPE_ISSUER_SERIAL","features":[68]},{"name":"CRYPT_XML_X509DATA_TYPE_SKI","features":[68]},{"name":"CRYPT_XML_X509DATA_TYPE_SUBJECT_NAME","features":[68]},{"name":"CRYPT_Y_ONLY","features":[68]},{"name":"CTL_ANY_SUBJECT_INFO","features":[68]},{"name":"CTL_ANY_SUBJECT_TYPE","features":[68]},{"name":"CTL_CERT_SUBJECT_TYPE","features":[68]},{"name":"CTL_CONTEXT","features":[1,68]},{"name":"CTL_ENTRY","features":[68]},{"name":"CTL_ENTRY_FROM_PROP_CHAIN_FLAG","features":[68]},{"name":"CTL_FIND_ANY","features":[68]},{"name":"CTL_FIND_EXISTING","features":[68]},{"name":"CTL_FIND_MD5_HASH","features":[68]},{"name":"CTL_FIND_NO_LIST_ID_CBDATA","features":[68]},{"name":"CTL_FIND_SAME_USAGE_FLAG","features":[68]},{"name":"CTL_FIND_SHA1_HASH","features":[68]},{"name":"CTL_FIND_SUBJECT","features":[68]},{"name":"CTL_FIND_SUBJECT_PARA","features":[1,68]},{"name":"CTL_FIND_USAGE","features":[68]},{"name":"CTL_FIND_USAGE_PARA","features":[1,68]},{"name":"CTL_INFO","features":[1,68]},{"name":"CTL_USAGE","features":[68]},{"name":"CTL_USAGE_MATCH","features":[68]},{"name":"CTL_V1","features":[68]},{"name":"CTL_VERIFY_USAGE_PARA","features":[68]},{"name":"CTL_VERIFY_USAGE_STATUS","features":[1,68]},{"name":"CUR_BLOB_VERSION","features":[68]},{"name":"CertAddCRLContextToStore","features":[1,68]},{"name":"CertAddCRLLinkToStore","features":[1,68]},{"name":"CertAddCTLContextToStore","features":[1,68]},{"name":"CertAddCTLLinkToStore","features":[1,68]},{"name":"CertAddCertificateContextToStore","features":[1,68]},{"name":"CertAddCertificateLinkToStore","features":[1,68]},{"name":"CertAddEncodedCRLToStore","features":[1,68]},{"name":"CertAddEncodedCTLToStore","features":[1,68]},{"name":"CertAddEncodedCertificateToStore","features":[1,68]},{"name":"CertAddEncodedCertificateToSystemStoreA","features":[1,68]},{"name":"CertAddEncodedCertificateToSystemStoreW","features":[1,68]},{"name":"CertAddEnhancedKeyUsageIdentifier","features":[1,68]},{"name":"CertAddRefServerOcspResponse","features":[68]},{"name":"CertAddRefServerOcspResponseContext","features":[68]},{"name":"CertAddSerializedElementToStore","features":[1,68]},{"name":"CertAddStoreToCollection","features":[1,68]},{"name":"CertAlgIdToOID","features":[68]},{"name":"CertCloseServerOcspResponse","features":[68]},{"name":"CertCloseStore","features":[1,68]},{"name":"CertCompareCertificate","features":[1,68]},{"name":"CertCompareCertificateName","features":[1,68]},{"name":"CertCompareIntegerBlob","features":[1,68]},{"name":"CertComparePublicKeyInfo","features":[1,68]},{"name":"CertControlStore","features":[1,68]},{"name":"CertCreateCRLContext","features":[1,68]},{"name":"CertCreateCTLContext","features":[1,68]},{"name":"CertCreateCTLEntryFromCertificateContextProperties","features":[1,68]},{"name":"CertCreateCertificateChainEngine","features":[1,68]},{"name":"CertCreateCertificateContext","features":[1,68]},{"name":"CertCreateContext","features":[1,68]},{"name":"CertCreateSelfSignCertificate","features":[1,68]},{"name":"CertDeleteCRLFromStore","features":[1,68]},{"name":"CertDeleteCTLFromStore","features":[1,68]},{"name":"CertDeleteCertificateFromStore","features":[1,68]},{"name":"CertDuplicateCRLContext","features":[1,68]},{"name":"CertDuplicateCTLContext","features":[1,68]},{"name":"CertDuplicateCertificateChain","features":[1,68]},{"name":"CertDuplicateCertificateContext","features":[1,68]},{"name":"CertDuplicateStore","features":[68]},{"name":"CertEnumCRLContextProperties","features":[1,68]},{"name":"CertEnumCRLsInStore","features":[1,68]},{"name":"CertEnumCTLContextProperties","features":[1,68]},{"name":"CertEnumCTLsInStore","features":[1,68]},{"name":"CertEnumCertificateContextProperties","features":[1,68]},{"name":"CertEnumCertificatesInStore","features":[1,68]},{"name":"CertEnumPhysicalStore","features":[1,68]},{"name":"CertEnumSubjectInSortedCTL","features":[1,68]},{"name":"CertEnumSystemStore","features":[1,68]},{"name":"CertEnumSystemStoreLocation","features":[1,68]},{"name":"CertFindAttribute","features":[68]},{"name":"CertFindCRLInStore","features":[1,68]},{"name":"CertFindCTLInStore","features":[1,68]},{"name":"CertFindCertificateInCRL","features":[1,68]},{"name":"CertFindCertificateInStore","features":[1,68]},{"name":"CertFindChainInStore","features":[1,68]},{"name":"CertFindExtension","features":[1,68]},{"name":"CertFindRDNAttr","features":[68]},{"name":"CertFindSubjectInCTL","features":[1,68]},{"name":"CertFindSubjectInSortedCTL","features":[1,68]},{"name":"CertFreeCRLContext","features":[1,68]},{"name":"CertFreeCTLContext","features":[1,68]},{"name":"CertFreeCertificateChain","features":[1,68]},{"name":"CertFreeCertificateChainEngine","features":[68]},{"name":"CertFreeCertificateChainList","features":[1,68]},{"name":"CertFreeCertificateContext","features":[1,68]},{"name":"CertFreeServerOcspResponseContext","features":[68]},{"name":"CertGetCRLContextProperty","features":[1,68]},{"name":"CertGetCRLFromStore","features":[1,68]},{"name":"CertGetCTLContextProperty","features":[1,68]},{"name":"CertGetCertificateChain","features":[1,68]},{"name":"CertGetCertificateContextProperty","features":[1,68]},{"name":"CertGetEnhancedKeyUsage","features":[1,68]},{"name":"CertGetIntendedKeyUsage","features":[1,68]},{"name":"CertGetIssuerCertificateFromStore","features":[1,68]},{"name":"CertGetNameStringA","features":[1,68]},{"name":"CertGetNameStringW","features":[1,68]},{"name":"CertGetPublicKeyLength","features":[68]},{"name":"CertGetServerOcspResponseContext","features":[68]},{"name":"CertGetStoreProperty","features":[1,68]},{"name":"CertGetSubjectCertificateFromStore","features":[1,68]},{"name":"CertGetValidUsages","features":[1,68]},{"name":"CertIsRDNAttrsInCertificateName","features":[1,68]},{"name":"CertIsStrongHashToSign","features":[1,68]},{"name":"CertIsValidCRLForCertificate","features":[1,68]},{"name":"CertIsWeakHash","features":[1,68]},{"name":"CertKeyType","features":[68]},{"name":"CertNameToStrA","features":[68]},{"name":"CertNameToStrW","features":[68]},{"name":"CertOIDToAlgId","features":[68]},{"name":"CertOpenServerOcspResponse","features":[1,68]},{"name":"CertOpenStore","features":[68]},{"name":"CertOpenSystemStoreA","features":[68]},{"name":"CertOpenSystemStoreW","features":[68]},{"name":"CertRDNValueToStrA","features":[68]},{"name":"CertRDNValueToStrW","features":[68]},{"name":"CertRegisterPhysicalStore","features":[1,68]},{"name":"CertRegisterSystemStore","features":[1,68]},{"name":"CertRemoveEnhancedKeyUsageIdentifier","features":[1,68]},{"name":"CertRemoveStoreFromCollection","features":[68]},{"name":"CertResyncCertificateChainEngine","features":[1,68]},{"name":"CertRetrieveLogoOrBiometricInfo","features":[1,68]},{"name":"CertSaveStore","features":[1,68]},{"name":"CertSelectCertificateChains","features":[1,68]},{"name":"CertSerializeCRLStoreElement","features":[1,68]},{"name":"CertSerializeCTLStoreElement","features":[1,68]},{"name":"CertSerializeCertificateStoreElement","features":[1,68]},{"name":"CertSetCRLContextProperty","features":[1,68]},{"name":"CertSetCTLContextProperty","features":[1,68]},{"name":"CertSetCertificateContextPropertiesFromCTLEntry","features":[1,68]},{"name":"CertSetCertificateContextProperty","features":[1,68]},{"name":"CertSetEnhancedKeyUsage","features":[1,68]},{"name":"CertSetStoreProperty","features":[1,68]},{"name":"CertStrToNameA","features":[1,68]},{"name":"CertStrToNameW","features":[1,68]},{"name":"CertUnregisterPhysicalStore","features":[1,68]},{"name":"CertUnregisterSystemStore","features":[1,68]},{"name":"CertVerifyCRLRevocation","features":[1,68]},{"name":"CertVerifyCRLTimeValidity","features":[1,68]},{"name":"CertVerifyCTLUsage","features":[1,68]},{"name":"CertVerifyCertificateChainPolicy","features":[1,68]},{"name":"CertVerifyRevocation","features":[1,68]},{"name":"CertVerifySubjectCertificateContext","features":[1,68]},{"name":"CertVerifyTimeValidity","features":[1,68]},{"name":"CertVerifyValidityNesting","features":[1,68]},{"name":"CloseCryptoHandle","features":[68]},{"name":"CryptAcquireCertificatePrivateKey","features":[1,68]},{"name":"CryptAcquireContextA","features":[1,68]},{"name":"CryptAcquireContextW","features":[1,68]},{"name":"CryptBinaryToStringA","features":[1,68]},{"name":"CryptBinaryToStringW","features":[1,68]},{"name":"CryptCloseAsyncHandle","features":[1,68]},{"name":"CryptContextAddRef","features":[1,68]},{"name":"CryptCreateAsyncHandle","features":[1,68]},{"name":"CryptCreateHash","features":[1,68]},{"name":"CryptCreateKeyIdentifierFromCSP","features":[1,68]},{"name":"CryptDecodeMessage","features":[1,68]},{"name":"CryptDecodeObject","features":[1,68]},{"name":"CryptDecodeObjectEx","features":[1,68]},{"name":"CryptDecrypt","features":[1,68]},{"name":"CryptDecryptAndVerifyMessageSignature","features":[1,68]},{"name":"CryptDecryptMessage","features":[1,68]},{"name":"CryptDeriveKey","features":[1,68]},{"name":"CryptDestroyHash","features":[1,68]},{"name":"CryptDestroyKey","features":[1,68]},{"name":"CryptDuplicateHash","features":[1,68]},{"name":"CryptDuplicateKey","features":[1,68]},{"name":"CryptEncodeObject","features":[1,68]},{"name":"CryptEncodeObjectEx","features":[1,68]},{"name":"CryptEncrypt","features":[1,68]},{"name":"CryptEncryptMessage","features":[1,68]},{"name":"CryptEnumKeyIdentifierProperties","features":[1,68]},{"name":"CryptEnumOIDFunction","features":[1,68]},{"name":"CryptEnumOIDInfo","features":[1,68]},{"name":"CryptEnumProviderTypesA","features":[1,68]},{"name":"CryptEnumProviderTypesW","features":[1,68]},{"name":"CryptEnumProvidersA","features":[1,68]},{"name":"CryptEnumProvidersW","features":[1,68]},{"name":"CryptExportKey","features":[1,68]},{"name":"CryptExportPKCS8","features":[1,68]},{"name":"CryptExportPublicKeyInfo","features":[1,68]},{"name":"CryptExportPublicKeyInfoEx","features":[1,68]},{"name":"CryptExportPublicKeyInfoFromBCryptKeyHandle","features":[1,68]},{"name":"CryptFindCertificateKeyProvInfo","features":[1,68]},{"name":"CryptFindLocalizedName","features":[68]},{"name":"CryptFindOIDInfo","features":[68]},{"name":"CryptFormatObject","features":[1,68]},{"name":"CryptFreeOIDFunctionAddress","features":[1,68]},{"name":"CryptGenKey","features":[1,68]},{"name":"CryptGenRandom","features":[1,68]},{"name":"CryptGetAsyncParam","features":[1,68]},{"name":"CryptGetDefaultOIDDllList","features":[1,68]},{"name":"CryptGetDefaultOIDFunctionAddress","features":[1,68]},{"name":"CryptGetDefaultProviderA","features":[1,68]},{"name":"CryptGetDefaultProviderW","features":[1,68]},{"name":"CryptGetHashParam","features":[1,68]},{"name":"CryptGetKeyIdentifierProperty","features":[1,68]},{"name":"CryptGetKeyParam","features":[1,68]},{"name":"CryptGetMessageCertificates","features":[68]},{"name":"CryptGetMessageSignerCount","features":[68]},{"name":"CryptGetOIDFunctionAddress","features":[1,68]},{"name":"CryptGetOIDFunctionValue","features":[1,68]},{"name":"CryptGetObjectUrl","features":[1,68]},{"name":"CryptGetProvParam","features":[1,68]},{"name":"CryptGetUserKey","features":[1,68]},{"name":"CryptHashCertificate","features":[1,68]},{"name":"CryptHashCertificate2","features":[1,68]},{"name":"CryptHashData","features":[1,68]},{"name":"CryptHashMessage","features":[1,68]},{"name":"CryptHashPublicKeyInfo","features":[1,68]},{"name":"CryptHashSessionKey","features":[1,68]},{"name":"CryptHashToBeSigned","features":[1,68]},{"name":"CryptImportKey","features":[1,68]},{"name":"CryptImportPKCS8","features":[1,68]},{"name":"CryptImportPublicKeyInfo","features":[1,68]},{"name":"CryptImportPublicKeyInfoEx","features":[1,68]},{"name":"CryptImportPublicKeyInfoEx2","features":[1,68]},{"name":"CryptInitOIDFunctionSet","features":[68]},{"name":"CryptInstallCancelRetrieval","features":[1,68]},{"name":"CryptInstallDefaultContext","features":[1,68]},{"name":"CryptInstallOIDFunctionAddress","features":[1,68]},{"name":"CryptMemAlloc","features":[68]},{"name":"CryptMemFree","features":[68]},{"name":"CryptMemRealloc","features":[68]},{"name":"CryptMsgCalculateEncodedLength","features":[68]},{"name":"CryptMsgClose","features":[1,68]},{"name":"CryptMsgControl","features":[1,68]},{"name":"CryptMsgCountersign","features":[1,68]},{"name":"CryptMsgCountersignEncoded","features":[1,68]},{"name":"CryptMsgDuplicate","features":[68]},{"name":"CryptMsgEncodeAndSignCTL","features":[1,68]},{"name":"CryptMsgGetAndVerifySigner","features":[1,68]},{"name":"CryptMsgGetParam","features":[1,68]},{"name":"CryptMsgOpenToDecode","features":[1,68]},{"name":"CryptMsgOpenToEncode","features":[1,68]},{"name":"CryptMsgSignCTL","features":[1,68]},{"name":"CryptMsgUpdate","features":[1,68]},{"name":"CryptMsgVerifyCountersignatureEncoded","features":[1,68]},{"name":"CryptMsgVerifyCountersignatureEncodedEx","features":[1,68]},{"name":"CryptProtectData","features":[1,68]},{"name":"CryptProtectMemory","features":[1,68]},{"name":"CryptQueryObject","features":[1,68]},{"name":"CryptRegisterDefaultOIDFunction","features":[1,68]},{"name":"CryptRegisterOIDFunction","features":[1,68]},{"name":"CryptRegisterOIDInfo","features":[1,68]},{"name":"CryptReleaseContext","features":[1,68]},{"name":"CryptRetrieveObjectByUrlA","features":[1,68]},{"name":"CryptRetrieveObjectByUrlW","features":[1,68]},{"name":"CryptRetrieveTimeStamp","features":[1,68]},{"name":"CryptSetAsyncParam","features":[1,68]},{"name":"CryptSetHashParam","features":[1,68]},{"name":"CryptSetKeyIdentifierProperty","features":[1,68]},{"name":"CryptSetKeyParam","features":[1,68]},{"name":"CryptSetOIDFunctionValue","features":[1,68,49]},{"name":"CryptSetProvParam","features":[1,68]},{"name":"CryptSetProviderA","features":[1,68]},{"name":"CryptSetProviderExA","features":[1,68]},{"name":"CryptSetProviderExW","features":[1,68]},{"name":"CryptSetProviderW","features":[1,68]},{"name":"CryptSignAndEncodeCertificate","features":[1,68]},{"name":"CryptSignAndEncryptMessage","features":[1,68]},{"name":"CryptSignCertificate","features":[1,68]},{"name":"CryptSignHashA","features":[1,68]},{"name":"CryptSignHashW","features":[1,68]},{"name":"CryptSignMessage","features":[1,68]},{"name":"CryptSignMessageWithKey","features":[1,68]},{"name":"CryptStringToBinaryA","features":[1,68]},{"name":"CryptStringToBinaryW","features":[1,68]},{"name":"CryptUninstallCancelRetrieval","features":[1,68]},{"name":"CryptUninstallDefaultContext","features":[1,68]},{"name":"CryptUnprotectData","features":[1,68]},{"name":"CryptUnprotectMemory","features":[1,68]},{"name":"CryptUnregisterDefaultOIDFunction","features":[1,68]},{"name":"CryptUnregisterOIDFunction","features":[1,68]},{"name":"CryptUnregisterOIDInfo","features":[1,68]},{"name":"CryptUpdateProtectedState","features":[1,68]},{"name":"CryptVerifyCertificateSignature","features":[1,68]},{"name":"CryptVerifyCertificateSignatureEx","features":[1,68]},{"name":"CryptVerifyDetachedMessageHash","features":[1,68]},{"name":"CryptVerifyDetachedMessageSignature","features":[1,68]},{"name":"CryptVerifyMessageHash","features":[1,68]},{"name":"CryptVerifyMessageSignature","features":[1,68]},{"name":"CryptVerifyMessageSignatureWithKey","features":[1,68]},{"name":"CryptVerifySignatureA","features":[1,68]},{"name":"CryptVerifySignatureW","features":[1,68]},{"name":"CryptVerifyTimeStampSignature","features":[1,68]},{"name":"CryptXmlAddObject","features":[68]},{"name":"CryptXmlClose","features":[68]},{"name":"CryptXmlCreateReference","features":[68]},{"name":"CryptXmlDigestReference","features":[68]},{"name":"CryptXmlDllCloseDigest","features":[68]},{"name":"CryptXmlDllCreateDigest","features":[68]},{"name":"CryptXmlDllCreateKey","features":[68]},{"name":"CryptXmlDllDigestData","features":[68]},{"name":"CryptXmlDllEncodeAlgorithm","features":[68]},{"name":"CryptXmlDllEncodeKeyValue","features":[68]},{"name":"CryptXmlDllFinalizeDigest","features":[68]},{"name":"CryptXmlDllGetAlgorithmInfo","features":[68]},{"name":"CryptXmlDllGetInterface","features":[68]},{"name":"CryptXmlDllSignData","features":[68]},{"name":"CryptXmlDllVerifySignature","features":[68]},{"name":"CryptXmlEncode","features":[68]},{"name":"CryptXmlEnumAlgorithmInfo","features":[1,68]},{"name":"CryptXmlFindAlgorithmInfo","features":[68]},{"name":"CryptXmlGetAlgorithmInfo","features":[68]},{"name":"CryptXmlGetDocContext","features":[68]},{"name":"CryptXmlGetReference","features":[68]},{"name":"CryptXmlGetSignature","features":[68]},{"name":"CryptXmlGetStatus","features":[68]},{"name":"CryptXmlGetTransforms","features":[68]},{"name":"CryptXmlImportPublicKey","features":[68]},{"name":"CryptXmlOpenToDecode","features":[68]},{"name":"CryptXmlOpenToEncode","features":[68]},{"name":"CryptXmlSetHMACSecret","features":[68]},{"name":"CryptXmlSign","features":[68]},{"name":"CryptXmlVerifySignature","features":[68]},{"name":"DSAFIPSVERSION_ENUM","features":[68]},{"name":"DSA_FIPS186_2","features":[68]},{"name":"DSA_FIPS186_3","features":[68]},{"name":"DSA_HASH_ALGORITHM_SHA1","features":[68]},{"name":"DSA_HASH_ALGORITHM_SHA256","features":[68]},{"name":"DSA_HASH_ALGORITHM_SHA512","features":[68]},{"name":"DSSSEED","features":[68]},{"name":"Decrypt","features":[1,68]},{"name":"Direction","features":[68]},{"name":"DirectionDecrypt","features":[68]},{"name":"DirectionEncrypt","features":[68]},{"name":"ECC_CMS_SHARED_INFO","features":[68]},{"name":"ECC_CURVE_ALG_ID_ENUM","features":[68]},{"name":"ECC_CURVE_TYPE_ENUM","features":[68]},{"name":"ENDPOINTADDRESS","features":[68]},{"name":"ENDPOINTADDRESS2","features":[68]},{"name":"ENUM_CEPSETUPPROP_AUTHENTICATION","features":[68]},{"name":"ENUM_CEPSETUPPROP_CAINFORMATION","features":[68]},{"name":"ENUM_CEPSETUPPROP_CHALLENGEURL","features":[68]},{"name":"ENUM_CEPSETUPPROP_EXCHANGEKEYINFORMATION","features":[68]},{"name":"ENUM_CEPSETUPPROP_KEYBASED_RENEWAL","features":[68]},{"name":"ENUM_CEPSETUPPROP_MSCEPURL","features":[68]},{"name":"ENUM_CEPSETUPPROP_RANAME_CITY","features":[68]},{"name":"ENUM_CEPSETUPPROP_RANAME_CN","features":[68]},{"name":"ENUM_CEPSETUPPROP_RANAME_COMPANY","features":[68]},{"name":"ENUM_CEPSETUPPROP_RANAME_COUNTRY","features":[68]},{"name":"ENUM_CEPSETUPPROP_RANAME_DEPT","features":[68]},{"name":"ENUM_CEPSETUPPROP_RANAME_EMAIL","features":[68]},{"name":"ENUM_CEPSETUPPROP_RANAME_STATE","features":[68]},{"name":"ENUM_CEPSETUPPROP_SIGNINGKEYINFORMATION","features":[68]},{"name":"ENUM_CEPSETUPPROP_SSLCERTHASH","features":[68]},{"name":"ENUM_CEPSETUPPROP_URL","features":[68]},{"name":"ENUM_CEPSETUPPROP_USECHALLENGE","features":[68]},{"name":"ENUM_CEPSETUPPROP_USELOCALSYSTEM","features":[68]},{"name":"ENUM_CESSETUPPROP_ALLOW_KEYBASED_RENEWAL","features":[68]},{"name":"ENUM_CESSETUPPROP_AUTHENTICATION","features":[68]},{"name":"ENUM_CESSETUPPROP_CACONFIG","features":[68]},{"name":"ENUM_CESSETUPPROP_RENEWALONLY","features":[68]},{"name":"ENUM_CESSETUPPROP_SSLCERTHASH","features":[68]},{"name":"ENUM_CESSETUPPROP_URL","features":[68]},{"name":"ENUM_CESSETUPPROP_USE_IISAPPPOOLIDENTITY","features":[68]},{"name":"ENUM_SETUPPROP_CADSSUFFIX","features":[68]},{"name":"ENUM_SETUPPROP_CAKEYINFORMATION","features":[68]},{"name":"ENUM_SETUPPROP_CANAME","features":[68]},{"name":"ENUM_SETUPPROP_CATYPE","features":[68]},{"name":"ENUM_SETUPPROP_DATABASEDIRECTORY","features":[68]},{"name":"ENUM_SETUPPROP_EXPIRATIONDATE","features":[68]},{"name":"ENUM_SETUPPROP_INTERACTIVE","features":[68]},{"name":"ENUM_SETUPPROP_INVALID","features":[68]},{"name":"ENUM_SETUPPROP_LOGDIRECTORY","features":[68]},{"name":"ENUM_SETUPPROP_PARENTCAMACHINE","features":[68]},{"name":"ENUM_SETUPPROP_PARENTCANAME","features":[68]},{"name":"ENUM_SETUPPROP_PRESERVEDATABASE","features":[68]},{"name":"ENUM_SETUPPROP_REQUESTFILE","features":[68]},{"name":"ENUM_SETUPPROP_SHAREDFOLDER","features":[68]},{"name":"ENUM_SETUPPROP_VALIDITYPERIOD","features":[68]},{"name":"ENUM_SETUPPROP_VALIDITYPERIODUNIT","features":[68]},{"name":"ENUM_SETUPPROP_WEBCAMACHINE","features":[68]},{"name":"ENUM_SETUPPROP_WEBCANAME","features":[68]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_PARA","features":[68]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[68]},{"name":"EXPORT_PRIVATE_KEYS","features":[68]},{"name":"EXPO_OFFLOAD_FUNC_NAME","features":[68]},{"name":"EXPO_OFFLOAD_REG_VALUE","features":[68]},{"name":"E_ICARD_ARGUMENT","features":[68]},{"name":"E_ICARD_COMMUNICATION","features":[68]},{"name":"E_ICARD_DATA_ACCESS","features":[68]},{"name":"E_ICARD_EXPORT","features":[68]},{"name":"E_ICARD_FAIL","features":[68]},{"name":"E_ICARD_FAILED_REQUIRED_CLAIMS","features":[68]},{"name":"E_ICARD_IDENTITY","features":[68]},{"name":"E_ICARD_IMPORT","features":[68]},{"name":"E_ICARD_INFORMATIONCARD","features":[68]},{"name":"E_ICARD_INVALID_PROOF_KEY","features":[68]},{"name":"E_ICARD_LOGOVALIDATION","features":[68]},{"name":"E_ICARD_MISSING_APPLIESTO","features":[68]},{"name":"E_ICARD_PASSWORDVALIDATION","features":[68]},{"name":"E_ICARD_POLICY","features":[68]},{"name":"E_ICARD_PROCESSDIED","features":[68]},{"name":"E_ICARD_REFRESH_REQUIRED","features":[68]},{"name":"E_ICARD_REQUEST","features":[68]},{"name":"E_ICARD_SERVICE","features":[68]},{"name":"E_ICARD_SERVICEBUSY","features":[68]},{"name":"E_ICARD_SHUTTINGDOWN","features":[68]},{"name":"E_ICARD_STOREKEY","features":[68]},{"name":"E_ICARD_STORE_IMPORT","features":[68]},{"name":"E_ICARD_TOKENCREATION","features":[68]},{"name":"E_ICARD_TRUSTEXCHANGE","features":[68]},{"name":"E_ICARD_UI_INITIALIZATION","features":[68]},{"name":"E_ICARD_UNKNOWN_REFERENCE","features":[68]},{"name":"E_ICARD_UNTRUSTED","features":[68]},{"name":"E_ICARD_USERCANCELLED","features":[68]},{"name":"Encrypt","features":[1,68]},{"name":"FindCertsByIssuer","features":[68]},{"name":"FreeToken","features":[1,68]},{"name":"GENERIC_XML_TOKEN","features":[1,68]},{"name":"GenerateDerivedKey","features":[68]},{"name":"GetBrowserToken","features":[68]},{"name":"GetCryptoTransform","features":[68]},{"name":"GetKeyedHash","features":[68]},{"name":"GetToken","features":[1,68]},{"name":"HASHALGORITHM_ENUM","features":[68]},{"name":"HCERTCHAINENGINE","features":[68]},{"name":"HCERTSTORE","features":[68]},{"name":"HCERTSTOREPROV","features":[68]},{"name":"HCRYPTASYNC","features":[68]},{"name":"HCRYPTPROV_LEGACY","features":[68]},{"name":"HCRYPTPROV_OR_NCRYPT_KEY_HANDLE","features":[68]},{"name":"HMAC_INFO","features":[68]},{"name":"HP_ALGID","features":[68]},{"name":"HP_HASHSIZE","features":[68]},{"name":"HP_HASHVAL","features":[68]},{"name":"HP_HMAC_INFO","features":[68]},{"name":"HP_TLS1PRF_LABEL","features":[68]},{"name":"HP_TLS1PRF_SEED","features":[68]},{"name":"HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE","features":[68]},{"name":"HTTPSPolicyCallbackData","features":[68]},{"name":"HandleType","features":[68]},{"name":"HashCore","features":[68]},{"name":"HashFinal","features":[68]},{"name":"ICertSrvSetup","features":[68]},{"name":"ICertSrvSetupKeyInformation","features":[68]},{"name":"ICertSrvSetupKeyInformationCollection","features":[68]},{"name":"ICertificateEnrollmentPolicyServerSetup","features":[68]},{"name":"ICertificateEnrollmentServerSetup","features":[68]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_1","features":[68]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_2","features":[68]},{"name":"IFX_RSA_KEYGEN_VUL_NOT_AFFECTED","features":[68]},{"name":"IMSCEPSetup","features":[68]},{"name":"INFORMATIONCARD_ASYMMETRIC_CRYPTO_PARAMETERS","features":[68]},{"name":"INFORMATIONCARD_CRYPTO_HANDLE","features":[68]},{"name":"INFORMATIONCARD_HASH_CRYPTO_PARAMETERS","features":[1,68]},{"name":"INFORMATIONCARD_SYMMETRIC_CRYPTO_PARAMETERS","features":[68]},{"name":"INFORMATIONCARD_TRANSFORM_CRYPTO_PARAMETERS","features":[1,68]},{"name":"INTERNATIONAL_USAGE","features":[68]},{"name":"ImportInformationCard","features":[68]},{"name":"KDF_ALGORITHMID","features":[68]},{"name":"KDF_CONTEXT","features":[68]},{"name":"KDF_GENERIC_PARAMETER","features":[68]},{"name":"KDF_HASH_ALGORITHM","features":[68]},{"name":"KDF_HKDF_INFO","features":[68]},{"name":"KDF_HKDF_SALT","features":[68]},{"name":"KDF_HMAC_KEY","features":[68]},{"name":"KDF_ITERATION_COUNT","features":[68]},{"name":"KDF_KEYBITLENGTH","features":[68]},{"name":"KDF_LABEL","features":[68]},{"name":"KDF_PARTYUINFO","features":[68]},{"name":"KDF_PARTYVINFO","features":[68]},{"name":"KDF_SALT","features":[68]},{"name":"KDF_SECRET_APPEND","features":[68]},{"name":"KDF_SECRET_HANDLE","features":[68]},{"name":"KDF_SECRET_PREPEND","features":[68]},{"name":"KDF_SUPPPRIVINFO","features":[68]},{"name":"KDF_SUPPPUBINFO","features":[68]},{"name":"KDF_TLS_PRF_LABEL","features":[68]},{"name":"KDF_TLS_PRF_PROTOCOL","features":[68]},{"name":"KDF_TLS_PRF_SEED","features":[68]},{"name":"KDF_USE_SECRET_AS_HMAC_KEY_FLAG","features":[68]},{"name":"KEYSTATEBLOB","features":[68]},{"name":"KEY_LENGTH_MASK","features":[68]},{"name":"KEY_TYPE_SUBTYPE","features":[68]},{"name":"KP_ADMIN_PIN","features":[68]},{"name":"KP_ALGID","features":[68]},{"name":"KP_BLOCKLEN","features":[68]},{"name":"KP_CERTIFICATE","features":[68]},{"name":"KP_CLEAR_KEY","features":[68]},{"name":"KP_CLIENT_RANDOM","features":[68]},{"name":"KP_CMS_DH_KEY_INFO","features":[68]},{"name":"KP_CMS_KEY_INFO","features":[68]},{"name":"KP_EFFECTIVE_KEYLEN","features":[68]},{"name":"KP_G","features":[68]},{"name":"KP_GET_USE_COUNT","features":[68]},{"name":"KP_HIGHEST_VERSION","features":[68]},{"name":"KP_INFO","features":[68]},{"name":"KP_IV","features":[68]},{"name":"KP_KEYEXCHANGE_PIN","features":[68]},{"name":"KP_KEYLEN","features":[68]},{"name":"KP_KEYVAL","features":[68]},{"name":"KP_MODE","features":[68]},{"name":"KP_MODE_BITS","features":[68]},{"name":"KP_OAEP_PARAMS","features":[68]},{"name":"KP_P","features":[68]},{"name":"KP_PADDING","features":[68]},{"name":"KP_PERMISSIONS","features":[68]},{"name":"KP_PIN_ID","features":[68]},{"name":"KP_PIN_INFO","features":[68]},{"name":"KP_PRECOMP_MD5","features":[68]},{"name":"KP_PRECOMP_SHA","features":[68]},{"name":"KP_PREHASH","features":[68]},{"name":"KP_PUB_EX_LEN","features":[68]},{"name":"KP_PUB_EX_VAL","features":[68]},{"name":"KP_PUB_PARAMS","features":[68]},{"name":"KP_Q","features":[68]},{"name":"KP_RA","features":[68]},{"name":"KP_RB","features":[68]},{"name":"KP_ROUNDS","features":[68]},{"name":"KP_RP","features":[68]},{"name":"KP_SALT","features":[68]},{"name":"KP_SALT_EX","features":[68]},{"name":"KP_SCHANNEL_ALG","features":[68]},{"name":"KP_SERVER_RANDOM","features":[68]},{"name":"KP_SIGNATURE_PIN","features":[68]},{"name":"KP_VERIFY_PARAMS","features":[68]},{"name":"KP_X","features":[68]},{"name":"KP_Y","features":[68]},{"name":"KeyTypeHardware","features":[68]},{"name":"KeyTypeOther","features":[68]},{"name":"KeyTypePassport","features":[68]},{"name":"KeyTypePassportRemote","features":[68]},{"name":"KeyTypePassportSmartCard","features":[68]},{"name":"KeyTypePhysicalSmartCard","features":[68]},{"name":"KeyTypeSelfSigned","features":[68]},{"name":"KeyTypeSoftware","features":[68]},{"name":"KeyTypeVirtualSmartCard","features":[68]},{"name":"LEGACY_DH_PRIVATE_BLOB","features":[68]},{"name":"LEGACY_DH_PUBLIC_BLOB","features":[68]},{"name":"LEGACY_DSA_PRIVATE_BLOB","features":[68]},{"name":"LEGACY_DSA_PUBLIC_BLOB","features":[68]},{"name":"LEGACY_DSA_V2_PRIVATE_BLOB","features":[68]},{"name":"LEGACY_DSA_V2_PUBLIC_BLOB","features":[68]},{"name":"LEGACY_RSAPRIVATE_BLOB","features":[68]},{"name":"LEGACY_RSAPUBLIC_BLOB","features":[68]},{"name":"MAXUIDLEN","features":[68]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_CHECK_APPLICATION_ROOT_FLAG","features":[68]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_DISABLE_FLIGHT_ROOT_FLAG","features":[68]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_ENABLE_TEST_ROOT_FLAG","features":[68]},{"name":"MSCEPSetupProperty","features":[68]},{"name":"MS_DEF_DH_SCHANNEL_PROV","features":[68]},{"name":"MS_DEF_DH_SCHANNEL_PROV_A","features":[68]},{"name":"MS_DEF_DH_SCHANNEL_PROV_W","features":[68]},{"name":"MS_DEF_DSS_DH_PROV","features":[68]},{"name":"MS_DEF_DSS_DH_PROV_A","features":[68]},{"name":"MS_DEF_DSS_DH_PROV_W","features":[68]},{"name":"MS_DEF_DSS_PROV","features":[68]},{"name":"MS_DEF_DSS_PROV_A","features":[68]},{"name":"MS_DEF_DSS_PROV_W","features":[68]},{"name":"MS_DEF_PROV","features":[68]},{"name":"MS_DEF_PROV_A","features":[68]},{"name":"MS_DEF_PROV_W","features":[68]},{"name":"MS_DEF_RSA_SCHANNEL_PROV","features":[68]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_A","features":[68]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_W","features":[68]},{"name":"MS_DEF_RSA_SIG_PROV","features":[68]},{"name":"MS_DEF_RSA_SIG_PROV_A","features":[68]},{"name":"MS_DEF_RSA_SIG_PROV_W","features":[68]},{"name":"MS_ENHANCED_PROV","features":[68]},{"name":"MS_ENHANCED_PROV_A","features":[68]},{"name":"MS_ENHANCED_PROV_W","features":[68]},{"name":"MS_ENH_DSS_DH_PROV","features":[68]},{"name":"MS_ENH_DSS_DH_PROV_A","features":[68]},{"name":"MS_ENH_DSS_DH_PROV_W","features":[68]},{"name":"MS_ENH_RSA_AES_PROV","features":[68]},{"name":"MS_ENH_RSA_AES_PROV_A","features":[68]},{"name":"MS_ENH_RSA_AES_PROV_W","features":[68]},{"name":"MS_ENH_RSA_AES_PROV_XP","features":[68]},{"name":"MS_ENH_RSA_AES_PROV_XP_A","features":[68]},{"name":"MS_ENH_RSA_AES_PROV_XP_W","features":[68]},{"name":"MS_KEY_PROTECTION_PROVIDER","features":[68]},{"name":"MS_KEY_STORAGE_PROVIDER","features":[68]},{"name":"MS_NGC_KEY_STORAGE_PROVIDER","features":[68]},{"name":"MS_PLATFORM_CRYPTO_PROVIDER","features":[68]},{"name":"MS_PLATFORM_KEY_STORAGE_PROVIDER","features":[68]},{"name":"MS_PRIMITIVE_PROVIDER","features":[68]},{"name":"MS_SCARD_PROV","features":[68]},{"name":"MS_SCARD_PROV_A","features":[68]},{"name":"MS_SCARD_PROV_W","features":[68]},{"name":"MS_SMART_CARD_KEY_STORAGE_PROVIDER","features":[68]},{"name":"MS_STRONG_PROV","features":[68]},{"name":"MS_STRONG_PROV_A","features":[68]},{"name":"MS_STRONG_PROV_W","features":[68]},{"name":"ManageCardSpace","features":[68]},{"name":"NCRYPTBUFFER_ATTESTATIONSTATEMENT_BLOB","features":[68]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_CHALLENGE_REQUIRED","features":[68]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_TYPE","features":[68]},{"name":"NCRYPTBUFFER_CERT_BLOB","features":[68]},{"name":"NCRYPTBUFFER_CLAIM_IDBINDING_NONCE","features":[68]},{"name":"NCRYPTBUFFER_CLAIM_KEYATTESTATION_NONCE","features":[68]},{"name":"NCRYPTBUFFER_DATA","features":[68]},{"name":"NCRYPTBUFFER_ECC_CURVE_NAME","features":[68]},{"name":"NCRYPTBUFFER_ECC_PARAMETERS","features":[68]},{"name":"NCRYPTBUFFER_EMPTY","features":[68]},{"name":"NCRYPTBUFFER_KEY_PROPERTY_FLAGS","features":[68]},{"name":"NCRYPTBUFFER_PKCS_ALG_ID","features":[68]},{"name":"NCRYPTBUFFER_PKCS_ALG_OID","features":[68]},{"name":"NCRYPTBUFFER_PKCS_ALG_PARAM","features":[68]},{"name":"NCRYPTBUFFER_PKCS_ATTRS","features":[68]},{"name":"NCRYPTBUFFER_PKCS_KEY_NAME","features":[68]},{"name":"NCRYPTBUFFER_PKCS_OID","features":[68]},{"name":"NCRYPTBUFFER_PKCS_SECRET","features":[68]},{"name":"NCRYPTBUFFER_PROTECTION_DESCRIPTOR_STRING","features":[68]},{"name":"NCRYPTBUFFER_PROTECTION_FLAGS","features":[68]},{"name":"NCRYPTBUFFER_SSL_CLEAR_KEY","features":[68]},{"name":"NCRYPTBUFFER_SSL_CLIENT_RANDOM","features":[68]},{"name":"NCRYPTBUFFER_SSL_HIGHEST_VERSION","features":[68]},{"name":"NCRYPTBUFFER_SSL_KEY_ARG_DATA","features":[68]},{"name":"NCRYPTBUFFER_SSL_SERVER_RANDOM","features":[68]},{"name":"NCRYPTBUFFER_SSL_SESSION_HASH","features":[68]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_NONCE","features":[68]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_PCR_MASK","features":[68]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_STATIC_CREATE","features":[68]},{"name":"NCRYPTBUFFER_TPM_SEAL_NO_DA_PROTECTION","features":[68]},{"name":"NCRYPTBUFFER_TPM_SEAL_PASSWORD","features":[68]},{"name":"NCRYPTBUFFER_TPM_SEAL_POLICYINFO","features":[68]},{"name":"NCRYPTBUFFER_TPM_SEAL_TICKET","features":[68]},{"name":"NCRYPTBUFFER_VERSION","features":[68]},{"name":"NCRYPTBUFFER_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[68]},{"name":"NCRYPT_3DES_112_ALGORITHM","features":[68]},{"name":"NCRYPT_3DES_ALGORITHM","features":[68]},{"name":"NCRYPT_AES_ALGORITHM","features":[68]},{"name":"NCRYPT_AES_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_ALGORITHM_GROUP_PROPERTY","features":[68]},{"name":"NCRYPT_ALGORITHM_NAME_CLASS","features":[68]},{"name":"NCRYPT_ALGORITHM_PROPERTY","features":[68]},{"name":"NCRYPT_ALLOC_PARA","features":[68]},{"name":"NCRYPT_ALLOW_ALL_USAGES","features":[68]},{"name":"NCRYPT_ALLOW_ARCHIVING_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_DECRYPT_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_EXPORT_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_SIGNING_FLAG","features":[68]},{"name":"NCRYPT_ALLOW_SILENT_KEY_ACCESS","features":[68]},{"name":"NCRYPT_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[68]},{"name":"NCRYPT_ASSOCIATED_ECDH_KEY","features":[68]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[68]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[68]},{"name":"NCRYPT_ATTESTATION_FLAG","features":[68]},{"name":"NCRYPT_AUTHORITY_KEY_FLAG","features":[68]},{"name":"NCRYPT_AUTH_TAG_LENGTH","features":[68]},{"name":"NCRYPT_BLOCK_LENGTH_PROPERTY","features":[68]},{"name":"NCRYPT_CAPI_KDF_ALGORITHM","features":[68]},{"name":"NCRYPT_CERTIFICATE_PROPERTY","features":[68]},{"name":"NCRYPT_CHAINING_MODE_PROPERTY","features":[68]},{"name":"NCRYPT_CHANGEPASSWORD_PROPERTY","features":[68]},{"name":"NCRYPT_CIPHER_BLOCK_PADDING_FLAG","features":[68]},{"name":"NCRYPT_CIPHER_KEY_BLOB","features":[68]},{"name":"NCRYPT_CIPHER_KEY_BLOB_MAGIC","features":[68]},{"name":"NCRYPT_CIPHER_NO_PADDING_FLAG","features":[68]},{"name":"NCRYPT_CIPHER_OPERATION","features":[68]},{"name":"NCRYPT_CIPHER_OTHER_PADDING_FLAG","features":[68]},{"name":"NCRYPT_CIPHER_PADDING_INFO","features":[68]},{"name":"NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[68]},{"name":"NCRYPT_CLAIM_AUTHORITY_ONLY","features":[68]},{"name":"NCRYPT_CLAIM_PLATFORM","features":[68]},{"name":"NCRYPT_CLAIM_SUBJECT_ONLY","features":[68]},{"name":"NCRYPT_CLAIM_UNKNOWN","features":[68]},{"name":"NCRYPT_CLAIM_VSM_KEY_ATTESTATION_STATEMENT","features":[68]},{"name":"NCRYPT_CLAIM_WEB_AUTH_SUBJECT_ONLY","features":[68]},{"name":"NCRYPT_DESCR_DELIMITER_AND","features":[68]},{"name":"NCRYPT_DESCR_DELIMITER_OR","features":[68]},{"name":"NCRYPT_DESCR_EQUAL","features":[68]},{"name":"NCRYPT_DESX_ALGORITHM","features":[68]},{"name":"NCRYPT_DES_ALGORITHM","features":[68]},{"name":"NCRYPT_DES_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_DH_ALGORITHM","features":[68]},{"name":"NCRYPT_DH_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_DH_PARAMETERS_PROPERTY","features":[68]},{"name":"NCRYPT_DISMISS_UI_TIMEOUT_SEC_PROPERTY","features":[68]},{"name":"NCRYPT_DO_NOT_FINALIZE_FLAG","features":[68]},{"name":"NCRYPT_DSA_ALGORITHM","features":[68]},{"name":"NCRYPT_DSA_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_ECC_CURVE_NAME_LIST_PROPERTY","features":[68]},{"name":"NCRYPT_ECC_CURVE_NAME_PROPERTY","features":[68]},{"name":"NCRYPT_ECC_PARAMETERS_PROPERTY","features":[68]},{"name":"NCRYPT_ECDH_ALGORITHM","features":[68]},{"name":"NCRYPT_ECDH_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_ECDH_P256_ALGORITHM","features":[68]},{"name":"NCRYPT_ECDH_P384_ALGORITHM","features":[68]},{"name":"NCRYPT_ECDH_P521_ALGORITHM","features":[68]},{"name":"NCRYPT_ECDSA_ALGORITHM","features":[68]},{"name":"NCRYPT_ECDSA_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_ECDSA_P256_ALGORITHM","features":[68]},{"name":"NCRYPT_ECDSA_P384_ALGORITHM","features":[68]},{"name":"NCRYPT_ECDSA_P521_ALGORITHM","features":[68]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_ENVELOPE","features":[68]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER","features":[68]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_CURRENT_VERSION","features":[68]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_V0","features":[68]},{"name":"NCRYPT_EXPORT_LEGACY_FLAG","features":[68]},{"name":"NCRYPT_EXPORT_POLICY_PROPERTY","features":[68]},{"name":"NCRYPT_EXTENDED_ERRORS_FLAG","features":[68]},{"name":"NCRYPT_FLAGS","features":[68]},{"name":"NCRYPT_HANDLE","features":[68]},{"name":"NCRYPT_HASH_HANDLE","features":[68]},{"name":"NCRYPT_HASH_OPERATION","features":[68]},{"name":"NCRYPT_HMAC_SHA256_ALGORITHM","features":[68]},{"name":"NCRYPT_IGNORE_DEVICE_STATE_FLAG","features":[68]},{"name":"NCRYPT_IMPL_HARDWARE_FLAG","features":[68]},{"name":"NCRYPT_IMPL_HARDWARE_RNG_FLAG","features":[68]},{"name":"NCRYPT_IMPL_REMOVABLE_FLAG","features":[68]},{"name":"NCRYPT_IMPL_SOFTWARE_FLAG","features":[68]},{"name":"NCRYPT_IMPL_TYPE_PROPERTY","features":[68]},{"name":"NCRYPT_IMPL_VIRTUAL_ISOLATION_FLAG","features":[68]},{"name":"NCRYPT_INITIALIZATION_VECTOR","features":[68]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES","features":[68]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_CURRENT_VERSION","features":[68]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_V0","features":[68]},{"name":"NCRYPT_ISOLATED_KEY_ENVELOPE_BLOB","features":[68]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_CREATED_IN_ISOLATION","features":[68]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_IMPORT_ONLY","features":[68]},{"name":"NCRYPT_KDF_KEY_BLOB","features":[68]},{"name":"NCRYPT_KDF_KEY_BLOB_MAGIC","features":[68]},{"name":"NCRYPT_KDF_SECRET_VALUE","features":[68]},{"name":"NCRYPT_KEY_ACCESS_POLICY_BLOB","features":[68]},{"name":"NCRYPT_KEY_ACCESS_POLICY_PROPERTY","features":[68]},{"name":"NCRYPT_KEY_ACCESS_POLICY_VERSION","features":[68]},{"name":"NCRYPT_KEY_ATTEST_MAGIC","features":[68]},{"name":"NCRYPT_KEY_ATTEST_PADDING_INFO","features":[68]},{"name":"NCRYPT_KEY_BLOB_HEADER","features":[68]},{"name":"NCRYPT_KEY_DERIVATION_GROUP","features":[68]},{"name":"NCRYPT_KEY_DERIVATION_INTERFACE","features":[68]},{"name":"NCRYPT_KEY_DERIVATION_OPERATION","features":[68]},{"name":"NCRYPT_KEY_HANDLE","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_CERTIFICATE","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCAL","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCKEDCREDENTIALS","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SDDL","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SID","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_WEBCREDENTIALS","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_CERT_CERTBLOB","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_CERT_HASHID","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_INTERFACE","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_LOGON","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_MACHINE","features":[68]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_USER","features":[68]},{"name":"NCRYPT_KEY_STORAGE_ALGORITHM","features":[68]},{"name":"NCRYPT_KEY_STORAGE_INTERFACE","features":[68]},{"name":"NCRYPT_KEY_TYPE_PROPERTY","features":[68]},{"name":"NCRYPT_KEY_USAGE_PROPERTY","features":[68]},{"name":"NCRYPT_LAST_MODIFIED_PROPERTY","features":[68]},{"name":"NCRYPT_LENGTHS_PROPERTY","features":[68]},{"name":"NCRYPT_LENGTH_PROPERTY","features":[68]},{"name":"NCRYPT_MACHINE_KEY_FLAG","features":[68]},{"name":"NCRYPT_MAX_ALG_ID_LENGTH","features":[68]},{"name":"NCRYPT_MAX_KEY_NAME_LENGTH","features":[68]},{"name":"NCRYPT_MAX_NAME_LENGTH_PROPERTY","features":[68]},{"name":"NCRYPT_MAX_PROPERTY_DATA","features":[68]},{"name":"NCRYPT_MAX_PROPERTY_NAME","features":[68]},{"name":"NCRYPT_MD2_ALGORITHM","features":[68]},{"name":"NCRYPT_MD4_ALGORITHM","features":[68]},{"name":"NCRYPT_MD5_ALGORITHM","features":[68]},{"name":"NCRYPT_NAMED_DESCRIPTOR_FLAG","features":[68]},{"name":"NCRYPT_NAME_PROPERTY","features":[68]},{"name":"NCRYPT_NO_CACHED_PASSWORD","features":[68]},{"name":"NCRYPT_NO_KEY_VALIDATION","features":[68]},{"name":"NCRYPT_NO_PADDING_FLAG","features":[68]},{"name":"NCRYPT_OPAQUETRANSPORT_BLOB","features":[68]},{"name":"NCRYPT_OPERATION","features":[68]},{"name":"NCRYPT_OVERWRITE_KEY_FLAG","features":[68]},{"name":"NCRYPT_PAD_CIPHER_FLAG","features":[68]},{"name":"NCRYPT_PAD_OAEP_FLAG","features":[68]},{"name":"NCRYPT_PAD_PKCS1_FLAG","features":[68]},{"name":"NCRYPT_PAD_PSS_FLAG","features":[68]},{"name":"NCRYPT_PBKDF2_ALGORITHM","features":[68]},{"name":"NCRYPT_PCP_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_CHANGEPASSWORD_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_ECC_EKCERT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_ECC_EKNVCERT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_ECC_EKPUB_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_EKCERT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_EKNVCERT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_EKPUB_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_ENCRYPTION_KEY","features":[68]},{"name":"NCRYPT_PCP_EXPORT_ALLOWED_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_HMACVERIFICATION_KEY","features":[68]},{"name":"NCRYPT_PCP_HMAC_AUTH_NONCE","features":[68]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYINFO","features":[68]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYREF","features":[68]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE","features":[68]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE_INFO","features":[68]},{"name":"NCRYPT_PCP_HMAC_AUTH_TICKET","features":[68]},{"name":"NCRYPT_PCP_IDENTITY_KEY","features":[68]},{"name":"NCRYPT_PCP_INTERMEDIATE_CA_EKCERT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_KEYATTESTATION_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_KEY_CREATIONHASH_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_KEY_CREATIONTICKET_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_KEY_USAGE_POLICY_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_MIGRATIONPASSWORD_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_NO_DA_PROTECTION_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PASSWORD_REQUIRED_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PCRTABLE_ALGORITHM_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PCRTABLE_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PLATFORMHANDLE_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRALGID_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGESTLIST_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGEST_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRMASK_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PROVIDERHANDLE_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_PSS_SALT_SIZE_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_INFO","features":[68]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_RSA_EKCERT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_RSA_EKNVCERT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_RSA_EKPUB_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_RSA_SCHEME_HASH_ALG_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_RSA_SCHEME_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_SESSIONID_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_SIGNATURE_KEY","features":[68]},{"name":"NCRYPT_PCP_SRKPUB_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_STORAGEPARENT_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_STORAGE_KEY","features":[68]},{"name":"NCRYPT_PCP_SYMMETRIC_KEYBITS_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM12_IDACTIVATION_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_DYNAMIC_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM2BNAME_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_INFO","features":[68]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_PROHIBITED_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_VULNERABILITY_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM_MANUFACTURER_ID_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM_VERSION_PROPERTY","features":[68]},{"name":"NCRYPT_PCP_TPM_WEB_AUTHN_ATTESTATION_STATEMENT","features":[68]},{"name":"NCRYPT_PCP_USAGEAUTH_PROPERTY","features":[68]},{"name":"NCRYPT_PERSIST_FLAG","features":[68]},{"name":"NCRYPT_PERSIST_ONLY_FLAG","features":[68]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_IMAGE_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_STATUS_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_BYTE_LENGTH","features":[68]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_CLEAR_FOR_CALLING_PROCESS_OPTION","features":[68]},{"name":"NCRYPT_PIN_CACHE_CLEAR_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_DISABLE_DPL_FLAG","features":[68]},{"name":"NCRYPT_PIN_CACHE_FLAGS_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_FREE_APPLICATION_TICKET_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_IS_GESTURE_REQUIRED_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_PIN_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_CACHE_REQUIRE_GESTURE_FLAG","features":[68]},{"name":"NCRYPT_PIN_PROMPT_PROPERTY","features":[68]},{"name":"NCRYPT_PIN_PROPERTY","features":[68]},{"name":"NCRYPT_PKCS7_ENVELOPE_BLOB","features":[68]},{"name":"NCRYPT_PKCS8_PRIVATE_KEY_BLOB","features":[68]},{"name":"NCRYPT_PLATFORM_ATTEST_MAGIC","features":[68]},{"name":"NCRYPT_PLATFORM_ATTEST_PADDING_INFO","features":[68]},{"name":"NCRYPT_PREFER_VIRTUAL_ISOLATION_FLAG","features":[68]},{"name":"NCRYPT_PROTECTED_KEY_BLOB","features":[68]},{"name":"NCRYPT_PROTECTED_KEY_BLOB_MAGIC","features":[68]},{"name":"NCRYPT_PROTECTION_INFO_TYPE_DESCRIPTOR_STRING","features":[68]},{"name":"NCRYPT_PROTECT_STREAM_INFO","features":[1,68]},{"name":"NCRYPT_PROTECT_STREAM_INFO_EX","features":[1,68]},{"name":"NCRYPT_PROTECT_TO_LOCAL_SYSTEM","features":[68]},{"name":"NCRYPT_PROVIDER_HANDLE_PROPERTY","features":[68]},{"name":"NCRYPT_PROV_HANDLE","features":[68]},{"name":"NCRYPT_PUBLIC_LENGTH_PROPERTY","features":[68]},{"name":"NCRYPT_RC2_ALGORITHM","features":[68]},{"name":"NCRYPT_RC2_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_READER_ICON_PROPERTY","features":[68]},{"name":"NCRYPT_READER_PROPERTY","features":[68]},{"name":"NCRYPT_REGISTER_NOTIFY_FLAG","features":[68]},{"name":"NCRYPT_REQUIRE_KDS_LRPC_BIND_FLAG","features":[68]},{"name":"NCRYPT_ROOT_CERTSTORE_PROPERTY","features":[68]},{"name":"NCRYPT_RSA_ALGORITHM","features":[68]},{"name":"NCRYPT_RSA_ALGORITHM_GROUP","features":[68]},{"name":"NCRYPT_RSA_SIGN_ALGORITHM","features":[68]},{"name":"NCRYPT_SCARD_NGC_KEY_NAME","features":[68]},{"name":"NCRYPT_SCARD_PIN_ID","features":[68]},{"name":"NCRYPT_SCARD_PIN_INFO","features":[68]},{"name":"NCRYPT_SCHANNEL_INTERFACE","features":[68]},{"name":"NCRYPT_SCHANNEL_SIGNATURE_INTERFACE","features":[68]},{"name":"NCRYPT_SEALING_FLAG","features":[68]},{"name":"NCRYPT_SECRET_AGREEMENT_INTERFACE","features":[68]},{"name":"NCRYPT_SECRET_AGREEMENT_OPERATION","features":[68]},{"name":"NCRYPT_SECRET_HANDLE","features":[68]},{"name":"NCRYPT_SECURE_PIN_PROPERTY","features":[68]},{"name":"NCRYPT_SECURITY_DESCR_PROPERTY","features":[68]},{"name":"NCRYPT_SECURITY_DESCR_SUPPORT_PROPERTY","features":[68]},{"name":"NCRYPT_SHA1_ALGORITHM","features":[68]},{"name":"NCRYPT_SHA256_ALGORITHM","features":[68]},{"name":"NCRYPT_SHA384_ALGORITHM","features":[68]},{"name":"NCRYPT_SHA512_ALGORITHM","features":[68]},{"name":"NCRYPT_SIGNATURE_INTERFACE","features":[68]},{"name":"NCRYPT_SIGNATURE_LENGTH_PROPERTY","features":[68]},{"name":"NCRYPT_SIGNATURE_OPERATION","features":[68]},{"name":"NCRYPT_SILENT_FLAG","features":[68]},{"name":"NCRYPT_SMARTCARD_GUID_PROPERTY","features":[68]},{"name":"NCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[68]},{"name":"NCRYPT_SP80056A_CONCAT_ALGORITHM","features":[68]},{"name":"NCRYPT_SUPPORTED_LENGTHS","features":[68]},{"name":"NCRYPT_TPM12_PROVIDER","features":[68]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB","features":[68]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_HEADER","features":[68]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_MAGIC","features":[68]},{"name":"NCRYPT_TPM_PAD_PSS_IGNORE_SALT","features":[68]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT","features":[68]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[68]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_V0","features":[68]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_HASHSIZE","features":[68]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_MAXIMUM","features":[68]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_UNKNOWN","features":[68]},{"name":"NCRYPT_TREAT_NIST_AS_GENERIC_ECC_FLAG","features":[68]},{"name":"NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[68]},{"name":"NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[68]},{"name":"NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[68]},{"name":"NCRYPT_UI_POLICY","features":[68]},{"name":"NCRYPT_UI_POLICY_PROPERTY","features":[68]},{"name":"NCRYPT_UI_PROTECT_KEY_FLAG","features":[68]},{"name":"NCRYPT_UNIQUE_NAME_PROPERTY","features":[68]},{"name":"NCRYPT_UNPROTECT_NO_DECRYPT","features":[68]},{"name":"NCRYPT_UNREGISTER_NOTIFY_FLAG","features":[68]},{"name":"NCRYPT_USER_CERTSTORE_PROPERTY","features":[68]},{"name":"NCRYPT_USE_CONTEXT_PROPERTY","features":[68]},{"name":"NCRYPT_USE_COUNT_ENABLED_PROPERTY","features":[68]},{"name":"NCRYPT_USE_COUNT_PROPERTY","features":[68]},{"name":"NCRYPT_USE_PER_BOOT_KEY_FLAG","features":[68]},{"name":"NCRYPT_USE_PER_BOOT_KEY_PROPERTY","features":[68]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_FLAG","features":[68]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_PROPERTY","features":[68]},{"name":"NCRYPT_VERSION_PROPERTY","features":[68]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[68]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_CURRENT_VERSION","features":[68]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_V0","features":[68]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT","features":[68]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[68]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_V0","features":[68]},{"name":"NCRYPT_WINDOW_HANDLE_PROPERTY","features":[68]},{"name":"NCRYPT_WRITE_KEY_TO_LEGACY_STORE_FLAG","features":[68]},{"name":"NCryptAlgorithmName","features":[68]},{"name":"NCryptCloseProtectionDescriptor","features":[68]},{"name":"NCryptCreateClaim","features":[68]},{"name":"NCryptCreatePersistedKey","features":[68]},{"name":"NCryptCreateProtectionDescriptor","features":[68]},{"name":"NCryptDecrypt","features":[68]},{"name":"NCryptDeleteKey","features":[68]},{"name":"NCryptDeriveKey","features":[68]},{"name":"NCryptEncrypt","features":[68]},{"name":"NCryptEnumAlgorithms","features":[68]},{"name":"NCryptEnumKeys","features":[68]},{"name":"NCryptEnumStorageProviders","features":[68]},{"name":"NCryptExportKey","features":[68]},{"name":"NCryptFinalizeKey","features":[68]},{"name":"NCryptFreeBuffer","features":[68]},{"name":"NCryptFreeObject","features":[68]},{"name":"NCryptGetProperty","features":[68]},{"name":"NCryptGetProtectionDescriptorInfo","features":[68]},{"name":"NCryptImportKey","features":[68]},{"name":"NCryptIsAlgSupported","features":[68]},{"name":"NCryptIsKeyHandle","features":[1,68]},{"name":"NCryptKeyDerivation","features":[68]},{"name":"NCryptKeyName","features":[68]},{"name":"NCryptNotifyChangeKey","features":[1,68]},{"name":"NCryptOpenKey","features":[68]},{"name":"NCryptOpenStorageProvider","features":[68]},{"name":"NCryptProtectSecret","features":[1,68]},{"name":"NCryptProviderName","features":[68]},{"name":"NCryptQueryProtectionDescriptorName","features":[68]},{"name":"NCryptRegisterProtectionDescriptorName","features":[68]},{"name":"NCryptSecretAgreement","features":[68]},{"name":"NCryptSetProperty","features":[68]},{"name":"NCryptSignHash","features":[68]},{"name":"NCryptStreamClose","features":[68]},{"name":"NCryptStreamOpenToProtect","features":[1,68]},{"name":"NCryptStreamOpenToUnprotect","features":[1,68]},{"name":"NCryptStreamOpenToUnprotectEx","features":[1,68]},{"name":"NCryptStreamUpdate","features":[1,68]},{"name":"NCryptTranslateHandle","features":[68]},{"name":"NCryptUnprotectSecret","features":[1,68]},{"name":"NCryptVerifyClaim","features":[68]},{"name":"NCryptVerifySignature","features":[68]},{"name":"NETSCAPE_SIGN_CA_CERT_TYPE","features":[68]},{"name":"NETSCAPE_SIGN_CERT_TYPE","features":[68]},{"name":"NETSCAPE_SMIME_CA_CERT_TYPE","features":[68]},{"name":"NETSCAPE_SMIME_CERT_TYPE","features":[68]},{"name":"NETSCAPE_SSL_CA_CERT_TYPE","features":[68]},{"name":"NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE","features":[68]},{"name":"NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE","features":[68]},{"name":"OCSP_BASIC_BY_KEY_RESPONDER_ID","features":[68]},{"name":"OCSP_BASIC_BY_NAME_RESPONDER_ID","features":[68]},{"name":"OCSP_BASIC_GOOD_CERT_STATUS","features":[68]},{"name":"OCSP_BASIC_RESPONSE","features":[68]},{"name":"OCSP_BASIC_RESPONSE_ENTRY","features":[1,68]},{"name":"OCSP_BASIC_RESPONSE_INFO","features":[1,68]},{"name":"OCSP_BASIC_RESPONSE_V1","features":[68]},{"name":"OCSP_BASIC_REVOKED_CERT_STATUS","features":[68]},{"name":"OCSP_BASIC_REVOKED_INFO","features":[1,68]},{"name":"OCSP_BASIC_SIGNED_RESPONSE","features":[68]},{"name":"OCSP_BASIC_SIGNED_RESPONSE_INFO","features":[68]},{"name":"OCSP_BASIC_UNKNOWN_CERT_STATUS","features":[68]},{"name":"OCSP_CERT_ID","features":[68]},{"name":"OCSP_INTERNAL_ERROR_RESPONSE","features":[68]},{"name":"OCSP_MALFORMED_REQUEST_RESPONSE","features":[68]},{"name":"OCSP_REQUEST","features":[68]},{"name":"OCSP_REQUEST_ENTRY","features":[1,68]},{"name":"OCSP_REQUEST_INFO","features":[1,68]},{"name":"OCSP_REQUEST_V1","features":[68]},{"name":"OCSP_RESPONSE","features":[68]},{"name":"OCSP_RESPONSE_INFO","features":[68]},{"name":"OCSP_SIGNATURE_INFO","features":[68]},{"name":"OCSP_SIGNED_REQUEST","features":[68]},{"name":"OCSP_SIGNED_REQUEST_INFO","features":[68]},{"name":"OCSP_SIG_REQUIRED_RESPONSE","features":[68]},{"name":"OCSP_SUCCESSFUL_RESPONSE","features":[68]},{"name":"OCSP_TRY_LATER_RESPONSE","features":[68]},{"name":"OCSP_UNAUTHORIZED_RESPONSE","features":[68]},{"name":"OPAQUEKEYBLOB","features":[68]},{"name":"PCRYPT_DECRYPT_PRIVATE_KEY_FUNC","features":[1,68]},{"name":"PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC","features":[1,68]},{"name":"PCRYPT_RESOLVE_HCRYPTPROV_FUNC","features":[1,68]},{"name":"PFNCryptStreamOutputCallback","features":[1,68]},{"name":"PFNCryptStreamOutputCallbackEx","features":[1,68]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN","features":[1,68]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX","features":[1,68]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX_WITHFILEHANDLE","features":[1,68]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_WITHFILEHANDLE","features":[1,68]},{"name":"PFN_CANCEL_ASYNC_RETRIEVAL_FUNC","features":[1,68]},{"name":"PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK","features":[1,68]},{"name":"PFN_CERT_CREATE_CONTEXT_SORT_FUNC","features":[1,68]},{"name":"PFN_CERT_DLL_OPEN_STORE_PROV_FUNC","features":[1,68]},{"name":"PFN_CERT_ENUM_PHYSICAL_STORE","features":[1,68]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE","features":[1,68]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE_LOCATION","features":[1,68]},{"name":"PFN_CERT_IS_WEAK_HASH","features":[1,68]},{"name":"PFN_CERT_SERVER_OCSP_RESPONSE_UPDATE_CALLBACK","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_CLOSE","features":[68]},{"name":"PFN_CERT_STORE_PROV_CONTROL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_DELETE_CERT","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_DELETE_CRL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_DELETE_CTL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_FIND_CERT","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_FIND_CRL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_FIND_CTL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CERT","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CRL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CTL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_GET_CERT_PROPERTY","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_GET_CRL_PROPERTY","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_GET_CTL_PROPERTY","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_READ_CERT","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_READ_CRL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_READ_CTL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_SET_CERT_PROPERTY","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_SET_CRL_PROPERTY","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_SET_CTL_PROPERTY","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_WRITE_CERT","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_WRITE_CRL","features":[1,68]},{"name":"PFN_CERT_STORE_PROV_WRITE_CTL","features":[1,68]},{"name":"PFN_CMSG_ALLOC","features":[68]},{"name":"PFN_CMSG_CNG_IMPORT_CONTENT_ENCRYPT_KEY","features":[1,68]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_AGREE","features":[1,68]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_TRANS","features":[1,68]},{"name":"PFN_CMSG_EXPORT_ENCRYPT_KEY","features":[1,68]},{"name":"PFN_CMSG_EXPORT_KEY_AGREE","features":[1,68]},{"name":"PFN_CMSG_EXPORT_KEY_TRANS","features":[1,68]},{"name":"PFN_CMSG_EXPORT_MAIL_LIST","features":[1,68]},{"name":"PFN_CMSG_FREE","features":[68]},{"name":"PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY","features":[1,68]},{"name":"PFN_CMSG_GEN_ENCRYPT_KEY","features":[1,68]},{"name":"PFN_CMSG_IMPORT_ENCRYPT_KEY","features":[1,68]},{"name":"PFN_CMSG_IMPORT_KEY_AGREE","features":[1,68]},{"name":"PFN_CMSG_IMPORT_KEY_TRANS","features":[1,68]},{"name":"PFN_CMSG_IMPORT_MAIL_LIST","features":[1,68]},{"name":"PFN_CMSG_STREAM_OUTPUT","features":[1,68]},{"name":"PFN_CRYPT_ALLOC","features":[68]},{"name":"PFN_CRYPT_ASYNC_PARAM_FREE_FUNC","features":[68]},{"name":"PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC","features":[68]},{"name":"PFN_CRYPT_CANCEL_RETRIEVAL","features":[1,68]},{"name":"PFN_CRYPT_ENUM_KEYID_PROP","features":[1,68]},{"name":"PFN_CRYPT_ENUM_OID_FUNC","features":[1,68]},{"name":"PFN_CRYPT_ENUM_OID_INFO","features":[1,68]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[1,68]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[1,68]},{"name":"PFN_CRYPT_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[1,68]},{"name":"PFN_CRYPT_FREE","features":[68]},{"name":"PFN_CRYPT_GET_SIGNER_CERTIFICATE","features":[1,68]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FLUSH","features":[1,68]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE","features":[68]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_IDENTIFIER","features":[68]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_PASSWORD","features":[68]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_GET","features":[1,68]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_INITIALIZE","features":[1,68]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_RELEASE","features":[68]},{"name":"PFN_CRYPT_SIGN_AND_ENCODE_HASH_FUNC","features":[1,68]},{"name":"PFN_CRYPT_VERIFY_ENCODED_SIGNATURE_FUNC","features":[1,68]},{"name":"PFN_CRYPT_XML_CREATE_TRANSFORM","features":[68]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_CLOSE","features":[68]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_READ","features":[68]},{"name":"PFN_CRYPT_XML_ENUM_ALG_INFO","features":[1,68]},{"name":"PFN_CRYPT_XML_WRITE_CALLBACK","features":[68]},{"name":"PFN_EXPORT_PRIV_KEY_FUNC","features":[1,68]},{"name":"PFN_FREE_ENCODED_OBJECT_FUNC","features":[68]},{"name":"PFN_IMPORT_PRIV_KEY_FUNC","features":[1,68]},{"name":"PFN_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[1,68]},{"name":"PFN_NCRYPT_ALLOC","features":[68]},{"name":"PFN_NCRYPT_FREE","features":[68]},{"name":"PFXExportCertStore","features":[1,68]},{"name":"PFXExportCertStoreEx","features":[1,68]},{"name":"PFXImportCertStore","features":[68]},{"name":"PFXIsPFXBlob","features":[1,68]},{"name":"PFXVerifyPassword","features":[1,68]},{"name":"PKCS12_ALLOW_OVERWRITE_KEY","features":[68]},{"name":"PKCS12_ALWAYS_CNG_KSP","features":[68]},{"name":"PKCS12_CONFIG_REGPATH","features":[68]},{"name":"PKCS12_DISABLE_ENCRYPT_CERTIFICATES","features":[68]},{"name":"PKCS12_ENCRYPT_CERTIFICATES","features":[68]},{"name":"PKCS12_ENCRYPT_CERTIFICATES_VALUE_NAME","features":[68]},{"name":"PKCS12_EXPORT_ECC_CURVE_OID","features":[68]},{"name":"PKCS12_EXPORT_ECC_CURVE_PARAMETERS","features":[68]},{"name":"PKCS12_EXPORT_PBES2_PARAMS","features":[68]},{"name":"PKCS12_EXPORT_RESERVED_MASK","features":[68]},{"name":"PKCS12_EXPORT_SILENT","features":[68]},{"name":"PKCS12_IMPORT_RESERVED_MASK","features":[68]},{"name":"PKCS12_IMPORT_SILENT","features":[68]},{"name":"PKCS12_INCLUDE_EXTENDED_PROPERTIES","features":[68]},{"name":"PKCS12_NO_PERSIST_KEY","features":[68]},{"name":"PKCS12_ONLY_CERTIFICATES","features":[68]},{"name":"PKCS12_ONLY_CERTIFICATES_CONTAINER_NAME","features":[68]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_NAME","features":[68]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_TYPE","features":[68]},{"name":"PKCS12_ONLY_NOT_ENCRYPTED_CERTIFICATES","features":[68]},{"name":"PKCS12_PBES2_ALG_AES256_SHA256","features":[68]},{"name":"PKCS12_PBES2_EXPORT_PARAMS","features":[68]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA1","features":[68]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA256","features":[68]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA384","features":[68]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA512","features":[68]},{"name":"PKCS12_PREFER_CNG_KSP","features":[68]},{"name":"PKCS12_PROTECT_TO_DOMAIN_SIDS","features":[68]},{"name":"PKCS12_VIRTUAL_ISOLATION_KEY","features":[68]},{"name":"PKCS5_PADDING","features":[68]},{"name":"PKCS7_SIGNER_INFO","features":[68]},{"name":"PKCS_7_ASN_ENCODING","features":[68]},{"name":"PKCS_7_NDR_ENCODING","features":[68]},{"name":"PKCS_ATTRIBUTE","features":[68]},{"name":"PKCS_ATTRIBUTES","features":[68]},{"name":"PKCS_CONTENT_INFO","features":[68]},{"name":"PKCS_CONTENT_INFO_SEQUENCE_OF_ANY","features":[68]},{"name":"PKCS_CTL","features":[68]},{"name":"PKCS_ENCRYPTED_PRIVATE_KEY_INFO","features":[68]},{"name":"PKCS_PRIVATE_KEY_INFO","features":[68]},{"name":"PKCS_RC2_CBC_PARAMETERS","features":[68]},{"name":"PKCS_RSAES_OAEP_PARAMETERS","features":[68]},{"name":"PKCS_RSA_PRIVATE_KEY","features":[68]},{"name":"PKCS_RSA_SSA_PSS_PARAMETERS","features":[68]},{"name":"PKCS_RSA_SSA_PSS_TRAILER_FIELD_BC","features":[68]},{"name":"PKCS_SMIME_CAPABILITIES","features":[68]},{"name":"PKCS_SORTED_CTL","features":[68]},{"name":"PKCS_TIME_REQUEST","features":[68]},{"name":"PKCS_UTC_TIME","features":[68]},{"name":"PLAINTEXTKEYBLOB","features":[68]},{"name":"POLICY_ELEMENT","features":[1,68]},{"name":"PP_ADMIN_PIN","features":[68]},{"name":"PP_APPLI_CERT","features":[68]},{"name":"PP_CERTCHAIN","features":[68]},{"name":"PP_CHANGE_PASSWORD","features":[68]},{"name":"PP_CLIENT_HWND","features":[68]},{"name":"PP_CONTAINER","features":[68]},{"name":"PP_CONTEXT_INFO","features":[68]},{"name":"PP_CRYPT_COUNT_KEY_USE","features":[68]},{"name":"PP_DELETEKEY","features":[68]},{"name":"PP_DISMISS_PIN_UI_SEC","features":[68]},{"name":"PP_ENUMALGS","features":[68]},{"name":"PP_ENUMALGS_EX","features":[68]},{"name":"PP_ENUMCONTAINERS","features":[68]},{"name":"PP_ENUMELECTROOTS","features":[68]},{"name":"PP_ENUMEX_SIGNING_PROT","features":[68]},{"name":"PP_ENUMMANDROOTS","features":[68]},{"name":"PP_IMPTYPE","features":[68]},{"name":"PP_IS_PFX_EPHEMERAL","features":[68]},{"name":"PP_KEYEXCHANGE_ALG","features":[68]},{"name":"PP_KEYEXCHANGE_KEYSIZE","features":[68]},{"name":"PP_KEYEXCHANGE_PIN","features":[68]},{"name":"PP_KEYSET_SEC_DESCR","features":[68]},{"name":"PP_KEYSET_TYPE","features":[68]},{"name":"PP_KEYSPEC","features":[68]},{"name":"PP_KEYSTORAGE","features":[68]},{"name":"PP_KEYX_KEYSIZE_INC","features":[68]},{"name":"PP_KEY_TYPE_SUBTYPE","features":[68]},{"name":"PP_NAME","features":[68]},{"name":"PP_PIN_PROMPT_STRING","features":[68]},{"name":"PP_PROVTYPE","features":[68]},{"name":"PP_ROOT_CERTSTORE","features":[68]},{"name":"PP_SECURE_KEYEXCHANGE_PIN","features":[68]},{"name":"PP_SECURE_SIGNATURE_PIN","features":[68]},{"name":"PP_SESSION_KEYSIZE","features":[68]},{"name":"PP_SGC_INFO","features":[68]},{"name":"PP_SIGNATURE_ALG","features":[68]},{"name":"PP_SIGNATURE_KEYSIZE","features":[68]},{"name":"PP_SIGNATURE_PIN","features":[68]},{"name":"PP_SIG_KEYSIZE_INC","features":[68]},{"name":"PP_SMARTCARD_GUID","features":[68]},{"name":"PP_SMARTCARD_READER","features":[68]},{"name":"PP_SMARTCARD_READER_ICON","features":[68]},{"name":"PP_SYM_KEYSIZE","features":[68]},{"name":"PP_UI_PROMPT","features":[68]},{"name":"PP_UNIQUE_CONTAINER","features":[68]},{"name":"PP_USER_CERTSTORE","features":[68]},{"name":"PP_USE_HARDWARE_RNG","features":[68]},{"name":"PP_VERSION","features":[68]},{"name":"PRIVATEKEYBLOB","features":[68]},{"name":"PRIVKEYVER3","features":[68]},{"name":"PROV_DH_SCHANNEL","features":[68]},{"name":"PROV_DSS","features":[68]},{"name":"PROV_DSS_DH","features":[68]},{"name":"PROV_EC_ECDSA_FULL","features":[68]},{"name":"PROV_EC_ECDSA_SIG","features":[68]},{"name":"PROV_EC_ECNRA_FULL","features":[68]},{"name":"PROV_EC_ECNRA_SIG","features":[68]},{"name":"PROV_ENUMALGS","features":[68]},{"name":"PROV_ENUMALGS_EX","features":[68]},{"name":"PROV_FORTEZZA","features":[68]},{"name":"PROV_INTEL_SEC","features":[68]},{"name":"PROV_MS_EXCHANGE","features":[68]},{"name":"PROV_REPLACE_OWF","features":[68]},{"name":"PROV_RNG","features":[68]},{"name":"PROV_RSA_AES","features":[68]},{"name":"PROV_RSA_FULL","features":[68]},{"name":"PROV_RSA_SCHANNEL","features":[68]},{"name":"PROV_RSA_SIG","features":[68]},{"name":"PROV_SPYRUS_LYNKS","features":[68]},{"name":"PROV_SSL","features":[68]},{"name":"PROV_STT_ACQ","features":[68]},{"name":"PROV_STT_BRND","features":[68]},{"name":"PROV_STT_ISS","features":[68]},{"name":"PROV_STT_MER","features":[68]},{"name":"PROV_STT_ROOT","features":[68]},{"name":"PUBKEY","features":[68]},{"name":"PUBKEYVER3","features":[68]},{"name":"PUBLICKEYBLOB","features":[68]},{"name":"PUBLICKEYBLOBEX","features":[68]},{"name":"PUBLICKEYSTRUC","features":[68]},{"name":"PVK_TYPE_FILE_NAME","features":[68]},{"name":"PVK_TYPE_KEYCONTAINER","features":[68]},{"name":"PaddingMode","features":[68]},{"name":"ProcessPrng","features":[1,68]},{"name":"RANDOM_PADDING","features":[68]},{"name":"RECIPIENTPOLICY","features":[68]},{"name":"RECIPIENTPOLICY2","features":[68]},{"name":"RECIPIENTPOLICYV1","features":[68]},{"name":"RECIPIENTPOLICYV2","features":[68]},{"name":"REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY","features":[68]},{"name":"REPORT_NO_PRIVATE_KEY","features":[68]},{"name":"REVOCATION_OID_CRL_REVOCATION","features":[68]},{"name":"ROOT_INFO_LUID","features":[68]},{"name":"RSA1024BIT_KEY","features":[68]},{"name":"RSAPUBKEY","features":[68]},{"name":"RSA_CSP_PUBLICKEYBLOB","features":[68]},{"name":"SCHANNEL_ALG","features":[68]},{"name":"SCHANNEL_ENC_KEY","features":[68]},{"name":"SCHANNEL_MAC_KEY","features":[68]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC","features":[68]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECT_FUNC","features":[68]},{"name":"SIGNATURE_RESOURCE_NUMBER","features":[68]},{"name":"SIGNER_ATTR_AUTHCODE","features":[1,68]},{"name":"SIGNER_AUTHCODE_ATTR","features":[68]},{"name":"SIGNER_BLOB_INFO","features":[68]},{"name":"SIGNER_CERT","features":[1,68]},{"name":"SIGNER_CERT_CHOICE","features":[68]},{"name":"SIGNER_CERT_POLICY","features":[68]},{"name":"SIGNER_CERT_POLICY_CHAIN","features":[68]},{"name":"SIGNER_CERT_POLICY_CHAIN_NO_ROOT","features":[68]},{"name":"SIGNER_CERT_POLICY_SPC","features":[68]},{"name":"SIGNER_CERT_POLICY_STORE","features":[68]},{"name":"SIGNER_CERT_SPC_CHAIN","features":[68]},{"name":"SIGNER_CERT_SPC_FILE","features":[68]},{"name":"SIGNER_CERT_STORE","features":[68]},{"name":"SIGNER_CERT_STORE_INFO","features":[1,68]},{"name":"SIGNER_CONTEXT","features":[68]},{"name":"SIGNER_DIGEST_SIGN_INFO","features":[1,68]},{"name":"SIGNER_DIGEST_SIGN_INFO_V1","features":[1,68]},{"name":"SIGNER_DIGEST_SIGN_INFO_V2","features":[1,68]},{"name":"SIGNER_FILE_INFO","features":[1,68]},{"name":"SIGNER_NO_ATTR","features":[68]},{"name":"SIGNER_PRIVATE_KEY_CHOICE","features":[68]},{"name":"SIGNER_PROVIDER_INFO","features":[68]},{"name":"SIGNER_SIGNATURE_ATTRIBUTE_CHOICE","features":[68]},{"name":"SIGNER_SIGNATURE_INFO","features":[1,68]},{"name":"SIGNER_SIGN_FLAGS","features":[68]},{"name":"SIGNER_SPC_CHAIN_INFO","features":[68]},{"name":"SIGNER_SUBJECT_BLOB","features":[68]},{"name":"SIGNER_SUBJECT_CHOICE","features":[68]},{"name":"SIGNER_SUBJECT_FILE","features":[68]},{"name":"SIGNER_SUBJECT_INFO","features":[1,68]},{"name":"SIGNER_TIMESTAMP_AUTHENTICODE","features":[68]},{"name":"SIGNER_TIMESTAMP_FLAGS","features":[68]},{"name":"SIGNER_TIMESTAMP_RFC3161","features":[68]},{"name":"SIG_APPEND","features":[68]},{"name":"SIMPLEBLOB","features":[68]},{"name":"SITE_PIN_RULES_ALL_SUBDOMAINS_FLAG","features":[68]},{"name":"SORTED_CTL_EXT_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[68]},{"name":"SPC_DIGEST_GENERATE_FLAG","features":[68]},{"name":"SPC_DIGEST_SIGN_EX_FLAG","features":[68]},{"name":"SPC_DIGEST_SIGN_FLAG","features":[68]},{"name":"SPC_EXC_PE_PAGE_HASHES_FLAG","features":[68]},{"name":"SPC_INC_PE_DEBUG_INFO_FLAG","features":[68]},{"name":"SPC_INC_PE_IMPORT_ADDR_TABLE_FLAG","features":[68]},{"name":"SPC_INC_PE_PAGE_HASHES_FLAG","features":[68]},{"name":"SPC_INC_PE_RESOURCES_FLAG","features":[68]},{"name":"SSL_ECCKEY_BLOB","features":[68]},{"name":"SSL_ECCPUBLIC_BLOB","features":[68]},{"name":"SSL_F12_ERROR_TEXT_LENGTH","features":[68]},{"name":"SSL_F12_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[68]},{"name":"SSL_HPKP_HEADER_COUNT","features":[68]},{"name":"SSL_HPKP_HEADER_EXTRA_CERT_CHAIN_POLICY_PARA","features":[68]},{"name":"SSL_HPKP_PKP_HEADER_INDEX","features":[68]},{"name":"SSL_HPKP_PKP_RO_HEADER_INDEX","features":[68]},{"name":"SSL_KEY_PIN_ERROR_TEXT_LENGTH","features":[68]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_PARA","features":[68]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[68]},{"name":"SSL_OBJECT_LOCATOR_CERT_VALIDATION_CONFIG_FUNC","features":[68]},{"name":"SSL_OBJECT_LOCATOR_ISSUER_LIST_FUNC","features":[68]},{"name":"SSL_OBJECT_LOCATOR_PFX_FUNC","features":[68]},{"name":"SYMMETRICWRAPKEYBLOB","features":[68]},{"name":"SignError","features":[68]},{"name":"SignHash","features":[68]},{"name":"SignerFreeSignerContext","features":[68]},{"name":"SignerSign","features":[1,68]},{"name":"SignerSignEx","features":[1,68]},{"name":"SignerSignEx2","features":[1,68]},{"name":"SignerSignEx3","features":[1,68]},{"name":"SignerTimeStamp","features":[1,68]},{"name":"SignerTimeStampEx","features":[1,68]},{"name":"SignerTimeStampEx2","features":[1,68]},{"name":"SignerTimeStampEx3","features":[1,68]},{"name":"SystemPrng","features":[1,68]},{"name":"TIMESTAMP_DONT_HASH_DATA","features":[68]},{"name":"TIMESTAMP_FAILURE_BAD_ALG","features":[68]},{"name":"TIMESTAMP_FAILURE_BAD_FORMAT","features":[68]},{"name":"TIMESTAMP_FAILURE_BAD_REQUEST","features":[68]},{"name":"TIMESTAMP_FAILURE_EXTENSION_NOT_SUPPORTED","features":[68]},{"name":"TIMESTAMP_FAILURE_INFO_NOT_AVAILABLE","features":[68]},{"name":"TIMESTAMP_FAILURE_POLICY_NOT_SUPPORTED","features":[68]},{"name":"TIMESTAMP_FAILURE_SYSTEM_FAILURE","features":[68]},{"name":"TIMESTAMP_FAILURE_TIME_NOT_AVAILABLE","features":[68]},{"name":"TIMESTAMP_INFO","features":[68]},{"name":"TIMESTAMP_NO_AUTH_RETRIEVAL","features":[68]},{"name":"TIMESTAMP_REQUEST","features":[68]},{"name":"TIMESTAMP_RESPONSE","features":[68]},{"name":"TIMESTAMP_STATUS_GRANTED","features":[68]},{"name":"TIMESTAMP_STATUS_GRANTED_WITH_MODS","features":[68]},{"name":"TIMESTAMP_STATUS_REJECTED","features":[68]},{"name":"TIMESTAMP_STATUS_REVOCATION_WARNING","features":[68]},{"name":"TIMESTAMP_STATUS_REVOKED","features":[68]},{"name":"TIMESTAMP_STATUS_WAITING","features":[68]},{"name":"TIMESTAMP_VERIFY_CONTEXT_SIGNATURE","features":[68]},{"name":"TIMESTAMP_VERSION","features":[68]},{"name":"TIME_VALID_OID_FLUSH_CRL","features":[68]},{"name":"TIME_VALID_OID_FLUSH_CRL_FROM_CERT","features":[68]},{"name":"TIME_VALID_OID_FLUSH_CTL","features":[68]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CERT","features":[68]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CRL","features":[68]},{"name":"TIME_VALID_OID_FLUSH_OBJECT_FUNC","features":[68]},{"name":"TIME_VALID_OID_GET_CRL","features":[68]},{"name":"TIME_VALID_OID_GET_CRL_FROM_CERT","features":[68]},{"name":"TIME_VALID_OID_GET_CTL","features":[68]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CERT","features":[68]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CRL","features":[68]},{"name":"TIME_VALID_OID_GET_OBJECT_FUNC","features":[68]},{"name":"TPM_RSA_SRK_SEAL_KEY","features":[68]},{"name":"TransformBlock","features":[68]},{"name":"TransformFinalBlock","features":[68]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT","features":[68]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT_AND_OCSP","features":[68]},{"name":"URL_OID_CERTIFICATE_FRESHEST_CRL","features":[68]},{"name":"URL_OID_CERTIFICATE_ISSUER","features":[68]},{"name":"URL_OID_CERTIFICATE_OCSP","features":[68]},{"name":"URL_OID_CERTIFICATE_OCSP_AND_CRL_DIST_POINT","features":[68]},{"name":"URL_OID_CERTIFICATE_ONLY_OCSP","features":[68]},{"name":"URL_OID_CRL_FRESHEST_CRL","features":[68]},{"name":"URL_OID_CRL_ISSUER","features":[68]},{"name":"URL_OID_CROSS_CERT_DIST_POINT","features":[68]},{"name":"URL_OID_CROSS_CERT_SUBJECT_INFO_ACCESS","features":[68]},{"name":"URL_OID_CTL_ISSUER","features":[68]},{"name":"URL_OID_CTL_NEXT_UPDATE","features":[68]},{"name":"URL_OID_GET_OBJECT_URL_FUNC","features":[68]},{"name":"USAGE_MATCH_TYPE_AND","features":[68]},{"name":"USAGE_MATCH_TYPE_OR","features":[68]},{"name":"VerifyHash","features":[1,68]},{"name":"X509_ALGORITHM_IDENTIFIER","features":[68]},{"name":"X509_ALTERNATE_NAME","features":[68]},{"name":"X509_ANY_STRING","features":[68]},{"name":"X509_ASN_ENCODING","features":[68]},{"name":"X509_AUTHORITY_INFO_ACCESS","features":[68]},{"name":"X509_AUTHORITY_KEY_ID","features":[68]},{"name":"X509_AUTHORITY_KEY_ID2","features":[68]},{"name":"X509_BASIC_CONSTRAINTS","features":[68]},{"name":"X509_BASIC_CONSTRAINTS2","features":[68]},{"name":"X509_BIOMETRIC_EXT","features":[68]},{"name":"X509_BITS","features":[68]},{"name":"X509_BITS_WITHOUT_TRAILING_ZEROES","features":[68]},{"name":"X509_CERT","features":[68]},{"name":"X509_CERTIFICATE_TEMPLATE","features":[68]},{"name":"X509_CERT_BUNDLE","features":[68]},{"name":"X509_CERT_CRL_TO_BE_SIGNED","features":[68]},{"name":"X509_CERT_PAIR","features":[68]},{"name":"X509_CERT_POLICIES","features":[68]},{"name":"X509_CERT_REQUEST_TO_BE_SIGNED","features":[68]},{"name":"X509_CERT_TO_BE_SIGNED","features":[68]},{"name":"X509_CHOICE_OF_TIME","features":[68]},{"name":"X509_CRL_DIST_POINTS","features":[68]},{"name":"X509_CRL_REASON_CODE","features":[68]},{"name":"X509_CROSS_CERT_DIST_POINTS","features":[68]},{"name":"X509_DH_PARAMETERS","features":[68]},{"name":"X509_DH_PUBLICKEY","features":[68]},{"name":"X509_DSS_PARAMETERS","features":[68]},{"name":"X509_DSS_PUBLICKEY","features":[68]},{"name":"X509_DSS_SIGNATURE","features":[68]},{"name":"X509_ECC_PARAMETERS","features":[68]},{"name":"X509_ECC_PRIVATE_KEY","features":[68]},{"name":"X509_ECC_SIGNATURE","features":[68]},{"name":"X509_ENHANCED_KEY_USAGE","features":[68]},{"name":"X509_ENUMERATED","features":[68]},{"name":"X509_EXTENSIONS","features":[68]},{"name":"X509_INTEGER","features":[68]},{"name":"X509_ISSUING_DIST_POINT","features":[68]},{"name":"X509_KEYGEN_REQUEST_TO_BE_SIGNED","features":[68]},{"name":"X509_KEY_ATTRIBUTES","features":[68]},{"name":"X509_KEY_USAGE","features":[68]},{"name":"X509_KEY_USAGE_RESTRICTION","features":[68]},{"name":"X509_LOGOTYPE_EXT","features":[68]},{"name":"X509_MULTI_BYTE_INTEGER","features":[68]},{"name":"X509_MULTI_BYTE_UINT","features":[68]},{"name":"X509_NAME","features":[68]},{"name":"X509_NAME_CONSTRAINTS","features":[68]},{"name":"X509_NAME_VALUE","features":[68]},{"name":"X509_NDR_ENCODING","features":[68]},{"name":"X509_OBJECT_IDENTIFIER","features":[68]},{"name":"X509_OCTET_STRING","features":[68]},{"name":"X509_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[68]},{"name":"X509_POLICY_CONSTRAINTS","features":[68]},{"name":"X509_POLICY_MAPPINGS","features":[68]},{"name":"X509_PUBLIC_KEY_INFO","features":[68]},{"name":"X509_QC_STATEMENTS_EXT","features":[68]},{"name":"X509_SEQUENCE_OF_ANY","features":[68]},{"name":"X509_SUBJECT_DIR_ATTRS","features":[68]},{"name":"X509_SUBJECT_INFO_ACCESS","features":[68]},{"name":"X509_UNICODE_ANY_STRING","features":[68]},{"name":"X509_UNICODE_NAME","features":[68]},{"name":"X509_UNICODE_NAME_VALUE","features":[68]},{"name":"X942_DH_PARAMETERS","features":[68]},{"name":"X942_OTHER_INFO","features":[68]},{"name":"ZERO_PADDING","features":[68]},{"name":"cPRIV_KEY_CACHE_MAX_ITEMS_DEFAULT","features":[68]},{"name":"cPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS_DEFAULT","features":[68]},{"name":"dwFORCE_KEY_PROTECTION_DISABLED","features":[68]},{"name":"dwFORCE_KEY_PROTECTION_HIGH","features":[68]},{"name":"dwFORCE_KEY_PROTECTION_USER_SELECT","features":[68]},{"name":"szFORCE_KEY_PROTECTION","features":[68]},{"name":"szKEY_CACHE_ENABLED","features":[68]},{"name":"szKEY_CACHE_SECONDS","features":[68]},{"name":"szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS","features":[68]},{"name":"szOIDVerisign_FailInfo","features":[68]},{"name":"szOIDVerisign_MessageType","features":[68]},{"name":"szOIDVerisign_PkiStatus","features":[68]},{"name":"szOIDVerisign_RecipientNonce","features":[68]},{"name":"szOIDVerisign_SenderNonce","features":[68]},{"name":"szOIDVerisign_TransactionID","features":[68]},{"name":"szOID_ANSI_X942","features":[68]},{"name":"szOID_ANSI_X942_DH","features":[68]},{"name":"szOID_ANY_APPLICATION_POLICY","features":[68]},{"name":"szOID_ANY_CERT_POLICY","features":[68]},{"name":"szOID_ANY_ENHANCED_KEY_USAGE","features":[68]},{"name":"szOID_APPLICATION_CERT_POLICIES","features":[68]},{"name":"szOID_APPLICATION_POLICY_CONSTRAINTS","features":[68]},{"name":"szOID_APPLICATION_POLICY_MAPPINGS","features":[68]},{"name":"szOID_ARCHIVED_KEY_ATTR","features":[68]},{"name":"szOID_ARCHIVED_KEY_CERT_HASH","features":[68]},{"name":"szOID_ATTEST_WHQL_CRYPTO","features":[68]},{"name":"szOID_ATTR_PLATFORM_SPECIFICATION","features":[68]},{"name":"szOID_ATTR_SUPPORTED_ALGORITHMS","features":[68]},{"name":"szOID_ATTR_TPM_SECURITY_ASSERTIONS","features":[68]},{"name":"szOID_ATTR_TPM_SPECIFICATION","features":[68]},{"name":"szOID_AUTHORITY_INFO_ACCESS","features":[68]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER","features":[68]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER2","features":[68]},{"name":"szOID_AUTHORITY_REVOCATION_LIST","features":[68]},{"name":"szOID_AUTO_ENROLL_CTL_USAGE","features":[68]},{"name":"szOID_BACKGROUND_OTHER_LOGOTYPE","features":[68]},{"name":"szOID_BASIC_CONSTRAINTS","features":[68]},{"name":"szOID_BASIC_CONSTRAINTS2","features":[68]},{"name":"szOID_BIOMETRIC_EXT","features":[68]},{"name":"szOID_BIOMETRIC_SIGNING","features":[68]},{"name":"szOID_BUSINESS_CATEGORY","features":[68]},{"name":"szOID_CA_CERTIFICATE","features":[68]},{"name":"szOID_CERTIFICATE_REVOCATION_LIST","features":[68]},{"name":"szOID_CERTIFICATE_TEMPLATE","features":[68]},{"name":"szOID_CERTSRV_CA_VERSION","features":[68]},{"name":"szOID_CERTSRV_CROSSCA_VERSION","features":[68]},{"name":"szOID_CERTSRV_PREVIOUS_CERT_HASH","features":[68]},{"name":"szOID_CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[68]},{"name":"szOID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[68]},{"name":"szOID_CERT_EXTENSIONS","features":[68]},{"name":"szOID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[68]},{"name":"szOID_CERT_KEY_IDENTIFIER_PROP_ID","features":[68]},{"name":"szOID_CERT_MANIFOLD","features":[68]},{"name":"szOID_CERT_MD5_HASH_PROP_ID","features":[68]},{"name":"szOID_CERT_POLICIES","features":[68]},{"name":"szOID_CERT_POLICIES_95","features":[68]},{"name":"szOID_CERT_POLICIES_95_QUALIFIER1","features":[68]},{"name":"szOID_CERT_PROP_ID_PREFIX","features":[68]},{"name":"szOID_CERT_SIGNATURE_HASH_PROP_ID","features":[68]},{"name":"szOID_CERT_STRONG_KEY_OS_1","features":[68]},{"name":"szOID_CERT_STRONG_KEY_OS_CURRENT","features":[68]},{"name":"szOID_CERT_STRONG_KEY_OS_PREFIX","features":[68]},{"name":"szOID_CERT_STRONG_SIGN_OS_1","features":[68]},{"name":"szOID_CERT_STRONG_SIGN_OS_CURRENT","features":[68]},{"name":"szOID_CERT_STRONG_SIGN_OS_PREFIX","features":[68]},{"name":"szOID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[68]},{"name":"szOID_CMC","features":[68]},{"name":"szOID_CMC_ADD_ATTRIBUTES","features":[68]},{"name":"szOID_CMC_ADD_EXTENSIONS","features":[68]},{"name":"szOID_CMC_DATA_RETURN","features":[68]},{"name":"szOID_CMC_DECRYPTED_POP","features":[68]},{"name":"szOID_CMC_ENCRYPTED_POP","features":[68]},{"name":"szOID_CMC_GET_CERT","features":[68]},{"name":"szOID_CMC_GET_CRL","features":[68]},{"name":"szOID_CMC_IDENTIFICATION","features":[68]},{"name":"szOID_CMC_IDENTITY_PROOF","features":[68]},{"name":"szOID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[68]},{"name":"szOID_CMC_ID_POP_LINK_RANDOM","features":[68]},{"name":"szOID_CMC_ID_POP_LINK_WITNESS","features":[68]},{"name":"szOID_CMC_LRA_POP_WITNESS","features":[68]},{"name":"szOID_CMC_QUERY_PENDING","features":[68]},{"name":"szOID_CMC_RECIPIENT_NONCE","features":[68]},{"name":"szOID_CMC_REG_INFO","features":[68]},{"name":"szOID_CMC_RESPONSE_INFO","features":[68]},{"name":"szOID_CMC_REVOKE_REQUEST","features":[68]},{"name":"szOID_CMC_SENDER_NONCE","features":[68]},{"name":"szOID_CMC_STATUS_INFO","features":[68]},{"name":"szOID_CMC_TRANSACTION_ID","features":[68]},{"name":"szOID_CN_ECDSA_SHA256","features":[68]},{"name":"szOID_COMMON_NAME","features":[68]},{"name":"szOID_COUNTRY_NAME","features":[68]},{"name":"szOID_CRL_DIST_POINTS","features":[68]},{"name":"szOID_CRL_NEXT_PUBLISH","features":[68]},{"name":"szOID_CRL_NUMBER","features":[68]},{"name":"szOID_CRL_REASON_CODE","features":[68]},{"name":"szOID_CRL_SELF_CDP","features":[68]},{"name":"szOID_CRL_VIRTUAL_BASE","features":[68]},{"name":"szOID_CROSS_CERTIFICATE_PAIR","features":[68]},{"name":"szOID_CROSS_CERT_DIST_POINTS","features":[68]},{"name":"szOID_CTL","features":[68]},{"name":"szOID_CT_CERT_SCTLIST","features":[68]},{"name":"szOID_CT_PKI_DATA","features":[68]},{"name":"szOID_CT_PKI_RESPONSE","features":[68]},{"name":"szOID_DELTA_CRL_INDICATOR","features":[68]},{"name":"szOID_DESCRIPTION","features":[68]},{"name":"szOID_DESTINATION_INDICATOR","features":[68]},{"name":"szOID_DEVICE_SERIAL_NUMBER","features":[68]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[68]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[68]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[68]},{"name":"szOID_DISALLOWED_HASH","features":[68]},{"name":"szOID_DISALLOWED_LIST","features":[68]},{"name":"szOID_DN_QUALIFIER","features":[68]},{"name":"szOID_DOMAIN_COMPONENT","features":[68]},{"name":"szOID_DRM","features":[68]},{"name":"szOID_DRM_INDIVIDUALIZATION","features":[68]},{"name":"szOID_DS","features":[68]},{"name":"szOID_DSALG","features":[68]},{"name":"szOID_DSALG_CRPT","features":[68]},{"name":"szOID_DSALG_HASH","features":[68]},{"name":"szOID_DSALG_RSA","features":[68]},{"name":"szOID_DSALG_SIGN","features":[68]},{"name":"szOID_DS_EMAIL_REPLICATION","features":[68]},{"name":"szOID_DYNAMIC_CODE_GEN_SIGNER","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160R1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160T1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192R1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192T1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224R1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224T1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256R1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256T1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320R1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320T1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384R1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384T1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512R1","features":[68]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512T1","features":[68]},{"name":"szOID_ECC_CURVE_EC192WAPI","features":[68]},{"name":"szOID_ECC_CURVE_NISTP192","features":[68]},{"name":"szOID_ECC_CURVE_NISTP224","features":[68]},{"name":"szOID_ECC_CURVE_NISTP256","features":[68]},{"name":"szOID_ECC_CURVE_NISTP384","features":[68]},{"name":"szOID_ECC_CURVE_NISTP521","features":[68]},{"name":"szOID_ECC_CURVE_P256","features":[68]},{"name":"szOID_ECC_CURVE_P384","features":[68]},{"name":"szOID_ECC_CURVE_P521","features":[68]},{"name":"szOID_ECC_CURVE_SECP160K1","features":[68]},{"name":"szOID_ECC_CURVE_SECP160R1","features":[68]},{"name":"szOID_ECC_CURVE_SECP160R2","features":[68]},{"name":"szOID_ECC_CURVE_SECP192K1","features":[68]},{"name":"szOID_ECC_CURVE_SECP192R1","features":[68]},{"name":"szOID_ECC_CURVE_SECP224K1","features":[68]},{"name":"szOID_ECC_CURVE_SECP224R1","features":[68]},{"name":"szOID_ECC_CURVE_SECP256K1","features":[68]},{"name":"szOID_ECC_CURVE_SECP256R1","features":[68]},{"name":"szOID_ECC_CURVE_SECP384R1","features":[68]},{"name":"szOID_ECC_CURVE_SECP521R1","features":[68]},{"name":"szOID_ECC_CURVE_WTLS12","features":[68]},{"name":"szOID_ECC_CURVE_WTLS7","features":[68]},{"name":"szOID_ECC_CURVE_WTLS9","features":[68]},{"name":"szOID_ECC_CURVE_X962P192V1","features":[68]},{"name":"szOID_ECC_CURVE_X962P192V2","features":[68]},{"name":"szOID_ECC_CURVE_X962P192V3","features":[68]},{"name":"szOID_ECC_CURVE_X962P239V1","features":[68]},{"name":"szOID_ECC_CURVE_X962P239V2","features":[68]},{"name":"szOID_ECC_CURVE_X962P239V3","features":[68]},{"name":"szOID_ECC_CURVE_X962P256V1","features":[68]},{"name":"szOID_ECC_PUBLIC_KEY","features":[68]},{"name":"szOID_ECDSA_SHA1","features":[68]},{"name":"szOID_ECDSA_SHA256","features":[68]},{"name":"szOID_ECDSA_SHA384","features":[68]},{"name":"szOID_ECDSA_SHA512","features":[68]},{"name":"szOID_ECDSA_SPECIFIED","features":[68]},{"name":"szOID_EFS_RECOVERY","features":[68]},{"name":"szOID_EMBEDDED_NT_CRYPTO","features":[68]},{"name":"szOID_ENCLAVE_SIGNING","features":[68]},{"name":"szOID_ENCRYPTED_KEY_HASH","features":[68]},{"name":"szOID_ENHANCED_KEY_USAGE","features":[68]},{"name":"szOID_ENROLLMENT_AGENT","features":[68]},{"name":"szOID_ENROLLMENT_CSP_PROVIDER","features":[68]},{"name":"szOID_ENROLLMENT_NAME_VALUE_PAIR","features":[68]},{"name":"szOID_ENROLL_AIK_INFO","features":[68]},{"name":"szOID_ENROLL_ATTESTATION_CHALLENGE","features":[68]},{"name":"szOID_ENROLL_ATTESTATION_STATEMENT","features":[68]},{"name":"szOID_ENROLL_CAXCHGCERT_HASH","features":[68]},{"name":"szOID_ENROLL_CERTTYPE_EXTENSION","features":[68]},{"name":"szOID_ENROLL_EKPUB_CHALLENGE","features":[68]},{"name":"szOID_ENROLL_EKVERIFYCERT","features":[68]},{"name":"szOID_ENROLL_EKVERIFYCREDS","features":[68]},{"name":"szOID_ENROLL_EKVERIFYKEY","features":[68]},{"name":"szOID_ENROLL_EK_CA_KEYID","features":[68]},{"name":"szOID_ENROLL_EK_INFO","features":[68]},{"name":"szOID_ENROLL_ENCRYPTION_ALGORITHM","features":[68]},{"name":"szOID_ENROLL_KEY_AFFINITY","features":[68]},{"name":"szOID_ENROLL_KSP_NAME","features":[68]},{"name":"szOID_ENROLL_SCEP_CHALLENGE_ANSWER","features":[68]},{"name":"szOID_ENROLL_SCEP_CLIENT_REQUEST","features":[68]},{"name":"szOID_ENROLL_SCEP_ERROR","features":[68]},{"name":"szOID_ENROLL_SCEP_SERVER_MESSAGE","features":[68]},{"name":"szOID_ENROLL_SCEP_SERVER_SECRET","features":[68]},{"name":"szOID_ENROLL_SCEP_SERVER_STATE","features":[68]},{"name":"szOID_ENROLL_SCEP_SIGNER_HASH","features":[68]},{"name":"szOID_ENTERPRISE_OID_ROOT","features":[68]},{"name":"szOID_EV_RDN_COUNTRY","features":[68]},{"name":"szOID_EV_RDN_LOCALE","features":[68]},{"name":"szOID_EV_RDN_STATE_OR_PROVINCE","features":[68]},{"name":"szOID_EV_WHQL_CRYPTO","features":[68]},{"name":"szOID_FACSIMILE_TELEPHONE_NUMBER","features":[68]},{"name":"szOID_FRESHEST_CRL","features":[68]},{"name":"szOID_GIVEN_NAME","features":[68]},{"name":"szOID_HPKP_DOMAIN_NAME_CTL","features":[68]},{"name":"szOID_HPKP_HEADER_VALUE_CTL","features":[68]},{"name":"szOID_INFOSEC","features":[68]},{"name":"szOID_INFOSEC_SuiteAConfidentiality","features":[68]},{"name":"szOID_INFOSEC_SuiteAIntegrity","features":[68]},{"name":"szOID_INFOSEC_SuiteAKMandSig","features":[68]},{"name":"szOID_INFOSEC_SuiteAKeyManagement","features":[68]},{"name":"szOID_INFOSEC_SuiteASignature","features":[68]},{"name":"szOID_INFOSEC_SuiteATokenProtection","features":[68]},{"name":"szOID_INFOSEC_mosaicConfidentiality","features":[68]},{"name":"szOID_INFOSEC_mosaicIntegrity","features":[68]},{"name":"szOID_INFOSEC_mosaicKMandSig","features":[68]},{"name":"szOID_INFOSEC_mosaicKMandUpdSig","features":[68]},{"name":"szOID_INFOSEC_mosaicKeyManagement","features":[68]},{"name":"szOID_INFOSEC_mosaicSignature","features":[68]},{"name":"szOID_INFOSEC_mosaicTokenProtection","features":[68]},{"name":"szOID_INFOSEC_mosaicUpdatedInteg","features":[68]},{"name":"szOID_INFOSEC_mosaicUpdatedSig","features":[68]},{"name":"szOID_INFOSEC_sdnsConfidentiality","features":[68]},{"name":"szOID_INFOSEC_sdnsIntegrity","features":[68]},{"name":"szOID_INFOSEC_sdnsKMandSig","features":[68]},{"name":"szOID_INFOSEC_sdnsKeyManagement","features":[68]},{"name":"szOID_INFOSEC_sdnsSignature","features":[68]},{"name":"szOID_INFOSEC_sdnsTokenProtection","features":[68]},{"name":"szOID_INHIBIT_ANY_POLICY","features":[68]},{"name":"szOID_INITIALS","features":[68]},{"name":"szOID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[68]},{"name":"szOID_INTERNATIONAL_ISDN_NUMBER","features":[68]},{"name":"szOID_IPSEC_KP_IKE_INTERMEDIATE","features":[68]},{"name":"szOID_ISSUED_CERT_HASH","features":[68]},{"name":"szOID_ISSUER_ALT_NAME","features":[68]},{"name":"szOID_ISSUER_ALT_NAME2","features":[68]},{"name":"szOID_ISSUING_DIST_POINT","features":[68]},{"name":"szOID_IUM_SIGNING","features":[68]},{"name":"szOID_KEYID_RDN","features":[68]},{"name":"szOID_KEY_ATTRIBUTES","features":[68]},{"name":"szOID_KEY_USAGE","features":[68]},{"name":"szOID_KEY_USAGE_RESTRICTION","features":[68]},{"name":"szOID_KP_CA_EXCHANGE","features":[68]},{"name":"szOID_KP_CSP_SIGNATURE","features":[68]},{"name":"szOID_KP_CTL_USAGE_SIGNING","features":[68]},{"name":"szOID_KP_DOCUMENT_SIGNING","features":[68]},{"name":"szOID_KP_EFS","features":[68]},{"name":"szOID_KP_FLIGHT_SIGNING","features":[68]},{"name":"szOID_KP_KERNEL_MODE_CODE_SIGNING","features":[68]},{"name":"szOID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[68]},{"name":"szOID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[68]},{"name":"szOID_KP_KEY_RECOVERY","features":[68]},{"name":"szOID_KP_KEY_RECOVERY_AGENT","features":[68]},{"name":"szOID_KP_LIFETIME_SIGNING","features":[68]},{"name":"szOID_KP_MOBILE_DEVICE_SOFTWARE","features":[68]},{"name":"szOID_KP_PRIVACY_CA","features":[68]},{"name":"szOID_KP_QUALIFIED_SUBORDINATION","features":[68]},{"name":"szOID_KP_SMARTCARD_LOGON","features":[68]},{"name":"szOID_KP_SMART_DISPLAY","features":[68]},{"name":"szOID_KP_TIME_STAMP_SIGNING","features":[68]},{"name":"szOID_KP_TPM_AIK_CERTIFICATE","features":[68]},{"name":"szOID_KP_TPM_EK_CERTIFICATE","features":[68]},{"name":"szOID_KP_TPM_PLATFORM_CERTIFICATE","features":[68]},{"name":"szOID_LEGACY_POLICY_MAPPINGS","features":[68]},{"name":"szOID_LICENSES","features":[68]},{"name":"szOID_LICENSE_SERVER","features":[68]},{"name":"szOID_LOCALITY_NAME","features":[68]},{"name":"szOID_LOCAL_MACHINE_KEYSET","features":[68]},{"name":"szOID_LOGOTYPE_EXT","features":[68]},{"name":"szOID_LOYALTY_OTHER_LOGOTYPE","features":[68]},{"name":"szOID_MEMBER","features":[68]},{"name":"szOID_MICROSOFT_PUBLISHER_SIGNER","features":[68]},{"name":"szOID_NAME_CONSTRAINTS","features":[68]},{"name":"szOID_NETSCAPE","features":[68]},{"name":"szOID_NETSCAPE_BASE_URL","features":[68]},{"name":"szOID_NETSCAPE_CA_POLICY_URL","features":[68]},{"name":"szOID_NETSCAPE_CA_REVOCATION_URL","features":[68]},{"name":"szOID_NETSCAPE_CERT_EXTENSION","features":[68]},{"name":"szOID_NETSCAPE_CERT_RENEWAL_URL","features":[68]},{"name":"szOID_NETSCAPE_CERT_SEQUENCE","features":[68]},{"name":"szOID_NETSCAPE_CERT_TYPE","features":[68]},{"name":"szOID_NETSCAPE_COMMENT","features":[68]},{"name":"szOID_NETSCAPE_DATA_TYPE","features":[68]},{"name":"szOID_NETSCAPE_REVOCATION_URL","features":[68]},{"name":"szOID_NETSCAPE_SSL_SERVER_NAME","features":[68]},{"name":"szOID_NEXT_UPDATE_LOCATION","features":[68]},{"name":"szOID_NIST_AES128_CBC","features":[68]},{"name":"szOID_NIST_AES128_WRAP","features":[68]},{"name":"szOID_NIST_AES192_CBC","features":[68]},{"name":"szOID_NIST_AES192_WRAP","features":[68]},{"name":"szOID_NIST_AES256_CBC","features":[68]},{"name":"szOID_NIST_AES256_WRAP","features":[68]},{"name":"szOID_NIST_sha256","features":[68]},{"name":"szOID_NIST_sha384","features":[68]},{"name":"szOID_NIST_sha512","features":[68]},{"name":"szOID_NT5_CRYPTO","features":[68]},{"name":"szOID_NTDS_CA_SECURITY_EXT","features":[68]},{"name":"szOID_NTDS_OBJECTSID","features":[68]},{"name":"szOID_NTDS_REPLICATION","features":[68]},{"name":"szOID_NT_PRINCIPAL_NAME","features":[68]},{"name":"szOID_OEM_WHQL_CRYPTO","features":[68]},{"name":"szOID_OIW","features":[68]},{"name":"szOID_OIWDIR","features":[68]},{"name":"szOID_OIWDIR_CRPT","features":[68]},{"name":"szOID_OIWDIR_HASH","features":[68]},{"name":"szOID_OIWDIR_SIGN","features":[68]},{"name":"szOID_OIWDIR_md2","features":[68]},{"name":"szOID_OIWDIR_md2RSA","features":[68]},{"name":"szOID_OIWSEC","features":[68]},{"name":"szOID_OIWSEC_desCBC","features":[68]},{"name":"szOID_OIWSEC_desCFB","features":[68]},{"name":"szOID_OIWSEC_desECB","features":[68]},{"name":"szOID_OIWSEC_desEDE","features":[68]},{"name":"szOID_OIWSEC_desMAC","features":[68]},{"name":"szOID_OIWSEC_desOFB","features":[68]},{"name":"szOID_OIWSEC_dhCommMod","features":[68]},{"name":"szOID_OIWSEC_dsa","features":[68]},{"name":"szOID_OIWSEC_dsaComm","features":[68]},{"name":"szOID_OIWSEC_dsaCommSHA","features":[68]},{"name":"szOID_OIWSEC_dsaCommSHA1","features":[68]},{"name":"szOID_OIWSEC_dsaSHA1","features":[68]},{"name":"szOID_OIWSEC_keyHashSeal","features":[68]},{"name":"szOID_OIWSEC_md2RSASign","features":[68]},{"name":"szOID_OIWSEC_md4RSA","features":[68]},{"name":"szOID_OIWSEC_md4RSA2","features":[68]},{"name":"szOID_OIWSEC_md5RSA","features":[68]},{"name":"szOID_OIWSEC_md5RSASign","features":[68]},{"name":"szOID_OIWSEC_mdc2","features":[68]},{"name":"szOID_OIWSEC_mdc2RSA","features":[68]},{"name":"szOID_OIWSEC_rsaSign","features":[68]},{"name":"szOID_OIWSEC_rsaXchg","features":[68]},{"name":"szOID_OIWSEC_sha","features":[68]},{"name":"szOID_OIWSEC_sha1","features":[68]},{"name":"szOID_OIWSEC_sha1RSASign","features":[68]},{"name":"szOID_OIWSEC_shaDSA","features":[68]},{"name":"szOID_OIWSEC_shaRSA","features":[68]},{"name":"szOID_ORGANIZATIONAL_UNIT_NAME","features":[68]},{"name":"szOID_ORGANIZATION_NAME","features":[68]},{"name":"szOID_OS_VERSION","features":[68]},{"name":"szOID_OWNER","features":[68]},{"name":"szOID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[68]},{"name":"szOID_PIN_RULES_CTL","features":[68]},{"name":"szOID_PIN_RULES_DOMAIN_NAME","features":[68]},{"name":"szOID_PIN_RULES_EXT","features":[68]},{"name":"szOID_PIN_RULES_LOG_END_DATE_EXT","features":[68]},{"name":"szOID_PIN_RULES_SIGNER","features":[68]},{"name":"szOID_PKCS","features":[68]},{"name":"szOID_PKCS_1","features":[68]},{"name":"szOID_PKCS_10","features":[68]},{"name":"szOID_PKCS_12","features":[68]},{"name":"szOID_PKCS_12_EXTENDED_ATTRIBUTES","features":[68]},{"name":"szOID_PKCS_12_FRIENDLY_NAME_ATTR","features":[68]},{"name":"szOID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[68]},{"name":"szOID_PKCS_12_LOCAL_KEY_ID","features":[68]},{"name":"szOID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[68]},{"name":"szOID_PKCS_12_PbeIds","features":[68]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC2","features":[68]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC4","features":[68]},{"name":"szOID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[68]},{"name":"szOID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[68]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC2","features":[68]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC4","features":[68]},{"name":"szOID_PKCS_2","features":[68]},{"name":"szOID_PKCS_3","features":[68]},{"name":"szOID_PKCS_4","features":[68]},{"name":"szOID_PKCS_5","features":[68]},{"name":"szOID_PKCS_5_PBES2","features":[68]},{"name":"szOID_PKCS_5_PBKDF2","features":[68]},{"name":"szOID_PKCS_6","features":[68]},{"name":"szOID_PKCS_7","features":[68]},{"name":"szOID_PKCS_7_DATA","features":[68]},{"name":"szOID_PKCS_7_DIGESTED","features":[68]},{"name":"szOID_PKCS_7_ENCRYPTED","features":[68]},{"name":"szOID_PKCS_7_ENVELOPED","features":[68]},{"name":"szOID_PKCS_7_SIGNED","features":[68]},{"name":"szOID_PKCS_7_SIGNEDANDENVELOPED","features":[68]},{"name":"szOID_PKCS_8","features":[68]},{"name":"szOID_PKCS_9","features":[68]},{"name":"szOID_PKCS_9_CONTENT_TYPE","features":[68]},{"name":"szOID_PKCS_9_MESSAGE_DIGEST","features":[68]},{"name":"szOID_PKINIT_KP_KDC","features":[68]},{"name":"szOID_PKIX","features":[68]},{"name":"szOID_PKIX_ACC_DESCR","features":[68]},{"name":"szOID_PKIX_CA_ISSUERS","features":[68]},{"name":"szOID_PKIX_CA_REPOSITORY","features":[68]},{"name":"szOID_PKIX_KP","features":[68]},{"name":"szOID_PKIX_KP_CLIENT_AUTH","features":[68]},{"name":"szOID_PKIX_KP_CODE_SIGNING","features":[68]},{"name":"szOID_PKIX_KP_EMAIL_PROTECTION","features":[68]},{"name":"szOID_PKIX_KP_IPSEC_END_SYSTEM","features":[68]},{"name":"szOID_PKIX_KP_IPSEC_TUNNEL","features":[68]},{"name":"szOID_PKIX_KP_IPSEC_USER","features":[68]},{"name":"szOID_PKIX_KP_OCSP_SIGNING","features":[68]},{"name":"szOID_PKIX_KP_SERVER_AUTH","features":[68]},{"name":"szOID_PKIX_KP_TIMESTAMP_SIGNING","features":[68]},{"name":"szOID_PKIX_NO_SIGNATURE","features":[68]},{"name":"szOID_PKIX_OCSP","features":[68]},{"name":"szOID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[68]},{"name":"szOID_PKIX_OCSP_NOCHECK","features":[68]},{"name":"szOID_PKIX_OCSP_NONCE","features":[68]},{"name":"szOID_PKIX_PE","features":[68]},{"name":"szOID_PKIX_POLICY_QUALIFIER_CPS","features":[68]},{"name":"szOID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[68]},{"name":"szOID_PKIX_TIME_STAMPING","features":[68]},{"name":"szOID_PLATFORM_MANIFEST_BINARY_ID","features":[68]},{"name":"szOID_POLICY_CONSTRAINTS","features":[68]},{"name":"szOID_POLICY_MAPPINGS","features":[68]},{"name":"szOID_POSTAL_ADDRESS","features":[68]},{"name":"szOID_POSTAL_CODE","features":[68]},{"name":"szOID_POST_OFFICE_BOX","features":[68]},{"name":"szOID_PREFERRED_DELIVERY_METHOD","features":[68]},{"name":"szOID_PRESENTATION_ADDRESS","features":[68]},{"name":"szOID_PRIVATEKEY_USAGE_PERIOD","features":[68]},{"name":"szOID_PRODUCT_UPDATE","features":[68]},{"name":"szOID_PROTECTED_PROCESS_LIGHT_SIGNER","features":[68]},{"name":"szOID_PROTECTED_PROCESS_SIGNER","features":[68]},{"name":"szOID_QC_EU_COMPLIANCE","features":[68]},{"name":"szOID_QC_SSCD","features":[68]},{"name":"szOID_QC_STATEMENTS_EXT","features":[68]},{"name":"szOID_RDN_DUMMY_SIGNER","features":[68]},{"name":"szOID_RDN_TCG_PLATFORM_MANUFACTURER","features":[68]},{"name":"szOID_RDN_TCG_PLATFORM_MODEL","features":[68]},{"name":"szOID_RDN_TCG_PLATFORM_VERSION","features":[68]},{"name":"szOID_RDN_TPM_MANUFACTURER","features":[68]},{"name":"szOID_RDN_TPM_MODEL","features":[68]},{"name":"szOID_RDN_TPM_VERSION","features":[68]},{"name":"szOID_REASON_CODE_HOLD","features":[68]},{"name":"szOID_REGISTERED_ADDRESS","features":[68]},{"name":"szOID_REMOVE_CERTIFICATE","features":[68]},{"name":"szOID_RENEWAL_CERTIFICATE","features":[68]},{"name":"szOID_REQUEST_CLIENT_INFO","features":[68]},{"name":"szOID_REQUIRE_CERT_CHAIN_POLICY","features":[68]},{"name":"szOID_REVOKED_LIST_SIGNER","features":[68]},{"name":"szOID_RFC3161_counterSign","features":[68]},{"name":"szOID_RFC3161v21_counterSign","features":[68]},{"name":"szOID_RFC3161v21_thumbprints","features":[68]},{"name":"szOID_ROLE_OCCUPANT","features":[68]},{"name":"szOID_ROOT_LIST_SIGNER","features":[68]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[68]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[68]},{"name":"szOID_ROOT_PROGRAM_FLAGS","features":[68]},{"name":"szOID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[68]},{"name":"szOID_RSA","features":[68]},{"name":"szOID_RSAES_OAEP","features":[68]},{"name":"szOID_RSA_DES_EDE3_CBC","features":[68]},{"name":"szOID_RSA_DH","features":[68]},{"name":"szOID_RSA_ENCRYPT","features":[68]},{"name":"szOID_RSA_HASH","features":[68]},{"name":"szOID_RSA_MD2","features":[68]},{"name":"szOID_RSA_MD2RSA","features":[68]},{"name":"szOID_RSA_MD4","features":[68]},{"name":"szOID_RSA_MD4RSA","features":[68]},{"name":"szOID_RSA_MD5","features":[68]},{"name":"szOID_RSA_MD5RSA","features":[68]},{"name":"szOID_RSA_MGF1","features":[68]},{"name":"szOID_RSA_PSPECIFIED","features":[68]},{"name":"szOID_RSA_RC2CBC","features":[68]},{"name":"szOID_RSA_RC4","features":[68]},{"name":"szOID_RSA_RC5_CBCPad","features":[68]},{"name":"szOID_RSA_RSA","features":[68]},{"name":"szOID_RSA_SETOAEP_RSA","features":[68]},{"name":"szOID_RSA_SHA1RSA","features":[68]},{"name":"szOID_RSA_SHA256RSA","features":[68]},{"name":"szOID_RSA_SHA384RSA","features":[68]},{"name":"szOID_RSA_SHA512RSA","features":[68]},{"name":"szOID_RSA_SMIMECapabilities","features":[68]},{"name":"szOID_RSA_SMIMEalg","features":[68]},{"name":"szOID_RSA_SMIMEalgCMS3DESwrap","features":[68]},{"name":"szOID_RSA_SMIMEalgCMSRC2wrap","features":[68]},{"name":"szOID_RSA_SMIMEalgESDH","features":[68]},{"name":"szOID_RSA_SSA_PSS","features":[68]},{"name":"szOID_RSA_certExtensions","features":[68]},{"name":"szOID_RSA_challengePwd","features":[68]},{"name":"szOID_RSA_contentType","features":[68]},{"name":"szOID_RSA_counterSign","features":[68]},{"name":"szOID_RSA_data","features":[68]},{"name":"szOID_RSA_digestedData","features":[68]},{"name":"szOID_RSA_emailAddr","features":[68]},{"name":"szOID_RSA_encryptedData","features":[68]},{"name":"szOID_RSA_envelopedData","features":[68]},{"name":"szOID_RSA_extCertAttrs","features":[68]},{"name":"szOID_RSA_hashedData","features":[68]},{"name":"szOID_RSA_messageDigest","features":[68]},{"name":"szOID_RSA_preferSignedData","features":[68]},{"name":"szOID_RSA_signEnvData","features":[68]},{"name":"szOID_RSA_signedData","features":[68]},{"name":"szOID_RSA_signingTime","features":[68]},{"name":"szOID_RSA_unstructAddr","features":[68]},{"name":"szOID_RSA_unstructName","features":[68]},{"name":"szOID_SEARCH_GUIDE","features":[68]},{"name":"szOID_SEE_ALSO","features":[68]},{"name":"szOID_SERIALIZED","features":[68]},{"name":"szOID_SERVER_GATED_CRYPTO","features":[68]},{"name":"szOID_SGC_NETSCAPE","features":[68]},{"name":"szOID_SITE_PIN_RULES_FLAGS_ATTR","features":[68]},{"name":"szOID_SITE_PIN_RULES_INDEX_ATTR","features":[68]},{"name":"szOID_SORTED_CTL","features":[68]},{"name":"szOID_STATE_OR_PROVINCE_NAME","features":[68]},{"name":"szOID_STREET_ADDRESS","features":[68]},{"name":"szOID_SUBJECT_ALT_NAME","features":[68]},{"name":"szOID_SUBJECT_ALT_NAME2","features":[68]},{"name":"szOID_SUBJECT_DIR_ATTRS","features":[68]},{"name":"szOID_SUBJECT_INFO_ACCESS","features":[68]},{"name":"szOID_SUBJECT_KEY_IDENTIFIER","features":[68]},{"name":"szOID_SUPPORTED_APPLICATION_CONTEXT","features":[68]},{"name":"szOID_SUR_NAME","features":[68]},{"name":"szOID_SYNC_ROOT_CTL_EXT","features":[68]},{"name":"szOID_TELEPHONE_NUMBER","features":[68]},{"name":"szOID_TELETEXT_TERMINAL_IDENTIFIER","features":[68]},{"name":"szOID_TELEX_NUMBER","features":[68]},{"name":"szOID_TIMESTAMP_TOKEN","features":[68]},{"name":"szOID_TITLE","features":[68]},{"name":"szOID_TLS_FEATURES_EXT","features":[68]},{"name":"szOID_USER_CERTIFICATE","features":[68]},{"name":"szOID_USER_PASSWORD","features":[68]},{"name":"szOID_VERISIGN_BITSTRING_6_13","features":[68]},{"name":"szOID_VERISIGN_ISS_STRONG_CRYPTO","features":[68]},{"name":"szOID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[68]},{"name":"szOID_VERISIGN_PRIVATE_6_9","features":[68]},{"name":"szOID_WHQL_CRYPTO","features":[68]},{"name":"szOID_WINDOWS_KITS_SIGNER","features":[68]},{"name":"szOID_WINDOWS_RT_SIGNER","features":[68]},{"name":"szOID_WINDOWS_SOFTWARE_EXTENSION_SIGNER","features":[68]},{"name":"szOID_WINDOWS_STORE_SIGNER","features":[68]},{"name":"szOID_WINDOWS_TCB_SIGNER","features":[68]},{"name":"szOID_WINDOWS_THIRD_PARTY_COMPONENT_SIGNER","features":[68]},{"name":"szOID_X21_ADDRESS","features":[68]},{"name":"szOID_X957","features":[68]},{"name":"szOID_X957_DSA","features":[68]},{"name":"szOID_X957_SHA1DSA","features":[68]},{"name":"szOID_YESNO_TRUST_ATTR","features":[68]},{"name":"szPRIV_KEY_CACHE_MAX_ITEMS","features":[68]},{"name":"szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS","features":[68]},{"name":"sz_CERT_STORE_PROV_COLLECTION","features":[68]},{"name":"sz_CERT_STORE_PROV_FILENAME","features":[68]},{"name":"sz_CERT_STORE_PROV_FILENAME_W","features":[68]},{"name":"sz_CERT_STORE_PROV_LDAP","features":[68]},{"name":"sz_CERT_STORE_PROV_LDAP_W","features":[68]},{"name":"sz_CERT_STORE_PROV_MEMORY","features":[68]},{"name":"sz_CERT_STORE_PROV_PHYSICAL","features":[68]},{"name":"sz_CERT_STORE_PROV_PHYSICAL_W","features":[68]},{"name":"sz_CERT_STORE_PROV_PKCS12","features":[68]},{"name":"sz_CERT_STORE_PROV_PKCS7","features":[68]},{"name":"sz_CERT_STORE_PROV_SERIALIZED","features":[68]},{"name":"sz_CERT_STORE_PROV_SMART_CARD","features":[68]},{"name":"sz_CERT_STORE_PROV_SMART_CARD_W","features":[68]},{"name":"sz_CERT_STORE_PROV_SYSTEM","features":[68]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY","features":[68]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[68]},{"name":"sz_CERT_STORE_PROV_SYSTEM_W","features":[68]},{"name":"wszURI_CANONICALIZATION_C14N","features":[68]},{"name":"wszURI_CANONICALIZATION_C14NC","features":[68]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14N","features":[68]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14NC","features":[68]},{"name":"wszURI_NTDS_OBJECTSID_PREFIX","features":[68]},{"name":"wszURI_TRANSFORM_XPATH","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_BASE64","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_DSA_SHA1","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA1","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA256","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA384","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA512","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA1","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA256","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA384","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA512","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA1","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA256","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA384","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA512","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_SHA1","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_SHA256","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_SHA384","features":[68]},{"name":"wszURI_XMLNS_DIGSIG_SHA512","features":[68]},{"name":"wszURI_XMLNS_TRANSFORM_BASE64","features":[68]},{"name":"wszURI_XMLNS_TRANSFORM_ENVELOPED","features":[68]},{"name":"wszXMLNS_DIGSIG","features":[68]},{"name":"wszXMLNS_DIGSIG_Id","features":[68]},{"name":"wszXMLNS_DIGSIG_SignatureProperties","features":[68]}],"488":[{"name":"CATALOG_INFO","features":[121]},{"name":"CRYPTCATATTRIBUTE","features":[121]},{"name":"CRYPTCATCDF","features":[1,121]},{"name":"CRYPTCATMEMBER","features":[1,121,122]},{"name":"CRYPTCATSTORE","features":[1,121]},{"name":"CRYPTCAT_ADDCATALOG_HARDLINK","features":[121]},{"name":"CRYPTCAT_ADDCATALOG_NONE","features":[121]},{"name":"CRYPTCAT_ATTR_AUTHENTICATED","features":[121]},{"name":"CRYPTCAT_ATTR_DATAASCII","features":[121]},{"name":"CRYPTCAT_ATTR_DATABASE64","features":[121]},{"name":"CRYPTCAT_ATTR_DATAREPLACE","features":[121]},{"name":"CRYPTCAT_ATTR_NAMEASCII","features":[121]},{"name":"CRYPTCAT_ATTR_NAMEOBJID","features":[121]},{"name":"CRYPTCAT_ATTR_NO_AUTO_COMPAT_ENTRY","features":[121]},{"name":"CRYPTCAT_ATTR_UNAUTHENTICATED","features":[121]},{"name":"CRYPTCAT_E_AREA_ATTRIBUTE","features":[121]},{"name":"CRYPTCAT_E_AREA_HEADER","features":[121]},{"name":"CRYPTCAT_E_AREA_MEMBER","features":[121]},{"name":"CRYPTCAT_E_CDF_ATTR_TOOFEWVALUES","features":[121]},{"name":"CRYPTCAT_E_CDF_ATTR_TYPECOMBO","features":[121]},{"name":"CRYPTCAT_E_CDF_BAD_GUID_CONV","features":[121]},{"name":"CRYPTCAT_E_CDF_DUPLICATE","features":[121]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILENOTFOUND","features":[121]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILE_PATH","features":[121]},{"name":"CRYPTCAT_E_CDF_MEMBER_INDIRECTDATA","features":[121]},{"name":"CRYPTCAT_E_CDF_TAGNOTFOUND","features":[121]},{"name":"CRYPTCAT_E_CDF_UNSUPPORTED","features":[121]},{"name":"CRYPTCAT_FILEEXT","features":[121]},{"name":"CRYPTCAT_MAX_MEMBERTAG","features":[121]},{"name":"CRYPTCAT_MEMBER_SORTED","features":[121]},{"name":"CRYPTCAT_OPEN_ALWAYS","features":[121]},{"name":"CRYPTCAT_OPEN_CREATENEW","features":[121]},{"name":"CRYPTCAT_OPEN_EXCLUDE_PAGE_HASHES","features":[121]},{"name":"CRYPTCAT_OPEN_EXISTING","features":[121]},{"name":"CRYPTCAT_OPEN_FLAGS","features":[121]},{"name":"CRYPTCAT_OPEN_FLAGS_MASK","features":[121]},{"name":"CRYPTCAT_OPEN_INCLUDE_PAGE_HASHES","features":[121]},{"name":"CRYPTCAT_OPEN_NO_CONTENT_HCRYPTMSG","features":[121]},{"name":"CRYPTCAT_OPEN_SORTED","features":[121]},{"name":"CRYPTCAT_OPEN_VERIFYSIGHASH","features":[121]},{"name":"CRYPTCAT_VERSION","features":[121]},{"name":"CRYPTCAT_VERSION_1","features":[121]},{"name":"CRYPTCAT_VERSION_2","features":[121]},{"name":"CryptCATAdminAcquireContext","features":[1,121]},{"name":"CryptCATAdminAcquireContext2","features":[1,121]},{"name":"CryptCATAdminAddCatalog","features":[121]},{"name":"CryptCATAdminCalcHashFromFileHandle","features":[1,121]},{"name":"CryptCATAdminCalcHashFromFileHandle2","features":[1,121]},{"name":"CryptCATAdminEnumCatalogFromHash","features":[121]},{"name":"CryptCATAdminPauseServiceForBackup","features":[1,121]},{"name":"CryptCATAdminReleaseCatalogContext","features":[1,121]},{"name":"CryptCATAdminReleaseContext","features":[1,121]},{"name":"CryptCATAdminRemoveCatalog","features":[1,121]},{"name":"CryptCATAdminResolveCatalogPath","features":[1,121]},{"name":"CryptCATAllocSortedMemberInfo","features":[1,121,122]},{"name":"CryptCATCDFClose","features":[1,121]},{"name":"CryptCATCDFEnumAttributes","features":[1,121,122]},{"name":"CryptCATCDFEnumCatAttributes","features":[1,121]},{"name":"CryptCATCDFEnumMembers","features":[1,121,122]},{"name":"CryptCATCDFOpen","features":[1,121]},{"name":"CryptCATCatalogInfoFromContext","features":[1,121]},{"name":"CryptCATClose","features":[1,121]},{"name":"CryptCATEnumerateAttr","features":[1,121,122]},{"name":"CryptCATEnumerateCatAttr","features":[1,121]},{"name":"CryptCATEnumerateMember","features":[1,121,122]},{"name":"CryptCATFreeSortedMemberInfo","features":[1,121,122]},{"name":"CryptCATGetAttrInfo","features":[1,121,122]},{"name":"CryptCATGetCatAttrInfo","features":[1,121]},{"name":"CryptCATGetMemberInfo","features":[1,121,122]},{"name":"CryptCATHandleFromStore","features":[1,121]},{"name":"CryptCATOpen","features":[1,121]},{"name":"CryptCATPersistStore","features":[1,121]},{"name":"CryptCATPutAttrInfo","features":[1,121,122]},{"name":"CryptCATPutCatAttrInfo","features":[1,121]},{"name":"CryptCATPutMemberInfo","features":[1,121,122]},{"name":"CryptCATStoreFromHandle","features":[1,121]},{"name":"IsCatalogFile","features":[1,121]},{"name":"MS_ADDINFO_CATALOGMEMBER","features":[1,121,122]},{"name":"PFN_CDF_PARSE_ERROR_CALLBACK","features":[121]},{"name":"szOID_CATALOG_LIST","features":[121]},{"name":"szOID_CATALOG_LIST_MEMBER","features":[121]},{"name":"szOID_CATALOG_LIST_MEMBER2","features":[121]}],"489":[{"name":"ADDED_CERT_TYPE","features":[123]},{"name":"AlgorithmFlags","features":[123]},{"name":"AlgorithmFlagsNone","features":[123]},{"name":"AlgorithmFlagsWrap","features":[123]},{"name":"AlgorithmOperationFlags","features":[123]},{"name":"AlgorithmType","features":[123]},{"name":"AllowNoOutstandingRequest","features":[123]},{"name":"AllowNone","features":[123]},{"name":"AllowUntrustedCertificate","features":[123]},{"name":"AllowUntrustedRoot","features":[123]},{"name":"AllowedKeySignature","features":[123]},{"name":"AllowedNullSignature","features":[123]},{"name":"AlternativeNameType","features":[123]},{"name":"CAIF_DSENTRY","features":[123]},{"name":"CAIF_LOCAL","features":[123]},{"name":"CAIF_REGISTRY","features":[123]},{"name":"CAIF_REGISTRYPARENT","features":[123]},{"name":"CAIF_SHAREDFOLDERENTRY","features":[123]},{"name":"CAINFO","features":[123]},{"name":"CAPATHLENGTH_INFINITE","features":[123]},{"name":"CAPropCertificate","features":[123]},{"name":"CAPropCertificateTypes","features":[123]},{"name":"CAPropCommonName","features":[123]},{"name":"CAPropDNSName","features":[123]},{"name":"CAPropDescription","features":[123]},{"name":"CAPropDistinguishedName","features":[123]},{"name":"CAPropRenewalOnly","features":[123]},{"name":"CAPropSanitizedName","features":[123]},{"name":"CAPropSanitizedShortName","features":[123]},{"name":"CAPropSecurity","features":[123]},{"name":"CAPropSiteName","features":[123]},{"name":"CAPropWebServers","features":[123]},{"name":"CA_ACCESS_ADMIN","features":[123]},{"name":"CA_ACCESS_AUDITOR","features":[123]},{"name":"CA_ACCESS_ENROLL","features":[123]},{"name":"CA_ACCESS_MASKROLES","features":[123]},{"name":"CA_ACCESS_OFFICER","features":[123]},{"name":"CA_ACCESS_OPERATOR","features":[123]},{"name":"CA_ACCESS_READ","features":[123]},{"name":"CA_CRL_BASE","features":[123]},{"name":"CA_CRL_DELTA","features":[123]},{"name":"CA_CRL_REPUBLISH","features":[123]},{"name":"CA_DISP_ERROR","features":[123]},{"name":"CA_DISP_INCOMPLETE","features":[123]},{"name":"CA_DISP_INVALID","features":[123]},{"name":"CA_DISP_REVOKED","features":[123]},{"name":"CA_DISP_UNDER_SUBMISSION","features":[123]},{"name":"CA_DISP_VALID","features":[123]},{"name":"CAlternativeName","features":[123]},{"name":"CAlternativeNames","features":[123]},{"name":"CBinaryConverter","features":[123]},{"name":"CCLOCKSKEWMINUTESDEFAULT","features":[123]},{"name":"CC_DEFAULTCONFIG","features":[123]},{"name":"CC_FIRSTCONFIG","features":[123]},{"name":"CC_LOCALACTIVECONFIG","features":[123]},{"name":"CC_LOCALCONFIG","features":[123]},{"name":"CC_UIPICKCONFIG","features":[123]},{"name":"CC_UIPICKCONFIGSKIPLOCALCA","features":[123]},{"name":"CCertAdmin","features":[123]},{"name":"CCertConfig","features":[123]},{"name":"CCertEncodeAltName","features":[123]},{"name":"CCertEncodeBitString","features":[123]},{"name":"CCertEncodeCRLDistInfo","features":[123]},{"name":"CCertEncodeDateArray","features":[123]},{"name":"CCertEncodeLongArray","features":[123]},{"name":"CCertEncodeStringArray","features":[123]},{"name":"CCertGetConfig","features":[123]},{"name":"CCertProperties","features":[123]},{"name":"CCertProperty","features":[123]},{"name":"CCertPropertyArchived","features":[123]},{"name":"CCertPropertyArchivedKeyHash","features":[123]},{"name":"CCertPropertyAutoEnroll","features":[123]},{"name":"CCertPropertyBackedUp","features":[123]},{"name":"CCertPropertyDescription","features":[123]},{"name":"CCertPropertyEnrollment","features":[123]},{"name":"CCertPropertyEnrollmentPolicyServer","features":[123]},{"name":"CCertPropertyFriendlyName","features":[123]},{"name":"CCertPropertyKeyProvInfo","features":[123]},{"name":"CCertPropertyRenewal","features":[123]},{"name":"CCertPropertyRequestOriginator","features":[123]},{"name":"CCertPropertySHA1Hash","features":[123]},{"name":"CCertRequest","features":[123]},{"name":"CCertServerExit","features":[123]},{"name":"CCertServerPolicy","features":[123]},{"name":"CCertView","features":[123]},{"name":"CCertificateAttestationChallenge","features":[123]},{"name":"CCertificatePolicies","features":[123]},{"name":"CCertificatePolicy","features":[123]},{"name":"CCryptAttribute","features":[123]},{"name":"CCryptAttributes","features":[123]},{"name":"CCspInformation","features":[123]},{"name":"CCspInformations","features":[123]},{"name":"CCspStatus","features":[123]},{"name":"CDR_EXPIRED","features":[123]},{"name":"CDR_REQUEST_LAST_CHANGED","features":[123]},{"name":"CERTADMIN_GET_ROLES_FLAGS","features":[123]},{"name":"CERTENROLL_INDEX_BASE","features":[123]},{"name":"CERTENROLL_OBJECTID","features":[123]},{"name":"CERTENROLL_PROPERTYID","features":[123]},{"name":"CERTTRANSBLOB","features":[123]},{"name":"CERTVIEWRESTRICTION","features":[123]},{"name":"CERT_ALT_NAME","features":[123]},{"name":"CERT_ALT_NAME_DIRECTORY_NAME","features":[123]},{"name":"CERT_ALT_NAME_DNS_NAME","features":[123]},{"name":"CERT_ALT_NAME_IP_ADDRESS","features":[123]},{"name":"CERT_ALT_NAME_OTHER_NAME","features":[123]},{"name":"CERT_ALT_NAME_REGISTERED_ID","features":[123]},{"name":"CERT_ALT_NAME_RFC822_NAME","features":[123]},{"name":"CERT_ALT_NAME_URL","features":[123]},{"name":"CERT_CREATE_REQUEST_FLAGS","features":[123]},{"name":"CERT_DELETE_ROW_FLAGS","features":[123]},{"name":"CERT_EXIT_EVENT_MASK","features":[123]},{"name":"CERT_GET_CONFIG_FLAGS","features":[123]},{"name":"CERT_IMPORT_FLAGS","features":[123]},{"name":"CERT_PROPERTY_TYPE","features":[123]},{"name":"CERT_REQUEST_OUT_TYPE","features":[123]},{"name":"CERT_VIEW_COLUMN_INDEX","features":[123]},{"name":"CERT_VIEW_SEEK_OPERATOR_FLAGS","features":[123]},{"name":"CEnroll","features":[123]},{"name":"CEnroll2","features":[123]},{"name":"CMM_READONLY","features":[123]},{"name":"CMM_REFRESHONLY","features":[123]},{"name":"CObjectId","features":[123]},{"name":"CObjectIds","features":[123]},{"name":"CPF_BADURL_ERROR","features":[123]},{"name":"CPF_BASE","features":[123]},{"name":"CPF_CASTORE_ERROR","features":[123]},{"name":"CPF_COMPLETE","features":[123]},{"name":"CPF_DELTA","features":[123]},{"name":"CPF_FILE_ERROR","features":[123]},{"name":"CPF_FTP_ERROR","features":[123]},{"name":"CPF_HTTP_ERROR","features":[123]},{"name":"CPF_LDAP_ERROR","features":[123]},{"name":"CPF_MANUAL","features":[123]},{"name":"CPF_POSTPONED_BASE_FILE_ERROR","features":[123]},{"name":"CPF_POSTPONED_BASE_LDAP_ERROR","features":[123]},{"name":"CPF_SHADOW","features":[123]},{"name":"CPF_SIGNATURE_ERROR","features":[123]},{"name":"CPolicyQualifier","features":[123]},{"name":"CPolicyQualifiers","features":[123]},{"name":"CRLF_ALLOW_REQUEST_ATTRIBUTE_SUBJECT","features":[123]},{"name":"CRLF_BUILD_ROOTCA_CRLENTRIES_BASEDONKEY","features":[123]},{"name":"CRLF_CRLNUMBER_CRITICAL","features":[123]},{"name":"CRLF_DELETE_EXPIRED_CRLS","features":[123]},{"name":"CRLF_DELTA_USE_OLDEST_UNEXPIRED_BASE","features":[123]},{"name":"CRLF_DISABLE_CHAIN_VERIFICATION","features":[123]},{"name":"CRLF_DISABLE_RDN_REORDER","features":[123]},{"name":"CRLF_DISABLE_ROOT_CROSS_CERTS","features":[123]},{"name":"CRLF_ENFORCE_ENROLLMENT_AGENT","features":[123]},{"name":"CRLF_IGNORE_CROSS_CERT_TRUST_ERROR","features":[123]},{"name":"CRLF_IGNORE_INVALID_POLICIES","features":[123]},{"name":"CRLF_IGNORE_UNKNOWN_CMC_ATTRIBUTES","features":[123]},{"name":"CRLF_LOG_FULL_RESPONSE","features":[123]},{"name":"CRLF_PRESERVE_EXPIRED_CA_CERTS","features":[123]},{"name":"CRLF_PRESERVE_REVOKED_CA_CERTS","features":[123]},{"name":"CRLF_PUBLISH_EXPIRED_CERT_CRLS","features":[123]},{"name":"CRLF_REBUILD_MODIFIED_SUBJECT_ONLY","features":[123]},{"name":"CRLF_REVCHECK_IGNORE_NOREVCHECK","features":[123]},{"name":"CRLF_REVCHECK_IGNORE_OFFLINE","features":[123]},{"name":"CRLF_SAVE_FAILED_CERTS","features":[123]},{"name":"CRLF_USE_CROSS_CERT_TEMPLATE","features":[123]},{"name":"CRLF_USE_XCHG_CERT_TEMPLATE","features":[123]},{"name":"CRLRevocationReason","features":[123]},{"name":"CRYPT_ENUM_ALL_PROVIDERS","features":[123]},{"name":"CR_DISP","features":[123]},{"name":"CR_DISP_DENIED","features":[123]},{"name":"CR_DISP_ERROR","features":[123]},{"name":"CR_DISP_INCOMPLETE","features":[123]},{"name":"CR_DISP_ISSUED","features":[123]},{"name":"CR_DISP_ISSUED_OUT_OF_BAND","features":[123]},{"name":"CR_DISP_REVOKED","features":[123]},{"name":"CR_DISP_UNDER_SUBMISSION","features":[123]},{"name":"CR_FLG_CACROSSCERT","features":[123]},{"name":"CR_FLG_CAXCHGCERT","features":[123]},{"name":"CR_FLG_CHALLENGEPENDING","features":[123]},{"name":"CR_FLG_CHALLENGESATISFIED","features":[123]},{"name":"CR_FLG_DEFINEDCACERT","features":[123]},{"name":"CR_FLG_ENFORCEUTF8","features":[123]},{"name":"CR_FLG_ENROLLONBEHALFOF","features":[123]},{"name":"CR_FLG_FORCETELETEX","features":[123]},{"name":"CR_FLG_FORCEUTF8","features":[123]},{"name":"CR_FLG_PUBLISHERROR","features":[123]},{"name":"CR_FLG_RENEWAL","features":[123]},{"name":"CR_FLG_SUBJECTUNMODIFIED","features":[123]},{"name":"CR_FLG_TRUSTEKCERT","features":[123]},{"name":"CR_FLG_TRUSTEKKEY","features":[123]},{"name":"CR_FLG_TRUSTONUSE","features":[123]},{"name":"CR_FLG_VALIDENCRYPTEDKEYHASH","features":[123]},{"name":"CR_GEMT_DEFAULT","features":[123]},{"name":"CR_GEMT_HRESULT_STRING","features":[123]},{"name":"CR_GEMT_HTTP_ERROR","features":[123]},{"name":"CR_IN_BASE64","features":[123]},{"name":"CR_IN_BASE64HEADER","features":[123]},{"name":"CR_IN_BINARY","features":[123]},{"name":"CR_IN_CERTIFICATETRANSPARENCY","features":[123]},{"name":"CR_IN_CHALLENGERESPONSE","features":[123]},{"name":"CR_IN_CLIENTIDNONE","features":[123]},{"name":"CR_IN_CMC","features":[123]},{"name":"CR_IN_CONNECTONLY","features":[123]},{"name":"CR_IN_CRLS","features":[123]},{"name":"CR_IN_ENCODEANY","features":[123]},{"name":"CR_IN_ENCODEMASK","features":[123]},{"name":"CR_IN_FORMATANY","features":[123]},{"name":"CR_IN_FORMATMASK","features":[123]},{"name":"CR_IN_FULLRESPONSE","features":[123]},{"name":"CR_IN_HTTP","features":[123]},{"name":"CR_IN_KEYGEN","features":[123]},{"name":"CR_IN_MACHINE","features":[123]},{"name":"CR_IN_PKCS10","features":[123]},{"name":"CR_IN_PKCS7","features":[123]},{"name":"CR_IN_RETURNCHALLENGE","features":[123]},{"name":"CR_IN_ROBO","features":[123]},{"name":"CR_IN_RPC","features":[123]},{"name":"CR_IN_SCEP","features":[123]},{"name":"CR_IN_SCEPPOST","features":[123]},{"name":"CR_IN_SIGNEDCERTIFICATETIMESTAMPLIST","features":[123]},{"name":"CR_OUT_BASE64","features":[123]},{"name":"CR_OUT_BASE64HEADER","features":[123]},{"name":"CR_OUT_BASE64REQUESTHEADER","features":[123]},{"name":"CR_OUT_BASE64X509CRLHEADER","features":[123]},{"name":"CR_OUT_BINARY","features":[123]},{"name":"CR_OUT_CHAIN","features":[123]},{"name":"CR_OUT_CRLS","features":[123]},{"name":"CR_OUT_ENCODEMASK","features":[123]},{"name":"CR_OUT_HEX","features":[123]},{"name":"CR_OUT_HEXADDR","features":[123]},{"name":"CR_OUT_HEXASCII","features":[123]},{"name":"CR_OUT_HEXASCIIADDR","features":[123]},{"name":"CR_OUT_HEXRAW","features":[123]},{"name":"CR_OUT_NOCR","features":[123]},{"name":"CR_OUT_NOCRLF","features":[123]},{"name":"CR_PROP_ADVANCEDSERVER","features":[123]},{"name":"CR_PROP_BASECRL","features":[123]},{"name":"CR_PROP_BASECRLPUBLISHSTATUS","features":[123]},{"name":"CR_PROP_CABACKWARDCROSSCERT","features":[123]},{"name":"CR_PROP_CABACKWARDCROSSCERTSTATE","features":[123]},{"name":"CR_PROP_CACERTSTATE","features":[123]},{"name":"CR_PROP_CACERTSTATUSCODE","features":[123]},{"name":"CR_PROP_CACERTVERSION","features":[123]},{"name":"CR_PROP_CAFORWARDCROSSCERT","features":[123]},{"name":"CR_PROP_CAFORWARDCROSSCERTSTATE","features":[123]},{"name":"CR_PROP_CANAME","features":[123]},{"name":"CR_PROP_CAPROPIDMAX","features":[123]},{"name":"CR_PROP_CASIGCERT","features":[123]},{"name":"CR_PROP_CASIGCERTCHAIN","features":[123]},{"name":"CR_PROP_CASIGCERTCOUNT","features":[123]},{"name":"CR_PROP_CASIGCERTCRLCHAIN","features":[123]},{"name":"CR_PROP_CATYPE","features":[123]},{"name":"CR_PROP_CAXCHGCERT","features":[123]},{"name":"CR_PROP_CAXCHGCERTCHAIN","features":[123]},{"name":"CR_PROP_CAXCHGCERTCOUNT","features":[123]},{"name":"CR_PROP_CAXCHGCERTCRLCHAIN","features":[123]},{"name":"CR_PROP_CERTAIAOCSPURLS","features":[123]},{"name":"CR_PROP_CERTAIAURLS","features":[123]},{"name":"CR_PROP_CERTCDPURLS","features":[123]},{"name":"CR_PROP_CRLSTATE","features":[123]},{"name":"CR_PROP_DELTACRL","features":[123]},{"name":"CR_PROP_DELTACRLPUBLISHSTATUS","features":[123]},{"name":"CR_PROP_DNSNAME","features":[123]},{"name":"CR_PROP_EXITCOUNT","features":[123]},{"name":"CR_PROP_EXITDESCRIPTION","features":[123]},{"name":"CR_PROP_FILEVERSION","features":[123]},{"name":"CR_PROP_KRACERT","features":[123]},{"name":"CR_PROP_KRACERTCOUNT","features":[123]},{"name":"CR_PROP_KRACERTSTATE","features":[123]},{"name":"CR_PROP_KRACERTUSEDCOUNT","features":[123]},{"name":"CR_PROP_LOCALENAME","features":[123]},{"name":"CR_PROP_NONE","features":[123]},{"name":"CR_PROP_PARENTCA","features":[123]},{"name":"CR_PROP_POLICYDESCRIPTION","features":[123]},{"name":"CR_PROP_PRODUCTVERSION","features":[123]},{"name":"CR_PROP_ROLESEPARATIONENABLED","features":[123]},{"name":"CR_PROP_SANITIZEDCANAME","features":[123]},{"name":"CR_PROP_SANITIZEDCASHORTNAME","features":[123]},{"name":"CR_PROP_SCEPMAX","features":[123]},{"name":"CR_PROP_SCEPMIN","features":[123]},{"name":"CR_PROP_SCEPSERVERCAPABILITIES","features":[123]},{"name":"CR_PROP_SCEPSERVERCERTS","features":[123]},{"name":"CR_PROP_SCEPSERVERCERTSCHAIN","features":[123]},{"name":"CR_PROP_SHAREDFOLDER","features":[123]},{"name":"CR_PROP_SUBJECTTEMPLATE_OIDS","features":[123]},{"name":"CR_PROP_TEMPLATES","features":[123]},{"name":"CSBACKUP_DISABLE_INCREMENTAL","features":[123]},{"name":"CSBACKUP_TYPE","features":[123]},{"name":"CSBACKUP_TYPE_FULL","features":[123]},{"name":"CSBACKUP_TYPE_LOGS_ONLY","features":[123]},{"name":"CSBACKUP_TYPE_MASK","features":[123]},{"name":"CSBFT_DATABASE_DIRECTORY","features":[123]},{"name":"CSBFT_DIRECTORY","features":[123]},{"name":"CSBFT_LOG_DIRECTORY","features":[123]},{"name":"CSCONTROL_RESTART","features":[123]},{"name":"CSCONTROL_SHUTDOWN","features":[123]},{"name":"CSCONTROL_SUSPEND","features":[123]},{"name":"CSEDB_RSTMAPW","features":[123]},{"name":"CSRESTORE_TYPE_CATCHUP","features":[123]},{"name":"CSRESTORE_TYPE_FULL","features":[123]},{"name":"CSRESTORE_TYPE_MASK","features":[123]},{"name":"CSRESTORE_TYPE_ONLINE","features":[123]},{"name":"CSURL_ADDTOCERTCDP","features":[123]},{"name":"CSURL_ADDTOCERTOCSP","features":[123]},{"name":"CSURL_ADDTOCRLCDP","features":[123]},{"name":"CSURL_ADDTOFRESHESTCRL","features":[123]},{"name":"CSURL_ADDTOIDP","features":[123]},{"name":"CSURL_PUBLISHRETRY","features":[123]},{"name":"CSURL_SERVERPUBLISH","features":[123]},{"name":"CSURL_SERVERPUBLISHDELTA","features":[123]},{"name":"CSVER_MAJOR","features":[123]},{"name":"CSVER_MAJOR_LONGHORN","features":[123]},{"name":"CSVER_MAJOR_THRESHOLD","features":[123]},{"name":"CSVER_MAJOR_WHISTLER","features":[123]},{"name":"CSVER_MAJOR_WIN2K","features":[123]},{"name":"CSVER_MAJOR_WIN7","features":[123]},{"name":"CSVER_MAJOR_WIN8","features":[123]},{"name":"CSVER_MAJOR_WINBLUE","features":[123]},{"name":"CSVER_MINOR","features":[123]},{"name":"CSVER_MINOR_LONGHORN_BETA1","features":[123]},{"name":"CSVER_MINOR_THRESHOLD","features":[123]},{"name":"CSVER_MINOR_WHISTLER_BETA2","features":[123]},{"name":"CSVER_MINOR_WHISTLER_BETA3","features":[123]},{"name":"CSVER_MINOR_WIN2K","features":[123]},{"name":"CSVER_MINOR_WIN7","features":[123]},{"name":"CSVER_MINOR_WIN8","features":[123]},{"name":"CSVER_MINOR_WINBLUE","features":[123]},{"name":"CSignerCertificate","features":[123]},{"name":"CSmimeCapabilities","features":[123]},{"name":"CSmimeCapability","features":[123]},{"name":"CVIEWAGEMINUTESDEFAULT","features":[123]},{"name":"CVRC_COLUMN","features":[123]},{"name":"CVRC_COLUMN_MASK","features":[123]},{"name":"CVRC_COLUMN_RESULT","features":[123]},{"name":"CVRC_COLUMN_SCHEMA","features":[123]},{"name":"CVRC_COLUMN_VALUE","features":[123]},{"name":"CVRC_TABLE","features":[123]},{"name":"CVRC_TABLE_ATTRIBUTES","features":[123]},{"name":"CVRC_TABLE_CRL","features":[123]},{"name":"CVRC_TABLE_EXTENSIONS","features":[123]},{"name":"CVRC_TABLE_MASK","features":[123]},{"name":"CVRC_TABLE_REQCERT","features":[123]},{"name":"CVRC_TABLE_SHIFT","features":[123]},{"name":"CVR_SEEK_EQ","features":[123]},{"name":"CVR_SEEK_GE","features":[123]},{"name":"CVR_SEEK_GT","features":[123]},{"name":"CVR_SEEK_LE","features":[123]},{"name":"CVR_SEEK_LT","features":[123]},{"name":"CVR_SEEK_MASK","features":[123]},{"name":"CVR_SEEK_NODELTA","features":[123]},{"name":"CVR_SEEK_NONE","features":[123]},{"name":"CVR_SORT_ASCEND","features":[123]},{"name":"CVR_SORT_DESCEND","features":[123]},{"name":"CVR_SORT_NONE","features":[123]},{"name":"CV_COLUMN_ATTRIBUTE_DEFAULT","features":[123]},{"name":"CV_COLUMN_CRL_DEFAULT","features":[123]},{"name":"CV_COLUMN_EXTENSION_DEFAULT","features":[123]},{"name":"CV_COLUMN_LOG_DEFAULT","features":[123]},{"name":"CV_COLUMN_LOG_FAILED_DEFAULT","features":[123]},{"name":"CV_COLUMN_LOG_REVOKED_DEFAULT","features":[123]},{"name":"CV_COLUMN_QUEUE_DEFAULT","features":[123]},{"name":"CV_OUT_BASE64","features":[123]},{"name":"CV_OUT_BASE64HEADER","features":[123]},{"name":"CV_OUT_BASE64REQUESTHEADER","features":[123]},{"name":"CV_OUT_BASE64X509CRLHEADER","features":[123]},{"name":"CV_OUT_BINARY","features":[123]},{"name":"CV_OUT_ENCODEMASK","features":[123]},{"name":"CV_OUT_HEX","features":[123]},{"name":"CV_OUT_HEXADDR","features":[123]},{"name":"CV_OUT_HEXASCII","features":[123]},{"name":"CV_OUT_HEXASCIIADDR","features":[123]},{"name":"CV_OUT_HEXRAW","features":[123]},{"name":"CV_OUT_NOCR","features":[123]},{"name":"CV_OUT_NOCRLF","features":[123]},{"name":"CX500DistinguishedName","features":[123]},{"name":"CX509Attribute","features":[123]},{"name":"CX509AttributeArchiveKey","features":[123]},{"name":"CX509AttributeArchiveKeyHash","features":[123]},{"name":"CX509AttributeClientId","features":[123]},{"name":"CX509AttributeCspProvider","features":[123]},{"name":"CX509AttributeExtensions","features":[123]},{"name":"CX509AttributeOSVersion","features":[123]},{"name":"CX509AttributeRenewalCertificate","features":[123]},{"name":"CX509Attributes","features":[123]},{"name":"CX509CertificateRequestCertificate","features":[123]},{"name":"CX509CertificateRequestCmc","features":[123]},{"name":"CX509CertificateRequestPkcs10","features":[123]},{"name":"CX509CertificateRequestPkcs7","features":[123]},{"name":"CX509CertificateRevocationList","features":[123]},{"name":"CX509CertificateRevocationListEntries","features":[123]},{"name":"CX509CertificateRevocationListEntry","features":[123]},{"name":"CX509CertificateTemplateADWritable","features":[123]},{"name":"CX509EndorsementKey","features":[123]},{"name":"CX509Enrollment","features":[123]},{"name":"CX509EnrollmentHelper","features":[123]},{"name":"CX509EnrollmentPolicyActiveDirectory","features":[123]},{"name":"CX509EnrollmentPolicyWebService","features":[123]},{"name":"CX509EnrollmentWebClassFactory","features":[123]},{"name":"CX509Extension","features":[123]},{"name":"CX509ExtensionAlternativeNames","features":[123]},{"name":"CX509ExtensionAuthorityKeyIdentifier","features":[123]},{"name":"CX509ExtensionBasicConstraints","features":[123]},{"name":"CX509ExtensionCertificatePolicies","features":[123]},{"name":"CX509ExtensionEnhancedKeyUsage","features":[123]},{"name":"CX509ExtensionKeyUsage","features":[123]},{"name":"CX509ExtensionMSApplicationPolicies","features":[123]},{"name":"CX509ExtensionSmimeCapabilities","features":[123]},{"name":"CX509ExtensionSubjectKeyIdentifier","features":[123]},{"name":"CX509ExtensionTemplate","features":[123]},{"name":"CX509ExtensionTemplateName","features":[123]},{"name":"CX509Extensions","features":[123]},{"name":"CX509MachineEnrollmentFactory","features":[123]},{"name":"CX509NameValuePair","features":[123]},{"name":"CX509PolicyServerListManager","features":[123]},{"name":"CX509PolicyServerUrl","features":[123]},{"name":"CX509PrivateKey","features":[123]},{"name":"CX509PublicKey","features":[123]},{"name":"CX509SCEPEnrollment","features":[123]},{"name":"CX509SCEPEnrollmentHelper","features":[123]},{"name":"CertSrvBackupClose","features":[123]},{"name":"CertSrvBackupEnd","features":[123]},{"name":"CertSrvBackupFree","features":[123]},{"name":"CertSrvBackupGetBackupLogsW","features":[123]},{"name":"CertSrvBackupGetDatabaseNamesW","features":[123]},{"name":"CertSrvBackupGetDynamicFileListW","features":[123]},{"name":"CertSrvBackupOpenFileW","features":[123]},{"name":"CertSrvBackupPrepareW","features":[123]},{"name":"CertSrvBackupRead","features":[123]},{"name":"CertSrvBackupTruncateLogs","features":[123]},{"name":"CertSrvIsServerOnlineW","features":[1,123]},{"name":"CertSrvRestoreEnd","features":[123]},{"name":"CertSrvRestoreGetDatabaseLocationsW","features":[123]},{"name":"CertSrvRestorePrepareW","features":[123]},{"name":"CertSrvRestoreRegisterComplete","features":[123]},{"name":"CertSrvRestoreRegisterThroughFile","features":[123]},{"name":"CertSrvRestoreRegisterW","features":[123]},{"name":"CertSrvServerControlW","features":[123]},{"name":"ClientIdAutoEnroll","features":[123]},{"name":"ClientIdAutoEnroll2003","features":[123]},{"name":"ClientIdCertReq","features":[123]},{"name":"ClientIdCertReq2003","features":[123]},{"name":"ClientIdDefaultRequest","features":[123]},{"name":"ClientIdEOBO","features":[123]},{"name":"ClientIdNone","features":[123]},{"name":"ClientIdRequestWizard","features":[123]},{"name":"ClientIdTest","features":[123]},{"name":"ClientIdUserStart","features":[123]},{"name":"ClientIdWinRT","features":[123]},{"name":"ClientIdWizard2003","features":[123]},{"name":"ClientIdXEnroll2003","features":[123]},{"name":"CommitFlagDeleteTemplate","features":[123]},{"name":"CommitFlagSaveTemplateGenerateOID","features":[123]},{"name":"CommitFlagSaveTemplateOverwrite","features":[123]},{"name":"CommitFlagSaveTemplateUseCurrentOID","features":[123]},{"name":"CommitTemplateFlags","features":[123]},{"name":"ContextAdministratorForceMachine","features":[123]},{"name":"ContextMachine","features":[123]},{"name":"ContextNone","features":[123]},{"name":"ContextUser","features":[123]},{"name":"DBFLAGS_CHECKPOINTDEPTH60MB","features":[123]},{"name":"DBFLAGS_CIRCULARLOGGING","features":[123]},{"name":"DBFLAGS_CREATEIFNEEDED","features":[123]},{"name":"DBFLAGS_DISABLESNAPSHOTBACKUP","features":[123]},{"name":"DBFLAGS_ENABLEVOLATILEREQUESTS","features":[123]},{"name":"DBFLAGS_LAZYFLUSH","features":[123]},{"name":"DBFLAGS_LOGBUFFERSHUGE","features":[123]},{"name":"DBFLAGS_LOGBUFFERSLARGE","features":[123]},{"name":"DBFLAGS_LOGFILESIZE16MB","features":[123]},{"name":"DBFLAGS_MAXCACHESIZEX100","features":[123]},{"name":"DBFLAGS_MULTITHREADTRANSACTIONS","features":[123]},{"name":"DBFLAGS_READONLY","features":[123]},{"name":"DBG_CERTSRV","features":[123]},{"name":"DBSESSIONCOUNTDEFAULT","features":[123]},{"name":"DB_DISP_ACTIVE","features":[123]},{"name":"DB_DISP_CA_CERT","features":[123]},{"name":"DB_DISP_CA_CERT_CHAIN","features":[123]},{"name":"DB_DISP_DENIED","features":[123]},{"name":"DB_DISP_ERROR","features":[123]},{"name":"DB_DISP_FOREIGN","features":[123]},{"name":"DB_DISP_ISSUED","features":[123]},{"name":"DB_DISP_KRA_CERT","features":[123]},{"name":"DB_DISP_LOG_FAILED_MIN","features":[123]},{"name":"DB_DISP_LOG_MIN","features":[123]},{"name":"DB_DISP_PENDING","features":[123]},{"name":"DB_DISP_QUEUE_MAX","features":[123]},{"name":"DB_DISP_REVOKED","features":[123]},{"name":"DefaultNone","features":[123]},{"name":"DefaultPolicyServer","features":[123]},{"name":"DelayRetryAction","features":[123]},{"name":"DelayRetryLong","features":[123]},{"name":"DelayRetryNone","features":[123]},{"name":"DelayRetryPastSuccess","features":[123]},{"name":"DelayRetryShort","features":[123]},{"name":"DelayRetrySuccess","features":[123]},{"name":"DelayRetryUnknown","features":[123]},{"name":"DisableGroupPolicyList","features":[123]},{"name":"DisableUserServerList","features":[123]},{"name":"DisplayNo","features":[123]},{"name":"DisplayYes","features":[123]},{"name":"EANR_SUPPRESS_IA5CONVERSION","features":[123]},{"name":"EAN_NAMEOBJECTID","features":[123]},{"name":"EDITF_ADDOLDCERTTYPE","features":[123]},{"name":"EDITF_ADDOLDKEYUSAGE","features":[123]},{"name":"EDITF_ATTRIBUTECA","features":[123]},{"name":"EDITF_ATTRIBUTEEKU","features":[123]},{"name":"EDITF_ATTRIBUTEENDDATE","features":[123]},{"name":"EDITF_ATTRIBUTESUBJECTALTNAME2","features":[123]},{"name":"EDITF_AUDITCERTTEMPLATELOAD","features":[123]},{"name":"EDITF_BASICCONSTRAINTSCA","features":[123]},{"name":"EDITF_BASICCONSTRAINTSCRITICAL","features":[123]},{"name":"EDITF_DISABLEEXTENSIONLIST","features":[123]},{"name":"EDITF_DISABLELDAPPACKAGELIST","features":[123]},{"name":"EDITF_DISABLEOLDOSCNUPN","features":[123]},{"name":"EDITF_EMAILOPTIONAL","features":[123]},{"name":"EDITF_ENABLEAKICRITICAL","features":[123]},{"name":"EDITF_ENABLEAKIISSUERNAME","features":[123]},{"name":"EDITF_ENABLEAKIISSUERSERIAL","features":[123]},{"name":"EDITF_ENABLEAKIKEYID","features":[123]},{"name":"EDITF_ENABLECHASECLIENTDC","features":[123]},{"name":"EDITF_ENABLEDEFAULTSMIME","features":[123]},{"name":"EDITF_ENABLEKEYENCIPHERMENTCACERT","features":[123]},{"name":"EDITF_ENABLELDAPREFERRALS","features":[123]},{"name":"EDITF_ENABLEOCSPREVNOCHECK","features":[123]},{"name":"EDITF_ENABLERENEWONBEHALFOF","features":[123]},{"name":"EDITF_ENABLEREQUESTEXTENSIONS","features":[123]},{"name":"EDITF_ENABLEUPNMAP","features":[123]},{"name":"EDITF_IGNOREREQUESTERGROUP","features":[123]},{"name":"EDITF_REQUESTEXTENSIONLIST","features":[123]},{"name":"EDITF_SERVERUPGRADED","features":[123]},{"name":"ENUMEXT_OBJECTID","features":[123]},{"name":"ENUM_CATYPES","features":[123]},{"name":"ENUM_CERT_COLUMN_VALUE_FLAGS","features":[123]},{"name":"ENUM_ENTERPRISE_ROOTCA","features":[123]},{"name":"ENUM_ENTERPRISE_SUBCA","features":[123]},{"name":"ENUM_STANDALONE_ROOTCA","features":[123]},{"name":"ENUM_STANDALONE_SUBCA","features":[123]},{"name":"ENUM_UNKNOWN_CA","features":[123]},{"name":"EXITEVENT_CERTDENIED","features":[123]},{"name":"EXITEVENT_CERTIMPORTED","features":[123]},{"name":"EXITEVENT_CERTISSUED","features":[123]},{"name":"EXITEVENT_CERTPENDING","features":[123]},{"name":"EXITEVENT_CERTRETRIEVEPENDING","features":[123]},{"name":"EXITEVENT_CERTREVOKED","features":[123]},{"name":"EXITEVENT_CRLISSUED","features":[123]},{"name":"EXITEVENT_INVALID","features":[123]},{"name":"EXITEVENT_SHUTDOWN","features":[123]},{"name":"EXITEVENT_STARTUP","features":[123]},{"name":"EXITPUB_ACTIVEDIRECTORY","features":[123]},{"name":"EXITPUB_DEFAULT_ENTERPRISE","features":[123]},{"name":"EXITPUB_DEFAULT_STANDALONE","features":[123]},{"name":"EXITPUB_FILE","features":[123]},{"name":"EXITPUB_REMOVEOLDCERTS","features":[123]},{"name":"EXTENSION_CRITICAL_FLAG","features":[123]},{"name":"EXTENSION_DELETE_FLAG","features":[123]},{"name":"EXTENSION_DISABLE_FLAG","features":[123]},{"name":"EXTENSION_ORIGIN_ADMIN","features":[123]},{"name":"EXTENSION_ORIGIN_CACERT","features":[123]},{"name":"EXTENSION_ORIGIN_CMC","features":[123]},{"name":"EXTENSION_ORIGIN_IMPORTEDCERT","features":[123]},{"name":"EXTENSION_ORIGIN_MASK","features":[123]},{"name":"EXTENSION_ORIGIN_PKCS7","features":[123]},{"name":"EXTENSION_ORIGIN_POLICY","features":[123]},{"name":"EXTENSION_ORIGIN_RENEWALCERT","features":[123]},{"name":"EXTENSION_ORIGIN_REQUEST","features":[123]},{"name":"EXTENSION_ORIGIN_SERVER","features":[123]},{"name":"EXTENSION_POLICY_MASK","features":[123]},{"name":"EncodingType","features":[123]},{"name":"EnrollDenied","features":[123]},{"name":"EnrollError","features":[123]},{"name":"EnrollPended","features":[123]},{"name":"EnrollPrompt","features":[123]},{"name":"EnrollSkipped","features":[123]},{"name":"EnrollUIDeferredEnrollmentRequired","features":[123]},{"name":"EnrollUnknown","features":[123]},{"name":"Enrolled","features":[123]},{"name":"EnrollmentAddOCSPNoCheck","features":[123]},{"name":"EnrollmentAddTemplateName","features":[123]},{"name":"EnrollmentAllowEnrollOnBehalfOf","features":[123]},{"name":"EnrollmentAutoEnrollment","features":[123]},{"name":"EnrollmentAutoEnrollmentCheckUserDSCertificate","features":[123]},{"name":"EnrollmentCAProperty","features":[123]},{"name":"EnrollmentCertificateIssuancePoliciesFromRequest","features":[123]},{"name":"EnrollmentDisplayStatus","features":[123]},{"name":"EnrollmentDomainAuthenticationNotRequired","features":[123]},{"name":"EnrollmentEnrollStatus","features":[123]},{"name":"EnrollmentIncludeBasicConstraintsForEECerts","features":[123]},{"name":"EnrollmentIncludeSymmetricAlgorithms","features":[123]},{"name":"EnrollmentNoRevocationInfoInCerts","features":[123]},{"name":"EnrollmentPendAllRequests","features":[123]},{"name":"EnrollmentPolicyFlags","features":[123]},{"name":"EnrollmentPolicyServerPropertyFlags","features":[123]},{"name":"EnrollmentPreviousApprovalKeyBasedValidateReenrollment","features":[123]},{"name":"EnrollmentPreviousApprovalValidateReenrollment","features":[123]},{"name":"EnrollmentPublishToDS","features":[123]},{"name":"EnrollmentPublishToKRAContainer","features":[123]},{"name":"EnrollmentRemoveInvalidCertificateFromPersonalStore","features":[123]},{"name":"EnrollmentReuseKeyOnFullSmartCard","features":[123]},{"name":"EnrollmentSelectionStatus","features":[123]},{"name":"EnrollmentSkipAutoRenewal","features":[123]},{"name":"EnrollmentTemplateProperty","features":[123]},{"name":"EnrollmentUserInteractionRequired","features":[123]},{"name":"ExportCAs","features":[123]},{"name":"ExportOIDs","features":[123]},{"name":"ExportTemplates","features":[123]},{"name":"FNCERTSRVBACKUPCLOSE","features":[123]},{"name":"FNCERTSRVBACKUPEND","features":[123]},{"name":"FNCERTSRVBACKUPFREE","features":[123]},{"name":"FNCERTSRVBACKUPGETBACKUPLOGSW","features":[123]},{"name":"FNCERTSRVBACKUPGETDATABASENAMESW","features":[123]},{"name":"FNCERTSRVBACKUPGETDYNAMICFILELISTW","features":[123]},{"name":"FNCERTSRVBACKUPOPENFILEW","features":[123]},{"name":"FNCERTSRVBACKUPPREPAREW","features":[123]},{"name":"FNCERTSRVBACKUPREAD","features":[123]},{"name":"FNCERTSRVBACKUPTRUNCATELOGS","features":[123]},{"name":"FNCERTSRVISSERVERONLINEW","features":[1,123]},{"name":"FNCERTSRVRESTOREEND","features":[123]},{"name":"FNCERTSRVRESTOREGETDATABASELOCATIONSW","features":[123]},{"name":"FNCERTSRVRESTOREPREPAREW","features":[123]},{"name":"FNCERTSRVRESTOREREGISTERCOMPLETE","features":[123]},{"name":"FNCERTSRVRESTOREREGISTERW","features":[123]},{"name":"FNCERTSRVSERVERCONTROLW","features":[123]},{"name":"FNIMPORTPFXTOPROVIDER","features":[1,123]},{"name":"FNIMPORTPFXTOPROVIDERFREEDATA","features":[1,123]},{"name":"FR_PROP_ATTESTATIONCHALLENGE","features":[123]},{"name":"FR_PROP_ATTESTATIONPROVIDERNAME","features":[123]},{"name":"FR_PROP_BODYPARTSTRING","features":[123]},{"name":"FR_PROP_CAEXCHANGECERTIFICATE","features":[123]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECHAIN","features":[123]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECRLCHAIN","features":[123]},{"name":"FR_PROP_CAEXCHANGECERTIFICATEHASH","features":[123]},{"name":"FR_PROP_CLAIMCHALLENGE","features":[123]},{"name":"FR_PROP_ENCRYPTEDKEYHASH","features":[123]},{"name":"FR_PROP_FAILINFO","features":[123]},{"name":"FR_PROP_FULLRESPONSE","features":[123]},{"name":"FR_PROP_FULLRESPONSENOPKCS7","features":[123]},{"name":"FR_PROP_ISSUEDCERTIFICATE","features":[123]},{"name":"FR_PROP_ISSUEDCERTIFICATECHAIN","features":[123]},{"name":"FR_PROP_ISSUEDCERTIFICATECRLCHAIN","features":[123]},{"name":"FR_PROP_ISSUEDCERTIFICATEHASH","features":[123]},{"name":"FR_PROP_NONE","features":[123]},{"name":"FR_PROP_OTHERINFOCHOICE","features":[123]},{"name":"FR_PROP_PENDINFOTIME","features":[123]},{"name":"FR_PROP_PENDINFOTOKEN","features":[123]},{"name":"FR_PROP_STATUS","features":[123]},{"name":"FR_PROP_STATUSINFOCOUNT","features":[123]},{"name":"FR_PROP_STATUSSTRING","features":[123]},{"name":"FULL_RESPONSE_PROPERTY_ID","features":[123]},{"name":"GeneralCA","features":[123]},{"name":"GeneralCrossCA","features":[123]},{"name":"GeneralDefault","features":[123]},{"name":"GeneralDonotPersist","features":[123]},{"name":"GeneralMachineType","features":[123]},{"name":"GeneralModified","features":[123]},{"name":"IAlternativeName","features":[123]},{"name":"IAlternativeNames","features":[123]},{"name":"IBinaryConverter","features":[123]},{"name":"IBinaryConverter2","features":[123]},{"name":"ICEnroll","features":[123]},{"name":"ICEnroll2","features":[123]},{"name":"ICEnroll3","features":[123]},{"name":"ICEnroll4","features":[123]},{"name":"ICF_ALLOWFOREIGN","features":[123]},{"name":"ICF_EXISTINGROW","features":[123]},{"name":"ICertAdmin","features":[123]},{"name":"ICertAdmin2","features":[123]},{"name":"ICertConfig","features":[123]},{"name":"ICertConfig2","features":[123]},{"name":"ICertEncodeAltName","features":[123]},{"name":"ICertEncodeAltName2","features":[123]},{"name":"ICertEncodeBitString","features":[123]},{"name":"ICertEncodeBitString2","features":[123]},{"name":"ICertEncodeCRLDistInfo","features":[123]},{"name":"ICertEncodeCRLDistInfo2","features":[123]},{"name":"ICertEncodeDateArray","features":[123]},{"name":"ICertEncodeDateArray2","features":[123]},{"name":"ICertEncodeLongArray","features":[123]},{"name":"ICertEncodeLongArray2","features":[123]},{"name":"ICertEncodeStringArray","features":[123]},{"name":"ICertEncodeStringArray2","features":[123]},{"name":"ICertExit","features":[123]},{"name":"ICertExit2","features":[123]},{"name":"ICertGetConfig","features":[123]},{"name":"ICertManageModule","features":[123]},{"name":"ICertPolicy","features":[123]},{"name":"ICertPolicy2","features":[123]},{"name":"ICertProperties","features":[123]},{"name":"ICertProperty","features":[123]},{"name":"ICertPropertyArchived","features":[123]},{"name":"ICertPropertyArchivedKeyHash","features":[123]},{"name":"ICertPropertyAutoEnroll","features":[123]},{"name":"ICertPropertyBackedUp","features":[123]},{"name":"ICertPropertyDescription","features":[123]},{"name":"ICertPropertyEnrollment","features":[123]},{"name":"ICertPropertyEnrollmentPolicyServer","features":[123]},{"name":"ICertPropertyFriendlyName","features":[123]},{"name":"ICertPropertyKeyProvInfo","features":[123]},{"name":"ICertPropertyRenewal","features":[123]},{"name":"ICertPropertyRequestOriginator","features":[123]},{"name":"ICertPropertySHA1Hash","features":[123]},{"name":"ICertRequest","features":[123]},{"name":"ICertRequest2","features":[123]},{"name":"ICertRequest3","features":[123]},{"name":"ICertRequestD","features":[123]},{"name":"ICertRequestD2","features":[123]},{"name":"ICertServerExit","features":[123]},{"name":"ICertServerPolicy","features":[123]},{"name":"ICertView","features":[123]},{"name":"ICertView2","features":[123]},{"name":"ICertificateAttestationChallenge","features":[123]},{"name":"ICertificateAttestationChallenge2","features":[123]},{"name":"ICertificatePolicies","features":[123]},{"name":"ICertificatePolicy","features":[123]},{"name":"ICertificationAuthorities","features":[123]},{"name":"ICertificationAuthority","features":[123]},{"name":"ICryptAttribute","features":[123]},{"name":"ICryptAttributes","features":[123]},{"name":"ICspAlgorithm","features":[123]},{"name":"ICspAlgorithms","features":[123]},{"name":"ICspInformation","features":[123]},{"name":"ICspInformations","features":[123]},{"name":"ICspStatus","features":[123]},{"name":"ICspStatuses","features":[123]},{"name":"IEnroll","features":[123]},{"name":"IEnroll2","features":[123]},{"name":"IEnroll4","features":[123]},{"name":"IEnumCERTVIEWATTRIBUTE","features":[123]},{"name":"IEnumCERTVIEWCOLUMN","features":[123]},{"name":"IEnumCERTVIEWEXTENSION","features":[123]},{"name":"IEnumCERTVIEWROW","features":[123]},{"name":"IF_ENABLEADMINASAUDITOR","features":[123]},{"name":"IF_ENABLEEXITKEYRETRIEVAL","features":[123]},{"name":"IF_ENFORCEENCRYPTICERTADMIN","features":[123]},{"name":"IF_ENFORCEENCRYPTICERTREQUEST","features":[123]},{"name":"IF_LOCKICERTREQUEST","features":[123]},{"name":"IF_NOLOCALICERTADMIN","features":[123]},{"name":"IF_NOLOCALICERTADMINBACKUP","features":[123]},{"name":"IF_NOLOCALICERTREQUEST","features":[123]},{"name":"IF_NOREMOTEICERTADMIN","features":[123]},{"name":"IF_NOREMOTEICERTADMINBACKUP","features":[123]},{"name":"IF_NOREMOTEICERTREQUEST","features":[123]},{"name":"IF_NORPCICERTREQUEST","features":[123]},{"name":"IF_NOSNAPSHOTBACKUP","features":[123]},{"name":"IKF_OVERWRITE","features":[123]},{"name":"INDESPolicy","features":[123]},{"name":"IOCSPAdmin","features":[123]},{"name":"IOCSPCAConfiguration","features":[123]},{"name":"IOCSPCAConfigurationCollection","features":[123]},{"name":"IOCSPProperty","features":[123]},{"name":"IOCSPPropertyCollection","features":[123]},{"name":"IObjectId","features":[123]},{"name":"IObjectIds","features":[123]},{"name":"IPolicyQualifier","features":[123]},{"name":"IPolicyQualifiers","features":[123]},{"name":"ISSCERT_DEFAULT_DS","features":[123]},{"name":"ISSCERT_DEFAULT_NODS","features":[123]},{"name":"ISSCERT_ENABLE","features":[123]},{"name":"ISSCERT_FILEURL_OLD","features":[123]},{"name":"ISSCERT_FTPURL_OLD","features":[123]},{"name":"ISSCERT_HTTPURL_OLD","features":[123]},{"name":"ISSCERT_LDAPURL_OLD","features":[123]},{"name":"ISSCERT_URLMASK_OLD","features":[123]},{"name":"ISignerCertificate","features":[123]},{"name":"ISignerCertificates","features":[123]},{"name":"ISmimeCapabilities","features":[123]},{"name":"ISmimeCapability","features":[123]},{"name":"IX500DistinguishedName","features":[123]},{"name":"IX509Attribute","features":[123]},{"name":"IX509AttributeArchiveKey","features":[123]},{"name":"IX509AttributeArchiveKeyHash","features":[123]},{"name":"IX509AttributeClientId","features":[123]},{"name":"IX509AttributeCspProvider","features":[123]},{"name":"IX509AttributeExtensions","features":[123]},{"name":"IX509AttributeOSVersion","features":[123]},{"name":"IX509AttributeRenewalCertificate","features":[123]},{"name":"IX509Attributes","features":[123]},{"name":"IX509CertificateRequest","features":[123]},{"name":"IX509CertificateRequestCertificate","features":[123]},{"name":"IX509CertificateRequestCertificate2","features":[123]},{"name":"IX509CertificateRequestCmc","features":[123]},{"name":"IX509CertificateRequestCmc2","features":[123]},{"name":"IX509CertificateRequestPkcs10","features":[123]},{"name":"IX509CertificateRequestPkcs10V2","features":[123]},{"name":"IX509CertificateRequestPkcs10V3","features":[123]},{"name":"IX509CertificateRequestPkcs10V4","features":[123]},{"name":"IX509CertificateRequestPkcs7","features":[123]},{"name":"IX509CertificateRequestPkcs7V2","features":[123]},{"name":"IX509CertificateRevocationList","features":[123]},{"name":"IX509CertificateRevocationListEntries","features":[123]},{"name":"IX509CertificateRevocationListEntry","features":[123]},{"name":"IX509CertificateTemplate","features":[123]},{"name":"IX509CertificateTemplateWritable","features":[123]},{"name":"IX509CertificateTemplates","features":[123]},{"name":"IX509EndorsementKey","features":[123]},{"name":"IX509Enrollment","features":[123]},{"name":"IX509Enrollment2","features":[123]},{"name":"IX509EnrollmentHelper","features":[123]},{"name":"IX509EnrollmentPolicyServer","features":[123]},{"name":"IX509EnrollmentStatus","features":[123]},{"name":"IX509EnrollmentWebClassFactory","features":[123]},{"name":"IX509Extension","features":[123]},{"name":"IX509ExtensionAlternativeNames","features":[123]},{"name":"IX509ExtensionAuthorityKeyIdentifier","features":[123]},{"name":"IX509ExtensionBasicConstraints","features":[123]},{"name":"IX509ExtensionCertificatePolicies","features":[123]},{"name":"IX509ExtensionEnhancedKeyUsage","features":[123]},{"name":"IX509ExtensionKeyUsage","features":[123]},{"name":"IX509ExtensionMSApplicationPolicies","features":[123]},{"name":"IX509ExtensionSmimeCapabilities","features":[123]},{"name":"IX509ExtensionSubjectKeyIdentifier","features":[123]},{"name":"IX509ExtensionTemplate","features":[123]},{"name":"IX509ExtensionTemplateName","features":[123]},{"name":"IX509Extensions","features":[123]},{"name":"IX509MachineEnrollmentFactory","features":[123]},{"name":"IX509NameValuePair","features":[123]},{"name":"IX509NameValuePairs","features":[123]},{"name":"IX509PolicyServerListManager","features":[123]},{"name":"IX509PolicyServerUrl","features":[123]},{"name":"IX509PrivateKey","features":[123]},{"name":"IX509PrivateKey2","features":[123]},{"name":"IX509PublicKey","features":[123]},{"name":"IX509SCEPEnrollment","features":[123]},{"name":"IX509SCEPEnrollment2","features":[123]},{"name":"IX509SCEPEnrollmentHelper","features":[123]},{"name":"IX509SignatureInformation","features":[123]},{"name":"ImportExportable","features":[123]},{"name":"ImportExportableEncrypted","features":[123]},{"name":"ImportForceOverwrite","features":[123]},{"name":"ImportInstallCertificate","features":[123]},{"name":"ImportInstallChain","features":[123]},{"name":"ImportInstallChainAndRoot","features":[123]},{"name":"ImportMachineContext","features":[123]},{"name":"ImportNoUserProtected","features":[123]},{"name":"ImportNone","features":[123]},{"name":"ImportPFXFlags","features":[123]},{"name":"ImportSaveProperties","features":[123]},{"name":"ImportSilent","features":[123]},{"name":"ImportUserProtected","features":[123]},{"name":"ImportUserProtectedHigh","features":[123]},{"name":"InheritDefault","features":[123]},{"name":"InheritExtensionsFlag","features":[123]},{"name":"InheritKeyMask","features":[123]},{"name":"InheritNewDefaultKey","features":[123]},{"name":"InheritNewSimilarKey","features":[123]},{"name":"InheritNone","features":[123]},{"name":"InheritPrivateKey","features":[123]},{"name":"InheritPublicKey","features":[123]},{"name":"InheritRenewalCertificateFlag","features":[123]},{"name":"InheritReserved80000000","features":[123]},{"name":"InheritSubjectAltNameFlag","features":[123]},{"name":"InheritSubjectFlag","features":[123]},{"name":"InheritTemplateFlag","features":[123]},{"name":"InheritValidityPeriodFlag","features":[123]},{"name":"InnerRequestLevel","features":[123]},{"name":"InstallResponseRestrictionFlags","features":[123]},{"name":"KRAF_DISABLEUSEDEFAULTPROVIDER","features":[123]},{"name":"KRAF_ENABLEARCHIVEALL","features":[123]},{"name":"KRAF_ENABLEFOREIGN","features":[123]},{"name":"KRAF_SAVEBADREQUESTKEY","features":[123]},{"name":"KRA_DISP_EXPIRED","features":[123]},{"name":"KRA_DISP_INVALID","features":[123]},{"name":"KRA_DISP_NOTFOUND","features":[123]},{"name":"KRA_DISP_NOTLOADED","features":[123]},{"name":"KRA_DISP_REVOKED","features":[123]},{"name":"KRA_DISP_UNTRUSTED","features":[123]},{"name":"KRA_DISP_VALID","features":[123]},{"name":"KR_ENABLE_MACHINE","features":[123]},{"name":"KR_ENABLE_USER","features":[123]},{"name":"KeyAttestationClaimType","features":[123]},{"name":"KeyIdentifierHashAlgorithm","features":[123]},{"name":"LDAPF_SIGNDISABLE","features":[123]},{"name":"LDAPF_SSLENABLE","features":[123]},{"name":"LevelInnermost","features":[123]},{"name":"LevelNext","features":[123]},{"name":"LevelSafe","features":[123]},{"name":"LevelUnsafe","features":[123]},{"name":"LoadOptionCacheOnly","features":[123]},{"name":"LoadOptionDefault","features":[123]},{"name":"LoadOptionRegisterForADChanges","features":[123]},{"name":"LoadOptionReload","features":[123]},{"name":"OCSPAdmin","features":[123]},{"name":"OCSPPropertyCollection","features":[123]},{"name":"OCSPRequestFlag","features":[123]},{"name":"OCSPSigningFlag","features":[123]},{"name":"OCSP_RF_REJECT_SIGNED_REQUESTS","features":[123]},{"name":"OCSP_SF_ALLOW_NONCE_EXTENSION","features":[123]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTOENROLLMENT","features":[123]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTORENEWAL","features":[123]},{"name":"OCSP_SF_AUTODISCOVER_SIGNINGCERT","features":[123]},{"name":"OCSP_SF_FORCE_SIGNINGCERT_ISSUER_ISCA","features":[123]},{"name":"OCSP_SF_MANUAL_ASSIGN_SIGNINGCERT","features":[123]},{"name":"OCSP_SF_RESPONDER_ID_KEYHASH","features":[123]},{"name":"OCSP_SF_RESPONDER_ID_NAME","features":[123]},{"name":"OCSP_SF_SILENT","features":[123]},{"name":"OCSP_SF_USE_CACERT","features":[123]},{"name":"ObjectIdGroupId","features":[123]},{"name":"ObjectIdPublicKeyFlags","features":[123]},{"name":"PENDING_REQUEST_DESIRED_PROPERTY","features":[123]},{"name":"PFXExportChainNoRoot","features":[123]},{"name":"PFXExportChainWithRoot","features":[123]},{"name":"PFXExportEEOnly","features":[123]},{"name":"PFXExportOptions","features":[123]},{"name":"PROCFLG_ENFORCEGOODKEYS","features":[123]},{"name":"PROCFLG_NONE","features":[123]},{"name":"PROPCALLER_ADMIN","features":[123]},{"name":"PROPCALLER_EXIT","features":[123]},{"name":"PROPCALLER_MASK","features":[123]},{"name":"PROPCALLER_POLICY","features":[123]},{"name":"PROPCALLER_REQUEST","features":[123]},{"name":"PROPCALLER_SERVER","features":[123]},{"name":"PROPFLAGS_INDEXED","features":[123]},{"name":"PROPTYPE_BINARY","features":[123]},{"name":"PROPTYPE_DATE","features":[123]},{"name":"PROPTYPE_LONG","features":[123]},{"name":"PROPTYPE_MASK","features":[123]},{"name":"PROPTYPE_STRING","features":[123]},{"name":"Pkcs10AllowedSignatureTypes","features":[123]},{"name":"PolicyQualifierType","features":[123]},{"name":"PolicyQualifierTypeFlags","features":[123]},{"name":"PolicyQualifierTypeUnknown","features":[123]},{"name":"PolicyQualifierTypeUrl","features":[123]},{"name":"PolicyQualifierTypeUserNotice","features":[123]},{"name":"PolicyServerUrlFlags","features":[123]},{"name":"PolicyServerUrlPropertyID","features":[123]},{"name":"PrivateKeyAttestMask","features":[123]},{"name":"PrivateKeyAttestNone","features":[123]},{"name":"PrivateKeyAttestPreferred","features":[123]},{"name":"PrivateKeyAttestRequired","features":[123]},{"name":"PrivateKeyAttestWithoutPolicy","features":[123]},{"name":"PrivateKeyClientVersionMask","features":[123]},{"name":"PrivateKeyClientVersionShift","features":[123]},{"name":"PrivateKeyEKTrustOnUse","features":[123]},{"name":"PrivateKeyEKValidateCert","features":[123]},{"name":"PrivateKeyEKValidateKey","features":[123]},{"name":"PrivateKeyExportable","features":[123]},{"name":"PrivateKeyHelloKspKey","features":[123]},{"name":"PrivateKeyHelloLogonKey","features":[123]},{"name":"PrivateKeyRequireAlternateSignatureAlgorithm","features":[123]},{"name":"PrivateKeyRequireArchival","features":[123]},{"name":"PrivateKeyRequireSameKeyRenewal","features":[123]},{"name":"PrivateKeyRequireStrongKeyProtection","features":[123]},{"name":"PrivateKeyServerVersionMask","features":[123]},{"name":"PrivateKeyServerVersionShift","features":[123]},{"name":"PrivateKeyUseLegacyProvider","features":[123]},{"name":"PsFriendlyName","features":[123]},{"name":"PsPolicyID","features":[123]},{"name":"PsfAllowUnTrustedCA","features":[123]},{"name":"PsfAutoEnrollmentEnabled","features":[123]},{"name":"PsfLocationGroupPolicy","features":[123]},{"name":"PsfLocationRegistry","features":[123]},{"name":"PsfNone","features":[123]},{"name":"PsfUseClientId","features":[123]},{"name":"PstAcquirePrivateKey","features":[1,123]},{"name":"PstGetCertificateChain","features":[1,23,123]},{"name":"PstGetCertificates","features":[1,123]},{"name":"PstGetTrustAnchors","features":[1,23,123]},{"name":"PstGetTrustAnchorsEx","features":[1,23,123]},{"name":"PstGetUserNameForCertificate","features":[1,123]},{"name":"PstMapCertificate","features":[1,23,123]},{"name":"PstValidate","features":[1,123]},{"name":"REQDISP_DEFAULT_ENTERPRISE","features":[123]},{"name":"REQDISP_DENY","features":[123]},{"name":"REQDISP_ISSUE","features":[123]},{"name":"REQDISP_MASK","features":[123]},{"name":"REQDISP_PENDING","features":[123]},{"name":"REQDISP_PENDINGFIRST","features":[123]},{"name":"REQDISP_USEREQUESTATTRIBUTE","features":[123]},{"name":"REVEXT_ASPENABLE","features":[123]},{"name":"REVEXT_CDPENABLE","features":[123]},{"name":"REVEXT_CDPFILEURL_OLD","features":[123]},{"name":"REVEXT_CDPFTPURL_OLD","features":[123]},{"name":"REVEXT_CDPHTTPURL_OLD","features":[123]},{"name":"REVEXT_CDPLDAPURL_OLD","features":[123]},{"name":"REVEXT_CDPURLMASK_OLD","features":[123]},{"name":"REVEXT_DEFAULT_DS","features":[123]},{"name":"REVEXT_DEFAULT_NODS","features":[123]},{"name":"RequestClientInfoClientId","features":[123]},{"name":"SCEPDispositionFailure","features":[123]},{"name":"SCEPDispositionPending","features":[123]},{"name":"SCEPDispositionPendingChallenge","features":[123]},{"name":"SCEPDispositionSuccess","features":[123]},{"name":"SCEPDispositionUnknown","features":[123]},{"name":"SCEPFailBadAlgorithm","features":[123]},{"name":"SCEPFailBadCertId","features":[123]},{"name":"SCEPFailBadMessageCheck","features":[123]},{"name":"SCEPFailBadRequest","features":[123]},{"name":"SCEPFailBadTime","features":[123]},{"name":"SCEPFailUnknown","features":[123]},{"name":"SCEPMessageCertResponse","features":[123]},{"name":"SCEPMessageClaimChallengeAnswer","features":[123]},{"name":"SCEPMessageGetCRL","features":[123]},{"name":"SCEPMessageGetCert","features":[123]},{"name":"SCEPMessageGetCertInitial","features":[123]},{"name":"SCEPMessagePKCSRequest","features":[123]},{"name":"SCEPMessageUnknown","features":[123]},{"name":"SCEPProcessDefault","features":[123]},{"name":"SCEPProcessSkipCertInstall","features":[123]},{"name":"SETUP_ATTEMPT_VROOT_CREATE","features":[123]},{"name":"SETUP_CLIENT_FLAG","features":[123]},{"name":"SETUP_CREATEDB_FLAG","features":[123]},{"name":"SETUP_DCOM_SECURITY_UPDATED_FLAG","features":[123]},{"name":"SETUP_DENIED_FLAG","features":[123]},{"name":"SETUP_FORCECRL_FLAG","features":[123]},{"name":"SETUP_ONLINE_FLAG","features":[123]},{"name":"SETUP_REQUEST_FLAG","features":[123]},{"name":"SETUP_SECURITY_CHANGED","features":[123]},{"name":"SETUP_SERVER_FLAG","features":[123]},{"name":"SETUP_SERVER_IS_UP_TO_DATE_FLAG","features":[123]},{"name":"SETUP_SERVER_UPGRADED_FLAG","features":[123]},{"name":"SETUP_SUSPEND_FLAG","features":[123]},{"name":"SETUP_UPDATE_CAOBJECT_SVRTYPE","features":[123]},{"name":"SETUP_W2K_SECURITY_NOT_UPGRADED_FLAG","features":[123]},{"name":"SKIHashCapiSha1","features":[123]},{"name":"SKIHashDefault","features":[123]},{"name":"SKIHashHPKP","features":[123]},{"name":"SKIHashSha1","features":[123]},{"name":"SKIHashSha256","features":[123]},{"name":"SelectedNo","features":[123]},{"name":"SelectedYes","features":[123]},{"name":"SubjectAlternativeNameEnrolleeSupplies","features":[123]},{"name":"SubjectAlternativeNameRequireDNS","features":[123]},{"name":"SubjectAlternativeNameRequireDirectoryGUID","features":[123]},{"name":"SubjectAlternativeNameRequireDomainDNS","features":[123]},{"name":"SubjectAlternativeNameRequireEmail","features":[123]},{"name":"SubjectAlternativeNameRequireSPN","features":[123]},{"name":"SubjectAlternativeNameRequireUPN","features":[123]},{"name":"SubjectNameAndAlternativeNameOldCertSupplies","features":[123]},{"name":"SubjectNameEnrolleeSupplies","features":[123]},{"name":"SubjectNameRequireCommonName","features":[123]},{"name":"SubjectNameRequireDNS","features":[123]},{"name":"SubjectNameRequireDirectoryPath","features":[123]},{"name":"SubjectNameRequireEmail","features":[123]},{"name":"TP_MACHINEPOLICY","features":[123]},{"name":"TemplatePropAsymmetricAlgorithm","features":[123]},{"name":"TemplatePropCertificatePolicies","features":[123]},{"name":"TemplatePropCommonName","features":[123]},{"name":"TemplatePropCryptoProviders","features":[123]},{"name":"TemplatePropDescription","features":[123]},{"name":"TemplatePropEKUs","features":[123]},{"name":"TemplatePropEnrollmentFlags","features":[123]},{"name":"TemplatePropExtensions","features":[123]},{"name":"TemplatePropFriendlyName","features":[123]},{"name":"TemplatePropGeneralFlags","features":[123]},{"name":"TemplatePropHashAlgorithm","features":[123]},{"name":"TemplatePropKeySecurityDescriptor","features":[123]},{"name":"TemplatePropKeySpec","features":[123]},{"name":"TemplatePropKeyUsage","features":[123]},{"name":"TemplatePropMajorRevision","features":[123]},{"name":"TemplatePropMinimumKeySize","features":[123]},{"name":"TemplatePropMinorRevision","features":[123]},{"name":"TemplatePropOID","features":[123]},{"name":"TemplatePropPrivateKeyFlags","features":[123]},{"name":"TemplatePropRACertificatePolicies","features":[123]},{"name":"TemplatePropRAEKUs","features":[123]},{"name":"TemplatePropRASignatureCount","features":[123]},{"name":"TemplatePropRenewalPeriod","features":[123]},{"name":"TemplatePropSchemaVersion","features":[123]},{"name":"TemplatePropSecurityDescriptor","features":[123]},{"name":"TemplatePropSubjectNameFlags","features":[123]},{"name":"TemplatePropSupersede","features":[123]},{"name":"TemplatePropSymmetricAlgorithm","features":[123]},{"name":"TemplatePropSymmetricKeyLength","features":[123]},{"name":"TemplatePropV1ApplicationPolicy","features":[123]},{"name":"TemplatePropValidityPeriod","features":[123]},{"name":"TypeAny","features":[123]},{"name":"TypeCertificate","features":[123]},{"name":"TypeCmc","features":[123]},{"name":"TypePkcs10","features":[123]},{"name":"TypePkcs7","features":[123]},{"name":"VR_INSTANT_BAD","features":[123]},{"name":"VR_INSTANT_OK","features":[123]},{"name":"VR_PENDING","features":[123]},{"name":"VerifyAllowUI","features":[123]},{"name":"VerifyNone","features":[123]},{"name":"VerifySilent","features":[123]},{"name":"VerifySmartCardNone","features":[123]},{"name":"VerifySmartCardSilent","features":[123]},{"name":"WebEnrollmentFlags","features":[123]},{"name":"WebSecurityLevel","features":[123]},{"name":"X500NameFlags","features":[123]},{"name":"X509AuthAnonymous","features":[123]},{"name":"X509AuthCertificate","features":[123]},{"name":"X509AuthKerberos","features":[123]},{"name":"X509AuthNone","features":[123]},{"name":"X509AuthUsername","features":[123]},{"name":"X509CertificateEnrollmentContext","features":[123]},{"name":"X509CertificateTemplateEnrollmentFlag","features":[123]},{"name":"X509CertificateTemplateGeneralFlag","features":[123]},{"name":"X509CertificateTemplatePrivateKeyFlag","features":[123]},{"name":"X509CertificateTemplateSubjectNameFlag","features":[123]},{"name":"X509EnrollmentAuthFlags","features":[123]},{"name":"X509EnrollmentPolicyExportFlags","features":[123]},{"name":"X509EnrollmentPolicyLoadOption","features":[123]},{"name":"X509HardwareKeyUsageFlags","features":[123]},{"name":"X509KeyParametersExportType","features":[123]},{"name":"X509KeySpec","features":[123]},{"name":"X509KeyUsageFlags","features":[123]},{"name":"X509PrivateKeyExportFlags","features":[123]},{"name":"X509PrivateKeyProtection","features":[123]},{"name":"X509PrivateKeyUsageFlags","features":[123]},{"name":"X509PrivateKeyVerify","features":[123]},{"name":"X509ProviderType","features":[123]},{"name":"X509RequestInheritOptions","features":[123]},{"name":"X509RequestType","features":[123]},{"name":"X509SCEPDisposition","features":[123]},{"name":"X509SCEPFailInfo","features":[123]},{"name":"X509SCEPMessageType","features":[123]},{"name":"X509SCEPProcessMessageFlags","features":[123]},{"name":"XCN_AT_KEYEXCHANGE","features":[123]},{"name":"XCN_AT_NONE","features":[123]},{"name":"XCN_AT_SIGNATURE","features":[123]},{"name":"XCN_BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[123]},{"name":"XCN_BCRYPT_CIPHER_INTERFACE","features":[123]},{"name":"XCN_BCRYPT_HASH_INTERFACE","features":[123]},{"name":"XCN_BCRYPT_KEY_DERIVATION_INTERFACE","features":[123]},{"name":"XCN_BCRYPT_RNG_INTERFACE","features":[123]},{"name":"XCN_BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[123]},{"name":"XCN_BCRYPT_SIGNATURE_INTERFACE","features":[123]},{"name":"XCN_BCRYPT_UNKNOWN_INTERFACE","features":[123]},{"name":"XCN_CERT_ACCESS_STATE_PROP_ID","features":[123]},{"name":"XCN_CERT_AIA_URL_RETRIEVED_PROP_ID","features":[123]},{"name":"XCN_CERT_ALT_NAME_DIRECTORY_NAME","features":[123]},{"name":"XCN_CERT_ALT_NAME_DNS_NAME","features":[123]},{"name":"XCN_CERT_ALT_NAME_EDI_PARTY_NAME","features":[123]},{"name":"XCN_CERT_ALT_NAME_GUID","features":[123]},{"name":"XCN_CERT_ALT_NAME_IP_ADDRESS","features":[123]},{"name":"XCN_CERT_ALT_NAME_OTHER_NAME","features":[123]},{"name":"XCN_CERT_ALT_NAME_REGISTERED_ID","features":[123]},{"name":"XCN_CERT_ALT_NAME_RFC822_NAME","features":[123]},{"name":"XCN_CERT_ALT_NAME_UNKNOWN","features":[123]},{"name":"XCN_CERT_ALT_NAME_URL","features":[123]},{"name":"XCN_CERT_ALT_NAME_USER_PRINCIPLE_NAME","features":[123]},{"name":"XCN_CERT_ALT_NAME_X400_ADDRESS","features":[123]},{"name":"XCN_CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_ARCHIVED_PROP_ID","features":[123]},{"name":"XCN_CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[123]},{"name":"XCN_CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_AUTO_ENROLL_PROP_ID","features":[123]},{"name":"XCN_CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[123]},{"name":"XCN_CERT_BACKED_UP_PROP_ID","features":[123]},{"name":"XCN_CERT_CA_DISABLE_CRL_PROP_ID","features":[123]},{"name":"XCN_CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[123]},{"name":"XCN_CERT_CEP_PROP_ID","features":[123]},{"name":"XCN_CERT_CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[123]},{"name":"XCN_CERT_CLR_DELETE_KEY_PROP_ID","features":[123]},{"name":"XCN_CERT_CRL_SIGN_KEY_USAGE","features":[123]},{"name":"XCN_CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[123]},{"name":"XCN_CERT_CTL_USAGE_PROP_ID","features":[123]},{"name":"XCN_CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[123]},{"name":"XCN_CERT_DATE_STAMP_PROP_ID","features":[123]},{"name":"XCN_CERT_DECIPHER_ONLY_KEY_USAGE","features":[123]},{"name":"XCN_CERT_DESCRIPTION_PROP_ID","features":[123]},{"name":"XCN_CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[123]},{"name":"XCN_CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[123]},{"name":"XCN_CERT_DISALLOWED_FILETIME_PROP_ID","features":[123]},{"name":"XCN_CERT_EFS_PROP_ID","features":[123]},{"name":"XCN_CERT_ENCIPHER_ONLY_KEY_USAGE","features":[123]},{"name":"XCN_CERT_ENHKEY_USAGE_PROP_ID","features":[123]},{"name":"XCN_CERT_ENROLLMENT_PROP_ID","features":[123]},{"name":"XCN_CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[123]},{"name":"XCN_CERT_FIRST_RESERVED_PROP_ID","features":[123]},{"name":"XCN_CERT_FIRST_USER_PROP_ID","features":[123]},{"name":"XCN_CERT_FORTEZZA_DATA_PROP_ID","features":[123]},{"name":"XCN_CERT_FRIENDLY_NAME_PROP_ID","features":[123]},{"name":"XCN_CERT_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[123]},{"name":"XCN_CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[123]},{"name":"XCN_CERT_IE30_RESERVED_PROP_ID","features":[123]},{"name":"XCN_CERT_ISOLATED_KEY_PROP_ID","features":[123]},{"name":"XCN_CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[123]},{"name":"XCN_CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[123]},{"name":"XCN_CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[123]},{"name":"XCN_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_KEY_AGREEMENT_KEY_USAGE","features":[123]},{"name":"XCN_CERT_KEY_CERT_SIGN_KEY_USAGE","features":[123]},{"name":"XCN_CERT_KEY_CLASSIFICATION_PROP_ID","features":[123]},{"name":"XCN_CERT_KEY_CONTEXT_PROP_ID","features":[123]},{"name":"XCN_CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[123]},{"name":"XCN_CERT_KEY_IDENTIFIER_PROP_ID","features":[123]},{"name":"XCN_CERT_KEY_PROV_HANDLE_PROP_ID","features":[123]},{"name":"XCN_CERT_KEY_PROV_INFO_PROP_ID","features":[123]},{"name":"XCN_CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[123]},{"name":"XCN_CERT_KEY_SPEC_PROP_ID","features":[123]},{"name":"XCN_CERT_LAST_RESERVED_PROP_ID","features":[123]},{"name":"XCN_CERT_LAST_USER_PROP_ID","features":[123]},{"name":"XCN_CERT_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_NAME_STR_AMBIGUOUS_SEPARATOR_FLAGS","features":[123]},{"name":"XCN_CERT_NAME_STR_COMMA_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_CRLF_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_DS_ESCAPED","features":[123]},{"name":"XCN_CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_FORWARD_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_NONE","features":[123]},{"name":"XCN_CERT_NAME_STR_NO_PLUS_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_NO_QUOTING_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_REVERSE_FLAG","features":[123]},{"name":"XCN_CERT_NAME_STR_SEMICOLON_FLAG","features":[123]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[123]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[123]},{"name":"XCN_CERT_NEW_KEY_PROP_ID","features":[123]},{"name":"XCN_CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[123]},{"name":"XCN_CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[123]},{"name":"XCN_CERT_NON_REPUDIATION_KEY_USAGE","features":[123]},{"name":"XCN_CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[123]},{"name":"XCN_CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[123]},{"name":"XCN_CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[123]},{"name":"XCN_CERT_NO_KEY_USAGE","features":[123]},{"name":"XCN_CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[123]},{"name":"XCN_CERT_OCSP_RESPONSE_PROP_ID","features":[123]},{"name":"XCN_CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[123]},{"name":"XCN_CERT_OID_NAME_STR","features":[123]},{"name":"XCN_CERT_PIN_SHA256_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_PUBKEY_ALG_PARA_PROP_ID","features":[123]},{"name":"XCN_CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[123]},{"name":"XCN_CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[123]},{"name":"XCN_CERT_PVK_FILE_PROP_ID","features":[123]},{"name":"XCN_CERT_RENEWAL_PROP_ID","features":[123]},{"name":"XCN_CERT_REQUEST_ORIGINATOR_PROP_ID","features":[123]},{"name":"XCN_CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[123]},{"name":"XCN_CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[123]},{"name":"XCN_CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[123]},{"name":"XCN_CERT_SCARD_PIN_ID_PROP_ID","features":[123]},{"name":"XCN_CERT_SCARD_PIN_INFO_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_CA_CERT_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_FLAGS_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_GUID_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_NONCE_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_SERVER_CERTS_PROP_ID","features":[123]},{"name":"XCN_CERT_SCEP_SIGNER_CERT_PROP_ID","features":[123]},{"name":"XCN_CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[123]},{"name":"XCN_CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[123]},{"name":"XCN_CERT_SERIAL_CHAIN_PROP_ID","features":[123]},{"name":"XCN_CERT_SHA1_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_SHA256_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_SIGNATURE_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[123]},{"name":"XCN_CERT_SIMPLE_NAME_STR","features":[123]},{"name":"XCN_CERT_SMART_CARD_DATA_PROP_ID","features":[123]},{"name":"XCN_CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[123]},{"name":"XCN_CERT_SMART_CARD_READER_PROP_ID","features":[123]},{"name":"XCN_CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[123]},{"name":"XCN_CERT_SOURCE_LOCATION_PROP_ID","features":[123]},{"name":"XCN_CERT_SOURCE_URL_PROP_ID","features":[123]},{"name":"XCN_CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[123]},{"name":"XCN_CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[123]},{"name":"XCN_CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[123]},{"name":"XCN_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[123]},{"name":"XCN_CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[123]},{"name":"XCN_CERT_X500_NAME_STR","features":[123]},{"name":"XCN_CERT_XML_NAME_STR","features":[123]},{"name":"XCN_CRL_REASON_AA_COMPROMISE","features":[123]},{"name":"XCN_CRL_REASON_AFFILIATION_CHANGED","features":[123]},{"name":"XCN_CRL_REASON_CA_COMPROMISE","features":[123]},{"name":"XCN_CRL_REASON_CERTIFICATE_HOLD","features":[123]},{"name":"XCN_CRL_REASON_CESSATION_OF_OPERATION","features":[123]},{"name":"XCN_CRL_REASON_KEY_COMPROMISE","features":[123]},{"name":"XCN_CRL_REASON_PRIVILEGE_WITHDRAWN","features":[123]},{"name":"XCN_CRL_REASON_REMOVE_FROM_CRL","features":[123]},{"name":"XCN_CRL_REASON_SUPERSEDED","features":[123]},{"name":"XCN_CRL_REASON_UNSPECIFIED","features":[123]},{"name":"XCN_CRYPT_ANY_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_FIRST_ALG_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_GROUP_ID_MASK","features":[123]},{"name":"XCN_CRYPT_HASH_ALG_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_KDF_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_KEY_LENGTH_MASK","features":[123]},{"name":"XCN_CRYPT_LAST_ALG_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_LAST_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[123]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[123]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[123]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ANY","features":[123]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[123]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[123]},{"name":"XCN_CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[123]},{"name":"XCN_CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[123]},{"name":"XCN_CRYPT_OID_USE_CURVE_NONE","features":[123]},{"name":"XCN_CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[123]},{"name":"XCN_CRYPT_POLICY_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_RDN_ATTR_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_SIGN_ALG_OID_GROUP_ID","features":[123]},{"name":"XCN_CRYPT_STRING_ANY","features":[123]},{"name":"XCN_CRYPT_STRING_BASE64","features":[123]},{"name":"XCN_CRYPT_STRING_BASE64HEADER","features":[123]},{"name":"XCN_CRYPT_STRING_BASE64REQUESTHEADER","features":[123]},{"name":"XCN_CRYPT_STRING_BASE64URI","features":[123]},{"name":"XCN_CRYPT_STRING_BASE64X509CRLHEADER","features":[123]},{"name":"XCN_CRYPT_STRING_BASE64_ANY","features":[123]},{"name":"XCN_CRYPT_STRING_BINARY","features":[123]},{"name":"XCN_CRYPT_STRING_CHAIN","features":[123]},{"name":"XCN_CRYPT_STRING_ENCODEMASK","features":[123]},{"name":"XCN_CRYPT_STRING_HASHDATA","features":[123]},{"name":"XCN_CRYPT_STRING_HEX","features":[123]},{"name":"XCN_CRYPT_STRING_HEXADDR","features":[123]},{"name":"XCN_CRYPT_STRING_HEXASCII","features":[123]},{"name":"XCN_CRYPT_STRING_HEXASCIIADDR","features":[123]},{"name":"XCN_CRYPT_STRING_HEXRAW","features":[123]},{"name":"XCN_CRYPT_STRING_HEX_ANY","features":[123]},{"name":"XCN_CRYPT_STRING_NOCR","features":[123]},{"name":"XCN_CRYPT_STRING_NOCRLF","features":[123]},{"name":"XCN_CRYPT_STRING_PERCENTESCAPE","features":[123]},{"name":"XCN_CRYPT_STRING_STRICT","features":[123]},{"name":"XCN_CRYPT_STRING_TEXT","features":[123]},{"name":"XCN_CRYPT_TEMPLATE_OID_GROUP_ID","features":[123]},{"name":"XCN_NCRYPT_ALLOW_ALL_USAGES","features":[123]},{"name":"XCN_NCRYPT_ALLOW_ARCHIVING_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_DECRYPT_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_NONE","features":[123]},{"name":"XCN_NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_SIGNING_FLAG","features":[123]},{"name":"XCN_NCRYPT_ALLOW_USAGES_NONE","features":[123]},{"name":"XCN_NCRYPT_ANY_ASYMMETRIC_OPERATION","features":[123]},{"name":"XCN_NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[123]},{"name":"XCN_NCRYPT_CIPHER_OPERATION","features":[123]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[123]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_ONLY","features":[123]},{"name":"XCN_NCRYPT_CLAIM_NONE","features":[123]},{"name":"XCN_NCRYPT_CLAIM_SUBJECT_ONLY","features":[123]},{"name":"XCN_NCRYPT_CLAIM_UNKNOWN","features":[123]},{"name":"XCN_NCRYPT_EXACT_MATCH_OPERATION","features":[123]},{"name":"XCN_NCRYPT_HASH_OPERATION","features":[123]},{"name":"XCN_NCRYPT_KEY_DERIVATION_OPERATION","features":[123]},{"name":"XCN_NCRYPT_NO_OPERATION","features":[123]},{"name":"XCN_NCRYPT_PCP_ENCRYPTION_KEY","features":[123]},{"name":"XCN_NCRYPT_PCP_GENERIC_KEY","features":[123]},{"name":"XCN_NCRYPT_PCP_IDENTITY_KEY","features":[123]},{"name":"XCN_NCRYPT_PCP_NONE","features":[123]},{"name":"XCN_NCRYPT_PCP_SIGNATURE_KEY","features":[123]},{"name":"XCN_NCRYPT_PCP_STORAGE_KEY","features":[123]},{"name":"XCN_NCRYPT_PREFERENCE_MASK_OPERATION","features":[123]},{"name":"XCN_NCRYPT_PREFER_NON_SIGNATURE_OPERATION","features":[123]},{"name":"XCN_NCRYPT_PREFER_SIGNATURE_ONLY_OPERATION","features":[123]},{"name":"XCN_NCRYPT_RNG_OPERATION","features":[123]},{"name":"XCN_NCRYPT_SECRET_AGREEMENT_OPERATION","features":[123]},{"name":"XCN_NCRYPT_SIGNATURE_OPERATION","features":[123]},{"name":"XCN_NCRYPT_TPM12_PROVIDER","features":[123]},{"name":"XCN_NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[123]},{"name":"XCN_NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[123]},{"name":"XCN_NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[123]},{"name":"XCN_NCRYPT_UI_NO_PROTECTION_FLAG","features":[123]},{"name":"XCN_NCRYPT_UI_PROTECT_KEY_FLAG","features":[123]},{"name":"XCN_OIDVerisign_FailInfo","features":[123]},{"name":"XCN_OIDVerisign_MessageType","features":[123]},{"name":"XCN_OIDVerisign_PkiStatus","features":[123]},{"name":"XCN_OIDVerisign_RecipientNonce","features":[123]},{"name":"XCN_OIDVerisign_SenderNonce","features":[123]},{"name":"XCN_OIDVerisign_TransactionID","features":[123]},{"name":"XCN_OID_ANSI_X942","features":[123]},{"name":"XCN_OID_ANSI_X942_DH","features":[123]},{"name":"XCN_OID_ANY_APPLICATION_POLICY","features":[123]},{"name":"XCN_OID_ANY_CERT_POLICY","features":[123]},{"name":"XCN_OID_ANY_ENHANCED_KEY_USAGE","features":[123]},{"name":"XCN_OID_APPLICATION_CERT_POLICIES","features":[123]},{"name":"XCN_OID_APPLICATION_POLICY_CONSTRAINTS","features":[123]},{"name":"XCN_OID_APPLICATION_POLICY_MAPPINGS","features":[123]},{"name":"XCN_OID_ARCHIVED_KEY_ATTR","features":[123]},{"name":"XCN_OID_ARCHIVED_KEY_CERT_HASH","features":[123]},{"name":"XCN_OID_ATTR_SUPPORTED_ALGORITHMS","features":[123]},{"name":"XCN_OID_ATTR_TPM_SECURITY_ASSERTIONS","features":[123]},{"name":"XCN_OID_ATTR_TPM_SPECIFICATION","features":[123]},{"name":"XCN_OID_AUTHORITY_INFO_ACCESS","features":[123]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER","features":[123]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER2","features":[123]},{"name":"XCN_OID_AUTHORITY_REVOCATION_LIST","features":[123]},{"name":"XCN_OID_AUTO_ENROLL_CTL_USAGE","features":[123]},{"name":"XCN_OID_BACKGROUND_OTHER_LOGOTYPE","features":[123]},{"name":"XCN_OID_BASIC_CONSTRAINTS","features":[123]},{"name":"XCN_OID_BASIC_CONSTRAINTS2","features":[123]},{"name":"XCN_OID_BIOMETRIC_EXT","features":[123]},{"name":"XCN_OID_BUSINESS_CATEGORY","features":[123]},{"name":"XCN_OID_CA_CERTIFICATE","features":[123]},{"name":"XCN_OID_CERTIFICATE_REVOCATION_LIST","features":[123]},{"name":"XCN_OID_CERTIFICATE_TEMPLATE","features":[123]},{"name":"XCN_OID_CERTSRV_CA_VERSION","features":[123]},{"name":"XCN_OID_CERTSRV_CROSSCA_VERSION","features":[123]},{"name":"XCN_OID_CERTSRV_PREVIOUS_CERT_HASH","features":[123]},{"name":"XCN_OID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[123]},{"name":"XCN_OID_CERT_EXTENSIONS","features":[123]},{"name":"XCN_OID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_OID_CERT_KEY_IDENTIFIER_PROP_ID","features":[123]},{"name":"XCN_OID_CERT_MANIFOLD","features":[123]},{"name":"XCN_OID_CERT_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_OID_CERT_POLICIES","features":[123]},{"name":"XCN_OID_CERT_POLICIES_95","features":[123]},{"name":"XCN_OID_CERT_POLICIES_95_QUALIFIER1","features":[123]},{"name":"XCN_OID_CERT_PROP_ID_PREFIX","features":[123]},{"name":"XCN_OID_CERT_SIGNATURE_HASH_PROP_ID","features":[123]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_1","features":[123]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_CURRENT","features":[123]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_PREFIX","features":[123]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_1","features":[123]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_CURRENT","features":[123]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_PREFIX","features":[123]},{"name":"XCN_OID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[123]},{"name":"XCN_OID_CMC","features":[123]},{"name":"XCN_OID_CMC_ADD_ATTRIBUTES","features":[123]},{"name":"XCN_OID_CMC_ADD_EXTENSIONS","features":[123]},{"name":"XCN_OID_CMC_DATA_RETURN","features":[123]},{"name":"XCN_OID_CMC_DECRYPTED_POP","features":[123]},{"name":"XCN_OID_CMC_ENCRYPTED_POP","features":[123]},{"name":"XCN_OID_CMC_GET_CERT","features":[123]},{"name":"XCN_OID_CMC_GET_CRL","features":[123]},{"name":"XCN_OID_CMC_IDENTIFICATION","features":[123]},{"name":"XCN_OID_CMC_IDENTITY_PROOF","features":[123]},{"name":"XCN_OID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[123]},{"name":"XCN_OID_CMC_ID_POP_LINK_RANDOM","features":[123]},{"name":"XCN_OID_CMC_ID_POP_LINK_WITNESS","features":[123]},{"name":"XCN_OID_CMC_LRA_POP_WITNESS","features":[123]},{"name":"XCN_OID_CMC_QUERY_PENDING","features":[123]},{"name":"XCN_OID_CMC_RECIPIENT_NONCE","features":[123]},{"name":"XCN_OID_CMC_REG_INFO","features":[123]},{"name":"XCN_OID_CMC_RESPONSE_INFO","features":[123]},{"name":"XCN_OID_CMC_REVOKE_REQUEST","features":[123]},{"name":"XCN_OID_CMC_SENDER_NONCE","features":[123]},{"name":"XCN_OID_CMC_STATUS_INFO","features":[123]},{"name":"XCN_OID_CMC_TRANSACTION_ID","features":[123]},{"name":"XCN_OID_COMMON_NAME","features":[123]},{"name":"XCN_OID_COUNTRY_NAME","features":[123]},{"name":"XCN_OID_CRL_DIST_POINTS","features":[123]},{"name":"XCN_OID_CRL_NEXT_PUBLISH","features":[123]},{"name":"XCN_OID_CRL_NUMBER","features":[123]},{"name":"XCN_OID_CRL_REASON_CODE","features":[123]},{"name":"XCN_OID_CRL_SELF_CDP","features":[123]},{"name":"XCN_OID_CRL_VIRTUAL_BASE","features":[123]},{"name":"XCN_OID_CROSS_CERTIFICATE_PAIR","features":[123]},{"name":"XCN_OID_CROSS_CERT_DIST_POINTS","features":[123]},{"name":"XCN_OID_CTL","features":[123]},{"name":"XCN_OID_CT_PKI_DATA","features":[123]},{"name":"XCN_OID_CT_PKI_RESPONSE","features":[123]},{"name":"XCN_OID_DELTA_CRL_INDICATOR","features":[123]},{"name":"XCN_OID_DESCRIPTION","features":[123]},{"name":"XCN_OID_DESTINATION_INDICATOR","features":[123]},{"name":"XCN_OID_DEVICE_SERIAL_NUMBER","features":[123]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[123]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[123]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[123]},{"name":"XCN_OID_DISALLOWED_HASH","features":[123]},{"name":"XCN_OID_DISALLOWED_LIST","features":[123]},{"name":"XCN_OID_DN_QUALIFIER","features":[123]},{"name":"XCN_OID_DOMAIN_COMPONENT","features":[123]},{"name":"XCN_OID_DRM","features":[123]},{"name":"XCN_OID_DRM_INDIVIDUALIZATION","features":[123]},{"name":"XCN_OID_DS","features":[123]},{"name":"XCN_OID_DSALG","features":[123]},{"name":"XCN_OID_DSALG_CRPT","features":[123]},{"name":"XCN_OID_DSALG_HASH","features":[123]},{"name":"XCN_OID_DSALG_RSA","features":[123]},{"name":"XCN_OID_DSALG_SIGN","features":[123]},{"name":"XCN_OID_DS_EMAIL_REPLICATION","features":[123]},{"name":"XCN_OID_ECC_CURVE_P256","features":[123]},{"name":"XCN_OID_ECC_CURVE_P384","features":[123]},{"name":"XCN_OID_ECC_CURVE_P521","features":[123]},{"name":"XCN_OID_ECC_PUBLIC_KEY","features":[123]},{"name":"XCN_OID_ECDSA_SHA1","features":[123]},{"name":"XCN_OID_ECDSA_SHA256","features":[123]},{"name":"XCN_OID_ECDSA_SHA384","features":[123]},{"name":"XCN_OID_ECDSA_SHA512","features":[123]},{"name":"XCN_OID_ECDSA_SPECIFIED","features":[123]},{"name":"XCN_OID_EFS_RECOVERY","features":[123]},{"name":"XCN_OID_EMBEDDED_NT_CRYPTO","features":[123]},{"name":"XCN_OID_ENCRYPTED_KEY_HASH","features":[123]},{"name":"XCN_OID_ENHANCED_KEY_USAGE","features":[123]},{"name":"XCN_OID_ENROLLMENT_AGENT","features":[123]},{"name":"XCN_OID_ENROLLMENT_CSP_PROVIDER","features":[123]},{"name":"XCN_OID_ENROLLMENT_NAME_VALUE_PAIR","features":[123]},{"name":"XCN_OID_ENROLL_ATTESTATION_CHALLENGE","features":[123]},{"name":"XCN_OID_ENROLL_ATTESTATION_STATEMENT","features":[123]},{"name":"XCN_OID_ENROLL_CAXCHGCERT_HASH","features":[123]},{"name":"XCN_OID_ENROLL_CERTTYPE_EXTENSION","features":[123]},{"name":"XCN_OID_ENROLL_EKPUB_CHALLENGE","features":[123]},{"name":"XCN_OID_ENROLL_EKVERIFYCERT","features":[123]},{"name":"XCN_OID_ENROLL_EKVERIFYCREDS","features":[123]},{"name":"XCN_OID_ENROLL_EKVERIFYKEY","features":[123]},{"name":"XCN_OID_ENROLL_EK_INFO","features":[123]},{"name":"XCN_OID_ENROLL_ENCRYPTION_ALGORITHM","features":[123]},{"name":"XCN_OID_ENROLL_KSP_NAME","features":[123]},{"name":"XCN_OID_ENROLL_SCEP_ERROR","features":[123]},{"name":"XCN_OID_ENTERPRISE_OID_ROOT","features":[123]},{"name":"XCN_OID_EV_RDN_COUNTRY","features":[123]},{"name":"XCN_OID_EV_RDN_LOCALE","features":[123]},{"name":"XCN_OID_EV_RDN_STATE_OR_PROVINCE","features":[123]},{"name":"XCN_OID_FACSIMILE_TELEPHONE_NUMBER","features":[123]},{"name":"XCN_OID_FRESHEST_CRL","features":[123]},{"name":"XCN_OID_GIVEN_NAME","features":[123]},{"name":"XCN_OID_INFOSEC","features":[123]},{"name":"XCN_OID_INFOSEC_SuiteAConfidentiality","features":[123]},{"name":"XCN_OID_INFOSEC_SuiteAIntegrity","features":[123]},{"name":"XCN_OID_INFOSEC_SuiteAKMandSig","features":[123]},{"name":"XCN_OID_INFOSEC_SuiteAKeyManagement","features":[123]},{"name":"XCN_OID_INFOSEC_SuiteASignature","features":[123]},{"name":"XCN_OID_INFOSEC_SuiteATokenProtection","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicConfidentiality","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicIntegrity","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicKMandSig","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicKMandUpdSig","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicKeyManagement","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicSignature","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicTokenProtection","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedInteg","features":[123]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedSig","features":[123]},{"name":"XCN_OID_INFOSEC_sdnsConfidentiality","features":[123]},{"name":"XCN_OID_INFOSEC_sdnsIntegrity","features":[123]},{"name":"XCN_OID_INFOSEC_sdnsKMandSig","features":[123]},{"name":"XCN_OID_INFOSEC_sdnsKeyManagement","features":[123]},{"name":"XCN_OID_INFOSEC_sdnsSignature","features":[123]},{"name":"XCN_OID_INFOSEC_sdnsTokenProtection","features":[123]},{"name":"XCN_OID_INHIBIT_ANY_POLICY","features":[123]},{"name":"XCN_OID_INITIALS","features":[123]},{"name":"XCN_OID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[123]},{"name":"XCN_OID_INTERNATIONAL_ISDN_NUMBER","features":[123]},{"name":"XCN_OID_IPSEC_KP_IKE_INTERMEDIATE","features":[123]},{"name":"XCN_OID_ISSUED_CERT_HASH","features":[123]},{"name":"XCN_OID_ISSUER_ALT_NAME","features":[123]},{"name":"XCN_OID_ISSUER_ALT_NAME2","features":[123]},{"name":"XCN_OID_ISSUING_DIST_POINT","features":[123]},{"name":"XCN_OID_KEYID_RDN","features":[123]},{"name":"XCN_OID_KEY_ATTRIBUTES","features":[123]},{"name":"XCN_OID_KEY_USAGE","features":[123]},{"name":"XCN_OID_KEY_USAGE_RESTRICTION","features":[123]},{"name":"XCN_OID_KP_CA_EXCHANGE","features":[123]},{"name":"XCN_OID_KP_CSP_SIGNATURE","features":[123]},{"name":"XCN_OID_KP_CTL_USAGE_SIGNING","features":[123]},{"name":"XCN_OID_KP_DOCUMENT_SIGNING","features":[123]},{"name":"XCN_OID_KP_EFS","features":[123]},{"name":"XCN_OID_KP_KERNEL_MODE_CODE_SIGNING","features":[123]},{"name":"XCN_OID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[123]},{"name":"XCN_OID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[123]},{"name":"XCN_OID_KP_KEY_RECOVERY","features":[123]},{"name":"XCN_OID_KP_KEY_RECOVERY_AGENT","features":[123]},{"name":"XCN_OID_KP_LIFETIME_SIGNING","features":[123]},{"name":"XCN_OID_KP_MOBILE_DEVICE_SOFTWARE","features":[123]},{"name":"XCN_OID_KP_QUALIFIED_SUBORDINATION","features":[123]},{"name":"XCN_OID_KP_SMARTCARD_LOGON","features":[123]},{"name":"XCN_OID_KP_SMART_DISPLAY","features":[123]},{"name":"XCN_OID_KP_TIME_STAMP_SIGNING","features":[123]},{"name":"XCN_OID_KP_TPM_AIK_CERTIFICATE","features":[123]},{"name":"XCN_OID_KP_TPM_EK_CERTIFICATE","features":[123]},{"name":"XCN_OID_KP_TPM_PLATFORM_CERTIFICATE","features":[123]},{"name":"XCN_OID_LEGACY_POLICY_MAPPINGS","features":[123]},{"name":"XCN_OID_LICENSES","features":[123]},{"name":"XCN_OID_LICENSE_SERVER","features":[123]},{"name":"XCN_OID_LOCALITY_NAME","features":[123]},{"name":"XCN_OID_LOCAL_MACHINE_KEYSET","features":[123]},{"name":"XCN_OID_LOGOTYPE_EXT","features":[123]},{"name":"XCN_OID_LOYALTY_OTHER_LOGOTYPE","features":[123]},{"name":"XCN_OID_MEMBER","features":[123]},{"name":"XCN_OID_NAME_CONSTRAINTS","features":[123]},{"name":"XCN_OID_NETSCAPE","features":[123]},{"name":"XCN_OID_NETSCAPE_BASE_URL","features":[123]},{"name":"XCN_OID_NETSCAPE_CA_POLICY_URL","features":[123]},{"name":"XCN_OID_NETSCAPE_CA_REVOCATION_URL","features":[123]},{"name":"XCN_OID_NETSCAPE_CERT_EXTENSION","features":[123]},{"name":"XCN_OID_NETSCAPE_CERT_RENEWAL_URL","features":[123]},{"name":"XCN_OID_NETSCAPE_CERT_SEQUENCE","features":[123]},{"name":"XCN_OID_NETSCAPE_CERT_TYPE","features":[123]},{"name":"XCN_OID_NETSCAPE_COMMENT","features":[123]},{"name":"XCN_OID_NETSCAPE_DATA_TYPE","features":[123]},{"name":"XCN_OID_NETSCAPE_REVOCATION_URL","features":[123]},{"name":"XCN_OID_NETSCAPE_SSL_SERVER_NAME","features":[123]},{"name":"XCN_OID_NEXT_UPDATE_LOCATION","features":[123]},{"name":"XCN_OID_NIST_AES128_CBC","features":[123]},{"name":"XCN_OID_NIST_AES128_WRAP","features":[123]},{"name":"XCN_OID_NIST_AES192_CBC","features":[123]},{"name":"XCN_OID_NIST_AES192_WRAP","features":[123]},{"name":"XCN_OID_NIST_AES256_CBC","features":[123]},{"name":"XCN_OID_NIST_AES256_WRAP","features":[123]},{"name":"XCN_OID_NIST_sha256","features":[123]},{"name":"XCN_OID_NIST_sha384","features":[123]},{"name":"XCN_OID_NIST_sha512","features":[123]},{"name":"XCN_OID_NONE","features":[123]},{"name":"XCN_OID_NT5_CRYPTO","features":[123]},{"name":"XCN_OID_NTDS_REPLICATION","features":[123]},{"name":"XCN_OID_NT_PRINCIPAL_NAME","features":[123]},{"name":"XCN_OID_OEM_WHQL_CRYPTO","features":[123]},{"name":"XCN_OID_OIW","features":[123]},{"name":"XCN_OID_OIWDIR","features":[123]},{"name":"XCN_OID_OIWDIR_CRPT","features":[123]},{"name":"XCN_OID_OIWDIR_HASH","features":[123]},{"name":"XCN_OID_OIWDIR_SIGN","features":[123]},{"name":"XCN_OID_OIWDIR_md2","features":[123]},{"name":"XCN_OID_OIWDIR_md2RSA","features":[123]},{"name":"XCN_OID_OIWSEC","features":[123]},{"name":"XCN_OID_OIWSEC_desCBC","features":[123]},{"name":"XCN_OID_OIWSEC_desCFB","features":[123]},{"name":"XCN_OID_OIWSEC_desECB","features":[123]},{"name":"XCN_OID_OIWSEC_desEDE","features":[123]},{"name":"XCN_OID_OIWSEC_desMAC","features":[123]},{"name":"XCN_OID_OIWSEC_desOFB","features":[123]},{"name":"XCN_OID_OIWSEC_dhCommMod","features":[123]},{"name":"XCN_OID_OIWSEC_dsa","features":[123]},{"name":"XCN_OID_OIWSEC_dsaComm","features":[123]},{"name":"XCN_OID_OIWSEC_dsaCommSHA","features":[123]},{"name":"XCN_OID_OIWSEC_dsaCommSHA1","features":[123]},{"name":"XCN_OID_OIWSEC_dsaSHA1","features":[123]},{"name":"XCN_OID_OIWSEC_keyHashSeal","features":[123]},{"name":"XCN_OID_OIWSEC_md2RSASign","features":[123]},{"name":"XCN_OID_OIWSEC_md4RSA","features":[123]},{"name":"XCN_OID_OIWSEC_md4RSA2","features":[123]},{"name":"XCN_OID_OIWSEC_md5RSA","features":[123]},{"name":"XCN_OID_OIWSEC_md5RSASign","features":[123]},{"name":"XCN_OID_OIWSEC_mdc2","features":[123]},{"name":"XCN_OID_OIWSEC_mdc2RSA","features":[123]},{"name":"XCN_OID_OIWSEC_rsaSign","features":[123]},{"name":"XCN_OID_OIWSEC_rsaXchg","features":[123]},{"name":"XCN_OID_OIWSEC_sha","features":[123]},{"name":"XCN_OID_OIWSEC_sha1","features":[123]},{"name":"XCN_OID_OIWSEC_sha1RSASign","features":[123]},{"name":"XCN_OID_OIWSEC_shaDSA","features":[123]},{"name":"XCN_OID_OIWSEC_shaRSA","features":[123]},{"name":"XCN_OID_ORGANIZATIONAL_UNIT_NAME","features":[123]},{"name":"XCN_OID_ORGANIZATION_NAME","features":[123]},{"name":"XCN_OID_OS_VERSION","features":[123]},{"name":"XCN_OID_OWNER","features":[123]},{"name":"XCN_OID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[123]},{"name":"XCN_OID_PKCS","features":[123]},{"name":"XCN_OID_PKCS_1","features":[123]},{"name":"XCN_OID_PKCS_10","features":[123]},{"name":"XCN_OID_PKCS_12","features":[123]},{"name":"XCN_OID_PKCS_12_EXTENDED_ATTRIBUTES","features":[123]},{"name":"XCN_OID_PKCS_12_FRIENDLY_NAME_ATTR","features":[123]},{"name":"XCN_OID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[123]},{"name":"XCN_OID_PKCS_12_LOCAL_KEY_ID","features":[123]},{"name":"XCN_OID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[123]},{"name":"XCN_OID_PKCS_12_PbeIds","features":[123]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC2","features":[123]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC4","features":[123]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[123]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[123]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC2","features":[123]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC4","features":[123]},{"name":"XCN_OID_PKCS_2","features":[123]},{"name":"XCN_OID_PKCS_3","features":[123]},{"name":"XCN_OID_PKCS_4","features":[123]},{"name":"XCN_OID_PKCS_5","features":[123]},{"name":"XCN_OID_PKCS_6","features":[123]},{"name":"XCN_OID_PKCS_7","features":[123]},{"name":"XCN_OID_PKCS_7_DATA","features":[123]},{"name":"XCN_OID_PKCS_7_DIGESTED","features":[123]},{"name":"XCN_OID_PKCS_7_ENCRYPTED","features":[123]},{"name":"XCN_OID_PKCS_7_ENVELOPED","features":[123]},{"name":"XCN_OID_PKCS_7_SIGNED","features":[123]},{"name":"XCN_OID_PKCS_7_SIGNEDANDENVELOPED","features":[123]},{"name":"XCN_OID_PKCS_8","features":[123]},{"name":"XCN_OID_PKCS_9","features":[123]},{"name":"XCN_OID_PKCS_9_CONTENT_TYPE","features":[123]},{"name":"XCN_OID_PKCS_9_MESSAGE_DIGEST","features":[123]},{"name":"XCN_OID_PKINIT_KP_KDC","features":[123]},{"name":"XCN_OID_PKIX","features":[123]},{"name":"XCN_OID_PKIX_ACC_DESCR","features":[123]},{"name":"XCN_OID_PKIX_CA_ISSUERS","features":[123]},{"name":"XCN_OID_PKIX_CA_REPOSITORY","features":[123]},{"name":"XCN_OID_PKIX_KP","features":[123]},{"name":"XCN_OID_PKIX_KP_CLIENT_AUTH","features":[123]},{"name":"XCN_OID_PKIX_KP_CODE_SIGNING","features":[123]},{"name":"XCN_OID_PKIX_KP_EMAIL_PROTECTION","features":[123]},{"name":"XCN_OID_PKIX_KP_IPSEC_END_SYSTEM","features":[123]},{"name":"XCN_OID_PKIX_KP_IPSEC_TUNNEL","features":[123]},{"name":"XCN_OID_PKIX_KP_IPSEC_USER","features":[123]},{"name":"XCN_OID_PKIX_KP_OCSP_SIGNING","features":[123]},{"name":"XCN_OID_PKIX_KP_SERVER_AUTH","features":[123]},{"name":"XCN_OID_PKIX_KP_TIMESTAMP_SIGNING","features":[123]},{"name":"XCN_OID_PKIX_NO_SIGNATURE","features":[123]},{"name":"XCN_OID_PKIX_OCSP","features":[123]},{"name":"XCN_OID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[123]},{"name":"XCN_OID_PKIX_OCSP_NOCHECK","features":[123]},{"name":"XCN_OID_PKIX_OCSP_NONCE","features":[123]},{"name":"XCN_OID_PKIX_PE","features":[123]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_CPS","features":[123]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[123]},{"name":"XCN_OID_PKIX_TIME_STAMPING","features":[123]},{"name":"XCN_OID_POLICY_CONSTRAINTS","features":[123]},{"name":"XCN_OID_POLICY_MAPPINGS","features":[123]},{"name":"XCN_OID_POSTAL_ADDRESS","features":[123]},{"name":"XCN_OID_POSTAL_CODE","features":[123]},{"name":"XCN_OID_POST_OFFICE_BOX","features":[123]},{"name":"XCN_OID_PREFERRED_DELIVERY_METHOD","features":[123]},{"name":"XCN_OID_PRESENTATION_ADDRESS","features":[123]},{"name":"XCN_OID_PRIVATEKEY_USAGE_PERIOD","features":[123]},{"name":"XCN_OID_PRODUCT_UPDATE","features":[123]},{"name":"XCN_OID_QC_EU_COMPLIANCE","features":[123]},{"name":"XCN_OID_QC_SSCD","features":[123]},{"name":"XCN_OID_QC_STATEMENTS_EXT","features":[123]},{"name":"XCN_OID_RDN_DUMMY_SIGNER","features":[123]},{"name":"XCN_OID_RDN_TPM_MANUFACTURER","features":[123]},{"name":"XCN_OID_RDN_TPM_MODEL","features":[123]},{"name":"XCN_OID_RDN_TPM_VERSION","features":[123]},{"name":"XCN_OID_REASON_CODE_HOLD","features":[123]},{"name":"XCN_OID_REGISTERED_ADDRESS","features":[123]},{"name":"XCN_OID_REMOVE_CERTIFICATE","features":[123]},{"name":"XCN_OID_RENEWAL_CERTIFICATE","features":[123]},{"name":"XCN_OID_REQUEST_CLIENT_INFO","features":[123]},{"name":"XCN_OID_REQUIRE_CERT_CHAIN_POLICY","features":[123]},{"name":"XCN_OID_REVOKED_LIST_SIGNER","features":[123]},{"name":"XCN_OID_RFC3161_counterSign","features":[123]},{"name":"XCN_OID_ROLE_OCCUPANT","features":[123]},{"name":"XCN_OID_ROOT_LIST_SIGNER","features":[123]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[123]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[123]},{"name":"XCN_OID_ROOT_PROGRAM_FLAGS","features":[123]},{"name":"XCN_OID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[123]},{"name":"XCN_OID_RSA","features":[123]},{"name":"XCN_OID_RSAES_OAEP","features":[123]},{"name":"XCN_OID_RSA_DES_EDE3_CBC","features":[123]},{"name":"XCN_OID_RSA_DH","features":[123]},{"name":"XCN_OID_RSA_ENCRYPT","features":[123]},{"name":"XCN_OID_RSA_HASH","features":[123]},{"name":"XCN_OID_RSA_MD2","features":[123]},{"name":"XCN_OID_RSA_MD2RSA","features":[123]},{"name":"XCN_OID_RSA_MD4","features":[123]},{"name":"XCN_OID_RSA_MD4RSA","features":[123]},{"name":"XCN_OID_RSA_MD5","features":[123]},{"name":"XCN_OID_RSA_MD5RSA","features":[123]},{"name":"XCN_OID_RSA_MGF1","features":[123]},{"name":"XCN_OID_RSA_PSPECIFIED","features":[123]},{"name":"XCN_OID_RSA_RC2CBC","features":[123]},{"name":"XCN_OID_RSA_RC4","features":[123]},{"name":"XCN_OID_RSA_RC5_CBCPad","features":[123]},{"name":"XCN_OID_RSA_RSA","features":[123]},{"name":"XCN_OID_RSA_SETOAEP_RSA","features":[123]},{"name":"XCN_OID_RSA_SHA1RSA","features":[123]},{"name":"XCN_OID_RSA_SHA256RSA","features":[123]},{"name":"XCN_OID_RSA_SHA384RSA","features":[123]},{"name":"XCN_OID_RSA_SHA512RSA","features":[123]},{"name":"XCN_OID_RSA_SMIMECapabilities","features":[123]},{"name":"XCN_OID_RSA_SMIMEalg","features":[123]},{"name":"XCN_OID_RSA_SMIMEalgCMS3DESwrap","features":[123]},{"name":"XCN_OID_RSA_SMIMEalgCMSRC2wrap","features":[123]},{"name":"XCN_OID_RSA_SMIMEalgESDH","features":[123]},{"name":"XCN_OID_RSA_SSA_PSS","features":[123]},{"name":"XCN_OID_RSA_certExtensions","features":[123]},{"name":"XCN_OID_RSA_challengePwd","features":[123]},{"name":"XCN_OID_RSA_contentType","features":[123]},{"name":"XCN_OID_RSA_counterSign","features":[123]},{"name":"XCN_OID_RSA_data","features":[123]},{"name":"XCN_OID_RSA_digestedData","features":[123]},{"name":"XCN_OID_RSA_emailAddr","features":[123]},{"name":"XCN_OID_RSA_encryptedData","features":[123]},{"name":"XCN_OID_RSA_envelopedData","features":[123]},{"name":"XCN_OID_RSA_extCertAttrs","features":[123]},{"name":"XCN_OID_RSA_hashedData","features":[123]},{"name":"XCN_OID_RSA_messageDigest","features":[123]},{"name":"XCN_OID_RSA_preferSignedData","features":[123]},{"name":"XCN_OID_RSA_signEnvData","features":[123]},{"name":"XCN_OID_RSA_signedData","features":[123]},{"name":"XCN_OID_RSA_signingTime","features":[123]},{"name":"XCN_OID_RSA_unstructAddr","features":[123]},{"name":"XCN_OID_RSA_unstructName","features":[123]},{"name":"XCN_OID_SEARCH_GUIDE","features":[123]},{"name":"XCN_OID_SEE_ALSO","features":[123]},{"name":"XCN_OID_SERIALIZED","features":[123]},{"name":"XCN_OID_SERVER_GATED_CRYPTO","features":[123]},{"name":"XCN_OID_SGC_NETSCAPE","features":[123]},{"name":"XCN_OID_SORTED_CTL","features":[123]},{"name":"XCN_OID_STATE_OR_PROVINCE_NAME","features":[123]},{"name":"XCN_OID_STREET_ADDRESS","features":[123]},{"name":"XCN_OID_SUBJECT_ALT_NAME","features":[123]},{"name":"XCN_OID_SUBJECT_ALT_NAME2","features":[123]},{"name":"XCN_OID_SUBJECT_DIR_ATTRS","features":[123]},{"name":"XCN_OID_SUBJECT_INFO_ACCESS","features":[123]},{"name":"XCN_OID_SUBJECT_KEY_IDENTIFIER","features":[123]},{"name":"XCN_OID_SUPPORTED_APPLICATION_CONTEXT","features":[123]},{"name":"XCN_OID_SUR_NAME","features":[123]},{"name":"XCN_OID_TELEPHONE_NUMBER","features":[123]},{"name":"XCN_OID_TELETEXT_TERMINAL_IDENTIFIER","features":[123]},{"name":"XCN_OID_TELEX_NUMBER","features":[123]},{"name":"XCN_OID_TIMESTAMP_TOKEN","features":[123]},{"name":"XCN_OID_TITLE","features":[123]},{"name":"XCN_OID_USER_CERTIFICATE","features":[123]},{"name":"XCN_OID_USER_PASSWORD","features":[123]},{"name":"XCN_OID_VERISIGN_BITSTRING_6_13","features":[123]},{"name":"XCN_OID_VERISIGN_ISS_STRONG_CRYPTO","features":[123]},{"name":"XCN_OID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[123]},{"name":"XCN_OID_VERISIGN_PRIVATE_6_9","features":[123]},{"name":"XCN_OID_WHQL_CRYPTO","features":[123]},{"name":"XCN_OID_X21_ADDRESS","features":[123]},{"name":"XCN_OID_X957","features":[123]},{"name":"XCN_OID_X957_DSA","features":[123]},{"name":"XCN_OID_X957_SHA1DSA","features":[123]},{"name":"XCN_OID_YESNO_TRUST_ATTR","features":[123]},{"name":"XCN_PROPERTYID_NONE","features":[123]},{"name":"XCN_PROV_DH_SCHANNEL","features":[123]},{"name":"XCN_PROV_DSS","features":[123]},{"name":"XCN_PROV_DSS_DH","features":[123]},{"name":"XCN_PROV_EC_ECDSA_FULL","features":[123]},{"name":"XCN_PROV_EC_ECDSA_SIG","features":[123]},{"name":"XCN_PROV_EC_ECNRA_FULL","features":[123]},{"name":"XCN_PROV_EC_ECNRA_SIG","features":[123]},{"name":"XCN_PROV_FORTEZZA","features":[123]},{"name":"XCN_PROV_INTEL_SEC","features":[123]},{"name":"XCN_PROV_MS_EXCHANGE","features":[123]},{"name":"XCN_PROV_NONE","features":[123]},{"name":"XCN_PROV_REPLACE_OWF","features":[123]},{"name":"XCN_PROV_RNG","features":[123]},{"name":"XCN_PROV_RSA_AES","features":[123]},{"name":"XCN_PROV_RSA_FULL","features":[123]},{"name":"XCN_PROV_RSA_SCHANNEL","features":[123]},{"name":"XCN_PROV_RSA_SIG","features":[123]},{"name":"XCN_PROV_SPYRUS_LYNKS","features":[123]},{"name":"XCN_PROV_SSL","features":[123]},{"name":"XECI_AUTOENROLL","features":[123]},{"name":"XECI_CERTREQ","features":[123]},{"name":"XECI_DISABLE","features":[123]},{"name":"XECI_REQWIZARD","features":[123]},{"name":"XECI_XENROLL","features":[123]},{"name":"XECP_STRING_PROPERTY","features":[123]},{"name":"XECR_CMC","features":[123]},{"name":"XECR_PKCS10_V1_5","features":[123]},{"name":"XECR_PKCS10_V2_0","features":[123]},{"name":"XECR_PKCS7","features":[123]},{"name":"XECT_EXTENSION_V1","features":[123]},{"name":"XECT_EXTENSION_V2","features":[123]},{"name":"XEKL_KEYSIZE","features":[123]},{"name":"XEKL_KEYSIZE_DEFAULT","features":[123]},{"name":"XEKL_KEYSIZE_INC","features":[123]},{"name":"XEKL_KEYSIZE_MAX","features":[123]},{"name":"XEKL_KEYSIZE_MIN","features":[123]},{"name":"XEKL_KEYSPEC","features":[123]},{"name":"XEKL_KEYSPEC_KEYX","features":[123]},{"name":"XEKL_KEYSPEC_SIG","features":[123]},{"name":"XEPR_CADNS","features":[123]},{"name":"XEPR_CAFRIENDLYNAME","features":[123]},{"name":"XEPR_CANAME","features":[123]},{"name":"XEPR_DATE","features":[123]},{"name":"XEPR_ENUM_FIRST","features":[123]},{"name":"XEPR_HASH","features":[123]},{"name":"XEPR_REQUESTID","features":[123]},{"name":"XEPR_TEMPLATENAME","features":[123]},{"name":"XEPR_V1TEMPLATENAME","features":[123]},{"name":"XEPR_V2TEMPLATEOID","features":[123]},{"name":"XEPR_VERSION","features":[123]},{"name":"dwCAXCHGOVERLAPPERIODCOUNTDEFAULT","features":[123]},{"name":"dwCAXCHGVALIDITYPERIODCOUNTDEFAULT","features":[123]},{"name":"dwCRLDELTAOVERLAPPERIODCOUNTDEFAULT","features":[123]},{"name":"dwCRLDELTAPERIODCOUNTDEFAULT","features":[123]},{"name":"dwCRLOVERLAPPERIODCOUNTDEFAULT","features":[123]},{"name":"dwCRLPERIODCOUNTDEFAULT","features":[123]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ENTERPRISE","features":[123]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ROOT","features":[123]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_STANDALONE","features":[123]},{"name":"szBACKUPANNOTATION","features":[123]},{"name":"szDBBASENAMEPARM","features":[123]},{"name":"szNAMESEPARATORDEFAULT","features":[123]},{"name":"szPROPASNTAG","features":[123]},{"name":"szRESTOREANNOTATION","features":[123]},{"name":"wszAT_EKCERTINF","features":[123]},{"name":"wszAT_TESTROOT","features":[123]},{"name":"wszCAPOLICYFILE","features":[123]},{"name":"wszCERTEXITMODULE_POSTFIX","features":[123]},{"name":"wszCERTIFICATETRANSPARENCYFLAGS","features":[123]},{"name":"wszCERTMANAGE_SUFFIX","features":[123]},{"name":"wszCERTPOLICYMODULE_POSTFIX","features":[123]},{"name":"wszCERT_TYPE","features":[123]},{"name":"wszCERT_TYPE_CLIENT","features":[123]},{"name":"wszCERT_TYPE_CODESIGN","features":[123]},{"name":"wszCERT_TYPE_CUSTOMER","features":[123]},{"name":"wszCERT_TYPE_MERCHANT","features":[123]},{"name":"wszCERT_TYPE_PAYMENT","features":[123]},{"name":"wszCERT_TYPE_SERVER","features":[123]},{"name":"wszCERT_VERSION","features":[123]},{"name":"wszCERT_VERSION_1","features":[123]},{"name":"wszCERT_VERSION_2","features":[123]},{"name":"wszCERT_VERSION_3","features":[123]},{"name":"wszCLASS_CERTADMIN","features":[123]},{"name":"wszCLASS_CERTCONFIG","features":[123]},{"name":"wszCLASS_CERTDBMEM","features":[123]},{"name":"wszCLASS_CERTENCODE","features":[123]},{"name":"wszCLASS_CERTGETCONFIG","features":[123]},{"name":"wszCLASS_CERTREQUEST","features":[123]},{"name":"wszCLASS_CERTSERVEREXIT","features":[123]},{"name":"wszCLASS_CERTSERVERPOLICY","features":[123]},{"name":"wszCLASS_CERTVIEW","features":[123]},{"name":"wszCMM_PROP_COPYRIGHT","features":[123]},{"name":"wszCMM_PROP_DESCRIPTION","features":[123]},{"name":"wszCMM_PROP_DISPLAY_HWND","features":[123]},{"name":"wszCMM_PROP_FILEVER","features":[123]},{"name":"wszCMM_PROP_ISMULTITHREADED","features":[123]},{"name":"wszCMM_PROP_NAME","features":[123]},{"name":"wszCMM_PROP_PRODUCTVER","features":[123]},{"name":"wszCNGENCRYPTIONALGORITHM","features":[123]},{"name":"wszCNGHASHALGORITHM","features":[123]},{"name":"wszCNGPUBLICKEYALGORITHM","features":[123]},{"name":"wszCONFIG_AUTHORITY","features":[123]},{"name":"wszCONFIG_COMMENT","features":[123]},{"name":"wszCONFIG_COMMONNAME","features":[123]},{"name":"wszCONFIG_CONFIG","features":[123]},{"name":"wszCONFIG_COUNTRY","features":[123]},{"name":"wszCONFIG_DESCRIPTION","features":[123]},{"name":"wszCONFIG_EXCHANGECERTIFICATE","features":[123]},{"name":"wszCONFIG_FLAGS","features":[123]},{"name":"wszCONFIG_LOCALITY","features":[123]},{"name":"wszCONFIG_ORGANIZATION","features":[123]},{"name":"wszCONFIG_ORGUNIT","features":[123]},{"name":"wszCONFIG_SANITIZEDNAME","features":[123]},{"name":"wszCONFIG_SANITIZEDSHORTNAME","features":[123]},{"name":"wszCONFIG_SERVER","features":[123]},{"name":"wszCONFIG_SHORTNAME","features":[123]},{"name":"wszCONFIG_SIGNATURECERTIFICATE","features":[123]},{"name":"wszCONFIG_STATE","features":[123]},{"name":"wszCONFIG_WEBENROLLMENTSERVERS","features":[123]},{"name":"wszCRLPUBLISHRETRYCOUNT","features":[123]},{"name":"wszCRTFILENAMEEXT","features":[123]},{"name":"wszDATFILENAMEEXT","features":[123]},{"name":"wszDBBACKUPCERTBACKDAT","features":[123]},{"name":"wszDBBACKUPSUBDIR","features":[123]},{"name":"wszDBFILENAMEEXT","features":[123]},{"name":"wszENCRYPTIONALGORITHM","features":[123]},{"name":"wszENROLLMENTAGENTRIGHTS","features":[123]},{"name":"wszHASHALGORITHM","features":[123]},{"name":"wszINFKEY_ALTERNATESIGNATUREALGORITHM","features":[123]},{"name":"wszINFKEY_ATTESTPRIVATEKEY","features":[123]},{"name":"wszINFKEY_CACAPABILITIES","features":[123]},{"name":"wszINFKEY_CACERTS","features":[123]},{"name":"wszINFKEY_CATHUMBPRINT","features":[123]},{"name":"wszINFKEY_CCDPSYNCDELTATIME","features":[123]},{"name":"wszINFKEY_CHALLENGEPASSWORD","features":[123]},{"name":"wszINFKEY_CONTINUE","features":[123]},{"name":"wszINFKEY_CRITICAL","features":[123]},{"name":"wszINFKEY_CRLDELTAPERIODCOUNT","features":[123]},{"name":"wszINFKEY_CRLDELTAPERIODSTRING","features":[123]},{"name":"wszINFKEY_CRLPERIODCOUNT","features":[123]},{"name":"wszINFKEY_CRLPERIODSTRING","features":[123]},{"name":"wszINFKEY_DIRECTORYNAME","features":[123]},{"name":"wszINFKEY_DNS","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERSTYPE","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS_A","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS_B","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS_BASE","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS_COFACTOR","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS_ORDER","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS_P","features":[123]},{"name":"wszINFKEY_ECCKEYPARAMETERS_SEED","features":[123]},{"name":"wszINFKEY_EMAIL","features":[123]},{"name":"wszINFKEY_EMPTY","features":[123]},{"name":"wszINFKEY_ENABLEKEYCOUNTING","features":[123]},{"name":"wszINFKEY_ENCRYPTIONALGORITHM","features":[123]},{"name":"wszINFKEY_ENCRYPTIONLENGTH","features":[123]},{"name":"wszINFKEY_EXCLUDE","features":[123]},{"name":"wszINFKEY_EXPORTABLE","features":[123]},{"name":"wszINFKEY_EXPORTABLEENCRYPTED","features":[123]},{"name":"wszINFKEY_FLAGS","features":[123]},{"name":"wszINFKEY_FORCEUTF8","features":[123]},{"name":"wszINFKEY_FRIENDLYNAME","features":[123]},{"name":"wszINFKEY_HASHALGORITHM","features":[123]},{"name":"wszINFKEY_INCLUDE","features":[123]},{"name":"wszINFKEY_INHIBITPOLICYMAPPING","features":[123]},{"name":"wszINFKEY_IPADDRESS","features":[123]},{"name":"wszINFKEY_KEYALGORITHM","features":[123]},{"name":"wszINFKEY_KEYALGORITHMPARMETERS","features":[123]},{"name":"wszINFKEY_KEYCONTAINER","features":[123]},{"name":"wszINFKEY_KEYLENGTH","features":[123]},{"name":"wszINFKEY_KEYPROTECTION","features":[123]},{"name":"wszINFKEY_KEYUSAGEEXTENSION","features":[123]},{"name":"wszINFKEY_KEYUSAGEPROPERTY","features":[123]},{"name":"wszINFKEY_LEGACYKEYSPEC","features":[123]},{"name":"wszINFKEY_LOADDEFAULTTEMPLATES","features":[123]},{"name":"wszINFKEY_MACHINEKEYSET","features":[123]},{"name":"wszINFKEY_NOTAFTER","features":[123]},{"name":"wszINFKEY_NOTBEFORE","features":[123]},{"name":"wszINFKEY_NOTICE","features":[123]},{"name":"wszINFKEY_OID","features":[123]},{"name":"wszINFKEY_OTHERNAME","features":[123]},{"name":"wszINFKEY_PATHLENGTH","features":[123]},{"name":"wszINFKEY_POLICIES","features":[123]},{"name":"wszINFKEY_PRIVATEKEYARCHIVE","features":[123]},{"name":"wszINFKEY_PROVIDERNAME","features":[123]},{"name":"wszINFKEY_PROVIDERTYPE","features":[123]},{"name":"wszINFKEY_PUBLICKEY","features":[123]},{"name":"wszINFKEY_PUBLICKEYPARAMETERS","features":[123]},{"name":"wszINFKEY_READERNAME","features":[123]},{"name":"wszINFKEY_REGISTEREDID","features":[123]},{"name":"wszINFKEY_RENEWALCERT","features":[123]},{"name":"wszINFKEY_RENEWALKEYLENGTH","features":[123]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODCOUNT","features":[123]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODSTRING","features":[123]},{"name":"wszINFKEY_REQUESTTYPE","features":[123]},{"name":"wszINFKEY_REQUIREEXPLICITPOLICY","features":[123]},{"name":"wszINFKEY_SECURITYDESCRIPTOR","features":[123]},{"name":"wszINFKEY_SERIALNUMBER","features":[123]},{"name":"wszINFKEY_SHOWALLCSPS","features":[123]},{"name":"wszINFKEY_SILENT","features":[123]},{"name":"wszINFKEY_SMIME","features":[123]},{"name":"wszINFKEY_SUBJECT","features":[123]},{"name":"wszINFKEY_SUBJECTNAMEFLAGS","features":[123]},{"name":"wszINFKEY_SUBTREE","features":[123]},{"name":"wszINFKEY_SUPPRESSDEFAULTS","features":[123]},{"name":"wszINFKEY_UICONTEXTMESSAGE","features":[123]},{"name":"wszINFKEY_UPN","features":[123]},{"name":"wszINFKEY_URL","features":[123]},{"name":"wszINFKEY_USEEXISTINGKEY","features":[123]},{"name":"wszINFKEY_USERPROTECTED","features":[123]},{"name":"wszINFKEY_UTF8","features":[123]},{"name":"wszINFKEY_X500NAMEFLAGS","features":[123]},{"name":"wszINFSECTION_AIA","features":[123]},{"name":"wszINFSECTION_APPLICATIONPOLICYCONSTRAINTS","features":[123]},{"name":"wszINFSECTION_APPLICATIONPOLICYMAPPINGS","features":[123]},{"name":"wszINFSECTION_APPLICATIONPOLICYSTATEMENT","features":[123]},{"name":"wszINFSECTION_BASICCONSTRAINTS","features":[123]},{"name":"wszINFSECTION_CAPOLICY","features":[123]},{"name":"wszINFSECTION_CCDP","features":[123]},{"name":"wszINFSECTION_CDP","features":[123]},{"name":"wszINFSECTION_CERTSERVER","features":[123]},{"name":"wszINFSECTION_EKU","features":[123]},{"name":"wszINFSECTION_EXTENSIONS","features":[123]},{"name":"wszINFSECTION_NAMECONSTRAINTS","features":[123]},{"name":"wszINFSECTION_NEWREQUEST","features":[123]},{"name":"wszINFSECTION_POLICYCONSTRAINTS","features":[123]},{"name":"wszINFSECTION_POLICYMAPPINGS","features":[123]},{"name":"wszINFSECTION_POLICYSTATEMENT","features":[123]},{"name":"wszINFSECTION_PROPERTIES","features":[123]},{"name":"wszINFSECTION_REQUESTATTRIBUTES","features":[123]},{"name":"wszINFVALUE_ENDORSEMENTKEY","features":[123]},{"name":"wszINFVALUE_REQUESTTYPE_CERT","features":[123]},{"name":"wszINFVALUE_REQUESTTYPE_CMC","features":[123]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS10","features":[123]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS7","features":[123]},{"name":"wszINFVALUE_REQUESTTYPE_SCEP","features":[123]},{"name":"wszLDAPSESSIONOPTIONVALUE","features":[123]},{"name":"wszLOCALIZEDTIMEPERIODUNITS","features":[123]},{"name":"wszLOGFILENAMEEXT","features":[123]},{"name":"wszLOGPATH","features":[123]},{"name":"wszMACHINEKEYSET","features":[123]},{"name":"wszMICROSOFTCERTMODULE_PREFIX","features":[123]},{"name":"wszNETSCAPEREVOCATIONTYPE","features":[123]},{"name":"wszOCSPCAPROP_CACERTIFICATE","features":[123]},{"name":"wszOCSPCAPROP_CACONFIG","features":[123]},{"name":"wszOCSPCAPROP_CSPNAME","features":[123]},{"name":"wszOCSPCAPROP_ERRORCODE","features":[123]},{"name":"wszOCSPCAPROP_HASHALGORITHMID","features":[123]},{"name":"wszOCSPCAPROP_KEYSPEC","features":[123]},{"name":"wszOCSPCAPROP_LOCALREVOCATIONINFORMATION","features":[123]},{"name":"wszOCSPCAPROP_PROVIDERCLSID","features":[123]},{"name":"wszOCSPCAPROP_PROVIDERPROPERTIES","features":[123]},{"name":"wszOCSPCAPROP_REMINDERDURATION","features":[123]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATE","features":[123]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATETEMPLATE","features":[123]},{"name":"wszOCSPCAPROP_SIGNINGFLAGS","features":[123]},{"name":"wszOCSPCOMMONPROP_MAXINCOMINGMESSAGESIZE","features":[123]},{"name":"wszOCSPCOMMONPROP_MAXNUMOFREQUESTENTRIES","features":[123]},{"name":"wszOCSPCOMMONPROP_REQFLAGS","features":[123]},{"name":"wszOCSPISAPIPROP_DEBUG","features":[123]},{"name":"wszOCSPISAPIPROP_MAXAGE","features":[123]},{"name":"wszOCSPISAPIPROP_MAXNUMOFCACHEENTRIES","features":[123]},{"name":"wszOCSPISAPIPROP_NUMOFBACKENDCONNECTIONS","features":[123]},{"name":"wszOCSPISAPIPROP_NUMOFTHREADS","features":[123]},{"name":"wszOCSPISAPIPROP_REFRESHRATE","features":[123]},{"name":"wszOCSPISAPIPROP_VIRTUALROOTNAME","features":[123]},{"name":"wszOCSPPROP_ARRAYCONTROLLER","features":[123]},{"name":"wszOCSPPROP_ARRAYMEMBERS","features":[123]},{"name":"wszOCSPPROP_AUDITFILTER","features":[123]},{"name":"wszOCSPPROP_DEBUG","features":[123]},{"name":"wszOCSPPROP_ENROLLPOLLINTERVAL","features":[123]},{"name":"wszOCSPPROP_LOGLEVEL","features":[123]},{"name":"wszOCSPREVPROP_BASECRL","features":[123]},{"name":"wszOCSPREVPROP_BASECRLURLS","features":[123]},{"name":"wszOCSPREVPROP_CRLURLTIMEOUT","features":[123]},{"name":"wszOCSPREVPROP_DELTACRL","features":[123]},{"name":"wszOCSPREVPROP_DELTACRLURLS","features":[123]},{"name":"wszOCSPREVPROP_ERRORCODE","features":[123]},{"name":"wszOCSPREVPROP_REFRESHTIMEOUT","features":[123]},{"name":"wszOCSPREVPROP_SERIALNUMBERSDIRS","features":[123]},{"name":"wszPERIODDAYS","features":[123]},{"name":"wszPERIODHOURS","features":[123]},{"name":"wszPERIODMINUTES","features":[123]},{"name":"wszPERIODMONTHS","features":[123]},{"name":"wszPERIODSECONDS","features":[123]},{"name":"wszPERIODWEEKS","features":[123]},{"name":"wszPERIODYEARS","features":[123]},{"name":"wszPFXFILENAMEEXT","features":[123]},{"name":"wszPROPATTESTATIONCHALLENGE","features":[123]},{"name":"wszPROPATTRIBNAME","features":[123]},{"name":"wszPROPATTRIBREQUESTID","features":[123]},{"name":"wszPROPATTRIBVALUE","features":[123]},{"name":"wszPROPCALLERNAME","features":[123]},{"name":"wszPROPCATYPE","features":[123]},{"name":"wszPROPCERTCLIENTMACHINE","features":[123]},{"name":"wszPROPCERTCOUNT","features":[123]},{"name":"wszPROPCERTIFICATEENROLLMENTFLAGS","features":[123]},{"name":"wszPROPCERTIFICATEGENERALFLAGS","features":[123]},{"name":"wszPROPCERTIFICATEHASH","features":[123]},{"name":"wszPROPCERTIFICATENOTAFTERDATE","features":[123]},{"name":"wszPROPCERTIFICATENOTBEFOREDATE","features":[123]},{"name":"wszPROPCERTIFICATEPRIVATEKEYFLAGS","features":[123]},{"name":"wszPROPCERTIFICATEPUBLICKEYALGORITHM","features":[123]},{"name":"wszPROPCERTIFICATEPUBLICKEYLENGTH","features":[123]},{"name":"wszPROPCERTIFICATERAWPUBLICKEY","features":[123]},{"name":"wszPROPCERTIFICATERAWPUBLICKEYALGORITHMPARAMETERS","features":[123]},{"name":"wszPROPCERTIFICATERAWSMIMECAPABILITIES","features":[123]},{"name":"wszPROPCERTIFICATEREQUESTID","features":[123]},{"name":"wszPROPCERTIFICATESERIALNUMBER","features":[123]},{"name":"wszPROPCERTIFICATESUBJECTKEYIDENTIFIER","features":[123]},{"name":"wszPROPCERTIFICATETEMPLATE","features":[123]},{"name":"wszPROPCERTIFICATETYPE","features":[123]},{"name":"wszPROPCERTIFICATEUPN","features":[123]},{"name":"wszPROPCERTSTATE","features":[123]},{"name":"wszPROPCERTSUFFIX","features":[123]},{"name":"wszPROPCERTTEMPLATE","features":[123]},{"name":"wszPROPCERTTYPE","features":[123]},{"name":"wszPROPCERTUSAGE","features":[123]},{"name":"wszPROPCHALLENGE","features":[123]},{"name":"wszPROPCLIENTBROWSERMACHINE","features":[123]},{"name":"wszPROPCLIENTDCDNS","features":[123]},{"name":"wszPROPCOMMONNAME","features":[123]},{"name":"wszPROPCONFIGDN","features":[123]},{"name":"wszPROPCOUNTRY","features":[123]},{"name":"wszPROPCRITICALTAG","features":[123]},{"name":"wszPROPCRLCOUNT","features":[123]},{"name":"wszPROPCRLEFFECTIVE","features":[123]},{"name":"wszPROPCRLINDEX","features":[123]},{"name":"wszPROPCRLLASTPUBLISHED","features":[123]},{"name":"wszPROPCRLMINBASE","features":[123]},{"name":"wszPROPCRLNAMEID","features":[123]},{"name":"wszPROPCRLNEXTPUBLISH","features":[123]},{"name":"wszPROPCRLNEXTUPDATE","features":[123]},{"name":"wszPROPCRLNUMBER","features":[123]},{"name":"wszPROPCRLPROPAGATIONCOMPLETE","features":[123]},{"name":"wszPROPCRLPUBLISHATTEMPTS","features":[123]},{"name":"wszPROPCRLPUBLISHERROR","features":[123]},{"name":"wszPROPCRLPUBLISHFLAGS","features":[123]},{"name":"wszPROPCRLPUBLISHSTATUSCODE","features":[123]},{"name":"wszPROPCRLRAWCRL","features":[123]},{"name":"wszPROPCRLROWID","features":[123]},{"name":"wszPROPCRLSTATE","features":[123]},{"name":"wszPROPCRLSUFFIX","features":[123]},{"name":"wszPROPCRLTHISPUBLISH","features":[123]},{"name":"wszPROPCRLTHISUPDATE","features":[123]},{"name":"wszPROPCROSSFOREST","features":[123]},{"name":"wszPROPDCNAME","features":[123]},{"name":"wszPROPDECIMALTAG","features":[123]},{"name":"wszPROPDELTACRLSDISABLED","features":[123]},{"name":"wszPROPDEVICESERIALNUMBER","features":[123]},{"name":"wszPROPDISPOSITION","features":[123]},{"name":"wszPROPDISPOSITIONDENY","features":[123]},{"name":"wszPROPDISPOSITIONPENDING","features":[123]},{"name":"wszPROPDISTINGUISHEDNAME","features":[123]},{"name":"wszPROPDN","features":[123]},{"name":"wszPROPDNS","features":[123]},{"name":"wszPROPDOMAINCOMPONENT","features":[123]},{"name":"wszPROPDOMAINDN","features":[123]},{"name":"wszPROPEMAIL","features":[123]},{"name":"wszPROPENDORSEMENTCERTIFICATEHASH","features":[123]},{"name":"wszPROPENDORSEMENTKEYHASH","features":[123]},{"name":"wszPROPEVENTLOGERROR","features":[123]},{"name":"wszPROPEVENTLOGEXHAUSTIVE","features":[123]},{"name":"wszPROPEVENTLOGTERSE","features":[123]},{"name":"wszPROPEVENTLOGVERBOSE","features":[123]},{"name":"wszPROPEVENTLOGWARNING","features":[123]},{"name":"wszPROPEXITCERTFILE","features":[123]},{"name":"wszPROPEXPECTEDCHALLENGE","features":[123]},{"name":"wszPROPEXPIRATIONDATE","features":[123]},{"name":"wszPROPEXTFLAGS","features":[123]},{"name":"wszPROPEXTNAME","features":[123]},{"name":"wszPROPEXTRAWVALUE","features":[123]},{"name":"wszPROPEXTREQUESTID","features":[123]},{"name":"wszPROPFILETAG","features":[123]},{"name":"wszPROPGIVENNAME","features":[123]},{"name":"wszPROPGUID","features":[123]},{"name":"wszPROPHEXTAG","features":[123]},{"name":"wszPROPINITIALS","features":[123]},{"name":"wszPROPIPADDRESS","features":[123]},{"name":"wszPROPKEYARCHIVED","features":[123]},{"name":"wszPROPLOCALITY","features":[123]},{"name":"wszPROPLOGLEVEL","features":[123]},{"name":"wszPROPMACHINEDNSNAME","features":[123]},{"name":"wszPROPMODULEREGLOC","features":[123]},{"name":"wszPROPNAMETYPE","features":[123]},{"name":"wszPROPOCTETTAG","features":[123]},{"name":"wszPROPOFFICER","features":[123]},{"name":"wszPROPOID","features":[123]},{"name":"wszPROPORGANIZATION","features":[123]},{"name":"wszPROPORGUNIT","features":[123]},{"name":"wszPROPPUBLISHEXPIREDCERTINCRL","features":[123]},{"name":"wszPROPRAWCACERTIFICATE","features":[123]},{"name":"wszPROPRAWCERTIFICATE","features":[123]},{"name":"wszPROPRAWCRL","features":[123]},{"name":"wszPROPRAWDELTACRL","features":[123]},{"name":"wszPROPRAWNAME","features":[123]},{"name":"wszPROPRAWPRECERTIFICATE","features":[123]},{"name":"wszPROPREQUESTARCHIVEDKEY","features":[123]},{"name":"wszPROPREQUESTATTRIBUTES","features":[123]},{"name":"wszPROPREQUESTCSPPROVIDER","features":[123]},{"name":"wszPROPREQUESTDISPOSITION","features":[123]},{"name":"wszPROPREQUESTDISPOSITIONMESSAGE","features":[123]},{"name":"wszPROPREQUESTDOT","features":[123]},{"name":"wszPROPREQUESTERCAACCESS","features":[123]},{"name":"wszPROPREQUESTERDN","features":[123]},{"name":"wszPROPREQUESTERNAME","features":[123]},{"name":"wszPROPREQUESTERNAMEFROMOLDCERTIFICATE","features":[123]},{"name":"wszPROPREQUESTERSAMNAME","features":[123]},{"name":"wszPROPREQUESTERUPN","features":[123]},{"name":"wszPROPREQUESTFLAGS","features":[123]},{"name":"wszPROPREQUESTKEYRECOVERYHASHES","features":[123]},{"name":"wszPROPREQUESTMACHINEDNS","features":[123]},{"name":"wszPROPREQUESTOSVERSION","features":[123]},{"name":"wszPROPREQUESTRAWARCHIVEDKEY","features":[123]},{"name":"wszPROPREQUESTRAWOLDCERTIFICATE","features":[123]},{"name":"wszPROPREQUESTRAWREQUEST","features":[123]},{"name":"wszPROPREQUESTREQUESTID","features":[123]},{"name":"wszPROPREQUESTRESOLVEDWHEN","features":[123]},{"name":"wszPROPREQUESTREVOKEDEFFECTIVEWHEN","features":[123]},{"name":"wszPROPREQUESTREVOKEDREASON","features":[123]},{"name":"wszPROPREQUESTREVOKEDWHEN","features":[123]},{"name":"wszPROPREQUESTSTATUSCODE","features":[123]},{"name":"wszPROPREQUESTSUBMITTEDWHEN","features":[123]},{"name":"wszPROPREQUESTTYPE","features":[123]},{"name":"wszPROPSANITIZEDCANAME","features":[123]},{"name":"wszPROPSANITIZEDSHORTNAME","features":[123]},{"name":"wszPROPSEAUDITFILTER","features":[123]},{"name":"wszPROPSEAUDITID","features":[123]},{"name":"wszPROPSERVERUPGRADED","features":[123]},{"name":"wszPROPSESSIONCOUNT","features":[123]},{"name":"wszPROPSIGNERAPPLICATIONPOLICIES","features":[123]},{"name":"wszPROPSIGNERPOLICIES","features":[123]},{"name":"wszPROPSTATE","features":[123]},{"name":"wszPROPSTREETADDRESS","features":[123]},{"name":"wszPROPSUBJECTALTNAME2","features":[123]},{"name":"wszPROPSUBJECTDOT","features":[123]},{"name":"wszPROPSURNAME","features":[123]},{"name":"wszPROPTEMPLATECHANGESEQUENCENUMBER","features":[123]},{"name":"wszPROPTEXTTAG","features":[123]},{"name":"wszPROPTITLE","features":[123]},{"name":"wszPROPUNSTRUCTUREDADDRESS","features":[123]},{"name":"wszPROPUNSTRUCTUREDNAME","features":[123]},{"name":"wszPROPUPN","features":[123]},{"name":"wszPROPURL","features":[123]},{"name":"wszPROPUSEDS","features":[123]},{"name":"wszPROPUSERDN","features":[123]},{"name":"wszPROPUTF8TAG","features":[123]},{"name":"wszPROPVALIDITYPERIODCOUNT","features":[123]},{"name":"wszPROPVALIDITYPERIODSTRING","features":[123]},{"name":"wszPROPVOLATILEMODE","features":[123]},{"name":"wszREGACTIVE","features":[123]},{"name":"wszREGAELOGLEVEL_OLD","features":[123]},{"name":"wszREGAIKCLOUDCAURL","features":[123]},{"name":"wszREGAIKKEYALGORITHM","features":[123]},{"name":"wszREGAIKKEYLENGTH","features":[123]},{"name":"wszREGALLPROVIDERS","features":[123]},{"name":"wszREGALTERNATEPUBLISHDOMAINS","features":[123]},{"name":"wszREGALTERNATESIGNATUREALGORITHM","features":[123]},{"name":"wszREGAUDITFILTER","features":[123]},{"name":"wszREGB2ICERTMANAGEMODULE","features":[123]},{"name":"wszREGBACKUPLOGDIRECTORY","features":[123]},{"name":"wszREGCACERTFILENAME","features":[123]},{"name":"wszREGCACERTHASH","features":[123]},{"name":"wszREGCACERTPUBLICATIONURLS","features":[123]},{"name":"wszREGCADESCRIPTION","features":[123]},{"name":"wszREGCAPATHLENGTH","features":[123]},{"name":"wszREGCASECURITY","features":[123]},{"name":"wszREGCASERIALNUMBER","features":[123]},{"name":"wszREGCASERVERNAME","features":[123]},{"name":"wszREGCATYPE","features":[123]},{"name":"wszREGCAUSEDS","features":[123]},{"name":"wszREGCAXCHGCERTHASH","features":[123]},{"name":"wszREGCAXCHGOVERLAPPERIODCOUNT","features":[123]},{"name":"wszREGCAXCHGOVERLAPPERIODSTRING","features":[123]},{"name":"wszREGCAXCHGVALIDITYPERIODCOUNT","features":[123]},{"name":"wszREGCAXCHGVALIDITYPERIODSTRING","features":[123]},{"name":"wszREGCERTENROLLCOMPATIBLE","features":[123]},{"name":"wszREGCERTIFICATETRANSPARENCYINFOOID","features":[123]},{"name":"wszREGCERTPUBLISHFLAGS","features":[123]},{"name":"wszREGCERTSRVDEBUG","features":[123]},{"name":"wszREGCHECKPOINTFILE","features":[123]},{"name":"wszREGCLOCKSKEWMINUTES","features":[123]},{"name":"wszREGCOMMONNAME","features":[123]},{"name":"wszREGCRLATTEMPTREPUBLISH","features":[123]},{"name":"wszREGCRLDELTANEXTPUBLISH","features":[123]},{"name":"wszREGCRLDELTAOVERLAPPERIODCOUNT","features":[123]},{"name":"wszREGCRLDELTAOVERLAPPERIODSTRING","features":[123]},{"name":"wszREGCRLDELTAPERIODCOUNT","features":[123]},{"name":"wszREGCRLDELTAPERIODSTRING","features":[123]},{"name":"wszREGCRLEDITFLAGS","features":[123]},{"name":"wszREGCRLFLAGS","features":[123]},{"name":"wszREGCRLNEXTPUBLISH","features":[123]},{"name":"wszREGCRLOVERLAPPERIODCOUNT","features":[123]},{"name":"wszREGCRLOVERLAPPERIODSTRING","features":[123]},{"name":"wszREGCRLPATH_OLD","features":[123]},{"name":"wszREGCRLPERIODCOUNT","features":[123]},{"name":"wszREGCRLPERIODSTRING","features":[123]},{"name":"wszREGCRLPUBLICATIONURLS","features":[123]},{"name":"wszREGDATABASERECOVERED","features":[123]},{"name":"wszREGDBDIRECTORY","features":[123]},{"name":"wszREGDBFLAGS","features":[123]},{"name":"wszREGDBLASTFULLBACKUP","features":[123]},{"name":"wszREGDBLASTINCREMENTALBACKUP","features":[123]},{"name":"wszREGDBLASTRECOVERY","features":[123]},{"name":"wszREGDBLOGDIRECTORY","features":[123]},{"name":"wszREGDBMAXREADSESSIONCOUNT","features":[123]},{"name":"wszREGDBSESSIONCOUNT","features":[123]},{"name":"wszREGDBSYSDIRECTORY","features":[123]},{"name":"wszREGDBTEMPDIRECTORY","features":[123]},{"name":"wszREGDEFAULTSMIME","features":[123]},{"name":"wszREGDIRECTORY","features":[123]},{"name":"wszREGDISABLEEXTENSIONLIST","features":[123]},{"name":"wszREGDSCONFIGDN","features":[123]},{"name":"wszREGDSDOMAINDN","features":[123]},{"name":"wszREGEDITFLAGS","features":[123]},{"name":"wszREGEKPUBLISTDIRECTORIES","features":[123]},{"name":"wszREGEKUOIDSFORPUBLISHEXPIREDCERTINCRL","features":[123]},{"name":"wszREGEKUOIDSFORVOLATILEREQUESTS","features":[123]},{"name":"wszREGENABLED","features":[123]},{"name":"wszREGENABLEDEKUFORDEFINEDCACERT","features":[123]},{"name":"wszREGENABLEENROLLEEREQUESTEXTENSIONLIST","features":[123]},{"name":"wszREGENABLEREQUESTEXTENSIONLIST","features":[123]},{"name":"wszREGENFORCEX500NAMELENGTHS","features":[123]},{"name":"wszREGENROLLFLAGS","features":[123]},{"name":"wszREGEXITBODYARG","features":[123]},{"name":"wszREGEXITBODYFORMAT","features":[123]},{"name":"wszREGEXITCRLISSUEDKEY","features":[123]},{"name":"wszREGEXITDENIEDKEY","features":[123]},{"name":"wszREGEXITIMPORTEDKEY","features":[123]},{"name":"wszREGEXITISSUEDKEY","features":[123]},{"name":"wszREGEXITPENDINGKEY","features":[123]},{"name":"wszREGEXITPROPNOTFOUND","features":[123]},{"name":"wszREGEXITREVOKEDKEY","features":[123]},{"name":"wszREGEXITSHUTDOWNKEY","features":[123]},{"name":"wszREGEXITSMTPAUTHENTICATE","features":[123]},{"name":"wszREGEXITSMTPCC","features":[123]},{"name":"wszREGEXITSMTPEVENTFILTER","features":[123]},{"name":"wszREGEXITSMTPFROM","features":[123]},{"name":"wszREGEXITSMTPKEY","features":[123]},{"name":"wszREGEXITSMTPSERVER","features":[123]},{"name":"wszREGEXITSMTPTEMPLATES","features":[123]},{"name":"wszREGEXITSMTPTO","features":[123]},{"name":"wszREGEXITSTARTUPKEY","features":[123]},{"name":"wszREGEXITTITLEARG","features":[123]},{"name":"wszREGEXITTITLEFORMAT","features":[123]},{"name":"wszREGFILEISSUERCERTURL_OLD","features":[123]},{"name":"wszREGFILEREVOCATIONCRLURL_OLD","features":[123]},{"name":"wszREGFORCETELETEX","features":[123]},{"name":"wszREGFTPISSUERCERTURL_OLD","features":[123]},{"name":"wszREGFTPREVOCATIONCRLURL_OLD","features":[123]},{"name":"wszREGHIGHLOGNUMBER","features":[123]},{"name":"wszREGHIGHSERIAL","features":[123]},{"name":"wszREGINTERFACEFLAGS","features":[123]},{"name":"wszREGISSUERCERTURLFLAGS","features":[123]},{"name":"wszREGISSUERCERTURL_OLD","features":[123]},{"name":"wszREGKEYBASE","features":[123]},{"name":"wszREGKEYCERTSVCPATH","features":[123]},{"name":"wszREGKEYCONFIG","features":[123]},{"name":"wszREGKEYCSP","features":[123]},{"name":"wszREGKEYDBPARAMETERS","features":[123]},{"name":"wszREGKEYENCRYPTIONCSP","features":[123]},{"name":"wszREGKEYENROLLMENT","features":[123]},{"name":"wszREGKEYEXITMODULES","features":[123]},{"name":"wszREGKEYGROUPPOLICYENROLLMENT","features":[123]},{"name":"wszREGKEYNOSYSTEMCERTSVCPATH","features":[123]},{"name":"wszREGKEYPOLICYMODULES","features":[123]},{"name":"wszREGKEYREPAIR","features":[123]},{"name":"wszREGKEYRESTOREINPROGRESS","features":[123]},{"name":"wszREGKEYSIZE","features":[123]},{"name":"wszREGKRACERTCOUNT","features":[123]},{"name":"wszREGKRACERTHASH","features":[123]},{"name":"wszREGKRAFLAGS","features":[123]},{"name":"wszREGLDAPFLAGS","features":[123]},{"name":"wszREGLDAPISSUERCERTURL_OLD","features":[123]},{"name":"wszREGLDAPREVOCATIONCRLURL_OLD","features":[123]},{"name":"wszREGLDAPREVOCATIONDNTEMPLATE_OLD","features":[123]},{"name":"wszREGLDAPREVOCATIONDN_OLD","features":[123]},{"name":"wszREGLDAPSESSIONOPTIONS","features":[123]},{"name":"wszREGLOGLEVEL","features":[123]},{"name":"wszREGLOGPATH","features":[123]},{"name":"wszREGLOWLOGNUMBER","features":[123]},{"name":"wszREGMAXINCOMINGALLOCSIZE","features":[123]},{"name":"wszREGMAXINCOMINGMESSAGESIZE","features":[123]},{"name":"wszREGMAXPENDINGREQUESTDAYS","features":[123]},{"name":"wszREGMAXSCTLISTSIZE","features":[123]},{"name":"wszREGNAMESEPARATOR","features":[123]},{"name":"wszREGNETSCAPECERTTYPE","features":[123]},{"name":"wszREGOFFICERRIGHTS","features":[123]},{"name":"wszREGPARENTCAMACHINE","features":[123]},{"name":"wszREGPARENTCANAME","features":[123]},{"name":"wszREGPOLICYFLAGS","features":[123]},{"name":"wszREGPRESERVESCEPDUMMYCERTS","features":[123]},{"name":"wszREGPROCESSINGFLAGS","features":[123]},{"name":"wszREGPROVIDER","features":[123]},{"name":"wszREGPROVIDERTYPE","features":[123]},{"name":"wszREGREQUESTDISPOSITION","features":[123]},{"name":"wszREGREQUESTFILENAME","features":[123]},{"name":"wszREGREQUESTID","features":[123]},{"name":"wszREGREQUESTKEYCONTAINER","features":[123]},{"name":"wszREGREQUESTKEYINDEX","features":[123]},{"name":"wszREGRESTOREMAP","features":[123]},{"name":"wszREGRESTOREMAPCOUNT","features":[123]},{"name":"wszREGRESTORESTATUS","features":[123]},{"name":"wszREGREVOCATIONCRLURL_OLD","features":[123]},{"name":"wszREGREVOCATIONTYPE","features":[123]},{"name":"wszREGREVOCATIONURL","features":[123]},{"name":"wszREGROLESEPARATIONENABLED","features":[123]},{"name":"wszREGSETUPSTATUS","features":[123]},{"name":"wszREGSP4DEFAULTCONFIGURATION","features":[123]},{"name":"wszREGSP4KEYSETNAME","features":[123]},{"name":"wszREGSP4NAMES","features":[123]},{"name":"wszREGSP4QUERIES","features":[123]},{"name":"wszREGSP4SUBJECTNAMESEPARATOR","features":[123]},{"name":"wszREGSUBJECTALTNAME","features":[123]},{"name":"wszREGSUBJECTALTNAME2","features":[123]},{"name":"wszREGSUBJECTTEMPLATE","features":[123]},{"name":"wszREGSYMMETRICKEYSIZE","features":[123]},{"name":"wszREGUNICODE","features":[123]},{"name":"wszREGUPNMAP","features":[123]},{"name":"wszREGUSEDEFINEDCACERTINREQ","features":[123]},{"name":"wszREGVALIDITYPERIODCOUNT","features":[123]},{"name":"wszREGVALIDITYPERIODSTRING","features":[123]},{"name":"wszREGVERIFYFLAGS","features":[123]},{"name":"wszREGVERSION","features":[123]},{"name":"wszREGVIEWAGEMINUTES","features":[123]},{"name":"wszREGVIEWIDLEMINUTES","features":[123]},{"name":"wszREGWEBCLIENTCAMACHINE","features":[123]},{"name":"wszREGWEBCLIENTCANAME","features":[123]},{"name":"wszREGWEBCLIENTCATYPE","features":[123]},{"name":"wszSECUREDATTRIBUTES","features":[123]},{"name":"wszSERVICE_NAME","features":[123]},{"name":"wszzDEFAULTSIGNEDATTRIBUTES","features":[123]}],"490":[{"name":"CryptSIPAddProvider","features":[1,122]},{"name":"CryptSIPCreateIndirectData","features":[1,121,122]},{"name":"CryptSIPGetCaps","features":[1,121,122]},{"name":"CryptSIPGetSealedDigest","features":[1,121,122]},{"name":"CryptSIPGetSignedDataMsg","features":[1,121,122]},{"name":"CryptSIPLoad","features":[1,121,122]},{"name":"CryptSIPPutSignedDataMsg","features":[1,121,122]},{"name":"CryptSIPRemoveProvider","features":[1,122]},{"name":"CryptSIPRemoveSignedDataMsg","features":[1,121,122]},{"name":"CryptSIPRetrieveSubjectGuid","features":[1,122]},{"name":"CryptSIPRetrieveSubjectGuidForCatalogFile","features":[1,122]},{"name":"CryptSIPVerifyIndirectData","features":[1,121,122]},{"name":"MSSIP_ADDINFO_BLOB","features":[122]},{"name":"MSSIP_ADDINFO_CATMEMBER","features":[122]},{"name":"MSSIP_ADDINFO_FLAT","features":[122]},{"name":"MSSIP_ADDINFO_NONE","features":[122]},{"name":"MSSIP_ADDINFO_NONMSSIP","features":[122]},{"name":"MSSIP_FLAGS_MULTI_HASH","features":[122]},{"name":"MSSIP_FLAGS_PROHIBIT_RESIZE_ON_CREATE","features":[122]},{"name":"MSSIP_FLAGS_USE_CATALOG","features":[122]},{"name":"MS_ADDINFO_BLOB","features":[122]},{"name":"MS_ADDINFO_FLAT","features":[122]},{"name":"SIP_ADD_NEWPROVIDER","features":[122]},{"name":"SIP_CAP_FLAG_SEALING","features":[122]},{"name":"SIP_CAP_SET_CUR_VER","features":[122]},{"name":"SIP_CAP_SET_V2","features":[1,122]},{"name":"SIP_CAP_SET_V3","features":[1,122]},{"name":"SIP_CAP_SET_VERSION_2","features":[122]},{"name":"SIP_CAP_SET_VERSION_3","features":[122]},{"name":"SIP_DISPATCH_INFO","features":[1,121,122]},{"name":"SIP_INDIRECT_DATA","features":[122]},{"name":"SIP_MAX_MAGIC_NUMBER","features":[122]},{"name":"SIP_SUBJECTINFO","features":[1,121,122]},{"name":"SPC_MARKER_CHECK_CURRENTLY_SUPPORTED_FLAGS","features":[122]},{"name":"SPC_MARKER_CHECK_SKIP_SIP_INDIRECT_DATA_FLAG","features":[122]},{"name":"SPC_RELAXED_PE_MARKER_CHECK","features":[122]},{"name":"pCryptSIPCreateIndirectData","features":[1,121,122]},{"name":"pCryptSIPGetCaps","features":[1,121,122]},{"name":"pCryptSIPGetSealedDigest","features":[1,121,122]},{"name":"pCryptSIPGetSignedDataMsg","features":[1,121,122]},{"name":"pCryptSIPPutSignedDataMsg","features":[1,121,122]},{"name":"pCryptSIPRemoveSignedDataMsg","features":[1,121,122]},{"name":"pCryptSIPVerifyIndirectData","features":[1,121,122]},{"name":"pfnIsFileSupported","features":[1,122]},{"name":"pfnIsFileSupportedName","features":[1,122]}],"491":[{"name":"ACTION_REVOCATION_DEFAULT_CACHE","features":[124]},{"name":"ACTION_REVOCATION_DEFAULT_ONLINE","features":[124]},{"name":"CERTVIEW_CRYPTUI_LPARAM","features":[124]},{"name":"CERT_CERTIFICATE_ACTION_VERIFY","features":[124]},{"name":"CERT_CREDENTIAL_PROVIDER_ID","features":[124]},{"name":"CERT_DISPWELL_DISTRUST_ADD_CA_CERT","features":[124]},{"name":"CERT_DISPWELL_DISTRUST_ADD_LEAF_CERT","features":[124]},{"name":"CERT_DISPWELL_DISTRUST_CA_CERT","features":[124]},{"name":"CERT_DISPWELL_DISTRUST_LEAF_CERT","features":[124]},{"name":"CERT_DISPWELL_SELECT","features":[124]},{"name":"CERT_DISPWELL_TRUST_ADD_CA_CERT","features":[124]},{"name":"CERT_DISPWELL_TRUST_ADD_LEAF_CERT","features":[124]},{"name":"CERT_DISPWELL_TRUST_CA_CERT","features":[124]},{"name":"CERT_DISPWELL_TRUST_LEAF_CERT","features":[124]},{"name":"CERT_FILTER_DATA","features":[124]},{"name":"CERT_FILTER_EXTENSION_MATCH","features":[124]},{"name":"CERT_FILTER_INCLUDE_V1_CERTS","features":[124]},{"name":"CERT_FILTER_ISSUER_CERTS_ONLY","features":[124]},{"name":"CERT_FILTER_KEY_EXISTS","features":[124]},{"name":"CERT_FILTER_LEAF_CERTS_ONLY","features":[124]},{"name":"CERT_FILTER_OP_EQUALITY","features":[124]},{"name":"CERT_FILTER_OP_EXISTS","features":[124]},{"name":"CERT_FILTER_OP_NOT_EXISTS","features":[124]},{"name":"CERT_FILTER_VALID_SIGNATURE","features":[124]},{"name":"CERT_FILTER_VALID_TIME_RANGE","features":[124]},{"name":"CERT_SELECTUI_INPUT","features":[1,124]},{"name":"CERT_SELECT_STRUCT_A","features":[1,124]},{"name":"CERT_SELECT_STRUCT_FLAGS","features":[124]},{"name":"CERT_SELECT_STRUCT_W","features":[1,124]},{"name":"CERT_TRUST_DO_FULL_SEARCH","features":[124]},{"name":"CERT_TRUST_DO_FULL_TRUST","features":[124]},{"name":"CERT_TRUST_MASK","features":[124]},{"name":"CERT_TRUST_PERMIT_MISSING_CRLS","features":[124]},{"name":"CERT_VALIDITY_AFTER_END","features":[124]},{"name":"CERT_VALIDITY_BEFORE_START","features":[124]},{"name":"CERT_VALIDITY_CERTIFICATE_REVOKED","features":[124]},{"name":"CERT_VALIDITY_CRL_OUT_OF_DATE","features":[124]},{"name":"CERT_VALIDITY_EXPLICITLY_DISTRUSTED","features":[124]},{"name":"CERT_VALIDITY_EXTENDED_USAGE_FAILURE","features":[124]},{"name":"CERT_VALIDITY_ISSUER_DISTRUST","features":[124]},{"name":"CERT_VALIDITY_ISSUER_INVALID","features":[124]},{"name":"CERT_VALIDITY_KEY_USAGE_EXT_FAILURE","features":[124]},{"name":"CERT_VALIDITY_MASK_TRUST","features":[124]},{"name":"CERT_VALIDITY_MASK_VALIDITY","features":[124]},{"name":"CERT_VALIDITY_NAME_CONSTRAINTS_FAILURE","features":[124]},{"name":"CERT_VALIDITY_NO_CRL_FOUND","features":[124]},{"name":"CERT_VALIDITY_NO_ISSUER_CERT_FOUND","features":[124]},{"name":"CERT_VALIDITY_NO_TRUST_DATA","features":[124]},{"name":"CERT_VALIDITY_OTHER_ERROR","features":[124]},{"name":"CERT_VALIDITY_OTHER_EXTENSION_FAILURE","features":[124]},{"name":"CERT_VALIDITY_PERIOD_NESTING_FAILURE","features":[124]},{"name":"CERT_VALIDITY_SIGNATURE_FAILS","features":[124]},{"name":"CERT_VALIDITY_UNKNOWN_CRITICAL_EXTENSION","features":[124]},{"name":"CERT_VERIFY_CERTIFICATE_TRUST","features":[1,124]},{"name":"CERT_VIEWPROPERTIES_STRUCT_A","features":[1,12,124,40,50]},{"name":"CERT_VIEWPROPERTIES_STRUCT_FLAGS","features":[124]},{"name":"CERT_VIEWPROPERTIES_STRUCT_W","features":[1,12,124,40,50]},{"name":"CM_ADD_CERT_STORES","features":[124]},{"name":"CM_ENABLEHOOK","features":[124]},{"name":"CM_ENABLETEMPLATE","features":[124]},{"name":"CM_HIDE_ADVANCEPAGE","features":[124]},{"name":"CM_HIDE_DETAILPAGE","features":[124]},{"name":"CM_HIDE_TRUSTPAGE","features":[124]},{"name":"CM_NO_EDITTRUST","features":[124]},{"name":"CM_NO_NAMECHANGE","features":[124]},{"name":"CM_SHOW_HELP","features":[124]},{"name":"CM_SHOW_HELPICON","features":[124]},{"name":"CM_VIEWFLAGS_MASK","features":[124]},{"name":"CRYPTDLG_ACTION_MASK","features":[124]},{"name":"CRYPTDLG_CACHE_ONLY_URL_RETRIEVAL","features":[124]},{"name":"CRYPTDLG_DISABLE_AIA","features":[124]},{"name":"CRYPTDLG_POLICY_MASK","features":[124]},{"name":"CRYPTDLG_REVOCATION_CACHE","features":[124]},{"name":"CRYPTDLG_REVOCATION_DEFAULT","features":[124]},{"name":"CRYPTDLG_REVOCATION_NONE","features":[124]},{"name":"CRYPTDLG_REVOCATION_ONLINE","features":[124]},{"name":"CRYPTUI_ACCEPT_DECLINE_STYLE","features":[124]},{"name":"CRYPTUI_CACHE_ONLY_URL_RETRIEVAL","features":[124]},{"name":"CRYPTUI_CERT_MGR_PUBLISHER_TAB","features":[124]},{"name":"CRYPTUI_CERT_MGR_SINGLE_TAB_FLAG","features":[124]},{"name":"CRYPTUI_CERT_MGR_STRUCT","features":[1,124]},{"name":"CRYPTUI_CERT_MGR_TAB_MASK","features":[124]},{"name":"CRYPTUI_DISABLE_ADDTOSTORE","features":[124]},{"name":"CRYPTUI_DISABLE_EDITPROPERTIES","features":[124]},{"name":"CRYPTUI_DISABLE_EXPORT","features":[124]},{"name":"CRYPTUI_DISABLE_HTMLLINK","features":[124]},{"name":"CRYPTUI_DISABLE_ISSUERSTATEMENT","features":[124]},{"name":"CRYPTUI_DONT_OPEN_STORES","features":[124]},{"name":"CRYPTUI_ENABLE_ADDTOSTORE","features":[124]},{"name":"CRYPTUI_ENABLE_EDITPROPERTIES","features":[124]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECKING","features":[124]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN","features":[124]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[124]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_END_CERT","features":[124]},{"name":"CRYPTUI_HIDE_DETAILPAGE","features":[124]},{"name":"CRYPTUI_HIDE_HIERARCHYPAGE","features":[124]},{"name":"CRYPTUI_IGNORE_UNTRUSTED_ROOT","features":[124]},{"name":"CRYPTUI_INITDIALOG_STRUCT","features":[1,124]},{"name":"CRYPTUI_ONLY_OPEN_ROOT_STORE","features":[124]},{"name":"CRYPTUI_SELECT_EXPIRATION_COLUMN","features":[124]},{"name":"CRYPTUI_SELECT_FRIENDLYNAME_COLUMN","features":[124]},{"name":"CRYPTUI_SELECT_INTENDEDUSE_COLUMN","features":[124]},{"name":"CRYPTUI_SELECT_ISSUEDBY_COLUMN","features":[124]},{"name":"CRYPTUI_SELECT_ISSUEDTO_COLUMN","features":[124]},{"name":"CRYPTUI_SELECT_LOCATION_COLUMN","features":[124]},{"name":"CRYPTUI_VIEWCERTIFICATE_FLAGS","features":[124]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTA","features":[1,12,121,122,124,125,40,50]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTW","features":[1,12,121,122,124,125,40,50]},{"name":"CRYPTUI_WARN_REMOTE_TRUST","features":[124]},{"name":"CRYPTUI_WARN_UNTRUSTED_ROOT","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_ADDITIONAL_CERT_CHOICE","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN_NO_ROOT","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_NONE","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_BLOB_INFO","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT_PVK_INFO","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_COMMERCIAL","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CONTEXT","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXCLUDE_PAGE_HASHES","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXTENDED_INFO","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INCLUDE_PAGE_HASHES","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INDIVIDUAL","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INFO","features":[1,124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_NONE","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE_INFO","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_OPTION","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_PROV","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SIG_TYPE","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE_INFO","features":[1,124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_BLOB","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_FILE","features":[124]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_NONE","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_CERTCONTEXT_INFO","features":[1,124]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_CONTEXT","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE_CERTIFICATES_ONLY","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_CRL_CONTEXT","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_CTL_CONTEXT","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_BASE64","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CRL","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CTL","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_DER","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PFX","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PKCS7","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_SERIALIZED_CERT_STORE","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_INFO","features":[1,124]},{"name":"CRYPTUI_WIZ_EXPORT_NO_DELETE_PRIVATE_KEY","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_PRIVATE_KEY","features":[124]},{"name":"CRYPTUI_WIZ_EXPORT_SUBJECT","features":[124]},{"name":"CRYPTUI_WIZ_FLAGS","features":[124]},{"name":"CRYPTUI_WIZ_IGNORE_NO_UI_FLAG_FOR_CSPS","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CERT","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CRL","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CTL","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_NO_CHANGE_DEST_STORE","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_REMOTE_DEST_STORE","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_SRC_INFO","features":[1,124]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_CONTEXT","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_STORE","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CRL_CONTEXT","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CTL_CONTEXT","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_FILE","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_OPTION","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_TO_CURRENTUSER","features":[124]},{"name":"CRYPTUI_WIZ_IMPORT_TO_LOCALMACHINE","features":[124]},{"name":"CRYPTUI_WIZ_NO_UI","features":[124]},{"name":"CRYPTUI_WIZ_NO_UI_EXCEPT_CSP","features":[124]},{"name":"CRYTPDLG_FLAGS_MASK","features":[124]},{"name":"CSS_ALLOWMULTISELECT","features":[124]},{"name":"CSS_ENABLEHOOK","features":[124]},{"name":"CSS_ENABLETEMPLATE","features":[124]},{"name":"CSS_ENABLETEMPLATEHANDLE","features":[124]},{"name":"CSS_HIDE_PROPERTIES","features":[124]},{"name":"CSS_SELECTCERT_MASK","features":[124]},{"name":"CSS_SHOW_HELP","features":[124]},{"name":"CTL_MODIFY_REQUEST","features":[1,124]},{"name":"CTL_MODIFY_REQUEST_ADD_NOT_TRUSTED","features":[124]},{"name":"CTL_MODIFY_REQUEST_ADD_TRUSTED","features":[124]},{"name":"CTL_MODIFY_REQUEST_OPERATION","features":[124]},{"name":"CTL_MODIFY_REQUEST_REMOVE","features":[124]},{"name":"CertSelectionGetSerializedBlob","features":[1,124]},{"name":"CryptUIDlgCertMgr","features":[1,124]},{"name":"CryptUIDlgSelectCertificateFromStore","features":[1,124]},{"name":"CryptUIDlgViewCertificateA","features":[1,12,121,122,124,125,40,50]},{"name":"CryptUIDlgViewCertificateW","features":[1,12,121,122,124,125,40,50]},{"name":"CryptUIDlgViewContext","features":[1,124]},{"name":"CryptUIWizDigitalSign","features":[1,124]},{"name":"CryptUIWizExport","features":[1,124]},{"name":"CryptUIWizFreeDigitalSignContext","features":[1,124]},{"name":"CryptUIWizImport","features":[1,124]},{"name":"PFNCFILTERPROC","features":[1,124]},{"name":"PFNCMFILTERPROC","features":[1,124]},{"name":"PFNCMHOOKPROC","features":[1,124]},{"name":"PFNTRUSTHELPER","features":[1,124]},{"name":"POLICY_IGNORE_NON_CRITICAL_BC","features":[124]},{"name":"SELCERT_ALGORITHM","features":[124]},{"name":"SELCERT_CERTLIST","features":[124]},{"name":"SELCERT_FINEPRINT","features":[124]},{"name":"SELCERT_ISSUED_TO","features":[124]},{"name":"SELCERT_PROPERTIES","features":[124]},{"name":"SELCERT_SERIAL_NUM","features":[124]},{"name":"SELCERT_THUMBPRINT","features":[124]},{"name":"SELCERT_VALIDITY","features":[124]},{"name":"szCERT_CERTIFICATE_ACTION_VERIFY","features":[124]}],"492":[{"name":"AllUserData","features":[126]},{"name":"CurrentUserData","features":[126]},{"name":"DIAGNOSTIC_DATA_EVENT_BINARY_STATS","features":[126]},{"name":"DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION","features":[126]},{"name":"DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION","features":[126]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION","features":[126]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_STATS","features":[126]},{"name":"DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION","features":[126]},{"name":"DIAGNOSTIC_DATA_GENERAL_STATS","features":[126]},{"name":"DIAGNOSTIC_DATA_RECORD","features":[1,126]},{"name":"DIAGNOSTIC_DATA_SEARCH_CRITERIA","features":[1,126]},{"name":"DIAGNOSTIC_REPORT_DATA","features":[1,126]},{"name":"DIAGNOSTIC_REPORT_PARAMETER","features":[126]},{"name":"DIAGNOSTIC_REPORT_SIGNATURE","features":[126]},{"name":"DdqAccessLevel","features":[126]},{"name":"DdqCancelDiagnosticRecordOperation","features":[126]},{"name":"DdqCloseSession","features":[126]},{"name":"DdqCreateSession","features":[126]},{"name":"DdqExtractDiagnosticReport","features":[126]},{"name":"DdqFreeDiagnosticRecordLocaleTags","features":[126]},{"name":"DdqFreeDiagnosticRecordPage","features":[126]},{"name":"DdqFreeDiagnosticRecordProducerCategories","features":[126]},{"name":"DdqFreeDiagnosticRecordProducers","features":[126]},{"name":"DdqFreeDiagnosticReport","features":[126]},{"name":"DdqGetDiagnosticDataAccessLevelAllowed","features":[126]},{"name":"DdqGetDiagnosticRecordAtIndex","features":[1,126]},{"name":"DdqGetDiagnosticRecordBinaryDistribution","features":[126]},{"name":"DdqGetDiagnosticRecordCategoryAtIndex","features":[126]},{"name":"DdqGetDiagnosticRecordCategoryCount","features":[126]},{"name":"DdqGetDiagnosticRecordCount","features":[126]},{"name":"DdqGetDiagnosticRecordLocaleTagAtIndex","features":[126]},{"name":"DdqGetDiagnosticRecordLocaleTagCount","features":[126]},{"name":"DdqGetDiagnosticRecordLocaleTags","features":[126]},{"name":"DdqGetDiagnosticRecordPage","features":[1,126]},{"name":"DdqGetDiagnosticRecordPayload","features":[126]},{"name":"DdqGetDiagnosticRecordProducerAtIndex","features":[126]},{"name":"DdqGetDiagnosticRecordProducerCategories","features":[126]},{"name":"DdqGetDiagnosticRecordProducerCount","features":[126]},{"name":"DdqGetDiagnosticRecordProducers","features":[126]},{"name":"DdqGetDiagnosticRecordStats","features":[1,126]},{"name":"DdqGetDiagnosticRecordSummary","features":[126]},{"name":"DdqGetDiagnosticRecordTagDistribution","features":[126]},{"name":"DdqGetDiagnosticReport","features":[126]},{"name":"DdqGetDiagnosticReportAtIndex","features":[1,126]},{"name":"DdqGetDiagnosticReportCount","features":[126]},{"name":"DdqGetDiagnosticReportStoreReportCount","features":[126]},{"name":"DdqGetSessionAccessLevel","features":[126]},{"name":"DdqGetTranscriptConfiguration","features":[126]},{"name":"DdqIsDiagnosticRecordSampledIn","features":[1,126]},{"name":"DdqSetTranscriptConfiguration","features":[126]},{"name":"NoData","features":[126]}],"493":[{"name":"DSCreateISecurityInfoObject","features":[1,127]},{"name":"DSCreateISecurityInfoObjectEx","features":[1,127]},{"name":"DSCreateSecurityPage","features":[1,127,40]},{"name":"DSEditSecurity","features":[1,127]},{"name":"DSSI_IS_ROOT","features":[127]},{"name":"DSSI_NO_ACCESS_CHECK","features":[127]},{"name":"DSSI_NO_EDIT_OWNER","features":[127]},{"name":"DSSI_NO_EDIT_SACL","features":[127]},{"name":"DSSI_NO_FILTER","features":[127]},{"name":"DSSI_NO_READONLY_MESSAGE","features":[127]},{"name":"DSSI_READ_ONLY","features":[127]},{"name":"PFNDSCREATEISECINFO","features":[1,127]},{"name":"PFNDSCREATEISECINFOEX","features":[1,127]},{"name":"PFNDSCREATESECPAGE","features":[1,127,40]},{"name":"PFNDSEDITSECURITY","features":[1,127]},{"name":"PFNREADOBJECTSECURITY","features":[1,127]},{"name":"PFNWRITEOBJECTSECURITY","features":[1,127]}],"494":[{"name":"ENTERPRISE_DATA_POLICIES","features":[128]},{"name":"ENTERPRISE_POLICY_ALLOWED","features":[128]},{"name":"ENTERPRISE_POLICY_ENLIGHTENED","features":[128]},{"name":"ENTERPRISE_POLICY_EXEMPT","features":[128]},{"name":"ENTERPRISE_POLICY_NONE","features":[128]},{"name":"FILE_UNPROTECT_OPTIONS","features":[128]},{"name":"HTHREAD_NETWORK_CONTEXT","features":[1,128]},{"name":"IProtectionPolicyManagerInterop","features":[128]},{"name":"IProtectionPolicyManagerInterop2","features":[128]},{"name":"IProtectionPolicyManagerInterop3","features":[128]},{"name":"ProtectFileToEnterpriseIdentity","features":[128]},{"name":"SRPHOSTING_TYPE","features":[128]},{"name":"SRPHOSTING_TYPE_NONE","features":[128]},{"name":"SRPHOSTING_TYPE_WINHTTP","features":[128]},{"name":"SRPHOSTING_TYPE_WININET","features":[128]},{"name":"SRPHOSTING_VERSION","features":[128]},{"name":"SRPHOSTING_VERSION1","features":[128]},{"name":"SrpCloseThreadNetworkContext","features":[1,128]},{"name":"SrpCreateThreadNetworkContext","features":[1,128]},{"name":"SrpDisablePermissiveModeFileEncryption","features":[128]},{"name":"SrpDoesPolicyAllowAppExecution","features":[1,128,129]},{"name":"SrpEnablePermissiveModeFileEncryption","features":[128]},{"name":"SrpGetEnterpriseIds","features":[1,128]},{"name":"SrpGetEnterprisePolicy","features":[1,128]},{"name":"SrpHostingInitialize","features":[128]},{"name":"SrpHostingTerminate","features":[128]},{"name":"SrpIsTokenService","features":[1,128]},{"name":"SrpSetTokenEnterpriseId","features":[1,128]},{"name":"UnprotectFile","features":[128]}],"495":[{"name":"CERTIFICATE_HASH_LENGTH","features":[103]},{"name":"EAPACTION_Authenticate","features":[103]},{"name":"EAPACTION_Done","features":[103]},{"name":"EAPACTION_IndicateIdentity","features":[103]},{"name":"EAPACTION_IndicateTLV","features":[103]},{"name":"EAPACTION_NoAction","features":[103]},{"name":"EAPACTION_Send","features":[103]},{"name":"EAPACTION_SendAndDone","features":[103]},{"name":"EAPACTION_SendWithTimeout","features":[103]},{"name":"EAPACTION_SendWithTimeoutInteractive","features":[103]},{"name":"EAPCODE_Failure","features":[103]},{"name":"EAPCODE_Request","features":[103]},{"name":"EAPCODE_Response","features":[103]},{"name":"EAPCODE_Success","features":[103]},{"name":"EAPHOST_AUTH_INFO","features":[103]},{"name":"EAPHOST_AUTH_STATUS","features":[103]},{"name":"EAPHOST_IDENTITY_UI_PARAMS","features":[103]},{"name":"EAPHOST_INTERACTIVE_UI_PARAMS","features":[103]},{"name":"EAPHOST_METHOD_API_VERSION","features":[103]},{"name":"EAPHOST_PEER_API_VERSION","features":[103]},{"name":"EAP_ATTRIBUTE","features":[103]},{"name":"EAP_ATTRIBUTES","features":[103]},{"name":"EAP_ATTRIBUTE_TYPE","features":[103]},{"name":"EAP_AUTHENTICATOR_METHOD_ROUTINES","features":[103]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT","features":[103]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_BASIC","features":[103]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_INTERACTIVE","features":[103]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_NONE","features":[103]},{"name":"EAP_AUTHENTICATOR_VALUENAME_CONFIGUI","features":[103]},{"name":"EAP_AUTHENTICATOR_VALUENAME_DLL_PATH","features":[103]},{"name":"EAP_AUTHENTICATOR_VALUENAME_FRIENDLY_NAME","features":[103]},{"name":"EAP_AUTHENTICATOR_VALUENAME_PROPERTIES","features":[103]},{"name":"EAP_CERTIFICATE_CREDENTIAL","features":[103]},{"name":"EAP_CONFIG_INPUT_FIELD_ARRAY","features":[103]},{"name":"EAP_CONFIG_INPUT_FIELD_DATA","features":[103]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_DEFAULT","features":[103]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[103]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_PERSIST","features":[103]},{"name":"EAP_CONFIG_INPUT_FIELD_TYPE","features":[103]},{"name":"EAP_CREDENTIAL_VERSION","features":[103]},{"name":"EAP_CRED_EXPIRY_REQ","features":[103]},{"name":"EAP_EMPTY_CREDENTIAL","features":[103]},{"name":"EAP_ERROR","features":[103]},{"name":"EAP_E_AUTHENTICATION_FAILED","features":[103]},{"name":"EAP_E_CERT_STORE_INACCESSIBLE","features":[103]},{"name":"EAP_E_EAPHOST_EAPQEC_INACCESSIBLE","features":[103]},{"name":"EAP_E_EAPHOST_FIRST","features":[103]},{"name":"EAP_E_EAPHOST_IDENTITY_UNKNOWN","features":[103]},{"name":"EAP_E_EAPHOST_LAST","features":[103]},{"name":"EAP_E_EAPHOST_METHOD_INVALID_PACKET","features":[103]},{"name":"EAP_E_EAPHOST_METHOD_NOT_INSTALLED","features":[103]},{"name":"EAP_E_EAPHOST_METHOD_OPERATION_NOT_SUPPORTED","features":[103]},{"name":"EAP_E_EAPHOST_REMOTE_INVALID_PACKET","features":[103]},{"name":"EAP_E_EAPHOST_THIRDPARTY_METHOD_HOST_RESET","features":[103]},{"name":"EAP_E_EAPHOST_XML_MALFORMED","features":[103]},{"name":"EAP_E_METHOD_CONFIG_DOES_NOT_SUPPORT_SSO","features":[103]},{"name":"EAP_E_NO_SMART_CARD_READER","features":[103]},{"name":"EAP_E_SERVER_CERT_EXPIRED","features":[103]},{"name":"EAP_E_SERVER_CERT_INVALID","features":[103]},{"name":"EAP_E_SERVER_CERT_NOT_FOUND","features":[103]},{"name":"EAP_E_SERVER_CERT_OTHER_ERROR","features":[103]},{"name":"EAP_E_SERVER_CERT_REVOKED","features":[103]},{"name":"EAP_E_SERVER_FIRST","features":[103]},{"name":"EAP_E_SERVER_LAST","features":[103]},{"name":"EAP_E_SERVER_ROOT_CERT_FIRST","features":[103]},{"name":"EAP_E_SERVER_ROOT_CERT_INVALID","features":[103]},{"name":"EAP_E_SERVER_ROOT_CERT_LAST","features":[103]},{"name":"EAP_E_SERVER_ROOT_CERT_NAME_REQUIRED","features":[103]},{"name":"EAP_E_SERVER_ROOT_CERT_NOT_FOUND","features":[103]},{"name":"EAP_E_SIM_NOT_VALID","features":[103]},{"name":"EAP_E_USER_CERT_EXPIRED","features":[103]},{"name":"EAP_E_USER_CERT_INVALID","features":[103]},{"name":"EAP_E_USER_CERT_NOT_FOUND","features":[103]},{"name":"EAP_E_USER_CERT_OTHER_ERROR","features":[103]},{"name":"EAP_E_USER_CERT_REJECTED","features":[103]},{"name":"EAP_E_USER_CERT_REVOKED","features":[103]},{"name":"EAP_E_USER_CREDENTIALS_REJECTED","features":[103]},{"name":"EAP_E_USER_FIRST","features":[103]},{"name":"EAP_E_USER_LAST","features":[103]},{"name":"EAP_E_USER_NAME_PASSWORD_REJECTED","features":[103]},{"name":"EAP_E_USER_ROOT_CERT_EXPIRED","features":[103]},{"name":"EAP_E_USER_ROOT_CERT_FIRST","features":[103]},{"name":"EAP_E_USER_ROOT_CERT_INVALID","features":[103]},{"name":"EAP_E_USER_ROOT_CERT_LAST","features":[103]},{"name":"EAP_E_USER_ROOT_CERT_NOT_FOUND","features":[103]},{"name":"EAP_FLAG_CONFG_READONLY","features":[103]},{"name":"EAP_FLAG_FULL_AUTH","features":[103]},{"name":"EAP_FLAG_GUEST_ACCESS","features":[103]},{"name":"EAP_FLAG_LOGON","features":[103]},{"name":"EAP_FLAG_MACHINE_AUTH","features":[103]},{"name":"EAP_FLAG_NON_INTERACTIVE","features":[103]},{"name":"EAP_FLAG_ONLY_EAP_TLS","features":[103]},{"name":"EAP_FLAG_PREFER_ALT_CREDENTIALS","features":[103]},{"name":"EAP_FLAG_PREVIEW","features":[103]},{"name":"EAP_FLAG_PRE_LOGON","features":[103]},{"name":"EAP_FLAG_RESUME_FROM_HIBERNATE","features":[103]},{"name":"EAP_FLAG_Reserved1","features":[103]},{"name":"EAP_FLAG_Reserved2","features":[103]},{"name":"EAP_FLAG_Reserved3","features":[103]},{"name":"EAP_FLAG_Reserved4","features":[103]},{"name":"EAP_FLAG_Reserved5","features":[103]},{"name":"EAP_FLAG_Reserved6","features":[103]},{"name":"EAP_FLAG_Reserved7","features":[103]},{"name":"EAP_FLAG_Reserved8","features":[103]},{"name":"EAP_FLAG_Reserved9","features":[103]},{"name":"EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[103]},{"name":"EAP_FLAG_SUPRESS_UI","features":[103]},{"name":"EAP_FLAG_USER_AUTH","features":[103]},{"name":"EAP_FLAG_VPN","features":[103]},{"name":"EAP_GROUP_MASK","features":[103]},{"name":"EAP_INTERACTIVE_UI_DATA","features":[103]},{"name":"EAP_INTERACTIVE_UI_DATA_TYPE","features":[103]},{"name":"EAP_INTERACTIVE_UI_DATA_VERSION","features":[103]},{"name":"EAP_INVALID_PACKET","features":[103]},{"name":"EAP_I_EAPHOST_EAP_NEGOTIATION_FAILED","features":[103]},{"name":"EAP_I_EAPHOST_FIRST","features":[103]},{"name":"EAP_I_EAPHOST_LAST","features":[103]},{"name":"EAP_I_USER_ACCOUNT_OTHER_ERROR","features":[103]},{"name":"EAP_I_USER_FIRST","features":[103]},{"name":"EAP_I_USER_LAST","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_CONFIG_IS_IDENTITY_PRIVACY","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_ACTION","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_AUTHENTICATE","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_DISCARD","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_HANDLE_IDENTITY","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESPOND","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESULT","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_SEND","features":[103]},{"name":"EAP_METHOD_AUTHENTICATOR_RESULT","features":[1,103]},{"name":"EAP_METHOD_INFO","features":[103]},{"name":"EAP_METHOD_INFO_ARRAY","features":[103]},{"name":"EAP_METHOD_INFO_ARRAY_EX","features":[103]},{"name":"EAP_METHOD_INFO_EX","features":[103]},{"name":"EAP_METHOD_INVALID_PACKET","features":[103]},{"name":"EAP_METHOD_PROPERTY","features":[1,103]},{"name":"EAP_METHOD_PROPERTY_ARRAY","features":[1,103]},{"name":"EAP_METHOD_PROPERTY_TYPE","features":[103]},{"name":"EAP_METHOD_PROPERTY_VALUE","features":[1,103]},{"name":"EAP_METHOD_PROPERTY_VALUE_BOOL","features":[1,103]},{"name":"EAP_METHOD_PROPERTY_VALUE_DWORD","features":[103]},{"name":"EAP_METHOD_PROPERTY_VALUE_STRING","features":[103]},{"name":"EAP_METHOD_PROPERTY_VALUE_TYPE","features":[103]},{"name":"EAP_METHOD_TYPE","features":[103]},{"name":"EAP_PEER_FLAG_GUEST_ACCESS","features":[103]},{"name":"EAP_PEER_FLAG_HEALTH_STATE_CHANGE","features":[103]},{"name":"EAP_PEER_METHOD_ROUTINES","features":[103]},{"name":"EAP_PEER_VALUENAME_CONFIGUI","features":[103]},{"name":"EAP_PEER_VALUENAME_DLL_PATH","features":[103]},{"name":"EAP_PEER_VALUENAME_FRIENDLY_NAME","features":[103]},{"name":"EAP_PEER_VALUENAME_IDENTITY","features":[103]},{"name":"EAP_PEER_VALUENAME_INTERACTIVEUI","features":[103]},{"name":"EAP_PEER_VALUENAME_INVOKE_NAMEDLG","features":[103]},{"name":"EAP_PEER_VALUENAME_INVOKE_PWDDLG","features":[103]},{"name":"EAP_PEER_VALUENAME_PROPERTIES","features":[103]},{"name":"EAP_PEER_VALUENAME_REQUIRE_CONFIGUI","features":[103]},{"name":"EAP_REGISTRY_LOCATION","features":[103]},{"name":"EAP_SIM_CREDENTIAL","features":[103]},{"name":"EAP_TYPE","features":[103]},{"name":"EAP_UI_DATA_FORMAT","features":[103]},{"name":"EAP_UI_INPUT_FIELD_PROPS_DEFAULT","features":[103]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[103]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_PERSIST","features":[103]},{"name":"EAP_UI_INPUT_FIELD_PROPS_READ_ONLY","features":[103]},{"name":"EAP_USERNAME_PASSWORD_CREDENTIAL","features":[103]},{"name":"EAP_VALUENAME_PROPERTIES","features":[103]},{"name":"EAP_WINLOGON_CREDENTIAL","features":[103]},{"name":"EapCertificateCredential","features":[103]},{"name":"EapCode","features":[103]},{"name":"EapCodeFailure","features":[103]},{"name":"EapCodeMaximum","features":[103]},{"name":"EapCodeMinimum","features":[103]},{"name":"EapCodeRequest","features":[103]},{"name":"EapCodeResponse","features":[103]},{"name":"EapCodeSuccess","features":[103]},{"name":"EapConfigInputEdit","features":[103]},{"name":"EapConfigInputNetworkPassword","features":[103]},{"name":"EapConfigInputNetworkUsername","features":[103]},{"name":"EapConfigInputPSK","features":[103]},{"name":"EapConfigInputPassword","features":[103]},{"name":"EapConfigInputPin","features":[103]},{"name":"EapConfigInputUsername","features":[103]},{"name":"EapConfigSmartCardError","features":[103]},{"name":"EapConfigSmartCardUsername","features":[103]},{"name":"EapCredExpiryReq","features":[103]},{"name":"EapCredExpiryResp","features":[103]},{"name":"EapCredLogonReq","features":[103]},{"name":"EapCredLogonResp","features":[103]},{"name":"EapCredReq","features":[103]},{"name":"EapCredResp","features":[103]},{"name":"EapCredential","features":[103]},{"name":"EapCredentialType","features":[103]},{"name":"EapCredentialTypeData","features":[103]},{"name":"EapHostAuthFailed","features":[103]},{"name":"EapHostAuthIdentityExchange","features":[103]},{"name":"EapHostAuthInProgress","features":[103]},{"name":"EapHostAuthNegotiatingType","features":[103]},{"name":"EapHostAuthNotStarted","features":[103]},{"name":"EapHostAuthSucceeded","features":[103]},{"name":"EapHostInvalidSession","features":[103]},{"name":"EapHostNapInfo","features":[103]},{"name":"EapHostPeerAuthParams","features":[103]},{"name":"EapHostPeerAuthStatus","features":[103]},{"name":"EapHostPeerBeginSession","features":[1,103]},{"name":"EapHostPeerClearConnection","features":[103]},{"name":"EapHostPeerConfigBlob2Xml","features":[103]},{"name":"EapHostPeerConfigXml2Blob","features":[103]},{"name":"EapHostPeerCredentialsXml2Blob","features":[103]},{"name":"EapHostPeerEndSession","features":[103]},{"name":"EapHostPeerFreeEapError","features":[103]},{"name":"EapHostPeerFreeErrorMemory","features":[103]},{"name":"EapHostPeerFreeMemory","features":[103]},{"name":"EapHostPeerFreeRuntimeMemory","features":[103]},{"name":"EapHostPeerGetAuthStatus","features":[103]},{"name":"EapHostPeerGetDataToUnplumbCredentials","features":[1,103]},{"name":"EapHostPeerGetEncryptedPassword","features":[103]},{"name":"EapHostPeerGetIdentity","features":[1,103]},{"name":"EapHostPeerGetMethodProperties","features":[1,103]},{"name":"EapHostPeerGetMethods","features":[103]},{"name":"EapHostPeerGetResponseAttributes","features":[103]},{"name":"EapHostPeerGetResult","features":[1,103]},{"name":"EapHostPeerGetSendPacket","features":[103]},{"name":"EapHostPeerGetUIContext","features":[103]},{"name":"EapHostPeerIdentity","features":[103]},{"name":"EapHostPeerIdentityExtendedInfo","features":[103]},{"name":"EapHostPeerInitialize","features":[103]},{"name":"EapHostPeerInvokeConfigUI","features":[1,103]},{"name":"EapHostPeerInvokeIdentityUI","features":[1,103]},{"name":"EapHostPeerInvokeInteractiveUI","features":[1,103]},{"name":"EapHostPeerMethodResult","features":[1,103]},{"name":"EapHostPeerMethodResultAltSuccessReceived","features":[103]},{"name":"EapHostPeerMethodResultFromMethod","features":[103]},{"name":"EapHostPeerMethodResultReason","features":[103]},{"name":"EapHostPeerMethodResultTimeout","features":[103]},{"name":"EapHostPeerProcessReceivedPacket","features":[103]},{"name":"EapHostPeerQueryCredentialInputFields","features":[1,103]},{"name":"EapHostPeerQueryInteractiveUIInputFields","features":[103]},{"name":"EapHostPeerQueryUIBlobFromInteractiveUIInputFields","features":[103]},{"name":"EapHostPeerQueryUserBlobFromCredentialInputFields","features":[1,103]},{"name":"EapHostPeerResponseAction","features":[103]},{"name":"EapHostPeerResponseDiscard","features":[103]},{"name":"EapHostPeerResponseInvokeUi","features":[103]},{"name":"EapHostPeerResponseNone","features":[103]},{"name":"EapHostPeerResponseRespond","features":[103]},{"name":"EapHostPeerResponseResult","features":[103]},{"name":"EapHostPeerResponseSend","features":[103]},{"name":"EapHostPeerResponseStartAuthentication","features":[103]},{"name":"EapHostPeerSetResponseAttributes","features":[103]},{"name":"EapHostPeerSetUIContext","features":[103]},{"name":"EapHostPeerUninitialize","features":[103]},{"name":"EapPacket","features":[103]},{"name":"EapPeerMethodOutput","features":[1,103]},{"name":"EapPeerMethodResponseAction","features":[103]},{"name":"EapPeerMethodResponseActionDiscard","features":[103]},{"name":"EapPeerMethodResponseActionInvokeUI","features":[103]},{"name":"EapPeerMethodResponseActionNone","features":[103]},{"name":"EapPeerMethodResponseActionRespond","features":[103]},{"name":"EapPeerMethodResponseActionResult","features":[103]},{"name":"EapPeerMethodResponseActionSend","features":[103]},{"name":"EapPeerMethodResult","features":[1,68,103]},{"name":"EapPeerMethodResultFailure","features":[103]},{"name":"EapPeerMethodResultReason","features":[103]},{"name":"EapPeerMethodResultSuccess","features":[103]},{"name":"EapPeerMethodResultUnknown","features":[103]},{"name":"EapSimCredential","features":[103]},{"name":"EapUsernamePasswordCredential","features":[103]},{"name":"FACILITY_EAP_MESSAGE","features":[103]},{"name":"GUID_EapHost_Cause_CertStoreInaccessible","features":[103]},{"name":"GUID_EapHost_Cause_EapNegotiationFailed","features":[103]},{"name":"GUID_EapHost_Cause_EapQecInaccessible","features":[103]},{"name":"GUID_EapHost_Cause_Generic_AuthFailure","features":[103]},{"name":"GUID_EapHost_Cause_IdentityUnknown","features":[103]},{"name":"GUID_EapHost_Cause_MethodDLLNotFound","features":[103]},{"name":"GUID_EapHost_Cause_MethodDoesNotSupportOperation","features":[103]},{"name":"GUID_EapHost_Cause_Method_Config_Does_Not_Support_Sso","features":[103]},{"name":"GUID_EapHost_Cause_No_SmartCardReader_Found","features":[103]},{"name":"GUID_EapHost_Cause_Server_CertExpired","features":[103]},{"name":"GUID_EapHost_Cause_Server_CertInvalid","features":[103]},{"name":"GUID_EapHost_Cause_Server_CertNotFound","features":[103]},{"name":"GUID_EapHost_Cause_Server_CertOtherError","features":[103]},{"name":"GUID_EapHost_Cause_Server_CertRevoked","features":[103]},{"name":"GUID_EapHost_Cause_Server_Root_CertNameRequired","features":[103]},{"name":"GUID_EapHost_Cause_Server_Root_CertNotFound","features":[103]},{"name":"GUID_EapHost_Cause_SimNotValid","features":[103]},{"name":"GUID_EapHost_Cause_ThirdPartyMethod_Host_Reset","features":[103]},{"name":"GUID_EapHost_Cause_User_Account_OtherProblem","features":[103]},{"name":"GUID_EapHost_Cause_User_CertExpired","features":[103]},{"name":"GUID_EapHost_Cause_User_CertInvalid","features":[103]},{"name":"GUID_EapHost_Cause_User_CertNotFound","features":[103]},{"name":"GUID_EapHost_Cause_User_CertOtherError","features":[103]},{"name":"GUID_EapHost_Cause_User_CertRejected","features":[103]},{"name":"GUID_EapHost_Cause_User_CertRevoked","features":[103]},{"name":"GUID_EapHost_Cause_User_CredsRejected","features":[103]},{"name":"GUID_EapHost_Cause_User_Root_CertExpired","features":[103]},{"name":"GUID_EapHost_Cause_User_Root_CertInvalid","features":[103]},{"name":"GUID_EapHost_Cause_User_Root_CertNotFound","features":[103]},{"name":"GUID_EapHost_Cause_XmlMalformed","features":[103]},{"name":"GUID_EapHost_Default","features":[103]},{"name":"GUID_EapHost_Help_ObtainingCerts","features":[103]},{"name":"GUID_EapHost_Help_Troubleshooting","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_AuthFailure","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertNameAbsent","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertStoreInaccessible","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_IdentityUnknown","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserAccount","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserCert","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_MethodNotFound","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_NegotiationFailed","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_NoSmartCardReader","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertInvalid","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertNotFound","features":[103]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootExpired","features":[103]},{"name":"GUID_EapHost_Repair_ContactSysadmin","features":[103]},{"name":"GUID_EapHost_Repair_Method_Not_Support_Sso","features":[103]},{"name":"GUID_EapHost_Repair_No_ValidSim_Found","features":[103]},{"name":"GUID_EapHost_Repair_RestartNap","features":[103]},{"name":"GUID_EapHost_Repair_Retry_Authentication","features":[103]},{"name":"GUID_EapHost_Repair_Server_ClientSelectServerCert","features":[103]},{"name":"GUID_EapHost_Repair_User_AuthFailure","features":[103]},{"name":"GUID_EapHost_Repair_User_GetNewCert","features":[103]},{"name":"GUID_EapHost_Repair_User_SelectValidCert","features":[103]},{"name":"IAccountingProviderConfig","features":[103]},{"name":"IAuthenticationProviderConfig","features":[103]},{"name":"IEAPProviderConfig","features":[103]},{"name":"IEAPProviderConfig2","features":[103]},{"name":"IEAPProviderConfig3","features":[103]},{"name":"IRouterProtocolConfig","features":[103]},{"name":"ISOLATION_STATE","features":[103]},{"name":"ISOLATION_STATE_IN_PROBATION","features":[103]},{"name":"ISOLATION_STATE_NOT_RESTRICTED","features":[103]},{"name":"ISOLATION_STATE_RESTRICTED_ACCESS","features":[103]},{"name":"ISOLATION_STATE_UNKNOWN","features":[103]},{"name":"LEGACY_IDENTITY_UI_PARAMS","features":[103]},{"name":"LEGACY_INTERACTIVE_UI_PARAMS","features":[103]},{"name":"MAXEAPCODE","features":[103]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_LENGTH","features":[103]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_VALUE_LENGTH","features":[103]},{"name":"NCRYPT_PIN_CACHE_PIN_BYTE_LENGTH","features":[103]},{"name":"NgcTicketContext","features":[1,68,103]},{"name":"NotificationHandler","features":[103]},{"name":"PPP_EAP_ACTION","features":[103]},{"name":"PPP_EAP_INFO","features":[103]},{"name":"PPP_EAP_INPUT","features":[1,103]},{"name":"PPP_EAP_OUTPUT","features":[1,68,103]},{"name":"PPP_EAP_PACKET","features":[103]},{"name":"RAS_AUTH_ATTRIBUTE","features":[103]},{"name":"RAS_AUTH_ATTRIBUTE_TYPE","features":[103]},{"name":"RAS_EAP_FLAG_8021X_AUTH","features":[103]},{"name":"RAS_EAP_FLAG_ALTERNATIVE_USER_DB","features":[103]},{"name":"RAS_EAP_FLAG_CONFG_READONLY","features":[103]},{"name":"RAS_EAP_FLAG_FIRST_LINK","features":[103]},{"name":"RAS_EAP_FLAG_GUEST_ACCESS","features":[103]},{"name":"RAS_EAP_FLAG_HOSTED_IN_PEAP","features":[103]},{"name":"RAS_EAP_FLAG_LOGON","features":[103]},{"name":"RAS_EAP_FLAG_MACHINE_AUTH","features":[103]},{"name":"RAS_EAP_FLAG_NON_INTERACTIVE","features":[103]},{"name":"RAS_EAP_FLAG_PEAP_FORCE_FULL_AUTH","features":[103]},{"name":"RAS_EAP_FLAG_PEAP_UPFRONT","features":[103]},{"name":"RAS_EAP_FLAG_PREVIEW","features":[103]},{"name":"RAS_EAP_FLAG_PRE_LOGON","features":[103]},{"name":"RAS_EAP_FLAG_RESERVED","features":[103]},{"name":"RAS_EAP_FLAG_RESUME_FROM_HIBERNATE","features":[103]},{"name":"RAS_EAP_FLAG_ROUTER","features":[103]},{"name":"RAS_EAP_FLAG_SAVE_CREDMAN","features":[103]},{"name":"RAS_EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[103]},{"name":"RAS_EAP_REGISTRY_LOCATION","features":[103]},{"name":"RAS_EAP_ROLE_AUTHENTICATEE","features":[103]},{"name":"RAS_EAP_ROLE_AUTHENTICATOR","features":[103]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_EAP","features":[103]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_PEAP","features":[103]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_VPN","features":[103]},{"name":"RAS_EAP_VALUENAME_CONFIGUI","features":[103]},{"name":"RAS_EAP_VALUENAME_CONFIG_CLSID","features":[103]},{"name":"RAS_EAP_VALUENAME_DEFAULT_DATA","features":[103]},{"name":"RAS_EAP_VALUENAME_ENCRYPTION","features":[103]},{"name":"RAS_EAP_VALUENAME_FILTER_INNERMETHODS","features":[103]},{"name":"RAS_EAP_VALUENAME_FRIENDLY_NAME","features":[103]},{"name":"RAS_EAP_VALUENAME_IDENTITY","features":[103]},{"name":"RAS_EAP_VALUENAME_INTERACTIVEUI","features":[103]},{"name":"RAS_EAP_VALUENAME_INVOKE_NAMEDLG","features":[103]},{"name":"RAS_EAP_VALUENAME_INVOKE_PWDDLG","features":[103]},{"name":"RAS_EAP_VALUENAME_ISTUNNEL_METHOD","features":[103]},{"name":"RAS_EAP_VALUENAME_PATH","features":[103]},{"name":"RAS_EAP_VALUENAME_PER_POLICY_CONFIG","features":[103]},{"name":"RAS_EAP_VALUENAME_REQUIRE_CONFIGUI","features":[103]},{"name":"RAS_EAP_VALUENAME_ROLES_SUPPORTED","features":[103]},{"name":"RAS_EAP_VALUENAME_STANDALONE_SUPPORTED","features":[103]},{"name":"eapPropCertifiedMethod","features":[103]},{"name":"eapPropChannelBinding","features":[103]},{"name":"eapPropCipherSuiteNegotiation","features":[103]},{"name":"eapPropConfidentiality","features":[103]},{"name":"eapPropCryptoBinding","features":[103]},{"name":"eapPropDictionaryAttackResistance","features":[103]},{"name":"eapPropFastReconnect","features":[103]},{"name":"eapPropFragmentation","features":[103]},{"name":"eapPropHiddenMethod","features":[103]},{"name":"eapPropIdentityPrivacy","features":[103]},{"name":"eapPropIntegrity","features":[103]},{"name":"eapPropKeyDerivation","features":[103]},{"name":"eapPropKeyStrength1024","features":[103]},{"name":"eapPropKeyStrength128","features":[103]},{"name":"eapPropKeyStrength256","features":[103]},{"name":"eapPropKeyStrength512","features":[103]},{"name":"eapPropKeyStrength64","features":[103]},{"name":"eapPropMachineAuth","features":[103]},{"name":"eapPropMethodChaining","features":[103]},{"name":"eapPropMppeEncryption","features":[103]},{"name":"eapPropMutualAuth","features":[103]},{"name":"eapPropNap","features":[103]},{"name":"eapPropReplayProtection","features":[103]},{"name":"eapPropReserved","features":[103]},{"name":"eapPropSessionIndependence","features":[103]},{"name":"eapPropSharedStateEquivalence","features":[103]},{"name":"eapPropStandalone","features":[103]},{"name":"eapPropSupportsConfig","features":[103]},{"name":"eapPropTunnelMethod","features":[103]},{"name":"eapPropUserAuth","features":[103]},{"name":"eatARAPChallengeResponse","features":[103]},{"name":"eatARAPFeatures","features":[103]},{"name":"eatARAPGuestLogon","features":[103]},{"name":"eatARAPPassword","features":[103]},{"name":"eatARAPSecurity","features":[103]},{"name":"eatARAPSecurityData","features":[103]},{"name":"eatARAPZoneAccess","features":[103]},{"name":"eatAcctAuthentic","features":[103]},{"name":"eatAcctDelayTime","features":[103]},{"name":"eatAcctEventTimeStamp","features":[103]},{"name":"eatAcctInputOctets","features":[103]},{"name":"eatAcctInputPackets","features":[103]},{"name":"eatAcctInterimInterval","features":[103]},{"name":"eatAcctLinkCount","features":[103]},{"name":"eatAcctMultiSessionId","features":[103]},{"name":"eatAcctOutputOctets","features":[103]},{"name":"eatAcctOutputPackets","features":[103]},{"name":"eatAcctSessionId","features":[103]},{"name":"eatAcctSessionTime","features":[103]},{"name":"eatAcctStatusType","features":[103]},{"name":"eatAcctTerminateCause","features":[103]},{"name":"eatCallbackId","features":[103]},{"name":"eatCallbackNumber","features":[103]},{"name":"eatCalledStationId","features":[103]},{"name":"eatCallingStationId","features":[103]},{"name":"eatCertificateOID","features":[103]},{"name":"eatCertificateThumbprint","features":[103]},{"name":"eatClass","features":[103]},{"name":"eatClearTextPassword","features":[103]},{"name":"eatConfigurationToken","features":[103]},{"name":"eatConnectInfo","features":[103]},{"name":"eatCredentialsChanged","features":[103]},{"name":"eatEAPConfiguration","features":[103]},{"name":"eatEAPMessage","features":[103]},{"name":"eatEAPTLV","features":[103]},{"name":"eatEMSK","features":[103]},{"name":"eatFastRoamedSession","features":[103]},{"name":"eatFilterId","features":[103]},{"name":"eatFramedAppleTalkLink","features":[103]},{"name":"eatFramedAppleTalkNetwork","features":[103]},{"name":"eatFramedAppleTalkZone","features":[103]},{"name":"eatFramedCompression","features":[103]},{"name":"eatFramedIPAddress","features":[103]},{"name":"eatFramedIPNetmask","features":[103]},{"name":"eatFramedIPXNetwork","features":[103]},{"name":"eatFramedIPv6Pool","features":[103]},{"name":"eatFramedIPv6Prefix","features":[103]},{"name":"eatFramedIPv6Route","features":[103]},{"name":"eatFramedInterfaceId","features":[103]},{"name":"eatFramedMTU","features":[103]},{"name":"eatFramedProtocol","features":[103]},{"name":"eatFramedRoute","features":[103]},{"name":"eatFramedRouting","features":[103]},{"name":"eatIdleTimeout","features":[103]},{"name":"eatInnerEapMethodType","features":[103]},{"name":"eatLoginIPHost","features":[103]},{"name":"eatLoginIPv6Host","features":[103]},{"name":"eatLoginLATGroup","features":[103]},{"name":"eatLoginLATNode","features":[103]},{"name":"eatLoginLATPort","features":[103]},{"name":"eatLoginLATService","features":[103]},{"name":"eatLoginService","features":[103]},{"name":"eatLoginTCPPort","features":[103]},{"name":"eatMD5CHAPChallenge","features":[103]},{"name":"eatMD5CHAPPassword","features":[103]},{"name":"eatMethodId","features":[103]},{"name":"eatMinimum","features":[103]},{"name":"eatNASIPAddress","features":[103]},{"name":"eatNASIPv6Address","features":[103]},{"name":"eatNASIdentifier","features":[103]},{"name":"eatNASPort","features":[103]},{"name":"eatNASPortType","features":[103]},{"name":"eatPEAPEmbeddedEAPTypeId","features":[103]},{"name":"eatPEAPFastRoamedSession","features":[103]},{"name":"eatPasswordRetry","features":[103]},{"name":"eatPeerId","features":[103]},{"name":"eatPortLimit","features":[103]},{"name":"eatPrompt","features":[103]},{"name":"eatProxyState","features":[103]},{"name":"eatQuarantineSoH","features":[103]},{"name":"eatReplyMessage","features":[103]},{"name":"eatReserved","features":[103]},{"name":"eatServerId","features":[103]},{"name":"eatServiceType","features":[103]},{"name":"eatSessionId","features":[103]},{"name":"eatSessionTimeout","features":[103]},{"name":"eatSignature","features":[103]},{"name":"eatState","features":[103]},{"name":"eatTerminationAction","features":[103]},{"name":"eatTunnelClientEndpoint","features":[103]},{"name":"eatTunnelMediumType","features":[103]},{"name":"eatTunnelServerEndpoint","features":[103]},{"name":"eatTunnelType","features":[103]},{"name":"eatUnassigned17","features":[103]},{"name":"eatUnassigned21","features":[103]},{"name":"eatUserName","features":[103]},{"name":"eatUserPassword","features":[103]},{"name":"eatVendorSpecific","features":[103]},{"name":"emptLegacyMethodPropertyFlag","features":[103]},{"name":"emptPropCertifiedMethod","features":[103]},{"name":"emptPropChannelBinding","features":[103]},{"name":"emptPropCipherSuiteNegotiation","features":[103]},{"name":"emptPropConfidentiality","features":[103]},{"name":"emptPropCryptoBinding","features":[103]},{"name":"emptPropDictionaryAttackResistance","features":[103]},{"name":"emptPropFastReconnect","features":[103]},{"name":"emptPropFragmentation","features":[103]},{"name":"emptPropHiddenMethod","features":[103]},{"name":"emptPropIdentityPrivacy","features":[103]},{"name":"emptPropIntegrity","features":[103]},{"name":"emptPropKeyDerivation","features":[103]},{"name":"emptPropKeyStrength1024","features":[103]},{"name":"emptPropKeyStrength128","features":[103]},{"name":"emptPropKeyStrength256","features":[103]},{"name":"emptPropKeyStrength512","features":[103]},{"name":"emptPropKeyStrength64","features":[103]},{"name":"emptPropMachineAuth","features":[103]},{"name":"emptPropMethodChaining","features":[103]},{"name":"emptPropMppeEncryption","features":[103]},{"name":"emptPropMutualAuth","features":[103]},{"name":"emptPropNap","features":[103]},{"name":"emptPropReplayProtection","features":[103]},{"name":"emptPropSessionIndependence","features":[103]},{"name":"emptPropSharedStateEquivalence","features":[103]},{"name":"emptPropStandalone","features":[103]},{"name":"emptPropSupportsConfig","features":[103]},{"name":"emptPropTunnelMethod","features":[103]},{"name":"emptPropUserAuth","features":[103]},{"name":"emptPropVendorSpecific","features":[103]},{"name":"empvtBool","features":[103]},{"name":"empvtDword","features":[103]},{"name":"empvtString","features":[103]},{"name":"raatARAPChallenge","features":[103]},{"name":"raatARAPChallengeResponse","features":[103]},{"name":"raatARAPFeatures","features":[103]},{"name":"raatARAPGuestLogon","features":[103]},{"name":"raatARAPNewPassword","features":[103]},{"name":"raatARAPOldPassword","features":[103]},{"name":"raatARAPPassword","features":[103]},{"name":"raatARAPPasswordChangeReason","features":[103]},{"name":"raatARAPSecurity","features":[103]},{"name":"raatARAPSecurityData","features":[103]},{"name":"raatARAPZoneAccess","features":[103]},{"name":"raatAcctAuthentic","features":[103]},{"name":"raatAcctDelayTime","features":[103]},{"name":"raatAcctEventTimeStamp","features":[103]},{"name":"raatAcctInputOctets","features":[103]},{"name":"raatAcctInputPackets","features":[103]},{"name":"raatAcctInterimInterval","features":[103]},{"name":"raatAcctLinkCount","features":[103]},{"name":"raatAcctMultiSessionId","features":[103]},{"name":"raatAcctOutputOctets","features":[103]},{"name":"raatAcctOutputPackets","features":[103]},{"name":"raatAcctSessionId","features":[103]},{"name":"raatAcctSessionTime","features":[103]},{"name":"raatAcctStatusType","features":[103]},{"name":"raatAcctTerminateCause","features":[103]},{"name":"raatCallbackId","features":[103]},{"name":"raatCallbackNumber","features":[103]},{"name":"raatCalledStationId","features":[103]},{"name":"raatCallingStationId","features":[103]},{"name":"raatCertificateOID","features":[103]},{"name":"raatCertificateThumbprint","features":[103]},{"name":"raatClass","features":[103]},{"name":"raatConfigurationToken","features":[103]},{"name":"raatConnectInfo","features":[103]},{"name":"raatCredentialsChanged","features":[103]},{"name":"raatEAPConfiguration","features":[103]},{"name":"raatEAPMessage","features":[103]},{"name":"raatEAPTLV","features":[103]},{"name":"raatEMSK","features":[103]},{"name":"raatFastRoamedSession","features":[103]},{"name":"raatFilterId","features":[103]},{"name":"raatFramedAppleTalkLink","features":[103]},{"name":"raatFramedAppleTalkNetwork","features":[103]},{"name":"raatFramedAppleTalkZone","features":[103]},{"name":"raatFramedCompression","features":[103]},{"name":"raatFramedIPAddress","features":[103]},{"name":"raatFramedIPNetmask","features":[103]},{"name":"raatFramedIPXNetwork","features":[103]},{"name":"raatFramedIPv6Pool","features":[103]},{"name":"raatFramedIPv6Prefix","features":[103]},{"name":"raatFramedIPv6Route","features":[103]},{"name":"raatFramedInterfaceId","features":[103]},{"name":"raatFramedMTU","features":[103]},{"name":"raatFramedProtocol","features":[103]},{"name":"raatFramedRoute","features":[103]},{"name":"raatFramedRouting","features":[103]},{"name":"raatIdleTimeout","features":[103]},{"name":"raatInnerEAPTypeId","features":[103]},{"name":"raatLoginIPHost","features":[103]},{"name":"raatLoginIPv6Host","features":[103]},{"name":"raatLoginLATGroup","features":[103]},{"name":"raatLoginLATNode","features":[103]},{"name":"raatLoginLATPort","features":[103]},{"name":"raatLoginLATService","features":[103]},{"name":"raatLoginService","features":[103]},{"name":"raatLoginTCPPort","features":[103]},{"name":"raatMD5CHAPChallenge","features":[103]},{"name":"raatMD5CHAPPassword","features":[103]},{"name":"raatMethodId","features":[103]},{"name":"raatMinimum","features":[103]},{"name":"raatNASIPAddress","features":[103]},{"name":"raatNASIPv6Address","features":[103]},{"name":"raatNASIdentifier","features":[103]},{"name":"raatNASPort","features":[103]},{"name":"raatNASPortType","features":[103]},{"name":"raatPEAPEmbeddedEAPTypeId","features":[103]},{"name":"raatPEAPFastRoamedSession","features":[103]},{"name":"raatPasswordRetry","features":[103]},{"name":"raatPeerId","features":[103]},{"name":"raatPortLimit","features":[103]},{"name":"raatPrompt","features":[103]},{"name":"raatProxyState","features":[103]},{"name":"raatReplyMessage","features":[103]},{"name":"raatReserved","features":[103]},{"name":"raatServerId","features":[103]},{"name":"raatServiceType","features":[103]},{"name":"raatSessionId","features":[103]},{"name":"raatSessionTimeout","features":[103]},{"name":"raatSignature","features":[103]},{"name":"raatState","features":[103]},{"name":"raatTerminationAction","features":[103]},{"name":"raatTunnelClientEndpoint","features":[103]},{"name":"raatTunnelMediumType","features":[103]},{"name":"raatTunnelServerEndpoint","features":[103]},{"name":"raatTunnelType","features":[103]},{"name":"raatUnassigned17","features":[103]},{"name":"raatUnassigned21","features":[103]},{"name":"raatUserName","features":[103]},{"name":"raatUserPassword","features":[103]},{"name":"raatVendorSpecific","features":[103]}],"496":[{"name":"CreateAppContainerProfile","features":[1,130]},{"name":"DeleteAppContainerProfile","features":[130]},{"name":"DeriveAppContainerSidFromAppContainerName","features":[1,130]},{"name":"DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName","features":[1,130]},{"name":"GetAppContainerFolderPath","features":[130]},{"name":"GetAppContainerNamedObjectPath","features":[1,130]},{"name":"GetAppContainerRegistryLocation","features":[130,49]},{"name":"IIsolatedAppLauncher","features":[130]},{"name":"IIsolatedProcessLauncher","features":[130]},{"name":"IIsolatedProcessLauncher2","features":[130]},{"name":"IsCrossIsolatedEnvironmentClipboardContent","features":[1,130]},{"name":"IsProcessInIsolatedContainer","features":[1,130]},{"name":"IsProcessInIsolatedWindowsEnvironment","features":[1,130]},{"name":"IsProcessInWDAGContainer","features":[1,130]},{"name":"IsolatedAppLauncher","features":[130]},{"name":"IsolatedAppLauncherTelemetryParameters","features":[1,130]},{"name":"WDAG_CLIPBOARD_TAG","features":[130]}],"497":[{"name":"LicenseKeyAlreadyExists","features":[131]},{"name":"LicenseKeyCorrupted","features":[131]},{"name":"LicenseKeyNotFound","features":[131]},{"name":"LicenseKeyUnprotected","features":[131]},{"name":"LicenseProtectionStatus","features":[131]},{"name":"RegisterLicenseKeyWithExpiration","features":[131]},{"name":"Success","features":[131]},{"name":"ValidateLicenseKeyProtection","features":[1,131]}],"498":[{"name":"ComponentTypeEnforcementClientRp","features":[132]},{"name":"ComponentTypeEnforcementClientSoH","features":[132]},{"name":"CorrelationId","features":[1,132]},{"name":"CountedString","features":[132]},{"name":"ExtendedIsolationState","features":[132]},{"name":"FailureCategory","features":[132]},{"name":"FailureCategoryMapping","features":[1,132]},{"name":"FixupInfo","features":[132]},{"name":"FixupState","features":[132]},{"name":"Ipv4Address","features":[132]},{"name":"Ipv6Address","features":[132]},{"name":"IsolationInfo","features":[1,132]},{"name":"IsolationInfoEx","features":[1,132]},{"name":"IsolationState","features":[132]},{"name":"NapComponentRegistrationInfo","features":[1,132]},{"name":"NapNotifyType","features":[132]},{"name":"NapTracingLevel","features":[132]},{"name":"NetworkSoH","features":[132]},{"name":"PrivateData","features":[132]},{"name":"RemoteConfigurationType","features":[132]},{"name":"ResultCodes","features":[132]},{"name":"SoH","features":[132]},{"name":"SoHAttribute","features":[132]},{"name":"SystemHealthAgentState","features":[132]},{"name":"extendedIsolationStateInfected","features":[132]},{"name":"extendedIsolationStateNoData","features":[132]},{"name":"extendedIsolationStateTransition","features":[132]},{"name":"extendedIsolationStateUnknown","features":[132]},{"name":"failureCategoryClientCommunication","features":[132]},{"name":"failureCategoryClientComponent","features":[132]},{"name":"failureCategoryCount","features":[132]},{"name":"failureCategoryNone","features":[132]},{"name":"failureCategoryOther","features":[132]},{"name":"failureCategoryServerCommunication","features":[132]},{"name":"failureCategoryServerComponent","features":[132]},{"name":"fixupStateCouldNotUpdate","features":[132]},{"name":"fixupStateInProgress","features":[132]},{"name":"fixupStateSuccess","features":[132]},{"name":"freshSoHRequest","features":[132]},{"name":"isolationStateInProbation","features":[132]},{"name":"isolationStateNotRestricted","features":[132]},{"name":"isolationStateRestrictedAccess","features":[132]},{"name":"maxConnectionCountPerEnforcer","features":[132]},{"name":"maxEnforcerCount","features":[132]},{"name":"maxNetworkSoHSize","features":[132]},{"name":"maxPrivateDataSize","features":[132]},{"name":"maxSoHAttributeCount","features":[132]},{"name":"maxSoHAttributeSize","features":[132]},{"name":"maxStringLength","features":[132]},{"name":"maxSystemHealthEntityCount","features":[132]},{"name":"minNetworkSoHSize","features":[132]},{"name":"napNotifyTypeQuarState","features":[132]},{"name":"napNotifyTypeServiceState","features":[132]},{"name":"napNotifyTypeUnknown","features":[132]},{"name":"percentageNotSupported","features":[132]},{"name":"remoteConfigTypeConfigBlob","features":[132]},{"name":"remoteConfigTypeMachine","features":[132]},{"name":"shaFixup","features":[132]},{"name":"tracingLevelAdvanced","features":[132]},{"name":"tracingLevelBasic","features":[132]},{"name":"tracingLevelDebug","features":[132]},{"name":"tracingLevelUndefined","features":[132]}],"500":[{"name":"CAT_MEMBERINFO","features":[125]},{"name":"CAT_MEMBERINFO2","features":[125]},{"name":"CAT_MEMBERINFO2_OBJID","features":[125]},{"name":"CAT_MEMBERINFO2_STRUCT","features":[125]},{"name":"CAT_MEMBERINFO_OBJID","features":[125]},{"name":"CAT_MEMBERINFO_STRUCT","features":[125]},{"name":"CAT_NAMEVALUE","features":[68,125]},{"name":"CAT_NAMEVALUE_OBJID","features":[125]},{"name":"CAT_NAMEVALUE_STRUCT","features":[125]},{"name":"CCPI_RESULT_ALLOW","features":[125]},{"name":"CCPI_RESULT_AUDIT","features":[125]},{"name":"CCPI_RESULT_DENY","features":[125]},{"name":"CERT_CONFIDENCE_AUTHIDEXT","features":[125]},{"name":"CERT_CONFIDENCE_HIGHEST","features":[125]},{"name":"CERT_CONFIDENCE_HYGIENE","features":[125]},{"name":"CERT_CONFIDENCE_SIG","features":[125]},{"name":"CERT_CONFIDENCE_TIME","features":[125]},{"name":"CERT_CONFIDENCE_TIMENEST","features":[125]},{"name":"CONFIG_CI_ACTION_VERIFY","features":[125]},{"name":"CONFIG_CI_PROV_INFO","features":[1,68,125]},{"name":"CONFIG_CI_PROV_INFO_RESULT","features":[1,125]},{"name":"CONFIG_CI_PROV_INFO_RESULT2","features":[1,125]},{"name":"CPD_CHOICE_SIP","features":[125]},{"name":"CPD_RETURN_LOWER_QUALITY_CHAINS","features":[125]},{"name":"CPD_REVOCATION_CHECK_CHAIN","features":[125]},{"name":"CPD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[125]},{"name":"CPD_REVOCATION_CHECK_END_CERT","features":[125]},{"name":"CPD_REVOCATION_CHECK_NONE","features":[125]},{"name":"CPD_RFC3161v21","features":[125]},{"name":"CPD_UISTATE_MODE_ALLOW","features":[125]},{"name":"CPD_UISTATE_MODE_BLOCK","features":[125]},{"name":"CPD_UISTATE_MODE_MASK","features":[125]},{"name":"CPD_UISTATE_MODE_PROMPT","features":[125]},{"name":"CPD_USE_NT5_CHAIN_FLAG","features":[125]},{"name":"CRYPT_PROVIDER_CERT","features":[1,68,125]},{"name":"CRYPT_PROVIDER_DATA","features":[1,121,122,125]},{"name":"CRYPT_PROVIDER_DEFUSAGE","features":[125]},{"name":"CRYPT_PROVIDER_FUNCTIONS","features":[1,121,122,125]},{"name":"CRYPT_PROVIDER_PRIVDATA","features":[125]},{"name":"CRYPT_PROVIDER_REGDEFUSAGE","features":[125]},{"name":"CRYPT_PROVIDER_SGNR","features":[1,68,125]},{"name":"CRYPT_PROVIDER_SIGSTATE","features":[1,68,125]},{"name":"CRYPT_PROVUI_DATA","features":[125]},{"name":"CRYPT_PROVUI_FUNCS","features":[1,121,122,125]},{"name":"CRYPT_REGISTER_ACTIONID","features":[125]},{"name":"CRYPT_TRUST_REG_ENTRY","features":[125]},{"name":"DRIVER_ACTION_VERIFY","features":[125]},{"name":"DRIVER_CLEANUPPOLICY_FUNCTION","features":[125]},{"name":"DRIVER_FINALPOLPROV_FUNCTION","features":[125]},{"name":"DRIVER_INITPROV_FUNCTION","features":[125]},{"name":"DRIVER_VER_INFO","features":[1,68,125]},{"name":"DRIVER_VER_MAJORMINOR","features":[125]},{"name":"DWACTION_ALLOCANDFILL","features":[125]},{"name":"DWACTION_FREE","features":[125]},{"name":"GENERIC_CHAIN_CERTTRUST_FUNCTION","features":[125]},{"name":"GENERIC_CHAIN_FINALPOLICY_FUNCTION","features":[125]},{"name":"HTTPSPROV_ACTION","features":[125]},{"name":"HTTPS_CERTTRUST_FUNCTION","features":[125]},{"name":"HTTPS_CHKCERT_FUNCTION","features":[125]},{"name":"HTTPS_FINALPOLICY_FUNCTION","features":[125]},{"name":"INTENT_TO_SEAL_ATTRIBUTE","features":[1,125]},{"name":"INTENT_TO_SEAL_ATTRIBUTE_STRUCT","features":[125]},{"name":"OFFICESIGN_ACTION_VERIFY","features":[125]},{"name":"OFFICE_CLEANUPPOLICY_FUNCTION","features":[125]},{"name":"OFFICE_INITPROV_FUNCTION","features":[125]},{"name":"OFFICE_POLICY_PROVIDER_DLL_NAME","features":[125]},{"name":"OpenPersonalTrustDBDialog","features":[1,125]},{"name":"OpenPersonalTrustDBDialogEx","features":[1,125]},{"name":"PFN_ALLOCANDFILLDEFUSAGE","features":[1,125]},{"name":"PFN_CPD_ADD_CERT","features":[1,121,122,125]},{"name":"PFN_CPD_ADD_PRIVDATA","features":[1,121,122,125]},{"name":"PFN_CPD_ADD_SGNR","features":[1,121,122,125]},{"name":"PFN_CPD_ADD_STORE","features":[1,121,122,125]},{"name":"PFN_CPD_MEM_ALLOC","features":[125]},{"name":"PFN_CPD_MEM_FREE","features":[125]},{"name":"PFN_FREEDEFUSAGE","features":[1,125]},{"name":"PFN_PROVIDER_CERTCHKPOLICY_CALL","features":[1,121,122,125]},{"name":"PFN_PROVIDER_CERTTRUST_CALL","features":[1,121,122,125]},{"name":"PFN_PROVIDER_CLEANUP_CALL","features":[1,121,122,125]},{"name":"PFN_PROVIDER_FINALPOLICY_CALL","features":[1,121,122,125]},{"name":"PFN_PROVIDER_INIT_CALL","features":[1,121,122,125]},{"name":"PFN_PROVIDER_OBJTRUST_CALL","features":[1,121,122,125]},{"name":"PFN_PROVIDER_SIGTRUST_CALL","features":[1,121,122,125]},{"name":"PFN_PROVIDER_TESTFINALPOLICY_CALL","features":[1,121,122,125]},{"name":"PFN_PROVUI_CALL","features":[1,121,122,125]},{"name":"PFN_WTD_GENERIC_CHAIN_POLICY_CALLBACK","features":[1,121,122,125]},{"name":"PROVDATA_SIP","features":[1,121,122,125]},{"name":"SEALING_SIGNATURE_ATTRIBUTE","features":[68,125]},{"name":"SEALING_SIGNATURE_ATTRIBUTE_STRUCT","features":[125]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE","features":[68,125]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE_STRUCT","features":[125]},{"name":"SGNR_TYPE_TIMESTAMP","features":[125]},{"name":"SPC_CAB_DATA_OBJID","features":[125]},{"name":"SPC_CAB_DATA_STRUCT","features":[125]},{"name":"SPC_CERT_EXTENSIONS_OBJID","features":[125]},{"name":"SPC_COMMERCIAL_SP_KEY_PURPOSE_OBJID","features":[125]},{"name":"SPC_COMMON_NAME_OBJID","features":[125]},{"name":"SPC_ENCRYPTED_DIGEST_RETRY_COUNT_OBJID","features":[125]},{"name":"SPC_FILE_LINK_CHOICE","features":[125]},{"name":"SPC_FINANCIAL_CRITERIA","features":[1,125]},{"name":"SPC_FINANCIAL_CRITERIA_OBJID","features":[125]},{"name":"SPC_FINANCIAL_CRITERIA_STRUCT","features":[125]},{"name":"SPC_GLUE_RDN_OBJID","features":[125]},{"name":"SPC_IMAGE","features":[68,125]},{"name":"SPC_INDIRECT_DATA_CONTENT","features":[68,125]},{"name":"SPC_INDIRECT_DATA_CONTENT_STRUCT","features":[125]},{"name":"SPC_INDIRECT_DATA_OBJID","features":[125]},{"name":"SPC_INDIVIDUAL_SP_KEY_PURPOSE_OBJID","features":[125]},{"name":"SPC_JAVA_CLASS_DATA_OBJID","features":[125]},{"name":"SPC_JAVA_CLASS_DATA_STRUCT","features":[125]},{"name":"SPC_LINK","features":[68,125]},{"name":"SPC_LINK_OBJID","features":[125]},{"name":"SPC_LINK_STRUCT","features":[125]},{"name":"SPC_MINIMAL_CRITERIA_OBJID","features":[125]},{"name":"SPC_MINIMAL_CRITERIA_STRUCT","features":[125]},{"name":"SPC_MONIKER_LINK_CHOICE","features":[125]},{"name":"SPC_NATURAL_AUTH_PLUGIN_OBJID","features":[125]},{"name":"SPC_PE_IMAGE_DATA","features":[68,125]},{"name":"SPC_PE_IMAGE_DATA_OBJID","features":[125]},{"name":"SPC_PE_IMAGE_DATA_STRUCT","features":[125]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V1_OBJID","features":[125]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V2_OBJID","features":[125]},{"name":"SPC_RAW_FILE_DATA_OBJID","features":[125]},{"name":"SPC_RELAXED_PE_MARKER_CHECK_OBJID","features":[125]},{"name":"SPC_SERIALIZED_OBJECT","features":[68,125]},{"name":"SPC_SIGINFO","features":[125]},{"name":"SPC_SIGINFO_OBJID","features":[125]},{"name":"SPC_SIGINFO_STRUCT","features":[125]},{"name":"SPC_SP_AGENCY_INFO","features":[68,125]},{"name":"SPC_SP_AGENCY_INFO_OBJID","features":[125]},{"name":"SPC_SP_AGENCY_INFO_STRUCT","features":[125]},{"name":"SPC_SP_OPUS_INFO","features":[68,125]},{"name":"SPC_SP_OPUS_INFO_OBJID","features":[125]},{"name":"SPC_SP_OPUS_INFO_STRUCT","features":[125]},{"name":"SPC_STATEMENT_TYPE","features":[125]},{"name":"SPC_STATEMENT_TYPE_OBJID","features":[125]},{"name":"SPC_STATEMENT_TYPE_STRUCT","features":[125]},{"name":"SPC_STRUCTURED_STORAGE_DATA_OBJID","features":[125]},{"name":"SPC_TIME_STAMP_REQUEST_OBJID","features":[125]},{"name":"SPC_URL_LINK_CHOICE","features":[125]},{"name":"SPC_UUID_LENGTH","features":[125]},{"name":"SPC_WINDOWS_HELLO_COMPATIBILITY_OBJID","features":[125]},{"name":"SP_CHKCERT_FUNCTION","features":[125]},{"name":"SP_CLEANUPPOLICY_FUNCTION","features":[125]},{"name":"SP_FINALPOLICY_FUNCTION","features":[125]},{"name":"SP_GENERIC_CERT_INIT_FUNCTION","features":[125]},{"name":"SP_INIT_FUNCTION","features":[125]},{"name":"SP_OBJTRUST_FUNCTION","features":[125]},{"name":"SP_POLICY_PROVIDER_DLL_NAME","features":[125]},{"name":"SP_SIGTRUST_FUNCTION","features":[125]},{"name":"SP_TESTDUMPPOLICY_FUNCTION_TEST","features":[125]},{"name":"TRUSTERROR_MAX_STEPS","features":[125]},{"name":"TRUSTERROR_STEP_CATALOGFILE","features":[125]},{"name":"TRUSTERROR_STEP_CERTSTORE","features":[125]},{"name":"TRUSTERROR_STEP_FILEIO","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_CERTCHKPROV","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_CERTPROV","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_INITPROV","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_OBJPROV","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_POLICYPROV","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_SIGPROV","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_UIPROV","features":[125]},{"name":"TRUSTERROR_STEP_FINAL_WVTINIT","features":[125]},{"name":"TRUSTERROR_STEP_MESSAGE","features":[125]},{"name":"TRUSTERROR_STEP_MSG_CERTCHAIN","features":[125]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGCERT","features":[125]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGINFO","features":[125]},{"name":"TRUSTERROR_STEP_MSG_INNERCNT","features":[125]},{"name":"TRUSTERROR_STEP_MSG_INNERCNTTYPE","features":[125]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCERT","features":[125]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCOUNT","features":[125]},{"name":"TRUSTERROR_STEP_MSG_SIGNERINFO","features":[125]},{"name":"TRUSTERROR_STEP_MSG_STORE","features":[125]},{"name":"TRUSTERROR_STEP_SIP","features":[125]},{"name":"TRUSTERROR_STEP_SIPSUBJINFO","features":[125]},{"name":"TRUSTERROR_STEP_VERIFY_MSGHASH","features":[125]},{"name":"TRUSTERROR_STEP_VERIFY_MSGINDIRECTDATA","features":[125]},{"name":"TRUSTERROR_STEP_WVTPARAMS","features":[125]},{"name":"WINTRUST_ACTION_GENERIC_CERT_VERIFY","features":[125]},{"name":"WINTRUST_ACTION_GENERIC_CHAIN_VERIFY","features":[125]},{"name":"WINTRUST_ACTION_GENERIC_VERIFY_V2","features":[125]},{"name":"WINTRUST_ACTION_TRUSTPROVIDER_TEST","features":[125]},{"name":"WINTRUST_BLOB_INFO","features":[125]},{"name":"WINTRUST_CATALOG_INFO","features":[1,68,125]},{"name":"WINTRUST_CERT_INFO","features":[1,68,125]},{"name":"WINTRUST_CONFIG_REGPATH","features":[125]},{"name":"WINTRUST_DATA","features":[1,68,125]},{"name":"WINTRUST_DATA_PROVIDER_FLAGS","features":[125]},{"name":"WINTRUST_DATA_REVOCATION_CHECKS","features":[125]},{"name":"WINTRUST_DATA_STATE_ACTION","features":[125]},{"name":"WINTRUST_DATA_UICHOICE","features":[125]},{"name":"WINTRUST_DATA_UICONTEXT","features":[125]},{"name":"WINTRUST_DATA_UNION_CHOICE","features":[125]},{"name":"WINTRUST_FILE_INFO","features":[1,125]},{"name":"WINTRUST_GET_DEFAULT_FOR_USAGE_ACTION","features":[125]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_DEFAULT","features":[125]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_VALUE_NAME","features":[125]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_DEFAULT","features":[125]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_VALUE_NAME","features":[125]},{"name":"WINTRUST_POLICY_FLAGS","features":[125]},{"name":"WINTRUST_SGNR_INFO","features":[68,125]},{"name":"WINTRUST_SIGNATURE_SETTINGS","features":[68,125]},{"name":"WINTRUST_SIGNATURE_SETTINGS_FLAGS","features":[125]},{"name":"WIN_CERTIFICATE","features":[125]},{"name":"WIN_CERT_REVISION_1_0","features":[125]},{"name":"WIN_CERT_REVISION_2_0","features":[125]},{"name":"WIN_CERT_TYPE_PKCS_SIGNED_DATA","features":[125]},{"name":"WIN_CERT_TYPE_RESERVED_1","features":[125]},{"name":"WIN_CERT_TYPE_TS_STACK_SIGNED","features":[125]},{"name":"WIN_CERT_TYPE_X509","features":[125]},{"name":"WIN_SPUB_ACTION_NT_ACTIVATE_IMAGE","features":[125]},{"name":"WIN_SPUB_ACTION_PUBLISHED_SOFTWARE","features":[125]},{"name":"WIN_SPUB_ACTION_TRUSTED_PUBLISHER","features":[125]},{"name":"WIN_SPUB_TRUSTED_PUBLISHER_DATA","features":[1,125]},{"name":"WIN_TRUST_ACTDATA_CONTEXT_WITH_SUBJECT","features":[1,125]},{"name":"WIN_TRUST_ACTDATA_SUBJECT_ONLY","features":[125]},{"name":"WIN_TRUST_SUBJECT_FILE","features":[1,125]},{"name":"WIN_TRUST_SUBJECT_FILE_AND_DISPLAY","features":[1,125]},{"name":"WIN_TRUST_SUBJTYPE_CABINET","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_CABINETEX","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASS","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASSEX","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_OLE_STORAGE","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGE","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGEEX","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILE","features":[125]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILEEX","features":[125]},{"name":"WSS_CERTTRUST_SUPPORT","features":[125]},{"name":"WSS_GET_SECONDARY_SIG_COUNT","features":[125]},{"name":"WSS_INPUT_FLAG_MASK","features":[125]},{"name":"WSS_OBJTRUST_SUPPORT","features":[125]},{"name":"WSS_OUTPUT_FLAG_MASK","features":[125]},{"name":"WSS_OUT_FILE_SUPPORTS_SEAL","features":[125]},{"name":"WSS_OUT_HAS_SEALING_INTENT","features":[125]},{"name":"WSS_OUT_SEALING_STATUS_VERIFIED","features":[125]},{"name":"WSS_SIGTRUST_SUPPORT","features":[125]},{"name":"WSS_VERIFY_SEALING","features":[125]},{"name":"WSS_VERIFY_SPECIFIC","features":[125]},{"name":"WTCI_DONT_OPEN_STORES","features":[125]},{"name":"WTCI_OPEN_ONLY_ROOT","features":[125]},{"name":"WTCI_USE_LOCAL_MACHINE","features":[125]},{"name":"WTD_CACHE_ONLY_URL_RETRIEVAL","features":[125]},{"name":"WTD_CHOICE_BLOB","features":[125]},{"name":"WTD_CHOICE_CATALOG","features":[125]},{"name":"WTD_CHOICE_CERT","features":[125]},{"name":"WTD_CHOICE_FILE","features":[125]},{"name":"WTD_CHOICE_SIGNER","features":[125]},{"name":"WTD_CODE_INTEGRITY_DRIVER_MODE","features":[125]},{"name":"WTD_DISABLE_MD2_MD4","features":[125]},{"name":"WTD_GENERIC_CHAIN_POLICY_CREATE_INFO","features":[68,125]},{"name":"WTD_GENERIC_CHAIN_POLICY_DATA","features":[1,121,122,125]},{"name":"WTD_GENERIC_CHAIN_POLICY_SIGNER_INFO","features":[1,68,125]},{"name":"WTD_HASH_ONLY_FLAG","features":[125]},{"name":"WTD_LIFETIME_SIGNING_FLAG","features":[125]},{"name":"WTD_MOTW","features":[125]},{"name":"WTD_NO_IE4_CHAIN_FLAG","features":[125]},{"name":"WTD_NO_POLICY_USAGE_FLAG","features":[125]},{"name":"WTD_PROV_FLAGS_MASK","features":[125]},{"name":"WTD_REVOCATION_CHECK_CHAIN","features":[125]},{"name":"WTD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[125]},{"name":"WTD_REVOCATION_CHECK_END_CERT","features":[125]},{"name":"WTD_REVOCATION_CHECK_NONE","features":[125]},{"name":"WTD_REVOKE_NONE","features":[125]},{"name":"WTD_REVOKE_WHOLECHAIN","features":[125]},{"name":"WTD_SAFER_FLAG","features":[125]},{"name":"WTD_STATEACTION_AUTO_CACHE","features":[125]},{"name":"WTD_STATEACTION_AUTO_CACHE_FLUSH","features":[125]},{"name":"WTD_STATEACTION_CLOSE","features":[125]},{"name":"WTD_STATEACTION_IGNORE","features":[125]},{"name":"WTD_STATEACTION_VERIFY","features":[125]},{"name":"WTD_UICONTEXT_EXECUTE","features":[125]},{"name":"WTD_UICONTEXT_INSTALL","features":[125]},{"name":"WTD_UI_ALL","features":[125]},{"name":"WTD_UI_NOBAD","features":[125]},{"name":"WTD_UI_NOGOOD","features":[125]},{"name":"WTD_UI_NONE","features":[125]},{"name":"WTD_USE_DEFAULT_OSVER_CHECK","features":[125]},{"name":"WTD_USE_IE4_TRUST_FLAG","features":[125]},{"name":"WTHelperCertCheckValidSignature","features":[1,121,122,125]},{"name":"WTHelperCertIsSelfSigned","features":[1,68,125]},{"name":"WTHelperGetProvCertFromChain","features":[1,68,125]},{"name":"WTHelperGetProvPrivateDataFromChain","features":[1,121,122,125]},{"name":"WTHelperGetProvSignerFromChain","features":[1,121,122,125]},{"name":"WTHelperProvDataFromStateData","features":[1,121,122,125]},{"name":"WTPF_ALLOWONLYPERTRUST","features":[125]},{"name":"WTPF_IGNOREEXPIRATION","features":[125]},{"name":"WTPF_IGNOREREVOCATIONONTS","features":[125]},{"name":"WTPF_IGNOREREVOKATION","features":[125]},{"name":"WTPF_OFFLINEOKNBU_COM","features":[125]},{"name":"WTPF_OFFLINEOKNBU_IND","features":[125]},{"name":"WTPF_OFFLINEOK_COM","features":[125]},{"name":"WTPF_OFFLINEOK_IND","features":[125]},{"name":"WTPF_TESTCANBEVALID","features":[125]},{"name":"WTPF_TRUSTTEST","features":[125]},{"name":"WTPF_VERIFY_V1_OFF","features":[125]},{"name":"WT_ADD_ACTION_ID_RET_RESULT_FLAG","features":[125]},{"name":"WT_CURRENT_VERSION","features":[125]},{"name":"WT_PROVIDER_CERTTRUST_FUNCTION","features":[125]},{"name":"WT_PROVIDER_DLL_NAME","features":[125]},{"name":"WT_TRUSTDBDIALOG_NO_UI_FLAG","features":[125]},{"name":"WT_TRUSTDBDIALOG_ONLY_PUB_TAB_FLAG","features":[125]},{"name":"WT_TRUSTDBDIALOG_WRITE_IEAK_STORE_FLAG","features":[125]},{"name":"WT_TRUSTDBDIALOG_WRITE_LEGACY_REG_FLAG","features":[125]},{"name":"WinVerifyTrust","features":[1,125]},{"name":"WinVerifyTrustEx","features":[1,68,125]},{"name":"WintrustAddActionID","features":[1,125]},{"name":"WintrustAddDefaultForUsage","features":[1,125]},{"name":"WintrustGetDefaultForUsage","features":[1,125]},{"name":"WintrustGetRegPolicyFlags","features":[125]},{"name":"WintrustLoadFunctionPointers","features":[1,121,122,125]},{"name":"WintrustRemoveActionID","features":[1,125]},{"name":"WintrustSetDefaultIncludePEPageHashes","features":[1,125]},{"name":"WintrustSetRegPolicyFlags","features":[1,125]},{"name":"szOID_ENHANCED_HASH","features":[125]},{"name":"szOID_INTENT_TO_SEAL","features":[125]},{"name":"szOID_NESTED_SIGNATURE","features":[125]},{"name":"szOID_PKCS_9_SEQUENCE_NUMBER","features":[125]},{"name":"szOID_SEALING_SIGNATURE","features":[125]},{"name":"szOID_SEALING_TIMESTAMP","features":[125]},{"name":"szOID_TRUSTED_CLIENT_AUTH_CA_LIST","features":[125]},{"name":"szOID_TRUSTED_CODESIGNING_CA_LIST","features":[125]},{"name":"szOID_TRUSTED_SERVER_AUTH_CA_LIST","features":[125]}],"501":[{"name":"PFNMSGECALLBACK","features":[1,133]},{"name":"PWLX_ASSIGN_SHELL_PROTECTION","features":[1,133]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY","features":[1,133]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY_EX","features":[1,133]},{"name":"PWLX_CLOSE_USER_DESKTOP","features":[1,133,134]},{"name":"PWLX_CREATE_USER_DESKTOP","features":[1,133,134]},{"name":"PWLX_DIALOG_BOX","features":[1,133,50]},{"name":"PWLX_DIALOG_BOX_INDIRECT","features":[1,133,50]},{"name":"PWLX_DIALOG_BOX_INDIRECT_PARAM","features":[1,133,50]},{"name":"PWLX_DIALOG_BOX_PARAM","features":[1,133,50]},{"name":"PWLX_DISCONNECT","features":[1,133]},{"name":"PWLX_GET_OPTION","features":[1,133]},{"name":"PWLX_GET_SOURCE_DESKTOP","features":[1,133,134]},{"name":"PWLX_MESSAGE_BOX","features":[1,133]},{"name":"PWLX_QUERY_CLIENT_CREDENTIALS","features":[1,133]},{"name":"PWLX_QUERY_CONSOLESWITCH_CREDENTIALS","features":[1,133]},{"name":"PWLX_QUERY_IC_CREDENTIALS","features":[1,133]},{"name":"PWLX_QUERY_TERMINAL_SERVICES_DATA","features":[1,133]},{"name":"PWLX_QUERY_TS_LOGON_CREDENTIALS","features":[1,133]},{"name":"PWLX_SAS_NOTIFY","features":[1,133]},{"name":"PWLX_SET_CONTEXT_POINTER","features":[1,133]},{"name":"PWLX_SET_OPTION","features":[1,133]},{"name":"PWLX_SET_RETURN_DESKTOP","features":[1,133,134]},{"name":"PWLX_SET_TIMEOUT","features":[1,133]},{"name":"PWLX_SWITCH_DESKTOP_TO_USER","features":[1,133]},{"name":"PWLX_SWITCH_DESKTOP_TO_WINLOGON","features":[1,133]},{"name":"PWLX_USE_CTRL_ALT_DEL","features":[1,133]},{"name":"PWLX_WIN31_MIGRATE","features":[1,133]},{"name":"STATUSMSG_OPTION_NOANIMATION","features":[133]},{"name":"STATUSMSG_OPTION_SETFOREGROUND","features":[133]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V1_0","features":[1,133]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V2_0","features":[1,133]},{"name":"WLX_CONSOLESWITCHCREDENTIAL_TYPE_V1_0","features":[133]},{"name":"WLX_CONSOLESWITCH_CREDENTIALS_INFO_V1_0","features":[1,133]},{"name":"WLX_CREATE_INSTANCE_ONLY","features":[133]},{"name":"WLX_CREATE_USER","features":[133]},{"name":"WLX_CREDENTIAL_TYPE_V1_0","features":[133]},{"name":"WLX_CREDENTIAL_TYPE_V2_0","features":[133]},{"name":"WLX_CURRENT_VERSION","features":[133]},{"name":"WLX_DESKTOP","features":[133,134]},{"name":"WLX_DESKTOP_HANDLE","features":[133]},{"name":"WLX_DESKTOP_NAME","features":[133]},{"name":"WLX_DIRECTORY_LENGTH","features":[133]},{"name":"WLX_DISPATCH_VERSION_1_0","features":[1,133,50]},{"name":"WLX_DISPATCH_VERSION_1_1","features":[1,133,134,50]},{"name":"WLX_DISPATCH_VERSION_1_2","features":[1,133,134,50]},{"name":"WLX_DISPATCH_VERSION_1_3","features":[1,133,134,50]},{"name":"WLX_DISPATCH_VERSION_1_4","features":[1,133,134,50]},{"name":"WLX_DLG_INPUT_TIMEOUT","features":[133]},{"name":"WLX_DLG_SAS","features":[133]},{"name":"WLX_DLG_SCREEN_SAVER_TIMEOUT","features":[133]},{"name":"WLX_DLG_USER_LOGOFF","features":[133]},{"name":"WLX_LOGON_OPT_NO_PROFILE","features":[133]},{"name":"WLX_MPR_NOTIFY_INFO","features":[133]},{"name":"WLX_NOTIFICATION_INFO","features":[1,133,134]},{"name":"WLX_OPTION_CONTEXT_POINTER","features":[133]},{"name":"WLX_OPTION_DISPATCH_TABLE_SIZE","features":[133]},{"name":"WLX_OPTION_FORCE_LOGOFF_TIME","features":[133]},{"name":"WLX_OPTION_IGNORE_AUTO_LOGON","features":[133]},{"name":"WLX_OPTION_NO_SWITCH_ON_SAS","features":[133]},{"name":"WLX_OPTION_SMART_CARD_INFO","features":[133]},{"name":"WLX_OPTION_SMART_CARD_PRESENT","features":[133]},{"name":"WLX_OPTION_USE_CTRL_ALT_DEL","features":[133]},{"name":"WLX_OPTION_USE_SMART_CARD","features":[133]},{"name":"WLX_PROFILE_TYPE_V1_0","features":[133]},{"name":"WLX_PROFILE_TYPE_V2_0","features":[133]},{"name":"WLX_PROFILE_V1_0","features":[133]},{"name":"WLX_PROFILE_V2_0","features":[133]},{"name":"WLX_SAS_ACTION_DELAYED_FORCE_LOGOFF","features":[133]},{"name":"WLX_SAS_ACTION_FORCE_LOGOFF","features":[133]},{"name":"WLX_SAS_ACTION_LOCK_WKSTA","features":[133]},{"name":"WLX_SAS_ACTION_LOGOFF","features":[133]},{"name":"WLX_SAS_ACTION_LOGON","features":[133]},{"name":"WLX_SAS_ACTION_NONE","features":[133]},{"name":"WLX_SAS_ACTION_PWD_CHANGED","features":[133]},{"name":"WLX_SAS_ACTION_RECONNECTED","features":[133]},{"name":"WLX_SAS_ACTION_SHUTDOWN","features":[133]},{"name":"WLX_SAS_ACTION_SHUTDOWN_HIBERNATE","features":[133]},{"name":"WLX_SAS_ACTION_SHUTDOWN_POWER_OFF","features":[133]},{"name":"WLX_SAS_ACTION_SHUTDOWN_REBOOT","features":[133]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP","features":[133]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP2","features":[133]},{"name":"WLX_SAS_ACTION_SWITCH_CONSOLE","features":[133]},{"name":"WLX_SAS_ACTION_TASKLIST","features":[133]},{"name":"WLX_SAS_ACTION_UNLOCK_WKSTA","features":[133]},{"name":"WLX_SAS_TYPE_AUTHENTICATED","features":[133]},{"name":"WLX_SAS_TYPE_CTRL_ALT_DEL","features":[133]},{"name":"WLX_SAS_TYPE_MAX_MSFT_VALUE","features":[133]},{"name":"WLX_SAS_TYPE_SCRNSVR_ACTIVITY","features":[133]},{"name":"WLX_SAS_TYPE_SCRNSVR_TIMEOUT","features":[133]},{"name":"WLX_SAS_TYPE_SC_FIRST_READER_ARRIVED","features":[133]},{"name":"WLX_SAS_TYPE_SC_INSERT","features":[133]},{"name":"WLX_SAS_TYPE_SC_LAST_READER_REMOVED","features":[133]},{"name":"WLX_SAS_TYPE_SC_REMOVE","features":[133]},{"name":"WLX_SAS_TYPE_SWITCHUSER","features":[133]},{"name":"WLX_SAS_TYPE_TIMEOUT","features":[133]},{"name":"WLX_SAS_TYPE_USER_LOGOFF","features":[133]},{"name":"WLX_SC_NOTIFICATION_INFO","features":[133]},{"name":"WLX_SHUTDOWN_TYPE","features":[133]},{"name":"WLX_TERMINAL_SERVICES_DATA","features":[133]},{"name":"WLX_VERSION_1_0","features":[133]},{"name":"WLX_VERSION_1_1","features":[133]},{"name":"WLX_VERSION_1_2","features":[133]},{"name":"WLX_VERSION_1_3","features":[133]},{"name":"WLX_VERSION_1_4","features":[133]},{"name":"WLX_WM_SAS","features":[133]}],"502":[{"name":"CB_MAX_CABINET_NAME","features":[135]},{"name":"CB_MAX_CAB_PATH","features":[135]},{"name":"CB_MAX_DISK","features":[135]},{"name":"CB_MAX_DISK_NAME","features":[135]},{"name":"CB_MAX_FILENAME","features":[135]},{"name":"CCAB","features":[135]},{"name":"ERF","features":[1,135]},{"name":"FCIAddFile","features":[1,135]},{"name":"FCICreate","features":[1,135]},{"name":"FCIDestroy","features":[1,135]},{"name":"FCIERROR","features":[135]},{"name":"FCIERR_ALLOC_FAIL","features":[135]},{"name":"FCIERR_BAD_COMPR_TYPE","features":[135]},{"name":"FCIERR_CAB_FILE","features":[135]},{"name":"FCIERR_CAB_FORMAT_LIMIT","features":[135]},{"name":"FCIERR_MCI_FAIL","features":[135]},{"name":"FCIERR_NONE","features":[135]},{"name":"FCIERR_OPEN_SRC","features":[135]},{"name":"FCIERR_READ_SRC","features":[135]},{"name":"FCIERR_TEMP_FILE","features":[135]},{"name":"FCIERR_USER_ABORT","features":[135]},{"name":"FCIFlushCabinet","features":[1,135]},{"name":"FCIFlushFolder","features":[1,135]},{"name":"FDICABINETINFO","features":[1,135]},{"name":"FDICREATE_CPU_TYPE","features":[135]},{"name":"FDICopy","features":[1,135]},{"name":"FDICreate","features":[1,135]},{"name":"FDIDECRYPT","features":[1,135]},{"name":"FDIDECRYPTTYPE","features":[135]},{"name":"FDIDestroy","features":[1,135]},{"name":"FDIERROR","features":[135]},{"name":"FDIERROR_ALLOC_FAIL","features":[135]},{"name":"FDIERROR_BAD_COMPR_TYPE","features":[135]},{"name":"FDIERROR_CABINET_NOT_FOUND","features":[135]},{"name":"FDIERROR_CORRUPT_CABINET","features":[135]},{"name":"FDIERROR_EOF","features":[135]},{"name":"FDIERROR_MDI_FAIL","features":[135]},{"name":"FDIERROR_NONE","features":[135]},{"name":"FDIERROR_NOT_A_CABINET","features":[135]},{"name":"FDIERROR_RESERVE_MISMATCH","features":[135]},{"name":"FDIERROR_TARGET_FILE","features":[135]},{"name":"FDIERROR_UNKNOWN_CABINET_VERSION","features":[135]},{"name":"FDIERROR_USER_ABORT","features":[135]},{"name":"FDIERROR_WRONG_CABINET","features":[135]},{"name":"FDIIsCabinet","features":[1,135]},{"name":"FDINOTIFICATION","features":[135]},{"name":"FDINOTIFICATIONTYPE","features":[135]},{"name":"FDISPILLFILE","features":[135]},{"name":"FDISPILLFILE","features":[135]},{"name":"FDITruncateCabinet","features":[1,135]},{"name":"INCLUDED_FCI","features":[135]},{"name":"INCLUDED_FDI","features":[135]},{"name":"INCLUDED_TYPES_FCI_FDI","features":[135]},{"name":"PFNALLOC","features":[135]},{"name":"PFNCLOSE","features":[135]},{"name":"PFNFCIALLOC","features":[135]},{"name":"PFNFCICLOSE","features":[135]},{"name":"PFNFCIDELETE","features":[135]},{"name":"PFNFCIFILEPLACED","features":[1,135]},{"name":"PFNFCIFREE","features":[135]},{"name":"PFNFCIGETNEXTCABINET","features":[1,135]},{"name":"PFNFCIGETOPENINFO","features":[135]},{"name":"PFNFCIGETTEMPFILE","features":[1,135]},{"name":"PFNFCIOPEN","features":[135]},{"name":"PFNFCIREAD","features":[135]},{"name":"PFNFCISEEK","features":[135]},{"name":"PFNFCISTATUS","features":[135]},{"name":"PFNFCIWRITE","features":[135]},{"name":"PFNFDIDECRYPT","features":[1,135]},{"name":"PFNFDINOTIFY","features":[135]},{"name":"PFNFREE","features":[135]},{"name":"PFNOPEN","features":[135]},{"name":"PFNREAD","features":[135]},{"name":"PFNSEEK","features":[135]},{"name":"PFNWRITE","features":[135]},{"name":"_A_EXEC","features":[135]},{"name":"_A_NAME_IS_UTF","features":[135]},{"name":"cpu80286","features":[135]},{"name":"cpu80386","features":[135]},{"name":"cpuUNKNOWN","features":[135]},{"name":"fdidtDECRYPT","features":[135]},{"name":"fdidtNEW_CABINET","features":[135]},{"name":"fdidtNEW_FOLDER","features":[135]},{"name":"fdintCABINET_INFO","features":[135]},{"name":"fdintCLOSE_FILE_INFO","features":[135]},{"name":"fdintCOPY_FILE","features":[135]},{"name":"fdintENUMERATE","features":[135]},{"name":"fdintNEXT_CABINET","features":[135]},{"name":"fdintPARTIAL_FILE","features":[135]},{"name":"statusCabinet","features":[135]},{"name":"statusFile","features":[135]},{"name":"statusFolder","features":[135]},{"name":"tcompBAD","features":[135]},{"name":"tcompLZX_WINDOW_HI","features":[135]},{"name":"tcompLZX_WINDOW_LO","features":[135]},{"name":"tcompMASK_LZX_WINDOW","features":[135]},{"name":"tcompMASK_QUANTUM_LEVEL","features":[135]},{"name":"tcompMASK_QUANTUM_MEM","features":[135]},{"name":"tcompMASK_RESERVED","features":[135]},{"name":"tcompMASK_TYPE","features":[135]},{"name":"tcompQUANTUM_LEVEL_HI","features":[135]},{"name":"tcompQUANTUM_LEVEL_LO","features":[135]},{"name":"tcompQUANTUM_MEM_HI","features":[135]},{"name":"tcompQUANTUM_MEM_LO","features":[135]},{"name":"tcompSHIFT_LZX_WINDOW","features":[135]},{"name":"tcompSHIFT_QUANTUM_LEVEL","features":[135]},{"name":"tcompSHIFT_QUANTUM_MEM","features":[135]},{"name":"tcompTYPE_LZX","features":[135]},{"name":"tcompTYPE_MSZIP","features":[135]},{"name":"tcompTYPE_NONE","features":[135]},{"name":"tcompTYPE_QUANTUM","features":[135]}],"503":[{"name":"CF_CALLBACK","features":[136,137]},{"name":"CF_CALLBACK_CANCEL_FLAGS","features":[136]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_ABORTED","features":[136]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_TIMEOUT","features":[136]},{"name":"CF_CALLBACK_CANCEL_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAGS","features":[136]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_DELETED","features":[136]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAGS","features":[136]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_BACKGROUND","features":[136]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_DEHYDRATED","features":[136]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_DEHYDRATE_FLAGS","features":[136]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_BACKGROUND","features":[136]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_DEHYDRATION_REASON","features":[136]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_NONE","features":[136]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_INACTIVITY","features":[136]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_LOW_SPACE","features":[136]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_OS_UPGRADE","features":[136]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_USER_MANUAL","features":[136]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAGS","features":[136]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_DELETE_FLAGS","features":[136]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_DIRECTORY","features":[136]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_UNDELETE","features":[136]},{"name":"CF_CALLBACK_DELETE_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_FETCH_DATA_FLAGS","features":[136]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_EXPLICIT_HYDRATION","features":[136]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_RECOVERY","features":[136]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAGS","features":[136]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_INFO","features":[136,137]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAGS","features":[136]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNKNOWN","features":[136]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNSUPPORTED","features":[136]},{"name":"CF_CALLBACK_PARAMETERS","features":[136]},{"name":"CF_CALLBACK_REGISTRATION","features":[136,137]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAGS","features":[136]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_RENAME_FLAGS","features":[136]},{"name":"CF_CALLBACK_RENAME_FLAG_IS_DIRECTORY","features":[136]},{"name":"CF_CALLBACK_RENAME_FLAG_NONE","features":[136]},{"name":"CF_CALLBACK_RENAME_FLAG_SOURCE_IN_SCOPE","features":[136]},{"name":"CF_CALLBACK_RENAME_FLAG_TARGET_IN_SCOPE","features":[136]},{"name":"CF_CALLBACK_TYPE","features":[136]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_DATA","features":[136]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_PLACEHOLDERS","features":[136]},{"name":"CF_CALLBACK_TYPE_FETCH_DATA","features":[136]},{"name":"CF_CALLBACK_TYPE_FETCH_PLACEHOLDERS","features":[136]},{"name":"CF_CALLBACK_TYPE_NONE","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE_COMPLETION","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE_COMPLETION","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_CLOSE_COMPLETION","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_OPEN_COMPLETION","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME","features":[136]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME_COMPLETION","features":[136]},{"name":"CF_CALLBACK_TYPE_VALIDATE_DATA","features":[136]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAGS","features":[136]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_EXPLICIT_HYDRATION","features":[136]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_NONE","features":[136]},{"name":"CF_CONNECTION_KEY","features":[136]},{"name":"CF_CONNECT_FLAGS","features":[136]},{"name":"CF_CONNECT_FLAG_BLOCK_SELF_IMPLICIT_HYDRATION","features":[136]},{"name":"CF_CONNECT_FLAG_NONE","features":[136]},{"name":"CF_CONNECT_FLAG_REQUIRE_FULL_FILE_PATH","features":[136]},{"name":"CF_CONNECT_FLAG_REQUIRE_PROCESS_INFO","features":[136]},{"name":"CF_CONVERT_FLAGS","features":[136]},{"name":"CF_CONVERT_FLAG_ALWAYS_FULL","features":[136]},{"name":"CF_CONVERT_FLAG_DEHYDRATE","features":[136]},{"name":"CF_CONVERT_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[136]},{"name":"CF_CONVERT_FLAG_FORCE_CONVERT_TO_CLOUD_FILE","features":[136]},{"name":"CF_CONVERT_FLAG_MARK_IN_SYNC","features":[136]},{"name":"CF_CONVERT_FLAG_NONE","features":[136]},{"name":"CF_CREATE_FLAGS","features":[136]},{"name":"CF_CREATE_FLAG_NONE","features":[136]},{"name":"CF_CREATE_FLAG_STOP_ON_ERROR","features":[136]},{"name":"CF_DEHYDRATE_FLAGS","features":[136]},{"name":"CF_DEHYDRATE_FLAG_BACKGROUND","features":[136]},{"name":"CF_DEHYDRATE_FLAG_NONE","features":[136]},{"name":"CF_FILE_RANGE","features":[136]},{"name":"CF_FS_METADATA","features":[136,21]},{"name":"CF_HARDLINK_POLICY","features":[136]},{"name":"CF_HARDLINK_POLICY_ALLOWED","features":[136]},{"name":"CF_HARDLINK_POLICY_NONE","features":[136]},{"name":"CF_HYDRATE_FLAGS","features":[136]},{"name":"CF_HYDRATE_FLAG_NONE","features":[136]},{"name":"CF_HYDRATION_POLICY","features":[136]},{"name":"CF_HYDRATION_POLICY_ALWAYS_FULL","features":[136]},{"name":"CF_HYDRATION_POLICY_FULL","features":[136]},{"name":"CF_HYDRATION_POLICY_MODIFIER","features":[136]},{"name":"CF_HYDRATION_POLICY_MODIFIER_ALLOW_FULL_RESTART_HYDRATION","features":[136]},{"name":"CF_HYDRATION_POLICY_MODIFIER_AUTO_DEHYDRATION_ALLOWED","features":[136]},{"name":"CF_HYDRATION_POLICY_MODIFIER_NONE","features":[136]},{"name":"CF_HYDRATION_POLICY_MODIFIER_STREAMING_ALLOWED","features":[136]},{"name":"CF_HYDRATION_POLICY_MODIFIER_VALIDATION_REQUIRED","features":[136]},{"name":"CF_HYDRATION_POLICY_PARTIAL","features":[136]},{"name":"CF_HYDRATION_POLICY_PRIMARY","features":[136]},{"name":"CF_HYDRATION_POLICY_PROGRESSIVE","features":[136]},{"name":"CF_INSYNC_POLICY","features":[136]},{"name":"CF_INSYNC_POLICY_NONE","features":[136]},{"name":"CF_INSYNC_POLICY_PRESERVE_INSYNC_FOR_SYNC_ENGINE","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_ALL","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_ALL","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_CREATION_TIME","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_HIDDEN_ATTRIBUTE","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_LAST_WRITE_TIME","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_READONLY_ATTRIBUTE","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_SYSTEM_ATTRIBUTE","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_ALL","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_CREATION_TIME","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_HIDDEN_ATTRIBUTE","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_LAST_WRITE_TIME","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_READONLY_ATTRIBUTE","features":[136]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_SYSTEM_ATTRIBUTE","features":[136]},{"name":"CF_IN_SYNC_STATE","features":[136]},{"name":"CF_IN_SYNC_STATE_IN_SYNC","features":[136]},{"name":"CF_IN_SYNC_STATE_NOT_IN_SYNC","features":[136]},{"name":"CF_MAX_PRIORITY_HINT","features":[136]},{"name":"CF_MAX_PROVIDER_NAME_LENGTH","features":[136]},{"name":"CF_MAX_PROVIDER_VERSION_LENGTH","features":[136]},{"name":"CF_OPEN_FILE_FLAGS","features":[136]},{"name":"CF_OPEN_FILE_FLAG_DELETE_ACCESS","features":[136]},{"name":"CF_OPEN_FILE_FLAG_EXCLUSIVE","features":[136]},{"name":"CF_OPEN_FILE_FLAG_FOREGROUND","features":[136]},{"name":"CF_OPEN_FILE_FLAG_NONE","features":[136]},{"name":"CF_OPEN_FILE_FLAG_WRITE_ACCESS","features":[136]},{"name":"CF_OPERATION_ACK_DATA_FLAGS","features":[136]},{"name":"CF_OPERATION_ACK_DATA_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAGS","features":[136]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_ACK_DELETE_FLAGS","features":[136]},{"name":"CF_OPERATION_ACK_DELETE_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_ACK_RENAME_FLAGS","features":[136]},{"name":"CF_OPERATION_ACK_RENAME_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_INFO","features":[136,137]},{"name":"CF_OPERATION_PARAMETERS","features":[1,136,21]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAGS","features":[136]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_MARK_IN_SYNC","features":[136]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAGS","features":[136]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAGS","features":[136]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAGS","features":[136]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[136]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_NONE","features":[136]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_STOP_ON_ERROR","features":[136]},{"name":"CF_OPERATION_TYPE","features":[136]},{"name":"CF_OPERATION_TYPE_ACK_DATA","features":[136]},{"name":"CF_OPERATION_TYPE_ACK_DEHYDRATE","features":[136]},{"name":"CF_OPERATION_TYPE_ACK_DELETE","features":[136]},{"name":"CF_OPERATION_TYPE_ACK_RENAME","features":[136]},{"name":"CF_OPERATION_TYPE_RESTART_HYDRATION","features":[136]},{"name":"CF_OPERATION_TYPE_RETRIEVE_DATA","features":[136]},{"name":"CF_OPERATION_TYPE_TRANSFER_DATA","features":[136]},{"name":"CF_OPERATION_TYPE_TRANSFER_PLACEHOLDERS","features":[136]},{"name":"CF_PIN_STATE","features":[136]},{"name":"CF_PIN_STATE_EXCLUDED","features":[136]},{"name":"CF_PIN_STATE_INHERIT","features":[136]},{"name":"CF_PIN_STATE_PINNED","features":[136]},{"name":"CF_PIN_STATE_UNPINNED","features":[136]},{"name":"CF_PIN_STATE_UNSPECIFIED","features":[136]},{"name":"CF_PLACEHOLDER_BASIC_INFO","features":[136]},{"name":"CF_PLACEHOLDER_CREATE_FLAGS","features":[136]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_ALWAYS_FULL","features":[136]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[136]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_MARK_IN_SYNC","features":[136]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_NONE","features":[136]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_SUPERSEDE","features":[136]},{"name":"CF_PLACEHOLDER_CREATE_INFO","features":[136,21]},{"name":"CF_PLACEHOLDER_INFO_BASIC","features":[136]},{"name":"CF_PLACEHOLDER_INFO_CLASS","features":[136]},{"name":"CF_PLACEHOLDER_INFO_STANDARD","features":[136]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY","features":[136]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CONVERT_TO_UNRESTRICTED","features":[136]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CREATE_UNRESTRICTED","features":[136]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_DEFAULT","features":[136]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_UPDATE_UNRESTRICTED","features":[136]},{"name":"CF_PLACEHOLDER_MAX_FILE_IDENTITY_LENGTH","features":[136]},{"name":"CF_PLACEHOLDER_RANGE_INFO_CLASS","features":[136]},{"name":"CF_PLACEHOLDER_RANGE_INFO_MODIFIED","features":[136]},{"name":"CF_PLACEHOLDER_RANGE_INFO_ONDISK","features":[136]},{"name":"CF_PLACEHOLDER_RANGE_INFO_VALIDATED","features":[136]},{"name":"CF_PLACEHOLDER_STANDARD_INFO","features":[136]},{"name":"CF_PLACEHOLDER_STATE","features":[136]},{"name":"CF_PLACEHOLDER_STATE_ESSENTIAL_PROP_PRESENT","features":[136]},{"name":"CF_PLACEHOLDER_STATE_INVALID","features":[136]},{"name":"CF_PLACEHOLDER_STATE_IN_SYNC","features":[136]},{"name":"CF_PLACEHOLDER_STATE_NO_STATES","features":[136]},{"name":"CF_PLACEHOLDER_STATE_PARTIAL","features":[136]},{"name":"CF_PLACEHOLDER_STATE_PARTIALLY_ON_DISK","features":[136]},{"name":"CF_PLACEHOLDER_STATE_PLACEHOLDER","features":[136]},{"name":"CF_PLACEHOLDER_STATE_SYNC_ROOT","features":[136]},{"name":"CF_PLATFORM_INFO","features":[136]},{"name":"CF_POPULATION_POLICY","features":[136]},{"name":"CF_POPULATION_POLICY_ALWAYS_FULL","features":[136]},{"name":"CF_POPULATION_POLICY_FULL","features":[136]},{"name":"CF_POPULATION_POLICY_MODIFIER","features":[136]},{"name":"CF_POPULATION_POLICY_MODIFIER_NONE","features":[136]},{"name":"CF_POPULATION_POLICY_PARTIAL","features":[136]},{"name":"CF_POPULATION_POLICY_PRIMARY","features":[136]},{"name":"CF_PROCESS_INFO","features":[136]},{"name":"CF_PROVIDER_STATUS_CLEAR_FLAGS","features":[136]},{"name":"CF_PROVIDER_STATUS_CONNECTIVITY_LOST","features":[136]},{"name":"CF_PROVIDER_STATUS_DISCONNECTED","features":[136]},{"name":"CF_PROVIDER_STATUS_ERROR","features":[136]},{"name":"CF_PROVIDER_STATUS_IDLE","features":[136]},{"name":"CF_PROVIDER_STATUS_POPULATE_CONTENT","features":[136]},{"name":"CF_PROVIDER_STATUS_POPULATE_METADATA","features":[136]},{"name":"CF_PROVIDER_STATUS_POPULATE_NAMESPACE","features":[136]},{"name":"CF_PROVIDER_STATUS_SYNC_FULL","features":[136]},{"name":"CF_PROVIDER_STATUS_SYNC_INCREMENTAL","features":[136]},{"name":"CF_PROVIDER_STATUS_TERMINATED","features":[136]},{"name":"CF_REGISTER_FLAGS","features":[136]},{"name":"CF_REGISTER_FLAG_DISABLE_ON_DEMAND_POPULATION_ON_ROOT","features":[136]},{"name":"CF_REGISTER_FLAG_MARK_IN_SYNC_ON_ROOT","features":[136]},{"name":"CF_REGISTER_FLAG_NONE","features":[136]},{"name":"CF_REGISTER_FLAG_UPDATE","features":[136]},{"name":"CF_REQUEST_KEY_DEFAULT","features":[136]},{"name":"CF_REVERT_FLAGS","features":[136]},{"name":"CF_REVERT_FLAG_NONE","features":[136]},{"name":"CF_SET_IN_SYNC_FLAGS","features":[136]},{"name":"CF_SET_IN_SYNC_FLAG_NONE","features":[136]},{"name":"CF_SET_PIN_FLAGS","features":[136]},{"name":"CF_SET_PIN_FLAG_NONE","features":[136]},{"name":"CF_SET_PIN_FLAG_RECURSE","features":[136]},{"name":"CF_SET_PIN_FLAG_RECURSE_ONLY","features":[136]},{"name":"CF_SET_PIN_FLAG_RECURSE_STOP_ON_ERROR","features":[136]},{"name":"CF_SYNC_POLICIES","features":[136]},{"name":"CF_SYNC_PROVIDER_STATUS","features":[136]},{"name":"CF_SYNC_REGISTRATION","features":[136]},{"name":"CF_SYNC_ROOT_BASIC_INFO","features":[136]},{"name":"CF_SYNC_ROOT_INFO_BASIC","features":[136]},{"name":"CF_SYNC_ROOT_INFO_CLASS","features":[136]},{"name":"CF_SYNC_ROOT_INFO_PROVIDER","features":[136]},{"name":"CF_SYNC_ROOT_INFO_STANDARD","features":[136]},{"name":"CF_SYNC_ROOT_PROVIDER_INFO","features":[136]},{"name":"CF_SYNC_ROOT_STANDARD_INFO","features":[136]},{"name":"CF_SYNC_STATUS","features":[136]},{"name":"CF_UPDATE_FLAGS","features":[136]},{"name":"CF_UPDATE_FLAG_ALLOW_PARTIAL","features":[136]},{"name":"CF_UPDATE_FLAG_ALWAYS_FULL","features":[136]},{"name":"CF_UPDATE_FLAG_CLEAR_IN_SYNC","features":[136]},{"name":"CF_UPDATE_FLAG_DEHYDRATE","features":[136]},{"name":"CF_UPDATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[136]},{"name":"CF_UPDATE_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[136]},{"name":"CF_UPDATE_FLAG_MARK_IN_SYNC","features":[136]},{"name":"CF_UPDATE_FLAG_NONE","features":[136]},{"name":"CF_UPDATE_FLAG_PASSTHROUGH_FS_METADATA","features":[136]},{"name":"CF_UPDATE_FLAG_REMOVE_FILE_IDENTITY","features":[136]},{"name":"CF_UPDATE_FLAG_REMOVE_PROPERTY","features":[136]},{"name":"CF_UPDATE_FLAG_VERIFY_IN_SYNC","features":[136]},{"name":"CfCloseHandle","features":[1,136]},{"name":"CfConnectSyncRoot","features":[136,137]},{"name":"CfConvertToPlaceholder","features":[1,136,6]},{"name":"CfCreatePlaceholders","features":[136,21]},{"name":"CfDehydratePlaceholder","features":[1,136,6]},{"name":"CfDisconnectSyncRoot","features":[136]},{"name":"CfExecute","features":[1,136,21,137]},{"name":"CfGetCorrelationVector","features":[1,136,137]},{"name":"CfGetPlaceholderInfo","features":[1,136]},{"name":"CfGetPlaceholderRangeInfo","features":[1,136]},{"name":"CfGetPlaceholderRangeInfoForHydration","features":[136]},{"name":"CfGetPlaceholderStateFromAttributeTag","features":[136]},{"name":"CfGetPlaceholderStateFromFileInfo","features":[136,21]},{"name":"CfGetPlaceholderStateFromFindData","features":[1,136,21]},{"name":"CfGetPlatformInfo","features":[136]},{"name":"CfGetSyncRootInfoByHandle","features":[1,136]},{"name":"CfGetSyncRootInfoByPath","features":[136]},{"name":"CfGetTransferKey","features":[1,136]},{"name":"CfGetWin32HandleFromProtectedHandle","features":[1,136]},{"name":"CfHydratePlaceholder","features":[1,136,6]},{"name":"CfOpenFileWithOplock","features":[1,136]},{"name":"CfQuerySyncProviderStatus","features":[136]},{"name":"CfReferenceProtectedHandle","features":[1,136]},{"name":"CfRegisterSyncRoot","features":[136]},{"name":"CfReleaseProtectedHandle","features":[1,136]},{"name":"CfReleaseTransferKey","features":[1,136]},{"name":"CfReportProviderProgress","features":[136]},{"name":"CfReportProviderProgress2","features":[136]},{"name":"CfReportSyncStatus","features":[136]},{"name":"CfRevertPlaceholder","features":[1,136,6]},{"name":"CfSetCorrelationVector","features":[1,136,137]},{"name":"CfSetInSyncState","features":[1,136]},{"name":"CfSetPinState","features":[1,136,6]},{"name":"CfUnregisterSyncRoot","features":[136]},{"name":"CfUpdatePlaceholder","features":[1,136,21,6]},{"name":"CfUpdateSyncProviderStatus","features":[136]}],"504":[{"name":"COMPRESSOR_HANDLE","features":[138]},{"name":"COMPRESS_ALGORITHM","features":[138]},{"name":"COMPRESS_ALGORITHM_INVALID","features":[138]},{"name":"COMPRESS_ALGORITHM_LZMS","features":[138]},{"name":"COMPRESS_ALGORITHM_MAX","features":[138]},{"name":"COMPRESS_ALGORITHM_MSZIP","features":[138]},{"name":"COMPRESS_ALGORITHM_NULL","features":[138]},{"name":"COMPRESS_ALGORITHM_XPRESS","features":[138]},{"name":"COMPRESS_ALGORITHM_XPRESS_HUFF","features":[138]},{"name":"COMPRESS_ALLOCATION_ROUTINES","features":[138]},{"name":"COMPRESS_INFORMATION_CLASS","features":[138]},{"name":"COMPRESS_INFORMATION_CLASS_BLOCK_SIZE","features":[138]},{"name":"COMPRESS_INFORMATION_CLASS_INVALID","features":[138]},{"name":"COMPRESS_INFORMATION_CLASS_LEVEL","features":[138]},{"name":"COMPRESS_RAW","features":[138]},{"name":"CloseCompressor","features":[1,138]},{"name":"CloseDecompressor","features":[1,138]},{"name":"Compress","features":[1,138]},{"name":"CreateCompressor","features":[1,138]},{"name":"CreateDecompressor","features":[1,138]},{"name":"Decompress","features":[1,138]},{"name":"PFN_COMPRESS_ALLOCATE","features":[138]},{"name":"PFN_COMPRESS_FREE","features":[138]},{"name":"QueryCompressorInformation","features":[1,138]},{"name":"QueryDecompressorInformation","features":[1,138]},{"name":"ResetCompressor","features":[1,138]},{"name":"ResetDecompressor","features":[1,138]},{"name":"SetCompressorInformation","features":[1,138]},{"name":"SetDecompressorInformation","features":[1,138]}],"506":[{"name":"DFS_ADD_VOLUME","features":[139]},{"name":"DFS_FORCE_REMOVE","features":[139]},{"name":"DFS_GET_PKT_ENTRY_STATE_ARG","features":[139]},{"name":"DFS_INFO_1","features":[139]},{"name":"DFS_INFO_100","features":[139]},{"name":"DFS_INFO_101","features":[139]},{"name":"DFS_INFO_102","features":[139]},{"name":"DFS_INFO_103","features":[139]},{"name":"DFS_INFO_104","features":[139]},{"name":"DFS_INFO_105","features":[139]},{"name":"DFS_INFO_106","features":[139]},{"name":"DFS_INFO_107","features":[4,139]},{"name":"DFS_INFO_150","features":[4,139]},{"name":"DFS_INFO_1_32","features":[139]},{"name":"DFS_INFO_2","features":[139]},{"name":"DFS_INFO_200","features":[139]},{"name":"DFS_INFO_2_32","features":[139]},{"name":"DFS_INFO_3","features":[139]},{"name":"DFS_INFO_300","features":[139]},{"name":"DFS_INFO_3_32","features":[139]},{"name":"DFS_INFO_4","features":[139]},{"name":"DFS_INFO_4_32","features":[139]},{"name":"DFS_INFO_5","features":[139]},{"name":"DFS_INFO_50","features":[139]},{"name":"DFS_INFO_6","features":[139]},{"name":"DFS_INFO_7","features":[139]},{"name":"DFS_INFO_8","features":[4,139]},{"name":"DFS_INFO_9","features":[4,139]},{"name":"DFS_MOVE_FLAG_REPLACE_IF_EXISTS","features":[139]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN","features":[139]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_COMBINED","features":[139]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_DOMAIN","features":[139]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_SERVER","features":[139]},{"name":"DFS_PROPERTY_FLAG_ABDE","features":[139]},{"name":"DFS_PROPERTY_FLAG_CLUSTER_ENABLED","features":[139]},{"name":"DFS_PROPERTY_FLAG_INSITE_REFERRALS","features":[139]},{"name":"DFS_PROPERTY_FLAG_ROOT_SCALABILITY","features":[139]},{"name":"DFS_PROPERTY_FLAG_SITE_COSTING","features":[139]},{"name":"DFS_PROPERTY_FLAG_TARGET_FAILBACK","features":[139]},{"name":"DFS_RESTORE_VOLUME","features":[139]},{"name":"DFS_SITELIST_INFO","features":[139]},{"name":"DFS_SITENAME_INFO","features":[139]},{"name":"DFS_SITE_PRIMARY","features":[139]},{"name":"DFS_STORAGE_FLAVOR_UNUSED2","features":[139]},{"name":"DFS_STORAGE_INFO","features":[139]},{"name":"DFS_STORAGE_INFO_0_32","features":[139]},{"name":"DFS_STORAGE_INFO_1","features":[139]},{"name":"DFS_STORAGE_STATES","features":[139]},{"name":"DFS_STORAGE_STATE_ACTIVE","features":[139]},{"name":"DFS_STORAGE_STATE_OFFLINE","features":[139]},{"name":"DFS_STORAGE_STATE_ONLINE","features":[139]},{"name":"DFS_SUPPORTED_NAMESPACE_VERSION_INFO","features":[139]},{"name":"DFS_TARGET_PRIORITY","features":[139]},{"name":"DFS_TARGET_PRIORITY_CLASS","features":[139]},{"name":"DFS_VOLUME_FLAVORS","features":[139]},{"name":"DFS_VOLUME_FLAVOR_AD_BLOB","features":[139]},{"name":"DFS_VOLUME_FLAVOR_STANDALONE","features":[139]},{"name":"DFS_VOLUME_FLAVOR_UNUSED1","features":[139]},{"name":"DFS_VOLUME_STATES","features":[139]},{"name":"DFS_VOLUME_STATE_FORCE_SYNC","features":[139]},{"name":"DFS_VOLUME_STATE_INCONSISTENT","features":[139]},{"name":"DFS_VOLUME_STATE_OFFLINE","features":[139]},{"name":"DFS_VOLUME_STATE_OK","features":[139]},{"name":"DFS_VOLUME_STATE_ONLINE","features":[139]},{"name":"DFS_VOLUME_STATE_RESYNCHRONIZE","features":[139]},{"name":"DFS_VOLUME_STATE_STANDBY","features":[139]},{"name":"DfsGlobalHighPriorityClass","features":[139]},{"name":"DfsGlobalLowPriorityClass","features":[139]},{"name":"DfsInvalidPriorityClass","features":[139]},{"name":"DfsSiteCostHighPriorityClass","features":[139]},{"name":"DfsSiteCostLowPriorityClass","features":[139]},{"name":"DfsSiteCostNormalPriorityClass","features":[139]},{"name":"FSCTL_DFS_BASE","features":[139]},{"name":"FSCTL_DFS_GET_PKT_ENTRY_STATE","features":[139]},{"name":"NET_DFS_SETDC_FLAGS","features":[139]},{"name":"NET_DFS_SETDC_INITPKT","features":[139]},{"name":"NET_DFS_SETDC_TIMEOUT","features":[139]},{"name":"NetDfsAdd","features":[139]},{"name":"NetDfsAddFtRoot","features":[139]},{"name":"NetDfsAddRootTarget","features":[139]},{"name":"NetDfsAddStdRoot","features":[139]},{"name":"NetDfsEnum","features":[139]},{"name":"NetDfsGetClientInfo","features":[139]},{"name":"NetDfsGetFtContainerSecurity","features":[4,139]},{"name":"NetDfsGetInfo","features":[139]},{"name":"NetDfsGetSecurity","features":[4,139]},{"name":"NetDfsGetStdContainerSecurity","features":[4,139]},{"name":"NetDfsGetSupportedNamespaceVersion","features":[139]},{"name":"NetDfsMove","features":[139]},{"name":"NetDfsRemove","features":[139]},{"name":"NetDfsRemoveFtRoot","features":[139]},{"name":"NetDfsRemoveFtRootForced","features":[139]},{"name":"NetDfsRemoveRootTarget","features":[139]},{"name":"NetDfsRemoveStdRoot","features":[139]},{"name":"NetDfsSetClientInfo","features":[139]},{"name":"NetDfsSetFtContainerSecurity","features":[4,139]},{"name":"NetDfsSetInfo","features":[139]},{"name":"NetDfsSetSecurity","features":[4,139]},{"name":"NetDfsSetStdContainerSecurity","features":[4,139]}],"508":[{"name":"BackupCancelled","features":[140]},{"name":"BackupInvalidStopReason","features":[140]},{"name":"BackupLimitUserBusyMachineOnAC","features":[140]},{"name":"BackupLimitUserBusyMachineOnDC","features":[140]},{"name":"BackupLimitUserIdleMachineOnDC","features":[140]},{"name":"FHCFG_E_CONFIGURATION_PREVIOUSLY_LOADED","features":[140]},{"name":"FHCFG_E_CONFIG_ALREADY_EXISTS","features":[140]},{"name":"FHCFG_E_CONFIG_FILE_NOT_FOUND","features":[140]},{"name":"FHCFG_E_CORRUPT_CONFIG_FILE","features":[140]},{"name":"FHCFG_E_INVALID_REHYDRATION_STATE","features":[140]},{"name":"FHCFG_E_LEGACY_BACKUP_NOT_FOUND","features":[140]},{"name":"FHCFG_E_LEGACY_BACKUP_USER_EXCLUDED","features":[140]},{"name":"FHCFG_E_LEGACY_TARGET_UNSUPPORTED","features":[140]},{"name":"FHCFG_E_LEGACY_TARGET_VALIDATION_UNSUPPORTED","features":[140]},{"name":"FHCFG_E_NO_VALID_CONFIGURATION_LOADED","features":[140]},{"name":"FHCFG_E_RECOMMENDATION_CHANGE_NOT_ALLOWED","features":[140]},{"name":"FHCFG_E_TARGET_CANNOT_BE_USED","features":[140]},{"name":"FHCFG_E_TARGET_NOT_CONFIGURED","features":[140]},{"name":"FHCFG_E_TARGET_NOT_CONNECTED","features":[140]},{"name":"FHCFG_E_TARGET_NOT_ENOUGH_FREE_SPACE","features":[140]},{"name":"FHCFG_E_TARGET_REHYDRATED_ELSEWHERE","features":[140]},{"name":"FHCFG_E_TARGET_VERIFICATION_FAILED","features":[140]},{"name":"FHSVC_E_BACKUP_BLOCKED","features":[140]},{"name":"FHSVC_E_CONFIG_DISABLED","features":[140]},{"name":"FHSVC_E_CONFIG_DISABLED_GP","features":[140]},{"name":"FHSVC_E_CONFIG_REHYDRATING","features":[140]},{"name":"FHSVC_E_FATAL_CONFIG_ERROR","features":[140]},{"name":"FHSVC_E_NOT_CONFIGURED","features":[140]},{"name":"FH_ACCESS_DENIED","features":[140]},{"name":"FH_BACKUP_STATUS","features":[140]},{"name":"FH_CURRENT_DEFAULT","features":[140]},{"name":"FH_DEVICE_VALIDATION_RESULT","features":[140]},{"name":"FH_DRIVE_FIXED","features":[140]},{"name":"FH_DRIVE_REMOTE","features":[140]},{"name":"FH_DRIVE_REMOVABLE","features":[140]},{"name":"FH_DRIVE_UNKNOWN","features":[140]},{"name":"FH_FOLDER","features":[140]},{"name":"FH_FREQUENCY","features":[140]},{"name":"FH_INVALID_DRIVE_TYPE","features":[140]},{"name":"FH_LIBRARY","features":[140]},{"name":"FH_LOCAL_POLICY_TYPE","features":[140]},{"name":"FH_NAMESPACE_EXISTS","features":[140]},{"name":"FH_PROTECTED_ITEM_CATEGORY","features":[140]},{"name":"FH_READ_ONLY_PERMISSION","features":[140]},{"name":"FH_RETENTION_AGE","features":[140]},{"name":"FH_RETENTION_AGE_BASED","features":[140]},{"name":"FH_RETENTION_DISABLED","features":[140]},{"name":"FH_RETENTION_TYPE","features":[140]},{"name":"FH_RETENTION_TYPES","features":[140]},{"name":"FH_RETENTION_UNLIMITED","features":[140]},{"name":"FH_STATE_BACKUP_NOT_SUPPORTED","features":[140]},{"name":"FH_STATE_DISABLED_BY_GP","features":[140]},{"name":"FH_STATE_FATAL_CONFIG_ERROR","features":[140]},{"name":"FH_STATE_MIGRATING","features":[140]},{"name":"FH_STATE_NOT_TRACKED","features":[140]},{"name":"FH_STATE_NO_ERROR","features":[140]},{"name":"FH_STATE_OFF","features":[140]},{"name":"FH_STATE_REHYDRATING","features":[140]},{"name":"FH_STATE_RUNNING","features":[140]},{"name":"FH_STATE_STAGING_FULL","features":[140]},{"name":"FH_STATE_TARGET_ABSENT","features":[140]},{"name":"FH_STATE_TARGET_ACCESS_DENIED","features":[140]},{"name":"FH_STATE_TARGET_FS_LIMITATION","features":[140]},{"name":"FH_STATE_TARGET_FULL","features":[140]},{"name":"FH_STATE_TARGET_FULL_RETENTION_MAX","features":[140]},{"name":"FH_STATE_TARGET_LOW_SPACE","features":[140]},{"name":"FH_STATE_TARGET_LOW_SPACE_RETENTION_MAX","features":[140]},{"name":"FH_STATE_TARGET_VOLUME_DIRTY","features":[140]},{"name":"FH_STATE_TOO_MUCH_BEHIND","features":[140]},{"name":"FH_STATUS_DISABLED","features":[140]},{"name":"FH_STATUS_DISABLED_BY_GP","features":[140]},{"name":"FH_STATUS_ENABLED","features":[140]},{"name":"FH_STATUS_REHYDRATING","features":[140]},{"name":"FH_TARGET_DRIVE_TYPE","features":[140]},{"name":"FH_TARGET_DRIVE_TYPES","features":[140]},{"name":"FH_TARGET_NAME","features":[140]},{"name":"FH_TARGET_PART_OF_LIBRARY","features":[140]},{"name":"FH_TARGET_PROPERTY_TYPE","features":[140]},{"name":"FH_TARGET_URL","features":[140]},{"name":"FH_VALID_TARGET","features":[140]},{"name":"FhBackupStopReason","features":[140]},{"name":"FhConfigMgr","features":[140]},{"name":"FhReassociation","features":[140]},{"name":"FhServiceBlockBackup","features":[140,34]},{"name":"FhServiceClosePipe","features":[140,34]},{"name":"FhServiceOpenPipe","features":[1,140,34]},{"name":"FhServiceReloadConfiguration","features":[140,34]},{"name":"FhServiceStartBackup","features":[1,140,34]},{"name":"FhServiceStopBackup","features":[1,140,34]},{"name":"FhServiceUnblockBackup","features":[140,34]},{"name":"IFhConfigMgr","features":[140]},{"name":"IFhReassociation","features":[140]},{"name":"IFhScopeIterator","features":[140]},{"name":"IFhTarget","features":[140]},{"name":"MAX_BACKUP_STATUS","features":[140]},{"name":"MAX_LOCAL_POLICY","features":[140]},{"name":"MAX_PROTECTED_ITEM_CATEGORY","features":[140]},{"name":"MAX_RETENTION_TYPE","features":[140]},{"name":"MAX_TARGET_PROPERTY","features":[140]},{"name":"MAX_VALIDATION_RESULT","features":[140]}],"510":[{"name":"ACCESS_ALL","features":[21]},{"name":"ACCESS_ATRIB","features":[21]},{"name":"ACCESS_CREATE","features":[21]},{"name":"ACCESS_DELETE","features":[21]},{"name":"ACCESS_EXEC","features":[21]},{"name":"ACCESS_PERM","features":[21]},{"name":"ACCESS_READ","features":[21]},{"name":"ACCESS_WRITE","features":[21]},{"name":"AddLogContainer","features":[1,21]},{"name":"AddLogContainerSet","features":[1,21]},{"name":"AddUsersToEncryptedFile","features":[4,21]},{"name":"AdvanceLogBase","features":[1,21,6]},{"name":"AlignReservedLog","features":[1,21]},{"name":"AllocReservedLog","features":[1,21]},{"name":"AreFileApisANSI","features":[1,21]},{"name":"AreShortNamesEnabled","features":[1,21]},{"name":"BACKUP_ALTERNATE_DATA","features":[21]},{"name":"BACKUP_DATA","features":[21]},{"name":"BACKUP_EA_DATA","features":[21]},{"name":"BACKUP_LINK","features":[21]},{"name":"BACKUP_OBJECT_ID","features":[21]},{"name":"BACKUP_PROPERTY_DATA","features":[21]},{"name":"BACKUP_REPARSE_DATA","features":[21]},{"name":"BACKUP_SECURITY_DATA","features":[21]},{"name":"BACKUP_SPARSE_BLOCK","features":[21]},{"name":"BACKUP_TXFS_DATA","features":[21]},{"name":"BY_HANDLE_FILE_INFORMATION","features":[1,21]},{"name":"BackupRead","features":[1,21]},{"name":"BackupSeek","features":[1,21]},{"name":"BackupWrite","features":[1,21]},{"name":"BuildIoRingCancelRequest","features":[1,21]},{"name":"BuildIoRingFlushFile","features":[1,21]},{"name":"BuildIoRingReadFile","features":[1,21]},{"name":"BuildIoRingRegisterBuffers","features":[21]},{"name":"BuildIoRingRegisterFileHandles","features":[1,21]},{"name":"BuildIoRingWriteFile","features":[1,21]},{"name":"BusType1394","features":[21]},{"name":"BusTypeAta","features":[21]},{"name":"BusTypeAtapi","features":[21]},{"name":"BusTypeFibre","features":[21]},{"name":"BusTypeFileBackedVirtual","features":[21]},{"name":"BusTypeMax","features":[21]},{"name":"BusTypeMaxReserved","features":[21]},{"name":"BusTypeMmc","features":[21]},{"name":"BusTypeNvme","features":[21]},{"name":"BusTypeRAID","features":[21]},{"name":"BusTypeSCM","features":[21]},{"name":"BusTypeSas","features":[21]},{"name":"BusTypeSata","features":[21]},{"name":"BusTypeScsi","features":[21]},{"name":"BusTypeSd","features":[21]},{"name":"BusTypeSpaces","features":[21]},{"name":"BusTypeSsa","features":[21]},{"name":"BusTypeUfs","features":[21]},{"name":"BusTypeUnknown","features":[21]},{"name":"BusTypeUsb","features":[21]},{"name":"BusTypeVirtual","features":[21]},{"name":"BusTypeiScsi","features":[21]},{"name":"CACHE_ACCESS_CHECK","features":[1,4,21]},{"name":"CACHE_DESTROY_CALLBACK","features":[21]},{"name":"CACHE_KEY_COMPARE","features":[21]},{"name":"CACHE_KEY_HASH","features":[21]},{"name":"CACHE_READ_CALLBACK","features":[1,21]},{"name":"CALLBACK_CHUNK_FINISHED","features":[21]},{"name":"CALLBACK_STREAM_SWITCH","features":[21]},{"name":"CLAIMMEDIALABEL","features":[21]},{"name":"CLAIMMEDIALABELEX","features":[21]},{"name":"CLFS_BASELOG_EXTENSION","features":[21]},{"name":"CLFS_BLOCK_ALLOCATION","features":[21]},{"name":"CLFS_BLOCK_DEALLOCATION","features":[21]},{"name":"CLFS_CONTAINER_RELATIVE_PREFIX","features":[21]},{"name":"CLFS_CONTAINER_STREAM_PREFIX","features":[21]},{"name":"CLFS_CONTEXT_MODE","features":[21]},{"name":"CLFS_FLAG","features":[21]},{"name":"CLFS_FLAG_FILTER_INTERMEDIATE_LEVEL","features":[21]},{"name":"CLFS_FLAG_FILTER_TOP_LEVEL","features":[21]},{"name":"CLFS_FLAG_FORCE_APPEND","features":[21]},{"name":"CLFS_FLAG_FORCE_FLUSH","features":[21]},{"name":"CLFS_FLAG_HIDDEN_SYSTEM_LOG","features":[21]},{"name":"CLFS_FLAG_IGNORE_SHARE_ACCESS","features":[21]},{"name":"CLFS_FLAG_MINIFILTER_LEVEL","features":[21]},{"name":"CLFS_FLAG_NON_REENTRANT_FILTER","features":[21]},{"name":"CLFS_FLAG_NO_FLAGS","features":[21]},{"name":"CLFS_FLAG_READ_IN_PROGRESS","features":[21]},{"name":"CLFS_FLAG_REENTRANT_FILE_SYSTEM","features":[21]},{"name":"CLFS_FLAG_REENTRANT_FILTER","features":[21]},{"name":"CLFS_FLAG_USE_RESERVATION","features":[21]},{"name":"CLFS_IOSTATS_CLASS","features":[21]},{"name":"CLFS_LOG_ARCHIVE_MODE","features":[21]},{"name":"CLFS_LOG_NAME_INFORMATION","features":[21]},{"name":"CLFS_MARSHALLING_FLAG_DISABLE_BUFF_INIT","features":[21]},{"name":"CLFS_MARSHALLING_FLAG_NONE","features":[21]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[21]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION_VERSION","features":[21]},{"name":"CLFS_MGMT_NOTIFICATION","features":[21]},{"name":"CLFS_MGMT_NOTIFICATION_TYPE","features":[21]},{"name":"CLFS_MGMT_POLICY","features":[21]},{"name":"CLFS_MGMT_POLICY_TYPE","features":[21]},{"name":"CLFS_MGMT_POLICY_VERSION","features":[21]},{"name":"CLFS_NODE_ID","features":[21]},{"name":"CLFS_PHYSICAL_LSN_INFORMATION","features":[21]},{"name":"CLFS_SCAN_BACKWARD","features":[21]},{"name":"CLFS_SCAN_BUFFERED","features":[21]},{"name":"CLFS_SCAN_CLOSE","features":[21]},{"name":"CLFS_SCAN_FORWARD","features":[21]},{"name":"CLFS_SCAN_INIT","features":[21]},{"name":"CLFS_SCAN_INITIALIZED","features":[21]},{"name":"CLFS_STREAM_ID_INFORMATION","features":[21]},{"name":"CLSID_DiskQuotaControl","features":[21]},{"name":"CLS_ARCHIVE_DESCRIPTOR","features":[21]},{"name":"CLS_CONTAINER_INFORMATION","features":[21]},{"name":"CLS_CONTEXT_MODE","features":[21]},{"name":"CLS_INFORMATION","features":[21]},{"name":"CLS_IOSTATS_CLASS","features":[21]},{"name":"CLS_IO_STATISTICS","features":[21]},{"name":"CLS_IO_STATISTICS_HEADER","features":[21]},{"name":"CLS_LOG_INFORMATION_CLASS","features":[21]},{"name":"CLS_LSN","features":[21]},{"name":"CLS_SCAN_CONTEXT","features":[1,21]},{"name":"CLS_WRITE_ENTRY","features":[21]},{"name":"COMPRESSION_FORMAT","features":[21]},{"name":"COMPRESSION_FORMAT_DEFAULT","features":[21]},{"name":"COMPRESSION_FORMAT_LZNT1","features":[21]},{"name":"COMPRESSION_FORMAT_NONE","features":[21]},{"name":"COMPRESSION_FORMAT_XP10","features":[21]},{"name":"COMPRESSION_FORMAT_XPRESS","features":[21]},{"name":"COMPRESSION_FORMAT_XPRESS_HUFF","features":[21]},{"name":"CONNECTION_INFO_0","features":[21]},{"name":"CONNECTION_INFO_1","features":[21]},{"name":"COPYFILE2_CALLBACK_CHUNK_FINISHED","features":[21]},{"name":"COPYFILE2_CALLBACK_CHUNK_STARTED","features":[21]},{"name":"COPYFILE2_CALLBACK_ERROR","features":[21]},{"name":"COPYFILE2_CALLBACK_MAX","features":[21]},{"name":"COPYFILE2_CALLBACK_NONE","features":[21]},{"name":"COPYFILE2_CALLBACK_POLL_CONTINUE","features":[21]},{"name":"COPYFILE2_CALLBACK_STREAM_FINISHED","features":[21]},{"name":"COPYFILE2_CALLBACK_STREAM_STARTED","features":[21]},{"name":"COPYFILE2_COPY_PHASE","features":[21]},{"name":"COPYFILE2_EXTENDED_PARAMETERS","features":[1,21]},{"name":"COPYFILE2_EXTENDED_PARAMETERS_V2","features":[1,21]},{"name":"COPYFILE2_MESSAGE","features":[1,21]},{"name":"COPYFILE2_MESSAGE_ACTION","features":[21]},{"name":"COPYFILE2_MESSAGE_TYPE","features":[21]},{"name":"COPYFILE2_PHASE_MAX","features":[21]},{"name":"COPYFILE2_PHASE_NAMEGRAFT_COPY","features":[21]},{"name":"COPYFILE2_PHASE_NONE","features":[21]},{"name":"COPYFILE2_PHASE_PREPARE_DEST","features":[21]},{"name":"COPYFILE2_PHASE_PREPARE_SOURCE","features":[21]},{"name":"COPYFILE2_PHASE_READ_SOURCE","features":[21]},{"name":"COPYFILE2_PHASE_SERVER_COPY","features":[21]},{"name":"COPYFILE2_PHASE_WRITE_DESTINATION","features":[21]},{"name":"COPYFILE2_PROGRESS_CANCEL","features":[21]},{"name":"COPYFILE2_PROGRESS_CONTINUE","features":[21]},{"name":"COPYFILE2_PROGRESS_PAUSE","features":[21]},{"name":"COPYFILE2_PROGRESS_QUIET","features":[21]},{"name":"COPYFILE2_PROGRESS_STOP","features":[21]},{"name":"CREATEFILE2_EXTENDED_PARAMETERS","features":[1,4,21]},{"name":"CREATE_ALWAYS","features":[21]},{"name":"CREATE_NEW","features":[21]},{"name":"CREATE_TAPE_PARTITION_METHOD","features":[21]},{"name":"CRM_PROTOCOL_DYNAMIC_MARSHAL_INFO","features":[21]},{"name":"CRM_PROTOCOL_EXPLICIT_MARSHAL_ONLY","features":[21]},{"name":"CRM_PROTOCOL_MAXIMUM_OPTION","features":[21]},{"name":"CSC_CACHE_AUTO_REINT","features":[21]},{"name":"CSC_CACHE_MANUAL_REINT","features":[21]},{"name":"CSC_CACHE_NONE","features":[21]},{"name":"CSC_CACHE_VDO","features":[21]},{"name":"CSC_MASK","features":[21]},{"name":"CSC_MASK_EXT","features":[21]},{"name":"CSV_BLOCK_AND_FILE_CACHE_CALLBACK_VERSION","features":[21]},{"name":"CSV_BLOCK_CACHE_CALLBACK_VERSION","features":[21]},{"name":"CheckNameLegalDOS8Dot3A","features":[1,21]},{"name":"CheckNameLegalDOS8Dot3W","features":[1,21]},{"name":"ClfsClientRecord","features":[21]},{"name":"ClfsContainerActive","features":[21]},{"name":"ClfsContainerActivePendingDelete","features":[21]},{"name":"ClfsContainerInactive","features":[21]},{"name":"ClfsContainerInitializing","features":[21]},{"name":"ClfsContainerPendingArchive","features":[21]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[21]},{"name":"ClfsContextForward","features":[21]},{"name":"ClfsContextNone","features":[21]},{"name":"ClfsContextPrevious","features":[21]},{"name":"ClfsContextUndoNext","features":[21]},{"name":"ClfsDataRecord","features":[21]},{"name":"ClfsIoStatsDefault","features":[21]},{"name":"ClfsIoStatsMax","features":[21]},{"name":"ClfsLogArchiveDisabled","features":[21]},{"name":"ClfsLogArchiveEnabled","features":[21]},{"name":"ClfsLogBasicInformation","features":[21]},{"name":"ClfsLogBasicInformationPhysical","features":[21]},{"name":"ClfsLogPhysicalLsnInformation","features":[21]},{"name":"ClfsLogPhysicalNameInformation","features":[21]},{"name":"ClfsLogStreamIdentifierInformation","features":[21]},{"name":"ClfsLogSystemMarkingInformation","features":[21]},{"name":"ClfsMgmtAdvanceTailNotification","features":[21]},{"name":"ClfsMgmtLogFullHandlerNotification","features":[21]},{"name":"ClfsMgmtLogUnpinnedNotification","features":[21]},{"name":"ClfsMgmtLogWriteNotification","features":[21]},{"name":"ClfsMgmtPolicyAutoGrow","features":[21]},{"name":"ClfsMgmtPolicyAutoShrink","features":[21]},{"name":"ClfsMgmtPolicyGrowthRate","features":[21]},{"name":"ClfsMgmtPolicyInvalid","features":[21]},{"name":"ClfsMgmtPolicyLogTail","features":[21]},{"name":"ClfsMgmtPolicyMaximumSize","features":[21]},{"name":"ClfsMgmtPolicyMinimumSize","features":[21]},{"name":"ClfsMgmtPolicyNewContainerExtension","features":[21]},{"name":"ClfsMgmtPolicyNewContainerPrefix","features":[21]},{"name":"ClfsMgmtPolicyNewContainerSize","features":[21]},{"name":"ClfsMgmtPolicyNewContainerSuffix","features":[21]},{"name":"ClfsNullRecord","features":[21]},{"name":"ClfsRestartRecord","features":[21]},{"name":"CloseAndResetLogFile","features":[1,21]},{"name":"CloseEncryptedFileRaw","features":[21]},{"name":"CloseIoRing","features":[21]},{"name":"ClsContainerActive","features":[21]},{"name":"ClsContainerActivePendingDelete","features":[21]},{"name":"ClsContainerInactive","features":[21]},{"name":"ClsContainerInitializing","features":[21]},{"name":"ClsContainerPendingArchive","features":[21]},{"name":"ClsContainerPendingArchiveAndDelete","features":[21]},{"name":"ClsContextForward","features":[21]},{"name":"ClsContextNone","features":[21]},{"name":"ClsContextPrevious","features":[21]},{"name":"ClsContextUndoNext","features":[21]},{"name":"ClsIoStatsDefault","features":[21]},{"name":"ClsIoStatsMax","features":[21]},{"name":"CommitComplete","features":[1,21]},{"name":"CommitEnlistment","features":[1,21]},{"name":"CommitTransaction","features":[1,21]},{"name":"CommitTransactionAsync","features":[1,21]},{"name":"CompareFileTime","features":[1,21]},{"name":"CopyFile2","features":[1,21]},{"name":"CopyFileA","features":[1,21]},{"name":"CopyFileExA","features":[1,21]},{"name":"CopyFileExW","features":[1,21]},{"name":"CopyFileFromAppW","features":[1,21]},{"name":"CopyFileTransactedA","features":[1,21]},{"name":"CopyFileTransactedW","features":[1,21]},{"name":"CopyFileW","features":[1,21]},{"name":"CopyLZFile","features":[21]},{"name":"CreateDirectoryA","features":[1,4,21]},{"name":"CreateDirectoryExA","features":[1,4,21]},{"name":"CreateDirectoryExW","features":[1,4,21]},{"name":"CreateDirectoryFromAppW","features":[1,4,21]},{"name":"CreateDirectoryTransactedA","features":[1,4,21]},{"name":"CreateDirectoryTransactedW","features":[1,4,21]},{"name":"CreateDirectoryW","features":[1,4,21]},{"name":"CreateEnlistment","features":[1,4,21]},{"name":"CreateFile2","features":[1,4,21]},{"name":"CreateFile2FromAppW","features":[1,4,21]},{"name":"CreateFileA","features":[1,4,21]},{"name":"CreateFileFromAppW","features":[1,4,21]},{"name":"CreateFileTransactedA","features":[1,4,21]},{"name":"CreateFileTransactedW","features":[1,4,21]},{"name":"CreateFileW","features":[1,4,21]},{"name":"CreateHardLinkA","features":[1,4,21]},{"name":"CreateHardLinkTransactedA","features":[1,4,21]},{"name":"CreateHardLinkTransactedW","features":[1,4,21]},{"name":"CreateHardLinkW","features":[1,4,21]},{"name":"CreateIoRing","features":[21]},{"name":"CreateLogContainerScanContext","features":[1,21,6]},{"name":"CreateLogFile","features":[1,4,21]},{"name":"CreateLogMarshallingArea","features":[1,21]},{"name":"CreateResourceManager","features":[1,4,21]},{"name":"CreateSymbolicLinkA","features":[1,21]},{"name":"CreateSymbolicLinkTransactedA","features":[1,21]},{"name":"CreateSymbolicLinkTransactedW","features":[1,21]},{"name":"CreateSymbolicLinkW","features":[1,21]},{"name":"CreateTapePartition","features":[1,21]},{"name":"CreateTransaction","features":[1,4,21]},{"name":"CreateTransactionManager","features":[1,4,21]},{"name":"DDD_EXACT_MATCH_ON_REMOVE","features":[21]},{"name":"DDD_LUID_BROADCAST_DRIVE","features":[21]},{"name":"DDD_NO_BROADCAST_SYSTEM","features":[21]},{"name":"DDD_RAW_TARGET_PATH","features":[21]},{"name":"DDD_REMOVE_DEFINITION","features":[21]},{"name":"DEFINE_DOS_DEVICE_FLAGS","features":[21]},{"name":"DELETE","features":[21]},{"name":"DISKQUOTA_FILESTATE_INCOMPLETE","features":[21]},{"name":"DISKQUOTA_FILESTATE_MASK","features":[21]},{"name":"DISKQUOTA_FILESTATE_REBUILDING","features":[21]},{"name":"DISKQUOTA_LOGFLAG_USER_LIMIT","features":[21]},{"name":"DISKQUOTA_LOGFLAG_USER_THRESHOLD","features":[21]},{"name":"DISKQUOTA_STATE_DISABLED","features":[21]},{"name":"DISKQUOTA_STATE_ENFORCE","features":[21]},{"name":"DISKQUOTA_STATE_MASK","features":[21]},{"name":"DISKQUOTA_STATE_TRACK","features":[21]},{"name":"DISKQUOTA_USERNAME_RESOLVE","features":[21]},{"name":"DISKQUOTA_USERNAME_RESOLVE_ASYNC","features":[21]},{"name":"DISKQUOTA_USERNAME_RESOLVE_NONE","features":[21]},{"name":"DISKQUOTA_USERNAME_RESOLVE_SYNC","features":[21]},{"name":"DISKQUOTA_USER_ACCOUNT_DELETED","features":[21]},{"name":"DISKQUOTA_USER_ACCOUNT_INVALID","features":[21]},{"name":"DISKQUOTA_USER_ACCOUNT_RESOLVED","features":[21]},{"name":"DISKQUOTA_USER_ACCOUNT_UNAVAILABLE","features":[21]},{"name":"DISKQUOTA_USER_ACCOUNT_UNKNOWN","features":[21]},{"name":"DISKQUOTA_USER_ACCOUNT_UNRESOLVED","features":[21]},{"name":"DISKQUOTA_USER_INFORMATION","features":[21]},{"name":"DISK_SPACE_INFORMATION","features":[21]},{"name":"DecryptFileA","features":[1,21]},{"name":"DecryptFileW","features":[1,21]},{"name":"DefineDosDeviceA","features":[1,21]},{"name":"DefineDosDeviceW","features":[1,21]},{"name":"DeleteFileA","features":[1,21]},{"name":"DeleteFileFromAppW","features":[1,21]},{"name":"DeleteFileTransactedA","features":[1,21]},{"name":"DeleteFileTransactedW","features":[1,21]},{"name":"DeleteFileW","features":[1,21]},{"name":"DeleteLogByHandle","features":[1,21]},{"name":"DeleteLogFile","features":[1,21]},{"name":"DeleteLogMarshallingArea","features":[1,21]},{"name":"DeleteVolumeMountPointA","features":[1,21]},{"name":"DeleteVolumeMountPointW","features":[1,21]},{"name":"DeregisterManageableLogClient","features":[1,21]},{"name":"DuplicateEncryptionInfoFile","features":[1,4,21]},{"name":"EA_CONTAINER_NAME","features":[21]},{"name":"EA_CONTAINER_SIZE","features":[21]},{"name":"EFS_CERTIFICATE_BLOB","features":[21]},{"name":"EFS_COMPATIBILITY_INFO","features":[21]},{"name":"EFS_COMPATIBILITY_VERSION_NCRYPT_PROTECTOR","features":[21]},{"name":"EFS_COMPATIBILITY_VERSION_PFILE_PROTECTOR","features":[21]},{"name":"EFS_DECRYPTION_STATUS_INFO","features":[21]},{"name":"EFS_EFS_SUBVER_EFS_CERT","features":[21]},{"name":"EFS_ENCRYPTION_STATUS_INFO","features":[1,21]},{"name":"EFS_HASH_BLOB","features":[21]},{"name":"EFS_KEY_INFO","features":[68,21]},{"name":"EFS_METADATA_ADD_USER","features":[21]},{"name":"EFS_METADATA_GENERAL_OP","features":[21]},{"name":"EFS_METADATA_REMOVE_USER","features":[21]},{"name":"EFS_METADATA_REPLACE_USER","features":[21]},{"name":"EFS_PFILE_SUBVER_APPX","features":[21]},{"name":"EFS_PFILE_SUBVER_RMS","features":[21]},{"name":"EFS_PIN_BLOB","features":[21]},{"name":"EFS_RPC_BLOB","features":[21]},{"name":"EFS_SUBVER_UNKNOWN","features":[21]},{"name":"EFS_VERSION_INFO","features":[21]},{"name":"ENCRYPTED_FILE_METADATA_SIGNATURE","features":[4,21]},{"name":"ENCRYPTION_CERTIFICATE","features":[4,21]},{"name":"ENCRYPTION_CERTIFICATE_HASH","features":[4,21]},{"name":"ENCRYPTION_CERTIFICATE_HASH_LIST","features":[4,21]},{"name":"ENCRYPTION_CERTIFICATE_LIST","features":[4,21]},{"name":"ENCRYPTION_PROTECTOR","features":[4,21]},{"name":"ENCRYPTION_PROTECTOR_LIST","features":[4,21]},{"name":"ENLISTMENT_MAXIMUM_OPTION","features":[21]},{"name":"ENLISTMENT_OBJECT_PATH","features":[21]},{"name":"ENLISTMENT_SUPERIOR","features":[21]},{"name":"ERASE_TAPE_TYPE","features":[21]},{"name":"EncryptFileA","features":[1,21]},{"name":"EncryptFileW","features":[1,21]},{"name":"EncryptionDisable","features":[1,21]},{"name":"EraseTape","features":[1,21]},{"name":"ExtendedFileIdType","features":[21]},{"name":"FCACHE_CREATE_CALLBACK","features":[1,21]},{"name":"FCACHE_RICHCREATE_CALLBACK","features":[1,21]},{"name":"FH_OVERLAPPED","features":[1,21]},{"name":"FILE_ACCESS_RIGHTS","features":[21]},{"name":"FILE_ACTION","features":[21]},{"name":"FILE_ACTION_ADDED","features":[21]},{"name":"FILE_ACTION_MODIFIED","features":[21]},{"name":"FILE_ACTION_REMOVED","features":[21]},{"name":"FILE_ACTION_RENAMED_NEW_NAME","features":[21]},{"name":"FILE_ACTION_RENAMED_OLD_NAME","features":[21]},{"name":"FILE_ADD_FILE","features":[21]},{"name":"FILE_ADD_SUBDIRECTORY","features":[21]},{"name":"FILE_ALIGNMENT_INFO","features":[21]},{"name":"FILE_ALLOCATION_INFO","features":[21]},{"name":"FILE_ALL_ACCESS","features":[21]},{"name":"FILE_APPEND_DATA","features":[21]},{"name":"FILE_ATTRIBUTE_ARCHIVE","features":[21]},{"name":"FILE_ATTRIBUTE_COMPRESSED","features":[21]},{"name":"FILE_ATTRIBUTE_DEVICE","features":[21]},{"name":"FILE_ATTRIBUTE_DIRECTORY","features":[21]},{"name":"FILE_ATTRIBUTE_EA","features":[21]},{"name":"FILE_ATTRIBUTE_ENCRYPTED","features":[21]},{"name":"FILE_ATTRIBUTE_HIDDEN","features":[21]},{"name":"FILE_ATTRIBUTE_INTEGRITY_STREAM","features":[21]},{"name":"FILE_ATTRIBUTE_NORMAL","features":[21]},{"name":"FILE_ATTRIBUTE_NOT_CONTENT_INDEXED","features":[21]},{"name":"FILE_ATTRIBUTE_NO_SCRUB_DATA","features":[21]},{"name":"FILE_ATTRIBUTE_OFFLINE","features":[21]},{"name":"FILE_ATTRIBUTE_PINNED","features":[21]},{"name":"FILE_ATTRIBUTE_READONLY","features":[21]},{"name":"FILE_ATTRIBUTE_RECALL_ON_DATA_ACCESS","features":[21]},{"name":"FILE_ATTRIBUTE_RECALL_ON_OPEN","features":[21]},{"name":"FILE_ATTRIBUTE_REPARSE_POINT","features":[21]},{"name":"FILE_ATTRIBUTE_SPARSE_FILE","features":[21]},{"name":"FILE_ATTRIBUTE_SYSTEM","features":[21]},{"name":"FILE_ATTRIBUTE_TAG_INFO","features":[21]},{"name":"FILE_ATTRIBUTE_TEMPORARY","features":[21]},{"name":"FILE_ATTRIBUTE_UNPINNED","features":[21]},{"name":"FILE_ATTRIBUTE_VIRTUAL","features":[21]},{"name":"FILE_BASIC_INFO","features":[21]},{"name":"FILE_BEGIN","features":[21]},{"name":"FILE_COMPRESSION_INFO","features":[21]},{"name":"FILE_CREATE_PIPE_INSTANCE","features":[21]},{"name":"FILE_CREATION_DISPOSITION","features":[21]},{"name":"FILE_CURRENT","features":[21]},{"name":"FILE_DELETE_CHILD","features":[21]},{"name":"FILE_DEVICE_CD_ROM","features":[21]},{"name":"FILE_DEVICE_DISK","features":[21]},{"name":"FILE_DEVICE_DVD","features":[21]},{"name":"FILE_DEVICE_TAPE","features":[21]},{"name":"FILE_DEVICE_TYPE","features":[21]},{"name":"FILE_DISPOSITION_FLAG_DELETE","features":[21]},{"name":"FILE_DISPOSITION_FLAG_DO_NOT_DELETE","features":[21]},{"name":"FILE_DISPOSITION_FLAG_FORCE_IMAGE_SECTION_CHECK","features":[21]},{"name":"FILE_DISPOSITION_FLAG_IGNORE_READONLY_ATTRIBUTE","features":[21]},{"name":"FILE_DISPOSITION_FLAG_ON_CLOSE","features":[21]},{"name":"FILE_DISPOSITION_FLAG_POSIX_SEMANTICS","features":[21]},{"name":"FILE_DISPOSITION_INFO","features":[1,21]},{"name":"FILE_DISPOSITION_INFO_EX","features":[21]},{"name":"FILE_DISPOSITION_INFO_EX_FLAGS","features":[21]},{"name":"FILE_END","features":[21]},{"name":"FILE_END_OF_FILE_INFO","features":[21]},{"name":"FILE_EXECUTE","features":[21]},{"name":"FILE_EXTENT","features":[21]},{"name":"FILE_FLAGS_AND_ATTRIBUTES","features":[21]},{"name":"FILE_FLAG_BACKUP_SEMANTICS","features":[21]},{"name":"FILE_FLAG_DELETE_ON_CLOSE","features":[21]},{"name":"FILE_FLAG_FIRST_PIPE_INSTANCE","features":[21]},{"name":"FILE_FLAG_NO_BUFFERING","features":[21]},{"name":"FILE_FLAG_OPEN_NO_RECALL","features":[21]},{"name":"FILE_FLAG_OPEN_REPARSE_POINT","features":[21]},{"name":"FILE_FLAG_OVERLAPPED","features":[21]},{"name":"FILE_FLAG_POSIX_SEMANTICS","features":[21]},{"name":"FILE_FLAG_RANDOM_ACCESS","features":[21]},{"name":"FILE_FLAG_SEQUENTIAL_SCAN","features":[21]},{"name":"FILE_FLAG_SESSION_AWARE","features":[21]},{"name":"FILE_FLAG_WRITE_THROUGH","features":[21]},{"name":"FILE_FLUSH_DATA","features":[21]},{"name":"FILE_FLUSH_DEFAULT","features":[21]},{"name":"FILE_FLUSH_MIN_METADATA","features":[21]},{"name":"FILE_FLUSH_MODE","features":[21]},{"name":"FILE_FLUSH_NO_SYNC","features":[21]},{"name":"FILE_FULL_DIR_INFO","features":[21]},{"name":"FILE_GENERIC_EXECUTE","features":[21]},{"name":"FILE_GENERIC_READ","features":[21]},{"name":"FILE_GENERIC_WRITE","features":[21]},{"name":"FILE_ID_128","features":[21]},{"name":"FILE_ID_BOTH_DIR_INFO","features":[21]},{"name":"FILE_ID_DESCRIPTOR","features":[21]},{"name":"FILE_ID_EXTD_DIR_INFO","features":[21]},{"name":"FILE_ID_INFO","features":[21]},{"name":"FILE_ID_TYPE","features":[21]},{"name":"FILE_INFO_2","features":[21]},{"name":"FILE_INFO_3","features":[21]},{"name":"FILE_INFO_BY_HANDLE_CLASS","features":[21]},{"name":"FILE_INFO_FLAGS_PERMISSIONS","features":[21]},{"name":"FILE_IO_PRIORITY_HINT_INFO","features":[21]},{"name":"FILE_LIST_DIRECTORY","features":[21]},{"name":"FILE_NAME_INFO","features":[21]},{"name":"FILE_NAME_NORMALIZED","features":[21]},{"name":"FILE_NAME_OPENED","features":[21]},{"name":"FILE_NOTIFY_CHANGE","features":[21]},{"name":"FILE_NOTIFY_CHANGE_ATTRIBUTES","features":[21]},{"name":"FILE_NOTIFY_CHANGE_CREATION","features":[21]},{"name":"FILE_NOTIFY_CHANGE_DIR_NAME","features":[21]},{"name":"FILE_NOTIFY_CHANGE_FILE_NAME","features":[21]},{"name":"FILE_NOTIFY_CHANGE_LAST_ACCESS","features":[21]},{"name":"FILE_NOTIFY_CHANGE_LAST_WRITE","features":[21]},{"name":"FILE_NOTIFY_CHANGE_SECURITY","features":[21]},{"name":"FILE_NOTIFY_CHANGE_SIZE","features":[21]},{"name":"FILE_NOTIFY_EXTENDED_INFORMATION","features":[21]},{"name":"FILE_NOTIFY_INFORMATION","features":[21]},{"name":"FILE_PROVIDER_COMPRESSION_LZX","features":[21]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS16K","features":[21]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS4K","features":[21]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS8K","features":[21]},{"name":"FILE_READ_ATTRIBUTES","features":[21]},{"name":"FILE_READ_DATA","features":[21]},{"name":"FILE_READ_EA","features":[21]},{"name":"FILE_REMOTE_PROTOCOL_INFO","features":[21]},{"name":"FILE_RENAME_INFO","features":[1,21]},{"name":"FILE_SEGMENT_ELEMENT","features":[21]},{"name":"FILE_SHARE_DELETE","features":[21]},{"name":"FILE_SHARE_MODE","features":[21]},{"name":"FILE_SHARE_NONE","features":[21]},{"name":"FILE_SHARE_READ","features":[21]},{"name":"FILE_SHARE_WRITE","features":[21]},{"name":"FILE_STANDARD_INFO","features":[1,21]},{"name":"FILE_STORAGE_INFO","features":[21]},{"name":"FILE_STREAM_INFO","features":[21]},{"name":"FILE_TRAVERSE","features":[21]},{"name":"FILE_TYPE","features":[21]},{"name":"FILE_TYPE_CHAR","features":[21]},{"name":"FILE_TYPE_DISK","features":[21]},{"name":"FILE_TYPE_PIPE","features":[21]},{"name":"FILE_TYPE_REMOTE","features":[21]},{"name":"FILE_TYPE_UNKNOWN","features":[21]},{"name":"FILE_VER_GET_LOCALISED","features":[21]},{"name":"FILE_VER_GET_NEUTRAL","features":[21]},{"name":"FILE_VER_GET_PREFETCHED","features":[21]},{"name":"FILE_WRITE_ATTRIBUTES","features":[21]},{"name":"FILE_WRITE_DATA","features":[21]},{"name":"FILE_WRITE_EA","features":[21]},{"name":"FILE_WRITE_FLAGS","features":[21]},{"name":"FILE_WRITE_FLAGS_NONE","features":[21]},{"name":"FILE_WRITE_FLAGS_WRITE_THROUGH","features":[21]},{"name":"FINDEX_INFO_LEVELS","features":[21]},{"name":"FINDEX_SEARCH_OPS","features":[21]},{"name":"FIND_FIRST_EX_CASE_SENSITIVE","features":[21]},{"name":"FIND_FIRST_EX_FLAGS","features":[21]},{"name":"FIND_FIRST_EX_LARGE_FETCH","features":[21]},{"name":"FIND_FIRST_EX_ON_DISK_ENTRIES_ONLY","features":[21]},{"name":"FIO_CONTEXT","features":[1,21]},{"name":"FileAlignmentInfo","features":[21]},{"name":"FileAllocationInfo","features":[21]},{"name":"FileAttributeTagInfo","features":[21]},{"name":"FileBasicInfo","features":[21]},{"name":"FileCaseSensitiveInfo","features":[21]},{"name":"FileCompressionInfo","features":[21]},{"name":"FileDispositionInfo","features":[21]},{"name":"FileDispositionInfoEx","features":[21]},{"name":"FileEncryptionStatusA","features":[1,21]},{"name":"FileEncryptionStatusW","features":[1,21]},{"name":"FileEndOfFileInfo","features":[21]},{"name":"FileFullDirectoryInfo","features":[21]},{"name":"FileFullDirectoryRestartInfo","features":[21]},{"name":"FileIdBothDirectoryInfo","features":[21]},{"name":"FileIdBothDirectoryRestartInfo","features":[21]},{"name":"FileIdExtdDirectoryInfo","features":[21]},{"name":"FileIdExtdDirectoryRestartInfo","features":[21]},{"name":"FileIdInfo","features":[21]},{"name":"FileIdType","features":[21]},{"name":"FileIoPriorityHintInfo","features":[21]},{"name":"FileNameInfo","features":[21]},{"name":"FileNormalizedNameInfo","features":[21]},{"name":"FileRemoteProtocolInfo","features":[21]},{"name":"FileRenameInfo","features":[21]},{"name":"FileRenameInfoEx","features":[21]},{"name":"FileStandardInfo","features":[21]},{"name":"FileStorageInfo","features":[21]},{"name":"FileStreamInfo","features":[21]},{"name":"FileTimeToLocalFileTime","features":[1,21]},{"name":"FindClose","features":[1,21]},{"name":"FindCloseChangeNotification","features":[1,21]},{"name":"FindExInfoBasic","features":[21]},{"name":"FindExInfoMaxInfoLevel","features":[21]},{"name":"FindExInfoStandard","features":[21]},{"name":"FindExSearchLimitToDevices","features":[21]},{"name":"FindExSearchLimitToDirectories","features":[21]},{"name":"FindExSearchMaxSearchOp","features":[21]},{"name":"FindExSearchNameMatch","features":[21]},{"name":"FindFirstChangeNotificationA","features":[1,21]},{"name":"FindFirstChangeNotificationW","features":[1,21]},{"name":"FindFirstFileA","features":[1,21]},{"name":"FindFirstFileExA","features":[1,21]},{"name":"FindFirstFileExFromAppW","features":[1,21]},{"name":"FindFirstFileExW","features":[1,21]},{"name":"FindFirstFileNameTransactedW","features":[1,21]},{"name":"FindFirstFileNameW","features":[1,21]},{"name":"FindFirstFileTransactedA","features":[1,21]},{"name":"FindFirstFileTransactedW","features":[1,21]},{"name":"FindFirstFileW","features":[1,21]},{"name":"FindFirstStreamTransactedW","features":[1,21]},{"name":"FindFirstStreamW","features":[1,21]},{"name":"FindFirstVolumeA","features":[1,21]},{"name":"FindFirstVolumeMountPointA","features":[1,21]},{"name":"FindFirstVolumeMountPointW","features":[1,21]},{"name":"FindFirstVolumeW","features":[1,21]},{"name":"FindNextChangeNotification","features":[1,21]},{"name":"FindNextFileA","features":[1,21]},{"name":"FindNextFileNameW","features":[1,21]},{"name":"FindNextFileW","features":[1,21]},{"name":"FindNextStreamW","features":[1,21]},{"name":"FindNextVolumeA","features":[1,21]},{"name":"FindNextVolumeMountPointA","features":[1,21]},{"name":"FindNextVolumeMountPointW","features":[1,21]},{"name":"FindNextVolumeW","features":[1,21]},{"name":"FindStreamInfoMaxInfoLevel","features":[21]},{"name":"FindStreamInfoStandard","features":[21]},{"name":"FindVolumeClose","features":[1,21]},{"name":"FindVolumeMountPointClose","features":[1,21]},{"name":"FlushFileBuffers","features":[1,21]},{"name":"FlushLogBuffers","features":[1,21,6]},{"name":"FlushLogToLsn","features":[1,21,6]},{"name":"FreeEncryptedFileMetadata","features":[21]},{"name":"FreeEncryptionCertificateHashList","features":[4,21]},{"name":"FreeReservedLog","features":[1,21]},{"name":"GETFINALPATHNAMEBYHANDLE_FLAGS","features":[21]},{"name":"GET_FILEEX_INFO_LEVELS","features":[21]},{"name":"GET_FILE_VERSION_INFO_FLAGS","features":[21]},{"name":"GET_TAPE_DRIVE_INFORMATION","features":[21]},{"name":"GET_TAPE_DRIVE_PARAMETERS_OPERATION","features":[21]},{"name":"GET_TAPE_MEDIA_INFORMATION","features":[21]},{"name":"GetBinaryTypeA","features":[1,21]},{"name":"GetBinaryTypeW","features":[1,21]},{"name":"GetCompressedFileSizeA","features":[21]},{"name":"GetCompressedFileSizeTransactedA","features":[1,21]},{"name":"GetCompressedFileSizeTransactedW","features":[1,21]},{"name":"GetCompressedFileSizeW","features":[21]},{"name":"GetCurrentClockTransactionManager","features":[1,21]},{"name":"GetDiskFreeSpaceA","features":[1,21]},{"name":"GetDiskFreeSpaceExA","features":[1,21]},{"name":"GetDiskFreeSpaceExW","features":[1,21]},{"name":"GetDiskFreeSpaceW","features":[1,21]},{"name":"GetDiskSpaceInformationA","features":[21]},{"name":"GetDiskSpaceInformationW","features":[21]},{"name":"GetDriveTypeA","features":[21]},{"name":"GetDriveTypeW","features":[21]},{"name":"GetEncryptedFileMetadata","features":[21]},{"name":"GetEnlistmentId","features":[1,21]},{"name":"GetEnlistmentRecoveryInformation","features":[1,21]},{"name":"GetExpandedNameA","features":[21]},{"name":"GetExpandedNameW","features":[21]},{"name":"GetFileAttributesA","features":[21]},{"name":"GetFileAttributesExA","features":[1,21]},{"name":"GetFileAttributesExFromAppW","features":[1,21]},{"name":"GetFileAttributesExW","features":[1,21]},{"name":"GetFileAttributesTransactedA","features":[1,21]},{"name":"GetFileAttributesTransactedW","features":[1,21]},{"name":"GetFileAttributesW","features":[21]},{"name":"GetFileBandwidthReservation","features":[1,21]},{"name":"GetFileExInfoStandard","features":[21]},{"name":"GetFileExMaxInfoLevel","features":[21]},{"name":"GetFileInformationByHandle","features":[1,21]},{"name":"GetFileInformationByHandleEx","features":[1,21]},{"name":"GetFileSize","features":[1,21]},{"name":"GetFileSizeEx","features":[1,21]},{"name":"GetFileTime","features":[1,21]},{"name":"GetFileType","features":[1,21]},{"name":"GetFileVersionInfoA","features":[1,21]},{"name":"GetFileVersionInfoExA","features":[1,21]},{"name":"GetFileVersionInfoExW","features":[1,21]},{"name":"GetFileVersionInfoSizeA","features":[21]},{"name":"GetFileVersionInfoSizeExA","features":[21]},{"name":"GetFileVersionInfoSizeExW","features":[21]},{"name":"GetFileVersionInfoSizeW","features":[21]},{"name":"GetFileVersionInfoW","features":[1,21]},{"name":"GetFinalPathNameByHandleA","features":[1,21]},{"name":"GetFinalPathNameByHandleW","features":[1,21]},{"name":"GetFullPathNameA","features":[21]},{"name":"GetFullPathNameTransactedA","features":[1,21]},{"name":"GetFullPathNameTransactedW","features":[1,21]},{"name":"GetFullPathNameW","features":[21]},{"name":"GetIoRingInfo","features":[21]},{"name":"GetLogContainerName","features":[1,21]},{"name":"GetLogFileInformation","features":[1,21]},{"name":"GetLogIoStatistics","features":[1,21]},{"name":"GetLogReservationInfo","features":[1,21]},{"name":"GetLogicalDriveStringsA","features":[21]},{"name":"GetLogicalDriveStringsW","features":[21]},{"name":"GetLogicalDrives","features":[21]},{"name":"GetLongPathNameA","features":[21]},{"name":"GetLongPathNameTransactedA","features":[1,21]},{"name":"GetLongPathNameTransactedW","features":[1,21]},{"name":"GetLongPathNameW","features":[21]},{"name":"GetNextLogArchiveExtent","features":[1,21]},{"name":"GetNotificationResourceManager","features":[1,21]},{"name":"GetNotificationResourceManagerAsync","features":[1,21,6]},{"name":"GetShortPathNameA","features":[21]},{"name":"GetShortPathNameW","features":[21]},{"name":"GetTapeParameters","features":[1,21]},{"name":"GetTapePosition","features":[1,21]},{"name":"GetTapeStatus","features":[1,21]},{"name":"GetTempFileNameA","features":[21]},{"name":"GetTempFileNameW","features":[21]},{"name":"GetTempPath2A","features":[21]},{"name":"GetTempPath2W","features":[21]},{"name":"GetTempPathA","features":[21]},{"name":"GetTempPathW","features":[21]},{"name":"GetTransactionId","features":[1,21]},{"name":"GetTransactionInformation","features":[1,21]},{"name":"GetTransactionManagerId","features":[1,21]},{"name":"GetVolumeInformationA","features":[1,21]},{"name":"GetVolumeInformationByHandleW","features":[1,21]},{"name":"GetVolumeInformationW","features":[1,21]},{"name":"GetVolumeNameForVolumeMountPointA","features":[1,21]},{"name":"GetVolumeNameForVolumeMountPointW","features":[1,21]},{"name":"GetVolumePathNameA","features":[1,21]},{"name":"GetVolumePathNameW","features":[1,21]},{"name":"GetVolumePathNamesForVolumeNameA","features":[1,21]},{"name":"GetVolumePathNamesForVolumeNameW","features":[1,21]},{"name":"HIORING","features":[21]},{"name":"HandleLogFull","features":[1,21]},{"name":"IDiskQuotaControl","features":[21]},{"name":"IDiskQuotaEvents","features":[21]},{"name":"IDiskQuotaUser","features":[21]},{"name":"IDiskQuotaUserBatch","features":[21]},{"name":"IEnumDiskQuotaUsers","features":[21]},{"name":"INVALID_FILE_ATTRIBUTES","features":[21]},{"name":"INVALID_FILE_SIZE","features":[21]},{"name":"INVALID_SET_FILE_POINTER","features":[21]},{"name":"IOCTL_VOLUME_ALLOCATE_BC_STREAM","features":[21]},{"name":"IOCTL_VOLUME_BASE","features":[21]},{"name":"IOCTL_VOLUME_BC_VERSION","features":[21]},{"name":"IOCTL_VOLUME_FREE_BC_STREAM","features":[21]},{"name":"IOCTL_VOLUME_GET_BC_PROPERTIES","features":[21]},{"name":"IOCTL_VOLUME_GET_CSVBLOCKCACHE_CALLBACK","features":[21]},{"name":"IOCTL_VOLUME_GET_GPT_ATTRIBUTES","features":[21]},{"name":"IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS","features":[21]},{"name":"IOCTL_VOLUME_IS_CLUSTERED","features":[21]},{"name":"IOCTL_VOLUME_IS_CSV","features":[21]},{"name":"IOCTL_VOLUME_IS_DYNAMIC","features":[21]},{"name":"IOCTL_VOLUME_IS_IO_CAPABLE","features":[21]},{"name":"IOCTL_VOLUME_IS_OFFLINE","features":[21]},{"name":"IOCTL_VOLUME_IS_PARTITION","features":[21]},{"name":"IOCTL_VOLUME_LOGICAL_TO_PHYSICAL","features":[21]},{"name":"IOCTL_VOLUME_OFFLINE","features":[21]},{"name":"IOCTL_VOLUME_ONLINE","features":[21]},{"name":"IOCTL_VOLUME_PHYSICAL_TO_LOGICAL","features":[21]},{"name":"IOCTL_VOLUME_POST_ONLINE","features":[21]},{"name":"IOCTL_VOLUME_PREPARE_FOR_CRITICAL_IO","features":[21]},{"name":"IOCTL_VOLUME_PREPARE_FOR_SHRINK","features":[21]},{"name":"IOCTL_VOLUME_QUERY_ALLOCATION_HINT","features":[21]},{"name":"IOCTL_VOLUME_QUERY_FAILOVER_SET","features":[21]},{"name":"IOCTL_VOLUME_QUERY_MINIMUM_SHRINK_SIZE","features":[21]},{"name":"IOCTL_VOLUME_QUERY_VOLUME_NUMBER","features":[21]},{"name":"IOCTL_VOLUME_READ_PLEX","features":[21]},{"name":"IOCTL_VOLUME_SET_GPT_ATTRIBUTES","features":[21]},{"name":"IOCTL_VOLUME_SUPPORTS_ONLINE_OFFLINE","features":[21]},{"name":"IOCTL_VOLUME_UPDATE_PROPERTIES","features":[21]},{"name":"IORING_BUFFER_INFO","features":[21]},{"name":"IORING_BUFFER_REF","features":[21]},{"name":"IORING_CAPABILITIES","features":[21]},{"name":"IORING_CQE","features":[21]},{"name":"IORING_CREATE_ADVISORY_FLAGS","features":[21]},{"name":"IORING_CREATE_ADVISORY_FLAGS_NONE","features":[21]},{"name":"IORING_CREATE_FLAGS","features":[21]},{"name":"IORING_CREATE_REQUIRED_FLAGS","features":[21]},{"name":"IORING_CREATE_REQUIRED_FLAGS_NONE","features":[21]},{"name":"IORING_FEATURE_FLAGS","features":[21]},{"name":"IORING_FEATURE_FLAGS_NONE","features":[21]},{"name":"IORING_FEATURE_SET_COMPLETION_EVENT","features":[21]},{"name":"IORING_FEATURE_UM_EMULATION","features":[21]},{"name":"IORING_HANDLE_REF","features":[1,21]},{"name":"IORING_INFO","features":[21]},{"name":"IORING_OP_CANCEL","features":[21]},{"name":"IORING_OP_CODE","features":[21]},{"name":"IORING_OP_FLUSH","features":[21]},{"name":"IORING_OP_NOP","features":[21]},{"name":"IORING_OP_READ","features":[21]},{"name":"IORING_OP_REGISTER_BUFFERS","features":[21]},{"name":"IORING_OP_REGISTER_FILES","features":[21]},{"name":"IORING_OP_WRITE","features":[21]},{"name":"IORING_REF_KIND","features":[21]},{"name":"IORING_REF_RAW","features":[21]},{"name":"IORING_REF_REGISTERED","features":[21]},{"name":"IORING_REGISTERED_BUFFER","features":[21]},{"name":"IORING_SQE_FLAGS","features":[21]},{"name":"IORING_VERSION","features":[21]},{"name":"IORING_VERSION_1","features":[21]},{"name":"IORING_VERSION_2","features":[21]},{"name":"IORING_VERSION_3","features":[21]},{"name":"IORING_VERSION_INVALID","features":[21]},{"name":"IOSQE_FLAGS_DRAIN_PRECEDING_OPS","features":[21]},{"name":"IOSQE_FLAGS_NONE","features":[21]},{"name":"InstallLogPolicy","features":[1,21]},{"name":"IoPriorityHintLow","features":[21]},{"name":"IoPriorityHintNormal","features":[21]},{"name":"IoPriorityHintVeryLow","features":[21]},{"name":"IsIoRingOpSupported","features":[1,21]},{"name":"KCRM_MARSHAL_HEADER","features":[21]},{"name":"KCRM_PROTOCOL_BLOB","features":[21]},{"name":"KCRM_TRANSACTION_BLOB","features":[21]},{"name":"KTM_MARSHAL_BLOB_VERSION_MAJOR","features":[21]},{"name":"KTM_MARSHAL_BLOB_VERSION_MINOR","features":[21]},{"name":"LOCKFILE_EXCLUSIVE_LOCK","features":[21]},{"name":"LOCKFILE_FAIL_IMMEDIATELY","features":[21]},{"name":"LOCK_FILE_FLAGS","features":[21]},{"name":"LOG_MANAGEMENT_CALLBACKS","features":[1,21]},{"name":"LOG_POLICY_OVERWRITE","features":[21]},{"name":"LOG_POLICY_PERSIST","features":[21]},{"name":"LPPROGRESS_ROUTINE","features":[1,21]},{"name":"LPPROGRESS_ROUTINE_CALLBACK_REASON","features":[21]},{"name":"LZClose","features":[21]},{"name":"LZCopy","features":[21]},{"name":"LZDone","features":[21]},{"name":"LZERROR_BADINHANDLE","features":[21]},{"name":"LZERROR_BADOUTHANDLE","features":[21]},{"name":"LZERROR_BADVALUE","features":[21]},{"name":"LZERROR_GLOBALLOC","features":[21]},{"name":"LZERROR_GLOBLOCK","features":[21]},{"name":"LZERROR_READ","features":[21]},{"name":"LZERROR_UNKNOWNALG","features":[21]},{"name":"LZERROR_WRITE","features":[21]},{"name":"LZInit","features":[21]},{"name":"LZOPENFILE_STYLE","features":[21]},{"name":"LZOpenFileA","features":[21]},{"name":"LZOpenFileW","features":[21]},{"name":"LZRead","features":[21]},{"name":"LZSeek","features":[21]},{"name":"LZStart","features":[21]},{"name":"LocalFileTimeToFileTime","features":[1,21]},{"name":"LockFile","features":[1,21]},{"name":"LockFileEx","features":[1,21,6]},{"name":"LogTailAdvanceFailure","features":[1,21]},{"name":"LsnBlockOffset","features":[21]},{"name":"LsnContainer","features":[21]},{"name":"LsnCreate","features":[21]},{"name":"LsnEqual","features":[1,21]},{"name":"LsnGreater","features":[1,21]},{"name":"LsnIncrement","features":[21]},{"name":"LsnInvalid","features":[1,21]},{"name":"LsnLess","features":[1,21]},{"name":"LsnNull","features":[1,21]},{"name":"LsnRecordSequence","features":[21]},{"name":"MAXIMUM_REPARSE_DATA_BUFFER_SIZE","features":[21]},{"name":"MAXMEDIALABEL","features":[21]},{"name":"MAX_RESOURCEMANAGER_DESCRIPTION_LENGTH","features":[21]},{"name":"MAX_SID_SIZE","features":[21]},{"name":"MAX_TRANSACTION_DESCRIPTION_LENGTH","features":[21]},{"name":"MOVEFILE_COPY_ALLOWED","features":[21]},{"name":"MOVEFILE_CREATE_HARDLINK","features":[21]},{"name":"MOVEFILE_DELAY_UNTIL_REBOOT","features":[21]},{"name":"MOVEFILE_FAIL_IF_NOT_TRACKABLE","features":[21]},{"name":"MOVEFILE_REPLACE_EXISTING","features":[21]},{"name":"MOVEFILE_WRITE_THROUGH","features":[21]},{"name":"MOVE_FILE_FLAGS","features":[21]},{"name":"MaximumFileIdType","features":[21]},{"name":"MaximumFileInfoByHandleClass","features":[21]},{"name":"MaximumIoPriorityHintType","features":[21]},{"name":"MediaLabelInfo","features":[21]},{"name":"MoveFileA","features":[1,21]},{"name":"MoveFileExA","features":[1,21]},{"name":"MoveFileExW","features":[1,21]},{"name":"MoveFileFromAppW","features":[1,21]},{"name":"MoveFileTransactedA","features":[1,21]},{"name":"MoveFileTransactedW","features":[1,21]},{"name":"MoveFileW","features":[1,21]},{"name":"MoveFileWithProgressA","features":[1,21]},{"name":"MoveFileWithProgressW","features":[1,21]},{"name":"NAME_CACHE_CONTEXT","features":[21]},{"name":"NTMSMLI_MAXAPPDESCR","features":[21]},{"name":"NTMSMLI_MAXIDSIZE","features":[21]},{"name":"NTMSMLI_MAXTYPE","features":[21]},{"name":"NTMS_ALLOCATE_ERROR_IF_UNAVAILABLE","features":[21]},{"name":"NTMS_ALLOCATE_FROMSCRATCH","features":[21]},{"name":"NTMS_ALLOCATE_NEW","features":[21]},{"name":"NTMS_ALLOCATE_NEXT","features":[21]},{"name":"NTMS_ALLOCATION_INFORMATION","features":[21]},{"name":"NTMS_APPLICATIONNAME_LENGTH","features":[21]},{"name":"NTMS_ASYNCOP_MOUNT","features":[21]},{"name":"NTMS_ASYNCSTATE_COMPLETE","features":[21]},{"name":"NTMS_ASYNCSTATE_INPROCESS","features":[21]},{"name":"NTMS_ASYNCSTATE_QUEUED","features":[21]},{"name":"NTMS_ASYNCSTATE_WAIT_OPERATOR","features":[21]},{"name":"NTMS_ASYNCSTATE_WAIT_RESOURCE","features":[21]},{"name":"NTMS_ASYNC_IO","features":[1,21]},{"name":"NTMS_BARCODESTATE_OK","features":[21]},{"name":"NTMS_BARCODESTATE_UNREADABLE","features":[21]},{"name":"NTMS_BARCODE_LENGTH","features":[21]},{"name":"NTMS_CHANGER","features":[21]},{"name":"NTMS_CHANGERINFORMATIONA","features":[21]},{"name":"NTMS_CHANGERINFORMATIONW","features":[21]},{"name":"NTMS_CHANGERTYPEINFORMATIONA","features":[21]},{"name":"NTMS_CHANGERTYPEINFORMATIONW","features":[21]},{"name":"NTMS_CHANGER_TYPE","features":[21]},{"name":"NTMS_COMPUTER","features":[21]},{"name":"NTMS_COMPUTERINFORMATION","features":[21]},{"name":"NTMS_COMPUTERNAME_LENGTH","features":[21]},{"name":"NTMS_CONTROL_ACCESS","features":[21]},{"name":"NTMS_CREATE_NEW","features":[21]},{"name":"NTMS_DEALLOCATE_TOSCRATCH","features":[21]},{"name":"NTMS_DESCRIPTION_LENGTH","features":[21]},{"name":"NTMS_DEVICENAME_LENGTH","features":[21]},{"name":"NTMS_DISMOUNT_DEFERRED","features":[21]},{"name":"NTMS_DISMOUNT_IMMEDIATE","features":[21]},{"name":"NTMS_DOORSTATE_CLOSED","features":[21]},{"name":"NTMS_DOORSTATE_OPEN","features":[21]},{"name":"NTMS_DOORSTATE_UNKNOWN","features":[21]},{"name":"NTMS_DRIVE","features":[21]},{"name":"NTMS_DRIVEINFORMATIONA","features":[1,21]},{"name":"NTMS_DRIVEINFORMATIONW","features":[1,21]},{"name":"NTMS_DRIVESTATE_BEING_CLEANED","features":[21]},{"name":"NTMS_DRIVESTATE_DISMOUNTABLE","features":[21]},{"name":"NTMS_DRIVESTATE_DISMOUNTED","features":[21]},{"name":"NTMS_DRIVESTATE_LOADED","features":[21]},{"name":"NTMS_DRIVESTATE_MOUNTED","features":[21]},{"name":"NTMS_DRIVESTATE_UNLOADED","features":[21]},{"name":"NTMS_DRIVETYPEINFORMATIONA","features":[21]},{"name":"NTMS_DRIVETYPEINFORMATIONW","features":[21]},{"name":"NTMS_DRIVE_TYPE","features":[21]},{"name":"NTMS_EJECT_ASK_USER","features":[21]},{"name":"NTMS_EJECT_FORCE","features":[21]},{"name":"NTMS_EJECT_IMMEDIATE","features":[21]},{"name":"NTMS_EJECT_QUEUE","features":[21]},{"name":"NTMS_EJECT_START","features":[21]},{"name":"NTMS_EJECT_STOP","features":[21]},{"name":"NTMS_ENUM_DEFAULT","features":[21]},{"name":"NTMS_ENUM_ROOTPOOL","features":[21]},{"name":"NTMS_ERROR_ON_DUPLICATE","features":[21]},{"name":"NTMS_EVENT_COMPLETE","features":[21]},{"name":"NTMS_EVENT_SIGNAL","features":[21]},{"name":"NTMS_FILESYSTEM_INFO","features":[21]},{"name":"NTMS_I1_LIBRARYINFORMATION","features":[1,21]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONA","features":[1,21]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONW","features":[1,21]},{"name":"NTMS_I1_MESSAGE_LENGTH","features":[21]},{"name":"NTMS_I1_OBJECTINFORMATIONA","features":[1,21]},{"name":"NTMS_I1_OBJECTINFORMATIONW","features":[1,21]},{"name":"NTMS_I1_OPREQUESTINFORMATIONA","features":[1,21]},{"name":"NTMS_I1_OPREQUESTINFORMATIONW","features":[1,21]},{"name":"NTMS_I1_PARTITIONINFORMATIONA","features":[21]},{"name":"NTMS_I1_PARTITIONINFORMATIONW","features":[21]},{"name":"NTMS_I1_PMIDINFORMATIONA","features":[21]},{"name":"NTMS_I1_PMIDINFORMATIONW","features":[21]},{"name":"NTMS_IEDOOR","features":[21]},{"name":"NTMS_IEDOORINFORMATION","features":[21]},{"name":"NTMS_IEPORT","features":[21]},{"name":"NTMS_IEPORTINFORMATION","features":[21]},{"name":"NTMS_INITIALIZING","features":[21]},{"name":"NTMS_INJECT_RETRACT","features":[21]},{"name":"NTMS_INJECT_START","features":[21]},{"name":"NTMS_INJECT_STARTMANY","features":[21]},{"name":"NTMS_INJECT_STOP","features":[21]},{"name":"NTMS_INVENTORY_DEFAULT","features":[21]},{"name":"NTMS_INVENTORY_FAST","features":[21]},{"name":"NTMS_INVENTORY_MAX","features":[21]},{"name":"NTMS_INVENTORY_NONE","features":[21]},{"name":"NTMS_INVENTORY_OMID","features":[21]},{"name":"NTMS_INVENTORY_SLOT","features":[21]},{"name":"NTMS_INVENTORY_STOP","features":[21]},{"name":"NTMS_LIBRARY","features":[21]},{"name":"NTMS_LIBRARYFLAG_AUTODETECTCHANGE","features":[21]},{"name":"NTMS_LIBRARYFLAG_CLEANERPRESENT","features":[21]},{"name":"NTMS_LIBRARYFLAG_FIXEDOFFLINE","features":[21]},{"name":"NTMS_LIBRARYFLAG_IGNORECLEANERUSESREMAINING","features":[21]},{"name":"NTMS_LIBRARYFLAG_RECOGNIZECLEANERBARCODE","features":[21]},{"name":"NTMS_LIBRARYINFORMATION","features":[1,21]},{"name":"NTMS_LIBRARYTYPE_OFFLINE","features":[21]},{"name":"NTMS_LIBRARYTYPE_ONLINE","features":[21]},{"name":"NTMS_LIBRARYTYPE_STANDALONE","features":[21]},{"name":"NTMS_LIBRARYTYPE_UNKNOWN","features":[21]},{"name":"NTMS_LIBREQFLAGS_NOAUTOPURGE","features":[21]},{"name":"NTMS_LIBREQFLAGS_NOFAILEDPURGE","features":[21]},{"name":"NTMS_LIBREQUEST","features":[21]},{"name":"NTMS_LIBREQUESTINFORMATIONA","features":[1,21]},{"name":"NTMS_LIBREQUESTINFORMATIONW","features":[1,21]},{"name":"NTMS_LMIDINFORMATION","features":[21]},{"name":"NTMS_LM_CANCELLED","features":[21]},{"name":"NTMS_LM_CLASSIFY","features":[21]},{"name":"NTMS_LM_CLEANDRIVE","features":[21]},{"name":"NTMS_LM_DEFERRED","features":[21]},{"name":"NTMS_LM_DEFFERED","features":[21]},{"name":"NTMS_LM_DISABLECHANGER","features":[21]},{"name":"NTMS_LM_DISABLEDRIVE","features":[21]},{"name":"NTMS_LM_DISABLELIBRARY","features":[21]},{"name":"NTMS_LM_DISABLEMEDIA","features":[21]},{"name":"NTMS_LM_DISMOUNT","features":[21]},{"name":"NTMS_LM_DOORACCESS","features":[21]},{"name":"NTMS_LM_EJECT","features":[21]},{"name":"NTMS_LM_EJECTCLEANER","features":[21]},{"name":"NTMS_LM_ENABLECHANGER","features":[21]},{"name":"NTMS_LM_ENABLEDRIVE","features":[21]},{"name":"NTMS_LM_ENABLELIBRARY","features":[21]},{"name":"NTMS_LM_ENABLEMEDIA","features":[21]},{"name":"NTMS_LM_FAILED","features":[21]},{"name":"NTMS_LM_INJECT","features":[21]},{"name":"NTMS_LM_INJECTCLEANER","features":[21]},{"name":"NTMS_LM_INPROCESS","features":[21]},{"name":"NTMS_LM_INVALID","features":[21]},{"name":"NTMS_LM_INVENTORY","features":[21]},{"name":"NTMS_LM_MAXWORKITEM","features":[21]},{"name":"NTMS_LM_MOUNT","features":[21]},{"name":"NTMS_LM_PASSED","features":[21]},{"name":"NTMS_LM_PROCESSOMID","features":[21]},{"name":"NTMS_LM_QUEUED","features":[21]},{"name":"NTMS_LM_RELEASECLEANER","features":[21]},{"name":"NTMS_LM_REMOVE","features":[21]},{"name":"NTMS_LM_RESERVECLEANER","features":[21]},{"name":"NTMS_LM_STOPPED","features":[21]},{"name":"NTMS_LM_UPDATEOMID","features":[21]},{"name":"NTMS_LM_WAITING","features":[21]},{"name":"NTMS_LM_WRITESCRATCH","features":[21]},{"name":"NTMS_LOGICAL_MEDIA","features":[21]},{"name":"NTMS_MAXATTR_LENGTH","features":[21]},{"name":"NTMS_MAXATTR_NAMELEN","features":[21]},{"name":"NTMS_MEDIAPOOLINFORMATION","features":[21]},{"name":"NTMS_MEDIARW_READONLY","features":[21]},{"name":"NTMS_MEDIARW_REWRITABLE","features":[21]},{"name":"NTMS_MEDIARW_UNKNOWN","features":[21]},{"name":"NTMS_MEDIARW_WRITEONCE","features":[21]},{"name":"NTMS_MEDIASTATE_IDLE","features":[21]},{"name":"NTMS_MEDIASTATE_INUSE","features":[21]},{"name":"NTMS_MEDIASTATE_LOADED","features":[21]},{"name":"NTMS_MEDIASTATE_MOUNTED","features":[21]},{"name":"NTMS_MEDIASTATE_OPERROR","features":[21]},{"name":"NTMS_MEDIASTATE_OPREQ","features":[21]},{"name":"NTMS_MEDIASTATE_UNLOADED","features":[21]},{"name":"NTMS_MEDIATYPEINFORMATION","features":[21]},{"name":"NTMS_MEDIA_POOL","features":[21]},{"name":"NTMS_MEDIA_TYPE","features":[21]},{"name":"NTMS_MESSAGE_LENGTH","features":[21]},{"name":"NTMS_MODIFY_ACCESS","features":[21]},{"name":"NTMS_MOUNT_ERROR_IF_OFFLINE","features":[21]},{"name":"NTMS_MOUNT_ERROR_IF_UNAVAILABLE","features":[21]},{"name":"NTMS_MOUNT_ERROR_NOT_AVAILABLE","features":[21]},{"name":"NTMS_MOUNT_ERROR_OFFLINE","features":[21]},{"name":"NTMS_MOUNT_INFORMATION","features":[21]},{"name":"NTMS_MOUNT_NOWAIT","features":[21]},{"name":"NTMS_MOUNT_READ","features":[21]},{"name":"NTMS_MOUNT_SPECIFIC_DRIVE","features":[21]},{"name":"NTMS_MOUNT_WRITE","features":[21]},{"name":"NTMS_NEEDS_SERVICE","features":[21]},{"name":"NTMS_NOTIFICATIONINFORMATION","features":[21]},{"name":"NTMS_NOT_PRESENT","features":[21]},{"name":"NTMS_NUMBER_OF_OBJECT_TYPES","features":[21]},{"name":"NTMS_OBJECT","features":[21]},{"name":"NTMS_OBJECTINFORMATIONA","features":[1,21]},{"name":"NTMS_OBJECTINFORMATIONW","features":[1,21]},{"name":"NTMS_OBJECTNAME_LENGTH","features":[21]},{"name":"NTMS_OBJ_DELETE","features":[21]},{"name":"NTMS_OBJ_INSERT","features":[21]},{"name":"NTMS_OBJ_UPDATE","features":[21]},{"name":"NTMS_OMIDLABELID_LENGTH","features":[21]},{"name":"NTMS_OMIDLABELINFO_LENGTH","features":[21]},{"name":"NTMS_OMIDLABELTYPE_LENGTH","features":[21]},{"name":"NTMS_OMID_TYPE","features":[21]},{"name":"NTMS_OMID_TYPE_FILESYSTEM_INFO","features":[21]},{"name":"NTMS_OMID_TYPE_RAW_LABEL","features":[21]},{"name":"NTMS_OPEN_ALWAYS","features":[21]},{"name":"NTMS_OPEN_EXISTING","features":[21]},{"name":"NTMS_OPREQFLAGS_NOALERTS","features":[21]},{"name":"NTMS_OPREQFLAGS_NOAUTOPURGE","features":[21]},{"name":"NTMS_OPREQFLAGS_NOFAILEDPURGE","features":[21]},{"name":"NTMS_OPREQFLAGS_NOTRAYICON","features":[21]},{"name":"NTMS_OPREQUEST","features":[21]},{"name":"NTMS_OPREQUESTINFORMATIONA","features":[1,21]},{"name":"NTMS_OPREQUESTINFORMATIONW","features":[1,21]},{"name":"NTMS_OPREQ_CLEANER","features":[21]},{"name":"NTMS_OPREQ_DEVICESERVICE","features":[21]},{"name":"NTMS_OPREQ_MESSAGE","features":[21]},{"name":"NTMS_OPREQ_MOVEMEDIA","features":[21]},{"name":"NTMS_OPREQ_NEWMEDIA","features":[21]},{"name":"NTMS_OPREQ_UNKNOWN","features":[21]},{"name":"NTMS_OPSTATE_ACTIVE","features":[21]},{"name":"NTMS_OPSTATE_COMPLETE","features":[21]},{"name":"NTMS_OPSTATE_INPROGRESS","features":[21]},{"name":"NTMS_OPSTATE_REFUSED","features":[21]},{"name":"NTMS_OPSTATE_SUBMITTED","features":[21]},{"name":"NTMS_OPSTATE_UNKNOWN","features":[21]},{"name":"NTMS_PARTITION","features":[21]},{"name":"NTMS_PARTITIONINFORMATIONA","features":[21]},{"name":"NTMS_PARTITIONINFORMATIONW","features":[21]},{"name":"NTMS_PARTSTATE_ALLOCATED","features":[21]},{"name":"NTMS_PARTSTATE_AVAILABLE","features":[21]},{"name":"NTMS_PARTSTATE_COMPLETE","features":[21]},{"name":"NTMS_PARTSTATE_DECOMMISSIONED","features":[21]},{"name":"NTMS_PARTSTATE_FOREIGN","features":[21]},{"name":"NTMS_PARTSTATE_IMPORT","features":[21]},{"name":"NTMS_PARTSTATE_INCOMPATIBLE","features":[21]},{"name":"NTMS_PARTSTATE_RESERVED","features":[21]},{"name":"NTMS_PARTSTATE_UNKNOWN","features":[21]},{"name":"NTMS_PARTSTATE_UNPREPARED","features":[21]},{"name":"NTMS_PHYSICAL_MEDIA","features":[21]},{"name":"NTMS_PMIDINFORMATIONA","features":[21]},{"name":"NTMS_PMIDINFORMATIONW","features":[21]},{"name":"NTMS_POOLHIERARCHY_LENGTH","features":[21]},{"name":"NTMS_POOLPOLICY_KEEPOFFLINEIMPORT","features":[21]},{"name":"NTMS_POOLPOLICY_PURGEOFFLINESCRATCH","features":[21]},{"name":"NTMS_POOLTYPE_APPLICATION","features":[21]},{"name":"NTMS_POOLTYPE_FOREIGN","features":[21]},{"name":"NTMS_POOLTYPE_IMPORT","features":[21]},{"name":"NTMS_POOLTYPE_SCRATCH","features":[21]},{"name":"NTMS_POOLTYPE_UNKNOWN","features":[21]},{"name":"NTMS_PORTCONTENT_EMPTY","features":[21]},{"name":"NTMS_PORTCONTENT_FULL","features":[21]},{"name":"NTMS_PORTCONTENT_UNKNOWN","features":[21]},{"name":"NTMS_PORTPOSITION_EXTENDED","features":[21]},{"name":"NTMS_PORTPOSITION_RETRACTED","features":[21]},{"name":"NTMS_PORTPOSITION_UNKNOWN","features":[21]},{"name":"NTMS_PRIORITY_DEFAULT","features":[21]},{"name":"NTMS_PRIORITY_HIGH","features":[21]},{"name":"NTMS_PRIORITY_HIGHEST","features":[21]},{"name":"NTMS_PRIORITY_LOW","features":[21]},{"name":"NTMS_PRIORITY_LOWEST","features":[21]},{"name":"NTMS_PRIORITY_NORMAL","features":[21]},{"name":"NTMS_PRODUCTNAME_LENGTH","features":[21]},{"name":"NTMS_READY","features":[21]},{"name":"NTMS_REVISION_LENGTH","features":[21]},{"name":"NTMS_SEQUENCE_LENGTH","features":[21]},{"name":"NTMS_SERIALNUMBER_LENGTH","features":[21]},{"name":"NTMS_SESSION_QUERYEXPEDITE","features":[21]},{"name":"NTMS_SLOTSTATE_EMPTY","features":[21]},{"name":"NTMS_SLOTSTATE_FULL","features":[21]},{"name":"NTMS_SLOTSTATE_NEEDSINVENTORY","features":[21]},{"name":"NTMS_SLOTSTATE_NOTPRESENT","features":[21]},{"name":"NTMS_SLOTSTATE_UNKNOWN","features":[21]},{"name":"NTMS_STORAGESLOT","features":[21]},{"name":"NTMS_STORAGESLOTINFORMATION","features":[21]},{"name":"NTMS_UIDEST_ADD","features":[21]},{"name":"NTMS_UIDEST_DELETE","features":[21]},{"name":"NTMS_UIDEST_DELETEALL","features":[21]},{"name":"NTMS_UIOPERATION_MAX","features":[21]},{"name":"NTMS_UITYPE_ERR","features":[21]},{"name":"NTMS_UITYPE_INFO","features":[21]},{"name":"NTMS_UITYPE_INVALID","features":[21]},{"name":"NTMS_UITYPE_MAX","features":[21]},{"name":"NTMS_UITYPE_REQ","features":[21]},{"name":"NTMS_UI_DESTINATION","features":[21]},{"name":"NTMS_UNKNOWN","features":[21]},{"name":"NTMS_UNKNOWN_DRIVE","features":[21]},{"name":"NTMS_USERNAME_LENGTH","features":[21]},{"name":"NTMS_USE_ACCESS","features":[21]},{"name":"NTMS_VENDORNAME_LENGTH","features":[21]},{"name":"NetConnectionEnum","features":[21]},{"name":"NetFileClose","features":[21]},{"name":"NetFileEnum","features":[21]},{"name":"NetFileGetInfo","features":[21]},{"name":"NetServerAliasAdd","features":[21]},{"name":"NetServerAliasDel","features":[21]},{"name":"NetServerAliasEnum","features":[21]},{"name":"NetSessionDel","features":[21]},{"name":"NetSessionEnum","features":[21]},{"name":"NetSessionGetInfo","features":[21]},{"name":"NetShareAdd","features":[21]},{"name":"NetShareCheck","features":[21]},{"name":"NetShareDel","features":[21]},{"name":"NetShareDelEx","features":[21]},{"name":"NetShareDelSticky","features":[21]},{"name":"NetShareEnum","features":[21]},{"name":"NetShareEnumSticky","features":[21]},{"name":"NetShareGetInfo","features":[21]},{"name":"NetShareSetInfo","features":[21]},{"name":"NetStatisticsGet","features":[21]},{"name":"NtmsAccessMask","features":[21]},{"name":"NtmsAllocateOptions","features":[21]},{"name":"NtmsAllocationPolicy","features":[21]},{"name":"NtmsAsyncOperations","features":[21]},{"name":"NtmsAsyncStatus","features":[21]},{"name":"NtmsBarCodeState","features":[21]},{"name":"NtmsCreateNtmsMediaOptions","features":[21]},{"name":"NtmsCreateOptions","features":[21]},{"name":"NtmsDeallocationPolicy","features":[21]},{"name":"NtmsDismountOptions","features":[21]},{"name":"NtmsDoorState","features":[21]},{"name":"NtmsDriveState","features":[21]},{"name":"NtmsDriveType","features":[21]},{"name":"NtmsEjectOperation","features":[21]},{"name":"NtmsEnumerateOption","features":[21]},{"name":"NtmsInjectOperation","features":[21]},{"name":"NtmsInventoryMethod","features":[21]},{"name":"NtmsLibRequestFlags","features":[21]},{"name":"NtmsLibraryFlags","features":[21]},{"name":"NtmsLibraryType","features":[21]},{"name":"NtmsLmOperation","features":[21]},{"name":"NtmsLmState","features":[21]},{"name":"NtmsMediaPoolPolicy","features":[21]},{"name":"NtmsMediaState","features":[21]},{"name":"NtmsMountOptions","features":[21]},{"name":"NtmsMountPriority","features":[21]},{"name":"NtmsNotificationOperations","features":[21]},{"name":"NtmsObjectsTypes","features":[21]},{"name":"NtmsOpRequestFlags","features":[21]},{"name":"NtmsOperationalState","features":[21]},{"name":"NtmsOpreqCommand","features":[21]},{"name":"NtmsOpreqState","features":[21]},{"name":"NtmsPartitionState","features":[21]},{"name":"NtmsPoolType","features":[21]},{"name":"NtmsPortContent","features":[21]},{"name":"NtmsPortPosition","features":[21]},{"name":"NtmsReadWriteCharacteristics","features":[21]},{"name":"NtmsSessionOptions","features":[21]},{"name":"NtmsSlotState","features":[21]},{"name":"NtmsUIOperations","features":[21]},{"name":"NtmsUITypes","features":[21]},{"name":"OFSTRUCT","features":[21]},{"name":"OF_CANCEL","features":[21]},{"name":"OF_CREATE","features":[21]},{"name":"OF_DELETE","features":[21]},{"name":"OF_EXIST","features":[21]},{"name":"OF_PARSE","features":[21]},{"name":"OF_PROMPT","features":[21]},{"name":"OF_READ","features":[21]},{"name":"OF_READWRITE","features":[21]},{"name":"OF_REOPEN","features":[21]},{"name":"OF_SHARE_COMPAT","features":[21]},{"name":"OF_SHARE_DENY_NONE","features":[21]},{"name":"OF_SHARE_DENY_READ","features":[21]},{"name":"OF_SHARE_DENY_WRITE","features":[21]},{"name":"OF_SHARE_EXCLUSIVE","features":[21]},{"name":"OF_VERIFY","features":[21]},{"name":"OF_WRITE","features":[21]},{"name":"OPEN_ALWAYS","features":[21]},{"name":"OPEN_EXISTING","features":[21]},{"name":"ObjectIdType","features":[21]},{"name":"OpenEncryptedFileRawA","features":[21]},{"name":"OpenEncryptedFileRawW","features":[21]},{"name":"OpenEnlistment","features":[1,21]},{"name":"OpenFile","features":[21]},{"name":"OpenFileById","features":[1,4,21]},{"name":"OpenResourceManager","features":[1,21]},{"name":"OpenTransaction","features":[1,21]},{"name":"OpenTransactionManager","features":[1,21]},{"name":"OpenTransactionManagerById","features":[1,21]},{"name":"PARTITION_BASIC_DATA_GUID","features":[21]},{"name":"PARTITION_BSP_GUID","features":[21]},{"name":"PARTITION_CLUSTER_GUID","features":[21]},{"name":"PARTITION_DPP_GUID","features":[21]},{"name":"PARTITION_ENTRY_UNUSED_GUID","features":[21]},{"name":"PARTITION_LDM_DATA_GUID","features":[21]},{"name":"PARTITION_LDM_METADATA_GUID","features":[21]},{"name":"PARTITION_LEGACY_BL_GUID","features":[21]},{"name":"PARTITION_LEGACY_BL_GUID_BACKUP","features":[21]},{"name":"PARTITION_MAIN_OS_GUID","features":[21]},{"name":"PARTITION_MSFT_RECOVERY_GUID","features":[21]},{"name":"PARTITION_MSFT_RESERVED_GUID","features":[21]},{"name":"PARTITION_MSFT_SNAPSHOT_GUID","features":[21]},{"name":"PARTITION_OS_DATA_GUID","features":[21]},{"name":"PARTITION_PATCH_GUID","features":[21]},{"name":"PARTITION_PRE_INSTALLED_GUID","features":[21]},{"name":"PARTITION_SBL_CACHE_HDD_GUID","features":[21]},{"name":"PARTITION_SBL_CACHE_SSD_GUID","features":[21]},{"name":"PARTITION_SBL_CACHE_SSD_RESERVED_GUID","features":[21]},{"name":"PARTITION_SERVICING_FILES_GUID","features":[21]},{"name":"PARTITION_SERVICING_METADATA_GUID","features":[21]},{"name":"PARTITION_SERVICING_RESERVE_GUID","features":[21]},{"name":"PARTITION_SERVICING_STAGING_ROOT_GUID","features":[21]},{"name":"PARTITION_SPACES_DATA_GUID","features":[21]},{"name":"PARTITION_SPACES_GUID","features":[21]},{"name":"PARTITION_SYSTEM_GUID","features":[21]},{"name":"PARTITION_WINDOWS_SYSTEM_GUID","features":[21]},{"name":"PCLFS_COMPLETION_ROUTINE","features":[21]},{"name":"PCOPYFILE2_PROGRESS_ROUTINE","features":[1,21]},{"name":"PERM_FILE_CREATE","features":[21]},{"name":"PERM_FILE_READ","features":[21]},{"name":"PERM_FILE_WRITE","features":[21]},{"name":"PFE_EXPORT_FUNC","features":[21]},{"name":"PFE_IMPORT_FUNC","features":[21]},{"name":"PFN_IO_COMPLETION","features":[1,21]},{"name":"PIPE_ACCESS_DUPLEX","features":[21]},{"name":"PIPE_ACCESS_INBOUND","features":[21]},{"name":"PIPE_ACCESS_OUTBOUND","features":[21]},{"name":"PLOG_FULL_HANDLER_CALLBACK","features":[1,21]},{"name":"PLOG_TAIL_ADVANCE_CALLBACK","features":[1,21]},{"name":"PLOG_UNPINNED_CALLBACK","features":[1,21]},{"name":"PREPARE_TAPE_OPERATION","features":[21]},{"name":"PRIORITY_HINT","features":[21]},{"name":"PopIoRingCompletion","features":[21]},{"name":"PrePrepareComplete","features":[1,21]},{"name":"PrePrepareEnlistment","features":[1,21]},{"name":"PrepareComplete","features":[1,21]},{"name":"PrepareEnlistment","features":[1,21]},{"name":"PrepareLogArchive","features":[1,21]},{"name":"PrepareTape","features":[1,21]},{"name":"QUIC","features":[21]},{"name":"QueryDosDeviceA","features":[21]},{"name":"QueryDosDeviceW","features":[21]},{"name":"QueryIoRingCapabilities","features":[21]},{"name":"QueryLogPolicy","features":[1,21]},{"name":"QueryRecoveryAgentsOnEncryptedFile","features":[4,21]},{"name":"QueryUsersOnEncryptedFile","features":[4,21]},{"name":"READ_CONTROL","features":[21]},{"name":"READ_DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[21]},{"name":"REPARSE_GUID_DATA_BUFFER","features":[21]},{"name":"REPLACEFILE_IGNORE_ACL_ERRORS","features":[21]},{"name":"REPLACEFILE_IGNORE_MERGE_ERRORS","features":[21]},{"name":"REPLACEFILE_WRITE_THROUGH","features":[21]},{"name":"REPLACE_FILE_FLAGS","features":[21]},{"name":"RESOURCE_MANAGER_COMMUNICATION","features":[21]},{"name":"RESOURCE_MANAGER_MAXIMUM_OPTION","features":[21]},{"name":"RESOURCE_MANAGER_OBJECT_PATH","features":[21]},{"name":"RESOURCE_MANAGER_VOLATILE","features":[21]},{"name":"ReOpenFile","features":[1,21]},{"name":"ReadDirectoryChangesExW","features":[1,21,6]},{"name":"ReadDirectoryChangesW","features":[1,21,6]},{"name":"ReadDirectoryNotifyExtendedInformation","features":[21]},{"name":"ReadDirectoryNotifyFullInformation","features":[21]},{"name":"ReadDirectoryNotifyInformation","features":[21]},{"name":"ReadDirectoryNotifyMaximumInformation","features":[21]},{"name":"ReadEncryptedFileRaw","features":[21]},{"name":"ReadFile","features":[1,21,6]},{"name":"ReadFileEx","features":[1,21,6]},{"name":"ReadFileScatter","features":[1,21,6]},{"name":"ReadLogArchiveMetadata","features":[1,21]},{"name":"ReadLogNotification","features":[1,21,6]},{"name":"ReadLogRecord","features":[1,21,6]},{"name":"ReadLogRestartArea","features":[1,21,6]},{"name":"ReadNextLogRecord","features":[1,21,6]},{"name":"ReadOnlyEnlistment","features":[1,21]},{"name":"ReadPreviousLogRestartArea","features":[1,21,6]},{"name":"RecoverEnlistment","features":[1,21]},{"name":"RecoverResourceManager","features":[1,21]},{"name":"RecoverTransactionManager","features":[1,21]},{"name":"RegisterForLogWriteNotification","features":[1,21]},{"name":"RegisterManageableLogClient","features":[1,21]},{"name":"RemoveDirectoryA","features":[1,21]},{"name":"RemoveDirectoryFromAppW","features":[1,21]},{"name":"RemoveDirectoryTransactedA","features":[1,21]},{"name":"RemoveDirectoryTransactedW","features":[1,21]},{"name":"RemoveDirectoryW","features":[1,21]},{"name":"RemoveLogContainer","features":[1,21]},{"name":"RemoveLogContainerSet","features":[1,21]},{"name":"RemoveLogPolicy","features":[1,21]},{"name":"RemoveUsersFromEncryptedFile","features":[4,21]},{"name":"RenameTransactionManager","features":[1,21]},{"name":"ReplaceFileA","features":[1,21]},{"name":"ReplaceFileFromAppW","features":[1,21]},{"name":"ReplaceFileW","features":[1,21]},{"name":"ReserveAndAppendLog","features":[1,21,6]},{"name":"ReserveAndAppendLogAligned","features":[1,21,6]},{"name":"RollbackComplete","features":[1,21]},{"name":"RollbackEnlistment","features":[1,21]},{"name":"RollbackTransaction","features":[1,21]},{"name":"RollbackTransactionAsync","features":[1,21]},{"name":"RollforwardTransactionManager","features":[1,21]},{"name":"SECURITY_ANONYMOUS","features":[21]},{"name":"SECURITY_CONTEXT_TRACKING","features":[21]},{"name":"SECURITY_DELEGATION","features":[21]},{"name":"SECURITY_EFFECTIVE_ONLY","features":[21]},{"name":"SECURITY_IDENTIFICATION","features":[21]},{"name":"SECURITY_IMPERSONATION","features":[21]},{"name":"SECURITY_SQOS_PRESENT","features":[21]},{"name":"SECURITY_VALID_SQOS_FLAGS","features":[21]},{"name":"SERVER_ALIAS_INFO_0","features":[1,21]},{"name":"SERVER_CERTIFICATE_INFO_0","features":[21]},{"name":"SERVER_CERTIFICATE_TYPE","features":[21]},{"name":"SESI1_NUM_ELEMENTS","features":[21]},{"name":"SESI2_NUM_ELEMENTS","features":[21]},{"name":"SESSION_INFO_0","features":[21]},{"name":"SESSION_INFO_1","features":[21]},{"name":"SESSION_INFO_10","features":[21]},{"name":"SESSION_INFO_2","features":[21]},{"name":"SESSION_INFO_502","features":[21]},{"name":"SESSION_INFO_USER_FLAGS","features":[21]},{"name":"SESS_GUEST","features":[21]},{"name":"SESS_NOENCRYPTION","features":[21]},{"name":"SET_FILE_POINTER_MOVE_METHOD","features":[21]},{"name":"SET_TAPE_DRIVE_INFORMATION","features":[21]},{"name":"SET_TAPE_MEDIA_INFORMATION","features":[21]},{"name":"SHARE_CURRENT_USES_PARMNUM","features":[21]},{"name":"SHARE_FILE_SD_PARMNUM","features":[21]},{"name":"SHARE_INFO_0","features":[21]},{"name":"SHARE_INFO_1","features":[21]},{"name":"SHARE_INFO_1004","features":[21]},{"name":"SHARE_INFO_1005","features":[21]},{"name":"SHARE_INFO_1006","features":[21]},{"name":"SHARE_INFO_1501","features":[4,21]},{"name":"SHARE_INFO_1503","features":[21]},{"name":"SHARE_INFO_2","features":[21]},{"name":"SHARE_INFO_501","features":[21]},{"name":"SHARE_INFO_502","features":[4,21]},{"name":"SHARE_INFO_503","features":[4,21]},{"name":"SHARE_INFO_PERMISSIONS","features":[21]},{"name":"SHARE_MAX_USES_PARMNUM","features":[21]},{"name":"SHARE_NETNAME_PARMNUM","features":[21]},{"name":"SHARE_PASSWD_PARMNUM","features":[21]},{"name":"SHARE_PATH_PARMNUM","features":[21]},{"name":"SHARE_PERMISSIONS_PARMNUM","features":[21]},{"name":"SHARE_QOS_POLICY_PARMNUM","features":[21]},{"name":"SHARE_REMARK_PARMNUM","features":[21]},{"name":"SHARE_SERVER_PARMNUM","features":[21]},{"name":"SHARE_TYPE","features":[21]},{"name":"SHARE_TYPE_PARMNUM","features":[21]},{"name":"SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM","features":[21]},{"name":"SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING","features":[21]},{"name":"SHI1005_FLAGS_CLUSTER_MANAGED","features":[21]},{"name":"SHI1005_FLAGS_COMPRESS_DATA","features":[21]},{"name":"SHI1005_FLAGS_DFS","features":[21]},{"name":"SHI1005_FLAGS_DFS_ROOT","features":[21]},{"name":"SHI1005_FLAGS_DISABLE_CLIENT_BUFFERING","features":[21]},{"name":"SHI1005_FLAGS_DISABLE_DIRECTORY_HANDLE_LEASING","features":[21]},{"name":"SHI1005_FLAGS_ENABLE_CA","features":[21]},{"name":"SHI1005_FLAGS_ENABLE_HASH","features":[21]},{"name":"SHI1005_FLAGS_ENCRYPT_DATA","features":[21]},{"name":"SHI1005_FLAGS_FORCE_LEVELII_OPLOCK","features":[21]},{"name":"SHI1005_FLAGS_FORCE_SHARED_DELETE","features":[21]},{"name":"SHI1005_FLAGS_IDENTITY_REMOTING","features":[21]},{"name":"SHI1005_FLAGS_ISOLATED_TRANSPORT","features":[21]},{"name":"SHI1005_FLAGS_RESERVED","features":[21]},{"name":"SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS","features":[21]},{"name":"SHI1_NUM_ELEMENTS","features":[21]},{"name":"SHI2_NUM_ELEMENTS","features":[21]},{"name":"SHI_USES_UNLIMITED","features":[21]},{"name":"SPECIFIC_RIGHTS_ALL","features":[21]},{"name":"STANDARD_RIGHTS_ALL","features":[21]},{"name":"STANDARD_RIGHTS_EXECUTE","features":[21]},{"name":"STANDARD_RIGHTS_READ","features":[21]},{"name":"STANDARD_RIGHTS_REQUIRED","features":[21]},{"name":"STANDARD_RIGHTS_WRITE","features":[21]},{"name":"STATSOPT_CLR","features":[21]},{"name":"STAT_SERVER_0","features":[21]},{"name":"STAT_WORKSTATION_0","features":[21]},{"name":"STORAGE_BUS_TYPE","features":[21]},{"name":"STREAM_INFO_LEVELS","features":[21]},{"name":"STYPE_DEVICE","features":[21]},{"name":"STYPE_DISKTREE","features":[21]},{"name":"STYPE_IPC","features":[21]},{"name":"STYPE_MASK","features":[21]},{"name":"STYPE_PRINTQ","features":[21]},{"name":"STYPE_RESERVED1","features":[21]},{"name":"STYPE_RESERVED2","features":[21]},{"name":"STYPE_RESERVED3","features":[21]},{"name":"STYPE_RESERVED4","features":[21]},{"name":"STYPE_RESERVED5","features":[21]},{"name":"STYPE_RESERVED_ALL","features":[21]},{"name":"STYPE_SPECIAL","features":[21]},{"name":"STYPE_TEMPORARY","features":[21]},{"name":"SYMBOLIC_LINK_FLAGS","features":[21]},{"name":"SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE","features":[21]},{"name":"SYMBOLIC_LINK_FLAG_DIRECTORY","features":[21]},{"name":"SYNCHRONIZE","features":[21]},{"name":"ScanLogContainers","features":[1,21]},{"name":"SearchPathA","features":[21]},{"name":"SearchPathW","features":[21]},{"name":"SetEncryptedFileMetadata","features":[4,21]},{"name":"SetEndOfFile","features":[1,21]},{"name":"SetEndOfLog","features":[1,21,6]},{"name":"SetEnlistmentRecoveryInformation","features":[1,21]},{"name":"SetFileApisToANSI","features":[21]},{"name":"SetFileApisToOEM","features":[21]},{"name":"SetFileAttributesA","features":[1,21]},{"name":"SetFileAttributesFromAppW","features":[1,21]},{"name":"SetFileAttributesTransactedA","features":[1,21]},{"name":"SetFileAttributesTransactedW","features":[1,21]},{"name":"SetFileAttributesW","features":[1,21]},{"name":"SetFileBandwidthReservation","features":[1,21]},{"name":"SetFileCompletionNotificationModes","features":[1,21]},{"name":"SetFileInformationByHandle","features":[1,21]},{"name":"SetFileIoOverlappedRange","features":[1,21]},{"name":"SetFilePointer","features":[1,21]},{"name":"SetFilePointerEx","features":[1,21]},{"name":"SetFileShortNameA","features":[1,21]},{"name":"SetFileShortNameW","features":[1,21]},{"name":"SetFileTime","features":[1,21]},{"name":"SetFileValidData","features":[1,21]},{"name":"SetIoRingCompletionEvent","features":[1,21]},{"name":"SetLogArchiveMode","features":[1,21]},{"name":"SetLogArchiveTail","features":[1,21]},{"name":"SetLogFileSizeWithPolicy","features":[1,21]},{"name":"SetResourceManagerCompletionPort","features":[1,21]},{"name":"SetSearchPathMode","features":[1,21]},{"name":"SetTapeParameters","features":[1,21]},{"name":"SetTapePosition","features":[1,21]},{"name":"SetTransactionInformation","features":[1,21]},{"name":"SetUserFileEncryptionKey","features":[4,21]},{"name":"SetUserFileEncryptionKeyEx","features":[4,21]},{"name":"SetVolumeLabelA","features":[1,21]},{"name":"SetVolumeLabelW","features":[1,21]},{"name":"SetVolumeMountPointA","features":[1,21]},{"name":"SetVolumeMountPointW","features":[1,21]},{"name":"SinglePhaseReject","features":[1,21]},{"name":"SubmitIoRing","features":[21]},{"name":"TAPEMARK_TYPE","features":[21]},{"name":"TAPE_ABSOLUTE_BLOCK","features":[21]},{"name":"TAPE_ABSOLUTE_POSITION","features":[21]},{"name":"TAPE_ERASE","features":[1,21]},{"name":"TAPE_ERASE_LONG","features":[21]},{"name":"TAPE_ERASE_SHORT","features":[21]},{"name":"TAPE_FILEMARKS","features":[21]},{"name":"TAPE_FIXED_PARTITIONS","features":[21]},{"name":"TAPE_FORMAT","features":[21]},{"name":"TAPE_GET_POSITION","features":[21]},{"name":"TAPE_INFORMATION_TYPE","features":[21]},{"name":"TAPE_INITIATOR_PARTITIONS","features":[21]},{"name":"TAPE_LOAD","features":[21]},{"name":"TAPE_LOCK","features":[21]},{"name":"TAPE_LOGICAL_BLOCK","features":[21]},{"name":"TAPE_LOGICAL_POSITION","features":[21]},{"name":"TAPE_LONG_FILEMARKS","features":[21]},{"name":"TAPE_POSITION_METHOD","features":[21]},{"name":"TAPE_POSITION_TYPE","features":[21]},{"name":"TAPE_PREPARE","features":[1,21]},{"name":"TAPE_REWIND","features":[21]},{"name":"TAPE_SELECT_PARTITIONS","features":[21]},{"name":"TAPE_SETMARKS","features":[21]},{"name":"TAPE_SET_POSITION","features":[1,21]},{"name":"TAPE_SHORT_FILEMARKS","features":[21]},{"name":"TAPE_SPACE_END_OF_DATA","features":[21]},{"name":"TAPE_SPACE_FILEMARKS","features":[21]},{"name":"TAPE_SPACE_RELATIVE_BLOCKS","features":[21]},{"name":"TAPE_SPACE_SEQUENTIAL_FMKS","features":[21]},{"name":"TAPE_SPACE_SEQUENTIAL_SMKS","features":[21]},{"name":"TAPE_SPACE_SETMARKS","features":[21]},{"name":"TAPE_TENSION","features":[21]},{"name":"TAPE_UNLOAD","features":[21]},{"name":"TAPE_UNLOCK","features":[21]},{"name":"TAPE_WRITE_MARKS","features":[1,21]},{"name":"TRANSACTIONMANAGER_OBJECT_PATH","features":[21]},{"name":"TRANSACTION_DO_NOT_PROMOTE","features":[21]},{"name":"TRANSACTION_MANAGER_COMMIT_DEFAULT","features":[21]},{"name":"TRANSACTION_MANAGER_COMMIT_LOWEST","features":[21]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_HIVES","features":[21]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_VOLUME","features":[21]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_PROGRESS","features":[21]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_RECOVERY","features":[21]},{"name":"TRANSACTION_MANAGER_MAXIMUM_OPTION","features":[21]},{"name":"TRANSACTION_MANAGER_VOLATILE","features":[21]},{"name":"TRANSACTION_MAXIMUM_OPTION","features":[21]},{"name":"TRANSACTION_NOTIFICATION","features":[21]},{"name":"TRANSACTION_NOTIFICATION_MARSHAL_ARGUMENT","features":[21]},{"name":"TRANSACTION_NOTIFICATION_PROPAGATE_ARGUMENT","features":[21]},{"name":"TRANSACTION_NOTIFICATION_RECOVERY_ARGUMENT","features":[21]},{"name":"TRANSACTION_NOTIFICATION_SAVEPOINT_ARGUMENT","features":[21]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_ARGUMENT","features":[21]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_FLAG_IS_CLUSTERED","features":[21]},{"name":"TRANSACTION_NOTIFY_COMMIT","features":[21]},{"name":"TRANSACTION_NOTIFY_COMMIT_COMPLETE","features":[21]},{"name":"TRANSACTION_NOTIFY_COMMIT_FINALIZE","features":[21]},{"name":"TRANSACTION_NOTIFY_COMMIT_REQUEST","features":[21]},{"name":"TRANSACTION_NOTIFY_DELEGATE_COMMIT","features":[21]},{"name":"TRANSACTION_NOTIFY_ENLIST_MASK","features":[21]},{"name":"TRANSACTION_NOTIFY_ENLIST_PREPREPARE","features":[21]},{"name":"TRANSACTION_NOTIFY_INDOUBT","features":[21]},{"name":"TRANSACTION_NOTIFY_LAST_RECOVER","features":[21]},{"name":"TRANSACTION_NOTIFY_MARSHAL","features":[21]},{"name":"TRANSACTION_NOTIFY_MASK","features":[21]},{"name":"TRANSACTION_NOTIFY_PREPARE","features":[21]},{"name":"TRANSACTION_NOTIFY_PREPARE_COMPLETE","features":[21]},{"name":"TRANSACTION_NOTIFY_PREPREPARE","features":[21]},{"name":"TRANSACTION_NOTIFY_PREPREPARE_COMPLETE","features":[21]},{"name":"TRANSACTION_NOTIFY_PROMOTE","features":[21]},{"name":"TRANSACTION_NOTIFY_PROMOTE_NEW","features":[21]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PULL","features":[21]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PUSH","features":[21]},{"name":"TRANSACTION_NOTIFY_RECOVER","features":[21]},{"name":"TRANSACTION_NOTIFY_RECOVER_QUERY","features":[21]},{"name":"TRANSACTION_NOTIFY_REQUEST_OUTCOME","features":[21]},{"name":"TRANSACTION_NOTIFY_RM_DISCONNECTED","features":[21]},{"name":"TRANSACTION_NOTIFY_ROLLBACK","features":[21]},{"name":"TRANSACTION_NOTIFY_ROLLBACK_COMPLETE","features":[21]},{"name":"TRANSACTION_NOTIFY_SINGLE_PHASE_COMMIT","features":[21]},{"name":"TRANSACTION_NOTIFY_TM_ONLINE","features":[21]},{"name":"TRANSACTION_OBJECT_PATH","features":[21]},{"name":"TRANSACTION_OUTCOME","features":[21]},{"name":"TRUNCATE_EXISTING","features":[21]},{"name":"TXFS_MINIVERSION","features":[21]},{"name":"TXFS_MINIVERSION_COMMITTED_VIEW","features":[21]},{"name":"TXFS_MINIVERSION_DEFAULT_VIEW","features":[21]},{"name":"TXFS_MINIVERSION_DIRTY_VIEW","features":[21]},{"name":"TXF_ID","features":[21]},{"name":"TXF_LOG_RECORD_AFFECTED_FILE","features":[21]},{"name":"TXF_LOG_RECORD_BASE","features":[21]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_ABORT","features":[21]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_COMMIT","features":[21]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_DATA","features":[21]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_PREPARE","features":[21]},{"name":"TXF_LOG_RECORD_TRUNCATE","features":[21]},{"name":"TXF_LOG_RECORD_TYPE","features":[21]},{"name":"TXF_LOG_RECORD_TYPE_AFFECTED_FILE","features":[21]},{"name":"TXF_LOG_RECORD_TYPE_TRUNCATE","features":[21]},{"name":"TXF_LOG_RECORD_TYPE_WRITE","features":[21]},{"name":"TXF_LOG_RECORD_WRITE","features":[21]},{"name":"TerminateLogArchive","features":[1,21]},{"name":"TerminateReadLog","features":[1,21]},{"name":"TransactionOutcomeAborted","features":[21]},{"name":"TransactionOutcomeCommitted","features":[21]},{"name":"TransactionOutcomeUndetermined","features":[21]},{"name":"TruncateLog","features":[1,21,6]},{"name":"TxfGetThreadMiniVersionForCreate","features":[21]},{"name":"TxfLogCreateFileReadContext","features":[1,21]},{"name":"TxfLogCreateRangeReadContext","features":[1,21]},{"name":"TxfLogDestroyReadContext","features":[1,21]},{"name":"TxfLogReadRecords","features":[1,21]},{"name":"TxfLogRecordGetFileName","features":[1,21]},{"name":"TxfLogRecordGetGenericType","features":[1,21]},{"name":"TxfReadMetadataInfo","features":[1,21]},{"name":"TxfSetThreadMiniVersionForCreate","features":[21]},{"name":"UnlockFile","features":[1,21]},{"name":"UnlockFileEx","features":[1,21,6]},{"name":"VER_FIND_FILE_FLAGS","features":[21]},{"name":"VER_FIND_FILE_STATUS","features":[21]},{"name":"VER_INSTALL_FILE_FLAGS","features":[21]},{"name":"VER_INSTALL_FILE_STATUS","features":[21]},{"name":"VFFF_ISSHAREDFILE","features":[21]},{"name":"VFF_BUFFTOOSMALL","features":[21]},{"name":"VFF_CURNEDEST","features":[21]},{"name":"VFF_FILEINUSE","features":[21]},{"name":"VFT2_DRV_COMM","features":[21]},{"name":"VFT2_DRV_DISPLAY","features":[21]},{"name":"VFT2_DRV_INPUTMETHOD","features":[21]},{"name":"VFT2_DRV_INSTALLABLE","features":[21]},{"name":"VFT2_DRV_KEYBOARD","features":[21]},{"name":"VFT2_DRV_LANGUAGE","features":[21]},{"name":"VFT2_DRV_MOUSE","features":[21]},{"name":"VFT2_DRV_NETWORK","features":[21]},{"name":"VFT2_DRV_PRINTER","features":[21]},{"name":"VFT2_DRV_SOUND","features":[21]},{"name":"VFT2_DRV_SYSTEM","features":[21]},{"name":"VFT2_DRV_VERSIONED_PRINTER","features":[21]},{"name":"VFT2_FONT_RASTER","features":[21]},{"name":"VFT2_FONT_TRUETYPE","features":[21]},{"name":"VFT2_FONT_VECTOR","features":[21]},{"name":"VFT2_UNKNOWN","features":[21]},{"name":"VFT_APP","features":[21]},{"name":"VFT_DLL","features":[21]},{"name":"VFT_DRV","features":[21]},{"name":"VFT_FONT","features":[21]},{"name":"VFT_STATIC_LIB","features":[21]},{"name":"VFT_UNKNOWN","features":[21]},{"name":"VFT_VXD","features":[21]},{"name":"VIFF_DONTDELETEOLD","features":[21]},{"name":"VIFF_FORCEINSTALL","features":[21]},{"name":"VIF_ACCESSVIOLATION","features":[21]},{"name":"VIF_BUFFTOOSMALL","features":[21]},{"name":"VIF_CANNOTCREATE","features":[21]},{"name":"VIF_CANNOTDELETE","features":[21]},{"name":"VIF_CANNOTDELETECUR","features":[21]},{"name":"VIF_CANNOTLOADCABINET","features":[21]},{"name":"VIF_CANNOTLOADLZ32","features":[21]},{"name":"VIF_CANNOTREADDST","features":[21]},{"name":"VIF_CANNOTREADSRC","features":[21]},{"name":"VIF_CANNOTRENAME","features":[21]},{"name":"VIF_DIFFCODEPG","features":[21]},{"name":"VIF_DIFFLANG","features":[21]},{"name":"VIF_DIFFTYPE","features":[21]},{"name":"VIF_FILEINUSE","features":[21]},{"name":"VIF_MISMATCH","features":[21]},{"name":"VIF_OUTOFMEMORY","features":[21]},{"name":"VIF_OUTOFSPACE","features":[21]},{"name":"VIF_SHARINGVIOLATION","features":[21]},{"name":"VIF_SRCOLD","features":[21]},{"name":"VIF_TEMPFILE","features":[21]},{"name":"VIF_WRITEPROT","features":[21]},{"name":"VOLUME_ALLOCATE_BC_STREAM_INPUT","features":[1,21]},{"name":"VOLUME_ALLOCATE_BC_STREAM_OUTPUT","features":[21]},{"name":"VOLUME_ALLOCATION_HINT_INPUT","features":[21]},{"name":"VOLUME_ALLOCATION_HINT_OUTPUT","features":[21]},{"name":"VOLUME_CRITICAL_IO","features":[21]},{"name":"VOLUME_FAILOVER_SET","features":[21]},{"name":"VOLUME_GET_BC_PROPERTIES_INPUT","features":[21]},{"name":"VOLUME_GET_BC_PROPERTIES_OUTPUT","features":[21]},{"name":"VOLUME_LOGICAL_OFFSET","features":[21]},{"name":"VOLUME_NAME_DOS","features":[21]},{"name":"VOLUME_NAME_GUID","features":[21]},{"name":"VOLUME_NAME_NONE","features":[21]},{"name":"VOLUME_NAME_NT","features":[21]},{"name":"VOLUME_NUMBER","features":[21]},{"name":"VOLUME_PHYSICAL_OFFSET","features":[21]},{"name":"VOLUME_PHYSICAL_OFFSETS","features":[21]},{"name":"VOLUME_READ_PLEX_INPUT","features":[21]},{"name":"VOLUME_SET_GPT_ATTRIBUTES_INFORMATION","features":[1,21]},{"name":"VOLUME_SHRINK_INFO","features":[21]},{"name":"VOS_DOS","features":[21]},{"name":"VOS_DOS_WINDOWS16","features":[21]},{"name":"VOS_DOS_WINDOWS32","features":[21]},{"name":"VOS_NT","features":[21]},{"name":"VOS_NT_WINDOWS32","features":[21]},{"name":"VOS_OS216","features":[21]},{"name":"VOS_OS216_PM16","features":[21]},{"name":"VOS_OS232","features":[21]},{"name":"VOS_OS232_PM32","features":[21]},{"name":"VOS_UNKNOWN","features":[21]},{"name":"VOS_WINCE","features":[21]},{"name":"VOS__BASE","features":[21]},{"name":"VOS__PM16","features":[21]},{"name":"VOS__PM32","features":[21]},{"name":"VOS__WINDOWS16","features":[21]},{"name":"VOS__WINDOWS32","features":[21]},{"name":"VS_FFI_FILEFLAGSMASK","features":[21]},{"name":"VS_FFI_SIGNATURE","features":[21]},{"name":"VS_FFI_STRUCVERSION","features":[21]},{"name":"VS_FF_DEBUG","features":[21]},{"name":"VS_FF_INFOINFERRED","features":[21]},{"name":"VS_FF_PATCHED","features":[21]},{"name":"VS_FF_PRERELEASE","features":[21]},{"name":"VS_FF_PRIVATEBUILD","features":[21]},{"name":"VS_FF_SPECIALBUILD","features":[21]},{"name":"VS_FIXEDFILEINFO","features":[21]},{"name":"VS_FIXEDFILEINFO_FILE_FLAGS","features":[21]},{"name":"VS_FIXEDFILEINFO_FILE_OS","features":[21]},{"name":"VS_FIXEDFILEINFO_FILE_SUBTYPE","features":[21]},{"name":"VS_FIXEDFILEINFO_FILE_TYPE","features":[21]},{"name":"VS_USER_DEFINED","features":[21]},{"name":"VS_VERSION_INFO","features":[21]},{"name":"ValidateLog","features":[1,4,21]},{"name":"VerFindFileA","features":[21]},{"name":"VerFindFileW","features":[21]},{"name":"VerInstallFileA","features":[21]},{"name":"VerInstallFileW","features":[21]},{"name":"VerLanguageNameA","features":[21]},{"name":"VerLanguageNameW","features":[21]},{"name":"VerQueryValueA","features":[1,21]},{"name":"VerQueryValueW","features":[1,21]},{"name":"WIM_BOOT_NOT_OS_WIM","features":[21]},{"name":"WIM_BOOT_OS_WIM","features":[21]},{"name":"WIM_ENTRY_FLAG_NOT_ACTIVE","features":[21]},{"name":"WIM_ENTRY_FLAG_SUSPENDED","features":[21]},{"name":"WIM_ENTRY_INFO","features":[21]},{"name":"WIM_EXTERNAL_FILE_INFO","features":[21]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_NOT_ACTIVE","features":[21]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_SUSPENDED","features":[21]},{"name":"WIM_PROVIDER_HASH_SIZE","features":[21]},{"name":"WIN32_FILE_ATTRIBUTE_DATA","features":[1,21]},{"name":"WIN32_FIND_DATAA","features":[1,21]},{"name":"WIN32_FIND_DATAW","features":[1,21]},{"name":"WIN32_FIND_STREAM_DATA","features":[21]},{"name":"WIN32_STREAM_ID","features":[21]},{"name":"WINEFS_SETUSERKEY_SET_CAPABILITIES","features":[21]},{"name":"WIN_STREAM_ID","features":[21]},{"name":"WOF_FILE_COMPRESSION_INFO_V0","features":[21]},{"name":"WOF_FILE_COMPRESSION_INFO_V1","features":[21]},{"name":"WOF_PROVIDER_FILE","features":[21]},{"name":"WOF_PROVIDER_WIM","features":[21]},{"name":"WRITE_DAC","features":[21]},{"name":"WRITE_OWNER","features":[21]},{"name":"WofEnumEntries","features":[1,21]},{"name":"WofEnumEntryProc","features":[1,21]},{"name":"WofEnumFilesProc","features":[1,21]},{"name":"WofFileEnumFiles","features":[1,21]},{"name":"WofGetDriverVersion","features":[1,21]},{"name":"WofIsExternalFile","features":[1,21]},{"name":"WofSetFileDataLocation","features":[1,21]},{"name":"WofShouldCompressBinaries","features":[1,21]},{"name":"WofWimAddEntry","features":[21]},{"name":"WofWimEnumFiles","features":[1,21]},{"name":"WofWimRemoveEntry","features":[21]},{"name":"WofWimSuspendEntry","features":[21]},{"name":"WofWimUpdateEntry","features":[21]},{"name":"Wow64DisableWow64FsRedirection","features":[1,21]},{"name":"Wow64EnableWow64FsRedirection","features":[1,21]},{"name":"Wow64RevertWow64FsRedirection","features":[1,21]},{"name":"WriteEncryptedFileRaw","features":[21]},{"name":"WriteFile","features":[1,21,6]},{"name":"WriteFileEx","features":[1,21,6]},{"name":"WriteFileGather","features":[1,21,6]},{"name":"WriteLogRestartArea","features":[1,21,6]},{"name":"WriteTapemark","features":[1,21]},{"name":"_FT_TYPES_DEFINITION_","features":[21]}],"511":[{"name":"BlockRange","features":[141]},{"name":"BlockRangeList","features":[141]},{"name":"BootOptions","features":[141]},{"name":"CATID_SMTP_DNSRESOLVERRECORDSINK","features":[141]},{"name":"CATID_SMTP_DSN","features":[141]},{"name":"CATID_SMTP_GET_AUX_DOMAIN_INFO_FLAGS","features":[141]},{"name":"CATID_SMTP_LOG","features":[141]},{"name":"CATID_SMTP_MAXMSGSIZE","features":[141]},{"name":"CATID_SMTP_MSGTRACKLOG","features":[141]},{"name":"CATID_SMTP_ON_BEFORE_DATA","features":[141]},{"name":"CATID_SMTP_ON_INBOUND_COMMAND","features":[141]},{"name":"CATID_SMTP_ON_MESSAGE_START","features":[141]},{"name":"CATID_SMTP_ON_PER_RECIPIENT","features":[141]},{"name":"CATID_SMTP_ON_SERVER_RESPONSE","features":[141]},{"name":"CATID_SMTP_ON_SESSION_END","features":[141]},{"name":"CATID_SMTP_ON_SESSION_START","features":[141]},{"name":"CATID_SMTP_STORE_DRIVER","features":[141]},{"name":"CATID_SMTP_TRANSPORT_CATEGORIZE","features":[141]},{"name":"CATID_SMTP_TRANSPORT_POSTCATEGORIZE","features":[141]},{"name":"CATID_SMTP_TRANSPORT_PRECATEGORIZE","features":[141]},{"name":"CATID_SMTP_TRANSPORT_ROUTER","features":[141]},{"name":"CATID_SMTP_TRANSPORT_SUBMISSION","features":[141]},{"name":"CLSID_SmtpCat","features":[141]},{"name":"CloseIMsgSession","features":[141]},{"name":"DDiscFormat2DataEvents","features":[141]},{"name":"DDiscFormat2EraseEvents","features":[141]},{"name":"DDiscFormat2RawCDEvents","features":[141]},{"name":"DDiscFormat2TrackAtOnceEvents","features":[141]},{"name":"DDiscMaster2Events","features":[141]},{"name":"DFileSystemImageEvents","features":[141]},{"name":"DFileSystemImageImportEvents","features":[141]},{"name":"DISC_RECORDER_STATE_FLAGS","features":[141]},{"name":"DISPID_DDISCFORMAT2DATAEVENTS_UPDATE","features":[141]},{"name":"DISPID_DDISCFORMAT2RAWCDEVENTS_UPDATE","features":[141]},{"name":"DISPID_DDISCFORMAT2TAOEVENTS_UPDATE","features":[141]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEADDED","features":[141]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEREMOVED","features":[141]},{"name":"DISPID_DFILESYSTEMIMAGEEVENTS_UPDATE","features":[141]},{"name":"DISPID_DFILESYSTEMIMAGEIMPORTEVENTS_UPDATEIMPORT","features":[141]},{"name":"DISPID_DWRITEENGINE2EVENTS_UPDATE","features":[141]},{"name":"DISPID_IBLOCKRANGELIST_BLOCKRANGES","features":[141]},{"name":"DISPID_IBLOCKRANGE_ENDLBA","features":[141]},{"name":"DISPID_IBLOCKRANGE_STARTLBA","features":[141]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_CURRENTACTION","features":[141]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ELAPSEDTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDREMAININGTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDTOTALTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_BUFFERUNDERRUNFREEDISABLED","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_CANCELWRITE","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_CLIENTNAME","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIASTATUS","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIATYPE","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTROTATIONTYPEISPURECAV","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_DISABLEDVDCOMPATIBILITYMODE","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEMEDIATOBECLOSED","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEOVERWRITE","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_FREESECTORS","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_LASTSECTOROFPREVIOUSSESSION","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_MUTLISESSIONINTERFACES","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_NEXTWRITABLEADDRESS","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_POSTGAPALREADYINIMAGE","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_RECORDER","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDROTATIONTYPEISPURECAV","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_SETWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_STARTSECTOROFPREVIOUSSESSION","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDS","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_TOTALSECTORS","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_WRITE","features":[141]},{"name":"DISPID_IDISCFORMAT2DATA_WRITEPROTECTSTATUS","features":[141]},{"name":"DISPID_IDISCFORMAT2ERASEEVENTS_UPDATE","features":[141]},{"name":"DISPID_IDISCFORMAT2ERASE_CLIENTNAME","features":[141]},{"name":"DISPID_IDISCFORMAT2ERASE_ERASEMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2ERASE_FULLERASE","features":[141]},{"name":"DISPID_IDISCFORMAT2ERASE_MEDIATYPE","features":[141]},{"name":"DISPID_IDISCFORMAT2ERASE_RECORDER","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTACTION","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTTRACKNUMBER","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ELAPSEDTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDREMAININGTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDTOTALTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_BUFFERUNDERRUNFREEDISABLED","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_CANCELWRITE","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_CLIENTNAME","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTMEDIATYPE","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTROTATIONTYPEISPURECAV","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_LASTPOSSIBLESTARTOFLEADOUT","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_PREPAREMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_RECORDER","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_RELEASEMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDDATASECTORTYPE","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDROTATIONTYPEISPURECAV","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_SETWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_STARTOFNEXTSESSION","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDDATASECTORTYPES","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDS","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIAWITHVALIDATION","features":[141]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTACTION","features":[141]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTTRACKNUMBER","features":[141]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ELAPSEDTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDREMAININGTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDTOTALTIME","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_ADDAUDIOTRACK","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_BUFFERUNDERRUNFREEDISABLED","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_CANCELADDTRACK","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_CLIENTNAME","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTMEDIATYPE","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTROTATIONTYPEISPURECAV","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_DONOTFINALIZEMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_EXPECTEDTABLEOFCONTENTS","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_FINISHMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_FREESECTORSONMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_NUMBEROFEXISTINGTRACKS","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_PREPAREMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_RECORDER","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDROTATIONTYPEISPURECAV","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_SETWRITESPEED","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDS","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_TOTALSECTORSONMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2TAO_USEDSECTORSONMEDIA","features":[141]},{"name":"DISPID_IDISCFORMAT2_MEDIAHEURISTICALLYBLANK","features":[141]},{"name":"DISPID_IDISCFORMAT2_MEDIAPHYSICALLYBLANK","features":[141]},{"name":"DISPID_IDISCFORMAT2_MEDIASUPPORTED","features":[141]},{"name":"DISPID_IDISCFORMAT2_RECORDERSUPPORTED","features":[141]},{"name":"DISPID_IDISCFORMAT2_SUPPORTEDMEDIATYPES","features":[141]},{"name":"DISPID_IDISCRECORDER2_ACQUIREEXCLUSIVEACCESS","features":[141]},{"name":"DISPID_IDISCRECORDER2_ACTIVEDISCRECORDER","features":[141]},{"name":"DISPID_IDISCRECORDER2_CLOSETRAY","features":[141]},{"name":"DISPID_IDISCRECORDER2_CURRENTFEATUREPAGES","features":[141]},{"name":"DISPID_IDISCRECORDER2_CURRENTPROFILES","features":[141]},{"name":"DISPID_IDISCRECORDER2_DEVICECANLOADMEDIA","features":[141]},{"name":"DISPID_IDISCRECORDER2_DISABLEMCN","features":[141]},{"name":"DISPID_IDISCRECORDER2_EJECTMEDIA","features":[141]},{"name":"DISPID_IDISCRECORDER2_ENABLEMCN","features":[141]},{"name":"DISPID_IDISCRECORDER2_EXCLUSIVEACCESSOWNER","features":[141]},{"name":"DISPID_IDISCRECORDER2_INITIALIZEDISCRECORDER","features":[141]},{"name":"DISPID_IDISCRECORDER2_LEGACYDEVICENUMBER","features":[141]},{"name":"DISPID_IDISCRECORDER2_PRODUCTID","features":[141]},{"name":"DISPID_IDISCRECORDER2_PRODUCTREVISION","features":[141]},{"name":"DISPID_IDISCRECORDER2_RELEASEEXCLUSIVEACCESS","features":[141]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDFEATUREPAGES","features":[141]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDMODEPAGES","features":[141]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDPROFILES","features":[141]},{"name":"DISPID_IDISCRECORDER2_VENDORID","features":[141]},{"name":"DISPID_IDISCRECORDER2_VOLUMENAME","features":[141]},{"name":"DISPID_IDISCRECORDER2_VOLUMEPATHNAMES","features":[141]},{"name":"DISPID_IMULTISESSION_FIRSTDATASESSION","features":[141]},{"name":"DISPID_IMULTISESSION_FREESECTORS","features":[141]},{"name":"DISPID_IMULTISESSION_IMPORTRECORDER","features":[141]},{"name":"DISPID_IMULTISESSION_INUSE","features":[141]},{"name":"DISPID_IMULTISESSION_LASTSECTOROFPREVIOUSSESSION","features":[141]},{"name":"DISPID_IMULTISESSION_LASTWRITTENADDRESS","features":[141]},{"name":"DISPID_IMULTISESSION_NEXTWRITABLEADDRESS","features":[141]},{"name":"DISPID_IMULTISESSION_SECTORSONMEDIA","features":[141]},{"name":"DISPID_IMULTISESSION_STARTSECTOROFPREVIOUSSESSION","features":[141]},{"name":"DISPID_IMULTISESSION_SUPPORTEDONCURRENTMEDIA","features":[141]},{"name":"DISPID_IMULTISESSION_WRITEUNITSIZE","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSPECIALPREGAP","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSUBCODERWGENERATOR","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDTRACK","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_CREATERESULTIMAGE","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_DISABLEGAPLESSAUDIO","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_EXPECTEDTABLEOFCONTENTS","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_MEDIACATALOGNUMBER","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_NUMBEROFEXISTINGTRACKS","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_RESULTINGIMAGETYPE","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTINGTRACKNUMBER","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUT","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUTLIMIT","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_TRACKINFO","features":[141]},{"name":"DISPID_IRAWCDIMAGECREATOR_USEDSECTORSONDISC","features":[141]},{"name":"DISPID_IRAWCDTRACKINFO_AUDIOHASPREEMPHASIS","features":[141]},{"name":"DISPID_IRAWCDTRACKINFO_DIGITALAUDIOCOPYSETTING","features":[141]},{"name":"DISPID_IRAWCDTRACKINFO_ISRC","features":[141]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORCOUNT","features":[141]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORTYPE","features":[141]},{"name":"DISPID_IRAWCDTRACKINFO_STARTINGLBA","features":[141]},{"name":"DISPID_IRAWCDTRACKINFO_TRACKNUMBER","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_FREESYSTEMBUFFER","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTREADLBA","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTWRITTENLBA","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_SECTORCOUNT","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_STARTLBA","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALDEVICEBUFFER","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALSYSTEMBUFFER","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDDEVICEBUFFER","features":[141]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDSYSTEMBUFFER","features":[141]},{"name":"DISPID_IWRITEENGINE2_BYTESPERSECTOR","features":[141]},{"name":"DISPID_IWRITEENGINE2_CANCELWRITE","features":[141]},{"name":"DISPID_IWRITEENGINE2_DISCRECORDER","features":[141]},{"name":"DISPID_IWRITEENGINE2_ENDINGSECTORSPERSECOND","features":[141]},{"name":"DISPID_IWRITEENGINE2_STARTINGSECTORSPERSECOND","features":[141]},{"name":"DISPID_IWRITEENGINE2_USESTREAMINGWRITE12","features":[141]},{"name":"DISPID_IWRITEENGINE2_WRITEINPROGRESS","features":[141]},{"name":"DISPID_IWRITEENGINE2_WRITESECTION","features":[141]},{"name":"DWriteEngine2Events","features":[141]},{"name":"Emulation12MFloppy","features":[141]},{"name":"Emulation144MFloppy","features":[141]},{"name":"Emulation288MFloppy","features":[141]},{"name":"EmulationHardDisk","features":[141]},{"name":"EmulationNone","features":[141]},{"name":"EmulationType","features":[141]},{"name":"EnumFsiItems","features":[141]},{"name":"EnumProgressItems","features":[141]},{"name":"FileSystemImageResult","features":[141]},{"name":"FsiDirectoryItem","features":[141]},{"name":"FsiFileItem","features":[141]},{"name":"FsiFileSystemISO9660","features":[141]},{"name":"FsiFileSystemJoliet","features":[141]},{"name":"FsiFileSystemNone","features":[141]},{"name":"FsiFileSystemUDF","features":[141]},{"name":"FsiFileSystemUnknown","features":[141]},{"name":"FsiFileSystems","features":[141]},{"name":"FsiItemDirectory","features":[141]},{"name":"FsiItemFile","features":[141]},{"name":"FsiItemNotFound","features":[141]},{"name":"FsiItemType","features":[141]},{"name":"FsiNamedStreams","features":[141]},{"name":"FsiStream","features":[141]},{"name":"GUID_SMTPSVC_SOURCE","features":[141]},{"name":"GUID_SMTP_SOURCE_TYPE","features":[141]},{"name":"GetAttribIMsgOnIStg","features":[141,142]},{"name":"IBlockRange","features":[141]},{"name":"IBlockRangeList","features":[141]},{"name":"IBootOptions","features":[141]},{"name":"IBurnVerification","features":[141]},{"name":"IDiscFormat2","features":[141]},{"name":"IDiscFormat2Data","features":[141]},{"name":"IDiscFormat2DataEventArgs","features":[141]},{"name":"IDiscFormat2Erase","features":[141]},{"name":"IDiscFormat2RawCD","features":[141]},{"name":"IDiscFormat2RawCDEventArgs","features":[141]},{"name":"IDiscFormat2TrackAtOnce","features":[141]},{"name":"IDiscFormat2TrackAtOnceEventArgs","features":[141]},{"name":"IDiscMaster","features":[141]},{"name":"IDiscMaster2","features":[141]},{"name":"IDiscMasterProgressEvents","features":[141]},{"name":"IDiscRecorder","features":[141]},{"name":"IDiscRecorder2","features":[141]},{"name":"IDiscRecorder2Ex","features":[141]},{"name":"IEnumDiscMasterFormats","features":[141]},{"name":"IEnumDiscRecorders","features":[141]},{"name":"IEnumFsiItems","features":[141]},{"name":"IEnumProgressItems","features":[141]},{"name":"IFileSystemImage","features":[141]},{"name":"IFileSystemImage2","features":[141]},{"name":"IFileSystemImage3","features":[141]},{"name":"IFileSystemImageResult","features":[141]},{"name":"IFileSystemImageResult2","features":[141]},{"name":"IFsiDirectoryItem","features":[141]},{"name":"IFsiDirectoryItem2","features":[141]},{"name":"IFsiFileItem","features":[141]},{"name":"IFsiFileItem2","features":[141]},{"name":"IFsiItem","features":[141]},{"name":"IFsiNamedStreams","features":[141]},{"name":"IIsoImageManager","features":[141]},{"name":"IJolietDiscMaster","features":[141]},{"name":"IMAPI2FS_BOOT_ENTRY_COUNT_MAX","features":[141]},{"name":"IMAPI2FS_FullVersion_STR","features":[141]},{"name":"IMAPI2FS_FullVersion_WSTR","features":[141]},{"name":"IMAPI2FS_MajorVersion","features":[141]},{"name":"IMAPI2FS_MinorVersion","features":[141]},{"name":"IMAPI2_DEFAULT_COMMAND_TIMEOUT","features":[141]},{"name":"IMAPILib2_MajorVersion","features":[141]},{"name":"IMAPILib2_MinorVersion","features":[141]},{"name":"IMAPI_BURN_VERIFICATION_FULL","features":[141]},{"name":"IMAPI_BURN_VERIFICATION_LEVEL","features":[141]},{"name":"IMAPI_BURN_VERIFICATION_NONE","features":[141]},{"name":"IMAPI_BURN_VERIFICATION_QUICK","features":[141]},{"name":"IMAPI_CD_SECTOR_AUDIO","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE1","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE1RAW","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0RAW","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1RAW","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2RAW","features":[141]},{"name":"IMAPI_CD_SECTOR_MODE_ZERO","features":[141]},{"name":"IMAPI_CD_SECTOR_TYPE","features":[141]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PERMITTED","features":[141]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PROHIBITED","features":[141]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SCMS","features":[141]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SETTING","features":[141]},{"name":"IMAPI_E_ALREADYOPEN","features":[141]},{"name":"IMAPI_E_BADJOLIETNAME","features":[141]},{"name":"IMAPI_E_BOOTIMAGE_AND_NONBLANK_DISC","features":[141]},{"name":"IMAPI_E_CANNOT_WRITE_TO_MEDIA","features":[141]},{"name":"IMAPI_E_COMPRESSEDSTASH","features":[141]},{"name":"IMAPI_E_DEVICE_INVALIDTYPE","features":[141]},{"name":"IMAPI_E_DEVICE_NOPROPERTIES","features":[141]},{"name":"IMAPI_E_DEVICE_NOTACCESSIBLE","features":[141]},{"name":"IMAPI_E_DEVICE_NOTPRESENT","features":[141]},{"name":"IMAPI_E_DEVICE_STILL_IN_USE","features":[141]},{"name":"IMAPI_E_DISCFULL","features":[141]},{"name":"IMAPI_E_DISCINFO","features":[141]},{"name":"IMAPI_E_ENCRYPTEDSTASH","features":[141]},{"name":"IMAPI_E_FILEACCESS","features":[141]},{"name":"IMAPI_E_FILEEXISTS","features":[141]},{"name":"IMAPI_E_FILESYSTEM","features":[141]},{"name":"IMAPI_E_GENERIC","features":[141]},{"name":"IMAPI_E_INITIALIZE_ENDWRITE","features":[141]},{"name":"IMAPI_E_INITIALIZE_WRITE","features":[141]},{"name":"IMAPI_E_INVALIDIMAGE","features":[141]},{"name":"IMAPI_E_LOSS_OF_STREAMING","features":[141]},{"name":"IMAPI_E_MEDIUM_INVALIDTYPE","features":[141]},{"name":"IMAPI_E_MEDIUM_NOTPRESENT","features":[141]},{"name":"IMAPI_E_NOACTIVEFORMAT","features":[141]},{"name":"IMAPI_E_NOACTIVERECORDER","features":[141]},{"name":"IMAPI_E_NOTENOUGHDISKFORSTASH","features":[141]},{"name":"IMAPI_E_NOTINITIALIZED","features":[141]},{"name":"IMAPI_E_NOTOPENED","features":[141]},{"name":"IMAPI_E_REMOVABLESTASH","features":[141]},{"name":"IMAPI_E_STASHINUSE","features":[141]},{"name":"IMAPI_E_TRACKNOTOPEN","features":[141]},{"name":"IMAPI_E_TRACKOPEN","features":[141]},{"name":"IMAPI_E_TRACK_NOT_BIG_ENOUGH","features":[141]},{"name":"IMAPI_E_USERABORT","features":[141]},{"name":"IMAPI_E_WRONGDISC","features":[141]},{"name":"IMAPI_E_WRONGFORMAT","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_AACS","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_PSEUDO_OVERWRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_READ","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_WRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CDRW_CAV_WRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_ANALOG_PLAY","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MASTERING","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MULTIREAD","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_READ","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_RW_MEDIA_WRITE_SUPPORT","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_TRACK_AT_ONCE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CORE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DISC_CONTROL_BLOCKS","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_READ","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_RW_WRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_R_WRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CPRM","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CSS","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_DASH_WRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_RW","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R_DUAL_LAYER","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_READ","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_EMBEDDED_CHANGER","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_ENHANCED_DEFECT_REPORTING","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FIRMWARE_INFORMATION","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FORMATTABLE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HARDWARE_DEFECT_MANAGEMENT","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_READ","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_WRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_INCREMENTAL_STREAMING_WRITABLE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LAYER_JUMP_RECORDING","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LOGICAL_UNIT_SERIAL_NUMBER","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MEDIA_SERIAL_NUMBER","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MICROCODE_UPDATE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MORPHING","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MRW","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_POWER_MANAGEMENT","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_PROFILE_LIST","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_READABLE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_WRITABLE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REAL_TIME_STREAMING","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REMOVABLE_MEDIUM","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RESTRICTED_OVERWRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RIGID_RESTRICTED_OVERWRITE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SECTOR_ERASABLE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SMART","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_TIMEOUT","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_VCPS","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_ONCE","features":[141]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_PROTECT","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_APPENDABLE","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_BLANK","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_DAMAGED","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_ERASE_REQUIRED","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINALIZED","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINAL_SESSION","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_INFORMATIONAL_MASK","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_NON_EMPTY_SESSION","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_OVERWRITE_ONLY","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_RANDOMLY_WRITABLE","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNKNOWN","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MASK","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MEDIA","features":[141]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_WRITE_PROTECTED","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_CALIBRATING_POWER","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_COMPLETED","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FINALIZATION","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FORMATTING_MEDIA","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_INITIALIZING_HARDWARE","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VALIDATING_MEDIA","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VERIFYING","features":[141]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_WRITING_DATA","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_DATA_SECTOR_TYPE","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_COOKED","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_RAW","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_PQ_ONLY","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_FINISHING","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_PREPARING","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_UNKNOWN","features":[141]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_WRITING","features":[141]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION","features":[141]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_FINISHING","features":[141]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_PREPARING","features":[141]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_UNKNOWN","features":[141]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_VERIFYING","features":[141]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_WRITING","features":[141]},{"name":"IMAPI_MEDIA_PHYSICAL_TYPE","features":[141]},{"name":"IMAPI_MEDIA_TYPE_BDR","features":[141]},{"name":"IMAPI_MEDIA_TYPE_BDRE","features":[141]},{"name":"IMAPI_MEDIA_TYPE_BDROM","features":[141]},{"name":"IMAPI_MEDIA_TYPE_CDR","features":[141]},{"name":"IMAPI_MEDIA_TYPE_CDROM","features":[141]},{"name":"IMAPI_MEDIA_TYPE_CDRW","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DISK","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHRW","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR_DUALLAYER","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW_DUALLAYER","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR_DUALLAYER","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDRAM","features":[141]},{"name":"IMAPI_MEDIA_TYPE_DVDROM","features":[141]},{"name":"IMAPI_MEDIA_TYPE_HDDVDR","features":[141]},{"name":"IMAPI_MEDIA_TYPE_HDDVDRAM","features":[141]},{"name":"IMAPI_MEDIA_TYPE_HDDVDROM","features":[141]},{"name":"IMAPI_MEDIA_TYPE_MAX","features":[141]},{"name":"IMAPI_MEDIA_TYPE_UNKNOWN","features":[141]},{"name":"IMAPI_MEDIA_WRITE_PROTECT_STATE","features":[141]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE","features":[141]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CHANGEABLE_VALUES","features":[141]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CURRENT_VALUES","features":[141]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_DEFAULT_VALUES","features":[141]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_SAVED_VALUES","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_CACHING","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_INFORMATIONAL_EXCEPTIONS","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_LEGACY_CAPABILITIES","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_MRW","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_POWER_CONDITION","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_READ_WRITE_ERROR_RECOVERY","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_TIMEOUT_AND_PROTECT","features":[141]},{"name":"IMAPI_MODE_PAGE_TYPE_WRITE_PARAMETERS","features":[141]},{"name":"IMAPI_PROFILE_TYPE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_AS_MO","features":[141]},{"name":"IMAPI_PROFILE_TYPE_BD_REWRITABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_BD_ROM","features":[141]},{"name":"IMAPI_PROFILE_TYPE_BD_R_RANDOM_RECORDING","features":[141]},{"name":"IMAPI_PROFILE_TYPE_BD_R_SEQUENTIAL","features":[141]},{"name":"IMAPI_PROFILE_TYPE_CDROM","features":[141]},{"name":"IMAPI_PROFILE_TYPE_CD_RECORDABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_CD_REWRITABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DDCDROM","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DDCD_RECORDABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DDCD_REWRITABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVDROM","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RECORDABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_REWRITABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RW_SEQUENTIAL","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_LAYER_JUMP","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_SEQUENTIAL","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW_DUAL","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R_DUAL","features":[141]},{"name":"IMAPI_PROFILE_TYPE_DVD_RAM","features":[141]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RAM","features":[141]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RECORDABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_ROM","features":[141]},{"name":"IMAPI_PROFILE_TYPE_INVALID","features":[141]},{"name":"IMAPI_PROFILE_TYPE_MO_ERASABLE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_MO_WRITE_ONCE","features":[141]},{"name":"IMAPI_PROFILE_TYPE_NON_REMOVABLE_DISK","features":[141]},{"name":"IMAPI_PROFILE_TYPE_NON_STANDARD","features":[141]},{"name":"IMAPI_PROFILE_TYPE_REMOVABLE_DISK","features":[141]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE","features":[141]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_LBA","features":[141]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_SESSION","features":[141]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_TRACK","features":[141]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_BD","features":[141]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_CD","features":[141]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_DVD","features":[141]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_HD_DVD","features":[141]},{"name":"IMAPI_SECTOR_SIZE","features":[141]},{"name":"IMAPI_S_BUFFER_TO_SMALL","features":[141]},{"name":"IMAPI_S_PROPERTIESIGNORED","features":[141]},{"name":"IMAPI_WRITEPROTECTED_BY_CARTRIDGE","features":[141]},{"name":"IMAPI_WRITEPROTECTED_BY_DISC_CONTROL_BLOCK","features":[141]},{"name":"IMAPI_WRITEPROTECTED_BY_MEDIA_SPECIFIC_REASON","features":[141]},{"name":"IMAPI_WRITEPROTECTED_BY_SOFTWARE_WRITE_PROTECT","features":[141]},{"name":"IMAPI_WRITEPROTECTED_READ_ONLY_MEDIA","features":[141]},{"name":"IMAPI_WRITEPROTECTED_UNTIL_POWERDOWN","features":[141]},{"name":"IMMPID_CPV_AFTER__","features":[141]},{"name":"IMMPID_CPV_BEFORE__","features":[141]},{"name":"IMMPID_CPV_ENUM","features":[141]},{"name":"IMMPID_CP_START","features":[141]},{"name":"IMMPID_MPV_AFTER__","features":[141]},{"name":"IMMPID_MPV_BEFORE__","features":[141]},{"name":"IMMPID_MPV_ENUM","features":[141]},{"name":"IMMPID_MPV_MESSAGE_CREATION_FLAGS","features":[141]},{"name":"IMMPID_MPV_MESSAGE_OPEN_HANDLES","features":[141]},{"name":"IMMPID_MPV_STORE_DRIVER_HANDLE","features":[141]},{"name":"IMMPID_MPV_TOTAL_OPEN_CONTENT_HANDLES","features":[141]},{"name":"IMMPID_MPV_TOTAL_OPEN_HANDLES","features":[141]},{"name":"IMMPID_MPV_TOTAL_OPEN_PROPERTY_STREAM_HANDLES","features":[141]},{"name":"IMMPID_MP_AFTER__","features":[141]},{"name":"IMMPID_MP_ARRIVAL_FILETIME","features":[141]},{"name":"IMMPID_MP_ARRIVAL_TIME","features":[141]},{"name":"IMMPID_MP_AUTHENTICATED_USER_NAME","features":[141]},{"name":"IMMPID_MP_BEFORE__","features":[141]},{"name":"IMMPID_MP_BINARYMIME_OPTION","features":[141]},{"name":"IMMPID_MP_CHUNKING_OPTION","features":[141]},{"name":"IMMPID_MP_CLIENT_AUTH_TYPE","features":[141]},{"name":"IMMPID_MP_CLIENT_AUTH_USER","features":[141]},{"name":"IMMPID_MP_CONNECTION_IP_ADDRESS","features":[141]},{"name":"IMMPID_MP_CONNECTION_SERVER_IP_ADDRESS","features":[141]},{"name":"IMMPID_MP_CONNECTION_SERVER_PORT","features":[141]},{"name":"IMMPID_MP_CONTENT_FILE_NAME","features":[141]},{"name":"IMMPID_MP_CONTENT_TYPE","features":[141]},{"name":"IMMPID_MP_CRC_GLOBAL","features":[141]},{"name":"IMMPID_MP_CRC_RECIPS","features":[141]},{"name":"IMMPID_MP_DEFERRED_DELIVERY_FILETIME","features":[141]},{"name":"IMMPID_MP_DOMAIN_LIST","features":[141]},{"name":"IMMPID_MP_DSN_ENVID_VALUE","features":[141]},{"name":"IMMPID_MP_DSN_RET_VALUE","features":[141]},{"name":"IMMPID_MP_EIGHTBIT_MIME_OPTION","features":[141]},{"name":"IMMPID_MP_ENCRYPTION_TYPE","features":[141]},{"name":"IMMPID_MP_ENUM","features":[141]},{"name":"IMMPID_MP_ERROR_CODE","features":[141]},{"name":"IMMPID_MP_EXPIRE_DELAY","features":[141]},{"name":"IMMPID_MP_EXPIRE_NDR","features":[141]},{"name":"IMMPID_MP_FOUND_EMBEDDED_CRLF_DOT_CRLF","features":[141]},{"name":"IMMPID_MP_FROM_ADDRESS","features":[141]},{"name":"IMMPID_MP_HELO_DOMAIN","features":[141]},{"name":"IMMPID_MP_HR_CAT_STATUS","features":[141]},{"name":"IMMPID_MP_INBOUND_MAIL_FROM_AUTH","features":[141]},{"name":"IMMPID_MP_LOCAL_EXPIRE_DELAY","features":[141]},{"name":"IMMPID_MP_LOCAL_EXPIRE_NDR","features":[141]},{"name":"IMMPID_MP_MESSAGE_STATUS","features":[141]},{"name":"IMMPID_MP_MSGCLASS","features":[141]},{"name":"IMMPID_MP_MSG_GUID","features":[141]},{"name":"IMMPID_MP_MSG_SIZE_HINT","features":[141]},{"name":"IMMPID_MP_NUM_RECIPIENTS","features":[141]},{"name":"IMMPID_MP_ORIGINAL_ARRIVAL_TIME","features":[141]},{"name":"IMMPID_MP_PICKUP_FILE_NAME","features":[141]},{"name":"IMMPID_MP_RECIPIENT_LIST","features":[141]},{"name":"IMMPID_MP_REMOTE_AUTHENTICATION_TYPE","features":[141]},{"name":"IMMPID_MP_REMOTE_SERVER_DSN_CAPABLE","features":[141]},{"name":"IMMPID_MP_RFC822_BCC_ADDRESS","features":[141]},{"name":"IMMPID_MP_RFC822_CC_ADDRESS","features":[141]},{"name":"IMMPID_MP_RFC822_FROM_ADDRESS","features":[141]},{"name":"IMMPID_MP_RFC822_MSG_ID","features":[141]},{"name":"IMMPID_MP_RFC822_MSG_SUBJECT","features":[141]},{"name":"IMMPID_MP_RFC822_TO_ADDRESS","features":[141]},{"name":"IMMPID_MP_SCANNED_FOR_CRLF_DOT_CRLF","features":[141]},{"name":"IMMPID_MP_SENDER_ADDRESS","features":[141]},{"name":"IMMPID_MP_SENDER_ADDRESS_LEGACY_EX_DN","features":[141]},{"name":"IMMPID_MP_SENDER_ADDRESS_OTHER","features":[141]},{"name":"IMMPID_MP_SENDER_ADDRESS_SMTP","features":[141]},{"name":"IMMPID_MP_SENDER_ADDRESS_X400","features":[141]},{"name":"IMMPID_MP_SENDER_ADDRESS_X500","features":[141]},{"name":"IMMPID_MP_SERVER_NAME","features":[141]},{"name":"IMMPID_MP_SERVER_VERSION","features":[141]},{"name":"IMMPID_MP_SUPERSEDES_MSG_GUID","features":[141]},{"name":"IMMPID_MP_X_PRIORITY","features":[141]},{"name":"IMMPID_NMP_AFTER__","features":[141]},{"name":"IMMPID_NMP_BEFORE__","features":[141]},{"name":"IMMPID_NMP_ENUM","features":[141]},{"name":"IMMPID_NMP_HEADERS","features":[141]},{"name":"IMMPID_NMP_NEWSGROUP_LIST","features":[141]},{"name":"IMMPID_NMP_NNTP_APPROVED_HEADER","features":[141]},{"name":"IMMPID_NMP_NNTP_PROCESSING","features":[141]},{"name":"IMMPID_NMP_POST_TOKEN","features":[141]},{"name":"IMMPID_NMP_PRIMARY_ARTID","features":[141]},{"name":"IMMPID_NMP_PRIMARY_GROUP","features":[141]},{"name":"IMMPID_NMP_SECONDARY_ARTNUM","features":[141]},{"name":"IMMPID_NMP_SECONDARY_GROUPS","features":[141]},{"name":"IMMPID_RPV_AFTER__","features":[141]},{"name":"IMMPID_RPV_BEFORE__","features":[141]},{"name":"IMMPID_RPV_DONT_DELIVER","features":[141]},{"name":"IMMPID_RPV_ENUM","features":[141]},{"name":"IMMPID_RPV_NO_NAME_COLLISIONS","features":[141]},{"name":"IMMPID_RP_ADDRESS","features":[141]},{"name":"IMMPID_RP_ADDRESS_OTHER","features":[141]},{"name":"IMMPID_RP_ADDRESS_SMTP","features":[141]},{"name":"IMMPID_RP_ADDRESS_TYPE","features":[141]},{"name":"IMMPID_RP_ADDRESS_TYPE_SMTP","features":[141]},{"name":"IMMPID_RP_ADDRESS_X400","features":[141]},{"name":"IMMPID_RP_ADDRESS_X500","features":[141]},{"name":"IMMPID_RP_AFTER__","features":[141]},{"name":"IMMPID_RP_BEFORE__","features":[141]},{"name":"IMMPID_RP_DISPLAY_NAME","features":[141]},{"name":"IMMPID_RP_DOMAIN","features":[141]},{"name":"IMMPID_RP_DSN_NOTIFY_INVALID","features":[141]},{"name":"IMMPID_RP_DSN_NOTIFY_SUCCESS","features":[141]},{"name":"IMMPID_RP_DSN_NOTIFY_VALUE","features":[141]},{"name":"IMMPID_RP_DSN_ORCPT_VALUE","features":[141]},{"name":"IMMPID_RP_DSN_PRE_CAT_ADDRESS","features":[141]},{"name":"IMMPID_RP_ENUM","features":[141]},{"name":"IMMPID_RP_ERROR_CODE","features":[141]},{"name":"IMMPID_RP_ERROR_STRING","features":[141]},{"name":"IMMPID_RP_LEGACY_EX_DN","features":[141]},{"name":"IMMPID_RP_MDB_GUID","features":[141]},{"name":"IMMPID_RP_RECIPIENT_FLAGS","features":[141]},{"name":"IMMPID_RP_SMTP_STATUS_STRING","features":[141]},{"name":"IMMPID_RP_USER_GUID","features":[141]},{"name":"IMMP_MPV_STORE_DRIVER_HANDLE","features":[141]},{"name":"IMultisession","features":[141]},{"name":"IMultisessionRandomWrite","features":[141]},{"name":"IMultisessionSequential","features":[141]},{"name":"IMultisessionSequential2","features":[141]},{"name":"IProgressItem","features":[141]},{"name":"IProgressItems","features":[141]},{"name":"IRawCDImageCreator","features":[141]},{"name":"IRawCDImageTrackInfo","features":[141]},{"name":"IRedbookDiscMaster","features":[141]},{"name":"IStreamConcatenate","features":[141]},{"name":"IStreamInterleave","features":[141]},{"name":"IStreamPseudoRandomBased","features":[141]},{"name":"IWriteEngine2","features":[141]},{"name":"IWriteEngine2EventArgs","features":[141]},{"name":"IWriteSpeedDescriptor","features":[141]},{"name":"LPMSGSESS","features":[141]},{"name":"MEDIA_BLANK","features":[141]},{"name":"MEDIA_CDDA_CDROM","features":[141]},{"name":"MEDIA_CD_EXTRA","features":[141]},{"name":"MEDIA_CD_I","features":[141]},{"name":"MEDIA_CD_OTHER","features":[141]},{"name":"MEDIA_CD_ROM_XA","features":[141]},{"name":"MEDIA_FLAGS","features":[141]},{"name":"MEDIA_FORMAT_UNUSABLE_BY_IMAPI","features":[141]},{"name":"MEDIA_RW","features":[141]},{"name":"MEDIA_SPECIAL","features":[141]},{"name":"MEDIA_TYPES","features":[141]},{"name":"MEDIA_WRITABLE","features":[141]},{"name":"MPV_INBOUND_CUTOFF_EXCEEDED","features":[141]},{"name":"MPV_WRITE_CONTENT","features":[141]},{"name":"MP_MSGCLASS_DELIVERY_REPORT","features":[141]},{"name":"MP_MSGCLASS_NONDELIVERY_REPORT","features":[141]},{"name":"MP_MSGCLASS_REPLICATION","features":[141]},{"name":"MP_MSGCLASS_SYSTEM","features":[141]},{"name":"MP_STATUS_ABANDON_DELIVERY","features":[141]},{"name":"MP_STATUS_ABORT_DELIVERY","features":[141]},{"name":"MP_STATUS_BAD_MAIL","features":[141]},{"name":"MP_STATUS_CATEGORIZED","features":[141]},{"name":"MP_STATUS_RETRY","features":[141]},{"name":"MP_STATUS_SUBMITTED","features":[141]},{"name":"MP_STATUS_SUCCESS","features":[141]},{"name":"MSDiscMasterObj","features":[141]},{"name":"MSDiscRecorderObj","features":[141]},{"name":"MSEnumDiscRecordersObj","features":[141]},{"name":"MSGCALLRELEASE","features":[141]},{"name":"MapStorageSCode","features":[141]},{"name":"MsftDiscFormat2Data","features":[141]},{"name":"MsftDiscFormat2Erase","features":[141]},{"name":"MsftDiscFormat2RawCD","features":[141]},{"name":"MsftDiscFormat2TrackAtOnce","features":[141]},{"name":"MsftDiscMaster2","features":[141]},{"name":"MsftDiscRecorder2","features":[141]},{"name":"MsftFileSystemImage","features":[141]},{"name":"MsftIsoImageManager","features":[141]},{"name":"MsftMultisessionRandomWrite","features":[141]},{"name":"MsftMultisessionSequential","features":[141]},{"name":"MsftRawCDImageCreator","features":[141]},{"name":"MsftStreamConcatenate","features":[141]},{"name":"MsftStreamInterleave","features":[141]},{"name":"MsftStreamPrng001","features":[141]},{"name":"MsftStreamZero","features":[141]},{"name":"MsftWriteEngine2","features":[141]},{"name":"MsftWriteSpeedDescriptor","features":[141]},{"name":"NMP_PROCESS_CONTROL","features":[141]},{"name":"NMP_PROCESS_MODERATOR","features":[141]},{"name":"NMP_PROCESS_POST","features":[141]},{"name":"OpenIMsgOnIStg","features":[141,142]},{"name":"OpenIMsgSession","features":[141]},{"name":"PlatformEFI","features":[141]},{"name":"PlatformId","features":[141]},{"name":"PlatformMac","features":[141]},{"name":"PlatformPowerPC","features":[141]},{"name":"PlatformX86","features":[141]},{"name":"ProgressItem","features":[141]},{"name":"ProgressItems","features":[141]},{"name":"RECORDER_BURNING","features":[141]},{"name":"RECORDER_CDR","features":[141]},{"name":"RECORDER_CDRW","features":[141]},{"name":"RECORDER_DOING_NOTHING","features":[141]},{"name":"RECORDER_OPENED","features":[141]},{"name":"RECORDER_TYPES","features":[141]},{"name":"RP_DELIVERED","features":[141]},{"name":"RP_DSN_HANDLED","features":[141]},{"name":"RP_DSN_NOTIFY_DELAY","features":[141]},{"name":"RP_DSN_NOTIFY_FAILURE","features":[141]},{"name":"RP_DSN_NOTIFY_INVALID","features":[141]},{"name":"RP_DSN_NOTIFY_MASK","features":[141]},{"name":"RP_DSN_NOTIFY_NEVER","features":[141]},{"name":"RP_DSN_NOTIFY_SUCCESS","features":[141]},{"name":"RP_DSN_SENT_DELAYED","features":[141]},{"name":"RP_DSN_SENT_DELIVERED","features":[141]},{"name":"RP_DSN_SENT_EXPANDED","features":[141]},{"name":"RP_DSN_SENT_NDR","features":[141]},{"name":"RP_DSN_SENT_RELAYED","features":[141]},{"name":"RP_ENPANDED","features":[141]},{"name":"RP_ERROR_CONTEXT_CAT","features":[141]},{"name":"RP_ERROR_CONTEXT_MTA","features":[141]},{"name":"RP_ERROR_CONTEXT_STORE","features":[141]},{"name":"RP_EXPANDED","features":[141]},{"name":"RP_FAILED","features":[141]},{"name":"RP_GENERAL_FAILURE","features":[141]},{"name":"RP_HANDLED","features":[141]},{"name":"RP_RECIP_FLAGS_RESERVED","features":[141]},{"name":"RP_REMOTE_MTA_NO_DSN","features":[141]},{"name":"RP_UNRESOLVED","features":[141]},{"name":"RP_VOLATILE_FLAGS_MASK","features":[141]},{"name":"SPropAttrArray","features":[141]},{"name":"SZ_PROGID_SMTPCAT","features":[141]},{"name":"SetAttribIMsgOnIStg","features":[141,142]},{"name":"tagIMMPID_CPV_STRUCT","features":[141]},{"name":"tagIMMPID_GUIDLIST_ITEM","features":[141]},{"name":"tagIMMPID_MPV_STRUCT","features":[141]},{"name":"tagIMMPID_MP_STRUCT","features":[141]},{"name":"tagIMMPID_NMP_STRUCT","features":[141]},{"name":"tagIMMPID_RPV_STRUCT","features":[141]},{"name":"tagIMMPID_RP_STRUCT","features":[141]}],"512":[{"name":"BindIFilterFromStorage","features":[143]},{"name":"BindIFilterFromStream","features":[143]},{"name":"CHUNKSTATE","features":[143]},{"name":"CHUNK_BREAKTYPE","features":[143]},{"name":"CHUNK_EOC","features":[143]},{"name":"CHUNK_EOP","features":[143]},{"name":"CHUNK_EOS","features":[143]},{"name":"CHUNK_EOW","features":[143]},{"name":"CHUNK_FILTER_OWNED_VALUE","features":[143]},{"name":"CHUNK_NO_BREAK","features":[143]},{"name":"CHUNK_TEXT","features":[143]},{"name":"CHUNK_VALUE","features":[143]},{"name":"CIADMIN","features":[143]},{"name":"CICAT_ALL_OPENED","features":[143]},{"name":"CICAT_GET_STATE","features":[143]},{"name":"CICAT_NO_QUERY","features":[143]},{"name":"CICAT_READONLY","features":[143]},{"name":"CICAT_STOPPED","features":[143]},{"name":"CICAT_WRITABLE","features":[143]},{"name":"CINULLCATALOG","features":[143]},{"name":"CI_PROVIDER_ALL","features":[143]},{"name":"CI_PROVIDER_INDEXING_SERVICE","features":[143]},{"name":"CI_PROVIDER_MSSEARCH","features":[143]},{"name":"CI_STATE","features":[143]},{"name":"CI_STATE_ANNEALING_MERGE","features":[143]},{"name":"CI_STATE_BATTERY_POLICY","features":[143]},{"name":"CI_STATE_BATTERY_POWER","features":[143]},{"name":"CI_STATE_CONTENT_SCAN_REQUIRED","features":[143]},{"name":"CI_STATE_DELETION_MERGE","features":[143]},{"name":"CI_STATE_HIGH_CPU","features":[143]},{"name":"CI_STATE_HIGH_IO","features":[143]},{"name":"CI_STATE_INDEX_MIGRATION_MERGE","features":[143]},{"name":"CI_STATE_LOW_DISK","features":[143]},{"name":"CI_STATE_LOW_MEMORY","features":[143]},{"name":"CI_STATE_MASTER_MERGE","features":[143]},{"name":"CI_STATE_MASTER_MERGE_PAUSED","features":[143]},{"name":"CI_STATE_READING_USNS","features":[143]},{"name":"CI_STATE_READ_ONLY","features":[143]},{"name":"CI_STATE_RECOVERING","features":[143]},{"name":"CI_STATE_SCANNING","features":[143]},{"name":"CI_STATE_SHADOW_MERGE","features":[143]},{"name":"CI_STATE_STARTING","features":[143]},{"name":"CI_STATE_USER_ACTIVE","features":[143]},{"name":"CI_VERSION_WDS30","features":[143]},{"name":"CI_VERSION_WDS40","features":[143]},{"name":"CI_VERSION_WIN70","features":[143]},{"name":"CLSID_INDEX_SERVER_DSO","features":[143]},{"name":"DBID","features":[143]},{"name":"DBID","features":[143]},{"name":"DBKINDENUM","features":[143]},{"name":"DBKIND_GUID","features":[143]},{"name":"DBKIND_GUID_NAME","features":[143]},{"name":"DBKIND_GUID_PROPID","features":[143]},{"name":"DBKIND_NAME","features":[143]},{"name":"DBKIND_PGUID_NAME","features":[143]},{"name":"DBKIND_PGUID_PROPID","features":[143]},{"name":"DBKIND_PROPID","features":[143]},{"name":"DBPROPSET_CIFRMWRKCORE_EXT","features":[143]},{"name":"DBPROPSET_FSCIFRMWRK_EXT","features":[143]},{"name":"DBPROPSET_MSIDXS_ROWSETEXT","features":[143]},{"name":"DBPROPSET_QUERYEXT","features":[143]},{"name":"DBPROPSET_SESS_QUERYEXT","features":[143]},{"name":"DBPROP_APPLICATION_NAME","features":[143]},{"name":"DBPROP_CATALOGLISTID","features":[143]},{"name":"DBPROP_CI_CATALOG_NAME","features":[143]},{"name":"DBPROP_CI_DEPTHS","features":[143]},{"name":"DBPROP_CI_EXCLUDE_SCOPES","features":[143]},{"name":"DBPROP_CI_INCLUDE_SCOPES","features":[143]},{"name":"DBPROP_CI_PROVIDER","features":[143]},{"name":"DBPROP_CI_QUERY_TYPE","features":[143]},{"name":"DBPROP_CI_SCOPE_FLAGS","features":[143]},{"name":"DBPROP_CI_SECURITY_ID","features":[143]},{"name":"DBPROP_CLIENT_CLSID","features":[143]},{"name":"DBPROP_DEFAULT_EQUALS_BEHAVIOR","features":[143]},{"name":"DBPROP_DEFERCATALOGVERIFICATION","features":[143]},{"name":"DBPROP_DEFERNONINDEXEDTRIMMING","features":[143]},{"name":"DBPROP_DONOTCOMPUTEEXPENSIVEPROPS","features":[143]},{"name":"DBPROP_ENABLEROWSETEVENTS","features":[143]},{"name":"DBPROP_FIRSTROWS","features":[143]},{"name":"DBPROP_FREETEXTANYTERM","features":[143]},{"name":"DBPROP_FREETEXTUSESTEMMING","features":[143]},{"name":"DBPROP_GENERATEPARSETREE","features":[143]},{"name":"DBPROP_GENERICOPTIONS_STRING","features":[143]},{"name":"DBPROP_IGNORENOISEONLYCLAUSES","features":[143]},{"name":"DBPROP_IGNORESBRI","features":[143]},{"name":"DBPROP_MACHINE","features":[143]},{"name":"DBPROP_USECONTENTINDEX","features":[143]},{"name":"DBPROP_USEEXTENDEDDBTYPES","features":[143]},{"name":"DBSETFUNC_ALL","features":[143]},{"name":"DBSETFUNC_DISTINCT","features":[143]},{"name":"DBSETFUNC_NONE","features":[143]},{"name":"FILTERREGION","features":[143]},{"name":"FILTER_E_ACCESS","features":[143]},{"name":"FILTER_E_EMBEDDING_UNAVAILABLE","features":[143]},{"name":"FILTER_E_END_OF_CHUNKS","features":[143]},{"name":"FILTER_E_LINK_UNAVAILABLE","features":[143]},{"name":"FILTER_E_NO_MORE_TEXT","features":[143]},{"name":"FILTER_E_NO_MORE_VALUES","features":[143]},{"name":"FILTER_E_NO_TEXT","features":[143]},{"name":"FILTER_E_NO_VALUES","features":[143]},{"name":"FILTER_E_PASSWORD","features":[143]},{"name":"FILTER_E_UNKNOWNFORMAT","features":[143]},{"name":"FILTER_S_LAST_TEXT","features":[143]},{"name":"FILTER_S_LAST_VALUES","features":[143]},{"name":"FILTER_W_MONIKER_CLIPPED","features":[143]},{"name":"FULLPROPSPEC","features":[143,63]},{"name":"GENERATE_METHOD_EXACT","features":[143]},{"name":"GENERATE_METHOD_INFLECT","features":[143]},{"name":"GENERATE_METHOD_PREFIX","features":[143]},{"name":"IFILTER_FLAGS","features":[143]},{"name":"IFILTER_FLAGS_OLE_PROPERTIES","features":[143]},{"name":"IFILTER_INIT","features":[143]},{"name":"IFILTER_INIT_APPLY_CRAWL_ATTRIBUTES","features":[143]},{"name":"IFILTER_INIT_APPLY_INDEX_ATTRIBUTES","features":[143]},{"name":"IFILTER_INIT_APPLY_OTHER_ATTRIBUTES","features":[143]},{"name":"IFILTER_INIT_CANON_HYPHENS","features":[143]},{"name":"IFILTER_INIT_CANON_PARAGRAPHS","features":[143]},{"name":"IFILTER_INIT_CANON_SPACES","features":[143]},{"name":"IFILTER_INIT_DISABLE_EMBEDDED","features":[143]},{"name":"IFILTER_INIT_EMIT_FORMATTING","features":[143]},{"name":"IFILTER_INIT_FILTER_AGGRESSIVE_BREAK","features":[143]},{"name":"IFILTER_INIT_FILTER_OWNED_VALUE_OK","features":[143]},{"name":"IFILTER_INIT_HARD_LINE_BREAKS","features":[143]},{"name":"IFILTER_INIT_INDEXING_ONLY","features":[143]},{"name":"IFILTER_INIT_SEARCH_LINKS","features":[143]},{"name":"IFilter","features":[143]},{"name":"IPhraseSink","features":[143]},{"name":"LIFF_FORCE_TEXT_FILTER_FALLBACK","features":[143]},{"name":"LIFF_IMPLEMENT_TEXT_FILTER_FALLBACK_POLICY","features":[143]},{"name":"LIFF_LOAD_DEFINED_FILTER","features":[143]},{"name":"LoadIFilter","features":[143]},{"name":"LoadIFilterEx","features":[143]},{"name":"MSIDXSPROP_COMMAND_LOCALE_STRING","features":[143]},{"name":"MSIDXSPROP_MAX_RANK","features":[143]},{"name":"MSIDXSPROP_PARSE_TREE","features":[143]},{"name":"MSIDXSPROP_QUERY_RESTRICTION","features":[143]},{"name":"MSIDXSPROP_RESULTS_FOUND","features":[143]},{"name":"MSIDXSPROP_ROWSETQUERYSTATUS","features":[143]},{"name":"MSIDXSPROP_SAME_SORTORDER_USED","features":[143]},{"name":"MSIDXSPROP_SERVER_NLSVERSION","features":[143]},{"name":"MSIDXSPROP_SERVER_NLSVER_DEFINED","features":[143]},{"name":"MSIDXSPROP_SERVER_VERSION","features":[143]},{"name":"MSIDXSPROP_SERVER_WINVER_MAJOR","features":[143]},{"name":"MSIDXSPROP_SERVER_WINVER_MINOR","features":[143]},{"name":"MSIDXSPROP_WHEREID","features":[143]},{"name":"NOT_AN_ERROR","features":[143]},{"name":"PID_FILENAME","features":[143]},{"name":"PROPID_QUERY_ALL","features":[143]},{"name":"PROPID_QUERY_HITCOUNT","features":[143]},{"name":"PROPID_QUERY_LASTSEENTIME","features":[143]},{"name":"PROPID_QUERY_RANK","features":[143]},{"name":"PROPID_QUERY_RANKVECTOR","features":[143]},{"name":"PROPID_QUERY_UNFILTERED","features":[143]},{"name":"PROPID_QUERY_VIRTUALPATH","features":[143]},{"name":"PROPID_QUERY_WORKID","features":[143]},{"name":"PROPID_STG_CONTENTS","features":[143]},{"name":"PROXIMITY_UNIT_CHAPTER","features":[143]},{"name":"PROXIMITY_UNIT_PARAGRAPH","features":[143]},{"name":"PROXIMITY_UNIT_SENTENCE","features":[143]},{"name":"PROXIMITY_UNIT_WORD","features":[143]},{"name":"PSGUID_FILENAME","features":[143]},{"name":"QUERY_DEEP","features":[143]},{"name":"QUERY_PHYSICAL_PATH","features":[143]},{"name":"QUERY_SHALLOW","features":[143]},{"name":"QUERY_VIRTUAL_PATH","features":[143]},{"name":"SCOPE_FLAG_DEEP","features":[143]},{"name":"SCOPE_FLAG_INCLUDE","features":[143]},{"name":"SCOPE_FLAG_MASK","features":[143]},{"name":"SCOPE_TYPE_MASK","features":[143]},{"name":"SCOPE_TYPE_VPATH","features":[143]},{"name":"SCOPE_TYPE_WINPATH","features":[143]},{"name":"STAT_BUSY","features":[143]},{"name":"STAT_CHUNK","features":[143,63]},{"name":"STAT_COALESCE_COMP_ALL_NOISE","features":[143]},{"name":"STAT_CONTENT_OUT_OF_DATE","features":[143]},{"name":"STAT_CONTENT_QUERY_INCOMPLETE","features":[143]},{"name":"STAT_DONE","features":[143]},{"name":"STAT_ERROR","features":[143]},{"name":"STAT_MISSING_PROP_IN_RELDOC","features":[143]},{"name":"STAT_MISSING_RELDOC","features":[143]},{"name":"STAT_NOISE_WORDS","features":[143]},{"name":"STAT_PARTIAL_SCOPE","features":[143]},{"name":"STAT_REFRESH","features":[143]},{"name":"STAT_REFRESH_INCOMPLETE","features":[143]},{"name":"STAT_RELDOC_ACCESS_DENIED","features":[143]},{"name":"STAT_SHARING_VIOLATION","features":[143]},{"name":"STAT_TIME_LIMIT_EXCEEDED","features":[143]},{"name":"VECTOR_RANK_DICE","features":[143]},{"name":"VECTOR_RANK_INNER","features":[143]},{"name":"VECTOR_RANK_JACCARD","features":[143]},{"name":"VECTOR_RANK_MAX","features":[143]},{"name":"VECTOR_RANK_MIN","features":[143]},{"name":"WORDREP_BREAK_EOC","features":[143]},{"name":"WORDREP_BREAK_EOP","features":[143]},{"name":"WORDREP_BREAK_EOS","features":[143]},{"name":"WORDREP_BREAK_EOW","features":[143]},{"name":"WORDREP_BREAK_TYPE","features":[143]}],"513":[{"name":"FILTER_AGGREGATE_BASIC_INFORMATION","features":[25]},{"name":"FILTER_AGGREGATE_STANDARD_INFORMATION","features":[25]},{"name":"FILTER_FULL_INFORMATION","features":[25]},{"name":"FILTER_INFORMATION_CLASS","features":[25]},{"name":"FILTER_MESSAGE_HEADER","features":[25]},{"name":"FILTER_NAME_MAX_CHARS","features":[25]},{"name":"FILTER_REPLY_HEADER","features":[1,25]},{"name":"FILTER_VOLUME_BASIC_INFORMATION","features":[25]},{"name":"FILTER_VOLUME_INFORMATION_CLASS","features":[25]},{"name":"FILTER_VOLUME_STANDARD_INFORMATION","features":[25]},{"name":"FLTFL_AGGREGATE_INFO_IS_LEGACYFILTER","features":[25]},{"name":"FLTFL_AGGREGATE_INFO_IS_MINIFILTER","features":[25]},{"name":"FLTFL_ASI_IS_LEGACYFILTER","features":[25]},{"name":"FLTFL_ASI_IS_MINIFILTER","features":[25]},{"name":"FLTFL_IASIL_DETACHED_VOLUME","features":[25]},{"name":"FLTFL_IASIM_DETACHED_VOLUME","features":[25]},{"name":"FLTFL_IASI_IS_LEGACYFILTER","features":[25]},{"name":"FLTFL_IASI_IS_MINIFILTER","features":[25]},{"name":"FLTFL_VSI_DETACHED_VOLUME","features":[25]},{"name":"FLT_FILESYSTEM_TYPE","features":[25]},{"name":"FLT_FSTYPE_BSUDF","features":[25]},{"name":"FLT_FSTYPE_CDFS","features":[25]},{"name":"FLT_FSTYPE_CIMFS","features":[25]},{"name":"FLT_FSTYPE_CSVFS","features":[25]},{"name":"FLT_FSTYPE_EXFAT","features":[25]},{"name":"FLT_FSTYPE_FAT","features":[25]},{"name":"FLT_FSTYPE_FS_REC","features":[25]},{"name":"FLT_FSTYPE_GPFS","features":[25]},{"name":"FLT_FSTYPE_INCD","features":[25]},{"name":"FLT_FSTYPE_INCD_FAT","features":[25]},{"name":"FLT_FSTYPE_LANMAN","features":[25]},{"name":"FLT_FSTYPE_MSFS","features":[25]},{"name":"FLT_FSTYPE_MS_NETWARE","features":[25]},{"name":"FLT_FSTYPE_MUP","features":[25]},{"name":"FLT_FSTYPE_NETWARE","features":[25]},{"name":"FLT_FSTYPE_NFS","features":[25]},{"name":"FLT_FSTYPE_NPFS","features":[25]},{"name":"FLT_FSTYPE_NTFS","features":[25]},{"name":"FLT_FSTYPE_OPENAFS","features":[25]},{"name":"FLT_FSTYPE_PSFS","features":[25]},{"name":"FLT_FSTYPE_RAW","features":[25]},{"name":"FLT_FSTYPE_RDPDR","features":[25]},{"name":"FLT_FSTYPE_REFS","features":[25]},{"name":"FLT_FSTYPE_ROXIO_UDF1","features":[25]},{"name":"FLT_FSTYPE_ROXIO_UDF2","features":[25]},{"name":"FLT_FSTYPE_ROXIO_UDF3","features":[25]},{"name":"FLT_FSTYPE_RSFX","features":[25]},{"name":"FLT_FSTYPE_TACIT","features":[25]},{"name":"FLT_FSTYPE_UDFS","features":[25]},{"name":"FLT_FSTYPE_UNKNOWN","features":[25]},{"name":"FLT_FSTYPE_WEBDAV","features":[25]},{"name":"FLT_PORT_FLAG_SYNC_HANDLE","features":[25]},{"name":"FilterAggregateBasicInformation","features":[25]},{"name":"FilterAggregateStandardInformation","features":[25]},{"name":"FilterAttach","features":[25]},{"name":"FilterAttachAtAltitude","features":[25]},{"name":"FilterClose","features":[25]},{"name":"FilterConnectCommunicationPort","features":[1,4,25]},{"name":"FilterCreate","features":[25]},{"name":"FilterDetach","features":[25]},{"name":"FilterFindClose","features":[1,25]},{"name":"FilterFindFirst","features":[1,25]},{"name":"FilterFindNext","features":[1,25]},{"name":"FilterFullInformation","features":[25]},{"name":"FilterGetDosName","features":[25]},{"name":"FilterGetInformation","features":[25]},{"name":"FilterGetMessage","features":[1,25,6]},{"name":"FilterInstanceClose","features":[25]},{"name":"FilterInstanceCreate","features":[25]},{"name":"FilterInstanceFindClose","features":[1,25]},{"name":"FilterInstanceFindFirst","features":[1,25]},{"name":"FilterInstanceFindNext","features":[1,25]},{"name":"FilterInstanceGetInformation","features":[25]},{"name":"FilterLoad","features":[25]},{"name":"FilterReplyMessage","features":[1,25]},{"name":"FilterSendMessage","features":[1,25]},{"name":"FilterUnload","features":[25]},{"name":"FilterVolumeBasicInformation","features":[25]},{"name":"FilterVolumeFindClose","features":[1,25]},{"name":"FilterVolumeFindFirst","features":[1,25]},{"name":"FilterVolumeFindNext","features":[1,25]},{"name":"FilterVolumeInstanceFindClose","features":[1,25]},{"name":"FilterVolumeInstanceFindFirst","features":[1,25]},{"name":"FilterVolumeInstanceFindNext","features":[1,25]},{"name":"FilterVolumeStandardInformation","features":[25]},{"name":"HFILTER","features":[25]},{"name":"HFILTER_INSTANCE","features":[25]},{"name":"INSTANCE_AGGREGATE_STANDARD_INFORMATION","features":[25]},{"name":"INSTANCE_BASIC_INFORMATION","features":[25]},{"name":"INSTANCE_FULL_INFORMATION","features":[25]},{"name":"INSTANCE_INFORMATION_CLASS","features":[25]},{"name":"INSTANCE_NAME_MAX_CHARS","features":[25]},{"name":"INSTANCE_PARTIAL_INFORMATION","features":[25]},{"name":"InstanceAggregateStandardInformation","features":[25]},{"name":"InstanceBasicInformation","features":[25]},{"name":"InstanceFullInformation","features":[25]},{"name":"InstancePartialInformation","features":[25]},{"name":"VOLUME_NAME_MAX_CHARS","features":[25]},{"name":"WNNC_CRED_MANAGER","features":[25]},{"name":"WNNC_NET_10NET","features":[25]},{"name":"WNNC_NET_3IN1","features":[25]},{"name":"WNNC_NET_9P","features":[25]},{"name":"WNNC_NET_9TILES","features":[25]},{"name":"WNNC_NET_APPLETALK","features":[25]},{"name":"WNNC_NET_AS400","features":[25]},{"name":"WNNC_NET_AURISTOR_FS","features":[25]},{"name":"WNNC_NET_AVID","features":[25]},{"name":"WNNC_NET_AVID1","features":[25]},{"name":"WNNC_NET_BMC","features":[25]},{"name":"WNNC_NET_BWNFS","features":[25]},{"name":"WNNC_NET_CLEARCASE","features":[25]},{"name":"WNNC_NET_COGENT","features":[25]},{"name":"WNNC_NET_CSC","features":[25]},{"name":"WNNC_NET_DAV","features":[25]},{"name":"WNNC_NET_DCE","features":[25]},{"name":"WNNC_NET_DECORB","features":[25]},{"name":"WNNC_NET_DFS","features":[25]},{"name":"WNNC_NET_DISTINCT","features":[25]},{"name":"WNNC_NET_DOCUSHARE","features":[25]},{"name":"WNNC_NET_DOCUSPACE","features":[25]},{"name":"WNNC_NET_DRIVEONWEB","features":[25]},{"name":"WNNC_NET_EXIFS","features":[25]},{"name":"WNNC_NET_EXTENDNET","features":[25]},{"name":"WNNC_NET_FARALLON","features":[25]},{"name":"WNNC_NET_FJ_REDIR","features":[25]},{"name":"WNNC_NET_FOXBAT","features":[25]},{"name":"WNNC_NET_FRONTIER","features":[25]},{"name":"WNNC_NET_FTP_NFS","features":[25]},{"name":"WNNC_NET_GOOGLE","features":[25]},{"name":"WNNC_NET_HOB_NFS","features":[25]},{"name":"WNNC_NET_IBMAL","features":[25]},{"name":"WNNC_NET_INTERGRAPH","features":[25]},{"name":"WNNC_NET_KNOWARE","features":[25]},{"name":"WNNC_NET_KWNP","features":[25]},{"name":"WNNC_NET_LANMAN","features":[25]},{"name":"WNNC_NET_LANSTEP","features":[25]},{"name":"WNNC_NET_LANTASTIC","features":[25]},{"name":"WNNC_NET_LIFENET","features":[25]},{"name":"WNNC_NET_LOCK","features":[25]},{"name":"WNNC_NET_LOCUS","features":[25]},{"name":"WNNC_NET_MANGOSOFT","features":[25]},{"name":"WNNC_NET_MASFAX","features":[25]},{"name":"WNNC_NET_MFILES","features":[25]},{"name":"WNNC_NET_MSNET","features":[25]},{"name":"WNNC_NET_MS_NFS","features":[25]},{"name":"WNNC_NET_NDFS","features":[25]},{"name":"WNNC_NET_NETWARE","features":[25]},{"name":"WNNC_NET_OBJECT_DIRE","features":[25]},{"name":"WNNC_NET_OPENAFS","features":[25]},{"name":"WNNC_NET_PATHWORKS","features":[25]},{"name":"WNNC_NET_POWERLAN","features":[25]},{"name":"WNNC_NET_PROTSTOR","features":[25]},{"name":"WNNC_NET_QUINCY","features":[25]},{"name":"WNNC_NET_RDR2SAMPLE","features":[25]},{"name":"WNNC_NET_RIVERFRONT1","features":[25]},{"name":"WNNC_NET_RIVERFRONT2","features":[25]},{"name":"WNNC_NET_RSFX","features":[25]},{"name":"WNNC_NET_SECUREAGENT","features":[25]},{"name":"WNNC_NET_SERNET","features":[25]},{"name":"WNNC_NET_SHIVA","features":[25]},{"name":"WNNC_NET_SMB","features":[25]},{"name":"WNNC_NET_SRT","features":[25]},{"name":"WNNC_NET_STAC","features":[25]},{"name":"WNNC_NET_SUN_PC_NFS","features":[25]},{"name":"WNNC_NET_SYMFONET","features":[25]},{"name":"WNNC_NET_TERMSRV","features":[25]},{"name":"WNNC_NET_TWINS","features":[25]},{"name":"WNNC_NET_VINES","features":[25]},{"name":"WNNC_NET_VMWARE","features":[25]},{"name":"WNNC_NET_YAHOO","features":[25]},{"name":"WNNC_NET_ZENWORKS","features":[25]}],"514":[{"name":"ATA_FLAGS_48BIT_COMMAND","features":[33]},{"name":"ATA_FLAGS_DATA_IN","features":[33]},{"name":"ATA_FLAGS_DATA_OUT","features":[33]},{"name":"ATA_FLAGS_DRDY_REQUIRED","features":[33]},{"name":"ATA_FLAGS_NO_MULTIPLE","features":[33]},{"name":"ATA_FLAGS_USE_DMA","features":[33]},{"name":"ATA_PASS_THROUGH_DIRECT","features":[33]},{"name":"ATA_PASS_THROUGH_DIRECT32","features":[33]},{"name":"ATA_PASS_THROUGH_EX","features":[33]},{"name":"ATA_PASS_THROUGH_EX32","features":[33]},{"name":"AddISNSServerA","features":[33]},{"name":"AddISNSServerW","features":[33]},{"name":"AddIScsiConnectionA","features":[33]},{"name":"AddIScsiConnectionW","features":[33]},{"name":"AddIScsiSendTargetPortalA","features":[33]},{"name":"AddIScsiSendTargetPortalW","features":[33]},{"name":"AddIScsiStaticTargetA","features":[1,33]},{"name":"AddIScsiStaticTargetW","features":[1,33]},{"name":"AddPersistentIScsiDeviceA","features":[33]},{"name":"AddPersistentIScsiDeviceW","features":[33]},{"name":"AddRadiusServerA","features":[33]},{"name":"AddRadiusServerW","features":[33]},{"name":"ClearPersistentIScsiDevices","features":[33]},{"name":"DD_SCSI_DEVICE_NAME","features":[33]},{"name":"DSM_NOTIFICATION_REQUEST_BLOCK","features":[33]},{"name":"DUMP_DRIVER","features":[33]},{"name":"DUMP_DRIVER_EX","features":[33]},{"name":"DUMP_DRIVER_NAME_LENGTH","features":[33]},{"name":"DUMP_EX_FLAG_DRIVER_FULL_PATH_SUPPORT","features":[33]},{"name":"DUMP_EX_FLAG_RESUME_SUPPORT","features":[33]},{"name":"DUMP_EX_FLAG_SUPPORT_64BITMEMORY","features":[33]},{"name":"DUMP_EX_FLAG_SUPPORT_DD_TELEMETRY","features":[33]},{"name":"DUMP_POINTERS","features":[1,33]},{"name":"DUMP_POINTERS_EX","features":[1,33]},{"name":"DUMP_POINTERS_VERSION","features":[33]},{"name":"DUMP_POINTERS_VERSION_1","features":[33]},{"name":"DUMP_POINTERS_VERSION_2","features":[33]},{"name":"DUMP_POINTERS_VERSION_3","features":[33]},{"name":"DUMP_POINTERS_VERSION_4","features":[33]},{"name":"DiscoveryMechanisms","features":[33]},{"name":"FILE_DEVICE_SCSI","features":[33]},{"name":"FIRMWARE_FUNCTION_ACTIVATE","features":[33]},{"name":"FIRMWARE_FUNCTION_DOWNLOAD","features":[33]},{"name":"FIRMWARE_FUNCTION_GET_INFO","features":[33]},{"name":"FIRMWARE_REQUEST_BLOCK","features":[33]},{"name":"FIRMWARE_REQUEST_BLOCK_STRUCTURE_VERSION","features":[33]},{"name":"FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[33]},{"name":"FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[33]},{"name":"FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[33]},{"name":"FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[33]},{"name":"FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[33]},{"name":"FIRMWARE_STATUS_COMMAND_ABORT","features":[33]},{"name":"FIRMWARE_STATUS_CONTROLLER_ERROR","features":[33]},{"name":"FIRMWARE_STATUS_DEVICE_ERROR","features":[33]},{"name":"FIRMWARE_STATUS_END_OF_MEDIA","features":[33]},{"name":"FIRMWARE_STATUS_ERROR","features":[33]},{"name":"FIRMWARE_STATUS_ID_NOT_FOUND","features":[33]},{"name":"FIRMWARE_STATUS_ILLEGAL_LENGTH","features":[33]},{"name":"FIRMWARE_STATUS_ILLEGAL_REQUEST","features":[33]},{"name":"FIRMWARE_STATUS_INPUT_BUFFER_TOO_BIG","features":[33]},{"name":"FIRMWARE_STATUS_INTERFACE_CRC_ERROR","features":[33]},{"name":"FIRMWARE_STATUS_INVALID_IMAGE","features":[33]},{"name":"FIRMWARE_STATUS_INVALID_PARAMETER","features":[33]},{"name":"FIRMWARE_STATUS_INVALID_SLOT","features":[33]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE","features":[33]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE_REQUEST","features":[33]},{"name":"FIRMWARE_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[33]},{"name":"FIRMWARE_STATUS_POWER_CYCLE_REQUIRED","features":[33]},{"name":"FIRMWARE_STATUS_SUCCESS","features":[33]},{"name":"FIRMWARE_STATUS_UNCORRECTABLE_DATA_ERROR","features":[33]},{"name":"GetDevicesForIScsiSessionA","features":[33,22]},{"name":"GetDevicesForIScsiSessionW","features":[33,22]},{"name":"GetIScsiIKEInfoA","features":[33]},{"name":"GetIScsiIKEInfoW","features":[33]},{"name":"GetIScsiInitiatorNodeNameA","features":[33]},{"name":"GetIScsiInitiatorNodeNameW","features":[33]},{"name":"GetIScsiSessionListA","features":[33]},{"name":"GetIScsiSessionListEx","features":[1,33]},{"name":"GetIScsiSessionListW","features":[33]},{"name":"GetIScsiTargetInformationA","features":[33]},{"name":"GetIScsiTargetInformationW","features":[33]},{"name":"GetIScsiVersionInformation","features":[33]},{"name":"HYBRID_DEMOTE_BY_SIZE","features":[33]},{"name":"HYBRID_DIRTY_THRESHOLDS","features":[33]},{"name":"HYBRID_FUNCTION_DEMOTE_BY_SIZE","features":[33]},{"name":"HYBRID_FUNCTION_DISABLE_CACHING_MEDIUM","features":[33]},{"name":"HYBRID_FUNCTION_ENABLE_CACHING_MEDIUM","features":[33]},{"name":"HYBRID_FUNCTION_GET_INFO","features":[33]},{"name":"HYBRID_FUNCTION_SET_DIRTY_THRESHOLD","features":[33]},{"name":"HYBRID_INFORMATION","features":[1,33]},{"name":"HYBRID_REQUEST_BLOCK","features":[33]},{"name":"HYBRID_REQUEST_BLOCK_STRUCTURE_VERSION","features":[33]},{"name":"HYBRID_REQUEST_INFO_STRUCTURE_VERSION","features":[33]},{"name":"HYBRID_STATUS_ENABLE_REFCOUNT_HOLD","features":[33]},{"name":"HYBRID_STATUS_ILLEGAL_REQUEST","features":[33]},{"name":"HYBRID_STATUS_INVALID_PARAMETER","features":[33]},{"name":"HYBRID_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[33]},{"name":"HYBRID_STATUS_SUCCESS","features":[33]},{"name":"IDE_IO_CONTROL","features":[33]},{"name":"ID_FQDN","features":[33]},{"name":"ID_IPV4_ADDR","features":[33]},{"name":"ID_IPV6_ADDR","features":[33]},{"name":"ID_USER_FQDN","features":[33]},{"name":"IKE_AUTHENTICATION_INFORMATION","features":[33]},{"name":"IKE_AUTHENTICATION_METHOD","features":[33]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY","features":[33]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY_METHOD","features":[33]},{"name":"IOCTL_ATA_MINIPORT","features":[33]},{"name":"IOCTL_ATA_PASS_THROUGH","features":[33]},{"name":"IOCTL_ATA_PASS_THROUGH_DIRECT","features":[33]},{"name":"IOCTL_IDE_PASS_THROUGH","features":[33]},{"name":"IOCTL_MINIPORT_PROCESS_SERVICE_IRP","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_GENERAL","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_NOTIFICATION","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_ENDURANCE_INFO","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_FIRMWARE","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_HYBRDISK","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PHYSICAL_TOPOLOGY","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PROTOCOL","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_TEMPERATURE","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_SCSIDISK","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_PROTOCOL","features":[33]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_TEMPERATURE_THRESHOLD","features":[33]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH","features":[33]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT","features":[33]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[33]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_EX","features":[33]},{"name":"IOCTL_SCSI_BASE","features":[33]},{"name":"IOCTL_SCSI_FREE_DUMP_POINTERS","features":[33]},{"name":"IOCTL_SCSI_GET_ADDRESS","features":[33]},{"name":"IOCTL_SCSI_GET_CAPABILITIES","features":[33]},{"name":"IOCTL_SCSI_GET_DUMP_POINTERS","features":[33]},{"name":"IOCTL_SCSI_GET_INQUIRY_DATA","features":[33]},{"name":"IOCTL_SCSI_MINIPORT","features":[33]},{"name":"IOCTL_SCSI_PASS_THROUGH","features":[33]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT","features":[33]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT_EX","features":[33]},{"name":"IOCTL_SCSI_PASS_THROUGH_EX","features":[33]},{"name":"IOCTL_SCSI_RESCAN_BUS","features":[33]},{"name":"IO_SCSI_CAPABILITIES","features":[1,33]},{"name":"ISCSI_AUTH_TYPES","features":[33]},{"name":"ISCSI_CHAP_AUTH_TYPE","features":[33]},{"name":"ISCSI_CONNECTION_INFOA","features":[33]},{"name":"ISCSI_CONNECTION_INFOW","features":[33]},{"name":"ISCSI_CONNECTION_INFO_EX","features":[33]},{"name":"ISCSI_DEVICE_ON_SESSIONA","features":[33,22]},{"name":"ISCSI_DEVICE_ON_SESSIONW","features":[33,22]},{"name":"ISCSI_DIGEST_TYPES","features":[33]},{"name":"ISCSI_DIGEST_TYPE_CRC32C","features":[33]},{"name":"ISCSI_DIGEST_TYPE_NONE","features":[33]},{"name":"ISCSI_LOGIN_FLAG_ALLOW_PORTAL_HOPPING","features":[33]},{"name":"ISCSI_LOGIN_FLAG_MULTIPATH_ENABLED","features":[33]},{"name":"ISCSI_LOGIN_FLAG_REQUIRE_IPSEC","features":[33]},{"name":"ISCSI_LOGIN_FLAG_RESERVED1","features":[33]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_RESPONSE","features":[33]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_VERIFICATION","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_AUTH_TYPE","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_DATA_DIGEST","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_RETAIN","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_WAIT","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_HEADER_DIGEST","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_MAXIMUM_CONNECTIONS","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_PASSWORD","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_USERNAME","features":[33]},{"name":"ISCSI_LOGIN_OPTIONS_VERSION","features":[33]},{"name":"ISCSI_MUTUAL_CHAP_AUTH_TYPE","features":[33]},{"name":"ISCSI_NO_AUTH_TYPE","features":[33]},{"name":"ISCSI_SECURITY_FLAG_AGGRESSIVE_MODE_ENABLED","features":[33]},{"name":"ISCSI_SECURITY_FLAG_IKE_IPSEC_ENABLED","features":[33]},{"name":"ISCSI_SECURITY_FLAG_MAIN_MODE_ENABLED","features":[33]},{"name":"ISCSI_SECURITY_FLAG_PFS_ENABLED","features":[33]},{"name":"ISCSI_SECURITY_FLAG_TRANSPORT_MODE_PREFERRED","features":[33]},{"name":"ISCSI_SECURITY_FLAG_TUNNEL_MODE_PREFERRED","features":[33]},{"name":"ISCSI_SECURITY_FLAG_VALID","features":[33]},{"name":"ISCSI_SESSION_INFOA","features":[33]},{"name":"ISCSI_SESSION_INFOW","features":[33]},{"name":"ISCSI_SESSION_INFO_EX","features":[1,33]},{"name":"ISCSI_TARGET_FLAG_HIDE_STATIC_TARGET","features":[33]},{"name":"ISCSI_TARGET_FLAG_MERGE_TARGET_INFORMATION","features":[33]},{"name":"ISCSI_TARGET_MAPPINGA","features":[33]},{"name":"ISCSI_TARGET_MAPPINGW","features":[33]},{"name":"ISCSI_TARGET_PORTALA","features":[33]},{"name":"ISCSI_TARGET_PORTALW","features":[33]},{"name":"ISCSI_TARGET_PORTAL_GROUPA","features":[33]},{"name":"ISCSI_TARGET_PORTAL_GROUPW","features":[33]},{"name":"ISCSI_TARGET_PORTAL_INFOA","features":[33]},{"name":"ISCSI_TARGET_PORTAL_INFOW","features":[33]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXA","features":[33]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXW","features":[33]},{"name":"ISCSI_TCP_PROTOCOL_TYPE","features":[33]},{"name":"ISCSI_UNIQUE_SESSION_ID","features":[33]},{"name":"ISCSI_VERSION_INFO","features":[33]},{"name":"InitiatorName","features":[33]},{"name":"LoginIScsiTargetA","features":[1,33]},{"name":"LoginIScsiTargetW","features":[1,33]},{"name":"LoginOptions","features":[33]},{"name":"LogoutIScsiTarget","features":[33]},{"name":"MAX_ISCSI_ALIAS_LEN","features":[33]},{"name":"MAX_ISCSI_DISCOVERY_DOMAIN_LEN","features":[33]},{"name":"MAX_ISCSI_HBANAME_LEN","features":[33]},{"name":"MAX_ISCSI_NAME_LEN","features":[33]},{"name":"MAX_ISCSI_PORTAL_ADDRESS_LEN","features":[33]},{"name":"MAX_ISCSI_PORTAL_ALIAS_LEN","features":[33]},{"name":"MAX_ISCSI_PORTAL_NAME_LEN","features":[33]},{"name":"MAX_ISCSI_TEXT_ADDRESS_LEN","features":[33]},{"name":"MAX_RADIUS_ADDRESS_LEN","features":[33]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION","features":[33]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION_1","features":[33]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_BEGIN","features":[33]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_END","features":[33]},{"name":"MINIPORT_DSM_PROFILE_CRASHDUMP_FILE","features":[33]},{"name":"MINIPORT_DSM_PROFILE_HIBERNATION_FILE","features":[33]},{"name":"MINIPORT_DSM_PROFILE_PAGE_FILE","features":[33]},{"name":"MINIPORT_DSM_PROFILE_UNKNOWN","features":[33]},{"name":"MPIO_IOCTL_FLAG_INVOLVE_DSM","features":[33]},{"name":"MPIO_IOCTL_FLAG_USE_PATHID","features":[33]},{"name":"MPIO_IOCTL_FLAG_USE_SCSIADDRESS","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH32","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH32_EX","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32_EX","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[33]},{"name":"MPIO_PASS_THROUGH_PATH_EX","features":[33]},{"name":"MP_DEVICE_DATA_SET_RANGE","features":[33]},{"name":"MP_STORAGE_DIAGNOSTIC_LEVEL","features":[33]},{"name":"MP_STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[33]},{"name":"MpStorageDiagnosticLevelDefault","features":[33]},{"name":"MpStorageDiagnosticLevelMax","features":[33]},{"name":"MpStorageDiagnosticTargetTypeHbaFirmware","features":[33]},{"name":"MpStorageDiagnosticTargetTypeMax","features":[33]},{"name":"MpStorageDiagnosticTargetTypeMiniport","features":[33]},{"name":"MpStorageDiagnosticTargetTypeUndefined","features":[33]},{"name":"NRB_FUNCTION_ADD_LBAS_PINNED_SET","features":[33]},{"name":"NRB_FUNCTION_FLUSH_NVCACHE","features":[33]},{"name":"NRB_FUNCTION_NVCACHE_INFO","features":[33]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_RETURN","features":[33]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_SET","features":[33]},{"name":"NRB_FUNCTION_NVSEPARATED_FLUSH","features":[33]},{"name":"NRB_FUNCTION_NVSEPARATED_INFO","features":[33]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_DISABLE","features":[33]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_REVERT_DEFAULT","features":[33]},{"name":"NRB_FUNCTION_PASS_HINT_PAYLOAD","features":[33]},{"name":"NRB_FUNCTION_QUERY_ASCENDER_STATUS","features":[33]},{"name":"NRB_FUNCTION_QUERY_CACHE_MISS","features":[33]},{"name":"NRB_FUNCTION_QUERY_HYBRID_DISK_STATUS","features":[33]},{"name":"NRB_FUNCTION_QUERY_PINNED_SET","features":[33]},{"name":"NRB_FUNCTION_REMOVE_LBAS_PINNED_SET","features":[33]},{"name":"NRB_FUNCTION_SPINDLE_STATUS","features":[33]},{"name":"NRB_ILLEGAL_REQUEST","features":[33]},{"name":"NRB_INPUT_DATA_OVERRUN","features":[33]},{"name":"NRB_INPUT_DATA_UNDERRUN","features":[33]},{"name":"NRB_INVALID_PARAMETER","features":[33]},{"name":"NRB_OUTPUT_DATA_OVERRUN","features":[33]},{"name":"NRB_OUTPUT_DATA_UNDERRUN","features":[33]},{"name":"NRB_SUCCESS","features":[33]},{"name":"NTSCSI_UNICODE_STRING","features":[33]},{"name":"NVCACHE_HINT_PAYLOAD","features":[33]},{"name":"NVCACHE_PRIORITY_LEVEL_DESCRIPTOR","features":[33]},{"name":"NVCACHE_REQUEST_BLOCK","features":[33]},{"name":"NVCACHE_STATUS","features":[33]},{"name":"NVCACHE_TYPE","features":[33]},{"name":"NVSEPWriteCacheTypeNone","features":[33]},{"name":"NVSEPWriteCacheTypeUnknown","features":[33]},{"name":"NVSEPWriteCacheTypeWriteBack","features":[33]},{"name":"NVSEPWriteCacheTypeWriteThrough","features":[33]},{"name":"NV_FEATURE_PARAMETER","features":[33]},{"name":"NV_SEP_CACHE_PARAMETER","features":[33]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION","features":[33]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION_1","features":[33]},{"name":"NV_SEP_WRITE_CACHE_TYPE","features":[33]},{"name":"NvCacheStatusDisabled","features":[33]},{"name":"NvCacheStatusDisabling","features":[33]},{"name":"NvCacheStatusEnabled","features":[33]},{"name":"NvCacheStatusUnknown","features":[33]},{"name":"NvCacheTypeNone","features":[33]},{"name":"NvCacheTypeUnknown","features":[33]},{"name":"NvCacheTypeWriteBack","features":[33]},{"name":"NvCacheTypeWriteThrough","features":[33]},{"name":"PDUMP_DEVICE_POWERON_ROUTINE","features":[33]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOA","features":[1,33]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOW","features":[1,33]},{"name":"PersistentTargetMappings","features":[33]},{"name":"PortalGroups","features":[33]},{"name":"ProtocolType","features":[33]},{"name":"RefreshISNSServerA","features":[33]},{"name":"RefreshISNSServerW","features":[33]},{"name":"RefreshIScsiSendTargetPortalA","features":[33]},{"name":"RefreshIScsiSendTargetPortalW","features":[33]},{"name":"RemoveISNSServerA","features":[33]},{"name":"RemoveISNSServerW","features":[33]},{"name":"RemoveIScsiConnection","features":[33]},{"name":"RemoveIScsiPersistentTargetA","features":[33]},{"name":"RemoveIScsiPersistentTargetW","features":[33]},{"name":"RemoveIScsiSendTargetPortalA","features":[33]},{"name":"RemoveIScsiSendTargetPortalW","features":[33]},{"name":"RemoveIScsiStaticTargetA","features":[33]},{"name":"RemoveIScsiStaticTargetW","features":[33]},{"name":"RemovePersistentIScsiDeviceA","features":[33]},{"name":"RemovePersistentIScsiDeviceW","features":[33]},{"name":"RemoveRadiusServerA","features":[33]},{"name":"RemoveRadiusServerW","features":[33]},{"name":"ReportActiveIScsiTargetMappingsA","features":[33]},{"name":"ReportActiveIScsiTargetMappingsW","features":[33]},{"name":"ReportISNSServerListA","features":[33]},{"name":"ReportISNSServerListW","features":[33]},{"name":"ReportIScsiInitiatorListA","features":[33]},{"name":"ReportIScsiInitiatorListW","features":[33]},{"name":"ReportIScsiPersistentLoginsA","features":[1,33]},{"name":"ReportIScsiPersistentLoginsW","features":[1,33]},{"name":"ReportIScsiSendTargetPortalsA","features":[33]},{"name":"ReportIScsiSendTargetPortalsExA","features":[33]},{"name":"ReportIScsiSendTargetPortalsExW","features":[33]},{"name":"ReportIScsiSendTargetPortalsW","features":[33]},{"name":"ReportIScsiTargetPortalsA","features":[33]},{"name":"ReportIScsiTargetPortalsW","features":[33]},{"name":"ReportIScsiTargetsA","features":[1,33]},{"name":"ReportIScsiTargetsW","features":[1,33]},{"name":"ReportPersistentIScsiDevicesA","features":[33]},{"name":"ReportPersistentIScsiDevicesW","features":[33]},{"name":"ReportRadiusServerListA","features":[33]},{"name":"ReportRadiusServerListW","features":[33]},{"name":"SCSI_ADAPTER_BUS_INFO","features":[33]},{"name":"SCSI_ADDRESS","features":[33]},{"name":"SCSI_BUS_DATA","features":[33]},{"name":"SCSI_INQUIRY_DATA","features":[1,33]},{"name":"SCSI_IOCTL_DATA_BIDIRECTIONAL","features":[33]},{"name":"SCSI_IOCTL_DATA_IN","features":[33]},{"name":"SCSI_IOCTL_DATA_OUT","features":[33]},{"name":"SCSI_IOCTL_DATA_UNSPECIFIED","features":[33]},{"name":"SCSI_LUN_LIST","features":[33]},{"name":"SCSI_PASS_THROUGH","features":[33]},{"name":"SCSI_PASS_THROUGH32","features":[33]},{"name":"SCSI_PASS_THROUGH32_EX","features":[33]},{"name":"SCSI_PASS_THROUGH_DIRECT","features":[33]},{"name":"SCSI_PASS_THROUGH_DIRECT32","features":[33]},{"name":"SCSI_PASS_THROUGH_DIRECT32_EX","features":[33]},{"name":"SCSI_PASS_THROUGH_DIRECT_EX","features":[33]},{"name":"SCSI_PASS_THROUGH_EX","features":[33]},{"name":"SRB_IO_CONTROL","features":[33]},{"name":"STORAGE_DIAGNOSTIC_MP_REQUEST","features":[33]},{"name":"STORAGE_DIAGNOSTIC_STATUS_BUFFER_TOO_SMALL","features":[33]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_PARAMETER","features":[33]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_SIGNATURE","features":[33]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_TARGET_TYPE","features":[33]},{"name":"STORAGE_DIAGNOSTIC_STATUS_MORE_DATA","features":[33]},{"name":"STORAGE_DIAGNOSTIC_STATUS_SUCCESS","features":[33]},{"name":"STORAGE_DIAGNOSTIC_STATUS_UNSUPPORTED_VERSION","features":[33]},{"name":"STORAGE_ENDURANCE_DATA_DESCRIPTOR","features":[33]},{"name":"STORAGE_ENDURANCE_INFO","features":[33]},{"name":"STORAGE_FIRMWARE_ACTIVATE","features":[33]},{"name":"STORAGE_FIRMWARE_ACTIVATE_STRUCTURE_VERSION","features":[33]},{"name":"STORAGE_FIRMWARE_DOWNLOAD","features":[33]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION","features":[33]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION_V2","features":[33]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_V2","features":[33]},{"name":"STORAGE_FIRMWARE_INFO","features":[1,33]},{"name":"STORAGE_FIRMWARE_INFO_INVALID_SLOT","features":[33]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION","features":[33]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION_V2","features":[33]},{"name":"STORAGE_FIRMWARE_INFO_V2","features":[1,33]},{"name":"STORAGE_FIRMWARE_SLOT_INFO","features":[1,33]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2","features":[1,33]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2_REVISION_LENGTH","features":[33]},{"name":"ScsiRawInterfaceGuid","features":[33]},{"name":"SendScsiInquiry","features":[33]},{"name":"SendScsiReadCapacity","features":[33]},{"name":"SendScsiReportLuns","features":[33]},{"name":"SetIScsiGroupPresharedKey","features":[1,33]},{"name":"SetIScsiIKEInfoA","features":[1,33]},{"name":"SetIScsiIKEInfoW","features":[1,33]},{"name":"SetIScsiInitiatorCHAPSharedSecret","features":[33]},{"name":"SetIScsiInitiatorNodeNameA","features":[33]},{"name":"SetIScsiInitiatorNodeNameW","features":[33]},{"name":"SetIScsiInitiatorRADIUSSharedSecret","features":[33]},{"name":"SetIScsiTunnelModeOuterAddressA","features":[1,33]},{"name":"SetIScsiTunnelModeOuterAddressW","features":[1,33]},{"name":"SetupPersistentIScsiDevices","features":[33]},{"name":"SetupPersistentIScsiVolumes","features":[33]},{"name":"TARGETPROTOCOLTYPE","features":[33]},{"name":"TARGET_INFORMATION_CLASS","features":[33]},{"name":"TargetAlias","features":[33]},{"name":"TargetFlags","features":[33]},{"name":"WmiScsiAddressGuid","features":[33]},{"name":"_ADAPTER_OBJECT","features":[33]}],"515":[{"name":"JET_BASE_NAME_LENGTH","features":[144]},{"name":"JET_BKINFO","features":[144]},{"name":"JET_BKLOGTIME","features":[144]},{"name":"JET_CALLBACK","features":[144,145]},{"name":"JET_COLUMNBASE_A","features":[144]},{"name":"JET_COLUMNBASE_W","features":[144]},{"name":"JET_COLUMNCREATE_A","features":[144]},{"name":"JET_COLUMNCREATE_W","features":[144]},{"name":"JET_COLUMNDEF","features":[144]},{"name":"JET_COLUMNLIST","features":[144,145]},{"name":"JET_COMMIT_ID","features":[144]},{"name":"JET_COMMIT_ID","features":[144]},{"name":"JET_CONDITIONALCOLUMN_A","features":[144]},{"name":"JET_CONDITIONALCOLUMN_W","features":[144]},{"name":"JET_CONVERT_A","features":[144]},{"name":"JET_CONVERT_W","features":[144]},{"name":"JET_ColInfoGrbitMinimalInfo","features":[144]},{"name":"JET_ColInfoGrbitNonDerivedColumnsOnly","features":[144]},{"name":"JET_ColInfoGrbitSortByColumnid","features":[144]},{"name":"JET_DBINFOMISC","features":[144]},{"name":"JET_DBINFOMISC2","features":[144]},{"name":"JET_DBINFOMISC3","features":[144]},{"name":"JET_DBINFOMISC4","features":[144]},{"name":"JET_DBINFOUPGRADE","features":[144]},{"name":"JET_DbInfoCollate","features":[144]},{"name":"JET_DbInfoConnect","features":[144]},{"name":"JET_DbInfoCountry","features":[144]},{"name":"JET_DbInfoCp","features":[144]},{"name":"JET_DbInfoDBInUse","features":[144]},{"name":"JET_DbInfoFileType","features":[144]},{"name":"JET_DbInfoFilename","features":[144]},{"name":"JET_DbInfoFilesize","features":[144]},{"name":"JET_DbInfoFilesizeOnDisk","features":[144]},{"name":"JET_DbInfoIsam","features":[144]},{"name":"JET_DbInfoLCID","features":[144]},{"name":"JET_DbInfoLangid","features":[144]},{"name":"JET_DbInfoMisc","features":[144]},{"name":"JET_DbInfoOptions","features":[144]},{"name":"JET_DbInfoPageSize","features":[144]},{"name":"JET_DbInfoSpaceAvailable","features":[144]},{"name":"JET_DbInfoSpaceOwned","features":[144]},{"name":"JET_DbInfoTransactions","features":[144]},{"name":"JET_DbInfoUpgrade","features":[144]},{"name":"JET_DbInfoVersion","features":[144]},{"name":"JET_ENUMCOLUMN","features":[144]},{"name":"JET_ENUMCOLUMNID","features":[144]},{"name":"JET_ENUMCOLUMNVALUE","features":[144]},{"name":"JET_ERRCAT","features":[144]},{"name":"JET_ERRINFOBASIC_W","features":[144]},{"name":"JET_EventLoggingDisable","features":[144]},{"name":"JET_EventLoggingLevelHigh","features":[144]},{"name":"JET_EventLoggingLevelLow","features":[144]},{"name":"JET_EventLoggingLevelMax","features":[144]},{"name":"JET_EventLoggingLevelMedium","features":[144]},{"name":"JET_EventLoggingLevelMin","features":[144]},{"name":"JET_ExceptionFailFast","features":[144]},{"name":"JET_ExceptionMsgBox","features":[144]},{"name":"JET_ExceptionNone","features":[144]},{"name":"JET_INDEXCHECKING","features":[144]},{"name":"JET_INDEXCREATE2_A","features":[144]},{"name":"JET_INDEXCREATE2_W","features":[144]},{"name":"JET_INDEXCREATE3_A","features":[144]},{"name":"JET_INDEXCREATE3_W","features":[144]},{"name":"JET_INDEXCREATE_A","features":[144]},{"name":"JET_INDEXCREATE_W","features":[144]},{"name":"JET_INDEXID","features":[144]},{"name":"JET_INDEXID","features":[144]},{"name":"JET_INDEXLIST","features":[144,145]},{"name":"JET_INDEXRANGE","features":[144,145]},{"name":"JET_INDEX_COLUMN","features":[144]},{"name":"JET_INDEX_RANGE","features":[144]},{"name":"JET_INSTANCE_INFO_A","features":[144,145]},{"name":"JET_INSTANCE_INFO_W","features":[144,145]},{"name":"JET_IOPriorityLow","features":[144]},{"name":"JET_IOPriorityNormal","features":[144]},{"name":"JET_IndexCheckingDeferToOpenTable","features":[144]},{"name":"JET_IndexCheckingMax","features":[144]},{"name":"JET_IndexCheckingOff","features":[144]},{"name":"JET_IndexCheckingOn","features":[144]},{"name":"JET_LGPOS","features":[144]},{"name":"JET_LOGINFO_A","features":[144]},{"name":"JET_LOGINFO_W","features":[144]},{"name":"JET_LOGTIME","features":[144]},{"name":"JET_LS","features":[144]},{"name":"JET_MAX_COMPUTERNAME_LENGTH","features":[144]},{"name":"JET_MoveFirst","features":[144]},{"name":"JET_MoveLast","features":[144]},{"name":"JET_MovePrevious","features":[144]},{"name":"JET_OBJECTINFO","features":[144]},{"name":"JET_OBJECTINFO","features":[144]},{"name":"JET_OBJECTLIST","features":[144,145]},{"name":"JET_OPENTEMPORARYTABLE","features":[144,145]},{"name":"JET_OPENTEMPORARYTABLE2","features":[144,145]},{"name":"JET_OPERATIONCONTEXT","features":[144]},{"name":"JET_OSSNAPID","features":[144]},{"name":"JET_OnlineDefragAll","features":[144]},{"name":"JET_OnlineDefragAllOBSOLETE","features":[144]},{"name":"JET_OnlineDefragDatabases","features":[144]},{"name":"JET_OnlineDefragDisable","features":[144]},{"name":"JET_OnlineDefragSpaceTrees","features":[144]},{"name":"JET_PFNDURABLECOMMITCALLBACK","features":[144,145]},{"name":"JET_PFNREALLOC","features":[144]},{"name":"JET_PFNSTATUS","features":[144,145]},{"name":"JET_RECORDLIST","features":[144,145]},{"name":"JET_RECPOS","features":[144]},{"name":"JET_RECPOS2","features":[144]},{"name":"JET_RECPOS2","features":[144]},{"name":"JET_RECSIZE","features":[144]},{"name":"JET_RECSIZE","features":[144]},{"name":"JET_RECSIZE2","features":[144]},{"name":"JET_RECSIZE2","features":[144]},{"name":"JET_RELOP","features":[144]},{"name":"JET_RETINFO","features":[144]},{"name":"JET_RETRIEVECOLUMN","features":[144]},{"name":"JET_RSTINFO_A","features":[144,145]},{"name":"JET_RSTINFO_W","features":[144,145]},{"name":"JET_RSTMAP_A","features":[144]},{"name":"JET_RSTMAP_W","features":[144]},{"name":"JET_SETCOLUMN","features":[144]},{"name":"JET_SETINFO","features":[144]},{"name":"JET_SETSYSPARAM_A","features":[144,145]},{"name":"JET_SETSYSPARAM_W","features":[144,145]},{"name":"JET_SIGNATURE","features":[144]},{"name":"JET_SNPROG","features":[144]},{"name":"JET_SPACEHINTS","features":[144]},{"name":"JET_TABLECREATE2_A","features":[144,145]},{"name":"JET_TABLECREATE2_W","features":[144,145]},{"name":"JET_TABLECREATE3_A","features":[144,145]},{"name":"JET_TABLECREATE3_W","features":[144,145]},{"name":"JET_TABLECREATE4_A","features":[144,145]},{"name":"JET_TABLECREATE4_W","features":[144,145]},{"name":"JET_TABLECREATE_A","features":[144,145]},{"name":"JET_TABLECREATE_W","features":[144,145]},{"name":"JET_THREADSTATS","features":[144]},{"name":"JET_THREADSTATS2","features":[144]},{"name":"JET_THREADSTATS2","features":[144]},{"name":"JET_TUPLELIMITS","features":[144]},{"name":"JET_UNICODEINDEX","features":[144]},{"name":"JET_UNICODEINDEX2","features":[144]},{"name":"JET_USERDEFINEDDEFAULT_A","features":[144]},{"name":"JET_USERDEFINEDDEFAULT_W","features":[144]},{"name":"JET_VERSION","features":[144]},{"name":"JET_bitAbortSnapshot","features":[144]},{"name":"JET_bitAllDatabasesSnapshot","features":[144]},{"name":"JET_bitBackupAtomic","features":[144]},{"name":"JET_bitBackupEndAbort","features":[144]},{"name":"JET_bitBackupEndNormal","features":[144]},{"name":"JET_bitBackupIncremental","features":[144]},{"name":"JET_bitBackupSnapshot","features":[144]},{"name":"JET_bitBackupTruncateDone","features":[144]},{"name":"JET_bitBookmarkPermitVirtualCurrency","features":[144]},{"name":"JET_bitCheckUniqueness","features":[144]},{"name":"JET_bitColumnAutoincrement","features":[144]},{"name":"JET_bitColumnCompressed","features":[144]},{"name":"JET_bitColumnDeleteOnZero","features":[144]},{"name":"JET_bitColumnEscrowUpdate","features":[144]},{"name":"JET_bitColumnFinalize","features":[144]},{"name":"JET_bitColumnFixed","features":[144]},{"name":"JET_bitColumnMaybeNull","features":[144]},{"name":"JET_bitColumnMultiValued","features":[144]},{"name":"JET_bitColumnNotNULL","features":[144]},{"name":"JET_bitColumnTTDescending","features":[144]},{"name":"JET_bitColumnTTKey","features":[144]},{"name":"JET_bitColumnTagged","features":[144]},{"name":"JET_bitColumnUnversioned","features":[144]},{"name":"JET_bitColumnUpdatable","features":[144]},{"name":"JET_bitColumnUserDefinedDefault","features":[144]},{"name":"JET_bitColumnVersion","features":[144]},{"name":"JET_bitCommitLazyFlush","features":[144]},{"name":"JET_bitCompactRepair","features":[144]},{"name":"JET_bitCompactStats","features":[144]},{"name":"JET_bitConfigStoreReadControlDefault","features":[144]},{"name":"JET_bitConfigStoreReadControlDisableAll","features":[144]},{"name":"JET_bitConfigStoreReadControlInhibitRead","features":[144]},{"name":"JET_bitContinueAfterThaw","features":[144]},{"name":"JET_bitCopySnapshot","features":[144]},{"name":"JET_bitCreateHintAppendSequential","features":[144]},{"name":"JET_bitCreateHintHotpointSequential","features":[144]},{"name":"JET_bitDbDeleteCorruptIndexes","features":[144]},{"name":"JET_bitDbDeleteUnicodeIndexes","features":[144]},{"name":"JET_bitDbEnableBackgroundMaintenance","features":[144]},{"name":"JET_bitDbExclusive","features":[144]},{"name":"JET_bitDbOverwriteExisting","features":[144]},{"name":"JET_bitDbPurgeCacheOnAttach","features":[144]},{"name":"JET_bitDbReadOnly","features":[144]},{"name":"JET_bitDbRecoveryOff","features":[144]},{"name":"JET_bitDbShadowingOff","features":[144]},{"name":"JET_bitDbUpgrade","features":[144]},{"name":"JET_bitDefragmentAvailSpaceTreesOnly","features":[144]},{"name":"JET_bitDefragmentBTree","features":[144]},{"name":"JET_bitDefragmentBatchStart","features":[144]},{"name":"JET_bitDefragmentBatchStop","features":[144]},{"name":"JET_bitDefragmentNoPartialMerges","features":[144]},{"name":"JET_bitDeleteColumnIgnoreTemplateColumns","features":[144]},{"name":"JET_bitDeleteHintTableSequential","features":[144]},{"name":"JET_bitDumpCacheIncludeCachedPages","features":[144]},{"name":"JET_bitDumpCacheIncludeCorruptedPages","features":[144]},{"name":"JET_bitDumpCacheIncludeDirtyPages","features":[144]},{"name":"JET_bitDumpCacheMaximum","features":[144]},{"name":"JET_bitDumpCacheMinimum","features":[144]},{"name":"JET_bitDumpCacheNoDecommit","features":[144]},{"name":"JET_bitDumpMaximum","features":[144]},{"name":"JET_bitDumpMinimum","features":[144]},{"name":"JET_bitDurableCommitCallbackLogUnavailable","features":[144]},{"name":"JET_bitESE98FileNames","features":[144]},{"name":"JET_bitEightDotThreeSoftCompat","features":[144]},{"name":"JET_bitEnumerateCompressOutput","features":[144]},{"name":"JET_bitEnumerateCopy","features":[144]},{"name":"JET_bitEnumerateIgnoreDefault","features":[144]},{"name":"JET_bitEnumerateIgnoreUserDefinedDefault","features":[144]},{"name":"JET_bitEnumerateInRecordOnly","features":[144]},{"name":"JET_bitEnumeratePresenceOnly","features":[144]},{"name":"JET_bitEnumerateTaggedOnly","features":[144]},{"name":"JET_bitEscrowNoRollback","features":[144]},{"name":"JET_bitExplicitPrepare","features":[144]},{"name":"JET_bitForceDetach","features":[144]},{"name":"JET_bitForceNewLog","features":[144]},{"name":"JET_bitFullColumnEndLimit","features":[144]},{"name":"JET_bitFullColumnStartLimit","features":[144]},{"name":"JET_bitHungIOEvent","features":[144]},{"name":"JET_bitIdleCompact","features":[144]},{"name":"JET_bitIdleFlushBuffers","features":[144]},{"name":"JET_bitIdleStatus","features":[144]},{"name":"JET_bitIncrementalSnapshot","features":[144]},{"name":"JET_bitIndexColumnMustBeNonNull","features":[144]},{"name":"JET_bitIndexColumnMustBeNull","features":[144]},{"name":"JET_bitIndexCrossProduct","features":[144]},{"name":"JET_bitIndexDisallowNull","features":[144]},{"name":"JET_bitIndexDisallowTruncation","features":[144]},{"name":"JET_bitIndexDotNetGuid","features":[144]},{"name":"JET_bitIndexEmpty","features":[144]},{"name":"JET_bitIndexIgnoreAnyNull","features":[144]},{"name":"JET_bitIndexIgnoreFirstNull","features":[144]},{"name":"JET_bitIndexIgnoreNull","features":[144]},{"name":"JET_bitIndexImmutableStructure","features":[144]},{"name":"JET_bitIndexKeyMost","features":[144]},{"name":"JET_bitIndexLazyFlush","features":[144]},{"name":"JET_bitIndexNestedTable","features":[144]},{"name":"JET_bitIndexPrimary","features":[144]},{"name":"JET_bitIndexSortNullsHigh","features":[144]},{"name":"JET_bitIndexTupleLimits","features":[144]},{"name":"JET_bitIndexTuples","features":[144]},{"name":"JET_bitIndexUnicode","features":[144]},{"name":"JET_bitIndexUnique","features":[144]},{"name":"JET_bitIndexUnversioned","features":[144]},{"name":"JET_bitKeepDbAttachedAtEndOfRecovery","features":[144]},{"name":"JET_bitKeyAscending","features":[144]},{"name":"JET_bitKeyDataZeroLength","features":[144]},{"name":"JET_bitKeyDescending","features":[144]},{"name":"JET_bitLSCursor","features":[144]},{"name":"JET_bitLSReset","features":[144]},{"name":"JET_bitLSTable","features":[144]},{"name":"JET_bitLogStreamMustExist","features":[144]},{"name":"JET_bitMoveFirst","features":[144]},{"name":"JET_bitMoveKeyNE","features":[144]},{"name":"JET_bitNewKey","features":[144]},{"name":"JET_bitNoMove","features":[144]},{"name":"JET_bitNormalizedKey","features":[144]},{"name":"JET_bitObjectSystem","features":[144]},{"name":"JET_bitObjectTableDerived","features":[144]},{"name":"JET_bitObjectTableFixedDDL","features":[144]},{"name":"JET_bitObjectTableNoFixedVarColumnsInDerivedTables","features":[144]},{"name":"JET_bitObjectTableTemplate","features":[144]},{"name":"JET_bitPartialColumnEndLimit","features":[144]},{"name":"JET_bitPartialColumnStartLimit","features":[144]},{"name":"JET_bitPrereadBackward","features":[144]},{"name":"JET_bitPrereadFirstPage","features":[144]},{"name":"JET_bitPrereadForward","features":[144]},{"name":"JET_bitPrereadNormalizedKey","features":[144]},{"name":"JET_bitRangeInclusive","features":[144]},{"name":"JET_bitRangeInstantDuration","features":[144]},{"name":"JET_bitRangeRemove","features":[144]},{"name":"JET_bitRangeUpperLimit","features":[144]},{"name":"JET_bitReadLock","features":[144]},{"name":"JET_bitRecordInIndex","features":[144]},{"name":"JET_bitRecordNotInIndex","features":[144]},{"name":"JET_bitRecordSizeInCopyBuffer","features":[144]},{"name":"JET_bitRecordSizeLocal","features":[144]},{"name":"JET_bitRecordSizeRunningTotal","features":[144]},{"name":"JET_bitRecoveryWithoutUndo","features":[144]},{"name":"JET_bitReplayIgnoreLostLogs","features":[144]},{"name":"JET_bitReplayIgnoreMissingDB","features":[144]},{"name":"JET_bitReplayMissingMapEntryDB","features":[144]},{"name":"JET_bitResizeDatabaseOnlyGrow","features":[144]},{"name":"JET_bitResizeDatabaseOnlyShrink","features":[144]},{"name":"JET_bitRetrieveCopy","features":[144]},{"name":"JET_bitRetrieveFromIndex","features":[144]},{"name":"JET_bitRetrieveFromPrimaryBookmark","features":[144]},{"name":"JET_bitRetrieveHintReserve1","features":[144]},{"name":"JET_bitRetrieveHintReserve2","features":[144]},{"name":"JET_bitRetrieveHintReserve3","features":[144]},{"name":"JET_bitRetrieveHintTableScanBackward","features":[144]},{"name":"JET_bitRetrieveHintTableScanForward","features":[144]},{"name":"JET_bitRetrieveIgnoreDefault","features":[144]},{"name":"JET_bitRetrieveNull","features":[144]},{"name":"JET_bitRetrieveTag","features":[144]},{"name":"JET_bitRetrieveTuple","features":[144]},{"name":"JET_bitRollbackAll","features":[144]},{"name":"JET_bitSeekEQ","features":[144]},{"name":"JET_bitSeekGE","features":[144]},{"name":"JET_bitSeekGT","features":[144]},{"name":"JET_bitSeekLE","features":[144]},{"name":"JET_bitSeekLT","features":[144]},{"name":"JET_bitSetAppendLV","features":[144]},{"name":"JET_bitSetCompressed","features":[144]},{"name":"JET_bitSetContiguousLV","features":[144]},{"name":"JET_bitSetIndexRange","features":[144]},{"name":"JET_bitSetIntrinsicLV","features":[144]},{"name":"JET_bitSetOverwriteLV","features":[144]},{"name":"JET_bitSetRevertToDefaultValue","features":[144]},{"name":"JET_bitSetSeparateLV","features":[144]},{"name":"JET_bitSetSizeLV","features":[144]},{"name":"JET_bitSetUncompressed","features":[144]},{"name":"JET_bitSetUniqueMultiValues","features":[144]},{"name":"JET_bitSetUniqueNormalizedMultiValues","features":[144]},{"name":"JET_bitSetZeroLength","features":[144]},{"name":"JET_bitShrinkDatabaseOff","features":[144]},{"name":"JET_bitShrinkDatabaseOn","features":[144]},{"name":"JET_bitShrinkDatabaseRealtime","features":[144]},{"name":"JET_bitShrinkDatabaseTrim","features":[144]},{"name":"JET_bitSpaceHintsUtilizeParentSpace","features":[144]},{"name":"JET_bitStopServiceAll","features":[144]},{"name":"JET_bitStopServiceBackgroundUserTasks","features":[144]},{"name":"JET_bitStopServiceQuiesceCaches","features":[144]},{"name":"JET_bitStopServiceResume","features":[144]},{"name":"JET_bitStrLimit","features":[144]},{"name":"JET_bitSubStrLimit","features":[144]},{"name":"JET_bitTTDotNetGuid","features":[144]},{"name":"JET_bitTTErrorOnDuplicateInsertion","features":[144]},{"name":"JET_bitTTForceMaterialization","features":[144]},{"name":"JET_bitTTForwardOnly","features":[144]},{"name":"JET_bitTTIndexed","features":[144]},{"name":"JET_bitTTIntrinsicLVsOnly","features":[144]},{"name":"JET_bitTTScrollable","features":[144]},{"name":"JET_bitTTSortNullsHigh","features":[144]},{"name":"JET_bitTTUnique","features":[144]},{"name":"JET_bitTTUpdatable","features":[144]},{"name":"JET_bitTableClass1","features":[144]},{"name":"JET_bitTableClass10","features":[144]},{"name":"JET_bitTableClass11","features":[144]},{"name":"JET_bitTableClass12","features":[144]},{"name":"JET_bitTableClass13","features":[144]},{"name":"JET_bitTableClass14","features":[144]},{"name":"JET_bitTableClass15","features":[144]},{"name":"JET_bitTableClass2","features":[144]},{"name":"JET_bitTableClass3","features":[144]},{"name":"JET_bitTableClass4","features":[144]},{"name":"JET_bitTableClass5","features":[144]},{"name":"JET_bitTableClass6","features":[144]},{"name":"JET_bitTableClass7","features":[144]},{"name":"JET_bitTableClass8","features":[144]},{"name":"JET_bitTableClass9","features":[144]},{"name":"JET_bitTableClassMask","features":[144]},{"name":"JET_bitTableClassNone","features":[144]},{"name":"JET_bitTableCreateFixedDDL","features":[144]},{"name":"JET_bitTableCreateImmutableStructure","features":[144]},{"name":"JET_bitTableCreateNoFixedVarColumnsInDerivedTables","features":[144]},{"name":"JET_bitTableCreateTemplateTable","features":[144]},{"name":"JET_bitTableDenyRead","features":[144]},{"name":"JET_bitTableDenyWrite","features":[144]},{"name":"JET_bitTableInfoBookmark","features":[144]},{"name":"JET_bitTableInfoRollback","features":[144]},{"name":"JET_bitTableInfoUpdatable","features":[144]},{"name":"JET_bitTableNoCache","features":[144]},{"name":"JET_bitTableOpportuneRead","features":[144]},{"name":"JET_bitTablePermitDDL","features":[144]},{"name":"JET_bitTablePreread","features":[144]},{"name":"JET_bitTableReadOnly","features":[144]},{"name":"JET_bitTableSequential","features":[144]},{"name":"JET_bitTableUpdatable","features":[144]},{"name":"JET_bitTermAbrupt","features":[144]},{"name":"JET_bitTermComplete","features":[144]},{"name":"JET_bitTermDirty","features":[144]},{"name":"JET_bitTermStopBackup","features":[144]},{"name":"JET_bitTransactionReadOnly","features":[144]},{"name":"JET_bitTruncateLogsAfterRecovery","features":[144]},{"name":"JET_bitUpdateCheckESE97Compatibility","features":[144]},{"name":"JET_bitWaitAllLevel0Commit","features":[144]},{"name":"JET_bitWaitLastLevel0Commit","features":[144]},{"name":"JET_bitWriteLock","features":[144]},{"name":"JET_bitZeroLength","features":[144]},{"name":"JET_cbBookmarkMost","features":[144]},{"name":"JET_cbColumnLVPageOverhead","features":[144]},{"name":"JET_cbColumnMost","features":[144]},{"name":"JET_cbFullNameMost","features":[144]},{"name":"JET_cbKeyMost","features":[144]},{"name":"JET_cbKeyMost2KBytePage","features":[144]},{"name":"JET_cbKeyMost4KBytePage","features":[144]},{"name":"JET_cbKeyMost8KBytePage","features":[144]},{"name":"JET_cbKeyMostMin","features":[144]},{"name":"JET_cbLVColumnMost","features":[144]},{"name":"JET_cbLVDefaultValueMost","features":[144]},{"name":"JET_cbLimitKeyMost","features":[144]},{"name":"JET_cbNameMost","features":[144]},{"name":"JET_cbPrimaryKeyMost","features":[144]},{"name":"JET_cbSecondaryKeyMost","features":[144]},{"name":"JET_cbtypAfterDelete","features":[144]},{"name":"JET_cbtypAfterInsert","features":[144]},{"name":"JET_cbtypAfterReplace","features":[144]},{"name":"JET_cbtypBeforeDelete","features":[144]},{"name":"JET_cbtypBeforeInsert","features":[144]},{"name":"JET_cbtypBeforeReplace","features":[144]},{"name":"JET_cbtypFinalize","features":[144]},{"name":"JET_cbtypFreeCursorLS","features":[144]},{"name":"JET_cbtypFreeTableLS","features":[144]},{"name":"JET_cbtypNull","features":[144]},{"name":"JET_cbtypOnlineDefragCompleted","features":[144]},{"name":"JET_cbtypUserDefinedDefaultValue","features":[144]},{"name":"JET_ccolFixedMost","features":[144]},{"name":"JET_ccolKeyMost","features":[144]},{"name":"JET_ccolMost","features":[144]},{"name":"JET_ccolTaggedMost","features":[144]},{"name":"JET_ccolVarMost","features":[144]},{"name":"JET_coltypBinary","features":[144]},{"name":"JET_coltypBit","features":[144]},{"name":"JET_coltypCurrency","features":[144]},{"name":"JET_coltypDateTime","features":[144]},{"name":"JET_coltypGUID","features":[144]},{"name":"JET_coltypIEEEDouble","features":[144]},{"name":"JET_coltypIEEESingle","features":[144]},{"name":"JET_coltypLong","features":[144]},{"name":"JET_coltypLongBinary","features":[144]},{"name":"JET_coltypLongLong","features":[144]},{"name":"JET_coltypLongText","features":[144]},{"name":"JET_coltypMax","features":[144]},{"name":"JET_coltypNil","features":[144]},{"name":"JET_coltypSLV","features":[144]},{"name":"JET_coltypShort","features":[144]},{"name":"JET_coltypText","features":[144]},{"name":"JET_coltypUnsignedByte","features":[144]},{"name":"JET_coltypUnsignedLong","features":[144]},{"name":"JET_coltypUnsignedLongLong","features":[144]},{"name":"JET_coltypUnsignedShort","features":[144]},{"name":"JET_configDefault","features":[144]},{"name":"JET_configDynamicMediumMemory","features":[144]},{"name":"JET_configHighConcurrencyScaling","features":[144]},{"name":"JET_configLowDiskFootprint","features":[144]},{"name":"JET_configLowMemory","features":[144]},{"name":"JET_configLowPower","features":[144]},{"name":"JET_configMediumDiskFootprint","features":[144]},{"name":"JET_configRemoveQuotas","features":[144]},{"name":"JET_configRunSilent","features":[144]},{"name":"JET_configSSDProfileIO","features":[144]},{"name":"JET_configUnthrottledMemory","features":[144]},{"name":"JET_dbstateBeingConverted","features":[144]},{"name":"JET_dbstateCleanShutdown","features":[144]},{"name":"JET_dbstateDirtyShutdown","features":[144]},{"name":"JET_dbstateForceDetach","features":[144]},{"name":"JET_dbstateJustCreated","features":[144]},{"name":"JET_errAccessDenied","features":[144]},{"name":"JET_errAfterInitialization","features":[144]},{"name":"JET_errAlreadyInitialized","features":[144]},{"name":"JET_errAlreadyPrepared","features":[144]},{"name":"JET_errAttachedDatabaseMismatch","features":[144]},{"name":"JET_errBackupAbortByServer","features":[144]},{"name":"JET_errBackupDirectoryNotEmpty","features":[144]},{"name":"JET_errBackupInProgress","features":[144]},{"name":"JET_errBackupNotAllowedYet","features":[144]},{"name":"JET_errBadBackupDatabaseSize","features":[144]},{"name":"JET_errBadBookmark","features":[144]},{"name":"JET_errBadCheckpointSignature","features":[144]},{"name":"JET_errBadColumnId","features":[144]},{"name":"JET_errBadDbSignature","features":[144]},{"name":"JET_errBadEmptyPage","features":[144]},{"name":"JET_errBadItagSequence","features":[144]},{"name":"JET_errBadLineCount","features":[144]},{"name":"JET_errBadLogSignature","features":[144]},{"name":"JET_errBadLogVersion","features":[144]},{"name":"JET_errBadPageLink","features":[144]},{"name":"JET_errBadParentPageLink","features":[144]},{"name":"JET_errBadPatchPage","features":[144]},{"name":"JET_errBadRestoreTargetInstance","features":[144]},{"name":"JET_errBufferTooSmall","features":[144]},{"name":"JET_errCallbackFailed","features":[144]},{"name":"JET_errCallbackNotResolved","features":[144]},{"name":"JET_errCannotAddFixedVarColumnToDerivedTable","features":[144]},{"name":"JET_errCannotBeTagged","features":[144]},{"name":"JET_errCannotDeleteSystemTable","features":[144]},{"name":"JET_errCannotDeleteTempTable","features":[144]},{"name":"JET_errCannotDeleteTemplateTable","features":[144]},{"name":"JET_errCannotDisableVersioning","features":[144]},{"name":"JET_errCannotIndex","features":[144]},{"name":"JET_errCannotIndexOnEncryptedColumn","features":[144]},{"name":"JET_errCannotLogDuringRecoveryRedo","features":[144]},{"name":"JET_errCannotMaterializeForwardOnlySort","features":[144]},{"name":"JET_errCannotNestDDL","features":[144]},{"name":"JET_errCannotSeparateIntrinsicLV","features":[144]},{"name":"JET_errCatalogCorrupted","features":[144]},{"name":"JET_errCheckpointCorrupt","features":[144]},{"name":"JET_errCheckpointDepthTooDeep","features":[144]},{"name":"JET_errCheckpointFileNotFound","features":[144]},{"name":"JET_errClientRequestToStopJetService","features":[144]},{"name":"JET_errColumnCannotBeCompressed","features":[144]},{"name":"JET_errColumnCannotBeEncrypted","features":[144]},{"name":"JET_errColumnDoesNotFit","features":[144]},{"name":"JET_errColumnDuplicate","features":[144]},{"name":"JET_errColumnInRelationship","features":[144]},{"name":"JET_errColumnInUse","features":[144]},{"name":"JET_errColumnIndexed","features":[144]},{"name":"JET_errColumnLong","features":[144]},{"name":"JET_errColumnNoChunk","features":[144]},{"name":"JET_errColumnNoEncryptionKey","features":[144]},{"name":"JET_errColumnNotFound","features":[144]},{"name":"JET_errColumnNotUpdatable","features":[144]},{"name":"JET_errColumnRedundant","features":[144]},{"name":"JET_errColumnTooBig","features":[144]},{"name":"JET_errCommittedLogFileCorrupt","features":[144]},{"name":"JET_errCommittedLogFilesMissing","features":[144]},{"name":"JET_errConsistentTimeMismatch","features":[144]},{"name":"JET_errContainerNotEmpty","features":[144]},{"name":"JET_errDDLNotInheritable","features":[144]},{"name":"JET_errDataHasChanged","features":[144]},{"name":"JET_errDatabase200Format","features":[144]},{"name":"JET_errDatabase400Format","features":[144]},{"name":"JET_errDatabase500Format","features":[144]},{"name":"JET_errDatabaseAlreadyRunningMaintenance","features":[144]},{"name":"JET_errDatabaseAlreadyUpgraded","features":[144]},{"name":"JET_errDatabaseAttachedForRecovery","features":[144]},{"name":"JET_errDatabaseBufferDependenciesCorrupted","features":[144]},{"name":"JET_errDatabaseCorrupted","features":[144]},{"name":"JET_errDatabaseCorruptedNoRepair","features":[144]},{"name":"JET_errDatabaseDirtyShutdown","features":[144]},{"name":"JET_errDatabaseDuplicate","features":[144]},{"name":"JET_errDatabaseFileReadOnly","features":[144]},{"name":"JET_errDatabaseIdInUse","features":[144]},{"name":"JET_errDatabaseInUse","features":[144]},{"name":"JET_errDatabaseIncompleteUpgrade","features":[144]},{"name":"JET_errDatabaseInconsistent","features":[144]},{"name":"JET_errDatabaseInvalidName","features":[144]},{"name":"JET_errDatabaseInvalidPages","features":[144]},{"name":"JET_errDatabaseInvalidPath","features":[144]},{"name":"JET_errDatabaseLeakInSpace","features":[144]},{"name":"JET_errDatabaseLocked","features":[144]},{"name":"JET_errDatabaseLogSetMismatch","features":[144]},{"name":"JET_errDatabaseNotFound","features":[144]},{"name":"JET_errDatabaseNotReady","features":[144]},{"name":"JET_errDatabasePatchFileMismatch","features":[144]},{"name":"JET_errDatabaseSharingViolation","features":[144]},{"name":"JET_errDatabaseSignInUse","features":[144]},{"name":"JET_errDatabaseStreamingFileMismatch","features":[144]},{"name":"JET_errDatabaseUnavailable","features":[144]},{"name":"JET_errDatabasesNotFromSameSnapshot","features":[144]},{"name":"JET_errDbTimeBeyondMaxRequired","features":[144]},{"name":"JET_errDbTimeCorrupted","features":[144]},{"name":"JET_errDbTimeTooNew","features":[144]},{"name":"JET_errDbTimeTooOld","features":[144]},{"name":"JET_errDecompressionFailed","features":[144]},{"name":"JET_errDecryptionFailed","features":[144]},{"name":"JET_errDefaultValueTooBig","features":[144]},{"name":"JET_errDeleteBackupFileFail","features":[144]},{"name":"JET_errDensityInvalid","features":[144]},{"name":"JET_errDerivedColumnCorruption","features":[144]},{"name":"JET_errDirtyShutdown","features":[144]},{"name":"JET_errDisabledFunctionality","features":[144]},{"name":"JET_errDiskFull","features":[144]},{"name":"JET_errDiskIO","features":[144]},{"name":"JET_errDiskReadVerificationFailure","features":[144]},{"name":"JET_errEncryptionBadItag","features":[144]},{"name":"JET_errEndingRestoreLogTooLow","features":[144]},{"name":"JET_errEngineFormatVersionNoLongerSupportedTooLow","features":[144]},{"name":"JET_errEngineFormatVersionNotYetImplementedTooHigh","features":[144]},{"name":"JET_errEngineFormatVersionParamTooLowForRequestedFeature","features":[144]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForDatabaseVersion","features":[144]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForLogVersion","features":[144]},{"name":"JET_errEntryPointNotFound","features":[144]},{"name":"JET_errExclusiveTableLockRequired","features":[144]},{"name":"JET_errExistingLogFileHasBadSignature","features":[144]},{"name":"JET_errExistingLogFileIsNotContiguous","features":[144]},{"name":"JET_errFeatureNotAvailable","features":[144]},{"name":"JET_errFileAccessDenied","features":[144]},{"name":"JET_errFileAlreadyExists","features":[144]},{"name":"JET_errFileClose","features":[144]},{"name":"JET_errFileCompressed","features":[144]},{"name":"JET_errFileIOAbort","features":[144]},{"name":"JET_errFileIOBeyondEOF","features":[144]},{"name":"JET_errFileIOFail","features":[144]},{"name":"JET_errFileIORetry","features":[144]},{"name":"JET_errFileIOSparse","features":[144]},{"name":"JET_errFileInvalidType","features":[144]},{"name":"JET_errFileNotFound","features":[144]},{"name":"JET_errFileSystemCorruption","features":[144]},{"name":"JET_errFilteredMoveNotSupported","features":[144]},{"name":"JET_errFixedDDL","features":[144]},{"name":"JET_errFixedInheritedDDL","features":[144]},{"name":"JET_errFlushMapDatabaseMismatch","features":[144]},{"name":"JET_errFlushMapUnrecoverable","features":[144]},{"name":"JET_errFlushMapVersionUnsupported","features":[144]},{"name":"JET_errForceDetachNotAllowed","features":[144]},{"name":"JET_errGivenLogFileHasBadSignature","features":[144]},{"name":"JET_errGivenLogFileIsNotContiguous","features":[144]},{"name":"JET_errIllegalOperation","features":[144]},{"name":"JET_errInTransaction","features":[144]},{"name":"JET_errIndexBuildCorrupted","features":[144]},{"name":"JET_errIndexCantBuild","features":[144]},{"name":"JET_errIndexDuplicate","features":[144]},{"name":"JET_errIndexHasPrimary","features":[144]},{"name":"JET_errIndexInUse","features":[144]},{"name":"JET_errIndexInvalidDef","features":[144]},{"name":"JET_errIndexMustStay","features":[144]},{"name":"JET_errIndexNotFound","features":[144]},{"name":"JET_errIndexTuplesCannotRetrieveFromIndex","features":[144]},{"name":"JET_errIndexTuplesInvalidLimits","features":[144]},{"name":"JET_errIndexTuplesKeyTooSmall","features":[144]},{"name":"JET_errIndexTuplesNonUniqueOnly","features":[144]},{"name":"JET_errIndexTuplesOneColumnOnly","features":[144]},{"name":"JET_errIndexTuplesSecondaryIndexOnly","features":[144]},{"name":"JET_errIndexTuplesTextBinaryColumnsOnly","features":[144]},{"name":"JET_errIndexTuplesTextColumnsOnly","features":[144]},{"name":"JET_errIndexTuplesTooManyColumns","features":[144]},{"name":"JET_errIndexTuplesVarSegMacNotAllowed","features":[144]},{"name":"JET_errInitInProgress","features":[144]},{"name":"JET_errInstanceNameInUse","features":[144]},{"name":"JET_errInstanceUnavailable","features":[144]},{"name":"JET_errInstanceUnavailableDueToFatalLogDiskFull","features":[144]},{"name":"JET_errInternalError","features":[144]},{"name":"JET_errInvalidBackup","features":[144]},{"name":"JET_errInvalidBackupSequence","features":[144]},{"name":"JET_errInvalidBookmark","features":[144]},{"name":"JET_errInvalidBufferSize","features":[144]},{"name":"JET_errInvalidCodePage","features":[144]},{"name":"JET_errInvalidColumnType","features":[144]},{"name":"JET_errInvalidCountry","features":[144]},{"name":"JET_errInvalidCreateDbVersion","features":[144]},{"name":"JET_errInvalidCreateIndex","features":[144]},{"name":"JET_errInvalidDatabase","features":[144]},{"name":"JET_errInvalidDatabaseId","features":[144]},{"name":"JET_errInvalidDatabaseVersion","features":[144]},{"name":"JET_errInvalidDbparamId","features":[144]},{"name":"JET_errInvalidFilename","features":[144]},{"name":"JET_errInvalidGrbit","features":[144]},{"name":"JET_errInvalidIndexId","features":[144]},{"name":"JET_errInvalidInstance","features":[144]},{"name":"JET_errInvalidLCMapStringFlags","features":[144]},{"name":"JET_errInvalidLVChunkSize","features":[144]},{"name":"JET_errInvalidLanguageId","features":[144]},{"name":"JET_errInvalidLogDirectory","features":[144]},{"name":"JET_errInvalidLogSequence","features":[144]},{"name":"JET_errInvalidLoggedOperation","features":[144]},{"name":"JET_errInvalidName","features":[144]},{"name":"JET_errInvalidObject","features":[144]},{"name":"JET_errInvalidOnSort","features":[144]},{"name":"JET_errInvalidOperation","features":[144]},{"name":"JET_errInvalidParameter","features":[144]},{"name":"JET_errInvalidPath","features":[144]},{"name":"JET_errInvalidPlaceholderColumn","features":[144]},{"name":"JET_errInvalidPreread","features":[144]},{"name":"JET_errInvalidSesid","features":[144]},{"name":"JET_errInvalidSesparamId","features":[144]},{"name":"JET_errInvalidSettings","features":[144]},{"name":"JET_errInvalidSystemPath","features":[144]},{"name":"JET_errInvalidTableId","features":[144]},{"name":"JET_errKeyBoundary","features":[144]},{"name":"JET_errKeyDuplicate","features":[144]},{"name":"JET_errKeyIsMade","features":[144]},{"name":"JET_errKeyNotMade","features":[144]},{"name":"JET_errKeyTooBig","features":[144]},{"name":"JET_errKeyTruncated","features":[144]},{"name":"JET_errLSAlreadySet","features":[144]},{"name":"JET_errLSCallbackNotSpecified","features":[144]},{"name":"JET_errLSNotSet","features":[144]},{"name":"JET_errLVCorrupted","features":[144]},{"name":"JET_errLanguageNotSupported","features":[144]},{"name":"JET_errLinkNotSupported","features":[144]},{"name":"JET_errLogBufferTooSmall","features":[144]},{"name":"JET_errLogCorruptDuringHardRecovery","features":[144]},{"name":"JET_errLogCorruptDuringHardRestore","features":[144]},{"name":"JET_errLogCorrupted","features":[144]},{"name":"JET_errLogDisabledDueToRecoveryFailure","features":[144]},{"name":"JET_errLogDiskFull","features":[144]},{"name":"JET_errLogFileCorrupt","features":[144]},{"name":"JET_errLogFileNotCopied","features":[144]},{"name":"JET_errLogFilePathInUse","features":[144]},{"name":"JET_errLogFileSizeMismatch","features":[144]},{"name":"JET_errLogFileSizeMismatchDatabasesConsistent","features":[144]},{"name":"JET_errLogGenerationMismatch","features":[144]},{"name":"JET_errLogReadVerifyFailure","features":[144]},{"name":"JET_errLogSectorSizeMismatch","features":[144]},{"name":"JET_errLogSectorSizeMismatchDatabasesConsistent","features":[144]},{"name":"JET_errLogSequenceChecksumMismatch","features":[144]},{"name":"JET_errLogSequenceEnd","features":[144]},{"name":"JET_errLogSequenceEndDatabasesConsistent","features":[144]},{"name":"JET_errLogTornWriteDuringHardRecovery","features":[144]},{"name":"JET_errLogTornWriteDuringHardRestore","features":[144]},{"name":"JET_errLogWriteFail","features":[144]},{"name":"JET_errLoggingDisabled","features":[144]},{"name":"JET_errMakeBackupDirectoryFail","features":[144]},{"name":"JET_errMissingCurrentLogFiles","features":[144]},{"name":"JET_errMissingFileToBackup","features":[144]},{"name":"JET_errMissingFullBackup","features":[144]},{"name":"JET_errMissingLogFile","features":[144]},{"name":"JET_errMissingPatchPage","features":[144]},{"name":"JET_errMissingPreviousLogFile","features":[144]},{"name":"JET_errMissingRestoreLogFiles","features":[144]},{"name":"JET_errMultiValuedColumnMustBeTagged","features":[144]},{"name":"JET_errMultiValuedDuplicate","features":[144]},{"name":"JET_errMultiValuedDuplicateAfterTruncation","features":[144]},{"name":"JET_errMultiValuedIndexViolation","features":[144]},{"name":"JET_errMustBeSeparateLongValue","features":[144]},{"name":"JET_errMustDisableLoggingForDbUpgrade","features":[144]},{"name":"JET_errMustRollback","features":[144]},{"name":"JET_errNTSystemCallFailed","features":[144]},{"name":"JET_errNoBackup","features":[144]},{"name":"JET_errNoBackupDirectory","features":[144]},{"name":"JET_errNoCurrentIndex","features":[144]},{"name":"JET_errNoCurrentRecord","features":[144]},{"name":"JET_errNodeCorrupted","features":[144]},{"name":"JET_errNotInTransaction","features":[144]},{"name":"JET_errNotInitialized","features":[144]},{"name":"JET_errNullInvalid","features":[144]},{"name":"JET_errNullKeyDisallowed","features":[144]},{"name":"JET_errOSSnapshotInvalidSequence","features":[144]},{"name":"JET_errOSSnapshotInvalidSnapId","features":[144]},{"name":"JET_errOSSnapshotNotAllowed","features":[144]},{"name":"JET_errOSSnapshotTimeOut","features":[144]},{"name":"JET_errObjectDuplicate","features":[144]},{"name":"JET_errObjectNotFound","features":[144]},{"name":"JET_errOneDatabasePerSession","features":[144]},{"name":"JET_errOutOfAutoincrementValues","features":[144]},{"name":"JET_errOutOfBuffers","features":[144]},{"name":"JET_errOutOfCursors","features":[144]},{"name":"JET_errOutOfDatabaseSpace","features":[144]},{"name":"JET_errOutOfDbtimeValues","features":[144]},{"name":"JET_errOutOfFileHandles","features":[144]},{"name":"JET_errOutOfLongValueIDs","features":[144]},{"name":"JET_errOutOfMemory","features":[144]},{"name":"JET_errOutOfObjectIDs","features":[144]},{"name":"JET_errOutOfSequentialIndexValues","features":[144]},{"name":"JET_errOutOfSessions","features":[144]},{"name":"JET_errOutOfThreads","features":[144]},{"name":"JET_errPageBoundary","features":[144]},{"name":"JET_errPageInitializedMismatch","features":[144]},{"name":"JET_errPageNotInitialized","features":[144]},{"name":"JET_errPageSizeMismatch","features":[144]},{"name":"JET_errPageTagCorrupted","features":[144]},{"name":"JET_errPartiallyAttachedDB","features":[144]},{"name":"JET_errPatchFileMissing","features":[144]},{"name":"JET_errPermissionDenied","features":[144]},{"name":"JET_errPreviousVersion","features":[144]},{"name":"JET_errPrimaryIndexCorrupted","features":[144]},{"name":"JET_errReadLostFlushVerifyFailure","features":[144]},{"name":"JET_errReadPgnoVerifyFailure","features":[144]},{"name":"JET_errReadVerifyFailure","features":[144]},{"name":"JET_errRecordDeleted","features":[144]},{"name":"JET_errRecordFormatConversionFailed","features":[144]},{"name":"JET_errRecordNoCopy","features":[144]},{"name":"JET_errRecordNotDeleted","features":[144]},{"name":"JET_errRecordNotFound","features":[144]},{"name":"JET_errRecordPrimaryChanged","features":[144]},{"name":"JET_errRecordTooBig","features":[144]},{"name":"JET_errRecordTooBigForBackwardCompatibility","features":[144]},{"name":"JET_errRecoveredWithErrors","features":[144]},{"name":"JET_errRecoveredWithoutUndo","features":[144]},{"name":"JET_errRecoveredWithoutUndoDatabasesConsistent","features":[144]},{"name":"JET_errRecoveryVerifyFailure","features":[144]},{"name":"JET_errRedoAbruptEnded","features":[144]},{"name":"JET_errRequiredLogFilesMissing","features":[144]},{"name":"JET_errRestoreInProgress","features":[144]},{"name":"JET_errRestoreOfNonBackupDatabase","features":[144]},{"name":"JET_errRfsFailure","features":[144]},{"name":"JET_errRfsNotArmed","features":[144]},{"name":"JET_errRollbackError","features":[144]},{"name":"JET_errRollbackRequired","features":[144]},{"name":"JET_errRunningInMultiInstanceMode","features":[144]},{"name":"JET_errRunningInOneInstanceMode","features":[144]},{"name":"JET_errSPAvailExtCacheOutOfMemory","features":[144]},{"name":"JET_errSPAvailExtCacheOutOfSync","features":[144]},{"name":"JET_errSPAvailExtCorrupted","features":[144]},{"name":"JET_errSPOwnExtCorrupted","features":[144]},{"name":"JET_errSecondaryIndexCorrupted","features":[144]},{"name":"JET_errSectorSizeNotSupported","features":[144]},{"name":"JET_errSeparatedLongValue","features":[144]},{"name":"JET_errSesidTableIdMismatch","features":[144]},{"name":"JET_errSessionContextAlreadySet","features":[144]},{"name":"JET_errSessionContextNotSetByThisThread","features":[144]},{"name":"JET_errSessionInUse","features":[144]},{"name":"JET_errSessionSharingViolation","features":[144]},{"name":"JET_errSessionWriteConflict","features":[144]},{"name":"JET_errSoftRecoveryOnBackupDatabase","features":[144]},{"name":"JET_errSoftRecoveryOnSnapshot","features":[144]},{"name":"JET_errSpaceHintsInvalid","features":[144]},{"name":"JET_errStartingRestoreLogTooHigh","features":[144]},{"name":"JET_errStreamingDataNotLogged","features":[144]},{"name":"JET_errSuccess","features":[144]},{"name":"JET_errSystemParameterConflict","features":[144]},{"name":"JET_errSystemParamsAlreadySet","features":[144]},{"name":"JET_errSystemPathInUse","features":[144]},{"name":"JET_errTableDuplicate","features":[144]},{"name":"JET_errTableInUse","features":[144]},{"name":"JET_errTableLocked","features":[144]},{"name":"JET_errTableNotEmpty","features":[144]},{"name":"JET_errTaggedNotNULL","features":[144]},{"name":"JET_errTaskDropped","features":[144]},{"name":"JET_errTempFileOpenError","features":[144]},{"name":"JET_errTempPathInUse","features":[144]},{"name":"JET_errTermInProgress","features":[144]},{"name":"JET_errTooManyActiveUsers","features":[144]},{"name":"JET_errTooManyAttachedDatabases","features":[144]},{"name":"JET_errTooManyColumns","features":[144]},{"name":"JET_errTooManyIO","features":[144]},{"name":"JET_errTooManyIndexes","features":[144]},{"name":"JET_errTooManyInstances","features":[144]},{"name":"JET_errTooManyKeys","features":[144]},{"name":"JET_errTooManyMempoolEntries","features":[144]},{"name":"JET_errTooManyOpenDatabases","features":[144]},{"name":"JET_errTooManyOpenIndexes","features":[144]},{"name":"JET_errTooManyOpenTables","features":[144]},{"name":"JET_errTooManyOpenTablesAndCleanupTimedOut","features":[144]},{"name":"JET_errTooManyRecords","features":[144]},{"name":"JET_errTooManySorts","features":[144]},{"name":"JET_errTooManySplits","features":[144]},{"name":"JET_errTransReadOnly","features":[144]},{"name":"JET_errTransTooDeep","features":[144]},{"name":"JET_errTransactionTooLong","features":[144]},{"name":"JET_errTransactionsNotReadyDuringRecovery","features":[144]},{"name":"JET_errUnicodeLanguageValidationFailure","features":[144]},{"name":"JET_errUnicodeNormalizationNotSupported","features":[144]},{"name":"JET_errUnicodeTranslationBufferTooSmall","features":[144]},{"name":"JET_errUnicodeTranslationFail","features":[144]},{"name":"JET_errUnloadableOSFunctionality","features":[144]},{"name":"JET_errUpdateMustVersion","features":[144]},{"name":"JET_errUpdateNotPrepared","features":[144]},{"name":"JET_errVersionStoreEntryTooBig","features":[144]},{"name":"JET_errVersionStoreOutOfMemory","features":[144]},{"name":"JET_errVersionStoreOutOfMemoryAndCleanupTimedOut","features":[144]},{"name":"JET_errWriteConflict","features":[144]},{"name":"JET_errWriteConflictPrimaryIndex","features":[144]},{"name":"JET_errcatApi","features":[144]},{"name":"JET_errcatCorruption","features":[144]},{"name":"JET_errcatData","features":[144]},{"name":"JET_errcatDisk","features":[144]},{"name":"JET_errcatError","features":[144]},{"name":"JET_errcatFatal","features":[144]},{"name":"JET_errcatFragmentation","features":[144]},{"name":"JET_errcatIO","features":[144]},{"name":"JET_errcatInconsistent","features":[144]},{"name":"JET_errcatMax","features":[144]},{"name":"JET_errcatMemory","features":[144]},{"name":"JET_errcatObsolete","features":[144]},{"name":"JET_errcatOperation","features":[144]},{"name":"JET_errcatQuota","features":[144]},{"name":"JET_errcatResource","features":[144]},{"name":"JET_errcatState","features":[144]},{"name":"JET_errcatUnknown","features":[144]},{"name":"JET_errcatUsage","features":[144]},{"name":"JET_filetypeCheckpoint","features":[144]},{"name":"JET_filetypeDatabase","features":[144]},{"name":"JET_filetypeFlushMap","features":[144]},{"name":"JET_filetypeLog","features":[144]},{"name":"JET_filetypeTempDatabase","features":[144]},{"name":"JET_filetypeUnknown","features":[144]},{"name":"JET_objtypNil","features":[144]},{"name":"JET_objtypTable","features":[144]},{"name":"JET_paramAccessDeniedRetryPeriod","features":[144]},{"name":"JET_paramAlternateDatabaseRecoveryPath","features":[144]},{"name":"JET_paramBaseName","features":[144]},{"name":"JET_paramBatchIOBufferMax","features":[144]},{"name":"JET_paramCachePriority","features":[144]},{"name":"JET_paramCacheSize","features":[144]},{"name":"JET_paramCacheSizeMax","features":[144]},{"name":"JET_paramCacheSizeMin","features":[144]},{"name":"JET_paramCachedClosedTables","features":[144]},{"name":"JET_paramCheckFormatWhenOpenFail","features":[144]},{"name":"JET_paramCheckpointDepthMax","features":[144]},{"name":"JET_paramCheckpointIOMax","features":[144]},{"name":"JET_paramCircularLog","features":[144]},{"name":"JET_paramCleanupMismatchedLogFiles","features":[144]},{"name":"JET_paramCommitDefault","features":[144]},{"name":"JET_paramConfigStoreSpec","features":[144]},{"name":"JET_paramConfiguration","features":[144]},{"name":"JET_paramCreatePathIfNotExist","features":[144]},{"name":"JET_paramDatabasePageSize","features":[144]},{"name":"JET_paramDbExtensionSize","features":[144]},{"name":"JET_paramDbScanIntervalMaxSec","features":[144]},{"name":"JET_paramDbScanIntervalMinSec","features":[144]},{"name":"JET_paramDbScanThrottle","features":[144]},{"name":"JET_paramDefragmentSequentialBTrees","features":[144]},{"name":"JET_paramDefragmentSequentialBTreesDensityCheckFrequency","features":[144]},{"name":"JET_paramDeleteOldLogs","features":[144]},{"name":"JET_paramDeleteOutOfRangeLogs","features":[144]},{"name":"JET_paramDisableCallbacks","features":[144]},{"name":"JET_paramDisablePerfmon","features":[144]},{"name":"JET_paramDurableCommitCallback","features":[144]},{"name":"JET_paramEnableAdvanced","features":[144]},{"name":"JET_paramEnableDBScanInRecovery","features":[144]},{"name":"JET_paramEnableDBScanSerialization","features":[144]},{"name":"JET_paramEnableFileCache","features":[144]},{"name":"JET_paramEnableIndexChecking","features":[144]},{"name":"JET_paramEnableIndexCleanup","features":[144]},{"name":"JET_paramEnableOnlineDefrag","features":[144]},{"name":"JET_paramEnablePersistedCallbacks","features":[144]},{"name":"JET_paramEnableRBS","features":[144]},{"name":"JET_paramEnableShrinkDatabase","features":[144]},{"name":"JET_paramEnableSqm","features":[144]},{"name":"JET_paramEnableTempTableVersioning","features":[144]},{"name":"JET_paramEnableViewCache","features":[144]},{"name":"JET_paramErrorToString","features":[144]},{"name":"JET_paramEventLogCache","features":[144]},{"name":"JET_paramEventLoggingLevel","features":[144]},{"name":"JET_paramEventSource","features":[144]},{"name":"JET_paramEventSourceKey","features":[144]},{"name":"JET_paramExceptionAction","features":[144]},{"name":"JET_paramGlobalMinVerPages","features":[144]},{"name":"JET_paramHungIOActions","features":[144]},{"name":"JET_paramHungIOThreshold","features":[144]},{"name":"JET_paramIOPriority","features":[144]},{"name":"JET_paramIOThrottlingTimeQuanta","features":[144]},{"name":"JET_paramIgnoreLogVersion","features":[144]},{"name":"JET_paramIndexTupleIncrement","features":[144]},{"name":"JET_paramIndexTupleStart","features":[144]},{"name":"JET_paramIndexTuplesLengthMax","features":[144]},{"name":"JET_paramIndexTuplesLengthMin","features":[144]},{"name":"JET_paramIndexTuplesToIndexMax","features":[144]},{"name":"JET_paramKeyMost","features":[144]},{"name":"JET_paramLRUKCorrInterval","features":[144]},{"name":"JET_paramLRUKHistoryMax","features":[144]},{"name":"JET_paramLRUKPolicy","features":[144]},{"name":"JET_paramLRUKTimeout","features":[144]},{"name":"JET_paramLRUKTrxCorrInterval","features":[144]},{"name":"JET_paramLVChunkSizeMost","features":[144]},{"name":"JET_paramLegacyFileNames","features":[144]},{"name":"JET_paramLogBuffers","features":[144]},{"name":"JET_paramLogCheckpointPeriod","features":[144]},{"name":"JET_paramLogFileCreateAsynch","features":[144]},{"name":"JET_paramLogFilePath","features":[144]},{"name":"JET_paramLogFileSize","features":[144]},{"name":"JET_paramLogWaitingUserMax","features":[144]},{"name":"JET_paramMaxCoalesceReadGapSize","features":[144]},{"name":"JET_paramMaxCoalesceReadSize","features":[144]},{"name":"JET_paramMaxCoalesceWriteGapSize","features":[144]},{"name":"JET_paramMaxCoalesceWriteSize","features":[144]},{"name":"JET_paramMaxColtyp","features":[144]},{"name":"JET_paramMaxCursors","features":[144]},{"name":"JET_paramMaxInstances","features":[144]},{"name":"JET_paramMaxOpenTables","features":[144]},{"name":"JET_paramMaxSessions","features":[144]},{"name":"JET_paramMaxTemporaryTables","features":[144]},{"name":"JET_paramMaxTransactionSize","features":[144]},{"name":"JET_paramMaxValueInvalid","features":[144]},{"name":"JET_paramMaxVerPages","features":[144]},{"name":"JET_paramMinDataForXpress","features":[144]},{"name":"JET_paramNoInformationEvent","features":[144]},{"name":"JET_paramOSSnapshotTimeout","features":[144]},{"name":"JET_paramOneDatabasePerSession","features":[144]},{"name":"JET_paramOutstandingIOMax","features":[144]},{"name":"JET_paramPageFragment","features":[144]},{"name":"JET_paramPageHintCacheSize","features":[144]},{"name":"JET_paramPageTempDBMin","features":[144]},{"name":"JET_paramPerfmonRefreshInterval","features":[144]},{"name":"JET_paramPreferredMaxOpenTables","features":[144]},{"name":"JET_paramPreferredVerPages","features":[144]},{"name":"JET_paramPrereadIOMax","features":[144]},{"name":"JET_paramProcessFriendlyName","features":[144]},{"name":"JET_paramRBSFilePath","features":[144]},{"name":"JET_paramRecordUpgradeDirtyLevel","features":[144]},{"name":"JET_paramRecovery","features":[144]},{"name":"JET_paramRuntimeCallback","features":[144]},{"name":"JET_paramStartFlushThreshold","features":[144]},{"name":"JET_paramStopFlushThreshold","features":[144]},{"name":"JET_paramSystemPath","features":[144]},{"name":"JET_paramTableClass10Name","features":[144]},{"name":"JET_paramTableClass11Name","features":[144]},{"name":"JET_paramTableClass12Name","features":[144]},{"name":"JET_paramTableClass13Name","features":[144]},{"name":"JET_paramTableClass14Name","features":[144]},{"name":"JET_paramTableClass15Name","features":[144]},{"name":"JET_paramTableClass1Name","features":[144]},{"name":"JET_paramTableClass2Name","features":[144]},{"name":"JET_paramTableClass3Name","features":[144]},{"name":"JET_paramTableClass4Name","features":[144]},{"name":"JET_paramTableClass5Name","features":[144]},{"name":"JET_paramTableClass6Name","features":[144]},{"name":"JET_paramTableClass7Name","features":[144]},{"name":"JET_paramTableClass8Name","features":[144]},{"name":"JET_paramTableClass9Name","features":[144]},{"name":"JET_paramTempPath","features":[144]},{"name":"JET_paramUnicodeIndexDefault","features":[144]},{"name":"JET_paramUseFlushForWriteDurability","features":[144]},{"name":"JET_paramVerPageSize","features":[144]},{"name":"JET_paramVersionStoreTaskQueueMax","features":[144]},{"name":"JET_paramWaitLogFlush","features":[144]},{"name":"JET_paramWaypointLatency","features":[144]},{"name":"JET_paramZeroDatabaseDuringBackup","features":[144]},{"name":"JET_prepCancel","features":[144]},{"name":"JET_prepInsert","features":[144]},{"name":"JET_prepInsertCopy","features":[144]},{"name":"JET_prepInsertCopyDeleteOriginal","features":[144]},{"name":"JET_prepInsertCopyReplaceOriginal","features":[144]},{"name":"JET_prepReplace","features":[144]},{"name":"JET_prepReplaceNoLock","features":[144]},{"name":"JET_relopBitmaskEqualsZero","features":[144]},{"name":"JET_relopBitmaskNotEqualsZero","features":[144]},{"name":"JET_relopEquals","features":[144]},{"name":"JET_relopGreaterThan","features":[144]},{"name":"JET_relopGreaterThanOrEqual","features":[144]},{"name":"JET_relopLessThan","features":[144]},{"name":"JET_relopLessThanOrEqual","features":[144]},{"name":"JET_relopNotEquals","features":[144]},{"name":"JET_relopPrefixEquals","features":[144]},{"name":"JET_sesparamCommitDefault","features":[144]},{"name":"JET_sesparamCorrelationID","features":[144]},{"name":"JET_sesparamMaxValueInvalid","features":[144]},{"name":"JET_sesparamOperationContext","features":[144]},{"name":"JET_sesparamTransactionLevel","features":[144]},{"name":"JET_snpBackup","features":[144]},{"name":"JET_snpCompact","features":[144]},{"name":"JET_snpRepair","features":[144]},{"name":"JET_snpRestore","features":[144]},{"name":"JET_snpScrub","features":[144]},{"name":"JET_snpUpgrade","features":[144]},{"name":"JET_snpUpgradeRecordFormat","features":[144]},{"name":"JET_sntBegin","features":[144]},{"name":"JET_sntComplete","features":[144]},{"name":"JET_sntFail","features":[144]},{"name":"JET_sntProgress","features":[144]},{"name":"JET_sntRequirements","features":[144]},{"name":"JET_sqmDisable","features":[144]},{"name":"JET_sqmEnable","features":[144]},{"name":"JET_sqmFromCEIP","features":[144]},{"name":"JET_wrnBufferTruncated","features":[144]},{"name":"JET_wrnCallbackNotRegistered","features":[144]},{"name":"JET_wrnColumnDefault","features":[144]},{"name":"JET_wrnColumnMaxTruncated","features":[144]},{"name":"JET_wrnColumnMoreTags","features":[144]},{"name":"JET_wrnColumnNotInRecord","features":[144]},{"name":"JET_wrnColumnNotLocal","features":[144]},{"name":"JET_wrnColumnNull","features":[144]},{"name":"JET_wrnColumnPresent","features":[144]},{"name":"JET_wrnColumnReference","features":[144]},{"name":"JET_wrnColumnSetNull","features":[144]},{"name":"JET_wrnColumnSingleValue","features":[144]},{"name":"JET_wrnColumnSkipped","features":[144]},{"name":"JET_wrnColumnTruncated","features":[144]},{"name":"JET_wrnCommittedLogFilesLost","features":[144]},{"name":"JET_wrnCommittedLogFilesRemoved","features":[144]},{"name":"JET_wrnCopyLongValue","features":[144]},{"name":"JET_wrnCorruptIndexDeleted","features":[144]},{"name":"JET_wrnDataHasChanged","features":[144]},{"name":"JET_wrnDatabaseAttached","features":[144]},{"name":"JET_wrnDatabaseRepaired","features":[144]},{"name":"JET_wrnDefragAlreadyRunning","features":[144]},{"name":"JET_wrnDefragNotRunning","features":[144]},{"name":"JET_wrnExistingLogFileHasBadSignature","features":[144]},{"name":"JET_wrnExistingLogFileIsNotContiguous","features":[144]},{"name":"JET_wrnFileOpenReadOnly","features":[144]},{"name":"JET_wrnFinishWithUndo","features":[144]},{"name":"JET_wrnIdleFull","features":[144]},{"name":"JET_wrnKeyChanged","features":[144]},{"name":"JET_wrnNoErrorInfo","features":[144]},{"name":"JET_wrnNoIdleActivity","features":[144]},{"name":"JET_wrnNoWriteLock","features":[144]},{"name":"JET_wrnNyi","features":[144]},{"name":"JET_wrnPrimaryIndexOutOfDate","features":[144]},{"name":"JET_wrnRemainingVersions","features":[144]},{"name":"JET_wrnSecondaryIndexOutOfDate","features":[144]},{"name":"JET_wrnSeekNotEqual","features":[144]},{"name":"JET_wrnSeparateLongValue","features":[144]},{"name":"JET_wrnShrinkNotPossible","features":[144]},{"name":"JET_wrnSkipThisRecord","features":[144]},{"name":"JET_wrnSortOverflow","features":[144]},{"name":"JET_wrnTableEmpty","features":[144]},{"name":"JET_wrnTableInUseBySystem","features":[144]},{"name":"JET_wrnTargetInstanceRunning","features":[144]},{"name":"JET_wrnUniqueKey","features":[144]},{"name":"JET_wszConfigStoreReadControl","features":[144]},{"name":"JET_wszConfigStoreRelPathSysParamDefault","features":[144]},{"name":"JET_wszConfigStoreRelPathSysParamOverride","features":[144]},{"name":"JetAddColumnA","features":[144,145]},{"name":"JetAddColumnW","features":[144,145]},{"name":"JetAttachDatabase2A","features":[144,145]},{"name":"JetAttachDatabase2W","features":[144,145]},{"name":"JetAttachDatabaseA","features":[144,145]},{"name":"JetAttachDatabaseW","features":[144,145]},{"name":"JetBackupA","features":[144,145]},{"name":"JetBackupInstanceA","features":[144,145]},{"name":"JetBackupInstanceW","features":[144,145]},{"name":"JetBackupW","features":[144,145]},{"name":"JetBeginExternalBackup","features":[144]},{"name":"JetBeginExternalBackupInstance","features":[144,145]},{"name":"JetBeginSessionA","features":[144,145]},{"name":"JetBeginSessionW","features":[144,145]},{"name":"JetBeginTransaction","features":[144,145]},{"name":"JetBeginTransaction2","features":[144,145]},{"name":"JetBeginTransaction3","features":[144,145]},{"name":"JetCloseDatabase","features":[144,145]},{"name":"JetCloseFile","features":[144,145]},{"name":"JetCloseFileInstance","features":[144,145]},{"name":"JetCloseTable","features":[144,145]},{"name":"JetCommitTransaction","features":[144,145]},{"name":"JetCommitTransaction2","features":[144,145]},{"name":"JetCompactA","features":[144,145]},{"name":"JetCompactW","features":[144,145]},{"name":"JetComputeStats","features":[144,145]},{"name":"JetConfigureProcessForCrashDump","features":[144]},{"name":"JetCreateDatabase2A","features":[144,145]},{"name":"JetCreateDatabase2W","features":[144,145]},{"name":"JetCreateDatabaseA","features":[144,145]},{"name":"JetCreateDatabaseW","features":[144,145]},{"name":"JetCreateIndex2A","features":[144,145]},{"name":"JetCreateIndex2W","features":[144,145]},{"name":"JetCreateIndex3A","features":[144,145]},{"name":"JetCreateIndex3W","features":[144,145]},{"name":"JetCreateIndex4A","features":[144,145]},{"name":"JetCreateIndex4W","features":[144,145]},{"name":"JetCreateIndexA","features":[144,145]},{"name":"JetCreateIndexW","features":[144,145]},{"name":"JetCreateInstance2A","features":[144,145]},{"name":"JetCreateInstance2W","features":[144,145]},{"name":"JetCreateInstanceA","features":[144,145]},{"name":"JetCreateInstanceW","features":[144,145]},{"name":"JetCreateTableA","features":[144,145]},{"name":"JetCreateTableColumnIndex2A","features":[144,145]},{"name":"JetCreateTableColumnIndex2W","features":[144,145]},{"name":"JetCreateTableColumnIndex3A","features":[144,145]},{"name":"JetCreateTableColumnIndex3W","features":[144,145]},{"name":"JetCreateTableColumnIndex4A","features":[144,145]},{"name":"JetCreateTableColumnIndex4W","features":[144,145]},{"name":"JetCreateTableColumnIndexA","features":[144,145]},{"name":"JetCreateTableColumnIndexW","features":[144,145]},{"name":"JetCreateTableW","features":[144,145]},{"name":"JetDefragment2A","features":[144,145]},{"name":"JetDefragment2W","features":[144,145]},{"name":"JetDefragment3A","features":[144,145]},{"name":"JetDefragment3W","features":[144,145]},{"name":"JetDefragmentA","features":[144,145]},{"name":"JetDefragmentW","features":[144,145]},{"name":"JetDelete","features":[144,145]},{"name":"JetDeleteColumn2A","features":[144,145]},{"name":"JetDeleteColumn2W","features":[144,145]},{"name":"JetDeleteColumnA","features":[144,145]},{"name":"JetDeleteColumnW","features":[144,145]},{"name":"JetDeleteIndexA","features":[144,145]},{"name":"JetDeleteIndexW","features":[144,145]},{"name":"JetDeleteTableA","features":[144,145]},{"name":"JetDeleteTableW","features":[144,145]},{"name":"JetDetachDatabase2A","features":[144,145]},{"name":"JetDetachDatabase2W","features":[144,145]},{"name":"JetDetachDatabaseA","features":[144,145]},{"name":"JetDetachDatabaseW","features":[144,145]},{"name":"JetDupCursor","features":[144,145]},{"name":"JetDupSession","features":[144,145]},{"name":"JetEnableMultiInstanceA","features":[144,145]},{"name":"JetEnableMultiInstanceW","features":[144,145]},{"name":"JetEndExternalBackup","features":[144]},{"name":"JetEndExternalBackupInstance","features":[144,145]},{"name":"JetEndExternalBackupInstance2","features":[144,145]},{"name":"JetEndSession","features":[144,145]},{"name":"JetEnumerateColumns","features":[144,145]},{"name":"JetEscrowUpdate","features":[144,145]},{"name":"JetExternalRestore2A","features":[144,145]},{"name":"JetExternalRestore2W","features":[144,145]},{"name":"JetExternalRestoreA","features":[144,145]},{"name":"JetExternalRestoreW","features":[144,145]},{"name":"JetFreeBuffer","features":[144]},{"name":"JetGetAttachInfoA","features":[144]},{"name":"JetGetAttachInfoInstanceA","features":[144,145]},{"name":"JetGetAttachInfoInstanceW","features":[144,145]},{"name":"JetGetAttachInfoW","features":[144]},{"name":"JetGetBookmark","features":[144,145]},{"name":"JetGetColumnInfoA","features":[144,145]},{"name":"JetGetColumnInfoW","features":[144,145]},{"name":"JetGetCurrentIndexA","features":[144,145]},{"name":"JetGetCurrentIndexW","features":[144,145]},{"name":"JetGetCursorInfo","features":[144,145]},{"name":"JetGetDatabaseFileInfoA","features":[144]},{"name":"JetGetDatabaseFileInfoW","features":[144]},{"name":"JetGetDatabaseInfoA","features":[144,145]},{"name":"JetGetDatabaseInfoW","features":[144,145]},{"name":"JetGetErrorInfoW","features":[144]},{"name":"JetGetIndexInfoA","features":[144,145]},{"name":"JetGetIndexInfoW","features":[144,145]},{"name":"JetGetInstanceInfoA","features":[144,145]},{"name":"JetGetInstanceInfoW","features":[144,145]},{"name":"JetGetInstanceMiscInfo","features":[144,145]},{"name":"JetGetLS","features":[144,145]},{"name":"JetGetLock","features":[144,145]},{"name":"JetGetLogInfoA","features":[144]},{"name":"JetGetLogInfoInstance2A","features":[144,145]},{"name":"JetGetLogInfoInstance2W","features":[144,145]},{"name":"JetGetLogInfoInstanceA","features":[144,145]},{"name":"JetGetLogInfoInstanceW","features":[144,145]},{"name":"JetGetLogInfoW","features":[144]},{"name":"JetGetObjectInfoA","features":[144,145]},{"name":"JetGetObjectInfoW","features":[144,145]},{"name":"JetGetRecordPosition","features":[144,145]},{"name":"JetGetRecordSize","features":[144,145]},{"name":"JetGetRecordSize2","features":[144,145]},{"name":"JetGetSecondaryIndexBookmark","features":[144,145]},{"name":"JetGetSessionParameter","features":[144,145]},{"name":"JetGetSystemParameterA","features":[144,145]},{"name":"JetGetSystemParameterW","features":[144,145]},{"name":"JetGetTableColumnInfoA","features":[144,145]},{"name":"JetGetTableColumnInfoW","features":[144,145]},{"name":"JetGetTableIndexInfoA","features":[144,145]},{"name":"JetGetTableIndexInfoW","features":[144,145]},{"name":"JetGetTableInfoA","features":[144,145]},{"name":"JetGetTableInfoW","features":[144,145]},{"name":"JetGetThreadStats","features":[144]},{"name":"JetGetTruncateLogInfoInstanceA","features":[144,145]},{"name":"JetGetTruncateLogInfoInstanceW","features":[144,145]},{"name":"JetGetVersion","features":[144,145]},{"name":"JetGotoBookmark","features":[144,145]},{"name":"JetGotoPosition","features":[144,145]},{"name":"JetGotoSecondaryIndexBookmark","features":[144,145]},{"name":"JetGrowDatabase","features":[144,145]},{"name":"JetIdle","features":[144,145]},{"name":"JetIndexRecordCount","features":[144,145]},{"name":"JetInit","features":[144,145]},{"name":"JetInit2","features":[144,145]},{"name":"JetInit3A","features":[144,145]},{"name":"JetInit3W","features":[144,145]},{"name":"JetIntersectIndexes","features":[144,145]},{"name":"JetMakeKey","features":[144,145]},{"name":"JetMove","features":[144,145]},{"name":"JetOSSnapshotAbort","features":[144]},{"name":"JetOSSnapshotEnd","features":[144]},{"name":"JetOSSnapshotFreezeA","features":[144,145]},{"name":"JetOSSnapshotFreezeW","features":[144,145]},{"name":"JetOSSnapshotGetFreezeInfoA","features":[144,145]},{"name":"JetOSSnapshotGetFreezeInfoW","features":[144,145]},{"name":"JetOSSnapshotPrepare","features":[144]},{"name":"JetOSSnapshotPrepareInstance","features":[144,145]},{"name":"JetOSSnapshotThaw","features":[144]},{"name":"JetOSSnapshotTruncateLog","features":[144]},{"name":"JetOSSnapshotTruncateLogInstance","features":[144,145]},{"name":"JetOpenDatabaseA","features":[144,145]},{"name":"JetOpenDatabaseW","features":[144,145]},{"name":"JetOpenFileA","features":[144,145]},{"name":"JetOpenFileInstanceA","features":[144,145]},{"name":"JetOpenFileInstanceW","features":[144,145]},{"name":"JetOpenFileW","features":[144,145]},{"name":"JetOpenTableA","features":[144,145]},{"name":"JetOpenTableW","features":[144,145]},{"name":"JetOpenTempTable","features":[144,145]},{"name":"JetOpenTempTable2","features":[144,145]},{"name":"JetOpenTempTable3","features":[144,145]},{"name":"JetOpenTemporaryTable","features":[144,145]},{"name":"JetOpenTemporaryTable2","features":[144,145]},{"name":"JetPrepareUpdate","features":[144,145]},{"name":"JetPrereadIndexRanges","features":[144,145]},{"name":"JetPrereadKeys","features":[144,145]},{"name":"JetReadFile","features":[144,145]},{"name":"JetReadFileInstance","features":[144,145]},{"name":"JetRegisterCallback","features":[144,145]},{"name":"JetRenameColumnA","features":[144,145]},{"name":"JetRenameColumnW","features":[144,145]},{"name":"JetRenameTableA","features":[144,145]},{"name":"JetRenameTableW","features":[144,145]},{"name":"JetResetSessionContext","features":[144,145]},{"name":"JetResetTableSequential","features":[144,145]},{"name":"JetResizeDatabase","features":[144,145]},{"name":"JetRestore2A","features":[144,145]},{"name":"JetRestore2W","features":[144,145]},{"name":"JetRestoreA","features":[144,145]},{"name":"JetRestoreInstanceA","features":[144,145]},{"name":"JetRestoreInstanceW","features":[144,145]},{"name":"JetRestoreW","features":[144,145]},{"name":"JetRetrieveColumn","features":[144,145]},{"name":"JetRetrieveColumns","features":[144,145]},{"name":"JetRetrieveKey","features":[144,145]},{"name":"JetRollback","features":[144,145]},{"name":"JetSeek","features":[144,145]},{"name":"JetSetColumn","features":[144,145]},{"name":"JetSetColumnDefaultValueA","features":[144,145]},{"name":"JetSetColumnDefaultValueW","features":[144,145]},{"name":"JetSetColumns","features":[144,145]},{"name":"JetSetCurrentIndex2A","features":[144,145]},{"name":"JetSetCurrentIndex2W","features":[144,145]},{"name":"JetSetCurrentIndex3A","features":[144,145]},{"name":"JetSetCurrentIndex3W","features":[144,145]},{"name":"JetSetCurrentIndex4A","features":[144,145]},{"name":"JetSetCurrentIndex4W","features":[144,145]},{"name":"JetSetCurrentIndexA","features":[144,145]},{"name":"JetSetCurrentIndexW","features":[144,145]},{"name":"JetSetCursorFilter","features":[144,145]},{"name":"JetSetDatabaseSizeA","features":[144,145]},{"name":"JetSetDatabaseSizeW","features":[144,145]},{"name":"JetSetIndexRange","features":[144,145]},{"name":"JetSetLS","features":[144,145]},{"name":"JetSetSessionContext","features":[144,145]},{"name":"JetSetSessionParameter","features":[144,145]},{"name":"JetSetSystemParameterA","features":[144,145]},{"name":"JetSetSystemParameterW","features":[144,145]},{"name":"JetSetTableSequential","features":[144,145]},{"name":"JetStopBackup","features":[144]},{"name":"JetStopBackupInstance","features":[144,145]},{"name":"JetStopService","features":[144]},{"name":"JetStopServiceInstance","features":[144,145]},{"name":"JetStopServiceInstance2","features":[144,145]},{"name":"JetTerm","features":[144,145]},{"name":"JetTerm2","features":[144,145]},{"name":"JetTruncateLog","features":[144]},{"name":"JetTruncateLogInstance","features":[144,145]},{"name":"JetUnregisterCallback","features":[144,145]},{"name":"JetUpdate","features":[144,145]},{"name":"JetUpdate2","features":[144,145]},{"name":"cColumnInfoCols","features":[144]},{"name":"cIndexInfoCols","features":[144]},{"name":"cObjectInfoCols","features":[144]},{"name":"wrnBTNotVisibleAccumulated","features":[144]},{"name":"wrnBTNotVisibleRejected","features":[144]}],"516":[{"name":"ACTIVE_LATENCY_CONFIGURATION","features":[146]},{"name":"BUCKET_COUNTER","features":[146]},{"name":"DEBUG_BIT_FIELD","features":[146]},{"name":"DSSD_POWER_STATE_DESCRIPTOR","features":[146]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY","features":[146]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY_VERSION_1","features":[146]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGE","features":[146]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGEGuid","features":[146]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIES","features":[146]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIESGuid","features":[146]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERY","features":[146]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERYGuid","features":[146]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY","features":[146]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORYGuid","features":[146]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITOR","features":[146]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITORGuid","features":[146]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATION","features":[146]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATIONGuid","features":[146]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATION","features":[146]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATIONGuid","features":[146]},{"name":"GUID_OCP_DEVICE_TCG_HISTORY","features":[146]},{"name":"GUID_OCP_DEVICE_TCG_HISTORYGuid","features":[146]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS","features":[146]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTSGuid","features":[146]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERY","features":[146]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERYGuid","features":[146]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTES","features":[146]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTESGuid","features":[146]},{"name":"LATENCY_MONITOR_FEATURE_STATUS","features":[146]},{"name":"LATENCY_STAMP","features":[146]},{"name":"LATENCY_STAMP_UNITS","features":[146]},{"name":"MEASURED_LATENCY","features":[146]},{"name":"NVME_ACCESS_FREQUENCIES","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_FR_READ","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_INFR_READ","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_FR_READ","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_INFR_READ","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_NONE","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_ONE_TIME_READ","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_SPECULATIVE_READ","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_TYPICAL","features":[146]},{"name":"NVME_ACCESS_FREQUENCY_WILL_BE_OVERWRITTEN","features":[146]},{"name":"NVME_ACCESS_LATENCIES","features":[146]},{"name":"NVME_ACCESS_LATENCY_IDLE","features":[146]},{"name":"NVME_ACCESS_LATENCY_LOW","features":[146]},{"name":"NVME_ACCESS_LATENCY_NONE","features":[146]},{"name":"NVME_ACCESS_LATENCY_NORMAL","features":[146]},{"name":"NVME_ACTIVE_NAMESPACE_ID_LIST","features":[146]},{"name":"NVME_ADMIN_COMMANDS","features":[146]},{"name":"NVME_ADMIN_COMMAND_ABORT","features":[146]},{"name":"NVME_ADMIN_COMMAND_ASYNC_EVENT_REQUEST","features":[146]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_CQ","features":[146]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_SQ","features":[146]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_CQ","features":[146]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_SQ","features":[146]},{"name":"NVME_ADMIN_COMMAND_DEVICE_SELF_TEST","features":[146]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_RECEIVE","features":[146]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_SEND","features":[146]},{"name":"NVME_ADMIN_COMMAND_DOORBELL_BUFFER_CONFIG","features":[146]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_ACTIVATE","features":[146]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_COMMIT","features":[146]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_IMAGE_DOWNLOAD","features":[146]},{"name":"NVME_ADMIN_COMMAND_FORMAT_NVM","features":[146]},{"name":"NVME_ADMIN_COMMAND_GET_FEATURES","features":[146]},{"name":"NVME_ADMIN_COMMAND_GET_LBA_STATUS","features":[146]},{"name":"NVME_ADMIN_COMMAND_GET_LOG_PAGE","features":[146]},{"name":"NVME_ADMIN_COMMAND_IDENTIFY","features":[146]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_ATTACHMENT","features":[146]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_MANAGEMENT","features":[146]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_RECEIVE","features":[146]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_SEND","features":[146]},{"name":"NVME_ADMIN_COMMAND_SANITIZE","features":[146]},{"name":"NVME_ADMIN_COMMAND_SECURITY_RECEIVE","features":[146]},{"name":"NVME_ADMIN_COMMAND_SECURITY_SEND","features":[146]},{"name":"NVME_ADMIN_COMMAND_SET_FEATURES","features":[146]},{"name":"NVME_ADMIN_COMMAND_VIRTUALIZATION_MANAGEMENT","features":[146]},{"name":"NVME_ADMIN_COMPLETION_QUEUE_BASE_ADDRESS","features":[146]},{"name":"NVME_ADMIN_QUEUE_ATTRIBUTES","features":[146]},{"name":"NVME_ADMIN_SUBMISSION_QUEUE_BASE_ADDRESS","features":[146]},{"name":"NVME_AMS_OPTION","features":[146]},{"name":"NVME_AMS_ROUND_ROBIN","features":[146]},{"name":"NVME_AMS_WEIGHTED_ROUND_ROBIN_URGENT","features":[146]},{"name":"NVME_ASYNC_ERROR_DIAG_FAILURE","features":[146]},{"name":"NVME_ASYNC_ERROR_FIRMWARE_IMAGE_LOAD_ERROR","features":[146]},{"name":"NVME_ASYNC_ERROR_INVALID_DOORBELL_WRITE_VALUE","features":[146]},{"name":"NVME_ASYNC_ERROR_INVALID_SUBMISSION_QUEUE","features":[146]},{"name":"NVME_ASYNC_ERROR_PERSISTENT_INTERNAL_DEVICE_ERROR","features":[146]},{"name":"NVME_ASYNC_ERROR_TRANSIENT_INTERNAL_DEVICE_ERROR","features":[146]},{"name":"NVME_ASYNC_EVENT_ERROR_STATUS_CODES","features":[146]},{"name":"NVME_ASYNC_EVENT_HEALTH_STATUS_CODES","features":[146]},{"name":"NVME_ASYNC_EVENT_IO_COMMAND_SET_STATUS_CODES","features":[146]},{"name":"NVME_ASYNC_EVENT_NOTICE_CODES","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPES","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_ERROR_STATUS","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_HEALTH_STATUS","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_IO_COMMAND_SET_STATUS","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_NOTICE","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_CODES","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_DEVICE_PANIC","features":[146]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_RESERVED","features":[146]},{"name":"NVME_ASYNC_HEALTH_NVM_SUBSYSTEM_RELIABILITY","features":[146]},{"name":"NVME_ASYNC_HEALTH_SPARE_BELOW_THRESHOLD","features":[146]},{"name":"NVME_ASYNC_HEALTH_TEMPERATURE_THRESHOLD","features":[146]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED","features":[146]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED_WITH_UNEXPECTED_DEALLOCATION","features":[146]},{"name":"NVME_ASYNC_IO_CMD_SET_RESERVATION_LOG_PAGE_AVAILABLE","features":[146]},{"name":"NVME_ASYNC_NOTICE_ASYMMETRIC_ACCESS_CHANGE","features":[146]},{"name":"NVME_ASYNC_NOTICE_ENDURANCE_GROUP_EVENT_AGGREGATE_LOG_CHANGE","features":[146]},{"name":"NVME_ASYNC_NOTICE_FIRMWARE_ACTIVATION_STARTING","features":[146]},{"name":"NVME_ASYNC_NOTICE_LBA_STATUS_INFORMATION_ALERT","features":[146]},{"name":"NVME_ASYNC_NOTICE_NAMESPACE_ATTRIBUTE_CHANGED","features":[146]},{"name":"NVME_ASYNC_NOTICE_PREDICTABLE_LATENCY_EVENT_AGGREGATE_LOG_CHANGE","features":[146]},{"name":"NVME_ASYNC_NOTICE_TELEMETRY_LOG_CHANGED","features":[146]},{"name":"NVME_ASYNC_NOTICE_ZONE_DESCRIPTOR_CHANGED","features":[146]},{"name":"NVME_AUTO_POWER_STATE_TRANSITION_ENTRY","features":[146]},{"name":"NVME_CC_SHN_ABRUPT_SHUTDOWN","features":[146]},{"name":"NVME_CC_SHN_NORMAL_SHUTDOWN","features":[146]},{"name":"NVME_CC_SHN_NO_NOTIFICATION","features":[146]},{"name":"NVME_CC_SHN_SHUTDOWN_NOTIFICATIONS","features":[146]},{"name":"NVME_CDW0_FEATURE_ENABLE_IEEE1667_SILO","features":[146]},{"name":"NVME_CDW0_FEATURE_ERROR_INJECTION","features":[146]},{"name":"NVME_CDW0_FEATURE_READONLY_WRITETHROUGH_MODE","features":[146]},{"name":"NVME_CDW0_RESERVATION_PERSISTENCE","features":[146]},{"name":"NVME_CDW10_ABORT","features":[146]},{"name":"NVME_CDW10_CREATE_IO_QUEUE","features":[146]},{"name":"NVME_CDW10_DATASET_MANAGEMENT","features":[146]},{"name":"NVME_CDW10_DIRECTIVE_RECEIVE","features":[146]},{"name":"NVME_CDW10_DIRECTIVE_SEND","features":[146]},{"name":"NVME_CDW10_FIRMWARE_ACTIVATE","features":[146]},{"name":"NVME_CDW10_FIRMWARE_DOWNLOAD","features":[146]},{"name":"NVME_CDW10_FORMAT_NVM","features":[146]},{"name":"NVME_CDW10_GET_FEATURES","features":[146]},{"name":"NVME_CDW10_GET_LOG_PAGE","features":[146]},{"name":"NVME_CDW10_GET_LOG_PAGE_V13","features":[146]},{"name":"NVME_CDW10_IDENTIFY","features":[146]},{"name":"NVME_CDW10_RESERVATION_ACQUIRE","features":[146]},{"name":"NVME_CDW10_RESERVATION_REGISTER","features":[146]},{"name":"NVME_CDW10_RESERVATION_RELEASE","features":[146]},{"name":"NVME_CDW10_RESERVATION_REPORT","features":[146]},{"name":"NVME_CDW10_SANITIZE","features":[146]},{"name":"NVME_CDW10_SECURITY_SEND_RECEIVE","features":[146]},{"name":"NVME_CDW10_SET_FEATURES","features":[146]},{"name":"NVME_CDW10_ZONE_APPEND","features":[146]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_RECEIVE","features":[146]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_SEND","features":[146]},{"name":"NVME_CDW11_CREATE_IO_CQ","features":[146]},{"name":"NVME_CDW11_CREATE_IO_SQ","features":[146]},{"name":"NVME_CDW11_DATASET_MANAGEMENT","features":[146]},{"name":"NVME_CDW11_DIRECTIVE_RECEIVE","features":[146]},{"name":"NVME_CDW11_DIRECTIVE_SEND","features":[146]},{"name":"NVME_CDW11_FEATURES","features":[146]},{"name":"NVME_CDW11_FEATURE_ARBITRATION","features":[146]},{"name":"NVME_CDW11_FEATURE_ASYNC_EVENT_CONFIG","features":[146]},{"name":"NVME_CDW11_FEATURE_AUTO_POWER_STATE_TRANSITION","features":[146]},{"name":"NVME_CDW11_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[146]},{"name":"NVME_CDW11_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[146]},{"name":"NVME_CDW11_FEATURE_ENABLE_IEEE1667_SILO","features":[146]},{"name":"NVME_CDW11_FEATURE_ERROR_RECOVERY","features":[146]},{"name":"NVME_CDW11_FEATURE_GET_HOST_METADATA","features":[146]},{"name":"NVME_CDW11_FEATURE_HOST_IDENTIFIER","features":[146]},{"name":"NVME_CDW11_FEATURE_HOST_MEMORY_BUFFER","features":[146]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_COALESCING","features":[146]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[146]},{"name":"NVME_CDW11_FEATURE_IO_COMMAND_SET_PROFILE","features":[146]},{"name":"NVME_CDW11_FEATURE_LBA_RANGE_TYPE","features":[146]},{"name":"NVME_CDW11_FEATURE_NON_OPERATIONAL_POWER_STATE","features":[146]},{"name":"NVME_CDW11_FEATURE_NUMBER_OF_QUEUES","features":[146]},{"name":"NVME_CDW11_FEATURE_POWER_MANAGEMENT","features":[146]},{"name":"NVME_CDW11_FEATURE_READONLY_WRITETHROUGH_MODE","features":[146]},{"name":"NVME_CDW11_FEATURE_RESERVATION_NOTIFICATION_MASK","features":[146]},{"name":"NVME_CDW11_FEATURE_RESERVATION_PERSISTENCE","features":[146]},{"name":"NVME_CDW11_FEATURE_SET_HOST_METADATA","features":[146]},{"name":"NVME_CDW11_FEATURE_SUPPORTED_CAPABILITY","features":[146]},{"name":"NVME_CDW11_FEATURE_TEMPERATURE_THRESHOLD","features":[146]},{"name":"NVME_CDW11_FEATURE_VOLATILE_WRITE_CACHE","features":[146]},{"name":"NVME_CDW11_FEATURE_WRITE_ATOMICITY_NORMAL","features":[146]},{"name":"NVME_CDW11_FIRMWARE_DOWNLOAD","features":[146]},{"name":"NVME_CDW11_GET_LOG_PAGE","features":[146]},{"name":"NVME_CDW11_IDENTIFY","features":[146]},{"name":"NVME_CDW11_RESERVATION_REPORT","features":[146]},{"name":"NVME_CDW11_SANITIZE","features":[146]},{"name":"NVME_CDW11_SECURITY_RECEIVE","features":[146]},{"name":"NVME_CDW11_SECURITY_SEND","features":[146]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE","features":[146]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[146]},{"name":"NVME_CDW12_DIRECTIVE_SEND","features":[146]},{"name":"NVME_CDW12_DIRECTIVE_SEND_IDENTIFY_ENABLE_DIRECTIVE","features":[146]},{"name":"NVME_CDW12_FEATURES","features":[146]},{"name":"NVME_CDW12_FEATURE_HOST_MEMORY_BUFFER","features":[146]},{"name":"NVME_CDW12_GET_LOG_PAGE","features":[146]},{"name":"NVME_CDW12_READ_WRITE","features":[146]},{"name":"NVME_CDW12_ZONE_APPEND","features":[146]},{"name":"NVME_CDW13_FEATURES","features":[146]},{"name":"NVME_CDW13_FEATURE_HOST_MEMORY_BUFFER","features":[146]},{"name":"NVME_CDW13_GET_LOG_PAGE","features":[146]},{"name":"NVME_CDW13_READ_WRITE","features":[146]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_RECEIVE","features":[146]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_SEND","features":[146]},{"name":"NVME_CDW14_FEATURES","features":[146]},{"name":"NVME_CDW14_FEATURE_HOST_MEMORY_BUFFER","features":[146]},{"name":"NVME_CDW14_GET_LOG_PAGE","features":[146]},{"name":"NVME_CDW15_FEATURES","features":[146]},{"name":"NVME_CDW15_FEATURE_HOST_MEMORY_BUFFER","features":[146]},{"name":"NVME_CDW15_READ_WRITE","features":[146]},{"name":"NVME_CDW15_ZONE_APPEND","features":[146]},{"name":"NVME_CHANGED_NAMESPACE_LIST_LOG","features":[146]},{"name":"NVME_CHANGED_ZONE_LIST_LOG","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS_16MB","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS_1MB","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS_256MB","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS_4GB","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS_4KB","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS_64GB","features":[146]},{"name":"NVME_CMBSZ_SIZE_UNITS_64KB","features":[146]},{"name":"NVME_COMMAND","features":[146]},{"name":"NVME_COMMAND_DWORD0","features":[146]},{"name":"NVME_COMMAND_EFFECTS_DATA","features":[146]},{"name":"NVME_COMMAND_EFFECTS_LOG","features":[146]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMITS","features":[146]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_NONE","features":[146]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_CONTROLLER","features":[146]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_NAMESPACE","features":[146]},{"name":"NVME_COMMAND_SET_IDENTIFIERS","features":[146]},{"name":"NVME_COMMAND_SET_KEY_VALUE","features":[146]},{"name":"NVME_COMMAND_SET_NVM","features":[146]},{"name":"NVME_COMMAND_SET_ZONED_NAMESPACE","features":[146]},{"name":"NVME_COMMAND_STATUS","features":[146]},{"name":"NVME_COMPLETION_DW0_ASYNC_EVENT_REQUEST","features":[146]},{"name":"NVME_COMPLETION_DW0_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[146]},{"name":"NVME_COMPLETION_ENTRY","features":[146]},{"name":"NVME_COMPLETION_QUEUE_HEAD_DOORBELL","features":[146]},{"name":"NVME_CONTEXT_ATTRIBUTES","features":[146]},{"name":"NVME_CONTROLLER_CAPABILITIES","features":[146]},{"name":"NVME_CONTROLLER_CONFIGURATION","features":[146]},{"name":"NVME_CONTROLLER_LIST","features":[146]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_LOCATION","features":[146]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_SIZE","features":[146]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_NAME","features":[146]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_VERSION","features":[146]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_NAME","features":[146]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_VERSION","features":[146]},{"name":"NVME_CONTROLLER_METADATA_ELEMENT_TYPES","features":[146]},{"name":"NVME_CONTROLLER_METADATA_FIRMWARE_VERSION","features":[146]},{"name":"NVME_CONTROLLER_METADATA_HOST_DETERMINED_FAILURE_RECORD","features":[146]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_CONTROLLER_NAME","features":[146]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_FILENAME","features":[146]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_NAME","features":[146]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_VERSION","features":[146]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_NAME_AND_BUILD","features":[146]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_CONTROLLER_NAME","features":[146]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_NAME","features":[146]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_VERSION","features":[146]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PROCESSOR_MODEL","features":[146]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PRODUCT_NAME","features":[146]},{"name":"NVME_CONTROLLER_REGISTERS","features":[146]},{"name":"NVME_CONTROLLER_STATUS","features":[146]},{"name":"NVME_CSS_ADMIN_COMMAND_SET_ONLY","features":[146]},{"name":"NVME_CSS_ALL_SUPPORTED_IO_COMMAND_SET","features":[146]},{"name":"NVME_CSS_COMMAND_SETS","features":[146]},{"name":"NVME_CSS_NVM_COMMAND_SET","features":[146]},{"name":"NVME_CSTS_SHST_NO_SHUTDOWN","features":[146]},{"name":"NVME_CSTS_SHST_SHUTDOWN_COMPLETED","features":[146]},{"name":"NVME_CSTS_SHST_SHUTDOWN_IN_PROCESS","features":[146]},{"name":"NVME_CSTS_SHST_SHUTDOWN_STATUS","features":[146]},{"name":"NVME_DEVICE_SELF_TEST_LOG","features":[146]},{"name":"NVME_DEVICE_SELF_TEST_RESULT_DATA","features":[146]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS","features":[146]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS_DESCRIPTOR","features":[146]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATIONS","features":[146]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATION_RETURN_PARAMETERS","features":[146]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATIONS","features":[146]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_ALLOCATE_RESOURCES","features":[146]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_GET_STATUS","features":[146]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_RETURN_PARAMETERS","features":[146]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATIONS","features":[146]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATION_ENABLE_DIRECTIVE","features":[146]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATIONS","features":[146]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_IDENTIFIER","features":[146]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_RESOURCES","features":[146]},{"name":"NVME_DIRECTIVE_STREAMS_GET_STATUS_DATA","features":[146]},{"name":"NVME_DIRECTIVE_STREAMS_RETURN_PARAMETERS","features":[146]},{"name":"NVME_DIRECTIVE_TYPES","features":[146]},{"name":"NVME_DIRECTIVE_TYPE_IDENTIFY","features":[146]},{"name":"NVME_DIRECTIVE_TYPE_STREAMS","features":[146]},{"name":"NVME_ENDURANCE_GROUP_LOG","features":[146]},{"name":"NVME_ERROR_INFO_LOG","features":[146]},{"name":"NVME_ERROR_INJECTION_ENTRY","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPES","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_CPU_CONTROLLER_HANG","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_CRITICAL","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_NONCRITICAL","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_HW_MALFUNCTION","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_LOGICAL_FW_ERROR","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_CORRUPTION","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_HANG","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_PLP_DEFECT","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_SRAM_CORRUPTION","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_MAX","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED0","features":[146]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED1","features":[146]},{"name":"NVME_EXTENDED_HOST_IDENTIFIER_SIZE","features":[146]},{"name":"NVME_EXTENDED_REPORT_ZONE_INFO","features":[146]},{"name":"NVME_FEATURES","features":[146]},{"name":"NVME_FEATURE_ARBITRATION","features":[146]},{"name":"NVME_FEATURE_ASYNC_EVENT_CONFIG","features":[146]},{"name":"NVME_FEATURE_AUTONOMOUS_POWER_STATE_TRANSITION","features":[146]},{"name":"NVME_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[146]},{"name":"NVME_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[146]},{"name":"NVME_FEATURE_CONTROLLER_METADATA","features":[146]},{"name":"NVME_FEATURE_ENABLE_IEEE1667_SILO","features":[146]},{"name":"NVME_FEATURE_ENDURANCE_GROUP_EVENT_CONFIG","features":[146]},{"name":"NVME_FEATURE_ENHANCED_CONTROLLER_METADATA","features":[146]},{"name":"NVME_FEATURE_ERROR_INJECTION","features":[146]},{"name":"NVME_FEATURE_ERROR_RECOVERY","features":[146]},{"name":"NVME_FEATURE_HOST_BEHAVIOR_SUPPORT","features":[146]},{"name":"NVME_FEATURE_HOST_CONTROLLED_THERMAL_MANAGEMENT","features":[146]},{"name":"NVME_FEATURE_HOST_IDENTIFIER_DATA","features":[146]},{"name":"NVME_FEATURE_HOST_MEMORY_BUFFER","features":[146]},{"name":"NVME_FEATURE_HOST_METADATA_DATA","features":[146]},{"name":"NVME_FEATURE_INTERRUPT_COALESCING","features":[146]},{"name":"NVME_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[146]},{"name":"NVME_FEATURE_IO_COMMAND_SET_PROFILE","features":[146]},{"name":"NVME_FEATURE_KEEP_ALIVE","features":[146]},{"name":"NVME_FEATURE_LBA_RANGE_TYPE","features":[146]},{"name":"NVME_FEATURE_LBA_STATUS_INFORMATION_REPORT_INTERVAL","features":[146]},{"name":"NVME_FEATURE_NAMESPACE_METADATA","features":[146]},{"name":"NVME_FEATURE_NONOPERATIONAL_POWER_STATE","features":[146]},{"name":"NVME_FEATURE_NUMBER_OF_QUEUES","features":[146]},{"name":"NVME_FEATURE_NVM_HOST_IDENTIFIER","features":[146]},{"name":"NVME_FEATURE_NVM_NAMESPACE_WRITE_PROTECTION_CONFIG","features":[146]},{"name":"NVME_FEATURE_NVM_RESERVATION_NOTIFICATION_MASK","features":[146]},{"name":"NVME_FEATURE_NVM_RESERVATION_PERSISTANCE","features":[146]},{"name":"NVME_FEATURE_NVM_SOFTWARE_PROGRESS_MARKER","features":[146]},{"name":"NVME_FEATURE_PLP_HEALTH_MONITOR","features":[146]},{"name":"NVME_FEATURE_POWER_MANAGEMENT","features":[146]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_CONFIG","features":[146]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_WINDOW","features":[146]},{"name":"NVME_FEATURE_READONLY_WRITETHROUGH_MODE","features":[146]},{"name":"NVME_FEATURE_READ_RECOVERY_LEVEL_CONFIG","features":[146]},{"name":"NVME_FEATURE_SANITIZE_CONFIG","features":[146]},{"name":"NVME_FEATURE_TEMPERATURE_THRESHOLD","features":[146]},{"name":"NVME_FEATURE_TIMESTAMP","features":[146]},{"name":"NVME_FEATURE_VALUE_CODES","features":[146]},{"name":"NVME_FEATURE_VALUE_CURRENT","features":[146]},{"name":"NVME_FEATURE_VALUE_DEFAULT","features":[146]},{"name":"NVME_FEATURE_VALUE_SAVED","features":[146]},{"name":"NVME_FEATURE_VALUE_SUPPORTED_CAPABILITIES","features":[146]},{"name":"NVME_FEATURE_VOLATILE_WRITE_CACHE","features":[146]},{"name":"NVME_FEATURE_WRITE_ATOMICITY","features":[146]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTIONS","features":[146]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_ACTIVATE","features":[146]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT","features":[146]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE","features":[146]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE_IMMEDIATE","features":[146]},{"name":"NVME_FIRMWARE_SLOT_INFO_LOG","features":[146]},{"name":"NVME_FUSED_OPERATION_CODES","features":[146]},{"name":"NVME_FUSED_OPERATION_FIRST_CMD","features":[146]},{"name":"NVME_FUSED_OPERATION_NORMAL","features":[146]},{"name":"NVME_FUSED_OPERATION_SECOND_CMD","features":[146]},{"name":"NVME_HEALTH_INFO_LOG","features":[146]},{"name":"NVME_HOST_IDENTIFIER_SIZE","features":[146]},{"name":"NVME_HOST_MEMORY_BUFFER_DESCRIPTOR_ENTRY","features":[146]},{"name":"NVME_HOST_METADATA_ADD_ENTRY_MULTIPLE","features":[146]},{"name":"NVME_HOST_METADATA_ADD_REPLACE_ENTRY","features":[146]},{"name":"NVME_HOST_METADATA_DELETE_ENTRY_MULTIPLE","features":[146]},{"name":"NVME_HOST_METADATA_ELEMENT_ACTIONS","features":[146]},{"name":"NVME_HOST_METADATA_ELEMENT_DESCRIPTOR","features":[146]},{"name":"NVME_IDENTIFIER_TYPE","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_CSI","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_CSI_LENGTH","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_EUI64","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_EUI64_LENGTH","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_LENGTH","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_NGUID","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_NGUID_LENGTH","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_UUID","features":[146]},{"name":"NVME_IDENTIFIER_TYPE_UUID_LENGTH","features":[146]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACES","features":[146]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACE_LIST_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE","features":[146]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_LIST","features":[146]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMSPACE_LIST_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_CNS_CODES","features":[146]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER","features":[146]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NSID","features":[146]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NVM_SUBSYSTEM","features":[146]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE","features":[146]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE_SIZE","features":[146]},{"name":"NVME_IDENTIFY_CNS_DOMAIN_LIST","features":[146]},{"name":"NVME_IDENTIFY_CNS_ENDURANCE_GROUP_LIST","features":[146]},{"name":"NVME_IDENTIFY_CNS_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_CNS_NAMESPACE_GRANULARITY_LIST","features":[146]},{"name":"NVME_IDENTIFY_CNS_NVM_SET","features":[146]},{"name":"NVME_IDENTIFY_CNS_PRIMARY_CONTROLLER_CAPABILITIES","features":[146]},{"name":"NVME_IDENTIFY_CNS_SECONDARY_CONTROLLER_LIST","features":[146]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE","features":[146]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_CNS_UUID_LIST","features":[146]},{"name":"NVME_IDENTIFY_CONTROLLER_DATA","features":[146]},{"name":"NVME_IDENTIFY_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_NAMESPACE_DATA","features":[146]},{"name":"NVME_IDENTIFY_NAMESPACE_DESCRIPTOR","features":[146]},{"name":"NVME_IDENTIFY_NVM_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[146]},{"name":"NVME_IDENTIFY_ZNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[146]},{"name":"NVME_IO_COMMAND_SET_COMBINATION_REJECTED","features":[146]},{"name":"NVME_IO_COMMAND_SET_INVALID","features":[146]},{"name":"NVME_IO_COMMAND_SET_NOT_ENABLED","features":[146]},{"name":"NVME_IO_COMMAND_SET_NOT_SUPPORTED","features":[146]},{"name":"NVME_LBA_FORMAT","features":[146]},{"name":"NVME_LBA_RANGE","features":[146]},{"name":"NVME_LBA_RANGET_TYPE_ENTRY","features":[146]},{"name":"NVME_LBA_RANGE_TYPES","features":[146]},{"name":"NVME_LBA_RANGE_TYPE_CACHE","features":[146]},{"name":"NVME_LBA_RANGE_TYPE_FILESYSTEM","features":[146]},{"name":"NVME_LBA_RANGE_TYPE_PAGE_SWAP_FILE","features":[146]},{"name":"NVME_LBA_RANGE_TYPE_RAID","features":[146]},{"name":"NVME_LBA_RANGE_TYPE_RESERVED","features":[146]},{"name":"NVME_LBA_ZONE_FORMAT","features":[146]},{"name":"NVME_LOG_PAGES","features":[146]},{"name":"NVME_LOG_PAGE_ASYMMETRIC_NAMESPACE_ACCESS","features":[146]},{"name":"NVME_LOG_PAGE_CHANGED_NAMESPACE_LIST","features":[146]},{"name":"NVME_LOG_PAGE_CHANGED_ZONE_LIST","features":[146]},{"name":"NVME_LOG_PAGE_COMMAND_EFFECTS","features":[146]},{"name":"NVME_LOG_PAGE_DEVICE_SELF_TEST","features":[146]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_EVENT_AGGREGATE","features":[146]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_INFORMATION","features":[146]},{"name":"NVME_LOG_PAGE_ERROR_INFO","features":[146]},{"name":"NVME_LOG_PAGE_FIRMWARE_SLOT_INFO","features":[146]},{"name":"NVME_LOG_PAGE_HEALTH_INFO","features":[146]},{"name":"NVME_LOG_PAGE_LBA_STATUS_INFORMATION","features":[146]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_CAPABILITIES","features":[146]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_ERROR_RECOVERY","features":[146]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_SMART_INFORMATION","features":[146]},{"name":"NVME_LOG_PAGE_OCP_FIRMWARE_ACTIVATION_HISTORY","features":[146]},{"name":"NVME_LOG_PAGE_OCP_LATENCY_MONITOR","features":[146]},{"name":"NVME_LOG_PAGE_OCP_TCG_CONFIGURATION","features":[146]},{"name":"NVME_LOG_PAGE_OCP_TCG_HISTORY","features":[146]},{"name":"NVME_LOG_PAGE_OCP_UNSUPPORTED_REQUIREMENTS","features":[146]},{"name":"NVME_LOG_PAGE_PERSISTENT_EVENT_LOG","features":[146]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_EVENT_AGGREGATE","features":[146]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_NVM_SET","features":[146]},{"name":"NVME_LOG_PAGE_RESERVATION_NOTIFICATION","features":[146]},{"name":"NVME_LOG_PAGE_SANITIZE_STATUS","features":[146]},{"name":"NVME_LOG_PAGE_TELEMETRY_CTLR_INITIATED","features":[146]},{"name":"NVME_LOG_PAGE_TELEMETRY_HOST_INITIATED","features":[146]},{"name":"NVME_MAX_HOST_IDENTIFIER_SIZE","features":[146]},{"name":"NVME_MAX_LOG_SIZE","features":[146]},{"name":"NVME_MEDIA_ADDITIONALLY_MODIFIED_AFTER_SANITIZE_NOT_DEFINED","features":[146]},{"name":"NVME_MEDIA_ADDITIONALLY_MOFIDIED_AFTER_SANITIZE","features":[146]},{"name":"NVME_MEDIA_NOT_ADDITIONALLY_MODIFIED_AFTER_SANITIZE","features":[146]},{"name":"NVME_NAMESPACE_ALL","features":[146]},{"name":"NVME_NAMESPACE_METADATA_ELEMENT_TYPES","features":[146]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME","features":[146]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_1","features":[146]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_2","features":[146]},{"name":"NVME_NAMESPACE_METADATA_PREBOOT_NAMESPACE_NAME","features":[146]},{"name":"NVME_NO_DEALLOCATE_MODIFIES_MEDIA_AFTER_SANITIZE","features":[146]},{"name":"NVME_NVM_COMMANDS","features":[146]},{"name":"NVME_NVM_COMMAND_COMPARE","features":[146]},{"name":"NVME_NVM_COMMAND_COPY","features":[146]},{"name":"NVME_NVM_COMMAND_DATASET_MANAGEMENT","features":[146]},{"name":"NVME_NVM_COMMAND_FLUSH","features":[146]},{"name":"NVME_NVM_COMMAND_READ","features":[146]},{"name":"NVME_NVM_COMMAND_RESERVATION_ACQUIRE","features":[146]},{"name":"NVME_NVM_COMMAND_RESERVATION_REGISTER","features":[146]},{"name":"NVME_NVM_COMMAND_RESERVATION_RELEASE","features":[146]},{"name":"NVME_NVM_COMMAND_RESERVATION_REPORT","features":[146]},{"name":"NVME_NVM_COMMAND_VERIFY","features":[146]},{"name":"NVME_NVM_COMMAND_WRITE","features":[146]},{"name":"NVME_NVM_COMMAND_WRITE_UNCORRECTABLE","features":[146]},{"name":"NVME_NVM_COMMAND_WRITE_ZEROES","features":[146]},{"name":"NVME_NVM_COMMAND_ZONE_APPEND","features":[146]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_RECEIVE","features":[146]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_SEND","features":[146]},{"name":"NVME_NVM_QUEUE_PRIORITIES","features":[146]},{"name":"NVME_NVM_QUEUE_PRIORITY_HIGH","features":[146]},{"name":"NVME_NVM_QUEUE_PRIORITY_LOW","features":[146]},{"name":"NVME_NVM_QUEUE_PRIORITY_MEDIUM","features":[146]},{"name":"NVME_NVM_QUEUE_PRIORITY_URGENT","features":[146]},{"name":"NVME_NVM_SUBSYSTEM_RESET","features":[146]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG","features":[146]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG_VERSION_1","features":[146]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_V2","features":[146]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_VERSION_2","features":[146]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG","features":[146]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG_VERSION_1","features":[146]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG","features":[146]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG_VERSION_1","features":[146]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_V3","features":[146]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_VERSION_3","features":[146]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG","features":[146]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG_VERSION_1","features":[146]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG","features":[146]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG_VERSION_1","features":[146]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG","features":[146]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG_VERSION_1","features":[146]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_HEADER","features":[146]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_TYPES","features":[146]},{"name":"NVME_PERSISTENT_EVENT_LOG_HEADER","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_CHANGE_NAMESPACE","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FIRMWARE_COMMIT","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_COMPLETION","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_START","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_MAX","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_NVM_SUBSYSTEM_HARDWARE_ERROR","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_POWER_ON_OR_RESET","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED0","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_BEGIN","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_END","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_BEGIN","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_END","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_COMPLETION","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_START","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SET_FEATURE","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SMART_HEALTH_LOG_SNAPSHOT","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TCG_DEFINED","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TELEMETRY_LOG_CREATED","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_THERMAL_EXCURSION","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TIMESTAMP_CHANGE","features":[146]},{"name":"NVME_PERSISTENT_EVENT_TYPE_VENDOR_SPECIFIC_EVENT","features":[146]},{"name":"NVME_POWER_STATE_DESC","features":[146]},{"name":"NVME_PROTECTION_INFORMATION_NOT_ENABLED","features":[146]},{"name":"NVME_PROTECTION_INFORMATION_TYPE1","features":[146]},{"name":"NVME_PROTECTION_INFORMATION_TYPE2","features":[146]},{"name":"NVME_PROTECTION_INFORMATION_TYPE3","features":[146]},{"name":"NVME_PROTECTION_INFORMATION_TYPES","features":[146]},{"name":"NVME_PRP_ENTRY","features":[146]},{"name":"NVME_REGISTERED_CONTROLLER_DATA","features":[146]},{"name":"NVME_REGISTERED_CONTROLLER_EXTENDED_DATA","features":[146]},{"name":"NVME_REPORT_ZONE_INFO","features":[146]},{"name":"NVME_RESERVATION_ACQUIRE_ACTIONS","features":[146]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_ACQUIRE","features":[146]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT","features":[146]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT_AND_ABORT","features":[146]},{"name":"NVME_RESERVATION_ACQUIRE_DATA_STRUCTURE","features":[146]},{"name":"NVME_RESERVATION_NOTIFICATION_LOG","features":[146]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPES","features":[146]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_EMPTY_LOG_PAGE","features":[146]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_PREEMPTED","features":[146]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_RELEASED","features":[146]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_RESERVATION_PREEPMPTED","features":[146]},{"name":"NVME_RESERVATION_REGISTER_ACTIONS","features":[146]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REGISTER","features":[146]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REPLACE","features":[146]},{"name":"NVME_RESERVATION_REGISTER_ACTION_UNREGISTER","features":[146]},{"name":"NVME_RESERVATION_REGISTER_DATA_STRUCTURE","features":[146]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_CHANGES","features":[146]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_NO_CHANGE","features":[146]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_RESERVED","features":[146]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_0","features":[146]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_1","features":[146]},{"name":"NVME_RESERVATION_RELEASE_ACTIONS","features":[146]},{"name":"NVME_RESERVATION_RELEASE_ACTION_CLEAR","features":[146]},{"name":"NVME_RESERVATION_RELEASE_ACTION_RELEASE","features":[146]},{"name":"NVME_RESERVATION_RELEASE_DATA_STRUCTURE","features":[146]},{"name":"NVME_RESERVATION_REPORT_STATUS_DATA_STRUCTURE","features":[146]},{"name":"NVME_RESERVATION_REPORT_STATUS_EXTENDED_DATA_STRUCTURE","features":[146]},{"name":"NVME_RESERVATION_REPORT_STATUS_HEADER","features":[146]},{"name":"NVME_RESERVATION_TYPES","features":[146]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS","features":[146]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_ALL_REGISTRANTS","features":[146]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_REGISTRANTS_ONLY","features":[146]},{"name":"NVME_RESERVATION_TYPE_RESERVED","features":[146]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE","features":[146]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_ALL_REGISTRANTS","features":[146]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_REGISTRANTS_ONLY","features":[146]},{"name":"NVME_SANITIZE_ACTION","features":[146]},{"name":"NVME_SANITIZE_ACTION_EXIT_FAILURE_MODE","features":[146]},{"name":"NVME_SANITIZE_ACTION_RESERVED","features":[146]},{"name":"NVME_SANITIZE_ACTION_START_BLOCK_ERASE_SANITIZE","features":[146]},{"name":"NVME_SANITIZE_ACTION_START_CRYPTO_ERASE_SANITIZE","features":[146]},{"name":"NVME_SANITIZE_ACTION_START_OVERWRITE_SANITIZE","features":[146]},{"name":"NVME_SANITIZE_OPERATION_FAILED","features":[146]},{"name":"NVME_SANITIZE_OPERATION_IN_PROGRESS","features":[146]},{"name":"NVME_SANITIZE_OPERATION_NONE","features":[146]},{"name":"NVME_SANITIZE_OPERATION_STATUS","features":[146]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED","features":[146]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED_WITH_FORCED_DEALLOCATION","features":[146]},{"name":"NVME_SANITIZE_STATUS","features":[146]},{"name":"NVME_SANITIZE_STATUS_LOG","features":[146]},{"name":"NVME_SCSI_NAME_STRING","features":[146]},{"name":"NVME_SECURE_ERASE_CRYPTOGRAPHIC","features":[146]},{"name":"NVME_SECURE_ERASE_NONE","features":[146]},{"name":"NVME_SECURE_ERASE_SETTINGS","features":[146]},{"name":"NVME_SECURE_ERASE_USER_DATA","features":[146]},{"name":"NVME_SET_ATTRIBUTES_ENTRY","features":[146]},{"name":"NVME_STATE_ZSC","features":[146]},{"name":"NVME_STATE_ZSE","features":[146]},{"name":"NVME_STATE_ZSEO","features":[146]},{"name":"NVME_STATE_ZSF","features":[146]},{"name":"NVME_STATE_ZSIO","features":[146]},{"name":"NVME_STATE_ZSO","features":[146]},{"name":"NVME_STATE_ZSRO","features":[146]},{"name":"NVME_STATUS_ABORT_COMMAND_LIMIT_EXCEEDED","features":[146]},{"name":"NVME_STATUS_ANA_ATTACH_FAILED","features":[146]},{"name":"NVME_STATUS_ASYNC_EVENT_REQUEST_LIMIT_EXCEEDED","features":[146]},{"name":"NVME_STATUS_ATOMIC_WRITE_UNIT_EXCEEDED","features":[146]},{"name":"NVME_STATUS_BOOT_PARTITION_WRITE_PROHIBITED","features":[146]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_FUSED_COMMAND","features":[146]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_MISSING_COMMAND","features":[146]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_POWER_LOSS_NOTIFICATION","features":[146]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_PREEMPT_ABORT","features":[146]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_SQ_DELETION","features":[146]},{"name":"NVME_STATUS_COMMAND_ABORT_REQUESTED","features":[146]},{"name":"NVME_STATUS_COMMAND_ID_CONFLICT","features":[146]},{"name":"NVME_STATUS_COMMAND_SEQUENCE_ERROR","features":[146]},{"name":"NVME_STATUS_COMMAND_SPECIFIC_CODES","features":[146]},{"name":"NVME_STATUS_COMPLETION_QUEUE_INVALID","features":[146]},{"name":"NVME_STATUS_CONTROLLER_LIST_INVALID","features":[146]},{"name":"NVME_STATUS_DATA_SGL_LENGTH_INVALID","features":[146]},{"name":"NVME_STATUS_DATA_TRANSFER_ERROR","features":[146]},{"name":"NVME_STATUS_DEVICE_SELF_TEST_IN_PROGRESS","features":[146]},{"name":"NVME_STATUS_DIRECTIVE_ID_INVALID","features":[146]},{"name":"NVME_STATUS_DIRECTIVE_TYPE_INVALID","features":[146]},{"name":"NVME_STATUS_FEATURE_ID_NOT_SAVEABLE","features":[146]},{"name":"NVME_STATUS_FEATURE_NOT_CHANGEABLE","features":[146]},{"name":"NVME_STATUS_FEATURE_NOT_NAMESPACE_SPECIFIC","features":[146]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_PROHIBITED","features":[146]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_CONVENTIONAL_RESET","features":[146]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_MAX_TIME_VIOLATION","features":[146]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_NVM_SUBSYSTEM_RESET","features":[146]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_RESET","features":[146]},{"name":"NVME_STATUS_FORMAT_IN_PROGRESS","features":[146]},{"name":"NVME_STATUS_GENERIC_COMMAND_CODES","features":[146]},{"name":"NVME_STATUS_HOST_IDENTIFIER_INCONSISTENT_FORMAT","features":[146]},{"name":"NVME_STATUS_INTERNAL_DEVICE_ERROR","features":[146]},{"name":"NVME_STATUS_INVALID_ANA_GROUP_IDENTIFIER","features":[146]},{"name":"NVME_STATUS_INVALID_COMMAND_OPCODE","features":[146]},{"name":"NVME_STATUS_INVALID_CONTROLLER_IDENTIFIER","features":[146]},{"name":"NVME_STATUS_INVALID_FIELD_IN_COMMAND","features":[146]},{"name":"NVME_STATUS_INVALID_FIRMWARE_IMAGE","features":[146]},{"name":"NVME_STATUS_INVALID_FIRMWARE_SLOT","features":[146]},{"name":"NVME_STATUS_INVALID_FORMAT","features":[146]},{"name":"NVME_STATUS_INVALID_INTERRUPT_VECTOR","features":[146]},{"name":"NVME_STATUS_INVALID_LOG_PAGE","features":[146]},{"name":"NVME_STATUS_INVALID_NAMESPACE_OR_FORMAT","features":[146]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_CONTROLLER_RESOURCES","features":[146]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_SGL_DESCR","features":[146]},{"name":"NVME_STATUS_INVALID_QUEUE_DELETION","features":[146]},{"name":"NVME_STATUS_INVALID_QUEUE_IDENTIFIER","features":[146]},{"name":"NVME_STATUS_INVALID_RESOURCE_IDENTIFIER","features":[146]},{"name":"NVME_STATUS_INVALID_SECONDARY_CONTROLLER_STATE","features":[146]},{"name":"NVME_STATUS_INVALID_SGL_LAST_SEGMENT_DESCR","features":[146]},{"name":"NVME_STATUS_INVALID_USE_OF_CONTROLLER_MEMORY_BUFFER","features":[146]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_EXPIRED","features":[146]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_INVALID","features":[146]},{"name":"NVME_STATUS_MAX_QUEUE_SIZE_EXCEEDED","features":[146]},{"name":"NVME_STATUS_MEDIA_ERROR_CODES","features":[146]},{"name":"NVME_STATUS_METADATA_SGL_LENGTH_INVALID","features":[146]},{"name":"NVME_STATUS_NAMESPACE_ALREADY_ATTACHED","features":[146]},{"name":"NVME_STATUS_NAMESPACE_IDENTIFIER_UNAVAILABLE","features":[146]},{"name":"NVME_STATUS_NAMESPACE_INSUFFICIENT_CAPACITY","features":[146]},{"name":"NVME_STATUS_NAMESPACE_IS_PRIVATE","features":[146]},{"name":"NVME_STATUS_NAMESPACE_NOT_ATTACHED","features":[146]},{"name":"NVME_STATUS_NAMESPACE_THIN_PROVISIONING_NOT_SUPPORTED","features":[146]},{"name":"NVME_STATUS_NVM_ACCESS_DENIED","features":[146]},{"name":"NVME_STATUS_NVM_ATTEMPTED_WRITE_TO_READ_ONLY_RANGE","features":[146]},{"name":"NVME_STATUS_NVM_CAPACITY_EXCEEDED","features":[146]},{"name":"NVME_STATUS_NVM_COMMAND_SIZE_LIMIT_EXCEEDED","features":[146]},{"name":"NVME_STATUS_NVM_COMPARE_FAILURE","features":[146]},{"name":"NVME_STATUS_NVM_CONFLICTING_ATTRIBUTES","features":[146]},{"name":"NVME_STATUS_NVM_DEALLOCATED_OR_UNWRITTEN_LOGICAL_BLOCK","features":[146]},{"name":"NVME_STATUS_NVM_END_TO_END_APPLICATION_TAG_CHECK_ERROR","features":[146]},{"name":"NVME_STATUS_NVM_END_TO_END_GUARD_CHECK_ERROR","features":[146]},{"name":"NVME_STATUS_NVM_END_TO_END_REFERENCE_TAG_CHECK_ERROR","features":[146]},{"name":"NVME_STATUS_NVM_INVALID_PROTECTION_INFORMATION","features":[146]},{"name":"NVME_STATUS_NVM_LBA_OUT_OF_RANGE","features":[146]},{"name":"NVME_STATUS_NVM_NAMESPACE_NOT_READY","features":[146]},{"name":"NVME_STATUS_NVM_RESERVATION_CONFLICT","features":[146]},{"name":"NVME_STATUS_NVM_UNRECOVERED_READ_ERROR","features":[146]},{"name":"NVME_STATUS_NVM_WRITE_FAULT","features":[146]},{"name":"NVME_STATUS_OPERATION_DENIED","features":[146]},{"name":"NVME_STATUS_OVERLAPPING_RANGE","features":[146]},{"name":"NVME_STATUS_PRP_OFFSET_INVALID","features":[146]},{"name":"NVME_STATUS_RESERVED","features":[146]},{"name":"NVME_STATUS_SANITIZE_FAILED","features":[146]},{"name":"NVME_STATUS_SANITIZE_IN_PROGRESS","features":[146]},{"name":"NVME_STATUS_SANITIZE_PROHIBITED_ON_PERSISTENT_MEMORY","features":[146]},{"name":"NVME_STATUS_SGL_DATA_BLOCK_GRANULARITY_INVALID","features":[146]},{"name":"NVME_STATUS_SGL_DESCR_TYPE_INVALID","features":[146]},{"name":"NVME_STATUS_SGL_OFFSET_INVALID","features":[146]},{"name":"NVME_STATUS_STREAM_RESOURCE_ALLOCATION_FAILED","features":[146]},{"name":"NVME_STATUS_SUCCESS_COMPLETION","features":[146]},{"name":"NVME_STATUS_TYPES","features":[146]},{"name":"NVME_STATUS_TYPE_COMMAND_SPECIFIC","features":[146]},{"name":"NVME_STATUS_TYPE_GENERIC_COMMAND","features":[146]},{"name":"NVME_STATUS_TYPE_MEDIA_ERROR","features":[146]},{"name":"NVME_STATUS_TYPE_VENDOR_SPECIFIC","features":[146]},{"name":"NVME_STATUS_ZONE_BOUNDARY_ERROR","features":[146]},{"name":"NVME_STATUS_ZONE_FULL","features":[146]},{"name":"NVME_STATUS_ZONE_INVALID_FORMAT","features":[146]},{"name":"NVME_STATUS_ZONE_INVALID_STATE_TRANSITION","features":[146]},{"name":"NVME_STATUS_ZONE_INVALID_WRITE","features":[146]},{"name":"NVME_STATUS_ZONE_OFFLINE","features":[146]},{"name":"NVME_STATUS_ZONE_READ_ONLY","features":[146]},{"name":"NVME_STATUS_ZONE_TOO_MANY_ACTIVE","features":[146]},{"name":"NVME_STATUS_ZONE_TOO_MANY_OPEN","features":[146]},{"name":"NVME_STREAMS_GET_STATUS_MAX_IDS","features":[146]},{"name":"NVME_STREAMS_ID_MAX","features":[146]},{"name":"NVME_STREAMS_ID_MIN","features":[146]},{"name":"NVME_SUBMISSION_QUEUE_TAIL_DOORBELL","features":[146]},{"name":"NVME_TELEMETRY_CONTROLLER_INITIATED_LOG","features":[146]},{"name":"NVME_TELEMETRY_DATA_BLOCK_SIZE","features":[146]},{"name":"NVME_TELEMETRY_HOST_INITIATED_LOG","features":[146]},{"name":"NVME_TEMPERATURE_OVER_THRESHOLD","features":[146]},{"name":"NVME_TEMPERATURE_THRESHOLD_TYPES","features":[146]},{"name":"NVME_TEMPERATURE_UNDER_THRESHOLD","features":[146]},{"name":"NVME_VENDOR_LOG_PAGES","features":[146]},{"name":"NVME_VERSION","features":[146]},{"name":"NVME_WCS_DEVICE_CAPABILITIES","features":[146]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG","features":[146]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG_VERSION_1","features":[146]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION1","features":[146]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION2","features":[146]},{"name":"NVME_WCS_DEVICE_RESET_ACTION","features":[146]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG","features":[146]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_V2","features":[146]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_VERSION_2","features":[146]},{"name":"NVME_ZONE_DESCRIPTOR","features":[146]},{"name":"NVME_ZONE_DESCRIPTOR_EXTENSION","features":[146]},{"name":"NVME_ZONE_EXTENDED_REPORT_ZONE_DESC","features":[146]},{"name":"NVME_ZONE_RECEIVE_ACTION","features":[146]},{"name":"NVME_ZONE_RECEIVE_ACTION_SPECIFIC","features":[146]},{"name":"NVME_ZONE_RECEIVE_EXTENDED_REPORT_ZONES","features":[146]},{"name":"NVME_ZONE_RECEIVE_REPORT_ZONES","features":[146]},{"name":"NVME_ZONE_SEND_ACTION","features":[146]},{"name":"NVME_ZONE_SEND_CLOSE","features":[146]},{"name":"NVME_ZONE_SEND_FINISH","features":[146]},{"name":"NVME_ZONE_SEND_OFFLINE","features":[146]},{"name":"NVME_ZONE_SEND_OPEN","features":[146]},{"name":"NVME_ZONE_SEND_RESET","features":[146]},{"name":"NVME_ZONE_SEND_SET_ZONE_DESCRIPTOR","features":[146]},{"name":"NVME_ZRA_ALL_ZONES","features":[146]},{"name":"NVME_ZRA_CLOSED_STATE_ZONES","features":[146]},{"name":"NVME_ZRA_EMPTY_STATE_ZONES","features":[146]},{"name":"NVME_ZRA_EO_STATE_ZONES","features":[146]},{"name":"NVME_ZRA_FULL_STATE_ZONES","features":[146]},{"name":"NVME_ZRA_IO_STATE_ZONES","features":[146]},{"name":"NVME_ZRA_OFFLINE_STATE_ZONES","features":[146]},{"name":"NVME_ZRA_RO_STATE_ZONES","features":[146]},{"name":"NVM_RESERVATION_CAPABILITIES","features":[146]},{"name":"NVM_SET_LIST","features":[146]},{"name":"NVMeDeviceRecovery1Max","features":[146]},{"name":"NVMeDeviceRecovery2Max","features":[146]},{"name":"NVMeDeviceRecoveryControllerReset","features":[146]},{"name":"NVMeDeviceRecoveryDeviceReplacement","features":[146]},{"name":"NVMeDeviceRecoveryFormatNVM","features":[146]},{"name":"NVMeDeviceRecoveryNoAction","features":[146]},{"name":"NVMeDeviceRecoveryPERST","features":[146]},{"name":"NVMeDeviceRecoveryPcieFunctionReset","features":[146]},{"name":"NVMeDeviceRecoveryPcieHotReset","features":[146]},{"name":"NVMeDeviceRecoveryPowerCycle","features":[146]},{"name":"NVMeDeviceRecoverySanitize","features":[146]},{"name":"NVMeDeviceRecoverySubsystemReset","features":[146]},{"name":"NVMeDeviceRecoveryVendorAnalysis","features":[146]},{"name":"NVMeDeviceRecoveryVendorSpecificCommand","features":[146]},{"name":"TCG_ACTIVATE_METHOD_SPECIFIC","features":[146]},{"name":"TCG_ASSIGN_METHOD_SPECIFIC","features":[146]},{"name":"TCG_AUTH_METHOD_SPECIFIC","features":[146]},{"name":"TCG_BLOCKSID_METHOD_SPECIFIC","features":[146]},{"name":"TCG_HISTORY_ENTRY","features":[146]},{"name":"TCG_HISTORY_ENTRY_VERSION_1","features":[146]},{"name":"TCG_REACTIVATE_METHOD_SPECIFIC","features":[146]},{"name":"UNSUPPORTED_REQUIREMENT","features":[146]},{"name":"ZONE_STATE","features":[146]}],"517":[{"name":"IEnumOfflineFilesItems","features":[147]},{"name":"IEnumOfflineFilesSettings","features":[147]},{"name":"IOfflineFilesCache","features":[147]},{"name":"IOfflineFilesCache2","features":[147]},{"name":"IOfflineFilesChangeInfo","features":[147]},{"name":"IOfflineFilesConnectionInfo","features":[147]},{"name":"IOfflineFilesDirectoryItem","features":[147]},{"name":"IOfflineFilesDirtyInfo","features":[147]},{"name":"IOfflineFilesErrorInfo","features":[147]},{"name":"IOfflineFilesEvents","features":[147]},{"name":"IOfflineFilesEvents2","features":[147]},{"name":"IOfflineFilesEvents3","features":[147]},{"name":"IOfflineFilesEvents4","features":[147]},{"name":"IOfflineFilesEventsFilter","features":[147]},{"name":"IOfflineFilesFileItem","features":[147]},{"name":"IOfflineFilesFileSysInfo","features":[147]},{"name":"IOfflineFilesGhostInfo","features":[147]},{"name":"IOfflineFilesItem","features":[147]},{"name":"IOfflineFilesItemContainer","features":[147]},{"name":"IOfflineFilesItemFilter","features":[147]},{"name":"IOfflineFilesPinInfo","features":[147]},{"name":"IOfflineFilesPinInfo2","features":[147]},{"name":"IOfflineFilesProgress","features":[147]},{"name":"IOfflineFilesServerItem","features":[147]},{"name":"IOfflineFilesSetting","features":[147]},{"name":"IOfflineFilesShareInfo","features":[147]},{"name":"IOfflineFilesShareItem","features":[147]},{"name":"IOfflineFilesSimpleProgress","features":[147]},{"name":"IOfflineFilesSuspend","features":[147]},{"name":"IOfflineFilesSuspendInfo","features":[147]},{"name":"IOfflineFilesSyncConflictHandler","features":[147]},{"name":"IOfflineFilesSyncErrorInfo","features":[147]},{"name":"IOfflineFilesSyncErrorItemInfo","features":[147]},{"name":"IOfflineFilesSyncProgress","features":[147]},{"name":"IOfflineFilesTransparentCacheInfo","features":[147]},{"name":"OFFLINEFILES_CACHING_MODE","features":[147]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_DOC","features":[147]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_PROGANDDOC","features":[147]},{"name":"OFFLINEFILES_CACHING_MODE_MANUAL","features":[147]},{"name":"OFFLINEFILES_CACHING_MODE_NOCACHING","features":[147]},{"name":"OFFLINEFILES_CACHING_MODE_NONE","features":[147]},{"name":"OFFLINEFILES_CHANGES_LOCAL_ATTRIBUTES","features":[147]},{"name":"OFFLINEFILES_CHANGES_LOCAL_SIZE","features":[147]},{"name":"OFFLINEFILES_CHANGES_LOCAL_TIME","features":[147]},{"name":"OFFLINEFILES_CHANGES_NONE","features":[147]},{"name":"OFFLINEFILES_CHANGES_REMOTE_ATTRIBUTES","features":[147]},{"name":"OFFLINEFILES_CHANGES_REMOTE_SIZE","features":[147]},{"name":"OFFLINEFILES_CHANGES_REMOTE_TIME","features":[147]},{"name":"OFFLINEFILES_COMPARE","features":[147]},{"name":"OFFLINEFILES_COMPARE_EQ","features":[147]},{"name":"OFFLINEFILES_COMPARE_GT","features":[147]},{"name":"OFFLINEFILES_COMPARE_GTE","features":[147]},{"name":"OFFLINEFILES_COMPARE_LT","features":[147]},{"name":"OFFLINEFILES_COMPARE_LTE","features":[147]},{"name":"OFFLINEFILES_COMPARE_NEQ","features":[147]},{"name":"OFFLINEFILES_CONNECT_STATE","features":[147]},{"name":"OFFLINEFILES_CONNECT_STATE_OFFLINE","features":[147]},{"name":"OFFLINEFILES_CONNECT_STATE_ONLINE","features":[147]},{"name":"OFFLINEFILES_CONNECT_STATE_PARTLY_TRANSPARENTLY_CACHED","features":[147]},{"name":"OFFLINEFILES_CONNECT_STATE_TRANSPARENTLY_CACHED","features":[147]},{"name":"OFFLINEFILES_CONNECT_STATE_UNKNOWN","features":[147]},{"name":"OFFLINEFILES_DELETE_FLAG_ADMIN","features":[147]},{"name":"OFFLINEFILES_DELETE_FLAG_DELMODIFIED","features":[147]},{"name":"OFFLINEFILES_DELETE_FLAG_NOAUTOCACHED","features":[147]},{"name":"OFFLINEFILES_DELETE_FLAG_NOPINNED","features":[147]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_ASYNCPROGRESS","features":[147]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_BACKGROUND","features":[147]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_CONSOLE","features":[147]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_INTERACTIVE","features":[147]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_LOWPRIORITY","features":[147]},{"name":"OFFLINEFILES_ENUM_FLAT","features":[147]},{"name":"OFFLINEFILES_ENUM_FLAT_FILESONLY","features":[147]},{"name":"OFFLINEFILES_EVENTS","features":[147]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCBEGIN","features":[147]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCEND","features":[147]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTBEGIN","features":[147]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTEND","features":[147]},{"name":"OFFLINEFILES_EVENT_CACHEISCORRUPTED","features":[147]},{"name":"OFFLINEFILES_EVENT_CACHEISFULL","features":[147]},{"name":"OFFLINEFILES_EVENT_CACHEMOVED","features":[147]},{"name":"OFFLINEFILES_EVENT_DATALOST","features":[147]},{"name":"OFFLINEFILES_EVENT_ENABLED","features":[147]},{"name":"OFFLINEFILES_EVENT_ENCRYPTIONCHANGED","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMADDEDTOCACHE","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMAVAILABLEOFFLINE","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMDELETEDFROMCACHE","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMDISCONNECTED","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMMODIFIED","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMNOTAVAILABLEOFFLINE","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMNOTPINNED","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMPINNED","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTBEGIN","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTED","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTEND","features":[147]},{"name":"OFFLINEFILES_EVENT_ITEMRENAMED","features":[147]},{"name":"OFFLINEFILES_EVENT_NETTRANSPORTARRIVED","features":[147]},{"name":"OFFLINEFILES_EVENT_NONETTRANSPORTS","features":[147]},{"name":"OFFLINEFILES_EVENT_PING","features":[147]},{"name":"OFFLINEFILES_EVENT_POLICYCHANGEDETECTED","features":[147]},{"name":"OFFLINEFILES_EVENT_PREFERENCECHANGEDETECTED","features":[147]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEBEGIN","features":[147]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEEND","features":[147]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEBEGIN","features":[147]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEEND","features":[147]},{"name":"OFFLINEFILES_EVENT_SETTINGSCHANGESAPPLIED","features":[147]},{"name":"OFFLINEFILES_EVENT_SYNCBEGIN","features":[147]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECADDED","features":[147]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECREMOVED","features":[147]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECUPDATED","features":[147]},{"name":"OFFLINEFILES_EVENT_SYNCEND","features":[147]},{"name":"OFFLINEFILES_EVENT_SYNCFILERESULT","features":[147]},{"name":"OFFLINEFILES_EVENT_TRANSPARENTCACHEITEMNOTIFY","features":[147]},{"name":"OFFLINEFILES_ITEM_COPY","features":[147]},{"name":"OFFLINEFILES_ITEM_COPY_LOCAL","features":[147]},{"name":"OFFLINEFILES_ITEM_COPY_ORIGINAL","features":[147]},{"name":"OFFLINEFILES_ITEM_COPY_REMOTE","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_CREATED","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DELETED","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRECTORY","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRTY","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_FILE","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GHOST","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_ANYACCESS","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_READ","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_WRITE","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_ATTRIBUTES","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_DATA","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OFFLINE","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_ONLINE","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_ANYACCESS","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_READ","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_WRITE","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_COMPUTER","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_OTHERS","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_USER","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SPARSE","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SUSPENDED","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_ANYACCESS","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_READ","features":[147]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_WRITE","features":[147]},{"name":"OFFLINEFILES_ITEM_QUERY_ADMIN","features":[147]},{"name":"OFFLINEFILES_ITEM_QUERY_ATTEMPT_TRANSITIONONLINE","features":[147]},{"name":"OFFLINEFILES_ITEM_QUERY_CONNECTIONSTATE","features":[147]},{"name":"OFFLINEFILES_ITEM_QUERY_INCLUDETRANSPARENTCACHE","features":[147]},{"name":"OFFLINEFILES_ITEM_QUERY_LOCALDIRTYBYTECOUNT","features":[147]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEDIRTYBYTECOUNT","features":[147]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEINFO","features":[147]},{"name":"OFFLINEFILES_ITEM_TIME","features":[147]},{"name":"OFFLINEFILES_ITEM_TIME_CREATION","features":[147]},{"name":"OFFLINEFILES_ITEM_TIME_LASTACCESS","features":[147]},{"name":"OFFLINEFILES_ITEM_TIME_LASTWRITE","features":[147]},{"name":"OFFLINEFILES_ITEM_TYPE","features":[147]},{"name":"OFFLINEFILES_ITEM_TYPE_DIRECTORY","features":[147]},{"name":"OFFLINEFILES_ITEM_TYPE_FILE","features":[147]},{"name":"OFFLINEFILES_ITEM_TYPE_SERVER","features":[147]},{"name":"OFFLINEFILES_ITEM_TYPE_SHARE","features":[147]},{"name":"OFFLINEFILES_NUM_EVENTS","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_ERROR","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_FORCED","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_SLOW","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_SUSPENDED","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_VERSION_CONFLICT","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON_NOT_APPLICABLE","features":[147]},{"name":"OFFLINEFILES_OFFLINE_REASON_UNKNOWN","features":[147]},{"name":"OFFLINEFILES_OP_ABORT","features":[147]},{"name":"OFFLINEFILES_OP_CONTINUE","features":[147]},{"name":"OFFLINEFILES_OP_RESPONSE","features":[147]},{"name":"OFFLINEFILES_OP_RETRY","features":[147]},{"name":"OFFLINEFILES_PATHFILTER_CHILD","features":[147]},{"name":"OFFLINEFILES_PATHFILTER_DESCENDENT","features":[147]},{"name":"OFFLINEFILES_PATHFILTER_MATCH","features":[147]},{"name":"OFFLINEFILES_PATHFILTER_SELF","features":[147]},{"name":"OFFLINEFILES_PATHFILTER_SELFORCHILD","features":[147]},{"name":"OFFLINEFILES_PATHFILTER_SELFORDESCENDENT","features":[147]},{"name":"OFFLINEFILES_PINLINKTARGETS_ALWAYS","features":[147]},{"name":"OFFLINEFILES_PINLINKTARGETS_EXPLICIT","features":[147]},{"name":"OFFLINEFILES_PINLINKTARGETS_NEVER","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_ASYNCPROGRESS","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_BACKGROUND","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_CONSOLE","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FILL","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORALL","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORREDIR","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER_POLICY","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_INTERACTIVE","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_LOWPRIORITY","features":[147]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_PINLINKTARGETS","features":[147]},{"name":"OFFLINEFILES_SETTING_PinLinkTargets","features":[147]},{"name":"OFFLINEFILES_SETTING_SCOPE_COMPUTER","features":[147]},{"name":"OFFLINEFILES_SETTING_SCOPE_USER","features":[147]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_BSTR","features":[147]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_UI4","features":[147]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR","features":[147]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR_DBLNULTERM","features":[147]},{"name":"OFFLINEFILES_SETTING_VALUE_TYPE","features":[147]},{"name":"OFFLINEFILES_SETTING_VALUE_UI4","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_ABORT","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPALLCHANGES","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLATEST","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLOCAL","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPREMOTE","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_LOG","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NONE","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NUMCODES","features":[147]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_SKIP","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_DEFAULT","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLATEST","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLOCAL","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPREMOTE","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_MASK","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_ASYNCPROGRESS","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_BACKGROUND","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_CONSOLE","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_FILLSPARSE","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_INTERACTIVE","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_LOWPRIORITY","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_NONEWFILESOUT","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORALL","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORREDIR","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER_POLICY","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINLINKTARGETS","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINNEWFILES","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SKIPSUSPENDEDDIRS","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCIN","features":[147]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCOUT","features":[147]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_ATTRIBUTES","features":[147]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_CHANGETIME","features":[147]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_FILESIZE","features":[147]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_NONE","features":[147]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_WRITETIME","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_CLIENT","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_SERVER","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_CLIENT_COPY","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_SERVER_COPY","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_PIN","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_PREPARE","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_CLIENT","features":[147]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_SERVER","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_ChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_DeletedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DeletedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_NoServerCopy","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirDeletedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_NoServerCopy","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnClient","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_DirSparseOnClient","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_ChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DeletedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DeletedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_NoServerCopy","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileDeletedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_NoServerCopy","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnClient","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_ChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DeletedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_LOCAL_KNOWN","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_NUMSTATES","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileChangedOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileOnServer","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_REMOTE_KNOWN","features":[147]},{"name":"OFFLINEFILES_SYNC_STATE_Stable","features":[147]},{"name":"OFFLINEFILES_TRANSITION_FLAG_CONSOLE","features":[147]},{"name":"OFFLINEFILES_TRANSITION_FLAG_INTERACTIVE","features":[147]},{"name":"OfflineFilesCache","features":[147]},{"name":"OfflineFilesEnable","features":[1,147]},{"name":"OfflineFilesQueryStatus","features":[1,147]},{"name":"OfflineFilesQueryStatusEx","features":[1,147]},{"name":"OfflineFilesSetting","features":[147]},{"name":"OfflineFilesStart","features":[147]}],"518":[{"name":"OPERATION_END_DISCARD","features":[148]},{"name":"OPERATION_END_PARAMETERS","features":[148]},{"name":"OPERATION_END_PARAMETERS_FLAGS","features":[148]},{"name":"OPERATION_START_FLAGS","features":[148]},{"name":"OPERATION_START_PARAMETERS","features":[148]},{"name":"OPERATION_START_TRACE_CURRENT_THREAD","features":[148]},{"name":"OperationEnd","features":[1,148]},{"name":"OperationStart","features":[1,148]}],"519":[{"name":"APPLICATION_USER_MODEL_ID_MAX_LENGTH","features":[129]},{"name":"APPLICATION_USER_MODEL_ID_MIN_LENGTH","features":[129]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE","features":[129]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[129]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_FIRST","features":[129]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_LAST","features":[129]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_MANIFEST","features":[129]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[129]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE","features":[129]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_APPLICATION","features":[129]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_RESOURCE","features":[129]},{"name":"APPX_CAPABILITIES","features":[129]},{"name":"APPX_CAPABILITY_APPOINTMENTS","features":[129]},{"name":"APPX_CAPABILITY_CLASS_ALL","features":[129]},{"name":"APPX_CAPABILITY_CLASS_CUSTOM","features":[129]},{"name":"APPX_CAPABILITY_CLASS_DEFAULT","features":[129]},{"name":"APPX_CAPABILITY_CLASS_GENERAL","features":[129]},{"name":"APPX_CAPABILITY_CLASS_RESTRICTED","features":[129]},{"name":"APPX_CAPABILITY_CLASS_TYPE","features":[129]},{"name":"APPX_CAPABILITY_CLASS_WINDOWS","features":[129]},{"name":"APPX_CAPABILITY_CONTACTS","features":[129]},{"name":"APPX_CAPABILITY_DOCUMENTS_LIBRARY","features":[129]},{"name":"APPX_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[129]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT","features":[129]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT_SERVER","features":[129]},{"name":"APPX_CAPABILITY_MUSIC_LIBRARY","features":[129]},{"name":"APPX_CAPABILITY_PICTURES_LIBRARY","features":[129]},{"name":"APPX_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[129]},{"name":"APPX_CAPABILITY_REMOVABLE_STORAGE","features":[129]},{"name":"APPX_CAPABILITY_SHARED_USER_CERTIFICATES","features":[129]},{"name":"APPX_CAPABILITY_VIDEOS_LIBRARY","features":[129]},{"name":"APPX_COMPRESSION_OPTION","features":[129]},{"name":"APPX_COMPRESSION_OPTION_FAST","features":[129]},{"name":"APPX_COMPRESSION_OPTION_MAXIMUM","features":[129]},{"name":"APPX_COMPRESSION_OPTION_NONE","features":[129]},{"name":"APPX_COMPRESSION_OPTION_NORMAL","features":[129]},{"name":"APPX_COMPRESSION_OPTION_SUPERFAST","features":[129]},{"name":"APPX_ENCRYPTED_EXEMPTIONS","features":[129]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTIONS","features":[129]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_DIFFUSION","features":[129]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_NONE","features":[129]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_PAGE_HASHING","features":[129]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS","features":[1,129]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS2","features":[129]},{"name":"APPX_FOOTPRINT_FILE_TYPE","features":[129]},{"name":"APPX_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[129]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CODEINTEGRITY","features":[129]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CONTENTGROUPMAP","features":[129]},{"name":"APPX_FOOTPRINT_FILE_TYPE_MANIFEST","features":[129]},{"name":"APPX_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[129]},{"name":"APPX_KEY_INFO","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM64","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2_NEUTRAL","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2_UNKNOWN","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X64","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86_ON_ARM64","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM64","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE_NEUTRAL","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE_X64","features":[129]},{"name":"APPX_PACKAGE_ARCHITECTURE_X86","features":[129]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTIONS","features":[129]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_LOCALIZED","features":[129]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_NONE","features":[129]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_SKIP_VALIDATION","features":[129]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION","features":[129]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION_APPEND_DELTA","features":[129]},{"name":"APPX_PACKAGE_SETTINGS","features":[1,129]},{"name":"APPX_PACKAGE_WRITER_PAYLOAD_STREAM","features":[129]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE","features":[129]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_CHANGE","features":[129]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_DETAILS","features":[129]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_END","features":[129]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_START","features":[129]},{"name":"ActivatePackageVirtualizationContext","features":[129]},{"name":"AddPackageDependency","features":[129]},{"name":"AddPackageDependencyOptions","features":[129]},{"name":"AddPackageDependencyOptions_None","features":[129]},{"name":"AddPackageDependencyOptions_PrependIfRankCollision","features":[129]},{"name":"AppPolicyClrCompat","features":[129]},{"name":"AppPolicyClrCompat_ClassicDesktop","features":[129]},{"name":"AppPolicyClrCompat_Other","features":[129]},{"name":"AppPolicyClrCompat_PackagedDesktop","features":[129]},{"name":"AppPolicyClrCompat_Universal","features":[129]},{"name":"AppPolicyCreateFileAccess","features":[129]},{"name":"AppPolicyCreateFileAccess_Full","features":[129]},{"name":"AppPolicyCreateFileAccess_Limited","features":[129]},{"name":"AppPolicyGetClrCompat","features":[1,129]},{"name":"AppPolicyGetCreateFileAccess","features":[1,129]},{"name":"AppPolicyGetLifecycleManagement","features":[1,129]},{"name":"AppPolicyGetMediaFoundationCodecLoading","features":[1,129]},{"name":"AppPolicyGetProcessTerminationMethod","features":[1,129]},{"name":"AppPolicyGetShowDeveloperDiagnostic","features":[1,129]},{"name":"AppPolicyGetThreadInitializationType","features":[1,129]},{"name":"AppPolicyGetWindowingModel","features":[1,129]},{"name":"AppPolicyLifecycleManagement","features":[129]},{"name":"AppPolicyLifecycleManagement_Managed","features":[129]},{"name":"AppPolicyLifecycleManagement_Unmanaged","features":[129]},{"name":"AppPolicyMediaFoundationCodecLoading","features":[129]},{"name":"AppPolicyMediaFoundationCodecLoading_All","features":[129]},{"name":"AppPolicyMediaFoundationCodecLoading_InboxOnly","features":[129]},{"name":"AppPolicyProcessTerminationMethod","features":[129]},{"name":"AppPolicyProcessTerminationMethod_ExitProcess","features":[129]},{"name":"AppPolicyProcessTerminationMethod_TerminateProcess","features":[129]},{"name":"AppPolicyShowDeveloperDiagnostic","features":[129]},{"name":"AppPolicyShowDeveloperDiagnostic_None","features":[129]},{"name":"AppPolicyShowDeveloperDiagnostic_ShowUI","features":[129]},{"name":"AppPolicyThreadInitializationType","features":[129]},{"name":"AppPolicyThreadInitializationType_InitializeWinRT","features":[129]},{"name":"AppPolicyThreadInitializationType_None","features":[129]},{"name":"AppPolicyWindowingModel","features":[129]},{"name":"AppPolicyWindowingModel_ClassicDesktop","features":[129]},{"name":"AppPolicyWindowingModel_ClassicPhone","features":[129]},{"name":"AppPolicyWindowingModel_None","features":[129]},{"name":"AppPolicyWindowingModel_Universal","features":[129]},{"name":"AppxBundleFactory","features":[129]},{"name":"AppxEncryptionFactory","features":[129]},{"name":"AppxFactory","features":[129]},{"name":"AppxPackageEditor","features":[129]},{"name":"AppxPackagingDiagnosticEventSinkManager","features":[129]},{"name":"CheckIsMSIXPackage","features":[1,129]},{"name":"ClosePackageInfo","features":[1,129]},{"name":"CreatePackageDependencyOptions","features":[129]},{"name":"CreatePackageDependencyOptions_DoNotVerifyDependencyResolution","features":[129]},{"name":"CreatePackageDependencyOptions_None","features":[129]},{"name":"CreatePackageDependencyOptions_ScopeIsSystem","features":[129]},{"name":"CreatePackageVirtualizationContext","features":[129]},{"name":"DX_FEATURE_LEVEL","features":[129]},{"name":"DX_FEATURE_LEVEL_10","features":[129]},{"name":"DX_FEATURE_LEVEL_11","features":[129]},{"name":"DX_FEATURE_LEVEL_9","features":[129]},{"name":"DX_FEATURE_LEVEL_UNSPECIFIED","features":[129]},{"name":"DeactivatePackageVirtualizationContext","features":[129]},{"name":"DeletePackageDependency","features":[129]},{"name":"DuplicatePackageVirtualizationContext","features":[129]},{"name":"FindPackagesByPackageFamily","features":[1,129]},{"name":"FormatApplicationUserModelId","features":[1,129]},{"name":"GetApplicationUserModelId","features":[1,129]},{"name":"GetApplicationUserModelIdFromToken","features":[1,129]},{"name":"GetCurrentApplicationUserModelId","features":[1,129]},{"name":"GetCurrentPackageFamilyName","features":[1,129]},{"name":"GetCurrentPackageFullName","features":[1,129]},{"name":"GetCurrentPackageId","features":[1,129]},{"name":"GetCurrentPackageInfo","features":[1,129]},{"name":"GetCurrentPackageInfo2","features":[1,129]},{"name":"GetCurrentPackageInfo3","features":[129]},{"name":"GetCurrentPackagePath","features":[1,129]},{"name":"GetCurrentPackagePath2","features":[1,129]},{"name":"GetCurrentPackageVirtualizationContext","features":[129]},{"name":"GetIdForPackageDependencyContext","features":[129]},{"name":"GetPackageApplicationIds","features":[1,129]},{"name":"GetPackageFamilyName","features":[1,129]},{"name":"GetPackageFamilyNameFromToken","features":[1,129]},{"name":"GetPackageFullName","features":[1,129]},{"name":"GetPackageFullNameFromToken","features":[1,129]},{"name":"GetPackageGraphRevisionId","features":[129]},{"name":"GetPackageId","features":[1,129]},{"name":"GetPackageInfo","features":[1,129]},{"name":"GetPackageInfo2","features":[1,129]},{"name":"GetPackagePath","features":[1,129]},{"name":"GetPackagePathByFullName","features":[1,129]},{"name":"GetPackagePathByFullName2","features":[1,129]},{"name":"GetPackagesByPackageFamily","features":[1,129]},{"name":"GetProcessesInVirtualizationContext","features":[1,129]},{"name":"GetResolvedPackageFullNameForPackageDependency","features":[129]},{"name":"GetStagedPackageOrigin","features":[1,129]},{"name":"GetStagedPackagePathByFullName","features":[1,129]},{"name":"GetStagedPackagePathByFullName2","features":[1,129]},{"name":"IAppxAppInstallerReader","features":[129]},{"name":"IAppxBlockMapBlock","features":[129]},{"name":"IAppxBlockMapBlocksEnumerator","features":[129]},{"name":"IAppxBlockMapFile","features":[129]},{"name":"IAppxBlockMapFilesEnumerator","features":[129]},{"name":"IAppxBlockMapReader","features":[129]},{"name":"IAppxBundleFactory","features":[129]},{"name":"IAppxBundleFactory2","features":[129]},{"name":"IAppxBundleManifestOptionalBundleInfo","features":[129]},{"name":"IAppxBundleManifestOptionalBundleInfoEnumerator","features":[129]},{"name":"IAppxBundleManifestPackageInfo","features":[129]},{"name":"IAppxBundleManifestPackageInfo2","features":[129]},{"name":"IAppxBundleManifestPackageInfo3","features":[129]},{"name":"IAppxBundleManifestPackageInfo4","features":[129]},{"name":"IAppxBundleManifestPackageInfoEnumerator","features":[129]},{"name":"IAppxBundleManifestReader","features":[129]},{"name":"IAppxBundleManifestReader2","features":[129]},{"name":"IAppxBundleReader","features":[129]},{"name":"IAppxBundleWriter","features":[129]},{"name":"IAppxBundleWriter2","features":[129]},{"name":"IAppxBundleWriter3","features":[129]},{"name":"IAppxBundleWriter4","features":[129]},{"name":"IAppxContentGroup","features":[129]},{"name":"IAppxContentGroupFilesEnumerator","features":[129]},{"name":"IAppxContentGroupMapReader","features":[129]},{"name":"IAppxContentGroupMapWriter","features":[129]},{"name":"IAppxContentGroupsEnumerator","features":[129]},{"name":"IAppxDigestProvider","features":[129]},{"name":"IAppxEncryptedBundleWriter","features":[129]},{"name":"IAppxEncryptedBundleWriter2","features":[129]},{"name":"IAppxEncryptedBundleWriter3","features":[129]},{"name":"IAppxEncryptedPackageWriter","features":[129]},{"name":"IAppxEncryptedPackageWriter2","features":[129]},{"name":"IAppxEncryptionFactory","features":[129]},{"name":"IAppxEncryptionFactory2","features":[129]},{"name":"IAppxEncryptionFactory3","features":[129]},{"name":"IAppxEncryptionFactory4","features":[129]},{"name":"IAppxEncryptionFactory5","features":[129]},{"name":"IAppxFactory","features":[129]},{"name":"IAppxFactory2","features":[129]},{"name":"IAppxFactory3","features":[129]},{"name":"IAppxFile","features":[129]},{"name":"IAppxFilesEnumerator","features":[129]},{"name":"IAppxManifestApplication","features":[129]},{"name":"IAppxManifestApplicationsEnumerator","features":[129]},{"name":"IAppxManifestCapabilitiesEnumerator","features":[129]},{"name":"IAppxManifestDeviceCapabilitiesEnumerator","features":[129]},{"name":"IAppxManifestDriverConstraint","features":[129]},{"name":"IAppxManifestDriverConstraintsEnumerator","features":[129]},{"name":"IAppxManifestDriverDependenciesEnumerator","features":[129]},{"name":"IAppxManifestDriverDependency","features":[129]},{"name":"IAppxManifestHostRuntimeDependenciesEnumerator","features":[129]},{"name":"IAppxManifestHostRuntimeDependency","features":[129]},{"name":"IAppxManifestHostRuntimeDependency2","features":[129]},{"name":"IAppxManifestMainPackageDependenciesEnumerator","features":[129]},{"name":"IAppxManifestMainPackageDependency","features":[129]},{"name":"IAppxManifestOSPackageDependenciesEnumerator","features":[129]},{"name":"IAppxManifestOSPackageDependency","features":[129]},{"name":"IAppxManifestOptionalPackageInfo","features":[129]},{"name":"IAppxManifestPackageDependenciesEnumerator","features":[129]},{"name":"IAppxManifestPackageDependency","features":[129]},{"name":"IAppxManifestPackageDependency2","features":[129]},{"name":"IAppxManifestPackageDependency3","features":[129]},{"name":"IAppxManifestPackageId","features":[129]},{"name":"IAppxManifestPackageId2","features":[129]},{"name":"IAppxManifestProperties","features":[129]},{"name":"IAppxManifestQualifiedResource","features":[129]},{"name":"IAppxManifestQualifiedResourcesEnumerator","features":[129]},{"name":"IAppxManifestReader","features":[129]},{"name":"IAppxManifestReader2","features":[129]},{"name":"IAppxManifestReader3","features":[129]},{"name":"IAppxManifestReader4","features":[129]},{"name":"IAppxManifestReader5","features":[129]},{"name":"IAppxManifestReader6","features":[129]},{"name":"IAppxManifestReader7","features":[129]},{"name":"IAppxManifestResourcesEnumerator","features":[129]},{"name":"IAppxManifestTargetDeviceFamiliesEnumerator","features":[129]},{"name":"IAppxManifestTargetDeviceFamily","features":[129]},{"name":"IAppxPackageEditor","features":[129]},{"name":"IAppxPackageReader","features":[129]},{"name":"IAppxPackageWriter","features":[129]},{"name":"IAppxPackageWriter2","features":[129]},{"name":"IAppxPackageWriter3","features":[129]},{"name":"IAppxPackagingDiagnosticEventSink","features":[129]},{"name":"IAppxPackagingDiagnosticEventSinkManager","features":[129]},{"name":"IAppxSourceContentGroupMapReader","features":[129]},{"name":"OpenPackageInfoByFullName","features":[1,129]},{"name":"OpenPackageInfoByFullNameForUser","features":[1,129]},{"name":"PACKAGEDEPENDENCY_CONTEXT","features":[129]},{"name":"PACKAGE_APPLICATIONS_MAX_COUNT","features":[129]},{"name":"PACKAGE_APPLICATIONS_MIN_COUNT","features":[129]},{"name":"PACKAGE_ARCHITECTURE_MAX_LENGTH","features":[129]},{"name":"PACKAGE_ARCHITECTURE_MIN_LENGTH","features":[129]},{"name":"PACKAGE_DEPENDENCY_RANK_DEFAULT","features":[129]},{"name":"PACKAGE_FAMILY_MAX_RESOURCE_PACKAGES","features":[129]},{"name":"PACKAGE_FAMILY_MIN_RESOURCE_PACKAGES","features":[129]},{"name":"PACKAGE_FAMILY_NAME_MAX_LENGTH","features":[129]},{"name":"PACKAGE_FAMILY_NAME_MIN_LENGTH","features":[129]},{"name":"PACKAGE_FILTER_ALL_LOADED","features":[129]},{"name":"PACKAGE_FILTER_BUNDLE","features":[129]},{"name":"PACKAGE_FILTER_DIRECT","features":[129]},{"name":"PACKAGE_FILTER_DYNAMIC","features":[129]},{"name":"PACKAGE_FILTER_HEAD","features":[129]},{"name":"PACKAGE_FILTER_HOSTRUNTIME","features":[129]},{"name":"PACKAGE_FILTER_IS_IN_RELATED_SET","features":[129]},{"name":"PACKAGE_FILTER_OPTIONAL","features":[129]},{"name":"PACKAGE_FILTER_RESOURCE","features":[129]},{"name":"PACKAGE_FILTER_STATIC","features":[129]},{"name":"PACKAGE_FULL_NAME_MAX_LENGTH","features":[129]},{"name":"PACKAGE_FULL_NAME_MIN_LENGTH","features":[129]},{"name":"PACKAGE_GRAPH_MAX_SIZE","features":[129]},{"name":"PACKAGE_GRAPH_MIN_SIZE","features":[129]},{"name":"PACKAGE_ID","features":[129]},{"name":"PACKAGE_ID","features":[129]},{"name":"PACKAGE_INFO","features":[129]},{"name":"PACKAGE_INFO","features":[129]},{"name":"PACKAGE_INFORMATION_BASIC","features":[129]},{"name":"PACKAGE_INFORMATION_FULL","features":[129]},{"name":"PACKAGE_MAX_DEPENDENCIES","features":[129]},{"name":"PACKAGE_MIN_DEPENDENCIES","features":[129]},{"name":"PACKAGE_NAME_MAX_LENGTH","features":[129]},{"name":"PACKAGE_NAME_MIN_LENGTH","features":[129]},{"name":"PACKAGE_PROPERTY_BUNDLE","features":[129]},{"name":"PACKAGE_PROPERTY_DEVELOPMENT_MODE","features":[129]},{"name":"PACKAGE_PROPERTY_DYNAMIC","features":[129]},{"name":"PACKAGE_PROPERTY_FRAMEWORK","features":[129]},{"name":"PACKAGE_PROPERTY_HOSTRUNTIME","features":[129]},{"name":"PACKAGE_PROPERTY_IS_IN_RELATED_SET","features":[129]},{"name":"PACKAGE_PROPERTY_OPTIONAL","features":[129]},{"name":"PACKAGE_PROPERTY_RESOURCE","features":[129]},{"name":"PACKAGE_PROPERTY_STATIC","features":[129]},{"name":"PACKAGE_PUBLISHERID_MAX_LENGTH","features":[129]},{"name":"PACKAGE_PUBLISHERID_MIN_LENGTH","features":[129]},{"name":"PACKAGE_PUBLISHER_MAX_LENGTH","features":[129]},{"name":"PACKAGE_PUBLISHER_MIN_LENGTH","features":[129]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MAX_LENGTH","features":[129]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MIN_LENGTH","features":[129]},{"name":"PACKAGE_RESOURCEID_MAX_LENGTH","features":[129]},{"name":"PACKAGE_RESOURCEID_MIN_LENGTH","features":[129]},{"name":"PACKAGE_VERSION","features":[129]},{"name":"PACKAGE_VERSION_MAX_LENGTH","features":[129]},{"name":"PACKAGE_VERSION_MIN_LENGTH","features":[129]},{"name":"PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE","features":[129]},{"name":"PackageDependencyLifetimeKind","features":[129]},{"name":"PackageDependencyLifetimeKind_FilePath","features":[129]},{"name":"PackageDependencyLifetimeKind_Process","features":[129]},{"name":"PackageDependencyLifetimeKind_RegistryKey","features":[129]},{"name":"PackageDependencyProcessorArchitectures","features":[129]},{"name":"PackageDependencyProcessorArchitectures_Arm","features":[129]},{"name":"PackageDependencyProcessorArchitectures_Arm64","features":[129]},{"name":"PackageDependencyProcessorArchitectures_Neutral","features":[129]},{"name":"PackageDependencyProcessorArchitectures_None","features":[129]},{"name":"PackageDependencyProcessorArchitectures_X64","features":[129]},{"name":"PackageDependencyProcessorArchitectures_X86","features":[129]},{"name":"PackageDependencyProcessorArchitectures_X86A64","features":[129]},{"name":"PackageFamilyNameFromFullName","features":[1,129]},{"name":"PackageFamilyNameFromId","features":[1,129]},{"name":"PackageFullNameFromId","features":[1,129]},{"name":"PackageIdFromFullName","features":[1,129]},{"name":"PackageInfo3Type","features":[129]},{"name":"PackageInfo3Type_PackageInfoGeneration","features":[129]},{"name":"PackageNameAndPublisherIdFromFamilyName","features":[1,129]},{"name":"PackageOrigin","features":[129]},{"name":"PackageOrigin_DeveloperSigned","features":[129]},{"name":"PackageOrigin_DeveloperUnsigned","features":[129]},{"name":"PackageOrigin_Inbox","features":[129]},{"name":"PackageOrigin_LineOfBusiness","features":[129]},{"name":"PackageOrigin_Store","features":[129]},{"name":"PackageOrigin_Unknown","features":[129]},{"name":"PackageOrigin_Unsigned","features":[129]},{"name":"PackagePathType","features":[129]},{"name":"PackagePathType_Effective","features":[129]},{"name":"PackagePathType_EffectiveExternal","features":[129]},{"name":"PackagePathType_Install","features":[129]},{"name":"PackagePathType_MachineExternal","features":[129]},{"name":"PackagePathType_Mutable","features":[129]},{"name":"PackagePathType_UserExternal","features":[129]},{"name":"ParseApplicationUserModelId","features":[1,129]},{"name":"ReleasePackageVirtualizationContext","features":[129]},{"name":"RemovePackageDependency","features":[129]},{"name":"TryCreatePackageDependency","features":[1,129]},{"name":"VerifyApplicationUserModelId","features":[1,129]},{"name":"VerifyPackageFamilyName","features":[1,129]},{"name":"VerifyPackageFullName","features":[1,129]},{"name":"VerifyPackageId","features":[1,129]},{"name":"VerifyPackageRelativeApplicationId","features":[1,129]},{"name":"_PACKAGE_INFO_REFERENCE","features":[129]}],"521":[{"name":"PRJ_CALLBACKS","features":[1,149]},{"name":"PRJ_CALLBACK_DATA","features":[149]},{"name":"PRJ_CALLBACK_DATA_FLAGS","features":[149]},{"name":"PRJ_CANCEL_COMMAND_CB","features":[149]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RESTART_SCAN","features":[149]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RETURN_SINGLE_ENTRY","features":[149]},{"name":"PRJ_COMPLETE_COMMAND_EXTENDED_PARAMETERS","features":[149]},{"name":"PRJ_COMPLETE_COMMAND_TYPE","features":[149]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_ENUMERATION","features":[149]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_NOTIFICATION","features":[149]},{"name":"PRJ_DIR_ENTRY_BUFFER_HANDLE","features":[149]},{"name":"PRJ_END_DIRECTORY_ENUMERATION_CB","features":[149]},{"name":"PRJ_EXTENDED_INFO","features":[149]},{"name":"PRJ_EXT_INFO_TYPE","features":[149]},{"name":"PRJ_EXT_INFO_TYPE_SYMLINK","features":[149]},{"name":"PRJ_FILE_BASIC_INFO","features":[1,149]},{"name":"PRJ_FILE_STATE","features":[149]},{"name":"PRJ_FILE_STATE_DIRTY_PLACEHOLDER","features":[149]},{"name":"PRJ_FILE_STATE_FULL","features":[149]},{"name":"PRJ_FILE_STATE_HYDRATED_PLACEHOLDER","features":[149]},{"name":"PRJ_FILE_STATE_PLACEHOLDER","features":[149]},{"name":"PRJ_FILE_STATE_TOMBSTONE","features":[149]},{"name":"PRJ_FLAG_NONE","features":[149]},{"name":"PRJ_FLAG_USE_NEGATIVE_PATH_CACHE","features":[149]},{"name":"PRJ_GET_DIRECTORY_ENUMERATION_CB","features":[149]},{"name":"PRJ_GET_FILE_DATA_CB","features":[149]},{"name":"PRJ_GET_PLACEHOLDER_INFO_CB","features":[149]},{"name":"PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT","features":[149]},{"name":"PRJ_NOTIFICATION","features":[149]},{"name":"PRJ_NOTIFICATION_CB","features":[1,149]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_DELETED","features":[149]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[149]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[149]},{"name":"PRJ_NOTIFICATION_FILE_OPENED","features":[149]},{"name":"PRJ_NOTIFICATION_FILE_OVERWRITTEN","features":[149]},{"name":"PRJ_NOTIFICATION_FILE_PRE_CONVERT_TO_FULL","features":[149]},{"name":"PRJ_NOTIFICATION_FILE_RENAMED","features":[149]},{"name":"PRJ_NOTIFICATION_HARDLINK_CREATED","features":[149]},{"name":"PRJ_NOTIFICATION_MAPPING","features":[149]},{"name":"PRJ_NOTIFICATION_NEW_FILE_CREATED","features":[149]},{"name":"PRJ_NOTIFICATION_PARAMETERS","features":[1,149]},{"name":"PRJ_NOTIFICATION_PRE_DELETE","features":[149]},{"name":"PRJ_NOTIFICATION_PRE_RENAME","features":[149]},{"name":"PRJ_NOTIFICATION_PRE_SET_HARDLINK","features":[149]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_DELETED","features":[149]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[149]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[149]},{"name":"PRJ_NOTIFY_FILE_OPENED","features":[149]},{"name":"PRJ_NOTIFY_FILE_OVERWRITTEN","features":[149]},{"name":"PRJ_NOTIFY_FILE_PRE_CONVERT_TO_FULL","features":[149]},{"name":"PRJ_NOTIFY_FILE_RENAMED","features":[149]},{"name":"PRJ_NOTIFY_HARDLINK_CREATED","features":[149]},{"name":"PRJ_NOTIFY_NEW_FILE_CREATED","features":[149]},{"name":"PRJ_NOTIFY_NONE","features":[149]},{"name":"PRJ_NOTIFY_PRE_DELETE","features":[149]},{"name":"PRJ_NOTIFY_PRE_RENAME","features":[149]},{"name":"PRJ_NOTIFY_PRE_SET_HARDLINK","features":[149]},{"name":"PRJ_NOTIFY_SUPPRESS_NOTIFICATIONS","features":[149]},{"name":"PRJ_NOTIFY_TYPES","features":[149]},{"name":"PRJ_NOTIFY_USE_EXISTING_MASK","features":[149]},{"name":"PRJ_PLACEHOLDER_ID","features":[149]},{"name":"PRJ_PLACEHOLDER_ID_LENGTH","features":[149]},{"name":"PRJ_PLACEHOLDER_INFO","features":[1,149]},{"name":"PRJ_PLACEHOLDER_VERSION_INFO","features":[149]},{"name":"PRJ_QUERY_FILE_NAME_CB","features":[149]},{"name":"PRJ_STARTVIRTUALIZING_FLAGS","features":[149]},{"name":"PRJ_STARTVIRTUALIZING_OPTIONS","features":[149]},{"name":"PRJ_START_DIRECTORY_ENUMERATION_CB","features":[149]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_DATA","features":[149]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_METADATA","features":[149]},{"name":"PRJ_UPDATE_ALLOW_READ_ONLY","features":[149]},{"name":"PRJ_UPDATE_ALLOW_TOMBSTONE","features":[149]},{"name":"PRJ_UPDATE_FAILURE_CAUSES","features":[149]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_DATA","features":[149]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_METADATA","features":[149]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_NONE","features":[149]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_READ_ONLY","features":[149]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_TOMBSTONE","features":[149]},{"name":"PRJ_UPDATE_MAX_VAL","features":[149]},{"name":"PRJ_UPDATE_NONE","features":[149]},{"name":"PRJ_UPDATE_RESERVED1","features":[149]},{"name":"PRJ_UPDATE_RESERVED2","features":[149]},{"name":"PRJ_UPDATE_TYPES","features":[149]},{"name":"PRJ_VIRTUALIZATION_INSTANCE_INFO","features":[149]},{"name":"PrjAllocateAlignedBuffer","features":[149]},{"name":"PrjClearNegativePathCache","features":[149]},{"name":"PrjCompleteCommand","features":[149]},{"name":"PrjDeleteFile","features":[149]},{"name":"PrjDoesNameContainWildCards","features":[1,149]},{"name":"PrjFileNameCompare","features":[149]},{"name":"PrjFileNameMatch","features":[1,149]},{"name":"PrjFillDirEntryBuffer","features":[1,149]},{"name":"PrjFillDirEntryBuffer2","features":[1,149]},{"name":"PrjFreeAlignedBuffer","features":[149]},{"name":"PrjGetOnDiskFileState","features":[149]},{"name":"PrjGetVirtualizationInstanceInfo","features":[149]},{"name":"PrjMarkDirectoryAsPlaceholder","features":[149]},{"name":"PrjStartVirtualizing","features":[1,149]},{"name":"PrjStopVirtualizing","features":[149]},{"name":"PrjUpdateFileIfNeeded","features":[1,149]},{"name":"PrjWriteFileData","features":[149]},{"name":"PrjWritePlaceholderInfo","features":[1,149]},{"name":"PrjWritePlaceholderInfo2","features":[1,149]}],"522":[{"name":"JET_API_PTR","features":[145]},{"name":"JET_HANDLE","features":[145]},{"name":"JET_INSTANCE","features":[145]},{"name":"JET_SESID","features":[145]},{"name":"JET_TABLEID","features":[145]}],"523":[{"name":"APPLY_SNAPSHOT_VHDSET_FLAG","features":[150]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_NONE","features":[150]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[150]},{"name":"APPLY_SNAPSHOT_VHDSET_PARAMETERS","features":[150]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION","features":[150]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_1","features":[150]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_AT_BOOT","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_BYPASS_DEFAULT_ENCRYPTION_POLICY","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NON_PNP","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_DRIVE_LETTER","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_LOCAL_HOST","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_SECURITY_DESCRIPTOR","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_PERMANENT_LIFETIME","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_READ_ONLY","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_REGISTER_VOLUME","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_RESTRICTED_RANGE","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_SINGLE_PARTITION","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_VERSION","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_2","features":[150]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"AddVirtualDiskParent","features":[1,150]},{"name":"ApplySnapshotVhdSet","features":[1,150]},{"name":"AttachVirtualDisk","features":[1,4,150,6]},{"name":"BreakMirrorVirtualDisk","features":[1,150]},{"name":"COMPACT_VIRTUAL_DISK_FLAG","features":[150]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_BLOCK_MOVES","features":[150]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_ZERO_SCAN","features":[150]},{"name":"COMPACT_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"COMPACT_VIRTUAL_DISK_VERSION","features":[150]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_CREATE_BACKING_STORAGE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_DO_NOT_COPY_METADATA_FROM_PARENT","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_FULL_PHYSICAL_ALLOCATION","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PMEM_COMPATIBLE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PRESERVE_PARENT_CHANGE_TRACKING_STATE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PREVENT_WRITES_TO_SOURCE_DISK","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SPARSE_FILE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_USE_CHANGE_TRACKING_SOURCE_LIMIT","features":[150]},{"name":"CREATE_VIRTUAL_DISK_FLAG_VHD_SET_USE_ORIGINAL_BACKING_STORAGE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_BLOCK_SIZE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_SECTOR_SIZE","features":[150]},{"name":"CREATE_VIRTUAL_DISK_VERSION","features":[150]},{"name":"CREATE_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"CREATE_VIRTUAL_DISK_VERSION_2","features":[150]},{"name":"CREATE_VIRTUAL_DISK_VERSION_3","features":[150]},{"name":"CREATE_VIRTUAL_DISK_VERSION_4","features":[150]},{"name":"CREATE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"CompactVirtualDisk","features":[1,150,6]},{"name":"CompleteForkVirtualDisk","features":[1,150]},{"name":"CreateVirtualDisk","features":[1,4,150,6]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG","features":[150]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_NONE","features":[150]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_PERSIST_RCT","features":[150]},{"name":"DELETE_SNAPSHOT_VHDSET_PARAMETERS","features":[150]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION","features":[150]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_1","features":[150]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[150]},{"name":"DEPENDENT_DISK_FLAG","features":[150]},{"name":"DEPENDENT_DISK_FLAG_ALWAYS_ALLOW_SPARSE","features":[150]},{"name":"DEPENDENT_DISK_FLAG_FULLY_ALLOCATED","features":[150]},{"name":"DEPENDENT_DISK_FLAG_MULT_BACKING_FILES","features":[150]},{"name":"DEPENDENT_DISK_FLAG_NONE","features":[150]},{"name":"DEPENDENT_DISK_FLAG_NO_DRIVE_LETTER","features":[150]},{"name":"DEPENDENT_DISK_FLAG_NO_HOST_DISK","features":[150]},{"name":"DEPENDENT_DISK_FLAG_PARENT","features":[150]},{"name":"DEPENDENT_DISK_FLAG_PERMANENT_LIFETIME","features":[150]},{"name":"DEPENDENT_DISK_FLAG_READ_ONLY","features":[150]},{"name":"DEPENDENT_DISK_FLAG_REMOTE","features":[150]},{"name":"DEPENDENT_DISK_FLAG_REMOVABLE","features":[150]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[150]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[150]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME","features":[150]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME_PARENT","features":[150]},{"name":"DETACH_VIRTUAL_DISK_FLAG","features":[150]},{"name":"DETACH_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"DeleteSnapshotVhdSet","features":[1,150]},{"name":"DeleteVirtualDiskMetadata","features":[1,150]},{"name":"DetachVirtualDisk","features":[1,150]},{"name":"EXPAND_VIRTUAL_DISK_FLAG","features":[150]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NOTIFY_CHANGE","features":[150]},{"name":"EXPAND_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"EXPAND_VIRTUAL_DISK_VERSION","features":[150]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"EnumerateVirtualDiskMetadata","features":[1,150]},{"name":"ExpandVirtualDisk","features":[1,150,6]},{"name":"FORK_VIRTUAL_DISK_FLAG","features":[150]},{"name":"FORK_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[150]},{"name":"FORK_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"FORK_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"FORK_VIRTUAL_DISK_VERSION","features":[150]},{"name":"FORK_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"FORK_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"ForkVirtualDisk","features":[1,150,6]},{"name":"GET_STORAGE_DEPENDENCY_FLAG","features":[150]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_DISK_HANDLE","features":[150]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_HOST_VOLUMES","features":[150]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_NONE","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO","features":[1,150]},{"name":"GET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_FRAGMENTATION","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_IS_4K_ALIGNED","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_IS_LOADED","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_IDENTIFIER","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_LOCATION","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_TIMESTAMP","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_PHYSICAL_DISK","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_PROVIDER_SUBTYPE","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_SIZE","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_VERSION","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_VHD_PHYSICAL_SECTOR_SIZE","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[150]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_STORAGE_TYPE","features":[150]},{"name":"GetAllAttachedVirtualDiskPhysicalPaths","features":[1,150]},{"name":"GetStorageDependencyInformation","features":[1,150]},{"name":"GetVirtualDiskInformation","features":[1,150]},{"name":"GetVirtualDiskMetadata","features":[1,150]},{"name":"GetVirtualDiskOperationProgress","features":[1,150,6]},{"name":"GetVirtualDiskPhysicalPath","features":[1,150]},{"name":"MERGE_VIRTUAL_DISK_DEFAULT_MERGE_DEPTH","features":[150]},{"name":"MERGE_VIRTUAL_DISK_FLAG","features":[150]},{"name":"MERGE_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"MERGE_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"MERGE_VIRTUAL_DISK_VERSION","features":[150]},{"name":"MERGE_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"MERGE_VIRTUAL_DISK_VERSION_2","features":[150]},{"name":"MERGE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_FLAG","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_ENABLE_SMB_COMPRESSION","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_IS_LIVE_MIGRATION","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_SKIP_MIRROR_ACTIVATION","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_VERSION","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"MODIFY_VHDSET_DEFAULT_SNAPSHOT_PATH","features":[150]},{"name":"MODIFY_VHDSET_FLAG","features":[150]},{"name":"MODIFY_VHDSET_FLAG_NONE","features":[150]},{"name":"MODIFY_VHDSET_FLAG_WRITEABLE_SNAPSHOT","features":[150]},{"name":"MODIFY_VHDSET_PARAMETERS","features":[150]},{"name":"MODIFY_VHDSET_REMOVE_SNAPSHOT","features":[150]},{"name":"MODIFY_VHDSET_SNAPSHOT_PATH","features":[150]},{"name":"MODIFY_VHDSET_UNSPECIFIED","features":[150]},{"name":"MODIFY_VHDSET_VERSION","features":[150]},{"name":"MergeVirtualDisk","features":[1,150,6]},{"name":"MirrorVirtualDisk","features":[1,150,6]},{"name":"ModifyVhdSet","features":[1,150]},{"name":"OPEN_VIRTUAL_DISK_FLAG","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BLANK_FILE","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BOOT_DRIVE","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CACHED_IO","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CUSTOM_DIFF_CHAIN","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_IGNORE_RELATIVE_PARENT_LOCATOR","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_PARENTS","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_WRITE_HARDENING","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_PARENT_CACHED_IO","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[150]},{"name":"OPEN_VIRTUAL_DISK_FLAG_VHDSET_FILE_ONLY","features":[150]},{"name":"OPEN_VIRTUAL_DISK_PARAMETERS","features":[1,150]},{"name":"OPEN_VIRTUAL_DISK_RW_DEPTH_DEFAULT","features":[150]},{"name":"OPEN_VIRTUAL_DISK_VERSION","features":[150]},{"name":"OPEN_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"OPEN_VIRTUAL_DISK_VERSION_2","features":[150]},{"name":"OPEN_VIRTUAL_DISK_VERSION_3","features":[150]},{"name":"OPEN_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"OpenVirtualDisk","features":[1,150]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG","features":[150]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_RANGE","features":[150]},{"name":"QueryChangesVirtualDisk","features":[1,150]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG","features":[150]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"RAW_SCSI_VIRTUAL_DISK_PARAMETERS","features":[1,150]},{"name":"RAW_SCSI_VIRTUAL_DISK_RESPONSE","features":[150]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION","features":[150]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_FLAG","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_ALLOW_UNSAFE_VIRTUAL_SIZE","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_NONE","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_RESIZE_TO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_PARAMETERS","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_VERSION","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_1","features":[150]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[150]},{"name":"RawSCSIVirtualDisk","features":[1,150]},{"name":"ResizeVirtualDisk","features":[1,150,6]},{"name":"SET_VIRTUAL_DISK_INFO","features":[1,150]},{"name":"SET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_LOCATOR","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH_WITH_DEPTH","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_PHYSICAL_SECTOR_SIZE","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_VERSION","features":[150]},{"name":"SET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[150]},{"name":"STORAGE_DEPENDENCY_INFO","features":[150]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_1","features":[150]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_2","features":[150]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION","features":[150]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_1","features":[150]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_2","features":[150]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_UNSPECIFIED","features":[150]},{"name":"SetVirtualDiskInformation","features":[1,150]},{"name":"SetVirtualDiskMetadata","features":[1,150]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG","features":[150]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_NONE","features":[150]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[150]},{"name":"TAKE_SNAPSHOT_VHDSET_PARAMETERS","features":[150]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION","features":[150]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_1","features":[150]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[150]},{"name":"TakeSnapshotVhdSet","features":[1,150]},{"name":"VIRTUAL_DISK_ACCESS_ALL","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RO","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RW","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_CREATE","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_DETACH","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_GET_INFO","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_MASK","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_METAOPS","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_NONE","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_READ","features":[150]},{"name":"VIRTUAL_DISK_ACCESS_WRITABLE","features":[150]},{"name":"VIRTUAL_DISK_MAXIMUM_CHANGE_TRACKING_ID_LENGTH","features":[150]},{"name":"VIRTUAL_DISK_PROGRESS","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_ISO","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_UNKNOWN","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHD","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDSET","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDX","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_MICROSOFT","features":[150]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_UNKNOWN","features":[150]}],"526":[{"name":"ABORTPROC","features":[1,12,75]},{"name":"AbortDoc","features":[12,75]},{"name":"DC_BINNAMES","features":[75]},{"name":"DC_BINS","features":[75]},{"name":"DC_COLLATE","features":[75]},{"name":"DC_COLORDEVICE","features":[75]},{"name":"DC_COPIES","features":[75]},{"name":"DC_DRIVER","features":[75]},{"name":"DC_DUPLEX","features":[75]},{"name":"DC_ENUMRESOLUTIONS","features":[75]},{"name":"DC_EXTRA","features":[75]},{"name":"DC_FIELDS","features":[75]},{"name":"DC_FILEDEPENDENCIES","features":[75]},{"name":"DC_MAXEXTENT","features":[75]},{"name":"DC_MEDIAREADY","features":[75]},{"name":"DC_MEDIATYPENAMES","features":[75]},{"name":"DC_MEDIATYPES","features":[75]},{"name":"DC_MINEXTENT","features":[75]},{"name":"DC_NUP","features":[75]},{"name":"DC_ORIENTATION","features":[75]},{"name":"DC_PAPERNAMES","features":[75]},{"name":"DC_PAPERS","features":[75]},{"name":"DC_PAPERSIZE","features":[75]},{"name":"DC_PERSONALITY","features":[75]},{"name":"DC_PRINTERMEM","features":[75]},{"name":"DC_PRINTRATE","features":[75]},{"name":"DC_PRINTRATEPPM","features":[75]},{"name":"DC_PRINTRATEUNIT","features":[75]},{"name":"DC_SIZE","features":[75]},{"name":"DC_STAPLE","features":[75]},{"name":"DC_TRUETYPE","features":[75]},{"name":"DC_VERSION","features":[75]},{"name":"DOCINFOA","features":[75]},{"name":"DOCINFOW","features":[75]},{"name":"DRAWPATRECT","features":[1,75]},{"name":"DeviceCapabilitiesA","features":[1,12,75]},{"name":"DeviceCapabilitiesW","features":[1,12,75]},{"name":"EndDoc","features":[12,75]},{"name":"EndPage","features":[12,75]},{"name":"Escape","features":[12,75]},{"name":"ExtEscape","features":[12,75]},{"name":"HPTPROVIDER","features":[75]},{"name":"IXpsDocumentPackageTarget","features":[75]},{"name":"IXpsDocumentPackageTarget3D","features":[75]},{"name":"IXpsOMBrush","features":[75]},{"name":"IXpsOMCanvas","features":[75]},{"name":"IXpsOMColorProfileResource","features":[75]},{"name":"IXpsOMColorProfileResourceCollection","features":[75]},{"name":"IXpsOMCoreProperties","features":[75]},{"name":"IXpsOMDashCollection","features":[75]},{"name":"IXpsOMDictionary","features":[75]},{"name":"IXpsOMDocument","features":[75]},{"name":"IXpsOMDocumentCollection","features":[75]},{"name":"IXpsOMDocumentSequence","features":[75]},{"name":"IXpsOMDocumentStructureResource","features":[75]},{"name":"IXpsOMFontResource","features":[75]},{"name":"IXpsOMFontResourceCollection","features":[75]},{"name":"IXpsOMGeometry","features":[75]},{"name":"IXpsOMGeometryFigure","features":[75]},{"name":"IXpsOMGeometryFigureCollection","features":[75]},{"name":"IXpsOMGlyphs","features":[75]},{"name":"IXpsOMGlyphsEditor","features":[75]},{"name":"IXpsOMGradientBrush","features":[75]},{"name":"IXpsOMGradientStop","features":[75]},{"name":"IXpsOMGradientStopCollection","features":[75]},{"name":"IXpsOMImageBrush","features":[75]},{"name":"IXpsOMImageResource","features":[75]},{"name":"IXpsOMImageResourceCollection","features":[75]},{"name":"IXpsOMLinearGradientBrush","features":[75]},{"name":"IXpsOMMatrixTransform","features":[75]},{"name":"IXpsOMNameCollection","features":[75]},{"name":"IXpsOMObjectFactory","features":[75]},{"name":"IXpsOMObjectFactory1","features":[75]},{"name":"IXpsOMPackage","features":[75]},{"name":"IXpsOMPackage1","features":[75]},{"name":"IXpsOMPackageTarget","features":[75]},{"name":"IXpsOMPackageWriter","features":[75]},{"name":"IXpsOMPackageWriter3D","features":[75]},{"name":"IXpsOMPage","features":[75]},{"name":"IXpsOMPage1","features":[75]},{"name":"IXpsOMPageReference","features":[75]},{"name":"IXpsOMPageReferenceCollection","features":[75]},{"name":"IXpsOMPart","features":[75]},{"name":"IXpsOMPartResources","features":[75]},{"name":"IXpsOMPartUriCollection","features":[75]},{"name":"IXpsOMPath","features":[75]},{"name":"IXpsOMPrintTicketResource","features":[75]},{"name":"IXpsOMRadialGradientBrush","features":[75]},{"name":"IXpsOMRemoteDictionaryResource","features":[75]},{"name":"IXpsOMRemoteDictionaryResource1","features":[75]},{"name":"IXpsOMRemoteDictionaryResourceCollection","features":[75]},{"name":"IXpsOMResource","features":[75]},{"name":"IXpsOMShareable","features":[75]},{"name":"IXpsOMSignatureBlockResource","features":[75]},{"name":"IXpsOMSignatureBlockResourceCollection","features":[75]},{"name":"IXpsOMSolidColorBrush","features":[75]},{"name":"IXpsOMStoryFragmentsResource","features":[75]},{"name":"IXpsOMThumbnailGenerator","features":[75]},{"name":"IXpsOMTileBrush","features":[75]},{"name":"IXpsOMVisual","features":[75]},{"name":"IXpsOMVisualBrush","features":[75]},{"name":"IXpsOMVisualCollection","features":[75]},{"name":"IXpsSignature","features":[75]},{"name":"IXpsSignatureBlock","features":[75]},{"name":"IXpsSignatureBlockCollection","features":[75]},{"name":"IXpsSignatureCollection","features":[75]},{"name":"IXpsSignatureManager","features":[75]},{"name":"IXpsSignatureRequest","features":[75]},{"name":"IXpsSignatureRequestCollection","features":[75]},{"name":"IXpsSigningOptions","features":[75]},{"name":"PRINTER_DEVICE_CAPABILITIES","features":[75]},{"name":"PRINT_WINDOW_FLAGS","features":[75]},{"name":"PSFEATURE_CUSTPAPER","features":[75]},{"name":"PSFEATURE_OUTPUT","features":[1,75]},{"name":"PSINJECTDATA","features":[75]},{"name":"PSINJECT_BEGINDEFAULTS","features":[75]},{"name":"PSINJECT_BEGINPAGESETUP","features":[75]},{"name":"PSINJECT_BEGINPROLOG","features":[75]},{"name":"PSINJECT_BEGINSETUP","features":[75]},{"name":"PSINJECT_BEGINSTREAM","features":[75]},{"name":"PSINJECT_BOUNDINGBOX","features":[75]},{"name":"PSINJECT_COMMENTS","features":[75]},{"name":"PSINJECT_DOCNEEDEDRES","features":[75]},{"name":"PSINJECT_DOCSUPPLIEDRES","features":[75]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORS","features":[75]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORSATEND","features":[75]},{"name":"PSINJECT_ENDDEFAULTS","features":[75]},{"name":"PSINJECT_ENDPAGECOMMENTS","features":[75]},{"name":"PSINJECT_ENDPAGESETUP","features":[75]},{"name":"PSINJECT_ENDPROLOG","features":[75]},{"name":"PSINJECT_ENDSETUP","features":[75]},{"name":"PSINJECT_ENDSTREAM","features":[75]},{"name":"PSINJECT_EOF","features":[75]},{"name":"PSINJECT_ORIENTATION","features":[75]},{"name":"PSINJECT_PAGEBBOX","features":[75]},{"name":"PSINJECT_PAGENUMBER","features":[75]},{"name":"PSINJECT_PAGEORDER","features":[75]},{"name":"PSINJECT_PAGES","features":[75]},{"name":"PSINJECT_PAGESATEND","features":[75]},{"name":"PSINJECT_PAGETRAILER","features":[75]},{"name":"PSINJECT_PLATECOLOR","features":[75]},{"name":"PSINJECT_POINT","features":[75]},{"name":"PSINJECT_PSADOBE","features":[75]},{"name":"PSINJECT_SHOWPAGE","features":[75]},{"name":"PSINJECT_TRAILER","features":[75]},{"name":"PSINJECT_VMRESTORE","features":[75]},{"name":"PSINJECT_VMSAVE","features":[75]},{"name":"PW_CLIENTONLY","features":[75]},{"name":"PrintWindow","features":[1,12,75]},{"name":"SetAbortProc","features":[1,12,75]},{"name":"StartDocA","features":[12,75]},{"name":"StartDocW","features":[12,75]},{"name":"StartPage","features":[12,75]},{"name":"XPS_COLOR","features":[75]},{"name":"XPS_COLOR_INTERPOLATION","features":[75]},{"name":"XPS_COLOR_INTERPOLATION_SCRGBLINEAR","features":[75]},{"name":"XPS_COLOR_INTERPOLATION_SRGBLINEAR","features":[75]},{"name":"XPS_COLOR_TYPE","features":[75]},{"name":"XPS_COLOR_TYPE_CONTEXT","features":[75]},{"name":"XPS_COLOR_TYPE_SCRGB","features":[75]},{"name":"XPS_COLOR_TYPE_SRGB","features":[75]},{"name":"XPS_DASH","features":[75]},{"name":"XPS_DASH_CAP","features":[75]},{"name":"XPS_DASH_CAP_FLAT","features":[75]},{"name":"XPS_DASH_CAP_ROUND","features":[75]},{"name":"XPS_DASH_CAP_SQUARE","features":[75]},{"name":"XPS_DASH_CAP_TRIANGLE","features":[75]},{"name":"XPS_DOCUMENT_TYPE","features":[75]},{"name":"XPS_DOCUMENT_TYPE_OPENXPS","features":[75]},{"name":"XPS_DOCUMENT_TYPE_UNSPECIFIED","features":[75]},{"name":"XPS_DOCUMENT_TYPE_XPS","features":[75]},{"name":"XPS_E_ABSOLUTE_REFERENCE","features":[75]},{"name":"XPS_E_ALREADY_OWNED","features":[75]},{"name":"XPS_E_BLEED_BOX_PAGE_DIMENSIONS_NOT_IN_SYNC","features":[75]},{"name":"XPS_E_BOTH_PATHFIGURE_AND_ABBR_SYNTAX_PRESENT","features":[75]},{"name":"XPS_E_BOTH_RESOURCE_AND_SOURCEATTR_PRESENT","features":[75]},{"name":"XPS_E_CARET_OUTSIDE_STRING","features":[75]},{"name":"XPS_E_CARET_OUT_OF_ORDER","features":[75]},{"name":"XPS_E_COLOR_COMPONENT_OUT_OF_RANGE","features":[75]},{"name":"XPS_E_DICTIONARY_ITEM_NAMED","features":[75]},{"name":"XPS_E_DUPLICATE_NAMES","features":[75]},{"name":"XPS_E_DUPLICATE_RESOURCE_KEYS","features":[75]},{"name":"XPS_E_INDEX_OUT_OF_RANGE","features":[75]},{"name":"XPS_E_INVALID_BLEED_BOX","features":[75]},{"name":"XPS_E_INVALID_CONTENT_BOX","features":[75]},{"name":"XPS_E_INVALID_CONTENT_TYPE","features":[75]},{"name":"XPS_E_INVALID_FLOAT","features":[75]},{"name":"XPS_E_INVALID_FONT_URI","features":[75]},{"name":"XPS_E_INVALID_LANGUAGE","features":[75]},{"name":"XPS_E_INVALID_LOOKUP_TYPE","features":[75]},{"name":"XPS_E_INVALID_MARKUP","features":[75]},{"name":"XPS_E_INVALID_NAME","features":[75]},{"name":"XPS_E_INVALID_NUMBER_OF_COLOR_CHANNELS","features":[75]},{"name":"XPS_E_INVALID_NUMBER_OF_POINTS_IN_CURVE_SEGMENTS","features":[75]},{"name":"XPS_E_INVALID_OBFUSCATED_FONT_URI","features":[75]},{"name":"XPS_E_INVALID_PAGE_SIZE","features":[75]},{"name":"XPS_E_INVALID_RESOURCE_KEY","features":[75]},{"name":"XPS_E_INVALID_SIGNATUREBLOCK_MARKUP","features":[75]},{"name":"XPS_E_INVALID_THUMBNAIL_IMAGE_TYPE","features":[75]},{"name":"XPS_E_INVALID_XML_ENCODING","features":[75]},{"name":"XPS_E_MAPPING_OUTSIDE_INDICES","features":[75]},{"name":"XPS_E_MAPPING_OUTSIDE_STRING","features":[75]},{"name":"XPS_E_MAPPING_OUT_OF_ORDER","features":[75]},{"name":"XPS_E_MARKUP_COMPATIBILITY_ELEMENTS","features":[75]},{"name":"XPS_E_MISSING_COLORPROFILE","features":[75]},{"name":"XPS_E_MISSING_DISCARDCONTROL","features":[75]},{"name":"XPS_E_MISSING_DOCUMENT","features":[75]},{"name":"XPS_E_MISSING_DOCUMENTSEQUENCE_RELATIONSHIP","features":[75]},{"name":"XPS_E_MISSING_FONTURI","features":[75]},{"name":"XPS_E_MISSING_GLYPHS","features":[75]},{"name":"XPS_E_MISSING_IMAGE_IN_IMAGEBRUSH","features":[75]},{"name":"XPS_E_MISSING_LOOKUP","features":[75]},{"name":"XPS_E_MISSING_NAME","features":[75]},{"name":"XPS_E_MISSING_PAGE_IN_DOCUMENT","features":[75]},{"name":"XPS_E_MISSING_PAGE_IN_PAGEREFERENCE","features":[75]},{"name":"XPS_E_MISSING_PART_REFERENCE","features":[75]},{"name":"XPS_E_MISSING_PART_STREAM","features":[75]},{"name":"XPS_E_MISSING_REFERRED_DOCUMENT","features":[75]},{"name":"XPS_E_MISSING_REFERRED_PAGE","features":[75]},{"name":"XPS_E_MISSING_RELATIONSHIP_TARGET","features":[75]},{"name":"XPS_E_MISSING_RESOURCE_KEY","features":[75]},{"name":"XPS_E_MISSING_RESOURCE_RELATIONSHIP","features":[75]},{"name":"XPS_E_MISSING_RESTRICTED_FONT_RELATIONSHIP","features":[75]},{"name":"XPS_E_MISSING_SEGMENT_DATA","features":[75]},{"name":"XPS_E_MULTIPLE_DOCUMENTSEQUENCE_RELATIONSHIPS","features":[75]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENT","features":[75]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENTSEQUENCE","features":[75]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_PAGE","features":[75]},{"name":"XPS_E_MULTIPLE_REFERENCES_TO_PART","features":[75]},{"name":"XPS_E_MULTIPLE_RESOURCES","features":[75]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PACKAGE","features":[75]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PAGE","features":[75]},{"name":"XPS_E_NEGATIVE_FLOAT","features":[75]},{"name":"XPS_E_NESTED_REMOTE_DICTIONARY","features":[75]},{"name":"XPS_E_NOT_ENOUGH_GRADIENT_STOPS","features":[75]},{"name":"XPS_E_NO_CUSTOM_OBJECTS","features":[75]},{"name":"XPS_E_OBJECT_DETACHED","features":[75]},{"name":"XPS_E_ODD_BIDILEVEL","features":[75]},{"name":"XPS_E_ONE_TO_ONE_MAPPING_EXPECTED","features":[75]},{"name":"XPS_E_PACKAGE_ALREADY_OPENED","features":[75]},{"name":"XPS_E_PACKAGE_NOT_OPENED","features":[75]},{"name":"XPS_E_PACKAGE_WRITER_NOT_CLOSED","features":[75]},{"name":"XPS_E_RELATIONSHIP_EXTERNAL","features":[75]},{"name":"XPS_E_RESOURCE_NOT_OWNED","features":[75]},{"name":"XPS_E_RESTRICTED_FONT_NOT_OBFUSCATED","features":[75]},{"name":"XPS_E_SIGNATUREID_DUP","features":[75]},{"name":"XPS_E_SIGREQUESTID_DUP","features":[75]},{"name":"XPS_E_STRING_TOO_LONG","features":[75]},{"name":"XPS_E_TOO_MANY_INDICES","features":[75]},{"name":"XPS_E_UNAVAILABLE_PACKAGE","features":[75]},{"name":"XPS_E_UNEXPECTED_COLORPROFILE","features":[75]},{"name":"XPS_E_UNEXPECTED_CONTENT_TYPE","features":[75]},{"name":"XPS_E_UNEXPECTED_RELATIONSHIP_TYPE","features":[75]},{"name":"XPS_E_UNEXPECTED_RESTRICTED_FONT_RELATIONSHIP","features":[75]},{"name":"XPS_E_VISUAL_CIRCULAR_REF","features":[75]},{"name":"XPS_E_XKEY_ATTR_PRESENT_OUTSIDE_RES_DICT","features":[75]},{"name":"XPS_FILL_RULE","features":[75]},{"name":"XPS_FILL_RULE_EVENODD","features":[75]},{"name":"XPS_FILL_RULE_NONZERO","features":[75]},{"name":"XPS_FONT_EMBEDDING","features":[75]},{"name":"XPS_FONT_EMBEDDING_NORMAL","features":[75]},{"name":"XPS_FONT_EMBEDDING_OBFUSCATED","features":[75]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED","features":[75]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED_UNOBFUSCATED","features":[75]},{"name":"XPS_GLYPH_INDEX","features":[75]},{"name":"XPS_GLYPH_MAPPING","features":[75]},{"name":"XPS_IMAGE_TYPE","features":[75]},{"name":"XPS_IMAGE_TYPE_JPEG","features":[75]},{"name":"XPS_IMAGE_TYPE_JXR","features":[75]},{"name":"XPS_IMAGE_TYPE_PNG","features":[75]},{"name":"XPS_IMAGE_TYPE_TIFF","features":[75]},{"name":"XPS_IMAGE_TYPE_WDP","features":[75]},{"name":"XPS_INTERLEAVING","features":[75]},{"name":"XPS_INTERLEAVING_OFF","features":[75]},{"name":"XPS_INTERLEAVING_ON","features":[75]},{"name":"XPS_LINE_CAP","features":[75]},{"name":"XPS_LINE_CAP_FLAT","features":[75]},{"name":"XPS_LINE_CAP_ROUND","features":[75]},{"name":"XPS_LINE_CAP_SQUARE","features":[75]},{"name":"XPS_LINE_CAP_TRIANGLE","features":[75]},{"name":"XPS_LINE_JOIN","features":[75]},{"name":"XPS_LINE_JOIN_BEVEL","features":[75]},{"name":"XPS_LINE_JOIN_MITER","features":[75]},{"name":"XPS_LINE_JOIN_ROUND","features":[75]},{"name":"XPS_MATRIX","features":[75]},{"name":"XPS_OBJECT_TYPE","features":[75]},{"name":"XPS_OBJECT_TYPE_CANVAS","features":[75]},{"name":"XPS_OBJECT_TYPE_GEOMETRY","features":[75]},{"name":"XPS_OBJECT_TYPE_GLYPHS","features":[75]},{"name":"XPS_OBJECT_TYPE_IMAGE_BRUSH","features":[75]},{"name":"XPS_OBJECT_TYPE_LINEAR_GRADIENT_BRUSH","features":[75]},{"name":"XPS_OBJECT_TYPE_MATRIX_TRANSFORM","features":[75]},{"name":"XPS_OBJECT_TYPE_PATH","features":[75]},{"name":"XPS_OBJECT_TYPE_RADIAL_GRADIENT_BRUSH","features":[75]},{"name":"XPS_OBJECT_TYPE_SOLID_COLOR_BRUSH","features":[75]},{"name":"XPS_OBJECT_TYPE_VISUAL_BRUSH","features":[75]},{"name":"XPS_POINT","features":[75]},{"name":"XPS_RECT","features":[75]},{"name":"XPS_SEGMENT_STROKE_PATTERN","features":[75]},{"name":"XPS_SEGMENT_STROKE_PATTERN_ALL","features":[75]},{"name":"XPS_SEGMENT_STROKE_PATTERN_MIXED","features":[75]},{"name":"XPS_SEGMENT_STROKE_PATTERN_NONE","features":[75]},{"name":"XPS_SEGMENT_TYPE","features":[75]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_CLOCKWISE","features":[75]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_COUNTERCLOCKWISE","features":[75]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_CLOCKWISE","features":[75]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_COUNTERCLOCKWISE","features":[75]},{"name":"XPS_SEGMENT_TYPE_BEZIER","features":[75]},{"name":"XPS_SEGMENT_TYPE_LINE","features":[75]},{"name":"XPS_SEGMENT_TYPE_QUADRATIC_BEZIER","features":[75]},{"name":"XPS_SIGNATURE_STATUS","features":[75]},{"name":"XPS_SIGNATURE_STATUS_BROKEN","features":[75]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLETE","features":[75]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLIANT","features":[75]},{"name":"XPS_SIGNATURE_STATUS_QUESTIONABLE","features":[75]},{"name":"XPS_SIGNATURE_STATUS_VALID","features":[75]},{"name":"XPS_SIGN_FLAGS","features":[75]},{"name":"XPS_SIGN_FLAGS_IGNORE_MARKUP_COMPATIBILITY","features":[75]},{"name":"XPS_SIGN_FLAGS_NONE","features":[75]},{"name":"XPS_SIGN_POLICY","features":[75]},{"name":"XPS_SIGN_POLICY_ALL","features":[75]},{"name":"XPS_SIGN_POLICY_CORE_PROPERTIES","features":[75]},{"name":"XPS_SIGN_POLICY_DISCARD_CONTROL","features":[75]},{"name":"XPS_SIGN_POLICY_NONE","features":[75]},{"name":"XPS_SIGN_POLICY_PRINT_TICKET","features":[75]},{"name":"XPS_SIGN_POLICY_SIGNATURE_RELATIONSHIPS","features":[75]},{"name":"XPS_SIZE","features":[75]},{"name":"XPS_SPREAD_METHOD","features":[75]},{"name":"XPS_SPREAD_METHOD_PAD","features":[75]},{"name":"XPS_SPREAD_METHOD_REFLECT","features":[75]},{"name":"XPS_SPREAD_METHOD_REPEAT","features":[75]},{"name":"XPS_STYLE_SIMULATION","features":[75]},{"name":"XPS_STYLE_SIMULATION_BOLD","features":[75]},{"name":"XPS_STYLE_SIMULATION_BOLDITALIC","features":[75]},{"name":"XPS_STYLE_SIMULATION_ITALIC","features":[75]},{"name":"XPS_STYLE_SIMULATION_NONE","features":[75]},{"name":"XPS_THUMBNAIL_SIZE","features":[75]},{"name":"XPS_THUMBNAIL_SIZE_LARGE","features":[75]},{"name":"XPS_THUMBNAIL_SIZE_MEDIUM","features":[75]},{"name":"XPS_THUMBNAIL_SIZE_SMALL","features":[75]},{"name":"XPS_THUMBNAIL_SIZE_VERYSMALL","features":[75]},{"name":"XPS_TILE_MODE","features":[75]},{"name":"XPS_TILE_MODE_FLIPX","features":[75]},{"name":"XPS_TILE_MODE_FLIPXY","features":[75]},{"name":"XPS_TILE_MODE_FLIPY","features":[75]},{"name":"XPS_TILE_MODE_NONE","features":[75]},{"name":"XPS_TILE_MODE_TILE","features":[75]},{"name":"XpsOMObjectFactory","features":[75]},{"name":"XpsOMThumbnailGenerator","features":[75]},{"name":"XpsSignatureManager","features":[75]}],"528":[{"name":"ADRENTRY","features":[1,142,41]},{"name":"ADRLIST","features":[1,142,41]},{"name":"ADRPARM","features":[1,142,41]},{"name":"BuildDisplayTable","features":[1,142]},{"name":"CALLERRELEASE","features":[142]},{"name":"ChangeIdleRoutine","features":[1,142]},{"name":"CreateIProp","features":[142]},{"name":"CreateTable","features":[142]},{"name":"DTBLBUTTON","features":[142]},{"name":"DTBLCHECKBOX","features":[142]},{"name":"DTBLCOMBOBOX","features":[142]},{"name":"DTBLDDLBX","features":[142]},{"name":"DTBLEDIT","features":[142]},{"name":"DTBLGROUPBOX","features":[142]},{"name":"DTBLLABEL","features":[142]},{"name":"DTBLLBX","features":[142]},{"name":"DTBLMVDDLBX","features":[142]},{"name":"DTBLMVLISTBOX","features":[142]},{"name":"DTBLPAGE","features":[142]},{"name":"DTBLRADIOBUTTON","features":[142]},{"name":"DTCTL","features":[142]},{"name":"DTPAGE","features":[142]},{"name":"DeinitMapiUtil","features":[142]},{"name":"DeregisterIdleRoutine","features":[142]},{"name":"ENTRYID","features":[142]},{"name":"ERROR_NOTIFICATION","features":[142]},{"name":"EXTENDED_NOTIFICATION","features":[142]},{"name":"E_IMAPI_BURN_VERIFICATION_FAILED","features":[142]},{"name":"E_IMAPI_DF2DATA_CLIENT_NAME_IS_NOT_VALID","features":[142]},{"name":"E_IMAPI_DF2DATA_INVALID_MEDIA_STATE","features":[142]},{"name":"E_IMAPI_DF2DATA_MEDIA_IS_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2DATA_MEDIA_NOT_BLANK","features":[142]},{"name":"E_IMAPI_DF2DATA_RECORDER_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2DATA_STREAM_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2DATA_STREAM_TOO_LARGE_FOR_CURRENT_MEDIA","features":[142]},{"name":"E_IMAPI_DF2DATA_WRITE_IN_PROGRESS","features":[142]},{"name":"E_IMAPI_DF2DATA_WRITE_NOT_IN_PROGRESS","features":[142]},{"name":"E_IMAPI_DF2RAW_CLIENT_NAME_IS_NOT_VALID","features":[142]},{"name":"E_IMAPI_DF2RAW_DATA_BLOCK_TYPE_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_BLANK","features":[142]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_PREPARED","features":[142]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_PREPARED","features":[142]},{"name":"E_IMAPI_DF2RAW_NOT_ENOUGH_SPACE","features":[142]},{"name":"E_IMAPI_DF2RAW_NO_RECORDER_SPECIFIED","features":[142]},{"name":"E_IMAPI_DF2RAW_RECORDER_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2RAW_STREAM_LEADIN_TOO_SHORT","features":[142]},{"name":"E_IMAPI_DF2RAW_STREAM_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2RAW_WRITE_IN_PROGRESS","features":[142]},{"name":"E_IMAPI_DF2RAW_WRITE_NOT_IN_PROGRESS","features":[142]},{"name":"E_IMAPI_DF2TAO_CLIENT_NAME_IS_NOT_VALID","features":[142]},{"name":"E_IMAPI_DF2TAO_INVALID_ISRC","features":[142]},{"name":"E_IMAPI_DF2TAO_INVALID_MCN","features":[142]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_BLANK","features":[142]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_PREPARED","features":[142]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_PREPARED","features":[142]},{"name":"E_IMAPI_DF2TAO_NOT_ENOUGH_SPACE","features":[142]},{"name":"E_IMAPI_DF2TAO_NO_RECORDER_SPECIFIED","features":[142]},{"name":"E_IMAPI_DF2TAO_PROPERTY_FOR_BLANK_MEDIA_ONLY","features":[142]},{"name":"E_IMAPI_DF2TAO_RECORDER_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2TAO_STREAM_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_DF2TAO_TABLE_OF_CONTENTS_EMPTY_DISC","features":[142]},{"name":"E_IMAPI_DF2TAO_TRACK_LIMIT_REACHED","features":[142]},{"name":"E_IMAPI_DF2TAO_WRITE_IN_PROGRESS","features":[142]},{"name":"E_IMAPI_DF2TAO_WRITE_NOT_IN_PROGRESS","features":[142]},{"name":"E_IMAPI_ERASE_CLIENT_NAME_IS_NOT_VALID","features":[142]},{"name":"E_IMAPI_ERASE_DISC_INFORMATION_TOO_SMALL","features":[142]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_ERASE_COMMAND","features":[142]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_SPINUP_COMMAND","features":[142]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_ERASABLE","features":[142]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_ERASE_MODE_PAGE_2A_TOO_SMALL","features":[142]},{"name":"E_IMAPI_ERASE_ONLY_ONE_RECORDER_SUPPORTED","features":[142]},{"name":"E_IMAPI_ERASE_RECORDER_IN_USE","features":[142]},{"name":"E_IMAPI_ERASE_RECORDER_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_ERASE_TOOK_LONGER_THAN_ONE_HOUR","features":[142]},{"name":"E_IMAPI_ERASE_UNEXPECTED_DRIVE_RESPONSE_DURING_ERASE","features":[142]},{"name":"E_IMAPI_LOSS_OF_STREAMING","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_INSUFFICIENT_SPACE","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_IS_READ_ONLY","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_NO_TRACKS","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_SECTOR_TYPE_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACKS","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACK_INDEXES","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_TRACKS_ALREADY_ADDED","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_NOT_FOUND","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_OFFSET_ZERO_CANNOT_BE_CLEARED","features":[142]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_TOO_CLOSE_TO_OTHER_INDEX","features":[142]},{"name":"E_IMAPI_RECORDER_CLIENT_NAME_IS_NOT_VALID","features":[142]},{"name":"E_IMAPI_RECORDER_COMMAND_TIMEOUT","features":[142]},{"name":"E_IMAPI_RECORDER_DVD_STRUCTURE_NOT_PRESENT","features":[142]},{"name":"E_IMAPI_RECORDER_FEATURE_IS_NOT_CURRENT","features":[142]},{"name":"E_IMAPI_RECORDER_GET_CONFIGURATION_NOT_SUPPORTED","features":[142]},{"name":"E_IMAPI_RECORDER_INVALID_MODE_PARAMETERS","features":[142]},{"name":"E_IMAPI_RECORDER_INVALID_RESPONSE_FROM_DEVICE","features":[142]},{"name":"E_IMAPI_RECORDER_LOCKED","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_BECOMING_READY","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_BUSY","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_FORMAT_IN_PROGRESS","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_INCOMPATIBLE","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_NOT_FORMATTED","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_NO_MEDIA","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_SPEED_MISMATCH","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_UPSIDE_DOWN","features":[142]},{"name":"E_IMAPI_RECORDER_MEDIA_WRITE_PROTECTED","features":[142]},{"name":"E_IMAPI_RECORDER_NO_SUCH_FEATURE","features":[142]},{"name":"E_IMAPI_RECORDER_NO_SUCH_MODE_PAGE","features":[142]},{"name":"E_IMAPI_RECORDER_REQUIRED","features":[142]},{"name":"E_IMAPI_REQUEST_CANCELLED","features":[142]},{"name":"E_IMAPI_UNEXPECTED_RESPONSE_FROM_DEVICE","features":[142]},{"name":"EnableIdleRoutine","features":[1,142]},{"name":"FACILITY_IMAPI2","features":[142]},{"name":"FEqualNames","features":[1,142]},{"name":"FLATENTRY","features":[142]},{"name":"FLATENTRYLIST","features":[142]},{"name":"FLATMTSIDLIST","features":[142]},{"name":"FPropCompareProp","features":[1,142,41]},{"name":"FPropContainsProp","features":[1,142,41]},{"name":"FPropExists","features":[1,142]},{"name":"FlagList","features":[142]},{"name":"FreePadrlist","features":[1,142,41]},{"name":"FreeProws","features":[1,142,41]},{"name":"FtAddFt","features":[1,142]},{"name":"FtMulDw","features":[1,142]},{"name":"FtMulDwDw","features":[1,142]},{"name":"FtNegFt","features":[1,142]},{"name":"FtSubFt","features":[1,142]},{"name":"FtgRegisterIdleRoutine","features":[1,142]},{"name":"Gender","features":[142]},{"name":"HrAddColumns","features":[142]},{"name":"HrAddColumnsEx","features":[142]},{"name":"HrAllocAdviseSink","features":[1,142,41]},{"name":"HrDispatchNotifications","features":[142]},{"name":"HrGetOneProp","features":[1,142,41]},{"name":"HrIStorageFromStream","features":[142]},{"name":"HrQueryAllRows","features":[1,142,41]},{"name":"HrSetOneProp","features":[1,142,41]},{"name":"HrThisThreadAdviseSink","features":[142]},{"name":"IABContainer","features":[142]},{"name":"IAddrBook","features":[142]},{"name":"IAttach","features":[142]},{"name":"IDistList","features":[142]},{"name":"IMAPIAdviseSink","features":[142]},{"name":"IMAPIContainer","features":[142]},{"name":"IMAPIControl","features":[142]},{"name":"IMAPIFolder","features":[142]},{"name":"IMAPIProgress","features":[142]},{"name":"IMAPIProp","features":[142]},{"name":"IMAPIStatus","features":[142]},{"name":"IMAPITable","features":[142]},{"name":"IMAPI_E_BAD_MULTISESSION_PARAMETER","features":[142]},{"name":"IMAPI_E_BOOT_EMULATION_IMAGE_SIZE_MISMATCH","features":[142]},{"name":"IMAPI_E_BOOT_IMAGE_DATA","features":[142]},{"name":"IMAPI_E_BOOT_OBJECT_CONFLICT","features":[142]},{"name":"IMAPI_E_DATA_STREAM_CREATE_FAILURE","features":[142]},{"name":"IMAPI_E_DATA_STREAM_INCONSISTENCY","features":[142]},{"name":"IMAPI_E_DATA_STREAM_READ_FAILURE","features":[142]},{"name":"IMAPI_E_DATA_TOO_BIG","features":[142]},{"name":"IMAPI_E_DIRECTORY_READ_FAILURE","features":[142]},{"name":"IMAPI_E_DIR_NOT_EMPTY","features":[142]},{"name":"IMAPI_E_DIR_NOT_FOUND","features":[142]},{"name":"IMAPI_E_DISC_MISMATCH","features":[142]},{"name":"IMAPI_E_DUP_NAME","features":[142]},{"name":"IMAPI_E_EMPTY_DISC","features":[142]},{"name":"IMAPI_E_FILE_NOT_FOUND","features":[142]},{"name":"IMAPI_E_FILE_SYSTEM_CHANGE_NOT_ALLOWED","features":[142]},{"name":"IMAPI_E_FILE_SYSTEM_FEATURE_NOT_SUPPORTED","features":[142]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_EMPTY","features":[142]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_FOUND","features":[142]},{"name":"IMAPI_E_FILE_SYSTEM_READ_CONSISTENCY_ERROR","features":[142]},{"name":"IMAPI_E_FSI_INTERNAL_ERROR","features":[142]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_NOT_ALIGNED","features":[142]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_TOO_BIG","features":[142]},{"name":"IMAPI_E_IMAGEMANAGER_NO_IMAGE","features":[142]},{"name":"IMAPI_E_IMAGEMANAGER_NO_VALID_VD_FOUND","features":[142]},{"name":"IMAPI_E_IMAGE_SIZE_LIMIT","features":[142]},{"name":"IMAPI_E_IMAGE_TOO_BIG","features":[142]},{"name":"IMAPI_E_IMPORT_MEDIA_NOT_ALLOWED","features":[142]},{"name":"IMAPI_E_IMPORT_READ_FAILURE","features":[142]},{"name":"IMAPI_E_IMPORT_SEEK_FAILURE","features":[142]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_DIRECTORY_EXISTS_AS_FILE","features":[142]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_FILE_EXISTS_AS_DIRECTORY","features":[142]},{"name":"IMAPI_E_INCOMPATIBLE_MULTISESSION_TYPE","features":[142]},{"name":"IMAPI_E_INCOMPATIBLE_PREVIOUS_SESSION","features":[142]},{"name":"IMAPI_E_INVALID_DATE","features":[142]},{"name":"IMAPI_E_INVALID_PARAM","features":[142]},{"name":"IMAPI_E_INVALID_PATH","features":[142]},{"name":"IMAPI_E_INVALID_VOLUME_NAME","features":[142]},{"name":"IMAPI_E_INVALID_WORKING_DIRECTORY","features":[142]},{"name":"IMAPI_E_ISO9660_LEVELS","features":[142]},{"name":"IMAPI_E_ITEM_NOT_FOUND","features":[142]},{"name":"IMAPI_E_MULTISESSION_NOT_SET","features":[142]},{"name":"IMAPI_E_NOT_DIR","features":[142]},{"name":"IMAPI_E_NOT_FILE","features":[142]},{"name":"IMAPI_E_NOT_IN_FILE_SYSTEM","features":[142]},{"name":"IMAPI_E_NO_COMPATIBLE_MULTISESSION_TYPE","features":[142]},{"name":"IMAPI_E_NO_OUTPUT","features":[142]},{"name":"IMAPI_E_NO_SUPPORTED_FILE_SYSTEM","features":[142]},{"name":"IMAPI_E_NO_UNIQUE_NAME","features":[142]},{"name":"IMAPI_E_PROPERTY_NOT_ACCESSIBLE","features":[142]},{"name":"IMAPI_E_READONLY","features":[142]},{"name":"IMAPI_E_RESTRICTED_NAME_VIOLATION","features":[142]},{"name":"IMAPI_E_STASHFILE_MOVE","features":[142]},{"name":"IMAPI_E_STASHFILE_OPEN_FAILURE","features":[142]},{"name":"IMAPI_E_STASHFILE_READ_FAILURE","features":[142]},{"name":"IMAPI_E_STASHFILE_SEEK_FAILURE","features":[142]},{"name":"IMAPI_E_STASHFILE_WRITE_FAILURE","features":[142]},{"name":"IMAPI_E_TOO_MANY_DIRS","features":[142]},{"name":"IMAPI_E_UDF_NOT_WRITE_COMPATIBLE","features":[142]},{"name":"IMAPI_E_UDF_REVISION_CHANGE_NOT_ALLOWED","features":[142]},{"name":"IMAPI_E_WORKING_DIRECTORY_SPACE","features":[142]},{"name":"IMAPI_S_IMAGE_FEATURE_NOT_SUPPORTED","features":[142]},{"name":"IMailUser","features":[142]},{"name":"IMessage","features":[142]},{"name":"IMsgStore","features":[142]},{"name":"IProfSect","features":[142]},{"name":"IPropData","features":[142]},{"name":"IProviderAdmin","features":[142]},{"name":"ITableData","features":[142]},{"name":"IWABExtInit","features":[142]},{"name":"IWABObject","features":[142]},{"name":"LPALLOCATEBUFFER","features":[142]},{"name":"LPALLOCATEMORE","features":[142]},{"name":"LPCREATECONVERSATIONINDEX","features":[142]},{"name":"LPDISPATCHNOTIFICATIONS","features":[142]},{"name":"LPFNABSDI","features":[1,142]},{"name":"LPFNBUTTON","features":[142]},{"name":"LPFNDISMISS","features":[142]},{"name":"LPFREEBUFFER","features":[142]},{"name":"LPNOTIFCALLBACK","features":[1,142,41]},{"name":"LPOPENSTREAMONFILE","features":[142]},{"name":"LPWABACTIONITEM","features":[142]},{"name":"LPWABALLOCATEBUFFER","features":[142]},{"name":"LPWABALLOCATEMORE","features":[142]},{"name":"LPWABFREEBUFFER","features":[142]},{"name":"LPWABOPEN","features":[1,142]},{"name":"LPWABOPENEX","features":[1,142]},{"name":"LPropCompareProp","features":[1,142,41]},{"name":"LpValFindProp","features":[1,142,41]},{"name":"MAPIDeinitIdle","features":[142]},{"name":"MAPIERROR","features":[142]},{"name":"MAPIGetDefaultMalloc","features":[142]},{"name":"MAPIInitIdle","features":[142]},{"name":"MAPINAMEID","features":[142]},{"name":"MAPIUID","features":[142]},{"name":"MAPI_COMPOUND","features":[142]},{"name":"MAPI_DIM","features":[142]},{"name":"MAPI_ERROR_VERSION","features":[142]},{"name":"MAPI_E_CALL_FAILED","features":[142]},{"name":"MAPI_E_INTERFACE_NOT_SUPPORTED","features":[142]},{"name":"MAPI_E_INVALID_PARAMETER","features":[142]},{"name":"MAPI_E_NOT_ENOUGH_MEMORY","features":[142]},{"name":"MAPI_E_NO_ACCESS","features":[142]},{"name":"MAPI_NOTRECIP","features":[142]},{"name":"MAPI_NOTRESERVED","features":[142]},{"name":"MAPI_NOW","features":[142]},{"name":"MAPI_ONE_OFF_NO_RICH_INFO","features":[142]},{"name":"MAPI_P1","features":[142]},{"name":"MAPI_SHORTTERM","features":[142]},{"name":"MAPI_SUBMITTED","features":[142]},{"name":"MAPI_THISSESSION","features":[142]},{"name":"MAPI_USE_DEFAULT","features":[142]},{"name":"MNID_ID","features":[142]},{"name":"MNID_STRING","features":[142]},{"name":"MTSID","features":[142]},{"name":"MV_FLAG","features":[142]},{"name":"MV_INSTANCE","features":[142]},{"name":"NEWMAIL_NOTIFICATION","features":[142]},{"name":"NOTIFICATION","features":[1,142,41]},{"name":"NOTIFKEY","features":[142]},{"name":"OBJECT_NOTIFICATION","features":[142]},{"name":"OPENSTREAMONFILE","features":[142]},{"name":"OpenStreamOnFile","features":[142]},{"name":"PFNIDLE","features":[1,142]},{"name":"PRIHIGHEST","features":[142]},{"name":"PRILOWEST","features":[142]},{"name":"PRIUSER","features":[142]},{"name":"PROP_ID_INVALID","features":[142]},{"name":"PROP_ID_NULL","features":[142]},{"name":"PROP_ID_SECURE_MAX","features":[142]},{"name":"PROP_ID_SECURE_MIN","features":[142]},{"name":"PpropFindProp","features":[1,142,41]},{"name":"PropCopyMore","features":[1,142,41]},{"name":"RTFSync","features":[1,142]},{"name":"SAndRestriction","features":[1,142,41]},{"name":"SAppTimeArray","features":[142]},{"name":"SBinary","features":[142]},{"name":"SBinaryArray","features":[142]},{"name":"SBitMaskRestriction","features":[142]},{"name":"SCommentRestriction","features":[1,142,41]},{"name":"SComparePropsRestriction","features":[142]},{"name":"SContentRestriction","features":[1,142,41]},{"name":"SCurrencyArray","features":[142,41]},{"name":"SDateTimeArray","features":[1,142]},{"name":"SDoubleArray","features":[142]},{"name":"SERVICE_UI_ALLOWED","features":[142]},{"name":"SERVICE_UI_ALWAYS","features":[142]},{"name":"SExistRestriction","features":[142]},{"name":"SGuidArray","features":[142]},{"name":"SLPSTRArray","features":[142]},{"name":"SLargeIntegerArray","features":[142]},{"name":"SLongArray","features":[142]},{"name":"SNotRestriction","features":[1,142,41]},{"name":"SOrRestriction","features":[1,142,41]},{"name":"SPropProblem","features":[142]},{"name":"SPropProblemArray","features":[142]},{"name":"SPropTagArray","features":[142]},{"name":"SPropValue","features":[1,142,41]},{"name":"SPropertyRestriction","features":[1,142,41]},{"name":"SRealArray","features":[142]},{"name":"SRestriction","features":[1,142,41]},{"name":"SRow","features":[1,142,41]},{"name":"SRowSet","features":[1,142,41]},{"name":"SShortArray","features":[142]},{"name":"SSizeRestriction","features":[142]},{"name":"SSortOrder","features":[142]},{"name":"SSortOrderSet","features":[142]},{"name":"SSubRestriction","features":[1,142,41]},{"name":"STATUS_OBJECT_NOTIFICATION","features":[1,142,41]},{"name":"SWStringArray","features":[142]},{"name":"S_IMAPI_BOTHADJUSTED","features":[142]},{"name":"S_IMAPI_COMMAND_HAS_SENSE_DATA","features":[142]},{"name":"S_IMAPI_RAW_IMAGE_TRACK_INDEX_ALREADY_EXISTS","features":[142]},{"name":"S_IMAPI_ROTATIONADJUSTED","features":[142]},{"name":"S_IMAPI_SPEEDADJUSTED","features":[142]},{"name":"S_IMAPI_WRITE_NOT_IN_PROGRESS","features":[142]},{"name":"ScCopyNotifications","features":[1,142,41]},{"name":"ScCopyProps","features":[1,142,41]},{"name":"ScCountNotifications","features":[1,142,41]},{"name":"ScCountProps","features":[1,142,41]},{"name":"ScCreateConversationIndex","features":[142]},{"name":"ScDupPropset","features":[1,142,41]},{"name":"ScInitMapiUtil","features":[142]},{"name":"ScLocalPathFromUNC","features":[142]},{"name":"ScRelocNotifications","features":[1,142,41]},{"name":"ScRelocProps","features":[1,142,41]},{"name":"ScUNCFromLocalPath","features":[142]},{"name":"SzFindCh","features":[142]},{"name":"SzFindLastCh","features":[142]},{"name":"SzFindSz","features":[142]},{"name":"TABLE_CHANGED","features":[142]},{"name":"TABLE_ERROR","features":[142]},{"name":"TABLE_NOTIFICATION","features":[1,142,41]},{"name":"TABLE_RELOAD","features":[142]},{"name":"TABLE_RESTRICT_DONE","features":[142]},{"name":"TABLE_ROW_ADDED","features":[142]},{"name":"TABLE_ROW_DELETED","features":[142]},{"name":"TABLE_ROW_MODIFIED","features":[142]},{"name":"TABLE_SETCOL_DONE","features":[142]},{"name":"TABLE_SORT_DONE","features":[142]},{"name":"TAD_ALL_ROWS","features":[142]},{"name":"UFromSz","features":[142]},{"name":"UI_CURRENT_PROVIDER_FIRST","features":[142]},{"name":"UI_SERVICE","features":[142]},{"name":"UlAddRef","features":[142]},{"name":"UlPropSize","features":[1,142,41]},{"name":"UlRelease","features":[142]},{"name":"WABEXTDISPLAY","features":[1,142]},{"name":"WABIMPORTPARAM","features":[1,142]},{"name":"WABOBJECT_LDAPURL_RETURN_MAILUSER","features":[142]},{"name":"WABOBJECT_ME_NEW","features":[142]},{"name":"WABOBJECT_ME_NOCREATE","features":[142]},{"name":"WAB_CONTEXT_ADRLIST","features":[142]},{"name":"WAB_DISPLAY_ISNTDS","features":[142]},{"name":"WAB_DISPLAY_LDAPURL","features":[142]},{"name":"WAB_DLL_NAME","features":[142]},{"name":"WAB_DLL_PATH_KEY","features":[142]},{"name":"WAB_ENABLE_PROFILES","features":[142]},{"name":"WAB_IGNORE_PROFILES","features":[142]},{"name":"WAB_LOCAL_CONTAINERS","features":[142]},{"name":"WAB_PARAM","features":[1,142]},{"name":"WAB_PROFILE_CONTENTS","features":[142]},{"name":"WAB_USE_OE_SENDMAIL","features":[142]},{"name":"WAB_VCARD_FILE","features":[142]},{"name":"WAB_VCARD_STREAM","features":[142]},{"name":"WrapCompressedRTFStream","features":[142]},{"name":"WrapStoreEntryID","features":[142]},{"name":"__UPV","features":[1,142,41]},{"name":"cchProfileNameMax","features":[142]},{"name":"cchProfilePassMax","features":[142]},{"name":"fMapiUnicode","features":[142]},{"name":"genderFemale","features":[142]},{"name":"genderMale","features":[142]},{"name":"genderUnspecified","features":[142]},{"name":"hrSuccess","features":[142]},{"name":"szHrDispatchNotifications","features":[142]},{"name":"szMAPINotificationMsg","features":[142]},{"name":"szScCreateConversationIndex","features":[142]}],"529":[{"name":"AMSI_ATTRIBUTE","features":[151]},{"name":"AMSI_ATTRIBUTE_ALL_ADDRESS","features":[151]},{"name":"AMSI_ATTRIBUTE_ALL_SIZE","features":[151]},{"name":"AMSI_ATTRIBUTE_APP_NAME","features":[151]},{"name":"AMSI_ATTRIBUTE_CONTENT_ADDRESS","features":[151]},{"name":"AMSI_ATTRIBUTE_CONTENT_NAME","features":[151]},{"name":"AMSI_ATTRIBUTE_CONTENT_SIZE","features":[151]},{"name":"AMSI_ATTRIBUTE_QUIET","features":[151]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_ADDRESS","features":[151]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_SIZE","features":[151]},{"name":"AMSI_ATTRIBUTE_SESSION","features":[151]},{"name":"AMSI_RESULT","features":[151]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_END","features":[151]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_START","features":[151]},{"name":"AMSI_RESULT_CLEAN","features":[151]},{"name":"AMSI_RESULT_DETECTED","features":[151]},{"name":"AMSI_RESULT_NOT_DETECTED","features":[151]},{"name":"AMSI_UAC_MSI_ACTION","features":[151]},{"name":"AMSI_UAC_MSI_ACTION_INSTALL","features":[151]},{"name":"AMSI_UAC_MSI_ACTION_MAINTENANCE","features":[151]},{"name":"AMSI_UAC_MSI_ACTION_MAX","features":[151]},{"name":"AMSI_UAC_MSI_ACTION_UNINSTALL","features":[151]},{"name":"AMSI_UAC_MSI_ACTION_UPDATE","features":[151]},{"name":"AMSI_UAC_REQUEST_AX_INFO","features":[151]},{"name":"AMSI_UAC_REQUEST_COM_INFO","features":[151]},{"name":"AMSI_UAC_REQUEST_CONTEXT","features":[1,151]},{"name":"AMSI_UAC_REQUEST_EXE_INFO","features":[151]},{"name":"AMSI_UAC_REQUEST_MSI_INFO","features":[151]},{"name":"AMSI_UAC_REQUEST_PACKAGED_APP_INFO","features":[151]},{"name":"AMSI_UAC_REQUEST_TYPE","features":[151]},{"name":"AMSI_UAC_REQUEST_TYPE_AX","features":[151]},{"name":"AMSI_UAC_REQUEST_TYPE_COM","features":[151]},{"name":"AMSI_UAC_REQUEST_TYPE_EXE","features":[151]},{"name":"AMSI_UAC_REQUEST_TYPE_MAX","features":[151]},{"name":"AMSI_UAC_REQUEST_TYPE_MSI","features":[151]},{"name":"AMSI_UAC_REQUEST_TYPE_PACKAGED_APP","features":[151]},{"name":"AMSI_UAC_TRUST_STATE","features":[151]},{"name":"AMSI_UAC_TRUST_STATE_BLOCKED","features":[151]},{"name":"AMSI_UAC_TRUST_STATE_MAX","features":[151]},{"name":"AMSI_UAC_TRUST_STATE_TRUSTED","features":[151]},{"name":"AMSI_UAC_TRUST_STATE_UNTRUSTED","features":[151]},{"name":"AmsiCloseSession","features":[151]},{"name":"AmsiInitialize","features":[151]},{"name":"AmsiNotifyOperation","features":[151]},{"name":"AmsiOpenSession","features":[151]},{"name":"AmsiScanBuffer","features":[151]},{"name":"AmsiScanString","features":[151]},{"name":"AmsiUninitialize","features":[151]},{"name":"CAntimalware","features":[151]},{"name":"HAMSICONTEXT","features":[151]},{"name":"HAMSISESSION","features":[151]},{"name":"IAmsiStream","features":[151]},{"name":"IAntimalware","features":[151]},{"name":"IAntimalware2","features":[151]},{"name":"IAntimalwareProvider","features":[151]},{"name":"IAntimalwareProvider2","features":[151]},{"name":"IAntimalwareUacProvider","features":[151]},{"name":"InstallELAMCertificateInfo","features":[1,151]}],"530":[{"name":"ACTCTXA","features":[1,152]},{"name":"ACTCTXW","features":[1,152]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE","features":[152]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MAXVERSIONTESTED","features":[152]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MITIGATION","features":[152]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_OS","features":[152]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_UNKNOWN","features":[152]},{"name":"ACTCTX_REQUESTED_RUN_LEVEL","features":[152]},{"name":"ACTCTX_RUN_LEVEL_AS_INVOKER","features":[152]},{"name":"ACTCTX_RUN_LEVEL_HIGHEST_AVAILABLE","features":[152]},{"name":"ACTCTX_RUN_LEVEL_NUMBERS","features":[152]},{"name":"ACTCTX_RUN_LEVEL_REQUIRE_ADMIN","features":[152]},{"name":"ACTCTX_RUN_LEVEL_UNSPECIFIED","features":[152]},{"name":"ACTCTX_SECTION_KEYED_DATA","features":[1,152,34]},{"name":"ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION","features":[152]},{"name":"ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION","features":[152]},{"name":"ACTIVATION_CONTEXT_DETAILED_INFORMATION","features":[152]},{"name":"ACTIVATION_CONTEXT_QUERY_INDEX","features":[152]},{"name":"ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION","features":[152]},{"name":"ADVERTISEFLAGS","features":[152]},{"name":"ADVERTISEFLAGS_MACHINEASSIGN","features":[152]},{"name":"ADVERTISEFLAGS_USERASSIGN","features":[152]},{"name":"APPLY_OPTION_FAIL_IF_CLOSE","features":[152]},{"name":"APPLY_OPTION_FAIL_IF_EXACT","features":[152]},{"name":"APPLY_OPTION_TEST_ONLY","features":[152]},{"name":"APPLY_OPTION_VALID_FLAGS","features":[152]},{"name":"ASM_BINDF_BINPATH_PROBE_ONLY","features":[152]},{"name":"ASM_BINDF_FORCE_CACHE_INSTALL","features":[152]},{"name":"ASM_BINDF_PARENT_ASM_HINT","features":[152]},{"name":"ASM_BINDF_RFS_INTEGRITY_CHECK","features":[152]},{"name":"ASM_BINDF_RFS_MODULE_CHECK","features":[152]},{"name":"ASM_BINDF_SHARED_BINPATH_HINT","features":[152]},{"name":"ASM_BIND_FLAGS","features":[152]},{"name":"ASM_CMPF_ALL","features":[152]},{"name":"ASM_CMPF_BUILD_NUMBER","features":[152]},{"name":"ASM_CMPF_CULTURE","features":[152]},{"name":"ASM_CMPF_CUSTOM","features":[152]},{"name":"ASM_CMPF_DEFAULT","features":[152]},{"name":"ASM_CMPF_MAJOR_VERSION","features":[152]},{"name":"ASM_CMPF_MINOR_VERSION","features":[152]},{"name":"ASM_CMPF_NAME","features":[152]},{"name":"ASM_CMPF_PUBLIC_KEY_TOKEN","features":[152]},{"name":"ASM_CMPF_REVISION_NUMBER","features":[152]},{"name":"ASM_CMP_FLAGS","features":[152]},{"name":"ASM_DISPLAYF_CULTURE","features":[152]},{"name":"ASM_DISPLAYF_CUSTOM","features":[152]},{"name":"ASM_DISPLAYF_LANGUAGEID","features":[152]},{"name":"ASM_DISPLAYF_PROCESSORARCHITECTURE","features":[152]},{"name":"ASM_DISPLAYF_PUBLIC_KEY","features":[152]},{"name":"ASM_DISPLAYF_PUBLIC_KEY_TOKEN","features":[152]},{"name":"ASM_DISPLAYF_VERSION","features":[152]},{"name":"ASM_DISPLAY_FLAGS","features":[152]},{"name":"ASM_NAME","features":[152]},{"name":"ASM_NAME_ALIAS","features":[152]},{"name":"ASM_NAME_BUILD_NUMBER","features":[152]},{"name":"ASM_NAME_CODEBASE_LASTMOD","features":[152]},{"name":"ASM_NAME_CODEBASE_URL","features":[152]},{"name":"ASM_NAME_CULTURE","features":[152]},{"name":"ASM_NAME_CUSTOM","features":[152]},{"name":"ASM_NAME_HASH_ALGID","features":[152]},{"name":"ASM_NAME_HASH_VALUE","features":[152]},{"name":"ASM_NAME_MAJOR_VERSION","features":[152]},{"name":"ASM_NAME_MAX_PARAMS","features":[152]},{"name":"ASM_NAME_MINOR_VERSION","features":[152]},{"name":"ASM_NAME_MVID","features":[152]},{"name":"ASM_NAME_NAME","features":[152]},{"name":"ASM_NAME_NULL_CUSTOM","features":[152]},{"name":"ASM_NAME_NULL_PUBLIC_KEY","features":[152]},{"name":"ASM_NAME_NULL_PUBLIC_KEY_TOKEN","features":[152]},{"name":"ASM_NAME_OSINFO_ARRAY","features":[152]},{"name":"ASM_NAME_PROCESSOR_ID_ARRAY","features":[152]},{"name":"ASM_NAME_PUBLIC_KEY","features":[152]},{"name":"ASM_NAME_PUBLIC_KEY_TOKEN","features":[152]},{"name":"ASM_NAME_REVISION_NUMBER","features":[152]},{"name":"ASSEMBLYINFO_FLAG_INSTALLED","features":[152]},{"name":"ASSEMBLYINFO_FLAG_PAYLOADRESIDENT","features":[152]},{"name":"ASSEMBLY_FILE_DETAILED_INFORMATION","features":[152]},{"name":"ASSEMBLY_INFO","features":[152]},{"name":"ActivateActCtx","features":[1,152]},{"name":"AddRefActCtx","features":[1,152]},{"name":"ApplyDeltaA","features":[1,152]},{"name":"ApplyDeltaB","features":[1,152]},{"name":"ApplyDeltaGetReverseB","features":[1,152]},{"name":"ApplyDeltaProvidedB","features":[1,152]},{"name":"ApplyDeltaW","features":[1,152]},{"name":"ApplyPatchToFileA","features":[1,152]},{"name":"ApplyPatchToFileByBuffers","features":[1,152]},{"name":"ApplyPatchToFileByHandles","features":[1,152]},{"name":"ApplyPatchToFileByHandlesEx","features":[1,152]},{"name":"ApplyPatchToFileExA","features":[1,152]},{"name":"ApplyPatchToFileExW","features":[1,152]},{"name":"ApplyPatchToFileW","features":[1,152]},{"name":"CANOF_PARSE_DISPLAY_NAME","features":[152]},{"name":"CANOF_SET_DEFAULT_VALUES","features":[152]},{"name":"CLSID_EvalCom2","features":[152]},{"name":"CLSID_MsmMerge2","features":[152]},{"name":"COMPATIBILITY_CONTEXT_ELEMENT","features":[152]},{"name":"CREATE_ASM_NAME_OBJ_FLAGS","features":[152]},{"name":"CreateActCtxA","features":[1,152]},{"name":"CreateActCtxW","features":[1,152]},{"name":"CreateDeltaA","features":[1,68,152]},{"name":"CreateDeltaB","features":[1,68,152]},{"name":"CreateDeltaW","features":[1,68,152]},{"name":"CreatePatchFileA","features":[1,152]},{"name":"CreatePatchFileByHandles","features":[1,152]},{"name":"CreatePatchFileByHandlesEx","features":[1,152]},{"name":"CreatePatchFileExA","features":[1,152]},{"name":"CreatePatchFileExW","features":[1,152]},{"name":"CreatePatchFileW","features":[1,152]},{"name":"DEFAULT_DISK_ID","features":[152]},{"name":"DEFAULT_FILE_SEQUENCE_START","features":[152]},{"name":"DEFAULT_MINIMUM_REQUIRED_MSI_VERSION","features":[152]},{"name":"DELTA_HASH","features":[152]},{"name":"DELTA_HEADER_INFO","features":[1,68,152]},{"name":"DELTA_INPUT","features":[1,152]},{"name":"DELTA_MAX_HASH_SIZE","features":[152]},{"name":"DELTA_OUTPUT","features":[152]},{"name":"DeactivateActCtx","features":[1,152]},{"name":"DeltaFree","features":[1,152]},{"name":"DeltaNormalizeProvidedB","features":[1,152]},{"name":"ERROR_PATCH_BIGGER_THAN_COMPRESSED","features":[152]},{"name":"ERROR_PATCH_CORRUPT","features":[152]},{"name":"ERROR_PATCH_DECODE_FAILURE","features":[152]},{"name":"ERROR_PATCH_ENCODE_FAILURE","features":[152]},{"name":"ERROR_PATCH_IMAGEHLP_FAILURE","features":[152]},{"name":"ERROR_PATCH_INVALID_OPTIONS","features":[152]},{"name":"ERROR_PATCH_NEWER_FORMAT","features":[152]},{"name":"ERROR_PATCH_NOT_AVAILABLE","features":[152]},{"name":"ERROR_PATCH_NOT_NECESSARY","features":[152]},{"name":"ERROR_PATCH_RETAIN_RANGES_DIFFER","features":[152]},{"name":"ERROR_PATCH_SAME_FILE","features":[152]},{"name":"ERROR_PATCH_WRONG_FILE","features":[152]},{"name":"ERROR_PCW_BAD_API_PATCHING_SYMBOL_FLAGS","features":[152]},{"name":"ERROR_PCW_BAD_FAMILY_RANGE_NAME","features":[152]},{"name":"ERROR_PCW_BAD_FILE_SEQUENCE_START","features":[152]},{"name":"ERROR_PCW_BAD_GUIDS_TO_REPLACE","features":[152]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_DISKID","features":[152]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_FILESEQSTART","features":[152]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_NAME","features":[152]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_SRC_PROP","features":[152]},{"name":"ERROR_PCW_BAD_MAJOR_VERSION","features":[152]},{"name":"ERROR_PCW_BAD_PATCH_GUID","features":[152]},{"name":"ERROR_PCW_BAD_PRODUCTVERSION_VALIDATION","features":[152]},{"name":"ERROR_PCW_BAD_SEQUENCE","features":[152]},{"name":"ERROR_PCW_BAD_SUPERCEDENCE","features":[152]},{"name":"ERROR_PCW_BAD_TARGET","features":[152]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_NAME","features":[152]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_CODE","features":[152]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_VERSION","features":[152]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADED","features":[152]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADE_CODE","features":[152]},{"name":"ERROR_PCW_BAD_TARGET_PRODUCT_CODE_LIST","features":[152]},{"name":"ERROR_PCW_BAD_TGT_UPD_IMAGES","features":[152]},{"name":"ERROR_PCW_BAD_TRANSFORMSET","features":[152]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_FAMILY","features":[152]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_NAME","features":[152]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_CODE","features":[152]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_VERSION","features":[152]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_UPGRADE_CODE","features":[152]},{"name":"ERROR_PCW_BAD_VERSION_STRING","features":[152]},{"name":"ERROR_PCW_BASE","features":[152]},{"name":"ERROR_PCW_CANNOT_CREATE_TABLE","features":[152]},{"name":"ERROR_PCW_CANNOT_RUN_MAKECAB","features":[152]},{"name":"ERROR_PCW_CANNOT_WRITE_DDF","features":[152]},{"name":"ERROR_PCW_CANT_COPY_FILE_TO_TEMP_FOLDER","features":[152]},{"name":"ERROR_PCW_CANT_CREATE_ONE_PATCH_FILE","features":[152]},{"name":"ERROR_PCW_CANT_CREATE_PATCH_FILE","features":[152]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO","features":[152]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO_POUND","features":[152]},{"name":"ERROR_PCW_CANT_CREATE_TEMP_FOLDER","features":[152]},{"name":"ERROR_PCW_CANT_DELETE_TEMP_FOLDER","features":[152]},{"name":"ERROR_PCW_CANT_GENERATE_SEQUENCEINFO_MAJORUPGD","features":[152]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM","features":[152]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM_POUND","features":[152]},{"name":"ERROR_PCW_CANT_OVERWRITE_PATCH","features":[152]},{"name":"ERROR_PCW_CANT_READ_FILE","features":[152]},{"name":"ERROR_PCW_CREATEFILE_LOG_FAILED","features":[152]},{"name":"ERROR_PCW_DUPLICATE_SEQUENCE_RECORD","features":[152]},{"name":"ERROR_PCW_DUP_IMAGE_FAMILY_NAME","features":[152]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_NAME","features":[152]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_PACKCODE","features":[152]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_NAME","features":[152]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_PACKCODE","features":[152]},{"name":"ERROR_PCW_ERROR_WRITING_TO_LOG","features":[152]},{"name":"ERROR_PCW_EXECUTE_VIEW","features":[152]},{"name":"ERROR_PCW_EXTFILE_BAD_FAMILY_FIELD","features":[152]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_LENGTHS","features":[152]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_OFFSETS","features":[152]},{"name":"ERROR_PCW_EXTFILE_BAD_RETAIN_OFFSETS","features":[152]},{"name":"ERROR_PCW_EXTFILE_BLANK_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_EXTFILE_BLANK_PATH_TO_FILE","features":[152]},{"name":"ERROR_PCW_EXTFILE_IGNORE_COUNT_MISMATCH","features":[152]},{"name":"ERROR_PCW_EXTFILE_LONG_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_LENGTHS","features":[152]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_OFFSETS","features":[152]},{"name":"ERROR_PCW_EXTFILE_LONG_PATH_TO_FILE","features":[152]},{"name":"ERROR_PCW_EXTFILE_LONG_RETAIN_OFFSETS","features":[152]},{"name":"ERROR_PCW_EXTFILE_MISSING_FILE","features":[152]},{"name":"ERROR_PCW_FAILED_CREATE_TRANSFORM","features":[152]},{"name":"ERROR_PCW_FAILED_EXPAND_PATH","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_LENGTHS","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_OFFSETS","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_LENGTHS","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_OFFSETS","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_COUNT_MISMATCH","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_LENGTHS","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_OFFSETS","features":[152]},{"name":"ERROR_PCW_FAMILY_RANGE_NAME_TOO_LONG","features":[152]},{"name":"ERROR_PCW_IMAGE_FAMILY_NAME_TOO_LONG","features":[152]},{"name":"ERROR_PCW_IMAGE_PATH_NOT_EXIST","features":[152]},{"name":"ERROR_PCW_INTERNAL_ERROR","features":[152]},{"name":"ERROR_PCW_INVALID_LOG_LEVEL","features":[152]},{"name":"ERROR_PCW_INVALID_MAJOR_VERSION","features":[152]},{"name":"ERROR_PCW_INVALID_PARAMETER","features":[152]},{"name":"ERROR_PCW_INVALID_PATCHMETADATA_PROP","features":[152]},{"name":"ERROR_PCW_INVALID_PATCH_TYPE_SEQUENCING","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_EXTERNALFILES","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_FAMILYFILERANGES","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_IMAGEFAMILIES","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_PATCHSEQUENCE","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTIES","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTY","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_TARGETFILES_OPTIONALDATA","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_TARGETIMAGES","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILESTOIGNORE","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILES_OPTIONALDATA","features":[152]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDIMAGES","features":[152]},{"name":"ERROR_PCW_INVALID_RANGE_ELEMENT","features":[152]},{"name":"ERROR_PCW_INVALID_SUPERCEDENCE","features":[152]},{"name":"ERROR_PCW_INVALID_SUPERSEDENCE_VALUE","features":[152]},{"name":"ERROR_PCW_INVALID_UI_LEVEL","features":[152]},{"name":"ERROR_PCW_LAX_VALIDATION_FLAGS","features":[152]},{"name":"ERROR_PCW_MAJOR_UPGD_WITHOUT_SEQUENCING","features":[152]},{"name":"ERROR_PCW_MATCHED_PRODUCT_VERSIONS","features":[152]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_CODES","features":[152]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[152]},{"name":"ERROR_PCW_MISSING_DIRECTORY_TABLE","features":[152]},{"name":"ERROR_PCW_MISSING_PATCHMETADATA","features":[152]},{"name":"ERROR_PCW_MISSING_PATCH_GUID","features":[152]},{"name":"ERROR_PCW_MISSING_PATCH_PATH","features":[152]},{"name":"ERROR_PCW_NO_UPGRADED_IMAGES_TO_PATCH","features":[152]},{"name":"ERROR_PCW_NULL_PATCHFAMILY","features":[152]},{"name":"ERROR_PCW_NULL_SEQUENCE_NUMBER","features":[152]},{"name":"ERROR_PCW_OBSOLETION_WITH_MSI30","features":[152]},{"name":"ERROR_PCW_OBSOLETION_WITH_PATCHSEQUENCE","features":[152]},{"name":"ERROR_PCW_OBSOLETION_WITH_SEQUENCE_DATA","features":[152]},{"name":"ERROR_PCW_OODS_COPYING_MSI","features":[152]},{"name":"ERROR_PCW_OPEN_VIEW","features":[152]},{"name":"ERROR_PCW_OUT_OF_MEMORY","features":[152]},{"name":"ERROR_PCW_PATCHMETADATA_PROP_NOT_SET","features":[152]},{"name":"ERROR_PCW_PCP_BAD_FORMAT","features":[152]},{"name":"ERROR_PCW_PCP_DOESNT_EXIST","features":[152]},{"name":"ERROR_PCW_SEQUENCING_BAD_TARGET","features":[152]},{"name":"ERROR_PCW_TARGET_BAD_PROD_CODE_VAL","features":[152]},{"name":"ERROR_PCW_TARGET_BAD_PROD_VALIDATE","features":[152]},{"name":"ERROR_PCW_TARGET_IMAGE_COMPRESSED","features":[152]},{"name":"ERROR_PCW_TARGET_IMAGE_NAME_TOO_LONG","features":[152]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_EMPTY","features":[152]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_EXIST","features":[152]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_MSI","features":[152]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_TOO_LONG","features":[152]},{"name":"ERROR_PCW_TARGET_MISSING_SRC_FILES","features":[152]},{"name":"ERROR_PCW_TARGET_WRONG_PRODUCT_VERSION_COMP","features":[152]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_LENGTHS","features":[152]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_OFFSETS","features":[152]},{"name":"ERROR_PCW_TFILEDATA_BAD_RETAIN_OFFSETS","features":[152]},{"name":"ERROR_PCW_TFILEDATA_BAD_TARGET_FIELD","features":[152]},{"name":"ERROR_PCW_TFILEDATA_BLANK_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_TFILEDATA_IGNORE_COUNT_MISMATCH","features":[152]},{"name":"ERROR_PCW_TFILEDATA_LONG_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_LENGTHS","features":[152]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_OFFSETS","features":[152]},{"name":"ERROR_PCW_TFILEDATA_LONG_RETAIN_OFFSETS","features":[152]},{"name":"ERROR_PCW_TFILEDATA_MISSING_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_UFILEDATA_BAD_UPGRADED_FIELD","features":[152]},{"name":"ERROR_PCW_UFILEDATA_BLANK_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_UFILEDATA_LONG_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_UFILEDATA_MISSING_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_UPGRADED_FIELD","features":[152]},{"name":"ERROR_PCW_UFILEIGNORE_BLANK_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_UFILEIGNORE_LONG_FILE_TABLE_KEY","features":[152]},{"name":"ERROR_PCW_UNKNOWN_ERROR","features":[152]},{"name":"ERROR_PCW_UNKNOWN_INFO","features":[152]},{"name":"ERROR_PCW_UNKNOWN_WARN","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_COMPRESSED","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_NAME_TOO_LONG","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_EXIST","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_MSI","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_TOO_LONG","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_EMPTY","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_EXIST","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_MSI","features":[152]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_TOO_LONG","features":[152]},{"name":"ERROR_PCW_UPGRADED_MISSING_SRC_FILES","features":[152]},{"name":"ERROR_PCW_VIEW_FETCH","features":[152]},{"name":"ERROR_PCW_WRITE_SUMMARY_PROPERTIES","features":[152]},{"name":"ERROR_PCW_WRONG_PATCHMETADATA_STRD_PROP","features":[152]},{"name":"ERROR_ROLLBACK_DISABLED","features":[152]},{"name":"ExtractPatchHeaderToFileA","features":[1,152]},{"name":"ExtractPatchHeaderToFileByHandles","features":[1,152]},{"name":"ExtractPatchHeaderToFileW","features":[1,152]},{"name":"FUSION_INSTALL_REFERENCE","features":[152]},{"name":"FUSION_REFCOUNT_FILEPATH_GUID","features":[152]},{"name":"FUSION_REFCOUNT_OPAQUE_STRING_GUID","features":[152]},{"name":"FUSION_REFCOUNT_UNINSTALL_SUBKEY_GUID","features":[152]},{"name":"FindActCtxSectionGuid","features":[1,152,34]},{"name":"FindActCtxSectionStringA","features":[1,152,34]},{"name":"FindActCtxSectionStringW","features":[1,152,34]},{"name":"GetCurrentActCtx","features":[1,152]},{"name":"GetDeltaInfoA","features":[1,68,152]},{"name":"GetDeltaInfoB","features":[1,68,152]},{"name":"GetDeltaInfoW","features":[1,68,152]},{"name":"GetDeltaSignatureA","features":[1,68,152]},{"name":"GetDeltaSignatureB","features":[1,68,152]},{"name":"GetDeltaSignatureW","features":[1,68,152]},{"name":"GetFilePatchSignatureA","features":[1,152]},{"name":"GetFilePatchSignatureByBuffer","features":[1,152]},{"name":"GetFilePatchSignatureByHandle","features":[1,152]},{"name":"GetFilePatchSignatureW","features":[1,152]},{"name":"IACTIONNAME_ADMIN","features":[152]},{"name":"IACTIONNAME_ADVERTISE","features":[152]},{"name":"IACTIONNAME_COLLECTUSERINFO","features":[152]},{"name":"IACTIONNAME_FIRSTRUN","features":[152]},{"name":"IACTIONNAME_INSTALL","features":[152]},{"name":"IACTIONNAME_SEQUENCE","features":[152]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_ALREADY_INSTALLED","features":[152]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_INSTALLED","features":[152]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_REFRESHED","features":[152]},{"name":"IASSEMBLYCACHEITEM_COMMIT_FLAG_REFRESH","features":[152]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION","features":[152]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_ALREADY_UNINSTALLED","features":[152]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_DELETE_PENDING","features":[152]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_STILL_IN_USE","features":[152]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_UNINSTALLED","features":[152]},{"name":"IAssemblyCache","features":[152]},{"name":"IAssemblyCacheItem","features":[152]},{"name":"IAssemblyName","features":[152]},{"name":"IEnumMsmDependency","features":[152]},{"name":"IEnumMsmError","features":[152]},{"name":"IEnumMsmString","features":[152]},{"name":"IMsmDependencies","features":[152]},{"name":"IMsmDependency","features":[152]},{"name":"IMsmError","features":[152]},{"name":"IMsmErrors","features":[152]},{"name":"IMsmGetFiles","features":[152]},{"name":"IMsmMerge","features":[152]},{"name":"IMsmStrings","features":[152]},{"name":"INFO_BASE","features":[152]},{"name":"INFO_ENTERING_PHASE_I","features":[152]},{"name":"INFO_ENTERING_PHASE_II","features":[152]},{"name":"INFO_ENTERING_PHASE_III","features":[152]},{"name":"INFO_ENTERING_PHASE_IV","features":[152]},{"name":"INFO_ENTERING_PHASE_I_VALIDATION","features":[152]},{"name":"INFO_ENTERING_PHASE_V","features":[152]},{"name":"INFO_GENERATING_METADATA","features":[152]},{"name":"INFO_PASSED_MAIN_CONTROL","features":[152]},{"name":"INFO_PATCHCACHE_FILEINFO_FAILURE","features":[152]},{"name":"INFO_PATCHCACHE_PCI_READFAILURE","features":[152]},{"name":"INFO_PATCHCACHE_PCI_WRITEFAILURE","features":[152]},{"name":"INFO_PCP_PATH","features":[152]},{"name":"INFO_PROPERTY","features":[152]},{"name":"INFO_SET_OPTIONS","features":[152]},{"name":"INFO_SUCCESSFUL_PATCH_CREATION","features":[152]},{"name":"INFO_TEMP_DIR","features":[152]},{"name":"INFO_TEMP_DIR_CLEANUP","features":[152]},{"name":"INFO_USING_USER_MSI_FOR_PATCH_TABLES","features":[152]},{"name":"INSTALLFEATUREATTRIBUTE","features":[152]},{"name":"INSTALLFEATUREATTRIBUTE_DISALLOWADVERTISE","features":[152]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORADVERTISE","features":[152]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORLOCAL","features":[152]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORSOURCE","features":[152]},{"name":"INSTALLFEATUREATTRIBUTE_FOLLOWPARENT","features":[152]},{"name":"INSTALLFEATUREATTRIBUTE_NOUNSUPPORTEDADVERTISE","features":[152]},{"name":"INSTALLLEVEL","features":[152]},{"name":"INSTALLLEVEL_DEFAULT","features":[152]},{"name":"INSTALLLEVEL_MAXIMUM","features":[152]},{"name":"INSTALLLEVEL_MINIMUM","features":[152]},{"name":"INSTALLLOGATTRIBUTES","features":[152]},{"name":"INSTALLLOGATTRIBUTES_APPEND","features":[152]},{"name":"INSTALLLOGATTRIBUTES_FLUSHEACHLINE","features":[152]},{"name":"INSTALLLOGMODE","features":[152]},{"name":"INSTALLLOGMODE_ACTIONDATA","features":[152]},{"name":"INSTALLLOGMODE_ACTIONSTART","features":[152]},{"name":"INSTALLLOGMODE_COMMONDATA","features":[152]},{"name":"INSTALLLOGMODE_ERROR","features":[152]},{"name":"INSTALLLOGMODE_EXTRADEBUG","features":[152]},{"name":"INSTALLLOGMODE_FATALEXIT","features":[152]},{"name":"INSTALLLOGMODE_FILESINUSE","features":[152]},{"name":"INSTALLLOGMODE_INFO","features":[152]},{"name":"INSTALLLOGMODE_INITIALIZE","features":[152]},{"name":"INSTALLLOGMODE_INSTALLEND","features":[152]},{"name":"INSTALLLOGMODE_INSTALLSTART","features":[152]},{"name":"INSTALLLOGMODE_LOGONLYONERROR","features":[152]},{"name":"INSTALLLOGMODE_LOGPERFORMANCE","features":[152]},{"name":"INSTALLLOGMODE_OUTOFDISKSPACE","features":[152]},{"name":"INSTALLLOGMODE_PROGRESS","features":[152]},{"name":"INSTALLLOGMODE_PROPERTYDUMP","features":[152]},{"name":"INSTALLLOGMODE_RESOLVESOURCE","features":[152]},{"name":"INSTALLLOGMODE_RMFILESINUSE","features":[152]},{"name":"INSTALLLOGMODE_SHOWDIALOG","features":[152]},{"name":"INSTALLLOGMODE_TERMINATE","features":[152]},{"name":"INSTALLLOGMODE_USER","features":[152]},{"name":"INSTALLLOGMODE_VERBOSE","features":[152]},{"name":"INSTALLLOGMODE_WARNING","features":[152]},{"name":"INSTALLMESSAGE","features":[152]},{"name":"INSTALLMESSAGE_ACTIONDATA","features":[152]},{"name":"INSTALLMESSAGE_ACTIONSTART","features":[152]},{"name":"INSTALLMESSAGE_COMMONDATA","features":[152]},{"name":"INSTALLMESSAGE_ERROR","features":[152]},{"name":"INSTALLMESSAGE_FATALEXIT","features":[152]},{"name":"INSTALLMESSAGE_FILESINUSE","features":[152]},{"name":"INSTALLMESSAGE_INFO","features":[152]},{"name":"INSTALLMESSAGE_INITIALIZE","features":[152]},{"name":"INSTALLMESSAGE_INSTALLEND","features":[152]},{"name":"INSTALLMESSAGE_INSTALLSTART","features":[152]},{"name":"INSTALLMESSAGE_OUTOFDISKSPACE","features":[152]},{"name":"INSTALLMESSAGE_PERFORMANCE","features":[152]},{"name":"INSTALLMESSAGE_PROGRESS","features":[152]},{"name":"INSTALLMESSAGE_RESOLVESOURCE","features":[152]},{"name":"INSTALLMESSAGE_RMFILESINUSE","features":[152]},{"name":"INSTALLMESSAGE_SHOWDIALOG","features":[152]},{"name":"INSTALLMESSAGE_TERMINATE","features":[152]},{"name":"INSTALLMESSAGE_TYPEMASK","features":[152]},{"name":"INSTALLMESSAGE_USER","features":[152]},{"name":"INSTALLMESSAGE_WARNING","features":[152]},{"name":"INSTALLMODE","features":[152]},{"name":"INSTALLMODE_DEFAULT","features":[152]},{"name":"INSTALLMODE_EXISTING","features":[152]},{"name":"INSTALLMODE_NODETECTION","features":[152]},{"name":"INSTALLMODE_NODETECTION_ANY","features":[152]},{"name":"INSTALLMODE_NOSOURCERESOLUTION","features":[152]},{"name":"INSTALLPROPERTY_ASSIGNMENTTYPE","features":[152]},{"name":"INSTALLPROPERTY_AUTHORIZED_LUA_APP","features":[152]},{"name":"INSTALLPROPERTY_DISKPROMPT","features":[152]},{"name":"INSTALLPROPERTY_DISPLAYNAME","features":[152]},{"name":"INSTALLPROPERTY_HELPLINK","features":[152]},{"name":"INSTALLPROPERTY_HELPTELEPHONE","features":[152]},{"name":"INSTALLPROPERTY_INSTALLDATE","features":[152]},{"name":"INSTALLPROPERTY_INSTALLEDLANGUAGE","features":[152]},{"name":"INSTALLPROPERTY_INSTALLEDPRODUCTNAME","features":[152]},{"name":"INSTALLPROPERTY_INSTALLLOCATION","features":[152]},{"name":"INSTALLPROPERTY_INSTALLSOURCE","features":[152]},{"name":"INSTALLPROPERTY_INSTANCETYPE","features":[152]},{"name":"INSTALLPROPERTY_LANGUAGE","features":[152]},{"name":"INSTALLPROPERTY_LASTUSEDSOURCE","features":[152]},{"name":"INSTALLPROPERTY_LASTUSEDTYPE","features":[152]},{"name":"INSTALLPROPERTY_LOCALPACKAGE","features":[152]},{"name":"INSTALLPROPERTY_LUAENABLED","features":[152]},{"name":"INSTALLPROPERTY_MEDIAPACKAGEPATH","features":[152]},{"name":"INSTALLPROPERTY_MOREINFOURL","features":[152]},{"name":"INSTALLPROPERTY_PACKAGECODE","features":[152]},{"name":"INSTALLPROPERTY_PACKAGENAME","features":[152]},{"name":"INSTALLPROPERTY_PATCHSTATE","features":[152]},{"name":"INSTALLPROPERTY_PATCHTYPE","features":[152]},{"name":"INSTALLPROPERTY_PRODUCTICON","features":[152]},{"name":"INSTALLPROPERTY_PRODUCTID","features":[152]},{"name":"INSTALLPROPERTY_PRODUCTNAME","features":[152]},{"name":"INSTALLPROPERTY_PRODUCTSTATE","features":[152]},{"name":"INSTALLPROPERTY_PUBLISHER","features":[152]},{"name":"INSTALLPROPERTY_REGCOMPANY","features":[152]},{"name":"INSTALLPROPERTY_REGOWNER","features":[152]},{"name":"INSTALLPROPERTY_TRANSFORMS","features":[152]},{"name":"INSTALLPROPERTY_UNINSTALLABLE","features":[152]},{"name":"INSTALLPROPERTY_URLINFOABOUT","features":[152]},{"name":"INSTALLPROPERTY_URLUPDATEINFO","features":[152]},{"name":"INSTALLPROPERTY_VERSION","features":[152]},{"name":"INSTALLPROPERTY_VERSIONMAJOR","features":[152]},{"name":"INSTALLPROPERTY_VERSIONMINOR","features":[152]},{"name":"INSTALLPROPERTY_VERSIONSTRING","features":[152]},{"name":"INSTALLSTATE","features":[152]},{"name":"INSTALLSTATE_ABSENT","features":[152]},{"name":"INSTALLSTATE_ADVERTISED","features":[152]},{"name":"INSTALLSTATE_BADCONFIG","features":[152]},{"name":"INSTALLSTATE_BROKEN","features":[152]},{"name":"INSTALLSTATE_DEFAULT","features":[152]},{"name":"INSTALLSTATE_INCOMPLETE","features":[152]},{"name":"INSTALLSTATE_INVALIDARG","features":[152]},{"name":"INSTALLSTATE_LOCAL","features":[152]},{"name":"INSTALLSTATE_MOREDATA","features":[152]},{"name":"INSTALLSTATE_NOTUSED","features":[152]},{"name":"INSTALLSTATE_REMOVED","features":[152]},{"name":"INSTALLSTATE_SOURCE","features":[152]},{"name":"INSTALLSTATE_SOURCEABSENT","features":[152]},{"name":"INSTALLSTATE_UNKNOWN","features":[152]},{"name":"INSTALLTYPE","features":[152]},{"name":"INSTALLTYPE_DEFAULT","features":[152]},{"name":"INSTALLTYPE_NETWORK_IMAGE","features":[152]},{"name":"INSTALLTYPE_SINGLE_INSTANCE","features":[152]},{"name":"INSTALLUILEVEL","features":[152]},{"name":"INSTALLUILEVEL_BASIC","features":[152]},{"name":"INSTALLUILEVEL_DEFAULT","features":[152]},{"name":"INSTALLUILEVEL_ENDDIALOG","features":[152]},{"name":"INSTALLUILEVEL_FULL","features":[152]},{"name":"INSTALLUILEVEL_HIDECANCEL","features":[152]},{"name":"INSTALLUILEVEL_NOCHANGE","features":[152]},{"name":"INSTALLUILEVEL_NONE","features":[152]},{"name":"INSTALLUILEVEL_PROGRESSONLY","features":[152]},{"name":"INSTALLUILEVEL_REDUCED","features":[152]},{"name":"INSTALLUILEVEL_SOURCERESONLY","features":[152]},{"name":"INSTALLUILEVEL_UACONLY","features":[152]},{"name":"INSTALLUI_HANDLERA","features":[152]},{"name":"INSTALLUI_HANDLERW","features":[152]},{"name":"IPMApplicationInfo","features":[152]},{"name":"IPMApplicationInfoEnumerator","features":[152]},{"name":"IPMBackgroundServiceAgentInfo","features":[152]},{"name":"IPMBackgroundServiceAgentInfoEnumerator","features":[152]},{"name":"IPMBackgroundWorkerInfo","features":[152]},{"name":"IPMBackgroundWorkerInfoEnumerator","features":[152]},{"name":"IPMDeploymentManager","features":[152]},{"name":"IPMEnumerationManager","features":[152]},{"name":"IPMExtensionCachedFileUpdaterInfo","features":[152]},{"name":"IPMExtensionContractInfo","features":[152]},{"name":"IPMExtensionFileExtensionInfo","features":[152]},{"name":"IPMExtensionFileOpenPickerInfo","features":[152]},{"name":"IPMExtensionFileSavePickerInfo","features":[152]},{"name":"IPMExtensionInfo","features":[152]},{"name":"IPMExtensionInfoEnumerator","features":[152]},{"name":"IPMExtensionProtocolInfo","features":[152]},{"name":"IPMExtensionShareTargetInfo","features":[152]},{"name":"IPMLiveTileJobInfo","features":[152]},{"name":"IPMLiveTileJobInfoEnumerator","features":[152]},{"name":"IPMTaskInfo","features":[152]},{"name":"IPMTaskInfoEnumerator","features":[152]},{"name":"IPMTileInfo","features":[152]},{"name":"IPMTileInfoEnumerator","features":[152]},{"name":"IPMTilePropertyEnumerator","features":[152]},{"name":"IPMTilePropertyInfo","features":[152]},{"name":"IPROPNAME_ACTION","features":[152]},{"name":"IPROPNAME_ADMINTOOLS_FOLDER","features":[152]},{"name":"IPROPNAME_ADMINUSER","features":[152]},{"name":"IPROPNAME_ADMIN_PROPERTIES","features":[152]},{"name":"IPROPNAME_AFTERREBOOT","features":[152]},{"name":"IPROPNAME_ALLOWEDPROPERTIES","features":[152]},{"name":"IPROPNAME_ALLUSERS","features":[152]},{"name":"IPROPNAME_APPDATA_FOLDER","features":[152]},{"name":"IPROPNAME_ARM","features":[152]},{"name":"IPROPNAME_ARM64","features":[152]},{"name":"IPROPNAME_ARPAUTHORIZEDCDFPREFIX","features":[152]},{"name":"IPROPNAME_ARPCOMMENTS","features":[152]},{"name":"IPROPNAME_ARPCONTACT","features":[152]},{"name":"IPROPNAME_ARPHELPLINK","features":[152]},{"name":"IPROPNAME_ARPHELPTELEPHONE","features":[152]},{"name":"IPROPNAME_ARPINSTALLLOCATION","features":[152]},{"name":"IPROPNAME_ARPNOMODIFY","features":[152]},{"name":"IPROPNAME_ARPNOREMOVE","features":[152]},{"name":"IPROPNAME_ARPNOREPAIR","features":[152]},{"name":"IPROPNAME_ARPPRODUCTICON","features":[152]},{"name":"IPROPNAME_ARPREADME","features":[152]},{"name":"IPROPNAME_ARPSETTINGSIDENTIFIER","features":[152]},{"name":"IPROPNAME_ARPSHIMFLAGS","features":[152]},{"name":"IPROPNAME_ARPSHIMSERVICEPACKLEVEL","features":[152]},{"name":"IPROPNAME_ARPSHIMVERSIONNT","features":[152]},{"name":"IPROPNAME_ARPSIZE","features":[152]},{"name":"IPROPNAME_ARPSYSTEMCOMPONENT","features":[152]},{"name":"IPROPNAME_ARPURLINFOABOUT","features":[152]},{"name":"IPROPNAME_ARPURLUPDATEINFO","features":[152]},{"name":"IPROPNAME_AVAILABLEFREEREG","features":[152]},{"name":"IPROPNAME_BORDERSIDE","features":[152]},{"name":"IPROPNAME_BORDERTOP","features":[152]},{"name":"IPROPNAME_CAPTIONHEIGHT","features":[152]},{"name":"IPROPNAME_CARRYINGNDP","features":[152]},{"name":"IPROPNAME_CHECKCRCS","features":[152]},{"name":"IPROPNAME_COLORBITS","features":[152]},{"name":"IPROPNAME_COMMONAPPDATA_FOLDER","features":[152]},{"name":"IPROPNAME_COMMONFILES64_FOLDER","features":[152]},{"name":"IPROPNAME_COMMONFILES_FOLDER","features":[152]},{"name":"IPROPNAME_COMPANYNAME","features":[152]},{"name":"IPROPNAME_COMPONENTADDDEFAULT","features":[152]},{"name":"IPROPNAME_COMPONENTADDLOCAL","features":[152]},{"name":"IPROPNAME_COMPONENTADDSOURCE","features":[152]},{"name":"IPROPNAME_COMPUTERNAME","features":[152]},{"name":"IPROPNAME_COSTINGCOMPLETE","features":[152]},{"name":"IPROPNAME_CUSTOMACTIONDATA","features":[152]},{"name":"IPROPNAME_DATE","features":[152]},{"name":"IPROPNAME_DATETIME","features":[152]},{"name":"IPROPNAME_DEFAULTUIFONT","features":[152]},{"name":"IPROPNAME_DESKTOP_FOLDER","features":[152]},{"name":"IPROPNAME_DISABLEADVTSHORTCUTS","features":[152]},{"name":"IPROPNAME_DISABLEROLLBACK","features":[152]},{"name":"IPROPNAME_DISKPROMPT","features":[152]},{"name":"IPROPNAME_ENABLEUSERCONTROL","features":[152]},{"name":"IPROPNAME_ENFORCE_UPGRADE_COMPONENT_RULES","features":[152]},{"name":"IPROPNAME_EXECUTEACTION","features":[152]},{"name":"IPROPNAME_EXECUTEMODE","features":[152]},{"name":"IPROPNAME_FAVORITES_FOLDER","features":[152]},{"name":"IPROPNAME_FEATUREADDDEFAULT","features":[152]},{"name":"IPROPNAME_FEATUREADDLOCAL","features":[152]},{"name":"IPROPNAME_FEATUREADDSOURCE","features":[152]},{"name":"IPROPNAME_FEATUREADVERTISE","features":[152]},{"name":"IPROPNAME_FEATUREREMOVE","features":[152]},{"name":"IPROPNAME_FILEADDDEFAULT","features":[152]},{"name":"IPROPNAME_FILEADDLOCAL","features":[152]},{"name":"IPROPNAME_FILEADDSOURCE","features":[152]},{"name":"IPROPNAME_FONTS_FOLDER","features":[152]},{"name":"IPROPNAME_HIDDEN_PROPERTIES","features":[152]},{"name":"IPROPNAME_HIDECANCEL","features":[152]},{"name":"IPROPNAME_IA64","features":[152]},{"name":"IPROPNAME_INSTALLED","features":[152]},{"name":"IPROPNAME_INSTALLLANGUAGE","features":[152]},{"name":"IPROPNAME_INSTALLLEVEL","features":[152]},{"name":"IPROPNAME_INSTALLPERUSER","features":[152]},{"name":"IPROPNAME_INTEL","features":[152]},{"name":"IPROPNAME_INTEL64","features":[152]},{"name":"IPROPNAME_INTERNALINSTALLEDPERUSER","features":[152]},{"name":"IPROPNAME_ISADMINPACKAGE","features":[152]},{"name":"IPROPNAME_LEFTUNIT","features":[152]},{"name":"IPROPNAME_LIMITUI","features":[152]},{"name":"IPROPNAME_LOCALAPPDATA_FOLDER","features":[152]},{"name":"IPROPNAME_LOGACTION","features":[152]},{"name":"IPROPNAME_LOGONUSER","features":[152]},{"name":"IPROPNAME_MANUFACTURER","features":[152]},{"name":"IPROPNAME_MSIAMD64","features":[152]},{"name":"IPROPNAME_MSIDISABLEEEUI","features":[152]},{"name":"IPROPNAME_MSIDISABLELUAPATCHING","features":[152]},{"name":"IPROPNAME_MSIINSTANCEGUID","features":[152]},{"name":"IPROPNAME_MSILOGFILELOCATION","features":[152]},{"name":"IPROPNAME_MSILOGGINGMODE","features":[152]},{"name":"IPROPNAME_MSINEWINSTANCE","features":[152]},{"name":"IPROPNAME_MSINODISABLEMEDIA","features":[152]},{"name":"IPROPNAME_MSIPACKAGEDOWNLOADLOCALCOPY","features":[152]},{"name":"IPROPNAME_MSIPATCHDOWNLOADLOCALCOPY","features":[152]},{"name":"IPROPNAME_MSIPATCHREMOVE","features":[152]},{"name":"IPROPNAME_MSITABLETPC","features":[152]},{"name":"IPROPNAME_MSIX64","features":[152]},{"name":"IPROPNAME_MSI_FASTINSTALL","features":[152]},{"name":"IPROPNAME_MSI_REBOOT_PENDING","features":[152]},{"name":"IPROPNAME_MSI_RM_CONTROL","features":[152]},{"name":"IPROPNAME_MSI_RM_DISABLE_RESTART","features":[152]},{"name":"IPROPNAME_MSI_RM_SESSION_KEY","features":[152]},{"name":"IPROPNAME_MSI_RM_SHUTDOWN","features":[152]},{"name":"IPROPNAME_MSI_UAC_DEPLOYMENT_COMPLIANT","features":[152]},{"name":"IPROPNAME_MSI_UNINSTALL_SUPERSEDED_COMPONENTS","features":[152]},{"name":"IPROPNAME_MSI_USE_REAL_ADMIN_DETECTION","features":[152]},{"name":"IPROPNAME_MYPICTURES_FOLDER","features":[152]},{"name":"IPROPNAME_NETASSEMBLYSUPPORT","features":[152]},{"name":"IPROPNAME_NETHOOD_FOLDER","features":[152]},{"name":"IPROPNAME_NOCOMPANYNAME","features":[152]},{"name":"IPROPNAME_NOUSERNAME","features":[152]},{"name":"IPROPNAME_NTPRODUCTTYPE","features":[152]},{"name":"IPROPNAME_NTSUITEBACKOFFICE","features":[152]},{"name":"IPROPNAME_NTSUITEDATACENTER","features":[152]},{"name":"IPROPNAME_NTSUITEENTERPRISE","features":[152]},{"name":"IPROPNAME_NTSUITEPERSONAL","features":[152]},{"name":"IPROPNAME_NTSUITESMALLBUSINESS","features":[152]},{"name":"IPROPNAME_NTSUITESMALLBUSINESSRESTRICTED","features":[152]},{"name":"IPROPNAME_NTSUITEWEBSERVER","features":[152]},{"name":"IPROPNAME_OLEADVTSUPPORT","features":[152]},{"name":"IPROPNAME_OUTOFDISKSPACE","features":[152]},{"name":"IPROPNAME_OUTOFNORBDISKSPACE","features":[152]},{"name":"IPROPNAME_PATCH","features":[152]},{"name":"IPROPNAME_PATCHNEWPACKAGECODE","features":[152]},{"name":"IPROPNAME_PATCHNEWSUMMARYCOMMENTS","features":[152]},{"name":"IPROPNAME_PATCHNEWSUMMARYSUBJECT","features":[152]},{"name":"IPROPNAME_PERSONAL_FOLDER","features":[152]},{"name":"IPROPNAME_PHYSICALMEMORY","features":[152]},{"name":"IPROPNAME_PIDKEY","features":[152]},{"name":"IPROPNAME_PIDTEMPLATE","features":[152]},{"name":"IPROPNAME_PRESELECTED","features":[152]},{"name":"IPROPNAME_PRIMARYFOLDER","features":[152]},{"name":"IPROPNAME_PRIMARYFOLDER_PATH","features":[152]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEAVAILABLE","features":[152]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREMAINING","features":[152]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREQUIRED","features":[152]},{"name":"IPROPNAME_PRINTHOOD_FOLDER","features":[152]},{"name":"IPROPNAME_PRIVILEGED","features":[152]},{"name":"IPROPNAME_PRODUCTCODE","features":[152]},{"name":"IPROPNAME_PRODUCTID","features":[152]},{"name":"IPROPNAME_PRODUCTLANGUAGE","features":[152]},{"name":"IPROPNAME_PRODUCTNAME","features":[152]},{"name":"IPROPNAME_PRODUCTSTATE","features":[152]},{"name":"IPROPNAME_PRODUCTVERSION","features":[152]},{"name":"IPROPNAME_PROGRAMFILES64_FOLDER","features":[152]},{"name":"IPROPNAME_PROGRAMFILES_FOLDER","features":[152]},{"name":"IPROPNAME_PROGRAMMENU_FOLDER","features":[152]},{"name":"IPROPNAME_PROGRESSONLY","features":[152]},{"name":"IPROPNAME_PROMPTROLLBACKCOST","features":[152]},{"name":"IPROPNAME_REBOOT","features":[152]},{"name":"IPROPNAME_REBOOTPROMPT","features":[152]},{"name":"IPROPNAME_RECENT_FOLDER","features":[152]},{"name":"IPROPNAME_REDIRECTEDDLLSUPPORT","features":[152]},{"name":"IPROPNAME_REINSTALL","features":[152]},{"name":"IPROPNAME_REINSTALLMODE","features":[152]},{"name":"IPROPNAME_REMOTEADMINTS","features":[152]},{"name":"IPROPNAME_REPLACEDINUSEFILES","features":[152]},{"name":"IPROPNAME_RESTRICTEDUSERCONTROL","features":[152]},{"name":"IPROPNAME_RESUME","features":[152]},{"name":"IPROPNAME_ROLLBACKDISABLED","features":[152]},{"name":"IPROPNAME_ROOTDRIVE","features":[152]},{"name":"IPROPNAME_RUNNINGELEVATED","features":[152]},{"name":"IPROPNAME_SCREENX","features":[152]},{"name":"IPROPNAME_SCREENY","features":[152]},{"name":"IPROPNAME_SENDTO_FOLDER","features":[152]},{"name":"IPROPNAME_SEQUENCE","features":[152]},{"name":"IPROPNAME_SERVICEPACKLEVEL","features":[152]},{"name":"IPROPNAME_SERVICEPACKLEVELMINOR","features":[152]},{"name":"IPROPNAME_SHAREDWINDOWS","features":[152]},{"name":"IPROPNAME_SHELLADVTSUPPORT","features":[152]},{"name":"IPROPNAME_SHORTFILENAMES","features":[152]},{"name":"IPROPNAME_SOURCEDIR","features":[152]},{"name":"IPROPNAME_SOURCELIST","features":[152]},{"name":"IPROPNAME_SOURCERESONLY","features":[152]},{"name":"IPROPNAME_STARTMENU_FOLDER","features":[152]},{"name":"IPROPNAME_STARTUP_FOLDER","features":[152]},{"name":"IPROPNAME_SYSTEM16_FOLDER","features":[152]},{"name":"IPROPNAME_SYSTEM64_FOLDER","features":[152]},{"name":"IPROPNAME_SYSTEMLANGUAGEID","features":[152]},{"name":"IPROPNAME_SYSTEM_FOLDER","features":[152]},{"name":"IPROPNAME_TARGETDIR","features":[152]},{"name":"IPROPNAME_TEMPLATE_AMD64","features":[152]},{"name":"IPROPNAME_TEMPLATE_FOLDER","features":[152]},{"name":"IPROPNAME_TEMPLATE_X64","features":[152]},{"name":"IPROPNAME_TEMP_FOLDER","features":[152]},{"name":"IPROPNAME_TERMSERVER","features":[152]},{"name":"IPROPNAME_TEXTHEIGHT","features":[152]},{"name":"IPROPNAME_TEXTHEIGHT_CORRECTION","features":[152]},{"name":"IPROPNAME_TEXTINTERNALLEADING","features":[152]},{"name":"IPROPNAME_TIME","features":[152]},{"name":"IPROPNAME_TRANSFORMS","features":[152]},{"name":"IPROPNAME_TRANSFORMSATSOURCE","features":[152]},{"name":"IPROPNAME_TRANSFORMSSECURE","features":[152]},{"name":"IPROPNAME_TRUEADMINUSER","features":[152]},{"name":"IPROPNAME_TTCSUPPORT","features":[152]},{"name":"IPROPNAME_UACONLY","features":[152]},{"name":"IPROPNAME_UPDATESTARTED","features":[152]},{"name":"IPROPNAME_UPGRADECODE","features":[152]},{"name":"IPROPNAME_USERLANGUAGEID","features":[152]},{"name":"IPROPNAME_USERNAME","features":[152]},{"name":"IPROPNAME_USERSID","features":[152]},{"name":"IPROPNAME_VERSION9X","features":[152]},{"name":"IPROPNAME_VERSIONNT","features":[152]},{"name":"IPROPNAME_VERSIONNT64","features":[152]},{"name":"IPROPNAME_VIRTUALMEMORY","features":[152]},{"name":"IPROPNAME_WIN32ASSEMBLYSUPPORT","features":[152]},{"name":"IPROPNAME_WINDOWSBUILD","features":[152]},{"name":"IPROPNAME_WINDOWS_FOLDER","features":[152]},{"name":"IPROPNAME_WINDOWS_VOLUME","features":[152]},{"name":"IPROPVALUE_EXECUTEMODE_NONE","features":[152]},{"name":"IPROPVALUE_EXECUTEMODE_SCRIPT","features":[152]},{"name":"IPROPVALUE_FEATURE_ALL","features":[152]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLE","features":[152]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLESHUTDOWN","features":[152]},{"name":"IPROPVALUE_RBCOST_FAIL","features":[152]},{"name":"IPROPVALUE_RBCOST_PROMPT","features":[152]},{"name":"IPROPVALUE_RBCOST_SILENT","features":[152]},{"name":"IPROPVALUE__CARRYINGNDP_URTREINSTALL","features":[152]},{"name":"IPROPVALUE__CARRYINGNDP_URTUPGRADE","features":[152]},{"name":"IValidate","features":[152]},{"name":"LIBID_MsmMergeTypeLib","features":[152]},{"name":"LOGALL","features":[152]},{"name":"LOGERR","features":[152]},{"name":"LOGINFO","features":[152]},{"name":"LOGNONE","features":[152]},{"name":"LOGPERFMESSAGES","features":[152]},{"name":"LOGTOKEN_NO_LOG","features":[152]},{"name":"LOGTOKEN_SETUPAPI_APPLOG","features":[152]},{"name":"LOGTOKEN_SETUPAPI_DEVLOG","features":[152]},{"name":"LOGTOKEN_TYPE_MASK","features":[152]},{"name":"LOGTOKEN_UNSPECIFIED","features":[152]},{"name":"LOGWARN","features":[152]},{"name":"LPDISPLAYVAL","features":[1,152]},{"name":"LPEVALCOMCALLBACK","features":[1,152]},{"name":"MAX_FEATURE_CHARS","features":[152]},{"name":"MAX_GUID_CHARS","features":[152]},{"name":"MSIADVERTISEOPTIONFLAGS","features":[152]},{"name":"MSIADVERTISEOPTIONFLAGS_INSTANCE","features":[152]},{"name":"MSIARCHITECTUREFLAGS","features":[152]},{"name":"MSIARCHITECTUREFLAGS_AMD64","features":[152]},{"name":"MSIARCHITECTUREFLAGS_ARM","features":[152]},{"name":"MSIARCHITECTUREFLAGS_IA64","features":[152]},{"name":"MSIARCHITECTUREFLAGS_X86","features":[152]},{"name":"MSIASSEMBLYINFO","features":[152]},{"name":"MSIASSEMBLYINFO_NETASSEMBLY","features":[152]},{"name":"MSIASSEMBLYINFO_WIN32ASSEMBLY","features":[152]},{"name":"MSICODE","features":[152]},{"name":"MSICODE_PATCH","features":[152]},{"name":"MSICODE_PRODUCT","features":[152]},{"name":"MSICOLINFO","features":[152]},{"name":"MSICOLINFO_NAMES","features":[152]},{"name":"MSICOLINFO_TYPES","features":[152]},{"name":"MSICONDITION","features":[152]},{"name":"MSICONDITION_ERROR","features":[152]},{"name":"MSICONDITION_FALSE","features":[152]},{"name":"MSICONDITION_NONE","features":[152]},{"name":"MSICONDITION_TRUE","features":[152]},{"name":"MSICOSTTREE","features":[152]},{"name":"MSICOSTTREE_CHILDREN","features":[152]},{"name":"MSICOSTTREE_PARENTS","features":[152]},{"name":"MSICOSTTREE_RESERVED","features":[152]},{"name":"MSICOSTTREE_SELFONLY","features":[152]},{"name":"MSIDBERROR","features":[152]},{"name":"MSIDBERROR_BADCABINET","features":[152]},{"name":"MSIDBERROR_BADCASE","features":[152]},{"name":"MSIDBERROR_BADCATEGORY","features":[152]},{"name":"MSIDBERROR_BADCONDITION","features":[152]},{"name":"MSIDBERROR_BADCUSTOMSOURCE","features":[152]},{"name":"MSIDBERROR_BADDEFAULTDIR","features":[152]},{"name":"MSIDBERROR_BADFILENAME","features":[152]},{"name":"MSIDBERROR_BADFORMATTED","features":[152]},{"name":"MSIDBERROR_BADGUID","features":[152]},{"name":"MSIDBERROR_BADIDENTIFIER","features":[152]},{"name":"MSIDBERROR_BADKEYTABLE","features":[152]},{"name":"MSIDBERROR_BADLANGUAGE","features":[152]},{"name":"MSIDBERROR_BADLINK","features":[152]},{"name":"MSIDBERROR_BADLOCALIZEATTRIB","features":[152]},{"name":"MSIDBERROR_BADMAXMINVALUES","features":[152]},{"name":"MSIDBERROR_BADPATH","features":[152]},{"name":"MSIDBERROR_BADPROPERTY","features":[152]},{"name":"MSIDBERROR_BADREGPATH","features":[152]},{"name":"MSIDBERROR_BADSHORTCUT","features":[152]},{"name":"MSIDBERROR_BADTEMPLATE","features":[152]},{"name":"MSIDBERROR_BADVERSION","features":[152]},{"name":"MSIDBERROR_BADWILDCARD","features":[152]},{"name":"MSIDBERROR_DUPLICATEKEY","features":[152]},{"name":"MSIDBERROR_FUNCTIONERROR","features":[152]},{"name":"MSIDBERROR_INVALIDARG","features":[152]},{"name":"MSIDBERROR_MISSINGDATA","features":[152]},{"name":"MSIDBERROR_MOREDATA","features":[152]},{"name":"MSIDBERROR_NOERROR","features":[152]},{"name":"MSIDBERROR_NOTINSET","features":[152]},{"name":"MSIDBERROR_OVERFLOW","features":[152]},{"name":"MSIDBERROR_REQUIRED","features":[152]},{"name":"MSIDBERROR_STRINGOVERFLOW","features":[152]},{"name":"MSIDBERROR_UNDERFLOW","features":[152]},{"name":"MSIDBOPEN_CREATE","features":[152]},{"name":"MSIDBOPEN_CREATEDIRECT","features":[152]},{"name":"MSIDBOPEN_DIRECT","features":[152]},{"name":"MSIDBOPEN_PATCHFILE","features":[152]},{"name":"MSIDBOPEN_READONLY","features":[152]},{"name":"MSIDBOPEN_TRANSACT","features":[152]},{"name":"MSIDBSTATE","features":[152]},{"name":"MSIDBSTATE_ERROR","features":[152]},{"name":"MSIDBSTATE_READ","features":[152]},{"name":"MSIDBSTATE_WRITE","features":[152]},{"name":"MSIFILEHASHINFO","features":[152]},{"name":"MSIHANDLE","features":[152]},{"name":"MSIINSTALLCONTEXT","features":[152]},{"name":"MSIINSTALLCONTEXT_ALL","features":[152]},{"name":"MSIINSTALLCONTEXT_ALLUSERMANAGED","features":[152]},{"name":"MSIINSTALLCONTEXT_FIRSTVISIBLE","features":[152]},{"name":"MSIINSTALLCONTEXT_MACHINE","features":[152]},{"name":"MSIINSTALLCONTEXT_NONE","features":[152]},{"name":"MSIINSTALLCONTEXT_USERMANAGED","features":[152]},{"name":"MSIINSTALLCONTEXT_USERUNMANAGED","features":[152]},{"name":"MSIMODIFY","features":[152]},{"name":"MSIMODIFY_ASSIGN","features":[152]},{"name":"MSIMODIFY_DELETE","features":[152]},{"name":"MSIMODIFY_INSERT","features":[152]},{"name":"MSIMODIFY_INSERT_TEMPORARY","features":[152]},{"name":"MSIMODIFY_MERGE","features":[152]},{"name":"MSIMODIFY_REFRESH","features":[152]},{"name":"MSIMODIFY_REPLACE","features":[152]},{"name":"MSIMODIFY_SEEK","features":[152]},{"name":"MSIMODIFY_UPDATE","features":[152]},{"name":"MSIMODIFY_VALIDATE","features":[152]},{"name":"MSIMODIFY_VALIDATE_DELETE","features":[152]},{"name":"MSIMODIFY_VALIDATE_FIELD","features":[152]},{"name":"MSIMODIFY_VALIDATE_NEW","features":[152]},{"name":"MSIOPENPACKAGEFLAGS","features":[152]},{"name":"MSIOPENPACKAGEFLAGS_IGNOREMACHINESTATE","features":[152]},{"name":"MSIPATCHDATATYPE","features":[152]},{"name":"MSIPATCHSEQUENCEINFOA","features":[152]},{"name":"MSIPATCHSEQUENCEINFOW","features":[152]},{"name":"MSIPATCHSTATE","features":[152]},{"name":"MSIPATCHSTATE_ALL","features":[152]},{"name":"MSIPATCHSTATE_APPLIED","features":[152]},{"name":"MSIPATCHSTATE_INVALID","features":[152]},{"name":"MSIPATCHSTATE_OBSOLETED","features":[152]},{"name":"MSIPATCHSTATE_REGISTERED","features":[152]},{"name":"MSIPATCHSTATE_SUPERSEDED","features":[152]},{"name":"MSIPATCH_DATATYPE_PATCHFILE","features":[152]},{"name":"MSIPATCH_DATATYPE_XMLBLOB","features":[152]},{"name":"MSIPATCH_DATATYPE_XMLPATH","features":[152]},{"name":"MSIRUNMODE","features":[152]},{"name":"MSIRUNMODE_ADMIN","features":[152]},{"name":"MSIRUNMODE_ADVERTISE","features":[152]},{"name":"MSIRUNMODE_CABINET","features":[152]},{"name":"MSIRUNMODE_COMMIT","features":[152]},{"name":"MSIRUNMODE_LOGENABLED","features":[152]},{"name":"MSIRUNMODE_MAINTENANCE","features":[152]},{"name":"MSIRUNMODE_OPERATIONS","features":[152]},{"name":"MSIRUNMODE_REBOOTATEND","features":[152]},{"name":"MSIRUNMODE_REBOOTNOW","features":[152]},{"name":"MSIRUNMODE_RESERVED11","features":[152]},{"name":"MSIRUNMODE_RESERVED14","features":[152]},{"name":"MSIRUNMODE_RESERVED15","features":[152]},{"name":"MSIRUNMODE_ROLLBACK","features":[152]},{"name":"MSIRUNMODE_ROLLBACKENABLED","features":[152]},{"name":"MSIRUNMODE_SCHEDULED","features":[152]},{"name":"MSIRUNMODE_SOURCESHORTNAMES","features":[152]},{"name":"MSIRUNMODE_TARGETSHORTNAMES","features":[152]},{"name":"MSIRUNMODE_WINDOWS9X","features":[152]},{"name":"MSIRUNMODE_ZAWENABLED","features":[152]},{"name":"MSISOURCETYPE","features":[152]},{"name":"MSISOURCETYPE_MEDIA","features":[152]},{"name":"MSISOURCETYPE_NETWORK","features":[152]},{"name":"MSISOURCETYPE_UNKNOWN","features":[152]},{"name":"MSISOURCETYPE_URL","features":[152]},{"name":"MSITRANSACTION","features":[152]},{"name":"MSITRANSACTIONSTATE","features":[152]},{"name":"MSITRANSACTIONSTATE_COMMIT","features":[152]},{"name":"MSITRANSACTIONSTATE_ROLLBACK","features":[152]},{"name":"MSITRANSACTION_CHAIN_EMBEDDEDUI","features":[152]},{"name":"MSITRANSACTION_JOIN_EXISTING_EMBEDDEDUI","features":[152]},{"name":"MSITRANSFORM_ERROR","features":[152]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGROW","features":[152]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGTABLE","features":[152]},{"name":"MSITRANSFORM_ERROR_CHANGECODEPAGE","features":[152]},{"name":"MSITRANSFORM_ERROR_DELMISSINGROW","features":[152]},{"name":"MSITRANSFORM_ERROR_DELMISSINGTABLE","features":[152]},{"name":"MSITRANSFORM_ERROR_NONE","features":[152]},{"name":"MSITRANSFORM_ERROR_UPDATEMISSINGROW","features":[152]},{"name":"MSITRANSFORM_ERROR_VIEWTRANSFORM","features":[152]},{"name":"MSITRANSFORM_VALIDATE","features":[152]},{"name":"MSITRANSFORM_VALIDATE_LANGUAGE","features":[152]},{"name":"MSITRANSFORM_VALIDATE_MAJORVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_MINORVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_NEWEQUALBASEVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATERBASEVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATEREQUALBASEVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSBASEVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSEQUALBASEVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_PLATFORM","features":[152]},{"name":"MSITRANSFORM_VALIDATE_PRODUCT","features":[152]},{"name":"MSITRANSFORM_VALIDATE_UPDATEVERSION","features":[152]},{"name":"MSITRANSFORM_VALIDATE_UPGRADECODE","features":[152]},{"name":"MSI_INVALID_HASH_IS_FATAL","features":[152]},{"name":"MSI_NULL_INTEGER","features":[152]},{"name":"MsiAdvertiseProductA","features":[152]},{"name":"MsiAdvertiseProductExA","features":[152]},{"name":"MsiAdvertiseProductExW","features":[152]},{"name":"MsiAdvertiseProductW","features":[152]},{"name":"MsiAdvertiseScriptA","features":[1,152,49]},{"name":"MsiAdvertiseScriptW","features":[1,152,49]},{"name":"MsiApplyMultiplePatchesA","features":[152]},{"name":"MsiApplyMultiplePatchesW","features":[152]},{"name":"MsiApplyPatchA","features":[152]},{"name":"MsiApplyPatchW","features":[152]},{"name":"MsiBeginTransactionA","features":[1,152]},{"name":"MsiBeginTransactionW","features":[1,152]},{"name":"MsiCloseAllHandles","features":[152]},{"name":"MsiCloseHandle","features":[152]},{"name":"MsiCollectUserInfoA","features":[152]},{"name":"MsiCollectUserInfoW","features":[152]},{"name":"MsiConfigureFeatureA","features":[152]},{"name":"MsiConfigureFeatureW","features":[152]},{"name":"MsiConfigureProductA","features":[152]},{"name":"MsiConfigureProductExA","features":[152]},{"name":"MsiConfigureProductExW","features":[152]},{"name":"MsiConfigureProductW","features":[152]},{"name":"MsiCreateRecord","features":[152]},{"name":"MsiCreateTransformSummaryInfoA","features":[152]},{"name":"MsiCreateTransformSummaryInfoW","features":[152]},{"name":"MsiDatabaseApplyTransformA","features":[152]},{"name":"MsiDatabaseApplyTransformW","features":[152]},{"name":"MsiDatabaseCommit","features":[152]},{"name":"MsiDatabaseExportA","features":[152]},{"name":"MsiDatabaseExportW","features":[152]},{"name":"MsiDatabaseGenerateTransformA","features":[152]},{"name":"MsiDatabaseGenerateTransformW","features":[152]},{"name":"MsiDatabaseGetPrimaryKeysA","features":[152]},{"name":"MsiDatabaseGetPrimaryKeysW","features":[152]},{"name":"MsiDatabaseImportA","features":[152]},{"name":"MsiDatabaseImportW","features":[152]},{"name":"MsiDatabaseIsTablePersistentA","features":[152]},{"name":"MsiDatabaseIsTablePersistentW","features":[152]},{"name":"MsiDatabaseMergeA","features":[152]},{"name":"MsiDatabaseMergeW","features":[152]},{"name":"MsiDatabaseOpenViewA","features":[152]},{"name":"MsiDatabaseOpenViewW","features":[152]},{"name":"MsiDetermineApplicablePatchesA","features":[152]},{"name":"MsiDetermineApplicablePatchesW","features":[152]},{"name":"MsiDeterminePatchSequenceA","features":[152]},{"name":"MsiDeterminePatchSequenceW","features":[152]},{"name":"MsiDoActionA","features":[152]},{"name":"MsiDoActionW","features":[152]},{"name":"MsiEnableLogA","features":[152]},{"name":"MsiEnableLogW","features":[152]},{"name":"MsiEnableUIPreview","features":[152]},{"name":"MsiEndTransaction","features":[152]},{"name":"MsiEnumClientsA","features":[152]},{"name":"MsiEnumClientsExA","features":[152]},{"name":"MsiEnumClientsExW","features":[152]},{"name":"MsiEnumClientsW","features":[152]},{"name":"MsiEnumComponentCostsA","features":[152]},{"name":"MsiEnumComponentCostsW","features":[152]},{"name":"MsiEnumComponentQualifiersA","features":[152]},{"name":"MsiEnumComponentQualifiersW","features":[152]},{"name":"MsiEnumComponentsA","features":[152]},{"name":"MsiEnumComponentsExA","features":[152]},{"name":"MsiEnumComponentsExW","features":[152]},{"name":"MsiEnumComponentsW","features":[152]},{"name":"MsiEnumFeaturesA","features":[152]},{"name":"MsiEnumFeaturesW","features":[152]},{"name":"MsiEnumPatchesA","features":[152]},{"name":"MsiEnumPatchesExA","features":[152]},{"name":"MsiEnumPatchesExW","features":[152]},{"name":"MsiEnumPatchesW","features":[152]},{"name":"MsiEnumProductsA","features":[152]},{"name":"MsiEnumProductsExA","features":[152]},{"name":"MsiEnumProductsExW","features":[152]},{"name":"MsiEnumProductsW","features":[152]},{"name":"MsiEnumRelatedProductsA","features":[152]},{"name":"MsiEnumRelatedProductsW","features":[152]},{"name":"MsiEvaluateConditionA","features":[152]},{"name":"MsiEvaluateConditionW","features":[152]},{"name":"MsiExtractPatchXMLDataA","features":[152]},{"name":"MsiExtractPatchXMLDataW","features":[152]},{"name":"MsiFormatRecordA","features":[152]},{"name":"MsiFormatRecordW","features":[152]},{"name":"MsiGetActiveDatabase","features":[152]},{"name":"MsiGetComponentPathA","features":[152]},{"name":"MsiGetComponentPathExA","features":[152]},{"name":"MsiGetComponentPathExW","features":[152]},{"name":"MsiGetComponentPathW","features":[152]},{"name":"MsiGetComponentStateA","features":[152]},{"name":"MsiGetComponentStateW","features":[152]},{"name":"MsiGetDatabaseState","features":[152]},{"name":"MsiGetFeatureCostA","features":[152]},{"name":"MsiGetFeatureCostW","features":[152]},{"name":"MsiGetFeatureInfoA","features":[152]},{"name":"MsiGetFeatureInfoW","features":[152]},{"name":"MsiGetFeatureStateA","features":[152]},{"name":"MsiGetFeatureStateW","features":[152]},{"name":"MsiGetFeatureUsageA","features":[152]},{"name":"MsiGetFeatureUsageW","features":[152]},{"name":"MsiGetFeatureValidStatesA","features":[152]},{"name":"MsiGetFeatureValidStatesW","features":[152]},{"name":"MsiGetFileHashA","features":[152]},{"name":"MsiGetFileHashW","features":[152]},{"name":"MsiGetFileSignatureInformationA","features":[1,68,152]},{"name":"MsiGetFileSignatureInformationW","features":[1,68,152]},{"name":"MsiGetFileVersionA","features":[152]},{"name":"MsiGetFileVersionW","features":[152]},{"name":"MsiGetLanguage","features":[152]},{"name":"MsiGetLastErrorRecord","features":[152]},{"name":"MsiGetMode","features":[1,152]},{"name":"MsiGetPatchFileListA","features":[152]},{"name":"MsiGetPatchFileListW","features":[152]},{"name":"MsiGetPatchInfoA","features":[152]},{"name":"MsiGetPatchInfoExA","features":[152]},{"name":"MsiGetPatchInfoExW","features":[152]},{"name":"MsiGetPatchInfoW","features":[152]},{"name":"MsiGetProductCodeA","features":[152]},{"name":"MsiGetProductCodeW","features":[152]},{"name":"MsiGetProductInfoA","features":[152]},{"name":"MsiGetProductInfoExA","features":[152]},{"name":"MsiGetProductInfoExW","features":[152]},{"name":"MsiGetProductInfoFromScriptA","features":[152]},{"name":"MsiGetProductInfoFromScriptW","features":[152]},{"name":"MsiGetProductInfoW","features":[152]},{"name":"MsiGetProductPropertyA","features":[152]},{"name":"MsiGetProductPropertyW","features":[152]},{"name":"MsiGetPropertyA","features":[152]},{"name":"MsiGetPropertyW","features":[152]},{"name":"MsiGetShortcutTargetA","features":[152]},{"name":"MsiGetShortcutTargetW","features":[152]},{"name":"MsiGetSourcePathA","features":[152]},{"name":"MsiGetSourcePathW","features":[152]},{"name":"MsiGetSummaryInformationA","features":[152]},{"name":"MsiGetSummaryInformationW","features":[152]},{"name":"MsiGetTargetPathA","features":[152]},{"name":"MsiGetTargetPathW","features":[152]},{"name":"MsiGetUserInfoA","features":[152]},{"name":"MsiGetUserInfoW","features":[152]},{"name":"MsiInstallMissingComponentA","features":[152]},{"name":"MsiInstallMissingComponentW","features":[152]},{"name":"MsiInstallMissingFileA","features":[152]},{"name":"MsiInstallMissingFileW","features":[152]},{"name":"MsiInstallProductA","features":[152]},{"name":"MsiInstallProductW","features":[152]},{"name":"MsiIsProductElevatedA","features":[1,152]},{"name":"MsiIsProductElevatedW","features":[1,152]},{"name":"MsiJoinTransaction","features":[1,152]},{"name":"MsiLocateComponentA","features":[152]},{"name":"MsiLocateComponentW","features":[152]},{"name":"MsiNotifySidChangeA","features":[152]},{"name":"MsiNotifySidChangeW","features":[152]},{"name":"MsiOpenDatabaseA","features":[152]},{"name":"MsiOpenDatabaseW","features":[152]},{"name":"MsiOpenPackageA","features":[152]},{"name":"MsiOpenPackageExA","features":[152]},{"name":"MsiOpenPackageExW","features":[152]},{"name":"MsiOpenPackageW","features":[152]},{"name":"MsiOpenProductA","features":[152]},{"name":"MsiOpenProductW","features":[152]},{"name":"MsiPreviewBillboardA","features":[152]},{"name":"MsiPreviewBillboardW","features":[152]},{"name":"MsiPreviewDialogA","features":[152]},{"name":"MsiPreviewDialogW","features":[152]},{"name":"MsiProcessAdvertiseScriptA","features":[1,152,49]},{"name":"MsiProcessAdvertiseScriptW","features":[1,152,49]},{"name":"MsiProcessMessage","features":[152]},{"name":"MsiProvideAssemblyA","features":[152]},{"name":"MsiProvideAssemblyW","features":[152]},{"name":"MsiProvideComponentA","features":[152]},{"name":"MsiProvideComponentW","features":[152]},{"name":"MsiProvideQualifiedComponentA","features":[152]},{"name":"MsiProvideQualifiedComponentExA","features":[152]},{"name":"MsiProvideQualifiedComponentExW","features":[152]},{"name":"MsiProvideQualifiedComponentW","features":[152]},{"name":"MsiQueryComponentStateA","features":[152]},{"name":"MsiQueryComponentStateW","features":[152]},{"name":"MsiQueryFeatureStateA","features":[152]},{"name":"MsiQueryFeatureStateExA","features":[152]},{"name":"MsiQueryFeatureStateExW","features":[152]},{"name":"MsiQueryFeatureStateW","features":[152]},{"name":"MsiQueryProductStateA","features":[152]},{"name":"MsiQueryProductStateW","features":[152]},{"name":"MsiRecordClearData","features":[152]},{"name":"MsiRecordDataSize","features":[152]},{"name":"MsiRecordGetFieldCount","features":[152]},{"name":"MsiRecordGetInteger","features":[152]},{"name":"MsiRecordGetStringA","features":[152]},{"name":"MsiRecordGetStringW","features":[152]},{"name":"MsiRecordIsNull","features":[1,152]},{"name":"MsiRecordReadStream","features":[152]},{"name":"MsiRecordSetInteger","features":[152]},{"name":"MsiRecordSetStreamA","features":[152]},{"name":"MsiRecordSetStreamW","features":[152]},{"name":"MsiRecordSetStringA","features":[152]},{"name":"MsiRecordSetStringW","features":[152]},{"name":"MsiReinstallFeatureA","features":[152]},{"name":"MsiReinstallFeatureW","features":[152]},{"name":"MsiReinstallProductA","features":[152]},{"name":"MsiReinstallProductW","features":[152]},{"name":"MsiRemovePatchesA","features":[152]},{"name":"MsiRemovePatchesW","features":[152]},{"name":"MsiSequenceA","features":[152]},{"name":"MsiSequenceW","features":[152]},{"name":"MsiSetComponentStateA","features":[152]},{"name":"MsiSetComponentStateW","features":[152]},{"name":"MsiSetExternalUIA","features":[152]},{"name":"MsiSetExternalUIRecord","features":[152]},{"name":"MsiSetExternalUIW","features":[152]},{"name":"MsiSetFeatureAttributesA","features":[152]},{"name":"MsiSetFeatureAttributesW","features":[152]},{"name":"MsiSetFeatureStateA","features":[152]},{"name":"MsiSetFeatureStateW","features":[152]},{"name":"MsiSetInstallLevel","features":[152]},{"name":"MsiSetInternalUI","features":[1,152]},{"name":"MsiSetMode","features":[1,152]},{"name":"MsiSetPropertyA","features":[152]},{"name":"MsiSetPropertyW","features":[152]},{"name":"MsiSetTargetPathA","features":[152]},{"name":"MsiSetTargetPathW","features":[152]},{"name":"MsiSourceListAddMediaDiskA","features":[152]},{"name":"MsiSourceListAddMediaDiskW","features":[152]},{"name":"MsiSourceListAddSourceA","features":[152]},{"name":"MsiSourceListAddSourceExA","features":[152]},{"name":"MsiSourceListAddSourceExW","features":[152]},{"name":"MsiSourceListAddSourceW","features":[152]},{"name":"MsiSourceListClearAllA","features":[152]},{"name":"MsiSourceListClearAllExA","features":[152]},{"name":"MsiSourceListClearAllExW","features":[152]},{"name":"MsiSourceListClearAllW","features":[152]},{"name":"MsiSourceListClearMediaDiskA","features":[152]},{"name":"MsiSourceListClearMediaDiskW","features":[152]},{"name":"MsiSourceListClearSourceA","features":[152]},{"name":"MsiSourceListClearSourceW","features":[152]},{"name":"MsiSourceListEnumMediaDisksA","features":[152]},{"name":"MsiSourceListEnumMediaDisksW","features":[152]},{"name":"MsiSourceListEnumSourcesA","features":[152]},{"name":"MsiSourceListEnumSourcesW","features":[152]},{"name":"MsiSourceListForceResolutionA","features":[152]},{"name":"MsiSourceListForceResolutionExA","features":[152]},{"name":"MsiSourceListForceResolutionExW","features":[152]},{"name":"MsiSourceListForceResolutionW","features":[152]},{"name":"MsiSourceListGetInfoA","features":[152]},{"name":"MsiSourceListGetInfoW","features":[152]},{"name":"MsiSourceListSetInfoA","features":[152]},{"name":"MsiSourceListSetInfoW","features":[152]},{"name":"MsiSummaryInfoGetPropertyA","features":[1,152]},{"name":"MsiSummaryInfoGetPropertyCount","features":[152]},{"name":"MsiSummaryInfoGetPropertyW","features":[1,152]},{"name":"MsiSummaryInfoPersist","features":[152]},{"name":"MsiSummaryInfoSetPropertyA","features":[1,152]},{"name":"MsiSummaryInfoSetPropertyW","features":[1,152]},{"name":"MsiUseFeatureA","features":[152]},{"name":"MsiUseFeatureExA","features":[152]},{"name":"MsiUseFeatureExW","features":[152]},{"name":"MsiUseFeatureW","features":[152]},{"name":"MsiVerifyDiskSpace","features":[152]},{"name":"MsiVerifyPackageA","features":[152]},{"name":"MsiVerifyPackageW","features":[152]},{"name":"MsiViewClose","features":[152]},{"name":"MsiViewExecute","features":[152]},{"name":"MsiViewFetch","features":[152]},{"name":"MsiViewGetColumnInfo","features":[152]},{"name":"MsiViewGetErrorA","features":[152]},{"name":"MsiViewGetErrorW","features":[152]},{"name":"MsiViewModify","features":[152]},{"name":"MsmMerge","features":[152]},{"name":"NormalizeFileForPatchSignature","features":[1,152]},{"name":"PACKMAN_RUNTIME","features":[152]},{"name":"PACKMAN_RUNTIME_INVALID","features":[152]},{"name":"PACKMAN_RUNTIME_JUPITER","features":[152]},{"name":"PACKMAN_RUNTIME_MODERN_NATIVE","features":[152]},{"name":"PACKMAN_RUNTIME_NATIVE","features":[152]},{"name":"PACKMAN_RUNTIME_SILVERLIGHTMOBILE","features":[152]},{"name":"PACKMAN_RUNTIME_XNA","features":[152]},{"name":"PATCH_IGNORE_RANGE","features":[152]},{"name":"PATCH_INTERLEAVE_MAP","features":[152]},{"name":"PATCH_OLD_FILE_INFO","features":[1,152]},{"name":"PATCH_OLD_FILE_INFO_A","features":[152]},{"name":"PATCH_OLD_FILE_INFO_H","features":[1,152]},{"name":"PATCH_OLD_FILE_INFO_W","features":[152]},{"name":"PATCH_OPTION_DATA","features":[1,152]},{"name":"PATCH_OPTION_FAIL_IF_BIGGER","features":[152]},{"name":"PATCH_OPTION_FAIL_IF_SAME_FILE","features":[152]},{"name":"PATCH_OPTION_INTERLEAVE_FILES","features":[152]},{"name":"PATCH_OPTION_NO_BINDFIX","features":[152]},{"name":"PATCH_OPTION_NO_CHECKSUM","features":[152]},{"name":"PATCH_OPTION_NO_LOCKFIX","features":[152]},{"name":"PATCH_OPTION_NO_REBASE","features":[152]},{"name":"PATCH_OPTION_NO_RESTIMEFIX","features":[152]},{"name":"PATCH_OPTION_NO_TIMESTAMP","features":[152]},{"name":"PATCH_OPTION_RESERVED1","features":[152]},{"name":"PATCH_OPTION_SIGNATURE_MD5","features":[152]},{"name":"PATCH_OPTION_USE_BEST","features":[152]},{"name":"PATCH_OPTION_USE_LZX_A","features":[152]},{"name":"PATCH_OPTION_USE_LZX_B","features":[152]},{"name":"PATCH_OPTION_USE_LZX_BEST","features":[152]},{"name":"PATCH_OPTION_USE_LZX_LARGE","features":[152]},{"name":"PATCH_OPTION_VALID_FLAGS","features":[152]},{"name":"PATCH_RETAIN_RANGE","features":[152]},{"name":"PATCH_SYMBOL_NO_FAILURES","features":[152]},{"name":"PATCH_SYMBOL_NO_IMAGEHLP","features":[152]},{"name":"PATCH_SYMBOL_RESERVED1","features":[152]},{"name":"PATCH_SYMBOL_UNDECORATED_TOO","features":[152]},{"name":"PATCH_TRANSFORM_PE_IRELOC_2","features":[152]},{"name":"PATCH_TRANSFORM_PE_RESOURCE_2","features":[152]},{"name":"PID_APPNAME","features":[152]},{"name":"PID_AUTHOR","features":[152]},{"name":"PID_CHARCOUNT","features":[152]},{"name":"PID_COMMENTS","features":[152]},{"name":"PID_CREATE_DTM","features":[152]},{"name":"PID_EDITTIME","features":[152]},{"name":"PID_KEYWORDS","features":[152]},{"name":"PID_LASTAUTHOR","features":[152]},{"name":"PID_LASTPRINTED","features":[152]},{"name":"PID_LASTSAVE_DTM","features":[152]},{"name":"PID_MSIRESTRICT","features":[152]},{"name":"PID_MSISOURCE","features":[152]},{"name":"PID_MSIVERSION","features":[152]},{"name":"PID_PAGECOUNT","features":[152]},{"name":"PID_REVNUMBER","features":[152]},{"name":"PID_SUBJECT","features":[152]},{"name":"PID_TEMPLATE","features":[152]},{"name":"PID_THUMBNAIL","features":[152]},{"name":"PID_TITLE","features":[152]},{"name":"PID_WORDCOUNT","features":[152]},{"name":"PINSTALLUI_HANDLER_RECORD","features":[152]},{"name":"PMSIHANDLE","features":[152]},{"name":"PMSvc","features":[152]},{"name":"PM_ACTIVATION_POLICY","features":[152]},{"name":"PM_ACTIVATION_POLICY_INVALID","features":[152]},{"name":"PM_ACTIVATION_POLICY_MULTISESSION","features":[152]},{"name":"PM_ACTIVATION_POLICY_REPLACE","features":[152]},{"name":"PM_ACTIVATION_POLICY_REPLACESAMEPARAMS","features":[152]},{"name":"PM_ACTIVATION_POLICY_REPLACE_IGNOREFOREGROUND","features":[152]},{"name":"PM_ACTIVATION_POLICY_RESUME","features":[152]},{"name":"PM_ACTIVATION_POLICY_RESUMESAMEPARAMS","features":[152]},{"name":"PM_ACTIVATION_POLICY_UNKNOWN","features":[152]},{"name":"PM_APPLICATION_HUBTYPE","features":[152]},{"name":"PM_APPLICATION_HUBTYPE_INVALID","features":[152]},{"name":"PM_APPLICATION_HUBTYPE_MUSIC","features":[152]},{"name":"PM_APPLICATION_HUBTYPE_NONMUSIC","features":[152]},{"name":"PM_APPLICATION_INSTALL_DEBUG","features":[152]},{"name":"PM_APPLICATION_INSTALL_ENTERPRISE","features":[152]},{"name":"PM_APPLICATION_INSTALL_INVALID","features":[152]},{"name":"PM_APPLICATION_INSTALL_IN_ROM","features":[152]},{"name":"PM_APPLICATION_INSTALL_NORMAL","features":[152]},{"name":"PM_APPLICATION_INSTALL_PA","features":[152]},{"name":"PM_APPLICATION_INSTALL_TYPE","features":[152]},{"name":"PM_APPLICATION_STATE","features":[152]},{"name":"PM_APPLICATION_STATE_DISABLED_BACKING_UP","features":[152]},{"name":"PM_APPLICATION_STATE_DISABLED_ENTERPRISE","features":[152]},{"name":"PM_APPLICATION_STATE_DISABLED_MDIL_BINDING","features":[152]},{"name":"PM_APPLICATION_STATE_DISABLED_SD_CARD","features":[152]},{"name":"PM_APPLICATION_STATE_INSTALLED","features":[152]},{"name":"PM_APPLICATION_STATE_INSTALLING","features":[152]},{"name":"PM_APPLICATION_STATE_INVALID","features":[152]},{"name":"PM_APPLICATION_STATE_LICENSE_UPDATING","features":[152]},{"name":"PM_APPLICATION_STATE_MAX","features":[152]},{"name":"PM_APPLICATION_STATE_MIN","features":[152]},{"name":"PM_APPLICATION_STATE_MOVING","features":[152]},{"name":"PM_APPLICATION_STATE_UNINSTALLING","features":[152]},{"name":"PM_APPLICATION_STATE_UPDATING","features":[152]},{"name":"PM_APPTASKTYPE","features":[152]},{"name":"PM_APP_FILTER_ALL","features":[152]},{"name":"PM_APP_FILTER_ALL_INCLUDE_MODERN","features":[152]},{"name":"PM_APP_FILTER_FRAMEWORK","features":[152]},{"name":"PM_APP_FILTER_GENRE","features":[152]},{"name":"PM_APP_FILTER_HUBTYPE","features":[152]},{"name":"PM_APP_FILTER_MAX","features":[152]},{"name":"PM_APP_FILTER_NONGAMES","features":[152]},{"name":"PM_APP_FILTER_PINABLEONKIDZONE","features":[152]},{"name":"PM_APP_FILTER_VISIBLE","features":[152]},{"name":"PM_APP_GENRE","features":[152]},{"name":"PM_APP_GENRE_GAMES","features":[152]},{"name":"PM_APP_GENRE_INVALID","features":[152]},{"name":"PM_APP_GENRE_OTHER","features":[152]},{"name":"PM_BSATASKID","features":[152]},{"name":"PM_BWTASKID","features":[152]},{"name":"PM_ENUM_APP_FILTER","features":[152]},{"name":"PM_ENUM_BSA_FILTER","features":[152]},{"name":"PM_ENUM_BSA_FILTER_ALL","features":[152]},{"name":"PM_ENUM_BSA_FILTER_BY_ALL_LAUNCHONBOOT","features":[152]},{"name":"PM_ENUM_BSA_FILTER_BY_PERIODIC","features":[152]},{"name":"PM_ENUM_BSA_FILTER_BY_PRODUCTID","features":[152]},{"name":"PM_ENUM_BSA_FILTER_BY_TASKID","features":[152]},{"name":"PM_ENUM_BSA_FILTER_MAX","features":[152]},{"name":"PM_ENUM_BW_FILTER","features":[152]},{"name":"PM_ENUM_BW_FILTER_BOOTWORKER_ALL","features":[152]},{"name":"PM_ENUM_BW_FILTER_BY_TASKID","features":[152]},{"name":"PM_ENUM_BW_FILTER_MAX","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_APPCONNECT","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_BY_CONSUMER","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_CACHEDFILEUPDATER_ALL","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_FILEOPENPICKER_ALL","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_FILESAVEPICKER_ALL","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_APPLICATION_ALL","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_CONTENTTYPE_ALL","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_FILETYPE_ALL","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_MAX","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_PROTOCOL_ALL","features":[152]},{"name":"PM_ENUM_EXTENSION_FILTER_SHARETARGET_ALL","features":[152]},{"name":"PM_ENUM_FILTER","features":[152]},{"name":"PM_ENUM_TASK_FILTER","features":[152]},{"name":"PM_ENUM_TILE_FILTER","features":[152]},{"name":"PM_EXTENSIONCONSUMER","features":[152]},{"name":"PM_INSTALLINFO","features":[1,152]},{"name":"PM_INVOCATIONINFO","features":[152]},{"name":"PM_LIVETILE_RECURRENCE_TYPE","features":[152]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INSTANT","features":[152]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INTERVAL","features":[152]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_MAX","features":[152]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_ONETIME","features":[152]},{"name":"PM_LOGO_SIZE","features":[152]},{"name":"PM_LOGO_SIZE_INVALID","features":[152]},{"name":"PM_LOGO_SIZE_LARGE","features":[152]},{"name":"PM_LOGO_SIZE_MEDIUM","features":[152]},{"name":"PM_LOGO_SIZE_SMALL","features":[152]},{"name":"PM_STARTAPPBLOB","features":[1,152]},{"name":"PM_STARTTILEBLOB","features":[1,152]},{"name":"PM_STARTTILE_TYPE","features":[152]},{"name":"PM_STARTTILE_TYPE_APPLIST","features":[152]},{"name":"PM_STARTTILE_TYPE_APPLISTPRIMARY","features":[152]},{"name":"PM_STARTTILE_TYPE_INVALID","features":[152]},{"name":"PM_STARTTILE_TYPE_PRIMARY","features":[152]},{"name":"PM_STARTTILE_TYPE_SECONDARY","features":[152]},{"name":"PM_TASK_FILTER_APP_ALL","features":[152]},{"name":"PM_TASK_FILTER_APP_TASK_TYPE","features":[152]},{"name":"PM_TASK_FILTER_BGEXECUTION","features":[152]},{"name":"PM_TASK_FILTER_DEHYD_SUPRESSING","features":[152]},{"name":"PM_TASK_FILTER_MAX","features":[152]},{"name":"PM_TASK_FILTER_TASK_TYPE","features":[152]},{"name":"PM_TASK_TRANSITION","features":[152]},{"name":"PM_TASK_TRANSITION_CUSTOM","features":[152]},{"name":"PM_TASK_TRANSITION_DEFAULT","features":[152]},{"name":"PM_TASK_TRANSITION_INVALID","features":[152]},{"name":"PM_TASK_TRANSITION_NONE","features":[152]},{"name":"PM_TASK_TRANSITION_READERBOARD","features":[152]},{"name":"PM_TASK_TRANSITION_SLIDE","features":[152]},{"name":"PM_TASK_TRANSITION_SWIVEL","features":[152]},{"name":"PM_TASK_TRANSITION_TURNSTILE","features":[152]},{"name":"PM_TASK_TYPE","features":[152]},{"name":"PM_TASK_TYPE_BACKGROUNDSERVICEAGENT","features":[152]},{"name":"PM_TASK_TYPE_BACKGROUNDWORKER","features":[152]},{"name":"PM_TASK_TYPE_DEFAULT","features":[152]},{"name":"PM_TASK_TYPE_INVALID","features":[152]},{"name":"PM_TASK_TYPE_NORMAL","features":[152]},{"name":"PM_TASK_TYPE_SETTINGS","features":[152]},{"name":"PM_TILE_FILTER_APPLIST","features":[152]},{"name":"PM_TILE_FILTER_APP_ALL","features":[152]},{"name":"PM_TILE_FILTER_HUBTYPE","features":[152]},{"name":"PM_TILE_FILTER_MAX","features":[152]},{"name":"PM_TILE_FILTER_PINNED","features":[152]},{"name":"PM_TILE_HUBTYPE","features":[152]},{"name":"PM_TILE_HUBTYPE_APPLIST","features":[152]},{"name":"PM_TILE_HUBTYPE_CACHED","features":[152]},{"name":"PM_TILE_HUBTYPE_GAMES","features":[152]},{"name":"PM_TILE_HUBTYPE_INVALID","features":[152]},{"name":"PM_TILE_HUBTYPE_KIDZONE","features":[152]},{"name":"PM_TILE_HUBTYPE_LOCKSCREEN","features":[152]},{"name":"PM_TILE_HUBTYPE_MOSETTINGS","features":[152]},{"name":"PM_TILE_HUBTYPE_MUSIC","features":[152]},{"name":"PM_TILE_HUBTYPE_STARTMENU","features":[152]},{"name":"PM_TILE_SIZE","features":[152]},{"name":"PM_TILE_SIZE_INVALID","features":[152]},{"name":"PM_TILE_SIZE_LARGE","features":[152]},{"name":"PM_TILE_SIZE_MEDIUM","features":[152]},{"name":"PM_TILE_SIZE_SMALL","features":[152]},{"name":"PM_TILE_SIZE_SQUARE310X310","features":[152]},{"name":"PM_TILE_SIZE_TALL150X310","features":[152]},{"name":"PM_UPDATEINFO","features":[152]},{"name":"PM_UPDATEINFO_LEGACY","features":[152]},{"name":"PPATCH_PROGRESS_CALLBACK","features":[1,152]},{"name":"PPATCH_SYMLOAD_CALLBACK","features":[1,152]},{"name":"PROTECTED_FILE_DATA","features":[152]},{"name":"QUERYASMINFO_FLAGS","features":[152]},{"name":"QUERYASMINFO_FLAG_VALIDATE","features":[152]},{"name":"QueryActCtxSettingsW","features":[1,152]},{"name":"QueryActCtxW","features":[1,152]},{"name":"REINSTALLMODE","features":[152]},{"name":"REINSTALLMODE_FILEEQUALVERSION","features":[152]},{"name":"REINSTALLMODE_FILEEXACT","features":[152]},{"name":"REINSTALLMODE_FILEMISSING","features":[152]},{"name":"REINSTALLMODE_FILEOLDERVERSION","features":[152]},{"name":"REINSTALLMODE_FILEREPLACE","features":[152]},{"name":"REINSTALLMODE_FILEVERIFY","features":[152]},{"name":"REINSTALLMODE_MACHINEDATA","features":[152]},{"name":"REINSTALLMODE_PACKAGE","features":[152]},{"name":"REINSTALLMODE_REPAIR","features":[152]},{"name":"REINSTALLMODE_SHORTCUT","features":[152]},{"name":"REINSTALLMODE_USERDATA","features":[152]},{"name":"RESULTTYPES","features":[152]},{"name":"ReleaseActCtx","features":[1,152]},{"name":"SCRIPTFLAGS","features":[152]},{"name":"SCRIPTFLAGS_CACHEINFO","features":[152]},{"name":"SCRIPTFLAGS_MACHINEASSIGN","features":[152]},{"name":"SCRIPTFLAGS_REGDATA","features":[152]},{"name":"SCRIPTFLAGS_REGDATA_APPINFO","features":[152]},{"name":"SCRIPTFLAGS_REGDATA_CLASSINFO","features":[152]},{"name":"SCRIPTFLAGS_REGDATA_CNFGINFO","features":[152]},{"name":"SCRIPTFLAGS_REGDATA_EXTENSIONINFO","features":[152]},{"name":"SCRIPTFLAGS_SHORTCUTS","features":[152]},{"name":"SCRIPTFLAGS_VALIDATE_TRANSFORMS_LIST","features":[152]},{"name":"SFC_DISABLE_ASK","features":[152]},{"name":"SFC_DISABLE_NOPOPUPS","features":[152]},{"name":"SFC_DISABLE_NORMAL","features":[152]},{"name":"SFC_DISABLE_ONCE","features":[152]},{"name":"SFC_DISABLE_SETUP","features":[152]},{"name":"SFC_IDLE_TRIGGER","features":[152]},{"name":"SFC_QUOTA_DEFAULT","features":[152]},{"name":"SFC_SCAN_ALWAYS","features":[152]},{"name":"SFC_SCAN_IMMEDIATE","features":[152]},{"name":"SFC_SCAN_NORMAL","features":[152]},{"name":"SFC_SCAN_ONCE","features":[152]},{"name":"STATUSTYPES","features":[152]},{"name":"STREAM_FORMAT_COMPLIB_MANIFEST","features":[152]},{"name":"STREAM_FORMAT_COMPLIB_MODULE","features":[152]},{"name":"STREAM_FORMAT_WIN32_MANIFEST","features":[152]},{"name":"STREAM_FORMAT_WIN32_MODULE","features":[152]},{"name":"SfcGetNextProtectedFile","features":[1,152]},{"name":"SfcIsFileProtected","features":[1,152]},{"name":"SfcIsKeyProtected","features":[1,152,49]},{"name":"SfpVerifyFile","features":[1,152]},{"name":"TILE_TEMPLATE_AGILESTORE","features":[152]},{"name":"TILE_TEMPLATE_ALL","features":[152]},{"name":"TILE_TEMPLATE_BADGE","features":[152]},{"name":"TILE_TEMPLATE_BLOCK","features":[152]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT01","features":[152]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT02","features":[152]},{"name":"TILE_TEMPLATE_CALENDAR","features":[152]},{"name":"TILE_TEMPLATE_CONTACT","features":[152]},{"name":"TILE_TEMPLATE_CYCLE","features":[152]},{"name":"TILE_TEMPLATE_DEEPLINK","features":[152]},{"name":"TILE_TEMPLATE_DEFAULT","features":[152]},{"name":"TILE_TEMPLATE_FLIP","features":[152]},{"name":"TILE_TEMPLATE_FOLDER","features":[152]},{"name":"TILE_TEMPLATE_GAMES","features":[152]},{"name":"TILE_TEMPLATE_GROUP","features":[152]},{"name":"TILE_TEMPLATE_IMAGE","features":[152]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT01","features":[152]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT02","features":[152]},{"name":"TILE_TEMPLATE_IMAGECOLLECTION","features":[152]},{"name":"TILE_TEMPLATE_INVALID","features":[152]},{"name":"TILE_TEMPLATE_METROCOUNT","features":[152]},{"name":"TILE_TEMPLATE_METROCOUNTQUEUE","features":[152]},{"name":"TILE_TEMPLATE_MUSICVIDEO","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGE01","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGE02","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGE03","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGE04","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGE05","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGE06","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT01","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT02","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT03","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT04","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION01","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION02","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION03","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION04","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION05","features":[152]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION06","features":[152]},{"name":"TILE_TEMPLATE_PEOPLE","features":[152]},{"name":"TILE_TEMPLATE_SEARCH","features":[152]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT01","features":[152]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT02","features":[152]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT03","features":[152]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT04","features":[152]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT05","features":[152]},{"name":"TILE_TEMPLATE_TEXT01","features":[152]},{"name":"TILE_TEMPLATE_TEXT02","features":[152]},{"name":"TILE_TEMPLATE_TEXT03","features":[152]},{"name":"TILE_TEMPLATE_TEXT04","features":[152]},{"name":"TILE_TEMPLATE_TEXT05","features":[152]},{"name":"TILE_TEMPLATE_TEXT06","features":[152]},{"name":"TILE_TEMPLATE_TEXT07","features":[152]},{"name":"TILE_TEMPLATE_TEXT08","features":[152]},{"name":"TILE_TEMPLATE_TEXT09","features":[152]},{"name":"TILE_TEMPLATE_TEXT10","features":[152]},{"name":"TILE_TEMPLATE_TEXT11","features":[152]},{"name":"TILE_TEMPLATE_TILEFLYOUT01","features":[152]},{"name":"TILE_TEMPLATE_TYPE","features":[152]},{"name":"TXTLOG_BACKUP","features":[152]},{"name":"TXTLOG_CMI","features":[152]},{"name":"TXTLOG_COPYFILES","features":[152]},{"name":"TXTLOG_DEPTH_DECR","features":[152]},{"name":"TXTLOG_DEPTH_INCR","features":[152]},{"name":"TXTLOG_DETAILS","features":[152]},{"name":"TXTLOG_DEVINST","features":[152]},{"name":"TXTLOG_DEVMGR","features":[152]},{"name":"TXTLOG_DRIVER_STORE","features":[152]},{"name":"TXTLOG_DRVSETUP","features":[152]},{"name":"TXTLOG_ERROR","features":[152]},{"name":"TXTLOG_FILEQ","features":[152]},{"name":"TXTLOG_FLUSH_FILE","features":[152]},{"name":"TXTLOG_INF","features":[152]},{"name":"TXTLOG_INFDB","features":[152]},{"name":"TXTLOG_INSTALLER","features":[152]},{"name":"TXTLOG_NEWDEV","features":[152]},{"name":"TXTLOG_POLICY","features":[152]},{"name":"TXTLOG_RESERVED_FLAGS","features":[152]},{"name":"TXTLOG_SETUP","features":[152]},{"name":"TXTLOG_SETUPAPI_BITS","features":[152]},{"name":"TXTLOG_SETUPAPI_CMDLINE","features":[152]},{"name":"TXTLOG_SETUPAPI_DEVLOG","features":[152]},{"name":"TXTLOG_SIGVERIF","features":[152]},{"name":"TXTLOG_SUMMARY","features":[152]},{"name":"TXTLOG_SYSTEM_STATE_CHANGE","features":[152]},{"name":"TXTLOG_TAB_1","features":[152]},{"name":"TXTLOG_TIMESTAMP","features":[152]},{"name":"TXTLOG_UI","features":[152]},{"name":"TXTLOG_UMPNPMGR","features":[152]},{"name":"TXTLOG_UTIL","features":[152]},{"name":"TXTLOG_VENDOR","features":[152]},{"name":"TXTLOG_VERBOSE","features":[152]},{"name":"TXTLOG_VERY_VERBOSE","features":[152]},{"name":"TXTLOG_WARNING","features":[152]},{"name":"TestApplyPatchToFileA","features":[1,152]},{"name":"TestApplyPatchToFileByBuffers","features":[1,152]},{"name":"TestApplyPatchToFileByHandles","features":[1,152]},{"name":"TestApplyPatchToFileW","features":[1,152]},{"name":"UIALL","features":[152]},{"name":"UILOGBITS","features":[152]},{"name":"UINONE","features":[152]},{"name":"USERINFOSTATE","features":[152]},{"name":"USERINFOSTATE_ABSENT","features":[152]},{"name":"USERINFOSTATE_INVALIDARG","features":[152]},{"name":"USERINFOSTATE_MOREDATA","features":[152]},{"name":"USERINFOSTATE_PRESENT","features":[152]},{"name":"USERINFOSTATE_UNKNOWN","features":[152]},{"name":"WARN_BAD_MAJOR_VERSION","features":[152]},{"name":"WARN_BASE","features":[152]},{"name":"WARN_EQUAL_FILE_VERSION","features":[152]},{"name":"WARN_FILE_VERSION_DOWNREV","features":[152]},{"name":"WARN_IMPROPER_TRANSFORM_VALIDATION","features":[152]},{"name":"WARN_INVALID_TRANSFORM_VALIDATION","features":[152]},{"name":"WARN_MAJOR_UPGRADE_PATCH","features":[152]},{"name":"WARN_OBSOLETION_WITH_MSI30","features":[152]},{"name":"WARN_OBSOLETION_WITH_PATCHSEQUENCE","features":[152]},{"name":"WARN_OBSOLETION_WITH_SEQUENCE_DATA","features":[152]},{"name":"WARN_PATCHPROPERTYNOTSET","features":[152]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_CODES","features":[152]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[152]},{"name":"WARN_SEQUENCE_DATA_GENERATION_DISABLED","features":[152]},{"name":"WARN_SEQUENCE_DATA_SUPERSEDENCE_IGNORED","features":[152]},{"name":"ZombifyActCtx","features":[1,152]},{"name":"_WIN32_MSI","features":[152]},{"name":"_WIN32_MSM","features":[152]},{"name":"cchMaxInteger","features":[152]},{"name":"ieError","features":[152]},{"name":"ieInfo","features":[152]},{"name":"ieStatusCancel","features":[152]},{"name":"ieStatusCreateEngine","features":[152]},{"name":"ieStatusFail","features":[152]},{"name":"ieStatusGetCUB","features":[152]},{"name":"ieStatusICECount","features":[152]},{"name":"ieStatusMerge","features":[152]},{"name":"ieStatusRunICE","features":[152]},{"name":"ieStatusShutdown","features":[152]},{"name":"ieStatusStarting","features":[152]},{"name":"ieStatusSuccess","features":[152]},{"name":"ieStatusSummaryInfo","features":[152]},{"name":"ieUnknown","features":[152]},{"name":"ieWarning","features":[152]},{"name":"msidbAssemblyAttributes","features":[152]},{"name":"msidbAssemblyAttributesURT","features":[152]},{"name":"msidbAssemblyAttributesWin32","features":[152]},{"name":"msidbClassAttributes","features":[152]},{"name":"msidbClassAttributesRelativePath","features":[152]},{"name":"msidbComponentAttributes","features":[152]},{"name":"msidbComponentAttributes64bit","features":[152]},{"name":"msidbComponentAttributesDisableRegistryReflection","features":[152]},{"name":"msidbComponentAttributesLocalOnly","features":[152]},{"name":"msidbComponentAttributesNeverOverwrite","features":[152]},{"name":"msidbComponentAttributesODBCDataSource","features":[152]},{"name":"msidbComponentAttributesOptional","features":[152]},{"name":"msidbComponentAttributesPermanent","features":[152]},{"name":"msidbComponentAttributesRegistryKeyPath","features":[152]},{"name":"msidbComponentAttributesShared","features":[152]},{"name":"msidbComponentAttributesSharedDllRefCount","features":[152]},{"name":"msidbComponentAttributesSourceOnly","features":[152]},{"name":"msidbComponentAttributesTransitive","features":[152]},{"name":"msidbComponentAttributesUninstallOnSupersedence","features":[152]},{"name":"msidbControlAttributes","features":[152]},{"name":"msidbControlAttributesBiDi","features":[152]},{"name":"msidbControlAttributesBitmap","features":[152]},{"name":"msidbControlAttributesCDROMVolume","features":[152]},{"name":"msidbControlAttributesComboList","features":[152]},{"name":"msidbControlAttributesElevationShield","features":[152]},{"name":"msidbControlAttributesEnabled","features":[152]},{"name":"msidbControlAttributesFixedSize","features":[152]},{"name":"msidbControlAttributesFixedVolume","features":[152]},{"name":"msidbControlAttributesFloppyVolume","features":[152]},{"name":"msidbControlAttributesFormatSize","features":[152]},{"name":"msidbControlAttributesHasBorder","features":[152]},{"name":"msidbControlAttributesIcon","features":[152]},{"name":"msidbControlAttributesIconSize16","features":[152]},{"name":"msidbControlAttributesIconSize32","features":[152]},{"name":"msidbControlAttributesIconSize48","features":[152]},{"name":"msidbControlAttributesImageHandle","features":[152]},{"name":"msidbControlAttributesIndirect","features":[152]},{"name":"msidbControlAttributesInteger","features":[152]},{"name":"msidbControlAttributesLeftScroll","features":[152]},{"name":"msidbControlAttributesMultiline","features":[152]},{"name":"msidbControlAttributesNoPrefix","features":[152]},{"name":"msidbControlAttributesNoWrap","features":[152]},{"name":"msidbControlAttributesPasswordInput","features":[152]},{"name":"msidbControlAttributesProgress95","features":[152]},{"name":"msidbControlAttributesPushLike","features":[152]},{"name":"msidbControlAttributesRAMDiskVolume","features":[152]},{"name":"msidbControlAttributesRTLRO","features":[152]},{"name":"msidbControlAttributesRemoteVolume","features":[152]},{"name":"msidbControlAttributesRemovableVolume","features":[152]},{"name":"msidbControlAttributesRightAligned","features":[152]},{"name":"msidbControlAttributesSorted","features":[152]},{"name":"msidbControlAttributesSunken","features":[152]},{"name":"msidbControlAttributesTransparent","features":[152]},{"name":"msidbControlAttributesUsersLanguage","features":[152]},{"name":"msidbControlAttributesVisible","features":[152]},{"name":"msidbControlShowRollbackCost","features":[152]},{"name":"msidbCustomActionType","features":[152]},{"name":"msidbCustomActionType64BitScript","features":[152]},{"name":"msidbCustomActionTypeAsync","features":[152]},{"name":"msidbCustomActionTypeBinaryData","features":[152]},{"name":"msidbCustomActionTypeClientRepeat","features":[152]},{"name":"msidbCustomActionTypeCommit","features":[152]},{"name":"msidbCustomActionTypeContinue","features":[152]},{"name":"msidbCustomActionTypeDirectory","features":[152]},{"name":"msidbCustomActionTypeDll","features":[152]},{"name":"msidbCustomActionTypeExe","features":[152]},{"name":"msidbCustomActionTypeFirstSequence","features":[152]},{"name":"msidbCustomActionTypeHideTarget","features":[152]},{"name":"msidbCustomActionTypeInScript","features":[152]},{"name":"msidbCustomActionTypeInstall","features":[152]},{"name":"msidbCustomActionTypeJScript","features":[152]},{"name":"msidbCustomActionTypeNoImpersonate","features":[152]},{"name":"msidbCustomActionTypeOncePerProcess","features":[152]},{"name":"msidbCustomActionTypePatchUninstall","features":[152]},{"name":"msidbCustomActionTypeProperty","features":[152]},{"name":"msidbCustomActionTypeRollback","features":[152]},{"name":"msidbCustomActionTypeSourceFile","features":[152]},{"name":"msidbCustomActionTypeTSAware","features":[152]},{"name":"msidbCustomActionTypeTextData","features":[152]},{"name":"msidbCustomActionTypeVBScript","features":[152]},{"name":"msidbDialogAttributes","features":[152]},{"name":"msidbDialogAttributesBiDi","features":[152]},{"name":"msidbDialogAttributesError","features":[152]},{"name":"msidbDialogAttributesKeepModeless","features":[152]},{"name":"msidbDialogAttributesLeftScroll","features":[152]},{"name":"msidbDialogAttributesMinimize","features":[152]},{"name":"msidbDialogAttributesModal","features":[152]},{"name":"msidbDialogAttributesRTLRO","features":[152]},{"name":"msidbDialogAttributesRightAligned","features":[152]},{"name":"msidbDialogAttributesSysModal","features":[152]},{"name":"msidbDialogAttributesTrackDiskSpace","features":[152]},{"name":"msidbDialogAttributesUseCustomPalette","features":[152]},{"name":"msidbDialogAttributesVisible","features":[152]},{"name":"msidbEmbeddedHandlesBasic","features":[152]},{"name":"msidbEmbeddedUI","features":[152]},{"name":"msidbEmbeddedUIAttributes","features":[152]},{"name":"msidbFeatureAttributes","features":[152]},{"name":"msidbFeatureAttributesDisallowAdvertise","features":[152]},{"name":"msidbFeatureAttributesFavorAdvertise","features":[152]},{"name":"msidbFeatureAttributesFavorLocal","features":[152]},{"name":"msidbFeatureAttributesFavorSource","features":[152]},{"name":"msidbFeatureAttributesFollowParent","features":[152]},{"name":"msidbFeatureAttributesNoUnsupportedAdvertise","features":[152]},{"name":"msidbFeatureAttributesUIDisallowAbsent","features":[152]},{"name":"msidbFileAttributes","features":[152]},{"name":"msidbFileAttributesChecksum","features":[152]},{"name":"msidbFileAttributesCompressed","features":[152]},{"name":"msidbFileAttributesHidden","features":[152]},{"name":"msidbFileAttributesIsolatedComp","features":[152]},{"name":"msidbFileAttributesNoncompressed","features":[152]},{"name":"msidbFileAttributesPatchAdded","features":[152]},{"name":"msidbFileAttributesReadOnly","features":[152]},{"name":"msidbFileAttributesReserved0","features":[152]},{"name":"msidbFileAttributesReserved1","features":[152]},{"name":"msidbFileAttributesReserved2","features":[152]},{"name":"msidbFileAttributesReserved3","features":[152]},{"name":"msidbFileAttributesReserved4","features":[152]},{"name":"msidbFileAttributesSystem","features":[152]},{"name":"msidbFileAttributesVital","features":[152]},{"name":"msidbIniFileAction","features":[152]},{"name":"msidbIniFileActionAddLine","features":[152]},{"name":"msidbIniFileActionAddTag","features":[152]},{"name":"msidbIniFileActionCreateLine","features":[152]},{"name":"msidbIniFileActionRemoveLine","features":[152]},{"name":"msidbIniFileActionRemoveTag","features":[152]},{"name":"msidbLocatorType","features":[152]},{"name":"msidbLocatorType64bit","features":[152]},{"name":"msidbLocatorTypeDirectory","features":[152]},{"name":"msidbLocatorTypeFileName","features":[152]},{"name":"msidbLocatorTypeRawValue","features":[152]},{"name":"msidbMoveFileOptions","features":[152]},{"name":"msidbMoveFileOptionsMove","features":[152]},{"name":"msidbODBCDataSourceRegistration","features":[152]},{"name":"msidbODBCDataSourceRegistrationPerMachine","features":[152]},{"name":"msidbODBCDataSourceRegistrationPerUser","features":[152]},{"name":"msidbPatchAttributes","features":[152]},{"name":"msidbPatchAttributesNonVital","features":[152]},{"name":"msidbRegistryRoot","features":[152]},{"name":"msidbRegistryRootClassesRoot","features":[152]},{"name":"msidbRegistryRootCurrentUser","features":[152]},{"name":"msidbRegistryRootLocalMachine","features":[152]},{"name":"msidbRegistryRootUsers","features":[152]},{"name":"msidbRemoveFileInstallMode","features":[152]},{"name":"msidbRemoveFileInstallModeOnBoth","features":[152]},{"name":"msidbRemoveFileInstallModeOnInstall","features":[152]},{"name":"msidbRemoveFileInstallModeOnRemove","features":[152]},{"name":"msidbServiceConfigEvent","features":[152]},{"name":"msidbServiceConfigEventInstall","features":[152]},{"name":"msidbServiceConfigEventReinstall","features":[152]},{"name":"msidbServiceConfigEventUninstall","features":[152]},{"name":"msidbServiceControlEvent","features":[152]},{"name":"msidbServiceControlEventDelete","features":[152]},{"name":"msidbServiceControlEventStart","features":[152]},{"name":"msidbServiceControlEventStop","features":[152]},{"name":"msidbServiceControlEventUninstallDelete","features":[152]},{"name":"msidbServiceControlEventUninstallStart","features":[152]},{"name":"msidbServiceControlEventUninstallStop","features":[152]},{"name":"msidbServiceInstallErrorControl","features":[152]},{"name":"msidbServiceInstallErrorControlVital","features":[152]},{"name":"msidbSumInfoSourceType","features":[152]},{"name":"msidbSumInfoSourceTypeAdminImage","features":[152]},{"name":"msidbSumInfoSourceTypeCompressed","features":[152]},{"name":"msidbSumInfoSourceTypeLUAPackage","features":[152]},{"name":"msidbSumInfoSourceTypeSFN","features":[152]},{"name":"msidbTextStyleStyleBits","features":[152]},{"name":"msidbTextStyleStyleBitsBold","features":[152]},{"name":"msidbTextStyleStyleBitsItalic","features":[152]},{"name":"msidbTextStyleStyleBitsStrike","features":[152]},{"name":"msidbTextStyleStyleBitsUnderline","features":[152]},{"name":"msidbUpgradeAttributes","features":[152]},{"name":"msidbUpgradeAttributesIgnoreRemoveFailure","features":[152]},{"name":"msidbUpgradeAttributesLanguagesExclusive","features":[152]},{"name":"msidbUpgradeAttributesMigrateFeatures","features":[152]},{"name":"msidbUpgradeAttributesOnlyDetect","features":[152]},{"name":"msidbUpgradeAttributesVersionMaxInclusive","features":[152]},{"name":"msidbUpgradeAttributesVersionMinInclusive","features":[152]},{"name":"msifiFastInstallBits","features":[152]},{"name":"msifiFastInstallLessPrgMsg","features":[152]},{"name":"msifiFastInstallNoSR","features":[152]},{"name":"msifiFastInstallQuickCosting","features":[152]},{"name":"msirbRebootCustomActionReason","features":[152]},{"name":"msirbRebootDeferred","features":[152]},{"name":"msirbRebootForceRebootReason","features":[152]},{"name":"msirbRebootImmediate","features":[152]},{"name":"msirbRebootInUseFilesReason","features":[152]},{"name":"msirbRebootReason","features":[152]},{"name":"msirbRebootScheduleRebootReason","features":[152]},{"name":"msirbRebootType","features":[152]},{"name":"msirbRebootUndeterminedReason","features":[152]},{"name":"msmErrorDirCreate","features":[152]},{"name":"msmErrorExclusion","features":[152]},{"name":"msmErrorFeatureRequired","features":[152]},{"name":"msmErrorFileCreate","features":[152]},{"name":"msmErrorLanguageFailed","features":[152]},{"name":"msmErrorLanguageUnsupported","features":[152]},{"name":"msmErrorResequenceMerge","features":[152]},{"name":"msmErrorTableMerge","features":[152]},{"name":"msmErrorType","features":[152]}],"531":[{"name":"AVRF_BACKTRACE_INFORMATION","features":[153]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_DONT_RESOLVE_TRACES","features":[153]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_SUSPEND","features":[153]},{"name":"AVRF_HANDLEOPERATION_ENUMERATE_CALLBACK","features":[153]},{"name":"AVRF_HANDLE_OPERATION","features":[153]},{"name":"AVRF_HEAPALLOCATION_ENUMERATE_CALLBACK","features":[153]},{"name":"AVRF_HEAP_ALLOCATION","features":[153]},{"name":"AVRF_MAX_TRACES","features":[153]},{"name":"AVRF_RESOURCE_ENUMERATE_CALLBACK","features":[153]},{"name":"AllocationStateBusy","features":[153]},{"name":"AllocationStateFree","features":[153]},{"name":"AllocationStateUnknown","features":[153]},{"name":"AvrfResourceHandleTrace","features":[153]},{"name":"AvrfResourceHeapAllocation","features":[153]},{"name":"AvrfResourceMax","features":[153]},{"name":"HeapEnumerationEverything","features":[153]},{"name":"HeapEnumerationStop","features":[153]},{"name":"HeapFullPageHeap","features":[153]},{"name":"HeapMetadata","features":[153]},{"name":"HeapStateMask","features":[153]},{"name":"OperationDbBADREF","features":[153]},{"name":"OperationDbCLOSE","features":[153]},{"name":"OperationDbOPEN","features":[153]},{"name":"OperationDbUnused","features":[153]},{"name":"VERIFIER_ENUM_RESOURCE_FLAGS","features":[153]},{"name":"VerifierEnumerateResource","features":[1,153]},{"name":"eAvrfResourceTypes","features":[153]},{"name":"eHANDLE_TRACE_OPERATIONS","features":[153]},{"name":"eHeapAllocationState","features":[153]},{"name":"eHeapEnumerationLevel","features":[153]},{"name":"eUserAllocationState","features":[153]}],"533":[{"name":"APPDOMAIN_FORCE_TRIVIAL_WAIT_OPERATIONS","features":[154]},{"name":"APPDOMAIN_SECURITY_DEFAULT","features":[154]},{"name":"APPDOMAIN_SECURITY_FLAGS","features":[154]},{"name":"APPDOMAIN_SECURITY_FORBID_CROSSAD_REVERSE_PINVOKE","features":[154]},{"name":"APPDOMAIN_SECURITY_SANDBOXED","features":[154]},{"name":"AssemblyBindInfo","features":[154]},{"name":"BucketParamLength","features":[154]},{"name":"BucketParameterIndex","features":[154]},{"name":"BucketParameters","features":[1,154]},{"name":"BucketParamsCount","features":[154]},{"name":"CLRCreateInstance","features":[154]},{"name":"CLRCreateInstanceFnPtr","features":[154]},{"name":"CLRRuntimeHost","features":[154]},{"name":"CLR_ASSEMBLY_BUILD_VERSION","features":[154]},{"name":"CLR_ASSEMBLY_IDENTITY_FLAGS_DEFAULT","features":[154]},{"name":"CLR_ASSEMBLY_MAJOR_VERSION","features":[154]},{"name":"CLR_ASSEMBLY_MINOR_VERSION","features":[154]},{"name":"CLR_BUILD_VERSION","features":[154]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_DEBUGGER_LAUNCH","features":[154]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_PENDING","features":[154]},{"name":"CLR_DEBUGGING_PROCESS_FLAGS","features":[154]},{"name":"CLR_DEBUGGING_VERSION","features":[154]},{"name":"CLR_MAJOR_VERSION","features":[154]},{"name":"CLR_MINOR_VERSION","features":[154]},{"name":"CLSID_CLRDebugging","features":[154]},{"name":"CLSID_CLRDebuggingLegacy","features":[154]},{"name":"CLSID_CLRMetaHost","features":[154]},{"name":"CLSID_CLRMetaHostPolicy","features":[154]},{"name":"CLSID_CLRProfiling","features":[154]},{"name":"CLSID_CLRStrongName","features":[154]},{"name":"CLSID_RESOLUTION_DEFAULT","features":[154]},{"name":"CLSID_RESOLUTION_FLAGS","features":[154]},{"name":"CLSID_RESOLUTION_REGISTERED","features":[154]},{"name":"COR_GC_COUNTS","features":[154]},{"name":"COR_GC_MEMORYUSAGE","features":[154]},{"name":"COR_GC_STATS","features":[154]},{"name":"COR_GC_STAT_TYPES","features":[154]},{"name":"COR_GC_THREAD_HAS_PROMOTED_BYTES","features":[154]},{"name":"COR_GC_THREAD_STATS","features":[154]},{"name":"COR_GC_THREAD_STATS_TYPES","features":[154]},{"name":"CallFunctionShim","features":[154]},{"name":"CallbackThreadSetFnPtr","features":[154]},{"name":"CallbackThreadUnsetFnPtr","features":[154]},{"name":"ClrCreateManagedInstance","features":[154]},{"name":"ComCallUnmarshal","features":[154]},{"name":"ComCallUnmarshalV4","features":[154]},{"name":"CorBindToCurrentRuntime","features":[154]},{"name":"CorBindToRuntime","features":[154]},{"name":"CorBindToRuntimeByCfg","features":[154]},{"name":"CorBindToRuntimeEx","features":[154]},{"name":"CorBindToRuntimeHost","features":[154]},{"name":"CorExitProcess","features":[154]},{"name":"CorLaunchApplication","features":[1,154,37]},{"name":"CorMarkThreadInThreadPool","features":[154]},{"name":"CorRuntimeHost","features":[154]},{"name":"CreateDebuggingInterfaceFromVersion","features":[154]},{"name":"CreateInterfaceFnPtr","features":[154]},{"name":"CustomDumpItem","features":[154]},{"name":"DEPRECATED_CLR_API_MESG","features":[154]},{"name":"DUMP_FLAVOR_CriticalCLRState","features":[154]},{"name":"DUMP_FLAVOR_Default","features":[154]},{"name":"DUMP_FLAVOR_Mini","features":[154]},{"name":"DUMP_FLAVOR_NonHeapCLRState","features":[154]},{"name":"DUMP_ITEM_None","features":[154]},{"name":"EApiCategories","features":[154]},{"name":"EBindPolicyLevels","features":[154]},{"name":"ECLRAssemblyIdentityFlags","features":[154]},{"name":"EClrEvent","features":[154]},{"name":"EClrFailure","features":[154]},{"name":"EClrOperation","features":[154]},{"name":"EClrUnhandledException","features":[154]},{"name":"EContextType","features":[154]},{"name":"ECustomDumpFlavor","features":[154]},{"name":"ECustomDumpItemKind","features":[154]},{"name":"EHostApplicationPolicy","features":[154]},{"name":"EHostBindingPolicyModifyFlags","features":[154]},{"name":"EInitializeNewDomainFlags","features":[154]},{"name":"EMemoryAvailable","features":[154]},{"name":"EMemoryCriticalLevel","features":[154]},{"name":"EPolicyAction","features":[154]},{"name":"ESymbolReadingPolicy","features":[154]},{"name":"ETaskType","features":[154]},{"name":"Event_ClrDisabled","features":[154]},{"name":"Event_DomainUnload","features":[154]},{"name":"Event_MDAFired","features":[154]},{"name":"Event_StackOverflow","features":[154]},{"name":"FAIL_AccessViolation","features":[154]},{"name":"FAIL_CodeContract","features":[154]},{"name":"FAIL_CriticalResource","features":[154]},{"name":"FAIL_FatalRuntime","features":[154]},{"name":"FAIL_NonCriticalResource","features":[154]},{"name":"FAIL_OrphanedLock","features":[154]},{"name":"FAIL_StackOverflow","features":[154]},{"name":"FExecuteInAppDomainCallback","features":[154]},{"name":"FLockClrVersionCallback","features":[154]},{"name":"GetCLRIdentityManager","features":[154]},{"name":"GetCORRequiredVersion","features":[154]},{"name":"GetCORSystemDirectory","features":[154]},{"name":"GetCORVersion","features":[154]},{"name":"GetFileVersion","features":[154]},{"name":"GetRealProcAddress","features":[154]},{"name":"GetRequestedRuntimeInfo","features":[154]},{"name":"GetRequestedRuntimeVersion","features":[154]},{"name":"GetRequestedRuntimeVersionForCLSID","features":[154]},{"name":"GetVersionFromProcess","features":[1,154]},{"name":"HOST_APPLICATION_BINDING_POLICY","features":[154]},{"name":"HOST_BINDING_POLICY_MODIFY_CHAIN","features":[154]},{"name":"HOST_BINDING_POLICY_MODIFY_DEFAULT","features":[154]},{"name":"HOST_BINDING_POLICY_MODIFY_MAX","features":[154]},{"name":"HOST_BINDING_POLICY_MODIFY_REMOVE","features":[154]},{"name":"HOST_TYPE","features":[154]},{"name":"HOST_TYPE_APPLAUNCH","features":[154]},{"name":"HOST_TYPE_CORFLAG","features":[154]},{"name":"HOST_TYPE_DEFAULT","features":[154]},{"name":"IActionOnCLREvent","features":[154]},{"name":"IApartmentCallback","features":[154]},{"name":"IAppDomainBinding","features":[154]},{"name":"ICLRAppDomainResourceMonitor","features":[154]},{"name":"ICLRAssemblyIdentityManager","features":[154]},{"name":"ICLRAssemblyReferenceList","features":[154]},{"name":"ICLRControl","features":[154]},{"name":"ICLRDebugManager","features":[154]},{"name":"ICLRDebugging","features":[154]},{"name":"ICLRDebuggingLibraryProvider","features":[154]},{"name":"ICLRDomainManager","features":[154]},{"name":"ICLRErrorReportingManager","features":[154]},{"name":"ICLRGCManager","features":[154]},{"name":"ICLRGCManager2","features":[154]},{"name":"ICLRHostBindingPolicyManager","features":[154]},{"name":"ICLRHostProtectionManager","features":[154]},{"name":"ICLRIoCompletionManager","features":[154]},{"name":"ICLRMemoryNotificationCallback","features":[154]},{"name":"ICLRMetaHost","features":[154]},{"name":"ICLRMetaHostPolicy","features":[154]},{"name":"ICLROnEventManager","features":[154]},{"name":"ICLRPolicyManager","features":[154]},{"name":"ICLRProbingAssemblyEnum","features":[154]},{"name":"ICLRProfiling","features":[154]},{"name":"ICLRReferenceAssemblyEnum","features":[154]},{"name":"ICLRRuntimeHost","features":[154]},{"name":"ICLRRuntimeInfo","features":[154]},{"name":"ICLRStrongName","features":[154]},{"name":"ICLRStrongName2","features":[154]},{"name":"ICLRStrongName3","features":[154]},{"name":"ICLRSyncManager","features":[154]},{"name":"ICLRTask","features":[154]},{"name":"ICLRTask2","features":[154]},{"name":"ICLRTaskManager","features":[154]},{"name":"ICatalogServices","features":[154]},{"name":"ICorConfiguration","features":[154]},{"name":"ICorRuntimeHost","features":[154]},{"name":"ICorThreadpool","features":[154]},{"name":"IDebuggerInfo","features":[154]},{"name":"IDebuggerThreadControl","features":[154]},{"name":"IGCHost","features":[154]},{"name":"IGCHost2","features":[154]},{"name":"IGCHostControl","features":[154]},{"name":"IGCThreadControl","features":[154]},{"name":"IHostAssemblyManager","features":[154]},{"name":"IHostAssemblyStore","features":[154]},{"name":"IHostAutoEvent","features":[154]},{"name":"IHostControl","features":[154]},{"name":"IHostCrst","features":[154]},{"name":"IHostGCManager","features":[154]},{"name":"IHostIoCompletionManager","features":[154]},{"name":"IHostMalloc","features":[154]},{"name":"IHostManualEvent","features":[154]},{"name":"IHostMemoryManager","features":[154]},{"name":"IHostPolicyManager","features":[154]},{"name":"IHostSecurityContext","features":[154]},{"name":"IHostSecurityManager","features":[154]},{"name":"IHostSemaphore","features":[154]},{"name":"IHostSyncManager","features":[154]},{"name":"IHostTask","features":[154]},{"name":"IHostTaskManager","features":[154]},{"name":"IHostThreadpoolManager","features":[154]},{"name":"IManagedObject","features":[154]},{"name":"IObjectHandle","features":[154]},{"name":"ITypeName","features":[154]},{"name":"ITypeNameBuilder","features":[154]},{"name":"ITypeNameFactory","features":[154]},{"name":"InvalidBucketParamIndex","features":[154]},{"name":"LIBID_mscoree","features":[154]},{"name":"LoadLibraryShim","features":[1,154]},{"name":"LoadStringRC","features":[154]},{"name":"LoadStringRCEx","features":[154]},{"name":"LockClrVersion","features":[154]},{"name":"MALLOC_EXECUTABLE","features":[154]},{"name":"MALLOC_THREADSAFE","features":[154]},{"name":"MALLOC_TYPE","features":[154]},{"name":"MDAInfo","features":[154]},{"name":"METAHOST_CONFIG_FLAGS","features":[154]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_FALSE","features":[154]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_MASK","features":[154]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_TRUE","features":[154]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_UNSET","features":[154]},{"name":"METAHOST_POLICY_APPLY_UPGRADE_POLICY","features":[154]},{"name":"METAHOST_POLICY_EMULATE_EXE_LAUNCH","features":[154]},{"name":"METAHOST_POLICY_ENSURE_SKU_SUPPORTED","features":[154]},{"name":"METAHOST_POLICY_FLAGS","features":[154]},{"name":"METAHOST_POLICY_HIGHCOMPAT","features":[154]},{"name":"METAHOST_POLICY_IGNORE_ERROR_MODE","features":[154]},{"name":"METAHOST_POLICY_SHOW_ERROR_DIALOG","features":[154]},{"name":"METAHOST_POLICY_USE_PROCESS_IMAGE_PATH","features":[154]},{"name":"MaxClrEvent","features":[154]},{"name":"MaxClrFailure","features":[154]},{"name":"MaxClrOperation","features":[154]},{"name":"MaxPolicyAction","features":[154]},{"name":"ModuleBindInfo","features":[154]},{"name":"OPR_AppDomainRudeUnload","features":[154]},{"name":"OPR_AppDomainUnload","features":[154]},{"name":"OPR_FinalizerRun","features":[154]},{"name":"OPR_ProcessExit","features":[154]},{"name":"OPR_ThreadAbort","features":[154]},{"name":"OPR_ThreadRudeAbortInCriticalRegion","features":[154]},{"name":"OPR_ThreadRudeAbortInNonCriticalRegion","features":[154]},{"name":"PTLS_CALLBACK_FUNCTION","features":[154]},{"name":"Parameter1","features":[154]},{"name":"Parameter2","features":[154]},{"name":"Parameter3","features":[154]},{"name":"Parameter4","features":[154]},{"name":"Parameter5","features":[154]},{"name":"Parameter6","features":[154]},{"name":"Parameter7","features":[154]},{"name":"Parameter8","features":[154]},{"name":"Parameter9","features":[154]},{"name":"RUNTIME_INFO_DONT_RETURN_DIRECTORY","features":[154]},{"name":"RUNTIME_INFO_DONT_RETURN_VERSION","features":[154]},{"name":"RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG","features":[154]},{"name":"RUNTIME_INFO_FLAGS","features":[154]},{"name":"RUNTIME_INFO_IGNORE_ERROR_MODE","features":[154]},{"name":"RUNTIME_INFO_REQUEST_AMD64","features":[154]},{"name":"RUNTIME_INFO_REQUEST_ARM64","features":[154]},{"name":"RUNTIME_INFO_REQUEST_IA64","features":[154]},{"name":"RUNTIME_INFO_REQUEST_X86","features":[154]},{"name":"RUNTIME_INFO_UPGRADE_VERSION","features":[154]},{"name":"RunDll32ShimW","features":[1,154]},{"name":"RuntimeLoadedCallbackFnPtr","features":[154]},{"name":"SO_ClrEngine","features":[154]},{"name":"SO_Managed","features":[154]},{"name":"SO_Other","features":[154]},{"name":"STARTUP_ALWAYSFLOW_IMPERSONATION","features":[154]},{"name":"STARTUP_ARM","features":[154]},{"name":"STARTUP_CONCURRENT_GC","features":[154]},{"name":"STARTUP_DISABLE_COMMITTHREADSTACK","features":[154]},{"name":"STARTUP_ETW","features":[154]},{"name":"STARTUP_FLAGS","features":[154]},{"name":"STARTUP_HOARD_GC_VM","features":[154]},{"name":"STARTUP_LEGACY_IMPERSONATION","features":[154]},{"name":"STARTUP_LOADER_OPTIMIZATION_MASK","features":[154]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN","features":[154]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST","features":[154]},{"name":"STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN","features":[154]},{"name":"STARTUP_LOADER_SAFEMODE","features":[154]},{"name":"STARTUP_LOADER_SETPREFERENCE","features":[154]},{"name":"STARTUP_SERVER_GC","features":[154]},{"name":"STARTUP_SINGLE_VERSION_HOSTING_INTERFACE","features":[154]},{"name":"STARTUP_TRIM_GC_COMMIT","features":[154]},{"name":"StackOverflowInfo","features":[1,154,30,7]},{"name":"StackOverflowType","features":[154]},{"name":"TT_ADUNLOAD","features":[154]},{"name":"TT_DEBUGGERHELPER","features":[154]},{"name":"TT_FINALIZER","features":[154]},{"name":"TT_GC","features":[154]},{"name":"TT_THREADPOOL_GATE","features":[154]},{"name":"TT_THREADPOOL_IOCOMPLETION","features":[154]},{"name":"TT_THREADPOOL_TIMER","features":[154]},{"name":"TT_THREADPOOL_WAIT","features":[154]},{"name":"TT_THREADPOOL_WORKER","features":[154]},{"name":"TT_UNKNOWN","features":[154]},{"name":"TT_USER","features":[154]},{"name":"TypeNameFactory","features":[154]},{"name":"WAIT_ALERTABLE","features":[154]},{"name":"WAIT_MSGPUMP","features":[154]},{"name":"WAIT_NOTINDEADLOCK","features":[154]},{"name":"WAIT_OPTION","features":[154]},{"name":"eAbortThread","features":[154]},{"name":"eAll","features":[154]},{"name":"eAppDomainCritical","features":[154]},{"name":"eCurrentContext","features":[154]},{"name":"eDisableRuntime","features":[154]},{"name":"eExitProcess","features":[154]},{"name":"eExternalProcessMgmt","features":[154]},{"name":"eExternalThreading","features":[154]},{"name":"eFastExitProcess","features":[154]},{"name":"eHostDeterminedPolicy","features":[154]},{"name":"eInitializeNewDomainFlags_NoSecurityChanges","features":[154]},{"name":"eInitializeNewDomainFlags_None","features":[154]},{"name":"eMayLeakOnAbort","features":[154]},{"name":"eMemoryAvailableHigh","features":[154]},{"name":"eMemoryAvailableLow","features":[154]},{"name":"eMemoryAvailableNeutral","features":[154]},{"name":"eNoAction","features":[154]},{"name":"eNoChecks","features":[154]},{"name":"ePolicyLevelAdmin","features":[154]},{"name":"ePolicyLevelApp","features":[154]},{"name":"ePolicyLevelHost","features":[154]},{"name":"ePolicyLevelNone","features":[154]},{"name":"ePolicyLevelPublisher","features":[154]},{"name":"ePolicyLevelRetargetable","features":[154]},{"name":"ePolicyPortability","features":[154]},{"name":"ePolicyUnifiedToCLR","features":[154]},{"name":"eProcessCritical","features":[154]},{"name":"eRestrictedContext","features":[154]},{"name":"eRudeAbortThread","features":[154]},{"name":"eRudeExitProcess","features":[154]},{"name":"eRudeUnloadAppDomain","features":[154]},{"name":"eRuntimeDeterminedPolicy","features":[154]},{"name":"eSecurityInfrastructure","features":[154]},{"name":"eSelfAffectingProcessMgmt","features":[154]},{"name":"eSelfAffectingThreading","features":[154]},{"name":"eSharedState","features":[154]},{"name":"eSymbolReadingAlways","features":[154]},{"name":"eSymbolReadingFullTrustOnly","features":[154]},{"name":"eSymbolReadingNever","features":[154]},{"name":"eSynchronization","features":[154]},{"name":"eTaskCritical","features":[154]},{"name":"eThrowException","features":[154]},{"name":"eUI","features":[154]},{"name":"eUnloadAppDomain","features":[154]}],"534":[{"name":"ADVANCED_FEATURE_FLAGS","features":[41]},{"name":"ADVF","features":[41]},{"name":"ADVFCACHE_FORCEBUILTIN","features":[41]},{"name":"ADVFCACHE_NOHANDLER","features":[41]},{"name":"ADVFCACHE_ONSAVE","features":[41]},{"name":"ADVF_DATAONSTOP","features":[41]},{"name":"ADVF_NODATA","features":[41]},{"name":"ADVF_ONLYONCE","features":[41]},{"name":"ADVF_PRIMEFIRST","features":[41]},{"name":"APPIDREGFLAGS_AAA_NO_IMPLICIT_ACTIVATE_AS_IU","features":[41]},{"name":"APPIDREGFLAGS_ACTIVATE_IUSERVER_INDESKTOP","features":[41]},{"name":"APPIDREGFLAGS_ISSUE_ACTIVATION_RPC_AT_IDENTIFY","features":[41]},{"name":"APPIDREGFLAGS_IUSERVER_ACTIVATE_IN_CLIENT_SESSION_ONLY","features":[41]},{"name":"APPIDREGFLAGS_IUSERVER_SELF_SID_IN_LAUNCH_PERMISSION","features":[41]},{"name":"APPIDREGFLAGS_IUSERVER_UNMODIFIED_LOGON_TOKEN","features":[41]},{"name":"APPIDREGFLAGS_RESERVED1","features":[41]},{"name":"APPIDREGFLAGS_RESERVED2","features":[41]},{"name":"APPIDREGFLAGS_RESERVED3","features":[41]},{"name":"APPIDREGFLAGS_RESERVED4","features":[41]},{"name":"APPIDREGFLAGS_RESERVED5","features":[41]},{"name":"APPIDREGFLAGS_RESERVED7","features":[41]},{"name":"APPIDREGFLAGS_RESERVED8","features":[41]},{"name":"APPIDREGFLAGS_RESERVED9","features":[41]},{"name":"APPIDREGFLAGS_SECURE_SERVER_PROCESS_SD_AND_BIND","features":[41]},{"name":"APTTYPE","features":[41]},{"name":"APTTYPEQUALIFIER","features":[41]},{"name":"APTTYPEQUALIFIER_APPLICATION_STA","features":[41]},{"name":"APTTYPEQUALIFIER_IMPLICIT_MTA","features":[41]},{"name":"APTTYPEQUALIFIER_NA_ON_IMPLICIT_MTA","features":[41]},{"name":"APTTYPEQUALIFIER_NA_ON_MAINSTA","features":[41]},{"name":"APTTYPEQUALIFIER_NA_ON_MTA","features":[41]},{"name":"APTTYPEQUALIFIER_NA_ON_STA","features":[41]},{"name":"APTTYPEQUALIFIER_NONE","features":[41]},{"name":"APTTYPEQUALIFIER_RESERVED_1","features":[41]},{"name":"APTTYPE_CURRENT","features":[41]},{"name":"APTTYPE_MAINSTA","features":[41]},{"name":"APTTYPE_MTA","features":[41]},{"name":"APTTYPE_NA","features":[41]},{"name":"APTTYPE_STA","features":[41]},{"name":"ASYNC_MODE_COMPATIBILITY","features":[41]},{"name":"ASYNC_MODE_DEFAULT","features":[41]},{"name":"AUTHENTICATEINFO","features":[41]},{"name":"ApplicationType","features":[41]},{"name":"AsyncIAdviseSink","features":[41]},{"name":"AsyncIAdviseSink2","features":[41]},{"name":"AsyncIMultiQI","features":[41]},{"name":"AsyncIPipeByte","features":[41]},{"name":"AsyncIPipeDouble","features":[41]},{"name":"AsyncIPipeLong","features":[41]},{"name":"AsyncIUnknown","features":[41]},{"name":"BINDINFO","features":[1,12,4,41]},{"name":"BINDINFOF","features":[41]},{"name":"BINDINFOF_URLENCODEDEXTRAINFO","features":[41]},{"name":"BINDINFOF_URLENCODESTGMEDDATA","features":[41]},{"name":"BINDPTR","features":[1,41,155,42]},{"name":"BIND_FLAGS","features":[41]},{"name":"BIND_JUSTTESTEXISTENCE","features":[41]},{"name":"BIND_MAYBOTHERUSER","features":[41]},{"name":"BIND_OPTS","features":[41]},{"name":"BIND_OPTS2","features":[41]},{"name":"BIND_OPTS3","features":[1,41]},{"name":"BLOB","features":[41]},{"name":"BYTE_BLOB","features":[41]},{"name":"BYTE_SIZEDARR","features":[41]},{"name":"BindMoniker","features":[41]},{"name":"CALLCONV","features":[41]},{"name":"CALLTYPE","features":[41]},{"name":"CALLTYPE_ASYNC","features":[41]},{"name":"CALLTYPE_ASYNC_CALLPENDING","features":[41]},{"name":"CALLTYPE_NESTED","features":[41]},{"name":"CALLTYPE_TOPLEVEL","features":[41]},{"name":"CALLTYPE_TOPLEVEL_CALLPENDING","features":[41]},{"name":"CATEGORYINFO","features":[41]},{"name":"CC_CDECL","features":[41]},{"name":"CC_FASTCALL","features":[41]},{"name":"CC_FPFASTCALL","features":[41]},{"name":"CC_MACPASCAL","features":[41]},{"name":"CC_MAX","features":[41]},{"name":"CC_MPWCDECL","features":[41]},{"name":"CC_MPWPASCAL","features":[41]},{"name":"CC_MSCPASCAL","features":[41]},{"name":"CC_PASCAL","features":[41]},{"name":"CC_STDCALL","features":[41]},{"name":"CC_SYSCALL","features":[41]},{"name":"CLSCTX","features":[41]},{"name":"CLSCTX_ACTIVATE_32_BIT_SERVER","features":[41]},{"name":"CLSCTX_ACTIVATE_64_BIT_SERVER","features":[41]},{"name":"CLSCTX_ACTIVATE_AAA_AS_IU","features":[41]},{"name":"CLSCTX_ACTIVATE_ARM32_SERVER","features":[41]},{"name":"CLSCTX_ACTIVATE_X86_SERVER","features":[41]},{"name":"CLSCTX_ALL","features":[41]},{"name":"CLSCTX_ALLOW_LOWER_TRUST_REGISTRATION","features":[41]},{"name":"CLSCTX_APPCONTAINER","features":[41]},{"name":"CLSCTX_DISABLE_AAA","features":[41]},{"name":"CLSCTX_ENABLE_AAA","features":[41]},{"name":"CLSCTX_ENABLE_CLOAKING","features":[41]},{"name":"CLSCTX_ENABLE_CODE_DOWNLOAD","features":[41]},{"name":"CLSCTX_FROM_DEFAULT_CONTEXT","features":[41]},{"name":"CLSCTX_INPROC_HANDLER","features":[41]},{"name":"CLSCTX_INPROC_HANDLER16","features":[41]},{"name":"CLSCTX_INPROC_SERVER","features":[41]},{"name":"CLSCTX_INPROC_SERVER16","features":[41]},{"name":"CLSCTX_LOCAL_SERVER","features":[41]},{"name":"CLSCTX_NO_CODE_DOWNLOAD","features":[41]},{"name":"CLSCTX_NO_CUSTOM_MARSHAL","features":[41]},{"name":"CLSCTX_NO_FAILURE_LOG","features":[41]},{"name":"CLSCTX_PS_DLL","features":[41]},{"name":"CLSCTX_REMOTE_SERVER","features":[41]},{"name":"CLSCTX_RESERVED1","features":[41]},{"name":"CLSCTX_RESERVED2","features":[41]},{"name":"CLSCTX_RESERVED3","features":[41]},{"name":"CLSCTX_RESERVED4","features":[41]},{"name":"CLSCTX_RESERVED5","features":[41]},{"name":"CLSCTX_RESERVED6","features":[41]},{"name":"CLSCTX_SERVER","features":[41]},{"name":"CLSIDFromProgID","features":[41]},{"name":"CLSIDFromProgIDEx","features":[41]},{"name":"CLSIDFromString","features":[41]},{"name":"COAUTHIDENTITY","features":[41]},{"name":"COAUTHINFO","features":[41]},{"name":"COINIT","features":[41]},{"name":"COINITBASE","features":[41]},{"name":"COINITBASE_MULTITHREADED","features":[41]},{"name":"COINIT_APARTMENTTHREADED","features":[41]},{"name":"COINIT_DISABLE_OLE1DDE","features":[41]},{"name":"COINIT_MULTITHREADED","features":[41]},{"name":"COINIT_SPEED_OVER_MEMORY","features":[41]},{"name":"COLE_DEFAULT_AUTHINFO","features":[41]},{"name":"COLE_DEFAULT_PRINCIPAL","features":[41]},{"name":"COMBND_RESERVED1","features":[41]},{"name":"COMBND_RESERVED2","features":[41]},{"name":"COMBND_RESERVED3","features":[41]},{"name":"COMBND_RESERVED4","features":[41]},{"name":"COMBND_RPCTIMEOUT","features":[41]},{"name":"COMBND_SERVER_LOCALITY","features":[41]},{"name":"COMGLB_APPID","features":[41]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE","features":[41]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_ANY","features":[41]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_FATAL","features":[41]},{"name":"COMGLB_EXCEPTION_HANDLE","features":[41]},{"name":"COMGLB_EXCEPTION_HANDLING","features":[41]},{"name":"COMGLB_FAST_RUNDOWN","features":[41]},{"name":"COMGLB_PROPERTIES_RESERVED1","features":[41]},{"name":"COMGLB_PROPERTIES_RESERVED2","features":[41]},{"name":"COMGLB_PROPERTIES_RESERVED3","features":[41]},{"name":"COMGLB_RESERVED1","features":[41]},{"name":"COMGLB_RESERVED2","features":[41]},{"name":"COMGLB_RESERVED3","features":[41]},{"name":"COMGLB_RESERVED4","features":[41]},{"name":"COMGLB_RESERVED5","features":[41]},{"name":"COMGLB_RESERVED6","features":[41]},{"name":"COMGLB_RO_SETTINGS","features":[41]},{"name":"COMGLB_RPC_THREADPOOL_SETTING","features":[41]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_DEFAULT_POOL","features":[41]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_PRIVATE_POOL","features":[41]},{"name":"COMGLB_STA_MODALLOOP_REMOVE_TOUCH_MESSAGES","features":[41]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_DONOT_REMOVE_INPUT_MESSAGES","features":[41]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REMOVE_INPUT_MESSAGES","features":[41]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REORDER_POINTER_MESSAGES","features":[41]},{"name":"COMGLB_UNMARSHALING_POLICY","features":[41]},{"name":"COMGLB_UNMARSHALING_POLICY_HYBRID","features":[41]},{"name":"COMGLB_UNMARSHALING_POLICY_NORMAL","features":[41]},{"name":"COMGLB_UNMARSHALING_POLICY_STRONG","features":[41]},{"name":"COMSD","features":[41]},{"name":"COM_RIGHTS_ACTIVATE_LOCAL","features":[41]},{"name":"COM_RIGHTS_ACTIVATE_REMOTE","features":[41]},{"name":"COM_RIGHTS_EXECUTE","features":[41]},{"name":"COM_RIGHTS_EXECUTE_LOCAL","features":[41]},{"name":"COM_RIGHTS_EXECUTE_REMOTE","features":[41]},{"name":"COM_RIGHTS_RESERVED1","features":[41]},{"name":"COM_RIGHTS_RESERVED2","features":[41]},{"name":"CONNECTDATA","features":[41]},{"name":"COSERVERINFO","features":[41]},{"name":"COWAIT_ALERTABLE","features":[41]},{"name":"COWAIT_DEFAULT","features":[41]},{"name":"COWAIT_DISPATCH_CALLS","features":[41]},{"name":"COWAIT_DISPATCH_WINDOW_MESSAGES","features":[41]},{"name":"COWAIT_FLAGS","features":[41]},{"name":"COWAIT_INPUTAVAILABLE","features":[41]},{"name":"COWAIT_WAITALL","features":[41]},{"name":"CO_DEVICE_CATALOG_COOKIE","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTES","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_1","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_10","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_11","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_12","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_13","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_14","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_15","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_16","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_17","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_18","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_2","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_3","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_4","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_5","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_6","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_7","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_8","features":[41]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_9","features":[41]},{"name":"CO_MARSHALING_SOURCE_IS_APP_CONTAINER","features":[41]},{"name":"CO_MTA_USAGE_COOKIE","features":[41]},{"name":"CSPLATFORM","features":[41]},{"name":"CUSTDATA","features":[1,41,42]},{"name":"CUSTDATAITEM","features":[1,41,42]},{"name":"CWMO_DEFAULT","features":[41]},{"name":"CWMO_DISPATCH_CALLS","features":[41]},{"name":"CWMO_DISPATCH_WINDOW_MESSAGES","features":[41]},{"name":"CWMO_FLAGS","features":[41]},{"name":"CWMO_MAX_HANDLES","features":[41]},{"name":"CY","features":[41]},{"name":"CoAddRefServerProcess","features":[41]},{"name":"CoAllowSetForegroundWindow","features":[41]},{"name":"CoAllowUnmarshalerCLSID","features":[41]},{"name":"CoBuildVersion","features":[41]},{"name":"CoCancelCall","features":[41]},{"name":"CoCopyProxy","features":[41]},{"name":"CoCreateFreeThreadedMarshaler","features":[41]},{"name":"CoCreateGuid","features":[41]},{"name":"CoCreateInstance","features":[41]},{"name":"CoCreateInstanceEx","features":[41]},{"name":"CoCreateInstanceFromApp","features":[41]},{"name":"CoDecrementMTAUsage","features":[41]},{"name":"CoDisableCallCancellation","features":[41]},{"name":"CoDisconnectContext","features":[41]},{"name":"CoDisconnectObject","features":[41]},{"name":"CoDosDateTimeToFileTime","features":[1,41]},{"name":"CoEnableCallCancellation","features":[41]},{"name":"CoFileTimeNow","features":[1,41]},{"name":"CoFileTimeToDosDateTime","features":[1,41]},{"name":"CoFreeAllLibraries","features":[41]},{"name":"CoFreeLibrary","features":[1,41]},{"name":"CoFreeUnusedLibraries","features":[41]},{"name":"CoFreeUnusedLibrariesEx","features":[41]},{"name":"CoGetApartmentType","features":[41]},{"name":"CoGetCallContext","features":[41]},{"name":"CoGetCallerTID","features":[41]},{"name":"CoGetCancelObject","features":[41]},{"name":"CoGetClassObject","features":[41]},{"name":"CoGetContextToken","features":[41]},{"name":"CoGetCurrentLogicalThreadId","features":[41]},{"name":"CoGetCurrentProcess","features":[41]},{"name":"CoGetMalloc","features":[41]},{"name":"CoGetObject","features":[41]},{"name":"CoGetObjectContext","features":[41]},{"name":"CoGetPSClsid","features":[41]},{"name":"CoGetSystemSecurityPermissions","features":[4,41]},{"name":"CoGetTreatAsClass","features":[41]},{"name":"CoImpersonateClient","features":[41]},{"name":"CoIncrementMTAUsage","features":[41]},{"name":"CoInitialize","features":[41]},{"name":"CoInitializeEx","features":[41]},{"name":"CoInitializeSecurity","features":[4,41]},{"name":"CoInstall","features":[41]},{"name":"CoInvalidateRemoteMachineBindings","features":[41]},{"name":"CoIsHandlerConnected","features":[1,41]},{"name":"CoIsOle1Class","features":[1,41]},{"name":"CoLoadLibrary","features":[1,41]},{"name":"CoLockObjectExternal","features":[1,41]},{"name":"CoQueryAuthenticationServices","features":[41]},{"name":"CoQueryClientBlanket","features":[41]},{"name":"CoQueryProxyBlanket","features":[41]},{"name":"CoRegisterActivationFilter","features":[41]},{"name":"CoRegisterChannelHook","features":[41]},{"name":"CoRegisterClassObject","features":[41]},{"name":"CoRegisterDeviceCatalog","features":[41]},{"name":"CoRegisterInitializeSpy","features":[41]},{"name":"CoRegisterMallocSpy","features":[41]},{"name":"CoRegisterPSClsid","features":[41]},{"name":"CoRegisterSurrogate","features":[41]},{"name":"CoReleaseServerProcess","features":[41]},{"name":"CoResumeClassObjects","features":[41]},{"name":"CoRevertToSelf","features":[41]},{"name":"CoRevokeClassObject","features":[41]},{"name":"CoRevokeDeviceCatalog","features":[41]},{"name":"CoRevokeInitializeSpy","features":[41]},{"name":"CoRevokeMallocSpy","features":[41]},{"name":"CoSetCancelObject","features":[41]},{"name":"CoSetProxyBlanket","features":[41]},{"name":"CoSuspendClassObjects","features":[41]},{"name":"CoSwitchCallContext","features":[41]},{"name":"CoTaskMemAlloc","features":[41]},{"name":"CoTaskMemFree","features":[41]},{"name":"CoTaskMemRealloc","features":[41]},{"name":"CoTestCancel","features":[41]},{"name":"CoTreatAsClass","features":[41]},{"name":"CoUninitialize","features":[41]},{"name":"CoWaitForMultipleHandles","features":[1,41]},{"name":"CoWaitForMultipleObjects","features":[1,41]},{"name":"ComCallData","features":[41]},{"name":"ContextProperty","features":[41]},{"name":"CreateAntiMoniker","features":[41]},{"name":"CreateBindCtx","features":[41]},{"name":"CreateClassMoniker","features":[41]},{"name":"CreateDataAdviseHolder","features":[41]},{"name":"CreateDataCache","features":[41]},{"name":"CreateFileMoniker","features":[41]},{"name":"CreateGenericComposite","features":[41]},{"name":"CreateIUriBuilder","features":[41]},{"name":"CreateItemMoniker","features":[41]},{"name":"CreateObjrefMoniker","features":[41]},{"name":"CreatePointerMoniker","features":[41]},{"name":"CreateStdProgressIndicator","features":[1,41]},{"name":"CreateUri","features":[41]},{"name":"CreateUriFromMultiByteString","features":[41]},{"name":"CreateUriWithFragment","features":[41]},{"name":"DATADIR","features":[41]},{"name":"DATADIR_GET","features":[41]},{"name":"DATADIR_SET","features":[41]},{"name":"DCOMSCM_ACTIVATION_DISALLOW_UNSECURE_CALL","features":[41]},{"name":"DCOMSCM_ACTIVATION_USE_ALL_AUTHNSERVICES","features":[41]},{"name":"DCOMSCM_PING_DISALLOW_UNSECURE_CALL","features":[41]},{"name":"DCOMSCM_PING_USE_MID_AUTHNSERVICE","features":[41]},{"name":"DCOMSCM_RESOLVE_DISALLOW_UNSECURE_CALL","features":[41]},{"name":"DCOMSCM_RESOLVE_USE_ALL_AUTHNSERVICES","features":[41]},{"name":"DCOM_CALL_CANCELED","features":[41]},{"name":"DCOM_CALL_COMPLETE","features":[41]},{"name":"DCOM_CALL_STATE","features":[41]},{"name":"DCOM_NONE","features":[41]},{"name":"DESCKIND","features":[41]},{"name":"DESCKIND_FUNCDESC","features":[41]},{"name":"DESCKIND_IMPLICITAPPOBJ","features":[41]},{"name":"DESCKIND_MAX","features":[41]},{"name":"DESCKIND_NONE","features":[41]},{"name":"DESCKIND_TYPECOMP","features":[41]},{"name":"DESCKIND_VARDESC","features":[41]},{"name":"DISPATCH_FLAGS","features":[41]},{"name":"DISPATCH_METHOD","features":[41]},{"name":"DISPATCH_PROPERTYGET","features":[41]},{"name":"DISPATCH_PROPERTYPUT","features":[41]},{"name":"DISPATCH_PROPERTYPUTREF","features":[41]},{"name":"DISPPARAMS","features":[1,41,42]},{"name":"DMUS_ERRBASE","features":[41]},{"name":"DVASPECT","features":[41]},{"name":"DVASPECT_CONTENT","features":[41]},{"name":"DVASPECT_DOCPRINT","features":[41]},{"name":"DVASPECT_ICON","features":[41]},{"name":"DVASPECT_OPAQUE","features":[41]},{"name":"DVASPECT_THUMBNAIL","features":[41]},{"name":"DVASPECT_TRANSPARENT","features":[41]},{"name":"DVTARGETDEVICE","features":[41]},{"name":"DWORD_BLOB","features":[41]},{"name":"DWORD_SIZEDARR","features":[41]},{"name":"DcomChannelSetHResult","features":[41]},{"name":"ELEMDESC","features":[1,41,155,42]},{"name":"EOAC_ACCESS_CONTROL","features":[41]},{"name":"EOAC_ANY_AUTHORITY","features":[41]},{"name":"EOAC_APPID","features":[41]},{"name":"EOAC_AUTO_IMPERSONATE","features":[41]},{"name":"EOAC_DEFAULT","features":[41]},{"name":"EOAC_DISABLE_AAA","features":[41]},{"name":"EOAC_DYNAMIC","features":[41]},{"name":"EOAC_DYNAMIC_CLOAKING","features":[41]},{"name":"EOAC_MAKE_FULLSIC","features":[41]},{"name":"EOAC_MUTUAL_AUTH","features":[41]},{"name":"EOAC_NONE","features":[41]},{"name":"EOAC_NO_CUSTOM_MARSHAL","features":[41]},{"name":"EOAC_REQUIRE_FULLSIC","features":[41]},{"name":"EOAC_RESERVED1","features":[41]},{"name":"EOAC_SECURE_REFS","features":[41]},{"name":"EOAC_STATIC_CLOAKING","features":[41]},{"name":"EOLE_AUTHENTICATION_CAPABILITIES","features":[41]},{"name":"EXCEPINFO","features":[41]},{"name":"EXTCONN","features":[41]},{"name":"EXTCONN_CALLABLE","features":[41]},{"name":"EXTCONN_STRONG","features":[41]},{"name":"EXTCONN_WEAK","features":[41]},{"name":"FADF_AUTO","features":[41]},{"name":"FADF_BSTR","features":[41]},{"name":"FADF_DISPATCH","features":[41]},{"name":"FADF_EMBEDDED","features":[41]},{"name":"FADF_FIXEDSIZE","features":[41]},{"name":"FADF_HAVEIID","features":[41]},{"name":"FADF_HAVEVARTYPE","features":[41]},{"name":"FADF_RECORD","features":[41]},{"name":"FADF_RESERVED","features":[41]},{"name":"FADF_STATIC","features":[41]},{"name":"FADF_UNKNOWN","features":[41]},{"name":"FADF_VARIANT","features":[41]},{"name":"FLAGGED_BYTE_BLOB","features":[41]},{"name":"FLAGGED_WORD_BLOB","features":[41]},{"name":"FLAG_STGMEDIUM","features":[1,12,41]},{"name":"FORMATETC","features":[41]},{"name":"FUNCDESC","features":[1,41,155,42]},{"name":"FUNCFLAGS","features":[41]},{"name":"FUNCFLAG_FBINDABLE","features":[41]},{"name":"FUNCFLAG_FDEFAULTBIND","features":[41]},{"name":"FUNCFLAG_FDEFAULTCOLLELEM","features":[41]},{"name":"FUNCFLAG_FDISPLAYBIND","features":[41]},{"name":"FUNCFLAG_FHIDDEN","features":[41]},{"name":"FUNCFLAG_FIMMEDIATEBIND","features":[41]},{"name":"FUNCFLAG_FNONBROWSABLE","features":[41]},{"name":"FUNCFLAG_FREPLACEABLE","features":[41]},{"name":"FUNCFLAG_FREQUESTEDIT","features":[41]},{"name":"FUNCFLAG_FRESTRICTED","features":[41]},{"name":"FUNCFLAG_FSOURCE","features":[41]},{"name":"FUNCFLAG_FUIDEFAULT","features":[41]},{"name":"FUNCFLAG_FUSESGETLASTERROR","features":[41]},{"name":"FUNCKIND","features":[41]},{"name":"FUNC_DISPATCH","features":[41]},{"name":"FUNC_NONVIRTUAL","features":[41]},{"name":"FUNC_PUREVIRTUAL","features":[41]},{"name":"FUNC_STATIC","features":[41]},{"name":"FUNC_VIRTUAL","features":[41]},{"name":"ForcedShutdown","features":[41]},{"name":"GDI_OBJECT","features":[12,41,36]},{"name":"GLOBALOPT_EH_VALUES","features":[41]},{"name":"GLOBALOPT_PROPERTIES","features":[41]},{"name":"GLOBALOPT_RO_FLAGS","features":[41]},{"name":"GLOBALOPT_RPCTP_VALUES","features":[41]},{"name":"GLOBALOPT_UNMARSHALING_POLICY_VALUES","features":[41]},{"name":"GetClassFile","features":[41]},{"name":"GetErrorInfo","features":[41]},{"name":"GetRunningObjectTable","features":[41]},{"name":"HYPER_SIZEDARR","features":[41]},{"name":"IActivationFilter","features":[41]},{"name":"IAddrExclusionControl","features":[41]},{"name":"IAddrTrackingControl","features":[41]},{"name":"IAdviseSink","features":[41]},{"name":"IAdviseSink2","features":[41]},{"name":"IAgileObject","features":[41]},{"name":"IAsyncManager","features":[41]},{"name":"IAsyncRpcChannelBuffer","features":[41]},{"name":"IAuthenticate","features":[41]},{"name":"IAuthenticateEx","features":[41]},{"name":"IBindCtx","features":[41]},{"name":"IBindHost","features":[41]},{"name":"IBindStatusCallback","features":[41]},{"name":"IBindStatusCallbackEx","features":[41]},{"name":"IBinding","features":[41]},{"name":"IBlockingLock","features":[41]},{"name":"ICallFactory","features":[41]},{"name":"ICancelMethodCalls","features":[41]},{"name":"ICatInformation","features":[41]},{"name":"ICatRegister","features":[41]},{"name":"IChannelHook","features":[41]},{"name":"IClassActivator","features":[41]},{"name":"IClassFactory","features":[41]},{"name":"IClientSecurity","features":[41]},{"name":"IComThreadingInfo","features":[41]},{"name":"IConnectionPoint","features":[41]},{"name":"IConnectionPointContainer","features":[41]},{"name":"IContext","features":[41]},{"name":"IContextCallback","features":[41]},{"name":"IDLDESC","features":[41]},{"name":"IDLFLAGS","features":[41]},{"name":"IDLFLAG_FIN","features":[41]},{"name":"IDLFLAG_FLCID","features":[41]},{"name":"IDLFLAG_FOUT","features":[41]},{"name":"IDLFLAG_FRETVAL","features":[41]},{"name":"IDLFLAG_NONE","features":[41]},{"name":"IDataAdviseHolder","features":[41]},{"name":"IDataObject","features":[41]},{"name":"IDispatch","features":[41]},{"name":"IEnumCATEGORYINFO","features":[41]},{"name":"IEnumConnectionPoints","features":[41]},{"name":"IEnumConnections","features":[41]},{"name":"IEnumContextProps","features":[41]},{"name":"IEnumFORMATETC","features":[41]},{"name":"IEnumGUID","features":[41]},{"name":"IEnumMoniker","features":[41]},{"name":"IEnumSTATDATA","features":[41]},{"name":"IEnumString","features":[41]},{"name":"IEnumUnknown","features":[41]},{"name":"IErrorInfo","features":[41]},{"name":"IErrorLog","features":[41]},{"name":"IExternalConnection","features":[41]},{"name":"IFastRundown","features":[41]},{"name":"IForegroundTransfer","features":[41]},{"name":"IGlobalInterfaceTable","features":[41]},{"name":"IGlobalOptions","features":[41]},{"name":"IIDFromString","features":[41]},{"name":"IInitializeSpy","features":[41]},{"name":"IInternalUnknown","features":[41]},{"name":"IMPLTYPEFLAGS","features":[41]},{"name":"IMPLTYPEFLAG_FDEFAULT","features":[41]},{"name":"IMPLTYPEFLAG_FDEFAULTVTABLE","features":[41]},{"name":"IMPLTYPEFLAG_FRESTRICTED","features":[41]},{"name":"IMPLTYPEFLAG_FSOURCE","features":[41]},{"name":"IMachineGlobalObjectTable","features":[41]},{"name":"IMalloc","features":[41]},{"name":"IMallocSpy","features":[41]},{"name":"IMoniker","features":[41]},{"name":"IMultiQI","features":[41]},{"name":"INTERFACEINFO","features":[41]},{"name":"INVOKEKIND","features":[41]},{"name":"INVOKE_FUNC","features":[41]},{"name":"INVOKE_PROPERTYGET","features":[41]},{"name":"INVOKE_PROPERTYPUT","features":[41]},{"name":"INVOKE_PROPERTYPUTREF","features":[41]},{"name":"INoMarshal","features":[41]},{"name":"IOplockStorage","features":[41]},{"name":"IPSFactoryBuffer","features":[41]},{"name":"IPersist","features":[41]},{"name":"IPersistFile","features":[41]},{"name":"IPersistMemory","features":[41]},{"name":"IPersistStream","features":[41]},{"name":"IPersistStreamInit","features":[41]},{"name":"IPipeByte","features":[41]},{"name":"IPipeDouble","features":[41]},{"name":"IPipeLong","features":[41]},{"name":"IProcessInitControl","features":[41]},{"name":"IProcessLock","features":[41]},{"name":"IProgressNotify","features":[41]},{"name":"IROTData","features":[41]},{"name":"IReleaseMarshalBuffers","features":[41]},{"name":"IRpcChannelBuffer","features":[41]},{"name":"IRpcChannelBuffer2","features":[41]},{"name":"IRpcChannelBuffer3","features":[41]},{"name":"IRpcHelper","features":[41]},{"name":"IRpcOptions","features":[41]},{"name":"IRpcProxyBuffer","features":[41]},{"name":"IRpcStubBuffer","features":[41]},{"name":"IRpcSyntaxNegotiate","features":[41]},{"name":"IRunnableObject","features":[41]},{"name":"IRunningObjectTable","features":[41]},{"name":"ISequentialStream","features":[41]},{"name":"IServerSecurity","features":[41]},{"name":"IServiceProvider","features":[41]},{"name":"IStdMarshalInfo","features":[41]},{"name":"IStream","features":[41]},{"name":"ISupportAllowLowerTrustActivation","features":[41]},{"name":"ISupportErrorInfo","features":[41]},{"name":"ISurrogate","features":[41]},{"name":"ISurrogateService","features":[41]},{"name":"ISynchronize","features":[41]},{"name":"ISynchronizeContainer","features":[41]},{"name":"ISynchronizeEvent","features":[41]},{"name":"ISynchronizeHandle","features":[41]},{"name":"ISynchronizeMutex","features":[41]},{"name":"ITimeAndNoticeControl","features":[41]},{"name":"ITypeComp","features":[41]},{"name":"ITypeInfo","features":[41]},{"name":"ITypeInfo2","features":[41]},{"name":"ITypeLib","features":[41]},{"name":"ITypeLib2","features":[41]},{"name":"ITypeLibRegistration","features":[41]},{"name":"ITypeLibRegistrationReader","features":[41]},{"name":"IUnknown","features":[41]},{"name":"IUri","features":[41]},{"name":"IUriBuilder","features":[41]},{"name":"IUrlMon","features":[41]},{"name":"IWaitMultiple","features":[41]},{"name":"IdleShutdown","features":[41]},{"name":"LOCKTYPE","features":[41]},{"name":"LOCK_EXCLUSIVE","features":[41]},{"name":"LOCK_ONLYONCE","features":[41]},{"name":"LOCK_WRITE","features":[41]},{"name":"LPEXCEPFINO_DEFERRED_FILLIN","features":[41]},{"name":"LPFNCANUNLOADNOW","features":[41]},{"name":"LPFNGETCLASSOBJECT","features":[41]},{"name":"LibraryApplication","features":[41]},{"name":"MARSHALINTERFACE_MIN","features":[41]},{"name":"MAXLSN","features":[41]},{"name":"MEMCTX","features":[41]},{"name":"MEMCTX_MACSYSTEM","features":[41]},{"name":"MEMCTX_SAME","features":[41]},{"name":"MEMCTX_SHARED","features":[41]},{"name":"MEMCTX_TASK","features":[41]},{"name":"MEMCTX_UNKNOWN","features":[41]},{"name":"MKRREDUCE","features":[41]},{"name":"MKRREDUCE_ALL","features":[41]},{"name":"MKRREDUCE_ONE","features":[41]},{"name":"MKRREDUCE_THROUGHUSER","features":[41]},{"name":"MKRREDUCE_TOUSER","features":[41]},{"name":"MKSYS","features":[41]},{"name":"MKSYS_ANTIMONIKER","features":[41]},{"name":"MKSYS_CLASSMONIKER","features":[41]},{"name":"MKSYS_FILEMONIKER","features":[41]},{"name":"MKSYS_GENERICCOMPOSITE","features":[41]},{"name":"MKSYS_ITEMMONIKER","features":[41]},{"name":"MKSYS_LUAMONIKER","features":[41]},{"name":"MKSYS_NONE","features":[41]},{"name":"MKSYS_OBJREFMONIKER","features":[41]},{"name":"MKSYS_POINTERMONIKER","features":[41]},{"name":"MKSYS_SESSIONMONIKER","features":[41]},{"name":"MSHCTX","features":[41]},{"name":"MSHCTX_CONTAINER","features":[41]},{"name":"MSHCTX_CROSSCTX","features":[41]},{"name":"MSHCTX_DIFFERENTMACHINE","features":[41]},{"name":"MSHCTX_INPROC","features":[41]},{"name":"MSHCTX_LOCAL","features":[41]},{"name":"MSHCTX_NOSHAREDMEM","features":[41]},{"name":"MSHLFLAGS","features":[41]},{"name":"MSHLFLAGS_NOPING","features":[41]},{"name":"MSHLFLAGS_NORMAL","features":[41]},{"name":"MSHLFLAGS_RESERVED1","features":[41]},{"name":"MSHLFLAGS_RESERVED2","features":[41]},{"name":"MSHLFLAGS_RESERVED3","features":[41]},{"name":"MSHLFLAGS_RESERVED4","features":[41]},{"name":"MSHLFLAGS_TABLESTRONG","features":[41]},{"name":"MSHLFLAGS_TABLEWEAK","features":[41]},{"name":"MULTI_QI","features":[41]},{"name":"MachineGlobalObjectTableRegistrationToken","features":[41]},{"name":"MkParseDisplayName","features":[41]},{"name":"MonikerCommonPrefixWith","features":[41]},{"name":"MonikerRelativePathTo","features":[1,41]},{"name":"PENDINGMSG","features":[41]},{"name":"PENDINGMSG_CANCELCALL","features":[41]},{"name":"PENDINGMSG_WAITDEFPROCESS","features":[41]},{"name":"PENDINGMSG_WAITNOPROCESS","features":[41]},{"name":"PENDINGTYPE","features":[41]},{"name":"PENDINGTYPE_NESTED","features":[41]},{"name":"PENDINGTYPE_TOPLEVEL","features":[41]},{"name":"PFNCONTEXTCALL","features":[41]},{"name":"ProgIDFromCLSID","features":[41]},{"name":"QUERYCONTEXT","features":[41]},{"name":"REGCLS","features":[41]},{"name":"REGCLS_AGILE","features":[41]},{"name":"REGCLS_MULTIPLEUSE","features":[41]},{"name":"REGCLS_MULTI_SEPARATE","features":[41]},{"name":"REGCLS_SINGLEUSE","features":[41]},{"name":"REGCLS_SURROGATE","features":[41]},{"name":"REGCLS_SUSPENDED","features":[41]},{"name":"ROTFLAGS_ALLOWANYCLIENT","features":[41]},{"name":"ROTFLAGS_REGISTRATIONKEEPSALIVE","features":[41]},{"name":"ROTREGFLAGS_ALLOWANYCLIENT","features":[41]},{"name":"ROT_FLAGS","features":[41]},{"name":"RPCOLEMESSAGE","features":[41]},{"name":"RPCOPT_PROPERTIES","features":[41]},{"name":"RPCOPT_SERVER_LOCALITY_VALUES","features":[41]},{"name":"RPC_C_AUTHN_LEVEL","features":[41]},{"name":"RPC_C_AUTHN_LEVEL_CALL","features":[41]},{"name":"RPC_C_AUTHN_LEVEL_CONNECT","features":[41]},{"name":"RPC_C_AUTHN_LEVEL_DEFAULT","features":[41]},{"name":"RPC_C_AUTHN_LEVEL_NONE","features":[41]},{"name":"RPC_C_AUTHN_LEVEL_PKT","features":[41]},{"name":"RPC_C_AUTHN_LEVEL_PKT_INTEGRITY","features":[41]},{"name":"RPC_C_AUTHN_LEVEL_PKT_PRIVACY","features":[41]},{"name":"RPC_C_IMP_LEVEL","features":[41]},{"name":"RPC_C_IMP_LEVEL_ANONYMOUS","features":[41]},{"name":"RPC_C_IMP_LEVEL_DEFAULT","features":[41]},{"name":"RPC_C_IMP_LEVEL_DELEGATE","features":[41]},{"name":"RPC_C_IMP_LEVEL_IDENTIFY","features":[41]},{"name":"RPC_C_IMP_LEVEL_IMPERSONATE","features":[41]},{"name":"RemSTGMEDIUM","features":[41]},{"name":"SAFEARRAY","features":[41]},{"name":"SAFEARRAYBOUND","features":[41]},{"name":"SChannelHookCallInfo","features":[41]},{"name":"SD_ACCESSPERMISSIONS","features":[41]},{"name":"SD_ACCESSRESTRICTIONS","features":[41]},{"name":"SD_LAUNCHPERMISSIONS","features":[41]},{"name":"SD_LAUNCHRESTRICTIONS","features":[41]},{"name":"SERVERCALL","features":[41]},{"name":"SERVERCALL_ISHANDLED","features":[41]},{"name":"SERVERCALL_REJECTED","features":[41]},{"name":"SERVERCALL_RETRYLATER","features":[41]},{"name":"SERVER_LOCALITY_MACHINE_LOCAL","features":[41]},{"name":"SERVER_LOCALITY_PROCESS_LOCAL","features":[41]},{"name":"SERVER_LOCALITY_REMOTE","features":[41]},{"name":"SOLE_AUTHENTICATION_INFO","features":[41]},{"name":"SOLE_AUTHENTICATION_LIST","features":[41]},{"name":"SOLE_AUTHENTICATION_SERVICE","features":[41]},{"name":"STATDATA","features":[41]},{"name":"STATFLAG","features":[41]},{"name":"STATFLAG_DEFAULT","features":[41]},{"name":"STATFLAG_NONAME","features":[41]},{"name":"STATFLAG_NOOPEN","features":[41]},{"name":"STATSTG","features":[1,41]},{"name":"STGC","features":[41]},{"name":"STGC_CONSOLIDATE","features":[41]},{"name":"STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE","features":[41]},{"name":"STGC_DEFAULT","features":[41]},{"name":"STGC_ONLYIFCURRENT","features":[41]},{"name":"STGC_OVERWRITE","features":[41]},{"name":"STGM","features":[41]},{"name":"STGMEDIUM","features":[1,12,41]},{"name":"STGM_CONVERT","features":[41]},{"name":"STGM_CREATE","features":[41]},{"name":"STGM_DELETEONRELEASE","features":[41]},{"name":"STGM_DIRECT","features":[41]},{"name":"STGM_DIRECT_SWMR","features":[41]},{"name":"STGM_FAILIFTHERE","features":[41]},{"name":"STGM_NOSCRATCH","features":[41]},{"name":"STGM_NOSNAPSHOT","features":[41]},{"name":"STGM_PRIORITY","features":[41]},{"name":"STGM_READ","features":[41]},{"name":"STGM_READWRITE","features":[41]},{"name":"STGM_SHARE_DENY_NONE","features":[41]},{"name":"STGM_SHARE_DENY_READ","features":[41]},{"name":"STGM_SHARE_DENY_WRITE","features":[41]},{"name":"STGM_SHARE_EXCLUSIVE","features":[41]},{"name":"STGM_SIMPLE","features":[41]},{"name":"STGM_TRANSACTED","features":[41]},{"name":"STGM_WRITE","features":[41]},{"name":"STGTY","features":[41]},{"name":"STGTY_LOCKBYTES","features":[41]},{"name":"STGTY_PROPERTY","features":[41]},{"name":"STGTY_REPEAT","features":[41]},{"name":"STGTY_STORAGE","features":[41]},{"name":"STGTY_STREAM","features":[41]},{"name":"STG_LAYOUT_INTERLEAVED","features":[41]},{"name":"STG_LAYOUT_SEQUENTIAL","features":[41]},{"name":"STG_TOEND","features":[41]},{"name":"STREAM_SEEK","features":[41]},{"name":"STREAM_SEEK_CUR","features":[41]},{"name":"STREAM_SEEK_END","features":[41]},{"name":"STREAM_SEEK_SET","features":[41]},{"name":"SYSKIND","features":[41]},{"name":"SYS_MAC","features":[41]},{"name":"SYS_WIN16","features":[41]},{"name":"SYS_WIN32","features":[41]},{"name":"SYS_WIN64","features":[41]},{"name":"ServerApplication","features":[41]},{"name":"SetErrorInfo","features":[41]},{"name":"ShutdownType","features":[41]},{"name":"StorageLayout","features":[41]},{"name":"StringFromCLSID","features":[41]},{"name":"StringFromGUID2","features":[41]},{"name":"StringFromIID","features":[41]},{"name":"THDTYPE","features":[41]},{"name":"THDTYPE_BLOCKMESSAGES","features":[41]},{"name":"THDTYPE_PROCESSMESSAGES","features":[41]},{"name":"TKIND_ALIAS","features":[41]},{"name":"TKIND_COCLASS","features":[41]},{"name":"TKIND_DISPATCH","features":[41]},{"name":"TKIND_ENUM","features":[41]},{"name":"TKIND_INTERFACE","features":[41]},{"name":"TKIND_MAX","features":[41]},{"name":"TKIND_MODULE","features":[41]},{"name":"TKIND_RECORD","features":[41]},{"name":"TKIND_UNION","features":[41]},{"name":"TLIBATTR","features":[41]},{"name":"TYMED","features":[41]},{"name":"TYMED_ENHMF","features":[41]},{"name":"TYMED_FILE","features":[41]},{"name":"TYMED_GDI","features":[41]},{"name":"TYMED_HGLOBAL","features":[41]},{"name":"TYMED_ISTORAGE","features":[41]},{"name":"TYMED_ISTREAM","features":[41]},{"name":"TYMED_MFPICT","features":[41]},{"name":"TYMED_NULL","features":[41]},{"name":"TYPEATTR","features":[41,155,42]},{"name":"TYPEDESC","features":[41,155,42]},{"name":"TYPEKIND","features":[41]},{"name":"TYSPEC","features":[41]},{"name":"TYSPEC_CLSID","features":[41]},{"name":"TYSPEC_FILEEXT","features":[41]},{"name":"TYSPEC_FILENAME","features":[41]},{"name":"TYSPEC_MIMETYPE","features":[41]},{"name":"TYSPEC_OBJECTID","features":[41]},{"name":"TYSPEC_PACKAGENAME","features":[41]},{"name":"TYSPEC_PROGID","features":[41]},{"name":"URI_CREATE_FLAGS","features":[41]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME","features":[41]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME","features":[41]},{"name":"Uri_CREATE_ALLOW_RELATIVE","features":[41]},{"name":"Uri_CREATE_CANONICALIZE","features":[41]},{"name":"Uri_CREATE_CANONICALIZE_ABSOLUTE","features":[41]},{"name":"Uri_CREATE_CRACK_UNKNOWN_SCHEMES","features":[41]},{"name":"Uri_CREATE_DECODE_EXTRA_INFO","features":[41]},{"name":"Uri_CREATE_FILE_USE_DOS_PATH","features":[41]},{"name":"Uri_CREATE_IE_SETTINGS","features":[41]},{"name":"Uri_CREATE_NOFRAG","features":[41]},{"name":"Uri_CREATE_NORMALIZE_INTL_CHARACTERS","features":[41]},{"name":"Uri_CREATE_NO_CANONICALIZE","features":[41]},{"name":"Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES","features":[41]},{"name":"Uri_CREATE_NO_DECODE_EXTRA_INFO","features":[41]},{"name":"Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS","features":[41]},{"name":"Uri_CREATE_NO_IE_SETTINGS","features":[41]},{"name":"Uri_CREATE_NO_PRE_PROCESS_HTML_URI","features":[41]},{"name":"Uri_CREATE_PRE_PROCESS_HTML_URI","features":[41]},{"name":"Uri_PROPERTY","features":[41]},{"name":"Uri_PROPERTY_ABSOLUTE_URI","features":[41]},{"name":"Uri_PROPERTY_AUTHORITY","features":[41]},{"name":"Uri_PROPERTY_DISPLAY_URI","features":[41]},{"name":"Uri_PROPERTY_DOMAIN","features":[41]},{"name":"Uri_PROPERTY_DWORD_LAST","features":[41]},{"name":"Uri_PROPERTY_DWORD_START","features":[41]},{"name":"Uri_PROPERTY_EXTENSION","features":[41]},{"name":"Uri_PROPERTY_FRAGMENT","features":[41]},{"name":"Uri_PROPERTY_HOST","features":[41]},{"name":"Uri_PROPERTY_HOST_TYPE","features":[41]},{"name":"Uri_PROPERTY_PASSWORD","features":[41]},{"name":"Uri_PROPERTY_PATH","features":[41]},{"name":"Uri_PROPERTY_PATH_AND_QUERY","features":[41]},{"name":"Uri_PROPERTY_PORT","features":[41]},{"name":"Uri_PROPERTY_QUERY","features":[41]},{"name":"Uri_PROPERTY_RAW_URI","features":[41]},{"name":"Uri_PROPERTY_SCHEME","features":[41]},{"name":"Uri_PROPERTY_SCHEME_NAME","features":[41]},{"name":"Uri_PROPERTY_STRING_LAST","features":[41]},{"name":"Uri_PROPERTY_STRING_START","features":[41]},{"name":"Uri_PROPERTY_USER_INFO","features":[41]},{"name":"Uri_PROPERTY_USER_NAME","features":[41]},{"name":"Uri_PROPERTY_ZONE","features":[41]},{"name":"VARDESC","features":[1,41,155,42]},{"name":"VARFLAGS","features":[41]},{"name":"VARFLAG_FBINDABLE","features":[41]},{"name":"VARFLAG_FDEFAULTBIND","features":[41]},{"name":"VARFLAG_FDEFAULTCOLLELEM","features":[41]},{"name":"VARFLAG_FDISPLAYBIND","features":[41]},{"name":"VARFLAG_FHIDDEN","features":[41]},{"name":"VARFLAG_FIMMEDIATEBIND","features":[41]},{"name":"VARFLAG_FNONBROWSABLE","features":[41]},{"name":"VARFLAG_FREADONLY","features":[41]},{"name":"VARFLAG_FREPLACEABLE","features":[41]},{"name":"VARFLAG_FREQUESTEDIT","features":[41]},{"name":"VARFLAG_FRESTRICTED","features":[41]},{"name":"VARFLAG_FSOURCE","features":[41]},{"name":"VARFLAG_FUIDEFAULT","features":[41]},{"name":"VARKIND","features":[41]},{"name":"VAR_CONST","features":[41]},{"name":"VAR_DISPATCH","features":[41]},{"name":"VAR_PERINSTANCE","features":[41]},{"name":"VAR_STATIC","features":[41]},{"name":"WORD_BLOB","features":[41]},{"name":"WORD_SIZEDARR","features":[41]},{"name":"uCLSSPEC","features":[41]},{"name":"userFLAG_STGMEDIUM","features":[12,41,36]},{"name":"userSTGMEDIUM","features":[12,41,36]}],"538":[{"name":"BSTR_UserFree","features":[156]},{"name":"BSTR_UserFree64","features":[156]},{"name":"BSTR_UserMarshal","features":[156]},{"name":"BSTR_UserMarshal64","features":[156]},{"name":"BSTR_UserSize","features":[156]},{"name":"BSTR_UserSize64","features":[156]},{"name":"BSTR_UserUnmarshal","features":[156]},{"name":"BSTR_UserUnmarshal64","features":[156]},{"name":"CLIPFORMAT_UserFree","features":[156]},{"name":"CLIPFORMAT_UserFree64","features":[156]},{"name":"CLIPFORMAT_UserMarshal","features":[156]},{"name":"CLIPFORMAT_UserMarshal64","features":[156]},{"name":"CLIPFORMAT_UserSize","features":[156]},{"name":"CLIPFORMAT_UserSize64","features":[156]},{"name":"CLIPFORMAT_UserUnmarshal","features":[156]},{"name":"CLIPFORMAT_UserUnmarshal64","features":[156]},{"name":"CoGetMarshalSizeMax","features":[156]},{"name":"CoGetStandardMarshal","features":[156]},{"name":"CoGetStdMarshalEx","features":[156]},{"name":"CoMarshalHresult","features":[156]},{"name":"CoMarshalInterThreadInterfaceInStream","features":[156]},{"name":"CoMarshalInterface","features":[156]},{"name":"CoReleaseMarshalData","features":[156]},{"name":"CoUnmarshalHresult","features":[156]},{"name":"CoUnmarshalInterface","features":[156]},{"name":"HACCEL_UserFree","features":[156,50]},{"name":"HACCEL_UserFree64","features":[156,50]},{"name":"HACCEL_UserMarshal","features":[156,50]},{"name":"HACCEL_UserMarshal64","features":[156,50]},{"name":"HACCEL_UserSize","features":[156,50]},{"name":"HACCEL_UserSize64","features":[156,50]},{"name":"HACCEL_UserUnmarshal","features":[156,50]},{"name":"HACCEL_UserUnmarshal64","features":[156,50]},{"name":"HBITMAP_UserFree","features":[12,156]},{"name":"HBITMAP_UserFree64","features":[12,156]},{"name":"HBITMAP_UserMarshal","features":[12,156]},{"name":"HBITMAP_UserMarshal64","features":[12,156]},{"name":"HBITMAP_UserSize","features":[12,156]},{"name":"HBITMAP_UserSize64","features":[12,156]},{"name":"HBITMAP_UserUnmarshal","features":[12,156]},{"name":"HBITMAP_UserUnmarshal64","features":[12,156]},{"name":"HDC_UserFree","features":[12,156]},{"name":"HDC_UserFree64","features":[12,156]},{"name":"HDC_UserMarshal","features":[12,156]},{"name":"HDC_UserMarshal64","features":[12,156]},{"name":"HDC_UserSize","features":[12,156]},{"name":"HDC_UserSize64","features":[12,156]},{"name":"HDC_UserUnmarshal","features":[12,156]},{"name":"HDC_UserUnmarshal64","features":[12,156]},{"name":"HGLOBAL_UserFree","features":[1,156]},{"name":"HGLOBAL_UserFree64","features":[1,156]},{"name":"HGLOBAL_UserMarshal","features":[1,156]},{"name":"HGLOBAL_UserMarshal64","features":[1,156]},{"name":"HGLOBAL_UserSize","features":[1,156]},{"name":"HGLOBAL_UserSize64","features":[1,156]},{"name":"HGLOBAL_UserUnmarshal","features":[1,156]},{"name":"HGLOBAL_UserUnmarshal64","features":[1,156]},{"name":"HICON_UserFree","features":[156,50]},{"name":"HICON_UserFree64","features":[156,50]},{"name":"HICON_UserMarshal","features":[156,50]},{"name":"HICON_UserMarshal64","features":[156,50]},{"name":"HICON_UserSize","features":[156,50]},{"name":"HICON_UserSize64","features":[156,50]},{"name":"HICON_UserUnmarshal","features":[156,50]},{"name":"HICON_UserUnmarshal64","features":[156,50]},{"name":"HMENU_UserFree","features":[156,50]},{"name":"HMENU_UserFree64","features":[156,50]},{"name":"HMENU_UserMarshal","features":[156,50]},{"name":"HMENU_UserMarshal64","features":[156,50]},{"name":"HMENU_UserSize","features":[156,50]},{"name":"HMENU_UserSize64","features":[156,50]},{"name":"HMENU_UserUnmarshal","features":[156,50]},{"name":"HMENU_UserUnmarshal64","features":[156,50]},{"name":"HPALETTE_UserFree","features":[12,156]},{"name":"HPALETTE_UserFree64","features":[12,156]},{"name":"HPALETTE_UserMarshal","features":[12,156]},{"name":"HPALETTE_UserMarshal64","features":[12,156]},{"name":"HPALETTE_UserSize","features":[12,156]},{"name":"HPALETTE_UserSize64","features":[12,156]},{"name":"HPALETTE_UserUnmarshal","features":[12,156]},{"name":"HPALETTE_UserUnmarshal64","features":[12,156]},{"name":"HWND_UserFree","features":[1,156]},{"name":"HWND_UserFree64","features":[1,156]},{"name":"HWND_UserMarshal","features":[1,156]},{"name":"HWND_UserMarshal64","features":[1,156]},{"name":"HWND_UserSize","features":[1,156]},{"name":"HWND_UserSize64","features":[1,156]},{"name":"HWND_UserUnmarshal","features":[1,156]},{"name":"HWND_UserUnmarshal64","features":[1,156]},{"name":"IMarshal","features":[156]},{"name":"IMarshal2","features":[156]},{"name":"IMarshalingStream","features":[156]},{"name":"LPSAFEARRAY_UserFree","features":[156]},{"name":"LPSAFEARRAY_UserFree64","features":[156]},{"name":"LPSAFEARRAY_UserMarshal","features":[156]},{"name":"LPSAFEARRAY_UserMarshal64","features":[156]},{"name":"LPSAFEARRAY_UserSize","features":[156]},{"name":"LPSAFEARRAY_UserSize64","features":[156]},{"name":"LPSAFEARRAY_UserUnmarshal","features":[156]},{"name":"LPSAFEARRAY_UserUnmarshal64","features":[156]},{"name":"SMEXF_HANDLER","features":[156]},{"name":"SMEXF_SERVER","features":[156]},{"name":"SNB_UserFree","features":[156]},{"name":"SNB_UserFree64","features":[156]},{"name":"SNB_UserMarshal","features":[156]},{"name":"SNB_UserMarshal64","features":[156]},{"name":"SNB_UserSize","features":[156]},{"name":"SNB_UserSize64","features":[156]},{"name":"SNB_UserUnmarshal","features":[156]},{"name":"SNB_UserUnmarshal64","features":[156]},{"name":"STDMSHLFLAGS","features":[156]},{"name":"STGMEDIUM_UserFree","features":[1,12,156]},{"name":"STGMEDIUM_UserFree64","features":[1,12,156]},{"name":"STGMEDIUM_UserMarshal","features":[1,12,156]},{"name":"STGMEDIUM_UserMarshal64","features":[1,12,156]},{"name":"STGMEDIUM_UserSize","features":[1,12,156]},{"name":"STGMEDIUM_UserSize64","features":[1,12,156]},{"name":"STGMEDIUM_UserUnmarshal","features":[1,12,156]},{"name":"STGMEDIUM_UserUnmarshal64","features":[1,12,156]}],"539":[{"name":"BSTRBLOB","features":[63]},{"name":"CABOOL","features":[1,63]},{"name":"CABSTR","features":[63]},{"name":"CABSTRBLOB","features":[63]},{"name":"CAC","features":[63]},{"name":"CACLIPDATA","features":[63]},{"name":"CACLSID","features":[63]},{"name":"CACY","features":[63]},{"name":"CADATE","features":[63]},{"name":"CADBL","features":[63]},{"name":"CAFILETIME","features":[1,63]},{"name":"CAFLT","features":[63]},{"name":"CAH","features":[63]},{"name":"CAI","features":[63]},{"name":"CAL","features":[63]},{"name":"CALPSTR","features":[63]},{"name":"CALPWSTR","features":[63]},{"name":"CAPROPVARIANT","features":[1,63,42]},{"name":"CASCODE","features":[63]},{"name":"CAUB","features":[63]},{"name":"CAUH","features":[63]},{"name":"CAUI","features":[63]},{"name":"CAUL","features":[63]},{"name":"CCH_MAX_PROPSTG_NAME","features":[63]},{"name":"CLIPDATA","features":[63]},{"name":"CWCSTORAGENAME","features":[63]},{"name":"ClearPropVariantArray","features":[1,63,42]},{"name":"CoGetInstanceFromFile","features":[63]},{"name":"CoGetInstanceFromIStorage","features":[63]},{"name":"CoGetInterfaceAndReleaseStream","features":[63]},{"name":"CreateILockBytesOnHGlobal","features":[1,63]},{"name":"CreateStreamOnHGlobal","features":[1,63]},{"name":"FmtIdToPropStgName","features":[63]},{"name":"FreePropVariantArray","features":[1,63,42]},{"name":"GetConvertStg","features":[63]},{"name":"GetHGlobalFromILockBytes","features":[1,63]},{"name":"GetHGlobalFromStream","features":[1,63]},{"name":"IDirectWriterLock","features":[63]},{"name":"IEnumSTATPROPSETSTG","features":[63]},{"name":"IEnumSTATPROPSTG","features":[63]},{"name":"IEnumSTATSTG","features":[63]},{"name":"IFillLockBytes","features":[63]},{"name":"ILayoutStorage","features":[63]},{"name":"ILockBytes","features":[63]},{"name":"IMemoryAllocator","features":[63]},{"name":"IPersistStorage","features":[63]},{"name":"IPropertyBag","features":[63]},{"name":"IPropertyBag2","features":[63]},{"name":"IPropertySetStorage","features":[63]},{"name":"IPropertyStorage","features":[63]},{"name":"IRootStorage","features":[63]},{"name":"IStorage","features":[63]},{"name":"InitPropVariantFromBooleanVector","features":[1,63,42]},{"name":"InitPropVariantFromBuffer","features":[1,63,42]},{"name":"InitPropVariantFromCLSID","features":[1,63,42]},{"name":"InitPropVariantFromDoubleVector","features":[1,63,42]},{"name":"InitPropVariantFromFileTime","features":[1,63,42]},{"name":"InitPropVariantFromFileTimeVector","features":[1,63,42]},{"name":"InitPropVariantFromGUIDAsString","features":[1,63,42]},{"name":"InitPropVariantFromInt16Vector","features":[1,63,42]},{"name":"InitPropVariantFromInt32Vector","features":[1,63,42]},{"name":"InitPropVariantFromInt64Vector","features":[1,63,42]},{"name":"InitPropVariantFromPropVariantVectorElem","features":[1,63,42]},{"name":"InitPropVariantFromResource","features":[1,63,42]},{"name":"InitPropVariantFromStringAsVector","features":[1,63,42]},{"name":"InitPropVariantFromStringVector","features":[1,63,42]},{"name":"InitPropVariantFromUInt16Vector","features":[1,63,42]},{"name":"InitPropVariantFromUInt32Vector","features":[1,63,42]},{"name":"InitPropVariantFromUInt64Vector","features":[1,63,42]},{"name":"InitPropVariantVectorFromPropVariant","features":[1,63,42]},{"name":"OLESTREAM","features":[63]},{"name":"OLESTREAMVTBL","features":[63]},{"name":"OleConvertIStorageToOLESTREAM","features":[63]},{"name":"OleConvertIStorageToOLESTREAMEx","features":[1,12,63]},{"name":"OleConvertOLESTREAMToIStorage","features":[63]},{"name":"OleConvertOLESTREAMToIStorageEx","features":[1,12,63]},{"name":"PIDDI_THUMBNAIL","features":[63]},{"name":"PIDDSI_BYTECOUNT","features":[63]},{"name":"PIDDSI_CATEGORY","features":[63]},{"name":"PIDDSI_COMPANY","features":[63]},{"name":"PIDDSI_DOCPARTS","features":[63]},{"name":"PIDDSI_HEADINGPAIR","features":[63]},{"name":"PIDDSI_HIDDENCOUNT","features":[63]},{"name":"PIDDSI_LINECOUNT","features":[63]},{"name":"PIDDSI_LINKSDIRTY","features":[63]},{"name":"PIDDSI_MANAGER","features":[63]},{"name":"PIDDSI_MMCLIPCOUNT","features":[63]},{"name":"PIDDSI_NOTECOUNT","features":[63]},{"name":"PIDDSI_PARCOUNT","features":[63]},{"name":"PIDDSI_PRESFORMAT","features":[63]},{"name":"PIDDSI_SCALE","features":[63]},{"name":"PIDDSI_SLIDECOUNT","features":[63]},{"name":"PIDMSI_COPYRIGHT","features":[63]},{"name":"PIDMSI_EDITOR","features":[63]},{"name":"PIDMSI_OWNER","features":[63]},{"name":"PIDMSI_PRODUCTION","features":[63]},{"name":"PIDMSI_PROJECT","features":[63]},{"name":"PIDMSI_RATING","features":[63]},{"name":"PIDMSI_SEQUENCE_NO","features":[63]},{"name":"PIDMSI_SOURCE","features":[63]},{"name":"PIDMSI_STATUS","features":[63]},{"name":"PIDMSI_STATUS_DRAFT","features":[63]},{"name":"PIDMSI_STATUS_EDIT","features":[63]},{"name":"PIDMSI_STATUS_FINAL","features":[63]},{"name":"PIDMSI_STATUS_INPROGRESS","features":[63]},{"name":"PIDMSI_STATUS_NEW","features":[63]},{"name":"PIDMSI_STATUS_NORMAL","features":[63]},{"name":"PIDMSI_STATUS_OTHER","features":[63]},{"name":"PIDMSI_STATUS_PRELIM","features":[63]},{"name":"PIDMSI_STATUS_PROOF","features":[63]},{"name":"PIDMSI_STATUS_REVIEW","features":[63]},{"name":"PIDMSI_STATUS_VALUE","features":[63]},{"name":"PIDMSI_SUPPLIER","features":[63]},{"name":"PIDSI_APPNAME","features":[63]},{"name":"PIDSI_AUTHOR","features":[63]},{"name":"PIDSI_CHARCOUNT","features":[63]},{"name":"PIDSI_COMMENTS","features":[63]},{"name":"PIDSI_CREATE_DTM","features":[63]},{"name":"PIDSI_DOC_SECURITY","features":[63]},{"name":"PIDSI_EDITTIME","features":[63]},{"name":"PIDSI_KEYWORDS","features":[63]},{"name":"PIDSI_LASTAUTHOR","features":[63]},{"name":"PIDSI_LASTPRINTED","features":[63]},{"name":"PIDSI_LASTSAVE_DTM","features":[63]},{"name":"PIDSI_PAGECOUNT","features":[63]},{"name":"PIDSI_REVNUMBER","features":[63]},{"name":"PIDSI_SUBJECT","features":[63]},{"name":"PIDSI_TEMPLATE","features":[63]},{"name":"PIDSI_THUMBNAIL","features":[63]},{"name":"PIDSI_TITLE","features":[63]},{"name":"PIDSI_WORDCOUNT","features":[63]},{"name":"PID_BEHAVIOR","features":[63]},{"name":"PID_CODEPAGE","features":[63]},{"name":"PID_DICTIONARY","features":[63]},{"name":"PID_FIRST_NAME_DEFAULT","features":[63]},{"name":"PID_FIRST_USABLE","features":[63]},{"name":"PID_ILLEGAL","features":[63]},{"name":"PID_LOCALE","features":[63]},{"name":"PID_MAX_READONLY","features":[63]},{"name":"PID_MIN_READONLY","features":[63]},{"name":"PID_MODIFY_TIME","features":[63]},{"name":"PID_SECURITY","features":[63]},{"name":"PROPBAG2","features":[63,42]},{"name":"PROPSETFLAG_ANSI","features":[63]},{"name":"PROPSETFLAG_CASE_SENSITIVE","features":[63]},{"name":"PROPSETFLAG_DEFAULT","features":[63]},{"name":"PROPSETFLAG_NONSIMPLE","features":[63]},{"name":"PROPSETFLAG_UNBUFFERED","features":[63]},{"name":"PROPSETHDR_OSVERSION_UNKNOWN","features":[63]},{"name":"PROPSET_BEHAVIOR_CASE_SENSITIVE","features":[63]},{"name":"PROPSPEC","features":[63]},{"name":"PROPSPEC_KIND","features":[63]},{"name":"PROPVARIANT","features":[1,63,42]},{"name":"PROPVAR_CHANGE_FLAGS","features":[63]},{"name":"PROPVAR_COMPARE_FLAGS","features":[63]},{"name":"PROPVAR_COMPARE_UNIT","features":[63]},{"name":"PRSPEC_INVALID","features":[63]},{"name":"PRSPEC_LPWSTR","features":[63]},{"name":"PRSPEC_PROPID","features":[63]},{"name":"PVCF_DEFAULT","features":[63]},{"name":"PVCF_DIGITSASNUMBERS_CASESENSITIVE","features":[63]},{"name":"PVCF_TREATEMPTYASGREATERTHAN","features":[63]},{"name":"PVCF_USESTRCMP","features":[63]},{"name":"PVCF_USESTRCMPC","features":[63]},{"name":"PVCF_USESTRCMPI","features":[63]},{"name":"PVCF_USESTRCMPIC","features":[63]},{"name":"PVCHF_ALPHABOOL","features":[63]},{"name":"PVCHF_DEFAULT","features":[63]},{"name":"PVCHF_LOCALBOOL","features":[63]},{"name":"PVCHF_NOHEXSTRING","features":[63]},{"name":"PVCHF_NOUSEROVERRIDE","features":[63]},{"name":"PVCHF_NOVALUEPROP","features":[63]},{"name":"PVCU_DAY","features":[63]},{"name":"PVCU_DEFAULT","features":[63]},{"name":"PVCU_HOUR","features":[63]},{"name":"PVCU_MINUTE","features":[63]},{"name":"PVCU_MONTH","features":[63]},{"name":"PVCU_SECOND","features":[63]},{"name":"PVCU_YEAR","features":[63]},{"name":"PropStgNameToFmtId","features":[63]},{"name":"PropVariantChangeType","features":[1,63,42]},{"name":"PropVariantClear","features":[1,63,42]},{"name":"PropVariantCompareEx","features":[1,63,42]},{"name":"PropVariantCopy","features":[1,63,42]},{"name":"PropVariantGetBooleanElem","features":[1,63,42]},{"name":"PropVariantGetDoubleElem","features":[1,63,42]},{"name":"PropVariantGetElementCount","features":[1,63,42]},{"name":"PropVariantGetFileTimeElem","features":[1,63,42]},{"name":"PropVariantGetInt16Elem","features":[1,63,42]},{"name":"PropVariantGetInt32Elem","features":[1,63,42]},{"name":"PropVariantGetInt64Elem","features":[1,63,42]},{"name":"PropVariantGetStringElem","features":[1,63,42]},{"name":"PropVariantGetUInt16Elem","features":[1,63,42]},{"name":"PropVariantGetUInt32Elem","features":[1,63,42]},{"name":"PropVariantGetUInt64Elem","features":[1,63,42]},{"name":"PropVariantToBSTR","features":[1,63,42]},{"name":"PropVariantToBoolean","features":[1,63,42]},{"name":"PropVariantToBooleanVector","features":[1,63,42]},{"name":"PropVariantToBooleanVectorAlloc","features":[1,63,42]},{"name":"PropVariantToBooleanWithDefault","features":[1,63,42]},{"name":"PropVariantToBuffer","features":[1,63,42]},{"name":"PropVariantToDouble","features":[1,63,42]},{"name":"PropVariantToDoubleVector","features":[1,63,42]},{"name":"PropVariantToDoubleVectorAlloc","features":[1,63,42]},{"name":"PropVariantToDoubleWithDefault","features":[1,63,42]},{"name":"PropVariantToFileTime","features":[1,63,42]},{"name":"PropVariantToFileTimeVector","features":[1,63,42]},{"name":"PropVariantToFileTimeVectorAlloc","features":[1,63,42]},{"name":"PropVariantToGUID","features":[1,63,42]},{"name":"PropVariantToInt16","features":[1,63,42]},{"name":"PropVariantToInt16Vector","features":[1,63,42]},{"name":"PropVariantToInt16VectorAlloc","features":[1,63,42]},{"name":"PropVariantToInt16WithDefault","features":[1,63,42]},{"name":"PropVariantToInt32","features":[1,63,42]},{"name":"PropVariantToInt32Vector","features":[1,63,42]},{"name":"PropVariantToInt32VectorAlloc","features":[1,63,42]},{"name":"PropVariantToInt32WithDefault","features":[1,63,42]},{"name":"PropVariantToInt64","features":[1,63,42]},{"name":"PropVariantToInt64Vector","features":[1,63,42]},{"name":"PropVariantToInt64VectorAlloc","features":[1,63,42]},{"name":"PropVariantToInt64WithDefault","features":[1,63,42]},{"name":"PropVariantToString","features":[1,63,42]},{"name":"PropVariantToStringAlloc","features":[1,63,42]},{"name":"PropVariantToStringVector","features":[1,63,42]},{"name":"PropVariantToStringVectorAlloc","features":[1,63,42]},{"name":"PropVariantToStringWithDefault","features":[1,63,42]},{"name":"PropVariantToUInt16","features":[1,63,42]},{"name":"PropVariantToUInt16Vector","features":[1,63,42]},{"name":"PropVariantToUInt16VectorAlloc","features":[1,63,42]},{"name":"PropVariantToUInt16WithDefault","features":[1,63,42]},{"name":"PropVariantToUInt32","features":[1,63,42]},{"name":"PropVariantToUInt32Vector","features":[1,63,42]},{"name":"PropVariantToUInt32VectorAlloc","features":[1,63,42]},{"name":"PropVariantToUInt32WithDefault","features":[1,63,42]},{"name":"PropVariantToUInt64","features":[1,63,42]},{"name":"PropVariantToUInt64Vector","features":[1,63,42]},{"name":"PropVariantToUInt64VectorAlloc","features":[1,63,42]},{"name":"PropVariantToUInt64WithDefault","features":[1,63,42]},{"name":"PropVariantToVariant","features":[1,63,42]},{"name":"PropVariantToWinRTPropertyValue","features":[1,63,42]},{"name":"ReadClassStg","features":[63]},{"name":"ReadClassStm","features":[63]},{"name":"ReadFmtUserTypeStg","features":[63]},{"name":"RemSNB","features":[63]},{"name":"SERIALIZEDPROPERTYVALUE","features":[63]},{"name":"STATPROPSETSTG","features":[1,63]},{"name":"STATPROPSTG","features":[63,42]},{"name":"STGFMT","features":[63]},{"name":"STGFMT_ANY","features":[63]},{"name":"STGFMT_DOCFILE","features":[63]},{"name":"STGFMT_DOCUMENT","features":[63]},{"name":"STGFMT_FILE","features":[63]},{"name":"STGFMT_NATIVE","features":[63]},{"name":"STGFMT_STORAGE","features":[63]},{"name":"STGMOVE","features":[63]},{"name":"STGMOVE_COPY","features":[63]},{"name":"STGMOVE_MOVE","features":[63]},{"name":"STGMOVE_SHALLOWCOPY","features":[63]},{"name":"STGOPTIONS","features":[63]},{"name":"STGOPTIONS_VERSION","features":[63]},{"name":"SetConvertStg","features":[1,63]},{"name":"StgConvertPropertyToVariant","features":[1,63,42]},{"name":"StgConvertVariantToProperty","features":[1,63,42]},{"name":"StgCreateDocfile","features":[63]},{"name":"StgCreateDocfileOnILockBytes","features":[63]},{"name":"StgCreatePropSetStg","features":[63]},{"name":"StgCreatePropStg","features":[63]},{"name":"StgCreateStorageEx","features":[4,63]},{"name":"StgDeserializePropVariant","features":[1,63,42]},{"name":"StgGetIFillLockBytesOnFile","features":[63]},{"name":"StgGetIFillLockBytesOnILockBytes","features":[63]},{"name":"StgIsStorageFile","features":[63]},{"name":"StgIsStorageILockBytes","features":[63]},{"name":"StgOpenAsyncDocfileOnIFillLockBytes","features":[63]},{"name":"StgOpenLayoutDocfile","features":[63]},{"name":"StgOpenPropStg","features":[63]},{"name":"StgOpenStorage","features":[63]},{"name":"StgOpenStorageEx","features":[4,63]},{"name":"StgOpenStorageOnILockBytes","features":[63]},{"name":"StgPropertyLengthAsVariant","features":[63]},{"name":"StgSerializePropVariant","features":[1,63,42]},{"name":"StgSetTimes","features":[1,63]},{"name":"VERSIONEDSTREAM","features":[63]},{"name":"VariantToPropVariant","features":[1,63,42]},{"name":"WinRTPropertyValueToPropVariant","features":[1,63,42]},{"name":"WriteClassStg","features":[63]},{"name":"WriteClassStm","features":[63]},{"name":"WriteFmtUserTypeStg","features":[63]}],"541":[{"name":"AUTHENTICATEF","features":[157]},{"name":"AUTHENTICATEF_BASIC","features":[157]},{"name":"AUTHENTICATEF_HTTP","features":[157]},{"name":"AUTHENTICATEF_PROXY","features":[157]},{"name":"BINDF","features":[157]},{"name":"BINDF2","features":[157]},{"name":"BINDF2_ALLOW_PROXY_CRED_PROMPT","features":[157]},{"name":"BINDF2_DISABLEAUTOCOOKIEHANDLING","features":[157]},{"name":"BINDF2_DISABLEBASICOVERHTTP","features":[157]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_CACHING","features":[157]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_XSECURITYID","features":[157]},{"name":"BINDF2_KEEP_CALLBACK_MODULE_LOADED","features":[157]},{"name":"BINDF2_READ_DATA_GREATER_THAN_4GB","features":[157]},{"name":"BINDF2_RESERVED_1","features":[157]},{"name":"BINDF2_RESERVED_10","features":[157]},{"name":"BINDF2_RESERVED_11","features":[157]},{"name":"BINDF2_RESERVED_12","features":[157]},{"name":"BINDF2_RESERVED_13","features":[157]},{"name":"BINDF2_RESERVED_14","features":[157]},{"name":"BINDF2_RESERVED_15","features":[157]},{"name":"BINDF2_RESERVED_16","features":[157]},{"name":"BINDF2_RESERVED_17","features":[157]},{"name":"BINDF2_RESERVED_2","features":[157]},{"name":"BINDF2_RESERVED_3","features":[157]},{"name":"BINDF2_RESERVED_4","features":[157]},{"name":"BINDF2_RESERVED_5","features":[157]},{"name":"BINDF2_RESERVED_6","features":[157]},{"name":"BINDF2_RESERVED_7","features":[157]},{"name":"BINDF2_RESERVED_8","features":[157]},{"name":"BINDF2_RESERVED_9","features":[157]},{"name":"BINDF2_RESERVED_A","features":[157]},{"name":"BINDF2_RESERVED_B","features":[157]},{"name":"BINDF2_RESERVED_C","features":[157]},{"name":"BINDF2_RESERVED_D","features":[157]},{"name":"BINDF2_RESERVED_E","features":[157]},{"name":"BINDF2_RESERVED_F","features":[157]},{"name":"BINDF2_SETDOWNLOADMODE","features":[157]},{"name":"BINDF_ASYNCHRONOUS","features":[157]},{"name":"BINDF_ASYNCSTORAGE","features":[157]},{"name":"BINDF_DIRECT_READ","features":[157]},{"name":"BINDF_ENFORCERESTRICTED","features":[157]},{"name":"BINDF_FORMS_SUBMIT","features":[157]},{"name":"BINDF_FREE_THREADED","features":[157]},{"name":"BINDF_FROMURLMON","features":[157]},{"name":"BINDF_FWD_BACK","features":[157]},{"name":"BINDF_GETCLASSOBJECT","features":[157]},{"name":"BINDF_GETFROMCACHE_IF_NET_FAIL","features":[157]},{"name":"BINDF_GETNEWESTVERSION","features":[157]},{"name":"BINDF_HYPERLINK","features":[157]},{"name":"BINDF_IGNORESECURITYPROBLEM","features":[157]},{"name":"BINDF_NEEDFILE","features":[157]},{"name":"BINDF_NOPROGRESSIVERENDERING","features":[157]},{"name":"BINDF_NOWRITECACHE","features":[157]},{"name":"BINDF_NO_UI","features":[157]},{"name":"BINDF_OFFLINEOPERATION","features":[157]},{"name":"BINDF_PRAGMA_NO_CACHE","features":[157]},{"name":"BINDF_PREFERDEFAULTHANDLER","features":[157]},{"name":"BINDF_PULLDATA","features":[157]},{"name":"BINDF_RESERVED_1","features":[157]},{"name":"BINDF_RESERVED_2","features":[157]},{"name":"BINDF_RESERVED_3","features":[157]},{"name":"BINDF_RESERVED_4","features":[157]},{"name":"BINDF_RESERVED_5","features":[157]},{"name":"BINDF_RESERVED_6","features":[157]},{"name":"BINDF_RESERVED_7","features":[157]},{"name":"BINDF_RESERVED_8","features":[157]},{"name":"BINDF_RESYNCHRONIZE","features":[157]},{"name":"BINDF_SILENTOPERATION","features":[157]},{"name":"BINDHANDLETYPES","features":[157]},{"name":"BINDHANDLETYPES_APPCACHE","features":[157]},{"name":"BINDHANDLETYPES_COUNT","features":[157]},{"name":"BINDHANDLETYPES_DEPENDENCY","features":[157]},{"name":"BINDINFO_OPTIONS","features":[157]},{"name":"BINDINFO_OPTIONS_ALLOWCONNECTDATA","features":[157]},{"name":"BINDINFO_OPTIONS_BINDTOOBJECT","features":[157]},{"name":"BINDINFO_OPTIONS_DISABLEAUTOREDIRECTS","features":[157]},{"name":"BINDINFO_OPTIONS_DISABLE_UTF8","features":[157]},{"name":"BINDINFO_OPTIONS_ENABLE_UTF8","features":[157]},{"name":"BINDINFO_OPTIONS_IGNOREHTTPHTTPSREDIRECTS","features":[157]},{"name":"BINDINFO_OPTIONS_IGNOREMIMETEXTPLAIN","features":[157]},{"name":"BINDINFO_OPTIONS_IGNORE_SSLERRORS_ONCE","features":[157]},{"name":"BINDINFO_OPTIONS_SECURITYOPTOUT","features":[157]},{"name":"BINDINFO_OPTIONS_SHDOCVW_NAVIGATE","features":[157]},{"name":"BINDINFO_OPTIONS_USEBINDSTRINGCREDS","features":[157]},{"name":"BINDINFO_OPTIONS_USE_IE_ENCODING","features":[157]},{"name":"BINDINFO_OPTIONS_WININETFLAG","features":[157]},{"name":"BINDINFO_WPC_DOWNLOADBLOCKED","features":[157]},{"name":"BINDINFO_WPC_LOGGING_ENABLED","features":[157]},{"name":"BINDSTATUS","features":[157]},{"name":"BINDSTATUS_64BIT_PROGRESS","features":[157]},{"name":"BINDSTATUS_ACCEPTRANGES","features":[157]},{"name":"BINDSTATUS_BEGINDOWNLOADCOMPONENTS","features":[157]},{"name":"BINDSTATUS_BEGINDOWNLOADDATA","features":[157]},{"name":"BINDSTATUS_BEGINSYNCOPERATION","features":[157]},{"name":"BINDSTATUS_BEGINUPLOADDATA","features":[157]},{"name":"BINDSTATUS_CACHECONTROL","features":[157]},{"name":"BINDSTATUS_CACHEFILENAMEAVAILABLE","features":[157]},{"name":"BINDSTATUS_CLASSIDAVAILABLE","features":[157]},{"name":"BINDSTATUS_CLASSINSTALLLOCATION","features":[157]},{"name":"BINDSTATUS_CLSIDCANINSTANTIATE","features":[157]},{"name":"BINDSTATUS_COMPACT_POLICY_RECEIVED","features":[157]},{"name":"BINDSTATUS_CONNECTING","features":[157]},{"name":"BINDSTATUS_CONTENTDISPOSITIONATTACH","features":[157]},{"name":"BINDSTATUS_CONTENTDISPOSITIONFILENAME","features":[157]},{"name":"BINDSTATUS_COOKIE_SENT","features":[157]},{"name":"BINDSTATUS_COOKIE_STATE_ACCEPT","features":[157]},{"name":"BINDSTATUS_COOKIE_STATE_DOWNGRADE","features":[157]},{"name":"BINDSTATUS_COOKIE_STATE_LEASH","features":[157]},{"name":"BINDSTATUS_COOKIE_STATE_PROMPT","features":[157]},{"name":"BINDSTATUS_COOKIE_STATE_REJECT","features":[157]},{"name":"BINDSTATUS_COOKIE_STATE_UNKNOWN","features":[157]},{"name":"BINDSTATUS_COOKIE_SUPPRESSED","features":[157]},{"name":"BINDSTATUS_DECODING","features":[157]},{"name":"BINDSTATUS_DIRECTBIND","features":[157]},{"name":"BINDSTATUS_DISPLAYNAMEAVAILABLE","features":[157]},{"name":"BINDSTATUS_DOWNLOADINGDATA","features":[157]},{"name":"BINDSTATUS_ENCODING","features":[157]},{"name":"BINDSTATUS_ENDDOWNLOADCOMPONENTS","features":[157]},{"name":"BINDSTATUS_ENDDOWNLOADDATA","features":[157]},{"name":"BINDSTATUS_ENDSYNCOPERATION","features":[157]},{"name":"BINDSTATUS_ENDUPLOADDATA","features":[157]},{"name":"BINDSTATUS_FILTERREPORTMIMETYPE","features":[157]},{"name":"BINDSTATUS_FINDINGRESOURCE","features":[157]},{"name":"BINDSTATUS_INSTALLINGCOMPONENTS","features":[157]},{"name":"BINDSTATUS_IUNKNOWNAVAILABLE","features":[157]},{"name":"BINDSTATUS_LAST","features":[157]},{"name":"BINDSTATUS_LAST_PRIVATE","features":[157]},{"name":"BINDSTATUS_LOADINGMIMEHANDLER","features":[157]},{"name":"BINDSTATUS_MIMETEXTPLAINMISMATCH","features":[157]},{"name":"BINDSTATUS_MIMETYPEAVAILABLE","features":[157]},{"name":"BINDSTATUS_P3P_HEADER","features":[157]},{"name":"BINDSTATUS_PERSISTENT_COOKIE_RECEIVED","features":[157]},{"name":"BINDSTATUS_POLICY_HREF","features":[157]},{"name":"BINDSTATUS_PROTOCOLCLASSID","features":[157]},{"name":"BINDSTATUS_PROXYDETECTING","features":[157]},{"name":"BINDSTATUS_PUBLISHERAVAILABLE","features":[157]},{"name":"BINDSTATUS_RAWMIMETYPE","features":[157]},{"name":"BINDSTATUS_REDIRECTING","features":[157]},{"name":"BINDSTATUS_RESERVED_0","features":[157]},{"name":"BINDSTATUS_RESERVED_1","features":[157]},{"name":"BINDSTATUS_RESERVED_10","features":[157]},{"name":"BINDSTATUS_RESERVED_11","features":[157]},{"name":"BINDSTATUS_RESERVED_12","features":[157]},{"name":"BINDSTATUS_RESERVED_13","features":[157]},{"name":"BINDSTATUS_RESERVED_14","features":[157]},{"name":"BINDSTATUS_RESERVED_2","features":[157]},{"name":"BINDSTATUS_RESERVED_3","features":[157]},{"name":"BINDSTATUS_RESERVED_4","features":[157]},{"name":"BINDSTATUS_RESERVED_5","features":[157]},{"name":"BINDSTATUS_RESERVED_6","features":[157]},{"name":"BINDSTATUS_RESERVED_7","features":[157]},{"name":"BINDSTATUS_RESERVED_8","features":[157]},{"name":"BINDSTATUS_RESERVED_9","features":[157]},{"name":"BINDSTATUS_RESERVED_A","features":[157]},{"name":"BINDSTATUS_RESERVED_B","features":[157]},{"name":"BINDSTATUS_RESERVED_C","features":[157]},{"name":"BINDSTATUS_RESERVED_D","features":[157]},{"name":"BINDSTATUS_RESERVED_E","features":[157]},{"name":"BINDSTATUS_RESERVED_F","features":[157]},{"name":"BINDSTATUS_SENDINGREQUEST","features":[157]},{"name":"BINDSTATUS_SERVER_MIMETYPEAVAILABLE","features":[157]},{"name":"BINDSTATUS_SESSION_COOKIES_ALLOWED","features":[157]},{"name":"BINDSTATUS_SESSION_COOKIE_RECEIVED","features":[157]},{"name":"BINDSTATUS_SNIFFED_CLASSIDAVAILABLE","features":[157]},{"name":"BINDSTATUS_SSLUX_NAVBLOCKED","features":[157]},{"name":"BINDSTATUS_UPLOADINGDATA","features":[157]},{"name":"BINDSTATUS_USINGCACHEDCOPY","features":[157]},{"name":"BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE","features":[157]},{"name":"BINDSTRING","features":[157]},{"name":"BINDSTRING_ACCEPT_ENCODINGS","features":[157]},{"name":"BINDSTRING_ACCEPT_MIMES","features":[157]},{"name":"BINDSTRING_DOC_URL","features":[157]},{"name":"BINDSTRING_DOWNLOADPATH","features":[157]},{"name":"BINDSTRING_ENTERPRISE_ID","features":[157]},{"name":"BINDSTRING_EXTRA_URL","features":[157]},{"name":"BINDSTRING_FLAG_BIND_TO_OBJECT","features":[157]},{"name":"BINDSTRING_HEADERS","features":[157]},{"name":"BINDSTRING_IID","features":[157]},{"name":"BINDSTRING_INITIAL_FILENAME","features":[157]},{"name":"BINDSTRING_LANGUAGE","features":[157]},{"name":"BINDSTRING_OS","features":[157]},{"name":"BINDSTRING_PASSWORD","features":[157]},{"name":"BINDSTRING_POST_COOKIE","features":[157]},{"name":"BINDSTRING_POST_DATA_MIME","features":[157]},{"name":"BINDSTRING_PROXY_PASSWORD","features":[157]},{"name":"BINDSTRING_PROXY_USERNAME","features":[157]},{"name":"BINDSTRING_PTR_BIND_CONTEXT","features":[157]},{"name":"BINDSTRING_ROOTDOC_URL","features":[157]},{"name":"BINDSTRING_SAMESITE_COOKIE_LEVEL","features":[157]},{"name":"BINDSTRING_UA_COLOR","features":[157]},{"name":"BINDSTRING_UA_PIXELS","features":[157]},{"name":"BINDSTRING_URL","features":[157]},{"name":"BINDSTRING_USERNAME","features":[157]},{"name":"BINDSTRING_USER_AGENT","features":[157]},{"name":"BINDSTRING_XDR_ORIGIN","features":[157]},{"name":"BINDVERB","features":[157]},{"name":"BINDVERB_CUSTOM","features":[157]},{"name":"BINDVERB_GET","features":[157]},{"name":"BINDVERB_POST","features":[157]},{"name":"BINDVERB_PUT","features":[157]},{"name":"BINDVERB_RESERVED1","features":[157]},{"name":"BSCF","features":[157]},{"name":"BSCF_64BITLENGTHDOWNLOAD","features":[157]},{"name":"BSCF_AVAILABLEDATASIZEUNKNOWN","features":[157]},{"name":"BSCF_DATAFULLYAVAILABLE","features":[157]},{"name":"BSCF_FIRSTDATANOTIFICATION","features":[157]},{"name":"BSCF_INTERMEDIATEDATANOTIFICATION","features":[157]},{"name":"BSCF_LASTDATANOTIFICATION","features":[157]},{"name":"BSCF_SKIPDRAINDATAFORFILEURLS","features":[157]},{"name":"CF_NULL","features":[157]},{"name":"CIP_ACCESS_DENIED","features":[157]},{"name":"CIP_DISK_FULL","features":[157]},{"name":"CIP_EXE_SELF_REGISTERATION_TIMEOUT","features":[157]},{"name":"CIP_NAME_CONFLICT","features":[157]},{"name":"CIP_NEED_REBOOT","features":[157]},{"name":"CIP_NEED_REBOOT_UI_PERMISSION","features":[157]},{"name":"CIP_NEWER_VERSION_EXISTS","features":[157]},{"name":"CIP_OLDER_VERSION_EXISTS","features":[157]},{"name":"CIP_STATUS","features":[157]},{"name":"CIP_TRUST_VERIFICATION_COMPONENT_MISSING","features":[157]},{"name":"CIP_UNSAFE_TO_ABORT","features":[157]},{"name":"CLASSIDPROP","features":[157]},{"name":"CODEBASEHOLD","features":[157]},{"name":"CONFIRMSAFETY","features":[157]},{"name":"CONFIRMSAFETYACTION_LOADOBJECT","features":[157]},{"name":"CoGetClassObjectFromURL","features":[157]},{"name":"CoInternetCombineIUri","features":[157]},{"name":"CoInternetCombineUrl","features":[157]},{"name":"CoInternetCombineUrlEx","features":[157]},{"name":"CoInternetCompareUrl","features":[157]},{"name":"CoInternetCreateSecurityManager","features":[157]},{"name":"CoInternetCreateZoneManager","features":[157]},{"name":"CoInternetGetProtocolFlags","features":[157]},{"name":"CoInternetGetSecurityUrl","features":[157]},{"name":"CoInternetGetSecurityUrlEx","features":[157]},{"name":"CoInternetGetSession","features":[157]},{"name":"CoInternetIsFeatureEnabled","features":[157]},{"name":"CoInternetIsFeatureEnabledForIUri","features":[157]},{"name":"CoInternetIsFeatureEnabledForUrl","features":[157]},{"name":"CoInternetIsFeatureZoneElevationEnabled","features":[157]},{"name":"CoInternetParseIUri","features":[157]},{"name":"CoInternetParseUrl","features":[157]},{"name":"CoInternetQueryInfo","features":[157]},{"name":"CoInternetSetFeatureEnabled","features":[1,157]},{"name":"CompareSecurityIds","features":[157]},{"name":"CompatFlagsFromClsid","features":[157]},{"name":"CopyBindInfo","features":[1,12,4,157]},{"name":"CopyStgMedium","features":[1,12,157]},{"name":"CreateAsyncBindCtx","features":[157]},{"name":"CreateAsyncBindCtxEx","features":[157]},{"name":"CreateFormatEnumerator","features":[157]},{"name":"CreateURLMoniker","features":[157]},{"name":"CreateURLMonikerEx","features":[157]},{"name":"CreateURLMonikerEx2","features":[157]},{"name":"DATAINFO","features":[157]},{"name":"E_PENDING","features":[157]},{"name":"FEATURE_ADDON_MANAGEMENT","features":[157]},{"name":"FEATURE_BEHAVIORS","features":[157]},{"name":"FEATURE_BLOCK_INPUT_PROMPTS","features":[157]},{"name":"FEATURE_DISABLE_LEGACY_COMPRESSION","features":[157]},{"name":"FEATURE_DISABLE_MK_PROTOCOL","features":[157]},{"name":"FEATURE_DISABLE_NAVIGATION_SOUNDS","features":[157]},{"name":"FEATURE_DISABLE_TELNET_PROTOCOL","features":[157]},{"name":"FEATURE_ENTRY_COUNT","features":[157]},{"name":"FEATURE_FEEDS","features":[157]},{"name":"FEATURE_FORCE_ADDR_AND_STATUS","features":[157]},{"name":"FEATURE_GET_URL_DOM_FILEPATH_UNENCODED","features":[157]},{"name":"FEATURE_HTTP_USERNAME_PASSWORD_DISABLE","features":[157]},{"name":"FEATURE_LOCALMACHINE_LOCKDOWN","features":[157]},{"name":"FEATURE_MIME_HANDLING","features":[157]},{"name":"FEATURE_MIME_SNIFFING","features":[157]},{"name":"FEATURE_OBJECT_CACHING","features":[157]},{"name":"FEATURE_PROTOCOL_LOCKDOWN","features":[157]},{"name":"FEATURE_RESTRICT_ACTIVEXINSTALL","features":[157]},{"name":"FEATURE_RESTRICT_FILEDOWNLOAD","features":[157]},{"name":"FEATURE_SAFE_BINDTOOBJECT","features":[157]},{"name":"FEATURE_SECURITYBAND","features":[157]},{"name":"FEATURE_SSLUX","features":[157]},{"name":"FEATURE_TABBED_BROWSING","features":[157]},{"name":"FEATURE_UNC_SAVEDFILECHECK","features":[157]},{"name":"FEATURE_VALIDATE_NAVIGATE_URL","features":[157]},{"name":"FEATURE_WEBOC_POPUPMANAGEMENT","features":[157]},{"name":"FEATURE_WINDOW_RESTRICTIONS","features":[157]},{"name":"FEATURE_XMLHTTP","features":[157]},{"name":"FEATURE_ZONE_ELEVATION","features":[157]},{"name":"FIEF_FLAG_FORCE_JITUI","features":[157]},{"name":"FIEF_FLAG_PEEK","features":[157]},{"name":"FIEF_FLAG_RESERVED_0","features":[157]},{"name":"FIEF_FLAG_SKIP_INSTALLED_VERSION_CHECK","features":[157]},{"name":"FMFD_DEFAULT","features":[157]},{"name":"FMFD_ENABLEMIMESNIFFING","features":[157]},{"name":"FMFD_IGNOREMIMETEXTPLAIN","features":[157]},{"name":"FMFD_RESERVED_1","features":[157]},{"name":"FMFD_RESERVED_2","features":[157]},{"name":"FMFD_RESPECTTEXTPLAIN","features":[157]},{"name":"FMFD_RETURNUPDATEDIMGMIMES","features":[157]},{"name":"FMFD_SERVERMIME","features":[157]},{"name":"FMFD_URLASFILENAME","features":[157]},{"name":"FaultInIEFeature","features":[1,157]},{"name":"FindMediaType","features":[157]},{"name":"FindMediaTypeClass","features":[157]},{"name":"FindMimeFromData","features":[157]},{"name":"GET_FEATURE_FROM_PROCESS","features":[157]},{"name":"GET_FEATURE_FROM_REGISTRY","features":[157]},{"name":"GET_FEATURE_FROM_THREAD","features":[157]},{"name":"GET_FEATURE_FROM_THREAD_INTERNET","features":[157]},{"name":"GET_FEATURE_FROM_THREAD_INTRANET","features":[157]},{"name":"GET_FEATURE_FROM_THREAD_LOCALMACHINE","features":[157]},{"name":"GET_FEATURE_FROM_THREAD_RESTRICTED","features":[157]},{"name":"GET_FEATURE_FROM_THREAD_TRUSTED","features":[157]},{"name":"GetClassFileOrMime","features":[157]},{"name":"GetClassURL","features":[157]},{"name":"GetComponentIDFromCLSSPEC","features":[157]},{"name":"GetSoftwareUpdateInfo","features":[157]},{"name":"HIT_LOGGING_INFO","features":[1,157]},{"name":"HlinkGoBack","features":[157]},{"name":"HlinkGoForward","features":[157]},{"name":"HlinkNavigateMoniker","features":[157]},{"name":"HlinkNavigateString","features":[157]},{"name":"HlinkSimpleNavigateToMoniker","features":[157]},{"name":"HlinkSimpleNavigateToString","features":[157]},{"name":"IBindCallbackRedirect","features":[157]},{"name":"IBindHttpSecurity","features":[157]},{"name":"IBindProtocol","features":[157]},{"name":"ICatalogFileInfo","features":[157]},{"name":"ICodeInstall","features":[157]},{"name":"IDataFilter","features":[157]},{"name":"IEGetUserPrivateNamespaceName","features":[157]},{"name":"IEInstallScope","features":[157]},{"name":"IEObjectType","features":[157]},{"name":"IE_EPM_OBJECT_EVENT","features":[157]},{"name":"IE_EPM_OBJECT_FILE","features":[157]},{"name":"IE_EPM_OBJECT_MUTEX","features":[157]},{"name":"IE_EPM_OBJECT_NAMED_PIPE","features":[157]},{"name":"IE_EPM_OBJECT_REGISTRY","features":[157]},{"name":"IE_EPM_OBJECT_SEMAPHORE","features":[157]},{"name":"IE_EPM_OBJECT_SHARED_MEMORY","features":[157]},{"name":"IE_EPM_OBJECT_WAITABLE_TIMER","features":[157]},{"name":"IEncodingFilterFactory","features":[157]},{"name":"IGetBindHandle","features":[157]},{"name":"IHttpNegotiate","features":[157]},{"name":"IHttpNegotiate2","features":[157]},{"name":"IHttpNegotiate3","features":[157]},{"name":"IHttpSecurity","features":[157]},{"name":"IInternet","features":[157]},{"name":"IInternetBindInfo","features":[157]},{"name":"IInternetBindInfoEx","features":[157]},{"name":"IInternetHostSecurityManager","features":[157]},{"name":"IInternetPriority","features":[157]},{"name":"IInternetProtocol","features":[157]},{"name":"IInternetProtocolEx","features":[157]},{"name":"IInternetProtocolInfo","features":[157]},{"name":"IInternetProtocolRoot","features":[157]},{"name":"IInternetProtocolSink","features":[157]},{"name":"IInternetProtocolSinkStackable","features":[157]},{"name":"IInternetSecurityManager","features":[157]},{"name":"IInternetSecurityManagerEx","features":[157]},{"name":"IInternetSecurityManagerEx2","features":[157]},{"name":"IInternetSecurityMgrSite","features":[157]},{"name":"IInternetSession","features":[157]},{"name":"IInternetThreadSwitch","features":[157]},{"name":"IInternetZoneManager","features":[157]},{"name":"IInternetZoneManagerEx","features":[157]},{"name":"IInternetZoneManagerEx2","features":[157]},{"name":"IMonikerProp","features":[157]},{"name":"INET_E_AUTHENTICATION_REQUIRED","features":[157]},{"name":"INET_E_BLOCKED_ENHANCEDPROTECTEDMODE","features":[157]},{"name":"INET_E_BLOCKED_PLUGGABLE_PROTOCOL","features":[157]},{"name":"INET_E_BLOCKED_REDIRECT_XSECURITYID","features":[157]},{"name":"INET_E_CANNOT_CONNECT","features":[157]},{"name":"INET_E_CANNOT_INSTANTIATE_OBJECT","features":[157]},{"name":"INET_E_CANNOT_LOAD_DATA","features":[157]},{"name":"INET_E_CANNOT_LOCK_REQUEST","features":[157]},{"name":"INET_E_CANNOT_REPLACE_SFP_FILE","features":[157]},{"name":"INET_E_CODE_DOWNLOAD_DECLINED","features":[157]},{"name":"INET_E_CODE_INSTALL_BLOCKED_ARM","features":[157]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BITNESS","features":[157]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY","features":[157]},{"name":"INET_E_CODE_INSTALL_BLOCKED_IMMERSIVE","features":[157]},{"name":"INET_E_CODE_INSTALL_SUPPRESSED","features":[157]},{"name":"INET_E_CONNECTION_TIMEOUT","features":[157]},{"name":"INET_E_DATA_NOT_AVAILABLE","features":[157]},{"name":"INET_E_DEFAULT_ACTION","features":[157]},{"name":"INET_E_DOMINJECTIONVALIDATION","features":[157]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_CSP","features":[157]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_INPRIVATE","features":[157]},{"name":"INET_E_DOWNLOAD_FAILURE","features":[157]},{"name":"INET_E_ERROR_FIRST","features":[157]},{"name":"INET_E_ERROR_LAST","features":[157]},{"name":"INET_E_FORBIDFRAMING","features":[157]},{"name":"INET_E_HSTS_CERTIFICATE_ERROR","features":[157]},{"name":"INET_E_INVALID_CERTIFICATE","features":[157]},{"name":"INET_E_INVALID_REQUEST","features":[157]},{"name":"INET_E_INVALID_URL","features":[157]},{"name":"INET_E_NO_SESSION","features":[157]},{"name":"INET_E_NO_VALID_MEDIA","features":[157]},{"name":"INET_E_OBJECT_NOT_FOUND","features":[157]},{"name":"INET_E_QUERYOPTION_UNKNOWN","features":[157]},{"name":"INET_E_REDIRECTING","features":[157]},{"name":"INET_E_REDIRECT_FAILED","features":[157]},{"name":"INET_E_REDIRECT_TO_DIR","features":[157]},{"name":"INET_E_RESERVED_1","features":[157]},{"name":"INET_E_RESERVED_2","features":[157]},{"name":"INET_E_RESERVED_3","features":[157]},{"name":"INET_E_RESERVED_4","features":[157]},{"name":"INET_E_RESERVED_5","features":[157]},{"name":"INET_E_RESOURCE_NOT_FOUND","features":[157]},{"name":"INET_E_RESULT_DISPATCHED","features":[157]},{"name":"INET_E_SECURITY_PROBLEM","features":[157]},{"name":"INET_E_TERMINATED_BIND","features":[157]},{"name":"INET_E_UNKNOWN_PROTOCOL","features":[157]},{"name":"INET_E_USE_DEFAULT_PROTOCOLHANDLER","features":[157]},{"name":"INET_E_USE_DEFAULT_SETTING","features":[157]},{"name":"INET_E_USE_EXTEND_BINDING","features":[157]},{"name":"INET_E_VTAB_SWITCH_FORCE_ENGINE","features":[157]},{"name":"INET_ZONE_MANAGER_CONSTANTS","features":[157]},{"name":"INTERNETFEATURELIST","features":[157]},{"name":"IPersistMoniker","features":[157]},{"name":"ISoftDistExt","features":[157]},{"name":"IUriBuilderFactory","features":[157]},{"name":"IUriContainer","features":[157]},{"name":"IWinInetCacheHints","features":[157]},{"name":"IWinInetCacheHints2","features":[157]},{"name":"IWinInetFileStream","features":[157]},{"name":"IWinInetHttpInfo","features":[157]},{"name":"IWinInetHttpTimeouts","features":[157]},{"name":"IWinInetInfo","features":[157]},{"name":"IWindowForBindingUI","features":[157]},{"name":"IWrappedProtocol","features":[157]},{"name":"IZoneIdentifier","features":[157]},{"name":"IZoneIdentifier2","features":[157]},{"name":"IsAsyncMoniker","features":[157]},{"name":"IsLoggingEnabledA","features":[1,157]},{"name":"IsLoggingEnabledW","features":[1,157]},{"name":"IsValidURL","features":[157]},{"name":"MAX_SIZE_SECURITY_ID","features":[157]},{"name":"MAX_ZONE_DESCRIPTION","features":[157]},{"name":"MAX_ZONE_PATH","features":[157]},{"name":"MIMETYPEPROP","features":[157]},{"name":"MKSYS_URLMONIKER","features":[157]},{"name":"MK_S_ASYNCHRONOUS","features":[157]},{"name":"MONIKERPROPERTY","features":[157]},{"name":"MUTZ_ACCEPT_WILDCARD_SCHEME","features":[157]},{"name":"MUTZ_DONT_UNESCAPE","features":[157]},{"name":"MUTZ_DONT_USE_CACHE","features":[157]},{"name":"MUTZ_ENFORCERESTRICTED","features":[157]},{"name":"MUTZ_FORCE_INTRANET_FLAGS","features":[157]},{"name":"MUTZ_IGNORE_ZONE_MAPPINGS","features":[157]},{"name":"MUTZ_ISFILE","features":[157]},{"name":"MUTZ_NOSAVEDFILECHECK","features":[157]},{"name":"MUTZ_REQUIRESAVEDFILECHECK","features":[157]},{"name":"MUTZ_RESERVED","features":[157]},{"name":"MkParseDisplayNameEx","features":[157]},{"name":"OIBDG_APARTMENTTHREADED","features":[157]},{"name":"OIBDG_DATAONLY","features":[157]},{"name":"OIBDG_FLAGS","features":[157]},{"name":"ObtainUserAgentString","features":[157]},{"name":"PARSEACTION","features":[157]},{"name":"PARSE_ANCHOR","features":[157]},{"name":"PARSE_CANONICALIZE","features":[157]},{"name":"PARSE_DECODE_IS_ESCAPE","features":[157]},{"name":"PARSE_DOCUMENT","features":[157]},{"name":"PARSE_DOMAIN","features":[157]},{"name":"PARSE_ENCODE_IS_UNESCAPE","features":[157]},{"name":"PARSE_ESCAPE","features":[157]},{"name":"PARSE_FRIENDLY","features":[157]},{"name":"PARSE_LOCATION","features":[157]},{"name":"PARSE_MIME","features":[157]},{"name":"PARSE_PATH_FROM_URL","features":[157]},{"name":"PARSE_ROOTDOCUMENT","features":[157]},{"name":"PARSE_SCHEMA","features":[157]},{"name":"PARSE_SECURITY_DOMAIN","features":[157]},{"name":"PARSE_SECURITY_URL","features":[157]},{"name":"PARSE_SERVER","features":[157]},{"name":"PARSE_SITE","features":[157]},{"name":"PARSE_UNESCAPE","features":[157]},{"name":"PARSE_URL_FROM_PATH","features":[157]},{"name":"PD_FORCE_SWITCH","features":[157]},{"name":"PI_APARTMENTTHREADED","features":[157]},{"name":"PI_CLASSINSTALL","features":[157]},{"name":"PI_CLSIDLOOKUP","features":[157]},{"name":"PI_DATAPROGRESS","features":[157]},{"name":"PI_FILTER_MODE","features":[157]},{"name":"PI_FLAGS","features":[157]},{"name":"PI_FORCE_ASYNC","features":[157]},{"name":"PI_LOADAPPDIRECT","features":[157]},{"name":"PI_MIMEVERIFICATION","features":[157]},{"name":"PI_NOMIMEHANDLER","features":[157]},{"name":"PI_PARSE_URL","features":[157]},{"name":"PI_PASSONBINDCTX","features":[157]},{"name":"PI_PREFERDEFAULTHANDLER","features":[157]},{"name":"PI_SYNCHRONOUS","features":[157]},{"name":"PI_USE_WORKERTHREAD","features":[157]},{"name":"POPUPLEVELPROP","features":[157]},{"name":"PROTOCOLDATA","features":[157]},{"name":"PROTOCOLFILTERDATA","features":[157]},{"name":"PROTOCOLFLAG_NO_PICS_CHECK","features":[157]},{"name":"PROTOCOL_ARGUMENT","features":[157]},{"name":"PSUACTION","features":[157]},{"name":"PSU_DEFAULT","features":[157]},{"name":"PSU_SECURITY_URL_ONLY","features":[157]},{"name":"PUAF","features":[157]},{"name":"PUAFOUT","features":[157]},{"name":"PUAFOUT_DEFAULT","features":[157]},{"name":"PUAFOUT_ISLOCKZONEPOLICY","features":[157]},{"name":"PUAF_ACCEPT_WILDCARD_SCHEME","features":[157]},{"name":"PUAF_CHECK_TIFS","features":[157]},{"name":"PUAF_DEFAULT","features":[157]},{"name":"PUAF_DEFAULTZONEPOL","features":[157]},{"name":"PUAF_DONTCHECKBOXINDIALOG","features":[157]},{"name":"PUAF_DONT_USE_CACHE","features":[157]},{"name":"PUAF_DRAGPROTOCOLCHECK","features":[157]},{"name":"PUAF_ENFORCERESTRICTED","features":[157]},{"name":"PUAF_FORCEUI_FOREGROUND","features":[157]},{"name":"PUAF_ISFILE","features":[157]},{"name":"PUAF_LMZ_LOCKED","features":[157]},{"name":"PUAF_LMZ_UNLOCKED","features":[157]},{"name":"PUAF_NOSAVEDFILECHECK","features":[157]},{"name":"PUAF_NOUI","features":[157]},{"name":"PUAF_NOUIIFLOCKED","features":[157]},{"name":"PUAF_NPL_USE_LOCKED_IF_RESTRICTED","features":[157]},{"name":"PUAF_REQUIRESAVEDFILECHECK","features":[157]},{"name":"PUAF_RESERVED1","features":[157]},{"name":"PUAF_RESERVED2","features":[157]},{"name":"PUAF_TRUSTED","features":[157]},{"name":"PUAF_WARN_IF_DENIED","features":[157]},{"name":"QUERYOPTION","features":[157]},{"name":"QUERY_CAN_NAVIGATE","features":[157]},{"name":"QUERY_CONTENT_ENCODING","features":[157]},{"name":"QUERY_CONTENT_TYPE","features":[157]},{"name":"QUERY_EXPIRATION_DATE","features":[157]},{"name":"QUERY_IS_CACHED","features":[157]},{"name":"QUERY_IS_CACHED_AND_USABLE_OFFLINE","features":[157]},{"name":"QUERY_IS_CACHED_OR_MAPPED","features":[157]},{"name":"QUERY_IS_INSTALLEDENTRY","features":[157]},{"name":"QUERY_IS_SAFE","features":[157]},{"name":"QUERY_IS_SECURE","features":[157]},{"name":"QUERY_RECOMBINE","features":[157]},{"name":"QUERY_REFRESH","features":[157]},{"name":"QUERY_TIME_OF_LAST_CHANGE","features":[157]},{"name":"QUERY_USES_CACHE","features":[157]},{"name":"QUERY_USES_HISTORYFOLDER","features":[157]},{"name":"QUERY_USES_NETWORK","features":[157]},{"name":"REMSECURITY_ATTRIBUTES","features":[1,157]},{"name":"RegisterBindStatusCallback","features":[157]},{"name":"RegisterFormatEnumerator","features":[157]},{"name":"RegisterMediaTypeClass","features":[157]},{"name":"RegisterMediaTypes","features":[157]},{"name":"ReleaseBindInfo","features":[1,12,4,157]},{"name":"RemBINDINFO","features":[1,157]},{"name":"RemFORMATETC","features":[157]},{"name":"RevokeBindStatusCallback","features":[157]},{"name":"RevokeFormatEnumerator","features":[157]},{"name":"SECURITY_IE_STATE_GREEN","features":[157]},{"name":"SECURITY_IE_STATE_RED","features":[157]},{"name":"SET_FEATURE_IN_REGISTRY","features":[157]},{"name":"SET_FEATURE_ON_PROCESS","features":[157]},{"name":"SET_FEATURE_ON_THREAD","features":[157]},{"name":"SET_FEATURE_ON_THREAD_INTERNET","features":[157]},{"name":"SET_FEATURE_ON_THREAD_INTRANET","features":[157]},{"name":"SET_FEATURE_ON_THREAD_LOCALMACHINE","features":[157]},{"name":"SET_FEATURE_ON_THREAD_RESTRICTED","features":[157]},{"name":"SET_FEATURE_ON_THREAD_TRUSTED","features":[157]},{"name":"SOFTDISTINFO","features":[157]},{"name":"SOFTDIST_ADSTATE_AVAILABLE","features":[157]},{"name":"SOFTDIST_ADSTATE_DOWNLOADED","features":[157]},{"name":"SOFTDIST_ADSTATE_INSTALLED","features":[157]},{"name":"SOFTDIST_ADSTATE_NONE","features":[157]},{"name":"SOFTDIST_FLAG_DELETE_SUBSCRIPTION","features":[157]},{"name":"SOFTDIST_FLAG_USAGE_AUTOINSTALL","features":[157]},{"name":"SOFTDIST_FLAG_USAGE_EMAIL","features":[157]},{"name":"SOFTDIST_FLAG_USAGE_PRECACHE","features":[157]},{"name":"SZM_CREATE","features":[157]},{"name":"SZM_DELETE","features":[157]},{"name":"SZM_FLAGS","features":[157]},{"name":"S_ASYNCHRONOUS","features":[157]},{"name":"SetAccessForIEAppContainer","features":[1,157]},{"name":"SetSoftwareUpdateAdvertisementState","features":[157]},{"name":"StartParam","features":[157]},{"name":"TRUSTEDDOWNLOADPROP","features":[157]},{"name":"UAS_EXACTLEGACY","features":[157]},{"name":"URLACTION_ACTIVEX_ALLOW_TDC","features":[157]},{"name":"URLACTION_ACTIVEX_CONFIRM_NOOBJECTSAFETY","features":[157]},{"name":"URLACTION_ACTIVEX_CURR_MAX","features":[157]},{"name":"URLACTION_ACTIVEX_DYNSRC_VIDEO_AND_ANIMATION","features":[157]},{"name":"URLACTION_ACTIVEX_MAX","features":[157]},{"name":"URLACTION_ACTIVEX_MIN","features":[157]},{"name":"URLACTION_ACTIVEX_NO_WEBOC_SCRIPT","features":[157]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DATA_SAFETY","features":[157]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DOMAINLIST","features":[157]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OBJECT_SAFETY","features":[157]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OPTIN","features":[157]},{"name":"URLACTION_ACTIVEX_OVERRIDE_REPURPOSEDETECTION","features":[157]},{"name":"URLACTION_ACTIVEX_OVERRIDE_SCRIPT_SAFETY","features":[157]},{"name":"URLACTION_ACTIVEX_RUN","features":[157]},{"name":"URLACTION_ACTIVEX_SCRIPTLET_RUN","features":[157]},{"name":"URLACTION_ACTIVEX_TREATASUNTRUSTED","features":[157]},{"name":"URLACTION_ALLOW_ACTIVEX_FILTERING","features":[157]},{"name":"URLACTION_ALLOW_ANTIMALWARE_SCANNING_OF_ACTIVEX","features":[157]},{"name":"URLACTION_ALLOW_APEVALUATION","features":[157]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO","features":[157]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO_PLUGINS","features":[157]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_APPCACHE_MANIFEST","features":[157]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_ACROSS_WINDOWS","features":[157]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_WITHIN_WINDOW","features":[157]},{"name":"URLACTION_ALLOW_CSS_EXPRESSIONS","features":[157]},{"name":"URLACTION_ALLOW_JSCRIPT_IE","features":[157]},{"name":"URLACTION_ALLOW_RENDER_LEGACY_DXTFILTERS","features":[157]},{"name":"URLACTION_ALLOW_RESTRICTEDPROTOCOLS","features":[157]},{"name":"URLACTION_ALLOW_STRUCTURED_STORAGE_SNIFFING","features":[157]},{"name":"URLACTION_ALLOW_VBSCRIPT_IE","features":[157]},{"name":"URLACTION_ALLOW_XDOMAIN_SUBFRAME_RESIZE","features":[157]},{"name":"URLACTION_ALLOW_XHR_EVALUATION","features":[157]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_OPT_OUT_ADDITION","features":[157]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_VIA_OPT_OUT","features":[157]},{"name":"URLACTION_AUTHENTICATE_CLIENT","features":[157]},{"name":"URLACTION_AUTOMATIC_ACTIVEX_UI","features":[157]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI","features":[157]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI_MIN","features":[157]},{"name":"URLACTION_BEHAVIOR_MIN","features":[157]},{"name":"URLACTION_BEHAVIOR_RUN","features":[157]},{"name":"URLACTION_CHANNEL_SOFTDIST_MAX","features":[157]},{"name":"URLACTION_CHANNEL_SOFTDIST_MIN","features":[157]},{"name":"URLACTION_CHANNEL_SOFTDIST_PERMISSIONS","features":[157]},{"name":"URLACTION_CLIENT_CERT_PROMPT","features":[157]},{"name":"URLACTION_COOKIES","features":[157]},{"name":"URLACTION_COOKIES_ENABLED","features":[157]},{"name":"URLACTION_COOKIES_SESSION","features":[157]},{"name":"URLACTION_COOKIES_SESSION_THIRD_PARTY","features":[157]},{"name":"URLACTION_COOKIES_THIRD_PARTY","features":[157]},{"name":"URLACTION_CREDENTIALS_USE","features":[157]},{"name":"URLACTION_CROSS_DOMAIN_DATA","features":[157]},{"name":"URLACTION_DOTNET_USERCONTROLS","features":[157]},{"name":"URLACTION_DOWNLOAD_CURR_MAX","features":[157]},{"name":"URLACTION_DOWNLOAD_MAX","features":[157]},{"name":"URLACTION_DOWNLOAD_MIN","features":[157]},{"name":"URLACTION_DOWNLOAD_SIGNED_ACTIVEX","features":[157]},{"name":"URLACTION_DOWNLOAD_UNSIGNED_ACTIVEX","features":[157]},{"name":"URLACTION_FEATURE_BLOCK_INPUT_PROMPTS","features":[157]},{"name":"URLACTION_FEATURE_CROSSDOMAIN_FOCUS_CHANGE","features":[157]},{"name":"URLACTION_FEATURE_DATA_BINDING","features":[157]},{"name":"URLACTION_FEATURE_FORCE_ADDR_AND_STATUS","features":[157]},{"name":"URLACTION_FEATURE_MIME_SNIFFING","features":[157]},{"name":"URLACTION_FEATURE_MIN","features":[157]},{"name":"URLACTION_FEATURE_SCRIPT_STATUS_BAR","features":[157]},{"name":"URLACTION_FEATURE_WINDOW_RESTRICTIONS","features":[157]},{"name":"URLACTION_FEATURE_ZONE_ELEVATION","features":[157]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_CANVAS","features":[157]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_TEXTTRACK","features":[157]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_WEBWORKER","features":[157]},{"name":"URLACTION_HTML_ALLOW_INDEXEDDB","features":[157]},{"name":"URLACTION_HTML_ALLOW_INJECTED_DYNAMIC_HTML","features":[157]},{"name":"URLACTION_HTML_ALLOW_WINDOW_CLOSE","features":[157]},{"name":"URLACTION_HTML_FONT_DOWNLOAD","features":[157]},{"name":"URLACTION_HTML_INCLUDE_FILE_PATH","features":[157]},{"name":"URLACTION_HTML_JAVA_RUN","features":[157]},{"name":"URLACTION_HTML_MAX","features":[157]},{"name":"URLACTION_HTML_META_REFRESH","features":[157]},{"name":"URLACTION_HTML_MIN","features":[157]},{"name":"URLACTION_HTML_MIXED_CONTENT","features":[157]},{"name":"URLACTION_HTML_REQUIRE_UTF8_DOCUMENT_CODEPAGE","features":[157]},{"name":"URLACTION_HTML_SUBFRAME_NAVIGATE","features":[157]},{"name":"URLACTION_HTML_SUBMIT_FORMS","features":[157]},{"name":"URLACTION_HTML_SUBMIT_FORMS_FROM","features":[157]},{"name":"URLACTION_HTML_SUBMIT_FORMS_TO","features":[157]},{"name":"URLACTION_HTML_USERDATA_SAVE","features":[157]},{"name":"URLACTION_INFODELIVERY_CURR_MAX","features":[157]},{"name":"URLACTION_INFODELIVERY_MAX","features":[157]},{"name":"URLACTION_INFODELIVERY_MIN","features":[157]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_CHANNELS","features":[157]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_SUBSCRIPTIONS","features":[157]},{"name":"URLACTION_INFODELIVERY_NO_CHANNEL_LOGGING","features":[157]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_CHANNELS","features":[157]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_SUBSCRIPTIONS","features":[157]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_CHANNELS","features":[157]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_SUBSCRIPTIONS","features":[157]},{"name":"URLACTION_INPRIVATE_BLOCKING","features":[157]},{"name":"URLACTION_JAVA_CURR_MAX","features":[157]},{"name":"URLACTION_JAVA_MAX","features":[157]},{"name":"URLACTION_JAVA_MIN","features":[157]},{"name":"URLACTION_JAVA_PERMISSIONS","features":[157]},{"name":"URLACTION_LOOSE_XAML","features":[157]},{"name":"URLACTION_LOWRIGHTS","features":[157]},{"name":"URLACTION_MIN","features":[157]},{"name":"URLACTION_NETWORK_CURR_MAX","features":[157]},{"name":"URLACTION_NETWORK_MAX","features":[157]},{"name":"URLACTION_NETWORK_MIN","features":[157]},{"name":"URLACTION_PLUGGABLE_PROTOCOL_XHR","features":[157]},{"name":"URLACTION_SCRIPT_CURR_MAX","features":[157]},{"name":"URLACTION_SCRIPT_JAVA_USE","features":[157]},{"name":"URLACTION_SCRIPT_MAX","features":[157]},{"name":"URLACTION_SCRIPT_MIN","features":[157]},{"name":"URLACTION_SCRIPT_NAVIGATE","features":[157]},{"name":"URLACTION_SCRIPT_OVERRIDE_SAFETY","features":[157]},{"name":"URLACTION_SCRIPT_PASTE","features":[157]},{"name":"URLACTION_SCRIPT_RUN","features":[157]},{"name":"URLACTION_SCRIPT_SAFE_ACTIVEX","features":[157]},{"name":"URLACTION_SCRIPT_XSSFILTER","features":[157]},{"name":"URLACTION_SHELL_ALLOW_CROSS_SITE_SHARE","features":[157]},{"name":"URLACTION_SHELL_CURR_MAX","features":[157]},{"name":"URLACTION_SHELL_ENHANCED_DRAGDROP_SECURITY","features":[157]},{"name":"URLACTION_SHELL_EXECUTE_HIGHRISK","features":[157]},{"name":"URLACTION_SHELL_EXECUTE_LOWRISK","features":[157]},{"name":"URLACTION_SHELL_EXECUTE_MODRISK","features":[157]},{"name":"URLACTION_SHELL_EXTENSIONSECURITY","features":[157]},{"name":"URLACTION_SHELL_FILE_DOWNLOAD","features":[157]},{"name":"URLACTION_SHELL_INSTALL_DTITEMS","features":[157]},{"name":"URLACTION_SHELL_MAX","features":[157]},{"name":"URLACTION_SHELL_MIN","features":[157]},{"name":"URLACTION_SHELL_MOVE_OR_COPY","features":[157]},{"name":"URLACTION_SHELL_POPUPMGR","features":[157]},{"name":"URLACTION_SHELL_PREVIEW","features":[157]},{"name":"URLACTION_SHELL_REMOTEQUERY","features":[157]},{"name":"URLACTION_SHELL_RTF_OBJECTS_LOAD","features":[157]},{"name":"URLACTION_SHELL_SECURE_DRAGSOURCE","features":[157]},{"name":"URLACTION_SHELL_SHARE","features":[157]},{"name":"URLACTION_SHELL_SHELLEXECUTE","features":[157]},{"name":"URLACTION_SHELL_TOCTOU_RISK","features":[157]},{"name":"URLACTION_SHELL_VERB","features":[157]},{"name":"URLACTION_SHELL_WEBVIEW_VERB","features":[157]},{"name":"URLACTION_WINDOWS_BROWSER_APPLICATIONS","features":[157]},{"name":"URLACTION_WINFX_SETUP","features":[157]},{"name":"URLACTION_XPS_DOCUMENTS","features":[157]},{"name":"URLDownloadToCacheFileA","features":[157]},{"name":"URLDownloadToCacheFileW","features":[157]},{"name":"URLDownloadToFileA","features":[157]},{"name":"URLDownloadToFileW","features":[157]},{"name":"URLMON_OPTION_URL_ENCODING","features":[157]},{"name":"URLMON_OPTION_USERAGENT","features":[157]},{"name":"URLMON_OPTION_USERAGENT_REFRESH","features":[157]},{"name":"URLMON_OPTION_USE_BINDSTRINGCREDS","features":[157]},{"name":"URLMON_OPTION_USE_BROWSERAPPSDOCUMENTS","features":[157]},{"name":"URLOSTRM_GETNEWESTVERSION","features":[157]},{"name":"URLOSTRM_USECACHEDCOPY","features":[157]},{"name":"URLOSTRM_USECACHEDCOPY_ONLY","features":[157]},{"name":"URLOpenBlockingStreamA","features":[157]},{"name":"URLOpenBlockingStreamW","features":[157]},{"name":"URLOpenPullStreamA","features":[157]},{"name":"URLOpenPullStreamW","features":[157]},{"name":"URLOpenStreamA","features":[157]},{"name":"URLOpenStreamW","features":[157]},{"name":"URLPOLICY_ACTIVEX_CHECK_LIST","features":[157]},{"name":"URLPOLICY_ALLOW","features":[157]},{"name":"URLPOLICY_AUTHENTICATE_CHALLENGE_RESPONSE","features":[157]},{"name":"URLPOLICY_AUTHENTICATE_CLEARTEXT_OK","features":[157]},{"name":"URLPOLICY_AUTHENTICATE_MUTUAL_ONLY","features":[157]},{"name":"URLPOLICY_BEHAVIOR_CHECK_LIST","features":[157]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_AUTOINSTALL","features":[157]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PRECACHE","features":[157]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PROHIBIT","features":[157]},{"name":"URLPOLICY_CREDENTIALS_ANONYMOUS_ONLY","features":[157]},{"name":"URLPOLICY_CREDENTIALS_CONDITIONAL_PROMPT","features":[157]},{"name":"URLPOLICY_CREDENTIALS_MUST_PROMPT_USER","features":[157]},{"name":"URLPOLICY_CREDENTIALS_SILENT_LOGON_OK","features":[157]},{"name":"URLPOLICY_DISALLOW","features":[157]},{"name":"URLPOLICY_DONTCHECKDLGBOX","features":[157]},{"name":"URLPOLICY_JAVA_CUSTOM","features":[157]},{"name":"URLPOLICY_JAVA_HIGH","features":[157]},{"name":"URLPOLICY_JAVA_LOW","features":[157]},{"name":"URLPOLICY_JAVA_MEDIUM","features":[157]},{"name":"URLPOLICY_JAVA_PROHIBIT","features":[157]},{"name":"URLPOLICY_LOG_ON_ALLOW","features":[157]},{"name":"URLPOLICY_LOG_ON_DISALLOW","features":[157]},{"name":"URLPOLICY_MASK_PERMISSIONS","features":[157]},{"name":"URLPOLICY_NOTIFY_ON_ALLOW","features":[157]},{"name":"URLPOLICY_NOTIFY_ON_DISALLOW","features":[157]},{"name":"URLPOLICY_QUERY","features":[157]},{"name":"URLTEMPLATE","features":[157]},{"name":"URLTEMPLATE_CUSTOM","features":[157]},{"name":"URLTEMPLATE_HIGH","features":[157]},{"name":"URLTEMPLATE_LOW","features":[157]},{"name":"URLTEMPLATE_MEDHIGH","features":[157]},{"name":"URLTEMPLATE_MEDIUM","features":[157]},{"name":"URLTEMPLATE_MEDLOW","features":[157]},{"name":"URLTEMPLATE_PREDEFINED_MAX","features":[157]},{"name":"URLTEMPLATE_PREDEFINED_MIN","features":[157]},{"name":"URLZONE","features":[157]},{"name":"URLZONEREG","features":[157]},{"name":"URLZONEREG_DEFAULT","features":[157]},{"name":"URLZONEREG_HKCU","features":[157]},{"name":"URLZONEREG_HKLM","features":[157]},{"name":"URLZONE_ESC_FLAG","features":[157]},{"name":"URLZONE_INTERNET","features":[157]},{"name":"URLZONE_INTRANET","features":[157]},{"name":"URLZONE_INVALID","features":[157]},{"name":"URLZONE_LOCAL_MACHINE","features":[157]},{"name":"URLZONE_PREDEFINED_MAX","features":[157]},{"name":"URLZONE_PREDEFINED_MIN","features":[157]},{"name":"URLZONE_TRUSTED","features":[157]},{"name":"URLZONE_UNTRUSTED","features":[157]},{"name":"URLZONE_USER_MAX","features":[157]},{"name":"URLZONE_USER_MIN","features":[157]},{"name":"URL_ENCODING","features":[157]},{"name":"URL_ENCODING_DISABLE_UTF8","features":[157]},{"name":"URL_ENCODING_ENABLE_UTF8","features":[157]},{"name":"URL_ENCODING_NONE","features":[157]},{"name":"URL_MK_LEGACY","features":[157]},{"name":"URL_MK_NO_CANONICALIZE","features":[157]},{"name":"URL_MK_UNIFORM","features":[157]},{"name":"USE_SRC_URL","features":[157]},{"name":"UriBuilder_USE_ORIGINAL_FLAGS","features":[157]},{"name":"Uri_DISPLAY_IDN_HOST","features":[157]},{"name":"Uri_DISPLAY_NO_FRAGMENT","features":[157]},{"name":"Uri_DISPLAY_NO_PUNYCODE","features":[157]},{"name":"Uri_ENCODING_HOST_IS_IDN","features":[157]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_CP","features":[157]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_UTF8","features":[157]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_CP","features":[157]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_PERCENT_ENCODED_UTF8","features":[157]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_CP","features":[157]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_PERCENT_ENCODED_UTF8","features":[157]},{"name":"Uri_HOST_DNS","features":[157]},{"name":"Uri_HOST_IDN","features":[157]},{"name":"Uri_HOST_IPV4","features":[157]},{"name":"Uri_HOST_IPV6","features":[157]},{"name":"Uri_HOST_TYPE","features":[157]},{"name":"Uri_HOST_UNKNOWN","features":[157]},{"name":"Uri_PUNYCODE_IDN_HOST","features":[157]},{"name":"UrlMkGetSessionOption","features":[157]},{"name":"UrlMkSetSessionOption","features":[157]},{"name":"WININETINFO_OPTION_LOCK_HANDLE","features":[157]},{"name":"WriteHitLogging","features":[1,157]},{"name":"ZAFLAGS","features":[157]},{"name":"ZAFLAGS_ADD_SITES","features":[157]},{"name":"ZAFLAGS_CUSTOM_EDIT","features":[157]},{"name":"ZAFLAGS_DETECT_INTRANET","features":[157]},{"name":"ZAFLAGS_INCLUDE_INTRANET_SITES","features":[157]},{"name":"ZAFLAGS_INCLUDE_PROXY_OVERRIDE","features":[157]},{"name":"ZAFLAGS_NO_CACHE","features":[157]},{"name":"ZAFLAGS_NO_UI","features":[157]},{"name":"ZAFLAGS_REQUIRE_VERIFICATION","features":[157]},{"name":"ZAFLAGS_SUPPORTS_VERIFICATION","features":[157]},{"name":"ZAFLAGS_UNC_AS_INTRANET","features":[157]},{"name":"ZAFLAGS_USE_LOCKED_ZONES","features":[157]},{"name":"ZAFLAGS_VERIFY_TEMPLATE_SETTINGS","features":[157]},{"name":"ZONEATTRIBUTES","features":[157]}],"542":[{"name":"APPDATA","features":[158]},{"name":"APPSTATISTICS","features":[158]},{"name":"APPTYPE_LIBRARY","features":[158]},{"name":"APPTYPE_SERVER","features":[158]},{"name":"APPTYPE_SWC","features":[158]},{"name":"APPTYPE_UNKNOWN","features":[158]},{"name":"AppDomainHelper","features":[158]},{"name":"ApplicationProcessRecycleInfo","features":[1,158]},{"name":"ApplicationProcessStatistics","features":[158]},{"name":"ApplicationProcessSummary","features":[1,158]},{"name":"ApplicationSummary","features":[158]},{"name":"AutoSvcs_Error_Constants","features":[158]},{"name":"ByotServerEx","features":[158]},{"name":"CLSIDDATA","features":[158]},{"name":"CLSIDDATA2","features":[158]},{"name":"COMAdmin32BitComponent","features":[158]},{"name":"COMAdmin64BitComponent","features":[158]},{"name":"COMAdminAccessChecksApplicationComponentLevel","features":[158]},{"name":"COMAdminAccessChecksApplicationLevel","features":[158]},{"name":"COMAdminAccessChecksLevelOptions","features":[158]},{"name":"COMAdminActivationInproc","features":[158]},{"name":"COMAdminActivationLocal","features":[158]},{"name":"COMAdminActivationOptions","features":[158]},{"name":"COMAdminApplicationExportOptions","features":[158]},{"name":"COMAdminApplicationInstallOptions","features":[158]},{"name":"COMAdminAuthenticationCall","features":[158]},{"name":"COMAdminAuthenticationCapabilitiesDynamicCloaking","features":[158]},{"name":"COMAdminAuthenticationCapabilitiesNone","features":[158]},{"name":"COMAdminAuthenticationCapabilitiesOptions","features":[158]},{"name":"COMAdminAuthenticationCapabilitiesSecureReference","features":[158]},{"name":"COMAdminAuthenticationCapabilitiesStaticCloaking","features":[158]},{"name":"COMAdminAuthenticationConnect","features":[158]},{"name":"COMAdminAuthenticationDefault","features":[158]},{"name":"COMAdminAuthenticationIntegrity","features":[158]},{"name":"COMAdminAuthenticationLevelOptions","features":[158]},{"name":"COMAdminAuthenticationNone","features":[158]},{"name":"COMAdminAuthenticationPacket","features":[158]},{"name":"COMAdminAuthenticationPrivacy","features":[158]},{"name":"COMAdminCatalog","features":[158]},{"name":"COMAdminCatalogCollection","features":[158]},{"name":"COMAdminCatalogObject","features":[158]},{"name":"COMAdminCompFlagAlreadyInstalled","features":[158]},{"name":"COMAdminCompFlagCOMPlusPropertiesFound","features":[158]},{"name":"COMAdminCompFlagInterfacesFound","features":[158]},{"name":"COMAdminCompFlagNotInApplication","features":[158]},{"name":"COMAdminCompFlagProxyFound","features":[158]},{"name":"COMAdminCompFlagTypeInfoFound","features":[158]},{"name":"COMAdminComponentFlags","features":[158]},{"name":"COMAdminComponentType","features":[158]},{"name":"COMAdminErrAlreadyInstalled","features":[158]},{"name":"COMAdminErrAppDirNotFound","features":[158]},{"name":"COMAdminErrAppFileReadFail","features":[158]},{"name":"COMAdminErrAppFileVersion","features":[158]},{"name":"COMAdminErrAppFileWriteFail","features":[158]},{"name":"COMAdminErrAppNotRunning","features":[158]},{"name":"COMAdminErrApplicationExists","features":[158]},{"name":"COMAdminErrApplidMatchesClsid","features":[158]},{"name":"COMAdminErrAuthenticationLevel","features":[158]},{"name":"COMAdminErrBadPath","features":[158]},{"name":"COMAdminErrBadRegistryLibID","features":[158]},{"name":"COMAdminErrBadRegistryProgID","features":[158]},{"name":"COMAdminErrBasePartitionOnly","features":[158]},{"name":"COMAdminErrCLSIDOrIIDMismatch","features":[158]},{"name":"COMAdminErrCanNotExportAppProxy","features":[158]},{"name":"COMAdminErrCanNotExportSystemApp","features":[158]},{"name":"COMAdminErrCanNotStartApp","features":[158]},{"name":"COMAdminErrCanNotSubscribeToComponent","features":[158]},{"name":"COMAdminErrCannotCopyEventClass","features":[158]},{"name":"COMAdminErrCantCopyFile","features":[158]},{"name":"COMAdminErrCantRecycleLibraryApps","features":[158]},{"name":"COMAdminErrCantRecycleServiceApps","features":[158]},{"name":"COMAdminErrCatBitnessMismatch","features":[158]},{"name":"COMAdminErrCatPauseResumeNotSupported","features":[158]},{"name":"COMAdminErrCatServerFault","features":[158]},{"name":"COMAdminErrCatUnacceptableBitness","features":[158]},{"name":"COMAdminErrCatWrongAppBitnessBitness","features":[158]},{"name":"COMAdminErrCoReqCompInstalled","features":[158]},{"name":"COMAdminErrCompFileBadTLB","features":[158]},{"name":"COMAdminErrCompFileClassNotAvail","features":[158]},{"name":"COMAdminErrCompFileDoesNotExist","features":[158]},{"name":"COMAdminErrCompFileGetClassObj","features":[158]},{"name":"COMAdminErrCompFileLoadDLLFail","features":[158]},{"name":"COMAdminErrCompFileNoRegistrar","features":[158]},{"name":"COMAdminErrCompFileNotInstallable","features":[158]},{"name":"COMAdminErrCompMoveBadDest","features":[158]},{"name":"COMAdminErrCompMoveDest","features":[158]},{"name":"COMAdminErrCompMoveLocked","features":[158]},{"name":"COMAdminErrCompMovePrivate","features":[158]},{"name":"COMAdminErrCompMoveSource","features":[158]},{"name":"COMAdminErrComponentExists","features":[158]},{"name":"COMAdminErrDllLoadFailed","features":[158]},{"name":"COMAdminErrDllRegisterServer","features":[158]},{"name":"COMAdminErrDuplicatePartitionName","features":[158]},{"name":"COMAdminErrEventClassCannotBeSubscriber","features":[158]},{"name":"COMAdminErrImportedComponentsNotAllowed","features":[158]},{"name":"COMAdminErrInvalidPartition","features":[158]},{"name":"COMAdminErrInvalidUserids","features":[158]},{"name":"COMAdminErrKeyMissing","features":[158]},{"name":"COMAdminErrLibAppProxyIncompatible","features":[158]},{"name":"COMAdminErrMigSchemaNotFound","features":[158]},{"name":"COMAdminErrMigVersionNotSupported","features":[158]},{"name":"COMAdminErrNoRegistryCLSID","features":[158]},{"name":"COMAdminErrNoServerShare","features":[158]},{"name":"COMAdminErrNoUser","features":[158]},{"name":"COMAdminErrNotChangeable","features":[158]},{"name":"COMAdminErrNotDeletable","features":[158]},{"name":"COMAdminErrNotInRegistry","features":[158]},{"name":"COMAdminErrObjectDoesNotExist","features":[158]},{"name":"COMAdminErrObjectErrors","features":[158]},{"name":"COMAdminErrObjectExists","features":[158]},{"name":"COMAdminErrObjectInvalid","features":[158]},{"name":"COMAdminErrObjectNotPoolable","features":[158]},{"name":"COMAdminErrObjectParentMissing","features":[158]},{"name":"COMAdminErrPartitionInUse","features":[158]},{"name":"COMAdminErrPartitionMsiOnly","features":[158]},{"name":"COMAdminErrPausedProcessMayNotBeRecycled","features":[158]},{"name":"COMAdminErrProcessAlreadyRecycled","features":[158]},{"name":"COMAdminErrPropertyOverflow","features":[158]},{"name":"COMAdminErrPropertySaveFailed","features":[158]},{"name":"COMAdminErrQueuingServiceNotAvailable","features":[158]},{"name":"COMAdminErrRegFileCorrupt","features":[158]},{"name":"COMAdminErrRegdbAlreadyRunning","features":[158]},{"name":"COMAdminErrRegdbNotInitialized","features":[158]},{"name":"COMAdminErrRegdbNotOpen","features":[158]},{"name":"COMAdminErrRegdbSystemErr","features":[158]},{"name":"COMAdminErrRegisterTLB","features":[158]},{"name":"COMAdminErrRegistrarFailed","features":[158]},{"name":"COMAdminErrRemoteInterface","features":[158]},{"name":"COMAdminErrRequiresDifferentPlatform","features":[158]},{"name":"COMAdminErrRoleDoesNotExist","features":[158]},{"name":"COMAdminErrRoleExists","features":[158]},{"name":"COMAdminErrServiceNotInstalled","features":[158]},{"name":"COMAdminErrSession","features":[158]},{"name":"COMAdminErrStartAppDisabled","features":[158]},{"name":"COMAdminErrStartAppNeedsComponents","features":[158]},{"name":"COMAdminErrSystemApp","features":[158]},{"name":"COMAdminErrUserPasswdNotValid","features":[158]},{"name":"COMAdminErrorCodes","features":[158]},{"name":"COMAdminExportApplicationProxy","features":[158]},{"name":"COMAdminExportForceOverwriteOfFiles","features":[158]},{"name":"COMAdminExportIn10Format","features":[158]},{"name":"COMAdminExportNoUsers","features":[158]},{"name":"COMAdminExportUsers","features":[158]},{"name":"COMAdminFileFlagAlreadyInstalled","features":[158]},{"name":"COMAdminFileFlagBadTLB","features":[158]},{"name":"COMAdminFileFlagCOM","features":[158]},{"name":"COMAdminFileFlagClassNotAvailable","features":[158]},{"name":"COMAdminFileFlagContainsComp","features":[158]},{"name":"COMAdminFileFlagContainsPS","features":[158]},{"name":"COMAdminFileFlagContainsTLB","features":[158]},{"name":"COMAdminFileFlagDLLRegsvrFailed","features":[158]},{"name":"COMAdminFileFlagDoesNotExist","features":[158]},{"name":"COMAdminFileFlagError","features":[158]},{"name":"COMAdminFileFlagGetClassObjFailed","features":[158]},{"name":"COMAdminFileFlagLoadable","features":[158]},{"name":"COMAdminFileFlagNoRegistrar","features":[158]},{"name":"COMAdminFileFlagRegTLBFailed","features":[158]},{"name":"COMAdminFileFlagRegistrar","features":[158]},{"name":"COMAdminFileFlagRegistrarFailed","features":[158]},{"name":"COMAdminFileFlagSelfReg","features":[158]},{"name":"COMAdminFileFlagSelfUnReg","features":[158]},{"name":"COMAdminFileFlagUnloadableDLL","features":[158]},{"name":"COMAdminFileFlags","features":[158]},{"name":"COMAdminImpersonationAnonymous","features":[158]},{"name":"COMAdminImpersonationDelegate","features":[158]},{"name":"COMAdminImpersonationIdentify","features":[158]},{"name":"COMAdminImpersonationImpersonate","features":[158]},{"name":"COMAdminImpersonationLevelOptions","features":[158]},{"name":"COMAdminInUse","features":[158]},{"name":"COMAdminInUseByCatalog","features":[158]},{"name":"COMAdminInUseByRegistryClsid","features":[158]},{"name":"COMAdminInUseByRegistryProxyStub","features":[158]},{"name":"COMAdminInUseByRegistryTypeLib","features":[158]},{"name":"COMAdminInUseByRegistryUnknown","features":[158]},{"name":"COMAdminInstallForceOverwriteOfFiles","features":[158]},{"name":"COMAdminInstallNoUsers","features":[158]},{"name":"COMAdminInstallUsers","features":[158]},{"name":"COMAdminNotInUse","features":[158]},{"name":"COMAdminOS","features":[158]},{"name":"COMAdminOSNotInitialized","features":[158]},{"name":"COMAdminOSUnknown","features":[158]},{"name":"COMAdminOSWindows2000","features":[158]},{"name":"COMAdminOSWindows2000AdvancedServer","features":[158]},{"name":"COMAdminOSWindows2000Unknown","features":[158]},{"name":"COMAdminOSWindows3_1","features":[158]},{"name":"COMAdminOSWindows7DatacenterServer","features":[158]},{"name":"COMAdminOSWindows7EnterpriseServer","features":[158]},{"name":"COMAdminOSWindows7Personal","features":[158]},{"name":"COMAdminOSWindows7Professional","features":[158]},{"name":"COMAdminOSWindows7StandardServer","features":[158]},{"name":"COMAdminOSWindows7WebServer","features":[158]},{"name":"COMAdminOSWindows8DatacenterServer","features":[158]},{"name":"COMAdminOSWindows8EnterpriseServer","features":[158]},{"name":"COMAdminOSWindows8Personal","features":[158]},{"name":"COMAdminOSWindows8Professional","features":[158]},{"name":"COMAdminOSWindows8StandardServer","features":[158]},{"name":"COMAdminOSWindows8WebServer","features":[158]},{"name":"COMAdminOSWindows9x","features":[158]},{"name":"COMAdminOSWindowsBlueDatacenterServer","features":[158]},{"name":"COMAdminOSWindowsBlueEnterpriseServer","features":[158]},{"name":"COMAdminOSWindowsBluePersonal","features":[158]},{"name":"COMAdminOSWindowsBlueProfessional","features":[158]},{"name":"COMAdminOSWindowsBlueStandardServer","features":[158]},{"name":"COMAdminOSWindowsBlueWebServer","features":[158]},{"name":"COMAdminOSWindowsLonghornDatacenterServer","features":[158]},{"name":"COMAdminOSWindowsLonghornEnterpriseServer","features":[158]},{"name":"COMAdminOSWindowsLonghornPersonal","features":[158]},{"name":"COMAdminOSWindowsLonghornProfessional","features":[158]},{"name":"COMAdminOSWindowsLonghornStandardServer","features":[158]},{"name":"COMAdminOSWindowsLonghornWebServer","features":[158]},{"name":"COMAdminOSWindowsNETDatacenterServer","features":[158]},{"name":"COMAdminOSWindowsNETEnterpriseServer","features":[158]},{"name":"COMAdminOSWindowsNETStandardServer","features":[158]},{"name":"COMAdminOSWindowsNETWebServer","features":[158]},{"name":"COMAdminOSWindowsXPPersonal","features":[158]},{"name":"COMAdminOSWindowsXPProfessional","features":[158]},{"name":"COMAdminQCMessageAuthenticateOff","features":[158]},{"name":"COMAdminQCMessageAuthenticateOn","features":[158]},{"name":"COMAdminQCMessageAuthenticateOptions","features":[158]},{"name":"COMAdminQCMessageAuthenticateSecureApps","features":[158]},{"name":"COMAdminServiceContinuePending","features":[158]},{"name":"COMAdminServiceLoadBalanceRouter","features":[158]},{"name":"COMAdminServiceOptions","features":[158]},{"name":"COMAdminServicePausePending","features":[158]},{"name":"COMAdminServicePaused","features":[158]},{"name":"COMAdminServiceRunning","features":[158]},{"name":"COMAdminServiceStartPending","features":[158]},{"name":"COMAdminServiceStatusOptions","features":[158]},{"name":"COMAdminServiceStopPending","features":[158]},{"name":"COMAdminServiceStopped","features":[158]},{"name":"COMAdminServiceUnknownState","features":[158]},{"name":"COMAdminSynchronizationIgnored","features":[158]},{"name":"COMAdminSynchronizationNone","features":[158]},{"name":"COMAdminSynchronizationOptions","features":[158]},{"name":"COMAdminSynchronizationRequired","features":[158]},{"name":"COMAdminSynchronizationRequiresNew","features":[158]},{"name":"COMAdminSynchronizationSupported","features":[158]},{"name":"COMAdminThreadingModelApartment","features":[158]},{"name":"COMAdminThreadingModelBoth","features":[158]},{"name":"COMAdminThreadingModelFree","features":[158]},{"name":"COMAdminThreadingModelMain","features":[158]},{"name":"COMAdminThreadingModelNeutral","features":[158]},{"name":"COMAdminThreadingModelNotSpecified","features":[158]},{"name":"COMAdminThreadingModels","features":[158]},{"name":"COMAdminTransactionIgnored","features":[158]},{"name":"COMAdminTransactionNone","features":[158]},{"name":"COMAdminTransactionOptions","features":[158]},{"name":"COMAdminTransactionRequired","features":[158]},{"name":"COMAdminTransactionRequiresNew","features":[158]},{"name":"COMAdminTransactionSupported","features":[158]},{"name":"COMAdminTxIsolationLevelAny","features":[158]},{"name":"COMAdminTxIsolationLevelOptions","features":[158]},{"name":"COMAdminTxIsolationLevelReadCommitted","features":[158]},{"name":"COMAdminTxIsolationLevelReadUnCommitted","features":[158]},{"name":"COMAdminTxIsolationLevelRepeatableRead","features":[158]},{"name":"COMAdminTxIsolationLevelSerializable","features":[158]},{"name":"COMEvents","features":[158]},{"name":"COMPLUS_APPTYPE","features":[158]},{"name":"COMSVCSEVENTINFO","features":[158]},{"name":"CRMClerk","features":[158]},{"name":"CRMFLAGS","features":[158]},{"name":"CRMFLAG_FORGETTARGET","features":[158]},{"name":"CRMFLAG_REPLAYINPROGRESS","features":[158]},{"name":"CRMFLAG_WRITTENDURINGABORT","features":[158]},{"name":"CRMFLAG_WRITTENDURINGCOMMIT","features":[158]},{"name":"CRMFLAG_WRITTENDURINGPREPARE","features":[158]},{"name":"CRMFLAG_WRITTENDURINGRECOVERY","features":[158]},{"name":"CRMFLAG_WRITTENDURINGREPLAY","features":[158]},{"name":"CRMREGFLAGS","features":[158]},{"name":"CRMREGFLAG_ABORTPHASE","features":[158]},{"name":"CRMREGFLAG_ALLPHASES","features":[158]},{"name":"CRMREGFLAG_COMMITPHASE","features":[158]},{"name":"CRMREGFLAG_FAILIFINDOUBTSREMAIN","features":[158]},{"name":"CRMREGFLAG_PREPAREPHASE","features":[158]},{"name":"CRMRecoveryClerk","features":[158]},{"name":"CRR_ACTIVATION_LIMIT","features":[158]},{"name":"CRR_CALL_LIMIT","features":[158]},{"name":"CRR_LIFETIME_LIMIT","features":[158]},{"name":"CRR_MEMORY_LIMIT","features":[158]},{"name":"CRR_NO_REASON_SUPPLIED","features":[158]},{"name":"CRR_RECYCLED_FROM_UI","features":[158]},{"name":"CSC_BindToPoolThread","features":[158]},{"name":"CSC_Binding","features":[158]},{"name":"CSC_COMTIIntrinsicsConfig","features":[158]},{"name":"CSC_CreateTransactionIfNecessary","features":[158]},{"name":"CSC_DontUseTracker","features":[158]},{"name":"CSC_IISIntrinsicsConfig","features":[158]},{"name":"CSC_IfContainerIsSynchronized","features":[158]},{"name":"CSC_IfContainerIsTransactional","features":[158]},{"name":"CSC_Ignore","features":[158]},{"name":"CSC_Inherit","features":[158]},{"name":"CSC_InheritCOMTIIntrinsics","features":[158]},{"name":"CSC_InheritIISIntrinsics","features":[158]},{"name":"CSC_InheritPartition","features":[158]},{"name":"CSC_InheritSxs","features":[158]},{"name":"CSC_InheritanceConfig","features":[158]},{"name":"CSC_MTAThreadPool","features":[158]},{"name":"CSC_NewPartition","features":[158]},{"name":"CSC_NewSxs","features":[158]},{"name":"CSC_NewSynchronization","features":[158]},{"name":"CSC_NewSynchronizationIfNecessary","features":[158]},{"name":"CSC_NewTransaction","features":[158]},{"name":"CSC_NoBinding","features":[158]},{"name":"CSC_NoCOMTIIntrinsics","features":[158]},{"name":"CSC_NoIISIntrinsics","features":[158]},{"name":"CSC_NoPartition","features":[158]},{"name":"CSC_NoSxs","features":[158]},{"name":"CSC_NoSynchronization","features":[158]},{"name":"CSC_NoTransaction","features":[158]},{"name":"CSC_PartitionConfig","features":[158]},{"name":"CSC_STAThreadPool","features":[158]},{"name":"CSC_SxsConfig","features":[158]},{"name":"CSC_SynchronizationConfig","features":[158]},{"name":"CSC_ThreadPool","features":[158]},{"name":"CSC_ThreadPoolInherit","features":[158]},{"name":"CSC_ThreadPoolNone","features":[158]},{"name":"CSC_TrackerConfig","features":[158]},{"name":"CSC_TransactionConfig","features":[158]},{"name":"CSC_UseTracker","features":[158]},{"name":"CServiceConfig","features":[158]},{"name":"ClrAssemblyLocator","features":[158]},{"name":"CoCreateActivity","features":[158]},{"name":"CoEnterServiceDomain","features":[158]},{"name":"CoGetDefaultContext","features":[41,158]},{"name":"CoLeaveServiceDomain","features":[158]},{"name":"CoMTSLocator","features":[158]},{"name":"ComServiceEvents","features":[158]},{"name":"ComSystemAppEventData","features":[158]},{"name":"ComponentHangMonitorInfo","features":[1,158]},{"name":"ComponentStatistics","features":[158]},{"name":"ComponentSummary","features":[158]},{"name":"ContextInfo","features":[158]},{"name":"ContextInfo2","features":[158]},{"name":"CrmLogRecordRead","features":[41,158]},{"name":"CrmTransactionState","features":[158]},{"name":"DATA_NOT_AVAILABLE","features":[158]},{"name":"DUMPTYPE","features":[158]},{"name":"DUMPTYPE_FULL","features":[158]},{"name":"DUMPTYPE_MINI","features":[158]},{"name":"DUMPTYPE_NONE","features":[158]},{"name":"DispenserManager","features":[158]},{"name":"Dummy30040732","features":[158]},{"name":"EventServer","features":[158]},{"name":"GATD_INCLUDE_APPLICATION_NAME","features":[158]},{"name":"GATD_INCLUDE_CLASS_NAME","features":[158]},{"name":"GATD_INCLUDE_LIBRARY_APPS","features":[158]},{"name":"GATD_INCLUDE_PROCESS_EXE_NAME","features":[158]},{"name":"GATD_INCLUDE_SWC","features":[158]},{"name":"GUID_STRING_SIZE","features":[158]},{"name":"GetAppTrackerDataFlags","features":[158]},{"name":"GetDispenserManager","features":[158]},{"name":"GetManagedExtensions","features":[158]},{"name":"GetSecurityCallContextAppObject","features":[158]},{"name":"HANG_INFO","features":[1,158]},{"name":"IAppDomainHelper","features":[158]},{"name":"IAssemblyLocator","features":[158]},{"name":"IAsyncErrorNotify","features":[158]},{"name":"ICOMAdminCatalog","features":[158]},{"name":"ICOMAdminCatalog2","features":[158]},{"name":"ICOMLBArguments","features":[158]},{"name":"ICatalogCollection","features":[158]},{"name":"ICatalogObject","features":[158]},{"name":"ICheckSxsConfig","features":[158]},{"name":"IComActivityEvents","features":[158]},{"name":"IComApp2Events","features":[158]},{"name":"IComAppEvents","features":[158]},{"name":"IComCRMEvents","features":[158]},{"name":"IComExceptionEvents","features":[158]},{"name":"IComIdentityEvents","features":[158]},{"name":"IComInstance2Events","features":[158]},{"name":"IComInstanceEvents","features":[158]},{"name":"IComLTxEvents","features":[158]},{"name":"IComMethod2Events","features":[158]},{"name":"IComMethodEvents","features":[158]},{"name":"IComMtaThreadPoolKnobs","features":[158]},{"name":"IComObjectConstruction2Events","features":[158]},{"name":"IComObjectConstructionEvents","features":[158]},{"name":"IComObjectEvents","features":[158]},{"name":"IComObjectPool2Events","features":[158]},{"name":"IComObjectPoolEvents","features":[158]},{"name":"IComObjectPoolEvents2","features":[158]},{"name":"IComQCEvents","features":[158]},{"name":"IComResourceEvents","features":[158]},{"name":"IComSecurityEvents","features":[158]},{"name":"IComStaThreadPoolKnobs","features":[158]},{"name":"IComStaThreadPoolKnobs2","features":[158]},{"name":"IComThreadEvents","features":[158]},{"name":"IComTrackingInfoCollection","features":[158]},{"name":"IComTrackingInfoEvents","features":[158]},{"name":"IComTrackingInfoObject","features":[158]},{"name":"IComTrackingInfoProperties","features":[158]},{"name":"IComTransaction2Events","features":[158]},{"name":"IComTransactionEvents","features":[158]},{"name":"IComUserEvent","features":[158]},{"name":"IContextProperties","features":[158]},{"name":"IContextSecurityPerimeter","features":[158]},{"name":"IContextState","features":[158]},{"name":"ICreateWithLocalTransaction","features":[158]},{"name":"ICreateWithTipTransactionEx","features":[158]},{"name":"ICreateWithTransactionEx","features":[158]},{"name":"ICrmCompensator","features":[158]},{"name":"ICrmCompensatorVariants","features":[158]},{"name":"ICrmFormatLogRecords","features":[158]},{"name":"ICrmLogControl","features":[158]},{"name":"ICrmMonitor","features":[158]},{"name":"ICrmMonitorClerks","features":[158]},{"name":"ICrmMonitorLogRecords","features":[158]},{"name":"IDispenserDriver","features":[158]},{"name":"IDispenserManager","features":[158]},{"name":"IEnumNames","features":[158]},{"name":"IEventServerTrace","features":[158]},{"name":"IGetAppTrackerData","features":[158]},{"name":"IGetContextProperties","features":[158]},{"name":"IGetSecurityCallContext","features":[158]},{"name":"IHolder","features":[158]},{"name":"ILBEvents","features":[158]},{"name":"IMTSActivity","features":[158]},{"name":"IMTSCall","features":[158]},{"name":"IMTSLocator","features":[158]},{"name":"IManagedActivationEvents","features":[158]},{"name":"IManagedObjectInfo","features":[158]},{"name":"IManagedPoolAction","features":[158]},{"name":"IManagedPooledObj","features":[158]},{"name":"IMessageMover","features":[158]},{"name":"IMtsEventInfo","features":[158]},{"name":"IMtsEvents","features":[158]},{"name":"IMtsGrp","features":[158]},{"name":"IObjPool","features":[158]},{"name":"IObjectConstruct","features":[158]},{"name":"IObjectConstructString","features":[158]},{"name":"IObjectContext","features":[158]},{"name":"IObjectContextActivity","features":[158]},{"name":"IObjectContextInfo","features":[158]},{"name":"IObjectContextInfo2","features":[158]},{"name":"IObjectContextTip","features":[158]},{"name":"IObjectControl","features":[158]},{"name":"IPlaybackControl","features":[158]},{"name":"IPoolManager","features":[158]},{"name":"IProcessInitializer","features":[158]},{"name":"ISecurityCallContext","features":[158]},{"name":"ISecurityCallersColl","features":[158]},{"name":"ISecurityIdentityColl","features":[158]},{"name":"ISecurityProperty","features":[158]},{"name":"ISelectCOMLBServer","features":[158]},{"name":"ISendMethodEvents","features":[158]},{"name":"IServiceActivity","features":[158]},{"name":"IServiceCall","features":[158]},{"name":"IServiceComTIIntrinsicsConfig","features":[158]},{"name":"IServiceIISIntrinsicsConfig","features":[158]},{"name":"IServiceInheritanceConfig","features":[158]},{"name":"IServicePartitionConfig","features":[158]},{"name":"IServicePool","features":[158]},{"name":"IServicePoolConfig","features":[158]},{"name":"IServiceSxsConfig","features":[158]},{"name":"IServiceSynchronizationConfig","features":[158]},{"name":"IServiceSysTxnConfig","features":[158]},{"name":"IServiceThreadPoolConfig","features":[158]},{"name":"IServiceTrackerConfig","features":[158]},{"name":"IServiceTransactionConfig","features":[158]},{"name":"IServiceTransactionConfigBase","features":[158]},{"name":"ISharedProperty","features":[158]},{"name":"ISharedPropertyGroup","features":[158]},{"name":"ISharedPropertyGroupManager","features":[158]},{"name":"ISystemAppEventData","features":[158]},{"name":"IThreadPoolKnobs","features":[158]},{"name":"ITransactionContext","features":[158]},{"name":"ITransactionContextEx","features":[158]},{"name":"ITransactionProperty","features":[158]},{"name":"ITransactionProxy","features":[158]},{"name":"ITransactionResourcePool","features":[158]},{"name":"ITransactionStatus","features":[158]},{"name":"ITxProxyHolder","features":[158]},{"name":"LBEvents","features":[158]},{"name":"LockMethod","features":[158]},{"name":"LockModes","features":[158]},{"name":"LockSetGet","features":[158]},{"name":"MTSCreateActivity","features":[158]},{"name":"MTXDM_E_ENLISTRESOURCEFAILED","features":[158]},{"name":"MessageMover","features":[158]},{"name":"MtsGrp","features":[158]},{"name":"ObjectContext","features":[158]},{"name":"ObjectControl","features":[158]},{"name":"PoolMgr","features":[158]},{"name":"Process","features":[158]},{"name":"RECYCLE_INFO","features":[158]},{"name":"RecycleSurrogate","features":[158]},{"name":"ReleaseModes","features":[158]},{"name":"SafeRef","features":[158]},{"name":"SecurityCallContext","features":[158]},{"name":"SecurityCallers","features":[158]},{"name":"SecurityIdentity","features":[158]},{"name":"SecurityProperty","features":[158]},{"name":"ServicePool","features":[158]},{"name":"ServicePoolConfig","features":[158]},{"name":"SharedProperty","features":[158]},{"name":"SharedPropertyGroup","features":[158]},{"name":"SharedPropertyGroupManager","features":[158]},{"name":"Standard","features":[158]},{"name":"TRACKER_INIT_EVENT","features":[158]},{"name":"TRACKER_STARTSTOP_EVENT","features":[158]},{"name":"TRACKING_COLL_TYPE","features":[158]},{"name":"TRKCOLL_APPLICATIONS","features":[158]},{"name":"TRKCOLL_COMPONENTS","features":[158]},{"name":"TRKCOLL_PROCESSES","features":[158]},{"name":"TrackerServer","features":[158]},{"name":"TransactionContext","features":[158]},{"name":"TransactionContextEx","features":[158]},{"name":"TransactionVote","features":[158]},{"name":"TxAbort","features":[158]},{"name":"TxCommit","features":[158]},{"name":"TxState_Aborted","features":[158]},{"name":"TxState_Active","features":[158]},{"name":"TxState_Committed","features":[158]},{"name":"TxState_Indoubt","features":[158]},{"name":"comQCErrApplicationNotQueued","features":[158]},{"name":"comQCErrNoQueueableInterfaces","features":[158]},{"name":"comQCErrQueueTransactMismatch","features":[158]},{"name":"comQCErrQueuingServiceNotAvailable","features":[158]},{"name":"comqcErrBadMarshaledObject","features":[158]},{"name":"comqcErrInvalidMessage","features":[158]},{"name":"comqcErrMarshaledObjSameTxn","features":[158]},{"name":"comqcErrMsgNotAuthenticated","features":[158]},{"name":"comqcErrMsmqConnectorUsed","features":[158]},{"name":"comqcErrMsmqServiceUnavailable","features":[158]},{"name":"comqcErrMsmqSidUnavailable","features":[158]},{"name":"comqcErrOutParam","features":[158]},{"name":"comqcErrPSLoad","features":[158]},{"name":"comqcErrRecorderMarshalled","features":[158]},{"name":"comqcErrRecorderNotTrusted","features":[158]},{"name":"comqcErrWrongMsgExtension","features":[158]},{"name":"mtsErrCtxAborted","features":[158]},{"name":"mtsErrCtxAborting","features":[158]},{"name":"mtsErrCtxNoContext","features":[158]},{"name":"mtsErrCtxNoSecurity","features":[158]},{"name":"mtsErrCtxNotRegistered","features":[158]},{"name":"mtsErrCtxOldReference","features":[158]},{"name":"mtsErrCtxRoleNotFound","features":[158]},{"name":"mtsErrCtxSynchTimeout","features":[158]},{"name":"mtsErrCtxTMNotAvailable","features":[158]},{"name":"mtsErrCtxWrongThread","features":[158]}],"543":[{"name":"ALTNUMPAD_BIT","features":[53]},{"name":"ATTACH_PARENT_PROCESS","features":[53]},{"name":"AddConsoleAliasA","features":[1,53]},{"name":"AddConsoleAliasW","features":[1,53]},{"name":"AllocConsole","features":[1,53]},{"name":"AttachConsole","features":[1,53]},{"name":"BACKGROUND_BLUE","features":[53]},{"name":"BACKGROUND_GREEN","features":[53]},{"name":"BACKGROUND_INTENSITY","features":[53]},{"name":"BACKGROUND_RED","features":[53]},{"name":"CAPSLOCK_ON","features":[53]},{"name":"CHAR_INFO","features":[53]},{"name":"COMMON_LVB_GRID_HORIZONTAL","features":[53]},{"name":"COMMON_LVB_GRID_LVERTICAL","features":[53]},{"name":"COMMON_LVB_GRID_RVERTICAL","features":[53]},{"name":"COMMON_LVB_LEADING_BYTE","features":[53]},{"name":"COMMON_LVB_REVERSE_VIDEO","features":[53]},{"name":"COMMON_LVB_SBCSDBCS","features":[53]},{"name":"COMMON_LVB_TRAILING_BYTE","features":[53]},{"name":"COMMON_LVB_UNDERSCORE","features":[53]},{"name":"CONSOLECONTROL","features":[53]},{"name":"CONSOLEENDTASK","features":[1,53]},{"name":"CONSOLESETFOREGROUND","features":[1,53]},{"name":"CONSOLEWINDOWOWNER","features":[1,53]},{"name":"CONSOLE_CARET_INFO","features":[1,53]},{"name":"CONSOLE_CHARACTER_ATTRIBUTES","features":[53]},{"name":"CONSOLE_CURSOR_INFO","features":[1,53]},{"name":"CONSOLE_FONT_INFO","features":[53]},{"name":"CONSOLE_FONT_INFOEX","features":[53]},{"name":"CONSOLE_FULLSCREEN","features":[53]},{"name":"CONSOLE_FULLSCREEN_HARDWARE","features":[53]},{"name":"CONSOLE_FULLSCREEN_MODE","features":[53]},{"name":"CONSOLE_HISTORY_INFO","features":[53]},{"name":"CONSOLE_MODE","features":[53]},{"name":"CONSOLE_MOUSE_DOWN","features":[53]},{"name":"CONSOLE_MOUSE_SELECTION","features":[53]},{"name":"CONSOLE_NO_SELECTION","features":[53]},{"name":"CONSOLE_PROCESS_INFO","features":[53]},{"name":"CONSOLE_READCONSOLE_CONTROL","features":[53]},{"name":"CONSOLE_SCREEN_BUFFER_INFO","features":[53]},{"name":"CONSOLE_SCREEN_BUFFER_INFOEX","features":[1,53]},{"name":"CONSOLE_SELECTION_INFO","features":[53]},{"name":"CONSOLE_SELECTION_IN_PROGRESS","features":[53]},{"name":"CONSOLE_SELECTION_NOT_EMPTY","features":[53]},{"name":"CONSOLE_TEXTMODE_BUFFER","features":[53]},{"name":"CONSOLE_WINDOWED_MODE","features":[53]},{"name":"COORD","features":[53]},{"name":"CTRL_BREAK_EVENT","features":[53]},{"name":"CTRL_CLOSE_EVENT","features":[53]},{"name":"CTRL_C_EVENT","features":[53]},{"name":"CTRL_LOGOFF_EVENT","features":[53]},{"name":"CTRL_SHUTDOWN_EVENT","features":[53]},{"name":"ClosePseudoConsole","features":[53]},{"name":"ConsoleControl","features":[1,53]},{"name":"ConsoleEndTask","features":[53]},{"name":"ConsoleNotifyConsoleApplication","features":[53]},{"name":"ConsoleSetCaretInfo","features":[53]},{"name":"ConsoleSetForeground","features":[53]},{"name":"ConsoleSetWindowOwner","features":[53]},{"name":"CreateConsoleScreenBuffer","features":[1,4,53]},{"name":"CreatePseudoConsole","features":[1,53]},{"name":"DISABLE_NEWLINE_AUTO_RETURN","features":[53]},{"name":"DOUBLE_CLICK","features":[53]},{"name":"ENABLE_AUTO_POSITION","features":[53]},{"name":"ENABLE_ECHO_INPUT","features":[53]},{"name":"ENABLE_EXTENDED_FLAGS","features":[53]},{"name":"ENABLE_INSERT_MODE","features":[53]},{"name":"ENABLE_LINE_INPUT","features":[53]},{"name":"ENABLE_LVB_GRID_WORLDWIDE","features":[53]},{"name":"ENABLE_MOUSE_INPUT","features":[53]},{"name":"ENABLE_PROCESSED_INPUT","features":[53]},{"name":"ENABLE_PROCESSED_OUTPUT","features":[53]},{"name":"ENABLE_QUICK_EDIT_MODE","features":[53]},{"name":"ENABLE_VIRTUAL_TERMINAL_INPUT","features":[53]},{"name":"ENABLE_VIRTUAL_TERMINAL_PROCESSING","features":[53]},{"name":"ENABLE_WINDOW_INPUT","features":[53]},{"name":"ENABLE_WRAP_AT_EOL_OUTPUT","features":[53]},{"name":"ENHANCED_KEY","features":[53]},{"name":"ExpungeConsoleCommandHistoryA","features":[53]},{"name":"ExpungeConsoleCommandHistoryW","features":[53]},{"name":"FOCUS_EVENT","features":[53]},{"name":"FOCUS_EVENT_RECORD","features":[1,53]},{"name":"FOREGROUND_BLUE","features":[53]},{"name":"FOREGROUND_GREEN","features":[53]},{"name":"FOREGROUND_INTENSITY","features":[53]},{"name":"FOREGROUND_RED","features":[53]},{"name":"FROM_LEFT_1ST_BUTTON_PRESSED","features":[53]},{"name":"FROM_LEFT_2ND_BUTTON_PRESSED","features":[53]},{"name":"FROM_LEFT_3RD_BUTTON_PRESSED","features":[53]},{"name":"FROM_LEFT_4TH_BUTTON_PRESSED","features":[53]},{"name":"FillConsoleOutputAttribute","features":[1,53]},{"name":"FillConsoleOutputCharacterA","features":[1,53]},{"name":"FillConsoleOutputCharacterW","features":[1,53]},{"name":"FlushConsoleInputBuffer","features":[1,53]},{"name":"FreeConsole","features":[1,53]},{"name":"GenerateConsoleCtrlEvent","features":[1,53]},{"name":"GetConsoleAliasA","features":[53]},{"name":"GetConsoleAliasExesA","features":[53]},{"name":"GetConsoleAliasExesLengthA","features":[53]},{"name":"GetConsoleAliasExesLengthW","features":[53]},{"name":"GetConsoleAliasExesW","features":[53]},{"name":"GetConsoleAliasW","features":[53]},{"name":"GetConsoleAliasesA","features":[53]},{"name":"GetConsoleAliasesLengthA","features":[53]},{"name":"GetConsoleAliasesLengthW","features":[53]},{"name":"GetConsoleAliasesW","features":[53]},{"name":"GetConsoleCP","features":[53]},{"name":"GetConsoleCommandHistoryA","features":[53]},{"name":"GetConsoleCommandHistoryLengthA","features":[53]},{"name":"GetConsoleCommandHistoryLengthW","features":[53]},{"name":"GetConsoleCommandHistoryW","features":[53]},{"name":"GetConsoleCursorInfo","features":[1,53]},{"name":"GetConsoleDisplayMode","features":[1,53]},{"name":"GetConsoleFontSize","features":[1,53]},{"name":"GetConsoleHistoryInfo","features":[1,53]},{"name":"GetConsoleMode","features":[1,53]},{"name":"GetConsoleOriginalTitleA","features":[53]},{"name":"GetConsoleOriginalTitleW","features":[53]},{"name":"GetConsoleOutputCP","features":[53]},{"name":"GetConsoleProcessList","features":[53]},{"name":"GetConsoleScreenBufferInfo","features":[1,53]},{"name":"GetConsoleScreenBufferInfoEx","features":[1,53]},{"name":"GetConsoleSelectionInfo","features":[1,53]},{"name":"GetConsoleTitleA","features":[53]},{"name":"GetConsoleTitleW","features":[53]},{"name":"GetConsoleWindow","features":[1,53]},{"name":"GetCurrentConsoleFont","features":[1,53]},{"name":"GetCurrentConsoleFontEx","features":[1,53]},{"name":"GetLargestConsoleWindowSize","features":[1,53]},{"name":"GetNumberOfConsoleInputEvents","features":[1,53]},{"name":"GetNumberOfConsoleMouseButtons","features":[1,53]},{"name":"GetStdHandle","features":[1,53]},{"name":"HISTORY_NO_DUP_FLAG","features":[53]},{"name":"HPCON","features":[53]},{"name":"INPUT_RECORD","features":[1,53]},{"name":"KEY_EVENT","features":[53]},{"name":"KEY_EVENT_RECORD","features":[1,53]},{"name":"LEFT_ALT_PRESSED","features":[53]},{"name":"LEFT_CTRL_PRESSED","features":[53]},{"name":"MENU_EVENT","features":[53]},{"name":"MENU_EVENT_RECORD","features":[53]},{"name":"MOUSE_EVENT","features":[53]},{"name":"MOUSE_EVENT_RECORD","features":[53]},{"name":"MOUSE_HWHEELED","features":[53]},{"name":"MOUSE_MOVED","features":[53]},{"name":"MOUSE_WHEELED","features":[53]},{"name":"NLS_ALPHANUMERIC","features":[53]},{"name":"NLS_DBCSCHAR","features":[53]},{"name":"NLS_HIRAGANA","features":[53]},{"name":"NLS_IME_CONVERSION","features":[53]},{"name":"NLS_IME_DISABLE","features":[53]},{"name":"NLS_KATAKANA","features":[53]},{"name":"NLS_ROMAN","features":[53]},{"name":"NUMLOCK_ON","features":[53]},{"name":"PHANDLER_ROUTINE","features":[1,53]},{"name":"PSEUDOCONSOLE_INHERIT_CURSOR","features":[53]},{"name":"PeekConsoleInputA","features":[1,53]},{"name":"PeekConsoleInputW","features":[1,53]},{"name":"RIGHTMOST_BUTTON_PRESSED","features":[53]},{"name":"RIGHT_ALT_PRESSED","features":[53]},{"name":"RIGHT_CTRL_PRESSED","features":[53]},{"name":"ReadConsoleA","features":[1,53]},{"name":"ReadConsoleInputA","features":[1,53]},{"name":"ReadConsoleInputW","features":[1,53]},{"name":"ReadConsoleOutputA","features":[1,53]},{"name":"ReadConsoleOutputAttribute","features":[1,53]},{"name":"ReadConsoleOutputCharacterA","features":[1,53]},{"name":"ReadConsoleOutputCharacterW","features":[1,53]},{"name":"ReadConsoleOutputW","features":[1,53]},{"name":"ReadConsoleW","features":[1,53]},{"name":"Reserved1","features":[53]},{"name":"Reserved2","features":[53]},{"name":"Reserved3","features":[53]},{"name":"ResizePseudoConsole","features":[53]},{"name":"SCROLLLOCK_ON","features":[53]},{"name":"SHIFT_PRESSED","features":[53]},{"name":"SMALL_RECT","features":[53]},{"name":"STD_ERROR_HANDLE","features":[53]},{"name":"STD_HANDLE","features":[53]},{"name":"STD_INPUT_HANDLE","features":[53]},{"name":"STD_OUTPUT_HANDLE","features":[53]},{"name":"ScrollConsoleScreenBufferA","features":[1,53]},{"name":"ScrollConsoleScreenBufferW","features":[1,53]},{"name":"SetConsoleActiveScreenBuffer","features":[1,53]},{"name":"SetConsoleCP","features":[1,53]},{"name":"SetConsoleCtrlHandler","features":[1,53]},{"name":"SetConsoleCursorInfo","features":[1,53]},{"name":"SetConsoleCursorPosition","features":[1,53]},{"name":"SetConsoleDisplayMode","features":[1,53]},{"name":"SetConsoleHistoryInfo","features":[1,53]},{"name":"SetConsoleMode","features":[1,53]},{"name":"SetConsoleNumberOfCommandsA","features":[1,53]},{"name":"SetConsoleNumberOfCommandsW","features":[1,53]},{"name":"SetConsoleOutputCP","features":[1,53]},{"name":"SetConsoleScreenBufferInfoEx","features":[1,53]},{"name":"SetConsoleScreenBufferSize","features":[1,53]},{"name":"SetConsoleTextAttribute","features":[1,53]},{"name":"SetConsoleTitleA","features":[1,53]},{"name":"SetConsoleTitleW","features":[1,53]},{"name":"SetConsoleWindowInfo","features":[1,53]},{"name":"SetCurrentConsoleFontEx","features":[1,53]},{"name":"SetStdHandle","features":[1,53]},{"name":"SetStdHandleEx","features":[1,53]},{"name":"WINDOW_BUFFER_SIZE_EVENT","features":[53]},{"name":"WINDOW_BUFFER_SIZE_RECORD","features":[53]},{"name":"WriteConsoleA","features":[1,53]},{"name":"WriteConsoleInputA","features":[1,53]},{"name":"WriteConsoleInputW","features":[1,53]},{"name":"WriteConsoleOutputA","features":[1,53]},{"name":"WriteConsoleOutputAttribute","features":[1,53]},{"name":"WriteConsoleOutputCharacterA","features":[1,53]},{"name":"WriteConsoleOutputCharacterW","features":[1,53]},{"name":"WriteConsoleOutputW","features":[1,53]},{"name":"WriteConsoleW","features":[1,53]}],"545":[{"name":"CORRELATION_VECTOR","features":[137]},{"name":"RTL_CORRELATION_VECTOR_STRING_LENGTH","features":[137]},{"name":"RTL_CORRELATION_VECTOR_V1_LENGTH","features":[137]},{"name":"RTL_CORRELATION_VECTOR_V1_PREFIX_LENGTH","features":[137]},{"name":"RTL_CORRELATION_VECTOR_V2_LENGTH","features":[137]},{"name":"RTL_CORRELATION_VECTOR_V2_PREFIX_LENGTH","features":[137]},{"name":"RtlExtendCorrelationVector","features":[137]},{"name":"RtlIncrementCorrelationVector","features":[137]},{"name":"RtlInitializeCorrelationVector","features":[137]},{"name":"RtlValidateCorrelationVector","features":[137]}],"546":[{"name":"APPCLASS_MASK","features":[159]},{"name":"APPCLASS_MONITOR","features":[159]},{"name":"APPCLASS_STANDARD","features":[159]},{"name":"APPCMD_CLIENTONLY","features":[159]},{"name":"APPCMD_FILTERINITS","features":[159]},{"name":"APPCMD_MASK","features":[159]},{"name":"AddAtomA","features":[159]},{"name":"AddAtomW","features":[159]},{"name":"AddClipboardFormatListener","features":[1,159]},{"name":"CADV_LATEACK","features":[159]},{"name":"CBF_FAIL_ADVISES","features":[159]},{"name":"CBF_FAIL_ALLSVRXACTIONS","features":[159]},{"name":"CBF_FAIL_CONNECTIONS","features":[159]},{"name":"CBF_FAIL_EXECUTES","features":[159]},{"name":"CBF_FAIL_POKES","features":[159]},{"name":"CBF_FAIL_REQUESTS","features":[159]},{"name":"CBF_FAIL_SELFCONNECTIONS","features":[159]},{"name":"CBF_SKIP_ALLNOTIFICATIONS","features":[159]},{"name":"CBF_SKIP_CONNECT_CONFIRMS","features":[159]},{"name":"CBF_SKIP_DISCONNECTS","features":[159]},{"name":"CBF_SKIP_REGISTRATIONS","features":[159]},{"name":"CBF_SKIP_UNREGISTRATIONS","features":[159]},{"name":"CONVCONTEXT","features":[1,4,159]},{"name":"CONVINFO","features":[1,4,159]},{"name":"CONVINFO_CONVERSATION_STATE","features":[159]},{"name":"CONVINFO_STATUS","features":[159]},{"name":"COPYDATASTRUCT","features":[159]},{"name":"CP_WINANSI","features":[159]},{"name":"CP_WINNEUTRAL","features":[159]},{"name":"CP_WINUNICODE","features":[159]},{"name":"ChangeClipboardChain","features":[1,159]},{"name":"CloseClipboard","features":[1,159]},{"name":"CountClipboardFormats","features":[159]},{"name":"DDEACK","features":[159]},{"name":"DDEADVISE","features":[159]},{"name":"DDEDATA","features":[159]},{"name":"DDELN","features":[159]},{"name":"DDEML_MSG_HOOK_DATA","features":[159]},{"name":"DDEPOKE","features":[159]},{"name":"DDEUP","features":[159]},{"name":"DDE_CLIENT_TRANSACTION_TYPE","features":[159]},{"name":"DDE_ENABLE_CALLBACK_CMD","features":[159]},{"name":"DDE_FACK","features":[159]},{"name":"DDE_FACKREQ","features":[159]},{"name":"DDE_FAPPSTATUS","features":[159]},{"name":"DDE_FBUSY","features":[159]},{"name":"DDE_FDEFERUPD","features":[159]},{"name":"DDE_FNOTPROCESSED","features":[159]},{"name":"DDE_FRELEASE","features":[159]},{"name":"DDE_FREQUESTED","features":[159]},{"name":"DDE_INITIALIZE_COMMAND","features":[159]},{"name":"DDE_NAME_SERVICE_CMD","features":[159]},{"name":"DMLERR_ADVACKTIMEOUT","features":[159]},{"name":"DMLERR_BUSY","features":[159]},{"name":"DMLERR_DATAACKTIMEOUT","features":[159]},{"name":"DMLERR_DLL_NOT_INITIALIZED","features":[159]},{"name":"DMLERR_DLL_USAGE","features":[159]},{"name":"DMLERR_EXECACKTIMEOUT","features":[159]},{"name":"DMLERR_FIRST","features":[159]},{"name":"DMLERR_INVALIDPARAMETER","features":[159]},{"name":"DMLERR_LAST","features":[159]},{"name":"DMLERR_LOW_MEMORY","features":[159]},{"name":"DMLERR_MEMORY_ERROR","features":[159]},{"name":"DMLERR_NOTPROCESSED","features":[159]},{"name":"DMLERR_NO_CONV_ESTABLISHED","features":[159]},{"name":"DMLERR_NO_ERROR","features":[159]},{"name":"DMLERR_POKEACKTIMEOUT","features":[159]},{"name":"DMLERR_POSTMSG_FAILED","features":[159]},{"name":"DMLERR_REENTRANCY","features":[159]},{"name":"DMLERR_SERVER_DIED","features":[159]},{"name":"DMLERR_SYS_ERROR","features":[159]},{"name":"DMLERR_UNADVACKTIMEOUT","features":[159]},{"name":"DMLERR_UNFOUND_QUEUE_ID","features":[159]},{"name":"DNS_FILTEROFF","features":[159]},{"name":"DNS_FILTERON","features":[159]},{"name":"DNS_REGISTER","features":[159]},{"name":"DNS_UNREGISTER","features":[159]},{"name":"DdeAbandonTransaction","features":[1,159]},{"name":"DdeAccessData","features":[159]},{"name":"DdeAddData","features":[159]},{"name":"DdeClientTransaction","features":[159]},{"name":"DdeCmpStringHandles","features":[159]},{"name":"DdeConnect","features":[1,4,159]},{"name":"DdeConnectList","features":[1,4,159]},{"name":"DdeCreateDataHandle","features":[159]},{"name":"DdeCreateStringHandleA","features":[159]},{"name":"DdeCreateStringHandleW","features":[159]},{"name":"DdeDisconnect","features":[1,159]},{"name":"DdeDisconnectList","features":[1,159]},{"name":"DdeEnableCallback","features":[1,159]},{"name":"DdeFreeDataHandle","features":[1,159]},{"name":"DdeFreeStringHandle","features":[1,159]},{"name":"DdeGetData","features":[159]},{"name":"DdeGetLastError","features":[159]},{"name":"DdeImpersonateClient","features":[1,159]},{"name":"DdeInitializeA","features":[159]},{"name":"DdeInitializeW","features":[159]},{"name":"DdeKeepStringHandle","features":[1,159]},{"name":"DdeNameService","features":[159]},{"name":"DdePostAdvise","features":[1,159]},{"name":"DdeQueryConvInfo","features":[1,4,159]},{"name":"DdeQueryNextServer","features":[159]},{"name":"DdeQueryStringA","features":[159]},{"name":"DdeQueryStringW","features":[159]},{"name":"DdeReconnect","features":[159]},{"name":"DdeSetQualityOfService","features":[1,4,159]},{"name":"DdeSetUserHandle","features":[1,159]},{"name":"DdeUnaccessData","features":[1,159]},{"name":"DdeUninitialize","features":[1,159]},{"name":"DeleteAtom","features":[159]},{"name":"EC_DISABLE","features":[159]},{"name":"EC_ENABLEALL","features":[159]},{"name":"EC_ENABLEONE","features":[159]},{"name":"EC_QUERYWAITING","features":[159]},{"name":"EmptyClipboard","features":[1,159]},{"name":"EnumClipboardFormats","features":[159]},{"name":"FindAtomA","features":[159]},{"name":"FindAtomW","features":[159]},{"name":"FreeDDElParam","features":[1,159]},{"name":"GetAtomNameA","features":[159]},{"name":"GetAtomNameW","features":[159]},{"name":"GetClipboardData","features":[1,159]},{"name":"GetClipboardFormatNameA","features":[159]},{"name":"GetClipboardFormatNameW","features":[159]},{"name":"GetClipboardOwner","features":[1,159]},{"name":"GetClipboardSequenceNumber","features":[159]},{"name":"GetClipboardViewer","features":[1,159]},{"name":"GetOpenClipboardWindow","features":[1,159]},{"name":"GetPriorityClipboardFormat","features":[159]},{"name":"GetUpdatedClipboardFormats","features":[1,159]},{"name":"GlobalAddAtomA","features":[159]},{"name":"GlobalAddAtomExA","features":[159]},{"name":"GlobalAddAtomExW","features":[159]},{"name":"GlobalAddAtomW","features":[159]},{"name":"GlobalDeleteAtom","features":[159]},{"name":"GlobalFindAtomA","features":[159]},{"name":"GlobalFindAtomW","features":[159]},{"name":"GlobalGetAtomNameA","features":[159]},{"name":"GlobalGetAtomNameW","features":[159]},{"name":"HCONV","features":[159]},{"name":"HCONVLIST","features":[159]},{"name":"HDATA_APPOWNED","features":[159]},{"name":"HDDEDATA","features":[159]},{"name":"HSZ","features":[159]},{"name":"HSZPAIR","features":[159]},{"name":"ImpersonateDdeClientWindow","features":[1,159]},{"name":"InitAtomTable","features":[1,159]},{"name":"IsClipboardFormatAvailable","features":[1,159]},{"name":"MAX_MONITORS","features":[159]},{"name":"METAFILEPICT","features":[12,159]},{"name":"MF_CALLBACKS","features":[159]},{"name":"MF_CONV","features":[159]},{"name":"MF_ERRORS","features":[159]},{"name":"MF_HSZ_INFO","features":[159]},{"name":"MF_LINKS","features":[159]},{"name":"MF_MASK","features":[159]},{"name":"MF_POSTMSGS","features":[159]},{"name":"MF_SENDMSGS","features":[159]},{"name":"MH_CLEANUP","features":[159]},{"name":"MH_CREATE","features":[159]},{"name":"MH_DELETE","features":[159]},{"name":"MH_KEEP","features":[159]},{"name":"MONCBSTRUCT","features":[1,4,159]},{"name":"MONCONVSTRUCT","features":[1,159]},{"name":"MONERRSTRUCT","features":[1,159]},{"name":"MONHSZSTRUCTA","features":[1,159]},{"name":"MONHSZSTRUCTW","features":[1,159]},{"name":"MONLINKSTRUCT","features":[1,159]},{"name":"MONMSGSTRUCT","features":[1,159]},{"name":"MSGF_DDEMGR","features":[159]},{"name":"OpenClipboard","features":[1,159]},{"name":"PFNCALLBACK","features":[159]},{"name":"PackDDElParam","features":[1,159]},{"name":"QID_SYNC","features":[159]},{"name":"RegisterClipboardFormatA","features":[159]},{"name":"RegisterClipboardFormatW","features":[159]},{"name":"RemoveClipboardFormatListener","features":[1,159]},{"name":"ReuseDDElParam","features":[1,159]},{"name":"ST_ADVISE","features":[159]},{"name":"ST_BLOCKED","features":[159]},{"name":"ST_BLOCKNEXT","features":[159]},{"name":"ST_CLIENT","features":[159]},{"name":"ST_CONNECTED","features":[159]},{"name":"ST_INLIST","features":[159]},{"name":"ST_ISLOCAL","features":[159]},{"name":"ST_ISSELF","features":[159]},{"name":"ST_TERMINATED","features":[159]},{"name":"SZDDESYS_ITEM_FORMATS","features":[159]},{"name":"SZDDESYS_ITEM_HELP","features":[159]},{"name":"SZDDESYS_ITEM_RTNMSG","features":[159]},{"name":"SZDDESYS_ITEM_STATUS","features":[159]},{"name":"SZDDESYS_ITEM_SYSITEMS","features":[159]},{"name":"SZDDESYS_ITEM_TOPICS","features":[159]},{"name":"SZDDESYS_TOPIC","features":[159]},{"name":"SZDDE_ITEM_ITEMLIST","features":[159]},{"name":"SetClipboardData","features":[1,159]},{"name":"SetClipboardViewer","features":[1,159]},{"name":"SetWinMetaFileBits","features":[12,159]},{"name":"TIMEOUT_ASYNC","features":[159]},{"name":"UnpackDDElParam","features":[1,159]},{"name":"WM_DDE_ACK","features":[159]},{"name":"WM_DDE_ADVISE","features":[159]},{"name":"WM_DDE_DATA","features":[159]},{"name":"WM_DDE_EXECUTE","features":[159]},{"name":"WM_DDE_FIRST","features":[159]},{"name":"WM_DDE_INITIATE","features":[159]},{"name":"WM_DDE_LAST","features":[159]},{"name":"WM_DDE_POKE","features":[159]},{"name":"WM_DDE_REQUEST","features":[159]},{"name":"WM_DDE_TERMINATE","features":[159]},{"name":"WM_DDE_UNADVISE","features":[159]},{"name":"XCLASS_BOOL","features":[159]},{"name":"XCLASS_DATA","features":[159]},{"name":"XCLASS_FLAGS","features":[159]},{"name":"XCLASS_MASK","features":[159]},{"name":"XCLASS_NOTIFICATION","features":[159]},{"name":"XST_ADVACKRCVD","features":[159]},{"name":"XST_ADVDATAACKRCVD","features":[159]},{"name":"XST_ADVDATASENT","features":[159]},{"name":"XST_ADVSENT","features":[159]},{"name":"XST_CONNECTED","features":[159]},{"name":"XST_DATARCVD","features":[159]},{"name":"XST_EXECACKRCVD","features":[159]},{"name":"XST_EXECSENT","features":[159]},{"name":"XST_INCOMPLETE","features":[159]},{"name":"XST_INIT1","features":[159]},{"name":"XST_INIT2","features":[159]},{"name":"XST_NULL","features":[159]},{"name":"XST_POKEACKRCVD","features":[159]},{"name":"XST_POKESENT","features":[159]},{"name":"XST_REQSENT","features":[159]},{"name":"XST_UNADVACKRCVD","features":[159]},{"name":"XST_UNADVSENT","features":[159]},{"name":"XTYPF_ACKREQ","features":[159]},{"name":"XTYPF_NOBLOCK","features":[159]},{"name":"XTYPF_NODATA","features":[159]},{"name":"XTYP_ADVDATA","features":[159]},{"name":"XTYP_ADVREQ","features":[159]},{"name":"XTYP_ADVSTART","features":[159]},{"name":"XTYP_ADVSTOP","features":[159]},{"name":"XTYP_CONNECT","features":[159]},{"name":"XTYP_CONNECT_CONFIRM","features":[159]},{"name":"XTYP_DISCONNECT","features":[159]},{"name":"XTYP_EXECUTE","features":[159]},{"name":"XTYP_MASK","features":[159]},{"name":"XTYP_MONITOR","features":[159]},{"name":"XTYP_POKE","features":[159]},{"name":"XTYP_REGISTER","features":[159]},{"name":"XTYP_REQUEST","features":[159]},{"name":"XTYP_SHIFT","features":[159]},{"name":"XTYP_UNREGISTER","features":[159]},{"name":"XTYP_WILDCONNECT","features":[159]},{"name":"XTYP_XACT_COMPLETE","features":[159]}],"547":[{"name":"CPU_ARCHITECTURE","features":[160]},{"name":"CPU_ARCHITECTURE_AMD64","features":[160]},{"name":"CPU_ARCHITECTURE_IA64","features":[160]},{"name":"CPU_ARCHITECTURE_INTEL","features":[160]},{"name":"EVT_WDSMCS_E_CP_CALLBACKS_NOT_REG","features":[160]},{"name":"EVT_WDSMCS_E_CP_CLOSE_INSTANCE_FAILED","features":[160]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED","features":[160]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED_CRITICAL","features":[160]},{"name":"EVT_WDSMCS_E_CP_INCOMPATIBLE_SERVER_VERSION","features":[160]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_FAILED","features":[160]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_MISSING","features":[160]},{"name":"EVT_WDSMCS_E_CP_MEMORY_LEAK","features":[160]},{"name":"EVT_WDSMCS_E_CP_OPEN_CONTENT_FAILED","features":[160]},{"name":"EVT_WDSMCS_E_CP_OPEN_INSTANCE_FAILED","features":[160]},{"name":"EVT_WDSMCS_E_CP_SHUTDOWN_FUNC_FAILED","features":[160]},{"name":"EVT_WDSMCS_E_DUPLICATE_MULTICAST_ADDR","features":[160]},{"name":"EVT_WDSMCS_E_NON_WDS_DUPLICATE_MULTICAST_ADDR","features":[160]},{"name":"EVT_WDSMCS_E_NSREG_CONTENT_PROVIDER_NOT_REG","features":[160]},{"name":"EVT_WDSMCS_E_NSREG_FAILURE","features":[160]},{"name":"EVT_WDSMCS_E_NSREG_NAMESPACE_EXISTS","features":[160]},{"name":"EVT_WDSMCS_E_NSREG_START_TIME_IN_PAST","features":[160]},{"name":"EVT_WDSMCS_E_PARAMETERS_READ_FAILED","features":[160]},{"name":"EVT_WDSMCS_S_PARAMETERS_READ","features":[160]},{"name":"EVT_WDSMCS_W_CP_DLL_LOAD_FAILED_NOT_CRITICAL","features":[160]},{"name":"FACILITY_WDSMCCLIENT","features":[160]},{"name":"FACILITY_WDSMCSERVER","features":[160]},{"name":"FACILITY_WDSTPTMGMT","features":[160]},{"name":"IWdsTransportCacheable","features":[160]},{"name":"IWdsTransportClient","features":[160]},{"name":"IWdsTransportCollection","features":[160]},{"name":"IWdsTransportConfigurationManager","features":[160]},{"name":"IWdsTransportConfigurationManager2","features":[160]},{"name":"IWdsTransportContent","features":[160]},{"name":"IWdsTransportContentProvider","features":[160]},{"name":"IWdsTransportDiagnosticsPolicy","features":[160]},{"name":"IWdsTransportManager","features":[160]},{"name":"IWdsTransportMulticastSessionPolicy","features":[160]},{"name":"IWdsTransportNamespace","features":[160]},{"name":"IWdsTransportNamespaceAutoCast","features":[160]},{"name":"IWdsTransportNamespaceManager","features":[160]},{"name":"IWdsTransportNamespaceScheduledCast","features":[160]},{"name":"IWdsTransportNamespaceScheduledCastAutoStart","features":[160]},{"name":"IWdsTransportNamespaceScheduledCastManualStart","features":[160]},{"name":"IWdsTransportServer","features":[160]},{"name":"IWdsTransportServer2","features":[160]},{"name":"IWdsTransportServicePolicy","features":[160]},{"name":"IWdsTransportServicePolicy2","features":[160]},{"name":"IWdsTransportSession","features":[160]},{"name":"IWdsTransportSetupManager","features":[160]},{"name":"IWdsTransportSetupManager2","features":[160]},{"name":"IWdsTransportTftpClient","features":[160]},{"name":"IWdsTransportTftpManager","features":[160]},{"name":"MC_SERVER_CURRENT_VERSION","features":[160]},{"name":"PFN_WDS_CLI_CALLBACK_MESSAGE_ID","features":[160]},{"name":"PFN_WdsCliCallback","features":[1,160]},{"name":"PFN_WdsCliTraceFunction","features":[160]},{"name":"PFN_WdsTransportClientReceiveContents","features":[1,160]},{"name":"PFN_WdsTransportClientReceiveMetadata","features":[1,160]},{"name":"PFN_WdsTransportClientSessionComplete","features":[1,160]},{"name":"PFN_WdsTransportClientSessionNegotiate","features":[1,160]},{"name":"PFN_WdsTransportClientSessionStart","features":[1,160]},{"name":"PFN_WdsTransportClientSessionStartEx","features":[1,160]},{"name":"PXE_ADDRESS","features":[160]},{"name":"PXE_ADDR_BROADCAST","features":[160]},{"name":"PXE_ADDR_USE_ADDR","features":[160]},{"name":"PXE_ADDR_USE_DHCP_RULES","features":[160]},{"name":"PXE_ADDR_USE_PORT","features":[160]},{"name":"PXE_BA_CUSTOM","features":[160]},{"name":"PXE_BA_IGNORE","features":[160]},{"name":"PXE_BA_NBP","features":[160]},{"name":"PXE_BA_REJECTED","features":[160]},{"name":"PXE_CALLBACK_MAX","features":[160]},{"name":"PXE_CALLBACK_RECV_REQUEST","features":[160]},{"name":"PXE_CALLBACK_SERVICE_CONTROL","features":[160]},{"name":"PXE_CALLBACK_SHUTDOWN","features":[160]},{"name":"PXE_DHCPV6_CLIENT_PORT","features":[160]},{"name":"PXE_DHCPV6_MESSAGE","features":[160]},{"name":"PXE_DHCPV6_MESSAGE_HEADER","features":[160]},{"name":"PXE_DHCPV6_NESTED_RELAY_MESSAGE","features":[160]},{"name":"PXE_DHCPV6_OPTION","features":[160]},{"name":"PXE_DHCPV6_RELAY_HOP_COUNT_LIMIT","features":[160]},{"name":"PXE_DHCPV6_RELAY_MESSAGE","features":[160]},{"name":"PXE_DHCPV6_SERVER_PORT","features":[160]},{"name":"PXE_DHCP_CLIENT_PORT","features":[160]},{"name":"PXE_DHCP_FILE_SIZE","features":[160]},{"name":"PXE_DHCP_HWAADR_SIZE","features":[160]},{"name":"PXE_DHCP_MAGIC_COOKIE_SIZE","features":[160]},{"name":"PXE_DHCP_MESSAGE","features":[160]},{"name":"PXE_DHCP_OPTION","features":[160]},{"name":"PXE_DHCP_SERVER_PORT","features":[160]},{"name":"PXE_DHCP_SERVER_SIZE","features":[160]},{"name":"PXE_GSI_SERVER_DUID","features":[160]},{"name":"PXE_GSI_TRACE_ENABLED","features":[160]},{"name":"PXE_MAX_ADDRESS","features":[160]},{"name":"PXE_PROVIDER","features":[1,160]},{"name":"PXE_PROV_ATTR_FILTER","features":[160]},{"name":"PXE_PROV_ATTR_FILTER_IPV6","features":[160]},{"name":"PXE_PROV_ATTR_IPV6_CAPABLE","features":[160]},{"name":"PXE_PROV_FILTER_ALL","features":[160]},{"name":"PXE_PROV_FILTER_DHCP_ONLY","features":[160]},{"name":"PXE_PROV_FILTER_PXE_ONLY","features":[160]},{"name":"PXE_REG_INDEX_BOTTOM","features":[160]},{"name":"PXE_REG_INDEX_TOP","features":[160]},{"name":"PXE_SERVER_PORT","features":[160]},{"name":"PXE_TRACE_ERROR","features":[160]},{"name":"PXE_TRACE_FATAL","features":[160]},{"name":"PXE_TRACE_INFO","features":[160]},{"name":"PXE_TRACE_VERBOSE","features":[160]},{"name":"PXE_TRACE_WARNING","features":[160]},{"name":"PxeAsyncRecvDone","features":[1,160]},{"name":"PxeDhcpAppendOption","features":[160]},{"name":"PxeDhcpAppendOptionRaw","features":[160]},{"name":"PxeDhcpGetOptionValue","features":[160]},{"name":"PxeDhcpGetVendorOptionValue","features":[160]},{"name":"PxeDhcpInitialize","features":[160]},{"name":"PxeDhcpIsValid","features":[1,160]},{"name":"PxeDhcpv6AppendOption","features":[160]},{"name":"PxeDhcpv6AppendOptionRaw","features":[160]},{"name":"PxeDhcpv6CreateRelayRepl","features":[160]},{"name":"PxeDhcpv6GetOptionValue","features":[160]},{"name":"PxeDhcpv6GetVendorOptionValue","features":[160]},{"name":"PxeDhcpv6Initialize","features":[160]},{"name":"PxeDhcpv6IsValid","features":[1,160]},{"name":"PxeDhcpv6ParseRelayForw","features":[160]},{"name":"PxeGetServerInfo","features":[160]},{"name":"PxeGetServerInfoEx","features":[160]},{"name":"PxePacketAllocate","features":[1,160]},{"name":"PxePacketFree","features":[1,160]},{"name":"PxeProviderEnumClose","features":[1,160]},{"name":"PxeProviderEnumFirst","features":[1,160]},{"name":"PxeProviderEnumNext","features":[1,160]},{"name":"PxeProviderFreeInfo","features":[1,160]},{"name":"PxeProviderQueryIndex","features":[160]},{"name":"PxeProviderRegister","features":[1,160,49]},{"name":"PxeProviderSetAttribute","features":[1,160]},{"name":"PxeProviderUnRegister","features":[160]},{"name":"PxeRegisterCallback","features":[1,160]},{"name":"PxeSendReply","features":[1,160]},{"name":"PxeTrace","features":[1,160]},{"name":"PxeTraceV","features":[1,160]},{"name":"TRANSPORTCLIENT_CALLBACK_ID","features":[160]},{"name":"TRANSPORTCLIENT_SESSION_INFO","features":[160]},{"name":"TRANSPORTPROVIDER_CALLBACK_ID","features":[160]},{"name":"TRANSPORTPROVIDER_CURRENT_VERSION","features":[160]},{"name":"WDSBP_OPTVAL_ACTION_ABORT","features":[160]},{"name":"WDSBP_OPTVAL_ACTION_APPROVAL","features":[160]},{"name":"WDSBP_OPTVAL_ACTION_REFERRAL","features":[160]},{"name":"WDSBP_OPTVAL_NBP_VER_7","features":[160]},{"name":"WDSBP_OPTVAL_NBP_VER_8","features":[160]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_NOPROMPT","features":[160]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTIN","features":[160]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTOUT","features":[160]},{"name":"WDSBP_OPT_TYPE_BYTE","features":[160]},{"name":"WDSBP_OPT_TYPE_IP4","features":[160]},{"name":"WDSBP_OPT_TYPE_IP6","features":[160]},{"name":"WDSBP_OPT_TYPE_NONE","features":[160]},{"name":"WDSBP_OPT_TYPE_STR","features":[160]},{"name":"WDSBP_OPT_TYPE_ULONG","features":[160]},{"name":"WDSBP_OPT_TYPE_USHORT","features":[160]},{"name":"WDSBP_OPT_TYPE_WSTR","features":[160]},{"name":"WDSBP_PK_TYPE_BCD","features":[160]},{"name":"WDSBP_PK_TYPE_DHCP","features":[160]},{"name":"WDSBP_PK_TYPE_DHCPV6","features":[160]},{"name":"WDSBP_PK_TYPE_WDSNBP","features":[160]},{"name":"WDSMCCLIENT_CATEGORY","features":[160]},{"name":"WDSMCSERVER_CATEGORY","features":[160]},{"name":"WDSMCS_E_CLIENT_DOESNOT_SUPPORT_SECURITY_MODE","features":[160]},{"name":"WDSMCS_E_CLIENT_NOT_FOUND","features":[160]},{"name":"WDSMCS_E_CONTENT_NOT_FOUND","features":[160]},{"name":"WDSMCS_E_CONTENT_PROVIDER_NOT_FOUND","features":[160]},{"name":"WDSMCS_E_INCOMPATIBLE_VERSION","features":[160]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_EXISTS","features":[160]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_STARTED","features":[160]},{"name":"WDSMCS_E_NAMESPACE_NOT_FOUND","features":[160]},{"name":"WDSMCS_E_NAMESPACE_SHUTDOWN_IN_PROGRESS","features":[160]},{"name":"WDSMCS_E_NS_START_FAILED_NO_CLIENTS","features":[160]},{"name":"WDSMCS_E_PACKET_HAS_SECURITY","features":[160]},{"name":"WDSMCS_E_PACKET_NOT_CHECKSUMED","features":[160]},{"name":"WDSMCS_E_PACKET_NOT_HASHED","features":[160]},{"name":"WDSMCS_E_PACKET_NOT_SIGNED","features":[160]},{"name":"WDSMCS_E_REQCALLBACKS_NOT_REG","features":[160]},{"name":"WDSMCS_E_SESSION_SHUTDOWN_IN_PROGRESS","features":[160]},{"name":"WDSMCS_E_START_TIME_IN_PAST","features":[160]},{"name":"WDSTPC_E_ALREADY_COMPLETED","features":[160]},{"name":"WDSTPC_E_ALREADY_IN_LOWEST_SESSION","features":[160]},{"name":"WDSTPC_E_ALREADY_IN_PROGRESS","features":[160]},{"name":"WDSTPC_E_CALLBACKS_NOT_REG","features":[160]},{"name":"WDSTPC_E_CLIENT_DEMOTE_NOT_SUPPORTED","features":[160]},{"name":"WDSTPC_E_KICKED_FAIL","features":[160]},{"name":"WDSTPC_E_KICKED_FALLBACK","features":[160]},{"name":"WDSTPC_E_KICKED_POLICY_NOT_MET","features":[160]},{"name":"WDSTPC_E_KICKED_UNKNOWN","features":[160]},{"name":"WDSTPC_E_MULTISTREAM_NOT_ENABLED","features":[160]},{"name":"WDSTPC_E_NOT_INITIALIZED","features":[160]},{"name":"WDSTPC_E_NO_IP4_INTERFACE","features":[160]},{"name":"WDSTPC_E_UNKNOWN_ERROR","features":[160]},{"name":"WDSTPTC_E_WIM_APPLY_REQUIRES_REFERENCE_IMAGE","features":[160]},{"name":"WDSTPTMGMT_CATEGORY","features":[160]},{"name":"WDSTPTMGMT_E_CANNOT_REFRESH_DIRTY_OBJECT","features":[160]},{"name":"WDSTPTMGMT_E_CANNOT_REINITIALIZE_OBJECT","features":[160]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_ALREADY_REGISTERED","features":[160]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_NOT_REGISTERED","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_AUTO_DISCONNECT_THRESHOLD","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_CLASS","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_CONTENT_PROVIDER_NAME","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_DIAGNOSTICS_COMPONENTS","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_IPV4_MULTICAST_ADDRESS","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS_SOURCE","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_IP_ADDRESS","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_MULTISTREAM_STREAM_COUNT","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_DATA","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_NAME","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_PARAMETERS","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_TIME","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_OPERATION","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_PROPERTY","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_IP_ADDRESS_RANGE","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_PORT_RANGE","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_SLOW_CLIENT_HANDLING_TYPE","features":[160]},{"name":"WDSTPTMGMT_E_INVALID_TFTP_MAX_BLOCKSIZE","features":[160]},{"name":"WDSTPTMGMT_E_IPV6_NOT_SUPPORTED","features":[160]},{"name":"WDSTPTMGMT_E_MULTICAST_SESSION_POLICY_NOT_SUPPORTED","features":[160]},{"name":"WDSTPTMGMT_E_NAMESPACE_ALREADY_REGISTERED","features":[160]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_ON_SERVER","features":[160]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_REGISTERED","features":[160]},{"name":"WDSTPTMGMT_E_NAMESPACE_READ_ONLY","features":[160]},{"name":"WDSTPTMGMT_E_NAMESPACE_REMOVED_FROM_SERVER","features":[160]},{"name":"WDSTPTMGMT_E_NETWORK_PROFILES_NOT_SUPPORTED","features":[160]},{"name":"WDSTPTMGMT_E_TFTP_MAX_BLOCKSIZE_NOT_SUPPORTED","features":[160]},{"name":"WDSTPTMGMT_E_TFTP_VAR_WINDOW_NOT_SUPPORTED","features":[160]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_ROLE_NOT_CONFIGURED","features":[160]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_UNAVAILABLE","features":[160]},{"name":"WDSTPTMGMT_E_UDP_PORT_POLICY_NOT_SUPPORTED","features":[160]},{"name":"WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS","features":[160]},{"name":"WDSTRANSPORT_DISCONNECT_TYPE","features":[160]},{"name":"WDSTRANSPORT_FEATURE_FLAGS","features":[160]},{"name":"WDSTRANSPORT_IP_ADDRESS_SOURCE_TYPE","features":[160]},{"name":"WDSTRANSPORT_IP_ADDRESS_TYPE","features":[160]},{"name":"WDSTRANSPORT_NAMESPACE_TYPE","features":[160]},{"name":"WDSTRANSPORT_NETWORK_PROFILE_TYPE","features":[160]},{"name":"WDSTRANSPORT_PROTOCOL_FLAGS","features":[160]},{"name":"WDSTRANSPORT_RESOURCE_UTILIZATION_UNKNOWN","features":[160]},{"name":"WDSTRANSPORT_SERVICE_NOTIFICATION","features":[160]},{"name":"WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE","features":[160]},{"name":"WDSTRANSPORT_TFTP_CAPABILITY","features":[160]},{"name":"WDSTRANSPORT_UDP_PORT_POLICY","features":[160]},{"name":"WDS_CLI_CRED","features":[160]},{"name":"WDS_CLI_FIRMWARE_BIOS","features":[160]},{"name":"WDS_CLI_FIRMWARE_EFI","features":[160]},{"name":"WDS_CLI_FIRMWARE_TYPE","features":[160]},{"name":"WDS_CLI_FIRMWARE_UNKNOWN","features":[160]},{"name":"WDS_CLI_IMAGE_PARAM_SPARSE_FILE","features":[160]},{"name":"WDS_CLI_IMAGE_PARAM_SUPPORTED_FIRMWARES","features":[160]},{"name":"WDS_CLI_IMAGE_PARAM_TYPE","features":[160]},{"name":"WDS_CLI_IMAGE_PARAM_UNKNOWN","features":[160]},{"name":"WDS_CLI_IMAGE_TYPE","features":[160]},{"name":"WDS_CLI_IMAGE_TYPE_UNKNOWN","features":[160]},{"name":"WDS_CLI_IMAGE_TYPE_VHD","features":[160]},{"name":"WDS_CLI_IMAGE_TYPE_VHDX","features":[160]},{"name":"WDS_CLI_IMAGE_TYPE_WIM","features":[160]},{"name":"WDS_CLI_MSG_COMPLETE","features":[160]},{"name":"WDS_CLI_MSG_PROGRESS","features":[160]},{"name":"WDS_CLI_MSG_START","features":[160]},{"name":"WDS_CLI_MSG_TEXT","features":[160]},{"name":"WDS_CLI_NO_SPARSE_FILE","features":[160]},{"name":"WDS_CLI_TRANSFER_ASYNCHRONOUS","features":[160]},{"name":"WDS_LOG_LEVEL_DISABLED","features":[160]},{"name":"WDS_LOG_LEVEL_ERROR","features":[160]},{"name":"WDS_LOG_LEVEL_INFO","features":[160]},{"name":"WDS_LOG_LEVEL_WARNING","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED_2","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED_2","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR_2","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_DRIVER_PACKAGE_NOT_ACCESSIBLE","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_ERROR","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_FINISHED","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_GENERIC_MESSAGE","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED2","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED3","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_MAX_CODE","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_END","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_FAILURE","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_START","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_END","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_START","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_STARTED","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_DOWNGRADE","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_END","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_START","features":[160]},{"name":"WDS_LOG_TYPE_CLIENT_UNATTEND_MODE","features":[160]},{"name":"WDS_MC_TRACE_ERROR","features":[160]},{"name":"WDS_MC_TRACE_FATAL","features":[160]},{"name":"WDS_MC_TRACE_INFO","features":[160]},{"name":"WDS_MC_TRACE_VERBOSE","features":[160]},{"name":"WDS_MC_TRACE_WARNING","features":[160]},{"name":"WDS_TRANSPORTCLIENT_AUTH","features":[160]},{"name":"WDS_TRANSPORTCLIENT_CALLBACKS","features":[1,160]},{"name":"WDS_TRANSPORTCLIENT_CURRENT_API_VERSION","features":[160]},{"name":"WDS_TRANSPORTCLIENT_MAX_CALLBACKS","features":[160]},{"name":"WDS_TRANSPORTCLIENT_NO_AUTH","features":[160]},{"name":"WDS_TRANSPORTCLIENT_NO_CACHE","features":[160]},{"name":"WDS_TRANSPORTCLIENT_PROTOCOL_MULTICAST","features":[160]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_CONTENTS","features":[160]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_METADATA","features":[160]},{"name":"WDS_TRANSPORTCLIENT_REQUEST","features":[160]},{"name":"WDS_TRANSPORTCLIENT_REQUEST_AUTH_LEVEL","features":[160]},{"name":"WDS_TRANSPORTCLIENT_SESSION_COMPLETE","features":[160]},{"name":"WDS_TRANSPORTCLIENT_SESSION_NEGOTIATE","features":[160]},{"name":"WDS_TRANSPORTCLIENT_SESSION_START","features":[160]},{"name":"WDS_TRANSPORTCLIENT_SESSION_STARTEX","features":[160]},{"name":"WDS_TRANSPORTCLIENT_STATUS_FAILURE","features":[160]},{"name":"WDS_TRANSPORTCLIENT_STATUS_IN_PROGRESS","features":[160]},{"name":"WDS_TRANSPORTCLIENT_STATUS_SUCCESS","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_CONTENT","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_INSTANCE","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_COMPARE_CONTENT","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_CREATE_INSTANCE","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_DUMP_STATE","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_METADATA","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_SIZE","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_INIT_PARAMS","features":[1,160,49]},{"name":"WDS_TRANSPORTPROVIDER_MAX_CALLBACKS","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_OPEN_CONTENT","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_READ_CONTENT","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_REFRESH_SETTINGS","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_SETTINGS","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_SHUTDOWN","features":[160]},{"name":"WDS_TRANSPORTPROVIDER_USER_ACCESS_CHECK","features":[160]},{"name":"WdsBpAddOption","features":[1,160]},{"name":"WdsBpCloseHandle","features":[1,160]},{"name":"WdsBpGetOptionBuffer","features":[1,160]},{"name":"WdsBpInitialize","features":[1,160]},{"name":"WdsBpParseInitialize","features":[1,160]},{"name":"WdsBpParseInitializev6","features":[1,160]},{"name":"WdsBpQueryOption","features":[1,160]},{"name":"WdsCliAuthorizeSession","features":[1,160]},{"name":"WdsCliCancelTransfer","features":[1,160]},{"name":"WdsCliClose","features":[1,160]},{"name":"WdsCliCreateSession","features":[1,160]},{"name":"WdsCliFindFirstImage","features":[1,160]},{"name":"WdsCliFindNextImage","features":[1,160]},{"name":"WdsCliFlagEnumFilterFirmware","features":[160]},{"name":"WdsCliFlagEnumFilterVersion","features":[160]},{"name":"WdsCliFreeStringArray","features":[160]},{"name":"WdsCliGetDriverQueryXml","features":[160]},{"name":"WdsCliGetEnumerationFlags","features":[1,160]},{"name":"WdsCliGetImageArchitecture","features":[1,160]},{"name":"WdsCliGetImageDescription","features":[1,160]},{"name":"WdsCliGetImageFiles","features":[1,160]},{"name":"WdsCliGetImageGroup","features":[1,160]},{"name":"WdsCliGetImageHalName","features":[1,160]},{"name":"WdsCliGetImageHandleFromFindHandle","features":[1,160]},{"name":"WdsCliGetImageHandleFromTransferHandle","features":[1,160]},{"name":"WdsCliGetImageIndex","features":[1,160]},{"name":"WdsCliGetImageLanguage","features":[1,160]},{"name":"WdsCliGetImageLanguages","features":[1,160]},{"name":"WdsCliGetImageLastModifiedTime","features":[1,160]},{"name":"WdsCliGetImageName","features":[1,160]},{"name":"WdsCliGetImageNamespace","features":[1,160]},{"name":"WdsCliGetImageParameter","features":[1,160]},{"name":"WdsCliGetImagePath","features":[1,160]},{"name":"WdsCliGetImageSize","features":[1,160]},{"name":"WdsCliGetImageType","features":[1,160]},{"name":"WdsCliGetImageVersion","features":[1,160]},{"name":"WdsCliGetTransferSize","features":[1,160]},{"name":"WdsCliInitializeLog","features":[1,160]},{"name":"WdsCliLog","features":[1,160]},{"name":"WdsCliObtainDriverPackages","features":[1,160]},{"name":"WdsCliObtainDriverPackagesEx","features":[1,160]},{"name":"WdsCliRegisterTrace","features":[160]},{"name":"WdsCliSetTransferBufferSize","features":[160]},{"name":"WdsCliTransferFile","features":[1,160]},{"name":"WdsCliTransferImage","features":[1,160]},{"name":"WdsCliWaitForTransfer","features":[1,160]},{"name":"WdsTptDiagnosticsComponentImageServer","features":[160]},{"name":"WdsTptDiagnosticsComponentMulticast","features":[160]},{"name":"WdsTptDiagnosticsComponentPxe","features":[160]},{"name":"WdsTptDiagnosticsComponentTftp","features":[160]},{"name":"WdsTptDisconnectAbort","features":[160]},{"name":"WdsTptDisconnectFallback","features":[160]},{"name":"WdsTptDisconnectUnknown","features":[160]},{"name":"WdsTptFeatureAdminPack","features":[160]},{"name":"WdsTptFeatureDeploymentServer","features":[160]},{"name":"WdsTptFeatureTransportServer","features":[160]},{"name":"WdsTptIpAddressIpv4","features":[160]},{"name":"WdsTptIpAddressIpv6","features":[160]},{"name":"WdsTptIpAddressSourceDhcp","features":[160]},{"name":"WdsTptIpAddressSourceRange","features":[160]},{"name":"WdsTptIpAddressSourceUnknown","features":[160]},{"name":"WdsTptIpAddressUnknown","features":[160]},{"name":"WdsTptNamespaceTypeAutoCast","features":[160]},{"name":"WdsTptNamespaceTypeScheduledCastAutoStart","features":[160]},{"name":"WdsTptNamespaceTypeScheduledCastManualStart","features":[160]},{"name":"WdsTptNamespaceTypeUnknown","features":[160]},{"name":"WdsTptNetworkProfile100Mbps","features":[160]},{"name":"WdsTptNetworkProfile10Mbps","features":[160]},{"name":"WdsTptNetworkProfile1Gbps","features":[160]},{"name":"WdsTptNetworkProfileCustom","features":[160]},{"name":"WdsTptNetworkProfileUnknown","features":[160]},{"name":"WdsTptProtocolMulticast","features":[160]},{"name":"WdsTptProtocolUnicast","features":[160]},{"name":"WdsTptServiceNotifyReadSettings","features":[160]},{"name":"WdsTptServiceNotifyUnknown","features":[160]},{"name":"WdsTptSlowClientHandlingAutoDisconnect","features":[160]},{"name":"WdsTptSlowClientHandlingMultistream","features":[160]},{"name":"WdsTptSlowClientHandlingNone","features":[160]},{"name":"WdsTptSlowClientHandlingUnknown","features":[160]},{"name":"WdsTptTftpCapMaximumBlockSize","features":[160]},{"name":"WdsTptTftpCapVariableWindow","features":[160]},{"name":"WdsTptUdpPortPolicyDynamic","features":[160]},{"name":"WdsTptUdpPortPolicyFixed","features":[160]},{"name":"WdsTransportCacheable","features":[160]},{"name":"WdsTransportClient","features":[160]},{"name":"WdsTransportClientAddRefBuffer","features":[160]},{"name":"WdsTransportClientCancelSession","features":[1,160]},{"name":"WdsTransportClientCancelSessionEx","features":[1,160]},{"name":"WdsTransportClientCloseSession","features":[1,160]},{"name":"WdsTransportClientCompleteReceive","features":[1,160]},{"name":"WdsTransportClientInitialize","features":[160]},{"name":"WdsTransportClientInitializeSession","features":[1,160]},{"name":"WdsTransportClientQueryStatus","features":[1,160]},{"name":"WdsTransportClientRegisterCallback","features":[1,160]},{"name":"WdsTransportClientReleaseBuffer","features":[160]},{"name":"WdsTransportClientShutdown","features":[160]},{"name":"WdsTransportClientStartSession","features":[1,160]},{"name":"WdsTransportClientWaitForCompletion","features":[1,160]},{"name":"WdsTransportCollection","features":[160]},{"name":"WdsTransportConfigurationManager","features":[160]},{"name":"WdsTransportContent","features":[160]},{"name":"WdsTransportContentProvider","features":[160]},{"name":"WdsTransportDiagnosticsPolicy","features":[160]},{"name":"WdsTransportManager","features":[160]},{"name":"WdsTransportMulticastSessionPolicy","features":[160]},{"name":"WdsTransportNamespace","features":[160]},{"name":"WdsTransportNamespaceAutoCast","features":[160]},{"name":"WdsTransportNamespaceManager","features":[160]},{"name":"WdsTransportNamespaceScheduledCast","features":[160]},{"name":"WdsTransportNamespaceScheduledCastAutoStart","features":[160]},{"name":"WdsTransportNamespaceScheduledCastManualStart","features":[160]},{"name":"WdsTransportServer","features":[160]},{"name":"WdsTransportServerAllocateBuffer","features":[1,160]},{"name":"WdsTransportServerCompleteRead","features":[1,160]},{"name":"WdsTransportServerFreeBuffer","features":[1,160]},{"name":"WdsTransportServerRegisterCallback","features":[1,160]},{"name":"WdsTransportServerTrace","features":[1,160]},{"name":"WdsTransportServerTraceV","features":[1,160]},{"name":"WdsTransportServicePolicy","features":[160]},{"name":"WdsTransportSession","features":[160]},{"name":"WdsTransportSetupManager","features":[160]},{"name":"WdsTransportTftpClient","features":[160]},{"name":"WdsTransportTftpManager","features":[160]}],"549":[{"name":"AcquireDeveloperLicense","features":[1,161]},{"name":"CheckDeveloperLicense","features":[1,161]},{"name":"RemoveDeveloperLicense","features":[1,161]}],"550":[{"name":"CeipIsOptedIn","features":[1,162]}],"552":[{"name":"ABNORMAL_RESET_DETECTED","features":[30]},{"name":"ACPI_BIOS_ERROR","features":[30]},{"name":"ACPI_BIOS_FATAL_ERROR","features":[30]},{"name":"ACPI_DRIVER_INTERNAL","features":[30]},{"name":"ACPI_FIRMWARE_WATCHDOG_TIMEOUT","features":[30]},{"name":"ACTIVE_EX_WORKER_THREAD_TERMINATION","features":[30]},{"name":"ADDRESS","features":[30]},{"name":"ADDRESS64","features":[30]},{"name":"ADDRESS_MODE","features":[30]},{"name":"AER_BRIDGE_DESCRIPTOR_FLAGS","features":[30]},{"name":"AER_ENDPOINT_DESCRIPTOR_FLAGS","features":[30]},{"name":"AER_ROOTPORT_DESCRIPTOR_FLAGS","features":[30]},{"name":"AGP_GART_CORRUPTION","features":[30]},{"name":"AGP_ILLEGALLY_REPROGRAMMED","features":[30]},{"name":"AGP_INTERNAL","features":[30]},{"name":"AGP_INVALID_ACCESS","features":[30]},{"name":"APC_CALLBACK_DATA","features":[30,7]},{"name":"APC_INDEX_MISMATCH","features":[30]},{"name":"API_VERSION","features":[30]},{"name":"API_VERSION_NUMBER","features":[30]},{"name":"APP_TAGGING_INITIALIZATION_FAILED","features":[30]},{"name":"ARM64_NT_CONTEXT","features":[30]},{"name":"ARM64_NT_NEON128","features":[30]},{"name":"ASSIGN_DRIVE_LETTERS_FAILED","features":[30]},{"name":"ATDISK_DRIVER_INTERNAL","features":[30]},{"name":"ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY","features":[30]},{"name":"ATTEMPTED_SWITCH_FROM_DPC","features":[30]},{"name":"ATTEMPTED_WRITE_TO_CM_PROTECTED_STORAGE","features":[30]},{"name":"ATTEMPTED_WRITE_TO_READONLY_MEMORY","features":[30]},{"name":"AUDIT_FAILURE","features":[30]},{"name":"AZURE_DEVICE_FW_DUMP","features":[30]},{"name":"AddVectoredContinueHandler","features":[1,30,7]},{"name":"AddVectoredExceptionHandler","features":[1,30,7]},{"name":"AddrMode1616","features":[30]},{"name":"AddrMode1632","features":[30]},{"name":"AddrModeFlat","features":[30]},{"name":"AddrModeReal","features":[30]},{"name":"BAD_EXHANDLE","features":[30]},{"name":"BAD_OBJECT_HEADER","features":[30]},{"name":"BAD_POOL_CALLER","features":[30]},{"name":"BAD_POOL_HEADER","features":[30]},{"name":"BAD_SYSTEM_CONFIG_INFO","features":[30]},{"name":"BC_BLUETOOTH_VERIFIER_FAULT","features":[30]},{"name":"BC_BTHMINI_VERIFIER_FAULT","features":[30]},{"name":"BGI_DETECTED_VIOLATION","features":[30]},{"name":"BIND_ALL_IMAGES","features":[30]},{"name":"BIND_CACHE_IMPORT_DLLS","features":[30]},{"name":"BIND_NO_BOUND_IMPORTS","features":[30]},{"name":"BIND_NO_UPDATE","features":[30]},{"name":"BIND_REPORT_64BIT_VA","features":[30]},{"name":"BITLOCKER_FATAL_ERROR","features":[30]},{"name":"BLUETOOTH_ERROR_RECOVERY_LIVEDUMP","features":[30]},{"name":"BOOTING_IN_SAFEMODE_DSREPAIR","features":[30]},{"name":"BOOTING_IN_SAFEMODE_MINIMAL","features":[30]},{"name":"BOOTING_IN_SAFEMODE_NETWORK","features":[30]},{"name":"BOOTLOG_ENABLED","features":[30]},{"name":"BOOTLOG_LOADED","features":[30]},{"name":"BOOTLOG_NOT_LOADED","features":[30]},{"name":"BOOTPROC_INITIALIZATION_FAILED","features":[30]},{"name":"BOUND_IMAGE_UNSUPPORTED","features":[30]},{"name":"BREAKAWAY_CABLE_TRANSITION","features":[30]},{"name":"BUGCHECK_CONTEXT_MODIFIER","features":[30]},{"name":"BUGCHECK_ERROR","features":[30]},{"name":"BUGCODE_ID_DRIVER","features":[30]},{"name":"BUGCODE_MBBADAPTER_DRIVER","features":[30]},{"name":"BUGCODE_NDIS_DRIVER","features":[30]},{"name":"BUGCODE_NDIS_DRIVER_LIVE_DUMP","features":[30]},{"name":"BUGCODE_NETADAPTER_DRIVER","features":[30]},{"name":"BUGCODE_USB3_DRIVER","features":[30]},{"name":"BUGCODE_USB_DRIVER","features":[30]},{"name":"BUGCODE_WIFIADAPTER_DRIVER","features":[30]},{"name":"Beep","features":[1,30]},{"name":"BindExpandFileHeaders","features":[30]},{"name":"BindForwarder","features":[30]},{"name":"BindForwarder32","features":[30]},{"name":"BindForwarder64","features":[30]},{"name":"BindForwarderNOT","features":[30]},{"name":"BindForwarderNOT32","features":[30]},{"name":"BindForwarderNOT64","features":[30]},{"name":"BindImage","features":[1,30]},{"name":"BindImageComplete","features":[30]},{"name":"BindImageEx","features":[1,30]},{"name":"BindImageModified","features":[30]},{"name":"BindImportModule","features":[30]},{"name":"BindImportModuleFailed","features":[30]},{"name":"BindImportProcedure","features":[30]},{"name":"BindImportProcedure32","features":[30]},{"name":"BindImportProcedure64","features":[30]},{"name":"BindImportProcedureFailed","features":[30]},{"name":"BindMismatchedSymbols","features":[30]},{"name":"BindNoRoomInImage","features":[30]},{"name":"BindOutOfMemory","features":[30]},{"name":"BindRvaToVaFailed","features":[30]},{"name":"BindSymbolsNotUpdated","features":[30]},{"name":"CACHE_INITIALIZATION_FAILED","features":[30]},{"name":"CACHE_MANAGER","features":[30]},{"name":"CALL_HAS_NOT_RETURNED_WATCHDOG_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CANCEL_STATE_IN_COMPLETED_IRP","features":[30]},{"name":"CANNOT_WRITE_CONFIGURATION","features":[30]},{"name":"CBA_CHECK_ARM_MACHINE_THUMB_TYPE_OVERRIDE","features":[30]},{"name":"CBA_CHECK_ENGOPT_DISALLOW_NETWORK_PATHS","features":[30]},{"name":"CBA_DEBUG_INFO","features":[30]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_CANCEL","features":[30]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_COMPLETE","features":[30]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_FAILURE","features":[30]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_PARTIAL","features":[30]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_START","features":[30]},{"name":"CBA_DUPLICATE_SYMBOL","features":[30]},{"name":"CBA_ENGINE_PRESENT","features":[30]},{"name":"CBA_EVENT","features":[30]},{"name":"CBA_MAP_JIT_SYMBOL","features":[30]},{"name":"CBA_READ_MEMORY","features":[30]},{"name":"CBA_SET_OPTIONS","features":[30]},{"name":"CBA_SRCSRV_EVENT","features":[30]},{"name":"CBA_SRCSRV_INFO","features":[30]},{"name":"CBA_SYMBOLS_UNLOADED","features":[30]},{"name":"CBA_UPDATE_STATUS_BAR","features":[30]},{"name":"CBA_XML_LOG","features":[30]},{"name":"CDFS_FILE_SYSTEM","features":[30]},{"name":"CERT_PE_IMAGE_DIGEST_ALL_IMPORT_INFO","features":[30]},{"name":"CERT_PE_IMAGE_DIGEST_DEBUG_INFO","features":[30]},{"name":"CERT_PE_IMAGE_DIGEST_NON_PE_INFO","features":[30]},{"name":"CERT_PE_IMAGE_DIGEST_RESOURCES","features":[30]},{"name":"CERT_SECTION_TYPE_ANY","features":[30]},{"name":"CHECKSUM_MAPVIEW_FAILURE","features":[30]},{"name":"CHECKSUM_MAP_FAILURE","features":[30]},{"name":"CHECKSUM_OPEN_FAILURE","features":[30]},{"name":"CHECKSUM_SUCCESS","features":[30]},{"name":"CHECKSUM_UNICODE_FAILURE","features":[30]},{"name":"CHIPSET_DETECTED_ERROR","features":[30]},{"name":"CID_HANDLE_CREATION","features":[30]},{"name":"CID_HANDLE_DELETION","features":[30]},{"name":"CLOCK_WATCHDOG_TIMEOUT","features":[30]},{"name":"CLUSTER_CLUSPORT_STATUS_IO_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSVFS_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSV_CLUSSVC_DISCONNECT_WATCHDOG","features":[30]},{"name":"CLUSTER_CSV_CLUSTER_WATCHDOG_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSV_SNAPSHOT_DEVICE_INFO_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSV_STATE_TRANSITION_INTERVAL_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSV_STATE_TRANSITION_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSV_STATUS_IO_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSV_VOLUME_ARRIVAL_LIVEDUMP","features":[30]},{"name":"CLUSTER_CSV_VOLUME_REMOVAL_LIVEDUMP","features":[30]},{"name":"CLUSTER_RESOURCE_CALL_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CLUSTER_SVHDX_LIVEDUMP","features":[30]},{"name":"CNSS_FILE_SYSTEM_FILTER","features":[30]},{"name":"CONFIG_INITIALIZATION_FAILED","features":[30]},{"name":"CONFIG_LIST_FAILED","features":[30]},{"name":"CONNECTED_STANDBY_WATCHDOG_TIMEOUT_LIVEDUMP","features":[30]},{"name":"CONTEXT","features":[30,7]},{"name":"CONTEXT","features":[30,7]},{"name":"CONTEXT","features":[30,7]},{"name":"CONTEXT_ALL_AMD64","features":[30]},{"name":"CONTEXT_ALL_ARM","features":[30]},{"name":"CONTEXT_ALL_ARM64","features":[30]},{"name":"CONTEXT_ALL_X86","features":[30]},{"name":"CONTEXT_AMD64","features":[30]},{"name":"CONTEXT_ARM","features":[30]},{"name":"CONTEXT_ARM64","features":[30]},{"name":"CONTEXT_CONTROL_AMD64","features":[30]},{"name":"CONTEXT_CONTROL_ARM","features":[30]},{"name":"CONTEXT_CONTROL_ARM64","features":[30]},{"name":"CONTEXT_CONTROL_X86","features":[30]},{"name":"CONTEXT_DEBUG_REGISTERS_AMD64","features":[30]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM","features":[30]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM64","features":[30]},{"name":"CONTEXT_DEBUG_REGISTERS_X86","features":[30]},{"name":"CONTEXT_EXCEPTION_ACTIVE_AMD64","features":[30]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM","features":[30]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM64","features":[30]},{"name":"CONTEXT_EXCEPTION_ACTIVE_X86","features":[30]},{"name":"CONTEXT_EXCEPTION_REPORTING_AMD64","features":[30]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM","features":[30]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM64","features":[30]},{"name":"CONTEXT_EXCEPTION_REPORTING_X86","features":[30]},{"name":"CONTEXT_EXCEPTION_REQUEST_AMD64","features":[30]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM","features":[30]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM64","features":[30]},{"name":"CONTEXT_EXCEPTION_REQUEST_X86","features":[30]},{"name":"CONTEXT_EXTENDED_REGISTERS_X86","features":[30]},{"name":"CONTEXT_FLAGS","features":[30]},{"name":"CONTEXT_FLOATING_POINT_AMD64","features":[30]},{"name":"CONTEXT_FLOATING_POINT_ARM","features":[30]},{"name":"CONTEXT_FLOATING_POINT_ARM64","features":[30]},{"name":"CONTEXT_FLOATING_POINT_X86","features":[30]},{"name":"CONTEXT_FULL_AMD64","features":[30]},{"name":"CONTEXT_FULL_ARM","features":[30]},{"name":"CONTEXT_FULL_ARM64","features":[30]},{"name":"CONTEXT_FULL_X86","features":[30]},{"name":"CONTEXT_INTEGER_AMD64","features":[30]},{"name":"CONTEXT_INTEGER_ARM","features":[30]},{"name":"CONTEXT_INTEGER_ARM64","features":[30]},{"name":"CONTEXT_INTEGER_X86","features":[30]},{"name":"CONTEXT_KERNEL_CET_AMD64","features":[30]},{"name":"CONTEXT_KERNEL_DEBUGGER_AMD64","features":[30]},{"name":"CONTEXT_RET_TO_GUEST_ARM64","features":[30]},{"name":"CONTEXT_SEGMENTS_AMD64","features":[30]},{"name":"CONTEXT_SEGMENTS_X86","features":[30]},{"name":"CONTEXT_SERVICE_ACTIVE_AMD64","features":[30]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM","features":[30]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM64","features":[30]},{"name":"CONTEXT_SERVICE_ACTIVE_X86","features":[30]},{"name":"CONTEXT_UNWOUND_TO_CALL_AMD64","features":[30]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM","features":[30]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM64","features":[30]},{"name":"CONTEXT_X18_ARM64","features":[30]},{"name":"CONTEXT_X86","features":[30]},{"name":"CONTEXT_XSTATE_AMD64","features":[30]},{"name":"CONTEXT_XSTATE_X86","features":[30]},{"name":"COREMSGCALL_INTERNAL_ERROR","features":[30]},{"name":"COREMSG_INTERNAL_ERROR","features":[30]},{"name":"CORRUPT_ACCESS_TOKEN","features":[30]},{"name":"CPU_INFORMATION","features":[30]},{"name":"CRASHDUMP_WATCHDOG_TIMEOUT","features":[30]},{"name":"CREATE_DELETE_LOCK_NOT_LOCKED","features":[30]},{"name":"CREATE_PROCESS_DEBUG_EVENT","features":[30]},{"name":"CREATE_PROCESS_DEBUG_INFO","features":[1,30,37]},{"name":"CREATE_THREAD_DEBUG_EVENT","features":[30]},{"name":"CREATE_THREAD_DEBUG_INFO","features":[1,30,37]},{"name":"CRITICAL_INITIALIZATION_FAILURE","features":[30]},{"name":"CRITICAL_OBJECT_TERMINATION","features":[30]},{"name":"CRITICAL_PROCESS_DIED","features":[30]},{"name":"CRITICAL_SERVICE_FAILED","features":[30]},{"name":"CRITICAL_STRUCTURE_CORRUPTION","features":[30]},{"name":"CRYPTO_LIBRARY_INTERNAL_ERROR","features":[30]},{"name":"CRYPTO_SELF_TEST_FAILURE","features":[30]},{"name":"CancelCallback","features":[30]},{"name":"CheckRemoteDebuggerPresent","features":[1,30]},{"name":"CheckSumMappedFile","features":[30,32]},{"name":"CheckSumMappedFile","features":[30,32]},{"name":"CloseThreadWaitChainSession","features":[30]},{"name":"CommentStreamA","features":[30]},{"name":"CommentStreamW","features":[30]},{"name":"ContinueDebugEvent","features":[1,30]},{"name":"CopyContext","features":[1,30,7]},{"name":"DAM_WATCHDOG_TIMEOUT","features":[30]},{"name":"DATA_BUS_ERROR","features":[30]},{"name":"DATA_COHERENCY_EXCEPTION","features":[30]},{"name":"DBGHELP_DATA_REPORT_STRUCT","features":[30]},{"name":"DBGPROP_ATTRIB_ACCESS_FINAL","features":[30]},{"name":"DBGPROP_ATTRIB_ACCESS_PRIVATE","features":[30]},{"name":"DBGPROP_ATTRIB_ACCESS_PROTECTED","features":[30]},{"name":"DBGPROP_ATTRIB_ACCESS_PUBLIC","features":[30]},{"name":"DBGPROP_ATTRIB_FLAGS","features":[30]},{"name":"DBGPROP_ATTRIB_FRAME_INCATCHBLOCK","features":[30]},{"name":"DBGPROP_ATTRIB_FRAME_INFINALLYBLOCK","features":[30]},{"name":"DBGPROP_ATTRIB_FRAME_INTRYBLOCK","features":[30]},{"name":"DBGPROP_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[30]},{"name":"DBGPROP_ATTRIB_NO_ATTRIB","features":[30]},{"name":"DBGPROP_ATTRIB_STORAGE_FIELD","features":[30]},{"name":"DBGPROP_ATTRIB_STORAGE_GLOBAL","features":[30]},{"name":"DBGPROP_ATTRIB_STORAGE_STATIC","features":[30]},{"name":"DBGPROP_ATTRIB_STORAGE_VIRTUAL","features":[30]},{"name":"DBGPROP_ATTRIB_TYPE_IS_CONSTANT","features":[30]},{"name":"DBGPROP_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[30]},{"name":"DBGPROP_ATTRIB_TYPE_IS_VOLATILE","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EVENT","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EXPANDABLE","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_IS_FAKE","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_IS_INVALID","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_IS_METHOD","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RAW_STRING","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RETURN_VALUE","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_PENDING_MUTATION","features":[30]},{"name":"DBGPROP_ATTRIB_VALUE_READONLY","features":[30]},{"name":"DBGPROP_INFO","features":[30]},{"name":"DBGPROP_INFO_ATTRIBUTES","features":[30]},{"name":"DBGPROP_INFO_AUTOEXPAND","features":[30]},{"name":"DBGPROP_INFO_BEAUTIFY","features":[30]},{"name":"DBGPROP_INFO_CALLTOSTRING","features":[30]},{"name":"DBGPROP_INFO_DEBUGPROP","features":[30]},{"name":"DBGPROP_INFO_FULLNAME","features":[30]},{"name":"DBGPROP_INFO_NAME","features":[30]},{"name":"DBGPROP_INFO_TYPE","features":[30]},{"name":"DBGPROP_INFO_VALUE","features":[30]},{"name":"DBHHEADER_CVMISC","features":[30]},{"name":"DBHHEADER_DEBUGDIRS","features":[30]},{"name":"DBHHEADER_PDBGUID","features":[30]},{"name":"DEBUG_EVENT","features":[1,30,37]},{"name":"DEBUG_EVENT_CODE","features":[30]},{"name":"DEREF_UNKNOWN_LOGON_SESSION","features":[30]},{"name":"DEVICE_DIAGNOSTIC_LOG_LIVEDUMP","features":[30]},{"name":"DEVICE_QUEUE_NOT_BUSY","features":[30]},{"name":"DEVICE_REFERENCE_COUNT_NOT_ZERO","features":[30]},{"name":"DFSC_FILE_SYSTEM","features":[30]},{"name":"DFS_FILE_SYSTEM","features":[30]},{"name":"DIGEST_FUNCTION","features":[1,30]},{"name":"DIRECTED_FX_TRANSITION_LIVEDUMP","features":[30]},{"name":"DIRTY_MAPPED_PAGES_CONGESTION","features":[30]},{"name":"DIRTY_NOWRITE_PAGES_CONGESTION","features":[30]},{"name":"DISORDERLY_SHUTDOWN","features":[30]},{"name":"DISPATCHER_CONTEXT","features":[1,30,7]},{"name":"DISPATCHER_CONTEXT","features":[1,30,7]},{"name":"DMA_COMMON_BUFFER_VECTOR_ERROR","features":[30]},{"name":"DMP_CONTEXT_RECORD_SIZE_32","features":[30]},{"name":"DMP_CONTEXT_RECORD_SIZE_64","features":[30]},{"name":"DMP_HEADER_COMMENT_SIZE","features":[30]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_32","features":[30]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_64","features":[30]},{"name":"DMP_RESERVED_0_SIZE_32","features":[30]},{"name":"DMP_RESERVED_0_SIZE_64","features":[30]},{"name":"DMP_RESERVED_2_SIZE_32","features":[30]},{"name":"DMP_RESERVED_3_SIZE_32","features":[30]},{"name":"DPC_WATCHDOG_TIMEOUT","features":[30]},{"name":"DPC_WATCHDOG_VIOLATION","features":[30]},{"name":"DRIPS_SW_HW_DIVERGENCE_LIVEDUMP","features":[30]},{"name":"DRIVER_CAUGHT_MODIFYING_FREED_POOL","features":[30]},{"name":"DRIVER_CORRUPTED_EXPOOL","features":[30]},{"name":"DRIVER_CORRUPTED_MMPOOL","features":[30]},{"name":"DRIVER_CORRUPTED_SYSPTES","features":[30]},{"name":"DRIVER_INVALID_CRUNTIME_PARAMETER","features":[30]},{"name":"DRIVER_INVALID_STACK_ACCESS","features":[30]},{"name":"DRIVER_IRQL_NOT_LESS_OR_EQUAL","features":[30]},{"name":"DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS","features":[30]},{"name":"DRIVER_OVERRAN_STACK_BUFFER","features":[30]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[30]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION_M","features":[30]},{"name":"DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[30]},{"name":"DRIVER_PNP_WATCHDOG","features":[30]},{"name":"DRIVER_PORTION_MUST_BE_NONPAGED","features":[30]},{"name":"DRIVER_POWER_STATE_FAILURE","features":[30]},{"name":"DRIVER_RETURNED_HOLDING_CANCEL_LOCK","features":[30]},{"name":"DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN","features":[30]},{"name":"DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS","features":[30]},{"name":"DRIVER_UNMAPPING_INVALID_VIEW","features":[30]},{"name":"DRIVER_USED_EXCESSIVE_PTES","features":[30]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION","features":[30]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION_LIVEDUMP","features":[30]},{"name":"DRIVER_VERIFIER_DMA_VIOLATION","features":[30]},{"name":"DRIVER_VERIFIER_IOMANAGER_VIOLATION","features":[30]},{"name":"DRIVER_VERIFIER_TRACKING_LIVE_DUMP","features":[30]},{"name":"DRIVER_VIOLATION","features":[30]},{"name":"DRIVE_EXTENDER","features":[30]},{"name":"DSLFLAG_MISMATCHED_DBG","features":[30]},{"name":"DSLFLAG_MISMATCHED_PDB","features":[30]},{"name":"DUMP_FILE_ATTRIBUTES","features":[30]},{"name":"DUMP_HEADER32","features":[1,30]},{"name":"DUMP_HEADER64","features":[1,30]},{"name":"DUMP_SUMMARY_VALID_CURRENT_USER_VA","features":[30]},{"name":"DUMP_SUMMARY_VALID_KERNEL_VA","features":[30]},{"name":"DUMP_TYPE","features":[30]},{"name":"DUMP_TYPE_AUTOMATIC","features":[30]},{"name":"DUMP_TYPE_BITMAP_FULL","features":[30]},{"name":"DUMP_TYPE_BITMAP_KERNEL","features":[30]},{"name":"DUMP_TYPE_FULL","features":[30]},{"name":"DUMP_TYPE_HEADER","features":[30]},{"name":"DUMP_TYPE_INVALID","features":[30]},{"name":"DUMP_TYPE_SUMMARY","features":[30]},{"name":"DUMP_TYPE_TRIAGE","features":[30]},{"name":"DUMP_TYPE_UNKNOWN","features":[30]},{"name":"DYNAMIC_ADD_PROCESSOR_MISMATCH","features":[30]},{"name":"DbgHelpCreateUserDump","features":[1,30]},{"name":"DbgHelpCreateUserDumpW","features":[1,30]},{"name":"DebugActiveProcess","features":[1,30]},{"name":"DebugActiveProcessStop","features":[1,30]},{"name":"DebugBreak","features":[30]},{"name":"DebugBreakProcess","features":[1,30]},{"name":"DebugPropertyInfo","features":[30]},{"name":"DebugSetProcessKillOnExit","features":[1,30]},{"name":"DecodePointer","features":[30]},{"name":"DecodeRemotePointer","features":[1,30]},{"name":"DecodeSystemPointer","features":[30]},{"name":"EFS_FATAL_ERROR","features":[30]},{"name":"ELAM_DRIVER_DETECTED_FATAL_ERROR","features":[30]},{"name":"EMPTY_THREAD_REAPER_LIST","features":[30]},{"name":"EM_INITIALIZATION_ERROR","features":[30]},{"name":"END_OF_NT_EVALUATION_PERIOD","features":[30]},{"name":"ERESOURCE_INVALID_RELEASE","features":[30]},{"name":"ERRATA_WORKAROUND_UNSUCCESSFUL","features":[30]},{"name":"ERROR_IMAGE_NOT_STRIPPED","features":[30]},{"name":"ERROR_NO_DBG_POINTER","features":[30]},{"name":"ERROR_NO_PDB_POINTER","features":[30]},{"name":"ESLFLAG_FULLPATH","features":[30]},{"name":"ESLFLAG_INLINE_SITE","features":[30]},{"name":"ESLFLAG_NEAREST","features":[30]},{"name":"ESLFLAG_NEXT","features":[30]},{"name":"ESLFLAG_PREV","features":[30]},{"name":"EVENT_SRCSPEW","features":[30]},{"name":"EVENT_SRCSPEW_END","features":[30]},{"name":"EVENT_SRCSPEW_START","features":[30]},{"name":"EVENT_TRACING_FATAL_ERROR","features":[30]},{"name":"EXCEPTION_CONTINUE_EXECUTION","features":[30]},{"name":"EXCEPTION_CONTINUE_SEARCH","features":[30]},{"name":"EXCEPTION_DEBUG_EVENT","features":[30]},{"name":"EXCEPTION_DEBUG_INFO","features":[1,30]},{"name":"EXCEPTION_EXECUTE_HANDLER","features":[30]},{"name":"EXCEPTION_ON_INVALID_STACK","features":[30]},{"name":"EXCEPTION_POINTERS","features":[1,30,7]},{"name":"EXCEPTION_RECORD","features":[1,30]},{"name":"EXCEPTION_RECORD32","features":[1,30]},{"name":"EXCEPTION_RECORD64","features":[1,30]},{"name":"EXCEPTION_SCOPE_INVALID","features":[30]},{"name":"EXFAT_FILE_SYSTEM","features":[30]},{"name":"EXIT_PROCESS_DEBUG_EVENT","features":[30]},{"name":"EXIT_PROCESS_DEBUG_INFO","features":[30]},{"name":"EXIT_THREAD_DEBUG_EVENT","features":[30]},{"name":"EXIT_THREAD_DEBUG_INFO","features":[30]},{"name":"EXRESOURCE_TIMEOUT_LIVEDUMP","features":[30]},{"name":"EXT_OUTPUT_VER","features":[30]},{"name":"EX_PROP_INFO_DEBUGEXTPROP","features":[30]},{"name":"EX_PROP_INFO_FLAGS","features":[30]},{"name":"EX_PROP_INFO_ID","features":[30]},{"name":"EX_PROP_INFO_LOCKBYTES","features":[30]},{"name":"EX_PROP_INFO_NTYPE","features":[30]},{"name":"EX_PROP_INFO_NVALUE","features":[30]},{"name":"EncodePointer","features":[30]},{"name":"EncodeRemotePointer","features":[1,30]},{"name":"EncodeSystemPointer","features":[30]},{"name":"EnumDirTree","features":[1,30]},{"name":"EnumDirTreeW","features":[1,30]},{"name":"EnumerateLoadedModules","features":[1,30]},{"name":"EnumerateLoadedModules64","features":[1,30]},{"name":"EnumerateLoadedModulesEx","features":[1,30]},{"name":"EnumerateLoadedModulesExW","features":[1,30]},{"name":"EnumerateLoadedModulesW64","features":[1,30]},{"name":"ExceptionStream","features":[30]},{"name":"ExtendedDebugPropertyInfo","features":[1,41,30,42]},{"name":"FACILITY_AAF","features":[30]},{"name":"FACILITY_ACCELERATOR","features":[30]},{"name":"FACILITY_ACS","features":[30]},{"name":"FACILITY_ACTION_QUEUE","features":[30]},{"name":"FACILITY_AUDCLNT","features":[30]},{"name":"FACILITY_AUDIO","features":[30]},{"name":"FACILITY_AUDIOSTREAMING","features":[30]},{"name":"FACILITY_BACKGROUNDCOPY","features":[30]},{"name":"FACILITY_BCD","features":[30]},{"name":"FACILITY_BLB","features":[30]},{"name":"FACILITY_BLBUI","features":[30]},{"name":"FACILITY_BLB_CLI","features":[30]},{"name":"FACILITY_BLUETOOTH_ATT","features":[30]},{"name":"FACILITY_CERT","features":[30]},{"name":"FACILITY_CMI","features":[30]},{"name":"FACILITY_CODE","features":[30]},{"name":"FACILITY_COMPLUS","features":[30]},{"name":"FACILITY_CONFIGURATION","features":[30]},{"name":"FACILITY_CONTROL","features":[30]},{"name":"FACILITY_DAF","features":[30]},{"name":"FACILITY_DEBUGGERS","features":[30]},{"name":"FACILITY_DEFRAG","features":[30]},{"name":"FACILITY_DELIVERY_OPTIMIZATION","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_BINLSVC","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_CONTENT_PROVIDER","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_DRIVER_PROVISIONING","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_IMAGING","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MANAGEMENT","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_CLIENT","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_SERVER","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_PXE","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_SERVER","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TFTP","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TRANSPORT_MANAGEMENT","features":[30]},{"name":"FACILITY_DEPLOYMENT_SERVICES_UTIL","features":[30]},{"name":"FACILITY_DEVICE_UPDATE_AGENT","features":[30]},{"name":"FACILITY_DIRECT2D","features":[30]},{"name":"FACILITY_DIRECT3D10","features":[30]},{"name":"FACILITY_DIRECT3D11","features":[30]},{"name":"FACILITY_DIRECT3D11_DEBUG","features":[30]},{"name":"FACILITY_DIRECT3D12","features":[30]},{"name":"FACILITY_DIRECT3D12_DEBUG","features":[30]},{"name":"FACILITY_DIRECTMUSIC","features":[30]},{"name":"FACILITY_DIRECTORYSERVICE","features":[30]},{"name":"FACILITY_DISPATCH","features":[30]},{"name":"FACILITY_DLS","features":[30]},{"name":"FACILITY_DMSERVER","features":[30]},{"name":"FACILITY_DPLAY","features":[30]},{"name":"FACILITY_DRVSERVICING","features":[30]},{"name":"FACILITY_DXCORE","features":[30]},{"name":"FACILITY_DXGI","features":[30]},{"name":"FACILITY_DXGI_DDI","features":[30]},{"name":"FACILITY_EAP","features":[30]},{"name":"FACILITY_EAS","features":[30]},{"name":"FACILITY_FVE","features":[30]},{"name":"FACILITY_FWP","features":[30]},{"name":"FACILITY_GAME","features":[30]},{"name":"FACILITY_GRAPHICS","features":[30]},{"name":"FACILITY_HSP_SERVICES","features":[30]},{"name":"FACILITY_HSP_SOFTWARE","features":[30]},{"name":"FACILITY_HTTP","features":[30]},{"name":"FACILITY_INPUT","features":[30]},{"name":"FACILITY_INTERNET","features":[30]},{"name":"FACILITY_IORING","features":[30]},{"name":"FACILITY_ITF","features":[30]},{"name":"FACILITY_JSCRIPT","features":[30]},{"name":"FACILITY_LEAP","features":[30]},{"name":"FACILITY_LINGUISTIC_SERVICES","features":[30]},{"name":"FACILITY_MBN","features":[30]},{"name":"FACILITY_MEDIASERVER","features":[30]},{"name":"FACILITY_METADIRECTORY","features":[30]},{"name":"FACILITY_MOBILE","features":[30]},{"name":"FACILITY_MSMQ","features":[30]},{"name":"FACILITY_NAP","features":[30]},{"name":"FACILITY_NDIS","features":[30]},{"name":"FACILITY_NT_BIT","features":[30]},{"name":"FACILITY_NULL","features":[30]},{"name":"FACILITY_OCP_UPDATE_AGENT","features":[30]},{"name":"FACILITY_ONLINE_ID","features":[30]},{"name":"FACILITY_OPC","features":[30]},{"name":"FACILITY_P2P","features":[30]},{"name":"FACILITY_P2P_INT","features":[30]},{"name":"FACILITY_PARSE","features":[30]},{"name":"FACILITY_PIDGENX","features":[30]},{"name":"FACILITY_PIX","features":[30]},{"name":"FACILITY_PLA","features":[30]},{"name":"FACILITY_POWERSHELL","features":[30]},{"name":"FACILITY_PRESENTATION","features":[30]},{"name":"FACILITY_QUIC","features":[30]},{"name":"FACILITY_RAS","features":[30]},{"name":"FACILITY_RESTORE","features":[30]},{"name":"FACILITY_RPC","features":[30]},{"name":"FACILITY_SCARD","features":[30]},{"name":"FACILITY_SCRIPT","features":[30]},{"name":"FACILITY_SDIAG","features":[30]},{"name":"FACILITY_SECURITY","features":[30]},{"name":"FACILITY_SERVICE_FABRIC","features":[30]},{"name":"FACILITY_SETUPAPI","features":[30]},{"name":"FACILITY_SHELL","features":[30]},{"name":"FACILITY_SOS","features":[30]},{"name":"FACILITY_SPP","features":[30]},{"name":"FACILITY_SQLITE","features":[30]},{"name":"FACILITY_SSPI","features":[30]},{"name":"FACILITY_STATEREPOSITORY","features":[30]},{"name":"FACILITY_STATE_MANAGEMENT","features":[30]},{"name":"FACILITY_STORAGE","features":[30]},{"name":"FACILITY_SXS","features":[30]},{"name":"FACILITY_SYNCENGINE","features":[30]},{"name":"FACILITY_TIERING","features":[30]},{"name":"FACILITY_TPM_SERVICES","features":[30]},{"name":"FACILITY_TPM_SOFTWARE","features":[30]},{"name":"FACILITY_TTD","features":[30]},{"name":"FACILITY_UI","features":[30]},{"name":"FACILITY_UMI","features":[30]},{"name":"FACILITY_URT","features":[30]},{"name":"FACILITY_USERMODE_COMMONLOG","features":[30]},{"name":"FACILITY_USERMODE_FILTER_MANAGER","features":[30]},{"name":"FACILITY_USERMODE_HNS","features":[30]},{"name":"FACILITY_USERMODE_HYPERVISOR","features":[30]},{"name":"FACILITY_USERMODE_LICENSING","features":[30]},{"name":"FACILITY_USERMODE_SDBUS","features":[30]},{"name":"FACILITY_USERMODE_SPACES","features":[30]},{"name":"FACILITY_USERMODE_VHD","features":[30]},{"name":"FACILITY_USERMODE_VIRTUALIZATION","features":[30]},{"name":"FACILITY_USERMODE_VOLMGR","features":[30]},{"name":"FACILITY_USERMODE_VOLSNAP","features":[30]},{"name":"FACILITY_USER_MODE_SECURITY_CORE","features":[30]},{"name":"FACILITY_USN","features":[30]},{"name":"FACILITY_UTC","features":[30]},{"name":"FACILITY_VISUALCPP","features":[30]},{"name":"FACILITY_WEB","features":[30]},{"name":"FACILITY_WEBSERVICES","features":[30]},{"name":"FACILITY_WEB_SOCKET","features":[30]},{"name":"FACILITY_WEP","features":[30]},{"name":"FACILITY_WER","features":[30]},{"name":"FACILITY_WIA","features":[30]},{"name":"FACILITY_WIN32","features":[30]},{"name":"FACILITY_WINCODEC_DWRITE_DWM","features":[30]},{"name":"FACILITY_WINDOWS","features":[30]},{"name":"FACILITY_WINDOWSUPDATE","features":[30]},{"name":"FACILITY_WINDOWS_CE","features":[30]},{"name":"FACILITY_WINDOWS_DEFENDER","features":[30]},{"name":"FACILITY_WINDOWS_SETUP","features":[30]},{"name":"FACILITY_WINDOWS_STORE","features":[30]},{"name":"FACILITY_WINML","features":[30]},{"name":"FACILITY_WINPE","features":[30]},{"name":"FACILITY_WINRM","features":[30]},{"name":"FACILITY_WMAAECMA","features":[30]},{"name":"FACILITY_WPN","features":[30]},{"name":"FACILITY_WSBAPP","features":[30]},{"name":"FACILITY_WSB_ONLINE","features":[30]},{"name":"FACILITY_XAML","features":[30]},{"name":"FACILITY_XBOX","features":[30]},{"name":"FACILITY_XPS","features":[30]},{"name":"FAST_ERESOURCE_PRECONDITION_VIOLATION","features":[30]},{"name":"FATAL_ABNORMAL_RESET_ERROR","features":[30]},{"name":"FATAL_UNHANDLED_HARD_ERROR","features":[30]},{"name":"FAT_FILE_SYSTEM","features":[30]},{"name":"FAULTY_HARDWARE_CORRUPTED_PAGE","features":[30]},{"name":"FILE_INITIALIZATION_FAILED","features":[30]},{"name":"FILE_SYSTEM","features":[30]},{"name":"FLAG_ENGINE_PRESENT","features":[30]},{"name":"FLAG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[30]},{"name":"FLAG_OVERRIDE_ARM_MACHINE_TYPE","features":[30]},{"name":"FLOPPY_INTERNAL_ERROR","features":[30]},{"name":"FLTMGR_FILE_SYSTEM","features":[30]},{"name":"FORMAT_MESSAGE_ALLOCATE_BUFFER","features":[30]},{"name":"FORMAT_MESSAGE_ARGUMENT_ARRAY","features":[30]},{"name":"FORMAT_MESSAGE_FROM_HMODULE","features":[30]},{"name":"FORMAT_MESSAGE_FROM_STRING","features":[30]},{"name":"FORMAT_MESSAGE_FROM_SYSTEM","features":[30]},{"name":"FORMAT_MESSAGE_IGNORE_INSERTS","features":[30]},{"name":"FORMAT_MESSAGE_OPTIONS","features":[30]},{"name":"FPO_DATA","features":[30]},{"name":"FP_EMULATION_ERROR","features":[30]},{"name":"FSRTL_EXTRA_CREATE_PARAMETER_VIOLATION","features":[30]},{"name":"FatalAppExitA","features":[30]},{"name":"FatalAppExitW","features":[30]},{"name":"FatalExit","features":[30]},{"name":"FindDebugInfoFile","features":[1,30]},{"name":"FindDebugInfoFileEx","features":[1,30]},{"name":"FindDebugInfoFileExW","features":[1,30]},{"name":"FindExecutableImage","features":[1,30]},{"name":"FindExecutableImageEx","features":[1,30]},{"name":"FindExecutableImageExW","features":[1,30]},{"name":"FindFileInPath","features":[1,30]},{"name":"FindFileInSearchPath","features":[1,30]},{"name":"FlushInstructionCache","features":[1,30]},{"name":"FormatMessageA","features":[30]},{"name":"FormatMessageW","features":[30]},{"name":"FunctionTableStream","features":[30]},{"name":"GPIO_CONTROLLER_DRIVER_ERROR","features":[30]},{"name":"GetEnabledXStateFeatures","features":[30]},{"name":"GetErrorMode","features":[30]},{"name":"GetImageConfigInformation","features":[1,30,7,32]},{"name":"GetImageConfigInformation","features":[1,30,7,32]},{"name":"GetImageUnusedHeaderBytes","features":[1,30,7,32]},{"name":"GetSymLoadError","features":[30]},{"name":"GetThreadContext","features":[1,30,7]},{"name":"GetThreadErrorMode","features":[30]},{"name":"GetThreadSelectorEntry","features":[1,30]},{"name":"GetThreadWaitChain","features":[1,30]},{"name":"GetTimestampForLoadedLibrary","features":[1,30]},{"name":"GetXStateFeaturesMask","features":[1,30,7]},{"name":"HAL1_INITIALIZATION_FAILED","features":[30]},{"name":"HAL_BLOCKED_PROCESSOR_INTERNAL_ERROR","features":[30]},{"name":"HAL_ILLEGAL_IOMMU_PAGE_FAULT","features":[30]},{"name":"HAL_INITIALIZATION_FAILED","features":[30]},{"name":"HAL_IOMMU_INTERNAL_ERROR","features":[30]},{"name":"HAL_MEMORY_ALLOCATION","features":[30]},{"name":"HANDLE_ERROR_ON_CRITICAL_THREAD","features":[30]},{"name":"HANDLE_LIVE_DUMP","features":[30]},{"name":"HARDWARE_INTERRUPT_STORM","features":[30]},{"name":"HARDWARE_PROFILE_DOCKED_STRING","features":[30]},{"name":"HARDWARE_PROFILE_UNDOCKED_STRING","features":[30]},{"name":"HARDWARE_PROFILE_UNKNOWN_STRING","features":[30]},{"name":"HARDWARE_WATCHDOG_TIMEOUT","features":[30]},{"name":"HTTP_DRIVER_CORRUPTED","features":[30]},{"name":"HYPERGUARD_INITIALIZATION_FAILURE","features":[30]},{"name":"HYPERGUARD_VIOLATION","features":[30]},{"name":"HYPERVISOR_ERROR","features":[30]},{"name":"HandleDataStream","features":[30]},{"name":"HandleOperationListStream","features":[30]},{"name":"IDebugExtendedProperty","features":[30]},{"name":"IDebugProperty","features":[30]},{"name":"IDebugPropertyEnumType_All","features":[30]},{"name":"IDebugPropertyEnumType_Arguments","features":[30]},{"name":"IDebugPropertyEnumType_Locals","features":[30]},{"name":"IDebugPropertyEnumType_LocalsPlusArgs","features":[30]},{"name":"IDebugPropertyEnumType_Registers","features":[30]},{"name":"IEnumDebugExtendedPropertyInfo","features":[30]},{"name":"IEnumDebugPropertyInfo","features":[30]},{"name":"ILLEGAL_ATS_INITIALIZATION","features":[30]},{"name":"ILLEGAL_IOMMU_PAGE_FAULT","features":[30]},{"name":"IMAGEHLP_CBA_EVENT","features":[30]},{"name":"IMAGEHLP_CBA_EVENTW","features":[30]},{"name":"IMAGEHLP_CBA_EVENT_SEVERITY","features":[30]},{"name":"IMAGEHLP_CBA_READ_MEMORY","features":[30]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD","features":[1,30]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD64","features":[1,30]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOADW64","features":[1,30]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL","features":[30]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL64","features":[30]},{"name":"IMAGEHLP_EXTENDED_OPTIONS","features":[30]},{"name":"IMAGEHLP_GET_TYPE_INFO_CHILDREN","features":[30]},{"name":"IMAGEHLP_GET_TYPE_INFO_FLAGS","features":[30]},{"name":"IMAGEHLP_GET_TYPE_INFO_PARAMS","features":[30]},{"name":"IMAGEHLP_GET_TYPE_INFO_UNCACHED","features":[30]},{"name":"IMAGEHLP_HD_TYPE","features":[30]},{"name":"IMAGEHLP_JIT_SYMBOLMAP","features":[30]},{"name":"IMAGEHLP_LINE","features":[30]},{"name":"IMAGEHLP_LINE64","features":[30]},{"name":"IMAGEHLP_LINEW","features":[30]},{"name":"IMAGEHLP_LINEW64","features":[30]},{"name":"IMAGEHLP_MODULE","features":[30]},{"name":"IMAGEHLP_MODULE64","features":[1,30]},{"name":"IMAGEHLP_MODULE64_EX","features":[1,30]},{"name":"IMAGEHLP_MODULEW","features":[30]},{"name":"IMAGEHLP_MODULEW64","features":[1,30]},{"name":"IMAGEHLP_MODULEW64_EX","features":[1,30]},{"name":"IMAGEHLP_MODULE_REGION_ADDITIONAL","features":[30]},{"name":"IMAGEHLP_MODULE_REGION_ALL","features":[30]},{"name":"IMAGEHLP_MODULE_REGION_DLLBASE","features":[30]},{"name":"IMAGEHLP_MODULE_REGION_DLLRANGE","features":[30]},{"name":"IMAGEHLP_MODULE_REGION_JIT","features":[30]},{"name":"IMAGEHLP_RMAP_BIG_ENDIAN","features":[30]},{"name":"IMAGEHLP_RMAP_FIXUP_ARM64X","features":[30]},{"name":"IMAGEHLP_RMAP_FIXUP_IMAGEBASE","features":[30]},{"name":"IMAGEHLP_RMAP_IGNORE_MISCOMPARE","features":[30]},{"name":"IMAGEHLP_RMAP_LOAD_RW_DATA_SECTIONS","features":[30]},{"name":"IMAGEHLP_RMAP_MAPPED_FLAT","features":[30]},{"name":"IMAGEHLP_RMAP_OMIT_SHARED_RW_DATA_SECTIONS","features":[30]},{"name":"IMAGEHLP_SF_TYPE","features":[30]},{"name":"IMAGEHLP_STACK_FRAME","features":[1,30]},{"name":"IMAGEHLP_STATUS_REASON","features":[30]},{"name":"IMAGEHLP_SYMBOL","features":[30]},{"name":"IMAGEHLP_SYMBOL64","features":[30]},{"name":"IMAGEHLP_SYMBOL64_PACKAGE","features":[30]},{"name":"IMAGEHLP_SYMBOLW","features":[30]},{"name":"IMAGEHLP_SYMBOLW64","features":[30]},{"name":"IMAGEHLP_SYMBOLW64_PACKAGE","features":[30]},{"name":"IMAGEHLP_SYMBOLW_PACKAGE","features":[30]},{"name":"IMAGEHLP_SYMBOL_FUNCTION","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_CONSTANT","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_FRAMERELATIVE","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_LOCAL","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_PARAMETER","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_REGISTER","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_REGRELATIVE","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_TLSRELATIVE","features":[30]},{"name":"IMAGEHLP_SYMBOL_INFO_VALUEPRESENT","features":[30]},{"name":"IMAGEHLP_SYMBOL_PACKAGE","features":[30]},{"name":"IMAGEHLP_SYMBOL_SRC","features":[30]},{"name":"IMAGEHLP_SYMBOL_THUNK","features":[30]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO","features":[30]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO_MAX","features":[30]},{"name":"IMAGEHLP_SYMBOL_VIRTUAL","features":[30]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY","features":[30]},{"name":"IMAGE_COFF_SYMBOLS_HEADER","features":[30]},{"name":"IMAGE_COR20_HEADER","features":[30]},{"name":"IMAGE_DATA_DIRECTORY","features":[30]},{"name":"IMAGE_DEBUG_DIRECTORY","features":[30]},{"name":"IMAGE_DEBUG_INFORMATION","features":[1,30,7]},{"name":"IMAGE_DEBUG_TYPE","features":[30]},{"name":"IMAGE_DEBUG_TYPE_BORLAND","features":[30]},{"name":"IMAGE_DEBUG_TYPE_CODEVIEW","features":[30]},{"name":"IMAGE_DEBUG_TYPE_COFF","features":[30]},{"name":"IMAGE_DEBUG_TYPE_EXCEPTION","features":[30]},{"name":"IMAGE_DEBUG_TYPE_FIXUP","features":[30]},{"name":"IMAGE_DEBUG_TYPE_FPO","features":[30]},{"name":"IMAGE_DEBUG_TYPE_MISC","features":[30]},{"name":"IMAGE_DEBUG_TYPE_UNKNOWN","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_ARCHITECTURE","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_BASERELOC","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_DEBUG","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_EXCEPTION","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_EXPORT","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_GLOBALPTR","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_IAT","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_IMPORT","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_RESOURCE","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_SECURITY","features":[30]},{"name":"IMAGE_DIRECTORY_ENTRY_TLS","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_APPCONTAINER","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT_STRICT_MODE","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_DYNAMIC_APIS_ALLOW_IN_PROC","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_1","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_2","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_SET_CONTEXT_IP_VALIDATION_RELAXED_MODE","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_GUARD_CF","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_BIND","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_ISOLATION","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_SEH","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_NX_COMPAT","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE","features":[30]},{"name":"IMAGE_DLLCHARACTERISTICS_WDM_DRIVER","features":[30]},{"name":"IMAGE_DLL_CHARACTERISTICS","features":[30]},{"name":"IMAGE_FILE_32BIT_MACHINE","features":[30]},{"name":"IMAGE_FILE_32BIT_MACHINE2","features":[30]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM","features":[30]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM2","features":[30]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI","features":[30]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI_2","features":[30]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO","features":[30]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO2","features":[30]},{"name":"IMAGE_FILE_CHARACTERISTICS","features":[30]},{"name":"IMAGE_FILE_CHARACTERISTICS2","features":[30]},{"name":"IMAGE_FILE_DEBUG_STRIPPED","features":[30]},{"name":"IMAGE_FILE_DEBUG_STRIPPED2","features":[30]},{"name":"IMAGE_FILE_DLL","features":[30]},{"name":"IMAGE_FILE_DLL_2","features":[30]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE","features":[30]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE2","features":[30]},{"name":"IMAGE_FILE_HEADER","features":[30,32]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE","features":[30]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE2","features":[30]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED","features":[30]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED2","features":[30]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED","features":[30]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED2","features":[30]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP","features":[30]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP2","features":[30]},{"name":"IMAGE_FILE_RELOCS_STRIPPED","features":[30]},{"name":"IMAGE_FILE_RELOCS_STRIPPED2","features":[30]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP","features":[30]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP2","features":[30]},{"name":"IMAGE_FILE_SYSTEM","features":[30]},{"name":"IMAGE_FILE_SYSTEM_2","features":[30]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY","features":[30]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY_2","features":[30]},{"name":"IMAGE_FUNCTION_ENTRY","features":[30]},{"name":"IMAGE_FUNCTION_ENTRY64","features":[30]},{"name":"IMAGE_LOAD_CONFIG_CODE_INTEGRITY","features":[30]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY32","features":[30]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY64","features":[30]},{"name":"IMAGE_NT_HEADERS32","features":[30,32]},{"name":"IMAGE_NT_HEADERS64","features":[30,32]},{"name":"IMAGE_NT_OPTIONAL_HDR32_MAGIC","features":[30]},{"name":"IMAGE_NT_OPTIONAL_HDR64_MAGIC","features":[30]},{"name":"IMAGE_NT_OPTIONAL_HDR_MAGIC","features":[30]},{"name":"IMAGE_OPTIONAL_HEADER32","features":[30]},{"name":"IMAGE_OPTIONAL_HEADER64","features":[30]},{"name":"IMAGE_OPTIONAL_HEADER_MAGIC","features":[30]},{"name":"IMAGE_ROM_HEADERS","features":[30,32]},{"name":"IMAGE_ROM_OPTIONAL_HDR_MAGIC","features":[30]},{"name":"IMAGE_ROM_OPTIONAL_HEADER","features":[30]},{"name":"IMAGE_RUNTIME_FUNCTION_ENTRY","features":[30]},{"name":"IMAGE_SCN_ALIGN_1024BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_128BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_16BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_1BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_2048BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_256BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_2BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_32BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_4096BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_4BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_512BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_64BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_8192BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_8BYTES","features":[30]},{"name":"IMAGE_SCN_ALIGN_MASK","features":[30]},{"name":"IMAGE_SCN_CNT_CODE","features":[30]},{"name":"IMAGE_SCN_CNT_INITIALIZED_DATA","features":[30]},{"name":"IMAGE_SCN_CNT_UNINITIALIZED_DATA","features":[30]},{"name":"IMAGE_SCN_GPREL","features":[30]},{"name":"IMAGE_SCN_LNK_COMDAT","features":[30]},{"name":"IMAGE_SCN_LNK_INFO","features":[30]},{"name":"IMAGE_SCN_LNK_NRELOC_OVFL","features":[30]},{"name":"IMAGE_SCN_LNK_OTHER","features":[30]},{"name":"IMAGE_SCN_LNK_REMOVE","features":[30]},{"name":"IMAGE_SCN_MEM_16BIT","features":[30]},{"name":"IMAGE_SCN_MEM_DISCARDABLE","features":[30]},{"name":"IMAGE_SCN_MEM_EXECUTE","features":[30]},{"name":"IMAGE_SCN_MEM_FARDATA","features":[30]},{"name":"IMAGE_SCN_MEM_LOCKED","features":[30]},{"name":"IMAGE_SCN_MEM_NOT_CACHED","features":[30]},{"name":"IMAGE_SCN_MEM_NOT_PAGED","features":[30]},{"name":"IMAGE_SCN_MEM_PRELOAD","features":[30]},{"name":"IMAGE_SCN_MEM_PURGEABLE","features":[30]},{"name":"IMAGE_SCN_MEM_READ","features":[30]},{"name":"IMAGE_SCN_MEM_SHARED","features":[30]},{"name":"IMAGE_SCN_MEM_WRITE","features":[30]},{"name":"IMAGE_SCN_NO_DEFER_SPEC_EXC","features":[30]},{"name":"IMAGE_SCN_SCALE_INDEX","features":[30]},{"name":"IMAGE_SCN_TYPE_NO_PAD","features":[30]},{"name":"IMAGE_SECTION_CHARACTERISTICS","features":[30]},{"name":"IMAGE_SECTION_HEADER","features":[30]},{"name":"IMAGE_SUBSYSTEM","features":[30]},{"name":"IMAGE_SUBSYSTEM_EFI_APPLICATION","features":[30]},{"name":"IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER","features":[30]},{"name":"IMAGE_SUBSYSTEM_EFI_ROM","features":[30]},{"name":"IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER","features":[30]},{"name":"IMAGE_SUBSYSTEM_NATIVE","features":[30]},{"name":"IMAGE_SUBSYSTEM_NATIVE_WINDOWS","features":[30]},{"name":"IMAGE_SUBSYSTEM_OS2_CUI","features":[30]},{"name":"IMAGE_SUBSYSTEM_POSIX_CUI","features":[30]},{"name":"IMAGE_SUBSYSTEM_UNKNOWN","features":[30]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION","features":[30]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CE_GUI","features":[30]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CUI","features":[30]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_GUI","features":[30]},{"name":"IMAGE_SUBSYSTEM_XBOX","features":[30]},{"name":"IMAGE_SUBSYSTEM_XBOX_CODE_CATALOG","features":[30]},{"name":"IMPERSONATING_WORKER_THREAD","features":[30]},{"name":"INACCESSIBLE_BOOT_DEVICE","features":[30]},{"name":"INCONSISTENT_IRP","features":[30]},{"name":"INLINE_FRAME_CONTEXT_IGNORE","features":[30]},{"name":"INLINE_FRAME_CONTEXT_INIT","features":[30]},{"name":"INSTALL_MORE_MEMORY","features":[30]},{"name":"INSTRUCTION_BUS_ERROR","features":[30]},{"name":"INSTRUCTION_COHERENCY_EXCEPTION","features":[30]},{"name":"INSUFFICIENT_SYSTEM_MAP_REGS","features":[30]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_CALLER","features":[30]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_DATA","features":[30]},{"name":"INTERFACE_USES_DISPEX","features":[30]},{"name":"INTERFACE_USES_SECURITY_MANAGER","features":[30]},{"name":"INTERNAL_POWER_ERROR","features":[30]},{"name":"INTERRUPT_EXCEPTION_NOT_HANDLED","features":[30]},{"name":"INTERRUPT_UNWIND_ATTEMPTED","features":[30]},{"name":"INVALID_AFFINITY_SET","features":[30]},{"name":"INVALID_ALTERNATE_SYSTEM_CALL_HANDLER_REGISTRATION","features":[30]},{"name":"INVALID_CALLBACK_STACK_ADDRESS","features":[30]},{"name":"INVALID_CANCEL_OF_FILE_OPEN","features":[30]},{"name":"INVALID_DATA_ACCESS_TRAP","features":[30]},{"name":"INVALID_DRIVER_HANDLE","features":[30]},{"name":"INVALID_EXTENDED_PROCESSOR_STATE","features":[30]},{"name":"INVALID_FLOATING_POINT_STATE","features":[30]},{"name":"INVALID_HIBERNATED_STATE","features":[30]},{"name":"INVALID_IO_BOOST_STATE","features":[30]},{"name":"INVALID_KERNEL_HANDLE","features":[30]},{"name":"INVALID_KERNEL_STACK_ADDRESS","features":[30]},{"name":"INVALID_MDL_RANGE","features":[30]},{"name":"INVALID_PROCESS_ATTACH_ATTEMPT","features":[30]},{"name":"INVALID_PROCESS_DETACH_ATTEMPT","features":[30]},{"name":"INVALID_PUSH_LOCK_FLAGS","features":[30]},{"name":"INVALID_REGION_OR_SEGMENT","features":[30]},{"name":"INVALID_RUNDOWN_PROTECTION_FLAGS","features":[30]},{"name":"INVALID_SILO_DETACH","features":[30]},{"name":"INVALID_SLOT_ALLOCATOR_FLAGS","features":[30]},{"name":"INVALID_SOFTWARE_INTERRUPT","features":[30]},{"name":"INVALID_THREAD_AFFINITY_STATE","features":[30]},{"name":"INVALID_WORK_QUEUE_ITEM","features":[30]},{"name":"IO1_INITIALIZATION_FAILED","features":[30]},{"name":"IOCTL_IPMI_INTERNAL_RECORD_SEL_EVENT","features":[30]},{"name":"IORING","features":[30]},{"name":"IO_OBJECT_INVALID","features":[30]},{"name":"IO_THREADPOOL_DEADLOCK_LIVEDUMP","features":[30]},{"name":"IObjectSafety","features":[30]},{"name":"IPI_WATCHDOG_TIMEOUT","features":[30]},{"name":"IPMI_IOCTL_INDEX","features":[30]},{"name":"IPMI_OS_SEL_RECORD","features":[30]},{"name":"IPMI_OS_SEL_RECORD_MASK","features":[30]},{"name":"IPMI_OS_SEL_RECORD_TYPE","features":[30]},{"name":"IPMI_OS_SEL_RECORD_VERSION","features":[30]},{"name":"IPMI_OS_SEL_RECORD_VERSION_1","features":[30]},{"name":"IPerPropertyBrowsing2","features":[30]},{"name":"IRQL_GT_ZERO_AT_SYSTEM_SERVICE","features":[30]},{"name":"IRQL_NOT_DISPATCH_LEVEL","features":[30]},{"name":"IRQL_NOT_GREATER_OR_EQUAL","features":[30]},{"name":"IRQL_NOT_LESS_OR_EQUAL","features":[30]},{"name":"IRQL_UNEXPECTED_VALUE","features":[30]},{"name":"ImageAddCertificate","features":[1,125,30]},{"name":"ImageDirectoryEntryToData","features":[1,30]},{"name":"ImageDirectoryEntryToDataEx","features":[1,30]},{"name":"ImageEnumerateCertificates","features":[1,30]},{"name":"ImageGetCertificateData","features":[1,125,30]},{"name":"ImageGetCertificateHeader","features":[1,125,30]},{"name":"ImageGetDigestStream","features":[1,30]},{"name":"ImageLoad","features":[1,30,7,32]},{"name":"ImageNtHeader","features":[30,32]},{"name":"ImageNtHeader","features":[30,32]},{"name":"ImageRemoveCertificate","features":[1,30]},{"name":"ImageRvaToSection","features":[30,32]},{"name":"ImageRvaToSection","features":[30,32]},{"name":"ImageRvaToVa","features":[30,32]},{"name":"ImageRvaToVa","features":[30,32]},{"name":"ImageUnload","features":[1,30,7,32]},{"name":"ImagehlpApiVersion","features":[30]},{"name":"ImagehlpApiVersionEx","features":[30]},{"name":"IncludeModuleCallback","features":[30]},{"name":"IncludeThreadCallback","features":[30]},{"name":"IncludeVmRegionCallback","features":[30]},{"name":"InitializeContext","features":[1,30,7]},{"name":"InitializeContext2","features":[1,30,7]},{"name":"IoFinishCallback","features":[30]},{"name":"IoStartCallback","features":[30]},{"name":"IoWriteAllCallback","features":[30]},{"name":"IpmiOsSelRecordTypeBugcheckData","features":[30]},{"name":"IpmiOsSelRecordTypeBugcheckRecovery","features":[30]},{"name":"IpmiOsSelRecordTypeDriver","features":[30]},{"name":"IpmiOsSelRecordTypeMax","features":[30]},{"name":"IpmiOsSelRecordTypeOther","features":[30]},{"name":"IpmiOsSelRecordTypeRaw","features":[30]},{"name":"IpmiOsSelRecordTypeWhea","features":[30]},{"name":"IpmiOsSelRecordTypeWheaErrorNmi","features":[30]},{"name":"IpmiOsSelRecordTypeWheaErrorOther","features":[30]},{"name":"IpmiOsSelRecordTypeWheaErrorPci","features":[30]},{"name":"IpmiOsSelRecordTypeWheaErrorXpfMca","features":[30]},{"name":"IptTraceStream","features":[30]},{"name":"IsDebuggerPresent","features":[1,30]},{"name":"IsProcessSnapshotCallback","features":[30]},{"name":"JavaScriptDataStream","features":[30]},{"name":"KASAN_ENLIGHTENMENT_VIOLATION","features":[30]},{"name":"KASAN_ILLEGAL_ACCESS","features":[30]},{"name":"KDHELP","features":[30]},{"name":"KDHELP64","features":[30]},{"name":"KERNEL_APC_PENDING_DURING_EXIT","features":[30]},{"name":"KERNEL_AUTO_BOOST_INVALID_LOCK_RELEASE","features":[30]},{"name":"KERNEL_AUTO_BOOST_LOCK_ACQUISITION_WITH_RAISED_IRQL","features":[30]},{"name":"KERNEL_CFG_INIT_FAILURE","features":[30]},{"name":"KERNEL_DATA_INPAGE_ERROR","features":[30]},{"name":"KERNEL_EXPAND_STACK_ACTIVE","features":[30]},{"name":"KERNEL_LOCK_ENTRY_LEAKED_ON_THREAD_TERMINATION","features":[30]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED","features":[30]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED_M","features":[30]},{"name":"KERNEL_MODE_HEAP_CORRUPTION","features":[30]},{"name":"KERNEL_PARTITION_REFERENCE_VIOLATION","features":[30]},{"name":"KERNEL_SECURITY_CHECK_FAILURE","features":[30]},{"name":"KERNEL_STACK_INPAGE_ERROR","features":[30]},{"name":"KERNEL_STACK_LOCKED_AT_EXIT","features":[30]},{"name":"KERNEL_STORAGE_SLOT_IN_USE","features":[30]},{"name":"KERNEL_THREAD_PRIORITY_FLOOR_VIOLATION","features":[30]},{"name":"KERNEL_WMI_INTERNAL","features":[30]},{"name":"KMODE_EXCEPTION_NOT_HANDLED","features":[30]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[30]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[30]},{"name":"KNONVOLATILE_CONTEXT_POINTERS_ARM64","features":[30]},{"name":"KernelMinidumpStatusCallback","features":[30]},{"name":"LAST_CHANCE_CALLED_FROM_KMODE","features":[30]},{"name":"LDT_ENTRY","features":[30]},{"name":"LIVE_SYSTEM_DUMP","features":[30]},{"name":"LM_SERVER_INTERNAL_ERROR","features":[30]},{"name":"LOADED_IMAGE","features":[1,30,7,32]},{"name":"LOADED_IMAGE","features":[1,30,7,32]},{"name":"LOADER_BLOCK_MISMATCH","features":[30]},{"name":"LOADER_ROLLBACK_DETECTED","features":[30]},{"name":"LOAD_DLL_DEBUG_EVENT","features":[30]},{"name":"LOAD_DLL_DEBUG_INFO","features":[1,30]},{"name":"LOCKED_PAGES_TRACKER_CORRUPTION","features":[30]},{"name":"LPCALL_BACK_USER_INTERRUPT_ROUTINE","features":[30]},{"name":"LPC_INITIALIZATION_FAILED","features":[30]},{"name":"LPTOP_LEVEL_EXCEPTION_FILTER","features":[1,30,7]},{"name":"LastReservedStream","features":[30]},{"name":"LocateXStateFeature","features":[30,7]},{"name":"M128A","features":[30]},{"name":"MACHINE_CHECK_EXCEPTION","features":[30]},{"name":"MAILSLOT_FILE_SYSTEM","features":[30]},{"name":"MANUALLY_INITIATED_BLACKSCREEN_HOTKEY_LIVE_DUMP","features":[30]},{"name":"MANUALLY_INITIATED_CRASH","features":[30]},{"name":"MANUALLY_INITIATED_CRASH1","features":[30]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD","features":[30]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD_LIVE_DUMP","features":[30]},{"name":"MAXIMUM_WAIT_OBJECTS_EXCEEDED","features":[30]},{"name":"MAX_SYM_NAME","features":[30]},{"name":"MBR_CHECKSUM_MISMATCH","features":[30]},{"name":"MDL_CACHE","features":[30]},{"name":"MEMORY1_INITIALIZATION_FAILED","features":[30]},{"name":"MEMORY_IMAGE_CORRUPT","features":[30]},{"name":"MEMORY_MANAGEMENT","features":[30]},{"name":"MICROCODE_REVISION_MISMATCH","features":[30]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[1,21,30,7,20]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[1,21,30,7,20]},{"name":"MINIDUMP_CALLBACK_INPUT","features":[1,21,30,7]},{"name":"MINIDUMP_CALLBACK_OUTPUT","features":[1,30,20]},{"name":"MINIDUMP_CALLBACK_ROUTINE","features":[1,21,30,7,20]},{"name":"MINIDUMP_CALLBACK_TYPE","features":[30]},{"name":"MINIDUMP_DIRECTORY","features":[30]},{"name":"MINIDUMP_EXCEPTION","features":[30]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[1,30,7]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[1,30,7]},{"name":"MINIDUMP_EXCEPTION_INFORMATION64","features":[1,30]},{"name":"MINIDUMP_EXCEPTION_STREAM","features":[30]},{"name":"MINIDUMP_FUNCTION_TABLE_DESCRIPTOR","features":[30]},{"name":"MINIDUMP_FUNCTION_TABLE_STREAM","features":[30]},{"name":"MINIDUMP_HANDLE_DATA_STREAM","features":[30]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR","features":[30]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR_2","features":[30]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION","features":[30]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE","features":[30]},{"name":"MINIDUMP_HANDLE_OPERATION_LIST","features":[30]},{"name":"MINIDUMP_HEADER","features":[30]},{"name":"MINIDUMP_INCLUDE_MODULE_CALLBACK","features":[30]},{"name":"MINIDUMP_INCLUDE_THREAD_CALLBACK","features":[30]},{"name":"MINIDUMP_IO_CALLBACK","features":[1,30]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR","features":[30]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR64","features":[30]},{"name":"MINIDUMP_MEMORY64_LIST","features":[30]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR","features":[30]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR64","features":[30]},{"name":"MINIDUMP_MEMORY_INFO","features":[30,20]},{"name":"MINIDUMP_MEMORY_INFO_LIST","features":[30]},{"name":"MINIDUMP_MEMORY_LIST","features":[30]},{"name":"MINIDUMP_MISC1_PROCESSOR_POWER_INFO","features":[30]},{"name":"MINIDUMP_MISC1_PROCESS_ID","features":[30]},{"name":"MINIDUMP_MISC1_PROCESS_TIMES","features":[30]},{"name":"MINIDUMP_MISC3_PROCESS_EXECUTE_FLAGS","features":[30]},{"name":"MINIDUMP_MISC3_PROCESS_INTEGRITY","features":[30]},{"name":"MINIDUMP_MISC3_PROTECTED_PROCESS","features":[30]},{"name":"MINIDUMP_MISC3_TIMEZONE","features":[30]},{"name":"MINIDUMP_MISC4_BUILDSTRING","features":[30]},{"name":"MINIDUMP_MISC5_PROCESS_COOKIE","features":[30]},{"name":"MINIDUMP_MISC_INFO","features":[30]},{"name":"MINIDUMP_MISC_INFO_2","features":[30]},{"name":"MINIDUMP_MISC_INFO_3","features":[1,30,163]},{"name":"MINIDUMP_MISC_INFO_4","features":[1,30,163]},{"name":"MINIDUMP_MISC_INFO_5","features":[1,30,163]},{"name":"MINIDUMP_MISC_INFO_FLAGS","features":[30]},{"name":"MINIDUMP_MODULE","features":[21,30]},{"name":"MINIDUMP_MODULE_CALLBACK","features":[21,30]},{"name":"MINIDUMP_MODULE_LIST","features":[21,30]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS","features":[30]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_1","features":[30]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_2","features":[30]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX","features":[30]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX2","features":[30]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_JOB","features":[30]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_VIRTUALSIZE","features":[30]},{"name":"MINIDUMP_READ_MEMORY_FAILURE_CALLBACK","features":[30]},{"name":"MINIDUMP_SECONDARY_FLAGS","features":[30]},{"name":"MINIDUMP_STREAM_TYPE","features":[30]},{"name":"MINIDUMP_STRING","features":[30]},{"name":"MINIDUMP_SYSMEMINFO1_BASICPERF","features":[30]},{"name":"MINIDUMP_SYSMEMINFO1_FILECACHE_TRANSITIONREPURPOSECOUNT_FLAGS","features":[30]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_CCTOTALDIRTYPAGES_CCDIRTYPAGETHRESHOLD","features":[30]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_RESIDENTAVAILABLEPAGES_SHAREDCOMMITPAGES","features":[30]},{"name":"MINIDUMP_SYSTEM_BASIC_INFORMATION","features":[30]},{"name":"MINIDUMP_SYSTEM_BASIC_PERFORMANCE_INFORMATION","features":[30]},{"name":"MINIDUMP_SYSTEM_FILECACHE_INFORMATION","features":[30]},{"name":"MINIDUMP_SYSTEM_INFO","features":[30,32]},{"name":"MINIDUMP_SYSTEM_MEMORY_INFO_1","features":[30]},{"name":"MINIDUMP_SYSTEM_PERFORMANCE_INFORMATION","features":[30]},{"name":"MINIDUMP_THREAD","features":[30]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[1,30,7]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[1,30,7]},{"name":"MINIDUMP_THREAD_EX","features":[30]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[1,30,7]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[1,30,7]},{"name":"MINIDUMP_THREAD_EX_LIST","features":[30]},{"name":"MINIDUMP_THREAD_INFO","features":[30]},{"name":"MINIDUMP_THREAD_INFO_DUMP_FLAGS","features":[30]},{"name":"MINIDUMP_THREAD_INFO_ERROR_THREAD","features":[30]},{"name":"MINIDUMP_THREAD_INFO_EXITED_THREAD","features":[30]},{"name":"MINIDUMP_THREAD_INFO_INVALID_CONTEXT","features":[30]},{"name":"MINIDUMP_THREAD_INFO_INVALID_INFO","features":[30]},{"name":"MINIDUMP_THREAD_INFO_INVALID_TEB","features":[30]},{"name":"MINIDUMP_THREAD_INFO_LIST","features":[30]},{"name":"MINIDUMP_THREAD_INFO_WRITING_THREAD","features":[30]},{"name":"MINIDUMP_THREAD_LIST","features":[30]},{"name":"MINIDUMP_THREAD_NAME","features":[30]},{"name":"MINIDUMP_THREAD_NAME_LIST","features":[30]},{"name":"MINIDUMP_TOKEN_INFO_HEADER","features":[30]},{"name":"MINIDUMP_TOKEN_INFO_LIST","features":[30]},{"name":"MINIDUMP_TYPE","features":[30]},{"name":"MINIDUMP_UNLOADED_MODULE","features":[30]},{"name":"MINIDUMP_UNLOADED_MODULE_LIST","features":[30]},{"name":"MINIDUMP_USER_RECORD","features":[30]},{"name":"MINIDUMP_USER_STREAM","features":[30]},{"name":"MINIDUMP_USER_STREAM","features":[30]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[30]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[30]},{"name":"MINIDUMP_VERSION","features":[30]},{"name":"MINIDUMP_VM_POST_READ_CALLBACK","features":[30]},{"name":"MINIDUMP_VM_PRE_READ_CALLBACK","features":[30]},{"name":"MINIDUMP_VM_QUERY_CALLBACK","features":[30]},{"name":"MISALIGNED_POINTER_PARAMETER","features":[30]},{"name":"MISMATCHED_HAL","features":[30]},{"name":"MODLOAD_CVMISC","features":[30]},{"name":"MODLOAD_DATA","features":[30]},{"name":"MODLOAD_DATA_TYPE","features":[30]},{"name":"MODLOAD_PDBGUID_PDBAGE","features":[30]},{"name":"MODULE_TYPE_INFO","features":[30]},{"name":"MODULE_WRITE_FLAGS","features":[30]},{"name":"MPSDRV_QUERY_USER","features":[30]},{"name":"MSRPC_STATE_VIOLATION","features":[30]},{"name":"MSSECCORE_ASSERTION_FAILURE","features":[30]},{"name":"MUI_NO_VALID_SYSTEM_LANGUAGE","features":[30]},{"name":"MULTIPLE_IRP_COMPLETE_REQUESTS","features":[30]},{"name":"MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED","features":[30]},{"name":"MUP_FILE_SYSTEM","features":[30]},{"name":"MUST_SUCCEED_POOL_EMPTY","features":[30]},{"name":"MUTEX_ALREADY_OWNED","features":[30]},{"name":"MUTEX_LEVEL_NUMBER_VIOLATION","features":[30]},{"name":"MakeSureDirectoryPathExists","features":[1,30]},{"name":"MapAndLoad","features":[1,30,7,32]},{"name":"MapFileAndCheckSumA","features":[30]},{"name":"MapFileAndCheckSumW","features":[30]},{"name":"Memory64ListStream","features":[30]},{"name":"MemoryCallback","features":[30]},{"name":"MemoryInfoListStream","features":[30]},{"name":"MemoryListStream","features":[30]},{"name":"MessageBeep","features":[1,30,50]},{"name":"MiniDumpFilterMemory","features":[30]},{"name":"MiniDumpFilterModulePaths","features":[30]},{"name":"MiniDumpFilterTriage","features":[30]},{"name":"MiniDumpFilterWriteCombinedMemory","features":[30]},{"name":"MiniDumpIgnoreInaccessibleMemory","features":[30]},{"name":"MiniDumpNormal","features":[30]},{"name":"MiniDumpReadDumpStream","features":[1,30]},{"name":"MiniDumpScanInaccessiblePartialPages","features":[30]},{"name":"MiniDumpScanMemory","features":[30]},{"name":"MiniDumpValidTypeFlags","features":[30]},{"name":"MiniDumpWithAvxXStateContext","features":[30]},{"name":"MiniDumpWithCodeSegs","features":[30]},{"name":"MiniDumpWithDataSegs","features":[30]},{"name":"MiniDumpWithFullAuxiliaryState","features":[30]},{"name":"MiniDumpWithFullMemory","features":[30]},{"name":"MiniDumpWithFullMemoryInfo","features":[30]},{"name":"MiniDumpWithHandleData","features":[30]},{"name":"MiniDumpWithIndirectlyReferencedMemory","features":[30]},{"name":"MiniDumpWithIptTrace","features":[30]},{"name":"MiniDumpWithModuleHeaders","features":[30]},{"name":"MiniDumpWithPrivateReadWriteMemory","features":[30]},{"name":"MiniDumpWithPrivateWriteCopyMemory","features":[30]},{"name":"MiniDumpWithProcessThreadData","features":[30]},{"name":"MiniDumpWithThreadInfo","features":[30]},{"name":"MiniDumpWithTokenInformation","features":[30]},{"name":"MiniDumpWithUnloadedModules","features":[30]},{"name":"MiniDumpWithoutAuxiliaryState","features":[30]},{"name":"MiniDumpWithoutOptionalData","features":[30]},{"name":"MiniDumpWriteDump","features":[1,21,30,7,20]},{"name":"MiniEventInformation1","features":[30]},{"name":"MiniHandleObjectInformationNone","features":[30]},{"name":"MiniHandleObjectInformationTypeMax","features":[30]},{"name":"MiniMutantInformation1","features":[30]},{"name":"MiniMutantInformation2","features":[30]},{"name":"MiniProcessInformation1","features":[30]},{"name":"MiniProcessInformation2","features":[30]},{"name":"MiniSecondaryValidFlags","features":[30]},{"name":"MiniSecondaryWithoutPowerInfo","features":[30]},{"name":"MiniSectionInformation1","features":[30]},{"name":"MiniSemaphoreInformation1","features":[30]},{"name":"MiniThreadInformation1","features":[30]},{"name":"MiscInfoStream","features":[30]},{"name":"ModuleCallback","features":[30]},{"name":"ModuleListStream","features":[30]},{"name":"ModuleReferencedByMemory","features":[30]},{"name":"ModuleWriteCodeSegs","features":[30]},{"name":"ModuleWriteCvRecord","features":[30]},{"name":"ModuleWriteDataSeg","features":[30]},{"name":"ModuleWriteMiscRecord","features":[30]},{"name":"ModuleWriteModule","features":[30]},{"name":"ModuleWriteTlsData","features":[30]},{"name":"NDIS_INTERNAL_ERROR","features":[30]},{"name":"NDIS_NET_BUFFER_LIST_INFO_ILLEGALLY_TRANSFERRED","features":[30]},{"name":"NETIO_INVALID_POOL_CALLER","features":[30]},{"name":"NETWORK_BOOT_DUPLICATE_ADDRESS","features":[30]},{"name":"NETWORK_BOOT_INITIALIZATION_FAILED","features":[30]},{"name":"NMI_HARDWARE_FAILURE","features":[30]},{"name":"NMR_INVALID_STATE","features":[30]},{"name":"NO_BOOT_DEVICE","features":[30]},{"name":"NO_EXCEPTION_HANDLING_SUPPORT","features":[30]},{"name":"NO_MORE_IRP_STACK_LOCATIONS","features":[30]},{"name":"NO_MORE_SYSTEM_PTES","features":[30]},{"name":"NO_PAGES_AVAILABLE","features":[30]},{"name":"NO_SPIN_LOCK_AVAILABLE","features":[30]},{"name":"NO_SUCH_PARTITION","features":[30]},{"name":"NO_USER_MODE_CONTEXT","features":[30]},{"name":"NPFS_FILE_SYSTEM","features":[30]},{"name":"NTFS_FILE_SYSTEM","features":[30]},{"name":"NTHV_GUEST_ERROR","features":[30]},{"name":"NUM_SSRVOPTS","features":[30]},{"name":"NumSymTypes","features":[30]},{"name":"OBJECT1_INITIALIZATION_FAILED","features":[30]},{"name":"OBJECT_ATTRIB_ACCESS_FINAL","features":[30]},{"name":"OBJECT_ATTRIB_ACCESS_PRIVATE","features":[30]},{"name":"OBJECT_ATTRIB_ACCESS_PROTECTED","features":[30]},{"name":"OBJECT_ATTRIB_ACCESS_PUBLIC","features":[30]},{"name":"OBJECT_ATTRIB_FLAGS","features":[30]},{"name":"OBJECT_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[30]},{"name":"OBJECT_ATTRIB_IS_CLASS","features":[30]},{"name":"OBJECT_ATTRIB_IS_FUNCTION","features":[30]},{"name":"OBJECT_ATTRIB_IS_INHERITED","features":[30]},{"name":"OBJECT_ATTRIB_IS_INTERFACE","features":[30]},{"name":"OBJECT_ATTRIB_IS_MACRO","features":[30]},{"name":"OBJECT_ATTRIB_IS_PROPERTY","features":[30]},{"name":"OBJECT_ATTRIB_IS_TYPE","features":[30]},{"name":"OBJECT_ATTRIB_IS_VARIABLE","features":[30]},{"name":"OBJECT_ATTRIB_NO_ATTRIB","features":[30]},{"name":"OBJECT_ATTRIB_NO_NAME","features":[30]},{"name":"OBJECT_ATTRIB_NO_TYPE","features":[30]},{"name":"OBJECT_ATTRIB_NO_VALUE","features":[30]},{"name":"OBJECT_ATTRIB_OBJECT_IS_EXPANDABLE","features":[30]},{"name":"OBJECT_ATTRIB_SLOT_IS_CATEGORY","features":[30]},{"name":"OBJECT_ATTRIB_STORAGE_FIELD","features":[30]},{"name":"OBJECT_ATTRIB_STORAGE_GLOBAL","features":[30]},{"name":"OBJECT_ATTRIB_STORAGE_STATIC","features":[30]},{"name":"OBJECT_ATTRIB_STORAGE_VIRTUAL","features":[30]},{"name":"OBJECT_ATTRIB_TYPE_HAS_CODE","features":[30]},{"name":"OBJECT_ATTRIB_TYPE_IS_CONSTANT","features":[30]},{"name":"OBJECT_ATTRIB_TYPE_IS_EXPANDABLE","features":[30]},{"name":"OBJECT_ATTRIB_TYPE_IS_OBJECT","features":[30]},{"name":"OBJECT_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[30]},{"name":"OBJECT_ATTRIB_TYPE_IS_VOLATILE","features":[30]},{"name":"OBJECT_ATTRIB_VALUE_HAS_CODE","features":[30]},{"name":"OBJECT_ATTRIB_VALUE_IS_CUSTOM","features":[30]},{"name":"OBJECT_ATTRIB_VALUE_IS_ENUM","features":[30]},{"name":"OBJECT_ATTRIB_VALUE_IS_INVALID","features":[30]},{"name":"OBJECT_ATTRIB_VALUE_IS_OBJECT","features":[30]},{"name":"OBJECT_ATTRIB_VALUE_READONLY","features":[30]},{"name":"OBJECT_INITIALIZATION_FAILED","features":[30]},{"name":"OFS_FILE_SYSTEM","features":[30]},{"name":"OMAP","features":[30]},{"name":"OPEN_THREAD_WAIT_CHAIN_SESSION_FLAGS","features":[30]},{"name":"OS_DATA_TAMPERING","features":[30]},{"name":"OUTPUT_DEBUG_STRING_EVENT","features":[30]},{"name":"OUTPUT_DEBUG_STRING_INFO","features":[30]},{"name":"OpenThreadWaitChainSession","features":[1,30]},{"name":"OutputDebugStringA","features":[30]},{"name":"OutputDebugStringW","features":[30]},{"name":"PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[30]},{"name":"PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[30]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA","features":[30]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA_M","features":[30]},{"name":"PAGE_FAULT_WITH_INTERRUPTS_OFF","features":[30]},{"name":"PAGE_NOT_ZERO","features":[30]},{"name":"PANIC_STACK_SWITCH","features":[30]},{"name":"PASSIVE_INTERRUPT_ERROR","features":[30]},{"name":"PCI_BUS_DRIVER_INTERNAL","features":[30]},{"name":"PCI_CONFIG_SPACE_ACCESS_FAILURE","features":[30]},{"name":"PCI_VERIFIER_DETECTED_VIOLATION","features":[30]},{"name":"PCOGETACTIVATIONSTATE","features":[30]},{"name":"PCOGETCALLSTATE","features":[30]},{"name":"PDBGHELP_CREATE_USER_DUMP_CALLBACK","features":[1,30]},{"name":"PDC_LOCK_WATCHDOG_LIVEDUMP","features":[30]},{"name":"PDC_PRIVILEGE_CHECK_LIVEDUMP","features":[30]},{"name":"PDC_UNEXPECTED_REVOCATION_LIVEDUMP","features":[30]},{"name":"PDC_WATCHDOG_TIMEOUT","features":[30]},{"name":"PDC_WATCHDOG_TIMEOUT_LIVEDUMP","features":[30]},{"name":"PENUMDIRTREE_CALLBACK","features":[1,30]},{"name":"PENUMDIRTREE_CALLBACKW","features":[1,30]},{"name":"PENUMLOADED_MODULES_CALLBACK","features":[1,30]},{"name":"PENUMLOADED_MODULES_CALLBACK64","features":[1,30]},{"name":"PENUMLOADED_MODULES_CALLBACKW64","features":[1,30]},{"name":"PENUMSOURCEFILETOKENSCALLBACK","features":[1,30]},{"name":"PFINDFILEINPATHCALLBACK","features":[1,30]},{"name":"PFINDFILEINPATHCALLBACKW","features":[1,30]},{"name":"PFIND_DEBUG_FILE_CALLBACK","features":[1,30]},{"name":"PFIND_DEBUG_FILE_CALLBACKW","features":[1,30]},{"name":"PFIND_EXE_FILE_CALLBACK","features":[1,30]},{"name":"PFIND_EXE_FILE_CALLBACKW","features":[1,30]},{"name":"PFN_LIST_CORRUPT","features":[30]},{"name":"PFN_REFERENCE_COUNT","features":[30]},{"name":"PFN_SHARE_COUNT","features":[30]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE","features":[1,30]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE64","features":[1,30]},{"name":"PF_DETECTED_CORRUPTION","features":[30]},{"name":"PGET_MODULE_BASE_ROUTINE","features":[1,30]},{"name":"PGET_MODULE_BASE_ROUTINE64","features":[1,30]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[30]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[30]},{"name":"PGET_TARGET_ATTRIBUTE_VALUE64","features":[1,30]},{"name":"PHASE0_EXCEPTION","features":[30]},{"name":"PHASE0_INITIALIZATION_FAILED","features":[30]},{"name":"PHASE1_INITIALIZATION_FAILED","features":[30]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR32","features":[30]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR64","features":[30]},{"name":"PHYSICAL_MEMORY_RUN32","features":[30]},{"name":"PHYSICAL_MEMORY_RUN64","features":[30]},{"name":"PIMAGEHLP_STATUS_ROUTINE","features":[1,30]},{"name":"PIMAGEHLP_STATUS_ROUTINE32","features":[1,30]},{"name":"PIMAGEHLP_STATUS_ROUTINE64","features":[1,30]},{"name":"PINBALL_FILE_SYSTEM","features":[30]},{"name":"PNP_DETECTED_FATAL_ERROR","features":[30]},{"name":"PNP_INTERNAL_ERROR","features":[30]},{"name":"POOL_CORRUPTION_IN_FILE_AREA","features":[30]},{"name":"PORT_DRIVER_INTERNAL","features":[30]},{"name":"POWER_FAILURE_SIMULATE","features":[30]},{"name":"PP0_INITIALIZATION_FAILED","features":[30]},{"name":"PP1_INITIALIZATION_FAILED","features":[30]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE","features":[1,30]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE64","features":[1,30]},{"name":"PREVIOUS_FATAL_ABNORMAL_RESET_ERROR","features":[30]},{"name":"PROCESS1_INITIALIZATION_FAILED","features":[30]},{"name":"PROCESSOR_DRIVER_INTERNAL","features":[30]},{"name":"PROCESSOR_START_TIMEOUT","features":[30]},{"name":"PROCESS_HAS_LOCKED_PAGES","features":[30]},{"name":"PROCESS_INITIALIZATION_FAILED","features":[30]},{"name":"PROFILER_CONFIGURATION_ILLEGAL","features":[30]},{"name":"PROP_INFO_ATTRIBUTES","features":[30]},{"name":"PROP_INFO_AUTOEXPAND","features":[30]},{"name":"PROP_INFO_DEBUGPROP","features":[30]},{"name":"PROP_INFO_FLAGS","features":[30]},{"name":"PROP_INFO_FULLNAME","features":[30]},{"name":"PROP_INFO_NAME","features":[30]},{"name":"PROP_INFO_TYPE","features":[30]},{"name":"PROP_INFO_VALUE","features":[30]},{"name":"PSYMBOLSERVERBYINDEXPROC","features":[1,30]},{"name":"PSYMBOLSERVERBYINDEXPROCA","features":[1,30]},{"name":"PSYMBOLSERVERBYINDEXPROCW","features":[1,30]},{"name":"PSYMBOLSERVERCALLBACKPROC","features":[1,30]},{"name":"PSYMBOLSERVERCLOSEPROC","features":[1,30]},{"name":"PSYMBOLSERVERDELTANAME","features":[1,30]},{"name":"PSYMBOLSERVERDELTANAMEW","features":[1,30]},{"name":"PSYMBOLSERVERGETINDEXSTRING","features":[1,30]},{"name":"PSYMBOLSERVERGETINDEXSTRINGW","features":[1,30]},{"name":"PSYMBOLSERVERGETOPTIONDATAPROC","features":[1,30]},{"name":"PSYMBOLSERVERGETOPTIONSPROC","features":[30]},{"name":"PSYMBOLSERVERGETSUPPLEMENT","features":[1,30]},{"name":"PSYMBOLSERVERGETSUPPLEMENTW","features":[1,30]},{"name":"PSYMBOLSERVERGETVERSION","features":[1,30]},{"name":"PSYMBOLSERVERISSTORE","features":[1,30]},{"name":"PSYMBOLSERVERISSTOREW","features":[1,30]},{"name":"PSYMBOLSERVERMESSAGEPROC","features":[1,30]},{"name":"PSYMBOLSERVEROPENPROC","features":[1,30]},{"name":"PSYMBOLSERVERPINGPROC","features":[1,30]},{"name":"PSYMBOLSERVERPINGPROCA","features":[1,30]},{"name":"PSYMBOLSERVERPINGPROCW","features":[1,30]},{"name":"PSYMBOLSERVERPINGPROCWEX","features":[1,30]},{"name":"PSYMBOLSERVERPROC","features":[1,30]},{"name":"PSYMBOLSERVERPROCA","features":[1,30]},{"name":"PSYMBOLSERVERPROCW","features":[1,30]},{"name":"PSYMBOLSERVERSETHTTPAUTHHEADER","features":[1,30]},{"name":"PSYMBOLSERVERSETOPTIONSPROC","features":[1,30]},{"name":"PSYMBOLSERVERSETOPTIONSWPROC","features":[1,30]},{"name":"PSYMBOLSERVERSTOREFILE","features":[1,30]},{"name":"PSYMBOLSERVERSTOREFILEW","features":[1,30]},{"name":"PSYMBOLSERVERSTORESUPPLEMENT","features":[1,30]},{"name":"PSYMBOLSERVERSTORESUPPLEMENTW","features":[1,30]},{"name":"PSYMBOLSERVERVERSION","features":[30]},{"name":"PSYMBOLSERVERWEXPROC","features":[1,30]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK","features":[1,30]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK64","features":[1,30]},{"name":"PSYMBOL_REGISTERED_CALLBACK","features":[1,30]},{"name":"PSYMBOL_REGISTERED_CALLBACK64","features":[1,30]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACK","features":[1,30]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACKW","features":[1,30]},{"name":"PSYM_ENUMLINES_CALLBACK","features":[1,30]},{"name":"PSYM_ENUMLINES_CALLBACKW","features":[1,30]},{"name":"PSYM_ENUMMODULES_CALLBACK","features":[1,30]},{"name":"PSYM_ENUMMODULES_CALLBACK64","features":[1,30]},{"name":"PSYM_ENUMMODULES_CALLBACKW64","features":[1,30]},{"name":"PSYM_ENUMPROCESSES_CALLBACK","features":[1,30]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACK","features":[1,30]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACKW","features":[1,30]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK","features":[1,30]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64","features":[1,30]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64W","features":[1,30]},{"name":"PSYM_ENUMSYMBOLS_CALLBACKW","features":[1,30]},{"name":"PTRANSLATE_ADDRESS_ROUTINE","features":[1,30]},{"name":"PTRANSLATE_ADDRESS_ROUTINE64","features":[1,30]},{"name":"PVECTORED_EXCEPTION_HANDLER","features":[1,30,7]},{"name":"PWAITCHAINCALLBACK","features":[1,30]},{"name":"ProcessVmCountersStream","features":[30]},{"name":"QUOTA_UNDERFLOW","features":[30]},{"name":"RAMDISK_BOOT_INITIALIZATION_FAILED","features":[30]},{"name":"RDR_FILE_SYSTEM","features":[30]},{"name":"RECOM_DRIVER","features":[30]},{"name":"RECURSIVE_MACHINE_CHECK","features":[30]},{"name":"RECURSIVE_NMI","features":[30]},{"name":"REFERENCE_BY_POINTER","features":[30]},{"name":"REFMON_INITIALIZATION_FAILED","features":[30]},{"name":"REFS_FILE_SYSTEM","features":[30]},{"name":"REF_UNKNOWN_LOGON_SESSION","features":[30]},{"name":"REGISTRY_CALLBACK_DRIVER_EXCEPTION","features":[30]},{"name":"REGISTRY_ERROR","features":[30]},{"name":"REGISTRY_FILTER_DRIVER_EXCEPTION","features":[30]},{"name":"REGISTRY_LIVE_DUMP","features":[30]},{"name":"RESERVE_QUEUE_OVERFLOW","features":[30]},{"name":"RESOURCE_NOT_OWNED","features":[30]},{"name":"RESOURCE_OWNER_POINTER_INVALID","features":[30]},{"name":"RESTORE_LAST_ERROR_NAME","features":[30]},{"name":"RESTORE_LAST_ERROR_NAME_A","features":[30]},{"name":"RESTORE_LAST_ERROR_NAME_W","features":[30]},{"name":"RIP_EVENT","features":[30]},{"name":"RIP_INFO","features":[30]},{"name":"RIP_INFO_TYPE","features":[30]},{"name":"RTL_VIRTUAL_UNWIND_HANDLER_TYPE","features":[30]},{"name":"RaiseException","features":[30]},{"name":"RaiseFailFastException","features":[1,30,7]},{"name":"RangeMapAddPeImageSections","features":[1,30]},{"name":"RangeMapCreate","features":[30]},{"name":"RangeMapFree","features":[30]},{"name":"RangeMapRead","features":[1,30]},{"name":"RangeMapRemove","features":[1,30]},{"name":"RangeMapWrite","features":[1,30]},{"name":"ReBaseImage","features":[1,30]},{"name":"ReBaseImage64","features":[1,30]},{"name":"ReadMemoryFailureCallback","features":[30]},{"name":"ReadProcessMemory","features":[1,30]},{"name":"RegisterWaitChainCOMCallback","features":[30]},{"name":"RemoveInvalidModuleList","features":[1,30]},{"name":"RemoveMemoryCallback","features":[30]},{"name":"RemoveVectoredContinueHandler","features":[30]},{"name":"RemoveVectoredExceptionHandler","features":[30]},{"name":"ReportSymbolLoadSummary","features":[1,30]},{"name":"ReservedStream0","features":[30]},{"name":"ReservedStream1","features":[30]},{"name":"RtlAddFunctionTable","features":[1,30]},{"name":"RtlAddFunctionTable","features":[1,30]},{"name":"RtlAddGrowableFunctionTable","features":[30]},{"name":"RtlAddGrowableFunctionTable","features":[30]},{"name":"RtlCaptureContext","features":[30,7]},{"name":"RtlCaptureContext2","features":[30,7]},{"name":"RtlCaptureStackBackTrace","features":[30]},{"name":"RtlDeleteFunctionTable","features":[1,30]},{"name":"RtlDeleteFunctionTable","features":[1,30]},{"name":"RtlDeleteGrowableFunctionTable","features":[30]},{"name":"RtlGrowFunctionTable","features":[30]},{"name":"RtlInstallFunctionTableCallback","features":[1,30]},{"name":"RtlInstallFunctionTableCallback","features":[1,30]},{"name":"RtlLookupFunctionEntry","features":[30]},{"name":"RtlLookupFunctionEntry","features":[30]},{"name":"RtlPcToFileHeader","features":[30]},{"name":"RtlRaiseException","features":[1,30]},{"name":"RtlRestoreContext","features":[1,30,7]},{"name":"RtlUnwind","features":[1,30]},{"name":"RtlUnwindEx","features":[1,30,7]},{"name":"RtlVirtualUnwind","features":[1,30,7]},{"name":"RtlVirtualUnwind","features":[1,30,7]},{"name":"SAVER_ACCOUNTPROVSVCINITFAILURE","features":[30]},{"name":"SAVER_APPBARDISMISSAL","features":[30]},{"name":"SAVER_APPLISTUNREACHABLE","features":[30]},{"name":"SAVER_AUDIODRIVERHANG","features":[30]},{"name":"SAVER_AUXILIARYFULLDUMP","features":[30]},{"name":"SAVER_BATTERYPULLOUT","features":[30]},{"name":"SAVER_BLANKSCREEN","features":[30]},{"name":"SAVER_CALLDISMISSAL","features":[30]},{"name":"SAVER_CAPTURESERVICE","features":[30]},{"name":"SAVER_CHROMEPROCESSCRASH","features":[30]},{"name":"SAVER_DEVICEUPDATEUNSPECIFIED","features":[30]},{"name":"SAVER_GRAPHICS","features":[30]},{"name":"SAVER_INPUT","features":[30]},{"name":"SAVER_MEDIACORETESTHANG","features":[30]},{"name":"SAVER_MTBFCOMMANDHANG","features":[30]},{"name":"SAVER_MTBFCOMMANDTIMEOUT","features":[30]},{"name":"SAVER_MTBFIOERROR","features":[30]},{"name":"SAVER_MTBFPASSBUGCHECK","features":[30]},{"name":"SAVER_NAVIGATIONMODEL","features":[30]},{"name":"SAVER_NAVSERVERTIMEOUT","features":[30]},{"name":"SAVER_NONRESPONSIVEPROCESS","features":[30]},{"name":"SAVER_NOTIFICATIONDISMISSAL","features":[30]},{"name":"SAVER_OUTOFMEMORY","features":[30]},{"name":"SAVER_RENDERMOBILEUIOOM","features":[30]},{"name":"SAVER_RENDERTHREADHANG","features":[30]},{"name":"SAVER_REPORTNOTIFICATIONFAILURE","features":[30]},{"name":"SAVER_RESOURCEMANAGEMENT","features":[30]},{"name":"SAVER_RILADAPTATIONCRASH","features":[30]},{"name":"SAVER_RPCFAILURE","features":[30]},{"name":"SAVER_SICKAPPLICATION","features":[30]},{"name":"SAVER_SPEECHDISMISSAL","features":[30]},{"name":"SAVER_STARTNOTVISIBLE","features":[30]},{"name":"SAVER_UNEXPECTEDSHUTDOWN","features":[30]},{"name":"SAVER_UNSPECIFIED","features":[30]},{"name":"SAVER_WAITFORSHELLREADY","features":[30]},{"name":"SAVER_WATCHDOG","features":[30]},{"name":"SCSI_DISK_DRIVER_INTERNAL","features":[30]},{"name":"SCSI_VERIFIER_DETECTED_VIOLATION","features":[30]},{"name":"SDBUS_INTERNAL_ERROR","features":[30]},{"name":"SECURE_BOOT_VIOLATION","features":[30]},{"name":"SECURE_FAULT_UNHANDLED","features":[30]},{"name":"SECURE_KERNEL_ERROR","features":[30]},{"name":"SECURE_PCI_CONFIG_SPACE_ACCESS_VIOLATION","features":[30]},{"name":"SECURITY1_INITIALIZATION_FAILED","features":[30]},{"name":"SECURITY_INITIALIZATION_FAILED","features":[30]},{"name":"SECURITY_SYSTEM","features":[30]},{"name":"SEM_ALL_ERRORS","features":[30]},{"name":"SEM_FAILCRITICALERRORS","features":[30]},{"name":"SEM_NOALIGNMENTFAULTEXCEPT","features":[30]},{"name":"SEM_NOGPFAULTERRORBOX","features":[30]},{"name":"SEM_NOOPENFILEERRORBOX","features":[30]},{"name":"SERIAL_DRIVER_INTERNAL","features":[30]},{"name":"SESSION1_INITIALIZATION_FAILED","features":[30]},{"name":"SESSION_HAS_VALID_POOL_ON_EXIT","features":[30]},{"name":"SESSION_HAS_VALID_SPECIAL_POOL_ON_EXIT","features":[30]},{"name":"SESSION_HAS_VALID_VIEWS_ON_EXIT","features":[30]},{"name":"SETUP_FAILURE","features":[30]},{"name":"SET_ENV_VAR_FAILED","features":[30]},{"name":"SET_OF_INVALID_CONTEXT","features":[30]},{"name":"SHARED_RESOURCE_CONV_ERROR","features":[30]},{"name":"SILO_CORRUPT","features":[30]},{"name":"SLE_ERROR","features":[30]},{"name":"SLE_MINORERROR","features":[30]},{"name":"SLE_WARNING","features":[30]},{"name":"SLMFLAG_ALT_INDEX","features":[30]},{"name":"SLMFLAG_NONE","features":[30]},{"name":"SLMFLAG_NO_SYMBOLS","features":[30]},{"name":"SLMFLAG_VIRTUAL","features":[30]},{"name":"SMB_REDIRECTOR_LIVEDUMP","features":[30]},{"name":"SMB_SERVER_LIVEDUMP","features":[30]},{"name":"SOC_CRITICAL_DEVICE_REMOVED","features":[30]},{"name":"SOC_SUBSYSTEM_FAILURE","features":[30]},{"name":"SOC_SUBSYSTEM_FAILURE_LIVEDUMP","features":[30]},{"name":"SOFT_RESTART_FATAL_ERROR","features":[30]},{"name":"SOURCEFILE","features":[30]},{"name":"SOURCEFILEW","features":[30]},{"name":"SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION","features":[30]},{"name":"SPIN_LOCK_ALREADY_OWNED","features":[30]},{"name":"SPIN_LOCK_INIT_FAILURE","features":[30]},{"name":"SPIN_LOCK_NOT_OWNED","features":[30]},{"name":"SPLITSYM_EXTRACT_ALL","features":[30]},{"name":"SPLITSYM_REMOVE_PRIVATE","features":[30]},{"name":"SPLITSYM_SYMBOLPATH_IS_SRC","features":[30]},{"name":"SRCCODEINFO","features":[30]},{"name":"SRCCODEINFOW","features":[30]},{"name":"SSRVACTION_CHECKSUMSTATUS","features":[30]},{"name":"SSRVACTION_EVENT","features":[30]},{"name":"SSRVACTION_EVENTW","features":[30]},{"name":"SSRVACTION_HTTPSTATUS","features":[30]},{"name":"SSRVACTION_QUERYCANCEL","features":[30]},{"name":"SSRVACTION_SIZE","features":[30]},{"name":"SSRVACTION_TRACE","features":[30]},{"name":"SSRVACTION_XMLOUTPUT","features":[30]},{"name":"SSRVOPT_CALLBACK","features":[30]},{"name":"SSRVOPT_CALLBACKW","features":[30]},{"name":"SSRVOPT_DISABLE_PING_HOST","features":[30]},{"name":"SSRVOPT_DISABLE_TIMEOUT","features":[30]},{"name":"SSRVOPT_DONT_UNCOMPRESS","features":[30]},{"name":"SSRVOPT_DOWNSTREAM_STORE","features":[30]},{"name":"SSRVOPT_DWORD","features":[30]},{"name":"SSRVOPT_DWORDPTR","features":[30]},{"name":"SSRVOPT_ENABLE_COMM_MSG","features":[30]},{"name":"SSRVOPT_FAVOR_COMPRESSED","features":[30]},{"name":"SSRVOPT_FLAT_DEFAULT_STORE","features":[30]},{"name":"SSRVOPT_GETPATH","features":[30]},{"name":"SSRVOPT_GUIDPTR","features":[30]},{"name":"SSRVOPT_MAX","features":[30]},{"name":"SSRVOPT_MESSAGE","features":[30]},{"name":"SSRVOPT_NOCOPY","features":[30]},{"name":"SSRVOPT_OLDGUIDPTR","features":[30]},{"name":"SSRVOPT_OVERWRITE","features":[30]},{"name":"SSRVOPT_PARAMTYPE","features":[30]},{"name":"SSRVOPT_PARENTWIN","features":[30]},{"name":"SSRVOPT_PROXY","features":[30]},{"name":"SSRVOPT_PROXYW","features":[30]},{"name":"SSRVOPT_RESETTOU","features":[30]},{"name":"SSRVOPT_RETRY_APP_HANG","features":[30]},{"name":"SSRVOPT_SECURE","features":[30]},{"name":"SSRVOPT_SERVICE","features":[30]},{"name":"SSRVOPT_SETCONTEXT","features":[30]},{"name":"SSRVOPT_STRING","features":[30]},{"name":"SSRVOPT_TRACE","features":[30]},{"name":"SSRVOPT_UNATTENDED","features":[30]},{"name":"SSRVOPT_URI_FILTER","features":[30]},{"name":"SSRVOPT_URI_TIERS","features":[30]},{"name":"SSRVOPT_WINHTTP","features":[30]},{"name":"SSRVOPT_WININET","features":[30]},{"name":"SSRVURI_ALL","features":[30]},{"name":"SSRVURI_COMPRESSED","features":[30]},{"name":"SSRVURI_FILEPTR","features":[30]},{"name":"SSRVURI_HTTP_COMPRESSED","features":[30]},{"name":"SSRVURI_HTTP_FILEPTR","features":[30]},{"name":"SSRVURI_HTTP_MASK","features":[30]},{"name":"SSRVURI_HTTP_NORMAL","features":[30]},{"name":"SSRVURI_NORMAL","features":[30]},{"name":"SSRVURI_UNC_COMPRESSED","features":[30]},{"name":"SSRVURI_UNC_FILEPTR","features":[30]},{"name":"SSRVURI_UNC_MASK","features":[30]},{"name":"SSRVURI_UNC_NORMAL","features":[30]},{"name":"STACKFRAME","features":[1,30]},{"name":"STACKFRAME64","features":[1,30]},{"name":"STACKFRAME_EX","features":[1,30]},{"name":"STORAGE_DEVICE_ABNORMALITY_DETECTED","features":[30]},{"name":"STORAGE_MINIPORT_ERROR","features":[30]},{"name":"STORE_DATA_STRUCTURE_CORRUPTION","features":[30]},{"name":"STREAMS_INTERNAL_ERROR","features":[30]},{"name":"SYMADDSOURCESTREAM","features":[1,30]},{"name":"SYMADDSOURCESTREAMA","features":[1,30]},{"name":"SYMBOLIC_INITIALIZATION_FAILED","features":[30]},{"name":"SYMBOL_INFO","features":[30]},{"name":"SYMBOL_INFOW","features":[30]},{"name":"SYMBOL_INFO_FLAGS","features":[30]},{"name":"SYMBOL_INFO_PACKAGE","features":[30]},{"name":"SYMBOL_INFO_PACKAGEW","features":[30]},{"name":"SYMENUM_OPTIONS_DEFAULT","features":[30]},{"name":"SYMENUM_OPTIONS_INLINE","features":[30]},{"name":"SYMFLAG_CLR_TOKEN","features":[30]},{"name":"SYMFLAG_CONSTANT","features":[30]},{"name":"SYMFLAG_EXPORT","features":[30]},{"name":"SYMFLAG_FIXUP_ARM64X","features":[30]},{"name":"SYMFLAG_FORWARDER","features":[30]},{"name":"SYMFLAG_FRAMEREL","features":[30]},{"name":"SYMFLAG_FUNCTION","features":[30]},{"name":"SYMFLAG_FUNC_NO_RETURN","features":[30]},{"name":"SYMFLAG_GLOBAL","features":[30]},{"name":"SYMFLAG_ILREL","features":[30]},{"name":"SYMFLAG_LOCAL","features":[30]},{"name":"SYMFLAG_METADATA","features":[30]},{"name":"SYMFLAG_NULL","features":[30]},{"name":"SYMFLAG_PARAMETER","features":[30]},{"name":"SYMFLAG_PUBLIC_CODE","features":[30]},{"name":"SYMFLAG_REGISTER","features":[30]},{"name":"SYMFLAG_REGREL","features":[30]},{"name":"SYMFLAG_REGREL_ALIASINDIR","features":[30]},{"name":"SYMFLAG_RESET","features":[30]},{"name":"SYMFLAG_SLOT","features":[30]},{"name":"SYMFLAG_SYNTHETIC_ZEROBASE","features":[30]},{"name":"SYMFLAG_THUNK","features":[30]},{"name":"SYMFLAG_TLSREL","features":[30]},{"name":"SYMFLAG_VALUEPRESENT","features":[30]},{"name":"SYMFLAG_VIRTUAL","features":[30]},{"name":"SYMF_CONSTANT","features":[30]},{"name":"SYMF_EXPORT","features":[30]},{"name":"SYMF_FORWARDER","features":[30]},{"name":"SYMF_FRAMEREL","features":[30]},{"name":"SYMF_FUNCTION","features":[30]},{"name":"SYMF_LOCAL","features":[30]},{"name":"SYMF_OMAP_GENERATED","features":[30]},{"name":"SYMF_OMAP_MODIFIED","features":[30]},{"name":"SYMF_PARAMETER","features":[30]},{"name":"SYMF_REGISTER","features":[30]},{"name":"SYMF_REGREL","features":[30]},{"name":"SYMF_THUNK","features":[30]},{"name":"SYMF_TLSREL","features":[30]},{"name":"SYMF_VIRTUAL","features":[30]},{"name":"SYMOPT_ALLOW_ABSOLUTE_SYMBOLS","features":[30]},{"name":"SYMOPT_ALLOW_ZERO_ADDRESS","features":[30]},{"name":"SYMOPT_AUTO_PUBLICS","features":[30]},{"name":"SYMOPT_CASE_INSENSITIVE","features":[30]},{"name":"SYMOPT_DEBUG","features":[30]},{"name":"SYMOPT_DEFERRED_LOADS","features":[30]},{"name":"SYMOPT_DISABLE_FAST_SYMBOLS","features":[30]},{"name":"SYMOPT_DISABLE_SRVSTAR_ON_STARTUP","features":[30]},{"name":"SYMOPT_DISABLE_SYMSRV_AUTODETECT","features":[30]},{"name":"SYMOPT_DISABLE_SYMSRV_TIMEOUT","features":[30]},{"name":"SYMOPT_EXACT_SYMBOLS","features":[30]},{"name":"SYMOPT_EX_DISABLEACCESSTIMEUPDATE","features":[30]},{"name":"SYMOPT_EX_LASTVALIDDEBUGDIRECTORY","features":[30]},{"name":"SYMOPT_EX_MAX","features":[30]},{"name":"SYMOPT_EX_NEVERLOADSYMBOLS","features":[30]},{"name":"SYMOPT_EX_NOIMPLICITPATTERNSEARCH","features":[30]},{"name":"SYMOPT_FAIL_CRITICAL_ERRORS","features":[30]},{"name":"SYMOPT_FAVOR_COMPRESSED","features":[30]},{"name":"SYMOPT_FLAT_DIRECTORY","features":[30]},{"name":"SYMOPT_IGNORE_CVREC","features":[30]},{"name":"SYMOPT_IGNORE_IMAGEDIR","features":[30]},{"name":"SYMOPT_IGNORE_NT_SYMPATH","features":[30]},{"name":"SYMOPT_INCLUDE_32BIT_MODULES","features":[30]},{"name":"SYMOPT_LOAD_ANYTHING","features":[30]},{"name":"SYMOPT_LOAD_LINES","features":[30]},{"name":"SYMOPT_NO_CPP","features":[30]},{"name":"SYMOPT_NO_IMAGE_SEARCH","features":[30]},{"name":"SYMOPT_NO_PROMPTS","features":[30]},{"name":"SYMOPT_NO_PUBLICS","features":[30]},{"name":"SYMOPT_NO_UNQUALIFIED_LOADS","features":[30]},{"name":"SYMOPT_OMAP_FIND_NEAREST","features":[30]},{"name":"SYMOPT_OVERWRITE","features":[30]},{"name":"SYMOPT_PUBLICS_ONLY","features":[30]},{"name":"SYMOPT_READONLY_CACHE","features":[30]},{"name":"SYMOPT_SECURE","features":[30]},{"name":"SYMOPT_SYMPATH_LAST","features":[30]},{"name":"SYMOPT_UNDNAME","features":[30]},{"name":"SYMSEARCH_ALLITEMS","features":[30]},{"name":"SYMSEARCH_GLOBALSONLY","features":[30]},{"name":"SYMSEARCH_MASKOBJS","features":[30]},{"name":"SYMSEARCH_RECURSE","features":[30]},{"name":"SYMSRV_EXTENDED_OUTPUT_DATA","features":[30]},{"name":"SYMSRV_INDEX_INFO","features":[1,30]},{"name":"SYMSRV_INDEX_INFOW","features":[1,30]},{"name":"SYMSRV_VERSION","features":[30]},{"name":"SYMSTOREOPT_ALT_INDEX","features":[30]},{"name":"SYMSTOREOPT_COMPRESS","features":[30]},{"name":"SYMSTOREOPT_OVERWRITE","features":[30]},{"name":"SYMSTOREOPT_PASS_IF_EXISTS","features":[30]},{"name":"SYMSTOREOPT_POINTER","features":[30]},{"name":"SYMSTOREOPT_RETURNINDEX","features":[30]},{"name":"SYMSTOREOPT_UNICODE","features":[30]},{"name":"SYM_FIND_ID_OPTION","features":[30]},{"name":"SYM_INLINE_COMP_DIFFERENT","features":[30]},{"name":"SYM_INLINE_COMP_ERROR","features":[30]},{"name":"SYM_INLINE_COMP_IDENTICAL","features":[30]},{"name":"SYM_INLINE_COMP_STEPIN","features":[30]},{"name":"SYM_INLINE_COMP_STEPOUT","features":[30]},{"name":"SYM_INLINE_COMP_STEPOVER","features":[30]},{"name":"SYM_LOAD_FLAGS","features":[30]},{"name":"SYM_SRV_STORE_FILE_FLAGS","features":[30]},{"name":"SYM_STKWALK_DEFAULT","features":[30]},{"name":"SYM_STKWALK_FORCE_FRAMEPTR","features":[30]},{"name":"SYM_STKWALK_ZEROEXTEND_PTRS","features":[30]},{"name":"SYM_TYPE","features":[30]},{"name":"SYNTHETIC_EXCEPTION_UNHANDLED","features":[30]},{"name":"SYNTHETIC_WATCHDOG_TIMEOUT","features":[30]},{"name":"SYSTEM_EXIT_OWNED_MUTEX","features":[30]},{"name":"SYSTEM_IMAGE_BAD_SIGNATURE","features":[30]},{"name":"SYSTEM_LICENSE_VIOLATION","features":[30]},{"name":"SYSTEM_PTE_MISUSE","features":[30]},{"name":"SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD","features":[30]},{"name":"SYSTEM_SERVICE_EXCEPTION","features":[30]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED","features":[30]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M","features":[30]},{"name":"SYSTEM_UNWIND_PREVIOUS_USER","features":[30]},{"name":"SearchTreeForFile","features":[1,30]},{"name":"SearchTreeForFileW","features":[1,30]},{"name":"SecondaryFlagsCallback","features":[30]},{"name":"SetCheckUserInterruptShared","features":[30]},{"name":"SetErrorMode","features":[30]},{"name":"SetImageConfigInformation","features":[1,30,7,32]},{"name":"SetImageConfigInformation","features":[1,30,7,32]},{"name":"SetSymLoadError","features":[30]},{"name":"SetThreadContext","features":[1,30,7]},{"name":"SetThreadErrorMode","features":[1,30]},{"name":"SetUnhandledExceptionFilter","features":[1,30,7]},{"name":"SetXStateFeaturesMask","features":[1,30,7]},{"name":"StackWalk","features":[1,30]},{"name":"StackWalk2","features":[1,30]},{"name":"StackWalk64","features":[1,30]},{"name":"StackWalkEx","features":[1,30]},{"name":"SymAddSourceStream","features":[1,30]},{"name":"SymAddSourceStreamA","features":[1,30]},{"name":"SymAddSourceStreamW","features":[1,30]},{"name":"SymAddSymbol","features":[1,30]},{"name":"SymAddSymbolW","features":[1,30]},{"name":"SymAddrIncludeInlineTrace","features":[1,30]},{"name":"SymCleanup","features":[1,30]},{"name":"SymCoff","features":[30]},{"name":"SymCompareInlineTrace","features":[1,30]},{"name":"SymCv","features":[30]},{"name":"SymDeferred","features":[30]},{"name":"SymDeleteSymbol","features":[1,30]},{"name":"SymDeleteSymbolW","features":[1,30]},{"name":"SymDia","features":[30]},{"name":"SymEnumLines","features":[1,30]},{"name":"SymEnumLinesW","features":[1,30]},{"name":"SymEnumProcesses","features":[1,30]},{"name":"SymEnumSourceFileTokens","features":[1,30]},{"name":"SymEnumSourceFiles","features":[1,30]},{"name":"SymEnumSourceFilesW","features":[1,30]},{"name":"SymEnumSourceLines","features":[1,30]},{"name":"SymEnumSourceLinesW","features":[1,30]},{"name":"SymEnumSym","features":[1,30]},{"name":"SymEnumSymbols","features":[1,30]},{"name":"SymEnumSymbolsEx","features":[1,30]},{"name":"SymEnumSymbolsExW","features":[1,30]},{"name":"SymEnumSymbolsForAddr","features":[1,30]},{"name":"SymEnumSymbolsForAddrW","features":[1,30]},{"name":"SymEnumSymbolsW","features":[1,30]},{"name":"SymEnumTypes","features":[1,30]},{"name":"SymEnumTypesByName","features":[1,30]},{"name":"SymEnumTypesByNameW","features":[1,30]},{"name":"SymEnumTypesW","features":[1,30]},{"name":"SymEnumerateModules","features":[1,30]},{"name":"SymEnumerateModules64","features":[1,30]},{"name":"SymEnumerateModulesW64","features":[1,30]},{"name":"SymEnumerateSymbols","features":[1,30]},{"name":"SymEnumerateSymbols64","features":[1,30]},{"name":"SymEnumerateSymbolsW","features":[1,30]},{"name":"SymEnumerateSymbolsW64","features":[1,30]},{"name":"SymExport","features":[30]},{"name":"SymFindDebugInfoFile","features":[1,30]},{"name":"SymFindDebugInfoFileW","features":[1,30]},{"name":"SymFindExecutableImage","features":[1,30]},{"name":"SymFindExecutableImageW","features":[1,30]},{"name":"SymFindFileInPath","features":[1,30]},{"name":"SymFindFileInPathW","features":[1,30]},{"name":"SymFromAddr","features":[1,30]},{"name":"SymFromAddrW","features":[1,30]},{"name":"SymFromIndex","features":[1,30]},{"name":"SymFromIndexW","features":[1,30]},{"name":"SymFromInlineContext","features":[1,30]},{"name":"SymFromInlineContextW","features":[1,30]},{"name":"SymFromName","features":[1,30]},{"name":"SymFromNameW","features":[1,30]},{"name":"SymFromToken","features":[1,30]},{"name":"SymFromTokenW","features":[1,30]},{"name":"SymFunctionTableAccess","features":[1,30]},{"name":"SymFunctionTableAccess64","features":[1,30]},{"name":"SymFunctionTableAccess64AccessRoutines","features":[1,30]},{"name":"SymGetExtendedOption","features":[1,30]},{"name":"SymGetFileLineOffsets64","features":[1,30]},{"name":"SymGetHomeDirectory","features":[30]},{"name":"SymGetHomeDirectoryW","features":[30]},{"name":"SymGetLineFromAddr","features":[1,30]},{"name":"SymGetLineFromAddr64","features":[1,30]},{"name":"SymGetLineFromAddrW64","features":[1,30]},{"name":"SymGetLineFromInlineContext","features":[1,30]},{"name":"SymGetLineFromInlineContextW","features":[1,30]},{"name":"SymGetLineFromName","features":[1,30]},{"name":"SymGetLineFromName64","features":[1,30]},{"name":"SymGetLineFromNameW64","features":[1,30]},{"name":"SymGetLineNext","features":[1,30]},{"name":"SymGetLineNext64","features":[1,30]},{"name":"SymGetLineNextW64","features":[1,30]},{"name":"SymGetLinePrev","features":[1,30]},{"name":"SymGetLinePrev64","features":[1,30]},{"name":"SymGetLinePrevW64","features":[1,30]},{"name":"SymGetModuleBase","features":[1,30]},{"name":"SymGetModuleBase64","features":[1,30]},{"name":"SymGetModuleInfo","features":[1,30]},{"name":"SymGetModuleInfo64","features":[1,30]},{"name":"SymGetModuleInfoW","features":[1,30]},{"name":"SymGetModuleInfoW64","features":[1,30]},{"name":"SymGetOmaps","features":[1,30]},{"name":"SymGetOptions","features":[30]},{"name":"SymGetScope","features":[1,30]},{"name":"SymGetScopeW","features":[1,30]},{"name":"SymGetSearchPath","features":[1,30]},{"name":"SymGetSearchPathW","features":[1,30]},{"name":"SymGetSourceFile","features":[1,30]},{"name":"SymGetSourceFileChecksum","features":[1,30]},{"name":"SymGetSourceFileChecksumW","features":[1,30]},{"name":"SymGetSourceFileFromToken","features":[1,30]},{"name":"SymGetSourceFileFromTokenByTokenName","features":[1,30]},{"name":"SymGetSourceFileFromTokenByTokenNameW","features":[1,30]},{"name":"SymGetSourceFileFromTokenW","features":[1,30]},{"name":"SymGetSourceFileToken","features":[1,30]},{"name":"SymGetSourceFileTokenByTokenName","features":[1,30]},{"name":"SymGetSourceFileTokenByTokenNameW","features":[1,30]},{"name":"SymGetSourceFileTokenW","features":[1,30]},{"name":"SymGetSourceFileW","features":[1,30]},{"name":"SymGetSourceVarFromToken","features":[1,30]},{"name":"SymGetSourceVarFromTokenW","features":[1,30]},{"name":"SymGetSymFromAddr","features":[1,30]},{"name":"SymGetSymFromAddr64","features":[1,30]},{"name":"SymGetSymFromName","features":[1,30]},{"name":"SymGetSymFromName64","features":[1,30]},{"name":"SymGetSymNext","features":[1,30]},{"name":"SymGetSymNext64","features":[1,30]},{"name":"SymGetSymPrev","features":[1,30]},{"name":"SymGetSymPrev64","features":[1,30]},{"name":"SymGetSymbolFile","features":[1,30]},{"name":"SymGetSymbolFileW","features":[1,30]},{"name":"SymGetTypeFromName","features":[1,30]},{"name":"SymGetTypeFromNameW","features":[1,30]},{"name":"SymGetTypeInfo","features":[1,30]},{"name":"SymGetTypeInfoEx","features":[1,30]},{"name":"SymGetUnwindInfo","features":[1,30]},{"name":"SymInitialize","features":[1,30]},{"name":"SymInitializeW","features":[1,30]},{"name":"SymLoadModule","features":[1,30]},{"name":"SymLoadModule64","features":[1,30]},{"name":"SymLoadModuleEx","features":[1,30]},{"name":"SymLoadModuleExW","features":[1,30]},{"name":"SymMatchFileName","features":[1,30]},{"name":"SymMatchFileNameW","features":[1,30]},{"name":"SymMatchString","features":[1,30]},{"name":"SymMatchStringA","features":[1,30]},{"name":"SymMatchStringW","features":[1,30]},{"name":"SymNext","features":[1,30]},{"name":"SymNextW","features":[1,30]},{"name":"SymNone","features":[30]},{"name":"SymPdb","features":[30]},{"name":"SymPrev","features":[1,30]},{"name":"SymPrevW","features":[1,30]},{"name":"SymQueryInlineTrace","features":[1,30]},{"name":"SymRefreshModuleList","features":[1,30]},{"name":"SymRegisterCallback","features":[1,30]},{"name":"SymRegisterCallback64","features":[1,30]},{"name":"SymRegisterCallbackW64","features":[1,30]},{"name":"SymRegisterFunctionEntryCallback","features":[1,30]},{"name":"SymRegisterFunctionEntryCallback64","features":[1,30]},{"name":"SymSearch","features":[1,30]},{"name":"SymSearchW","features":[1,30]},{"name":"SymSetContext","features":[1,30]},{"name":"SymSetExtendedOption","features":[1,30]},{"name":"SymSetHomeDirectory","features":[1,30]},{"name":"SymSetHomeDirectoryW","features":[1,30]},{"name":"SymSetOptions","features":[30]},{"name":"SymSetParentWindow","features":[1,30]},{"name":"SymSetScopeFromAddr","features":[1,30]},{"name":"SymSetScopeFromIndex","features":[1,30]},{"name":"SymSetScopeFromInlineContext","features":[1,30]},{"name":"SymSetSearchPath","features":[1,30]},{"name":"SymSetSearchPathW","features":[1,30]},{"name":"SymSrvDeltaName","features":[1,30]},{"name":"SymSrvDeltaNameW","features":[1,30]},{"name":"SymSrvGetFileIndexInfo","features":[1,30]},{"name":"SymSrvGetFileIndexInfoW","features":[1,30]},{"name":"SymSrvGetFileIndexString","features":[1,30]},{"name":"SymSrvGetFileIndexStringW","features":[1,30]},{"name":"SymSrvGetFileIndexes","features":[1,30]},{"name":"SymSrvGetFileIndexesW","features":[1,30]},{"name":"SymSrvGetSupplement","features":[1,30]},{"name":"SymSrvGetSupplementW","features":[1,30]},{"name":"SymSrvIsStore","features":[1,30]},{"name":"SymSrvIsStoreW","features":[1,30]},{"name":"SymSrvStoreFile","features":[1,30]},{"name":"SymSrvStoreFileW","features":[1,30]},{"name":"SymSrvStoreSupplement","features":[1,30]},{"name":"SymSrvStoreSupplementW","features":[1,30]},{"name":"SymSym","features":[30]},{"name":"SymUnDName","features":[1,30]},{"name":"SymUnDName64","features":[1,30]},{"name":"SymUnloadModule","features":[1,30]},{"name":"SymUnloadModule64","features":[1,30]},{"name":"SymVirtual","features":[30]},{"name":"SystemInfoStream","features":[30]},{"name":"SystemMemoryInfoStream","features":[30]},{"name":"TARGET_ATTRIBUTE_PACMASK","features":[30]},{"name":"TARGET_MDL_TOO_SMALL","features":[30]},{"name":"TCPIP_AOAC_NIC_ACTIVE_REFERENCE_LEAK","features":[30]},{"name":"TELEMETRY_ASSERTS_LIVEDUMP","features":[30]},{"name":"TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE","features":[30]},{"name":"THIRD_PARTY_FILE_SYSTEM_FAILURE","features":[30]},{"name":"THREAD_ERROR_MODE","features":[30]},{"name":"THREAD_NOT_MUTEX_OWNER","features":[30]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER","features":[30]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER_M","features":[30]},{"name":"THREAD_TERMINATE_HELD_MUTEX","features":[30]},{"name":"THREAD_WRITE_FLAGS","features":[30]},{"name":"TIMER_OR_DPC_INVALID","features":[30]},{"name":"TI_FINDCHILDREN","features":[30]},{"name":"TI_FINDCHILDREN_PARAMS","features":[30]},{"name":"TI_GET_ADDRESS","features":[30]},{"name":"TI_GET_ADDRESSOFFSET","features":[30]},{"name":"TI_GET_ARRAYINDEXTYPEID","features":[30]},{"name":"TI_GET_BASETYPE","features":[30]},{"name":"TI_GET_BITPOSITION","features":[30]},{"name":"TI_GET_CALLING_CONVENTION","features":[30]},{"name":"TI_GET_CHILDRENCOUNT","features":[30]},{"name":"TI_GET_CLASSPARENTID","features":[30]},{"name":"TI_GET_COUNT","features":[30]},{"name":"TI_GET_DATAKIND","features":[30]},{"name":"TI_GET_INDIRECTVIRTUALBASECLASS","features":[30]},{"name":"TI_GET_IS_REFERENCE","features":[30]},{"name":"TI_GET_LENGTH","features":[30]},{"name":"TI_GET_LEXICALPARENT","features":[30]},{"name":"TI_GET_NESTED","features":[30]},{"name":"TI_GET_OBJECTPOINTERTYPE","features":[30]},{"name":"TI_GET_OFFSET","features":[30]},{"name":"TI_GET_SYMINDEX","features":[30]},{"name":"TI_GET_SYMNAME","features":[30]},{"name":"TI_GET_SYMTAG","features":[30]},{"name":"TI_GET_THISADJUST","features":[30]},{"name":"TI_GET_TYPE","features":[30]},{"name":"TI_GET_TYPEID","features":[30]},{"name":"TI_GET_UDTKIND","features":[30]},{"name":"TI_GET_VALUE","features":[30]},{"name":"TI_GET_VIRTUALBASECLASS","features":[30]},{"name":"TI_GET_VIRTUALBASEDISPINDEX","features":[30]},{"name":"TI_GET_VIRTUALBASEOFFSET","features":[30]},{"name":"TI_GET_VIRTUALBASEPOINTEROFFSET","features":[30]},{"name":"TI_GET_VIRTUALBASETABLETYPE","features":[30]},{"name":"TI_GET_VIRTUALTABLESHAPEID","features":[30]},{"name":"TI_GTIEX_REQS_VALID","features":[30]},{"name":"TI_IS_CLOSE_EQUIV_TO","features":[30]},{"name":"TI_IS_EQUIV_TO","features":[30]},{"name":"TOO_MANY_RECURSIVE_FAULTS","features":[30]},{"name":"TRAP_CAUSE_UNKNOWN","features":[30]},{"name":"TTM_FATAL_ERROR","features":[30]},{"name":"TTM_WATCHDOG_TIMEOUT","features":[30]},{"name":"TerminateProcessOnMemoryExhaustion","features":[30]},{"name":"ThreadCallback","features":[30]},{"name":"ThreadExCallback","features":[30]},{"name":"ThreadExListStream","features":[30]},{"name":"ThreadInfoListStream","features":[30]},{"name":"ThreadListStream","features":[30]},{"name":"ThreadNamesStream","features":[30]},{"name":"ThreadWriteBackingStore","features":[30]},{"name":"ThreadWriteContext","features":[30]},{"name":"ThreadWriteInstructionWindow","features":[30]},{"name":"ThreadWriteStack","features":[30]},{"name":"ThreadWriteThread","features":[30]},{"name":"ThreadWriteThreadData","features":[30]},{"name":"ThreadWriteThreadInfo","features":[30]},{"name":"TokenStream","features":[30]},{"name":"TouchFileTimes","features":[1,30]},{"name":"UCMUCSI_FAILURE","features":[30]},{"name":"UCMUCSI_LIVEDUMP","features":[30]},{"name":"UDFS_FILE_SYSTEM","features":[30]},{"name":"UFX_LIVEDUMP","features":[30]},{"name":"UNDNAME_32_BIT_DECODE","features":[30]},{"name":"UNDNAME_COMPLETE","features":[30]},{"name":"UNDNAME_NAME_ONLY","features":[30]},{"name":"UNDNAME_NO_ACCESS_SPECIFIERS","features":[30]},{"name":"UNDNAME_NO_ALLOCATION_LANGUAGE","features":[30]},{"name":"UNDNAME_NO_ALLOCATION_MODEL","features":[30]},{"name":"UNDNAME_NO_ARGUMENTS","features":[30]},{"name":"UNDNAME_NO_CV_THISTYPE","features":[30]},{"name":"UNDNAME_NO_FUNCTION_RETURNS","features":[30]},{"name":"UNDNAME_NO_LEADING_UNDERSCORES","features":[30]},{"name":"UNDNAME_NO_MEMBER_TYPE","features":[30]},{"name":"UNDNAME_NO_MS_KEYWORDS","features":[30]},{"name":"UNDNAME_NO_MS_THISTYPE","features":[30]},{"name":"UNDNAME_NO_RETURN_UDT_MODEL","features":[30]},{"name":"UNDNAME_NO_SPECIAL_SYMS","features":[30]},{"name":"UNDNAME_NO_THISTYPE","features":[30]},{"name":"UNDNAME_NO_THROW_SIGNATURES","features":[30]},{"name":"UNEXPECTED_INITIALIZATION_CALL","features":[30]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP","features":[30]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP_M","features":[30]},{"name":"UNEXPECTED_STORE_EXCEPTION","features":[30]},{"name":"UNLOAD_DLL_DEBUG_EVENT","features":[30]},{"name":"UNLOAD_DLL_DEBUG_INFO","features":[30]},{"name":"UNMOUNTABLE_BOOT_VOLUME","features":[30]},{"name":"UNSUPPORTED_INSTRUCTION_MODE","features":[30]},{"name":"UNSUPPORTED_PROCESSOR","features":[30]},{"name":"UNWIND_HISTORY_TABLE","features":[30]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[30]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[30]},{"name":"UNWIND_ON_INVALID_STACK","features":[30]},{"name":"UNW_FLAG_CHAININFO","features":[30]},{"name":"UNW_FLAG_EHANDLER","features":[30]},{"name":"UNW_FLAG_NHANDLER","features":[30]},{"name":"UNW_FLAG_UHANDLER","features":[30]},{"name":"UP_DRIVER_ON_MP_SYSTEM","features":[30]},{"name":"USB4_HARDWARE_VIOLATION","features":[30]},{"name":"USB_DRIPS_BLOCKER_SURPRISE_REMOVAL_LIVEDUMP","features":[30]},{"name":"USER_MODE_HEALTH_MONITOR","features":[30]},{"name":"USER_MODE_HEALTH_MONITOR_LIVEDUMP","features":[30]},{"name":"UnDecorateSymbolName","features":[30]},{"name":"UnDecorateSymbolNameW","features":[30]},{"name":"UnMapAndLoad","features":[1,30,7,32]},{"name":"UnhandledExceptionFilter","features":[1,30,7]},{"name":"UnloadedModuleListStream","features":[30]},{"name":"UnusedStream","features":[30]},{"name":"UpdateDebugInfoFile","features":[1,30,32]},{"name":"UpdateDebugInfoFileEx","features":[1,30,32]},{"name":"VER_PLATFORM","features":[30]},{"name":"VER_PLATFORM_WIN32_NT","features":[30]},{"name":"VER_PLATFORM_WIN32_WINDOWS","features":[30]},{"name":"VER_PLATFORM_WIN32s","features":[30]},{"name":"VHD_BOOT_HOST_VOLUME_NOT_ENOUGH_SPACE","features":[30]},{"name":"VHD_BOOT_INITIALIZATION_FAILED","features":[30]},{"name":"VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[30]},{"name":"VIDEO_DRIVER_INIT_FAILURE","features":[30]},{"name":"VIDEO_DWMINIT_TIMEOUT_FALLBACK_BDD","features":[30]},{"name":"VIDEO_DXGKRNL_BLACK_SCREEN_LIVEDUMP","features":[30]},{"name":"VIDEO_DXGKRNL_FATAL_ERROR","features":[30]},{"name":"VIDEO_DXGKRNL_LIVEDUMP","features":[30]},{"name":"VIDEO_DXGKRNL_SYSMM_FATAL_ERROR","features":[30]},{"name":"VIDEO_ENGINE_TIMEOUT_DETECTED","features":[30]},{"name":"VIDEO_MEMORY_MANAGEMENT_INTERNAL","features":[30]},{"name":"VIDEO_MINIPORT_BLACK_SCREEN_LIVEDUMP","features":[30]},{"name":"VIDEO_MINIPORT_FAILED_LIVEDUMP","features":[30]},{"name":"VIDEO_SCHEDULER_INTERNAL_ERROR","features":[30]},{"name":"VIDEO_SHADOW_DRIVER_FATAL_ERROR","features":[30]},{"name":"VIDEO_TDR_APPLICATION_BLOCKED","features":[30]},{"name":"VIDEO_TDR_FAILURE","features":[30]},{"name":"VIDEO_TDR_TIMEOUT_DETECTED","features":[30]},{"name":"VMBUS_LIVEDUMP","features":[30]},{"name":"VOLMGRX_INTERNAL_ERROR","features":[30]},{"name":"VOLSNAP_OVERLAPPED_TABLE_ACCESS","features":[30]},{"name":"VSL_INITIALIZATION_FAILED","features":[30]},{"name":"VmPostReadCallback","features":[30]},{"name":"VmPreReadCallback","features":[30]},{"name":"VmQueryCallback","features":[30]},{"name":"VmStartCallback","features":[30]},{"name":"WAITCHAIN_NODE_INFO","features":[1,30]},{"name":"WAIT_CHAIN_THREAD_OPTIONS","features":[30]},{"name":"WCT_ASYNC_OPEN_FLAG","features":[30]},{"name":"WCT_MAX_NODE_COUNT","features":[30]},{"name":"WCT_NETWORK_IO_FLAG","features":[30]},{"name":"WCT_OBJECT_STATUS","features":[30]},{"name":"WCT_OBJECT_TYPE","features":[30]},{"name":"WCT_OBJNAME_LENGTH","features":[30]},{"name":"WCT_OUT_OF_PROC_COM_FLAG","features":[30]},{"name":"WCT_OUT_OF_PROC_CS_FLAG","features":[30]},{"name":"WCT_OUT_OF_PROC_FLAG","features":[30]},{"name":"WDF_VIOLATION","features":[30]},{"name":"WFP_INVALID_OPERATION","features":[30]},{"name":"WHEA_AER_BRIDGE_DESCRIPTOR","features":[1,30]},{"name":"WHEA_AER_ENDPOINT_DESCRIPTOR","features":[1,30]},{"name":"WHEA_AER_ROOTPORT_DESCRIPTOR","features":[1,30]},{"name":"WHEA_BAD_PAGE_LIST_LOCATION","features":[30]},{"name":"WHEA_BAD_PAGE_LIST_MAX_SIZE","features":[30]},{"name":"WHEA_CMCI_THRESHOLD_COUNT","features":[30]},{"name":"WHEA_CMCI_THRESHOLD_POLL_COUNT","features":[30]},{"name":"WHEA_CMCI_THRESHOLD_TIME","features":[30]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MAX","features":[30]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MIN","features":[30]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_V1","features":[30]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MAX","features":[30]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MIN","features":[30]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V1","features":[30]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V2","features":[30]},{"name":"WHEA_DEVICE_DRIVER_DESCRIPTOR","features":[1,30]},{"name":"WHEA_DISABLE_DUMMY_WRITE","features":[30]},{"name":"WHEA_DISABLE_OFFLINE","features":[30]},{"name":"WHEA_DRIVER_BUFFER_SET","features":[30]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DD","features":[1,30]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER","features":[1,30]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER_V1","features":[1,30]},{"name":"WHEA_ERROR_SOURCE_CORRECT_DEVICE_DRIVER","features":[1,30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR","features":[1,30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERBRIDGE","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERENDPOINT","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERROOTPORT","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC_V2","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCMC","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCPE","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFMCA","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFCMC","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFMCE","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFNMI","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_10","features":[30]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_11","features":[30]},{"name":"WHEA_ERROR_SOURCE_FLAG_DEFAULTSOURCE","features":[30]},{"name":"WHEA_ERROR_SOURCE_FLAG_FIRMWAREFIRST","features":[30]},{"name":"WHEA_ERROR_SOURCE_FLAG_GHES_ASSIST","features":[30]},{"name":"WHEA_ERROR_SOURCE_FLAG_GLOBAL","features":[30]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE_DEVICE_DRIVER","features":[1,30]},{"name":"WHEA_ERROR_SOURCE_INVALID_RELATED_SOURCE","features":[30]},{"name":"WHEA_ERROR_SOURCE_STATE","features":[30]},{"name":"WHEA_ERROR_SOURCE_TYPE","features":[30]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE_DEVICE_DRIVER","features":[30]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR","features":[30]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR_V2","features":[30]},{"name":"WHEA_INTERNAL_ERROR","features":[30]},{"name":"WHEA_IPF_CMC_DESCRIPTOR","features":[30]},{"name":"WHEA_IPF_CPE_DESCRIPTOR","features":[30]},{"name":"WHEA_IPF_MCA_DESCRIPTOR","features":[30]},{"name":"WHEA_MAX_MC_BANKS","features":[30]},{"name":"WHEA_MEM_PERSISTOFFLINE","features":[30]},{"name":"WHEA_MEM_PFA_DISABLE","features":[30]},{"name":"WHEA_MEM_PFA_PAGECOUNT","features":[30]},{"name":"WHEA_MEM_PFA_THRESHOLD","features":[30]},{"name":"WHEA_MEM_PFA_TIMEOUT","features":[30]},{"name":"WHEA_NOTIFICATION_DESCRIPTOR","features":[30]},{"name":"WHEA_NOTIFICATION_FLAGS","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEA","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEI","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_CMCI","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT_GSIV","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_GPIO_SIGNAL","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_LOCALINTERRUPT","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_MCE","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_NMI","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_POLLED","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_SCI","features":[30]},{"name":"WHEA_NOTIFICATION_TYPE_SDEI","features":[30]},{"name":"WHEA_NOTIFY_ALL_OFFLINES","features":[30]},{"name":"WHEA_PCI_SLOT_NUMBER","features":[30]},{"name":"WHEA_PENDING_PAGE_LIST_SZ","features":[30]},{"name":"WHEA_RESTORE_CMCI_ATTEMPTS","features":[30]},{"name":"WHEA_RESTORE_CMCI_ENABLED","features":[30]},{"name":"WHEA_RESTORE_CMCI_ERR_LIMIT","features":[30]},{"name":"WHEA_ROW_FAIL_CHECK_ENABLE","features":[30]},{"name":"WHEA_ROW_FAIL_CHECK_EXTENT","features":[30]},{"name":"WHEA_ROW_FAIL_CHECK_THRESHOLD","features":[30]},{"name":"WHEA_UNCORRECTABLE_ERROR","features":[30]},{"name":"WHEA_XPF_CMC_DESCRIPTOR","features":[1,30]},{"name":"WHEA_XPF_MCE_DESCRIPTOR","features":[1,30]},{"name":"WHEA_XPF_MC_BANK_DESCRIPTOR","features":[1,30]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_AMD64MCA","features":[30]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_IA32MCA","features":[30]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_Intel64MCA","features":[30]},{"name":"WHEA_XPF_NMI_DESCRIPTOR","features":[1,30]},{"name":"WIN32K_ATOMIC_CHECK_FAILURE","features":[30]},{"name":"WIN32K_CALLOUT_WATCHDOG_BUGCHECK","features":[30]},{"name":"WIN32K_CALLOUT_WATCHDOG_LIVEDUMP","features":[30]},{"name":"WIN32K_CRITICAL_FAILURE","features":[30]},{"name":"WIN32K_CRITICAL_FAILURE_LIVEDUMP","features":[30]},{"name":"WIN32K_HANDLE_MANAGER","features":[30]},{"name":"WIN32K_INIT_OR_RIT_FAILURE","features":[30]},{"name":"WIN32K_POWER_WATCHDOG_TIMEOUT","features":[30]},{"name":"WIN32K_SECURITY_FAILURE","features":[30]},{"name":"WINDOWS_NT_BANNER","features":[30]},{"name":"WINDOWS_NT_CSD_STRING","features":[30]},{"name":"WINDOWS_NT_INFO_STRING","features":[30]},{"name":"WINDOWS_NT_INFO_STRING_PLURAL","features":[30]},{"name":"WINDOWS_NT_MP_STRING","features":[30]},{"name":"WINDOWS_NT_RC_STRING","features":[30]},{"name":"WINLOGON_FATAL_ERROR","features":[30]},{"name":"WINSOCK_DETECTED_HUNG_CLOSESOCKET_LIVEDUMP","features":[30]},{"name":"WORKER_INVALID","features":[30]},{"name":"WORKER_THREAD_INVALID_STATE","features":[30]},{"name":"WORKER_THREAD_RETURNED_AT_BAD_IRQL","features":[30]},{"name":"WORKER_THREAD_RETURNED_WHILE_ATTACHED_TO_SILO","features":[30]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_IO_PRIORITY","features":[30]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_PAGING_IO_PRIORITY","features":[30]},{"name":"WORKER_THREAD_RETURNED_WITH_NON_DEFAULT_WORKLOAD_CLASS","features":[30]},{"name":"WORKER_THREAD_RETURNED_WITH_SYSTEM_PAGE_PRIORITY_ACTIVE","features":[30]},{"name":"WORKER_THREAD_TEST_CONDITION","features":[30]},{"name":"WOW64_CONTEXT","features":[30]},{"name":"WOW64_CONTEXT_ALL","features":[30]},{"name":"WOW64_CONTEXT_CONTROL","features":[30]},{"name":"WOW64_CONTEXT_DEBUG_REGISTERS","features":[30]},{"name":"WOW64_CONTEXT_EXCEPTION_ACTIVE","features":[30]},{"name":"WOW64_CONTEXT_EXCEPTION_REPORTING","features":[30]},{"name":"WOW64_CONTEXT_EXCEPTION_REQUEST","features":[30]},{"name":"WOW64_CONTEXT_EXTENDED_REGISTERS","features":[30]},{"name":"WOW64_CONTEXT_FLAGS","features":[30]},{"name":"WOW64_CONTEXT_FLOATING_POINT","features":[30]},{"name":"WOW64_CONTEXT_FULL","features":[30]},{"name":"WOW64_CONTEXT_INTEGER","features":[30]},{"name":"WOW64_CONTEXT_SEGMENTS","features":[30]},{"name":"WOW64_CONTEXT_SERVICE_ACTIVE","features":[30]},{"name":"WOW64_CONTEXT_X86","features":[30]},{"name":"WOW64_CONTEXT_XSTATE","features":[30]},{"name":"WOW64_DESCRIPTOR_TABLE_ENTRY","features":[30]},{"name":"WOW64_FLOATING_SAVE_AREA","features":[30]},{"name":"WOW64_LDT_ENTRY","features":[30]},{"name":"WOW64_MAXIMUM_SUPPORTED_EXTENSION","features":[30]},{"name":"WOW64_SIZE_OF_80387_REGISTERS","features":[30]},{"name":"WVR_LIVEDUMP_APP_IO_TIMEOUT","features":[30]},{"name":"WVR_LIVEDUMP_CRITICAL_ERROR","features":[30]},{"name":"WVR_LIVEDUMP_MANUALLY_INITIATED","features":[30]},{"name":"WVR_LIVEDUMP_RECOVERY_IOCONTEXT_TIMEOUT","features":[30]},{"name":"WVR_LIVEDUMP_REPLICATION_IOCONTEXT_TIMEOUT","features":[30]},{"name":"WVR_LIVEDUMP_STATE_FAILURE","features":[30]},{"name":"WVR_LIVEDUMP_STATE_TRANSITION_TIMEOUT","features":[30]},{"name":"WaitForDebugEvent","features":[1,30,37]},{"name":"WaitForDebugEventEx","features":[1,30,37]},{"name":"WctAlpcType","features":[30]},{"name":"WctComActivationType","features":[30]},{"name":"WctComType","features":[30]},{"name":"WctCriticalSectionType","features":[30]},{"name":"WctMaxType","features":[30]},{"name":"WctMutexType","features":[30]},{"name":"WctProcessWaitType","features":[30]},{"name":"WctSendMessageType","features":[30]},{"name":"WctSmbIoType","features":[30]},{"name":"WctSocketIoType","features":[30]},{"name":"WctStatusAbandoned","features":[30]},{"name":"WctStatusBlocked","features":[30]},{"name":"WctStatusError","features":[30]},{"name":"WctStatusMax","features":[30]},{"name":"WctStatusNoAccess","features":[30]},{"name":"WctStatusNotOwned","features":[30]},{"name":"WctStatusOwned","features":[30]},{"name":"WctStatusPidOnly","features":[30]},{"name":"WctStatusPidOnlyRpcss","features":[30]},{"name":"WctStatusRunning","features":[30]},{"name":"WctStatusUnknown","features":[30]},{"name":"WctThreadType","features":[30]},{"name":"WctThreadWaitType","features":[30]},{"name":"WctUnknownType","features":[30]},{"name":"WheaErrSrcStateRemovePending","features":[30]},{"name":"WheaErrSrcStateRemoved","features":[30]},{"name":"WheaErrSrcStateStarted","features":[30]},{"name":"WheaErrSrcStateStopped","features":[30]},{"name":"WheaErrSrcTypeBMC","features":[30]},{"name":"WheaErrSrcTypeBOOT","features":[30]},{"name":"WheaErrSrcTypeCMC","features":[30]},{"name":"WheaErrSrcTypeCPE","features":[30]},{"name":"WheaErrSrcTypeDeviceDriver","features":[30]},{"name":"WheaErrSrcTypeGeneric","features":[30]},{"name":"WheaErrSrcTypeGenericV2","features":[30]},{"name":"WheaErrSrcTypeINIT","features":[30]},{"name":"WheaErrSrcTypeIPFCMC","features":[30]},{"name":"WheaErrSrcTypeIPFCPE","features":[30]},{"name":"WheaErrSrcTypeIPFMCA","features":[30]},{"name":"WheaErrSrcTypeMCE","features":[30]},{"name":"WheaErrSrcTypeMax","features":[30]},{"name":"WheaErrSrcTypeNMI","features":[30]},{"name":"WheaErrSrcTypePCIe","features":[30]},{"name":"WheaErrSrcTypePMEM","features":[30]},{"name":"WheaErrSrcTypeSCIGeneric","features":[30]},{"name":"WheaErrSrcTypeSCIGenericV2","features":[30]},{"name":"WheaErrSrcTypeSea","features":[30]},{"name":"WheaErrSrcTypeSei","features":[30]},{"name":"Wow64GetThreadContext","features":[1,30]},{"name":"Wow64GetThreadSelectorEntry","features":[1,30]},{"name":"Wow64SetThreadContext","features":[1,30]},{"name":"WriteKernelMinidumpCallback","features":[30]},{"name":"WriteProcessMemory","features":[1,30]},{"name":"XBOX_360_SYSTEM_CRASH","features":[30]},{"name":"XBOX_360_SYSTEM_CRASH_RESERVED","features":[30]},{"name":"XBOX_CORRUPTED_IMAGE","features":[30]},{"name":"XBOX_CORRUPTED_IMAGE_BASE","features":[30]},{"name":"XBOX_INVERTED_FUNCTION_TABLE_OVERFLOW","features":[30]},{"name":"XBOX_MANUALLY_INITIATED_CRASH","features":[30]},{"name":"XBOX_SECURITY_FAILUE","features":[30]},{"name":"XBOX_SHUTDOWN_WATCHDOG_TIMEOUT","features":[30]},{"name":"XBOX_VMCTRL_CS_TIMEOUT","features":[30]},{"name":"XBOX_XDS_WATCHDOG_TIMEOUT","features":[30]},{"name":"XNS_INTERNAL_ERROR","features":[30]},{"name":"XPF_MCE_FLAGS","features":[30]},{"name":"XPF_MC_BANK_FLAGS","features":[30]},{"name":"XSAVE_AREA","features":[30]},{"name":"XSAVE_AREA_HEADER","features":[30]},{"name":"XSAVE_FORMAT","features":[30]},{"name":"XSAVE_FORMAT","features":[30]},{"name":"XSTATE_CONFIGURATION","features":[30]},{"name":"XSTATE_CONFIG_FEATURE_MSC_INFO","features":[30]},{"name":"XSTATE_CONTEXT","features":[30]},{"name":"XSTATE_CONTEXT","features":[30]},{"name":"XSTATE_FEATURE","features":[30]},{"name":"ceStreamBucketParameters","features":[30]},{"name":"ceStreamDiagnosisList","features":[30]},{"name":"ceStreamException","features":[30]},{"name":"ceStreamMemoryPhysicalList","features":[30]},{"name":"ceStreamMemoryVirtualList","features":[30]},{"name":"ceStreamModuleList","features":[30]},{"name":"ceStreamNull","features":[30]},{"name":"ceStreamProcessList","features":[30]},{"name":"ceStreamProcessModuleMap","features":[30]},{"name":"ceStreamSystemInfo","features":[30]},{"name":"ceStreamThreadCallStackList","features":[30]},{"name":"ceStreamThreadContextList","features":[30]},{"name":"ceStreamThreadList","features":[30]},{"name":"hdBase","features":[30]},{"name":"hdMax","features":[30]},{"name":"hdSrc","features":[30]},{"name":"hdSym","features":[30]},{"name":"sevAttn","features":[30]},{"name":"sevFatal","features":[30]},{"name":"sevInfo","features":[30]},{"name":"sevMax","features":[30]},{"name":"sevProblem","features":[30]},{"name":"sfDbg","features":[30]},{"name":"sfImage","features":[30]},{"name":"sfMax","features":[30]},{"name":"sfMpd","features":[30]},{"name":"sfPdb","features":[30]}],"554":[{"name":"ADDRESS_TYPE_INDEX_NOT_FOUND","features":[164]},{"name":"Ambiguous","features":[164]},{"name":"ArrayDimension","features":[164]},{"name":"BUSDATA","features":[164]},{"name":"CANNOT_ALLOCATE_MEMORY","features":[164]},{"name":"CKCL_DATA","features":[164]},{"name":"CKCL_LISTHEAD","features":[1,164]},{"name":"CLSID_DebugFailureAnalysisBasic","features":[164]},{"name":"CLSID_DebugFailureAnalysisKernel","features":[164]},{"name":"CLSID_DebugFailureAnalysisTarget","features":[164]},{"name":"CLSID_DebugFailureAnalysisUser","features":[164]},{"name":"CLSID_DebugFailureAnalysisWinCE","features":[164]},{"name":"CLSID_DebugFailureAnalysisXBox360","features":[164]},{"name":"CPU_INFO","features":[164]},{"name":"CPU_INFO_v1","features":[164]},{"name":"CPU_INFO_v2","features":[164]},{"name":"CROSS_PLATFORM_MAXIMUM_PROCESSORS","features":[164]},{"name":"CURRENT_KD_SECONDARY_VERSION","features":[164]},{"name":"CallingConventionCDecl","features":[164]},{"name":"CallingConventionFastCall","features":[164]},{"name":"CallingConventionKind","features":[164]},{"name":"CallingConventionStdCall","features":[164]},{"name":"CallingConventionSysCall","features":[164]},{"name":"CallingConventionThisCall","features":[164]},{"name":"CallingConventionUnknown","features":[164]},{"name":"CreateDataModelManager","features":[164]},{"name":"DBGKD_DEBUG_DATA_HEADER32","features":[164,7]},{"name":"DBGKD_DEBUG_DATA_HEADER64","features":[164,7]},{"name":"DBGKD_GET_VERSION32","features":[164]},{"name":"DBGKD_GET_VERSION64","features":[164]},{"name":"DBGKD_MAJOR_BIG","features":[164]},{"name":"DBGKD_MAJOR_CE","features":[164]},{"name":"DBGKD_MAJOR_COUNT","features":[164]},{"name":"DBGKD_MAJOR_EFI","features":[164]},{"name":"DBGKD_MAJOR_EXDI","features":[164]},{"name":"DBGKD_MAJOR_HYPERVISOR","features":[164]},{"name":"DBGKD_MAJOR_MIDORI","features":[164]},{"name":"DBGKD_MAJOR_NT","features":[164]},{"name":"DBGKD_MAJOR_NTBD","features":[164]},{"name":"DBGKD_MAJOR_SINGULARITY","features":[164]},{"name":"DBGKD_MAJOR_TNT","features":[164]},{"name":"DBGKD_MAJOR_TYPES","features":[164]},{"name":"DBGKD_MAJOR_XBOX","features":[164]},{"name":"DBGKD_SIMULATION_EXDI","features":[164]},{"name":"DBGKD_SIMULATION_NONE","features":[164]},{"name":"DBGKD_VERS_FLAG_DATA","features":[164]},{"name":"DBGKD_VERS_FLAG_HAL_IN_NTOS","features":[164]},{"name":"DBGKD_VERS_FLAG_HSS","features":[164]},{"name":"DBGKD_VERS_FLAG_MP","features":[164]},{"name":"DBGKD_VERS_FLAG_NOMM","features":[164]},{"name":"DBGKD_VERS_FLAG_PARTITIONS","features":[164]},{"name":"DBGKD_VERS_FLAG_PTR64","features":[164]},{"name":"DBG_DUMP_ADDRESS_AT_END","features":[164]},{"name":"DBG_DUMP_ADDRESS_OF_FIELD","features":[164]},{"name":"DBG_DUMP_ARRAY","features":[164]},{"name":"DBG_DUMP_BLOCK_RECURSE","features":[164]},{"name":"DBG_DUMP_CALL_FOR_EACH","features":[164]},{"name":"DBG_DUMP_COMPACT_OUT","features":[164]},{"name":"DBG_DUMP_COPY_TYPE_DATA","features":[164]},{"name":"DBG_DUMP_FIELD_ARRAY","features":[164]},{"name":"DBG_DUMP_FIELD_CALL_BEFORE_PRINT","features":[164]},{"name":"DBG_DUMP_FIELD_COPY_FIELD_DATA","features":[164]},{"name":"DBG_DUMP_FIELD_DEFAULT_STRING","features":[164]},{"name":"DBG_DUMP_FIELD_FULL_NAME","features":[164]},{"name":"DBG_DUMP_FIELD_GUID_STRING","features":[164]},{"name":"DBG_DUMP_FIELD_MULTI_STRING","features":[164]},{"name":"DBG_DUMP_FIELD_NO_CALLBACK_REQ","features":[164]},{"name":"DBG_DUMP_FIELD_NO_PRINT","features":[164]},{"name":"DBG_DUMP_FIELD_RECUR_ON_THIS","features":[164]},{"name":"DBG_DUMP_FIELD_RETURN_ADDRESS","features":[164]},{"name":"DBG_DUMP_FIELD_SIZE_IN_BITS","features":[164]},{"name":"DBG_DUMP_FIELD_UTF32_STRING","features":[164]},{"name":"DBG_DUMP_FIELD_WCHAR_STRING","features":[164]},{"name":"DBG_DUMP_FUNCTION_FORMAT","features":[164]},{"name":"DBG_DUMP_GET_SIZE_ONLY","features":[164]},{"name":"DBG_DUMP_LIST","features":[164]},{"name":"DBG_DUMP_MATCH_SIZE","features":[164]},{"name":"DBG_DUMP_NO_INDENT","features":[164]},{"name":"DBG_DUMP_NO_OFFSET","features":[164]},{"name":"DBG_DUMP_NO_PRINT","features":[164]},{"name":"DBG_DUMP_READ_PHYSICAL","features":[164]},{"name":"DBG_DUMP_VERBOSE","features":[164]},{"name":"DBG_FRAME_DEFAULT","features":[164]},{"name":"DBG_FRAME_IGNORE_INLINE","features":[164]},{"name":"DBG_RETURN_SUBTYPES","features":[164]},{"name":"DBG_RETURN_TYPE","features":[164]},{"name":"DBG_RETURN_TYPE_VALUES","features":[164]},{"name":"DBG_THREAD_ATTRIBUTES","features":[164]},{"name":"DEBUG_ADDSYNTHMOD_DEFAULT","features":[164]},{"name":"DEBUG_ADDSYNTHMOD_ZEROBASE","features":[164]},{"name":"DEBUG_ADDSYNTHSYM_DEFAULT","features":[164]},{"name":"DEBUG_ANALYSIS_PROCESSOR_INFO","features":[164]},{"name":"DEBUG_ANY_ID","features":[164]},{"name":"DEBUG_ASMOPT_DEFAULT","features":[164]},{"name":"DEBUG_ASMOPT_IGNORE_OUTPUT_WIDTH","features":[164]},{"name":"DEBUG_ASMOPT_NO_CODE_BYTES","features":[164]},{"name":"DEBUG_ASMOPT_SOURCE_LINE_NUMBER","features":[164]},{"name":"DEBUG_ASMOPT_VERBOSE","features":[164]},{"name":"DEBUG_ATTACH_DEFAULT","features":[164]},{"name":"DEBUG_ATTACH_EXDI_DRIVER","features":[164]},{"name":"DEBUG_ATTACH_EXISTING","features":[164]},{"name":"DEBUG_ATTACH_INSTALL_DRIVER","features":[164]},{"name":"DEBUG_ATTACH_INVASIVE_NO_INITIAL_BREAK","features":[164]},{"name":"DEBUG_ATTACH_INVASIVE_RESUME_PROCESS","features":[164]},{"name":"DEBUG_ATTACH_KERNEL_CONNECTION","features":[164]},{"name":"DEBUG_ATTACH_LOCAL_KERNEL","features":[164]},{"name":"DEBUG_ATTACH_NONINVASIVE","features":[164]},{"name":"DEBUG_ATTACH_NONINVASIVE_ALLOW_PARTIAL","features":[164]},{"name":"DEBUG_ATTACH_NONINVASIVE_NO_SUSPEND","features":[164]},{"name":"DEBUG_BREAKPOINT_ADDER_ONLY","features":[164]},{"name":"DEBUG_BREAKPOINT_CODE","features":[164]},{"name":"DEBUG_BREAKPOINT_DATA","features":[164]},{"name":"DEBUG_BREAKPOINT_DEFERRED","features":[164]},{"name":"DEBUG_BREAKPOINT_ENABLED","features":[164]},{"name":"DEBUG_BREAKPOINT_GO_ONLY","features":[164]},{"name":"DEBUG_BREAKPOINT_INLINE","features":[164]},{"name":"DEBUG_BREAKPOINT_ONE_SHOT","features":[164]},{"name":"DEBUG_BREAKPOINT_PARAMETERS","features":[164]},{"name":"DEBUG_BREAKPOINT_TIME","features":[164]},{"name":"DEBUG_BREAK_EXECUTE","features":[164]},{"name":"DEBUG_BREAK_IO","features":[164]},{"name":"DEBUG_BREAK_READ","features":[164]},{"name":"DEBUG_BREAK_WRITE","features":[164]},{"name":"DEBUG_CACHED_SYMBOL_INFO","features":[164]},{"name":"DEBUG_CDS_ALL","features":[164]},{"name":"DEBUG_CDS_DATA","features":[164]},{"name":"DEBUG_CDS_REFRESH","features":[164]},{"name":"DEBUG_CDS_REFRESH_ADDBREAKPOINT","features":[164]},{"name":"DEBUG_CDS_REFRESH_EVALUATE","features":[164]},{"name":"DEBUG_CDS_REFRESH_EXECUTE","features":[164]},{"name":"DEBUG_CDS_REFRESH_EXECUTECOMMANDFILE","features":[164]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP","features":[164]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP_PSEUDO","features":[164]},{"name":"DEBUG_CDS_REFRESH_REMOVEBREAKPOINT","features":[164]},{"name":"DEBUG_CDS_REFRESH_SETSCOPE","features":[164]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFRAMEBYINDEX","features":[164]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMJITDEBUGINFO","features":[164]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMSTOREDEVENT","features":[164]},{"name":"DEBUG_CDS_REFRESH_SETVALUE","features":[164]},{"name":"DEBUG_CDS_REFRESH_SETVALUE2","features":[164]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL","features":[164]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL2","features":[164]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUAL","features":[164]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUALUNCACHED","features":[164]},{"name":"DEBUG_CDS_REGISTERS","features":[164]},{"name":"DEBUG_CES_ALL","features":[164]},{"name":"DEBUG_CES_ASSEMBLY_OPTIONS","features":[164]},{"name":"DEBUG_CES_BREAKPOINTS","features":[164]},{"name":"DEBUG_CES_CODE_LEVEL","features":[164]},{"name":"DEBUG_CES_CURRENT_THREAD","features":[164]},{"name":"DEBUG_CES_EFFECTIVE_PROCESSOR","features":[164]},{"name":"DEBUG_CES_ENGINE_OPTIONS","features":[164]},{"name":"DEBUG_CES_EVENT_FILTERS","features":[164]},{"name":"DEBUG_CES_EXECUTION_STATUS","features":[164]},{"name":"DEBUG_CES_EXPRESSION_SYNTAX","features":[164]},{"name":"DEBUG_CES_EXTENSIONS","features":[164]},{"name":"DEBUG_CES_LOG_FILE","features":[164]},{"name":"DEBUG_CES_PROCESS_OPTIONS","features":[164]},{"name":"DEBUG_CES_RADIX","features":[164]},{"name":"DEBUG_CES_SYSTEMS","features":[164]},{"name":"DEBUG_CES_TEXT_REPLACEMENTS","features":[164]},{"name":"DEBUG_CLASS_IMAGE_FILE","features":[164]},{"name":"DEBUG_CLASS_KERNEL","features":[164]},{"name":"DEBUG_CLASS_UNINITIALIZED","features":[164]},{"name":"DEBUG_CLASS_USER_WINDOWS","features":[164]},{"name":"DEBUG_CLIENT_CDB","features":[164]},{"name":"DEBUG_CLIENT_CONTEXT","features":[164]},{"name":"DEBUG_CLIENT_KD","features":[164]},{"name":"DEBUG_CLIENT_NTKD","features":[164]},{"name":"DEBUG_CLIENT_NTSD","features":[164]},{"name":"DEBUG_CLIENT_UNKNOWN","features":[164]},{"name":"DEBUG_CLIENT_VSINT","features":[164]},{"name":"DEBUG_CLIENT_WINDBG","features":[164]},{"name":"DEBUG_CLIENT_WINIDE","features":[164]},{"name":"DEBUG_CMDEX_ADD_EVENT_STRING","features":[164]},{"name":"DEBUG_CMDEX_INVALID","features":[164]},{"name":"DEBUG_CMDEX_RESET_EVENT_STRINGS","features":[164]},{"name":"DEBUG_COMMAND_EXCEPTION_ID","features":[164]},{"name":"DEBUG_CONNECT_SESSION_DEFAULT","features":[164]},{"name":"DEBUG_CONNECT_SESSION_NO_ANNOUNCE","features":[164]},{"name":"DEBUG_CONNECT_SESSION_NO_VERSION","features":[164]},{"name":"DEBUG_CPU_MICROCODE_VERSION","features":[164]},{"name":"DEBUG_CPU_SPEED_INFO","features":[164]},{"name":"DEBUG_CREATE_PROCESS_OPTIONS","features":[164]},{"name":"DEBUG_CSS_ALL","features":[164]},{"name":"DEBUG_CSS_COLLAPSE_CHILDREN","features":[164]},{"name":"DEBUG_CSS_LOADS","features":[164]},{"name":"DEBUG_CSS_PATHS","features":[164]},{"name":"DEBUG_CSS_SCOPE","features":[164]},{"name":"DEBUG_CSS_SYMBOL_OPTIONS","features":[164]},{"name":"DEBUG_CSS_TYPE_OPTIONS","features":[164]},{"name":"DEBUG_CSS_UNLOADS","features":[164]},{"name":"DEBUG_CURRENT_DEFAULT","features":[164]},{"name":"DEBUG_CURRENT_DISASM","features":[164]},{"name":"DEBUG_CURRENT_REGISTERS","features":[164]},{"name":"DEBUG_CURRENT_SOURCE_LINE","features":[164]},{"name":"DEBUG_CURRENT_SYMBOL","features":[164]},{"name":"DEBUG_DATA_BASE_TRANSLATION_VIRTUAL_OFFSET","features":[164]},{"name":"DEBUG_DATA_BreakpointWithStatusAddr","features":[164]},{"name":"DEBUG_DATA_CmNtCSDVersionAddr","features":[164]},{"name":"DEBUG_DATA_DumpAttributes","features":[164]},{"name":"DEBUG_DATA_DumpFormatVersion","features":[164]},{"name":"DEBUG_DATA_DumpMmStorage","features":[164]},{"name":"DEBUG_DATA_DumpPowerState","features":[164]},{"name":"DEBUG_DATA_DumpWriterStatus","features":[164]},{"name":"DEBUG_DATA_DumpWriterVersion","features":[164]},{"name":"DEBUG_DATA_EtwpDebuggerData","features":[164]},{"name":"DEBUG_DATA_ExpNumberOfPagedPoolsAddr","features":[164]},{"name":"DEBUG_DATA_ExpPagedPoolDescriptorAddr","features":[164]},{"name":"DEBUG_DATA_ExpSystemResourcesListAddr","features":[164]},{"name":"DEBUG_DATA_IopErrorLogListHeadAddr","features":[164]},{"name":"DEBUG_DATA_KPCR_OFFSET","features":[164]},{"name":"DEBUG_DATA_KPRCB_OFFSET","features":[164]},{"name":"DEBUG_DATA_KTHREAD_OFFSET","features":[164]},{"name":"DEBUG_DATA_KdPrintBufferSizeAddr","features":[164]},{"name":"DEBUG_DATA_KdPrintCircularBufferAddr","features":[164]},{"name":"DEBUG_DATA_KdPrintCircularBufferEndAddr","features":[164]},{"name":"DEBUG_DATA_KdPrintCircularBufferPtrAddr","features":[164]},{"name":"DEBUG_DATA_KdPrintRolloverCountAddr","features":[164]},{"name":"DEBUG_DATA_KdPrintWritePointerAddr","features":[164]},{"name":"DEBUG_DATA_KeBugCheckCallbackListHeadAddr","features":[164]},{"name":"DEBUG_DATA_KeTimeIncrementAddr","features":[164]},{"name":"DEBUG_DATA_KeUserCallbackDispatcherAddr","features":[164]},{"name":"DEBUG_DATA_KernBase","features":[164]},{"name":"DEBUG_DATA_KernelVerifierAddr","features":[164]},{"name":"DEBUG_DATA_KiBugcheckDataAddr","features":[164]},{"name":"DEBUG_DATA_KiCallUserModeAddr","features":[164]},{"name":"DEBUG_DATA_KiNormalSystemCall","features":[164]},{"name":"DEBUG_DATA_KiProcessorBlockAddr","features":[164]},{"name":"DEBUG_DATA_MmAllocatedNonPagedPoolAddr","features":[164]},{"name":"DEBUG_DATA_MmAvailablePagesAddr","features":[164]},{"name":"DEBUG_DATA_MmBadPagesDetected","features":[164]},{"name":"DEBUG_DATA_MmDriverCommitAddr","features":[164]},{"name":"DEBUG_DATA_MmExtendedCommitAddr","features":[164]},{"name":"DEBUG_DATA_MmFreePageListHeadAddr","features":[164]},{"name":"DEBUG_DATA_MmHighestPhysicalPageAddr","features":[164]},{"name":"DEBUG_DATA_MmHighestUserAddressAddr","features":[164]},{"name":"DEBUG_DATA_MmLastUnloadedDriverAddr","features":[164]},{"name":"DEBUG_DATA_MmLoadedUserImageListAddr","features":[164]},{"name":"DEBUG_DATA_MmLowestPhysicalPageAddr","features":[164]},{"name":"DEBUG_DATA_MmMaximumNonPagedPoolInBytesAddr","features":[164]},{"name":"DEBUG_DATA_MmModifiedNoWritePageListHeadAddr","features":[164]},{"name":"DEBUG_DATA_MmModifiedPageListHeadAddr","features":[164]},{"name":"DEBUG_DATA_MmNonPagedPoolEndAddr","features":[164]},{"name":"DEBUG_DATA_MmNonPagedPoolStartAddr","features":[164]},{"name":"DEBUG_DATA_MmNonPagedSystemStartAddr","features":[164]},{"name":"DEBUG_DATA_MmNumberOfPagingFilesAddr","features":[164]},{"name":"DEBUG_DATA_MmNumberOfPhysicalPagesAddr","features":[164]},{"name":"DEBUG_DATA_MmPageSize","features":[164]},{"name":"DEBUG_DATA_MmPagedPoolCommitAddr","features":[164]},{"name":"DEBUG_DATA_MmPagedPoolEndAddr","features":[164]},{"name":"DEBUG_DATA_MmPagedPoolInformationAddr","features":[164]},{"name":"DEBUG_DATA_MmPagedPoolStartAddr","features":[164]},{"name":"DEBUG_DATA_MmPeakCommitmentAddr","features":[164]},{"name":"DEBUG_DATA_MmPfnDatabaseAddr","features":[164]},{"name":"DEBUG_DATA_MmPhysicalMemoryBlockAddr","features":[164]},{"name":"DEBUG_DATA_MmProcessCommitAddr","features":[164]},{"name":"DEBUG_DATA_MmResidentAvailablePagesAddr","features":[164]},{"name":"DEBUG_DATA_MmSessionBase","features":[164]},{"name":"DEBUG_DATA_MmSessionSize","features":[164]},{"name":"DEBUG_DATA_MmSharedCommitAddr","features":[164]},{"name":"DEBUG_DATA_MmSizeOfPagedPoolInBytesAddr","features":[164]},{"name":"DEBUG_DATA_MmSpecialPoolTagAddr","features":[164]},{"name":"DEBUG_DATA_MmStandbyPageListHeadAddr","features":[164]},{"name":"DEBUG_DATA_MmSubsectionBaseAddr","features":[164]},{"name":"DEBUG_DATA_MmSystemCacheEndAddr","features":[164]},{"name":"DEBUG_DATA_MmSystemCacheStartAddr","features":[164]},{"name":"DEBUG_DATA_MmSystemCacheWsAddr","features":[164]},{"name":"DEBUG_DATA_MmSystemParentTablePage","features":[164]},{"name":"DEBUG_DATA_MmSystemPtesEndAddr","features":[164]},{"name":"DEBUG_DATA_MmSystemPtesStartAddr","features":[164]},{"name":"DEBUG_DATA_MmSystemRangeStartAddr","features":[164]},{"name":"DEBUG_DATA_MmTotalCommitLimitAddr","features":[164]},{"name":"DEBUG_DATA_MmTotalCommitLimitMaximumAddr","features":[164]},{"name":"DEBUG_DATA_MmTotalCommittedPagesAddr","features":[164]},{"name":"DEBUG_DATA_MmTriageActionTakenAddr","features":[164]},{"name":"DEBUG_DATA_MmUnloadedDriversAddr","features":[164]},{"name":"DEBUG_DATA_MmUserProbeAddressAddr","features":[164]},{"name":"DEBUG_DATA_MmVerifierDataAddr","features":[164]},{"name":"DEBUG_DATA_MmVirtualTranslationBase","features":[164]},{"name":"DEBUG_DATA_MmZeroedPageListHeadAddr","features":[164]},{"name":"DEBUG_DATA_NonPagedPoolDescriptorAddr","features":[164]},{"name":"DEBUG_DATA_NtBuildLabAddr","features":[164]},{"name":"DEBUG_DATA_ObpRootDirectoryObjectAddr","features":[164]},{"name":"DEBUG_DATA_ObpTypeObjectTypeAddr","features":[164]},{"name":"DEBUG_DATA_OffsetEprocessDirectoryTableBase","features":[164]},{"name":"DEBUG_DATA_OffsetEprocessParentCID","features":[164]},{"name":"DEBUG_DATA_OffsetEprocessPeb","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadApcProcess","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadBStore","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadBStoreLimit","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadInitialStack","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadKernelStack","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadNextProcessor","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadState","features":[164]},{"name":"DEBUG_DATA_OffsetKThreadTeb","features":[164]},{"name":"DEBUG_DATA_OffsetPrcbCpuType","features":[164]},{"name":"DEBUG_DATA_OffsetPrcbCurrentThread","features":[164]},{"name":"DEBUG_DATA_OffsetPrcbDpcRoutine","features":[164]},{"name":"DEBUG_DATA_OffsetPrcbMhz","features":[164]},{"name":"DEBUG_DATA_OffsetPrcbNumber","features":[164]},{"name":"DEBUG_DATA_OffsetPrcbProcessorState","features":[164]},{"name":"DEBUG_DATA_OffsetPrcbVendorString","features":[164]},{"name":"DEBUG_DATA_PROCESSOR_IDENTIFICATION","features":[164]},{"name":"DEBUG_DATA_PROCESSOR_SPEED","features":[164]},{"name":"DEBUG_DATA_PaeEnabled","features":[164]},{"name":"DEBUG_DATA_PagingLevels","features":[164]},{"name":"DEBUG_DATA_PoolTrackTableAddr","features":[164]},{"name":"DEBUG_DATA_ProductType","features":[164]},{"name":"DEBUG_DATA_PsActiveProcessHeadAddr","features":[164]},{"name":"DEBUG_DATA_PsLoadedModuleListAddr","features":[164]},{"name":"DEBUG_DATA_PspCidTableAddr","features":[164]},{"name":"DEBUG_DATA_PteBase","features":[164]},{"name":"DEBUG_DATA_SPACE_BUS_DATA","features":[164]},{"name":"DEBUG_DATA_SPACE_CONTROL","features":[164]},{"name":"DEBUG_DATA_SPACE_COUNT","features":[164]},{"name":"DEBUG_DATA_SPACE_DEBUGGER_DATA","features":[164]},{"name":"DEBUG_DATA_SPACE_IO","features":[164]},{"name":"DEBUG_DATA_SPACE_MSR","features":[164]},{"name":"DEBUG_DATA_SPACE_PHYSICAL","features":[164]},{"name":"DEBUG_DATA_SPACE_VIRTUAL","features":[164]},{"name":"DEBUG_DATA_SavedContextAddr","features":[164]},{"name":"DEBUG_DATA_SharedUserData","features":[164]},{"name":"DEBUG_DATA_SizeEProcess","features":[164]},{"name":"DEBUG_DATA_SizeEThread","features":[164]},{"name":"DEBUG_DATA_SizePrcb","features":[164]},{"name":"DEBUG_DATA_SuiteMask","features":[164]},{"name":"DEBUG_DECODE_ERROR","features":[1,164]},{"name":"DEBUG_DEVICE_OBJECT_INFO","features":[1,164]},{"name":"DEBUG_DISASM_EFFECTIVE_ADDRESS","features":[164]},{"name":"DEBUG_DISASM_MATCHING_SYMBOLS","features":[164]},{"name":"DEBUG_DISASM_SOURCE_FILE_NAME","features":[164]},{"name":"DEBUG_DISASM_SOURCE_LINE_NUMBER","features":[164]},{"name":"DEBUG_DRIVER_OBJECT_INFO","features":[164]},{"name":"DEBUG_DUMP_ACTIVE","features":[164]},{"name":"DEBUG_DUMP_DEFAULT","features":[164]},{"name":"DEBUG_DUMP_FILE_BASE","features":[164]},{"name":"DEBUG_DUMP_FILE_LOAD_FAILED_INDEX","features":[164]},{"name":"DEBUG_DUMP_FILE_ORIGINAL_CAB_INDEX","features":[164]},{"name":"DEBUG_DUMP_FILE_PAGE_FILE_DUMP","features":[164]},{"name":"DEBUG_DUMP_FULL","features":[164]},{"name":"DEBUG_DUMP_IMAGE_FILE","features":[164]},{"name":"DEBUG_DUMP_SMALL","features":[164]},{"name":"DEBUG_DUMP_TRACE_LOG","features":[164]},{"name":"DEBUG_DUMP_WINDOWS_CE","features":[164]},{"name":"DEBUG_ECREATE_PROCESS_DEFAULT","features":[164]},{"name":"DEBUG_ECREATE_PROCESS_INHERIT_HANDLES","features":[164]},{"name":"DEBUG_ECREATE_PROCESS_USE_IMPLICIT_COMMAND_LINE","features":[164]},{"name":"DEBUG_ECREATE_PROCESS_USE_VERIFIER_FLAGS","features":[164]},{"name":"DEBUG_EINDEX_FROM_CURRENT","features":[164]},{"name":"DEBUG_EINDEX_FROM_END","features":[164]},{"name":"DEBUG_EINDEX_FROM_START","features":[164]},{"name":"DEBUG_EINDEX_NAME","features":[164]},{"name":"DEBUG_END_ACTIVE_DETACH","features":[164]},{"name":"DEBUG_END_ACTIVE_TERMINATE","features":[164]},{"name":"DEBUG_END_DISCONNECT","features":[164]},{"name":"DEBUG_END_PASSIVE","features":[164]},{"name":"DEBUG_END_REENTRANT","features":[164]},{"name":"DEBUG_ENGOPT_ALL","features":[164]},{"name":"DEBUG_ENGOPT_ALLOW_NETWORK_PATHS","features":[164]},{"name":"DEBUG_ENGOPT_ALLOW_READ_ONLY_BREAKPOINTS","features":[164]},{"name":"DEBUG_ENGOPT_DEBUGGING_SENSITIVE_DATA","features":[164]},{"name":"DEBUG_ENGOPT_DISABLESQM","features":[164]},{"name":"DEBUG_ENGOPT_DISABLE_EXECUTION_COMMANDS","features":[164]},{"name":"DEBUG_ENGOPT_DISABLE_MANAGED_SUPPORT","features":[164]},{"name":"DEBUG_ENGOPT_DISABLE_MODULE_SYMBOL_LOAD","features":[164]},{"name":"DEBUG_ENGOPT_DISABLE_STEPLINES_OPTIONS","features":[164]},{"name":"DEBUG_ENGOPT_DISALLOW_IMAGE_FILE_MAPPING","features":[164]},{"name":"DEBUG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[164]},{"name":"DEBUG_ENGOPT_DISALLOW_SHELL_COMMANDS","features":[164]},{"name":"DEBUG_ENGOPT_FAIL_INCOMPLETE_INFORMATION","features":[164]},{"name":"DEBUG_ENGOPT_FINAL_BREAK","features":[164]},{"name":"DEBUG_ENGOPT_IGNORE_DBGHELP_VERSION","features":[164]},{"name":"DEBUG_ENGOPT_IGNORE_EXTENSION_VERSIONS","features":[164]},{"name":"DEBUG_ENGOPT_IGNORE_LOADER_EXCEPTIONS","features":[164]},{"name":"DEBUG_ENGOPT_INITIAL_BREAK","features":[164]},{"name":"DEBUG_ENGOPT_INITIAL_MODULE_BREAK","features":[164]},{"name":"DEBUG_ENGOPT_KD_QUIET_MODE","features":[164]},{"name":"DEBUG_ENGOPT_NO_EXECUTE_REPEAT","features":[164]},{"name":"DEBUG_ENGOPT_PREFER_DML","features":[164]},{"name":"DEBUG_ENGOPT_PREFER_TRACE_FILES","features":[164]},{"name":"DEBUG_ENGOPT_RESOLVE_SHADOWED_VARIABLES","features":[164]},{"name":"DEBUG_ENGOPT_SYNCHRONIZE_BREAKPOINTS","features":[164]},{"name":"DEBUG_EVENT_BREAKPOINT","features":[164]},{"name":"DEBUG_EVENT_CHANGE_DEBUGGEE_STATE","features":[164]},{"name":"DEBUG_EVENT_CHANGE_ENGINE_STATE","features":[164]},{"name":"DEBUG_EVENT_CHANGE_SYMBOL_STATE","features":[164]},{"name":"DEBUG_EVENT_CONTEXT","features":[164]},{"name":"DEBUG_EVENT_CREATE_PROCESS","features":[164]},{"name":"DEBUG_EVENT_CREATE_THREAD","features":[164]},{"name":"DEBUG_EVENT_EXCEPTION","features":[164]},{"name":"DEBUG_EVENT_EXIT_PROCESS","features":[164]},{"name":"DEBUG_EVENT_EXIT_THREAD","features":[164]},{"name":"DEBUG_EVENT_LOAD_MODULE","features":[164]},{"name":"DEBUG_EVENT_SERVICE_EXCEPTION","features":[164]},{"name":"DEBUG_EVENT_SESSION_STATUS","features":[164]},{"name":"DEBUG_EVENT_SYSTEM_ERROR","features":[164]},{"name":"DEBUG_EVENT_UNLOAD_MODULE","features":[164]},{"name":"DEBUG_EXCEPTION_FILTER_PARAMETERS","features":[164]},{"name":"DEBUG_EXECUTE_DEFAULT","features":[164]},{"name":"DEBUG_EXECUTE_ECHO","features":[164]},{"name":"DEBUG_EXECUTE_EVENT","features":[164]},{"name":"DEBUG_EXECUTE_EXTENSION","features":[164]},{"name":"DEBUG_EXECUTE_HOTKEY","features":[164]},{"name":"DEBUG_EXECUTE_INTERNAL","features":[164]},{"name":"DEBUG_EXECUTE_MENU","features":[164]},{"name":"DEBUG_EXECUTE_NOT_LOGGED","features":[164]},{"name":"DEBUG_EXECUTE_NO_REPEAT","features":[164]},{"name":"DEBUG_EXECUTE_SCRIPT","features":[164]},{"name":"DEBUG_EXECUTE_TOOLBAR","features":[164]},{"name":"DEBUG_EXECUTE_USER_CLICKED","features":[164]},{"name":"DEBUG_EXECUTE_USER_TYPED","features":[164]},{"name":"DEBUG_EXEC_FLAGS_NONBLOCK","features":[164]},{"name":"DEBUG_EXPR_CPLUSPLUS","features":[164]},{"name":"DEBUG_EXPR_MASM","features":[164]},{"name":"DEBUG_EXTENSION_AT_ENGINE","features":[164]},{"name":"DEBUG_EXTINIT_HAS_COMMAND_HELP","features":[164]},{"name":"DEBUG_EXT_PVALUE_DEFAULT","features":[164]},{"name":"DEBUG_EXT_PVTYPE_IS_POINTER","features":[164]},{"name":"DEBUG_EXT_PVTYPE_IS_VALUE","features":[164]},{"name":"DEBUG_EXT_QVALUE_DEFAULT","features":[164]},{"name":"DEBUG_FAILURE_TYPE","features":[164]},{"name":"DEBUG_FA_ENTRY_ANSI_STRING","features":[164]},{"name":"DEBUG_FA_ENTRY_ANSI_STRINGs","features":[164]},{"name":"DEBUG_FA_ENTRY_ARRAY","features":[164]},{"name":"DEBUG_FA_ENTRY_EXTENSION_CMD","features":[164]},{"name":"DEBUG_FA_ENTRY_INSTRUCTION_OFFSET","features":[164]},{"name":"DEBUG_FA_ENTRY_NO_TYPE","features":[164]},{"name":"DEBUG_FA_ENTRY_POINTER","features":[164]},{"name":"DEBUG_FA_ENTRY_STRUCTURED_DATA","features":[164]},{"name":"DEBUG_FA_ENTRY_ULONG","features":[164]},{"name":"DEBUG_FA_ENTRY_ULONG64","features":[164]},{"name":"DEBUG_FA_ENTRY_UNICODE_STRING","features":[164]},{"name":"DEBUG_FILTER_BREAK","features":[164]},{"name":"DEBUG_FILTER_CREATE_PROCESS","features":[164]},{"name":"DEBUG_FILTER_CREATE_THREAD","features":[164]},{"name":"DEBUG_FILTER_DEBUGGEE_OUTPUT","features":[164]},{"name":"DEBUG_FILTER_EXIT_PROCESS","features":[164]},{"name":"DEBUG_FILTER_EXIT_THREAD","features":[164]},{"name":"DEBUG_FILTER_GO_HANDLED","features":[164]},{"name":"DEBUG_FILTER_GO_NOT_HANDLED","features":[164]},{"name":"DEBUG_FILTER_IGNORE","features":[164]},{"name":"DEBUG_FILTER_INITIAL_BREAKPOINT","features":[164]},{"name":"DEBUG_FILTER_INITIAL_MODULE_LOAD","features":[164]},{"name":"DEBUG_FILTER_LOAD_MODULE","features":[164]},{"name":"DEBUG_FILTER_OUTPUT","features":[164]},{"name":"DEBUG_FILTER_REMOVE","features":[164]},{"name":"DEBUG_FILTER_SECOND_CHANCE_BREAK","features":[164]},{"name":"DEBUG_FILTER_SYSTEM_ERROR","features":[164]},{"name":"DEBUG_FILTER_UNLOAD_MODULE","features":[164]},{"name":"DEBUG_FIND_SOURCE_BEST_MATCH","features":[164]},{"name":"DEBUG_FIND_SOURCE_DEFAULT","features":[164]},{"name":"DEBUG_FIND_SOURCE_FULL_PATH","features":[164]},{"name":"DEBUG_FIND_SOURCE_NO_SRCSRV","features":[164]},{"name":"DEBUG_FIND_SOURCE_TOKEN_LOOKUP","features":[164]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM","features":[164]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM_STRICT","features":[164]},{"name":"DEBUG_FLR_ACPI","features":[164]},{"name":"DEBUG_FLR_ACPI_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_ACPI_EXTENSION","features":[164]},{"name":"DEBUG_FLR_ACPI_OBJECT","features":[164]},{"name":"DEBUG_FLR_ACPI_RESCONFLICT","features":[164]},{"name":"DEBUG_FLR_ADDITIONAL_DEBUGTEXT","features":[164]},{"name":"DEBUG_FLR_ADDITIONAL_XML","features":[164]},{"name":"DEBUG_FLR_ADD_PROCESS_IN_BUCKET","features":[164]},{"name":"DEBUG_FLR_ALUREON","features":[164]},{"name":"DEBUG_FLR_ANALYSIS_REPROCESS","features":[164]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_ELAPSED_TIME","features":[164]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_HOST","features":[164]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_TIME","features":[164]},{"name":"DEBUG_FLR_ANALYSIS_VERSION","features":[164]},{"name":"DEBUG_FLR_ANALYZABLE_POOL_CORRUPTION","features":[164]},{"name":"DEBUG_FLR_APPKILL","features":[164]},{"name":"DEBUG_FLR_APPLICATION_VERIFIER_LOADED","features":[164]},{"name":"DEBUG_FLR_APPS_NOT_TERMINATED","features":[164]},{"name":"DEBUG_FLR_APPVERIFERFLAGS","features":[164]},{"name":"DEBUG_FLR_ARM_WRITE_AV_CAVEAT","features":[164]},{"name":"DEBUG_FLR_ASSERT_DATA","features":[164]},{"name":"DEBUG_FLR_ASSERT_FILE","features":[164]},{"name":"DEBUG_FLR_ASSERT_INSTRUCTION","features":[164]},{"name":"DEBUG_FLR_BADPAGES_DETECTED","features":[164]},{"name":"DEBUG_FLR_BAD_HANDLE","features":[164]},{"name":"DEBUG_FLR_BAD_MEMORY_REFERENCE","features":[164]},{"name":"DEBUG_FLR_BAD_OBJECT_REFERENCE","features":[164]},{"name":"DEBUG_FLR_BAD_STACK","features":[164]},{"name":"DEBUG_FLR_BLOCKED_THREAD0","features":[164]},{"name":"DEBUG_FLR_BLOCKED_THREAD1","features":[164]},{"name":"DEBUG_FLR_BLOCKED_THREAD2","features":[164]},{"name":"DEBUG_FLR_BLOCKING_PROCESSID","features":[164]},{"name":"DEBUG_FLR_BLOCKING_THREAD","features":[164]},{"name":"DEBUG_FLR_BOOST_FOLLOWUP_TO_SPECIFIC","features":[164]},{"name":"DEBUG_FLR_BOOTSTAT","features":[164]},{"name":"DEBUG_FLR_BOOTSTAT_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_CHECKSUM","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_FLAVOR_STR","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_FUNCTION_STR","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_FUNC_OFFSET","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_IMAGE_STR","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_MODULE_STR","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_MODVER_STR","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_OFFSET","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_PREFIX_STR","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_PRIVATE","features":[164]},{"name":"DEBUG_FLR_BUCKET_ID_TIMEDATESTAMP","features":[164]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER","features":[164]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER_IDTAG","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_CODE","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_DESC","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_P1","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_P2","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_P3","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_P4","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_SPECIFIER","features":[164]},{"name":"DEBUG_FLR_BUGCHECK_STR","features":[164]},{"name":"DEBUG_FLR_BUILDNAME_IN_BUCKET","features":[164]},{"name":"DEBUG_FLR_BUILDOSVER_STR_deprecated","features":[164]},{"name":"DEBUG_FLR_BUILD_OS_FULL_VERSION_STRING","features":[164]},{"name":"DEBUG_FLR_BUILD_VERSION_STRING","features":[164]},{"name":"DEBUG_FLR_CANCELLATION_NOT_SUPPORTED","features":[164]},{"name":"DEBUG_FLR_CHKIMG_EXTENSION","features":[164]},{"name":"DEBUG_FLR_CHPE_PROCESS","features":[164]},{"name":"DEBUG_FLR_CLIENT_DRIVER","features":[164]},{"name":"DEBUG_FLR_COLLECT_DATA_FOR_BUCKET","features":[164]},{"name":"DEBUG_FLR_COMPUTER_NAME","features":[164]},{"name":"DEBUG_FLR_CONTEXT","features":[164]},{"name":"DEBUG_FLR_CONTEXT_COMMAND","features":[164]},{"name":"DEBUG_FLR_CONTEXT_FLAGS","features":[164]},{"name":"DEBUG_FLR_CONTEXT_FOLLOWUP_INDEX","features":[164]},{"name":"DEBUG_FLR_CONTEXT_ID","features":[164]},{"name":"DEBUG_FLR_CONTEXT_METADATA","features":[164]},{"name":"DEBUG_FLR_CONTEXT_ORDER","features":[164]},{"name":"DEBUG_FLR_CONTEXT_RESTORE_COMMAND","features":[164]},{"name":"DEBUG_FLR_CONTEXT_SYSTEM","features":[164]},{"name":"DEBUG_FLR_CORRUPTING_POOL_ADDRESS","features":[164]},{"name":"DEBUG_FLR_CORRUPTING_POOL_TAG","features":[164]},{"name":"DEBUG_FLR_CORRUPT_MODULE_LIST","features":[164]},{"name":"DEBUG_FLR_CORRUPT_SERVICE_TABLE","features":[164]},{"name":"DEBUG_FLR_COVERAGE_BUILD","features":[164]},{"name":"DEBUG_FLR_CPU_COUNT","features":[164]},{"name":"DEBUG_FLR_CPU_FAMILY","features":[164]},{"name":"DEBUG_FLR_CPU_MICROCODE_VERSION","features":[164]},{"name":"DEBUG_FLR_CPU_MICROCODE_ZERO_INTEL","features":[164]},{"name":"DEBUG_FLR_CPU_MODEL","features":[164]},{"name":"DEBUG_FLR_CPU_OVERCLOCKED","features":[164]},{"name":"DEBUG_FLR_CPU_SPEED","features":[164]},{"name":"DEBUG_FLR_CPU_STEPPING","features":[164]},{"name":"DEBUG_FLR_CPU_VENDOR","features":[164]},{"name":"DEBUG_FLR_CRITICAL_PROCESS","features":[164]},{"name":"DEBUG_FLR_CRITICAL_PROCESS_REPORTGUID","features":[164]},{"name":"DEBUG_FLR_CRITICAL_SECTION","features":[164]},{"name":"DEBUG_FLR_CURRENT_IRQL","features":[164]},{"name":"DEBUG_FLR_CUSTOMER_CRASH_COUNT","features":[164]},{"name":"DEBUG_FLR_CUSTOMREPORTTAG","features":[164]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MAX","features":[164]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MIN","features":[164]},{"name":"DEBUG_FLR_CUSTOM_COMMAND","features":[164]},{"name":"DEBUG_FLR_CUSTOM_COMMAND_OUTPUT","features":[164]},{"name":"DEBUG_FLR_DEADLOCK_INPROC","features":[164]},{"name":"DEBUG_FLR_DEADLOCK_XPROC","features":[164]},{"name":"DEBUG_FLR_DEBUG_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_DEFAULT_BUCKET_ID","features":[164]},{"name":"DEBUG_FLR_DEFAULT_SOLUTION_ID","features":[164]},{"name":"DEBUG_FLR_DERIVED_WAIT_CHAIN","features":[164]},{"name":"DEBUG_FLR_DESKTOP_HEAP_MISSING","features":[164]},{"name":"DEBUG_FLR_DETOURED_IMAGE","features":[164]},{"name":"DEBUG_FLR_DEVICE_NODE","features":[164]},{"name":"DEBUG_FLR_DEVICE_OBJECT","features":[164]},{"name":"DEBUG_FLR_DISKIO_READ_FAILURE","features":[164]},{"name":"DEBUG_FLR_DISKIO_WRITE_FAILURE","features":[164]},{"name":"DEBUG_FLR_DISKSEC_ISSUEDESCSTRING_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_MFGID_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_MODEL_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_ORGID_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_DATASIZE_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_OFFSET_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_TOTSIZE_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_DATASIZE_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_OFFSET_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_TOTSIZE_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_REASON_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISKSEC_TOTALSIZE_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_DISK_HARDWARE_ERROR","features":[164]},{"name":"DEBUG_FLR_DPC_RUNTIME","features":[164]},{"name":"DEBUG_FLR_DPC_STACK_BASE","features":[164]},{"name":"DEBUG_FLR_DPC_TIMELIMIT","features":[164]},{"name":"DEBUG_FLR_DPC_TIMEOUT_TYPE","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWAREID","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_ID","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_NAME","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_ID_BUS_TYPE","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_REV_ID","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBSYS_ID","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBVENDOR_NAME","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_ID","features":[164]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_NAME","features":[164]},{"name":"DEBUG_FLR_DRIVER_OBJECT","features":[164]},{"name":"DEBUG_FLR_DRIVER_VERIFIER_IO_VIOLATION_TYPE","features":[164]},{"name":"DEBUG_FLR_DRIVER_XML_DESCRIPTION","features":[164]},{"name":"DEBUG_FLR_DRIVER_XML_MANUFACTURER","features":[164]},{"name":"DEBUG_FLR_DRIVER_XML_PRODUCTNAME","features":[164]},{"name":"DEBUG_FLR_DRIVER_XML_VERSION","features":[164]},{"name":"DEBUG_FLR_DRVPOWERSTATE_SUBCODE","features":[164]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTA","features":[164]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTW","features":[164]},{"name":"DEBUG_FLR_DUMP_CLASS","features":[164]},{"name":"DEBUG_FLR_DUMP_FILE_ATTRIBUTES","features":[164]},{"name":"DEBUG_FLR_DUMP_FLAGS","features":[164]},{"name":"DEBUG_FLR_DUMP_QUALIFIER","features":[164]},{"name":"DEBUG_FLR_DUMP_TYPE","features":[164]},{"name":"DEBUG_FLR_END_MESSAGE","features":[164]},{"name":"DEBUG_FLR_ERESOURCE_ADDRESS","features":[164]},{"name":"DEBUG_FLR_EVENT_CODE_DATA_MISMATCH","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_CODE","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR_deprecated","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_CONTEXT_RECURSION","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_DOESNOT_MATCH_CODE","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_MODULE_INFO","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER1","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER2","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER3","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER4","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_RECORD","features":[164]},{"name":"DEBUG_FLR_EXCEPTION_STR","features":[164]},{"name":"DEBUG_FLR_EXECUTE_ADDRESS","features":[164]},{"name":"DEBUG_FLR_FAILED_INSTRUCTION_ADDRESS","features":[164]},{"name":"DEBUG_FLR_FAILURE_ANALYSIS_SOURCE","features":[164]},{"name":"DEBUG_FLR_FAILURE_BUCKET_ID","features":[164]},{"name":"DEBUG_FLR_FAILURE_DISPLAY_NAME","features":[164]},{"name":"DEBUG_FLR_FAILURE_EXCEPTION_CODE","features":[164]},{"name":"DEBUG_FLR_FAILURE_FUNCTION_NAME","features":[164]},{"name":"DEBUG_FLR_FAILURE_ID_HASH","features":[164]},{"name":"DEBUG_FLR_FAILURE_ID_HASH_STRING","features":[164]},{"name":"DEBUG_FLR_FAILURE_ID_REPORT_LINK","features":[164]},{"name":"DEBUG_FLR_FAILURE_IMAGE_NAME","features":[164]},{"name":"DEBUG_FLR_FAILURE_LIST","features":[164]},{"name":"DEBUG_FLR_FAILURE_MODULE_NAME","features":[164]},{"name":"DEBUG_FLR_FAILURE_PROBLEM_CLASS","features":[164]},{"name":"DEBUG_FLR_FAILURE_SYMBOL_NAME","features":[164]},{"name":"DEBUG_FLR_FAULTING_INSTR_CODE","features":[164]},{"name":"DEBUG_FLR_FAULTING_IP","features":[164]},{"name":"DEBUG_FLR_FAULTING_LOCAL_VARIABLE_NAME","features":[164]},{"name":"DEBUG_FLR_FAULTING_MODULE","features":[164]},{"name":"DEBUG_FLR_FAULTING_SERVICE_NAME","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CODE","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_COMMIT_ID","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CONTROL_TYPE","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_FILE","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE_NUMBER","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_PROJECT","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_ID","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_URL","features":[164]},{"name":"DEBUG_FLR_FAULTING_SOURCE_SRV_COMMAND","features":[164]},{"name":"DEBUG_FLR_FAULTING_THREAD","features":[164]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_M","features":[164]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MF","features":[164]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MFO","features":[164]},{"name":"DEBUG_FLR_FA_ADHOC_ANALYSIS_ITEMS","features":[164]},{"name":"DEBUG_FLR_FA_PERF_DATA","features":[164]},{"name":"DEBUG_FLR_FA_PERF_ELAPSED_MS","features":[164]},{"name":"DEBUG_FLR_FA_PERF_ITEM","features":[164]},{"name":"DEBUG_FLR_FA_PERF_ITEM_NAME","features":[164]},{"name":"DEBUG_FLR_FA_PERF_ITERATIONS","features":[164]},{"name":"DEBUG_FLR_FEATURE_PATH","features":[164]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS","features":[164]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS","features":[164]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_FILE_ID","features":[164]},{"name":"DEBUG_FLR_FILE_IN_CAB","features":[164]},{"name":"DEBUG_FLR_FILE_LINE","features":[164]},{"name":"DEBUG_FLR_FIXED_IN_OSVERSION","features":[164]},{"name":"DEBUG_FLR_FOLLOWUP_BEFORE_RETRACER","features":[164]},{"name":"DEBUG_FLR_FOLLOWUP_BUCKET_ID","features":[164]},{"name":"DEBUG_FLR_FOLLOWUP_CONTEXT","features":[164]},{"name":"DEBUG_FLR_FOLLOWUP_DRIVER_ONLY","features":[164]},{"name":"DEBUG_FLR_FOLLOWUP_IP","features":[164]},{"name":"DEBUG_FLR_FOLLOWUP_NAME","features":[164]},{"name":"DEBUG_FLR_FRAME_ONE_INVALID","features":[164]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_NAME","features":[164]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_PATH","features":[164]},{"name":"DEBUG_FLR_FRAME_SOURCE_LINE_NUMBER","features":[164]},{"name":"DEBUG_FLR_FREED_POOL_TAG","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_ANALYSIS_TEXT","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_COOKIES_MATCH_EXH","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_COOKIE","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBP","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBPESP","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_FALSE_POSITIVE","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE_COMPLEMENT","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_FUNCTION","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_FRAMEID","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_THREADID","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_MEMORY_READ_ERROR","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_MISSING_ESTABLISHER_FRAME","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_MODULE_COOKIE","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_NOT_UP2DATE","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_OFF_BY_ONE_OVERRUN","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL_NAME","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVELY_CORRUPTED_EBPESP","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVE_BUFFER_OVERFLOW","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_PROBABLY_NOT_USING_GS","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_RA_SMASHED","features":[164]},{"name":"DEBUG_FLR_GSFAILURE_UP2DATE_UNKNOWN","features":[164]},{"name":"DEBUG_FLR_HANDLE_VALUE","features":[164]},{"name":"DEBUG_FLR_HANG","features":[164]},{"name":"DEBUG_FLR_HANG_DATA_NEEDED","features":[164]},{"name":"DEBUG_FLR_HANG_REPORT_THREAD_IS_IDLE","features":[164]},{"name":"DEBUG_FLR_HARDWARE_BUCKET_TAG","features":[164]},{"name":"DEBUG_FLR_HARDWARE_ERROR","features":[164]},{"name":"DEBUG_FLR_HIGH_NONPAGED_POOL_USAGE","features":[164]},{"name":"DEBUG_FLR_HIGH_PAGED_POOL_USAGE","features":[164]},{"name":"DEBUG_FLR_HIGH_PROCESS_COMMIT","features":[164]},{"name":"DEBUG_FLR_HIGH_SERVICE_COMMIT","features":[164]},{"name":"DEBUG_FLR_HIGH_SHARED_COMMIT_USAGE","features":[164]},{"name":"DEBUG_FLR_HOLDINFO","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_ACTIVE_HOLD_COUNT","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_HOLD","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_IGNORE","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_HISTORIC_HOLD_COUNT","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_LAST_SEEN_HOLD_DATE","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_MANUAL_HOLD","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_MAX_HOLD_LIMIT","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_NOTIFICATION_ALIASES","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_RECOMMEND_HOLD","features":[164]},{"name":"DEBUG_FLR_HOLDINFO_TENET_SOCRE","features":[164]},{"name":"DEBUG_FLR_IGNORE_BUCKET_ID_OFFSET","features":[164]},{"name":"DEBUG_FLR_IGNORE_LARGE_MODULE_CORRUPTION","features":[164]},{"name":"DEBUG_FLR_IGNORE_MODULE_HARDWARE_ID","features":[164]},{"name":"DEBUG_FLR_IMAGE_CLASS","features":[164]},{"name":"DEBUG_FLR_IMAGE_NAME","features":[164]},{"name":"DEBUG_FLR_IMAGE_TIMESTAMP","features":[164]},{"name":"DEBUG_FLR_IMAGE_VERSION","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_CLIFAULT","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_FREE_BLOCK","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_MODULE_NOT_IN_LIST","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_PAGED_CODE","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_RESERVED_BLOCK","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_UNLOADED_MODULE","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_VM_MAPPED_MODULE","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_MISALIGNED","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_NOT_IN_STREAM","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_HEAP","features":[164]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_STACK","features":[164]},{"name":"DEBUG_FLR_INSTR_SESSION_POOL_TAG","features":[164]},{"name":"DEBUG_FLR_INTEL_CPU_BIOS_UPGRADE_NEEDED","features":[164]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_CONTINUABLE","features":[164]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_HITCOUNT","features":[164]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_STATUS_TEXT","features":[164]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_URL","features":[164]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG","features":[164]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG_DATABASE_STRING","features":[164]},{"name":"DEBUG_FLR_INTERNAL_RESPONSE","features":[164]},{"name":"DEBUG_FLR_INTERNAL_SOLUTION_TEXT","features":[164]},{"name":"DEBUG_FLR_INVALID","features":[164]},{"name":"DEBUG_FLR_INVALID_DPC_FOUND","features":[164]},{"name":"DEBUG_FLR_INVALID_HEAP_ADDRESS","features":[164]},{"name":"DEBUG_FLR_INVALID_KERNEL_CONTEXT","features":[164]},{"name":"DEBUG_FLR_INVALID_OPCODE","features":[164]},{"name":"DEBUG_FLR_INVALID_PFN","features":[164]},{"name":"DEBUG_FLR_INVALID_USEREVENT","features":[164]},{"name":"DEBUG_FLR_INVALID_USER_CONTEXT","features":[164]},{"name":"DEBUG_FLR_IOCONTROL_CODE","features":[164]},{"name":"DEBUG_FLR_IOSB_ADDRESS","features":[164]},{"name":"DEBUG_FLR_IO_ERROR_CODE","features":[164]},{"name":"DEBUG_FLR_IRP_ADDRESS","features":[164]},{"name":"DEBUG_FLR_IRP_CANCEL_ROUTINE","features":[164]},{"name":"DEBUG_FLR_IRP_MAJOR_FN","features":[164]},{"name":"DEBUG_FLR_IRP_MINOR_FN","features":[164]},{"name":"DEBUG_FLR_KERNEL","features":[164]},{"name":"DEBUG_FLR_KERNEL_LOG_PROCESS_NAME","features":[164]},{"name":"DEBUG_FLR_KERNEL_LOG_STATUS","features":[164]},{"name":"DEBUG_FLR_KERNEL_VERIFIER_ENABLED","features":[164]},{"name":"DEBUG_FLR_KEYVALUE_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_KEY_VALUES_STRING","features":[164]},{"name":"DEBUG_FLR_KEY_VALUES_VARIANT","features":[164]},{"name":"DEBUG_FLR_KM_MODULE_LIST","features":[164]},{"name":"DEBUG_FLR_LARGE_TICK_INCREMENT","features":[164]},{"name":"DEBUG_FLR_LAST_CONTROL_TRANSFER","features":[164]},{"name":"DEBUG_FLR_LCIE_ISO_AVAILABLE","features":[164]},{"name":"DEBUG_FLR_LEAKED_SESSION_POOL_TAG","features":[164]},{"name":"DEBUG_FLR_LEGACY_PAGE_TABLE_ACCESS","features":[164]},{"name":"DEBUG_FLR_LIVE_KERNEL_DUMP","features":[164]},{"name":"DEBUG_FLR_LOADERLOCK_BLOCKED_API","features":[164]},{"name":"DEBUG_FLR_LOADERLOCK_IN_WAIT_CHAIN","features":[164]},{"name":"DEBUG_FLR_LOADERLOCK_OWNER_API","features":[164]},{"name":"DEBUG_FLR_LOP_STACKHASH","features":[164]},{"name":"DEBUG_FLR_LOW_SYSTEM_COMMIT","features":[164]},{"name":"DEBUG_FLR_MACHINE_INFO_SHA1_HASH","features":[164]},{"name":"DEBUG_FLR_MANAGED_ANALYSIS_PROVIDER","features":[164]},{"name":"DEBUG_FLR_MANAGED_BITNESS_MISMATCH","features":[164]},{"name":"DEBUG_FLR_MANAGED_CODE","features":[164]},{"name":"DEBUG_FLR_MANAGED_ENGINE_MODULE","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_ADDRESS","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CALLSTACK","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CMD","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CONTEXT_MESSAGE","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_HRESULT","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_ADDRESS","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_CALLSTACK","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_HRESULT","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_MESSAGE","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_TYPE","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE_deprecated","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_ADDRESS","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_CALLSTACK","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_HRESULT","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_MESSAGE","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_TYPE","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_OBJECT","features":[164]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_TYPE","features":[164]},{"name":"DEBUG_FLR_MANAGED_FRAME_CHAIN_CORRUPTION","features":[164]},{"name":"DEBUG_FLR_MANAGED_HRESULT_STRING","features":[164]},{"name":"DEBUG_FLR_MANAGED_KERNEL_DEBUGGER","features":[164]},{"name":"DEBUG_FLR_MANAGED_OBJECT","features":[164]},{"name":"DEBUG_FLR_MANAGED_OBJECT_NAME","features":[164]},{"name":"DEBUG_FLR_MANAGED_STACK_COMMAND","features":[164]},{"name":"DEBUG_FLR_MANAGED_STACK_STRING","features":[164]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_CALLSTACK","features":[164]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_STACKOBJECTS","features":[164]},{"name":"DEBUG_FLR_MANAGED_THREAD_ID","features":[164]},{"name":"DEBUG_FLR_MANUAL_BREAKIN","features":[164]},{"name":"DEBUG_FLR_MARKER_BUCKET","features":[164]},{"name":"DEBUG_FLR_MARKER_FILE","features":[164]},{"name":"DEBUG_FLR_MARKER_MODULE_FILE","features":[164]},{"name":"DEBUG_FLR_MASK_ALL","features":[164]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_STATUS","features":[164]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_TIME","features":[164]},{"name":"DEBUG_FLR_MEMORY_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_MEMORY_CORRUPTION_SIGNATURE","features":[164]},{"name":"DEBUG_FLR_MEMORY_CORRUPTOR","features":[164]},{"name":"DEBUG_FLR_MILCORE_BREAK","features":[164]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT","features":[164]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT_OF_THIS_TYPE","features":[164]},{"name":"DEBUG_FLR_MISSING_CLR_SYMBOL","features":[164]},{"name":"DEBUG_FLR_MISSING_IMPORTANT_SYMBOL","features":[164]},{"name":"DEBUG_FLR_MM_INTERNAL_CODE","features":[164]},{"name":"DEBUG_FLR_MODLIST_SHA1_HASH","features":[164]},{"name":"DEBUG_FLR_MODLIST_TSCHKSUM_SHA1_HASH","features":[164]},{"name":"DEBUG_FLR_MODLIST_UNLOADED_SHA1_HASH","features":[164]},{"name":"DEBUG_FLR_MODULE_BUCKET_ID","features":[164]},{"name":"DEBUG_FLR_MODULE_LIST","features":[164]},{"name":"DEBUG_FLR_MODULE_NAME","features":[164]},{"name":"DEBUG_FLR_MODULE_PRODUCTNAME","features":[164]},{"name":"DEBUG_FLR_MOD_SPECIFIC_DATA_ONLY","features":[164]},{"name":"DEBUG_FLR_NO_ARCH_IN_BUCKET","features":[164]},{"name":"DEBUG_FLR_NO_BUGCHECK_IN_BUCKET","features":[164]},{"name":"DEBUG_FLR_NO_IMAGE_IN_BUCKET","features":[164]},{"name":"DEBUG_FLR_NO_IMAGE_TIMESTAMP_IN_BUCKET","features":[164]},{"name":"DEBUG_FLR_NTGLOBALFLAG","features":[164]},{"name":"DEBUG_FLR_ON_DPC_STACK","features":[164]},{"name":"DEBUG_FLR_ORIGINAL_CAB_NAME","features":[164]},{"name":"DEBUG_FLR_OSBUILD_deprecated","features":[164]},{"name":"DEBUG_FLR_OS_BRANCH","features":[164]},{"name":"DEBUG_FLR_OS_BUILD","features":[164]},{"name":"DEBUG_FLR_OS_BUILD_LAYERS_XML","features":[164]},{"name":"DEBUG_FLR_OS_BUILD_STRING","features":[164]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_ISO","features":[164]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_LAB","features":[164]},{"name":"DEBUG_FLR_OS_FLAVOR","features":[164]},{"name":"DEBUG_FLR_OS_LOCALE","features":[164]},{"name":"DEBUG_FLR_OS_LOCALE_LCID","features":[164]},{"name":"DEBUG_FLR_OS_MAJOR","features":[164]},{"name":"DEBUG_FLR_OS_MINOR","features":[164]},{"name":"DEBUG_FLR_OS_NAME","features":[164]},{"name":"DEBUG_FLR_OS_NAME_EDITION","features":[164]},{"name":"DEBUG_FLR_OS_PLATFORM_ARCH","features":[164]},{"name":"DEBUG_FLR_OS_PLATFORM_ID","features":[164]},{"name":"DEBUG_FLR_OS_PRODUCT_TYPE","features":[164]},{"name":"DEBUG_FLR_OS_REVISION","features":[164]},{"name":"DEBUG_FLR_OS_SERVICEPACK","features":[164]},{"name":"DEBUG_FLR_OS_SERVICEPACK_deprecated","features":[164]},{"name":"DEBUG_FLR_OS_SKU","features":[164]},{"name":"DEBUG_FLR_OS_SUITE_MASK","features":[164]},{"name":"DEBUG_FLR_OS_VERSION","features":[164]},{"name":"DEBUG_FLR_OS_VERSION_deprecated","features":[164]},{"name":"DEBUG_FLR_OVERLAPPED_MODULE","features":[164]},{"name":"DEBUG_FLR_OVERLAPPED_UNLOADED_MODULE","features":[164]},{"name":"DEBUG_FLR_PAGE_HASH_ERRORS","features":[164]},{"name":"DEBUG_FLR_PARAM_TYPE","features":[164]},{"name":"DEBUG_FLR_PG_MISMATCH","features":[164]},{"name":"DEBUG_FLR_PHONE_APPID","features":[164]},{"name":"DEBUG_FLR_PHONE_APPVERSION","features":[164]},{"name":"DEBUG_FLR_PHONE_BOOTLOADERVERSION","features":[164]},{"name":"DEBUG_FLR_PHONE_BUILDBRANCH","features":[164]},{"name":"DEBUG_FLR_PHONE_BUILDER","features":[164]},{"name":"DEBUG_FLR_PHONE_BUILDNUMBER","features":[164]},{"name":"DEBUG_FLR_PHONE_BUILDTIMESTAMP","features":[164]},{"name":"DEBUG_FLR_PHONE_FIRMWAREREVISION","features":[164]},{"name":"DEBUG_FLR_PHONE_HARDWAREREVISION","features":[164]},{"name":"DEBUG_FLR_PHONE_LCID","features":[164]},{"name":"DEBUG_FLR_PHONE_MCCMNC","features":[164]},{"name":"DEBUG_FLR_PHONE_OPERATOR","features":[164]},{"name":"DEBUG_FLR_PHONE_QFE","features":[164]},{"name":"DEBUG_FLR_PHONE_RADIOHARDWAREREVISION","features":[164]},{"name":"DEBUG_FLR_PHONE_RADIOSOFTWAREREVISION","features":[164]},{"name":"DEBUG_FLR_PHONE_RAM","features":[164]},{"name":"DEBUG_FLR_PHONE_REPORTGUID","features":[164]},{"name":"DEBUG_FLR_PHONE_REPORTTIMESTAMP","features":[164]},{"name":"DEBUG_FLR_PHONE_ROMVERSION","features":[164]},{"name":"DEBUG_FLR_PHONE_SKUID","features":[164]},{"name":"DEBUG_FLR_PHONE_SOCVERSION","features":[164]},{"name":"DEBUG_FLR_PHONE_SOURCE","features":[164]},{"name":"DEBUG_FLR_PHONE_SOURCEEXTERNAL","features":[164]},{"name":"DEBUG_FLR_PHONE_UIF_APPID","features":[164]},{"name":"DEBUG_FLR_PHONE_UIF_APPNAME","features":[164]},{"name":"DEBUG_FLR_PHONE_UIF_CATEGORY","features":[164]},{"name":"DEBUG_FLR_PHONE_UIF_COMMENT","features":[164]},{"name":"DEBUG_FLR_PHONE_UIF_ORIGIN","features":[164]},{"name":"DEBUG_FLR_PHONE_USERALIAS","features":[164]},{"name":"DEBUG_FLR_PHONE_VERSIONMAJOR","features":[164]},{"name":"DEBUG_FLR_PHONE_VERSIONMINOR","features":[164]},{"name":"DEBUG_FLR_PLATFORM_BUCKET_STRING","features":[164]},{"name":"DEBUG_FLR_PNP","features":[164]},{"name":"DEBUG_FLR_PNP_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS","features":[164]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA","features":[164]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA_DEPRECATED","features":[164]},{"name":"DEBUG_FLR_POISONED_TB","features":[164]},{"name":"DEBUG_FLR_POOL_ADDRESS","features":[164]},{"name":"DEBUG_FLR_POOL_CORRUPTOR","features":[164]},{"name":"DEBUG_FLR_POSSIBLE_INVALID_CONTROL_TRANSFER","features":[164]},{"name":"DEBUG_FLR_POSSIBLE_STACK_OVERFLOW","features":[164]},{"name":"DEBUG_FLR_POWERREQUEST_ADDRESS","features":[164]},{"name":"DEBUG_FLR_PO_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_PREVIOUS_IRQL","features":[164]},{"name":"DEBUG_FLR_PREVIOUS_MODE","features":[164]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS","features":[164]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS_DATA","features":[164]},{"name":"DEBUG_FLR_PROBLEM_CLASSES","features":[164]},{"name":"DEBUG_FLR_PROBLEM_CODE_PATH_HASH","features":[164]},{"name":"DEBUG_FLR_PROCESSES_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_PROCESSOR_ID","features":[164]},{"name":"DEBUG_FLR_PROCESSOR_INFO","features":[164]},{"name":"DEBUG_FLR_PROCESS_BAM_CURRENT_THROTTLED","features":[164]},{"name":"DEBUG_FLR_PROCESS_BAM_PREVIOUS_THROTTLED","features":[164]},{"name":"DEBUG_FLR_PROCESS_INFO","features":[164]},{"name":"DEBUG_FLR_PROCESS_NAME","features":[164]},{"name":"DEBUG_FLR_PROCESS_OBJECT","features":[164]},{"name":"DEBUG_FLR_PROCESS_PRODUCTNAME","features":[164]},{"name":"DEBUG_FLR_RAISED_IRQL_USER_FAULT","features":[164]},{"name":"DEBUG_FLR_READ_ADDRESS","features":[164]},{"name":"DEBUG_FLR_RECURRING_STACK","features":[164]},{"name":"DEBUG_FLR_REGISTRYTXT_SOURCE","features":[164]},{"name":"DEBUG_FLR_REGISTRYTXT_STRESS_ID","features":[164]},{"name":"DEBUG_FLR_REGISTRY_DATA","features":[164]},{"name":"DEBUG_FLR_REPORT_INFO_CREATION_TIME","features":[164]},{"name":"DEBUG_FLR_REPORT_INFO_GUID","features":[164]},{"name":"DEBUG_FLR_REPORT_INFO_SOURCE","features":[164]},{"name":"DEBUG_FLR_REQUESTED_IRQL","features":[164]},{"name":"DEBUG_FLR_RESERVED","features":[164]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE","features":[164]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE_STR","features":[164]},{"name":"DEBUG_FLR_SCM","features":[164]},{"name":"DEBUG_FLR_SCM_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY","features":[164]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_CONTROLCODE","features":[164]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_SERVICENAME","features":[164]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_STARTTIME","features":[164]},{"name":"DEBUG_FLR_SEARCH_HANG","features":[164]},{"name":"DEBUG_FLR_SECURITY_COOKIES","features":[164]},{"name":"DEBUG_FLR_SERVICE","features":[164]},{"name":"DEBUG_FLR_SERVICETABLE_MODIFIED","features":[164]},{"name":"DEBUG_FLR_SERVICE_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_SERVICE_DEPENDONGROUP","features":[164]},{"name":"DEBUG_FLR_SERVICE_DEPENDONSERVICE","features":[164]},{"name":"DEBUG_FLR_SERVICE_DESCRIPTION","features":[164]},{"name":"DEBUG_FLR_SERVICE_DISPLAYNAME","features":[164]},{"name":"DEBUG_FLR_SERVICE_GROUP","features":[164]},{"name":"DEBUG_FLR_SERVICE_NAME","features":[164]},{"name":"DEBUG_FLR_SHOW_ERRORLOG","features":[164]},{"name":"DEBUG_FLR_SHOW_LCIE_ISO_DATA","features":[164]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELSVC_INSTANCES","features":[164]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELWP_INSTANCES","features":[164]},{"name":"DEBUG_FLR_SINGLE_BIT_ERROR","features":[164]},{"name":"DEBUG_FLR_SINGLE_BIT_PFN_PAGE_ERROR","features":[164]},{"name":"DEBUG_FLR_SKIP_CORRUPT_MODULE_DETECTION","features":[164]},{"name":"DEBUG_FLR_SKIP_MODULE_SPECIFIC_BUCKET_INFO","features":[164]},{"name":"DEBUG_FLR_SKIP_STACK_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_SM_BUFFER_HASH","features":[164]},{"name":"DEBUG_FLR_SM_COMPRESSION_FORMAT","features":[164]},{"name":"DEBUG_FLR_SM_ONEBIT_SOLUTION_COUNT","features":[164]},{"name":"DEBUG_FLR_SM_SOURCE_OFFSET","features":[164]},{"name":"DEBUG_FLR_SM_SOURCE_PFN1","features":[164]},{"name":"DEBUG_FLR_SM_SOURCE_PFN2","features":[164]},{"name":"DEBUG_FLR_SM_SOURCE_SIZE","features":[164]},{"name":"DEBUG_FLR_SM_TARGET_PFN","features":[164]},{"name":"DEBUG_FLR_SOLUTION_ID","features":[164]},{"name":"DEBUG_FLR_SOLUTION_TYPE","features":[164]},{"name":"DEBUG_FLR_SPECIAL_POOL_CORRUPTION_TYPE","features":[164]},{"name":"DEBUG_FLR_STACK","features":[164]},{"name":"DEBUG_FLR_STACKHASH_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION","features":[164]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION_SIZE","features":[164]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE","features":[164]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE_SIZE","features":[164]},{"name":"DEBUG_FLR_STACKUSAGE_RECURSION_COUNT","features":[164]},{"name":"DEBUG_FLR_STACK_COMMAND","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME","features":[164]},{"name":"DEBUG_FLR_STACK_FRAMES","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_FLAGS","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_FUNCTION","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_IMAGE","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_INSTRUCTION","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE_BASE","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_NUMBER","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_SRC","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL","features":[164]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL_OFFSET","features":[164]},{"name":"DEBUG_FLR_STACK_OVERFLOW","features":[164]},{"name":"DEBUG_FLR_STACK_POINTER_ERROR","features":[164]},{"name":"DEBUG_FLR_STACK_POINTER_MISALIGNED","features":[164]},{"name":"DEBUG_FLR_STACK_POINTER_ONEBIT_ERROR","features":[164]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_M","features":[164]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MF","features":[164]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MFO","features":[164]},{"name":"DEBUG_FLR_STACK_TEXT","features":[164]},{"name":"DEBUG_FLR_STATUS_CODE","features":[164]},{"name":"DEBUG_FLR_STORAGE","features":[164]},{"name":"DEBUG_FLR_STORAGE_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_STORAGE_ISSUEDESCSTRING","features":[164]},{"name":"DEBUG_FLR_STORAGE_MFGID","features":[164]},{"name":"DEBUG_FLR_STORAGE_MODEL","features":[164]},{"name":"DEBUG_FLR_STORAGE_ORGID","features":[164]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_DATASIZE","features":[164]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_OFFSET","features":[164]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_TOTSIZE","features":[164]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_DATASIZE","features":[164]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_OFFSET","features":[164]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_TOTSIZE","features":[164]},{"name":"DEBUG_FLR_STORAGE_REASON","features":[164]},{"name":"DEBUG_FLR_STORAGE_TOTALSIZE","features":[164]},{"name":"DEBUG_FLR_STORE_DEVELOPER_NAME","features":[164]},{"name":"DEBUG_FLR_STORE_IS_MICROSOFT_PRODUCT","features":[164]},{"name":"DEBUG_FLR_STORE_LEGACY_PARENT_PRODUCT_ID","features":[164]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_PHONE_PRODUCT_ID","features":[164]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_STORE_PRODUCT_ID","features":[164]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_360_PRODUCT_ID","features":[164]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_ONE_PRODUCT_ID","features":[164]},{"name":"DEBUG_FLR_STORE_PACKAGE_FAMILY_NAME","features":[164]},{"name":"DEBUG_FLR_STORE_PACKAGE_IDENTITY_NAME","features":[164]},{"name":"DEBUG_FLR_STORE_PREFERRED_SKU_ID","features":[164]},{"name":"DEBUG_FLR_STORE_PRIMARY_PARENT_PRODUCT_ID","features":[164]},{"name":"DEBUG_FLR_STORE_PRODUCT_DESCRIPTION","features":[164]},{"name":"DEBUG_FLR_STORE_PRODUCT_DISPLAY_NAME","features":[164]},{"name":"DEBUG_FLR_STORE_PRODUCT_EXTENDED_NAME","features":[164]},{"name":"DEBUG_FLR_STORE_PRODUCT_ID","features":[164]},{"name":"DEBUG_FLR_STORE_PUBLISHER_CERTIFICATE_NAME","features":[164]},{"name":"DEBUG_FLR_STORE_PUBLISHER_ID","features":[164]},{"name":"DEBUG_FLR_STORE_PUBLISHER_NAME","features":[164]},{"name":"DEBUG_FLR_STORE_URL_APP","features":[164]},{"name":"DEBUG_FLR_STORE_URL_APPHEALTH","features":[164]},{"name":"DEBUG_FLR_STORE_XBOX_TITLE_ID","features":[164]},{"name":"DEBUG_FLR_STREAM_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_SUSPECT_CODE_PATH_HASH","features":[164]},{"name":"DEBUG_FLR_SVCHOST","features":[164]},{"name":"DEBUG_FLR_SVCHOST_GROUP","features":[164]},{"name":"DEBUG_FLR_SVCHOST_IMAGEPATH","features":[164]},{"name":"DEBUG_FLR_SVCHOST_SERVICEDLL","features":[164]},{"name":"DEBUG_FLR_SWITCH_PROCESS_CONTEXT","features":[164]},{"name":"DEBUG_FLR_SYMBOL_FROM_RAW_STACK_ADDRESS","features":[164]},{"name":"DEBUG_FLR_SYMBOL_NAME","features":[164]},{"name":"DEBUG_FLR_SYMBOL_ON_RAW_STACK","features":[164]},{"name":"DEBUG_FLR_SYMBOL_ROUTINE_NAME","features":[164]},{"name":"DEBUG_FLR_SYMBOL_STACK_INDEX","features":[164]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_MANUFACTURER","features":[164]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_PRODUCT","features":[164]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_VERSION","features":[164]},{"name":"DEBUG_FLR_SYSINFO_BIOS_DATE","features":[164]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VENDOR","features":[164]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VERSION","features":[164]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_MANUFACTURER","features":[164]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_PRODUCT","features":[164]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_SKU","features":[164]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_VERSION","features":[164]},{"name":"DEBUG_FLR_SYSTEM_LOCALE_deprecated","features":[164]},{"name":"DEBUG_FLR_SYSXML_CHECKSUM","features":[164]},{"name":"DEBUG_FLR_SYSXML_LOCALEID","features":[164]},{"name":"DEBUG_FLR_TARGET_MODE","features":[164]},{"name":"DEBUG_FLR_TARGET_TIME","features":[164]},{"name":"DEBUG_FLR_TESTRESULTGUID","features":[164]},{"name":"DEBUG_FLR_TESTRESULTSERVER","features":[164]},{"name":"DEBUG_FLR_THREADPOOL_WAITER","features":[164]},{"name":"DEBUG_FLR_THREAD_ATTRIBUTES","features":[164]},{"name":"DEBUG_FLR_TIMELINE_ANALYSIS","features":[164]},{"name":"DEBUG_FLR_TIMELINE_TIMES","features":[164]},{"name":"DEBUG_FLR_TRAP_FRAME","features":[164]},{"name":"DEBUG_FLR_TRAP_FRAME_RECURSION","features":[164]},{"name":"DEBUG_FLR_TRIAGER_OS_BUILD_NAME","features":[164]},{"name":"DEBUG_FLR_TSS","features":[164]},{"name":"DEBUG_FLR_TWO_BIT_ERROR","features":[164]},{"name":"DEBUG_FLR_ULS_SCRIPT_EXCEPTION","features":[164]},{"name":"DEBUG_FLR_UNALIGNED_STACK_POINTER","features":[164]},{"name":"DEBUG_FLR_UNKNOWN","features":[164]},{"name":"DEBUG_FLR_UNKNOWN_MODULE","features":[164]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_FOLLOWUP_NAME","features":[164]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS","features":[164]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS_DATA","features":[164]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_STACK","features":[164]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_SYMBOL_NAME","features":[164]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_THREAD","features":[164]},{"name":"DEBUG_FLR_UNUSED001","features":[164]},{"name":"DEBUG_FLR_URLS","features":[164]},{"name":"DEBUG_FLR_URLS_DISCOVERED","features":[164]},{"name":"DEBUG_FLR_URL_ENTRY","features":[164]},{"name":"DEBUG_FLR_URL_LCIE_ENTRY","features":[164]},{"name":"DEBUG_FLR_URL_URLMON_ENTRY","features":[164]},{"name":"DEBUG_FLR_URL_XMLHTTPREQ_SYNC_ENTRY","features":[164]},{"name":"DEBUG_FLR_USBPORT_OCADATA","features":[164]},{"name":"DEBUG_FLR_USER","features":[164]},{"name":"DEBUG_FLR_USERBREAK_PEB_PAGEDOUT","features":[164]},{"name":"DEBUG_FLR_USERMODE_DATA","features":[164]},{"name":"DEBUG_FLR_USER_GLOBAL_ATTRIBUTES","features":[164]},{"name":"DEBUG_FLR_USER_LCID","features":[164]},{"name":"DEBUG_FLR_USER_LCID_STR","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_EVENTTYPE","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_INDEX","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P0","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P1","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P2","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P3","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P4","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P5","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P6","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P7","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTCREATIONTIME","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTGUID","features":[164]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_STRING","features":[164]},{"name":"DEBUG_FLR_USER_NAME","features":[164]},{"name":"DEBUG_FLR_USER_PROBLEM_CLASSES","features":[164]},{"name":"DEBUG_FLR_USER_THREAD_ATTRIBUTES","features":[164]},{"name":"DEBUG_FLR_USE_DEFAULT_CONTEXT","features":[164]},{"name":"DEBUG_FLR_VERIFIER_DRIVER_ENTRY","features":[164]},{"name":"DEBUG_FLR_VERIFIER_FOUND_DEADLOCK","features":[164]},{"name":"DEBUG_FLR_VERIFIER_STOP","features":[164]},{"name":"DEBUG_FLR_VIDEO_TDR_CONTEXT","features":[164]},{"name":"DEBUG_FLR_VIRTUAL_MACHINE","features":[164]},{"name":"DEBUG_FLR_WAIT_CHAIN_COMMAND","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_00","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_01","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_02","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_03","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_04","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_05","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_06","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_07","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_08","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_09","features":[164]},{"name":"DEBUG_FLR_WATSON_GENERIC_EVENT_NAME","features":[164]},{"name":"DEBUG_FLR_WATSON_IBUCKET","features":[164]},{"name":"DEBUG_FLR_WATSON_IBUCKETTABLE_S1_RESP","features":[164]},{"name":"DEBUG_FLR_WATSON_IBUCKET_S1_RESP","features":[164]},{"name":"DEBUG_FLR_WATSON_MODULE","features":[164]},{"name":"DEBUG_FLR_WATSON_MODULE_OFFSET","features":[164]},{"name":"DEBUG_FLR_WATSON_MODULE_TIMESTAMP","features":[164]},{"name":"DEBUG_FLR_WATSON_MODULE_VERSION","features":[164]},{"name":"DEBUG_FLR_WATSON_PROCESS_TIMESTAMP","features":[164]},{"name":"DEBUG_FLR_WATSON_PROCESS_VERSION","features":[164]},{"name":"DEBUG_FLR_WCT_XML_AVAILABLE","features":[164]},{"name":"DEBUG_FLR_WERCOLLECTION_DEFAULTCOLLECTION_FAILURE","features":[164]},{"name":"DEBUG_FLR_WERCOLLECTION_MINIDUMP_WRITE_FAILURE","features":[164]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSHEAPDUMP_REQUEST_FAILURE","features":[164]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSTERMINATED","features":[164]},{"name":"DEBUG_FLR_WER_DATA_COLLECTION_INFO","features":[164]},{"name":"DEBUG_FLR_WER_MACHINE_ID","features":[164]},{"name":"DEBUG_FLR_WHEA_ERROR_RECORD","features":[164]},{"name":"DEBUG_FLR_WINLOGON_BLACKBOX","features":[164]},{"name":"DEBUG_FLR_WMI_QUERY_DATA","features":[164]},{"name":"DEBUG_FLR_WORKER_ROUTINE","features":[164]},{"name":"DEBUG_FLR_WORK_ITEM","features":[164]},{"name":"DEBUG_FLR_WORK_QUEUE_ITEM","features":[164]},{"name":"DEBUG_FLR_WQL_EVENTLOG_INFO","features":[164]},{"name":"DEBUG_FLR_WQL_EVENT_COUNT","features":[164]},{"name":"DEBUG_FLR_WRITE_ADDRESS","features":[164]},{"name":"DEBUG_FLR_WRONG_SYMBOLS","features":[164]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_SIZE","features":[164]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_TIMESTAMP","features":[164]},{"name":"DEBUG_FLR_XBOX_LIVE_ENVIRONMENT","features":[164]},{"name":"DEBUG_FLR_XBOX_SYSTEM_CRASHTIME","features":[164]},{"name":"DEBUG_FLR_XBOX_SYSTEM_UPTIME","features":[164]},{"name":"DEBUG_FLR_XCS_PATH","features":[164]},{"name":"DEBUG_FLR_XDV_HELP_LINK","features":[164]},{"name":"DEBUG_FLR_XDV_RULE_INFO","features":[164]},{"name":"DEBUG_FLR_XDV_STATE_VARIABLE","features":[164]},{"name":"DEBUG_FLR_XDV_VIOLATED_CONDITION","features":[164]},{"name":"DEBUG_FLR_XHCI_FIRMWARE_VERSION","features":[164]},{"name":"DEBUG_FLR_XML_APPLICATION_NAME","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D1VALUE","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D2VALUE","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_DOVALUE","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_FRAME_NUMBER","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_LIST","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_NAME","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_THREAD_INDEX","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE","features":[164]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE_TYPE","features":[164]},{"name":"DEBUG_FLR_XML_ENCODED_OFFSETS","features":[164]},{"name":"DEBUG_FLR_XML_EVENTTYPE","features":[164]},{"name":"DEBUG_FLR_XML_GLOBALATTRIBUTE_LIST","features":[164]},{"name":"DEBUG_FLR_XML_MODERN_ASYNC_REQUEST_OUTSTANDING","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_BASE","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_CHECKSUM","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_COMPANY_NAME","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_DRIVER_GROUP","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_DESCRIPTION","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_FLAGS","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_FILE_VER","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_PROD_VER","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_NAME","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_PATH","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INDEX","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INTERNAL_NAME","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_NAME","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ON_STACK","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ORIG_FILE_NAME","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_PRODUCT_NAME","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SIZE","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_FILE_VER","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_PROD_VER","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMBOL_TYPE","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_DETAIL","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_ERROR","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_SEC","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_STATUS","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_DETAIL","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_ERROR","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_SEC","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_STATUS","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_TIMESTAMP","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_INFO_UNLOADED","features":[164]},{"name":"DEBUG_FLR_XML_MODULE_LIST","features":[164]},{"name":"DEBUG_FLR_XML_PACKAGE_MONIKER","features":[164]},{"name":"DEBUG_FLR_XML_PACKAGE_NAME","features":[164]},{"name":"DEBUG_FLR_XML_PACKAGE_RELATIVE_APPLICATION_ID","features":[164]},{"name":"DEBUG_FLR_XML_PACKAGE_VERSION","features":[164]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS","features":[164]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_FRAME_NUMBER","features":[164]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_LIST","features":[164]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_NAME","features":[164]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_THREAD_INDEX","features":[164]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE","features":[164]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE_TYPE","features":[164]},{"name":"DEBUG_FLR_XML_STACK_FRAME_TRIAGE_STATUS","features":[164]},{"name":"DEBUG_FLR_XML_SYSTEMINFO","features":[164]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMANUFACTURER","features":[164]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMARKER","features":[164]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMODEL","features":[164]},{"name":"DEBUG_FLR_XPROC_DUMP_AVAILABLE","features":[164]},{"name":"DEBUG_FLR_XPROC_HANG","features":[164]},{"name":"DEBUG_FLR_ZEROED_STACK","features":[164]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_ALL_IMAGES","features":[164]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_FILES","features":[164]},{"name":"DEBUG_FORMAT_DEFAULT","features":[164]},{"name":"DEBUG_FORMAT_NO_OVERWRITE","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_ADD_AVX_XSTATE_CONTEXT","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_CODE_SEGMENTS","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_DATA_SEGMENTS","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_MEMORY","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_PATHS","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_TRIAGE","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_AUXILIARY_STATE","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY_INFO","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_HANDLE_DATA","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_IGNORE_INACCESSIBLE_MEM","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_INDIRECT_MEMORY","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_IPT_TRACE","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_MODULE_HEADERS","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_AUXILIARY_STATE","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_OPTIONAL_DATA","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_PRIVATE_READ_WRITE_MEMORY","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_PROCESS_THREAD_DATA","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_SCAN_PARTIAL_PAGES","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_THREAD_INFO","features":[164]},{"name":"DEBUG_FORMAT_USER_SMALL_UNLOADED_MODULES","features":[164]},{"name":"DEBUG_FORMAT_WRITE_CAB","features":[164]},{"name":"DEBUG_FRAME_DEFAULT","features":[164]},{"name":"DEBUG_FRAME_IGNORE_INLINE","features":[164]},{"name":"DEBUG_GETFNENT_DEFAULT","features":[164]},{"name":"DEBUG_GETFNENT_RAW_ENTRY_ONLY","features":[164]},{"name":"DEBUG_GETMOD_DEFAULT","features":[164]},{"name":"DEBUG_GETMOD_NO_LOADED_MODULES","features":[164]},{"name":"DEBUG_GETMOD_NO_UNLOADED_MODULES","features":[164]},{"name":"DEBUG_GET_PROC_DEFAULT","features":[164]},{"name":"DEBUG_GET_PROC_FULL_MATCH","features":[164]},{"name":"DEBUG_GET_PROC_ONLY_MATCH","features":[164]},{"name":"DEBUG_GET_PROC_SERVICE_NAME","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IN","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_DOT_COMMAND","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_EXTENSION_COMMAND","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_SYMBOL","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_DOT_COMMANDS","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_EXTENSION_COMMANDS","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_SYMBOLS","features":[164]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_OUT","features":[164]},{"name":"DEBUG_GSEL_ALLOW_HIGHER","features":[164]},{"name":"DEBUG_GSEL_ALLOW_LOWER","features":[164]},{"name":"DEBUG_GSEL_DEFAULT","features":[164]},{"name":"DEBUG_GSEL_INLINE_CALLSITE","features":[164]},{"name":"DEBUG_GSEL_NEAREST_ONLY","features":[164]},{"name":"DEBUG_GSEL_NO_SYMBOL_LOADS","features":[164]},{"name":"DEBUG_HANDLE_DATA_BASIC","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_ALL_HANDLE_OPERATIONS","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_BASIC","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_HANDLE_COUNT","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_EVENT_1","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_1","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_2","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_1","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_2","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SECTION_1","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SEMAPHORE_1","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_THREAD_1","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME_WIDE","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_PER_HANDLE_OPERATIONS","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME","features":[164]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME_WIDE","features":[164]},{"name":"DEBUG_INTERRUPT_ACTIVE","features":[164]},{"name":"DEBUG_INTERRUPT_EXIT","features":[164]},{"name":"DEBUG_INTERRUPT_PASSIVE","features":[164]},{"name":"DEBUG_IOUTPUT_ADDR_TRANSLATE","features":[164]},{"name":"DEBUG_IOUTPUT_BREAKPOINT","features":[164]},{"name":"DEBUG_IOUTPUT_EVENT","features":[164]},{"name":"DEBUG_IOUTPUT_KD_PROTOCOL","features":[164]},{"name":"DEBUG_IOUTPUT_REMOTING","features":[164]},{"name":"DEBUG_IRP_INFO","features":[164]},{"name":"DEBUG_IRP_STACK_INFO","features":[164]},{"name":"DEBUG_KERNEL_ACTIVE_DUMP","features":[164]},{"name":"DEBUG_KERNEL_CONNECTION","features":[164]},{"name":"DEBUG_KERNEL_DUMP","features":[164]},{"name":"DEBUG_KERNEL_EXDI_DRIVER","features":[164]},{"name":"DEBUG_KERNEL_FULL_DUMP","features":[164]},{"name":"DEBUG_KERNEL_IDNA","features":[164]},{"name":"DEBUG_KERNEL_INSTALL_DRIVER","features":[164]},{"name":"DEBUG_KERNEL_LOCAL","features":[164]},{"name":"DEBUG_KERNEL_REPT","features":[164]},{"name":"DEBUG_KERNEL_SMALL_DUMP","features":[164]},{"name":"DEBUG_KERNEL_TRACE_LOG","features":[164]},{"name":"DEBUG_KNOWN_STRUCT_GET_NAMES","features":[164]},{"name":"DEBUG_KNOWN_STRUCT_GET_SINGLE_LINE_OUTPUT","features":[164]},{"name":"DEBUG_KNOWN_STRUCT_SUPPRESS_TYPE_NAME","features":[164]},{"name":"DEBUG_LAST_EVENT_INFO_BREAKPOINT","features":[164]},{"name":"DEBUG_LAST_EVENT_INFO_EXCEPTION","features":[1,164]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_PROCESS","features":[164]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_THREAD","features":[164]},{"name":"DEBUG_LAST_EVENT_INFO_LOAD_MODULE","features":[164]},{"name":"DEBUG_LAST_EVENT_INFO_SERVICE_EXCEPTION","features":[164]},{"name":"DEBUG_LAST_EVENT_INFO_SYSTEM_ERROR","features":[164]},{"name":"DEBUG_LAST_EVENT_INFO_UNLOAD_MODULE","features":[164]},{"name":"DEBUG_LEVEL_ASSEMBLY","features":[164]},{"name":"DEBUG_LEVEL_SOURCE","features":[164]},{"name":"DEBUG_LIVE_USER_NON_INVASIVE","features":[164]},{"name":"DEBUG_LOG_APPEND","features":[164]},{"name":"DEBUG_LOG_DEFAULT","features":[164]},{"name":"DEBUG_LOG_DML","features":[164]},{"name":"DEBUG_LOG_UNICODE","features":[164]},{"name":"DEBUG_MANAGED_ALLOWED","features":[164]},{"name":"DEBUG_MANAGED_DISABLED","features":[164]},{"name":"DEBUG_MANAGED_DLL_LOADED","features":[164]},{"name":"DEBUG_MANRESET_DEFAULT","features":[164]},{"name":"DEBUG_MANRESET_LOAD_DLL","features":[164]},{"name":"DEBUG_MANSTR_LOADED_SUPPORT_DLL","features":[164]},{"name":"DEBUG_MANSTR_LOAD_STATUS","features":[164]},{"name":"DEBUG_MANSTR_NONE","features":[164]},{"name":"DEBUG_MODNAME_IMAGE","features":[164]},{"name":"DEBUG_MODNAME_LOADED_IMAGE","features":[164]},{"name":"DEBUG_MODNAME_MAPPED_IMAGE","features":[164]},{"name":"DEBUG_MODNAME_MODULE","features":[164]},{"name":"DEBUG_MODNAME_SYMBOL_FILE","features":[164]},{"name":"DEBUG_MODULE_AND_ID","features":[164]},{"name":"DEBUG_MODULE_EXE_MODULE","features":[164]},{"name":"DEBUG_MODULE_EXPLICIT","features":[164]},{"name":"DEBUG_MODULE_LOADED","features":[164]},{"name":"DEBUG_MODULE_PARAMETERS","features":[164]},{"name":"DEBUG_MODULE_SECONDARY","features":[164]},{"name":"DEBUG_MODULE_SYM_BAD_CHECKSUM","features":[164]},{"name":"DEBUG_MODULE_SYNTHETIC","features":[164]},{"name":"DEBUG_MODULE_UNLOADED","features":[164]},{"name":"DEBUG_MODULE_USER_MODE","features":[164]},{"name":"DEBUG_NOTIFY_SESSION_ACCESSIBLE","features":[164]},{"name":"DEBUG_NOTIFY_SESSION_ACTIVE","features":[164]},{"name":"DEBUG_NOTIFY_SESSION_INACCESSIBLE","features":[164]},{"name":"DEBUG_NOTIFY_SESSION_INACTIVE","features":[164]},{"name":"DEBUG_OFFSET_REGION","features":[164]},{"name":"DEBUG_OFFSINFO_VIRTUAL_SOURCE","features":[164]},{"name":"DEBUG_OUTCBF_COMBINED_EXPLICIT_FLUSH","features":[164]},{"name":"DEBUG_OUTCBF_DML_HAS_SPECIAL_CHARACTERS","features":[164]},{"name":"DEBUG_OUTCBF_DML_HAS_TAGS","features":[164]},{"name":"DEBUG_OUTCBI_ANY_FORMAT","features":[164]},{"name":"DEBUG_OUTCBI_DML","features":[164]},{"name":"DEBUG_OUTCBI_EXPLICIT_FLUSH","features":[164]},{"name":"DEBUG_OUTCBI_TEXT","features":[164]},{"name":"DEBUG_OUTCB_DML","features":[164]},{"name":"DEBUG_OUTCB_EXPLICIT_FLUSH","features":[164]},{"name":"DEBUG_OUTCB_TEXT","features":[164]},{"name":"DEBUG_OUTCTL_ALL_CLIENTS","features":[164]},{"name":"DEBUG_OUTCTL_ALL_OTHER_CLIENTS","features":[164]},{"name":"DEBUG_OUTCTL_AMBIENT","features":[164]},{"name":"DEBUG_OUTCTL_AMBIENT_DML","features":[164]},{"name":"DEBUG_OUTCTL_AMBIENT_TEXT","features":[164]},{"name":"DEBUG_OUTCTL_DML","features":[164]},{"name":"DEBUG_OUTCTL_IGNORE","features":[164]},{"name":"DEBUG_OUTCTL_LOG_ONLY","features":[164]},{"name":"DEBUG_OUTCTL_NOT_LOGGED","features":[164]},{"name":"DEBUG_OUTCTL_OVERRIDE_MASK","features":[164]},{"name":"DEBUG_OUTCTL_SEND_MASK","features":[164]},{"name":"DEBUG_OUTCTL_THIS_CLIENT","features":[164]},{"name":"DEBUG_OUTPUT_DEBUGGEE","features":[164]},{"name":"DEBUG_OUTPUT_DEBUGGEE_PROMPT","features":[164]},{"name":"DEBUG_OUTPUT_ERROR","features":[164]},{"name":"DEBUG_OUTPUT_EXTENSION_WARNING","features":[164]},{"name":"DEBUG_OUTPUT_IDENTITY_DEFAULT","features":[164]},{"name":"DEBUG_OUTPUT_NAME_END","features":[164]},{"name":"DEBUG_OUTPUT_NAME_END_T","features":[164]},{"name":"DEBUG_OUTPUT_NAME_END_WIDE","features":[164]},{"name":"DEBUG_OUTPUT_NORMAL","features":[164]},{"name":"DEBUG_OUTPUT_OFFSET_END","features":[164]},{"name":"DEBUG_OUTPUT_OFFSET_END_T","features":[164]},{"name":"DEBUG_OUTPUT_OFFSET_END_WIDE","features":[164]},{"name":"DEBUG_OUTPUT_PROMPT","features":[164]},{"name":"DEBUG_OUTPUT_PROMPT_REGISTERS","features":[164]},{"name":"DEBUG_OUTPUT_STATUS","features":[164]},{"name":"DEBUG_OUTPUT_SYMBOLS","features":[164]},{"name":"DEBUG_OUTPUT_SYMBOLS_DEFAULT","features":[164]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_NAMES","features":[164]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_OFFSETS","features":[164]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_TYPES","features":[164]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_VALUES","features":[164]},{"name":"DEBUG_OUTPUT_TYPE_END","features":[164]},{"name":"DEBUG_OUTPUT_TYPE_END_T","features":[164]},{"name":"DEBUG_OUTPUT_TYPE_END_WIDE","features":[164]},{"name":"DEBUG_OUTPUT_VALUE_END","features":[164]},{"name":"DEBUG_OUTPUT_VALUE_END_T","features":[164]},{"name":"DEBUG_OUTPUT_VALUE_END_WIDE","features":[164]},{"name":"DEBUG_OUTPUT_VERBOSE","features":[164]},{"name":"DEBUG_OUTPUT_WARNING","features":[164]},{"name":"DEBUG_OUTPUT_XML","features":[164]},{"name":"DEBUG_OUTSYM_ALLOW_DISPLACEMENT","features":[164]},{"name":"DEBUG_OUTSYM_DEFAULT","features":[164]},{"name":"DEBUG_OUTSYM_FORCE_OFFSET","features":[164]},{"name":"DEBUG_OUTSYM_SOURCE_LINE","features":[164]},{"name":"DEBUG_OUTTYPE_ADDRESS_AT_END","features":[164]},{"name":"DEBUG_OUTTYPE_ADDRESS_OF_FIELD","features":[164]},{"name":"DEBUG_OUTTYPE_BLOCK_RECURSE","features":[164]},{"name":"DEBUG_OUTTYPE_COMPACT_OUTPUT","features":[164]},{"name":"DEBUG_OUTTYPE_DEFAULT","features":[164]},{"name":"DEBUG_OUTTYPE_NO_INDENT","features":[164]},{"name":"DEBUG_OUTTYPE_NO_OFFSET","features":[164]},{"name":"DEBUG_OUTTYPE_VERBOSE","features":[164]},{"name":"DEBUG_OUT_TEXT_REPL_DEFAULT","features":[164]},{"name":"DEBUG_PHYSICAL_CACHED","features":[164]},{"name":"DEBUG_PHYSICAL_DEFAULT","features":[164]},{"name":"DEBUG_PHYSICAL_UNCACHED","features":[164]},{"name":"DEBUG_PHYSICAL_WRITE_COMBINED","features":[164]},{"name":"DEBUG_PNP_TRIAGE_INFO","features":[164]},{"name":"DEBUG_POOLTAG_DESCRIPTION","features":[164]},{"name":"DEBUG_POOL_DATA","features":[164]},{"name":"DEBUG_POOL_REGION","features":[164]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALL","features":[164]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALPHA","features":[164]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_AMD64","features":[164]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM","features":[164]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM64","features":[164]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_IA64","features":[164]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_X86","features":[164]},{"name":"DEBUG_PROCESS_DETACH_ON_EXIT","features":[164]},{"name":"DEBUG_PROCESS_ONLY_THIS_PROCESS","features":[164]},{"name":"DEBUG_PROC_DESC_DEFAULT","features":[164]},{"name":"DEBUG_PROC_DESC_NO_COMMAND_LINE","features":[164]},{"name":"DEBUG_PROC_DESC_NO_MTS_PACKAGES","features":[164]},{"name":"DEBUG_PROC_DESC_NO_PATHS","features":[164]},{"name":"DEBUG_PROC_DESC_NO_SERVICES","features":[164]},{"name":"DEBUG_PROC_DESC_NO_SESSION_ID","features":[164]},{"name":"DEBUG_PROC_DESC_NO_USER_NAME","features":[164]},{"name":"DEBUG_PROC_DESC_WITH_ARCHITECTURE","features":[164]},{"name":"DEBUG_PROC_DESC_WITH_PACKAGEFAMILY","features":[164]},{"name":"DEBUG_READ_USER_MINIDUMP_STREAM","features":[164]},{"name":"DEBUG_REGISTERS_ALL","features":[164]},{"name":"DEBUG_REGISTERS_DEFAULT","features":[164]},{"name":"DEBUG_REGISTERS_FLOAT","features":[164]},{"name":"DEBUG_REGISTERS_INT32","features":[164]},{"name":"DEBUG_REGISTERS_INT64","features":[164]},{"name":"DEBUG_REGISTER_DESCRIPTION","features":[164]},{"name":"DEBUG_REGISTER_SUB_REGISTER","features":[164]},{"name":"DEBUG_REGSRC_DEBUGGEE","features":[164]},{"name":"DEBUG_REGSRC_EXPLICIT","features":[164]},{"name":"DEBUG_REGSRC_FRAME","features":[164]},{"name":"DEBUG_REQUEST_ADD_CACHED_SYMBOL_INFO","features":[164]},{"name":"DEBUG_REQUEST_CLOSE_TOKEN","features":[164]},{"name":"DEBUG_REQUEST_CURRENT_OUTPUT_CALLBACKS_ARE_DML_AWARE","features":[164]},{"name":"DEBUG_REQUEST_DUPLICATE_TOKEN","features":[164]},{"name":"DEBUG_REQUEST_EXT_TYPED_DATA_ANSI","features":[164]},{"name":"DEBUG_REQUEST_GET_ADDITIONAL_CREATE_OPTIONS","features":[164]},{"name":"DEBUG_REQUEST_GET_CACHED_SYMBOL_INFO","features":[164]},{"name":"DEBUG_REQUEST_GET_CAPTURED_EVENT_CODE_OFFSET","features":[164]},{"name":"DEBUG_REQUEST_GET_DUMP_HEADER","features":[164]},{"name":"DEBUG_REQUEST_GET_EXTENSION_SEARCH_PATH_WIDE","features":[164]},{"name":"DEBUG_REQUEST_GET_IMAGE_ARCHITECTURE","features":[164]},{"name":"DEBUG_REQUEST_GET_INSTRUMENTATION_VERSION","features":[164]},{"name":"DEBUG_REQUEST_GET_MODULE_ARCHITECTURE","features":[164]},{"name":"DEBUG_REQUEST_GET_OFFSET_UNWIND_INFORMATION","features":[164]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_ANSI","features":[164]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_WIDE","features":[164]},{"name":"DEBUG_REQUEST_GET_WIN32_MAJOR_MINOR_VERSIONS","features":[164]},{"name":"DEBUG_REQUEST_INLINE_QUERY","features":[164]},{"name":"DEBUG_REQUEST_MIDORI","features":[164]},{"name":"DEBUG_REQUEST_MISC_INFORMATION","features":[164]},{"name":"DEBUG_REQUEST_OPEN_PROCESS_TOKEN","features":[164]},{"name":"DEBUG_REQUEST_OPEN_THREAD_TOKEN","features":[164]},{"name":"DEBUG_REQUEST_PROCESS_DESCRIPTORS","features":[164]},{"name":"DEBUG_REQUEST_QUERY_INFO_TOKEN","features":[164]},{"name":"DEBUG_REQUEST_READ_CAPTURED_EVENT_CODE_STREAM","features":[164]},{"name":"DEBUG_REQUEST_READ_USER_MINIDUMP_STREAM","features":[164]},{"name":"DEBUG_REQUEST_REMOVE_CACHED_SYMBOL_INFO","features":[164]},{"name":"DEBUG_REQUEST_RESUME_THREAD","features":[164]},{"name":"DEBUG_REQUEST_SET_ADDITIONAL_CREATE_OPTIONS","features":[164]},{"name":"DEBUG_REQUEST_SET_DUMP_HEADER","features":[164]},{"name":"DEBUG_REQUEST_SET_LOCAL_IMPLICIT_COMMAND_LINE","features":[164]},{"name":"DEBUG_REQUEST_SOURCE_PATH_HAS_SOURCE_SERVER","features":[164]},{"name":"DEBUG_REQUEST_TARGET_CAN_DETACH","features":[164]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_CONTEXT","features":[164]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_RECORD","features":[164]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_THREAD","features":[164]},{"name":"DEBUG_REQUEST_TL_INSTRUMENTATION_AWARE","features":[164]},{"name":"DEBUG_REQUEST_WOW_MODULE","features":[164]},{"name":"DEBUG_REQUEST_WOW_PROCESS","features":[164]},{"name":"DEBUG_SCOPE_GROUP_ALL","features":[164]},{"name":"DEBUG_SCOPE_GROUP_ARGUMENTS","features":[164]},{"name":"DEBUG_SCOPE_GROUP_BY_DATAMODEL","features":[164]},{"name":"DEBUG_SCOPE_GROUP_LOCALS","features":[164]},{"name":"DEBUG_SERVERS_ALL","features":[164]},{"name":"DEBUG_SERVERS_DEBUGGER","features":[164]},{"name":"DEBUG_SERVERS_PROCESS","features":[164]},{"name":"DEBUG_SESSION_ACTIVE","features":[164]},{"name":"DEBUG_SESSION_END","features":[164]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_DETACH","features":[164]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_TERMINATE","features":[164]},{"name":"DEBUG_SESSION_END_SESSION_PASSIVE","features":[164]},{"name":"DEBUG_SESSION_FAILURE","features":[164]},{"name":"DEBUG_SESSION_HIBERNATE","features":[164]},{"name":"DEBUG_SESSION_REBOOT","features":[164]},{"name":"DEBUG_SMBIOS_INFO","features":[164]},{"name":"DEBUG_SOURCE_IS_STATEMENT","features":[164]},{"name":"DEBUG_SPECIFIC_FILTER_PARAMETERS","features":[164]},{"name":"DEBUG_SRCFILE_SYMBOL_CHECKSUMINFO","features":[164]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN","features":[164]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN_SOURCE_COMMAND_WIDE","features":[164]},{"name":"DEBUG_STACK_ARGUMENTS","features":[164]},{"name":"DEBUG_STACK_COLUMN_NAMES","features":[164]},{"name":"DEBUG_STACK_DML","features":[164]},{"name":"DEBUG_STACK_FRAME","features":[1,164]},{"name":"DEBUG_STACK_FRAME_ADDRESSES","features":[164]},{"name":"DEBUG_STACK_FRAME_ADDRESSES_RA_ONLY","features":[164]},{"name":"DEBUG_STACK_FRAME_ARCH","features":[164]},{"name":"DEBUG_STACK_FRAME_EX","features":[1,164]},{"name":"DEBUG_STACK_FRAME_MEMORY_USAGE","features":[164]},{"name":"DEBUG_STACK_FRAME_NUMBERS","features":[164]},{"name":"DEBUG_STACK_FRAME_OFFSETS","features":[164]},{"name":"DEBUG_STACK_FUNCTION_INFO","features":[164]},{"name":"DEBUG_STACK_NONVOLATILE_REGISTERS","features":[164]},{"name":"DEBUG_STACK_PARAMETERS","features":[164]},{"name":"DEBUG_STACK_PARAMETERS_NEWLINE","features":[164]},{"name":"DEBUG_STACK_PROVIDER","features":[164]},{"name":"DEBUG_STACK_SOURCE_LINE","features":[164]},{"name":"DEBUG_STATUS_BREAK","features":[164]},{"name":"DEBUG_STATUS_GO","features":[164]},{"name":"DEBUG_STATUS_GO_HANDLED","features":[164]},{"name":"DEBUG_STATUS_GO_NOT_HANDLED","features":[164]},{"name":"DEBUG_STATUS_IGNORE_EVENT","features":[164]},{"name":"DEBUG_STATUS_INSIDE_WAIT","features":[164]},{"name":"DEBUG_STATUS_MASK","features":[164]},{"name":"DEBUG_STATUS_NO_CHANGE","features":[164]},{"name":"DEBUG_STATUS_NO_DEBUGGEE","features":[164]},{"name":"DEBUG_STATUS_OUT_OF_SYNC","features":[164]},{"name":"DEBUG_STATUS_RESTART_REQUESTED","features":[164]},{"name":"DEBUG_STATUS_REVERSE_GO","features":[164]},{"name":"DEBUG_STATUS_REVERSE_STEP_BRANCH","features":[164]},{"name":"DEBUG_STATUS_REVERSE_STEP_INTO","features":[164]},{"name":"DEBUG_STATUS_REVERSE_STEP_OVER","features":[164]},{"name":"DEBUG_STATUS_STEP_BRANCH","features":[164]},{"name":"DEBUG_STATUS_STEP_INTO","features":[164]},{"name":"DEBUG_STATUS_STEP_OVER","features":[164]},{"name":"DEBUG_STATUS_TIMEOUT","features":[164]},{"name":"DEBUG_STATUS_WAIT_INPUT","features":[164]},{"name":"DEBUG_STATUS_WAIT_TIMEOUT","features":[164]},{"name":"DEBUG_SYMBOL_ENTRY","features":[164]},{"name":"DEBUG_SYMBOL_EXPANDED","features":[164]},{"name":"DEBUG_SYMBOL_EXPANSION_LEVEL_MASK","features":[164]},{"name":"DEBUG_SYMBOL_IS_ARGUMENT","features":[164]},{"name":"DEBUG_SYMBOL_IS_ARRAY","features":[164]},{"name":"DEBUG_SYMBOL_IS_FLOAT","features":[164]},{"name":"DEBUG_SYMBOL_IS_LOCAL","features":[164]},{"name":"DEBUG_SYMBOL_PARAMETERS","features":[164]},{"name":"DEBUG_SYMBOL_READ_ONLY","features":[164]},{"name":"DEBUG_SYMBOL_SOURCE_ENTRY","features":[164]},{"name":"DEBUG_SYMENT_IS_CODE","features":[164]},{"name":"DEBUG_SYMENT_IS_DATA","features":[164]},{"name":"DEBUG_SYMENT_IS_LOCAL","features":[164]},{"name":"DEBUG_SYMENT_IS_MANAGED","features":[164]},{"name":"DEBUG_SYMENT_IS_PARAMETER","features":[164]},{"name":"DEBUG_SYMENT_IS_SYNTHETIC","features":[164]},{"name":"DEBUG_SYMINFO_BREAKPOINT_SOURCE_LINE","features":[164]},{"name":"DEBUG_SYMINFO_GET_MODULE_SYMBOL_NAMES_AND_OFFSETS","features":[164]},{"name":"DEBUG_SYMINFO_GET_SYMBOL_NAME_BY_OFFSET_AND_TAG_WIDE","features":[164]},{"name":"DEBUG_SYMINFO_IMAGEHLP_MODULEW64","features":[164]},{"name":"DEBUG_SYMTYPE_CODEVIEW","features":[164]},{"name":"DEBUG_SYMTYPE_COFF","features":[164]},{"name":"DEBUG_SYMTYPE_DEFERRED","features":[164]},{"name":"DEBUG_SYMTYPE_DIA","features":[164]},{"name":"DEBUG_SYMTYPE_EXPORT","features":[164]},{"name":"DEBUG_SYMTYPE_NONE","features":[164]},{"name":"DEBUG_SYMTYPE_PDB","features":[164]},{"name":"DEBUG_SYMTYPE_SYM","features":[164]},{"name":"DEBUG_SYSOBJINFO_CURRENT_PROCESS_COOKIE","features":[164]},{"name":"DEBUG_SYSOBJINFO_THREAD_BASIC_INFORMATION","features":[164]},{"name":"DEBUG_SYSOBJINFO_THREAD_NAME_WIDE","features":[164]},{"name":"DEBUG_SYSVERSTR_BUILD","features":[164]},{"name":"DEBUG_SYSVERSTR_SERVICE_PACK","features":[164]},{"name":"DEBUG_TBINFO_AFFINITY","features":[164]},{"name":"DEBUG_TBINFO_ALL","features":[164]},{"name":"DEBUG_TBINFO_EXIT_STATUS","features":[164]},{"name":"DEBUG_TBINFO_PRIORITY","features":[164]},{"name":"DEBUG_TBINFO_PRIORITY_CLASS","features":[164]},{"name":"DEBUG_TBINFO_START_OFFSET","features":[164]},{"name":"DEBUG_TBINFO_TIMES","features":[164]},{"name":"DEBUG_THREAD_BASIC_INFORMATION","features":[164]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO","features":[164]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO_2","features":[164]},{"name":"DEBUG_TYPED_DATA","features":[164]},{"name":"DEBUG_TYPED_DATA_IS_IN_MEMORY","features":[164]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_CACHED","features":[164]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_DEFAULT","features":[164]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_MEMORY","features":[164]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_UNCACHED","features":[164]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_WRITE_COMBINED","features":[164]},{"name":"DEBUG_TYPEOPTS_FORCERADIX_OUTPUT","features":[164]},{"name":"DEBUG_TYPEOPTS_LONGSTATUS_DISPLAY","features":[164]},{"name":"DEBUG_TYPEOPTS_MATCH_MAXSIZE","features":[164]},{"name":"DEBUG_TYPEOPTS_UNICODE_DISPLAY","features":[164]},{"name":"DEBUG_USER_WINDOWS_DUMP","features":[164]},{"name":"DEBUG_USER_WINDOWS_DUMP_WINDOWS_CE","features":[164]},{"name":"DEBUG_USER_WINDOWS_IDNA","features":[164]},{"name":"DEBUG_USER_WINDOWS_PROCESS","features":[164]},{"name":"DEBUG_USER_WINDOWS_PROCESS_SERVER","features":[164]},{"name":"DEBUG_USER_WINDOWS_REPT","features":[164]},{"name":"DEBUG_USER_WINDOWS_SMALL_DUMP","features":[164]},{"name":"DEBUG_VALUE","features":[1,164]},{"name":"DEBUG_VALUE_FLOAT128","features":[164]},{"name":"DEBUG_VALUE_FLOAT32","features":[164]},{"name":"DEBUG_VALUE_FLOAT64","features":[164]},{"name":"DEBUG_VALUE_FLOAT80","features":[164]},{"name":"DEBUG_VALUE_FLOAT82","features":[164]},{"name":"DEBUG_VALUE_INT16","features":[164]},{"name":"DEBUG_VALUE_INT32","features":[164]},{"name":"DEBUG_VALUE_INT64","features":[164]},{"name":"DEBUG_VALUE_INT8","features":[164]},{"name":"DEBUG_VALUE_INVALID","features":[164]},{"name":"DEBUG_VALUE_TYPES","features":[164]},{"name":"DEBUG_VALUE_VECTOR128","features":[164]},{"name":"DEBUG_VALUE_VECTOR64","features":[164]},{"name":"DEBUG_VSEARCH_DEFAULT","features":[164]},{"name":"DEBUG_VSEARCH_WRITABLE_ONLY","features":[164]},{"name":"DEBUG_VSOURCE_DEBUGGEE","features":[164]},{"name":"DEBUG_VSOURCE_DUMP_WITHOUT_MEMINFO","features":[164]},{"name":"DEBUG_VSOURCE_INVALID","features":[164]},{"name":"DEBUG_VSOURCE_MAPPED_IMAGE","features":[164]},{"name":"DEBUG_WAIT_DEFAULT","features":[164]},{"name":"DISK_READ_0_BYTES","features":[164]},{"name":"DISK_WRITE","features":[164]},{"name":"DUMP_HANDLE_FLAG_CID_TABLE","features":[164]},{"name":"DUMP_HANDLE_FLAG_KERNEL_TABLE","features":[164]},{"name":"DUMP_HANDLE_FLAG_PRINT_FREE_ENTRY","features":[164]},{"name":"DUMP_HANDLE_FLAG_PRINT_OBJECT","features":[164]},{"name":"DbgPoolRegionMax","features":[164]},{"name":"DbgPoolRegionNonPaged","features":[164]},{"name":"DbgPoolRegionNonPagedExpansion","features":[164]},{"name":"DbgPoolRegionPaged","features":[164]},{"name":"DbgPoolRegionSessionPaged","features":[164]},{"name":"DbgPoolRegionSpecial","features":[164]},{"name":"DbgPoolRegionUnknown","features":[164]},{"name":"DebugBaseEventCallbacks","features":[164]},{"name":"DebugBaseEventCallbacksWide","features":[164]},{"name":"DebugConnect","features":[164]},{"name":"DebugConnectWide","features":[164]},{"name":"DebugCreate","features":[164]},{"name":"DebugCreateEx","features":[164]},{"name":"ENTRY_CALLBACK","features":[164]},{"name":"ERROR_DBG_CANCELLED","features":[164]},{"name":"ERROR_DBG_TIMEOUT","features":[164]},{"name":"EXIT_ON_CONTROLC","features":[164]},{"name":"EXIT_STATUS","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR_SYMSRV","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR_SYMSRV","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR_SYMSRV","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR","features":[164]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR_SYMSRV","features":[164]},{"name":"EXTDLL_ITERATERTLBALANCEDNODES","features":[164]},{"name":"EXTDLL_QUERYDATABYTAG","features":[164]},{"name":"EXTDLL_QUERYDATABYTAGEX","features":[164]},{"name":"EXTSTACKTRACE","features":[164]},{"name":"EXTSTACKTRACE32","features":[164]},{"name":"EXTSTACKTRACE64","features":[164]},{"name":"EXTS_JOB_PROCESS_CALLBACK","features":[1,164]},{"name":"EXTS_TABLE_ENTRY_CALLBACK","features":[1,164]},{"name":"EXT_ANALYSIS_PLUGIN","features":[164]},{"name":"EXT_ANALYZER","features":[164]},{"name":"EXT_ANALYZER_FLAG_ID","features":[164]},{"name":"EXT_ANALYZER_FLAG_MOD","features":[164]},{"name":"EXT_API_VERSION","features":[164]},{"name":"EXT_API_VERSION_NUMBER","features":[164]},{"name":"EXT_API_VERSION_NUMBER32","features":[164]},{"name":"EXT_API_VERSION_NUMBER64","features":[164]},{"name":"EXT_CAB_XML_DATA","features":[164]},{"name":"EXT_DECODE_ERROR","features":[1,164]},{"name":"EXT_FIND_FILE","features":[1,164]},{"name":"EXT_FIND_FILE_ALLOW_GIVEN_PATH","features":[164]},{"name":"EXT_GET_DEBUG_FAILURE_ANALYSIS","features":[164]},{"name":"EXT_GET_ENVIRONMENT_VARIABLE","features":[164]},{"name":"EXT_GET_FAILURE_ANALYSIS","features":[164]},{"name":"EXT_GET_FA_ENTRIES_DATA","features":[164]},{"name":"EXT_GET_HANDLE_TRACE","features":[164]},{"name":"EXT_MATCH_PATTERN_A","features":[164]},{"name":"EXT_RELOAD_TRIAGER","features":[164]},{"name":"EXT_TARGET_INFO","features":[164]},{"name":"EXT_TDF_PHYSICAL_CACHED","features":[164]},{"name":"EXT_TDF_PHYSICAL_DEFAULT","features":[164]},{"name":"EXT_TDF_PHYSICAL_MEMORY","features":[164]},{"name":"EXT_TDF_PHYSICAL_UNCACHED","features":[164]},{"name":"EXT_TDF_PHYSICAL_WRITE_COMBINED","features":[164]},{"name":"EXT_TDOP","features":[164]},{"name":"EXT_TDOP_COPY","features":[164]},{"name":"EXT_TDOP_COUNT","features":[164]},{"name":"EXT_TDOP_EVALUATE","features":[164]},{"name":"EXT_TDOP_GET_ARRAY_ELEMENT","features":[164]},{"name":"EXT_TDOP_GET_DEREFERENCE","features":[164]},{"name":"EXT_TDOP_GET_FIELD","features":[164]},{"name":"EXT_TDOP_GET_FIELD_OFFSET","features":[164]},{"name":"EXT_TDOP_GET_POINTER_TO","features":[164]},{"name":"EXT_TDOP_GET_TYPE_NAME","features":[164]},{"name":"EXT_TDOP_GET_TYPE_SIZE","features":[164]},{"name":"EXT_TDOP_HAS_FIELD","features":[164]},{"name":"EXT_TDOP_OUTPUT_FULL_VALUE","features":[164]},{"name":"EXT_TDOP_OUTPUT_SIMPLE_VALUE","features":[164]},{"name":"EXT_TDOP_OUTPUT_TYPE_DEFINITION","features":[164]},{"name":"EXT_TDOP_OUTPUT_TYPE_NAME","features":[164]},{"name":"EXT_TDOP_RELEASE","features":[164]},{"name":"EXT_TDOP_SET_FROM_EXPR","features":[164]},{"name":"EXT_TDOP_SET_FROM_TYPE_ID_AND_U64","features":[164]},{"name":"EXT_TDOP_SET_FROM_U64_EXPR","features":[164]},{"name":"EXT_TDOP_SET_PTR_FROM_TYPE_ID_AND_U64","features":[164]},{"name":"EXT_TRIAGE_FOLLOWUP","features":[164]},{"name":"EXT_TYPED_DATA","features":[164]},{"name":"EXT_XML_DATA","features":[164]},{"name":"ErrorClass","features":[164]},{"name":"ErrorClassError","features":[164]},{"name":"ErrorClassWarning","features":[164]},{"name":"FAILURE_ANALYSIS_ASSUME_HANG","features":[164]},{"name":"FAILURE_ANALYSIS_AUTOBUG_PROCESSING","features":[164]},{"name":"FAILURE_ANALYSIS_AUTOSET_SYMPATH","features":[164]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML","features":[164]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML_FULL_SOURCE_INFO","features":[164]},{"name":"FAILURE_ANALYSIS_CREATE_INSTANCE","features":[164]},{"name":"FAILURE_ANALYSIS_EXCEPTION_AS_HANG","features":[164]},{"name":"FAILURE_ANALYSIS_HEAP_CORRUPTION_BLAME_FUNCTION","features":[164]},{"name":"FAILURE_ANALYSIS_IGNORE_BREAKIN","features":[164]},{"name":"FAILURE_ANALYSIS_LIVE_DEBUG_HOLD_CHECK","features":[164]},{"name":"FAILURE_ANALYSIS_MODULE_INFO_XML","features":[164]},{"name":"FAILURE_ANALYSIS_MULTI_TARGET","features":[164]},{"name":"FAILURE_ANALYSIS_NO_DB_LOOKUP","features":[164]},{"name":"FAILURE_ANALYSIS_NO_IMAGE_CORRUPTION","features":[164]},{"name":"FAILURE_ANALYSIS_PERMIT_HEAP_ACCESS_VIOLATIONS","features":[164]},{"name":"FAILURE_ANALYSIS_REGISTRY_DATA","features":[164]},{"name":"FAILURE_ANALYSIS_SET_FAILURE_CONTEXT","features":[164]},{"name":"FAILURE_ANALYSIS_SHOW_SOURCE","features":[164]},{"name":"FAILURE_ANALYSIS_SHOW_WCT_STACKS","features":[164]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES","features":[164]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_ALL","features":[164]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_FRAMES","features":[164]},{"name":"FAILURE_ANALYSIS_VERBOSE","features":[164]},{"name":"FAILURE_ANALYSIS_WMI_QUERY_DATA","features":[164]},{"name":"FAILURE_ANALYSIS_XML_FILE_OUTPUT","features":[164]},{"name":"FAILURE_ANALYSIS_XML_OUTPUT","features":[164]},{"name":"FAILURE_ANALYSIS_XSD_VERIFY","features":[164]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_INPUT","features":[164]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_OUTPUT","features":[164]},{"name":"FA_ENTRY","features":[164]},{"name":"FA_ENTRY_TYPE","features":[164]},{"name":"FA_EXTENSION_PLUGIN_PHASE","features":[164]},{"name":"FA_PLUGIN_INITIALIZATION","features":[164]},{"name":"FA_PLUGIN_POST_BUCKETING","features":[164]},{"name":"FA_PLUGIN_PRE_BUCKETING","features":[164]},{"name":"FA_PLUGIN_STACK_ANALYSIS","features":[164]},{"name":"FIELDS_DID_NOT_MATCH","features":[164]},{"name":"FIELD_INFO","features":[164]},{"name":"FormatBSTRString","features":[164]},{"name":"FormatEnumNameOnly","features":[164]},{"name":"FormatEscapedStringWithQuote","features":[164]},{"name":"FormatHString","features":[164]},{"name":"FormatNone","features":[164]},{"name":"FormatQuotedHString","features":[164]},{"name":"FormatQuotedString","features":[164]},{"name":"FormatQuotedUTF32String","features":[164]},{"name":"FormatQuotedUTF8String","features":[164]},{"name":"FormatQuotedUnicodeString","features":[164]},{"name":"FormatRaw","features":[164]},{"name":"FormatSingleCharacter","features":[164]},{"name":"FormatString","features":[164]},{"name":"FormatUTF32String","features":[164]},{"name":"FormatUTF8String","features":[164]},{"name":"FormatUnicodeString","features":[164]},{"name":"GET_CONTEXT_EX","features":[164]},{"name":"GET_CURRENT_PROCESS_ADDRESS","features":[164]},{"name":"GET_CURRENT_THREAD_ADDRESS","features":[164]},{"name":"GET_EXPRESSION_EX","features":[164]},{"name":"GET_INPUT_LINE","features":[164]},{"name":"GET_PEB_ADDRESS","features":[164]},{"name":"GET_SET_SYMPATH","features":[164]},{"name":"GET_TEB_ADDRESS","features":[164]},{"name":"ICodeAddressConcept","features":[164]},{"name":"IComparableConcept","features":[164]},{"name":"IDataModelConcept","features":[164]},{"name":"IDataModelManager","features":[164]},{"name":"IDataModelManager2","features":[164]},{"name":"IDataModelNameBinder","features":[164]},{"name":"IDataModelScript","features":[164]},{"name":"IDataModelScriptClient","features":[164]},{"name":"IDataModelScriptDebug","features":[164]},{"name":"IDataModelScriptDebug2","features":[164]},{"name":"IDataModelScriptDebugBreakpoint","features":[164]},{"name":"IDataModelScriptDebugBreakpointEnumerator","features":[164]},{"name":"IDataModelScriptDebugClient","features":[164]},{"name":"IDataModelScriptDebugStack","features":[164]},{"name":"IDataModelScriptDebugStackFrame","features":[164]},{"name":"IDataModelScriptDebugVariableSetEnumerator","features":[164]},{"name":"IDataModelScriptHostContext","features":[164]},{"name":"IDataModelScriptManager","features":[164]},{"name":"IDataModelScriptProvider","features":[164]},{"name":"IDataModelScriptProviderEnumerator","features":[164]},{"name":"IDataModelScriptTemplate","features":[164]},{"name":"IDataModelScriptTemplateEnumerator","features":[164]},{"name":"IDebugAdvanced","features":[164]},{"name":"IDebugAdvanced2","features":[164]},{"name":"IDebugAdvanced3","features":[164]},{"name":"IDebugAdvanced4","features":[164]},{"name":"IDebugBreakpoint","features":[164]},{"name":"IDebugBreakpoint2","features":[164]},{"name":"IDebugBreakpoint3","features":[164]},{"name":"IDebugClient","features":[164]},{"name":"IDebugClient2","features":[164]},{"name":"IDebugClient3","features":[164]},{"name":"IDebugClient4","features":[164]},{"name":"IDebugClient5","features":[164]},{"name":"IDebugClient6","features":[164]},{"name":"IDebugClient7","features":[164]},{"name":"IDebugClient8","features":[164]},{"name":"IDebugControl","features":[164]},{"name":"IDebugControl2","features":[164]},{"name":"IDebugControl3","features":[164]},{"name":"IDebugControl4","features":[164]},{"name":"IDebugControl5","features":[164]},{"name":"IDebugControl6","features":[164]},{"name":"IDebugControl7","features":[164]},{"name":"IDebugDataSpaces","features":[164]},{"name":"IDebugDataSpaces2","features":[164]},{"name":"IDebugDataSpaces3","features":[164]},{"name":"IDebugDataSpaces4","features":[164]},{"name":"IDebugEventCallbacks","features":[164]},{"name":"IDebugEventCallbacksWide","features":[164]},{"name":"IDebugEventContextCallbacks","features":[164]},{"name":"IDebugFAEntryTags","features":[164]},{"name":"IDebugFailureAnalysis","features":[164]},{"name":"IDebugFailureAnalysis2","features":[164]},{"name":"IDebugFailureAnalysis3","features":[164]},{"name":"IDebugHost","features":[164]},{"name":"IDebugHostBaseClass","features":[164]},{"name":"IDebugHostConstant","features":[164]},{"name":"IDebugHostContext","features":[164]},{"name":"IDebugHostData","features":[164]},{"name":"IDebugHostErrorSink","features":[164]},{"name":"IDebugHostEvaluator","features":[164]},{"name":"IDebugHostEvaluator2","features":[164]},{"name":"IDebugHostExtensibility","features":[164]},{"name":"IDebugHostField","features":[164]},{"name":"IDebugHostMemory","features":[164]},{"name":"IDebugHostMemory2","features":[164]},{"name":"IDebugHostModule","features":[164]},{"name":"IDebugHostModule2","features":[164]},{"name":"IDebugHostModuleSignature","features":[164]},{"name":"IDebugHostPublic","features":[164]},{"name":"IDebugHostScriptHost","features":[164]},{"name":"IDebugHostStatus","features":[164]},{"name":"IDebugHostSymbol","features":[164]},{"name":"IDebugHostSymbol2","features":[164]},{"name":"IDebugHostSymbolEnumerator","features":[164]},{"name":"IDebugHostSymbols","features":[164]},{"name":"IDebugHostType","features":[164]},{"name":"IDebugHostType2","features":[164]},{"name":"IDebugHostTypeSignature","features":[164]},{"name":"IDebugInputCallbacks","features":[164]},{"name":"IDebugOutputCallbacks","features":[164]},{"name":"IDebugOutputCallbacks2","features":[164]},{"name":"IDebugOutputCallbacksWide","features":[164]},{"name":"IDebugOutputStream","features":[164]},{"name":"IDebugPlmClient","features":[164]},{"name":"IDebugPlmClient2","features":[164]},{"name":"IDebugPlmClient3","features":[164]},{"name":"IDebugRegisters","features":[164]},{"name":"IDebugRegisters2","features":[164]},{"name":"IDebugSymbolGroup","features":[164]},{"name":"IDebugSymbolGroup2","features":[164]},{"name":"IDebugSymbols","features":[164]},{"name":"IDebugSymbols2","features":[164]},{"name":"IDebugSymbols3","features":[164]},{"name":"IDebugSymbols4","features":[164]},{"name":"IDebugSymbols5","features":[164]},{"name":"IDebugSystemObjects","features":[164]},{"name":"IDebugSystemObjects2","features":[164]},{"name":"IDebugSystemObjects3","features":[164]},{"name":"IDebugSystemObjects4","features":[164]},{"name":"IDynamicConceptProviderConcept","features":[164]},{"name":"IDynamicKeyProviderConcept","features":[164]},{"name":"IEquatableConcept","features":[164]},{"name":"IG_DISASSEMBLE_BUFFER","features":[164]},{"name":"IG_DUMP_SYMBOL_INFO","features":[164]},{"name":"IG_FIND_FILE","features":[164]},{"name":"IG_GET_ANY_MODULE_IN_RANGE","features":[164]},{"name":"IG_GET_BUS_DATA","features":[164]},{"name":"IG_GET_CACHE_SIZE","features":[164]},{"name":"IG_GET_CLR_DATA_INTERFACE","features":[164]},{"name":"IG_GET_CONTEXT_EX","features":[164]},{"name":"IG_GET_CURRENT_PROCESS","features":[164]},{"name":"IG_GET_CURRENT_PROCESS_HANDLE","features":[164]},{"name":"IG_GET_CURRENT_THREAD","features":[164]},{"name":"IG_GET_DEBUGGER_DATA","features":[164]},{"name":"IG_GET_EXCEPTION_RECORD","features":[164]},{"name":"IG_GET_EXPRESSION_EX","features":[164]},{"name":"IG_GET_INPUT_LINE","features":[164]},{"name":"IG_GET_KERNEL_VERSION","features":[164]},{"name":"IG_GET_PEB_ADDRESS","features":[164]},{"name":"IG_GET_SET_SYMPATH","features":[164]},{"name":"IG_GET_TEB_ADDRESS","features":[164]},{"name":"IG_GET_THREAD_OS_INFO","features":[164]},{"name":"IG_GET_TYPE_SIZE","features":[164]},{"name":"IG_IS_PTR64","features":[164]},{"name":"IG_KD_CONTEXT","features":[164]},{"name":"IG_KSTACK_HELP","features":[164]},{"name":"IG_LOWMEM_CHECK","features":[164]},{"name":"IG_MATCH_PATTERN_A","features":[164]},{"name":"IG_OBSOLETE_PLACEHOLDER_36","features":[164]},{"name":"IG_PHYSICAL_TO_VIRTUAL","features":[164]},{"name":"IG_POINTER_SEARCH_PHYSICAL","features":[164]},{"name":"IG_QUERY_TARGET_INTERFACE","features":[164]},{"name":"IG_READ_CONTROL_SPACE","features":[164]},{"name":"IG_READ_IO_SPACE","features":[164]},{"name":"IG_READ_IO_SPACE_EX","features":[164]},{"name":"IG_READ_MSR","features":[164]},{"name":"IG_READ_PHYSICAL","features":[164]},{"name":"IG_READ_PHYSICAL_WITH_FLAGS","features":[164]},{"name":"IG_RELOAD_SYMBOLS","features":[164]},{"name":"IG_SEARCH_MEMORY","features":[164]},{"name":"IG_SET_BUS_DATA","features":[164]},{"name":"IG_SET_THREAD","features":[164]},{"name":"IG_TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[164]},{"name":"IG_TYPED_DATA","features":[164]},{"name":"IG_TYPED_DATA_OBSOLETE","features":[164]},{"name":"IG_VIRTUAL_TO_PHYSICAL","features":[164]},{"name":"IG_WRITE_CONTROL_SPACE","features":[164]},{"name":"IG_WRITE_IO_SPACE","features":[164]},{"name":"IG_WRITE_IO_SPACE_EX","features":[164]},{"name":"IG_WRITE_MSR","features":[164]},{"name":"IG_WRITE_PHYSICAL","features":[164]},{"name":"IG_WRITE_PHYSICAL_WITH_FLAGS","features":[164]},{"name":"IHostDataModelAccess","features":[164]},{"name":"IIndexableConcept","features":[164]},{"name":"IIterableConcept","features":[164]},{"name":"IKeyEnumerator","features":[164]},{"name":"IKeyStore","features":[164]},{"name":"IModelIterator","features":[164]},{"name":"IModelKeyReference","features":[164]},{"name":"IModelKeyReference2","features":[164]},{"name":"IModelMethod","features":[164]},{"name":"IModelObject","features":[164]},{"name":"IModelPropertyAccessor","features":[164]},{"name":"INCORRECT_VERSION_INFO","features":[164]},{"name":"INLINE_FRAME_CONTEXT","features":[164]},{"name":"INSUFFICIENT_SPACE_TO_COPY","features":[164]},{"name":"IOSPACE","features":[164]},{"name":"IOSPACE32","features":[164]},{"name":"IOSPACE64","features":[164]},{"name":"IOSPACE_EX","features":[164]},{"name":"IOSPACE_EX32","features":[164]},{"name":"IOSPACE_EX64","features":[164]},{"name":"IPreferredRuntimeTypeConcept","features":[164]},{"name":"IRawEnumerator","features":[164]},{"name":"IStringDisplayableConcept","features":[164]},{"name":"Identical","features":[164]},{"name":"IntrinsicBool","features":[164]},{"name":"IntrinsicChar","features":[164]},{"name":"IntrinsicChar16","features":[164]},{"name":"IntrinsicChar32","features":[164]},{"name":"IntrinsicFloat","features":[164]},{"name":"IntrinsicHRESULT","features":[164]},{"name":"IntrinsicInt","features":[164]},{"name":"IntrinsicKind","features":[164]},{"name":"IntrinsicLong","features":[164]},{"name":"IntrinsicUInt","features":[164]},{"name":"IntrinsicULong","features":[164]},{"name":"IntrinsicVoid","features":[164]},{"name":"IntrinsicWChar","features":[164]},{"name":"KDDEBUGGER_DATA32","features":[164,7]},{"name":"KDDEBUGGER_DATA64","features":[164,7]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE","features":[1,164]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE_DEFINED","features":[164]},{"name":"KDEXTS_LOCK_INFO","features":[1,164]},{"name":"KDEXTS_PTE_INFO","features":[164]},{"name":"KDEXT_DUMP_HANDLE_CALLBACK","features":[1,164]},{"name":"KDEXT_FILELOCK_OWNER","features":[164]},{"name":"KDEXT_HANDLE_INFORMATION","features":[1,164]},{"name":"KDEXT_PROCESS_FIND_PARAMS","features":[164]},{"name":"KDEXT_THREAD_FIND_PARAMS","features":[164]},{"name":"KD_SECONDARY_VERSION_AMD64_CONTEXT","features":[164]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_1","features":[164]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_2","features":[164]},{"name":"KD_SECONDARY_VERSION_DEFAULT","features":[164]},{"name":"LanguageAssembly","features":[164]},{"name":"LanguageC","features":[164]},{"name":"LanguageCPP","features":[164]},{"name":"LanguageKind","features":[164]},{"name":"LanguageUnknown","features":[164]},{"name":"LessSpecific","features":[164]},{"name":"Location","features":[164]},{"name":"LocationConstant","features":[164]},{"name":"LocationKind","features":[164]},{"name":"LocationMember","features":[164]},{"name":"LocationNone","features":[164]},{"name":"LocationStatic","features":[164]},{"name":"MAX_STACK_IN_BYTES","features":[164]},{"name":"MEMORY_READ_ERROR","features":[164]},{"name":"MODULE_ORDERS_LOADTIME","features":[164]},{"name":"MODULE_ORDERS_MASK","features":[164]},{"name":"MODULE_ORDERS_MODULENAME","features":[164]},{"name":"ModelObjectKind","features":[164]},{"name":"MoreSpecific","features":[164]},{"name":"NO_TYPE","features":[164]},{"name":"NT_STATUS_CODE","features":[164]},{"name":"NULL_FIELD_NAME","features":[164]},{"name":"NULL_SYM_DUMP_PARAM","features":[164]},{"name":"OS_INFO","features":[164]},{"name":"OS_INFO_v1","features":[164]},{"name":"OS_TYPE","features":[164]},{"name":"ObjectContext","features":[164]},{"name":"ObjectError","features":[164]},{"name":"ObjectIntrinsic","features":[164]},{"name":"ObjectKeyReference","features":[164]},{"name":"ObjectMethod","features":[164]},{"name":"ObjectNoValue","features":[164]},{"name":"ObjectPropertyAccessor","features":[164]},{"name":"ObjectSynthetic","features":[164]},{"name":"ObjectTargetObject","features":[164]},{"name":"ObjectTargetObjectReference","features":[164]},{"name":"PDEBUG_EXTENSION_CALL","features":[164]},{"name":"PDEBUG_EXTENSION_CANUNLOAD","features":[164]},{"name":"PDEBUG_EXTENSION_INITIALIZE","features":[164]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT","features":[164]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT_EX","features":[164]},{"name":"PDEBUG_EXTENSION_NOTIFY","features":[164]},{"name":"PDEBUG_EXTENSION_PROVIDE_VALUE","features":[164]},{"name":"PDEBUG_EXTENSION_QUERY_VALUE_NAMES","features":[164]},{"name":"PDEBUG_EXTENSION_UNINITIALIZE","features":[164]},{"name":"PDEBUG_EXTENSION_UNLOAD","features":[164]},{"name":"PDEBUG_STACK_PROVIDER_BEGINTHREADSTACKRECONSTRUCTION","features":[164]},{"name":"PDEBUG_STACK_PROVIDER_ENDTHREADSTACKRECONSTRUCTION","features":[164]},{"name":"PDEBUG_STACK_PROVIDER_FREESTACKSYMFRAMES","features":[1,164]},{"name":"PDEBUG_STACK_PROVIDER_RECONSTRUCTSTACK","features":[1,164]},{"name":"PENUMERATE_HANDLES","features":[1,164]},{"name":"PENUMERATE_HASH_TABLE","features":[1,164]},{"name":"PENUMERATE_JOB_PROCESSES","features":[1,164]},{"name":"PENUMERATE_SYSTEM_LOCKS","features":[1,164]},{"name":"PFIND_FILELOCK_OWNERINFO","features":[164]},{"name":"PFIND_MATCHING_PROCESS","features":[164]},{"name":"PFIND_MATCHING_THREAD","features":[164]},{"name":"PGET_CPU_MICROCODE_VERSION","features":[164]},{"name":"PGET_CPU_PSPEED_INFO","features":[164]},{"name":"PGET_DEVICE_OBJECT_INFO","features":[1,164]},{"name":"PGET_DRIVER_OBJECT_INFO","features":[164]},{"name":"PGET_FULL_IMAGE_NAME","features":[164]},{"name":"PGET_IRP_INFO","features":[164]},{"name":"PGET_PNP_TRIAGE_INFO","features":[164]},{"name":"PGET_POOL_DATA","features":[164]},{"name":"PGET_POOL_REGION","features":[164]},{"name":"PGET_POOL_TAG_DESCRIPTION","features":[164]},{"name":"PGET_PROCESS_COMMIT","features":[164]},{"name":"PGET_SMBIOS_INFO","features":[164]},{"name":"PHYSICAL","features":[164]},{"name":"PHYSICAL_TO_VIRTUAL","features":[164]},{"name":"PHYSICAL_WITH_FLAGS","features":[164]},{"name":"PHYS_FLAG_CACHED","features":[164]},{"name":"PHYS_FLAG_DEFAULT","features":[164]},{"name":"PHYS_FLAG_UNCACHED","features":[164]},{"name":"PHYS_FLAG_WRITE_COMBINED","features":[164]},{"name":"PKDEXTS_GET_PTE_INFO","features":[164]},{"name":"POINTER_SEARCH_PHYSICAL","features":[164]},{"name":"PROCESSORINFO","features":[164]},{"name":"PROCESS_COMMIT_USAGE","features":[164]},{"name":"PROCESS_END","features":[164]},{"name":"PROCESS_NAME_ENTRY","features":[164]},{"name":"PSYM_DUMP_FIELD_CALLBACK","features":[164]},{"name":"PTR_SEARCH_NO_SYMBOL_CHECK","features":[164]},{"name":"PTR_SEARCH_PHYS_ALL_HITS","features":[164]},{"name":"PTR_SEARCH_PHYS_PTE","features":[164]},{"name":"PTR_SEARCH_PHYS_RANGE_CHECK_ONLY","features":[164]},{"name":"PTR_SEARCH_PHYS_SIZE_SHIFT","features":[164]},{"name":"PWINDBG_CHECK_CONTROL_C","features":[164]},{"name":"PWINDBG_CHECK_VERSION","features":[164]},{"name":"PWINDBG_DISASM","features":[164]},{"name":"PWINDBG_DISASM32","features":[164]},{"name":"PWINDBG_DISASM64","features":[164]},{"name":"PWINDBG_EXTENSION_API_VERSION","features":[164]},{"name":"PWINDBG_EXTENSION_DLL_INIT","features":[164,7]},{"name":"PWINDBG_EXTENSION_DLL_INIT32","features":[164,7]},{"name":"PWINDBG_EXTENSION_DLL_INIT64","features":[164,7]},{"name":"PWINDBG_EXTENSION_ROUTINE","features":[1,164]},{"name":"PWINDBG_EXTENSION_ROUTINE32","features":[1,164]},{"name":"PWINDBG_EXTENSION_ROUTINE64","features":[1,164]},{"name":"PWINDBG_GET_EXPRESSION","features":[164]},{"name":"PWINDBG_GET_EXPRESSION32","features":[164]},{"name":"PWINDBG_GET_EXPRESSION64","features":[164]},{"name":"PWINDBG_GET_SYMBOL","features":[164]},{"name":"PWINDBG_GET_SYMBOL32","features":[164]},{"name":"PWINDBG_GET_SYMBOL64","features":[164]},{"name":"PWINDBG_GET_THREAD_CONTEXT_ROUTINE","features":[164,7]},{"name":"PWINDBG_IOCTL_ROUTINE","features":[164]},{"name":"PWINDBG_OLDKD_EXTENSION_ROUTINE","features":[164]},{"name":"PWINDBG_OLDKD_READ_PHYSICAL_MEMORY","features":[164]},{"name":"PWINDBG_OLDKD_WRITE_PHYSICAL_MEMORY","features":[164]},{"name":"PWINDBG_OLD_EXTENSION_ROUTINE","features":[164,7]},{"name":"PWINDBG_OUTPUT_ROUTINE","features":[164]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE","features":[164]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE32","features":[164]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE64","features":[164]},{"name":"PWINDBG_SET_THREAD_CONTEXT_ROUTINE","features":[164,7]},{"name":"PWINDBG_STACKTRACE_ROUTINE","features":[164]},{"name":"PWINDBG_STACKTRACE_ROUTINE32","features":[164]},{"name":"PWINDBG_STACKTRACE_ROUTINE64","features":[164]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE","features":[164]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE32","features":[164]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE64","features":[164]},{"name":"PointerCXHat","features":[164]},{"name":"PointerKind","features":[164]},{"name":"PointerManagedReference","features":[164]},{"name":"PointerRValueReference","features":[164]},{"name":"PointerReference","features":[164]},{"name":"PointerStandard","features":[164]},{"name":"PreferredFormat","features":[164]},{"name":"READCONTROLSPACE","features":[164]},{"name":"READCONTROLSPACE32","features":[164]},{"name":"READCONTROLSPACE64","features":[164]},{"name":"READ_WRITE_MSR","features":[164]},{"name":"RawSearchFlags","features":[164]},{"name":"RawSearchNoBases","features":[164]},{"name":"RawSearchNone","features":[164]},{"name":"SEARCHMEMORY","features":[164]},{"name":"STACK_FRAME_TYPE_IGNORE","features":[164]},{"name":"STACK_FRAME_TYPE_INIT","features":[164]},{"name":"STACK_FRAME_TYPE_INLINE","features":[164]},{"name":"STACK_FRAME_TYPE_RA","features":[164]},{"name":"STACK_FRAME_TYPE_STACK","features":[164]},{"name":"STACK_SRC_INFO","features":[164]},{"name":"STACK_SYM_FRAME_INFO","features":[1,164]},{"name":"SYMBOL_INFO_EX","features":[164]},{"name":"SYMBOL_TYPE_INDEX_NOT_FOUND","features":[164]},{"name":"SYMBOL_TYPE_INFO_NOT_FOUND","features":[164]},{"name":"SYM_DUMP_PARAM","features":[164]},{"name":"ScriptChangeKind","features":[164]},{"name":"ScriptDebugAsyncBreak","features":[164]},{"name":"ScriptDebugBreak","features":[164]},{"name":"ScriptDebugBreakpoint","features":[164]},{"name":"ScriptDebugEvent","features":[164]},{"name":"ScriptDebugEventFilter","features":[164]},{"name":"ScriptDebugEventFilterAbort","features":[164]},{"name":"ScriptDebugEventFilterEntry","features":[164]},{"name":"ScriptDebugEventFilterException","features":[164]},{"name":"ScriptDebugEventFilterUnhandledException","features":[164]},{"name":"ScriptDebugEventInformation","features":[164]},{"name":"ScriptDebugException","features":[164]},{"name":"ScriptDebugExecuting","features":[164]},{"name":"ScriptDebugNoDebugger","features":[164]},{"name":"ScriptDebugNotExecuting","features":[164]},{"name":"ScriptDebugPosition","features":[164]},{"name":"ScriptDebugState","features":[164]},{"name":"ScriptDebugStep","features":[164]},{"name":"ScriptExecutionKind","features":[164]},{"name":"ScriptExecutionNormal","features":[164]},{"name":"ScriptExecutionStepIn","features":[164]},{"name":"ScriptExecutionStepOut","features":[164]},{"name":"ScriptExecutionStepOver","features":[164]},{"name":"ScriptRename","features":[164]},{"name":"SignatureComparison","features":[164]},{"name":"Symbol","features":[164]},{"name":"SymbolBaseClass","features":[164]},{"name":"SymbolConstant","features":[164]},{"name":"SymbolData","features":[164]},{"name":"SymbolField","features":[164]},{"name":"SymbolFunction","features":[164]},{"name":"SymbolKind","features":[164]},{"name":"SymbolModule","features":[164]},{"name":"SymbolPublic","features":[164]},{"name":"SymbolSearchCaseInsensitive","features":[164]},{"name":"SymbolSearchCompletion","features":[164]},{"name":"SymbolSearchNone","features":[164]},{"name":"SymbolSearchOptions","features":[164]},{"name":"SymbolType","features":[164]},{"name":"TANALYZE_RETURN","features":[164]},{"name":"TARGET_DEBUG_INFO","features":[164]},{"name":"TARGET_DEBUG_INFO_v1","features":[164]},{"name":"TARGET_DEBUG_INFO_v2","features":[164]},{"name":"TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[164]},{"name":"TRIAGE_FOLLOWUP_DEFAULT","features":[164]},{"name":"TRIAGE_FOLLOWUP_FAIL","features":[164]},{"name":"TRIAGE_FOLLOWUP_IGNORE","features":[164]},{"name":"TRIAGE_FOLLOWUP_SUCCESS","features":[164]},{"name":"TypeArray","features":[164]},{"name":"TypeEnum","features":[164]},{"name":"TypeExtendedArray","features":[164]},{"name":"TypeFunction","features":[164]},{"name":"TypeIntrinsic","features":[164]},{"name":"TypeKind","features":[164]},{"name":"TypeMemberPointer","features":[164]},{"name":"TypePointer","features":[164]},{"name":"TypeTypedef","features":[164]},{"name":"TypeUDT","features":[164]},{"name":"UNAVAILABLE_ERROR","features":[164]},{"name":"Unrelated","features":[164]},{"name":"VIRTUAL_TO_PHYSICAL","features":[164]},{"name":"VarArgsCStyle","features":[164]},{"name":"VarArgsKind","features":[164]},{"name":"VarArgsNone","features":[164]},{"name":"WDBGEXTS_ADDRESS_DEFAULT","features":[164]},{"name":"WDBGEXTS_ADDRESS_RESERVED0","features":[164]},{"name":"WDBGEXTS_ADDRESS_SEG16","features":[164]},{"name":"WDBGEXTS_ADDRESS_SEG32","features":[164]},{"name":"WDBGEXTS_CLR_DATA_INTERFACE","features":[164]},{"name":"WDBGEXTS_DISASSEMBLE_BUFFER","features":[164]},{"name":"WDBGEXTS_MODULE_IN_RANGE","features":[164]},{"name":"WDBGEXTS_QUERY_INTERFACE","features":[164]},{"name":"WDBGEXTS_THREAD_OS_INFO","features":[164]},{"name":"WINDBG_EXTENSION_APIS","features":[164,7]},{"name":"WINDBG_EXTENSION_APIS32","features":[164,7]},{"name":"WINDBG_EXTENSION_APIS64","features":[164,7]},{"name":"WINDBG_OLDKD_EXTENSION_APIS","features":[164]},{"name":"WINDBG_OLD_EXTENSION_APIS","features":[164]},{"name":"WIN_95","features":[164]},{"name":"WIN_98","features":[164]},{"name":"WIN_ME","features":[164]},{"name":"WIN_NT4","features":[164]},{"name":"WIN_NT5","features":[164]},{"name":"WIN_NT5_1","features":[164]},{"name":"WIN_NT5_2","features":[164]},{"name":"WIN_NT6_0","features":[164]},{"name":"WIN_NT6_1","features":[164]},{"name":"WIN_UNDEFINED","features":[164]},{"name":"XML_DRIVER_NODE_INFO","features":[164]},{"name":"_EXTSAPI_VER_","features":[164]},{"name":"fnDebugFailureAnalysisCreateInstance","features":[164]}],"556":[{"name":"ALPCGuid","features":[31]},{"name":"CLASSIC_EVENT_ID","features":[31]},{"name":"CLSID_TraceRelogger","features":[31]},{"name":"CONTROLTRACE_HANDLE","features":[31]},{"name":"CTraceRelogger","features":[31]},{"name":"CloseTrace","features":[1,31]},{"name":"ControlTraceA","features":[1,31]},{"name":"ControlTraceW","features":[1,31]},{"name":"CreateTraceInstanceId","features":[1,31]},{"name":"CveEventWrite","features":[31]},{"name":"DECODING_SOURCE","features":[31]},{"name":"DIAG_LOGGER_NAMEA","features":[31]},{"name":"DIAG_LOGGER_NAMEW","features":[31]},{"name":"DecodingSourceMax","features":[31]},{"name":"DecodingSourceTlg","features":[31]},{"name":"DecodingSourceWPP","features":[31]},{"name":"DecodingSourceWbem","features":[31]},{"name":"DecodingSourceXMLFile","features":[31]},{"name":"DefaultTraceSecurityGuid","features":[31]},{"name":"DiskIoGuid","features":[31]},{"name":"ENABLECALLBACK_ENABLED_STATE","features":[31]},{"name":"ENABLE_TRACE_PARAMETERS","features":[31]},{"name":"ENABLE_TRACE_PARAMETERS_V1","features":[31]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION","features":[31]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION_2","features":[31]},{"name":"ETW_ASCIICHAR_TYPE_VALUE","features":[31]},{"name":"ETW_ASCIISTRING_TYPE_VALUE","features":[31]},{"name":"ETW_BOOLEAN_TYPE_VALUE","features":[31]},{"name":"ETW_BOOL_TYPE_VALUE","features":[31]},{"name":"ETW_BUFFER_CALLBACK_INFORMATION","features":[1,31,163]},{"name":"ETW_BUFFER_CONTEXT","features":[31]},{"name":"ETW_BUFFER_HEADER","features":[31]},{"name":"ETW_BYTE_TYPE_VALUE","features":[31]},{"name":"ETW_CHAR_TYPE_VALUE","features":[31]},{"name":"ETW_COMPRESSION_RESUMPTION_MODE","features":[31]},{"name":"ETW_COUNTED_ANSISTRING_TYPE_VALUE","features":[31]},{"name":"ETW_COUNTED_STRING_TYPE_VALUE","features":[31]},{"name":"ETW_DATETIME_TYPE_VALUE","features":[31]},{"name":"ETW_DECIMAL_TYPE_VALUE","features":[31]},{"name":"ETW_DOUBLE_TYPE_VALUE","features":[31]},{"name":"ETW_GUID_TYPE_VALUE","features":[31]},{"name":"ETW_HIDDEN_TYPE_VALUE","features":[31]},{"name":"ETW_INT16_TYPE_VALUE","features":[31]},{"name":"ETW_INT32_TYPE_VALUE","features":[31]},{"name":"ETW_INT64_TYPE_VALUE","features":[31]},{"name":"ETW_NON_NULL_TERMINATED_STRING_TYPE_VALUE","features":[31]},{"name":"ETW_NULL_TYPE_VALUE","features":[31]},{"name":"ETW_OBJECT_TYPE_VALUE","features":[31]},{"name":"ETW_OPEN_TRACE_OPTIONS","features":[1,31,163]},{"name":"ETW_PMC_COUNTER_OWNER","features":[31]},{"name":"ETW_PMC_COUNTER_OWNERSHIP_STATUS","features":[31]},{"name":"ETW_PMC_COUNTER_OWNER_TYPE","features":[31]},{"name":"ETW_PMC_SESSION_INFO","features":[31]},{"name":"ETW_POINTER_TYPE_VALUE","features":[31]},{"name":"ETW_PROCESS_HANDLE_INFO_TYPE","features":[31]},{"name":"ETW_PROCESS_TRACE_MODES","features":[31]},{"name":"ETW_PROCESS_TRACE_MODE_NONE","features":[31]},{"name":"ETW_PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[31]},{"name":"ETW_PROVIDER_TRAIT_TYPE","features":[31]},{"name":"ETW_PTVECTOR_TYPE_VALUE","features":[31]},{"name":"ETW_REDUCED_ANSISTRING_TYPE_VALUE","features":[31]},{"name":"ETW_REDUCED_STRING_TYPE_VALUE","features":[31]},{"name":"ETW_REFRENCE_TYPE_VALUE","features":[31]},{"name":"ETW_REVERSED_COUNTED_ANSISTRING_TYPE_VALUE","features":[31]},{"name":"ETW_REVERSED_COUNTED_STRING_TYPE_VALUE","features":[31]},{"name":"ETW_SBYTE_TYPE_VALUE","features":[31]},{"name":"ETW_SID_TYPE_VALUE","features":[31]},{"name":"ETW_SINGLE_TYPE_VALUE","features":[31]},{"name":"ETW_SIZET_TYPE_VALUE","features":[31]},{"name":"ETW_STRING_TYPE_VALUE","features":[31]},{"name":"ETW_TRACE_PARTITION_INFORMATION","features":[31]},{"name":"ETW_TRACE_PARTITION_INFORMATION_V2","features":[31]},{"name":"ETW_UINT16_TYPE_VALUE","features":[31]},{"name":"ETW_UINT32_TYPE_VALUE","features":[31]},{"name":"ETW_UINT64_TYPE_VALUE","features":[31]},{"name":"ETW_VARIANT_TYPE_VALUE","features":[31]},{"name":"ETW_WMITIME_TYPE_VALUE","features":[31]},{"name":"EVENTMAP_ENTRY_VALUETYPE_STRING","features":[31]},{"name":"EVENTMAP_ENTRY_VALUETYPE_ULONG","features":[31]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_BITMAP","features":[31]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_PATTERNMAP","features":[31]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_VALUEMAP","features":[31]},{"name":"EVENTMAP_INFO_FLAG_WBEM_BITMAP","features":[31]},{"name":"EVENTMAP_INFO_FLAG_WBEM_FLAG","features":[31]},{"name":"EVENTMAP_INFO_FLAG_WBEM_NO_MAP","features":[31]},{"name":"EVENTMAP_INFO_FLAG_WBEM_VALUEMAP","features":[31]},{"name":"EVENTSECURITYOPERATION","features":[31]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_ID","features":[31]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_SET_ID","features":[31]},{"name":"EVENT_ACTIVITY_CTRL_GET_ID","features":[31]},{"name":"EVENT_ACTIVITY_CTRL_GET_SET_ID","features":[31]},{"name":"EVENT_ACTIVITY_CTRL_SET_ID","features":[31]},{"name":"EVENT_CONTROL_CODE_CAPTURE_STATE","features":[31]},{"name":"EVENT_CONTROL_CODE_DISABLE_PROVIDER","features":[31]},{"name":"EVENT_CONTROL_CODE_ENABLE_PROVIDER","features":[31]},{"name":"EVENT_DATA_DESCRIPTOR","features":[31]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_EVENT_METADATA","features":[31]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_NONE","features":[31]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_PROVIDER_METADATA","features":[31]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_TIMESTAMP_OVERRIDE","features":[31]},{"name":"EVENT_DESCRIPTOR","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_KEYWORD_0","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_SILOS","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_EVENT_KEY","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_EXCLUDE_INPRIVATE","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_IGNORE_KEYWORD_0","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_PROCESS_START_KEY","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_PROVIDER_GROUP","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_PSM_KEY","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_SID","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_SOURCE_CONTAINER_TRACKING","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_STACK_TRACE","features":[31]},{"name":"EVENT_ENABLE_PROPERTY_TS_ID","features":[31]},{"name":"EVENT_EXTENDED_ITEM_EVENT_KEY","features":[31]},{"name":"EVENT_EXTENDED_ITEM_INSTANCE","features":[31]},{"name":"EVENT_EXTENDED_ITEM_PEBS_INDEX","features":[31]},{"name":"EVENT_EXTENDED_ITEM_PMC_COUNTERS","features":[31]},{"name":"EVENT_EXTENDED_ITEM_PROCESS_START_KEY","features":[31]},{"name":"EVENT_EXTENDED_ITEM_RELATED_ACTIVITYID","features":[31]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY32","features":[31]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY64","features":[31]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE32","features":[31]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE64","features":[31]},{"name":"EVENT_EXTENDED_ITEM_TS_ID","features":[31]},{"name":"EVENT_FIELD_TYPE","features":[31]},{"name":"EVENT_FILTER_DESCRIPTOR","features":[31]},{"name":"EVENT_FILTER_EVENT_ID","features":[1,31]},{"name":"EVENT_FILTER_EVENT_NAME","features":[1,31]},{"name":"EVENT_FILTER_HEADER","features":[31]},{"name":"EVENT_FILTER_LEVEL_KW","features":[1,31]},{"name":"EVENT_FILTER_TYPE_CONTAINER","features":[31]},{"name":"EVENT_FILTER_TYPE_EVENT_ID","features":[31]},{"name":"EVENT_FILTER_TYPE_EVENT_NAME","features":[31]},{"name":"EVENT_FILTER_TYPE_EXECUTABLE_NAME","features":[31]},{"name":"EVENT_FILTER_TYPE_NONE","features":[31]},{"name":"EVENT_FILTER_TYPE_PACKAGE_APP_ID","features":[31]},{"name":"EVENT_FILTER_TYPE_PACKAGE_ID","features":[31]},{"name":"EVENT_FILTER_TYPE_PAYLOAD","features":[31]},{"name":"EVENT_FILTER_TYPE_PID","features":[31]},{"name":"EVENT_FILTER_TYPE_SCHEMATIZED","features":[31]},{"name":"EVENT_FILTER_TYPE_STACKWALK","features":[31]},{"name":"EVENT_FILTER_TYPE_STACKWALK_LEVEL_KW","features":[31]},{"name":"EVENT_FILTER_TYPE_STACKWALK_NAME","features":[31]},{"name":"EVENT_FILTER_TYPE_SYSTEM_FLAGS","features":[31]},{"name":"EVENT_FILTER_TYPE_TRACEHANDLE","features":[31]},{"name":"EVENT_HEADER","features":[31]},{"name":"EVENT_HEADER_EXTENDED_DATA_ITEM","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_CONTAINER_ID","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_CONTROL_GUID","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_KEY","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_SCHEMA_TL","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_INSTANCE_INFO","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_MAX","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_PEBS_INDEX","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_PMC_COUNTERS","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_PROCESS_START_KEY","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_PROV_TRAITS","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_PSM_KEY","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_QPC_DELTA","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_RELATED_ACTIVITYID","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_SID","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY32","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY64","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE32","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE64","features":[31]},{"name":"EVENT_HEADER_EXT_TYPE_TS_ID","features":[31]},{"name":"EVENT_HEADER_FLAG_32_BIT_HEADER","features":[31]},{"name":"EVENT_HEADER_FLAG_64_BIT_HEADER","features":[31]},{"name":"EVENT_HEADER_FLAG_CLASSIC_HEADER","features":[31]},{"name":"EVENT_HEADER_FLAG_DECODE_GUID","features":[31]},{"name":"EVENT_HEADER_FLAG_EXTENDED_INFO","features":[31]},{"name":"EVENT_HEADER_FLAG_NO_CPUTIME","features":[31]},{"name":"EVENT_HEADER_FLAG_PRIVATE_SESSION","features":[31]},{"name":"EVENT_HEADER_FLAG_PROCESSOR_INDEX","features":[31]},{"name":"EVENT_HEADER_FLAG_STRING_ONLY","features":[31]},{"name":"EVENT_HEADER_FLAG_TRACE_MESSAGE","features":[31]},{"name":"EVENT_HEADER_PROPERTY_FORWARDED_XML","features":[31]},{"name":"EVENT_HEADER_PROPERTY_LEGACY_EVENTLOG","features":[31]},{"name":"EVENT_HEADER_PROPERTY_RELOGGABLE","features":[31]},{"name":"EVENT_HEADER_PROPERTY_XML","features":[31]},{"name":"EVENT_INFO_CLASS","features":[31]},{"name":"EVENT_INSTANCE_HEADER","features":[31]},{"name":"EVENT_INSTANCE_INFO","features":[1,31]},{"name":"EVENT_LOGGER_NAME","features":[31]},{"name":"EVENT_LOGGER_NAMEA","features":[31]},{"name":"EVENT_LOGGER_NAMEW","features":[31]},{"name":"EVENT_MAP_ENTRY","features":[31]},{"name":"EVENT_MAP_INFO","features":[31]},{"name":"EVENT_MAX_LEVEL","features":[31]},{"name":"EVENT_MIN_LEVEL","features":[31]},{"name":"EVENT_PROPERTY_INFO","features":[31]},{"name":"EVENT_RECORD","features":[31]},{"name":"EVENT_TRACE","features":[31]},{"name":"EVENT_TRACE_ADDTO_TRIAGE_DUMP","features":[31]},{"name":"EVENT_TRACE_ADD_HEADER_MODE","features":[31]},{"name":"EVENT_TRACE_BUFFERING_MODE","features":[31]},{"name":"EVENT_TRACE_COMPRESSED_MODE","features":[31]},{"name":"EVENT_TRACE_CONTROL","features":[31]},{"name":"EVENT_TRACE_CONTROL_CONVERT_TO_REALTIME","features":[31]},{"name":"EVENT_TRACE_CONTROL_FLUSH","features":[31]},{"name":"EVENT_TRACE_CONTROL_INCREMENT_FILE","features":[31]},{"name":"EVENT_TRACE_CONTROL_QUERY","features":[31]},{"name":"EVENT_TRACE_CONTROL_STOP","features":[31]},{"name":"EVENT_TRACE_CONTROL_UPDATE","features":[31]},{"name":"EVENT_TRACE_DELAY_OPEN_FILE_MODE","features":[31]},{"name":"EVENT_TRACE_FILE_MODE_APPEND","features":[31]},{"name":"EVENT_TRACE_FILE_MODE_CIRCULAR","features":[31]},{"name":"EVENT_TRACE_FILE_MODE_NEWFILE","features":[31]},{"name":"EVENT_TRACE_FILE_MODE_NONE","features":[31]},{"name":"EVENT_TRACE_FILE_MODE_PREALLOCATE","features":[31]},{"name":"EVENT_TRACE_FILE_MODE_SEQUENTIAL","features":[31]},{"name":"EVENT_TRACE_FLAG","features":[31]},{"name":"EVENT_TRACE_FLAG_ALPC","features":[31]},{"name":"EVENT_TRACE_FLAG_CSWITCH","features":[31]},{"name":"EVENT_TRACE_FLAG_DBGPRINT","features":[31]},{"name":"EVENT_TRACE_FLAG_DEBUG_EVENTS","features":[31]},{"name":"EVENT_TRACE_FLAG_DISK_FILE_IO","features":[31]},{"name":"EVENT_TRACE_FLAG_DISK_IO","features":[31]},{"name":"EVENT_TRACE_FLAG_DISK_IO_INIT","features":[31]},{"name":"EVENT_TRACE_FLAG_DISPATCHER","features":[31]},{"name":"EVENT_TRACE_FLAG_DPC","features":[31]},{"name":"EVENT_TRACE_FLAG_DRIVER","features":[31]},{"name":"EVENT_TRACE_FLAG_ENABLE_RESERVE","features":[31]},{"name":"EVENT_TRACE_FLAG_EXTENSION","features":[31]},{"name":"EVENT_TRACE_FLAG_FILE_IO","features":[31]},{"name":"EVENT_TRACE_FLAG_FILE_IO_INIT","features":[31]},{"name":"EVENT_TRACE_FLAG_FORWARD_WMI","features":[31]},{"name":"EVENT_TRACE_FLAG_IMAGE_LOAD","features":[31]},{"name":"EVENT_TRACE_FLAG_INTERRUPT","features":[31]},{"name":"EVENT_TRACE_FLAG_JOB","features":[31]},{"name":"EVENT_TRACE_FLAG_MEMORY_HARD_FAULTS","features":[31]},{"name":"EVENT_TRACE_FLAG_MEMORY_PAGE_FAULTS","features":[31]},{"name":"EVENT_TRACE_FLAG_NETWORK_TCPIP","features":[31]},{"name":"EVENT_TRACE_FLAG_NO_SYSCONFIG","features":[31]},{"name":"EVENT_TRACE_FLAG_PROCESS","features":[31]},{"name":"EVENT_TRACE_FLAG_PROCESS_COUNTERS","features":[31]},{"name":"EVENT_TRACE_FLAG_PROFILE","features":[31]},{"name":"EVENT_TRACE_FLAG_REGISTRY","features":[31]},{"name":"EVENT_TRACE_FLAG_SPLIT_IO","features":[31]},{"name":"EVENT_TRACE_FLAG_SYSTEMCALL","features":[31]},{"name":"EVENT_TRACE_FLAG_THREAD","features":[31]},{"name":"EVENT_TRACE_FLAG_VAMAP","features":[31]},{"name":"EVENT_TRACE_FLAG_VIRTUAL_ALLOC","features":[31]},{"name":"EVENT_TRACE_HEADER","features":[31]},{"name":"EVENT_TRACE_INDEPENDENT_SESSION_MODE","features":[31]},{"name":"EVENT_TRACE_LOGFILEA","features":[1,31,163]},{"name":"EVENT_TRACE_LOGFILEW","features":[1,31,163]},{"name":"EVENT_TRACE_MODE_RESERVED","features":[31]},{"name":"EVENT_TRACE_NONSTOPPABLE_MODE","features":[31]},{"name":"EVENT_TRACE_NO_PER_PROCESSOR_BUFFERING","features":[31]},{"name":"EVENT_TRACE_PERSIST_ON_HYBRID_SHUTDOWN","features":[31]},{"name":"EVENT_TRACE_PRIVATE_IN_PROC","features":[31]},{"name":"EVENT_TRACE_PRIVATE_LOGGER_MODE","features":[31]},{"name":"EVENT_TRACE_PROPERTIES","features":[1,31]},{"name":"EVENT_TRACE_PROPERTIES_V2","features":[1,31]},{"name":"EVENT_TRACE_REAL_TIME_MODE","features":[31]},{"name":"EVENT_TRACE_RELOG_MODE","features":[31]},{"name":"EVENT_TRACE_SECURE_MODE","features":[31]},{"name":"EVENT_TRACE_STOP_ON_HYBRID_SHUTDOWN","features":[31]},{"name":"EVENT_TRACE_SYSTEM_LOGGER_MODE","features":[31]},{"name":"EVENT_TRACE_TYPE_ACCEPT","features":[31]},{"name":"EVENT_TRACE_TYPE_ACKDUP","features":[31]},{"name":"EVENT_TRACE_TYPE_ACKFULL","features":[31]},{"name":"EVENT_TRACE_TYPE_ACKPART","features":[31]},{"name":"EVENT_TRACE_TYPE_CHECKPOINT","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_BOOT","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_CI_INFO","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_CPU","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEFRAG","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEVICEFAMILY","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_DPI","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_FLIGHTID","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_IDECHANNEL","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_IRQ","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_LOGICALDISK","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_MACHINEID","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_MOBILEPLATFORM","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_NETINFO","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_NIC","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_NUMANODE","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_OPTICALMEDIA","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK_EX","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_PLATFORM","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_PNP","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_POWER","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSOR","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORGROUP","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORNUMBER","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_SERVICES","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIDEO","features":[31]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIRTUALIZATION","features":[31]},{"name":"EVENT_TRACE_TYPE_CONNECT","features":[31]},{"name":"EVENT_TRACE_TYPE_CONNFAIL","features":[31]},{"name":"EVENT_TRACE_TYPE_COPY_ARP","features":[31]},{"name":"EVENT_TRACE_TYPE_COPY_TCP","features":[31]},{"name":"EVENT_TRACE_TYPE_DBGID_RSDS","features":[31]},{"name":"EVENT_TRACE_TYPE_DC_END","features":[31]},{"name":"EVENT_TRACE_TYPE_DC_START","features":[31]},{"name":"EVENT_TRACE_TYPE_DEQUEUE","features":[31]},{"name":"EVENT_TRACE_TYPE_DISCONNECT","features":[31]},{"name":"EVENT_TRACE_TYPE_END","features":[31]},{"name":"EVENT_TRACE_TYPE_EXTENSION","features":[31]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_COMPLETION","features":[31]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_FAILURE","features":[31]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_COMPLETION","features":[31]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_FAILURE","features":[31]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_GUIDMAP","features":[31]},{"name":"EVENT_TRACE_TYPE_INFO","features":[31]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH","features":[31]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_IO_READ","features":[31]},{"name":"EVENT_TRACE_TYPE_IO_READ_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_IO_REDIRECTED_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_IO_WRITE","features":[31]},{"name":"EVENT_TRACE_TYPE_IO_WRITE_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_LOAD","features":[31]},{"name":"EVENT_TRACE_TYPE_MM_AV","features":[31]},{"name":"EVENT_TRACE_TYPE_MM_COW","features":[31]},{"name":"EVENT_TRACE_TYPE_MM_DZF","features":[31]},{"name":"EVENT_TRACE_TYPE_MM_GPF","features":[31]},{"name":"EVENT_TRACE_TYPE_MM_HPF","features":[31]},{"name":"EVENT_TRACE_TYPE_MM_TF","features":[31]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH","features":[31]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ","features":[31]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE","features":[31]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE_INIT","features":[31]},{"name":"EVENT_TRACE_TYPE_RECEIVE","features":[31]},{"name":"EVENT_TRACE_TYPE_RECONNECT","features":[31]},{"name":"EVENT_TRACE_TYPE_REGCLOSE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGCOMMIT","features":[31]},{"name":"EVENT_TRACE_TYPE_REGCREATE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGDELETE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGDELETEVALUE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEKEY","features":[31]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEVALUEKEY","features":[31]},{"name":"EVENT_TRACE_TYPE_REGFLUSH","features":[31]},{"name":"EVENT_TRACE_TYPE_REGKCBCREATE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGKCBDELETE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNBEGIN","features":[31]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNEND","features":[31]},{"name":"EVENT_TRACE_TYPE_REGMOUNTHIVE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGOPEN","features":[31]},{"name":"EVENT_TRACE_TYPE_REGPREPARE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGQUERY","features":[31]},{"name":"EVENT_TRACE_TYPE_REGQUERYMULTIPLEVALUE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGQUERYSECURITY","features":[31]},{"name":"EVENT_TRACE_TYPE_REGQUERYVALUE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGROLLBACK","features":[31]},{"name":"EVENT_TRACE_TYPE_REGSETINFORMATION","features":[31]},{"name":"EVENT_TRACE_TYPE_REGSETSECURITY","features":[31]},{"name":"EVENT_TRACE_TYPE_REGSETVALUE","features":[31]},{"name":"EVENT_TRACE_TYPE_REGVIRTUALIZE","features":[31]},{"name":"EVENT_TRACE_TYPE_REPLY","features":[31]},{"name":"EVENT_TRACE_TYPE_RESUME","features":[31]},{"name":"EVENT_TRACE_TYPE_RETRANSMIT","features":[31]},{"name":"EVENT_TRACE_TYPE_SECURITY","features":[31]},{"name":"EVENT_TRACE_TYPE_SEND","features":[31]},{"name":"EVENT_TRACE_TYPE_SIDINFO","features":[31]},{"name":"EVENT_TRACE_TYPE_START","features":[31]},{"name":"EVENT_TRACE_TYPE_STOP","features":[31]},{"name":"EVENT_TRACE_TYPE_SUSPEND","features":[31]},{"name":"EVENT_TRACE_TYPE_TERMINATE","features":[31]},{"name":"EVENT_TRACE_TYPE_WINEVT_RECEIVE","features":[31]},{"name":"EVENT_TRACE_TYPE_WINEVT_SEND","features":[31]},{"name":"EVENT_TRACE_USE_GLOBAL_SEQUENCE","features":[31]},{"name":"EVENT_TRACE_USE_KBYTES_FOR_SIZE","features":[31]},{"name":"EVENT_TRACE_USE_LOCAL_SEQUENCE","features":[31]},{"name":"EVENT_TRACE_USE_NOCPUTIME","features":[31]},{"name":"EVENT_TRACE_USE_PAGED_MEMORY","features":[31]},{"name":"EVENT_TRACE_USE_PROCTIME","features":[31]},{"name":"EVENT_WRITE_FLAG_INPRIVATE","features":[31]},{"name":"EVENT_WRITE_FLAG_NO_FAULTING","features":[31]},{"name":"EnableTrace","features":[1,31]},{"name":"EnableTraceEx","features":[1,31]},{"name":"EnableTraceEx2","features":[1,31]},{"name":"EnumerateTraceGuids","features":[1,31]},{"name":"EnumerateTraceGuidsEx","features":[1,31]},{"name":"EtwCompressionModeNoDisable","features":[31]},{"name":"EtwCompressionModeNoRestart","features":[31]},{"name":"EtwCompressionModeRestart","features":[31]},{"name":"EtwPmcOwnerFree","features":[31]},{"name":"EtwPmcOwnerTagged","features":[31]},{"name":"EtwPmcOwnerTaggedWithSource","features":[31]},{"name":"EtwPmcOwnerUntagged","features":[31]},{"name":"EtwProviderTraitDecodeGuid","features":[31]},{"name":"EtwProviderTraitTypeGroup","features":[31]},{"name":"EtwProviderTraitTypeMax","features":[31]},{"name":"EtwQueryLastDroppedTimes","features":[31]},{"name":"EtwQueryLogFileHeader","features":[31]},{"name":"EtwQueryPartitionInformation","features":[31]},{"name":"EtwQueryPartitionInformationV2","features":[31]},{"name":"EtwQueryProcessHandleInfoMax","features":[31]},{"name":"EventAccessControl","features":[1,31]},{"name":"EventAccessQuery","features":[4,31]},{"name":"EventAccessRemove","features":[31]},{"name":"EventActivityIdControl","features":[31]},{"name":"EventChannelInformation","features":[31]},{"name":"EventEnabled","features":[1,31]},{"name":"EventInformationMax","features":[31]},{"name":"EventKeywordInformation","features":[31]},{"name":"EventLevelInformation","features":[31]},{"name":"EventOpcodeInformation","features":[31]},{"name":"EventProviderBinaryTrackInfo","features":[31]},{"name":"EventProviderEnabled","features":[1,31]},{"name":"EventProviderSetReserved1","features":[31]},{"name":"EventProviderSetTraits","features":[31]},{"name":"EventProviderUseDescriptorType","features":[31]},{"name":"EventRegister","features":[31]},{"name":"EventSecurityAddDACL","features":[31]},{"name":"EventSecurityAddSACL","features":[31]},{"name":"EventSecurityMax","features":[31]},{"name":"EventSecuritySetDACL","features":[31]},{"name":"EventSecuritySetSACL","features":[31]},{"name":"EventSetInformation","features":[31]},{"name":"EventTaskInformation","features":[31]},{"name":"EventTraceConfigGuid","features":[31]},{"name":"EventTraceGuid","features":[31]},{"name":"EventUnregister","features":[31]},{"name":"EventWrite","features":[31]},{"name":"EventWriteEx","features":[31]},{"name":"EventWriteString","features":[31]},{"name":"EventWriteTransfer","features":[31]},{"name":"FileIoGuid","features":[31]},{"name":"FlushTraceA","features":[1,31]},{"name":"FlushTraceW","features":[1,31]},{"name":"GLOBAL_LOGGER_NAME","features":[31]},{"name":"GLOBAL_LOGGER_NAMEA","features":[31]},{"name":"GLOBAL_LOGGER_NAMEW","features":[31]},{"name":"GetTraceEnableFlags","features":[31]},{"name":"GetTraceEnableLevel","features":[31]},{"name":"GetTraceLoggerHandle","features":[31]},{"name":"ITraceEvent","features":[31]},{"name":"ITraceEventCallback","features":[31]},{"name":"ITraceRelogger","features":[31]},{"name":"ImageLoadGuid","features":[31]},{"name":"KERNEL_LOGGER_NAME","features":[31]},{"name":"KERNEL_LOGGER_NAMEA","features":[31]},{"name":"KERNEL_LOGGER_NAMEW","features":[31]},{"name":"MAP_FLAGS","features":[31]},{"name":"MAP_VALUETYPE","features":[31]},{"name":"MAX_EVENT_DATA_DESCRIPTORS","features":[31]},{"name":"MAX_EVENT_FILTERS_COUNT","features":[31]},{"name":"MAX_EVENT_FILTER_DATA_SIZE","features":[31]},{"name":"MAX_EVENT_FILTER_EVENT_ID_COUNT","features":[31]},{"name":"MAX_EVENT_FILTER_EVENT_NAME_SIZE","features":[31]},{"name":"MAX_EVENT_FILTER_PAYLOAD_SIZE","features":[31]},{"name":"MAX_EVENT_FILTER_PID_COUNT","features":[31]},{"name":"MAX_MOF_FIELDS","features":[31]},{"name":"MAX_PAYLOAD_PREDICATES","features":[31]},{"name":"MOF_FIELD","features":[31]},{"name":"MaxEventInfo","features":[31]},{"name":"MaxTraceSetInfoClass","features":[31]},{"name":"OFFSETINSTANCEDATAANDLENGTH","features":[31]},{"name":"OpenTraceA","features":[1,31,163]},{"name":"OpenTraceFromBufferStream","features":[1,31,163]},{"name":"OpenTraceFromFile","features":[1,31,163]},{"name":"OpenTraceFromRealTimeLogger","features":[1,31,163]},{"name":"OpenTraceFromRealTimeLoggerWithAllocationOptions","features":[1,31,163]},{"name":"OpenTraceW","features":[1,31,163]},{"name":"PAYLOADFIELD_BETWEEN","features":[31]},{"name":"PAYLOADFIELD_CONTAINS","features":[31]},{"name":"PAYLOADFIELD_DOESNTCONTAIN","features":[31]},{"name":"PAYLOADFIELD_EQ","features":[31]},{"name":"PAYLOADFIELD_GE","features":[31]},{"name":"PAYLOADFIELD_GT","features":[31]},{"name":"PAYLOADFIELD_INVALID","features":[31]},{"name":"PAYLOADFIELD_IS","features":[31]},{"name":"PAYLOADFIELD_ISNOT","features":[31]},{"name":"PAYLOADFIELD_LE","features":[31]},{"name":"PAYLOADFIELD_LT","features":[31]},{"name":"PAYLOADFIELD_MODULO","features":[31]},{"name":"PAYLOADFIELD_NE","features":[31]},{"name":"PAYLOADFIELD_NOTBETWEEN","features":[31]},{"name":"PAYLOAD_FILTER_PREDICATE","features":[31]},{"name":"PAYLOAD_OPERATOR","features":[31]},{"name":"PENABLECALLBACK","features":[31]},{"name":"PETW_BUFFER_CALLBACK","features":[1,31,163]},{"name":"PETW_BUFFER_COMPLETION_CALLBACK","features":[31]},{"name":"PEVENT_CALLBACK","features":[31]},{"name":"PEVENT_RECORD_CALLBACK","features":[31]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKA","features":[1,31,163]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKW","features":[1,31,163]},{"name":"PROCESSTRACE_HANDLE","features":[31]},{"name":"PROCESS_TRACE_MODE_EVENT_RECORD","features":[31]},{"name":"PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[31]},{"name":"PROCESS_TRACE_MODE_REAL_TIME","features":[31]},{"name":"PROFILE_SOURCE_INFO","features":[31]},{"name":"PROPERTY_DATA_DESCRIPTOR","features":[31]},{"name":"PROPERTY_FLAGS","features":[31]},{"name":"PROVIDER_ENUMERATION_INFO","features":[31]},{"name":"PROVIDER_EVENT_INFO","features":[31]},{"name":"PROVIDER_FIELD_INFO","features":[31]},{"name":"PROVIDER_FIELD_INFOARRAY","features":[31]},{"name":"PROVIDER_FILTER_INFO","features":[31]},{"name":"PageFaultGuid","features":[31]},{"name":"PerfInfoGuid","features":[31]},{"name":"PrivateLoggerNotificationGuid","features":[31]},{"name":"ProcessGuid","features":[31]},{"name":"ProcessTrace","features":[1,31]},{"name":"ProcessTraceAddBufferToBufferStream","features":[31]},{"name":"ProcessTraceBufferDecrementReference","features":[31]},{"name":"ProcessTraceBufferIncrementReference","features":[31]},{"name":"PropertyHasCustomSchema","features":[31]},{"name":"PropertyHasTags","features":[31]},{"name":"PropertyParamCount","features":[31]},{"name":"PropertyParamFixedCount","features":[31]},{"name":"PropertyParamFixedLength","features":[31]},{"name":"PropertyParamLength","features":[31]},{"name":"PropertyStruct","features":[31]},{"name":"PropertyWBEMXmlFragment","features":[31]},{"name":"QueryAllTracesA","features":[1,31]},{"name":"QueryAllTracesW","features":[1,31]},{"name":"QueryTraceA","features":[1,31]},{"name":"QueryTraceProcessingHandle","features":[1,31]},{"name":"QueryTraceW","features":[1,31]},{"name":"RELOGSTREAM_HANDLE","features":[31]},{"name":"RegisterTraceGuidsA","features":[1,31]},{"name":"RegisterTraceGuidsW","features":[1,31]},{"name":"RegistryGuid","features":[31]},{"name":"RemoveTraceCallback","features":[1,31]},{"name":"SYSTEM_ALPC_KW_GENERAL","features":[31]},{"name":"SYSTEM_CONFIG_KW_GRAPHICS","features":[31]},{"name":"SYSTEM_CONFIG_KW_NETWORK","features":[31]},{"name":"SYSTEM_CONFIG_KW_OPTICAL","features":[31]},{"name":"SYSTEM_CONFIG_KW_PNP","features":[31]},{"name":"SYSTEM_CONFIG_KW_SERVICES","features":[31]},{"name":"SYSTEM_CONFIG_KW_STORAGE","features":[31]},{"name":"SYSTEM_CONFIG_KW_SYSTEM","features":[31]},{"name":"SYSTEM_CPU_KW_CACHE_FLUSH","features":[31]},{"name":"SYSTEM_CPU_KW_CONFIG","features":[31]},{"name":"SYSTEM_CPU_KW_SPEC_CONTROL","features":[31]},{"name":"SYSTEM_EVENT_TYPE","features":[31]},{"name":"SYSTEM_HYPERVISOR_KW_CALLOUTS","features":[31]},{"name":"SYSTEM_HYPERVISOR_KW_PROFILE","features":[31]},{"name":"SYSTEM_HYPERVISOR_KW_VTL_CHANGE","features":[31]},{"name":"SYSTEM_INTERRUPT_KW_CLOCK_INTERRUPT","features":[31]},{"name":"SYSTEM_INTERRUPT_KW_DPC","features":[31]},{"name":"SYSTEM_INTERRUPT_KW_DPC_QUEUE","features":[31]},{"name":"SYSTEM_INTERRUPT_KW_GENERAL","features":[31]},{"name":"SYSTEM_INTERRUPT_KW_IPI","features":[31]},{"name":"SYSTEM_INTERRUPT_KW_WDF_DPC","features":[31]},{"name":"SYSTEM_INTERRUPT_KW_WDF_INTERRUPT","features":[31]},{"name":"SYSTEM_IOFILTER_KW_FAILURE","features":[31]},{"name":"SYSTEM_IOFILTER_KW_FASTIO","features":[31]},{"name":"SYSTEM_IOFILTER_KW_GENERAL","features":[31]},{"name":"SYSTEM_IOFILTER_KW_INIT","features":[31]},{"name":"SYSTEM_IO_KW_CC","features":[31]},{"name":"SYSTEM_IO_KW_DISK","features":[31]},{"name":"SYSTEM_IO_KW_DISK_INIT","features":[31]},{"name":"SYSTEM_IO_KW_DRIVERS","features":[31]},{"name":"SYSTEM_IO_KW_FILE","features":[31]},{"name":"SYSTEM_IO_KW_FILENAME","features":[31]},{"name":"SYSTEM_IO_KW_NETWORK","features":[31]},{"name":"SYSTEM_IO_KW_OPTICAL","features":[31]},{"name":"SYSTEM_IO_KW_OPTICAL_INIT","features":[31]},{"name":"SYSTEM_IO_KW_SPLIT","features":[31]},{"name":"SYSTEM_LOCK_KW_SPINLOCK","features":[31]},{"name":"SYSTEM_LOCK_KW_SPINLOCK_COUNTERS","features":[31]},{"name":"SYSTEM_LOCK_KW_SYNC_OBJECTS","features":[31]},{"name":"SYSTEM_MEMORY_KW_ALL_FAULTS","features":[31]},{"name":"SYSTEM_MEMORY_KW_CONTMEM_GEN","features":[31]},{"name":"SYSTEM_MEMORY_KW_FOOTPRINT","features":[31]},{"name":"SYSTEM_MEMORY_KW_GENERAL","features":[31]},{"name":"SYSTEM_MEMORY_KW_HARD_FAULTS","features":[31]},{"name":"SYSTEM_MEMORY_KW_HEAP","features":[31]},{"name":"SYSTEM_MEMORY_KW_MEMINFO","features":[31]},{"name":"SYSTEM_MEMORY_KW_MEMINFO_WS","features":[31]},{"name":"SYSTEM_MEMORY_KW_NONTRADEABLE","features":[31]},{"name":"SYSTEM_MEMORY_KW_PFSECTION","features":[31]},{"name":"SYSTEM_MEMORY_KW_POOL","features":[31]},{"name":"SYSTEM_MEMORY_KW_REFSET","features":[31]},{"name":"SYSTEM_MEMORY_KW_SESSION","features":[31]},{"name":"SYSTEM_MEMORY_KW_VAMAP","features":[31]},{"name":"SYSTEM_MEMORY_KW_VIRTUAL_ALLOC","features":[31]},{"name":"SYSTEM_MEMORY_KW_WS","features":[31]},{"name":"SYSTEM_MEMORY_POOL_FILTER_ID","features":[31]},{"name":"SYSTEM_OBJECT_KW_GENERAL","features":[31]},{"name":"SYSTEM_OBJECT_KW_HANDLE","features":[31]},{"name":"SYSTEM_POWER_KW_GENERAL","features":[31]},{"name":"SYSTEM_POWER_KW_HIBER_RUNDOWN","features":[31]},{"name":"SYSTEM_POWER_KW_IDLE_SELECTION","features":[31]},{"name":"SYSTEM_POWER_KW_PPM_EXIT_LATENCY","features":[31]},{"name":"SYSTEM_POWER_KW_PROCESSOR_IDLE","features":[31]},{"name":"SYSTEM_PROCESS_KW_DBGPRINT","features":[31]},{"name":"SYSTEM_PROCESS_KW_DEBUG_EVENTS","features":[31]},{"name":"SYSTEM_PROCESS_KW_FREEZE","features":[31]},{"name":"SYSTEM_PROCESS_KW_GENERAL","features":[31]},{"name":"SYSTEM_PROCESS_KW_INSWAP","features":[31]},{"name":"SYSTEM_PROCESS_KW_JOB","features":[31]},{"name":"SYSTEM_PROCESS_KW_LOADER","features":[31]},{"name":"SYSTEM_PROCESS_KW_PERF_COUNTER","features":[31]},{"name":"SYSTEM_PROCESS_KW_THREAD","features":[31]},{"name":"SYSTEM_PROCESS_KW_WAKE_COUNTER","features":[31]},{"name":"SYSTEM_PROCESS_KW_WAKE_DROP","features":[31]},{"name":"SYSTEM_PROCESS_KW_WAKE_EVENT","features":[31]},{"name":"SYSTEM_PROCESS_KW_WORKER_THREAD","features":[31]},{"name":"SYSTEM_PROFILE_KW_GENERAL","features":[31]},{"name":"SYSTEM_PROFILE_KW_PMC_PROFILE","features":[31]},{"name":"SYSTEM_REGISTRY_KW_GENERAL","features":[31]},{"name":"SYSTEM_REGISTRY_KW_HIVE","features":[31]},{"name":"SYSTEM_REGISTRY_KW_NOTIFICATION","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_AFFINITY","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_ANTI_STARVATION","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_COMPACT_CSWITCH","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_CONTEXT_SWITCH","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_DISPATCHER","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_IDEAL_PROCESSOR","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_KERNEL_QUEUE","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_LOAD_BALANCER","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_PRIORITY","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_SHOULD_YIELD","features":[31]},{"name":"SYSTEM_SCHEDULER_KW_XSCHEDULER","features":[31]},{"name":"SYSTEM_SYSCALL_KW_GENERAL","features":[31]},{"name":"SYSTEM_TIMER_KW_CLOCK_TIMER","features":[31]},{"name":"SYSTEM_TIMER_KW_GENERAL","features":[31]},{"name":"SetTraceCallback","features":[1,31]},{"name":"SplitIoGuid","features":[31]},{"name":"StartTraceA","features":[1,31]},{"name":"StartTraceW","features":[1,31]},{"name":"StopTraceA","features":[1,31]},{"name":"StopTraceW","features":[1,31]},{"name":"SystemAlpcProviderGuid","features":[31]},{"name":"SystemConfigProviderGuid","features":[31]},{"name":"SystemCpuProviderGuid","features":[31]},{"name":"SystemHypervisorProviderGuid","features":[31]},{"name":"SystemInterruptProviderGuid","features":[31]},{"name":"SystemIoFilterProviderGuid","features":[31]},{"name":"SystemIoProviderGuid","features":[31]},{"name":"SystemLockProviderGuid","features":[31]},{"name":"SystemMemoryProviderGuid","features":[31]},{"name":"SystemObjectProviderGuid","features":[31]},{"name":"SystemPowerProviderGuid","features":[31]},{"name":"SystemProcessProviderGuid","features":[31]},{"name":"SystemProfileProviderGuid","features":[31]},{"name":"SystemRegistryProviderGuid","features":[31]},{"name":"SystemSchedulerProviderGuid","features":[31]},{"name":"SystemSyscallProviderGuid","features":[31]},{"name":"SystemTimerProviderGuid","features":[31]},{"name":"SystemTraceControlGuid","features":[31]},{"name":"TDH_CONTEXT","features":[31]},{"name":"TDH_CONTEXT_MAXIMUM","features":[31]},{"name":"TDH_CONTEXT_PDB_PATH","features":[31]},{"name":"TDH_CONTEXT_POINTERSIZE","features":[31]},{"name":"TDH_CONTEXT_TYPE","features":[31]},{"name":"TDH_CONTEXT_WPP_GMT","features":[31]},{"name":"TDH_CONTEXT_WPP_TMFFILE","features":[31]},{"name":"TDH_CONTEXT_WPP_TMFSEARCHPATH","features":[31]},{"name":"TDH_HANDLE","features":[31]},{"name":"TDH_INTYPE_ANSICHAR","features":[31]},{"name":"TDH_INTYPE_ANSISTRING","features":[31]},{"name":"TDH_INTYPE_BINARY","features":[31]},{"name":"TDH_INTYPE_BOOLEAN","features":[31]},{"name":"TDH_INTYPE_COUNTEDANSISTRING","features":[31]},{"name":"TDH_INTYPE_COUNTEDSTRING","features":[31]},{"name":"TDH_INTYPE_DOUBLE","features":[31]},{"name":"TDH_INTYPE_FILETIME","features":[31]},{"name":"TDH_INTYPE_FLOAT","features":[31]},{"name":"TDH_INTYPE_GUID","features":[31]},{"name":"TDH_INTYPE_HEXDUMP","features":[31]},{"name":"TDH_INTYPE_HEXINT32","features":[31]},{"name":"TDH_INTYPE_HEXINT64","features":[31]},{"name":"TDH_INTYPE_INT16","features":[31]},{"name":"TDH_INTYPE_INT32","features":[31]},{"name":"TDH_INTYPE_INT64","features":[31]},{"name":"TDH_INTYPE_INT8","features":[31]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDANSISTRING","features":[31]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDBINARY","features":[31]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDSTRING","features":[31]},{"name":"TDH_INTYPE_NONNULLTERMINATEDANSISTRING","features":[31]},{"name":"TDH_INTYPE_NONNULLTERMINATEDSTRING","features":[31]},{"name":"TDH_INTYPE_NULL","features":[31]},{"name":"TDH_INTYPE_POINTER","features":[31]},{"name":"TDH_INTYPE_RESERVED24","features":[31]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDANSISTRING","features":[31]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDSTRING","features":[31]},{"name":"TDH_INTYPE_SID","features":[31]},{"name":"TDH_INTYPE_SIZET","features":[31]},{"name":"TDH_INTYPE_SYSTEMTIME","features":[31]},{"name":"TDH_INTYPE_UINT16","features":[31]},{"name":"TDH_INTYPE_UINT32","features":[31]},{"name":"TDH_INTYPE_UINT64","features":[31]},{"name":"TDH_INTYPE_UINT8","features":[31]},{"name":"TDH_INTYPE_UNICODECHAR","features":[31]},{"name":"TDH_INTYPE_UNICODESTRING","features":[31]},{"name":"TDH_INTYPE_WBEMSID","features":[31]},{"name":"TDH_OUTTYPE_BOOLEAN","features":[31]},{"name":"TDH_OUTTYPE_BYTE","features":[31]},{"name":"TDH_OUTTYPE_CIMDATETIME","features":[31]},{"name":"TDH_OUTTYPE_CODE_POINTER","features":[31]},{"name":"TDH_OUTTYPE_CULTURE_INSENSITIVE_DATETIME","features":[31]},{"name":"TDH_OUTTYPE_DATETIME","features":[31]},{"name":"TDH_OUTTYPE_DATETIME_UTC","features":[31]},{"name":"TDH_OUTTYPE_DOUBLE","features":[31]},{"name":"TDH_OUTTYPE_ERRORCODE","features":[31]},{"name":"TDH_OUTTYPE_ETWTIME","features":[31]},{"name":"TDH_OUTTYPE_FLOAT","features":[31]},{"name":"TDH_OUTTYPE_GUID","features":[31]},{"name":"TDH_OUTTYPE_HEXBINARY","features":[31]},{"name":"TDH_OUTTYPE_HEXINT16","features":[31]},{"name":"TDH_OUTTYPE_HEXINT32","features":[31]},{"name":"TDH_OUTTYPE_HEXINT64","features":[31]},{"name":"TDH_OUTTYPE_HEXINT8","features":[31]},{"name":"TDH_OUTTYPE_HRESULT","features":[31]},{"name":"TDH_OUTTYPE_INT","features":[31]},{"name":"TDH_OUTTYPE_IPV4","features":[31]},{"name":"TDH_OUTTYPE_IPV6","features":[31]},{"name":"TDH_OUTTYPE_JSON","features":[31]},{"name":"TDH_OUTTYPE_LONG","features":[31]},{"name":"TDH_OUTTYPE_NOPRINT","features":[31]},{"name":"TDH_OUTTYPE_NTSTATUS","features":[31]},{"name":"TDH_OUTTYPE_NULL","features":[31]},{"name":"TDH_OUTTYPE_PID","features":[31]},{"name":"TDH_OUTTYPE_PKCS7_WITH_TYPE_INFO","features":[31]},{"name":"TDH_OUTTYPE_PORT","features":[31]},{"name":"TDH_OUTTYPE_REDUCEDSTRING","features":[31]},{"name":"TDH_OUTTYPE_SHORT","features":[31]},{"name":"TDH_OUTTYPE_SOCKETADDRESS","features":[31]},{"name":"TDH_OUTTYPE_STRING","features":[31]},{"name":"TDH_OUTTYPE_TID","features":[31]},{"name":"TDH_OUTTYPE_UNSIGNEDBYTE","features":[31]},{"name":"TDH_OUTTYPE_UNSIGNEDINT","features":[31]},{"name":"TDH_OUTTYPE_UNSIGNEDLONG","features":[31]},{"name":"TDH_OUTTYPE_UNSIGNEDSHORT","features":[31]},{"name":"TDH_OUTTYPE_UTF8","features":[31]},{"name":"TDH_OUTTYPE_WIN32ERROR","features":[31]},{"name":"TDH_OUTTYPE_XML","features":[31]},{"name":"TEMPLATE_CONTROL_GUID","features":[31]},{"name":"TEMPLATE_EVENT_DATA","features":[31]},{"name":"TEMPLATE_FLAGS","features":[31]},{"name":"TEMPLATE_USER_DATA","features":[31]},{"name":"TRACELOG_ACCESS_KERNEL_LOGGER","features":[31]},{"name":"TRACELOG_ACCESS_REALTIME","features":[31]},{"name":"TRACELOG_CREATE_INPROC","features":[31]},{"name":"TRACELOG_CREATE_ONDISK","features":[31]},{"name":"TRACELOG_CREATE_REALTIME","features":[31]},{"name":"TRACELOG_GUID_ENABLE","features":[31]},{"name":"TRACELOG_JOIN_GROUP","features":[31]},{"name":"TRACELOG_LOG_EVENT","features":[31]},{"name":"TRACELOG_REGISTER_GUIDS","features":[31]},{"name":"TRACE_ENABLE_INFO","features":[31]},{"name":"TRACE_EVENT_INFO","features":[31]},{"name":"TRACE_GUID_INFO","features":[31]},{"name":"TRACE_GUID_PROPERTIES","features":[1,31]},{"name":"TRACE_GUID_REGISTRATION","features":[1,31]},{"name":"TRACE_HEADER_FLAG_LOG_WNODE","features":[31]},{"name":"TRACE_HEADER_FLAG_TRACED_GUID","features":[31]},{"name":"TRACE_HEADER_FLAG_USE_GUID_PTR","features":[31]},{"name":"TRACE_HEADER_FLAG_USE_MOF_PTR","features":[31]},{"name":"TRACE_HEADER_FLAG_USE_TIMESTAMP","features":[31]},{"name":"TRACE_LEVEL_CRITICAL","features":[31]},{"name":"TRACE_LEVEL_ERROR","features":[31]},{"name":"TRACE_LEVEL_FATAL","features":[31]},{"name":"TRACE_LEVEL_INFORMATION","features":[31]},{"name":"TRACE_LEVEL_NONE","features":[31]},{"name":"TRACE_LEVEL_RESERVED6","features":[31]},{"name":"TRACE_LEVEL_RESERVED7","features":[31]},{"name":"TRACE_LEVEL_RESERVED8","features":[31]},{"name":"TRACE_LEVEL_RESERVED9","features":[31]},{"name":"TRACE_LEVEL_VERBOSE","features":[31]},{"name":"TRACE_LEVEL_WARNING","features":[31]},{"name":"TRACE_LOGFILE_HEADER","features":[1,31,163]},{"name":"TRACE_LOGFILE_HEADER32","features":[1,31,163]},{"name":"TRACE_LOGFILE_HEADER64","features":[1,31,163]},{"name":"TRACE_MESSAGE_COMPONENTID","features":[31]},{"name":"TRACE_MESSAGE_FLAGS","features":[31]},{"name":"TRACE_MESSAGE_FLAG_MASK","features":[31]},{"name":"TRACE_MESSAGE_GUID","features":[31]},{"name":"TRACE_MESSAGE_PERFORMANCE_TIMESTAMP","features":[31]},{"name":"TRACE_MESSAGE_POINTER32","features":[31]},{"name":"TRACE_MESSAGE_POINTER64","features":[31]},{"name":"TRACE_MESSAGE_SEQUENCE","features":[31]},{"name":"TRACE_MESSAGE_SYSTEMINFO","features":[31]},{"name":"TRACE_MESSAGE_TIMESTAMP","features":[31]},{"name":"TRACE_PERIODIC_CAPTURE_STATE_INFO","features":[31]},{"name":"TRACE_PROFILE_INTERVAL","features":[31]},{"name":"TRACE_PROVIDER_FLAG_LEGACY","features":[31]},{"name":"TRACE_PROVIDER_FLAG_PRE_ENABLE","features":[31]},{"name":"TRACE_PROVIDER_INFO","features":[31]},{"name":"TRACE_PROVIDER_INSTANCE_INFO","features":[31]},{"name":"TRACE_QUERY_INFO_CLASS","features":[31]},{"name":"TRACE_STACK_CACHING_INFO","features":[1,31]},{"name":"TRACE_VERSION_INFO","features":[31]},{"name":"TcpIpGuid","features":[31]},{"name":"TdhAggregatePayloadFilters","features":[1,31]},{"name":"TdhCleanupPayloadEventFilterDescriptor","features":[31]},{"name":"TdhCloseDecodingHandle","features":[31]},{"name":"TdhCreatePayloadFilter","features":[1,31]},{"name":"TdhDeletePayloadFilter","features":[31]},{"name":"TdhEnumerateManifestProviderEvents","features":[31]},{"name":"TdhEnumerateProviderFieldInformation","features":[31]},{"name":"TdhEnumerateProviderFilters","features":[31]},{"name":"TdhEnumerateProviders","features":[31]},{"name":"TdhEnumerateProvidersForDecodingSource","features":[31]},{"name":"TdhFormatProperty","features":[31]},{"name":"TdhGetDecodingParameter","features":[31]},{"name":"TdhGetEventInformation","features":[31]},{"name":"TdhGetEventMapInformation","features":[31]},{"name":"TdhGetManifestEventInformation","features":[31]},{"name":"TdhGetProperty","features":[31]},{"name":"TdhGetPropertySize","features":[31]},{"name":"TdhGetWppMessage","features":[31]},{"name":"TdhGetWppProperty","features":[31]},{"name":"TdhLoadManifest","features":[31]},{"name":"TdhLoadManifestFromBinary","features":[31]},{"name":"TdhLoadManifestFromMemory","features":[31]},{"name":"TdhOpenDecodingHandle","features":[31]},{"name":"TdhQueryProviderFieldInformation","features":[31]},{"name":"TdhSetDecodingParameter","features":[31]},{"name":"TdhUnloadManifest","features":[31]},{"name":"TdhUnloadManifestFromMemory","features":[31]},{"name":"ThreadGuid","features":[31]},{"name":"TraceDisallowListQuery","features":[31]},{"name":"TraceEvent","features":[1,31]},{"name":"TraceEventInstance","features":[1,31]},{"name":"TraceGroupQueryInfo","features":[31]},{"name":"TraceGroupQueryList","features":[31]},{"name":"TraceGuidQueryInfo","features":[31]},{"name":"TraceGuidQueryList","features":[31]},{"name":"TraceGuidQueryProcess","features":[31]},{"name":"TraceInfoReserved15","features":[31]},{"name":"TraceLbrConfigurationInfo","features":[31]},{"name":"TraceLbrEventListInfo","features":[31]},{"name":"TraceMaxLoggersQuery","features":[31]},{"name":"TraceMaxPmcCounterQuery","features":[31]},{"name":"TraceMessage","features":[1,31]},{"name":"TraceMessageVa","features":[1,31]},{"name":"TracePeriodicCaptureStateInfo","features":[31]},{"name":"TracePeriodicCaptureStateListInfo","features":[31]},{"name":"TracePmcCounterListInfo","features":[31]},{"name":"TracePmcCounterOwners","features":[31]},{"name":"TracePmcEventListInfo","features":[31]},{"name":"TracePmcSessionInformation","features":[31]},{"name":"TraceProfileSourceConfigInfo","features":[31]},{"name":"TraceProfileSourceListInfo","features":[31]},{"name":"TraceProviderBinaryTracking","features":[31]},{"name":"TraceQueryInformation","features":[1,31]},{"name":"TraceSampledProfileIntervalInfo","features":[31]},{"name":"TraceSetDisallowList","features":[31]},{"name":"TraceSetInformation","features":[1,31]},{"name":"TraceStackCachingInfo","features":[31]},{"name":"TraceStackTracingInfo","features":[31]},{"name":"TraceStreamCount","features":[31]},{"name":"TraceSystemTraceEnableFlagsInfo","features":[31]},{"name":"TraceUnifiedStackCachingInfo","features":[31]},{"name":"TraceVersionInfo","features":[31]},{"name":"UdpIpGuid","features":[31]},{"name":"UnregisterTraceGuids","features":[31]},{"name":"UpdateTraceA","features":[1,31]},{"name":"UpdateTraceW","features":[1,31]},{"name":"WMIDPREQUEST","features":[31]},{"name":"WMIDPREQUESTCODE","features":[31]},{"name":"WMIGUID_EXECUTE","features":[31]},{"name":"WMIGUID_NOTIFICATION","features":[31]},{"name":"WMIGUID_QUERY","features":[31]},{"name":"WMIGUID_READ_DESCRIPTION","features":[31]},{"name":"WMIGUID_SET","features":[31]},{"name":"WMIREGGUIDW","features":[31]},{"name":"WMIREGINFOW","features":[31]},{"name":"WMIREG_FLAG_EVENT_ONLY_GUID","features":[31]},{"name":"WMIREG_FLAG_EXPENSIVE","features":[31]},{"name":"WMIREG_FLAG_INSTANCE_BASENAME","features":[31]},{"name":"WMIREG_FLAG_INSTANCE_LIST","features":[31]},{"name":"WMIREG_FLAG_INSTANCE_PDO","features":[31]},{"name":"WMIREG_FLAG_REMOVE_GUID","features":[31]},{"name":"WMIREG_FLAG_RESERVED1","features":[31]},{"name":"WMIREG_FLAG_RESERVED2","features":[31]},{"name":"WMIREG_FLAG_TRACED_GUID","features":[31]},{"name":"WMIREG_FLAG_TRACE_CONTROL_GUID","features":[31]},{"name":"WMI_CAPTURE_STATE","features":[31]},{"name":"WMI_DISABLE_COLLECTION","features":[31]},{"name":"WMI_DISABLE_EVENTS","features":[31]},{"name":"WMI_ENABLE_COLLECTION","features":[31]},{"name":"WMI_ENABLE_EVENTS","features":[31]},{"name":"WMI_EXECUTE_METHOD","features":[31]},{"name":"WMI_GET_ALL_DATA","features":[31]},{"name":"WMI_GET_SINGLE_INSTANCE","features":[31]},{"name":"WMI_GLOBAL_LOGGER_ID","features":[31]},{"name":"WMI_GUIDTYPE_DATA","features":[31]},{"name":"WMI_GUIDTYPE_EVENT","features":[31]},{"name":"WMI_GUIDTYPE_TRACE","features":[31]},{"name":"WMI_GUIDTYPE_TRACECONTROL","features":[31]},{"name":"WMI_REGINFO","features":[31]},{"name":"WMI_SET_SINGLE_INSTANCE","features":[31]},{"name":"WMI_SET_SINGLE_ITEM","features":[31]},{"name":"WNODE_ALL_DATA","features":[1,31]},{"name":"WNODE_EVENT_ITEM","features":[1,31]},{"name":"WNODE_EVENT_REFERENCE","features":[1,31]},{"name":"WNODE_FLAG_ALL_DATA","features":[31]},{"name":"WNODE_FLAG_ANSI_INSTANCENAMES","features":[31]},{"name":"WNODE_FLAG_EVENT_ITEM","features":[31]},{"name":"WNODE_FLAG_EVENT_REFERENCE","features":[31]},{"name":"WNODE_FLAG_FIXED_INSTANCE_SIZE","features":[31]},{"name":"WNODE_FLAG_INSTANCES_SAME","features":[31]},{"name":"WNODE_FLAG_INTERNAL","features":[31]},{"name":"WNODE_FLAG_LOG_WNODE","features":[31]},{"name":"WNODE_FLAG_METHOD_ITEM","features":[31]},{"name":"WNODE_FLAG_NO_HEADER","features":[31]},{"name":"WNODE_FLAG_PDO_INSTANCE_NAMES","features":[31]},{"name":"WNODE_FLAG_PERSIST_EVENT","features":[31]},{"name":"WNODE_FLAG_SEND_DATA_BLOCK","features":[31]},{"name":"WNODE_FLAG_SEVERITY_MASK","features":[31]},{"name":"WNODE_FLAG_SINGLE_INSTANCE","features":[31]},{"name":"WNODE_FLAG_SINGLE_ITEM","features":[31]},{"name":"WNODE_FLAG_STATIC_INSTANCE_NAMES","features":[31]},{"name":"WNODE_FLAG_TOO_SMALL","features":[31]},{"name":"WNODE_FLAG_TRACED_GUID","features":[31]},{"name":"WNODE_FLAG_USE_GUID_PTR","features":[31]},{"name":"WNODE_FLAG_USE_MOF_PTR","features":[31]},{"name":"WNODE_FLAG_USE_TIMESTAMP","features":[31]},{"name":"WNODE_FLAG_VERSIONED_PROPERTIES","features":[31]},{"name":"WNODE_HEADER","features":[1,31]},{"name":"WNODE_METHOD_ITEM","features":[1,31]},{"name":"WNODE_SINGLE_INSTANCE","features":[1,31]},{"name":"WNODE_SINGLE_ITEM","features":[1,31]},{"name":"WNODE_TOO_SMALL","features":[1,31]},{"name":"_TDH_IN_TYPE","features":[31]},{"name":"_TDH_OUT_TYPE","features":[31]}],"557":[{"name":"HPSS","features":[165]},{"name":"HPSSWALK","features":[165]},{"name":"PSS_ALLOCATOR","features":[165]},{"name":"PSS_AUXILIARY_PAGES_INFORMATION","features":[165]},{"name":"PSS_AUXILIARY_PAGE_ENTRY","features":[1,165,20]},{"name":"PSS_CAPTURE_FLAGS","features":[165]},{"name":"PSS_CAPTURE_HANDLES","features":[165]},{"name":"PSS_CAPTURE_HANDLE_BASIC_INFORMATION","features":[165]},{"name":"PSS_CAPTURE_HANDLE_NAME_INFORMATION","features":[165]},{"name":"PSS_CAPTURE_HANDLE_TRACE","features":[165]},{"name":"PSS_CAPTURE_HANDLE_TYPE_SPECIFIC_INFORMATION","features":[165]},{"name":"PSS_CAPTURE_IPT_TRACE","features":[165]},{"name":"PSS_CAPTURE_NONE","features":[165]},{"name":"PSS_CAPTURE_RESERVED_00000002","features":[165]},{"name":"PSS_CAPTURE_RESERVED_00000400","features":[165]},{"name":"PSS_CAPTURE_RESERVED_00004000","features":[165]},{"name":"PSS_CAPTURE_THREADS","features":[165]},{"name":"PSS_CAPTURE_THREAD_CONTEXT","features":[165]},{"name":"PSS_CAPTURE_THREAD_CONTEXT_EXTENDED","features":[165]},{"name":"PSS_CAPTURE_VA_CLONE","features":[165]},{"name":"PSS_CAPTURE_VA_SPACE","features":[165]},{"name":"PSS_CAPTURE_VA_SPACE_SECTION_INFORMATION","features":[165]},{"name":"PSS_CREATE_BREAKAWAY","features":[165]},{"name":"PSS_CREATE_BREAKAWAY_OPTIONAL","features":[165]},{"name":"PSS_CREATE_FORCE_BREAKAWAY","features":[165]},{"name":"PSS_CREATE_MEASURE_PERFORMANCE","features":[165]},{"name":"PSS_CREATE_RELEASE_SECTION","features":[165]},{"name":"PSS_CREATE_USE_VM_ALLOCATIONS","features":[165]},{"name":"PSS_DUPLICATE_CLOSE_SOURCE","features":[165]},{"name":"PSS_DUPLICATE_FLAGS","features":[165]},{"name":"PSS_DUPLICATE_NONE","features":[165]},{"name":"PSS_HANDLE_ENTRY","features":[1,165]},{"name":"PSS_HANDLE_FLAGS","features":[165]},{"name":"PSS_HANDLE_HAVE_BASIC_INFORMATION","features":[165]},{"name":"PSS_HANDLE_HAVE_NAME","features":[165]},{"name":"PSS_HANDLE_HAVE_TYPE","features":[165]},{"name":"PSS_HANDLE_HAVE_TYPE_SPECIFIC_INFORMATION","features":[165]},{"name":"PSS_HANDLE_INFORMATION","features":[165]},{"name":"PSS_HANDLE_NONE","features":[165]},{"name":"PSS_HANDLE_TRACE_INFORMATION","features":[1,165]},{"name":"PSS_OBJECT_TYPE","features":[165]},{"name":"PSS_OBJECT_TYPE_EVENT","features":[165]},{"name":"PSS_OBJECT_TYPE_MUTANT","features":[165]},{"name":"PSS_OBJECT_TYPE_PROCESS","features":[165]},{"name":"PSS_OBJECT_TYPE_SECTION","features":[165]},{"name":"PSS_OBJECT_TYPE_SEMAPHORE","features":[165]},{"name":"PSS_OBJECT_TYPE_THREAD","features":[165]},{"name":"PSS_OBJECT_TYPE_UNKNOWN","features":[165]},{"name":"PSS_PERFORMANCE_COUNTERS","features":[165]},{"name":"PSS_PERF_RESOLUTION","features":[165]},{"name":"PSS_PROCESS_FLAGS","features":[165]},{"name":"PSS_PROCESS_FLAGS_FROZEN","features":[165]},{"name":"PSS_PROCESS_FLAGS_NONE","features":[165]},{"name":"PSS_PROCESS_FLAGS_PROTECTED","features":[165]},{"name":"PSS_PROCESS_FLAGS_RESERVED_03","features":[165]},{"name":"PSS_PROCESS_FLAGS_RESERVED_04","features":[165]},{"name":"PSS_PROCESS_FLAGS_WOW64","features":[165]},{"name":"PSS_PROCESS_INFORMATION","features":[1,165]},{"name":"PSS_QUERY_AUXILIARY_PAGES_INFORMATION","features":[165]},{"name":"PSS_QUERY_HANDLE_INFORMATION","features":[165]},{"name":"PSS_QUERY_HANDLE_TRACE_INFORMATION","features":[165]},{"name":"PSS_QUERY_INFORMATION_CLASS","features":[165]},{"name":"PSS_QUERY_PERFORMANCE_COUNTERS","features":[165]},{"name":"PSS_QUERY_PROCESS_INFORMATION","features":[165]},{"name":"PSS_QUERY_THREAD_INFORMATION","features":[165]},{"name":"PSS_QUERY_VA_CLONE_INFORMATION","features":[165]},{"name":"PSS_QUERY_VA_SPACE_INFORMATION","features":[165]},{"name":"PSS_THREAD_ENTRY","features":[1,30,165,7]},{"name":"PSS_THREAD_FLAGS","features":[165]},{"name":"PSS_THREAD_FLAGS_NONE","features":[165]},{"name":"PSS_THREAD_FLAGS_TERMINATED","features":[165]},{"name":"PSS_THREAD_INFORMATION","features":[165]},{"name":"PSS_VA_CLONE_INFORMATION","features":[1,165]},{"name":"PSS_VA_SPACE_ENTRY","features":[165]},{"name":"PSS_VA_SPACE_INFORMATION","features":[165]},{"name":"PSS_WALK_AUXILIARY_PAGES","features":[165]},{"name":"PSS_WALK_HANDLES","features":[165]},{"name":"PSS_WALK_INFORMATION_CLASS","features":[165]},{"name":"PSS_WALK_THREADS","features":[165]},{"name":"PSS_WALK_VA_SPACE","features":[165]},{"name":"PssCaptureSnapshot","features":[1,165]},{"name":"PssDuplicateSnapshot","features":[1,165]},{"name":"PssFreeSnapshot","features":[1,165]},{"name":"PssQuerySnapshot","features":[165]},{"name":"PssWalkMarkerCreate","features":[165]},{"name":"PssWalkMarkerFree","features":[165]},{"name":"PssWalkMarkerGetPosition","features":[165]},{"name":"PssWalkMarkerSeekToBeginning","features":[165]},{"name":"PssWalkMarkerSetPosition","features":[165]},{"name":"PssWalkSnapshot","features":[165]}],"558":[{"name":"CREATE_TOOLHELP_SNAPSHOT_FLAGS","features":[166]},{"name":"CreateToolhelp32Snapshot","features":[1,166]},{"name":"HEAPENTRY32","features":[1,166]},{"name":"HEAPENTRY32_FLAGS","features":[166]},{"name":"HEAPLIST32","features":[166]},{"name":"HF32_DEFAULT","features":[166]},{"name":"HF32_SHARED","features":[166]},{"name":"Heap32First","features":[1,166]},{"name":"Heap32ListFirst","features":[1,166]},{"name":"Heap32ListNext","features":[1,166]},{"name":"Heap32Next","features":[1,166]},{"name":"LF32_FIXED","features":[166]},{"name":"LF32_FREE","features":[166]},{"name":"LF32_MOVEABLE","features":[166]},{"name":"MAX_MODULE_NAME32","features":[166]},{"name":"MODULEENTRY32","features":[1,166]},{"name":"MODULEENTRY32W","features":[1,166]},{"name":"Module32First","features":[1,166]},{"name":"Module32FirstW","features":[1,166]},{"name":"Module32Next","features":[1,166]},{"name":"Module32NextW","features":[1,166]},{"name":"PROCESSENTRY32","features":[166]},{"name":"PROCESSENTRY32W","features":[166]},{"name":"Process32First","features":[1,166]},{"name":"Process32FirstW","features":[1,166]},{"name":"Process32Next","features":[1,166]},{"name":"Process32NextW","features":[1,166]},{"name":"TH32CS_INHERIT","features":[166]},{"name":"TH32CS_SNAPALL","features":[166]},{"name":"TH32CS_SNAPHEAPLIST","features":[166]},{"name":"TH32CS_SNAPMODULE","features":[166]},{"name":"TH32CS_SNAPMODULE32","features":[166]},{"name":"TH32CS_SNAPPROCESS","features":[166]},{"name":"TH32CS_SNAPTHREAD","features":[166]},{"name":"THREADENTRY32","features":[166]},{"name":"Thread32First","features":[1,166]},{"name":"Thread32Next","features":[1,166]},{"name":"Toolhelp32ReadProcessMemory","features":[1,166]}],"559":[{"name":"MSG_category_Devices","features":[167]},{"name":"MSG_category_Disk","features":[167]},{"name":"MSG_category_Network","features":[167]},{"name":"MSG_category_Printers","features":[167]},{"name":"MSG_category_Services","features":[167]},{"name":"MSG_category_Shell","features":[167]},{"name":"MSG_category_SystemEvent","features":[167]},{"name":"MSG_channel_Application","features":[167]},{"name":"MSG_channel_ProviderMetadata","features":[167]},{"name":"MSG_channel_Security","features":[167]},{"name":"MSG_channel_System","features":[167]},{"name":"MSG_channel_TraceClassic","features":[167]},{"name":"MSG_channel_TraceLogging","features":[167]},{"name":"MSG_keyword_AnyKeyword","features":[167]},{"name":"MSG_keyword_AuditFailure","features":[167]},{"name":"MSG_keyword_AuditSuccess","features":[167]},{"name":"MSG_keyword_Classic","features":[167]},{"name":"MSG_keyword_CorrelationHint","features":[167]},{"name":"MSG_keyword_ResponseTime","features":[167]},{"name":"MSG_keyword_SQM","features":[167]},{"name":"MSG_keyword_WDIDiag","features":[167]},{"name":"MSG_level_Critical","features":[167]},{"name":"MSG_level_Error","features":[167]},{"name":"MSG_level_Informational","features":[167]},{"name":"MSG_level_LogAlways","features":[167]},{"name":"MSG_level_Verbose","features":[167]},{"name":"MSG_level_Warning","features":[167]},{"name":"MSG_opcode_DCStart","features":[167]},{"name":"MSG_opcode_DCStop","features":[167]},{"name":"MSG_opcode_Extension","features":[167]},{"name":"MSG_opcode_Info","features":[167]},{"name":"MSG_opcode_Receive","features":[167]},{"name":"MSG_opcode_Reply","features":[167]},{"name":"MSG_opcode_Resume","features":[167]},{"name":"MSG_opcode_Send","features":[167]},{"name":"MSG_opcode_Start","features":[167]},{"name":"MSG_opcode_Stop","features":[167]},{"name":"MSG_opcode_Suspend","features":[167]},{"name":"MSG_task_None","features":[167]},{"name":"WINEVENT_CHANNEL_CLASSIC_TRACE","features":[167]},{"name":"WINEVENT_CHANNEL_GLOBAL_APPLICATION","features":[167]},{"name":"WINEVENT_CHANNEL_GLOBAL_SECURITY","features":[167]},{"name":"WINEVENT_CHANNEL_GLOBAL_SYSTEM","features":[167]},{"name":"WINEVENT_CHANNEL_PROVIDERMETADATA","features":[167]},{"name":"WINEVENT_CHANNEL_TRACELOGGING","features":[167]},{"name":"WINEVENT_KEYWORD_AUDIT_FAILURE","features":[167]},{"name":"WINEVENT_KEYWORD_AUDIT_SUCCESS","features":[167]},{"name":"WINEVENT_KEYWORD_CORRELATION_HINT","features":[167]},{"name":"WINEVENT_KEYWORD_EVENTLOG_CLASSIC","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_49","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_56","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_57","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_58","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_59","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_60","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_61","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_62","features":[167]},{"name":"WINEVENT_KEYWORD_RESERVED_63","features":[167]},{"name":"WINEVENT_KEYWORD_RESPONSE_TIME","features":[167]},{"name":"WINEVENT_KEYWORD_SQM","features":[167]},{"name":"WINEVENT_KEYWORD_WDI_DIAG","features":[167]},{"name":"WINEVENT_LEVEL_CRITICAL","features":[167]},{"name":"WINEVENT_LEVEL_ERROR","features":[167]},{"name":"WINEVENT_LEVEL_INFO","features":[167]},{"name":"WINEVENT_LEVEL_LOG_ALWAYS","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_10","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_11","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_12","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_13","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_14","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_15","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_6","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_7","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_8","features":[167]},{"name":"WINEVENT_LEVEL_RESERVED_9","features":[167]},{"name":"WINEVENT_LEVEL_VERBOSE","features":[167]},{"name":"WINEVENT_LEVEL_WARNING","features":[167]},{"name":"WINEVENT_OPCODE_DC_START","features":[167]},{"name":"WINEVENT_OPCODE_DC_STOP","features":[167]},{"name":"WINEVENT_OPCODE_EXTENSION","features":[167]},{"name":"WINEVENT_OPCODE_INFO","features":[167]},{"name":"WINEVENT_OPCODE_RECEIVE","features":[167]},{"name":"WINEVENT_OPCODE_REPLY","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_241","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_242","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_243","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_244","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_245","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_246","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_247","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_248","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_249","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_250","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_251","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_252","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_253","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_254","features":[167]},{"name":"WINEVENT_OPCODE_RESERVED_255","features":[167]},{"name":"WINEVENT_OPCODE_RESUME","features":[167]},{"name":"WINEVENT_OPCODE_SEND","features":[167]},{"name":"WINEVENT_OPCODE_START","features":[167]},{"name":"WINEVENT_OPCODE_STOP","features":[167]},{"name":"WINEVENT_OPCODE_SUSPEND","features":[167]},{"name":"WINEVENT_TASK_NONE","features":[167]},{"name":"WINEVT_KEYWORD_ANY","features":[167]}],"560":[{"name":"APPLICATIONTYPE","features":[168]},{"name":"AUTHENTICATION_LEVEL","features":[168]},{"name":"BOID","features":[168]},{"name":"CLSID_MSDtcTransaction","features":[168]},{"name":"CLSID_MSDtcTransactionManager","features":[168]},{"name":"CLUSTERRESOURCE_APPLICATIONTYPE","features":[168]},{"name":"DTCINITIATEDRECOVERYWORK","features":[168]},{"name":"DTCINITIATEDRECOVERYWORK_CHECKLUSTATUS","features":[168]},{"name":"DTCINITIATEDRECOVERYWORK_TMDOWN","features":[168]},{"name":"DTCINITIATEDRECOVERYWORK_TRANS","features":[168]},{"name":"DTCINSTALL_E_CLIENT_ALREADY_INSTALLED","features":[168]},{"name":"DTCINSTALL_E_SERVER_ALREADY_INSTALLED","features":[168]},{"name":"DTCLUCOMPARESTATE","features":[168]},{"name":"DTCLUCOMPARESTATESCONFIRMATION","features":[168]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_CONFIRM","features":[168]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_PROTOCOL","features":[168]},{"name":"DTCLUCOMPARESTATESERROR","features":[168]},{"name":"DTCLUCOMPARESTATESERROR_PROTOCOL","features":[168]},{"name":"DTCLUCOMPARESTATESRESPONSE","features":[168]},{"name":"DTCLUCOMPARESTATESRESPONSE_OK","features":[168]},{"name":"DTCLUCOMPARESTATESRESPONSE_PROTOCOL","features":[168]},{"name":"DTCLUCOMPARESTATE_COMMITTED","features":[168]},{"name":"DTCLUCOMPARESTATE_HEURISTICCOMMITTED","features":[168]},{"name":"DTCLUCOMPARESTATE_HEURISTICMIXED","features":[168]},{"name":"DTCLUCOMPARESTATE_HEURISTICRESET","features":[168]},{"name":"DTCLUCOMPARESTATE_INDOUBT","features":[168]},{"name":"DTCLUCOMPARESTATE_RESET","features":[168]},{"name":"DTCLUXLN","features":[168]},{"name":"DTCLUXLNCONFIRMATION","features":[168]},{"name":"DTCLUXLNCONFIRMATION_COLDWARMMISMATCH","features":[168]},{"name":"DTCLUXLNCONFIRMATION_CONFIRM","features":[168]},{"name":"DTCLUXLNCONFIRMATION_LOGNAMEMISMATCH","features":[168]},{"name":"DTCLUXLNCONFIRMATION_OBSOLETE","features":[168]},{"name":"DTCLUXLNERROR","features":[168]},{"name":"DTCLUXLNERROR_COLDWARMMISMATCH","features":[168]},{"name":"DTCLUXLNERROR_LOGNAMEMISMATCH","features":[168]},{"name":"DTCLUXLNERROR_PROTOCOL","features":[168]},{"name":"DTCLUXLNRESPONSE","features":[168]},{"name":"DTCLUXLNRESPONSE_COLDWARMMISMATCH","features":[168]},{"name":"DTCLUXLNRESPONSE_LOGNAMEMISMATCH","features":[168]},{"name":"DTCLUXLNRESPONSE_OK_SENDCONFIRMATION","features":[168]},{"name":"DTCLUXLNRESPONSE_OK_SENDOURXLNBACK","features":[168]},{"name":"DTCLUXLN_COLD","features":[168]},{"name":"DTCLUXLN_WARM","features":[168]},{"name":"DTC_GET_TRANSACTION_MANAGER","features":[168]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_A","features":[168]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_W","features":[168]},{"name":"DTC_INSTALL_CLIENT","features":[168]},{"name":"DTC_INSTALL_OVERWRITE_CLIENT","features":[168]},{"name":"DTC_INSTALL_OVERWRITE_SERVER","features":[168]},{"name":"DTC_STATUS_","features":[168]},{"name":"DTC_STATUS_CONTINUING","features":[168]},{"name":"DTC_STATUS_E_CANTCONTROL","features":[168]},{"name":"DTC_STATUS_FAILED","features":[168]},{"name":"DTC_STATUS_PAUSED","features":[168]},{"name":"DTC_STATUS_PAUSING","features":[168]},{"name":"DTC_STATUS_STARTED","features":[168]},{"name":"DTC_STATUS_STARTING","features":[168]},{"name":"DTC_STATUS_STOPPED","features":[168]},{"name":"DTC_STATUS_STOPPING","features":[168]},{"name":"DTC_STATUS_UNKNOWN","features":[168]},{"name":"DtcGetTransactionManager","features":[168]},{"name":"DtcGetTransactionManagerC","features":[168]},{"name":"DtcGetTransactionManagerExA","features":[168]},{"name":"DtcGetTransactionManagerExW","features":[168]},{"name":"IDtcLuConfigure","features":[168]},{"name":"IDtcLuRecovery","features":[168]},{"name":"IDtcLuRecoveryFactory","features":[168]},{"name":"IDtcLuRecoveryInitiatedByDtc","features":[168]},{"name":"IDtcLuRecoveryInitiatedByDtcStatusWork","features":[168]},{"name":"IDtcLuRecoveryInitiatedByDtcTransWork","features":[168]},{"name":"IDtcLuRecoveryInitiatedByLu","features":[168]},{"name":"IDtcLuRecoveryInitiatedByLuWork","features":[168]},{"name":"IDtcLuRmEnlistment","features":[168]},{"name":"IDtcLuRmEnlistmentFactory","features":[168]},{"name":"IDtcLuRmEnlistmentSink","features":[168]},{"name":"IDtcLuSubordinateDtc","features":[168]},{"name":"IDtcLuSubordinateDtcFactory","features":[168]},{"name":"IDtcLuSubordinateDtcSink","features":[168]},{"name":"IDtcNetworkAccessConfig","features":[168]},{"name":"IDtcNetworkAccessConfig2","features":[168]},{"name":"IDtcNetworkAccessConfig3","features":[168]},{"name":"IDtcToXaHelper","features":[168]},{"name":"IDtcToXaHelperFactory","features":[168]},{"name":"IDtcToXaHelperSinglePipe","features":[168]},{"name":"IDtcToXaMapper","features":[168]},{"name":"IGetDispenser","features":[168]},{"name":"IKernelTransaction","features":[168]},{"name":"ILastResourceManager","features":[168]},{"name":"INCOMING_AUTHENTICATION_REQUIRED","features":[168]},{"name":"IPrepareInfo","features":[168]},{"name":"IPrepareInfo2","features":[168]},{"name":"IRMHelper","features":[168]},{"name":"IResourceManager","features":[168]},{"name":"IResourceManager2","features":[168]},{"name":"IResourceManagerFactory","features":[168]},{"name":"IResourceManagerFactory2","features":[168]},{"name":"IResourceManagerRejoinable","features":[168]},{"name":"IResourceManagerSink","features":[168]},{"name":"ISOFLAG","features":[168]},{"name":"ISOFLAG_OPTIMISTIC","features":[168]},{"name":"ISOFLAG_READONLY","features":[168]},{"name":"ISOFLAG_RETAIN_ABORT","features":[168]},{"name":"ISOFLAG_RETAIN_ABORT_DC","features":[168]},{"name":"ISOFLAG_RETAIN_ABORT_NO","features":[168]},{"name":"ISOFLAG_RETAIN_BOTH","features":[168]},{"name":"ISOFLAG_RETAIN_COMMIT","features":[168]},{"name":"ISOFLAG_RETAIN_COMMIT_DC","features":[168]},{"name":"ISOFLAG_RETAIN_COMMIT_NO","features":[168]},{"name":"ISOFLAG_RETAIN_DONTCARE","features":[168]},{"name":"ISOFLAG_RETAIN_NONE","features":[168]},{"name":"ISOLATIONLEVEL","features":[168]},{"name":"ISOLATIONLEVEL_BROWSE","features":[168]},{"name":"ISOLATIONLEVEL_CHAOS","features":[168]},{"name":"ISOLATIONLEVEL_CURSORSTABILITY","features":[168]},{"name":"ISOLATIONLEVEL_ISOLATED","features":[168]},{"name":"ISOLATIONLEVEL_READCOMMITTED","features":[168]},{"name":"ISOLATIONLEVEL_READUNCOMMITTED","features":[168]},{"name":"ISOLATIONLEVEL_REPEATABLEREAD","features":[168]},{"name":"ISOLATIONLEVEL_SERIALIZABLE","features":[168]},{"name":"ISOLATIONLEVEL_UNSPECIFIED","features":[168]},{"name":"ITipHelper","features":[168]},{"name":"ITipPullSink","features":[168]},{"name":"ITipTransaction","features":[168]},{"name":"ITmNodeName","features":[168]},{"name":"ITransaction","features":[168]},{"name":"ITransaction2","features":[168]},{"name":"ITransactionCloner","features":[168]},{"name":"ITransactionDispenser","features":[168]},{"name":"ITransactionEnlistmentAsync","features":[168]},{"name":"ITransactionExport","features":[168]},{"name":"ITransactionExportFactory","features":[168]},{"name":"ITransactionImport","features":[168]},{"name":"ITransactionImportWhereabouts","features":[168]},{"name":"ITransactionLastEnlistmentAsync","features":[168]},{"name":"ITransactionLastResourceAsync","features":[168]},{"name":"ITransactionOptions","features":[168]},{"name":"ITransactionOutcomeEvents","features":[168]},{"name":"ITransactionPhase0EnlistmentAsync","features":[168]},{"name":"ITransactionPhase0Factory","features":[168]},{"name":"ITransactionPhase0NotifyAsync","features":[168]},{"name":"ITransactionReceiver","features":[168]},{"name":"ITransactionReceiverFactory","features":[168]},{"name":"ITransactionResource","features":[168]},{"name":"ITransactionResourceAsync","features":[168]},{"name":"ITransactionTransmitter","features":[168]},{"name":"ITransactionTransmitterFactory","features":[168]},{"name":"ITransactionVoterBallotAsync2","features":[168]},{"name":"ITransactionVoterFactory2","features":[168]},{"name":"ITransactionVoterNotifyAsync2","features":[168]},{"name":"IXAConfig","features":[168]},{"name":"IXAObtainRMInfo","features":[168]},{"name":"IXATransLookup","features":[168]},{"name":"IXATransLookup2","features":[168]},{"name":"LOCAL_APPLICATIONTYPE","features":[168]},{"name":"MAXBQUALSIZE","features":[168]},{"name":"MAXGTRIDSIZE","features":[168]},{"name":"MAXINFOSIZE","features":[168]},{"name":"MAX_TRAN_DESC","features":[168]},{"name":"MUTUAL_AUTHENTICATION_REQUIRED","features":[168]},{"name":"NO_AUTHENTICATION_REQUIRED","features":[168]},{"name":"OLE_TM_CONFIG_PARAMS_V1","features":[168]},{"name":"OLE_TM_CONFIG_PARAMS_V2","features":[168]},{"name":"OLE_TM_CONFIG_VERSION_1","features":[168]},{"name":"OLE_TM_CONFIG_VERSION_2","features":[168]},{"name":"OLE_TM_FLAG_INTERNAL_TO_TM","features":[168]},{"name":"OLE_TM_FLAG_NOAGILERECOVERY","features":[168]},{"name":"OLE_TM_FLAG_NODEMANDSTART","features":[168]},{"name":"OLE_TM_FLAG_NONE","features":[168]},{"name":"OLE_TM_FLAG_QUERY_SERVICE_LOCKSTATUS","features":[168]},{"name":"PROXY_CONFIG_PARAMS","features":[168]},{"name":"RMNAMESZ","features":[168]},{"name":"TMASYNC","features":[168]},{"name":"TMENDRSCAN","features":[168]},{"name":"TMER_INVAL","features":[168]},{"name":"TMER_PROTO","features":[168]},{"name":"TMER_TMERR","features":[168]},{"name":"TMFAIL","features":[168]},{"name":"TMJOIN","features":[168]},{"name":"TMMIGRATE","features":[168]},{"name":"TMMULTIPLE","features":[168]},{"name":"TMNOFLAGS","features":[168]},{"name":"TMNOMIGRATE","features":[168]},{"name":"TMNOWAIT","features":[168]},{"name":"TMONEPHASE","features":[168]},{"name":"TMREGISTER","features":[168]},{"name":"TMRESUME","features":[168]},{"name":"TMSTARTRSCAN","features":[168]},{"name":"TMSUCCESS","features":[168]},{"name":"TMSUSPEND","features":[168]},{"name":"TMUSEASYNC","features":[168]},{"name":"TM_JOIN","features":[168]},{"name":"TM_OK","features":[168]},{"name":"TM_RESUME","features":[168]},{"name":"TX_MISC_CONSTANTS","features":[168]},{"name":"XACTCONST","features":[168]},{"name":"XACTCONST_TIMEOUTINFINITE","features":[168]},{"name":"XACTHEURISTIC","features":[168]},{"name":"XACTHEURISTIC_ABORT","features":[168]},{"name":"XACTHEURISTIC_COMMIT","features":[168]},{"name":"XACTHEURISTIC_DAMAGE","features":[168]},{"name":"XACTHEURISTIC_DANGER","features":[168]},{"name":"XACTOPT","features":[168]},{"name":"XACTRM","features":[168]},{"name":"XACTRM_NOREADONLYPREPARES","features":[168]},{"name":"XACTRM_OPTIMISTICLASTWINS","features":[168]},{"name":"XACTSTAT","features":[168]},{"name":"XACTSTATS","features":[1,168]},{"name":"XACTSTAT_ABORTED","features":[168]},{"name":"XACTSTAT_ABORTING","features":[168]},{"name":"XACTSTAT_ALL","features":[168]},{"name":"XACTSTAT_CLOSED","features":[168]},{"name":"XACTSTAT_COMMITRETAINING","features":[168]},{"name":"XACTSTAT_COMMITTED","features":[168]},{"name":"XACTSTAT_COMMITTING","features":[168]},{"name":"XACTSTAT_FORCED_ABORT","features":[168]},{"name":"XACTSTAT_FORCED_COMMIT","features":[168]},{"name":"XACTSTAT_HEURISTIC_ABORT","features":[168]},{"name":"XACTSTAT_HEURISTIC_COMMIT","features":[168]},{"name":"XACTSTAT_HEURISTIC_DAMAGE","features":[168]},{"name":"XACTSTAT_HEURISTIC_DANGER","features":[168]},{"name":"XACTSTAT_INDOUBT","features":[168]},{"name":"XACTSTAT_NONE","features":[168]},{"name":"XACTSTAT_NOTPREPARED","features":[168]},{"name":"XACTSTAT_OPEN","features":[168]},{"name":"XACTSTAT_OPENNORMAL","features":[168]},{"name":"XACTSTAT_OPENREFUSED","features":[168]},{"name":"XACTSTAT_PREPARED","features":[168]},{"name":"XACTSTAT_PREPARERETAINED","features":[168]},{"name":"XACTSTAT_PREPARERETAINING","features":[168]},{"name":"XACTSTAT_PREPARING","features":[168]},{"name":"XACTTC","features":[168]},{"name":"XACTTC_ASYNC","features":[168]},{"name":"XACTTC_ASYNC_PHASEONE","features":[168]},{"name":"XACTTC_NONE","features":[168]},{"name":"XACTTC_SYNC","features":[168]},{"name":"XACTTC_SYNC_PHASEONE","features":[168]},{"name":"XACTTC_SYNC_PHASETWO","features":[168]},{"name":"XACTTRANSINFO","features":[168]},{"name":"XACT_DTC_CONSTANTS","features":[168]},{"name":"XACT_E_CONNECTION_REQUEST_DENIED","features":[168]},{"name":"XACT_E_DUPLICATE_GUID","features":[168]},{"name":"XACT_E_DUPLICATE_LU","features":[168]},{"name":"XACT_E_DUPLICATE_TRANSID","features":[168]},{"name":"XACT_E_LRMRECOVERYALREADYDONE","features":[168]},{"name":"XACT_E_LU_BUSY","features":[168]},{"name":"XACT_E_LU_DOWN","features":[168]},{"name":"XACT_E_LU_NOT_CONNECTED","features":[168]},{"name":"XACT_E_LU_NOT_FOUND","features":[168]},{"name":"XACT_E_LU_NO_RECOVERY_PROCESS","features":[168]},{"name":"XACT_E_LU_RECOVERING","features":[168]},{"name":"XACT_E_LU_RECOVERY_MISMATCH","features":[168]},{"name":"XACT_E_NOLASTRESOURCEINTERFACE","features":[168]},{"name":"XACT_E_NOTSINGLEPHASE","features":[168]},{"name":"XACT_E_PROTOCOL","features":[168]},{"name":"XACT_E_RECOVERYALREADYDONE","features":[168]},{"name":"XACT_E_RECOVERY_FAILED","features":[168]},{"name":"XACT_E_RM_FAILURE","features":[168]},{"name":"XACT_E_RM_UNAVAILABLE","features":[168]},{"name":"XACT_E_TOOMANY_ENLISTMENTS","features":[168]},{"name":"XACT_OK_NONOTIFY","features":[168]},{"name":"XACT_S_NONOTIFY","features":[168]},{"name":"XAER_ASYNC","features":[168]},{"name":"XAER_DUPID","features":[168]},{"name":"XAER_INVAL","features":[168]},{"name":"XAER_NOTA","features":[168]},{"name":"XAER_OUTSIDE","features":[168]},{"name":"XAER_PROTO","features":[168]},{"name":"XAER_RMERR","features":[168]},{"name":"XAER_RMFAIL","features":[168]},{"name":"XA_CLOSE_EPT","features":[168]},{"name":"XA_COMMIT_EPT","features":[168]},{"name":"XA_COMPLETE_EPT","features":[168]},{"name":"XA_END_EPT","features":[168]},{"name":"XA_FMTID_DTC","features":[168]},{"name":"XA_FMTID_DTC_VER1","features":[168]},{"name":"XA_FORGET_EPT","features":[168]},{"name":"XA_HEURCOM","features":[168]},{"name":"XA_HEURHAZ","features":[168]},{"name":"XA_HEURMIX","features":[168]},{"name":"XA_HEURRB","features":[168]},{"name":"XA_NOMIGRATE","features":[168]},{"name":"XA_OK","features":[168]},{"name":"XA_OPEN_EPT","features":[168]},{"name":"XA_PREPARE_EPT","features":[168]},{"name":"XA_RBBASE","features":[168]},{"name":"XA_RBCOMMFAIL","features":[168]},{"name":"XA_RBDEADLOCK","features":[168]},{"name":"XA_RBEND","features":[168]},{"name":"XA_RBINTEGRITY","features":[168]},{"name":"XA_RBOTHER","features":[168]},{"name":"XA_RBPROTO","features":[168]},{"name":"XA_RBROLLBACK","features":[168]},{"name":"XA_RBTIMEOUT","features":[168]},{"name":"XA_RBTRANSIENT","features":[168]},{"name":"XA_RDONLY","features":[168]},{"name":"XA_RECOVER_EPT","features":[168]},{"name":"XA_RETRY","features":[168]},{"name":"XA_ROLLBACK_EPT","features":[168]},{"name":"XA_START_EPT","features":[168]},{"name":"XA_SWITCH_F_DTC","features":[168]},{"name":"XID","features":[168]},{"name":"XIDDATASIZE","features":[168]},{"name":"dwUSER_MS_SQLSERVER","features":[168]},{"name":"xa_switch_t","features":[168]}],"561":[{"name":"CallEnclave","features":[1,169]},{"name":"CreateEnclave","features":[1,169]},{"name":"CreateEnvironmentBlock","features":[1,169]},{"name":"DeleteEnclave","features":[1,169]},{"name":"DestroyEnvironmentBlock","features":[1,169]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ACTIVE","features":[169]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ENABLED","features":[169]},{"name":"ENCLAVE_FLAG_FULL_DEBUG_ENABLED","features":[169]},{"name":"ENCLAVE_IDENTITY","features":[169]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_EXACT_CODE","features":[169]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_INVALID","features":[169]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_AUTHOR","features":[169]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_FAMILY","features":[169]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_IMAGE","features":[169]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_PRIMARY_CODE","features":[169]},{"name":"ENCLAVE_INFORMATION","features":[169]},{"name":"ENCLAVE_REPORT_DATA_LENGTH","features":[169]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_DYNAMIC_DEBUG","features":[169]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_FULL_DEBUG","features":[169]},{"name":"ENCLAVE_SEALING_IDENTITY_POLICY","features":[169]},{"name":"ENCLAVE_UNSEAL_FLAG_STALE_KEY","features":[169]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_DEBUG_KEY","features":[169]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_FAMILY_ID","features":[169]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_IMAGE_ID","features":[169]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_MEASUREMENT","features":[169]},{"name":"ENCLAVE_VBS_BASIC_KEY_REQUEST","features":[169]},{"name":"EnclaveGetAttestationReport","features":[169]},{"name":"EnclaveGetEnclaveInformation","features":[169]},{"name":"EnclaveSealData","features":[169]},{"name":"EnclaveUnsealData","features":[169]},{"name":"EnclaveVerifyAttestationReport","features":[169]},{"name":"ExpandEnvironmentStringsA","features":[169]},{"name":"ExpandEnvironmentStringsForUserA","features":[1,169]},{"name":"ExpandEnvironmentStringsForUserW","features":[1,169]},{"name":"ExpandEnvironmentStringsW","features":[169]},{"name":"FreeEnvironmentStringsA","features":[1,169]},{"name":"FreeEnvironmentStringsW","features":[1,169]},{"name":"GetCommandLineA","features":[169]},{"name":"GetCommandLineW","features":[169]},{"name":"GetCurrentDirectoryA","features":[169]},{"name":"GetCurrentDirectoryW","features":[169]},{"name":"GetEnvironmentStrings","features":[169]},{"name":"GetEnvironmentStringsW","features":[169]},{"name":"GetEnvironmentVariableA","features":[169]},{"name":"GetEnvironmentVariableW","features":[169]},{"name":"InitializeEnclave","features":[1,169]},{"name":"IsEnclaveTypeSupported","features":[1,169]},{"name":"LoadEnclaveData","features":[1,169]},{"name":"LoadEnclaveImageA","features":[1,169]},{"name":"LoadEnclaveImageW","features":[1,169]},{"name":"NeedCurrentDirectoryForExePathA","features":[1,169]},{"name":"NeedCurrentDirectoryForExePathW","features":[1,169]},{"name":"SetCurrentDirectoryA","features":[1,169]},{"name":"SetCurrentDirectoryW","features":[1,169]},{"name":"SetEnvironmentStringsW","features":[1,169]},{"name":"SetEnvironmentVariableA","features":[1,169]},{"name":"SetEnvironmentVariableW","features":[1,169]},{"name":"TerminateEnclave","features":[1,169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_COMMIT_PAGES","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_DECOMMIT_PAGES","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_KEY","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_RANDOM_DATA","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_REPORT","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GET_ENCLAVE_INFORMATION","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_PROTECT_PAGES","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_ENCLAVE","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[169]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_VERIFY_REPORT","features":[169]},{"name":"VBS_BASIC_ENCLAVE_EXCEPTION_AMD64","features":[169]},{"name":"VBS_BASIC_ENCLAVE_SYSCALL_PAGE","features":[169]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR32","features":[169]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR64","features":[169]},{"name":"VBS_ENCLAVE_REPORT","features":[169]},{"name":"VBS_ENCLAVE_REPORT_MODULE","features":[169]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER","features":[169]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER_VERSION_CURRENT","features":[169]},{"name":"VBS_ENCLAVE_REPORT_SIGNATURE_SCHEME_SHA256_RSA_PSS_SHA256","features":[169]},{"name":"VBS_ENCLAVE_REPORT_VARDATA_HEADER","features":[169]},{"name":"VBS_ENCLAVE_REPORT_VERSION_CURRENT","features":[169]},{"name":"VBS_ENCLAVE_VARDATA_INVALID","features":[169]},{"name":"VBS_ENCLAVE_VARDATA_MODULE","features":[169]}],"562":[{"name":"APPCRASH_EVENT","features":[170]},{"name":"AddERExcludedApplicationA","features":[1,170]},{"name":"AddERExcludedApplicationW","features":[1,170]},{"name":"EFaultRepRetVal","features":[170]},{"name":"E_STORE_INVALID","features":[170]},{"name":"E_STORE_MACHINE_ARCHIVE","features":[170]},{"name":"E_STORE_MACHINE_QUEUE","features":[170]},{"name":"E_STORE_USER_ARCHIVE","features":[170]},{"name":"E_STORE_USER_QUEUE","features":[170]},{"name":"HREPORT","features":[170]},{"name":"HREPORTSTORE","features":[170]},{"name":"PACKAGED_APPCRASH_EVENT","features":[170]},{"name":"PFN_WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[1,30,170,7]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT","features":[1,30,170,7]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE","features":[1,30,170,7]},{"name":"REPORT_STORE_TYPES","features":[170]},{"name":"ReportFault","features":[1,30,170,7]},{"name":"WER_CONSENT","features":[170]},{"name":"WER_DUMP_AUXILIARY","features":[170]},{"name":"WER_DUMP_CUSTOM_OPTIONS","features":[1,170]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V2","features":[1,170]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V3","features":[1,170]},{"name":"WER_DUMP_MASK_START","features":[170]},{"name":"WER_DUMP_NOHEAP_ONQUEUE","features":[170]},{"name":"WER_DUMP_TYPE","features":[170]},{"name":"WER_EXCEPTION_INFORMATION","features":[1,30,170,7]},{"name":"WER_FAULT_REPORTING","features":[170]},{"name":"WER_FAULT_REPORTING_ALWAYS_SHOW_UI","features":[170]},{"name":"WER_FAULT_REPORTING_CRITICAL","features":[170]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_CRASH","features":[170]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_HANG","features":[170]},{"name":"WER_FAULT_REPORTING_DURABLE","features":[170]},{"name":"WER_FAULT_REPORTING_FLAG_DISABLE_THREAD_SUSPENSION","features":[170]},{"name":"WER_FAULT_REPORTING_FLAG_NOHEAP","features":[170]},{"name":"WER_FAULT_REPORTING_FLAG_NO_HEAP_ON_QUEUE","features":[170]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE","features":[170]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE_UPLOAD","features":[170]},{"name":"WER_FAULT_REPORTING_NO_UI","features":[170]},{"name":"WER_FILE","features":[170]},{"name":"WER_FILE_ANONYMOUS_DATA","features":[170]},{"name":"WER_FILE_COMPRESSED","features":[170]},{"name":"WER_FILE_DELETE_WHEN_DONE","features":[170]},{"name":"WER_FILE_TYPE","features":[170]},{"name":"WER_MAX_APPLICATION_NAME_LENGTH","features":[170]},{"name":"WER_MAX_BUCKET_ID_STRING_LENGTH","features":[170]},{"name":"WER_MAX_DESCRIPTION_LENGTH","features":[170]},{"name":"WER_MAX_EVENT_NAME_LENGTH","features":[170]},{"name":"WER_MAX_FRIENDLY_EVENT_NAME_LENGTH","features":[170]},{"name":"WER_MAX_LOCAL_DUMP_SUBPATH_LENGTH","features":[170]},{"name":"WER_MAX_PARAM_COUNT","features":[170]},{"name":"WER_MAX_PARAM_LENGTH","features":[170]},{"name":"WER_MAX_PREFERRED_MODULES","features":[170]},{"name":"WER_MAX_PREFERRED_MODULES_BUFFER","features":[170]},{"name":"WER_MAX_REGISTERED_DUMPCOLLECTION","features":[170]},{"name":"WER_MAX_REGISTERED_ENTRIES","features":[170]},{"name":"WER_MAX_REGISTERED_METADATA","features":[170]},{"name":"WER_MAX_REGISTERED_RUNTIME_EXCEPTION_MODULES","features":[170]},{"name":"WER_MAX_SIGNATURE_NAME_LENGTH","features":[170]},{"name":"WER_MAX_TOTAL_PARAM_LENGTH","features":[170]},{"name":"WER_METADATA_KEY_MAX_LENGTH","features":[170]},{"name":"WER_METADATA_VALUE_MAX_LENGTH","features":[170]},{"name":"WER_P0","features":[170]},{"name":"WER_P1","features":[170]},{"name":"WER_P2","features":[170]},{"name":"WER_P3","features":[170]},{"name":"WER_P4","features":[170]},{"name":"WER_P5","features":[170]},{"name":"WER_P6","features":[170]},{"name":"WER_P7","features":[170]},{"name":"WER_P8","features":[170]},{"name":"WER_P9","features":[170]},{"name":"WER_REGISTER_FILE_TYPE","features":[170]},{"name":"WER_REPORT_INFORMATION","features":[1,170]},{"name":"WER_REPORT_INFORMATION_V3","features":[1,170]},{"name":"WER_REPORT_INFORMATION_V4","features":[1,170]},{"name":"WER_REPORT_INFORMATION_V5","features":[1,170]},{"name":"WER_REPORT_METADATA_V1","features":[1,170]},{"name":"WER_REPORT_METADATA_V2","features":[1,170]},{"name":"WER_REPORT_METADATA_V3","features":[1,170]},{"name":"WER_REPORT_PARAMETER","features":[170]},{"name":"WER_REPORT_SIGNATURE","features":[170]},{"name":"WER_REPORT_TYPE","features":[170]},{"name":"WER_REPORT_UI","features":[170]},{"name":"WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[170]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_FUNCTION","features":[170]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE_FUNCTION","features":[170]},{"name":"WER_RUNTIME_EXCEPTION_INFORMATION","features":[1,30,170,7]},{"name":"WER_SUBMIT_ADD_REGISTERED_DATA","features":[170]},{"name":"WER_SUBMIT_ARCHIVE_PARAMETERS_ONLY","features":[170]},{"name":"WER_SUBMIT_BYPASS_DATA_THROTTLING","features":[170]},{"name":"WER_SUBMIT_BYPASS_NETWORK_COST_THROTTLING","features":[170]},{"name":"WER_SUBMIT_BYPASS_POWER_THROTTLING","features":[170]},{"name":"WER_SUBMIT_FLAGS","features":[170]},{"name":"WER_SUBMIT_HONOR_RECOVERY","features":[170]},{"name":"WER_SUBMIT_HONOR_RESTART","features":[170]},{"name":"WER_SUBMIT_NO_ARCHIVE","features":[170]},{"name":"WER_SUBMIT_NO_CLOSE_UI","features":[170]},{"name":"WER_SUBMIT_NO_QUEUE","features":[170]},{"name":"WER_SUBMIT_OUTOFPROCESS","features":[170]},{"name":"WER_SUBMIT_OUTOFPROCESS_ASYNC","features":[170]},{"name":"WER_SUBMIT_QUEUE","features":[170]},{"name":"WER_SUBMIT_REPORT_MACHINE_ID","features":[170]},{"name":"WER_SUBMIT_RESULT","features":[170]},{"name":"WER_SUBMIT_SHOW_DEBUG","features":[170]},{"name":"WER_SUBMIT_START_MINIMIZED","features":[170]},{"name":"WerAddExcludedApplication","features":[1,170]},{"name":"WerConsentAlwaysPrompt","features":[170]},{"name":"WerConsentApproved","features":[170]},{"name":"WerConsentDenied","features":[170]},{"name":"WerConsentMax","features":[170]},{"name":"WerConsentNotAsked","features":[170]},{"name":"WerCustomAction","features":[170]},{"name":"WerDisabled","features":[170]},{"name":"WerDisabledQueue","features":[170]},{"name":"WerDumpTypeHeapDump","features":[170]},{"name":"WerDumpTypeMax","features":[170]},{"name":"WerDumpTypeMicroDump","features":[170]},{"name":"WerDumpTypeMiniDump","features":[170]},{"name":"WerDumpTypeNone","features":[170]},{"name":"WerDumpTypeTriageDump","features":[170]},{"name":"WerFileTypeAuxiliaryDump","features":[170]},{"name":"WerFileTypeCustomDump","features":[170]},{"name":"WerFileTypeEtlTrace","features":[170]},{"name":"WerFileTypeHeapdump","features":[170]},{"name":"WerFileTypeMax","features":[170]},{"name":"WerFileTypeMicrodump","features":[170]},{"name":"WerFileTypeMinidump","features":[170]},{"name":"WerFileTypeOther","features":[170]},{"name":"WerFileTypeTriagedump","features":[170]},{"name":"WerFileTypeUserDocument","features":[170]},{"name":"WerFreeString","features":[170]},{"name":"WerGetFlags","features":[1,170]},{"name":"WerRegFileTypeMax","features":[170]},{"name":"WerRegFileTypeOther","features":[170]},{"name":"WerRegFileTypeUserDocument","features":[170]},{"name":"WerRegisterAdditionalProcess","features":[170]},{"name":"WerRegisterAppLocalDump","features":[170]},{"name":"WerRegisterCustomMetadata","features":[170]},{"name":"WerRegisterExcludedMemoryBlock","features":[170]},{"name":"WerRegisterFile","features":[170]},{"name":"WerRegisterMemoryBlock","features":[170]},{"name":"WerRegisterRuntimeExceptionModule","features":[170]},{"name":"WerRemoveExcludedApplication","features":[1,170]},{"name":"WerReportAddDump","features":[1,30,170,7]},{"name":"WerReportAddFile","features":[170]},{"name":"WerReportApplicationCrash","features":[170]},{"name":"WerReportApplicationHang","features":[170]},{"name":"WerReportAsync","features":[170]},{"name":"WerReportCancelled","features":[170]},{"name":"WerReportCloseHandle","features":[170]},{"name":"WerReportCreate","features":[1,170]},{"name":"WerReportCritical","features":[170]},{"name":"WerReportDebug","features":[170]},{"name":"WerReportFailed","features":[170]},{"name":"WerReportHang","features":[1,170]},{"name":"WerReportInvalid","features":[170]},{"name":"WerReportKernel","features":[170]},{"name":"WerReportNonCritical","features":[170]},{"name":"WerReportQueued","features":[170]},{"name":"WerReportSetParameter","features":[170]},{"name":"WerReportSetUIOption","features":[170]},{"name":"WerReportSubmit","features":[170]},{"name":"WerReportUploaded","features":[170]},{"name":"WerReportUploadedCab","features":[170]},{"name":"WerSetFlags","features":[170]},{"name":"WerStorageLocationNotFound","features":[170]},{"name":"WerStoreClose","features":[170]},{"name":"WerStoreGetFirstReportKey","features":[170]},{"name":"WerStoreGetNextReportKey","features":[170]},{"name":"WerStoreGetReportCount","features":[170]},{"name":"WerStoreGetSizeOnDisk","features":[170]},{"name":"WerStoreOpen","features":[170]},{"name":"WerStorePurge","features":[170]},{"name":"WerStoreQueryReportMetadataV1","features":[1,170]},{"name":"WerStoreQueryReportMetadataV2","features":[1,170]},{"name":"WerStoreQueryReportMetadataV3","features":[1,170]},{"name":"WerStoreUploadReport","features":[170]},{"name":"WerSubmitResultMax","features":[170]},{"name":"WerThrottled","features":[170]},{"name":"WerUIAdditionalDataDlgHeader","features":[170]},{"name":"WerUICloseDlgBody","features":[170]},{"name":"WerUICloseDlgButtonText","features":[170]},{"name":"WerUICloseDlgHeader","features":[170]},{"name":"WerUICloseText","features":[170]},{"name":"WerUIConsentDlgBody","features":[170]},{"name":"WerUIConsentDlgHeader","features":[170]},{"name":"WerUIIconFilePath","features":[170]},{"name":"WerUIMax","features":[170]},{"name":"WerUIOfflineSolutionCheckText","features":[170]},{"name":"WerUIOnlineSolutionCheckText","features":[170]},{"name":"WerUnregisterAdditionalProcess","features":[170]},{"name":"WerUnregisterAppLocalDump","features":[170]},{"name":"WerUnregisterCustomMetadata","features":[170]},{"name":"WerUnregisterExcludedMemoryBlock","features":[170]},{"name":"WerUnregisterFile","features":[170]},{"name":"WerUnregisterMemoryBlock","features":[170]},{"name":"WerUnregisterRuntimeExceptionModule","features":[170]},{"name":"frrvErr","features":[170]},{"name":"frrvErrAnotherInstance","features":[170]},{"name":"frrvErrDoubleFault","features":[170]},{"name":"frrvErrNoDW","features":[170]},{"name":"frrvErrNoMemory","features":[170]},{"name":"frrvErrTimeout","features":[170]},{"name":"frrvLaunchDebugger","features":[170]},{"name":"frrvOk","features":[170]},{"name":"frrvOkHeadless","features":[170]},{"name":"frrvOkManifest","features":[170]},{"name":"frrvOkQueued","features":[170]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONA","features":[170]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONW","features":[170]},{"name":"pfn_REPORTFAULT","features":[1,30,170,7]}],"563":[{"name":"EC_CREATE_NEW","features":[171]},{"name":"EC_OPEN_ALWAYS","features":[171]},{"name":"EC_OPEN_EXISTING","features":[171]},{"name":"EC_READ_ACCESS","features":[171]},{"name":"EC_SUBSCRIPTION_CONFIGURATION_MODE","features":[171]},{"name":"EC_SUBSCRIPTION_CONTENT_FORMAT","features":[171]},{"name":"EC_SUBSCRIPTION_CREDENTIALS_TYPE","features":[171]},{"name":"EC_SUBSCRIPTION_DELIVERY_MODE","features":[171]},{"name":"EC_SUBSCRIPTION_PROPERTY_ID","features":[171]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_ACTIVE_STATUS","features":[171]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_INFO_ID","features":[171]},{"name":"EC_SUBSCRIPTION_TYPE","features":[171]},{"name":"EC_VARIANT","features":[1,171]},{"name":"EC_VARIANT_TYPE","features":[171]},{"name":"EC_VARIANT_TYPE_ARRAY","features":[171]},{"name":"EC_VARIANT_TYPE_MASK","features":[171]},{"name":"EC_WRITE_ACCESS","features":[171]},{"name":"EcClose","features":[1,171]},{"name":"EcConfigurationModeCustom","features":[171]},{"name":"EcConfigurationModeMinBandwidth","features":[171]},{"name":"EcConfigurationModeMinLatency","features":[171]},{"name":"EcConfigurationModeNormal","features":[171]},{"name":"EcContentFormatEvents","features":[171]},{"name":"EcContentFormatRenderedText","features":[171]},{"name":"EcDeleteSubscription","features":[1,171]},{"name":"EcDeliveryModePull","features":[171]},{"name":"EcDeliveryModePush","features":[171]},{"name":"EcEnumNextSubscription","features":[1,171]},{"name":"EcGetObjectArrayProperty","features":[1,171]},{"name":"EcGetObjectArraySize","features":[1,171]},{"name":"EcGetSubscriptionProperty","features":[1,171]},{"name":"EcGetSubscriptionRunTimeStatus","features":[1,171]},{"name":"EcInsertObjectArrayElement","features":[1,171]},{"name":"EcOpenSubscription","features":[171]},{"name":"EcOpenSubscriptionEnum","features":[171]},{"name":"EcRemoveObjectArrayElement","features":[1,171]},{"name":"EcRetrySubscription","features":[1,171]},{"name":"EcRuntimeStatusActiveStatusActive","features":[171]},{"name":"EcRuntimeStatusActiveStatusDisabled","features":[171]},{"name":"EcRuntimeStatusActiveStatusInactive","features":[171]},{"name":"EcRuntimeStatusActiveStatusTrying","features":[171]},{"name":"EcSaveSubscription","features":[1,171]},{"name":"EcSetObjectArrayProperty","features":[1,171]},{"name":"EcSetSubscriptionProperty","features":[1,171]},{"name":"EcSubscriptionAllowedIssuerCAs","features":[171]},{"name":"EcSubscriptionAllowedSourceDomainComputers","features":[171]},{"name":"EcSubscriptionAllowedSubjects","features":[171]},{"name":"EcSubscriptionCommonPassword","features":[171]},{"name":"EcSubscriptionCommonUserName","features":[171]},{"name":"EcSubscriptionConfigurationMode","features":[171]},{"name":"EcSubscriptionContentFormat","features":[171]},{"name":"EcSubscriptionCredBasic","features":[171]},{"name":"EcSubscriptionCredDefault","features":[171]},{"name":"EcSubscriptionCredDigest","features":[171]},{"name":"EcSubscriptionCredLocalMachine","features":[171]},{"name":"EcSubscriptionCredNegotiate","features":[171]},{"name":"EcSubscriptionCredentialsType","features":[171]},{"name":"EcSubscriptionDeliveryMaxItems","features":[171]},{"name":"EcSubscriptionDeliveryMaxLatencyTime","features":[171]},{"name":"EcSubscriptionDeliveryMode","features":[171]},{"name":"EcSubscriptionDeniedSubjects","features":[171]},{"name":"EcSubscriptionDescription","features":[171]},{"name":"EcSubscriptionDialect","features":[171]},{"name":"EcSubscriptionEnabled","features":[171]},{"name":"EcSubscriptionEventSourceAddress","features":[171]},{"name":"EcSubscriptionEventSourceEnabled","features":[171]},{"name":"EcSubscriptionEventSourcePassword","features":[171]},{"name":"EcSubscriptionEventSourceUserName","features":[171]},{"name":"EcSubscriptionEventSources","features":[171]},{"name":"EcSubscriptionExpires","features":[171]},{"name":"EcSubscriptionHeartbeatInterval","features":[171]},{"name":"EcSubscriptionHostName","features":[171]},{"name":"EcSubscriptionLocale","features":[171]},{"name":"EcSubscriptionLogFile","features":[171]},{"name":"EcSubscriptionPropertyIdEND","features":[171]},{"name":"EcSubscriptionPublisherName","features":[171]},{"name":"EcSubscriptionQuery","features":[171]},{"name":"EcSubscriptionReadExistingEvents","features":[171]},{"name":"EcSubscriptionRunTimeStatusActive","features":[171]},{"name":"EcSubscriptionRunTimeStatusEventSources","features":[171]},{"name":"EcSubscriptionRunTimeStatusInfoIdEND","features":[171]},{"name":"EcSubscriptionRunTimeStatusLastError","features":[171]},{"name":"EcSubscriptionRunTimeStatusLastErrorMessage","features":[171]},{"name":"EcSubscriptionRunTimeStatusLastErrorTime","features":[171]},{"name":"EcSubscriptionRunTimeStatusLastHeartbeatTime","features":[171]},{"name":"EcSubscriptionRunTimeStatusNextRetryTime","features":[171]},{"name":"EcSubscriptionTransportName","features":[171]},{"name":"EcSubscriptionTransportPort","features":[171]},{"name":"EcSubscriptionType","features":[171]},{"name":"EcSubscriptionTypeCollectorInitiated","features":[171]},{"name":"EcSubscriptionTypeSourceInitiated","features":[171]},{"name":"EcSubscriptionURI","features":[171]},{"name":"EcVarObjectArrayPropertyHandle","features":[171]},{"name":"EcVarTypeBoolean","features":[171]},{"name":"EcVarTypeDateTime","features":[171]},{"name":"EcVarTypeNull","features":[171]},{"name":"EcVarTypeString","features":[171]},{"name":"EcVarTypeUInt32","features":[171]}],"564":[{"name":"BackupEventLogA","features":[1,172]},{"name":"BackupEventLogW","features":[1,172]},{"name":"ClearEventLogA","features":[1,172]},{"name":"ClearEventLogW","features":[1,172]},{"name":"CloseEventLog","features":[1,172]},{"name":"DeregisterEventSource","features":[1,172]},{"name":"EVENTLOGRECORD","features":[172]},{"name":"EVENTLOG_AUDIT_FAILURE","features":[172]},{"name":"EVENTLOG_AUDIT_SUCCESS","features":[172]},{"name":"EVENTLOG_ERROR_TYPE","features":[172]},{"name":"EVENTLOG_FULL_INFORMATION","features":[172]},{"name":"EVENTLOG_INFORMATION_TYPE","features":[172]},{"name":"EVENTLOG_SEEK_READ","features":[172]},{"name":"EVENTLOG_SEQUENTIAL_READ","features":[172]},{"name":"EVENTLOG_SUCCESS","features":[172]},{"name":"EVENTLOG_WARNING_TYPE","features":[172]},{"name":"EVENTSFORLOGFILE","features":[172]},{"name":"EVT_ALL_ACCESS","features":[172]},{"name":"EVT_CHANNEL_CLOCK_TYPE","features":[172]},{"name":"EVT_CHANNEL_CONFIG_PROPERTY_ID","features":[172]},{"name":"EVT_CHANNEL_ISOLATION_TYPE","features":[172]},{"name":"EVT_CHANNEL_REFERENCE_FLAGS","features":[172]},{"name":"EVT_CHANNEL_SID_TYPE","features":[172]},{"name":"EVT_CHANNEL_TYPE","features":[172]},{"name":"EVT_CLEAR_ACCESS","features":[172]},{"name":"EVT_EVENT_METADATA_PROPERTY_ID","features":[172]},{"name":"EVT_EVENT_PROPERTY_ID","features":[172]},{"name":"EVT_EXPORTLOG_FLAGS","features":[172]},{"name":"EVT_FORMAT_MESSAGE_FLAGS","features":[172]},{"name":"EVT_HANDLE","features":[172]},{"name":"EVT_LOGIN_CLASS","features":[172]},{"name":"EVT_LOG_PROPERTY_ID","features":[172]},{"name":"EVT_OPEN_LOG_FLAGS","features":[172]},{"name":"EVT_PUBLISHER_METADATA_PROPERTY_ID","features":[172]},{"name":"EVT_QUERY_FLAGS","features":[172]},{"name":"EVT_QUERY_PROPERTY_ID","features":[172]},{"name":"EVT_READ_ACCESS","features":[172]},{"name":"EVT_RENDER_CONTEXT_FLAGS","features":[172]},{"name":"EVT_RENDER_FLAGS","features":[172]},{"name":"EVT_RPC_LOGIN","features":[172]},{"name":"EVT_RPC_LOGIN_FLAGS","features":[172]},{"name":"EVT_SEEK_FLAGS","features":[172]},{"name":"EVT_SUBSCRIBE_CALLBACK","features":[172]},{"name":"EVT_SUBSCRIBE_FLAGS","features":[172]},{"name":"EVT_SUBSCRIBE_NOTIFY_ACTION","features":[172]},{"name":"EVT_SYSTEM_PROPERTY_ID","features":[172]},{"name":"EVT_VARIANT","features":[1,172]},{"name":"EVT_VARIANT_TYPE","features":[172]},{"name":"EVT_VARIANT_TYPE_ARRAY","features":[172]},{"name":"EVT_VARIANT_TYPE_MASK","features":[172]},{"name":"EVT_WRITE_ACCESS","features":[172]},{"name":"EventMetadataEventChannel","features":[172]},{"name":"EventMetadataEventID","features":[172]},{"name":"EventMetadataEventKeyword","features":[172]},{"name":"EventMetadataEventLevel","features":[172]},{"name":"EventMetadataEventMessageID","features":[172]},{"name":"EventMetadataEventOpcode","features":[172]},{"name":"EventMetadataEventTask","features":[172]},{"name":"EventMetadataEventTemplate","features":[172]},{"name":"EventMetadataEventVersion","features":[172]},{"name":"EvtArchiveExportedLog","features":[1,172]},{"name":"EvtCancel","features":[1,172]},{"name":"EvtChannelClockTypeQPC","features":[172]},{"name":"EvtChannelClockTypeSystemTime","features":[172]},{"name":"EvtChannelConfigAccess","features":[172]},{"name":"EvtChannelConfigClassicEventlog","features":[172]},{"name":"EvtChannelConfigEnabled","features":[172]},{"name":"EvtChannelConfigIsolation","features":[172]},{"name":"EvtChannelConfigOwningPublisher","features":[172]},{"name":"EvtChannelConfigPropertyIdEND","features":[172]},{"name":"EvtChannelConfigType","features":[172]},{"name":"EvtChannelIsolationTypeApplication","features":[172]},{"name":"EvtChannelIsolationTypeCustom","features":[172]},{"name":"EvtChannelIsolationTypeSystem","features":[172]},{"name":"EvtChannelLoggingConfigAutoBackup","features":[172]},{"name":"EvtChannelLoggingConfigLogFilePath","features":[172]},{"name":"EvtChannelLoggingConfigMaxSize","features":[172]},{"name":"EvtChannelLoggingConfigRetention","features":[172]},{"name":"EvtChannelPublisherList","features":[172]},{"name":"EvtChannelPublishingConfigBufferSize","features":[172]},{"name":"EvtChannelPublishingConfigClockType","features":[172]},{"name":"EvtChannelPublishingConfigControlGuid","features":[172]},{"name":"EvtChannelPublishingConfigFileMax","features":[172]},{"name":"EvtChannelPublishingConfigKeywords","features":[172]},{"name":"EvtChannelPublishingConfigLatency","features":[172]},{"name":"EvtChannelPublishingConfigLevel","features":[172]},{"name":"EvtChannelPublishingConfigMaxBuffers","features":[172]},{"name":"EvtChannelPublishingConfigMinBuffers","features":[172]},{"name":"EvtChannelPublishingConfigSidType","features":[172]},{"name":"EvtChannelReferenceImported","features":[172]},{"name":"EvtChannelSidTypeNone","features":[172]},{"name":"EvtChannelSidTypePublishing","features":[172]},{"name":"EvtChannelTypeAdmin","features":[172]},{"name":"EvtChannelTypeAnalytic","features":[172]},{"name":"EvtChannelTypeDebug","features":[172]},{"name":"EvtChannelTypeOperational","features":[172]},{"name":"EvtClearLog","features":[1,172]},{"name":"EvtClose","features":[1,172]},{"name":"EvtCreateBookmark","features":[172]},{"name":"EvtCreateRenderContext","features":[172]},{"name":"EvtEventMetadataPropertyIdEND","features":[172]},{"name":"EvtEventPath","features":[172]},{"name":"EvtEventPropertyIdEND","features":[172]},{"name":"EvtEventQueryIDs","features":[172]},{"name":"EvtExportLog","features":[1,172]},{"name":"EvtExportLogChannelPath","features":[172]},{"name":"EvtExportLogFilePath","features":[172]},{"name":"EvtExportLogOverwrite","features":[172]},{"name":"EvtExportLogTolerateQueryErrors","features":[172]},{"name":"EvtFormatMessage","features":[1,172]},{"name":"EvtFormatMessageChannel","features":[172]},{"name":"EvtFormatMessageEvent","features":[172]},{"name":"EvtFormatMessageId","features":[172]},{"name":"EvtFormatMessageKeyword","features":[172]},{"name":"EvtFormatMessageLevel","features":[172]},{"name":"EvtFormatMessageOpcode","features":[172]},{"name":"EvtFormatMessageProvider","features":[172]},{"name":"EvtFormatMessageTask","features":[172]},{"name":"EvtFormatMessageXml","features":[172]},{"name":"EvtGetChannelConfigProperty","features":[1,172]},{"name":"EvtGetEventInfo","features":[1,172]},{"name":"EvtGetEventMetadataProperty","features":[1,172]},{"name":"EvtGetExtendedStatus","features":[172]},{"name":"EvtGetLogInfo","features":[1,172]},{"name":"EvtGetObjectArrayProperty","features":[1,172]},{"name":"EvtGetObjectArraySize","features":[1,172]},{"name":"EvtGetPublisherMetadataProperty","features":[1,172]},{"name":"EvtGetQueryInfo","features":[1,172]},{"name":"EvtLogAttributes","features":[172]},{"name":"EvtLogCreationTime","features":[172]},{"name":"EvtLogFileSize","features":[172]},{"name":"EvtLogFull","features":[172]},{"name":"EvtLogLastAccessTime","features":[172]},{"name":"EvtLogLastWriteTime","features":[172]},{"name":"EvtLogNumberOfLogRecords","features":[172]},{"name":"EvtLogOldestRecordNumber","features":[172]},{"name":"EvtNext","features":[1,172]},{"name":"EvtNextChannelPath","features":[1,172]},{"name":"EvtNextEventMetadata","features":[172]},{"name":"EvtNextPublisherId","features":[1,172]},{"name":"EvtOpenChannelConfig","features":[172]},{"name":"EvtOpenChannelEnum","features":[172]},{"name":"EvtOpenChannelPath","features":[172]},{"name":"EvtOpenEventMetadataEnum","features":[172]},{"name":"EvtOpenFilePath","features":[172]},{"name":"EvtOpenLog","features":[172]},{"name":"EvtOpenPublisherEnum","features":[172]},{"name":"EvtOpenPublisherMetadata","features":[172]},{"name":"EvtOpenSession","features":[172]},{"name":"EvtPublisherMetadataChannelReferenceFlags","features":[172]},{"name":"EvtPublisherMetadataChannelReferenceID","features":[172]},{"name":"EvtPublisherMetadataChannelReferenceIndex","features":[172]},{"name":"EvtPublisherMetadataChannelReferenceMessageID","features":[172]},{"name":"EvtPublisherMetadataChannelReferencePath","features":[172]},{"name":"EvtPublisherMetadataChannelReferences","features":[172]},{"name":"EvtPublisherMetadataHelpLink","features":[172]},{"name":"EvtPublisherMetadataKeywordMessageID","features":[172]},{"name":"EvtPublisherMetadataKeywordName","features":[172]},{"name":"EvtPublisherMetadataKeywordValue","features":[172]},{"name":"EvtPublisherMetadataKeywords","features":[172]},{"name":"EvtPublisherMetadataLevelMessageID","features":[172]},{"name":"EvtPublisherMetadataLevelName","features":[172]},{"name":"EvtPublisherMetadataLevelValue","features":[172]},{"name":"EvtPublisherMetadataLevels","features":[172]},{"name":"EvtPublisherMetadataMessageFilePath","features":[172]},{"name":"EvtPublisherMetadataOpcodeMessageID","features":[172]},{"name":"EvtPublisherMetadataOpcodeName","features":[172]},{"name":"EvtPublisherMetadataOpcodeValue","features":[172]},{"name":"EvtPublisherMetadataOpcodes","features":[172]},{"name":"EvtPublisherMetadataParameterFilePath","features":[172]},{"name":"EvtPublisherMetadataPropertyIdEND","features":[172]},{"name":"EvtPublisherMetadataPublisherGuid","features":[172]},{"name":"EvtPublisherMetadataPublisherMessageID","features":[172]},{"name":"EvtPublisherMetadataResourceFilePath","features":[172]},{"name":"EvtPublisherMetadataTaskEventGuid","features":[172]},{"name":"EvtPublisherMetadataTaskMessageID","features":[172]},{"name":"EvtPublisherMetadataTaskName","features":[172]},{"name":"EvtPublisherMetadataTaskValue","features":[172]},{"name":"EvtPublisherMetadataTasks","features":[172]},{"name":"EvtQuery","features":[172]},{"name":"EvtQueryChannelPath","features":[172]},{"name":"EvtQueryFilePath","features":[172]},{"name":"EvtQueryForwardDirection","features":[172]},{"name":"EvtQueryNames","features":[172]},{"name":"EvtQueryPropertyIdEND","features":[172]},{"name":"EvtQueryReverseDirection","features":[172]},{"name":"EvtQueryStatuses","features":[172]},{"name":"EvtQueryTolerateQueryErrors","features":[172]},{"name":"EvtRender","features":[1,172]},{"name":"EvtRenderBookmark","features":[172]},{"name":"EvtRenderContextSystem","features":[172]},{"name":"EvtRenderContextUser","features":[172]},{"name":"EvtRenderContextValues","features":[172]},{"name":"EvtRenderEventValues","features":[172]},{"name":"EvtRenderEventXml","features":[172]},{"name":"EvtRpcLogin","features":[172]},{"name":"EvtRpcLoginAuthDefault","features":[172]},{"name":"EvtRpcLoginAuthKerberos","features":[172]},{"name":"EvtRpcLoginAuthNTLM","features":[172]},{"name":"EvtRpcLoginAuthNegotiate","features":[172]},{"name":"EvtSaveChannelConfig","features":[1,172]},{"name":"EvtSeek","features":[1,172]},{"name":"EvtSeekOriginMask","features":[172]},{"name":"EvtSeekRelativeToBookmark","features":[172]},{"name":"EvtSeekRelativeToCurrent","features":[172]},{"name":"EvtSeekRelativeToFirst","features":[172]},{"name":"EvtSeekRelativeToLast","features":[172]},{"name":"EvtSeekStrict","features":[172]},{"name":"EvtSetChannelConfigProperty","features":[1,172]},{"name":"EvtSubscribe","features":[1,172]},{"name":"EvtSubscribeActionDeliver","features":[172]},{"name":"EvtSubscribeActionError","features":[172]},{"name":"EvtSubscribeOriginMask","features":[172]},{"name":"EvtSubscribeStartAfterBookmark","features":[172]},{"name":"EvtSubscribeStartAtOldestRecord","features":[172]},{"name":"EvtSubscribeStrict","features":[172]},{"name":"EvtSubscribeToFutureEvents","features":[172]},{"name":"EvtSubscribeTolerateQueryErrors","features":[172]},{"name":"EvtSystemActivityID","features":[172]},{"name":"EvtSystemChannel","features":[172]},{"name":"EvtSystemComputer","features":[172]},{"name":"EvtSystemEventID","features":[172]},{"name":"EvtSystemEventRecordId","features":[172]},{"name":"EvtSystemKeywords","features":[172]},{"name":"EvtSystemLevel","features":[172]},{"name":"EvtSystemOpcode","features":[172]},{"name":"EvtSystemProcessID","features":[172]},{"name":"EvtSystemPropertyIdEND","features":[172]},{"name":"EvtSystemProviderGuid","features":[172]},{"name":"EvtSystemProviderName","features":[172]},{"name":"EvtSystemQualifiers","features":[172]},{"name":"EvtSystemRelatedActivityID","features":[172]},{"name":"EvtSystemTask","features":[172]},{"name":"EvtSystemThreadID","features":[172]},{"name":"EvtSystemTimeCreated","features":[172]},{"name":"EvtSystemUserID","features":[172]},{"name":"EvtSystemVersion","features":[172]},{"name":"EvtUpdateBookmark","features":[1,172]},{"name":"EvtVarTypeAnsiString","features":[172]},{"name":"EvtVarTypeBinary","features":[172]},{"name":"EvtVarTypeBoolean","features":[172]},{"name":"EvtVarTypeByte","features":[172]},{"name":"EvtVarTypeDouble","features":[172]},{"name":"EvtVarTypeEvtHandle","features":[172]},{"name":"EvtVarTypeEvtXml","features":[172]},{"name":"EvtVarTypeFileTime","features":[172]},{"name":"EvtVarTypeGuid","features":[172]},{"name":"EvtVarTypeHexInt32","features":[172]},{"name":"EvtVarTypeHexInt64","features":[172]},{"name":"EvtVarTypeInt16","features":[172]},{"name":"EvtVarTypeInt32","features":[172]},{"name":"EvtVarTypeInt64","features":[172]},{"name":"EvtVarTypeNull","features":[172]},{"name":"EvtVarTypeSByte","features":[172]},{"name":"EvtVarTypeSid","features":[172]},{"name":"EvtVarTypeSingle","features":[172]},{"name":"EvtVarTypeSizeT","features":[172]},{"name":"EvtVarTypeString","features":[172]},{"name":"EvtVarTypeSysTime","features":[172]},{"name":"EvtVarTypeUInt16","features":[172]},{"name":"EvtVarTypeUInt32","features":[172]},{"name":"EvtVarTypeUInt64","features":[172]},{"name":"GetEventLogInformation","features":[1,172]},{"name":"GetNumberOfEventLogRecords","features":[1,172]},{"name":"GetOldestEventLogRecord","features":[1,172]},{"name":"NotifyChangeEventLog","features":[1,172]},{"name":"OpenBackupEventLogA","features":[1,172]},{"name":"OpenBackupEventLogW","features":[1,172]},{"name":"OpenEventLogA","features":[1,172]},{"name":"OpenEventLogW","features":[1,172]},{"name":"READ_EVENT_LOG_READ_FLAGS","features":[172]},{"name":"REPORT_EVENT_TYPE","features":[172]},{"name":"ReadEventLogA","features":[1,172]},{"name":"ReadEventLogW","features":[1,172]},{"name":"RegisterEventSourceA","features":[1,172]},{"name":"RegisterEventSourceW","features":[1,172]},{"name":"ReportEventA","features":[1,172]},{"name":"ReportEventW","features":[1,172]}],"565":[{"name":"CONNECTION_AOL","features":[173]},{"name":"CONNECTION_LAN","features":[173]},{"name":"CONNECTION_WAN","features":[173]},{"name":"ISensLogon","features":[173]},{"name":"ISensLogon2","features":[173]},{"name":"ISensNetwork","features":[173]},{"name":"ISensOnNow","features":[173]},{"name":"IsDestinationReachableA","features":[1,173]},{"name":"IsDestinationReachableW","features":[1,173]},{"name":"IsNetworkAlive","features":[1,173]},{"name":"NETWORK_ALIVE_AOL","features":[173]},{"name":"NETWORK_ALIVE_INTERNET","features":[173]},{"name":"NETWORK_ALIVE_LAN","features":[173]},{"name":"NETWORK_ALIVE_WAN","features":[173]},{"name":"QOCINFO","features":[173]},{"name":"SENS","features":[173]},{"name":"SENSGUID_EVENTCLASS_LOGON","features":[173]},{"name":"SENSGUID_EVENTCLASS_LOGON2","features":[173]},{"name":"SENSGUID_EVENTCLASS_NETWORK","features":[173]},{"name":"SENSGUID_EVENTCLASS_ONNOW","features":[173]},{"name":"SENSGUID_PUBLISHER","features":[173]},{"name":"SENSGUID_SUBSCRIBER_LCE","features":[173]},{"name":"SENSGUID_SUBSCRIBER_WININET","features":[173]},{"name":"SENS_CONNECTION_TYPE","features":[173]},{"name":"SENS_QOCINFO","features":[173]}],"566":[{"name":"ABSENT","features":[174]},{"name":"ADMXCOMMENTS_EXTENSION_GUID","features":[174]},{"name":"APPNAME","features":[174]},{"name":"APPSTATE","features":[174]},{"name":"ASSIGNED","features":[174]},{"name":"BrowseForGPO","features":[1,174]},{"name":"CLSID_GPESnapIn","features":[174]},{"name":"CLSID_GroupPolicyObject","features":[174]},{"name":"CLSID_RSOPSnapIn","features":[174]},{"name":"COMCLASS","features":[174]},{"name":"CommandLineFromMsiDescriptor","features":[174]},{"name":"CreateGPOLink","features":[1,174]},{"name":"DeleteAllGPOLinks","features":[174]},{"name":"DeleteGPOLink","features":[174]},{"name":"EnterCriticalPolicySection","features":[1,174]},{"name":"ExportRSoPData","features":[174]},{"name":"FILEEXT","features":[174]},{"name":"FLAG_ASSUME_COMP_WQLFILTER_TRUE","features":[174]},{"name":"FLAG_ASSUME_SLOW_LINK","features":[174]},{"name":"FLAG_ASSUME_USER_WQLFILTER_TRUE","features":[174]},{"name":"FLAG_FORCE_CREATENAMESPACE","features":[174]},{"name":"FLAG_LOOPBACK_MERGE","features":[174]},{"name":"FLAG_LOOPBACK_REPLACE","features":[174]},{"name":"FLAG_NO_COMPUTER","features":[174]},{"name":"FLAG_NO_CSE_INVOKE","features":[174]},{"name":"FLAG_NO_GPO_FILTER","features":[174]},{"name":"FLAG_NO_USER","features":[174]},{"name":"FLAG_PLANNING_MODE","features":[174]},{"name":"FreeGPOListA","features":[1,174]},{"name":"FreeGPOListW","features":[1,174]},{"name":"GPC_BLOCK_POLICY","features":[174]},{"name":"GPHintDomain","features":[174]},{"name":"GPHintMachine","features":[174]},{"name":"GPHintOrganizationalUnit","features":[174]},{"name":"GPHintSite","features":[174]},{"name":"GPHintUnknown","features":[174]},{"name":"GPLinkDomain","features":[174]},{"name":"GPLinkMachine","features":[174]},{"name":"GPLinkOrganizationalUnit","features":[174]},{"name":"GPLinkSite","features":[174]},{"name":"GPLinkUnknown","features":[174]},{"name":"GPM","features":[174]},{"name":"GPMAsyncCancel","features":[174]},{"name":"GPMBackup","features":[174]},{"name":"GPMBackupCollection","features":[174]},{"name":"GPMBackupDir","features":[174]},{"name":"GPMBackupDirEx","features":[174]},{"name":"GPMBackupType","features":[174]},{"name":"GPMCSECollection","features":[174]},{"name":"GPMClientSideExtension","features":[174]},{"name":"GPMConstants","features":[174]},{"name":"GPMDestinationOption","features":[174]},{"name":"GPMDomain","features":[174]},{"name":"GPMEntryType","features":[174]},{"name":"GPMGPO","features":[174]},{"name":"GPMGPOCollection","features":[174]},{"name":"GPMGPOLink","features":[174]},{"name":"GPMGPOLinksCollection","features":[174]},{"name":"GPMMapEntry","features":[174]},{"name":"GPMMapEntryCollection","features":[174]},{"name":"GPMMigrationTable","features":[174]},{"name":"GPMPermission","features":[174]},{"name":"GPMPermissionType","features":[174]},{"name":"GPMRSOP","features":[174]},{"name":"GPMRSOPMode","features":[174]},{"name":"GPMReportType","features":[174]},{"name":"GPMReportingOptions","features":[174]},{"name":"GPMResult","features":[174]},{"name":"GPMSOM","features":[174]},{"name":"GPMSOMCollection","features":[174]},{"name":"GPMSOMType","features":[174]},{"name":"GPMSearchCriteria","features":[174]},{"name":"GPMSearchOperation","features":[174]},{"name":"GPMSearchProperty","features":[174]},{"name":"GPMSecurityInfo","features":[174]},{"name":"GPMSitesContainer","features":[174]},{"name":"GPMStarterGPOBackup","features":[174]},{"name":"GPMStarterGPOBackupCollection","features":[174]},{"name":"GPMStarterGPOCollection","features":[174]},{"name":"GPMStarterGPOType","features":[174]},{"name":"GPMStatusMessage","features":[174]},{"name":"GPMStatusMsgCollection","features":[174]},{"name":"GPMTemplate","features":[174]},{"name":"GPMTrustee","features":[174]},{"name":"GPMWMIFilter","features":[174]},{"name":"GPMWMIFilterCollection","features":[174]},{"name":"GPM_DONOTUSE_W2KDC","features":[174]},{"name":"GPM_DONOT_VALIDATEDC","features":[174]},{"name":"GPM_MIGRATIONTABLE_ONLY","features":[174]},{"name":"GPM_PROCESS_SECURITY","features":[174]},{"name":"GPM_USE_ANYDC","features":[174]},{"name":"GPM_USE_PDC","features":[174]},{"name":"GPOBROWSEINFO","features":[1,174]},{"name":"GPOTypeDS","features":[174]},{"name":"GPOTypeLocal","features":[174]},{"name":"GPOTypeLocalGroup","features":[174]},{"name":"GPOTypeLocalUser","features":[174]},{"name":"GPOTypeRemote","features":[174]},{"name":"GPO_BROWSE_DISABLENEW","features":[174]},{"name":"GPO_BROWSE_INITTOALL","features":[174]},{"name":"GPO_BROWSE_NOCOMPUTERS","features":[174]},{"name":"GPO_BROWSE_NODSGPOS","features":[174]},{"name":"GPO_BROWSE_NOUSERGPOS","features":[174]},{"name":"GPO_BROWSE_OPENBUTTON","features":[174]},{"name":"GPO_BROWSE_SENDAPPLYONEDIT","features":[174]},{"name":"GPO_FLAG_DISABLE","features":[174]},{"name":"GPO_FLAG_FORCE","features":[174]},{"name":"GPO_INFO_FLAG_ASYNC_FOREGROUND","features":[174]},{"name":"GPO_INFO_FLAG_BACKGROUND","features":[174]},{"name":"GPO_INFO_FLAG_FORCED_REFRESH","features":[174]},{"name":"GPO_INFO_FLAG_LINKTRANSITION","features":[174]},{"name":"GPO_INFO_FLAG_LOGRSOP_TRANSITION","features":[174]},{"name":"GPO_INFO_FLAG_MACHINE","features":[174]},{"name":"GPO_INFO_FLAG_NOCHANGES","features":[174]},{"name":"GPO_INFO_FLAG_SAFEMODE_BOOT","features":[174]},{"name":"GPO_INFO_FLAG_SLOWLINK","features":[174]},{"name":"GPO_INFO_FLAG_VERBOSE","features":[174]},{"name":"GPO_LINK","features":[174]},{"name":"GPO_LIST_FLAG_MACHINE","features":[174]},{"name":"GPO_LIST_FLAG_NO_SECURITYFILTERS","features":[174]},{"name":"GPO_LIST_FLAG_NO_WMIFILTERS","features":[174]},{"name":"GPO_LIST_FLAG_SITEONLY","features":[174]},{"name":"GPO_OPEN_FLAGS","features":[174]},{"name":"GPO_OPEN_LOAD_REGISTRY","features":[174]},{"name":"GPO_OPEN_READ_ONLY","features":[174]},{"name":"GPO_OPTIONS","features":[174]},{"name":"GPO_OPTION_DISABLE_MACHINE","features":[174]},{"name":"GPO_OPTION_DISABLE_USER","features":[174]},{"name":"GPO_SECTION","features":[174]},{"name":"GPO_SECTION_MACHINE","features":[174]},{"name":"GPO_SECTION_ROOT","features":[174]},{"name":"GPO_SECTION_USER","features":[174]},{"name":"GP_DLLNAME","features":[174]},{"name":"GP_ENABLEASYNCHRONOUSPROCESSING","features":[174]},{"name":"GP_MAXNOGPOLISTCHANGESINTERVAL","features":[174]},{"name":"GP_NOBACKGROUNDPOLICY","features":[174]},{"name":"GP_NOGPOLISTCHANGES","features":[174]},{"name":"GP_NOMACHINEPOLICY","features":[174]},{"name":"GP_NOSLOWLINK","features":[174]},{"name":"GP_NOTIFYLINKTRANSITION","features":[174]},{"name":"GP_NOUSERPOLICY","features":[174]},{"name":"GP_PERUSERLOCALSETTINGS","features":[174]},{"name":"GP_PROCESSGROUPPOLICY","features":[174]},{"name":"GP_REQUIRESSUCCESSFULREGISTRY","features":[174]},{"name":"GROUP_POLICY_HINT_TYPE","features":[174]},{"name":"GROUP_POLICY_OBJECTA","features":[1,174]},{"name":"GROUP_POLICY_OBJECTW","features":[1,174]},{"name":"GROUP_POLICY_OBJECT_TYPE","features":[174]},{"name":"GROUP_POLICY_TRIGGER_EVENT_PROVIDER_GUID","features":[174]},{"name":"GenerateGPNotification","features":[1,174]},{"name":"GetAppliedGPOListA","features":[1,174]},{"name":"GetAppliedGPOListW","features":[1,174]},{"name":"GetGPOListA","features":[1,174]},{"name":"GetGPOListW","features":[1,174]},{"name":"GetLocalManagedApplicationData","features":[174]},{"name":"GetLocalManagedApplications","features":[1,174]},{"name":"GetManagedApplicationCategories","features":[174,109]},{"name":"GetManagedApplications","features":[1,174]},{"name":"IGPEInformation","features":[174]},{"name":"IGPM","features":[174]},{"name":"IGPM2","features":[174]},{"name":"IGPMAsyncCancel","features":[174]},{"name":"IGPMAsyncProgress","features":[174]},{"name":"IGPMBackup","features":[174]},{"name":"IGPMBackupCollection","features":[174]},{"name":"IGPMBackupDir","features":[174]},{"name":"IGPMBackupDirEx","features":[174]},{"name":"IGPMCSECollection","features":[174]},{"name":"IGPMClientSideExtension","features":[174]},{"name":"IGPMConstants","features":[174]},{"name":"IGPMConstants2","features":[174]},{"name":"IGPMDomain","features":[174]},{"name":"IGPMDomain2","features":[174]},{"name":"IGPMDomain3","features":[174]},{"name":"IGPMGPO","features":[174]},{"name":"IGPMGPO2","features":[174]},{"name":"IGPMGPO3","features":[174]},{"name":"IGPMGPOCollection","features":[174]},{"name":"IGPMGPOLink","features":[174]},{"name":"IGPMGPOLinksCollection","features":[174]},{"name":"IGPMMapEntry","features":[174]},{"name":"IGPMMapEntryCollection","features":[174]},{"name":"IGPMMigrationTable","features":[174]},{"name":"IGPMPermission","features":[174]},{"name":"IGPMRSOP","features":[174]},{"name":"IGPMResult","features":[174]},{"name":"IGPMSOM","features":[174]},{"name":"IGPMSOMCollection","features":[174]},{"name":"IGPMSearchCriteria","features":[174]},{"name":"IGPMSecurityInfo","features":[174]},{"name":"IGPMSitesContainer","features":[174]},{"name":"IGPMStarterGPO","features":[174]},{"name":"IGPMStarterGPOBackup","features":[174]},{"name":"IGPMStarterGPOBackupCollection","features":[174]},{"name":"IGPMStarterGPOCollection","features":[174]},{"name":"IGPMStatusMessage","features":[174]},{"name":"IGPMStatusMsgCollection","features":[174]},{"name":"IGPMTrustee","features":[174]},{"name":"IGPMWMIFilter","features":[174]},{"name":"IGPMWMIFilterCollection","features":[174]},{"name":"IGroupPolicyObject","features":[174]},{"name":"INSTALLDATA","features":[174]},{"name":"INSTALLSPEC","features":[174]},{"name":"INSTALLSPECTYPE","features":[174]},{"name":"IRSOPInformation","features":[174]},{"name":"ImportRSoPData","features":[174]},{"name":"InstallApplication","features":[174]},{"name":"LOCALMANAGEDAPPLICATION","features":[174]},{"name":"LOCALSTATE_ASSIGNED","features":[174]},{"name":"LOCALSTATE_ORPHANED","features":[174]},{"name":"LOCALSTATE_POLICYREMOVE_ORPHAN","features":[174]},{"name":"LOCALSTATE_POLICYREMOVE_UNINSTALL","features":[174]},{"name":"LOCALSTATE_PUBLISHED","features":[174]},{"name":"LOCALSTATE_UNINSTALLED","features":[174]},{"name":"LOCALSTATE_UNINSTALL_UNMANAGED","features":[174]},{"name":"LeaveCriticalPolicySection","features":[1,174]},{"name":"MACHINE_POLICY_PRESENT_TRIGGER_GUID","features":[174]},{"name":"MANAGEDAPPLICATION","features":[1,174]},{"name":"MANAGED_APPS_FROMCATEGORY","features":[174]},{"name":"MANAGED_APPS_INFOLEVEL_DEFAULT","features":[174]},{"name":"MANAGED_APPS_USERAPPLICATIONS","features":[174]},{"name":"MANAGED_APPTYPE_SETUPEXE","features":[174]},{"name":"MANAGED_APPTYPE_UNSUPPORTED","features":[174]},{"name":"MANAGED_APPTYPE_WINDOWSINSTALLER","features":[174]},{"name":"NODEID_Machine","features":[174]},{"name":"NODEID_MachineSWSettings","features":[174]},{"name":"NODEID_RSOPMachine","features":[174]},{"name":"NODEID_RSOPMachineSWSettings","features":[174]},{"name":"NODEID_RSOPUser","features":[174]},{"name":"NODEID_RSOPUserSWSettings","features":[174]},{"name":"NODEID_User","features":[174]},{"name":"NODEID_UserSWSettings","features":[174]},{"name":"PFNGENERATEGROUPPOLICY","features":[1,41,174]},{"name":"PFNPROCESSGROUPPOLICY","features":[1,174,49]},{"name":"PFNPROCESSGROUPPOLICYEX","features":[1,174,49]},{"name":"PFNSTATUSMESSAGECALLBACK","features":[1,174]},{"name":"PI_APPLYPOLICY","features":[174]},{"name":"PI_NOUI","features":[174]},{"name":"POLICYSETTINGSTATUSINFO","features":[1,174]},{"name":"PROGID","features":[174]},{"name":"PT_MANDATORY","features":[174]},{"name":"PT_ROAMING","features":[174]},{"name":"PT_ROAMING_PREEXISTING","features":[174]},{"name":"PT_TEMPORARY","features":[174]},{"name":"PUBLISHED","features":[174]},{"name":"ProcessGroupPolicyCompleted","features":[174]},{"name":"ProcessGroupPolicyCompletedEx","features":[174]},{"name":"REGISTRY_EXTENSION_GUID","features":[174]},{"name":"RP_FORCE","features":[174]},{"name":"RP_SYNC","features":[174]},{"name":"RSOPApplied","features":[174]},{"name":"RSOPFailed","features":[174]},{"name":"RSOPIgnored","features":[174]},{"name":"RSOPSubsettingFailed","features":[174]},{"name":"RSOPUnspecified","features":[174]},{"name":"RSOP_COMPUTER_ACCESS_DENIED","features":[174]},{"name":"RSOP_INFO_FLAG_DIAGNOSTIC_MODE","features":[174]},{"name":"RSOP_NO_COMPUTER","features":[174]},{"name":"RSOP_NO_USER","features":[174]},{"name":"RSOP_PLANNING_ASSUME_COMP_WQLFILTER_TRUE","features":[174]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_MERGE","features":[174]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_REPLACE","features":[174]},{"name":"RSOP_PLANNING_ASSUME_SLOW_LINK","features":[174]},{"name":"RSOP_PLANNING_ASSUME_USER_WQLFILTER_TRUE","features":[174]},{"name":"RSOP_TARGET","features":[1,41,174]},{"name":"RSOP_TEMPNAMESPACE_EXISTS","features":[174]},{"name":"RSOP_USER_ACCESS_DENIED","features":[174]},{"name":"RefreshPolicy","features":[1,174]},{"name":"RefreshPolicyEx","features":[1,174]},{"name":"RegisterGPNotification","features":[1,174]},{"name":"RsopAccessCheckByType","features":[1,4,174]},{"name":"RsopFileAccessCheck","features":[1,174]},{"name":"RsopResetPolicySettingStatus","features":[174]},{"name":"RsopSetPolicySettingStatus","features":[1,174]},{"name":"SETTINGSTATUS","features":[174]},{"name":"USER_POLICY_PRESENT_TRIGGER_GUID","features":[174]},{"name":"UninstallApplication","features":[174]},{"name":"UnregisterGPNotification","features":[1,174]},{"name":"backupMostRecent","features":[174]},{"name":"gpoComputerExtensions","features":[174]},{"name":"gpoDisplayName","features":[174]},{"name":"gpoDomain","features":[174]},{"name":"gpoEffectivePermissions","features":[174]},{"name":"gpoID","features":[174]},{"name":"gpoPermissions","features":[174]},{"name":"gpoUserExtensions","features":[174]},{"name":"gpoWMIFilter","features":[174]},{"name":"opContains","features":[174]},{"name":"opDestinationByRelativeName","features":[174]},{"name":"opDestinationNone","features":[174]},{"name":"opDestinationSameAsSource","features":[174]},{"name":"opDestinationSet","features":[174]},{"name":"opEquals","features":[174]},{"name":"opNotContains","features":[174]},{"name":"opNotEquals","features":[174]},{"name":"opReportComments","features":[174]},{"name":"opReportLegacy","features":[174]},{"name":"permGPOApply","features":[174]},{"name":"permGPOCustom","features":[174]},{"name":"permGPOEdit","features":[174]},{"name":"permGPOEditSecurityAndDelete","features":[174]},{"name":"permGPORead","features":[174]},{"name":"permSOMGPOCreate","features":[174]},{"name":"permSOMLink","features":[174]},{"name":"permSOMLogging","features":[174]},{"name":"permSOMPlanning","features":[174]},{"name":"permSOMStarterGPOCreate","features":[174]},{"name":"permSOMWMICreate","features":[174]},{"name":"permSOMWMIFullControl","features":[174]},{"name":"permStarterGPOCustom","features":[174]},{"name":"permStarterGPOEdit","features":[174]},{"name":"permStarterGPOFullControl","features":[174]},{"name":"permStarterGPORead","features":[174]},{"name":"permWMIFilterCustom","features":[174]},{"name":"permWMIFilterEdit","features":[174]},{"name":"permWMIFilterFullControl","features":[174]},{"name":"repClientHealthRefreshXML","features":[174]},{"name":"repClientHealthXML","features":[174]},{"name":"repHTML","features":[174]},{"name":"repInfraRefreshXML","features":[174]},{"name":"repInfraXML","features":[174]},{"name":"repXML","features":[174]},{"name":"rsopLogging","features":[174]},{"name":"rsopPlanning","features":[174]},{"name":"rsopUnknown","features":[174]},{"name":"somDomain","features":[174]},{"name":"somLinks","features":[174]},{"name":"somOU","features":[174]},{"name":"somSite","features":[174]},{"name":"starterGPODisplayName","features":[174]},{"name":"starterGPODomain","features":[174]},{"name":"starterGPOEffectivePermissions","features":[174]},{"name":"starterGPOID","features":[174]},{"name":"starterGPOPermissions","features":[174]},{"name":"typeComputer","features":[174]},{"name":"typeCustom","features":[174]},{"name":"typeGPO","features":[174]},{"name":"typeGlobalGroup","features":[174]},{"name":"typeLocalGroup","features":[174]},{"name":"typeStarterGPO","features":[174]},{"name":"typeSystem","features":[174]},{"name":"typeUNCPath","features":[174]},{"name":"typeUniversalGroup","features":[174]},{"name":"typeUnknown","features":[174]},{"name":"typeUser","features":[174]}],"567":[{"name":"HCS_CALLBACK","features":[175]}],"568":[{"name":"HCN_NOTIFICATIONS","features":[176]},{"name":"HCN_NOTIFICATION_CALLBACK","features":[176]},{"name":"HCN_PORT_ACCESS","features":[176]},{"name":"HCN_PORT_ACCESS_EXCLUSIVE","features":[176]},{"name":"HCN_PORT_ACCESS_SHARED","features":[176]},{"name":"HCN_PORT_PROTOCOL","features":[176]},{"name":"HCN_PORT_PROTOCOL_BOTH","features":[176]},{"name":"HCN_PORT_PROTOCOL_TCP","features":[176]},{"name":"HCN_PORT_PROTOCOL_UDP","features":[176]},{"name":"HCN_PORT_RANGE_ENTRY","features":[176]},{"name":"HCN_PORT_RANGE_RESERVATION","features":[176]},{"name":"HcnCloseEndpoint","features":[176]},{"name":"HcnCloseGuestNetworkService","features":[176]},{"name":"HcnCloseLoadBalancer","features":[176]},{"name":"HcnCloseNamespace","features":[176]},{"name":"HcnCloseNetwork","features":[176]},{"name":"HcnCreateEndpoint","features":[176]},{"name":"HcnCreateGuestNetworkService","features":[176]},{"name":"HcnCreateLoadBalancer","features":[176]},{"name":"HcnCreateNamespace","features":[176]},{"name":"HcnCreateNetwork","features":[176]},{"name":"HcnDeleteEndpoint","features":[176]},{"name":"HcnDeleteGuestNetworkService","features":[176]},{"name":"HcnDeleteLoadBalancer","features":[176]},{"name":"HcnDeleteNamespace","features":[176]},{"name":"HcnDeleteNetwork","features":[176]},{"name":"HcnEnumerateEndpoints","features":[176]},{"name":"HcnEnumerateGuestNetworkPortReservations","features":[176]},{"name":"HcnEnumerateLoadBalancers","features":[176]},{"name":"HcnEnumerateNamespaces","features":[176]},{"name":"HcnEnumerateNetworks","features":[176]},{"name":"HcnFreeGuestNetworkPortReservations","features":[176]},{"name":"HcnModifyEndpoint","features":[176]},{"name":"HcnModifyGuestNetworkService","features":[176]},{"name":"HcnModifyLoadBalancer","features":[176]},{"name":"HcnModifyNamespace","features":[176]},{"name":"HcnModifyNetwork","features":[176]},{"name":"HcnNotificationFlagsReserved","features":[176]},{"name":"HcnNotificationGuestNetworkServiceCreate","features":[176]},{"name":"HcnNotificationGuestNetworkServiceDelete","features":[176]},{"name":"HcnNotificationGuestNetworkServiceInterfaceStateChanged","features":[176]},{"name":"HcnNotificationGuestNetworkServiceStateChanged","features":[176]},{"name":"HcnNotificationInvalid","features":[176]},{"name":"HcnNotificationNamespaceCreate","features":[176]},{"name":"HcnNotificationNamespaceDelete","features":[176]},{"name":"HcnNotificationNetworkCreate","features":[176]},{"name":"HcnNotificationNetworkDelete","features":[176]},{"name":"HcnNotificationNetworkEndpointAttached","features":[176]},{"name":"HcnNotificationNetworkEndpointDetached","features":[176]},{"name":"HcnNotificationNetworkPreCreate","features":[176]},{"name":"HcnNotificationNetworkPreDelete","features":[176]},{"name":"HcnNotificationServiceDisconnect","features":[176]},{"name":"HcnOpenEndpoint","features":[176]},{"name":"HcnOpenLoadBalancer","features":[176]},{"name":"HcnOpenNamespace","features":[176]},{"name":"HcnOpenNetwork","features":[176]},{"name":"HcnQueryEndpointAddresses","features":[176]},{"name":"HcnQueryEndpointProperties","features":[176]},{"name":"HcnQueryEndpointStats","features":[176]},{"name":"HcnQueryLoadBalancerProperties","features":[176]},{"name":"HcnQueryNamespaceProperties","features":[176]},{"name":"HcnQueryNetworkProperties","features":[176]},{"name":"HcnRegisterGuestNetworkServiceCallback","features":[176]},{"name":"HcnRegisterServiceCallback","features":[176]},{"name":"HcnReleaseGuestNetworkServicePortReservationHandle","features":[1,176]},{"name":"HcnReserveGuestNetworkServicePort","features":[1,176]},{"name":"HcnReserveGuestNetworkServicePortRange","features":[1,176]},{"name":"HcnUnregisterGuestNetworkServiceCallback","features":[176]},{"name":"HcnUnregisterServiceCallback","features":[176]}],"569":[{"name":"HCS_CREATE_OPTIONS","features":[177]},{"name":"HCS_CREATE_OPTIONS_1","features":[1,4,177]},{"name":"HCS_EVENT","features":[177]},{"name":"HCS_EVENT_CALLBACK","features":[177]},{"name":"HCS_EVENT_OPTIONS","features":[177]},{"name":"HCS_EVENT_TYPE","features":[177]},{"name":"HCS_NOTIFICATIONS","features":[177]},{"name":"HCS_NOTIFICATION_CALLBACK","features":[177]},{"name":"HCS_NOTIFICATION_FLAGS","features":[177]},{"name":"HCS_OPERATION","features":[177]},{"name":"HCS_OPERATION_COMPLETION","features":[177]},{"name":"HCS_OPERATION_OPTIONS","features":[177]},{"name":"HCS_OPERATION_TYPE","features":[177]},{"name":"HCS_PROCESS","features":[177]},{"name":"HCS_PROCESS_INFORMATION","features":[1,177]},{"name":"HCS_RESOURCE_TYPE","features":[177]},{"name":"HCS_SYSTEM","features":[177]},{"name":"HcsAddResourceToOperation","features":[1,177]},{"name":"HcsAttachLayerStorageFilter","features":[177]},{"name":"HcsCancelOperation","features":[177]},{"name":"HcsCloseComputeSystem","features":[177]},{"name":"HcsCloseOperation","features":[177]},{"name":"HcsCloseProcess","features":[177]},{"name":"HcsCrashComputeSystem","features":[177]},{"name":"HcsCreateComputeSystem","features":[1,4,177]},{"name":"HcsCreateComputeSystemInNamespace","features":[177]},{"name":"HcsCreateEmptyGuestStateFile","features":[177]},{"name":"HcsCreateEmptyRuntimeStateFile","features":[177]},{"name":"HcsCreateOperation","features":[177]},{"name":"HcsCreateOperationWithNotifications","features":[177]},{"name":"HcsCreateOptions_1","features":[177]},{"name":"HcsCreateProcess","features":[1,4,177]},{"name":"HcsDestroyLayer","features":[177]},{"name":"HcsDetachLayerStorageFilter","features":[177]},{"name":"HcsEnumerateComputeSystems","features":[177]},{"name":"HcsEnumerateComputeSystemsInNamespace","features":[177]},{"name":"HcsEventGroupOperationInfo","features":[177]},{"name":"HcsEventGroupVmLifecycle","features":[177]},{"name":"HcsEventInvalid","features":[177]},{"name":"HcsEventOperationCallback","features":[177]},{"name":"HcsEventOptionEnableOperationCallbacks","features":[177]},{"name":"HcsEventOptionEnableVmLifecycle","features":[177]},{"name":"HcsEventOptionNone","features":[177]},{"name":"HcsEventProcessExited","features":[177]},{"name":"HcsEventServiceDisconnect","features":[177]},{"name":"HcsEventSystemCrashInitiated","features":[177]},{"name":"HcsEventSystemCrashReport","features":[177]},{"name":"HcsEventSystemExited","features":[177]},{"name":"HcsEventSystemGuestConnectionClosed","features":[177]},{"name":"HcsEventSystemRdpEnhancedModeStateChanged","features":[177]},{"name":"HcsEventSystemSiloJobCreated","features":[177]},{"name":"HcsExportLayer","features":[177]},{"name":"HcsExportLegacyWritableLayer","features":[177]},{"name":"HcsFormatWritableLayerVhd","features":[1,177]},{"name":"HcsGetComputeSystemFromOperation","features":[177]},{"name":"HcsGetComputeSystemProperties","features":[177]},{"name":"HcsGetLayerVhdMountPath","features":[1,177]},{"name":"HcsGetOperationContext","features":[177]},{"name":"HcsGetOperationId","features":[177]},{"name":"HcsGetOperationResult","features":[177]},{"name":"HcsGetOperationResultAndProcessInfo","features":[1,177]},{"name":"HcsGetOperationType","features":[177]},{"name":"HcsGetProcessFromOperation","features":[177]},{"name":"HcsGetProcessInfo","features":[177]},{"name":"HcsGetProcessProperties","features":[177]},{"name":"HcsGetProcessorCompatibilityFromSavedState","features":[177]},{"name":"HcsGetServiceProperties","features":[177]},{"name":"HcsGrantVmAccess","features":[177]},{"name":"HcsGrantVmGroupAccess","features":[177]},{"name":"HcsImportLayer","features":[177]},{"name":"HcsInitializeLegacyWritableLayer","features":[177]},{"name":"HcsInitializeWritableLayer","features":[177]},{"name":"HcsModifyComputeSystem","features":[1,177]},{"name":"HcsModifyProcess","features":[177]},{"name":"HcsModifyServiceSettings","features":[177]},{"name":"HcsNotificationFlagFailure","features":[177]},{"name":"HcsNotificationFlagSuccess","features":[177]},{"name":"HcsNotificationFlagsReserved","features":[177]},{"name":"HcsNotificationInvalid","features":[177]},{"name":"HcsNotificationOperationProgressUpdate","features":[177]},{"name":"HcsNotificationProcessExited","features":[177]},{"name":"HcsNotificationServiceDisconnect","features":[177]},{"name":"HcsNotificationSystemCrashInitiated","features":[177]},{"name":"HcsNotificationSystemCrashReport","features":[177]},{"name":"HcsNotificationSystemCreateCompleted","features":[177]},{"name":"HcsNotificationSystemExited","features":[177]},{"name":"HcsNotificationSystemGetPropertiesCompleted","features":[177]},{"name":"HcsNotificationSystemGuestConnectionClosed","features":[177]},{"name":"HcsNotificationSystemModifyCompleted","features":[177]},{"name":"HcsNotificationSystemOperationCompletion","features":[177]},{"name":"HcsNotificationSystemPassThru","features":[177]},{"name":"HcsNotificationSystemPauseCompleted","features":[177]},{"name":"HcsNotificationSystemRdpEnhancedModeStateChanged","features":[177]},{"name":"HcsNotificationSystemResumeCompleted","features":[177]},{"name":"HcsNotificationSystemSaveCompleted","features":[177]},{"name":"HcsNotificationSystemShutdownCompleted","features":[177]},{"name":"HcsNotificationSystemShutdownFailed","features":[177]},{"name":"HcsNotificationSystemSiloJobCreated","features":[177]},{"name":"HcsNotificationSystemStartCompleted","features":[177]},{"name":"HcsOpenComputeSystem","features":[177]},{"name":"HcsOpenComputeSystemInNamespace","features":[177]},{"name":"HcsOpenProcess","features":[177]},{"name":"HcsOperationOptionNone","features":[177]},{"name":"HcsOperationOptionProgressUpdate","features":[177]},{"name":"HcsOperationTypeCrash","features":[177]},{"name":"HcsOperationTypeCreate","features":[177]},{"name":"HcsOperationTypeCreateProcess","features":[177]},{"name":"HcsOperationTypeEnumerate","features":[177]},{"name":"HcsOperationTypeGetProcessInfo","features":[177]},{"name":"HcsOperationTypeGetProcessProperties","features":[177]},{"name":"HcsOperationTypeGetProperties","features":[177]},{"name":"HcsOperationTypeModify","features":[177]},{"name":"HcsOperationTypeModifyProcess","features":[177]},{"name":"HcsOperationTypeNone","features":[177]},{"name":"HcsOperationTypePause","features":[177]},{"name":"HcsOperationTypeResume","features":[177]},{"name":"HcsOperationTypeSave","features":[177]},{"name":"HcsOperationTypeShutdown","features":[177]},{"name":"HcsOperationTypeSignalProcess","features":[177]},{"name":"HcsOperationTypeStart","features":[177]},{"name":"HcsOperationTypeTerminate","features":[177]},{"name":"HcsPauseComputeSystem","features":[177]},{"name":"HcsResourceTypeFile","features":[177]},{"name":"HcsResourceTypeJob","features":[177]},{"name":"HcsResourceTypeNone","features":[177]},{"name":"HcsResumeComputeSystem","features":[177]},{"name":"HcsRevokeVmAccess","features":[177]},{"name":"HcsRevokeVmGroupAccess","features":[177]},{"name":"HcsSaveComputeSystem","features":[177]},{"name":"HcsSetComputeSystemCallback","features":[177]},{"name":"HcsSetOperationCallback","features":[177]},{"name":"HcsSetOperationContext","features":[177]},{"name":"HcsSetProcessCallback","features":[177]},{"name":"HcsSetupBaseOSLayer","features":[1,177]},{"name":"HcsSetupBaseOSVolume","features":[177]},{"name":"HcsShutDownComputeSystem","features":[177]},{"name":"HcsSignalProcess","features":[177]},{"name":"HcsStartComputeSystem","features":[177]},{"name":"HcsSubmitWerReport","features":[177]},{"name":"HcsTerminateComputeSystem","features":[177]},{"name":"HcsTerminateProcess","features":[177]},{"name":"HcsWaitForComputeSystemExit","features":[177]},{"name":"HcsWaitForOperationResult","features":[177]},{"name":"HcsWaitForOperationResultAndProcessInfo","features":[1,177]},{"name":"HcsWaitForProcessExit","features":[177]}],"570":[{"name":"ARM64_RegisterActlrEl1","features":[178]},{"name":"ARM64_RegisterAmairEl1","features":[178]},{"name":"ARM64_RegisterCntkctlEl1","features":[178]},{"name":"ARM64_RegisterCntvCtlEl0","features":[178]},{"name":"ARM64_RegisterCntvCvalEl0","features":[178]},{"name":"ARM64_RegisterContextIdrEl1","features":[178]},{"name":"ARM64_RegisterCpacrEl1","features":[178]},{"name":"ARM64_RegisterCpsr","features":[178]},{"name":"ARM64_RegisterCsselrEl1","features":[178]},{"name":"ARM64_RegisterElrEl1","features":[178]},{"name":"ARM64_RegisterEsrEl1","features":[178]},{"name":"ARM64_RegisterFarEl1","features":[178]},{"name":"ARM64_RegisterFpControl","features":[178]},{"name":"ARM64_RegisterFpStatus","features":[178]},{"name":"ARM64_RegisterMairEl1","features":[178]},{"name":"ARM64_RegisterMax","features":[178]},{"name":"ARM64_RegisterParEl1","features":[178]},{"name":"ARM64_RegisterPc","features":[178]},{"name":"ARM64_RegisterQ0","features":[178]},{"name":"ARM64_RegisterQ1","features":[178]},{"name":"ARM64_RegisterQ10","features":[178]},{"name":"ARM64_RegisterQ11","features":[178]},{"name":"ARM64_RegisterQ12","features":[178]},{"name":"ARM64_RegisterQ13","features":[178]},{"name":"ARM64_RegisterQ14","features":[178]},{"name":"ARM64_RegisterQ15","features":[178]},{"name":"ARM64_RegisterQ16","features":[178]},{"name":"ARM64_RegisterQ17","features":[178]},{"name":"ARM64_RegisterQ18","features":[178]},{"name":"ARM64_RegisterQ19","features":[178]},{"name":"ARM64_RegisterQ2","features":[178]},{"name":"ARM64_RegisterQ20","features":[178]},{"name":"ARM64_RegisterQ21","features":[178]},{"name":"ARM64_RegisterQ22","features":[178]},{"name":"ARM64_RegisterQ23","features":[178]},{"name":"ARM64_RegisterQ24","features":[178]},{"name":"ARM64_RegisterQ25","features":[178]},{"name":"ARM64_RegisterQ26","features":[178]},{"name":"ARM64_RegisterQ27","features":[178]},{"name":"ARM64_RegisterQ28","features":[178]},{"name":"ARM64_RegisterQ29","features":[178]},{"name":"ARM64_RegisterQ3","features":[178]},{"name":"ARM64_RegisterQ30","features":[178]},{"name":"ARM64_RegisterQ31","features":[178]},{"name":"ARM64_RegisterQ4","features":[178]},{"name":"ARM64_RegisterQ5","features":[178]},{"name":"ARM64_RegisterQ6","features":[178]},{"name":"ARM64_RegisterQ7","features":[178]},{"name":"ARM64_RegisterQ8","features":[178]},{"name":"ARM64_RegisterQ9","features":[178]},{"name":"ARM64_RegisterSctlrEl1","features":[178]},{"name":"ARM64_RegisterSpEl0","features":[178]},{"name":"ARM64_RegisterSpEl1","features":[178]},{"name":"ARM64_RegisterSpsrEl1","features":[178]},{"name":"ARM64_RegisterTcrEl1","features":[178]},{"name":"ARM64_RegisterTpidrEl0","features":[178]},{"name":"ARM64_RegisterTpidrEl1","features":[178]},{"name":"ARM64_RegisterTpidrroEl0","features":[178]},{"name":"ARM64_RegisterTtbr0El1","features":[178]},{"name":"ARM64_RegisterTtbr1El1","features":[178]},{"name":"ARM64_RegisterVbarEl1","features":[178]},{"name":"ARM64_RegisterX0","features":[178]},{"name":"ARM64_RegisterX1","features":[178]},{"name":"ARM64_RegisterX10","features":[178]},{"name":"ARM64_RegisterX11","features":[178]},{"name":"ARM64_RegisterX12","features":[178]},{"name":"ARM64_RegisterX13","features":[178]},{"name":"ARM64_RegisterX14","features":[178]},{"name":"ARM64_RegisterX15","features":[178]},{"name":"ARM64_RegisterX16","features":[178]},{"name":"ARM64_RegisterX17","features":[178]},{"name":"ARM64_RegisterX18","features":[178]},{"name":"ARM64_RegisterX19","features":[178]},{"name":"ARM64_RegisterX2","features":[178]},{"name":"ARM64_RegisterX20","features":[178]},{"name":"ARM64_RegisterX21","features":[178]},{"name":"ARM64_RegisterX22","features":[178]},{"name":"ARM64_RegisterX23","features":[178]},{"name":"ARM64_RegisterX24","features":[178]},{"name":"ARM64_RegisterX25","features":[178]},{"name":"ARM64_RegisterX26","features":[178]},{"name":"ARM64_RegisterX27","features":[178]},{"name":"ARM64_RegisterX28","features":[178]},{"name":"ARM64_RegisterX3","features":[178]},{"name":"ARM64_RegisterX4","features":[178]},{"name":"ARM64_RegisterX5","features":[178]},{"name":"ARM64_RegisterX6","features":[178]},{"name":"ARM64_RegisterX7","features":[178]},{"name":"ARM64_RegisterX8","features":[178]},{"name":"ARM64_RegisterX9","features":[178]},{"name":"ARM64_RegisterXFp","features":[178]},{"name":"ARM64_RegisterXLr","features":[178]},{"name":"ApplyGuestMemoryFix","features":[178]},{"name":"ApplyPendingSavedStateFileReplayLog","features":[178]},{"name":"Arch_Armv8","features":[178]},{"name":"Arch_Unknown","features":[178]},{"name":"Arch_x64","features":[178]},{"name":"Arch_x86","features":[178]},{"name":"CallStackUnwind","features":[178]},{"name":"DOS_IMAGE_INFO","features":[178]},{"name":"FOUND_IMAGE_CALLBACK","features":[1,178]},{"name":"FindSavedStateSymbolFieldInType","features":[1,178]},{"name":"ForceActiveVirtualTrustLevel","features":[178]},{"name":"ForceArchitecture","features":[178]},{"name":"ForceNestedHostMode","features":[1,178]},{"name":"ForcePagingMode","features":[178]},{"name":"GPA_MEMORY_CHUNK","features":[178]},{"name":"GUEST_OS_INFO","features":[178]},{"name":"GUEST_OS_MICROSOFT_IDS","features":[178]},{"name":"GUEST_OS_OPENSOURCE_IDS","features":[178]},{"name":"GUEST_OS_VENDOR","features":[178]},{"name":"GUEST_SYMBOLS_PROVIDER_DEBUG_INFO_CALLBACK","features":[178]},{"name":"GUID_DEVINTERFACE_VM_GENCOUNTER","features":[178]},{"name":"GetActiveVirtualTrustLevel","features":[178]},{"name":"GetArchitecture","features":[178]},{"name":"GetEnabledVirtualTrustLevels","features":[178]},{"name":"GetGuestEnabledVirtualTrustLevels","features":[178]},{"name":"GetGuestOsInfo","features":[178]},{"name":"GetGuestPhysicalMemoryChunks","features":[178]},{"name":"GetGuestRawSavedMemorySize","features":[178]},{"name":"GetMemoryBlockCacheLimit","features":[178]},{"name":"GetNestedVirtualizationMode","features":[1,178]},{"name":"GetPagingMode","features":[178]},{"name":"GetRegisterValue","features":[178]},{"name":"GetSavedStateSymbolFieldInfo","features":[178]},{"name":"GetSavedStateSymbolProviderHandle","features":[1,178]},{"name":"GetSavedStateSymbolTypeSize","features":[178]},{"name":"GetVpCount","features":[178]},{"name":"GuestOsMicrosoftMSDOS","features":[178]},{"name":"GuestOsMicrosoftUndefined","features":[178]},{"name":"GuestOsMicrosoftWindows3x","features":[178]},{"name":"GuestOsMicrosoftWindows9x","features":[178]},{"name":"GuestOsMicrosoftWindowsCE","features":[178]},{"name":"GuestOsMicrosoftWindowsNT","features":[178]},{"name":"GuestOsOpenSourceFreeBSD","features":[178]},{"name":"GuestOsOpenSourceIllumos","features":[178]},{"name":"GuestOsOpenSourceLinux","features":[178]},{"name":"GuestOsOpenSourceUndefined","features":[178]},{"name":"GuestOsOpenSourceXen","features":[178]},{"name":"GuestOsVendorHPE","features":[178]},{"name":"GuestOsVendorLANCOM","features":[178]},{"name":"GuestOsVendorMicrosoft","features":[178]},{"name":"GuestOsVendorUndefined","features":[178]},{"name":"GuestPhysicalAddressToRawSavedMemoryOffset","features":[178]},{"name":"GuestVirtualAddressToPhysicalAddress","features":[178]},{"name":"HDV_DEVICE_HOST_FLAGS","features":[178]},{"name":"HDV_DEVICE_TYPE","features":[178]},{"name":"HDV_DOORBELL_FLAGS","features":[178]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_ANY_VALUE","features":[178]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_ANY","features":[178]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_BYTE","features":[178]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_DWORD","features":[178]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_QWORD","features":[178]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_WORD","features":[178]},{"name":"HDV_MMIO_MAPPING_FLAGS","features":[178]},{"name":"HDV_PCI_BAR0","features":[178]},{"name":"HDV_PCI_BAR1","features":[178]},{"name":"HDV_PCI_BAR2","features":[178]},{"name":"HDV_PCI_BAR3","features":[178]},{"name":"HDV_PCI_BAR4","features":[178]},{"name":"HDV_PCI_BAR5","features":[178]},{"name":"HDV_PCI_BAR_COUNT","features":[178]},{"name":"HDV_PCI_BAR_SELECTOR","features":[178]},{"name":"HDV_PCI_DEVICE_GET_DETAILS","features":[178]},{"name":"HDV_PCI_DEVICE_INITIALIZE","features":[178]},{"name":"HDV_PCI_DEVICE_INTERFACE","features":[178]},{"name":"HDV_PCI_DEVICE_SET_CONFIGURATION","features":[178]},{"name":"HDV_PCI_DEVICE_START","features":[178]},{"name":"HDV_PCI_DEVICE_STOP","features":[178]},{"name":"HDV_PCI_DEVICE_TEARDOWN","features":[178]},{"name":"HDV_PCI_INTERFACE_VERSION","features":[178]},{"name":"HDV_PCI_PNP_ID","features":[178]},{"name":"HDV_PCI_READ_CONFIG_SPACE","features":[178]},{"name":"HDV_PCI_READ_INTERCEPTED_MEMORY","features":[178]},{"name":"HDV_PCI_WRITE_CONFIG_SPACE","features":[178]},{"name":"HDV_PCI_WRITE_INTERCEPTED_MEMORY","features":[178]},{"name":"HVSOCKET_ADDRESS_FLAG_PASSTHRU","features":[178]},{"name":"HVSOCKET_ADDRESS_INFO","features":[178]},{"name":"HVSOCKET_CONNECTED_SUSPEND","features":[178]},{"name":"HVSOCKET_CONNECT_TIMEOUT","features":[178]},{"name":"HVSOCKET_CONNECT_TIMEOUT_MAX","features":[178]},{"name":"HVSOCKET_HIGH_VTL","features":[178]},{"name":"HV_GUID_BROADCAST","features":[178]},{"name":"HV_GUID_CHILDREN","features":[178]},{"name":"HV_GUID_LOOPBACK","features":[178]},{"name":"HV_GUID_PARENT","features":[178]},{"name":"HV_GUID_SILOHOST","features":[178]},{"name":"HV_GUID_VSOCK_TEMPLATE","features":[178]},{"name":"HV_GUID_ZERO","features":[178]},{"name":"HV_PROTOCOL_RAW","features":[178]},{"name":"HdvCreateDeviceInstance","features":[178]},{"name":"HdvCreateGuestMemoryAperture","features":[1,178]},{"name":"HdvCreateSectionBackedMmioRange","features":[1,178]},{"name":"HdvDeliverGuestInterrupt","features":[178]},{"name":"HdvDestroyGuestMemoryAperture","features":[178]},{"name":"HdvDestroySectionBackedMmioRange","features":[178]},{"name":"HdvDeviceHostFlagInitializeComSecurity","features":[178]},{"name":"HdvDeviceHostFlagNone","features":[178]},{"name":"HdvDeviceTypePCI","features":[178]},{"name":"HdvDeviceTypeUndefined","features":[178]},{"name":"HdvInitializeDeviceHost","features":[177,178]},{"name":"HdvInitializeDeviceHostEx","features":[177,178]},{"name":"HdvMmioMappingFlagExecutable","features":[178]},{"name":"HdvMmioMappingFlagNone","features":[178]},{"name":"HdvMmioMappingFlagWriteable","features":[178]},{"name":"HdvPciDeviceInterfaceVersion1","features":[178]},{"name":"HdvPciDeviceInterfaceVersionInvalid","features":[178]},{"name":"HdvReadGuestMemory","features":[178]},{"name":"HdvRegisterDoorbell","features":[1,178]},{"name":"HdvTeardownDeviceHost","features":[178]},{"name":"HdvUnregisterDoorbell","features":[178]},{"name":"HdvWriteGuestMemory","features":[178]},{"name":"IOCTL_VMGENCOUNTER_READ","features":[178]},{"name":"InKernelSpace","features":[1,178]},{"name":"IsActiveVirtualTrustLevelEnabled","features":[1,178]},{"name":"IsNestedVirtualizationEnabled","features":[1,178]},{"name":"LoadSavedStateFile","features":[178]},{"name":"LoadSavedStateFiles","features":[178]},{"name":"LoadSavedStateModuleSymbols","features":[178]},{"name":"LoadSavedStateModuleSymbolsEx","features":[178]},{"name":"LoadSavedStateSymbolProvider","features":[1,178]},{"name":"LocateSavedStateFiles","features":[178]},{"name":"MODULE_INFO","features":[178]},{"name":"PAGING_MODE","features":[178]},{"name":"Paging_32Bit","features":[178]},{"name":"Paging_Armv8","features":[178]},{"name":"Paging_Invalid","features":[178]},{"name":"Paging_Long","features":[178]},{"name":"Paging_NonPaged","features":[178]},{"name":"Paging_Pae","features":[178]},{"name":"ProcessorVendor_Amd","features":[178]},{"name":"ProcessorVendor_Arm","features":[178]},{"name":"ProcessorVendor_Hygon","features":[178]},{"name":"ProcessorVendor_Intel","features":[178]},{"name":"ProcessorVendor_Unknown","features":[178]},{"name":"REGISTER_ID","features":[178]},{"name":"ReadGuestPhysicalAddress","features":[178]},{"name":"ReadGuestRawSavedMemory","features":[178]},{"name":"ReadSavedStateGlobalVariable","features":[178]},{"name":"ReleaseSavedStateFiles","features":[178]},{"name":"ReleaseSavedStateSymbolProvider","features":[178]},{"name":"ResolveSavedStateGlobalVariableAddress","features":[178]},{"name":"SOCKADDR_HV","features":[15,178]},{"name":"ScanMemoryForDosImages","features":[1,178]},{"name":"SetMemoryBlockCacheLimit","features":[178]},{"name":"SetSavedStateSymbolProviderDebugInfoCallback","features":[178]},{"name":"VIRTUAL_PROCESSOR_ARCH","features":[178]},{"name":"VIRTUAL_PROCESSOR_REGISTER","features":[178]},{"name":"VIRTUAL_PROCESSOR_VENDOR","features":[178]},{"name":"VM_GENCOUNTER","features":[178]},{"name":"VM_GENCOUNTER_SYMBOLIC_LINK_NAME","features":[178]},{"name":"WHV_ACCESS_GPA_CONTROLS","features":[178]},{"name":"WHV_ADVISE_GPA_RANGE","features":[178]},{"name":"WHV_ADVISE_GPA_RANGE_CODE","features":[178]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE","features":[178]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE_FLAGS","features":[178]},{"name":"WHV_ALLOCATE_VPCI_RESOURCE_FLAGS","features":[178]},{"name":"WHV_ANY_VP","features":[178]},{"name":"WHV_CACHE_TYPE","features":[178]},{"name":"WHV_CAPABILITY","features":[1,178]},{"name":"WHV_CAPABILITY_CODE","features":[178]},{"name":"WHV_CAPABILITY_FEATURES","features":[178]},{"name":"WHV_CAPABILITY_PROCESSOR_FREQUENCY_CAP","features":[178]},{"name":"WHV_CPUID_OUTPUT","features":[178]},{"name":"WHV_CREATE_VPCI_DEVICE_FLAGS","features":[178]},{"name":"WHV_DOORBELL_MATCH_DATA","features":[178]},{"name":"WHV_EMULATOR_CALLBACKS","features":[178]},{"name":"WHV_EMULATOR_GET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[178]},{"name":"WHV_EMULATOR_IO_ACCESS_INFO","features":[178]},{"name":"WHV_EMULATOR_IO_PORT_CALLBACK","features":[178]},{"name":"WHV_EMULATOR_MEMORY_ACCESS_INFO","features":[178]},{"name":"WHV_EMULATOR_MEMORY_CALLBACK","features":[178]},{"name":"WHV_EMULATOR_SET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[178]},{"name":"WHV_EMULATOR_STATUS","features":[178]},{"name":"WHV_EMULATOR_TRANSLATE_GVA_PAGE_CALLBACK","features":[178]},{"name":"WHV_EXCEPTION_TYPE","features":[178]},{"name":"WHV_EXTENDED_VM_EXITS","features":[178]},{"name":"WHV_HYPERCALL_CONTEXT","features":[178]},{"name":"WHV_HYPERCALL_CONTEXT_MAX_XMM_REGISTERS","features":[178]},{"name":"WHV_INTERNAL_ACTIVITY_REGISTER","features":[178]},{"name":"WHV_INTERRUPT_CONTROL","features":[178]},{"name":"WHV_INTERRUPT_DESTINATION_MODE","features":[178]},{"name":"WHV_INTERRUPT_TRIGGER_MODE","features":[178]},{"name":"WHV_INTERRUPT_TYPE","features":[178]},{"name":"WHV_MAP_GPA_RANGE_FLAGS","features":[178]},{"name":"WHV_MAX_DEVICE_ID_SIZE_IN_CHARS","features":[178]},{"name":"WHV_MEMORY_ACCESS_CONTEXT","features":[178]},{"name":"WHV_MEMORY_ACCESS_INFO","features":[178]},{"name":"WHV_MEMORY_ACCESS_TYPE","features":[178]},{"name":"WHV_MEMORY_RANGE_ENTRY","features":[178]},{"name":"WHV_MSR_ACTION","features":[178]},{"name":"WHV_MSR_ACTION_ENTRY","features":[178]},{"name":"WHV_NOTIFICATION_PORT_PARAMETERS","features":[178]},{"name":"WHV_NOTIFICATION_PORT_PROPERTY_CODE","features":[178]},{"name":"WHV_NOTIFICATION_PORT_TYPE","features":[178]},{"name":"WHV_PARTITION_COUNTER_SET","features":[178]},{"name":"WHV_PARTITION_HANDLE","features":[178]},{"name":"WHV_PARTITION_MEMORY_COUNTERS","features":[178]},{"name":"WHV_PARTITION_PROPERTY","features":[1,178]},{"name":"WHV_PARTITION_PROPERTY_CODE","features":[178]},{"name":"WHV_PROCESSOR_APIC_COUNTERS","features":[178]},{"name":"WHV_PROCESSOR_COUNTER_SET","features":[178]},{"name":"WHV_PROCESSOR_EVENT_COUNTERS","features":[178]},{"name":"WHV_PROCESSOR_FEATURES","features":[178]},{"name":"WHV_PROCESSOR_FEATURES1","features":[178]},{"name":"WHV_PROCESSOR_FEATURES_BANKS","features":[178]},{"name":"WHV_PROCESSOR_FEATURES_BANKS_COUNT","features":[178]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTER","features":[178]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTERS","features":[178]},{"name":"WHV_PROCESSOR_PERFMON_FEATURES","features":[178]},{"name":"WHV_PROCESSOR_RUNTIME_COUNTERS","features":[178]},{"name":"WHV_PROCESSOR_SYNTHETIC_FEATURES_COUNTERS","features":[178]},{"name":"WHV_PROCESSOR_VENDOR","features":[178]},{"name":"WHV_PROCESSOR_XSAVE_FEATURES","features":[178]},{"name":"WHV_READ_WRITE_GPA_RANGE_MAX_SIZE","features":[178]},{"name":"WHV_REGISTER_NAME","features":[178]},{"name":"WHV_REGISTER_VALUE","features":[178]},{"name":"WHV_RUN_VP_CANCELED_CONTEXT","features":[178]},{"name":"WHV_RUN_VP_CANCEL_REASON","features":[178]},{"name":"WHV_RUN_VP_EXIT_CONTEXT","features":[178]},{"name":"WHV_RUN_VP_EXIT_REASON","features":[178]},{"name":"WHV_SCHEDULER_FEATURES","features":[178]},{"name":"WHV_SRIOV_RESOURCE_DESCRIPTOR","features":[1,178]},{"name":"WHV_SYNIC_EVENT_PARAMETERS","features":[178]},{"name":"WHV_SYNIC_MESSAGE_SIZE","features":[178]},{"name":"WHV_SYNIC_SINT_DELIVERABLE_CONTEXT","features":[178]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES","features":[178]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS","features":[178]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS_COUNT","features":[178]},{"name":"WHV_TRANSLATE_GVA_FLAGS","features":[178]},{"name":"WHV_TRANSLATE_GVA_RESULT","features":[178]},{"name":"WHV_TRANSLATE_GVA_RESULT_CODE","features":[178]},{"name":"WHV_TRIGGER_PARAMETERS","features":[178]},{"name":"WHV_TRIGGER_TYPE","features":[178]},{"name":"WHV_UINT128","features":[178]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY","features":[178]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY_CODE","features":[178]},{"name":"WHV_VIRTUAL_PROCESSOR_STATE_TYPE","features":[178]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION","features":[178]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION_TYPE","features":[178]},{"name":"WHV_VPCI_DEVICE_PROPERTY_CODE","features":[178]},{"name":"WHV_VPCI_DEVICE_REGISTER","features":[178]},{"name":"WHV_VPCI_DEVICE_REGISTER_SPACE","features":[178]},{"name":"WHV_VPCI_HARDWARE_IDS","features":[178]},{"name":"WHV_VPCI_INTERRUPT_TARGET","features":[178]},{"name":"WHV_VPCI_INTERRUPT_TARGET_FLAGS","features":[178]},{"name":"WHV_VPCI_MMIO_MAPPING","features":[178]},{"name":"WHV_VPCI_MMIO_RANGE_FLAGS","features":[178]},{"name":"WHV_VPCI_PROBED_BARS","features":[178]},{"name":"WHV_VPCI_TYPE0_BAR_COUNT","features":[178]},{"name":"WHV_VP_EXCEPTION_CONTEXT","features":[178]},{"name":"WHV_VP_EXCEPTION_INFO","features":[178]},{"name":"WHV_VP_EXIT_CONTEXT","features":[178]},{"name":"WHV_X64_APIC_EOI_CONTEXT","features":[178]},{"name":"WHV_X64_APIC_INIT_SIPI_CONTEXT","features":[178]},{"name":"WHV_X64_APIC_SMI_CONTEXT","features":[178]},{"name":"WHV_X64_APIC_WRITE_CONTEXT","features":[178]},{"name":"WHV_X64_APIC_WRITE_TYPE","features":[178]},{"name":"WHV_X64_CPUID_ACCESS_CONTEXT","features":[178]},{"name":"WHV_X64_CPUID_RESULT","features":[178]},{"name":"WHV_X64_CPUID_RESULT2","features":[178]},{"name":"WHV_X64_CPUID_RESULT2_FLAGS","features":[178]},{"name":"WHV_X64_DELIVERABILITY_NOTIFICATIONS_REGISTER","features":[178]},{"name":"WHV_X64_FP_CONTROL_STATUS_REGISTER","features":[178]},{"name":"WHV_X64_FP_REGISTER","features":[178]},{"name":"WHV_X64_INTERRUPTION_DELIVERABLE_CONTEXT","features":[178]},{"name":"WHV_X64_INTERRUPT_STATE_REGISTER","features":[178]},{"name":"WHV_X64_IO_PORT_ACCESS_CONTEXT","features":[178]},{"name":"WHV_X64_IO_PORT_ACCESS_INFO","features":[178]},{"name":"WHV_X64_LOCAL_APIC_EMULATION_MODE","features":[178]},{"name":"WHV_X64_MSR_ACCESS_CONTEXT","features":[178]},{"name":"WHV_X64_MSR_ACCESS_INFO","features":[178]},{"name":"WHV_X64_MSR_EXIT_BITMAP","features":[178]},{"name":"WHV_X64_PENDING_DEBUG_EXCEPTION","features":[178]},{"name":"WHV_X64_PENDING_EVENT_TYPE","features":[178]},{"name":"WHV_X64_PENDING_EXCEPTION_EVENT","features":[178]},{"name":"WHV_X64_PENDING_EXT_INT_EVENT","features":[178]},{"name":"WHV_X64_PENDING_INTERRUPTION_REGISTER","features":[178]},{"name":"WHV_X64_PENDING_INTERRUPTION_TYPE","features":[178]},{"name":"WHV_X64_RDTSC_CONTEXT","features":[178]},{"name":"WHV_X64_RDTSC_INFO","features":[178]},{"name":"WHV_X64_SEGMENT_REGISTER","features":[178]},{"name":"WHV_X64_TABLE_REGISTER","features":[178]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CODE","features":[178]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CONTEXT","features":[178]},{"name":"WHV_X64_VP_EXECUTION_STATE","features":[178]},{"name":"WHV_X64_XMM_CONTROL_STATUS_REGISTER","features":[178]},{"name":"WHvAcceptPartitionMigration","features":[1,178]},{"name":"WHvAdviseGpaRange","features":[178]},{"name":"WHvAdviseGpaRangeCodePin","features":[178]},{"name":"WHvAdviseGpaRangeCodePopulate","features":[178]},{"name":"WHvAdviseGpaRangeCodeUnpin","features":[178]},{"name":"WHvAllocateVpciResource","features":[1,178]},{"name":"WHvAllocateVpciResourceFlagAllowDirectP2P","features":[178]},{"name":"WHvAllocateVpciResourceFlagNone","features":[178]},{"name":"WHvCacheTypeUncached","features":[178]},{"name":"WHvCacheTypeWriteBack","features":[178]},{"name":"WHvCacheTypeWriteCombining","features":[178]},{"name":"WHvCacheTypeWriteThrough","features":[178]},{"name":"WHvCancelPartitionMigration","features":[178]},{"name":"WHvCancelRunVirtualProcessor","features":[178]},{"name":"WHvCapabilityCodeExceptionExitBitmap","features":[178]},{"name":"WHvCapabilityCodeExtendedVmExits","features":[178]},{"name":"WHvCapabilityCodeFeatures","features":[178]},{"name":"WHvCapabilityCodeGpaRangePopulateFlags","features":[178]},{"name":"WHvCapabilityCodeHypervisorPresent","features":[178]},{"name":"WHvCapabilityCodeInterruptClockFrequency","features":[178]},{"name":"WHvCapabilityCodeProcessorClFlushSize","features":[178]},{"name":"WHvCapabilityCodeProcessorClockFrequency","features":[178]},{"name":"WHvCapabilityCodeProcessorFeatures","features":[178]},{"name":"WHvCapabilityCodeProcessorFeaturesBanks","features":[178]},{"name":"WHvCapabilityCodeProcessorFrequencyCap","features":[178]},{"name":"WHvCapabilityCodeProcessorPerfmonFeatures","features":[178]},{"name":"WHvCapabilityCodeProcessorVendor","features":[178]},{"name":"WHvCapabilityCodeProcessorXsaveFeatures","features":[178]},{"name":"WHvCapabilityCodeSchedulerFeatures","features":[178]},{"name":"WHvCapabilityCodeSyntheticProcessorFeaturesBanks","features":[178]},{"name":"WHvCapabilityCodeX64MsrExitBitmap","features":[178]},{"name":"WHvCompletePartitionMigration","features":[178]},{"name":"WHvCreateNotificationPort","features":[1,178]},{"name":"WHvCreatePartition","features":[178]},{"name":"WHvCreateTrigger","features":[1,178]},{"name":"WHvCreateVirtualProcessor","features":[178]},{"name":"WHvCreateVirtualProcessor2","features":[178]},{"name":"WHvCreateVpciDevice","features":[1,178]},{"name":"WHvCreateVpciDeviceFlagNone","features":[178]},{"name":"WHvCreateVpciDeviceFlagPhysicallyBacked","features":[178]},{"name":"WHvCreateVpciDeviceFlagUseLogicalInterrupts","features":[178]},{"name":"WHvDeleteNotificationPort","features":[178]},{"name":"WHvDeletePartition","features":[178]},{"name":"WHvDeleteTrigger","features":[178]},{"name":"WHvDeleteVirtualProcessor","features":[178]},{"name":"WHvDeleteVpciDevice","features":[178]},{"name":"WHvEmulatorCreateEmulator","features":[178]},{"name":"WHvEmulatorDestroyEmulator","features":[178]},{"name":"WHvEmulatorTryIoEmulation","features":[178]},{"name":"WHvEmulatorTryMmioEmulation","features":[178]},{"name":"WHvGetCapability","features":[178]},{"name":"WHvGetInterruptTargetVpSet","features":[178]},{"name":"WHvGetPartitionCounters","features":[178]},{"name":"WHvGetPartitionProperty","features":[178]},{"name":"WHvGetVirtualProcessorCounters","features":[178]},{"name":"WHvGetVirtualProcessorCpuidOutput","features":[178]},{"name":"WHvGetVirtualProcessorInterruptControllerState","features":[178]},{"name":"WHvGetVirtualProcessorInterruptControllerState2","features":[178]},{"name":"WHvGetVirtualProcessorRegisters","features":[178]},{"name":"WHvGetVirtualProcessorState","features":[178]},{"name":"WHvGetVirtualProcessorXsaveState","features":[178]},{"name":"WHvGetVpciDeviceInterruptTarget","features":[178]},{"name":"WHvGetVpciDeviceNotification","features":[178]},{"name":"WHvGetVpciDeviceProperty","features":[178]},{"name":"WHvMapGpaRange","features":[178]},{"name":"WHvMapGpaRange2","features":[1,178]},{"name":"WHvMapGpaRangeFlagExecute","features":[178]},{"name":"WHvMapGpaRangeFlagNone","features":[178]},{"name":"WHvMapGpaRangeFlagRead","features":[178]},{"name":"WHvMapGpaRangeFlagTrackDirtyPages","features":[178]},{"name":"WHvMapGpaRangeFlagWrite","features":[178]},{"name":"WHvMapVpciDeviceInterrupt","features":[178]},{"name":"WHvMapVpciDeviceMmioRanges","features":[178]},{"name":"WHvMemoryAccessExecute","features":[178]},{"name":"WHvMemoryAccessRead","features":[178]},{"name":"WHvMemoryAccessWrite","features":[178]},{"name":"WHvMsrActionArchitectureDefault","features":[178]},{"name":"WHvMsrActionExit","features":[178]},{"name":"WHvMsrActionIgnoreWriteReadZero","features":[178]},{"name":"WHvNotificationPortPropertyPreferredTargetDuration","features":[178]},{"name":"WHvNotificationPortPropertyPreferredTargetVp","features":[178]},{"name":"WHvNotificationPortTypeDoorbell","features":[178]},{"name":"WHvNotificationPortTypeEvent","features":[178]},{"name":"WHvPartitionCounterSetMemory","features":[178]},{"name":"WHvPartitionPropertyCodeAllowDeviceAssignment","features":[178]},{"name":"WHvPartitionPropertyCodeApicRemoteReadSupport","features":[178]},{"name":"WHvPartitionPropertyCodeCpuCap","features":[178]},{"name":"WHvPartitionPropertyCodeCpuGroupId","features":[178]},{"name":"WHvPartitionPropertyCodeCpuReserve","features":[178]},{"name":"WHvPartitionPropertyCodeCpuWeight","features":[178]},{"name":"WHvPartitionPropertyCodeCpuidExitList","features":[178]},{"name":"WHvPartitionPropertyCodeCpuidResultList","features":[178]},{"name":"WHvPartitionPropertyCodeCpuidResultList2","features":[178]},{"name":"WHvPartitionPropertyCodeDisableSmt","features":[178]},{"name":"WHvPartitionPropertyCodeExceptionExitBitmap","features":[178]},{"name":"WHvPartitionPropertyCodeExtendedVmExits","features":[178]},{"name":"WHvPartitionPropertyCodeInterruptClockFrequency","features":[178]},{"name":"WHvPartitionPropertyCodeLocalApicEmulationMode","features":[178]},{"name":"WHvPartitionPropertyCodeMsrActionList","features":[178]},{"name":"WHvPartitionPropertyCodeNestedVirtualization","features":[178]},{"name":"WHvPartitionPropertyCodePrimaryNumaNode","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorClFlushSize","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorClockFrequency","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorCount","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorFeatures","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorFeaturesBanks","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorFrequencyCap","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorPerfmonFeatures","features":[178]},{"name":"WHvPartitionPropertyCodeProcessorXsaveFeatures","features":[178]},{"name":"WHvPartitionPropertyCodeReferenceTime","features":[178]},{"name":"WHvPartitionPropertyCodeSeparateSecurityDomain","features":[178]},{"name":"WHvPartitionPropertyCodeSyntheticProcessorFeaturesBanks","features":[178]},{"name":"WHvPartitionPropertyCodeUnimplementedMsrAction","features":[178]},{"name":"WHvPartitionPropertyCodeX64MsrExitBitmap","features":[178]},{"name":"WHvPostVirtualProcessorSynicMessage","features":[178]},{"name":"WHvProcessorCounterSetApic","features":[178]},{"name":"WHvProcessorCounterSetEvents","features":[178]},{"name":"WHvProcessorCounterSetIntercepts","features":[178]},{"name":"WHvProcessorCounterSetRuntime","features":[178]},{"name":"WHvProcessorCounterSetSyntheticFeatures","features":[178]},{"name":"WHvProcessorVendorAmd","features":[178]},{"name":"WHvProcessorVendorHygon","features":[178]},{"name":"WHvProcessorVendorIntel","features":[178]},{"name":"WHvQueryGpaRangeDirtyBitmap","features":[178]},{"name":"WHvReadGpaRange","features":[178]},{"name":"WHvReadVpciDeviceRegister","features":[178]},{"name":"WHvRegisterEom","features":[178]},{"name":"WHvRegisterGuestOsId","features":[178]},{"name":"WHvRegisterInternalActivityState","features":[178]},{"name":"WHvRegisterInterruptState","features":[178]},{"name":"WHvRegisterPartitionDoorbellEvent","features":[1,178]},{"name":"WHvRegisterPendingEvent","features":[178]},{"name":"WHvRegisterPendingInterruption","features":[178]},{"name":"WHvRegisterReferenceTsc","features":[178]},{"name":"WHvRegisterReferenceTscSequence","features":[178]},{"name":"WHvRegisterScontrol","features":[178]},{"name":"WHvRegisterSiefp","features":[178]},{"name":"WHvRegisterSimp","features":[178]},{"name":"WHvRegisterSint0","features":[178]},{"name":"WHvRegisterSint1","features":[178]},{"name":"WHvRegisterSint10","features":[178]},{"name":"WHvRegisterSint11","features":[178]},{"name":"WHvRegisterSint12","features":[178]},{"name":"WHvRegisterSint13","features":[178]},{"name":"WHvRegisterSint14","features":[178]},{"name":"WHvRegisterSint15","features":[178]},{"name":"WHvRegisterSint2","features":[178]},{"name":"WHvRegisterSint3","features":[178]},{"name":"WHvRegisterSint4","features":[178]},{"name":"WHvRegisterSint5","features":[178]},{"name":"WHvRegisterSint6","features":[178]},{"name":"WHvRegisterSint7","features":[178]},{"name":"WHvRegisterSint8","features":[178]},{"name":"WHvRegisterSint9","features":[178]},{"name":"WHvRegisterSversion","features":[178]},{"name":"WHvRegisterVpAssistPage","features":[178]},{"name":"WHvRegisterVpRuntime","features":[178]},{"name":"WHvRequestInterrupt","features":[178]},{"name":"WHvRequestVpciDeviceInterrupt","features":[178]},{"name":"WHvResetPartition","features":[178]},{"name":"WHvResumePartitionTime","features":[178]},{"name":"WHvRetargetVpciDeviceInterrupt","features":[178]},{"name":"WHvRunVirtualProcessor","features":[178]},{"name":"WHvRunVpCancelReasonUser","features":[178]},{"name":"WHvRunVpExitReasonCanceled","features":[178]},{"name":"WHvRunVpExitReasonException","features":[178]},{"name":"WHvRunVpExitReasonHypercall","features":[178]},{"name":"WHvRunVpExitReasonInvalidVpRegisterValue","features":[178]},{"name":"WHvRunVpExitReasonMemoryAccess","features":[178]},{"name":"WHvRunVpExitReasonNone","features":[178]},{"name":"WHvRunVpExitReasonSynicSintDeliverable","features":[178]},{"name":"WHvRunVpExitReasonUnrecoverableException","features":[178]},{"name":"WHvRunVpExitReasonUnsupportedFeature","features":[178]},{"name":"WHvRunVpExitReasonX64ApicEoi","features":[178]},{"name":"WHvRunVpExitReasonX64ApicInitSipiTrap","features":[178]},{"name":"WHvRunVpExitReasonX64ApicSmiTrap","features":[178]},{"name":"WHvRunVpExitReasonX64ApicWriteTrap","features":[178]},{"name":"WHvRunVpExitReasonX64Cpuid","features":[178]},{"name":"WHvRunVpExitReasonX64Halt","features":[178]},{"name":"WHvRunVpExitReasonX64InterruptWindow","features":[178]},{"name":"WHvRunVpExitReasonX64IoPortAccess","features":[178]},{"name":"WHvRunVpExitReasonX64MsrAccess","features":[178]},{"name":"WHvRunVpExitReasonX64Rdtsc","features":[178]},{"name":"WHvSetNotificationPortProperty","features":[178]},{"name":"WHvSetPartitionProperty","features":[178]},{"name":"WHvSetVirtualProcessorInterruptControllerState","features":[178]},{"name":"WHvSetVirtualProcessorInterruptControllerState2","features":[178]},{"name":"WHvSetVirtualProcessorRegisters","features":[178]},{"name":"WHvSetVirtualProcessorState","features":[178]},{"name":"WHvSetVirtualProcessorXsaveState","features":[178]},{"name":"WHvSetVpciDevicePowerState","features":[178,8]},{"name":"WHvSetupPartition","features":[178]},{"name":"WHvSignalVirtualProcessorSynicEvent","features":[1,178]},{"name":"WHvStartPartitionMigration","features":[1,178]},{"name":"WHvSuspendPartitionTime","features":[178]},{"name":"WHvTranslateGva","features":[178]},{"name":"WHvTranslateGvaFlagEnforceSmap","features":[178]},{"name":"WHvTranslateGvaFlagNone","features":[178]},{"name":"WHvTranslateGvaFlagOverrideSmap","features":[178]},{"name":"WHvTranslateGvaFlagPrivilegeExempt","features":[178]},{"name":"WHvTranslateGvaFlagSetPageTableBits","features":[178]},{"name":"WHvTranslateGvaFlagValidateExecute","features":[178]},{"name":"WHvTranslateGvaFlagValidateRead","features":[178]},{"name":"WHvTranslateGvaFlagValidateWrite","features":[178]},{"name":"WHvTranslateGvaResultGpaIllegalOverlayAccess","features":[178]},{"name":"WHvTranslateGvaResultGpaNoReadAccess","features":[178]},{"name":"WHvTranslateGvaResultGpaNoWriteAccess","features":[178]},{"name":"WHvTranslateGvaResultGpaUnmapped","features":[178]},{"name":"WHvTranslateGvaResultIntercept","features":[178]},{"name":"WHvTranslateGvaResultInvalidPageTableFlags","features":[178]},{"name":"WHvTranslateGvaResultPageNotPresent","features":[178]},{"name":"WHvTranslateGvaResultPrivilegeViolation","features":[178]},{"name":"WHvTranslateGvaResultSuccess","features":[178]},{"name":"WHvTriggerTypeDeviceInterrupt","features":[178]},{"name":"WHvTriggerTypeInterrupt","features":[178]},{"name":"WHvTriggerTypeSynicEvent","features":[178]},{"name":"WHvUnmapGpaRange","features":[178]},{"name":"WHvUnmapVpciDeviceInterrupt","features":[178]},{"name":"WHvUnmapVpciDeviceMmioRanges","features":[178]},{"name":"WHvUnregisterPartitionDoorbellEvent","features":[178]},{"name":"WHvUnsupportedFeatureIntercept","features":[178]},{"name":"WHvUnsupportedFeatureTaskSwitchTss","features":[178]},{"name":"WHvUpdateTriggerParameters","features":[178]},{"name":"WHvVirtualProcessorPropertyCodeNumaNode","features":[178]},{"name":"WHvVirtualProcessorStateTypeInterruptControllerState2","features":[178]},{"name":"WHvVirtualProcessorStateTypeSynicEventFlagPage","features":[178]},{"name":"WHvVirtualProcessorStateTypeSynicMessagePage","features":[178]},{"name":"WHvVirtualProcessorStateTypeSynicTimerState","features":[178]},{"name":"WHvVirtualProcessorStateTypeXsaveState","features":[178]},{"name":"WHvVpciBar0","features":[178]},{"name":"WHvVpciBar1","features":[178]},{"name":"WHvVpciBar2","features":[178]},{"name":"WHvVpciBar3","features":[178]},{"name":"WHvVpciBar4","features":[178]},{"name":"WHvVpciBar5","features":[178]},{"name":"WHvVpciConfigSpace","features":[178]},{"name":"WHvVpciDeviceNotificationMmioRemapping","features":[178]},{"name":"WHvVpciDeviceNotificationSurpriseRemoval","features":[178]},{"name":"WHvVpciDeviceNotificationUndefined","features":[178]},{"name":"WHvVpciDevicePropertyCodeHardwareIDs","features":[178]},{"name":"WHvVpciDevicePropertyCodeProbedBARs","features":[178]},{"name":"WHvVpciDevicePropertyCodeUndefined","features":[178]},{"name":"WHvVpciInterruptTargetFlagMulticast","features":[178]},{"name":"WHvVpciInterruptTargetFlagNone","features":[178]},{"name":"WHvVpciMmioRangeFlagReadAccess","features":[178]},{"name":"WHvVpciMmioRangeFlagWriteAccess","features":[178]},{"name":"WHvWriteGpaRange","features":[178]},{"name":"WHvWriteVpciDeviceRegister","features":[178]},{"name":"WHvX64ApicWriteTypeDfr","features":[178]},{"name":"WHvX64ApicWriteTypeLdr","features":[178]},{"name":"WHvX64ApicWriteTypeLint0","features":[178]},{"name":"WHvX64ApicWriteTypeLint1","features":[178]},{"name":"WHvX64ApicWriteTypeSvr","features":[178]},{"name":"WHvX64CpuidResult2FlagSubleafSpecific","features":[178]},{"name":"WHvX64CpuidResult2FlagVpSpecific","features":[178]},{"name":"WHvX64ExceptionTypeAlignmentCheckFault","features":[178]},{"name":"WHvX64ExceptionTypeBoundRangeFault","features":[178]},{"name":"WHvX64ExceptionTypeBreakpointTrap","features":[178]},{"name":"WHvX64ExceptionTypeDebugTrapOrFault","features":[178]},{"name":"WHvX64ExceptionTypeDeviceNotAvailableFault","features":[178]},{"name":"WHvX64ExceptionTypeDivideErrorFault","features":[178]},{"name":"WHvX64ExceptionTypeDoubleFaultAbort","features":[178]},{"name":"WHvX64ExceptionTypeFloatingPointErrorFault","features":[178]},{"name":"WHvX64ExceptionTypeGeneralProtectionFault","features":[178]},{"name":"WHvX64ExceptionTypeInvalidOpcodeFault","features":[178]},{"name":"WHvX64ExceptionTypeInvalidTaskStateSegmentFault","features":[178]},{"name":"WHvX64ExceptionTypeMachineCheckAbort","features":[178]},{"name":"WHvX64ExceptionTypeOverflowTrap","features":[178]},{"name":"WHvX64ExceptionTypePageFault","features":[178]},{"name":"WHvX64ExceptionTypeSegmentNotPresentFault","features":[178]},{"name":"WHvX64ExceptionTypeSimdFloatingPointFault","features":[178]},{"name":"WHvX64ExceptionTypeStackFault","features":[178]},{"name":"WHvX64InterruptDestinationModeLogical","features":[178]},{"name":"WHvX64InterruptDestinationModePhysical","features":[178]},{"name":"WHvX64InterruptTriggerModeEdge","features":[178]},{"name":"WHvX64InterruptTriggerModeLevel","features":[178]},{"name":"WHvX64InterruptTypeFixed","features":[178]},{"name":"WHvX64InterruptTypeInit","features":[178]},{"name":"WHvX64InterruptTypeLocalInt1","features":[178]},{"name":"WHvX64InterruptTypeLowestPriority","features":[178]},{"name":"WHvX64InterruptTypeNmi","features":[178]},{"name":"WHvX64InterruptTypeSipi","features":[178]},{"name":"WHvX64LocalApicEmulationModeNone","features":[178]},{"name":"WHvX64LocalApicEmulationModeX2Apic","features":[178]},{"name":"WHvX64LocalApicEmulationModeXApic","features":[178]},{"name":"WHvX64PendingEventException","features":[178]},{"name":"WHvX64PendingEventExtInt","features":[178]},{"name":"WHvX64PendingException","features":[178]},{"name":"WHvX64PendingInterrupt","features":[178]},{"name":"WHvX64PendingNmi","features":[178]},{"name":"WHvX64RegisterACount","features":[178]},{"name":"WHvX64RegisterApicBase","features":[178]},{"name":"WHvX64RegisterApicCurrentCount","features":[178]},{"name":"WHvX64RegisterApicDivide","features":[178]},{"name":"WHvX64RegisterApicEoi","features":[178]},{"name":"WHvX64RegisterApicEse","features":[178]},{"name":"WHvX64RegisterApicIcr","features":[178]},{"name":"WHvX64RegisterApicId","features":[178]},{"name":"WHvX64RegisterApicInitCount","features":[178]},{"name":"WHvX64RegisterApicIrr0","features":[178]},{"name":"WHvX64RegisterApicIrr1","features":[178]},{"name":"WHvX64RegisterApicIrr2","features":[178]},{"name":"WHvX64RegisterApicIrr3","features":[178]},{"name":"WHvX64RegisterApicIrr4","features":[178]},{"name":"WHvX64RegisterApicIrr5","features":[178]},{"name":"WHvX64RegisterApicIrr6","features":[178]},{"name":"WHvX64RegisterApicIrr7","features":[178]},{"name":"WHvX64RegisterApicIsr0","features":[178]},{"name":"WHvX64RegisterApicIsr1","features":[178]},{"name":"WHvX64RegisterApicIsr2","features":[178]},{"name":"WHvX64RegisterApicIsr3","features":[178]},{"name":"WHvX64RegisterApicIsr4","features":[178]},{"name":"WHvX64RegisterApicIsr5","features":[178]},{"name":"WHvX64RegisterApicIsr6","features":[178]},{"name":"WHvX64RegisterApicIsr7","features":[178]},{"name":"WHvX64RegisterApicLdr","features":[178]},{"name":"WHvX64RegisterApicLvtError","features":[178]},{"name":"WHvX64RegisterApicLvtLint0","features":[178]},{"name":"WHvX64RegisterApicLvtLint1","features":[178]},{"name":"WHvX64RegisterApicLvtPerfmon","features":[178]},{"name":"WHvX64RegisterApicLvtThermal","features":[178]},{"name":"WHvX64RegisterApicLvtTimer","features":[178]},{"name":"WHvX64RegisterApicPpr","features":[178]},{"name":"WHvX64RegisterApicSelfIpi","features":[178]},{"name":"WHvX64RegisterApicSpurious","features":[178]},{"name":"WHvX64RegisterApicTmr0","features":[178]},{"name":"WHvX64RegisterApicTmr1","features":[178]},{"name":"WHvX64RegisterApicTmr2","features":[178]},{"name":"WHvX64RegisterApicTmr3","features":[178]},{"name":"WHvX64RegisterApicTmr4","features":[178]},{"name":"WHvX64RegisterApicTmr5","features":[178]},{"name":"WHvX64RegisterApicTmr6","features":[178]},{"name":"WHvX64RegisterApicTmr7","features":[178]},{"name":"WHvX64RegisterApicTpr","features":[178]},{"name":"WHvX64RegisterApicVersion","features":[178]},{"name":"WHvX64RegisterBndcfgs","features":[178]},{"name":"WHvX64RegisterCr0","features":[178]},{"name":"WHvX64RegisterCr2","features":[178]},{"name":"WHvX64RegisterCr3","features":[178]},{"name":"WHvX64RegisterCr4","features":[178]},{"name":"WHvX64RegisterCr8","features":[178]},{"name":"WHvX64RegisterCs","features":[178]},{"name":"WHvX64RegisterCstar","features":[178]},{"name":"WHvX64RegisterDeliverabilityNotifications","features":[178]},{"name":"WHvX64RegisterDr0","features":[178]},{"name":"WHvX64RegisterDr1","features":[178]},{"name":"WHvX64RegisterDr2","features":[178]},{"name":"WHvX64RegisterDr3","features":[178]},{"name":"WHvX64RegisterDr6","features":[178]},{"name":"WHvX64RegisterDr7","features":[178]},{"name":"WHvX64RegisterDs","features":[178]},{"name":"WHvX64RegisterEfer","features":[178]},{"name":"WHvX64RegisterEs","features":[178]},{"name":"WHvX64RegisterFpControlStatus","features":[178]},{"name":"WHvX64RegisterFpMmx0","features":[178]},{"name":"WHvX64RegisterFpMmx1","features":[178]},{"name":"WHvX64RegisterFpMmx2","features":[178]},{"name":"WHvX64RegisterFpMmx3","features":[178]},{"name":"WHvX64RegisterFpMmx4","features":[178]},{"name":"WHvX64RegisterFpMmx5","features":[178]},{"name":"WHvX64RegisterFpMmx6","features":[178]},{"name":"WHvX64RegisterFpMmx7","features":[178]},{"name":"WHvX64RegisterFs","features":[178]},{"name":"WHvX64RegisterGdtr","features":[178]},{"name":"WHvX64RegisterGs","features":[178]},{"name":"WHvX64RegisterHypercall","features":[178]},{"name":"WHvX64RegisterIdtr","features":[178]},{"name":"WHvX64RegisterInitialApicId","features":[178]},{"name":"WHvX64RegisterInterruptSspTableAddr","features":[178]},{"name":"WHvX64RegisterKernelGsBase","features":[178]},{"name":"WHvX64RegisterLdtr","features":[178]},{"name":"WHvX64RegisterLstar","features":[178]},{"name":"WHvX64RegisterMCount","features":[178]},{"name":"WHvX64RegisterMsrMtrrCap","features":[178]},{"name":"WHvX64RegisterMsrMtrrDefType","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix16k80000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix16kA0000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kC0000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kC8000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kD0000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kD8000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kE0000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kE8000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kF0000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix4kF8000","features":[178]},{"name":"WHvX64RegisterMsrMtrrFix64k00000","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase0","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase1","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase2","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase3","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase4","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase5","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase6","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase7","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase8","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBase9","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBaseA","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBaseB","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBaseC","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBaseD","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBaseE","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysBaseF","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask0","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask1","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask2","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask3","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask4","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask5","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask6","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask7","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask8","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMask9","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMaskA","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMaskB","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMaskC","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMaskD","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMaskE","features":[178]},{"name":"WHvX64RegisterMsrMtrrPhysMaskF","features":[178]},{"name":"WHvX64RegisterPat","features":[178]},{"name":"WHvX64RegisterPendingDebugException","features":[178]},{"name":"WHvX64RegisterPl0Ssp","features":[178]},{"name":"WHvX64RegisterPl1Ssp","features":[178]},{"name":"WHvX64RegisterPl2Ssp","features":[178]},{"name":"WHvX64RegisterPl3Ssp","features":[178]},{"name":"WHvX64RegisterPredCmd","features":[178]},{"name":"WHvX64RegisterR10","features":[178]},{"name":"WHvX64RegisterR11","features":[178]},{"name":"WHvX64RegisterR12","features":[178]},{"name":"WHvX64RegisterR13","features":[178]},{"name":"WHvX64RegisterR14","features":[178]},{"name":"WHvX64RegisterR15","features":[178]},{"name":"WHvX64RegisterR8","features":[178]},{"name":"WHvX64RegisterR9","features":[178]},{"name":"WHvX64RegisterRax","features":[178]},{"name":"WHvX64RegisterRbp","features":[178]},{"name":"WHvX64RegisterRbx","features":[178]},{"name":"WHvX64RegisterRcx","features":[178]},{"name":"WHvX64RegisterRdi","features":[178]},{"name":"WHvX64RegisterRdx","features":[178]},{"name":"WHvX64RegisterRflags","features":[178]},{"name":"WHvX64RegisterRip","features":[178]},{"name":"WHvX64RegisterRsi","features":[178]},{"name":"WHvX64RegisterRsp","features":[178]},{"name":"WHvX64RegisterSCet","features":[178]},{"name":"WHvX64RegisterSfmask","features":[178]},{"name":"WHvX64RegisterSpecCtrl","features":[178]},{"name":"WHvX64RegisterSs","features":[178]},{"name":"WHvX64RegisterSsp","features":[178]},{"name":"WHvX64RegisterStar","features":[178]},{"name":"WHvX64RegisterSysenterCs","features":[178]},{"name":"WHvX64RegisterSysenterEip","features":[178]},{"name":"WHvX64RegisterSysenterEsp","features":[178]},{"name":"WHvX64RegisterTr","features":[178]},{"name":"WHvX64RegisterTsc","features":[178]},{"name":"WHvX64RegisterTscAdjust","features":[178]},{"name":"WHvX64RegisterTscAux","features":[178]},{"name":"WHvX64RegisterTscDeadline","features":[178]},{"name":"WHvX64RegisterTscVirtualOffset","features":[178]},{"name":"WHvX64RegisterTsxCtrl","features":[178]},{"name":"WHvX64RegisterUCet","features":[178]},{"name":"WHvX64RegisterUmwaitControl","features":[178]},{"name":"WHvX64RegisterVirtualCr0","features":[178]},{"name":"WHvX64RegisterVirtualCr3","features":[178]},{"name":"WHvX64RegisterVirtualCr4","features":[178]},{"name":"WHvX64RegisterVirtualCr8","features":[178]},{"name":"WHvX64RegisterXCr0","features":[178]},{"name":"WHvX64RegisterXfd","features":[178]},{"name":"WHvX64RegisterXfdErr","features":[178]},{"name":"WHvX64RegisterXmm0","features":[178]},{"name":"WHvX64RegisterXmm1","features":[178]},{"name":"WHvX64RegisterXmm10","features":[178]},{"name":"WHvX64RegisterXmm11","features":[178]},{"name":"WHvX64RegisterXmm12","features":[178]},{"name":"WHvX64RegisterXmm13","features":[178]},{"name":"WHvX64RegisterXmm14","features":[178]},{"name":"WHvX64RegisterXmm15","features":[178]},{"name":"WHvX64RegisterXmm2","features":[178]},{"name":"WHvX64RegisterXmm3","features":[178]},{"name":"WHvX64RegisterXmm4","features":[178]},{"name":"WHvX64RegisterXmm5","features":[178]},{"name":"WHvX64RegisterXmm6","features":[178]},{"name":"WHvX64RegisterXmm7","features":[178]},{"name":"WHvX64RegisterXmm8","features":[178]},{"name":"WHvX64RegisterXmm9","features":[178]},{"name":"WHvX64RegisterXmmControlStatus","features":[178]},{"name":"WHvX64RegisterXss","features":[178]},{"name":"X64_RegisterCr0","features":[178]},{"name":"X64_RegisterCr2","features":[178]},{"name":"X64_RegisterCr3","features":[178]},{"name":"X64_RegisterCr4","features":[178]},{"name":"X64_RegisterCr8","features":[178]},{"name":"X64_RegisterCs","features":[178]},{"name":"X64_RegisterDr0","features":[178]},{"name":"X64_RegisterDr1","features":[178]},{"name":"X64_RegisterDr2","features":[178]},{"name":"X64_RegisterDr3","features":[178]},{"name":"X64_RegisterDr6","features":[178]},{"name":"X64_RegisterDr7","features":[178]},{"name":"X64_RegisterDs","features":[178]},{"name":"X64_RegisterEfer","features":[178]},{"name":"X64_RegisterEs","features":[178]},{"name":"X64_RegisterFpControlStatus","features":[178]},{"name":"X64_RegisterFpMmx0","features":[178]},{"name":"X64_RegisterFpMmx1","features":[178]},{"name":"X64_RegisterFpMmx2","features":[178]},{"name":"X64_RegisterFpMmx3","features":[178]},{"name":"X64_RegisterFpMmx4","features":[178]},{"name":"X64_RegisterFpMmx5","features":[178]},{"name":"X64_RegisterFpMmx6","features":[178]},{"name":"X64_RegisterFpMmx7","features":[178]},{"name":"X64_RegisterFs","features":[178]},{"name":"X64_RegisterGdtr","features":[178]},{"name":"X64_RegisterGs","features":[178]},{"name":"X64_RegisterIdtr","features":[178]},{"name":"X64_RegisterLdtr","features":[178]},{"name":"X64_RegisterMax","features":[178]},{"name":"X64_RegisterR10","features":[178]},{"name":"X64_RegisterR11","features":[178]},{"name":"X64_RegisterR12","features":[178]},{"name":"X64_RegisterR13","features":[178]},{"name":"X64_RegisterR14","features":[178]},{"name":"X64_RegisterR15","features":[178]},{"name":"X64_RegisterR8","features":[178]},{"name":"X64_RegisterR9","features":[178]},{"name":"X64_RegisterRFlags","features":[178]},{"name":"X64_RegisterRax","features":[178]},{"name":"X64_RegisterRbp","features":[178]},{"name":"X64_RegisterRbx","features":[178]},{"name":"X64_RegisterRcx","features":[178]},{"name":"X64_RegisterRdi","features":[178]},{"name":"X64_RegisterRdx","features":[178]},{"name":"X64_RegisterRip","features":[178]},{"name":"X64_RegisterRsi","features":[178]},{"name":"X64_RegisterRsp","features":[178]},{"name":"X64_RegisterSs","features":[178]},{"name":"X64_RegisterTr","features":[178]},{"name":"X64_RegisterXmm0","features":[178]},{"name":"X64_RegisterXmm1","features":[178]},{"name":"X64_RegisterXmm10","features":[178]},{"name":"X64_RegisterXmm11","features":[178]},{"name":"X64_RegisterXmm12","features":[178]},{"name":"X64_RegisterXmm13","features":[178]},{"name":"X64_RegisterXmm14","features":[178]},{"name":"X64_RegisterXmm15","features":[178]},{"name":"X64_RegisterXmm2","features":[178]},{"name":"X64_RegisterXmm3","features":[178]},{"name":"X64_RegisterXmm4","features":[178]},{"name":"X64_RegisterXmm5","features":[178]},{"name":"X64_RegisterXmm6","features":[178]},{"name":"X64_RegisterXmm7","features":[178]},{"name":"X64_RegisterXmm8","features":[178]},{"name":"X64_RegisterXmm9","features":[178]},{"name":"X64_RegisterXmmControlStatus","features":[178]}],"571":[{"name":"BindIoCompletionCallback","features":[1,6]},{"name":"CancelIo","features":[1,6]},{"name":"CancelIoEx","features":[1,6]},{"name":"CancelSynchronousIo","features":[1,6]},{"name":"CreateIoCompletionPort","features":[1,6]},{"name":"DeviceIoControl","features":[1,6]},{"name":"GetOverlappedResult","features":[1,6]},{"name":"GetOverlappedResultEx","features":[1,6]},{"name":"GetQueuedCompletionStatus","features":[1,6]},{"name":"GetQueuedCompletionStatusEx","features":[1,6]},{"name":"IO_STATUS_BLOCK","features":[1,6]},{"name":"LPOVERLAPPED_COMPLETION_ROUTINE","features":[1,6]},{"name":"OVERLAPPED","features":[1,6]},{"name":"OVERLAPPED_ENTRY","features":[1,6]},{"name":"PIO_APC_ROUTINE","features":[1,6]},{"name":"PostQueuedCompletionStatus","features":[1,6]}],"572":[{"name":"ADMINDATA_MAX_NAME_LEN","features":[179]},{"name":"ALL_METADATA","features":[179]},{"name":"APPCTR_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"APPCTR_MD_ID_END_RESERVED","features":[179]},{"name":"APPSTATUS_NOTDEFINED","features":[179]},{"name":"APPSTATUS_RUNNING","features":[179]},{"name":"APPSTATUS_STOPPED","features":[179]},{"name":"ASP_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"ASP_MD_ID_END_RESERVED","features":[179]},{"name":"ASP_MD_SERVER_BASE","features":[179]},{"name":"ASP_MD_UT_APP","features":[179]},{"name":"AsyncIFtpAuthenticationProvider","features":[179]},{"name":"AsyncIFtpAuthorizationProvider","features":[179]},{"name":"AsyncIFtpHomeDirectoryProvider","features":[179]},{"name":"AsyncIFtpLogProvider","features":[179]},{"name":"AsyncIFtpPostprocessProvider","features":[179]},{"name":"AsyncIFtpPreprocessProvider","features":[179]},{"name":"AsyncIFtpRoleProvider","features":[179]},{"name":"AsyncIMSAdminBaseSinkW","features":[179]},{"name":"BINARY_METADATA","features":[179]},{"name":"CERT_CONTEXT_EX","features":[1,68,179]},{"name":"CLSID_IImgCtx","features":[179]},{"name":"CLSID_IisServiceControl","features":[179]},{"name":"CLSID_MSAdminBase_W","features":[179]},{"name":"CLSID_Request","features":[179]},{"name":"CLSID_Response","features":[179]},{"name":"CLSID_ScriptingContext","features":[179]},{"name":"CLSID_Server","features":[179]},{"name":"CLSID_Session","features":[179]},{"name":"CLSID_WamAdmin","features":[179]},{"name":"CONFIGURATION_ENTRY","features":[179]},{"name":"DISPID_HTTPREQUEST_ABORT","features":[179]},{"name":"DISPID_HTTPREQUEST_BASE","features":[179]},{"name":"DISPID_HTTPREQUEST_GETALLRESPONSEHEADERS","features":[179]},{"name":"DISPID_HTTPREQUEST_GETRESPONSEHEADER","features":[179]},{"name":"DISPID_HTTPREQUEST_OPEN","features":[179]},{"name":"DISPID_HTTPREQUEST_OPTION","features":[179]},{"name":"DISPID_HTTPREQUEST_RESPONSEBODY","features":[179]},{"name":"DISPID_HTTPREQUEST_RESPONSESTREAM","features":[179]},{"name":"DISPID_HTTPREQUEST_RESPONSETEXT","features":[179]},{"name":"DISPID_HTTPREQUEST_SEND","features":[179]},{"name":"DISPID_HTTPREQUEST_SETAUTOLOGONPOLICY","features":[179]},{"name":"DISPID_HTTPREQUEST_SETCLIENTCERTIFICATE","features":[179]},{"name":"DISPID_HTTPREQUEST_SETCREDENTIALS","features":[179]},{"name":"DISPID_HTTPREQUEST_SETPROXY","features":[179]},{"name":"DISPID_HTTPREQUEST_SETREQUESTHEADER","features":[179]},{"name":"DISPID_HTTPREQUEST_SETTIMEOUTS","features":[179]},{"name":"DISPID_HTTPREQUEST_STATUS","features":[179]},{"name":"DISPID_HTTPREQUEST_STATUSTEXT","features":[179]},{"name":"DISPID_HTTPREQUEST_WAITFORRESPONSE","features":[179]},{"name":"DWN_COLORMODE","features":[179]},{"name":"DWN_DOWNLOADONLY","features":[179]},{"name":"DWN_FORCEDITHER","features":[179]},{"name":"DWN_MIRRORIMAGE","features":[179]},{"name":"DWN_RAWIMAGE","features":[179]},{"name":"DWORD_METADATA","features":[179]},{"name":"EXPANDSZ_METADATA","features":[179]},{"name":"EXTENSION_CONTROL_BLOCK","features":[1,179]},{"name":"FP_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"FP_MD_ID_END_RESERVED","features":[179]},{"name":"FTP_ACCESS","features":[179]},{"name":"FTP_ACCESS_NONE","features":[179]},{"name":"FTP_ACCESS_READ","features":[179]},{"name":"FTP_ACCESS_READ_WRITE","features":[179]},{"name":"FTP_ACCESS_WRITE","features":[179]},{"name":"FTP_PROCESS_CLOSE_SESSION","features":[179]},{"name":"FTP_PROCESS_CONTINUE","features":[179]},{"name":"FTP_PROCESS_REJECT_COMMAND","features":[179]},{"name":"FTP_PROCESS_STATUS","features":[179]},{"name":"FTP_PROCESS_TERMINATE_SESSION","features":[179]},{"name":"FtpProvider","features":[179]},{"name":"GUID_IIS_ALL_TRACE_PROVIDERS","features":[179]},{"name":"GUID_IIS_ASPNET_TRACE_PROVIDER","features":[179]},{"name":"GUID_IIS_ASP_TRACE_TRACE_PROVIDER","features":[179]},{"name":"GUID_IIS_ISAPI_TRACE_PROVIDER","features":[179]},{"name":"GUID_IIS_WWW_GLOBAL_TRACE_PROVIDER","features":[179]},{"name":"GUID_IIS_WWW_SERVER_TRACE_PROVIDER","features":[179]},{"name":"GUID_IIS_WWW_SERVER_V2_TRACE_PROVIDER","features":[179]},{"name":"GetExtensionVersion","features":[1,179]},{"name":"GetFilterVersion","features":[1,179]},{"name":"HCONN","features":[179]},{"name":"HSE_APPEND_LOG_PARAMETER","features":[179]},{"name":"HSE_APP_FLAG_IN_PROCESS","features":[179]},{"name":"HSE_APP_FLAG_ISOLATED_OOP","features":[179]},{"name":"HSE_APP_FLAG_POOLED_OOP","features":[179]},{"name":"HSE_CUSTOM_ERROR_INFO","features":[1,179]},{"name":"HSE_EXEC_UNICODE_URL_INFO","features":[1,179]},{"name":"HSE_EXEC_UNICODE_URL_USER_INFO","features":[1,179]},{"name":"HSE_EXEC_URL_DISABLE_CUSTOM_ERROR","features":[179]},{"name":"HSE_EXEC_URL_ENTITY_INFO","features":[179]},{"name":"HSE_EXEC_URL_HTTP_CACHE_ELIGIBLE","features":[179]},{"name":"HSE_EXEC_URL_IGNORE_CURRENT_INTERCEPTOR","features":[179]},{"name":"HSE_EXEC_URL_IGNORE_VALIDATION_AND_RANGE","features":[179]},{"name":"HSE_EXEC_URL_INFO","features":[1,179]},{"name":"HSE_EXEC_URL_NO_HEADERS","features":[179]},{"name":"HSE_EXEC_URL_SSI_CMD","features":[179]},{"name":"HSE_EXEC_URL_STATUS","features":[179]},{"name":"HSE_EXEC_URL_USER_INFO","features":[1,179]},{"name":"HSE_IO_ASYNC","features":[179]},{"name":"HSE_IO_CACHE_RESPONSE","features":[179]},{"name":"HSE_IO_DISCONNECT_AFTER_SEND","features":[179]},{"name":"HSE_IO_FINAL_SEND","features":[179]},{"name":"HSE_IO_NODELAY","features":[179]},{"name":"HSE_IO_SEND_HEADERS","features":[179]},{"name":"HSE_IO_SYNC","features":[179]},{"name":"HSE_IO_TRY_SKIP_CUSTOM_ERRORS","features":[179]},{"name":"HSE_LOG_BUFFER_LEN","features":[179]},{"name":"HSE_MAX_EXT_DLL_NAME_LEN","features":[179]},{"name":"HSE_REQ_ABORTIVE_CLOSE","features":[179]},{"name":"HSE_REQ_ASYNC_READ_CLIENT","features":[179]},{"name":"HSE_REQ_BASE","features":[179]},{"name":"HSE_REQ_CANCEL_IO","features":[179]},{"name":"HSE_REQ_CLOSE_CONNECTION","features":[179]},{"name":"HSE_REQ_DONE_WITH_SESSION","features":[179]},{"name":"HSE_REQ_END_RESERVED","features":[179]},{"name":"HSE_REQ_EXEC_UNICODE_URL","features":[179]},{"name":"HSE_REQ_EXEC_URL","features":[179]},{"name":"HSE_REQ_GET_ANONYMOUS_TOKEN","features":[179]},{"name":"HSE_REQ_GET_CACHE_INVALIDATION_CALLBACK","features":[179]},{"name":"HSE_REQ_GET_CERT_INFO_EX","features":[179]},{"name":"HSE_REQ_GET_CHANNEL_BINDING_TOKEN","features":[179]},{"name":"HSE_REQ_GET_CONFIG_OBJECT","features":[179]},{"name":"HSE_REQ_GET_EXEC_URL_STATUS","features":[179]},{"name":"HSE_REQ_GET_IMPERSONATION_TOKEN","features":[179]},{"name":"HSE_REQ_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[179]},{"name":"HSE_REQ_GET_SSPI_INFO","features":[179]},{"name":"HSE_REQ_GET_TRACE_INFO","features":[179]},{"name":"HSE_REQ_GET_TRACE_INFO_EX","features":[179]},{"name":"HSE_REQ_GET_UNICODE_ANONYMOUS_TOKEN","features":[179]},{"name":"HSE_REQ_GET_WORKER_PROCESS_SETTINGS","features":[179]},{"name":"HSE_REQ_IO_COMPLETION","features":[179]},{"name":"HSE_REQ_IS_CONNECTED","features":[179]},{"name":"HSE_REQ_IS_IN_PROCESS","features":[179]},{"name":"HSE_REQ_IS_KEEP_CONN","features":[179]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH","features":[179]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH_EX","features":[179]},{"name":"HSE_REQ_MAP_URL_TO_PATH","features":[179]},{"name":"HSE_REQ_MAP_URL_TO_PATH_EX","features":[179]},{"name":"HSE_REQ_NORMALIZE_URL","features":[179]},{"name":"HSE_REQ_RAISE_TRACE_EVENT","features":[179]},{"name":"HSE_REQ_REFRESH_ISAPI_ACL","features":[179]},{"name":"HSE_REQ_REPORT_UNHEALTHY","features":[179]},{"name":"HSE_REQ_SEND_CUSTOM_ERROR","features":[179]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER","features":[179]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER_EX","features":[179]},{"name":"HSE_REQ_SEND_URL","features":[179]},{"name":"HSE_REQ_SEND_URL_REDIRECT_RESP","features":[179]},{"name":"HSE_REQ_SET_FLUSH_FLAG","features":[179]},{"name":"HSE_REQ_TRANSMIT_FILE","features":[179]},{"name":"HSE_REQ_VECTOR_SEND","features":[179]},{"name":"HSE_RESPONSE_VECTOR","features":[179]},{"name":"HSE_SEND_HEADER_EX_INFO","features":[1,179]},{"name":"HSE_STATUS_ERROR","features":[179]},{"name":"HSE_STATUS_PENDING","features":[179]},{"name":"HSE_STATUS_SUCCESS","features":[179]},{"name":"HSE_STATUS_SUCCESS_AND_KEEP_CONN","features":[179]},{"name":"HSE_TERM_ADVISORY_UNLOAD","features":[179]},{"name":"HSE_TERM_MUST_UNLOAD","features":[179]},{"name":"HSE_TF_INFO","features":[1,179]},{"name":"HSE_TRACE_INFO","features":[1,179]},{"name":"HSE_UNICODE_URL_MAPEX_INFO","features":[179]},{"name":"HSE_URL_FLAGS_DONT_CACHE","features":[179]},{"name":"HSE_URL_FLAGS_EXECUTE","features":[179]},{"name":"HSE_URL_FLAGS_MAP_CERT","features":[179]},{"name":"HSE_URL_FLAGS_MASK","features":[179]},{"name":"HSE_URL_FLAGS_NEGO_CERT","features":[179]},{"name":"HSE_URL_FLAGS_READ","features":[179]},{"name":"HSE_URL_FLAGS_REQUIRE_CERT","features":[179]},{"name":"HSE_URL_FLAGS_SCRIPT","features":[179]},{"name":"HSE_URL_FLAGS_SSL","features":[179]},{"name":"HSE_URL_FLAGS_SSL128","features":[179]},{"name":"HSE_URL_FLAGS_WRITE","features":[179]},{"name":"HSE_URL_MAPEX_INFO","features":[179]},{"name":"HSE_VECTOR_ELEMENT","features":[179]},{"name":"HSE_VECTOR_ELEMENT_TYPE_FILE_HANDLE","features":[179]},{"name":"HSE_VECTOR_ELEMENT_TYPE_MEMORY_BUFFER","features":[179]},{"name":"HSE_VERSION_INFO","features":[179]},{"name":"HSE_VERSION_MAJOR","features":[179]},{"name":"HSE_VERSION_MINOR","features":[179]},{"name":"HTTP_FILTER_ACCESS_DENIED","features":[179]},{"name":"HTTP_FILTER_AUTHENT","features":[179]},{"name":"HTTP_FILTER_AUTH_COMPLETE_INFO","features":[1,179]},{"name":"HTTP_FILTER_CONTEXT","features":[1,179]},{"name":"HTTP_FILTER_LOG","features":[179]},{"name":"HTTP_FILTER_PREPROC_HEADERS","features":[179]},{"name":"HTTP_FILTER_RAW_DATA","features":[179]},{"name":"HTTP_FILTER_URL_MAP","features":[179]},{"name":"HTTP_FILTER_URL_MAP_EX","features":[179]},{"name":"HTTP_FILTER_VERSION","features":[179]},{"name":"HTTP_TRACE_CONFIGURATION","features":[1,179]},{"name":"HTTP_TRACE_EVENT","features":[179]},{"name":"HTTP_TRACE_EVENT_FLAG_STATIC_DESCRIPTIVE_FIELDS","features":[179]},{"name":"HTTP_TRACE_EVENT_ITEM","features":[179]},{"name":"HTTP_TRACE_LEVEL_END","features":[179]},{"name":"HTTP_TRACE_LEVEL_START","features":[179]},{"name":"HTTP_TRACE_TYPE","features":[179]},{"name":"HTTP_TRACE_TYPE_BOOL","features":[179]},{"name":"HTTP_TRACE_TYPE_BYTE","features":[179]},{"name":"HTTP_TRACE_TYPE_CHAR","features":[179]},{"name":"HTTP_TRACE_TYPE_LONG","features":[179]},{"name":"HTTP_TRACE_TYPE_LONGLONG","features":[179]},{"name":"HTTP_TRACE_TYPE_LPCGUID","features":[179]},{"name":"HTTP_TRACE_TYPE_LPCSTR","features":[179]},{"name":"HTTP_TRACE_TYPE_LPCWSTR","features":[179]},{"name":"HTTP_TRACE_TYPE_SHORT","features":[179]},{"name":"HTTP_TRACE_TYPE_ULONG","features":[179]},{"name":"HTTP_TRACE_TYPE_ULONGLONG","features":[179]},{"name":"HTTP_TRACE_TYPE_USHORT","features":[179]},{"name":"HttpExtensionProc","features":[1,179]},{"name":"HttpFilterProc","features":[1,179]},{"name":"IADMEXT","features":[179]},{"name":"IFtpAuthenticationProvider","features":[179]},{"name":"IFtpAuthorizationProvider","features":[179]},{"name":"IFtpHomeDirectoryProvider","features":[179]},{"name":"IFtpLogProvider","features":[179]},{"name":"IFtpPostprocessProvider","features":[179]},{"name":"IFtpPreprocessProvider","features":[179]},{"name":"IFtpProviderConstruct","features":[179]},{"name":"IFtpRoleProvider","features":[179]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEY","features":[179]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYA","features":[179]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYW","features":[179]},{"name":"IISADMIN_EXTENSIONS_REG_KEY","features":[179]},{"name":"IISADMIN_EXTENSIONS_REG_KEYA","features":[179]},{"name":"IISADMIN_EXTENSIONS_REG_KEYW","features":[179]},{"name":"IIS_CLASS_CERTMAPPER","features":[179]},{"name":"IIS_CLASS_CERTMAPPER_W","features":[179]},{"name":"IIS_CLASS_COMPRESS_SCHEME","features":[179]},{"name":"IIS_CLASS_COMPRESS_SCHEMES","features":[179]},{"name":"IIS_CLASS_COMPRESS_SCHEMES_W","features":[179]},{"name":"IIS_CLASS_COMPRESS_SCHEME_W","features":[179]},{"name":"IIS_CLASS_COMPUTER","features":[179]},{"name":"IIS_CLASS_COMPUTER_W","features":[179]},{"name":"IIS_CLASS_FILTER","features":[179]},{"name":"IIS_CLASS_FILTERS","features":[179]},{"name":"IIS_CLASS_FILTERS_W","features":[179]},{"name":"IIS_CLASS_FILTER_W","features":[179]},{"name":"IIS_CLASS_FTP_INFO","features":[179]},{"name":"IIS_CLASS_FTP_INFO_W","features":[179]},{"name":"IIS_CLASS_FTP_SERVER","features":[179]},{"name":"IIS_CLASS_FTP_SERVER_W","features":[179]},{"name":"IIS_CLASS_FTP_SERVICE","features":[179]},{"name":"IIS_CLASS_FTP_SERVICE_W","features":[179]},{"name":"IIS_CLASS_FTP_VDIR","features":[179]},{"name":"IIS_CLASS_FTP_VDIR_W","features":[179]},{"name":"IIS_CLASS_LOG_MODULE","features":[179]},{"name":"IIS_CLASS_LOG_MODULES","features":[179]},{"name":"IIS_CLASS_LOG_MODULES_W","features":[179]},{"name":"IIS_CLASS_LOG_MODULE_W","features":[179]},{"name":"IIS_CLASS_MIMEMAP","features":[179]},{"name":"IIS_CLASS_MIMEMAP_W","features":[179]},{"name":"IIS_CLASS_WEB_DIR","features":[179]},{"name":"IIS_CLASS_WEB_DIR_W","features":[179]},{"name":"IIS_CLASS_WEB_FILE","features":[179]},{"name":"IIS_CLASS_WEB_FILE_W","features":[179]},{"name":"IIS_CLASS_WEB_INFO","features":[179]},{"name":"IIS_CLASS_WEB_INFO_W","features":[179]},{"name":"IIS_CLASS_WEB_SERVER","features":[179]},{"name":"IIS_CLASS_WEB_SERVER_W","features":[179]},{"name":"IIS_CLASS_WEB_SERVICE","features":[179]},{"name":"IIS_CLASS_WEB_SERVICE_W","features":[179]},{"name":"IIS_CLASS_WEB_VDIR","features":[179]},{"name":"IIS_CLASS_WEB_VDIR_W","features":[179]},{"name":"IIS_MD_ADSI_METAID_BEGIN","features":[179]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_A","features":[179]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_W","features":[179]},{"name":"IIS_MD_APPPOOL_BASE","features":[179]},{"name":"IIS_MD_APP_BASE","features":[179]},{"name":"IIS_MD_FILE_PROP_BASE","features":[179]},{"name":"IIS_MD_FTP_BASE","features":[179]},{"name":"IIS_MD_GLOBAL_BASE","features":[179]},{"name":"IIS_MD_HTTP_BASE","features":[179]},{"name":"IIS_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"IIS_MD_ID_END_RESERVED","features":[179]},{"name":"IIS_MD_INSTANCE_ROOT","features":[179]},{"name":"IIS_MD_ISAPI_FILTERS","features":[179]},{"name":"IIS_MD_LOCAL_MACHINE_PATH","features":[179]},{"name":"IIS_MD_LOGCUSTOM_BASE","features":[179]},{"name":"IIS_MD_LOGCUSTOM_LAST","features":[179]},{"name":"IIS_MD_LOG_BASE","features":[179]},{"name":"IIS_MD_LOG_LAST","features":[179]},{"name":"IIS_MD_SERVER_BASE","features":[179]},{"name":"IIS_MD_SSL_BASE","features":[179]},{"name":"IIS_MD_SVC_INFO_PATH","features":[179]},{"name":"IIS_MD_UT_END_RESERVED","features":[179]},{"name":"IIS_MD_UT_FILE","features":[179]},{"name":"IIS_MD_UT_SERVER","features":[179]},{"name":"IIS_MD_UT_WAM","features":[179]},{"name":"IIS_MD_VR_BASE","features":[179]},{"name":"IIS_WEBSOCKET","features":[179]},{"name":"IIS_WEBSOCKET_SERVER_VARIABLE","features":[179]},{"name":"IMAP_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"IMAP_MD_ID_END_RESERVED","features":[179]},{"name":"IMGANIM_ANIMATED","features":[179]},{"name":"IMGANIM_MASK","features":[179]},{"name":"IMGBITS_MASK","features":[179]},{"name":"IMGBITS_NONE","features":[179]},{"name":"IMGBITS_PARTIAL","features":[179]},{"name":"IMGBITS_TOTAL","features":[179]},{"name":"IMGCHG_ANIMATE","features":[179]},{"name":"IMGCHG_COMPLETE","features":[179]},{"name":"IMGCHG_MASK","features":[179]},{"name":"IMGCHG_SIZE","features":[179]},{"name":"IMGCHG_VIEW","features":[179]},{"name":"IMGLOAD_COMPLETE","features":[179]},{"name":"IMGLOAD_ERROR","features":[179]},{"name":"IMGLOAD_LOADING","features":[179]},{"name":"IMGLOAD_MASK","features":[179]},{"name":"IMGLOAD_NOTLOADED","features":[179]},{"name":"IMGLOAD_STOPPED","features":[179]},{"name":"IMGTRANS_MASK","features":[179]},{"name":"IMGTRANS_OPAQUE","features":[179]},{"name":"IMSAdminBase2W","features":[179]},{"name":"IMSAdminBase3W","features":[179]},{"name":"IMSAdminBaseSinkW","features":[179]},{"name":"IMSAdminBaseW","features":[179]},{"name":"IMSImpExpHelpW","features":[179]},{"name":"INVALID_END_METADATA","features":[179]},{"name":"LIBID_ASPTypeLibrary","features":[179]},{"name":"LIBID_IISRSTALib","features":[179]},{"name":"LIBID_WAMREGLib","features":[179]},{"name":"LOGGING_PARAMETERS","features":[179]},{"name":"MB_DONT_IMPERSONATE","features":[179]},{"name":"MD_ACCESS_EXECUTE","features":[179]},{"name":"MD_ACCESS_MAP_CERT","features":[179]},{"name":"MD_ACCESS_MASK","features":[179]},{"name":"MD_ACCESS_NEGO_CERT","features":[179]},{"name":"MD_ACCESS_NO_PHYSICAL_DIR","features":[179]},{"name":"MD_ACCESS_NO_REMOTE_EXECUTE","features":[179]},{"name":"MD_ACCESS_NO_REMOTE_READ","features":[179]},{"name":"MD_ACCESS_NO_REMOTE_SCRIPT","features":[179]},{"name":"MD_ACCESS_NO_REMOTE_WRITE","features":[179]},{"name":"MD_ACCESS_PERM","features":[179]},{"name":"MD_ACCESS_READ","features":[179]},{"name":"MD_ACCESS_REQUIRE_CERT","features":[179]},{"name":"MD_ACCESS_SCRIPT","features":[179]},{"name":"MD_ACCESS_SOURCE","features":[179]},{"name":"MD_ACCESS_SSL","features":[179]},{"name":"MD_ACCESS_SSL128","features":[179]},{"name":"MD_ACCESS_WRITE","features":[179]},{"name":"MD_ACR_ENUM_KEYS","features":[179]},{"name":"MD_ACR_READ","features":[179]},{"name":"MD_ACR_RESTRICTED_WRITE","features":[179]},{"name":"MD_ACR_UNSECURE_PROPS_READ","features":[179]},{"name":"MD_ACR_WRITE","features":[179]},{"name":"MD_ACR_WRITE_DAC","features":[179]},{"name":"MD_ADMIN_ACL","features":[179]},{"name":"MD_ADMIN_INSTANCE","features":[179]},{"name":"MD_ADV_CACHE_TTL","features":[179]},{"name":"MD_ADV_NOTIFY_PWD_EXP_IN_DAYS","features":[179]},{"name":"MD_AD_CONNECTIONS_PASSWORD","features":[179]},{"name":"MD_AD_CONNECTIONS_USERNAME","features":[179]},{"name":"MD_ALLOW_ANONYMOUS","features":[179]},{"name":"MD_ALLOW_KEEPALIVES","features":[179]},{"name":"MD_ALLOW_PATH_INFO_FOR_SCRIPT_MAPPINGS","features":[179]},{"name":"MD_ALLOW_REPLACE_ON_RENAME","features":[179]},{"name":"MD_ANONYMOUS_ONLY","features":[179]},{"name":"MD_ANONYMOUS_PWD","features":[179]},{"name":"MD_ANONYMOUS_USER_NAME","features":[179]},{"name":"MD_ANONYMOUS_USE_SUBAUTH","features":[179]},{"name":"MD_APPPOOL_32_BIT_APP_ON_WIN64","features":[179]},{"name":"MD_APPPOOL_ALLOW_TRANSIENT_REGISTRATION","features":[179]},{"name":"MD_APPPOOL_APPPOOL_ID","features":[179]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_EXE","features":[179]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_PARAMS","features":[179]},{"name":"MD_APPPOOL_AUTO_START","features":[179]},{"name":"MD_APPPOOL_COMMAND","features":[179]},{"name":"MD_APPPOOL_COMMAND_START","features":[179]},{"name":"MD_APPPOOL_COMMAND_STOP","features":[179]},{"name":"MD_APPPOOL_DISALLOW_OVERLAPPING_ROTATION","features":[179]},{"name":"MD_APPPOOL_DISALLOW_ROTATION_ON_CONFIG_CHANGE","features":[179]},{"name":"MD_APPPOOL_EMULATION_ON_WINARM64","features":[179]},{"name":"MD_APPPOOL_IDENTITY_TYPE","features":[179]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSERVICE","features":[179]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSYSTEM","features":[179]},{"name":"MD_APPPOOL_IDENTITY_TYPE_NETWORKSERVICE","features":[179]},{"name":"MD_APPPOOL_IDENTITY_TYPE_SPECIFICUSER","features":[179]},{"name":"MD_APPPOOL_IDLE_TIMEOUT","features":[179]},{"name":"MD_APPPOOL_MANAGED_PIPELINE_MODE","features":[179]},{"name":"MD_APPPOOL_MANAGED_RUNTIME_VERSION","features":[179]},{"name":"MD_APPPOOL_MAX_PROCESS_COUNT","features":[179]},{"name":"MD_APPPOOL_ORPHAN_ACTION_EXE","features":[179]},{"name":"MD_APPPOOL_ORPHAN_ACTION_PARAMS","features":[179]},{"name":"MD_APPPOOL_ORPHAN_PROCESSES_FOR_DEBUGGING","features":[179]},{"name":"MD_APPPOOL_PERIODIC_RESTART_CONNECTIONS","features":[179]},{"name":"MD_APPPOOL_PERIODIC_RESTART_MEMORY","features":[179]},{"name":"MD_APPPOOL_PERIODIC_RESTART_PRIVATE_MEMORY","features":[179]},{"name":"MD_APPPOOL_PERIODIC_RESTART_REQUEST_COUNT","features":[179]},{"name":"MD_APPPOOL_PERIODIC_RESTART_SCHEDULE","features":[179]},{"name":"MD_APPPOOL_PERIODIC_RESTART_TIME","features":[179]},{"name":"MD_APPPOOL_PINGING_ENABLED","features":[179]},{"name":"MD_APPPOOL_PING_INTERVAL","features":[179]},{"name":"MD_APPPOOL_PING_RESPONSE_TIMELIMIT","features":[179]},{"name":"MD_APPPOOL_RAPID_FAIL_PROTECTION_ENABLED","features":[179]},{"name":"MD_APPPOOL_SHUTDOWN_TIMELIMIT","features":[179]},{"name":"MD_APPPOOL_SMP_AFFINITIZED","features":[179]},{"name":"MD_APPPOOL_SMP_AFFINITIZED_PROCESSOR_MASK","features":[179]},{"name":"MD_APPPOOL_STARTUP_TIMELIMIT","features":[179]},{"name":"MD_APPPOOL_STATE","features":[179]},{"name":"MD_APPPOOL_STATE_STARTED","features":[179]},{"name":"MD_APPPOOL_STATE_STARTING","features":[179]},{"name":"MD_APPPOOL_STATE_STOPPED","features":[179]},{"name":"MD_APPPOOL_STATE_STOPPING","features":[179]},{"name":"MD_APPPOOL_UL_APPPOOL_QUEUE_LENGTH","features":[179]},{"name":"MD_APP_ALLOW_TRANSIENT_REGISTRATION","features":[179]},{"name":"MD_APP_APPPOOL_ID","features":[179]},{"name":"MD_APP_AUTO_START","features":[179]},{"name":"MD_APP_DEPENDENCIES","features":[179]},{"name":"MD_APP_FRIENDLY_NAME","features":[179]},{"name":"MD_APP_ISOLATED","features":[179]},{"name":"MD_APP_OOP_RECOVER_LIMIT","features":[179]},{"name":"MD_APP_PACKAGE_ID","features":[179]},{"name":"MD_APP_PACKAGE_NAME","features":[179]},{"name":"MD_APP_PERIODIC_RESTART_REQUESTS","features":[179]},{"name":"MD_APP_PERIODIC_RESTART_SCHEDULE","features":[179]},{"name":"MD_APP_PERIODIC_RESTART_TIME","features":[179]},{"name":"MD_APP_POOL_LOG_EVENT_ON_PROCESSMODEL","features":[179]},{"name":"MD_APP_POOL_LOG_EVENT_ON_RECYCLE","features":[179]},{"name":"MD_APP_POOL_PROCESSMODEL_IDLE_TIMEOUT","features":[179]},{"name":"MD_APP_POOL_RECYCLE_CONFIG_CHANGE","features":[179]},{"name":"MD_APP_POOL_RECYCLE_ISAPI_UNHEALTHY","features":[179]},{"name":"MD_APP_POOL_RECYCLE_MEMORY","features":[179]},{"name":"MD_APP_POOL_RECYCLE_ON_DEMAND","features":[179]},{"name":"MD_APP_POOL_RECYCLE_PRIVATE_MEMORY","features":[179]},{"name":"MD_APP_POOL_RECYCLE_REQUESTS","features":[179]},{"name":"MD_APP_POOL_RECYCLE_SCHEDULE","features":[179]},{"name":"MD_APP_POOL_RECYCLE_TIME","features":[179]},{"name":"MD_APP_ROOT","features":[179]},{"name":"MD_APP_SHUTDOWN_TIME_LIMIT","features":[179]},{"name":"MD_APP_TRACE_URL_LIST","features":[179]},{"name":"MD_APP_WAM_CLSID","features":[179]},{"name":"MD_ASP_ALLOWOUTOFPROCCMPNTS","features":[179]},{"name":"MD_ASP_ALLOWOUTOFPROCCOMPONENTS","features":[179]},{"name":"MD_ASP_ALLOWSESSIONSTATE","features":[179]},{"name":"MD_ASP_BUFFERINGON","features":[179]},{"name":"MD_ASP_BUFFER_LIMIT","features":[179]},{"name":"MD_ASP_CALCLINENUMBER","features":[179]},{"name":"MD_ASP_CODEPAGE","features":[179]},{"name":"MD_ASP_DISKTEMPLATECACHEDIRECTORY","features":[179]},{"name":"MD_ASP_ENABLEAPPLICATIONRESTART","features":[179]},{"name":"MD_ASP_ENABLEASPHTMLFALLBACK","features":[179]},{"name":"MD_ASP_ENABLECHUNKEDENCODING","features":[179]},{"name":"MD_ASP_ENABLECLIENTDEBUG","features":[179]},{"name":"MD_ASP_ENABLEPARENTPATHS","features":[179]},{"name":"MD_ASP_ENABLESERVERDEBUG","features":[179]},{"name":"MD_ASP_ENABLETYPELIBCACHE","features":[179]},{"name":"MD_ASP_ERRORSTONTLOG","features":[179]},{"name":"MD_ASP_EXCEPTIONCATCHENABLE","features":[179]},{"name":"MD_ASP_EXECUTEINMTA","features":[179]},{"name":"MD_ASP_ID_LAST","features":[179]},{"name":"MD_ASP_KEEPSESSIONIDSECURE","features":[179]},{"name":"MD_ASP_LCID","features":[179]},{"name":"MD_ASP_LOGERRORREQUESTS","features":[179]},{"name":"MD_ASP_MAXDISKTEMPLATECACHEFILES","features":[179]},{"name":"MD_ASP_MAXREQUESTENTITY","features":[179]},{"name":"MD_ASP_MAX_REQUEST_ENTITY_ALLOWED","features":[179]},{"name":"MD_ASP_MEMFREEFACTOR","features":[179]},{"name":"MD_ASP_MINUSEDBLOCKS","features":[179]},{"name":"MD_ASP_PROCESSORTHREADMAX","features":[179]},{"name":"MD_ASP_QUEUECONNECTIONTESTTIME","features":[179]},{"name":"MD_ASP_QUEUETIMEOUT","features":[179]},{"name":"MD_ASP_REQEUSTQUEUEMAX","features":[179]},{"name":"MD_ASP_RUN_ONEND_ANON","features":[179]},{"name":"MD_ASP_SCRIPTENGINECACHEMAX","features":[179]},{"name":"MD_ASP_SCRIPTERRORMESSAGE","features":[179]},{"name":"MD_ASP_SCRIPTERRORSSENTTOBROWSER","features":[179]},{"name":"MD_ASP_SCRIPTFILECACHESIZE","features":[179]},{"name":"MD_ASP_SCRIPTLANGUAGE","features":[179]},{"name":"MD_ASP_SCRIPTLANGUAGELIST","features":[179]},{"name":"MD_ASP_SCRIPTTIMEOUT","features":[179]},{"name":"MD_ASP_SERVICE_ENABLE_SXS","features":[179]},{"name":"MD_ASP_SERVICE_ENABLE_TRACKER","features":[179]},{"name":"MD_ASP_SERVICE_FLAGS","features":[179]},{"name":"MD_ASP_SERVICE_FLAG_FUSION","features":[179]},{"name":"MD_ASP_SERVICE_FLAG_PARTITIONS","features":[179]},{"name":"MD_ASP_SERVICE_FLAG_TRACKER","features":[179]},{"name":"MD_ASP_SERVICE_PARTITION_ID","features":[179]},{"name":"MD_ASP_SERVICE_SXS_NAME","features":[179]},{"name":"MD_ASP_SERVICE_USE_PARTITION","features":[179]},{"name":"MD_ASP_SESSIONMAX","features":[179]},{"name":"MD_ASP_SESSIONTIMEOUT","features":[179]},{"name":"MD_ASP_THREADGATEENABLED","features":[179]},{"name":"MD_ASP_THREADGATELOADHIGH","features":[179]},{"name":"MD_ASP_THREADGATELOADLOW","features":[179]},{"name":"MD_ASP_THREADGATESLEEPDELAY","features":[179]},{"name":"MD_ASP_THREADGATESLEEPMAX","features":[179]},{"name":"MD_ASP_THREADGATETIMESLICE","features":[179]},{"name":"MD_ASP_TRACKTHREADINGMODEL","features":[179]},{"name":"MD_AUTHORIZATION","features":[179]},{"name":"MD_AUTHORIZATION_PERSISTENCE","features":[179]},{"name":"MD_AUTH_ADVNOTIFY_DISABLE","features":[179]},{"name":"MD_AUTH_ANONYMOUS","features":[179]},{"name":"MD_AUTH_BASIC","features":[179]},{"name":"MD_AUTH_CHANGE_DISABLE","features":[179]},{"name":"MD_AUTH_CHANGE_FLAGS","features":[179]},{"name":"MD_AUTH_CHANGE_UNSECURE","features":[179]},{"name":"MD_AUTH_CHANGE_URL","features":[179]},{"name":"MD_AUTH_EXPIRED_UNSECUREURL","features":[179]},{"name":"MD_AUTH_EXPIRED_URL","features":[179]},{"name":"MD_AUTH_MD5","features":[179]},{"name":"MD_AUTH_NT","features":[179]},{"name":"MD_AUTH_PASSPORT","features":[179]},{"name":"MD_AUTH_SINGLEREQUEST","features":[179]},{"name":"MD_AUTH_SINGLEREQUESTALWAYSIFPROXY","features":[179]},{"name":"MD_AUTH_SINGLEREQUESTIFPROXY","features":[179]},{"name":"MD_BACKUP_FORCE_BACKUP","features":[179]},{"name":"MD_BACKUP_HIGHEST_VERSION","features":[179]},{"name":"MD_BACKUP_MAX_LEN","features":[179]},{"name":"MD_BACKUP_MAX_VERSION","features":[179]},{"name":"MD_BACKUP_NEXT_VERSION","features":[179]},{"name":"MD_BACKUP_OVERWRITE","features":[179]},{"name":"MD_BACKUP_SAVE_FIRST","features":[179]},{"name":"MD_BANNER_MESSAGE","features":[179]},{"name":"MD_BINDINGS","features":[179]},{"name":"MD_CACHE_EXTENSIONS","features":[179]},{"name":"MD_CAL_AUTH_RESERVE_TIMEOUT","features":[179]},{"name":"MD_CAL_SSL_RESERVE_TIMEOUT","features":[179]},{"name":"MD_CAL_VC_PER_CONNECT","features":[179]},{"name":"MD_CAL_W3_ERROR","features":[179]},{"name":"MD_CC_MAX_AGE","features":[179]},{"name":"MD_CC_NO_CACHE","features":[179]},{"name":"MD_CC_OTHER","features":[179]},{"name":"MD_CENTRAL_W3C_LOGGING_ENABLED","features":[179]},{"name":"MD_CERT_CACHE_RETRIEVAL_ONLY","features":[179]},{"name":"MD_CERT_CHECK_REVOCATION_FRESHNESS_TIME","features":[179]},{"name":"MD_CERT_NO_REVOC_CHECK","features":[179]},{"name":"MD_CERT_NO_USAGE_CHECK","features":[179]},{"name":"MD_CGI_RESTRICTION_LIST","features":[179]},{"name":"MD_CHANGE_OBJECT_W","features":[179]},{"name":"MD_CHANGE_TYPE_ADD_OBJECT","features":[179]},{"name":"MD_CHANGE_TYPE_DELETE_DATA","features":[179]},{"name":"MD_CHANGE_TYPE_DELETE_OBJECT","features":[179]},{"name":"MD_CHANGE_TYPE_RENAME_OBJECT","features":[179]},{"name":"MD_CHANGE_TYPE_RESTORE","features":[179]},{"name":"MD_CHANGE_TYPE_SET_DATA","features":[179]},{"name":"MD_COMMENTS","features":[179]},{"name":"MD_CONNECTION_TIMEOUT","features":[179]},{"name":"MD_CPU_ACTION","features":[179]},{"name":"MD_CPU_APP_ENABLED","features":[179]},{"name":"MD_CPU_CGI_ENABLED","features":[179]},{"name":"MD_CPU_CGI_LIMIT","features":[179]},{"name":"MD_CPU_DISABLE_ALL_LOGGING","features":[179]},{"name":"MD_CPU_ENABLE_ACTIVE_PROCS","features":[179]},{"name":"MD_CPU_ENABLE_ALL_PROC_LOGGING","features":[179]},{"name":"MD_CPU_ENABLE_APP_LOGGING","features":[179]},{"name":"MD_CPU_ENABLE_CGI_LOGGING","features":[179]},{"name":"MD_CPU_ENABLE_EVENT","features":[179]},{"name":"MD_CPU_ENABLE_KERNEL_TIME","features":[179]},{"name":"MD_CPU_ENABLE_LOGGING","features":[179]},{"name":"MD_CPU_ENABLE_PAGE_FAULTS","features":[179]},{"name":"MD_CPU_ENABLE_PROC_TYPE","features":[179]},{"name":"MD_CPU_ENABLE_TERMINATED_PROCS","features":[179]},{"name":"MD_CPU_ENABLE_TOTAL_PROCS","features":[179]},{"name":"MD_CPU_ENABLE_USER_TIME","features":[179]},{"name":"MD_CPU_KILL_W3WP","features":[179]},{"name":"MD_CPU_LIMIT","features":[179]},{"name":"MD_CPU_LIMITS_ENABLED","features":[179]},{"name":"MD_CPU_LIMIT_LOGEVENT","features":[179]},{"name":"MD_CPU_LIMIT_PAUSE","features":[179]},{"name":"MD_CPU_LIMIT_PRIORITY","features":[179]},{"name":"MD_CPU_LIMIT_PROCSTOP","features":[179]},{"name":"MD_CPU_LOGGING_INTERVAL","features":[179]},{"name":"MD_CPU_LOGGING_MASK","features":[179]},{"name":"MD_CPU_LOGGING_OPTIONS","features":[179]},{"name":"MD_CPU_NO_ACTION","features":[179]},{"name":"MD_CPU_RESET_INTERVAL","features":[179]},{"name":"MD_CPU_THROTTLE","features":[179]},{"name":"MD_CPU_TRACE","features":[179]},{"name":"MD_CREATE_PROCESS_AS_USER","features":[179]},{"name":"MD_CREATE_PROC_NEW_CONSOLE","features":[179]},{"name":"MD_CUSTOM_DEPLOYMENT_DATA","features":[179]},{"name":"MD_CUSTOM_ERROR","features":[179]},{"name":"MD_CUSTOM_ERROR_DESC","features":[179]},{"name":"MD_DEFAULT_BACKUP_LOCATION","features":[179]},{"name":"MD_DEFAULT_LOAD_FILE","features":[179]},{"name":"MD_DEFAULT_LOGON_DOMAIN","features":[179]},{"name":"MD_DEMAND_START_THRESHOLD","features":[179]},{"name":"MD_DIRBROW_ENABLED","features":[179]},{"name":"MD_DIRBROW_LOADDEFAULT","features":[179]},{"name":"MD_DIRBROW_LONG_DATE","features":[179]},{"name":"MD_DIRBROW_SHOW_DATE","features":[179]},{"name":"MD_DIRBROW_SHOW_EXTENSION","features":[179]},{"name":"MD_DIRBROW_SHOW_SIZE","features":[179]},{"name":"MD_DIRBROW_SHOW_TIME","features":[179]},{"name":"MD_DIRECTORY_BROWSING","features":[179]},{"name":"MD_DISABLE_SOCKET_POOLING","features":[179]},{"name":"MD_DONT_LOG","features":[179]},{"name":"MD_DOWNLEVEL_ADMIN_INSTANCE","features":[179]},{"name":"MD_DO_REVERSE_DNS","features":[179]},{"name":"MD_ENABLEDPROTOCOLS","features":[179]},{"name":"MD_ENABLE_URL_AUTHORIZATION","features":[179]},{"name":"MD_ERROR_CANNOT_REMOVE_SECURE_ATTRIBUTE","features":[179]},{"name":"MD_ERROR_DATA_NOT_FOUND","features":[179]},{"name":"MD_ERROR_IISAO_INVALID_SCHEMA","features":[179]},{"name":"MD_ERROR_INVALID_VERSION","features":[179]},{"name":"MD_ERROR_NOT_INITIALIZED","features":[179]},{"name":"MD_ERROR_NO_SESSION_KEY","features":[179]},{"name":"MD_ERROR_READ_METABASE_FILE","features":[179]},{"name":"MD_ERROR_SECURE_CHANNEL_FAILURE","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_CONTENT_LENGTH","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_DEPTH","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_DESTINATION","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_IF","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_LOCK_TOKEN","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_OVERWRITE","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_REQUEST_BODY","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_TIMEOUT","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_TRANSLATE","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_WEBSOCKET_REQUEST","features":[179]},{"name":"MD_ERROR_SUB400_INVALID_XFF_HEADER","features":[179]},{"name":"MD_ERROR_SUB401_APPLICATION","features":[179]},{"name":"MD_ERROR_SUB401_FILTER","features":[179]},{"name":"MD_ERROR_SUB401_LOGON","features":[179]},{"name":"MD_ERROR_SUB401_LOGON_ACL","features":[179]},{"name":"MD_ERROR_SUB401_LOGON_CONFIG","features":[179]},{"name":"MD_ERROR_SUB401_URLAUTH_POLICY","features":[179]},{"name":"MD_ERROR_SUB403_ADDR_REJECT","features":[179]},{"name":"MD_ERROR_SUB403_APPPOOL_DENIED","features":[179]},{"name":"MD_ERROR_SUB403_CAL_EXCEEDED","features":[179]},{"name":"MD_ERROR_SUB403_CERT_BAD","features":[179]},{"name":"MD_ERROR_SUB403_CERT_REQUIRED","features":[179]},{"name":"MD_ERROR_SUB403_CERT_REVOKED","features":[179]},{"name":"MD_ERROR_SUB403_CERT_TIME_INVALID","features":[179]},{"name":"MD_ERROR_SUB403_DIR_LIST_DENIED","features":[179]},{"name":"MD_ERROR_SUB403_EXECUTE_ACCESS_DENIED","features":[179]},{"name":"MD_ERROR_SUB403_INFINITE_DEPTH_DENIED","features":[179]},{"name":"MD_ERROR_SUB403_INSUFFICIENT_PRIVILEGE_FOR_CGI","features":[179]},{"name":"MD_ERROR_SUB403_INVALID_CNFG","features":[179]},{"name":"MD_ERROR_SUB403_LOCK_TOKEN_REQUIRED","features":[179]},{"name":"MD_ERROR_SUB403_MAPPER_DENY_ACCESS","features":[179]},{"name":"MD_ERROR_SUB403_PASSPORT_LOGIN_FAILURE","features":[179]},{"name":"MD_ERROR_SUB403_PWD_CHANGE","features":[179]},{"name":"MD_ERROR_SUB403_READ_ACCESS_DENIED","features":[179]},{"name":"MD_ERROR_SUB403_SITE_ACCESS_DENIED","features":[179]},{"name":"MD_ERROR_SUB403_SOURCE_ACCESS_DENIED","features":[179]},{"name":"MD_ERROR_SUB403_SSL128_REQUIRED","features":[179]},{"name":"MD_ERROR_SUB403_SSL_REQUIRED","features":[179]},{"name":"MD_ERROR_SUB403_TOO_MANY_USERS","features":[179]},{"name":"MD_ERROR_SUB403_VALIDATION_FAILURE","features":[179]},{"name":"MD_ERROR_SUB403_WRITE_ACCESS_DENIED","features":[179]},{"name":"MD_ERROR_SUB404_DENIED_BY_FILTERING_RULE","features":[179]},{"name":"MD_ERROR_SUB404_DENIED_BY_MIMEMAP","features":[179]},{"name":"MD_ERROR_SUB404_DENIED_BY_POLICY","features":[179]},{"name":"MD_ERROR_SUB404_FILE_ATTRIBUTE_HIDDEN","features":[179]},{"name":"MD_ERROR_SUB404_FILE_EXTENSION_DENIED","features":[179]},{"name":"MD_ERROR_SUB404_HIDDEN_SEGMENT","features":[179]},{"name":"MD_ERROR_SUB404_NO_HANDLER","features":[179]},{"name":"MD_ERROR_SUB404_PRECONDITIONED_HANDLER","features":[179]},{"name":"MD_ERROR_SUB404_QUERY_STRING_SEQUENCE_DENIED","features":[179]},{"name":"MD_ERROR_SUB404_QUERY_STRING_TOO_LONG","features":[179]},{"name":"MD_ERROR_SUB404_SITE_NOT_FOUND","features":[179]},{"name":"MD_ERROR_SUB404_STATICFILE_DAV","features":[179]},{"name":"MD_ERROR_SUB404_TOO_MANY_URL_SEGMENTS","features":[179]},{"name":"MD_ERROR_SUB404_URL_DOUBLE_ESCAPED","features":[179]},{"name":"MD_ERROR_SUB404_URL_HAS_HIGH_BIT_CHARS","features":[179]},{"name":"MD_ERROR_SUB404_URL_SEQUENCE_DENIED","features":[179]},{"name":"MD_ERROR_SUB404_URL_TOO_LONG","features":[179]},{"name":"MD_ERROR_SUB404_VERB_DENIED","features":[179]},{"name":"MD_ERROR_SUB413_CONTENT_LENGTH_TOO_LARGE","features":[179]},{"name":"MD_ERROR_SUB423_LOCK_TOKEN_SUBMITTED","features":[179]},{"name":"MD_ERROR_SUB423_NO_CONFLICTING_LOCK","features":[179]},{"name":"MD_ERROR_SUB500_ASPNET_HANDLERS","features":[179]},{"name":"MD_ERROR_SUB500_ASPNET_IMPERSONATION","features":[179]},{"name":"MD_ERROR_SUB500_ASPNET_MODULES","features":[179]},{"name":"MD_ERROR_SUB500_BAD_METADATA","features":[179]},{"name":"MD_ERROR_SUB500_HANDLERS_MODULE","features":[179]},{"name":"MD_ERROR_SUB500_UNC_ACCESS","features":[179]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_SCOPE","features":[179]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_STORE","features":[179]},{"name":"MD_ERROR_SUB500_URLAUTH_STORE_ERROR","features":[179]},{"name":"MD_ERROR_SUB502_ARR_CONNECTION_ERROR","features":[179]},{"name":"MD_ERROR_SUB502_ARR_NO_SERVER","features":[179]},{"name":"MD_ERROR_SUB502_PREMATURE_EXIT","features":[179]},{"name":"MD_ERROR_SUB502_TIMEOUT","features":[179]},{"name":"MD_ERROR_SUB503_APP_CONCURRENT","features":[179]},{"name":"MD_ERROR_SUB503_ASPNET_QUEUE_FULL","features":[179]},{"name":"MD_ERROR_SUB503_CONNECTION_LIMIT","features":[179]},{"name":"MD_ERROR_SUB503_CPU_LIMIT","features":[179]},{"name":"MD_ERROR_SUB503_FASTCGI_QUEUE_FULL","features":[179]},{"name":"MD_EXIT_MESSAGE","features":[179]},{"name":"MD_EXPORT_INHERITED","features":[179]},{"name":"MD_EXPORT_NODE_ONLY","features":[179]},{"name":"MD_EXTLOG_BYTES_RECV","features":[179]},{"name":"MD_EXTLOG_BYTES_SENT","features":[179]},{"name":"MD_EXTLOG_CLIENT_IP","features":[179]},{"name":"MD_EXTLOG_COMPUTER_NAME","features":[179]},{"name":"MD_EXTLOG_COOKIE","features":[179]},{"name":"MD_EXTLOG_DATE","features":[179]},{"name":"MD_EXTLOG_HOST","features":[179]},{"name":"MD_EXTLOG_HTTP_STATUS","features":[179]},{"name":"MD_EXTLOG_HTTP_SUB_STATUS","features":[179]},{"name":"MD_EXTLOG_METHOD","features":[179]},{"name":"MD_EXTLOG_PROTOCOL_VERSION","features":[179]},{"name":"MD_EXTLOG_REFERER","features":[179]},{"name":"MD_EXTLOG_SERVER_IP","features":[179]},{"name":"MD_EXTLOG_SERVER_PORT","features":[179]},{"name":"MD_EXTLOG_SITE_NAME","features":[179]},{"name":"MD_EXTLOG_TIME","features":[179]},{"name":"MD_EXTLOG_TIME_TAKEN","features":[179]},{"name":"MD_EXTLOG_URI_QUERY","features":[179]},{"name":"MD_EXTLOG_URI_STEM","features":[179]},{"name":"MD_EXTLOG_USERNAME","features":[179]},{"name":"MD_EXTLOG_USER_AGENT","features":[179]},{"name":"MD_EXTLOG_WIN32_STATUS","features":[179]},{"name":"MD_FILTER_DESCRIPTION","features":[179]},{"name":"MD_FILTER_ENABLED","features":[179]},{"name":"MD_FILTER_ENABLE_CACHE","features":[179]},{"name":"MD_FILTER_FLAGS","features":[179]},{"name":"MD_FILTER_IMAGE_PATH","features":[179]},{"name":"MD_FILTER_LOAD_ORDER","features":[179]},{"name":"MD_FILTER_STATE","features":[179]},{"name":"MD_FILTER_STATE_LOADED","features":[179]},{"name":"MD_FILTER_STATE_UNLOADED","features":[179]},{"name":"MD_FOOTER_DOCUMENT","features":[179]},{"name":"MD_FOOTER_ENABLED","features":[179]},{"name":"MD_FRONTPAGE_WEB","features":[179]},{"name":"MD_FTPS_128_BITS","features":[179]},{"name":"MD_FTPS_ALLOW_CCC","features":[179]},{"name":"MD_FTPS_SECURE_ANONYMOUS","features":[179]},{"name":"MD_FTPS_SECURE_CONTROL_CHANNEL","features":[179]},{"name":"MD_FTPS_SECURE_DATA_CHANNEL","features":[179]},{"name":"MD_FTP_KEEP_PARTIAL_UPLOADS","features":[179]},{"name":"MD_FTP_LOG_IN_UTF_8","features":[179]},{"name":"MD_FTP_PASV_RESPONSE_IP","features":[179]},{"name":"MD_FTP_UTF8_FILE_NAMES","features":[179]},{"name":"MD_GLOBAL_BINARY_LOGGING_ENABLED","features":[179]},{"name":"MD_GLOBAL_BINSCHEMATIMESTAMP","features":[179]},{"name":"MD_GLOBAL_CHANGE_NUMBER","features":[179]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MAJOR_VERSION_NUMBER","features":[179]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MINOR_VERSION_NUMBER","features":[179]},{"name":"MD_GLOBAL_LOG_IN_UTF_8","features":[179]},{"name":"MD_GLOBAL_SESSIONKEY","features":[179]},{"name":"MD_GLOBAL_STANDARD_APP_MODE_ENABLED","features":[179]},{"name":"MD_GLOBAL_XMLSCHEMATIMESTAMP","features":[179]},{"name":"MD_GREETING_MESSAGE","features":[179]},{"name":"MD_HC_CACHE_CONTROL_HEADER","features":[179]},{"name":"MD_HC_COMPRESSION_BUFFER_SIZE","features":[179]},{"name":"MD_HC_COMPRESSION_DIRECTORY","features":[179]},{"name":"MD_HC_COMPRESSION_DLL","features":[179]},{"name":"MD_HC_CREATE_FLAGS","features":[179]},{"name":"MD_HC_DO_DISK_SPACE_LIMITING","features":[179]},{"name":"MD_HC_DO_DYNAMIC_COMPRESSION","features":[179]},{"name":"MD_HC_DO_NAMESPACE_DYNAMIC_COMPRESSION","features":[179]},{"name":"MD_HC_DO_NAMESPACE_STATIC_COMPRESSION","features":[179]},{"name":"MD_HC_DO_ON_DEMAND_COMPRESSION","features":[179]},{"name":"MD_HC_DO_STATIC_COMPRESSION","features":[179]},{"name":"MD_HC_DYNAMIC_COMPRESSION_LEVEL","features":[179]},{"name":"MD_HC_EXPIRES_HEADER","features":[179]},{"name":"MD_HC_FILES_DELETED_PER_DISK_FREE","features":[179]},{"name":"MD_HC_FILE_EXTENSIONS","features":[179]},{"name":"MD_HC_IO_BUFFER_SIZE","features":[179]},{"name":"MD_HC_MAX_DISK_SPACE_USAGE","features":[179]},{"name":"MD_HC_MAX_QUEUE_LENGTH","features":[179]},{"name":"MD_HC_MIME_TYPE","features":[179]},{"name":"MD_HC_MIN_FILE_SIZE_FOR_COMP","features":[179]},{"name":"MD_HC_NO_COMPRESSION_FOR_HTTP_10","features":[179]},{"name":"MD_HC_NO_COMPRESSION_FOR_PROXIES","features":[179]},{"name":"MD_HC_NO_COMPRESSION_FOR_RANGE","features":[179]},{"name":"MD_HC_ON_DEMAND_COMP_LEVEL","features":[179]},{"name":"MD_HC_PRIORITY","features":[179]},{"name":"MD_HC_SCRIPT_FILE_EXTENSIONS","features":[179]},{"name":"MD_HC_SEND_CACHE_HEADERS","features":[179]},{"name":"MD_HEADER_WAIT_TIMEOUT","features":[179]},{"name":"MD_HISTORY_LATEST","features":[179]},{"name":"MD_HTTPERRORS_EXISTING_RESPONSE","features":[179]},{"name":"MD_HTTP_CUSTOM","features":[179]},{"name":"MD_HTTP_EXPIRES","features":[179]},{"name":"MD_HTTP_FORWARDER_CUSTOM","features":[179]},{"name":"MD_HTTP_PICS","features":[179]},{"name":"MD_HTTP_REDIRECT","features":[179]},{"name":"MD_IISADMIN_EXTENSIONS","features":[179]},{"name":"MD_IMPORT_INHERITED","features":[179]},{"name":"MD_IMPORT_MERGE","features":[179]},{"name":"MD_IMPORT_NODE_ONLY","features":[179]},{"name":"MD_INSERT_PATH_STRING","features":[179]},{"name":"MD_INSERT_PATH_STRINGA","features":[179]},{"name":"MD_IN_PROCESS_ISAPI_APPS","features":[179]},{"name":"MD_IP_SEC","features":[179]},{"name":"MD_ISAPI_RESTRICTION_LIST","features":[179]},{"name":"MD_IS_CONTENT_INDEXED","features":[179]},{"name":"MD_KEY_TYPE","features":[179]},{"name":"MD_LEVELS_TO_SCAN","features":[179]},{"name":"MD_LOAD_BALANCER_CAPABILITIES","features":[179]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_BASIC","features":[179]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_SOPHISTICATED","features":[179]},{"name":"MD_LOCATION","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_DOUBLE","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_FLOAT","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_INT","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_LONG","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_LPSTR","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_LPWSTR","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_UINT","features":[179]},{"name":"MD_LOGCUSTOM_DATATYPE_ULONG","features":[179]},{"name":"MD_LOGCUSTOM_PROPERTY_DATATYPE","features":[179]},{"name":"MD_LOGCUSTOM_PROPERTY_HEADER","features":[179]},{"name":"MD_LOGCUSTOM_PROPERTY_ID","features":[179]},{"name":"MD_LOGCUSTOM_PROPERTY_MASK","features":[179]},{"name":"MD_LOGCUSTOM_PROPERTY_NAME","features":[179]},{"name":"MD_LOGCUSTOM_PROPERTY_NODE_ID","features":[179]},{"name":"MD_LOGCUSTOM_SERVICES_STRING","features":[179]},{"name":"MD_LOGEXT_FIELD_MASK","features":[179]},{"name":"MD_LOGEXT_FIELD_MASK2","features":[179]},{"name":"MD_LOGFILE_DIRECTORY","features":[179]},{"name":"MD_LOGFILE_LOCALTIME_ROLLOVER","features":[179]},{"name":"MD_LOGFILE_PERIOD","features":[179]},{"name":"MD_LOGFILE_PERIOD_DAILY","features":[179]},{"name":"MD_LOGFILE_PERIOD_HOURLY","features":[179]},{"name":"MD_LOGFILE_PERIOD_MAXSIZE","features":[179]},{"name":"MD_LOGFILE_PERIOD_MONTHLY","features":[179]},{"name":"MD_LOGFILE_PERIOD_NONE","features":[179]},{"name":"MD_LOGFILE_PERIOD_WEEKLY","features":[179]},{"name":"MD_LOGFILE_TRUNCATE_SIZE","features":[179]},{"name":"MD_LOGON_BATCH","features":[179]},{"name":"MD_LOGON_INTERACTIVE","features":[179]},{"name":"MD_LOGON_METHOD","features":[179]},{"name":"MD_LOGON_NETWORK","features":[179]},{"name":"MD_LOGON_NETWORK_CLEARTEXT","features":[179]},{"name":"MD_LOGSQL_DATA_SOURCES","features":[179]},{"name":"MD_LOGSQL_PASSWORD","features":[179]},{"name":"MD_LOGSQL_TABLE_NAME","features":[179]},{"name":"MD_LOGSQL_USER_NAME","features":[179]},{"name":"MD_LOG_ANONYMOUS","features":[179]},{"name":"MD_LOG_NONANONYMOUS","features":[179]},{"name":"MD_LOG_PLUGINS_AVAILABLE","features":[179]},{"name":"MD_LOG_PLUGIN_MOD_ID","features":[179]},{"name":"MD_LOG_PLUGIN_ORDER","features":[179]},{"name":"MD_LOG_PLUGIN_UI_ID","features":[179]},{"name":"MD_LOG_TYPE","features":[179]},{"name":"MD_LOG_TYPE_DISABLED","features":[179]},{"name":"MD_LOG_TYPE_ENABLED","features":[179]},{"name":"MD_LOG_UNUSED1","features":[179]},{"name":"MD_MAX_BANDWIDTH","features":[179]},{"name":"MD_MAX_BANDWIDTH_BLOCKED","features":[179]},{"name":"MD_MAX_CHANGE_ENTRIES","features":[179]},{"name":"MD_MAX_CLIENTS_MESSAGE","features":[179]},{"name":"MD_MAX_CONNECTIONS","features":[179]},{"name":"MD_MAX_ENDPOINT_CONNECTIONS","features":[179]},{"name":"MD_MAX_ERROR_FILES","features":[179]},{"name":"MD_MAX_GLOBAL_BANDWIDTH","features":[179]},{"name":"MD_MAX_GLOBAL_CONNECTIONS","features":[179]},{"name":"MD_MAX_REQUEST_ENTITY_ALLOWED","features":[179]},{"name":"MD_MD_SERVER_SS_AUTH_MAPPING","features":[179]},{"name":"MD_METADATA_ID_REGISTRATION","features":[179]},{"name":"MD_MIME_MAP","features":[179]},{"name":"MD_MIN_FILE_BYTES_PER_SEC","features":[179]},{"name":"MD_MSDOS_DIR_OUTPUT","features":[179]},{"name":"MD_NETLOGON_WKS_DNS","features":[179]},{"name":"MD_NETLOGON_WKS_IP","features":[179]},{"name":"MD_NETLOGON_WKS_NONE","features":[179]},{"name":"MD_NET_LOGON_WKS","features":[179]},{"name":"MD_NOTIFEXAUTH_NTLMSSL","features":[179]},{"name":"MD_NOTIFY_ACCESS_DENIED","features":[179]},{"name":"MD_NOTIFY_AUTHENTICATION","features":[179]},{"name":"MD_NOTIFY_AUTH_COMPLETE","features":[179]},{"name":"MD_NOTIFY_END_OF_NET_SESSION","features":[179]},{"name":"MD_NOTIFY_END_OF_REQUEST","features":[179]},{"name":"MD_NOTIFY_LOG","features":[179]},{"name":"MD_NOTIFY_NONSECURE_PORT","features":[179]},{"name":"MD_NOTIFY_ORDER_DEFAULT","features":[179]},{"name":"MD_NOTIFY_ORDER_HIGH","features":[179]},{"name":"MD_NOTIFY_ORDER_LOW","features":[179]},{"name":"MD_NOTIFY_ORDER_MEDIUM","features":[179]},{"name":"MD_NOTIFY_PREPROC_HEADERS","features":[179]},{"name":"MD_NOTIFY_READ_RAW_DATA","features":[179]},{"name":"MD_NOTIFY_SECURE_PORT","features":[179]},{"name":"MD_NOTIFY_SEND_RAW_DATA","features":[179]},{"name":"MD_NOTIFY_SEND_RESPONSE","features":[179]},{"name":"MD_NOTIFY_URL_MAP","features":[179]},{"name":"MD_NOT_DELETABLE","features":[179]},{"name":"MD_NTAUTHENTICATION_PROVIDERS","features":[179]},{"name":"MD_PASSIVE_PORT_RANGE","features":[179]},{"name":"MD_PASSPORT_NEED_MAPPING","features":[179]},{"name":"MD_PASSPORT_NO_MAPPING","features":[179]},{"name":"MD_PASSPORT_REQUIRE_AD_MAPPING","features":[179]},{"name":"MD_PASSPORT_TRY_MAPPING","features":[179]},{"name":"MD_POOL_IDC_TIMEOUT","features":[179]},{"name":"MD_PROCESS_NTCR_IF_LOGGED_ON","features":[179]},{"name":"MD_PUT_READ_SIZE","features":[179]},{"name":"MD_RAPID_FAIL_PROTECTION_INTERVAL","features":[179]},{"name":"MD_RAPID_FAIL_PROTECTION_MAX_CRASHES","features":[179]},{"name":"MD_REALM","features":[179]},{"name":"MD_REDIRECT_HEADERS","features":[179]},{"name":"MD_RESTRICTION_LIST_CUSTOM_DESC","features":[179]},{"name":"MD_ROOT_ENABLE_EDIT_WHILE_RUNNING","features":[179]},{"name":"MD_ROOT_ENABLE_HISTORY","features":[179]},{"name":"MD_ROOT_MAX_HISTORY_FILES","features":[179]},{"name":"MD_SCHEMA_METAID","features":[179]},{"name":"MD_SCRIPTMAPFLAG_ALLOWED_ON_READ_DIR","features":[179]},{"name":"MD_SCRIPTMAPFLAG_CHECK_PATH_INFO","features":[179]},{"name":"MD_SCRIPTMAPFLAG_SCRIPT","features":[179]},{"name":"MD_SCRIPT_MAPS","features":[179]},{"name":"MD_SCRIPT_TIMEOUT","features":[179]},{"name":"MD_SECURE_BINDINGS","features":[179]},{"name":"MD_SECURITY_SETUP_REQUIRED","features":[179]},{"name":"MD_SERVER_AUTOSTART","features":[179]},{"name":"MD_SERVER_BINDINGS","features":[179]},{"name":"MD_SERVER_COMMAND","features":[179]},{"name":"MD_SERVER_COMMAND_CONTINUE","features":[179]},{"name":"MD_SERVER_COMMAND_PAUSE","features":[179]},{"name":"MD_SERVER_COMMAND_START","features":[179]},{"name":"MD_SERVER_COMMAND_STOP","features":[179]},{"name":"MD_SERVER_COMMENT","features":[179]},{"name":"MD_SERVER_CONFIGURATION_INFO","features":[179]},{"name":"MD_SERVER_CONFIG_ALLOW_ENCRYPT","features":[179]},{"name":"MD_SERVER_CONFIG_AUTO_PW_SYNC","features":[179]},{"name":"MD_SERVER_CONFIG_SSL_128","features":[179]},{"name":"MD_SERVER_CONFIG_SSL_40","features":[179]},{"name":"MD_SERVER_LISTEN_BACKLOG","features":[179]},{"name":"MD_SERVER_LISTEN_TIMEOUT","features":[179]},{"name":"MD_SERVER_SIZE","features":[179]},{"name":"MD_SERVER_SIZE_LARGE","features":[179]},{"name":"MD_SERVER_SIZE_MEDIUM","features":[179]},{"name":"MD_SERVER_SIZE_SMALL","features":[179]},{"name":"MD_SERVER_STATE","features":[179]},{"name":"MD_SERVER_STATE_CONTINUING","features":[179]},{"name":"MD_SERVER_STATE_PAUSED","features":[179]},{"name":"MD_SERVER_STATE_PAUSING","features":[179]},{"name":"MD_SERVER_STATE_STARTED","features":[179]},{"name":"MD_SERVER_STATE_STARTING","features":[179]},{"name":"MD_SERVER_STATE_STOPPED","features":[179]},{"name":"MD_SERVER_STATE_STOPPING","features":[179]},{"name":"MD_SET_HOST_NAME","features":[179]},{"name":"MD_SHOW_4_DIGIT_YEAR","features":[179]},{"name":"MD_SSI_EXEC_DISABLED","features":[179]},{"name":"MD_SSL_ACCESS_PERM","features":[179]},{"name":"MD_SSL_ALWAYS_NEGO_CLIENT_CERT","features":[179]},{"name":"MD_SSL_KEY_PASSWORD","features":[179]},{"name":"MD_SSL_KEY_REQUEST","features":[179]},{"name":"MD_SSL_PRIVATE_KEY","features":[179]},{"name":"MD_SSL_PUBLIC_KEY","features":[179]},{"name":"MD_SSL_USE_DS_MAPPER","features":[179]},{"name":"MD_STOP_LISTENING","features":[179]},{"name":"MD_SUPPRESS_DEFAULT_BANNER","features":[179]},{"name":"MD_UPLOAD_READAHEAD_SIZE","features":[179]},{"name":"MD_URL_AUTHORIZATION_IMPERSONATION_LEVEL","features":[179]},{"name":"MD_URL_AUTHORIZATION_SCOPE_NAME","features":[179]},{"name":"MD_URL_AUTHORIZATION_STORE_NAME","features":[179]},{"name":"MD_USER_ISOLATION","features":[179]},{"name":"MD_USER_ISOLATION_AD","features":[179]},{"name":"MD_USER_ISOLATION_BASIC","features":[179]},{"name":"MD_USER_ISOLATION_LAST","features":[179]},{"name":"MD_USER_ISOLATION_NONE","features":[179]},{"name":"MD_USE_DIGEST_SSP","features":[179]},{"name":"MD_USE_HOST_NAME","features":[179]},{"name":"MD_VR_IGNORE_TRANSLATE","features":[179]},{"name":"MD_VR_NO_CACHE","features":[179]},{"name":"MD_VR_PASSTHROUGH","features":[179]},{"name":"MD_VR_PASSWORD","features":[179]},{"name":"MD_VR_PATH","features":[179]},{"name":"MD_VR_USERNAME","features":[179]},{"name":"MD_WAM_PWD","features":[179]},{"name":"MD_WAM_USER_NAME","features":[179]},{"name":"MD_WARNING_DUP_NAME","features":[179]},{"name":"MD_WARNING_INVALID_DATA","features":[179]},{"name":"MD_WARNING_PATH_NOT_FOUND","features":[179]},{"name":"MD_WARNING_PATH_NOT_INSERTED","features":[179]},{"name":"MD_WARNING_SAVE_FAILED","features":[179]},{"name":"MD_WEBDAV_MAX_ATTRIBUTES_PER_ELEMENT","features":[179]},{"name":"MD_WEB_SVC_EXT_RESTRICTION_LIST","features":[179]},{"name":"MD_WIN32_ERROR","features":[179]},{"name":"METADATATYPES","features":[179]},{"name":"METADATA_DONT_EXPAND","features":[179]},{"name":"METADATA_GETALL_INTERNAL_RECORD","features":[179]},{"name":"METADATA_GETALL_RECORD","features":[179]},{"name":"METADATA_HANDLE_INFO","features":[179]},{"name":"METADATA_INHERIT","features":[179]},{"name":"METADATA_INSERT_PATH","features":[179]},{"name":"METADATA_ISINHERITED","features":[179]},{"name":"METADATA_LOCAL_MACHINE_ONLY","features":[179]},{"name":"METADATA_MASTER_ROOT_HANDLE","features":[179]},{"name":"METADATA_MAX_NAME_LEN","features":[179]},{"name":"METADATA_NON_SECURE_ONLY","features":[179]},{"name":"METADATA_NO_ATTRIBUTES","features":[179]},{"name":"METADATA_PARTIAL_PATH","features":[179]},{"name":"METADATA_PERMISSION_READ","features":[179]},{"name":"METADATA_PERMISSION_WRITE","features":[179]},{"name":"METADATA_RECORD","features":[179]},{"name":"METADATA_REFERENCE","features":[179]},{"name":"METADATA_SECURE","features":[179]},{"name":"METADATA_VOLATILE","features":[179]},{"name":"MSCS_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"MSCS_MD_ID_END_RESERVED","features":[179]},{"name":"MULTISZ_METADATA","features":[179]},{"name":"NNTP_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"NNTP_MD_ID_END_RESERVED","features":[179]},{"name":"PFN_GETEXTENSIONVERSION","features":[1,179]},{"name":"PFN_HSE_CACHE_INVALIDATION_CALLBACK","features":[179]},{"name":"PFN_HSE_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[179]},{"name":"PFN_HSE_IO_COMPLETION","features":[1,179]},{"name":"PFN_HTTPEXTENSIONPROC","features":[1,179]},{"name":"PFN_IIS_GETSERVERVARIABLE","features":[1,179]},{"name":"PFN_IIS_READCLIENT","features":[1,179]},{"name":"PFN_IIS_SERVERSUPPORTFUNCTION","features":[1,179]},{"name":"PFN_IIS_WRITECLIENT","features":[1,179]},{"name":"PFN_TERMINATEEXTENSION","features":[1,179]},{"name":"PFN_WEB_CORE_ACTIVATE","features":[179]},{"name":"PFN_WEB_CORE_SET_METADATA_DLL_ENTRY","features":[179]},{"name":"PFN_WEB_CORE_SHUTDOWN","features":[179]},{"name":"POP3_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"POP3_MD_ID_END_RESERVED","features":[179]},{"name":"POST_PROCESS_PARAMETERS","features":[1,179]},{"name":"PRE_PROCESS_PARAMETERS","features":[1,179]},{"name":"SF_DENIED_APPLICATION","features":[179]},{"name":"SF_DENIED_BY_CONFIG","features":[179]},{"name":"SF_DENIED_FILTER","features":[179]},{"name":"SF_DENIED_LOGON","features":[179]},{"name":"SF_DENIED_RESOURCE","features":[179]},{"name":"SF_MAX_AUTH_TYPE","features":[179]},{"name":"SF_MAX_FILTER_DESC_LEN","features":[179]},{"name":"SF_MAX_PASSWORD","features":[179]},{"name":"SF_MAX_USERNAME","features":[179]},{"name":"SF_NOTIFY_ACCESS_DENIED","features":[179]},{"name":"SF_NOTIFY_AUTHENTICATION","features":[179]},{"name":"SF_NOTIFY_AUTH_COMPLETE","features":[179]},{"name":"SF_NOTIFY_END_OF_NET_SESSION","features":[179]},{"name":"SF_NOTIFY_END_OF_REQUEST","features":[179]},{"name":"SF_NOTIFY_LOG","features":[179]},{"name":"SF_NOTIFY_NONSECURE_PORT","features":[179]},{"name":"SF_NOTIFY_ORDER_DEFAULT","features":[179]},{"name":"SF_NOTIFY_ORDER_HIGH","features":[179]},{"name":"SF_NOTIFY_ORDER_LOW","features":[179]},{"name":"SF_NOTIFY_ORDER_MEDIUM","features":[179]},{"name":"SF_NOTIFY_PREPROC_HEADERS","features":[179]},{"name":"SF_NOTIFY_READ_RAW_DATA","features":[179]},{"name":"SF_NOTIFY_SECURE_PORT","features":[179]},{"name":"SF_NOTIFY_SEND_RAW_DATA","features":[179]},{"name":"SF_NOTIFY_SEND_RESPONSE","features":[179]},{"name":"SF_NOTIFY_URL_MAP","features":[179]},{"name":"SF_PROPERTY_IIS","features":[179]},{"name":"SF_PROPERTY_INSTANCE_NUM_ID","features":[179]},{"name":"SF_PROPERTY_SSL_CTXT","features":[179]},{"name":"SF_REQ_ADD_HEADERS_ON_DENIAL","features":[179]},{"name":"SF_REQ_DISABLE_NOTIFICATIONS","features":[179]},{"name":"SF_REQ_GET_CONNID","features":[179]},{"name":"SF_REQ_GET_PROPERTY","features":[179]},{"name":"SF_REQ_NORMALIZE_URL","features":[179]},{"name":"SF_REQ_SEND_RESPONSE_HEADER","features":[179]},{"name":"SF_REQ_SET_CERTIFICATE_INFO","features":[179]},{"name":"SF_REQ_SET_NEXT_READ_SIZE","features":[179]},{"name":"SF_REQ_SET_PROXY_INFO","features":[179]},{"name":"SF_REQ_TYPE","features":[179]},{"name":"SF_STATUS_REQ_ERROR","features":[179]},{"name":"SF_STATUS_REQ_FINISHED","features":[179]},{"name":"SF_STATUS_REQ_FINISHED_KEEP_CONN","features":[179]},{"name":"SF_STATUS_REQ_HANDLED_NOTIFICATION","features":[179]},{"name":"SF_STATUS_REQ_NEXT_NOTIFICATION","features":[179]},{"name":"SF_STATUS_REQ_READ_NEXT","features":[179]},{"name":"SF_STATUS_TYPE","features":[179]},{"name":"SMTP_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"SMTP_MD_ID_END_RESERVED","features":[179]},{"name":"STRING_METADATA","features":[179]},{"name":"USER_MD_ID_BASE_RESERVED","features":[179]},{"name":"WAM_MD_ID_BEGIN_RESERVED","features":[179]},{"name":"WAM_MD_ID_END_RESERVED","features":[179]},{"name":"WAM_MD_SERVER_BASE","features":[179]},{"name":"WEBDAV_MD_SERVER_BASE","features":[179]},{"name":"WEB_CORE_ACTIVATE_DLL_ENTRY","features":[179]},{"name":"WEB_CORE_DLL_NAME","features":[179]},{"name":"WEB_CORE_SET_METADATA_DLL_ENTRY","features":[179]},{"name":"WEB_CORE_SHUTDOWN_DLL_ENTRY","features":[179]}],"573":[{"name":"ABL_5_WO","features":[22]},{"name":"ADR_1","features":[22]},{"name":"ADR_2","features":[22]},{"name":"AIT1_8mm","features":[22]},{"name":"AIT_8mm","features":[22]},{"name":"AME_8mm","features":[22]},{"name":"ASSERT_ALTERNATE","features":[22]},{"name":"ASSERT_PRIMARY","features":[22]},{"name":"ASYNC_DUPLICATE_EXTENTS_STATUS","features":[22]},{"name":"ATAPI_ID_CMD","features":[22]},{"name":"AVATAR_F2","features":[22]},{"name":"AllElements","features":[22]},{"name":"AtaDataTypeIdentify","features":[22]},{"name":"AtaDataTypeLogPage","features":[22]},{"name":"AtaDataTypeUnknown","features":[22]},{"name":"BIN_COUNT","features":[22]},{"name":"BIN_RANGE","features":[22]},{"name":"BIN_RESULTS","features":[22]},{"name":"BIN_TYPES","features":[22]},{"name":"BOOT_AREA_INFO","features":[22]},{"name":"BULK_SECURITY_TEST_DATA","features":[22]},{"name":"CAP_ATAPI_ID_CMD","features":[22]},{"name":"CAP_ATA_ID_CMD","features":[22]},{"name":"CAP_SMART_CMD","features":[22]},{"name":"CDB_SIZE","features":[22]},{"name":"CD_R","features":[22]},{"name":"CD_ROM","features":[22]},{"name":"CD_RW","features":[22]},{"name":"CHANGER_BAR_CODE_SCANNER_INSTALLED","features":[22]},{"name":"CHANGER_CARTRIDGE_MAGAZINE","features":[22]},{"name":"CHANGER_CLEANER_ACCESS_NOT_VALID","features":[22]},{"name":"CHANGER_CLEANER_AUTODISMOUNT","features":[22]},{"name":"CHANGER_CLEANER_OPS_NOT_SUPPORTED","features":[22]},{"name":"CHANGER_CLEANER_SLOT","features":[22]},{"name":"CHANGER_CLOSE_IEPORT","features":[22]},{"name":"CHANGER_DEVICE_PROBLEM_TYPE","features":[22]},{"name":"CHANGER_DEVICE_REINITIALIZE_CAPABLE","features":[22]},{"name":"CHANGER_DRIVE_CLEANING_REQUIRED","features":[22]},{"name":"CHANGER_DRIVE_EMPTY_ON_DOOR_ACCESS","features":[22]},{"name":"CHANGER_ELEMENT","features":[22]},{"name":"CHANGER_ELEMENT_LIST","features":[22]},{"name":"CHANGER_ELEMENT_STATUS","features":[22]},{"name":"CHANGER_ELEMENT_STATUS_EX","features":[22]},{"name":"CHANGER_ELEMENT_STATUS_FLAGS","features":[22]},{"name":"CHANGER_EXCHANGE_MEDIA","features":[22]},{"name":"CHANGER_EXCHANGE_MEDIUM","features":[1,22]},{"name":"CHANGER_FEATURES","features":[22]},{"name":"CHANGER_IEPORT_USER_CONTROL_CLOSE","features":[22]},{"name":"CHANGER_IEPORT_USER_CONTROL_OPEN","features":[22]},{"name":"CHANGER_INITIALIZE_ELEMENT_STATUS","features":[1,22]},{"name":"CHANGER_INIT_ELEM_STAT_WITH_RANGE","features":[22]},{"name":"CHANGER_KEYPAD_ENABLE_DISABLE","features":[22]},{"name":"CHANGER_LOCK_UNLOCK","features":[22]},{"name":"CHANGER_MEDIUM_FLIP","features":[22]},{"name":"CHANGER_MOVE_EXTENDS_IEPORT","features":[22]},{"name":"CHANGER_MOVE_MEDIUM","features":[1,22]},{"name":"CHANGER_MOVE_RETRACTS_IEPORT","features":[22]},{"name":"CHANGER_OPEN_IEPORT","features":[22]},{"name":"CHANGER_POSITION_TO_ELEMENT","features":[22]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_DRIVE","features":[22]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_SLOT","features":[22]},{"name":"CHANGER_PREDISMOUNT_EJECT_REQUIRED","features":[22]},{"name":"CHANGER_PREMOUNT_EJECT_REQUIRED","features":[22]},{"name":"CHANGER_PRODUCT_DATA","features":[22]},{"name":"CHANGER_READ_ELEMENT_STATUS","features":[1,22]},{"name":"CHANGER_REPORT_IEPORT_STATE","features":[22]},{"name":"CHANGER_RESERVED_BIT","features":[22]},{"name":"CHANGER_RTN_MEDIA_TO_ORIGINAL_ADDR","features":[22]},{"name":"CHANGER_SEND_VOLUME_TAG_INFORMATION","features":[22]},{"name":"CHANGER_SERIAL_NUMBER_VALID","features":[22]},{"name":"CHANGER_SET_ACCESS","features":[22]},{"name":"CHANGER_SET_POSITION","features":[1,22]},{"name":"CHANGER_SLOTS_USE_TRAYS","features":[22]},{"name":"CHANGER_STATUS_NON_VOLATILE","features":[22]},{"name":"CHANGER_STORAGE_DRIVE","features":[22]},{"name":"CHANGER_STORAGE_IEPORT","features":[22]},{"name":"CHANGER_STORAGE_SLOT","features":[22]},{"name":"CHANGER_STORAGE_TRANSPORT","features":[22]},{"name":"CHANGER_TO_DRIVE","features":[22]},{"name":"CHANGER_TO_IEPORT","features":[22]},{"name":"CHANGER_TO_SLOT","features":[22]},{"name":"CHANGER_TO_TRANSPORT","features":[22]},{"name":"CHANGER_TRUE_EXCHANGE_CAPABLE","features":[22]},{"name":"CHANGER_VOLUME_ASSERT","features":[22]},{"name":"CHANGER_VOLUME_IDENTIFICATION","features":[22]},{"name":"CHANGER_VOLUME_REPLACE","features":[22]},{"name":"CHANGER_VOLUME_SEARCH","features":[22]},{"name":"CHANGER_VOLUME_UNDEFINE","features":[22]},{"name":"CHECKSUM_TYPE_CRC32","features":[22]},{"name":"CHECKSUM_TYPE_CRC64","features":[22]},{"name":"CHECKSUM_TYPE_ECC","features":[22]},{"name":"CHECKSUM_TYPE_FIRST_UNUSED_TYPE","features":[22]},{"name":"CHECKSUM_TYPE_NONE","features":[22]},{"name":"CHECKSUM_TYPE_SHA256","features":[22]},{"name":"CLASS_MEDIA_CHANGE_CONTEXT","features":[22]},{"name":"CLEANER_CARTRIDGE","features":[22]},{"name":"CLUSTER_RANGE","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_DO_NOT_MAP_NAME","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_EXCEPTION_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_TARGET_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_LAYER_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_SCRATCH_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_UNION_LAYER_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_EXCEPTION_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_TARGET_ROOT","features":[22]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[22]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[22]},{"name":"CONTAINER_ROOT_INFO_VALID_FLAGS","features":[22]},{"name":"CONTAINER_VOLUME_STATE","features":[22]},{"name":"CONTAINER_VOLUME_STATE_HOSTING_CONTAINER","features":[22]},{"name":"COPYFILE_SIS_FLAGS","features":[22]},{"name":"COPYFILE_SIS_LINK","features":[22]},{"name":"COPYFILE_SIS_REPLACE","features":[22]},{"name":"CREATE_DISK","features":[22]},{"name":"CREATE_DISK_GPT","features":[22]},{"name":"CREATE_DISK_MBR","features":[22]},{"name":"CREATE_USN_JOURNAL_DATA","features":[22]},{"name":"CSVFS_DISK_CONNECTIVITY","features":[22]},{"name":"CSV_CONTROL_OP","features":[22]},{"name":"CSV_CONTROL_PARAM","features":[22]},{"name":"CSV_INVALID_DEVICE_NUMBER","features":[22]},{"name":"CSV_IS_OWNED_BY_CSVFS","features":[1,22]},{"name":"CSV_MGMTLOCK_CHECK_VOLUME_REDIRECTED","features":[22]},{"name":"CSV_MGMT_LOCK","features":[22]},{"name":"CSV_NAMESPACE_INFO","features":[22]},{"name":"CSV_QUERY_FILE_REVISION","features":[22]},{"name":"CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[21,22]},{"name":"CSV_QUERY_MDS_PATH","features":[22]},{"name":"CSV_QUERY_MDS_PATH_FLAG_CSV_DIRECT_IO_ENABLED","features":[22]},{"name":"CSV_QUERY_MDS_PATH_FLAG_SMB_BYPASS_CSV_ENABLED","features":[22]},{"name":"CSV_QUERY_MDS_PATH_FLAG_STORAGE_ON_THIS_NODE_IS_CONNECTED","features":[22]},{"name":"CSV_QUERY_MDS_PATH_V2","features":[22]},{"name":"CSV_QUERY_MDS_PATH_V2_VERSION_1","features":[22]},{"name":"CSV_QUERY_REDIRECT_STATE","features":[1,22]},{"name":"CSV_QUERY_VETO_FILE_DIRECT_IO_OUTPUT","features":[22]},{"name":"CSV_QUERY_VOLUME_ID","features":[22]},{"name":"CSV_QUERY_VOLUME_REDIRECT_STATE","features":[1,22]},{"name":"CSV_SET_VOLUME_ID","features":[22]},{"name":"CYGNET_12_WO","features":[22]},{"name":"ChangerDoor","features":[22]},{"name":"ChangerDrive","features":[22]},{"name":"ChangerIEPort","features":[22]},{"name":"ChangerKeypad","features":[22]},{"name":"ChangerMaxElement","features":[22]},{"name":"ChangerSlot","features":[22]},{"name":"ChangerTransport","features":[22]},{"name":"CsvControlDisableCaching","features":[22]},{"name":"CsvControlEnableCaching","features":[22]},{"name":"CsvControlEnableUSNRangeModificationTracking","features":[22]},{"name":"CsvControlGetCsvFsMdsPathV2","features":[22]},{"name":"CsvControlMarkHandleLocalVolumeMount","features":[22]},{"name":"CsvControlQueryFileRevision","features":[22]},{"name":"CsvControlQueryFileRevisionFileId128","features":[22]},{"name":"CsvControlQueryMdsPath","features":[22]},{"name":"CsvControlQueryMdsPathNoPause","features":[22]},{"name":"CsvControlQueryRedirectState","features":[22]},{"name":"CsvControlQueryVolumeId","features":[22]},{"name":"CsvControlQueryVolumeRedirectState","features":[22]},{"name":"CsvControlSetVolumeId","features":[22]},{"name":"CsvControlStartForceDFO","features":[22]},{"name":"CsvControlStartRedirectFile","features":[22]},{"name":"CsvControlStopForceDFO","features":[22]},{"name":"CsvControlStopRedirectFile","features":[22]},{"name":"CsvControlUnmarkHandleLocalVolumeMount","features":[22]},{"name":"CsvFsDiskConnectivityAllNodes","features":[22]},{"name":"CsvFsDiskConnectivityMdsNodeOnly","features":[22]},{"name":"CsvFsDiskConnectivityNone","features":[22]},{"name":"CsvFsDiskConnectivitySubsetOfNodes","features":[22]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_FALLBACK_SPECIFIED","features":[22]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_MANDATORY","features":[22]},{"name":"DDS_4mm","features":[22]},{"name":"DDUMP_FLAG_DATA_READ_FROM_DEVICE","features":[22]},{"name":"DECRYPTION_STATUS_BUFFER","features":[1,22]},{"name":"DELETE_USN_JOURNAL_DATA","features":[22]},{"name":"DETECTION_TYPE","features":[22]},{"name":"DEVICEDUMP_CAP_PRIVATE_SECTION","features":[22]},{"name":"DEVICEDUMP_CAP_RESTRICTED_SECTION","features":[22]},{"name":"DEVICEDUMP_COLLECTION_TYPEIDE_NOTIFICATION_TYPE","features":[22]},{"name":"DEVICEDUMP_MAX_IDSTRING","features":[22]},{"name":"DEVICEDUMP_PRIVATE_SUBSECTION","features":[22]},{"name":"DEVICEDUMP_PUBLIC_SUBSECTION","features":[22]},{"name":"DEVICEDUMP_RESTRICTED_SUBSECTION","features":[22]},{"name":"DEVICEDUMP_SECTION_HEADER","features":[22]},{"name":"DEVICEDUMP_STORAGEDEVICE_DATA","features":[22]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_DUMP","features":[22]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_STATE_RECORD","features":[22]},{"name":"DEVICEDUMP_STRUCTURE_VERSION","features":[22]},{"name":"DEVICEDUMP_STRUCTURE_VERSION_V1","features":[22]},{"name":"DEVICEDUMP_SUBSECTION_POINTER","features":[22]},{"name":"DEVICE_COPY_OFFLOAD_DESCRIPTOR","features":[22]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS","features":[22]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS_VERSION_V1","features":[22]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE","features":[22]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE_V2","features":[22]},{"name":"DEVICE_DATA_SET_RANGE","features":[22]},{"name":"DEVICE_DATA_SET_REPAIR_OUTPUT","features":[22]},{"name":"DEVICE_DATA_SET_REPAIR_PARAMETERS","features":[22]},{"name":"DEVICE_DATA_SET_SCRUB_EX_OUTPUT","features":[22]},{"name":"DEVICE_DATA_SET_SCRUB_OUTPUT","features":[22]},{"name":"DEVICE_DATA_SET_TOPOLOGY_ID_QUERY_OUTPUT","features":[22]},{"name":"DEVICE_DSM_CONVERSION_OUTPUT","features":[22]},{"name":"DEVICE_DSM_DEFINITION","features":[1,22]},{"name":"DEVICE_DSM_FLAG_ALLOCATION_CONSOLIDATEABLE_ONLY","features":[22]},{"name":"DEVICE_DSM_FLAG_ENTIRE_DATA_SET_RANGE","features":[22]},{"name":"DEVICE_DSM_FLAG_PHYSICAL_ADDRESSES_OMIT_TOTAL_RANGES","features":[22]},{"name":"DEVICE_DSM_FLAG_REPAIR_INPUT_TOPOLOGY_ID_PRESENT","features":[22]},{"name":"DEVICE_DSM_FLAG_REPAIR_OUTPUT_PARITY_EXTENT","features":[22]},{"name":"DEVICE_DSM_FLAG_SCRUB_OUTPUT_PARITY_EXTENT","features":[22]},{"name":"DEVICE_DSM_FLAG_SCRUB_SKIP_IN_SYNC","features":[22]},{"name":"DEVICE_DSM_FLAG_TRIM_BYPASS_RZAT","features":[22]},{"name":"DEVICE_DSM_FLAG_TRIM_NOT_FS_ALLOCATED","features":[22]},{"name":"DEVICE_DSM_FREE_SPACE_OUTPUT","features":[22]},{"name":"DEVICE_DSM_LOST_QUERY_OUTPUT","features":[22]},{"name":"DEVICE_DSM_LOST_QUERY_PARAMETERS","features":[22]},{"name":"DEVICE_DSM_NOTIFICATION_PARAMETERS","features":[22]},{"name":"DEVICE_DSM_NOTIFY_FLAG_BEGIN","features":[22]},{"name":"DEVICE_DSM_NOTIFY_FLAG_END","features":[22]},{"name":"DEVICE_DSM_NVCACHE_CHANGE_PRIORITY_PARAMETERS","features":[22]},{"name":"DEVICE_DSM_OFFLOAD_READ_PARAMETERS","features":[22]},{"name":"DEVICE_DSM_OFFLOAD_WRITE_PARAMETERS","features":[22]},{"name":"DEVICE_DSM_PARAMETERS_V1","features":[22]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT","features":[22]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_V1","features":[22]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_VERSION_V1","features":[22]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO","features":[22]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO_VERSION_V1","features":[22]},{"name":"DEVICE_DSM_RANGE_ERROR_OUTPUT_V1","features":[22]},{"name":"DEVICE_DSM_REPORT_ZONES_DATA","features":[1,22]},{"name":"DEVICE_DSM_REPORT_ZONES_PARAMETERS","features":[22]},{"name":"DEVICE_DSM_TIERING_QUERY_INPUT","features":[22]},{"name":"DEVICE_DSM_TIERING_QUERY_OUTPUT","features":[22]},{"name":"DEVICE_INTERNAL_STATUS_DATA","features":[22]},{"name":"DEVICE_INTERNAL_STATUS_DATA_REQUEST_TYPE","features":[22]},{"name":"DEVICE_INTERNAL_STATUS_DATA_SET","features":[22]},{"name":"DEVICE_LB_PROVISIONING_DESCRIPTOR","features":[22]},{"name":"DEVICE_LOCATION","features":[22]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES","features":[22]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES_OUTPUT","features":[22]},{"name":"DEVICE_MEDIA_INFO","features":[21,22]},{"name":"DEVICE_POWER_DESCRIPTOR","features":[1,22]},{"name":"DEVICE_SEEK_PENALTY_DESCRIPTOR","features":[1,22]},{"name":"DEVICE_STORAGE_ADDRESS_RANGE","features":[22]},{"name":"DEVICE_STORAGE_NO_ERRORS","features":[22]},{"name":"DEVICE_STORAGE_RANGE_ATTRIBUTES","features":[22]},{"name":"DEVICE_TRIM_DESCRIPTOR","features":[1,22]},{"name":"DEVICE_WRITE_AGGREGATION_DESCRIPTOR","features":[1,22]},{"name":"DEVPKEY_Storage_Disk_Number","features":[35,22]},{"name":"DEVPKEY_Storage_Gpt_Name","features":[35,22]},{"name":"DEVPKEY_Storage_Gpt_Type","features":[35,22]},{"name":"DEVPKEY_Storage_Mbr_Type","features":[35,22]},{"name":"DEVPKEY_Storage_Partition_Number","features":[35,22]},{"name":"DEVPKEY_Storage_Portable","features":[35,22]},{"name":"DEVPKEY_Storage_Removable_Media","features":[35,22]},{"name":"DEVPKEY_Storage_System_Critical","features":[35,22]},{"name":"DISABLE_SMART","features":[22]},{"name":"DISK_ATTRIBUTE_OFFLINE","features":[22]},{"name":"DISK_ATTRIBUTE_READ_ONLY","features":[22]},{"name":"DISK_BINNING","features":[22]},{"name":"DISK_CACHE_INFORMATION","features":[1,22]},{"name":"DISK_CACHE_RETENTION_PRIORITY","features":[22]},{"name":"DISK_CONTROLLER_NUMBER","features":[22]},{"name":"DISK_DETECTION_INFO","features":[22]},{"name":"DISK_EXTENT","features":[22]},{"name":"DISK_EX_INT13_INFO","features":[22]},{"name":"DISK_GEOMETRY","features":[22]},{"name":"DISK_GEOMETRY_EX","features":[22]},{"name":"DISK_GROW_PARTITION","features":[22]},{"name":"DISK_HISTOGRAM","features":[22]},{"name":"DISK_INT13_INFO","features":[22]},{"name":"DISK_LOGGING","features":[22]},{"name":"DISK_LOGGING_DUMP","features":[22]},{"name":"DISK_LOGGING_START","features":[22]},{"name":"DISK_LOGGING_STOP","features":[22]},{"name":"DISK_PARTITION_INFO","features":[22]},{"name":"DISK_PERFORMANCE","features":[22]},{"name":"DISK_RECORD","features":[1,22]},{"name":"DLT","features":[22]},{"name":"DMI","features":[22]},{"name":"DRIVERSTATUS","features":[22]},{"name":"DRIVE_LAYOUT_INFORMATION","features":[1,22]},{"name":"DRIVE_LAYOUT_INFORMATION_EX","features":[1,22]},{"name":"DRIVE_LAYOUT_INFORMATION_GPT","features":[22]},{"name":"DRIVE_LAYOUT_INFORMATION_MBR","features":[22]},{"name":"DST_L","features":[22]},{"name":"DST_M","features":[22]},{"name":"DST_S","features":[22]},{"name":"DUPLICATE_EXTENTS_DATA","features":[1,22]},{"name":"DUPLICATE_EXTENTS_DATA32","features":[22]},{"name":"DUPLICATE_EXTENTS_DATA_EX","features":[1,22]},{"name":"DUPLICATE_EXTENTS_DATA_EX32","features":[22]},{"name":"DUPLICATE_EXTENTS_DATA_EX_ASYNC","features":[22]},{"name":"DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC","features":[22]},{"name":"DUPLICATE_EXTENTS_STATE","features":[22]},{"name":"DVD_R","features":[22]},{"name":"DVD_RAM","features":[22]},{"name":"DVD_ROM","features":[22]},{"name":"DVD_RW","features":[22]},{"name":"DV_6mm","features":[22]},{"name":"DetectExInt13","features":[22]},{"name":"DetectInt13","features":[22]},{"name":"DetectNone","features":[22]},{"name":"DeviceCurrentInternalStatusData","features":[22]},{"name":"DeviceCurrentInternalStatusDataHeader","features":[22]},{"name":"DeviceDsmActionFlag_NonDestructive","features":[22]},{"name":"DeviceInternalStatusDataRequestTypeUndefined","features":[22]},{"name":"DeviceProblemCHMError","features":[22]},{"name":"DeviceProblemCHMMoveError","features":[22]},{"name":"DeviceProblemCHMZeroError","features":[22]},{"name":"DeviceProblemCalibrationError","features":[22]},{"name":"DeviceProblemCartridgeEjectError","features":[22]},{"name":"DeviceProblemCartridgeInsertError","features":[22]},{"name":"DeviceProblemDoorOpen","features":[22]},{"name":"DeviceProblemDriveError","features":[22]},{"name":"DeviceProblemGripperError","features":[22]},{"name":"DeviceProblemHardware","features":[22]},{"name":"DeviceProblemNone","features":[22]},{"name":"DeviceProblemPositionError","features":[22]},{"name":"DeviceProblemSensorError","features":[22]},{"name":"DeviceProblemTargetFailure","features":[22]},{"name":"DeviceSavedInternalStatusData","features":[22]},{"name":"DeviceSavedInternalStatusDataHeader","features":[22]},{"name":"DeviceStatusDataSet1","features":[22]},{"name":"DeviceStatusDataSet2","features":[22]},{"name":"DeviceStatusDataSet3","features":[22]},{"name":"DeviceStatusDataSet4","features":[22]},{"name":"DeviceStatusDataSetMax","features":[22]},{"name":"DeviceStatusDataSetUndefined","features":[22]},{"name":"DiskHealthHealthy","features":[22]},{"name":"DiskHealthMax","features":[22]},{"name":"DiskHealthUnhealthy","features":[22]},{"name":"DiskHealthUnknown","features":[22]},{"name":"DiskHealthWarning","features":[22]},{"name":"DiskOpReasonBackgroundOperation","features":[22]},{"name":"DiskOpReasonComponent","features":[22]},{"name":"DiskOpReasonConfiguration","features":[22]},{"name":"DiskOpReasonDataPersistenceLossImminent","features":[22]},{"name":"DiskOpReasonDeviceController","features":[22]},{"name":"DiskOpReasonDisabledByPlatform","features":[22]},{"name":"DiskOpReasonEnergySource","features":[22]},{"name":"DiskOpReasonHealthCheck","features":[22]},{"name":"DiskOpReasonInvalidFirmware","features":[22]},{"name":"DiskOpReasonIo","features":[22]},{"name":"DiskOpReasonLostData","features":[22]},{"name":"DiskOpReasonLostDataPersistence","features":[22]},{"name":"DiskOpReasonLostWritePersistence","features":[22]},{"name":"DiskOpReasonMax","features":[22]},{"name":"DiskOpReasonMedia","features":[22]},{"name":"DiskOpReasonMediaController","features":[22]},{"name":"DiskOpReasonNVDIMM_N","features":[22]},{"name":"DiskOpReasonScsiSenseCode","features":[22]},{"name":"DiskOpReasonThresholdExceeded","features":[22]},{"name":"DiskOpReasonUnknown","features":[22]},{"name":"DiskOpReasonWritePersistenceLossImminent","features":[22]},{"name":"DiskOpStatusHardwareError","features":[22]},{"name":"DiskOpStatusInService","features":[22]},{"name":"DiskOpStatusMissing","features":[22]},{"name":"DiskOpStatusNone","features":[22]},{"name":"DiskOpStatusNotUsable","features":[22]},{"name":"DiskOpStatusOk","features":[22]},{"name":"DiskOpStatusPredictingFailure","features":[22]},{"name":"DiskOpStatusTransientError","features":[22]},{"name":"DiskOpStatusUnknown","features":[22]},{"name":"EFS_TRACKED_OFFSET_HEADER_FLAG","features":[22]},{"name":"ELEMENT_STATUS_ACCESS","features":[22]},{"name":"ELEMENT_STATUS_AVOLTAG","features":[22]},{"name":"ELEMENT_STATUS_EXCEPT","features":[22]},{"name":"ELEMENT_STATUS_EXENAB","features":[22]},{"name":"ELEMENT_STATUS_FULL","features":[22]},{"name":"ELEMENT_STATUS_ID_VALID","features":[22]},{"name":"ELEMENT_STATUS_IMPEXP","features":[22]},{"name":"ELEMENT_STATUS_INENAB","features":[22]},{"name":"ELEMENT_STATUS_INVERT","features":[22]},{"name":"ELEMENT_STATUS_LUN_VALID","features":[22]},{"name":"ELEMENT_STATUS_NOT_BUS","features":[22]},{"name":"ELEMENT_STATUS_PRODUCT_DATA","features":[22]},{"name":"ELEMENT_STATUS_PVOLTAG","features":[22]},{"name":"ELEMENT_STATUS_SVALID","features":[22]},{"name":"ELEMENT_TYPE","features":[22]},{"name":"ENABLE_DISABLE_AUTOSAVE","features":[22]},{"name":"ENABLE_DISABLE_AUTO_OFFLINE","features":[22]},{"name":"ENABLE_SMART","features":[22]},{"name":"ENCRYPTED_DATA_INFO","features":[22]},{"name":"ENCRYPTED_DATA_INFO_SPARSE_FILE","features":[22]},{"name":"ENCRYPTION_BUFFER","features":[22]},{"name":"ENCRYPTION_FORMAT_DEFAULT","features":[22]},{"name":"ENCRYPTION_KEY_CTRL_INPUT","features":[22]},{"name":"ERROR_DRIVE_NOT_INSTALLED","features":[22]},{"name":"ERROR_HISTORY_DIRECTORY_ENTRY_DEFAULT_COUNT","features":[22]},{"name":"ERROR_INIT_STATUS_NEEDED","features":[22]},{"name":"ERROR_LABEL_QUESTIONABLE","features":[22]},{"name":"ERROR_LABEL_UNREADABLE","features":[22]},{"name":"ERROR_SLOT_NOT_PRESENT","features":[22]},{"name":"ERROR_TRAY_MALFUNCTION","features":[22]},{"name":"ERROR_UNHANDLED_ERROR","features":[22]},{"name":"EXECUTE_OFFLINE_DIAGS","features":[22]},{"name":"EXFAT_STATISTICS","features":[22]},{"name":"EXTENDED_ENCRYPTED_DATA_INFO","features":[22]},{"name":"EXTEND_IEPORT","features":[22]},{"name":"EqualPriority","features":[22]},{"name":"F3_120M_512","features":[22]},{"name":"F3_128Mb_512","features":[22]},{"name":"F3_1Pt23_1024","features":[22]},{"name":"F3_1Pt2_512","features":[22]},{"name":"F3_1Pt44_512","features":[22]},{"name":"F3_200Mb_512","features":[22]},{"name":"F3_20Pt8_512","features":[22]},{"name":"F3_230Mb_512","features":[22]},{"name":"F3_240M_512","features":[22]},{"name":"F3_2Pt88_512","features":[22]},{"name":"F3_32M_512","features":[22]},{"name":"F3_640_512","features":[22]},{"name":"F3_720_512","features":[22]},{"name":"F5_160_512","features":[22]},{"name":"F5_180_512","features":[22]},{"name":"F5_1Pt23_1024","features":[22]},{"name":"F5_1Pt2_512","features":[22]},{"name":"F5_320_1024","features":[22]},{"name":"F5_320_512","features":[22]},{"name":"F5_360_512","features":[22]},{"name":"F5_640_512","features":[22]},{"name":"F5_720_512","features":[22]},{"name":"F8_256_128","features":[22]},{"name":"FAT_STATISTICS","features":[22]},{"name":"FILESYSTEM_STATISTICS","features":[22]},{"name":"FILESYSTEM_STATISTICS_EX","features":[22]},{"name":"FILESYSTEM_STATISTICS_TYPE","features":[22]},{"name":"FILESYSTEM_STATISTICS_TYPE_EXFAT","features":[22]},{"name":"FILESYSTEM_STATISTICS_TYPE_FAT","features":[22]},{"name":"FILESYSTEM_STATISTICS_TYPE_NTFS","features":[22]},{"name":"FILESYSTEM_STATISTICS_TYPE_REFS","features":[22]},{"name":"FILE_ALLOCATED_RANGE_BUFFER","features":[22]},{"name":"FILE_ANY_ACCESS","features":[22]},{"name":"FILE_CLEAR_ENCRYPTION","features":[22]},{"name":"FILE_DESIRED_STORAGE_CLASS_INFORMATION","features":[22]},{"name":"FILE_DEVICE_8042_PORT","features":[22]},{"name":"FILE_DEVICE_ACPI","features":[22]},{"name":"FILE_DEVICE_BATTERY","features":[22]},{"name":"FILE_DEVICE_BEEP","features":[22]},{"name":"FILE_DEVICE_BIOMETRIC","features":[22]},{"name":"FILE_DEVICE_BLUETOOTH","features":[22]},{"name":"FILE_DEVICE_BUS_EXTENDER","features":[22]},{"name":"FILE_DEVICE_CD_ROM_FILE_SYSTEM","features":[22]},{"name":"FILE_DEVICE_CHANGER","features":[22]},{"name":"FILE_DEVICE_CONSOLE","features":[22]},{"name":"FILE_DEVICE_CONTROLLER","features":[22]},{"name":"FILE_DEVICE_CRYPT_PROVIDER","features":[22]},{"name":"FILE_DEVICE_DATALINK","features":[22]},{"name":"FILE_DEVICE_DEVAPI","features":[22]},{"name":"FILE_DEVICE_DFS","features":[22]},{"name":"FILE_DEVICE_DFS_FILE_SYSTEM","features":[22]},{"name":"FILE_DEVICE_DFS_VOLUME","features":[22]},{"name":"FILE_DEVICE_DISK_FILE_SYSTEM","features":[22]},{"name":"FILE_DEVICE_EHSTOR","features":[22]},{"name":"FILE_DEVICE_EVENT_COLLECTOR","features":[22]},{"name":"FILE_DEVICE_FILE_SYSTEM","features":[22]},{"name":"FILE_DEVICE_FIPS","features":[22]},{"name":"FILE_DEVICE_FULLSCREEN_VIDEO","features":[22]},{"name":"FILE_DEVICE_GPIO","features":[22]},{"name":"FILE_DEVICE_HOLOGRAPHIC","features":[22]},{"name":"FILE_DEVICE_INFINIBAND","features":[22]},{"name":"FILE_DEVICE_INPORT_PORT","features":[22]},{"name":"FILE_DEVICE_KEYBOARD","features":[22]},{"name":"FILE_DEVICE_KS","features":[22]},{"name":"FILE_DEVICE_KSEC","features":[22]},{"name":"FILE_DEVICE_MAILSLOT","features":[22]},{"name":"FILE_DEVICE_MASS_STORAGE","features":[22]},{"name":"FILE_DEVICE_MIDI_IN","features":[22]},{"name":"FILE_DEVICE_MIDI_OUT","features":[22]},{"name":"FILE_DEVICE_MODEM","features":[22]},{"name":"FILE_DEVICE_MOUSE","features":[22]},{"name":"FILE_DEVICE_MT_COMPOSITE","features":[22]},{"name":"FILE_DEVICE_MT_TRANSPORT","features":[22]},{"name":"FILE_DEVICE_MULTI_UNC_PROVIDER","features":[22]},{"name":"FILE_DEVICE_NAMED_PIPE","features":[22]},{"name":"FILE_DEVICE_NETWORK","features":[22]},{"name":"FILE_DEVICE_NETWORK_BROWSER","features":[22]},{"name":"FILE_DEVICE_NETWORK_FILE_SYSTEM","features":[22]},{"name":"FILE_DEVICE_NETWORK_REDIRECTOR","features":[22]},{"name":"FILE_DEVICE_NFP","features":[22]},{"name":"FILE_DEVICE_NULL","features":[22]},{"name":"FILE_DEVICE_NVDIMM","features":[22]},{"name":"FILE_DEVICE_PARALLEL_PORT","features":[22]},{"name":"FILE_DEVICE_PERSISTENT_MEMORY","features":[22]},{"name":"FILE_DEVICE_PHYSICAL_NETCARD","features":[22]},{"name":"FILE_DEVICE_PMI","features":[22]},{"name":"FILE_DEVICE_POINT_OF_SERVICE","features":[22]},{"name":"FILE_DEVICE_PRINTER","features":[22]},{"name":"FILE_DEVICE_PRM","features":[22]},{"name":"FILE_DEVICE_SCANNER","features":[22]},{"name":"FILE_DEVICE_SCREEN","features":[22]},{"name":"FILE_DEVICE_SDFXHCI","features":[22]},{"name":"FILE_DEVICE_SERENUM","features":[22]},{"name":"FILE_DEVICE_SERIAL_MOUSE_PORT","features":[22]},{"name":"FILE_DEVICE_SERIAL_PORT","features":[22]},{"name":"FILE_DEVICE_SMB","features":[22]},{"name":"FILE_DEVICE_SOUND","features":[22]},{"name":"FILE_DEVICE_SOUNDWIRE","features":[22]},{"name":"FILE_DEVICE_STORAGE_REPLICATION","features":[22]},{"name":"FILE_DEVICE_STREAMS","features":[22]},{"name":"FILE_DEVICE_SYSENV","features":[22]},{"name":"FILE_DEVICE_TAPE_FILE_SYSTEM","features":[22]},{"name":"FILE_DEVICE_TERMSRV","features":[22]},{"name":"FILE_DEVICE_TRANSPORT","features":[22]},{"name":"FILE_DEVICE_TRUST_ENV","features":[22]},{"name":"FILE_DEVICE_UCM","features":[22]},{"name":"FILE_DEVICE_UCMTCPCI","features":[22]},{"name":"FILE_DEVICE_UCMUCSI","features":[22]},{"name":"FILE_DEVICE_UNKNOWN","features":[22]},{"name":"FILE_DEVICE_USB4","features":[22]},{"name":"FILE_DEVICE_USBEX","features":[22]},{"name":"FILE_DEVICE_VDM","features":[22]},{"name":"FILE_DEVICE_VIDEO","features":[22]},{"name":"FILE_DEVICE_VIRTUAL_BLOCK","features":[22]},{"name":"FILE_DEVICE_VIRTUAL_DISK","features":[22]},{"name":"FILE_DEVICE_VMBUS","features":[22]},{"name":"FILE_DEVICE_WAVE_IN","features":[22]},{"name":"FILE_DEVICE_WAVE_OUT","features":[22]},{"name":"FILE_DEVICE_WPD","features":[22]},{"name":"FILE_FS_PERSISTENT_VOLUME_INFORMATION","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NON_RESIDENT","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NOT_FOUND","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_TOO_SMALL","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_CLUSTERS_ALREADY_IN_USE","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_DENY_DEFRAG","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_IS_BASE_RECORD","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_BASE_RECORD","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_EXIST","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_IN_USE","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_ORPHAN","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_REUSED","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_INDEX_ENTRY_MISMATCH","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ARRAY_LENGTH_COUNT","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_LCN","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ORPHAN_RECOVERY_NAME","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_PARENT","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_RUN_LENGTH","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_VCN","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_LCN_NOT_EXIST","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_MULTIPLE_FILE_NAME_ATTRIBUTES","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_NAME_CONFLICT","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOTHING_WRONG","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOT_IMPLEMENTED","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN_GENERATED","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_GENERIC_NAMES","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_RESOURCE","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_BASE_RECORD","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_EXIST","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_INDEX","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_IN_USE","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_REUSED","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_POTENTIAL_CROSSLINK","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_PREVIOUS_PARENT_STILL_VALID","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_RECURSIVELY_CORRUPTED","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIRED","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIR_DISABLED","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_MISMATCH","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_VALID","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_STALE_INFORMATION","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_SYSTEM_FILE","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_UNABLE_TO_REPAIR","features":[22]},{"name":"FILE_INITIATE_REPAIR_HINT1_VALID_INDEX_ENTRY","features":[22]},{"name":"FILE_INITIATE_REPAIR_OUTPUT_BUFFER","features":[22]},{"name":"FILE_LAYOUT_ENTRY","features":[22]},{"name":"FILE_LAYOUT_INFO_ENTRY","features":[22]},{"name":"FILE_LAYOUT_NAME_ENTRY","features":[22]},{"name":"FILE_LAYOUT_NAME_ENTRY_DOS","features":[22]},{"name":"FILE_LAYOUT_NAME_ENTRY_PRIMARY","features":[22]},{"name":"FILE_LEVEL_TRIM","features":[22]},{"name":"FILE_LEVEL_TRIM_OUTPUT","features":[22]},{"name":"FILE_LEVEL_TRIM_RANGE","features":[22]},{"name":"FILE_MAKE_COMPATIBLE_BUFFER","features":[1,22]},{"name":"FILE_OBJECTID_BUFFER","features":[22]},{"name":"FILE_PREFETCH","features":[22]},{"name":"FILE_PREFETCH_EX","features":[22]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE","features":[22]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE_EX","features":[22]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM","features":[22]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM_EX","features":[22]},{"name":"FILE_PREFETCH_TYPE_MAX","features":[22]},{"name":"FILE_PROVIDER_COMPRESSION_MAXIMUM","features":[22]},{"name":"FILE_PROVIDER_CURRENT_VERSION","features":[22]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V0","features":[22]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V1","features":[22]},{"name":"FILE_PROVIDER_FLAG_COMPRESS_ON_WRITE","features":[22]},{"name":"FILE_PROVIDER_SINGLE_FILE","features":[22]},{"name":"FILE_QUERY_ON_DISK_VOL_INFO_BUFFER","features":[22]},{"name":"FILE_QUERY_SPARING_BUFFER","features":[1,22]},{"name":"FILE_READ_ACCESS","features":[22]},{"name":"FILE_REFERENCE_RANGE","features":[22]},{"name":"FILE_REGION_INFO","features":[22]},{"name":"FILE_REGION_INPUT","features":[22]},{"name":"FILE_REGION_OUTPUT","features":[22]},{"name":"FILE_REGION_USAGE_HUGE_PAGE_ALIGNMENT","features":[22]},{"name":"FILE_REGION_USAGE_LARGE_PAGE_ALIGNMENT","features":[22]},{"name":"FILE_REGION_USAGE_OTHER_PAGE_ALIGNMENT","features":[22]},{"name":"FILE_REGION_USAGE_QUERY_ALIGNMENT","features":[22]},{"name":"FILE_REGION_USAGE_VALID_CACHED_DATA","features":[22]},{"name":"FILE_REGION_USAGE_VALID_NONCACHED_DATA","features":[22]},{"name":"FILE_SET_DEFECT_MGMT_BUFFER","features":[1,22]},{"name":"FILE_SET_ENCRYPTION","features":[22]},{"name":"FILE_SET_SPARSE_BUFFER","features":[1,22]},{"name":"FILE_SPECIAL_ACCESS","features":[22]},{"name":"FILE_STORAGE_TIER","features":[22]},{"name":"FILE_STORAGE_TIER_CLASS","features":[22]},{"name":"FILE_STORAGE_TIER_DESCRIPTION_LENGTH","features":[22]},{"name":"FILE_STORAGE_TIER_FLAGS","features":[22]},{"name":"FILE_STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[22]},{"name":"FILE_STORAGE_TIER_FLAG_PARITY","features":[22]},{"name":"FILE_STORAGE_TIER_FLAG_READ_CACHE","features":[22]},{"name":"FILE_STORAGE_TIER_FLAG_SMR","features":[22]},{"name":"FILE_STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[22]},{"name":"FILE_STORAGE_TIER_MEDIA_TYPE","features":[22]},{"name":"FILE_STORAGE_TIER_NAME_LENGTH","features":[22]},{"name":"FILE_STORAGE_TIER_REGION","features":[22]},{"name":"FILE_SYSTEM_RECOGNITION_INFORMATION","features":[22]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_BEGIN","features":[22]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_END","features":[22]},{"name":"FILE_TYPE_NOTIFICATION_GUID_CRASHDUMP_FILE","features":[22]},{"name":"FILE_TYPE_NOTIFICATION_GUID_HIBERNATION_FILE","features":[22]},{"name":"FILE_TYPE_NOTIFICATION_GUID_PAGE_FILE","features":[22]},{"name":"FILE_TYPE_NOTIFICATION_INPUT","features":[22]},{"name":"FILE_WRITE_ACCESS","features":[22]},{"name":"FILE_ZERO_DATA_INFORMATION","features":[22]},{"name":"FILE_ZERO_DATA_INFORMATION_EX","features":[22]},{"name":"FILE_ZERO_DATA_INFORMATION_FLAG_PRESERVE_CACHED_DATA","features":[22]},{"name":"FIND_BY_SID_DATA","features":[4,22]},{"name":"FIND_BY_SID_OUTPUT","features":[22]},{"name":"FLAG_USN_TRACK_MODIFIED_RANGES_ENABLE","features":[22]},{"name":"FORMAT_EX_PARAMETERS","features":[22]},{"name":"FORMAT_PARAMETERS","features":[22]},{"name":"FSBPIO_INFL_None","features":[22]},{"name":"FSBPIO_INFL_SKIP_STORAGE_STACK_QUERY","features":[22]},{"name":"FSBPIO_OUTFL_COMPATIBLE_STORAGE_DRIVER","features":[22]},{"name":"FSBPIO_OUTFL_FILTER_ATTACH_BLOCKED","features":[22]},{"name":"FSBPIO_OUTFL_None","features":[22]},{"name":"FSBPIO_OUTFL_STREAM_BYPASS_PAUSED","features":[22]},{"name":"FSBPIO_OUTFL_VOLUME_STACK_BYPASS_PAUSED","features":[22]},{"name":"FSCTL_ADD_OVERLAY","features":[22]},{"name":"FSCTL_ADVANCE_FILE_ID","features":[22]},{"name":"FSCTL_ALLOW_EXTENDED_DASD_IO","features":[22]},{"name":"FSCTL_CLEAN_VOLUME_METADATA","features":[22]},{"name":"FSCTL_CLEAR_ALL_LCN_WEAK_REFERENCES","features":[22]},{"name":"FSCTL_CLEAR_LCN_WEAK_REFERENCE","features":[22]},{"name":"FSCTL_CORRUPTION_HANDLING","features":[22]},{"name":"FSCTL_CREATE_LCN_WEAK_REFERENCE","features":[22]},{"name":"FSCTL_CREATE_OR_GET_OBJECT_ID","features":[22]},{"name":"FSCTL_CREATE_USN_JOURNAL","features":[22]},{"name":"FSCTL_CSC_INTERNAL","features":[22]},{"name":"FSCTL_CSV_CONTROL","features":[22]},{"name":"FSCTL_CSV_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[22]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAME","features":[22]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAMES_FOR_VOLUME_NAME","features":[22]},{"name":"FSCTL_CSV_H_BREAKING_SYNC_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_CSV_INTERNAL","features":[22]},{"name":"FSCTL_CSV_MGMT_LOCK","features":[22]},{"name":"FSCTL_CSV_QUERY_DOWN_LEVEL_FILE_SYSTEM_CHARACTERISTICS","features":[22]},{"name":"FSCTL_CSV_QUERY_VETO_FILE_DIRECT_IO","features":[22]},{"name":"FSCTL_CSV_SYNC_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_CSV_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_DELETE_CORRUPTED_REFS_CONTAINER","features":[22]},{"name":"FSCTL_DELETE_EXTERNAL_BACKING","features":[22]},{"name":"FSCTL_DELETE_OBJECT_ID","features":[22]},{"name":"FSCTL_DELETE_REPARSE_POINT","features":[22]},{"name":"FSCTL_DELETE_USN_JOURNAL","features":[22]},{"name":"FSCTL_DFSR_SET_GHOST_HANDLE_STATE","features":[22]},{"name":"FSCTL_DISABLE_LOCAL_BUFFERING","features":[22]},{"name":"FSCTL_DISMOUNT_VOLUME","features":[22]},{"name":"FSCTL_DUPLICATE_CLUSTER","features":[22]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE","features":[22]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX","features":[22]},{"name":"FSCTL_ENABLE_PER_IO_FLAGS","features":[22]},{"name":"FSCTL_ENABLE_UPGRADE","features":[22]},{"name":"FSCTL_ENCRYPTION_FSCTL_IO","features":[22]},{"name":"FSCTL_ENCRYPTION_KEY_CONTROL","features":[22]},{"name":"FSCTL_ENUM_EXTERNAL_BACKING","features":[22]},{"name":"FSCTL_ENUM_OVERLAY","features":[22]},{"name":"FSCTL_ENUM_USN_DATA","features":[22]},{"name":"FSCTL_EXTEND_VOLUME","features":[22]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS","features":[22]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS_EX","features":[22]},{"name":"FSCTL_FILE_LEVEL_TRIM","features":[22]},{"name":"FSCTL_FILE_PREFETCH","features":[22]},{"name":"FSCTL_FILE_TYPE_NOTIFICATION","features":[22]},{"name":"FSCTL_FIND_FILES_BY_SID","features":[22]},{"name":"FSCTL_GET_BOOT_AREA_INFO","features":[22]},{"name":"FSCTL_GET_COMPRESSION","features":[22]},{"name":"FSCTL_GET_EXTERNAL_BACKING","features":[22]},{"name":"FSCTL_GET_FILTER_FILE_IDENTIFIER","features":[22]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION","features":[22]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION_BUFFER","features":[22]},{"name":"FSCTL_GET_NTFS_FILE_RECORD","features":[22]},{"name":"FSCTL_GET_NTFS_VOLUME_DATA","features":[22]},{"name":"FSCTL_GET_OBJECT_ID","features":[22]},{"name":"FSCTL_GET_REFS_VOLUME_DATA","features":[22]},{"name":"FSCTL_GET_REPAIR","features":[22]},{"name":"FSCTL_GET_REPARSE_POINT","features":[22]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS","features":[22]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS_AND_REFCOUNT","features":[22]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_BASE","features":[22]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_COUNT","features":[22]},{"name":"FSCTL_GET_VOLUME_BITMAP","features":[22]},{"name":"FSCTL_GET_WOF_VERSION","features":[22]},{"name":"FSCTL_GHOST_FILE_EXTENTS","features":[22]},{"name":"FSCTL_HCS_ASYNC_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_HCS_SYNC_NO_WRITE_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_HCS_SYNC_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_INITIATE_FILE_METADATA_OPTIMIZATION","features":[22]},{"name":"FSCTL_INITIATE_REPAIR","features":[22]},{"name":"FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF","features":[22]},{"name":"FSCTL_INVALIDATE_VOLUMES","features":[22]},{"name":"FSCTL_IS_CSV_FILE","features":[22]},{"name":"FSCTL_IS_FILE_ON_CSV_VOLUME","features":[22]},{"name":"FSCTL_IS_PATHNAME_VALID","features":[22]},{"name":"FSCTL_IS_VOLUME_DIRTY","features":[22]},{"name":"FSCTL_IS_VOLUME_MOUNTED","features":[22]},{"name":"FSCTL_IS_VOLUME_OWNED_BYCSVFS","features":[22]},{"name":"FSCTL_LMR_QUERY_INFO","features":[22]},{"name":"FSCTL_LOCK_VOLUME","features":[22]},{"name":"FSCTL_LOOKUP_STREAM_FROM_CLUSTER","features":[22]},{"name":"FSCTL_MAKE_MEDIA_COMPATIBLE","features":[22]},{"name":"FSCTL_MANAGE_BYPASS_IO","features":[22]},{"name":"FSCTL_MARK_AS_SYSTEM_HIVE","features":[22]},{"name":"FSCTL_MARK_HANDLE","features":[22]},{"name":"FSCTL_MARK_VOLUME_DIRTY","features":[22]},{"name":"FSCTL_MOVE_FILE","features":[22]},{"name":"FSCTL_NOTIFY_DATA_CHANGE","features":[22]},{"name":"FSCTL_NOTIFY_STORAGE_SPACE_ALLOCATION","features":[22]},{"name":"FSCTL_OFFLOAD_READ","features":[22]},{"name":"FSCTL_OFFLOAD_READ_INPUT","features":[22]},{"name":"FSCTL_OFFLOAD_READ_OUTPUT","features":[22]},{"name":"FSCTL_OFFLOAD_WRITE","features":[22]},{"name":"FSCTL_OFFLOAD_WRITE_INPUT","features":[22]},{"name":"FSCTL_OFFLOAD_WRITE_OUTPUT","features":[22]},{"name":"FSCTL_OPBATCH_ACK_CLOSE_PENDING","features":[22]},{"name":"FSCTL_OPLOCK_BREAK_ACKNOWLEDGE","features":[22]},{"name":"FSCTL_OPLOCK_BREAK_ACK_NO_2","features":[22]},{"name":"FSCTL_OPLOCK_BREAK_NOTIFY","features":[22]},{"name":"FSCTL_QUERY_ALLOCATED_RANGES","features":[22]},{"name":"FSCTL_QUERY_ASYNC_DUPLICATE_EXTENTS_STATUS","features":[22]},{"name":"FSCTL_QUERY_BAD_RANGES","features":[22]},{"name":"FSCTL_QUERY_DEPENDENT_VOLUME","features":[22]},{"name":"FSCTL_QUERY_DIRECT_ACCESS_EXTENTS","features":[22]},{"name":"FSCTL_QUERY_DIRECT_IMAGE_ORIGINAL_BASE","features":[22]},{"name":"FSCTL_QUERY_EXTENT_READ_CACHE_INFO","features":[22]},{"name":"FSCTL_QUERY_FAT_BPB","features":[22]},{"name":"FSCTL_QUERY_FAT_BPB_BUFFER","features":[22]},{"name":"FSCTL_QUERY_FILE_LAYOUT","features":[22]},{"name":"FSCTL_QUERY_FILE_METADATA_OPTIMIZATION","features":[22]},{"name":"FSCTL_QUERY_FILE_REGIONS","features":[22]},{"name":"FSCTL_QUERY_FILE_SYSTEM_RECOGNITION","features":[22]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS","features":[22]},{"name":"FSCTL_QUERY_LCN_WEAK_REFERENCE","features":[22]},{"name":"FSCTL_QUERY_ON_DISK_VOLUME_INFO","features":[22]},{"name":"FSCTL_QUERY_PAGEFILE_ENCRYPTION","features":[22]},{"name":"FSCTL_QUERY_PERSISTENT_VOLUME_STATE","features":[22]},{"name":"FSCTL_QUERY_REFS_SMR_VOLUME_INFO","features":[22]},{"name":"FSCTL_QUERY_REFS_VOLUME_COUNTER_INFO","features":[22]},{"name":"FSCTL_QUERY_REGION_INFO","features":[22]},{"name":"FSCTL_QUERY_REGION_INFO_INPUT","features":[22]},{"name":"FSCTL_QUERY_REGION_INFO_OUTPUT","features":[22]},{"name":"FSCTL_QUERY_RETRIEVAL_POINTERS","features":[22]},{"name":"FSCTL_QUERY_SHARED_VIRTUAL_DISK_SUPPORT","features":[22]},{"name":"FSCTL_QUERY_SPARING_INFO","features":[22]},{"name":"FSCTL_QUERY_STORAGE_CLASSES","features":[22]},{"name":"FSCTL_QUERY_STORAGE_CLASSES_OUTPUT","features":[22]},{"name":"FSCTL_QUERY_USN_JOURNAL","features":[22]},{"name":"FSCTL_QUERY_VOLUME_CONTAINER_STATE","features":[22]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO","features":[22]},{"name":"FSCTL_READ_FILE_USN_DATA","features":[22]},{"name":"FSCTL_READ_FROM_PLEX","features":[22]},{"name":"FSCTL_READ_RAW_ENCRYPTED","features":[22]},{"name":"FSCTL_READ_UNPRIVILEGED_USN_JOURNAL","features":[22]},{"name":"FSCTL_READ_USN_JOURNAL","features":[22]},{"name":"FSCTL_REARRANGE_FILE","features":[22]},{"name":"FSCTL_RECALL_FILE","features":[22]},{"name":"FSCTL_REFS_CHECKPOINT_VOLUME","features":[22]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES","features":[22]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES_EX","features":[22]},{"name":"FSCTL_REFS_QUERY_VOLUME_COMPRESSION_INFO","features":[22]},{"name":"FSCTL_REFS_QUERY_VOLUME_DEDUP_INFO","features":[22]},{"name":"FSCTL_REFS_QUERY_VOLUME_IO_METRICS_INFO","features":[22]},{"name":"FSCTL_REFS_QUERY_VOLUME_TOTAL_SHARED_LCNS","features":[22]},{"name":"FSCTL_REFS_SET_VOLUME_COMPRESSION_INFO","features":[22]},{"name":"FSCTL_REFS_SET_VOLUME_DEDUP_INFO","features":[22]},{"name":"FSCTL_REFS_SET_VOLUME_IO_METRICS_INFO","features":[22]},{"name":"FSCTL_REFS_STREAM_SNAPSHOT_MANAGEMENT","features":[22]},{"name":"FSCTL_REMOVE_OVERLAY","features":[22]},{"name":"FSCTL_REPAIR_COPIES","features":[22]},{"name":"FSCTL_REQUEST_BATCH_OPLOCK","features":[22]},{"name":"FSCTL_REQUEST_FILTER_OPLOCK","features":[22]},{"name":"FSCTL_REQUEST_OPLOCK","features":[22]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_1","features":[22]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_2","features":[22]},{"name":"FSCTL_RESET_VOLUME_ALLOCATION_HINTS","features":[22]},{"name":"FSCTL_RKF_INTERNAL","features":[22]},{"name":"FSCTL_SCRUB_DATA","features":[22]},{"name":"FSCTL_SCRUB_UNDISCOVERABLE_ID","features":[22]},{"name":"FSCTL_SD_GLOBAL_CHANGE","features":[22]},{"name":"FSCTL_SECURITY_ID_CHECK","features":[22]},{"name":"FSCTL_SET_BOOTLOADER_ACCESSED","features":[22]},{"name":"FSCTL_SET_CACHED_RUNS_STATE","features":[22]},{"name":"FSCTL_SET_COMPRESSION","features":[22]},{"name":"FSCTL_SET_DAX_ALLOC_ALIGNMENT_HINT","features":[22]},{"name":"FSCTL_SET_DEFECT_MANAGEMENT","features":[22]},{"name":"FSCTL_SET_ENCRYPTION","features":[22]},{"name":"FSCTL_SET_EXTERNAL_BACKING","features":[22]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION","features":[22]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER","features":[22]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER_EX","features":[22]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_EX","features":[22]},{"name":"FSCTL_SET_LAYER_ROOT","features":[22]},{"name":"FSCTL_SET_OBJECT_ID","features":[22]},{"name":"FSCTL_SET_OBJECT_ID_EXTENDED","features":[22]},{"name":"FSCTL_SET_PERSISTENT_VOLUME_STATE","features":[22]},{"name":"FSCTL_SET_PURGE_FAILURE_MODE","features":[22]},{"name":"FSCTL_SET_REFS_FILE_STRICTLY_SEQUENTIAL","features":[22]},{"name":"FSCTL_SET_REFS_SMR_VOLUME_GC_PARAMETERS","features":[22]},{"name":"FSCTL_SET_REPAIR","features":[22]},{"name":"FSCTL_SET_REPARSE_POINT","features":[22]},{"name":"FSCTL_SET_REPARSE_POINT_EX","features":[22]},{"name":"FSCTL_SET_SHORT_NAME_BEHAVIOR","features":[22]},{"name":"FSCTL_SET_SPARSE","features":[22]},{"name":"FSCTL_SET_VOLUME_COMPRESSION_STATE","features":[22]},{"name":"FSCTL_SET_ZERO_DATA","features":[22]},{"name":"FSCTL_SET_ZERO_ON_DEALLOCATION","features":[22]},{"name":"FSCTL_SHRINK_VOLUME","features":[22]},{"name":"FSCTL_SHUFFLE_FILE","features":[22]},{"name":"FSCTL_SIS_COPYFILE","features":[22]},{"name":"FSCTL_SIS_LINK_FILES","features":[22]},{"name":"FSCTL_SMB_SHARE_FLUSH_AND_PURGE","features":[22]},{"name":"FSCTL_SPARSE_OVERALLOCATE","features":[22]},{"name":"FSCTL_SSDI_STORAGE_REQUEST","features":[22]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE","features":[22]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE_EX","features":[22]},{"name":"FSCTL_STORAGE_QOS_CONTROL","features":[22]},{"name":"FSCTL_STREAMS_ASSOCIATE_ID","features":[22]},{"name":"FSCTL_STREAMS_QUERY_ID","features":[22]},{"name":"FSCTL_STREAMS_QUERY_PARAMETERS","features":[22]},{"name":"FSCTL_SUSPEND_OVERLAY","features":[22]},{"name":"FSCTL_SVHDX_ASYNC_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_SVHDX_SET_INITIATOR_INFORMATION","features":[22]},{"name":"FSCTL_SVHDX_SYNC_TUNNEL_REQUEST","features":[22]},{"name":"FSCTL_TXFS_CREATE_MINIVERSION","features":[22]},{"name":"FSCTL_TXFS_CREATE_SECONDARY_RM","features":[22]},{"name":"FSCTL_TXFS_GET_METADATA_INFO","features":[22]},{"name":"FSCTL_TXFS_GET_TRANSACTED_VERSION","features":[22]},{"name":"FSCTL_TXFS_LIST_TRANSACTIONS","features":[22]},{"name":"FSCTL_TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[22]},{"name":"FSCTL_TXFS_MODIFY_RM","features":[22]},{"name":"FSCTL_TXFS_QUERY_RM_INFORMATION","features":[22]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION","features":[22]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION2","features":[22]},{"name":"FSCTL_TXFS_ROLLFORWARD_REDO","features":[22]},{"name":"FSCTL_TXFS_ROLLFORWARD_UNDO","features":[22]},{"name":"FSCTL_TXFS_SAVEPOINT_INFORMATION","features":[22]},{"name":"FSCTL_TXFS_SHUTDOWN_RM","features":[22]},{"name":"FSCTL_TXFS_START_RM","features":[22]},{"name":"FSCTL_TXFS_TRANSACTION_ACTIVE","features":[22]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION","features":[22]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION2","features":[22]},{"name":"FSCTL_UNLOCK_VOLUME","features":[22]},{"name":"FSCTL_UNMAP_SPACE","features":[22]},{"name":"FSCTL_UPDATE_OVERLAY","features":[22]},{"name":"FSCTL_UPGRADE_VOLUME","features":[22]},{"name":"FSCTL_USN_TRACK_MODIFIED_RANGES","features":[22]},{"name":"FSCTL_VIRTUAL_STORAGE_PASSTHROUGH","features":[22]},{"name":"FSCTL_VIRTUAL_STORAGE_QUERY_PROPERTY","features":[22]},{"name":"FSCTL_VIRTUAL_STORAGE_SET_BEHAVIOR","features":[22]},{"name":"FSCTL_WAIT_FOR_REPAIR","features":[22]},{"name":"FSCTL_WRITE_RAW_ENCRYPTED","features":[22]},{"name":"FSCTL_WRITE_USN_CLOSE_RECORD","features":[22]},{"name":"FSCTL_WRITE_USN_REASON","features":[22]},{"name":"FS_BPIO_INFLAGS","features":[22]},{"name":"FS_BPIO_INFO","features":[22]},{"name":"FS_BPIO_INPUT","features":[22]},{"name":"FS_BPIO_OPERATIONS","features":[22]},{"name":"FS_BPIO_OP_DISABLE","features":[22]},{"name":"FS_BPIO_OP_ENABLE","features":[22]},{"name":"FS_BPIO_OP_GET_INFO","features":[22]},{"name":"FS_BPIO_OP_MAX_OPERATION","features":[22]},{"name":"FS_BPIO_OP_QUERY","features":[22]},{"name":"FS_BPIO_OP_STREAM_PAUSE","features":[22]},{"name":"FS_BPIO_OP_STREAM_RESUME","features":[22]},{"name":"FS_BPIO_OP_VOLUME_STACK_PAUSE","features":[22]},{"name":"FS_BPIO_OP_VOLUME_STACK_RESUME","features":[22]},{"name":"FS_BPIO_OUTFLAGS","features":[22]},{"name":"FS_BPIO_OUTPUT","features":[22]},{"name":"FS_BPIO_RESULTS","features":[22]},{"name":"FW_ISSUEID_NO_ISSUE","features":[22]},{"name":"FW_ISSUEID_UNKNOWN","features":[22]},{"name":"FileSnapStateInactive","features":[22]},{"name":"FileSnapStateSource","features":[22]},{"name":"FileSnapStateTarget","features":[22]},{"name":"FileStorageTierClassCapacity","features":[22]},{"name":"FileStorageTierClassMax","features":[22]},{"name":"FileStorageTierClassPerformance","features":[22]},{"name":"FileStorageTierClassUnspecified","features":[22]},{"name":"FileStorageTierMediaTypeDisk","features":[22]},{"name":"FileStorageTierMediaTypeMax","features":[22]},{"name":"FileStorageTierMediaTypeScm","features":[22]},{"name":"FileStorageTierMediaTypeSsd","features":[22]},{"name":"FileStorageTierMediaTypeUnspecified","features":[22]},{"name":"FixedMedia","features":[22]},{"name":"FormFactor1_8","features":[22]},{"name":"FormFactor1_8Less","features":[22]},{"name":"FormFactor2_5","features":[22]},{"name":"FormFactor3_5","features":[22]},{"name":"FormFactorDimm","features":[22]},{"name":"FormFactorEmbedded","features":[22]},{"name":"FormFactorM_2","features":[22]},{"name":"FormFactorMemoryCard","features":[22]},{"name":"FormFactorPCIeBoard","features":[22]},{"name":"FormFactorUnknown","features":[22]},{"name":"FormFactormSata","features":[22]},{"name":"GETVERSIONINPARAMS","features":[22]},{"name":"GET_CHANGER_PARAMETERS","features":[22]},{"name":"GET_CHANGER_PARAMETERS_FEATURES1","features":[22]},{"name":"GET_DEVICE_INTERNAL_STATUS_DATA_REQUEST","features":[22]},{"name":"GET_DISK_ATTRIBUTES","features":[22]},{"name":"GET_FILTER_FILE_IDENTIFIER_INPUT","features":[22]},{"name":"GET_FILTER_FILE_IDENTIFIER_OUTPUT","features":[22]},{"name":"GET_LENGTH_INFORMATION","features":[22]},{"name":"GET_MEDIA_TYPES","features":[21,22]},{"name":"GET_VOLUME_BITMAP_FLAG_MASK_METADATA","features":[22]},{"name":"GPT_ATTRIBUTES","features":[22]},{"name":"GPT_ATTRIBUTE_LEGACY_BIOS_BOOTABLE","features":[22]},{"name":"GPT_ATTRIBUTE_NO_BLOCK_IO_PROTOCOL","features":[22]},{"name":"GPT_ATTRIBUTE_PLATFORM_REQUIRED","features":[22]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_DAX","features":[22]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_HIDDEN","features":[22]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER","features":[22]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_OFFLINE","features":[22]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY","features":[22]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SERVICE","features":[22]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY","features":[22]},{"name":"GPT_SPACES_ATTRIBUTE_NO_METADATA","features":[22]},{"name":"GP_LOG_PAGE_DESCRIPTOR","features":[22]},{"name":"GUID_DEVICEDUMP_DRIVER_STORAGE_PORT","features":[22]},{"name":"GUID_DEVICEDUMP_STORAGE_DEVICE","features":[22]},{"name":"GUID_DEVINTERFACE_CDCHANGER","features":[22]},{"name":"GUID_DEVINTERFACE_CDROM","features":[22]},{"name":"GUID_DEVINTERFACE_COMPORT","features":[22]},{"name":"GUID_DEVINTERFACE_DISK","features":[22]},{"name":"GUID_DEVINTERFACE_FLOPPY","features":[22]},{"name":"GUID_DEVINTERFACE_HIDDEN_VOLUME","features":[22]},{"name":"GUID_DEVINTERFACE_MEDIUMCHANGER","features":[22]},{"name":"GUID_DEVINTERFACE_PARTITION","features":[22]},{"name":"GUID_DEVINTERFACE_SCM_PHYSICAL_DEVICE","features":[22]},{"name":"GUID_DEVINTERFACE_SERENUM_BUS_ENUMERATOR","features":[22]},{"name":"GUID_DEVINTERFACE_SERVICE_VOLUME","features":[22]},{"name":"GUID_DEVINTERFACE_SES","features":[22]},{"name":"GUID_DEVINTERFACE_STORAGEPORT","features":[22]},{"name":"GUID_DEVINTERFACE_TAPE","features":[22]},{"name":"GUID_DEVINTERFACE_UNIFIED_ACCESS_RPMB","features":[22]},{"name":"GUID_DEVINTERFACE_VMLUN","features":[22]},{"name":"GUID_DEVINTERFACE_VOLUME","features":[22]},{"name":"GUID_DEVINTERFACE_WRITEONCEDISK","features":[22]},{"name":"GUID_DEVINTERFACE_ZNSDISK","features":[22]},{"name":"GUID_SCM_PD_HEALTH_NOTIFICATION","features":[22]},{"name":"GUID_SCM_PD_PASSTHROUGH_INVDIMM","features":[22]},{"name":"HISTOGRAM_BUCKET","features":[22]},{"name":"HIST_NO_OF_BUCKETS","features":[22]},{"name":"HITACHI_12_WO","features":[22]},{"name":"HealthStatusDisabled","features":[22]},{"name":"HealthStatusFailed","features":[22]},{"name":"HealthStatusNormal","features":[22]},{"name":"HealthStatusThrottled","features":[22]},{"name":"HealthStatusUnknown","features":[22]},{"name":"HealthStatusWarning","features":[22]},{"name":"IBM_3480","features":[22]},{"name":"IBM_3490E","features":[22]},{"name":"IBM_Magstar_3590","features":[22]},{"name":"IBM_Magstar_MP","features":[22]},{"name":"IDENTIFY_BUFFER_SIZE","features":[22]},{"name":"IDEREGS","features":[22]},{"name":"ID_CMD","features":[22]},{"name":"IOCTL_CHANGER_BASE","features":[22]},{"name":"IOCTL_CHANGER_EXCHANGE_MEDIUM","features":[22]},{"name":"IOCTL_CHANGER_GET_ELEMENT_STATUS","features":[22]},{"name":"IOCTL_CHANGER_GET_PARAMETERS","features":[22]},{"name":"IOCTL_CHANGER_GET_PRODUCT_DATA","features":[22]},{"name":"IOCTL_CHANGER_GET_STATUS","features":[22]},{"name":"IOCTL_CHANGER_INITIALIZE_ELEMENT_STATUS","features":[22]},{"name":"IOCTL_CHANGER_MOVE_MEDIUM","features":[22]},{"name":"IOCTL_CHANGER_QUERY_VOLUME_TAGS","features":[22]},{"name":"IOCTL_CHANGER_REINITIALIZE_TRANSPORT","features":[22]},{"name":"IOCTL_CHANGER_SET_ACCESS","features":[22]},{"name":"IOCTL_CHANGER_SET_POSITION","features":[22]},{"name":"IOCTL_DISK_BASE","features":[22]},{"name":"IOCTL_DISK_CHECK_VERIFY","features":[22]},{"name":"IOCTL_DISK_CONTROLLER_NUMBER","features":[22]},{"name":"IOCTL_DISK_CREATE_DISK","features":[22]},{"name":"IOCTL_DISK_DELETE_DRIVE_LAYOUT","features":[22]},{"name":"IOCTL_DISK_EJECT_MEDIA","features":[22]},{"name":"IOCTL_DISK_FIND_NEW_DEVICES","features":[22]},{"name":"IOCTL_DISK_FORMAT_DRIVE","features":[22]},{"name":"IOCTL_DISK_FORMAT_TRACKS","features":[22]},{"name":"IOCTL_DISK_FORMAT_TRACKS_EX","features":[22]},{"name":"IOCTL_DISK_GET_CACHE_INFORMATION","features":[22]},{"name":"IOCTL_DISK_GET_DISK_ATTRIBUTES","features":[22]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY","features":[22]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY_EX","features":[22]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT","features":[22]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT_EX","features":[22]},{"name":"IOCTL_DISK_GET_LENGTH_INFO","features":[22]},{"name":"IOCTL_DISK_GET_MEDIA_TYPES","features":[22]},{"name":"IOCTL_DISK_GET_PARTITION_INFO","features":[22]},{"name":"IOCTL_DISK_GET_PARTITION_INFO_EX","features":[22]},{"name":"IOCTL_DISK_GET_WRITE_CACHE_STATE","features":[22]},{"name":"IOCTL_DISK_GROW_PARTITION","features":[22]},{"name":"IOCTL_DISK_HISTOGRAM_DATA","features":[22]},{"name":"IOCTL_DISK_HISTOGRAM_RESET","features":[22]},{"name":"IOCTL_DISK_HISTOGRAM_STRUCTURE","features":[22]},{"name":"IOCTL_DISK_IS_WRITABLE","features":[22]},{"name":"IOCTL_DISK_LOAD_MEDIA","features":[22]},{"name":"IOCTL_DISK_LOGGING","features":[22]},{"name":"IOCTL_DISK_MEDIA_REMOVAL","features":[22]},{"name":"IOCTL_DISK_PERFORMANCE","features":[22]},{"name":"IOCTL_DISK_PERFORMANCE_OFF","features":[22]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS","features":[22]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS_EX","features":[22]},{"name":"IOCTL_DISK_RELEASE","features":[22]},{"name":"IOCTL_DISK_REQUEST_DATA","features":[22]},{"name":"IOCTL_DISK_REQUEST_STRUCTURE","features":[22]},{"name":"IOCTL_DISK_RESERVE","features":[22]},{"name":"IOCTL_DISK_RESET_SNAPSHOT_INFO","features":[22]},{"name":"IOCTL_DISK_SENSE_DEVICE","features":[22]},{"name":"IOCTL_DISK_SET_CACHE_INFORMATION","features":[22]},{"name":"IOCTL_DISK_SET_DISK_ATTRIBUTES","features":[22]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT","features":[22]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT_EX","features":[22]},{"name":"IOCTL_DISK_SET_PARTITION_INFO","features":[22]},{"name":"IOCTL_DISK_SET_PARTITION_INFO_EX","features":[22]},{"name":"IOCTL_DISK_UPDATE_DRIVE_SIZE","features":[22]},{"name":"IOCTL_DISK_UPDATE_PROPERTIES","features":[22]},{"name":"IOCTL_DISK_VERIFY","features":[22]},{"name":"IOCTL_SCMBUS_BASE","features":[22]},{"name":"IOCTL_SCMBUS_DEVICE_FUNCTION_BASE","features":[22]},{"name":"IOCTL_SCM_BUS_GET_LOGICAL_DEVICES","features":[22]},{"name":"IOCTL_SCM_BUS_GET_PHYSICAL_DEVICES","features":[22]},{"name":"IOCTL_SCM_BUS_GET_REGIONS","features":[22]},{"name":"IOCTL_SCM_BUS_QUERY_PROPERTY","features":[22]},{"name":"IOCTL_SCM_BUS_REFRESH_NAMESPACE","features":[22]},{"name":"IOCTL_SCM_BUS_RUNTIME_FW_ACTIVATE","features":[22]},{"name":"IOCTL_SCM_BUS_SET_PROPERTY","features":[22]},{"name":"IOCTL_SCM_LD_GET_INTERLEAVE_SET","features":[22]},{"name":"IOCTL_SCM_LOGICAL_DEVICE_FUNCTION_BASE","features":[22]},{"name":"IOCTL_SCM_PD_FIRMWARE_ACTIVATE","features":[22]},{"name":"IOCTL_SCM_PD_FIRMWARE_DOWNLOAD","features":[22]},{"name":"IOCTL_SCM_PD_PASSTHROUGH","features":[22]},{"name":"IOCTL_SCM_PD_QUERY_PROPERTY","features":[22]},{"name":"IOCTL_SCM_PD_REINITIALIZE_MEDIA","features":[22]},{"name":"IOCTL_SCM_PD_SET_PROPERTY","features":[22]},{"name":"IOCTL_SCM_PD_UPDATE_MANAGEMENT_STATUS","features":[22]},{"name":"IOCTL_SCM_PHYSICAL_DEVICE_FUNCTION_BASE","features":[22]},{"name":"IOCTL_SERENUM_EXPOSE_HARDWARE","features":[22]},{"name":"IOCTL_SERENUM_GET_PORT_NAME","features":[22]},{"name":"IOCTL_SERENUM_PORT_DESC","features":[22]},{"name":"IOCTL_SERENUM_REMOVE_HARDWARE","features":[22]},{"name":"IOCTL_SERIAL_LSRMST_INSERT","features":[22]},{"name":"IOCTL_STORAGE_ALLOCATE_BC_STREAM","features":[22]},{"name":"IOCTL_STORAGE_ATTRIBUTE_MANAGEMENT","features":[22]},{"name":"IOCTL_STORAGE_BASE","features":[22]},{"name":"IOCTL_STORAGE_BC_VERSION","features":[22]},{"name":"IOCTL_STORAGE_BREAK_RESERVATION","features":[22]},{"name":"IOCTL_STORAGE_CHECK_PRIORITY_HINT_SUPPORT","features":[22]},{"name":"IOCTL_STORAGE_CHECK_VERIFY","features":[22]},{"name":"IOCTL_STORAGE_CHECK_VERIFY2","features":[22]},{"name":"IOCTL_STORAGE_DEVICE_POWER_CAP","features":[22]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_NOTIFY","features":[22]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_QUERY_CAPS","features":[22]},{"name":"IOCTL_STORAGE_DIAGNOSTIC","features":[22]},{"name":"IOCTL_STORAGE_EJECTION_CONTROL","features":[22]},{"name":"IOCTL_STORAGE_EJECT_MEDIA","features":[22]},{"name":"IOCTL_STORAGE_ENABLE_IDLE_POWER","features":[22]},{"name":"IOCTL_STORAGE_EVENT_NOTIFICATION","features":[22]},{"name":"IOCTL_STORAGE_FAILURE_PREDICTION_CONFIG","features":[22]},{"name":"IOCTL_STORAGE_FIND_NEW_DEVICES","features":[22]},{"name":"IOCTL_STORAGE_FIRMWARE_ACTIVATE","features":[22]},{"name":"IOCTL_STORAGE_FIRMWARE_DOWNLOAD","features":[22]},{"name":"IOCTL_STORAGE_FIRMWARE_GET_INFO","features":[22]},{"name":"IOCTL_STORAGE_FREE_BC_STREAM","features":[22]},{"name":"IOCTL_STORAGE_GET_BC_PROPERTIES","features":[22]},{"name":"IOCTL_STORAGE_GET_COUNTERS","features":[22]},{"name":"IOCTL_STORAGE_GET_DEVICE_INTERNAL_LOG","features":[22]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER","features":[22]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER_EX","features":[22]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY","features":[22]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY_RAW","features":[22]},{"name":"IOCTL_STORAGE_GET_HOTPLUG_INFO","features":[22]},{"name":"IOCTL_STORAGE_GET_IDLE_POWERUP_REASON","features":[22]},{"name":"IOCTL_STORAGE_GET_LB_PROVISIONING_MAP_RESOURCES","features":[22]},{"name":"IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER","features":[22]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES","features":[22]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES_EX","features":[22]},{"name":"IOCTL_STORAGE_GET_PHYSICAL_ELEMENT_STATUS","features":[22]},{"name":"IOCTL_STORAGE_LOAD_MEDIA","features":[22]},{"name":"IOCTL_STORAGE_LOAD_MEDIA2","features":[22]},{"name":"IOCTL_STORAGE_MANAGE_BYPASS_IO","features":[22]},{"name":"IOCTL_STORAGE_MANAGE_DATA_SET_ATTRIBUTES","features":[22]},{"name":"IOCTL_STORAGE_MCN_CONTROL","features":[22]},{"name":"IOCTL_STORAGE_MEDIA_REMOVAL","features":[22]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_IN","features":[22]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_OUT","features":[22]},{"name":"IOCTL_STORAGE_POWER_ACTIVE","features":[22]},{"name":"IOCTL_STORAGE_POWER_IDLE","features":[22]},{"name":"IOCTL_STORAGE_PREDICT_FAILURE","features":[22]},{"name":"IOCTL_STORAGE_PROTOCOL_COMMAND","features":[22]},{"name":"IOCTL_STORAGE_QUERY_PROPERTY","features":[22]},{"name":"IOCTL_STORAGE_READ_CAPACITY","features":[22]},{"name":"IOCTL_STORAGE_REINITIALIZE_MEDIA","features":[22]},{"name":"IOCTL_STORAGE_RELEASE","features":[22]},{"name":"IOCTL_STORAGE_REMOVE_ELEMENT_AND_TRUNCATE","features":[22]},{"name":"IOCTL_STORAGE_RESERVE","features":[22]},{"name":"IOCTL_STORAGE_RESET_BUS","features":[22]},{"name":"IOCTL_STORAGE_RESET_DEVICE","features":[22]},{"name":"IOCTL_STORAGE_RPMB_COMMAND","features":[22]},{"name":"IOCTL_STORAGE_SET_HOTPLUG_INFO","features":[22]},{"name":"IOCTL_STORAGE_SET_PROPERTY","features":[22]},{"name":"IOCTL_STORAGE_SET_TEMPERATURE_THRESHOLD","features":[22]},{"name":"IOCTL_STORAGE_START_DATA_INTEGRITY_CHECK","features":[22]},{"name":"IOCTL_STORAGE_STOP_DATA_INTEGRITY_CHECK","features":[22]},{"name":"IOMEGA_JAZ","features":[22]},{"name":"IOMEGA_ZIP","features":[22]},{"name":"IO_IRP_EXT_TRACK_OFFSET_HEADER","features":[22]},{"name":"KODAK_14_WO","features":[22]},{"name":"KeepPrefetchedData","features":[22]},{"name":"KeepReadData","features":[22]},{"name":"LMRQuerySessionInfo","features":[22]},{"name":"LMR_QUERY_INFO_CLASS","features":[22]},{"name":"LMR_QUERY_INFO_PARAM","features":[22]},{"name":"LMR_QUERY_SESSION_INFO","features":[22]},{"name":"LOCK_ELEMENT","features":[22]},{"name":"LOCK_UNLOCK_DOOR","features":[22]},{"name":"LOCK_UNLOCK_IEPORT","features":[22]},{"name":"LOCK_UNLOCK_KEYPAD","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_DATA","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_INDEX","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_MASK","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_SYSTEM","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_DENY_DEFRAG_SET","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_FS_SYSTEM_FILE","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_PAGE_FILE","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_TXF_SYSTEM_FILE","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_INPUT","features":[22]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_OUTPUT","features":[22]},{"name":"LTO_Accelis","features":[22]},{"name":"LTO_Ultrium","features":[22]},{"name":"MARK_HANDLE_CLOUD_SYNC","features":[22]},{"name":"MARK_HANDLE_DISABLE_FILE_METADATA_OPTIMIZATION","features":[22]},{"name":"MARK_HANDLE_ENABLE_CPU_CACHE","features":[22]},{"name":"MARK_HANDLE_ENABLE_USN_SOURCE_ON_PAGING_IO","features":[22]},{"name":"MARK_HANDLE_FILTER_METADATA","features":[22]},{"name":"MARK_HANDLE_INFO","features":[1,22]},{"name":"MARK_HANDLE_INFO32","features":[22]},{"name":"MARK_HANDLE_NOT_READ_COPY","features":[22]},{"name":"MARK_HANDLE_NOT_REALTIME","features":[22]},{"name":"MARK_HANDLE_NOT_TXF_SYSTEM_LOG","features":[22]},{"name":"MARK_HANDLE_PROTECT_CLUSTERS","features":[22]},{"name":"MARK_HANDLE_READ_COPY","features":[22]},{"name":"MARK_HANDLE_REALTIME","features":[22]},{"name":"MARK_HANDLE_RETURN_PURGE_FAILURE","features":[22]},{"name":"MARK_HANDLE_SKIP_COHERENCY_SYNC_DISALLOW_WRITES","features":[22]},{"name":"MARK_HANDLE_SUPPRESS_VOLUME_OPEN_FLUSH","features":[22]},{"name":"MARK_HANDLE_TXF_SYSTEM_LOG","features":[22]},{"name":"MAXIMUM_ENCRYPTION_VALUE","features":[22]},{"name":"MAX_FW_BUCKET_ID_LENGTH","features":[22]},{"name":"MAX_INTERFACE_CODES","features":[22]},{"name":"MAX_VOLUME_ID_SIZE","features":[22]},{"name":"MAX_VOLUME_TEMPLATE_SIZE","features":[22]},{"name":"MEDIA_CURRENTLY_MOUNTED","features":[22]},{"name":"MEDIA_ERASEABLE","features":[22]},{"name":"MEDIA_READ_ONLY","features":[22]},{"name":"MEDIA_READ_WRITE","features":[22]},{"name":"MEDIA_TYPE","features":[22]},{"name":"MEDIA_WRITE_ONCE","features":[22]},{"name":"MEDIA_WRITE_PROTECTED","features":[22]},{"name":"METHOD_BUFFERED","features":[22]},{"name":"METHOD_DIRECT_FROM_HARDWARE","features":[22]},{"name":"METHOD_DIRECT_TO_HARDWARE","features":[22]},{"name":"METHOD_IN_DIRECT","features":[22]},{"name":"METHOD_NEITHER","features":[22]},{"name":"METHOD_OUT_DIRECT","features":[22]},{"name":"MFT_ENUM_DATA_V0","features":[22]},{"name":"MFT_ENUM_DATA_V1","features":[22]},{"name":"MOVE_FILE_DATA","features":[1,22]},{"name":"MOVE_FILE_DATA32","features":[22]},{"name":"MOVE_FILE_RECORD_DATA","features":[1,22]},{"name":"MO_3_RW","features":[22]},{"name":"MO_5_LIMDOW","features":[22]},{"name":"MO_5_RW","features":[22]},{"name":"MO_5_WO","features":[22]},{"name":"MO_NFR_525","features":[22]},{"name":"MP2_8mm","features":[22]},{"name":"MP_8mm","features":[22]},{"name":"MiniQic","features":[22]},{"name":"NCTP","features":[22]},{"name":"NIKON_12_RW","features":[22]},{"name":"NTFS_EXTENDED_VOLUME_DATA","features":[22]},{"name":"NTFS_FILE_RECORD_INPUT_BUFFER","features":[22]},{"name":"NTFS_FILE_RECORD_OUTPUT_BUFFER","features":[22]},{"name":"NTFS_STATISTICS","features":[22]},{"name":"NTFS_STATISTICS_EX","features":[22]},{"name":"NTFS_VOLUME_DATA_BUFFER","features":[22]},{"name":"NVMeDataTypeFeature","features":[22]},{"name":"NVMeDataTypeIdentify","features":[22]},{"name":"NVMeDataTypeLogPage","features":[22]},{"name":"NVMeDataTypeUnknown","features":[22]},{"name":"OBSOLETE_DISK_GET_WRITE_CACHE_STATE","features":[22]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_BUS","features":[22]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_DEVICE","features":[22]},{"name":"OFFLOAD_READ_FLAG_ALL_ZERO_BEYOND_CURRENT_RANGE","features":[22]},{"name":"OPLOCK_LEVEL_CACHE_HANDLE","features":[22]},{"name":"OPLOCK_LEVEL_CACHE_READ","features":[22]},{"name":"OPLOCK_LEVEL_CACHE_WRITE","features":[22]},{"name":"PARTIITON_OS_DATA","features":[22]},{"name":"PARTITION_BSP","features":[22]},{"name":"PARTITION_DM","features":[22]},{"name":"PARTITION_DPP","features":[22]},{"name":"PARTITION_ENTRY_UNUSED","features":[22]},{"name":"PARTITION_EXTENDED","features":[22]},{"name":"PARTITION_EZDRIVE","features":[22]},{"name":"PARTITION_FAT32","features":[22]},{"name":"PARTITION_FAT32_XINT13","features":[22]},{"name":"PARTITION_FAT_12","features":[22]},{"name":"PARTITION_FAT_16","features":[22]},{"name":"PARTITION_GPT","features":[22]},{"name":"PARTITION_HUGE","features":[22]},{"name":"PARTITION_IFS","features":[22]},{"name":"PARTITION_INFORMATION","features":[1,22]},{"name":"PARTITION_INFORMATION_EX","features":[1,22]},{"name":"PARTITION_INFORMATION_GPT","features":[22]},{"name":"PARTITION_INFORMATION_MBR","features":[1,22]},{"name":"PARTITION_LDM","features":[22]},{"name":"PARTITION_MAIN_OS","features":[22]},{"name":"PARTITION_MSFT_RECOVERY","features":[22]},{"name":"PARTITION_NTFT","features":[22]},{"name":"PARTITION_OS2BOOTMGR","features":[22]},{"name":"PARTITION_PREP","features":[22]},{"name":"PARTITION_PRE_INSTALLED","features":[22]},{"name":"PARTITION_SPACES","features":[22]},{"name":"PARTITION_SPACES_DATA","features":[22]},{"name":"PARTITION_STYLE","features":[22]},{"name":"PARTITION_STYLE_GPT","features":[22]},{"name":"PARTITION_STYLE_MBR","features":[22]},{"name":"PARTITION_STYLE_RAW","features":[22]},{"name":"PARTITION_SYSTEM","features":[22]},{"name":"PARTITION_UNIX","features":[22]},{"name":"PARTITION_WINDOWS_SYSTEM","features":[22]},{"name":"PARTITION_XENIX_1","features":[22]},{"name":"PARTITION_XENIX_2","features":[22]},{"name":"PARTITION_XINT13","features":[22]},{"name":"PARTITION_XINT13_EXTENDED","features":[22]},{"name":"PATHNAME_BUFFER","features":[22]},{"name":"PC_5_RW","features":[22]},{"name":"PC_5_WO","features":[22]},{"name":"PD_5_RW","features":[22]},{"name":"PERF_BIN","features":[22]},{"name":"PERSISTENT_RESERVE_COMMAND","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_BACKED_BY_WIM","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_CHKDSK_RAN_ONCE","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_CONTAINS_BACKING_WIM","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_DAX_FORMATTED","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_DEV_VOLUME","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_GLOBAL_METADATA_NO_SEEK_PENALTY","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_LOCAL_METADATA_NO_SEEK_PENALTY","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_MODIFIED_BY_CHKDSK","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_NO_HEAT_GATHERING","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_NO_WRITE_AUTO_TIERING","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_REALLOCATE_ALL_DATA_WRITES","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_SHORT_NAME_CREATION_DISABLED","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_TRUSTED_VOLUME","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_TXF_DISABLED","features":[22]},{"name":"PERSISTENT_VOLUME_STATE_VOLUME_SCRUB_DISABLED","features":[22]},{"name":"PHILIPS_12_WO","features":[22]},{"name":"PHYSICAL_ELEMENT_STATUS","features":[22]},{"name":"PHYSICAL_ELEMENT_STATUS_DESCRIPTOR","features":[22]},{"name":"PHYSICAL_ELEMENT_STATUS_REQUEST","features":[22]},{"name":"PINNACLE_APEX_5_RW","features":[22]},{"name":"PIO_IRP_EXT_PROCESS_TRACKED_OFFSET_CALLBACK","features":[22]},{"name":"PLEX_READ_DATA_REQUEST","features":[22]},{"name":"PREVENT_MEDIA_REMOVAL","features":[1,22]},{"name":"PRODUCT_ID_LENGTH","features":[22]},{"name":"PROJFS_PROTOCOL_VERSION","features":[22]},{"name":"PropertyExistsQuery","features":[22]},{"name":"PropertyExistsSet","features":[22]},{"name":"PropertyMaskQuery","features":[22]},{"name":"PropertyQueryMaxDefined","features":[22]},{"name":"PropertySetMaxDefined","features":[22]},{"name":"PropertyStandardQuery","features":[22]},{"name":"PropertyStandardSet","features":[22]},{"name":"ProtocolTypeAta","features":[22]},{"name":"ProtocolTypeMaxReserved","features":[22]},{"name":"ProtocolTypeNvme","features":[22]},{"name":"ProtocolTypeProprietary","features":[22]},{"name":"ProtocolTypeScsi","features":[22]},{"name":"ProtocolTypeSd","features":[22]},{"name":"ProtocolTypeUfs","features":[22]},{"name":"ProtocolTypeUnknown","features":[22]},{"name":"QIC","features":[22]},{"name":"QUERY_BAD_RANGES_INPUT","features":[22]},{"name":"QUERY_BAD_RANGES_INPUT_RANGE","features":[22]},{"name":"QUERY_BAD_RANGES_OUTPUT","features":[22]},{"name":"QUERY_BAD_RANGES_OUTPUT_RANGE","features":[22]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_GUEST_VOLUMES","features":[22]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_HOST_VOLUMES","features":[22]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE","features":[22]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_CLUSTERS","features":[22]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_FILEID","features":[22]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_NONE","features":[22]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_STORAGE_RESERVE_ID","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTENTS","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTRA_INFO","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FILES_WITH_DSC_ATTRIBUTE","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FULL_PATH_IN_NAMES","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_NAMES","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_ONLY_FILES_WITH_SPECIFIC_ATTRIBUTES","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS_WITH_NO_CLUSTERS_ALLOCATED","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DATA_ATTRIBUTE","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DSC_ATTRIBUTE","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EA_ATTRIBUTE","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EFS_ATTRIBUTE","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_REPARSE_ATTRIBUTE","features":[22]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_TXF_ATTRIBUTE","features":[22]},{"name":"QUERY_FILE_LAYOUT_INPUT","features":[22]},{"name":"QUERY_FILE_LAYOUT_NUM_FILTER_TYPES","features":[22]},{"name":"QUERY_FILE_LAYOUT_OUTPUT","features":[22]},{"name":"QUERY_FILE_LAYOUT_REPARSE_DATA_INVALID","features":[22]},{"name":"QUERY_FILE_LAYOUT_REPARSE_TAG_INVALID","features":[22]},{"name":"QUERY_FILE_LAYOUT_RESTART","features":[22]},{"name":"QUERY_FILE_LAYOUT_SINGLE_INSTANCED","features":[22]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_READ","features":[22]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_WRITE","features":[22]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_NO_DEFRAG_VOLUME","features":[22]},{"name":"READ_ATTRIBUTES","features":[22]},{"name":"READ_ATTRIBUTE_BUFFER_SIZE","features":[22]},{"name":"READ_COMPRESSION_INFO_VALID","features":[22]},{"name":"READ_COPY_NUMBER_BYPASS_CACHE_FLAG","features":[22]},{"name":"READ_COPY_NUMBER_KEY","features":[22]},{"name":"READ_ELEMENT_ADDRESS_INFO","features":[22]},{"name":"READ_FILE_USN_DATA","features":[22]},{"name":"READ_THRESHOLDS","features":[22]},{"name":"READ_THRESHOLD_BUFFER_SIZE","features":[22]},{"name":"READ_USN_JOURNAL_DATA_V0","features":[22]},{"name":"READ_USN_JOURNAL_DATA_V1","features":[22]},{"name":"REASSIGN_BLOCKS","features":[22]},{"name":"REASSIGN_BLOCKS_EX","features":[22]},{"name":"RECOVERED_READS_VALID","features":[22]},{"name":"RECOVERED_WRITES_VALID","features":[22]},{"name":"REFS_SMR_VOLUME_GC_ACTION","features":[22]},{"name":"REFS_SMR_VOLUME_GC_METHOD","features":[22]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS","features":[22]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS_VERSION_V1","features":[22]},{"name":"REFS_SMR_VOLUME_GC_STATE","features":[22]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT","features":[22]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V0","features":[22]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V1","features":[22]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[22]},{"name":"REMOVE_ELEMENT_AND_TRUNCATE_REQUEST","features":[22]},{"name":"REPAIR_COPIES_INPUT","features":[22]},{"name":"REPAIR_COPIES_OUTPUT","features":[22]},{"name":"REPLACE_ALTERNATE","features":[22]},{"name":"REPLACE_PRIMARY","features":[22]},{"name":"REQUEST_OPLOCK_CURRENT_VERSION","features":[22]},{"name":"REQUEST_OPLOCK_INPUT_BUFFER","features":[22]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_ACK","features":[22]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_COMPLETE_ACK_ON_CLOSE","features":[22]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_REQUEST","features":[22]},{"name":"REQUEST_OPLOCK_OUTPUT_BUFFER","features":[22]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_ACK_REQUIRED","features":[22]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_MODES_PROVIDED","features":[22]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_WRITABLE_SECTION_PRESENT","features":[22]},{"name":"REQUEST_RAW_ENCRYPTED_DATA","features":[22]},{"name":"RETRACT_IEPORT","features":[22]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[22]},{"name":"RETRIEVAL_POINTERS_BUFFER","features":[22]},{"name":"RETRIEVAL_POINTER_BASE","features":[22]},{"name":"RETRIEVAL_POINTER_COUNT","features":[22]},{"name":"RETURN_SMART_STATUS","features":[22]},{"name":"REVISION_LENGTH","features":[22]},{"name":"RemovableMedia","features":[22]},{"name":"RequestLocation","features":[22]},{"name":"RequestSize","features":[22]},{"name":"SAIT","features":[22]},{"name":"SAVE_ATTRIBUTE_VALUES","features":[22]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICES_INFO","features":[22]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICE_INFO","features":[22]},{"name":"SCM_BUS_DEDICATED_MEMORY_STATE","features":[1,22]},{"name":"SCM_BUS_FIRMWARE_ACTIVATION_STATE","features":[22]},{"name":"SCM_BUS_PROPERTY_ID","features":[22]},{"name":"SCM_BUS_PROPERTY_QUERY","features":[22]},{"name":"SCM_BUS_PROPERTY_SET","features":[22]},{"name":"SCM_BUS_QUERY_TYPE","features":[22]},{"name":"SCM_BUS_RUNTIME_FW_ACTIVATION_INFO","features":[1,22]},{"name":"SCM_BUS_SET_TYPE","features":[22]},{"name":"SCM_INTERLEAVED_PD_INFO","features":[22]},{"name":"SCM_LD_INTERLEAVE_SET_INFO","features":[22]},{"name":"SCM_LOGICAL_DEVICES","features":[22]},{"name":"SCM_LOGICAL_DEVICE_INSTANCE","features":[22]},{"name":"SCM_MAX_SYMLINK_LEN_IN_CHARS","features":[22]},{"name":"SCM_PD_DESCRIPTOR_HEADER","features":[22]},{"name":"SCM_PD_DEVICE_HANDLE","features":[22]},{"name":"SCM_PD_DEVICE_INFO","features":[22]},{"name":"SCM_PD_DEVICE_SPECIFIC_INFO","features":[22]},{"name":"SCM_PD_DEVICE_SPECIFIC_PROPERTY","features":[22]},{"name":"SCM_PD_FIRMWARE_ACTIVATE","features":[22]},{"name":"SCM_PD_FIRMWARE_ACTIVATION_STATE","features":[22]},{"name":"SCM_PD_FIRMWARE_DOWNLOAD","features":[22]},{"name":"SCM_PD_FIRMWARE_INFO","features":[22]},{"name":"SCM_PD_FIRMWARE_LAST_DOWNLOAD","features":[22]},{"name":"SCM_PD_FIRMWARE_REVISION_LENGTH_BYTES","features":[22]},{"name":"SCM_PD_FIRMWARE_SLOT_INFO","features":[22]},{"name":"SCM_PD_FRU_ID_STRING","features":[22]},{"name":"SCM_PD_HEALTH_NOTIFICATION_DATA","features":[22]},{"name":"SCM_PD_HEALTH_STATUS","features":[22]},{"name":"SCM_PD_LAST_FW_ACTIVATION_STATUS","features":[22]},{"name":"SCM_PD_LOCATION_STRING","features":[22]},{"name":"SCM_PD_MANAGEMENT_STATUS","features":[22]},{"name":"SCM_PD_MAX_OPERATIONAL_STATUS","features":[22]},{"name":"SCM_PD_MEDIA_REINITIALIZATION_STATUS","features":[22]},{"name":"SCM_PD_OPERATIONAL_STATUS","features":[22]},{"name":"SCM_PD_OPERATIONAL_STATUS_REASON","features":[22]},{"name":"SCM_PD_PASSTHROUGH_INPUT","features":[22]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_INPUT","features":[22]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_OUTPUT","features":[22]},{"name":"SCM_PD_PASSTHROUGH_OUTPUT","features":[22]},{"name":"SCM_PD_PROPERTY_ID","features":[22]},{"name":"SCM_PD_PROPERTY_NAME_LENGTH_IN_CHARS","features":[22]},{"name":"SCM_PD_PROPERTY_QUERY","features":[22]},{"name":"SCM_PD_PROPERTY_SET","features":[22]},{"name":"SCM_PD_QUERY_TYPE","features":[22]},{"name":"SCM_PD_REINITIALIZE_MEDIA_INPUT","features":[22]},{"name":"SCM_PD_REINITIALIZE_MEDIA_OUTPUT","features":[22]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_ARM_STATE","features":[1,22]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_INFO","features":[22]},{"name":"SCM_PD_SET_TYPE","features":[22]},{"name":"SCM_PHYSICAL_DEVICES","features":[22]},{"name":"SCM_PHYSICAL_DEVICE_INSTANCE","features":[22]},{"name":"SCM_REGION","features":[22]},{"name":"SCM_REGIONS","features":[22]},{"name":"SCM_REGION_FLAG","features":[22]},{"name":"SD_CHANGE_MACHINE_SID_INPUT","features":[22]},{"name":"SD_CHANGE_MACHINE_SID_OUTPUT","features":[22]},{"name":"SD_ENUM_SDS_ENTRY","features":[22]},{"name":"SD_ENUM_SDS_INPUT","features":[22]},{"name":"SD_ENUM_SDS_OUTPUT","features":[22]},{"name":"SD_GLOBAL_CHANGE_INPUT","features":[22]},{"name":"SD_GLOBAL_CHANGE_OUTPUT","features":[22]},{"name":"SD_GLOBAL_CHANGE_TYPE_ENUM_SDS","features":[22]},{"name":"SD_GLOBAL_CHANGE_TYPE_MACHINE_SID","features":[22]},{"name":"SD_GLOBAL_CHANGE_TYPE_QUERY_STATS","features":[22]},{"name":"SD_QUERY_STATS_INPUT","features":[22]},{"name":"SD_QUERY_STATS_OUTPUT","features":[22]},{"name":"SEARCH_ALL","features":[22]},{"name":"SEARCH_ALL_NO_SEQ","features":[22]},{"name":"SEARCH_ALTERNATE","features":[22]},{"name":"SEARCH_ALT_NO_SEQ","features":[22]},{"name":"SEARCH_PRIMARY","features":[22]},{"name":"SEARCH_PRI_NO_SEQ","features":[22]},{"name":"SENDCMDINPARAMS","features":[22]},{"name":"SENDCMDOUTPARAMS","features":[22]},{"name":"SERIAL_IOC_FCR_DMA_MODE","features":[22]},{"name":"SERIAL_IOC_FCR_FIFO_ENABLE","features":[22]},{"name":"SERIAL_IOC_FCR_RCVR_RESET","features":[22]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_LSB","features":[22]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_MSB","features":[22]},{"name":"SERIAL_IOC_FCR_RES1","features":[22]},{"name":"SERIAL_IOC_FCR_RES2","features":[22]},{"name":"SERIAL_IOC_FCR_XMIT_RESET","features":[22]},{"name":"SERIAL_IOC_MCR_DTR","features":[22]},{"name":"SERIAL_IOC_MCR_LOOP","features":[22]},{"name":"SERIAL_IOC_MCR_OUT1","features":[22]},{"name":"SERIAL_IOC_MCR_OUT2","features":[22]},{"name":"SERIAL_IOC_MCR_RTS","features":[22]},{"name":"SERIAL_NUMBER_LENGTH","features":[22]},{"name":"SET_DAX_ALLOC_ALIGNMENT_HINT_INPUT","features":[22]},{"name":"SET_DISK_ATTRIBUTES","features":[1,22]},{"name":"SET_PARTITION_INFORMATION","features":[22]},{"name":"SET_PARTITION_INFORMATION_EX","features":[22]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[22]},{"name":"SET_PURGE_FAILURE_MODE_ENABLED","features":[22]},{"name":"SET_PURGE_FAILURE_MODE_INPUT","features":[22]},{"name":"SET_REPAIR_DISABLED_AND_BUGCHECK_ON_CORRUPT","features":[22]},{"name":"SET_REPAIR_ENABLED","features":[22]},{"name":"SET_REPAIR_VALID_MASK","features":[22]},{"name":"SET_REPAIR_WARN_ABOUT_DATA_LOSS","features":[22]},{"name":"SHRINK_VOLUME_INFORMATION","features":[22]},{"name":"SHRINK_VOLUME_REQUEST_TYPES","features":[22]},{"name":"SI_COPYFILE","features":[22]},{"name":"SMART_ABORT_OFFLINE_SELFTEST","features":[22]},{"name":"SMART_CMD","features":[22]},{"name":"SMART_CYL_HI","features":[22]},{"name":"SMART_CYL_LOW","features":[22]},{"name":"SMART_ERROR_NO_MEM","features":[22]},{"name":"SMART_EXTENDED_SELFTEST_CAPTIVE","features":[22]},{"name":"SMART_EXTENDED_SELFTEST_OFFLINE","features":[22]},{"name":"SMART_GET_VERSION","features":[22]},{"name":"SMART_IDE_ERROR","features":[22]},{"name":"SMART_INVALID_BUFFER","features":[22]},{"name":"SMART_INVALID_COMMAND","features":[22]},{"name":"SMART_INVALID_DRIVE","features":[22]},{"name":"SMART_INVALID_FLAG","features":[22]},{"name":"SMART_INVALID_IOCTL","features":[22]},{"name":"SMART_INVALID_REGISTER","features":[22]},{"name":"SMART_LOG_SECTOR_SIZE","features":[22]},{"name":"SMART_NOT_SUPPORTED","features":[22]},{"name":"SMART_NO_ERROR","features":[22]},{"name":"SMART_NO_IDE_DEVICE","features":[22]},{"name":"SMART_OFFLINE_ROUTINE_OFFLINE","features":[22]},{"name":"SMART_RCV_DRIVE_DATA","features":[22]},{"name":"SMART_RCV_DRIVE_DATA_EX","features":[22]},{"name":"SMART_READ_LOG","features":[22]},{"name":"SMART_SEND_DRIVE_COMMAND","features":[22]},{"name":"SMART_SHORT_SELFTEST_CAPTIVE","features":[22]},{"name":"SMART_SHORT_SELFTEST_OFFLINE","features":[22]},{"name":"SMART_WRITE_LOG","features":[22]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_INPUT","features":[22]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_OUTPUT","features":[22]},{"name":"SONY_12_WO","features":[22]},{"name":"SONY_D2","features":[22]},{"name":"SONY_DTF","features":[22]},{"name":"SPACES_TRACKED_OFFSET_HEADER_FLAG","features":[22]},{"name":"SRB_TYPE_SCSI_REQUEST_BLOCK","features":[22]},{"name":"SRB_TYPE_STORAGE_REQUEST_BLOCK","features":[22]},{"name":"STARTING_LCN_INPUT_BUFFER","features":[22]},{"name":"STARTING_LCN_INPUT_BUFFER_EX","features":[22]},{"name":"STARTING_VCN_INPUT_BUFFER","features":[22]},{"name":"STK_9840","features":[22]},{"name":"STK_9940","features":[22]},{"name":"STK_DATA_D3","features":[22]},{"name":"STORAGE_ACCESS_ALIGNMENT_DESCRIPTOR","features":[22]},{"name":"STORAGE_ADAPTER_DESCRIPTOR","features":[1,22]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER","features":[22]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER_V1_MAX_LENGTH","features":[22]},{"name":"STORAGE_ADDRESS_TYPE_BTL8","features":[22]},{"name":"STORAGE_ALLOCATE_BC_STREAM_INPUT","features":[1,22]},{"name":"STORAGE_ALLOCATE_BC_STREAM_OUTPUT","features":[22]},{"name":"STORAGE_ASSOCIATION_TYPE","features":[22]},{"name":"STORAGE_ATTRIBUTE_ASYNC_EVENT_NOTIFICATION","features":[22]},{"name":"STORAGE_ATTRIBUTE_BLOCK_IO","features":[22]},{"name":"STORAGE_ATTRIBUTE_BYTE_ADDRESSABLE_IO","features":[22]},{"name":"STORAGE_ATTRIBUTE_DYNAMIC_PERSISTENCE","features":[22]},{"name":"STORAGE_ATTRIBUTE_MGMT","features":[22]},{"name":"STORAGE_ATTRIBUTE_MGMT_ACTION","features":[22]},{"name":"STORAGE_ATTRIBUTE_PERF_SIZE_INDEPENDENT","features":[22]},{"name":"STORAGE_ATTRIBUTE_VOLATILE","features":[22]},{"name":"STORAGE_BREAK_RESERVATION_REQUEST","features":[22]},{"name":"STORAGE_BUS_RESET_REQUEST","features":[22]},{"name":"STORAGE_COMPONENT_HEALTH_STATUS","features":[22]},{"name":"STORAGE_COMPONENT_ROLE_CACHE","features":[22]},{"name":"STORAGE_COMPONENT_ROLE_DATA","features":[22]},{"name":"STORAGE_COMPONENT_ROLE_TIERING","features":[22]},{"name":"STORAGE_COUNTER","features":[22]},{"name":"STORAGE_COUNTERS","features":[22]},{"name":"STORAGE_COUNTER_TYPE","features":[22]},{"name":"STORAGE_CRASH_TELEMETRY_REGKEY","features":[22]},{"name":"STORAGE_CRYPTO_ALGORITHM_ID","features":[22]},{"name":"STORAGE_CRYPTO_CAPABILITY","features":[22]},{"name":"STORAGE_CRYPTO_CAPABILITY_VERSION_1","features":[22]},{"name":"STORAGE_CRYPTO_DESCRIPTOR","features":[22]},{"name":"STORAGE_CRYPTO_DESCRIPTOR_VERSION_1","features":[22]},{"name":"STORAGE_CRYPTO_KEY_SIZE","features":[22]},{"name":"STORAGE_DESCRIPTOR_HEADER","features":[22]},{"name":"STORAGE_DEVICE_ATTRIBUTES_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_DESCRIPTOR","features":[1,21,22]},{"name":"STORAGE_DEVICE_FAULT_DOMAIN_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_FLAGS_PAGE_83_DEVICEGUID","features":[22]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_CONFLICT","features":[22]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_NOHWID","features":[22]},{"name":"STORAGE_DEVICE_FORM_FACTOR","features":[22]},{"name":"STORAGE_DEVICE_ID_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_LED_STATE_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_LOCATION_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_MANAGEMENT_STATUS","features":[22]},{"name":"STORAGE_DEVICE_MAX_OPERATIONAL_STATUS","features":[22]},{"name":"STORAGE_DEVICE_NUMA_NODE_UNKNOWN","features":[22]},{"name":"STORAGE_DEVICE_NUMA_PROPERTY","features":[22]},{"name":"STORAGE_DEVICE_NUMBER","features":[22]},{"name":"STORAGE_DEVICE_NUMBERS","features":[22]},{"name":"STORAGE_DEVICE_NUMBER_EX","features":[22]},{"name":"STORAGE_DEVICE_POWER_CAP","features":[22]},{"name":"STORAGE_DEVICE_POWER_CAP_UNITS","features":[22]},{"name":"STORAGE_DEVICE_POWER_CAP_VERSION_V1","features":[22]},{"name":"STORAGE_DEVICE_RESILIENCY_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY","features":[1,22]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY_V2","features":[1,22]},{"name":"STORAGE_DEVICE_TELEMETRY_REGKEY","features":[22]},{"name":"STORAGE_DEVICE_TIERING_DESCRIPTOR","features":[22]},{"name":"STORAGE_DEVICE_UNSAFE_SHUTDOWN_COUNT","features":[22]},{"name":"STORAGE_DIAGNOSTIC_DATA","features":[22]},{"name":"STORAGE_DIAGNOSTIC_FLAG_ADAPTER_REQUEST","features":[22]},{"name":"STORAGE_DIAGNOSTIC_LEVEL","features":[22]},{"name":"STORAGE_DIAGNOSTIC_REQUEST","features":[22]},{"name":"STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[22]},{"name":"STORAGE_DISK_HEALTH_STATUS","features":[22]},{"name":"STORAGE_DISK_OPERATIONAL_STATUS","features":[22]},{"name":"STORAGE_ENCRYPTION_TYPE","features":[22]},{"name":"STORAGE_EVENT_DEVICE_OPERATION","features":[22]},{"name":"STORAGE_EVENT_DEVICE_STATUS","features":[22]},{"name":"STORAGE_EVENT_MEDIA_STATUS","features":[22]},{"name":"STORAGE_EVENT_NOTIFICATION","features":[22]},{"name":"STORAGE_EVENT_NOTIFICATION_VERSION_V1","features":[22]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG","features":[1,22]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG_V1","features":[22]},{"name":"STORAGE_FRU_ID_DESCRIPTOR","features":[22]},{"name":"STORAGE_GET_BC_PROPERTIES_OUTPUT","features":[22]},{"name":"STORAGE_HOTPLUG_INFO","features":[1,22]},{"name":"STORAGE_HW_ENDURANCE_DATA_DESCRIPTOR","features":[22]},{"name":"STORAGE_HW_ENDURANCE_INFO","features":[22]},{"name":"STORAGE_HW_FIRMWARE_ACTIVATE","features":[22]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD","features":[22]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD_V2","features":[22]},{"name":"STORAGE_HW_FIRMWARE_INFO","features":[1,22]},{"name":"STORAGE_HW_FIRMWARE_INFO_QUERY","features":[22]},{"name":"STORAGE_HW_FIRMWARE_INVALID_SLOT","features":[22]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[22]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[22]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[22]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[22]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[22]},{"name":"STORAGE_HW_FIRMWARE_REVISION_LENGTH","features":[22]},{"name":"STORAGE_HW_FIRMWARE_SLOT_INFO","features":[22]},{"name":"STORAGE_IDENTIFIER","features":[22]},{"name":"STORAGE_IDENTIFIER_CODE_SET","features":[22]},{"name":"STORAGE_IDENTIFIER_TYPE","features":[22]},{"name":"STORAGE_IDLE_POWER","features":[22]},{"name":"STORAGE_IDLE_POWERUP_REASON","features":[22]},{"name":"STORAGE_IDLE_POWERUP_REASON_VERSION_V1","features":[22]},{"name":"STORAGE_ID_NAA_FORMAT","features":[22]},{"name":"STORAGE_LB_PROVISIONING_MAP_RESOURCES","features":[22]},{"name":"STORAGE_MEDIA_SERIAL_NUMBER_DATA","features":[22]},{"name":"STORAGE_MEDIA_TYPE","features":[22]},{"name":"STORAGE_MEDIUM_PRODUCT_TYPE_DESCRIPTOR","features":[22]},{"name":"STORAGE_MINIPORT_DESCRIPTOR","features":[1,22]},{"name":"STORAGE_OFFLOAD_MAX_TOKEN_LENGTH","features":[22]},{"name":"STORAGE_OFFLOAD_READ_OUTPUT","features":[22]},{"name":"STORAGE_OFFLOAD_READ_RANGE_TRUNCATED","features":[22]},{"name":"STORAGE_OFFLOAD_TOKEN","features":[22]},{"name":"STORAGE_OFFLOAD_TOKEN_ID_LENGTH","features":[22]},{"name":"STORAGE_OFFLOAD_TOKEN_INVALID","features":[22]},{"name":"STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA","features":[22]},{"name":"STORAGE_OFFLOAD_WRITE_OUTPUT","features":[22]},{"name":"STORAGE_OFFLOAD_WRITE_RANGE_TRUNCATED","features":[22]},{"name":"STORAGE_OPERATIONAL_REASON","features":[22]},{"name":"STORAGE_OPERATIONAL_STATUS_REASON","features":[22]},{"name":"STORAGE_PHYSICAL_ADAPTER_DATA","features":[1,22]},{"name":"STORAGE_PHYSICAL_DEVICE_DATA","features":[22]},{"name":"STORAGE_PHYSICAL_NODE_DATA","features":[22]},{"name":"STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR","features":[22]},{"name":"STORAGE_PORT_CODE_SET","features":[22]},{"name":"STORAGE_POWERUP_REASON_TYPE","features":[22]},{"name":"STORAGE_PREDICT_FAILURE","features":[22]},{"name":"STORAGE_PRIORITY_HINT_SUPPORT","features":[22]},{"name":"STORAGE_PRIORITY_HINT_SUPPORTED","features":[22]},{"name":"STORAGE_PROPERTY_ID","features":[22]},{"name":"STORAGE_PROPERTY_QUERY","features":[22]},{"name":"STORAGE_PROPERTY_SET","features":[22]},{"name":"STORAGE_PROTOCOL_ATA_DATA_TYPE","features":[22]},{"name":"STORAGE_PROTOCOL_COMMAND","features":[22]},{"name":"STORAGE_PROTOCOL_COMMAND_FLAG_ADAPTER_REQUEST","features":[22]},{"name":"STORAGE_PROTOCOL_COMMAND_LENGTH_NVME","features":[22]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR","features":[22]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT","features":[22]},{"name":"STORAGE_PROTOCOL_DATA_SUBVALUE_GET_LOG_PAGE","features":[22]},{"name":"STORAGE_PROTOCOL_NVME_DATA_TYPE","features":[22]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA","features":[22]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA_EXT","features":[22]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_ADMIN_COMMAND","features":[22]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_NVM_COMMAND","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_BUSY","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_DATA_OVERRUN","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_ERROR","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_INSUFFICIENT_RESOURCES","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_INVALID_REQUEST","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_NOT_SUPPORTED","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_NO_DEVICE","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_PENDING","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_SUCCESS","features":[22]},{"name":"STORAGE_PROTOCOL_STATUS_THROTTLED_REQUEST","features":[22]},{"name":"STORAGE_PROTOCOL_STRUCTURE_VERSION","features":[22]},{"name":"STORAGE_PROTOCOL_TYPE","features":[22]},{"name":"STORAGE_PROTOCOL_UFS_DATA_TYPE","features":[22]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV1_ENTRY","features":[150,22]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV2_ENTRY","features":[150,22]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_REQUEST","features":[22]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_RESPONSE","features":[150,22]},{"name":"STORAGE_QUERY_TYPE","features":[22]},{"name":"STORAGE_READ_CAPACITY","features":[22]},{"name":"STORAGE_REINITIALIZE_MEDIA","features":[22]},{"name":"STORAGE_RESERVE_ID","features":[22]},{"name":"STORAGE_RPMB_COMMAND_TYPE","features":[22]},{"name":"STORAGE_RPMB_DATA_FRAME","features":[22]},{"name":"STORAGE_RPMB_DESCRIPTOR","features":[22]},{"name":"STORAGE_RPMB_DESCRIPTOR_VERSION_1","features":[22]},{"name":"STORAGE_RPMB_FRAME_TYPE","features":[22]},{"name":"STORAGE_RPMB_MINIMUM_RELIABLE_WRITE_SIZE","features":[22]},{"name":"STORAGE_SANITIZE_METHOD","features":[22]},{"name":"STORAGE_SET_TYPE","features":[22]},{"name":"STORAGE_SPEC_VERSION","features":[22]},{"name":"STORAGE_SUPPORTED_FEATURES_BYPASS_IO","features":[22]},{"name":"STORAGE_SUPPORTED_FEATURES_MASK","features":[22]},{"name":"STORAGE_TEMPERATURE_DATA_DESCRIPTOR","features":[1,22]},{"name":"STORAGE_TEMPERATURE_INFO","features":[1,22]},{"name":"STORAGE_TEMPERATURE_THRESHOLD","features":[1,22]},{"name":"STORAGE_TEMPERATURE_THRESHOLD_FLAG_ADAPTER_REQUEST","features":[22]},{"name":"STORAGE_TEMPERATURE_VALUE_NOT_REPORTED","features":[22]},{"name":"STORAGE_TIER","features":[22]},{"name":"STORAGE_TIER_CLASS","features":[22]},{"name":"STORAGE_TIER_DESCRIPTION_LENGTH","features":[22]},{"name":"STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[22]},{"name":"STORAGE_TIER_FLAG_PARITY","features":[22]},{"name":"STORAGE_TIER_FLAG_READ_CACHE","features":[22]},{"name":"STORAGE_TIER_FLAG_SMR","features":[22]},{"name":"STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[22]},{"name":"STORAGE_TIER_MEDIA_TYPE","features":[22]},{"name":"STORAGE_TIER_NAME_LENGTH","features":[22]},{"name":"STORAGE_TIER_REGION","features":[22]},{"name":"STORAGE_WRITE_CACHE_PROPERTY","features":[1,22]},{"name":"STORAGE_ZONED_DEVICE_DESCRIPTOR","features":[1,22]},{"name":"STORAGE_ZONED_DEVICE_TYPES","features":[22]},{"name":"STORAGE_ZONES_ATTRIBUTES","features":[22]},{"name":"STORAGE_ZONE_CONDITION","features":[22]},{"name":"STORAGE_ZONE_DESCRIPTOR","features":[1,22]},{"name":"STORAGE_ZONE_GROUP","features":[22]},{"name":"STORAGE_ZONE_TYPES","features":[22]},{"name":"STORATTRIBUTE_MANAGEMENT_STATE","features":[22]},{"name":"STORATTRIBUTE_NONE","features":[22]},{"name":"STREAMS_ASSOCIATE_ID_CLEAR","features":[22]},{"name":"STREAMS_ASSOCIATE_ID_INPUT_BUFFER","features":[22]},{"name":"STREAMS_ASSOCIATE_ID_SET","features":[22]},{"name":"STREAMS_INVALID_ID","features":[22]},{"name":"STREAMS_MAX_ID","features":[22]},{"name":"STREAMS_QUERY_ID_OUTPUT_BUFFER","features":[22]},{"name":"STREAMS_QUERY_PARAMETERS_OUTPUT_BUFFER","features":[22]},{"name":"STREAM_CLEAR_ENCRYPTION","features":[22]},{"name":"STREAM_EXTENT_ENTRY","features":[22]},{"name":"STREAM_EXTENT_ENTRY_ALL_EXTENTS","features":[22]},{"name":"STREAM_EXTENT_ENTRY_AS_RETRIEVAL_POINTERS","features":[22]},{"name":"STREAM_INFORMATION_ENTRY","features":[22]},{"name":"STREAM_LAYOUT_ENTRY","features":[22]},{"name":"STREAM_LAYOUT_ENTRY_HAS_INFORMATION","features":[22]},{"name":"STREAM_LAYOUT_ENTRY_IMMOVABLE","features":[22]},{"name":"STREAM_LAYOUT_ENTRY_NO_CLUSTERS_ALLOCATED","features":[22]},{"name":"STREAM_LAYOUT_ENTRY_PINNED","features":[22]},{"name":"STREAM_LAYOUT_ENTRY_RESIDENT","features":[22]},{"name":"STREAM_SET_ENCRYPTION","features":[22]},{"name":"SYQUEST_EZ135","features":[22]},{"name":"SYQUEST_EZFLYER","features":[22]},{"name":"SYQUEST_SYJET","features":[22]},{"name":"ScmBusFirmwareActivationState_Armed","features":[22]},{"name":"ScmBusFirmwareActivationState_Busy","features":[22]},{"name":"ScmBusFirmwareActivationState_Idle","features":[22]},{"name":"ScmBusProperty_DedicatedMemoryInfo","features":[22]},{"name":"ScmBusProperty_DedicatedMemoryState","features":[22]},{"name":"ScmBusProperty_Max","features":[22]},{"name":"ScmBusProperty_RuntimeFwActivationInfo","features":[22]},{"name":"ScmBusQuery_Descriptor","features":[22]},{"name":"ScmBusQuery_IsSupported","features":[22]},{"name":"ScmBusQuery_Max","features":[22]},{"name":"ScmBusSet_Descriptor","features":[22]},{"name":"ScmBusSet_IsSupported","features":[22]},{"name":"ScmBusSet_Max","features":[22]},{"name":"ScmPdFirmwareActivationState_Armed","features":[22]},{"name":"ScmPdFirmwareActivationState_Busy","features":[22]},{"name":"ScmPdFirmwareActivationState_Idle","features":[22]},{"name":"ScmPdLastFwActivaitonStatus_ActivationInProgress","features":[22]},{"name":"ScmPdLastFwActivaitonStatus_FwUnsupported","features":[22]},{"name":"ScmPdLastFwActivaitonStatus_Retry","features":[22]},{"name":"ScmPdLastFwActivaitonStatus_UnknownError","features":[22]},{"name":"ScmPdLastFwActivationStatus_ColdRebootRequired","features":[22]},{"name":"ScmPdLastFwActivationStatus_FwNotFound","features":[22]},{"name":"ScmPdLastFwActivationStatus_None","features":[22]},{"name":"ScmPdLastFwActivationStatus_Success","features":[22]},{"name":"ScmPhysicalDeviceHealth_Healthy","features":[22]},{"name":"ScmPhysicalDeviceHealth_Max","features":[22]},{"name":"ScmPhysicalDeviceHealth_Unhealthy","features":[22]},{"name":"ScmPhysicalDeviceHealth_Unknown","features":[22]},{"name":"ScmPhysicalDeviceHealth_Warning","features":[22]},{"name":"ScmPhysicalDeviceOpReason_BackgroundOperation","features":[22]},{"name":"ScmPhysicalDeviceOpReason_Component","features":[22]},{"name":"ScmPhysicalDeviceOpReason_Configuration","features":[22]},{"name":"ScmPhysicalDeviceOpReason_DataPersistenceLossImminent","features":[22]},{"name":"ScmPhysicalDeviceOpReason_DeviceController","features":[22]},{"name":"ScmPhysicalDeviceOpReason_DisabledByPlatform","features":[22]},{"name":"ScmPhysicalDeviceOpReason_EnergySource","features":[22]},{"name":"ScmPhysicalDeviceOpReason_ExcessiveTemperature","features":[22]},{"name":"ScmPhysicalDeviceOpReason_FatalError","features":[22]},{"name":"ScmPhysicalDeviceOpReason_HealthCheck","features":[22]},{"name":"ScmPhysicalDeviceOpReason_InternalFailure","features":[22]},{"name":"ScmPhysicalDeviceOpReason_InvalidFirmware","features":[22]},{"name":"ScmPhysicalDeviceOpReason_LostData","features":[22]},{"name":"ScmPhysicalDeviceOpReason_LostDataPersistence","features":[22]},{"name":"ScmPhysicalDeviceOpReason_LostWritePersistence","features":[22]},{"name":"ScmPhysicalDeviceOpReason_Max","features":[22]},{"name":"ScmPhysicalDeviceOpReason_Media","features":[22]},{"name":"ScmPhysicalDeviceOpReason_MediaController","features":[22]},{"name":"ScmPhysicalDeviceOpReason_MediaRemainingSpareBlock","features":[22]},{"name":"ScmPhysicalDeviceOpReason_PerformanceDegradation","features":[22]},{"name":"ScmPhysicalDeviceOpReason_PermanentError","features":[22]},{"name":"ScmPhysicalDeviceOpReason_ThresholdExceeded","features":[22]},{"name":"ScmPhysicalDeviceOpReason_Unknown","features":[22]},{"name":"ScmPhysicalDeviceOpReason_WritePersistenceLossImminent","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_HardwareError","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_InService","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_Max","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_Missing","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_NotUsable","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_Ok","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_PredictingFailure","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_TransientError","features":[22]},{"name":"ScmPhysicalDeviceOpStatus_Unknown","features":[22]},{"name":"ScmPhysicalDeviceProperty_DeviceHandle","features":[22]},{"name":"ScmPhysicalDeviceProperty_DeviceInfo","features":[22]},{"name":"ScmPhysicalDeviceProperty_DeviceSpecificInfo","features":[22]},{"name":"ScmPhysicalDeviceProperty_FirmwareInfo","features":[22]},{"name":"ScmPhysicalDeviceProperty_FruIdString","features":[22]},{"name":"ScmPhysicalDeviceProperty_LocationString","features":[22]},{"name":"ScmPhysicalDeviceProperty_ManagementStatus","features":[22]},{"name":"ScmPhysicalDeviceProperty_Max","features":[22]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationArmState","features":[22]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationInfo","features":[22]},{"name":"ScmPhysicalDeviceQuery_Descriptor","features":[22]},{"name":"ScmPhysicalDeviceQuery_IsSupported","features":[22]},{"name":"ScmPhysicalDeviceQuery_Max","features":[22]},{"name":"ScmPhysicalDeviceReinit_ColdBootNeeded","features":[22]},{"name":"ScmPhysicalDeviceReinit_Max","features":[22]},{"name":"ScmPhysicalDeviceReinit_RebootNeeded","features":[22]},{"name":"ScmPhysicalDeviceReinit_Success","features":[22]},{"name":"ScmPhysicalDeviceSet_Descriptor","features":[22]},{"name":"ScmPhysicalDeviceSet_IsSupported","features":[22]},{"name":"ScmPhysicalDeviceSet_Max","features":[22]},{"name":"ScmRegionFlagLabel","features":[22]},{"name":"ScmRegionFlagNone","features":[22]},{"name":"ShrinkAbort","features":[22]},{"name":"ShrinkCommit","features":[22]},{"name":"ShrinkPrepare","features":[22]},{"name":"SmrGcActionPause","features":[22]},{"name":"SmrGcActionStart","features":[22]},{"name":"SmrGcActionStartFullSpeed","features":[22]},{"name":"SmrGcActionStop","features":[22]},{"name":"SmrGcMethodCompaction","features":[22]},{"name":"SmrGcMethodCompression","features":[22]},{"name":"SmrGcMethodRotation","features":[22]},{"name":"SmrGcStateActive","features":[22]},{"name":"SmrGcStateActiveFullSpeed","features":[22]},{"name":"SmrGcStateInactive","features":[22]},{"name":"SmrGcStatePaused","features":[22]},{"name":"StorAttributeMgmt_ClearAttribute","features":[22]},{"name":"StorAttributeMgmt_ResetAttribute","features":[22]},{"name":"StorAttributeMgmt_SetAttribute","features":[22]},{"name":"StorRpmbAuthenticatedDeviceConfigRead","features":[22]},{"name":"StorRpmbAuthenticatedDeviceConfigWrite","features":[22]},{"name":"StorRpmbAuthenticatedRead","features":[22]},{"name":"StorRpmbAuthenticatedWrite","features":[22]},{"name":"StorRpmbProgramAuthKey","features":[22]},{"name":"StorRpmbQueryWriteCounter","features":[22]},{"name":"StorRpmbReadResultRequest","features":[22]},{"name":"StorageAccessAlignmentProperty","features":[22]},{"name":"StorageAdapterCryptoProperty","features":[22]},{"name":"StorageAdapterPhysicalTopologyProperty","features":[22]},{"name":"StorageAdapterProperty","features":[22]},{"name":"StorageAdapterProtocolSpecificProperty","features":[22]},{"name":"StorageAdapterRpmbProperty","features":[22]},{"name":"StorageAdapterSerialNumberProperty","features":[22]},{"name":"StorageAdapterTemperatureProperty","features":[22]},{"name":"StorageCounterTypeFlushLatency100NSMax","features":[22]},{"name":"StorageCounterTypeLoadUnloadCycleCount","features":[22]},{"name":"StorageCounterTypeLoadUnloadCycleCountMax","features":[22]},{"name":"StorageCounterTypeManufactureDate","features":[22]},{"name":"StorageCounterTypeMax","features":[22]},{"name":"StorageCounterTypePowerOnHours","features":[22]},{"name":"StorageCounterTypeReadErrorsCorrected","features":[22]},{"name":"StorageCounterTypeReadErrorsTotal","features":[22]},{"name":"StorageCounterTypeReadErrorsUncorrected","features":[22]},{"name":"StorageCounterTypeReadLatency100NSMax","features":[22]},{"name":"StorageCounterTypeStartStopCycleCount","features":[22]},{"name":"StorageCounterTypeStartStopCycleCountMax","features":[22]},{"name":"StorageCounterTypeTemperatureCelsius","features":[22]},{"name":"StorageCounterTypeTemperatureCelsiusMax","features":[22]},{"name":"StorageCounterTypeUnknown","features":[22]},{"name":"StorageCounterTypeWearPercentage","features":[22]},{"name":"StorageCounterTypeWearPercentageMax","features":[22]},{"name":"StorageCounterTypeWearPercentageWarning","features":[22]},{"name":"StorageCounterTypeWriteErrorsCorrected","features":[22]},{"name":"StorageCounterTypeWriteErrorsTotal","features":[22]},{"name":"StorageCounterTypeWriteErrorsUncorrected","features":[22]},{"name":"StorageCounterTypeWriteLatency100NSMax","features":[22]},{"name":"StorageCryptoAlgorithmAESECB","features":[22]},{"name":"StorageCryptoAlgorithmBitlockerAESCBC","features":[22]},{"name":"StorageCryptoAlgorithmESSIVAESCBC","features":[22]},{"name":"StorageCryptoAlgorithmMax","features":[22]},{"name":"StorageCryptoAlgorithmUnknown","features":[22]},{"name":"StorageCryptoAlgorithmXTSAES","features":[22]},{"name":"StorageCryptoKeySize128Bits","features":[22]},{"name":"StorageCryptoKeySize192Bits","features":[22]},{"name":"StorageCryptoKeySize256Bits","features":[22]},{"name":"StorageCryptoKeySize512Bits","features":[22]},{"name":"StorageCryptoKeySizeUnknown","features":[22]},{"name":"StorageDeviceAttributesProperty","features":[22]},{"name":"StorageDeviceCopyOffloadProperty","features":[22]},{"name":"StorageDeviceDeviceTelemetryProperty","features":[22]},{"name":"StorageDeviceEnduranceProperty","features":[22]},{"name":"StorageDeviceIdProperty","features":[22]},{"name":"StorageDeviceIoCapabilityProperty","features":[22]},{"name":"StorageDeviceLBProvisioningProperty","features":[22]},{"name":"StorageDeviceLedStateProperty","features":[22]},{"name":"StorageDeviceLocationProperty","features":[22]},{"name":"StorageDeviceManagementStatus","features":[22]},{"name":"StorageDeviceMediumProductType","features":[22]},{"name":"StorageDeviceNumaProperty","features":[22]},{"name":"StorageDevicePhysicalTopologyProperty","features":[22]},{"name":"StorageDevicePowerCapUnitsMilliwatts","features":[22]},{"name":"StorageDevicePowerCapUnitsPercent","features":[22]},{"name":"StorageDevicePowerProperty","features":[22]},{"name":"StorageDeviceProperty","features":[22]},{"name":"StorageDeviceProtocolSpecificProperty","features":[22]},{"name":"StorageDeviceResiliencyProperty","features":[22]},{"name":"StorageDeviceSeekPenaltyProperty","features":[22]},{"name":"StorageDeviceSelfEncryptionProperty","features":[22]},{"name":"StorageDeviceTemperatureProperty","features":[22]},{"name":"StorageDeviceTrimProperty","features":[22]},{"name":"StorageDeviceUniqueIdProperty","features":[22]},{"name":"StorageDeviceUnsafeShutdownCount","features":[22]},{"name":"StorageDeviceWriteAggregationProperty","features":[22]},{"name":"StorageDeviceWriteCacheProperty","features":[22]},{"name":"StorageDeviceZonedDeviceProperty","features":[22]},{"name":"StorageDiagnosticLevelDefault","features":[22]},{"name":"StorageDiagnosticLevelMax","features":[22]},{"name":"StorageDiagnosticTargetTypeHbaFirmware","features":[22]},{"name":"StorageDiagnosticTargetTypeMax","features":[22]},{"name":"StorageDiagnosticTargetTypeMiniport","features":[22]},{"name":"StorageDiagnosticTargetTypePort","features":[22]},{"name":"StorageDiagnosticTargetTypeUndefined","features":[22]},{"name":"StorageEncryptionTypeEDrive","features":[22]},{"name":"StorageEncryptionTypeTcgOpal","features":[22]},{"name":"StorageEncryptionTypeUnknown","features":[22]},{"name":"StorageFruIdProperty","features":[22]},{"name":"StorageIdAssocDevice","features":[22]},{"name":"StorageIdAssocPort","features":[22]},{"name":"StorageIdAssocTarget","features":[22]},{"name":"StorageIdCodeSetAscii","features":[22]},{"name":"StorageIdCodeSetBinary","features":[22]},{"name":"StorageIdCodeSetReserved","features":[22]},{"name":"StorageIdCodeSetUtf8","features":[22]},{"name":"StorageIdNAAFormatIEEEERegisteredExtended","features":[22]},{"name":"StorageIdNAAFormatIEEEExtended","features":[22]},{"name":"StorageIdNAAFormatIEEERegistered","features":[22]},{"name":"StorageIdTypeEUI64","features":[22]},{"name":"StorageIdTypeFCPHName","features":[22]},{"name":"StorageIdTypeLogicalUnitGroup","features":[22]},{"name":"StorageIdTypeMD5LogicalUnitIdentifier","features":[22]},{"name":"StorageIdTypePortRelative","features":[22]},{"name":"StorageIdTypeScsiNameString","features":[22]},{"name":"StorageIdTypeTargetPortGroup","features":[22]},{"name":"StorageIdTypeVendorId","features":[22]},{"name":"StorageIdTypeVendorSpecific","features":[22]},{"name":"StorageMiniportProperty","features":[22]},{"name":"StoragePortCodeSetATAport","features":[22]},{"name":"StoragePortCodeSetReserved","features":[22]},{"name":"StoragePortCodeSetSBP2port","features":[22]},{"name":"StoragePortCodeSetSCSIport","features":[22]},{"name":"StoragePortCodeSetSDport","features":[22]},{"name":"StoragePortCodeSetSpaceport","features":[22]},{"name":"StoragePortCodeSetStorport","features":[22]},{"name":"StoragePortCodeSetUSBport","features":[22]},{"name":"StoragePowerupDeviceAttention","features":[22]},{"name":"StoragePowerupIO","features":[22]},{"name":"StoragePowerupUnknown","features":[22]},{"name":"StorageReserveIdHard","features":[22]},{"name":"StorageReserveIdMax","features":[22]},{"name":"StorageReserveIdNone","features":[22]},{"name":"StorageReserveIdSoft","features":[22]},{"name":"StorageReserveIdUpdateScratch","features":[22]},{"name":"StorageRpmbFrameTypeMax","features":[22]},{"name":"StorageRpmbFrameTypeStandard","features":[22]},{"name":"StorageRpmbFrameTypeUnknown","features":[22]},{"name":"StorageSanitizeMethodBlockErase","features":[22]},{"name":"StorageSanitizeMethodCryptoErase","features":[22]},{"name":"StorageSanitizeMethodDefault","features":[22]},{"name":"StorageTierClassCapacity","features":[22]},{"name":"StorageTierClassMax","features":[22]},{"name":"StorageTierClassPerformance","features":[22]},{"name":"StorageTierClassUnspecified","features":[22]},{"name":"StorageTierMediaTypeDisk","features":[22]},{"name":"StorageTierMediaTypeMax","features":[22]},{"name":"StorageTierMediaTypeScm","features":[22]},{"name":"StorageTierMediaTypeSsd","features":[22]},{"name":"StorageTierMediaTypeUnspecified","features":[22]},{"name":"TAPE_GET_STATISTICS","features":[22]},{"name":"TAPE_RESET_STATISTICS","features":[22]},{"name":"TAPE_RETURN_ENV_INFO","features":[22]},{"name":"TAPE_RETURN_STATISTICS","features":[22]},{"name":"TAPE_STATISTICS","features":[22]},{"name":"TCCollectionApplicationRequested","features":[22]},{"name":"TCCollectionBugCheck","features":[22]},{"name":"TCCollectionDeviceRequested","features":[22]},{"name":"TC_DEVICEDUMP_SUBSECTION_DESC_LENGTH","features":[22]},{"name":"TC_PUBLIC_DATA_TYPE_ATAGP","features":[22]},{"name":"TC_PUBLIC_DATA_TYPE_ATASMART","features":[22]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG","features":[22]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG_MAX","features":[22]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_SMART","features":[22]},{"name":"TELEMETRY_COMMAND_SIZE","features":[22]},{"name":"TXFS_CREATE_MINIVERSION_INFO","features":[22]},{"name":"TXFS_GET_METADATA_INFO_OUT","features":[22]},{"name":"TXFS_GET_TRANSACTED_VERSION","features":[22]},{"name":"TXFS_LIST_TRANSACTIONS","features":[22]},{"name":"TXFS_LIST_TRANSACTIONS_ENTRY","features":[22]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[22]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY","features":[22]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_CREATED","features":[22]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_DELETED","features":[22]},{"name":"TXFS_LOGGING_MODE_FULL","features":[22]},{"name":"TXFS_LOGGING_MODE_SIMPLE","features":[22]},{"name":"TXFS_MODIFY_RM","features":[22]},{"name":"TXFS_QUERY_RM_INFORMATION","features":[22]},{"name":"TXFS_READ_BACKUP_INFORMATION_OUT","features":[22]},{"name":"TXFS_RMF_LAGS","features":[22]},{"name":"TXFS_RM_FLAG_DO_NOT_RESET_RM_AT_NEXT_START","features":[22]},{"name":"TXFS_RM_FLAG_ENFORCE_MINIMUM_SIZE","features":[22]},{"name":"TXFS_RM_FLAG_GROW_LOG","features":[22]},{"name":"TXFS_RM_FLAG_LOGGING_MODE","features":[22]},{"name":"TXFS_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[22]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[22]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[22]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[22]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[22]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[22]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[22]},{"name":"TXFS_RM_FLAG_PREFER_AVAILABILITY","features":[22]},{"name":"TXFS_RM_FLAG_PREFER_CONSISTENCY","features":[22]},{"name":"TXFS_RM_FLAG_PRESERVE_CHANGES","features":[22]},{"name":"TXFS_RM_FLAG_RENAME_RM","features":[22]},{"name":"TXFS_RM_FLAG_RESET_RM_AT_NEXT_START","features":[22]},{"name":"TXFS_RM_FLAG_SHRINK_LOG","features":[22]},{"name":"TXFS_RM_STATE_ACTIVE","features":[22]},{"name":"TXFS_RM_STATE_NOT_STARTED","features":[22]},{"name":"TXFS_RM_STATE_SHUTTING_DOWN","features":[22]},{"name":"TXFS_RM_STATE_STARTING","features":[22]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_REDO_LSN","features":[22]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_VIRTUAL_CLOCK","features":[22]},{"name":"TXFS_ROLLFORWARD_REDO_INFORMATION","features":[22]},{"name":"TXFS_SAVEPOINT_CLEAR","features":[22]},{"name":"TXFS_SAVEPOINT_CLEAR_ALL","features":[22]},{"name":"TXFS_SAVEPOINT_INFORMATION","features":[1,22]},{"name":"TXFS_SAVEPOINT_ROLLBACK","features":[22]},{"name":"TXFS_SAVEPOINT_SET","features":[22]},{"name":"TXFS_START_RM_FLAG_LOGGING_MODE","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_SIZE","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[22]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[22]},{"name":"TXFS_START_RM_FLAG_PREFER_AVAILABILITY","features":[22]},{"name":"TXFS_START_RM_FLAG_PREFER_CONSISTENCY","features":[22]},{"name":"TXFS_START_RM_FLAG_PRESERVE_CHANGES","features":[22]},{"name":"TXFS_START_RM_FLAG_RECOVER_BEST_EFFORT","features":[22]},{"name":"TXFS_START_RM_INFORMATION","features":[22]},{"name":"TXFS_TRANSACTED_VERSION_NONTRANSACTED","features":[22]},{"name":"TXFS_TRANSACTED_VERSION_UNCOMMITTED","features":[22]},{"name":"TXFS_TRANSACTION_ACTIVE_INFO","features":[1,22]},{"name":"TXFS_TRANSACTION_STATE_ACTIVE","features":[22]},{"name":"TXFS_TRANSACTION_STATE_NONE","features":[22]},{"name":"TXFS_TRANSACTION_STATE_NOTACTIVE","features":[22]},{"name":"TXFS_TRANSACTION_STATE_PREPARED","features":[22]},{"name":"TXFS_WRITE_BACKUP_INFORMATION","features":[22]},{"name":"Travan","features":[22]},{"name":"UNDEFINE_ALTERNATE","features":[22]},{"name":"UNDEFINE_PRIMARY","features":[22]},{"name":"UNLOCK_ELEMENT","features":[22]},{"name":"UNRECOVERED_READS_VALID","features":[22]},{"name":"UNRECOVERED_WRITES_VALID","features":[22]},{"name":"USN_DELETE_FLAGS","features":[22]},{"name":"USN_DELETE_FLAG_DELETE","features":[22]},{"name":"USN_DELETE_FLAG_NOTIFY","features":[22]},{"name":"USN_DELETE_VALID_FLAGS","features":[22]},{"name":"USN_JOURNAL_DATA_V0","features":[22]},{"name":"USN_JOURNAL_DATA_V1","features":[22]},{"name":"USN_JOURNAL_DATA_V2","features":[22]},{"name":"USN_PAGE_SIZE","features":[22]},{"name":"USN_RANGE_TRACK_OUTPUT","features":[22]},{"name":"USN_REASON_BASIC_INFO_CHANGE","features":[22]},{"name":"USN_REASON_CLOSE","features":[22]},{"name":"USN_REASON_COMPRESSION_CHANGE","features":[22]},{"name":"USN_REASON_DATA_EXTEND","features":[22]},{"name":"USN_REASON_DATA_OVERWRITE","features":[22]},{"name":"USN_REASON_DATA_TRUNCATION","features":[22]},{"name":"USN_REASON_DESIRED_STORAGE_CLASS_CHANGE","features":[22]},{"name":"USN_REASON_EA_CHANGE","features":[22]},{"name":"USN_REASON_ENCRYPTION_CHANGE","features":[22]},{"name":"USN_REASON_FILE_CREATE","features":[22]},{"name":"USN_REASON_FILE_DELETE","features":[22]},{"name":"USN_REASON_HARD_LINK_CHANGE","features":[22]},{"name":"USN_REASON_INDEXABLE_CHANGE","features":[22]},{"name":"USN_REASON_INTEGRITY_CHANGE","features":[22]},{"name":"USN_REASON_NAMED_DATA_EXTEND","features":[22]},{"name":"USN_REASON_NAMED_DATA_OVERWRITE","features":[22]},{"name":"USN_REASON_NAMED_DATA_TRUNCATION","features":[22]},{"name":"USN_REASON_OBJECT_ID_CHANGE","features":[22]},{"name":"USN_REASON_RENAME_NEW_NAME","features":[22]},{"name":"USN_REASON_RENAME_OLD_NAME","features":[22]},{"name":"USN_REASON_REPARSE_POINT_CHANGE","features":[22]},{"name":"USN_REASON_SECURITY_CHANGE","features":[22]},{"name":"USN_REASON_STREAM_CHANGE","features":[22]},{"name":"USN_REASON_TRANSACTED_CHANGE","features":[22]},{"name":"USN_RECORD_COMMON_HEADER","features":[22]},{"name":"USN_RECORD_EXTENT","features":[22]},{"name":"USN_RECORD_UNION","features":[21,22]},{"name":"USN_RECORD_V2","features":[22]},{"name":"USN_RECORD_V3","features":[21,22]},{"name":"USN_RECORD_V4","features":[21,22]},{"name":"USN_SOURCE_AUXILIARY_DATA","features":[22]},{"name":"USN_SOURCE_CLIENT_REPLICATION_MANAGEMENT","features":[22]},{"name":"USN_SOURCE_DATA_MANAGEMENT","features":[22]},{"name":"USN_SOURCE_INFO_ID","features":[22]},{"name":"USN_SOURCE_REPLICATION_MANAGEMENT","features":[22]},{"name":"USN_TRACK_MODIFIED_RANGES","features":[22]},{"name":"UfsDataTypeMax","features":[22]},{"name":"UfsDataTypeQueryAttribute","features":[22]},{"name":"UfsDataTypeQueryDescriptor","features":[22]},{"name":"UfsDataTypeQueryDmeAttribute","features":[22]},{"name":"UfsDataTypeQueryDmePeerAttribute","features":[22]},{"name":"UfsDataTypeQueryFlag","features":[22]},{"name":"UfsDataTypeUnknown","features":[22]},{"name":"Unknown","features":[22]},{"name":"VALID_NTFT","features":[22]},{"name":"VENDOR_ID_LENGTH","features":[22]},{"name":"VERIFY_INFORMATION","features":[22]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT","features":[22]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT_EX","features":[22]},{"name":"VIRTUALIZATION_INSTANCE_INFO_OUTPUT","features":[22]},{"name":"VIRTUAL_STORAGE_BEHAVIOR_CODE","features":[22]},{"name":"VIRTUAL_STORAGE_SET_BEHAVIOR_INPUT","features":[22]},{"name":"VOLUME_BITMAP_BUFFER","features":[22]},{"name":"VOLUME_DISK_EXTENTS","features":[22]},{"name":"VOLUME_GET_GPT_ATTRIBUTES_INFORMATION","features":[22]},{"name":"VOLUME_IS_DIRTY","features":[22]},{"name":"VOLUME_SESSION_OPEN","features":[22]},{"name":"VOLUME_UPGRADE_SCHEDULED","features":[22]},{"name":"VXATape","features":[22]},{"name":"VXATape_1","features":[22]},{"name":"VXATape_2","features":[22]},{"name":"VirtualStorageBehaviorCacheWriteBack","features":[22]},{"name":"VirtualStorageBehaviorCacheWriteThrough","features":[22]},{"name":"VirtualStorageBehaviorRestartIoProcessing","features":[22]},{"name":"VirtualStorageBehaviorStopIoProcessing","features":[22]},{"name":"VirtualStorageBehaviorUndefined","features":[22]},{"name":"WIM_PROVIDER_ADD_OVERLAY_INPUT","features":[22]},{"name":"WIM_PROVIDER_CURRENT_VERSION","features":[22]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_NOT_ACTIVE","features":[22]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_SUSPENDED","features":[22]},{"name":"WIM_PROVIDER_EXTERNAL_INFO","features":[22]},{"name":"WIM_PROVIDER_OVERLAY_ENTRY","features":[22]},{"name":"WIM_PROVIDER_REMOVE_OVERLAY_INPUT","features":[22]},{"name":"WIM_PROVIDER_SUSPEND_OVERLAY_INPUT","features":[22]},{"name":"WIM_PROVIDER_UPDATE_OVERLAY_INPUT","features":[22]},{"name":"WMI_DISK_GEOMETRY_GUID","features":[22]},{"name":"WOF_CURRENT_VERSION","features":[22]},{"name":"WOF_EXTERNAL_FILE_ID","features":[21,22]},{"name":"WOF_EXTERNAL_INFO","features":[22]},{"name":"WOF_PROVIDER_CLOUD","features":[22]},{"name":"WOF_VERSION_INFO","features":[22]},{"name":"WRITE_CACHE_CHANGE","features":[22]},{"name":"WRITE_CACHE_ENABLE","features":[22]},{"name":"WRITE_CACHE_TYPE","features":[22]},{"name":"WRITE_COMPRESSION_INFO_VALID","features":[22]},{"name":"WRITE_THROUGH","features":[22]},{"name":"WRITE_USN_REASON_INPUT","features":[22]},{"name":"WriteCacheChangeUnknown","features":[22]},{"name":"WriteCacheChangeable","features":[22]},{"name":"WriteCacheDisabled","features":[22]},{"name":"WriteCacheEnableUnknown","features":[22]},{"name":"WriteCacheEnabled","features":[22]},{"name":"WriteCacheNotChangeable","features":[22]},{"name":"WriteCacheTypeNone","features":[22]},{"name":"WriteCacheTypeUnknown","features":[22]},{"name":"WriteCacheTypeWriteBack","features":[22]},{"name":"WriteCacheTypeWriteThrough","features":[22]},{"name":"WriteThroughNotSupported","features":[22]},{"name":"WriteThroughSupported","features":[22]},{"name":"WriteThroughUnknown","features":[22]},{"name":"ZoneConditionClosed","features":[22]},{"name":"ZoneConditionConventional","features":[22]},{"name":"ZoneConditionEmpty","features":[22]},{"name":"ZoneConditionExplicitlyOpened","features":[22]},{"name":"ZoneConditionFull","features":[22]},{"name":"ZoneConditionImplicitlyOpened","features":[22]},{"name":"ZoneConditionOffline","features":[22]},{"name":"ZoneConditionReadOnly","features":[22]},{"name":"ZoneTypeConventional","features":[22]},{"name":"ZoneTypeMax","features":[22]},{"name":"ZoneTypeSequentialWritePreferred","features":[22]},{"name":"ZoneTypeSequentialWriteRequired","features":[22]},{"name":"ZoneTypeUnknown","features":[22]},{"name":"ZonedDeviceTypeDeviceManaged","features":[22]},{"name":"ZonedDeviceTypeHostAware","features":[22]},{"name":"ZonedDeviceTypeHostManaged","features":[22]},{"name":"ZonedDeviceTypeUnknown","features":[22]},{"name":"ZonesAttributeTypeAndLengthMayDifferent","features":[22]},{"name":"ZonesAttributeTypeMayDifferentLengthSame","features":[22]},{"name":"ZonesAttributeTypeSameLastZoneLengthDifferent","features":[22]},{"name":"ZonesAttributeTypeSameLengthSame","features":[22]}],"574":[{"name":"AssignProcessToJobObject","features":[1,180]},{"name":"CreateJobObjectA","features":[1,4,180]},{"name":"CreateJobObjectW","features":[1,4,180]},{"name":"CreateJobSet","features":[1,180]},{"name":"FreeMemoryJobObject","features":[180]},{"name":"IsProcessInJob","features":[1,180]},{"name":"JOBOBJECTINFOCLASS","features":[180]},{"name":"JOBOBJECT_ASSOCIATE_COMPLETION_PORT","features":[1,180]},{"name":"JOBOBJECT_BASIC_ACCOUNTING_INFORMATION","features":[180]},{"name":"JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","features":[180,37]},{"name":"JOBOBJECT_BASIC_LIMIT_INFORMATION","features":[180]},{"name":"JOBOBJECT_BASIC_PROCESS_ID_LIST","features":[180]},{"name":"JOBOBJECT_BASIC_UI_RESTRICTIONS","features":[180]},{"name":"JOBOBJECT_CPU_RATE_CONTROL_INFORMATION","features":[180]},{"name":"JOBOBJECT_END_OF_JOB_TIME_INFORMATION","features":[180]},{"name":"JOBOBJECT_EXTENDED_LIMIT_INFORMATION","features":[180,37]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_DISABLE","features":[180]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_ENABLE","features":[180]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_FLAGS","features":[180]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_VALID_FLAGS","features":[180]},{"name":"JOBOBJECT_IO_ATTRIBUTION_INFORMATION","features":[180]},{"name":"JOBOBJECT_IO_ATTRIBUTION_STATS","features":[180]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION","features":[180]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V1","features":[180]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2","features":[180]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3","features":[180]},{"name":"JOBOBJECT_JOBSET_INFORMATION","features":[180]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION","features":[180]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2","features":[180]},{"name":"JOBOBJECT_NET_RATE_CONTROL_INFORMATION","features":[180]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION","features":[180]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2","features":[180]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE","features":[180]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL","features":[180]},{"name":"JOBOBJECT_SECURITY_LIMIT_INFORMATION","features":[1,4,180]},{"name":"JOB_OBJECT_BASIC_LIMIT_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL","features":[180]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_ENABLE","features":[180]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_HARD_CAP","features":[180]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_MIN_MAX_RATE","features":[180]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_NOTIFY","features":[180]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED","features":[180]},{"name":"JOB_OBJECT_EXTENDED_LIMIT_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_ENABLE","features":[180]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FLAGS","features":[180]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ALL","features":[180]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ON_SOFT_CAP","features":[180]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_STANDALONE_VOLUME","features":[180]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_LIMIT","features":[180]},{"name":"JOB_OBJECT_LIMIT_ACTIVE_PROCESS","features":[180]},{"name":"JOB_OBJECT_LIMIT_AFFINITY","features":[180]},{"name":"JOB_OBJECT_LIMIT_BREAKAWAY_OK","features":[180]},{"name":"JOB_OBJECT_LIMIT_CPU_RATE_CONTROL","features":[180]},{"name":"JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION","features":[180]},{"name":"JOB_OBJECT_LIMIT_IO_RATE_CONTROL","features":[180]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY","features":[180]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_HIGH","features":[180]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_LOW","features":[180]},{"name":"JOB_OBJECT_LIMIT_JOB_READ_BYTES","features":[180]},{"name":"JOB_OBJECT_LIMIT_JOB_TIME","features":[180]},{"name":"JOB_OBJECT_LIMIT_JOB_WRITE_BYTES","features":[180]},{"name":"JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE","features":[180]},{"name":"JOB_OBJECT_LIMIT_NET_RATE_CONTROL","features":[180]},{"name":"JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME","features":[180]},{"name":"JOB_OBJECT_LIMIT_PRIORITY_CLASS","features":[180]},{"name":"JOB_OBJECT_LIMIT_PROCESS_MEMORY","features":[180]},{"name":"JOB_OBJECT_LIMIT_PROCESS_TIME","features":[180]},{"name":"JOB_OBJECT_LIMIT_RATE_CONTROL","features":[180]},{"name":"JOB_OBJECT_LIMIT_SCHEDULING_CLASS","features":[180]},{"name":"JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK","features":[180]},{"name":"JOB_OBJECT_LIMIT_SUBSET_AFFINITY","features":[180]},{"name":"JOB_OBJECT_LIMIT_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_LIMIT_WORKINGSET","features":[180]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_DSCP_TAG","features":[180]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_ENABLE","features":[180]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_FLAGS","features":[180]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_BANDWIDTH","features":[180]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_NOTIFICATION_LIMIT_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_POST_AT_END_OF_JOB","features":[180]},{"name":"JOB_OBJECT_SECURITY","features":[180]},{"name":"JOB_OBJECT_SECURITY_FILTER_TOKENS","features":[180]},{"name":"JOB_OBJECT_SECURITY_NO_ADMIN","features":[180]},{"name":"JOB_OBJECT_SECURITY_ONLY_TOKEN","features":[180]},{"name":"JOB_OBJECT_SECURITY_RESTRICTED_TOKEN","features":[180]},{"name":"JOB_OBJECT_SECURITY_VALID_FLAGS","features":[180]},{"name":"JOB_OBJECT_TERMINATE_AT_END_ACTION","features":[180]},{"name":"JOB_OBJECT_TERMINATE_AT_END_OF_JOB","features":[180]},{"name":"JOB_OBJECT_UILIMIT","features":[180]},{"name":"JOB_OBJECT_UILIMIT_DESKTOP","features":[180]},{"name":"JOB_OBJECT_UILIMIT_DISPLAYSETTINGS","features":[180]},{"name":"JOB_OBJECT_UILIMIT_EXITWINDOWS","features":[180]},{"name":"JOB_OBJECT_UILIMIT_GLOBALATOMS","features":[180]},{"name":"JOB_OBJECT_UILIMIT_HANDLES","features":[180]},{"name":"JOB_OBJECT_UILIMIT_NONE","features":[180]},{"name":"JOB_OBJECT_UILIMIT_READCLIPBOARD","features":[180]},{"name":"JOB_OBJECT_UILIMIT_SYSTEMPARAMETERS","features":[180]},{"name":"JOB_OBJECT_UILIMIT_WRITECLIPBOARD","features":[180]},{"name":"JOB_SET_ARRAY","features":[1,180]},{"name":"JobObjectAssociateCompletionPortInformation","features":[180]},{"name":"JobObjectBasicAccountingInformation","features":[180]},{"name":"JobObjectBasicAndIoAccountingInformation","features":[180]},{"name":"JobObjectBasicLimitInformation","features":[180]},{"name":"JobObjectBasicProcessIdList","features":[180]},{"name":"JobObjectBasicUIRestrictions","features":[180]},{"name":"JobObjectCompletionCounter","features":[180]},{"name":"JobObjectCompletionFilter","features":[180]},{"name":"JobObjectCpuRateControlInformation","features":[180]},{"name":"JobObjectCreateSilo","features":[180]},{"name":"JobObjectEndOfJobTimeInformation","features":[180]},{"name":"JobObjectExtendedLimitInformation","features":[180]},{"name":"JobObjectGroupInformation","features":[180]},{"name":"JobObjectGroupInformationEx","features":[180]},{"name":"JobObjectJobSetInformation","features":[180]},{"name":"JobObjectLimitViolationInformation","features":[180]},{"name":"JobObjectLimitViolationInformation2","features":[180]},{"name":"JobObjectNetRateControlInformation","features":[180]},{"name":"JobObjectNotificationLimitInformation","features":[180]},{"name":"JobObjectNotificationLimitInformation2","features":[180]},{"name":"JobObjectReserved10Information","features":[180]},{"name":"JobObjectReserved11Information","features":[180]},{"name":"JobObjectReserved12Information","features":[180]},{"name":"JobObjectReserved13Information","features":[180]},{"name":"JobObjectReserved14Information","features":[180]},{"name":"JobObjectReserved15Information","features":[180]},{"name":"JobObjectReserved16Information","features":[180]},{"name":"JobObjectReserved17Information","features":[180]},{"name":"JobObjectReserved18Information","features":[180]},{"name":"JobObjectReserved19Information","features":[180]},{"name":"JobObjectReserved1Information","features":[180]},{"name":"JobObjectReserved20Information","features":[180]},{"name":"JobObjectReserved21Information","features":[180]},{"name":"JobObjectReserved22Information","features":[180]},{"name":"JobObjectReserved23Information","features":[180]},{"name":"JobObjectReserved24Information","features":[180]},{"name":"JobObjectReserved25Information","features":[180]},{"name":"JobObjectReserved26Information","features":[180]},{"name":"JobObjectReserved27Information","features":[180]},{"name":"JobObjectReserved2Information","features":[180]},{"name":"JobObjectReserved3Information","features":[180]},{"name":"JobObjectReserved4Information","features":[180]},{"name":"JobObjectReserved5Information","features":[180]},{"name":"JobObjectReserved6Information","features":[180]},{"name":"JobObjectReserved7Information","features":[180]},{"name":"JobObjectReserved8Information","features":[180]},{"name":"JobObjectReserved9Information","features":[180]},{"name":"JobObjectSecurityLimitInformation","features":[180]},{"name":"JobObjectSiloBasicInformation","features":[180]},{"name":"MaxJobObjectInfoClass","features":[180]},{"name":"OpenJobObjectA","features":[1,180]},{"name":"OpenJobObjectW","features":[1,180]},{"name":"QueryInformationJobObject","features":[1,180]},{"name":"QueryIoRateControlInformationJobObject","features":[1,180]},{"name":"SetInformationJobObject","features":[1,180]},{"name":"SetIoRateControlInformationJobObject","features":[1,180]},{"name":"TerminateJobObject","features":[1,180]},{"name":"ToleranceHigh","features":[180]},{"name":"ToleranceIntervalLong","features":[180]},{"name":"ToleranceIntervalMedium","features":[180]},{"name":"ToleranceIntervalShort","features":[180]},{"name":"ToleranceLow","features":[180]},{"name":"ToleranceMedium","features":[180]},{"name":"UserHandleGrantAccess","features":[1,180]}],"575":[{"name":"JS_SOURCE_CONTEXT_NONE","features":[181]},{"name":"JsAddRef","features":[181]},{"name":"JsArray","features":[181]},{"name":"JsBackgroundWorkItemCallback","features":[181]},{"name":"JsBeforeCollectCallback","features":[181]},{"name":"JsBoolToBoolean","features":[181]},{"name":"JsBoolean","features":[181]},{"name":"JsBooleanToBool","features":[181]},{"name":"JsCallFunction","features":[181]},{"name":"JsCollectGarbage","features":[181]},{"name":"JsConstructObject","features":[181]},{"name":"JsConvertValueToBoolean","features":[181]},{"name":"JsConvertValueToNumber","features":[181]},{"name":"JsConvertValueToObject","features":[181]},{"name":"JsConvertValueToString","features":[181]},{"name":"JsCreateArray","features":[181]},{"name":"JsCreateContext","features":[181]},{"name":"JsCreateContext","features":[181]},{"name":"JsCreateError","features":[181]},{"name":"JsCreateExternalObject","features":[181]},{"name":"JsCreateFunction","features":[181]},{"name":"JsCreateObject","features":[181]},{"name":"JsCreateRangeError","features":[181]},{"name":"JsCreateReferenceError","features":[181]},{"name":"JsCreateRuntime","features":[181]},{"name":"JsCreateSyntaxError","features":[181]},{"name":"JsCreateTypeError","features":[181]},{"name":"JsCreateURIError","features":[181]},{"name":"JsDefineProperty","features":[181]},{"name":"JsDeleteIndexedProperty","features":[181]},{"name":"JsDeleteProperty","features":[181]},{"name":"JsDisableRuntimeExecution","features":[181]},{"name":"JsDisposeRuntime","features":[181]},{"name":"JsDoubleToNumber","features":[181]},{"name":"JsEnableRuntimeExecution","features":[181]},{"name":"JsEnumerateHeap","features":[181]},{"name":"JsEquals","features":[181]},{"name":"JsError","features":[181]},{"name":"JsErrorAlreadyDebuggingContext","features":[181]},{"name":"JsErrorAlreadyProfilingContext","features":[181]},{"name":"JsErrorArgumentNotObject","features":[181]},{"name":"JsErrorBadSerializedScript","features":[181]},{"name":"JsErrorCannotDisableExecution","features":[181]},{"name":"JsErrorCannotSerializeDebugScript","features":[181]},{"name":"JsErrorCategoryEngine","features":[181]},{"name":"JsErrorCategoryFatal","features":[181]},{"name":"JsErrorCategoryScript","features":[181]},{"name":"JsErrorCategoryUsage","features":[181]},{"name":"JsErrorCode","features":[181]},{"name":"JsErrorFatal","features":[181]},{"name":"JsErrorHeapEnumInProgress","features":[181]},{"name":"JsErrorIdleNotEnabled","features":[181]},{"name":"JsErrorInDisabledState","features":[181]},{"name":"JsErrorInExceptionState","features":[181]},{"name":"JsErrorInProfileCallback","features":[181]},{"name":"JsErrorInThreadServiceCallback","features":[181]},{"name":"JsErrorInvalidArgument","features":[181]},{"name":"JsErrorNoCurrentContext","features":[181]},{"name":"JsErrorNotImplemented","features":[181]},{"name":"JsErrorNullArgument","features":[181]},{"name":"JsErrorOutOfMemory","features":[181]},{"name":"JsErrorRuntimeInUse","features":[181]},{"name":"JsErrorScriptCompile","features":[181]},{"name":"JsErrorScriptEvalDisabled","features":[181]},{"name":"JsErrorScriptException","features":[181]},{"name":"JsErrorScriptTerminated","features":[181]},{"name":"JsErrorWrongThread","features":[181]},{"name":"JsFinalizeCallback","features":[181]},{"name":"JsFunction","features":[181]},{"name":"JsGetAndClearException","features":[181]},{"name":"JsGetCurrentContext","features":[181]},{"name":"JsGetExtensionAllowed","features":[181]},{"name":"JsGetExternalData","features":[181]},{"name":"JsGetFalseValue","features":[181]},{"name":"JsGetGlobalObject","features":[181]},{"name":"JsGetIndexedProperty","features":[181]},{"name":"JsGetNullValue","features":[181]},{"name":"JsGetOwnPropertyDescriptor","features":[181]},{"name":"JsGetOwnPropertyNames","features":[181]},{"name":"JsGetProperty","features":[181]},{"name":"JsGetPropertyIdFromName","features":[181]},{"name":"JsGetPropertyNameFromId","features":[181]},{"name":"JsGetPrototype","features":[181]},{"name":"JsGetRuntime","features":[181]},{"name":"JsGetRuntimeMemoryLimit","features":[181]},{"name":"JsGetRuntimeMemoryUsage","features":[181]},{"name":"JsGetStringLength","features":[181]},{"name":"JsGetTrueValue","features":[181]},{"name":"JsGetUndefinedValue","features":[181]},{"name":"JsGetValueType","features":[181]},{"name":"JsHasException","features":[181]},{"name":"JsHasExternalData","features":[181]},{"name":"JsHasIndexedProperty","features":[181]},{"name":"JsHasProperty","features":[181]},{"name":"JsIdle","features":[181]},{"name":"JsIntToNumber","features":[181]},{"name":"JsIsEnumeratingHeap","features":[181]},{"name":"JsIsRuntimeExecutionDisabled","features":[181]},{"name":"JsMemoryAllocate","features":[181]},{"name":"JsMemoryAllocationCallback","features":[181]},{"name":"JsMemoryEventType","features":[181]},{"name":"JsMemoryFailure","features":[181]},{"name":"JsMemoryFree","features":[181]},{"name":"JsNativeFunction","features":[181]},{"name":"JsNoError","features":[181]},{"name":"JsNull","features":[181]},{"name":"JsNumber","features":[181]},{"name":"JsNumberToDouble","features":[181]},{"name":"JsObject","features":[181]},{"name":"JsParseScript","features":[181]},{"name":"JsParseSerializedScript","features":[181]},{"name":"JsPointerToString","features":[181]},{"name":"JsPreventExtension","features":[181]},{"name":"JsRelease","features":[181]},{"name":"JsRunScript","features":[181]},{"name":"JsRunSerializedScript","features":[181]},{"name":"JsRuntimeAttributeAllowScriptInterrupt","features":[181]},{"name":"JsRuntimeAttributeDisableBackgroundWork","features":[181]},{"name":"JsRuntimeAttributeDisableEval","features":[181]},{"name":"JsRuntimeAttributeDisableNativeCodeGeneration","features":[181]},{"name":"JsRuntimeAttributeEnableIdleProcessing","features":[181]},{"name":"JsRuntimeAttributeNone","features":[181]},{"name":"JsRuntimeAttributes","features":[181]},{"name":"JsRuntimeVersion","features":[181]},{"name":"JsRuntimeVersion10","features":[181]},{"name":"JsRuntimeVersion11","features":[181]},{"name":"JsRuntimeVersionEdge","features":[181]},{"name":"JsSerializeScript","features":[181]},{"name":"JsSetCurrentContext","features":[181]},{"name":"JsSetException","features":[181]},{"name":"JsSetExternalData","features":[181]},{"name":"JsSetIndexedProperty","features":[181]},{"name":"JsSetProperty","features":[181]},{"name":"JsSetPrototype","features":[181]},{"name":"JsSetRuntimeBeforeCollectCallback","features":[181]},{"name":"JsSetRuntimeMemoryAllocationCallback","features":[181]},{"name":"JsSetRuntimeMemoryLimit","features":[181]},{"name":"JsStartDebugging","features":[181]},{"name":"JsStartDebugging","features":[181]},{"name":"JsStartProfiling","features":[182,181]},{"name":"JsStopProfiling","features":[181]},{"name":"JsStrictEquals","features":[181]},{"name":"JsString","features":[181]},{"name":"JsStringToPointer","features":[181]},{"name":"JsThreadServiceCallback","features":[181]},{"name":"JsUndefined","features":[181]},{"name":"JsValueToVariant","features":[1,41,181,42]},{"name":"JsValueType","features":[181]},{"name":"JsVariantToValue","features":[1,41,181,42]}],"576":[{"name":"BackOffice","features":[7]},{"name":"Blade","features":[7]},{"name":"COMPARTMENT_ID","features":[7]},{"name":"CSTRING","features":[7]},{"name":"CommunicationServer","features":[7]},{"name":"ComputeServer","features":[7]},{"name":"DEFAULT_COMPARTMENT_ID","features":[7]},{"name":"DataCenter","features":[7]},{"name":"EVENT_TYPE","features":[7]},{"name":"EXCEPTION_DISPOSITION","features":[7]},{"name":"EXCEPTION_REGISTRATION_RECORD","features":[1,30,7]},{"name":"EXCEPTION_ROUTINE","features":[1,30,7]},{"name":"EmbeddedNT","features":[7]},{"name":"EmbeddedRestricted","features":[7]},{"name":"Enterprise","features":[7]},{"name":"ExceptionCollidedUnwind","features":[7]},{"name":"ExceptionContinueExecution","features":[7]},{"name":"ExceptionContinueSearch","features":[7]},{"name":"ExceptionNestedException","features":[7]},{"name":"FLOATING_SAVE_AREA","features":[7]},{"name":"FLOATING_SAVE_AREA","features":[7]},{"name":"LIST_ENTRY","features":[7]},{"name":"LIST_ENTRY32","features":[7]},{"name":"LIST_ENTRY64","features":[7]},{"name":"MAXUCHAR","features":[7]},{"name":"MAXULONG","features":[7]},{"name":"MAXUSHORT","features":[7]},{"name":"MaxSuiteType","features":[7]},{"name":"MultiUserTS","features":[7]},{"name":"NT_PRODUCT_TYPE","features":[7]},{"name":"NT_TIB","features":[1,30,7]},{"name":"NULL64","features":[7]},{"name":"NotificationEvent","features":[7]},{"name":"NotificationTimer","features":[7]},{"name":"NtProductLanManNt","features":[7]},{"name":"NtProductServer","features":[7]},{"name":"NtProductWinNt","features":[7]},{"name":"OBJECTID","features":[7]},{"name":"OBJ_CASE_INSENSITIVE","features":[7]},{"name":"OBJ_DONT_REPARSE","features":[7]},{"name":"OBJ_EXCLUSIVE","features":[7]},{"name":"OBJ_FORCE_ACCESS_CHECK","features":[7]},{"name":"OBJ_HANDLE_TAGBITS","features":[7]},{"name":"OBJ_IGNORE_IMPERSONATED_DEVICEMAP","features":[7]},{"name":"OBJ_INHERIT","features":[7]},{"name":"OBJ_KERNEL_HANDLE","features":[7]},{"name":"OBJ_OPENIF","features":[7]},{"name":"OBJ_OPENLINK","features":[7]},{"name":"OBJ_PERMANENT","features":[7]},{"name":"OBJ_VALID_ATTRIBUTES","features":[7]},{"name":"PROCESSOR_NUMBER","features":[7]},{"name":"Personal","features":[7]},{"name":"PhoneNT","features":[7]},{"name":"QUAD","features":[7]},{"name":"RTL_BALANCED_NODE","features":[7]},{"name":"RTL_BALANCED_NODE_RESERVED_PARENT_MASK","features":[7]},{"name":"RtlFirstEntrySList","features":[7]},{"name":"RtlInitializeSListHead","features":[7]},{"name":"RtlInterlockedFlushSList","features":[7]},{"name":"RtlInterlockedPopEntrySList","features":[7]},{"name":"RtlInterlockedPushEntrySList","features":[7]},{"name":"RtlInterlockedPushListSListEx","features":[7]},{"name":"RtlQueryDepthSList","features":[7]},{"name":"SINGLE_LIST_ENTRY","features":[7]},{"name":"SINGLE_LIST_ENTRY32","features":[7]},{"name":"SLIST_ENTRY","features":[7]},{"name":"SLIST_HEADER","features":[7]},{"name":"SLIST_HEADER","features":[7]},{"name":"SLIST_HEADER","features":[7]},{"name":"STRING","features":[7]},{"name":"STRING32","features":[7]},{"name":"STRING64","features":[7]},{"name":"SUITE_TYPE","features":[7]},{"name":"SecurityAppliance","features":[7]},{"name":"SingleUserTS","features":[7]},{"name":"SmallBusiness","features":[7]},{"name":"SmallBusinessRestricted","features":[7]},{"name":"StorageServer","features":[7]},{"name":"SynchronizationEvent","features":[7]},{"name":"SynchronizationTimer","features":[7]},{"name":"TIMER_TYPE","features":[7]},{"name":"TerminalServer","features":[7]},{"name":"UNSPECIFIED_COMPARTMENT_ID","features":[7]},{"name":"WAIT_TYPE","features":[7]},{"name":"WHServer","features":[7]},{"name":"WNF_STATE_NAME","features":[7]},{"name":"WaitAll","features":[7]},{"name":"WaitAny","features":[7]},{"name":"WaitDequeue","features":[7]},{"name":"WaitDpc","features":[7]},{"name":"WaitNotification","features":[7]}],"577":[{"name":"AddDllDirectory","features":[183]},{"name":"BeginUpdateResourceA","features":[1,183]},{"name":"BeginUpdateResourceW","features":[1,183]},{"name":"CURRENT_IMPORT_REDIRECTION_VERSION","features":[183]},{"name":"DONT_RESOLVE_DLL_REFERENCES","features":[183]},{"name":"DisableThreadLibraryCalls","features":[1,183]},{"name":"ENUMRESLANGPROCA","features":[1,183]},{"name":"ENUMRESLANGPROCW","features":[1,183]},{"name":"ENUMRESNAMEPROCA","features":[1,183]},{"name":"ENUMRESNAMEPROCW","features":[1,183]},{"name":"ENUMRESTYPEPROCA","features":[1,183]},{"name":"ENUMRESTYPEPROCW","features":[1,183]},{"name":"ENUMUILANG","features":[183]},{"name":"EndUpdateResourceA","features":[1,183]},{"name":"EndUpdateResourceW","features":[1,183]},{"name":"EnumResourceLanguagesA","features":[1,183]},{"name":"EnumResourceLanguagesExA","features":[1,183]},{"name":"EnumResourceLanguagesExW","features":[1,183]},{"name":"EnumResourceLanguagesW","features":[1,183]},{"name":"EnumResourceNamesA","features":[1,183]},{"name":"EnumResourceNamesExA","features":[1,183]},{"name":"EnumResourceNamesExW","features":[1,183]},{"name":"EnumResourceNamesW","features":[1,183]},{"name":"EnumResourceTypesA","features":[1,183]},{"name":"EnumResourceTypesExA","features":[1,183]},{"name":"EnumResourceTypesExW","features":[1,183]},{"name":"EnumResourceTypesW","features":[1,183]},{"name":"FIND_RESOURCE_DIRECTORY_LANGUAGES","features":[183]},{"name":"FIND_RESOURCE_DIRECTORY_NAMES","features":[183]},{"name":"FIND_RESOURCE_DIRECTORY_TYPES","features":[183]},{"name":"FindResourceA","features":[1,183]},{"name":"FindResourceExA","features":[1,183]},{"name":"FindResourceExW","features":[1,183]},{"name":"FindResourceW","features":[1,183]},{"name":"FreeLibraryAndExitThread","features":[1,183]},{"name":"FreeResource","features":[1,183]},{"name":"GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS","features":[183]},{"name":"GET_MODULE_HANDLE_EX_FLAG_PIN","features":[183]},{"name":"GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT","features":[183]},{"name":"GetDllDirectoryA","features":[183]},{"name":"GetDllDirectoryW","features":[183]},{"name":"GetModuleFileNameA","features":[1,183]},{"name":"GetModuleFileNameW","features":[1,183]},{"name":"GetModuleHandleA","features":[1,183]},{"name":"GetModuleHandleExA","features":[1,183]},{"name":"GetModuleHandleExW","features":[1,183]},{"name":"GetModuleHandleW","features":[1,183]},{"name":"GetProcAddress","features":[1,183]},{"name":"LOAD_IGNORE_CODE_AUTHZ_LEVEL","features":[183]},{"name":"LOAD_LIBRARY_AS_DATAFILE","features":[183]},{"name":"LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE","features":[183]},{"name":"LOAD_LIBRARY_AS_IMAGE_RESOURCE","features":[183]},{"name":"LOAD_LIBRARY_FLAGS","features":[183]},{"name":"LOAD_LIBRARY_OS_INTEGRITY_CONTINUITY","features":[183]},{"name":"LOAD_LIBRARY_REQUIRE_SIGNED_TARGET","features":[183]},{"name":"LOAD_LIBRARY_SAFE_CURRENT_DIRS","features":[183]},{"name":"LOAD_LIBRARY_SEARCH_APPLICATION_DIR","features":[183]},{"name":"LOAD_LIBRARY_SEARCH_DEFAULT_DIRS","features":[183]},{"name":"LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR","features":[183]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32","features":[183]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32_NO_FORWARDER","features":[183]},{"name":"LOAD_LIBRARY_SEARCH_USER_DIRS","features":[183]},{"name":"LOAD_WITH_ALTERED_SEARCH_PATH","features":[183]},{"name":"LoadLibraryA","features":[1,183]},{"name":"LoadLibraryExA","features":[1,183]},{"name":"LoadLibraryExW","features":[1,183]},{"name":"LoadLibraryW","features":[1,183]},{"name":"LoadModule","features":[183]},{"name":"LoadPackagedLibrary","features":[1,183]},{"name":"LoadResource","features":[1,183]},{"name":"LockResource","features":[1,183]},{"name":"PGET_MODULE_HANDLE_EXA","features":[1,183]},{"name":"PGET_MODULE_HANDLE_EXW","features":[1,183]},{"name":"REDIRECTION_DESCRIPTOR","features":[183]},{"name":"REDIRECTION_FUNCTION_DESCRIPTOR","features":[183]},{"name":"RESOURCE_ENUM_LN","features":[183]},{"name":"RESOURCE_ENUM_MODULE_EXACT","features":[183]},{"name":"RESOURCE_ENUM_MUI","features":[183]},{"name":"RESOURCE_ENUM_MUI_SYSTEM","features":[183]},{"name":"RESOURCE_ENUM_VALIDATE","features":[183]},{"name":"RemoveDllDirectory","features":[1,183]},{"name":"SUPPORT_LANG_NUMBER","features":[183]},{"name":"SetDefaultDllDirectories","features":[1,183]},{"name":"SetDllDirectoryA","features":[1,183]},{"name":"SetDllDirectoryW","features":[1,183]},{"name":"SizeofResource","features":[1,183]},{"name":"UpdateResourceA","features":[1,183]},{"name":"UpdateResourceW","features":[1,183]}],"578":[{"name":"CreateMailslotA","features":[1,4,184]},{"name":"CreateMailslotW","features":[1,4,184]},{"name":"GetMailslotInfo","features":[1,184]},{"name":"SetMailslotInfo","features":[1,184]}],"579":[{"name":"LPMAPIADDRESS","features":[185]},{"name":"LPMAPIDELETEMAIL","features":[185]},{"name":"LPMAPIDETAILS","features":[185]},{"name":"LPMAPIFINDNEXT","features":[185]},{"name":"LPMAPIFREEBUFFER","features":[185]},{"name":"LPMAPILOGOFF","features":[185]},{"name":"LPMAPILOGON","features":[185]},{"name":"LPMAPIREADMAIL","features":[185]},{"name":"LPMAPIRESOLVENAME","features":[185]},{"name":"LPMAPISAVEMAIL","features":[185]},{"name":"LPMAPISENDDOCUMENTS","features":[185]},{"name":"LPMAPISENDMAIL","features":[185]},{"name":"LPMAPISENDMAILW","features":[185]},{"name":"MAPIFreeBuffer","features":[185]},{"name":"MAPI_AB_NOMODIFY","features":[185]},{"name":"MAPI_BCC","features":[185]},{"name":"MAPI_BODY_AS_FILE","features":[185]},{"name":"MAPI_CC","features":[185]},{"name":"MAPI_DIALOG","features":[185]},{"name":"MAPI_ENVELOPE_ONLY","features":[185]},{"name":"MAPI_EXTENDED","features":[185]},{"name":"MAPI_E_ACCESS_DENIED","features":[185]},{"name":"MAPI_E_AMBIGUOUS_RECIPIENT","features":[185]},{"name":"MAPI_E_AMBIG_RECIP","features":[185]},{"name":"MAPI_E_ATTACHMENT_NOT_FOUND","features":[185]},{"name":"MAPI_E_ATTACHMENT_OPEN_FAILURE","features":[185]},{"name":"MAPI_E_ATTACHMENT_TOO_LARGE","features":[185]},{"name":"MAPI_E_ATTACHMENT_WRITE_FAILURE","features":[185]},{"name":"MAPI_E_BAD_RECIPTYPE","features":[185]},{"name":"MAPI_E_DISK_FULL","features":[185]},{"name":"MAPI_E_FAILURE","features":[185]},{"name":"MAPI_E_INSUFFICIENT_MEMORY","features":[185]},{"name":"MAPI_E_INVALID_EDITFIELDS","features":[185]},{"name":"MAPI_E_INVALID_MESSAGE","features":[185]},{"name":"MAPI_E_INVALID_RECIPS","features":[185]},{"name":"MAPI_E_INVALID_SESSION","features":[185]},{"name":"MAPI_E_LOGIN_FAILURE","features":[185]},{"name":"MAPI_E_LOGON_FAILURE","features":[185]},{"name":"MAPI_E_MESSAGE_IN_USE","features":[185]},{"name":"MAPI_E_NETWORK_FAILURE","features":[185]},{"name":"MAPI_E_NOT_SUPPORTED","features":[185]},{"name":"MAPI_E_NO_MESSAGES","features":[185]},{"name":"MAPI_E_TEXT_TOO_LARGE","features":[185]},{"name":"MAPI_E_TOO_MANY_FILES","features":[185]},{"name":"MAPI_E_TOO_MANY_RECIPIENTS","features":[185]},{"name":"MAPI_E_TOO_MANY_SESSIONS","features":[185]},{"name":"MAPI_E_TYPE_NOT_SUPPORTED","features":[185]},{"name":"MAPI_E_UNICODE_NOT_SUPPORTED","features":[185]},{"name":"MAPI_E_UNKNOWN_RECIPIENT","features":[185]},{"name":"MAPI_E_USER_ABORT","features":[185]},{"name":"MAPI_FORCE_DOWNLOAD","features":[185]},{"name":"MAPI_FORCE_UNICODE","features":[185]},{"name":"MAPI_GUARANTEE_FIFO","features":[185]},{"name":"MAPI_LOGON_UI","features":[185]},{"name":"MAPI_LONG_MSGID","features":[185]},{"name":"MAPI_NEW_SESSION","features":[185]},{"name":"MAPI_OLE","features":[185]},{"name":"MAPI_OLE_STATIC","features":[185]},{"name":"MAPI_ORIG","features":[185]},{"name":"MAPI_PASSWORD_UI","features":[185]},{"name":"MAPI_PEEK","features":[185]},{"name":"MAPI_RECEIPT_REQUESTED","features":[185]},{"name":"MAPI_SENT","features":[185]},{"name":"MAPI_SUPPRESS_ATTACH","features":[185]},{"name":"MAPI_TO","features":[185]},{"name":"MAPI_UNREAD","features":[185]},{"name":"MAPI_UNREAD_ONLY","features":[185]},{"name":"MAPI_USER_ABORT","features":[185]},{"name":"MapiFileDesc","features":[185]},{"name":"MapiFileDescW","features":[185]},{"name":"MapiFileTagExt","features":[185]},{"name":"MapiMessage","features":[185]},{"name":"MapiMessageW","features":[185]},{"name":"MapiRecipDesc","features":[185]},{"name":"MapiRecipDescW","features":[185]},{"name":"SUCCESS_SUCCESS","features":[185]}],"580":[{"name":"AddSecureMemoryCacheCallback","features":[1,20]},{"name":"AllocateUserPhysicalPages","features":[1,20]},{"name":"AllocateUserPhysicalPages2","features":[1,20]},{"name":"AllocateUserPhysicalPagesNuma","features":[1,20]},{"name":"AtlThunkData_t","features":[20]},{"name":"CFG_CALL_TARGET_INFO","features":[20]},{"name":"CreateFileMapping2","features":[1,4,20]},{"name":"CreateFileMappingA","features":[1,4,20]},{"name":"CreateFileMappingFromApp","features":[1,4,20]},{"name":"CreateFileMappingNumaA","features":[1,4,20]},{"name":"CreateFileMappingNumaW","features":[1,4,20]},{"name":"CreateFileMappingW","features":[1,4,20]},{"name":"CreateMemoryResourceNotification","features":[1,20]},{"name":"DiscardVirtualMemory","features":[20]},{"name":"FILE_CACHE_MAX_HARD_DISABLE","features":[20]},{"name":"FILE_CACHE_MAX_HARD_ENABLE","features":[20]},{"name":"FILE_CACHE_MIN_HARD_DISABLE","features":[20]},{"name":"FILE_CACHE_MIN_HARD_ENABLE","features":[20]},{"name":"FILE_MAP","features":[20]},{"name":"FILE_MAP_ALL_ACCESS","features":[20]},{"name":"FILE_MAP_COPY","features":[20]},{"name":"FILE_MAP_EXECUTE","features":[20]},{"name":"FILE_MAP_LARGE_PAGES","features":[20]},{"name":"FILE_MAP_READ","features":[20]},{"name":"FILE_MAP_RESERVE","features":[20]},{"name":"FILE_MAP_TARGETS_INVALID","features":[20]},{"name":"FILE_MAP_WRITE","features":[20]},{"name":"FlushViewOfFile","features":[1,20]},{"name":"FreeUserPhysicalPages","features":[1,20]},{"name":"GHND","features":[20]},{"name":"GLOBAL_ALLOC_FLAGS","features":[20]},{"name":"GMEM_FIXED","features":[20]},{"name":"GMEM_MOVEABLE","features":[20]},{"name":"GMEM_ZEROINIT","features":[20]},{"name":"GPTR","features":[20]},{"name":"GetLargePageMinimum","features":[20]},{"name":"GetMemoryErrorHandlingCapabilities","features":[1,20]},{"name":"GetProcessHeap","features":[1,20]},{"name":"GetProcessHeaps","features":[1,20]},{"name":"GetProcessWorkingSetSizeEx","features":[1,20]},{"name":"GetSystemFileCacheSize","features":[1,20]},{"name":"GetWriteWatch","features":[20]},{"name":"GlobalAlloc","features":[1,20]},{"name":"GlobalFlags","features":[1,20]},{"name":"GlobalHandle","features":[1,20]},{"name":"GlobalLock","features":[1,20]},{"name":"GlobalReAlloc","features":[1,20]},{"name":"GlobalSize","features":[1,20]},{"name":"GlobalUnlock","features":[1,20]},{"name":"HEAP_CREATE_ALIGN_16","features":[20]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[20]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[20]},{"name":"HEAP_CREATE_HARDENED","features":[20]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[20]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[20]},{"name":"HEAP_FLAGS","features":[20]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[20]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[20]},{"name":"HEAP_GROWABLE","features":[20]},{"name":"HEAP_INFORMATION_CLASS","features":[20]},{"name":"HEAP_MAXIMUM_TAG","features":[20]},{"name":"HEAP_NONE","features":[20]},{"name":"HEAP_NO_SERIALIZE","features":[20]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[20]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[20]},{"name":"HEAP_SUMMARY","features":[20]},{"name":"HEAP_TAG_SHIFT","features":[20]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[20]},{"name":"HEAP_ZERO_MEMORY","features":[20]},{"name":"HeapAlloc","features":[1,20]},{"name":"HeapCompact","features":[1,20]},{"name":"HeapCompatibilityInformation","features":[20]},{"name":"HeapCreate","features":[1,20]},{"name":"HeapDestroy","features":[1,20]},{"name":"HeapEnableTerminationOnCorruption","features":[20]},{"name":"HeapFree","features":[1,20]},{"name":"HeapLock","features":[1,20]},{"name":"HeapOptimizeResources","features":[20]},{"name":"HeapQueryInformation","features":[1,20]},{"name":"HeapReAlloc","features":[1,20]},{"name":"HeapSetInformation","features":[1,20]},{"name":"HeapSize","features":[1,20]},{"name":"HeapSummary","features":[1,20]},{"name":"HeapTag","features":[20]},{"name":"HeapUnlock","features":[1,20]},{"name":"HeapValidate","features":[1,20]},{"name":"HeapWalk","features":[1,20]},{"name":"HighMemoryResourceNotification","features":[20]},{"name":"IsBadCodePtr","features":[1,20]},{"name":"IsBadReadPtr","features":[1,20]},{"name":"IsBadStringPtrA","features":[1,20]},{"name":"IsBadStringPtrW","features":[1,20]},{"name":"IsBadWritePtr","features":[1,20]},{"name":"LHND","features":[20]},{"name":"LMEM_FIXED","features":[20]},{"name":"LMEM_MOVEABLE","features":[20]},{"name":"LMEM_ZEROINIT","features":[20]},{"name":"LOCAL_ALLOC_FLAGS","features":[20]},{"name":"LPTR","features":[20]},{"name":"LocalAlloc","features":[1,20]},{"name":"LocalFlags","features":[1,20]},{"name":"LocalHandle","features":[1,20]},{"name":"LocalLock","features":[1,20]},{"name":"LocalReAlloc","features":[1,20]},{"name":"LocalSize","features":[1,20]},{"name":"LocalUnlock","features":[1,20]},{"name":"LowMemoryResourceNotification","features":[20]},{"name":"MEHC_PATROL_SCRUBBER_PRESENT","features":[20]},{"name":"MEMORY_BASIC_INFORMATION","features":[20]},{"name":"MEMORY_BASIC_INFORMATION","features":[20]},{"name":"MEMORY_BASIC_INFORMATION32","features":[20]},{"name":"MEMORY_BASIC_INFORMATION64","features":[20]},{"name":"MEMORY_MAPPED_VIEW_ADDRESS","features":[20]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_ATTRIBUTE","features":[20]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_INFORMATION","features":[20]},{"name":"MEMORY_RESOURCE_NOTIFICATION_TYPE","features":[20]},{"name":"MEM_ADDRESS_REQUIREMENTS","features":[20]},{"name":"MEM_COMMIT","features":[20]},{"name":"MEM_DECOMMIT","features":[20]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[20]},{"name":"MEM_EXTENDED_PARAMETER","features":[1,20]},{"name":"MEM_EXTENDED_PARAMETER_TYPE","features":[20]},{"name":"MEM_FREE","features":[20]},{"name":"MEM_IMAGE","features":[20]},{"name":"MEM_LARGE_PAGES","features":[20]},{"name":"MEM_MAPPED","features":[20]},{"name":"MEM_PRESERVE_PLACEHOLDER","features":[20]},{"name":"MEM_PRIVATE","features":[20]},{"name":"MEM_RELEASE","features":[20]},{"name":"MEM_REPLACE_PLACEHOLDER","features":[20]},{"name":"MEM_RESERVE","features":[20]},{"name":"MEM_RESERVE_PLACEHOLDER","features":[20]},{"name":"MEM_RESET","features":[20]},{"name":"MEM_RESET_UNDO","features":[20]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[20]},{"name":"MEM_UNMAP_NONE","features":[20]},{"name":"MEM_UNMAP_WITH_TRANSIENT_BOOST","features":[20]},{"name":"MapUserPhysicalPages","features":[1,20]},{"name":"MapUserPhysicalPagesScatter","features":[1,20]},{"name":"MapViewOfFile","features":[1,20]},{"name":"MapViewOfFile3","features":[1,20]},{"name":"MapViewOfFile3FromApp","features":[1,20]},{"name":"MapViewOfFileEx","features":[1,20]},{"name":"MapViewOfFileExNuma","features":[1,20]},{"name":"MapViewOfFileFromApp","features":[1,20]},{"name":"MapViewOfFileNuma2","features":[1,20]},{"name":"MemDedicatedAttributeMax","features":[20]},{"name":"MemDedicatedAttributeReadBandwidth","features":[20]},{"name":"MemDedicatedAttributeReadLatency","features":[20]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[20]},{"name":"MemDedicatedAttributeWriteLatency","features":[20]},{"name":"MemExtendedParameterAddressRequirements","features":[20]},{"name":"MemExtendedParameterAttributeFlags","features":[20]},{"name":"MemExtendedParameterImageMachine","features":[20]},{"name":"MemExtendedParameterInvalidType","features":[20]},{"name":"MemExtendedParameterMax","features":[20]},{"name":"MemExtendedParameterNumaNode","features":[20]},{"name":"MemExtendedParameterPartitionHandle","features":[20]},{"name":"MemExtendedParameterUserPhysicalHandle","features":[20]},{"name":"MemSectionExtendedParameterInvalidType","features":[20]},{"name":"MemSectionExtendedParameterMax","features":[20]},{"name":"MemSectionExtendedParameterNumaNode","features":[20]},{"name":"MemSectionExtendedParameterSigningLevel","features":[20]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[20]},{"name":"MemoryPartitionDedicatedMemoryInfo","features":[20]},{"name":"MemoryPartitionInfo","features":[20]},{"name":"MemoryRegionInfo","features":[20]},{"name":"NONZEROLHND","features":[20]},{"name":"NONZEROLPTR","features":[20]},{"name":"OFFER_PRIORITY","features":[20]},{"name":"OfferVirtualMemory","features":[20]},{"name":"OpenDedicatedMemoryPartition","features":[1,20]},{"name":"OpenFileMappingA","features":[1,20]},{"name":"OpenFileMappingFromApp","features":[1,20]},{"name":"OpenFileMappingW","features":[1,20]},{"name":"PAGE_ENCLAVE_DECOMMIT","features":[20]},{"name":"PAGE_ENCLAVE_MASK","features":[20]},{"name":"PAGE_ENCLAVE_SS_FIRST","features":[20]},{"name":"PAGE_ENCLAVE_SS_REST","features":[20]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[20]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[20]},{"name":"PAGE_EXECUTE","features":[20]},{"name":"PAGE_EXECUTE_READ","features":[20]},{"name":"PAGE_EXECUTE_READWRITE","features":[20]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[20]},{"name":"PAGE_GRAPHICS_COHERENT","features":[20]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[20]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[20]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[20]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[20]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[20]},{"name":"PAGE_GRAPHICS_READONLY","features":[20]},{"name":"PAGE_GRAPHICS_READWRITE","features":[20]},{"name":"PAGE_GUARD","features":[20]},{"name":"PAGE_NOACCESS","features":[20]},{"name":"PAGE_NOCACHE","features":[20]},{"name":"PAGE_PROTECTION_FLAGS","features":[20]},{"name":"PAGE_READONLY","features":[20]},{"name":"PAGE_READWRITE","features":[20]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[20]},{"name":"PAGE_TARGETS_INVALID","features":[20]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[20]},{"name":"PAGE_TYPE","features":[20]},{"name":"PAGE_WRITECOMBINE","features":[20]},{"name":"PAGE_WRITECOPY","features":[20]},{"name":"PBAD_MEMORY_CALLBACK_ROUTINE","features":[20]},{"name":"PROCESS_HEAP_ENTRY","features":[1,20]},{"name":"PSECURE_MEMORY_CACHE_CALLBACK","features":[1,20]},{"name":"PrefetchVirtualMemory","features":[1,20]},{"name":"QUOTA_LIMITS_HARDWS_MAX_DISABLE","features":[20]},{"name":"QUOTA_LIMITS_HARDWS_MAX_ENABLE","features":[20]},{"name":"QUOTA_LIMITS_HARDWS_MIN_DISABLE","features":[20]},{"name":"QUOTA_LIMITS_HARDWS_MIN_ENABLE","features":[20]},{"name":"QueryMemoryResourceNotification","features":[1,20]},{"name":"QueryPartitionInformation","features":[1,20]},{"name":"QueryVirtualMemoryInformation","features":[1,20]},{"name":"ReclaimVirtualMemory","features":[20]},{"name":"RegisterBadMemoryNotification","features":[20]},{"name":"RemoveSecureMemoryCacheCallback","features":[1,20]},{"name":"ResetWriteWatch","features":[20]},{"name":"RtlCompareMemory","features":[20]},{"name":"RtlCrc32","features":[20]},{"name":"RtlCrc64","features":[20]},{"name":"RtlIsZeroMemory","features":[1,20]},{"name":"SECTION_ALL_ACCESS","features":[20]},{"name":"SECTION_EXTEND_SIZE","features":[20]},{"name":"SECTION_FLAGS","features":[20]},{"name":"SECTION_MAP_EXECUTE","features":[20]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[20]},{"name":"SECTION_MAP_READ","features":[20]},{"name":"SECTION_MAP_WRITE","features":[20]},{"name":"SECTION_QUERY","features":[20]},{"name":"SEC_64K_PAGES","features":[20]},{"name":"SEC_COMMIT","features":[20]},{"name":"SEC_FILE","features":[20]},{"name":"SEC_IMAGE","features":[20]},{"name":"SEC_IMAGE_NO_EXECUTE","features":[20]},{"name":"SEC_LARGE_PAGES","features":[20]},{"name":"SEC_NOCACHE","features":[20]},{"name":"SEC_PARTITION_OWNER_HANDLE","features":[20]},{"name":"SEC_PROTECTED_IMAGE","features":[20]},{"name":"SEC_RESERVE","features":[20]},{"name":"SEC_WRITECOMBINE","features":[20]},{"name":"SETPROCESSWORKINGSETSIZEEX_FLAGS","features":[20]},{"name":"SetProcessValidCallTargets","features":[1,20]},{"name":"SetProcessValidCallTargetsForMappedView","features":[1,20]},{"name":"SetProcessWorkingSetSizeEx","features":[1,20]},{"name":"SetSystemFileCacheSize","features":[1,20]},{"name":"UNMAP_VIEW_OF_FILE_FLAGS","features":[20]},{"name":"UnmapViewOfFile","features":[1,20]},{"name":"UnmapViewOfFile2","features":[1,20]},{"name":"UnmapViewOfFileEx","features":[1,20]},{"name":"UnregisterBadMemoryNotification","features":[1,20]},{"name":"VIRTUAL_ALLOCATION_TYPE","features":[20]},{"name":"VIRTUAL_FREE_TYPE","features":[20]},{"name":"VirtualAlloc","features":[20]},{"name":"VirtualAlloc2","features":[1,20]},{"name":"VirtualAlloc2FromApp","features":[1,20]},{"name":"VirtualAllocEx","features":[1,20]},{"name":"VirtualAllocExNuma","features":[1,20]},{"name":"VirtualAllocFromApp","features":[20]},{"name":"VirtualFree","features":[1,20]},{"name":"VirtualFreeEx","features":[1,20]},{"name":"VirtualLock","features":[1,20]},{"name":"VirtualProtect","features":[1,20]},{"name":"VirtualProtectEx","features":[1,20]},{"name":"VirtualProtectFromApp","features":[1,20]},{"name":"VirtualQuery","features":[20]},{"name":"VirtualQueryEx","features":[1,20]},{"name":"VirtualUnlock","features":[1,20]},{"name":"VirtualUnlockEx","features":[1,20]},{"name":"VmOfferPriorityBelowNormal","features":[20]},{"name":"VmOfferPriorityLow","features":[20]},{"name":"VmOfferPriorityNormal","features":[20]},{"name":"VmOfferPriorityVeryLow","features":[20]},{"name":"WIN32_MEMORY_INFORMATION_CLASS","features":[20]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION","features":[20]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION_CLASS","features":[20]},{"name":"WIN32_MEMORY_RANGE_ENTRY","features":[20]},{"name":"WIN32_MEMORY_REGION_INFORMATION","features":[20]}],"581":[{"name":"NV_MEMORY_RANGE","features":[186]},{"name":"RtlDrainNonVolatileFlush","features":[186]},{"name":"RtlFillNonVolatileMemory","features":[186]},{"name":"RtlFlushNonVolatileMemory","features":[186]},{"name":"RtlFlushNonVolatileMemoryRanges","features":[186]},{"name":"RtlFreeNonVolatileToken","features":[186]},{"name":"RtlGetNonVolatileToken","features":[186]},{"name":"RtlWriteNonVolatileMemory","features":[186]}],"582":[{"name":"DEFAULT_M_ACKNOWLEDGE","features":[187]},{"name":"DEFAULT_M_APPSPECIFIC","features":[187]},{"name":"DEFAULT_M_AUTH_LEVEL","features":[187]},{"name":"DEFAULT_M_DELIVERY","features":[187]},{"name":"DEFAULT_M_JOURNAL","features":[187]},{"name":"DEFAULT_M_LOOKUPID","features":[187]},{"name":"DEFAULT_M_PRIORITY","features":[187]},{"name":"DEFAULT_M_PRIV_LEVEL","features":[187]},{"name":"DEFAULT_M_SENDERID_TYPE","features":[187]},{"name":"DEFAULT_Q_AUTHENTICATE","features":[187]},{"name":"DEFAULT_Q_BASEPRIORITY","features":[187]},{"name":"DEFAULT_Q_JOURNAL","features":[187]},{"name":"DEFAULT_Q_JOURNAL_QUOTA","features":[187]},{"name":"DEFAULT_Q_PRIV_LEVEL","features":[187]},{"name":"DEFAULT_Q_QUOTA","features":[187]},{"name":"DEFAULT_Q_TRANSACTION","features":[187]},{"name":"FOREIGN_STATUS","features":[187]},{"name":"IMSMQApplication","features":[187]},{"name":"IMSMQApplication2","features":[187]},{"name":"IMSMQApplication3","features":[187]},{"name":"IMSMQCollection","features":[187]},{"name":"IMSMQCoordinatedTransactionDispenser","features":[187]},{"name":"IMSMQCoordinatedTransactionDispenser2","features":[187]},{"name":"IMSMQCoordinatedTransactionDispenser3","features":[187]},{"name":"IMSMQDestination","features":[187]},{"name":"IMSMQEvent","features":[187]},{"name":"IMSMQEvent2","features":[187]},{"name":"IMSMQEvent3","features":[187]},{"name":"IMSMQManagement","features":[187]},{"name":"IMSMQMessage","features":[187]},{"name":"IMSMQMessage2","features":[187]},{"name":"IMSMQMessage3","features":[187]},{"name":"IMSMQMessage4","features":[187]},{"name":"IMSMQOutgoingQueueManagement","features":[187]},{"name":"IMSMQPrivateDestination","features":[187]},{"name":"IMSMQPrivateEvent","features":[187]},{"name":"IMSMQQuery","features":[187]},{"name":"IMSMQQuery2","features":[187]},{"name":"IMSMQQuery3","features":[187]},{"name":"IMSMQQuery4","features":[187]},{"name":"IMSMQQueue","features":[187]},{"name":"IMSMQQueue2","features":[187]},{"name":"IMSMQQueue3","features":[187]},{"name":"IMSMQQueue4","features":[187]},{"name":"IMSMQQueueInfo","features":[187]},{"name":"IMSMQQueueInfo2","features":[187]},{"name":"IMSMQQueueInfo3","features":[187]},{"name":"IMSMQQueueInfo4","features":[187]},{"name":"IMSMQQueueInfos","features":[187]},{"name":"IMSMQQueueInfos2","features":[187]},{"name":"IMSMQQueueInfos3","features":[187]},{"name":"IMSMQQueueInfos4","features":[187]},{"name":"IMSMQQueueManagement","features":[187]},{"name":"IMSMQTransaction","features":[187]},{"name":"IMSMQTransaction2","features":[187]},{"name":"IMSMQTransaction3","features":[187]},{"name":"IMSMQTransactionDispenser","features":[187]},{"name":"IMSMQTransactionDispenser2","features":[187]},{"name":"IMSMQTransactionDispenser3","features":[187]},{"name":"LONG_LIVED","features":[187]},{"name":"MACHINE_ACTION_CONNECT","features":[187]},{"name":"MACHINE_ACTION_DISCONNECT","features":[187]},{"name":"MACHINE_ACTION_TIDY","features":[187]},{"name":"MGMT_QUEUE_CORRECT_TYPE","features":[187]},{"name":"MGMT_QUEUE_FOREIGN_TYPE","features":[187]},{"name":"MGMT_QUEUE_INCORRECT_TYPE","features":[187]},{"name":"MGMT_QUEUE_LOCAL_LOCATION","features":[187]},{"name":"MGMT_QUEUE_NOT_FOREIGN_TYPE","features":[187]},{"name":"MGMT_QUEUE_NOT_TRANSACTIONAL_TYPE","features":[187]},{"name":"MGMT_QUEUE_REMOTE_LOCATION","features":[187]},{"name":"MGMT_QUEUE_STATE_CONNECTED","features":[187]},{"name":"MGMT_QUEUE_STATE_DISCONNECTED","features":[187]},{"name":"MGMT_QUEUE_STATE_DISCONNECTING","features":[187]},{"name":"MGMT_QUEUE_STATE_LOCAL","features":[187]},{"name":"MGMT_QUEUE_STATE_LOCKED","features":[187]},{"name":"MGMT_QUEUE_STATE_NEED_VALIDATE","features":[187]},{"name":"MGMT_QUEUE_STATE_NONACTIVE","features":[187]},{"name":"MGMT_QUEUE_STATE_ONHOLD","features":[187]},{"name":"MGMT_QUEUE_STATE_WAITING","features":[187]},{"name":"MGMT_QUEUE_TRANSACTIONAL_TYPE","features":[187]},{"name":"MGMT_QUEUE_TYPE_CONNECTOR","features":[187]},{"name":"MGMT_QUEUE_TYPE_MACHINE","features":[187]},{"name":"MGMT_QUEUE_TYPE_MULTICAST","features":[187]},{"name":"MGMT_QUEUE_TYPE_PRIVATE","features":[187]},{"name":"MGMT_QUEUE_TYPE_PUBLIC","features":[187]},{"name":"MGMT_QUEUE_UNKNOWN_TYPE","features":[187]},{"name":"MO_MACHINE_TOKEN","features":[187]},{"name":"MO_QUEUE_TOKEN","features":[187]},{"name":"MQACCESS","features":[187]},{"name":"MQADsPathToFormatName","features":[187]},{"name":"MQAUTHENTICATE","features":[187]},{"name":"MQBeginTransaction","features":[187]},{"name":"MQCALG","features":[187]},{"name":"MQCERT_REGISTER","features":[187]},{"name":"MQCERT_REGISTER_ALWAYS","features":[187]},{"name":"MQCERT_REGISTER_IF_NOT_EXIST","features":[187]},{"name":"MQCOLUMNSET","features":[187]},{"name":"MQCONN_BIND_SOCKET_FAILURE","features":[187]},{"name":"MQCONN_CONNECT_SOCKET_FAILURE","features":[187]},{"name":"MQCONN_CREATE_SOCKET_FAILURE","features":[187]},{"name":"MQCONN_ESTABLISH_PACKET_RECEIVED","features":[187]},{"name":"MQCONN_INVALID_SERVER_CERT","features":[187]},{"name":"MQCONN_LIMIT_REACHED","features":[187]},{"name":"MQCONN_NAME_RESOLUTION_FAILURE","features":[187]},{"name":"MQCONN_NOFAILURE","features":[187]},{"name":"MQCONN_NOT_READY","features":[187]},{"name":"MQCONN_OUT_OF_MEMORY","features":[187]},{"name":"MQCONN_PING_FAILURE","features":[187]},{"name":"MQCONN_READY","features":[187]},{"name":"MQCONN_REFUSED_BY_OTHER_SIDE","features":[187]},{"name":"MQCONN_ROUTING_FAILURE","features":[187]},{"name":"MQCONN_SEND_FAILURE","features":[187]},{"name":"MQCONN_TCP_NOT_ENABLED","features":[187]},{"name":"MQCONN_UNKNOWN_FAILURE","features":[187]},{"name":"MQCloseCursor","features":[1,187]},{"name":"MQCloseQueue","features":[187]},{"name":"MQConnectionState","features":[187]},{"name":"MQCreateCursor","features":[1,187]},{"name":"MQCreateQueue","features":[1,4,63,187,42]},{"name":"MQDEFAULT","features":[187]},{"name":"MQDeleteQueue","features":[187]},{"name":"MQERROR","features":[187]},{"name":"MQFreeMemory","features":[187]},{"name":"MQFreeSecurityContext","features":[1,187]},{"name":"MQGetMachineProperties","features":[1,63,187,42]},{"name":"MQGetOverlappedResult","features":[1,6,187]},{"name":"MQGetPrivateComputerInformation","features":[1,63,187,42]},{"name":"MQGetQueueProperties","features":[1,63,187,42]},{"name":"MQGetQueueSecurity","features":[4,187]},{"name":"MQGetSecurityContext","features":[1,187]},{"name":"MQGetSecurityContextEx","features":[1,187]},{"name":"MQHandleToFormatName","features":[187]},{"name":"MQInstanceToFormatName","features":[187]},{"name":"MQJOURNAL","features":[187]},{"name":"MQLocateBegin","features":[1,63,187,42]},{"name":"MQLocateEnd","features":[1,187]},{"name":"MQLocateNext","features":[1,63,187,42]},{"name":"MQMAX","features":[187]},{"name":"MQMGMTPROPS","features":[1,63,187,42]},{"name":"MQMSGACKNOWLEDGEMENT","features":[187]},{"name":"MQMSGAUTHENTICATION","features":[187]},{"name":"MQMSGAUTHLEVEL","features":[187]},{"name":"MQMSGCLASS","features":[187]},{"name":"MQMSGCURSOR","features":[187]},{"name":"MQMSGDELIVERY","features":[187]},{"name":"MQMSGIDSIZE","features":[187]},{"name":"MQMSGJOURNAL","features":[187]},{"name":"MQMSGMAX","features":[187]},{"name":"MQMSGPRIVLEVEL","features":[187]},{"name":"MQMSGPROPS","features":[1,63,187,42]},{"name":"MQMSGSENDERIDTYPE","features":[187]},{"name":"MQMSGTRACE","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_REACH_QUEUE","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_RECEIVE","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_REACH_QUEUE","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_RECEIVE","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_RECEIVE","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_NONE","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_ARRIVAL","features":[187]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_RECEIVE","features":[187]},{"name":"MQMSG_AUTHENTICATED_QM_MESSAGE","features":[187]},{"name":"MQMSG_AUTHENTICATED_SIG10","features":[187]},{"name":"MQMSG_AUTHENTICATED_SIG20","features":[187]},{"name":"MQMSG_AUTHENTICATED_SIG30","features":[187]},{"name":"MQMSG_AUTHENTICATED_SIGXML","features":[187]},{"name":"MQMSG_AUTHENTICATION_NOT_REQUESTED","features":[187]},{"name":"MQMSG_AUTHENTICATION_REQUESTED","features":[187]},{"name":"MQMSG_AUTHENTICATION_REQUESTED_EX","features":[187]},{"name":"MQMSG_AUTH_LEVEL_ALWAYS","features":[187]},{"name":"MQMSG_AUTH_LEVEL_MSMQ10","features":[187]},{"name":"MQMSG_AUTH_LEVEL_MSMQ20","features":[187]},{"name":"MQMSG_AUTH_LEVEL_NONE","features":[187]},{"name":"MQMSG_AUTH_LEVEL_SIG10","features":[187]},{"name":"MQMSG_AUTH_LEVEL_SIG20","features":[187]},{"name":"MQMSG_AUTH_LEVEL_SIG30","features":[187]},{"name":"MQMSG_CALG_DES","features":[187]},{"name":"MQMSG_CALG_DSS_SIGN","features":[187]},{"name":"MQMSG_CALG_MAC","features":[187]},{"name":"MQMSG_CALG_MD2","features":[187]},{"name":"MQMSG_CALG_MD4","features":[187]},{"name":"MQMSG_CALG_MD5","features":[187]},{"name":"MQMSG_CALG_RC2","features":[187]},{"name":"MQMSG_CALG_RC4","features":[187]},{"name":"MQMSG_CALG_RSA_KEYX","features":[187]},{"name":"MQMSG_CALG_RSA_SIGN","features":[187]},{"name":"MQMSG_CALG_SEAL","features":[187]},{"name":"MQMSG_CALG_SHA","features":[187]},{"name":"MQMSG_CALG_SHA1","features":[187]},{"name":"MQMSG_CLASS_ACK_REACH_QUEUE","features":[187]},{"name":"MQMSG_CLASS_ACK_RECEIVE","features":[187]},{"name":"MQMSG_CLASS_NACK_ACCESS_DENIED","features":[187]},{"name":"MQMSG_CLASS_NACK_BAD_DST_Q","features":[187]},{"name":"MQMSG_CLASS_NACK_BAD_ENCRYPTION","features":[187]},{"name":"MQMSG_CLASS_NACK_BAD_SIGNATURE","features":[187]},{"name":"MQMSG_CLASS_NACK_COULD_NOT_ENCRYPT","features":[187]},{"name":"MQMSG_CLASS_NACK_HOP_COUNT_EXCEEDED","features":[187]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_MSG","features":[187]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_Q","features":[187]},{"name":"MQMSG_CLASS_NACK_PURGED","features":[187]},{"name":"MQMSG_CLASS_NACK_Q_DELETED","features":[187]},{"name":"MQMSG_CLASS_NACK_Q_EXCEED_QUOTA","features":[187]},{"name":"MQMSG_CLASS_NACK_Q_PURGED","features":[187]},{"name":"MQMSG_CLASS_NACK_REACH_QUEUE_TIMEOUT","features":[187]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT","features":[187]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT_AT_SENDER","features":[187]},{"name":"MQMSG_CLASS_NACK_SOURCE_COMPUTER_GUID_CHANGED","features":[187]},{"name":"MQMSG_CLASS_NACK_UNSUPPORTED_CRYPTO_PROVIDER","features":[187]},{"name":"MQMSG_CLASS_NORMAL","features":[187]},{"name":"MQMSG_CLASS_REPORT","features":[187]},{"name":"MQMSG_CORRELATIONID_SIZE","features":[187]},{"name":"MQMSG_CURRENT","features":[187]},{"name":"MQMSG_DEADLETTER","features":[187]},{"name":"MQMSG_DELIVERY_EXPRESS","features":[187]},{"name":"MQMSG_DELIVERY_RECOVERABLE","features":[187]},{"name":"MQMSG_FIRST","features":[187]},{"name":"MQMSG_FIRST_IN_XACT","features":[187]},{"name":"MQMSG_JOURNAL","features":[187]},{"name":"MQMSG_JOURNAL_NONE","features":[187]},{"name":"MQMSG_LAST_IN_XACT","features":[187]},{"name":"MQMSG_MSGID_SIZE","features":[187]},{"name":"MQMSG_NEXT","features":[187]},{"name":"MQMSG_NOT_FIRST_IN_XACT","features":[187]},{"name":"MQMSG_NOT_LAST_IN_XACT","features":[187]},{"name":"MQMSG_PRIV_LEVEL_BODY_AES","features":[187]},{"name":"MQMSG_PRIV_LEVEL_BODY_BASE","features":[187]},{"name":"MQMSG_PRIV_LEVEL_BODY_ENHANCED","features":[187]},{"name":"MQMSG_PRIV_LEVEL_NONE","features":[187]},{"name":"MQMSG_SENDERID_TYPE_NONE","features":[187]},{"name":"MQMSG_SENDERID_TYPE_SID","features":[187]},{"name":"MQMSG_SEND_ROUTE_TO_REPORT_QUEUE","features":[187]},{"name":"MQMSG_TRACE_NONE","features":[187]},{"name":"MQMSG_XACTID_SIZE","features":[187]},{"name":"MQMarkMessageRejected","features":[1,187]},{"name":"MQMgmtAction","features":[187]},{"name":"MQMgmtGetInfo","features":[1,63,187,42]},{"name":"MQMoveMessage","features":[187]},{"name":"MQOpenQueue","features":[187]},{"name":"MQPRIORITY","features":[187]},{"name":"MQPRIVATEPROPS","features":[1,63,187,42]},{"name":"MQPRIVLEVEL","features":[187]},{"name":"MQPROPERTYRESTRICTION","features":[1,63,187,42]},{"name":"MQPathNameToFormatName","features":[187]},{"name":"MQPurgeQueue","features":[187]},{"name":"MQQMPROPS","features":[1,63,187,42]},{"name":"MQQUEUEACCESSMASK","features":[187]},{"name":"MQQUEUEPROPS","features":[1,63,187,42]},{"name":"MQRESTRICTION","features":[1,63,187,42]},{"name":"MQReceiveMessage","features":[1,63,6,187,42]},{"name":"MQReceiveMessageByLookupId","features":[1,63,6,187,42]},{"name":"MQRegisterCertificate","features":[187]},{"name":"MQSEC_CHANGE_QUEUE_PERMISSIONS","features":[187]},{"name":"MQSEC_DELETE_JOURNAL_MESSAGE","features":[187]},{"name":"MQSEC_DELETE_MESSAGE","features":[187]},{"name":"MQSEC_DELETE_QUEUE","features":[187]},{"name":"MQSEC_GET_QUEUE_PERMISSIONS","features":[187]},{"name":"MQSEC_GET_QUEUE_PROPERTIES","features":[187]},{"name":"MQSEC_PEEK_MESSAGE","features":[187]},{"name":"MQSEC_QUEUE_GENERIC_ALL","features":[187]},{"name":"MQSEC_QUEUE_GENERIC_EXECUTE","features":[187]},{"name":"MQSEC_QUEUE_GENERIC_READ","features":[187]},{"name":"MQSEC_QUEUE_GENERIC_WRITE","features":[187]},{"name":"MQSEC_RECEIVE_JOURNAL_MESSAGE","features":[187]},{"name":"MQSEC_RECEIVE_MESSAGE","features":[187]},{"name":"MQSEC_SET_QUEUE_PROPERTIES","features":[187]},{"name":"MQSEC_TAKE_QUEUE_OWNERSHIP","features":[187]},{"name":"MQSEC_WRITE_MESSAGE","features":[187]},{"name":"MQSHARE","features":[187]},{"name":"MQSORTKEY","features":[187]},{"name":"MQSORTSET","features":[187]},{"name":"MQSendMessage","features":[1,63,187,42]},{"name":"MQSetQueueProperties","features":[1,63,187,42]},{"name":"MQSetQueueSecurity","features":[4,187]},{"name":"MQTRANSACTION","features":[187]},{"name":"MQTRANSACTIONAL","features":[187]},{"name":"MQWARNING","features":[187]},{"name":"MQ_ACTION_PEEK_CURRENT","features":[187]},{"name":"MQ_ACTION_PEEK_NEXT","features":[187]},{"name":"MQ_ACTION_RECEIVE","features":[187]},{"name":"MQ_ADMIN_ACCESS","features":[187]},{"name":"MQ_AUTHENTICATE","features":[187]},{"name":"MQ_AUTHENTICATE_NONE","features":[187]},{"name":"MQ_CORRUPTED_QUEUE_WAS_DELETED","features":[187]},{"name":"MQ_DENY_NONE","features":[187]},{"name":"MQ_DENY_RECEIVE_SHARE","features":[187]},{"name":"MQ_ERROR","features":[187]},{"name":"MQ_ERROR_ACCESS_DENIED","features":[187]},{"name":"MQ_ERROR_BAD_SECURITY_CONTEXT","features":[187]},{"name":"MQ_ERROR_BAD_XML_FORMAT","features":[187]},{"name":"MQ_ERROR_BUFFER_OVERFLOW","features":[187]},{"name":"MQ_ERROR_CANNOT_CREATE_CERT_STORE","features":[187]},{"name":"MQ_ERROR_CANNOT_CREATE_HASH_EX","features":[187]},{"name":"MQ_ERROR_CANNOT_CREATE_ON_GC","features":[187]},{"name":"MQ_ERROR_CANNOT_CREATE_PSC_OBJECTS","features":[187]},{"name":"MQ_ERROR_CANNOT_DELETE_PSC_OBJECTS","features":[187]},{"name":"MQ_ERROR_CANNOT_GET_DN","features":[187]},{"name":"MQ_ERROR_CANNOT_GRANT_ADD_GUID","features":[187]},{"name":"MQ_ERROR_CANNOT_HASH_DATA_EX","features":[187]},{"name":"MQ_ERROR_CANNOT_IMPERSONATE_CLIENT","features":[187]},{"name":"MQ_ERROR_CANNOT_JOIN_DOMAIN","features":[187]},{"name":"MQ_ERROR_CANNOT_LOAD_MQAD","features":[187]},{"name":"MQ_ERROR_CANNOT_LOAD_MQDSSRV","features":[187]},{"name":"MQ_ERROR_CANNOT_LOAD_MSMQOCM","features":[187]},{"name":"MQ_ERROR_CANNOT_OPEN_CERT_STORE","features":[187]},{"name":"MQ_ERROR_CANNOT_SET_CRYPTO_SEC_DESCR","features":[187]},{"name":"MQ_ERROR_CANNOT_SIGN_DATA_EX","features":[187]},{"name":"MQ_ERROR_CANNOT_UPDATE_PSC_OBJECTS","features":[187]},{"name":"MQ_ERROR_CANT_CREATE_CERT_STORE","features":[187]},{"name":"MQ_ERROR_CANT_OPEN_CERT_STORE","features":[187]},{"name":"MQ_ERROR_CANT_RESOLVE_SITES","features":[187]},{"name":"MQ_ERROR_CERTIFICATE_NOT_PROVIDED","features":[187]},{"name":"MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION","features":[187]},{"name":"MQ_ERROR_CORRUPTED_INTERNAL_CERTIFICATE","features":[187]},{"name":"MQ_ERROR_CORRUPTED_PERSONAL_CERT_STORE","features":[187]},{"name":"MQ_ERROR_CORRUPTED_SECURITY_DATA","features":[187]},{"name":"MQ_ERROR_COULD_NOT_GET_ACCOUNT_INFO","features":[187]},{"name":"MQ_ERROR_COULD_NOT_GET_USER_SID","features":[187]},{"name":"MQ_ERROR_DELETE_CN_IN_USE","features":[187]},{"name":"MQ_ERROR_DEPEND_WKS_LICENSE_OVERFLOW","features":[187]},{"name":"MQ_ERROR_DS_BIND_ROOT_FOREST","features":[187]},{"name":"MQ_ERROR_DS_ERROR","features":[187]},{"name":"MQ_ERROR_DS_IS_FULL","features":[187]},{"name":"MQ_ERROR_DS_LOCAL_USER","features":[187]},{"name":"MQ_ERROR_DTC_CONNECT","features":[187]},{"name":"MQ_ERROR_ENCRYPTION_PROVIDER_NOT_SUPPORTED","features":[187]},{"name":"MQ_ERROR_FAIL_VERIFY_SIGNATURE_EX","features":[187]},{"name":"MQ_ERROR_FORMATNAME_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_GC_NEEDED","features":[187]},{"name":"MQ_ERROR_GUID_NOT_MATCHING","features":[187]},{"name":"MQ_ERROR_ILLEGAL_CONTEXT","features":[187]},{"name":"MQ_ERROR_ILLEGAL_CURSOR_ACTION","features":[187]},{"name":"MQ_ERROR_ILLEGAL_ENTERPRISE_OPERATION","features":[187]},{"name":"MQ_ERROR_ILLEGAL_FORMATNAME","features":[187]},{"name":"MQ_ERROR_ILLEGAL_MQCOLUMNS","features":[187]},{"name":"MQ_ERROR_ILLEGAL_MQPRIVATEPROPS","features":[187]},{"name":"MQ_ERROR_ILLEGAL_MQQMPROPS","features":[187]},{"name":"MQ_ERROR_ILLEGAL_MQQUEUEPROPS","features":[187]},{"name":"MQ_ERROR_ILLEGAL_OPERATION","features":[187]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_SIZE","features":[187]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VALUE","features":[187]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VT","features":[187]},{"name":"MQ_ERROR_ILLEGAL_PROPID","features":[187]},{"name":"MQ_ERROR_ILLEGAL_QUEUE_PATHNAME","features":[187]},{"name":"MQ_ERROR_ILLEGAL_RELATION","features":[187]},{"name":"MQ_ERROR_ILLEGAL_RESTRICTION_PROPID","features":[187]},{"name":"MQ_ERROR_ILLEGAL_SECURITY_DESCRIPTOR","features":[187]},{"name":"MQ_ERROR_ILLEGAL_SORT","features":[187]},{"name":"MQ_ERROR_ILLEGAL_SORT_PROPID","features":[187]},{"name":"MQ_ERROR_ILLEGAL_USER","features":[187]},{"name":"MQ_ERROR_INSUFFICIENT_PROPERTIES","features":[187]},{"name":"MQ_ERROR_INSUFFICIENT_RESOURCES","features":[187]},{"name":"MQ_ERROR_INTERNAL_USER_CERT_EXIST","features":[187]},{"name":"MQ_ERROR_INVALID_CERTIFICATE","features":[187]},{"name":"MQ_ERROR_INVALID_HANDLE","features":[187]},{"name":"MQ_ERROR_INVALID_OWNER","features":[187]},{"name":"MQ_ERROR_INVALID_PARAMETER","features":[187]},{"name":"MQ_ERROR_IO_TIMEOUT","features":[187]},{"name":"MQ_ERROR_LABEL_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_LABEL_TOO_LONG","features":[187]},{"name":"MQ_ERROR_MACHINE_EXISTS","features":[187]},{"name":"MQ_ERROR_MACHINE_NOT_FOUND","features":[187]},{"name":"MQ_ERROR_MESSAGE_ALREADY_RECEIVED","features":[187]},{"name":"MQ_ERROR_MESSAGE_LOCKED_UNDER_TRANSACTION","features":[187]},{"name":"MQ_ERROR_MESSAGE_NOT_AUTHENTICATED","features":[187]},{"name":"MQ_ERROR_MESSAGE_NOT_FOUND","features":[187]},{"name":"MQ_ERROR_MESSAGE_STORAGE_FAILED","features":[187]},{"name":"MQ_ERROR_MISSING_CONNECTOR_TYPE","features":[187]},{"name":"MQ_ERROR_MQIS_READONLY_MODE","features":[187]},{"name":"MQ_ERROR_MQIS_SERVER_EMPTY","features":[187]},{"name":"MQ_ERROR_MULTI_SORT_KEYS","features":[187]},{"name":"MQ_ERROR_NOT_A_CORRECT_OBJECT_CLASS","features":[187]},{"name":"MQ_ERROR_NOT_SUPPORTED_BY_DEPENDENT_CLIENTS","features":[187]},{"name":"MQ_ERROR_NO_DS","features":[187]},{"name":"MQ_ERROR_NO_ENTRY_POINT_MSMQOCM","features":[187]},{"name":"MQ_ERROR_NO_GC_IN_DOMAIN","features":[187]},{"name":"MQ_ERROR_NO_INTERNAL_USER_CERT","features":[187]},{"name":"MQ_ERROR_NO_MQUSER_OU","features":[187]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_DC","features":[187]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_GC","features":[187]},{"name":"MQ_ERROR_NO_RESPONSE_FROM_OBJECT_SERVER","features":[187]},{"name":"MQ_ERROR_OBJECT_SERVER_NOT_AVAILABLE","features":[187]},{"name":"MQ_ERROR_OPERATION_CANCELLED","features":[187]},{"name":"MQ_ERROR_OPERATION_NOT_SUPPORTED_BY_REMOTE_COMPUTER","features":[187]},{"name":"MQ_ERROR_PRIVILEGE_NOT_HELD","features":[187]},{"name":"MQ_ERROR_PROPERTIES_CONFLICT","features":[187]},{"name":"MQ_ERROR_PROPERTY","features":[187]},{"name":"MQ_ERROR_PROPERTY_NOTALLOWED","features":[187]},{"name":"MQ_ERROR_PROV_NAME_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_PUBLIC_KEY_DOES_NOT_EXIST","features":[187]},{"name":"MQ_ERROR_PUBLIC_KEY_NOT_FOUND","features":[187]},{"name":"MQ_ERROR_QUEUE_DELETED","features":[187]},{"name":"MQ_ERROR_QUEUE_EXISTS","features":[187]},{"name":"MQ_ERROR_QUEUE_NOT_ACTIVE","features":[187]},{"name":"MQ_ERROR_QUEUE_NOT_AVAILABLE","features":[187]},{"name":"MQ_ERROR_QUEUE_NOT_FOUND","features":[187]},{"name":"MQ_ERROR_Q_ADS_PROPERTY_NOT_SUPPORTED","features":[187]},{"name":"MQ_ERROR_Q_DNS_PROPERTY_NOT_SUPPORTED","features":[187]},{"name":"MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE","features":[187]},{"name":"MQ_ERROR_RESOLVE_ADDRESS","features":[187]},{"name":"MQ_ERROR_RESULT_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_SENDERID_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_SENDER_CERT_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_SERVICE_NOT_AVAILABLE","features":[187]},{"name":"MQ_ERROR_SHARING_VIOLATION","features":[187]},{"name":"MQ_ERROR_SIGNATURE_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_STALE_HANDLE","features":[187]},{"name":"MQ_ERROR_SYMM_KEY_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_TOO_MANY_PROPERTIES","features":[187]},{"name":"MQ_ERROR_TRANSACTION_ENLIST","features":[187]},{"name":"MQ_ERROR_TRANSACTION_IMPORT","features":[187]},{"name":"MQ_ERROR_TRANSACTION_SEQUENCE","features":[187]},{"name":"MQ_ERROR_TRANSACTION_USAGE","features":[187]},{"name":"MQ_ERROR_UNINITIALIZED_OBJECT","features":[187]},{"name":"MQ_ERROR_UNSUPPORTED_ACCESS_MODE","features":[187]},{"name":"MQ_ERROR_UNSUPPORTED_CLASS","features":[187]},{"name":"MQ_ERROR_UNSUPPORTED_FORMATNAME_OPERATION","features":[187]},{"name":"MQ_ERROR_UNSUPPORTED_OPERATION","features":[187]},{"name":"MQ_ERROR_USER_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_ERROR_WKS_CANT_SERVE_CLIENT","features":[187]},{"name":"MQ_ERROR_WRITE_NOT_ALLOWED","features":[187]},{"name":"MQ_INFORMATION_DUPLICATE_PROPERTY","features":[187]},{"name":"MQ_INFORMATION_FORMATNAME_BUFFER_TOO_SMALL","features":[187]},{"name":"MQ_INFORMATION_ILLEGAL_PROPERTY","features":[187]},{"name":"MQ_INFORMATION_INTERNAL_USER_CERT_EXIST","features":[187]},{"name":"MQ_INFORMATION_OPERATION_PENDING","features":[187]},{"name":"MQ_INFORMATION_OWNER_IGNORED","features":[187]},{"name":"MQ_INFORMATION_PROPERTY","features":[187]},{"name":"MQ_INFORMATION_PROPERTY_IGNORED","features":[187]},{"name":"MQ_INFORMATION_UNSUPPORTED_PROPERTY","features":[187]},{"name":"MQ_JOURNAL","features":[187]},{"name":"MQ_JOURNAL_NONE","features":[187]},{"name":"MQ_LOOKUP_PEEK_CURRENT","features":[187]},{"name":"MQ_LOOKUP_PEEK_FIRST","features":[187]},{"name":"MQ_LOOKUP_PEEK_LAST","features":[187]},{"name":"MQ_LOOKUP_PEEK_NEXT","features":[187]},{"name":"MQ_LOOKUP_PEEK_PREV","features":[187]},{"name":"MQ_LOOKUP_RECEIVE_ALLOW_PEEK","features":[187]},{"name":"MQ_LOOKUP_RECEIVE_CURRENT","features":[187]},{"name":"MQ_LOOKUP_RECEIVE_FIRST","features":[187]},{"name":"MQ_LOOKUP_RECEIVE_LAST","features":[187]},{"name":"MQ_LOOKUP_RECEIVE_NEXT","features":[187]},{"name":"MQ_LOOKUP_RECEIVE_PREV","features":[187]},{"name":"MQ_MAX_MSG_LABEL_LEN","features":[187]},{"name":"MQ_MAX_PRIORITY","features":[187]},{"name":"MQ_MAX_Q_LABEL_LEN","features":[187]},{"name":"MQ_MAX_Q_NAME_LEN","features":[187]},{"name":"MQ_MIN_PRIORITY","features":[187]},{"name":"MQ_MOVE_ACCESS","features":[187]},{"name":"MQ_MTS_TRANSACTION","features":[187]},{"name":"MQ_NO_TRANSACTION","features":[187]},{"name":"MQ_OK","features":[187]},{"name":"MQ_PEEK_ACCESS","features":[187]},{"name":"MQ_PRIV_LEVEL_BODY","features":[187]},{"name":"MQ_PRIV_LEVEL_NONE","features":[187]},{"name":"MQ_PRIV_LEVEL_OPTIONAL","features":[187]},{"name":"MQ_QTYPE_REPORT","features":[187]},{"name":"MQ_QTYPE_TEST","features":[187]},{"name":"MQ_QUEUE_STATE_CONNECTED","features":[187]},{"name":"MQ_QUEUE_STATE_DISCONNECTED","features":[187]},{"name":"MQ_QUEUE_STATE_DISCONNECTING","features":[187]},{"name":"MQ_QUEUE_STATE_LOCAL_CONNECTION","features":[187]},{"name":"MQ_QUEUE_STATE_LOCKED","features":[187]},{"name":"MQ_QUEUE_STATE_NEEDVALIDATE","features":[187]},{"name":"MQ_QUEUE_STATE_NONACTIVE","features":[187]},{"name":"MQ_QUEUE_STATE_ONHOLD","features":[187]},{"name":"MQ_QUEUE_STATE_WAITING","features":[187]},{"name":"MQ_RECEIVE_ACCESS","features":[187]},{"name":"MQ_SEND_ACCESS","features":[187]},{"name":"MQ_SINGLE_MESSAGE","features":[187]},{"name":"MQ_STATUS_FOREIGN","features":[187]},{"name":"MQ_STATUS_NOT_FOREIGN","features":[187]},{"name":"MQ_STATUS_UNKNOWN","features":[187]},{"name":"MQ_TRANSACTIONAL","features":[187]},{"name":"MQ_TRANSACTIONAL_NONE","features":[187]},{"name":"MQ_TYPE_CONNECTOR","features":[187]},{"name":"MQ_TYPE_MACHINE","features":[187]},{"name":"MQ_TYPE_MULTICAST","features":[187]},{"name":"MQ_TYPE_PRIVATE","features":[187]},{"name":"MQ_TYPE_PUBLIC","features":[187]},{"name":"MQ_XACT_STATUS_NOT_XACT","features":[187]},{"name":"MQ_XACT_STATUS_UNKNOWN","features":[187]},{"name":"MQ_XACT_STATUS_XACT","features":[187]},{"name":"MQ_XA_TRANSACTION","features":[187]},{"name":"MSMQApplication","features":[187]},{"name":"MSMQCollection","features":[187]},{"name":"MSMQCoordinatedTransactionDispenser","features":[187]},{"name":"MSMQDestination","features":[187]},{"name":"MSMQEvent","features":[187]},{"name":"MSMQManagement","features":[187]},{"name":"MSMQMessage","features":[187]},{"name":"MSMQOutgoingQueueManagement","features":[187]},{"name":"MSMQQuery","features":[187]},{"name":"MSMQQueue","features":[187]},{"name":"MSMQQueueInfo","features":[187]},{"name":"MSMQQueueInfos","features":[187]},{"name":"MSMQQueueManagement","features":[187]},{"name":"MSMQTransaction","features":[187]},{"name":"MSMQTransactionDispenser","features":[187]},{"name":"MSMQ_CONNECTED","features":[187]},{"name":"MSMQ_DISCONNECTED","features":[187]},{"name":"PMQRECEIVECALLBACK","features":[1,63,6,187,42]},{"name":"PREQ","features":[187]},{"name":"PRGE","features":[187]},{"name":"PRGT","features":[187]},{"name":"PRLE","features":[187]},{"name":"PRLT","features":[187]},{"name":"PRNE","features":[187]},{"name":"PROPID_MGMT_MSMQ_ACTIVEQUEUES","features":[187]},{"name":"PROPID_MGMT_MSMQ_BASE","features":[187]},{"name":"PROPID_MGMT_MSMQ_BYTES_IN_ALL_QUEUES","features":[187]},{"name":"PROPID_MGMT_MSMQ_CONNECTED","features":[187]},{"name":"PROPID_MGMT_MSMQ_DSSERVER","features":[187]},{"name":"PROPID_MGMT_MSMQ_PRIVATEQ","features":[187]},{"name":"PROPID_MGMT_MSMQ_TYPE","features":[187]},{"name":"PROPID_MGMT_QUEUE_BASE","features":[187]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_JOURNAL","features":[187]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_QUEUE","features":[187]},{"name":"PROPID_MGMT_QUEUE_CONNECTION_HISTORY","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_FIRST_NON_ACK","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_COUNT","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_TIME","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_NON_ACK","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_NEXT_SEQ","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_ACK_COUNT","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_READ_COUNT","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_COUNT","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_INTERVAL","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_TIME","features":[187]},{"name":"PROPID_MGMT_QUEUE_EOD_SOURCE_INFO","features":[187]},{"name":"PROPID_MGMT_QUEUE_FOREIGN","features":[187]},{"name":"PROPID_MGMT_QUEUE_FORMATNAME","features":[187]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_MESSAGE_COUNT","features":[187]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_USED_QUOTA","features":[187]},{"name":"PROPID_MGMT_QUEUE_LOCATION","features":[187]},{"name":"PROPID_MGMT_QUEUE_MESSAGE_COUNT","features":[187]},{"name":"PROPID_MGMT_QUEUE_NEXTHOPS","features":[187]},{"name":"PROPID_MGMT_QUEUE_PATHNAME","features":[187]},{"name":"PROPID_MGMT_QUEUE_STATE","features":[187]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_COUNT","features":[187]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_NAMES","features":[187]},{"name":"PROPID_MGMT_QUEUE_TYPE","features":[187]},{"name":"PROPID_MGMT_QUEUE_USED_QUOTA","features":[187]},{"name":"PROPID_MGMT_QUEUE_XACT","features":[187]},{"name":"PROPID_M_ABORT_COUNT","features":[187]},{"name":"PROPID_M_ACKNOWLEDGE","features":[187]},{"name":"PROPID_M_ADMIN_QUEUE","features":[187]},{"name":"PROPID_M_ADMIN_QUEUE_LEN","features":[187]},{"name":"PROPID_M_APPSPECIFIC","features":[187]},{"name":"PROPID_M_ARRIVEDTIME","features":[187]},{"name":"PROPID_M_AUTHENTICATED","features":[187]},{"name":"PROPID_M_AUTHENTICATED_EX","features":[187]},{"name":"PROPID_M_AUTH_LEVEL","features":[187]},{"name":"PROPID_M_BASE","features":[187]},{"name":"PROPID_M_BODY","features":[187]},{"name":"PROPID_M_BODY_SIZE","features":[187]},{"name":"PROPID_M_BODY_TYPE","features":[187]},{"name":"PROPID_M_CLASS","features":[187]},{"name":"PROPID_M_COMPOUND_MESSAGE","features":[187]},{"name":"PROPID_M_COMPOUND_MESSAGE_SIZE","features":[187]},{"name":"PROPID_M_CONNECTOR_TYPE","features":[187]},{"name":"PROPID_M_CORRELATIONID","features":[187]},{"name":"PROPID_M_CORRELATIONID_SIZE","features":[187]},{"name":"PROPID_M_DEADLETTER_QUEUE","features":[187]},{"name":"PROPID_M_DEADLETTER_QUEUE_LEN","features":[187]},{"name":"PROPID_M_DELIVERY","features":[187]},{"name":"PROPID_M_DEST_FORMAT_NAME","features":[187]},{"name":"PROPID_M_DEST_FORMAT_NAME_LEN","features":[187]},{"name":"PROPID_M_DEST_QUEUE","features":[187]},{"name":"PROPID_M_DEST_QUEUE_LEN","features":[187]},{"name":"PROPID_M_DEST_SYMM_KEY","features":[187]},{"name":"PROPID_M_DEST_SYMM_KEY_LEN","features":[187]},{"name":"PROPID_M_ENCRYPTION_ALG","features":[187]},{"name":"PROPID_M_EXTENSION","features":[187]},{"name":"PROPID_M_EXTENSION_LEN","features":[187]},{"name":"PROPID_M_FIRST_IN_XACT","features":[187]},{"name":"PROPID_M_HASH_ALG","features":[187]},{"name":"PROPID_M_JOURNAL","features":[187]},{"name":"PROPID_M_LABEL","features":[187]},{"name":"PROPID_M_LABEL_LEN","features":[187]},{"name":"PROPID_M_LAST_IN_XACT","features":[187]},{"name":"PROPID_M_LAST_MOVE_TIME","features":[187]},{"name":"PROPID_M_LOOKUPID","features":[187]},{"name":"PROPID_M_MOVE_COUNT","features":[187]},{"name":"PROPID_M_MSGID","features":[187]},{"name":"PROPID_M_MSGID_SIZE","features":[187]},{"name":"PROPID_M_PRIORITY","features":[187]},{"name":"PROPID_M_PRIV_LEVEL","features":[187]},{"name":"PROPID_M_PROV_NAME","features":[187]},{"name":"PROPID_M_PROV_NAME_LEN","features":[187]},{"name":"PROPID_M_PROV_TYPE","features":[187]},{"name":"PROPID_M_RESP_FORMAT_NAME","features":[187]},{"name":"PROPID_M_RESP_FORMAT_NAME_LEN","features":[187]},{"name":"PROPID_M_RESP_QUEUE","features":[187]},{"name":"PROPID_M_RESP_QUEUE_LEN","features":[187]},{"name":"PROPID_M_SECURITY_CONTEXT","features":[187]},{"name":"PROPID_M_SENDERID","features":[187]},{"name":"PROPID_M_SENDERID_LEN","features":[187]},{"name":"PROPID_M_SENDERID_TYPE","features":[187]},{"name":"PROPID_M_SENDER_CERT","features":[187]},{"name":"PROPID_M_SENDER_CERT_LEN","features":[187]},{"name":"PROPID_M_SENTTIME","features":[187]},{"name":"PROPID_M_SIGNATURE","features":[187]},{"name":"PROPID_M_SIGNATURE_LEN","features":[187]},{"name":"PROPID_M_SOAP_BODY","features":[187]},{"name":"PROPID_M_SOAP_ENVELOPE","features":[187]},{"name":"PROPID_M_SOAP_ENVELOPE_LEN","features":[187]},{"name":"PROPID_M_SOAP_HEADER","features":[187]},{"name":"PROPID_M_SRC_MACHINE_ID","features":[187]},{"name":"PROPID_M_TIME_TO_BE_RECEIVED","features":[187]},{"name":"PROPID_M_TIME_TO_REACH_QUEUE","features":[187]},{"name":"PROPID_M_TRACE","features":[187]},{"name":"PROPID_M_VERSION","features":[187]},{"name":"PROPID_M_XACTID","features":[187]},{"name":"PROPID_M_XACTID_SIZE","features":[187]},{"name":"PROPID_M_XACT_STATUS_QUEUE","features":[187]},{"name":"PROPID_M_XACT_STATUS_QUEUE_LEN","features":[187]},{"name":"PROPID_PC_BASE","features":[187]},{"name":"PROPID_PC_DS_ENABLED","features":[187]},{"name":"PROPID_PC_VERSION","features":[187]},{"name":"PROPID_QM_BASE","features":[187]},{"name":"PROPID_QM_CONNECTION","features":[187]},{"name":"PROPID_QM_ENCRYPTION_PK","features":[187]},{"name":"PROPID_QM_ENCRYPTION_PK_AES","features":[187]},{"name":"PROPID_QM_ENCRYPTION_PK_BASE","features":[187]},{"name":"PROPID_QM_ENCRYPTION_PK_ENHANCED","features":[187]},{"name":"PROPID_QM_MACHINE_ID","features":[187]},{"name":"PROPID_QM_PATHNAME","features":[187]},{"name":"PROPID_QM_PATHNAME_DNS","features":[187]},{"name":"PROPID_QM_SITE_ID","features":[187]},{"name":"PROPID_Q_ADS_PATH","features":[187]},{"name":"PROPID_Q_AUTHENTICATE","features":[187]},{"name":"PROPID_Q_BASE","features":[187]},{"name":"PROPID_Q_BASEPRIORITY","features":[187]},{"name":"PROPID_Q_CREATE_TIME","features":[187]},{"name":"PROPID_Q_INSTANCE","features":[187]},{"name":"PROPID_Q_JOURNAL","features":[187]},{"name":"PROPID_Q_JOURNAL_QUOTA","features":[187]},{"name":"PROPID_Q_LABEL","features":[187]},{"name":"PROPID_Q_MODIFY_TIME","features":[187]},{"name":"PROPID_Q_MULTICAST_ADDRESS","features":[187]},{"name":"PROPID_Q_PATHNAME","features":[187]},{"name":"PROPID_Q_PATHNAME_DNS","features":[187]},{"name":"PROPID_Q_PRIV_LEVEL","features":[187]},{"name":"PROPID_Q_QUOTA","features":[187]},{"name":"PROPID_Q_TRANSACTION","features":[187]},{"name":"PROPID_Q_TYPE","features":[187]},{"name":"QUERY_SORTASCEND","features":[187]},{"name":"QUERY_SORTDESCEND","features":[187]},{"name":"QUEUE_ACTION_EOD_RESEND","features":[187]},{"name":"QUEUE_ACTION_PAUSE","features":[187]},{"name":"QUEUE_ACTION_RESUME","features":[187]},{"name":"QUEUE_STATE","features":[187]},{"name":"QUEUE_TYPE","features":[187]},{"name":"RELOPS","features":[187]},{"name":"REL_EQ","features":[187]},{"name":"REL_GE","features":[187]},{"name":"REL_GT","features":[187]},{"name":"REL_LE","features":[187]},{"name":"REL_LT","features":[187]},{"name":"REL_NEQ","features":[187]},{"name":"REL_NOP","features":[187]},{"name":"SEQUENCE_INFO","features":[187]},{"name":"XACT_STATUS","features":[187]},{"name":"_DMSMQEventEvents","features":[187]}],"583":[{"name":"PERCEPTIONFIELD_StateStream_TimeStamps","features":[188]},{"name":"PERCEPTION_PAYLOAD_FIELD","features":[188]},{"name":"PERCEPTION_STATE_STREAM_TIMESTAMPS","features":[188]}],"585":[{"name":"ACTIVATEFLAGS","features":[155]},{"name":"ACTIVATE_WINDOWLESS","features":[155]},{"name":"ACTIVEOBJECT_FLAGS","features":[155]},{"name":"ACTIVEOBJECT_STRONG","features":[155]},{"name":"ACTIVEOBJECT_WEAK","features":[155]},{"name":"ARRAYDESC","features":[41,155,42]},{"name":"BINDSPEED","features":[155]},{"name":"BINDSPEED_IMMEDIATE","features":[155]},{"name":"BINDSPEED_INDEFINITE","features":[155]},{"name":"BINDSPEED_MODERATE","features":[155]},{"name":"BUSY_DIALOG_FLAGS","features":[155]},{"name":"BZ_DISABLECANCELBUTTON","features":[155]},{"name":"BZ_DISABLERETRYBUTTON","features":[155]},{"name":"BZ_DISABLESWITCHTOBUTTON","features":[155]},{"name":"BZ_NOTRESPONDINGDIALOG","features":[155]},{"name":"BstrFromVector","features":[41,155]},{"name":"CADWORD","features":[155]},{"name":"CALPOLESTR","features":[155]},{"name":"CAUUID","features":[155]},{"name":"CF_BITMAP","features":[155]},{"name":"CF_CONVERTONLY","features":[155]},{"name":"CF_DIB","features":[155]},{"name":"CF_DIBV5","features":[155]},{"name":"CF_DIF","features":[155]},{"name":"CF_DISABLEACTIVATEAS","features":[155]},{"name":"CF_DISABLEDISPLAYASICON","features":[155]},{"name":"CF_DSPBITMAP","features":[155]},{"name":"CF_DSPENHMETAFILE","features":[155]},{"name":"CF_DSPMETAFILEPICT","features":[155]},{"name":"CF_DSPTEXT","features":[155]},{"name":"CF_ENHMETAFILE","features":[155]},{"name":"CF_GDIOBJFIRST","features":[155]},{"name":"CF_GDIOBJLAST","features":[155]},{"name":"CF_HDROP","features":[155]},{"name":"CF_HIDECHANGEICON","features":[155]},{"name":"CF_LOCALE","features":[155]},{"name":"CF_MAX","features":[155]},{"name":"CF_METAFILEPICT","features":[155]},{"name":"CF_OEMTEXT","features":[155]},{"name":"CF_OWNERDISPLAY","features":[155]},{"name":"CF_PALETTE","features":[155]},{"name":"CF_PENDATA","features":[155]},{"name":"CF_PRIVATEFIRST","features":[155]},{"name":"CF_PRIVATELAST","features":[155]},{"name":"CF_RIFF","features":[155]},{"name":"CF_SELECTACTIVATEAS","features":[155]},{"name":"CF_SELECTCONVERTTO","features":[155]},{"name":"CF_SETACTIVATEDEFAULT","features":[155]},{"name":"CF_SETCONVERTDEFAULT","features":[155]},{"name":"CF_SHOWHELPBUTTON","features":[155]},{"name":"CF_SYLK","features":[155]},{"name":"CF_TEXT","features":[155]},{"name":"CF_TIFF","features":[155]},{"name":"CF_UNICODETEXT","features":[155]},{"name":"CF_WAVE","features":[155]},{"name":"CHANGEKIND","features":[155]},{"name":"CHANGEKIND_ADDMEMBER","features":[155]},{"name":"CHANGEKIND_CHANGEFAILED","features":[155]},{"name":"CHANGEKIND_DELETEMEMBER","features":[155]},{"name":"CHANGEKIND_GENERAL","features":[155]},{"name":"CHANGEKIND_INVALIDATE","features":[155]},{"name":"CHANGEKIND_MAX","features":[155]},{"name":"CHANGEKIND_SETDOCUMENTATION","features":[155]},{"name":"CHANGEKIND_SETNAMES","features":[155]},{"name":"CHANGE_ICON_FLAGS","features":[155]},{"name":"CHANGE_SOURCE_FLAGS","features":[155]},{"name":"CIF_SELECTCURRENT","features":[155]},{"name":"CIF_SELECTDEFAULT","features":[155]},{"name":"CIF_SELECTFROMFILE","features":[155]},{"name":"CIF_SHOWHELP","features":[155]},{"name":"CIF_USEICONEXE","features":[155]},{"name":"CLEANLOCALSTORAGE","features":[155]},{"name":"CLIPBOARD_FORMAT","features":[155]},{"name":"CLSID_CColorPropPage","features":[155]},{"name":"CLSID_CFontPropPage","features":[155]},{"name":"CLSID_CPicturePropPage","features":[155]},{"name":"CLSID_ConvertVBX","features":[155]},{"name":"CLSID_PersistPropset","features":[155]},{"name":"CLSID_StdFont","features":[155]},{"name":"CLSID_StdPicture","features":[155]},{"name":"CONNECT_E_ADVISELIMIT","features":[155]},{"name":"CONNECT_E_CANNOTCONNECT","features":[155]},{"name":"CONNECT_E_FIRST","features":[155]},{"name":"CONNECT_E_LAST","features":[155]},{"name":"CONNECT_E_NOCONNECTION","features":[155]},{"name":"CONNECT_E_OVERRIDDEN","features":[155]},{"name":"CONNECT_S_FIRST","features":[155]},{"name":"CONNECT_S_LAST","features":[155]},{"name":"CONTROLINFO","features":[155,50]},{"name":"CSF_EXPLORER","features":[155]},{"name":"CSF_ONLYGETSOURCE","features":[155]},{"name":"CSF_SHOWHELP","features":[155]},{"name":"CSF_VALIDSOURCE","features":[155]},{"name":"CTL_E_ILLEGALFUNCTIONCALL","features":[155]},{"name":"CTRLINFO","features":[155]},{"name":"CTRLINFO_EATS_ESCAPE","features":[155]},{"name":"CTRLINFO_EATS_RETURN","features":[155]},{"name":"ClearCustData","features":[1,41,155,42]},{"name":"CreateDispTypeInfo","features":[41,155,42]},{"name":"CreateErrorInfo","features":[155]},{"name":"CreateOleAdviseHolder","features":[155]},{"name":"CreateStdDispatch","features":[155]},{"name":"CreateTypeLib","features":[41,155]},{"name":"CreateTypeLib2","features":[41,155]},{"name":"DD_DEFDRAGDELAY","features":[155]},{"name":"DD_DEFDRAGMINDIST","features":[155]},{"name":"DD_DEFSCROLLDELAY","features":[155]},{"name":"DD_DEFSCROLLINSET","features":[155]},{"name":"DD_DEFSCROLLINTERVAL","features":[155]},{"name":"DISCARDCACHE","features":[155]},{"name":"DISCARDCACHE_NOSAVE","features":[155]},{"name":"DISCARDCACHE_SAVEIFDIRTY","features":[155]},{"name":"DISPATCH_CONSTRUCT","features":[155]},{"name":"DISPID_ABOUTBOX","features":[155]},{"name":"DISPID_ACCELERATOR","features":[155]},{"name":"DISPID_ADDITEM","features":[155]},{"name":"DISPID_AMBIENT_APPEARANCE","features":[155]},{"name":"DISPID_AMBIENT_AUTOCLIP","features":[155]},{"name":"DISPID_AMBIENT_BACKCOLOR","features":[155]},{"name":"DISPID_AMBIENT_CHARSET","features":[155]},{"name":"DISPID_AMBIENT_CODEPAGE","features":[155]},{"name":"DISPID_AMBIENT_DISPLAYASDEFAULT","features":[155]},{"name":"DISPID_AMBIENT_DISPLAYNAME","features":[155]},{"name":"DISPID_AMBIENT_FONT","features":[155]},{"name":"DISPID_AMBIENT_FORECOLOR","features":[155]},{"name":"DISPID_AMBIENT_LOCALEID","features":[155]},{"name":"DISPID_AMBIENT_MESSAGEREFLECT","features":[155]},{"name":"DISPID_AMBIENT_PALETTE","features":[155]},{"name":"DISPID_AMBIENT_RIGHTTOLEFT","features":[155]},{"name":"DISPID_AMBIENT_SCALEUNITS","features":[155]},{"name":"DISPID_AMBIENT_SHOWGRABHANDLES","features":[155]},{"name":"DISPID_AMBIENT_SHOWHATCHING","features":[155]},{"name":"DISPID_AMBIENT_SUPPORTSMNEMONICS","features":[155]},{"name":"DISPID_AMBIENT_TEXTALIGN","features":[155]},{"name":"DISPID_AMBIENT_TOPTOBOTTOM","features":[155]},{"name":"DISPID_AMBIENT_TRANSFERPRIORITY","features":[155]},{"name":"DISPID_AMBIENT_UIDEAD","features":[155]},{"name":"DISPID_AMBIENT_USERMODE","features":[155]},{"name":"DISPID_APPEARANCE","features":[155]},{"name":"DISPID_AUTOSIZE","features":[155]},{"name":"DISPID_BACKCOLOR","features":[155]},{"name":"DISPID_BACKSTYLE","features":[155]},{"name":"DISPID_BORDERCOLOR","features":[155]},{"name":"DISPID_BORDERSTYLE","features":[155]},{"name":"DISPID_BORDERVISIBLE","features":[155]},{"name":"DISPID_BORDERWIDTH","features":[155]},{"name":"DISPID_CAPTION","features":[155]},{"name":"DISPID_CLEAR","features":[155]},{"name":"DISPID_CLICK","features":[155]},{"name":"DISPID_CLICK_VALUE","features":[155]},{"name":"DISPID_COLLECT","features":[155]},{"name":"DISPID_COLUMN","features":[155]},{"name":"DISPID_CONSTRUCTOR","features":[155]},{"name":"DISPID_DBLCLICK","features":[155]},{"name":"DISPID_DESTRUCTOR","features":[155]},{"name":"DISPID_DISPLAYSTYLE","features":[155]},{"name":"DISPID_DOCLICK","features":[155]},{"name":"DISPID_DRAWMODE","features":[155]},{"name":"DISPID_DRAWSTYLE","features":[155]},{"name":"DISPID_DRAWWIDTH","features":[155]},{"name":"DISPID_Delete","features":[155]},{"name":"DISPID_ENABLED","features":[155]},{"name":"DISPID_ENTERKEYBEHAVIOR","features":[155]},{"name":"DISPID_ERROREVENT","features":[155]},{"name":"DISPID_EVALUATE","features":[155]},{"name":"DISPID_FILLCOLOR","features":[155]},{"name":"DISPID_FILLSTYLE","features":[155]},{"name":"DISPID_FONT","features":[155]},{"name":"DISPID_FONT_BOLD","features":[155]},{"name":"DISPID_FONT_CHANGED","features":[155]},{"name":"DISPID_FONT_CHARSET","features":[155]},{"name":"DISPID_FONT_ITALIC","features":[155]},{"name":"DISPID_FONT_NAME","features":[155]},{"name":"DISPID_FONT_SIZE","features":[155]},{"name":"DISPID_FONT_STRIKE","features":[155]},{"name":"DISPID_FONT_UNDER","features":[155]},{"name":"DISPID_FONT_WEIGHT","features":[155]},{"name":"DISPID_FORECOLOR","features":[155]},{"name":"DISPID_GROUPNAME","features":[155]},{"name":"DISPID_HWND","features":[155]},{"name":"DISPID_IMEMODE","features":[155]},{"name":"DISPID_KEYDOWN","features":[155]},{"name":"DISPID_KEYPRESS","features":[155]},{"name":"DISPID_KEYUP","features":[155]},{"name":"DISPID_LIST","features":[155]},{"name":"DISPID_LISTCOUNT","features":[155]},{"name":"DISPID_LISTINDEX","features":[155]},{"name":"DISPID_MAXLENGTH","features":[155]},{"name":"DISPID_MOUSEDOWN","features":[155]},{"name":"DISPID_MOUSEICON","features":[155]},{"name":"DISPID_MOUSEMOVE","features":[155]},{"name":"DISPID_MOUSEPOINTER","features":[155]},{"name":"DISPID_MOUSEUP","features":[155]},{"name":"DISPID_MULTILINE","features":[155]},{"name":"DISPID_MULTISELECT","features":[155]},{"name":"DISPID_NEWENUM","features":[155]},{"name":"DISPID_NUMBEROFCOLUMNS","features":[155]},{"name":"DISPID_NUMBEROFROWS","features":[155]},{"name":"DISPID_Name","features":[155]},{"name":"DISPID_Object","features":[155]},{"name":"DISPID_PASSWORDCHAR","features":[155]},{"name":"DISPID_PICTURE","features":[155]},{"name":"DISPID_PICT_HANDLE","features":[155]},{"name":"DISPID_PICT_HEIGHT","features":[155]},{"name":"DISPID_PICT_HPAL","features":[155]},{"name":"DISPID_PICT_RENDER","features":[155]},{"name":"DISPID_PICT_TYPE","features":[155]},{"name":"DISPID_PICT_WIDTH","features":[155]},{"name":"DISPID_PROPERTYPUT","features":[155]},{"name":"DISPID_Parent","features":[155]},{"name":"DISPID_READYSTATE","features":[155]},{"name":"DISPID_READYSTATECHANGE","features":[155]},{"name":"DISPID_REFRESH","features":[155]},{"name":"DISPID_REMOVEITEM","features":[155]},{"name":"DISPID_RIGHTTOLEFT","features":[155]},{"name":"DISPID_SCROLLBARS","features":[155]},{"name":"DISPID_SELECTED","features":[155]},{"name":"DISPID_SELLENGTH","features":[155]},{"name":"DISPID_SELSTART","features":[155]},{"name":"DISPID_SELTEXT","features":[155]},{"name":"DISPID_STARTENUM","features":[155]},{"name":"DISPID_TABKEYBEHAVIOR","features":[155]},{"name":"DISPID_TABSTOP","features":[155]},{"name":"DISPID_TEXT","features":[155]},{"name":"DISPID_THIS","features":[155]},{"name":"DISPID_TOPTOBOTTOM","features":[155]},{"name":"DISPID_UNKNOWN","features":[155]},{"name":"DISPID_VALID","features":[155]},{"name":"DISPID_VALUE","features":[155]},{"name":"DISPID_WORDWRAP","features":[155]},{"name":"DOCMISC","features":[155]},{"name":"DOCMISC_CANCREATEMULTIPLEVIEWS","features":[155]},{"name":"DOCMISC_CANTOPENEDIT","features":[155]},{"name":"DOCMISC_NOFILESUPPORT","features":[155]},{"name":"DOCMISC_SUPPORTCOMPLEXRECTANGLES","features":[155]},{"name":"DROPEFFECT","features":[155]},{"name":"DROPEFFECT_COPY","features":[155]},{"name":"DROPEFFECT_LINK","features":[155]},{"name":"DROPEFFECT_MOVE","features":[155]},{"name":"DROPEFFECT_NONE","features":[155]},{"name":"DROPEFFECT_SCROLL","features":[155]},{"name":"DVASPECTINFO","features":[155]},{"name":"DVASPECTINFOFLAG","features":[155]},{"name":"DVASPECTINFOFLAG_CANOPTIMIZE","features":[155]},{"name":"DVEXTENTINFO","features":[1,155]},{"name":"DVEXTENTMODE","features":[155]},{"name":"DVEXTENT_CONTENT","features":[155]},{"name":"DVEXTENT_INTEGRAL","features":[155]},{"name":"DispCallFunc","features":[1,41,155,42]},{"name":"DispGetIDsOfNames","features":[155]},{"name":"DispGetParam","features":[1,41,155,42]},{"name":"DispInvoke","features":[1,41,155,42]},{"name":"DoDragDrop","features":[155]},{"name":"EDIT_LINKS_FLAGS","features":[155]},{"name":"ELF_DISABLECANCELLINK","features":[155]},{"name":"ELF_DISABLECHANGESOURCE","features":[155]},{"name":"ELF_DISABLEOPENSOURCE","features":[155]},{"name":"ELF_DISABLEUPDATENOW","features":[155]},{"name":"ELF_SHOWHELP","features":[155]},{"name":"EMBDHLP_CREATENOW","features":[155]},{"name":"EMBDHLP_DELAYCREATE","features":[155]},{"name":"EMBDHLP_FLAGS","features":[155]},{"name":"EMBDHLP_INPROC_HANDLER","features":[155]},{"name":"EMBDHLP_INPROC_SERVER","features":[155]},{"name":"ENUM_CONTROLS_WHICH_FLAGS","features":[155]},{"name":"FDEX_PROP_FLAGS","features":[155]},{"name":"FONTDESC","features":[1,41,155]},{"name":"GCW_WCH_SIBLING","features":[155]},{"name":"GC_WCH_ALL","features":[155]},{"name":"GC_WCH_CONTAINED","features":[155]},{"name":"GC_WCH_CONTAINER","features":[155]},{"name":"GC_WCH_FONLYAFTER","features":[155]},{"name":"GC_WCH_FONLYBEFORE","features":[155]},{"name":"GC_WCH_FREVERSEDIR","features":[155]},{"name":"GC_WCH_FSELECTED","features":[155]},{"name":"GC_WCH_SIBLING","features":[155]},{"name":"GUIDKIND","features":[155]},{"name":"GUIDKIND_DEFAULT_SOURCE_DISP_IID","features":[155]},{"name":"GUID_CHECKVALUEEXCLUSIVE","features":[155]},{"name":"GUID_COLOR","features":[155]},{"name":"GUID_FONTBOLD","features":[155]},{"name":"GUID_FONTITALIC","features":[155]},{"name":"GUID_FONTNAME","features":[155]},{"name":"GUID_FONTSIZE","features":[155]},{"name":"GUID_FONTSTRIKETHROUGH","features":[155]},{"name":"GUID_FONTUNDERSCORE","features":[155]},{"name":"GUID_HANDLE","features":[155]},{"name":"GUID_HIMETRIC","features":[155]},{"name":"GUID_OPTIONVALUEEXCLUSIVE","features":[155]},{"name":"GUID_TRISTATE","features":[155]},{"name":"GUID_XPOS","features":[155]},{"name":"GUID_XPOSPIXEL","features":[155]},{"name":"GUID_XSIZE","features":[155]},{"name":"GUID_XSIZEPIXEL","features":[155]},{"name":"GUID_YPOS","features":[155]},{"name":"GUID_YPOSPIXEL","features":[155]},{"name":"GUID_YSIZE","features":[155]},{"name":"GUID_YSIZEPIXEL","features":[155]},{"name":"GetActiveObject","features":[155]},{"name":"GetAltMonthNames","features":[155]},{"name":"GetRecordInfoFromGuids","features":[155]},{"name":"GetRecordInfoFromTypeInfo","features":[155]},{"name":"HITRESULT","features":[155]},{"name":"HITRESULT_CLOSE","features":[155]},{"name":"HITRESULT_HIT","features":[155]},{"name":"HITRESULT_OUTSIDE","features":[155]},{"name":"HITRESULT_TRANSPARENT","features":[155]},{"name":"HRGN_UserFree","features":[12,155]},{"name":"HRGN_UserFree64","features":[12,155]},{"name":"HRGN_UserMarshal","features":[12,155]},{"name":"HRGN_UserMarshal64","features":[12,155]},{"name":"HRGN_UserSize","features":[12,155]},{"name":"HRGN_UserSize64","features":[12,155]},{"name":"HRGN_UserUnmarshal","features":[12,155]},{"name":"HRGN_UserUnmarshal64","features":[12,155]},{"name":"IAdviseSinkEx","features":[155]},{"name":"ICanHandleException","features":[155]},{"name":"IClassFactory2","features":[155]},{"name":"IContinue","features":[155]},{"name":"IContinueCallback","features":[155]},{"name":"ICreateErrorInfo","features":[155]},{"name":"ICreateTypeInfo","features":[155]},{"name":"ICreateTypeInfo2","features":[155]},{"name":"ICreateTypeLib","features":[155]},{"name":"ICreateTypeLib2","features":[155]},{"name":"IDC_BZ_ICON","features":[155]},{"name":"IDC_BZ_MESSAGE1","features":[155]},{"name":"IDC_BZ_RETRY","features":[155]},{"name":"IDC_BZ_SWITCHTO","features":[155]},{"name":"IDC_CI_BROWSE","features":[155]},{"name":"IDC_CI_CURRENT","features":[155]},{"name":"IDC_CI_CURRENTICON","features":[155]},{"name":"IDC_CI_DEFAULT","features":[155]},{"name":"IDC_CI_DEFAULTICON","features":[155]},{"name":"IDC_CI_FROMFILE","features":[155]},{"name":"IDC_CI_FROMFILEEDIT","features":[155]},{"name":"IDC_CI_GROUP","features":[155]},{"name":"IDC_CI_ICONDISPLAY","features":[155]},{"name":"IDC_CI_ICONLIST","features":[155]},{"name":"IDC_CI_LABEL","features":[155]},{"name":"IDC_CI_LABELEDIT","features":[155]},{"name":"IDC_CV_ACTIVATEAS","features":[155]},{"name":"IDC_CV_ACTIVATELIST","features":[155]},{"name":"IDC_CV_CHANGEICON","features":[155]},{"name":"IDC_CV_CONVERTLIST","features":[155]},{"name":"IDC_CV_CONVERTTO","features":[155]},{"name":"IDC_CV_DISPLAYASICON","features":[155]},{"name":"IDC_CV_ICONDISPLAY","features":[155]},{"name":"IDC_CV_OBJECTTYPE","features":[155]},{"name":"IDC_CV_RESULTTEXT","features":[155]},{"name":"IDC_EL_AUTOMATIC","features":[155]},{"name":"IDC_EL_CANCELLINK","features":[155]},{"name":"IDC_EL_CHANGESOURCE","features":[155]},{"name":"IDC_EL_COL1","features":[155]},{"name":"IDC_EL_COL2","features":[155]},{"name":"IDC_EL_COL3","features":[155]},{"name":"IDC_EL_LINKSLISTBOX","features":[155]},{"name":"IDC_EL_LINKSOURCE","features":[155]},{"name":"IDC_EL_LINKTYPE","features":[155]},{"name":"IDC_EL_MANUAL","features":[155]},{"name":"IDC_EL_OPENSOURCE","features":[155]},{"name":"IDC_EL_UPDATENOW","features":[155]},{"name":"IDC_GP_CONVERT","features":[155]},{"name":"IDC_GP_OBJECTICON","features":[155]},{"name":"IDC_GP_OBJECTLOCATION","features":[155]},{"name":"IDC_GP_OBJECTNAME","features":[155]},{"name":"IDC_GP_OBJECTSIZE","features":[155]},{"name":"IDC_GP_OBJECTTYPE","features":[155]},{"name":"IDC_IO_ADDCONTROL","features":[155]},{"name":"IDC_IO_CHANGEICON","features":[155]},{"name":"IDC_IO_CONTROLTYPELIST","features":[155]},{"name":"IDC_IO_CREATEFROMFILE","features":[155]},{"name":"IDC_IO_CREATENEW","features":[155]},{"name":"IDC_IO_DISPLAYASICON","features":[155]},{"name":"IDC_IO_FILE","features":[155]},{"name":"IDC_IO_FILEDISPLAY","features":[155]},{"name":"IDC_IO_FILETEXT","features":[155]},{"name":"IDC_IO_FILETYPE","features":[155]},{"name":"IDC_IO_ICONDISPLAY","features":[155]},{"name":"IDC_IO_INSERTCONTROL","features":[155]},{"name":"IDC_IO_LINKFILE","features":[155]},{"name":"IDC_IO_OBJECTTYPELIST","features":[155]},{"name":"IDC_IO_OBJECTTYPETEXT","features":[155]},{"name":"IDC_IO_RESULTIMAGE","features":[155]},{"name":"IDC_IO_RESULTTEXT","features":[155]},{"name":"IDC_LP_AUTOMATIC","features":[155]},{"name":"IDC_LP_BREAKLINK","features":[155]},{"name":"IDC_LP_CHANGESOURCE","features":[155]},{"name":"IDC_LP_DATE","features":[155]},{"name":"IDC_LP_LINKSOURCE","features":[155]},{"name":"IDC_LP_MANUAL","features":[155]},{"name":"IDC_LP_OPENSOURCE","features":[155]},{"name":"IDC_LP_TIME","features":[155]},{"name":"IDC_LP_UPDATENOW","features":[155]},{"name":"IDC_OLEUIHELP","features":[155]},{"name":"IDC_PS_CHANGEICON","features":[155]},{"name":"IDC_PS_DISPLAYASICON","features":[155]},{"name":"IDC_PS_DISPLAYLIST","features":[155]},{"name":"IDC_PS_ICONDISPLAY","features":[155]},{"name":"IDC_PS_PASTE","features":[155]},{"name":"IDC_PS_PASTELINK","features":[155]},{"name":"IDC_PS_PASTELINKLIST","features":[155]},{"name":"IDC_PS_PASTELIST","features":[155]},{"name":"IDC_PS_RESULTIMAGE","features":[155]},{"name":"IDC_PS_RESULTTEXT","features":[155]},{"name":"IDC_PS_SOURCETEXT","features":[155]},{"name":"IDC_PU_CONVERT","features":[155]},{"name":"IDC_PU_ICON","features":[155]},{"name":"IDC_PU_LINKS","features":[155]},{"name":"IDC_PU_TEXT","features":[155]},{"name":"IDC_UL_METER","features":[155]},{"name":"IDC_UL_PERCENT","features":[155]},{"name":"IDC_UL_PROGRESS","features":[155]},{"name":"IDC_UL_STOP","features":[155]},{"name":"IDC_VP_ASICON","features":[155]},{"name":"IDC_VP_CHANGEICON","features":[155]},{"name":"IDC_VP_EDITABLE","features":[155]},{"name":"IDC_VP_ICONDISPLAY","features":[155]},{"name":"IDC_VP_PERCENT","features":[155]},{"name":"IDC_VP_RELATIVE","features":[155]},{"name":"IDC_VP_RESULTIMAGE","features":[155]},{"name":"IDC_VP_SCALETXT","features":[155]},{"name":"IDC_VP_SPIN","features":[155]},{"name":"IDD_BUSY","features":[155]},{"name":"IDD_CANNOTUPDATELINK","features":[155]},{"name":"IDD_CHANGEICON","features":[155]},{"name":"IDD_CHANGEICONBROWSE","features":[155]},{"name":"IDD_CHANGESOURCE","features":[155]},{"name":"IDD_CHANGESOURCE4","features":[155]},{"name":"IDD_CONVERT","features":[155]},{"name":"IDD_CONVERT4","features":[155]},{"name":"IDD_CONVERTONLY","features":[155]},{"name":"IDD_CONVERTONLY4","features":[155]},{"name":"IDD_EDITLINKS","features":[155]},{"name":"IDD_EDITLINKS4","features":[155]},{"name":"IDD_GNRLPROPS","features":[155]},{"name":"IDD_GNRLPROPS4","features":[155]},{"name":"IDD_INSERTFILEBROWSE","features":[155]},{"name":"IDD_INSERTOBJECT","features":[155]},{"name":"IDD_LINKPROPS","features":[155]},{"name":"IDD_LINKPROPS4","features":[155]},{"name":"IDD_LINKSOURCEUNAVAILABLE","features":[155]},{"name":"IDD_LINKTYPECHANGED","features":[155]},{"name":"IDD_LINKTYPECHANGEDA","features":[155]},{"name":"IDD_LINKTYPECHANGEDW","features":[155]},{"name":"IDD_OUTOFMEMORY","features":[155]},{"name":"IDD_PASTESPECIAL","features":[155]},{"name":"IDD_PASTESPECIAL4","features":[155]},{"name":"IDD_SERVERNOTFOUND","features":[155]},{"name":"IDD_SERVERNOTREG","features":[155]},{"name":"IDD_SERVERNOTREGA","features":[155]},{"name":"IDD_SERVERNOTREGW","features":[155]},{"name":"IDD_UPDATELINKS","features":[155]},{"name":"IDD_VIEWPROPS","features":[155]},{"name":"ID_BROWSE_ADDCONTROL","features":[155]},{"name":"ID_BROWSE_CHANGEICON","features":[155]},{"name":"ID_BROWSE_CHANGESOURCE","features":[155]},{"name":"ID_BROWSE_INSERTFILE","features":[155]},{"name":"ID_DEFAULTINST","features":[155]},{"name":"IDispError","features":[155]},{"name":"IDispatchEx","features":[155]},{"name":"IDropSource","features":[155]},{"name":"IDropSourceNotify","features":[155]},{"name":"IDropTarget","features":[155]},{"name":"IEnterpriseDropTarget","features":[155]},{"name":"IEnumOLEVERB","features":[155]},{"name":"IEnumOleDocumentViews","features":[155]},{"name":"IEnumOleUndoUnits","features":[155]},{"name":"IEnumVARIANT","features":[155]},{"name":"IFont","features":[155]},{"name":"IFontDisp","features":[155]},{"name":"IFontEventsDisp","features":[155]},{"name":"IGNOREMIME","features":[155]},{"name":"IGNOREMIME_PROMPT","features":[155]},{"name":"IGNOREMIME_TEXT","features":[155]},{"name":"IGetOleObject","features":[155]},{"name":"IGetVBAObject","features":[155]},{"name":"INSERT_OBJECT_FLAGS","features":[155]},{"name":"INSTALL_SCOPE_INVALID","features":[155]},{"name":"INSTALL_SCOPE_MACHINE","features":[155]},{"name":"INSTALL_SCOPE_USER","features":[155]},{"name":"INTERFACEDATA","features":[41,155,42]},{"name":"IOF_CHECKDISPLAYASICON","features":[155]},{"name":"IOF_CHECKLINK","features":[155]},{"name":"IOF_CREATEFILEOBJECT","features":[155]},{"name":"IOF_CREATELINKOBJECT","features":[155]},{"name":"IOF_CREATENEWOBJECT","features":[155]},{"name":"IOF_DISABLEDISPLAYASICON","features":[155]},{"name":"IOF_DISABLELINK","features":[155]},{"name":"IOF_HIDECHANGEICON","features":[155]},{"name":"IOF_SELECTCREATECONTROL","features":[155]},{"name":"IOF_SELECTCREATEFROMFILE","features":[155]},{"name":"IOF_SELECTCREATENEW","features":[155]},{"name":"IOF_SHOWHELP","features":[155]},{"name":"IOF_SHOWINSERTCONTROL","features":[155]},{"name":"IOF_VERIFYSERVERSEXIST","features":[155]},{"name":"IObjectIdentity","features":[155]},{"name":"IObjectWithSite","features":[155]},{"name":"IOleAdviseHolder","features":[155]},{"name":"IOleCache","features":[155]},{"name":"IOleCache2","features":[155]},{"name":"IOleCacheControl","features":[155]},{"name":"IOleClientSite","features":[155]},{"name":"IOleCommandTarget","features":[155]},{"name":"IOleContainer","features":[155]},{"name":"IOleControl","features":[155]},{"name":"IOleControlSite","features":[155]},{"name":"IOleDocument","features":[155]},{"name":"IOleDocumentSite","features":[155]},{"name":"IOleDocumentView","features":[155]},{"name":"IOleInPlaceActiveObject","features":[155]},{"name":"IOleInPlaceFrame","features":[155]},{"name":"IOleInPlaceObject","features":[155]},{"name":"IOleInPlaceObjectWindowless","features":[155]},{"name":"IOleInPlaceSite","features":[155]},{"name":"IOleInPlaceSiteEx","features":[155]},{"name":"IOleInPlaceSiteWindowless","features":[155]},{"name":"IOleInPlaceUIWindow","features":[155]},{"name":"IOleItemContainer","features":[155]},{"name":"IOleLink","features":[155]},{"name":"IOleObject","features":[155]},{"name":"IOleParentUndoUnit","features":[155]},{"name":"IOleUILinkContainerA","features":[155]},{"name":"IOleUILinkContainerW","features":[155]},{"name":"IOleUILinkInfoA","features":[155]},{"name":"IOleUILinkInfoW","features":[155]},{"name":"IOleUIObjInfoA","features":[155]},{"name":"IOleUIObjInfoW","features":[155]},{"name":"IOleUndoManager","features":[155]},{"name":"IOleUndoUnit","features":[155]},{"name":"IOleWindow","features":[155]},{"name":"IParseDisplayName","features":[155]},{"name":"IPerPropertyBrowsing","features":[155]},{"name":"IPersistPropertyBag","features":[155]},{"name":"IPersistPropertyBag2","features":[155]},{"name":"IPicture","features":[155]},{"name":"IPicture2","features":[155]},{"name":"IPictureDisp","features":[155]},{"name":"IPointerInactive","features":[155]},{"name":"IPrint","features":[155]},{"name":"IPropertyNotifySink","features":[155]},{"name":"IPropertyPage","features":[155]},{"name":"IPropertyPage2","features":[155]},{"name":"IPropertyPageSite","features":[155]},{"name":"IProtectFocus","features":[155]},{"name":"IProtectedModeMenuServices","features":[155]},{"name":"IProvideClassInfo","features":[155]},{"name":"IProvideClassInfo2","features":[155]},{"name":"IProvideMultipleClassInfo","features":[155]},{"name":"IProvideRuntimeContext","features":[155]},{"name":"IQuickActivate","features":[155]},{"name":"IRecordInfo","features":[155]},{"name":"ISimpleFrameSite","features":[155]},{"name":"ISpecifyPropertyPages","features":[155]},{"name":"ITypeChangeEvents","features":[155]},{"name":"ITypeFactory","features":[155]},{"name":"ITypeMarshal","features":[155]},{"name":"IVBFormat","features":[155]},{"name":"IVBGetControl","features":[155]},{"name":"IVariantChangeType","features":[155]},{"name":"IViewObject","features":[155]},{"name":"IViewObject2","features":[155]},{"name":"IViewObjectEx","features":[155]},{"name":"IZoomEvents","features":[155]},{"name":"IsAccelerator","features":[1,155,50]},{"name":"KEYMODIFIERS","features":[155]},{"name":"KEYMOD_ALT","features":[155]},{"name":"KEYMOD_CONTROL","features":[155]},{"name":"KEYMOD_SHIFT","features":[155]},{"name":"LHashValOfNameSys","features":[41,155]},{"name":"LHashValOfNameSysA","features":[41,155]},{"name":"LIBFLAGS","features":[155]},{"name":"LIBFLAG_FCONTROL","features":[155]},{"name":"LIBFLAG_FHASDISKIMAGE","features":[155]},{"name":"LIBFLAG_FHIDDEN","features":[155]},{"name":"LIBFLAG_FRESTRICTED","features":[155]},{"name":"LICINFO","features":[1,155]},{"name":"LOAD_PICTURE_FLAGS","features":[155]},{"name":"LOAD_TLB_AS_32BIT","features":[155]},{"name":"LOAD_TLB_AS_64BIT","features":[155]},{"name":"LOCALE_USE_NLS","features":[155]},{"name":"LPFNOLEUIHOOK","features":[1,155]},{"name":"LP_COLOR","features":[155]},{"name":"LP_DEFAULT","features":[155]},{"name":"LP_MONOCHROME","features":[155]},{"name":"LP_VGACOLOR","features":[155]},{"name":"LoadRegTypeLib","features":[155]},{"name":"LoadTypeLib","features":[155]},{"name":"LoadTypeLibEx","features":[155]},{"name":"MEDIAPLAYBACK_PAUSE","features":[155]},{"name":"MEDIAPLAYBACK_PAUSE_AND_SUSPEND","features":[155]},{"name":"MEDIAPLAYBACK_RESUME","features":[155]},{"name":"MEDIAPLAYBACK_RESUME_FROM_SUSPEND","features":[155]},{"name":"MEDIAPLAYBACK_STATE","features":[155]},{"name":"MEMBERID_NIL","features":[155]},{"name":"METHODDATA","features":[41,155,42]},{"name":"MK_ALT","features":[155]},{"name":"MSOCMDERR_E_CANCELED","features":[155]},{"name":"MSOCMDERR_E_DISABLED","features":[155]},{"name":"MSOCMDERR_E_FIRST","features":[155]},{"name":"MSOCMDERR_E_NOHELP","features":[155]},{"name":"MSOCMDERR_E_NOTSUPPORTED","features":[155]},{"name":"MSOCMDERR_E_UNKNOWNGROUP","features":[155]},{"name":"MULTICLASSINFO_FLAGS","features":[155]},{"name":"MULTICLASSINFO_GETIIDPRIMARY","features":[155]},{"name":"MULTICLASSINFO_GETIIDSOURCE","features":[155]},{"name":"MULTICLASSINFO_GETNUMRESERVEDDISPIDS","features":[155]},{"name":"MULTICLASSINFO_GETTYPEINFO","features":[155]},{"name":"NUMPARSE","features":[155]},{"name":"NUMPARSE_FLAGS","features":[155]},{"name":"NUMPRS_CURRENCY","features":[155]},{"name":"NUMPRS_DECIMAL","features":[155]},{"name":"NUMPRS_EXPONENT","features":[155]},{"name":"NUMPRS_HEX_OCT","features":[155]},{"name":"NUMPRS_INEXACT","features":[155]},{"name":"NUMPRS_LEADING_MINUS","features":[155]},{"name":"NUMPRS_LEADING_PLUS","features":[155]},{"name":"NUMPRS_LEADING_WHITE","features":[155]},{"name":"NUMPRS_NEG","features":[155]},{"name":"NUMPRS_PARENS","features":[155]},{"name":"NUMPRS_STD","features":[155]},{"name":"NUMPRS_THOUSANDS","features":[155]},{"name":"NUMPRS_TRAILING_MINUS","features":[155]},{"name":"NUMPRS_TRAILING_PLUS","features":[155]},{"name":"NUMPRS_TRAILING_WHITE","features":[155]},{"name":"NUMPRS_USE_ALL","features":[155]},{"name":"OBJECTDESCRIPTOR","features":[1,155]},{"name":"OBJECT_PROPERTIES_FLAGS","features":[155]},{"name":"OCM__BASE","features":[155]},{"name":"OCPFIPARAMS","features":[1,155]},{"name":"OF_GET","features":[155]},{"name":"OF_HANDLER","features":[155]},{"name":"OF_SET","features":[155]},{"name":"OLECLOSE","features":[155]},{"name":"OLECLOSE_NOSAVE","features":[155]},{"name":"OLECLOSE_PROMPTSAVE","features":[155]},{"name":"OLECLOSE_SAVEIFDIRTY","features":[155]},{"name":"OLECMD","features":[155]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_CLSID","features":[155]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_DISPLAYNAME","features":[155]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_INSTALLSCOPE","features":[155]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_PUBLISHER","features":[155]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_SOURCEURL","features":[155]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_HWND","features":[155]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_X","features":[155]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_Y","features":[155]},{"name":"OLECMDERR_E_CANCELED","features":[155]},{"name":"OLECMDERR_E_DISABLED","features":[155]},{"name":"OLECMDERR_E_FIRST","features":[155]},{"name":"OLECMDERR_E_NOHELP","features":[155]},{"name":"OLECMDERR_E_NOTSUPPORTED","features":[155]},{"name":"OLECMDERR_E_UNKNOWNGROUP","features":[155]},{"name":"OLECMDEXECOPT","features":[155]},{"name":"OLECMDEXECOPT_DODEFAULT","features":[155]},{"name":"OLECMDEXECOPT_DONTPROMPTUSER","features":[155]},{"name":"OLECMDEXECOPT_PROMPTUSER","features":[155]},{"name":"OLECMDEXECOPT_SHOWHELP","features":[155]},{"name":"OLECMDF","features":[155]},{"name":"OLECMDF_DEFHIDEONCTXTMENU","features":[155]},{"name":"OLECMDF_ENABLED","features":[155]},{"name":"OLECMDF_INVISIBLE","features":[155]},{"name":"OLECMDF_LATCHED","features":[155]},{"name":"OLECMDF_NINCHED","features":[155]},{"name":"OLECMDF_SUPPORTED","features":[155]},{"name":"OLECMDID","features":[155]},{"name":"OLECMDIDF_BROWSERSTATE_BLOCKEDVERSION","features":[155]},{"name":"OLECMDIDF_BROWSERSTATE_DESKTOPHTMLDIALOG","features":[155]},{"name":"OLECMDIDF_BROWSERSTATE_EXTENSIONSOFF","features":[155]},{"name":"OLECMDIDF_BROWSERSTATE_IESECURITY","features":[155]},{"name":"OLECMDIDF_BROWSERSTATE_PROTECTEDMODE_OFF","features":[155]},{"name":"OLECMDIDF_BROWSERSTATE_REQUIRESACTIVEX","features":[155]},{"name":"OLECMDIDF_BROWSERSTATE_RESET","features":[155]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOLAYOUT","features":[155]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOPERSIST","features":[155]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOTRANSIENT","features":[155]},{"name":"OLECMDIDF_OPTICAL_ZOOM_RELOADFORNEWTAB","features":[155]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXDISALLOW","features":[155]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXINSTALL","features":[155]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXTRUSTFAIL","features":[155]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUNSAFE","features":[155]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERAPPROVAL","features":[155]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERDISABLE","features":[155]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEX_EPM_INCOMPATIBLE","features":[155]},{"name":"OLECMDIDF_PAGEACTION_EXTENSION_COMPAT_BLOCKED","features":[155]},{"name":"OLECMDIDF_PAGEACTION_FILEDOWNLOAD","features":[155]},{"name":"OLECMDIDF_PAGEACTION_GENERIC_STATE","features":[155]},{"name":"OLECMDIDF_PAGEACTION_INTRANETZONEREQUEST","features":[155]},{"name":"OLECMDIDF_PAGEACTION_INVALID_CERT","features":[155]},{"name":"OLECMDIDF_PAGEACTION_LOCALMACHINE","features":[155]},{"name":"OLECMDIDF_PAGEACTION_MIMETEXTPLAIN","features":[155]},{"name":"OLECMDIDF_PAGEACTION_MIXEDCONTENT","features":[155]},{"name":"OLECMDIDF_PAGEACTION_NORESETACTIVEX","features":[155]},{"name":"OLECMDIDF_PAGEACTION_POPUPALLOWED","features":[155]},{"name":"OLECMDIDF_PAGEACTION_POPUPWINDOW","features":[155]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNDENY","features":[155]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTERNET","features":[155]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTRANET","features":[155]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[155]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[155]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[155]},{"name":"OLECMDIDF_PAGEACTION_RESET","features":[155]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE","features":[155]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXINSTALL","features":[155]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXUSERAPPROVAL","features":[155]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTPROMPT","features":[155]},{"name":"OLECMDIDF_PAGEACTION_SPOOFABLEIDNHOST","features":[155]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED","features":[155]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED_ACTIVEX","features":[155]},{"name":"OLECMDIDF_PAGEACTION_XSSFILTERED","features":[155]},{"name":"OLECMDIDF_REFRESH_CLEARUSERINPUT","features":[155]},{"name":"OLECMDIDF_REFRESH_COMPLETELY","features":[155]},{"name":"OLECMDIDF_REFRESH_CONTINUE","features":[155]},{"name":"OLECMDIDF_REFRESH_IFEXPIRED","features":[155]},{"name":"OLECMDIDF_REFRESH_LEVELMASK","features":[155]},{"name":"OLECMDIDF_REFRESH_NORMAL","features":[155]},{"name":"OLECMDIDF_REFRESH_NO_CACHE","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ACTIVEXINSTALL","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ALLOW_VERSION","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_FILEDOWNLOAD","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_INVALID_CERT","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_LOCALMACHINE","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_MIXEDCONTENT","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_POPUPWINDOW","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTERNET","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTRANET","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[155]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[155]},{"name":"OLECMDIDF_REFRESH_PROMPTIFOFFLINE","features":[155]},{"name":"OLECMDIDF_REFRESH_RELOAD","features":[155]},{"name":"OLECMDIDF_REFRESH_SKIPBEFOREUNLOADEVENT","features":[155]},{"name":"OLECMDIDF_REFRESH_THROUGHSCRIPT","features":[155]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM","features":[155]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM_VALID","features":[155]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH","features":[155]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH_VALID","features":[155]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED","features":[155]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED_VALID","features":[155]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE","features":[155]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE_VALID","features":[155]},{"name":"OLECMDID_ACTIVEXINSTALLSCOPE","features":[155]},{"name":"OLECMDID_ADDTRAVELENTRY","features":[155]},{"name":"OLECMDID_ALLOWUILESSSAVEAS","features":[155]},{"name":"OLECMDID_BROWSERSTATEFLAG","features":[155]},{"name":"OLECMDID_CLEARSELECTION","features":[155]},{"name":"OLECMDID_CLOSE","features":[155]},{"name":"OLECMDID_COPY","features":[155]},{"name":"OLECMDID_CUT","features":[155]},{"name":"OLECMDID_DELETE","features":[155]},{"name":"OLECMDID_DONTDOWNLOADCSS","features":[155]},{"name":"OLECMDID_ENABLE_INTERACTION","features":[155]},{"name":"OLECMDID_ENABLE_VISIBILITY","features":[155]},{"name":"OLECMDID_EXITFULLSCREEN","features":[155]},{"name":"OLECMDID_FIND","features":[155]},{"name":"OLECMDID_FOCUSVIEWCONTROLS","features":[155]},{"name":"OLECMDID_FOCUSVIEWCONTROLSQUERY","features":[155]},{"name":"OLECMDID_GETPRINTTEMPLATE","features":[155]},{"name":"OLECMDID_GETUSERSCALABLE","features":[155]},{"name":"OLECMDID_GETZOOMRANGE","features":[155]},{"name":"OLECMDID_HIDETOOLBARS","features":[155]},{"name":"OLECMDID_HTTPEQUIV","features":[155]},{"name":"OLECMDID_HTTPEQUIV_DONE","features":[155]},{"name":"OLECMDID_LAYOUT_VIEWPORT_WIDTH","features":[155]},{"name":"OLECMDID_MEDIA_PLAYBACK","features":[155]},{"name":"OLECMDID_NEW","features":[155]},{"name":"OLECMDID_ONBEFOREUNLOAD","features":[155]},{"name":"OLECMDID_ONTOOLBARACTIVATED","features":[155]},{"name":"OLECMDID_ONUNLOAD","features":[155]},{"name":"OLECMDID_OPEN","features":[155]},{"name":"OLECMDID_OPTICAL_GETZOOMRANGE","features":[155]},{"name":"OLECMDID_OPTICAL_ZOOM","features":[155]},{"name":"OLECMDID_OPTICAL_ZOOMFLAG","features":[155]},{"name":"OLECMDID_PAGEACTIONBLOCKED","features":[155]},{"name":"OLECMDID_PAGEACTIONFLAG","features":[155]},{"name":"OLECMDID_PAGEACTIONUIQUERY","features":[155]},{"name":"OLECMDID_PAGEAVAILABLE","features":[155]},{"name":"OLECMDID_PAGESETUP","features":[155]},{"name":"OLECMDID_PASTE","features":[155]},{"name":"OLECMDID_PASTESPECIAL","features":[155]},{"name":"OLECMDID_POPSTATEEVENT","features":[155]},{"name":"OLECMDID_PREREFRESH","features":[155]},{"name":"OLECMDID_PRINT","features":[155]},{"name":"OLECMDID_PRINT2","features":[155]},{"name":"OLECMDID_PRINTPREVIEW","features":[155]},{"name":"OLECMDID_PRINTPREVIEW2","features":[155]},{"name":"OLECMDID_PROPERTIES","features":[155]},{"name":"OLECMDID_PROPERTYBAG2","features":[155]},{"name":"OLECMDID_REDO","features":[155]},{"name":"OLECMDID_REFRESH","features":[155]},{"name":"OLECMDID_REFRESHFLAG","features":[155]},{"name":"OLECMDID_SAVE","features":[155]},{"name":"OLECMDID_SAVEAS","features":[155]},{"name":"OLECMDID_SAVECOPYAS","features":[155]},{"name":"OLECMDID_SCROLLCOMPLETE","features":[155]},{"name":"OLECMDID_SELECTALL","features":[155]},{"name":"OLECMDID_SETDOWNLOADSTATE","features":[155]},{"name":"OLECMDID_SETFAVICON","features":[155]},{"name":"OLECMDID_SETPRINTTEMPLATE","features":[155]},{"name":"OLECMDID_SETPROGRESSMAX","features":[155]},{"name":"OLECMDID_SETPROGRESSPOS","features":[155]},{"name":"OLECMDID_SETPROGRESSTEXT","features":[155]},{"name":"OLECMDID_SETTITLE","features":[155]},{"name":"OLECMDID_SET_HOST_FULLSCREENMODE","features":[155]},{"name":"OLECMDID_SHOWFIND","features":[155]},{"name":"OLECMDID_SHOWMESSAGE","features":[155]},{"name":"OLECMDID_SHOWMESSAGE_BLOCKABLE","features":[155]},{"name":"OLECMDID_SHOWPAGEACTIONMENU","features":[155]},{"name":"OLECMDID_SHOWPAGESETUP","features":[155]},{"name":"OLECMDID_SHOWPRINT","features":[155]},{"name":"OLECMDID_SHOWSCRIPTERROR","features":[155]},{"name":"OLECMDID_SHOWTASKDLG","features":[155]},{"name":"OLECMDID_SHOWTASKDLG_BLOCKABLE","features":[155]},{"name":"OLECMDID_SPELL","features":[155]},{"name":"OLECMDID_STOP","features":[155]},{"name":"OLECMDID_STOPDOWNLOAD","features":[155]},{"name":"OLECMDID_UNDO","features":[155]},{"name":"OLECMDID_UPDATEBACKFORWARDSTATE","features":[155]},{"name":"OLECMDID_UPDATECOMMANDS","features":[155]},{"name":"OLECMDID_UPDATEPAGESTATUS","features":[155]},{"name":"OLECMDID_UPDATETRAVELENTRY","features":[155]},{"name":"OLECMDID_UPDATETRAVELENTRY_DATARECOVERY","features":[155]},{"name":"OLECMDID_UPDATE_CARET","features":[155]},{"name":"OLECMDID_USER_OPTICAL_ZOOM","features":[155]},{"name":"OLECMDID_VIEWPORT_MODE","features":[155]},{"name":"OLECMDID_VIEWPORT_MODE_FLAG","features":[155]},{"name":"OLECMDID_VISUAL_VIEWPORT_EXCLUDE_BOTTOM","features":[155]},{"name":"OLECMDID_WINDOWSTATECHANGED","features":[155]},{"name":"OLECMDID_WINDOWSTATE_FLAG","features":[155]},{"name":"OLECMDID_ZOOM","features":[155]},{"name":"OLECMDTEXT","features":[155]},{"name":"OLECMDTEXTF","features":[155]},{"name":"OLECMDTEXTF_NAME","features":[155]},{"name":"OLECMDTEXTF_NONE","features":[155]},{"name":"OLECMDTEXTF_STATUS","features":[155]},{"name":"OLECMD_TASKDLGID_ONBEFOREUNLOAD","features":[155]},{"name":"OLECONTF","features":[155]},{"name":"OLECONTF_EMBEDDINGS","features":[155]},{"name":"OLECONTF_LINKS","features":[155]},{"name":"OLECONTF_ONLYIFRUNNING","features":[155]},{"name":"OLECONTF_ONLYUSER","features":[155]},{"name":"OLECONTF_OTHERS","features":[155]},{"name":"OLECREATE","features":[155]},{"name":"OLECREATE_LEAVERUNNING","features":[155]},{"name":"OLECREATE_ZERO","features":[155]},{"name":"OLEDCFLAGS","features":[155]},{"name":"OLEDC_NODRAW","features":[155]},{"name":"OLEDC_OFFSCREEN","features":[155]},{"name":"OLEDC_PAINTBKGND","features":[155]},{"name":"OLEGETMONIKER","features":[155]},{"name":"OLEGETMONIKER_FORCEASSIGN","features":[155]},{"name":"OLEGETMONIKER_ONLYIFTHERE","features":[155]},{"name":"OLEGETMONIKER_TEMPFORUSER","features":[155]},{"name":"OLEGETMONIKER_UNASSIGN","features":[155]},{"name":"OLEINPLACEFRAMEINFO","features":[1,155,50]},{"name":"OLEIVERB","features":[155]},{"name":"OLEIVERB_DISCARDUNDOSTATE","features":[155]},{"name":"OLEIVERB_HIDE","features":[155]},{"name":"OLEIVERB_INPLACEACTIVATE","features":[155]},{"name":"OLEIVERB_OPEN","features":[155]},{"name":"OLEIVERB_PRIMARY","features":[155]},{"name":"OLEIVERB_PROPERTIES","features":[155]},{"name":"OLEIVERB_SHOW","features":[155]},{"name":"OLEIVERB_UIACTIVATE","features":[155]},{"name":"OLELINKBIND","features":[155]},{"name":"OLELINKBIND_EVENIFCLASSDIFF","features":[155]},{"name":"OLEMENUGROUPWIDTHS","features":[155]},{"name":"OLEMISC","features":[155]},{"name":"OLEMISC_ACTIVATEWHENVISIBLE","features":[155]},{"name":"OLEMISC_ACTSLIKEBUTTON","features":[155]},{"name":"OLEMISC_ACTSLIKELABEL","features":[155]},{"name":"OLEMISC_ALIGNABLE","features":[155]},{"name":"OLEMISC_ALWAYSRUN","features":[155]},{"name":"OLEMISC_CANLINKBYOLE1","features":[155]},{"name":"OLEMISC_CANTLINKINSIDE","features":[155]},{"name":"OLEMISC_IGNOREACTIVATEWHENVISIBLE","features":[155]},{"name":"OLEMISC_IMEMODE","features":[155]},{"name":"OLEMISC_INSERTNOTREPLACE","features":[155]},{"name":"OLEMISC_INSIDEOUT","features":[155]},{"name":"OLEMISC_INVISIBLEATRUNTIME","features":[155]},{"name":"OLEMISC_ISLINKOBJECT","features":[155]},{"name":"OLEMISC_NOUIACTIVATE","features":[155]},{"name":"OLEMISC_ONLYICONIC","features":[155]},{"name":"OLEMISC_RECOMPOSEONRESIZE","features":[155]},{"name":"OLEMISC_RENDERINGISDEVICEINDEPENDENT","features":[155]},{"name":"OLEMISC_SETCLIENTSITEFIRST","features":[155]},{"name":"OLEMISC_SIMPLEFRAME","features":[155]},{"name":"OLEMISC_STATIC","features":[155]},{"name":"OLEMISC_SUPPORTSMULTILEVELUNDO","features":[155]},{"name":"OLEMISC_WANTSTOMENUMERGE","features":[155]},{"name":"OLERENDER","features":[155]},{"name":"OLERENDER_ASIS","features":[155]},{"name":"OLERENDER_DRAW","features":[155]},{"name":"OLERENDER_FORMAT","features":[155]},{"name":"OLERENDER_NONE","features":[155]},{"name":"OLESTDDELIM","features":[155]},{"name":"OLESTREAMQUERYCONVERTOLELINKCALLBACK","features":[155]},{"name":"OLESTREAM_CONVERSION_DEFAULT","features":[155]},{"name":"OLESTREAM_CONVERSION_DISABLEOLELINK","features":[155]},{"name":"OLEUIBUSYA","features":[1,78,155]},{"name":"OLEUIBUSYW","features":[1,78,155]},{"name":"OLEUICHANGEICONA","features":[1,155]},{"name":"OLEUICHANGEICONW","features":[1,155]},{"name":"OLEUICHANGESOURCEA","features":[1,155,84]},{"name":"OLEUICHANGESOURCEW","features":[1,155,84]},{"name":"OLEUICONVERTA","features":[1,155]},{"name":"OLEUICONVERTW","features":[1,155]},{"name":"OLEUIEDITLINKSA","features":[1,155]},{"name":"OLEUIEDITLINKSW","features":[1,155]},{"name":"OLEUIGNRLPROPSA","features":[1,12,155,40,50]},{"name":"OLEUIGNRLPROPSW","features":[1,12,155,40,50]},{"name":"OLEUIINSERTOBJECTA","features":[1,41,155]},{"name":"OLEUIINSERTOBJECTW","features":[1,41,155]},{"name":"OLEUILINKPROPSA","features":[1,12,155,40,50]},{"name":"OLEUILINKPROPSW","features":[1,12,155,40,50]},{"name":"OLEUIOBJECTPROPSA","features":[1,12,155,40,50]},{"name":"OLEUIOBJECTPROPSW","features":[1,12,155,40,50]},{"name":"OLEUIPASTEENTRYA","features":[41,155]},{"name":"OLEUIPASTEENTRYW","features":[41,155]},{"name":"OLEUIPASTEFLAG","features":[155]},{"name":"OLEUIPASTESPECIALA","features":[1,41,155]},{"name":"OLEUIPASTESPECIALW","features":[1,41,155]},{"name":"OLEUIPASTE_ENABLEICON","features":[155]},{"name":"OLEUIPASTE_LINKANYTYPE","features":[155]},{"name":"OLEUIPASTE_LINKTYPE1","features":[155]},{"name":"OLEUIPASTE_LINKTYPE2","features":[155]},{"name":"OLEUIPASTE_LINKTYPE3","features":[155]},{"name":"OLEUIPASTE_LINKTYPE4","features":[155]},{"name":"OLEUIPASTE_LINKTYPE5","features":[155]},{"name":"OLEUIPASTE_LINKTYPE6","features":[155]},{"name":"OLEUIPASTE_LINKTYPE7","features":[155]},{"name":"OLEUIPASTE_LINKTYPE8","features":[155]},{"name":"OLEUIPASTE_PASTE","features":[155]},{"name":"OLEUIPASTE_PASTEONLY","features":[155]},{"name":"OLEUIVIEWPROPSA","features":[1,12,155,40,50]},{"name":"OLEUIVIEWPROPSW","features":[1,12,155,40,50]},{"name":"OLEUI_BZERR_HTASKINVALID","features":[155]},{"name":"OLEUI_BZ_CALLUNBLOCKED","features":[155]},{"name":"OLEUI_BZ_RETRYSELECTED","features":[155]},{"name":"OLEUI_BZ_SWITCHTOSELECTED","features":[155]},{"name":"OLEUI_CANCEL","features":[155]},{"name":"OLEUI_CIERR_MUSTHAVECLSID","features":[155]},{"name":"OLEUI_CIERR_MUSTHAVECURRENTMETAFILE","features":[155]},{"name":"OLEUI_CIERR_SZICONEXEINVALID","features":[155]},{"name":"OLEUI_CSERR_FROMNOTNULL","features":[155]},{"name":"OLEUI_CSERR_LINKCNTRINVALID","features":[155]},{"name":"OLEUI_CSERR_LINKCNTRNULL","features":[155]},{"name":"OLEUI_CSERR_SOURCEINVALID","features":[155]},{"name":"OLEUI_CSERR_SOURCENULL","features":[155]},{"name":"OLEUI_CSERR_SOURCEPARSEERROR","features":[155]},{"name":"OLEUI_CSERR_SOURCEPARSERROR","features":[155]},{"name":"OLEUI_CSERR_TONOTNULL","features":[155]},{"name":"OLEUI_CTERR_CBFORMATINVALID","features":[155]},{"name":"OLEUI_CTERR_CLASSIDINVALID","features":[155]},{"name":"OLEUI_CTERR_DVASPECTINVALID","features":[155]},{"name":"OLEUI_CTERR_HMETAPICTINVALID","features":[155]},{"name":"OLEUI_CTERR_STRINGINVALID","features":[155]},{"name":"OLEUI_ELERR_LINKCNTRINVALID","features":[155]},{"name":"OLEUI_ELERR_LINKCNTRNULL","features":[155]},{"name":"OLEUI_ERR_CBSTRUCTINCORRECT","features":[155]},{"name":"OLEUI_ERR_DIALOGFAILURE","features":[155]},{"name":"OLEUI_ERR_FINDTEMPLATEFAILURE","features":[155]},{"name":"OLEUI_ERR_GLOBALMEMALLOC","features":[155]},{"name":"OLEUI_ERR_HINSTANCEINVALID","features":[155]},{"name":"OLEUI_ERR_HRESOURCEINVALID","features":[155]},{"name":"OLEUI_ERR_HWNDOWNERINVALID","features":[155]},{"name":"OLEUI_ERR_LOADSTRING","features":[155]},{"name":"OLEUI_ERR_LOADTEMPLATEFAILURE","features":[155]},{"name":"OLEUI_ERR_LOCALMEMALLOC","features":[155]},{"name":"OLEUI_ERR_LPFNHOOKINVALID","features":[155]},{"name":"OLEUI_ERR_LPSZCAPTIONINVALID","features":[155]},{"name":"OLEUI_ERR_LPSZTEMPLATEINVALID","features":[155]},{"name":"OLEUI_ERR_OLEMEMALLOC","features":[155]},{"name":"OLEUI_ERR_STANDARDMAX","features":[155]},{"name":"OLEUI_ERR_STANDARDMIN","features":[155]},{"name":"OLEUI_ERR_STRUCTUREINVALID","features":[155]},{"name":"OLEUI_ERR_STRUCTURENULL","features":[155]},{"name":"OLEUI_FALSE","features":[155]},{"name":"OLEUI_GPERR_CBFORMATINVALID","features":[155]},{"name":"OLEUI_GPERR_CLASSIDINVALID","features":[155]},{"name":"OLEUI_GPERR_LPCLSIDEXCLUDEINVALID","features":[155]},{"name":"OLEUI_GPERR_STRINGINVALID","features":[155]},{"name":"OLEUI_IOERR_ARRLINKTYPESINVALID","features":[155]},{"name":"OLEUI_IOERR_ARRPASTEENTRIESINVALID","features":[155]},{"name":"OLEUI_IOERR_CCHFILEINVALID","features":[155]},{"name":"OLEUI_IOERR_HICONINVALID","features":[155]},{"name":"OLEUI_IOERR_LPCLSIDEXCLUDEINVALID","features":[155]},{"name":"OLEUI_IOERR_LPFORMATETCINVALID","features":[155]},{"name":"OLEUI_IOERR_LPIOLECLIENTSITEINVALID","features":[155]},{"name":"OLEUI_IOERR_LPISTORAGEINVALID","features":[155]},{"name":"OLEUI_IOERR_LPSZFILEINVALID","features":[155]},{"name":"OLEUI_IOERR_LPSZLABELINVALID","features":[155]},{"name":"OLEUI_IOERR_PPVOBJINVALID","features":[155]},{"name":"OLEUI_IOERR_SCODEHASERROR","features":[155]},{"name":"OLEUI_IOERR_SRCDATAOBJECTINVALID","features":[155]},{"name":"OLEUI_LPERR_LINKCNTRINVALID","features":[155]},{"name":"OLEUI_LPERR_LINKCNTRNULL","features":[155]},{"name":"OLEUI_OK","features":[155]},{"name":"OLEUI_OPERR_DLGPROCNOTNULL","features":[155]},{"name":"OLEUI_OPERR_INVALIDPAGES","features":[155]},{"name":"OLEUI_OPERR_LINKINFOINVALID","features":[155]},{"name":"OLEUI_OPERR_LPARAMNOTZERO","features":[155]},{"name":"OLEUI_OPERR_NOTSUPPORTED","features":[155]},{"name":"OLEUI_OPERR_OBJINFOINVALID","features":[155]},{"name":"OLEUI_OPERR_PAGESINCORRECT","features":[155]},{"name":"OLEUI_OPERR_PROPERTYSHEET","features":[155]},{"name":"OLEUI_OPERR_PROPSHEETINVALID","features":[155]},{"name":"OLEUI_OPERR_PROPSHEETNULL","features":[155]},{"name":"OLEUI_OPERR_PROPSINVALID","features":[155]},{"name":"OLEUI_OPERR_SUBPROPINVALID","features":[155]},{"name":"OLEUI_OPERR_SUBPROPNULL","features":[155]},{"name":"OLEUI_OPERR_SUPPROP","features":[155]},{"name":"OLEUI_PSERR_CLIPBOARDCHANGED","features":[155]},{"name":"OLEUI_PSERR_GETCLIPBOARDFAILED","features":[155]},{"name":"OLEUI_QUERY_GETCLASSID","features":[155]},{"name":"OLEUI_QUERY_LINKBROKEN","features":[155]},{"name":"OLEUI_SUCCESS","features":[155]},{"name":"OLEUI_VPERR_DVASPECTINVALID","features":[155]},{"name":"OLEUI_VPERR_METAPICTINVALID","features":[155]},{"name":"OLEUPDATE","features":[155]},{"name":"OLEUPDATE_ALWAYS","features":[155]},{"name":"OLEUPDATE_ONCALL","features":[155]},{"name":"OLEVERB","features":[155,50]},{"name":"OLEVERBATTRIB","features":[155]},{"name":"OLEVERBATTRIB_NEVERDIRTIES","features":[155]},{"name":"OLEVERBATTRIB_ONCONTAINERMENU","features":[155]},{"name":"OLEVERB_PRIMARY","features":[155]},{"name":"OLEWHICHMK","features":[155]},{"name":"OLEWHICHMK_CONTAINER","features":[155]},{"name":"OLEWHICHMK_OBJFULL","features":[155]},{"name":"OLEWHICHMK_OBJREL","features":[155]},{"name":"OLE_HANDLE","features":[155]},{"name":"OLE_TRISTATE","features":[155]},{"name":"OPF_DISABLECONVERT","features":[155]},{"name":"OPF_NOFILLDEFAULT","features":[155]},{"name":"OPF_OBJECTISLINK","features":[155]},{"name":"OPF_SHOWHELP","features":[155]},{"name":"OT_EMBEDDED","features":[155]},{"name":"OT_LINK","features":[155]},{"name":"OT_STATIC","features":[155]},{"name":"OaBuildVersion","features":[155]},{"name":"OaEnablePerUserTLibRegistration","features":[155]},{"name":"OleBuildVersion","features":[155]},{"name":"OleConvertOLESTREAMToIStorage2","features":[63,155]},{"name":"OleConvertOLESTREAMToIStorageEx2","features":[1,12,63,155]},{"name":"OleCreate","features":[41,155]},{"name":"OleCreateDefaultHandler","features":[155]},{"name":"OleCreateEmbeddingHelper","features":[155]},{"name":"OleCreateEx","features":[41,155]},{"name":"OleCreateFontIndirect","features":[1,41,155]},{"name":"OleCreateFromData","features":[41,155]},{"name":"OleCreateFromDataEx","features":[41,155]},{"name":"OleCreateFromFile","features":[41,155]},{"name":"OleCreateFromFileEx","features":[41,155]},{"name":"OleCreateLink","features":[41,155]},{"name":"OleCreateLinkEx","features":[41,155]},{"name":"OleCreateLinkFromData","features":[41,155]},{"name":"OleCreateLinkFromDataEx","features":[41,155]},{"name":"OleCreateLinkToFile","features":[41,155]},{"name":"OleCreateLinkToFileEx","features":[41,155]},{"name":"OleCreateMenuDescriptor","features":[155,50]},{"name":"OleCreatePictureIndirect","features":[1,12,155,50]},{"name":"OleCreatePropertyFrame","features":[1,155]},{"name":"OleCreatePropertyFrameIndirect","features":[1,155]},{"name":"OleCreateStaticFromData","features":[41,155]},{"name":"OleDestroyMenuDescriptor","features":[155]},{"name":"OleDoAutoConvert","features":[155]},{"name":"OleDraw","features":[1,12,155]},{"name":"OleDuplicateData","features":[1,20,155]},{"name":"OleFlushClipboard","features":[155]},{"name":"OleGetAutoConvert","features":[155]},{"name":"OleGetClipboard","features":[155]},{"name":"OleGetClipboardWithEnterpriseInfo","features":[155]},{"name":"OleGetIconOfClass","features":[1,155]},{"name":"OleGetIconOfFile","features":[1,155]},{"name":"OleIconToCursor","features":[1,155,50]},{"name":"OleInitialize","features":[155]},{"name":"OleIsCurrentClipboard","features":[155]},{"name":"OleIsRunning","features":[1,155]},{"name":"OleLoad","features":[155]},{"name":"OleLoadFromStream","features":[155]},{"name":"OleLoadPicture","features":[1,155]},{"name":"OleLoadPictureEx","features":[1,155]},{"name":"OleLoadPictureFile","features":[1,41,155,42]},{"name":"OleLoadPictureFileEx","features":[1,41,155,42]},{"name":"OleLoadPicturePath","features":[155]},{"name":"OleLockRunning","features":[1,155]},{"name":"OleMetafilePictFromIconAndLabel","features":[1,155,50]},{"name":"OleNoteObjectVisible","features":[1,155]},{"name":"OleQueryCreateFromData","features":[155]},{"name":"OleQueryLinkFromData","features":[155]},{"name":"OleRegEnumFormatEtc","features":[155]},{"name":"OleRegEnumVerbs","features":[155]},{"name":"OleRegGetMiscStatus","features":[155]},{"name":"OleRegGetUserType","features":[155]},{"name":"OleRun","features":[155]},{"name":"OleSave","features":[1,155]},{"name":"OleSavePictureFile","features":[155]},{"name":"OleSaveToStream","features":[155]},{"name":"OleSetAutoConvert","features":[155]},{"name":"OleSetClipboard","features":[155]},{"name":"OleSetContainedObject","features":[1,155]},{"name":"OleSetMenuDescriptor","features":[1,155]},{"name":"OleTranslateAccelerator","features":[1,155,50]},{"name":"OleTranslateColor","features":[1,12,155]},{"name":"OleUIAddVerbMenuA","features":[1,155,50]},{"name":"OleUIAddVerbMenuW","features":[1,155,50]},{"name":"OleUIBusyA","features":[1,78,155]},{"name":"OleUIBusyW","features":[1,78,155]},{"name":"OleUICanConvertOrActivateAs","features":[1,155]},{"name":"OleUIChangeIconA","features":[1,155]},{"name":"OleUIChangeIconW","features":[1,155]},{"name":"OleUIChangeSourceA","features":[1,155,84]},{"name":"OleUIChangeSourceW","features":[1,155,84]},{"name":"OleUIConvertA","features":[1,155]},{"name":"OleUIConvertW","features":[1,155]},{"name":"OleUIEditLinksA","features":[1,155]},{"name":"OleUIEditLinksW","features":[1,155]},{"name":"OleUIInsertObjectA","features":[1,41,155]},{"name":"OleUIInsertObjectW","features":[1,41,155]},{"name":"OleUIObjectPropertiesA","features":[1,12,155,40,50]},{"name":"OleUIObjectPropertiesW","features":[1,12,155,40,50]},{"name":"OleUIPasteSpecialA","features":[1,41,155]},{"name":"OleUIPasteSpecialW","features":[1,41,155]},{"name":"OleUIPromptUserA","features":[1,155]},{"name":"OleUIPromptUserW","features":[1,155]},{"name":"OleUIUpdateLinksA","features":[1,155]},{"name":"OleUIUpdateLinksW","features":[1,155]},{"name":"OleUninitialize","features":[155]},{"name":"PAGEACTION_UI","features":[155]},{"name":"PAGEACTION_UI_DEFAULT","features":[155]},{"name":"PAGEACTION_UI_MODAL","features":[155]},{"name":"PAGEACTION_UI_MODELESS","features":[155]},{"name":"PAGEACTION_UI_SILENT","features":[155]},{"name":"PAGERANGE","features":[155]},{"name":"PAGESET","features":[1,155]},{"name":"PARAMDATA","features":[155,42]},{"name":"PARAMDESC","features":[1,41,155,42]},{"name":"PARAMDESCEX","features":[1,41,155,42]},{"name":"PARAMFLAGS","features":[155]},{"name":"PARAMFLAG_FHASCUSTDATA","features":[155]},{"name":"PARAMFLAG_FHASDEFAULT","features":[155]},{"name":"PARAMFLAG_FIN","features":[155]},{"name":"PARAMFLAG_FLCID","features":[155]},{"name":"PARAMFLAG_FOPT","features":[155]},{"name":"PARAMFLAG_FOUT","features":[155]},{"name":"PARAMFLAG_FRETVAL","features":[155]},{"name":"PARAMFLAG_NONE","features":[155]},{"name":"PASTE_SPECIAL_FLAGS","features":[155]},{"name":"PERPROP_E_FIRST","features":[155]},{"name":"PERPROP_E_LAST","features":[155]},{"name":"PERPROP_E_NOPAGEAVAILABLE","features":[155]},{"name":"PERPROP_S_FIRST","features":[155]},{"name":"PERPROP_S_LAST","features":[155]},{"name":"PICTDESC","features":[12,155,50]},{"name":"PICTUREATTRIBUTES","features":[155]},{"name":"PICTURE_SCALABLE","features":[155]},{"name":"PICTURE_TRANSPARENT","features":[155]},{"name":"PICTYPE","features":[155]},{"name":"PICTYPE_BITMAP","features":[155]},{"name":"PICTYPE_ENHMETAFILE","features":[155]},{"name":"PICTYPE_ICON","features":[155]},{"name":"PICTYPE_METAFILE","features":[155]},{"name":"PICTYPE_NONE","features":[155]},{"name":"PICTYPE_UNINITIALIZED","features":[155]},{"name":"POINTERINACTIVE","features":[155]},{"name":"POINTERINACTIVE_ACTIVATEONDRAG","features":[155]},{"name":"POINTERINACTIVE_ACTIVATEONENTRY","features":[155]},{"name":"POINTERINACTIVE_DEACTIVATEONLEAVE","features":[155]},{"name":"POINTF","features":[155]},{"name":"PRINTFLAG","features":[155]},{"name":"PRINTFLAG_DONTACTUALLYPRINT","features":[155]},{"name":"PRINTFLAG_FORCEPROPERTIES","features":[155]},{"name":"PRINTFLAG_MAYBOTHERUSER","features":[155]},{"name":"PRINTFLAG_PRINTTOFILE","features":[155]},{"name":"PRINTFLAG_PROMPTUSER","features":[155]},{"name":"PRINTFLAG_RECOMPOSETODEVICE","features":[155]},{"name":"PRINTFLAG_USERMAYCHANGEPRINTER","features":[155]},{"name":"PROPBAG2_TYPE","features":[155]},{"name":"PROPBAG2_TYPE_DATA","features":[155]},{"name":"PROPBAG2_TYPE_MONIKER","features":[155]},{"name":"PROPBAG2_TYPE_OBJECT","features":[155]},{"name":"PROPBAG2_TYPE_STORAGE","features":[155]},{"name":"PROPBAG2_TYPE_STREAM","features":[155]},{"name":"PROPBAG2_TYPE_UNDEFINED","features":[155]},{"name":"PROPBAG2_TYPE_URL","features":[155]},{"name":"PROPPAGEINFO","features":[1,155]},{"name":"PROPPAGESTATUS","features":[155]},{"name":"PROPPAGESTATUS_CLEAN","features":[155]},{"name":"PROPPAGESTATUS_DIRTY","features":[155]},{"name":"PROPPAGESTATUS_VALIDATE","features":[155]},{"name":"PROP_HWND_CHGICONDLG","features":[155]},{"name":"PSF_CHECKDISPLAYASICON","features":[155]},{"name":"PSF_DISABLEDISPLAYASICON","features":[155]},{"name":"PSF_HIDECHANGEICON","features":[155]},{"name":"PSF_NOREFRESHDATAOBJECT","features":[155]},{"name":"PSF_SELECTPASTE","features":[155]},{"name":"PSF_SELECTPASTELINK","features":[155]},{"name":"PSF_SHOWHELP","features":[155]},{"name":"PSF_STAYONCLIPBOARDCHANGE","features":[155]},{"name":"PS_MAXLINKTYPES","features":[155]},{"name":"QACONTAINER","features":[12,155]},{"name":"QACONTAINERFLAGS","features":[155]},{"name":"QACONTAINER_AUTOCLIP","features":[155]},{"name":"QACONTAINER_DISPLAYASDEFAULT","features":[155]},{"name":"QACONTAINER_MESSAGEREFLECT","features":[155]},{"name":"QACONTAINER_SHOWGRABHANDLES","features":[155]},{"name":"QACONTAINER_SHOWHATCHING","features":[155]},{"name":"QACONTAINER_SUPPORTSMNEMONICS","features":[155]},{"name":"QACONTAINER_UIDEAD","features":[155]},{"name":"QACONTAINER_USERMODE","features":[155]},{"name":"QACONTROL","features":[155]},{"name":"QueryPathOfRegTypeLib","features":[155]},{"name":"READYSTATE","features":[155]},{"name":"READYSTATE_COMPLETE","features":[155]},{"name":"READYSTATE_INTERACTIVE","features":[155]},{"name":"READYSTATE_LOADED","features":[155]},{"name":"READYSTATE_LOADING","features":[155]},{"name":"READYSTATE_UNINITIALIZED","features":[155]},{"name":"REGKIND","features":[155]},{"name":"REGKIND_DEFAULT","features":[155]},{"name":"REGKIND_NONE","features":[155]},{"name":"REGKIND_REGISTER","features":[155]},{"name":"RegisterActiveObject","features":[155]},{"name":"RegisterDragDrop","features":[1,155]},{"name":"RegisterTypeLib","features":[155]},{"name":"RegisterTypeLibForUser","features":[155]},{"name":"ReleaseStgMedium","features":[1,12,41,155]},{"name":"RevokeActiveObject","features":[155]},{"name":"RevokeDragDrop","features":[1,155]},{"name":"SAFEARRAYUNION","features":[1,41,155]},{"name":"SAFEARR_BRECORD","features":[155]},{"name":"SAFEARR_BSTR","features":[41,155]},{"name":"SAFEARR_DISPATCH","features":[155]},{"name":"SAFEARR_HAVEIID","features":[155]},{"name":"SAFEARR_UNKNOWN","features":[155]},{"name":"SAFEARR_VARIANT","features":[1,41,155]},{"name":"SELFREG_E_CLASS","features":[155]},{"name":"SELFREG_E_FIRST","features":[155]},{"name":"SELFREG_E_LAST","features":[155]},{"name":"SELFREG_E_TYPELIB","features":[155]},{"name":"SELFREG_S_FIRST","features":[155]},{"name":"SELFREG_S_LAST","features":[155]},{"name":"SF_BSTR","features":[155]},{"name":"SF_DISPATCH","features":[155]},{"name":"SF_ERROR","features":[155]},{"name":"SF_HAVEIID","features":[155]},{"name":"SF_I1","features":[155]},{"name":"SF_I2","features":[155]},{"name":"SF_I4","features":[155]},{"name":"SF_I8","features":[155]},{"name":"SF_RECORD","features":[155]},{"name":"SF_TYPE","features":[155]},{"name":"SF_UNKNOWN","features":[155]},{"name":"SF_VARIANT","features":[155]},{"name":"SID_GetCaller","features":[155]},{"name":"SID_ProvideRuntimeContext","features":[155]},{"name":"SID_VariantConversion","features":[155]},{"name":"STDOLE2_LCID","features":[155]},{"name":"STDOLE2_MAJORVERNUM","features":[155]},{"name":"STDOLE2_MINORVERNUM","features":[155]},{"name":"STDOLE_LCID","features":[155]},{"name":"STDOLE_MAJORVERNUM","features":[155]},{"name":"STDOLE_MINORVERNUM","features":[155]},{"name":"STDOLE_TLB","features":[155]},{"name":"STDTYPE_TLB","features":[155]},{"name":"SZOLEUI_MSG_ADDCONTROL","features":[155]},{"name":"SZOLEUI_MSG_BROWSE","features":[155]},{"name":"SZOLEUI_MSG_BROWSE_OFN","features":[155]},{"name":"SZOLEUI_MSG_CHANGEICON","features":[155]},{"name":"SZOLEUI_MSG_CHANGESOURCE","features":[155]},{"name":"SZOLEUI_MSG_CLOSEBUSYDIALOG","features":[155]},{"name":"SZOLEUI_MSG_CONVERT","features":[155]},{"name":"SZOLEUI_MSG_ENDDIALOG","features":[155]},{"name":"SZOLEUI_MSG_HELP","features":[155]},{"name":"SafeArrayAccessData","features":[41,155]},{"name":"SafeArrayAddRef","features":[41,155]},{"name":"SafeArrayAllocData","features":[41,155]},{"name":"SafeArrayAllocDescriptor","features":[41,155]},{"name":"SafeArrayAllocDescriptorEx","features":[41,155,42]},{"name":"SafeArrayCopy","features":[41,155]},{"name":"SafeArrayCopyData","features":[41,155]},{"name":"SafeArrayCreate","features":[41,155,42]},{"name":"SafeArrayCreateEx","features":[41,155,42]},{"name":"SafeArrayCreateVector","features":[41,155,42]},{"name":"SafeArrayCreateVectorEx","features":[41,155,42]},{"name":"SafeArrayDestroy","features":[41,155]},{"name":"SafeArrayDestroyData","features":[41,155]},{"name":"SafeArrayDestroyDescriptor","features":[41,155]},{"name":"SafeArrayGetDim","features":[41,155]},{"name":"SafeArrayGetElement","features":[41,155]},{"name":"SafeArrayGetElemsize","features":[41,155]},{"name":"SafeArrayGetIID","features":[41,155]},{"name":"SafeArrayGetLBound","features":[41,155]},{"name":"SafeArrayGetRecordInfo","features":[41,155]},{"name":"SafeArrayGetUBound","features":[41,155]},{"name":"SafeArrayGetVartype","features":[41,155,42]},{"name":"SafeArrayLock","features":[41,155]},{"name":"SafeArrayPtrOfIndex","features":[41,155]},{"name":"SafeArrayPutElement","features":[41,155]},{"name":"SafeArrayRedim","features":[41,155]},{"name":"SafeArrayReleaseData","features":[155]},{"name":"SafeArrayReleaseDescriptor","features":[41,155]},{"name":"SafeArraySetIID","features":[41,155]},{"name":"SafeArraySetRecordInfo","features":[41,155]},{"name":"SafeArrayUnaccessData","features":[41,155]},{"name":"SafeArrayUnlock","features":[41,155]},{"name":"TIFLAGS_EXTENDDISPATCHONLY","features":[155]},{"name":"TYPEFLAGS","features":[155]},{"name":"TYPEFLAG_FAGGREGATABLE","features":[155]},{"name":"TYPEFLAG_FAPPOBJECT","features":[155]},{"name":"TYPEFLAG_FCANCREATE","features":[155]},{"name":"TYPEFLAG_FCONTROL","features":[155]},{"name":"TYPEFLAG_FDISPATCHABLE","features":[155]},{"name":"TYPEFLAG_FDUAL","features":[155]},{"name":"TYPEFLAG_FHIDDEN","features":[155]},{"name":"TYPEFLAG_FLICENSED","features":[155]},{"name":"TYPEFLAG_FNONEXTENSIBLE","features":[155]},{"name":"TYPEFLAG_FOLEAUTOMATION","features":[155]},{"name":"TYPEFLAG_FPREDECLID","features":[155]},{"name":"TYPEFLAG_FPROXY","features":[155]},{"name":"TYPEFLAG_FREPLACEABLE","features":[155]},{"name":"TYPEFLAG_FRESTRICTED","features":[155]},{"name":"TYPEFLAG_FREVERSEBIND","features":[155]},{"name":"UASFLAGS","features":[155]},{"name":"UAS_BLOCKED","features":[155]},{"name":"UAS_MASK","features":[155]},{"name":"UAS_NOPARENTENABLE","features":[155]},{"name":"UAS_NORMAL","features":[155]},{"name":"UDATE","features":[1,155]},{"name":"UI_CONVERT_FLAGS","features":[155]},{"name":"UPDFCACHE_ALL","features":[155]},{"name":"UPDFCACHE_ALLBUTNODATACACHE","features":[155]},{"name":"UPDFCACHE_FLAGS","features":[155]},{"name":"UPDFCACHE_IFBLANK","features":[155]},{"name":"UPDFCACHE_IFBLANKORONSAVECACHE","features":[155]},{"name":"UPDFCACHE_NODATACACHE","features":[155]},{"name":"UPDFCACHE_NORMALCACHE","features":[155]},{"name":"UPDFCACHE_ONLYIFBLANK","features":[155]},{"name":"UPDFCACHE_ONSAVECACHE","features":[155]},{"name":"UPDFCACHE_ONSTOPCACHE","features":[155]},{"name":"USERCLASSTYPE","features":[155]},{"name":"USERCLASSTYPE_APPNAME","features":[155]},{"name":"USERCLASSTYPE_FULL","features":[155]},{"name":"USERCLASSTYPE_SHORT","features":[155]},{"name":"UnRegisterTypeLib","features":[41,155]},{"name":"UnRegisterTypeLibForUser","features":[41,155]},{"name":"VARCMP","features":[155]},{"name":"VARCMP_EQ","features":[155]},{"name":"VARCMP_GT","features":[155]},{"name":"VARCMP_LT","features":[155]},{"name":"VARCMP_NULL","features":[155]},{"name":"VARFORMAT_FIRST_DAY","features":[155]},{"name":"VARFORMAT_FIRST_DAY_FRIDAY","features":[155]},{"name":"VARFORMAT_FIRST_DAY_MONDAY","features":[155]},{"name":"VARFORMAT_FIRST_DAY_SATURDAY","features":[155]},{"name":"VARFORMAT_FIRST_DAY_SUNDAY","features":[155]},{"name":"VARFORMAT_FIRST_DAY_SYSTEMDEFAULT","features":[155]},{"name":"VARFORMAT_FIRST_DAY_THURSDAY","features":[155]},{"name":"VARFORMAT_FIRST_DAY_TUESDAY","features":[155]},{"name":"VARFORMAT_FIRST_DAY_WEDNESDAY","features":[155]},{"name":"VARFORMAT_FIRST_WEEK","features":[155]},{"name":"VARFORMAT_FIRST_WEEK_CONTAINS_JANUARY_FIRST","features":[155]},{"name":"VARFORMAT_FIRST_WEEK_HAS_SEVEN_DAYS","features":[155]},{"name":"VARFORMAT_FIRST_WEEK_LARGER_HALF_IN_CURRENT_YEAR","features":[155]},{"name":"VARFORMAT_FIRST_WEEK_SYSTEMDEFAULT","features":[155]},{"name":"VARFORMAT_GROUP","features":[155]},{"name":"VARFORMAT_GROUP_NOTTHOUSANDS","features":[155]},{"name":"VARFORMAT_GROUP_SYSTEMDEFAULT","features":[155]},{"name":"VARFORMAT_GROUP_THOUSANDS","features":[155]},{"name":"VARFORMAT_LEADING_DIGIT","features":[155]},{"name":"VARFORMAT_LEADING_DIGIT_INCLUDED","features":[155]},{"name":"VARFORMAT_LEADING_DIGIT_NOTINCLUDED","features":[155]},{"name":"VARFORMAT_LEADING_DIGIT_SYSTEMDEFAULT","features":[155]},{"name":"VARFORMAT_NAMED_FORMAT","features":[155]},{"name":"VARFORMAT_NAMED_FORMAT_GENERALDATE","features":[155]},{"name":"VARFORMAT_NAMED_FORMAT_LONGDATE","features":[155]},{"name":"VARFORMAT_NAMED_FORMAT_LONGTIME","features":[155]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTDATE","features":[155]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTTIME","features":[155]},{"name":"VARFORMAT_PARENTHESES","features":[155]},{"name":"VARFORMAT_PARENTHESES_NOTUSED","features":[155]},{"name":"VARFORMAT_PARENTHESES_SYSTEMDEFAULT","features":[155]},{"name":"VARFORMAT_PARENTHESES_USED","features":[155]},{"name":"VAR_CALENDAR_GREGORIAN","features":[155]},{"name":"VAR_CALENDAR_HIJRI","features":[155]},{"name":"VAR_CALENDAR_THAI","features":[155]},{"name":"VAR_DATEVALUEONLY","features":[155]},{"name":"VAR_FORMAT_NOSUBSTITUTE","features":[155]},{"name":"VAR_FOURDIGITYEARS","features":[155]},{"name":"VAR_LOCALBOOL","features":[155]},{"name":"VAR_TIMEVALUEONLY","features":[155]},{"name":"VAR_VALIDDATE","features":[155]},{"name":"VIEWSTATUS","features":[155]},{"name":"VIEWSTATUS_3DSURFACE","features":[155]},{"name":"VIEWSTATUS_DVASPECTOPAQUE","features":[155]},{"name":"VIEWSTATUS_DVASPECTTRANSPARENT","features":[155]},{"name":"VIEWSTATUS_OPAQUE","features":[155]},{"name":"VIEWSTATUS_SOLIDBKGND","features":[155]},{"name":"VIEWSTATUS_SURFACE","features":[155]},{"name":"VIEW_OBJECT_PROPERTIES_FLAGS","features":[155]},{"name":"VPF_DISABLERELATIVE","features":[155]},{"name":"VPF_DISABLESCALE","features":[155]},{"name":"VPF_SELECTRELATIVE","features":[155]},{"name":"VTDATEGRE_MAX","features":[155]},{"name":"VTDATEGRE_MIN","features":[155]},{"name":"VT_BLOB_PROPSET","features":[155]},{"name":"VT_STORED_PROPSET","features":[155]},{"name":"VT_STREAMED_PROPSET","features":[155]},{"name":"VT_VERBOSE_ENUM","features":[155]},{"name":"VarAbs","features":[1,41,155,42]},{"name":"VarAdd","features":[1,41,155,42]},{"name":"VarAnd","features":[1,41,155,42]},{"name":"VarBoolFromCy","features":[1,41,155]},{"name":"VarBoolFromDate","features":[1,155]},{"name":"VarBoolFromDec","features":[1,155]},{"name":"VarBoolFromDisp","features":[1,155]},{"name":"VarBoolFromI1","features":[1,155]},{"name":"VarBoolFromI2","features":[1,155]},{"name":"VarBoolFromI4","features":[1,155]},{"name":"VarBoolFromI8","features":[1,155]},{"name":"VarBoolFromR4","features":[1,155]},{"name":"VarBoolFromR8","features":[1,155]},{"name":"VarBoolFromStr","features":[1,155]},{"name":"VarBoolFromUI1","features":[1,155]},{"name":"VarBoolFromUI2","features":[1,155]},{"name":"VarBoolFromUI4","features":[1,155]},{"name":"VarBoolFromUI8","features":[1,155]},{"name":"VarBstrCat","features":[155]},{"name":"VarBstrCmp","features":[155]},{"name":"VarBstrFromBool","features":[1,155]},{"name":"VarBstrFromCy","features":[41,155]},{"name":"VarBstrFromDate","features":[155]},{"name":"VarBstrFromDec","features":[1,155]},{"name":"VarBstrFromDisp","features":[155]},{"name":"VarBstrFromI1","features":[155]},{"name":"VarBstrFromI2","features":[155]},{"name":"VarBstrFromI4","features":[155]},{"name":"VarBstrFromI8","features":[155]},{"name":"VarBstrFromR4","features":[155]},{"name":"VarBstrFromR8","features":[155]},{"name":"VarBstrFromUI1","features":[155]},{"name":"VarBstrFromUI2","features":[155]},{"name":"VarBstrFromUI4","features":[155]},{"name":"VarBstrFromUI8","features":[155]},{"name":"VarCat","features":[1,41,155,42]},{"name":"VarCmp","features":[1,41,155,42]},{"name":"VarCyAbs","features":[41,155]},{"name":"VarCyAdd","features":[41,155]},{"name":"VarCyCmp","features":[41,155]},{"name":"VarCyCmpR8","features":[41,155]},{"name":"VarCyFix","features":[41,155]},{"name":"VarCyFromBool","features":[1,41,155]},{"name":"VarCyFromDate","features":[41,155]},{"name":"VarCyFromDec","features":[1,41,155]},{"name":"VarCyFromDisp","features":[41,155]},{"name":"VarCyFromI1","features":[41,155]},{"name":"VarCyFromI2","features":[41,155]},{"name":"VarCyFromI4","features":[41,155]},{"name":"VarCyFromI8","features":[41,155]},{"name":"VarCyFromR4","features":[41,155]},{"name":"VarCyFromR8","features":[41,155]},{"name":"VarCyFromStr","features":[41,155]},{"name":"VarCyFromUI1","features":[41,155]},{"name":"VarCyFromUI2","features":[41,155]},{"name":"VarCyFromUI4","features":[41,155]},{"name":"VarCyFromUI8","features":[41,155]},{"name":"VarCyInt","features":[41,155]},{"name":"VarCyMul","features":[41,155]},{"name":"VarCyMulI4","features":[41,155]},{"name":"VarCyMulI8","features":[41,155]},{"name":"VarCyNeg","features":[41,155]},{"name":"VarCyRound","features":[41,155]},{"name":"VarCySub","features":[41,155]},{"name":"VarDateFromBool","features":[1,155]},{"name":"VarDateFromCy","features":[41,155]},{"name":"VarDateFromDec","features":[1,155]},{"name":"VarDateFromDisp","features":[155]},{"name":"VarDateFromI1","features":[155]},{"name":"VarDateFromI2","features":[155]},{"name":"VarDateFromI4","features":[155]},{"name":"VarDateFromI8","features":[155]},{"name":"VarDateFromR4","features":[155]},{"name":"VarDateFromR8","features":[155]},{"name":"VarDateFromStr","features":[155]},{"name":"VarDateFromUI1","features":[155]},{"name":"VarDateFromUI2","features":[155]},{"name":"VarDateFromUI4","features":[155]},{"name":"VarDateFromUI8","features":[155]},{"name":"VarDateFromUdate","features":[1,155]},{"name":"VarDateFromUdateEx","features":[1,155]},{"name":"VarDecAbs","features":[1,155]},{"name":"VarDecAdd","features":[1,155]},{"name":"VarDecCmp","features":[1,155]},{"name":"VarDecCmpR8","features":[1,155]},{"name":"VarDecDiv","features":[1,155]},{"name":"VarDecFix","features":[1,155]},{"name":"VarDecFromBool","features":[1,155]},{"name":"VarDecFromCy","features":[1,41,155]},{"name":"VarDecFromDate","features":[1,155]},{"name":"VarDecFromDisp","features":[1,155]},{"name":"VarDecFromI1","features":[1,155]},{"name":"VarDecFromI2","features":[1,155]},{"name":"VarDecFromI4","features":[1,155]},{"name":"VarDecFromI8","features":[1,155]},{"name":"VarDecFromR4","features":[1,155]},{"name":"VarDecFromR8","features":[1,155]},{"name":"VarDecFromStr","features":[1,155]},{"name":"VarDecFromUI1","features":[1,155]},{"name":"VarDecFromUI2","features":[1,155]},{"name":"VarDecFromUI4","features":[1,155]},{"name":"VarDecFromUI8","features":[1,155]},{"name":"VarDecInt","features":[1,155]},{"name":"VarDecMul","features":[1,155]},{"name":"VarDecNeg","features":[1,155]},{"name":"VarDecRound","features":[1,155]},{"name":"VarDecSub","features":[1,155]},{"name":"VarDiv","features":[1,41,155,42]},{"name":"VarEqv","features":[1,41,155,42]},{"name":"VarFix","features":[1,41,155,42]},{"name":"VarFormat","features":[1,41,155,42]},{"name":"VarFormatCurrency","features":[1,41,155,42]},{"name":"VarFormatDateTime","features":[1,41,155,42]},{"name":"VarFormatFromTokens","features":[1,41,155,42]},{"name":"VarFormatNumber","features":[1,41,155,42]},{"name":"VarFormatPercent","features":[1,41,155,42]},{"name":"VarI1FromBool","features":[1,155]},{"name":"VarI1FromCy","features":[41,155]},{"name":"VarI1FromDate","features":[155]},{"name":"VarI1FromDec","features":[1,155]},{"name":"VarI1FromDisp","features":[155]},{"name":"VarI1FromI2","features":[155]},{"name":"VarI1FromI4","features":[155]},{"name":"VarI1FromI8","features":[155]},{"name":"VarI1FromR4","features":[155]},{"name":"VarI1FromR8","features":[155]},{"name":"VarI1FromStr","features":[155]},{"name":"VarI1FromUI1","features":[155]},{"name":"VarI1FromUI2","features":[155]},{"name":"VarI1FromUI4","features":[155]},{"name":"VarI1FromUI8","features":[155]},{"name":"VarI2FromBool","features":[1,155]},{"name":"VarI2FromCy","features":[41,155]},{"name":"VarI2FromDate","features":[155]},{"name":"VarI2FromDec","features":[1,155]},{"name":"VarI2FromDisp","features":[155]},{"name":"VarI2FromI1","features":[155]},{"name":"VarI2FromI4","features":[155]},{"name":"VarI2FromI8","features":[155]},{"name":"VarI2FromR4","features":[155]},{"name":"VarI2FromR8","features":[155]},{"name":"VarI2FromStr","features":[155]},{"name":"VarI2FromUI1","features":[155]},{"name":"VarI2FromUI2","features":[155]},{"name":"VarI2FromUI4","features":[155]},{"name":"VarI2FromUI8","features":[155]},{"name":"VarI4FromBool","features":[1,155]},{"name":"VarI4FromCy","features":[41,155]},{"name":"VarI4FromDate","features":[155]},{"name":"VarI4FromDec","features":[1,155]},{"name":"VarI4FromDisp","features":[155]},{"name":"VarI4FromI1","features":[155]},{"name":"VarI4FromI2","features":[155]},{"name":"VarI4FromI8","features":[155]},{"name":"VarI4FromR4","features":[155]},{"name":"VarI4FromR8","features":[155]},{"name":"VarI4FromStr","features":[155]},{"name":"VarI4FromUI1","features":[155]},{"name":"VarI4FromUI2","features":[155]},{"name":"VarI4FromUI4","features":[155]},{"name":"VarI4FromUI8","features":[155]},{"name":"VarI8FromBool","features":[1,155]},{"name":"VarI8FromCy","features":[41,155]},{"name":"VarI8FromDate","features":[155]},{"name":"VarI8FromDec","features":[1,155]},{"name":"VarI8FromDisp","features":[155]},{"name":"VarI8FromI1","features":[155]},{"name":"VarI8FromI2","features":[155]},{"name":"VarI8FromR4","features":[155]},{"name":"VarI8FromR8","features":[155]},{"name":"VarI8FromStr","features":[155]},{"name":"VarI8FromUI1","features":[155]},{"name":"VarI8FromUI2","features":[155]},{"name":"VarI8FromUI4","features":[155]},{"name":"VarI8FromUI8","features":[155]},{"name":"VarIdiv","features":[1,41,155,42]},{"name":"VarImp","features":[1,41,155,42]},{"name":"VarInt","features":[1,41,155,42]},{"name":"VarMod","features":[1,41,155,42]},{"name":"VarMonthName","features":[155]},{"name":"VarMul","features":[1,41,155,42]},{"name":"VarNeg","features":[1,41,155,42]},{"name":"VarNot","features":[1,41,155,42]},{"name":"VarNumFromParseNum","features":[1,41,155,42]},{"name":"VarOr","features":[1,41,155,42]},{"name":"VarParseNumFromStr","features":[155]},{"name":"VarPow","features":[1,41,155,42]},{"name":"VarR4CmpR8","features":[155]},{"name":"VarR4FromBool","features":[1,155]},{"name":"VarR4FromCy","features":[41,155]},{"name":"VarR4FromDate","features":[155]},{"name":"VarR4FromDec","features":[1,155]},{"name":"VarR4FromDisp","features":[155]},{"name":"VarR4FromI1","features":[155]},{"name":"VarR4FromI2","features":[155]},{"name":"VarR4FromI4","features":[155]},{"name":"VarR4FromI8","features":[155]},{"name":"VarR4FromR8","features":[155]},{"name":"VarR4FromStr","features":[155]},{"name":"VarR4FromUI1","features":[155]},{"name":"VarR4FromUI2","features":[155]},{"name":"VarR4FromUI4","features":[155]},{"name":"VarR4FromUI8","features":[155]},{"name":"VarR8FromBool","features":[1,155]},{"name":"VarR8FromCy","features":[41,155]},{"name":"VarR8FromDate","features":[155]},{"name":"VarR8FromDec","features":[1,155]},{"name":"VarR8FromDisp","features":[155]},{"name":"VarR8FromI1","features":[155]},{"name":"VarR8FromI2","features":[155]},{"name":"VarR8FromI4","features":[155]},{"name":"VarR8FromI8","features":[155]},{"name":"VarR8FromR4","features":[155]},{"name":"VarR8FromStr","features":[155]},{"name":"VarR8FromUI1","features":[155]},{"name":"VarR8FromUI2","features":[155]},{"name":"VarR8FromUI4","features":[155]},{"name":"VarR8FromUI8","features":[155]},{"name":"VarR8Pow","features":[155]},{"name":"VarR8Round","features":[155]},{"name":"VarRound","features":[1,41,155,42]},{"name":"VarSub","features":[1,41,155,42]},{"name":"VarTokenizeFormatString","features":[155]},{"name":"VarUI1FromBool","features":[1,155]},{"name":"VarUI1FromCy","features":[41,155]},{"name":"VarUI1FromDate","features":[155]},{"name":"VarUI1FromDec","features":[1,155]},{"name":"VarUI1FromDisp","features":[155]},{"name":"VarUI1FromI1","features":[155]},{"name":"VarUI1FromI2","features":[155]},{"name":"VarUI1FromI4","features":[155]},{"name":"VarUI1FromI8","features":[155]},{"name":"VarUI1FromR4","features":[155]},{"name":"VarUI1FromR8","features":[155]},{"name":"VarUI1FromStr","features":[155]},{"name":"VarUI1FromUI2","features":[155]},{"name":"VarUI1FromUI4","features":[155]},{"name":"VarUI1FromUI8","features":[155]},{"name":"VarUI2FromBool","features":[1,155]},{"name":"VarUI2FromCy","features":[41,155]},{"name":"VarUI2FromDate","features":[155]},{"name":"VarUI2FromDec","features":[1,155]},{"name":"VarUI2FromDisp","features":[155]},{"name":"VarUI2FromI1","features":[155]},{"name":"VarUI2FromI2","features":[155]},{"name":"VarUI2FromI4","features":[155]},{"name":"VarUI2FromI8","features":[155]},{"name":"VarUI2FromR4","features":[155]},{"name":"VarUI2FromR8","features":[155]},{"name":"VarUI2FromStr","features":[155]},{"name":"VarUI2FromUI1","features":[155]},{"name":"VarUI2FromUI4","features":[155]},{"name":"VarUI2FromUI8","features":[155]},{"name":"VarUI4FromBool","features":[1,155]},{"name":"VarUI4FromCy","features":[41,155]},{"name":"VarUI4FromDate","features":[155]},{"name":"VarUI4FromDec","features":[1,155]},{"name":"VarUI4FromDisp","features":[155]},{"name":"VarUI4FromI1","features":[155]},{"name":"VarUI4FromI2","features":[155]},{"name":"VarUI4FromI4","features":[155]},{"name":"VarUI4FromI8","features":[155]},{"name":"VarUI4FromR4","features":[155]},{"name":"VarUI4FromR8","features":[155]},{"name":"VarUI4FromStr","features":[155]},{"name":"VarUI4FromUI1","features":[155]},{"name":"VarUI4FromUI2","features":[155]},{"name":"VarUI4FromUI8","features":[155]},{"name":"VarUI8FromBool","features":[1,155]},{"name":"VarUI8FromCy","features":[41,155]},{"name":"VarUI8FromDate","features":[155]},{"name":"VarUI8FromDec","features":[1,155]},{"name":"VarUI8FromDisp","features":[155]},{"name":"VarUI8FromI1","features":[155]},{"name":"VarUI8FromI2","features":[155]},{"name":"VarUI8FromI8","features":[155]},{"name":"VarUI8FromR4","features":[155]},{"name":"VarUI8FromR8","features":[155]},{"name":"VarUI8FromStr","features":[155]},{"name":"VarUI8FromUI1","features":[155]},{"name":"VarUI8FromUI2","features":[155]},{"name":"VarUI8FromUI4","features":[155]},{"name":"VarUdateFromDate","features":[1,155]},{"name":"VarWeekdayName","features":[155]},{"name":"VarXor","features":[1,41,155,42]},{"name":"VectorFromBstr","features":[41,155]},{"name":"WIN32","features":[155]},{"name":"WPCSETTING","features":[155]},{"name":"WPCSETTING_FILEDOWNLOAD_BLOCKED","features":[155]},{"name":"WPCSETTING_LOGGING_ENABLED","features":[155]},{"name":"XFORMCOORDS","features":[155]},{"name":"XFORMCOORDS_CONTAINERTOHIMETRIC","features":[155]},{"name":"XFORMCOORDS_EVENTCOMPAT","features":[155]},{"name":"XFORMCOORDS_HIMETRICTOCONTAINER","features":[155]},{"name":"XFORMCOORDS_POSITION","features":[155]},{"name":"XFORMCOORDS_SIZE","features":[155]},{"name":"_wireBRECORD","features":[155]},{"name":"_wireSAFEARRAY","features":[1,41,155]},{"name":"_wireVARIANT","features":[1,41,155]},{"name":"fdexEnumAll","features":[155]},{"name":"fdexEnumDefault","features":[155]},{"name":"fdexNameCaseInsensitive","features":[155]},{"name":"fdexNameCaseSensitive","features":[155]},{"name":"fdexNameEnsure","features":[155]},{"name":"fdexNameImplicit","features":[155]},{"name":"fdexNameInternal","features":[155]},{"name":"fdexNameNoDynamicProperties","features":[155]},{"name":"fdexPropCanCall","features":[155]},{"name":"fdexPropCanConstruct","features":[155]},{"name":"fdexPropCanGet","features":[155]},{"name":"fdexPropCanPut","features":[155]},{"name":"fdexPropCanPutRef","features":[155]},{"name":"fdexPropCanSourceEvents","features":[155]},{"name":"fdexPropCannotCall","features":[155]},{"name":"fdexPropCannotConstruct","features":[155]},{"name":"fdexPropCannotGet","features":[155]},{"name":"fdexPropCannotPut","features":[155]},{"name":"fdexPropCannotPutRef","features":[155]},{"name":"fdexPropCannotSourceEvents","features":[155]},{"name":"fdexPropDynamicType","features":[155]},{"name":"fdexPropNoSideEffects","features":[155]},{"name":"triChecked","features":[155]},{"name":"triGray","features":[155]},{"name":"triUnchecked","features":[155]}],"587":[{"name":"CYPHER_BLOCK","features":[119]},{"name":"ENCRYPTED_LM_OWF_PASSWORD","features":[119]},{"name":"LM_OWF_PASSWORD","features":[119]},{"name":"MSChapSrvChangePassword","features":[1,119]},{"name":"MSChapSrvChangePassword2","features":[1,119]},{"name":"SAMPR_ENCRYPTED_USER_PASSWORD","features":[119]}],"588":[{"name":"AppearPropPage","features":[189]},{"name":"AutoPathFormat","features":[189]},{"name":"BackupPerfRegistryToFileW","features":[189]},{"name":"BootTraceSession","features":[189]},{"name":"BootTraceSessionCollection","features":[189]},{"name":"ClockType","features":[189]},{"name":"CommitMode","features":[189]},{"name":"CounterItem","features":[189]},{"name":"CounterItem2","features":[189]},{"name":"CounterPathCallBack","features":[189]},{"name":"CounterPropPage","features":[189]},{"name":"Counters","features":[189]},{"name":"DATA_SOURCE_REGISTRY","features":[189]},{"name":"DATA_SOURCE_WBEM","features":[189]},{"name":"DICounterItem","features":[189]},{"name":"DIID_DICounterItem","features":[189]},{"name":"DIID_DILogFileItem","features":[189]},{"name":"DIID_DISystemMonitor","features":[189]},{"name":"DIID_DISystemMonitorEvents","features":[189]},{"name":"DIID_DISystemMonitorInternal","features":[189]},{"name":"DILogFileItem","features":[189]},{"name":"DISystemMonitor","features":[189]},{"name":"DISystemMonitorEvents","features":[189]},{"name":"DISystemMonitorInternal","features":[189]},{"name":"DataCollectorSet","features":[189]},{"name":"DataCollectorSetCollection","features":[189]},{"name":"DataCollectorSetStatus","features":[189]},{"name":"DataCollectorType","features":[189]},{"name":"DataManagerSteps","features":[189]},{"name":"DataSourceTypeConstants","features":[189]},{"name":"DisplayTypeConstants","features":[189]},{"name":"FileFormat","features":[189]},{"name":"FolderActionSteps","features":[189]},{"name":"GeneralPropPage","features":[189]},{"name":"GraphPropPage","features":[189]},{"name":"H_WBEM_DATASOURCE","features":[189]},{"name":"IAlertDataCollector","features":[189]},{"name":"IApiTracingDataCollector","features":[189]},{"name":"IConfigurationDataCollector","features":[189]},{"name":"ICounterItem","features":[189]},{"name":"ICounterItem2","features":[189]},{"name":"ICounters","features":[189]},{"name":"IDataCollector","features":[189]},{"name":"IDataCollectorCollection","features":[189]},{"name":"IDataCollectorSet","features":[189]},{"name":"IDataCollectorSetCollection","features":[189]},{"name":"IDataManager","features":[189]},{"name":"IFolderAction","features":[189]},{"name":"IFolderActionCollection","features":[189]},{"name":"ILogFileItem","features":[189]},{"name":"ILogFiles","features":[189]},{"name":"IPerformanceCounterDataCollector","features":[189]},{"name":"ISchedule","features":[189]},{"name":"IScheduleCollection","features":[189]},{"name":"ISystemMonitor","features":[189]},{"name":"ISystemMonitor2","features":[189]},{"name":"ISystemMonitorEvents","features":[189]},{"name":"ITraceDataCollector","features":[189]},{"name":"ITraceDataProvider","features":[189]},{"name":"ITraceDataProviderCollection","features":[189]},{"name":"IValueMap","features":[189]},{"name":"IValueMapItem","features":[189]},{"name":"InstallPerfDllA","features":[189]},{"name":"InstallPerfDllW","features":[189]},{"name":"LIBID_SystemMonitor","features":[189]},{"name":"LegacyDataCollectorSet","features":[189]},{"name":"LegacyDataCollectorSetCollection","features":[189]},{"name":"LegacyTraceSession","features":[189]},{"name":"LegacyTraceSessionCollection","features":[189]},{"name":"LoadPerfCounterTextStringsA","features":[1,189]},{"name":"LoadPerfCounterTextStringsW","features":[1,189]},{"name":"LogFileItem","features":[189]},{"name":"LogFiles","features":[189]},{"name":"MAX_COUNTER_PATH","features":[189]},{"name":"MAX_PERF_OBJECTS_IN_QUERY_FUNCTION","features":[189]},{"name":"PDH_ACCESS_DENIED","features":[189]},{"name":"PDH_ASYNC_QUERY_TIMEOUT","features":[189]},{"name":"PDH_BINARY_LOG_CORRUPT","features":[189]},{"name":"PDH_BROWSE_DLG_CONFIG_A","features":[1,189]},{"name":"PDH_BROWSE_DLG_CONFIG_HA","features":[1,189]},{"name":"PDH_BROWSE_DLG_CONFIG_HW","features":[1,189]},{"name":"PDH_BROWSE_DLG_CONFIG_W","features":[1,189]},{"name":"PDH_CALC_NEGATIVE_DENOMINATOR","features":[189]},{"name":"PDH_CALC_NEGATIVE_TIMEBASE","features":[189]},{"name":"PDH_CALC_NEGATIVE_VALUE","features":[189]},{"name":"PDH_CANNOT_CONNECT_MACHINE","features":[189]},{"name":"PDH_CANNOT_CONNECT_WMI_SERVER","features":[189]},{"name":"PDH_CANNOT_READ_NAME_STRINGS","features":[189]},{"name":"PDH_CANNOT_SET_DEFAULT_REALTIME_DATASOURCE","features":[189]},{"name":"PDH_COUNTER_ALREADY_IN_QUERY","features":[189]},{"name":"PDH_COUNTER_INFO_A","features":[189]},{"name":"PDH_COUNTER_INFO_W","features":[189]},{"name":"PDH_COUNTER_PATH_ELEMENTS_A","features":[189]},{"name":"PDH_COUNTER_PATH_ELEMENTS_W","features":[189]},{"name":"PDH_CSTATUS_BAD_COUNTERNAME","features":[189]},{"name":"PDH_CSTATUS_INVALID_DATA","features":[189]},{"name":"PDH_CSTATUS_ITEM_NOT_VALIDATED","features":[189]},{"name":"PDH_CSTATUS_NEW_DATA","features":[189]},{"name":"PDH_CSTATUS_NO_COUNTER","features":[189]},{"name":"PDH_CSTATUS_NO_COUNTERNAME","features":[189]},{"name":"PDH_CSTATUS_NO_INSTANCE","features":[189]},{"name":"PDH_CSTATUS_NO_MACHINE","features":[189]},{"name":"PDH_CSTATUS_NO_OBJECT","features":[189]},{"name":"PDH_CSTATUS_VALID_DATA","features":[189]},{"name":"PDH_CVERSION_WIN50","features":[189]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_A","features":[189]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_W","features":[189]},{"name":"PDH_DATA_SOURCE_IS_LOG_FILE","features":[189]},{"name":"PDH_DATA_SOURCE_IS_REAL_TIME","features":[189]},{"name":"PDH_DIALOG_CANCELLED","features":[189]},{"name":"PDH_DLL_VERSION","features":[189]},{"name":"PDH_END_OF_LOG_FILE","features":[189]},{"name":"PDH_ENTRY_NOT_IN_LOG_FILE","features":[189]},{"name":"PDH_FILE_ALREADY_EXISTS","features":[189]},{"name":"PDH_FILE_NOT_FOUND","features":[189]},{"name":"PDH_FLAGS_FILE_BROWSER_ONLY","features":[189]},{"name":"PDH_FLAGS_NONE","features":[189]},{"name":"PDH_FMT","features":[189]},{"name":"PDH_FMT_COUNTERVALUE","features":[189]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_A","features":[189]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_W","features":[189]},{"name":"PDH_FMT_DOUBLE","features":[189]},{"name":"PDH_FMT_LARGE","features":[189]},{"name":"PDH_FMT_LONG","features":[189]},{"name":"PDH_FUNCTION_NOT_FOUND","features":[189]},{"name":"PDH_INCORRECT_APPEND_TIME","features":[189]},{"name":"PDH_INSUFFICIENT_BUFFER","features":[189]},{"name":"PDH_INVALID_ARGUMENT","features":[189]},{"name":"PDH_INVALID_BUFFER","features":[189]},{"name":"PDH_INVALID_DATA","features":[189]},{"name":"PDH_INVALID_DATASOURCE","features":[189]},{"name":"PDH_INVALID_HANDLE","features":[189]},{"name":"PDH_INVALID_INSTANCE","features":[189]},{"name":"PDH_INVALID_PATH","features":[189]},{"name":"PDH_INVALID_SQLDB","features":[189]},{"name":"PDH_INVALID_SQL_LOG_FORMAT","features":[189]},{"name":"PDH_LOG","features":[189]},{"name":"PDH_LOGSVC_NOT_OPENED","features":[189]},{"name":"PDH_LOGSVC_QUERY_NOT_FOUND","features":[189]},{"name":"PDH_LOG_FILE_CREATE_ERROR","features":[189]},{"name":"PDH_LOG_FILE_OPEN_ERROR","features":[189]},{"name":"PDH_LOG_FILE_TOO_SMALL","features":[189]},{"name":"PDH_LOG_READ_ACCESS","features":[189]},{"name":"PDH_LOG_SAMPLE_TOO_SMALL","features":[189]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_A","features":[1,189]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_W","features":[1,189]},{"name":"PDH_LOG_TYPE","features":[189]},{"name":"PDH_LOG_TYPE_BINARY","features":[189]},{"name":"PDH_LOG_TYPE_CSV","features":[189]},{"name":"PDH_LOG_TYPE_NOT_FOUND","features":[189]},{"name":"PDH_LOG_TYPE_PERFMON","features":[189]},{"name":"PDH_LOG_TYPE_RETIRED_BIN","features":[189]},{"name":"PDH_LOG_TYPE_SQL","features":[189]},{"name":"PDH_LOG_TYPE_TRACE_GENERIC","features":[189]},{"name":"PDH_LOG_TYPE_TRACE_KERNEL","features":[189]},{"name":"PDH_LOG_TYPE_TSV","features":[189]},{"name":"PDH_LOG_TYPE_UNDEFINED","features":[189]},{"name":"PDH_LOG_UPDATE_ACCESS","features":[189]},{"name":"PDH_LOG_WRITE_ACCESS","features":[189]},{"name":"PDH_MAX_COUNTER_NAME","features":[189]},{"name":"PDH_MAX_COUNTER_PATH","features":[189]},{"name":"PDH_MAX_DATASOURCE_PATH","features":[189]},{"name":"PDH_MAX_INSTANCE_NAME","features":[189]},{"name":"PDH_MAX_SCALE","features":[189]},{"name":"PDH_MEMORY_ALLOCATION_FAILURE","features":[189]},{"name":"PDH_MIN_SCALE","features":[189]},{"name":"PDH_MORE_DATA","features":[189]},{"name":"PDH_NOEXPANDCOUNTERS","features":[189]},{"name":"PDH_NOEXPANDINSTANCES","features":[189]},{"name":"PDH_NOT_IMPLEMENTED","features":[189]},{"name":"PDH_NO_COUNTERS","features":[189]},{"name":"PDH_NO_DATA","features":[189]},{"name":"PDH_NO_DIALOG_DATA","features":[189]},{"name":"PDH_NO_MORE_DATA","features":[189]},{"name":"PDH_OS_EARLIER_VERSION","features":[189]},{"name":"PDH_OS_LATER_VERSION","features":[189]},{"name":"PDH_PATH_FLAGS","features":[189]},{"name":"PDH_PATH_WBEM_INPUT","features":[189]},{"name":"PDH_PATH_WBEM_NONE","features":[189]},{"name":"PDH_PATH_WBEM_RESULT","features":[189]},{"name":"PDH_PLA_COLLECTION_ALREADY_RUNNING","features":[189]},{"name":"PDH_PLA_COLLECTION_NOT_FOUND","features":[189]},{"name":"PDH_PLA_ERROR_ALREADY_EXISTS","features":[189]},{"name":"PDH_PLA_ERROR_FILEPATH","features":[189]},{"name":"PDH_PLA_ERROR_NAME_TOO_LONG","features":[189]},{"name":"PDH_PLA_ERROR_NOSTART","features":[189]},{"name":"PDH_PLA_ERROR_SCHEDULE_ELAPSED","features":[189]},{"name":"PDH_PLA_ERROR_SCHEDULE_OVERLAP","features":[189]},{"name":"PDH_PLA_ERROR_TYPE_MISMATCH","features":[189]},{"name":"PDH_PLA_SERVICE_ERROR","features":[189]},{"name":"PDH_PLA_VALIDATION_ERROR","features":[189]},{"name":"PDH_PLA_VALIDATION_WARNING","features":[189]},{"name":"PDH_QUERY_PERF_DATA_TIMEOUT","features":[189]},{"name":"PDH_RAW_COUNTER","features":[1,189]},{"name":"PDH_RAW_COUNTER_ITEM_A","features":[1,189]},{"name":"PDH_RAW_COUNTER_ITEM_W","features":[1,189]},{"name":"PDH_RAW_LOG_RECORD","features":[189]},{"name":"PDH_REFRESHCOUNTERS","features":[189]},{"name":"PDH_RETRY","features":[189]},{"name":"PDH_SELECT_DATA_SOURCE_FLAGS","features":[189]},{"name":"PDH_SQL_ALLOCCON_FAILED","features":[189]},{"name":"PDH_SQL_ALLOC_FAILED","features":[189]},{"name":"PDH_SQL_ALTER_DETAIL_FAILED","features":[189]},{"name":"PDH_SQL_BIND_FAILED","features":[189]},{"name":"PDH_SQL_CONNECT_FAILED","features":[189]},{"name":"PDH_SQL_EXEC_DIRECT_FAILED","features":[189]},{"name":"PDH_SQL_FETCH_FAILED","features":[189]},{"name":"PDH_SQL_MORE_RESULTS_FAILED","features":[189]},{"name":"PDH_SQL_ROWCOUNT_FAILED","features":[189]},{"name":"PDH_STATISTICS","features":[189]},{"name":"PDH_STRING_NOT_FOUND","features":[189]},{"name":"PDH_TIME_INFO","features":[189]},{"name":"PDH_UNABLE_MAP_NAME_FILES","features":[189]},{"name":"PDH_UNABLE_READ_LOG_HEADER","features":[189]},{"name":"PDH_UNKNOWN_LOGSVC_COMMAND","features":[189]},{"name":"PDH_UNKNOWN_LOG_FORMAT","features":[189]},{"name":"PDH_UNMATCHED_APPEND_COUNTER","features":[189]},{"name":"PDH_VERSION","features":[189]},{"name":"PDH_WBEM_ERROR","features":[189]},{"name":"PERFLIBREQUEST","features":[189]},{"name":"PERF_ADD_COUNTER","features":[189]},{"name":"PERF_AGGREGATE_AVG","features":[189]},{"name":"PERF_AGGREGATE_INSTANCE","features":[189]},{"name":"PERF_AGGREGATE_MAX","features":[189]},{"name":"PERF_AGGREGATE_MIN","features":[189]},{"name":"PERF_AGGREGATE_TOTAL","features":[189]},{"name":"PERF_AGGREGATE_UNDEFINED","features":[189]},{"name":"PERF_ATTRIB_BY_REFERENCE","features":[189]},{"name":"PERF_ATTRIB_DISPLAY_AS_HEX","features":[189]},{"name":"PERF_ATTRIB_DISPLAY_AS_REAL","features":[189]},{"name":"PERF_ATTRIB_NO_DISPLAYABLE","features":[189]},{"name":"PERF_ATTRIB_NO_GROUP_SEPARATOR","features":[189]},{"name":"PERF_COLLECT_END","features":[189]},{"name":"PERF_COLLECT_START","features":[189]},{"name":"PERF_COUNTERSET","features":[189]},{"name":"PERF_COUNTERSET_FLAG_AGGREGATE","features":[189]},{"name":"PERF_COUNTERSET_FLAG_HISTORY","features":[189]},{"name":"PERF_COUNTERSET_FLAG_INSTANCE","features":[189]},{"name":"PERF_COUNTERSET_FLAG_MULTIPLE","features":[189]},{"name":"PERF_COUNTERSET_INFO","features":[189]},{"name":"PERF_COUNTERSET_INSTANCE","features":[189]},{"name":"PERF_COUNTERSET_MULTI_INSTANCES","features":[189]},{"name":"PERF_COUNTERSET_REG_INFO","features":[189]},{"name":"PERF_COUNTERSET_SINGLE_AGGREGATE","features":[189]},{"name":"PERF_COUNTERSET_SINGLE_INSTANCE","features":[189]},{"name":"PERF_COUNTER_AGGREGATE_FUNC","features":[189]},{"name":"PERF_COUNTER_BASE","features":[189]},{"name":"PERF_COUNTER_BLOCK","features":[189]},{"name":"PERF_COUNTER_DATA","features":[189]},{"name":"PERF_COUNTER_DEFINITION","features":[189]},{"name":"PERF_COUNTER_DEFINITION","features":[189]},{"name":"PERF_COUNTER_ELAPSED","features":[189]},{"name":"PERF_COUNTER_FRACTION","features":[189]},{"name":"PERF_COUNTER_HEADER","features":[189]},{"name":"PERF_COUNTER_HISTOGRAM","features":[189]},{"name":"PERF_COUNTER_HISTOGRAM_TYPE","features":[189]},{"name":"PERF_COUNTER_IDENTIFIER","features":[189]},{"name":"PERF_COUNTER_IDENTITY","features":[189]},{"name":"PERF_COUNTER_INFO","features":[189]},{"name":"PERF_COUNTER_PRECISION","features":[189]},{"name":"PERF_COUNTER_QUEUELEN","features":[189]},{"name":"PERF_COUNTER_RATE","features":[189]},{"name":"PERF_COUNTER_REG_INFO","features":[189]},{"name":"PERF_COUNTER_VALUE","features":[189]},{"name":"PERF_DATA_BLOCK","features":[1,189]},{"name":"PERF_DATA_HEADER","features":[1,189]},{"name":"PERF_DATA_REVISION","features":[189]},{"name":"PERF_DATA_VERSION","features":[189]},{"name":"PERF_DELTA_BASE","features":[189]},{"name":"PERF_DELTA_COUNTER","features":[189]},{"name":"PERF_DETAIL","features":[189]},{"name":"PERF_DETAIL_ADVANCED","features":[189]},{"name":"PERF_DETAIL_EXPERT","features":[189]},{"name":"PERF_DETAIL_NOVICE","features":[189]},{"name":"PERF_DETAIL_WIZARD","features":[189]},{"name":"PERF_DISPLAY_NOSHOW","features":[189]},{"name":"PERF_DISPLAY_NO_SUFFIX","features":[189]},{"name":"PERF_DISPLAY_PERCENT","features":[189]},{"name":"PERF_DISPLAY_PER_SEC","features":[189]},{"name":"PERF_DISPLAY_SECONDS","features":[189]},{"name":"PERF_ENUM_INSTANCES","features":[189]},{"name":"PERF_ERROR_RETURN","features":[189]},{"name":"PERF_FILTER","features":[189]},{"name":"PERF_INSTANCE_DEFINITION","features":[189]},{"name":"PERF_INSTANCE_HEADER","features":[189]},{"name":"PERF_INVERSE_COUNTER","features":[189]},{"name":"PERF_MAX_INSTANCE_NAME","features":[189]},{"name":"PERF_MEM_ALLOC","features":[189]},{"name":"PERF_MEM_FREE","features":[189]},{"name":"PERF_METADATA_MULTIPLE_INSTANCES","features":[189]},{"name":"PERF_METADATA_NO_INSTANCES","features":[189]},{"name":"PERF_MULTIPLE_COUNTERS","features":[189]},{"name":"PERF_MULTIPLE_INSTANCES","features":[189]},{"name":"PERF_MULTI_COUNTER","features":[189]},{"name":"PERF_MULTI_COUNTERS","features":[189]},{"name":"PERF_MULTI_INSTANCES","features":[189]},{"name":"PERF_NO_INSTANCES","features":[189]},{"name":"PERF_NO_UNIQUE_ID","features":[189]},{"name":"PERF_NUMBER_DECIMAL","features":[189]},{"name":"PERF_NUMBER_DEC_1000","features":[189]},{"name":"PERF_NUMBER_HEX","features":[189]},{"name":"PERF_OBJECT_TIMER","features":[189]},{"name":"PERF_OBJECT_TYPE","features":[189]},{"name":"PERF_OBJECT_TYPE","features":[189]},{"name":"PERF_PROVIDER_CONTEXT","features":[189]},{"name":"PERF_PROVIDER_DRIVER","features":[189]},{"name":"PERF_PROVIDER_KERNEL_MODE","features":[189]},{"name":"PERF_PROVIDER_USER_MODE","features":[189]},{"name":"PERF_REG_COUNTERSET_ENGLISH_NAME","features":[189]},{"name":"PERF_REG_COUNTERSET_HELP_STRING","features":[189]},{"name":"PERF_REG_COUNTERSET_NAME_STRING","features":[189]},{"name":"PERF_REG_COUNTERSET_STRUCT","features":[189]},{"name":"PERF_REG_COUNTER_ENGLISH_NAMES","features":[189]},{"name":"PERF_REG_COUNTER_HELP_STRINGS","features":[189]},{"name":"PERF_REG_COUNTER_NAME_STRINGS","features":[189]},{"name":"PERF_REG_COUNTER_STRUCT","features":[189]},{"name":"PERF_REG_PROVIDER_GUID","features":[189]},{"name":"PERF_REG_PROVIDER_NAME","features":[189]},{"name":"PERF_REMOVE_COUNTER","features":[189]},{"name":"PERF_SINGLE_COUNTER","features":[189]},{"name":"PERF_SIZE_DWORD","features":[189]},{"name":"PERF_SIZE_LARGE","features":[189]},{"name":"PERF_SIZE_VARIABLE_LEN","features":[189]},{"name":"PERF_SIZE_ZERO","features":[189]},{"name":"PERF_STRING_BUFFER_HEADER","features":[189]},{"name":"PERF_STRING_COUNTER_HEADER","features":[189]},{"name":"PERF_TEXT_ASCII","features":[189]},{"name":"PERF_TEXT_UNICODE","features":[189]},{"name":"PERF_TIMER_100NS","features":[189]},{"name":"PERF_TIMER_TICK","features":[189]},{"name":"PERF_TYPE_COUNTER","features":[189]},{"name":"PERF_TYPE_NUMBER","features":[189]},{"name":"PERF_TYPE_TEXT","features":[189]},{"name":"PERF_TYPE_ZERO","features":[189]},{"name":"PERF_WILDCARD_COUNTER","features":[189]},{"name":"PERF_WILDCARD_INSTANCE","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_A_NAME","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_C_NAME","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_D_TIME","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_L_VAL","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_MASK","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_M_VAL","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_SINGLE","features":[189]},{"name":"PLAL_ALERT_CMD_LINE_U_TEXT","features":[189]},{"name":"PLA_CABEXTRACT_CALLBACK","features":[189]},{"name":"PLA_CAPABILITY_AUTOLOGGER","features":[189]},{"name":"PLA_CAPABILITY_LEGACY_SESSION","features":[189]},{"name":"PLA_CAPABILITY_LEGACY_SVC","features":[189]},{"name":"PLA_CAPABILITY_LOCAL","features":[189]},{"name":"PLA_CAPABILITY_V1_SESSION","features":[189]},{"name":"PLA_CAPABILITY_V1_SVC","features":[189]},{"name":"PLA_CAPABILITY_V1_SYSTEM","features":[189]},{"name":"PM_CLOSE_PROC","features":[189]},{"name":"PM_COLLECT_PROC","features":[189]},{"name":"PM_OPEN_PROC","features":[189]},{"name":"PdhAddCounterA","features":[189]},{"name":"PdhAddCounterW","features":[189]},{"name":"PdhAddEnglishCounterA","features":[189]},{"name":"PdhAddEnglishCounterW","features":[189]},{"name":"PdhBindInputDataSourceA","features":[189]},{"name":"PdhBindInputDataSourceW","features":[189]},{"name":"PdhBrowseCountersA","features":[1,189]},{"name":"PdhBrowseCountersHA","features":[1,189]},{"name":"PdhBrowseCountersHW","features":[1,189]},{"name":"PdhBrowseCountersW","features":[1,189]},{"name":"PdhCalculateCounterFromRawValue","features":[1,189]},{"name":"PdhCloseLog","features":[189]},{"name":"PdhCloseQuery","features":[189]},{"name":"PdhCollectQueryData","features":[189]},{"name":"PdhCollectQueryDataEx","features":[1,189]},{"name":"PdhCollectQueryDataWithTime","features":[189]},{"name":"PdhComputeCounterStatistics","features":[1,189]},{"name":"PdhConnectMachineA","features":[189]},{"name":"PdhConnectMachineW","features":[189]},{"name":"PdhCreateSQLTablesA","features":[189]},{"name":"PdhCreateSQLTablesW","features":[189]},{"name":"PdhEnumLogSetNamesA","features":[189]},{"name":"PdhEnumLogSetNamesW","features":[189]},{"name":"PdhEnumMachinesA","features":[189]},{"name":"PdhEnumMachinesHA","features":[189]},{"name":"PdhEnumMachinesHW","features":[189]},{"name":"PdhEnumMachinesW","features":[189]},{"name":"PdhEnumObjectItemsA","features":[189]},{"name":"PdhEnumObjectItemsHA","features":[189]},{"name":"PdhEnumObjectItemsHW","features":[189]},{"name":"PdhEnumObjectItemsW","features":[189]},{"name":"PdhEnumObjectsA","features":[1,189]},{"name":"PdhEnumObjectsHA","features":[1,189]},{"name":"PdhEnumObjectsHW","features":[1,189]},{"name":"PdhEnumObjectsW","features":[1,189]},{"name":"PdhExpandCounterPathA","features":[189]},{"name":"PdhExpandCounterPathW","features":[189]},{"name":"PdhExpandWildCardPathA","features":[189]},{"name":"PdhExpandWildCardPathHA","features":[189]},{"name":"PdhExpandWildCardPathHW","features":[189]},{"name":"PdhExpandWildCardPathW","features":[189]},{"name":"PdhFormatFromRawValue","features":[1,189]},{"name":"PdhGetCounterInfoA","features":[1,189]},{"name":"PdhGetCounterInfoW","features":[1,189]},{"name":"PdhGetCounterTimeBase","features":[189]},{"name":"PdhGetDataSourceTimeRangeA","features":[189]},{"name":"PdhGetDataSourceTimeRangeH","features":[189]},{"name":"PdhGetDataSourceTimeRangeW","features":[189]},{"name":"PdhGetDefaultPerfCounterA","features":[189]},{"name":"PdhGetDefaultPerfCounterHA","features":[189]},{"name":"PdhGetDefaultPerfCounterHW","features":[189]},{"name":"PdhGetDefaultPerfCounterW","features":[189]},{"name":"PdhGetDefaultPerfObjectA","features":[189]},{"name":"PdhGetDefaultPerfObjectHA","features":[189]},{"name":"PdhGetDefaultPerfObjectHW","features":[189]},{"name":"PdhGetDefaultPerfObjectW","features":[189]},{"name":"PdhGetDllVersion","features":[189]},{"name":"PdhGetFormattedCounterArrayA","features":[189]},{"name":"PdhGetFormattedCounterArrayW","features":[189]},{"name":"PdhGetFormattedCounterValue","features":[189]},{"name":"PdhGetLogFileSize","features":[189]},{"name":"PdhGetLogSetGUID","features":[189]},{"name":"PdhGetRawCounterArrayA","features":[1,189]},{"name":"PdhGetRawCounterArrayW","features":[1,189]},{"name":"PdhGetRawCounterValue","features":[1,189]},{"name":"PdhIsRealTimeQuery","features":[1,189]},{"name":"PdhLookupPerfIndexByNameA","features":[189]},{"name":"PdhLookupPerfIndexByNameW","features":[189]},{"name":"PdhLookupPerfNameByIndexA","features":[189]},{"name":"PdhLookupPerfNameByIndexW","features":[189]},{"name":"PdhMakeCounterPathA","features":[189]},{"name":"PdhMakeCounterPathW","features":[189]},{"name":"PdhOpenLogA","features":[189]},{"name":"PdhOpenLogW","features":[189]},{"name":"PdhOpenQueryA","features":[189]},{"name":"PdhOpenQueryH","features":[189]},{"name":"PdhOpenQueryW","features":[189]},{"name":"PdhParseCounterPathA","features":[189]},{"name":"PdhParseCounterPathW","features":[189]},{"name":"PdhParseInstanceNameA","features":[189]},{"name":"PdhParseInstanceNameW","features":[189]},{"name":"PdhReadRawLogRecord","features":[1,189]},{"name":"PdhRemoveCounter","features":[189]},{"name":"PdhSelectDataSourceA","features":[1,189]},{"name":"PdhSelectDataSourceW","features":[1,189]},{"name":"PdhSetCounterScaleFactor","features":[189]},{"name":"PdhSetDefaultRealTimeDataSource","features":[189]},{"name":"PdhSetLogSetRunID","features":[189]},{"name":"PdhSetQueryTimeRange","features":[189]},{"name":"PdhUpdateLogA","features":[189]},{"name":"PdhUpdateLogFileCatalog","features":[189]},{"name":"PdhUpdateLogW","features":[189]},{"name":"PdhValidatePathA","features":[189]},{"name":"PdhValidatePathExA","features":[189]},{"name":"PdhValidatePathExW","features":[189]},{"name":"PdhValidatePathW","features":[189]},{"name":"PdhVerifySQLDBA","features":[189]},{"name":"PdhVerifySQLDBW","features":[189]},{"name":"PerfAddCounters","features":[1,189]},{"name":"PerfCloseQueryHandle","features":[1,189]},{"name":"PerfCounterDataType","features":[189]},{"name":"PerfCreateInstance","features":[1,189]},{"name":"PerfDecrementULongCounterValue","features":[1,189]},{"name":"PerfDecrementULongLongCounterValue","features":[1,189]},{"name":"PerfDeleteCounters","features":[1,189]},{"name":"PerfDeleteInstance","features":[1,189]},{"name":"PerfEnumerateCounterSet","features":[189]},{"name":"PerfEnumerateCounterSetInstances","features":[189]},{"name":"PerfIncrementULongCounterValue","features":[1,189]},{"name":"PerfIncrementULongLongCounterValue","features":[1,189]},{"name":"PerfOpenQueryHandle","features":[1,189]},{"name":"PerfQueryCounterData","features":[1,189]},{"name":"PerfQueryCounterInfo","features":[1,189]},{"name":"PerfQueryCounterSetRegistrationInfo","features":[189]},{"name":"PerfQueryInstance","features":[1,189]},{"name":"PerfRegInfoType","features":[189]},{"name":"PerfSetCounterRefValue","features":[1,189]},{"name":"PerfSetCounterSetInfo","features":[1,189]},{"name":"PerfSetULongCounterValue","features":[1,189]},{"name":"PerfSetULongLongCounterValue","features":[1,189]},{"name":"PerfStartProvider","features":[1,189]},{"name":"PerfStartProviderEx","features":[1,189]},{"name":"PerfStopProvider","features":[1,189]},{"name":"QueryPerformanceCounter","features":[1,189]},{"name":"QueryPerformanceFrequency","features":[1,189]},{"name":"REAL_TIME_DATA_SOURCE_ID_FLAGS","features":[189]},{"name":"ReportValueTypeConstants","features":[189]},{"name":"ResourcePolicy","features":[189]},{"name":"RestorePerfRegistryFromFileW","features":[189]},{"name":"S_PDH","features":[189]},{"name":"ServerDataCollectorSet","features":[189]},{"name":"ServerDataCollectorSetCollection","features":[189]},{"name":"SetServiceAsTrustedA","features":[189]},{"name":"SetServiceAsTrustedW","features":[189]},{"name":"SourcePropPage","features":[189]},{"name":"StreamMode","features":[189]},{"name":"SysmonBatchReason","features":[189]},{"name":"SysmonDataType","features":[189]},{"name":"SysmonFileType","features":[189]},{"name":"SystemDataCollectorSet","features":[189]},{"name":"SystemDataCollectorSetCollection","features":[189]},{"name":"SystemMonitor","features":[189]},{"name":"SystemMonitor2","features":[189]},{"name":"TraceDataProvider","features":[189]},{"name":"TraceDataProviderCollection","features":[189]},{"name":"TraceSession","features":[189]},{"name":"TraceSessionCollection","features":[189]},{"name":"UnloadPerfCounterTextStringsA","features":[1,189]},{"name":"UnloadPerfCounterTextStringsW","features":[1,189]},{"name":"UpdatePerfNameFilesA","features":[189]},{"name":"UpdatePerfNameFilesW","features":[189]},{"name":"ValueMapType","features":[189]},{"name":"WINPERF_LOG_DEBUG","features":[189]},{"name":"WINPERF_LOG_NONE","features":[189]},{"name":"WINPERF_LOG_USER","features":[189]},{"name":"WINPERF_LOG_VERBOSE","features":[189]},{"name":"WeekDays","features":[189]},{"name":"_ICounterItemUnion","features":[189]},{"name":"_ISystemMonitorUnion","features":[189]},{"name":"plaAlert","features":[189]},{"name":"plaApiTrace","features":[189]},{"name":"plaBinary","features":[189]},{"name":"plaBoth","features":[189]},{"name":"plaBuffering","features":[189]},{"name":"plaCommaSeparated","features":[189]},{"name":"plaCompiling","features":[189]},{"name":"plaComputer","features":[189]},{"name":"plaConfiguration","features":[189]},{"name":"plaCreateCab","features":[189]},{"name":"plaCreateHtml","features":[189]},{"name":"plaCreateNew","features":[189]},{"name":"plaCreateOrModify","features":[189]},{"name":"plaCreateReport","features":[189]},{"name":"plaCycle","features":[189]},{"name":"plaDeleteCab","features":[189]},{"name":"plaDeleteData","features":[189]},{"name":"plaDeleteLargest","features":[189]},{"name":"plaDeleteOldest","features":[189]},{"name":"plaDeleteReport","features":[189]},{"name":"plaEveryday","features":[189]},{"name":"plaFile","features":[189]},{"name":"plaFlag","features":[189]},{"name":"plaFlagArray","features":[189]},{"name":"plaFlushTrace","features":[189]},{"name":"plaFolderActions","features":[189]},{"name":"plaFriday","features":[189]},{"name":"plaIndex","features":[189]},{"name":"plaModify","features":[189]},{"name":"plaMonday","features":[189]},{"name":"plaMonthDayHour","features":[189]},{"name":"plaMonthDayHourMinute","features":[189]},{"name":"plaNone","features":[189]},{"name":"plaPattern","features":[189]},{"name":"plaPending","features":[189]},{"name":"plaPerformance","features":[189]},{"name":"plaPerformanceCounter","features":[189]},{"name":"plaRealTime","features":[189]},{"name":"plaResourceFreeing","features":[189]},{"name":"plaRunOnce","features":[189]},{"name":"plaRunRules","features":[189]},{"name":"plaRunning","features":[189]},{"name":"plaSaturday","features":[189]},{"name":"plaSendCab","features":[189]},{"name":"plaSerialNumber","features":[189]},{"name":"plaSql","features":[189]},{"name":"plaStopped","features":[189]},{"name":"plaSunday","features":[189]},{"name":"plaSystem","features":[189]},{"name":"plaTabSeparated","features":[189]},{"name":"plaThursday","features":[189]},{"name":"plaTimeStamp","features":[189]},{"name":"plaTrace","features":[189]},{"name":"plaTuesday","features":[189]},{"name":"plaUndefined","features":[189]},{"name":"plaUpdateRunningInstance","features":[189]},{"name":"plaValidateOnly","features":[189]},{"name":"plaValidation","features":[189]},{"name":"plaWednesday","features":[189]},{"name":"plaYearDayOfYear","features":[189]},{"name":"plaYearMonth","features":[189]},{"name":"plaYearMonthDay","features":[189]},{"name":"plaYearMonthDayHour","features":[189]},{"name":"sysmonAverage","features":[189]},{"name":"sysmonBatchAddCounters","features":[189]},{"name":"sysmonBatchAddFiles","features":[189]},{"name":"sysmonBatchAddFilesAutoCounters","features":[189]},{"name":"sysmonBatchNone","features":[189]},{"name":"sysmonChartArea","features":[189]},{"name":"sysmonChartStackedArea","features":[189]},{"name":"sysmonCurrentActivity","features":[189]},{"name":"sysmonCurrentValue","features":[189]},{"name":"sysmonDataAvg","features":[189]},{"name":"sysmonDataCount","features":[189]},{"name":"sysmonDataMax","features":[189]},{"name":"sysmonDataMin","features":[189]},{"name":"sysmonDataTime","features":[189]},{"name":"sysmonDefaultValue","features":[189]},{"name":"sysmonFileBlg","features":[189]},{"name":"sysmonFileCsv","features":[189]},{"name":"sysmonFileGif","features":[189]},{"name":"sysmonFileHtml","features":[189]},{"name":"sysmonFileReport","features":[189]},{"name":"sysmonFileRetiredBlg","features":[189]},{"name":"sysmonFileTsv","features":[189]},{"name":"sysmonHistogram","features":[189]},{"name":"sysmonLineGraph","features":[189]},{"name":"sysmonLogFiles","features":[189]},{"name":"sysmonMaximum","features":[189]},{"name":"sysmonMinimum","features":[189]},{"name":"sysmonNullDataSource","features":[189]},{"name":"sysmonReport","features":[189]},{"name":"sysmonSqlLog","features":[189]}],"589":[{"name":"DisableThreadProfiling","features":[1,190]},{"name":"EnableThreadProfiling","features":[1,190]},{"name":"HARDWARE_COUNTER_DATA","features":[190]},{"name":"HARDWARE_COUNTER_TYPE","features":[190]},{"name":"MaxHardwareCounterType","features":[190]},{"name":"PERFORMANCE_DATA","features":[190]},{"name":"PMCCounter","features":[190]},{"name":"QueryThreadProfiling","features":[1,190]},{"name":"ReadThreadProfilingData","features":[1,190]}],"590":[{"name":"CallNamedPipeA","features":[1,191]},{"name":"CallNamedPipeW","features":[1,191]},{"name":"ConnectNamedPipe","features":[1,6,191]},{"name":"CreateNamedPipeA","features":[1,4,21,191]},{"name":"CreateNamedPipeW","features":[1,4,21,191]},{"name":"CreatePipe","features":[1,4,191]},{"name":"DisconnectNamedPipe","features":[1,191]},{"name":"GetNamedPipeClientComputerNameA","features":[1,191]},{"name":"GetNamedPipeClientComputerNameW","features":[1,191]},{"name":"GetNamedPipeClientProcessId","features":[1,191]},{"name":"GetNamedPipeClientSessionId","features":[1,191]},{"name":"GetNamedPipeHandleStateA","features":[1,191]},{"name":"GetNamedPipeHandleStateW","features":[1,191]},{"name":"GetNamedPipeInfo","features":[1,191]},{"name":"GetNamedPipeServerProcessId","features":[1,191]},{"name":"GetNamedPipeServerSessionId","features":[1,191]},{"name":"ImpersonateNamedPipeClient","features":[1,191]},{"name":"NAMED_PIPE_MODE","features":[191]},{"name":"NMPWAIT_NOWAIT","features":[191]},{"name":"NMPWAIT_USE_DEFAULT_WAIT","features":[191]},{"name":"NMPWAIT_WAIT_FOREVER","features":[191]},{"name":"PIPE_ACCEPT_REMOTE_CLIENTS","features":[191]},{"name":"PIPE_CLIENT_END","features":[191]},{"name":"PIPE_NOWAIT","features":[191]},{"name":"PIPE_READMODE_BYTE","features":[191]},{"name":"PIPE_READMODE_MESSAGE","features":[191]},{"name":"PIPE_REJECT_REMOTE_CLIENTS","features":[191]},{"name":"PIPE_SERVER_END","features":[191]},{"name":"PIPE_TYPE_BYTE","features":[191]},{"name":"PIPE_TYPE_MESSAGE","features":[191]},{"name":"PIPE_UNLIMITED_INSTANCES","features":[191]},{"name":"PIPE_WAIT","features":[191]},{"name":"PeekNamedPipe","features":[1,191]},{"name":"SetNamedPipeHandleState","features":[1,191]},{"name":"TransactNamedPipe","features":[1,6,191]},{"name":"WaitNamedPipeA","features":[1,191]},{"name":"WaitNamedPipeW","features":[1,191]}],"591":[{"name":"ACCESS_ACTIVE_OVERLAY_SCHEME","features":[8]},{"name":"ACCESS_ACTIVE_SCHEME","features":[8]},{"name":"ACCESS_AC_POWER_SETTING_INDEX","features":[8]},{"name":"ACCESS_AC_POWER_SETTING_MAX","features":[8]},{"name":"ACCESS_AC_POWER_SETTING_MIN","features":[8]},{"name":"ACCESS_ATTRIBUTES","features":[8]},{"name":"ACCESS_CREATE_SCHEME","features":[8]},{"name":"ACCESS_DC_POWER_SETTING_INDEX","features":[8]},{"name":"ACCESS_DC_POWER_SETTING_MAX","features":[8]},{"name":"ACCESS_DC_POWER_SETTING_MIN","features":[8]},{"name":"ACCESS_DEFAULT_AC_POWER_SETTING","features":[8]},{"name":"ACCESS_DEFAULT_DC_POWER_SETTING","features":[8]},{"name":"ACCESS_DEFAULT_SECURITY_DESCRIPTOR","features":[8]},{"name":"ACCESS_DESCRIPTION","features":[8]},{"name":"ACCESS_FRIENDLY_NAME","features":[8]},{"name":"ACCESS_ICON_RESOURCE","features":[8]},{"name":"ACCESS_INDIVIDUAL_SETTING","features":[8]},{"name":"ACCESS_OVERLAY_SCHEME","features":[8]},{"name":"ACCESS_POSSIBLE_POWER_SETTING","features":[8]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_DESCRIPTION","features":[8]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_FRIENDLY_NAME","features":[8]},{"name":"ACCESS_POSSIBLE_VALUE_INCREMENT","features":[8]},{"name":"ACCESS_POSSIBLE_VALUE_MAX","features":[8]},{"name":"ACCESS_POSSIBLE_VALUE_MIN","features":[8]},{"name":"ACCESS_POSSIBLE_VALUE_UNITS","features":[8]},{"name":"ACCESS_PROFILE","features":[8]},{"name":"ACCESS_SCHEME","features":[8]},{"name":"ACCESS_SUBGROUP","features":[8]},{"name":"ACPI_REAL_TIME","features":[8]},{"name":"ACPI_TIME_ADJUST_DAYLIGHT","features":[8]},{"name":"ACPI_TIME_AND_ALARM_CAPABILITIES","features":[1,8]},{"name":"ACPI_TIME_IN_DAYLIGHT","features":[8]},{"name":"ACPI_TIME_RESOLUTION","features":[8]},{"name":"ACPI_TIME_ZONE_UNKNOWN","features":[8]},{"name":"ACTIVE_COOLING","features":[8]},{"name":"ADMINISTRATOR_POWER_POLICY","features":[8]},{"name":"ALTITUDE_GROUP_POLICY","features":[8]},{"name":"ALTITUDE_INTERNAL_OVERRIDE","features":[8]},{"name":"ALTITUDE_OEM_CUSTOMIZATION","features":[8]},{"name":"ALTITUDE_OS_DEFAULT","features":[8]},{"name":"ALTITUDE_PROVISIONING","features":[8]},{"name":"ALTITUDE_RUNTIME_OVERRIDE","features":[8]},{"name":"ALTITUDE_USER","features":[8]},{"name":"AcpiTimeResolutionMax","features":[8]},{"name":"AcpiTimeResolutionMilliseconds","features":[8]},{"name":"AcpiTimeResolutionSeconds","features":[8]},{"name":"AdministratorPowerPolicy","features":[8]},{"name":"BATTERY_CAPACITY_RELATIVE","features":[8]},{"name":"BATTERY_CHARGER_STATUS","features":[8]},{"name":"BATTERY_CHARGING","features":[8]},{"name":"BATTERY_CHARGING_SOURCE","features":[8]},{"name":"BATTERY_CHARGING_SOURCE_INFORMATION","features":[1,8]},{"name":"BATTERY_CHARGING_SOURCE_TYPE","features":[8]},{"name":"BATTERY_CLASS_MAJOR_VERSION","features":[8]},{"name":"BATTERY_CLASS_MINOR_VERSION","features":[8]},{"name":"BATTERY_CLASS_MINOR_VERSION_1","features":[8]},{"name":"BATTERY_CRITICAL","features":[8]},{"name":"BATTERY_CYCLE_COUNT_WMI_GUID","features":[8]},{"name":"BATTERY_DISCHARGING","features":[8]},{"name":"BATTERY_FULL_CHARGED_CAPACITY_WMI_GUID","features":[8]},{"name":"BATTERY_INFORMATION","features":[8]},{"name":"BATTERY_IS_SHORT_TERM","features":[8]},{"name":"BATTERY_MANUFACTURE_DATE","features":[8]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_1","features":[8]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_2","features":[8]},{"name":"BATTERY_POWER_ON_LINE","features":[8]},{"name":"BATTERY_QUERY_INFORMATION","features":[8]},{"name":"BATTERY_QUERY_INFORMATION_LEVEL","features":[8]},{"name":"BATTERY_REPORTING_SCALE","features":[8]},{"name":"BATTERY_RUNTIME_WMI_GUID","features":[8]},{"name":"BATTERY_SEALED","features":[8]},{"name":"BATTERY_SET_CHARGER_ID_SUPPORTED","features":[8]},{"name":"BATTERY_SET_CHARGE_SUPPORTED","features":[8]},{"name":"BATTERY_SET_CHARGINGSOURCE_SUPPORTED","features":[8]},{"name":"BATTERY_SET_DISCHARGE_SUPPORTED","features":[8]},{"name":"BATTERY_SET_INFORMATION","features":[8]},{"name":"BATTERY_SET_INFORMATION_LEVEL","features":[8]},{"name":"BATTERY_STATIC_DATA_WMI_GUID","features":[8]},{"name":"BATTERY_STATUS","features":[8]},{"name":"BATTERY_STATUS_CHANGE_WMI_GUID","features":[8]},{"name":"BATTERY_STATUS_WMI_GUID","features":[8]},{"name":"BATTERY_SYSTEM_BATTERY","features":[8]},{"name":"BATTERY_TAG_CHANGE_WMI_GUID","features":[8]},{"name":"BATTERY_TAG_INVALID","features":[8]},{"name":"BATTERY_TEMPERATURE_WMI_GUID","features":[8]},{"name":"BATTERY_UNKNOWN_CAPACITY","features":[8]},{"name":"BATTERY_UNKNOWN_CURRENT","features":[8]},{"name":"BATTERY_UNKNOWN_RATE","features":[8]},{"name":"BATTERY_UNKNOWN_TIME","features":[8]},{"name":"BATTERY_UNKNOWN_VOLTAGE","features":[8]},{"name":"BATTERY_USB_CHARGER_STATUS","features":[8]},{"name":"BATTERY_USB_CHARGER_STATUS_FN_DEFAULT_USB","features":[8]},{"name":"BATTERY_USB_CHARGER_STATUS_UCM_PD","features":[8]},{"name":"BATTERY_WAIT_STATUS","features":[8]},{"name":"BatteryCharge","features":[8]},{"name":"BatteryChargerId","features":[8]},{"name":"BatteryChargerStatus","features":[8]},{"name":"BatteryChargingSource","features":[8]},{"name":"BatteryChargingSourceType_AC","features":[8]},{"name":"BatteryChargingSourceType_Max","features":[8]},{"name":"BatteryChargingSourceType_USB","features":[8]},{"name":"BatteryChargingSourceType_Wireless","features":[8]},{"name":"BatteryCriticalBias","features":[8]},{"name":"BatteryDeviceName","features":[8]},{"name":"BatteryDeviceState","features":[8]},{"name":"BatteryDischarge","features":[8]},{"name":"BatteryEstimatedTime","features":[8]},{"name":"BatteryGranularityInformation","features":[8]},{"name":"BatteryInformation","features":[8]},{"name":"BatteryManufactureDate","features":[8]},{"name":"BatteryManufactureName","features":[8]},{"name":"BatterySerialNumber","features":[8]},{"name":"BatteryTemperature","features":[8]},{"name":"BatteryUniqueID","features":[8]},{"name":"BlackBoxRecorderDirectAccessBuffer","features":[8]},{"name":"CM_POWER_DATA","features":[8]},{"name":"CallNtPowerInformation","features":[1,8]},{"name":"CanUserWritePwrScheme","features":[1,8]},{"name":"CsDeviceNotification","features":[8]},{"name":"DEVICEPOWER_AND_OPERATION","features":[8]},{"name":"DEVICEPOWER_CLEAR_WAKEENABLED","features":[8]},{"name":"DEVICEPOWER_FILTER_DEVICES_PRESENT","features":[8]},{"name":"DEVICEPOWER_FILTER_HARDWARE","features":[8]},{"name":"DEVICEPOWER_FILTER_ON_NAME","features":[8]},{"name":"DEVICEPOWER_FILTER_WAKEENABLED","features":[8]},{"name":"DEVICEPOWER_FILTER_WAKEPROGRAMMABLE","features":[8]},{"name":"DEVICEPOWER_HARDWAREID","features":[8]},{"name":"DEVICEPOWER_SET_WAKEENABLED","features":[8]},{"name":"DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS","features":[8]},{"name":"DEVICE_POWER_STATE","features":[8]},{"name":"DeletePwrScheme","features":[1,8]},{"name":"DevicePowerClose","features":[1,8]},{"name":"DevicePowerEnumDevices","features":[1,8]},{"name":"DevicePowerOpen","features":[1,8]},{"name":"DevicePowerSetDeviceState","features":[8]},{"name":"DisplayBurst","features":[8]},{"name":"EFFECTIVE_POWER_MODE","features":[8]},{"name":"EFFECTIVE_POWER_MODE_CALLBACK","features":[8]},{"name":"EFFECTIVE_POWER_MODE_V1","features":[8]},{"name":"EFFECTIVE_POWER_MODE_V2","features":[8]},{"name":"EMI_CHANNEL_MEASUREMENT_DATA","features":[8]},{"name":"EMI_CHANNEL_V2","features":[8]},{"name":"EMI_MEASUREMENT_DATA_V2","features":[8]},{"name":"EMI_MEASUREMENT_UNIT","features":[8]},{"name":"EMI_METADATA_SIZE","features":[8]},{"name":"EMI_METADATA_V1","features":[8]},{"name":"EMI_METADATA_V2","features":[8]},{"name":"EMI_NAME_MAX","features":[8]},{"name":"EMI_VERSION","features":[8]},{"name":"EMI_VERSION_V1","features":[8]},{"name":"EMI_VERSION_V2","features":[8]},{"name":"ES_AWAYMODE_REQUIRED","features":[8]},{"name":"ES_CONTINUOUS","features":[8]},{"name":"ES_DISPLAY_REQUIRED","features":[8]},{"name":"ES_SYSTEM_REQUIRED","features":[8]},{"name":"ES_USER_PRESENT","features":[8]},{"name":"EXECUTION_STATE","features":[8]},{"name":"EffectivePowerModeBalanced","features":[8]},{"name":"EffectivePowerModeBatterySaver","features":[8]},{"name":"EffectivePowerModeBetterBattery","features":[8]},{"name":"EffectivePowerModeGameMode","features":[8]},{"name":"EffectivePowerModeHighPerformance","features":[8]},{"name":"EffectivePowerModeMaxPerformance","features":[8]},{"name":"EffectivePowerModeMixedReality","features":[8]},{"name":"EmiMeasurementUnitPicowattHours","features":[8]},{"name":"EnableMultiBatteryDisplay","features":[8]},{"name":"EnablePasswordLogon","features":[8]},{"name":"EnableSysTrayBatteryMeter","features":[8]},{"name":"EnableVideoDimDisplay","features":[8]},{"name":"EnableWakeOnRing","features":[8]},{"name":"EnergyTrackerCreate","features":[8]},{"name":"EnergyTrackerQuery","features":[8]},{"name":"EnumPwrSchemes","features":[1,8]},{"name":"ExitLatencySamplingPercentage","features":[8]},{"name":"FirmwareTableInformationRegistered","features":[8]},{"name":"GLOBAL_MACHINE_POWER_POLICY","features":[8]},{"name":"GLOBAL_POWER_POLICY","features":[1,8]},{"name":"GLOBAL_USER_POWER_POLICY","features":[1,8]},{"name":"GUID_CLASS_INPUT","features":[8]},{"name":"GUID_DEVICE_ACPI_TIME","features":[8]},{"name":"GUID_DEVICE_APPLICATIONLAUNCH_BUTTON","features":[8]},{"name":"GUID_DEVICE_BATTERY","features":[8]},{"name":"GUID_DEVICE_ENERGY_METER","features":[8]},{"name":"GUID_DEVICE_FAN","features":[8]},{"name":"GUID_DEVICE_LID","features":[8]},{"name":"GUID_DEVICE_MEMORY","features":[8]},{"name":"GUID_DEVICE_MESSAGE_INDICATOR","features":[8]},{"name":"GUID_DEVICE_PROCESSOR","features":[8]},{"name":"GUID_DEVICE_SYS_BUTTON","features":[8]},{"name":"GUID_DEVICE_THERMAL_ZONE","features":[8]},{"name":"GUID_DEVINTERFACE_THERMAL_COOLING","features":[8]},{"name":"GUID_DEVINTERFACE_THERMAL_MANAGER","features":[8]},{"name":"GetActivePwrScheme","features":[1,8]},{"name":"GetCurrentPowerPolicies","features":[1,8]},{"name":"GetDevicePowerState","features":[1,8]},{"name":"GetPowerRequestList","features":[8]},{"name":"GetPowerSettingValue","features":[8]},{"name":"GetPwrCapabilities","features":[1,8]},{"name":"GetPwrDiskSpindownRange","features":[1,8]},{"name":"GetSystemPowerStatus","features":[1,8]},{"name":"GroupPark","features":[8]},{"name":"HPOWERNOTIFY","features":[8]},{"name":"IOCTL_ACPI_GET_REAL_TIME","features":[8]},{"name":"IOCTL_ACPI_SET_REAL_TIME","features":[8]},{"name":"IOCTL_BATTERY_CHARGING_SOURCE_CHANGE","features":[8]},{"name":"IOCTL_BATTERY_QUERY_INFORMATION","features":[8]},{"name":"IOCTL_BATTERY_QUERY_STATUS","features":[8]},{"name":"IOCTL_BATTERY_QUERY_TAG","features":[8]},{"name":"IOCTL_BATTERY_SET_INFORMATION","features":[8]},{"name":"IOCTL_EMI_GET_MEASUREMENT","features":[8]},{"name":"IOCTL_EMI_GET_METADATA","features":[8]},{"name":"IOCTL_EMI_GET_METADATA_SIZE","features":[8]},{"name":"IOCTL_EMI_GET_VERSION","features":[8]},{"name":"IOCTL_GET_ACPI_TIME_AND_ALARM_CAPABILITIES","features":[8]},{"name":"IOCTL_GET_PROCESSOR_OBJ_INFO","features":[8]},{"name":"IOCTL_GET_SYS_BUTTON_CAPS","features":[8]},{"name":"IOCTL_GET_SYS_BUTTON_EVENT","features":[8]},{"name":"IOCTL_GET_WAKE_ALARM_POLICY","features":[8]},{"name":"IOCTL_GET_WAKE_ALARM_SYSTEM_POWERSTATE","features":[8]},{"name":"IOCTL_GET_WAKE_ALARM_VALUE","features":[8]},{"name":"IOCTL_NOTIFY_SWITCH_EVENT","features":[8]},{"name":"IOCTL_QUERY_LID","features":[8]},{"name":"IOCTL_RUN_ACTIVE_COOLING_METHOD","features":[8]},{"name":"IOCTL_SET_SYS_MESSAGE_INDICATOR","features":[8]},{"name":"IOCTL_SET_WAKE_ALARM_POLICY","features":[8]},{"name":"IOCTL_SET_WAKE_ALARM_VALUE","features":[8]},{"name":"IOCTL_THERMAL_QUERY_INFORMATION","features":[8]},{"name":"IOCTL_THERMAL_READ_POLICY","features":[8]},{"name":"IOCTL_THERMAL_READ_TEMPERATURE","features":[8]},{"name":"IOCTL_THERMAL_SET_COOLING_POLICY","features":[8]},{"name":"IOCTL_THERMAL_SET_PASSIVE_LIMIT","features":[8]},{"name":"IdleResiliency","features":[8]},{"name":"IsAdminOverrideActive","features":[1,8]},{"name":"IsPwrHibernateAllowed","features":[1,8]},{"name":"IsPwrShutdownAllowed","features":[1,8]},{"name":"IsPwrSuspendAllowed","features":[1,8]},{"name":"IsSystemResumeAutomatic","features":[1,8]},{"name":"LATENCY_TIME","features":[8]},{"name":"LT_DONT_CARE","features":[8]},{"name":"LT_LOWEST_LATENCY","features":[8]},{"name":"LastResumePerformance","features":[8]},{"name":"LastSleepTime","features":[8]},{"name":"LastWakeTime","features":[8]},{"name":"LogicalProcessorIdling","features":[8]},{"name":"MACHINE_POWER_POLICY","features":[8]},{"name":"MACHINE_PROCESSOR_POWER_POLICY","features":[8]},{"name":"MAX_ACTIVE_COOLING_LEVELS","features":[8]},{"name":"MAX_BATTERY_STRING_SIZE","features":[8]},{"name":"MonitorCapabilities","features":[8]},{"name":"MonitorInvocation","features":[8]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[8]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[8]},{"name":"MonitorRequestReasonBatteryCountChange","features":[8]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[8]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[8]},{"name":"MonitorRequestReasonBuiltinPanel","features":[8]},{"name":"MonitorRequestReasonDP","features":[8]},{"name":"MonitorRequestReasonDim","features":[8]},{"name":"MonitorRequestReasonDirectedDrips","features":[8]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[8]},{"name":"MonitorRequestReasonFullWake","features":[8]},{"name":"MonitorRequestReasonGracePeriod","features":[8]},{"name":"MonitorRequestReasonIdleTimeout","features":[8]},{"name":"MonitorRequestReasonLid","features":[8]},{"name":"MonitorRequestReasonMax","features":[8]},{"name":"MonitorRequestReasonNearProximity","features":[8]},{"name":"MonitorRequestReasonPdcSignal","features":[8]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[8]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[8]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[8]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[8]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[8]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[8]},{"name":"MonitorRequestReasonPnP","features":[8]},{"name":"MonitorRequestReasonPoSetSystemState","features":[8]},{"name":"MonitorRequestReasonPolicyChange","features":[8]},{"name":"MonitorRequestReasonPowerButton","features":[8]},{"name":"MonitorRequestReasonRemoteConnection","features":[8]},{"name":"MonitorRequestReasonResumeModernStandby","features":[8]},{"name":"MonitorRequestReasonResumePdc","features":[8]},{"name":"MonitorRequestReasonResumeS4","features":[8]},{"name":"MonitorRequestReasonScMonitorpower","features":[8]},{"name":"MonitorRequestReasonScreenOffRequest","features":[8]},{"name":"MonitorRequestReasonSessionUnlock","features":[8]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[8]},{"name":"MonitorRequestReasonSleepButton","features":[8]},{"name":"MonitorRequestReasonSxTransition","features":[8]},{"name":"MonitorRequestReasonSystemIdle","features":[8]},{"name":"MonitorRequestReasonSystemStateEntered","features":[8]},{"name":"MonitorRequestReasonTerminal","features":[8]},{"name":"MonitorRequestReasonTerminalInit","features":[8]},{"name":"MonitorRequestReasonThermalStandby","features":[8]},{"name":"MonitorRequestReasonUnknown","features":[8]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[8]},{"name":"MonitorRequestReasonUserInput","features":[8]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[8]},{"name":"MonitorRequestReasonUserInputHid","features":[8]},{"name":"MonitorRequestReasonUserInputInitialization","features":[8]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[8]},{"name":"MonitorRequestReasonUserInputMouse","features":[8]},{"name":"MonitorRequestReasonUserInputPen","features":[8]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[8]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[8]},{"name":"MonitorRequestReasonUserInputTouch","features":[8]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[8]},{"name":"MonitorRequestReasonWinrt","features":[8]},{"name":"MonitorRequestTypeOff","features":[8]},{"name":"MonitorRequestTypeOnAndPresent","features":[8]},{"name":"MonitorRequestTypeToggleOn","features":[8]},{"name":"NotifyUserModeLegacyPowerEvent","features":[8]},{"name":"NotifyUserPowerSetting","features":[8]},{"name":"PASSIVE_COOLING","features":[8]},{"name":"PDCAP_S0_SUPPORTED","features":[8]},{"name":"PDCAP_S1_SUPPORTED","features":[8]},{"name":"PDCAP_S2_SUPPORTED","features":[8]},{"name":"PDCAP_S3_SUPPORTED","features":[8]},{"name":"PDCAP_S4_SUPPORTED","features":[8]},{"name":"PDCAP_S5_SUPPORTED","features":[8]},{"name":"PDCAP_WAKE_FROM_S0_SUPPORTED","features":[8]},{"name":"PDCAP_WAKE_FROM_S1_SUPPORTED","features":[8]},{"name":"PDCAP_WAKE_FROM_S2_SUPPORTED","features":[8]},{"name":"PDCAP_WAKE_FROM_S3_SUPPORTED","features":[8]},{"name":"PDEVICE_NOTIFY_CALLBACK_ROUTINE","features":[8]},{"name":"POWERBROADCAST_SETTING","features":[8]},{"name":"POWER_ACTION","features":[8]},{"name":"POWER_ACTION_POLICY","features":[8]},{"name":"POWER_ACTION_POLICY_EVENT_CODE","features":[8]},{"name":"POWER_ATTRIBUTE_HIDE","features":[8]},{"name":"POWER_ATTRIBUTE_SHOW_AOAC","features":[8]},{"name":"POWER_COOLING_MODE","features":[8]},{"name":"POWER_DATA_ACCESSOR","features":[8]},{"name":"POWER_FORCE_TRIGGER_RESET","features":[8]},{"name":"POWER_IDLE_RESILIENCY","features":[8]},{"name":"POWER_INFORMATION_LEVEL","features":[8]},{"name":"POWER_LEVEL_USER_NOTIFY_EXEC","features":[8]},{"name":"POWER_LEVEL_USER_NOTIFY_SOUND","features":[8]},{"name":"POWER_LEVEL_USER_NOTIFY_TEXT","features":[8]},{"name":"POWER_MONITOR_INVOCATION","features":[1,8]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[8]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[8]},{"name":"POWER_PLATFORM_INFORMATION","features":[1,8]},{"name":"POWER_PLATFORM_ROLE","features":[8]},{"name":"POWER_PLATFORM_ROLE_V1","features":[8]},{"name":"POWER_PLATFORM_ROLE_V2","features":[8]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[8]},{"name":"POWER_POLICY","features":[1,8]},{"name":"POWER_REQUEST_TYPE","features":[8]},{"name":"POWER_SESSION_ALLOW_EXTERNAL_DMA_DEVICES","features":[1,8]},{"name":"POWER_SESSION_CONNECT","features":[1,8]},{"name":"POWER_SESSION_RIT_STATE","features":[1,8]},{"name":"POWER_SESSION_TIMEOUTS","features":[8]},{"name":"POWER_SESSION_WINLOGON","features":[1,8]},{"name":"POWER_SETTING_ALTITUDE","features":[8]},{"name":"POWER_USER_NOTIFY_BUTTON","features":[8]},{"name":"POWER_USER_NOTIFY_SHUTDOWN","features":[8]},{"name":"POWER_USER_PRESENCE","features":[8]},{"name":"POWER_USER_PRESENCE_TYPE","features":[8]},{"name":"PO_TZ_ACTIVE","features":[8]},{"name":"PO_TZ_INVALID_MODE","features":[8]},{"name":"PO_TZ_PASSIVE","features":[8]},{"name":"PPM_FIRMWARE_ACPI1C2","features":[8]},{"name":"PPM_FIRMWARE_ACPI1C3","features":[8]},{"name":"PPM_FIRMWARE_ACPI1TSTATES","features":[8]},{"name":"PPM_FIRMWARE_CPC","features":[8]},{"name":"PPM_FIRMWARE_CSD","features":[8]},{"name":"PPM_FIRMWARE_CST","features":[8]},{"name":"PPM_FIRMWARE_LPI","features":[8]},{"name":"PPM_FIRMWARE_OSC","features":[8]},{"name":"PPM_FIRMWARE_PCCH","features":[8]},{"name":"PPM_FIRMWARE_PCCP","features":[8]},{"name":"PPM_FIRMWARE_PCT","features":[8]},{"name":"PPM_FIRMWARE_PDC","features":[8]},{"name":"PPM_FIRMWARE_PPC","features":[8]},{"name":"PPM_FIRMWARE_PSD","features":[8]},{"name":"PPM_FIRMWARE_PSS","features":[8]},{"name":"PPM_FIRMWARE_PTC","features":[8]},{"name":"PPM_FIRMWARE_TPC","features":[8]},{"name":"PPM_FIRMWARE_TSD","features":[8]},{"name":"PPM_FIRMWARE_TSS","features":[8]},{"name":"PPM_FIRMWARE_XPSS","features":[8]},{"name":"PPM_IDLESTATES_DATA_GUID","features":[8]},{"name":"PPM_IDLESTATE_CHANGE_GUID","features":[8]},{"name":"PPM_IDLESTATE_EVENT","features":[8]},{"name":"PPM_IDLE_ACCOUNTING","features":[8]},{"name":"PPM_IDLE_ACCOUNTING_EX","features":[8]},{"name":"PPM_IDLE_ACCOUNTING_EX_GUID","features":[8]},{"name":"PPM_IDLE_ACCOUNTING_GUID","features":[8]},{"name":"PPM_IDLE_IMPLEMENTATION_CSTATES","features":[8]},{"name":"PPM_IDLE_IMPLEMENTATION_LPISTATES","features":[8]},{"name":"PPM_IDLE_IMPLEMENTATION_MICROPEP","features":[8]},{"name":"PPM_IDLE_IMPLEMENTATION_NONE","features":[8]},{"name":"PPM_IDLE_IMPLEMENTATION_PEP","features":[8]},{"name":"PPM_IDLE_STATE_ACCOUNTING","features":[8]},{"name":"PPM_IDLE_STATE_ACCOUNTING_EX","features":[8]},{"name":"PPM_IDLE_STATE_BUCKET_EX","features":[8]},{"name":"PPM_PERFMON_PERFSTATE_GUID","features":[8]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_CPPC","features":[8]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_NONE","features":[8]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PCCV1","features":[8]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PEP","features":[8]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PSTATES","features":[8]},{"name":"PPM_PERFSTATES_DATA_GUID","features":[8]},{"name":"PPM_PERFSTATE_CHANGE_GUID","features":[8]},{"name":"PPM_PERFSTATE_DOMAIN_CHANGE_GUID","features":[8]},{"name":"PPM_PERFSTATE_DOMAIN_EVENT","features":[8]},{"name":"PPM_PERFSTATE_EVENT","features":[8]},{"name":"PPM_THERMALCHANGE_EVENT","features":[8]},{"name":"PPM_THERMALCONSTRAINT_GUID","features":[8]},{"name":"PPM_THERMAL_POLICY_CHANGE_GUID","features":[8]},{"name":"PPM_THERMAL_POLICY_EVENT","features":[8]},{"name":"PPM_WMI_IDLE_STATE","features":[8]},{"name":"PPM_WMI_IDLE_STATES","features":[8]},{"name":"PPM_WMI_IDLE_STATES_EX","features":[8]},{"name":"PPM_WMI_LEGACY_PERFSTATE","features":[8]},{"name":"PPM_WMI_PERF_STATE","features":[8]},{"name":"PPM_WMI_PERF_STATES","features":[8]},{"name":"PPM_WMI_PERF_STATES_EX","features":[8]},{"name":"PROCESSOR_NUMBER_PKEY","features":[35,8]},{"name":"PROCESSOR_OBJECT_INFO","features":[8]},{"name":"PROCESSOR_OBJECT_INFO_EX","features":[8]},{"name":"PROCESSOR_POWER_INFORMATION","features":[8]},{"name":"PROCESSOR_POWER_POLICY","features":[8]},{"name":"PROCESSOR_POWER_POLICY_INFO","features":[8]},{"name":"PWRSCHEMESENUMPROC","features":[1,8]},{"name":"PWRSCHEMESENUMPROC_V1","features":[1,8]},{"name":"PdcInvocation","features":[8]},{"name":"PhysicalPowerButtonPress","features":[8]},{"name":"PlatformIdleStates","features":[8]},{"name":"PlatformIdleVeto","features":[8]},{"name":"PlatformInformation","features":[8]},{"name":"PlatformRole","features":[8]},{"name":"PlatformRoleAppliancePC","features":[8]},{"name":"PlatformRoleDesktop","features":[8]},{"name":"PlatformRoleEnterpriseServer","features":[8]},{"name":"PlatformRoleMaximum","features":[8]},{"name":"PlatformRoleMobile","features":[8]},{"name":"PlatformRolePerformanceServer","features":[8]},{"name":"PlatformRoleSOHOServer","features":[8]},{"name":"PlatformRoleSlate","features":[8]},{"name":"PlatformRoleUnspecified","features":[8]},{"name":"PlatformRoleWorkstation","features":[8]},{"name":"PlmPowerRequestCreate","features":[8]},{"name":"PoAc","features":[8]},{"name":"PoConditionMaximum","features":[8]},{"name":"PoDc","features":[8]},{"name":"PoHot","features":[8]},{"name":"PowerActionDisplayOff","features":[8]},{"name":"PowerActionHibernate","features":[8]},{"name":"PowerActionNone","features":[8]},{"name":"PowerActionReserved","features":[8]},{"name":"PowerActionShutdown","features":[8]},{"name":"PowerActionShutdownOff","features":[8]},{"name":"PowerActionShutdownReset","features":[8]},{"name":"PowerActionSleep","features":[8]},{"name":"PowerActionWarmEject","features":[8]},{"name":"PowerCanRestoreIndividualDefaultPowerScheme","features":[1,8]},{"name":"PowerClearRequest","features":[1,8]},{"name":"PowerCreatePossibleSetting","features":[1,8,49]},{"name":"PowerCreateRequest","features":[1,8,37]},{"name":"PowerCreateSetting","features":[1,8,49]},{"name":"PowerDeleteScheme","features":[1,8,49]},{"name":"PowerDeterminePlatformRole","features":[8]},{"name":"PowerDeterminePlatformRoleEx","features":[8]},{"name":"PowerDeviceD0","features":[8]},{"name":"PowerDeviceD1","features":[8]},{"name":"PowerDeviceD2","features":[8]},{"name":"PowerDeviceD3","features":[8]},{"name":"PowerDeviceMaximum","features":[8]},{"name":"PowerDeviceUnspecified","features":[8]},{"name":"PowerDuplicateScheme","features":[1,8,49]},{"name":"PowerEnumerate","features":[1,8,49]},{"name":"PowerGetActiveScheme","features":[1,8,49]},{"name":"PowerImportPowerScheme","features":[1,8,49]},{"name":"PowerInformationInternal","features":[8]},{"name":"PowerInformationLevelMaximum","features":[8]},{"name":"PowerInformationLevelUnused0","features":[8]},{"name":"PowerIsSettingRangeDefined","features":[1,8]},{"name":"PowerOpenSystemPowerKey","features":[1,8,49]},{"name":"PowerOpenUserPowerKey","features":[1,8,49]},{"name":"PowerReadACDefaultIndex","features":[8,49]},{"name":"PowerReadACValue","features":[1,8,49]},{"name":"PowerReadACValueIndex","features":[8,49]},{"name":"PowerReadDCDefaultIndex","features":[8,49]},{"name":"PowerReadDCValue","features":[1,8,49]},{"name":"PowerReadDCValueIndex","features":[8,49]},{"name":"PowerReadDescription","features":[1,8,49]},{"name":"PowerReadFriendlyName","features":[1,8,49]},{"name":"PowerReadIconResourceSpecifier","features":[1,8,49]},{"name":"PowerReadPossibleDescription","features":[1,8,49]},{"name":"PowerReadPossibleFriendlyName","features":[1,8,49]},{"name":"PowerReadPossibleValue","features":[1,8,49]},{"name":"PowerReadSettingAttributes","features":[8]},{"name":"PowerReadValueIncrement","features":[1,8,49]},{"name":"PowerReadValueMax","features":[1,8,49]},{"name":"PowerReadValueMin","features":[1,8,49]},{"name":"PowerReadValueUnitsSpecifier","features":[1,8,49]},{"name":"PowerRegisterForEffectivePowerModeNotifications","features":[8]},{"name":"PowerRegisterSuspendResumeNotification","features":[1,8,50]},{"name":"PowerRemovePowerSetting","features":[1,8]},{"name":"PowerReplaceDefaultPowerSchemes","features":[8]},{"name":"PowerReportThermalEvent","features":[1,8]},{"name":"PowerRequestAction","features":[8]},{"name":"PowerRequestActionInternal","features":[8]},{"name":"PowerRequestAwayModeRequired","features":[8]},{"name":"PowerRequestCreate","features":[8]},{"name":"PowerRequestDisplayRequired","features":[8]},{"name":"PowerRequestExecutionRequired","features":[8]},{"name":"PowerRequestSystemRequired","features":[8]},{"name":"PowerRestoreDefaultPowerSchemes","features":[1,8]},{"name":"PowerRestoreIndividualDefaultPowerScheme","features":[1,8]},{"name":"PowerSetActiveScheme","features":[1,8,49]},{"name":"PowerSetRequest","features":[1,8]},{"name":"PowerSettingAccessCheck","features":[1,8]},{"name":"PowerSettingAccessCheckEx","features":[1,8,49]},{"name":"PowerSettingNotificationName","features":[8]},{"name":"PowerSettingRegisterNotification","features":[1,8,50]},{"name":"PowerSettingUnregisterNotification","features":[1,8]},{"name":"PowerShutdownNotification","features":[8]},{"name":"PowerSystemHibernate","features":[8]},{"name":"PowerSystemMaximum","features":[8]},{"name":"PowerSystemShutdown","features":[8]},{"name":"PowerSystemSleeping1","features":[8]},{"name":"PowerSystemSleeping2","features":[8]},{"name":"PowerSystemSleeping3","features":[8]},{"name":"PowerSystemUnspecified","features":[8]},{"name":"PowerSystemWorking","features":[8]},{"name":"PowerUnregisterFromEffectivePowerModeNotifications","features":[8]},{"name":"PowerUnregisterSuspendResumeNotification","features":[1,8]},{"name":"PowerUserInactive","features":[8]},{"name":"PowerUserInvalid","features":[8]},{"name":"PowerUserMaximum","features":[8]},{"name":"PowerUserNotPresent","features":[8]},{"name":"PowerUserPresent","features":[8]},{"name":"PowerWriteACDefaultIndex","features":[8,49]},{"name":"PowerWriteACValueIndex","features":[8,49]},{"name":"PowerWriteDCDefaultIndex","features":[8,49]},{"name":"PowerWriteDCValueIndex","features":[8,49]},{"name":"PowerWriteDescription","features":[1,8,49]},{"name":"PowerWriteFriendlyName","features":[1,8,49]},{"name":"PowerWriteIconResourceSpecifier","features":[1,8,49]},{"name":"PowerWritePossibleDescription","features":[1,8,49]},{"name":"PowerWritePossibleFriendlyName","features":[1,8,49]},{"name":"PowerWritePossibleValue","features":[1,8,49]},{"name":"PowerWriteSettingAttributes","features":[1,8]},{"name":"PowerWriteValueIncrement","features":[1,8,49]},{"name":"PowerWriteValueMax","features":[1,8,49]},{"name":"PowerWriteValueMin","features":[1,8,49]},{"name":"PowerWriteValueUnitsSpecifier","features":[1,8,49]},{"name":"ProcessorCap","features":[8]},{"name":"ProcessorIdleDomains","features":[8]},{"name":"ProcessorIdleStates","features":[8]},{"name":"ProcessorIdleStatesHv","features":[8]},{"name":"ProcessorIdleVeto","features":[8]},{"name":"ProcessorInformation","features":[8]},{"name":"ProcessorInformationEx","features":[8]},{"name":"ProcessorLoad","features":[8]},{"name":"ProcessorPerfCapHv","features":[8]},{"name":"ProcessorPerfStates","features":[8]},{"name":"ProcessorPerfStatesHv","features":[8]},{"name":"ProcessorPowerPolicyAc","features":[8]},{"name":"ProcessorPowerPolicyCurrent","features":[8]},{"name":"ProcessorPowerPolicyDc","features":[8]},{"name":"ProcessorSetIdle","features":[8]},{"name":"ProcessorStateHandler","features":[8]},{"name":"ProcessorStateHandler2","features":[8]},{"name":"QueryPotentialDripsConstraint","features":[8]},{"name":"RESUME_PERFORMANCE","features":[8]},{"name":"ReadGlobalPwrPolicy","features":[1,8]},{"name":"ReadProcessorPwrScheme","features":[1,8]},{"name":"ReadPwrScheme","features":[1,8]},{"name":"RegisterPowerSettingNotification","features":[1,8,50]},{"name":"RegisterSpmPowerSettings","features":[8]},{"name":"RegisterSuspendResumeNotification","features":[1,8,50]},{"name":"RequestWakeupLatency","features":[1,8]},{"name":"SET_POWER_SETTING_VALUE","features":[8]},{"name":"SYSTEM_BATTERY_STATE","features":[1,8]},{"name":"SYSTEM_POWER_CAPABILITIES","features":[1,8]},{"name":"SYSTEM_POWER_CONDITION","features":[8]},{"name":"SYSTEM_POWER_INFORMATION","features":[8]},{"name":"SYSTEM_POWER_LEVEL","features":[1,8]},{"name":"SYSTEM_POWER_POLICY","features":[1,8]},{"name":"SYSTEM_POWER_STATE","features":[8]},{"name":"SYSTEM_POWER_STATUS","features":[8]},{"name":"SYS_BUTTON_LID","features":[8]},{"name":"SYS_BUTTON_LID_CHANGED","features":[8]},{"name":"SYS_BUTTON_LID_CLOSED","features":[8]},{"name":"SYS_BUTTON_LID_INITIAL","features":[8]},{"name":"SYS_BUTTON_LID_OPEN","features":[8]},{"name":"SYS_BUTTON_LID_STATE_MASK","features":[8]},{"name":"SYS_BUTTON_POWER","features":[8]},{"name":"SYS_BUTTON_SLEEP","features":[8]},{"name":"SYS_BUTTON_WAKE","features":[8]},{"name":"ScreenOff","features":[8]},{"name":"SendSuspendResumeNotification","features":[8]},{"name":"SessionAllowExternalDmaDevices","features":[8]},{"name":"SessionConnectNotification","features":[8]},{"name":"SessionDisplayState","features":[8]},{"name":"SessionLockState","features":[8]},{"name":"SessionPowerCleanup","features":[8]},{"name":"SessionPowerInit","features":[8]},{"name":"SessionRITState","features":[8]},{"name":"SetActivePwrScheme","features":[1,8]},{"name":"SetPowerSettingValue","features":[8]},{"name":"SetShutdownSelectedTime","features":[8]},{"name":"SetSuspendState","features":[1,8]},{"name":"SetSystemPowerState","features":[1,8]},{"name":"SetThreadExecutionState","features":[8]},{"name":"SuspendResumeInvocation","features":[8]},{"name":"SystemBatteryState","features":[8]},{"name":"SystemBatteryStatePrecise","features":[8]},{"name":"SystemExecutionState","features":[8]},{"name":"SystemHiberFileInformation","features":[8]},{"name":"SystemHiberFileSize","features":[8]},{"name":"SystemHiberFileType","features":[8]},{"name":"SystemHiberbootState","features":[8]},{"name":"SystemMonitorHiberBootPowerOff","features":[8]},{"name":"SystemPowerCapabilities","features":[8]},{"name":"SystemPowerInformation","features":[8]},{"name":"SystemPowerLoggingEntry","features":[8]},{"name":"SystemPowerPolicyAc","features":[8]},{"name":"SystemPowerPolicyCurrent","features":[8]},{"name":"SystemPowerPolicyDc","features":[8]},{"name":"SystemPowerStateHandler","features":[8]},{"name":"SystemPowerStateLogging","features":[8]},{"name":"SystemPowerStateNotifyHandler","features":[8]},{"name":"SystemReserveHiberFile","features":[8]},{"name":"SystemVideoState","features":[8]},{"name":"SystemWakeSource","features":[8]},{"name":"THERMAL_COOLING_INTERFACE_VERSION","features":[8]},{"name":"THERMAL_DEVICE_INTERFACE_VERSION","features":[8]},{"name":"THERMAL_EVENT","features":[8]},{"name":"THERMAL_EVENT_VERSION","features":[8]},{"name":"THERMAL_INFORMATION","features":[8]},{"name":"THERMAL_POLICY","features":[1,8]},{"name":"THERMAL_POLICY_VERSION_1","features":[8]},{"name":"THERMAL_POLICY_VERSION_2","features":[8]},{"name":"THERMAL_WAIT_READ","features":[8]},{"name":"TZ_ACTIVATION_REASON_CURRENT","features":[8]},{"name":"TZ_ACTIVATION_REASON_THERMAL","features":[8]},{"name":"ThermalEvent","features":[8]},{"name":"ThermalStandby","features":[8]},{"name":"TraceApplicationPowerMessage","features":[8]},{"name":"TraceApplicationPowerMessageEnd","features":[8]},{"name":"TraceServicePowerMessage","features":[8]},{"name":"UNKNOWN_CAPACITY","features":[8]},{"name":"UNKNOWN_CURRENT","features":[8]},{"name":"UNKNOWN_RATE","features":[8]},{"name":"UNKNOWN_VOLTAGE","features":[8]},{"name":"USB_CHARGER_PORT","features":[8]},{"name":"USER_ACTIVITY_PRESENCE","features":[8]},{"name":"USER_POWER_POLICY","features":[1,8]},{"name":"UnregisterPowerSettingNotification","features":[1,8]},{"name":"UnregisterSuspendResumeNotification","features":[1,8]},{"name":"UpdateBlackBoxRecorder","features":[8]},{"name":"UsbChargerPort_Legacy","features":[8]},{"name":"UsbChargerPort_Max","features":[8]},{"name":"UsbChargerPort_TypeC","features":[8]},{"name":"UserNotPresent","features":[8]},{"name":"UserPresence","features":[8]},{"name":"UserPresent","features":[8]},{"name":"UserUnknown","features":[8]},{"name":"ValidatePowerPolicies","features":[1,8]},{"name":"VerifyProcessorPowerPolicyAc","features":[8]},{"name":"VerifyProcessorPowerPolicyDc","features":[8]},{"name":"VerifySystemPolicyAc","features":[8]},{"name":"VerifySystemPolicyDc","features":[8]},{"name":"WAKE_ALARM_INFORMATION","features":[8]},{"name":"WakeTimerList","features":[8]},{"name":"WriteGlobalPwrPolicy","features":[1,8]},{"name":"WriteProcessorPwrScheme","features":[1,8]},{"name":"WritePwrScheme","features":[1,8]}],"592":[{"name":"ENUM_PAGE_FILE_INFORMATION","features":[192]},{"name":"ENUM_PROCESS_MODULES_EX_FLAGS","features":[192]},{"name":"EmptyWorkingSet","features":[1,192]},{"name":"EnumDeviceDrivers","features":[1,192]},{"name":"EnumPageFilesA","features":[1,192]},{"name":"EnumPageFilesW","features":[1,192]},{"name":"EnumProcessModules","features":[1,192]},{"name":"EnumProcessModulesEx","features":[1,192]},{"name":"EnumProcesses","features":[1,192]},{"name":"GetDeviceDriverBaseNameA","features":[192]},{"name":"GetDeviceDriverBaseNameW","features":[192]},{"name":"GetDeviceDriverFileNameA","features":[192]},{"name":"GetDeviceDriverFileNameW","features":[192]},{"name":"GetMappedFileNameA","features":[1,192]},{"name":"GetMappedFileNameW","features":[1,192]},{"name":"GetModuleBaseNameA","features":[1,192]},{"name":"GetModuleBaseNameW","features":[1,192]},{"name":"GetModuleFileNameExA","features":[1,192]},{"name":"GetModuleFileNameExW","features":[1,192]},{"name":"GetModuleInformation","features":[1,192]},{"name":"GetPerformanceInfo","features":[1,192]},{"name":"GetProcessImageFileNameA","features":[1,192]},{"name":"GetProcessImageFileNameW","features":[1,192]},{"name":"GetProcessMemoryInfo","features":[1,192]},{"name":"GetWsChanges","features":[1,192]},{"name":"GetWsChangesEx","features":[1,192]},{"name":"InitializeProcessForWsWatch","features":[1,192]},{"name":"K32EmptyWorkingSet","features":[1,192]},{"name":"K32EnumDeviceDrivers","features":[1,192]},{"name":"K32EnumPageFilesA","features":[1,192]},{"name":"K32EnumPageFilesW","features":[1,192]},{"name":"K32EnumProcessModules","features":[1,192]},{"name":"K32EnumProcessModulesEx","features":[1,192]},{"name":"K32EnumProcesses","features":[1,192]},{"name":"K32GetDeviceDriverBaseNameA","features":[192]},{"name":"K32GetDeviceDriverBaseNameW","features":[192]},{"name":"K32GetDeviceDriverFileNameA","features":[192]},{"name":"K32GetDeviceDriverFileNameW","features":[192]},{"name":"K32GetMappedFileNameA","features":[1,192]},{"name":"K32GetMappedFileNameW","features":[1,192]},{"name":"K32GetModuleBaseNameA","features":[1,192]},{"name":"K32GetModuleBaseNameW","features":[1,192]},{"name":"K32GetModuleFileNameExA","features":[1,192]},{"name":"K32GetModuleFileNameExW","features":[1,192]},{"name":"K32GetModuleInformation","features":[1,192]},{"name":"K32GetPerformanceInfo","features":[1,192]},{"name":"K32GetProcessImageFileNameA","features":[1,192]},{"name":"K32GetProcessImageFileNameW","features":[1,192]},{"name":"K32GetProcessMemoryInfo","features":[1,192]},{"name":"K32GetWsChanges","features":[1,192]},{"name":"K32GetWsChangesEx","features":[1,192]},{"name":"K32InitializeProcessForWsWatch","features":[1,192]},{"name":"K32QueryWorkingSet","features":[1,192]},{"name":"K32QueryWorkingSetEx","features":[1,192]},{"name":"LIST_MODULES_32BIT","features":[192]},{"name":"LIST_MODULES_64BIT","features":[192]},{"name":"LIST_MODULES_ALL","features":[192]},{"name":"LIST_MODULES_DEFAULT","features":[192]},{"name":"MODULEINFO","features":[192]},{"name":"PENUM_PAGE_FILE_CALLBACKA","features":[1,192]},{"name":"PENUM_PAGE_FILE_CALLBACKW","features":[1,192]},{"name":"PERFORMANCE_INFORMATION","features":[192]},{"name":"PROCESS_MEMORY_COUNTERS","features":[192]},{"name":"PROCESS_MEMORY_COUNTERS_EX","features":[192]},{"name":"PROCESS_MEMORY_COUNTERS_EX2","features":[192]},{"name":"PSAPI_VERSION","features":[192]},{"name":"PSAPI_WORKING_SET_BLOCK","features":[192]},{"name":"PSAPI_WORKING_SET_EX_BLOCK","features":[192]},{"name":"PSAPI_WORKING_SET_EX_INFORMATION","features":[192]},{"name":"PSAPI_WORKING_SET_INFORMATION","features":[192]},{"name":"PSAPI_WS_WATCH_INFORMATION","features":[192]},{"name":"PSAPI_WS_WATCH_INFORMATION_EX","features":[192]},{"name":"QueryWorkingSet","features":[1,192]},{"name":"QueryWorkingSetEx","features":[1,192]}],"594":[{"name":"ApplicationRecoveryFinished","features":[1,193]},{"name":"ApplicationRecoveryInProgress","features":[1,193]},{"name":"GetApplicationRecoveryCallback","features":[1,193,34]},{"name":"GetApplicationRestartSettings","features":[1,193]},{"name":"REGISTER_APPLICATION_RESTART_FLAGS","features":[193]},{"name":"RESTART_NO_CRASH","features":[193]},{"name":"RESTART_NO_HANG","features":[193]},{"name":"RESTART_NO_PATCH","features":[193]},{"name":"RESTART_NO_REBOOT","features":[193]},{"name":"RegisterApplicationRecoveryCallback","features":[193,34]},{"name":"RegisterApplicationRestart","features":[193]},{"name":"UnregisterApplicationRecoveryCallback","features":[193]},{"name":"UnregisterApplicationRestart","features":[193]}],"595":[{"name":"AGP_FLAG_NO_1X_RATE","features":[49]},{"name":"AGP_FLAG_NO_2X_RATE","features":[49]},{"name":"AGP_FLAG_NO_4X_RATE","features":[49]},{"name":"AGP_FLAG_NO_8X_RATE","features":[49]},{"name":"AGP_FLAG_NO_FW_ENABLE","features":[49]},{"name":"AGP_FLAG_NO_SBA_ENABLE","features":[49]},{"name":"AGP_FLAG_REVERSE_INITIALIZATION","features":[49]},{"name":"AGP_FLAG_SPECIAL_RESERVE","features":[49]},{"name":"AGP_FLAG_SPECIAL_TARGET","features":[49]},{"name":"APMMENUSUSPEND_DISABLED","features":[49]},{"name":"APMMENUSUSPEND_ENABLED","features":[49]},{"name":"APMMENUSUSPEND_NOCHANGE","features":[49]},{"name":"APMMENUSUSPEND_UNDOCKED","features":[49]},{"name":"APMTIMEOUT_DISABLED","features":[49]},{"name":"BIF_RAWDEVICENEEDSDRIVER","features":[49]},{"name":"BIF_SHOWSIMILARDRIVERS","features":[49]},{"name":"CSCONFIGFLAG_BITS","features":[49]},{"name":"CSCONFIGFLAG_DISABLED","features":[49]},{"name":"CSCONFIGFLAG_DO_NOT_CREATE","features":[49]},{"name":"CSCONFIGFLAG_DO_NOT_START","features":[49]},{"name":"DMSTATEFLAG_APPLYTOALL","features":[49]},{"name":"DOSOPTF_ALWAYSUSE","features":[49]},{"name":"DOSOPTF_DEFAULT","features":[49]},{"name":"DOSOPTF_INDOSSTART","features":[49]},{"name":"DOSOPTF_MULTIPLE","features":[49]},{"name":"DOSOPTF_NEEDSETUP","features":[49]},{"name":"DOSOPTF_PROVIDESUMB","features":[49]},{"name":"DOSOPTF_SUPPORTED","features":[49]},{"name":"DOSOPTF_USESPMODE","features":[49]},{"name":"DOSOPTGF_DEFCLEAN","features":[49]},{"name":"DRIVERSIGN_BLOCKING","features":[49]},{"name":"DRIVERSIGN_NONE","features":[49]},{"name":"DRIVERSIGN_WARNING","features":[49]},{"name":"DSKTLSYSTEMTIME","features":[49]},{"name":"DTRESULTFIX","features":[49]},{"name":"DTRESULTOK","features":[49]},{"name":"DTRESULTPART","features":[49]},{"name":"DTRESULTPROB","features":[49]},{"name":"EISAFLAG_NO_IO_MERGE","features":[49]},{"name":"EISAFLAG_SLOT_IO_FIRST","features":[49]},{"name":"EISA_NO_MAX_FUNCTION","features":[49]},{"name":"GetRegistryValueWithFallbackW","features":[1,49]},{"name":"HKEY","features":[49]},{"name":"HKEY_CLASSES_ROOT","features":[49]},{"name":"HKEY_CURRENT_CONFIG","features":[49]},{"name":"HKEY_CURRENT_USER","features":[49]},{"name":"HKEY_CURRENT_USER_LOCAL_SETTINGS","features":[49]},{"name":"HKEY_DYN_DATA","features":[49]},{"name":"HKEY_LOCAL_MACHINE","features":[49]},{"name":"HKEY_PERFORMANCE_DATA","features":[49]},{"name":"HKEY_PERFORMANCE_NLSTEXT","features":[49]},{"name":"HKEY_PERFORMANCE_TEXT","features":[49]},{"name":"HKEY_USERS","features":[49]},{"name":"IT_COMPACT","features":[49]},{"name":"IT_CUSTOM","features":[49]},{"name":"IT_PORTABLE","features":[49]},{"name":"IT_TYPICAL","features":[49]},{"name":"KEY_ALL_ACCESS","features":[49]},{"name":"KEY_CREATE_LINK","features":[49]},{"name":"KEY_CREATE_SUB_KEY","features":[49]},{"name":"KEY_ENUMERATE_SUB_KEYS","features":[49]},{"name":"KEY_EXECUTE","features":[49]},{"name":"KEY_NOTIFY","features":[49]},{"name":"KEY_QUERY_VALUE","features":[49]},{"name":"KEY_READ","features":[49]},{"name":"KEY_SET_VALUE","features":[49]},{"name":"KEY_WOW64_32KEY","features":[49]},{"name":"KEY_WOW64_64KEY","features":[49]},{"name":"KEY_WOW64_RES","features":[49]},{"name":"KEY_WRITE","features":[49]},{"name":"LASTGOOD_OPERATION","features":[49]},{"name":"LASTGOOD_OPERATION_DELETE","features":[49]},{"name":"LASTGOOD_OPERATION_NOPOSTPROC","features":[49]},{"name":"MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED","features":[49]},{"name":"MF_FLAGS_EVEN_IF_NO_RESOURCE","features":[49]},{"name":"MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE","features":[49]},{"name":"MF_FLAGS_NO_CREATE_IF_NO_RESOURCE","features":[49]},{"name":"NUM_EISA_RANGES","features":[49]},{"name":"NUM_RESOURCE_MAP","features":[49]},{"name":"PCIC_DEFAULT_IRQMASK","features":[49]},{"name":"PCIC_DEFAULT_NUMSOCKETS","features":[49]},{"name":"PCI_OPTIONS_USE_BIOS","features":[49]},{"name":"PCI_OPTIONS_USE_IRQ_STEERING","features":[49]},{"name":"PCMCIA_DEF_MEMBEGIN","features":[49]},{"name":"PCMCIA_DEF_MEMEND","features":[49]},{"name":"PCMCIA_DEF_MEMLEN","features":[49]},{"name":"PCMCIA_DEF_MIN_REGION","features":[49]},{"name":"PCMCIA_OPT_AUTOMEM","features":[49]},{"name":"PCMCIA_OPT_HAVE_SOCKET","features":[49]},{"name":"PCMCIA_OPT_NO_APMREMOVE","features":[49]},{"name":"PCMCIA_OPT_NO_AUDIO","features":[49]},{"name":"PCMCIA_OPT_NO_SOUND","features":[49]},{"name":"PIR_OPTION_DEFAULT","features":[49]},{"name":"PIR_OPTION_ENABLED","features":[49]},{"name":"PIR_OPTION_MSSPEC","features":[49]},{"name":"PIR_OPTION_REALMODE","features":[49]},{"name":"PIR_OPTION_REGISTRY","features":[49]},{"name":"PIR_STATUS_DISABLED","features":[49]},{"name":"PIR_STATUS_ENABLED","features":[49]},{"name":"PIR_STATUS_ERROR","features":[49]},{"name":"PIR_STATUS_MAX","features":[49]},{"name":"PIR_STATUS_MINIPORT_COMPATIBLE","features":[49]},{"name":"PIR_STATUS_MINIPORT_ERROR","features":[49]},{"name":"PIR_STATUS_MINIPORT_INVALID","features":[49]},{"name":"PIR_STATUS_MINIPORT_MAX","features":[49]},{"name":"PIR_STATUS_MINIPORT_NOKEY","features":[49]},{"name":"PIR_STATUS_MINIPORT_NONE","features":[49]},{"name":"PIR_STATUS_MINIPORT_NORMAL","features":[49]},{"name":"PIR_STATUS_MINIPORT_OVERRIDE","features":[49]},{"name":"PIR_STATUS_MINIPORT_SUCCESS","features":[49]},{"name":"PIR_STATUS_TABLE_BAD","features":[49]},{"name":"PIR_STATUS_TABLE_ERROR","features":[49]},{"name":"PIR_STATUS_TABLE_MAX","features":[49]},{"name":"PIR_STATUS_TABLE_MSSPEC","features":[49]},{"name":"PIR_STATUS_TABLE_NONE","features":[49]},{"name":"PIR_STATUS_TABLE_REALMODE","features":[49]},{"name":"PIR_STATUS_TABLE_REGISTRY","features":[49]},{"name":"PIR_STATUS_TABLE_SUCCESS","features":[49]},{"name":"PQUERYHANDLER","features":[49]},{"name":"PROVIDER_KEEPS_VALUE_LENGTH","features":[49]},{"name":"PVALUEA","features":[49]},{"name":"PVALUEW","features":[49]},{"name":"REGDF_CONFLICTDMA","features":[49]},{"name":"REGDF_CONFLICTIO","features":[49]},{"name":"REGDF_CONFLICTIRQ","features":[49]},{"name":"REGDF_CONFLICTMEM","features":[49]},{"name":"REGDF_GENFORCEDCONFIG","features":[49]},{"name":"REGDF_MAPIRQ2TO9","features":[49]},{"name":"REGDF_NEEDFULLCONFIG","features":[49]},{"name":"REGDF_NODETCONFIG","features":[49]},{"name":"REGDF_NOTDETDMA","features":[49]},{"name":"REGDF_NOTDETIO","features":[49]},{"name":"REGDF_NOTDETIRQ","features":[49]},{"name":"REGDF_NOTDETMEM","features":[49]},{"name":"REGDF_NOTVERIFIED","features":[49]},{"name":"REGSTR_DATA_NETOS_IPX","features":[49]},{"name":"REGSTR_DATA_NETOS_NDIS","features":[49]},{"name":"REGSTR_DATA_NETOS_ODI","features":[49]},{"name":"REGSTR_DEFAULT_INSTANCE","features":[49]},{"name":"REGSTR_KEY_ACPIENUM","features":[49]},{"name":"REGSTR_KEY_APM","features":[49]},{"name":"REGSTR_KEY_BIOSENUM","features":[49]},{"name":"REGSTR_KEY_CLASS","features":[49]},{"name":"REGSTR_KEY_CONFIG","features":[49]},{"name":"REGSTR_KEY_CONTROL","features":[49]},{"name":"REGSTR_KEY_CRASHES","features":[49]},{"name":"REGSTR_KEY_CURRENT","features":[49]},{"name":"REGSTR_KEY_CURRENT_ENV","features":[49]},{"name":"REGSTR_KEY_DANGERS","features":[49]},{"name":"REGSTR_KEY_DEFAULT","features":[49]},{"name":"REGSTR_KEY_DETMODVARS","features":[49]},{"name":"REGSTR_KEY_DEVICEPARAMETERS","features":[49]},{"name":"REGSTR_KEY_DEVICE_PROPERTIES","features":[49]},{"name":"REGSTR_KEY_DISPLAY_CLASS","features":[49]},{"name":"REGSTR_KEY_DOSOPTCDROM","features":[49]},{"name":"REGSTR_KEY_DOSOPTMOUSE","features":[49]},{"name":"REGSTR_KEY_DRIVERPARAMETERS","features":[49]},{"name":"REGSTR_KEY_DRIVERS","features":[49]},{"name":"REGSTR_KEY_EBDAUTOEXECBATKEYBOARD","features":[49]},{"name":"REGSTR_KEY_EBDAUTOEXECBATLOCAL","features":[49]},{"name":"REGSTR_KEY_EBDCONFIGSYSKEYBOARD","features":[49]},{"name":"REGSTR_KEY_EBDCONFIGSYSLOCAL","features":[49]},{"name":"REGSTR_KEY_EBDFILESKEYBOARD","features":[49]},{"name":"REGSTR_KEY_EBDFILESLOCAL","features":[49]},{"name":"REGSTR_KEY_EISAENUM","features":[49]},{"name":"REGSTR_KEY_ENUM","features":[49]},{"name":"REGSTR_KEY_EXPLORER","features":[49]},{"name":"REGSTR_KEY_FILTERS","features":[49]},{"name":"REGSTR_KEY_INIUPDATE","features":[49]},{"name":"REGSTR_KEY_ISAENUM","features":[49]},{"name":"REGSTR_KEY_JOYCURR","features":[49]},{"name":"REGSTR_KEY_JOYSETTINGS","features":[49]},{"name":"REGSTR_KEY_KEYBOARD_CLASS","features":[49]},{"name":"REGSTR_KEY_KNOWNDOCKINGSTATES","features":[49]},{"name":"REGSTR_KEY_LOGCONFIG","features":[49]},{"name":"REGSTR_KEY_LOGON","features":[49]},{"name":"REGSTR_KEY_LOWER_FILTER_LEVEL_DEFAULT","features":[49]},{"name":"REGSTR_KEY_MEDIA_CLASS","features":[49]},{"name":"REGSTR_KEY_MODEM_CLASS","features":[49]},{"name":"REGSTR_KEY_MODES","features":[49]},{"name":"REGSTR_KEY_MONITOR_CLASS","features":[49]},{"name":"REGSTR_KEY_MOUSE_CLASS","features":[49]},{"name":"REGSTR_KEY_NDISINFO","features":[49]},{"name":"REGSTR_KEY_NETWORK","features":[49]},{"name":"REGSTR_KEY_NETWORKPROVIDER","features":[49]},{"name":"REGSTR_KEY_NETWORK_PERSISTENT","features":[49]},{"name":"REGSTR_KEY_NETWORK_RECENT","features":[49]},{"name":"REGSTR_KEY_OVERRIDE","features":[49]},{"name":"REGSTR_KEY_PCIENUM","features":[49]},{"name":"REGSTR_KEY_PCMCIA","features":[49]},{"name":"REGSTR_KEY_PCMCIAENUM","features":[49]},{"name":"REGSTR_KEY_PCMCIA_CLASS","features":[49]},{"name":"REGSTR_KEY_PCMTD","features":[49]},{"name":"REGSTR_KEY_PCUNKNOWN","features":[49]},{"name":"REGSTR_KEY_POL_COMPUTERS","features":[49]},{"name":"REGSTR_KEY_POL_DEFAULT","features":[49]},{"name":"REGSTR_KEY_POL_USERGROUPDATA","features":[49]},{"name":"REGSTR_KEY_POL_USERGROUPS","features":[49]},{"name":"REGSTR_KEY_POL_USERS","features":[49]},{"name":"REGSTR_KEY_PORTS_CLASS","features":[49]},{"name":"REGSTR_KEY_PRINTERS","features":[49]},{"name":"REGSTR_KEY_PRINT_PROC","features":[49]},{"name":"REGSTR_KEY_ROOTENUM","features":[49]},{"name":"REGSTR_KEY_RUNHISTORY","features":[49]},{"name":"REGSTR_KEY_SCSI_CLASS","features":[49]},{"name":"REGSTR_KEY_SETUP","features":[49]},{"name":"REGSTR_KEY_SHARES","features":[49]},{"name":"REGSTR_KEY_SYSTEM","features":[49]},{"name":"REGSTR_KEY_SYSTEMBOARD","features":[49]},{"name":"REGSTR_KEY_UPPER_FILTER_LEVEL_DEFAULT","features":[49]},{"name":"REGSTR_KEY_USER","features":[49]},{"name":"REGSTR_KEY_VPOWERDENUM","features":[49]},{"name":"REGSTR_KEY_WINOLDAPP","features":[49]},{"name":"REGSTR_MACHTYPE_ATT_PC","features":[49]},{"name":"REGSTR_MACHTYPE_HP_VECTRA","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPC","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPCAT","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPCCONV","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPCJR","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPCXT","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPCXT_286","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS1","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_25","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_30","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_30_286","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_50","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_50Z","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_55SX","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_60","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_65SX","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_70","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_70_80","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_80","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_90","features":[49]},{"name":"REGSTR_MACHTYPE_IBMPS2_P70","features":[49]},{"name":"REGSTR_MACHTYPE_PHOENIX_PCAT","features":[49]},{"name":"REGSTR_MACHTYPE_UNKNOWN","features":[49]},{"name":"REGSTR_MACHTYPE_ZENITH_PC","features":[49]},{"name":"REGSTR_MAX_VALUE_LENGTH","features":[49]},{"name":"REGSTR_PATH_ADDRARB","features":[49]},{"name":"REGSTR_PATH_AEDEBUG","features":[49]},{"name":"REGSTR_PATH_APPEARANCE","features":[49]},{"name":"REGSTR_PATH_APPPATCH","features":[49]},{"name":"REGSTR_PATH_APPPATHS","features":[49]},{"name":"REGSTR_PATH_BIOSINFO","features":[49]},{"name":"REGSTR_PATH_BUSINFORMATION","features":[49]},{"name":"REGSTR_PATH_CDFS","features":[49]},{"name":"REGSTR_PATH_CHECKBADAPPS","features":[49]},{"name":"REGSTR_PATH_CHECKBADAPPS400","features":[49]},{"name":"REGSTR_PATH_CHECKDISK","features":[49]},{"name":"REGSTR_PATH_CHECKDISKSET","features":[49]},{"name":"REGSTR_PATH_CHECKDISKUDRVS","features":[49]},{"name":"REGSTR_PATH_CHECKVERDLLS","features":[49]},{"name":"REGSTR_PATH_CHILD_PREFIX","features":[49]},{"name":"REGSTR_PATH_CHKLASTCHECK","features":[49]},{"name":"REGSTR_PATH_CHKLASTSURFAN","features":[49]},{"name":"REGSTR_PATH_CLASS","features":[49]},{"name":"REGSTR_PATH_CLASS_NT","features":[49]},{"name":"REGSTR_PATH_CODEPAGE","features":[49]},{"name":"REGSTR_PATH_CODEVICEINSTALLERS","features":[49]},{"name":"REGSTR_PATH_COLORS","features":[49]},{"name":"REGSTR_PATH_COMPUTRNAME","features":[49]},{"name":"REGSTR_PATH_CONTROLPANEL","features":[49]},{"name":"REGSTR_PATH_CONTROLSFOLDER","features":[49]},{"name":"REGSTR_PATH_CRITICALDEVICEDATABASE","features":[49]},{"name":"REGSTR_PATH_CURRENTCONTROLSET","features":[49]},{"name":"REGSTR_PATH_CURRENT_CONTROL_SET","features":[49]},{"name":"REGSTR_PATH_CURSORS","features":[49]},{"name":"REGSTR_PATH_CVNETWORK","features":[49]},{"name":"REGSTR_PATH_DESKTOP","features":[49]},{"name":"REGSTR_PATH_DETECT","features":[49]},{"name":"REGSTR_PATH_DEVICEINSTALLER","features":[49]},{"name":"REGSTR_PATH_DEVICE_CLASSES","features":[49]},{"name":"REGSTR_PATH_DIFX","features":[49]},{"name":"REGSTR_PATH_DISPLAYSETTINGS","features":[49]},{"name":"REGSTR_PATH_DMAARB","features":[49]},{"name":"REGSTR_PATH_DRIVERSIGN","features":[49]},{"name":"REGSTR_PATH_DRIVERSIGN_POLICY","features":[49]},{"name":"REGSTR_PATH_ENUM","features":[49]},{"name":"REGSTR_PATH_ENVIRONMENTS","features":[49]},{"name":"REGSTR_PATH_EVENTLABELS","features":[49]},{"name":"REGSTR_PATH_EXPLORER","features":[49]},{"name":"REGSTR_PATH_FAULT","features":[49]},{"name":"REGSTR_PATH_FILESYSTEM","features":[49]},{"name":"REGSTR_PATH_FILESYSTEM_NOVOLTRACK","features":[49]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR","features":[49]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR0","features":[49]},{"name":"REGSTR_PATH_FONTS","features":[49]},{"name":"REGSTR_PATH_GRPCONV","features":[49]},{"name":"REGSTR_PATH_HACKINIFILE","features":[49]},{"name":"REGSTR_PATH_HWPROFILES","features":[49]},{"name":"REGSTR_PATH_HWPROFILESCURRENT","features":[49]},{"name":"REGSTR_PATH_ICONS","features":[49]},{"name":"REGSTR_PATH_IDCONFIGDB","features":[49]},{"name":"REGSTR_PATH_INSTALLEDFILES","features":[49]},{"name":"REGSTR_PATH_IOARB","features":[49]},{"name":"REGSTR_PATH_IOS","features":[49]},{"name":"REGSTR_PATH_IRQARB","features":[49]},{"name":"REGSTR_PATH_KEYBOARD","features":[49]},{"name":"REGSTR_PATH_KNOWN16DLLS","features":[49]},{"name":"REGSTR_PATH_KNOWNDLLS","features":[49]},{"name":"REGSTR_PATH_KNOWNVXDS","features":[49]},{"name":"REGSTR_PATH_LASTBACKUP","features":[49]},{"name":"REGSTR_PATH_LASTCHECK","features":[49]},{"name":"REGSTR_PATH_LASTGOOD","features":[49]},{"name":"REGSTR_PATH_LASTGOODTMP","features":[49]},{"name":"REGSTR_PATH_LASTOPTIMIZE","features":[49]},{"name":"REGSTR_PATH_LOOKSCHEMES","features":[49]},{"name":"REGSTR_PATH_METRICS","features":[49]},{"name":"REGSTR_PATH_MONITORS","features":[49]},{"name":"REGSTR_PATH_MOUSE","features":[49]},{"name":"REGSTR_PATH_MSDOSOPTS","features":[49]},{"name":"REGSTR_PATH_MULTIMEDIA_AUDIO","features":[49]},{"name":"REGSTR_PATH_MULTI_FUNCTION","features":[49]},{"name":"REGSTR_PATH_NCPSERVER","features":[49]},{"name":"REGSTR_PATH_NETEQUIV","features":[49]},{"name":"REGSTR_PATH_NETWORK_USERSETTINGS","features":[49]},{"name":"REGSTR_PATH_NEWDOSBOX","features":[49]},{"name":"REGSTR_PATH_NONDRIVERSIGN","features":[49]},{"name":"REGSTR_PATH_NONDRIVERSIGN_POLICY","features":[49]},{"name":"REGSTR_PATH_NOSUGGMSDOS","features":[49]},{"name":"REGSTR_PATH_NT_CURRENTVERSION","features":[49]},{"name":"REGSTR_PATH_NWREDIR","features":[49]},{"name":"REGSTR_PATH_PCIIR","features":[49]},{"name":"REGSTR_PATH_PER_HW_ID_STORAGE","features":[49]},{"name":"REGSTR_PATH_PIFCONVERT","features":[49]},{"name":"REGSTR_PATH_POLICIES","features":[49]},{"name":"REGSTR_PATH_PRINT","features":[49]},{"name":"REGSTR_PATH_PRINTERS","features":[49]},{"name":"REGSTR_PATH_PROPERTYSYSTEM","features":[49]},{"name":"REGSTR_PATH_PROVIDERS","features":[49]},{"name":"REGSTR_PATH_PWDPROVIDER","features":[49]},{"name":"REGSTR_PATH_REALMODENET","features":[49]},{"name":"REGSTR_PATH_REINSTALL","features":[49]},{"name":"REGSTR_PATH_RELIABILITY","features":[49]},{"name":"REGSTR_PATH_RELIABILITY_POLICY","features":[49]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_REPORTSNAPSHOT","features":[49]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SHUTDOWNREASONUI","features":[49]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SNAPSHOT","features":[49]},{"name":"REGSTR_PATH_ROOT","features":[49]},{"name":"REGSTR_PATH_RUN","features":[49]},{"name":"REGSTR_PATH_RUNONCE","features":[49]},{"name":"REGSTR_PATH_RUNONCEEX","features":[49]},{"name":"REGSTR_PATH_RUNSERVICES","features":[49]},{"name":"REGSTR_PATH_RUNSERVICESONCE","features":[49]},{"name":"REGSTR_PATH_SCHEMES","features":[49]},{"name":"REGSTR_PATH_SCREENSAVE","features":[49]},{"name":"REGSTR_PATH_SERVICES","features":[49]},{"name":"REGSTR_PATH_SETUP","features":[49]},{"name":"REGSTR_PATH_SHUTDOWN","features":[49]},{"name":"REGSTR_PATH_SOUND","features":[49]},{"name":"REGSTR_PATH_SYSTEMENUM","features":[49]},{"name":"REGSTR_PATH_SYSTRAY","features":[49]},{"name":"REGSTR_PATH_TIMEZONE","features":[49]},{"name":"REGSTR_PATH_UNINSTALL","features":[49]},{"name":"REGSTR_PATH_UPDATE","features":[49]},{"name":"REGSTR_PATH_VCOMM","features":[49]},{"name":"REGSTR_PATH_VMM","features":[49]},{"name":"REGSTR_PATH_VMM32FILES","features":[49]},{"name":"REGSTR_PATH_VNETSUP","features":[49]},{"name":"REGSTR_PATH_VOLUMECACHE","features":[49]},{"name":"REGSTR_PATH_VPOWERD","features":[49]},{"name":"REGSTR_PATH_VXD","features":[49]},{"name":"REGSTR_PATH_WARNVERDLLS","features":[49]},{"name":"REGSTR_PATH_WINBOOT","features":[49]},{"name":"REGSTR_PATH_WINDOWSAPPLETS","features":[49]},{"name":"REGSTR_PATH_WINLOGON","features":[49]},{"name":"REGSTR_PATH_WMI_SECURITY","features":[49]},{"name":"REGSTR_PCI_DUAL_IDE","features":[49]},{"name":"REGSTR_PCI_OPTIONS","features":[49]},{"name":"REGSTR_VALUE_DEFAULTLOC","features":[49]},{"name":"REGSTR_VALUE_ENABLE","features":[49]},{"name":"REGSTR_VALUE_LOWPOWERACTIVE","features":[49]},{"name":"REGSTR_VALUE_LOWPOWERTIMEOUT","features":[49]},{"name":"REGSTR_VALUE_NETPATH","features":[49]},{"name":"REGSTR_VALUE_POWEROFFACTIVE","features":[49]},{"name":"REGSTR_VALUE_POWEROFFTIMEOUT","features":[49]},{"name":"REGSTR_VALUE_SCRPASSWORD","features":[49]},{"name":"REGSTR_VALUE_USESCRPASSWORD","features":[49]},{"name":"REGSTR_VALUE_VERBOSE","features":[49]},{"name":"REGSTR_VAL_ACDRIVESPINDOWN","features":[49]},{"name":"REGSTR_VAL_ACSPINDOWNPREVIOUS","features":[49]},{"name":"REGSTR_VAL_ACTIVESERVICE","features":[49]},{"name":"REGSTR_VAL_ADDRESS","features":[49]},{"name":"REGSTR_VAL_AEDEBUG_AUTO","features":[49]},{"name":"REGSTR_VAL_AEDEBUG_DEBUGGER","features":[49]},{"name":"REGSTR_VAL_ALPHANUMPWDS","features":[49]},{"name":"REGSTR_VAL_APISUPPORT","features":[49]},{"name":"REGSTR_VAL_APMACTIMEOUT","features":[49]},{"name":"REGSTR_VAL_APMBATTIMEOUT","features":[49]},{"name":"REGSTR_VAL_APMBIOSVER","features":[49]},{"name":"REGSTR_VAL_APMFLAGS","features":[49]},{"name":"REGSTR_VAL_APMMENUSUSPEND","features":[49]},{"name":"REGSTR_VAL_APMSHUTDOWNPOWER","features":[49]},{"name":"REGSTR_VAL_APPINSTPATH","features":[49]},{"name":"REGSTR_VAL_ASKFORCONFIG","features":[49]},{"name":"REGSTR_VAL_ASKFORCONFIGFUNC","features":[49]},{"name":"REGSTR_VAL_ASYNCFILECOMMIT","features":[49]},{"name":"REGSTR_VAL_AUDIO_BITMAP","features":[49]},{"name":"REGSTR_VAL_AUDIO_ICON","features":[49]},{"name":"REGSTR_VAL_AUTHENT_AGENT","features":[49]},{"name":"REGSTR_VAL_AUTOEXEC","features":[49]},{"name":"REGSTR_VAL_AUTOINSNOTE","features":[49]},{"name":"REGSTR_VAL_AUTOLOGON","features":[49]},{"name":"REGSTR_VAL_AUTOMOUNT","features":[49]},{"name":"REGSTR_VAL_AUTOSTART","features":[49]},{"name":"REGSTR_VAL_BASICPROPERTIES","features":[49]},{"name":"REGSTR_VAL_BASICPROPERTIES_32","features":[49]},{"name":"REGSTR_VAL_BATDRIVESPINDOWN","features":[49]},{"name":"REGSTR_VAL_BATSPINDOWNPREVIOUS","features":[49]},{"name":"REGSTR_VAL_BEHAVIOR_ON_FAILED_VERIFY","features":[49]},{"name":"REGSTR_VAL_BIOSDATE","features":[49]},{"name":"REGSTR_VAL_BIOSNAME","features":[49]},{"name":"REGSTR_VAL_BIOSVERSION","features":[49]},{"name":"REGSTR_VAL_BITSPERPIXEL","features":[49]},{"name":"REGSTR_VAL_BOOTCONFIG","features":[49]},{"name":"REGSTR_VAL_BOOTCOUNT","features":[49]},{"name":"REGSTR_VAL_BOOTDIR","features":[49]},{"name":"REGSTR_VAL_BPP","features":[49]},{"name":"REGSTR_VAL_BT","features":[49]},{"name":"REGSTR_VAL_BUFFAGETIMEOUT","features":[49]},{"name":"REGSTR_VAL_BUFFIDLETIMEOUT","features":[49]},{"name":"REGSTR_VAL_BUSTYPE","features":[49]},{"name":"REGSTR_VAL_CAPABILITIES","features":[49]},{"name":"REGSTR_VAL_CARDSPECIFIC","features":[49]},{"name":"REGSTR_VAL_CDCACHESIZE","features":[49]},{"name":"REGSTR_VAL_CDCOMPATNAMES","features":[49]},{"name":"REGSTR_VAL_CDEXTERRORS","features":[49]},{"name":"REGSTR_VAL_CDNOREADAHEAD","features":[49]},{"name":"REGSTR_VAL_CDPREFETCH","features":[49]},{"name":"REGSTR_VAL_CDPREFETCHTAIL","features":[49]},{"name":"REGSTR_VAL_CDRAWCACHE","features":[49]},{"name":"REGSTR_VAL_CDROM","features":[49]},{"name":"REGSTR_VAL_CDROMCLASSNAME","features":[49]},{"name":"REGSTR_VAL_CDSHOWVERSIONS","features":[49]},{"name":"REGSTR_VAL_CDSVDSENSE","features":[49]},{"name":"REGSTR_VAL_CHECKSUM","features":[49]},{"name":"REGSTR_VAL_CLASS","features":[49]},{"name":"REGSTR_VAL_CLASSDESC","features":[49]},{"name":"REGSTR_VAL_CLASSGUID","features":[49]},{"name":"REGSTR_VAL_CMDRIVFLAGS","features":[49]},{"name":"REGSTR_VAL_CMENUMFLAGS","features":[49]},{"name":"REGSTR_VAL_COINSTALLERS_32","features":[49]},{"name":"REGSTR_VAL_COMINFO","features":[49]},{"name":"REGSTR_VAL_COMMENT","features":[49]},{"name":"REGSTR_VAL_COMPATIBLEIDS","features":[49]},{"name":"REGSTR_VAL_COMPRESSIONMETHOD","features":[49]},{"name":"REGSTR_VAL_COMPRESSIONTHRESHOLD","features":[49]},{"name":"REGSTR_VAL_COMPUTERNAME","features":[49]},{"name":"REGSTR_VAL_COMPUTRNAME","features":[49]},{"name":"REGSTR_VAL_COMVERIFYBASE","features":[49]},{"name":"REGSTR_VAL_CONFIG","features":[49]},{"name":"REGSTR_VAL_CONFIGFLAGS","features":[49]},{"name":"REGSTR_VAL_CONFIGMG","features":[49]},{"name":"REGSTR_VAL_CONFIGSYS","features":[49]},{"name":"REGSTR_VAL_CONNECTION_TYPE","features":[49]},{"name":"REGSTR_VAL_CONTAINERID","features":[49]},{"name":"REGSTR_VAL_CONTIGFILEALLOC","features":[49]},{"name":"REGSTR_VAL_CONVMEM","features":[49]},{"name":"REGSTR_VAL_CPU","features":[49]},{"name":"REGSTR_VAL_CRASHFUNCS","features":[49]},{"name":"REGSTR_VAL_CSCONFIGFLAGS","features":[49]},{"name":"REGSTR_VAL_CURCONFIG","features":[49]},{"name":"REGSTR_VAL_CURDRVLET","features":[49]},{"name":"REGSTR_VAL_CURRENTCONFIG","features":[49]},{"name":"REGSTR_VAL_CURRENT_BUILD","features":[49]},{"name":"REGSTR_VAL_CURRENT_CSDVERSION","features":[49]},{"name":"REGSTR_VAL_CURRENT_TYPE","features":[49]},{"name":"REGSTR_VAL_CURRENT_USER","features":[49]},{"name":"REGSTR_VAL_CURRENT_VERSION","features":[49]},{"name":"REGSTR_VAL_CUSTOMCOLORS","features":[49]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_CACHE_DATE","features":[49]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_HW_ID_KEY","features":[49]},{"name":"REGSTR_VAL_DEFAULT","features":[49]},{"name":"REGSTR_VAL_DETCONFIG","features":[49]},{"name":"REGSTR_VAL_DETECT","features":[49]},{"name":"REGSTR_VAL_DETECTFUNC","features":[49]},{"name":"REGSTR_VAL_DETFLAGS","features":[49]},{"name":"REGSTR_VAL_DETFUNC","features":[49]},{"name":"REGSTR_VAL_DEVDESC","features":[49]},{"name":"REGSTR_VAL_DEVICEDRIVER","features":[49]},{"name":"REGSTR_VAL_DEVICEPATH","features":[49]},{"name":"REGSTR_VAL_DEVICE_CHARACTERISTICS","features":[49]},{"name":"REGSTR_VAL_DEVICE_EXCLUSIVE","features":[49]},{"name":"REGSTR_VAL_DEVICE_INSTANCE","features":[49]},{"name":"REGSTR_VAL_DEVICE_SECURITY_DESCRIPTOR","features":[49]},{"name":"REGSTR_VAL_DEVICE_TYPE","features":[49]},{"name":"REGSTR_VAL_DEVLOADER","features":[49]},{"name":"REGSTR_VAL_DEVTYPE","features":[49]},{"name":"REGSTR_VAL_DIRECTHOST","features":[49]},{"name":"REGSTR_VAL_DIRTYSHUTDOWN","features":[49]},{"name":"REGSTR_VAL_DIRTYSHUTDOWNTIME","features":[49]},{"name":"REGSTR_VAL_DISABLECOUNT","features":[49]},{"name":"REGSTR_VAL_DISABLEPWDCACHING","features":[49]},{"name":"REGSTR_VAL_DISABLEREGTOOLS","features":[49]},{"name":"REGSTR_VAL_DISCONNECT","features":[49]},{"name":"REGSTR_VAL_DISK","features":[49]},{"name":"REGSTR_VAL_DISKCLASSNAME","features":[49]},{"name":"REGSTR_VAL_DISPCPL_NOAPPEARANCEPAGE","features":[49]},{"name":"REGSTR_VAL_DISPCPL_NOBACKGROUNDPAGE","features":[49]},{"name":"REGSTR_VAL_DISPCPL_NODISPCPL","features":[49]},{"name":"REGSTR_VAL_DISPCPL_NOSCRSAVPAGE","features":[49]},{"name":"REGSTR_VAL_DISPCPL_NOSETTINGSPAGE","features":[49]},{"name":"REGSTR_VAL_DISPLAY","features":[49]},{"name":"REGSTR_VAL_DISPLAYFLAGS","features":[49]},{"name":"REGSTR_VAL_DOCKED","features":[49]},{"name":"REGSTR_VAL_DOCKSTATE","features":[49]},{"name":"REGSTR_VAL_DOES_POLLING","features":[49]},{"name":"REGSTR_VAL_DONTLOADIFCONFLICT","features":[49]},{"name":"REGSTR_VAL_DONTUSEMEM","features":[49]},{"name":"REGSTR_VAL_DOSCP","features":[49]},{"name":"REGSTR_VAL_DOSOPTFLAGS","features":[49]},{"name":"REGSTR_VAL_DOSOPTGLOBALFLAGS","features":[49]},{"name":"REGSTR_VAL_DOSOPTTIP","features":[49]},{"name":"REGSTR_VAL_DOSPAGER","features":[49]},{"name":"REGSTR_VAL_DOS_SPOOL_MASK","features":[49]},{"name":"REGSTR_VAL_DOUBLEBUFFER","features":[49]},{"name":"REGSTR_VAL_DPI","features":[49]},{"name":"REGSTR_VAL_DPILOGICALX","features":[49]},{"name":"REGSTR_VAL_DPILOGICALY","features":[49]},{"name":"REGSTR_VAL_DPIPHYSICALX","features":[49]},{"name":"REGSTR_VAL_DPIPHYSICALY","features":[49]},{"name":"REGSTR_VAL_DPMS","features":[49]},{"name":"REGSTR_VAL_DRIVER","features":[49]},{"name":"REGSTR_VAL_DRIVERCACHEPATH","features":[49]},{"name":"REGSTR_VAL_DRIVERDATE","features":[49]},{"name":"REGSTR_VAL_DRIVERDATEDATA","features":[49]},{"name":"REGSTR_VAL_DRIVERVERSION","features":[49]},{"name":"REGSTR_VAL_DRIVESPINDOWN","features":[49]},{"name":"REGSTR_VAL_DRIVEWRITEBEHIND","features":[49]},{"name":"REGSTR_VAL_DRIVE_SPINDOWN","features":[49]},{"name":"REGSTR_VAL_DRV","features":[49]},{"name":"REGSTR_VAL_DRVDESC","features":[49]},{"name":"REGSTR_VAL_DYNAMIC","features":[49]},{"name":"REGSTR_VAL_EISA_FLAGS","features":[49]},{"name":"REGSTR_VAL_EISA_FUNCTIONS","features":[49]},{"name":"REGSTR_VAL_EISA_FUNCTIONS_MASK","features":[49]},{"name":"REGSTR_VAL_EISA_RANGES","features":[49]},{"name":"REGSTR_VAL_EISA_SIMULATE_INT15","features":[49]},{"name":"REGSTR_VAL_EJECT_PRIORITY","features":[49]},{"name":"REGSTR_VAL_ENABLEINTS","features":[49]},{"name":"REGSTR_VAL_ENUMERATOR","features":[49]},{"name":"REGSTR_VAL_ENUMPROPPAGES","features":[49]},{"name":"REGSTR_VAL_ENUMPROPPAGES_32","features":[49]},{"name":"REGSTR_VAL_ESDI","features":[49]},{"name":"REGSTR_VAL_EXISTS","features":[49]},{"name":"REGSTR_VAL_EXTMEM","features":[49]},{"name":"REGSTR_VAL_FAULT_LOGFILE","features":[49]},{"name":"REGSTR_VAL_FIFODEPTH","features":[49]},{"name":"REGSTR_VAL_FILESHARING","features":[49]},{"name":"REGSTR_VAL_FIRSTINSTALLDATETIME","features":[49]},{"name":"REGSTR_VAL_FIRSTNETDRIVE","features":[49]},{"name":"REGSTR_VAL_FLOP","features":[49]},{"name":"REGSTR_VAL_FLOPPY","features":[49]},{"name":"REGSTR_VAL_FONTSIZE","features":[49]},{"name":"REGSTR_VAL_FORCECL","features":[49]},{"name":"REGSTR_VAL_FORCEDCONFIG","features":[49]},{"name":"REGSTR_VAL_FORCEFIFO","features":[49]},{"name":"REGSTR_VAL_FORCELOAD","features":[49]},{"name":"REGSTR_VAL_FORCEPMIO","features":[49]},{"name":"REGSTR_VAL_FORCEREBOOT","features":[49]},{"name":"REGSTR_VAL_FORCERMIO","features":[49]},{"name":"REGSTR_VAL_FREESPACERATIO","features":[49]},{"name":"REGSTR_VAL_FRIENDLYNAME","features":[49]},{"name":"REGSTR_VAL_FSFILTERCLASS","features":[49]},{"name":"REGSTR_VAL_FULLTRACE","features":[49]},{"name":"REGSTR_VAL_FUNCDESC","features":[49]},{"name":"REGSTR_VAL_GAPTIME","features":[49]},{"name":"REGSTR_VAL_GRB","features":[49]},{"name":"REGSTR_VAL_HARDWAREID","features":[49]},{"name":"REGSTR_VAL_HIDESHAREPWDS","features":[49]},{"name":"REGSTR_VAL_HRES","features":[49]},{"name":"REGSTR_VAL_HWDETECT","features":[49]},{"name":"REGSTR_VAL_HWMECHANISM","features":[49]},{"name":"REGSTR_VAL_HWREV","features":[49]},{"name":"REGSTR_VAL_ID","features":[49]},{"name":"REGSTR_VAL_IDE_FORCE_SERIALIZE","features":[49]},{"name":"REGSTR_VAL_IDE_NO_SERIALIZE","features":[49]},{"name":"REGSTR_VAL_INFNAME","features":[49]},{"name":"REGSTR_VAL_INFPATH","features":[49]},{"name":"REGSTR_VAL_INFSECTION","features":[49]},{"name":"REGSTR_VAL_INFSECTIONEXT","features":[49]},{"name":"REGSTR_VAL_INHIBITRESULTS","features":[49]},{"name":"REGSTR_VAL_INSICON","features":[49]},{"name":"REGSTR_VAL_INSTALLER","features":[49]},{"name":"REGSTR_VAL_INSTALLER_32","features":[49]},{"name":"REGSTR_VAL_INSTALLTYPE","features":[49]},{"name":"REGSTR_VAL_INT13","features":[49]},{"name":"REGSTR_VAL_ISAPNP","features":[49]},{"name":"REGSTR_VAL_ISAPNP_RDP_OVERRIDE","features":[49]},{"name":"REGSTR_VAL_JOYCALLOUT","features":[49]},{"name":"REGSTR_VAL_JOYNCONFIG","features":[49]},{"name":"REGSTR_VAL_JOYNOEMCALLOUT","features":[49]},{"name":"REGSTR_VAL_JOYNOEMNAME","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL1","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL10","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL11","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL12","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL2","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL3","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL4","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL5","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL6","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL7","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL8","features":[49]},{"name":"REGSTR_VAL_JOYOEMCAL9","features":[49]},{"name":"REGSTR_VAL_JOYOEMCALCAP","features":[49]},{"name":"REGSTR_VAL_JOYOEMCALLOUT","features":[49]},{"name":"REGSTR_VAL_JOYOEMCALWINCAP","features":[49]},{"name":"REGSTR_VAL_JOYOEMDATA","features":[49]},{"name":"REGSTR_VAL_JOYOEMNAME","features":[49]},{"name":"REGSTR_VAL_JOYOEMPOVLABEL","features":[49]},{"name":"REGSTR_VAL_JOYOEMRLABEL","features":[49]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONCAP","features":[49]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONDESC","features":[49]},{"name":"REGSTR_VAL_JOYOEMTESTMOVECAP","features":[49]},{"name":"REGSTR_VAL_JOYOEMTESTMOVEDESC","features":[49]},{"name":"REGSTR_VAL_JOYOEMTESTWINCAP","features":[49]},{"name":"REGSTR_VAL_JOYOEMULABEL","features":[49]},{"name":"REGSTR_VAL_JOYOEMVLABEL","features":[49]},{"name":"REGSTR_VAL_JOYOEMXYLABEL","features":[49]},{"name":"REGSTR_VAL_JOYOEMZLABEL","features":[49]},{"name":"REGSTR_VAL_JOYUSERVALUES","features":[49]},{"name":"REGSTR_VAL_LASTALIVEBT","features":[49]},{"name":"REGSTR_VAL_LASTALIVEINTERVAL","features":[49]},{"name":"REGSTR_VAL_LASTALIVEPMPOLICY","features":[49]},{"name":"REGSTR_VAL_LASTALIVESTAMP","features":[49]},{"name":"REGSTR_VAL_LASTALIVESTAMPFORCED","features":[49]},{"name":"REGSTR_VAL_LASTALIVESTAMPINTERVAL","features":[49]},{"name":"REGSTR_VAL_LASTALIVESTAMPPOLICYINTERVAL","features":[49]},{"name":"REGSTR_VAL_LASTALIVEUPTIME","features":[49]},{"name":"REGSTR_VAL_LASTBOOTPMDRVS","features":[49]},{"name":"REGSTR_VAL_LASTCOMPUTERNAME","features":[49]},{"name":"REGSTR_VAL_LASTPCIBUSNUM","features":[49]},{"name":"REGSTR_VAL_LAST_UPDATE_TIME","features":[49]},{"name":"REGSTR_VAL_LEGALNOTICECAPTION","features":[49]},{"name":"REGSTR_VAL_LEGALNOTICETEXT","features":[49]},{"name":"REGSTR_VAL_LICENSINGINFO","features":[49]},{"name":"REGSTR_VAL_LINKED","features":[49]},{"name":"REGSTR_VAL_LOADHI","features":[49]},{"name":"REGSTR_VAL_LOADRMDRIVERS","features":[49]},{"name":"REGSTR_VAL_LOCATION_INFORMATION","features":[49]},{"name":"REGSTR_VAL_LOCATION_INFORMATION_OVERRIDE","features":[49]},{"name":"REGSTR_VAL_LOWERFILTERS","features":[49]},{"name":"REGSTR_VAL_LOWER_FILTER_DEFAULT_LEVEL","features":[49]},{"name":"REGSTR_VAL_LOWER_FILTER_LEVELS","features":[49]},{"name":"REGSTR_VAL_MACHINETYPE","features":[49]},{"name":"REGSTR_VAL_MANUFACTURER","features":[49]},{"name":"REGSTR_VAL_MAP","features":[49]},{"name":"REGSTR_VAL_MATCHINGDEVID","features":[49]},{"name":"REGSTR_VAL_MAXCONNECTIONS","features":[49]},{"name":"REGSTR_VAL_MAXLIP","features":[49]},{"name":"REGSTR_VAL_MAXRES","features":[49]},{"name":"REGSTR_VAL_MAXRETRY","features":[49]},{"name":"REGSTR_VAL_MAX_HCID_LEN","features":[49]},{"name":"REGSTR_VAL_MEDIA","features":[49]},{"name":"REGSTR_VAL_MFG","features":[49]},{"name":"REGSTR_VAL_MF_FLAGS","features":[49]},{"name":"REGSTR_VAL_MINIPORT_STAT","features":[49]},{"name":"REGSTR_VAL_MINPWDLEN","features":[49]},{"name":"REGSTR_VAL_MINRETRY","features":[49]},{"name":"REGSTR_VAL_MODE","features":[49]},{"name":"REGSTR_VAL_MODEL","features":[49]},{"name":"REGSTR_VAL_MSDOSMODE","features":[49]},{"name":"REGSTR_VAL_MSDOSMODEDISCARD","features":[49]},{"name":"REGSTR_VAL_MUSTBEVALIDATED","features":[49]},{"name":"REGSTR_VAL_NAMECACHECOUNT","features":[49]},{"name":"REGSTR_VAL_NAMENUMERICTAIL","features":[49]},{"name":"REGSTR_VAL_NCP_BROWSEMASTER","features":[49]},{"name":"REGSTR_VAL_NCP_USEPEERBROWSING","features":[49]},{"name":"REGSTR_VAL_NCP_USESAP","features":[49]},{"name":"REGSTR_VAL_NDP","features":[49]},{"name":"REGSTR_VAL_NETCARD","features":[49]},{"name":"REGSTR_VAL_NETCLEAN","features":[49]},{"name":"REGSTR_VAL_NETOSTYPE","features":[49]},{"name":"REGSTR_VAL_NETSETUP_DISABLE","features":[49]},{"name":"REGSTR_VAL_NETSETUP_NOCONFIGPAGE","features":[49]},{"name":"REGSTR_VAL_NETSETUP_NOIDPAGE","features":[49]},{"name":"REGSTR_VAL_NETSETUP_NOSECURITYPAGE","features":[49]},{"name":"REGSTR_VAL_NOCMOSORFDPT","features":[49]},{"name":"REGSTR_VAL_NODISPLAYCLASS","features":[49]},{"name":"REGSTR_VAL_NOENTIRENETWORK","features":[49]},{"name":"REGSTR_VAL_NOFILESHARING","features":[49]},{"name":"REGSTR_VAL_NOFILESHARINGCTRL","features":[49]},{"name":"REGSTR_VAL_NOIDE","features":[49]},{"name":"REGSTR_VAL_NOINSTALLCLASS","features":[49]},{"name":"REGSTR_VAL_NONSTANDARD_ATAPI","features":[49]},{"name":"REGSTR_VAL_NOPRINTSHARING","features":[49]},{"name":"REGSTR_VAL_NOPRINTSHARINGCTRL","features":[49]},{"name":"REGSTR_VAL_NOUSECLASS","features":[49]},{"name":"REGSTR_VAL_NOWORKGROUPCONTENTS","features":[49]},{"name":"REGSTR_VAL_OLDMSDOSVER","features":[49]},{"name":"REGSTR_VAL_OLDWINDIR","features":[49]},{"name":"REGSTR_VAL_OPTIMIZESFN","features":[49]},{"name":"REGSTR_VAL_OPTIONS","features":[49]},{"name":"REGSTR_VAL_OPTORDER","features":[49]},{"name":"REGSTR_VAL_P1284MDL","features":[49]},{"name":"REGSTR_VAL_P1284MFG","features":[49]},{"name":"REGSTR_VAL_PATHCACHECOUNT","features":[49]},{"name":"REGSTR_VAL_PCCARD_POWER","features":[49]},{"name":"REGSTR_VAL_PCI","features":[49]},{"name":"REGSTR_VAL_PCIBIOSVER","features":[49]},{"name":"REGSTR_VAL_PCICIRQMAP","features":[49]},{"name":"REGSTR_VAL_PCICOPTIONS","features":[49]},{"name":"REGSTR_VAL_PCMCIA_ALLOC","features":[49]},{"name":"REGSTR_VAL_PCMCIA_ATAD","features":[49]},{"name":"REGSTR_VAL_PCMCIA_MEM","features":[49]},{"name":"REGSTR_VAL_PCMCIA_OPT","features":[49]},{"name":"REGSTR_VAL_PCMCIA_SIZ","features":[49]},{"name":"REGSTR_VAL_PCMTDRIVER","features":[49]},{"name":"REGSTR_VAL_PCSSDRIVER","features":[49]},{"name":"REGSTR_VAL_PHYSICALDEVICEOBJECT","features":[49]},{"name":"REGSTR_VAL_PMODE_INT13","features":[49]},{"name":"REGSTR_VAL_PNPBIOSVER","features":[49]},{"name":"REGSTR_VAL_PNPSTRUCOFFSET","features":[49]},{"name":"REGSTR_VAL_POLICY","features":[49]},{"name":"REGSTR_VAL_POLLING","features":[49]},{"name":"REGSTR_VAL_PORTNAME","features":[49]},{"name":"REGSTR_VAL_PORTSUBCLASS","features":[49]},{"name":"REGSTR_VAL_PREFREDIR","features":[49]},{"name":"REGSTR_VAL_PRESERVECASE","features":[49]},{"name":"REGSTR_VAL_PRESERVELONGNAMES","features":[49]},{"name":"REGSTR_VAL_PRINTERS_HIDETABS","features":[49]},{"name":"REGSTR_VAL_PRINTERS_MASK","features":[49]},{"name":"REGSTR_VAL_PRINTERS_NOADD","features":[49]},{"name":"REGSTR_VAL_PRINTERS_NODELETE","features":[49]},{"name":"REGSTR_VAL_PRINTSHARING","features":[49]},{"name":"REGSTR_VAL_PRIORITY","features":[49]},{"name":"REGSTR_VAL_PRIVATE","features":[49]},{"name":"REGSTR_VAL_PRIVATEFUNC","features":[49]},{"name":"REGSTR_VAL_PRIVATEPROBLEM","features":[49]},{"name":"REGSTR_VAL_PRODUCTID","features":[49]},{"name":"REGSTR_VAL_PRODUCTTYPE","features":[49]},{"name":"REGSTR_VAL_PROFILEFLAGS","features":[49]},{"name":"REGSTR_VAL_PROPERTIES","features":[49]},{"name":"REGSTR_VAL_PROTINIPATH","features":[49]},{"name":"REGSTR_VAL_PROVIDER_NAME","features":[49]},{"name":"REGSTR_VAL_PWDEXPIRATION","features":[49]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEORDER","features":[49]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWD","features":[49]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWDHWND","features":[49]},{"name":"REGSTR_VAL_PWDPROVIDER_DESC","features":[49]},{"name":"REGSTR_VAL_PWDPROVIDER_GETPWDSTATUS","features":[49]},{"name":"REGSTR_VAL_PWDPROVIDER_ISNP","features":[49]},{"name":"REGSTR_VAL_PWDPROVIDER_PATH","features":[49]},{"name":"REGSTR_VAL_RDINTTHRESHOLD","features":[49]},{"name":"REGSTR_VAL_READAHEADTHRESHOLD","features":[49]},{"name":"REGSTR_VAL_READCACHING","features":[49]},{"name":"REGSTR_VAL_REALNETSTART","features":[49]},{"name":"REGSTR_VAL_REASONCODE","features":[49]},{"name":"REGSTR_VAL_REFRESHRATE","features":[49]},{"name":"REGSTR_VAL_REGITEMDELETEMESSAGE","features":[49]},{"name":"REGSTR_VAL_REGORGANIZATION","features":[49]},{"name":"REGSTR_VAL_REGOWNER","features":[49]},{"name":"REGSTR_VAL_REINSTALL_DEVICEINSTANCEIDS","features":[49]},{"name":"REGSTR_VAL_REINSTALL_DISPLAYNAME","features":[49]},{"name":"REGSTR_VAL_REINSTALL_STRING","features":[49]},{"name":"REGSTR_VAL_REMOTE_PATH","features":[49]},{"name":"REGSTR_VAL_REMOVABLE","features":[49]},{"name":"REGSTR_VAL_REMOVAL_POLICY","features":[49]},{"name":"REGSTR_VAL_REMOVEROMOKAY","features":[49]},{"name":"REGSTR_VAL_REMOVEROMOKAYFUNC","features":[49]},{"name":"REGSTR_VAL_RESERVED_DEVNODE","features":[49]},{"name":"REGSTR_VAL_RESOLUTION","features":[49]},{"name":"REGSTR_VAL_RESOURCES","features":[49]},{"name":"REGSTR_VAL_RESOURCE_MAP","features":[49]},{"name":"REGSTR_VAL_RESOURCE_PICKER_EXCEPTIONS","features":[49]},{"name":"REGSTR_VAL_RESOURCE_PICKER_TAGS","features":[49]},{"name":"REGSTR_VAL_RESTRICTRUN","features":[49]},{"name":"REGSTR_VAL_RESUMERESET","features":[49]},{"name":"REGSTR_VAL_REVISION","features":[49]},{"name":"REGSTR_VAL_REVLEVEL","features":[49]},{"name":"REGSTR_VAL_ROOT_DEVNODE","features":[49]},{"name":"REGSTR_VAL_RUNLOGINSCRIPT","features":[49]},{"name":"REGSTR_VAL_SCANNER","features":[49]},{"name":"REGSTR_VAL_SCAN_ONLY_FIRST","features":[49]},{"name":"REGSTR_VAL_SCSI","features":[49]},{"name":"REGSTR_VAL_SCSILUN","features":[49]},{"name":"REGSTR_VAL_SCSITID","features":[49]},{"name":"REGSTR_VAL_SEARCHMODE","features":[49]},{"name":"REGSTR_VAL_SEARCHOPTIONS","features":[49]},{"name":"REGSTR_VAL_SECCPL_NOADMINPAGE","features":[49]},{"name":"REGSTR_VAL_SECCPL_NOPROFILEPAGE","features":[49]},{"name":"REGSTR_VAL_SECCPL_NOPWDPAGE","features":[49]},{"name":"REGSTR_VAL_SECCPL_NOSECCPL","features":[49]},{"name":"REGSTR_VAL_SERVICE","features":[49]},{"name":"REGSTR_VAL_SETUPFLAGS","features":[49]},{"name":"REGSTR_VAL_SETUPMACHINETYPE","features":[49]},{"name":"REGSTR_VAL_SETUPN","features":[49]},{"name":"REGSTR_VAL_SETUPNPATH","features":[49]},{"name":"REGSTR_VAL_SETUPPROGRAMRAN","features":[49]},{"name":"REGSTR_VAL_SHARES_FLAGS","features":[49]},{"name":"REGSTR_VAL_SHARES_PATH","features":[49]},{"name":"REGSTR_VAL_SHARES_REMARK","features":[49]},{"name":"REGSTR_VAL_SHARES_RO_PASS","features":[49]},{"name":"REGSTR_VAL_SHARES_RW_PASS","features":[49]},{"name":"REGSTR_VAL_SHARES_TYPE","features":[49]},{"name":"REGSTR_VAL_SHARE_IRQ","features":[49]},{"name":"REGSTR_VAL_SHELLVERSION","features":[49]},{"name":"REGSTR_VAL_SHOWDOTS","features":[49]},{"name":"REGSTR_VAL_SHOWREASONUI","features":[49]},{"name":"REGSTR_VAL_SHUTDOWNREASON","features":[49]},{"name":"REGSTR_VAL_SHUTDOWNREASON_CODE","features":[49]},{"name":"REGSTR_VAL_SHUTDOWNREASON_COMMENT","features":[49]},{"name":"REGSTR_VAL_SHUTDOWNREASON_PROCESS","features":[49]},{"name":"REGSTR_VAL_SHUTDOWNREASON_USERNAME","features":[49]},{"name":"REGSTR_VAL_SHUTDOWN_FLAGS","features":[49]},{"name":"REGSTR_VAL_SHUTDOWN_IGNORE_PREDEFINED","features":[49]},{"name":"REGSTR_VAL_SHUTDOWN_STATE_SNAPSHOT","features":[49]},{"name":"REGSTR_VAL_SILENTINSTALL","features":[49]},{"name":"REGSTR_VAL_SLSUPPORT","features":[49]},{"name":"REGSTR_VAL_SOFTCOMPATMODE","features":[49]},{"name":"REGSTR_VAL_SRCPATH","features":[49]},{"name":"REGSTR_VAL_SRVNAMECACHE","features":[49]},{"name":"REGSTR_VAL_SRVNAMECACHECOUNT","features":[49]},{"name":"REGSTR_VAL_SRVNAMECACHENETPROV","features":[49]},{"name":"REGSTR_VAL_START_ON_BOOT","features":[49]},{"name":"REGSTR_VAL_STAT","features":[49]},{"name":"REGSTR_VAL_STATICDRIVE","features":[49]},{"name":"REGSTR_VAL_STATICVXD","features":[49]},{"name":"REGSTR_VAL_STDDOSOPTION","features":[49]},{"name":"REGSTR_VAL_SUBMODEL","features":[49]},{"name":"REGSTR_VAL_SUPPORTBURST","features":[49]},{"name":"REGSTR_VAL_SUPPORTLFN","features":[49]},{"name":"REGSTR_VAL_SUPPORTTUNNELLING","features":[49]},{"name":"REGSTR_VAL_SYMBOLIC_LINK","features":[49]},{"name":"REGSTR_VAL_SYNCDATAXFER","features":[49]},{"name":"REGSTR_VAL_SYSDM","features":[49]},{"name":"REGSTR_VAL_SYSDMFUNC","features":[49]},{"name":"REGSTR_VAL_SYSTEMCPL_NOCONFIGPAGE","features":[49]},{"name":"REGSTR_VAL_SYSTEMCPL_NODEVMGRPAGE","features":[49]},{"name":"REGSTR_VAL_SYSTEMCPL_NOFILESYSPAGE","features":[49]},{"name":"REGSTR_VAL_SYSTEMCPL_NOVIRTMEMPAGE","features":[49]},{"name":"REGSTR_VAL_SYSTEMROOT","features":[49]},{"name":"REGSTR_VAL_SYSTRAYBATFLAGS","features":[49]},{"name":"REGSTR_VAL_SYSTRAYPCCARDFLAGS","features":[49]},{"name":"REGSTR_VAL_SYSTRAYSVCS","features":[49]},{"name":"REGSTR_VAL_TABLE_STAT","features":[49]},{"name":"REGSTR_VAL_TAPE","features":[49]},{"name":"REGSTR_VAL_TRANSITION","features":[49]},{"name":"REGSTR_VAL_TRANSPORT","features":[49]},{"name":"REGSTR_VAL_TZACTBIAS","features":[49]},{"name":"REGSTR_VAL_TZBIAS","features":[49]},{"name":"REGSTR_VAL_TZDLTBIAS","features":[49]},{"name":"REGSTR_VAL_TZDLTFLAG","features":[49]},{"name":"REGSTR_VAL_TZDLTNAME","features":[49]},{"name":"REGSTR_VAL_TZDLTSTART","features":[49]},{"name":"REGSTR_VAL_TZNOAUTOTIME","features":[49]},{"name":"REGSTR_VAL_TZNOCHANGEEND","features":[49]},{"name":"REGSTR_VAL_TZNOCHANGESTART","features":[49]},{"name":"REGSTR_VAL_TZSTDBIAS","features":[49]},{"name":"REGSTR_VAL_TZSTDNAME","features":[49]},{"name":"REGSTR_VAL_TZSTDSTART","features":[49]},{"name":"REGSTR_VAL_UI_NUMBER","features":[49]},{"name":"REGSTR_VAL_UI_NUMBER_DESC_FORMAT","features":[49]},{"name":"REGSTR_VAL_UNDOCK_WITHOUT_LOGON","features":[49]},{"name":"REGSTR_VAL_UNINSTALLER_COMMANDLINE","features":[49]},{"name":"REGSTR_VAL_UNINSTALLER_DISPLAYNAME","features":[49]},{"name":"REGSTR_VAL_UPGRADE","features":[49]},{"name":"REGSTR_VAL_UPPERFILTERS","features":[49]},{"name":"REGSTR_VAL_UPPER_FILTER_DEFAULT_LEVEL","features":[49]},{"name":"REGSTR_VAL_UPPER_FILTER_LEVELS","features":[49]},{"name":"REGSTR_VAL_USERSETTINGS","features":[49]},{"name":"REGSTR_VAL_USER_NAME","features":[49]},{"name":"REGSTR_VAL_USRDRVLET","features":[49]},{"name":"REGSTR_VAL_VDD","features":[49]},{"name":"REGSTR_VAL_VER","features":[49]},{"name":"REGSTR_VAL_VERIFYKEY","features":[49]},{"name":"REGSTR_VAL_VIRTUALHDIRQ","features":[49]},{"name":"REGSTR_VAL_VOLIDLETIMEOUT","features":[49]},{"name":"REGSTR_VAL_VPOWERDFLAGS","features":[49]},{"name":"REGSTR_VAL_VRES","features":[49]},{"name":"REGSTR_VAL_VXDGROUPS","features":[49]},{"name":"REGSTR_VAL_WAITFORUNDOCK","features":[49]},{"name":"REGSTR_VAL_WAITFORUNDOCKFUNC","features":[49]},{"name":"REGSTR_VAL_WIN31FILESYSTEM","features":[49]},{"name":"REGSTR_VAL_WIN31PROVIDER","features":[49]},{"name":"REGSTR_VAL_WINBOOTDIR","features":[49]},{"name":"REGSTR_VAL_WINCP","features":[49]},{"name":"REGSTR_VAL_WINDIR","features":[49]},{"name":"REGSTR_VAL_WINOLDAPP_DISABLED","features":[49]},{"name":"REGSTR_VAL_WINOLDAPP_NOREALMODE","features":[49]},{"name":"REGSTR_VAL_WORKGROUP","features":[49]},{"name":"REGSTR_VAL_WRAPPER","features":[49]},{"name":"REGSTR_VAL_WRINTTHRESHOLD","features":[49]},{"name":"REGSTR_VAL_WRKGRP_FORCEMAPPING","features":[49]},{"name":"REGSTR_VAL_WRKGRP_REQUIRED","features":[49]},{"name":"REG_BINARY","features":[49]},{"name":"REG_CREATED_NEW_KEY","features":[49]},{"name":"REG_CREATE_KEY_DISPOSITION","features":[49]},{"name":"REG_DWORD","features":[49]},{"name":"REG_DWORD_BIG_ENDIAN","features":[49]},{"name":"REG_DWORD_LITTLE_ENDIAN","features":[49]},{"name":"REG_EXPAND_SZ","features":[49]},{"name":"REG_FORCE_RESTORE","features":[49]},{"name":"REG_FULL_RESOURCE_DESCRIPTOR","features":[49]},{"name":"REG_KEY_INSTDEV","features":[49]},{"name":"REG_LATEST_FORMAT","features":[49]},{"name":"REG_LINK","features":[49]},{"name":"REG_MUI_STRING_TRUNCATE","features":[49]},{"name":"REG_MULTI_SZ","features":[49]},{"name":"REG_NONE","features":[49]},{"name":"REG_NOTIFY_CHANGE_ATTRIBUTES","features":[49]},{"name":"REG_NOTIFY_CHANGE_LAST_SET","features":[49]},{"name":"REG_NOTIFY_CHANGE_NAME","features":[49]},{"name":"REG_NOTIFY_CHANGE_SECURITY","features":[49]},{"name":"REG_NOTIFY_FILTER","features":[49]},{"name":"REG_NOTIFY_THREAD_AGNOSTIC","features":[49]},{"name":"REG_NO_COMPRESSION","features":[49]},{"name":"REG_OPENED_EXISTING_KEY","features":[49]},{"name":"REG_OPEN_CREATE_OPTIONS","features":[49]},{"name":"REG_OPTION_BACKUP_RESTORE","features":[49]},{"name":"REG_OPTION_CREATE_LINK","features":[49]},{"name":"REG_OPTION_DONT_VIRTUALIZE","features":[49]},{"name":"REG_OPTION_NON_VOLATILE","features":[49]},{"name":"REG_OPTION_OPEN_LINK","features":[49]},{"name":"REG_OPTION_RESERVED","features":[49]},{"name":"REG_OPTION_VOLATILE","features":[49]},{"name":"REG_PROCESS_APPKEY","features":[49]},{"name":"REG_PROVIDER","features":[49]},{"name":"REG_QWORD","features":[49]},{"name":"REG_QWORD_LITTLE_ENDIAN","features":[49]},{"name":"REG_RESOURCE_LIST","features":[49]},{"name":"REG_RESOURCE_REQUIREMENTS_LIST","features":[49]},{"name":"REG_RESTORE_KEY_FLAGS","features":[49]},{"name":"REG_ROUTINE_FLAGS","features":[49]},{"name":"REG_SAM_FLAGS","features":[49]},{"name":"REG_SAVE_FORMAT","features":[49]},{"name":"REG_SECURE_CONNECTION","features":[49]},{"name":"REG_STANDARD_FORMAT","features":[49]},{"name":"REG_SZ","features":[49]},{"name":"REG_USE_CURRENT_SECURITY_CONTEXT","features":[49]},{"name":"REG_VALUE_TYPE","features":[49]},{"name":"REG_WHOLE_HIVE_VOLATILE","features":[49]},{"name":"RRF_NOEXPAND","features":[49]},{"name":"RRF_RT_ANY","features":[49]},{"name":"RRF_RT_DWORD","features":[49]},{"name":"RRF_RT_QWORD","features":[49]},{"name":"RRF_RT_REG_BINARY","features":[49]},{"name":"RRF_RT_REG_DWORD","features":[49]},{"name":"RRF_RT_REG_EXPAND_SZ","features":[49]},{"name":"RRF_RT_REG_MULTI_SZ","features":[49]},{"name":"RRF_RT_REG_NONE","features":[49]},{"name":"RRF_RT_REG_QWORD","features":[49]},{"name":"RRF_RT_REG_SZ","features":[49]},{"name":"RRF_SUBKEY_WOW6432KEY","features":[49]},{"name":"RRF_SUBKEY_WOW6464KEY","features":[49]},{"name":"RRF_WOW64_MASK","features":[49]},{"name":"RRF_ZEROONFAILURE","features":[49]},{"name":"RegCloseKey","features":[1,49]},{"name":"RegConnectRegistryA","features":[1,49]},{"name":"RegConnectRegistryExA","features":[49]},{"name":"RegConnectRegistryExW","features":[49]},{"name":"RegConnectRegistryW","features":[1,49]},{"name":"RegCopyTreeA","features":[1,49]},{"name":"RegCopyTreeW","features":[1,49]},{"name":"RegCreateKeyA","features":[1,49]},{"name":"RegCreateKeyExA","features":[1,4,49]},{"name":"RegCreateKeyExW","features":[1,4,49]},{"name":"RegCreateKeyTransactedA","features":[1,4,49]},{"name":"RegCreateKeyTransactedW","features":[1,4,49]},{"name":"RegCreateKeyW","features":[1,49]},{"name":"RegDeleteKeyA","features":[1,49]},{"name":"RegDeleteKeyExA","features":[1,49]},{"name":"RegDeleteKeyExW","features":[1,49]},{"name":"RegDeleteKeyTransactedA","features":[1,49]},{"name":"RegDeleteKeyTransactedW","features":[1,49]},{"name":"RegDeleteKeyValueA","features":[1,49]},{"name":"RegDeleteKeyValueW","features":[1,49]},{"name":"RegDeleteKeyW","features":[1,49]},{"name":"RegDeleteTreeA","features":[1,49]},{"name":"RegDeleteTreeW","features":[1,49]},{"name":"RegDeleteValueA","features":[1,49]},{"name":"RegDeleteValueW","features":[1,49]},{"name":"RegDisablePredefinedCache","features":[1,49]},{"name":"RegDisablePredefinedCacheEx","features":[1,49]},{"name":"RegDisableReflectionKey","features":[1,49]},{"name":"RegEnableReflectionKey","features":[1,49]},{"name":"RegEnumKeyA","features":[1,49]},{"name":"RegEnumKeyExA","features":[1,49]},{"name":"RegEnumKeyExW","features":[1,49]},{"name":"RegEnumKeyW","features":[1,49]},{"name":"RegEnumValueA","features":[1,49]},{"name":"RegEnumValueW","features":[1,49]},{"name":"RegFlushKey","features":[1,49]},{"name":"RegGetKeySecurity","features":[1,4,49]},{"name":"RegGetValueA","features":[1,49]},{"name":"RegGetValueW","features":[1,49]},{"name":"RegLoadAppKeyA","features":[1,49]},{"name":"RegLoadAppKeyW","features":[1,49]},{"name":"RegLoadKeyA","features":[1,49]},{"name":"RegLoadKeyW","features":[1,49]},{"name":"RegLoadMUIStringA","features":[1,49]},{"name":"RegLoadMUIStringW","features":[1,49]},{"name":"RegNotifyChangeKeyValue","features":[1,49]},{"name":"RegOpenCurrentUser","features":[1,49]},{"name":"RegOpenKeyA","features":[1,49]},{"name":"RegOpenKeyExA","features":[1,49]},{"name":"RegOpenKeyExW","features":[1,49]},{"name":"RegOpenKeyTransactedA","features":[1,49]},{"name":"RegOpenKeyTransactedW","features":[1,49]},{"name":"RegOpenKeyW","features":[1,49]},{"name":"RegOpenUserClassesRoot","features":[1,49]},{"name":"RegOverridePredefKey","features":[1,49]},{"name":"RegQueryInfoKeyA","features":[1,49]},{"name":"RegQueryInfoKeyW","features":[1,49]},{"name":"RegQueryMultipleValuesA","features":[1,49]},{"name":"RegQueryMultipleValuesW","features":[1,49]},{"name":"RegQueryReflectionKey","features":[1,49]},{"name":"RegQueryValueA","features":[1,49]},{"name":"RegQueryValueExA","features":[1,49]},{"name":"RegQueryValueExW","features":[1,49]},{"name":"RegQueryValueW","features":[1,49]},{"name":"RegRenameKey","features":[1,49]},{"name":"RegReplaceKeyA","features":[1,49]},{"name":"RegReplaceKeyW","features":[1,49]},{"name":"RegRestoreKeyA","features":[1,49]},{"name":"RegRestoreKeyW","features":[1,49]},{"name":"RegSaveKeyA","features":[1,4,49]},{"name":"RegSaveKeyExA","features":[1,4,49]},{"name":"RegSaveKeyExW","features":[1,4,49]},{"name":"RegSaveKeyW","features":[1,4,49]},{"name":"RegSetKeySecurity","features":[1,4,49]},{"name":"RegSetKeyValueA","features":[1,49]},{"name":"RegSetKeyValueW","features":[1,49]},{"name":"RegSetValueA","features":[1,49]},{"name":"RegSetValueExA","features":[1,49]},{"name":"RegSetValueExW","features":[1,49]},{"name":"RegSetValueW","features":[1,49]},{"name":"RegUnLoadKeyA","features":[1,49]},{"name":"RegUnLoadKeyW","features":[1,49]},{"name":"SUF_BATCHINF","features":[49]},{"name":"SUF_CLEAN","features":[49]},{"name":"SUF_EXPRESS","features":[49]},{"name":"SUF_FIRSTTIME","features":[49]},{"name":"SUF_INSETUP","features":[49]},{"name":"SUF_NETHDBOOT","features":[49]},{"name":"SUF_NETRPLBOOT","features":[49]},{"name":"SUF_NETSETUP","features":[49]},{"name":"SUF_SBSCOPYOK","features":[49]},{"name":"VALENTA","features":[49]},{"name":"VALENTW","features":[49]},{"name":"VPDF_DISABLEPWRMGMT","features":[49]},{"name":"VPDF_DISABLEPWRSTATUSPOLL","features":[49]},{"name":"VPDF_DISABLERINGRESUME","features":[49]},{"name":"VPDF_FORCEAPM10MODE","features":[49]},{"name":"VPDF_SHOWMULTIBATT","features":[49]},{"name":"VPDF_SKIPINTELSLCHECK","features":[49]},{"name":"val_context","features":[49]}],"597":[{"name":"AAAccountingData","features":[104]},{"name":"AAAccountingDataType","features":[104]},{"name":"AAAuthSchemes","features":[104]},{"name":"AATrustClassID","features":[104]},{"name":"AA_AUTH_ANY","features":[104]},{"name":"AA_AUTH_BASIC","features":[104]},{"name":"AA_AUTH_CONID","features":[104]},{"name":"AA_AUTH_COOKIE","features":[104]},{"name":"AA_AUTH_DIGEST","features":[104]},{"name":"AA_AUTH_LOGGEDONCREDENTIALS","features":[104]},{"name":"AA_AUTH_MAX","features":[104]},{"name":"AA_AUTH_MIN","features":[104]},{"name":"AA_AUTH_NEGOTIATE","features":[104]},{"name":"AA_AUTH_NTLM","features":[104]},{"name":"AA_AUTH_ORGID","features":[104]},{"name":"AA_AUTH_SC","features":[104]},{"name":"AA_AUTH_SSPI_NTLM","features":[104]},{"name":"AA_MAIN_SESSION_CLOSED","features":[104]},{"name":"AA_MAIN_SESSION_CREATION","features":[104]},{"name":"AA_SUB_SESSION_CLOSED","features":[104]},{"name":"AA_SUB_SESSION_CREATION","features":[104]},{"name":"AA_TRUSTEDUSER_TRUSTEDCLIENT","features":[104]},{"name":"AA_TRUSTEDUSER_UNTRUSTEDCLIENT","features":[104]},{"name":"AA_UNTRUSTED","features":[104]},{"name":"ACQUIRE_TARGET_LOCK_TIMEOUT","features":[104]},{"name":"ADsTSUserEx","features":[104]},{"name":"AE_CURRENT_POSITION","features":[104]},{"name":"AE_POSITION_FLAGS","features":[104]},{"name":"AllowOnlySDRServers","features":[104]},{"name":"BITMAP_RENDERER_STATISTICS","features":[104]},{"name":"CHANNEL_BUFFER_SIZE","features":[104]},{"name":"CHANNEL_CHUNK_LENGTH","features":[104]},{"name":"CHANNEL_DEF","features":[104]},{"name":"CHANNEL_ENTRY_POINTS","features":[104]},{"name":"CHANNEL_EVENT_CONNECTED","features":[104]},{"name":"CHANNEL_EVENT_DATA_RECEIVED","features":[104]},{"name":"CHANNEL_EVENT_DISCONNECTED","features":[104]},{"name":"CHANNEL_EVENT_INITIALIZED","features":[104]},{"name":"CHANNEL_EVENT_TERMINATED","features":[104]},{"name":"CHANNEL_EVENT_V1_CONNECTED","features":[104]},{"name":"CHANNEL_EVENT_WRITE_CANCELLED","features":[104]},{"name":"CHANNEL_EVENT_WRITE_COMPLETE","features":[104]},{"name":"CHANNEL_FLAG_FAIL","features":[104]},{"name":"CHANNEL_FLAG_FIRST","features":[104]},{"name":"CHANNEL_FLAG_LAST","features":[104]},{"name":"CHANNEL_FLAG_MIDDLE","features":[104]},{"name":"CHANNEL_MAX_COUNT","features":[104]},{"name":"CHANNEL_NAME_LEN","features":[104]},{"name":"CHANNEL_OPTION_COMPRESS","features":[104]},{"name":"CHANNEL_OPTION_COMPRESS_RDP","features":[104]},{"name":"CHANNEL_OPTION_ENCRYPT_CS","features":[104]},{"name":"CHANNEL_OPTION_ENCRYPT_RDP","features":[104]},{"name":"CHANNEL_OPTION_ENCRYPT_SC","features":[104]},{"name":"CHANNEL_OPTION_INITIALIZED","features":[104]},{"name":"CHANNEL_OPTION_PRI_HIGH","features":[104]},{"name":"CHANNEL_OPTION_PRI_LOW","features":[104]},{"name":"CHANNEL_OPTION_PRI_MED","features":[104]},{"name":"CHANNEL_OPTION_REMOTE_CONTROL_PERSISTENT","features":[104]},{"name":"CHANNEL_OPTION_SHOW_PROTOCOL","features":[104]},{"name":"CHANNEL_PDU_HEADER","features":[104]},{"name":"CHANNEL_RC_ALREADY_CONNECTED","features":[104]},{"name":"CHANNEL_RC_ALREADY_INITIALIZED","features":[104]},{"name":"CHANNEL_RC_ALREADY_OPEN","features":[104]},{"name":"CHANNEL_RC_BAD_CHANNEL","features":[104]},{"name":"CHANNEL_RC_BAD_CHANNEL_HANDLE","features":[104]},{"name":"CHANNEL_RC_BAD_INIT_HANDLE","features":[104]},{"name":"CHANNEL_RC_BAD_PROC","features":[104]},{"name":"CHANNEL_RC_INITIALIZATION_ERROR","features":[104]},{"name":"CHANNEL_RC_INVALID_INSTANCE","features":[104]},{"name":"CHANNEL_RC_NOT_CONNECTED","features":[104]},{"name":"CHANNEL_RC_NOT_INITIALIZED","features":[104]},{"name":"CHANNEL_RC_NOT_IN_VIRTUALCHANNELENTRY","features":[104]},{"name":"CHANNEL_RC_NOT_OPEN","features":[104]},{"name":"CHANNEL_RC_NO_BUFFER","features":[104]},{"name":"CHANNEL_RC_NO_MEMORY","features":[104]},{"name":"CHANNEL_RC_NULL_DATA","features":[104]},{"name":"CHANNEL_RC_OK","features":[104]},{"name":"CHANNEL_RC_TOO_MANY_CHANNELS","features":[104]},{"name":"CHANNEL_RC_UNKNOWN_CHANNEL_NAME","features":[104]},{"name":"CHANNEL_RC_UNSUPPORTED_VERSION","features":[104]},{"name":"CHANNEL_RC_ZERO_LENGTH","features":[104]},{"name":"CLIENTADDRESS_LENGTH","features":[104]},{"name":"CLIENTNAME_LENGTH","features":[104]},{"name":"CLIENT_DISPLAY","features":[104]},{"name":"CLIENT_MESSAGE_CONNECTION_ERROR","features":[104]},{"name":"CLIENT_MESSAGE_CONNECTION_INVALID","features":[104]},{"name":"CLIENT_MESSAGE_CONNECTION_STATUS","features":[104]},{"name":"CLIENT_MESSAGE_TYPE","features":[104]},{"name":"CONNECTION_CHANGE_NOTIFICATION","features":[104]},{"name":"CONNECTION_PROPERTY_CURSOR_BLINK_DISABLED","features":[104]},{"name":"CONNECTION_PROPERTY_IDLE_TIME_WARNING","features":[104]},{"name":"CONNECTION_REQUEST_CANCELLED","features":[104]},{"name":"CONNECTION_REQUEST_FAILED","features":[104]},{"name":"CONNECTION_REQUEST_INVALID","features":[104]},{"name":"CONNECTION_REQUEST_LB_COMPLETED","features":[104]},{"name":"CONNECTION_REQUEST_ORCH_COMPLETED","features":[104]},{"name":"CONNECTION_REQUEST_PENDING","features":[104]},{"name":"CONNECTION_REQUEST_QUERY_PL_COMPLETED","features":[104]},{"name":"CONNECTION_REQUEST_SUCCEEDED","features":[104]},{"name":"CONNECTION_REQUEST_TIMEDOUT","features":[104]},{"name":"ClipboardRedirectionDisabled","features":[104]},{"name":"DISPID_AX_ADMINMESSAGERECEIVED","features":[104]},{"name":"DISPID_AX_AUTORECONNECTED","features":[104]},{"name":"DISPID_AX_AUTORECONNECTING","features":[104]},{"name":"DISPID_AX_CONNECTED","features":[104]},{"name":"DISPID_AX_CONNECTING","features":[104]},{"name":"DISPID_AX_DIALOGDISMISSED","features":[104]},{"name":"DISPID_AX_DIALOGDISPLAYING","features":[104]},{"name":"DISPID_AX_DISCONNECTED","features":[104]},{"name":"DISPID_AX_KEYCOMBINATIONPRESSED","features":[104]},{"name":"DISPID_AX_LOGINCOMPLETED","features":[104]},{"name":"DISPID_AX_NETWORKSTATUSCHANGED","features":[104]},{"name":"DISPID_AX_REMOTEDESKTOPSIZECHANGED","features":[104]},{"name":"DISPID_AX_STATUSCHANGED","features":[104]},{"name":"DISPID_AX_TOUCHPOINTERCURSORMOVED","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_APPLY_SETTINGS","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_ATTACH_EVENT","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_CONNECT","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DELETE_SAVED_CREDENTIALS","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DETACH_EVENT","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DISCONNECT","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_EXECUTE_REMOTE_ACTION","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_RDPPROPERTY","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_SNAPSHOT","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RECONNECT","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RESUME_SCREEN_UPDATES","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RETRIEVE_SETTINGS","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SET_RDPPROPERTY","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SUSPEND_SCREEN_UPDATES","features":[104]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_UPDATE_SESSION_DISPLAYSETTINGS","features":[104]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_ACTIONS","features":[104]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_SETTINGS","features":[104]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_ENABLED","features":[104]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_EVENTSENABLED","features":[104]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_POINTERSPEED","features":[104]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCH_POINTER","features":[104]},{"name":"DOMAIN_LENGTH","features":[104]},{"name":"DisableAllRedirections","features":[104]},{"name":"DriveRedirectionDisabled","features":[104]},{"name":"EnableAllRedirections","features":[104]},{"name":"FARM","features":[104]},{"name":"FORCE_REJOIN","features":[104]},{"name":"FORCE_REJOIN_IN_CLUSTERMODE","features":[104]},{"name":"IADsTSUserEx","features":[104]},{"name":"IAudioDeviceEndpoint","features":[104]},{"name":"IAudioEndpoint","features":[104]},{"name":"IAudioEndpointControl","features":[104]},{"name":"IAudioEndpointRT","features":[104]},{"name":"IAudioInputEndpointRT","features":[104]},{"name":"IAudioOutputEndpointRT","features":[104]},{"name":"IRemoteDesktopClient","features":[104]},{"name":"IRemoteDesktopClientActions","features":[104]},{"name":"IRemoteDesktopClientSettings","features":[104]},{"name":"IRemoteDesktopClientTouchPointer","features":[104]},{"name":"IRemoteSystemAdditionalInfoProvider","features":[104]},{"name":"ITSGAccountingEngine","features":[104]},{"name":"ITSGAuthenticateUserSink","features":[104]},{"name":"ITSGAuthenticationEngine","features":[104]},{"name":"ITSGAuthorizeConnectionSink","features":[104]},{"name":"ITSGAuthorizeResourceSink","features":[104]},{"name":"ITSGPolicyEngine","features":[104]},{"name":"ITsSbBaseNotifySink","features":[104]},{"name":"ITsSbClientConnection","features":[104]},{"name":"ITsSbClientConnectionPropertySet","features":[104]},{"name":"ITsSbEnvironment","features":[104]},{"name":"ITsSbEnvironmentPropertySet","features":[104]},{"name":"ITsSbFilterPluginStore","features":[104]},{"name":"ITsSbGenericNotifySink","features":[104]},{"name":"ITsSbGlobalStore","features":[104]},{"name":"ITsSbLoadBalanceResult","features":[104]},{"name":"ITsSbLoadBalancing","features":[104]},{"name":"ITsSbLoadBalancingNotifySink","features":[104]},{"name":"ITsSbOrchestration","features":[104]},{"name":"ITsSbOrchestrationNotifySink","features":[104]},{"name":"ITsSbPlacement","features":[104]},{"name":"ITsSbPlacementNotifySink","features":[104]},{"name":"ITsSbPlugin","features":[104]},{"name":"ITsSbPluginNotifySink","features":[104]},{"name":"ITsSbPluginPropertySet","features":[104]},{"name":"ITsSbPropertySet","features":[104]},{"name":"ITsSbProvider","features":[104]},{"name":"ITsSbProvisioning","features":[104]},{"name":"ITsSbProvisioningPluginNotifySink","features":[104]},{"name":"ITsSbResourceNotification","features":[104]},{"name":"ITsSbResourceNotificationEx","features":[104]},{"name":"ITsSbResourcePlugin","features":[104]},{"name":"ITsSbResourcePluginStore","features":[104]},{"name":"ITsSbServiceNotification","features":[104]},{"name":"ITsSbSession","features":[104]},{"name":"ITsSbTarget","features":[104]},{"name":"ITsSbTargetPropertySet","features":[104]},{"name":"ITsSbTaskInfo","features":[104]},{"name":"ITsSbTaskPlugin","features":[104]},{"name":"ITsSbTaskPluginNotifySink","features":[104]},{"name":"IWRdsEnhancedFastReconnectArbitrator","features":[104]},{"name":"IWRdsGraphicsChannel","features":[104]},{"name":"IWRdsGraphicsChannelEvents","features":[104]},{"name":"IWRdsGraphicsChannelManager","features":[104]},{"name":"IWRdsProtocolConnection","features":[104]},{"name":"IWRdsProtocolConnectionCallback","features":[104]},{"name":"IWRdsProtocolConnectionSettings","features":[104]},{"name":"IWRdsProtocolLicenseConnection","features":[104]},{"name":"IWRdsProtocolListener","features":[104]},{"name":"IWRdsProtocolListenerCallback","features":[104]},{"name":"IWRdsProtocolLogonErrorRedirector","features":[104]},{"name":"IWRdsProtocolManager","features":[104]},{"name":"IWRdsProtocolSettings","features":[104]},{"name":"IWRdsProtocolShadowCallback","features":[104]},{"name":"IWRdsProtocolShadowConnection","features":[104]},{"name":"IWRdsWddmIddProps","features":[104]},{"name":"IWRdsWddmIddProps1","features":[104]},{"name":"IWTSBitmapRenderService","features":[104]},{"name":"IWTSBitmapRenderer","features":[104]},{"name":"IWTSBitmapRendererCallback","features":[104]},{"name":"IWTSListener","features":[104]},{"name":"IWTSListenerCallback","features":[104]},{"name":"IWTSPlugin","features":[104]},{"name":"IWTSPluginServiceProvider","features":[104]},{"name":"IWTSProtocolConnection","features":[104]},{"name":"IWTSProtocolConnectionCallback","features":[104]},{"name":"IWTSProtocolLicenseConnection","features":[104]},{"name":"IWTSProtocolListener","features":[104]},{"name":"IWTSProtocolListenerCallback","features":[104]},{"name":"IWTSProtocolLogonErrorRedirector","features":[104]},{"name":"IWTSProtocolManager","features":[104]},{"name":"IWTSProtocolShadowCallback","features":[104]},{"name":"IWTSProtocolShadowConnection","features":[104]},{"name":"IWTSSBPlugin","features":[104]},{"name":"IWTSVirtualChannel","features":[104]},{"name":"IWTSVirtualChannelCallback","features":[104]},{"name":"IWTSVirtualChannelManager","features":[104]},{"name":"IWorkspace","features":[104]},{"name":"IWorkspace2","features":[104]},{"name":"IWorkspace3","features":[104]},{"name":"IWorkspaceClientExt","features":[104]},{"name":"IWorkspaceRegistration","features":[104]},{"name":"IWorkspaceRegistration2","features":[104]},{"name":"IWorkspaceReportMessage","features":[104]},{"name":"IWorkspaceResTypeRegistry","features":[104]},{"name":"IWorkspaceScriptable","features":[104]},{"name":"IWorkspaceScriptable2","features":[104]},{"name":"IWorkspaceScriptable3","features":[104]},{"name":"ItsPubPlugin","features":[104]},{"name":"ItsPubPlugin2","features":[104]},{"name":"KEEP_EXISTING_SESSIONS","features":[104]},{"name":"KeyCombinationDown","features":[104]},{"name":"KeyCombinationHome","features":[104]},{"name":"KeyCombinationLeft","features":[104]},{"name":"KeyCombinationRight","features":[104]},{"name":"KeyCombinationScroll","features":[104]},{"name":"KeyCombinationType","features":[104]},{"name":"KeyCombinationUp","features":[104]},{"name":"LOAD_BALANCING_PLUGIN","features":[104]},{"name":"MAX_DATE_TIME_LENGTH","features":[104]},{"name":"MAX_ELAPSED_TIME_LENGTH","features":[104]},{"name":"MAX_POLICY_ATTRIBUTES","features":[104]},{"name":"MaxAppName_Len","features":[104]},{"name":"MaxDomainName_Len","features":[104]},{"name":"MaxFQDN_Len","features":[104]},{"name":"MaxFarm_Len","features":[104]},{"name":"MaxNetBiosName_Len","features":[104]},{"name":"MaxNumOfExposed_IPs","features":[104]},{"name":"MaxUserName_Len","features":[104]},{"name":"NONFARM","features":[104]},{"name":"NOTIFY_FOR_ALL_SESSIONS","features":[104]},{"name":"NOTIFY_FOR_THIS_SESSION","features":[104]},{"name":"ORCHESTRATION_PLUGIN","features":[104]},{"name":"OWNER_MS_TS_PLUGIN","features":[104]},{"name":"OWNER_MS_VM_PLUGIN","features":[104]},{"name":"OWNER_UNKNOWN","features":[104]},{"name":"PCHANNEL_INIT_EVENT_FN","features":[104]},{"name":"PCHANNEL_OPEN_EVENT_FN","features":[104]},{"name":"PLACEMENT_PLUGIN","features":[104]},{"name":"PLUGIN_CAPABILITY_EXTERNAL_REDIRECTION","features":[104]},{"name":"PLUGIN_TYPE","features":[104]},{"name":"POLICY_PLUGIN","features":[104]},{"name":"POSITION_CONTINUOUS","features":[104]},{"name":"POSITION_DISCONTINUOUS","features":[104]},{"name":"POSITION_INVALID","features":[104]},{"name":"POSITION_QPC_ERROR","features":[104]},{"name":"PRODUCTINFO_COMPANYNAME_LENGTH","features":[104]},{"name":"PRODUCTINFO_PRODUCTID_LENGTH","features":[104]},{"name":"PRODUCT_INFOA","features":[104]},{"name":"PRODUCT_INFOW","features":[104]},{"name":"PROPERTY_DYNAMIC_TIME_ZONE_INFORMATION","features":[104]},{"name":"PROPERTY_TYPE_ENABLE_UNIVERSAL_APPS_FOR_CUSTOM_SHELL","features":[104]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT","features":[104]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT_USER_SID","features":[104]},{"name":"PROVISIONING_PLUGIN","features":[104]},{"name":"PVIRTUALCHANNELCLOSE","features":[104]},{"name":"PVIRTUALCHANNELENTRY","features":[1,104]},{"name":"PVIRTUALCHANNELINIT","features":[104]},{"name":"PVIRTUALCHANNELOPEN","features":[104]},{"name":"PVIRTUALCHANNELWRITE","features":[104]},{"name":"PasswordEncodingType","features":[104]},{"name":"PasswordEncodingUTF16BE","features":[104]},{"name":"PasswordEncodingUTF16LE","features":[104]},{"name":"PasswordEncodingUTF8","features":[104]},{"name":"PnpRedirectionDisabled","features":[104]},{"name":"PolicyAttributeType","features":[104]},{"name":"PortRedirectionDisabled","features":[104]},{"name":"PrinterRedirectionDisabled","features":[104]},{"name":"ProcessIdToSessionId","features":[1,104]},{"name":"RDCLIENT_BITMAP_RENDER_SERVICE","features":[104]},{"name":"RDV_TASK_STATUS","features":[104]},{"name":"RDV_TASK_STATUS_APPLYING","features":[104]},{"name":"RDV_TASK_STATUS_DOWNLOADING","features":[104]},{"name":"RDV_TASK_STATUS_FAILED","features":[104]},{"name":"RDV_TASK_STATUS_REBOOTED","features":[104]},{"name":"RDV_TASK_STATUS_REBOOTING","features":[104]},{"name":"RDV_TASK_STATUS_SEARCHING","features":[104]},{"name":"RDV_TASK_STATUS_SUCCESS","features":[104]},{"name":"RDV_TASK_STATUS_TIMEOUT","features":[104]},{"name":"RDV_TASK_STATUS_UNKNOWN","features":[104]},{"name":"RD_FARM_AUTO_PERSONAL_RDSH","features":[104]},{"name":"RD_FARM_AUTO_PERSONAL_VM","features":[104]},{"name":"RD_FARM_MANUAL_PERSONAL_RDSH","features":[104]},{"name":"RD_FARM_MANUAL_PERSONAL_VM","features":[104]},{"name":"RD_FARM_RDSH","features":[104]},{"name":"RD_FARM_TEMP_VM","features":[104]},{"name":"RD_FARM_TYPE","features":[104]},{"name":"RD_FARM_TYPE_UNKNOWN","features":[104]},{"name":"REMOTECONTROL_KBDALT_HOTKEY","features":[104]},{"name":"REMOTECONTROL_KBDCTRL_HOTKEY","features":[104]},{"name":"REMOTECONTROL_KBDSHIFT_HOTKEY","features":[104]},{"name":"RENDER_HINT_CLEAR","features":[104]},{"name":"RENDER_HINT_MAPPEDWINDOW","features":[104]},{"name":"RENDER_HINT_VIDEO","features":[104]},{"name":"RESERVED_FOR_LEGACY","features":[104]},{"name":"RESOURCE_PLUGIN","features":[104]},{"name":"RFX_CLIENT_ID_LENGTH","features":[104]},{"name":"RFX_GFX_MAX_SUPPORTED_MONITORS","features":[104]},{"name":"RFX_GFX_MONITOR_INFO","features":[1,104]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST","features":[104]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE","features":[1,104]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM","features":[104]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY","features":[104]},{"name":"RFX_GFX_MSG_DESKTOP_INPUT_RESET","features":[104]},{"name":"RFX_GFX_MSG_DESKTOP_RESEND_REQUEST","features":[104]},{"name":"RFX_GFX_MSG_DISCONNECT_NOTIFY","features":[104]},{"name":"RFX_GFX_MSG_HEADER","features":[104]},{"name":"RFX_GFX_MSG_PREFIX","features":[104]},{"name":"RFX_GFX_MSG_PREFIX_MASK","features":[104]},{"name":"RFX_GFX_MSG_RDP_DATA","features":[104]},{"name":"RFX_GFX_RECT","features":[104]},{"name":"RFX_RDP_MSG_PREFIX","features":[104]},{"name":"RemoteActionAppSwitch","features":[104]},{"name":"RemoteActionAppbar","features":[104]},{"name":"RemoteActionCharms","features":[104]},{"name":"RemoteActionSnap","features":[104]},{"name":"RemoteActionStartScreen","features":[104]},{"name":"RemoteActionType","features":[104]},{"name":"SB_SYNCH_CONFLICT_MAX_WRITE_ATTEMPTS","features":[104]},{"name":"SESSION_TIMEOUT_ACTION_DISCONNECT","features":[104]},{"name":"SESSION_TIMEOUT_ACTION_SILENT_REAUTH","features":[104]},{"name":"SESSION_TIMEOUT_ACTION_TYPE","features":[104]},{"name":"SINGLE_SESSION","features":[104]},{"name":"STATE_ACTIVE","features":[104]},{"name":"STATE_CONNECTED","features":[104]},{"name":"STATE_CONNECTQUERY","features":[104]},{"name":"STATE_DISCONNECTED","features":[104]},{"name":"STATE_DOWN","features":[104]},{"name":"STATE_IDLE","features":[104]},{"name":"STATE_INIT","features":[104]},{"name":"STATE_INVALID","features":[104]},{"name":"STATE_LISTEN","features":[104]},{"name":"STATE_MAX","features":[104]},{"name":"STATE_RESET","features":[104]},{"name":"STATE_SHADOW","features":[104]},{"name":"SnapshotEncodingDataUri","features":[104]},{"name":"SnapshotEncodingType","features":[104]},{"name":"SnapshotFormatBmp","features":[104]},{"name":"SnapshotFormatJpeg","features":[104]},{"name":"SnapshotFormatPng","features":[104]},{"name":"SnapshotFormatType","features":[104]},{"name":"TARGET_CHANGE_TYPE","features":[104]},{"name":"TARGET_CHANGE_UNSPEC","features":[104]},{"name":"TARGET_CHECKED_OUT","features":[104]},{"name":"TARGET_DOWN","features":[104]},{"name":"TARGET_EXTERNALIP_CHANGED","features":[104]},{"name":"TARGET_FARM_MEMBERSHIP_CHANGED","features":[104]},{"name":"TARGET_HIBERNATED","features":[104]},{"name":"TARGET_IDLE","features":[104]},{"name":"TARGET_INITIALIZING","features":[104]},{"name":"TARGET_INTERNALIP_CHANGED","features":[104]},{"name":"TARGET_INUSE","features":[104]},{"name":"TARGET_INVALID","features":[104]},{"name":"TARGET_JOINED","features":[104]},{"name":"TARGET_MAXSTATE","features":[104]},{"name":"TARGET_OWNER","features":[104]},{"name":"TARGET_PATCH_COMPLETED","features":[104]},{"name":"TARGET_PATCH_FAILED","features":[104]},{"name":"TARGET_PATCH_IN_PROGRESS","features":[104]},{"name":"TARGET_PATCH_NOT_STARTED","features":[104]},{"name":"TARGET_PATCH_STATE","features":[104]},{"name":"TARGET_PATCH_STATE_CHANGED","features":[104]},{"name":"TARGET_PATCH_UNKNOWN","features":[104]},{"name":"TARGET_PENDING","features":[104]},{"name":"TARGET_REMOVED","features":[104]},{"name":"TARGET_RUNNING","features":[104]},{"name":"TARGET_STARTING","features":[104]},{"name":"TARGET_STATE","features":[104]},{"name":"TARGET_STATE_CHANGED","features":[104]},{"name":"TARGET_STOPPED","features":[104]},{"name":"TARGET_STOPPING","features":[104]},{"name":"TARGET_TYPE","features":[104]},{"name":"TARGET_UNKNOWN","features":[104]},{"name":"TASK_PLUGIN","features":[104]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_EXISTING","features":[104]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_NEW","features":[104]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE","features":[104]},{"name":"TSPUB_PLUGIN_PD_QUERY_EXISTING","features":[104]},{"name":"TSPUB_PLUGIN_PD_QUERY_OR_CREATE","features":[104]},{"name":"TSPUB_PLUGIN_PD_RESOLUTION_TYPE","features":[104]},{"name":"TSSB_NOTIFICATION_TYPE","features":[104]},{"name":"TSSB_NOTIFY_CONNECTION_REQUEST_CHANGE","features":[104]},{"name":"TSSB_NOTIFY_INVALID","features":[104]},{"name":"TSSB_NOTIFY_SESSION_CHANGE","features":[104]},{"name":"TSSB_NOTIFY_TARGET_CHANGE","features":[104]},{"name":"TSSD_ADDR_IPv4","features":[104]},{"name":"TSSD_ADDR_IPv6","features":[104]},{"name":"TSSD_ADDR_UNDEFINED","features":[104]},{"name":"TSSD_AddrV46Type","features":[104]},{"name":"TSSD_ConnectionPoint","features":[104]},{"name":"TSSESSION_STATE","features":[104]},{"name":"TSUserExInterfaces","features":[104]},{"name":"TS_SB_SORT_BY","features":[104]},{"name":"TS_SB_SORT_BY_NAME","features":[104]},{"name":"TS_SB_SORT_BY_NONE","features":[104]},{"name":"TS_SB_SORT_BY_PROP","features":[104]},{"name":"TS_VC_LISTENER_STATIC_CHANNEL","features":[104]},{"name":"UNKNOWN","features":[104]},{"name":"UNKNOWN_PLUGIN","features":[104]},{"name":"USERNAME_LENGTH","features":[104]},{"name":"VALIDATIONINFORMATION_HARDWAREID_LENGTH","features":[104]},{"name":"VALIDATIONINFORMATION_LICENSE_LENGTH","features":[104]},{"name":"VIRTUAL_CHANNEL_VERSION_WIN2000","features":[104]},{"name":"VM_HOST_NOTIFY_STATUS","features":[104]},{"name":"VM_HOST_STATUS_INIT_COMPLETE","features":[104]},{"name":"VM_HOST_STATUS_INIT_FAILED","features":[104]},{"name":"VM_HOST_STATUS_INIT_IN_PROGRESS","features":[104]},{"name":"VM_HOST_STATUS_INIT_PENDING","features":[104]},{"name":"VM_NOTIFY_ENTRY","features":[104]},{"name":"VM_NOTIFY_INFO","features":[104]},{"name":"VM_NOTIFY_STATUS","features":[104]},{"name":"VM_NOTIFY_STATUS_CANCELED","features":[104]},{"name":"VM_NOTIFY_STATUS_COMPLETE","features":[104]},{"name":"VM_NOTIFY_STATUS_FAILED","features":[104]},{"name":"VM_NOTIFY_STATUS_IN_PROGRESS","features":[104]},{"name":"VM_NOTIFY_STATUS_PENDING","features":[104]},{"name":"VM_PATCH_INFO","features":[104]},{"name":"WINSTATIONNAME_LENGTH","features":[104]},{"name":"WKS_FLAG_CLEAR_CREDS_ON_LAST_RESOURCE","features":[104]},{"name":"WKS_FLAG_CREDS_AUTHENTICATED","features":[104]},{"name":"WKS_FLAG_PASSWORD_ENCRYPTED","features":[104]},{"name":"WRDS_CLIENTADDRESS_LENGTH","features":[104]},{"name":"WRDS_CLIENTNAME_LENGTH","features":[104]},{"name":"WRDS_CLIENT_PRODUCT_ID_LENGTH","features":[104]},{"name":"WRDS_CONNECTION_SETTING","features":[1,104]},{"name":"WRDS_CONNECTION_SETTINGS","features":[1,104]},{"name":"WRDS_CONNECTION_SETTINGS_1","features":[1,104]},{"name":"WRDS_CONNECTION_SETTING_LEVEL","features":[104]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_1","features":[104]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_INVALID","features":[104]},{"name":"WRDS_DEVICE_NAME_LENGTH","features":[104]},{"name":"WRDS_DIRECTORY_LENGTH","features":[104]},{"name":"WRDS_DOMAIN_LENGTH","features":[104]},{"name":"WRDS_DRIVER_NAME_LENGTH","features":[104]},{"name":"WRDS_DYNAMIC_TIME_ZONE_INFORMATION","features":[104]},{"name":"WRDS_IMEFILENAME_LENGTH","features":[104]},{"name":"WRDS_INITIALPROGRAM_LENGTH","features":[104]},{"name":"WRDS_KEY_EXCHANGE_ALG_DH","features":[104]},{"name":"WRDS_KEY_EXCHANGE_ALG_RSA","features":[104]},{"name":"WRDS_LICENSE_PREAMBLE_VERSION","features":[104]},{"name":"WRDS_LICENSE_PROTOCOL_VERSION","features":[104]},{"name":"WRDS_LISTENER_SETTING","features":[104]},{"name":"WRDS_LISTENER_SETTINGS","features":[104]},{"name":"WRDS_LISTENER_SETTINGS_1","features":[104]},{"name":"WRDS_LISTENER_SETTING_LEVEL","features":[104]},{"name":"WRDS_LISTENER_SETTING_LEVEL_1","features":[104]},{"name":"WRDS_LISTENER_SETTING_LEVEL_INVALID","features":[104]},{"name":"WRDS_MAX_CACHE_RESERVED","features":[104]},{"name":"WRDS_MAX_COUNTERS","features":[104]},{"name":"WRDS_MAX_DISPLAY_IOCTL_DATA","features":[104]},{"name":"WRDS_MAX_PROTOCOL_CACHE","features":[104]},{"name":"WRDS_MAX_RESERVED","features":[104]},{"name":"WRDS_PASSWORD_LENGTH","features":[104]},{"name":"WRDS_PERF_DISABLE_CURSORSETTINGS","features":[104]},{"name":"WRDS_PERF_DISABLE_CURSOR_SHADOW","features":[104]},{"name":"WRDS_PERF_DISABLE_FULLWINDOWDRAG","features":[104]},{"name":"WRDS_PERF_DISABLE_MENUANIMATIONS","features":[104]},{"name":"WRDS_PERF_DISABLE_NOTHING","features":[104]},{"name":"WRDS_PERF_DISABLE_THEMING","features":[104]},{"name":"WRDS_PERF_DISABLE_WALLPAPER","features":[104]},{"name":"WRDS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[104]},{"name":"WRDS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[104]},{"name":"WRDS_PERF_ENABLE_FONT_SMOOTHING","features":[104]},{"name":"WRDS_PROTOCOL_NAME_LENGTH","features":[104]},{"name":"WRDS_SERVICE_ID_GRAPHICS_GUID","features":[104]},{"name":"WRDS_SETTING","features":[1,104]},{"name":"WRDS_SETTINGS","features":[1,104]},{"name":"WRDS_SETTINGS_1","features":[1,104]},{"name":"WRDS_SETTING_LEVEL","features":[104]},{"name":"WRDS_SETTING_LEVEL_1","features":[104]},{"name":"WRDS_SETTING_LEVEL_INVALID","features":[104]},{"name":"WRDS_SETTING_STATUS","features":[104]},{"name":"WRDS_SETTING_STATUS_DISABLED","features":[104]},{"name":"WRDS_SETTING_STATUS_ENABLED","features":[104]},{"name":"WRDS_SETTING_STATUS_NOTAPPLICABLE","features":[104]},{"name":"WRDS_SETTING_STATUS_NOTCONFIGURED","features":[104]},{"name":"WRDS_SETTING_TYPE","features":[104]},{"name":"WRDS_SETTING_TYPE_INVALID","features":[104]},{"name":"WRDS_SETTING_TYPE_MACHINE","features":[104]},{"name":"WRDS_SETTING_TYPE_SAM","features":[104]},{"name":"WRDS_SETTING_TYPE_USER","features":[104]},{"name":"WRDS_USERNAME_LENGTH","features":[104]},{"name":"WRDS_VALUE_TYPE_BINARY","features":[104]},{"name":"WRDS_VALUE_TYPE_GUID","features":[104]},{"name":"WRDS_VALUE_TYPE_STRING","features":[104]},{"name":"WRDS_VALUE_TYPE_ULONG","features":[104]},{"name":"WRdsGraphicsChannelType","features":[104]},{"name":"WRdsGraphicsChannelType_BestEffortDelivery","features":[104]},{"name":"WRdsGraphicsChannelType_GuaranteedDelivery","features":[104]},{"name":"WRdsGraphicsChannels_LossyChannelMaxMessageSize","features":[104]},{"name":"WTSActive","features":[104]},{"name":"WTSApplicationName","features":[104]},{"name":"WTSCLIENTA","features":[104]},{"name":"WTSCLIENTW","features":[104]},{"name":"WTSCONFIGINFOA","features":[104]},{"name":"WTSCONFIGINFOW","features":[104]},{"name":"WTSClientAddress","features":[104]},{"name":"WTSClientBuildNumber","features":[104]},{"name":"WTSClientDirectory","features":[104]},{"name":"WTSClientDisplay","features":[104]},{"name":"WTSClientHardwareId","features":[104]},{"name":"WTSClientInfo","features":[104]},{"name":"WTSClientName","features":[104]},{"name":"WTSClientProductId","features":[104]},{"name":"WTSClientProtocolType","features":[104]},{"name":"WTSCloseServer","features":[1,104]},{"name":"WTSConfigInfo","features":[104]},{"name":"WTSConnectQuery","features":[104]},{"name":"WTSConnectSessionA","features":[1,104]},{"name":"WTSConnectSessionW","features":[1,104]},{"name":"WTSConnectState","features":[104]},{"name":"WTSConnected","features":[104]},{"name":"WTSCreateListenerA","features":[1,104]},{"name":"WTSCreateListenerW","features":[1,104]},{"name":"WTSDisconnectSession","features":[1,104]},{"name":"WTSDisconnected","features":[104]},{"name":"WTSDomainName","features":[104]},{"name":"WTSDown","features":[104]},{"name":"WTSEnableChildSessions","features":[1,104]},{"name":"WTSEnumerateListenersA","features":[1,104]},{"name":"WTSEnumerateListenersW","features":[1,104]},{"name":"WTSEnumerateProcessesA","features":[1,104]},{"name":"WTSEnumerateProcessesExA","features":[1,104]},{"name":"WTSEnumerateProcessesExW","features":[1,104]},{"name":"WTSEnumerateProcessesW","features":[1,104]},{"name":"WTSEnumerateServersA","features":[1,104]},{"name":"WTSEnumerateServersW","features":[1,104]},{"name":"WTSEnumerateSessionsA","features":[1,104]},{"name":"WTSEnumerateSessionsExA","features":[1,104]},{"name":"WTSEnumerateSessionsExW","features":[1,104]},{"name":"WTSEnumerateSessionsW","features":[1,104]},{"name":"WTSFreeMemory","features":[104]},{"name":"WTSFreeMemoryExA","features":[1,104]},{"name":"WTSFreeMemoryExW","features":[1,104]},{"name":"WTSGetActiveConsoleSessionId","features":[104]},{"name":"WTSGetChildSessionId","features":[1,104]},{"name":"WTSGetListenerSecurityA","features":[1,4,104]},{"name":"WTSGetListenerSecurityW","features":[1,4,104]},{"name":"WTSINFOA","features":[104]},{"name":"WTSINFOEXA","features":[104]},{"name":"WTSINFOEXW","features":[104]},{"name":"WTSINFOEX_LEVEL1_A","features":[104]},{"name":"WTSINFOEX_LEVEL1_W","features":[104]},{"name":"WTSINFOEX_LEVEL_A","features":[104]},{"name":"WTSINFOEX_LEVEL_W","features":[104]},{"name":"WTSINFOW","features":[104]},{"name":"WTSIdle","features":[104]},{"name":"WTSIdleTime","features":[104]},{"name":"WTSIncomingBytes","features":[104]},{"name":"WTSIncomingFrames","features":[104]},{"name":"WTSInit","features":[104]},{"name":"WTSInitialProgram","features":[104]},{"name":"WTSIsChildSessionsEnabled","features":[1,104]},{"name":"WTSIsRemoteSession","features":[104]},{"name":"WTSLISTENERCONFIGA","features":[104]},{"name":"WTSLISTENERCONFIGW","features":[104]},{"name":"WTSListen","features":[104]},{"name":"WTSLogoffSession","features":[1,104]},{"name":"WTSLogonTime","features":[104]},{"name":"WTSOEMId","features":[104]},{"name":"WTSOpenServerA","features":[1,104]},{"name":"WTSOpenServerExA","features":[1,104]},{"name":"WTSOpenServerExW","features":[1,104]},{"name":"WTSOpenServerW","features":[1,104]},{"name":"WTSOutgoingBytes","features":[104]},{"name":"WTSOutgoingFrames","features":[104]},{"name":"WTSQueryListenerConfigA","features":[1,104]},{"name":"WTSQueryListenerConfigW","features":[1,104]},{"name":"WTSQuerySessionInformationA","features":[1,104]},{"name":"WTSQuerySessionInformationW","features":[1,104]},{"name":"WTSQueryUserConfigA","features":[1,104]},{"name":"WTSQueryUserConfigW","features":[1,104]},{"name":"WTSQueryUserToken","features":[1,104]},{"name":"WTSRegisterSessionNotification","features":[1,104]},{"name":"WTSRegisterSessionNotificationEx","features":[1,104]},{"name":"WTSReset","features":[104]},{"name":"WTSSBX_ADDRESS_FAMILY","features":[104]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET","features":[104]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET6","features":[104]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_IPX","features":[104]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_NETBIOS","features":[104]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_UNSPEC","features":[104]},{"name":"WTSSBX_IP_ADDRESS","features":[104]},{"name":"WTSSBX_MACHINE_CONNECT_INFO","features":[104]},{"name":"WTSSBX_MACHINE_DRAIN","features":[104]},{"name":"WTSSBX_MACHINE_DRAIN_OFF","features":[104]},{"name":"WTSSBX_MACHINE_DRAIN_ON","features":[104]},{"name":"WTSSBX_MACHINE_DRAIN_UNSPEC","features":[104]},{"name":"WTSSBX_MACHINE_INFO","features":[104]},{"name":"WTSSBX_MACHINE_SESSION_MODE","features":[104]},{"name":"WTSSBX_MACHINE_SESSION_MODE_MULTIPLE","features":[104]},{"name":"WTSSBX_MACHINE_SESSION_MODE_SINGLE","features":[104]},{"name":"WTSSBX_MACHINE_SESSION_MODE_UNSPEC","features":[104]},{"name":"WTSSBX_MACHINE_STATE","features":[104]},{"name":"WTSSBX_MACHINE_STATE_READY","features":[104]},{"name":"WTSSBX_MACHINE_STATE_SYNCHRONIZING","features":[104]},{"name":"WTSSBX_MACHINE_STATE_UNSPEC","features":[104]},{"name":"WTSSBX_NOTIFICATION_ADDED","features":[104]},{"name":"WTSSBX_NOTIFICATION_CHANGED","features":[104]},{"name":"WTSSBX_NOTIFICATION_REMOVED","features":[104]},{"name":"WTSSBX_NOTIFICATION_RESYNC","features":[104]},{"name":"WTSSBX_NOTIFICATION_TYPE","features":[104]},{"name":"WTSSBX_SESSION_INFO","features":[1,104]},{"name":"WTSSBX_SESSION_STATE","features":[104]},{"name":"WTSSBX_SESSION_STATE_ACTIVE","features":[104]},{"name":"WTSSBX_SESSION_STATE_DISCONNECTED","features":[104]},{"name":"WTSSBX_SESSION_STATE_UNSPEC","features":[104]},{"name":"WTSSESSION_NOTIFICATION","features":[104]},{"name":"WTSSendMessageA","features":[1,104,50]},{"name":"WTSSendMessageW","features":[1,104,50]},{"name":"WTSSessionAddressV4","features":[104]},{"name":"WTSSessionId","features":[104]},{"name":"WTSSessionInfo","features":[104]},{"name":"WTSSessionInfoEx","features":[104]},{"name":"WTSSetListenerSecurityA","features":[1,4,104]},{"name":"WTSSetListenerSecurityW","features":[1,4,104]},{"name":"WTSSetRenderHint","features":[1,104]},{"name":"WTSSetUserConfigA","features":[1,104]},{"name":"WTSSetUserConfigW","features":[1,104]},{"name":"WTSShadow","features":[104]},{"name":"WTSShutdownSystem","features":[1,104]},{"name":"WTSStartRemoteControlSessionA","features":[1,104]},{"name":"WTSStartRemoteControlSessionW","features":[1,104]},{"name":"WTSStopRemoteControlSession","features":[1,104]},{"name":"WTSTerminateProcess","features":[1,104]},{"name":"WTSTypeProcessInfoLevel0","features":[104]},{"name":"WTSTypeProcessInfoLevel1","features":[104]},{"name":"WTSTypeSessionInfoLevel1","features":[104]},{"name":"WTSUSERCONFIGA","features":[104]},{"name":"WTSUSERCONFIGW","features":[104]},{"name":"WTSUnRegisterSessionNotification","features":[1,104]},{"name":"WTSUnRegisterSessionNotificationEx","features":[1,104]},{"name":"WTSUserConfigBrokenTimeoutSettings","features":[104]},{"name":"WTSUserConfigInitialProgram","features":[104]},{"name":"WTSUserConfigModemCallbackPhoneNumber","features":[104]},{"name":"WTSUserConfigModemCallbackSettings","features":[104]},{"name":"WTSUserConfigReconnectSettings","features":[104]},{"name":"WTSUserConfigShadowingSettings","features":[104]},{"name":"WTSUserConfigSourceSAM","features":[104]},{"name":"WTSUserConfigTerminalServerHomeDir","features":[104]},{"name":"WTSUserConfigTerminalServerHomeDirDrive","features":[104]},{"name":"WTSUserConfigTerminalServerProfilePath","features":[104]},{"name":"WTSUserConfigTimeoutSettingsConnections","features":[104]},{"name":"WTSUserConfigTimeoutSettingsDisconnections","features":[104]},{"name":"WTSUserConfigTimeoutSettingsIdle","features":[104]},{"name":"WTSUserConfigUser","features":[104]},{"name":"WTSUserConfigWorkingDirectory","features":[104]},{"name":"WTSUserConfigfAllowLogonTerminalServer","features":[104]},{"name":"WTSUserConfigfDeviceClientDefaultPrinter","features":[104]},{"name":"WTSUserConfigfDeviceClientDrives","features":[104]},{"name":"WTSUserConfigfDeviceClientPrinters","features":[104]},{"name":"WTSUserConfigfInheritInitialProgram","features":[104]},{"name":"WTSUserConfigfTerminalServerRemoteHomeDir","features":[104]},{"name":"WTSUserName","features":[104]},{"name":"WTSValidationInfo","features":[104]},{"name":"WTSVirtualChannelClose","features":[1,104]},{"name":"WTSVirtualChannelOpen","features":[1,104]},{"name":"WTSVirtualChannelOpenEx","features":[1,104]},{"name":"WTSVirtualChannelPurgeInput","features":[1,104]},{"name":"WTSVirtualChannelPurgeOutput","features":[1,104]},{"name":"WTSVirtualChannelQuery","features":[1,104]},{"name":"WTSVirtualChannelRead","features":[1,104]},{"name":"WTSVirtualChannelWrite","features":[1,104]},{"name":"WTSVirtualClientData","features":[104]},{"name":"WTSVirtualFileHandle","features":[104]},{"name":"WTSWaitSystemEvent","features":[1,104]},{"name":"WTSWinStationName","features":[104]},{"name":"WTSWorkingDirectory","features":[104]},{"name":"WTS_CACHE_STATS","features":[104]},{"name":"WTS_CACHE_STATS_UN","features":[104]},{"name":"WTS_CERT_TYPE","features":[104]},{"name":"WTS_CERT_TYPE_INVALID","features":[104]},{"name":"WTS_CERT_TYPE_PROPRIETORY","features":[104]},{"name":"WTS_CERT_TYPE_X509","features":[104]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC","features":[104]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_NO_COMPRESS","features":[104]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_HIGH","features":[104]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_LOW","features":[104]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_MED","features":[104]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_REAL","features":[104]},{"name":"WTS_CLIENTADDRESS_LENGTH","features":[104]},{"name":"WTS_CLIENTNAME_LENGTH","features":[104]},{"name":"WTS_CLIENT_ADDRESS","features":[104]},{"name":"WTS_CLIENT_DATA","features":[1,104]},{"name":"WTS_CLIENT_DISPLAY","features":[104]},{"name":"WTS_CLIENT_PRODUCT_ID_LENGTH","features":[104]},{"name":"WTS_COMMENT_LENGTH","features":[104]},{"name":"WTS_CONFIG_CLASS","features":[104]},{"name":"WTS_CONFIG_SOURCE","features":[104]},{"name":"WTS_CONNECTSTATE_CLASS","features":[104]},{"name":"WTS_CURRENT_SERVER","features":[1,104]},{"name":"WTS_CURRENT_SERVER_HANDLE","features":[1,104]},{"name":"WTS_CURRENT_SERVER_NAME","features":[104]},{"name":"WTS_CURRENT_SESSION","features":[104]},{"name":"WTS_DEVICE_NAME_LENGTH","features":[104]},{"name":"WTS_DIRECTORY_LENGTH","features":[104]},{"name":"WTS_DISPLAY_IOCTL","features":[104]},{"name":"WTS_DOMAIN_LENGTH","features":[104]},{"name":"WTS_DRAIN_IN_DRAIN","features":[104]},{"name":"WTS_DRAIN_NOT_IN_DRAIN","features":[104]},{"name":"WTS_DRAIN_STATE_NONE","features":[104]},{"name":"WTS_DRIVER_NAME_LENGTH","features":[104]},{"name":"WTS_DRIVE_LENGTH","features":[104]},{"name":"WTS_EVENT_ALL","features":[104]},{"name":"WTS_EVENT_CONNECT","features":[104]},{"name":"WTS_EVENT_CREATE","features":[104]},{"name":"WTS_EVENT_DELETE","features":[104]},{"name":"WTS_EVENT_DISCONNECT","features":[104]},{"name":"WTS_EVENT_FLUSH","features":[104]},{"name":"WTS_EVENT_LICENSE","features":[104]},{"name":"WTS_EVENT_LOGOFF","features":[104]},{"name":"WTS_EVENT_LOGON","features":[104]},{"name":"WTS_EVENT_NONE","features":[104]},{"name":"WTS_EVENT_RENAME","features":[104]},{"name":"WTS_EVENT_STATECHANGE","features":[104]},{"name":"WTS_IMEFILENAME_LENGTH","features":[104]},{"name":"WTS_INFO_CLASS","features":[104]},{"name":"WTS_INITIALPROGRAM_LENGTH","features":[104]},{"name":"WTS_KEY_EXCHANGE_ALG_DH","features":[104]},{"name":"WTS_KEY_EXCHANGE_ALG_RSA","features":[104]},{"name":"WTS_LICENSE_CAPABILITIES","features":[1,104]},{"name":"WTS_LICENSE_PREAMBLE_VERSION","features":[104]},{"name":"WTS_LICENSE_PROTOCOL_VERSION","features":[104]},{"name":"WTS_LISTENER_CREATE","features":[104]},{"name":"WTS_LISTENER_NAME_LENGTH","features":[104]},{"name":"WTS_LISTENER_UPDATE","features":[104]},{"name":"WTS_LOGON_ERROR_REDIRECTOR_RESPONSE","features":[104]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW","features":[104]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW_START_OVER","features":[104]},{"name":"WTS_LOGON_ERR_HANDLED_SHOW","features":[104]},{"name":"WTS_LOGON_ERR_INVALID","features":[104]},{"name":"WTS_LOGON_ERR_NOT_HANDLED","features":[104]},{"name":"WTS_MAX_CACHE_RESERVED","features":[104]},{"name":"WTS_MAX_COUNTERS","features":[104]},{"name":"WTS_MAX_DISPLAY_IOCTL_DATA","features":[104]},{"name":"WTS_MAX_PROTOCOL_CACHE","features":[104]},{"name":"WTS_MAX_RESERVED","features":[104]},{"name":"WTS_PASSWORD_LENGTH","features":[104]},{"name":"WTS_PERF_DISABLE_CURSORSETTINGS","features":[104]},{"name":"WTS_PERF_DISABLE_CURSOR_SHADOW","features":[104]},{"name":"WTS_PERF_DISABLE_FULLWINDOWDRAG","features":[104]},{"name":"WTS_PERF_DISABLE_MENUANIMATIONS","features":[104]},{"name":"WTS_PERF_DISABLE_NOTHING","features":[104]},{"name":"WTS_PERF_DISABLE_THEMING","features":[104]},{"name":"WTS_PERF_DISABLE_WALLPAPER","features":[104]},{"name":"WTS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[104]},{"name":"WTS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[104]},{"name":"WTS_PERF_ENABLE_FONT_SMOOTHING","features":[104]},{"name":"WTS_POLICY_DATA","features":[1,104]},{"name":"WTS_PROCESS_INFOA","features":[1,104]},{"name":"WTS_PROCESS_INFOW","features":[1,104]},{"name":"WTS_PROCESS_INFO_EXA","features":[1,104]},{"name":"WTS_PROCESS_INFO_EXW","features":[1,104]},{"name":"WTS_PROCESS_INFO_LEVEL_0","features":[104]},{"name":"WTS_PROCESS_INFO_LEVEL_1","features":[104]},{"name":"WTS_PROPERTY_DEFAULT_CONFIG","features":[104]},{"name":"WTS_PROPERTY_VALUE","features":[104]},{"name":"WTS_PROTOCOL_CACHE","features":[104]},{"name":"WTS_PROTOCOL_COUNTERS","features":[104]},{"name":"WTS_PROTOCOL_NAME_LENGTH","features":[104]},{"name":"WTS_PROTOCOL_STATUS","features":[104]},{"name":"WTS_PROTOCOL_TYPE_CONSOLE","features":[104]},{"name":"WTS_PROTOCOL_TYPE_ICA","features":[104]},{"name":"WTS_PROTOCOL_TYPE_RDP","features":[104]},{"name":"WTS_QUERY_ALLOWED_INITIAL_APP","features":[104]},{"name":"WTS_QUERY_AUDIOENUM_DLL","features":[104]},{"name":"WTS_QUERY_LOGON_SCREEN_SIZE","features":[104]},{"name":"WTS_QUERY_MF_FORMAT_SUPPORT","features":[104]},{"name":"WTS_RCM_DRAIN_STATE","features":[104]},{"name":"WTS_RCM_SERVICE_STATE","features":[104]},{"name":"WTS_SECURITY_ALL_ACCESS","features":[104]},{"name":"WTS_SECURITY_CONNECT","features":[104]},{"name":"WTS_SECURITY_CURRENT_GUEST_ACCESS","features":[104]},{"name":"WTS_SECURITY_CURRENT_USER_ACCESS","features":[104]},{"name":"WTS_SECURITY_DISCONNECT","features":[104]},{"name":"WTS_SECURITY_FLAGS","features":[104]},{"name":"WTS_SECURITY_GUEST_ACCESS","features":[104]},{"name":"WTS_SECURITY_LOGOFF","features":[104]},{"name":"WTS_SECURITY_LOGON","features":[104]},{"name":"WTS_SECURITY_MESSAGE","features":[104]},{"name":"WTS_SECURITY_QUERY_INFORMATION","features":[104]},{"name":"WTS_SECURITY_REMOTE_CONTROL","features":[104]},{"name":"WTS_SECURITY_RESET","features":[104]},{"name":"WTS_SECURITY_SET_INFORMATION","features":[104]},{"name":"WTS_SECURITY_USER_ACCESS","features":[104]},{"name":"WTS_SECURITY_VIRTUAL_CHANNELS","features":[104]},{"name":"WTS_SERVER_INFOA","features":[104]},{"name":"WTS_SERVER_INFOW","features":[104]},{"name":"WTS_SERVICE_NONE","features":[104]},{"name":"WTS_SERVICE_START","features":[104]},{"name":"WTS_SERVICE_STATE","features":[104]},{"name":"WTS_SERVICE_STOP","features":[104]},{"name":"WTS_SESSIONSTATE_LOCK","features":[104]},{"name":"WTS_SESSIONSTATE_UNKNOWN","features":[104]},{"name":"WTS_SESSIONSTATE_UNLOCK","features":[104]},{"name":"WTS_SESSION_ADDRESS","features":[104]},{"name":"WTS_SESSION_ID","features":[104]},{"name":"WTS_SESSION_INFOA","features":[104]},{"name":"WTS_SESSION_INFOW","features":[104]},{"name":"WTS_SESSION_INFO_1A","features":[104]},{"name":"WTS_SESSION_INFO_1W","features":[104]},{"name":"WTS_SMALL_RECT","features":[104]},{"name":"WTS_SOCKADDR","features":[104]},{"name":"WTS_SYSTEMTIME","features":[104]},{"name":"WTS_TIME_ZONE_INFORMATION","features":[104]},{"name":"WTS_TYPE_CLASS","features":[104]},{"name":"WTS_USERNAME_LENGTH","features":[104]},{"name":"WTS_USER_CREDENTIAL","features":[104]},{"name":"WTS_USER_DATA","features":[104]},{"name":"WTS_VALIDATION_INFORMATIONA","features":[104]},{"name":"WTS_VALIDATION_INFORMATIONW","features":[104]},{"name":"WTS_VALUE_TYPE_BINARY","features":[104]},{"name":"WTS_VALUE_TYPE_GUID","features":[104]},{"name":"WTS_VALUE_TYPE_STRING","features":[104]},{"name":"WTS_VALUE_TYPE_ULONG","features":[104]},{"name":"WTS_VIRTUAL_CLASS","features":[104]},{"name":"WTS_WSD_FASTREBOOT","features":[104]},{"name":"WTS_WSD_LOGOFF","features":[104]},{"name":"WTS_WSD_POWEROFF","features":[104]},{"name":"WTS_WSD_REBOOT","features":[104]},{"name":"WTS_WSD_SHUTDOWN","features":[104]},{"name":"Workspace","features":[104]},{"name":"_ITSWkspEvents","features":[104]},{"name":"pluginResource","features":[104]},{"name":"pluginResource2","features":[104]},{"name":"pluginResource2FileAssociation","features":[104]}],"598":[{"name":"ERROR_REDIRECT_LOCATION_INVALID","features":[194]},{"name":"ERROR_REDIRECT_LOCATION_TOO_LONG","features":[194]},{"name":"ERROR_SERVICE_CBT_HARDENING_INVALID","features":[194]},{"name":"ERROR_WINRS_CLIENT_CLOSERECEIVEHANDLE_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_CLOSESENDHANDLE_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_CLOSESHELL_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_CREATESHELL_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_FREECREATESHELLRESULT_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_FREEPULLRESULT_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_FREERUNCOMMANDRESULT_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_GET_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_INVALID_FLAG","features":[194]},{"name":"ERROR_WINRS_CLIENT_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_PULL_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_PUSH_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_RECEIVE_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_RUNCOMMAND_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_SEND_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CLIENT_SIGNAL_NULL_PARAM","features":[194]},{"name":"ERROR_WINRS_CODE_PAGE_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WINRS_CONNECT_RESPONSE_BAD_BODY","features":[194]},{"name":"ERROR_WINRS_IDLETIMEOUT_OUTOFBOUNDS","features":[194]},{"name":"ERROR_WINRS_RECEIVE_IN_PROGRESS","features":[194]},{"name":"ERROR_WINRS_RECEIVE_NO_RESPONSE_DATA","features":[194]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_NOT_VALID","features":[194]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_RESOURCE_CONFLICT","features":[194]},{"name":"ERROR_WINRS_SHELLCOMMAND_DISCONNECT_OPERATION_NOT_VALID","features":[194]},{"name":"ERROR_WINRS_SHELLCOMMAND_RECONNECT_OPERATION_NOT_VALID","features":[194]},{"name":"ERROR_WINRS_SHELL_CLIENTID_NOT_VALID","features":[194]},{"name":"ERROR_WINRS_SHELL_CLIENTID_RESOURCE_CONFLICT","features":[194]},{"name":"ERROR_WINRS_SHELL_CLIENTSESSIONID_MISMATCH","features":[194]},{"name":"ERROR_WINRS_SHELL_CONNECTED_TO_DIFFERENT_CLIENT","features":[194]},{"name":"ERROR_WINRS_SHELL_DISCONNECTED","features":[194]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_GRACEFUL","features":[194]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_VALID","features":[194]},{"name":"ERROR_WINRS_SHELL_RECONNECT_OPERATION_NOT_VALID","features":[194]},{"name":"ERROR_WINRS_SHELL_URI_INVALID","features":[194]},{"name":"ERROR_WSMAN_ACK_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_ACTION_MISMATCH","features":[194]},{"name":"ERROR_WSMAN_ACTION_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_EPR","features":[194]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_OBJECT","features":[194]},{"name":"ERROR_WSMAN_ALREADY_EXISTS","features":[194]},{"name":"ERROR_WSMAN_AMBIGUOUS_SELECTORS","features":[194]},{"name":"ERROR_WSMAN_AUTHENTICATION_INVALID_FLAG","features":[194]},{"name":"ERROR_WSMAN_AUTHORIZATION_MODE_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_BAD_METHOD","features":[194]},{"name":"ERROR_WSMAN_BATCHSIZE_TOO_SMALL","features":[194]},{"name":"ERROR_WSMAN_BATCH_COMPLETE","features":[194]},{"name":"ERROR_WSMAN_BOOKMARKS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_BOOKMARK_EXPIRED","features":[194]},{"name":"ERROR_WSMAN_CANNOT_CHANGE_KEYS","features":[194]},{"name":"ERROR_WSMAN_CANNOT_DECRYPT","features":[194]},{"name":"ERROR_WSMAN_CANNOT_PROCESS_FILTER","features":[194]},{"name":"ERROR_WSMAN_CANNOT_USE_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS_FOR_HTTP","features":[194]},{"name":"ERROR_WSMAN_CANNOT_USE_CERTIFICATES_FOR_HTTP","features":[194]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_CREDSSP","features":[194]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_HTTP","features":[194]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_KERBEROS","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_CONFIGLIMIT_EXCEEDED","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_CREDENTIAL_MANAGEMENT_FAILIED","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDISSUERKEY","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDSUBJECTKEY","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDUSERCREDENTIALS","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDBLANK","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDTOOLONG","features":[194]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDUSERTUPLE","features":[194]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE","features":[194]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE_CLIENT","features":[194]},{"name":"ERROR_WSMAN_CERT_MISSING_AUTH_FLAG","features":[194]},{"name":"ERROR_WSMAN_CERT_MULTIPLE_CREDENTIALS_FLAG","features":[194]},{"name":"ERROR_WSMAN_CERT_NOT_FOUND","features":[194]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_BLANK","features":[194]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_NOT_BLANK","features":[194]},{"name":"ERROR_WSMAN_CHARACTER_SET","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS_NTLMONLY","features":[194]},{"name":"ERROR_WSMAN_CLIENT_BASIC_AUTHENTICATION_DISABLED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_BATCH_ITEMS_TOO_SMALL","features":[194]},{"name":"ERROR_WSMAN_CLIENT_BLANK_ACTION_URI","features":[194]},{"name":"ERROR_WSMAN_CLIENT_BLANK_INPUT_XML","features":[194]},{"name":"ERROR_WSMAN_CLIENT_BLANK_URI","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CERTIFICATES_AUTHENTICATION_DISABLED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CERT_NEEDED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_LOCATION","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_TYPE","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_CREDS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_USERNAME","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CLOSECOMMAND_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CLOSESHELL_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_COMPRESSION_INVALID_OPTION","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CONNECTCOMMAND_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CONNECTSHELL_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CONSTRUCTERROR_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREATESESSION_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NAME_INVALID","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FLAG_NEEDED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_DEFAULT_AUTHENTICATION","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_PROXY_AUTHENTICATION","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_NEEDED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_CREDSSP_AUTHENTICATION_DISABLED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_DECODEOBJECT_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_DELIVERENDSUBSCRIPTION_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_DELIVEREVENTS_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_DIGEST_AUTHENTICATION_DISABLED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_DISABLE_LOOPBACK_WITH_EXPLICIT_CREDENTIALS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_DISCONNECTSHELL_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ENCODEOBJECT_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATE_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDEVENT_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDOBJECT_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORNEXTOBJECT_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ENUM_RECEIVED_TOO_MANY_ITEMS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_GETBOOKMARK_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_GETERRORMESSAGE_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_INVALID_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_INVALID_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_STRING_INVALID_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INITIALIZE_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT_DNS_OR_UPN","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_COMMAND_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_SHELL_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CREATE_SHELL_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DEINIT_APPLICATION_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DELIVERY_RETRY","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISABLE_LOOPBACK","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISCONNECT_SHELL_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_GETERRORMESSAGE_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_INIT_APPLICATION_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LANGUAGE_CODE","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LOCALE","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RECEIVE_SHELL_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RESOURCE_LOCATOR","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RUNCOMMAND_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_PARAMETER","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SHELL_COMMAND_PAIR","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SIGNAL_SHELL_FLAG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_INVALID_UI_LANGUAGE","features":[194]},{"name":"ERROR_WSMAN_CLIENT_KERBEROS_AUTHENTICATION_DISABLED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CONNECTION_OPTIONS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CREDS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_MAX_CHARS_TOO_SMALL","features":[194]},{"name":"ERROR_WSMAN_CLIENT_MISSING_EXPIRATION","features":[194]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_AUTH_FLAGS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_DELIVERY_MODES","features":[194]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENUM_MODE_FLAGS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENVELOPE_POLICIES","features":[194]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_PROXY_AUTH_FLAGS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_NEGOTIATE_AUTHENTICATION_DISABLED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_NO_HANDLE","features":[194]},{"name":"ERROR_WSMAN_CLIENT_NO_SOURCES","features":[194]},{"name":"ERROR_WSMAN_CLIENT_NULL_ISSUERS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_NULL_PUBLISHERS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_NULL_RESULT_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_PULL_INVALID_FLAGS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_PUSH_HOST_TOO_LONG","features":[194]},{"name":"ERROR_WSMAN_CLIENT_PUSH_UNSUPPORTED_TRANSPORT","features":[194]},{"name":"ERROR_WSMAN_CLIENT_RECEIVE_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELLCOMMAND_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELL_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NOTCOMPLETED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_SEND_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_SESSION_UNUSABLE","features":[194]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_INVALID_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_SIGNAL_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_SPN_WRONG_AUTH","features":[194]},{"name":"ERROR_WSMAN_CLIENT_SUBSCRIBE_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_DISABLED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_HTTP_ONLY","features":[194]},{"name":"ERROR_WSMAN_CLIENT_UNKNOWN_EXPIRATION_TYPE","features":[194]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_AND_PASSWORD_NEEDED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_PASSWORD_NEEDED","features":[194]},{"name":"ERROR_WSMAN_CLIENT_WORKGROUP_NO_KERBEROS","features":[194]},{"name":"ERROR_WSMAN_CLIENT_ZERO_HEARTBEAT","features":[194]},{"name":"ERROR_WSMAN_COMMAND_ALREADY_CLOSED","features":[194]},{"name":"ERROR_WSMAN_COMMAND_TERMINATED","features":[194]},{"name":"ERROR_WSMAN_CONCURRENCY","features":[194]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_CERTMAPPING_KEYS","features":[194]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_GPO_CONTROLLED_SETTING","features":[194]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_MUTUAL","features":[194]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_SHARE_SSL_CONFIG","features":[194]},{"name":"ERROR_WSMAN_CONFIG_CERT_CN_DOES_NOT_MATCH_HOSTNAME","features":[194]},{"name":"ERROR_WSMAN_CONFIG_CORRUPTED","features":[194]},{"name":"ERROR_WSMAN_CONFIG_GROUP_POLICY_CHANGE_NOTIFICATION_SUBSCRIPTION_FAILED","features":[194]},{"name":"ERROR_WSMAN_CONFIG_HOSTNAME_CHANGE_WITHOUT_CERT","features":[194]},{"name":"ERROR_WSMAN_CONFIG_PORT_INVALID","features":[194]},{"name":"ERROR_WSMAN_CONFIG_READONLY_PROPERTY","features":[194]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_OPERATION_ON_KEY","features":[194]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_PROCESSPATH","features":[194]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_CMDSHELLURI_NOTPERMITTED","features":[194]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_INVALID","features":[194]},{"name":"ERROR_WSMAN_CONFIG_THUMBPRINT_SHOULD_BE_EMPTY","features":[194]},{"name":"ERROR_WSMAN_CONNECTIONSTR_INVALID","features":[194]},{"name":"ERROR_WSMAN_CONNECTOR_GET","features":[194]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_ENVIRONMENT_VARIABLE_NAME","features":[194]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_STREAMID","features":[194]},{"name":"ERROR_WSMAN_CREATESHELL_RUNAS_FAILED","features":[194]},{"name":"ERROR_WSMAN_CREATE_RESPONSE_NO_EPR","features":[194]},{"name":"ERROR_WSMAN_CREDSSP_USERNAME_PASSWORD_NEEDED","features":[194]},{"name":"ERROR_WSMAN_CREDS_PASSED_WITH_NO_AUTH_FLAG","features":[194]},{"name":"ERROR_WSMAN_CUSTOMREMOTESHELL_DEPRECATED","features":[194]},{"name":"ERROR_WSMAN_DEFAULTAUTH_IPADDRESS","features":[194]},{"name":"ERROR_WSMAN_DELIVERY_REFUSED","features":[194]},{"name":"ERROR_WSMAN_DELIVERY_RETRIES_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_DELIVER_IN_PROGRESS","features":[194]},{"name":"ERROR_WSMAN_DEPRECATED_CONFIG_SETTING","features":[194]},{"name":"ERROR_WSMAN_DESERIALIZE_CLASS","features":[194]},{"name":"ERROR_WSMAN_DESTINATION_INVALID","features":[194]},{"name":"ERROR_WSMAN_DESTINATION_UNREACHABLE","features":[194]},{"name":"ERROR_WSMAN_DIFFERENT_AUTHZ_TOKEN","features":[194]},{"name":"ERROR_WSMAN_DIFFERENT_CIM_SELECTOR","features":[194]},{"name":"ERROR_WSMAN_DUPLICATE_SELECTORS","features":[194]},{"name":"ERROR_WSMAN_ENCODING_LIMIT","features":[194]},{"name":"ERROR_WSMAN_ENCODING_TYPE","features":[194]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE","features":[194]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE_INVALID_VALUE","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_CANNOT_PROCESS_FILTER","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_FILTERING_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_FILTER_DIALECT_REQUESTED_UNAVAILABLE","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_ENUMERATION_CONTEXT","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_EXPIRATION_TIME","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMAMNDS_FILTER_EXPECTED","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMMANDS_EPRS_NOTSUPPORTED","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_TIMED_OUT","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_UNABLE_TO_RENEW","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TIME","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TYPE","features":[194]},{"name":"ERROR_WSMAN_ENUMERATE_WMI_INVALID_KEY","features":[194]},{"name":"ERROR_WSMAN_ENUMERATION_CLOSED","features":[194]},{"name":"ERROR_WSMAN_ENUMERATION_INITIALIZING","features":[194]},{"name":"ERROR_WSMAN_ENUMERATION_INVALID","features":[194]},{"name":"ERROR_WSMAN_ENUMERATION_MODE_UNSUPPORTED","features":[194]},{"name":"ERROR_WSMAN_ENVELOPE_TOO_LARGE","features":[194]},{"name":"ERROR_WSMAN_EPR_NESTING_EXCEEDED","features":[194]},{"name":"ERROR_WSMAN_EVENTING_CONCURRENT_CLIENT_RECEIVE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_DELIVERYFAILED_FROMSOURCE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_INVALID","features":[194]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_UNAVAILABLE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_FAST_SENDER","features":[194]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_REQUESTED_UNAVAILABLE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INCOMPATIBLE_BATCHPARAMS_AND_DELIVERYMODE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INSECURE_PUSHSUBSCRIPTION_CONNECTION","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENCODING_IN_DELIVERY","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENDTO_ADDRESSS","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EVENTSOURCE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EXPIRATION_TIME","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_HEARTBEAT","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_INCOMING_EVENT_PACKET_HEADER","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_LOCALE_IN_DELIVERY","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_MESSAGE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_INVALID_NOTIFYTO_ADDRESSS","features":[194]},{"name":"ERROR_WSMAN_EVENTING_LOOPBACK_TESTFAILED","features":[194]},{"name":"ERROR_WSMAN_EVENTING_MISSING_LOCALE_IN_DELIVERY","features":[194]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO","features":[194]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO_ADDRESSS","features":[194]},{"name":"ERROR_WSMAN_EVENTING_NOMATCHING_LISTENER","features":[194]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_COLLECTOR","features":[194]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_PUBLISHER","features":[194]},{"name":"ERROR_WSMAN_EVENTING_PUSH_SUBSCRIPTION_NOACTIVATE_EVENTSOURCE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_SOURCE_UNABLE_TO_PROCESS","features":[194]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTIONCLOSED_BYREMOTESERVICE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTION_CANCELLED_BYSOURCE","features":[194]},{"name":"ERROR_WSMAN_EVENTING_UNABLE_TO_RENEW","features":[194]},{"name":"ERROR_WSMAN_EVENTING_UNSUPPORTED_EXPIRATION_TYPE","features":[194]},{"name":"ERROR_WSMAN_EXPIRATION_TIME_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_EXPLICIT_CREDENTIALS_REQUIRED","features":[194]},{"name":"ERROR_WSMAN_FAILED_AUTHENTICATION","features":[194]},{"name":"ERROR_WSMAN_FEATURE_DEPRECATED","features":[194]},{"name":"ERROR_WSMAN_FILE_NOT_PRESENT","features":[194]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED","features":[194]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_FORMAT_MISMATCH_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_FORMAT_SECURITY_TOKEN_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_FRAGMENT_DIALECT_REQUESTED_UNAVAILABLE","features":[194]},{"name":"ERROR_WSMAN_FRAGMENT_TRANSFER_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_GETCLASS","features":[194]},{"name":"ERROR_WSMAN_HEARTBEATS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_HTML_ERROR","features":[194]},{"name":"ERROR_WSMAN_HTTP_CONTENT_TYPE_MISSMATCH_RESPONSE_DATA","features":[194]},{"name":"ERROR_WSMAN_HTTP_INVALID_CONTENT_TYPE_IN_RESPONSE_DATA","features":[194]},{"name":"ERROR_WSMAN_HTTP_NOT_FOUND_STATUS","features":[194]},{"name":"ERROR_WSMAN_HTTP_NO_RESPONSE_DATA","features":[194]},{"name":"ERROR_WSMAN_HTTP_REQUEST_TOO_LARGE_STATUS","features":[194]},{"name":"ERROR_WSMAN_HTTP_SERVICE_UNAVAILABLE_STATUS","features":[194]},{"name":"ERROR_WSMAN_HTTP_STATUS_BAD_REQUEST","features":[194]},{"name":"ERROR_WSMAN_HTTP_STATUS_SERVER_ERROR","features":[194]},{"name":"ERROR_WSMAN_IISCONFIGURATION_READ_FAILED","features":[194]},{"name":"ERROR_WSMAN_INCOMPATIBLE_EPR","features":[194]},{"name":"ERROR_WSMAN_INEXISTENT_MAC_ADDRESS","features":[194]},{"name":"ERROR_WSMAN_INSECURE_ADDRESS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_INSUFFCIENT_SELECTORS","features":[194]},{"name":"ERROR_WSMAN_INSUFFICIENT_METADATA_FOR_BASIC","features":[194]},{"name":"ERROR_WSMAN_INVALID_ACTIONURI","features":[194]},{"name":"ERROR_WSMAN_INVALID_BATCH_PARAMETER","features":[194]},{"name":"ERROR_WSMAN_INVALID_BATCH_SETTINGS_PARAMETER","features":[194]},{"name":"ERROR_WSMAN_INVALID_BOOKMARK","features":[194]},{"name":"ERROR_WSMAN_INVALID_CHARACTERS_IN_RESPONSE","features":[194]},{"name":"ERROR_WSMAN_INVALID_CONFIGSDDL_URL","features":[194]},{"name":"ERROR_WSMAN_INVALID_CONNECTIONRETRY","features":[194]},{"name":"ERROR_WSMAN_INVALID_FILEPATH","features":[194]},{"name":"ERROR_WSMAN_INVALID_FILTER_XML","features":[194]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_DIALECT","features":[194]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH","features":[194]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH_BLANK","features":[194]},{"name":"ERROR_WSMAN_INVALID_HEADER","features":[194]},{"name":"ERROR_WSMAN_INVALID_HOSTNAME_PATTERN","features":[194]},{"name":"ERROR_WSMAN_INVALID_IPFILTER","features":[194]},{"name":"ERROR_WSMAN_INVALID_KEY","features":[194]},{"name":"ERROR_WSMAN_INVALID_LITERAL_URI","features":[194]},{"name":"ERROR_WSMAN_INVALID_MESSAGE_INFORMATION_HEADER","features":[194]},{"name":"ERROR_WSMAN_INVALID_OPTIONS","features":[194]},{"name":"ERROR_WSMAN_INVALID_OPTIONSET","features":[194]},{"name":"ERROR_WSMAN_INVALID_OPTION_NO_PROXY_SERVER","features":[194]},{"name":"ERROR_WSMAN_INVALID_PARAMETER","features":[194]},{"name":"ERROR_WSMAN_INVALID_PARAMETER_NAME","features":[194]},{"name":"ERROR_WSMAN_INVALID_PROPOSED_ID","features":[194]},{"name":"ERROR_WSMAN_INVALID_PROVIDER_RESPONSE","features":[194]},{"name":"ERROR_WSMAN_INVALID_PUBLISHERS_TYPE","features":[194]},{"name":"ERROR_WSMAN_INVALID_REDIRECT_ERROR","features":[194]},{"name":"ERROR_WSMAN_INVALID_REPRESENTATION","features":[194]},{"name":"ERROR_WSMAN_INVALID_RESOURCE_URI","features":[194]},{"name":"ERROR_WSMAN_INVALID_RESUMPTION_CONTEXT","features":[194]},{"name":"ERROR_WSMAN_INVALID_SECURITY_DESCRIPTOR","features":[194]},{"name":"ERROR_WSMAN_INVALID_SELECTORS","features":[194]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_NAME","features":[194]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_VALUE","features":[194]},{"name":"ERROR_WSMAN_INVALID_SOAP_BODY","features":[194]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIBE_OBJECT","features":[194]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIPTION_MANAGER","features":[194]},{"name":"ERROR_WSMAN_INVALID_SYSTEM","features":[194]},{"name":"ERROR_WSMAN_INVALID_TARGET_RESOURCEURI","features":[194]},{"name":"ERROR_WSMAN_INVALID_TARGET_SELECTORS","features":[194]},{"name":"ERROR_WSMAN_INVALID_TARGET_SYSTEM","features":[194]},{"name":"ERROR_WSMAN_INVALID_TIMEOUT_HEADER","features":[194]},{"name":"ERROR_WSMAN_INVALID_URI","features":[194]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_ENUM_WQL","features":[194]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_SINGLETON","features":[194]},{"name":"ERROR_WSMAN_INVALID_USESSL_PARAM","features":[194]},{"name":"ERROR_WSMAN_INVALID_XML","features":[194]},{"name":"ERROR_WSMAN_INVALID_XML_FRAGMENT","features":[194]},{"name":"ERROR_WSMAN_INVALID_XML_MISSING_VALUES","features":[194]},{"name":"ERROR_WSMAN_INVALID_XML_NAMESPACE","features":[194]},{"name":"ERROR_WSMAN_INVALID_XML_RUNAS_DISABLED","features":[194]},{"name":"ERROR_WSMAN_INVALID_XML_VALUES","features":[194]},{"name":"ERROR_WSMAN_KERBEROS_IPADDRESS","features":[194]},{"name":"ERROR_WSMAN_LISTENER_ADDRESS_INVALID","features":[194]},{"name":"ERROR_WSMAN_LOCALE_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_MACHINE_OPTION_REQUIRED","features":[194]},{"name":"ERROR_WSMAN_MAXENVELOPE_POLICY_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_MAXENVELOPE_SIZE_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_MAXITEMS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_MAXTIME_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_MAX_ELEMENTS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE","features":[194]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE_EXCEEDED","features":[194]},{"name":"ERROR_WSMAN_MESSAGE_INFORMATION_HEADER_REQUIRED","features":[194]},{"name":"ERROR_WSMAN_METADATA_REDIRECT","features":[194]},{"name":"ERROR_WSMAN_MIN_ENVELOPE_SIZE","features":[194]},{"name":"ERROR_WSMAN_MISSING_CLASSNAME","features":[194]},{"name":"ERROR_WSMAN_MISSING_FRAGMENT_PATH","features":[194]},{"name":"ERROR_WSMAN_MULTIPLE_CREDENTIALS","features":[194]},{"name":"ERROR_WSMAN_MUSTUNDERSTAND_ON_LOCALE_UNSUPPORTED","features":[194]},{"name":"ERROR_WSMAN_MUTUAL_AUTH_FAILED","features":[194]},{"name":"ERROR_WSMAN_NAME_NOT_RESOLVED","features":[194]},{"name":"ERROR_WSMAN_NETWORK_TIMEDOUT","features":[194]},{"name":"ERROR_WSMAN_NEW_DESERIALIZER","features":[194]},{"name":"ERROR_WSMAN_NEW_SESSION","features":[194]},{"name":"ERROR_WSMAN_NON_PULL_SUBSCRIPTION_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_NO_ACK","features":[194]},{"name":"ERROR_WSMAN_NO_CERTMAPPING_OPERATION_FOR_LOCAL_SESSION","features":[194]},{"name":"ERROR_WSMAN_NO_COMMANDID","features":[194]},{"name":"ERROR_WSMAN_NO_COMMAND_RESPONSE","features":[194]},{"name":"ERROR_WSMAN_NO_DHCP_ADDRESSES","features":[194]},{"name":"ERROR_WSMAN_NO_IDENTIFY_FOR_LOCAL_SESSION","features":[194]},{"name":"ERROR_WSMAN_NO_PUSH_SUBSCRIPTION_FOR_LOCAL_SESSION","features":[194]},{"name":"ERROR_WSMAN_NO_RECEIVE_RESPONSE","features":[194]},{"name":"ERROR_WSMAN_NO_UNICAST_ADDRESSES","features":[194]},{"name":"ERROR_WSMAN_NULL_KEY","features":[194]},{"name":"ERROR_WSMAN_OBJECTONLY_INVALID","features":[194]},{"name":"ERROR_WSMAN_OPERATION_TIMEDOUT","features":[194]},{"name":"ERROR_WSMAN_OPERATION_TIMEOUT_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_NAME","features":[194]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_VALUE","features":[194]},{"name":"ERROR_WSMAN_OPTIONS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_OPTION_LIMIT","features":[194]},{"name":"ERROR_WSMAN_PARAMETER_TYPE_MISMATCH","features":[194]},{"name":"ERROR_WSMAN_PLUGIN_CONFIGURATION_CORRUPTED","features":[194]},{"name":"ERROR_WSMAN_PLUGIN_FAILED","features":[194]},{"name":"ERROR_WSMAN_POLICY_CANNOT_COMPLY","features":[194]},{"name":"ERROR_WSMAN_POLICY_CORRUPTED","features":[194]},{"name":"ERROR_WSMAN_POLICY_TOO_COMPLEX","features":[194]},{"name":"ERROR_WSMAN_POLYMORPHISM_MODE_UNSUPPORTED","features":[194]},{"name":"ERROR_WSMAN_PORT_INVALID","features":[194]},{"name":"ERROR_WSMAN_PROVIDER_FAILURE","features":[194]},{"name":"ERROR_WSMAN_PROVIDER_LOAD_FAILED","features":[194]},{"name":"ERROR_WSMAN_PROVSYS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_PROXY_ACCESS_TYPE","features":[194]},{"name":"ERROR_WSMAN_PROXY_AUTHENTICATION_INVALID_FLAG","features":[194]},{"name":"ERROR_WSMAN_PUBLIC_FIREWALL_PROFILE_ACTIVE","features":[194]},{"name":"ERROR_WSMAN_PULL_IN_PROGRESS","features":[194]},{"name":"ERROR_WSMAN_PULL_PARAMS_NOT_SAME_AS_ENUM","features":[194]},{"name":"ERROR_WSMAN_PUSHSUBSCRIPTION_INVALIDUSERACCOUNT","features":[194]},{"name":"ERROR_WSMAN_PUSH_SUBSCRIPTION_CONFIG_INVALID","features":[194]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FAILED_CERT_REQUIRED","features":[194]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FIREWALL_EXCEPTIONS_DISALLOWED","features":[194]},{"name":"ERROR_WSMAN_QUICK_CONFIG_LOCAL_POLICY_CHANGE_DISALLOWED","features":[194]},{"name":"ERROR_WSMAN_QUOTA_LIMIT","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_COMMANDS_PER_SHELL_PPQ","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS_USER_PPQ","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINOPERATIONS_PPQ","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINSHELLS_PPQ","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS_PPQ","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLUSERS","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MAX_USERS_PPQ","features":[194]},{"name":"ERROR_WSMAN_QUOTA_MIN_REQUIREMENT_NOT_AVAILABLE_PPQ","features":[194]},{"name":"ERROR_WSMAN_QUOTA_SYSTEM","features":[194]},{"name":"ERROR_WSMAN_QUOTA_USER","features":[194]},{"name":"ERROR_WSMAN_REDIRECT_LOCATION_NOT_AVAILABLE","features":[194]},{"name":"ERROR_WSMAN_REDIRECT_REQUESTED","features":[194]},{"name":"ERROR_WSMAN_REMOTESHELLS_NOT_ALLOWED","features":[194]},{"name":"ERROR_WSMAN_REMOTE_CIMPATH_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_REMOTE_CONNECTION_NOT_ALLOWED","features":[194]},{"name":"ERROR_WSMAN_RENAME_FAILURE","features":[194]},{"name":"ERROR_WSMAN_REQUEST_INIT_ERROR","features":[194]},{"name":"ERROR_WSMAN_REQUEST_NOT_SUPPORTED_AT_SERVICE","features":[194]},{"name":"ERROR_WSMAN_RESOURCE_NOT_FOUND","features":[194]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_ENUMERATION_CONTEXT","features":[194]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_MESSAGE_INFORMATION_HEADER","features":[194]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_SOAP_FAULT","features":[194]},{"name":"ERROR_WSMAN_RESPONSE_NO_RESULTS","features":[194]},{"name":"ERROR_WSMAN_RESPONSE_NO_SOAP_HEADER_BODY","features":[194]},{"name":"ERROR_WSMAN_RESPONSE_NO_XML_FRAGMENT_WRAPPER","features":[194]},{"name":"ERROR_WSMAN_RESUMPTION_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_RESUMPTION_TYPE_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_RUNASUSER_MANAGEDACCOUNT_LOGON_FAILED","features":[194]},{"name":"ERROR_WSMAN_RUNAS_INVALIDUSERCREDENTIALS","features":[194]},{"name":"ERROR_WSMAN_RUNSHELLCOMMAND_NULL_ARGUMENT","features":[194]},{"name":"ERROR_WSMAN_SCHEMA_VALIDATION_ERROR","features":[194]},{"name":"ERROR_WSMAN_SECURITY_UNMAPPED","features":[194]},{"name":"ERROR_WSMAN_SELECTOR_LIMIT","features":[194]},{"name":"ERROR_WSMAN_SELECTOR_TYPEMISMATCH","features":[194]},{"name":"ERROR_WSMAN_SEMANTICCALLBACK_TIMEDOUT","features":[194]},{"name":"ERROR_WSMAN_SENDHEARBEAT_EMPTY_ENUMERATOR","features":[194]},{"name":"ERROR_WSMAN_SENDSHELLINPUT_INVALID_STREAMID_INDEX","features":[194]},{"name":"ERROR_WSMAN_SERVER_DESTINATION_LOCALHOST","features":[194]},{"name":"ERROR_WSMAN_SERVER_ENVELOPE_LIMIT","features":[194]},{"name":"ERROR_WSMAN_SERVER_NONPULLSUBSCRIBE_NULL_PARAM","features":[194]},{"name":"ERROR_WSMAN_SERVER_NOT_TRUSTED","features":[194]},{"name":"ERROR_WSMAN_SERVICE_REMOTE_ACCESS_DISABLED","features":[194]},{"name":"ERROR_WSMAN_SERVICE_STREAM_DISCONNECTED","features":[194]},{"name":"ERROR_WSMAN_SESSION_ALREADY_CLOSED","features":[194]},{"name":"ERROR_WSMAN_SHELL_ALREADY_CLOSED","features":[194]},{"name":"ERROR_WSMAN_SHELL_INVALID_COMMAND_HANDLE","features":[194]},{"name":"ERROR_WSMAN_SHELL_INVALID_DESIRED_STREAMS","features":[194]},{"name":"ERROR_WSMAN_SHELL_INVALID_INPUT_STREAM","features":[194]},{"name":"ERROR_WSMAN_SHELL_INVALID_SHELL_HANDLE","features":[194]},{"name":"ERROR_WSMAN_SHELL_NOT_INITIALIZED","features":[194]},{"name":"ERROR_WSMAN_SHELL_SYNCHRONOUS_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_SOAP_DATA_ENCODING_UNKNOWN","features":[194]},{"name":"ERROR_WSMAN_SOAP_FAULT_MUST_UNDERSTAND","features":[194]},{"name":"ERROR_WSMAN_SOAP_VERSION_MISMATCH","features":[194]},{"name":"ERROR_WSMAN_SSL_CONNECTION_ABORTED","features":[194]},{"name":"ERROR_WSMAN_SUBSCRIBE_WMI_INVALID_KEY","features":[194]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLIENT_DID_NOT_CALL_WITHIN_HEARTBEAT","features":[194]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSED","features":[194]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSE_IN_PROGRESS","features":[194]},{"name":"ERROR_WSMAN_SUBSCRIPTION_LISTENER_NOLONGERVALID","features":[194]},{"name":"ERROR_WSMAN_SUBSCRIPTION_NO_HEARTBEAT","features":[194]},{"name":"ERROR_WSMAN_SYSTEM_NOT_FOUND","features":[194]},{"name":"ERROR_WSMAN_TARGET_ALREADY_EXISTS","features":[194]},{"name":"ERROR_WSMAN_TRANSPORT_NOT_SUPPORTED","features":[194]},{"name":"ERROR_WSMAN_UNEXPECTED_SELECTORS","features":[194]},{"name":"ERROR_WSMAN_UNKNOWN_HTTP_STATUS_RETURNED","features":[194]},{"name":"ERROR_WSMAN_UNREPORTABLE_SUCCESS","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_ADDRESSING_MODE","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_ENCODING","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_IDENTIFY","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_OPTIONS","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_HTTP_STATUS_REDIRECT","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_MEDIA","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_OCTETTYPE","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_TIMEOUT","features":[194]},{"name":"ERROR_WSMAN_UNSUPPORTED_TYPE","features":[194]},{"name":"ERROR_WSMAN_URISECURITY_INVALIDURIKEY","features":[194]},{"name":"ERROR_WSMAN_URI_LIMIT","features":[194]},{"name":"ERROR_WSMAN_URI_NON_DMTF_CLASS","features":[194]},{"name":"ERROR_WSMAN_URI_QUERY_STRING_SYNTAX_ERROR","features":[194]},{"name":"ERROR_WSMAN_URI_SECURITY_URI","features":[194]},{"name":"ERROR_WSMAN_URI_WRONG_DMTF_VERSION","features":[194]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED","features":[194]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED_DOWNLEVEL","features":[194]},{"name":"ERROR_WSMAN_WHITESPACE","features":[194]},{"name":"ERROR_WSMAN_WMI_CANNOT_CONNECT_ACCESS_DENIED","features":[194]},{"name":"ERROR_WSMAN_WMI_INVALID_VALUE","features":[194]},{"name":"ERROR_WSMAN_WMI_MAX_NESTED","features":[194]},{"name":"ERROR_WSMAN_WMI_PROVIDER_ACCESS_DENIED","features":[194]},{"name":"ERROR_WSMAN_WMI_PROVIDER_INVALID_PARAMETER","features":[194]},{"name":"ERROR_WSMAN_WMI_PROVIDER_NOT_CAPABLE","features":[194]},{"name":"ERROR_WSMAN_WMI_SVC_ACCESS_DENIED","features":[194]},{"name":"ERROR_WSMAN_WRONG_METADATA","features":[194]},{"name":"IWSMan","features":[194]},{"name":"IWSManConnectionOptions","features":[194]},{"name":"IWSManConnectionOptionsEx","features":[194]},{"name":"IWSManConnectionOptionsEx2","features":[194]},{"name":"IWSManEnumerator","features":[194]},{"name":"IWSManEx","features":[194]},{"name":"IWSManEx2","features":[194]},{"name":"IWSManEx3","features":[194]},{"name":"IWSManInternal","features":[194]},{"name":"IWSManResourceLocator","features":[194]},{"name":"IWSManResourceLocatorInternal","features":[194]},{"name":"IWSManSession","features":[194]},{"name":"WSMAN_API_HANDLE","features":[194]},{"name":"WSMAN_AUTHENTICATION_CREDENTIALS","features":[194]},{"name":"WSMAN_AUTHZ_QUOTA","features":[194]},{"name":"WSMAN_CERTIFICATE_DETAILS","features":[194]},{"name":"WSMAN_CMDSHELL_OPTION_CODEPAGE","features":[194]},{"name":"WSMAN_CMDSHELL_OPTION_CONSOLEMODE_STDIN","features":[194]},{"name":"WSMAN_CMDSHELL_OPTION_SKIP_CMD_SHELL","features":[194]},{"name":"WSMAN_COMMAND_ARG_SET","features":[194]},{"name":"WSMAN_COMMAND_HANDLE","features":[194]},{"name":"WSMAN_CONNECT_DATA","features":[194]},{"name":"WSMAN_CREATE_SHELL_DATA","features":[194]},{"name":"WSMAN_DATA","features":[194]},{"name":"WSMAN_DATA_BINARY","features":[194]},{"name":"WSMAN_DATA_NONE","features":[194]},{"name":"WSMAN_DATA_TEXT","features":[194]},{"name":"WSMAN_DATA_TYPE_BINARY","features":[194]},{"name":"WSMAN_DATA_TYPE_DWORD","features":[194]},{"name":"WSMAN_DATA_TYPE_TEXT","features":[194]},{"name":"WSMAN_DEFAULT_TIMEOUT_MS","features":[194]},{"name":"WSMAN_ENVIRONMENT_VARIABLE","features":[194]},{"name":"WSMAN_ENVIRONMENT_VARIABLE_SET","features":[194]},{"name":"WSMAN_ERROR","features":[194]},{"name":"WSMAN_FILTER","features":[194]},{"name":"WSMAN_FLAG_AUTH_BASIC","features":[194]},{"name":"WSMAN_FLAG_AUTH_CLIENT_CERTIFICATE","features":[194]},{"name":"WSMAN_FLAG_AUTH_CREDSSP","features":[194]},{"name":"WSMAN_FLAG_AUTH_DIGEST","features":[194]},{"name":"WSMAN_FLAG_AUTH_KERBEROS","features":[194]},{"name":"WSMAN_FLAG_AUTH_NEGOTIATE","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_OPERATION","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_STREAM","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_NETWORK_FAILURE_DETECTED","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_RECEIVE_DELAY_STREAM_REQUEST_PROCESSED","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_RECONNECTED_AFTER_NETWORK_FAILURE","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_RETRYING_AFTER_NETWORK_FAILURE","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_RETRY_ABORTED_DUE_TO_INTERNAL_ERROR","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTED","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTING","features":[194]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_SUPPORTS_DISCONNECT","features":[194]},{"name":"WSMAN_FLAG_DEFAULT_AUTHENTICATION","features":[194]},{"name":"WSMAN_FLAG_DELETE_SERVER_SESSION","features":[194]},{"name":"WSMAN_FLAG_NO_AUTHENTICATION","features":[194]},{"name":"WSMAN_FLAG_NO_COMPRESSION","features":[194]},{"name":"WSMAN_FLAG_RECEIVE_DELAY_OUTPUT_STREAM","features":[194]},{"name":"WSMAN_FLAG_RECEIVE_FLUSH","features":[194]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_DATA_BOUNDARY","features":[194]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_NO_MORE_DATA","features":[194]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_0","features":[194]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_1","features":[194]},{"name":"WSMAN_FLAG_SEND_NO_MORE_DATA","features":[194]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_BLOCK","features":[194]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_DROP","features":[194]},{"name":"WSMAN_FRAGMENT","features":[194]},{"name":"WSMAN_KEY","features":[194]},{"name":"WSMAN_OPERATION_HANDLE","features":[194]},{"name":"WSMAN_OPERATION_INFO","features":[1,194]},{"name":"WSMAN_OPERATION_INFOEX","features":[1,194]},{"name":"WSMAN_OPERATION_INFOV1","features":[194]},{"name":"WSMAN_OPERATION_INFOV2","features":[194]},{"name":"WSMAN_OPTION","features":[1,194]},{"name":"WSMAN_OPTION_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS","features":[194]},{"name":"WSMAN_OPTION_DEFAULT_OPERATION_TIMEOUTMS","features":[194]},{"name":"WSMAN_OPTION_ENABLE_SPN_SERVER_PORT","features":[194]},{"name":"WSMAN_OPTION_LOCALE","features":[194]},{"name":"WSMAN_OPTION_MACHINE_ID","features":[194]},{"name":"WSMAN_OPTION_MAX_ENVELOPE_SIZE_KB","features":[194]},{"name":"WSMAN_OPTION_MAX_RETRY_TIME","features":[194]},{"name":"WSMAN_OPTION_PROXY_AUTO_DETECT","features":[194]},{"name":"WSMAN_OPTION_PROXY_IE_PROXY_CONFIG","features":[194]},{"name":"WSMAN_OPTION_PROXY_NO_PROXY_SERVER","features":[194]},{"name":"WSMAN_OPTION_PROXY_WINHTTP_PROXY_CONFIG","features":[194]},{"name":"WSMAN_OPTION_REDIRECT_LOCATION","features":[194]},{"name":"WSMAN_OPTION_SET","features":[1,194]},{"name":"WSMAN_OPTION_SETEX","features":[1,194]},{"name":"WSMAN_OPTION_SHELL_MAX_DATA_SIZE_PER_MESSAGE_KB","features":[194]},{"name":"WSMAN_OPTION_SKIP_CA_CHECK","features":[194]},{"name":"WSMAN_OPTION_SKIP_CN_CHECK","features":[194]},{"name":"WSMAN_OPTION_SKIP_REVOCATION_CHECK","features":[194]},{"name":"WSMAN_OPTION_TIMEOUTMS_CLOSE_SHELL","features":[194]},{"name":"WSMAN_OPTION_TIMEOUTMS_CREATE_SHELL","features":[194]},{"name":"WSMAN_OPTION_TIMEOUTMS_RECEIVE_SHELL_OUTPUT","features":[194]},{"name":"WSMAN_OPTION_TIMEOUTMS_RUN_SHELL_COMMAND","features":[194]},{"name":"WSMAN_OPTION_TIMEOUTMS_SEND_SHELL_INPUT","features":[194]},{"name":"WSMAN_OPTION_TIMEOUTMS_SIGNAL_SHELL","features":[194]},{"name":"WSMAN_OPTION_UI_LANGUAGE","features":[194]},{"name":"WSMAN_OPTION_UNENCRYPTED_MESSAGES","features":[194]},{"name":"WSMAN_OPTION_USE_INTEARACTIVE_TOKEN","features":[194]},{"name":"WSMAN_OPTION_USE_SSL","features":[194]},{"name":"WSMAN_OPTION_UTF16","features":[194]},{"name":"WSMAN_PLUGIN_AUTHORIZE_OPERATION","features":[1,194]},{"name":"WSMAN_PLUGIN_AUTHORIZE_QUERY_QUOTA","features":[1,194]},{"name":"WSMAN_PLUGIN_AUTHORIZE_RELEASE_CONTEXT","features":[194]},{"name":"WSMAN_PLUGIN_AUTHORIZE_USER","features":[1,194]},{"name":"WSMAN_PLUGIN_COMMAND","features":[1,194]},{"name":"WSMAN_PLUGIN_CONNECT","features":[1,194]},{"name":"WSMAN_PLUGIN_PARAMS_AUTORESTART","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_DATA_LOCALE","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_LOCALE","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_HOSTIDLETIMEOUTSECONDS","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_LARGEST_RESULT_SIZE","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_MAX_ENVELOPE_SIZE","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_NAME","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_REMAINING_RESULT_SIZE","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_RUNAS_USER","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_SHAREDHOST","features":[194]},{"name":"WSMAN_PLUGIN_PARAMS_TIMEOUT","features":[194]},{"name":"WSMAN_PLUGIN_RECEIVE","features":[1,194]},{"name":"WSMAN_PLUGIN_RELEASE_COMMAND_CONTEXT","features":[194]},{"name":"WSMAN_PLUGIN_RELEASE_SHELL_CONTEXT","features":[194]},{"name":"WSMAN_PLUGIN_REQUEST","features":[1,194]},{"name":"WSMAN_PLUGIN_SEND","features":[1,194]},{"name":"WSMAN_PLUGIN_SHELL","features":[1,194]},{"name":"WSMAN_PLUGIN_SHUTDOWN","features":[194]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IDLETIMEOUT_ELAPSED","features":[194]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IISHOST","features":[194]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SERVICE","features":[194]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SYSTEM","features":[194]},{"name":"WSMAN_PLUGIN_SIGNAL","features":[1,194]},{"name":"WSMAN_PLUGIN_STARTUP","features":[194]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_CRASH","features":[194]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_REBOOT","features":[194]},{"name":"WSMAN_PLUGIN_STARTUP_REQUEST_RECEIVED","features":[194]},{"name":"WSMAN_PROXY_INFO","features":[194]},{"name":"WSMAN_RECEIVE_DATA_RESULT","features":[194]},{"name":"WSMAN_RESPONSE_DATA","features":[194]},{"name":"WSMAN_SELECTOR_SET","features":[194]},{"name":"WSMAN_SENDER_DETAILS","features":[1,194]},{"name":"WSMAN_SESSION_HANDLE","features":[194]},{"name":"WSMAN_SHELL_ASYNC","features":[194]},{"name":"WSMAN_SHELL_COMPLETION_FUNCTION","features":[194]},{"name":"WSMAN_SHELL_DISCONNECT_INFO","features":[194]},{"name":"WSMAN_SHELL_HANDLE","features":[194]},{"name":"WSMAN_SHELL_NS","features":[194]},{"name":"WSMAN_SHELL_OPTION_NOPROFILE","features":[194]},{"name":"WSMAN_SHELL_STARTUP_INFO_V10","features":[194]},{"name":"WSMAN_SHELL_STARTUP_INFO_V11","features":[194]},{"name":"WSMAN_STREAM_ID_SET","features":[194]},{"name":"WSMAN_STREAM_ID_STDERR","features":[194]},{"name":"WSMAN_STREAM_ID_STDIN","features":[194]},{"name":"WSMAN_STREAM_ID_STDOUT","features":[194]},{"name":"WSMAN_USERNAME_PASSWORD_CREDS","features":[194]},{"name":"WSMan","features":[194]},{"name":"WSManAuthenticationFlags","features":[194]},{"name":"WSManCallbackFlags","features":[194]},{"name":"WSManCloseCommand","features":[194]},{"name":"WSManCloseOperation","features":[194]},{"name":"WSManCloseSession","features":[194]},{"name":"WSManCloseShell","features":[194]},{"name":"WSManConnectShell","features":[1,194]},{"name":"WSManConnectShellCommand","features":[1,194]},{"name":"WSManCreateSession","features":[194]},{"name":"WSManCreateShell","features":[1,194]},{"name":"WSManCreateShellEx","features":[1,194]},{"name":"WSManDataType","features":[194]},{"name":"WSManDeinitialize","features":[194]},{"name":"WSManDisconnectShell","features":[194]},{"name":"WSManEnumFlags","features":[194]},{"name":"WSManFlagAllowNegotiateImplicitCredentials","features":[194]},{"name":"WSManFlagAssociatedInstance","features":[194]},{"name":"WSManFlagAssociationInstance","features":[194]},{"name":"WSManFlagCredUsernamePassword","features":[194]},{"name":"WSManFlagEnableSPNServerPort","features":[194]},{"name":"WSManFlagHierarchyDeep","features":[194]},{"name":"WSManFlagHierarchyDeepBasePropsOnly","features":[194]},{"name":"WSManFlagHierarchyShallow","features":[194]},{"name":"WSManFlagNoEncryption","features":[194]},{"name":"WSManFlagNonXmlText","features":[194]},{"name":"WSManFlagProxyAuthenticationUseBasic","features":[194]},{"name":"WSManFlagProxyAuthenticationUseDigest","features":[194]},{"name":"WSManFlagProxyAuthenticationUseNegotiate","features":[194]},{"name":"WSManFlagReturnEPR","features":[194]},{"name":"WSManFlagReturnObject","features":[194]},{"name":"WSManFlagReturnObjectAndEPR","features":[194]},{"name":"WSManFlagSkipCACheck","features":[194]},{"name":"WSManFlagSkipCNCheck","features":[194]},{"name":"WSManFlagSkipRevocationCheck","features":[194]},{"name":"WSManFlagUTF16","features":[194]},{"name":"WSManFlagUTF8","features":[194]},{"name":"WSManFlagUseBasic","features":[194]},{"name":"WSManFlagUseClientCertificate","features":[194]},{"name":"WSManFlagUseCredSsp","features":[194]},{"name":"WSManFlagUseDigest","features":[194]},{"name":"WSManFlagUseKerberos","features":[194]},{"name":"WSManFlagUseNegotiate","features":[194]},{"name":"WSManFlagUseNoAuthentication","features":[194]},{"name":"WSManFlagUseSsl","features":[194]},{"name":"WSManGetErrorMessage","features":[194]},{"name":"WSManGetSessionOptionAsDword","features":[194]},{"name":"WSManGetSessionOptionAsString","features":[194]},{"name":"WSManInitialize","features":[194]},{"name":"WSManInternal","features":[194]},{"name":"WSManPluginAuthzOperationComplete","features":[1,194]},{"name":"WSManPluginAuthzQueryQuotaComplete","features":[1,194]},{"name":"WSManPluginAuthzUserComplete","features":[1,194]},{"name":"WSManPluginFreeRequestDetails","features":[1,194]},{"name":"WSManPluginGetConfiguration","features":[194]},{"name":"WSManPluginGetOperationParameters","features":[1,194]},{"name":"WSManPluginOperationComplete","features":[1,194]},{"name":"WSManPluginReceiveResult","features":[1,194]},{"name":"WSManPluginReportCompletion","features":[194]},{"name":"WSManPluginReportContext","features":[1,194]},{"name":"WSManProxyAccessType","features":[194]},{"name":"WSManProxyAccessTypeFlags","features":[194]},{"name":"WSManProxyAuthenticationFlags","features":[194]},{"name":"WSManProxyAutoDetect","features":[194]},{"name":"WSManProxyIEConfig","features":[194]},{"name":"WSManProxyNoProxyServer","features":[194]},{"name":"WSManProxyWinHttpConfig","features":[194]},{"name":"WSManReceiveShellOutput","features":[194]},{"name":"WSManReconnectShell","features":[194]},{"name":"WSManReconnectShellCommand","features":[194]},{"name":"WSManRunShellCommand","features":[1,194]},{"name":"WSManRunShellCommandEx","features":[1,194]},{"name":"WSManSendShellInput","features":[1,194]},{"name":"WSManSessionFlags","features":[194]},{"name":"WSManSessionOption","features":[194]},{"name":"WSManSetSessionOption","features":[194]},{"name":"WSManShellFlag","features":[194]},{"name":"WSManSignalShell","features":[194]}],"599":[{"name":"CCH_RM_MAX_APP_NAME","features":[195]},{"name":"CCH_RM_MAX_SVC_NAME","features":[195]},{"name":"CCH_RM_SESSION_KEY","features":[195]},{"name":"RM_APP_STATUS","features":[195]},{"name":"RM_APP_TYPE","features":[195]},{"name":"RM_FILTER_ACTION","features":[195]},{"name":"RM_FILTER_INFO","features":[1,195]},{"name":"RM_FILTER_TRIGGER","features":[195]},{"name":"RM_INVALID_PROCESS","features":[195]},{"name":"RM_INVALID_TS_SESSION","features":[195]},{"name":"RM_PROCESS_INFO","features":[1,195]},{"name":"RM_REBOOT_REASON","features":[195]},{"name":"RM_SHUTDOWN_TYPE","features":[195]},{"name":"RM_UNIQUE_PROCESS","features":[1,195]},{"name":"RM_WRITE_STATUS_CALLBACK","features":[195]},{"name":"RmAddFilter","features":[1,195]},{"name":"RmCancelCurrentTask","features":[1,195]},{"name":"RmConsole","features":[195]},{"name":"RmCritical","features":[195]},{"name":"RmEndSession","features":[1,195]},{"name":"RmExplorer","features":[195]},{"name":"RmFilterTriggerFile","features":[195]},{"name":"RmFilterTriggerInvalid","features":[195]},{"name":"RmFilterTriggerProcess","features":[195]},{"name":"RmFilterTriggerService","features":[195]},{"name":"RmForceShutdown","features":[195]},{"name":"RmGetFilterList","features":[1,195]},{"name":"RmGetList","features":[1,195]},{"name":"RmInvalidFilterAction","features":[195]},{"name":"RmJoinSession","features":[1,195]},{"name":"RmMainWindow","features":[195]},{"name":"RmNoRestart","features":[195]},{"name":"RmNoShutdown","features":[195]},{"name":"RmOtherWindow","features":[195]},{"name":"RmRebootReasonCriticalProcess","features":[195]},{"name":"RmRebootReasonCriticalService","features":[195]},{"name":"RmRebootReasonDetectedSelf","features":[195]},{"name":"RmRebootReasonNone","features":[195]},{"name":"RmRebootReasonPermissionDenied","features":[195]},{"name":"RmRebootReasonSessionMismatch","features":[195]},{"name":"RmRegisterResources","features":[1,195]},{"name":"RmRemoveFilter","features":[1,195]},{"name":"RmRestart","features":[1,195]},{"name":"RmService","features":[195]},{"name":"RmShutdown","features":[1,195]},{"name":"RmShutdownOnlyRegistered","features":[195]},{"name":"RmStartSession","features":[1,195]},{"name":"RmStatusErrorOnRestart","features":[195]},{"name":"RmStatusErrorOnStop","features":[195]},{"name":"RmStatusRestartMasked","features":[195]},{"name":"RmStatusRestarted","features":[195]},{"name":"RmStatusRunning","features":[195]},{"name":"RmStatusShutdownMasked","features":[195]},{"name":"RmStatusStopped","features":[195]},{"name":"RmStatusStoppedOther","features":[195]},{"name":"RmStatusUnknown","features":[195]},{"name":"RmUnknownApp","features":[195]}],"600":[{"name":"ACCESSIBILITY_SETTING","features":[196]},{"name":"APPLICATION_INSTALL","features":[196]},{"name":"APPLICATION_RUN","features":[196]},{"name":"APPLICATION_UNINSTALL","features":[196]},{"name":"BACKUP","features":[196]},{"name":"BACKUP_RECOVERY","features":[196]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE","features":[196]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE_NORP","features":[196]},{"name":"BEGIN_SYSTEM_CHANGE","features":[196]},{"name":"CANCELLED_OPERATION","features":[196]},{"name":"CHECKPOINT","features":[196]},{"name":"CRITICAL_UPDATE","features":[196]},{"name":"DESKTOP_SETTING","features":[196]},{"name":"DEVICE_DRIVER_INSTALL","features":[196]},{"name":"END_NESTED_SYSTEM_CHANGE","features":[196]},{"name":"END_SYSTEM_CHANGE","features":[196]},{"name":"FIRSTRUN","features":[196]},{"name":"MANUAL_CHECKPOINT","features":[196]},{"name":"MAX_DESC","features":[196]},{"name":"MAX_DESC_W","features":[196]},{"name":"MAX_EVENT","features":[196]},{"name":"MAX_RPT","features":[196]},{"name":"MIN_EVENT","features":[196]},{"name":"MIN_RPT","features":[196]},{"name":"MODIFY_SETTINGS","features":[196]},{"name":"OE_SETTING","features":[196]},{"name":"RESTORE","features":[196]},{"name":"RESTOREPOINTINFOA","features":[196]},{"name":"RESTOREPOINTINFOEX","features":[1,196]},{"name":"RESTOREPOINTINFOW","features":[196]},{"name":"RESTOREPOINTINFO_EVENT_TYPE","features":[196]},{"name":"RESTOREPOINTINFO_TYPE","features":[196]},{"name":"SRRemoveRestorePoint","features":[196]},{"name":"SRSetRestorePointA","features":[1,196]},{"name":"SRSetRestorePointW","features":[1,196]},{"name":"STATEMGRSTATUS","features":[1,196]},{"name":"WINDOWS_BOOT","features":[196]},{"name":"WINDOWS_SHUTDOWN","features":[196]},{"name":"WINDOWS_UPDATE","features":[196]}],"601":[{"name":"ARRAY_INFO","features":[19]},{"name":"BinaryParam","features":[19]},{"name":"CLIENT_CALL_RETURN","features":[19]},{"name":"COMM_FAULT_OFFSETS","features":[19]},{"name":"CS_TAG_GETTING_ROUTINE","features":[19]},{"name":"CS_TYPE_FROM_NETCS_ROUTINE","features":[19]},{"name":"CS_TYPE_LOCAL_SIZE_ROUTINE","features":[19]},{"name":"CS_TYPE_NET_SIZE_ROUTINE","features":[19]},{"name":"CS_TYPE_TO_NETCS_ROUTINE","features":[19]},{"name":"DCE_C_ERROR_STRING_LEN","features":[19]},{"name":"DceErrorInqTextA","features":[19]},{"name":"DceErrorInqTextW","features":[19]},{"name":"EEInfoGCCOM","features":[19]},{"name":"EEInfoGCFRS","features":[19]},{"name":"EEInfoNextRecordsMissing","features":[19]},{"name":"EEInfoPreviousRecordsMissing","features":[19]},{"name":"EEInfoUseFileTime","features":[19]},{"name":"EPT_S_CANT_CREATE","features":[19]},{"name":"EPT_S_CANT_PERFORM_OP","features":[19]},{"name":"EPT_S_INVALID_ENTRY","features":[19]},{"name":"EPT_S_NOT_REGISTERED","features":[19]},{"name":"EXPR_EVAL","features":[19]},{"name":"EXPR_TOKEN","features":[19]},{"name":"ExtendedErrorParamTypes","features":[19]},{"name":"FC_EXPR_CONST32","features":[19]},{"name":"FC_EXPR_CONST64","features":[19]},{"name":"FC_EXPR_END","features":[19]},{"name":"FC_EXPR_ILLEGAL","features":[19]},{"name":"FC_EXPR_NOOP","features":[19]},{"name":"FC_EXPR_OPER","features":[19]},{"name":"FC_EXPR_START","features":[19]},{"name":"FC_EXPR_VAR","features":[19]},{"name":"FULL_PTR_XLAT_TABLES","features":[19]},{"name":"GENERIC_BINDING_INFO","features":[19]},{"name":"GENERIC_BINDING_ROUTINE","features":[19]},{"name":"GENERIC_BINDING_ROUTINE_PAIR","features":[19]},{"name":"GENERIC_UNBIND_ROUTINE","features":[19]},{"name":"GROUP_NAME_SYNTAX","features":[19]},{"name":"IDL_CS_CONVERT","features":[19]},{"name":"IDL_CS_IN_PLACE_CONVERT","features":[19]},{"name":"IDL_CS_NEW_BUFFER_CONVERT","features":[19]},{"name":"IDL_CS_NO_CONVERT","features":[19]},{"name":"INVALID_FRAGMENT_ID","features":[19]},{"name":"IUnknown_AddRef_Proxy","features":[19]},{"name":"IUnknown_QueryInterface_Proxy","features":[19]},{"name":"IUnknown_Release_Proxy","features":[19]},{"name":"I_RpcAllocate","features":[19]},{"name":"I_RpcAsyncAbortCall","features":[1,6,19]},{"name":"I_RpcAsyncSetHandle","features":[1,6,19]},{"name":"I_RpcBindingCopy","features":[19]},{"name":"I_RpcBindingCreateNP","features":[19]},{"name":"I_RpcBindingHandleToAsyncHandle","features":[19]},{"name":"I_RpcBindingInqClientTokenAttributes","features":[1,19]},{"name":"I_RpcBindingInqDynamicEndpointA","features":[19]},{"name":"I_RpcBindingInqDynamicEndpointW","features":[19]},{"name":"I_RpcBindingInqLocalClientPID","features":[19]},{"name":"I_RpcBindingInqMarshalledTargetInfo","features":[19]},{"name":"I_RpcBindingInqSecurityContext","features":[19]},{"name":"I_RpcBindingInqSecurityContextKeyInfo","features":[19]},{"name":"I_RpcBindingInqTransportType","features":[19]},{"name":"I_RpcBindingInqWireIdForSnego","features":[19]},{"name":"I_RpcBindingIsClientLocal","features":[19]},{"name":"I_RpcBindingIsServerLocal","features":[19]},{"name":"I_RpcBindingSetPrivateOption","features":[19]},{"name":"I_RpcBindingToStaticStringBindingW","features":[19]},{"name":"I_RpcClearMutex","features":[19]},{"name":"I_RpcDeleteMutex","features":[19]},{"name":"I_RpcExceptionFilter","features":[19]},{"name":"I_RpcFree","features":[19]},{"name":"I_RpcFreeBuffer","features":[19]},{"name":"I_RpcFreeCalloutStateFn","features":[19]},{"name":"I_RpcFreePipeBuffer","features":[19]},{"name":"I_RpcGetBuffer","features":[19]},{"name":"I_RpcGetBufferWithObject","features":[19]},{"name":"I_RpcGetCurrentCallHandle","features":[19]},{"name":"I_RpcGetDefaultSD","features":[19]},{"name":"I_RpcGetExtendedError","features":[19]},{"name":"I_RpcIfInqTransferSyntaxes","features":[19]},{"name":"I_RpcMapWin32Status","features":[19]},{"name":"I_RpcMgmtEnableDedicatedThreadPool","features":[19]},{"name":"I_RpcNegotiateTransferSyntax","features":[19]},{"name":"I_RpcNsBindingSetEntryNameA","features":[19]},{"name":"I_RpcNsBindingSetEntryNameW","features":[19]},{"name":"I_RpcNsGetBuffer","features":[19]},{"name":"I_RpcNsInterfaceExported","features":[19]},{"name":"I_RpcNsInterfaceUnexported","features":[19]},{"name":"I_RpcNsRaiseException","features":[19]},{"name":"I_RpcNsSendReceive","features":[19]},{"name":"I_RpcOpenClientProcess","features":[19]},{"name":"I_RpcPauseExecution","features":[19]},{"name":"I_RpcPerformCalloutFn","features":[19]},{"name":"I_RpcProxyCallbackInterface","features":[19]},{"name":"I_RpcProxyFilterIfFn","features":[19]},{"name":"I_RpcProxyGetClientAddressFn","features":[19]},{"name":"I_RpcProxyGetClientSessionAndResourceUUID","features":[19]},{"name":"I_RpcProxyGetConnectionTimeoutFn","features":[19]},{"name":"I_RpcProxyIsValidMachineFn","features":[19]},{"name":"I_RpcProxyUpdatePerfCounterBackendServerFn","features":[19]},{"name":"I_RpcProxyUpdatePerfCounterFn","features":[19]},{"name":"I_RpcReBindBuffer","features":[19]},{"name":"I_RpcReallocPipeBuffer","features":[19]},{"name":"I_RpcReceive","features":[19]},{"name":"I_RpcRecordCalloutFailure","features":[19]},{"name":"I_RpcRequestMutex","features":[19]},{"name":"I_RpcSend","features":[19]},{"name":"I_RpcSendReceive","features":[19]},{"name":"I_RpcServerCheckClientRestriction","features":[19]},{"name":"I_RpcServerDisableExceptionFilter","features":[19]},{"name":"I_RpcServerGetAssociationID","features":[19]},{"name":"I_RpcServerInqAddressChangeFn","features":[19]},{"name":"I_RpcServerInqLocalConnAddress","features":[19]},{"name":"I_RpcServerInqRemoteConnAddress","features":[19]},{"name":"I_RpcServerInqTransportType","features":[19]},{"name":"I_RpcServerRegisterForwardFunction","features":[19]},{"name":"I_RpcServerSetAddressChangeFn","features":[19]},{"name":"I_RpcServerStartService","features":[19]},{"name":"I_RpcServerSubscribeForDisconnectNotification","features":[19]},{"name":"I_RpcServerSubscribeForDisconnectNotification2","features":[19]},{"name":"I_RpcServerUnsubscribeForDisconnectNotification","features":[19]},{"name":"I_RpcServerUseProtseq2A","features":[19]},{"name":"I_RpcServerUseProtseq2W","features":[19]},{"name":"I_RpcServerUseProtseqEp2A","features":[19]},{"name":"I_RpcServerUseProtseqEp2W","features":[19]},{"name":"I_RpcSessionStrictContextHandle","features":[19]},{"name":"I_RpcSsDontSerializeContext","features":[19]},{"name":"I_RpcSystemHandleTypeSpecificWork","features":[19]},{"name":"I_RpcTurnOnEEInfoPropagation","features":[19]},{"name":"I_UuidCreate","features":[19]},{"name":"LRPC_SYSTEM_HANDLE_MARSHAL_DIRECTION","features":[19]},{"name":"MALLOC_FREE_STRUCT","features":[19]},{"name":"MES_DECODE","features":[19]},{"name":"MES_DYNAMIC_BUFFER_HANDLE","features":[19]},{"name":"MES_ENCODE","features":[19]},{"name":"MES_ENCODE_NDR64","features":[19]},{"name":"MES_FIXED_BUFFER_HANDLE","features":[19]},{"name":"MES_INCREMENTAL_HANDLE","features":[19]},{"name":"MIDL_ES_ALLOC","features":[19]},{"name":"MIDL_ES_CODE","features":[19]},{"name":"MIDL_ES_HANDLE_STYLE","features":[19]},{"name":"MIDL_ES_READ","features":[19]},{"name":"MIDL_ES_WRITE","features":[19]},{"name":"MIDL_FORMAT_STRING","features":[19]},{"name":"MIDL_INTERCEPTION_INFO","features":[19]},{"name":"MIDL_INTERFACE_METHOD_PROPERTIES","features":[19]},{"name":"MIDL_METHOD_PROPERTY","features":[19]},{"name":"MIDL_METHOD_PROPERTY_MAP","features":[19]},{"name":"MIDL_SERVER_INFO","features":[19]},{"name":"MIDL_STUBLESS_PROXY_INFO","features":[19]},{"name":"MIDL_STUB_DESC","features":[19]},{"name":"MIDL_STUB_MESSAGE","features":[19]},{"name":"MIDL_SYNTAX_INFO","features":[19]},{"name":"MIDL_TYPE_PICKLING_INFO","features":[19]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO","features":[19]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO_CURRENT_VERSION","features":[19]},{"name":"MarshalDirectionMarshal","features":[19]},{"name":"MarshalDirectionUnmarshal","features":[19]},{"name":"MaxNumberOfEEInfoParams","features":[19]},{"name":"MesBufferHandleReset","features":[19]},{"name":"MesDecodeBufferHandleCreate","features":[19]},{"name":"MesDecodeIncrementalHandleCreate","features":[19]},{"name":"MesEncodeDynBufferHandleCreate","features":[19]},{"name":"MesEncodeFixedBufferHandleCreate","features":[19]},{"name":"MesEncodeIncrementalHandleCreate","features":[19]},{"name":"MesHandleFree","features":[19]},{"name":"MesIncrementalHandleReset","features":[19]},{"name":"MesInqProcEncodingId","features":[19]},{"name":"MidlInterceptionInfoVersionOne","features":[19]},{"name":"MidlWinrtTypeSerializationInfoVersionOne","features":[19]},{"name":"NDR64_ARRAY_ELEMENT_INFO","features":[19]},{"name":"NDR64_ARRAY_FLAGS","features":[19]},{"name":"NDR64_BINDINGS","features":[19]},{"name":"NDR64_BIND_AND_NOTIFY_EXTENSION","features":[19]},{"name":"NDR64_BIND_CONTEXT","features":[19]},{"name":"NDR64_BIND_GENERIC","features":[19]},{"name":"NDR64_BIND_PRIMITIVE","features":[19]},{"name":"NDR64_BOGUS_ARRAY_HEADER_FORMAT","features":[19]},{"name":"NDR64_BOGUS_STRUCTURE_HEADER_FORMAT","features":[19]},{"name":"NDR64_BUFFER_ALIGN_FORMAT","features":[19]},{"name":"NDR64_CONFORMANT_STRING_FORMAT","features":[19]},{"name":"NDR64_CONF_ARRAY_HEADER_FORMAT","features":[19]},{"name":"NDR64_CONF_BOGUS_STRUCTURE_HEADER_FORMAT","features":[19]},{"name":"NDR64_CONF_STRUCTURE_HEADER_FORMAT","features":[19]},{"name":"NDR64_CONF_VAR_ARRAY_HEADER_FORMAT","features":[19]},{"name":"NDR64_CONF_VAR_BOGUS_ARRAY_HEADER_FORMAT","features":[19]},{"name":"NDR64_CONSTANT_IID_FORMAT","features":[19]},{"name":"NDR64_CONTEXT_HANDLE_FLAGS","features":[19]},{"name":"NDR64_CONTEXT_HANDLE_FORMAT","features":[19]},{"name":"NDR64_EMBEDDED_COMPLEX_FORMAT","features":[19]},{"name":"NDR64_ENCAPSULATED_UNION","features":[19]},{"name":"NDR64_EXPR_CONST32","features":[19]},{"name":"NDR64_EXPR_CONST64","features":[19]},{"name":"NDR64_EXPR_NOOP","features":[19]},{"name":"NDR64_EXPR_OPERATOR","features":[19]},{"name":"NDR64_EXPR_VAR","features":[19]},{"name":"NDR64_FC_AUTO_HANDLE","features":[19]},{"name":"NDR64_FC_BIND_GENERIC","features":[19]},{"name":"NDR64_FC_BIND_PRIMITIVE","features":[19]},{"name":"NDR64_FC_CALLBACK_HANDLE","features":[19]},{"name":"NDR64_FC_EXPLICIT_HANDLE","features":[19]},{"name":"NDR64_FC_NO_HANDLE","features":[19]},{"name":"NDR64_FIXED_REPEAT_FORMAT","features":[19]},{"name":"NDR64_FIX_ARRAY_HEADER_FORMAT","features":[19]},{"name":"NDR64_IID_FLAGS","features":[19]},{"name":"NDR64_IID_FORMAT","features":[19]},{"name":"NDR64_MEMPAD_FORMAT","features":[19]},{"name":"NDR64_NON_CONFORMANT_STRING_FORMAT","features":[19]},{"name":"NDR64_NON_ENCAPSULATED_UNION","features":[19]},{"name":"NDR64_NO_REPEAT_FORMAT","features":[19]},{"name":"NDR64_PARAM_FLAGS","features":[19]},{"name":"NDR64_PARAM_FORMAT","features":[19]},{"name":"NDR64_PIPE_FLAGS","features":[19]},{"name":"NDR64_PIPE_FORMAT","features":[19]},{"name":"NDR64_POINTER_FORMAT","features":[19]},{"name":"NDR64_POINTER_INSTANCE_HEADER_FORMAT","features":[19]},{"name":"NDR64_POINTER_REPEAT_FLAGS","features":[19]},{"name":"NDR64_PROC_FLAGS","features":[19]},{"name":"NDR64_PROC_FORMAT","features":[19]},{"name":"NDR64_RANGED_STRING_FORMAT","features":[19]},{"name":"NDR64_RANGE_FORMAT","features":[19]},{"name":"NDR64_RANGE_PIPE_FORMAT","features":[19]},{"name":"NDR64_REPEAT_FORMAT","features":[19]},{"name":"NDR64_RPC_FLAGS","features":[19]},{"name":"NDR64_SIMPLE_MEMBER_FORMAT","features":[19]},{"name":"NDR64_SIMPLE_REGION_FORMAT","features":[19]},{"name":"NDR64_SIZED_CONFORMANT_STRING_FORMAT","features":[19]},{"name":"NDR64_STRING_FLAGS","features":[19]},{"name":"NDR64_STRING_HEADER_FORMAT","features":[19]},{"name":"NDR64_STRUCTURE_FLAGS","features":[19]},{"name":"NDR64_STRUCTURE_HEADER_FORMAT","features":[19]},{"name":"NDR64_SYSTEM_HANDLE_FORMAT","features":[19]},{"name":"NDR64_TRANSMIT_AS_FLAGS","features":[19]},{"name":"NDR64_TRANSMIT_AS_FORMAT","features":[19]},{"name":"NDR64_TYPE_STRICT_CONTEXT_HANDLE","features":[19]},{"name":"NDR64_UNION_ARM","features":[19]},{"name":"NDR64_UNION_ARM_SELECTOR","features":[19]},{"name":"NDR64_USER_MARSHAL_FLAGS","features":[19]},{"name":"NDR64_USER_MARSHAL_FORMAT","features":[19]},{"name":"NDR64_VAR_ARRAY_HEADER_FORMAT","features":[19]},{"name":"NDRCContextBinding","features":[19]},{"name":"NDRCContextMarshall","features":[19]},{"name":"NDRCContextUnmarshall","features":[19]},{"name":"NDRSContextMarshall","features":[19]},{"name":"NDRSContextMarshall2","features":[19]},{"name":"NDRSContextMarshallEx","features":[19]},{"name":"NDRSContextUnmarshall","features":[19]},{"name":"NDRSContextUnmarshall2","features":[19]},{"name":"NDRSContextUnmarshallEx","features":[19]},{"name":"NDR_ALLOC_ALL_NODES_CONTEXT","features":[19]},{"name":"NDR_CS_ROUTINES","features":[19]},{"name":"NDR_CS_SIZE_CONVERT_ROUTINES","features":[19]},{"name":"NDR_CUSTOM_OR_DEFAULT_ALLOCATOR","features":[19]},{"name":"NDR_DEFAULT_ALLOCATOR","features":[19]},{"name":"NDR_EXPR_DESC","features":[19]},{"name":"NDR_NOTIFY2_ROUTINE","features":[19]},{"name":"NDR_NOTIFY_ROUTINE","features":[19]},{"name":"NDR_POINTER_QUEUE_STATE","features":[19]},{"name":"NDR_RUNDOWN","features":[19]},{"name":"NDR_SCONTEXT","features":[19]},{"name":"NDR_USER_MARSHAL_INFO","features":[19]},{"name":"NDR_USER_MARSHAL_INFO_LEVEL1","features":[19]},{"name":"NT351_INTERFACE_SIZE","features":[19]},{"name":"Ndr64AsyncClientCall","features":[19]},{"name":"Ndr64AsyncServerCall64","features":[19]},{"name":"Ndr64AsyncServerCallAll","features":[19]},{"name":"Ndr64DcomAsyncClientCall","features":[19]},{"name":"Ndr64DcomAsyncStubCall","features":[19]},{"name":"NdrAllocate","features":[19]},{"name":"NdrAsyncClientCall","features":[19]},{"name":"NdrAsyncServerCall","features":[19]},{"name":"NdrByteCountPointerBufferSize","features":[19]},{"name":"NdrByteCountPointerFree","features":[19]},{"name":"NdrByteCountPointerMarshall","features":[19]},{"name":"NdrByteCountPointerUnmarshall","features":[19]},{"name":"NdrClearOutParameters","features":[19]},{"name":"NdrClientCall2","features":[19]},{"name":"NdrClientCall3","features":[19]},{"name":"NdrClientContextMarshall","features":[19]},{"name":"NdrClientContextUnmarshall","features":[19]},{"name":"NdrClientInitialize","features":[19]},{"name":"NdrClientInitializeNew","features":[19]},{"name":"NdrComplexArrayBufferSize","features":[19]},{"name":"NdrComplexArrayFree","features":[19]},{"name":"NdrComplexArrayMarshall","features":[19]},{"name":"NdrComplexArrayMemorySize","features":[19]},{"name":"NdrComplexArrayUnmarshall","features":[19]},{"name":"NdrComplexStructBufferSize","features":[19]},{"name":"NdrComplexStructFree","features":[19]},{"name":"NdrComplexStructMarshall","features":[19]},{"name":"NdrComplexStructMemorySize","features":[19]},{"name":"NdrComplexStructUnmarshall","features":[19]},{"name":"NdrConformantArrayBufferSize","features":[19]},{"name":"NdrConformantArrayFree","features":[19]},{"name":"NdrConformantArrayMarshall","features":[19]},{"name":"NdrConformantArrayMemorySize","features":[19]},{"name":"NdrConformantArrayUnmarshall","features":[19]},{"name":"NdrConformantStringBufferSize","features":[19]},{"name":"NdrConformantStringMarshall","features":[19]},{"name":"NdrConformantStringMemorySize","features":[19]},{"name":"NdrConformantStringUnmarshall","features":[19]},{"name":"NdrConformantStructBufferSize","features":[19]},{"name":"NdrConformantStructFree","features":[19]},{"name":"NdrConformantStructMarshall","features":[19]},{"name":"NdrConformantStructMemorySize","features":[19]},{"name":"NdrConformantStructUnmarshall","features":[19]},{"name":"NdrConformantVaryingArrayBufferSize","features":[19]},{"name":"NdrConformantVaryingArrayFree","features":[19]},{"name":"NdrConformantVaryingArrayMarshall","features":[19]},{"name":"NdrConformantVaryingArrayMemorySize","features":[19]},{"name":"NdrConformantVaryingArrayUnmarshall","features":[19]},{"name":"NdrConformantVaryingStructBufferSize","features":[19]},{"name":"NdrConformantVaryingStructFree","features":[19]},{"name":"NdrConformantVaryingStructMarshall","features":[19]},{"name":"NdrConformantVaryingStructMemorySize","features":[19]},{"name":"NdrConformantVaryingStructUnmarshall","features":[19]},{"name":"NdrContextHandleInitialize","features":[19]},{"name":"NdrContextHandleSize","features":[19]},{"name":"NdrConvert","features":[19]},{"name":"NdrConvert2","features":[19]},{"name":"NdrCorrelationFree","features":[19]},{"name":"NdrCorrelationInitialize","features":[19]},{"name":"NdrCorrelationPass","features":[19]},{"name":"NdrCreateServerInterfaceFromStub","features":[19]},{"name":"NdrDcomAsyncClientCall","features":[19]},{"name":"NdrDcomAsyncStubCall","features":[19]},{"name":"NdrEncapsulatedUnionBufferSize","features":[19]},{"name":"NdrEncapsulatedUnionFree","features":[19]},{"name":"NdrEncapsulatedUnionMarshall","features":[19]},{"name":"NdrEncapsulatedUnionMemorySize","features":[19]},{"name":"NdrEncapsulatedUnionUnmarshall","features":[19]},{"name":"NdrFixedArrayBufferSize","features":[19]},{"name":"NdrFixedArrayFree","features":[19]},{"name":"NdrFixedArrayMarshall","features":[19]},{"name":"NdrFixedArrayMemorySize","features":[19]},{"name":"NdrFixedArrayUnmarshall","features":[19]},{"name":"NdrFreeBuffer","features":[19]},{"name":"NdrFullPointerXlatFree","features":[19]},{"name":"NdrFullPointerXlatInit","features":[19]},{"name":"NdrGetBuffer","features":[19]},{"name":"NdrGetDcomProtocolVersion","features":[19]},{"name":"NdrGetUserMarshalInfo","features":[19]},{"name":"NdrInterfacePointerBufferSize","features":[19]},{"name":"NdrInterfacePointerFree","features":[19]},{"name":"NdrInterfacePointerMarshall","features":[19]},{"name":"NdrInterfacePointerMemorySize","features":[19]},{"name":"NdrInterfacePointerUnmarshall","features":[19]},{"name":"NdrMapCommAndFaultStatus","features":[19]},{"name":"NdrMesProcEncodeDecode","features":[19]},{"name":"NdrMesProcEncodeDecode2","features":[19]},{"name":"NdrMesProcEncodeDecode3","features":[19]},{"name":"NdrMesSimpleTypeAlignSize","features":[19]},{"name":"NdrMesSimpleTypeAlignSizeAll","features":[19]},{"name":"NdrMesSimpleTypeDecode","features":[19]},{"name":"NdrMesSimpleTypeDecodeAll","features":[19]},{"name":"NdrMesSimpleTypeEncode","features":[19]},{"name":"NdrMesSimpleTypeEncodeAll","features":[19]},{"name":"NdrMesTypeAlignSize","features":[19]},{"name":"NdrMesTypeAlignSize2","features":[19]},{"name":"NdrMesTypeAlignSize3","features":[19]},{"name":"NdrMesTypeDecode","features":[19]},{"name":"NdrMesTypeDecode2","features":[19]},{"name":"NdrMesTypeDecode3","features":[19]},{"name":"NdrMesTypeEncode","features":[19]},{"name":"NdrMesTypeEncode2","features":[19]},{"name":"NdrMesTypeEncode3","features":[19]},{"name":"NdrMesTypeFree2","features":[19]},{"name":"NdrMesTypeFree3","features":[19]},{"name":"NdrNonConformantStringBufferSize","features":[19]},{"name":"NdrNonConformantStringMarshall","features":[19]},{"name":"NdrNonConformantStringMemorySize","features":[19]},{"name":"NdrNonConformantStringUnmarshall","features":[19]},{"name":"NdrNonEncapsulatedUnionBufferSize","features":[19]},{"name":"NdrNonEncapsulatedUnionFree","features":[19]},{"name":"NdrNonEncapsulatedUnionMarshall","features":[19]},{"name":"NdrNonEncapsulatedUnionMemorySize","features":[19]},{"name":"NdrNonEncapsulatedUnionUnmarshall","features":[19]},{"name":"NdrNsGetBuffer","features":[19]},{"name":"NdrNsSendReceive","features":[19]},{"name":"NdrOleAllocate","features":[19]},{"name":"NdrOleFree","features":[19]},{"name":"NdrPartialIgnoreClientBufferSize","features":[19]},{"name":"NdrPartialIgnoreClientMarshall","features":[19]},{"name":"NdrPartialIgnoreServerInitialize","features":[19]},{"name":"NdrPartialIgnoreServerUnmarshall","features":[19]},{"name":"NdrPointerBufferSize","features":[19]},{"name":"NdrPointerFree","features":[19]},{"name":"NdrPointerMarshall","features":[19]},{"name":"NdrPointerMemorySize","features":[19]},{"name":"NdrPointerUnmarshall","features":[19]},{"name":"NdrRangeUnmarshall","features":[19]},{"name":"NdrRpcSmClientAllocate","features":[19]},{"name":"NdrRpcSmClientFree","features":[19]},{"name":"NdrRpcSmSetClientToOsf","features":[19]},{"name":"NdrRpcSsDefaultAllocate","features":[19]},{"name":"NdrRpcSsDefaultFree","features":[19]},{"name":"NdrRpcSsDisableAllocate","features":[19]},{"name":"NdrRpcSsEnableAllocate","features":[19]},{"name":"NdrSendReceive","features":[19]},{"name":"NdrServerCall2","features":[19]},{"name":"NdrServerCallAll","features":[19]},{"name":"NdrServerCallNdr64","features":[19]},{"name":"NdrServerContextMarshall","features":[19]},{"name":"NdrServerContextNewMarshall","features":[19]},{"name":"NdrServerContextNewUnmarshall","features":[19]},{"name":"NdrServerContextUnmarshall","features":[19]},{"name":"NdrServerInitialize","features":[19]},{"name":"NdrServerInitializeMarshall","features":[19]},{"name":"NdrServerInitializeNew","features":[19]},{"name":"NdrServerInitializePartial","features":[19]},{"name":"NdrServerInitializeUnmarshall","features":[19]},{"name":"NdrSimpleStructBufferSize","features":[19]},{"name":"NdrSimpleStructFree","features":[19]},{"name":"NdrSimpleStructMarshall","features":[19]},{"name":"NdrSimpleStructMemorySize","features":[19]},{"name":"NdrSimpleStructUnmarshall","features":[19]},{"name":"NdrSimpleTypeMarshall","features":[19]},{"name":"NdrSimpleTypeUnmarshall","features":[19]},{"name":"NdrStubCall2","features":[19]},{"name":"NdrStubCall3","features":[19]},{"name":"NdrUserMarshalBufferSize","features":[19]},{"name":"NdrUserMarshalFree","features":[19]},{"name":"NdrUserMarshalMarshall","features":[19]},{"name":"NdrUserMarshalMemorySize","features":[19]},{"name":"NdrUserMarshalSimpleTypeConvert","features":[19]},{"name":"NdrUserMarshalUnmarshall","features":[19]},{"name":"NdrVaryingArrayBufferSize","features":[19]},{"name":"NdrVaryingArrayFree","features":[19]},{"name":"NdrVaryingArrayMarshall","features":[19]},{"name":"NdrVaryingArrayMemorySize","features":[19]},{"name":"NdrVaryingArrayUnmarshall","features":[19]},{"name":"NdrXmitOrRepAsBufferSize","features":[19]},{"name":"NdrXmitOrRepAsFree","features":[19]},{"name":"NdrXmitOrRepAsMarshall","features":[19]},{"name":"NdrXmitOrRepAsMemorySize","features":[19]},{"name":"NdrXmitOrRepAsUnmarshall","features":[19]},{"name":"PFN_RPCNOTIFICATION_ROUTINE","features":[1,6,19]},{"name":"PFN_RPC_ALLOCATE","features":[19]},{"name":"PFN_RPC_FREE","features":[19]},{"name":"PNDR_ASYNC_MESSAGE","features":[19]},{"name":"PNDR_CORRELATION_INFO","features":[19]},{"name":"PROTOCOL_ADDRESS_CHANGE","features":[19]},{"name":"PROTOCOL_LOADED","features":[19]},{"name":"PROTOCOL_NOT_LOADED","features":[19]},{"name":"PROXY_CALCSIZE","features":[19]},{"name":"PROXY_GETBUFFER","features":[19]},{"name":"PROXY_MARSHAL","features":[19]},{"name":"PROXY_PHASE","features":[19]},{"name":"PROXY_SENDRECEIVE","features":[19]},{"name":"PROXY_UNMARSHAL","features":[19]},{"name":"PRPC_RUNDOWN","features":[19]},{"name":"RDR_CALLOUT_STATE","features":[19]},{"name":"RPCFLG_ACCESSIBILITY_BIT1","features":[19]},{"name":"RPCFLG_ACCESSIBILITY_BIT2","features":[19]},{"name":"RPCFLG_ACCESS_LOCAL","features":[19]},{"name":"RPCFLG_ASYNCHRONOUS","features":[19]},{"name":"RPCFLG_AUTO_COMPLETE","features":[19]},{"name":"RPCFLG_HAS_CALLBACK","features":[19]},{"name":"RPCFLG_HAS_GUARANTEE","features":[19]},{"name":"RPCFLG_HAS_MULTI_SYNTAXES","features":[19]},{"name":"RPCFLG_INPUT_SYNCHRONOUS","features":[19]},{"name":"RPCFLG_LOCAL_CALL","features":[19]},{"name":"RPCFLG_MESSAGE","features":[19]},{"name":"RPCFLG_NDR64_CONTAINS_ARM_LAYOUT","features":[19]},{"name":"RPCFLG_NON_NDR","features":[19]},{"name":"RPCFLG_SENDER_WAITING_FOR_REPLY","features":[19]},{"name":"RPCFLG_WINRT_REMOTE_ASYNC","features":[19]},{"name":"RPCHTTP_RS_ACCESS_1","features":[19]},{"name":"RPCHTTP_RS_ACCESS_2","features":[19]},{"name":"RPCHTTP_RS_INTERFACE","features":[19]},{"name":"RPCHTTP_RS_REDIRECT","features":[19]},{"name":"RPCHTTP_RS_SESSION","features":[19]},{"name":"RPCLT_PDU_FILTER_FUNC","features":[19]},{"name":"RPC_ADDRESS_CHANGE_FN","features":[19]},{"name":"RPC_ADDRESS_CHANGE_TYPE","features":[19]},{"name":"RPC_ASYNC_EVENT","features":[19]},{"name":"RPC_ASYNC_NOTIFICATION_INFO","features":[1,6,19]},{"name":"RPC_ASYNC_STATE","features":[1,6,19]},{"name":"RPC_AUTH_KEY_RETRIEVAL_FN","features":[19]},{"name":"RPC_BHO_DONTLINGER","features":[19]},{"name":"RPC_BHO_EXCLUSIVE_AND_GUARANTEED","features":[19]},{"name":"RPC_BHO_NONCAUSAL","features":[19]},{"name":"RPC_BHT_OBJECT_UUID_VALID","features":[19]},{"name":"RPC_BINDING_HANDLE_OPTIONS_FLAGS","features":[19]},{"name":"RPC_BINDING_HANDLE_OPTIONS_V1","features":[19]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_A","features":[41,19]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_W","features":[41,19]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_A","features":[19]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_W","features":[19]},{"name":"RPC_BINDING_VECTOR","features":[19]},{"name":"RPC_BLOCKING_FN","features":[19]},{"name":"RPC_BUFFER_ASYNC","features":[19]},{"name":"RPC_BUFFER_COMPLETE","features":[19]},{"name":"RPC_BUFFER_EXTRA","features":[19]},{"name":"RPC_BUFFER_NONOTIFY","features":[19]},{"name":"RPC_BUFFER_PARTIAL","features":[19]},{"name":"RPC_CALL_ATTRIBUTES_V1_A","features":[1,19]},{"name":"RPC_CALL_ATTRIBUTES_V1_W","features":[1,19]},{"name":"RPC_CALL_ATTRIBUTES_V2_A","features":[1,19]},{"name":"RPC_CALL_ATTRIBUTES_V2_W","features":[1,19]},{"name":"RPC_CALL_ATTRIBUTES_V3_A","features":[1,19]},{"name":"RPC_CALL_ATTRIBUTES_V3_W","features":[1,19]},{"name":"RPC_CALL_ATTRIBUTES_VERSION","features":[19]},{"name":"RPC_CALL_LOCAL_ADDRESS_V1","features":[19]},{"name":"RPC_CALL_STATUS_CANCELLED","features":[19]},{"name":"RPC_CALL_STATUS_DISCONNECTED","features":[19]},{"name":"RPC_CLIENT_ALLOC","features":[19]},{"name":"RPC_CLIENT_FREE","features":[19]},{"name":"RPC_CLIENT_INFORMATION1","features":[19]},{"name":"RPC_CLIENT_INTERFACE","features":[19]},{"name":"RPC_CONTEXT_HANDLE_DEFAULT_FLAGS","features":[19]},{"name":"RPC_CONTEXT_HANDLE_DONT_SERIALIZE","features":[19]},{"name":"RPC_CONTEXT_HANDLE_FLAGS","features":[19]},{"name":"RPC_CONTEXT_HANDLE_SERIALIZE","features":[19]},{"name":"RPC_C_AUTHN_CLOUD_AP","features":[19]},{"name":"RPC_C_AUTHN_DCE_PRIVATE","features":[19]},{"name":"RPC_C_AUTHN_DCE_PUBLIC","features":[19]},{"name":"RPC_C_AUTHN_DEC_PUBLIC","features":[19]},{"name":"RPC_C_AUTHN_DEFAULT","features":[19]},{"name":"RPC_C_AUTHN_DIGEST","features":[19]},{"name":"RPC_C_AUTHN_DPA","features":[19]},{"name":"RPC_C_AUTHN_GSS_KERBEROS","features":[19]},{"name":"RPC_C_AUTHN_GSS_NEGOTIATE","features":[19]},{"name":"RPC_C_AUTHN_GSS_SCHANNEL","features":[19]},{"name":"RPC_C_AUTHN_INFO_NONE","features":[19]},{"name":"RPC_C_AUTHN_INFO_TYPE","features":[19]},{"name":"RPC_C_AUTHN_INFO_TYPE_HTTP","features":[19]},{"name":"RPC_C_AUTHN_KERNEL","features":[19]},{"name":"RPC_C_AUTHN_LIVEXP_SSP","features":[19]},{"name":"RPC_C_AUTHN_LIVE_SSP","features":[19]},{"name":"RPC_C_AUTHN_MQ","features":[19]},{"name":"RPC_C_AUTHN_MSN","features":[19]},{"name":"RPC_C_AUTHN_MSONLINE","features":[19]},{"name":"RPC_C_AUTHN_NEGO_EXTENDER","features":[19]},{"name":"RPC_C_AUTHN_NONE","features":[19]},{"name":"RPC_C_AUTHN_PKU2U","features":[19]},{"name":"RPC_C_AUTHN_WINNT","features":[19]},{"name":"RPC_C_AUTHZ_DCE","features":[19]},{"name":"RPC_C_AUTHZ_DEFAULT","features":[19]},{"name":"RPC_C_AUTHZ_NAME","features":[19]},{"name":"RPC_C_AUTHZ_NONE","features":[19]},{"name":"RPC_C_BINDING_DEFAULT_TIMEOUT","features":[19]},{"name":"RPC_C_BINDING_INFINITE_TIMEOUT","features":[19]},{"name":"RPC_C_BINDING_MAX_TIMEOUT","features":[19]},{"name":"RPC_C_BINDING_MIN_TIMEOUT","features":[19]},{"name":"RPC_C_BIND_TO_ALL_NICS","features":[19]},{"name":"RPC_C_CANCEL_INFINITE_TIMEOUT","features":[19]},{"name":"RPC_C_DONT_FAIL","features":[19]},{"name":"RPC_C_EP_ALL_ELTS","features":[19]},{"name":"RPC_C_EP_MATCH_BY_BOTH","features":[19]},{"name":"RPC_C_EP_MATCH_BY_IF","features":[19]},{"name":"RPC_C_EP_MATCH_BY_OBJ","features":[19]},{"name":"RPC_C_FULL_CERT_CHAIN","features":[19]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_BASIC","features":[19]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_CERT","features":[19]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_DIGEST","features":[19]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NEGOTIATE","features":[19]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NTLM","features":[19]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_PASSPORT","features":[19]},{"name":"RPC_C_HTTP_AUTHN_TARGET","features":[19]},{"name":"RPC_C_HTTP_AUTHN_TARGET_PROXY","features":[19]},{"name":"RPC_C_HTTP_AUTHN_TARGET_SERVER","features":[19]},{"name":"RPC_C_HTTP_FLAGS","features":[19]},{"name":"RPC_C_HTTP_FLAG_ENABLE_CERT_REVOCATION_CHECK","features":[19]},{"name":"RPC_C_HTTP_FLAG_IGNORE_CERT_CN_INVALID","features":[19]},{"name":"RPC_C_HTTP_FLAG_USE_FIRST_AUTH_SCHEME","features":[19]},{"name":"RPC_C_HTTP_FLAG_USE_SSL","features":[19]},{"name":"RPC_C_LISTEN_MAX_CALLS_DEFAULT","features":[19]},{"name":"RPC_C_MGMT_INQ_IF_IDS","features":[19]},{"name":"RPC_C_MGMT_INQ_PRINC_NAME","features":[19]},{"name":"RPC_C_MGMT_INQ_STATS","features":[19]},{"name":"RPC_C_MGMT_IS_SERVER_LISTEN","features":[19]},{"name":"RPC_C_MGMT_STOP_SERVER_LISTEN","features":[19]},{"name":"RPC_C_MQ_AUTHN_LEVEL_NONE","features":[19]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_INTEGRITY","features":[19]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_PRIVACY","features":[19]},{"name":"RPC_C_MQ_CLEAR_ON_OPEN","features":[19]},{"name":"RPC_C_MQ_EXPRESS","features":[19]},{"name":"RPC_C_MQ_JOURNAL_ALWAYS","features":[19]},{"name":"RPC_C_MQ_JOURNAL_DEADLETTER","features":[19]},{"name":"RPC_C_MQ_JOURNAL_NONE","features":[19]},{"name":"RPC_C_MQ_PERMANENT","features":[19]},{"name":"RPC_C_MQ_RECOVERABLE","features":[19]},{"name":"RPC_C_MQ_TEMPORARY","features":[19]},{"name":"RPC_C_MQ_USE_EXISTING_SECURITY","features":[19]},{"name":"RPC_C_NOTIFY_ON_SEND_COMPLETE","features":[19]},{"name":"RPC_C_NS_DEFAULT_EXP_AGE","features":[19]},{"name":"RPC_C_NS_SYNTAX_DCE","features":[19]},{"name":"RPC_C_NS_SYNTAX_DEFAULT","features":[19]},{"name":"RPC_C_OPT_ASYNC_BLOCK","features":[19]},{"name":"RPC_C_OPT_BINDING_NONCAUSAL","features":[19]},{"name":"RPC_C_OPT_CALL_TIMEOUT","features":[19]},{"name":"RPC_C_OPT_COOKIE_AUTH","features":[19]},{"name":"RPC_C_OPT_COOKIE_AUTH_DESCRIPTOR","features":[19]},{"name":"RPC_C_OPT_DONT_LINGER","features":[19]},{"name":"RPC_C_OPT_MAX_OPTIONS","features":[19]},{"name":"RPC_C_OPT_MQ_ACKNOWLEDGE","features":[19]},{"name":"RPC_C_OPT_MQ_AUTHN_LEVEL","features":[19]},{"name":"RPC_C_OPT_MQ_AUTHN_SERVICE","features":[19]},{"name":"RPC_C_OPT_MQ_DELIVERY","features":[19]},{"name":"RPC_C_OPT_MQ_JOURNAL","features":[19]},{"name":"RPC_C_OPT_MQ_PRIORITY","features":[19]},{"name":"RPC_C_OPT_MQ_TIME_TO_BE_RECEIVED","features":[19]},{"name":"RPC_C_OPT_MQ_TIME_TO_REACH_QUEUE","features":[19]},{"name":"RPC_C_OPT_OPTIMIZE_TIME","features":[19]},{"name":"RPC_C_OPT_PRIVATE_BREAK_ON_SUSPEND","features":[19]},{"name":"RPC_C_OPT_PRIVATE_DO_NOT_DISTURB","features":[19]},{"name":"RPC_C_OPT_PRIVATE_SUPPRESS_WAKE","features":[19]},{"name":"RPC_C_OPT_RESOURCE_TYPE_UUID","features":[19]},{"name":"RPC_C_OPT_SECURITY_CALLBACK","features":[19]},{"name":"RPC_C_OPT_SESSION_ID","features":[19]},{"name":"RPC_C_OPT_TRANS_SEND_BUFFER_SIZE","features":[19]},{"name":"RPC_C_OPT_TRUST_PEER","features":[19]},{"name":"RPC_C_OPT_UNIQUE_BINDING","features":[19]},{"name":"RPC_C_PARM_BUFFER_LENGTH","features":[19]},{"name":"RPC_C_PARM_MAX_PACKET_LENGTH","features":[19]},{"name":"RPC_C_PROFILE_ALL_ELT","features":[19]},{"name":"RPC_C_PROFILE_ALL_ELTS","features":[19]},{"name":"RPC_C_PROFILE_DEFAULT_ELT","features":[19]},{"name":"RPC_C_PROFILE_MATCH_BY_BOTH","features":[19]},{"name":"RPC_C_PROFILE_MATCH_BY_IF","features":[19]},{"name":"RPC_C_PROFILE_MATCH_BY_MBR","features":[19]},{"name":"RPC_C_PROTSEQ_MAX_REQS_DEFAULT","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES_ANY_AUTHORITY","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES_DEFAULT","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES_IGNORE_DELEGATE_FAILURE","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES_LOCAL_MA_HINT","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES_MAKE_FULLSIC","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH","features":[19]},{"name":"RPC_C_QOS_CAPABILITIES_SCHANNEL_FULL_AUTH_IDENTITY","features":[19]},{"name":"RPC_C_QOS_IDENTITY","features":[19]},{"name":"RPC_C_QOS_IDENTITY_DYNAMIC","features":[19]},{"name":"RPC_C_QOS_IDENTITY_STATIC","features":[19]},{"name":"RPC_C_RPCHTTP_USE_LOAD_BALANCE","features":[19]},{"name":"RPC_C_SECURITY_QOS_VERSION","features":[19]},{"name":"RPC_C_SECURITY_QOS_VERSION_1","features":[19]},{"name":"RPC_C_SECURITY_QOS_VERSION_2","features":[19]},{"name":"RPC_C_SECURITY_QOS_VERSION_3","features":[19]},{"name":"RPC_C_SECURITY_QOS_VERSION_4","features":[19]},{"name":"RPC_C_SECURITY_QOS_VERSION_5","features":[19]},{"name":"RPC_C_STATS_CALLS_IN","features":[19]},{"name":"RPC_C_STATS_CALLS_OUT","features":[19]},{"name":"RPC_C_STATS_PKTS_IN","features":[19]},{"name":"RPC_C_STATS_PKTS_OUT","features":[19]},{"name":"RPC_C_TRY_ENFORCE_MAX_CALLS","features":[19]},{"name":"RPC_C_USE_INTERNET_PORT","features":[19]},{"name":"RPC_C_USE_INTRANET_PORT","features":[19]},{"name":"RPC_C_VERS_ALL","features":[19]},{"name":"RPC_C_VERS_COMPATIBLE","features":[19]},{"name":"RPC_C_VERS_EXACT","features":[19]},{"name":"RPC_C_VERS_MAJOR_ONLY","features":[19]},{"name":"RPC_C_VERS_UPTO","features":[19]},{"name":"RPC_DISPATCH_FUNCTION","features":[19]},{"name":"RPC_DISPATCH_TABLE","features":[19]},{"name":"RPC_EEINFO_VERSION","features":[19]},{"name":"RPC_EE_INFO_PARAM","features":[19]},{"name":"RPC_ENDPOINT_TEMPLATEA","features":[19]},{"name":"RPC_ENDPOINT_TEMPLATEW","features":[19]},{"name":"RPC_ERROR_ENUM_HANDLE","features":[19]},{"name":"RPC_EXTENDED_ERROR_INFO","features":[1,19]},{"name":"RPC_FLAGS_VALID_BIT","features":[19]},{"name":"RPC_FORWARD_FUNCTION","features":[19]},{"name":"RPC_FW_IF_FLAG_DCOM","features":[19]},{"name":"RPC_HTTP_PROXY_FREE_STRING","features":[19]},{"name":"RPC_HTTP_REDIRECTOR_STAGE","features":[19]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_A","features":[19]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_A","features":[19]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_W","features":[19]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_A","features":[19]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_W","features":[19]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_W","features":[19]},{"name":"RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH","features":[19]},{"name":"RPC_IF_ALLOW_LOCAL_ONLY","features":[19]},{"name":"RPC_IF_ALLOW_SECURE_ONLY","features":[19]},{"name":"RPC_IF_ALLOW_UNKNOWN_AUTHORITY","features":[19]},{"name":"RPC_IF_ASYNC_CALLBACK","features":[19]},{"name":"RPC_IF_AUTOLISTEN","features":[19]},{"name":"RPC_IF_CALLBACK_FN","features":[19]},{"name":"RPC_IF_ID","features":[19]},{"name":"RPC_IF_ID_VECTOR","features":[19]},{"name":"RPC_IF_OLE","features":[19]},{"name":"RPC_IF_SEC_CACHE_PER_PROC","features":[19]},{"name":"RPC_IF_SEC_NO_CACHE","features":[19]},{"name":"RPC_IMPORT_CONTEXT_P","features":[19]},{"name":"RPC_INTERFACE_GROUP_IDLE_CALLBACK_FN","features":[19]},{"name":"RPC_INTERFACE_HAS_PIPES","features":[19]},{"name":"RPC_INTERFACE_TEMPLATEA","features":[19]},{"name":"RPC_INTERFACE_TEMPLATEW","features":[19]},{"name":"RPC_MESSAGE","features":[19]},{"name":"RPC_MGMT_AUTHORIZATION_FN","features":[19]},{"name":"RPC_NCA_FLAGS_BROADCAST","features":[19]},{"name":"RPC_NCA_FLAGS_DEFAULT","features":[19]},{"name":"RPC_NCA_FLAGS_IDEMPOTENT","features":[19]},{"name":"RPC_NCA_FLAGS_MAYBE","features":[19]},{"name":"RPC_NEW_HTTP_PROXY_CHANNEL","features":[19]},{"name":"RPC_NOTIFICATIONS","features":[19]},{"name":"RPC_NOTIFICATION_TYPES","features":[19]},{"name":"RPC_OBJECT_INQ_FN","features":[19]},{"name":"RPC_POLICY","features":[19]},{"name":"RPC_PROTSEQ_ENDPOINT","features":[19]},{"name":"RPC_PROTSEQ_HTTP","features":[19]},{"name":"RPC_PROTSEQ_LRPC","features":[19]},{"name":"RPC_PROTSEQ_NMP","features":[19]},{"name":"RPC_PROTSEQ_TCP","features":[19]},{"name":"RPC_PROTSEQ_VECTORA","features":[19]},{"name":"RPC_PROTSEQ_VECTORW","features":[19]},{"name":"RPC_PROXY_CONNECTION_TYPE_IN_PROXY","features":[19]},{"name":"RPC_PROXY_CONNECTION_TYPE_OUT_PROXY","features":[19]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV4","features":[19]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV6","features":[19]},{"name":"RPC_QUERY_CALL_LOCAL_ADDRESS","features":[19]},{"name":"RPC_QUERY_CLIENT_ID","features":[19]},{"name":"RPC_QUERY_CLIENT_PID","features":[19]},{"name":"RPC_QUERY_CLIENT_PRINCIPAL_NAME","features":[19]},{"name":"RPC_QUERY_IS_CLIENT_LOCAL","features":[19]},{"name":"RPC_QUERY_NO_AUTH_REQUIRED","features":[19]},{"name":"RPC_QUERY_SERVER_PRINCIPAL_NAME","features":[19]},{"name":"RPC_SECURITY_CALLBACK_FN","features":[19]},{"name":"RPC_SECURITY_QOS","features":[41,19]},{"name":"RPC_SECURITY_QOS_V2_A","features":[41,19]},{"name":"RPC_SECURITY_QOS_V2_W","features":[41,19]},{"name":"RPC_SECURITY_QOS_V3_A","features":[41,19]},{"name":"RPC_SECURITY_QOS_V3_W","features":[41,19]},{"name":"RPC_SECURITY_QOS_V4_A","features":[41,19]},{"name":"RPC_SECURITY_QOS_V4_W","features":[41,19]},{"name":"RPC_SECURITY_QOS_V5_A","features":[41,19]},{"name":"RPC_SECURITY_QOS_V5_W","features":[41,19]},{"name":"RPC_SEC_CONTEXT_KEY_INFO","features":[19]},{"name":"RPC_SERVER_INTERFACE","features":[19]},{"name":"RPC_SETFILTER_FUNC","features":[19]},{"name":"RPC_STATS_VECTOR","features":[19]},{"name":"RPC_STATUS","features":[19]},{"name":"RPC_SYNTAX_IDENTIFIER","features":[19]},{"name":"RPC_SYSTEM_HANDLE_FREE_ALL","features":[19]},{"name":"RPC_SYSTEM_HANDLE_FREE_ERROR_ON_CLOSE","features":[19]},{"name":"RPC_SYSTEM_HANDLE_FREE_RETRIEVED","features":[19]},{"name":"RPC_SYSTEM_HANDLE_FREE_UNRETRIEVED","features":[19]},{"name":"RPC_S_ADDRESS_ERROR","features":[19]},{"name":"RPC_S_ALREADY_LISTENING","features":[19]},{"name":"RPC_S_ALREADY_REGISTERED","features":[19]},{"name":"RPC_S_BINDING_HAS_NO_AUTH","features":[19]},{"name":"RPC_S_BINDING_INCOMPLETE","features":[19]},{"name":"RPC_S_CALL_CANCELLED","features":[19]},{"name":"RPC_S_CALL_FAILED","features":[19]},{"name":"RPC_S_CALL_FAILED_DNE","features":[19]},{"name":"RPC_S_CALL_IN_PROGRESS","features":[19]},{"name":"RPC_S_CANNOT_SUPPORT","features":[19]},{"name":"RPC_S_CANT_CREATE_ENDPOINT","features":[19]},{"name":"RPC_S_COMM_FAILURE","features":[19]},{"name":"RPC_S_COOKIE_AUTH_FAILED","features":[19]},{"name":"RPC_S_DO_NOT_DISTURB","features":[19]},{"name":"RPC_S_DUPLICATE_ENDPOINT","features":[19]},{"name":"RPC_S_ENTRY_ALREADY_EXISTS","features":[19]},{"name":"RPC_S_ENTRY_NOT_FOUND","features":[19]},{"name":"RPC_S_ENTRY_TYPE_MISMATCH","features":[19]},{"name":"RPC_S_FP_DIV_ZERO","features":[19]},{"name":"RPC_S_FP_OVERFLOW","features":[19]},{"name":"RPC_S_FP_UNDERFLOW","features":[19]},{"name":"RPC_S_GROUP_MEMBER_NOT_FOUND","features":[19]},{"name":"RPC_S_GRP_ELT_NOT_ADDED","features":[19]},{"name":"RPC_S_GRP_ELT_NOT_REMOVED","features":[19]},{"name":"RPC_S_INCOMPLETE_NAME","features":[19]},{"name":"RPC_S_INTERFACE_NOT_EXPORTED","features":[19]},{"name":"RPC_S_INTERFACE_NOT_FOUND","features":[19]},{"name":"RPC_S_INTERNAL_ERROR","features":[19]},{"name":"RPC_S_INVALID_ASYNC_CALL","features":[19]},{"name":"RPC_S_INVALID_ASYNC_HANDLE","features":[19]},{"name":"RPC_S_INVALID_AUTH_IDENTITY","features":[19]},{"name":"RPC_S_INVALID_BINDING","features":[19]},{"name":"RPC_S_INVALID_BOUND","features":[19]},{"name":"RPC_S_INVALID_ENDPOINT_FORMAT","features":[19]},{"name":"RPC_S_INVALID_NAF_ID","features":[19]},{"name":"RPC_S_INVALID_NAME_SYNTAX","features":[19]},{"name":"RPC_S_INVALID_NETWORK_OPTIONS","features":[19]},{"name":"RPC_S_INVALID_NET_ADDR","features":[19]},{"name":"RPC_S_INVALID_OBJECT","features":[19]},{"name":"RPC_S_INVALID_RPC_PROTSEQ","features":[19]},{"name":"RPC_S_INVALID_STRING_BINDING","features":[19]},{"name":"RPC_S_INVALID_STRING_UUID","features":[19]},{"name":"RPC_S_INVALID_TAG","features":[19]},{"name":"RPC_S_INVALID_TIMEOUT","features":[19]},{"name":"RPC_S_INVALID_VERS_OPTION","features":[19]},{"name":"RPC_S_MAX_CALLS_TOO_SMALL","features":[19]},{"name":"RPC_S_NAME_SERVICE_UNAVAILABLE","features":[19]},{"name":"RPC_S_NOTHING_TO_EXPORT","features":[19]},{"name":"RPC_S_NOT_ALL_OBJS_EXPORTED","features":[19]},{"name":"RPC_S_NOT_ALL_OBJS_UNEXPORTED","features":[19]},{"name":"RPC_S_NOT_CANCELLED","features":[19]},{"name":"RPC_S_NOT_LISTENING","features":[19]},{"name":"RPC_S_NOT_RPC_ERROR","features":[19]},{"name":"RPC_S_NO_BINDINGS","features":[19]},{"name":"RPC_S_NO_CALL_ACTIVE","features":[19]},{"name":"RPC_S_NO_CONTEXT_AVAILABLE","features":[19]},{"name":"RPC_S_NO_ENDPOINT_FOUND","features":[19]},{"name":"RPC_S_NO_ENTRY_NAME","features":[19]},{"name":"RPC_S_NO_INTERFACES","features":[19]},{"name":"RPC_S_NO_MORE_BINDINGS","features":[19]},{"name":"RPC_S_NO_MORE_MEMBERS","features":[19]},{"name":"RPC_S_NO_PRINC_NAME","features":[19]},{"name":"RPC_S_NO_PROTSEQS","features":[19]},{"name":"RPC_S_NO_PROTSEQS_REGISTERED","features":[19]},{"name":"RPC_S_OBJECT_NOT_FOUND","features":[19]},{"name":"RPC_S_OK","features":[19]},{"name":"RPC_S_OUT_OF_RESOURCES","features":[19]},{"name":"RPC_S_PRF_ELT_NOT_ADDED","features":[19]},{"name":"RPC_S_PRF_ELT_NOT_REMOVED","features":[19]},{"name":"RPC_S_PROCNUM_OUT_OF_RANGE","features":[19]},{"name":"RPC_S_PROFILE_NOT_ADDED","features":[19]},{"name":"RPC_S_PROTOCOL_ERROR","features":[19]},{"name":"RPC_S_PROTSEQ_NOT_FOUND","features":[19]},{"name":"RPC_S_PROTSEQ_NOT_SUPPORTED","features":[19]},{"name":"RPC_S_PROXY_ACCESS_DENIED","features":[19]},{"name":"RPC_S_SEC_PKG_ERROR","features":[19]},{"name":"RPC_S_SEND_INCOMPLETE","features":[19]},{"name":"RPC_S_SERVER_TOO_BUSY","features":[19]},{"name":"RPC_S_SERVER_UNAVAILABLE","features":[19]},{"name":"RPC_S_STRING_TOO_LONG","features":[19]},{"name":"RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED","features":[19]},{"name":"RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH","features":[19]},{"name":"RPC_S_TYPE_ALREADY_REGISTERED","features":[19]},{"name":"RPC_S_UNKNOWN_AUTHN_LEVEL","features":[19]},{"name":"RPC_S_UNKNOWN_AUTHN_SERVICE","features":[19]},{"name":"RPC_S_UNKNOWN_AUTHN_TYPE","features":[19]},{"name":"RPC_S_UNKNOWN_AUTHZ_SERVICE","features":[19]},{"name":"RPC_S_UNKNOWN_IF","features":[19]},{"name":"RPC_S_UNKNOWN_MGR_TYPE","features":[19]},{"name":"RPC_S_UNSUPPORTED_AUTHN_LEVEL","features":[19]},{"name":"RPC_S_UNSUPPORTED_NAME_SYNTAX","features":[19]},{"name":"RPC_S_UNSUPPORTED_TRANS_SYN","features":[19]},{"name":"RPC_S_UNSUPPORTED_TYPE","features":[19]},{"name":"RPC_S_UUID_LOCAL_ONLY","features":[19]},{"name":"RPC_S_UUID_NO_ADDRESS","features":[19]},{"name":"RPC_S_WRONG_KIND_OF_BINDING","features":[19]},{"name":"RPC_S_ZERO_DIVIDE","features":[19]},{"name":"RPC_TRANSFER_SYNTAX","features":[19]},{"name":"RPC_TYPE_DISCONNECT_EVENT_CONTEXT_HANDLE","features":[19]},{"name":"RPC_TYPE_STRICT_CONTEXT_HANDLE","features":[19]},{"name":"RPC_VERSION","features":[19]},{"name":"RpcAsyncAbortCall","features":[1,6,19]},{"name":"RpcAsyncCancelCall","features":[1,6,19]},{"name":"RpcAsyncCompleteCall","features":[1,6,19]},{"name":"RpcAsyncGetCallStatus","features":[1,6,19]},{"name":"RpcAsyncInitializeHandle","features":[1,6,19]},{"name":"RpcAsyncRegisterInfo","features":[1,6,19]},{"name":"RpcAttemptedLbsDecisions","features":[19]},{"name":"RpcAttemptedLbsMessages","features":[19]},{"name":"RpcBackEndConnectionAttempts","features":[19]},{"name":"RpcBackEndConnectionFailed","features":[19]},{"name":"RpcBindingBind","features":[1,6,19]},{"name":"RpcBindingCopy","features":[19]},{"name":"RpcBindingCreateA","features":[41,19]},{"name":"RpcBindingCreateW","features":[41,19]},{"name":"RpcBindingFree","features":[19]},{"name":"RpcBindingFromStringBindingA","features":[19]},{"name":"RpcBindingFromStringBindingW","features":[19]},{"name":"RpcBindingInqAuthClientA","features":[19]},{"name":"RpcBindingInqAuthClientExA","features":[19]},{"name":"RpcBindingInqAuthClientExW","features":[19]},{"name":"RpcBindingInqAuthClientW","features":[19]},{"name":"RpcBindingInqAuthInfoA","features":[19]},{"name":"RpcBindingInqAuthInfoExA","features":[41,19]},{"name":"RpcBindingInqAuthInfoExW","features":[41,19]},{"name":"RpcBindingInqAuthInfoW","features":[19]},{"name":"RpcBindingInqMaxCalls","features":[19]},{"name":"RpcBindingInqObject","features":[19]},{"name":"RpcBindingInqOption","features":[19]},{"name":"RpcBindingReset","features":[19]},{"name":"RpcBindingServerFromClient","features":[19]},{"name":"RpcBindingSetAuthInfoA","features":[19]},{"name":"RpcBindingSetAuthInfoExA","features":[41,19]},{"name":"RpcBindingSetAuthInfoExW","features":[41,19]},{"name":"RpcBindingSetAuthInfoW","features":[19]},{"name":"RpcBindingSetObject","features":[19]},{"name":"RpcBindingSetOption","features":[19]},{"name":"RpcBindingToStringBindingA","features":[19]},{"name":"RpcBindingToStringBindingW","features":[19]},{"name":"RpcBindingUnbind","features":[19]},{"name":"RpcBindingVectorFree","features":[19]},{"name":"RpcCallClientLocality","features":[19]},{"name":"RpcCallComplete","features":[19]},{"name":"RpcCallType","features":[19]},{"name":"RpcCancelThread","features":[19]},{"name":"RpcCancelThreadEx","features":[19]},{"name":"RpcCertGeneratePrincipalNameA","features":[1,68,19]},{"name":"RpcCertGeneratePrincipalNameW","features":[1,68,19]},{"name":"RpcClientCancel","features":[19]},{"name":"RpcClientDisconnect","features":[19]},{"name":"RpcCurrentUniqueUser","features":[19]},{"name":"RpcEpRegisterA","features":[19]},{"name":"RpcEpRegisterNoReplaceA","features":[19]},{"name":"RpcEpRegisterNoReplaceW","features":[19]},{"name":"RpcEpRegisterW","features":[19]},{"name":"RpcEpResolveBinding","features":[19]},{"name":"RpcEpUnregister","features":[19]},{"name":"RpcErrorAddRecord","features":[1,19]},{"name":"RpcErrorClearInformation","features":[19]},{"name":"RpcErrorEndEnumeration","features":[19]},{"name":"RpcErrorGetNextRecord","features":[1,19]},{"name":"RpcErrorGetNumberOfRecords","features":[19]},{"name":"RpcErrorLoadErrorInfo","features":[19]},{"name":"RpcErrorResetEnumeration","features":[19]},{"name":"RpcErrorSaveErrorInfo","features":[19]},{"name":"RpcErrorStartEnumeration","features":[19]},{"name":"RpcExceptionFilter","features":[19]},{"name":"RpcFailedLbsDecisions","features":[19]},{"name":"RpcFailedLbsMessages","features":[19]},{"name":"RpcFreeAuthorizationContext","features":[19]},{"name":"RpcGetAuthorizationContextForClient","features":[1,19]},{"name":"RpcIfIdVectorFree","features":[19]},{"name":"RpcIfInqId","features":[19]},{"name":"RpcImpersonateClient","features":[19]},{"name":"RpcImpersonateClient2","features":[19]},{"name":"RpcImpersonateClientContainer","features":[19]},{"name":"RpcIncomingBandwidth","features":[19]},{"name":"RpcIncomingConnections","features":[19]},{"name":"RpcLastCounter","features":[19]},{"name":"RpcLocalAddressFormat","features":[19]},{"name":"RpcMgmtEnableIdleCleanup","features":[19]},{"name":"RpcMgmtEpEltInqBegin","features":[19]},{"name":"RpcMgmtEpEltInqDone","features":[19]},{"name":"RpcMgmtEpEltInqNextA","features":[19]},{"name":"RpcMgmtEpEltInqNextW","features":[19]},{"name":"RpcMgmtEpUnregister","features":[19]},{"name":"RpcMgmtInqComTimeout","features":[19]},{"name":"RpcMgmtInqDefaultProtectLevel","features":[19]},{"name":"RpcMgmtInqIfIds","features":[19]},{"name":"RpcMgmtInqServerPrincNameA","features":[19]},{"name":"RpcMgmtInqServerPrincNameW","features":[19]},{"name":"RpcMgmtInqStats","features":[19]},{"name":"RpcMgmtIsServerListening","features":[19]},{"name":"RpcMgmtSetAuthorizationFn","features":[19]},{"name":"RpcMgmtSetCancelTimeout","features":[19]},{"name":"RpcMgmtSetComTimeout","features":[19]},{"name":"RpcMgmtSetServerStackSize","features":[19]},{"name":"RpcMgmtStatsVectorFree","features":[19]},{"name":"RpcMgmtStopServerListening","features":[19]},{"name":"RpcMgmtWaitServerListen","features":[19]},{"name":"RpcNetworkInqProtseqsA","features":[19]},{"name":"RpcNetworkInqProtseqsW","features":[19]},{"name":"RpcNetworkIsProtseqValidA","features":[19]},{"name":"RpcNetworkIsProtseqValidW","features":[19]},{"name":"RpcNotificationCallCancel","features":[19]},{"name":"RpcNotificationCallNone","features":[19]},{"name":"RpcNotificationClientDisconnect","features":[19]},{"name":"RpcNotificationTypeApc","features":[19]},{"name":"RpcNotificationTypeCallback","features":[19]},{"name":"RpcNotificationTypeEvent","features":[19]},{"name":"RpcNotificationTypeHwnd","features":[19]},{"name":"RpcNotificationTypeIoc","features":[19]},{"name":"RpcNotificationTypeNone","features":[19]},{"name":"RpcNsBindingExportA","features":[19]},{"name":"RpcNsBindingExportPnPA","features":[19]},{"name":"RpcNsBindingExportPnPW","features":[19]},{"name":"RpcNsBindingExportW","features":[19]},{"name":"RpcNsBindingImportBeginA","features":[19]},{"name":"RpcNsBindingImportBeginW","features":[19]},{"name":"RpcNsBindingImportDone","features":[19]},{"name":"RpcNsBindingImportNext","features":[19]},{"name":"RpcNsBindingInqEntryNameA","features":[19]},{"name":"RpcNsBindingInqEntryNameW","features":[19]},{"name":"RpcNsBindingLookupBeginA","features":[19]},{"name":"RpcNsBindingLookupBeginW","features":[19]},{"name":"RpcNsBindingLookupDone","features":[19]},{"name":"RpcNsBindingLookupNext","features":[19]},{"name":"RpcNsBindingSelect","features":[19]},{"name":"RpcNsBindingUnexportA","features":[19]},{"name":"RpcNsBindingUnexportPnPA","features":[19]},{"name":"RpcNsBindingUnexportPnPW","features":[19]},{"name":"RpcNsBindingUnexportW","features":[19]},{"name":"RpcNsEntryExpandNameA","features":[19]},{"name":"RpcNsEntryExpandNameW","features":[19]},{"name":"RpcNsEntryObjectInqBeginA","features":[19]},{"name":"RpcNsEntryObjectInqBeginW","features":[19]},{"name":"RpcNsEntryObjectInqDone","features":[19]},{"name":"RpcNsEntryObjectInqNext","features":[19]},{"name":"RpcNsGroupDeleteA","features":[19]},{"name":"RpcNsGroupDeleteW","features":[19]},{"name":"RpcNsGroupMbrAddA","features":[19]},{"name":"RpcNsGroupMbrAddW","features":[19]},{"name":"RpcNsGroupMbrInqBeginA","features":[19]},{"name":"RpcNsGroupMbrInqBeginW","features":[19]},{"name":"RpcNsGroupMbrInqDone","features":[19]},{"name":"RpcNsGroupMbrInqNextA","features":[19]},{"name":"RpcNsGroupMbrInqNextW","features":[19]},{"name":"RpcNsGroupMbrRemoveA","features":[19]},{"name":"RpcNsGroupMbrRemoveW","features":[19]},{"name":"RpcNsMgmtBindingUnexportA","features":[19]},{"name":"RpcNsMgmtBindingUnexportW","features":[19]},{"name":"RpcNsMgmtEntryCreateA","features":[19]},{"name":"RpcNsMgmtEntryCreateW","features":[19]},{"name":"RpcNsMgmtEntryDeleteA","features":[19]},{"name":"RpcNsMgmtEntryDeleteW","features":[19]},{"name":"RpcNsMgmtEntryInqIfIdsA","features":[19]},{"name":"RpcNsMgmtEntryInqIfIdsW","features":[19]},{"name":"RpcNsMgmtHandleSetExpAge","features":[19]},{"name":"RpcNsMgmtInqExpAge","features":[19]},{"name":"RpcNsMgmtSetExpAge","features":[19]},{"name":"RpcNsProfileDeleteA","features":[19]},{"name":"RpcNsProfileDeleteW","features":[19]},{"name":"RpcNsProfileEltAddA","features":[19]},{"name":"RpcNsProfileEltAddW","features":[19]},{"name":"RpcNsProfileEltInqBeginA","features":[19]},{"name":"RpcNsProfileEltInqBeginW","features":[19]},{"name":"RpcNsProfileEltInqDone","features":[19]},{"name":"RpcNsProfileEltInqNextA","features":[19]},{"name":"RpcNsProfileEltInqNextW","features":[19]},{"name":"RpcNsProfileEltRemoveA","features":[19]},{"name":"RpcNsProfileEltRemoveW","features":[19]},{"name":"RpcObjectInqType","features":[19]},{"name":"RpcObjectSetInqFn","features":[19]},{"name":"RpcObjectSetType","features":[19]},{"name":"RpcOutgoingBandwidth","features":[19]},{"name":"RpcPerfCounters","features":[19]},{"name":"RpcProtseqVectorFreeA","features":[19]},{"name":"RpcProtseqVectorFreeW","features":[19]},{"name":"RpcRaiseException","features":[19]},{"name":"RpcReceiveComplete","features":[19]},{"name":"RpcRequestsPerSecond","features":[19]},{"name":"RpcRevertContainerImpersonation","features":[19]},{"name":"RpcRevertToSelf","features":[19]},{"name":"RpcRevertToSelfEx","features":[19]},{"name":"RpcSendComplete","features":[19]},{"name":"RpcServerCompleteSecurityCallback","features":[19]},{"name":"RpcServerInqBindingHandle","features":[19]},{"name":"RpcServerInqBindings","features":[19]},{"name":"RpcServerInqBindingsEx","features":[19]},{"name":"RpcServerInqCallAttributesA","features":[19]},{"name":"RpcServerInqCallAttributesW","features":[19]},{"name":"RpcServerInqDefaultPrincNameA","features":[19]},{"name":"RpcServerInqDefaultPrincNameW","features":[19]},{"name":"RpcServerInqIf","features":[19]},{"name":"RpcServerInterfaceGroupActivate","features":[19]},{"name":"RpcServerInterfaceGroupClose","features":[19]},{"name":"RpcServerInterfaceGroupCreateA","features":[19]},{"name":"RpcServerInterfaceGroupCreateW","features":[19]},{"name":"RpcServerInterfaceGroupDeactivate","features":[19]},{"name":"RpcServerInterfaceGroupInqBindings","features":[19]},{"name":"RpcServerListen","features":[19]},{"name":"RpcServerRegisterAuthInfoA","features":[19]},{"name":"RpcServerRegisterAuthInfoW","features":[19]},{"name":"RpcServerRegisterIf","features":[19]},{"name":"RpcServerRegisterIf2","features":[19]},{"name":"RpcServerRegisterIf3","features":[19]},{"name":"RpcServerRegisterIfEx","features":[19]},{"name":"RpcServerSubscribeForNotification","features":[1,6,19]},{"name":"RpcServerTestCancel","features":[19]},{"name":"RpcServerUnregisterIf","features":[19]},{"name":"RpcServerUnregisterIfEx","features":[19]},{"name":"RpcServerUnsubscribeForNotification","features":[19]},{"name":"RpcServerUseAllProtseqs","features":[19]},{"name":"RpcServerUseAllProtseqsEx","features":[19]},{"name":"RpcServerUseAllProtseqsIf","features":[19]},{"name":"RpcServerUseAllProtseqsIfEx","features":[19]},{"name":"RpcServerUseProtseqA","features":[19]},{"name":"RpcServerUseProtseqEpA","features":[19]},{"name":"RpcServerUseProtseqEpExA","features":[19]},{"name":"RpcServerUseProtseqEpExW","features":[19]},{"name":"RpcServerUseProtseqEpW","features":[19]},{"name":"RpcServerUseProtseqExA","features":[19]},{"name":"RpcServerUseProtseqExW","features":[19]},{"name":"RpcServerUseProtseqIfA","features":[19]},{"name":"RpcServerUseProtseqIfExA","features":[19]},{"name":"RpcServerUseProtseqIfExW","features":[19]},{"name":"RpcServerUseProtseqIfW","features":[19]},{"name":"RpcServerUseProtseqW","features":[19]},{"name":"RpcServerYield","features":[19]},{"name":"RpcSmAllocate","features":[19]},{"name":"RpcSmClientFree","features":[19]},{"name":"RpcSmDestroyClientContext","features":[19]},{"name":"RpcSmDisableAllocate","features":[19]},{"name":"RpcSmEnableAllocate","features":[19]},{"name":"RpcSmFree","features":[19]},{"name":"RpcSmGetThreadHandle","features":[19]},{"name":"RpcSmSetClientAllocFree","features":[19]},{"name":"RpcSmSetThreadHandle","features":[19]},{"name":"RpcSmSwapClientAllocFree","features":[19]},{"name":"RpcSsAllocate","features":[19]},{"name":"RpcSsContextLockExclusive","features":[19]},{"name":"RpcSsContextLockShared","features":[19]},{"name":"RpcSsDestroyClientContext","features":[19]},{"name":"RpcSsDisableAllocate","features":[19]},{"name":"RpcSsDontSerializeContext","features":[19]},{"name":"RpcSsEnableAllocate","features":[19]},{"name":"RpcSsFree","features":[19]},{"name":"RpcSsGetContextBinding","features":[19]},{"name":"RpcSsGetThreadHandle","features":[19]},{"name":"RpcSsSetClientAllocFree","features":[19]},{"name":"RpcSsSetThreadHandle","features":[19]},{"name":"RpcSsSwapClientAllocFree","features":[19]},{"name":"RpcStringBindingComposeA","features":[19]},{"name":"RpcStringBindingComposeW","features":[19]},{"name":"RpcStringBindingParseA","features":[19]},{"name":"RpcStringBindingParseW","features":[19]},{"name":"RpcStringFreeA","features":[19]},{"name":"RpcStringFreeW","features":[19]},{"name":"RpcTestCancel","features":[19]},{"name":"RpcUserFree","features":[19]},{"name":"SCONTEXT_QUEUE","features":[19]},{"name":"SEC_WINNT_AUTH_IDENTITY","features":[19]},{"name":"SEC_WINNT_AUTH_IDENTITY_A","features":[19]},{"name":"SEC_WINNT_AUTH_IDENTITY_ANSI","features":[19]},{"name":"SEC_WINNT_AUTH_IDENTITY_UNICODE","features":[19]},{"name":"SEC_WINNT_AUTH_IDENTITY_W","features":[19]},{"name":"SERVER_ROUTINE","features":[19]},{"name":"STUB_CALL_SERVER","features":[19]},{"name":"STUB_CALL_SERVER_NO_HRESULT","features":[19]},{"name":"STUB_MARSHAL","features":[19]},{"name":"STUB_PHASE","features":[19]},{"name":"STUB_THUNK","features":[19]},{"name":"STUB_UNMARSHAL","features":[19]},{"name":"SYSTEM_HANDLE_COMPOSITION_OBJECT","features":[19]},{"name":"SYSTEM_HANDLE_EVENT","features":[19]},{"name":"SYSTEM_HANDLE_FILE","features":[19]},{"name":"SYSTEM_HANDLE_INVALID","features":[19]},{"name":"SYSTEM_HANDLE_JOB","features":[19]},{"name":"SYSTEM_HANDLE_MAX","features":[19]},{"name":"SYSTEM_HANDLE_MUTEX","features":[19]},{"name":"SYSTEM_HANDLE_PIPE","features":[19]},{"name":"SYSTEM_HANDLE_PROCESS","features":[19]},{"name":"SYSTEM_HANDLE_REG_KEY","features":[19]},{"name":"SYSTEM_HANDLE_SECTION","features":[19]},{"name":"SYSTEM_HANDLE_SEMAPHORE","features":[19]},{"name":"SYSTEM_HANDLE_SOCKET","features":[19]},{"name":"SYSTEM_HANDLE_THREAD","features":[19]},{"name":"SYSTEM_HANDLE_TOKEN","features":[19]},{"name":"TARGET_IS_NT100_OR_LATER","features":[19]},{"name":"TARGET_IS_NT1012_OR_LATER","features":[19]},{"name":"TARGET_IS_NT102_OR_LATER","features":[19]},{"name":"TARGET_IS_NT351_OR_WIN95_OR_LATER","features":[19]},{"name":"TARGET_IS_NT40_OR_LATER","features":[19]},{"name":"TARGET_IS_NT50_OR_LATER","features":[19]},{"name":"TARGET_IS_NT51_OR_LATER","features":[19]},{"name":"TARGET_IS_NT60_OR_LATER","features":[19]},{"name":"TARGET_IS_NT61_OR_LATER","features":[19]},{"name":"TARGET_IS_NT62_OR_LATER","features":[19]},{"name":"TARGET_IS_NT63_OR_LATER","features":[19]},{"name":"TRANSPORT_TYPE_CN","features":[19]},{"name":"TRANSPORT_TYPE_DG","features":[19]},{"name":"TRANSPORT_TYPE_LPC","features":[19]},{"name":"TRANSPORT_TYPE_WMSG","features":[19]},{"name":"USER_CALL_IS_ASYNC","features":[19]},{"name":"USER_CALL_NEW_CORRELATION_DESC","features":[19]},{"name":"USER_MARSHAL_CB","features":[19]},{"name":"USER_MARSHAL_CB_BUFFER_SIZE","features":[19]},{"name":"USER_MARSHAL_CB_FREE","features":[19]},{"name":"USER_MARSHAL_CB_MARSHALL","features":[19]},{"name":"USER_MARSHAL_CB_TYPE","features":[19]},{"name":"USER_MARSHAL_CB_UNMARSHALL","features":[19]},{"name":"USER_MARSHAL_FC_BYTE","features":[19]},{"name":"USER_MARSHAL_FC_CHAR","features":[19]},{"name":"USER_MARSHAL_FC_DOUBLE","features":[19]},{"name":"USER_MARSHAL_FC_FLOAT","features":[19]},{"name":"USER_MARSHAL_FC_HYPER","features":[19]},{"name":"USER_MARSHAL_FC_LONG","features":[19]},{"name":"USER_MARSHAL_FC_SHORT","features":[19]},{"name":"USER_MARSHAL_FC_SMALL","features":[19]},{"name":"USER_MARSHAL_FC_ULONG","features":[19]},{"name":"USER_MARSHAL_FC_USHORT","features":[19]},{"name":"USER_MARSHAL_FC_USMALL","features":[19]},{"name":"USER_MARSHAL_FC_WCHAR","features":[19]},{"name":"USER_MARSHAL_FREEING_ROUTINE","features":[19]},{"name":"USER_MARSHAL_MARSHALLING_ROUTINE","features":[19]},{"name":"USER_MARSHAL_ROUTINE_QUADRUPLE","features":[19]},{"name":"USER_MARSHAL_SIZING_ROUTINE","features":[19]},{"name":"USER_MARSHAL_UNMARSHALLING_ROUTINE","features":[19]},{"name":"UUID_VECTOR","features":[19]},{"name":"UuidCompare","features":[19]},{"name":"UuidCreate","features":[19]},{"name":"UuidCreateNil","features":[19]},{"name":"UuidCreateSequential","features":[19]},{"name":"UuidEqual","features":[19]},{"name":"UuidFromStringA","features":[19]},{"name":"UuidFromStringW","features":[19]},{"name":"UuidHash","features":[19]},{"name":"UuidIsNil","features":[19]},{"name":"UuidToStringA","features":[19]},{"name":"UuidToStringW","features":[19]},{"name":"XLAT_CLIENT","features":[19]},{"name":"XLAT_SERVER","features":[19]},{"name":"XLAT_SIDE","features":[19]},{"name":"XMIT_HELPER_ROUTINE","features":[19]},{"name":"XMIT_ROUTINE_QUINTUPLE","features":[19]},{"name":"_NDR_PROC_CONTEXT","features":[19]},{"name":"__RPCPROXY_H_VERSION__","features":[19]},{"name":"cbNDRContext","features":[19]},{"name":"eeptAnsiString","features":[19]},{"name":"eeptBinary","features":[19]},{"name":"eeptLongVal","features":[19]},{"name":"eeptNone","features":[19]},{"name":"eeptPointerVal","features":[19]},{"name":"eeptShortVal","features":[19]},{"name":"eeptUnicodeString","features":[19]},{"name":"rcclClientUnknownLocality","features":[19]},{"name":"rcclInvalid","features":[19]},{"name":"rcclLocal","features":[19]},{"name":"rcclRemote","features":[19]},{"name":"rctGuaranteed","features":[19]},{"name":"rctInvalid","features":[19]},{"name":"rctNormal","features":[19]},{"name":"rctTraining","features":[19]},{"name":"rlafIPv4","features":[19]},{"name":"rlafIPv6","features":[19]},{"name":"rlafInvalid","features":[19]},{"name":"system_handle_t","features":[19]}],"602":[{"name":"ACCESS_MASKENUM","features":[197]},{"name":"AUTHENTICATION_INFO","features":[197]},{"name":"AUTH_TYPE","features":[197]},{"name":"BCP6xFILEFMT","features":[197]},{"name":"BCPABORT","features":[197]},{"name":"BCPBATCH","features":[197]},{"name":"BCPFILECP","features":[197]},{"name":"BCPFILECP_ACP","features":[197]},{"name":"BCPFILECP_OEMCP","features":[197]},{"name":"BCPFILECP_RAW","features":[197]},{"name":"BCPFILEFMT","features":[197]},{"name":"BCPFIRST","features":[197]},{"name":"BCPHINTS","features":[197]},{"name":"BCPHINTSA","features":[197]},{"name":"BCPHINTSW","features":[197]},{"name":"BCPKEEPIDENTITY","features":[197]},{"name":"BCPKEEPNULLS","features":[197]},{"name":"BCPLAST","features":[197]},{"name":"BCPMAXERRS","features":[197]},{"name":"BCPODBC","features":[197]},{"name":"BCPTEXTFILE","features":[197]},{"name":"BCPUNICODEFILE","features":[197]},{"name":"BCP_FMT_COLLATION","features":[197]},{"name":"BCP_FMT_COLLATION_ID","features":[197]},{"name":"BCP_FMT_DATA_LEN","features":[197]},{"name":"BCP_FMT_INDICATOR_LEN","features":[197]},{"name":"BCP_FMT_SERVER_COL","features":[197]},{"name":"BCP_FMT_TERMINATOR","features":[197]},{"name":"BCP_FMT_TYPE","features":[197]},{"name":"BIO_BINDER","features":[197]},{"name":"BMK_DURABILITY_INTRANSACTION","features":[197]},{"name":"BMK_DURABILITY_REORGANIZATION","features":[197]},{"name":"BMK_DURABILITY_ROWSET","features":[197]},{"name":"BMK_DURABILITY_XTRANSACTION","features":[197]},{"name":"BUCKETCATEGORIZE","features":[197]},{"name":"BUCKET_EXPONENTIAL","features":[197]},{"name":"BUCKET_LINEAR","features":[197]},{"name":"CASE_REQUIREMENT","features":[197]},{"name":"CASE_REQUIREMENT_ANY","features":[197]},{"name":"CASE_REQUIREMENT_UPPER_IF_AQS","features":[197]},{"name":"CATALOG_PAUSED_REASON_DELAYED_RECOVERY","features":[197]},{"name":"CATALOG_PAUSED_REASON_EXTERNAL","features":[197]},{"name":"CATALOG_PAUSED_REASON_HIGH_CPU","features":[197]},{"name":"CATALOG_PAUSED_REASON_HIGH_IO","features":[197]},{"name":"CATALOG_PAUSED_REASON_HIGH_NTF_RATE","features":[197]},{"name":"CATALOG_PAUSED_REASON_LOW_BATTERY","features":[197]},{"name":"CATALOG_PAUSED_REASON_LOW_DISK","features":[197]},{"name":"CATALOG_PAUSED_REASON_LOW_MEMORY","features":[197]},{"name":"CATALOG_PAUSED_REASON_NONE","features":[197]},{"name":"CATALOG_PAUSED_REASON_UPGRADING","features":[197]},{"name":"CATALOG_PAUSED_REASON_USER_ACTIVE","features":[197]},{"name":"CATALOG_STATUS_FULL_CRAWL","features":[197]},{"name":"CATALOG_STATUS_IDLE","features":[197]},{"name":"CATALOG_STATUS_INCREMENTAL_CRAWL","features":[197]},{"name":"CATALOG_STATUS_PAUSED","features":[197]},{"name":"CATALOG_STATUS_PROCESSING_NOTIFICATIONS","features":[197]},{"name":"CATALOG_STATUS_RECOVERING","features":[197]},{"name":"CATALOG_STATUS_SHUTTING_DOWN","features":[197]},{"name":"CATEGORIZATION","features":[1,143,63,197,42]},{"name":"CATEGORIZATIONSET","features":[1,143,63,197,42]},{"name":"CATEGORIZE_BUCKETS","features":[197]},{"name":"CATEGORIZE_CLUSTER","features":[197]},{"name":"CATEGORIZE_RANGE","features":[197]},{"name":"CATEGORIZE_UNIQUE","features":[197]},{"name":"CATEGORY_COLLATOR","features":[197]},{"name":"CATEGORY_GATHERER","features":[197]},{"name":"CATEGORY_INDEXER","features":[197]},{"name":"CATEGORY_SEARCH","features":[197]},{"name":"CDBBMKDISPIDS","features":[197]},{"name":"CDBCOLDISPIDS","features":[197]},{"name":"CDBSELFDISPIDS","features":[197]},{"name":"CERT_E_NOT_FOUND_OR_NO_PERMISSSION","features":[197]},{"name":"CHANNEL_AGENT_DYNAMIC_SCHEDULE","features":[197]},{"name":"CHANNEL_AGENT_FLAGS","features":[197]},{"name":"CHANNEL_AGENT_PRECACHE_ALL","features":[197]},{"name":"CHANNEL_AGENT_PRECACHE_SCRNSAVER","features":[197]},{"name":"CHANNEL_AGENT_PRECACHE_SOME","features":[197]},{"name":"CI_E_CORRUPT_FWIDX","features":[197]},{"name":"CI_E_DIACRITIC_SETTINGS_DIFFER","features":[197]},{"name":"CI_E_INCONSISTENT_TRANSACTION","features":[197]},{"name":"CI_E_INVALID_CATALOG_LIST_VERSION","features":[197]},{"name":"CI_E_MULTIPLE_PROTECTED_USERS_UNSUPPORTED","features":[197]},{"name":"CI_E_NO_AUXMETADATA","features":[197]},{"name":"CI_E_NO_CATALOG_MANAGER","features":[197]},{"name":"CI_E_NO_PROTECTED_USER","features":[197]},{"name":"CI_E_PROTECTED_CATALOG_NON_INTERACTIVE_USER","features":[197]},{"name":"CI_E_PROTECTED_CATALOG_NOT_AVAILABLE","features":[197]},{"name":"CI_E_PROTECTED_CATALOG_SID_MISMATCH","features":[197]},{"name":"CI_S_CATALOG_RESET","features":[197]},{"name":"CI_S_CLIENT_REQUESTED_ABORT","features":[197]},{"name":"CI_S_NEW_AUXMETADATA","features":[197]},{"name":"CI_S_RETRY_DOCUMENT","features":[197]},{"name":"CLSID_CISimpleCommandCreator","features":[197]},{"name":"CLSID_DataShapeProvider","features":[197]},{"name":"CLSID_MSDASQL","features":[197]},{"name":"CLSID_MSDASQL_ENUMERATOR","features":[197]},{"name":"CLSID_MSPersist","features":[197]},{"name":"CLSID_SQLOLEDB","features":[197]},{"name":"CLSID_SQLOLEDB_ENUMERATOR","features":[197]},{"name":"CLSID_SQLOLEDB_ERROR","features":[197]},{"name":"CLUSIONREASON_DEFAULT","features":[197]},{"name":"CLUSIONREASON_GROUPPOLICY","features":[197]},{"name":"CLUSIONREASON_UNKNOWNSCOPE","features":[197]},{"name":"CLUSIONREASON_USER","features":[197]},{"name":"CLUSION_REASON","features":[197]},{"name":"CMDLINE_E_ALREADY_INIT","features":[197]},{"name":"CMDLINE_E_NOT_INIT","features":[197]},{"name":"CMDLINE_E_NUM_PARAMS","features":[197]},{"name":"CMDLINE_E_PARAM_SIZE","features":[197]},{"name":"CMDLINE_E_PAREN","features":[197]},{"name":"CMDLINE_E_UNEXPECTED","features":[197]},{"name":"CM_E_CONNECTIONTIMEOUT","features":[197]},{"name":"CM_E_DATASOURCENOTAVAILABLE","features":[197]},{"name":"CM_E_INSUFFICIENTBUFFER","features":[197]},{"name":"CM_E_INVALIDDATASOURCE","features":[197]},{"name":"CM_E_NOQUERYCONNECTIONS","features":[197]},{"name":"CM_E_REGISTRY","features":[197]},{"name":"CM_E_SERVERNOTFOUND","features":[197]},{"name":"CM_E_TIMEOUT","features":[197]},{"name":"CM_E_TOOMANYDATASERVERS","features":[197]},{"name":"CM_E_TOOMANYDATASOURCES","features":[197]},{"name":"CM_S_NODATASERVERS","features":[197]},{"name":"COLL_E_BADRESULT","features":[197]},{"name":"COLL_E_BADSEQUENCE","features":[197]},{"name":"COLL_E_BUFFERTOOSMALL","features":[197]},{"name":"COLL_E_DUPLICATEDBID","features":[197]},{"name":"COLL_E_INCOMPATIBLECOLUMNS","features":[197]},{"name":"COLL_E_MAXCONNEXCEEDED","features":[197]},{"name":"COLL_E_NODEFAULTCATALOG","features":[197]},{"name":"COLL_E_NOMOREDATA","features":[197]},{"name":"COLL_E_NOSORTCOLUMN","features":[197]},{"name":"COLL_E_TOOMANYMERGECOLUMNS","features":[197]},{"name":"COLUMNSET","features":[143,63,197]},{"name":"CONDITION_CREATION_DEFAULT","features":[197]},{"name":"CONDITION_CREATION_NONE","features":[197]},{"name":"CONDITION_CREATION_OPTIONS","features":[197]},{"name":"CONDITION_CREATION_SIMPLIFY","features":[197]},{"name":"CONDITION_CREATION_USE_CONTENT_LOCALE","features":[197]},{"name":"CONDITION_CREATION_VECTOR_AND","features":[197]},{"name":"CONDITION_CREATION_VECTOR_LEAF","features":[197]},{"name":"CONDITION_CREATION_VECTOR_OR","features":[197]},{"name":"CONTENTRESTRICTION","features":[143,63,197]},{"name":"CONTENT_SOURCE_E_CONTENT_CLASS_READ","features":[197]},{"name":"CONTENT_SOURCE_E_CONTENT_SOURCE_COLUMN_TYPE","features":[197]},{"name":"CONTENT_SOURCE_E_NULL_CONTENT_CLASS_BSTR","features":[197]},{"name":"CONTENT_SOURCE_E_NULL_URI","features":[197]},{"name":"CONTENT_SOURCE_E_OUT_OF_RANGE","features":[197]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_BAD_VECTOR_SIZE","features":[197]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_READ","features":[197]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_EXCEPTION","features":[197]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_NULL_POINTER","features":[197]},{"name":"CQUERYDISPIDS","features":[197]},{"name":"CQUERYMETADISPIDS","features":[197]},{"name":"CQUERYPROPERTY","features":[197]},{"name":"CREATESUBSCRIPTIONFLAGS","features":[197]},{"name":"CREATESUBS_ADDTOFAVORITES","features":[197]},{"name":"CREATESUBS_FROMFAVORITES","features":[197]},{"name":"CREATESUBS_NOSAVE","features":[197]},{"name":"CREATESUBS_NOUI","features":[197]},{"name":"CREATESUBS_SOFTWAREUPDATE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_ASSERTIONS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_CATALOGS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_CHARACTER_SETS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_COLLATIONS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMNS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_DOMAIN_USAGE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_PRIVILEGES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_COLUMN_USAGE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_TABLE_USAGE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_FOREIGN_KEYS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_INDEXES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_KEY_COLUMN_USAGE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_LINKEDSERVERS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECTS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECT_ACTIONS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_PRIMARY_KEYS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_COLUMNS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_PARAMETERS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_PROVIDER_TYPES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_REFERENTIAL_CONSTRAINTS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_SCHEMATA","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_SQL_LANGUAGES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_STATISTICS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES_INFO","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_CONSTRAINTS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_PRIVILEGES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_STATISTICS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_TRANSLATIONS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_TRUSTEE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_USAGE_PRIVILEGES","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEWS","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_COLUMN_USAGE","features":[197]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_TABLE_USAGE","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_ACTIONS","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_COMMANDS","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_CUBES","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_DIMENSIONS","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_FUNCTIONS","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_HIERARCHIES","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_LEVELS","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_MEASURES","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_MEMBERS","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_PROPERTIES","features":[197]},{"name":"CRESTRICTIONS_MDSCHEMA_SETS","features":[197]},{"name":"CSTORAGEPROPERTY","features":[197]},{"name":"CSearchLanguageSupport","features":[197]},{"name":"CSearchManager","features":[197]},{"name":"CSearchRoot","features":[197]},{"name":"CSearchScopeRule","features":[197]},{"name":"CatalogPausedReason","features":[197]},{"name":"CatalogStatus","features":[197]},{"name":"CompoundCondition","features":[197]},{"name":"ConditionFactory","features":[197]},{"name":"DATE_STRUCT","features":[197]},{"name":"DBACCESSORFLAGSENUM","features":[197]},{"name":"DBACCESSOR_INHERITED","features":[197]},{"name":"DBACCESSOR_INVALID","features":[197]},{"name":"DBACCESSOR_OPTIMIZED","features":[197]},{"name":"DBACCESSOR_PARAMETERDATA","features":[197]},{"name":"DBACCESSOR_PASSBYREF","features":[197]},{"name":"DBACCESSOR_ROWDATA","features":[197]},{"name":"DBASYNCHOPENUM","features":[197]},{"name":"DBASYNCHOP_OPEN","features":[197]},{"name":"DBASYNCHPHASEENUM","features":[197]},{"name":"DBASYNCHPHASE_CANCELED","features":[197]},{"name":"DBASYNCHPHASE_COMPLETE","features":[197]},{"name":"DBASYNCHPHASE_INITIALIZATION","features":[197]},{"name":"DBASYNCHPHASE_POPULATION","features":[197]},{"name":"DBBINDEXT","features":[197]},{"name":"DBBINDEXT","features":[197]},{"name":"DBBINDFLAGENUM","features":[197]},{"name":"DBBINDFLAG_HTML","features":[197]},{"name":"DBBINDING","features":[197]},{"name":"DBBINDING","features":[197]},{"name":"DBBINDSTATUSENUM","features":[197]},{"name":"DBBINDSTATUS_BADBINDINFO","features":[197]},{"name":"DBBINDSTATUS_BADORDINAL","features":[197]},{"name":"DBBINDSTATUS_BADSTORAGEFLAGS","features":[197]},{"name":"DBBINDSTATUS_MULTIPLESTORAGE","features":[197]},{"name":"DBBINDSTATUS_NOINTERFACE","features":[197]},{"name":"DBBINDSTATUS_OK","features":[197]},{"name":"DBBINDSTATUS_UNSUPPORTEDCONVERSION","features":[197]},{"name":"DBBINDURLFLAGENUM","features":[197]},{"name":"DBBINDURLFLAG_ASYNCHRONOUS","features":[197]},{"name":"DBBINDURLFLAG_COLLECTION","features":[197]},{"name":"DBBINDURLFLAG_DELAYFETCHCOLUMNS","features":[197]},{"name":"DBBINDURLFLAG_DELAYFETCHSTREAM","features":[197]},{"name":"DBBINDURLFLAG_ISSTRUCTUREDDOCUMENT","features":[197]},{"name":"DBBINDURLFLAG_OPENIFEXISTS","features":[197]},{"name":"DBBINDURLFLAG_OUTPUT","features":[197]},{"name":"DBBINDURLFLAG_OVERWRITE","features":[197]},{"name":"DBBINDURLFLAG_READ","features":[197]},{"name":"DBBINDURLFLAG_READWRITE","features":[197]},{"name":"DBBINDURLFLAG_RECURSIVE","features":[197]},{"name":"DBBINDURLFLAG_SHARE_DENY_NONE","features":[197]},{"name":"DBBINDURLFLAG_SHARE_DENY_READ","features":[197]},{"name":"DBBINDURLFLAG_SHARE_DENY_WRITE","features":[197]},{"name":"DBBINDURLFLAG_SHARE_EXCLUSIVE","features":[197]},{"name":"DBBINDURLFLAG_WAITFORINIT","features":[197]},{"name":"DBBINDURLFLAG_WRITE","features":[197]},{"name":"DBBINDURLSTATUSENUM","features":[197]},{"name":"DBBINDURLSTATUS_S_DENYNOTSUPPORTED","features":[197]},{"name":"DBBINDURLSTATUS_S_DENYTYPENOTSUPPORTED","features":[197]},{"name":"DBBINDURLSTATUS_S_OK","features":[197]},{"name":"DBBINDURLSTATUS_S_REDIRECTED","features":[197]},{"name":"DBBMKGUID","features":[197]},{"name":"DBBMK_FIRST","features":[197]},{"name":"DBBMK_INVALID","features":[197]},{"name":"DBBMK_LAST","features":[197]},{"name":"DBBOOKMARK","features":[197]},{"name":"DBCIDGUID","features":[197]},{"name":"DBCOLUMNACCESS","features":[143,197]},{"name":"DBCOLUMNACCESS","features":[143,197]},{"name":"DBCOLUMNDESC","features":[1,143,41,197,42]},{"name":"DBCOLUMNDESC","features":[1,143,41,197,42]},{"name":"DBCOLUMNDESCFLAGSENUM","features":[197]},{"name":"DBCOLUMNDESCFLAGS_CLSID","features":[197]},{"name":"DBCOLUMNDESCFLAGS_COLSIZE","features":[197]},{"name":"DBCOLUMNDESCFLAGS_DBCID","features":[197]},{"name":"DBCOLUMNDESCFLAGS_ITYPEINFO","features":[197]},{"name":"DBCOLUMNDESCFLAGS_PRECISION","features":[197]},{"name":"DBCOLUMNDESCFLAGS_PROPERTIES","features":[197]},{"name":"DBCOLUMNDESCFLAGS_SCALE","features":[197]},{"name":"DBCOLUMNDESCFLAGS_TYPENAME","features":[197]},{"name":"DBCOLUMNDESCFLAGS_WTYPE","features":[197]},{"name":"DBCOLUMNFLAGS15ENUM","features":[197]},{"name":"DBCOLUMNFLAGSDEPRECATED","features":[197]},{"name":"DBCOLUMNFLAGSENUM","features":[197]},{"name":"DBCOLUMNFLAGSENUM20","features":[197]},{"name":"DBCOLUMNFLAGSENUM21","features":[197]},{"name":"DBCOLUMNFLAGSENUM26","features":[197]},{"name":"DBCOLUMNFLAGS_CACHEDEFERRED","features":[197]},{"name":"DBCOLUMNFLAGS_ISBOOKMARK","features":[197]},{"name":"DBCOLUMNFLAGS_ISCHAPTER","features":[197]},{"name":"DBCOLUMNFLAGS_ISCOLLECTION","features":[197]},{"name":"DBCOLUMNFLAGS_ISDEFAULTSTREAM","features":[197]},{"name":"DBCOLUMNFLAGS_ISFIXEDLENGTH","features":[197]},{"name":"DBCOLUMNFLAGS_ISLONG","features":[197]},{"name":"DBCOLUMNFLAGS_ISNULLABLE","features":[197]},{"name":"DBCOLUMNFLAGS_ISROW","features":[197]},{"name":"DBCOLUMNFLAGS_ISROWID","features":[197]},{"name":"DBCOLUMNFLAGS_ISROWSET","features":[197]},{"name":"DBCOLUMNFLAGS_ISROWURL","features":[197]},{"name":"DBCOLUMNFLAGS_ISROWVER","features":[197]},{"name":"DBCOLUMNFLAGS_ISSTREAM","features":[197]},{"name":"DBCOLUMNFLAGS_KEYCOLUMN","features":[197]},{"name":"DBCOLUMNFLAGS_MAYBENULL","features":[197]},{"name":"DBCOLUMNFLAGS_MAYDEFER","features":[197]},{"name":"DBCOLUMNFLAGS_RESERVED","features":[197]},{"name":"DBCOLUMNFLAGS_ROWSPECIFICCOLUMN","features":[197]},{"name":"DBCOLUMNFLAGS_SCALEISNEGATIVE","features":[197]},{"name":"DBCOLUMNFLAGS_WRITE","features":[197]},{"name":"DBCOLUMNFLAGS_WRITEUNKNOWN","features":[197]},{"name":"DBCOLUMNINFO","features":[143,197]},{"name":"DBCOLUMNINFO","features":[143,197]},{"name":"DBCOMMANDPERSISTFLAGENUM","features":[197]},{"name":"DBCOMMANDPERSISTFLAGENUM21","features":[197]},{"name":"DBCOMMANDPERSISTFLAG_DEFAULT","features":[197]},{"name":"DBCOMMANDPERSISTFLAG_NOSAVE","features":[197]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTPROCEDURE","features":[197]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTVIEW","features":[197]},{"name":"DBCOMPAREENUM","features":[197]},{"name":"DBCOMPAREOPSENUM","features":[197]},{"name":"DBCOMPAREOPSENUM20","features":[197]},{"name":"DBCOMPAREOPS_BEGINSWITH","features":[197]},{"name":"DBCOMPAREOPS_CASEINSENSITIVE","features":[197]},{"name":"DBCOMPAREOPS_CASESENSITIVE","features":[197]},{"name":"DBCOMPAREOPS_CONTAINS","features":[197]},{"name":"DBCOMPAREOPS_EQ","features":[197]},{"name":"DBCOMPAREOPS_GE","features":[197]},{"name":"DBCOMPAREOPS_GT","features":[197]},{"name":"DBCOMPAREOPS_IGNORE","features":[197]},{"name":"DBCOMPAREOPS_LE","features":[197]},{"name":"DBCOMPAREOPS_LT","features":[197]},{"name":"DBCOMPAREOPS_NE","features":[197]},{"name":"DBCOMPAREOPS_NOTBEGINSWITH","features":[197]},{"name":"DBCOMPAREOPS_NOTCONTAINS","features":[197]},{"name":"DBCOMPARE_EQ","features":[197]},{"name":"DBCOMPARE_GT","features":[197]},{"name":"DBCOMPARE_LT","features":[197]},{"name":"DBCOMPARE_NE","features":[197]},{"name":"DBCOMPARE_NOTCOMPARABLE","features":[197]},{"name":"DBCOMPUTEMODE_COMPUTED","features":[197]},{"name":"DBCOMPUTEMODE_DYNAMIC","features":[197]},{"name":"DBCOMPUTEMODE_NOTCOMPUTED","features":[197]},{"name":"DBCONSTRAINTDESC","features":[1,143,41,197,42]},{"name":"DBCONSTRAINTDESC","features":[1,143,41,197,42]},{"name":"DBCONSTRAINTTYPEENUM","features":[197]},{"name":"DBCONSTRAINTTYPE_CHECK","features":[197]},{"name":"DBCONSTRAINTTYPE_FOREIGNKEY","features":[197]},{"name":"DBCONSTRAINTTYPE_PRIMARYKEY","features":[197]},{"name":"DBCONSTRAINTTYPE_UNIQUE","features":[197]},{"name":"DBCONVERTFLAGSENUM","features":[197]},{"name":"DBCONVERTFLAGSENUM20","features":[197]},{"name":"DBCONVERTFLAGS_COLUMN","features":[197]},{"name":"DBCONVERTFLAGS_FROMVARIANT","features":[197]},{"name":"DBCONVERTFLAGS_ISFIXEDLENGTH","features":[197]},{"name":"DBCONVERTFLAGS_ISLONG","features":[197]},{"name":"DBCONVERTFLAGS_PARAMETER","features":[197]},{"name":"DBCOPYFLAGSENUM","features":[197]},{"name":"DBCOPY_ALLOW_EMULATION","features":[197]},{"name":"DBCOPY_ASYNC","features":[197]},{"name":"DBCOPY_ATOMIC","features":[197]},{"name":"DBCOPY_NON_RECURSIVE","features":[197]},{"name":"DBCOPY_REPLACE_EXISTING","features":[197]},{"name":"DBCOST","features":[197]},{"name":"DBCOST","features":[197]},{"name":"DBCOSTUNITENUM","features":[197]},{"name":"DBDATACONVERTENUM","features":[197]},{"name":"DBDATACONVERT_DECIMALSCALE","features":[197]},{"name":"DBDATACONVERT_DEFAULT","features":[197]},{"name":"DBDATACONVERT_DSTISFIXEDLENGTH","features":[197]},{"name":"DBDATACONVERT_LENGTHFROMNTS","features":[197]},{"name":"DBDATACONVERT_SETDATABEHAVIOR","features":[197]},{"name":"DBDATE","features":[197]},{"name":"DBDATETIM4","features":[197]},{"name":"DBDATETIME","features":[197]},{"name":"DBDEFERRABILITYENUM","features":[197]},{"name":"DBDEFERRABILITY_DEFERRABLE","features":[197]},{"name":"DBDEFERRABILITY_DEFERRED","features":[197]},{"name":"DBDELETEFLAGSENUM","features":[197]},{"name":"DBDELETE_ASYNC","features":[197]},{"name":"DBDELETE_ATOMIC","features":[197]},{"name":"DBEVENTPHASEENUM","features":[197]},{"name":"DBEVENTPHASE_ABOUTTODO","features":[197]},{"name":"DBEVENTPHASE_DIDEVENT","features":[197]},{"name":"DBEVENTPHASE_FAILEDTODO","features":[197]},{"name":"DBEVENTPHASE_OKTODO","features":[197]},{"name":"DBEVENTPHASE_SYNCHAFTER","features":[197]},{"name":"DBEXECLIMITSENUM","features":[197]},{"name":"DBEXECLIMITS_ABORT","features":[197]},{"name":"DBEXECLIMITS_STOP","features":[197]},{"name":"DBEXECLIMITS_SUSPEND","features":[197]},{"name":"DBFAILUREINFO","features":[197]},{"name":"DBFAILUREINFO","features":[197]},{"name":"DBGUID_MSSQLXML","features":[197]},{"name":"DBGUID_ROWDEFAULTSTREAM","features":[197]},{"name":"DBGUID_ROWURL","features":[197]},{"name":"DBGUID_XPATH","features":[197]},{"name":"DBIMPLICITSESSION","features":[197]},{"name":"DBIMPLICITSESSION","features":[197]},{"name":"DBINDEXCOLUMNDESC","features":[143,197]},{"name":"DBINDEXCOLUMNDESC","features":[143,197]},{"name":"DBINDEX_COL_ORDERENUM","features":[197]},{"name":"DBINDEX_COL_ORDER_ASC","features":[197]},{"name":"DBINDEX_COL_ORDER_DESC","features":[197]},{"name":"DBLITERALENUM","features":[197]},{"name":"DBLITERALENUM20","features":[197]},{"name":"DBLITERALENUM21","features":[197]},{"name":"DBLITERALINFO","features":[1,197]},{"name":"DBLITERALINFO","features":[1,197]},{"name":"DBLITERAL_BINARY_LITERAL","features":[197]},{"name":"DBLITERAL_CATALOG_NAME","features":[197]},{"name":"DBLITERAL_CATALOG_SEPARATOR","features":[197]},{"name":"DBLITERAL_CHAR_LITERAL","features":[197]},{"name":"DBLITERAL_COLUMN_ALIAS","features":[197]},{"name":"DBLITERAL_COLUMN_NAME","features":[197]},{"name":"DBLITERAL_CORRELATION_NAME","features":[197]},{"name":"DBLITERAL_CUBE_NAME","features":[197]},{"name":"DBLITERAL_CURSOR_NAME","features":[197]},{"name":"DBLITERAL_DIMENSION_NAME","features":[197]},{"name":"DBLITERAL_ESCAPE_PERCENT","features":[197]},{"name":"DBLITERAL_ESCAPE_PERCENT_SUFFIX","features":[197]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE","features":[197]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE_SUFFIX","features":[197]},{"name":"DBLITERAL_HIERARCHY_NAME","features":[197]},{"name":"DBLITERAL_INDEX_NAME","features":[197]},{"name":"DBLITERAL_INVALID","features":[197]},{"name":"DBLITERAL_LEVEL_NAME","features":[197]},{"name":"DBLITERAL_LIKE_PERCENT","features":[197]},{"name":"DBLITERAL_LIKE_UNDERSCORE","features":[197]},{"name":"DBLITERAL_MEMBER_NAME","features":[197]},{"name":"DBLITERAL_PROCEDURE_NAME","features":[197]},{"name":"DBLITERAL_PROPERTY_NAME","features":[197]},{"name":"DBLITERAL_QUOTE","features":[197]},{"name":"DBLITERAL_QUOTE_SUFFIX","features":[197]},{"name":"DBLITERAL_SCHEMA_NAME","features":[197]},{"name":"DBLITERAL_SCHEMA_SEPARATOR","features":[197]},{"name":"DBLITERAL_TABLE_NAME","features":[197]},{"name":"DBLITERAL_TEXT_COMMAND","features":[197]},{"name":"DBLITERAL_USER_NAME","features":[197]},{"name":"DBLITERAL_VIEW_NAME","features":[197]},{"name":"DBMATCHTYPEENUM","features":[197]},{"name":"DBMATCHTYPE_FULL","features":[197]},{"name":"DBMATCHTYPE_NONE","features":[197]},{"name":"DBMATCHTYPE_PARTIAL","features":[197]},{"name":"DBMAXCHAR","features":[197]},{"name":"DBMEMOWNERENUM","features":[197]},{"name":"DBMEMOWNER_CLIENTOWNED","features":[197]},{"name":"DBMEMOWNER_PROVIDEROWNED","features":[197]},{"name":"DBMONEY","features":[197]},{"name":"DBMOVEFLAGSENUM","features":[197]},{"name":"DBMOVE_ALLOW_EMULATION","features":[197]},{"name":"DBMOVE_ASYNC","features":[197]},{"name":"DBMOVE_ATOMIC","features":[197]},{"name":"DBMOVE_DONT_UPDATE_LINKS","features":[197]},{"name":"DBMOVE_REPLACE_EXISTING","features":[197]},{"name":"DBOBJECT","features":[197]},{"name":"DBOBJECT","features":[197]},{"name":"DBPARAMBINDINFO","features":[197]},{"name":"DBPARAMBINDINFO","features":[197]},{"name":"DBPARAMFLAGSENUM","features":[197]},{"name":"DBPARAMFLAGSENUM20","features":[197]},{"name":"DBPARAMFLAGS_ISINPUT","features":[197]},{"name":"DBPARAMFLAGS_ISLONG","features":[197]},{"name":"DBPARAMFLAGS_ISNULLABLE","features":[197]},{"name":"DBPARAMFLAGS_ISOUTPUT","features":[197]},{"name":"DBPARAMFLAGS_ISSIGNED","features":[197]},{"name":"DBPARAMFLAGS_SCALEISNEGATIVE","features":[197]},{"name":"DBPARAMINFO","features":[197]},{"name":"DBPARAMINFO","features":[197]},{"name":"DBPARAMIOENUM","features":[197]},{"name":"DBPARAMIO_INPUT","features":[197]},{"name":"DBPARAMIO_NOTPARAM","features":[197]},{"name":"DBPARAMIO_OUTPUT","features":[197]},{"name":"DBPARAMS","features":[197]},{"name":"DBPARAMS","features":[197]},{"name":"DBPARAMTYPE_INPUT","features":[197]},{"name":"DBPARAMTYPE_INPUTOUTPUT","features":[197]},{"name":"DBPARAMTYPE_OUTPUT","features":[197]},{"name":"DBPARAMTYPE_RETURNVALUE","features":[197]},{"name":"DBPARTENUM","features":[197]},{"name":"DBPART_INVALID","features":[197]},{"name":"DBPART_LENGTH","features":[197]},{"name":"DBPART_STATUS","features":[197]},{"name":"DBPART_VALUE","features":[197]},{"name":"DBPENDINGSTATUSENUM","features":[197]},{"name":"DBPENDINGSTATUS_CHANGED","features":[197]},{"name":"DBPENDINGSTATUS_DELETED","features":[197]},{"name":"DBPENDINGSTATUS_INVALIDROW","features":[197]},{"name":"DBPENDINGSTATUS_NEW","features":[197]},{"name":"DBPENDINGSTATUS_UNCHANGED","features":[197]},{"name":"DBPOSITIONFLAGSENUM","features":[197]},{"name":"DBPOSITION_BOF","features":[197]},{"name":"DBPOSITION_EOF","features":[197]},{"name":"DBPOSITION_NOROW","features":[197]},{"name":"DBPOSITION_OK","features":[197]},{"name":"DBPROMPTOPTIONSENUM","features":[197]},{"name":"DBPROMPTOPTIONS_BROWSEONLY","features":[197]},{"name":"DBPROMPTOPTIONS_DISABLESAVEPASSWORD","features":[197]},{"name":"DBPROMPTOPTIONS_DISABLE_PROVIDER_SELECTION","features":[197]},{"name":"DBPROMPTOPTIONS_NONE","features":[197]},{"name":"DBPROMPTOPTIONS_PROPERTYSHEET","features":[197]},{"name":"DBPROMPTOPTIONS_WIZARDSHEET","features":[197]},{"name":"DBPROMPT_COMPLETE","features":[197]},{"name":"DBPROMPT_COMPLETEREQUIRED","features":[197]},{"name":"DBPROMPT_NOPROMPT","features":[197]},{"name":"DBPROMPT_PROMPT","features":[197]},{"name":"DBPROP","features":[1,143,41,197,42]},{"name":"DBPROP","features":[1,143,41,197,42]},{"name":"DBPROPENUM","features":[197]},{"name":"DBPROPENUM15","features":[197]},{"name":"DBPROPENUM20","features":[197]},{"name":"DBPROPENUM21","features":[197]},{"name":"DBPROPENUM25","features":[197]},{"name":"DBPROPENUM25_DEPRECATED","features":[197]},{"name":"DBPROPENUM26","features":[197]},{"name":"DBPROPENUMDEPRECATED","features":[197]},{"name":"DBPROPFLAGSENUM","features":[197]},{"name":"DBPROPFLAGSENUM21","features":[197]},{"name":"DBPROPFLAGSENUM25","features":[197]},{"name":"DBPROPFLAGSENUM26","features":[197]},{"name":"DBPROPFLAGS_COLUMN","features":[197]},{"name":"DBPROPFLAGS_COLUMNOK","features":[197]},{"name":"DBPROPFLAGS_DATASOURCE","features":[197]},{"name":"DBPROPFLAGS_DATASOURCECREATE","features":[197]},{"name":"DBPROPFLAGS_DATASOURCEINFO","features":[197]},{"name":"DBPROPFLAGS_DBINIT","features":[197]},{"name":"DBPROPFLAGS_INDEX","features":[197]},{"name":"DBPROPFLAGS_NOTSUPPORTED","features":[197]},{"name":"DBPROPFLAGS_PERSIST","features":[197]},{"name":"DBPROPFLAGS_READ","features":[197]},{"name":"DBPROPFLAGS_REQUIRED","features":[197]},{"name":"DBPROPFLAGS_ROWSET","features":[197]},{"name":"DBPROPFLAGS_SESSION","features":[197]},{"name":"DBPROPFLAGS_STREAM","features":[197]},{"name":"DBPROPFLAGS_TABLE","features":[197]},{"name":"DBPROPFLAGS_TRUSTEE","features":[197]},{"name":"DBPROPFLAGS_VIEW","features":[197]},{"name":"DBPROPFLAGS_WRITE","features":[197]},{"name":"DBPROPIDSET","features":[197]},{"name":"DBPROPIDSET","features":[197]},{"name":"DBPROPINFO","features":[1,41,197,42]},{"name":"DBPROPINFO","features":[1,41,197,42]},{"name":"DBPROPINFOSET","features":[1,41,197,42]},{"name":"DBPROPINFOSET","features":[1,41,197,42]},{"name":"DBPROPOPTIONSENUM","features":[197]},{"name":"DBPROPOPTIONS_OPTIONAL","features":[197]},{"name":"DBPROPOPTIONS_REQUIRED","features":[197]},{"name":"DBPROPOPTIONS_SETIFCHEAP","features":[197]},{"name":"DBPROPSET","features":[1,143,41,197,42]},{"name":"DBPROPSET","features":[1,143,41,197,42]},{"name":"DBPROPSET_MSDAORA8_ROWSET","features":[197]},{"name":"DBPROPSET_MSDAORA_ROWSET","features":[197]},{"name":"DBPROPSET_MSDSDBINIT","features":[197]},{"name":"DBPROPSET_MSDSSESSION","features":[197]},{"name":"DBPROPSET_PERSIST","features":[197]},{"name":"DBPROPSET_PROVIDERCONNATTR","features":[197]},{"name":"DBPROPSET_PROVIDERDATASOURCEINFO","features":[197]},{"name":"DBPROPSET_PROVIDERDBINIT","features":[197]},{"name":"DBPROPSET_PROVIDERROWSET","features":[197]},{"name":"DBPROPSET_PROVIDERSTMTATTR","features":[197]},{"name":"DBPROPSET_SQLSERVERCOLUMN","features":[197]},{"name":"DBPROPSET_SQLSERVERDATASOURCE","features":[197]},{"name":"DBPROPSET_SQLSERVERDATASOURCEINFO","features":[197]},{"name":"DBPROPSET_SQLSERVERDBINIT","features":[197]},{"name":"DBPROPSET_SQLSERVERROWSET","features":[197]},{"name":"DBPROPSET_SQLSERVERSESSION","features":[197]},{"name":"DBPROPSET_SQLSERVERSTREAM","features":[197]},{"name":"DBPROPSTATUSENUM","features":[197]},{"name":"DBPROPSTATUSENUM21","features":[197]},{"name":"DBPROPSTATUS_BADCOLUMN","features":[197]},{"name":"DBPROPSTATUS_BADOPTION","features":[197]},{"name":"DBPROPSTATUS_BADVALUE","features":[197]},{"name":"DBPROPSTATUS_CONFLICTING","features":[197]},{"name":"DBPROPSTATUS_NOTALLSETTABLE","features":[197]},{"name":"DBPROPSTATUS_NOTAVAILABLE","features":[197]},{"name":"DBPROPSTATUS_NOTSET","features":[197]},{"name":"DBPROPSTATUS_NOTSETTABLE","features":[197]},{"name":"DBPROPSTATUS_NOTSUPPORTED","features":[197]},{"name":"DBPROPSTATUS_OK","features":[197]},{"name":"DBPROPVAL_AO_RANDOM","features":[197]},{"name":"DBPROPVAL_AO_SEQUENTIAL","features":[197]},{"name":"DBPROPVAL_AO_SEQUENTIALSTORAGEOBJECTS","features":[197]},{"name":"DBPROPVAL_ASYNCH_BACKGROUNDPOPULATION","features":[197]},{"name":"DBPROPVAL_ASYNCH_INITIALIZE","features":[197]},{"name":"DBPROPVAL_ASYNCH_POPULATEONDEMAND","features":[197]},{"name":"DBPROPVAL_ASYNCH_PREPOPULATE","features":[197]},{"name":"DBPROPVAL_ASYNCH_RANDOMPOPULATION","features":[197]},{"name":"DBPROPVAL_ASYNCH_SEQUENTIALPOPULATION","features":[197]},{"name":"DBPROPVAL_BD_INTRANSACTION","features":[197]},{"name":"DBPROPVAL_BD_REORGANIZATION","features":[197]},{"name":"DBPROPVAL_BD_ROWSET","features":[197]},{"name":"DBPROPVAL_BD_XTRANSACTION","features":[197]},{"name":"DBPROPVAL_BI_CROSSROWSET","features":[197]},{"name":"DBPROPVAL_BMK_KEY","features":[197]},{"name":"DBPROPVAL_BMK_NUMERIC","features":[197]},{"name":"DBPROPVAL_BO_NOINDEXUPDATE","features":[197]},{"name":"DBPROPVAL_BO_NOLOG","features":[197]},{"name":"DBPROPVAL_BO_REFINTEGRITY","features":[197]},{"name":"DBPROPVAL_CB_DELETE","features":[197]},{"name":"DBPROPVAL_CB_NON_NULL","features":[197]},{"name":"DBPROPVAL_CB_NULL","features":[197]},{"name":"DBPROPVAL_CB_PRESERVE","features":[197]},{"name":"DBPROPVAL_CD_NOTNULL","features":[197]},{"name":"DBPROPVAL_CL_END","features":[197]},{"name":"DBPROPVAL_CL_START","features":[197]},{"name":"DBPROPVAL_CM_TRANSACTIONS","features":[197]},{"name":"DBPROPVAL_CO_BEGINSWITH","features":[197]},{"name":"DBPROPVAL_CO_CASEINSENSITIVE","features":[197]},{"name":"DBPROPVAL_CO_CASESENSITIVE","features":[197]},{"name":"DBPROPVAL_CO_CONTAINS","features":[197]},{"name":"DBPROPVAL_CO_EQUALITY","features":[197]},{"name":"DBPROPVAL_CO_STRING","features":[197]},{"name":"DBPROPVAL_CS_COMMUNICATIONFAILURE","features":[197]},{"name":"DBPROPVAL_CS_INITIALIZED","features":[197]},{"name":"DBPROPVAL_CS_UNINITIALIZED","features":[197]},{"name":"DBPROPVAL_CU_DML_STATEMENTS","features":[197]},{"name":"DBPROPVAL_CU_INDEX_DEFINITION","features":[197]},{"name":"DBPROPVAL_CU_PRIVILEGE_DEFINITION","features":[197]},{"name":"DBPROPVAL_CU_TABLE_DEFINITION","features":[197]},{"name":"DBPROPVAL_DF_INITIALLY_DEFERRED","features":[197]},{"name":"DBPROPVAL_DF_INITIALLY_IMMEDIATE","features":[197]},{"name":"DBPROPVAL_DF_NOT_DEFERRABLE","features":[197]},{"name":"DBPROPVAL_DST_DOCSOURCE","features":[197]},{"name":"DBPROPVAL_DST_MDP","features":[197]},{"name":"DBPROPVAL_DST_TDP","features":[197]},{"name":"DBPROPVAL_DST_TDPANDMDP","features":[197]},{"name":"DBPROPVAL_FU_CATALOG","features":[197]},{"name":"DBPROPVAL_FU_COLUMN","features":[197]},{"name":"DBPROPVAL_FU_NOT_SUPPORTED","features":[197]},{"name":"DBPROPVAL_FU_TABLE","features":[197]},{"name":"DBPROPVAL_GB_COLLATE","features":[197]},{"name":"DBPROPVAL_GB_CONTAINS_SELECT","features":[197]},{"name":"DBPROPVAL_GB_EQUALS_SELECT","features":[197]},{"name":"DBPROPVAL_GB_NOT_SUPPORTED","features":[197]},{"name":"DBPROPVAL_GB_NO_RELATION","features":[197]},{"name":"DBPROPVAL_GU_NOTSUPPORTED","features":[197]},{"name":"DBPROPVAL_GU_SUFFIX","features":[197]},{"name":"DBPROPVAL_HT_DIFFERENT_CATALOGS","features":[197]},{"name":"DBPROPVAL_HT_DIFFERENT_PROVIDERS","features":[197]},{"name":"DBPROPVAL_IC_LOWER","features":[197]},{"name":"DBPROPVAL_IC_MIXED","features":[197]},{"name":"DBPROPVAL_IC_SENSITIVE","features":[197]},{"name":"DBPROPVAL_IC_UPPER","features":[197]},{"name":"DBPROPVAL_IN_ALLOWNULL","features":[197]},{"name":"DBPROPVAL_IN_DISALLOWNULL","features":[197]},{"name":"DBPROPVAL_IN_IGNOREANYNULL","features":[197]},{"name":"DBPROPVAL_IN_IGNORENULL","features":[197]},{"name":"DBPROPVAL_IT_BTREE","features":[197]},{"name":"DBPROPVAL_IT_CONTENT","features":[197]},{"name":"DBPROPVAL_IT_HASH","features":[197]},{"name":"DBPROPVAL_IT_OTHER","features":[197]},{"name":"DBPROPVAL_LM_INTENT","features":[197]},{"name":"DBPROPVAL_LM_NONE","features":[197]},{"name":"DBPROPVAL_LM_READ","features":[197]},{"name":"DBPROPVAL_LM_RITE","features":[197]},{"name":"DBPROPVAL_LM_SINGLEROW","features":[197]},{"name":"DBPROPVAL_MR_CONCURRENT","features":[197]},{"name":"DBPROPVAL_MR_NOTSUPPORTED","features":[197]},{"name":"DBPROPVAL_MR_SUPPORTED","features":[197]},{"name":"DBPROPVAL_NC_END","features":[197]},{"name":"DBPROPVAL_NC_HIGH","features":[197]},{"name":"DBPROPVAL_NC_LOW","features":[197]},{"name":"DBPROPVAL_NC_START","features":[197]},{"name":"DBPROPVAL_NP_ABOUTTODO","features":[197]},{"name":"DBPROPVAL_NP_DIDEVENT","features":[197]},{"name":"DBPROPVAL_NP_FAILEDTODO","features":[197]},{"name":"DBPROPVAL_NP_OKTODO","features":[197]},{"name":"DBPROPVAL_NP_SYNCHAFTER","features":[197]},{"name":"DBPROPVAL_NT_MULTIPLEROWS","features":[197]},{"name":"DBPROPVAL_NT_SINGLEROW","features":[197]},{"name":"DBPROPVAL_OA_ATEXECUTE","features":[197]},{"name":"DBPROPVAL_OA_ATROWRELEASE","features":[197]},{"name":"DBPROPVAL_OA_NOTSUPPORTED","features":[197]},{"name":"DBPROPVAL_OO_BLOB","features":[197]},{"name":"DBPROPVAL_OO_DIRECTBIND","features":[197]},{"name":"DBPROPVAL_OO_IPERSIST","features":[197]},{"name":"DBPROPVAL_OO_ROWOBJECT","features":[197]},{"name":"DBPROPVAL_OO_SCOPED","features":[197]},{"name":"DBPROPVAL_OO_SINGLETON","features":[197]},{"name":"DBPROPVAL_OP_EQUAL","features":[197]},{"name":"DBPROPVAL_OP_RELATIVE","features":[197]},{"name":"DBPROPVAL_OP_STRING","features":[197]},{"name":"DBPROPVAL_ORS_HISTOGRAM","features":[197]},{"name":"DBPROPVAL_ORS_INDEX","features":[197]},{"name":"DBPROPVAL_ORS_INTEGRATEDINDEX","features":[197]},{"name":"DBPROPVAL_ORS_STOREDPROC","features":[197]},{"name":"DBPROPVAL_ORS_TABLE","features":[197]},{"name":"DBPROPVAL_OS_AGR_AFTERSESSION","features":[197]},{"name":"DBPROPVAL_OS_CLIENTCURSOR","features":[197]},{"name":"DBPROPVAL_OS_DISABLEALL","features":[197]},{"name":"DBPROPVAL_OS_ENABLEALL","features":[197]},{"name":"DBPROPVAL_OS_RESOURCEPOOLING","features":[197]},{"name":"DBPROPVAL_OS_TXNENLISTMENT","features":[197]},{"name":"DBPROPVAL_PERSIST_ADTG","features":[197]},{"name":"DBPROPVAL_PERSIST_XML","features":[197]},{"name":"DBPROPVAL_PT_GUID","features":[197]},{"name":"DBPROPVAL_PT_GUID_NAME","features":[197]},{"name":"DBPROPVAL_PT_GUID_PROPID","features":[197]},{"name":"DBPROPVAL_PT_NAME","features":[197]},{"name":"DBPROPVAL_PT_PGUID_NAME","features":[197]},{"name":"DBPROPVAL_PT_PGUID_PROPID","features":[197]},{"name":"DBPROPVAL_PT_PROPID","features":[197]},{"name":"DBPROPVAL_RD_RESETALL","features":[197]},{"name":"DBPROPVAL_RT_APTMTTHREAD","features":[197]},{"name":"DBPROPVAL_RT_FREETHREAD","features":[197]},{"name":"DBPROPVAL_RT_SINGLETHREAD","features":[197]},{"name":"DBPROPVAL_SQL_ANSI89_IEF","features":[197]},{"name":"DBPROPVAL_SQL_ANSI92_ENTRY","features":[197]},{"name":"DBPROPVAL_SQL_ANSI92_FULL","features":[197]},{"name":"DBPROPVAL_SQL_ANSI92_INTERMEDIATE","features":[197]},{"name":"DBPROPVAL_SQL_ESCAPECLAUSES","features":[197]},{"name":"DBPROPVAL_SQL_FIPS_TRANSITIONAL","features":[197]},{"name":"DBPROPVAL_SQL_NONE","features":[197]},{"name":"DBPROPVAL_SQL_ODBC_CORE","features":[197]},{"name":"DBPROPVAL_SQL_ODBC_EXTENDED","features":[197]},{"name":"DBPROPVAL_SQL_ODBC_MINIMUM","features":[197]},{"name":"DBPROPVAL_SQL_SUBMINIMUM","features":[197]},{"name":"DBPROPVAL_SQ_COMPARISON","features":[197]},{"name":"DBPROPVAL_SQ_CORRELATEDSUBQUERIES","features":[197]},{"name":"DBPROPVAL_SQ_EXISTS","features":[197]},{"name":"DBPROPVAL_SQ_IN","features":[197]},{"name":"DBPROPVAL_SQ_QUANTIFIED","features":[197]},{"name":"DBPROPVAL_SQ_TABLE","features":[197]},{"name":"DBPROPVAL_SS_ILOCKBYTES","features":[197]},{"name":"DBPROPVAL_SS_ISEQUENTIALSTREAM","features":[197]},{"name":"DBPROPVAL_SS_ISTORAGE","features":[197]},{"name":"DBPROPVAL_SS_ISTREAM","features":[197]},{"name":"DBPROPVAL_STGM_CONVERT","features":[197]},{"name":"DBPROPVAL_STGM_DELETEONRELEASE","features":[197]},{"name":"DBPROPVAL_STGM_DIRECT","features":[197]},{"name":"DBPROPVAL_STGM_FAILIFTHERE","features":[197]},{"name":"DBPROPVAL_STGM_PRIORITY","features":[197]},{"name":"DBPROPVAL_STGM_TRANSACTED","features":[197]},{"name":"DBPROPVAL_SU_DML_STATEMENTS","features":[197]},{"name":"DBPROPVAL_SU_INDEX_DEFINITION","features":[197]},{"name":"DBPROPVAL_SU_PRIVILEGE_DEFINITION","features":[197]},{"name":"DBPROPVAL_SU_TABLE_DEFINITION","features":[197]},{"name":"DBPROPVAL_TC_ALL","features":[197]},{"name":"DBPROPVAL_TC_DDL_COMMIT","features":[197]},{"name":"DBPROPVAL_TC_DDL_IGNORE","features":[197]},{"name":"DBPROPVAL_TC_DDL_LOCK","features":[197]},{"name":"DBPROPVAL_TC_DML","features":[197]},{"name":"DBPROPVAL_TC_NONE","features":[197]},{"name":"DBPROPVAL_TI_BROWSE","features":[197]},{"name":"DBPROPVAL_TI_CHAOS","features":[197]},{"name":"DBPROPVAL_TI_CURSORSTABILITY","features":[197]},{"name":"DBPROPVAL_TI_ISOLATED","features":[197]},{"name":"DBPROPVAL_TI_READCOMMITTED","features":[197]},{"name":"DBPROPVAL_TI_READUNCOMMITTED","features":[197]},{"name":"DBPROPVAL_TI_REPEATABLEREAD","features":[197]},{"name":"DBPROPVAL_TI_SERIALIZABLE","features":[197]},{"name":"DBPROPVAL_TR_ABORT","features":[197]},{"name":"DBPROPVAL_TR_ABORT_DC","features":[197]},{"name":"DBPROPVAL_TR_ABORT_NO","features":[197]},{"name":"DBPROPVAL_TR_BOTH","features":[197]},{"name":"DBPROPVAL_TR_COMMIT","features":[197]},{"name":"DBPROPVAL_TR_COMMIT_DC","features":[197]},{"name":"DBPROPVAL_TR_COMMIT_NO","features":[197]},{"name":"DBPROPVAL_TR_DONTCARE","features":[197]},{"name":"DBPROPVAL_TR_NONE","features":[197]},{"name":"DBPROPVAL_TR_OPTIMISTIC","features":[197]},{"name":"DBPROPVAL_TS_CARDINALITY","features":[197]},{"name":"DBPROPVAL_TS_HISTOGRAM","features":[197]},{"name":"DBPROPVAL_UP_CHANGE","features":[197]},{"name":"DBPROPVAL_UP_DELETE","features":[197]},{"name":"DBPROPVAL_UP_INSERT","features":[197]},{"name":"DBPROP_ABORTPRESERVE","features":[197]},{"name":"DBPROP_ACCESSORDER","features":[197]},{"name":"DBPROP_ACTIVESESSIONS","features":[197]},{"name":"DBPROP_ALTERCOLUMN","features":[197]},{"name":"DBPROP_APPENDONLY","features":[197]},{"name":"DBPROP_ASYNCTXNABORT","features":[197]},{"name":"DBPROP_ASYNCTXNCOMMIT","features":[197]},{"name":"DBPROP_AUTH_CACHE_AUTHINFO","features":[197]},{"name":"DBPROP_AUTH_ENCRYPT_PASSWORD","features":[197]},{"name":"DBPROP_AUTH_INTEGRATED","features":[197]},{"name":"DBPROP_AUTH_MASK_PASSWORD","features":[197]},{"name":"DBPROP_AUTH_PASSWORD","features":[197]},{"name":"DBPROP_AUTH_PERSIST_ENCRYPTED","features":[197]},{"name":"DBPROP_AUTH_PERSIST_SENSITIVE_AUTHINFO","features":[197]},{"name":"DBPROP_AUTH_USERID","features":[197]},{"name":"DBPROP_BLOCKINGSTORAGEOBJECTS","features":[197]},{"name":"DBPROP_BOOKMARKINFO","features":[197]},{"name":"DBPROP_BOOKMARKS","features":[197]},{"name":"DBPROP_BOOKMARKSKIPPED","features":[197]},{"name":"DBPROP_BOOKMARKTYPE","features":[197]},{"name":"DBPROP_BYREFACCESSORS","features":[197]},{"name":"DBPROP_CACHEDEFERRED","features":[197]},{"name":"DBPROP_CANFETCHBACKWARDS","features":[197]},{"name":"DBPROP_CANHOLDROWS","features":[197]},{"name":"DBPROP_CANSCROLLBACKWARDS","features":[197]},{"name":"DBPROP_CATALOGLOCATION","features":[197]},{"name":"DBPROP_CATALOGTERM","features":[197]},{"name":"DBPROP_CATALOGUSAGE","features":[197]},{"name":"DBPROP_CHANGEINSERTEDROWS","features":[197]},{"name":"DBPROP_CLIENTCURSOR","features":[197]},{"name":"DBPROP_COLUMNDEFINITION","features":[197]},{"name":"DBPROP_COLUMNLCID","features":[197]},{"name":"DBPROP_COLUMNRESTRICT","features":[197]},{"name":"DBPROP_COL_AUTOINCREMENT","features":[197]},{"name":"DBPROP_COL_DEFAULT","features":[197]},{"name":"DBPROP_COL_DESCRIPTION","features":[197]},{"name":"DBPROP_COL_FIXEDLENGTH","features":[197]},{"name":"DBPROP_COL_INCREMENT","features":[197]},{"name":"DBPROP_COL_ISLONG","features":[197]},{"name":"DBPROP_COL_NULLABLE","features":[197]},{"name":"DBPROP_COL_PRIMARYKEY","features":[197]},{"name":"DBPROP_COL_SEED","features":[197]},{"name":"DBPROP_COL_UNIQUE","features":[197]},{"name":"DBPROP_COMMANDTIMEOUT","features":[197]},{"name":"DBPROP_COMMITPRESERVE","features":[197]},{"name":"DBPROP_COMSERVICES","features":[197]},{"name":"DBPROP_CONCATNULLBEHAVIOR","features":[197]},{"name":"DBPROP_CONNECTIONSTATUS","features":[197]},{"name":"DBPROP_CURRENTCATALOG","features":[197]},{"name":"DBPROP_DATASOURCENAME","features":[197]},{"name":"DBPROP_DATASOURCEREADONLY","features":[197]},{"name":"DBPROP_DATASOURCE_TYPE","features":[197]},{"name":"DBPROP_DBMSNAME","features":[197]},{"name":"DBPROP_DBMSVER","features":[197]},{"name":"DBPROP_DEFERRED","features":[197]},{"name":"DBPROP_DELAYSTORAGEOBJECTS","features":[197]},{"name":"DBPROP_DSOTHREADMODEL","features":[197]},{"name":"DBPROP_FILTERCOMPAREOPS","features":[197]},{"name":"DBPROP_FILTEROPS","features":[197]},{"name":"DBPROP_FINDCOMPAREOPS","features":[197]},{"name":"DBPROP_GENERATEURL","features":[197]},{"name":"DBPROP_GROUPBY","features":[197]},{"name":"DBPROP_HCHAPTER","features":[197]},{"name":"DBPROP_HETEROGENEOUSTABLES","features":[197]},{"name":"DBPROP_HIDDENCOLUMNS","features":[197]},{"name":"DBPROP_IAccessor","features":[197]},{"name":"DBPROP_IBindResource","features":[197]},{"name":"DBPROP_IChapteredRowset","features":[197]},{"name":"DBPROP_IColumnsInfo","features":[197]},{"name":"DBPROP_IColumnsInfo2","features":[197]},{"name":"DBPROP_IColumnsRowset","features":[197]},{"name":"DBPROP_ICommandCost","features":[197]},{"name":"DBPROP_ICommandTree","features":[197]},{"name":"DBPROP_ICommandValidate","features":[197]},{"name":"DBPROP_IConnectionPointContainer","features":[197]},{"name":"DBPROP_IConvertType","features":[197]},{"name":"DBPROP_ICreateRow","features":[197]},{"name":"DBPROP_IDBAsynchStatus","features":[197]},{"name":"DBPROP_IDBBinderProperties","features":[197]},{"name":"DBPROP_IDBSchemaCommand","features":[197]},{"name":"DBPROP_IDENTIFIERCASE","features":[197]},{"name":"DBPROP_IGetRow","features":[197]},{"name":"DBPROP_IGetSession","features":[197]},{"name":"DBPROP_IGetSourceRow","features":[197]},{"name":"DBPROP_ILockBytes","features":[197]},{"name":"DBPROP_IMMOBILEROWS","features":[197]},{"name":"DBPROP_IMultipleResults","features":[197]},{"name":"DBPROP_INDEX_AUTOUPDATE","features":[197]},{"name":"DBPROP_INDEX_CLUSTERED","features":[197]},{"name":"DBPROP_INDEX_FILLFACTOR","features":[197]},{"name":"DBPROP_INDEX_INITIALSIZE","features":[197]},{"name":"DBPROP_INDEX_NULLCOLLATION","features":[197]},{"name":"DBPROP_INDEX_NULLS","features":[197]},{"name":"DBPROP_INDEX_PRIMARYKEY","features":[197]},{"name":"DBPROP_INDEX_SORTBOOKMARKS","features":[197]},{"name":"DBPROP_INDEX_TEMPINDEX","features":[197]},{"name":"DBPROP_INDEX_TYPE","features":[197]},{"name":"DBPROP_INDEX_UNIQUE","features":[197]},{"name":"DBPROP_INIT_ASYNCH","features":[197]},{"name":"DBPROP_INIT_BINDFLAGS","features":[197]},{"name":"DBPROP_INIT_CATALOG","features":[197]},{"name":"DBPROP_INIT_DATASOURCE","features":[197]},{"name":"DBPROP_INIT_GENERALTIMEOUT","features":[197]},{"name":"DBPROP_INIT_HWND","features":[197]},{"name":"DBPROP_INIT_IMPERSONATION_LEVEL","features":[197]},{"name":"DBPROP_INIT_LCID","features":[197]},{"name":"DBPROP_INIT_LOCATION","features":[197]},{"name":"DBPROP_INIT_LOCKOWNER","features":[197]},{"name":"DBPROP_INIT_MODE","features":[197]},{"name":"DBPROP_INIT_OLEDBSERVICES","features":[197]},{"name":"DBPROP_INIT_PROMPT","features":[197]},{"name":"DBPROP_INIT_PROTECTION_LEVEL","features":[197]},{"name":"DBPROP_INIT_PROVIDERSTRING","features":[197]},{"name":"DBPROP_INIT_TIMEOUT","features":[197]},{"name":"DBPROP_INTERLEAVEDROWS","features":[197]},{"name":"DBPROP_IParentRowset","features":[197]},{"name":"DBPROP_IProvideMoniker","features":[197]},{"name":"DBPROP_IQuery","features":[197]},{"name":"DBPROP_IReadData","features":[197]},{"name":"DBPROP_IRegisterProvider","features":[197]},{"name":"DBPROP_IRow","features":[197]},{"name":"DBPROP_IRowChange","features":[197]},{"name":"DBPROP_IRowSchemaChange","features":[197]},{"name":"DBPROP_IRowset","features":[197]},{"name":"DBPROP_IRowsetAsynch","features":[197]},{"name":"DBPROP_IRowsetBookmark","features":[197]},{"name":"DBPROP_IRowsetChange","features":[197]},{"name":"DBPROP_IRowsetCopyRows","features":[197]},{"name":"DBPROP_IRowsetCurrentIndex","features":[197]},{"name":"DBPROP_IRowsetExactScroll","features":[197]},{"name":"DBPROP_IRowsetFind","features":[197]},{"name":"DBPROP_IRowsetIdentity","features":[197]},{"name":"DBPROP_IRowsetIndex","features":[197]},{"name":"DBPROP_IRowsetInfo","features":[197]},{"name":"DBPROP_IRowsetKeys","features":[197]},{"name":"DBPROP_IRowsetLocate","features":[197]},{"name":"DBPROP_IRowsetNewRowAfter","features":[197]},{"name":"DBPROP_IRowsetNextRowset","features":[197]},{"name":"DBPROP_IRowsetRefresh","features":[197]},{"name":"DBPROP_IRowsetResynch","features":[197]},{"name":"DBPROP_IRowsetScroll","features":[197]},{"name":"DBPROP_IRowsetUpdate","features":[197]},{"name":"DBPROP_IRowsetView","features":[197]},{"name":"DBPROP_IRowsetWatchAll","features":[197]},{"name":"DBPROP_IRowsetWatchNotify","features":[197]},{"name":"DBPROP_IRowsetWatchRegion","features":[197]},{"name":"DBPROP_IRowsetWithParameters","features":[197]},{"name":"DBPROP_IScopedOperations","features":[197]},{"name":"DBPROP_ISequentialStream","features":[197]},{"name":"DBPROP_IStorage","features":[197]},{"name":"DBPROP_IStream","features":[197]},{"name":"DBPROP_ISupportErrorInfo","features":[197]},{"name":"DBPROP_IViewChapter","features":[197]},{"name":"DBPROP_IViewFilter","features":[197]},{"name":"DBPROP_IViewRowset","features":[197]},{"name":"DBPROP_IViewSort","features":[197]},{"name":"DBPROP_LITERALBOOKMARKS","features":[197]},{"name":"DBPROP_LITERALIDENTITY","features":[197]},{"name":"DBPROP_LOCKMODE","features":[197]},{"name":"DBPROP_MAINTAINPROPS","features":[197]},{"name":"DBPROP_MARSHALLABLE","features":[197]},{"name":"DBPROP_MAXINDEXSIZE","features":[197]},{"name":"DBPROP_MAXOPENCHAPTERS","features":[197]},{"name":"DBPROP_MAXOPENROWS","features":[197]},{"name":"DBPROP_MAXORSINFILTER","features":[197]},{"name":"DBPROP_MAXPENDINGROWS","features":[197]},{"name":"DBPROP_MAXROWS","features":[197]},{"name":"DBPROP_MAXROWSIZE","features":[197]},{"name":"DBPROP_MAXROWSIZEINCLUDESBLOB","features":[197]},{"name":"DBPROP_MAXSORTCOLUMNS","features":[197]},{"name":"DBPROP_MAXTABLESINSELECT","features":[197]},{"name":"DBPROP_MAYWRITECOLUMN","features":[197]},{"name":"DBPROP_MEMORYUSAGE","features":[197]},{"name":"DBPROP_MSDAORA8_DETERMINEKEYCOLUMNS","features":[197]},{"name":"DBPROP_MSDAORA_DETERMINEKEYCOLUMNS","features":[197]},{"name":"DBPROP_MSDS_DBINIT_DATAPROVIDER","features":[197]},{"name":"DBPROP_MSDS_SESS_UNIQUENAMES","features":[197]},{"name":"DBPROP_MULTIPLECONNECTIONS","features":[197]},{"name":"DBPROP_MULTIPLEPARAMSETS","features":[197]},{"name":"DBPROP_MULTIPLERESULTS","features":[197]},{"name":"DBPROP_MULTIPLESTORAGEOBJECTS","features":[197]},{"name":"DBPROP_MULTITABLEUPDATE","features":[197]},{"name":"DBPROP_NOTIFICATIONGRANULARITY","features":[197]},{"name":"DBPROP_NOTIFICATIONPHASES","features":[197]},{"name":"DBPROP_NOTIFYCOLUMNSET","features":[197]},{"name":"DBPROP_NOTIFYROWDELETE","features":[197]},{"name":"DBPROP_NOTIFYROWFIRSTCHANGE","features":[197]},{"name":"DBPROP_NOTIFYROWINSERT","features":[197]},{"name":"DBPROP_NOTIFYROWRESYNCH","features":[197]},{"name":"DBPROP_NOTIFYROWSETCHANGED","features":[197]},{"name":"DBPROP_NOTIFYROWSETFETCHPOSITIONCHANGE","features":[197]},{"name":"DBPROP_NOTIFYROWSETRELEASE","features":[197]},{"name":"DBPROP_NOTIFYROWUNDOCHANGE","features":[197]},{"name":"DBPROP_NOTIFYROWUNDODELETE","features":[197]},{"name":"DBPROP_NOTIFYROWUNDOINSERT","features":[197]},{"name":"DBPROP_NOTIFYROWUPDATE","features":[197]},{"name":"DBPROP_NULLCOLLATION","features":[197]},{"name":"DBPROP_OLEOBJECTS","features":[197]},{"name":"DBPROP_OPENROWSETSUPPORT","features":[197]},{"name":"DBPROP_ORDERBYCOLUMNSINSELECT","features":[197]},{"name":"DBPROP_ORDEREDBOOKMARKS","features":[197]},{"name":"DBPROP_OTHERINSERT","features":[197]},{"name":"DBPROP_OTHERUPDATEDELETE","features":[197]},{"name":"DBPROP_OUTPUTENCODING","features":[197]},{"name":"DBPROP_OUTPUTPARAMETERAVAILABILITY","features":[197]},{"name":"DBPROP_OUTPUTSTREAM","features":[197]},{"name":"DBPROP_OWNINSERT","features":[197]},{"name":"DBPROP_OWNUPDATEDELETE","features":[197]},{"name":"DBPROP_PERSISTENTIDTYPE","features":[197]},{"name":"DBPROP_PREPAREABORTBEHAVIOR","features":[197]},{"name":"DBPROP_PREPARECOMMITBEHAVIOR","features":[197]},{"name":"DBPROP_PROCEDURETERM","features":[197]},{"name":"DBPROP_PROVIDERFRIENDLYNAME","features":[197]},{"name":"DBPROP_PROVIDERMEMORY","features":[197]},{"name":"DBPROP_PROVIDERNAME","features":[197]},{"name":"DBPROP_PROVIDEROLEDBVER","features":[197]},{"name":"DBPROP_PROVIDERVER","features":[197]},{"name":"DBPROP_PersistFormat","features":[197]},{"name":"DBPROP_PersistSchema","features":[197]},{"name":"DBPROP_QUICKRESTART","features":[197]},{"name":"DBPROP_QUOTEDIDENTIFIERCASE","features":[197]},{"name":"DBPROP_REENTRANTEVENTS","features":[197]},{"name":"DBPROP_REMOVEDELETED","features":[197]},{"name":"DBPROP_REPORTMULTIPLECHANGES","features":[197]},{"name":"DBPROP_RESETDATASOURCE","features":[197]},{"name":"DBPROP_RETURNPENDINGINSERTS","features":[197]},{"name":"DBPROP_ROWRESTRICT","features":[197]},{"name":"DBPROP_ROWSETCONVERSIONSONCOMMAND","features":[197]},{"name":"DBPROP_ROWSET_ASYNCH","features":[197]},{"name":"DBPROP_ROWTHREADMODEL","features":[197]},{"name":"DBPROP_ROW_BULKOPS","features":[197]},{"name":"DBPROP_SCHEMATERM","features":[197]},{"name":"DBPROP_SCHEMAUSAGE","features":[197]},{"name":"DBPROP_SERVERCURSOR","features":[197]},{"name":"DBPROP_SERVERDATAONINSERT","features":[197]},{"name":"DBPROP_SERVERNAME","features":[197]},{"name":"DBPROP_SESS_AUTOCOMMITISOLEVELS","features":[197]},{"name":"DBPROP_SKIPROWCOUNTRESULTS","features":[197]},{"name":"DBPROP_SORTONINDEX","features":[197]},{"name":"DBPROP_SQLSUPPORT","features":[197]},{"name":"DBPROP_STORAGEFLAGS","features":[197]},{"name":"DBPROP_STRONGIDENTITY","features":[197]},{"name":"DBPROP_STRUCTUREDSTORAGE","features":[197]},{"name":"DBPROP_SUBQUERIES","features":[197]},{"name":"DBPROP_SUPPORTEDTXNDDL","features":[197]},{"name":"DBPROP_SUPPORTEDTXNISOLEVELS","features":[197]},{"name":"DBPROP_SUPPORTEDTXNISORETAIN","features":[197]},{"name":"DBPROP_TABLESTATISTICS","features":[197]},{"name":"DBPROP_TABLETERM","features":[197]},{"name":"DBPROP_TBL_TEMPTABLE","features":[197]},{"name":"DBPROP_TRANSACTEDOBJECT","features":[197]},{"name":"DBPROP_TRUSTEE_AUTHENTICATION","features":[197]},{"name":"DBPROP_TRUSTEE_NEWAUTHENTICATION","features":[197]},{"name":"DBPROP_TRUSTEE_USERNAME","features":[197]},{"name":"DBPROP_UNIQUEROWS","features":[197]},{"name":"DBPROP_UPDATABILITY","features":[197]},{"name":"DBPROP_USERNAME","features":[197]},{"name":"DBPROP_Unicode","features":[197]},{"name":"DBQUERYGUID","features":[197]},{"name":"DBRANGEENUM","features":[197]},{"name":"DBRANGEENUM20","features":[197]},{"name":"DBRANGE_EXCLUDENULLS","features":[197]},{"name":"DBRANGE_EXCLUSIVEEND","features":[197]},{"name":"DBRANGE_EXCLUSIVESTART","features":[197]},{"name":"DBRANGE_INCLUSIVEEND","features":[197]},{"name":"DBRANGE_INCLUSIVESTART","features":[197]},{"name":"DBRANGE_MATCH","features":[197]},{"name":"DBRANGE_MATCH_N_MASK","features":[197]},{"name":"DBRANGE_MATCH_N_SHIFT","features":[197]},{"name":"DBRANGE_PREFIX","features":[197]},{"name":"DBREASONENUM","features":[197]},{"name":"DBREASONENUM15","features":[197]},{"name":"DBREASONENUM25","features":[197]},{"name":"DBREASON_COLUMN_RECALCULATED","features":[197]},{"name":"DBREASON_COLUMN_SET","features":[197]},{"name":"DBREASON_ROWPOSITION_CHANGED","features":[197]},{"name":"DBREASON_ROWPOSITION_CHAPTERCHANGED","features":[197]},{"name":"DBREASON_ROWPOSITION_CLEARED","features":[197]},{"name":"DBREASON_ROWSET_CHANGED","features":[197]},{"name":"DBREASON_ROWSET_FETCHPOSITIONCHANGE","features":[197]},{"name":"DBREASON_ROWSET_POPULATIONCOMPLETE","features":[197]},{"name":"DBREASON_ROWSET_POPULATIONSTOPPED","features":[197]},{"name":"DBREASON_ROWSET_RELEASE","features":[197]},{"name":"DBREASON_ROWSET_ROWSADDED","features":[197]},{"name":"DBREASON_ROW_ACTIVATE","features":[197]},{"name":"DBREASON_ROW_ASYNCHINSERT","features":[197]},{"name":"DBREASON_ROW_DELETE","features":[197]},{"name":"DBREASON_ROW_FIRSTCHANGE","features":[197]},{"name":"DBREASON_ROW_INSERT","features":[197]},{"name":"DBREASON_ROW_RELEASE","features":[197]},{"name":"DBREASON_ROW_RESYNCH","features":[197]},{"name":"DBREASON_ROW_UNDOCHANGE","features":[197]},{"name":"DBREASON_ROW_UNDODELETE","features":[197]},{"name":"DBREASON_ROW_UNDOINSERT","features":[197]},{"name":"DBREASON_ROW_UPDATE","features":[197]},{"name":"DBRESOURCEKINDENUM","features":[197]},{"name":"DBRESOURCE_CPU","features":[197]},{"name":"DBRESOURCE_DISK","features":[197]},{"name":"DBRESOURCE_INVALID","features":[197]},{"name":"DBRESOURCE_MEMORY","features":[197]},{"name":"DBRESOURCE_NETWORK","features":[197]},{"name":"DBRESOURCE_OTHER","features":[197]},{"name":"DBRESOURCE_RESPONSE","features":[197]},{"name":"DBRESOURCE_ROWS","features":[197]},{"name":"DBRESOURCE_TOTAL","features":[197]},{"name":"DBRESULTFLAGENUM","features":[197]},{"name":"DBRESULTFLAG_DEFAULT","features":[197]},{"name":"DBRESULTFLAG_ROW","features":[197]},{"name":"DBRESULTFLAG_ROWSET","features":[197]},{"name":"DBROWCHANGEKINDENUM","features":[197]},{"name":"DBROWCHANGEKIND_COUNT","features":[197]},{"name":"DBROWCHANGEKIND_DELETE","features":[197]},{"name":"DBROWCHANGEKIND_INSERT","features":[197]},{"name":"DBROWCHANGEKIND_UPDATE","features":[197]},{"name":"DBROWSTATUSENUM","features":[197]},{"name":"DBROWSTATUSENUM20","features":[197]},{"name":"DBROWSTATUS_E_CANCELED","features":[197]},{"name":"DBROWSTATUS_E_CANTRELEASE","features":[197]},{"name":"DBROWSTATUS_E_CONCURRENCYVIOLATION","features":[197]},{"name":"DBROWSTATUS_E_DELETED","features":[197]},{"name":"DBROWSTATUS_E_FAIL","features":[197]},{"name":"DBROWSTATUS_E_INTEGRITYVIOLATION","features":[197]},{"name":"DBROWSTATUS_E_INVALID","features":[197]},{"name":"DBROWSTATUS_E_LIMITREACHED","features":[197]},{"name":"DBROWSTATUS_E_MAXPENDCHANGESEXCEEDED","features":[197]},{"name":"DBROWSTATUS_E_NEWLYINSERTED","features":[197]},{"name":"DBROWSTATUS_E_OBJECTOPEN","features":[197]},{"name":"DBROWSTATUS_E_OUTOFMEMORY","features":[197]},{"name":"DBROWSTATUS_E_PENDINGINSERT","features":[197]},{"name":"DBROWSTATUS_E_PERMISSIONDENIED","features":[197]},{"name":"DBROWSTATUS_E_SCHEMAVIOLATION","features":[197]},{"name":"DBROWSTATUS_S_MULTIPLECHANGES","features":[197]},{"name":"DBROWSTATUS_S_NOCHANGE","features":[197]},{"name":"DBROWSTATUS_S_OK","features":[197]},{"name":"DBROWSTATUS_S_PENDINGCHANGES","features":[197]},{"name":"DBROWWATCHCHANGE","features":[197]},{"name":"DBROWWATCHCHANGE","features":[197]},{"name":"DBSCHEMA_LINKEDSERVERS","features":[197]},{"name":"DBSEEKENUM","features":[197]},{"name":"DBSEEK_AFTER","features":[197]},{"name":"DBSEEK_AFTEREQ","features":[197]},{"name":"DBSEEK_BEFORE","features":[197]},{"name":"DBSEEK_BEFOREEQ","features":[197]},{"name":"DBSEEK_FIRSTEQ","features":[197]},{"name":"DBSEEK_INVALID","features":[197]},{"name":"DBSEEK_LASTEQ","features":[197]},{"name":"DBSELFGUID","features":[197]},{"name":"DBSORTENUM","features":[197]},{"name":"DBSORT_ASCENDING","features":[197]},{"name":"DBSORT_DESCENDING","features":[197]},{"name":"DBSOURCETYPEENUM","features":[197]},{"name":"DBSOURCETYPEENUM20","features":[197]},{"name":"DBSOURCETYPEENUM25","features":[197]},{"name":"DBSOURCETYPE_BINDER","features":[197]},{"name":"DBSOURCETYPE_DATASOURCE","features":[197]},{"name":"DBSOURCETYPE_DATASOURCE_MDP","features":[197]},{"name":"DBSOURCETYPE_DATASOURCE_TDP","features":[197]},{"name":"DBSOURCETYPE_ENUMERATOR","features":[197]},{"name":"DBSTATUSENUM","features":[197]},{"name":"DBSTATUSENUM20","features":[197]},{"name":"DBSTATUSENUM21","features":[197]},{"name":"DBSTATUSENUM25","features":[197]},{"name":"DBSTATUSENUM26","features":[197]},{"name":"DBSTATUS_E_BADACCESSOR","features":[197]},{"name":"DBSTATUS_E_BADSTATUS","features":[197]},{"name":"DBSTATUS_E_CANCELED","features":[197]},{"name":"DBSTATUS_E_CANNOTCOMPLETE","features":[197]},{"name":"DBSTATUS_E_CANTCONVERTVALUE","features":[197]},{"name":"DBSTATUS_E_CANTCREATE","features":[197]},{"name":"DBSTATUS_E_DATAOVERFLOW","features":[197]},{"name":"DBSTATUS_E_DOESNOTEXIST","features":[197]},{"name":"DBSTATUS_E_INTEGRITYVIOLATION","features":[197]},{"name":"DBSTATUS_E_INVALIDURL","features":[197]},{"name":"DBSTATUS_E_NOTCOLLECTION","features":[197]},{"name":"DBSTATUS_E_OUTOFSPACE","features":[197]},{"name":"DBSTATUS_E_PERMISSIONDENIED","features":[197]},{"name":"DBSTATUS_E_READONLY","features":[197]},{"name":"DBSTATUS_E_RESOURCEEXISTS","features":[197]},{"name":"DBSTATUS_E_RESOURCELOCKED","features":[197]},{"name":"DBSTATUS_E_RESOURCEOUTOFSCOPE","features":[197]},{"name":"DBSTATUS_E_SCHEMAVIOLATION","features":[197]},{"name":"DBSTATUS_E_SIGNMISMATCH","features":[197]},{"name":"DBSTATUS_E_UNAVAILABLE","features":[197]},{"name":"DBSTATUS_E_VOLUMENOTFOUND","features":[197]},{"name":"DBSTATUS_S_ALREADYEXISTS","features":[197]},{"name":"DBSTATUS_S_CANNOTDELETESOURCE","features":[197]},{"name":"DBSTATUS_S_DEFAULT","features":[197]},{"name":"DBSTATUS_S_IGNORE","features":[197]},{"name":"DBSTATUS_S_ISNULL","features":[197]},{"name":"DBSTATUS_S_OK","features":[197]},{"name":"DBSTATUS_S_ROWSETCOLUMN","features":[197]},{"name":"DBSTATUS_S_TRUNCATED","features":[197]},{"name":"DBSTAT_COLUMN_CARDINALITY","features":[197]},{"name":"DBSTAT_HISTOGRAM","features":[197]},{"name":"DBSTAT_TUPLE_CARDINALITY","features":[197]},{"name":"DBTABLESTATISTICSTYPE26","features":[197]},{"name":"DBTIME","features":[197]},{"name":"DBTIMESTAMP","features":[197]},{"name":"DBTIMESTAMP","features":[197]},{"name":"DBTYPEENUM","features":[197]},{"name":"DBTYPEENUM15","features":[197]},{"name":"DBTYPEENUM20","features":[197]},{"name":"DBTYPE_ARRAY","features":[197]},{"name":"DBTYPE_BOOL","features":[197]},{"name":"DBTYPE_BSTR","features":[197]},{"name":"DBTYPE_BYREF","features":[197]},{"name":"DBTYPE_BYTES","features":[197]},{"name":"DBTYPE_CY","features":[197]},{"name":"DBTYPE_DATE","features":[197]},{"name":"DBTYPE_DBDATE","features":[197]},{"name":"DBTYPE_DBTIME","features":[197]},{"name":"DBTYPE_DBTIMESTAMP","features":[197]},{"name":"DBTYPE_DECIMAL","features":[197]},{"name":"DBTYPE_EMPTY","features":[197]},{"name":"DBTYPE_ERROR","features":[197]},{"name":"DBTYPE_FILETIME","features":[197]},{"name":"DBTYPE_GUID","features":[197]},{"name":"DBTYPE_HCHAPTER","features":[197]},{"name":"DBTYPE_I1","features":[197]},{"name":"DBTYPE_I2","features":[197]},{"name":"DBTYPE_I4","features":[197]},{"name":"DBTYPE_I8","features":[197]},{"name":"DBTYPE_IDISPATCH","features":[197]},{"name":"DBTYPE_IUNKNOWN","features":[197]},{"name":"DBTYPE_NULL","features":[197]},{"name":"DBTYPE_NUMERIC","features":[197]},{"name":"DBTYPE_PROPVARIANT","features":[197]},{"name":"DBTYPE_R4","features":[197]},{"name":"DBTYPE_R8","features":[197]},{"name":"DBTYPE_RESERVED","features":[197]},{"name":"DBTYPE_SQLVARIANT","features":[197]},{"name":"DBTYPE_STR","features":[197]},{"name":"DBTYPE_UDT","features":[197]},{"name":"DBTYPE_UI1","features":[197]},{"name":"DBTYPE_UI2","features":[197]},{"name":"DBTYPE_UI4","features":[197]},{"name":"DBTYPE_UI8","features":[197]},{"name":"DBTYPE_VARIANT","features":[197]},{"name":"DBTYPE_VARNUMERIC","features":[197]},{"name":"DBTYPE_VECTOR","features":[197]},{"name":"DBTYPE_WSTR","features":[197]},{"name":"DBUNIT_BYTE","features":[197]},{"name":"DBUNIT_GIGA_BYTE","features":[197]},{"name":"DBUNIT_HOUR","features":[197]},{"name":"DBUNIT_INVALID","features":[197]},{"name":"DBUNIT_KILO_BYTE","features":[197]},{"name":"DBUNIT_MAXIMUM","features":[197]},{"name":"DBUNIT_MEGA_BYTE","features":[197]},{"name":"DBUNIT_MICRO_SECOND","features":[197]},{"name":"DBUNIT_MILLI_SECOND","features":[197]},{"name":"DBUNIT_MINIMUM","features":[197]},{"name":"DBUNIT_MINUTE","features":[197]},{"name":"DBUNIT_NUM_LOCKS","features":[197]},{"name":"DBUNIT_NUM_MSGS","features":[197]},{"name":"DBUNIT_NUM_ROWS","features":[197]},{"name":"DBUNIT_OTHER","features":[197]},{"name":"DBUNIT_PERCENT","features":[197]},{"name":"DBUNIT_SECOND","features":[197]},{"name":"DBUNIT_WEIGHT","features":[197]},{"name":"DBUPDELRULEENUM","features":[197]},{"name":"DBUPDELRULE_CASCADE","features":[197]},{"name":"DBUPDELRULE_NOACTION","features":[197]},{"name":"DBUPDELRULE_SETDEFAULT","features":[197]},{"name":"DBUPDELRULE_SETNULL","features":[197]},{"name":"DBVARYBIN","features":[197]},{"name":"DBVARYCHAR","features":[197]},{"name":"DBVECTOR","features":[197]},{"name":"DBVECTOR","features":[197]},{"name":"DBWATCHMODEENUM","features":[197]},{"name":"DBWATCHMODE_ALL","features":[197]},{"name":"DBWATCHMODE_COUNT","features":[197]},{"name":"DBWATCHMODE_EXTEND","features":[197]},{"name":"DBWATCHMODE_MOVE","features":[197]},{"name":"DBWATCHNOTIFYENUM","features":[197]},{"name":"DBWATCHNOTIFY_QUERYDONE","features":[197]},{"name":"DBWATCHNOTIFY_QUERYREEXECUTED","features":[197]},{"name":"DBWATCHNOTIFY_ROWSCHANGED","features":[197]},{"name":"DB_ALL_EXCEPT_LIKE","features":[197]},{"name":"DB_BINDFLAGS_COLLECTION","features":[197]},{"name":"DB_BINDFLAGS_DELAYFETCHCOLUMNS","features":[197]},{"name":"DB_BINDFLAGS_DELAYFETCHSTREAM","features":[197]},{"name":"DB_BINDFLAGS_ISSTRUCTUREDDOCUMENT","features":[197]},{"name":"DB_BINDFLAGS_OPENIFEXISTS","features":[197]},{"name":"DB_BINDFLAGS_OUTPUT","features":[197]},{"name":"DB_BINDFLAGS_OVERWRITE","features":[197]},{"name":"DB_BINDFLAGS_RECURSIVE","features":[197]},{"name":"DB_COLLATION_ASC","features":[197]},{"name":"DB_COLLATION_DESC","features":[197]},{"name":"DB_COUNTUNAVAILABLE","features":[197]},{"name":"DB_E_ABORTLIMITREACHED","features":[197]},{"name":"DB_E_ALREADYINITIALIZED","features":[197]},{"name":"DB_E_ALTERRESTRICTED","features":[197]},{"name":"DB_E_ASYNCNOTSUPPORTED","features":[197]},{"name":"DB_E_BADACCESSORFLAGS","features":[197]},{"name":"DB_E_BADACCESSORHANDLE","features":[197]},{"name":"DB_E_BADACCESSORTYPE","features":[197]},{"name":"DB_E_BADBINDINFO","features":[197]},{"name":"DB_E_BADBOOKMARK","features":[197]},{"name":"DB_E_BADCHAPTER","features":[197]},{"name":"DB_E_BADCOLUMNID","features":[197]},{"name":"DB_E_BADCOMMANDFLAGS","features":[197]},{"name":"DB_E_BADCOMMANDID","features":[197]},{"name":"DB_E_BADCOMPAREOP","features":[197]},{"name":"DB_E_BADCONSTRAINTFORM","features":[197]},{"name":"DB_E_BADCONSTRAINTID","features":[197]},{"name":"DB_E_BADCONSTRAINTTYPE","features":[197]},{"name":"DB_E_BADCONVERTFLAG","features":[197]},{"name":"DB_E_BADCOPY","features":[197]},{"name":"DB_E_BADDEFERRABILITY","features":[197]},{"name":"DB_E_BADDYNAMICERRORID","features":[197]},{"name":"DB_E_BADHRESULT","features":[197]},{"name":"DB_E_BADID","features":[197]},{"name":"DB_E_BADINDEXID","features":[197]},{"name":"DB_E_BADINITSTRING","features":[197]},{"name":"DB_E_BADLOCKMODE","features":[197]},{"name":"DB_E_BADLOOKUPID","features":[197]},{"name":"DB_E_BADMATCHTYPE","features":[197]},{"name":"DB_E_BADORDINAL","features":[197]},{"name":"DB_E_BADPARAMETERNAME","features":[197]},{"name":"DB_E_BADPRECISION","features":[197]},{"name":"DB_E_BADPROPERTYVALUE","features":[197]},{"name":"DB_E_BADRATIO","features":[197]},{"name":"DB_E_BADRECORDNUM","features":[197]},{"name":"DB_E_BADREGIONHANDLE","features":[197]},{"name":"DB_E_BADROWHANDLE","features":[197]},{"name":"DB_E_BADSCALE","features":[197]},{"name":"DB_E_BADSOURCEHANDLE","features":[197]},{"name":"DB_E_BADSTARTPOSITION","features":[197]},{"name":"DB_E_BADSTATUSVALUE","features":[197]},{"name":"DB_E_BADSTORAGEFLAG","features":[197]},{"name":"DB_E_BADSTORAGEFLAGS","features":[197]},{"name":"DB_E_BADTABLEID","features":[197]},{"name":"DB_E_BADTYPE","features":[197]},{"name":"DB_E_BADTYPENAME","features":[197]},{"name":"DB_E_BADUPDATEDELETERULE","features":[197]},{"name":"DB_E_BADVALUES","features":[197]},{"name":"DB_E_BOGUS","features":[197]},{"name":"DB_E_BOOKMARKSKIPPED","features":[197]},{"name":"DB_E_BYREFACCESSORNOTSUPPORTED","features":[197]},{"name":"DB_E_CANCELED","features":[197]},{"name":"DB_E_CANNOTCONNECT","features":[197]},{"name":"DB_E_CANNOTFREE","features":[197]},{"name":"DB_E_CANNOTRESTART","features":[197]},{"name":"DB_E_CANTCANCEL","features":[197]},{"name":"DB_E_CANTCONVERTVALUE","features":[197]},{"name":"DB_E_CANTFETCHBACKWARDS","features":[197]},{"name":"DB_E_CANTFILTER","features":[197]},{"name":"DB_E_CANTORDER","features":[197]},{"name":"DB_E_CANTSCROLLBACKWARDS","features":[197]},{"name":"DB_E_CANTTRANSLATE","features":[197]},{"name":"DB_E_CHAPTERNOTRELEASED","features":[197]},{"name":"DB_E_COLUMNUNAVAILABLE","features":[197]},{"name":"DB_E_COMMANDNOTPERSISTED","features":[197]},{"name":"DB_E_CONCURRENCYVIOLATION","features":[197]},{"name":"DB_E_COSTLIMIT","features":[197]},{"name":"DB_E_DATAOVERFLOW","features":[197]},{"name":"DB_E_DELETEDROW","features":[197]},{"name":"DB_E_DIALECTNOTSUPPORTED","features":[197]},{"name":"DB_E_DROPRESTRICTED","features":[197]},{"name":"DB_E_DUPLICATECOLUMNID","features":[197]},{"name":"DB_E_DUPLICATECONSTRAINTID","features":[197]},{"name":"DB_E_DUPLICATEDATASOURCE","features":[197]},{"name":"DB_E_DUPLICATEID","features":[197]},{"name":"DB_E_DUPLICATEINDEXID","features":[197]},{"name":"DB_E_DUPLICATETABLEID","features":[197]},{"name":"DB_E_ERRORSINCOMMAND","features":[197]},{"name":"DB_E_ERRORSOCCURRED","features":[197]},{"name":"DB_E_GOALREJECTED","features":[197]},{"name":"DB_E_INDEXINUSE","features":[197]},{"name":"DB_E_INTEGRITYVIOLATION","features":[197]},{"name":"DB_E_INVALID","features":[197]},{"name":"DB_E_INVALIDTRANSITION","features":[197]},{"name":"DB_E_LIMITREJECTED","features":[197]},{"name":"DB_E_MAXPENDCHANGESEXCEEDED","features":[197]},{"name":"DB_E_MISMATCHEDPROVIDER","features":[197]},{"name":"DB_E_MULTIPLESTATEMENTS","features":[197]},{"name":"DB_E_MULTIPLESTORAGE","features":[197]},{"name":"DB_E_NEWLYINSERTED","features":[197]},{"name":"DB_E_NOAGGREGATION","features":[197]},{"name":"DB_E_NOCOLUMN","features":[197]},{"name":"DB_E_NOCOMMAND","features":[197]},{"name":"DB_E_NOCONSTRAINT","features":[197]},{"name":"DB_E_NOINDEX","features":[197]},{"name":"DB_E_NOLOCALE","features":[197]},{"name":"DB_E_NONCONTIGUOUSRANGE","features":[197]},{"name":"DB_E_NOPROVIDERSREGISTERED","features":[197]},{"name":"DB_E_NOQUERY","features":[197]},{"name":"DB_E_NOSOURCEOBJECT","features":[197]},{"name":"DB_E_NOSTATISTIC","features":[197]},{"name":"DB_E_NOTABLE","features":[197]},{"name":"DB_E_NOTAREFERENCECOLUMN","features":[197]},{"name":"DB_E_NOTASUBREGION","features":[197]},{"name":"DB_E_NOTCOLLECTION","features":[197]},{"name":"DB_E_NOTFOUND","features":[197]},{"name":"DB_E_NOTPREPARED","features":[197]},{"name":"DB_E_NOTREENTRANT","features":[197]},{"name":"DB_E_NOTSUPPORTED","features":[197]},{"name":"DB_E_NULLACCESSORNOTSUPPORTED","features":[197]},{"name":"DB_E_OBJECTCREATIONLIMITREACHED","features":[197]},{"name":"DB_E_OBJECTMISMATCH","features":[197]},{"name":"DB_E_OBJECTOPEN","features":[197]},{"name":"DB_E_OUTOFSPACE","features":[197]},{"name":"DB_E_PARAMNOTOPTIONAL","features":[197]},{"name":"DB_E_PARAMUNAVAILABLE","features":[197]},{"name":"DB_E_PENDINGCHANGES","features":[197]},{"name":"DB_E_PENDINGINSERT","features":[197]},{"name":"DB_E_READONLY","features":[197]},{"name":"DB_E_READONLYACCESSOR","features":[197]},{"name":"DB_E_RESOURCEEXISTS","features":[197]},{"name":"DB_E_RESOURCELOCKED","features":[197]},{"name":"DB_E_RESOURCENOTSUPPORTED","features":[197]},{"name":"DB_E_RESOURCEOUTOFSCOPE","features":[197]},{"name":"DB_E_ROWLIMITEXCEEDED","features":[197]},{"name":"DB_E_ROWSETINCOMMAND","features":[197]},{"name":"DB_E_ROWSNOTRELEASED","features":[197]},{"name":"DB_E_SCHEMAVIOLATION","features":[197]},{"name":"DB_E_TABLEINUSE","features":[197]},{"name":"DB_E_TIMEOUT","features":[197]},{"name":"DB_E_UNSUPPORTEDCONVERSION","features":[197]},{"name":"DB_E_WRITEONLYACCESSOR","features":[197]},{"name":"DB_IMP_LEVEL_ANONYMOUS","features":[197]},{"name":"DB_IMP_LEVEL_DELEGATE","features":[197]},{"name":"DB_IMP_LEVEL_IDENTIFY","features":[197]},{"name":"DB_IMP_LEVEL_IMPERSONATE","features":[197]},{"name":"DB_IN","features":[197]},{"name":"DB_INVALID_HACCESSOR","features":[197]},{"name":"DB_INVALID_HCHAPTER","features":[197]},{"name":"DB_LIKE_ONLY","features":[197]},{"name":"DB_LOCAL_EXCLUSIVE","features":[197]},{"name":"DB_LOCAL_SHARED","features":[197]},{"name":"DB_MODE_READ","features":[197]},{"name":"DB_MODE_READWRITE","features":[197]},{"name":"DB_MODE_SHARE_DENY_NONE","features":[197]},{"name":"DB_MODE_SHARE_DENY_READ","features":[197]},{"name":"DB_MODE_SHARE_DENY_WRITE","features":[197]},{"name":"DB_MODE_SHARE_EXCLUSIVE","features":[197]},{"name":"DB_MODE_WRITE","features":[197]},{"name":"DB_NULLGUID","features":[197]},{"name":"DB_NULL_HACCESSOR","features":[197]},{"name":"DB_NULL_HCHAPTER","features":[197]},{"name":"DB_NULL_HROW","features":[197]},{"name":"DB_NUMERIC","features":[197]},{"name":"DB_OUT","features":[197]},{"name":"DB_PROT_LEVEL_CALL","features":[197]},{"name":"DB_PROT_LEVEL_CONNECT","features":[197]},{"name":"DB_PROT_LEVEL_NONE","features":[197]},{"name":"DB_PROT_LEVEL_PKT","features":[197]},{"name":"DB_PROT_LEVEL_PKT_INTEGRITY","features":[197]},{"name":"DB_PROT_LEVEL_PKT_PRIVACY","features":[197]},{"name":"DB_PT_FUNCTION","features":[197]},{"name":"DB_PT_PROCEDURE","features":[197]},{"name":"DB_PT_UNKNOWN","features":[197]},{"name":"DB_REMOTE","features":[197]},{"name":"DB_SEARCHABLE","features":[197]},{"name":"DB_SEC_E_AUTH_FAILED","features":[197]},{"name":"DB_SEC_E_PERMISSIONDENIED","features":[197]},{"name":"DB_SEC_E_SAFEMODE_DENIED","features":[197]},{"name":"DB_S_ASYNCHRONOUS","features":[197]},{"name":"DB_S_BADROWHANDLE","features":[197]},{"name":"DB_S_BOOKMARKSKIPPED","features":[197]},{"name":"DB_S_BUFFERFULL","features":[197]},{"name":"DB_S_CANTRELEASE","features":[197]},{"name":"DB_S_COLUMNSCHANGED","features":[197]},{"name":"DB_S_COLUMNTYPEMISMATCH","features":[197]},{"name":"DB_S_COMMANDREEXECUTED","features":[197]},{"name":"DB_S_DELETEDROW","features":[197]},{"name":"DB_S_DIALECTIGNORED","features":[197]},{"name":"DB_S_ENDOFROWSET","features":[197]},{"name":"DB_S_ERRORSOCCURRED","features":[197]},{"name":"DB_S_ERRORSRETURNED","features":[197]},{"name":"DB_S_GOALCHANGED","features":[197]},{"name":"DB_S_LOCKUPGRADED","features":[197]},{"name":"DB_S_MULTIPLECHANGES","features":[197]},{"name":"DB_S_NONEXTROWSET","features":[197]},{"name":"DB_S_NORESULT","features":[197]},{"name":"DB_S_NOROWSPECIFICCOLUMNS","features":[197]},{"name":"DB_S_NOTSINGLETON","features":[197]},{"name":"DB_S_PARAMUNAVAILABLE","features":[197]},{"name":"DB_S_PROPERTIESCHANGED","features":[197]},{"name":"DB_S_ROWLIMITEXCEEDED","features":[197]},{"name":"DB_S_STOPLIMITREACHED","features":[197]},{"name":"DB_S_TOOMANYCHANGES","features":[197]},{"name":"DB_S_TYPEINFOOVERRIDDEN","features":[197]},{"name":"DB_S_UNWANTEDOPERATION","features":[197]},{"name":"DB_S_UNWANTEDPHASE","features":[197]},{"name":"DB_S_UNWANTEDREASON","features":[197]},{"name":"DB_UNSEARCHABLE","features":[197]},{"name":"DB_VARNUMERIC","features":[197]},{"name":"DCINFO","features":[1,41,197,42]},{"name":"DCINFOTYPEENUM","features":[197]},{"name":"DCINFOTYPE_VERSION","features":[197]},{"name":"DELIVERY_AGENT_FLAGS","features":[197]},{"name":"DELIVERY_AGENT_FLAG_NO_BROADCAST","features":[197]},{"name":"DELIVERY_AGENT_FLAG_NO_RESTRICTIONS","features":[197]},{"name":"DELIVERY_AGENT_FLAG_SILENT_DIAL","features":[197]},{"name":"DISPID_QUERY_ALL","features":[197]},{"name":"DISPID_QUERY_HITCOUNT","features":[197]},{"name":"DISPID_QUERY_LASTSEENTIME","features":[197]},{"name":"DISPID_QUERY_METADATA_PROPDISPID","features":[197]},{"name":"DISPID_QUERY_METADATA_PROPGUID","features":[197]},{"name":"DISPID_QUERY_METADATA_PROPMODIFIABLE","features":[197]},{"name":"DISPID_QUERY_METADATA_PROPNAME","features":[197]},{"name":"DISPID_QUERY_METADATA_STORELEVEL","features":[197]},{"name":"DISPID_QUERY_METADATA_VROOTAUTOMATIC","features":[197]},{"name":"DISPID_QUERY_METADATA_VROOTMANUAL","features":[197]},{"name":"DISPID_QUERY_METADATA_VROOTUSED","features":[197]},{"name":"DISPID_QUERY_RANK","features":[197]},{"name":"DISPID_QUERY_RANKVECTOR","features":[197]},{"name":"DISPID_QUERY_REVNAME","features":[197]},{"name":"DISPID_QUERY_UNFILTERED","features":[197]},{"name":"DISPID_QUERY_VIRTUALPATH","features":[197]},{"name":"DISPID_QUERY_WORKID","features":[197]},{"name":"DS_E_ALREADYDISABLED","features":[197]},{"name":"DS_E_ALREADYENABLED","features":[197]},{"name":"DS_E_BADREQUEST","features":[197]},{"name":"DS_E_BADRESULT","features":[197]},{"name":"DS_E_BADSEQUENCE","features":[197]},{"name":"DS_E_BUFFERTOOSMALL","features":[197]},{"name":"DS_E_CANNOTREMOVECONCURRENT","features":[197]},{"name":"DS_E_CANNOTWRITEREGISTRY","features":[197]},{"name":"DS_E_CONFIGBAD","features":[197]},{"name":"DS_E_CONFIGNOTRIGHTTYPE","features":[197]},{"name":"DS_E_DATANOTPRESENT","features":[197]},{"name":"DS_E_DATASOURCENOTAVAILABLE","features":[197]},{"name":"DS_E_DATASOURCENOTDISABLED","features":[197]},{"name":"DS_E_DUPLICATEID","features":[197]},{"name":"DS_E_INDEXDIRECTORY","features":[197]},{"name":"DS_E_INVALIDCATALOGNAME","features":[197]},{"name":"DS_E_INVALIDDATASOURCE","features":[197]},{"name":"DS_E_INVALIDTAGDB","features":[197]},{"name":"DS_E_MESSAGETOOLONG","features":[197]},{"name":"DS_E_MISSINGCATALOG","features":[197]},{"name":"DS_E_NOMOREDATA","features":[197]},{"name":"DS_E_PARAMOUTOFRANGE","features":[197]},{"name":"DS_E_PROPVERSIONMISMATCH","features":[197]},{"name":"DS_E_PROTOCOLVERSION","features":[197]},{"name":"DS_E_QUERYCANCELED","features":[197]},{"name":"DS_E_QUERYHUNG","features":[197]},{"name":"DS_E_REGISTRY","features":[197]},{"name":"DS_E_SEARCHCATNAMECOLLISION","features":[197]},{"name":"DS_E_SERVERCAPACITY","features":[197]},{"name":"DS_E_SERVERERROR","features":[197]},{"name":"DS_E_SETSTATUSINPROGRESS","features":[197]},{"name":"DS_E_TOOMANYDATASOURCES","features":[197]},{"name":"DS_E_UNKNOWNPARAM","features":[197]},{"name":"DS_E_UNKNOWNREQUEST","features":[197]},{"name":"DS_E_VALUETOOLARGE","features":[197]},{"name":"DataLinks","features":[197]},{"name":"DataSource","features":[197]},{"name":"DataSourceListener","features":[197]},{"name":"DataSourceObject","features":[197]},{"name":"EBindInfoOptions","features":[197]},{"name":"ERRORINFO","features":[197]},{"name":"ERRORINFO","features":[197]},{"name":"ERROR_FTE","features":[197]},{"name":"ERROR_FTE_CB","features":[197]},{"name":"ERROR_FTE_FD","features":[197]},{"name":"ERROR_SOURCE_CMDLINE","features":[197]},{"name":"ERROR_SOURCE_COLLATOR","features":[197]},{"name":"ERROR_SOURCE_CONNMGR","features":[197]},{"name":"ERROR_SOURCE_CONTENT_SOURCE","features":[197]},{"name":"ERROR_SOURCE_DATASOURCE","features":[197]},{"name":"ERROR_SOURCE_DAV","features":[197]},{"name":"ERROR_SOURCE_EXSTOREPH","features":[197]},{"name":"ERROR_SOURCE_FLTRDMN","features":[197]},{"name":"ERROR_SOURCE_GATHERER","features":[197]},{"name":"ERROR_SOURCE_INDEXER","features":[197]},{"name":"ERROR_SOURCE_MSS","features":[197]},{"name":"ERROR_SOURCE_NETWORKING","features":[197]},{"name":"ERROR_SOURCE_NLADMIN","features":[197]},{"name":"ERROR_SOURCE_NOTESPH","features":[197]},{"name":"ERROR_SOURCE_OLEDB_BINDER","features":[197]},{"name":"ERROR_SOURCE_PEOPLE_IMPORT","features":[197]},{"name":"ERROR_SOURCE_PROTHNDLR","features":[197]},{"name":"ERROR_SOURCE_QUERY","features":[197]},{"name":"ERROR_SOURCE_REMOTE_EXSTOREPH","features":[197]},{"name":"ERROR_SOURCE_SCHEMA","features":[197]},{"name":"ERROR_SOURCE_SCRIPTPI","features":[197]},{"name":"ERROR_SOURCE_SECURITY","features":[197]},{"name":"ERROR_SOURCE_SETUP","features":[197]},{"name":"ERROR_SOURCE_SRCH_SCHEMA_CACHE","features":[197]},{"name":"ERROR_SOURCE_XML","features":[197]},{"name":"EVENT_AUDIENCECOMPUTATION_CANNOTSTART","features":[197]},{"name":"EVENT_AUTOCAT_CANT_CREATE_FILE_SHARE","features":[197]},{"name":"EVENT_AUTOCAT_PERFMON","features":[197]},{"name":"EVENT_CONFIG_ERROR","features":[197]},{"name":"EVENT_CONFIG_SYNTAX","features":[197]},{"name":"EVENT_CRAWL_SCHEDULED","features":[197]},{"name":"EVENT_DETAILED_FILTERPOOL_ADD_FAILED","features":[197]},{"name":"EVENT_DSS_NOT_ENABLED","features":[197]},{"name":"EVENT_ENUMERATE_SESSIONS_FAILED","features":[197]},{"name":"EVENT_EXCEPTION","features":[197]},{"name":"EVENT_FAILED_CREATE_GATHERER_LOG","features":[197]},{"name":"EVENT_FAILED_INITIALIZE_CRAWL","features":[197]},{"name":"EVENT_FILTERPOOL_ADD_FAILED","features":[197]},{"name":"EVENT_FILTERPOOL_DELETE_FAILED","features":[197]},{"name":"EVENT_FILTER_HOST_FORCE_TERMINATE","features":[197]},{"name":"EVENT_FILTER_HOST_NOT_INITIALIZED","features":[197]},{"name":"EVENT_FILTER_HOST_NOT_TERMINATED","features":[197]},{"name":"EVENT_GATHERER_DATASOURCE","features":[197]},{"name":"EVENT_GATHERER_PERFMON","features":[197]},{"name":"EVENT_GATHERSVC_PERFMON","features":[197]},{"name":"EVENT_GATHER_ADVISE_FAILED","features":[197]},{"name":"EVENT_GATHER_APP_INIT_FAILED","features":[197]},{"name":"EVENT_GATHER_AUTODESCENCODE_INVALID","features":[197]},{"name":"EVENT_GATHER_AUTODESCLEN_ADJUSTED","features":[197]},{"name":"EVENT_GATHER_BACKUPAPP_COMPLETE","features":[197]},{"name":"EVENT_GATHER_BACKUPAPP_ERROR","features":[197]},{"name":"EVENT_GATHER_CANT_CREATE_DOCID","features":[197]},{"name":"EVENT_GATHER_CANT_DELETE_DOCID","features":[197]},{"name":"EVENT_GATHER_CHECKPOINT_CORRUPT","features":[197]},{"name":"EVENT_GATHER_CHECKPOINT_FAILED","features":[197]},{"name":"EVENT_GATHER_CHECKPOINT_FILE_MISSING","features":[197]},{"name":"EVENT_GATHER_CRAWL_IN_PROGRESS","features":[197]},{"name":"EVENT_GATHER_CRAWL_NOT_STARTED","features":[197]},{"name":"EVENT_GATHER_CRAWL_SEED_ERROR","features":[197]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED","features":[197]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED_INIT","features":[197]},{"name":"EVENT_GATHER_CRITICAL_ERROR","features":[197]},{"name":"EVENT_GATHER_DAEMON_TERMINATED","features":[197]},{"name":"EVENT_GATHER_DELETING_HISTORY_ITEMS","features":[197]},{"name":"EVENT_GATHER_DIRTY_STARTUP","features":[197]},{"name":"EVENT_GATHER_DISK_FULL","features":[197]},{"name":"EVENT_GATHER_END_ADAPTIVE","features":[197]},{"name":"EVENT_GATHER_END_CRAWL","features":[197]},{"name":"EVENT_GATHER_END_INCREMENTAL","features":[197]},{"name":"EVENT_GATHER_EXCEPTION","features":[197]},{"name":"EVENT_GATHER_FLUSH_FAILED","features":[197]},{"name":"EVENT_GATHER_FROM_NOT_SET","features":[197]},{"name":"EVENT_GATHER_HISTORY_CORRUPTION_DETECTED","features":[197]},{"name":"EVENT_GATHER_INPLACE_INDEX_REBUILD","features":[197]},{"name":"EVENT_GATHER_INTERNAL","features":[197]},{"name":"EVENT_GATHER_INVALID_NETWORK_ACCESS_ACCOUNT","features":[197]},{"name":"EVENT_GATHER_LOCK_FAILED","features":[197]},{"name":"EVENT_GATHER_NO_CRAWL_SEEDS","features":[197]},{"name":"EVENT_GATHER_NO_SCHEMA","features":[197]},{"name":"EVENT_GATHER_OBJ_INIT_FAILED","features":[197]},{"name":"EVENT_GATHER_PLUGINMGR_INIT_FAILED","features":[197]},{"name":"EVENT_GATHER_PLUGIN_INIT_FAILED","features":[197]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_INIT_FAILED","features":[197]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_LOAD_FAILED","features":[197]},{"name":"EVENT_GATHER_READ_CHECKPOINT_FAILED","features":[197]},{"name":"EVENT_GATHER_RECOVERY_FAILURE","features":[197]},{"name":"EVENT_GATHER_REG_MISSING","features":[197]},{"name":"EVENT_GATHER_RESET_START","features":[197]},{"name":"EVENT_GATHER_RESTOREAPP_COMPLETE","features":[197]},{"name":"EVENT_GATHER_RESTOREAPP_ERROR","features":[197]},{"name":"EVENT_GATHER_RESTORE_CHECKPOINT_FAILED","features":[197]},{"name":"EVENT_GATHER_RESTORE_COMPLETE","features":[197]},{"name":"EVENT_GATHER_RESTORE_ERROR","features":[197]},{"name":"EVENT_GATHER_RESUME","features":[197]},{"name":"EVENT_GATHER_SAVE_FAILED","features":[197]},{"name":"EVENT_GATHER_SERVICE_INIT","features":[197]},{"name":"EVENT_GATHER_START_CRAWL","features":[197]},{"name":"EVENT_GATHER_START_CRAWL_IF_RESET","features":[197]},{"name":"EVENT_GATHER_START_PAUSE","features":[197]},{"name":"EVENT_GATHER_STOP_START","features":[197]},{"name":"EVENT_GATHER_SYSTEM_LCID_CHANGED","features":[197]},{"name":"EVENT_GATHER_THROTTLE","features":[197]},{"name":"EVENT_GATHER_TRANSACTION_FAIL","features":[197]},{"name":"EVENT_HASHMAP_INSERT","features":[197]},{"name":"EVENT_HASHMAP_UPDATE","features":[197]},{"name":"EVENT_INDEXER_ADD_DSS_DISCONNECT","features":[197]},{"name":"EVENT_INDEXER_ADD_DSS_FAILED","features":[197]},{"name":"EVENT_INDEXER_ADD_DSS_SUCCEEDED","features":[197]},{"name":"EVENT_INDEXER_BUILD_ENDED","features":[197]},{"name":"EVENT_INDEXER_BUILD_FAILED","features":[197]},{"name":"EVENT_INDEXER_BUILD_START","features":[197]},{"name":"EVENT_INDEXER_CI_LOAD_ERROR","features":[197]},{"name":"EVENT_INDEXER_DSS_ALREADY_ADDED","features":[197]},{"name":"EVENT_INDEXER_DSS_CONTACT_FAILED","features":[197]},{"name":"EVENT_INDEXER_DSS_UNABLE_TO_REMOVE","features":[197]},{"name":"EVENT_INDEXER_FAIL_TO_CREATE_PER_USER_CATALOG","features":[197]},{"name":"EVENT_INDEXER_FAIL_TO_SET_MAX_JETINSTANCE","features":[197]},{"name":"EVENT_INDEXER_FAIL_TO_UNLOAD_PER_USER_CATALOG","features":[197]},{"name":"EVENT_INDEXER_INIT_ERROR","features":[197]},{"name":"EVENT_INDEXER_INVALID_DIRECTORY","features":[197]},{"name":"EVENT_INDEXER_LOAD_FAIL","features":[197]},{"name":"EVENT_INDEXER_MISSING_APP_DIRECTORY","features":[197]},{"name":"EVENT_INDEXER_NEW_PROJECT","features":[197]},{"name":"EVENT_INDEXER_NO_SEARCH_SERVERS","features":[197]},{"name":"EVENT_INDEXER_OUT_OF_DATABASE_INSTANCE","features":[197]},{"name":"EVENT_INDEXER_PAUSED_FOR_DISKFULL","features":[197]},{"name":"EVENT_INDEXER_PERFMON","features":[197]},{"name":"EVENT_INDEXER_PROPSTORE_INIT_FAILED","features":[197]},{"name":"EVENT_INDEXER_PROP_ABORTED","features":[197]},{"name":"EVENT_INDEXER_PROP_COMMITTED","features":[197]},{"name":"EVENT_INDEXER_PROP_COMMIT_FAILED","features":[197]},{"name":"EVENT_INDEXER_PROP_ERROR","features":[197]},{"name":"EVENT_INDEXER_PROP_STARTED","features":[197]},{"name":"EVENT_INDEXER_PROP_STATE_CORRUPT","features":[197]},{"name":"EVENT_INDEXER_PROP_STOPPED","features":[197]},{"name":"EVENT_INDEXER_PROP_SUCCEEDED","features":[197]},{"name":"EVENT_INDEXER_REG_ERROR","features":[197]},{"name":"EVENT_INDEXER_REG_MISSING","features":[197]},{"name":"EVENT_INDEXER_REMOVED_PROJECT","features":[197]},{"name":"EVENT_INDEXER_REMOVE_DSS_FAILED","features":[197]},{"name":"EVENT_INDEXER_REMOVE_DSS_SUCCEEDED","features":[197]},{"name":"EVENT_INDEXER_RESET_FOR_CORRUPTION","features":[197]},{"name":"EVENT_INDEXER_SCHEMA_COPY_ERROR","features":[197]},{"name":"EVENT_INDEXER_SHUTDOWN","features":[197]},{"name":"EVENT_INDEXER_STARTED","features":[197]},{"name":"EVENT_INDEXER_VERIFY_PROP_ACCOUNT","features":[197]},{"name":"EVENT_LEARN_COMPILE_FAILED","features":[197]},{"name":"EVENT_LEARN_CREATE_DB_FAILED","features":[197]},{"name":"EVENT_LEARN_PROPAGATION_COPY_FAILED","features":[197]},{"name":"EVENT_LEARN_PROPAGATION_FAILED","features":[197]},{"name":"EVENT_LOCAL_GROUPS_CACHE_FLUSHED","features":[197]},{"name":"EVENT_LOCAL_GROUP_NOT_EXPANDED","features":[197]},{"name":"EVENT_NOTIFICATION_FAILURE","features":[197]},{"name":"EVENT_NOTIFICATION_FAILURE_SCOPE_EXCEEDED_LOGGING","features":[197]},{"name":"EVENT_NOTIFICATION_RESTORED","features":[197]},{"name":"EVENT_NOTIFICATION_RESTORED_SCOPE_EXCEEDED_LOGGING","features":[197]},{"name":"EVENT_NOTIFICATION_THREAD_EXIT_FAILED","features":[197]},{"name":"EVENT_OUTOFMEMORY","features":[197]},{"name":"EVENT_PERF_COUNTERS_ALREADY_EXISTS","features":[197]},{"name":"EVENT_PERF_COUNTERS_NOT_LOADED","features":[197]},{"name":"EVENT_PERF_COUNTERS_REGISTRY_TROUBLE","features":[197]},{"name":"EVENT_PROTOCOL_HOST_FORCE_TERMINATE","features":[197]},{"name":"EVENT_REG_VERSION","features":[197]},{"name":"EVENT_SSSEARCH_CREATE_PATH_RULES_FAILED","features":[197]},{"name":"EVENT_SSSEARCH_CSM_SAVE_FAILED","features":[197]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_FAILED","features":[197]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_ROLLBACK_ERRORS","features":[197]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_SUCCEEDED","features":[197]},{"name":"EVENT_SSSEARCH_DROPPED_EVENTS","features":[197]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_FAILED","features":[197]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_STARTED","features":[197]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_SUCCEEDED","features":[197]},{"name":"EVENT_SSSEARCH_SETUP_FAILED","features":[197]},{"name":"EVENT_SSSEARCH_SETUP_SUCCEEDED","features":[197]},{"name":"EVENT_SSSEARCH_STARTED","features":[197]},{"name":"EVENT_SSSEARCH_STARTING_SETUP","features":[197]},{"name":"EVENT_SSSEARCH_STOPPED","features":[197]},{"name":"EVENT_STS_INIT_SECURITY_FAILED","features":[197]},{"name":"EVENT_SYSTEM_EXCEPTION","features":[197]},{"name":"EVENT_TRANSACTION_READ","features":[197]},{"name":"EVENT_TRANSLOG_APPEND","features":[197]},{"name":"EVENT_TRANSLOG_CREATE","features":[197]},{"name":"EVENT_TRANSLOG_CREATE_TRX","features":[197]},{"name":"EVENT_TRANSLOG_UPDATE","features":[197]},{"name":"EVENT_UNPRIVILEGED_SERVICE_ACCOUNT","features":[197]},{"name":"EVENT_USING_DIFFERENT_WORD_BREAKER","features":[197]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILE","features":[197]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILES","features":[197]},{"name":"EVENT_WBREAKER_NOT_LOADED","features":[197]},{"name":"EVENT_WIN32_ERROR","features":[197]},{"name":"EXCI_E_ACCESS_DENIED","features":[197]},{"name":"EXCI_E_BADCONFIG_OR_ACCESSDENIED","features":[197]},{"name":"EXCI_E_INVALID_ACCOUNT_INFO","features":[197]},{"name":"EXCI_E_INVALID_EXCHANGE_SERVER","features":[197]},{"name":"EXCI_E_INVALID_SERVER_CONFIG","features":[197]},{"name":"EXCI_E_NOT_ADMIN_OR_WRONG_SITE","features":[197]},{"name":"EXCI_E_NO_CONFIG","features":[197]},{"name":"EXCI_E_NO_MAPI","features":[197]},{"name":"EXCI_E_WRONG_SERVER_OR_ACCT","features":[197]},{"name":"EXSTOREPH_E_UNEXPECTED","features":[197]},{"name":"EX_ANY","features":[197]},{"name":"EX_CMDFATAL","features":[197]},{"name":"EX_CONTROL","features":[197]},{"name":"EX_DBCORRUPT","features":[197]},{"name":"EX_DBFATAL","features":[197]},{"name":"EX_DEADLOCK","features":[197]},{"name":"EX_HARDWARE","features":[197]},{"name":"EX_INFO","features":[197]},{"name":"EX_INTOK","features":[197]},{"name":"EX_LIMIT","features":[197]},{"name":"EX_MAXISEVERITY","features":[197]},{"name":"EX_MISSING","features":[197]},{"name":"EX_PERMIT","features":[197]},{"name":"EX_RESOURCE","features":[197]},{"name":"EX_SYNTAX","features":[197]},{"name":"EX_TABCORRUPT","features":[197]},{"name":"EX_TYPE","features":[197]},{"name":"EX_USER","features":[197]},{"name":"FAIL","features":[197]},{"name":"FF_INDEXCOMPLEXURLS","features":[197]},{"name":"FF_SUPPRESSINDEXING","features":[197]},{"name":"FILTERED_DATA_SOURCES","features":[197]},{"name":"FLTRDMN_E_CANNOT_DECRYPT_PASSWORD","features":[197]},{"name":"FLTRDMN_E_ENCRYPTED_DOCUMENT","features":[197]},{"name":"FLTRDMN_E_FILTER_INIT_FAILED","features":[197]},{"name":"FLTRDMN_E_QI_FILTER_FAILED","features":[197]},{"name":"FLTRDMN_E_UNEXPECTED","features":[197]},{"name":"FOLLOW_FLAGS","features":[197]},{"name":"FTE_E_ADMIN_BLOB_CORRUPT","features":[197]},{"name":"FTE_E_AFFINITY_MASK","features":[197]},{"name":"FTE_E_ALREADY_INITIALIZED","features":[197]},{"name":"FTE_E_ANOTHER_STATUS_CHANGE_IS_ALREADY_ACTIVE","features":[197]},{"name":"FTE_E_BATCH_ABORTED","features":[197]},{"name":"FTE_E_CATALOG_ALREADY_EXISTS","features":[197]},{"name":"FTE_E_CATALOG_DOES_NOT_EXIST","features":[197]},{"name":"FTE_E_CB_CBID_OUT_OF_BOUND","features":[197]},{"name":"FTE_E_CB_NOT_ENOUGH_AVAIL_PHY_MEM","features":[197]},{"name":"FTE_E_CB_NOT_ENOUGH_OCC_BUFFER","features":[197]},{"name":"FTE_E_CB_OUT_OF_MEMORY","features":[197]},{"name":"FTE_E_COM_SIGNATURE_VALIDATION","features":[197]},{"name":"FTE_E_CORRUPT_GATHERER_HASH_MAP","features":[197]},{"name":"FTE_E_CORRUPT_PROPERTY_STORE","features":[197]},{"name":"FTE_E_CORRUPT_WORDLIST","features":[197]},{"name":"FTE_E_DATATYPE_MISALIGNMENT","features":[197]},{"name":"FTE_E_DEPENDENT_TRAN_FAILED_TO_PERSIST","features":[197]},{"name":"FTE_E_DOC_TOO_HUGE","features":[197]},{"name":"FTE_E_DUPLICATE_OBJECT","features":[197]},{"name":"FTE_E_ERROR_WRITING_REGISTRY","features":[197]},{"name":"FTE_E_EXCEEDED_MAX_PLUGINS","features":[197]},{"name":"FTE_E_FAILED_TO_CREATE_ACCESSOR","features":[197]},{"name":"FTE_E_FAILURE_TO_POST_SETCOMPLETION_STATUS","features":[197]},{"name":"FTE_E_FD_DID_NOT_CONNECT","features":[197]},{"name":"FTE_E_FD_DOC_TIMEOUT","features":[197]},{"name":"FTE_E_FD_DOC_UNEXPECTED_EXIT","features":[197]},{"name":"FTE_E_FD_FAILED_TO_LOAD_IFILTER","features":[197]},{"name":"FTE_E_FD_FILTER_CAUSED_SHARING_VIOLATION","features":[197]},{"name":"FTE_E_FD_IDLE","features":[197]},{"name":"FTE_E_FD_IFILTER_INIT_FAILED","features":[197]},{"name":"FTE_E_FD_NOISE_NO_IPERSISTSTREAM_ON_TEXT_FILTER","features":[197]},{"name":"FTE_E_FD_NOISE_NO_TEXT_FILTER","features":[197]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_INIT_FAILED","features":[197]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_LOAD_FAILED","features":[197]},{"name":"FTE_E_FD_NO_IPERSIST_INTERFACE","features":[197]},{"name":"FTE_E_FD_OCCURRENCE_OVERFLOW","features":[197]},{"name":"FTE_E_FD_OWNERSHIP_OBSOLETE","features":[197]},{"name":"FTE_E_FD_SHUTDOWN","features":[197]},{"name":"FTE_E_FD_TIMEOUT","features":[197]},{"name":"FTE_E_FD_UNEXPECTED_EXIT","features":[197]},{"name":"FTE_E_FD_UNRESPONSIVE","features":[197]},{"name":"FTE_E_FD_USED_TOO_MUCH_MEMORY","features":[197]},{"name":"FTE_E_FILTER_SINGLE_THREADED","features":[197]},{"name":"FTE_E_HIGH_MEMORY_PRESSURE","features":[197]},{"name":"FTE_E_INVALID_CODEPAGE","features":[197]},{"name":"FTE_E_INVALID_DOCID","features":[197]},{"name":"FTE_E_INVALID_ISOLATE_ERROR_BATCH","features":[197]},{"name":"FTE_E_INVALID_PROG_ID","features":[197]},{"name":"FTE_E_INVALID_PROJECT_ID","features":[197]},{"name":"FTE_E_INVALID_PROPERTY","features":[197]},{"name":"FTE_E_INVALID_TYPE","features":[197]},{"name":"FTE_E_KEY_NOT_CACHED","features":[197]},{"name":"FTE_E_LIBRARY_NOT_LOADED","features":[197]},{"name":"FTE_E_NOT_PROCESSED_DUE_TO_PREVIOUS_ERRORS","features":[197]},{"name":"FTE_E_NO_MORE_PROPERTIES","features":[197]},{"name":"FTE_E_NO_PLUGINS","features":[197]},{"name":"FTE_E_NO_PROPERTY_STORE","features":[197]},{"name":"FTE_E_OUT_OF_RANGE","features":[197]},{"name":"FTE_E_PATH_TOO_LONG","features":[197]},{"name":"FTE_E_PAUSE_EXTERNAL","features":[197]},{"name":"FTE_E_PERFMON_FULL","features":[197]},{"name":"FTE_E_PERF_NOT_LOADED","features":[197]},{"name":"FTE_E_PIPE_DATA_CORRUPTED","features":[197]},{"name":"FTE_E_PIPE_NOT_CONNECTED","features":[197]},{"name":"FTE_E_PROGID_REQUIRED","features":[197]},{"name":"FTE_E_PROJECT_NOT_INITALIZED","features":[197]},{"name":"FTE_E_PROJECT_SHUTDOWN","features":[197]},{"name":"FTE_E_PROPERTY_STORE_WORKID_NOTVALID","features":[197]},{"name":"FTE_E_READONLY_CATALOG","features":[197]},{"name":"FTE_E_REDUNDANT_TRAN_FAILURE","features":[197]},{"name":"FTE_E_REJECTED_DUE_TO_PROJECT_STATUS","features":[197]},{"name":"FTE_E_RESOURCE_SHUTDOWN","features":[197]},{"name":"FTE_E_RETRY_HUGE_DOC","features":[197]},{"name":"FTE_E_RETRY_SINGLE_DOC_PER_BATCH","features":[197]},{"name":"FTE_E_SECRET_NOT_FOUND","features":[197]},{"name":"FTE_E_SERIAL_STREAM_CORRUPT","features":[197]},{"name":"FTE_E_STACK_CORRUPTED","features":[197]},{"name":"FTE_E_STATIC_THREAD_INVALID_ARGUMENTS","features":[197]},{"name":"FTE_E_UNEXPECTED_EXIT","features":[197]},{"name":"FTE_E_UNKNOWN_FD_TYPE","features":[197]},{"name":"FTE_E_UNKNOWN_PLUGIN","features":[197]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_INSTANTIATED","features":[197]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_SHUTDOWN","features":[197]},{"name":"FTE_E_URB_TOO_BIG","features":[197]},{"name":"FTE_INVALID_ADMIN_CLIENT","features":[197]},{"name":"FTE_S_BEYOND_QUOTA","features":[197]},{"name":"FTE_S_CATALOG_BLOB_MISMATCHED","features":[197]},{"name":"FTE_S_PROPERTY_RESET","features":[197]},{"name":"FTE_S_PROPERTY_STORE_END_OF_ENUMERATION","features":[197]},{"name":"FTE_S_READONLY_CATALOG","features":[197]},{"name":"FTE_S_REDUNDANT","features":[197]},{"name":"FTE_S_RESOURCES_STARTING_TO_GET_LOW","features":[197]},{"name":"FTE_S_RESUME","features":[197]},{"name":"FTE_S_STATUS_CHANGE_REQUEST","features":[197]},{"name":"FTE_S_TRY_TO_FLUSH","features":[197]},{"name":"FilterRegistration","features":[197]},{"name":"GENERATE_METHOD_PREFIXMATCH","features":[197]},{"name":"GENERATE_METHOD_STEMMED","features":[197]},{"name":"GHTR_E_INSUFFICIENT_DISK_SPACE","features":[197]},{"name":"GHTR_E_LOCAL_SERVER_UNAVAILABLE","features":[197]},{"name":"GTHR_E_ADDLINKS_FAILED_WILL_RETRY_PARENT","features":[197]},{"name":"GTHR_E_APPLICATION_NOT_FOUND","features":[197]},{"name":"GTHR_E_AUTOCAT_UNEXPECTED","features":[197]},{"name":"GTHR_E_BACKUP_VALIDATION_FAIL","features":[197]},{"name":"GTHR_E_BAD_FILTER_DAEMON","features":[197]},{"name":"GTHR_E_BAD_FILTER_HOST","features":[197]},{"name":"GTHR_E_CANNOT_ENABLE_CHECKPOINT","features":[197]},{"name":"GTHR_E_CANNOT_REMOVE_PLUGINMGR","features":[197]},{"name":"GTHR_E_CONFIG_DUP_EXTENSION","features":[197]},{"name":"GTHR_E_CONFIG_DUP_PROJECT","features":[197]},{"name":"GTHR_E_CONTENT_ID_CONFLICT","features":[197]},{"name":"GTHR_E_DIRMON_NOT_INITIALZED","features":[197]},{"name":"GTHR_E_DUPLICATE_OBJECT","features":[197]},{"name":"GTHR_E_DUPLICATE_PROJECT","features":[197]},{"name":"GTHR_E_DUPLICATE_URL","features":[197]},{"name":"GTHR_E_DUP_PROPERTY_MAPPING","features":[197]},{"name":"GTHR_E_EMPTY_DACL","features":[197]},{"name":"GTHR_E_ERROR_INITIALIZING_PERFMON","features":[197]},{"name":"GTHR_E_ERROR_OBJECT_NOT_FOUND","features":[197]},{"name":"GTHR_E_ERROR_WRITING_REGISTRY","features":[197]},{"name":"GTHR_E_FILTERPOOL_NOTFOUND","features":[197]},{"name":"GTHR_E_FILTER_FAULT","features":[197]},{"name":"GTHR_E_FILTER_INIT","features":[197]},{"name":"GTHR_E_FILTER_INTERRUPTED","features":[197]},{"name":"GTHR_E_FILTER_INVALID_MESSAGE","features":[197]},{"name":"GTHR_E_FILTER_NOT_FOUND","features":[197]},{"name":"GTHR_E_FILTER_NO_CODEPAGE","features":[197]},{"name":"GTHR_E_FILTER_NO_MORE_THREADS","features":[197]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED","features":[197]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED_QUOTA","features":[197]},{"name":"GTHR_E_FILTER_SINGLE_THREADED","features":[197]},{"name":"GTHR_E_FOLDER_CRAWLED_BY_ANOTHER_WORKSPACE","features":[197]},{"name":"GTHR_E_FORCE_NOTIFICATION_RESET","features":[197]},{"name":"GTHR_E_FROM_NOT_SPECIFIED","features":[197]},{"name":"GTHR_E_IE_OFFLINE","features":[197]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_CATEGORIES","features":[197]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_DOCUMENTS","features":[197]},{"name":"GTHR_E_INSUFFICIENT_FEATURE_TERMS","features":[197]},{"name":"GTHR_E_INVALIDFUNCTION","features":[197]},{"name":"GTHR_E_INVALID_ACCOUNT","features":[197]},{"name":"GTHR_E_INVALID_ACCOUNT_SYNTAX","features":[197]},{"name":"GTHR_E_INVALID_APPLICATION_NAME","features":[197]},{"name":"GTHR_E_INVALID_CALL_FROM_WBREAKER","features":[197]},{"name":"GTHR_E_INVALID_DIRECTORY","features":[197]},{"name":"GTHR_E_INVALID_EXTENSION","features":[197]},{"name":"GTHR_E_INVALID_GROW_FACTOR","features":[197]},{"name":"GTHR_E_INVALID_HOST_NAME","features":[197]},{"name":"GTHR_E_INVALID_LOG_FILE_NAME","features":[197]},{"name":"GTHR_E_INVALID_MAPPING","features":[197]},{"name":"GTHR_E_INVALID_PATH","features":[197]},{"name":"GTHR_E_INVALID_PATH_EXPRESSION","features":[197]},{"name":"GTHR_E_INVALID_PATH_SPEC","features":[197]},{"name":"GTHR_E_INVALID_PROJECT_NAME","features":[197]},{"name":"GTHR_E_INVALID_PROXY_PORT","features":[197]},{"name":"GTHR_E_INVALID_RESOURCE_ID","features":[197]},{"name":"GTHR_E_INVALID_RETRIES","features":[197]},{"name":"GTHR_E_INVALID_START_ADDRESS","features":[197]},{"name":"GTHR_E_INVALID_START_PAGE","features":[197]},{"name":"GTHR_E_INVALID_START_PAGE_HOST","features":[197]},{"name":"GTHR_E_INVALID_START_PAGE_PATH","features":[197]},{"name":"GTHR_E_INVALID_STREAM_LOGS_COUNT","features":[197]},{"name":"GTHR_E_INVALID_TIME_OUT","features":[197]},{"name":"GTHR_E_JET_BACKUP_ERROR","features":[197]},{"name":"GTHR_E_JET_RESTORE_ERROR","features":[197]},{"name":"GTHR_E_LOCAL_GROUPS_EXPANSION_INTERNAL_ERROR","features":[197]},{"name":"GTHR_E_NAME_TOO_LONG","features":[197]},{"name":"GTHR_E_NESTED_HIERARCHICAL_START_ADDRESSES","features":[197]},{"name":"GTHR_E_NOFILTERSINK","features":[197]},{"name":"GTHR_E_NON_FIXED_DRIVE","features":[197]},{"name":"GTHR_E_NOTIFICATION_FILE_SHARE_INFO_NOT_AVAILABLE","features":[197]},{"name":"GTHR_E_NOTIFICATION_LOCAL_PATH_MUST_USE_FIXED_DRIVE","features":[197]},{"name":"GTHR_E_NOTIFICATION_START_ADDRESS_INVALID","features":[197]},{"name":"GTHR_E_NOTIFICATION_START_PAGE","features":[197]},{"name":"GTHR_E_NOTIFICATION_TYPE_NOT_SUPPORTED","features":[197]},{"name":"GTHR_E_NOTIF_ACCESS_TOKEN_UPDATED","features":[197]},{"name":"GTHR_E_NOTIF_BEING_REMOVED","features":[197]},{"name":"GTHR_E_NOTIF_EXCESSIVE_THROUGHPUT","features":[197]},{"name":"GTHR_E_NO_IDENTITY","features":[197]},{"name":"GTHR_E_NO_PRTCLHNLR","features":[197]},{"name":"GTHR_E_NTF_CLIENT_NOT_SUBSCRIBED","features":[197]},{"name":"GTHR_E_OBJECT_NOT_VALID","features":[197]},{"name":"GTHR_E_OUT_OF_DOC_ID","features":[197]},{"name":"GTHR_E_PIPE_NOT_CONNECTTED","features":[197]},{"name":"GTHR_E_PLUGIN_NOT_REGISTERED","features":[197]},{"name":"GTHR_E_PROJECT_NOT_INITIALIZED","features":[197]},{"name":"GTHR_E_PROPERTIES_EXCEEDED","features":[197]},{"name":"GTHR_E_PROPERTY_LIST_NOT_INITIALIZED","features":[197]},{"name":"GTHR_E_PROXY_NAME","features":[197]},{"name":"GTHR_E_PRT_HNDLR_PROGID_MISSING","features":[197]},{"name":"GTHR_E_RECOVERABLE_EXOLEDB_ERROR","features":[197]},{"name":"GTHR_E_RETRY","features":[197]},{"name":"GTHR_E_SCHEMA_ERRORS_OCCURRED","features":[197]},{"name":"GTHR_E_SCOPES_EXCEEDED","features":[197]},{"name":"GTHR_E_SECRET_NOT_FOUND","features":[197]},{"name":"GTHR_E_SERVER_UNAVAILABLE","features":[197]},{"name":"GTHR_E_SHUTTING_DOWN","features":[197]},{"name":"GTHR_E_SINGLE_THREADED_EMBEDDING","features":[197]},{"name":"GTHR_E_TIMEOUT","features":[197]},{"name":"GTHR_E_TOO_MANY_PLUGINS","features":[197]},{"name":"GTHR_E_UNABLE_TO_READ_EXCHANGE_STORE","features":[197]},{"name":"GTHR_E_UNABLE_TO_READ_REGISTRY","features":[197]},{"name":"GTHR_E_UNKNOWN_PROTOCOL","features":[197]},{"name":"GTHR_E_UNSUPPORTED_PROPERTY_TYPE","features":[197]},{"name":"GTHR_E_URL_EXCLUDED","features":[197]},{"name":"GTHR_E_URL_UNIDENTIFIED","features":[197]},{"name":"GTHR_E_USER_AGENT_NOT_SPECIFIED","features":[197]},{"name":"GTHR_E_VALUE_NOT_AVAILABLE","features":[197]},{"name":"GTHR_S_BAD_FILE_LINK","features":[197]},{"name":"GTHR_S_CANNOT_FILTER","features":[197]},{"name":"GTHR_S_CANNOT_WORDBREAK","features":[197]},{"name":"GTHR_S_CONFIG_HAS_ACCOUNTS","features":[197]},{"name":"GTHR_S_CRAWL_ADAPTIVE","features":[197]},{"name":"GTHR_S_CRAWL_FULL","features":[197]},{"name":"GTHR_S_CRAWL_INCREMENTAL","features":[197]},{"name":"GTHR_S_CRAWL_SCHEDULED","features":[197]},{"name":"GTHR_S_END_PROCESS_LOOP_NOTIFY_QUEUE","features":[197]},{"name":"GTHR_S_END_STD_CHUNKS","features":[197]},{"name":"GTHR_S_MODIFIED_PARTS","features":[197]},{"name":"GTHR_S_NOT_ALL_PARTS","features":[197]},{"name":"GTHR_S_NO_CRAWL_SEEDS","features":[197]},{"name":"GTHR_S_NO_INDEX","features":[197]},{"name":"GTHR_S_OFFICE_CHILD","features":[197]},{"name":"GTHR_S_PAUSE_REASON_BACKOFF","features":[197]},{"name":"GTHR_S_PAUSE_REASON_EXTERNAL","features":[197]},{"name":"GTHR_S_PAUSE_REASON_PROFILE_IMPORT","features":[197]},{"name":"GTHR_S_PAUSE_REASON_UPGRADING","features":[197]},{"name":"GTHR_S_PROB_NOT_MODIFIED","features":[197]},{"name":"GTHR_S_START_FILTER_FROM_BODY","features":[197]},{"name":"GTHR_S_START_FILTER_FROM_PROTOCOL","features":[197]},{"name":"GTHR_S_STATUS_CHANGE_IGNORED","features":[197]},{"name":"GTHR_S_STATUS_END_CRAWL","features":[197]},{"name":"GTHR_S_STATUS_PAUSE","features":[197]},{"name":"GTHR_S_STATUS_RESET","features":[197]},{"name":"GTHR_S_STATUS_RESUME","features":[197]},{"name":"GTHR_S_STATUS_START","features":[197]},{"name":"GTHR_S_STATUS_STOP","features":[197]},{"name":"GTHR_S_STATUS_THROTTLE","features":[197]},{"name":"GTHR_S_TRANSACTION_IGNORED","features":[197]},{"name":"GTHR_S_USE_MIME_FILTER","features":[197]},{"name":"HACCESSOR","features":[197]},{"name":"HITRANGE","features":[197]},{"name":"IAccessor","features":[197]},{"name":"IAlterIndex","features":[197]},{"name":"IAlterTable","features":[197]},{"name":"IBindResource","features":[197]},{"name":"IChapteredRowset","features":[197]},{"name":"IColumnMapper","features":[197]},{"name":"IColumnMapperCreator","features":[197]},{"name":"IColumnsInfo","features":[197]},{"name":"IColumnsInfo2","features":[197]},{"name":"IColumnsRowset","features":[197]},{"name":"ICommand","features":[197]},{"name":"ICommandCost","features":[197]},{"name":"ICommandPersist","features":[197]},{"name":"ICommandPrepare","features":[197]},{"name":"ICommandProperties","features":[197]},{"name":"ICommandStream","features":[197]},{"name":"ICommandText","features":[197]},{"name":"ICommandValidate","features":[197]},{"name":"ICommandWithParameters","features":[197]},{"name":"ICondition","features":[197]},{"name":"ICondition2","features":[197]},{"name":"IConditionFactory","features":[197]},{"name":"IConditionFactory2","features":[197]},{"name":"IConditionGenerator","features":[197]},{"name":"IConvertType","features":[197]},{"name":"ICreateRow","features":[197]},{"name":"IDBAsynchNotify","features":[197]},{"name":"IDBAsynchStatus","features":[197]},{"name":"IDBBinderProperties","features":[197]},{"name":"IDBCreateCommand","features":[197]},{"name":"IDBCreateSession","features":[197]},{"name":"IDBDataSourceAdmin","features":[197]},{"name":"IDBInfo","features":[197]},{"name":"IDBInitialize","features":[197]},{"name":"IDBPromptInitialize","features":[197]},{"name":"IDBProperties","features":[197]},{"name":"IDBSchemaCommand","features":[197]},{"name":"IDBSchemaRowset","features":[197]},{"name":"IDCInfo","features":[197]},{"name":"IDENTIFIER_SDK_ERROR","features":[197]},{"name":"IDENTIFIER_SDK_MASK","features":[197]},{"name":"IDS_MON_BUILTIN_PROPERTY","features":[197]},{"name":"IDS_MON_BUILTIN_VIEW","features":[197]},{"name":"IDS_MON_CANNOT_CAST","features":[197]},{"name":"IDS_MON_CANNOT_CONVERT","features":[197]},{"name":"IDS_MON_COLUMN_NOT_DEFINED","features":[197]},{"name":"IDS_MON_DATE_OUT_OF_RANGE","features":[197]},{"name":"IDS_MON_DEFAULT_ERROR","features":[197]},{"name":"IDS_MON_ILLEGAL_PASSTHROUGH","features":[197]},{"name":"IDS_MON_INVALIDSELECT_COALESCE","features":[197]},{"name":"IDS_MON_INVALID_CATALOG","features":[197]},{"name":"IDS_MON_INVALID_IN_GROUP_CLAUSE","features":[197]},{"name":"IDS_MON_MATCH_STRING","features":[197]},{"name":"IDS_MON_NOT_COLUMN_OF_VIEW","features":[197]},{"name":"IDS_MON_ORDINAL_OUT_OF_RANGE","features":[197]},{"name":"IDS_MON_OR_NOT","features":[197]},{"name":"IDS_MON_OUT_OF_MEMORY","features":[197]},{"name":"IDS_MON_OUT_OF_RANGE","features":[197]},{"name":"IDS_MON_PARSE_ERR_1_PARAM","features":[197]},{"name":"IDS_MON_PARSE_ERR_2_PARAM","features":[197]},{"name":"IDS_MON_PROPERTY_NAME_IN_VIEW","features":[197]},{"name":"IDS_MON_RELATIVE_INTERVAL","features":[197]},{"name":"IDS_MON_SELECT_STAR","features":[197]},{"name":"IDS_MON_SEMI_COLON","features":[197]},{"name":"IDS_MON_VIEW_ALREADY_DEFINED","features":[197]},{"name":"IDS_MON_VIEW_NOT_DEFINED","features":[197]},{"name":"IDS_MON_WEIGHT_OUT_OF_RANGE","features":[197]},{"name":"IDX_E_BUILD_IN_PROGRESS","features":[197]},{"name":"IDX_E_CATALOG_DISMOUNTED","features":[197]},{"name":"IDX_E_CORRUPT_INDEX","features":[197]},{"name":"IDX_E_DISKFULL","features":[197]},{"name":"IDX_E_DOCUMENT_ABORTED","features":[197]},{"name":"IDX_E_DSS_NOT_CONNECTED","features":[197]},{"name":"IDX_E_IDXLSTFILE_CORRUPT","features":[197]},{"name":"IDX_E_INVALIDTAG","features":[197]},{"name":"IDX_E_INVALID_INDEX","features":[197]},{"name":"IDX_E_METAFILE_CORRUPT","features":[197]},{"name":"IDX_E_NOISELIST_NOTFOUND","features":[197]},{"name":"IDX_E_NOT_LOADED","features":[197]},{"name":"IDX_E_OBJECT_NOT_FOUND","features":[197]},{"name":"IDX_E_PROPSTORE_INIT_FAILED","features":[197]},{"name":"IDX_E_PROP_MAJOR_VERSION_MISMATCH","features":[197]},{"name":"IDX_E_PROP_MINOR_VERSION_MISMATCH","features":[197]},{"name":"IDX_E_PROP_STATE_CORRUPT","features":[197]},{"name":"IDX_E_PROP_STOPPED","features":[197]},{"name":"IDX_E_REGISTRY_ENTRY","features":[197]},{"name":"IDX_E_SEARCH_SERVER_ALREADY_EXISTS","features":[197]},{"name":"IDX_E_SEARCH_SERVER_NOT_FOUND","features":[197]},{"name":"IDX_E_STEMMER_NOTFOUND","features":[197]},{"name":"IDX_E_TOO_MANY_SEARCH_SERVERS","features":[197]},{"name":"IDX_E_USE_APPGLOBAL_PROPTABLE","features":[197]},{"name":"IDX_E_USE_DEFAULT_CONTENTCLASS","features":[197]},{"name":"IDX_E_WB_NOTFOUND","features":[197]},{"name":"IDX_S_DSS_NOT_AVAILABLE","features":[197]},{"name":"IDX_S_NO_BUILD_IN_PROGRESS","features":[197]},{"name":"IDX_S_SEARCH_SERVER_ALREADY_EXISTS","features":[197]},{"name":"IDX_S_SEARCH_SERVER_DOES_NOT_EXIST","features":[197]},{"name":"IDataConvert","features":[197]},{"name":"IDataInitialize","features":[197]},{"name":"IDataSourceLocator","features":[197]},{"name":"IEntity","features":[197]},{"name":"IEnumItemProperties","features":[197]},{"name":"IEnumSearchRoots","features":[197]},{"name":"IEnumSearchScopeRules","features":[197]},{"name":"IEnumSubscription","features":[197]},{"name":"IErrorLookup","features":[197]},{"name":"IErrorRecords","features":[197]},{"name":"IGetDataSource","features":[197]},{"name":"IGetRow","features":[197]},{"name":"IGetSession","features":[197]},{"name":"IGetSourceRow","features":[197]},{"name":"IIndexDefinition","features":[197]},{"name":"IInterval","features":[197]},{"name":"ILK_EXPLICIT_EXCLUDED","features":[197]},{"name":"ILK_EXPLICIT_INCLUDED","features":[197]},{"name":"ILK_NEGATIVE_INFINITY","features":[197]},{"name":"ILK_POSITIVE_INFINITY","features":[197]},{"name":"ILoadFilter","features":[197]},{"name":"ILoadFilterWithPrivateComActivation","features":[197]},{"name":"IMDDataset","features":[197]},{"name":"IMDFind","features":[197]},{"name":"IMDRangeRowset","features":[197]},{"name":"IMetaData","features":[197]},{"name":"IMultipleResults","features":[197]},{"name":"INCREMENTAL_ACCESS_INFO","features":[1,197]},{"name":"INET_E_AGENT_CACHE_SIZE_EXCEEDED","features":[197]},{"name":"INET_E_AGENT_CONNECTION_FAILED","features":[197]},{"name":"INET_E_AGENT_EXCEEDING_CACHE_SIZE","features":[197]},{"name":"INET_E_AGENT_MAX_SIZE_EXCEEDED","features":[197]},{"name":"INET_E_SCHEDULED_EXCLUDE_RANGE","features":[197]},{"name":"INET_E_SCHEDULED_UPDATES_DISABLED","features":[197]},{"name":"INET_E_SCHEDULED_UPDATES_RESTRICTED","features":[197]},{"name":"INET_E_SCHEDULED_UPDATE_INTERVAL","features":[197]},{"name":"INET_S_AGENT_INCREASED_CACHE_SIZE","features":[197]},{"name":"INET_S_AGENT_PART_FAIL","features":[197]},{"name":"INTERVAL_LIMIT_KIND","features":[197]},{"name":"INamedEntity","features":[197]},{"name":"INamedEntityCollector","features":[197]},{"name":"IObjectAccessControl","features":[197]},{"name":"IOpLockStatus","features":[197]},{"name":"IOpenRowset","features":[197]},{"name":"IParentRowset","features":[197]},{"name":"IProtocolHandlerSite","features":[197]},{"name":"IProvideMoniker","features":[197]},{"name":"IQueryParser","features":[197]},{"name":"IQueryParserManager","features":[197]},{"name":"IQuerySolution","features":[197]},{"name":"IReadData","features":[197]},{"name":"IRegisterProvider","features":[197]},{"name":"IRelationship","features":[197]},{"name":"IRichChunk","features":[197]},{"name":"IRow","features":[197]},{"name":"IRowChange","features":[197]},{"name":"IRowPosition","features":[197]},{"name":"IRowPositionChange","features":[197]},{"name":"IRowSchemaChange","features":[197]},{"name":"IRowset","features":[197]},{"name":"IRowsetAsynch","features":[197]},{"name":"IRowsetBookmark","features":[197]},{"name":"IRowsetChange","features":[197]},{"name":"IRowsetChangeExtInfo","features":[197]},{"name":"IRowsetChapterMember","features":[197]},{"name":"IRowsetCopyRows","features":[197]},{"name":"IRowsetCurrentIndex","features":[197]},{"name":"IRowsetEvents","features":[197]},{"name":"IRowsetExactScroll","features":[197]},{"name":"IRowsetFastLoad","features":[197]},{"name":"IRowsetFind","features":[197]},{"name":"IRowsetIdentity","features":[197]},{"name":"IRowsetIndex","features":[197]},{"name":"IRowsetInfo","features":[197]},{"name":"IRowsetKeys","features":[197]},{"name":"IRowsetLocate","features":[197]},{"name":"IRowsetNewRowAfter","features":[197]},{"name":"IRowsetNextRowset","features":[197]},{"name":"IRowsetNotify","features":[197]},{"name":"IRowsetPrioritization","features":[197]},{"name":"IRowsetQueryStatus","features":[197]},{"name":"IRowsetRefresh","features":[197]},{"name":"IRowsetResynch","features":[197]},{"name":"IRowsetScroll","features":[197]},{"name":"IRowsetUpdate","features":[197]},{"name":"IRowsetView","features":[197]},{"name":"IRowsetWatchAll","features":[197]},{"name":"IRowsetWatchNotify","features":[197]},{"name":"IRowsetWatchRegion","features":[197]},{"name":"IRowsetWithParameters","features":[197]},{"name":"ISQLErrorInfo","features":[197]},{"name":"ISQLGetDiagField","features":[197]},{"name":"ISQLRequestDiagFields","features":[197]},{"name":"ISQLServerErrorInfo","features":[197]},{"name":"ISchemaLocalizerSupport","features":[197]},{"name":"ISchemaLock","features":[197]},{"name":"ISchemaProvider","features":[197]},{"name":"IScopedOperations","features":[197]},{"name":"ISearchCatalogManager","features":[197]},{"name":"ISearchCatalogManager2","features":[197]},{"name":"ISearchCrawlScopeManager","features":[197]},{"name":"ISearchCrawlScopeManager2","features":[197]},{"name":"ISearchItemsChangedSink","features":[197]},{"name":"ISearchLanguageSupport","features":[197]},{"name":"ISearchManager","features":[197]},{"name":"ISearchManager2","features":[197]},{"name":"ISearchNotifyInlineSite","features":[197]},{"name":"ISearchPersistentItemsChangedSink","features":[197]},{"name":"ISearchProtocol","features":[197]},{"name":"ISearchProtocol2","features":[197]},{"name":"ISearchProtocolThreadContext","features":[197]},{"name":"ISearchQueryHelper","features":[197]},{"name":"ISearchQueryHits","features":[197]},{"name":"ISearchRoot","features":[197]},{"name":"ISearchScopeRule","features":[197]},{"name":"ISearchViewChangedSink","features":[197]},{"name":"ISecurityInfo","features":[197]},{"name":"IService","features":[197]},{"name":"ISessionProperties","features":[197]},{"name":"ISimpleCommandCreator","features":[197]},{"name":"ISourcesRowset","features":[197]},{"name":"IStemmer","features":[197]},{"name":"ISubscriptionItem","features":[197]},{"name":"ISubscriptionMgr","features":[197]},{"name":"ISubscriptionMgr2","features":[197]},{"name":"ITEMPROP","features":[1,41,197,42]},{"name":"ITEM_INFO","features":[197]},{"name":"ITableCreation","features":[197]},{"name":"ITableDefinition","features":[197]},{"name":"ITableDefinitionWithConstraints","features":[197]},{"name":"ITableRename","features":[197]},{"name":"ITokenCollection","features":[197]},{"name":"ITransactionJoin","features":[197]},{"name":"ITransactionLocal","features":[197]},{"name":"ITransactionObject","features":[197]},{"name":"ITrusteeAdmin","features":[197]},{"name":"ITrusteeGroupAdmin","features":[197]},{"name":"IUMS","features":[197]},{"name":"IUMSInitialize","features":[197]},{"name":"IUrlAccessor","features":[197]},{"name":"IUrlAccessor2","features":[197]},{"name":"IUrlAccessor3","features":[197]},{"name":"IUrlAccessor4","features":[197]},{"name":"IViewChapter","features":[197]},{"name":"IViewFilter","features":[197]},{"name":"IViewRowset","features":[197]},{"name":"IViewSort","features":[197]},{"name":"IWordBreaker","features":[197]},{"name":"IWordFormSink","features":[197]},{"name":"IWordSink","features":[197]},{"name":"Interval","features":[197]},{"name":"JET_GET_PROP_STORE_ERROR","features":[197]},{"name":"JET_INIT_ERROR","features":[197]},{"name":"JET_MULTIINSTANCE_DISABLED","features":[197]},{"name":"JET_NEW_PROP_STORE_ERROR","features":[197]},{"name":"JPS_E_CATALOG_DECSRIPTION_MISSING","features":[197]},{"name":"JPS_E_INSUFFICIENT_DATABASE_RESOURCES","features":[197]},{"name":"JPS_E_INSUFFICIENT_DATABASE_SESSIONS","features":[197]},{"name":"JPS_E_INSUFFICIENT_VERSION_STORAGE","features":[197]},{"name":"JPS_E_JET_ERR","features":[197]},{"name":"JPS_E_MISSING_INFORMATION","features":[197]},{"name":"JPS_E_PROPAGATION_CORRUPTION","features":[197]},{"name":"JPS_E_PROPAGATION_FILE","features":[197]},{"name":"JPS_E_PROPAGATION_VERSION_MISMATCH","features":[197]},{"name":"JPS_E_SCHEMA_ERROR","features":[197]},{"name":"JPS_E_SHARING_VIOLATION","features":[197]},{"name":"JPS_S_DUPLICATE_DOC_DETECTED","features":[197]},{"name":"KAGGETDIAG","features":[1,41,197,42]},{"name":"KAGPROPVAL_CONCUR_LOCK","features":[197]},{"name":"KAGPROPVAL_CONCUR_READ_ONLY","features":[197]},{"name":"KAGPROPVAL_CONCUR_ROWVER","features":[197]},{"name":"KAGPROPVAL_CONCUR_VALUES","features":[197]},{"name":"KAGPROP_ACCESSIBLEPROCEDURES","features":[197]},{"name":"KAGPROP_ACCESSIBLETABLES","features":[197]},{"name":"KAGPROP_ACTIVESTATEMENTS","features":[197]},{"name":"KAGPROP_AUTH_SERVERINTEGRATED","features":[197]},{"name":"KAGPROP_AUTH_TRUSTEDCONNECTION","features":[197]},{"name":"KAGPROP_BLOBSONFOCURSOR","features":[197]},{"name":"KAGPROP_CONCURRENCY","features":[197]},{"name":"KAGPROP_CURSOR","features":[197]},{"name":"KAGPROP_DRIVERNAME","features":[197]},{"name":"KAGPROP_DRIVERODBCVER","features":[197]},{"name":"KAGPROP_DRIVERVER","features":[197]},{"name":"KAGPROP_FILEUSAGE","features":[197]},{"name":"KAGPROP_FORCENOPARAMETERREBIND","features":[197]},{"name":"KAGPROP_FORCENOPREPARE","features":[197]},{"name":"KAGPROP_FORCENOREEXECUTE","features":[197]},{"name":"KAGPROP_FORCESSFIREHOSEMODE","features":[197]},{"name":"KAGPROP_INCLUDENONEXACT","features":[197]},{"name":"KAGPROP_IRowsetChangeExtInfo","features":[197]},{"name":"KAGPROP_LIKEESCAPECLAUSE","features":[197]},{"name":"KAGPROP_MARSHALLABLE","features":[197]},{"name":"KAGPROP_MAXCOLUMNSINGROUPBY","features":[197]},{"name":"KAGPROP_MAXCOLUMNSININDEX","features":[197]},{"name":"KAGPROP_MAXCOLUMNSINORDERBY","features":[197]},{"name":"KAGPROP_MAXCOLUMNSINSELECT","features":[197]},{"name":"KAGPROP_MAXCOLUMNSINTABLE","features":[197]},{"name":"KAGPROP_NUMERICFUNCTIONS","features":[197]},{"name":"KAGPROP_ODBCSQLCONFORMANCE","features":[197]},{"name":"KAGPROP_ODBCSQLOPTIEF","features":[197]},{"name":"KAGPROP_OJCAPABILITY","features":[197]},{"name":"KAGPROP_OUTERJOINS","features":[197]},{"name":"KAGPROP_POSITIONONNEWROW","features":[197]},{"name":"KAGPROP_PROCEDURES","features":[197]},{"name":"KAGPROP_QUERYBASEDUPDATES","features":[197]},{"name":"KAGPROP_SPECIALCHARACTERS","features":[197]},{"name":"KAGPROP_STRINGFUNCTIONS","features":[197]},{"name":"KAGPROP_SYSTEMFUNCTIONS","features":[197]},{"name":"KAGPROP_TIMEDATEFUNCTIONS","features":[197]},{"name":"KAGREQDIAG","features":[197,42]},{"name":"KAGREQDIAGFLAGSENUM","features":[197]},{"name":"KAGREQDIAGFLAGS_HEADER","features":[197]},{"name":"KAGREQDIAGFLAGS_RECORD","features":[197]},{"name":"LOCKMODEENUM","features":[197]},{"name":"LOCKMODE_EXCLUSIVE","features":[197]},{"name":"LOCKMODE_INVALID","features":[197]},{"name":"LOCKMODE_SHARED","features":[197]},{"name":"LeafCondition","features":[197]},{"name":"MAXNAME","features":[197]},{"name":"MAXNUMERICLEN","features":[197]},{"name":"MAXUSEVERITY","features":[197]},{"name":"MAX_QUERY_RANK","features":[197]},{"name":"MDAXISINFO","features":[197]},{"name":"MDAXISINFO","features":[197]},{"name":"MDAXIS_CHAPTERS","features":[197]},{"name":"MDAXIS_COLUMNS","features":[197]},{"name":"MDAXIS_PAGES","features":[197]},{"name":"MDAXIS_ROWS","features":[197]},{"name":"MDAXIS_SECTIONS","features":[197]},{"name":"MDAXIS_SLICERS","features":[197]},{"name":"MDDISPINFO_DRILLED_DOWN","features":[197]},{"name":"MDDISPINFO_PARENT_SAME_AS_PREV","features":[197]},{"name":"MDFF_BOLD","features":[197]},{"name":"MDFF_ITALIC","features":[197]},{"name":"MDFF_STRIKEOUT","features":[197]},{"name":"MDFF_UNDERLINE","features":[197]},{"name":"MDLEVEL_TYPE_ALL","features":[197]},{"name":"MDLEVEL_TYPE_CALCULATED","features":[197]},{"name":"MDLEVEL_TYPE_REGULAR","features":[197]},{"name":"MDLEVEL_TYPE_RESERVED1","features":[197]},{"name":"MDLEVEL_TYPE_TIME","features":[197]},{"name":"MDLEVEL_TYPE_TIME_DAYS","features":[197]},{"name":"MDLEVEL_TYPE_TIME_HALF_YEAR","features":[197]},{"name":"MDLEVEL_TYPE_TIME_HOURS","features":[197]},{"name":"MDLEVEL_TYPE_TIME_MINUTES","features":[197]},{"name":"MDLEVEL_TYPE_TIME_MONTHS","features":[197]},{"name":"MDLEVEL_TYPE_TIME_QUARTERS","features":[197]},{"name":"MDLEVEL_TYPE_TIME_SECONDS","features":[197]},{"name":"MDLEVEL_TYPE_TIME_UNDEFINED","features":[197]},{"name":"MDLEVEL_TYPE_TIME_WEEKS","features":[197]},{"name":"MDLEVEL_TYPE_TIME_YEARS","features":[197]},{"name":"MDLEVEL_TYPE_UNKNOWN","features":[197]},{"name":"MDMEASURE_AGGR_AVG","features":[197]},{"name":"MDMEASURE_AGGR_CALCULATED","features":[197]},{"name":"MDMEASURE_AGGR_COUNT","features":[197]},{"name":"MDMEASURE_AGGR_MAX","features":[197]},{"name":"MDMEASURE_AGGR_MIN","features":[197]},{"name":"MDMEASURE_AGGR_STD","features":[197]},{"name":"MDMEASURE_AGGR_SUM","features":[197]},{"name":"MDMEASURE_AGGR_UNKNOWN","features":[197]},{"name":"MDMEASURE_AGGR_VAR","features":[197]},{"name":"MDMEMBER_TYPE_ALL","features":[197]},{"name":"MDMEMBER_TYPE_FORMULA","features":[197]},{"name":"MDMEMBER_TYPE_MEASURE","features":[197]},{"name":"MDMEMBER_TYPE_REGULAR","features":[197]},{"name":"MDMEMBER_TYPE_RESERVE1","features":[197]},{"name":"MDMEMBER_TYPE_RESERVE2","features":[197]},{"name":"MDMEMBER_TYPE_RESERVE3","features":[197]},{"name":"MDMEMBER_TYPE_RESERVE4","features":[197]},{"name":"MDMEMBER_TYPE_UNKNOWN","features":[197]},{"name":"MDPROPVAL_AU_UNCHANGED","features":[197]},{"name":"MDPROPVAL_AU_UNKNOWN","features":[197]},{"name":"MDPROPVAL_AU_UNSUPPORTED","features":[197]},{"name":"MDPROPVAL_FS_FULL_SUPPORT","features":[197]},{"name":"MDPROPVAL_FS_GENERATED_COLUMN","features":[197]},{"name":"MDPROPVAL_FS_GENERATED_DIMENSION","features":[197]},{"name":"MDPROPVAL_FS_NO_SUPPORT","features":[197]},{"name":"MDPROPVAL_MC_SEARCHEDCASE","features":[197]},{"name":"MDPROPVAL_MC_SINGLECASE","features":[197]},{"name":"MDPROPVAL_MD_AFTER","features":[197]},{"name":"MDPROPVAL_MD_BEFORE","features":[197]},{"name":"MDPROPVAL_MD_SELF","features":[197]},{"name":"MDPROPVAL_MF_CREATE_CALCMEMBERS","features":[197]},{"name":"MDPROPVAL_MF_CREATE_NAMEDSETS","features":[197]},{"name":"MDPROPVAL_MF_SCOPE_GLOBAL","features":[197]},{"name":"MDPROPVAL_MF_SCOPE_SESSION","features":[197]},{"name":"MDPROPVAL_MF_WITH_CALCMEMBERS","features":[197]},{"name":"MDPROPVAL_MF_WITH_NAMEDSETS","features":[197]},{"name":"MDPROPVAL_MJC_IMPLICITCUBE","features":[197]},{"name":"MDPROPVAL_MJC_MULTICUBES","features":[197]},{"name":"MDPROPVAL_MJC_SINGLECUBE","features":[197]},{"name":"MDPROPVAL_MMF_CLOSINGPERIOD","features":[197]},{"name":"MDPROPVAL_MMF_COUSIN","features":[197]},{"name":"MDPROPVAL_MMF_OPENINGPERIOD","features":[197]},{"name":"MDPROPVAL_MMF_PARALLELPERIOD","features":[197]},{"name":"MDPROPVAL_MNF_AGGREGATE","features":[197]},{"name":"MDPROPVAL_MNF_CORRELATION","features":[197]},{"name":"MDPROPVAL_MNF_COVARIANCE","features":[197]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVEL","features":[197]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELBOTTOM","features":[197]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELTOP","features":[197]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERBOTTOM","features":[197]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERTOP","features":[197]},{"name":"MDPROPVAL_MNF_DRILLUPLEVEL","features":[197]},{"name":"MDPROPVAL_MNF_DRILLUPMEMBER","features":[197]},{"name":"MDPROPVAL_MNF_LINREG2","features":[197]},{"name":"MDPROPVAL_MNF_LINREGPOINT","features":[197]},{"name":"MDPROPVAL_MNF_LINREGSLOPE","features":[197]},{"name":"MDPROPVAL_MNF_LINREGVARIANCE","features":[197]},{"name":"MDPROPVAL_MNF_MEDIAN","features":[197]},{"name":"MDPROPVAL_MNF_RANK","features":[197]},{"name":"MDPROPVAL_MNF_STDDEV","features":[197]},{"name":"MDPROPVAL_MNF_VAR","features":[197]},{"name":"MDPROPVAL_MOQ_CATALOG_CUBE","features":[197]},{"name":"MDPROPVAL_MOQ_CUBE_DIM","features":[197]},{"name":"MDPROPVAL_MOQ_DATASOURCE_CUBE","features":[197]},{"name":"MDPROPVAL_MOQ_DIMHIER_LEVEL","features":[197]},{"name":"MDPROPVAL_MOQ_DIMHIER_MEMBER","features":[197]},{"name":"MDPROPVAL_MOQ_DIM_HIER","features":[197]},{"name":"MDPROPVAL_MOQ_LEVEL_MEMBER","features":[197]},{"name":"MDPROPVAL_MOQ_MEMBER_MEMBER","features":[197]},{"name":"MDPROPVAL_MOQ_OUTERREFERENCE","features":[197]},{"name":"MDPROPVAL_MOQ_SCHEMA_CUBE","features":[197]},{"name":"MDPROPVAL_MSC_GREATERTHAN","features":[197]},{"name":"MDPROPVAL_MSC_GREATERTHANEQUAL","features":[197]},{"name":"MDPROPVAL_MSC_LESSTHAN","features":[197]},{"name":"MDPROPVAL_MSC_LESSTHANEQUAL","features":[197]},{"name":"MDPROPVAL_MSF_BOTTOMPERCENT","features":[197]},{"name":"MDPROPVAL_MSF_BOTTOMSUM","features":[197]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVEL","features":[197]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELBOTTOM","features":[197]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELTOP","features":[197]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBBER","features":[197]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERBOTTOM","features":[197]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERTOP","features":[197]},{"name":"MDPROPVAL_MSF_DRILLUPLEVEL","features":[197]},{"name":"MDPROPVAL_MSF_DRILLUPMEMBER","features":[197]},{"name":"MDPROPVAL_MSF_LASTPERIODS","features":[197]},{"name":"MDPROPVAL_MSF_MTD","features":[197]},{"name":"MDPROPVAL_MSF_PERIODSTODATE","features":[197]},{"name":"MDPROPVAL_MSF_QTD","features":[197]},{"name":"MDPROPVAL_MSF_TOGGLEDRILLSTATE","features":[197]},{"name":"MDPROPVAL_MSF_TOPPERCENT","features":[197]},{"name":"MDPROPVAL_MSF_TOPSUM","features":[197]},{"name":"MDPROPVAL_MSF_WTD","features":[197]},{"name":"MDPROPVAL_MSF_YTD","features":[197]},{"name":"MDPROPVAL_MS_MULTIPLETUPLES","features":[197]},{"name":"MDPROPVAL_MS_SINGLETUPLE","features":[197]},{"name":"MDPROPVAL_NL_NAMEDLEVELS","features":[197]},{"name":"MDPROPVAL_NL_NUMBEREDLEVELS","features":[197]},{"name":"MDPROPVAL_NL_SCHEMAONLY","features":[197]},{"name":"MDPROPVAL_NME_ALLDIMENSIONS","features":[197]},{"name":"MDPROPVAL_NME_MEASURESONLY","features":[197]},{"name":"MDPROPVAL_RR_NORANGEROWSET","features":[197]},{"name":"MDPROPVAL_RR_READONLY","features":[197]},{"name":"MDPROPVAL_RR_UPDATE","features":[197]},{"name":"MDPROPVAL_VISUAL_MODE_DEFAULT","features":[197]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL","features":[197]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL_OFF","features":[197]},{"name":"MDPROP_AGGREGATECELL_UPDATE","features":[197]},{"name":"MDPROP_AXES","features":[197]},{"name":"MDPROP_CELL","features":[197]},{"name":"MDPROP_FLATTENING_SUPPORT","features":[197]},{"name":"MDPROP_MDX_AGGREGATECELL_UPDATE","features":[197]},{"name":"MDPROP_MDX_CASESUPPORT","features":[197]},{"name":"MDPROP_MDX_CUBEQUALIFICATION","features":[197]},{"name":"MDPROP_MDX_DESCFLAGS","features":[197]},{"name":"MDPROP_MDX_FORMULAS","features":[197]},{"name":"MDPROP_MDX_JOINCUBES","features":[197]},{"name":"MDPROP_MDX_MEMBER_FUNCTIONS","features":[197]},{"name":"MDPROP_MDX_NONMEASURE_EXPRESSIONS","features":[197]},{"name":"MDPROP_MDX_NUMERIC_FUNCTIONS","features":[197]},{"name":"MDPROP_MDX_OBJQUALIFICATION","features":[197]},{"name":"MDPROP_MDX_OUTERREFERENCE","features":[197]},{"name":"MDPROP_MDX_QUERYBYPROPERTY","features":[197]},{"name":"MDPROP_MDX_SET_FUNCTIONS","features":[197]},{"name":"MDPROP_MDX_SLICER","features":[197]},{"name":"MDPROP_MDX_STRING_COMPOP","features":[197]},{"name":"MDPROP_MEMBER","features":[197]},{"name":"MDPROP_NAMED_LEVELS","features":[197]},{"name":"MDPROP_RANGEROWSET","features":[197]},{"name":"MDPROP_VISUALMODE","features":[197]},{"name":"MDSTATUS_S_CELLEMPTY","features":[197]},{"name":"MDTREEOP_ANCESTORS","features":[197]},{"name":"MDTREEOP_CHILDREN","features":[197]},{"name":"MDTREEOP_DESCENDANTS","features":[197]},{"name":"MDTREEOP_PARENT","features":[197]},{"name":"MDTREEOP_SELF","features":[197]},{"name":"MDTREEOP_SIBLINGS","features":[197]},{"name":"MD_DIMTYPE_MEASURE","features":[197]},{"name":"MD_DIMTYPE_OTHER","features":[197]},{"name":"MD_DIMTYPE_TIME","features":[197]},{"name":"MD_DIMTYPE_UNKNOWN","features":[197]},{"name":"MD_E_BADCOORDINATE","features":[197]},{"name":"MD_E_BADTUPLE","features":[197]},{"name":"MD_E_INVALIDAXIS","features":[197]},{"name":"MD_E_INVALIDCELLRANGE","features":[197]},{"name":"MINFATALERR","features":[197]},{"name":"MIN_USER_DATATYPE","features":[197]},{"name":"MSDAINITIALIZE","features":[197]},{"name":"MSDAORA","features":[197]},{"name":"MSDAORA8","features":[197]},{"name":"MSDAORA8_ERROR","features":[197]},{"name":"MSDAORA_ERROR","features":[197]},{"name":"MSDSDBINITPROPENUM","features":[197]},{"name":"MSDSSESSIONPROPENUM","features":[197]},{"name":"MSG_CI_CORRUPT_INDEX_COMPONENT","features":[197]},{"name":"MSG_CI_CREATE_SEVER_ITEM_FAILED","features":[197]},{"name":"MSG_CI_MASTER_MERGE_ABORTED","features":[197]},{"name":"MSG_CI_MASTER_MERGE_ABORTED_LOW_DISK","features":[197]},{"name":"MSG_CI_MASTER_MERGE_CANT_RESTART","features":[197]},{"name":"MSG_CI_MASTER_MERGE_CANT_START","features":[197]},{"name":"MSG_CI_MASTER_MERGE_COMPLETED","features":[197]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXPECTED_DOCS","features":[197]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXTERNAL","features":[197]},{"name":"MSG_CI_MASTER_MERGE_REASON_INDEX_LIMIT","features":[197]},{"name":"MSG_CI_MASTER_MERGE_REASON_NUMBER","features":[197]},{"name":"MSG_CI_MASTER_MERGE_RESTARTED","features":[197]},{"name":"MSG_CI_MASTER_MERGE_STARTED","features":[197]},{"name":"MSG_TEST_MESSAGE","features":[197]},{"name":"MSS_E_APPALREADYEXISTS","features":[197]},{"name":"MSS_E_APPNOTFOUND","features":[197]},{"name":"MSS_E_CATALOGALREADYEXISTS","features":[197]},{"name":"MSS_E_CATALOGNOTFOUND","features":[197]},{"name":"MSS_E_CATALOGSTOPPING","features":[197]},{"name":"MSS_E_INVALIDAPPNAME","features":[197]},{"name":"MSS_E_UNICODEFILEHEADERMISSING","features":[197]},{"name":"MS_PERSIST_PROGID","features":[197]},{"name":"NAMED_ENTITY_CERTAINTY","features":[197]},{"name":"NATLANGUAGERESTRICTION","features":[143,63,197]},{"name":"NEC_HIGH","features":[197]},{"name":"NEC_LOW","features":[197]},{"name":"NEC_MEDIUM","features":[197]},{"name":"NET_E_DISCONNECTED","features":[197]},{"name":"NET_E_GENERAL","features":[197]},{"name":"NET_E_INVALIDPARAMS","features":[197]},{"name":"NET_E_OPERATIONINPROGRESS","features":[197]},{"name":"NLADMIN_E_BUILD_CATALOG_NOT_INITIALIZED","features":[197]},{"name":"NLADMIN_E_DUPLICATE_CATALOG","features":[197]},{"name":"NLADMIN_E_FAILED_TO_GIVE_ACCOUNT_PRIVILEGE","features":[197]},{"name":"NLADMIN_S_NOT_ALL_BUILD_CATALOGS_INITIALIZED","features":[197]},{"name":"NODERESTRICTION","features":[1,143,63,197,42]},{"name":"NOTESPH_E_ATTACHMENTS","features":[197]},{"name":"NOTESPH_E_DB_ACCESS_DENIED","features":[197]},{"name":"NOTESPH_E_FAIL","features":[197]},{"name":"NOTESPH_E_ITEM_NOT_FOUND","features":[197]},{"name":"NOTESPH_E_NOTESSETUP_ID_MAPPING_ERROR","features":[197]},{"name":"NOTESPH_E_NO_NTID","features":[197]},{"name":"NOTESPH_E_SERVER_CONFIG","features":[197]},{"name":"NOTESPH_E_UNEXPECTED_STATE","features":[197]},{"name":"NOTESPH_E_UNSUPPORTED_CONTENT_FIELD_TYPE","features":[197]},{"name":"NOTESPH_S_IGNORE_ID","features":[197]},{"name":"NOTESPH_S_LISTKNOWNFIELDS","features":[197]},{"name":"NOTRESTRICTION","features":[1,143,63,197,42]},{"name":"NOT_N_PARSE_ERROR","features":[197]},{"name":"NegationCondition","features":[197]},{"name":"OCC_INVALID","features":[197]},{"name":"ODBCGetTryWaitValue","features":[197]},{"name":"ODBCSetTryWaitValue","features":[1,197]},{"name":"ODBCVER","features":[197]},{"name":"ODBC_ADD_DSN","features":[197]},{"name":"ODBC_ADD_SYS_DSN","features":[197]},{"name":"ODBC_BOTH_DSN","features":[197]},{"name":"ODBC_CONFIG_DRIVER","features":[197]},{"name":"ODBC_CONFIG_DRIVER_MAX","features":[197]},{"name":"ODBC_CONFIG_DSN","features":[197]},{"name":"ODBC_CONFIG_SYS_DSN","features":[197]},{"name":"ODBC_ERROR_COMPONENT_NOT_FOUND","features":[197]},{"name":"ODBC_ERROR_CREATE_DSN_FAILED","features":[197]},{"name":"ODBC_ERROR_GENERAL_ERR","features":[197]},{"name":"ODBC_ERROR_INVALID_BUFF_LEN","features":[197]},{"name":"ODBC_ERROR_INVALID_DSN","features":[197]},{"name":"ODBC_ERROR_INVALID_HWND","features":[197]},{"name":"ODBC_ERROR_INVALID_INF","features":[197]},{"name":"ODBC_ERROR_INVALID_KEYWORD_VALUE","features":[197]},{"name":"ODBC_ERROR_INVALID_LOG_FILE","features":[197]},{"name":"ODBC_ERROR_INVALID_NAME","features":[197]},{"name":"ODBC_ERROR_INVALID_PARAM_SEQUENCE","features":[197]},{"name":"ODBC_ERROR_INVALID_PATH","features":[197]},{"name":"ODBC_ERROR_INVALID_REQUEST_TYPE","features":[197]},{"name":"ODBC_ERROR_INVALID_STR","features":[197]},{"name":"ODBC_ERROR_LOAD_LIB_FAILED","features":[197]},{"name":"ODBC_ERROR_MAX","features":[197]},{"name":"ODBC_ERROR_NOTRANINFO","features":[197]},{"name":"ODBC_ERROR_OUTPUT_STRING_TRUNCATED","features":[197]},{"name":"ODBC_ERROR_OUT_OF_MEM","features":[197]},{"name":"ODBC_ERROR_REMOVE_DSN_FAILED","features":[197]},{"name":"ODBC_ERROR_REQUEST_FAILED","features":[197]},{"name":"ODBC_ERROR_USAGE_UPDATE_FAILED","features":[197]},{"name":"ODBC_ERROR_USER_CANCELED","features":[197]},{"name":"ODBC_ERROR_WRITING_SYSINFO_FAILED","features":[197]},{"name":"ODBC_INSTALL_COMPLETE","features":[197]},{"name":"ODBC_INSTALL_DRIVER","features":[197]},{"name":"ODBC_INSTALL_INQUIRY","features":[197]},{"name":"ODBC_REMOVE_DEFAULT_DSN","features":[197]},{"name":"ODBC_REMOVE_DRIVER","features":[197]},{"name":"ODBC_REMOVE_DSN","features":[197]},{"name":"ODBC_REMOVE_SYS_DSN","features":[197]},{"name":"ODBC_SYSTEM_DSN","features":[197]},{"name":"ODBC_USER_DSN","features":[197]},{"name":"ODBC_VS_ARGS","features":[197]},{"name":"ODBC_VS_FLAG_RETCODE","features":[197]},{"name":"ODBC_VS_FLAG_STOP","features":[197]},{"name":"ODBC_VS_FLAG_UNICODE_ARG","features":[197]},{"name":"ODBC_VS_FLAG_UNICODE_COR","features":[197]},{"name":"OLEDBSimpleProvider","features":[197]},{"name":"OLEDBSimpleProviderListener","features":[197]},{"name":"OLEDBVER","features":[197]},{"name":"OLEDB_BINDER_CUSTOM_ERROR","features":[197]},{"name":"OSPCOMP","features":[197]},{"name":"OSPCOMP_DEFAULT","features":[197]},{"name":"OSPCOMP_EQ","features":[197]},{"name":"OSPCOMP_GE","features":[197]},{"name":"OSPCOMP_GT","features":[197]},{"name":"OSPCOMP_LE","features":[197]},{"name":"OSPCOMP_LT","features":[197]},{"name":"OSPCOMP_NE","features":[197]},{"name":"OSPFIND","features":[197]},{"name":"OSPFIND_CASESENSITIVE","features":[197]},{"name":"OSPFIND_DEFAULT","features":[197]},{"name":"OSPFIND_UP","features":[197]},{"name":"OSPFIND_UPCASESENSITIVE","features":[197]},{"name":"OSPFORMAT","features":[197]},{"name":"OSPFORMAT_DEFAULT","features":[197]},{"name":"OSPFORMAT_FORMATTED","features":[197]},{"name":"OSPFORMAT_HTML","features":[197]},{"name":"OSPFORMAT_RAW","features":[197]},{"name":"OSPRW","features":[197]},{"name":"OSPRW_DEFAULT","features":[197]},{"name":"OSPRW_MIXED","features":[197]},{"name":"OSPRW_READONLY","features":[197]},{"name":"OSPRW_READWRITE","features":[197]},{"name":"OSPXFER","features":[197]},{"name":"OSPXFER_ABORT","features":[197]},{"name":"OSPXFER_COMPLETE","features":[197]},{"name":"OSPXFER_ERROR","features":[197]},{"name":"OSP_IndexLabel","features":[197]},{"name":"PDPO","features":[197]},{"name":"PEOPLE_IMPORT_E_CANONICALURL_TOOLONG","features":[197]},{"name":"PEOPLE_IMPORT_E_DATATYPENOTSUPPORTED","features":[197]},{"name":"PEOPLE_IMPORT_E_DBCONNFAIL","features":[197]},{"name":"PEOPLE_IMPORT_E_DC_NOT_AVAILABLE","features":[197]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_NOTREFRESHED","features":[197]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_ZERO_COOKIE","features":[197]},{"name":"PEOPLE_IMPORT_E_DOMAIN_DISCOVER_FAILED","features":[197]},{"name":"PEOPLE_IMPORT_E_DOMAIN_REMOVED","features":[197]},{"name":"PEOPLE_IMPORT_E_ENUM_ACCESSDENIED","features":[197]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSDEF","features":[197]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSMAPPING","features":[197]},{"name":"PEOPLE_IMPORT_E_FAILTOGETLCID","features":[197]},{"name":"PEOPLE_IMPORT_E_LDAPPATH_TOOLONG","features":[197]},{"name":"PEOPLE_IMPORT_E_NOCASTINGSUPPORTED","features":[197]},{"name":"PEOPLE_IMPORT_E_UPDATE_DIRSYNC_COOKIE","features":[197]},{"name":"PEOPLE_IMPORT_E_USERNAME_NOTRESOLVED","features":[197]},{"name":"PEOPLE_IMPORT_NODSDEFINED","features":[197]},{"name":"PEOPLE_IMPORT_NOMAPPINGDEFINED","features":[197]},{"name":"PERM_ALL","features":[197]},{"name":"PERM_CREATE","features":[197]},{"name":"PERM_DELETE","features":[197]},{"name":"PERM_DROP","features":[197]},{"name":"PERM_EXCLUSIVE","features":[197]},{"name":"PERM_EXECUTE","features":[197]},{"name":"PERM_INSERT","features":[197]},{"name":"PERM_MAXIMUM_ALLOWED","features":[197]},{"name":"PERM_READ","features":[197]},{"name":"PERM_READCONTROL","features":[197]},{"name":"PERM_READDESIGN","features":[197]},{"name":"PERM_REFERENCE","features":[197]},{"name":"PERM_UPDATE","features":[197]},{"name":"PERM_WITHGRANT","features":[197]},{"name":"PERM_WRITEDESIGN","features":[197]},{"name":"PERM_WRITEOWNER","features":[197]},{"name":"PERM_WRITEPERMISSIONS","features":[197]},{"name":"PFNFILLTEXTBUFFER","features":[197]},{"name":"PRAll","features":[197]},{"name":"PRAllBits","features":[197]},{"name":"PRAny","features":[197]},{"name":"PRIORITIZE_FLAGS","features":[197]},{"name":"PRIORITIZE_FLAG_IGNOREFAILURECOUNT","features":[197]},{"name":"PRIORITIZE_FLAG_RETRYFAILEDITEMS","features":[197]},{"name":"PRIORITY_LEVEL","features":[197]},{"name":"PRIORITY_LEVEL_DEFAULT","features":[197]},{"name":"PRIORITY_LEVEL_FOREGROUND","features":[197]},{"name":"PRIORITY_LEVEL_HIGH","features":[197]},{"name":"PRIORITY_LEVEL_LOW","features":[197]},{"name":"PROGID_MSPersist_Version_W","features":[197]},{"name":"PROGID_MSPersist_W","features":[197]},{"name":"PROPERTYRESTRICTION","features":[1,143,63,197,42]},{"name":"PROPID_DBBMK_BOOKMARK","features":[197]},{"name":"PROPID_DBBMK_CHAPTER","features":[197]},{"name":"PROPID_DBSELF_SELF","features":[197]},{"name":"PROXY_ACCESS","features":[197]},{"name":"PROXY_ACCESS_DIRECT","features":[197]},{"name":"PROXY_ACCESS_PRECONFIG","features":[197]},{"name":"PROXY_ACCESS_PROXY","features":[197]},{"name":"PROXY_INFO","features":[1,197]},{"name":"PRRE","features":[197]},{"name":"PRSomeBits","features":[197]},{"name":"PRTH_E_ACCESS_DENIED","features":[197]},{"name":"PRTH_E_ACL_IS_READ_NONE","features":[197]},{"name":"PRTH_E_ACL_TOO_BIG","features":[197]},{"name":"PRTH_E_BAD_REQUEST","features":[197]},{"name":"PRTH_E_CANT_TRANSFORM_DENIED_ACE","features":[197]},{"name":"PRTH_E_CANT_TRANSFORM_EXTERNAL_ACL","features":[197]},{"name":"PRTH_E_COMM_ERROR","features":[197]},{"name":"PRTH_E_DATABASE_OPEN_ERROR","features":[197]},{"name":"PRTH_E_HTTPS_CERTIFICATE_ERROR","features":[197]},{"name":"PRTH_E_HTTPS_REQUIRE_CERTIFICATE","features":[197]},{"name":"PRTH_E_HTTP_CANNOT_CONNECT","features":[197]},{"name":"PRTH_E_INIT_FAILED","features":[197]},{"name":"PRTH_E_INTERNAL_ERROR","features":[197]},{"name":"PRTH_E_LOAD_FAILED","features":[197]},{"name":"PRTH_E_MIME_EXCLUDED","features":[197]},{"name":"PRTH_E_NOT_REDIRECTED","features":[197]},{"name":"PRTH_E_NO_PROPERTY","features":[197]},{"name":"PRTH_E_OBJ_NOT_FOUND","features":[197]},{"name":"PRTH_E_OPLOCK_BROKEN","features":[197]},{"name":"PRTH_E_REQUEST_ERROR","features":[197]},{"name":"PRTH_E_RETRY","features":[197]},{"name":"PRTH_E_SERVER_ERROR","features":[197]},{"name":"PRTH_E_TRUNCATED","features":[197]},{"name":"PRTH_E_VOLUME_MOUNT_POINT","features":[197]},{"name":"PRTH_E_WININET","features":[197]},{"name":"PRTH_S_ACL_IS_READ_EVERYONE","features":[197]},{"name":"PRTH_S_MAX_DOWNLOAD","features":[197]},{"name":"PRTH_S_MAX_GROWTH","features":[197]},{"name":"PRTH_S_NOT_ALL_PARTS","features":[197]},{"name":"PRTH_S_NOT_MODIFIED","features":[197]},{"name":"PRTH_S_TRY_IMPERSONATING","features":[197]},{"name":"PRTH_S_USE_ROSEBUD","features":[197]},{"name":"PSGUID_CHARACTERIZATION","features":[197]},{"name":"PSGUID_QUERY_METADATA","features":[197]},{"name":"PSGUID_STORAGE","features":[197]},{"name":"PWPROP_OSPVALUE","features":[197]},{"name":"QPMO_APPEND_LCID_TO_LOCALIZED_PATH","features":[197]},{"name":"QPMO_LOCALIZED_SCHEMA_BINARY_PATH","features":[197]},{"name":"QPMO_LOCALIZER_SUPPORT","features":[197]},{"name":"QPMO_PRELOCALIZED_SCHEMA_BINARY_PATH","features":[197]},{"name":"QPMO_SCHEMA_BINARY_NAME","features":[197]},{"name":"QPMO_UNLOCALIZED_SCHEMA_BINARY_PATH","features":[197]},{"name":"QRY_E_COLUMNNOTSEARCHABLE","features":[197]},{"name":"QRY_E_COLUMNNOTSORTABLE","features":[197]},{"name":"QRY_E_ENGINEFAILED","features":[197]},{"name":"QRY_E_INFIXWILDCARD","features":[197]},{"name":"QRY_E_INVALIDCATALOG","features":[197]},{"name":"QRY_E_INVALIDCOLUMN","features":[197]},{"name":"QRY_E_INVALIDINTERVAL","features":[197]},{"name":"QRY_E_INVALIDPATH","features":[197]},{"name":"QRY_E_INVALIDSCOPES","features":[197]},{"name":"QRY_E_LMNOTINITIALIZED","features":[197]},{"name":"QRY_E_NOCOLUMNS","features":[197]},{"name":"QRY_E_NODATASOURCES","features":[197]},{"name":"QRY_E_NOLOGMANAGER","features":[197]},{"name":"QRY_E_NULLQUERY","features":[197]},{"name":"QRY_E_PREFIXWILDCARD","features":[197]},{"name":"QRY_E_QUERYCORRUPT","features":[197]},{"name":"QRY_E_QUERYSYNTAX","features":[197]},{"name":"QRY_E_SCOPECARDINALIDY","features":[197]},{"name":"QRY_E_SEARCHTOOBIG","features":[197]},{"name":"QRY_E_STARTHITTOBIG","features":[197]},{"name":"QRY_E_TIMEOUT","features":[197]},{"name":"QRY_E_TOOMANYCOLUMNS","features":[197]},{"name":"QRY_E_TOOMANYDATABASES","features":[197]},{"name":"QRY_E_TOOMANYQUERYTERMS","features":[197]},{"name":"QRY_E_TYPEMISMATCH","features":[197]},{"name":"QRY_E_UNEXPECTED","features":[197]},{"name":"QRY_E_UNHANDLEDTYPE","features":[197]},{"name":"QRY_E_WILDCARDPREFIXLENGTH","features":[197]},{"name":"QRY_S_INEXACTRESULTS","features":[197]},{"name":"QRY_S_NOROWSFOUND","features":[197]},{"name":"QRY_S_TERMIGNORED","features":[197]},{"name":"QUERY_E_AGGREGATE_NOT_SUPPORTED","features":[197]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELDOC","features":[197]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELPROP","features":[197]},{"name":"QUERY_E_DUPLICATE_RANGE_NAME","features":[197]},{"name":"QUERY_E_INCORRECT_VERSION","features":[197]},{"name":"QUERY_E_INVALIDCOALESCE","features":[197]},{"name":"QUERY_E_INVALIDSCOPE_COALESCE","features":[197]},{"name":"QUERY_E_INVALIDSORT_COALESCE","features":[197]},{"name":"QUERY_E_INVALID_DOCUMENT_IDENTIFIER","features":[197]},{"name":"QUERY_E_NO_RELDOC","features":[197]},{"name":"QUERY_E_NO_RELPROP","features":[197]},{"name":"QUERY_E_RELDOC_SYNTAX_NOT_SUPPORTED","features":[197]},{"name":"QUERY_E_REPEATED_RELDOC","features":[197]},{"name":"QUERY_E_TOP_LEVEL_IN_GROUP","features":[197]},{"name":"QUERY_E_UPGRADEINPROGRESS","features":[197]},{"name":"QUERY_PARSER_MANAGER_OPTION","features":[197]},{"name":"QUERY_SORTDEFAULT","features":[197]},{"name":"QUERY_SORTXASCEND","features":[197]},{"name":"QUERY_SORTXDESCEND","features":[197]},{"name":"QUERY_VALIDBITS","features":[197]},{"name":"QueryParser","features":[197]},{"name":"QueryParserManager","features":[197]},{"name":"RANGECATEGORIZE","features":[1,63,197,42]},{"name":"RESTRICTION","features":[1,143,63,197,42]},{"name":"REXSPH_E_DUPLICATE_PROPERTY","features":[197]},{"name":"REXSPH_E_INVALID_CALL","features":[197]},{"name":"REXSPH_E_MULTIPLE_REDIRECT","features":[197]},{"name":"REXSPH_E_NO_PROPERTY_ON_ROW","features":[197]},{"name":"REXSPH_E_REDIRECT_ON_SECURITY_UPDATE","features":[197]},{"name":"REXSPH_E_TYPE_MISMATCH_ON_READ","features":[197]},{"name":"REXSPH_E_UNEXPECTED_DATA_STATUS","features":[197]},{"name":"REXSPH_E_UNEXPECTED_FILTER_STATE","features":[197]},{"name":"REXSPH_E_UNKNOWN_DATA_TYPE","features":[197]},{"name":"REXSPH_S_REDIRECTED","features":[197]},{"name":"RMTPACK","features":[1,63,197,42]},{"name":"RMTPACK","features":[1,63,197,42]},{"name":"ROWSETEVENT_ITEMSTATE","features":[197]},{"name":"ROWSETEVENT_ITEMSTATE_INROWSET","features":[197]},{"name":"ROWSETEVENT_ITEMSTATE_NOTINROWSET","features":[197]},{"name":"ROWSETEVENT_ITEMSTATE_UNKNOWN","features":[197]},{"name":"ROWSETEVENT_TYPE","features":[197]},{"name":"ROWSETEVENT_TYPE_DATAEXPIRED","features":[197]},{"name":"ROWSETEVENT_TYPE_FOREGROUNDLOST","features":[197]},{"name":"ROWSETEVENT_TYPE_SCOPESTATISTICS","features":[197]},{"name":"RS_COMPLETED","features":[197]},{"name":"RS_MAYBOTHERUSER","features":[197]},{"name":"RS_READY","features":[197]},{"name":"RS_SUSPENDED","features":[197]},{"name":"RS_SUSPENDONIDLE","features":[197]},{"name":"RS_UPDATING","features":[197]},{"name":"RTAnd","features":[197]},{"name":"RTContent","features":[197]},{"name":"RTNatLanguage","features":[197]},{"name":"RTNone","features":[197]},{"name":"RTNot","features":[197]},{"name":"RTOr","features":[197]},{"name":"RTProperty","features":[197]},{"name":"RTProximity","features":[197]},{"name":"RTVector","features":[197]},{"name":"RootBinder","features":[197]},{"name":"SCHEMA_E_ADDSTOPWORDS","features":[197]},{"name":"SCHEMA_E_BADATTRIBUTE","features":[197]},{"name":"SCHEMA_E_BADCOLUMNNAME","features":[197]},{"name":"SCHEMA_E_BADFILENAME","features":[197]},{"name":"SCHEMA_E_BADPROPPID","features":[197]},{"name":"SCHEMA_E_BADPROPSPEC","features":[197]},{"name":"SCHEMA_E_CANNOTCREATEFILE","features":[197]},{"name":"SCHEMA_E_CANNOTCREATENOISEWORDFILE","features":[197]},{"name":"SCHEMA_E_CANNOTWRITEFILE","features":[197]},{"name":"SCHEMA_E_DUPLICATENOISE","features":[197]},{"name":"SCHEMA_E_EMPTYFILE","features":[197]},{"name":"SCHEMA_E_FILECHANGED","features":[197]},{"name":"SCHEMA_E_FILENOTFOUND","features":[197]},{"name":"SCHEMA_E_INVALIDDATATYPE","features":[197]},{"name":"SCHEMA_E_INVALIDFILETYPE","features":[197]},{"name":"SCHEMA_E_INVALIDVALUE","features":[197]},{"name":"SCHEMA_E_LOAD_SPECIAL","features":[197]},{"name":"SCHEMA_E_NAMEEXISTS","features":[197]},{"name":"SCHEMA_E_NESTEDTAG","features":[197]},{"name":"SCHEMA_E_NOMORECOLUMNS","features":[197]},{"name":"SCHEMA_E_PROPEXISTS","features":[197]},{"name":"SCHEMA_E_UNEXPECTEDTAG","features":[197]},{"name":"SCHEMA_E_VERSIONMISMATCH","features":[197]},{"name":"SCRIPTPI_E_ALREADY_COMPLETED","features":[197]},{"name":"SCRIPTPI_E_CANNOT_ALTER_CHUNK","features":[197]},{"name":"SCRIPTPI_E_CHUNK_NOT_TEXT","features":[197]},{"name":"SCRIPTPI_E_CHUNK_NOT_VALUE","features":[197]},{"name":"SCRIPTPI_E_PID_NOT_NAME","features":[197]},{"name":"SCRIPTPI_E_PID_NOT_NUMERIC","features":[197]},{"name":"SEARCH_ADVANCED_QUERY_SYNTAX","features":[197]},{"name":"SEARCH_CHANGE_ADD","features":[197]},{"name":"SEARCH_CHANGE_DELETE","features":[197]},{"name":"SEARCH_CHANGE_MODIFY","features":[197]},{"name":"SEARCH_CHANGE_MOVE_RENAME","features":[197]},{"name":"SEARCH_CHANGE_SEMANTICS_DIRECTORY","features":[197]},{"name":"SEARCH_CHANGE_SEMANTICS_SHALLOW","features":[197]},{"name":"SEARCH_CHANGE_SEMANTICS_UPDATE_SECURITY","features":[197]},{"name":"SEARCH_COLUMN_PROPERTIES","features":[1,63,197,42]},{"name":"SEARCH_HIGH_PRIORITY","features":[197]},{"name":"SEARCH_INDEXING_PHASE","features":[197]},{"name":"SEARCH_INDEXING_PHASE_GATHERER","features":[197]},{"name":"SEARCH_INDEXING_PHASE_PERSISTED","features":[197]},{"name":"SEARCH_INDEXING_PHASE_QUERYABLE","features":[197]},{"name":"SEARCH_ITEM_CHANGE","features":[41,197]},{"name":"SEARCH_ITEM_INDEXING_STATUS","features":[197]},{"name":"SEARCH_ITEM_PERSISTENT_CHANGE","features":[197]},{"name":"SEARCH_KIND_OF_CHANGE","features":[197]},{"name":"SEARCH_NATURAL_QUERY_SYNTAX","features":[197]},{"name":"SEARCH_NORMAL_PRIORITY","features":[197]},{"name":"SEARCH_NOTIFICATION_PRIORITY","features":[197]},{"name":"SEARCH_NO_QUERY_SYNTAX","features":[197]},{"name":"SEARCH_QUERY_SYNTAX","features":[197]},{"name":"SEARCH_TERM_EXPANSION","features":[197]},{"name":"SEARCH_TERM_NO_EXPANSION","features":[197]},{"name":"SEARCH_TERM_PREFIX_ALL","features":[197]},{"name":"SEARCH_TERM_STEM_ALL","features":[197]},{"name":"SEC_E_ACCESSDENIED","features":[197]},{"name":"SEC_E_BADTRUSTEEID","features":[197]},{"name":"SEC_E_INITFAILED","features":[197]},{"name":"SEC_E_INVALIDACCESSENTRY","features":[197]},{"name":"SEC_E_INVALIDACCESSENTRYLIST","features":[197]},{"name":"SEC_E_INVALIDCONTEXT","features":[197]},{"name":"SEC_E_INVALIDOBJECT","features":[197]},{"name":"SEC_E_INVALIDOWNER","features":[197]},{"name":"SEC_E_NOMEMBERSHIPSUPPORT","features":[197]},{"name":"SEC_E_NOOWNER","features":[197]},{"name":"SEC_E_NOTINITIALIZED","features":[197]},{"name":"SEC_E_NOTRUSTEEID","features":[197]},{"name":"SEC_E_PERMISSIONDENIED","features":[197]},{"name":"SEC_OBJECT","features":[143,197]},{"name":"SEC_OBJECT","features":[143,197]},{"name":"SEC_OBJECT_ELEMENT","features":[143,197]},{"name":"SEC_OBJECT_ELEMENT","features":[143,197]},{"name":"SI_TEMPORARY","features":[197]},{"name":"SORTKEY","features":[143,63,197]},{"name":"SORTSET","features":[143,63,197]},{"name":"SPS_WS_ERROR","features":[197]},{"name":"SQLAOPANY","features":[197]},{"name":"SQLAOPAVG","features":[197]},{"name":"SQLAOPCNT","features":[197]},{"name":"SQLAOPMAX","features":[197]},{"name":"SQLAOPMIN","features":[197]},{"name":"SQLAOPNOOP","features":[197]},{"name":"SQLAOPSTDEV","features":[197]},{"name":"SQLAOPSTDEVP","features":[197]},{"name":"SQLAOPSUM","features":[197]},{"name":"SQLAOPVAR","features":[197]},{"name":"SQLAOPVARP","features":[197]},{"name":"SQLAllocConnect","features":[197]},{"name":"SQLAllocEnv","features":[197]},{"name":"SQLAllocHandle","features":[197]},{"name":"SQLAllocHandleStd","features":[197]},{"name":"SQLAllocStmt","features":[197]},{"name":"SQLBIGBINARY","features":[197]},{"name":"SQLBIGCHAR","features":[197]},{"name":"SQLBIGVARBINARY","features":[197]},{"name":"SQLBIGVARCHAR","features":[197]},{"name":"SQLBINARY","features":[197]},{"name":"SQLBIT","features":[197]},{"name":"SQLBITN","features":[197]},{"name":"SQLBindCol","features":[197]},{"name":"SQLBindCol","features":[197]},{"name":"SQLBindParam","features":[197]},{"name":"SQLBindParam","features":[197]},{"name":"SQLBindParameter","features":[197]},{"name":"SQLBindParameter","features":[197]},{"name":"SQLBrowseConnect","features":[197]},{"name":"SQLBrowseConnectA","features":[197]},{"name":"SQLBrowseConnectW","features":[197]},{"name":"SQLBulkOperations","features":[197]},{"name":"SQLCHARACTER","features":[197]},{"name":"SQLCancel","features":[197]},{"name":"SQLCancelHandle","features":[197]},{"name":"SQLCloseCursor","features":[197]},{"name":"SQLCloseEnumServers","features":[1,197]},{"name":"SQLColAttribute","features":[197]},{"name":"SQLColAttribute","features":[197]},{"name":"SQLColAttributeA","features":[197]},{"name":"SQLColAttributeA","features":[197]},{"name":"SQLColAttributeW","features":[197]},{"name":"SQLColAttributeW","features":[197]},{"name":"SQLColAttributes","features":[197]},{"name":"SQLColAttributes","features":[197]},{"name":"SQLColAttributesA","features":[197]},{"name":"SQLColAttributesA","features":[197]},{"name":"SQLColAttributesW","features":[197]},{"name":"SQLColAttributesW","features":[197]},{"name":"SQLColumnPrivileges","features":[197]},{"name":"SQLColumnPrivilegesA","features":[197]},{"name":"SQLColumnPrivilegesW","features":[197]},{"name":"SQLColumns","features":[197]},{"name":"SQLColumnsA","features":[197]},{"name":"SQLColumnsW","features":[197]},{"name":"SQLCompleteAsync","features":[197]},{"name":"SQLConnect","features":[197]},{"name":"SQLConnectA","features":[197]},{"name":"SQLConnectW","features":[197]},{"name":"SQLCopyDesc","features":[197]},{"name":"SQLDATETIM4","features":[197]},{"name":"SQLDATETIME","features":[197]},{"name":"SQLDATETIMN","features":[197]},{"name":"SQLDECIMAL","features":[197]},{"name":"SQLDECIMALN","features":[197]},{"name":"SQLDataSources","features":[197]},{"name":"SQLDataSourcesA","features":[197]},{"name":"SQLDataSourcesW","features":[197]},{"name":"SQLDescribeCol","features":[197]},{"name":"SQLDescribeCol","features":[197]},{"name":"SQLDescribeColA","features":[197]},{"name":"SQLDescribeColA","features":[197]},{"name":"SQLDescribeColW","features":[197]},{"name":"SQLDescribeColW","features":[197]},{"name":"SQLDescribeParam","features":[197]},{"name":"SQLDescribeParam","features":[197]},{"name":"SQLDisconnect","features":[197]},{"name":"SQLDriverConnect","features":[197]},{"name":"SQLDriverConnectA","features":[197]},{"name":"SQLDriverConnectW","features":[197]},{"name":"SQLDrivers","features":[197]},{"name":"SQLDriversA","features":[197]},{"name":"SQLDriversW","features":[197]},{"name":"SQLEndTran","features":[197]},{"name":"SQLError","features":[197]},{"name":"SQLErrorA","features":[197]},{"name":"SQLErrorW","features":[197]},{"name":"SQLExecDirect","features":[197]},{"name":"SQLExecDirectA","features":[197]},{"name":"SQLExecDirectW","features":[197]},{"name":"SQLExecute","features":[197]},{"name":"SQLExtendedFetch","features":[197]},{"name":"SQLExtendedFetch","features":[197]},{"name":"SQLFLT4","features":[197]},{"name":"SQLFLT8","features":[197]},{"name":"SQLFLTN","features":[197]},{"name":"SQLFetch","features":[197]},{"name":"SQLFetchScroll","features":[197]},{"name":"SQLFetchScroll","features":[197]},{"name":"SQLForeignKeys","features":[197]},{"name":"SQLForeignKeysA","features":[197]},{"name":"SQLForeignKeysW","features":[197]},{"name":"SQLFreeConnect","features":[197]},{"name":"SQLFreeEnv","features":[197]},{"name":"SQLFreeHandle","features":[197]},{"name":"SQLFreeStmt","features":[197]},{"name":"SQLGetConnectAttr","features":[197]},{"name":"SQLGetConnectAttrA","features":[197]},{"name":"SQLGetConnectAttrW","features":[197]},{"name":"SQLGetConnectOption","features":[197]},{"name":"SQLGetConnectOptionA","features":[197]},{"name":"SQLGetConnectOptionW","features":[197]},{"name":"SQLGetCursorName","features":[197]},{"name":"SQLGetCursorNameA","features":[197]},{"name":"SQLGetCursorNameW","features":[197]},{"name":"SQLGetData","features":[197]},{"name":"SQLGetData","features":[197]},{"name":"SQLGetDescField","features":[197]},{"name":"SQLGetDescFieldA","features":[197]},{"name":"SQLGetDescFieldW","features":[197]},{"name":"SQLGetDescRec","features":[197]},{"name":"SQLGetDescRec","features":[197]},{"name":"SQLGetDescRecA","features":[197]},{"name":"SQLGetDescRecA","features":[197]},{"name":"SQLGetDescRecW","features":[197]},{"name":"SQLGetDescRecW","features":[197]},{"name":"SQLGetDiagField","features":[197]},{"name":"SQLGetDiagFieldA","features":[197]},{"name":"SQLGetDiagFieldW","features":[197]},{"name":"SQLGetDiagRec","features":[197]},{"name":"SQLGetDiagRecA","features":[197]},{"name":"SQLGetDiagRecW","features":[197]},{"name":"SQLGetEnvAttr","features":[197]},{"name":"SQLGetFunctions","features":[197]},{"name":"SQLGetInfo","features":[197]},{"name":"SQLGetInfoA","features":[197]},{"name":"SQLGetInfoW","features":[197]},{"name":"SQLGetNextEnumeration","features":[1,197]},{"name":"SQLGetStmtAttr","features":[197]},{"name":"SQLGetStmtAttrA","features":[197]},{"name":"SQLGetStmtAttrW","features":[197]},{"name":"SQLGetStmtOption","features":[197]},{"name":"SQLGetTypeInfo","features":[197]},{"name":"SQLGetTypeInfoA","features":[197]},{"name":"SQLGetTypeInfoW","features":[197]},{"name":"SQLIMAGE","features":[197]},{"name":"SQLINT1","features":[197]},{"name":"SQLINT2","features":[197]},{"name":"SQLINT4","features":[197]},{"name":"SQLINT8","features":[197]},{"name":"SQLINTERVAL","features":[197]},{"name":"SQLINTN","features":[197]},{"name":"SQLInitEnumServers","features":[1,197]},{"name":"SQLLinkedCatalogsA","features":[197]},{"name":"SQLLinkedCatalogsW","features":[197]},{"name":"SQLLinkedServers","features":[197]},{"name":"SQLMONEY","features":[197]},{"name":"SQLMONEY4","features":[197]},{"name":"SQLMONEYN","features":[197]},{"name":"SQLMoreResults","features":[197]},{"name":"SQLNCHAR","features":[197]},{"name":"SQLNTEXT","features":[197]},{"name":"SQLNUMERIC","features":[197]},{"name":"SQLNUMERICN","features":[197]},{"name":"SQLNVARCHAR","features":[197]},{"name":"SQLNativeSql","features":[197]},{"name":"SQLNativeSqlA","features":[197]},{"name":"SQLNativeSqlW","features":[197]},{"name":"SQLNumParams","features":[197]},{"name":"SQLNumResultCols","features":[197]},{"name":"SQLPERF","features":[197]},{"name":"SQLParamData","features":[197]},{"name":"SQLParamOptions","features":[197]},{"name":"SQLParamOptions","features":[197]},{"name":"SQLPrepare","features":[197]},{"name":"SQLPrepareA","features":[197]},{"name":"SQLPrepareW","features":[197]},{"name":"SQLPrimaryKeys","features":[197]},{"name":"SQLPrimaryKeysA","features":[197]},{"name":"SQLPrimaryKeysW","features":[197]},{"name":"SQLProcedureColumns","features":[197]},{"name":"SQLProcedureColumnsA","features":[197]},{"name":"SQLProcedureColumnsW","features":[197]},{"name":"SQLProcedures","features":[197]},{"name":"SQLProceduresA","features":[197]},{"name":"SQLProceduresW","features":[197]},{"name":"SQLPutData","features":[197]},{"name":"SQLPutData","features":[197]},{"name":"SQLRowCount","features":[197]},{"name":"SQLRowCount","features":[197]},{"name":"SQLSetConnectAttr","features":[197]},{"name":"SQLSetConnectAttrA","features":[197]},{"name":"SQLSetConnectAttrW","features":[197]},{"name":"SQLSetConnectOption","features":[197]},{"name":"SQLSetConnectOption","features":[197]},{"name":"SQLSetConnectOptionA","features":[197]},{"name":"SQLSetConnectOptionA","features":[197]},{"name":"SQLSetConnectOptionW","features":[197]},{"name":"SQLSetConnectOptionW","features":[197]},{"name":"SQLSetCursorName","features":[197]},{"name":"SQLSetCursorNameA","features":[197]},{"name":"SQLSetCursorNameW","features":[197]},{"name":"SQLSetDescField","features":[197]},{"name":"SQLSetDescFieldW","features":[197]},{"name":"SQLSetDescRec","features":[197]},{"name":"SQLSetDescRec","features":[197]},{"name":"SQLSetEnvAttr","features":[197]},{"name":"SQLSetParam","features":[197]},{"name":"SQLSetParam","features":[197]},{"name":"SQLSetPos","features":[197]},{"name":"SQLSetPos","features":[197]},{"name":"SQLSetScrollOptions","features":[197]},{"name":"SQLSetScrollOptions","features":[197]},{"name":"SQLSetStmtAttr","features":[197]},{"name":"SQLSetStmtAttrW","features":[197]},{"name":"SQLSetStmtOption","features":[197]},{"name":"SQLSetStmtOption","features":[197]},{"name":"SQLSpecialColumns","features":[197]},{"name":"SQLSpecialColumnsA","features":[197]},{"name":"SQLSpecialColumnsW","features":[197]},{"name":"SQLStatistics","features":[197]},{"name":"SQLStatisticsA","features":[197]},{"name":"SQLStatisticsW","features":[197]},{"name":"SQLTEXT","features":[197]},{"name":"SQLTablePrivileges","features":[197]},{"name":"SQLTablePrivilegesA","features":[197]},{"name":"SQLTablePrivilegesW","features":[197]},{"name":"SQLTables","features":[197]},{"name":"SQLTablesA","features":[197]},{"name":"SQLTablesW","features":[197]},{"name":"SQLTransact","features":[197]},{"name":"SQLUNIQUEID","features":[197]},{"name":"SQLVARBINARY","features":[197]},{"name":"SQLVARCHAR","features":[197]},{"name":"SQLVARENUM","features":[197]},{"name":"SQLVARIANT","features":[197]},{"name":"SQL_AA_FALSE","features":[197]},{"name":"SQL_AA_TRUE","features":[197]},{"name":"SQL_ACCESSIBLE_PROCEDURES","features":[197]},{"name":"SQL_ACCESSIBLE_TABLES","features":[197]},{"name":"SQL_ACCESS_MODE","features":[197]},{"name":"SQL_ACTIVE_CONNECTIONS","features":[197]},{"name":"SQL_ACTIVE_ENVIRONMENTS","features":[197]},{"name":"SQL_ACTIVE_STATEMENTS","features":[197]},{"name":"SQL_ADD","features":[197]},{"name":"SQL_AD_ADD_CONSTRAINT_DEFERRABLE","features":[197]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","features":[197]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","features":[197]},{"name":"SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","features":[197]},{"name":"SQL_AD_ADD_DOMAIN_CONSTRAINT","features":[197]},{"name":"SQL_AD_ADD_DOMAIN_DEFAULT","features":[197]},{"name":"SQL_AD_CONSTRAINT_NAME_DEFINITION","features":[197]},{"name":"SQL_AD_DEFAULT","features":[197]},{"name":"SQL_AD_DROP_DOMAIN_CONSTRAINT","features":[197]},{"name":"SQL_AD_DROP_DOMAIN_DEFAULT","features":[197]},{"name":"SQL_AD_OFF","features":[197]},{"name":"SQL_AD_ON","features":[197]},{"name":"SQL_AF_ALL","features":[197]},{"name":"SQL_AF_AVG","features":[197]},{"name":"SQL_AF_COUNT","features":[197]},{"name":"SQL_AF_DISTINCT","features":[197]},{"name":"SQL_AF_MAX","features":[197]},{"name":"SQL_AF_MIN","features":[197]},{"name":"SQL_AF_SUM","features":[197]},{"name":"SQL_AGGREGATE_FUNCTIONS","features":[197]},{"name":"SQL_ALL_CATALOGS","features":[197]},{"name":"SQL_ALL_EXCEPT_LIKE","features":[197]},{"name":"SQL_ALL_SCHEMAS","features":[197]},{"name":"SQL_ALL_TABLE_TYPES","features":[197]},{"name":"SQL_ALL_TYPES","features":[197]},{"name":"SQL_ALTER_DOMAIN","features":[197]},{"name":"SQL_ALTER_TABLE","features":[197]},{"name":"SQL_AM_CONNECTION","features":[197]},{"name":"SQL_AM_NONE","features":[197]},{"name":"SQL_AM_STATEMENT","features":[197]},{"name":"SQL_AO_DEFAULT","features":[197]},{"name":"SQL_AO_OFF","features":[197]},{"name":"SQL_AO_ON","features":[197]},{"name":"SQL_APD_TYPE","features":[197]},{"name":"SQL_API_ALL_FUNCTIONS","features":[197]},{"name":"SQL_API_LOADBYORDINAL","features":[197]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS","features":[197]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS_SIZE","features":[197]},{"name":"SQL_API_SQLALLOCCONNECT","features":[197]},{"name":"SQL_API_SQLALLOCENV","features":[197]},{"name":"SQL_API_SQLALLOCHANDLE","features":[197]},{"name":"SQL_API_SQLALLOCHANDLESTD","features":[197]},{"name":"SQL_API_SQLALLOCSTMT","features":[197]},{"name":"SQL_API_SQLBINDCOL","features":[197]},{"name":"SQL_API_SQLBINDPARAM","features":[197]},{"name":"SQL_API_SQLBINDPARAMETER","features":[197]},{"name":"SQL_API_SQLBROWSECONNECT","features":[197]},{"name":"SQL_API_SQLBULKOPERATIONS","features":[197]},{"name":"SQL_API_SQLCANCEL","features":[197]},{"name":"SQL_API_SQLCANCELHANDLE","features":[197]},{"name":"SQL_API_SQLCLOSECURSOR","features":[197]},{"name":"SQL_API_SQLCOLATTRIBUTE","features":[197]},{"name":"SQL_API_SQLCOLATTRIBUTES","features":[197]},{"name":"SQL_API_SQLCOLUMNPRIVILEGES","features":[197]},{"name":"SQL_API_SQLCOLUMNS","features":[197]},{"name":"SQL_API_SQLCOMPLETEASYNC","features":[197]},{"name":"SQL_API_SQLCONNECT","features":[197]},{"name":"SQL_API_SQLCOPYDESC","features":[197]},{"name":"SQL_API_SQLDATASOURCES","features":[197]},{"name":"SQL_API_SQLDESCRIBECOL","features":[197]},{"name":"SQL_API_SQLDESCRIBEPARAM","features":[197]},{"name":"SQL_API_SQLDISCONNECT","features":[197]},{"name":"SQL_API_SQLDRIVERCONNECT","features":[197]},{"name":"SQL_API_SQLDRIVERS","features":[197]},{"name":"SQL_API_SQLENDTRAN","features":[197]},{"name":"SQL_API_SQLERROR","features":[197]},{"name":"SQL_API_SQLEXECDIRECT","features":[197]},{"name":"SQL_API_SQLEXECUTE","features":[197]},{"name":"SQL_API_SQLEXTENDEDFETCH","features":[197]},{"name":"SQL_API_SQLFETCH","features":[197]},{"name":"SQL_API_SQLFETCHSCROLL","features":[197]},{"name":"SQL_API_SQLFOREIGNKEYS","features":[197]},{"name":"SQL_API_SQLFREECONNECT","features":[197]},{"name":"SQL_API_SQLFREEENV","features":[197]},{"name":"SQL_API_SQLFREEHANDLE","features":[197]},{"name":"SQL_API_SQLFREESTMT","features":[197]},{"name":"SQL_API_SQLGETCONNECTATTR","features":[197]},{"name":"SQL_API_SQLGETCONNECTOPTION","features":[197]},{"name":"SQL_API_SQLGETCURSORNAME","features":[197]},{"name":"SQL_API_SQLGETDATA","features":[197]},{"name":"SQL_API_SQLGETDESCFIELD","features":[197]},{"name":"SQL_API_SQLGETDESCREC","features":[197]},{"name":"SQL_API_SQLGETDIAGFIELD","features":[197]},{"name":"SQL_API_SQLGETDIAGREC","features":[197]},{"name":"SQL_API_SQLGETENVATTR","features":[197]},{"name":"SQL_API_SQLGETFUNCTIONS","features":[197]},{"name":"SQL_API_SQLGETINFO","features":[197]},{"name":"SQL_API_SQLGETSTMTATTR","features":[197]},{"name":"SQL_API_SQLGETSTMTOPTION","features":[197]},{"name":"SQL_API_SQLGETTYPEINFO","features":[197]},{"name":"SQL_API_SQLMORERESULTS","features":[197]},{"name":"SQL_API_SQLNATIVESQL","features":[197]},{"name":"SQL_API_SQLNUMPARAMS","features":[197]},{"name":"SQL_API_SQLNUMRESULTCOLS","features":[197]},{"name":"SQL_API_SQLPARAMDATA","features":[197]},{"name":"SQL_API_SQLPARAMOPTIONS","features":[197]},{"name":"SQL_API_SQLPREPARE","features":[197]},{"name":"SQL_API_SQLPRIMARYKEYS","features":[197]},{"name":"SQL_API_SQLPRIVATEDRIVERS","features":[197]},{"name":"SQL_API_SQLPROCEDURECOLUMNS","features":[197]},{"name":"SQL_API_SQLPROCEDURES","features":[197]},{"name":"SQL_API_SQLPUTDATA","features":[197]},{"name":"SQL_API_SQLROWCOUNT","features":[197]},{"name":"SQL_API_SQLSETCONNECTATTR","features":[197]},{"name":"SQL_API_SQLSETCONNECTOPTION","features":[197]},{"name":"SQL_API_SQLSETCURSORNAME","features":[197]},{"name":"SQL_API_SQLSETDESCFIELD","features":[197]},{"name":"SQL_API_SQLSETDESCREC","features":[197]},{"name":"SQL_API_SQLSETENVATTR","features":[197]},{"name":"SQL_API_SQLSETPARAM","features":[197]},{"name":"SQL_API_SQLSETPOS","features":[197]},{"name":"SQL_API_SQLSETSCROLLOPTIONS","features":[197]},{"name":"SQL_API_SQLSETSTMTATTR","features":[197]},{"name":"SQL_API_SQLSETSTMTOPTION","features":[197]},{"name":"SQL_API_SQLSPECIALCOLUMNS","features":[197]},{"name":"SQL_API_SQLSTATISTICS","features":[197]},{"name":"SQL_API_SQLTABLEPRIVILEGES","features":[197]},{"name":"SQL_API_SQLTABLES","features":[197]},{"name":"SQL_API_SQLTRANSACT","features":[197]},{"name":"SQL_ARD_TYPE","features":[197]},{"name":"SQL_ASYNC_DBC_CAPABLE","features":[197]},{"name":"SQL_ASYNC_DBC_ENABLE_DEFAULT","features":[197]},{"name":"SQL_ASYNC_DBC_ENABLE_OFF","features":[197]},{"name":"SQL_ASYNC_DBC_ENABLE_ON","features":[197]},{"name":"SQL_ASYNC_DBC_FUNCTIONS","features":[197]},{"name":"SQL_ASYNC_DBC_NOT_CAPABLE","features":[197]},{"name":"SQL_ASYNC_ENABLE","features":[197]},{"name":"SQL_ASYNC_ENABLE_DEFAULT","features":[197]},{"name":"SQL_ASYNC_ENABLE_OFF","features":[197]},{"name":"SQL_ASYNC_ENABLE_ON","features":[197]},{"name":"SQL_ASYNC_MODE","features":[197]},{"name":"SQL_ASYNC_NOTIFICATION","features":[197]},{"name":"SQL_ASYNC_NOTIFICATION_CALLBACK","features":[1,197]},{"name":"SQL_ASYNC_NOTIFICATION_CAPABLE","features":[197]},{"name":"SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","features":[197]},{"name":"SQL_ATTR_ACCESS_MODE","features":[197]},{"name":"SQL_ATTR_ANSI_APP","features":[197]},{"name":"SQL_ATTR_APPLICATION_KEY","features":[197]},{"name":"SQL_ATTR_APP_PARAM_DESC","features":[197]},{"name":"SQL_ATTR_APP_ROW_DESC","features":[197]},{"name":"SQL_ATTR_ASYNC_DBC_EVENT","features":[197]},{"name":"SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","features":[197]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CALLBACK","features":[197]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CONTEXT","features":[197]},{"name":"SQL_ATTR_ASYNC_ENABLE","features":[197]},{"name":"SQL_ATTR_ASYNC_STMT_EVENT","features":[197]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CALLBACK","features":[197]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CONTEXT","features":[197]},{"name":"SQL_ATTR_AUTOCOMMIT","features":[197]},{"name":"SQL_ATTR_AUTO_IPD","features":[197]},{"name":"SQL_ATTR_CONCURRENCY","features":[197]},{"name":"SQL_ATTR_CONNECTION_DEAD","features":[197]},{"name":"SQL_ATTR_CONNECTION_POOLING","features":[197]},{"name":"SQL_ATTR_CONNECTION_TIMEOUT","features":[197]},{"name":"SQL_ATTR_CP_MATCH","features":[197]},{"name":"SQL_ATTR_CURRENT_CATALOG","features":[197]},{"name":"SQL_ATTR_CURSOR_SCROLLABLE","features":[197]},{"name":"SQL_ATTR_CURSOR_SENSITIVITY","features":[197]},{"name":"SQL_ATTR_CURSOR_TYPE","features":[197]},{"name":"SQL_ATTR_DBC_INFO_TOKEN","features":[197]},{"name":"SQL_ATTR_DISCONNECT_BEHAVIOR","features":[197]},{"name":"SQL_ATTR_ENABLE_AUTO_IPD","features":[197]},{"name":"SQL_ATTR_ENLIST_IN_DTC","features":[197]},{"name":"SQL_ATTR_ENLIST_IN_XA","features":[197]},{"name":"SQL_ATTR_FETCH_BOOKMARK_PTR","features":[197]},{"name":"SQL_ATTR_IMP_PARAM_DESC","features":[197]},{"name":"SQL_ATTR_IMP_ROW_DESC","features":[197]},{"name":"SQL_ATTR_KEYSET_SIZE","features":[197]},{"name":"SQL_ATTR_LOGIN_TIMEOUT","features":[197]},{"name":"SQL_ATTR_MAX_LENGTH","features":[197]},{"name":"SQL_ATTR_MAX_ROWS","features":[197]},{"name":"SQL_ATTR_METADATA_ID","features":[197]},{"name":"SQL_ATTR_NOSCAN","features":[197]},{"name":"SQL_ATTR_ODBC_CURSORS","features":[197]},{"name":"SQL_ATTR_ODBC_VERSION","features":[197]},{"name":"SQL_ATTR_OUTPUT_NTS","features":[197]},{"name":"SQL_ATTR_PACKET_SIZE","features":[197]},{"name":"SQL_ATTR_PARAMSET_SIZE","features":[197]},{"name":"SQL_ATTR_PARAMS_PROCESSED_PTR","features":[197]},{"name":"SQL_ATTR_PARAM_BIND_OFFSET_PTR","features":[197]},{"name":"SQL_ATTR_PARAM_BIND_TYPE","features":[197]},{"name":"SQL_ATTR_PARAM_OPERATION_PTR","features":[197]},{"name":"SQL_ATTR_PARAM_STATUS_PTR","features":[197]},{"name":"SQL_ATTR_QUERY_TIMEOUT","features":[197]},{"name":"SQL_ATTR_QUIET_MODE","features":[197]},{"name":"SQL_ATTR_READONLY","features":[197]},{"name":"SQL_ATTR_READWRITE_UNKNOWN","features":[197]},{"name":"SQL_ATTR_RESET_CONNECTION","features":[197]},{"name":"SQL_ATTR_RETRIEVE_DATA","features":[197]},{"name":"SQL_ATTR_ROWS_FETCHED_PTR","features":[197]},{"name":"SQL_ATTR_ROW_ARRAY_SIZE","features":[197]},{"name":"SQL_ATTR_ROW_BIND_OFFSET_PTR","features":[197]},{"name":"SQL_ATTR_ROW_BIND_TYPE","features":[197]},{"name":"SQL_ATTR_ROW_NUMBER","features":[197]},{"name":"SQL_ATTR_ROW_OPERATION_PTR","features":[197]},{"name":"SQL_ATTR_ROW_STATUS_PTR","features":[197]},{"name":"SQL_ATTR_SIMULATE_CURSOR","features":[197]},{"name":"SQL_ATTR_TRACE","features":[197]},{"name":"SQL_ATTR_TRACEFILE","features":[197]},{"name":"SQL_ATTR_TRANSLATE_LIB","features":[197]},{"name":"SQL_ATTR_TRANSLATE_OPTION","features":[197]},{"name":"SQL_ATTR_TXN_ISOLATION","features":[197]},{"name":"SQL_ATTR_USE_BOOKMARKS","features":[197]},{"name":"SQL_ATTR_WRITE","features":[197]},{"name":"SQL_AT_ADD_COLUMN","features":[197]},{"name":"SQL_AT_ADD_COLUMN_COLLATION","features":[197]},{"name":"SQL_AT_ADD_COLUMN_DEFAULT","features":[197]},{"name":"SQL_AT_ADD_COLUMN_SINGLE","features":[197]},{"name":"SQL_AT_ADD_CONSTRAINT","features":[197]},{"name":"SQL_AT_ADD_TABLE_CONSTRAINT","features":[197]},{"name":"SQL_AT_CONSTRAINT_DEFERRABLE","features":[197]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","features":[197]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[197]},{"name":"SQL_AT_CONSTRAINT_NAME_DEFINITION","features":[197]},{"name":"SQL_AT_CONSTRAINT_NON_DEFERRABLE","features":[197]},{"name":"SQL_AT_DROP_COLUMN","features":[197]},{"name":"SQL_AT_DROP_COLUMN_CASCADE","features":[197]},{"name":"SQL_AT_DROP_COLUMN_DEFAULT","features":[197]},{"name":"SQL_AT_DROP_COLUMN_RESTRICT","features":[197]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","features":[197]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","features":[197]},{"name":"SQL_AT_SET_COLUMN_DEFAULT","features":[197]},{"name":"SQL_AUTOCOMMIT","features":[197]},{"name":"SQL_AUTOCOMMIT_DEFAULT","features":[197]},{"name":"SQL_AUTOCOMMIT_OFF","features":[197]},{"name":"SQL_AUTOCOMMIT_ON","features":[197]},{"name":"SQL_BATCH_ROW_COUNT","features":[197]},{"name":"SQL_BATCH_SUPPORT","features":[197]},{"name":"SQL_BCP_DEFAULT","features":[197]},{"name":"SQL_BCP_OFF","features":[197]},{"name":"SQL_BCP_ON","features":[197]},{"name":"SQL_BEST_ROWID","features":[197]},{"name":"SQL_BIGINT","features":[197]},{"name":"SQL_BINARY","features":[197]},{"name":"SQL_BIND_BY_COLUMN","features":[197]},{"name":"SQL_BIND_TYPE","features":[197]},{"name":"SQL_BIND_TYPE_DEFAULT","features":[197]},{"name":"SQL_BIT","features":[197]},{"name":"SQL_BOOKMARK_PERSISTENCE","features":[197]},{"name":"SQL_BP_CLOSE","features":[197]},{"name":"SQL_BP_DELETE","features":[197]},{"name":"SQL_BP_DROP","features":[197]},{"name":"SQL_BP_OTHER_HSTMT","features":[197]},{"name":"SQL_BP_SCROLL","features":[197]},{"name":"SQL_BP_TRANSACTION","features":[197]},{"name":"SQL_BP_UPDATE","features":[197]},{"name":"SQL_BRC_EXPLICIT","features":[197]},{"name":"SQL_BRC_PROCEDURES","features":[197]},{"name":"SQL_BRC_ROLLED_UP","features":[197]},{"name":"SQL_BS_ROW_COUNT_EXPLICIT","features":[197]},{"name":"SQL_BS_ROW_COUNT_PROC","features":[197]},{"name":"SQL_BS_SELECT_EXPLICIT","features":[197]},{"name":"SQL_BS_SELECT_PROC","features":[197]},{"name":"SQL_CA1_ABSOLUTE","features":[197]},{"name":"SQL_CA1_BOOKMARK","features":[197]},{"name":"SQL_CA1_BULK_ADD","features":[197]},{"name":"SQL_CA1_BULK_DELETE_BY_BOOKMARK","features":[197]},{"name":"SQL_CA1_BULK_FETCH_BY_BOOKMARK","features":[197]},{"name":"SQL_CA1_BULK_UPDATE_BY_BOOKMARK","features":[197]},{"name":"SQL_CA1_LOCK_EXCLUSIVE","features":[197]},{"name":"SQL_CA1_LOCK_NO_CHANGE","features":[197]},{"name":"SQL_CA1_LOCK_UNLOCK","features":[197]},{"name":"SQL_CA1_NEXT","features":[197]},{"name":"SQL_CA1_POSITIONED_DELETE","features":[197]},{"name":"SQL_CA1_POSITIONED_UPDATE","features":[197]},{"name":"SQL_CA1_POS_DELETE","features":[197]},{"name":"SQL_CA1_POS_POSITION","features":[197]},{"name":"SQL_CA1_POS_REFRESH","features":[197]},{"name":"SQL_CA1_POS_UPDATE","features":[197]},{"name":"SQL_CA1_RELATIVE","features":[197]},{"name":"SQL_CA1_SELECT_FOR_UPDATE","features":[197]},{"name":"SQL_CA2_CRC_APPROXIMATE","features":[197]},{"name":"SQL_CA2_CRC_EXACT","features":[197]},{"name":"SQL_CA2_LOCK_CONCURRENCY","features":[197]},{"name":"SQL_CA2_MAX_ROWS_CATALOG","features":[197]},{"name":"SQL_CA2_MAX_ROWS_DELETE","features":[197]},{"name":"SQL_CA2_MAX_ROWS_INSERT","features":[197]},{"name":"SQL_CA2_MAX_ROWS_SELECT","features":[197]},{"name":"SQL_CA2_MAX_ROWS_UPDATE","features":[197]},{"name":"SQL_CA2_OPT_ROWVER_CONCURRENCY","features":[197]},{"name":"SQL_CA2_OPT_VALUES_CONCURRENCY","features":[197]},{"name":"SQL_CA2_READ_ONLY_CONCURRENCY","features":[197]},{"name":"SQL_CA2_SENSITIVITY_ADDITIONS","features":[197]},{"name":"SQL_CA2_SENSITIVITY_DELETIONS","features":[197]},{"name":"SQL_CA2_SENSITIVITY_UPDATES","features":[197]},{"name":"SQL_CA2_SIMULATE_NON_UNIQUE","features":[197]},{"name":"SQL_CA2_SIMULATE_TRY_UNIQUE","features":[197]},{"name":"SQL_CA2_SIMULATE_UNIQUE","features":[197]},{"name":"SQL_CACHE_DATA_NO","features":[197]},{"name":"SQL_CACHE_DATA_YES","features":[197]},{"name":"SQL_CASCADE","features":[197]},{"name":"SQL_CATALOG_LOCATION","features":[197]},{"name":"SQL_CATALOG_NAME","features":[197]},{"name":"SQL_CATALOG_NAME_SEPARATOR","features":[197]},{"name":"SQL_CATALOG_TERM","features":[197]},{"name":"SQL_CATALOG_USAGE","features":[197]},{"name":"SQL_CA_CONSTRAINT_DEFERRABLE","features":[197]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","features":[197]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","features":[197]},{"name":"SQL_CA_CONSTRAINT_NON_DEFERRABLE","features":[197]},{"name":"SQL_CA_CREATE_ASSERTION","features":[197]},{"name":"SQL_CA_SS_BASE","features":[197]},{"name":"SQL_CA_SS_COLUMN_COLLATION","features":[197]},{"name":"SQL_CA_SS_COLUMN_HIDDEN","features":[197]},{"name":"SQL_CA_SS_COLUMN_ID","features":[197]},{"name":"SQL_CA_SS_COLUMN_KEY","features":[197]},{"name":"SQL_CA_SS_COLUMN_OP","features":[197]},{"name":"SQL_CA_SS_COLUMN_ORDER","features":[197]},{"name":"SQL_CA_SS_COLUMN_SIZE","features":[197]},{"name":"SQL_CA_SS_COLUMN_SSTYPE","features":[197]},{"name":"SQL_CA_SS_COLUMN_UTYPE","features":[197]},{"name":"SQL_CA_SS_COLUMN_VARYLEN","features":[197]},{"name":"SQL_CA_SS_COMPUTE_BYLIST","features":[197]},{"name":"SQL_CA_SS_COMPUTE_ID","features":[197]},{"name":"SQL_CA_SS_MAX_USED","features":[197]},{"name":"SQL_CA_SS_NUM_COMPUTES","features":[197]},{"name":"SQL_CA_SS_NUM_ORDERS","features":[197]},{"name":"SQL_CA_SS_VARIANT_SERVER_TYPE","features":[197]},{"name":"SQL_CA_SS_VARIANT_SQL_TYPE","features":[197]},{"name":"SQL_CA_SS_VARIANT_TYPE","features":[197]},{"name":"SQL_CB_CLOSE","features":[197]},{"name":"SQL_CB_DELETE","features":[197]},{"name":"SQL_CB_NON_NULL","features":[197]},{"name":"SQL_CB_NULL","features":[197]},{"name":"SQL_CB_PRESERVE","features":[197]},{"name":"SQL_CCOL_CREATE_COLLATION","features":[197]},{"name":"SQL_CCS_COLLATE_CLAUSE","features":[197]},{"name":"SQL_CCS_CREATE_CHARACTER_SET","features":[197]},{"name":"SQL_CCS_LIMITED_COLLATION","features":[197]},{"name":"SQL_CC_CLOSE","features":[197]},{"name":"SQL_CC_DELETE","features":[197]},{"name":"SQL_CC_PRESERVE","features":[197]},{"name":"SQL_CDO_COLLATION","features":[197]},{"name":"SQL_CDO_CONSTRAINT","features":[197]},{"name":"SQL_CDO_CONSTRAINT_DEFERRABLE","features":[197]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","features":[197]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","features":[197]},{"name":"SQL_CDO_CONSTRAINT_NAME_DEFINITION","features":[197]},{"name":"SQL_CDO_CONSTRAINT_NON_DEFERRABLE","features":[197]},{"name":"SQL_CDO_CREATE_DOMAIN","features":[197]},{"name":"SQL_CDO_DEFAULT","features":[197]},{"name":"SQL_CD_FALSE","features":[197]},{"name":"SQL_CD_TRUE","features":[197]},{"name":"SQL_CHAR","features":[197]},{"name":"SQL_CLOSE","features":[197]},{"name":"SQL_CL_END","features":[197]},{"name":"SQL_CL_START","features":[197]},{"name":"SQL_CN_ANY","features":[197]},{"name":"SQL_CN_DEFAULT","features":[197]},{"name":"SQL_CN_DIFFERENT","features":[197]},{"name":"SQL_CN_NONE","features":[197]},{"name":"SQL_CN_OFF","features":[197]},{"name":"SQL_CN_ON","features":[197]},{"name":"SQL_CODE_DATE","features":[197]},{"name":"SQL_CODE_DAY","features":[197]},{"name":"SQL_CODE_DAY_TO_HOUR","features":[197]},{"name":"SQL_CODE_DAY_TO_MINUTE","features":[197]},{"name":"SQL_CODE_DAY_TO_SECOND","features":[197]},{"name":"SQL_CODE_HOUR","features":[197]},{"name":"SQL_CODE_HOUR_TO_MINUTE","features":[197]},{"name":"SQL_CODE_HOUR_TO_SECOND","features":[197]},{"name":"SQL_CODE_MINUTE","features":[197]},{"name":"SQL_CODE_MINUTE_TO_SECOND","features":[197]},{"name":"SQL_CODE_MONTH","features":[197]},{"name":"SQL_CODE_SECOND","features":[197]},{"name":"SQL_CODE_TIME","features":[197]},{"name":"SQL_CODE_TIMESTAMP","features":[197]},{"name":"SQL_CODE_YEAR","features":[197]},{"name":"SQL_CODE_YEAR_TO_MONTH","features":[197]},{"name":"SQL_COLATT_OPT_MAX","features":[197]},{"name":"SQL_COLATT_OPT_MIN","features":[197]},{"name":"SQL_COLLATION_SEQ","features":[197]},{"name":"SQL_COLUMN_ALIAS","features":[197]},{"name":"SQL_COLUMN_AUTO_INCREMENT","features":[197]},{"name":"SQL_COLUMN_CASE_SENSITIVE","features":[197]},{"name":"SQL_COLUMN_COUNT","features":[197]},{"name":"SQL_COLUMN_DISPLAY_SIZE","features":[197]},{"name":"SQL_COLUMN_DRIVER_START","features":[197]},{"name":"SQL_COLUMN_IGNORE","features":[197]},{"name":"SQL_COLUMN_LABEL","features":[197]},{"name":"SQL_COLUMN_LENGTH","features":[197]},{"name":"SQL_COLUMN_MONEY","features":[197]},{"name":"SQL_COLUMN_NAME","features":[197]},{"name":"SQL_COLUMN_NULLABLE","features":[197]},{"name":"SQL_COLUMN_NUMBER_UNKNOWN","features":[197]},{"name":"SQL_COLUMN_OWNER_NAME","features":[197]},{"name":"SQL_COLUMN_PRECISION","features":[197]},{"name":"SQL_COLUMN_QUALIFIER_NAME","features":[197]},{"name":"SQL_COLUMN_SCALE","features":[197]},{"name":"SQL_COLUMN_SEARCHABLE","features":[197]},{"name":"SQL_COLUMN_TABLE_NAME","features":[197]},{"name":"SQL_COLUMN_TYPE","features":[197]},{"name":"SQL_COLUMN_TYPE_NAME","features":[197]},{"name":"SQL_COLUMN_UNSIGNED","features":[197]},{"name":"SQL_COLUMN_UPDATABLE","features":[197]},{"name":"SQL_COMMIT","features":[197]},{"name":"SQL_CONCAT_NULL_BEHAVIOR","features":[197]},{"name":"SQL_CONCURRENCY","features":[197]},{"name":"SQL_CONCUR_DEFAULT","features":[197]},{"name":"SQL_CONCUR_LOCK","features":[197]},{"name":"SQL_CONCUR_READ_ONLY","features":[197]},{"name":"SQL_CONCUR_ROWVER","features":[197]},{"name":"SQL_CONCUR_TIMESTAMP","features":[197]},{"name":"SQL_CONCUR_VALUES","features":[197]},{"name":"SQL_CONNECT_OPT_DRVR_START","features":[197]},{"name":"SQL_CONN_OPT_MAX","features":[197]},{"name":"SQL_CONN_OPT_MIN","features":[197]},{"name":"SQL_CONN_POOL_RATING_BEST","features":[197]},{"name":"SQL_CONN_POOL_RATING_GOOD_ENOUGH","features":[197]},{"name":"SQL_CONN_POOL_RATING_USELESS","features":[197]},{"name":"SQL_CONVERT_BIGINT","features":[197]},{"name":"SQL_CONVERT_BINARY","features":[197]},{"name":"SQL_CONVERT_BIT","features":[197]},{"name":"SQL_CONVERT_CHAR","features":[197]},{"name":"SQL_CONVERT_DATE","features":[197]},{"name":"SQL_CONVERT_DECIMAL","features":[197]},{"name":"SQL_CONVERT_DOUBLE","features":[197]},{"name":"SQL_CONVERT_FLOAT","features":[197]},{"name":"SQL_CONVERT_FUNCTIONS","features":[197]},{"name":"SQL_CONVERT_GUID","features":[197]},{"name":"SQL_CONVERT_INTEGER","features":[197]},{"name":"SQL_CONVERT_INTERVAL_DAY_TIME","features":[197]},{"name":"SQL_CONVERT_INTERVAL_YEAR_MONTH","features":[197]},{"name":"SQL_CONVERT_LONGVARBINARY","features":[197]},{"name":"SQL_CONVERT_LONGVARCHAR","features":[197]},{"name":"SQL_CONVERT_NUMERIC","features":[197]},{"name":"SQL_CONVERT_REAL","features":[197]},{"name":"SQL_CONVERT_SMALLINT","features":[197]},{"name":"SQL_CONVERT_TIME","features":[197]},{"name":"SQL_CONVERT_TIMESTAMP","features":[197]},{"name":"SQL_CONVERT_TINYINT","features":[197]},{"name":"SQL_CONVERT_VARBINARY","features":[197]},{"name":"SQL_CONVERT_VARCHAR","features":[197]},{"name":"SQL_CONVERT_WCHAR","features":[197]},{"name":"SQL_CONVERT_WLONGVARCHAR","features":[197]},{"name":"SQL_CONVERT_WVARCHAR","features":[197]},{"name":"SQL_COPT_SS_ANSI_NPW","features":[197]},{"name":"SQL_COPT_SS_ANSI_OEM","features":[197]},{"name":"SQL_COPT_SS_ATTACHDBFILENAME","features":[197]},{"name":"SQL_COPT_SS_BASE","features":[197]},{"name":"SQL_COPT_SS_BASE_EX","features":[197]},{"name":"SQL_COPT_SS_BCP","features":[197]},{"name":"SQL_COPT_SS_BROWSE_CACHE_DATA","features":[197]},{"name":"SQL_COPT_SS_BROWSE_CONNECT","features":[197]},{"name":"SQL_COPT_SS_BROWSE_SERVER","features":[197]},{"name":"SQL_COPT_SS_CONCAT_NULL","features":[197]},{"name":"SQL_COPT_SS_CONNECTION_DEAD","features":[197]},{"name":"SQL_COPT_SS_ENCRYPT","features":[197]},{"name":"SQL_COPT_SS_EX_MAX_USED","features":[197]},{"name":"SQL_COPT_SS_FALLBACK_CONNECT","features":[197]},{"name":"SQL_COPT_SS_INTEGRATED_SECURITY","features":[197]},{"name":"SQL_COPT_SS_MAX_USED","features":[197]},{"name":"SQL_COPT_SS_PERF_DATA","features":[197]},{"name":"SQL_COPT_SS_PERF_DATA_LOG","features":[197]},{"name":"SQL_COPT_SS_PERF_DATA_LOG_NOW","features":[197]},{"name":"SQL_COPT_SS_PERF_QUERY","features":[197]},{"name":"SQL_COPT_SS_PERF_QUERY_INTERVAL","features":[197]},{"name":"SQL_COPT_SS_PERF_QUERY_LOG","features":[197]},{"name":"SQL_COPT_SS_PRESERVE_CURSORS","features":[197]},{"name":"SQL_COPT_SS_QUOTED_IDENT","features":[197]},{"name":"SQL_COPT_SS_REMOTE_PWD","features":[197]},{"name":"SQL_COPT_SS_RESET_CONNECTION","features":[197]},{"name":"SQL_COPT_SS_TRANSLATE","features":[197]},{"name":"SQL_COPT_SS_USER_DATA","features":[197]},{"name":"SQL_COPT_SS_USE_PROC_FOR_PREP","features":[197]},{"name":"SQL_COPT_SS_WARN_ON_CP_ERROR","features":[197]},{"name":"SQL_CORRELATION_NAME","features":[197]},{"name":"SQL_CO_AF","features":[197]},{"name":"SQL_CO_DEFAULT","features":[197]},{"name":"SQL_CO_FFO","features":[197]},{"name":"SQL_CO_FIREHOSE_AF","features":[197]},{"name":"SQL_CO_OFF","features":[197]},{"name":"SQL_CP_DEFAULT","features":[197]},{"name":"SQL_CP_DRIVER_AWARE","features":[197]},{"name":"SQL_CP_MATCH_DEFAULT","features":[197]},{"name":"SQL_CP_OFF","features":[197]},{"name":"SQL_CP_ONE_PER_DRIVER","features":[197]},{"name":"SQL_CP_ONE_PER_HENV","features":[197]},{"name":"SQL_CP_RELAXED_MATCH","features":[197]},{"name":"SQL_CP_STRICT_MATCH","features":[197]},{"name":"SQL_CREATE_ASSERTION","features":[197]},{"name":"SQL_CREATE_CHARACTER_SET","features":[197]},{"name":"SQL_CREATE_COLLATION","features":[197]},{"name":"SQL_CREATE_DOMAIN","features":[197]},{"name":"SQL_CREATE_SCHEMA","features":[197]},{"name":"SQL_CREATE_TABLE","features":[197]},{"name":"SQL_CREATE_TRANSLATION","features":[197]},{"name":"SQL_CREATE_VIEW","features":[197]},{"name":"SQL_CR_CLOSE","features":[197]},{"name":"SQL_CR_DELETE","features":[197]},{"name":"SQL_CR_PRESERVE","features":[197]},{"name":"SQL_CS_AUTHORIZATION","features":[197]},{"name":"SQL_CS_CREATE_SCHEMA","features":[197]},{"name":"SQL_CS_DEFAULT_CHARACTER_SET","features":[197]},{"name":"SQL_CTR_CREATE_TRANSLATION","features":[197]},{"name":"SQL_CT_COLUMN_COLLATION","features":[197]},{"name":"SQL_CT_COLUMN_CONSTRAINT","features":[197]},{"name":"SQL_CT_COLUMN_DEFAULT","features":[197]},{"name":"SQL_CT_COMMIT_DELETE","features":[197]},{"name":"SQL_CT_COMMIT_PRESERVE","features":[197]},{"name":"SQL_CT_CONSTRAINT_DEFERRABLE","features":[197]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","features":[197]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[197]},{"name":"SQL_CT_CONSTRAINT_NAME_DEFINITION","features":[197]},{"name":"SQL_CT_CONSTRAINT_NON_DEFERRABLE","features":[197]},{"name":"SQL_CT_CREATE_TABLE","features":[197]},{"name":"SQL_CT_GLOBAL_TEMPORARY","features":[197]},{"name":"SQL_CT_LOCAL_TEMPORARY","features":[197]},{"name":"SQL_CT_TABLE_CONSTRAINT","features":[197]},{"name":"SQL_CURRENT_QUALIFIER","features":[197]},{"name":"SQL_CURSOR_COMMIT_BEHAVIOR","features":[197]},{"name":"SQL_CURSOR_DYNAMIC","features":[197]},{"name":"SQL_CURSOR_FAST_FORWARD_ONLY","features":[197]},{"name":"SQL_CURSOR_FORWARD_ONLY","features":[197]},{"name":"SQL_CURSOR_KEYSET_DRIVEN","features":[197]},{"name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","features":[197]},{"name":"SQL_CURSOR_SENSITIVITY","features":[197]},{"name":"SQL_CURSOR_STATIC","features":[197]},{"name":"SQL_CURSOR_TYPE","features":[197]},{"name":"SQL_CURSOR_TYPE_DEFAULT","features":[197]},{"name":"SQL_CUR_DEFAULT","features":[197]},{"name":"SQL_CUR_USE_DRIVER","features":[197]},{"name":"SQL_CUR_USE_IF_NEEDED","features":[197]},{"name":"SQL_CUR_USE_ODBC","features":[197]},{"name":"SQL_CU_DML_STATEMENTS","features":[197]},{"name":"SQL_CU_INDEX_DEFINITION","features":[197]},{"name":"SQL_CU_PRIVILEGE_DEFINITION","features":[197]},{"name":"SQL_CU_PROCEDURE_INVOCATION","features":[197]},{"name":"SQL_CU_TABLE_DEFINITION","features":[197]},{"name":"SQL_CVT_BIGINT","features":[197]},{"name":"SQL_CVT_BINARY","features":[197]},{"name":"SQL_CVT_BIT","features":[197]},{"name":"SQL_CVT_CHAR","features":[197]},{"name":"SQL_CVT_DATE","features":[197]},{"name":"SQL_CVT_DECIMAL","features":[197]},{"name":"SQL_CVT_DOUBLE","features":[197]},{"name":"SQL_CVT_FLOAT","features":[197]},{"name":"SQL_CVT_GUID","features":[197]},{"name":"SQL_CVT_INTEGER","features":[197]},{"name":"SQL_CVT_INTERVAL_DAY_TIME","features":[197]},{"name":"SQL_CVT_INTERVAL_YEAR_MONTH","features":[197]},{"name":"SQL_CVT_LONGVARBINARY","features":[197]},{"name":"SQL_CVT_LONGVARCHAR","features":[197]},{"name":"SQL_CVT_NUMERIC","features":[197]},{"name":"SQL_CVT_REAL","features":[197]},{"name":"SQL_CVT_SMALLINT","features":[197]},{"name":"SQL_CVT_TIME","features":[197]},{"name":"SQL_CVT_TIMESTAMP","features":[197]},{"name":"SQL_CVT_TINYINT","features":[197]},{"name":"SQL_CVT_VARBINARY","features":[197]},{"name":"SQL_CVT_VARCHAR","features":[197]},{"name":"SQL_CVT_WCHAR","features":[197]},{"name":"SQL_CVT_WLONGVARCHAR","features":[197]},{"name":"SQL_CVT_WVARCHAR","features":[197]},{"name":"SQL_CV_CASCADED","features":[197]},{"name":"SQL_CV_CHECK_OPTION","features":[197]},{"name":"SQL_CV_CREATE_VIEW","features":[197]},{"name":"SQL_CV_LOCAL","features":[197]},{"name":"SQL_C_BINARY","features":[197]},{"name":"SQL_C_BIT","features":[197]},{"name":"SQL_C_CHAR","features":[197]},{"name":"SQL_C_DATE","features":[197]},{"name":"SQL_C_DEFAULT","features":[197]},{"name":"SQL_C_DOUBLE","features":[197]},{"name":"SQL_C_FLOAT","features":[197]},{"name":"SQL_C_GUID","features":[197]},{"name":"SQL_C_INTERVAL_DAY","features":[197]},{"name":"SQL_C_INTERVAL_DAY_TO_HOUR","features":[197]},{"name":"SQL_C_INTERVAL_DAY_TO_MINUTE","features":[197]},{"name":"SQL_C_INTERVAL_DAY_TO_SECOND","features":[197]},{"name":"SQL_C_INTERVAL_HOUR","features":[197]},{"name":"SQL_C_INTERVAL_HOUR_TO_MINUTE","features":[197]},{"name":"SQL_C_INTERVAL_HOUR_TO_SECOND","features":[197]},{"name":"SQL_C_INTERVAL_MINUTE","features":[197]},{"name":"SQL_C_INTERVAL_MINUTE_TO_SECOND","features":[197]},{"name":"SQL_C_INTERVAL_MONTH","features":[197]},{"name":"SQL_C_INTERVAL_SECOND","features":[197]},{"name":"SQL_C_INTERVAL_YEAR","features":[197]},{"name":"SQL_C_INTERVAL_YEAR_TO_MONTH","features":[197]},{"name":"SQL_C_LONG","features":[197]},{"name":"SQL_C_NUMERIC","features":[197]},{"name":"SQL_C_SHORT","features":[197]},{"name":"SQL_C_TCHAR","features":[197]},{"name":"SQL_C_TIME","features":[197]},{"name":"SQL_C_TIMESTAMP","features":[197]},{"name":"SQL_C_TINYINT","features":[197]},{"name":"SQL_C_TYPE_DATE","features":[197]},{"name":"SQL_C_TYPE_TIME","features":[197]},{"name":"SQL_C_TYPE_TIMESTAMP","features":[197]},{"name":"SQL_C_VARBOOKMARK","features":[197]},{"name":"SQL_C_WCHAR","features":[197]},{"name":"SQL_DATABASE_NAME","features":[197]},{"name":"SQL_DATA_AT_EXEC","features":[197]},{"name":"SQL_DATA_SOURCE_NAME","features":[197]},{"name":"SQL_DATA_SOURCE_READ_ONLY","features":[197]},{"name":"SQL_DATE","features":[197]},{"name":"SQL_DATETIME","features":[197]},{"name":"SQL_DATETIME_LITERALS","features":[197]},{"name":"SQL_DATE_LEN","features":[197]},{"name":"SQL_DAY","features":[197]},{"name":"SQL_DAY_SECOND_STRUCT","features":[197]},{"name":"SQL_DAY_TO_HOUR","features":[197]},{"name":"SQL_DAY_TO_MINUTE","features":[197]},{"name":"SQL_DAY_TO_SECOND","features":[197]},{"name":"SQL_DA_DROP_ASSERTION","features":[197]},{"name":"SQL_DBMS_NAME","features":[197]},{"name":"SQL_DBMS_VER","features":[197]},{"name":"SQL_DB_DEFAULT","features":[197]},{"name":"SQL_DB_DISCONNECT","features":[197]},{"name":"SQL_DB_RETURN_TO_POOL","features":[197]},{"name":"SQL_DCS_DROP_CHARACTER_SET","features":[197]},{"name":"SQL_DC_DROP_COLLATION","features":[197]},{"name":"SQL_DDL_INDEX","features":[197]},{"name":"SQL_DD_CASCADE","features":[197]},{"name":"SQL_DD_DROP_DOMAIN","features":[197]},{"name":"SQL_DD_RESTRICT","features":[197]},{"name":"SQL_DECIMAL","features":[197]},{"name":"SQL_DEFAULT","features":[197]},{"name":"SQL_DEFAULT_PARAM","features":[197]},{"name":"SQL_DEFAULT_TXN_ISOLATION","features":[197]},{"name":"SQL_DELETE","features":[197]},{"name":"SQL_DELETE_BY_BOOKMARK","features":[197]},{"name":"SQL_DESCRIBE_PARAMETER","features":[197]},{"name":"SQL_DESC_ALLOC_AUTO","features":[197]},{"name":"SQL_DESC_ALLOC_TYPE","features":[197]},{"name":"SQL_DESC_ALLOC_USER","features":[197]},{"name":"SQL_DESC_ARRAY_SIZE","features":[197]},{"name":"SQL_DESC_ARRAY_STATUS_PTR","features":[197]},{"name":"SQL_DESC_BASE_COLUMN_NAME","features":[197]},{"name":"SQL_DESC_BASE_TABLE_NAME","features":[197]},{"name":"SQL_DESC_BIND_OFFSET_PTR","features":[197]},{"name":"SQL_DESC_BIND_TYPE","features":[197]},{"name":"SQL_DESC_COUNT","features":[197]},{"name":"SQL_DESC_DATA_PTR","features":[197]},{"name":"SQL_DESC_DATETIME_INTERVAL_CODE","features":[197]},{"name":"SQL_DESC_DATETIME_INTERVAL_PRECISION","features":[197]},{"name":"SQL_DESC_INDICATOR_PTR","features":[197]},{"name":"SQL_DESC_LENGTH","features":[197]},{"name":"SQL_DESC_LITERAL_PREFIX","features":[197]},{"name":"SQL_DESC_LITERAL_SUFFIX","features":[197]},{"name":"SQL_DESC_LOCAL_TYPE_NAME","features":[197]},{"name":"SQL_DESC_MAXIMUM_SCALE","features":[197]},{"name":"SQL_DESC_MINIMUM_SCALE","features":[197]},{"name":"SQL_DESC_NAME","features":[197]},{"name":"SQL_DESC_NULLABLE","features":[197]},{"name":"SQL_DESC_NUM_PREC_RADIX","features":[197]},{"name":"SQL_DESC_OCTET_LENGTH","features":[197]},{"name":"SQL_DESC_OCTET_LENGTH_PTR","features":[197]},{"name":"SQL_DESC_PARAMETER_TYPE","features":[197]},{"name":"SQL_DESC_PRECISION","features":[197]},{"name":"SQL_DESC_ROWS_PROCESSED_PTR","features":[197]},{"name":"SQL_DESC_ROWVER","features":[197]},{"name":"SQL_DESC_SCALE","features":[197]},{"name":"SQL_DESC_TYPE","features":[197]},{"name":"SQL_DESC_UNNAMED","features":[197]},{"name":"SQL_DIAG_ALTER_DOMAIN","features":[197]},{"name":"SQL_DIAG_ALTER_TABLE","features":[197]},{"name":"SQL_DIAG_CALL","features":[197]},{"name":"SQL_DIAG_CLASS_ORIGIN","features":[197]},{"name":"SQL_DIAG_COLUMN_NUMBER","features":[197]},{"name":"SQL_DIAG_CONNECTION_NAME","features":[197]},{"name":"SQL_DIAG_CREATE_ASSERTION","features":[197]},{"name":"SQL_DIAG_CREATE_CHARACTER_SET","features":[197]},{"name":"SQL_DIAG_CREATE_COLLATION","features":[197]},{"name":"SQL_DIAG_CREATE_DOMAIN","features":[197]},{"name":"SQL_DIAG_CREATE_INDEX","features":[197]},{"name":"SQL_DIAG_CREATE_SCHEMA","features":[197]},{"name":"SQL_DIAG_CREATE_TABLE","features":[197]},{"name":"SQL_DIAG_CREATE_TRANSLATION","features":[197]},{"name":"SQL_DIAG_CREATE_VIEW","features":[197]},{"name":"SQL_DIAG_CURSOR_ROW_COUNT","features":[197]},{"name":"SQL_DIAG_DELETE_WHERE","features":[197]},{"name":"SQL_DIAG_DFC_SS_ALTER_DATABASE","features":[197]},{"name":"SQL_DIAG_DFC_SS_BASE","features":[197]},{"name":"SQL_DIAG_DFC_SS_CHECKPOINT","features":[197]},{"name":"SQL_DIAG_DFC_SS_CONDITION","features":[197]},{"name":"SQL_DIAG_DFC_SS_CREATE_DATABASE","features":[197]},{"name":"SQL_DIAG_DFC_SS_CREATE_DEFAULT","features":[197]},{"name":"SQL_DIAG_DFC_SS_CREATE_PROCEDURE","features":[197]},{"name":"SQL_DIAG_DFC_SS_CREATE_RULE","features":[197]},{"name":"SQL_DIAG_DFC_SS_CREATE_TRIGGER","features":[197]},{"name":"SQL_DIAG_DFC_SS_CURSOR_CLOSE","features":[197]},{"name":"SQL_DIAG_DFC_SS_CURSOR_DECLARE","features":[197]},{"name":"SQL_DIAG_DFC_SS_CURSOR_FETCH","features":[197]},{"name":"SQL_DIAG_DFC_SS_CURSOR_OPEN","features":[197]},{"name":"SQL_DIAG_DFC_SS_DBCC","features":[197]},{"name":"SQL_DIAG_DFC_SS_DEALLOCATE_CURSOR","features":[197]},{"name":"SQL_DIAG_DFC_SS_DENY","features":[197]},{"name":"SQL_DIAG_DFC_SS_DISK","features":[197]},{"name":"SQL_DIAG_DFC_SS_DROP_DATABASE","features":[197]},{"name":"SQL_DIAG_DFC_SS_DROP_DEFAULT","features":[197]},{"name":"SQL_DIAG_DFC_SS_DROP_PROCEDURE","features":[197]},{"name":"SQL_DIAG_DFC_SS_DROP_RULE","features":[197]},{"name":"SQL_DIAG_DFC_SS_DROP_TRIGGER","features":[197]},{"name":"SQL_DIAG_DFC_SS_DUMP_DATABASE","features":[197]},{"name":"SQL_DIAG_DFC_SS_DUMP_TABLE","features":[197]},{"name":"SQL_DIAG_DFC_SS_DUMP_TRANSACTION","features":[197]},{"name":"SQL_DIAG_DFC_SS_GOTO","features":[197]},{"name":"SQL_DIAG_DFC_SS_INSERT_BULK","features":[197]},{"name":"SQL_DIAG_DFC_SS_KILL","features":[197]},{"name":"SQL_DIAG_DFC_SS_LOAD_DATABASE","features":[197]},{"name":"SQL_DIAG_DFC_SS_LOAD_HEADERONLY","features":[197]},{"name":"SQL_DIAG_DFC_SS_LOAD_TABLE","features":[197]},{"name":"SQL_DIAG_DFC_SS_LOAD_TRANSACTION","features":[197]},{"name":"SQL_DIAG_DFC_SS_PRINT","features":[197]},{"name":"SQL_DIAG_DFC_SS_RAISERROR","features":[197]},{"name":"SQL_DIAG_DFC_SS_READTEXT","features":[197]},{"name":"SQL_DIAG_DFC_SS_RECONFIGURE","features":[197]},{"name":"SQL_DIAG_DFC_SS_RETURN","features":[197]},{"name":"SQL_DIAG_DFC_SS_SELECT_INTO","features":[197]},{"name":"SQL_DIAG_DFC_SS_SET","features":[197]},{"name":"SQL_DIAG_DFC_SS_SETUSER","features":[197]},{"name":"SQL_DIAG_DFC_SS_SET_IDENTITY_INSERT","features":[197]},{"name":"SQL_DIAG_DFC_SS_SET_ROW_COUNT","features":[197]},{"name":"SQL_DIAG_DFC_SS_SET_STATISTICS","features":[197]},{"name":"SQL_DIAG_DFC_SS_SET_TEXTSIZE","features":[197]},{"name":"SQL_DIAG_DFC_SS_SET_XCTLVL","features":[197]},{"name":"SQL_DIAG_DFC_SS_SHUTDOWN","features":[197]},{"name":"SQL_DIAG_DFC_SS_TRANS_BEGIN","features":[197]},{"name":"SQL_DIAG_DFC_SS_TRANS_COMMIT","features":[197]},{"name":"SQL_DIAG_DFC_SS_TRANS_PREPARE","features":[197]},{"name":"SQL_DIAG_DFC_SS_TRANS_ROLLBACK","features":[197]},{"name":"SQL_DIAG_DFC_SS_TRANS_SAVE","features":[197]},{"name":"SQL_DIAG_DFC_SS_TRUNCATE_TABLE","features":[197]},{"name":"SQL_DIAG_DFC_SS_UPDATETEXT","features":[197]},{"name":"SQL_DIAG_DFC_SS_UPDATE_STATISTICS","features":[197]},{"name":"SQL_DIAG_DFC_SS_USE","features":[197]},{"name":"SQL_DIAG_DFC_SS_WAITFOR","features":[197]},{"name":"SQL_DIAG_DFC_SS_WRITETEXT","features":[197]},{"name":"SQL_DIAG_DROP_ASSERTION","features":[197]},{"name":"SQL_DIAG_DROP_CHARACTER_SET","features":[197]},{"name":"SQL_DIAG_DROP_COLLATION","features":[197]},{"name":"SQL_DIAG_DROP_DOMAIN","features":[197]},{"name":"SQL_DIAG_DROP_INDEX","features":[197]},{"name":"SQL_DIAG_DROP_SCHEMA","features":[197]},{"name":"SQL_DIAG_DROP_TABLE","features":[197]},{"name":"SQL_DIAG_DROP_TRANSLATION","features":[197]},{"name":"SQL_DIAG_DROP_VIEW","features":[197]},{"name":"SQL_DIAG_DYNAMIC_DELETE_CURSOR","features":[197]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION","features":[197]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION_CODE","features":[197]},{"name":"SQL_DIAG_DYNAMIC_UPDATE_CURSOR","features":[197]},{"name":"SQL_DIAG_GRANT","features":[197]},{"name":"SQL_DIAG_INSERT","features":[197]},{"name":"SQL_DIAG_MESSAGE_TEXT","features":[197]},{"name":"SQL_DIAG_NATIVE","features":[197]},{"name":"SQL_DIAG_NUMBER","features":[197]},{"name":"SQL_DIAG_RETURNCODE","features":[197]},{"name":"SQL_DIAG_REVOKE","features":[197]},{"name":"SQL_DIAG_ROW_COUNT","features":[197]},{"name":"SQL_DIAG_ROW_NUMBER","features":[197]},{"name":"SQL_DIAG_SELECT_CURSOR","features":[197]},{"name":"SQL_DIAG_SERVER_NAME","features":[197]},{"name":"SQL_DIAG_SQLSTATE","features":[197]},{"name":"SQL_DIAG_SS_BASE","features":[197]},{"name":"SQL_DIAG_SS_LINE","features":[197]},{"name":"SQL_DIAG_SS_MSGSTATE","features":[197]},{"name":"SQL_DIAG_SS_PROCNAME","features":[197]},{"name":"SQL_DIAG_SS_SEVERITY","features":[197]},{"name":"SQL_DIAG_SS_SRVNAME","features":[197]},{"name":"SQL_DIAG_SUBCLASS_ORIGIN","features":[197]},{"name":"SQL_DIAG_UNKNOWN_STATEMENT","features":[197]},{"name":"SQL_DIAG_UPDATE_WHERE","features":[197]},{"name":"SQL_DI_CREATE_INDEX","features":[197]},{"name":"SQL_DI_DROP_INDEX","features":[197]},{"name":"SQL_DL_SQL92_DATE","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_DAY","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_MONTH","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_SECOND","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR","features":[197]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","features":[197]},{"name":"SQL_DL_SQL92_TIME","features":[197]},{"name":"SQL_DL_SQL92_TIMESTAMP","features":[197]},{"name":"SQL_DM_VER","features":[197]},{"name":"SQL_DOUBLE","features":[197]},{"name":"SQL_DP_OFF","features":[197]},{"name":"SQL_DP_ON","features":[197]},{"name":"SQL_DRIVER_AWARE_POOLING_CAPABLE","features":[197]},{"name":"SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","features":[197]},{"name":"SQL_DRIVER_AWARE_POOLING_SUPPORTED","features":[197]},{"name":"SQL_DRIVER_COMPLETE","features":[197]},{"name":"SQL_DRIVER_COMPLETE_REQUIRED","features":[197]},{"name":"SQL_DRIVER_CONN_ATTR_BASE","features":[197]},{"name":"SQL_DRIVER_C_TYPE_BASE","features":[197]},{"name":"SQL_DRIVER_DESC_FIELD_BASE","features":[197]},{"name":"SQL_DRIVER_DIAG_FIELD_BASE","features":[197]},{"name":"SQL_DRIVER_HDBC","features":[197]},{"name":"SQL_DRIVER_HDESC","features":[197]},{"name":"SQL_DRIVER_HENV","features":[197]},{"name":"SQL_DRIVER_HLIB","features":[197]},{"name":"SQL_DRIVER_HSTMT","features":[197]},{"name":"SQL_DRIVER_INFO_TYPE_BASE","features":[197]},{"name":"SQL_DRIVER_NAME","features":[197]},{"name":"SQL_DRIVER_NOPROMPT","features":[197]},{"name":"SQL_DRIVER_ODBC_VER","features":[197]},{"name":"SQL_DRIVER_PROMPT","features":[197]},{"name":"SQL_DRIVER_SQL_TYPE_BASE","features":[197]},{"name":"SQL_DRIVER_STMT_ATTR_BASE","features":[197]},{"name":"SQL_DRIVER_VER","features":[197]},{"name":"SQL_DROP","features":[197]},{"name":"SQL_DROP_ASSERTION","features":[197]},{"name":"SQL_DROP_CHARACTER_SET","features":[197]},{"name":"SQL_DROP_COLLATION","features":[197]},{"name":"SQL_DROP_DOMAIN","features":[197]},{"name":"SQL_DROP_SCHEMA","features":[197]},{"name":"SQL_DROP_TABLE","features":[197]},{"name":"SQL_DROP_TRANSLATION","features":[197]},{"name":"SQL_DROP_VIEW","features":[197]},{"name":"SQL_DS_CASCADE","features":[197]},{"name":"SQL_DS_DROP_SCHEMA","features":[197]},{"name":"SQL_DS_RESTRICT","features":[197]},{"name":"SQL_DTC_DONE","features":[197]},{"name":"SQL_DTC_ENLIST_EXPENSIVE","features":[197]},{"name":"SQL_DTC_TRANSITION_COST","features":[197]},{"name":"SQL_DTC_UNENLIST_EXPENSIVE","features":[197]},{"name":"SQL_DTR_DROP_TRANSLATION","features":[197]},{"name":"SQL_DT_CASCADE","features":[197]},{"name":"SQL_DT_DROP_TABLE","features":[197]},{"name":"SQL_DT_RESTRICT","features":[197]},{"name":"SQL_DV_CASCADE","features":[197]},{"name":"SQL_DV_DROP_VIEW","features":[197]},{"name":"SQL_DV_RESTRICT","features":[197]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES1","features":[197]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES2","features":[197]},{"name":"SQL_ENSURE","features":[197]},{"name":"SQL_ENTIRE_ROWSET","features":[197]},{"name":"SQL_EN_OFF","features":[197]},{"name":"SQL_EN_ON","features":[197]},{"name":"SQL_ERROR","features":[197]},{"name":"SQL_EXPRESSIONS_IN_ORDERBY","features":[197]},{"name":"SQL_EXT_API_LAST","features":[197]},{"name":"SQL_EXT_API_START","features":[197]},{"name":"SQL_FALSE","features":[197]},{"name":"SQL_FAST_CONNECT","features":[197]},{"name":"SQL_FB_DEFAULT","features":[197]},{"name":"SQL_FB_OFF","features":[197]},{"name":"SQL_FB_ON","features":[197]},{"name":"SQL_FC_DEFAULT","features":[197]},{"name":"SQL_FC_OFF","features":[197]},{"name":"SQL_FC_ON","features":[197]},{"name":"SQL_FD_FETCH_ABSOLUTE","features":[197]},{"name":"SQL_FD_FETCH_BOOKMARK","features":[197]},{"name":"SQL_FD_FETCH_FIRST","features":[197]},{"name":"SQL_FD_FETCH_LAST","features":[197]},{"name":"SQL_FD_FETCH_NEXT","features":[197]},{"name":"SQL_FD_FETCH_PREV","features":[197]},{"name":"SQL_FD_FETCH_PRIOR","features":[197]},{"name":"SQL_FD_FETCH_RELATIVE","features":[197]},{"name":"SQL_FD_FETCH_RESUME","features":[197]},{"name":"SQL_FETCH_ABSOLUTE","features":[197]},{"name":"SQL_FETCH_BOOKMARK","features":[197]},{"name":"SQL_FETCH_BY_BOOKMARK","features":[197]},{"name":"SQL_FETCH_DIRECTION","features":[197]},{"name":"SQL_FETCH_FIRST","features":[197]},{"name":"SQL_FETCH_FIRST_SYSTEM","features":[197]},{"name":"SQL_FETCH_FIRST_USER","features":[197]},{"name":"SQL_FETCH_LAST","features":[197]},{"name":"SQL_FETCH_NEXT","features":[197]},{"name":"SQL_FETCH_PREV","features":[197]},{"name":"SQL_FETCH_PRIOR","features":[197]},{"name":"SQL_FETCH_RELATIVE","features":[197]},{"name":"SQL_FETCH_RESUME","features":[197]},{"name":"SQL_FILE_CATALOG","features":[197]},{"name":"SQL_FILE_NOT_SUPPORTED","features":[197]},{"name":"SQL_FILE_QUALIFIER","features":[197]},{"name":"SQL_FILE_TABLE","features":[197]},{"name":"SQL_FILE_USAGE","features":[197]},{"name":"SQL_FLOAT","features":[197]},{"name":"SQL_FN_CVT_CAST","features":[197]},{"name":"SQL_FN_CVT_CONVERT","features":[197]},{"name":"SQL_FN_NUM_ABS","features":[197]},{"name":"SQL_FN_NUM_ACOS","features":[197]},{"name":"SQL_FN_NUM_ASIN","features":[197]},{"name":"SQL_FN_NUM_ATAN","features":[197]},{"name":"SQL_FN_NUM_ATAN2","features":[197]},{"name":"SQL_FN_NUM_CEILING","features":[197]},{"name":"SQL_FN_NUM_COS","features":[197]},{"name":"SQL_FN_NUM_COT","features":[197]},{"name":"SQL_FN_NUM_DEGREES","features":[197]},{"name":"SQL_FN_NUM_EXP","features":[197]},{"name":"SQL_FN_NUM_FLOOR","features":[197]},{"name":"SQL_FN_NUM_LOG","features":[197]},{"name":"SQL_FN_NUM_LOG10","features":[197]},{"name":"SQL_FN_NUM_MOD","features":[197]},{"name":"SQL_FN_NUM_PI","features":[197]},{"name":"SQL_FN_NUM_POWER","features":[197]},{"name":"SQL_FN_NUM_RADIANS","features":[197]},{"name":"SQL_FN_NUM_RAND","features":[197]},{"name":"SQL_FN_NUM_ROUND","features":[197]},{"name":"SQL_FN_NUM_SIGN","features":[197]},{"name":"SQL_FN_NUM_SIN","features":[197]},{"name":"SQL_FN_NUM_SQRT","features":[197]},{"name":"SQL_FN_NUM_TAN","features":[197]},{"name":"SQL_FN_NUM_TRUNCATE","features":[197]},{"name":"SQL_FN_STR_ASCII","features":[197]},{"name":"SQL_FN_STR_BIT_LENGTH","features":[197]},{"name":"SQL_FN_STR_CHAR","features":[197]},{"name":"SQL_FN_STR_CHARACTER_LENGTH","features":[197]},{"name":"SQL_FN_STR_CHAR_LENGTH","features":[197]},{"name":"SQL_FN_STR_CONCAT","features":[197]},{"name":"SQL_FN_STR_DIFFERENCE","features":[197]},{"name":"SQL_FN_STR_INSERT","features":[197]},{"name":"SQL_FN_STR_LCASE","features":[197]},{"name":"SQL_FN_STR_LEFT","features":[197]},{"name":"SQL_FN_STR_LENGTH","features":[197]},{"name":"SQL_FN_STR_LOCATE","features":[197]},{"name":"SQL_FN_STR_LOCATE_2","features":[197]},{"name":"SQL_FN_STR_LTRIM","features":[197]},{"name":"SQL_FN_STR_OCTET_LENGTH","features":[197]},{"name":"SQL_FN_STR_POSITION","features":[197]},{"name":"SQL_FN_STR_REPEAT","features":[197]},{"name":"SQL_FN_STR_REPLACE","features":[197]},{"name":"SQL_FN_STR_RIGHT","features":[197]},{"name":"SQL_FN_STR_RTRIM","features":[197]},{"name":"SQL_FN_STR_SOUNDEX","features":[197]},{"name":"SQL_FN_STR_SPACE","features":[197]},{"name":"SQL_FN_STR_SUBSTRING","features":[197]},{"name":"SQL_FN_STR_UCASE","features":[197]},{"name":"SQL_FN_SYS_DBNAME","features":[197]},{"name":"SQL_FN_SYS_IFNULL","features":[197]},{"name":"SQL_FN_SYS_USERNAME","features":[197]},{"name":"SQL_FN_TD_CURDATE","features":[197]},{"name":"SQL_FN_TD_CURRENT_DATE","features":[197]},{"name":"SQL_FN_TD_CURRENT_TIME","features":[197]},{"name":"SQL_FN_TD_CURRENT_TIMESTAMP","features":[197]},{"name":"SQL_FN_TD_CURTIME","features":[197]},{"name":"SQL_FN_TD_DAYNAME","features":[197]},{"name":"SQL_FN_TD_DAYOFMONTH","features":[197]},{"name":"SQL_FN_TD_DAYOFWEEK","features":[197]},{"name":"SQL_FN_TD_DAYOFYEAR","features":[197]},{"name":"SQL_FN_TD_EXTRACT","features":[197]},{"name":"SQL_FN_TD_HOUR","features":[197]},{"name":"SQL_FN_TD_MINUTE","features":[197]},{"name":"SQL_FN_TD_MONTH","features":[197]},{"name":"SQL_FN_TD_MONTHNAME","features":[197]},{"name":"SQL_FN_TD_NOW","features":[197]},{"name":"SQL_FN_TD_QUARTER","features":[197]},{"name":"SQL_FN_TD_SECOND","features":[197]},{"name":"SQL_FN_TD_TIMESTAMPADD","features":[197]},{"name":"SQL_FN_TD_TIMESTAMPDIFF","features":[197]},{"name":"SQL_FN_TD_WEEK","features":[197]},{"name":"SQL_FN_TD_YEAR","features":[197]},{"name":"SQL_FN_TSI_DAY","features":[197]},{"name":"SQL_FN_TSI_FRAC_SECOND","features":[197]},{"name":"SQL_FN_TSI_HOUR","features":[197]},{"name":"SQL_FN_TSI_MINUTE","features":[197]},{"name":"SQL_FN_TSI_MONTH","features":[197]},{"name":"SQL_FN_TSI_QUARTER","features":[197]},{"name":"SQL_FN_TSI_SECOND","features":[197]},{"name":"SQL_FN_TSI_WEEK","features":[197]},{"name":"SQL_FN_TSI_YEAR","features":[197]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","features":[197]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","features":[197]},{"name":"SQL_GB_COLLATE","features":[197]},{"name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","features":[197]},{"name":"SQL_GB_GROUP_BY_EQUALS_SELECT","features":[197]},{"name":"SQL_GB_NOT_SUPPORTED","features":[197]},{"name":"SQL_GB_NO_RELATION","features":[197]},{"name":"SQL_GD_ANY_COLUMN","features":[197]},{"name":"SQL_GD_ANY_ORDER","features":[197]},{"name":"SQL_GD_BLOCK","features":[197]},{"name":"SQL_GD_BOUND","features":[197]},{"name":"SQL_GD_OUTPUT_PARAMS","features":[197]},{"name":"SQL_GETDATA_EXTENSIONS","features":[197]},{"name":"SQL_GET_BOOKMARK","features":[197]},{"name":"SQL_GROUP_BY","features":[197]},{"name":"SQL_GUID","features":[197]},{"name":"SQL_HANDLE_DBC","features":[197]},{"name":"SQL_HANDLE_DBC_INFO_TOKEN","features":[197]},{"name":"SQL_HANDLE_DESC","features":[197]},{"name":"SQL_HANDLE_ENV","features":[197]},{"name":"SQL_HANDLE_SENV","features":[197]},{"name":"SQL_HANDLE_STMT","features":[197]},{"name":"SQL_HC_DEFAULT","features":[197]},{"name":"SQL_HC_OFF","features":[197]},{"name":"SQL_HC_ON","features":[197]},{"name":"SQL_HOUR","features":[197]},{"name":"SQL_HOUR_TO_MINUTE","features":[197]},{"name":"SQL_HOUR_TO_SECOND","features":[197]},{"name":"SQL_IC_LOWER","features":[197]},{"name":"SQL_IC_MIXED","features":[197]},{"name":"SQL_IC_SENSITIVE","features":[197]},{"name":"SQL_IC_UPPER","features":[197]},{"name":"SQL_IDENTIFIER_CASE","features":[197]},{"name":"SQL_IDENTIFIER_QUOTE_CHAR","features":[197]},{"name":"SQL_IGNORE","features":[197]},{"name":"SQL_IK_ASC","features":[197]},{"name":"SQL_IK_DESC","features":[197]},{"name":"SQL_IK_NONE","features":[197]},{"name":"SQL_INDEX_ALL","features":[197]},{"name":"SQL_INDEX_CLUSTERED","features":[197]},{"name":"SQL_INDEX_HASHED","features":[197]},{"name":"SQL_INDEX_KEYWORDS","features":[197]},{"name":"SQL_INDEX_OTHER","features":[197]},{"name":"SQL_INDEX_UNIQUE","features":[197]},{"name":"SQL_INFO_DRIVER_START","features":[197]},{"name":"SQL_INFO_FIRST","features":[197]},{"name":"SQL_INFO_LAST","features":[197]},{"name":"SQL_INFO_SCHEMA_VIEWS","features":[197]},{"name":"SQL_INFO_SS_FIRST","features":[197]},{"name":"SQL_INFO_SS_MAX_USED","features":[197]},{"name":"SQL_INFO_SS_NETLIB_NAME","features":[197]},{"name":"SQL_INFO_SS_NETLIB_NAMEA","features":[197]},{"name":"SQL_INFO_SS_NETLIB_NAMEW","features":[197]},{"name":"SQL_INITIALLY_DEFERRED","features":[197]},{"name":"SQL_INITIALLY_IMMEDIATE","features":[197]},{"name":"SQL_INSENSITIVE","features":[197]},{"name":"SQL_INSERT_STATEMENT","features":[197]},{"name":"SQL_INTEGER","features":[197]},{"name":"SQL_INTEGRATED_SECURITY","features":[197]},{"name":"SQL_INTEGRITY","features":[197]},{"name":"SQL_INTERVAL","features":[197]},{"name":"SQL_INTERVAL_DAY","features":[197]},{"name":"SQL_INTERVAL_DAY_TO_HOUR","features":[197]},{"name":"SQL_INTERVAL_DAY_TO_MINUTE","features":[197]},{"name":"SQL_INTERVAL_DAY_TO_SECOND","features":[197]},{"name":"SQL_INTERVAL_HOUR","features":[197]},{"name":"SQL_INTERVAL_HOUR_TO_MINUTE","features":[197]},{"name":"SQL_INTERVAL_HOUR_TO_SECOND","features":[197]},{"name":"SQL_INTERVAL_MINUTE","features":[197]},{"name":"SQL_INTERVAL_MINUTE_TO_SECOND","features":[197]},{"name":"SQL_INTERVAL_MONTH","features":[197]},{"name":"SQL_INTERVAL_SECOND","features":[197]},{"name":"SQL_INTERVAL_STRUCT","features":[197]},{"name":"SQL_INTERVAL_YEAR","features":[197]},{"name":"SQL_INTERVAL_YEAR_TO_MONTH","features":[197]},{"name":"SQL_INVALID_HANDLE","features":[197]},{"name":"SQL_ISV_ASSERTIONS","features":[197]},{"name":"SQL_ISV_CHARACTER_SETS","features":[197]},{"name":"SQL_ISV_CHECK_CONSTRAINTS","features":[197]},{"name":"SQL_ISV_COLLATIONS","features":[197]},{"name":"SQL_ISV_COLUMNS","features":[197]},{"name":"SQL_ISV_COLUMN_DOMAIN_USAGE","features":[197]},{"name":"SQL_ISV_COLUMN_PRIVILEGES","features":[197]},{"name":"SQL_ISV_CONSTRAINT_COLUMN_USAGE","features":[197]},{"name":"SQL_ISV_CONSTRAINT_TABLE_USAGE","features":[197]},{"name":"SQL_ISV_DOMAINS","features":[197]},{"name":"SQL_ISV_DOMAIN_CONSTRAINTS","features":[197]},{"name":"SQL_ISV_KEY_COLUMN_USAGE","features":[197]},{"name":"SQL_ISV_REFERENTIAL_CONSTRAINTS","features":[197]},{"name":"SQL_ISV_SCHEMATA","features":[197]},{"name":"SQL_ISV_SQL_LANGUAGES","features":[197]},{"name":"SQL_ISV_TABLES","features":[197]},{"name":"SQL_ISV_TABLE_CONSTRAINTS","features":[197]},{"name":"SQL_ISV_TABLE_PRIVILEGES","features":[197]},{"name":"SQL_ISV_TRANSLATIONS","features":[197]},{"name":"SQL_ISV_USAGE_PRIVILEGES","features":[197]},{"name":"SQL_ISV_VIEWS","features":[197]},{"name":"SQL_ISV_VIEW_COLUMN_USAGE","features":[197]},{"name":"SQL_ISV_VIEW_TABLE_USAGE","features":[197]},{"name":"SQL_IS_DAY","features":[197]},{"name":"SQL_IS_DAY_TO_HOUR","features":[197]},{"name":"SQL_IS_DAY_TO_MINUTE","features":[197]},{"name":"SQL_IS_DAY_TO_SECOND","features":[197]},{"name":"SQL_IS_DEFAULT","features":[197]},{"name":"SQL_IS_HOUR","features":[197]},{"name":"SQL_IS_HOUR_TO_MINUTE","features":[197]},{"name":"SQL_IS_HOUR_TO_SECOND","features":[197]},{"name":"SQL_IS_INSERT_LITERALS","features":[197]},{"name":"SQL_IS_INSERT_SEARCHED","features":[197]},{"name":"SQL_IS_INTEGER","features":[197]},{"name":"SQL_IS_MINUTE","features":[197]},{"name":"SQL_IS_MINUTE_TO_SECOND","features":[197]},{"name":"SQL_IS_MONTH","features":[197]},{"name":"SQL_IS_OFF","features":[197]},{"name":"SQL_IS_ON","features":[197]},{"name":"SQL_IS_POINTER","features":[197]},{"name":"SQL_IS_SECOND","features":[197]},{"name":"SQL_IS_SELECT_INTO","features":[197]},{"name":"SQL_IS_SMALLINT","features":[197]},{"name":"SQL_IS_UINTEGER","features":[197]},{"name":"SQL_IS_USMALLINT","features":[197]},{"name":"SQL_IS_YEAR","features":[197]},{"name":"SQL_IS_YEAR_TO_MONTH","features":[197]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES1","features":[197]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES2","features":[197]},{"name":"SQL_KEYSET_SIZE","features":[197]},{"name":"SQL_KEYSET_SIZE_DEFAULT","features":[197]},{"name":"SQL_KEYWORDS","features":[197]},{"name":"SQL_LCK_EXCLUSIVE","features":[197]},{"name":"SQL_LCK_NO_CHANGE","features":[197]},{"name":"SQL_LCK_UNLOCK","features":[197]},{"name":"SQL_LEN_BINARY_ATTR_OFFSET","features":[197]},{"name":"SQL_LEN_DATA_AT_EXEC_OFFSET","features":[197]},{"name":"SQL_LIKE_ESCAPE_CLAUSE","features":[197]},{"name":"SQL_LIKE_ONLY","features":[197]},{"name":"SQL_LOCK_EXCLUSIVE","features":[197]},{"name":"SQL_LOCK_NO_CHANGE","features":[197]},{"name":"SQL_LOCK_TYPES","features":[197]},{"name":"SQL_LOCK_UNLOCK","features":[197]},{"name":"SQL_LOGIN_TIMEOUT","features":[197]},{"name":"SQL_LOGIN_TIMEOUT_DEFAULT","features":[197]},{"name":"SQL_LONGVARBINARY","features":[197]},{"name":"SQL_LONGVARCHAR","features":[197]},{"name":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","features":[197]},{"name":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","features":[197]},{"name":"SQL_MAXIMUM_COLUMNS_IN_INDEX","features":[197]},{"name":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","features":[197]},{"name":"SQL_MAXIMUM_COLUMNS_IN_SELECT","features":[197]},{"name":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","features":[197]},{"name":"SQL_MAXIMUM_CONCURRENT_ACTIVITIES","features":[197]},{"name":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","features":[197]},{"name":"SQL_MAXIMUM_DRIVER_CONNECTIONS","features":[197]},{"name":"SQL_MAXIMUM_IDENTIFIER_LENGTH","features":[197]},{"name":"SQL_MAXIMUM_INDEX_SIZE","features":[197]},{"name":"SQL_MAXIMUM_ROW_SIZE","features":[197]},{"name":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","features":[197]},{"name":"SQL_MAXIMUM_STATEMENT_LENGTH","features":[197]},{"name":"SQL_MAXIMUM_TABLES_IN_SELECT","features":[197]},{"name":"SQL_MAXIMUM_USER_NAME_LENGTH","features":[197]},{"name":"SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","features":[197]},{"name":"SQL_MAX_BINARY_LITERAL_LEN","features":[197]},{"name":"SQL_MAX_CATALOG_NAME_LEN","features":[197]},{"name":"SQL_MAX_CHAR_LITERAL_LEN","features":[197]},{"name":"SQL_MAX_COLUMNS_IN_GROUP_BY","features":[197]},{"name":"SQL_MAX_COLUMNS_IN_INDEX","features":[197]},{"name":"SQL_MAX_COLUMNS_IN_ORDER_BY","features":[197]},{"name":"SQL_MAX_COLUMNS_IN_SELECT","features":[197]},{"name":"SQL_MAX_COLUMNS_IN_TABLE","features":[197]},{"name":"SQL_MAX_COLUMN_NAME_LEN","features":[197]},{"name":"SQL_MAX_CONCURRENT_ACTIVITIES","features":[197]},{"name":"SQL_MAX_CURSOR_NAME_LEN","features":[197]},{"name":"SQL_MAX_DRIVER_CONNECTIONS","features":[197]},{"name":"SQL_MAX_DSN_LENGTH","features":[197]},{"name":"SQL_MAX_IDENTIFIER_LEN","features":[197]},{"name":"SQL_MAX_INDEX_SIZE","features":[197]},{"name":"SQL_MAX_LENGTH","features":[197]},{"name":"SQL_MAX_LENGTH_DEFAULT","features":[197]},{"name":"SQL_MAX_MESSAGE_LENGTH","features":[197]},{"name":"SQL_MAX_NUMERIC_LEN","features":[197]},{"name":"SQL_MAX_OPTION_STRING_LENGTH","features":[197]},{"name":"SQL_MAX_OWNER_NAME_LEN","features":[197]},{"name":"SQL_MAX_PROCEDURE_NAME_LEN","features":[197]},{"name":"SQL_MAX_QUALIFIER_NAME_LEN","features":[197]},{"name":"SQL_MAX_ROWS","features":[197]},{"name":"SQL_MAX_ROWS_DEFAULT","features":[197]},{"name":"SQL_MAX_ROW_SIZE","features":[197]},{"name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","features":[197]},{"name":"SQL_MAX_SCHEMA_NAME_LEN","features":[197]},{"name":"SQL_MAX_SQLSERVERNAME","features":[197]},{"name":"SQL_MAX_STATEMENT_LEN","features":[197]},{"name":"SQL_MAX_TABLES_IN_SELECT","features":[197]},{"name":"SQL_MAX_TABLE_NAME_LEN","features":[197]},{"name":"SQL_MAX_USER_NAME_LEN","features":[197]},{"name":"SQL_MINUTE","features":[197]},{"name":"SQL_MINUTE_TO_SECOND","features":[197]},{"name":"SQL_MODE_DEFAULT","features":[197]},{"name":"SQL_MODE_READ_ONLY","features":[197]},{"name":"SQL_MODE_READ_WRITE","features":[197]},{"name":"SQL_MONTH","features":[197]},{"name":"SQL_MORE_INFO_NO","features":[197]},{"name":"SQL_MORE_INFO_YES","features":[197]},{"name":"SQL_MULTIPLE_ACTIVE_TXN","features":[197]},{"name":"SQL_MULT_RESULT_SETS","features":[197]},{"name":"SQL_NAMED","features":[197]},{"name":"SQL_NB_DEFAULT","features":[197]},{"name":"SQL_NB_OFF","features":[197]},{"name":"SQL_NB_ON","features":[197]},{"name":"SQL_NC_END","features":[197]},{"name":"SQL_NC_HIGH","features":[197]},{"name":"SQL_NC_LOW","features":[197]},{"name":"SQL_NC_OFF","features":[197]},{"name":"SQL_NC_ON","features":[197]},{"name":"SQL_NC_START","features":[197]},{"name":"SQL_NEED_DATA","features":[197]},{"name":"SQL_NEED_LONG_DATA_LEN","features":[197]},{"name":"SQL_NNC_NON_NULL","features":[197]},{"name":"SQL_NNC_NULL","features":[197]},{"name":"SQL_NONSCROLLABLE","features":[197]},{"name":"SQL_NON_NULLABLE_COLUMNS","features":[197]},{"name":"SQL_NOSCAN","features":[197]},{"name":"SQL_NOSCAN_DEFAULT","features":[197]},{"name":"SQL_NOSCAN_OFF","features":[197]},{"name":"SQL_NOSCAN_ON","features":[197]},{"name":"SQL_NOT_DEFERRABLE","features":[197]},{"name":"SQL_NO_ACTION","features":[197]},{"name":"SQL_NO_COLUMN_NUMBER","features":[197]},{"name":"SQL_NO_DATA","features":[197]},{"name":"SQL_NO_DATA_FOUND","features":[197]},{"name":"SQL_NO_NULLS","features":[197]},{"name":"SQL_NO_ROW_NUMBER","features":[197]},{"name":"SQL_NO_TOTAL","features":[197]},{"name":"SQL_NTS","features":[197]},{"name":"SQL_NTSL","features":[197]},{"name":"SQL_NULLABLE","features":[197]},{"name":"SQL_NULLABLE_UNKNOWN","features":[197]},{"name":"SQL_NULL_COLLATION","features":[197]},{"name":"SQL_NULL_DATA","features":[197]},{"name":"SQL_NULL_HANDLE","features":[197]},{"name":"SQL_NULL_HDBC","features":[197]},{"name":"SQL_NULL_HDESC","features":[197]},{"name":"SQL_NULL_HENV","features":[197]},{"name":"SQL_NULL_HSTMT","features":[197]},{"name":"SQL_NUMERIC","features":[197]},{"name":"SQL_NUMERIC_FUNCTIONS","features":[197]},{"name":"SQL_NUMERIC_STRUCT","features":[197]},{"name":"SQL_NUM_FUNCTIONS","features":[197]},{"name":"SQL_OAC_LEVEL1","features":[197]},{"name":"SQL_OAC_LEVEL2","features":[197]},{"name":"SQL_OAC_NONE","features":[197]},{"name":"SQL_ODBC_API_CONFORMANCE","features":[197]},{"name":"SQL_ODBC_CURSORS","features":[197]},{"name":"SQL_ODBC_INTERFACE_CONFORMANCE","features":[197]},{"name":"SQL_ODBC_KEYWORDS","features":[197]},{"name":"SQL_ODBC_SAG_CLI_CONFORMANCE","features":[197]},{"name":"SQL_ODBC_SQL_CONFORMANCE","features":[197]},{"name":"SQL_ODBC_SQL_OPT_IEF","features":[197]},{"name":"SQL_ODBC_VER","features":[197]},{"name":"SQL_OIC_CORE","features":[197]},{"name":"SQL_OIC_LEVEL1","features":[197]},{"name":"SQL_OIC_LEVEL2","features":[197]},{"name":"SQL_OJ_ALL_COMPARISON_OPS","features":[197]},{"name":"SQL_OJ_CAPABILITIES","features":[197]},{"name":"SQL_OJ_FULL","features":[197]},{"name":"SQL_OJ_INNER","features":[197]},{"name":"SQL_OJ_LEFT","features":[197]},{"name":"SQL_OJ_NESTED","features":[197]},{"name":"SQL_OJ_NOT_ORDERED","features":[197]},{"name":"SQL_OJ_RIGHT","features":[197]},{"name":"SQL_OPT_TRACE","features":[197]},{"name":"SQL_OPT_TRACEFILE","features":[197]},{"name":"SQL_OPT_TRACE_DEFAULT","features":[197]},{"name":"SQL_OPT_TRACE_FILE_DEFAULT","features":[197]},{"name":"SQL_OPT_TRACE_OFF","features":[197]},{"name":"SQL_OPT_TRACE_ON","features":[197]},{"name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","features":[197]},{"name":"SQL_OSCC_COMPLIANT","features":[197]},{"name":"SQL_OSCC_NOT_COMPLIANT","features":[197]},{"name":"SQL_OSC_CORE","features":[197]},{"name":"SQL_OSC_EXTENDED","features":[197]},{"name":"SQL_OSC_MINIMUM","features":[197]},{"name":"SQL_OUTER_JOINS","features":[197]},{"name":"SQL_OUTER_JOIN_CAPABILITIES","features":[197]},{"name":"SQL_OU_DML_STATEMENTS","features":[197]},{"name":"SQL_OU_INDEX_DEFINITION","features":[197]},{"name":"SQL_OU_PRIVILEGE_DEFINITION","features":[197]},{"name":"SQL_OU_PROCEDURE_INVOCATION","features":[197]},{"name":"SQL_OU_TABLE_DEFINITION","features":[197]},{"name":"SQL_OV_ODBC2","features":[197]},{"name":"SQL_OV_ODBC3","features":[197]},{"name":"SQL_OV_ODBC3_80","features":[197]},{"name":"SQL_OWNER_TERM","features":[197]},{"name":"SQL_OWNER_USAGE","features":[197]},{"name":"SQL_PACKET_SIZE","features":[197]},{"name":"SQL_PARAM_ARRAY_ROW_COUNTS","features":[197]},{"name":"SQL_PARAM_ARRAY_SELECTS","features":[197]},{"name":"SQL_PARAM_BIND_BY_COLUMN","features":[197]},{"name":"SQL_PARAM_BIND_TYPE_DEFAULT","features":[197]},{"name":"SQL_PARAM_DATA_AVAILABLE","features":[197]},{"name":"SQL_PARAM_DIAG_UNAVAILABLE","features":[197]},{"name":"SQL_PARAM_ERROR","features":[197]},{"name":"SQL_PARAM_IGNORE","features":[197]},{"name":"SQL_PARAM_INPUT","features":[197]},{"name":"SQL_PARAM_INPUT_OUTPUT","features":[197]},{"name":"SQL_PARAM_INPUT_OUTPUT_STREAM","features":[197]},{"name":"SQL_PARAM_OUTPUT","features":[197]},{"name":"SQL_PARAM_OUTPUT_STREAM","features":[197]},{"name":"SQL_PARAM_PROCEED","features":[197]},{"name":"SQL_PARAM_SUCCESS","features":[197]},{"name":"SQL_PARAM_SUCCESS_WITH_INFO","features":[197]},{"name":"SQL_PARAM_TYPE_UNKNOWN","features":[197]},{"name":"SQL_PARAM_UNUSED","features":[197]},{"name":"SQL_PARC_BATCH","features":[197]},{"name":"SQL_PARC_NO_BATCH","features":[197]},{"name":"SQL_PAS_BATCH","features":[197]},{"name":"SQL_PAS_NO_BATCH","features":[197]},{"name":"SQL_PAS_NO_SELECT","features":[197]},{"name":"SQL_PC_DEFAULT","features":[197]},{"name":"SQL_PC_NON_PSEUDO","features":[197]},{"name":"SQL_PC_NOT_PSEUDO","features":[197]},{"name":"SQL_PC_OFF","features":[197]},{"name":"SQL_PC_ON","features":[197]},{"name":"SQL_PC_PSEUDO","features":[197]},{"name":"SQL_PC_UNKNOWN","features":[197]},{"name":"SQL_PERF_START","features":[197]},{"name":"SQL_PERF_STOP","features":[197]},{"name":"SQL_POSITION","features":[197]},{"name":"SQL_POSITIONED_STATEMENTS","features":[197]},{"name":"SQL_POS_ADD","features":[197]},{"name":"SQL_POS_DELETE","features":[197]},{"name":"SQL_POS_OPERATIONS","features":[197]},{"name":"SQL_POS_POSITION","features":[197]},{"name":"SQL_POS_REFRESH","features":[197]},{"name":"SQL_POS_UPDATE","features":[197]},{"name":"SQL_PRED_BASIC","features":[197]},{"name":"SQL_PRED_CHAR","features":[197]},{"name":"SQL_PRED_NONE","features":[197]},{"name":"SQL_PRED_SEARCHABLE","features":[197]},{"name":"SQL_PRESERVE_CURSORS","features":[197]},{"name":"SQL_PROCEDURES","features":[197]},{"name":"SQL_PROCEDURE_TERM","features":[197]},{"name":"SQL_PS_POSITIONED_DELETE","features":[197]},{"name":"SQL_PS_POSITIONED_UPDATE","features":[197]},{"name":"SQL_PS_SELECT_FOR_UPDATE","features":[197]},{"name":"SQL_PT_FUNCTION","features":[197]},{"name":"SQL_PT_PROCEDURE","features":[197]},{"name":"SQL_PT_UNKNOWN","features":[197]},{"name":"SQL_QI_DEFAULT","features":[197]},{"name":"SQL_QI_OFF","features":[197]},{"name":"SQL_QI_ON","features":[197]},{"name":"SQL_QL_END","features":[197]},{"name":"SQL_QL_START","features":[197]},{"name":"SQL_QUALIFIER_LOCATION","features":[197]},{"name":"SQL_QUALIFIER_NAME_SEPARATOR","features":[197]},{"name":"SQL_QUALIFIER_TERM","features":[197]},{"name":"SQL_QUALIFIER_USAGE","features":[197]},{"name":"SQL_QUERY_TIMEOUT","features":[197]},{"name":"SQL_QUERY_TIMEOUT_DEFAULT","features":[197]},{"name":"SQL_QUICK","features":[197]},{"name":"SQL_QUIET_MODE","features":[197]},{"name":"SQL_QUOTED_IDENTIFIER_CASE","features":[197]},{"name":"SQL_QU_DML_STATEMENTS","features":[197]},{"name":"SQL_QU_INDEX_DEFINITION","features":[197]},{"name":"SQL_QU_PRIVILEGE_DEFINITION","features":[197]},{"name":"SQL_QU_PROCEDURE_INVOCATION","features":[197]},{"name":"SQL_QU_TABLE_DEFINITION","features":[197]},{"name":"SQL_RD_DEFAULT","features":[197]},{"name":"SQL_RD_OFF","features":[197]},{"name":"SQL_RD_ON","features":[197]},{"name":"SQL_REAL","features":[197]},{"name":"SQL_REFRESH","features":[197]},{"name":"SQL_REMOTE_PWD","features":[197]},{"name":"SQL_RESET_CONNECTION_YES","features":[197]},{"name":"SQL_RESET_PARAMS","features":[197]},{"name":"SQL_RESET_YES","features":[197]},{"name":"SQL_RESTRICT","features":[197]},{"name":"SQL_RESULT_COL","features":[197]},{"name":"SQL_RETRIEVE_DATA","features":[197]},{"name":"SQL_RETURN_VALUE","features":[197]},{"name":"SQL_RE_DEFAULT","features":[197]},{"name":"SQL_RE_OFF","features":[197]},{"name":"SQL_RE_ON","features":[197]},{"name":"SQL_ROLLBACK","features":[197]},{"name":"SQL_ROWSET_SIZE","features":[197]},{"name":"SQL_ROWSET_SIZE_DEFAULT","features":[197]},{"name":"SQL_ROWVER","features":[197]},{"name":"SQL_ROW_ADDED","features":[197]},{"name":"SQL_ROW_DELETED","features":[197]},{"name":"SQL_ROW_ERROR","features":[197]},{"name":"SQL_ROW_IDENTIFIER","features":[197]},{"name":"SQL_ROW_IGNORE","features":[197]},{"name":"SQL_ROW_NOROW","features":[197]},{"name":"SQL_ROW_NUMBER","features":[197]},{"name":"SQL_ROW_NUMBER_UNKNOWN","features":[197]},{"name":"SQL_ROW_PROCEED","features":[197]},{"name":"SQL_ROW_SUCCESS","features":[197]},{"name":"SQL_ROW_SUCCESS_WITH_INFO","features":[197]},{"name":"SQL_ROW_UPDATED","features":[197]},{"name":"SQL_ROW_UPDATES","features":[197]},{"name":"SQL_SCCO_LOCK","features":[197]},{"name":"SQL_SCCO_OPT_ROWVER","features":[197]},{"name":"SQL_SCCO_OPT_TIMESTAMP","features":[197]},{"name":"SQL_SCCO_OPT_VALUES","features":[197]},{"name":"SQL_SCCO_READ_ONLY","features":[197]},{"name":"SQL_SCC_ISO92_CLI","features":[197]},{"name":"SQL_SCC_XOPEN_CLI_VERSION1","features":[197]},{"name":"SQL_SCHEMA_TERM","features":[197]},{"name":"SQL_SCHEMA_USAGE","features":[197]},{"name":"SQL_SCOPE_CURROW","features":[197]},{"name":"SQL_SCOPE_SESSION","features":[197]},{"name":"SQL_SCOPE_TRANSACTION","features":[197]},{"name":"SQL_SCROLLABLE","features":[197]},{"name":"SQL_SCROLL_CONCURRENCY","features":[197]},{"name":"SQL_SCROLL_DYNAMIC","features":[197]},{"name":"SQL_SCROLL_FORWARD_ONLY","features":[197]},{"name":"SQL_SCROLL_KEYSET_DRIVEN","features":[197]},{"name":"SQL_SCROLL_OPTIONS","features":[197]},{"name":"SQL_SCROLL_STATIC","features":[197]},{"name":"SQL_SC_FIPS127_2_TRANSITIONAL","features":[197]},{"name":"SQL_SC_NON_UNIQUE","features":[197]},{"name":"SQL_SC_SQL92_ENTRY","features":[197]},{"name":"SQL_SC_SQL92_FULL","features":[197]},{"name":"SQL_SC_SQL92_INTERMEDIATE","features":[197]},{"name":"SQL_SC_TRY_UNIQUE","features":[197]},{"name":"SQL_SC_UNIQUE","features":[197]},{"name":"SQL_SDF_CURRENT_DATE","features":[197]},{"name":"SQL_SDF_CURRENT_TIME","features":[197]},{"name":"SQL_SDF_CURRENT_TIMESTAMP","features":[197]},{"name":"SQL_SEARCHABLE","features":[197]},{"name":"SQL_SEARCH_PATTERN_ESCAPE","features":[197]},{"name":"SQL_SECOND","features":[197]},{"name":"SQL_SENSITIVE","features":[197]},{"name":"SQL_SERVER_NAME","features":[197]},{"name":"SQL_SETPARAM_VALUE_MAX","features":[197]},{"name":"SQL_SETPOS_MAX_LOCK_VALUE","features":[197]},{"name":"SQL_SETPOS_MAX_OPTION_VALUE","features":[197]},{"name":"SQL_SET_DEFAULT","features":[197]},{"name":"SQL_SET_NULL","features":[197]},{"name":"SQL_SFKD_CASCADE","features":[197]},{"name":"SQL_SFKD_NO_ACTION","features":[197]},{"name":"SQL_SFKD_SET_DEFAULT","features":[197]},{"name":"SQL_SFKD_SET_NULL","features":[197]},{"name":"SQL_SFKU_CASCADE","features":[197]},{"name":"SQL_SFKU_NO_ACTION","features":[197]},{"name":"SQL_SFKU_SET_DEFAULT","features":[197]},{"name":"SQL_SFKU_SET_NULL","features":[197]},{"name":"SQL_SG_DELETE_TABLE","features":[197]},{"name":"SQL_SG_INSERT_COLUMN","features":[197]},{"name":"SQL_SG_INSERT_TABLE","features":[197]},{"name":"SQL_SG_REFERENCES_COLUMN","features":[197]},{"name":"SQL_SG_REFERENCES_TABLE","features":[197]},{"name":"SQL_SG_SELECT_TABLE","features":[197]},{"name":"SQL_SG_UPDATE_COLUMN","features":[197]},{"name":"SQL_SG_UPDATE_TABLE","features":[197]},{"name":"SQL_SG_USAGE_ON_CHARACTER_SET","features":[197]},{"name":"SQL_SG_USAGE_ON_COLLATION","features":[197]},{"name":"SQL_SG_USAGE_ON_DOMAIN","features":[197]},{"name":"SQL_SG_USAGE_ON_TRANSLATION","features":[197]},{"name":"SQL_SG_WITH_GRANT_OPTION","features":[197]},{"name":"SQL_SIGNED_OFFSET","features":[197]},{"name":"SQL_SIMULATE_CURSOR","features":[197]},{"name":"SQL_SMALLINT","features":[197]},{"name":"SQL_SNVF_BIT_LENGTH","features":[197]},{"name":"SQL_SNVF_CHARACTER_LENGTH","features":[197]},{"name":"SQL_SNVF_CHAR_LENGTH","features":[197]},{"name":"SQL_SNVF_EXTRACT","features":[197]},{"name":"SQL_SNVF_OCTET_LENGTH","features":[197]},{"name":"SQL_SNVF_POSITION","features":[197]},{"name":"SQL_SOPT_SS_BASE","features":[197]},{"name":"SQL_SOPT_SS_CURRENT_COMMAND","features":[197]},{"name":"SQL_SOPT_SS_CURSOR_OPTIONS","features":[197]},{"name":"SQL_SOPT_SS_DEFER_PREPARE","features":[197]},{"name":"SQL_SOPT_SS_HIDDEN_COLUMNS","features":[197]},{"name":"SQL_SOPT_SS_MAX_USED","features":[197]},{"name":"SQL_SOPT_SS_NOBROWSETABLE","features":[197]},{"name":"SQL_SOPT_SS_NOCOUNT_STATUS","features":[197]},{"name":"SQL_SOPT_SS_REGIONALIZE","features":[197]},{"name":"SQL_SOPT_SS_TEXTPTR_LOGGING","features":[197]},{"name":"SQL_SO_DYNAMIC","features":[197]},{"name":"SQL_SO_FORWARD_ONLY","features":[197]},{"name":"SQL_SO_KEYSET_DRIVEN","features":[197]},{"name":"SQL_SO_MIXED","features":[197]},{"name":"SQL_SO_STATIC","features":[197]},{"name":"SQL_SPECIAL_CHARACTERS","features":[197]},{"name":"SQL_SPEC_MAJOR","features":[197]},{"name":"SQL_SPEC_MINOR","features":[197]},{"name":"SQL_SPEC_STRING","features":[197]},{"name":"SQL_SP_BETWEEN","features":[197]},{"name":"SQL_SP_COMPARISON","features":[197]},{"name":"SQL_SP_EXISTS","features":[197]},{"name":"SQL_SP_IN","features":[197]},{"name":"SQL_SP_ISNOTNULL","features":[197]},{"name":"SQL_SP_ISNULL","features":[197]},{"name":"SQL_SP_LIKE","features":[197]},{"name":"SQL_SP_MATCH_FULL","features":[197]},{"name":"SQL_SP_MATCH_PARTIAL","features":[197]},{"name":"SQL_SP_MATCH_UNIQUE_FULL","features":[197]},{"name":"SQL_SP_MATCH_UNIQUE_PARTIAL","features":[197]},{"name":"SQL_SP_OVERLAPS","features":[197]},{"name":"SQL_SP_QUANTIFIED_COMPARISON","features":[197]},{"name":"SQL_SP_UNIQUE","features":[197]},{"name":"SQL_SQL92_DATETIME_FUNCTIONS","features":[197]},{"name":"SQL_SQL92_FOREIGN_KEY_DELETE_RULE","features":[197]},{"name":"SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","features":[197]},{"name":"SQL_SQL92_GRANT","features":[197]},{"name":"SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","features":[197]},{"name":"SQL_SQL92_PREDICATES","features":[197]},{"name":"SQL_SQL92_RELATIONAL_JOIN_OPERATORS","features":[197]},{"name":"SQL_SQL92_REVOKE","features":[197]},{"name":"SQL_SQL92_ROW_VALUE_CONSTRUCTOR","features":[197]},{"name":"SQL_SQL92_STRING_FUNCTIONS","features":[197]},{"name":"SQL_SQL92_VALUE_EXPRESSIONS","features":[197]},{"name":"SQL_SQLSTATE_SIZE","features":[197]},{"name":"SQL_SQLSTATE_SIZEW","features":[197]},{"name":"SQL_SQL_CONFORMANCE","features":[197]},{"name":"SQL_SQ_COMPARISON","features":[197]},{"name":"SQL_SQ_CORRELATED_SUBQUERIES","features":[197]},{"name":"SQL_SQ_EXISTS","features":[197]},{"name":"SQL_SQ_IN","features":[197]},{"name":"SQL_SQ_QUANTIFIED","features":[197]},{"name":"SQL_SRJO_CORRESPONDING_CLAUSE","features":[197]},{"name":"SQL_SRJO_CROSS_JOIN","features":[197]},{"name":"SQL_SRJO_EXCEPT_JOIN","features":[197]},{"name":"SQL_SRJO_FULL_OUTER_JOIN","features":[197]},{"name":"SQL_SRJO_INNER_JOIN","features":[197]},{"name":"SQL_SRJO_INTERSECT_JOIN","features":[197]},{"name":"SQL_SRJO_LEFT_OUTER_JOIN","features":[197]},{"name":"SQL_SRJO_NATURAL_JOIN","features":[197]},{"name":"SQL_SRJO_RIGHT_OUTER_JOIN","features":[197]},{"name":"SQL_SRJO_UNION_JOIN","features":[197]},{"name":"SQL_SRVC_DEFAULT","features":[197]},{"name":"SQL_SRVC_NULL","features":[197]},{"name":"SQL_SRVC_ROW_SUBQUERY","features":[197]},{"name":"SQL_SRVC_VALUE_EXPRESSION","features":[197]},{"name":"SQL_SR_CASCADE","features":[197]},{"name":"SQL_SR_DELETE_TABLE","features":[197]},{"name":"SQL_SR_GRANT_OPTION_FOR","features":[197]},{"name":"SQL_SR_INSERT_COLUMN","features":[197]},{"name":"SQL_SR_INSERT_TABLE","features":[197]},{"name":"SQL_SR_REFERENCES_COLUMN","features":[197]},{"name":"SQL_SR_REFERENCES_TABLE","features":[197]},{"name":"SQL_SR_RESTRICT","features":[197]},{"name":"SQL_SR_SELECT_TABLE","features":[197]},{"name":"SQL_SR_UPDATE_COLUMN","features":[197]},{"name":"SQL_SR_UPDATE_TABLE","features":[197]},{"name":"SQL_SR_USAGE_ON_CHARACTER_SET","features":[197]},{"name":"SQL_SR_USAGE_ON_COLLATION","features":[197]},{"name":"SQL_SR_USAGE_ON_DOMAIN","features":[197]},{"name":"SQL_SR_USAGE_ON_TRANSLATION","features":[197]},{"name":"SQL_SSF_CONVERT","features":[197]},{"name":"SQL_SSF_LOWER","features":[197]},{"name":"SQL_SSF_SUBSTRING","features":[197]},{"name":"SQL_SSF_TRANSLATE","features":[197]},{"name":"SQL_SSF_TRIM_BOTH","features":[197]},{"name":"SQL_SSF_TRIM_LEADING","features":[197]},{"name":"SQL_SSF_TRIM_TRAILING","features":[197]},{"name":"SQL_SSF_UPPER","features":[197]},{"name":"SQL_SS_ADDITIONS","features":[197]},{"name":"SQL_SS_DELETIONS","features":[197]},{"name":"SQL_SS_DL_DEFAULT","features":[197]},{"name":"SQL_SS_QI_DEFAULT","features":[197]},{"name":"SQL_SS_QL_DEFAULT","features":[197]},{"name":"SQL_SS_UPDATES","features":[197]},{"name":"SQL_SS_VARIANT","features":[197]},{"name":"SQL_STANDARD_CLI_CONFORMANCE","features":[197]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES1","features":[197]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES2","features":[197]},{"name":"SQL_STATIC_SENSITIVITY","features":[197]},{"name":"SQL_STILL_EXECUTING","features":[197]},{"name":"SQL_STMT_OPT_MAX","features":[197]},{"name":"SQL_STMT_OPT_MIN","features":[197]},{"name":"SQL_STRING_FUNCTIONS","features":[197]},{"name":"SQL_SUBQUERIES","features":[197]},{"name":"SQL_SUCCESS","features":[197]},{"name":"SQL_SUCCESS_WITH_INFO","features":[197]},{"name":"SQL_SU_DML_STATEMENTS","features":[197]},{"name":"SQL_SU_INDEX_DEFINITION","features":[197]},{"name":"SQL_SU_PRIVILEGE_DEFINITION","features":[197]},{"name":"SQL_SU_PROCEDURE_INVOCATION","features":[197]},{"name":"SQL_SU_TABLE_DEFINITION","features":[197]},{"name":"SQL_SVE_CASE","features":[197]},{"name":"SQL_SVE_CAST","features":[197]},{"name":"SQL_SVE_COALESCE","features":[197]},{"name":"SQL_SVE_NULLIF","features":[197]},{"name":"SQL_SYSTEM_FUNCTIONS","features":[197]},{"name":"SQL_TABLE_STAT","features":[197]},{"name":"SQL_TABLE_TERM","features":[197]},{"name":"SQL_TC_ALL","features":[197]},{"name":"SQL_TC_DDL_COMMIT","features":[197]},{"name":"SQL_TC_DDL_IGNORE","features":[197]},{"name":"SQL_TC_DML","features":[197]},{"name":"SQL_TC_NONE","features":[197]},{"name":"SQL_TEXTPTR_LOGGING","features":[197]},{"name":"SQL_TIME","features":[197]},{"name":"SQL_TIMEDATE_ADD_INTERVALS","features":[197]},{"name":"SQL_TIMEDATE_DIFF_INTERVALS","features":[197]},{"name":"SQL_TIMEDATE_FUNCTIONS","features":[197]},{"name":"SQL_TIMESTAMP","features":[197]},{"name":"SQL_TIMESTAMP_LEN","features":[197]},{"name":"SQL_TIME_LEN","features":[197]},{"name":"SQL_TINYINT","features":[197]},{"name":"SQL_TL_DEFAULT","features":[197]},{"name":"SQL_TL_OFF","features":[197]},{"name":"SQL_TL_ON","features":[197]},{"name":"SQL_TRANSACTION_CAPABLE","features":[197]},{"name":"SQL_TRANSACTION_ISOLATION_OPTION","features":[197]},{"name":"SQL_TRANSACTION_READ_COMMITTED","features":[197]},{"name":"SQL_TRANSACTION_READ_UNCOMMITTED","features":[197]},{"name":"SQL_TRANSACTION_REPEATABLE_READ","features":[197]},{"name":"SQL_TRANSACTION_SERIALIZABLE","features":[197]},{"name":"SQL_TRANSLATE_DLL","features":[197]},{"name":"SQL_TRANSLATE_OPTION","features":[197]},{"name":"SQL_TRUE","features":[197]},{"name":"SQL_TXN_CAPABLE","features":[197]},{"name":"SQL_TXN_ISOLATION","features":[197]},{"name":"SQL_TXN_ISOLATION_OPTION","features":[197]},{"name":"SQL_TXN_READ_COMMITTED","features":[197]},{"name":"SQL_TXN_READ_UNCOMMITTED","features":[197]},{"name":"SQL_TXN_REPEATABLE_READ","features":[197]},{"name":"SQL_TXN_SERIALIZABLE","features":[197]},{"name":"SQL_TXN_VERSIONING","features":[197]},{"name":"SQL_TYPE_DATE","features":[197]},{"name":"SQL_TYPE_DRIVER_END","features":[197]},{"name":"SQL_TYPE_DRIVER_START","features":[197]},{"name":"SQL_TYPE_MAX","features":[197]},{"name":"SQL_TYPE_MIN","features":[197]},{"name":"SQL_TYPE_NULL","features":[197]},{"name":"SQL_TYPE_TIME","features":[197]},{"name":"SQL_TYPE_TIMESTAMP","features":[197]},{"name":"SQL_UB_DEFAULT","features":[197]},{"name":"SQL_UB_FIXED","features":[197]},{"name":"SQL_UB_OFF","features":[197]},{"name":"SQL_UB_ON","features":[197]},{"name":"SQL_UB_VARIABLE","features":[197]},{"name":"SQL_UNBIND","features":[197]},{"name":"SQL_UNICODE","features":[197]},{"name":"SQL_UNICODE_CHAR","features":[197]},{"name":"SQL_UNICODE_LONGVARCHAR","features":[197]},{"name":"SQL_UNICODE_VARCHAR","features":[197]},{"name":"SQL_UNION","features":[197]},{"name":"SQL_UNION_STATEMENT","features":[197]},{"name":"SQL_UNKNOWN_TYPE","features":[197]},{"name":"SQL_UNNAMED","features":[197]},{"name":"SQL_UNSEARCHABLE","features":[197]},{"name":"SQL_UNSIGNED_OFFSET","features":[197]},{"name":"SQL_UNSPECIFIED","features":[197]},{"name":"SQL_UPDATE","features":[197]},{"name":"SQL_UPDATE_BY_BOOKMARK","features":[197]},{"name":"SQL_UP_DEFAULT","features":[197]},{"name":"SQL_UP_OFF","features":[197]},{"name":"SQL_UP_ON","features":[197]},{"name":"SQL_UP_ON_DROP","features":[197]},{"name":"SQL_USER_NAME","features":[197]},{"name":"SQL_USE_BOOKMARKS","features":[197]},{"name":"SQL_USE_PROCEDURE_FOR_PREPARE","features":[197]},{"name":"SQL_US_UNION","features":[197]},{"name":"SQL_US_UNION_ALL","features":[197]},{"name":"SQL_U_UNION","features":[197]},{"name":"SQL_U_UNION_ALL","features":[197]},{"name":"SQL_VARBINARY","features":[197]},{"name":"SQL_VARCHAR","features":[197]},{"name":"SQL_VARLEN_DATA","features":[197]},{"name":"SQL_WARN_NO","features":[197]},{"name":"SQL_WARN_YES","features":[197]},{"name":"SQL_WCHAR","features":[197]},{"name":"SQL_WLONGVARCHAR","features":[197]},{"name":"SQL_WVARCHAR","features":[197]},{"name":"SQL_XL_DEFAULT","features":[197]},{"name":"SQL_XL_OFF","features":[197]},{"name":"SQL_XL_ON","features":[197]},{"name":"SQL_XOPEN_CLI_YEAR","features":[197]},{"name":"SQL_YEAR","features":[197]},{"name":"SQL_YEAR_MONTH_STRUCT","features":[197]},{"name":"SQL_YEAR_TO_MONTH","features":[197]},{"name":"SQLudtBINARY","features":[197]},{"name":"SQLudtBIT","features":[197]},{"name":"SQLudtBITN","features":[197]},{"name":"SQLudtCHAR","features":[197]},{"name":"SQLudtDATETIM4","features":[197]},{"name":"SQLudtDATETIME","features":[197]},{"name":"SQLudtDATETIMN","features":[197]},{"name":"SQLudtDECML","features":[197]},{"name":"SQLudtDECMLN","features":[197]},{"name":"SQLudtFLT4","features":[197]},{"name":"SQLudtFLT8","features":[197]},{"name":"SQLudtFLTN","features":[197]},{"name":"SQLudtIMAGE","features":[197]},{"name":"SQLudtINT1","features":[197]},{"name":"SQLudtINT2","features":[197]},{"name":"SQLudtINT4","features":[197]},{"name":"SQLudtINTN","features":[197]},{"name":"SQLudtMONEY","features":[197]},{"name":"SQLudtMONEY4","features":[197]},{"name":"SQLudtMONEYN","features":[197]},{"name":"SQLudtNUM","features":[197]},{"name":"SQLudtNUMN","features":[197]},{"name":"SQLudtSYSNAME","features":[197]},{"name":"SQLudtTEXT","features":[197]},{"name":"SQLudtTIMESTAMP","features":[197]},{"name":"SQLudtUNIQUEIDENTIFIER","features":[197]},{"name":"SQLudtVARBINARY","features":[197]},{"name":"SQLudtVARCHAR","features":[197]},{"name":"SQMO_DEFAULT_PROPERTY","features":[197]},{"name":"SQMO_GENERATOR_FOR_TYPE","features":[197]},{"name":"SQMO_MAP_PROPERTY","features":[197]},{"name":"SQMO_VIRTUAL_PROPERTY","features":[197]},{"name":"SQPE_EXTRA_CLOSING_PARENTHESIS","features":[197]},{"name":"SQPE_EXTRA_OPENING_PARENTHESIS","features":[197]},{"name":"SQPE_IGNORED_CONNECTOR","features":[197]},{"name":"SQPE_IGNORED_KEYWORD","features":[197]},{"name":"SQPE_IGNORED_MODIFIER","features":[197]},{"name":"SQPE_NONE","features":[197]},{"name":"SQPE_UNHANDLED","features":[197]},{"name":"SQRO_ADD_ROBUST_ITEM_NAME","features":[197]},{"name":"SQRO_ADD_VALUE_TYPE_FOR_PLAIN_VALUES","features":[197]},{"name":"SQRO_ALWAYS_ONE_INTERVAL","features":[197]},{"name":"SQRO_DEFAULT","features":[197]},{"name":"SQRO_DONT_MAP_RELATIONS","features":[197]},{"name":"SQRO_DONT_REMOVE_UNRESTRICTED_KEYWORDS","features":[197]},{"name":"SQRO_DONT_RESOLVE_DATETIME","features":[197]},{"name":"SQRO_DONT_RESOLVE_RANGES","features":[197]},{"name":"SQRO_DONT_SIMPLIFY_CONDITION_TREES","features":[197]},{"name":"SQRO_DONT_SPLIT_WORDS","features":[197]},{"name":"SQRO_IGNORE_PHRASE_ORDER","features":[197]},{"name":"SQSO_AUTOMATIC_WILDCARD","features":[197]},{"name":"SQSO_CONNECTOR_CASE","features":[197]},{"name":"SQSO_IMPLICIT_CONNECTOR","features":[197]},{"name":"SQSO_LANGUAGE_KEYWORDS","features":[197]},{"name":"SQSO_LOCALE_WORD_BREAKING","features":[197]},{"name":"SQSO_NATURAL_SYNTAX","features":[197]},{"name":"SQSO_SCHEMA","features":[197]},{"name":"SQSO_SYNTAX","features":[197]},{"name":"SQSO_TIME_ZONE","features":[197]},{"name":"SQSO_TRACE_LEVEL","features":[197]},{"name":"SQSO_WORD_BREAKER","features":[197]},{"name":"SQS_ADVANCED_QUERY_SYNTAX","features":[197]},{"name":"SQS_NATURAL_QUERY_SYNTAX","features":[197]},{"name":"SQS_NO_SYNTAX","features":[197]},{"name":"SRCH_SCHEMA_CACHE_E_UNEXPECTED","features":[197]},{"name":"SSERRORINFO","features":[197]},{"name":"SSPROPVAL_COMMANDTYPE_BULKLOAD","features":[197]},{"name":"SSPROPVAL_COMMANDTYPE_REGULAR","features":[197]},{"name":"SSPROPVAL_USEPROCFORPREP_OFF","features":[197]},{"name":"SSPROPVAL_USEPROCFORPREP_ON","features":[197]},{"name":"SSPROPVAL_USEPROCFORPREP_ON_DROP","features":[197]},{"name":"SSPROP_ALLOWNATIVEVARIANT","features":[197]},{"name":"SSPROP_AUTH_REPL_SERVER_NAME","features":[197]},{"name":"SSPROP_CHARACTERSET","features":[197]},{"name":"SSPROP_COLUMNLEVELCOLLATION","features":[197]},{"name":"SSPROP_COL_COLLATIONNAME","features":[197]},{"name":"SSPROP_CURRENTCOLLATION","features":[197]},{"name":"SSPROP_CURSORAUTOFETCH","features":[197]},{"name":"SSPROP_DEFERPREPARE","features":[197]},{"name":"SSPROP_ENABLEFASTLOAD","features":[197]},{"name":"SSPROP_FASTLOADKEEPIDENTITY","features":[197]},{"name":"SSPROP_FASTLOADKEEPNULLS","features":[197]},{"name":"SSPROP_FASTLOADOPTIONS","features":[197]},{"name":"SSPROP_INIT_APPNAME","features":[197]},{"name":"SSPROP_INIT_AUTOTRANSLATE","features":[197]},{"name":"SSPROP_INIT_CURRENTLANGUAGE","features":[197]},{"name":"SSPROP_INIT_ENCRYPT","features":[197]},{"name":"SSPROP_INIT_FILENAME","features":[197]},{"name":"SSPROP_INIT_NETWORKADDRESS","features":[197]},{"name":"SSPROP_INIT_NETWORKLIBRARY","features":[197]},{"name":"SSPROP_INIT_PACKETSIZE","features":[197]},{"name":"SSPROP_INIT_TAGCOLUMNCOLLATION","features":[197]},{"name":"SSPROP_INIT_USEPROCFORPREP","features":[197]},{"name":"SSPROP_INIT_WSID","features":[197]},{"name":"SSPROP_IRowsetFastLoad","features":[197]},{"name":"SSPROP_MAXBLOBLENGTH","features":[197]},{"name":"SSPROP_QUOTEDCATALOGNAMES","features":[197]},{"name":"SSPROP_SORTORDER","features":[197]},{"name":"SSPROP_SQLXMLXPROGID","features":[197]},{"name":"SSPROP_STREAM_BASEPATH","features":[197]},{"name":"SSPROP_STREAM_COMMANDTYPE","features":[197]},{"name":"SSPROP_STREAM_CONTENTTYPE","features":[197]},{"name":"SSPROP_STREAM_FLAGS","features":[197]},{"name":"SSPROP_STREAM_MAPPINGSCHEMA","features":[197]},{"name":"SSPROP_STREAM_XMLROOT","features":[197]},{"name":"SSPROP_STREAM_XSL","features":[197]},{"name":"SSPROP_UNICODECOMPARISONSTYLE","features":[197]},{"name":"SSPROP_UNICODELCID","features":[197]},{"name":"SSVARIANT","features":[1,41,197]},{"name":"STD_BOOKMARKLENGTH","features":[197]},{"name":"STGM_COLLECTION","features":[197]},{"name":"STGM_OPEN","features":[197]},{"name":"STGM_OUTPUT","features":[197]},{"name":"STGM_RECURSIVE","features":[197]},{"name":"STGM_STRICTOPEN","features":[197]},{"name":"STREAM_FLAGS_DISALLOW_ABSOLUTE_PATH","features":[197]},{"name":"STREAM_FLAGS_DISALLOW_QUERY","features":[197]},{"name":"STREAM_FLAGS_DISALLOW_UPDATEGRAMS","features":[197]},{"name":"STREAM_FLAGS_DISALLOW_URL","features":[197]},{"name":"STREAM_FLAGS_DONTCACHEMAPPINGSCHEMA","features":[197]},{"name":"STREAM_FLAGS_DONTCACHETEMPLATE","features":[197]},{"name":"STREAM_FLAGS_DONTCACHEXSL","features":[197]},{"name":"STREAM_FLAGS_RESERVED","features":[197]},{"name":"STRUCTURED_QUERY_MULTIOPTION","features":[197]},{"name":"STRUCTURED_QUERY_PARSE_ERROR","features":[197]},{"name":"STRUCTURED_QUERY_RESOLVE_OPTION","features":[197]},{"name":"STRUCTURED_QUERY_SINGLE_OPTION","features":[197]},{"name":"STRUCTURED_QUERY_SYNTAX","features":[197]},{"name":"STS_ABORTXMLPARSE","features":[197]},{"name":"STS_WS_ERROR","features":[197]},{"name":"SUBSCRIPTIONINFO","features":[1,197]},{"name":"SUBSCRIPTIONINFOFLAGS","features":[197]},{"name":"SUBSCRIPTIONITEMINFO","features":[197]},{"name":"SUBSCRIPTIONSCHEDULE","features":[197]},{"name":"SUBSCRIPTIONTYPE","features":[197]},{"name":"SUBSINFO_ALLFLAGS","features":[197]},{"name":"SUBSINFO_CHANGESONLY","features":[197]},{"name":"SUBSINFO_CHANNELFLAGS","features":[197]},{"name":"SUBSINFO_FRIENDLYNAME","features":[197]},{"name":"SUBSINFO_GLEAM","features":[197]},{"name":"SUBSINFO_MAILNOT","features":[197]},{"name":"SUBSINFO_MAXSIZEKB","features":[197]},{"name":"SUBSINFO_NEEDPASSWORD","features":[197]},{"name":"SUBSINFO_PASSWORD","features":[197]},{"name":"SUBSINFO_RECURSE","features":[197]},{"name":"SUBSINFO_SCHEDULE","features":[197]},{"name":"SUBSINFO_TASKFLAGS","features":[197]},{"name":"SUBSINFO_TYPE","features":[197]},{"name":"SUBSINFO_USER","features":[197]},{"name":"SUBSINFO_WEBCRAWL","features":[197]},{"name":"SUBSMGRENUM_MASK","features":[197]},{"name":"SUBSMGRENUM_TEMP","features":[197]},{"name":"SUBSMGRUPDATE_MASK","features":[197]},{"name":"SUBSMGRUPDATE_MINIMIZE","features":[197]},{"name":"SUBSSCHED_AUTO","features":[197]},{"name":"SUBSSCHED_CUSTOM","features":[197]},{"name":"SUBSSCHED_DAILY","features":[197]},{"name":"SUBSSCHED_MANUAL","features":[197]},{"name":"SUBSSCHED_WEEKLY","features":[197]},{"name":"SUBSTYPE_CHANNEL","features":[197]},{"name":"SUBSTYPE_DESKTOPCHANNEL","features":[197]},{"name":"SUBSTYPE_DESKTOPURL","features":[197]},{"name":"SUBSTYPE_EXTERNAL","features":[197]},{"name":"SUBSTYPE_URL","features":[197]},{"name":"SUCCEED","features":[197]},{"name":"SUCCEED_ABORT","features":[197]},{"name":"SUCCEED_ASYNC","features":[197]},{"name":"SubscriptionMgr","features":[197]},{"name":"TEXT_SOURCE","features":[197]},{"name":"TIMEOUT_INFO","features":[197]},{"name":"TIMESTAMP_STRUCT","features":[197]},{"name":"TIME_STRUCT","features":[197]},{"name":"TRACE_ON","features":[197]},{"name":"TRACE_VERSION","features":[197]},{"name":"TRACE_VS_EVENT_ON","features":[197]},{"name":"VECTORRESTRICTION","features":[1,143,63,197,42]},{"name":"VT_SS_BINARY","features":[197]},{"name":"VT_SS_BIT","features":[197]},{"name":"VT_SS_DATETIME","features":[197]},{"name":"VT_SS_DECIMAL","features":[197]},{"name":"VT_SS_EMPTY","features":[197]},{"name":"VT_SS_GUID","features":[197]},{"name":"VT_SS_I2","features":[197]},{"name":"VT_SS_I4","features":[197]},{"name":"VT_SS_I8","features":[197]},{"name":"VT_SS_MONEY","features":[197]},{"name":"VT_SS_NULL","features":[197]},{"name":"VT_SS_NUMERIC","features":[197]},{"name":"VT_SS_R4","features":[197]},{"name":"VT_SS_R8","features":[197]},{"name":"VT_SS_SMALLDATETIME","features":[197]},{"name":"VT_SS_SMALLMONEY","features":[197]},{"name":"VT_SS_STRING","features":[197]},{"name":"VT_SS_UI1","features":[197]},{"name":"VT_SS_UNKNOWN","features":[197]},{"name":"VT_SS_VARBINARY","features":[197]},{"name":"VT_SS_VARSTRING","features":[197]},{"name":"VT_SS_WSTRING","features":[197]},{"name":"VT_SS_WVARSTRING","features":[197]},{"name":"WEBCRAWL_DONT_MAKE_STICKY","features":[197]},{"name":"WEBCRAWL_GET_BGSOUNDS","features":[197]},{"name":"WEBCRAWL_GET_CONTROLS","features":[197]},{"name":"WEBCRAWL_GET_IMAGES","features":[197]},{"name":"WEBCRAWL_GET_VIDEOS","features":[197]},{"name":"WEBCRAWL_IGNORE_ROBOTSTXT","features":[197]},{"name":"WEBCRAWL_LINKS_ELSEWHERE","features":[197]},{"name":"WEBCRAWL_ONLY_LINKS_TO_HTML","features":[197]},{"name":"WEBCRAWL_RECURSEFLAGS","features":[197]},{"name":"XML_E_BADSXQL","features":[197]},{"name":"XML_E_NODEFAULTNS","features":[197]},{"name":"_MAPI_E_ACCOUNT_DISABLED","features":[197]},{"name":"_MAPI_E_BAD_CHARWIDTH","features":[197]},{"name":"_MAPI_E_BAD_COLUMN","features":[197]},{"name":"_MAPI_E_BUSY","features":[197]},{"name":"_MAPI_E_COMPUTED","features":[197]},{"name":"_MAPI_E_CORRUPT_DATA","features":[197]},{"name":"_MAPI_E_DISK_ERROR","features":[197]},{"name":"_MAPI_E_END_OF_SESSION","features":[197]},{"name":"_MAPI_E_EXTENDED_ERROR","features":[197]},{"name":"_MAPI_E_FAILONEPROVIDER","features":[197]},{"name":"_MAPI_E_INVALID_ACCESS_TIME","features":[197]},{"name":"_MAPI_E_INVALID_ENTRYID","features":[197]},{"name":"_MAPI_E_INVALID_OBJECT","features":[197]},{"name":"_MAPI_E_INVALID_WORKSTATION_ACCOUNT","features":[197]},{"name":"_MAPI_E_LOGON_FAILED","features":[197]},{"name":"_MAPI_E_MISSING_REQUIRED_COLUMN","features":[197]},{"name":"_MAPI_E_NETWORK_ERROR","features":[197]},{"name":"_MAPI_E_NOT_ENOUGH_DISK","features":[197]},{"name":"_MAPI_E_NOT_ENOUGH_RESOURCES","features":[197]},{"name":"_MAPI_E_NOT_FOUND","features":[197]},{"name":"_MAPI_E_NO_SUPPORT","features":[197]},{"name":"_MAPI_E_OBJECT_CHANGED","features":[197]},{"name":"_MAPI_E_OBJECT_DELETED","features":[197]},{"name":"_MAPI_E_PASSWORD_CHANGE_REQUIRED","features":[197]},{"name":"_MAPI_E_PASSWORD_EXPIRED","features":[197]},{"name":"_MAPI_E_SESSION_LIMIT","features":[197]},{"name":"_MAPI_E_STRING_TOO_LONG","features":[197]},{"name":"_MAPI_E_TOO_COMPLEX","features":[197]},{"name":"_MAPI_E_UNABLE_TO_ABORT","features":[197]},{"name":"_MAPI_E_UNCONFIGURED","features":[197]},{"name":"_MAPI_E_UNKNOWN_CPID","features":[197]},{"name":"_MAPI_E_UNKNOWN_ENTRYID","features":[197]},{"name":"_MAPI_E_UNKNOWN_FLAGS","features":[197]},{"name":"_MAPI_E_UNKNOWN_LCID","features":[197]},{"name":"_MAPI_E_USER_CANCEL","features":[197]},{"name":"_MAPI_E_VERSION","features":[197]},{"name":"_MAPI_W_NO_SERVICE","features":[197]},{"name":"bcp_batch","features":[197]},{"name":"bcp_bind","features":[197]},{"name":"bcp_colfmt","features":[197]},{"name":"bcp_collen","features":[197]},{"name":"bcp_colptr","features":[197]},{"name":"bcp_columns","features":[197]},{"name":"bcp_control","features":[197]},{"name":"bcp_done","features":[197]},{"name":"bcp_exec","features":[197]},{"name":"bcp_getcolfmt","features":[197]},{"name":"bcp_initA","features":[197]},{"name":"bcp_initW","features":[197]},{"name":"bcp_moretext","features":[197]},{"name":"bcp_readfmtA","features":[197]},{"name":"bcp_readfmtW","features":[197]},{"name":"bcp_sendrow","features":[197]},{"name":"bcp_setcolfmt","features":[197]},{"name":"bcp_writefmtA","features":[197]},{"name":"bcp_writefmtW","features":[197]},{"name":"dbprtypeA","features":[197]},{"name":"dbprtypeW","features":[197]},{"name":"eAUTH_TYPE_ANONYMOUS","features":[197]},{"name":"eAUTH_TYPE_BASIC","features":[197]},{"name":"eAUTH_TYPE_NTLM","features":[197]}],"603":[{"name":"CONDITION_OPERATION","features":[198]},{"name":"CONDITION_TYPE","features":[198]},{"name":"COP_APPLICATION_SPECIFIC","features":[198]},{"name":"COP_DOSWILDCARDS","features":[198]},{"name":"COP_EQUAL","features":[198]},{"name":"COP_GREATERTHAN","features":[198]},{"name":"COP_GREATERTHANOREQUAL","features":[198]},{"name":"COP_IMPLICIT","features":[198]},{"name":"COP_LESSTHAN","features":[198]},{"name":"COP_LESSTHANOREQUAL","features":[198]},{"name":"COP_NOTEQUAL","features":[198]},{"name":"COP_VALUE_CONTAINS","features":[198]},{"name":"COP_VALUE_ENDSWITH","features":[198]},{"name":"COP_VALUE_NOTCONTAINS","features":[198]},{"name":"COP_VALUE_STARTSWITH","features":[198]},{"name":"COP_WORD_EQUAL","features":[198]},{"name":"COP_WORD_STARTSWITH","features":[198]},{"name":"CT_AND_CONDITION","features":[198]},{"name":"CT_LEAF_CONDITION","features":[198]},{"name":"CT_NOT_CONDITION","features":[198]},{"name":"CT_OR_CONDITION","features":[198]}],"604":[{"name":"IWSCDefaultProduct","features":[199]},{"name":"IWSCProductList","features":[199]},{"name":"IWscProduct","features":[199]},{"name":"IWscProduct2","features":[199]},{"name":"IWscProduct3","features":[199]},{"name":"SECURITY_PRODUCT_TYPE","features":[199]},{"name":"SECURITY_PRODUCT_TYPE_ANTISPYWARE","features":[199]},{"name":"SECURITY_PRODUCT_TYPE_ANTIVIRUS","features":[199]},{"name":"SECURITY_PRODUCT_TYPE_FIREWALL","features":[199]},{"name":"WSCDefaultProduct","features":[199]},{"name":"WSCProductList","features":[199]},{"name":"WSC_SECURITY_PRODUCT_OUT_OF_DATE","features":[199]},{"name":"WSC_SECURITY_PRODUCT_STATE","features":[199]},{"name":"WSC_SECURITY_PRODUCT_STATE_EXPIRED","features":[199]},{"name":"WSC_SECURITY_PRODUCT_STATE_OFF","features":[199]},{"name":"WSC_SECURITY_PRODUCT_STATE_ON","features":[199]},{"name":"WSC_SECURITY_PRODUCT_STATE_SNOOZED","features":[199]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS","features":[199]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_NEEDED","features":[199]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_RECOMMENDED","features":[199]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NOT_SET","features":[199]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NO_ACTION","features":[199]},{"name":"WSC_SECURITY_PRODUCT_UP_TO_DATE","features":[199]},{"name":"WSC_SECURITY_PROVIDER","features":[199]},{"name":"WSC_SECURITY_PROVIDER_ALL","features":[199]},{"name":"WSC_SECURITY_PROVIDER_ANTISPYWARE","features":[199]},{"name":"WSC_SECURITY_PROVIDER_ANTIVIRUS","features":[199]},{"name":"WSC_SECURITY_PROVIDER_AUTOUPDATE_SETTINGS","features":[199]},{"name":"WSC_SECURITY_PROVIDER_FIREWALL","features":[199]},{"name":"WSC_SECURITY_PROVIDER_HEALTH","features":[199]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_GOOD","features":[199]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_NOTMONITORED","features":[199]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_POOR","features":[199]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_SNOOZE","features":[199]},{"name":"WSC_SECURITY_PROVIDER_INTERNET_SETTINGS","features":[199]},{"name":"WSC_SECURITY_PROVIDER_NONE","features":[199]},{"name":"WSC_SECURITY_PROVIDER_SERVICE","features":[199]},{"name":"WSC_SECURITY_PROVIDER_USER_ACCOUNT_CONTROL","features":[199]},{"name":"WSC_SECURITY_SIGNATURE_STATUS","features":[199]},{"name":"WscGetAntiMalwareUri","features":[199]},{"name":"WscGetSecurityProviderHealth","features":[199]},{"name":"WscQueryAntiMalwareUri","features":[199]},{"name":"WscRegisterForChanges","features":[1,199,37]},{"name":"WscRegisterForUserNotifications","features":[199]},{"name":"WscUnRegisterChanges","features":[1,199]}],"606":[{"name":"CUSTOM_SYSTEM_STATE_CHANGE_EVENT_GUID","features":[200]},{"name":"ChangeServiceConfig2A","features":[1,4,200]},{"name":"ChangeServiceConfig2W","features":[1,4,200]},{"name":"ChangeServiceConfigA","features":[1,4,200]},{"name":"ChangeServiceConfigW","features":[1,4,200]},{"name":"CloseServiceHandle","features":[1,4,200]},{"name":"ControlService","features":[1,4,200]},{"name":"ControlServiceExA","features":[1,4,200]},{"name":"ControlServiceExW","features":[1,4,200]},{"name":"CreateServiceA","features":[4,200]},{"name":"CreateServiceW","features":[4,200]},{"name":"DOMAIN_JOIN_GUID","features":[200]},{"name":"DOMAIN_LEAVE_GUID","features":[200]},{"name":"DeleteService","features":[1,4,200]},{"name":"ENUM_SERVICE_STATE","features":[200]},{"name":"ENUM_SERVICE_STATUSA","features":[200]},{"name":"ENUM_SERVICE_STATUSW","features":[200]},{"name":"ENUM_SERVICE_STATUS_PROCESSA","features":[200]},{"name":"ENUM_SERVICE_STATUS_PROCESSW","features":[200]},{"name":"ENUM_SERVICE_TYPE","features":[200]},{"name":"EnumDependentServicesA","features":[1,4,200]},{"name":"EnumDependentServicesW","features":[1,4,200]},{"name":"EnumServicesStatusA","features":[1,4,200]},{"name":"EnumServicesStatusExA","features":[1,4,200]},{"name":"EnumServicesStatusExW","features":[1,4,200]},{"name":"EnumServicesStatusW","features":[1,4,200]},{"name":"FIREWALL_PORT_CLOSE_GUID","features":[200]},{"name":"FIREWALL_PORT_OPEN_GUID","features":[200]},{"name":"GetServiceDirectory","features":[200]},{"name":"GetServiceDisplayNameA","features":[1,4,200]},{"name":"GetServiceDisplayNameW","features":[1,4,200]},{"name":"GetServiceKeyNameA","features":[1,4,200]},{"name":"GetServiceKeyNameW","features":[1,4,200]},{"name":"GetServiceRegistryStateKey","features":[49,200]},{"name":"GetSharedServiceDirectory","features":[4,200]},{"name":"GetSharedServiceRegistryStateKey","features":[4,49,200]},{"name":"HANDLER_FUNCTION","features":[200]},{"name":"HANDLER_FUNCTION_EX","features":[200]},{"name":"LPHANDLER_FUNCTION","features":[200]},{"name":"LPHANDLER_FUNCTION_EX","features":[200]},{"name":"LPSERVICE_MAIN_FUNCTIONA","features":[200]},{"name":"LPSERVICE_MAIN_FUNCTIONW","features":[200]},{"name":"LockServiceDatabase","features":[4,200]},{"name":"MACHINE_POLICY_PRESENT_GUID","features":[200]},{"name":"MaxServiceRegistryStateType","features":[200]},{"name":"NAMED_PIPE_EVENT_GUID","features":[200]},{"name":"NETWORK_MANAGER_FIRST_IP_ADDRESS_ARRIVAL_GUID","features":[200]},{"name":"NETWORK_MANAGER_LAST_IP_ADDRESS_REMOVAL_GUID","features":[200]},{"name":"NotifyBootConfigStatus","features":[1,200]},{"name":"NotifyServiceStatusChangeA","features":[4,200]},{"name":"NotifyServiceStatusChangeW","features":[4,200]},{"name":"OpenSCManagerA","features":[4,200]},{"name":"OpenSCManagerW","features":[4,200]},{"name":"OpenServiceA","features":[4,200]},{"name":"OpenServiceW","features":[4,200]},{"name":"PFN_SC_NOTIFY_CALLBACK","features":[200]},{"name":"PSC_NOTIFICATION_CALLBACK","features":[200]},{"name":"PSC_NOTIFICATION_REGISTRATION","features":[200]},{"name":"QUERY_SERVICE_CONFIGA","features":[200]},{"name":"QUERY_SERVICE_CONFIGW","features":[200]},{"name":"QUERY_SERVICE_LOCK_STATUSA","features":[200]},{"name":"QUERY_SERVICE_LOCK_STATUSW","features":[200]},{"name":"QueryServiceConfig2A","features":[1,4,200]},{"name":"QueryServiceConfig2W","features":[1,4,200]},{"name":"QueryServiceConfigA","features":[1,4,200]},{"name":"QueryServiceConfigW","features":[1,4,200]},{"name":"QueryServiceDynamicInformation","features":[1,200]},{"name":"QueryServiceLockStatusA","features":[1,4,200]},{"name":"QueryServiceLockStatusW","features":[1,4,200]},{"name":"QueryServiceObjectSecurity","features":[1,4,200]},{"name":"QueryServiceStatus","features":[1,4,200]},{"name":"QueryServiceStatusEx","features":[1,4,200]},{"name":"RPC_INTERFACE_EVENT_GUID","features":[200]},{"name":"RegisterServiceCtrlHandlerA","features":[200]},{"name":"RegisterServiceCtrlHandlerExA","features":[200]},{"name":"RegisterServiceCtrlHandlerExW","features":[200]},{"name":"RegisterServiceCtrlHandlerW","features":[200]},{"name":"SC_ACTION","features":[200]},{"name":"SC_ACTION_NONE","features":[200]},{"name":"SC_ACTION_OWN_RESTART","features":[200]},{"name":"SC_ACTION_REBOOT","features":[200]},{"name":"SC_ACTION_RESTART","features":[200]},{"name":"SC_ACTION_RUN_COMMAND","features":[200]},{"name":"SC_ACTION_TYPE","features":[200]},{"name":"SC_AGGREGATE_STORAGE_KEY","features":[200]},{"name":"SC_ENUM_PROCESS_INFO","features":[200]},{"name":"SC_ENUM_TYPE","features":[200]},{"name":"SC_EVENT_DATABASE_CHANGE","features":[200]},{"name":"SC_EVENT_PROPERTY_CHANGE","features":[200]},{"name":"SC_EVENT_STATUS_CHANGE","features":[200]},{"name":"SC_EVENT_TYPE","features":[200]},{"name":"SC_MANAGER_ALL_ACCESS","features":[200]},{"name":"SC_MANAGER_CONNECT","features":[200]},{"name":"SC_MANAGER_CREATE_SERVICE","features":[200]},{"name":"SC_MANAGER_ENUMERATE_SERVICE","features":[200]},{"name":"SC_MANAGER_LOCK","features":[200]},{"name":"SC_MANAGER_MODIFY_BOOT_CONFIG","features":[200]},{"name":"SC_MANAGER_QUERY_LOCK_STATUS","features":[200]},{"name":"SC_STATUS_PROCESS_INFO","features":[200]},{"name":"SC_STATUS_TYPE","features":[200]},{"name":"SERVICES_ACTIVE_DATABASE","features":[200]},{"name":"SERVICES_ACTIVE_DATABASEA","features":[200]},{"name":"SERVICES_ACTIVE_DATABASEW","features":[200]},{"name":"SERVICES_FAILED_DATABASE","features":[200]},{"name":"SERVICES_FAILED_DATABASEA","features":[200]},{"name":"SERVICES_FAILED_DATABASEW","features":[200]},{"name":"SERVICE_ACCEPT_HARDWAREPROFILECHANGE","features":[200]},{"name":"SERVICE_ACCEPT_LOWRESOURCES","features":[200]},{"name":"SERVICE_ACCEPT_NETBINDCHANGE","features":[200]},{"name":"SERVICE_ACCEPT_PARAMCHANGE","features":[200]},{"name":"SERVICE_ACCEPT_PAUSE_CONTINUE","features":[200]},{"name":"SERVICE_ACCEPT_POWEREVENT","features":[200]},{"name":"SERVICE_ACCEPT_PRESHUTDOWN","features":[200]},{"name":"SERVICE_ACCEPT_SESSIONCHANGE","features":[200]},{"name":"SERVICE_ACCEPT_SHUTDOWN","features":[200]},{"name":"SERVICE_ACCEPT_STOP","features":[200]},{"name":"SERVICE_ACCEPT_SYSTEMLOWRESOURCES","features":[200]},{"name":"SERVICE_ACCEPT_TIMECHANGE","features":[200]},{"name":"SERVICE_ACCEPT_TRIGGEREVENT","features":[200]},{"name":"SERVICE_ACCEPT_USER_LOGOFF","features":[200]},{"name":"SERVICE_ACTIVE","features":[200]},{"name":"SERVICE_ADAPTER","features":[200]},{"name":"SERVICE_ALL_ACCESS","features":[200]},{"name":"SERVICE_AUTO_START","features":[200]},{"name":"SERVICE_BOOT_START","features":[200]},{"name":"SERVICE_CHANGE_CONFIG","features":[200]},{"name":"SERVICE_CONFIG","features":[200]},{"name":"SERVICE_CONFIG_DELAYED_AUTO_START_INFO","features":[200]},{"name":"SERVICE_CONFIG_DESCRIPTION","features":[200]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS","features":[200]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS_FLAG","features":[200]},{"name":"SERVICE_CONFIG_LAUNCH_PROTECTED","features":[200]},{"name":"SERVICE_CONFIG_PREFERRED_NODE","features":[200]},{"name":"SERVICE_CONFIG_PRESHUTDOWN_INFO","features":[200]},{"name":"SERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO","features":[200]},{"name":"SERVICE_CONFIG_SERVICE_SID_INFO","features":[200]},{"name":"SERVICE_CONFIG_TRIGGER_INFO","features":[200]},{"name":"SERVICE_CONTINUE_PENDING","features":[200]},{"name":"SERVICE_CONTROL_CONTINUE","features":[200]},{"name":"SERVICE_CONTROL_DEVICEEVENT","features":[200]},{"name":"SERVICE_CONTROL_HARDWAREPROFILECHANGE","features":[200]},{"name":"SERVICE_CONTROL_INTERROGATE","features":[200]},{"name":"SERVICE_CONTROL_LOWRESOURCES","features":[200]},{"name":"SERVICE_CONTROL_NETBINDADD","features":[200]},{"name":"SERVICE_CONTROL_NETBINDDISABLE","features":[200]},{"name":"SERVICE_CONTROL_NETBINDENABLE","features":[200]},{"name":"SERVICE_CONTROL_NETBINDREMOVE","features":[200]},{"name":"SERVICE_CONTROL_PARAMCHANGE","features":[200]},{"name":"SERVICE_CONTROL_PAUSE","features":[200]},{"name":"SERVICE_CONTROL_POWEREVENT","features":[200]},{"name":"SERVICE_CONTROL_PRESHUTDOWN","features":[200]},{"name":"SERVICE_CONTROL_SESSIONCHANGE","features":[200]},{"name":"SERVICE_CONTROL_SHUTDOWN","features":[200]},{"name":"SERVICE_CONTROL_STATUS_REASON_INFO","features":[200]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSA","features":[200]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSW","features":[200]},{"name":"SERVICE_CONTROL_STOP","features":[200]},{"name":"SERVICE_CONTROL_SYSTEMLOWRESOURCES","features":[200]},{"name":"SERVICE_CONTROL_TIMECHANGE","features":[200]},{"name":"SERVICE_CONTROL_TRIGGEREVENT","features":[200]},{"name":"SERVICE_CUSTOM_SYSTEM_STATE_CHANGE_DATA_ITEM","features":[200]},{"name":"SERVICE_DELAYED_AUTO_START_INFO","features":[1,200]},{"name":"SERVICE_DEMAND_START","features":[200]},{"name":"SERVICE_DESCRIPTIONA","features":[200]},{"name":"SERVICE_DESCRIPTIONW","features":[200]},{"name":"SERVICE_DIRECTORY_TYPE","features":[200]},{"name":"SERVICE_DISABLED","features":[200]},{"name":"SERVICE_DRIVER","features":[200]},{"name":"SERVICE_DYNAMIC_INFORMATION_LEVEL_START_REASON","features":[200]},{"name":"SERVICE_ENUMERATE_DEPENDENTS","features":[200]},{"name":"SERVICE_ERROR","features":[200]},{"name":"SERVICE_ERROR_CRITICAL","features":[200]},{"name":"SERVICE_ERROR_IGNORE","features":[200]},{"name":"SERVICE_ERROR_NORMAL","features":[200]},{"name":"SERVICE_ERROR_SEVERE","features":[200]},{"name":"SERVICE_FAILURE_ACTIONSA","features":[200]},{"name":"SERVICE_FAILURE_ACTIONSW","features":[200]},{"name":"SERVICE_FAILURE_ACTIONS_FLAG","features":[1,200]},{"name":"SERVICE_FILE_SYSTEM_DRIVER","features":[200]},{"name":"SERVICE_INACTIVE","features":[200]},{"name":"SERVICE_INTERROGATE","features":[200]},{"name":"SERVICE_KERNEL_DRIVER","features":[200]},{"name":"SERVICE_LAUNCH_PROTECTED_ANTIMALWARE_LIGHT","features":[200]},{"name":"SERVICE_LAUNCH_PROTECTED_INFO","features":[200]},{"name":"SERVICE_LAUNCH_PROTECTED_NONE","features":[200]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS","features":[200]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS_LIGHT","features":[200]},{"name":"SERVICE_MAIN_FUNCTIONA","features":[200]},{"name":"SERVICE_MAIN_FUNCTIONW","features":[200]},{"name":"SERVICE_NOTIFY","features":[200]},{"name":"SERVICE_NOTIFY_1","features":[200]},{"name":"SERVICE_NOTIFY_2A","features":[200]},{"name":"SERVICE_NOTIFY_2W","features":[200]},{"name":"SERVICE_NOTIFY_CONTINUE_PENDING","features":[200]},{"name":"SERVICE_NOTIFY_CREATED","features":[200]},{"name":"SERVICE_NOTIFY_DELETED","features":[200]},{"name":"SERVICE_NOTIFY_DELETE_PENDING","features":[200]},{"name":"SERVICE_NOTIFY_PAUSED","features":[200]},{"name":"SERVICE_NOTIFY_PAUSE_PENDING","features":[200]},{"name":"SERVICE_NOTIFY_RUNNING","features":[200]},{"name":"SERVICE_NOTIFY_START_PENDING","features":[200]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE","features":[200]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_1","features":[200]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_2","features":[200]},{"name":"SERVICE_NOTIFY_STOPPED","features":[200]},{"name":"SERVICE_NOTIFY_STOP_PENDING","features":[200]},{"name":"SERVICE_NO_CHANGE","features":[200]},{"name":"SERVICE_PAUSED","features":[200]},{"name":"SERVICE_PAUSE_CONTINUE","features":[200]},{"name":"SERVICE_PAUSE_PENDING","features":[200]},{"name":"SERVICE_PREFERRED_NODE_INFO","features":[1,200]},{"name":"SERVICE_PRESHUTDOWN_INFO","features":[200]},{"name":"SERVICE_QUERY_CONFIG","features":[200]},{"name":"SERVICE_QUERY_STATUS","features":[200]},{"name":"SERVICE_RECOGNIZER_DRIVER","features":[200]},{"name":"SERVICE_REGISTRY_STATE_TYPE","features":[200]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOA","features":[200]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOW","features":[200]},{"name":"SERVICE_RUNNING","features":[200]},{"name":"SERVICE_RUNS_IN_NON_SYSTEM_OR_NOT_RUNNING","features":[200]},{"name":"SERVICE_RUNS_IN_PROCESS","features":[200]},{"name":"SERVICE_RUNS_IN_SYSTEM_PROCESS","features":[200]},{"name":"SERVICE_SHARED_DIRECTORY_TYPE","features":[200]},{"name":"SERVICE_SHARED_REGISTRY_STATE_TYPE","features":[200]},{"name":"SERVICE_SID_INFO","features":[200]},{"name":"SERVICE_SID_TYPE_NONE","features":[200]},{"name":"SERVICE_SID_TYPE_UNRESTRICTED","features":[200]},{"name":"SERVICE_START","features":[200]},{"name":"SERVICE_START_PENDING","features":[200]},{"name":"SERVICE_START_REASON","features":[200]},{"name":"SERVICE_START_REASON_AUTO","features":[200]},{"name":"SERVICE_START_REASON_DELAYEDAUTO","features":[200]},{"name":"SERVICE_START_REASON_DEMAND","features":[200]},{"name":"SERVICE_START_REASON_RESTART_ON_FAILURE","features":[200]},{"name":"SERVICE_START_REASON_TRIGGER","features":[200]},{"name":"SERVICE_START_TYPE","features":[200]},{"name":"SERVICE_STATE_ALL","features":[200]},{"name":"SERVICE_STATUS","features":[200]},{"name":"SERVICE_STATUS_CURRENT_STATE","features":[200]},{"name":"SERVICE_STATUS_HANDLE","features":[200]},{"name":"SERVICE_STATUS_PROCESS","features":[200]},{"name":"SERVICE_STOP","features":[200]},{"name":"SERVICE_STOPPED","features":[200]},{"name":"SERVICE_STOP_PENDING","features":[200]},{"name":"SERVICE_STOP_REASON_FLAG_CUSTOM","features":[200]},{"name":"SERVICE_STOP_REASON_FLAG_MAX","features":[200]},{"name":"SERVICE_STOP_REASON_FLAG_MIN","features":[200]},{"name":"SERVICE_STOP_REASON_FLAG_PLANNED","features":[200]},{"name":"SERVICE_STOP_REASON_FLAG_UNPLANNED","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_APPLICATION","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_HARDWARE","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX_CUSTOM","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN_CUSTOM","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_NONE","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_OPERATINGSYSTEM","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_OTHER","features":[200]},{"name":"SERVICE_STOP_REASON_MAJOR_SOFTWARE","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_DISK","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_ENVIRONMENT","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_HARDWARE_DRIVER","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_HUNG","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_INSTALLATION","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_MAINTENANCE","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_MAX","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_MAX_CUSTOM","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_MEMOTYLIMIT","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_MIN","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_MIN_CUSTOM","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_MMC","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORKCARD","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORK_CONNECTIVITY","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_NONE","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_OTHER","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_OTHERDRIVER","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_RECONFIG","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITY","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE_UNINSTALL","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_UNSTABLE","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_UPGRADE","features":[200]},{"name":"SERVICE_STOP_REASON_MINOR_WMI","features":[200]},{"name":"SERVICE_SYSTEM_START","features":[200]},{"name":"SERVICE_TABLE_ENTRYA","features":[200]},{"name":"SERVICE_TABLE_ENTRYW","features":[200]},{"name":"SERVICE_TIMECHANGE_INFO","features":[200]},{"name":"SERVICE_TRIGGER","features":[200]},{"name":"SERVICE_TRIGGER_ACTION","features":[200]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_START","features":[200]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_STOP","features":[200]},{"name":"SERVICE_TRIGGER_CUSTOM_STATE_ID","features":[200]},{"name":"SERVICE_TRIGGER_DATA_TYPE_BINARY","features":[200]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ALL","features":[200]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ANY","features":[200]},{"name":"SERVICE_TRIGGER_DATA_TYPE_LEVEL","features":[200]},{"name":"SERVICE_TRIGGER_DATA_TYPE_STRING","features":[200]},{"name":"SERVICE_TRIGGER_INFO","features":[200]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM","features":[200]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM_DATA_TYPE","features":[200]},{"name":"SERVICE_TRIGGER_STARTED_ARGUMENT","features":[200]},{"name":"SERVICE_TRIGGER_TYPE","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_AGGREGATE","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM_SYSTEM_STATE_CHANGE","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_DEVICE_INTERFACE_ARRIVAL","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_DOMAIN_JOIN","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_FIREWALL_PORT_EVENT","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_GROUP_POLICY","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_IP_ADDRESS_AVAILABILITY","features":[200]},{"name":"SERVICE_TRIGGER_TYPE_NETWORK_ENDPOINT","features":[200]},{"name":"SERVICE_USER_DEFINED_CONTROL","features":[200]},{"name":"SERVICE_USER_OWN_PROCESS","features":[200]},{"name":"SERVICE_USER_SHARE_PROCESS","features":[200]},{"name":"SERVICE_WIN32","features":[200]},{"name":"SERVICE_WIN32_OWN_PROCESS","features":[200]},{"name":"SERVICE_WIN32_SHARE_PROCESS","features":[200]},{"name":"ServiceDirectoryPersistentState","features":[200]},{"name":"ServiceDirectoryTypeMax","features":[200]},{"name":"ServiceRegistryStateParameters","features":[200]},{"name":"ServiceRegistryStatePersistent","features":[200]},{"name":"ServiceSharedDirectoryPersistentState","features":[200]},{"name":"ServiceSharedRegistryPersistentState","features":[200]},{"name":"SetServiceBits","features":[1,200]},{"name":"SetServiceObjectSecurity","features":[1,4,200]},{"name":"SetServiceStatus","features":[1,200]},{"name":"StartServiceA","features":[1,4,200]},{"name":"StartServiceCtrlDispatcherA","features":[1,200]},{"name":"StartServiceCtrlDispatcherW","features":[1,200]},{"name":"StartServiceW","features":[1,4,200]},{"name":"SubscribeServiceChangeNotifications","features":[4,200]},{"name":"USER_POLICY_PRESENT_GUID","features":[200]},{"name":"UnlockServiceDatabase","features":[1,200]},{"name":"UnsubscribeServiceChangeNotifications","features":[200]},{"name":"WaitServiceState","features":[1,4,200]}],"608":[{"name":"OOBEComplete","features":[1,201]},{"name":"OOBE_COMPLETED_CALLBACK","features":[201]},{"name":"RegisterWaitUntilOOBECompleted","features":[1,201]},{"name":"UnregisterWaitUntilOOBECompleted","features":[1,201]}],"609":[{"name":"AbortSystemShutdownA","features":[1,202]},{"name":"AbortSystemShutdownW","features":[1,202]},{"name":"CheckForHiberboot","features":[1,202]},{"name":"EWX_ARSO","features":[202]},{"name":"EWX_BOOTOPTIONS","features":[202]},{"name":"EWX_CHECK_SAFE_FOR_SERVER","features":[202]},{"name":"EWX_FORCE","features":[202]},{"name":"EWX_FORCEIFHUNG","features":[202]},{"name":"EWX_HYBRID_SHUTDOWN","features":[202]},{"name":"EWX_LOGOFF","features":[202]},{"name":"EWX_POWEROFF","features":[202]},{"name":"EWX_QUICKRESOLVE","features":[202]},{"name":"EWX_REBOOT","features":[202]},{"name":"EWX_RESTARTAPPS","features":[202]},{"name":"EWX_SHUTDOWN","features":[202]},{"name":"EWX_SYSTEM_INITIATED","features":[202]},{"name":"EXIT_WINDOWS_FLAGS","features":[202]},{"name":"ExitWindowsEx","features":[1,202]},{"name":"InitiateShutdownA","features":[202]},{"name":"InitiateShutdownW","features":[202]},{"name":"InitiateSystemShutdownA","features":[1,202]},{"name":"InitiateSystemShutdownExA","features":[1,202]},{"name":"InitiateSystemShutdownExW","features":[1,202]},{"name":"InitiateSystemShutdownW","features":[1,202]},{"name":"LockWorkStation","features":[1,202]},{"name":"MAX_NUM_REASONS","features":[202]},{"name":"MAX_REASON_BUGID_LEN","features":[202]},{"name":"MAX_REASON_COMMENT_LEN","features":[202]},{"name":"MAX_REASON_DESC_LEN","features":[202]},{"name":"MAX_REASON_NAME_LEN","features":[202]},{"name":"POLICY_SHOWREASONUI_ALWAYS","features":[202]},{"name":"POLICY_SHOWREASONUI_NEVER","features":[202]},{"name":"POLICY_SHOWREASONUI_SERVERONLY","features":[202]},{"name":"POLICY_SHOWREASONUI_WORKSTATIONONLY","features":[202]},{"name":"SHTDN_REASON_FLAG_CLEAN_UI","features":[202]},{"name":"SHTDN_REASON_FLAG_COMMENT_REQUIRED","features":[202]},{"name":"SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED","features":[202]},{"name":"SHTDN_REASON_FLAG_DIRTY_UI","features":[202]},{"name":"SHTDN_REASON_FLAG_MOBILE_UI_RESERVED","features":[202]},{"name":"SHTDN_REASON_FLAG_PLANNED","features":[202]},{"name":"SHTDN_REASON_FLAG_USER_DEFINED","features":[202]},{"name":"SHTDN_REASON_LEGACY_API","features":[202]},{"name":"SHTDN_REASON_MAJOR_APPLICATION","features":[202]},{"name":"SHTDN_REASON_MAJOR_HARDWARE","features":[202]},{"name":"SHTDN_REASON_MAJOR_LEGACY_API","features":[202]},{"name":"SHTDN_REASON_MAJOR_NONE","features":[202]},{"name":"SHTDN_REASON_MAJOR_OPERATINGSYSTEM","features":[202]},{"name":"SHTDN_REASON_MAJOR_OTHER","features":[202]},{"name":"SHTDN_REASON_MAJOR_POWER","features":[202]},{"name":"SHTDN_REASON_MAJOR_SOFTWARE","features":[202]},{"name":"SHTDN_REASON_MAJOR_SYSTEM","features":[202]},{"name":"SHTDN_REASON_MINOR_BLUESCREEN","features":[202]},{"name":"SHTDN_REASON_MINOR_CORDUNPLUGGED","features":[202]},{"name":"SHTDN_REASON_MINOR_DC_DEMOTION","features":[202]},{"name":"SHTDN_REASON_MINOR_DC_PROMOTION","features":[202]},{"name":"SHTDN_REASON_MINOR_DISK","features":[202]},{"name":"SHTDN_REASON_MINOR_ENVIRONMENT","features":[202]},{"name":"SHTDN_REASON_MINOR_HARDWARE_DRIVER","features":[202]},{"name":"SHTDN_REASON_MINOR_HOTFIX","features":[202]},{"name":"SHTDN_REASON_MINOR_HOTFIX_UNINSTALL","features":[202]},{"name":"SHTDN_REASON_MINOR_HUNG","features":[202]},{"name":"SHTDN_REASON_MINOR_INSTALLATION","features":[202]},{"name":"SHTDN_REASON_MINOR_MAINTENANCE","features":[202]},{"name":"SHTDN_REASON_MINOR_MMC","features":[202]},{"name":"SHTDN_REASON_MINOR_NETWORKCARD","features":[202]},{"name":"SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY","features":[202]},{"name":"SHTDN_REASON_MINOR_NONE","features":[202]},{"name":"SHTDN_REASON_MINOR_OTHER","features":[202]},{"name":"SHTDN_REASON_MINOR_OTHERDRIVER","features":[202]},{"name":"SHTDN_REASON_MINOR_POWER_SUPPLY","features":[202]},{"name":"SHTDN_REASON_MINOR_PROCESSOR","features":[202]},{"name":"SHTDN_REASON_MINOR_RECONFIG","features":[202]},{"name":"SHTDN_REASON_MINOR_SECURITY","features":[202]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX","features":[202]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[202]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK","features":[202]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[202]},{"name":"SHTDN_REASON_MINOR_SYSTEMRESTORE","features":[202]},{"name":"SHTDN_REASON_MINOR_TERMSRV","features":[202]},{"name":"SHTDN_REASON_MINOR_UNSTABLE","features":[202]},{"name":"SHTDN_REASON_MINOR_UPGRADE","features":[202]},{"name":"SHTDN_REASON_MINOR_WMI","features":[202]},{"name":"SHTDN_REASON_NONE","features":[202]},{"name":"SHTDN_REASON_UNKNOWN","features":[202]},{"name":"SHTDN_REASON_VALID_BIT_MASK","features":[202]},{"name":"SHUTDOWN_ARSO","features":[202]},{"name":"SHUTDOWN_CHECK_SAFE_FOR_SERVER","features":[202]},{"name":"SHUTDOWN_FLAGS","features":[202]},{"name":"SHUTDOWN_FORCE_OTHERS","features":[202]},{"name":"SHUTDOWN_FORCE_SELF","features":[202]},{"name":"SHUTDOWN_GRACE_OVERRIDE","features":[202]},{"name":"SHUTDOWN_HYBRID","features":[202]},{"name":"SHUTDOWN_INSTALL_UPDATES","features":[202]},{"name":"SHUTDOWN_MOBILE_UI","features":[202]},{"name":"SHUTDOWN_NOREBOOT","features":[202]},{"name":"SHUTDOWN_POWEROFF","features":[202]},{"name":"SHUTDOWN_REASON","features":[202]},{"name":"SHUTDOWN_RESTART","features":[202]},{"name":"SHUTDOWN_RESTARTAPPS","features":[202]},{"name":"SHUTDOWN_RESTART_BOOTOPTIONS","features":[202]},{"name":"SHUTDOWN_SKIP_SVC_PRESHUTDOWN","features":[202]},{"name":"SHUTDOWN_SOFT_REBOOT","features":[202]},{"name":"SHUTDOWN_SYSTEM_INITIATED","features":[202]},{"name":"SHUTDOWN_TYPE_LEN","features":[202]},{"name":"SHUTDOWN_VAIL_CONTAINER","features":[202]},{"name":"SNAPSHOT_POLICY_ALWAYS","features":[202]},{"name":"SNAPSHOT_POLICY_NEVER","features":[202]},{"name":"SNAPSHOT_POLICY_UNPLANNED","features":[202]},{"name":"ShutdownBlockReasonCreate","features":[1,202]},{"name":"ShutdownBlockReasonDestroy","features":[1,202]},{"name":"ShutdownBlockReasonQuery","features":[1,202]}],"611":[{"name":"BROADCAST_SYSTEM_MESSAGE_FLAGS","features":[134]},{"name":"BROADCAST_SYSTEM_MESSAGE_INFO","features":[134]},{"name":"BSF_ALLOWSFW","features":[134]},{"name":"BSF_FLUSHDISK","features":[134]},{"name":"BSF_FORCEIFHUNG","features":[134]},{"name":"BSF_IGNORECURRENTTASK","features":[134]},{"name":"BSF_LUID","features":[134]},{"name":"BSF_NOHANG","features":[134]},{"name":"BSF_NOTIMEOUTIFNOTHUNG","features":[134]},{"name":"BSF_POSTMESSAGE","features":[134]},{"name":"BSF_QUERY","features":[134]},{"name":"BSF_RETURNHDESK","features":[134]},{"name":"BSF_SENDNOTIFYMESSAGE","features":[134]},{"name":"BSMINFO","features":[1,134]},{"name":"BSM_ALLCOMPONENTS","features":[134]},{"name":"BSM_ALLDESKTOPS","features":[134]},{"name":"BSM_APPLICATIONS","features":[134]},{"name":"BroadcastSystemMessageA","features":[1,134]},{"name":"BroadcastSystemMessageExA","features":[1,134]},{"name":"BroadcastSystemMessageExW","features":[1,134]},{"name":"BroadcastSystemMessageW","features":[1,134]},{"name":"CloseDesktop","features":[1,134]},{"name":"CloseWindowStation","features":[1,134]},{"name":"CreateDesktopA","features":[1,12,4,134]},{"name":"CreateDesktopExA","features":[1,12,4,134]},{"name":"CreateDesktopExW","features":[1,12,4,134]},{"name":"CreateDesktopW","features":[1,12,4,134]},{"name":"CreateWindowStationA","features":[1,4,134]},{"name":"CreateWindowStationW","features":[1,4,134]},{"name":"DESKTOPENUMPROCA","features":[1,134]},{"name":"DESKTOPENUMPROCW","features":[1,134]},{"name":"DESKTOP_ACCESS_FLAGS","features":[134]},{"name":"DESKTOP_CONTROL_FLAGS","features":[134]},{"name":"DESKTOP_CREATEMENU","features":[134]},{"name":"DESKTOP_CREATEWINDOW","features":[134]},{"name":"DESKTOP_DELETE","features":[134]},{"name":"DESKTOP_ENUMERATE","features":[134]},{"name":"DESKTOP_HOOKCONTROL","features":[134]},{"name":"DESKTOP_JOURNALPLAYBACK","features":[134]},{"name":"DESKTOP_JOURNALRECORD","features":[134]},{"name":"DESKTOP_READOBJECTS","features":[134]},{"name":"DESKTOP_READ_CONTROL","features":[134]},{"name":"DESKTOP_SWITCHDESKTOP","features":[134]},{"name":"DESKTOP_SYNCHRONIZE","features":[134]},{"name":"DESKTOP_WRITEOBJECTS","features":[134]},{"name":"DESKTOP_WRITE_DAC","features":[134]},{"name":"DESKTOP_WRITE_OWNER","features":[134]},{"name":"DF_ALLOWOTHERACCOUNTHOOK","features":[134]},{"name":"EnumDesktopWindows","features":[1,134,50]},{"name":"EnumDesktopsA","features":[1,134]},{"name":"EnumDesktopsW","features":[1,134]},{"name":"EnumWindowStationsA","features":[1,134]},{"name":"EnumWindowStationsW","features":[1,134]},{"name":"GetProcessWindowStation","features":[134]},{"name":"GetThreadDesktop","features":[134]},{"name":"GetUserObjectInformationA","features":[1,134]},{"name":"GetUserObjectInformationW","features":[1,134]},{"name":"HDESK","features":[134]},{"name":"HWINSTA","features":[134]},{"name":"OpenDesktopA","features":[1,134]},{"name":"OpenDesktopW","features":[1,134]},{"name":"OpenInputDesktop","features":[1,134]},{"name":"OpenWindowStationA","features":[1,134]},{"name":"OpenWindowStationW","features":[1,134]},{"name":"SetProcessWindowStation","features":[1,134]},{"name":"SetThreadDesktop","features":[1,134]},{"name":"SetUserObjectInformationA","features":[1,134]},{"name":"SetUserObjectInformationW","features":[1,134]},{"name":"SwitchDesktop","features":[1,134]},{"name":"UOI_FLAGS","features":[134]},{"name":"UOI_HEAPSIZE","features":[134]},{"name":"UOI_IO","features":[134]},{"name":"UOI_NAME","features":[134]},{"name":"UOI_TYPE","features":[134]},{"name":"UOI_USER_SID","features":[134]},{"name":"USEROBJECTFLAGS","features":[1,134]},{"name":"USER_OBJECT_INFORMATION_INDEX","features":[134]},{"name":"WINSTAENUMPROCA","features":[1,134]},{"name":"WINSTAENUMPROCW","features":[1,134]}],"612":[{"name":"WSL_DISTRIBUTION_FLAGS","features":[203]},{"name":"WSL_DISTRIBUTION_FLAGS_APPEND_NT_PATH","features":[203]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_DRIVE_MOUNTING","features":[203]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_INTEROP","features":[203]},{"name":"WSL_DISTRIBUTION_FLAGS_NONE","features":[203]},{"name":"WslConfigureDistribution","features":[203]},{"name":"WslGetDistributionConfiguration","features":[203]},{"name":"WslIsDistributionRegistered","features":[1,203]},{"name":"WslLaunch","features":[1,203]},{"name":"WslLaunchInteractive","features":[1,203]},{"name":"WslRegisterDistribution","features":[203]},{"name":"WslUnregisterDistribution","features":[203]}],"613":[{"name":"ACPI","features":[32]},{"name":"CACHE_DESCRIPTOR","features":[32]},{"name":"CACHE_RELATIONSHIP","features":[32]},{"name":"COMPUTER_NAME_FORMAT","features":[32]},{"name":"CPU_SET_INFORMATION_TYPE","features":[32]},{"name":"CacheData","features":[32]},{"name":"CacheInstruction","features":[32]},{"name":"CacheTrace","features":[32]},{"name":"CacheUnified","features":[32]},{"name":"ComputerNameDnsDomain","features":[32]},{"name":"ComputerNameDnsFullyQualified","features":[32]},{"name":"ComputerNameDnsHostname","features":[32]},{"name":"ComputerNameMax","features":[32]},{"name":"ComputerNameNetBIOS","features":[32]},{"name":"ComputerNamePhysicalDnsDomain","features":[32]},{"name":"ComputerNamePhysicalDnsFullyQualified","features":[32]},{"name":"ComputerNamePhysicalDnsHostname","features":[32]},{"name":"ComputerNamePhysicalNetBIOS","features":[32]},{"name":"CpuSetInformation","features":[32]},{"name":"DEPPolicyAlwaysOff","features":[32]},{"name":"DEPPolicyAlwaysOn","features":[32]},{"name":"DEPPolicyOptIn","features":[32]},{"name":"DEPPolicyOptOut","features":[32]},{"name":"DEPTotalPolicyCount","features":[32]},{"name":"DEP_SYSTEM_POLICY_TYPE","features":[32]},{"name":"DEVELOPER_DRIVE_ENABLEMENT_STATE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_ALLINONE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_BANKING","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_CONVERTIBLE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_DESKTOP","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_DETACHABLE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_GAMING","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_HMD","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_KIOSK","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_LARGESCREEN","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_MAKER_BOARD","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_MAX","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_MEDICAL","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_NETWORKING","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_NOTEBOOK","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_PHONE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_PRINTING","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_PUCK","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_STICKPC","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_TABLET","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_THIN_CLIENT","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_TOY","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_UNKNOWN","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_VENDING","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_S","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X_DEVKIT","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_01","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_02","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_03","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_04","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_05","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_06","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_07","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_08","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_09","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_S","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X","features":[32]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X_DEVKIT","features":[32]},{"name":"DEVICEFAMILYINFOENUM","features":[32]},{"name":"DEVICEFAMILYINFOENUM_7067329","features":[32]},{"name":"DEVICEFAMILYINFOENUM_8828080","features":[32]},{"name":"DEVICEFAMILYINFOENUM_DESKTOP","features":[32]},{"name":"DEVICEFAMILYINFOENUM_HOLOGRAPHIC","features":[32]},{"name":"DEVICEFAMILYINFOENUM_IOT","features":[32]},{"name":"DEVICEFAMILYINFOENUM_IOT_HEADLESS","features":[32]},{"name":"DEVICEFAMILYINFOENUM_MAX","features":[32]},{"name":"DEVICEFAMILYINFOENUM_MOBILE","features":[32]},{"name":"DEVICEFAMILYINFOENUM_SERVER","features":[32]},{"name":"DEVICEFAMILYINFOENUM_SERVER_NANO","features":[32]},{"name":"DEVICEFAMILYINFOENUM_TEAM","features":[32]},{"name":"DEVICEFAMILYINFOENUM_UAP","features":[32]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_8X","features":[32]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE","features":[32]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE_HEADLESS","features":[32]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X","features":[32]},{"name":"DEVICEFAMILYINFOENUM_XBOX","features":[32]},{"name":"DEVICEFAMILYINFOENUM_XBOXERA","features":[32]},{"name":"DEVICEFAMILYINFOENUM_XBOXSRA","features":[32]},{"name":"DeveloperDriveDisabledByGroupPolicy","features":[32]},{"name":"DeveloperDriveDisabledBySystemPolicy","features":[32]},{"name":"DeveloperDriveEnabled","features":[32]},{"name":"DeveloperDriveEnablementStateError","features":[32]},{"name":"DnsHostnameToComputerNameExW","features":[1,32]},{"name":"EnumSystemFirmwareTables","features":[32]},{"name":"FIRM","features":[32]},{"name":"FIRMWARE_TABLE_PROVIDER","features":[32]},{"name":"FIRMWARE_TYPE","features":[32]},{"name":"FirmwareTypeBios","features":[32]},{"name":"FirmwareTypeMax","features":[32]},{"name":"FirmwareTypeUefi","features":[32]},{"name":"FirmwareTypeUnknown","features":[32]},{"name":"GROUP_AFFINITY","features":[32]},{"name":"GROUP_RELATIONSHIP","features":[32]},{"name":"GetComputerNameExA","features":[1,32]},{"name":"GetComputerNameExW","features":[1,32]},{"name":"GetDeveloperDriveEnablementState","features":[32]},{"name":"GetFirmwareType","features":[1,32]},{"name":"GetIntegratedDisplaySize","features":[32]},{"name":"GetLocalTime","features":[1,32]},{"name":"GetLogicalProcessorInformation","features":[1,32]},{"name":"GetLogicalProcessorInformationEx","features":[1,32]},{"name":"GetNativeSystemInfo","features":[32]},{"name":"GetOsManufacturingMode","features":[1,32]},{"name":"GetOsSafeBootMode","features":[1,32]},{"name":"GetPhysicallyInstalledSystemMemory","features":[1,32]},{"name":"GetProcessorSystemCycleTime","features":[1,32]},{"name":"GetProductInfo","features":[1,32]},{"name":"GetSystemCpuSetInformation","features":[1,32]},{"name":"GetSystemDEPPolicy","features":[32]},{"name":"GetSystemDirectoryA","features":[32]},{"name":"GetSystemDirectoryW","features":[32]},{"name":"GetSystemFirmwareTable","features":[32]},{"name":"GetSystemInfo","features":[32]},{"name":"GetSystemLeapSecondInformation","features":[1,32]},{"name":"GetSystemTime","features":[1,32]},{"name":"GetSystemTimeAdjustment","features":[1,32]},{"name":"GetSystemTimeAdjustmentPrecise","features":[1,32]},{"name":"GetSystemTimeAsFileTime","features":[1,32]},{"name":"GetSystemTimePreciseAsFileTime","features":[1,32]},{"name":"GetSystemWindowsDirectoryA","features":[32]},{"name":"GetSystemWindowsDirectoryW","features":[32]},{"name":"GetSystemWow64Directory2A","features":[32]},{"name":"GetSystemWow64Directory2W","features":[32]},{"name":"GetSystemWow64DirectoryA","features":[32]},{"name":"GetSystemWow64DirectoryW","features":[32]},{"name":"GetTickCount","features":[32]},{"name":"GetTickCount64","features":[32]},{"name":"GetVersion","features":[32]},{"name":"GetVersionExA","features":[1,32]},{"name":"GetVersionExW","features":[1,32]},{"name":"GetWindowsDirectoryA","features":[32]},{"name":"GetWindowsDirectoryW","features":[32]},{"name":"GlobalDataIdConsoleSharedDataFlags","features":[32]},{"name":"GlobalDataIdCyclesPerYield","features":[32]},{"name":"GlobalDataIdImageNumberHigh","features":[32]},{"name":"GlobalDataIdImageNumberLow","features":[32]},{"name":"GlobalDataIdInterruptTime","features":[32]},{"name":"GlobalDataIdKdDebuggerEnabled","features":[32]},{"name":"GlobalDataIdLastSystemRITEventTickCount","features":[32]},{"name":"GlobalDataIdNtMajorVersion","features":[32]},{"name":"GlobalDataIdNtMinorVersion","features":[32]},{"name":"GlobalDataIdNtSystemRootDrive","features":[32]},{"name":"GlobalDataIdQpcBias","features":[32]},{"name":"GlobalDataIdQpcBypassEnabled","features":[32]},{"name":"GlobalDataIdQpcData","features":[32]},{"name":"GlobalDataIdQpcShift","features":[32]},{"name":"GlobalDataIdRngSeedVersion","features":[32]},{"name":"GlobalDataIdSafeBootMode","features":[32]},{"name":"GlobalDataIdSystemExpirationDate","features":[32]},{"name":"GlobalDataIdTimeZoneBias","features":[32]},{"name":"GlobalDataIdTimeZoneId","features":[32]},{"name":"GlobalDataIdUnknown","features":[32]},{"name":"GlobalMemoryStatus","features":[32]},{"name":"GlobalMemoryStatusEx","features":[1,32]},{"name":"IMAGE_FILE_MACHINE","features":[32]},{"name":"IMAGE_FILE_MACHINE_ALPHA","features":[32]},{"name":"IMAGE_FILE_MACHINE_ALPHA64","features":[32]},{"name":"IMAGE_FILE_MACHINE_AM33","features":[32]},{"name":"IMAGE_FILE_MACHINE_AMD64","features":[32]},{"name":"IMAGE_FILE_MACHINE_ARM","features":[32]},{"name":"IMAGE_FILE_MACHINE_ARM64","features":[32]},{"name":"IMAGE_FILE_MACHINE_ARMNT","features":[32]},{"name":"IMAGE_FILE_MACHINE_AXP64","features":[32]},{"name":"IMAGE_FILE_MACHINE_CEE","features":[32]},{"name":"IMAGE_FILE_MACHINE_CEF","features":[32]},{"name":"IMAGE_FILE_MACHINE_EBC","features":[32]},{"name":"IMAGE_FILE_MACHINE_I386","features":[32]},{"name":"IMAGE_FILE_MACHINE_IA64","features":[32]},{"name":"IMAGE_FILE_MACHINE_M32R","features":[32]},{"name":"IMAGE_FILE_MACHINE_MIPS16","features":[32]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU","features":[32]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU16","features":[32]},{"name":"IMAGE_FILE_MACHINE_POWERPC","features":[32]},{"name":"IMAGE_FILE_MACHINE_POWERPCFP","features":[32]},{"name":"IMAGE_FILE_MACHINE_R10000","features":[32]},{"name":"IMAGE_FILE_MACHINE_R3000","features":[32]},{"name":"IMAGE_FILE_MACHINE_R4000","features":[32]},{"name":"IMAGE_FILE_MACHINE_SH3","features":[32]},{"name":"IMAGE_FILE_MACHINE_SH3DSP","features":[32]},{"name":"IMAGE_FILE_MACHINE_SH3E","features":[32]},{"name":"IMAGE_FILE_MACHINE_SH4","features":[32]},{"name":"IMAGE_FILE_MACHINE_SH5","features":[32]},{"name":"IMAGE_FILE_MACHINE_TARGET_HOST","features":[32]},{"name":"IMAGE_FILE_MACHINE_THUMB","features":[32]},{"name":"IMAGE_FILE_MACHINE_TRICORE","features":[32]},{"name":"IMAGE_FILE_MACHINE_UNKNOWN","features":[32]},{"name":"IMAGE_FILE_MACHINE_WCEMIPSV2","features":[32]},{"name":"IsUserCetAvailableInEnvironment","features":[1,32]},{"name":"IsWow64GuestMachineSupported","features":[1,32]},{"name":"LOGICAL_PROCESSOR_RELATIONSHIP","features":[32]},{"name":"MEMORYSTATUS","features":[32]},{"name":"MEMORYSTATUSEX","features":[32]},{"name":"NTDDI_LONGHORN","features":[32]},{"name":"NTDDI_VERSION","features":[32]},{"name":"NTDDI_VISTA","features":[32]},{"name":"NTDDI_VISTASP1","features":[32]},{"name":"NTDDI_VISTASP2","features":[32]},{"name":"NTDDI_VISTASP3","features":[32]},{"name":"NTDDI_VISTASP4","features":[32]},{"name":"NTDDI_WIN10","features":[32]},{"name":"NTDDI_WIN10_19H1","features":[32]},{"name":"NTDDI_WIN10_CO","features":[32]},{"name":"NTDDI_WIN10_FE","features":[32]},{"name":"NTDDI_WIN10_MN","features":[32]},{"name":"NTDDI_WIN10_NI","features":[32]},{"name":"NTDDI_WIN10_RS1","features":[32]},{"name":"NTDDI_WIN10_RS2","features":[32]},{"name":"NTDDI_WIN10_RS3","features":[32]},{"name":"NTDDI_WIN10_RS4","features":[32]},{"name":"NTDDI_WIN10_RS5","features":[32]},{"name":"NTDDI_WIN10_TH2","features":[32]},{"name":"NTDDI_WIN10_VB","features":[32]},{"name":"NTDDI_WIN2K","features":[32]},{"name":"NTDDI_WIN2KSP1","features":[32]},{"name":"NTDDI_WIN2KSP2","features":[32]},{"name":"NTDDI_WIN2KSP3","features":[32]},{"name":"NTDDI_WIN2KSP4","features":[32]},{"name":"NTDDI_WIN4","features":[32]},{"name":"NTDDI_WIN6","features":[32]},{"name":"NTDDI_WIN6SP1","features":[32]},{"name":"NTDDI_WIN6SP2","features":[32]},{"name":"NTDDI_WIN6SP3","features":[32]},{"name":"NTDDI_WIN6SP4","features":[32]},{"name":"NTDDI_WIN7","features":[32]},{"name":"NTDDI_WIN8","features":[32]},{"name":"NTDDI_WINBLUE","features":[32]},{"name":"NTDDI_WINTHRESHOLD","features":[32]},{"name":"NTDDI_WINXP","features":[32]},{"name":"NTDDI_WINXPSP1","features":[32]},{"name":"NTDDI_WINXPSP2","features":[32]},{"name":"NTDDI_WINXPSP3","features":[32]},{"name":"NTDDI_WINXPSP4","features":[32]},{"name":"NTDDI_WS03","features":[32]},{"name":"NTDDI_WS03SP1","features":[32]},{"name":"NTDDI_WS03SP2","features":[32]},{"name":"NTDDI_WS03SP3","features":[32]},{"name":"NTDDI_WS03SP4","features":[32]},{"name":"NTDDI_WS08","features":[32]},{"name":"NTDDI_WS08SP2","features":[32]},{"name":"NTDDI_WS08SP3","features":[32]},{"name":"NTDDI_WS08SP4","features":[32]},{"name":"NUMA_NODE_RELATIONSHIP","features":[32]},{"name":"OSVERSIONINFOA","features":[32]},{"name":"OSVERSIONINFOEXA","features":[32]},{"name":"OSVERSIONINFOEXW","features":[32]},{"name":"OSVERSIONINFOW","features":[32]},{"name":"OSVERSION_MASK","features":[32]},{"name":"OS_DEPLOYEMENT_STATE_VALUES","features":[32]},{"name":"OS_DEPLOYMENT_COMPACT","features":[32]},{"name":"OS_DEPLOYMENT_STANDARD","features":[32]},{"name":"OS_PRODUCT_TYPE","features":[32]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_A","features":[32]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_W","features":[32]},{"name":"PROCESSOR_ARCHITECTURE","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA64","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_AMD64","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_ARM","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_ARM32_ON_WIN64","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_ARM64","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_ARM64","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_WIN64","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_IA64","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_INTEL","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_MIPS","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_MSIL","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_NEUTRAL","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_PPC","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_SHX","features":[32]},{"name":"PROCESSOR_ARCHITECTURE_UNKNOWN","features":[32]},{"name":"PROCESSOR_CACHE_TYPE","features":[32]},{"name":"PROCESSOR_GROUP_INFO","features":[32]},{"name":"PROCESSOR_RELATIONSHIP","features":[32]},{"name":"PRODUCT_BUSINESS","features":[32]},{"name":"PRODUCT_BUSINESS_N","features":[32]},{"name":"PRODUCT_CLUSTER_SERVER","features":[32]},{"name":"PRODUCT_CLUSTER_SERVER_V","features":[32]},{"name":"PRODUCT_CORE","features":[32]},{"name":"PRODUCT_CORE_COUNTRYSPECIFIC","features":[32]},{"name":"PRODUCT_CORE_N","features":[32]},{"name":"PRODUCT_CORE_SINGLELANGUAGE","features":[32]},{"name":"PRODUCT_DATACENTER_A_SERVER_CORE","features":[32]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER","features":[32]},{"name":"PRODUCT_DATACENTER_SERVER","features":[32]},{"name":"PRODUCT_DATACENTER_SERVER_CORE","features":[32]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_V","features":[32]},{"name":"PRODUCT_DATACENTER_SERVER_V","features":[32]},{"name":"PRODUCT_EDUCATION","features":[32]},{"name":"PRODUCT_EDUCATION_N","features":[32]},{"name":"PRODUCT_ENTERPRISE","features":[32]},{"name":"PRODUCT_ENTERPRISE_E","features":[32]},{"name":"PRODUCT_ENTERPRISE_EVALUATION","features":[32]},{"name":"PRODUCT_ENTERPRISE_N","features":[32]},{"name":"PRODUCT_ENTERPRISE_N_EVALUATION","features":[32]},{"name":"PRODUCT_ENTERPRISE_S","features":[32]},{"name":"PRODUCT_ENTERPRISE_SERVER","features":[32]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE","features":[32]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE_V","features":[32]},{"name":"PRODUCT_ENTERPRISE_SERVER_IA64","features":[32]},{"name":"PRODUCT_ENTERPRISE_SERVER_V","features":[32]},{"name":"PRODUCT_ENTERPRISE_S_EVALUATION","features":[32]},{"name":"PRODUCT_ENTERPRISE_S_N","features":[32]},{"name":"PRODUCT_ENTERPRISE_S_N_EVALUATION","features":[32]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDL","features":[32]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDLSVC","features":[32]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMT","features":[32]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMTSVC","features":[32]},{"name":"PRODUCT_HOME_BASIC","features":[32]},{"name":"PRODUCT_HOME_BASIC_E","features":[32]},{"name":"PRODUCT_HOME_BASIC_N","features":[32]},{"name":"PRODUCT_HOME_PREMIUM","features":[32]},{"name":"PRODUCT_HOME_PREMIUM_E","features":[32]},{"name":"PRODUCT_HOME_PREMIUM_N","features":[32]},{"name":"PRODUCT_HOME_PREMIUM_SERVER","features":[32]},{"name":"PRODUCT_HOME_SERVER","features":[32]},{"name":"PRODUCT_HYPERV","features":[32]},{"name":"PRODUCT_IOTUAP","features":[32]},{"name":"PRODUCT_IOTUAPCOMMERCIAL","features":[32]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MANAGEMENT","features":[32]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING","features":[32]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_SECURITY","features":[32]},{"name":"PRODUCT_MOBILE_CORE","features":[32]},{"name":"PRODUCT_MOBILE_ENTERPRISE","features":[32]},{"name":"PRODUCT_MULTIPOINT_PREMIUM_SERVER","features":[32]},{"name":"PRODUCT_MULTIPOINT_STANDARD_SERVER","features":[32]},{"name":"PRODUCT_PROFESSIONAL","features":[32]},{"name":"PRODUCT_PROFESSIONAL_E","features":[32]},{"name":"PRODUCT_PROFESSIONAL_N","features":[32]},{"name":"PRODUCT_PROFESSIONAL_WMC","features":[32]},{"name":"PRODUCT_PRO_WORKSTATION","features":[32]},{"name":"PRODUCT_PRO_WORKSTATION_N","features":[32]},{"name":"PRODUCT_SB_SOLUTION_SERVER","features":[32]},{"name":"PRODUCT_SB_SOLUTION_SERVER_EM","features":[32]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS","features":[32]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS_EM","features":[32]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS","features":[32]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS_V","features":[32]},{"name":"PRODUCT_SERVER_FOUNDATION","features":[32]},{"name":"PRODUCT_SMALLBUSINESS_SERVER","features":[32]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM","features":[32]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM_CORE","features":[32]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER","features":[32]},{"name":"PRODUCT_STANDARD_A_SERVER_CORE","features":[32]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER","features":[32]},{"name":"PRODUCT_STANDARD_SERVER","features":[32]},{"name":"PRODUCT_STANDARD_SERVER_CORE_","features":[32]},{"name":"PRODUCT_STANDARD_SERVER_CORE_V","features":[32]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS","features":[32]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS_CORE","features":[32]},{"name":"PRODUCT_STANDARD_SERVER_V","features":[32]},{"name":"PRODUCT_STARTER","features":[32]},{"name":"PRODUCT_STARTER_E","features":[32]},{"name":"PRODUCT_STARTER_N","features":[32]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER","features":[32]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER_CORE","features":[32]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER","features":[32]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER_CORE","features":[32]},{"name":"PRODUCT_STORAGE_STANDARD_EVALUATION_SERVER","features":[32]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER","features":[32]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER_CORE","features":[32]},{"name":"PRODUCT_STORAGE_WORKGROUP_EVALUATION_SERVER","features":[32]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER","features":[32]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER_CORE","features":[32]},{"name":"PRODUCT_ULTIMATE","features":[32]},{"name":"PRODUCT_ULTIMATE_E","features":[32]},{"name":"PRODUCT_ULTIMATE_N","features":[32]},{"name":"PRODUCT_UNDEFINED","features":[32]},{"name":"PRODUCT_WEB_SERVER","features":[32]},{"name":"PRODUCT_WEB_SERVER_CORE","features":[32]},{"name":"RSMB","features":[32]},{"name":"RTL_SYSTEM_GLOBAL_DATA_ID","features":[32]},{"name":"RelationAll","features":[32]},{"name":"RelationCache","features":[32]},{"name":"RelationGroup","features":[32]},{"name":"RelationNumaNode","features":[32]},{"name":"RelationNumaNodeEx","features":[32]},{"name":"RelationProcessorCore","features":[32]},{"name":"RelationProcessorDie","features":[32]},{"name":"RelationProcessorModule","features":[32]},{"name":"RelationProcessorPackage","features":[32]},{"name":"RtlConvertDeviceFamilyInfoToString","features":[32]},{"name":"RtlGetDeviceFamilyInfoEnum","features":[32]},{"name":"RtlGetProductInfo","features":[1,32]},{"name":"RtlGetSystemGlobalData","features":[32]},{"name":"RtlOsDeploymentState","features":[32]},{"name":"RtlSwitchedVVI","features":[32]},{"name":"SCEX2_ALT_NETBIOS_NAME","features":[32]},{"name":"SPVERSION_MASK","features":[32]},{"name":"SUBVERSION_MASK","features":[32]},{"name":"SYSTEM_CPU_SET_INFORMATION","features":[32]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED","features":[32]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED_TO_TARGET_PROCESS","features":[32]},{"name":"SYSTEM_CPU_SET_INFORMATION_PARKED","features":[32]},{"name":"SYSTEM_CPU_SET_INFORMATION_REALTIME","features":[32]},{"name":"SYSTEM_INFO","features":[32]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION","features":[32]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX","features":[32]},{"name":"SYSTEM_POOL_ZEROING_INFORMATION","features":[1,32]},{"name":"SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION","features":[32]},{"name":"SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION","features":[32]},{"name":"SetComputerNameA","features":[1,32]},{"name":"SetComputerNameEx2W","features":[1,32]},{"name":"SetComputerNameExA","features":[1,32]},{"name":"SetComputerNameExW","features":[1,32]},{"name":"SetComputerNameW","features":[1,32]},{"name":"SetLocalTime","features":[1,32]},{"name":"SetSystemTime","features":[1,32]},{"name":"SetSystemTimeAdjustment","features":[1,32]},{"name":"SetSystemTimeAdjustmentPrecise","features":[1,32]},{"name":"USER_CET_ENVIRONMENT","features":[32]},{"name":"USER_CET_ENVIRONMENT_SGX2_ENCLAVE","features":[32]},{"name":"USER_CET_ENVIRONMENT_VBS_BASIC_ENCLAVE","features":[32]},{"name":"USER_CET_ENVIRONMENT_VBS_ENCLAVE","features":[32]},{"name":"USER_CET_ENVIRONMENT_WIN32_PROCESS","features":[32]},{"name":"VER_BUILDNUMBER","features":[32]},{"name":"VER_FLAGS","features":[32]},{"name":"VER_MAJORVERSION","features":[32]},{"name":"VER_MINORVERSION","features":[32]},{"name":"VER_PLATFORMID","features":[32]},{"name":"VER_PRODUCT_TYPE","features":[32]},{"name":"VER_SERVICEPACKMAJOR","features":[32]},{"name":"VER_SERVICEPACKMINOR","features":[32]},{"name":"VER_SUITENAME","features":[32]},{"name":"VerSetConditionMask","features":[32]},{"name":"VerifyVersionInfoA","features":[1,32]},{"name":"VerifyVersionInfoW","features":[1,32]},{"name":"WDK_NTDDI_VERSION","features":[32]},{"name":"_WIN32_IE_IE100","features":[32]},{"name":"_WIN32_IE_IE110","features":[32]},{"name":"_WIN32_IE_IE20","features":[32]},{"name":"_WIN32_IE_IE30","features":[32]},{"name":"_WIN32_IE_IE302","features":[32]},{"name":"_WIN32_IE_IE40","features":[32]},{"name":"_WIN32_IE_IE401","features":[32]},{"name":"_WIN32_IE_IE50","features":[32]},{"name":"_WIN32_IE_IE501","features":[32]},{"name":"_WIN32_IE_IE55","features":[32]},{"name":"_WIN32_IE_IE60","features":[32]},{"name":"_WIN32_IE_IE60SP1","features":[32]},{"name":"_WIN32_IE_IE60SP2","features":[32]},{"name":"_WIN32_IE_IE70","features":[32]},{"name":"_WIN32_IE_IE80","features":[32]},{"name":"_WIN32_IE_IE90","features":[32]},{"name":"_WIN32_IE_LONGHORN","features":[32]},{"name":"_WIN32_IE_NT4","features":[32]},{"name":"_WIN32_IE_NT4SP1","features":[32]},{"name":"_WIN32_IE_NT4SP2","features":[32]},{"name":"_WIN32_IE_NT4SP3","features":[32]},{"name":"_WIN32_IE_NT4SP4","features":[32]},{"name":"_WIN32_IE_NT4SP5","features":[32]},{"name":"_WIN32_IE_NT4SP6","features":[32]},{"name":"_WIN32_IE_WIN10","features":[32]},{"name":"_WIN32_IE_WIN2K","features":[32]},{"name":"_WIN32_IE_WIN2KSP1","features":[32]},{"name":"_WIN32_IE_WIN2KSP2","features":[32]},{"name":"_WIN32_IE_WIN2KSP3","features":[32]},{"name":"_WIN32_IE_WIN2KSP4","features":[32]},{"name":"_WIN32_IE_WIN6","features":[32]},{"name":"_WIN32_IE_WIN7","features":[32]},{"name":"_WIN32_IE_WIN8","features":[32]},{"name":"_WIN32_IE_WIN98","features":[32]},{"name":"_WIN32_IE_WIN98SE","features":[32]},{"name":"_WIN32_IE_WINBLUE","features":[32]},{"name":"_WIN32_IE_WINME","features":[32]},{"name":"_WIN32_IE_WINTHRESHOLD","features":[32]},{"name":"_WIN32_IE_WS03","features":[32]},{"name":"_WIN32_IE_WS03SP1","features":[32]},{"name":"_WIN32_IE_XP","features":[32]},{"name":"_WIN32_IE_XPSP1","features":[32]},{"name":"_WIN32_IE_XPSP2","features":[32]},{"name":"_WIN32_WINNT_LONGHORN","features":[32]},{"name":"_WIN32_WINNT_NT4","features":[32]},{"name":"_WIN32_WINNT_VISTA","features":[32]},{"name":"_WIN32_WINNT_WIN10","features":[32]},{"name":"_WIN32_WINNT_WIN2K","features":[32]},{"name":"_WIN32_WINNT_WIN6","features":[32]},{"name":"_WIN32_WINNT_WIN7","features":[32]},{"name":"_WIN32_WINNT_WIN8","features":[32]},{"name":"_WIN32_WINNT_WINBLUE","features":[32]},{"name":"_WIN32_WINNT_WINTHRESHOLD","features":[32]},{"name":"_WIN32_WINNT_WINXP","features":[32]},{"name":"_WIN32_WINNT_WS03","features":[32]},{"name":"_WIN32_WINNT_WS08","features":[32]}],"614":[{"name":"ACCESS_ALLOWED_ACE_TYPE","features":[36]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE_TYPE","features":[36]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE_TYPE","features":[36]},{"name":"ACCESS_ALLOWED_COMPOUND_ACE_TYPE","features":[36]},{"name":"ACCESS_ALLOWED_OBJECT_ACE_TYPE","features":[36]},{"name":"ACCESS_DENIED_ACE_TYPE","features":[36]},{"name":"ACCESS_DENIED_CALLBACK_ACE_TYPE","features":[36]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE_TYPE","features":[36]},{"name":"ACCESS_DENIED_OBJECT_ACE_TYPE","features":[36]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_A","features":[36]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_W","features":[36]},{"name":"ACCESS_DS_SOURCE_A","features":[36]},{"name":"ACCESS_DS_SOURCE_W","features":[36]},{"name":"ACCESS_FILTER_SECURITY_INFORMATION","features":[36]},{"name":"ACCESS_MAX_LEVEL","features":[36]},{"name":"ACCESS_MAX_MS_ACE_TYPE","features":[36]},{"name":"ACCESS_MAX_MS_OBJECT_ACE_TYPE","features":[36]},{"name":"ACCESS_MAX_MS_V2_ACE_TYPE","features":[36]},{"name":"ACCESS_MAX_MS_V3_ACE_TYPE","features":[36]},{"name":"ACCESS_MAX_MS_V4_ACE_TYPE","features":[36]},{"name":"ACCESS_MAX_MS_V5_ACE_TYPE","features":[36]},{"name":"ACCESS_MIN_MS_ACE_TYPE","features":[36]},{"name":"ACCESS_MIN_MS_OBJECT_ACE_TYPE","features":[36]},{"name":"ACCESS_OBJECT_GUID","features":[36]},{"name":"ACCESS_PROPERTY_GUID","features":[36]},{"name":"ACCESS_PROPERTY_SET_GUID","features":[36]},{"name":"ACCESS_REASON_DATA_MASK","features":[36]},{"name":"ACCESS_REASON_EXDATA_MASK","features":[36]},{"name":"ACCESS_REASON_STAGING_MASK","features":[36]},{"name":"ACCESS_REASON_TYPE","features":[36]},{"name":"ACCESS_REASON_TYPE_MASK","features":[36]},{"name":"ACCESS_SYSTEM_SECURITY","features":[36]},{"name":"ACL_REVISION1","features":[36]},{"name":"ACL_REVISION2","features":[36]},{"name":"ACL_REVISION3","features":[36]},{"name":"ACL_REVISION4","features":[36]},{"name":"ACPI_PPM_HARDWARE_ALL","features":[36]},{"name":"ACPI_PPM_SOFTWARE_ALL","features":[36]},{"name":"ACPI_PPM_SOFTWARE_ANY","features":[36]},{"name":"ACTIVATION_CONTEXT_INFO_CLASS","features":[36]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF","features":[36]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_NONE","features":[36]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_URL","features":[36]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_APPLICATION_SETTINGS","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_COMPATIBILITY_INFO","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION","features":[36]},{"name":"ACTIVATION_CONTEXT_SECTION_WINRT_ACTIVATABLE_CLASSES","features":[36]},{"name":"ALERT_SYSTEM_CRITICAL","features":[36]},{"name":"ALERT_SYSTEM_ERROR","features":[36]},{"name":"ALERT_SYSTEM_INFORMATIONAL","features":[36]},{"name":"ALERT_SYSTEM_QUERY","features":[36]},{"name":"ALERT_SYSTEM_SEV","features":[36]},{"name":"ALERT_SYSTEM_WARNING","features":[36]},{"name":"ALL_POWERSCHEMES_GUID","features":[36]},{"name":"ANON_OBJECT_HEADER","features":[36]},{"name":"ANON_OBJECT_HEADER_BIGOBJ","features":[36]},{"name":"ANON_OBJECT_HEADER_V2","features":[36]},{"name":"ANYSIZE_ARRAY","features":[36]},{"name":"APPCOMMAND_BASS_BOOST","features":[36]},{"name":"APPCOMMAND_BASS_DOWN","features":[36]},{"name":"APPCOMMAND_BASS_UP","features":[36]},{"name":"APPCOMMAND_BROWSER_BACKWARD","features":[36]},{"name":"APPCOMMAND_BROWSER_FAVORITES","features":[36]},{"name":"APPCOMMAND_BROWSER_FORWARD","features":[36]},{"name":"APPCOMMAND_BROWSER_HOME","features":[36]},{"name":"APPCOMMAND_BROWSER_REFRESH","features":[36]},{"name":"APPCOMMAND_BROWSER_SEARCH","features":[36]},{"name":"APPCOMMAND_BROWSER_STOP","features":[36]},{"name":"APPCOMMAND_CLOSE","features":[36]},{"name":"APPCOMMAND_COPY","features":[36]},{"name":"APPCOMMAND_CORRECTION_LIST","features":[36]},{"name":"APPCOMMAND_CUT","features":[36]},{"name":"APPCOMMAND_DELETE","features":[36]},{"name":"APPCOMMAND_DICTATE_OR_COMMAND_CONTROL_TOGGLE","features":[36]},{"name":"APPCOMMAND_DWM_FLIP3D","features":[36]},{"name":"APPCOMMAND_FIND","features":[36]},{"name":"APPCOMMAND_FORWARD_MAIL","features":[36]},{"name":"APPCOMMAND_HELP","features":[36]},{"name":"APPCOMMAND_ID","features":[36]},{"name":"APPCOMMAND_LAUNCH_APP1","features":[36]},{"name":"APPCOMMAND_LAUNCH_APP2","features":[36]},{"name":"APPCOMMAND_LAUNCH_MAIL","features":[36]},{"name":"APPCOMMAND_LAUNCH_MEDIA_SELECT","features":[36]},{"name":"APPCOMMAND_MEDIA_CHANNEL_DOWN","features":[36]},{"name":"APPCOMMAND_MEDIA_CHANNEL_UP","features":[36]},{"name":"APPCOMMAND_MEDIA_FAST_FORWARD","features":[36]},{"name":"APPCOMMAND_MEDIA_NEXTTRACK","features":[36]},{"name":"APPCOMMAND_MEDIA_PAUSE","features":[36]},{"name":"APPCOMMAND_MEDIA_PLAY","features":[36]},{"name":"APPCOMMAND_MEDIA_PLAY_PAUSE","features":[36]},{"name":"APPCOMMAND_MEDIA_PREVIOUSTRACK","features":[36]},{"name":"APPCOMMAND_MEDIA_RECORD","features":[36]},{"name":"APPCOMMAND_MEDIA_REWIND","features":[36]},{"name":"APPCOMMAND_MEDIA_STOP","features":[36]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_DOWN","features":[36]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_MUTE","features":[36]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_UP","features":[36]},{"name":"APPCOMMAND_MIC_ON_OFF_TOGGLE","features":[36]},{"name":"APPCOMMAND_NEW","features":[36]},{"name":"APPCOMMAND_OPEN","features":[36]},{"name":"APPCOMMAND_PASTE","features":[36]},{"name":"APPCOMMAND_PRINT","features":[36]},{"name":"APPCOMMAND_REDO","features":[36]},{"name":"APPCOMMAND_REPLY_TO_MAIL","features":[36]},{"name":"APPCOMMAND_SAVE","features":[36]},{"name":"APPCOMMAND_SEND_MAIL","features":[36]},{"name":"APPCOMMAND_SPELL_CHECK","features":[36]},{"name":"APPCOMMAND_TREBLE_DOWN","features":[36]},{"name":"APPCOMMAND_TREBLE_UP","features":[36]},{"name":"APPCOMMAND_UNDO","features":[36]},{"name":"APPCOMMAND_VOLUME_DOWN","features":[36]},{"name":"APPCOMMAND_VOLUME_MUTE","features":[36]},{"name":"APPCOMMAND_VOLUME_UP","features":[36]},{"name":"APPLICATIONLAUNCH_SETTING_VALUE","features":[36]},{"name":"APPLICATION_ERROR_MASK","features":[36]},{"name":"ARM64_FNPDATA_CR","features":[36]},{"name":"ARM64_FNPDATA_FLAGS","features":[36]},{"name":"ARM64_MAX_BREAKPOINTS","features":[36]},{"name":"ARM64_MAX_WATCHPOINTS","features":[36]},{"name":"ARM64_MULT_INTRINSICS_SUPPORTED","features":[36]},{"name":"ARM64_PREFETCH_KEEP","features":[36]},{"name":"ARM64_PREFETCH_L1","features":[36]},{"name":"ARM64_PREFETCH_L2","features":[36]},{"name":"ARM64_PREFETCH_L3","features":[36]},{"name":"ARM64_PREFETCH_PLD","features":[36]},{"name":"ARM64_PREFETCH_PLI","features":[36]},{"name":"ARM64_PREFETCH_PST","features":[36]},{"name":"ARM64_PREFETCH_STRM","features":[36]},{"name":"ARM_CACHE_ALIGNMENT_SIZE","features":[36]},{"name":"ARM_MAX_BREAKPOINTS","features":[36]},{"name":"ARM_MAX_WATCHPOINTS","features":[36]},{"name":"ASSERT_BREAKPOINT","features":[36]},{"name":"ATF_FLAGS","features":[36]},{"name":"ATF_ONOFFFEEDBACK","features":[36]},{"name":"ATF_TIMEOUTON","features":[36]},{"name":"AUDIT_ALLOW_NO_PRIVILEGE","features":[36]},{"name":"AccessReasonAllowedAce","features":[36]},{"name":"AccessReasonAllowedParentAce","features":[36]},{"name":"AccessReasonDeniedAce","features":[36]},{"name":"AccessReasonDeniedParentAce","features":[36]},{"name":"AccessReasonEmptyDacl","features":[36]},{"name":"AccessReasonFilterAce","features":[36]},{"name":"AccessReasonFromPrivilege","features":[36]},{"name":"AccessReasonIntegrityLevel","features":[36]},{"name":"AccessReasonMissingPrivilege","features":[36]},{"name":"AccessReasonNoGrant","features":[36]},{"name":"AccessReasonNoSD","features":[36]},{"name":"AccessReasonNone","features":[36]},{"name":"AccessReasonNotGrantedByCape","features":[36]},{"name":"AccessReasonNotGrantedByParentCape","features":[36]},{"name":"AccessReasonNotGrantedToAppContainer","features":[36]},{"name":"AccessReasonNullDacl","features":[36]},{"name":"AccessReasonOwnership","features":[36]},{"name":"AccessReasonTrustLabel","features":[36]},{"name":"ActivationContextBasicInformation","features":[36]},{"name":"ActivationContextDetailedInformation","features":[36]},{"name":"ActivationContextManifestResourceName","features":[36]},{"name":"AdapterType","features":[36]},{"name":"AssemblyDetailedInformationInActivationContext","features":[36]},{"name":"AssemblyDetailedInformationInActivationContxt","features":[36]},{"name":"AutoLoad","features":[36]},{"name":"BATTERY_DISCHARGE_FLAGS_ENABLE","features":[36]},{"name":"BATTERY_DISCHARGE_FLAGS_EVENTCODE_MASK","features":[36]},{"name":"BREAK_DEBUG_BASE","features":[36]},{"name":"BootLoad","features":[36]},{"name":"CACHE_FULLY_ASSOCIATIVE","features":[36]},{"name":"CFE_UNDERLINE","features":[36]},{"name":"CFG_CALL_TARGET_CONVERT_EXPORT_SUPPRESSED_TO_VALID","features":[36]},{"name":"CFG_CALL_TARGET_CONVERT_XFG_TO_CFG","features":[36]},{"name":"CFG_CALL_TARGET_PROCESSED","features":[36]},{"name":"CFG_CALL_TARGET_VALID","features":[36]},{"name":"CFG_CALL_TARGET_VALID_XFG","features":[36]},{"name":"CFU_CF1UNDERLINE","features":[36]},{"name":"CFU_INVERT","features":[36]},{"name":"CFU_UNDERLINE","features":[36]},{"name":"CFU_UNDERLINEDASH","features":[36]},{"name":"CFU_UNDERLINEDASHDOT","features":[36]},{"name":"CFU_UNDERLINEDASHDOTDOT","features":[36]},{"name":"CFU_UNDERLINEDOTTED","features":[36]},{"name":"CFU_UNDERLINEDOUBLE","features":[36]},{"name":"CFU_UNDERLINEDOUBLEWAVE","features":[36]},{"name":"CFU_UNDERLINEHAIRLINE","features":[36]},{"name":"CFU_UNDERLINEHEAVYWAVE","features":[36]},{"name":"CFU_UNDERLINELONGDASH","features":[36]},{"name":"CFU_UNDERLINENONE","features":[36]},{"name":"CFU_UNDERLINETHICK","features":[36]},{"name":"CFU_UNDERLINETHICKDASH","features":[36]},{"name":"CFU_UNDERLINETHICKDASHDOT","features":[36]},{"name":"CFU_UNDERLINETHICKDASHDOTDOT","features":[36]},{"name":"CFU_UNDERLINETHICKDOTTED","features":[36]},{"name":"CFU_UNDERLINETHICKLONGDASH","features":[36]},{"name":"CFU_UNDERLINEWAVE","features":[36]},{"name":"CFU_UNDERLINEWORD","features":[36]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[36]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[36]},{"name":"CLAIM_SECURITY_ATTRIBUTE_CUSTOM_FLAGS","features":[36]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[36]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_NETWORK_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_RAM_DISK_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_SD_DISK_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_USB3_DISK_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_USB_DISK_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_VERIFIER_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD","features":[36]},{"name":"CM_SERVICE_WINPE_BOOT_LOAD","features":[36]},{"name":"COMIMAGE_FLAGS_32BITPREFERRED","features":[36]},{"name":"COMIMAGE_FLAGS_32BITREQUIRED","features":[36]},{"name":"COMIMAGE_FLAGS_ILONLY","features":[36]},{"name":"COMIMAGE_FLAGS_IL_LIBRARY","features":[36]},{"name":"COMIMAGE_FLAGS_NATIVE_ENTRYPOINT","features":[36]},{"name":"COMIMAGE_FLAGS_STRONGNAMESIGNED","features":[36]},{"name":"COMIMAGE_FLAGS_TRACKDEBUGDATA","features":[36]},{"name":"COMPONENT_FILTER","features":[36]},{"name":"COMPONENT_KTM","features":[36]},{"name":"COMPONENT_VALID_FLAGS","features":[36]},{"name":"COMPRESSION_ENGINE_HIBER","features":[36]},{"name":"COMPRESSION_ENGINE_MAXIMUM","features":[36]},{"name":"COMPRESSION_ENGINE_STANDARD","features":[36]},{"name":"CORE_PARKING_POLICY_CHANGE_IDEAL","features":[36]},{"name":"CORE_PARKING_POLICY_CHANGE_MAX","features":[36]},{"name":"CORE_PARKING_POLICY_CHANGE_MULTISTEP","features":[36]},{"name":"CORE_PARKING_POLICY_CHANGE_ROCKET","features":[36]},{"name":"CORE_PARKING_POLICY_CHANGE_SINGLE","features":[36]},{"name":"COR_DELETED_NAME_LENGTH","features":[36]},{"name":"COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE","features":[36]},{"name":"COR_VERSION_MAJOR","features":[36]},{"name":"COR_VERSION_MAJOR_V2","features":[36]},{"name":"COR_VERSION_MINOR","features":[36]},{"name":"COR_VTABLEGAP_NAME_LENGTH","features":[36]},{"name":"COR_VTABLE_32BIT","features":[36]},{"name":"COR_VTABLE_64BIT","features":[36]},{"name":"COR_VTABLE_CALL_MOST_DERIVED","features":[36]},{"name":"COR_VTABLE_FROM_UNMANAGED","features":[36]},{"name":"COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN","features":[36]},{"name":"CREATE_BOUNDARY_DESCRIPTOR_ADD_APPCONTAINER_SID","features":[36]},{"name":"CRITICAL_ACE_FLAG","features":[36]},{"name":"CTMF_INCLUDE_APPCONTAINER","features":[36]},{"name":"CTMF_INCLUDE_LPAC","features":[36]},{"name":"CompatibilityInformationInActivationContext","features":[36]},{"name":"CriticalError","features":[36]},{"name":"DECIMAL_NEG","features":[36]},{"name":"DEDICATED_MEMORY_CACHE_ELIGIBLE","features":[36]},{"name":"DEVICEFAMILYDEVICEFORM_KEY","features":[36]},{"name":"DEVICEFAMILYDEVICEFORM_VALUE","features":[36]},{"name":"DIAGNOSTIC_REASON_DETAILED_STRING","features":[36]},{"name":"DIAGNOSTIC_REASON_NOT_SPECIFIED","features":[36]},{"name":"DIAGNOSTIC_REASON_SIMPLE_STRING","features":[36]},{"name":"DIAGNOSTIC_REASON_VERSION","features":[36]},{"name":"DISCHARGE_POLICY_CRITICAL","features":[36]},{"name":"DISCHARGE_POLICY_LOW","features":[36]},{"name":"DISPATCHER_CONTEXT_NONVOLREG_ARM64","features":[36]},{"name":"DLL_PROCESS_ATTACH","features":[36]},{"name":"DLL_PROCESS_DETACH","features":[36]},{"name":"DLL_THREAD_ATTACH","features":[36]},{"name":"DLL_THREAD_DETACH","features":[36]},{"name":"DOMAIN_ALIAS_RID_ACCESS_CONTROL_ASSISTANCE_OPS","features":[36]},{"name":"DOMAIN_ALIAS_RID_ACCOUNT_OPS","features":[36]},{"name":"DOMAIN_ALIAS_RID_ADMINS","features":[36]},{"name":"DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS","features":[36]},{"name":"DOMAIN_ALIAS_RID_BACKUP_OPS","features":[36]},{"name":"DOMAIN_ALIAS_RID_CACHEABLE_PRINCIPALS_GROUP","features":[36]},{"name":"DOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP","features":[36]},{"name":"DOMAIN_ALIAS_RID_CRYPTO_OPERATORS","features":[36]},{"name":"DOMAIN_ALIAS_RID_DCOM_USERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_DEFAULT_ACCOUNT","features":[36]},{"name":"DOMAIN_ALIAS_RID_DEVICE_OWNERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP","features":[36]},{"name":"DOMAIN_ALIAS_RID_GUESTS","features":[36]},{"name":"DOMAIN_ALIAS_RID_HYPER_V_ADMINS","features":[36]},{"name":"DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_IUSERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_LOGGING_USERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_MONITORING_USERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS","features":[36]},{"name":"DOMAIN_ALIAS_RID_NON_CACHEABLE_PRINCIPALS_GROUP","features":[36]},{"name":"DOMAIN_ALIAS_RID_POWER_USERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_PREW2KCOMPACCESS","features":[36]},{"name":"DOMAIN_ALIAS_RID_PRINT_OPS","features":[36]},{"name":"DOMAIN_ALIAS_RID_RAS_SERVERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_RDS_ENDPOINT_SERVERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_RDS_MANAGEMENT_SERVERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_RDS_REMOTE_ACCESS_SERVERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_REMOTE_MANAGEMENT_USERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_REPLICATOR","features":[36]},{"name":"DOMAIN_ALIAS_RID_STORAGE_REPLICA_ADMINS","features":[36]},{"name":"DOMAIN_ALIAS_RID_SYSTEM_OPS","features":[36]},{"name":"DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS","features":[36]},{"name":"DOMAIN_ALIAS_RID_USERS","features":[36]},{"name":"DOMAIN_GROUP_RID_ADMINS","features":[36]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_CONTAINS_CLAIMS","features":[36]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_IS_COMPOUNDED","features":[36]},{"name":"DOMAIN_GROUP_RID_CDC_RESERVED","features":[36]},{"name":"DOMAIN_GROUP_RID_CERT_ADMINS","features":[36]},{"name":"DOMAIN_GROUP_RID_CLONEABLE_CONTROLLERS","features":[36]},{"name":"DOMAIN_GROUP_RID_COMPUTERS","features":[36]},{"name":"DOMAIN_GROUP_RID_CONTROLLERS","features":[36]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_ADMINS","features":[36]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_KEY_ADMINS","features":[36]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_READONLY_DOMAIN_CONTROLLERS","features":[36]},{"name":"DOMAIN_GROUP_RID_GUESTS","features":[36]},{"name":"DOMAIN_GROUP_RID_KEY_ADMINS","features":[36]},{"name":"DOMAIN_GROUP_RID_POLICY_ADMINS","features":[36]},{"name":"DOMAIN_GROUP_RID_PROTECTED_USERS","features":[36]},{"name":"DOMAIN_GROUP_RID_READONLY_CONTROLLERS","features":[36]},{"name":"DOMAIN_GROUP_RID_SCHEMA_ADMINS","features":[36]},{"name":"DOMAIN_GROUP_RID_USERS","features":[36]},{"name":"DOMAIN_USER_RID_ADMIN","features":[36]},{"name":"DOMAIN_USER_RID_DEFAULT_ACCOUNT","features":[36]},{"name":"DOMAIN_USER_RID_GUEST","features":[36]},{"name":"DOMAIN_USER_RID_KRBTGT","features":[36]},{"name":"DOMAIN_USER_RID_MAX","features":[36]},{"name":"DOMAIN_USER_RID_WDAG_ACCOUNT","features":[36]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_ADD","features":[36]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_PROCESSED","features":[36]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_ADD","features":[36]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_PROCESSED","features":[36]},{"name":"DemandLoad","features":[36]},{"name":"DisableLoad","features":[36]},{"name":"DriverType","features":[36]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_IC_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_IC_VAL_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41a_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41a_VAL_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41b_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41b_VAL_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41c_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM41c_VAL_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM5C_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM5C_VAL_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM7B_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM7B_VAL_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM9D_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_IMM9D_VAL_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_POS_X","features":[36]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_X","features":[36]},{"name":"EMARCH_ENC_I17_SIGN_SIZE_X","features":[36]},{"name":"EMARCH_ENC_I17_SIGN_VAL_POS_X","features":[36]},{"name":"ENCLAVE_LONG_ID_LENGTH","features":[36]},{"name":"ENCLAVE_SHORT_ID_LENGTH","features":[36]},{"name":"ENCLAVE_TYPE_SGX","features":[36]},{"name":"ENCLAVE_TYPE_SGX2","features":[36]},{"name":"ENCLAVE_TYPE_VBS","features":[36]},{"name":"ENCLAVE_TYPE_VBS_BASIC","features":[36]},{"name":"ENCLAVE_VBS_FLAG_DEBUG","features":[36]},{"name":"ENLISTMENT_BASIC_INFORMATION","features":[36]},{"name":"ENLISTMENT_CRM_INFORMATION","features":[36]},{"name":"ENLISTMENT_INFORMATION_CLASS","features":[36]},{"name":"ENLISTMENT_QUERY_INFORMATION","features":[36]},{"name":"ENLISTMENT_RECOVER","features":[36]},{"name":"ENLISTMENT_SET_INFORMATION","features":[36]},{"name":"ENLISTMENT_SUBORDINATE_RIGHTS","features":[36]},{"name":"ENLISTMENT_SUPERIOR_RIGHTS","features":[36]},{"name":"ERROR_SEVERITY_ERROR","features":[36]},{"name":"ERROR_SEVERITY_INFORMATIONAL","features":[36]},{"name":"ERROR_SEVERITY_SUCCESS","features":[36]},{"name":"ERROR_SEVERITY_WARNING","features":[36]},{"name":"EVENTLOG_BACKWARDS_READ","features":[36]},{"name":"EVENTLOG_END_ALL_PAIRED_EVENTS","features":[36]},{"name":"EVENTLOG_END_PAIRED_EVENT","features":[36]},{"name":"EVENTLOG_FORWARDS_READ","features":[36]},{"name":"EVENTLOG_PAIRED_EVENT_ACTIVE","features":[36]},{"name":"EVENTLOG_PAIRED_EVENT_INACTIVE","features":[36]},{"name":"EVENTLOG_START_PAIRED_EVENT","features":[36]},{"name":"EXCEPTION_COLLIDED_UNWIND","features":[36]},{"name":"EXCEPTION_EXECUTE_FAULT","features":[36]},{"name":"EXCEPTION_EXIT_UNWIND","features":[36]},{"name":"EXCEPTION_MAXIMUM_PARAMETERS","features":[36]},{"name":"EXCEPTION_NESTED_CALL","features":[36]},{"name":"EXCEPTION_NONCONTINUABLE","features":[36]},{"name":"EXCEPTION_READ_FAULT","features":[36]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[36]},{"name":"EXCEPTION_STACK_INVALID","features":[36]},{"name":"EXCEPTION_TARGET_UNWIND","features":[36]},{"name":"EXCEPTION_UNWINDING","features":[36]},{"name":"EXCEPTION_WRITE_FAULT","features":[36]},{"name":"EnlistmentBasicInformation","features":[36]},{"name":"EnlistmentCrmInformation","features":[36]},{"name":"EnlistmentRecoveryInformation","features":[36]},{"name":"FAST_FAIL_ADMINLESS_ACCESS_DENIED","features":[36]},{"name":"FAST_FAIL_APCS_DISABLED","features":[36]},{"name":"FAST_FAIL_CAST_GUARD","features":[36]},{"name":"FAST_FAIL_CERTIFICATION_FAILURE","features":[36]},{"name":"FAST_FAIL_CONTROL_INVALID_RETURN_ADDRESS","features":[36]},{"name":"FAST_FAIL_CORRUPT_LIST_ENTRY","features":[36]},{"name":"FAST_FAIL_CRYPTO_LIBRARY","features":[36]},{"name":"FAST_FAIL_DEPRECATED_SERVICE_INVOKED","features":[36]},{"name":"FAST_FAIL_DLOAD_PROTECTION_FAILURE","features":[36]},{"name":"FAST_FAIL_ENCLAVE_CALL_FAILURE","features":[36]},{"name":"FAST_FAIL_ETW_CORRUPTION","features":[36]},{"name":"FAST_FAIL_FATAL_APP_EXIT","features":[36]},{"name":"FAST_FAIL_FLAGS_CORRUPTION","features":[36]},{"name":"FAST_FAIL_GS_COOKIE_INIT","features":[36]},{"name":"FAST_FAIL_GUARD_EXPORT_SUPPRESSION_FAILURE","features":[36]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE","features":[36]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE_XFG","features":[36]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_SUPPRESSED","features":[36]},{"name":"FAST_FAIL_GUARD_JUMPTABLE","features":[36]},{"name":"FAST_FAIL_GUARD_SS_FAILURE","features":[36]},{"name":"FAST_FAIL_GUARD_WRITE_CHECK_FAILURE","features":[36]},{"name":"FAST_FAIL_HEAP_METADATA_CORRUPTION","features":[36]},{"name":"FAST_FAIL_HOST_VISIBILITY_CHANGE","features":[36]},{"name":"FAST_FAIL_INCORRECT_STACK","features":[36]},{"name":"FAST_FAIL_INVALID_ARG","features":[36]},{"name":"FAST_FAIL_INVALID_BALANCED_TREE","features":[36]},{"name":"FAST_FAIL_INVALID_BUFFER_ACCESS","features":[36]},{"name":"FAST_FAIL_INVALID_CALL_IN_DLL_CALLOUT","features":[36]},{"name":"FAST_FAIL_INVALID_CONTROL_STACK","features":[36]},{"name":"FAST_FAIL_INVALID_DISPATCH_CONTEXT","features":[36]},{"name":"FAST_FAIL_INVALID_EXCEPTION_CHAIN","features":[36]},{"name":"FAST_FAIL_INVALID_FAST_FAIL_CODE","features":[36]},{"name":"FAST_FAIL_INVALID_FIBER_SWITCH","features":[36]},{"name":"FAST_FAIL_INVALID_FILE_OPERATION","features":[36]},{"name":"FAST_FAIL_INVALID_FLS_DATA","features":[36]},{"name":"FAST_FAIL_INVALID_IAT","features":[36]},{"name":"FAST_FAIL_INVALID_IDLE_STATE","features":[36]},{"name":"FAST_FAIL_INVALID_IMAGE_BASE","features":[36]},{"name":"FAST_FAIL_INVALID_JUMP_BUFFER","features":[36]},{"name":"FAST_FAIL_INVALID_LOCK_STATE","features":[36]},{"name":"FAST_FAIL_INVALID_LONGJUMP_TARGET","features":[36]},{"name":"FAST_FAIL_INVALID_NEXT_THREAD","features":[36]},{"name":"FAST_FAIL_INVALID_PFN","features":[36]},{"name":"FAST_FAIL_INVALID_REFERENCE_COUNT","features":[36]},{"name":"FAST_FAIL_INVALID_SET_OF_CONTEXT","features":[36]},{"name":"FAST_FAIL_INVALID_SYSCALL_NUMBER","features":[36]},{"name":"FAST_FAIL_INVALID_THREAD","features":[36]},{"name":"FAST_FAIL_KERNEL_CET_SHADOW_STACK_ASSIST","features":[36]},{"name":"FAST_FAIL_LEGACY_GS_VIOLATION","features":[36]},{"name":"FAST_FAIL_LOADER_CONTINUITY_FAILURE","features":[36]},{"name":"FAST_FAIL_LOW_LABEL_ACCESS_DENIED","features":[36]},{"name":"FAST_FAIL_LPAC_ACCESS_DENIED","features":[36]},{"name":"FAST_FAIL_MRDATA_MODIFIED","features":[36]},{"name":"FAST_FAIL_MRDATA_PROTECTION_FAILURE","features":[36]},{"name":"FAST_FAIL_NTDLL_PATCH_FAILED","features":[36]},{"name":"FAST_FAIL_PATCH_CALLBACK_FAILED","features":[36]},{"name":"FAST_FAIL_PAYLOAD_RESTRICTION_VIOLATION","features":[36]},{"name":"FAST_FAIL_RANGE_CHECK_FAILURE","features":[36]},{"name":"FAST_FAIL_RIO_ABORT","features":[36]},{"name":"FAST_FAIL_SET_CONTEXT_DENIED","features":[36]},{"name":"FAST_FAIL_STACK_COOKIE_CHECK_FAILURE","features":[36]},{"name":"FAST_FAIL_UNEXPECTED_CALL","features":[36]},{"name":"FAST_FAIL_UNEXPECTED_HEAP_EXCEPTION","features":[36]},{"name":"FAST_FAIL_UNEXPECTED_HOST_BEHAVIOR","features":[36]},{"name":"FAST_FAIL_UNHANDLED_LSS_EXCEPTON","features":[36]},{"name":"FAST_FAIL_UNSAFE_EXTENSION_CALL","features":[36]},{"name":"FAST_FAIL_UNSAFE_REGISTRY_ACCESS","features":[36]},{"name":"FAST_FAIL_VEH_CORRUPTION","features":[36]},{"name":"FAST_FAIL_VTGUARD_CHECK_FAILURE","features":[36]},{"name":"FILE_ATTRIBUTE_STRICTLY_SEQUENTIAL","features":[36]},{"name":"FILE_CASE_PRESERVED_NAMES","features":[36]},{"name":"FILE_CASE_SENSITIVE_SEARCH","features":[36]},{"name":"FILE_CS_FLAG_CASE_SENSITIVE_DIR","features":[36]},{"name":"FILE_DAX_VOLUME","features":[36]},{"name":"FILE_FILE_COMPRESSION","features":[36]},{"name":"FILE_NAMED_STREAMS","features":[36]},{"name":"FILE_NAME_FLAGS_UNSPECIFIED","features":[36]},{"name":"FILE_NAME_FLAG_BOTH","features":[36]},{"name":"FILE_NAME_FLAG_DOS","features":[36]},{"name":"FILE_NAME_FLAG_HARDLINK","features":[36]},{"name":"FILE_NAME_FLAG_NTFS","features":[36]},{"name":"FILE_NOTIFY_FULL_INFORMATION","features":[36]},{"name":"FILE_PERSISTENT_ACLS","features":[36]},{"name":"FILE_READ_ONLY_VOLUME","features":[36]},{"name":"FILE_RETURNS_CLEANUP_RESULT_INFO","features":[36]},{"name":"FILE_SEQUENTIAL_WRITE_ONCE","features":[36]},{"name":"FILE_SUPPORTS_BLOCK_REFCOUNTING","features":[36]},{"name":"FILE_SUPPORTS_BYPASS_IO","features":[36]},{"name":"FILE_SUPPORTS_CASE_SENSITIVE_DIRS","features":[36]},{"name":"FILE_SUPPORTS_ENCRYPTION","features":[36]},{"name":"FILE_SUPPORTS_EXTENDED_ATTRIBUTES","features":[36]},{"name":"FILE_SUPPORTS_GHOSTING","features":[36]},{"name":"FILE_SUPPORTS_HARD_LINKS","features":[36]},{"name":"FILE_SUPPORTS_INTEGRITY_STREAMS","features":[36]},{"name":"FILE_SUPPORTS_OBJECT_IDS","features":[36]},{"name":"FILE_SUPPORTS_OPEN_BY_FILE_ID","features":[36]},{"name":"FILE_SUPPORTS_POSIX_UNLINK_RENAME","features":[36]},{"name":"FILE_SUPPORTS_REMOTE_STORAGE","features":[36]},{"name":"FILE_SUPPORTS_REPARSE_POINTS","features":[36]},{"name":"FILE_SUPPORTS_SPARSE_FILES","features":[36]},{"name":"FILE_SUPPORTS_SPARSE_VDL","features":[36]},{"name":"FILE_SUPPORTS_STREAM_SNAPSHOTS","features":[36]},{"name":"FILE_SUPPORTS_TRANSACTIONS","features":[36]},{"name":"FILE_SUPPORTS_USN_JOURNAL","features":[36]},{"name":"FILE_UNICODE_ON_DISK","features":[36]},{"name":"FILE_VOLUME_IS_COMPRESSED","features":[36]},{"name":"FILE_VOLUME_QUOTAS","features":[36]},{"name":"FILL_NV_MEMORY_FLAG_FLUSH","features":[36]},{"name":"FILL_NV_MEMORY_FLAG_NON_TEMPORAL","features":[36]},{"name":"FILL_NV_MEMORY_FLAG_NO_DRAIN","features":[36]},{"name":"FLS_MAXIMUM_AVAILABLE","features":[36]},{"name":"FLUSH_FLAGS_FILE_DATA_ONLY","features":[36]},{"name":"FLUSH_FLAGS_FILE_DATA_SYNC_ONLY","features":[36]},{"name":"FLUSH_FLAGS_NO_SYNC","features":[36]},{"name":"FLUSH_NV_MEMORY_IN_FLAG_NO_DRAIN","features":[36]},{"name":"FOREST_USER_RID_MAX","features":[36]},{"name":"FRAME_FPO","features":[36]},{"name":"FRAME_NONFPO","features":[36]},{"name":"FRAME_TRAP","features":[36]},{"name":"FRAME_TSS","features":[36]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContext","features":[36]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContxt","features":[36]},{"name":"FileSystemType","features":[36]},{"name":"GC_ALLGESTURES","features":[36]},{"name":"GC_PAN","features":[36]},{"name":"GC_PAN_WITH_GUTTER","features":[36]},{"name":"GC_PAN_WITH_INERTIA","features":[36]},{"name":"GC_PAN_WITH_SINGLE_FINGER_HORIZONTALLY","features":[36]},{"name":"GC_PAN_WITH_SINGLE_FINGER_VERTICALLY","features":[36]},{"name":"GC_PRESSANDTAP","features":[36]},{"name":"GC_ROLLOVER","features":[36]},{"name":"GC_ROTATE","features":[36]},{"name":"GC_TWOFINGERTAP","features":[36]},{"name":"GC_ZOOM","features":[36]},{"name":"GDI_NONREMOTE","features":[41,36]},{"name":"GESTURECONFIG_FLAGS","features":[36]},{"name":"GUID_ACDC_POWER_SOURCE","features":[36]},{"name":"GUID_ACTIVE_POWERSCHEME","features":[36]},{"name":"GUID_ADAPTIVE_INPUT_CONTROLLER_STATE","features":[36]},{"name":"GUID_ADAPTIVE_POWER_BEHAVIOR_SUBGROUP","features":[36]},{"name":"GUID_ADVANCED_COLOR_QUALITY_BIAS","features":[36]},{"name":"GUID_ALLOW_AWAYMODE","features":[36]},{"name":"GUID_ALLOW_DISPLAY_REQUIRED","features":[36]},{"name":"GUID_ALLOW_RTC_WAKE","features":[36]},{"name":"GUID_ALLOW_STANDBY_STATES","features":[36]},{"name":"GUID_ALLOW_SYSTEM_REQUIRED","features":[36]},{"name":"GUID_APPLAUNCH_BUTTON","features":[36]},{"name":"GUID_BACKGROUND_TASK_NOTIFICATION","features":[36]},{"name":"GUID_BATTERY_COUNT","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_0","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_1","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_2","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_3","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_0","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_1","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_2","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_3","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_0","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_1","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_2","features":[36]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_3","features":[36]},{"name":"GUID_BATTERY_PERCENTAGE_REMAINING","features":[36]},{"name":"GUID_BATTERY_SUBGROUP","features":[36]},{"name":"GUID_CONNECTIVITY_IN_STANDBY","features":[36]},{"name":"GUID_CONSOLE_DISPLAY_STATE","features":[36]},{"name":"GUID_CRITICAL_POWER_TRANSITION","features":[36]},{"name":"GUID_DEEP_SLEEP_ENABLED","features":[36]},{"name":"GUID_DEEP_SLEEP_PLATFORM_STATE","features":[36]},{"name":"GUID_DEVICE_IDLE_POLICY","features":[36]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_BRIGHTNESS","features":[36]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_DIM_BRIGHTNESS","features":[36]},{"name":"GUID_DISCONNECTED_STANDBY_MODE","features":[36]},{"name":"GUID_DISK_ADAPTIVE_POWERDOWN","features":[36]},{"name":"GUID_DISK_BURST_IGNORE_THRESHOLD","features":[36]},{"name":"GUID_DISK_COALESCING_POWERDOWN_TIMEOUT","features":[36]},{"name":"GUID_DISK_IDLE_TIMEOUT","features":[36]},{"name":"GUID_DISK_MAX_POWER","features":[36]},{"name":"GUID_DISK_NVME_NOPPME","features":[36]},{"name":"GUID_DISK_POWERDOWN_TIMEOUT","features":[36]},{"name":"GUID_DISK_SUBGROUP","features":[36]},{"name":"GUID_ENABLE_SWITCH_FORCED_SHUTDOWN","features":[36]},{"name":"GUID_ENERGY_SAVER_BATTERY_THRESHOLD","features":[36]},{"name":"GUID_ENERGY_SAVER_BRIGHTNESS","features":[36]},{"name":"GUID_ENERGY_SAVER_POLICY","features":[36]},{"name":"GUID_ENERGY_SAVER_SUBGROUP","features":[36]},{"name":"GUID_EXECUTION_REQUIRED_REQUEST_TIMEOUT","features":[36]},{"name":"GUID_GLOBAL_USER_PRESENCE","features":[36]},{"name":"GUID_GPU_PREFERENCE_POLICY","features":[36]},{"name":"GUID_GRAPHICS_SUBGROUP","features":[36]},{"name":"GUID_HIBERNATE_FASTS4_POLICY","features":[36]},{"name":"GUID_HIBERNATE_TIMEOUT","features":[36]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DIM_TIMEOUT","features":[36]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DISPLAY_TIMEOUT","features":[36]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DIM_TIMEOUT","features":[36]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DISPLAY_TIMEOUT","features":[36]},{"name":"GUID_IDLE_BACKGROUND_TASK","features":[36]},{"name":"GUID_IDLE_RESILIENCY_PERIOD","features":[36]},{"name":"GUID_IDLE_RESILIENCY_SUBGROUP","features":[36]},{"name":"GUID_INTSTEER_LOAD_PER_PROC_TRIGGER","features":[36]},{"name":"GUID_INTSTEER_MODE","features":[36]},{"name":"GUID_INTSTEER_SUBGROUP","features":[36]},{"name":"GUID_INTSTEER_TIME_UNPARK_TRIGGER","features":[36]},{"name":"GUID_LEGACY_RTC_MITIGATION","features":[36]},{"name":"GUID_LIDCLOSE_ACTION","features":[36]},{"name":"GUID_LIDOPEN_POWERSTATE","features":[36]},{"name":"GUID_LIDSWITCH_STATE_CHANGE","features":[36]},{"name":"GUID_LIDSWITCH_STATE_RELIABILITY","features":[36]},{"name":"GUID_LOCK_CONSOLE_ON_WAKE","features":[36]},{"name":"GUID_MAX_POWER_SAVINGS","features":[36]},{"name":"GUID_MIN_POWER_SAVINGS","features":[36]},{"name":"GUID_MIXED_REALITY_MODE","features":[36]},{"name":"GUID_MONITOR_POWER_ON","features":[36]},{"name":"GUID_NON_ADAPTIVE_INPUT_TIMEOUT","features":[36]},{"name":"GUID_PCIEXPRESS_ASPM_POLICY","features":[36]},{"name":"GUID_PCIEXPRESS_SETTINGS_SUBGROUP","features":[36]},{"name":"GUID_POWERBUTTON_ACTION","features":[36]},{"name":"GUID_POWERSCHEME_PERSONALITY","features":[36]},{"name":"GUID_POWER_SAVING_STATUS","features":[36]},{"name":"GUID_PROCESSOR_ALLOW_THROTTLING","features":[36]},{"name":"GUID_PROCESSOR_CLASS0_FLOOR_PERF","features":[36]},{"name":"GUID_PROCESSOR_CLASS1_INITIAL_PERF","features":[36]},{"name":"GUID_PROCESSOR_COMPLEX_PARKING_POLICY","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_DECREASE_FACTOR","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_WEIGHTING","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_POLICY","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_TIME","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_POLICY","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_TIME","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES_1","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES_1","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_DECREASE_FACTOR","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_WEIGHTING","features":[36]},{"name":"GUID_PROCESSOR_DISTRIBUTE_UTILITY","features":[36]},{"name":"GUID_PROCESSOR_DUTY_CYCLING","features":[36]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT","features":[36]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT_1","features":[36]},{"name":"GUID_PROCESSOR_HETEROGENEOUS_POLICY","features":[36]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD_1","features":[36]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_TIME","features":[36]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD_1","features":[36]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_TIME","features":[36]},{"name":"GUID_PROCESSOR_IDLESTATE_POLICY","features":[36]},{"name":"GUID_PROCESSOR_IDLE_ALLOW_SCALING","features":[36]},{"name":"GUID_PROCESSOR_IDLE_DEMOTE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_IDLE_DISABLE","features":[36]},{"name":"GUID_PROCESSOR_IDLE_PROMOTE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_IDLE_STATE_MAXIMUM","features":[36]},{"name":"GUID_PROCESSOR_IDLE_TIME_CHECK","features":[36]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK","features":[36]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK_1","features":[36]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_MODULE_PARKING_POLICY","features":[36]},{"name":"GUID_PROCESSOR_PARKING_CONCURRENCY_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_PARKING_CORE_OVERRIDE","features":[36]},{"name":"GUID_PROCESSOR_PARKING_DISTRIBUTION_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_PARKING_HEADROOM_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE","features":[36]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE_1","features":[36]},{"name":"GUID_PROCESSOR_PERFSTATE_POLICY","features":[36]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_ACTIVITY_WINDOW","features":[36]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_MODE","features":[36]},{"name":"GUID_PROCESSOR_PERF_BOOST_MODE","features":[36]},{"name":"GUID_PROCESSOR_PERF_BOOST_POLICY","features":[36]},{"name":"GUID_PROCESSOR_PERF_CORE_PARKING_HISTORY","features":[36]},{"name":"GUID_PROCESSOR_PERF_DECREASE_HISTORY","features":[36]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY","features":[36]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME","features":[36]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE","features":[36]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_HISTORY","features":[36]},{"name":"GUID_PROCESSOR_PERF_HISTORY_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_INCREASE_HISTORY","features":[36]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY","features":[36]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME","features":[36]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT","features":[36]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF","features":[36]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF_1","features":[36]},{"name":"GUID_PROCESSOR_PERF_TIME_CHECK","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD_1","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME_1","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD_1","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME_1","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING_1","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR","features":[36]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR_1","features":[36]},{"name":"GUID_PROCESSOR_SETTINGS_SUBGROUP","features":[36]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_SHORT_THREAD_RUNTIME_THRESHOLD","features":[36]},{"name":"GUID_PROCESSOR_SHORT_THREAD_SCHEDULING_POLICY","features":[36]},{"name":"GUID_PROCESSOR_SMT_UNPARKING_POLICY","features":[36]},{"name":"GUID_PROCESSOR_SOFT_PARKING_LATENCY","features":[36]},{"name":"GUID_PROCESSOR_THREAD_SCHEDULING_POLICY","features":[36]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM","features":[36]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM_1","features":[36]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM","features":[36]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM_1","features":[36]},{"name":"GUID_PROCESSOR_THROTTLE_POLICY","features":[36]},{"name":"GUID_SESSION_DISPLAY_STATUS","features":[36]},{"name":"GUID_SESSION_USER_PRESENCE","features":[36]},{"name":"GUID_SLEEPBUTTON_ACTION","features":[36]},{"name":"GUID_SLEEP_IDLE_THRESHOLD","features":[36]},{"name":"GUID_SLEEP_SUBGROUP","features":[36]},{"name":"GUID_SPR_ACTIVE_SESSION_CHANGE","features":[36]},{"name":"GUID_STANDBY_BUDGET_GRACE_PERIOD","features":[36]},{"name":"GUID_STANDBY_BUDGET_PERCENT","features":[36]},{"name":"GUID_STANDBY_RESERVE_GRACE_PERIOD","features":[36]},{"name":"GUID_STANDBY_RESERVE_TIME","features":[36]},{"name":"GUID_STANDBY_RESET_PERCENT","features":[36]},{"name":"GUID_STANDBY_TIMEOUT","features":[36]},{"name":"GUID_SYSTEM_AWAYMODE","features":[36]},{"name":"GUID_SYSTEM_BUTTON_SUBGROUP","features":[36]},{"name":"GUID_SYSTEM_COOLING_POLICY","features":[36]},{"name":"GUID_TYPICAL_POWER_SAVINGS","features":[36]},{"name":"GUID_UNATTEND_SLEEP_TIMEOUT","features":[36]},{"name":"GUID_USERINTERFACEBUTTON_ACTION","features":[36]},{"name":"GUID_USER_PRESENCE_PREDICTION","features":[36]},{"name":"GUID_VIDEO_ADAPTIVE_DISPLAY_BRIGHTNESS","features":[36]},{"name":"GUID_VIDEO_ADAPTIVE_PERCENT_INCREASE","features":[36]},{"name":"GUID_VIDEO_ADAPTIVE_POWERDOWN","features":[36]},{"name":"GUID_VIDEO_ANNOYANCE_TIMEOUT","features":[36]},{"name":"GUID_VIDEO_CONSOLE_LOCK_TIMEOUT","features":[36]},{"name":"GUID_VIDEO_CURRENT_MONITOR_BRIGHTNESS","features":[36]},{"name":"GUID_VIDEO_DIM_TIMEOUT","features":[36]},{"name":"GUID_VIDEO_POWERDOWN_TIMEOUT","features":[36]},{"name":"GUID_VIDEO_SUBGROUP","features":[36]},{"name":"HEAP_OPTIMIZE_RESOURCES_CURRENT_VERSION","features":[36]},{"name":"HEAP_OPTIMIZE_RESOURCES_INFORMATION","features":[36]},{"name":"HIBERFILE_BUCKET","features":[36]},{"name":"HIBERFILE_BUCKET_SIZE","features":[36]},{"name":"HIBERFILE_TYPE_FULL","features":[36]},{"name":"HIBERFILE_TYPE_MAX","features":[36]},{"name":"HIBERFILE_TYPE_NONE","features":[36]},{"name":"HIBERFILE_TYPE_REDUCED","features":[36]},{"name":"HiberFileBucket16GB","features":[36]},{"name":"HiberFileBucket1GB","features":[36]},{"name":"HiberFileBucket2GB","features":[36]},{"name":"HiberFileBucket32GB","features":[36]},{"name":"HiberFileBucket4GB","features":[36]},{"name":"HiberFileBucket8GB","features":[36]},{"name":"HiberFileBucketMax","features":[36]},{"name":"HiberFileBucketUnlimited","features":[36]},{"name":"IGP_CONVERSION","features":[36]},{"name":"IGP_GETIMEVERSION","features":[36]},{"name":"IGP_ID","features":[36]},{"name":"IGP_PROPERTY","features":[36]},{"name":"IGP_SELECT","features":[36]},{"name":"IGP_SENTENCE","features":[36]},{"name":"IGP_SETCOMPSTR","features":[36]},{"name":"IGP_UI","features":[36]},{"name":"IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY","features":[36]},{"name":"IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY","features":[36]},{"name":"IMAGE_ARCHITECTURE_ENTRY","features":[36]},{"name":"IMAGE_ARCHITECTURE_HEADER","features":[36]},{"name":"IMAGE_ARCHIVE_END","features":[36]},{"name":"IMAGE_ARCHIVE_HYBRIDMAP_MEMBER","features":[36]},{"name":"IMAGE_ARCHIVE_LINKER_MEMBER","features":[36]},{"name":"IMAGE_ARCHIVE_LONGNAMES_MEMBER","features":[36]},{"name":"IMAGE_ARCHIVE_MEMBER_HEADER","features":[36]},{"name":"IMAGE_ARCHIVE_PAD","features":[36]},{"name":"IMAGE_ARCHIVE_START","features":[36]},{"name":"IMAGE_ARCHIVE_START_SIZE","features":[36]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY_XDATA","features":[36]},{"name":"IMAGE_ARM_RUNTIME_FUNCTION_ENTRY","features":[36]},{"name":"IMAGE_AUX_SYMBOL","features":[36]},{"name":"IMAGE_AUX_SYMBOL_EX","features":[36]},{"name":"IMAGE_AUX_SYMBOL_TOKEN_DEF","features":[36]},{"name":"IMAGE_AUX_SYMBOL_TYPE","features":[36]},{"name":"IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF","features":[36]},{"name":"IMAGE_BASE_RELOCATION","features":[36]},{"name":"IMAGE_BDD_DYNAMIC_RELOCATION","features":[36]},{"name":"IMAGE_BDD_INFO","features":[36]},{"name":"IMAGE_BOUND_FORWARDER_REF","features":[36]},{"name":"IMAGE_BOUND_IMPORT_DESCRIPTOR","features":[36]},{"name":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","features":[36]},{"name":"IMAGE_COMDAT_SELECT_ANY","features":[36]},{"name":"IMAGE_COMDAT_SELECT_ASSOCIATIVE","features":[36]},{"name":"IMAGE_COMDAT_SELECT_EXACT_MATCH","features":[36]},{"name":"IMAGE_COMDAT_SELECT_LARGEST","features":[36]},{"name":"IMAGE_COMDAT_SELECT_NEWEST","features":[36]},{"name":"IMAGE_COMDAT_SELECT_NODUPLICATES","features":[36]},{"name":"IMAGE_COMDAT_SELECT_SAME_SIZE","features":[36]},{"name":"IMAGE_COR_EATJ_THUNK_SIZE","features":[36]},{"name":"IMAGE_COR_MIH_BASICBLOCK","features":[36]},{"name":"IMAGE_COR_MIH_EHRVA","features":[36]},{"name":"IMAGE_COR_MIH_METHODRVA","features":[36]},{"name":"IMAGE_DEBUG_MISC","features":[1,36]},{"name":"IMAGE_DEBUG_MISC_EXENAME","features":[36]},{"name":"IMAGE_DEBUG_TYPE_BBT","features":[36]},{"name":"IMAGE_DEBUG_TYPE_CLSID","features":[36]},{"name":"IMAGE_DEBUG_TYPE_EX_DLLCHARACTERISTICS","features":[36]},{"name":"IMAGE_DEBUG_TYPE_ILTCG","features":[36]},{"name":"IMAGE_DEBUG_TYPE_MPX","features":[36]},{"name":"IMAGE_DEBUG_TYPE_OMAP_FROM_SRC","features":[36]},{"name":"IMAGE_DEBUG_TYPE_OMAP_TO_SRC","features":[36]},{"name":"IMAGE_DEBUG_TYPE_POGO","features":[36]},{"name":"IMAGE_DEBUG_TYPE_REPRO","features":[36]},{"name":"IMAGE_DEBUG_TYPE_RESERVED10","features":[36]},{"name":"IMAGE_DEBUG_TYPE_SPGO","features":[36]},{"name":"IMAGE_DEBUG_TYPE_VC_FEATURE","features":[36]},{"name":"IMAGE_DOS_HEADER","features":[36]},{"name":"IMAGE_DOS_SIGNATURE","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION32","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION32_V2","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION64","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION64_V2","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION_FUNCTION_OVERRIDE","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH","features":[36]},{"name":"IMAGE_DYNAMIC_RELOCATION_TABLE","features":[36]},{"name":"IMAGE_ENCLAVE_FLAG_PRIMARY_IMAGE","features":[36]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_AUTHOR_ID","features":[36]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_FAMILY_ID","features":[36]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_IMAGE_ID","features":[36]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_NONE","features":[36]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_UNIQUE_ID","features":[36]},{"name":"IMAGE_ENCLAVE_LONG_ID_LENGTH","features":[36]},{"name":"IMAGE_ENCLAVE_POLICY_DEBUGGABLE","features":[36]},{"name":"IMAGE_ENCLAVE_SHORT_ID_LENGTH","features":[36]},{"name":"IMAGE_EPILOGUE_DYNAMIC_RELOCATION_HEADER","features":[36]},{"name":"IMAGE_EXPORT_DIRECTORY","features":[36]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_BRANCH26","features":[36]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_THUNK","features":[36]},{"name":"IMAGE_FUNCTION_OVERRIDE_DYNAMIC_RELOCATION","features":[36]},{"name":"IMAGE_FUNCTION_OVERRIDE_HEADER","features":[36]},{"name":"IMAGE_FUNCTION_OVERRIDE_INVALID","features":[36]},{"name":"IMAGE_FUNCTION_OVERRIDE_X64_REL32","features":[36]},{"name":"IMAGE_GUARD_CASTGUARD_PRESENT","features":[36]},{"name":"IMAGE_GUARD_CFW_INSTRUMENTED","features":[36]},{"name":"IMAGE_GUARD_CF_ENABLE_EXPORT_SUPPRESSION","features":[36]},{"name":"IMAGE_GUARD_CF_EXPORT_SUPPRESSION_INFO_PRESENT","features":[36]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_PRESENT","features":[36]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_MASK","features":[36]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_SHIFT","features":[36]},{"name":"IMAGE_GUARD_CF_INSTRUMENTED","features":[36]},{"name":"IMAGE_GUARD_CF_LONGJUMP_TABLE_PRESENT","features":[36]},{"name":"IMAGE_GUARD_DELAYLOAD_IAT_IN_ITS_OWN_SECTION","features":[36]},{"name":"IMAGE_GUARD_EH_CONTINUATION_TABLE_PRESENT","features":[36]},{"name":"IMAGE_GUARD_FLAG_EXPORT_SUPPRESSED","features":[36]},{"name":"IMAGE_GUARD_FLAG_FID_LANGEXCPTHANDLER","features":[36]},{"name":"IMAGE_GUARD_FLAG_FID_SUPPRESSED","features":[36]},{"name":"IMAGE_GUARD_FLAG_FID_XFG","features":[36]},{"name":"IMAGE_GUARD_MEMCPY_PRESENT","features":[36]},{"name":"IMAGE_GUARD_PROTECT_DELAYLOAD_IAT","features":[36]},{"name":"IMAGE_GUARD_RETPOLINE_PRESENT","features":[36]},{"name":"IMAGE_GUARD_RF_ENABLE","features":[36]},{"name":"IMAGE_GUARD_RF_INSTRUMENTED","features":[36]},{"name":"IMAGE_GUARD_RF_STRICT","features":[36]},{"name":"IMAGE_GUARD_SECURITY_COOKIE_UNUSED","features":[36]},{"name":"IMAGE_GUARD_XFG_ENABLED","features":[36]},{"name":"IMAGE_HOT_PATCH_ABSOLUTE","features":[36]},{"name":"IMAGE_HOT_PATCH_BASE","features":[36]},{"name":"IMAGE_HOT_PATCH_BASE_CAN_ROLL_BACK","features":[36]},{"name":"IMAGE_HOT_PATCH_BASE_OBLIGATORY","features":[36]},{"name":"IMAGE_HOT_PATCH_CALL_TARGET","features":[36]},{"name":"IMAGE_HOT_PATCH_CHUNK_INVERSE","features":[36]},{"name":"IMAGE_HOT_PATCH_CHUNK_OBLIGATORY","features":[36]},{"name":"IMAGE_HOT_PATCH_CHUNK_RESERVED","features":[36]},{"name":"IMAGE_HOT_PATCH_CHUNK_SIZE","features":[36]},{"name":"IMAGE_HOT_PATCH_CHUNK_SOURCE_RVA","features":[36]},{"name":"IMAGE_HOT_PATCH_CHUNK_TARGET_RVA","features":[36]},{"name":"IMAGE_HOT_PATCH_CHUNK_TYPE","features":[36]},{"name":"IMAGE_HOT_PATCH_DYNAMIC_VALUE","features":[36]},{"name":"IMAGE_HOT_PATCH_FUNCTION","features":[36]},{"name":"IMAGE_HOT_PATCH_HASHES","features":[36]},{"name":"IMAGE_HOT_PATCH_INDIRECT","features":[36]},{"name":"IMAGE_HOT_PATCH_INFO","features":[36]},{"name":"IMAGE_HOT_PATCH_NONE","features":[36]},{"name":"IMAGE_HOT_PATCH_NO_CALL_TARGET","features":[36]},{"name":"IMAGE_HOT_PATCH_REL32","features":[36]},{"name":"IMAGE_IMPORT_BY_NAME","features":[36]},{"name":"IMAGE_IMPORT_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[36]},{"name":"IMAGE_IMPORT_DESCRIPTOR","features":[36]},{"name":"IMAGE_INDIR_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[36]},{"name":"IMAGE_LINENUMBER","features":[36]},{"name":"IMAGE_NT_SIGNATURE","features":[36]},{"name":"IMAGE_NUMBEROF_DIRECTORY_ENTRIES","features":[36]},{"name":"IMAGE_ORDINAL_FLAG32","features":[36]},{"name":"IMAGE_ORDINAL_FLAG64","features":[36]},{"name":"IMAGE_OS2_HEADER","features":[36]},{"name":"IMAGE_OS2_SIGNATURE","features":[36]},{"name":"IMAGE_OS2_SIGNATURE_LE","features":[36]},{"name":"IMAGE_POLICY_ENTRY","features":[1,36]},{"name":"IMAGE_POLICY_ENTRY_TYPE","features":[36]},{"name":"IMAGE_POLICY_ID","features":[36]},{"name":"IMAGE_POLICY_METADATA","features":[1,36]},{"name":"IMAGE_POLICY_METADATA_VERSION","features":[36]},{"name":"IMAGE_POLICY_SECTION_NAME","features":[36]},{"name":"IMAGE_PROLOGUE_DYNAMIC_RELOCATION_HEADER","features":[36]},{"name":"IMAGE_RELOCATION","features":[36]},{"name":"IMAGE_REL_ALPHA_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_ALPHA_BRADDR","features":[36]},{"name":"IMAGE_REL_ALPHA_GPDISP","features":[36]},{"name":"IMAGE_REL_ALPHA_GPREL32","features":[36]},{"name":"IMAGE_REL_ALPHA_GPRELHI","features":[36]},{"name":"IMAGE_REL_ALPHA_GPRELLO","features":[36]},{"name":"IMAGE_REL_ALPHA_HINT","features":[36]},{"name":"IMAGE_REL_ALPHA_INLINE_REFLONG","features":[36]},{"name":"IMAGE_REL_ALPHA_LITERAL","features":[36]},{"name":"IMAGE_REL_ALPHA_LITUSE","features":[36]},{"name":"IMAGE_REL_ALPHA_MATCH","features":[36]},{"name":"IMAGE_REL_ALPHA_PAIR","features":[36]},{"name":"IMAGE_REL_ALPHA_REFHI","features":[36]},{"name":"IMAGE_REL_ALPHA_REFLO","features":[36]},{"name":"IMAGE_REL_ALPHA_REFLONG","features":[36]},{"name":"IMAGE_REL_ALPHA_REFLONGNB","features":[36]},{"name":"IMAGE_REL_ALPHA_REFQ1","features":[36]},{"name":"IMAGE_REL_ALPHA_REFQ2","features":[36]},{"name":"IMAGE_REL_ALPHA_REFQ3","features":[36]},{"name":"IMAGE_REL_ALPHA_REFQUAD","features":[36]},{"name":"IMAGE_REL_ALPHA_SECREL","features":[36]},{"name":"IMAGE_REL_ALPHA_SECRELHI","features":[36]},{"name":"IMAGE_REL_ALPHA_SECRELLO","features":[36]},{"name":"IMAGE_REL_ALPHA_SECTION","features":[36]},{"name":"IMAGE_REL_AMD64_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_AMD64_ADDR32","features":[36]},{"name":"IMAGE_REL_AMD64_ADDR32NB","features":[36]},{"name":"IMAGE_REL_AMD64_ADDR64","features":[36]},{"name":"IMAGE_REL_AMD64_CFG_BR","features":[36]},{"name":"IMAGE_REL_AMD64_CFG_BR_REX","features":[36]},{"name":"IMAGE_REL_AMD64_CFG_CALL","features":[36]},{"name":"IMAGE_REL_AMD64_EHANDLER","features":[36]},{"name":"IMAGE_REL_AMD64_IMPORT_BR","features":[36]},{"name":"IMAGE_REL_AMD64_IMPORT_CALL","features":[36]},{"name":"IMAGE_REL_AMD64_INDIR_BR","features":[36]},{"name":"IMAGE_REL_AMD64_INDIR_BR_REX","features":[36]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_FIRST","features":[36]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_LAST","features":[36]},{"name":"IMAGE_REL_AMD64_INDIR_CALL","features":[36]},{"name":"IMAGE_REL_AMD64_PAIR","features":[36]},{"name":"IMAGE_REL_AMD64_REL32","features":[36]},{"name":"IMAGE_REL_AMD64_REL32_1","features":[36]},{"name":"IMAGE_REL_AMD64_REL32_2","features":[36]},{"name":"IMAGE_REL_AMD64_REL32_3","features":[36]},{"name":"IMAGE_REL_AMD64_REL32_4","features":[36]},{"name":"IMAGE_REL_AMD64_REL32_5","features":[36]},{"name":"IMAGE_REL_AMD64_SECREL","features":[36]},{"name":"IMAGE_REL_AMD64_SECREL7","features":[36]},{"name":"IMAGE_REL_AMD64_SECTION","features":[36]},{"name":"IMAGE_REL_AMD64_SREL32","features":[36]},{"name":"IMAGE_REL_AMD64_SSPAN32","features":[36]},{"name":"IMAGE_REL_AMD64_TOKEN","features":[36]},{"name":"IMAGE_REL_AM_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_AM_ADDR32","features":[36]},{"name":"IMAGE_REL_AM_ADDR32NB","features":[36]},{"name":"IMAGE_REL_AM_CALL32","features":[36]},{"name":"IMAGE_REL_AM_FUNCINFO","features":[36]},{"name":"IMAGE_REL_AM_REL32_1","features":[36]},{"name":"IMAGE_REL_AM_REL32_2","features":[36]},{"name":"IMAGE_REL_AM_SECREL","features":[36]},{"name":"IMAGE_REL_AM_SECTION","features":[36]},{"name":"IMAGE_REL_AM_TOKEN","features":[36]},{"name":"IMAGE_REL_ARM64_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_ARM64_ADDR32","features":[36]},{"name":"IMAGE_REL_ARM64_ADDR32NB","features":[36]},{"name":"IMAGE_REL_ARM64_ADDR64","features":[36]},{"name":"IMAGE_REL_ARM64_BRANCH19","features":[36]},{"name":"IMAGE_REL_ARM64_BRANCH26","features":[36]},{"name":"IMAGE_REL_ARM64_PAGEBASE_REL21","features":[36]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12A","features":[36]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12L","features":[36]},{"name":"IMAGE_REL_ARM64_REL21","features":[36]},{"name":"IMAGE_REL_ARM64_SECREL","features":[36]},{"name":"IMAGE_REL_ARM64_SECREL_HIGH12A","features":[36]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12A","features":[36]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12L","features":[36]},{"name":"IMAGE_REL_ARM64_SECTION","features":[36]},{"name":"IMAGE_REL_ARM64_TOKEN","features":[36]},{"name":"IMAGE_REL_ARM_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_ARM_ADDR32","features":[36]},{"name":"IMAGE_REL_ARM_ADDR32NB","features":[36]},{"name":"IMAGE_REL_ARM_BLX11","features":[36]},{"name":"IMAGE_REL_ARM_BLX23T","features":[36]},{"name":"IMAGE_REL_ARM_BLX24","features":[36]},{"name":"IMAGE_REL_ARM_BRANCH11","features":[36]},{"name":"IMAGE_REL_ARM_BRANCH20T","features":[36]},{"name":"IMAGE_REL_ARM_BRANCH24","features":[36]},{"name":"IMAGE_REL_ARM_BRANCH24T","features":[36]},{"name":"IMAGE_REL_ARM_GPREL12","features":[36]},{"name":"IMAGE_REL_ARM_GPREL7","features":[36]},{"name":"IMAGE_REL_ARM_MOV32","features":[36]},{"name":"IMAGE_REL_ARM_MOV32A","features":[36]},{"name":"IMAGE_REL_ARM_MOV32T","features":[36]},{"name":"IMAGE_REL_ARM_SECREL","features":[36]},{"name":"IMAGE_REL_ARM_SECTION","features":[36]},{"name":"IMAGE_REL_ARM_TOKEN","features":[36]},{"name":"IMAGE_REL_BASED_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_BASED_ARM_MOV32","features":[36]},{"name":"IMAGE_REL_BASED_DIR64","features":[36]},{"name":"IMAGE_REL_BASED_HIGH","features":[36]},{"name":"IMAGE_REL_BASED_HIGHADJ","features":[36]},{"name":"IMAGE_REL_BASED_HIGHLOW","features":[36]},{"name":"IMAGE_REL_BASED_IA64_IMM64","features":[36]},{"name":"IMAGE_REL_BASED_LOW","features":[36]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_5","features":[36]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_7","features":[36]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_8","features":[36]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_9","features":[36]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR","features":[36]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR16","features":[36]},{"name":"IMAGE_REL_BASED_RESERVED","features":[36]},{"name":"IMAGE_REL_BASED_THUMB_MOV32","features":[36]},{"name":"IMAGE_REL_CEE_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_CEE_ADDR32","features":[36]},{"name":"IMAGE_REL_CEE_ADDR32NB","features":[36]},{"name":"IMAGE_REL_CEE_ADDR64","features":[36]},{"name":"IMAGE_REL_CEE_SECREL","features":[36]},{"name":"IMAGE_REL_CEE_SECTION","features":[36]},{"name":"IMAGE_REL_CEE_TOKEN","features":[36]},{"name":"IMAGE_REL_CEF_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_CEF_ADDR32","features":[36]},{"name":"IMAGE_REL_CEF_ADDR32NB","features":[36]},{"name":"IMAGE_REL_CEF_ADDR64","features":[36]},{"name":"IMAGE_REL_CEF_SECREL","features":[36]},{"name":"IMAGE_REL_CEF_SECTION","features":[36]},{"name":"IMAGE_REL_CEF_TOKEN","features":[36]},{"name":"IMAGE_REL_EBC_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_EBC_ADDR32NB","features":[36]},{"name":"IMAGE_REL_EBC_REL32","features":[36]},{"name":"IMAGE_REL_EBC_SECREL","features":[36]},{"name":"IMAGE_REL_EBC_SECTION","features":[36]},{"name":"IMAGE_REL_I386_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_I386_DIR16","features":[36]},{"name":"IMAGE_REL_I386_DIR32","features":[36]},{"name":"IMAGE_REL_I386_DIR32NB","features":[36]},{"name":"IMAGE_REL_I386_REL16","features":[36]},{"name":"IMAGE_REL_I386_REL32","features":[36]},{"name":"IMAGE_REL_I386_SECREL","features":[36]},{"name":"IMAGE_REL_I386_SECREL7","features":[36]},{"name":"IMAGE_REL_I386_SECTION","features":[36]},{"name":"IMAGE_REL_I386_SEG12","features":[36]},{"name":"IMAGE_REL_I386_TOKEN","features":[36]},{"name":"IMAGE_REL_IA64_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_IA64_ADDEND","features":[36]},{"name":"IMAGE_REL_IA64_DIR32","features":[36]},{"name":"IMAGE_REL_IA64_DIR32NB","features":[36]},{"name":"IMAGE_REL_IA64_DIR64","features":[36]},{"name":"IMAGE_REL_IA64_GPREL22","features":[36]},{"name":"IMAGE_REL_IA64_GPREL32","features":[36]},{"name":"IMAGE_REL_IA64_IMM14","features":[36]},{"name":"IMAGE_REL_IA64_IMM22","features":[36]},{"name":"IMAGE_REL_IA64_IMM64","features":[36]},{"name":"IMAGE_REL_IA64_IMMGPREL64","features":[36]},{"name":"IMAGE_REL_IA64_LTOFF22","features":[36]},{"name":"IMAGE_REL_IA64_PCREL21B","features":[36]},{"name":"IMAGE_REL_IA64_PCREL21F","features":[36]},{"name":"IMAGE_REL_IA64_PCREL21M","features":[36]},{"name":"IMAGE_REL_IA64_PCREL60B","features":[36]},{"name":"IMAGE_REL_IA64_PCREL60F","features":[36]},{"name":"IMAGE_REL_IA64_PCREL60I","features":[36]},{"name":"IMAGE_REL_IA64_PCREL60M","features":[36]},{"name":"IMAGE_REL_IA64_PCREL60X","features":[36]},{"name":"IMAGE_REL_IA64_SECREL22","features":[36]},{"name":"IMAGE_REL_IA64_SECREL32","features":[36]},{"name":"IMAGE_REL_IA64_SECREL64I","features":[36]},{"name":"IMAGE_REL_IA64_SECTION","features":[36]},{"name":"IMAGE_REL_IA64_SREL14","features":[36]},{"name":"IMAGE_REL_IA64_SREL22","features":[36]},{"name":"IMAGE_REL_IA64_SREL32","features":[36]},{"name":"IMAGE_REL_IA64_TOKEN","features":[36]},{"name":"IMAGE_REL_IA64_UREL32","features":[36]},{"name":"IMAGE_REL_M32R_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_M32R_ADDR24","features":[36]},{"name":"IMAGE_REL_M32R_ADDR32","features":[36]},{"name":"IMAGE_REL_M32R_ADDR32NB","features":[36]},{"name":"IMAGE_REL_M32R_GPREL16","features":[36]},{"name":"IMAGE_REL_M32R_PAIR","features":[36]},{"name":"IMAGE_REL_M32R_PCREL16","features":[36]},{"name":"IMAGE_REL_M32R_PCREL24","features":[36]},{"name":"IMAGE_REL_M32R_PCREL8","features":[36]},{"name":"IMAGE_REL_M32R_REFHALF","features":[36]},{"name":"IMAGE_REL_M32R_REFHI","features":[36]},{"name":"IMAGE_REL_M32R_REFLO","features":[36]},{"name":"IMAGE_REL_M32R_SECREL32","features":[36]},{"name":"IMAGE_REL_M32R_SECTION","features":[36]},{"name":"IMAGE_REL_M32R_TOKEN","features":[36]},{"name":"IMAGE_REL_MIPS_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_MIPS_GPREL","features":[36]},{"name":"IMAGE_REL_MIPS_JMPADDR","features":[36]},{"name":"IMAGE_REL_MIPS_JMPADDR16","features":[36]},{"name":"IMAGE_REL_MIPS_LITERAL","features":[36]},{"name":"IMAGE_REL_MIPS_PAIR","features":[36]},{"name":"IMAGE_REL_MIPS_REFHALF","features":[36]},{"name":"IMAGE_REL_MIPS_REFHI","features":[36]},{"name":"IMAGE_REL_MIPS_REFLO","features":[36]},{"name":"IMAGE_REL_MIPS_REFWORD","features":[36]},{"name":"IMAGE_REL_MIPS_REFWORDNB","features":[36]},{"name":"IMAGE_REL_MIPS_SECREL","features":[36]},{"name":"IMAGE_REL_MIPS_SECRELHI","features":[36]},{"name":"IMAGE_REL_MIPS_SECRELLO","features":[36]},{"name":"IMAGE_REL_MIPS_SECTION","features":[36]},{"name":"IMAGE_REL_MIPS_TOKEN","features":[36]},{"name":"IMAGE_REL_PPC_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_PPC_ADDR14","features":[36]},{"name":"IMAGE_REL_PPC_ADDR16","features":[36]},{"name":"IMAGE_REL_PPC_ADDR24","features":[36]},{"name":"IMAGE_REL_PPC_ADDR32","features":[36]},{"name":"IMAGE_REL_PPC_ADDR32NB","features":[36]},{"name":"IMAGE_REL_PPC_ADDR64","features":[36]},{"name":"IMAGE_REL_PPC_BRNTAKEN","features":[36]},{"name":"IMAGE_REL_PPC_BRTAKEN","features":[36]},{"name":"IMAGE_REL_PPC_GPREL","features":[36]},{"name":"IMAGE_REL_PPC_IFGLUE","features":[36]},{"name":"IMAGE_REL_PPC_IMGLUE","features":[36]},{"name":"IMAGE_REL_PPC_NEG","features":[36]},{"name":"IMAGE_REL_PPC_PAIR","features":[36]},{"name":"IMAGE_REL_PPC_REFHI","features":[36]},{"name":"IMAGE_REL_PPC_REFLO","features":[36]},{"name":"IMAGE_REL_PPC_REL14","features":[36]},{"name":"IMAGE_REL_PPC_REL24","features":[36]},{"name":"IMAGE_REL_PPC_SECREL","features":[36]},{"name":"IMAGE_REL_PPC_SECREL16","features":[36]},{"name":"IMAGE_REL_PPC_SECRELHI","features":[36]},{"name":"IMAGE_REL_PPC_SECRELLO","features":[36]},{"name":"IMAGE_REL_PPC_SECTION","features":[36]},{"name":"IMAGE_REL_PPC_TOCDEFN","features":[36]},{"name":"IMAGE_REL_PPC_TOCREL14","features":[36]},{"name":"IMAGE_REL_PPC_TOCREL16","features":[36]},{"name":"IMAGE_REL_PPC_TOKEN","features":[36]},{"name":"IMAGE_REL_PPC_TYPEMASK","features":[36]},{"name":"IMAGE_REL_SH3_ABSOLUTE","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT16","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT32","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT32_NB","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT4","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT4_LONG","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT4_WORD","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT8","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT8_LONG","features":[36]},{"name":"IMAGE_REL_SH3_DIRECT8_WORD","features":[36]},{"name":"IMAGE_REL_SH3_GPREL4_LONG","features":[36]},{"name":"IMAGE_REL_SH3_PCREL12_WORD","features":[36]},{"name":"IMAGE_REL_SH3_PCREL8_LONG","features":[36]},{"name":"IMAGE_REL_SH3_PCREL8_WORD","features":[36]},{"name":"IMAGE_REL_SH3_SECREL","features":[36]},{"name":"IMAGE_REL_SH3_SECTION","features":[36]},{"name":"IMAGE_REL_SH3_SIZEOF_SECTION","features":[36]},{"name":"IMAGE_REL_SH3_STARTOF_SECTION","features":[36]},{"name":"IMAGE_REL_SH3_TOKEN","features":[36]},{"name":"IMAGE_REL_SHM_PAIR","features":[36]},{"name":"IMAGE_REL_SHM_PCRELPT","features":[36]},{"name":"IMAGE_REL_SHM_REFHALF","features":[36]},{"name":"IMAGE_REL_SHM_REFLO","features":[36]},{"name":"IMAGE_REL_SHM_RELHALF","features":[36]},{"name":"IMAGE_REL_SHM_RELLO","features":[36]},{"name":"IMAGE_REL_SH_NOMODE","features":[36]},{"name":"IMAGE_REL_THUMB_BLX23","features":[36]},{"name":"IMAGE_REL_THUMB_BRANCH20","features":[36]},{"name":"IMAGE_REL_THUMB_BRANCH24","features":[36]},{"name":"IMAGE_REL_THUMB_MOV32","features":[36]},{"name":"IMAGE_RESOURCE_DATA_ENTRY","features":[36]},{"name":"IMAGE_RESOURCE_DATA_IS_DIRECTORY","features":[36]},{"name":"IMAGE_RESOURCE_DIRECTORY","features":[36]},{"name":"IMAGE_RESOURCE_DIRECTORY_ENTRY","features":[36]},{"name":"IMAGE_RESOURCE_DIRECTORY_STRING","features":[36]},{"name":"IMAGE_RESOURCE_DIR_STRING_U","features":[36]},{"name":"IMAGE_RESOURCE_NAME_IS_STRING","features":[36]},{"name":"IMAGE_SEPARATE_DEBUG_FLAGS_MASK","features":[36]},{"name":"IMAGE_SEPARATE_DEBUG_HEADER","features":[36]},{"name":"IMAGE_SEPARATE_DEBUG_MISMATCH","features":[36]},{"name":"IMAGE_SEPARATE_DEBUG_SIGNATURE","features":[36]},{"name":"IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR","features":[36]},{"name":"IMAGE_SIZEOF_FILE_HEADER","features":[36]},{"name":"IMAGE_SIZEOF_SECTION_HEADER","features":[36]},{"name":"IMAGE_SIZEOF_SHORT_NAME","features":[36]},{"name":"IMAGE_SIZEOF_SYMBOL","features":[36]},{"name":"IMAGE_SWITCHTABLE_BRANCH_DYNAMIC_RELOCATION","features":[36]},{"name":"IMAGE_SYMBOL","features":[36]},{"name":"IMAGE_SYMBOL_EX","features":[36]},{"name":"IMAGE_SYM_CLASS_ARGUMENT","features":[36]},{"name":"IMAGE_SYM_CLASS_AUTOMATIC","features":[36]},{"name":"IMAGE_SYM_CLASS_BIT_FIELD","features":[36]},{"name":"IMAGE_SYM_CLASS_BLOCK","features":[36]},{"name":"IMAGE_SYM_CLASS_CLR_TOKEN","features":[36]},{"name":"IMAGE_SYM_CLASS_END_OF_STRUCT","features":[36]},{"name":"IMAGE_SYM_CLASS_ENUM_TAG","features":[36]},{"name":"IMAGE_SYM_CLASS_EXTERNAL","features":[36]},{"name":"IMAGE_SYM_CLASS_EXTERNAL_DEF","features":[36]},{"name":"IMAGE_SYM_CLASS_FAR_EXTERNAL","features":[36]},{"name":"IMAGE_SYM_CLASS_FILE","features":[36]},{"name":"IMAGE_SYM_CLASS_FUNCTION","features":[36]},{"name":"IMAGE_SYM_CLASS_LABEL","features":[36]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_ENUM","features":[36]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_STRUCT","features":[36]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_UNION","features":[36]},{"name":"IMAGE_SYM_CLASS_NULL","features":[36]},{"name":"IMAGE_SYM_CLASS_REGISTER","features":[36]},{"name":"IMAGE_SYM_CLASS_REGISTER_PARAM","features":[36]},{"name":"IMAGE_SYM_CLASS_SECTION","features":[36]},{"name":"IMAGE_SYM_CLASS_STATIC","features":[36]},{"name":"IMAGE_SYM_CLASS_STRUCT_TAG","features":[36]},{"name":"IMAGE_SYM_CLASS_TYPE_DEFINITION","features":[36]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_LABEL","features":[36]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_STATIC","features":[36]},{"name":"IMAGE_SYM_CLASS_UNION_TAG","features":[36]},{"name":"IMAGE_SYM_CLASS_WEAK_EXTERNAL","features":[36]},{"name":"IMAGE_SYM_DTYPE_ARRAY","features":[36]},{"name":"IMAGE_SYM_DTYPE_FUNCTION","features":[36]},{"name":"IMAGE_SYM_DTYPE_NULL","features":[36]},{"name":"IMAGE_SYM_DTYPE_POINTER","features":[36]},{"name":"IMAGE_SYM_SECTION_MAX","features":[36]},{"name":"IMAGE_SYM_SECTION_MAX_EX","features":[36]},{"name":"IMAGE_SYM_TYPE_BYTE","features":[36]},{"name":"IMAGE_SYM_TYPE_CHAR","features":[36]},{"name":"IMAGE_SYM_TYPE_DOUBLE","features":[36]},{"name":"IMAGE_SYM_TYPE_DWORD","features":[36]},{"name":"IMAGE_SYM_TYPE_ENUM","features":[36]},{"name":"IMAGE_SYM_TYPE_FLOAT","features":[36]},{"name":"IMAGE_SYM_TYPE_INT","features":[36]},{"name":"IMAGE_SYM_TYPE_LONG","features":[36]},{"name":"IMAGE_SYM_TYPE_MOE","features":[36]},{"name":"IMAGE_SYM_TYPE_NULL","features":[36]},{"name":"IMAGE_SYM_TYPE_PCODE","features":[36]},{"name":"IMAGE_SYM_TYPE_SHORT","features":[36]},{"name":"IMAGE_SYM_TYPE_STRUCT","features":[36]},{"name":"IMAGE_SYM_TYPE_UINT","features":[36]},{"name":"IMAGE_SYM_TYPE_UNION","features":[36]},{"name":"IMAGE_SYM_TYPE_VOID","features":[36]},{"name":"IMAGE_SYM_TYPE_WORD","features":[36]},{"name":"IMAGE_TLS_DIRECTORY32","features":[36]},{"name":"IMAGE_TLS_DIRECTORY64","features":[36]},{"name":"IMAGE_VXD_HEADER","features":[36]},{"name":"IMAGE_VXD_SIGNATURE","features":[36]},{"name":"IMAGE_WEAK_EXTERN_ANTI_DEPENDENCY","features":[36]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_ALIAS","features":[36]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_LIBRARY","features":[36]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY","features":[36]},{"name":"IMPORT_OBJECT_CODE","features":[36]},{"name":"IMPORT_OBJECT_CONST","features":[36]},{"name":"IMPORT_OBJECT_DATA","features":[36]},{"name":"IMPORT_OBJECT_HDR_SIG2","features":[36]},{"name":"IMPORT_OBJECT_HEADER","features":[36]},{"name":"IMPORT_OBJECT_NAME","features":[36]},{"name":"IMPORT_OBJECT_NAME_EXPORTAS","features":[36]},{"name":"IMPORT_OBJECT_NAME_NO_PREFIX","features":[36]},{"name":"IMPORT_OBJECT_NAME_TYPE","features":[36]},{"name":"IMPORT_OBJECT_NAME_UNDECORATE","features":[36]},{"name":"IMPORT_OBJECT_ORDINAL","features":[36]},{"name":"IMPORT_OBJECT_TYPE","features":[36]},{"name":"INITIAL_CPSR","features":[36]},{"name":"INITIAL_FPCSR","features":[36]},{"name":"INITIAL_FPSCR","features":[36]},{"name":"INITIAL_MXCSR","features":[36]},{"name":"IO_COMPLETION_MODIFY_STATE","features":[36]},{"name":"IO_REPARSE_TAG_AF_UNIX","features":[36]},{"name":"IO_REPARSE_TAG_APPEXECLINK","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_1","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_2","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_3","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_4","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_5","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_6","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_7","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_8","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_9","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_A","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_B","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_C","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_D","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_E","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_F","features":[36]},{"name":"IO_REPARSE_TAG_CLOUD_MASK","features":[36]},{"name":"IO_REPARSE_TAG_CSV","features":[36]},{"name":"IO_REPARSE_TAG_DATALESS_CIM","features":[36]},{"name":"IO_REPARSE_TAG_DEDUP","features":[36]},{"name":"IO_REPARSE_TAG_DFS","features":[36]},{"name":"IO_REPARSE_TAG_DFSR","features":[36]},{"name":"IO_REPARSE_TAG_FILE_PLACEHOLDER","features":[36]},{"name":"IO_REPARSE_TAG_GLOBAL_REPARSE","features":[36]},{"name":"IO_REPARSE_TAG_HSM","features":[36]},{"name":"IO_REPARSE_TAG_HSM2","features":[36]},{"name":"IO_REPARSE_TAG_MOUNT_POINT","features":[36]},{"name":"IO_REPARSE_TAG_NFS","features":[36]},{"name":"IO_REPARSE_TAG_ONEDRIVE","features":[36]},{"name":"IO_REPARSE_TAG_PROJFS","features":[36]},{"name":"IO_REPARSE_TAG_PROJFS_TOMBSTONE","features":[36]},{"name":"IO_REPARSE_TAG_RESERVED_INVALID","features":[36]},{"name":"IO_REPARSE_TAG_RESERVED_ONE","features":[36]},{"name":"IO_REPARSE_TAG_RESERVED_RANGE","features":[36]},{"name":"IO_REPARSE_TAG_RESERVED_TWO","features":[36]},{"name":"IO_REPARSE_TAG_RESERVED_ZERO","features":[36]},{"name":"IO_REPARSE_TAG_SIS","features":[36]},{"name":"IO_REPARSE_TAG_STORAGE_SYNC","features":[36]},{"name":"IO_REPARSE_TAG_SYMLINK","features":[36]},{"name":"IO_REPARSE_TAG_UNHANDLED","features":[36]},{"name":"IO_REPARSE_TAG_WCI","features":[36]},{"name":"IO_REPARSE_TAG_WCI_1","features":[36]},{"name":"IO_REPARSE_TAG_WCI_LINK","features":[36]},{"name":"IO_REPARSE_TAG_WCI_LINK_1","features":[36]},{"name":"IO_REPARSE_TAG_WCI_TOMBSTONE","features":[36]},{"name":"IO_REPARSE_TAG_WIM","features":[36]},{"name":"IO_REPARSE_TAG_WOF","features":[36]},{"name":"IS_TEXT_UNICODE_DBCS_LEADBYTE","features":[36]},{"name":"IS_TEXT_UNICODE_UTF8","features":[36]},{"name":"ITWW_OPEN_CONNECT","features":[36]},{"name":"IgnoreError","features":[36]},{"name":"ImagePolicyEntryTypeAnsiString","features":[36]},{"name":"ImagePolicyEntryTypeBool","features":[36]},{"name":"ImagePolicyEntryTypeInt16","features":[36]},{"name":"ImagePolicyEntryTypeInt32","features":[36]},{"name":"ImagePolicyEntryTypeInt64","features":[36]},{"name":"ImagePolicyEntryTypeInt8","features":[36]},{"name":"ImagePolicyEntryTypeMaximum","features":[36]},{"name":"ImagePolicyEntryTypeNone","features":[36]},{"name":"ImagePolicyEntryTypeOverride","features":[36]},{"name":"ImagePolicyEntryTypeUInt16","features":[36]},{"name":"ImagePolicyEntryTypeUInt32","features":[36]},{"name":"ImagePolicyEntryTypeUInt64","features":[36]},{"name":"ImagePolicyEntryTypeUInt8","features":[36]},{"name":"ImagePolicyEntryTypeUnicodeString","features":[36]},{"name":"ImagePolicyIdCapability","features":[36]},{"name":"ImagePolicyIdCrashDump","features":[36]},{"name":"ImagePolicyIdCrashDumpKey","features":[36]},{"name":"ImagePolicyIdCrashDumpKeyGuid","features":[36]},{"name":"ImagePolicyIdDebug","features":[36]},{"name":"ImagePolicyIdDeviceId","features":[36]},{"name":"ImagePolicyIdEtw","features":[36]},{"name":"ImagePolicyIdMaximum","features":[36]},{"name":"ImagePolicyIdNone","features":[36]},{"name":"ImagePolicyIdParentSd","features":[36]},{"name":"ImagePolicyIdParentSdRev","features":[36]},{"name":"ImagePolicyIdScenarioId","features":[36]},{"name":"ImagePolicyIdSvn","features":[36]},{"name":"JOB_OBJECT_ASSIGN_PROCESS","features":[36]},{"name":"JOB_OBJECT_IMPERSONATE","features":[36]},{"name":"JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS","features":[36]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT","features":[36]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO","features":[36]},{"name":"JOB_OBJECT_MSG_END_OF_JOB_TIME","features":[36]},{"name":"JOB_OBJECT_MSG_END_OF_PROCESS_TIME","features":[36]},{"name":"JOB_OBJECT_MSG_EXIT_PROCESS","features":[36]},{"name":"JOB_OBJECT_MSG_JOB_CYCLE_TIME_LIMIT","features":[36]},{"name":"JOB_OBJECT_MSG_JOB_MEMORY_LIMIT","features":[36]},{"name":"JOB_OBJECT_MSG_MAXIMUM","features":[36]},{"name":"JOB_OBJECT_MSG_MINIMUM","features":[36]},{"name":"JOB_OBJECT_MSG_NEW_PROCESS","features":[36]},{"name":"JOB_OBJECT_MSG_NOTIFICATION_LIMIT","features":[36]},{"name":"JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT","features":[36]},{"name":"JOB_OBJECT_MSG_SILO_TERMINATED","features":[36]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_DSCP_TAG","features":[36]},{"name":"JOB_OBJECT_QUERY","features":[36]},{"name":"JOB_OBJECT_SET_ATTRIBUTES","features":[36]},{"name":"JOB_OBJECT_SET_SECURITY_ATTRIBUTES","features":[36]},{"name":"JOB_OBJECT_TERMINATE","features":[36]},{"name":"JOB_OBJECT_UILIMIT_ALL","features":[36]},{"name":"JOB_OBJECT_UILIMIT_IME","features":[36]},{"name":"JOB_OBJECT_UI_VALID_FLAGS","features":[36]},{"name":"KERNEL_CET_CONTEXT","features":[36]},{"name":"KTMOBJECT_CURSOR","features":[36]},{"name":"KTMOBJECT_ENLISTMENT","features":[36]},{"name":"KTMOBJECT_INVALID","features":[36]},{"name":"KTMOBJECT_RESOURCE_MANAGER","features":[36]},{"name":"KTMOBJECT_TRANSACTION","features":[36]},{"name":"KTMOBJECT_TRANSACTION_MANAGER","features":[36]},{"name":"KTMOBJECT_TYPE","features":[36]},{"name":"LANG_AFRIKAANS","features":[36]},{"name":"LANG_ALBANIAN","features":[36]},{"name":"LANG_ALSATIAN","features":[36]},{"name":"LANG_AMHARIC","features":[36]},{"name":"LANG_ARABIC","features":[36]},{"name":"LANG_ARMENIAN","features":[36]},{"name":"LANG_ASSAMESE","features":[36]},{"name":"LANG_AZERBAIJANI","features":[36]},{"name":"LANG_AZERI","features":[36]},{"name":"LANG_BANGLA","features":[36]},{"name":"LANG_BASHKIR","features":[36]},{"name":"LANG_BASQUE","features":[36]},{"name":"LANG_BELARUSIAN","features":[36]},{"name":"LANG_BENGALI","features":[36]},{"name":"LANG_BOSNIAN","features":[36]},{"name":"LANG_BOSNIAN_NEUTRAL","features":[36]},{"name":"LANG_BRETON","features":[36]},{"name":"LANG_BULGARIAN","features":[36]},{"name":"LANG_CATALAN","features":[36]},{"name":"LANG_CENTRAL_KURDISH","features":[36]},{"name":"LANG_CHEROKEE","features":[36]},{"name":"LANG_CHINESE","features":[36]},{"name":"LANG_CHINESE_SIMPLIFIED","features":[36]},{"name":"LANG_CHINESE_TRADITIONAL","features":[36]},{"name":"LANG_CORSICAN","features":[36]},{"name":"LANG_CROATIAN","features":[36]},{"name":"LANG_CZECH","features":[36]},{"name":"LANG_DANISH","features":[36]},{"name":"LANG_DARI","features":[36]},{"name":"LANG_DIVEHI","features":[36]},{"name":"LANG_DUTCH","features":[36]},{"name":"LANG_ENGLISH","features":[36]},{"name":"LANG_ESTONIAN","features":[36]},{"name":"LANG_FAEROESE","features":[36]},{"name":"LANG_FARSI","features":[36]},{"name":"LANG_FILIPINO","features":[36]},{"name":"LANG_FINNISH","features":[36]},{"name":"LANG_FRENCH","features":[36]},{"name":"LANG_FRISIAN","features":[36]},{"name":"LANG_FULAH","features":[36]},{"name":"LANG_GALICIAN","features":[36]},{"name":"LANG_GEORGIAN","features":[36]},{"name":"LANG_GERMAN","features":[36]},{"name":"LANG_GREEK","features":[36]},{"name":"LANG_GREENLANDIC","features":[36]},{"name":"LANG_GUJARATI","features":[36]},{"name":"LANG_HAUSA","features":[36]},{"name":"LANG_HAWAIIAN","features":[36]},{"name":"LANG_HEBREW","features":[36]},{"name":"LANG_HINDI","features":[36]},{"name":"LANG_HUNGARIAN","features":[36]},{"name":"LANG_ICELANDIC","features":[36]},{"name":"LANG_IGBO","features":[36]},{"name":"LANG_INDONESIAN","features":[36]},{"name":"LANG_INUKTITUT","features":[36]},{"name":"LANG_INVARIANT","features":[36]},{"name":"LANG_IRISH","features":[36]},{"name":"LANG_ITALIAN","features":[36]},{"name":"LANG_JAPANESE","features":[36]},{"name":"LANG_KANNADA","features":[36]},{"name":"LANG_KASHMIRI","features":[36]},{"name":"LANG_KAZAK","features":[36]},{"name":"LANG_KHMER","features":[36]},{"name":"LANG_KICHE","features":[36]},{"name":"LANG_KINYARWANDA","features":[36]},{"name":"LANG_KONKANI","features":[36]},{"name":"LANG_KOREAN","features":[36]},{"name":"LANG_KYRGYZ","features":[36]},{"name":"LANG_LAO","features":[36]},{"name":"LANG_LATVIAN","features":[36]},{"name":"LANG_LITHUANIAN","features":[36]},{"name":"LANG_LOWER_SORBIAN","features":[36]},{"name":"LANG_LUXEMBOURGISH","features":[36]},{"name":"LANG_MACEDONIAN","features":[36]},{"name":"LANG_MALAY","features":[36]},{"name":"LANG_MALAYALAM","features":[36]},{"name":"LANG_MALTESE","features":[36]},{"name":"LANG_MANIPURI","features":[36]},{"name":"LANG_MAORI","features":[36]},{"name":"LANG_MAPUDUNGUN","features":[36]},{"name":"LANG_MARATHI","features":[36]},{"name":"LANG_MOHAWK","features":[36]},{"name":"LANG_MONGOLIAN","features":[36]},{"name":"LANG_NEPALI","features":[36]},{"name":"LANG_NEUTRAL","features":[36]},{"name":"LANG_NORWEGIAN","features":[36]},{"name":"LANG_OCCITAN","features":[36]},{"name":"LANG_ODIA","features":[36]},{"name":"LANG_ORIYA","features":[36]},{"name":"LANG_PASHTO","features":[36]},{"name":"LANG_PERSIAN","features":[36]},{"name":"LANG_POLISH","features":[36]},{"name":"LANG_PORTUGUESE","features":[36]},{"name":"LANG_PULAR","features":[36]},{"name":"LANG_PUNJABI","features":[36]},{"name":"LANG_QUECHUA","features":[36]},{"name":"LANG_ROMANIAN","features":[36]},{"name":"LANG_ROMANSH","features":[36]},{"name":"LANG_RUSSIAN","features":[36]},{"name":"LANG_SAKHA","features":[36]},{"name":"LANG_SAMI","features":[36]},{"name":"LANG_SANSKRIT","features":[36]},{"name":"LANG_SCOTTISH_GAELIC","features":[36]},{"name":"LANG_SERBIAN","features":[36]},{"name":"LANG_SERBIAN_NEUTRAL","features":[36]},{"name":"LANG_SINDHI","features":[36]},{"name":"LANG_SINHALESE","features":[36]},{"name":"LANG_SLOVAK","features":[36]},{"name":"LANG_SLOVENIAN","features":[36]},{"name":"LANG_SOTHO","features":[36]},{"name":"LANG_SPANISH","features":[36]},{"name":"LANG_SWAHILI","features":[36]},{"name":"LANG_SWEDISH","features":[36]},{"name":"LANG_SYRIAC","features":[36]},{"name":"LANG_TAJIK","features":[36]},{"name":"LANG_TAMAZIGHT","features":[36]},{"name":"LANG_TAMIL","features":[36]},{"name":"LANG_TATAR","features":[36]},{"name":"LANG_TELUGU","features":[36]},{"name":"LANG_THAI","features":[36]},{"name":"LANG_TIBETAN","features":[36]},{"name":"LANG_TIGRIGNA","features":[36]},{"name":"LANG_TIGRINYA","features":[36]},{"name":"LANG_TSWANA","features":[36]},{"name":"LANG_TURKISH","features":[36]},{"name":"LANG_TURKMEN","features":[36]},{"name":"LANG_UIGHUR","features":[36]},{"name":"LANG_UKRAINIAN","features":[36]},{"name":"LANG_UPPER_SORBIAN","features":[36]},{"name":"LANG_URDU","features":[36]},{"name":"LANG_UZBEK","features":[36]},{"name":"LANG_VALENCIAN","features":[36]},{"name":"LANG_VIETNAMESE","features":[36]},{"name":"LANG_WELSH","features":[36]},{"name":"LANG_WOLOF","features":[36]},{"name":"LANG_XHOSA","features":[36]},{"name":"LANG_YAKUT","features":[36]},{"name":"LANG_YI","features":[36]},{"name":"LANG_YORUBA","features":[36]},{"name":"LANG_ZULU","features":[36]},{"name":"LMEM_DISCARDABLE","features":[36]},{"name":"LMEM_DISCARDED","features":[36]},{"name":"LMEM_INVALID_HANDLE","features":[36]},{"name":"LMEM_LOCKCOUNT","features":[36]},{"name":"LMEM_MODIFY","features":[36]},{"name":"LMEM_NOCOMPACT","features":[36]},{"name":"LMEM_NODISCARD","features":[36]},{"name":"LMEM_VALID_FLAGS","features":[36]},{"name":"LOCALE_NAME_MAX_LENGTH","features":[36]},{"name":"LOCALE_TRANSIENT_KEYBOARD1","features":[36]},{"name":"LOCALE_TRANSIENT_KEYBOARD2","features":[36]},{"name":"LOCALE_TRANSIENT_KEYBOARD3","features":[36]},{"name":"LOCALE_TRANSIENT_KEYBOARD4","features":[36]},{"name":"LTP_PC_SMT","features":[36]},{"name":"MAILSLOT_NO_MESSAGE","features":[36]},{"name":"MAILSLOT_WAIT_FOREVER","features":[36]},{"name":"MAXBYTE","features":[36]},{"name":"MAXCHAR","features":[36]},{"name":"MAXDWORD","features":[36]},{"name":"MAXIMUM_ALLOWED","features":[36]},{"name":"MAXIMUM_PROCESSORS","features":[36]},{"name":"MAXIMUM_PROC_PER_GROUP","features":[36]},{"name":"MAXIMUM_SUPPORTED_EXTENSION","features":[36]},{"name":"MAXIMUM_SUSPEND_COUNT","features":[36]},{"name":"MAXIMUM_WAIT_OBJECTS","features":[36]},{"name":"MAXIMUM_XSTATE_FEATURES","features":[36]},{"name":"MAXLOGICALLOGNAMESIZE","features":[36]},{"name":"MAXLONG","features":[36]},{"name":"MAXLONGLONG","features":[36]},{"name":"MAXSHORT","features":[36]},{"name":"MAXVERSIONTESTED_INFO","features":[36]},{"name":"MAXWORD","features":[36]},{"name":"MAX_ACL_REVISION","features":[36]},{"name":"MAX_CLASS_NAME","features":[36]},{"name":"MAX_HW_COUNTERS","features":[36]},{"name":"MAX_PACKAGE_NAME","features":[36]},{"name":"MAX_UCSCHAR","features":[36]},{"name":"MEMORY_ALLOCATION_ALIGNMENT","features":[36]},{"name":"MEMORY_PARTITION_MODIFY_ACCESS","features":[36]},{"name":"MEMORY_PARTITION_QUERY_ACCESS","features":[36]},{"name":"MEMORY_PRIORITY_LOWEST","features":[36]},{"name":"MEM_4MB_PAGES","features":[36]},{"name":"MEM_COALESCE_PLACEHOLDERS","features":[36]},{"name":"MEM_DIFFERENT_IMAGE_BASE_OK","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_GRAPHICS","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_IMAGE_NO_HPAT","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_HUGE","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_LARGE","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_SOFT_FAULT_PAGES","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[36]},{"name":"MEM_EXTENDED_PARAMETER_ZERO_PAGES_OPTIONAL","features":[36]},{"name":"MEM_PHYSICAL","features":[36]},{"name":"MEM_ROTATE","features":[36]},{"name":"MEM_TOP_DOWN","features":[36]},{"name":"MEM_WRITE_WATCH","features":[36]},{"name":"MESSAGE_RESOURCE_UNICODE","features":[36]},{"name":"MESSAGE_RESOURCE_UTF8","features":[36]},{"name":"MINCHAR","features":[36]},{"name":"MINLONG","features":[36]},{"name":"MINSHORT","features":[36]},{"name":"MIN_UCSCHAR","features":[36]},{"name":"MK_CONTROL","features":[36]},{"name":"MK_LBUTTON","features":[36]},{"name":"MK_MBUTTON","features":[36]},{"name":"MK_RBUTTON","features":[36]},{"name":"MK_SHIFT","features":[36]},{"name":"MK_XBUTTON1","features":[36]},{"name":"MK_XBUTTON2","features":[36]},{"name":"MODIFIERKEYS_FLAGS","features":[36]},{"name":"MONITOR_DISPLAY_STATE","features":[36]},{"name":"MS_PPM_SOFTWARE_ALL","features":[36]},{"name":"MUTANT_QUERY_STATE","features":[36]},{"name":"MaxActivationContextInfoClass","features":[36]},{"name":"NATIVE_TYPE_MAX_CB","features":[36]},{"name":"NETWORK_APP_INSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[36]},{"name":"NETWORK_APP_INSTANCE_EA","features":[36]},{"name":"NLS_VALID_LOCALE_MASK","features":[36]},{"name":"NONVOL_FP_NUMREG_ARM64","features":[36]},{"name":"NONVOL_INT_NUMREG_ARM64","features":[36]},{"name":"NON_PAGED_DEBUG_INFO","features":[36]},{"name":"NON_PAGED_DEBUG_SIGNATURE","features":[36]},{"name":"NOTIFY_USER_POWER_SETTING","features":[36]},{"name":"NO_SUBGROUP_GUID","features":[36]},{"name":"NT_TIB32","features":[36]},{"name":"NT_TIB64","features":[36]},{"name":"NUMA_NO_PREFERRED_NODE","features":[36]},{"name":"NUM_DISCHARGE_POLICIES","features":[36]},{"name":"N_BTMASK","features":[36]},{"name":"N_BTSHFT","features":[36]},{"name":"N_TMASK","features":[36]},{"name":"N_TMASK1","features":[36]},{"name":"N_TMASK2","features":[36]},{"name":"N_TSHIFT","features":[36]},{"name":"NormalError","features":[36]},{"name":"OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME","features":[36]},{"name":"PACKEDEVENTINFO","features":[36]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[36]},{"name":"PARKING_TOPOLOGY_POLICY_ROUNDROBIN","features":[36]},{"name":"PARKING_TOPOLOGY_POLICY_SEQUENTIAL","features":[36]},{"name":"PDCAP_D0_SUPPORTED","features":[36]},{"name":"PDCAP_D1_SUPPORTED","features":[36]},{"name":"PDCAP_D2_SUPPORTED","features":[36]},{"name":"PDCAP_D3_SUPPORTED","features":[36]},{"name":"PDCAP_WAKE_FROM_D0_SUPPORTED","features":[36]},{"name":"PDCAP_WAKE_FROM_D1_SUPPORTED","features":[36]},{"name":"PDCAP_WAKE_FROM_D2_SUPPORTED","features":[36]},{"name":"PDCAP_WAKE_FROM_D3_SUPPORTED","features":[36]},{"name":"PDCAP_WARM_EJECT_SUPPORTED","features":[36]},{"name":"PERFORMANCE_DATA_VERSION","features":[36]},{"name":"PERFSTATE_POLICY_CHANGE_DECREASE_MAX","features":[36]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL","features":[36]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL_AGGRESSIVE","features":[36]},{"name":"PERFSTATE_POLICY_CHANGE_INCREASE_MAX","features":[36]},{"name":"PERFSTATE_POLICY_CHANGE_ROCKET","features":[36]},{"name":"PERFSTATE_POLICY_CHANGE_SINGLE","features":[36]},{"name":"PEXCEPTION_FILTER","features":[1,30,7,36]},{"name":"PF_NON_TEMPORAL_LEVEL_ALL","features":[36]},{"name":"PF_TEMPORAL_LEVEL_1","features":[36]},{"name":"PF_TEMPORAL_LEVEL_2","features":[36]},{"name":"PF_TEMPORAL_LEVEL_3","features":[36]},{"name":"PIMAGE_TLS_CALLBACK","features":[36]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[36]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[1,30,36]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[1,30,36]},{"name":"POWERBUTTON_ACTION_INDEX_HIBERNATE","features":[36]},{"name":"POWERBUTTON_ACTION_INDEX_NOTHING","features":[36]},{"name":"POWERBUTTON_ACTION_INDEX_SHUTDOWN","features":[36]},{"name":"POWERBUTTON_ACTION_INDEX_SLEEP","features":[36]},{"name":"POWERBUTTON_ACTION_INDEX_TURN_OFF_THE_DISPLAY","features":[36]},{"name":"POWERBUTTON_ACTION_VALUE_HIBERNATE","features":[36]},{"name":"POWERBUTTON_ACTION_VALUE_NOTHING","features":[36]},{"name":"POWERBUTTON_ACTION_VALUE_SHUTDOWN","features":[36]},{"name":"POWERBUTTON_ACTION_VALUE_SLEEP","features":[36]},{"name":"POWERBUTTON_ACTION_VALUE_TURN_OFF_THE_DISPLAY","features":[36]},{"name":"POWER_ACTION_ACPI_CRITICAL","features":[36]},{"name":"POWER_ACTION_ACPI_USER_NOTIFY","features":[36]},{"name":"POWER_ACTION_CRITICAL","features":[36]},{"name":"POWER_ACTION_DIRECTED_DRIPS","features":[36]},{"name":"POWER_ACTION_DISABLE_WAKES","features":[36]},{"name":"POWER_ACTION_DOZE_TO_HIBERNATE","features":[36]},{"name":"POWER_ACTION_HIBERBOOT","features":[36]},{"name":"POWER_ACTION_LIGHTEST_FIRST","features":[36]},{"name":"POWER_ACTION_LOCK_CONSOLE","features":[36]},{"name":"POWER_ACTION_OVERRIDE_APPS","features":[36]},{"name":"POWER_ACTION_PSEUDO_TRANSITION","features":[36]},{"name":"POWER_ACTION_QUERY_ALLOWED","features":[36]},{"name":"POWER_ACTION_UI_ALLOWED","features":[36]},{"name":"POWER_ACTION_USER_NOTIFY","features":[36]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_DISABLED","features":[36]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_ENABLED","features":[36]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_SYSTEM_MANAGED","features":[36]},{"name":"POWER_DEVICE_IDLE_POLICY_CONSERVATIVE","features":[36]},{"name":"POWER_DEVICE_IDLE_POLICY_PERFORMANCE","features":[36]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_AGGRESSIVE","features":[36]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_NORMAL","features":[36]},{"name":"POWER_REQUEST_CONTEXT_VERSION","features":[36]},{"name":"POWER_SETTING_VALUE_VERSION","features":[36]},{"name":"POWER_SYSTEM_MAXIMUM","features":[36]},{"name":"POWER_USER_NOTIFY_FORCED_SHUTDOWN","features":[36]},{"name":"PO_THROTTLE_ADAPTIVE","features":[36]},{"name":"PO_THROTTLE_CONSTANT","features":[36]},{"name":"PO_THROTTLE_DEGRADE","features":[36]},{"name":"PO_THROTTLE_MAXIMUM","features":[36]},{"name":"PO_THROTTLE_NONE","features":[36]},{"name":"PRAGMA_DEPRECATED_DDK","features":[36]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[36]},{"name":"PROCESSOR_ALPHA_21064","features":[36]},{"name":"PROCESSOR_AMD_X8664","features":[36]},{"name":"PROCESSOR_ARM720","features":[36]},{"name":"PROCESSOR_ARM820","features":[36]},{"name":"PROCESSOR_ARM920","features":[36]},{"name":"PROCESSOR_ARM_7TDMI","features":[36]},{"name":"PROCESSOR_DUTY_CYCLING_DISABLED","features":[36]},{"name":"PROCESSOR_DUTY_CYCLING_ENABLED","features":[36]},{"name":"PROCESSOR_HITACHI_SH3","features":[36]},{"name":"PROCESSOR_HITACHI_SH3E","features":[36]},{"name":"PROCESSOR_HITACHI_SH4","features":[36]},{"name":"PROCESSOR_IDLESTATE_INFO","features":[36]},{"name":"PROCESSOR_IDLESTATE_POLICY","features":[36]},{"name":"PROCESSOR_IDLESTATE_POLICY_COUNT","features":[36]},{"name":"PROCESSOR_INTEL_386","features":[36]},{"name":"PROCESSOR_INTEL_486","features":[36]},{"name":"PROCESSOR_INTEL_IA64","features":[36]},{"name":"PROCESSOR_INTEL_PENTIUM","features":[36]},{"name":"PROCESSOR_MIPS_R4000","features":[36]},{"name":"PROCESSOR_MOTOROLA_821","features":[36]},{"name":"PROCESSOR_OPTIL","features":[36]},{"name":"PROCESSOR_PERFSTATE_POLICY","features":[36]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_DISABLED","features":[36]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_ENABLED","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE_AT_GUARANTEED","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_DISABLED","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE_AT_GUARANTEED","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_ENABLED","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_ENABLED","features":[36]},{"name":"PROCESSOR_PERF_BOOST_MODE_MAX","features":[36]},{"name":"PROCESSOR_PERF_BOOST_POLICY_DISABLED","features":[36]},{"name":"PROCESSOR_PERF_BOOST_POLICY_MAX","features":[36]},{"name":"PROCESSOR_PERF_ENERGY_PREFERENCE","features":[36]},{"name":"PROCESSOR_PERF_MAXIMUM_ACTIVITY_WINDOW","features":[36]},{"name":"PROCESSOR_PERF_MINIMUM_ACTIVITY_WINDOW","features":[36]},{"name":"PROCESSOR_PERF_PERFORMANCE_PREFERENCE","features":[36]},{"name":"PROCESSOR_PPC_601","features":[36]},{"name":"PROCESSOR_PPC_603","features":[36]},{"name":"PROCESSOR_PPC_604","features":[36]},{"name":"PROCESSOR_PPC_620","features":[36]},{"name":"PROCESSOR_SHx_SH3","features":[36]},{"name":"PROCESSOR_SHx_SH4","features":[36]},{"name":"PROCESSOR_STRONGARM","features":[36]},{"name":"PROCESSOR_THROTTLE_AUTOMATIC","features":[36]},{"name":"PROCESSOR_THROTTLE_DISABLED","features":[36]},{"name":"PROCESSOR_THROTTLE_ENABLED","features":[36]},{"name":"PROCESS_HEAP_ENTRY_BUSY","features":[36]},{"name":"PROCESS_HEAP_ENTRY_DDESHARE","features":[36]},{"name":"PROCESS_HEAP_ENTRY_MOVEABLE","features":[36]},{"name":"PROCESS_HEAP_REGION","features":[36]},{"name":"PROCESS_HEAP_SEG_ALLOC","features":[36]},{"name":"PROCESS_HEAP_UNCOMMITTED_RANGE","features":[36]},{"name":"PROCESS_MITIGATION_ACTIVATION_CONTEXT_TRUST_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_ASLR_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_CHILD_PROCESS_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_DEP_POLICY","features":[1,36]},{"name":"PROCESS_MITIGATION_DYNAMIC_CODE_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_FONT_DISABLE_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_IMAGE_LOAD_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_REDIRECTION_TRUST_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_SEHOP_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_SIDE_CHANNEL_ISOLATION_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_USER_POINTER_AUTH_POLICY","features":[36]},{"name":"PROCESS_MITIGATION_USER_SHADOW_STACK_POLICY","features":[36]},{"name":"PROCESS_TRUST_LABEL_SECURITY_INFORMATION","features":[36]},{"name":"PROC_IDLE_BUCKET_COUNT","features":[36]},{"name":"PROC_IDLE_BUCKET_COUNT_EX","features":[36]},{"name":"PRODUCT_ARM64_SERVER","features":[36]},{"name":"PRODUCT_AZURESTACKHCI_SERVER_CORE","features":[36]},{"name":"PRODUCT_AZURE_NANO_SERVER","features":[36]},{"name":"PRODUCT_AZURE_SERVER_CLOUDHOST","features":[36]},{"name":"PRODUCT_AZURE_SERVER_CLOUDMOS","features":[36]},{"name":"PRODUCT_AZURE_SERVER_CORE","features":[36]},{"name":"PRODUCT_CLOUD","features":[36]},{"name":"PRODUCT_CLOUDE","features":[36]},{"name":"PRODUCT_CLOUDEDITION","features":[36]},{"name":"PRODUCT_CLOUDEDITIONN","features":[36]},{"name":"PRODUCT_CLOUDEN","features":[36]},{"name":"PRODUCT_CLOUDN","features":[36]},{"name":"PRODUCT_CLOUD_HOST_INFRASTRUCTURE_SERVER","features":[36]},{"name":"PRODUCT_CLOUD_STORAGE_SERVER","features":[36]},{"name":"PRODUCT_CONNECTED_CAR","features":[36]},{"name":"PRODUCT_CORE_ARM","features":[36]},{"name":"PRODUCT_CORE_CONNECTED","features":[36]},{"name":"PRODUCT_CORE_CONNECTED_COUNTRYSPECIFIC","features":[36]},{"name":"PRODUCT_CORE_CONNECTED_N","features":[36]},{"name":"PRODUCT_CORE_CONNECTED_SINGLELANGUAGE","features":[36]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER_CORE","features":[36]},{"name":"PRODUCT_DATACENTER_NANO_SERVER","features":[36]},{"name":"PRODUCT_DATACENTER_SERVER_AZURE_EDITION","features":[36]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_AZURE_EDITION","features":[36]},{"name":"PRODUCT_DATACENTER_WS_SERVER_CORE","features":[36]},{"name":"PRODUCT_EMBEDDED","features":[36]},{"name":"PRODUCT_EMBEDDED_A","features":[36]},{"name":"PRODUCT_EMBEDDED_AUTOMOTIVE","features":[36]},{"name":"PRODUCT_EMBEDDED_E","features":[36]},{"name":"PRODUCT_EMBEDDED_EVAL","features":[36]},{"name":"PRODUCT_EMBEDDED_E_EVAL","features":[36]},{"name":"PRODUCT_EMBEDDED_INDUSTRY","features":[36]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A","features":[36]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A_E","features":[36]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E","features":[36]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_EVAL","features":[36]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E_EVAL","features":[36]},{"name":"PRODUCT_ENTERPRISEG","features":[36]},{"name":"PRODUCT_ENTERPRISEGN","features":[36]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION","features":[36]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION_N","features":[36]},{"name":"PRODUCT_HOLOGRAPHIC","features":[36]},{"name":"PRODUCT_HOLOGRAPHIC_BUSINESS","features":[36]},{"name":"PRODUCT_HUBOS","features":[36]},{"name":"PRODUCT_INDUSTRY_HANDHELD","features":[36]},{"name":"PRODUCT_IOTEDGEOS","features":[36]},{"name":"PRODUCT_IOTENTERPRISE","features":[36]},{"name":"PRODUCT_IOTENTERPRISES","features":[36]},{"name":"PRODUCT_IOTOS","features":[36]},{"name":"PRODUCT_LITE","features":[36]},{"name":"PRODUCT_NANO_SERVER","features":[36]},{"name":"PRODUCT_ONECOREUPDATEOS","features":[36]},{"name":"PRODUCT_PPI_PRO","features":[36]},{"name":"PRODUCT_PROFESSIONAL_EMBEDDED","features":[36]},{"name":"PRODUCT_PROFESSIONAL_S","features":[36]},{"name":"PRODUCT_PROFESSIONAL_STUDENT","features":[36]},{"name":"PRODUCT_PROFESSIONAL_STUDENT_N","features":[36]},{"name":"PRODUCT_PROFESSIONAL_S_N","features":[36]},{"name":"PRODUCT_PRO_CHINA","features":[36]},{"name":"PRODUCT_PRO_FOR_EDUCATION","features":[36]},{"name":"PRODUCT_PRO_FOR_EDUCATION_N","features":[36]},{"name":"PRODUCT_PRO_SINGLE_LANGUAGE","features":[36]},{"name":"PRODUCT_SERVERRDSH","features":[36]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER_CORE","features":[36]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER_CORE","features":[36]},{"name":"PRODUCT_STANDARD_NANO_SERVER","features":[36]},{"name":"PRODUCT_STANDARD_SERVER_CORE","features":[36]},{"name":"PRODUCT_STANDARD_WS_SERVER_CORE","features":[36]},{"name":"PRODUCT_THINPC","features":[36]},{"name":"PRODUCT_UNLICENSED","features":[36]},{"name":"PRODUCT_UTILITY_VM","features":[36]},{"name":"PRODUCT_XBOX_DURANGOHOSTOS","features":[36]},{"name":"PRODUCT_XBOX_ERAOS","features":[36]},{"name":"PRODUCT_XBOX_GAMEOS","features":[36]},{"name":"PRODUCT_XBOX_KEYSTONE","features":[36]},{"name":"PRODUCT_XBOX_SCARLETTHOSTOS","features":[36]},{"name":"PRODUCT_XBOX_SYSTEMOS","features":[36]},{"name":"PTERMINATION_HANDLER","features":[1,36]},{"name":"PTERMINATION_HANDLER","features":[1,36]},{"name":"PUMS_SCHEDULER_ENTRY_POINT","features":[36]},{"name":"PcTeb","features":[36]},{"name":"PdataCrChained","features":[36]},{"name":"PdataCrChainedWithPac","features":[36]},{"name":"PdataCrUnchained","features":[36]},{"name":"PdataCrUnchainedSavedLr","features":[36]},{"name":"PdataPackedUnwindFragment","features":[36]},{"name":"PdataPackedUnwindFunction","features":[36]},{"name":"PdataRefToFullXdata","features":[36]},{"name":"PowerMonitorDim","features":[36]},{"name":"PowerMonitorOff","features":[36]},{"name":"PowerMonitorOn","features":[36]},{"name":"QUOTA_LIMITS_EX","features":[36]},{"name":"QUOTA_LIMITS_USE_DEFAULT_LIMITS","features":[36]},{"name":"RATE_QUOTA_LIMIT","features":[36]},{"name":"READ_THREAD_PROFILING_FLAG_DISPATCHING","features":[36]},{"name":"READ_THREAD_PROFILING_FLAG_HARDWARE_COUNTERS","features":[36]},{"name":"REARRANGE_FILE_DATA","features":[1,36]},{"name":"REARRANGE_FILE_DATA32","features":[36]},{"name":"RECO_COPY","features":[36]},{"name":"RECO_CUT","features":[36]},{"name":"RECO_DRAG","features":[36]},{"name":"RECO_DROP","features":[36]},{"name":"RECO_FLAGS","features":[36]},{"name":"RECO_PASTE","features":[36]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO","features":[36]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO_VERSION","features":[36]},{"name":"REG_APP_HIVE","features":[36]},{"name":"REG_APP_HIVE_OPEN_READ_ONLY","features":[36]},{"name":"REG_BOOT_HIVE","features":[36]},{"name":"REG_FLUSH_HIVE_FILE_GROWTH","features":[36]},{"name":"REG_FORCE_UNLOAD","features":[36]},{"name":"REG_HIVE_EXACT_FILE_GROWTH","features":[36]},{"name":"REG_HIVE_NO_RM","features":[36]},{"name":"REG_HIVE_SINGLE_LOG","features":[36]},{"name":"REG_IMMUTABLE","features":[36]},{"name":"REG_LOAD_HIVE_OPEN_HANDLE","features":[36]},{"name":"REG_NO_IMPERSONATION_FALLBACK","features":[36]},{"name":"REG_NO_LAZY_FLUSH","features":[36]},{"name":"REG_OPEN_READ_ONLY","features":[36]},{"name":"REG_PROCESS_PRIVATE","features":[36]},{"name":"REG_REFRESH_HIVE","features":[36]},{"name":"REG_START_JOURNAL","features":[36]},{"name":"REG_UNLOAD_LEGAL_FLAGS","features":[36]},{"name":"RESOURCEMANAGER_BASIC_INFORMATION","features":[36]},{"name":"RESOURCEMANAGER_COMPLETE_PROPAGATION","features":[36]},{"name":"RESOURCEMANAGER_COMPLETION_INFORMATION","features":[1,36]},{"name":"RESOURCEMANAGER_ENLIST","features":[36]},{"name":"RESOURCEMANAGER_GET_NOTIFICATION","features":[36]},{"name":"RESOURCEMANAGER_INFORMATION_CLASS","features":[36]},{"name":"RESOURCEMANAGER_QUERY_INFORMATION","features":[36]},{"name":"RESOURCEMANAGER_RECOVER","features":[36]},{"name":"RESOURCEMANAGER_REGISTER_PROTOCOL","features":[36]},{"name":"RESOURCEMANAGER_SET_INFORMATION","features":[36]},{"name":"ROT_COMPARE_MAX","features":[36]},{"name":"RTL_UMS_SCHEDULER_REASON","features":[36]},{"name":"RTL_UMS_VERSION","features":[36]},{"name":"RTL_VIRTUAL_UNWIND2_VALIDATE_PAC","features":[36]},{"name":"RUNTIME_FUNCTION_INDIRECT","features":[36]},{"name":"RecognizerType","features":[36]},{"name":"RemHBITMAP","features":[36]},{"name":"RemHBRUSH","features":[36]},{"name":"RemHENHMETAFILE","features":[36]},{"name":"RemHGLOBAL","features":[36]},{"name":"RemHMETAFILEPICT","features":[36]},{"name":"RemHPALETTE","features":[36]},{"name":"RemotableHandle","features":[36]},{"name":"ReplacesCorHdrNumericDefines","features":[36]},{"name":"ResourceManagerBasicInformation","features":[36]},{"name":"ResourceManagerCompletionInformation","features":[36]},{"name":"RunlevelInformationInActivationContext","features":[36]},{"name":"SCOPE_TABLE_AMD64","features":[36]},{"name":"SCOPE_TABLE_ARM","features":[36]},{"name":"SCOPE_TABLE_ARM64","features":[36]},{"name":"SCRUB_DATA_INPUT","features":[36]},{"name":"SCRUB_DATA_INPUT_FLAG_IGNORE_REDUNDANCY","features":[36]},{"name":"SCRUB_DATA_INPUT_FLAG_OPLOCK_NOT_ACQUIRED","features":[36]},{"name":"SCRUB_DATA_INPUT_FLAG_RESUME","features":[36]},{"name":"SCRUB_DATA_INPUT_FLAG_SCRUB_BY_OBJECT_ID","features":[36]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_DATA","features":[36]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_IN_SYNC","features":[36]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_NON_INTEGRITY_DATA","features":[36]},{"name":"SCRUB_DATA_OUTPUT","features":[36]},{"name":"SCRUB_DATA_OUTPUT_FLAG_INCOMPLETE","features":[36]},{"name":"SCRUB_DATA_OUTPUT_FLAG_NON_USER_DATA_RANGE","features":[36]},{"name":"SCRUB_DATA_OUTPUT_FLAG_PARITY_EXTENT_DATA_RETURNED","features":[36]},{"name":"SCRUB_DATA_OUTPUT_FLAG_RESUME_CONTEXT_LENGTH_SPECIFIED","features":[36]},{"name":"SCRUB_PARITY_EXTENT","features":[36]},{"name":"SCRUB_PARITY_EXTENT_DATA","features":[36]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[36]},{"name":"SECURITY_APPPOOL_ID_BASE_RID","features":[36]},{"name":"SECURITY_APPPOOL_ID_RID_COUNT","features":[36]},{"name":"SECURITY_APP_PACKAGE_BASE_RID","features":[36]},{"name":"SECURITY_APP_PACKAGE_RID_COUNT","features":[36]},{"name":"SECURITY_AUTHENTICATED_USER_RID","features":[36]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_ASSERTED_RID","features":[36]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_RID_COUNT","features":[36]},{"name":"SECURITY_AUTHENTICATION_FRESH_KEY_AUTH_RID","features":[36]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_ATTESTATION_RID","features":[36]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_MFA_RID","features":[36]},{"name":"SECURITY_AUTHENTICATION_KEY_TRUST_RID","features":[36]},{"name":"SECURITY_AUTHENTICATION_SERVICE_ASSERTED_RID","features":[36]},{"name":"SECURITY_BATCH_RID","features":[36]},{"name":"SECURITY_BUILTIN_APP_PACKAGE_RID_COUNT","features":[36]},{"name":"SECURITY_BUILTIN_CAPABILITY_RID_COUNT","features":[36]},{"name":"SECURITY_BUILTIN_DOMAIN_RID","features":[36]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE","features":[36]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_RESTRICTED_PACKAGE","features":[36]},{"name":"SECURITY_CAPABILITY_APPOINTMENTS","features":[36]},{"name":"SECURITY_CAPABILITY_APP_RID","features":[36]},{"name":"SECURITY_CAPABILITY_APP_SILO_RID","features":[36]},{"name":"SECURITY_CAPABILITY_BASE_RID","features":[36]},{"name":"SECURITY_CAPABILITY_CONTACTS","features":[36]},{"name":"SECURITY_CAPABILITY_DOCUMENTS_LIBRARY","features":[36]},{"name":"SECURITY_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[36]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT","features":[36]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT_SERVER","features":[36]},{"name":"SECURITY_CAPABILITY_INTERNET_EXPLORER","features":[36]},{"name":"SECURITY_CAPABILITY_MUSIC_LIBRARY","features":[36]},{"name":"SECURITY_CAPABILITY_PICTURES_LIBRARY","features":[36]},{"name":"SECURITY_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[36]},{"name":"SECURITY_CAPABILITY_REMOVABLE_STORAGE","features":[36]},{"name":"SECURITY_CAPABILITY_RID_COUNT","features":[36]},{"name":"SECURITY_CAPABILITY_SHARED_USER_CERTIFICATES","features":[36]},{"name":"SECURITY_CAPABILITY_VIDEOS_LIBRARY","features":[36]},{"name":"SECURITY_CCG_ID_BASE_RID","features":[36]},{"name":"SECURITY_CHILD_PACKAGE_RID_COUNT","features":[36]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_BASE_RID","features":[36]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_RID_COUNT","features":[36]},{"name":"SECURITY_COM_ID_BASE_RID","features":[36]},{"name":"SECURITY_CREATOR_GROUP_RID","features":[36]},{"name":"SECURITY_CREATOR_GROUP_SERVER_RID","features":[36]},{"name":"SECURITY_CREATOR_OWNER_RID","features":[36]},{"name":"SECURITY_CREATOR_OWNER_RIGHTS_RID","features":[36]},{"name":"SECURITY_CREATOR_OWNER_SERVER_RID","features":[36]},{"name":"SECURITY_CRED_TYPE_BASE_RID","features":[36]},{"name":"SECURITY_CRED_TYPE_RID_COUNT","features":[36]},{"name":"SECURITY_CRED_TYPE_THIS_ORG_CERT_RID","features":[36]},{"name":"SECURITY_DASHOST_ID_BASE_RID","features":[36]},{"name":"SECURITY_DASHOST_ID_RID_COUNT","features":[36]},{"name":"SECURITY_DESCRIPTOR_REVISION","features":[36]},{"name":"SECURITY_DESCRIPTOR_REVISION1","features":[36]},{"name":"SECURITY_DIALUP_RID","features":[36]},{"name":"SECURITY_ENTERPRISE_CONTROLLERS_RID","features":[36]},{"name":"SECURITY_ENTERPRISE_READONLY_CONTROLLERS_RID","features":[36]},{"name":"SECURITY_INSTALLER_CAPABILITY_RID_COUNT","features":[36]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_BASE","features":[36]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_RID_COUNT","features":[36]},{"name":"SECURITY_INTERACTIVE_RID","features":[36]},{"name":"SECURITY_IUSER_RID","features":[36]},{"name":"SECURITY_LOCAL_ACCOUNT_AND_ADMIN_RID","features":[36]},{"name":"SECURITY_LOCAL_ACCOUNT_RID","features":[36]},{"name":"SECURITY_LOCAL_LOGON_RID","features":[36]},{"name":"SECURITY_LOCAL_RID","features":[36]},{"name":"SECURITY_LOCAL_SERVICE_RID","features":[36]},{"name":"SECURITY_LOCAL_SYSTEM_RID","features":[36]},{"name":"SECURITY_LOGON_IDS_RID","features":[36]},{"name":"SECURITY_LOGON_IDS_RID_COUNT","features":[36]},{"name":"SECURITY_MANDATORY_HIGH_RID","features":[36]},{"name":"SECURITY_MANDATORY_LOW_RID","features":[36]},{"name":"SECURITY_MANDATORY_MAXIMUM_USER_RID","features":[36]},{"name":"SECURITY_MANDATORY_MEDIUM_PLUS_RID","features":[36]},{"name":"SECURITY_MANDATORY_MEDIUM_RID","features":[36]},{"name":"SECURITY_MANDATORY_PROTECTED_PROCESS_RID","features":[36]},{"name":"SECURITY_MANDATORY_SYSTEM_RID","features":[36]},{"name":"SECURITY_MANDATORY_UNTRUSTED_RID","features":[36]},{"name":"SECURITY_MAX_ALWAYS_FILTERED","features":[36]},{"name":"SECURITY_MAX_BASE_RID","features":[36]},{"name":"SECURITY_MIN_BASE_RID","features":[36]},{"name":"SECURITY_MIN_NEVER_FILTERED","features":[36]},{"name":"SECURITY_NETWORK_RID","features":[36]},{"name":"SECURITY_NETWORK_SERVICE_RID","features":[36]},{"name":"SECURITY_NFS_ID_BASE_RID","features":[36]},{"name":"SECURITY_NT_NON_UNIQUE","features":[36]},{"name":"SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT","features":[36]},{"name":"SECURITY_NULL_RID","features":[36]},{"name":"SECURITY_OBJECT_AI_PARAMS","features":[36]},{"name":"SECURITY_OTHER_ORGANIZATION_RID","features":[36]},{"name":"SECURITY_PACKAGE_BASE_RID","features":[36]},{"name":"SECURITY_PACKAGE_DIGEST_RID","features":[36]},{"name":"SECURITY_PACKAGE_NTLM_RID","features":[36]},{"name":"SECURITY_PACKAGE_RID_COUNT","features":[36]},{"name":"SECURITY_PACKAGE_SCHANNEL_RID","features":[36]},{"name":"SECURITY_PARENT_PACKAGE_RID_COUNT","features":[36]},{"name":"SECURITY_PRINCIPAL_SELF_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_ANTIMALWARE_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_APP_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_AUTHENTICODE_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_NONE_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINDOWS_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINTCB_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_FULL_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_LITE_RID","features":[36]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_NONE_RID","features":[36]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY_RID_COUNT","features":[36]},{"name":"SECURITY_PROXY_RID","features":[36]},{"name":"SECURITY_RDV_GFX_BASE_RID","features":[36]},{"name":"SECURITY_REMOTE_LOGON_RID","features":[36]},{"name":"SECURITY_RESERVED_ID_BASE_RID","features":[36]},{"name":"SECURITY_RESTRICTED_CODE_RID","features":[36]},{"name":"SECURITY_SERVER_LOGON_RID","features":[36]},{"name":"SECURITY_SERVICE_ID_BASE_RID","features":[36]},{"name":"SECURITY_SERVICE_ID_RID_COUNT","features":[36]},{"name":"SECURITY_SERVICE_RID","features":[36]},{"name":"SECURITY_TASK_ID_BASE_RID","features":[36]},{"name":"SECURITY_TERMINAL_SERVER_RID","features":[36]},{"name":"SECURITY_THIS_ORGANIZATION_RID","features":[36]},{"name":"SECURITY_TRUSTED_INSTALLER_RID1","features":[36]},{"name":"SECURITY_TRUSTED_INSTALLER_RID2","features":[36]},{"name":"SECURITY_TRUSTED_INSTALLER_RID3","features":[36]},{"name":"SECURITY_TRUSTED_INSTALLER_RID4","features":[36]},{"name":"SECURITY_TRUSTED_INSTALLER_RID5","features":[36]},{"name":"SECURITY_UMFD_BASE_RID","features":[36]},{"name":"SECURITY_USERMANAGER_ID_BASE_RID","features":[36]},{"name":"SECURITY_USERMANAGER_ID_RID_COUNT","features":[36]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_BASE_RID","features":[36]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_RID_COUNT","features":[36]},{"name":"SECURITY_VIRTUALACCOUNT_ID_RID_COUNT","features":[36]},{"name":"SECURITY_VIRTUALSERVER_ID_BASE_RID","features":[36]},{"name":"SECURITY_VIRTUALSERVER_ID_RID_COUNT","features":[36]},{"name":"SECURITY_WINDOWSMOBILE_ID_BASE_RID","features":[36]},{"name":"SECURITY_WINDOW_MANAGER_BASE_RID","features":[36]},{"name":"SECURITY_WINRM_ID_BASE_RID","features":[36]},{"name":"SECURITY_WINRM_ID_RID_COUNT","features":[36]},{"name":"SECURITY_WMIHOST_ID_BASE_RID","features":[36]},{"name":"SECURITY_WMIHOST_ID_RID_COUNT","features":[36]},{"name":"SECURITY_WORLD_RID","features":[36]},{"name":"SECURITY_WRITE_RESTRICTED_CODE_RID","features":[36]},{"name":"SEC_HUGE_PAGES","features":[36]},{"name":"SEF_AI_USE_EXTRA_PARAMS","features":[36]},{"name":"SEF_FORCE_USER_MODE","features":[36]},{"name":"SEF_NORMALIZE_OUTPUT_DESCRIPTOR","features":[36]},{"name":"SERVERSILO_BASIC_INFORMATION","features":[1,36]},{"name":"SERVERSILO_INITING","features":[36]},{"name":"SERVERSILO_SHUTTING_DOWN","features":[36]},{"name":"SERVERSILO_STARTED","features":[36]},{"name":"SERVERSILO_STATE","features":[36]},{"name":"SERVERSILO_TERMINATED","features":[36]},{"name":"SERVERSILO_TERMINATING","features":[36]},{"name":"SERVICE_ERROR_TYPE","features":[36]},{"name":"SERVICE_INTERACTIVE_PROCESS","features":[36]},{"name":"SERVICE_LOAD_TYPE","features":[36]},{"name":"SERVICE_NODE_TYPE","features":[36]},{"name":"SERVICE_PKG_SERVICE","features":[36]},{"name":"SERVICE_USERSERVICE_INSTANCE","features":[36]},{"name":"SERVICE_USER_SERVICE","features":[36]},{"name":"SESSION_MODIFY_ACCESS","features":[36]},{"name":"SESSION_QUERY_ACCESS","features":[36]},{"name":"SE_ACCESS_CHECK_FLAG_NO_LEARNING_MODE_LOGGING","features":[36]},{"name":"SE_ACCESS_CHECK_VALID_FLAGS","features":[36]},{"name":"SE_ACTIVATE_AS_USER_CAPABILITY","features":[36]},{"name":"SE_APP_SILO_PRINT_CAPABILITY","features":[36]},{"name":"SE_APP_SILO_PROFILES_ROOT_MINIMAL_CAPABILITY","features":[36]},{"name":"SE_APP_SILO_USER_PROFILE_MINIMAL_CAPABILITY","features":[36]},{"name":"SE_APP_SILO_VOLUME_ROOT_MINIMAL_CAPABILITY","features":[36]},{"name":"SE_CONSTRAINED_IMPERSONATION_CAPABILITY","features":[36]},{"name":"SE_DEVELOPMENT_MODE_NETWORK_CAPABILITY","features":[36]},{"name":"SE_GROUP_ENABLED","features":[36]},{"name":"SE_GROUP_ENABLED_BY_DEFAULT","features":[36]},{"name":"SE_GROUP_INTEGRITY","features":[36]},{"name":"SE_GROUP_INTEGRITY_ENABLED","features":[36]},{"name":"SE_GROUP_LOGON_ID","features":[36]},{"name":"SE_GROUP_MANDATORY","features":[36]},{"name":"SE_GROUP_OWNER","features":[36]},{"name":"SE_GROUP_RESOURCE","features":[36]},{"name":"SE_GROUP_USE_FOR_DENY_ONLY","features":[36]},{"name":"SE_IMAGE_SIGNATURE_TYPE","features":[36]},{"name":"SE_LEARNING_MODE_LOGGING_CAPABILITY","features":[36]},{"name":"SE_MUMA_CAPABILITY","features":[36]},{"name":"SE_PERMISSIVE_LEARNING_MODE_CAPABILITY","features":[36]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_ACCESS_FILTER_ACE","features":[36]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_LABEL_ACE","features":[36]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_OWNER_ACE","features":[36]},{"name":"SE_SECURITY_DESCRIPTOR_VALID_FLAGS","features":[36]},{"name":"SE_SESSION_IMPERSONATION_CAPABILITY","features":[36]},{"name":"SE_SIGNING_LEVEL_ANTIMALWARE","features":[36]},{"name":"SE_SIGNING_LEVEL_AUTHENTICODE","features":[36]},{"name":"SE_SIGNING_LEVEL_CUSTOM_1","features":[36]},{"name":"SE_SIGNING_LEVEL_CUSTOM_2","features":[36]},{"name":"SE_SIGNING_LEVEL_CUSTOM_3","features":[36]},{"name":"SE_SIGNING_LEVEL_CUSTOM_4","features":[36]},{"name":"SE_SIGNING_LEVEL_CUSTOM_5","features":[36]},{"name":"SE_SIGNING_LEVEL_CUSTOM_6","features":[36]},{"name":"SE_SIGNING_LEVEL_CUSTOM_7","features":[36]},{"name":"SE_SIGNING_LEVEL_DEVELOPER","features":[36]},{"name":"SE_SIGNING_LEVEL_DYNAMIC_CODEGEN","features":[36]},{"name":"SE_SIGNING_LEVEL_ENTERPRISE","features":[36]},{"name":"SE_SIGNING_LEVEL_MICROSOFT","features":[36]},{"name":"SE_SIGNING_LEVEL_STORE","features":[36]},{"name":"SE_SIGNING_LEVEL_UNCHECKED","features":[36]},{"name":"SE_SIGNING_LEVEL_UNSIGNED","features":[36]},{"name":"SE_SIGNING_LEVEL_WINDOWS","features":[36]},{"name":"SE_SIGNING_LEVEL_WINDOWS_TCB","features":[36]},{"name":"SE_TOKEN_USER","features":[1,4,36]},{"name":"SFGAO_BROWSABLE","features":[36]},{"name":"SFGAO_CANCOPY","features":[36]},{"name":"SFGAO_CANDELETE","features":[36]},{"name":"SFGAO_CANLINK","features":[36]},{"name":"SFGAO_CANMONIKER","features":[36]},{"name":"SFGAO_CANMOVE","features":[36]},{"name":"SFGAO_CANRENAME","features":[36]},{"name":"SFGAO_CAPABILITYMASK","features":[36]},{"name":"SFGAO_COMPRESSED","features":[36]},{"name":"SFGAO_CONTENTSMASK","features":[36]},{"name":"SFGAO_DISPLAYATTRMASK","features":[36]},{"name":"SFGAO_DROPTARGET","features":[36]},{"name":"SFGAO_ENCRYPTED","features":[36]},{"name":"SFGAO_FILESYSANCESTOR","features":[36]},{"name":"SFGAO_FILESYSTEM","features":[36]},{"name":"SFGAO_FLAGS","features":[36]},{"name":"SFGAO_FOLDER","features":[36]},{"name":"SFGAO_GHOSTED","features":[36]},{"name":"SFGAO_HASPROPSHEET","features":[36]},{"name":"SFGAO_HASSTORAGE","features":[36]},{"name":"SFGAO_HASSUBFOLDER","features":[36]},{"name":"SFGAO_HIDDEN","features":[36]},{"name":"SFGAO_ISSLOW","features":[36]},{"name":"SFGAO_LINK","features":[36]},{"name":"SFGAO_NEWCONTENT","features":[36]},{"name":"SFGAO_NONENUMERATED","features":[36]},{"name":"SFGAO_PKEYSFGAOMASK","features":[36]},{"name":"SFGAO_PLACEHOLDER","features":[36]},{"name":"SFGAO_READONLY","features":[36]},{"name":"SFGAO_REMOVABLE","features":[36]},{"name":"SFGAO_SHARE","features":[36]},{"name":"SFGAO_STORAGE","features":[36]},{"name":"SFGAO_STORAGEANCESTOR","features":[36]},{"name":"SFGAO_STORAGECAPMASK","features":[36]},{"name":"SFGAO_STREAM","features":[36]},{"name":"SFGAO_SYSTEM","features":[36]},{"name":"SFGAO_VALIDATE","features":[36]},{"name":"SHARED_VIRTUAL_DISK_SUPPORT","features":[36]},{"name":"SHUFFLE_FILE_DATA","features":[36]},{"name":"SHUFFLE_FILE_FLAG_SKIP_INITIALIZING_NEW_CLUSTERS","features":[36]},{"name":"SID_HASH_SIZE","features":[36]},{"name":"SID_MAX_SUB_AUTHORITIES","features":[36]},{"name":"SID_RECOMMENDED_SUB_AUTHORITIES","features":[36]},{"name":"SID_REVISION","features":[36]},{"name":"SILOOBJECT_BASIC_INFORMATION","features":[1,36]},{"name":"SIZEOF_RFPO_DATA","features":[36]},{"name":"SIZE_OF_80387_REGISTERS","features":[36]},{"name":"SMB_CCF_APP_INSTANCE_EA_NAME","features":[36]},{"name":"SMT_UNPARKING_POLICY_CORE","features":[36]},{"name":"SMT_UNPARKING_POLICY_CORE_PER_THREAD","features":[36]},{"name":"SMT_UNPARKING_POLICY_LP_ROUNDROBIN","features":[36]},{"name":"SMT_UNPARKING_POLICY_LP_SEQUENTIAL","features":[36]},{"name":"SORT_CHINESE_BIG5","features":[36]},{"name":"SORT_CHINESE_BOPOMOFO","features":[36]},{"name":"SORT_CHINESE_PRC","features":[36]},{"name":"SORT_CHINESE_PRCP","features":[36]},{"name":"SORT_CHINESE_RADICALSTROKE","features":[36]},{"name":"SORT_CHINESE_UNICODE","features":[36]},{"name":"SORT_DEFAULT","features":[36]},{"name":"SORT_GEORGIAN_MODERN","features":[36]},{"name":"SORT_GEORGIAN_TRADITIONAL","features":[36]},{"name":"SORT_GERMAN_PHONE_BOOK","features":[36]},{"name":"SORT_HUNGARIAN_DEFAULT","features":[36]},{"name":"SORT_HUNGARIAN_TECHNICAL","features":[36]},{"name":"SORT_INVARIANT_MATH","features":[36]},{"name":"SORT_JAPANESE_RADICALSTROKE","features":[36]},{"name":"SORT_JAPANESE_UNICODE","features":[36]},{"name":"SORT_JAPANESE_XJIS","features":[36]},{"name":"SORT_KOREAN_KSC","features":[36]},{"name":"SORT_KOREAN_UNICODE","features":[36]},{"name":"SS_BITMAP","features":[36]},{"name":"SS_BLACKFRAME","features":[36]},{"name":"SS_BLACKRECT","features":[36]},{"name":"SS_CENTER","features":[36]},{"name":"SS_CENTERIMAGE","features":[36]},{"name":"SS_EDITCONTROL","features":[36]},{"name":"SS_ELLIPSISMASK","features":[36]},{"name":"SS_ENDELLIPSIS","features":[36]},{"name":"SS_ENHMETAFILE","features":[36]},{"name":"SS_ETCHEDFRAME","features":[36]},{"name":"SS_ETCHEDHORZ","features":[36]},{"name":"SS_ETCHEDVERT","features":[36]},{"name":"SS_GRAYFRAME","features":[36]},{"name":"SS_GRAYRECT","features":[36]},{"name":"SS_ICON","features":[36]},{"name":"SS_LEFT","features":[36]},{"name":"SS_LEFTNOWORDWRAP","features":[36]},{"name":"SS_NOPREFIX","features":[36]},{"name":"SS_NOTIFY","features":[36]},{"name":"SS_OWNERDRAW","features":[36]},{"name":"SS_PATHELLIPSIS","features":[36]},{"name":"SS_REALSIZECONTROL","features":[36]},{"name":"SS_REALSIZEIMAGE","features":[36]},{"name":"SS_RIGHT","features":[36]},{"name":"SS_RIGHTJUST","features":[36]},{"name":"SS_SIMPLE","features":[36]},{"name":"SS_SUNKEN","features":[36]},{"name":"SS_TYPEMASK","features":[36]},{"name":"SS_USERITEM","features":[36]},{"name":"SS_WHITEFRAME","features":[36]},{"name":"SS_WHITERECT","features":[36]},{"name":"SS_WORDELLIPSIS","features":[36]},{"name":"STATIC_STYLES","features":[36]},{"name":"SUBLANG_AFRIKAANS_SOUTH_AFRICA","features":[36]},{"name":"SUBLANG_ALBANIAN_ALBANIA","features":[36]},{"name":"SUBLANG_ALSATIAN_FRANCE","features":[36]},{"name":"SUBLANG_AMHARIC_ETHIOPIA","features":[36]},{"name":"SUBLANG_ARABIC_ALGERIA","features":[36]},{"name":"SUBLANG_ARABIC_BAHRAIN","features":[36]},{"name":"SUBLANG_ARABIC_EGYPT","features":[36]},{"name":"SUBLANG_ARABIC_IRAQ","features":[36]},{"name":"SUBLANG_ARABIC_JORDAN","features":[36]},{"name":"SUBLANG_ARABIC_KUWAIT","features":[36]},{"name":"SUBLANG_ARABIC_LEBANON","features":[36]},{"name":"SUBLANG_ARABIC_LIBYA","features":[36]},{"name":"SUBLANG_ARABIC_MOROCCO","features":[36]},{"name":"SUBLANG_ARABIC_OMAN","features":[36]},{"name":"SUBLANG_ARABIC_QATAR","features":[36]},{"name":"SUBLANG_ARABIC_SAUDI_ARABIA","features":[36]},{"name":"SUBLANG_ARABIC_SYRIA","features":[36]},{"name":"SUBLANG_ARABIC_TUNISIA","features":[36]},{"name":"SUBLANG_ARABIC_UAE","features":[36]},{"name":"SUBLANG_ARABIC_YEMEN","features":[36]},{"name":"SUBLANG_ARMENIAN_ARMENIA","features":[36]},{"name":"SUBLANG_ASSAMESE_INDIA","features":[36]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_CYRILLIC","features":[36]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_LATIN","features":[36]},{"name":"SUBLANG_AZERI_CYRILLIC","features":[36]},{"name":"SUBLANG_AZERI_LATIN","features":[36]},{"name":"SUBLANG_BANGLA_BANGLADESH","features":[36]},{"name":"SUBLANG_BANGLA_INDIA","features":[36]},{"name":"SUBLANG_BASHKIR_RUSSIA","features":[36]},{"name":"SUBLANG_BASQUE_BASQUE","features":[36]},{"name":"SUBLANG_BELARUSIAN_BELARUS","features":[36]},{"name":"SUBLANG_BENGALI_BANGLADESH","features":[36]},{"name":"SUBLANG_BENGALI_INDIA","features":[36]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[36]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN","features":[36]},{"name":"SUBLANG_BRETON_FRANCE","features":[36]},{"name":"SUBLANG_BULGARIAN_BULGARIA","features":[36]},{"name":"SUBLANG_CATALAN_CATALAN","features":[36]},{"name":"SUBLANG_CENTRAL_KURDISH_IRAQ","features":[36]},{"name":"SUBLANG_CHEROKEE_CHEROKEE","features":[36]},{"name":"SUBLANG_CHINESE_HONGKONG","features":[36]},{"name":"SUBLANG_CHINESE_MACAU","features":[36]},{"name":"SUBLANG_CHINESE_SIMPLIFIED","features":[36]},{"name":"SUBLANG_CHINESE_SINGAPORE","features":[36]},{"name":"SUBLANG_CHINESE_TRADITIONAL","features":[36]},{"name":"SUBLANG_CORSICAN_FRANCE","features":[36]},{"name":"SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN","features":[36]},{"name":"SUBLANG_CROATIAN_CROATIA","features":[36]},{"name":"SUBLANG_CUSTOM_DEFAULT","features":[36]},{"name":"SUBLANG_CUSTOM_UNSPECIFIED","features":[36]},{"name":"SUBLANG_CZECH_CZECH_REPUBLIC","features":[36]},{"name":"SUBLANG_DANISH_DENMARK","features":[36]},{"name":"SUBLANG_DARI_AFGHANISTAN","features":[36]},{"name":"SUBLANG_DEFAULT","features":[36]},{"name":"SUBLANG_DIVEHI_MALDIVES","features":[36]},{"name":"SUBLANG_DUTCH","features":[36]},{"name":"SUBLANG_DUTCH_BELGIAN","features":[36]},{"name":"SUBLANG_ENGLISH_AUS","features":[36]},{"name":"SUBLANG_ENGLISH_BELIZE","features":[36]},{"name":"SUBLANG_ENGLISH_CAN","features":[36]},{"name":"SUBLANG_ENGLISH_CARIBBEAN","features":[36]},{"name":"SUBLANG_ENGLISH_EIRE","features":[36]},{"name":"SUBLANG_ENGLISH_INDIA","features":[36]},{"name":"SUBLANG_ENGLISH_JAMAICA","features":[36]},{"name":"SUBLANG_ENGLISH_MALAYSIA","features":[36]},{"name":"SUBLANG_ENGLISH_NZ","features":[36]},{"name":"SUBLANG_ENGLISH_PHILIPPINES","features":[36]},{"name":"SUBLANG_ENGLISH_SINGAPORE","features":[36]},{"name":"SUBLANG_ENGLISH_SOUTH_AFRICA","features":[36]},{"name":"SUBLANG_ENGLISH_TRINIDAD","features":[36]},{"name":"SUBLANG_ENGLISH_UK","features":[36]},{"name":"SUBLANG_ENGLISH_US","features":[36]},{"name":"SUBLANG_ENGLISH_ZIMBABWE","features":[36]},{"name":"SUBLANG_ESTONIAN_ESTONIA","features":[36]},{"name":"SUBLANG_FAEROESE_FAROE_ISLANDS","features":[36]},{"name":"SUBLANG_FILIPINO_PHILIPPINES","features":[36]},{"name":"SUBLANG_FINNISH_FINLAND","features":[36]},{"name":"SUBLANG_FRENCH","features":[36]},{"name":"SUBLANG_FRENCH_BELGIAN","features":[36]},{"name":"SUBLANG_FRENCH_CANADIAN","features":[36]},{"name":"SUBLANG_FRENCH_LUXEMBOURG","features":[36]},{"name":"SUBLANG_FRENCH_MONACO","features":[36]},{"name":"SUBLANG_FRENCH_SWISS","features":[36]},{"name":"SUBLANG_FRISIAN_NETHERLANDS","features":[36]},{"name":"SUBLANG_FULAH_SENEGAL","features":[36]},{"name":"SUBLANG_GALICIAN_GALICIAN","features":[36]},{"name":"SUBLANG_GEORGIAN_GEORGIA","features":[36]},{"name":"SUBLANG_GERMAN","features":[36]},{"name":"SUBLANG_GERMAN_AUSTRIAN","features":[36]},{"name":"SUBLANG_GERMAN_LIECHTENSTEIN","features":[36]},{"name":"SUBLANG_GERMAN_LUXEMBOURG","features":[36]},{"name":"SUBLANG_GERMAN_SWISS","features":[36]},{"name":"SUBLANG_GREEK_GREECE","features":[36]},{"name":"SUBLANG_GREENLANDIC_GREENLAND","features":[36]},{"name":"SUBLANG_GUJARATI_INDIA","features":[36]},{"name":"SUBLANG_HAUSA_NIGERIA_LATIN","features":[36]},{"name":"SUBLANG_HAWAIIAN_US","features":[36]},{"name":"SUBLANG_HEBREW_ISRAEL","features":[36]},{"name":"SUBLANG_HINDI_INDIA","features":[36]},{"name":"SUBLANG_HUNGARIAN_HUNGARY","features":[36]},{"name":"SUBLANG_ICELANDIC_ICELAND","features":[36]},{"name":"SUBLANG_IGBO_NIGERIA","features":[36]},{"name":"SUBLANG_INDONESIAN_INDONESIA","features":[36]},{"name":"SUBLANG_INUKTITUT_CANADA","features":[36]},{"name":"SUBLANG_INUKTITUT_CANADA_LATIN","features":[36]},{"name":"SUBLANG_IRISH_IRELAND","features":[36]},{"name":"SUBLANG_ITALIAN","features":[36]},{"name":"SUBLANG_ITALIAN_SWISS","features":[36]},{"name":"SUBLANG_JAPANESE_JAPAN","features":[36]},{"name":"SUBLANG_KANNADA_INDIA","features":[36]},{"name":"SUBLANG_KASHMIRI_INDIA","features":[36]},{"name":"SUBLANG_KASHMIRI_SASIA","features":[36]},{"name":"SUBLANG_KAZAK_KAZAKHSTAN","features":[36]},{"name":"SUBLANG_KHMER_CAMBODIA","features":[36]},{"name":"SUBLANG_KICHE_GUATEMALA","features":[36]},{"name":"SUBLANG_KINYARWANDA_RWANDA","features":[36]},{"name":"SUBLANG_KONKANI_INDIA","features":[36]},{"name":"SUBLANG_KOREAN","features":[36]},{"name":"SUBLANG_KYRGYZ_KYRGYZSTAN","features":[36]},{"name":"SUBLANG_LAO_LAO","features":[36]},{"name":"SUBLANG_LATVIAN_LATVIA","features":[36]},{"name":"SUBLANG_LITHUANIAN","features":[36]},{"name":"SUBLANG_LOWER_SORBIAN_GERMANY","features":[36]},{"name":"SUBLANG_LUXEMBOURGISH_LUXEMBOURG","features":[36]},{"name":"SUBLANG_MACEDONIAN_MACEDONIA","features":[36]},{"name":"SUBLANG_MALAYALAM_INDIA","features":[36]},{"name":"SUBLANG_MALAY_BRUNEI_DARUSSALAM","features":[36]},{"name":"SUBLANG_MALAY_MALAYSIA","features":[36]},{"name":"SUBLANG_MALTESE_MALTA","features":[36]},{"name":"SUBLANG_MAORI_NEW_ZEALAND","features":[36]},{"name":"SUBLANG_MAPUDUNGUN_CHILE","features":[36]},{"name":"SUBLANG_MARATHI_INDIA","features":[36]},{"name":"SUBLANG_MOHAWK_MOHAWK","features":[36]},{"name":"SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA","features":[36]},{"name":"SUBLANG_MONGOLIAN_PRC","features":[36]},{"name":"SUBLANG_NEPALI_INDIA","features":[36]},{"name":"SUBLANG_NEPALI_NEPAL","features":[36]},{"name":"SUBLANG_NEUTRAL","features":[36]},{"name":"SUBLANG_NORWEGIAN_BOKMAL","features":[36]},{"name":"SUBLANG_NORWEGIAN_NYNORSK","features":[36]},{"name":"SUBLANG_OCCITAN_FRANCE","features":[36]},{"name":"SUBLANG_ODIA_INDIA","features":[36]},{"name":"SUBLANG_ORIYA_INDIA","features":[36]},{"name":"SUBLANG_PASHTO_AFGHANISTAN","features":[36]},{"name":"SUBLANG_PERSIAN_IRAN","features":[36]},{"name":"SUBLANG_POLISH_POLAND","features":[36]},{"name":"SUBLANG_PORTUGUESE","features":[36]},{"name":"SUBLANG_PORTUGUESE_BRAZILIAN","features":[36]},{"name":"SUBLANG_PULAR_SENEGAL","features":[36]},{"name":"SUBLANG_PUNJABI_INDIA","features":[36]},{"name":"SUBLANG_PUNJABI_PAKISTAN","features":[36]},{"name":"SUBLANG_QUECHUA_BOLIVIA","features":[36]},{"name":"SUBLANG_QUECHUA_ECUADOR","features":[36]},{"name":"SUBLANG_QUECHUA_PERU","features":[36]},{"name":"SUBLANG_ROMANIAN_ROMANIA","features":[36]},{"name":"SUBLANG_ROMANSH_SWITZERLAND","features":[36]},{"name":"SUBLANG_RUSSIAN_RUSSIA","features":[36]},{"name":"SUBLANG_SAKHA_RUSSIA","features":[36]},{"name":"SUBLANG_SAMI_INARI_FINLAND","features":[36]},{"name":"SUBLANG_SAMI_LULE_NORWAY","features":[36]},{"name":"SUBLANG_SAMI_LULE_SWEDEN","features":[36]},{"name":"SUBLANG_SAMI_NORTHERN_FINLAND","features":[36]},{"name":"SUBLANG_SAMI_NORTHERN_NORWAY","features":[36]},{"name":"SUBLANG_SAMI_NORTHERN_SWEDEN","features":[36]},{"name":"SUBLANG_SAMI_SKOLT_FINLAND","features":[36]},{"name":"SUBLANG_SAMI_SOUTHERN_NORWAY","features":[36]},{"name":"SUBLANG_SAMI_SOUTHERN_SWEDEN","features":[36]},{"name":"SUBLANG_SANSKRIT_INDIA","features":[36]},{"name":"SUBLANG_SCOTTISH_GAELIC","features":[36]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[36]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN","features":[36]},{"name":"SUBLANG_SERBIAN_CROATIA","features":[36]},{"name":"SUBLANG_SERBIAN_CYRILLIC","features":[36]},{"name":"SUBLANG_SERBIAN_LATIN","features":[36]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_CYRILLIC","features":[36]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_LATIN","features":[36]},{"name":"SUBLANG_SERBIAN_SERBIA_CYRILLIC","features":[36]},{"name":"SUBLANG_SERBIAN_SERBIA_LATIN","features":[36]},{"name":"SUBLANG_SINDHI_AFGHANISTAN","features":[36]},{"name":"SUBLANG_SINDHI_INDIA","features":[36]},{"name":"SUBLANG_SINDHI_PAKISTAN","features":[36]},{"name":"SUBLANG_SINHALESE_SRI_LANKA","features":[36]},{"name":"SUBLANG_SLOVAK_SLOVAKIA","features":[36]},{"name":"SUBLANG_SLOVENIAN_SLOVENIA","features":[36]},{"name":"SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA","features":[36]},{"name":"SUBLANG_SPANISH","features":[36]},{"name":"SUBLANG_SPANISH_ARGENTINA","features":[36]},{"name":"SUBLANG_SPANISH_BOLIVIA","features":[36]},{"name":"SUBLANG_SPANISH_CHILE","features":[36]},{"name":"SUBLANG_SPANISH_COLOMBIA","features":[36]},{"name":"SUBLANG_SPANISH_COSTA_RICA","features":[36]},{"name":"SUBLANG_SPANISH_DOMINICAN_REPUBLIC","features":[36]},{"name":"SUBLANG_SPANISH_ECUADOR","features":[36]},{"name":"SUBLANG_SPANISH_EL_SALVADOR","features":[36]},{"name":"SUBLANG_SPANISH_GUATEMALA","features":[36]},{"name":"SUBLANG_SPANISH_HONDURAS","features":[36]},{"name":"SUBLANG_SPANISH_MEXICAN","features":[36]},{"name":"SUBLANG_SPANISH_MODERN","features":[36]},{"name":"SUBLANG_SPANISH_NICARAGUA","features":[36]},{"name":"SUBLANG_SPANISH_PANAMA","features":[36]},{"name":"SUBLANG_SPANISH_PARAGUAY","features":[36]},{"name":"SUBLANG_SPANISH_PERU","features":[36]},{"name":"SUBLANG_SPANISH_PUERTO_RICO","features":[36]},{"name":"SUBLANG_SPANISH_URUGUAY","features":[36]},{"name":"SUBLANG_SPANISH_US","features":[36]},{"name":"SUBLANG_SPANISH_VENEZUELA","features":[36]},{"name":"SUBLANG_SWAHILI_KENYA","features":[36]},{"name":"SUBLANG_SWEDISH","features":[36]},{"name":"SUBLANG_SWEDISH_FINLAND","features":[36]},{"name":"SUBLANG_SYRIAC_SYRIA","features":[36]},{"name":"SUBLANG_SYS_DEFAULT","features":[36]},{"name":"SUBLANG_TAJIK_TAJIKISTAN","features":[36]},{"name":"SUBLANG_TAMAZIGHT_ALGERIA_LATIN","features":[36]},{"name":"SUBLANG_TAMAZIGHT_MOROCCO_TIFINAGH","features":[36]},{"name":"SUBLANG_TAMIL_INDIA","features":[36]},{"name":"SUBLANG_TAMIL_SRI_LANKA","features":[36]},{"name":"SUBLANG_TATAR_RUSSIA","features":[36]},{"name":"SUBLANG_TELUGU_INDIA","features":[36]},{"name":"SUBLANG_THAI_THAILAND","features":[36]},{"name":"SUBLANG_TIBETAN_PRC","features":[36]},{"name":"SUBLANG_TIGRIGNA_ERITREA","features":[36]},{"name":"SUBLANG_TIGRINYA_ERITREA","features":[36]},{"name":"SUBLANG_TIGRINYA_ETHIOPIA","features":[36]},{"name":"SUBLANG_TSWANA_BOTSWANA","features":[36]},{"name":"SUBLANG_TSWANA_SOUTH_AFRICA","features":[36]},{"name":"SUBLANG_TURKISH_TURKEY","features":[36]},{"name":"SUBLANG_TURKMEN_TURKMENISTAN","features":[36]},{"name":"SUBLANG_UIGHUR_PRC","features":[36]},{"name":"SUBLANG_UI_CUSTOM_DEFAULT","features":[36]},{"name":"SUBLANG_UKRAINIAN_UKRAINE","features":[36]},{"name":"SUBLANG_UPPER_SORBIAN_GERMANY","features":[36]},{"name":"SUBLANG_URDU_INDIA","features":[36]},{"name":"SUBLANG_URDU_PAKISTAN","features":[36]},{"name":"SUBLANG_UZBEK_CYRILLIC","features":[36]},{"name":"SUBLANG_UZBEK_LATIN","features":[36]},{"name":"SUBLANG_VALENCIAN_VALENCIA","features":[36]},{"name":"SUBLANG_VIETNAMESE_VIETNAM","features":[36]},{"name":"SUBLANG_WELSH_UNITED_KINGDOM","features":[36]},{"name":"SUBLANG_WOLOF_SENEGAL","features":[36]},{"name":"SUBLANG_XHOSA_SOUTH_AFRICA","features":[36]},{"name":"SUBLANG_YAKUT_RUSSIA","features":[36]},{"name":"SUBLANG_YI_PRC","features":[36]},{"name":"SUBLANG_YORUBA_NIGERIA","features":[36]},{"name":"SUBLANG_ZULU_SOUTH_AFRICA","features":[36]},{"name":"SUPPORTED_OS_INFO","features":[36]},{"name":"SYSTEM_ACCESS_FILTER_ACE_TYPE","features":[36]},{"name":"SYSTEM_ACCESS_FILTER_NOCONSTRAINT_MASK","features":[36]},{"name":"SYSTEM_ACCESS_FILTER_VALID_MASK","features":[36]},{"name":"SYSTEM_ALARM_ACE_TYPE","features":[36]},{"name":"SYSTEM_ALARM_CALLBACK_ACE_TYPE","features":[36]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE","features":[36]},{"name":"SYSTEM_ALARM_OBJECT_ACE_TYPE","features":[36]},{"name":"SYSTEM_AUDIT_ACE_TYPE","features":[36]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE_TYPE","features":[36]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE_TYPE","features":[36]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_TYPE","features":[36]},{"name":"SYSTEM_CACHE_ALIGNMENT_SIZE","features":[36]},{"name":"SYSTEM_MANDATORY_LABEL_ACE_TYPE","features":[36]},{"name":"SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP","features":[36]},{"name":"SYSTEM_MANDATORY_LABEL_NO_READ_UP","features":[36]},{"name":"SYSTEM_MANDATORY_LABEL_NO_WRITE_UP","features":[36]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE_TYPE","features":[36]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_VALID_MASK","features":[36]},{"name":"SYSTEM_PROCESS_TRUST_NOCONSTRAINT_MASK","features":[36]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE_TYPE","features":[36]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE_TYPE","features":[36]},{"name":"SeImageSignatureCache","features":[36]},{"name":"SeImageSignatureCatalogCached","features":[36]},{"name":"SeImageSignatureCatalogHint","features":[36]},{"name":"SeImageSignatureCatalogNotCached","features":[36]},{"name":"SeImageSignatureEmbedded","features":[36]},{"name":"SeImageSignatureNone","features":[36]},{"name":"SeImageSignaturePackageCatalog","features":[36]},{"name":"SeImageSignaturePplMitigated","features":[36]},{"name":"SevereError","features":[36]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[36]},{"name":"SharedVirtualDiskHandleState","features":[36]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[36]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[36]},{"name":"SharedVirtualDiskHandleStateNone","features":[36]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[36]},{"name":"SharedVirtualDiskSupportType","features":[36]},{"name":"SharedVirtualDisksSupported","features":[36]},{"name":"SharedVirtualDisksUnsupported","features":[36]},{"name":"SystemLoad","features":[36]},{"name":"TAPE_CHECK_FOR_DRIVE_PROBLEM","features":[36]},{"name":"TAPE_CREATE_PARTITION","features":[36]},{"name":"TAPE_DRIVE_ABSOLUTE_BLK","features":[36]},{"name":"TAPE_DRIVE_ABS_BLK_IMMED","features":[36]},{"name":"TAPE_DRIVE_CLEAN_REQUESTS","features":[36]},{"name":"TAPE_DRIVE_COMPRESSION","features":[36]},{"name":"TAPE_DRIVE_ECC","features":[36]},{"name":"TAPE_DRIVE_EJECT_MEDIA","features":[36]},{"name":"TAPE_DRIVE_END_OF_DATA","features":[36]},{"name":"TAPE_DRIVE_EOT_WZ_SIZE","features":[36]},{"name":"TAPE_DRIVE_ERASE_BOP_ONLY","features":[36]},{"name":"TAPE_DRIVE_ERASE_IMMEDIATE","features":[36]},{"name":"TAPE_DRIVE_ERASE_LONG","features":[36]},{"name":"TAPE_DRIVE_ERASE_SHORT","features":[36]},{"name":"TAPE_DRIVE_FILEMARKS","features":[36]},{"name":"TAPE_DRIVE_FIXED","features":[36]},{"name":"TAPE_DRIVE_FIXED_BLOCK","features":[36]},{"name":"TAPE_DRIVE_FORMAT","features":[36]},{"name":"TAPE_DRIVE_FORMAT_IMMEDIATE","features":[36]},{"name":"TAPE_DRIVE_GET_ABSOLUTE_BLK","features":[36]},{"name":"TAPE_DRIVE_GET_LOGICAL_BLK","features":[36]},{"name":"TAPE_DRIVE_HIGH_FEATURES","features":[36]},{"name":"TAPE_DRIVE_INITIATOR","features":[36]},{"name":"TAPE_DRIVE_LOAD_UNLD_IMMED","features":[36]},{"name":"TAPE_DRIVE_LOAD_UNLOAD","features":[36]},{"name":"TAPE_DRIVE_LOCK_UNLK_IMMED","features":[36]},{"name":"TAPE_DRIVE_LOCK_UNLOCK","features":[36]},{"name":"TAPE_DRIVE_LOGICAL_BLK","features":[36]},{"name":"TAPE_DRIVE_LOG_BLK_IMMED","features":[36]},{"name":"TAPE_DRIVE_PADDING","features":[36]},{"name":"TAPE_DRIVE_PROBLEM_TYPE","features":[36]},{"name":"TAPE_DRIVE_RELATIVE_BLKS","features":[36]},{"name":"TAPE_DRIVE_REPORT_SMKS","features":[36]},{"name":"TAPE_DRIVE_RESERVED_BIT","features":[36]},{"name":"TAPE_DRIVE_REVERSE_POSITION","features":[36]},{"name":"TAPE_DRIVE_REWIND_IMMEDIATE","features":[36]},{"name":"TAPE_DRIVE_SELECT","features":[36]},{"name":"TAPE_DRIVE_SEQUENTIAL_FMKS","features":[36]},{"name":"TAPE_DRIVE_SEQUENTIAL_SMKS","features":[36]},{"name":"TAPE_DRIVE_SETMARKS","features":[36]},{"name":"TAPE_DRIVE_SET_BLOCK_SIZE","features":[36]},{"name":"TAPE_DRIVE_SET_CMP_BOP_ONLY","features":[36]},{"name":"TAPE_DRIVE_SET_COMPRESSION","features":[36]},{"name":"TAPE_DRIVE_SET_ECC","features":[36]},{"name":"TAPE_DRIVE_SET_EOT_WZ_SIZE","features":[36]},{"name":"TAPE_DRIVE_SET_PADDING","features":[36]},{"name":"TAPE_DRIVE_SET_REPORT_SMKS","features":[36]},{"name":"TAPE_DRIVE_SPACE_IMMEDIATE","features":[36]},{"name":"TAPE_DRIVE_TAPE_CAPACITY","features":[36]},{"name":"TAPE_DRIVE_TAPE_REMAINING","features":[36]},{"name":"TAPE_DRIVE_TENSION","features":[36]},{"name":"TAPE_DRIVE_TENSION_IMMED","features":[36]},{"name":"TAPE_DRIVE_VARIABLE_BLOCK","features":[36]},{"name":"TAPE_DRIVE_WRITE_FILEMARKS","features":[36]},{"name":"TAPE_DRIVE_WRITE_LONG_FMKS","features":[36]},{"name":"TAPE_DRIVE_WRITE_MARK_IMMED","features":[36]},{"name":"TAPE_DRIVE_WRITE_PROTECT","features":[36]},{"name":"TAPE_DRIVE_WRITE_SETMARKS","features":[36]},{"name":"TAPE_DRIVE_WRITE_SHORT_FMKS","features":[36]},{"name":"TAPE_GET_DRIVE_PARAMETERS","features":[1,36]},{"name":"TAPE_GET_DRIVE_PARAMETERS_FEATURES_HIGH","features":[36]},{"name":"TAPE_GET_MEDIA_PARAMETERS","features":[1,36]},{"name":"TAPE_PSEUDO_LOGICAL_BLOCK","features":[36]},{"name":"TAPE_PSEUDO_LOGICAL_POSITION","features":[36]},{"name":"TAPE_QUERY_DEVICE_ERROR_DATA","features":[36]},{"name":"TAPE_QUERY_DRIVE_PARAMETERS","features":[36]},{"name":"TAPE_QUERY_IO_ERROR_DATA","features":[36]},{"name":"TAPE_QUERY_MEDIA_CAPACITY","features":[36]},{"name":"TAPE_SET_DRIVE_PARAMETERS","features":[1,36]},{"name":"TAPE_SET_MEDIA_PARAMETERS","features":[36]},{"name":"TAPE_WMI_OPERATIONS","features":[36]},{"name":"THREAD_BASE_PRIORITY_IDLE","features":[36]},{"name":"THREAD_BASE_PRIORITY_LOWRT","features":[36]},{"name":"THREAD_BASE_PRIORITY_MAX","features":[36]},{"name":"THREAD_BASE_PRIORITY_MIN","features":[36]},{"name":"THREAD_DYNAMIC_CODE_ALLOW","features":[36]},{"name":"THREAD_PROFILING_FLAG_DISPATCH","features":[36]},{"name":"TIME_ZONE_ID_DAYLIGHT","features":[36]},{"name":"TIME_ZONE_ID_STANDARD","features":[36]},{"name":"TIME_ZONE_ID_UNKNOWN","features":[36]},{"name":"TLS_MINIMUM_AVAILABLE","features":[36]},{"name":"TOKEN_BNO_ISOLATION_INFORMATION","features":[1,36]},{"name":"TOKEN_SID_INFORMATION","features":[1,36]},{"name":"TOKEN_SOURCE_LENGTH","features":[36]},{"name":"TRANSACTIONMANAGER_BASIC_INFORMATION","features":[36]},{"name":"TRANSACTIONMANAGER_BIND_TRANSACTION","features":[36]},{"name":"TRANSACTIONMANAGER_CREATE_RM","features":[36]},{"name":"TRANSACTIONMANAGER_INFORMATION_CLASS","features":[36]},{"name":"TRANSACTIONMANAGER_LOGPATH_INFORMATION","features":[36]},{"name":"TRANSACTIONMANAGER_LOG_INFORMATION","features":[36]},{"name":"TRANSACTIONMANAGER_OLDEST_INFORMATION","features":[36]},{"name":"TRANSACTIONMANAGER_QUERY_INFORMATION","features":[36]},{"name":"TRANSACTIONMANAGER_RECOVER","features":[36]},{"name":"TRANSACTIONMANAGER_RECOVERY_INFORMATION","features":[36]},{"name":"TRANSACTIONMANAGER_RENAME","features":[36]},{"name":"TRANSACTIONMANAGER_SET_INFORMATION","features":[36]},{"name":"TRANSACTION_BASIC_INFORMATION","features":[36]},{"name":"TRANSACTION_BIND_INFORMATION","features":[1,36]},{"name":"TRANSACTION_COMMIT","features":[36]},{"name":"TRANSACTION_ENLIST","features":[36]},{"name":"TRANSACTION_ENLISTMENTS_INFORMATION","features":[36]},{"name":"TRANSACTION_ENLISTMENT_PAIR","features":[36]},{"name":"TRANSACTION_INFORMATION_CLASS","features":[36]},{"name":"TRANSACTION_LIST_ENTRY","features":[36]},{"name":"TRANSACTION_LIST_INFORMATION","features":[36]},{"name":"TRANSACTION_PROPAGATE","features":[36]},{"name":"TRANSACTION_PROPERTIES_INFORMATION","features":[36]},{"name":"TRANSACTION_QUERY_INFORMATION","features":[36]},{"name":"TRANSACTION_RIGHT_RESERVED1","features":[36]},{"name":"TRANSACTION_ROLLBACK","features":[36]},{"name":"TRANSACTION_SET_INFORMATION","features":[36]},{"name":"TRANSACTION_STATE","features":[36]},{"name":"TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION","features":[36]},{"name":"TREE_CONNECT_ATTRIBUTE_GLOBAL","features":[36]},{"name":"TREE_CONNECT_ATTRIBUTE_INTEGRITY","features":[36]},{"name":"TREE_CONNECT_ATTRIBUTE_PINNED","features":[36]},{"name":"TREE_CONNECT_ATTRIBUTE_PRIVACY","features":[36]},{"name":"TRUST_PROTECTED_FILTER_ACE_FLAG","features":[36]},{"name":"TapeDriveCleanDriveNow","features":[36]},{"name":"TapeDriveHardwareError","features":[36]},{"name":"TapeDriveMediaLifeExpired","features":[36]},{"name":"TapeDriveProblemNone","features":[36]},{"name":"TapeDriveReadError","features":[36]},{"name":"TapeDriveReadWarning","features":[36]},{"name":"TapeDriveReadWriteError","features":[36]},{"name":"TapeDriveReadWriteWarning","features":[36]},{"name":"TapeDriveScsiConnectionError","features":[36]},{"name":"TapeDriveSnappedTape","features":[36]},{"name":"TapeDriveTimetoClean","features":[36]},{"name":"TapeDriveUnsupportedMedia","features":[36]},{"name":"TapeDriveWriteError","features":[36]},{"name":"TapeDriveWriteWarning","features":[36]},{"name":"TransactionBasicInformation","features":[36]},{"name":"TransactionBindInformation","features":[36]},{"name":"TransactionDTCPrivateInformation","features":[36]},{"name":"TransactionEnlistmentInformation","features":[36]},{"name":"TransactionManagerBasicInformation","features":[36]},{"name":"TransactionManagerLogInformation","features":[36]},{"name":"TransactionManagerLogPathInformation","features":[36]},{"name":"TransactionManagerOldestTransactionInformation","features":[36]},{"name":"TransactionManagerOnlineProbeInformation","features":[36]},{"name":"TransactionManagerRecoveryInformation","features":[36]},{"name":"TransactionPropertiesInformation","features":[36]},{"name":"TransactionStateCommittedNotify","features":[36]},{"name":"TransactionStateIndoubt","features":[36]},{"name":"TransactionStateNormal","features":[36]},{"name":"TransactionSuperiorEnlistmentInformation","features":[36]},{"name":"UCSCHAR_INVALID_CHARACTER","features":[36]},{"name":"UMS_CREATE_THREAD_ATTRIBUTES","features":[36]},{"name":"UNICODE_STRING_MAX_CHARS","features":[36]},{"name":"UNIFIEDBUILDREVISION_KEY","features":[36]},{"name":"UNIFIEDBUILDREVISION_MIN","features":[36]},{"name":"UNIFIEDBUILDREVISION_VALUE","features":[36]},{"name":"UNWIND_CHAIN_LIMIT","features":[36]},{"name":"UNWIND_HISTORY_TABLE_SIZE","features":[36]},{"name":"UNW_FLAG_NO_EPILOGUE","features":[36]},{"name":"UmsSchedulerStartup","features":[36]},{"name":"UmsSchedulerThreadBlocked","features":[36]},{"name":"UmsSchedulerThreadYield","features":[36]},{"name":"VALID_INHERIT_FLAGS","features":[36]},{"name":"VBS_BASIC_PAGE_MEASURED_DATA","features":[36]},{"name":"VBS_BASIC_PAGE_SYSTEM_CALL","features":[36]},{"name":"VBS_BASIC_PAGE_THREAD_DESCRIPTOR","features":[36]},{"name":"VBS_BASIC_PAGE_UNMEASURED_DATA","features":[36]},{"name":"VBS_BASIC_PAGE_ZERO_FILL","features":[36]},{"name":"VER_AND","features":[36]},{"name":"VER_CONDITION_MASK","features":[36]},{"name":"VER_EQUAL","features":[36]},{"name":"VER_GREATER","features":[36]},{"name":"VER_GREATER_EQUAL","features":[36]},{"name":"VER_LESS","features":[36]},{"name":"VER_LESS_EQUAL","features":[36]},{"name":"VER_NT_DOMAIN_CONTROLLER","features":[36]},{"name":"VER_NT_SERVER","features":[36]},{"name":"VER_NT_WORKSTATION","features":[36]},{"name":"VER_NUM_BITS_PER_CONDITION_MASK","features":[36]},{"name":"VER_OR","features":[36]},{"name":"VER_SERVER_NT","features":[36]},{"name":"VER_SUITE_BACKOFFICE","features":[36]},{"name":"VER_SUITE_BLADE","features":[36]},{"name":"VER_SUITE_COMMUNICATIONS","features":[36]},{"name":"VER_SUITE_COMPUTE_SERVER","features":[36]},{"name":"VER_SUITE_DATACENTER","features":[36]},{"name":"VER_SUITE_EMBEDDEDNT","features":[36]},{"name":"VER_SUITE_EMBEDDED_RESTRICTED","features":[36]},{"name":"VER_SUITE_ENTERPRISE","features":[36]},{"name":"VER_SUITE_MULTIUSERTS","features":[36]},{"name":"VER_SUITE_PERSONAL","features":[36]},{"name":"VER_SUITE_SECURITY_APPLIANCE","features":[36]},{"name":"VER_SUITE_SINGLEUSERTS","features":[36]},{"name":"VER_SUITE_SMALLBUSINESS","features":[36]},{"name":"VER_SUITE_SMALLBUSINESS_RESTRICTED","features":[36]},{"name":"VER_SUITE_STORAGE_SERVER","features":[36]},{"name":"VER_SUITE_TERMINAL","features":[36]},{"name":"VER_SUITE_WH_SERVER","features":[36]},{"name":"VER_WORKSTATION_NT","features":[36]},{"name":"VRL_CUSTOM_CLASS_BEGIN","features":[36]},{"name":"VRL_ENABLE_KERNEL_BREAKS","features":[36]},{"name":"VRL_PREDEFINED_CLASS_BEGIN","features":[36]},{"name":"WDT_INPROC64_CALL","features":[36]},{"name":"WDT_INPROC_CALL","features":[36]},{"name":"WDT_REMOTE_CALL","features":[36]},{"name":"WORD_WHEEL_OPEN_FLAGS","features":[36]},{"name":"WRITE_NV_MEMORY_FLAG_FLUSH","features":[36]},{"name":"WRITE_NV_MEMORY_FLAG_NON_TEMPORAL","features":[36]},{"name":"WRITE_NV_MEMORY_FLAG_NO_DRAIN","features":[36]},{"name":"WRITE_WATCH_FLAG_RESET","features":[36]},{"name":"WT_EXECUTEDELETEWAIT","features":[36]},{"name":"WT_EXECUTEINLONGTHREAD","features":[36]},{"name":"WT_EXECUTEINPERSISTENTIOTHREAD","features":[36]},{"name":"WT_EXECUTEINUITHREAD","features":[36]},{"name":"Win32ServiceOwnProcess","features":[36]},{"name":"Win32ServiceShareProcess","features":[36]},{"name":"X3_BTYPE_QP_INST_VAL_POS_X","features":[36]},{"name":"X3_BTYPE_QP_INST_WORD_POS_X","features":[36]},{"name":"X3_BTYPE_QP_INST_WORD_X","features":[36]},{"name":"X3_BTYPE_QP_SIZE_X","features":[36]},{"name":"X3_D_WH_INST_WORD_POS_X","features":[36]},{"name":"X3_D_WH_INST_WORD_X","features":[36]},{"name":"X3_D_WH_SIGN_VAL_POS_X","features":[36]},{"name":"X3_D_WH_SIZE_X","features":[36]},{"name":"X3_EMPTY_INST_VAL_POS_X","features":[36]},{"name":"X3_EMPTY_INST_WORD_POS_X","features":[36]},{"name":"X3_EMPTY_INST_WORD_X","features":[36]},{"name":"X3_EMPTY_SIZE_X","features":[36]},{"name":"X3_IMM20_INST_WORD_POS_X","features":[36]},{"name":"X3_IMM20_INST_WORD_X","features":[36]},{"name":"X3_IMM20_SIGN_VAL_POS_X","features":[36]},{"name":"X3_IMM20_SIZE_X","features":[36]},{"name":"X3_IMM39_1_INST_WORD_POS_X","features":[36]},{"name":"X3_IMM39_1_INST_WORD_X","features":[36]},{"name":"X3_IMM39_1_SIGN_VAL_POS_X","features":[36]},{"name":"X3_IMM39_1_SIZE_X","features":[36]},{"name":"X3_IMM39_2_INST_WORD_POS_X","features":[36]},{"name":"X3_IMM39_2_INST_WORD_X","features":[36]},{"name":"X3_IMM39_2_SIGN_VAL_POS_X","features":[36]},{"name":"X3_IMM39_2_SIZE_X","features":[36]},{"name":"X3_I_INST_WORD_POS_X","features":[36]},{"name":"X3_I_INST_WORD_X","features":[36]},{"name":"X3_I_SIGN_VAL_POS_X","features":[36]},{"name":"X3_I_SIZE_X","features":[36]},{"name":"X3_OPCODE_INST_WORD_POS_X","features":[36]},{"name":"X3_OPCODE_INST_WORD_X","features":[36]},{"name":"X3_OPCODE_SIGN_VAL_POS_X","features":[36]},{"name":"X3_OPCODE_SIZE_X","features":[36]},{"name":"X3_P_INST_WORD_POS_X","features":[36]},{"name":"X3_P_INST_WORD_X","features":[36]},{"name":"X3_P_SIGN_VAL_POS_X","features":[36]},{"name":"X3_P_SIZE_X","features":[36]},{"name":"X3_TMPLT_INST_WORD_POS_X","features":[36]},{"name":"X3_TMPLT_INST_WORD_X","features":[36]},{"name":"X3_TMPLT_SIGN_VAL_POS_X","features":[36]},{"name":"X3_TMPLT_SIZE_X","features":[36]},{"name":"X86_CACHE_ALIGNMENT_SIZE","features":[36]},{"name":"XSAVE_CET_U_FORMAT","features":[36]},{"name":"XSTATE_ALIGN_BIT","features":[36]},{"name":"XSTATE_AMX_TILE_CONFIG","features":[36]},{"name":"XSTATE_AMX_TILE_DATA","features":[36]},{"name":"XSTATE_AVX","features":[36]},{"name":"XSTATE_AVX512_KMASK","features":[36]},{"name":"XSTATE_AVX512_ZMM","features":[36]},{"name":"XSTATE_AVX512_ZMM_H","features":[36]},{"name":"XSTATE_CET_S","features":[36]},{"name":"XSTATE_CET_U","features":[36]},{"name":"XSTATE_COMPACTION_ENABLE","features":[36]},{"name":"XSTATE_CONTROLFLAG_XFD_MASK","features":[36]},{"name":"XSTATE_CONTROLFLAG_XSAVEC_MASK","features":[36]},{"name":"XSTATE_CONTROLFLAG_XSAVEOPT_MASK","features":[36]},{"name":"XSTATE_GSSE","features":[36]},{"name":"XSTATE_IPT","features":[36]},{"name":"XSTATE_LEGACY_FLOATING_POINT","features":[36]},{"name":"XSTATE_LEGACY_SSE","features":[36]},{"name":"XSTATE_LWP","features":[36]},{"name":"XSTATE_MPX_BNDCSR","features":[36]},{"name":"XSTATE_MPX_BNDREGS","features":[36]},{"name":"XSTATE_PASID","features":[36]},{"name":"XSTATE_XFD_BIT","features":[36]},{"name":"_MM_HINT_NTA","features":[36]},{"name":"_MM_HINT_T0","features":[36]},{"name":"_MM_HINT_T1","features":[36]},{"name":"_MM_HINT_T2","features":[36]},{"name":"remoteMETAFILEPICT","features":[41,36]},{"name":"userBITMAP","features":[36]},{"name":"userCLIPFORMAT","features":[36]},{"name":"userHBITMAP","features":[36]},{"name":"userHENHMETAFILE","features":[41,36]},{"name":"userHGLOBAL","features":[41,36]},{"name":"userHMETAFILE","features":[41,36]},{"name":"userHMETAFILEPICT","features":[41,36]},{"name":"userHPALETTE","features":[12,36]}],"616":[{"name":"ABOVE_NORMAL_PRIORITY_CLASS","features":[37]},{"name":"ALL_PROCESSOR_GROUPS","features":[37]},{"name":"APC_CALLBACK_FUNCTION","features":[37]},{"name":"APP_MEMORY_INFORMATION","features":[37]},{"name":"AVRT_PRIORITY","features":[37]},{"name":"AVRT_PRIORITY_CRITICAL","features":[37]},{"name":"AVRT_PRIORITY_HIGH","features":[37]},{"name":"AVRT_PRIORITY_LOW","features":[37]},{"name":"AVRT_PRIORITY_NORMAL","features":[37]},{"name":"AVRT_PRIORITY_VERYLOW","features":[37]},{"name":"AcquireSRWLockExclusive","features":[37]},{"name":"AcquireSRWLockShared","features":[37]},{"name":"AddIntegrityLabelToBoundaryDescriptor","features":[1,37]},{"name":"AddSIDToBoundaryDescriptor","features":[1,37]},{"name":"AttachThreadInput","features":[1,37]},{"name":"AvQuerySystemResponsiveness","features":[1,37]},{"name":"AvRevertMmThreadCharacteristics","features":[1,37]},{"name":"AvRtCreateThreadOrderingGroup","features":[1,37]},{"name":"AvRtCreateThreadOrderingGroupExA","features":[1,37]},{"name":"AvRtCreateThreadOrderingGroupExW","features":[1,37]},{"name":"AvRtDeleteThreadOrderingGroup","features":[1,37]},{"name":"AvRtJoinThreadOrderingGroup","features":[1,37]},{"name":"AvRtLeaveThreadOrderingGroup","features":[1,37]},{"name":"AvRtWaitOnThreadOrderingGroup","features":[1,37]},{"name":"AvSetMmMaxThreadCharacteristicsA","features":[1,37]},{"name":"AvSetMmMaxThreadCharacteristicsW","features":[1,37]},{"name":"AvSetMmThreadCharacteristicsA","features":[1,37]},{"name":"AvSetMmThreadCharacteristicsW","features":[1,37]},{"name":"AvSetMmThreadPriority","features":[1,37]},{"name":"BELOW_NORMAL_PRIORITY_CLASS","features":[37]},{"name":"CONDITION_VARIABLE","features":[37]},{"name":"CONDITION_VARIABLE_INIT","features":[37]},{"name":"CONDITION_VARIABLE_LOCKMODE_SHARED","features":[37]},{"name":"CREATE_BREAKAWAY_FROM_JOB","features":[37]},{"name":"CREATE_DEFAULT_ERROR_MODE","features":[37]},{"name":"CREATE_EVENT","features":[37]},{"name":"CREATE_EVENT_INITIAL_SET","features":[37]},{"name":"CREATE_EVENT_MANUAL_RESET","features":[37]},{"name":"CREATE_FORCEDOS","features":[37]},{"name":"CREATE_IGNORE_SYSTEM_DEFAULT","features":[37]},{"name":"CREATE_MUTEX_INITIAL_OWNER","features":[37]},{"name":"CREATE_NEW_CONSOLE","features":[37]},{"name":"CREATE_NEW_PROCESS_GROUP","features":[37]},{"name":"CREATE_NO_WINDOW","features":[37]},{"name":"CREATE_PRESERVE_CODE_AUTHZ_LEVEL","features":[37]},{"name":"CREATE_PROCESS_LOGON_FLAGS","features":[37]},{"name":"CREATE_PROTECTED_PROCESS","features":[37]},{"name":"CREATE_SECURE_PROCESS","features":[37]},{"name":"CREATE_SEPARATE_WOW_VDM","features":[37]},{"name":"CREATE_SHARED_WOW_VDM","features":[37]},{"name":"CREATE_SUSPENDED","features":[37]},{"name":"CREATE_UNICODE_ENVIRONMENT","features":[37]},{"name":"CREATE_WAITABLE_TIMER_HIGH_RESOLUTION","features":[37]},{"name":"CREATE_WAITABLE_TIMER_MANUAL_RESET","features":[37]},{"name":"CRITICAL_SECTION","features":[1,7,37]},{"name":"CRITICAL_SECTION_DEBUG","features":[1,7,37]},{"name":"CallbackMayRunLong","features":[1,37]},{"name":"CancelThreadpoolIo","features":[37]},{"name":"CancelTimerQueueTimer","features":[1,37]},{"name":"CancelWaitableTimer","features":[1,37]},{"name":"ChangeTimerQueueTimer","features":[1,37]},{"name":"ClosePrivateNamespace","features":[1,37]},{"name":"CloseThreadpool","features":[37]},{"name":"CloseThreadpoolCleanupGroup","features":[37]},{"name":"CloseThreadpoolCleanupGroupMembers","features":[1,37]},{"name":"CloseThreadpoolIo","features":[37]},{"name":"CloseThreadpoolTimer","features":[37]},{"name":"CloseThreadpoolWait","features":[37]},{"name":"CloseThreadpoolWork","features":[37]},{"name":"ConvertFiberToThread","features":[1,37]},{"name":"ConvertThreadToFiber","features":[37]},{"name":"ConvertThreadToFiberEx","features":[37]},{"name":"CreateBoundaryDescriptorA","features":[1,37]},{"name":"CreateBoundaryDescriptorW","features":[1,37]},{"name":"CreateEventA","features":[1,4,37]},{"name":"CreateEventExA","features":[1,4,37]},{"name":"CreateEventExW","features":[1,4,37]},{"name":"CreateEventW","features":[1,4,37]},{"name":"CreateFiber","features":[37]},{"name":"CreateFiberEx","features":[37]},{"name":"CreateMutexA","features":[1,4,37]},{"name":"CreateMutexExA","features":[1,4,37]},{"name":"CreateMutexExW","features":[1,4,37]},{"name":"CreateMutexW","features":[1,4,37]},{"name":"CreatePrivateNamespaceA","features":[1,4,37]},{"name":"CreatePrivateNamespaceW","features":[1,4,37]},{"name":"CreateProcessA","features":[1,4,37]},{"name":"CreateProcessAsUserA","features":[1,4,37]},{"name":"CreateProcessAsUserW","features":[1,4,37]},{"name":"CreateProcessW","features":[1,4,37]},{"name":"CreateProcessWithLogonW","features":[1,37]},{"name":"CreateProcessWithTokenW","features":[1,37]},{"name":"CreateRemoteThread","features":[1,4,37]},{"name":"CreateRemoteThreadEx","features":[1,4,37]},{"name":"CreateSemaphoreA","features":[1,4,37]},{"name":"CreateSemaphoreExA","features":[1,4,37]},{"name":"CreateSemaphoreExW","features":[1,4,37]},{"name":"CreateSemaphoreW","features":[1,4,37]},{"name":"CreateThread","features":[1,4,37]},{"name":"CreateThreadpool","features":[37]},{"name":"CreateThreadpoolCleanupGroup","features":[37]},{"name":"CreateThreadpoolIo","features":[1,37]},{"name":"CreateThreadpoolTimer","features":[37]},{"name":"CreateThreadpoolWait","features":[37]},{"name":"CreateThreadpoolWork","features":[37]},{"name":"CreateTimerQueue","features":[1,37]},{"name":"CreateTimerQueueTimer","features":[1,37]},{"name":"CreateUmsCompletionList","features":[1,37]},{"name":"CreateUmsThreadContext","features":[1,37]},{"name":"CreateWaitableTimerA","features":[1,4,37]},{"name":"CreateWaitableTimerExA","features":[1,4,37]},{"name":"CreateWaitableTimerExW","features":[1,4,37]},{"name":"CreateWaitableTimerW","features":[1,4,37]},{"name":"DEBUG_ONLY_THIS_PROCESS","features":[37]},{"name":"DEBUG_PROCESS","features":[37]},{"name":"DETACHED_PROCESS","features":[37]},{"name":"DeleteBoundaryDescriptor","features":[1,37]},{"name":"DeleteCriticalSection","features":[1,7,37]},{"name":"DeleteFiber","features":[37]},{"name":"DeleteProcThreadAttributeList","features":[37]},{"name":"DeleteSynchronizationBarrier","features":[1,37]},{"name":"DeleteTimerQueue","features":[1,37]},{"name":"DeleteTimerQueueEx","features":[1,37]},{"name":"DeleteTimerQueueTimer","features":[1,37]},{"name":"DeleteUmsCompletionList","features":[1,37]},{"name":"DeleteUmsThreadContext","features":[1,37]},{"name":"DequeueUmsCompletionListItems","features":[1,37]},{"name":"DisassociateCurrentThreadFromCallback","features":[37]},{"name":"EVENT_ALL_ACCESS","features":[37]},{"name":"EVENT_MODIFY_STATE","features":[37]},{"name":"EXTENDED_STARTUPINFO_PRESENT","features":[37]},{"name":"EnterCriticalSection","features":[1,7,37]},{"name":"EnterSynchronizationBarrier","features":[1,37]},{"name":"EnterUmsSchedulingMode","features":[1,36,37]},{"name":"ExecuteUmsThread","features":[1,37]},{"name":"ExitProcess","features":[37]},{"name":"ExitThread","features":[37]},{"name":"FLS_OUT_OF_INDEXES","features":[37]},{"name":"FlsAlloc","features":[37]},{"name":"FlsFree","features":[1,37]},{"name":"FlsGetValue","features":[37]},{"name":"FlsSetValue","features":[1,37]},{"name":"FlushProcessWriteBuffers","features":[37]},{"name":"FreeLibraryWhenCallbackReturns","features":[1,37]},{"name":"GET_GUI_RESOURCES_FLAGS","features":[37]},{"name":"GR_GDIOBJECTS","features":[37]},{"name":"GR_GDIOBJECTS_PEAK","features":[37]},{"name":"GR_USEROBJECTS","features":[37]},{"name":"GR_USEROBJECTS_PEAK","features":[37]},{"name":"GetActiveProcessorCount","features":[37]},{"name":"GetActiveProcessorGroupCount","features":[37]},{"name":"GetCurrentProcess","features":[1,37]},{"name":"GetCurrentProcessId","features":[37]},{"name":"GetCurrentProcessToken","features":[1,37]},{"name":"GetCurrentProcessorNumber","features":[37]},{"name":"GetCurrentProcessorNumberEx","features":[7,37]},{"name":"GetCurrentThread","features":[1,37]},{"name":"GetCurrentThreadEffectiveToken","features":[1,37]},{"name":"GetCurrentThreadId","features":[37]},{"name":"GetCurrentThreadStackLimits","features":[37]},{"name":"GetCurrentThreadToken","features":[1,37]},{"name":"GetCurrentUmsThread","features":[37]},{"name":"GetExitCodeProcess","features":[1,37]},{"name":"GetExitCodeThread","features":[1,37]},{"name":"GetGuiResources","features":[1,37]},{"name":"GetMachineTypeAttributes","features":[37]},{"name":"GetMaximumProcessorCount","features":[37]},{"name":"GetMaximumProcessorGroupCount","features":[37]},{"name":"GetNextUmsListItem","features":[37]},{"name":"GetNumaAvailableMemoryNode","features":[1,37]},{"name":"GetNumaAvailableMemoryNodeEx","features":[1,37]},{"name":"GetNumaHighestNodeNumber","features":[1,37]},{"name":"GetNumaNodeNumberFromHandle","features":[1,37]},{"name":"GetNumaNodeProcessorMask","features":[1,37]},{"name":"GetNumaNodeProcessorMask2","features":[1,32,37]},{"name":"GetNumaNodeProcessorMaskEx","features":[1,32,37]},{"name":"GetNumaProcessorNode","features":[1,37]},{"name":"GetNumaProcessorNodeEx","features":[1,7,37]},{"name":"GetNumaProximityNode","features":[1,37]},{"name":"GetNumaProximityNodeEx","features":[1,37]},{"name":"GetPriorityClass","features":[1,37]},{"name":"GetProcessAffinityMask","features":[1,37]},{"name":"GetProcessDEPPolicy","features":[1,37]},{"name":"GetProcessDefaultCpuSetMasks","features":[1,32,37]},{"name":"GetProcessDefaultCpuSets","features":[1,37]},{"name":"GetProcessGroupAffinity","features":[1,37]},{"name":"GetProcessHandleCount","features":[1,37]},{"name":"GetProcessId","features":[1,37]},{"name":"GetProcessIdOfThread","features":[1,37]},{"name":"GetProcessInformation","features":[1,37]},{"name":"GetProcessIoCounters","features":[1,37]},{"name":"GetProcessMitigationPolicy","features":[1,37]},{"name":"GetProcessPriorityBoost","features":[1,37]},{"name":"GetProcessShutdownParameters","features":[1,37]},{"name":"GetProcessTimes","features":[1,37]},{"name":"GetProcessVersion","features":[37]},{"name":"GetProcessWorkingSetSize","features":[1,37]},{"name":"GetStartupInfoA","features":[1,37]},{"name":"GetStartupInfoW","features":[1,37]},{"name":"GetSystemTimes","features":[1,37]},{"name":"GetThreadDescription","features":[1,37]},{"name":"GetThreadGroupAffinity","features":[1,32,37]},{"name":"GetThreadIOPendingFlag","features":[1,37]},{"name":"GetThreadId","features":[1,37]},{"name":"GetThreadIdealProcessorEx","features":[1,7,37]},{"name":"GetThreadInformation","features":[1,37]},{"name":"GetThreadPriority","features":[1,37]},{"name":"GetThreadPriorityBoost","features":[1,37]},{"name":"GetThreadSelectedCpuSetMasks","features":[1,32,37]},{"name":"GetThreadSelectedCpuSets","features":[1,37]},{"name":"GetThreadTimes","features":[1,37]},{"name":"GetUmsCompletionListEvent","features":[1,37]},{"name":"GetUmsSystemThreadInformation","features":[1,37]},{"name":"HIGH_PRIORITY_CLASS","features":[37]},{"name":"IDLE_PRIORITY_CLASS","features":[37]},{"name":"INFINITE","features":[37]},{"name":"INHERIT_CALLER_PRIORITY","features":[37]},{"name":"INHERIT_PARENT_AFFINITY","features":[37]},{"name":"INIT_ONCE","features":[37]},{"name":"INIT_ONCE_ASYNC","features":[37]},{"name":"INIT_ONCE_CHECK_ONLY","features":[37]},{"name":"INIT_ONCE_CTX_RESERVED_BITS","features":[37]},{"name":"INIT_ONCE_INIT_FAILED","features":[37]},{"name":"INIT_ONCE_STATIC_INIT","features":[37]},{"name":"IO_COUNTERS","features":[37]},{"name":"IRtwqAsyncCallback","features":[37]},{"name":"IRtwqAsyncResult","features":[37]},{"name":"IRtwqPlatformEvents","features":[37]},{"name":"InitOnceBeginInitialize","features":[1,37]},{"name":"InitOnceComplete","features":[1,37]},{"name":"InitOnceExecuteOnce","features":[1,37]},{"name":"InitOnceInitialize","features":[37]},{"name":"InitializeConditionVariable","features":[37]},{"name":"InitializeCriticalSection","features":[1,7,37]},{"name":"InitializeCriticalSectionAndSpinCount","features":[1,7,37]},{"name":"InitializeCriticalSectionEx","features":[1,7,37]},{"name":"InitializeProcThreadAttributeList","features":[1,37]},{"name":"InitializeSListHead","features":[7,37]},{"name":"InitializeSRWLock","features":[37]},{"name":"InitializeSynchronizationBarrier","features":[1,37]},{"name":"InterlockedFlushSList","features":[7,37]},{"name":"InterlockedPopEntrySList","features":[7,37]},{"name":"InterlockedPushEntrySList","features":[7,37]},{"name":"InterlockedPushListSListEx","features":[7,37]},{"name":"IsImmersiveProcess","features":[1,37]},{"name":"IsProcessCritical","features":[1,37]},{"name":"IsProcessorFeaturePresent","features":[1,37]},{"name":"IsThreadAFiber","features":[1,37]},{"name":"IsThreadpoolTimerSet","features":[1,37]},{"name":"IsWow64Process","features":[1,37]},{"name":"IsWow64Process2","features":[1,32,37]},{"name":"KernelEnabled","features":[37]},{"name":"LOGON_NETCREDENTIALS_ONLY","features":[37]},{"name":"LOGON_WITH_PROFILE","features":[37]},{"name":"LPFIBER_START_ROUTINE","features":[37]},{"name":"LPPROC_THREAD_ATTRIBUTE_LIST","features":[37]},{"name":"LPTHREAD_START_ROUTINE","features":[37]},{"name":"LeaveCriticalSection","features":[1,7,37]},{"name":"LeaveCriticalSectionWhenCallbackReturns","features":[1,7,37]},{"name":"MACHINE_ATTRIBUTES","features":[37]},{"name":"MEMORY_PRIORITY","features":[37]},{"name":"MEMORY_PRIORITY_BELOW_NORMAL","features":[37]},{"name":"MEMORY_PRIORITY_INFORMATION","features":[37]},{"name":"MEMORY_PRIORITY_LOW","features":[37]},{"name":"MEMORY_PRIORITY_MEDIUM","features":[37]},{"name":"MEMORY_PRIORITY_NORMAL","features":[37]},{"name":"MEMORY_PRIORITY_VERY_LOW","features":[37]},{"name":"MUTEX_ALL_ACCESS","features":[37]},{"name":"MUTEX_MODIFY_STATE","features":[37]},{"name":"MaxProcessMitigationPolicy","features":[37]},{"name":"NORMAL_PRIORITY_CLASS","features":[37]},{"name":"OVERRIDE_PREFETCH_PARAMETER","features":[37]},{"name":"OpenEventA","features":[1,37]},{"name":"OpenEventW","features":[1,37]},{"name":"OpenMutexW","features":[1,37]},{"name":"OpenPrivateNamespaceA","features":[1,37]},{"name":"OpenPrivateNamespaceW","features":[1,37]},{"name":"OpenProcess","features":[1,37]},{"name":"OpenProcessToken","features":[1,4,37]},{"name":"OpenSemaphoreW","features":[1,37]},{"name":"OpenThread","features":[1,37]},{"name":"OpenThreadToken","features":[1,4,37]},{"name":"OpenWaitableTimerA","features":[1,37]},{"name":"OpenWaitableTimerW","features":[1,37]},{"name":"PEB","features":[1,7,37]},{"name":"PEB_LDR_DATA","features":[7,37]},{"name":"PFLS_CALLBACK_FUNCTION","features":[37]},{"name":"PF_3DNOW_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ALPHA_BYTE_INSTRUCTIONS","features":[37]},{"name":"PF_ARM_64BIT_LOADSTORE_ATOMIC","features":[37]},{"name":"PF_ARM_DIVIDE_INSTRUCTION_AVAILABLE","features":[37]},{"name":"PF_ARM_EXTERNAL_CACHE_AVAILABLE","features":[37]},{"name":"PF_ARM_FMAC_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_NEON_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_V81_ATOMIC_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_V83_LRCPC_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_V8_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_ARM_VFP_32_REGISTERS_AVAILABLE","features":[37]},{"name":"PF_AVX2_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_AVX512F_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_AVX_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_CHANNELS_ENABLED","features":[37]},{"name":"PF_COMPARE64_EXCHANGE128","features":[37]},{"name":"PF_COMPARE_EXCHANGE128","features":[37]},{"name":"PF_COMPARE_EXCHANGE_DOUBLE","features":[37]},{"name":"PF_ERMS_AVAILABLE","features":[37]},{"name":"PF_FASTFAIL_AVAILABLE","features":[37]},{"name":"PF_FLOATING_POINT_EMULATED","features":[37]},{"name":"PF_FLOATING_POINT_PRECISION_ERRATA","features":[37]},{"name":"PF_MMX_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_MONITORX_INSTRUCTION_AVAILABLE","features":[37]},{"name":"PF_NX_ENABLED","features":[37]},{"name":"PF_PAE_ENABLED","features":[37]},{"name":"PF_PPC_MOVEMEM_64BIT_OK","features":[37]},{"name":"PF_RDPID_INSTRUCTION_AVAILABLE","features":[37]},{"name":"PF_RDRAND_INSTRUCTION_AVAILABLE","features":[37]},{"name":"PF_RDTSCP_INSTRUCTION_AVAILABLE","features":[37]},{"name":"PF_RDTSC_INSTRUCTION_AVAILABLE","features":[37]},{"name":"PF_RDWRFSGSBASE_AVAILABLE","features":[37]},{"name":"PF_SECOND_LEVEL_ADDRESS_TRANSLATION","features":[37]},{"name":"PF_SSE3_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_SSE4_1_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_SSE4_2_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_SSE_DAZ_MODE_AVAILABLE","features":[37]},{"name":"PF_SSSE3_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_VIRT_FIRMWARE_ENABLED","features":[37]},{"name":"PF_XMMI64_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_XMMI_INSTRUCTIONS_AVAILABLE","features":[37]},{"name":"PF_XSAVE_ENABLED","features":[37]},{"name":"PINIT_ONCE_FN","features":[1,37]},{"name":"PMETypeFailFastOnCommitFailure","features":[37]},{"name":"PMETypeMax","features":[37]},{"name":"PME_CURRENT_VERSION","features":[37]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_DISABLE","features":[37]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_ENABLE","features":[37]},{"name":"POWER_REQUEST_CONTEXT_DETAILED_STRING","features":[37]},{"name":"POWER_REQUEST_CONTEXT_FLAGS","features":[37]},{"name":"POWER_REQUEST_CONTEXT_SIMPLE_STRING","features":[37]},{"name":"PPS_POST_PROCESS_INIT_ROUTINE","features":[37]},{"name":"PRIVATE_NAMESPACE_FLAG_DESTROY","features":[37]},{"name":"PROCESSOR_FEATURE_ID","features":[37]},{"name":"PROCESS_ACCESS_RIGHTS","features":[37]},{"name":"PROCESS_AFFINITY_AUTO_UPDATE_FLAGS","features":[37]},{"name":"PROCESS_AFFINITY_DISABLE_AUTO_UPDATE","features":[37]},{"name":"PROCESS_AFFINITY_ENABLE_AUTO_UPDATE","features":[37]},{"name":"PROCESS_ALL_ACCESS","features":[37]},{"name":"PROCESS_BASIC_INFORMATION","features":[1,7,37]},{"name":"PROCESS_CREATE_PROCESS","features":[37]},{"name":"PROCESS_CREATE_THREAD","features":[37]},{"name":"PROCESS_CREATION_FLAGS","features":[37]},{"name":"PROCESS_DELETE","features":[37]},{"name":"PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION","features":[37]},{"name":"PROCESS_DEP_ENABLE","features":[37]},{"name":"PROCESS_DEP_FLAGS","features":[37]},{"name":"PROCESS_DEP_NONE","features":[37]},{"name":"PROCESS_DUP_HANDLE","features":[37]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGET","features":[37]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGETS_INFORMATION","features":[37]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGE","features":[37]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGES_INFORMATION","features":[37]},{"name":"PROCESS_INFORMATION","features":[1,37]},{"name":"PROCESS_INFORMATION_CLASS","features":[37]},{"name":"PROCESS_LEAP_SECOND_INFO","features":[37]},{"name":"PROCESS_LEAP_SECOND_INFO_FLAG_ENABLE_SIXTY_SECOND","features":[37]},{"name":"PROCESS_LEAP_SECOND_INFO_VALID_FLAGS","features":[37]},{"name":"PROCESS_MACHINE_INFORMATION","features":[32,37]},{"name":"PROCESS_MEMORY_EXHAUSTION_INFO","features":[37]},{"name":"PROCESS_MEMORY_EXHAUSTION_TYPE","features":[37]},{"name":"PROCESS_MITIGATION_POLICY","features":[37]},{"name":"PROCESS_MODE_BACKGROUND_BEGIN","features":[37]},{"name":"PROCESS_MODE_BACKGROUND_END","features":[37]},{"name":"PROCESS_NAME_FORMAT","features":[37]},{"name":"PROCESS_NAME_NATIVE","features":[37]},{"name":"PROCESS_NAME_WIN32","features":[37]},{"name":"PROCESS_POWER_THROTTLING_CURRENT_VERSION","features":[37]},{"name":"PROCESS_POWER_THROTTLING_EXECUTION_SPEED","features":[37]},{"name":"PROCESS_POWER_THROTTLING_IGNORE_TIMER_RESOLUTION","features":[37]},{"name":"PROCESS_POWER_THROTTLING_STATE","features":[37]},{"name":"PROCESS_PROTECTION_LEVEL","features":[37]},{"name":"PROCESS_PROTECTION_LEVEL_INFORMATION","features":[37]},{"name":"PROCESS_QUERY_INFORMATION","features":[37]},{"name":"PROCESS_QUERY_LIMITED_INFORMATION","features":[37]},{"name":"PROCESS_READ_CONTROL","features":[37]},{"name":"PROCESS_SET_INFORMATION","features":[37]},{"name":"PROCESS_SET_LIMITED_INFORMATION","features":[37]},{"name":"PROCESS_SET_QUOTA","features":[37]},{"name":"PROCESS_SET_SESSIONID","features":[37]},{"name":"PROCESS_STANDARD_RIGHTS_REQUIRED","features":[37]},{"name":"PROCESS_SUSPEND_RESUME","features":[37]},{"name":"PROCESS_SYNCHRONIZE","features":[37]},{"name":"PROCESS_TERMINATE","features":[37]},{"name":"PROCESS_VM_OPERATION","features":[37]},{"name":"PROCESS_VM_READ","features":[37]},{"name":"PROCESS_VM_WRITE","features":[37]},{"name":"PROCESS_WRITE_DAC","features":[37]},{"name":"PROCESS_WRITE_OWNER","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_ALL_APPLICATION_PACKAGES_POLICY","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_CHILD_PROCESS_POLICY","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_COMPONENT_FILTER","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_DESKTOP_APP_POLICY","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_ENABLE_OPTIONAL_XSTATE_FEATURES","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_GROUP_AFFINITY","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_HANDLE_LIST","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_IDEAL_PROCESSOR","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_JOB_LIST","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_MACHINE_TYPE","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_AUDIT_POLICY","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_POLICY","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_NUM","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_PARENT_PROCESS","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_PREFERRED_NODE","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_PROTECTION_LEVEL","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_REPLACE_VALUE","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_SECURITY_CAPABILITIES","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_UMS_THREAD","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_WIN32K_FILTER","features":[37]},{"name":"PROFILE_KERNEL","features":[37]},{"name":"PROFILE_SERVER","features":[37]},{"name":"PROFILE_USER","features":[37]},{"name":"PROTECTION_LEVEL_ANTIMALWARE_LIGHT","features":[37]},{"name":"PROTECTION_LEVEL_AUTHENTICODE","features":[37]},{"name":"PROTECTION_LEVEL_CODEGEN_LIGHT","features":[37]},{"name":"PROTECTION_LEVEL_LSA_LIGHT","features":[37]},{"name":"PROTECTION_LEVEL_NONE","features":[37]},{"name":"PROTECTION_LEVEL_PPL_APP","features":[37]},{"name":"PROTECTION_LEVEL_WINDOWS","features":[37]},{"name":"PROTECTION_LEVEL_WINDOWS_LIGHT","features":[37]},{"name":"PROTECTION_LEVEL_WINTCB","features":[37]},{"name":"PROTECTION_LEVEL_WINTCB_LIGHT","features":[37]},{"name":"PRTL_UMS_SCHEDULER_ENTRY_POINT","features":[36,37]},{"name":"PTIMERAPCROUTINE","features":[37]},{"name":"PTP_CALLBACK_INSTANCE","features":[37]},{"name":"PTP_CLEANUP_GROUP","features":[37]},{"name":"PTP_CLEANUP_GROUP_CANCEL_CALLBACK","features":[37]},{"name":"PTP_IO","features":[37]},{"name":"PTP_POOL","features":[37]},{"name":"PTP_SIMPLE_CALLBACK","features":[37]},{"name":"PTP_TIMER","features":[37]},{"name":"PTP_TIMER_CALLBACK","features":[37]},{"name":"PTP_WAIT","features":[37]},{"name":"PTP_WAIT_CALLBACK","features":[37]},{"name":"PTP_WIN32_IO_CALLBACK","features":[37]},{"name":"PTP_WORK","features":[37]},{"name":"PTP_WORK_CALLBACK","features":[37]},{"name":"ProcThreadAttributeAllApplicationPackagesPolicy","features":[37]},{"name":"ProcThreadAttributeChildProcessPolicy","features":[37]},{"name":"ProcThreadAttributeComponentFilter","features":[37]},{"name":"ProcThreadAttributeDesktopAppPolicy","features":[37]},{"name":"ProcThreadAttributeEnableOptionalXStateFeatures","features":[37]},{"name":"ProcThreadAttributeGroupAffinity","features":[37]},{"name":"ProcThreadAttributeHandleList","features":[37]},{"name":"ProcThreadAttributeIdealProcessor","features":[37]},{"name":"ProcThreadAttributeJobList","features":[37]},{"name":"ProcThreadAttributeMachineType","features":[37]},{"name":"ProcThreadAttributeMitigationAuditPolicy","features":[37]},{"name":"ProcThreadAttributeMitigationPolicy","features":[37]},{"name":"ProcThreadAttributeParentProcess","features":[37]},{"name":"ProcThreadAttributePreferredNode","features":[37]},{"name":"ProcThreadAttributeProtectionLevel","features":[37]},{"name":"ProcThreadAttributePseudoConsole","features":[37]},{"name":"ProcThreadAttributeSafeOpenPromptOriginClaim","features":[37]},{"name":"ProcThreadAttributeSecurityCapabilities","features":[37]},{"name":"ProcThreadAttributeTrustedApp","features":[37]},{"name":"ProcThreadAttributeUmsThread","features":[37]},{"name":"ProcThreadAttributeWin32kFilter","features":[37]},{"name":"ProcessASLRPolicy","features":[37]},{"name":"ProcessActivationContextTrustPolicy","features":[37]},{"name":"ProcessAppMemoryInfo","features":[37]},{"name":"ProcessChildProcessPolicy","features":[37]},{"name":"ProcessControlFlowGuardPolicy","features":[37]},{"name":"ProcessDEPPolicy","features":[37]},{"name":"ProcessDynamicCodePolicy","features":[37]},{"name":"ProcessExtensionPointDisablePolicy","features":[37]},{"name":"ProcessFontDisablePolicy","features":[37]},{"name":"ProcessImageLoadPolicy","features":[37]},{"name":"ProcessInPrivateInfo","features":[37]},{"name":"ProcessInformationClassMax","features":[37]},{"name":"ProcessLeapSecondInfo","features":[37]},{"name":"ProcessMachineTypeInfo","features":[37]},{"name":"ProcessMaxOverridePrefetchParameter","features":[37]},{"name":"ProcessMemoryExhaustionInfo","features":[37]},{"name":"ProcessMemoryPriority","features":[37]},{"name":"ProcessMitigationOptionsMask","features":[37]},{"name":"ProcessOverrideSubsequentPrefetchParameter","features":[37]},{"name":"ProcessPayloadRestrictionPolicy","features":[37]},{"name":"ProcessPowerThrottling","features":[37]},{"name":"ProcessProtectionLevelInfo","features":[37]},{"name":"ProcessRedirectionTrustPolicy","features":[37]},{"name":"ProcessReservedValue1","features":[37]},{"name":"ProcessSEHOPPolicy","features":[37]},{"name":"ProcessSideChannelIsolationPolicy","features":[37]},{"name":"ProcessSignaturePolicy","features":[37]},{"name":"ProcessStrictHandleCheckPolicy","features":[37]},{"name":"ProcessSystemCallDisablePolicy","features":[37]},{"name":"ProcessSystemCallFilterPolicy","features":[37]},{"name":"ProcessTelemetryCoverageInfo","features":[37]},{"name":"ProcessUserPointerAuthPolicy","features":[37]},{"name":"ProcessUserShadowStackPolicy","features":[37]},{"name":"PulseEvent","features":[1,37]},{"name":"QUEUE_USER_APC_CALLBACK_DATA_CONTEXT","features":[37]},{"name":"QUEUE_USER_APC_FLAGS","features":[37]},{"name":"QUEUE_USER_APC_FLAGS_NONE","features":[37]},{"name":"QUEUE_USER_APC_FLAGS_SPECIAL_USER_APC","features":[37]},{"name":"QueryDepthSList","features":[7,37]},{"name":"QueryFullProcessImageNameA","features":[1,37]},{"name":"QueryFullProcessImageNameW","features":[1,37]},{"name":"QueryProcessAffinityUpdateMode","features":[1,37]},{"name":"QueryProtectedPolicy","features":[1,37]},{"name":"QueryThreadpoolStackInformation","features":[1,37]},{"name":"QueryUmsThreadInformation","features":[1,37]},{"name":"QueueUserAPC","features":[1,37]},{"name":"QueueUserAPC2","features":[1,37]},{"name":"QueueUserWorkItem","features":[1,37]},{"name":"REALTIME_PRIORITY_CLASS","features":[37]},{"name":"REASON_CONTEXT","features":[1,37]},{"name":"RTL_CRITICAL_SECTION_ALL_FLAG_BITS","features":[37]},{"name":"RTL_CRITICAL_SECTION_DEBUG_FLAG_STATIC_INIT","features":[37]},{"name":"RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN","features":[37]},{"name":"RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO","features":[37]},{"name":"RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO","features":[37]},{"name":"RTL_CRITICAL_SECTION_FLAG_RESOURCE_TYPE","features":[37]},{"name":"RTL_CRITICAL_SECTION_FLAG_STATIC_INIT","features":[37]},{"name":"RTL_USER_PROCESS_PARAMETERS","features":[1,37]},{"name":"RTWQASYNCRESULT","features":[37]},{"name":"RTWQPERIODICCALLBACK","features":[37]},{"name":"RTWQ_MULTITHREADED_WORKQUEUE","features":[37]},{"name":"RTWQ_STANDARD_WORKQUEUE","features":[37]},{"name":"RTWQ_WINDOW_WORKQUEUE","features":[37]},{"name":"RTWQ_WORKQUEUE_TYPE","features":[37]},{"name":"RegisterWaitForSingleObject","features":[1,37]},{"name":"ReleaseMutex","features":[1,37]},{"name":"ReleaseMutexWhenCallbackReturns","features":[1,37]},{"name":"ReleaseSRWLockExclusive","features":[37]},{"name":"ReleaseSRWLockShared","features":[37]},{"name":"ReleaseSemaphore","features":[1,37]},{"name":"ReleaseSemaphoreWhenCallbackReturns","features":[1,37]},{"name":"ResetEvent","features":[1,37]},{"name":"ResumeThread","features":[1,37]},{"name":"RtwqAddPeriodicCallback","features":[37]},{"name":"RtwqAllocateSerialWorkQueue","features":[37]},{"name":"RtwqAllocateWorkQueue","features":[37]},{"name":"RtwqBeginRegisterWorkQueueWithMMCSS","features":[37]},{"name":"RtwqBeginUnregisterWorkQueueWithMMCSS","features":[37]},{"name":"RtwqCancelDeadline","features":[1,37]},{"name":"RtwqCancelWorkItem","features":[37]},{"name":"RtwqCreateAsyncResult","features":[37]},{"name":"RtwqEndRegisterWorkQueueWithMMCSS","features":[37]},{"name":"RtwqGetWorkQueueMMCSSClass","features":[37]},{"name":"RtwqGetWorkQueueMMCSSPriority","features":[37]},{"name":"RtwqGetWorkQueueMMCSSTaskId","features":[37]},{"name":"RtwqInvokeCallback","features":[37]},{"name":"RtwqJoinWorkQueue","features":[1,37]},{"name":"RtwqLockPlatform","features":[37]},{"name":"RtwqLockSharedWorkQueue","features":[37]},{"name":"RtwqLockWorkQueue","features":[37]},{"name":"RtwqPutWaitingWorkItem","features":[1,37]},{"name":"RtwqPutWorkItem","features":[37]},{"name":"RtwqRegisterPlatformEvents","features":[37]},{"name":"RtwqRegisterPlatformWithMMCSS","features":[37]},{"name":"RtwqRemovePeriodicCallback","features":[37]},{"name":"RtwqScheduleWorkItem","features":[37]},{"name":"RtwqSetDeadline","features":[1,37]},{"name":"RtwqSetDeadline2","features":[1,37]},{"name":"RtwqSetLongRunning","features":[1,37]},{"name":"RtwqShutdown","features":[37]},{"name":"RtwqStartup","features":[37]},{"name":"RtwqUnjoinWorkQueue","features":[1,37]},{"name":"RtwqUnlockPlatform","features":[37]},{"name":"RtwqUnlockWorkQueue","features":[37]},{"name":"RtwqUnregisterPlatformEvents","features":[37]},{"name":"RtwqUnregisterPlatformFromMMCSS","features":[37]},{"name":"SEMAPHORE_ALL_ACCESS","features":[37]},{"name":"SEMAPHORE_MODIFY_STATE","features":[37]},{"name":"SRWLOCK","features":[37]},{"name":"SRWLOCK_INIT","features":[37]},{"name":"STACK_SIZE_PARAM_IS_A_RESERVATION","features":[37]},{"name":"STARTF_FORCEOFFFEEDBACK","features":[37]},{"name":"STARTF_FORCEONFEEDBACK","features":[37]},{"name":"STARTF_PREVENTPINNING","features":[37]},{"name":"STARTF_RUNFULLSCREEN","features":[37]},{"name":"STARTF_TITLEISAPPID","features":[37]},{"name":"STARTF_TITLEISLINKNAME","features":[37]},{"name":"STARTF_UNTRUSTEDSOURCE","features":[37]},{"name":"STARTF_USECOUNTCHARS","features":[37]},{"name":"STARTF_USEFILLATTRIBUTE","features":[37]},{"name":"STARTF_USEHOTKEY","features":[37]},{"name":"STARTF_USEPOSITION","features":[37]},{"name":"STARTF_USESHOWWINDOW","features":[37]},{"name":"STARTF_USESIZE","features":[37]},{"name":"STARTF_USESTDHANDLES","features":[37]},{"name":"STARTUPINFOA","features":[1,37]},{"name":"STARTUPINFOEXA","features":[1,37]},{"name":"STARTUPINFOEXW","features":[1,37]},{"name":"STARTUPINFOW","features":[1,37]},{"name":"STARTUPINFOW_FLAGS","features":[37]},{"name":"SYNCHRONIZATION_ACCESS_RIGHTS","features":[37]},{"name":"SYNCHRONIZATION_BARRIER","features":[37]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_BLOCK_ONLY","features":[37]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_NO_DELETE","features":[37]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_SPIN_ONLY","features":[37]},{"name":"SYNCHRONIZATION_DELETE","features":[37]},{"name":"SYNCHRONIZATION_READ_CONTROL","features":[37]},{"name":"SYNCHRONIZATION_SYNCHRONIZE","features":[37]},{"name":"SYNCHRONIZATION_WRITE_DAC","features":[37]},{"name":"SYNCHRONIZATION_WRITE_OWNER","features":[37]},{"name":"SetCriticalSectionSpinCount","features":[1,7,37]},{"name":"SetEvent","features":[1,37]},{"name":"SetEventWhenCallbackReturns","features":[1,37]},{"name":"SetPriorityClass","features":[1,37]},{"name":"SetProcessAffinityMask","features":[1,37]},{"name":"SetProcessAffinityUpdateMode","features":[1,37]},{"name":"SetProcessDEPPolicy","features":[1,37]},{"name":"SetProcessDefaultCpuSetMasks","features":[1,32,37]},{"name":"SetProcessDefaultCpuSets","features":[1,37]},{"name":"SetProcessDynamicEHContinuationTargets","features":[1,37]},{"name":"SetProcessDynamicEnforcedCetCompatibleRanges","features":[1,37]},{"name":"SetProcessInformation","features":[1,37]},{"name":"SetProcessMitigationPolicy","features":[1,37]},{"name":"SetProcessPriorityBoost","features":[1,37]},{"name":"SetProcessRestrictionExemption","features":[1,37]},{"name":"SetProcessShutdownParameters","features":[1,37]},{"name":"SetProcessWorkingSetSize","features":[1,37]},{"name":"SetProtectedPolicy","features":[1,37]},{"name":"SetThreadAffinityMask","features":[1,37]},{"name":"SetThreadDescription","features":[1,37]},{"name":"SetThreadGroupAffinity","features":[1,32,37]},{"name":"SetThreadIdealProcessor","features":[1,37]},{"name":"SetThreadIdealProcessorEx","features":[1,7,37]},{"name":"SetThreadInformation","features":[1,37]},{"name":"SetThreadPriority","features":[1,37]},{"name":"SetThreadPriorityBoost","features":[1,37]},{"name":"SetThreadSelectedCpuSetMasks","features":[1,32,37]},{"name":"SetThreadSelectedCpuSets","features":[1,37]},{"name":"SetThreadStackGuarantee","features":[1,37]},{"name":"SetThreadToken","features":[1,37]},{"name":"SetThreadpoolStackInformation","features":[1,37]},{"name":"SetThreadpoolThreadMaximum","features":[37]},{"name":"SetThreadpoolThreadMinimum","features":[1,37]},{"name":"SetThreadpoolTimer","features":[1,37]},{"name":"SetThreadpoolTimerEx","features":[1,37]},{"name":"SetThreadpoolWait","features":[1,37]},{"name":"SetThreadpoolWaitEx","features":[1,37]},{"name":"SetTimerQueueTimer","features":[1,37]},{"name":"SetUmsThreadInformation","features":[1,37]},{"name":"SetWaitableTimer","features":[1,37]},{"name":"SetWaitableTimerEx","features":[1,37]},{"name":"SignalObjectAndWait","features":[1,37]},{"name":"Sleep","features":[37]},{"name":"SleepConditionVariableCS","features":[1,7,37]},{"name":"SleepConditionVariableSRW","features":[1,37]},{"name":"SleepEx","features":[1,37]},{"name":"StartThreadpoolIo","features":[37]},{"name":"SubmitThreadpoolWork","features":[37]},{"name":"SuspendThread","features":[1,37]},{"name":"SwitchToFiber","features":[37]},{"name":"SwitchToThread","features":[1,37]},{"name":"TEB","features":[1,7,37]},{"name":"THREAD_ACCESS_RIGHTS","features":[37]},{"name":"THREAD_ALL_ACCESS","features":[37]},{"name":"THREAD_CREATE_RUN_IMMEDIATELY","features":[37]},{"name":"THREAD_CREATE_SUSPENDED","features":[37]},{"name":"THREAD_CREATION_FLAGS","features":[37]},{"name":"THREAD_DELETE","features":[37]},{"name":"THREAD_DIRECT_IMPERSONATION","features":[37]},{"name":"THREAD_GET_CONTEXT","features":[37]},{"name":"THREAD_IMPERSONATE","features":[37]},{"name":"THREAD_INFORMATION_CLASS","features":[37]},{"name":"THREAD_MODE_BACKGROUND_BEGIN","features":[37]},{"name":"THREAD_MODE_BACKGROUND_END","features":[37]},{"name":"THREAD_POWER_THROTTLING_CURRENT_VERSION","features":[37]},{"name":"THREAD_POWER_THROTTLING_EXECUTION_SPEED","features":[37]},{"name":"THREAD_POWER_THROTTLING_STATE","features":[37]},{"name":"THREAD_POWER_THROTTLING_VALID_FLAGS","features":[37]},{"name":"THREAD_PRIORITY","features":[37]},{"name":"THREAD_PRIORITY_ABOVE_NORMAL","features":[37]},{"name":"THREAD_PRIORITY_BELOW_NORMAL","features":[37]},{"name":"THREAD_PRIORITY_HIGHEST","features":[37]},{"name":"THREAD_PRIORITY_IDLE","features":[37]},{"name":"THREAD_PRIORITY_LOWEST","features":[37]},{"name":"THREAD_PRIORITY_MIN","features":[37]},{"name":"THREAD_PRIORITY_NORMAL","features":[37]},{"name":"THREAD_PRIORITY_TIME_CRITICAL","features":[37]},{"name":"THREAD_QUERY_INFORMATION","features":[37]},{"name":"THREAD_QUERY_LIMITED_INFORMATION","features":[37]},{"name":"THREAD_READ_CONTROL","features":[37]},{"name":"THREAD_RESUME","features":[37]},{"name":"THREAD_SET_CONTEXT","features":[37]},{"name":"THREAD_SET_INFORMATION","features":[37]},{"name":"THREAD_SET_LIMITED_INFORMATION","features":[37]},{"name":"THREAD_SET_THREAD_TOKEN","features":[37]},{"name":"THREAD_STANDARD_RIGHTS_REQUIRED","features":[37]},{"name":"THREAD_SUSPEND_RESUME","features":[37]},{"name":"THREAD_SYNCHRONIZE","features":[37]},{"name":"THREAD_TERMINATE","features":[37]},{"name":"THREAD_WRITE_DAC","features":[37]},{"name":"THREAD_WRITE_OWNER","features":[37]},{"name":"TIMER_ALL_ACCESS","features":[37]},{"name":"TIMER_MODIFY_STATE","features":[37]},{"name":"TIMER_QUERY_STATE","features":[37]},{"name":"TLS_OUT_OF_INDEXES","features":[37]},{"name":"TP_CALLBACK_ENVIRON_V3","features":[37]},{"name":"TP_CALLBACK_PRIORITY","features":[37]},{"name":"TP_CALLBACK_PRIORITY_COUNT","features":[37]},{"name":"TP_CALLBACK_PRIORITY_HIGH","features":[37]},{"name":"TP_CALLBACK_PRIORITY_INVALID","features":[37]},{"name":"TP_CALLBACK_PRIORITY_LOW","features":[37]},{"name":"TP_CALLBACK_PRIORITY_NORMAL","features":[37]},{"name":"TP_POOL_STACK_INFORMATION","features":[37]},{"name":"TerminateProcess","features":[1,37]},{"name":"TerminateThread","features":[1,37]},{"name":"ThreadAbsoluteCpuPriority","features":[37]},{"name":"ThreadDynamicCodePolicy","features":[37]},{"name":"ThreadInformationClassMax","features":[37]},{"name":"ThreadMemoryPriority","features":[37]},{"name":"ThreadPowerThrottling","features":[37]},{"name":"TlsAlloc","features":[37]},{"name":"TlsFree","features":[1,37]},{"name":"TlsGetValue","features":[37]},{"name":"TlsSetValue","features":[1,37]},{"name":"TryAcquireSRWLockExclusive","features":[1,37]},{"name":"TryAcquireSRWLockShared","features":[1,37]},{"name":"TryEnterCriticalSection","features":[1,7,37]},{"name":"TrySubmitThreadpoolCallback","features":[1,37]},{"name":"UMS_SCHEDULER_STARTUP_INFO","features":[36,37]},{"name":"UMS_SYSTEM_THREAD_INFORMATION","features":[37]},{"name":"UMS_THREAD_INFO_CLASS","features":[37]},{"name":"UmsThreadAffinity","features":[37]},{"name":"UmsThreadInvalidInfoClass","features":[37]},{"name":"UmsThreadIsSuspended","features":[37]},{"name":"UmsThreadIsTerminated","features":[37]},{"name":"UmsThreadMaxInfoClass","features":[37]},{"name":"UmsThreadPriority","features":[37]},{"name":"UmsThreadTeb","features":[37]},{"name":"UmsThreadUserContext","features":[37]},{"name":"UmsThreadYield","features":[1,37]},{"name":"UnregisterWait","features":[1,37]},{"name":"UnregisterWaitEx","features":[1,37]},{"name":"UpdateProcThreadAttribute","features":[1,37]},{"name":"UserEnabled","features":[37]},{"name":"WAITORTIMERCALLBACK","features":[1,37]},{"name":"WORKERCALLBACKFUNC","features":[37]},{"name":"WORKER_THREAD_FLAGS","features":[37]},{"name":"WT_EXECUTEDEFAULT","features":[37]},{"name":"WT_EXECUTEINIOTHREAD","features":[37]},{"name":"WT_EXECUTEINPERSISTENTTHREAD","features":[37]},{"name":"WT_EXECUTEINTIMERTHREAD","features":[37]},{"name":"WT_EXECUTEINWAITTHREAD","features":[37]},{"name":"WT_EXECUTELONGFUNCTION","features":[37]},{"name":"WT_EXECUTEONLYONCE","features":[37]},{"name":"WT_TRANSFER_IMPERSONATION","features":[37]},{"name":"WaitForInputIdle","features":[1,37]},{"name":"WaitForMultipleObjects","features":[1,37]},{"name":"WaitForMultipleObjectsEx","features":[1,37]},{"name":"WaitForSingleObject","features":[1,37]},{"name":"WaitForSingleObjectEx","features":[1,37]},{"name":"WaitForThreadpoolIoCallbacks","features":[1,37]},{"name":"WaitForThreadpoolTimerCallbacks","features":[1,37]},{"name":"WaitForThreadpoolWaitCallbacks","features":[1,37]},{"name":"WaitForThreadpoolWorkCallbacks","features":[1,37]},{"name":"WaitOnAddress","features":[1,37]},{"name":"WakeAllConditionVariable","features":[37]},{"name":"WakeByAddressAll","features":[37]},{"name":"WakeByAddressSingle","features":[37]},{"name":"WakeConditionVariable","features":[37]},{"name":"WinExec","features":[37]},{"name":"Wow64Container","features":[37]},{"name":"Wow64SetThreadDefaultGuestMachine","features":[37]},{"name":"Wow64SuspendThread","features":[1,37]}],"617":[{"name":"DYNAMIC_TIME_ZONE_INFORMATION","features":[1,163]},{"name":"EnumDynamicTimeZoneInformation","features":[1,163]},{"name":"FileTimeToSystemTime","features":[1,163]},{"name":"GetDynamicTimeZoneInformation","features":[1,163]},{"name":"GetDynamicTimeZoneInformationEffectiveYears","features":[1,163]},{"name":"GetTimeZoneInformation","features":[1,163]},{"name":"GetTimeZoneInformationForYear","features":[1,163]},{"name":"LocalFileTimeToLocalSystemTime","features":[1,163]},{"name":"LocalSystemTimeToLocalFileTime","features":[1,163]},{"name":"SetDynamicTimeZoneInformation","features":[1,163]},{"name":"SetTimeZoneInformation","features":[1,163]},{"name":"SystemTimeToFileTime","features":[1,163]},{"name":"SystemTimeToTzSpecificLocalTime","features":[1,163]},{"name":"SystemTimeToTzSpecificLocalTimeEx","features":[1,163]},{"name":"TIME_ZONE_ID_INVALID","features":[163]},{"name":"TIME_ZONE_INFORMATION","features":[1,163]},{"name":"TSF_Authenticated","features":[163]},{"name":"TSF_Hardware","features":[163]},{"name":"TSF_IPv6","features":[163]},{"name":"TSF_SignatureAuthenticated","features":[163]},{"name":"TzSpecificLocalTimeToSystemTime","features":[1,163]},{"name":"TzSpecificLocalTimeToSystemTimeEx","features":[1,163]},{"name":"wszW32TimeRegKeyPolicyTimeProviders","features":[163]},{"name":"wszW32TimeRegKeyTimeProviders","features":[163]},{"name":"wszW32TimeRegValueDllName","features":[163]},{"name":"wszW32TimeRegValueEnabled","features":[163]},{"name":"wszW32TimeRegValueInputProvider","features":[163]},{"name":"wszW32TimeRegValueMetaDataProvider","features":[163]}],"618":[{"name":"GetDeviceID","features":[1,204]},{"name":"GetDeviceIDString","features":[1,204]},{"name":"TBS_COMMAND_LOCALITY","features":[204]},{"name":"TBS_COMMAND_LOCALITY_FOUR","features":[204]},{"name":"TBS_COMMAND_LOCALITY_ONE","features":[204]},{"name":"TBS_COMMAND_LOCALITY_THREE","features":[204]},{"name":"TBS_COMMAND_LOCALITY_TWO","features":[204]},{"name":"TBS_COMMAND_LOCALITY_ZERO","features":[204]},{"name":"TBS_COMMAND_PRIORITY","features":[204]},{"name":"TBS_COMMAND_PRIORITY_HIGH","features":[204]},{"name":"TBS_COMMAND_PRIORITY_LOW","features":[204]},{"name":"TBS_COMMAND_PRIORITY_MAX","features":[204]},{"name":"TBS_COMMAND_PRIORITY_NORMAL","features":[204]},{"name":"TBS_COMMAND_PRIORITY_SYSTEM","features":[204]},{"name":"TBS_CONTEXT_PARAMS","features":[204]},{"name":"TBS_CONTEXT_PARAMS2","features":[204]},{"name":"TBS_CONTEXT_VERSION_ONE","features":[204]},{"name":"TBS_CONTEXT_VERSION_TWO","features":[204]},{"name":"TBS_OWNERAUTH_TYPE_ADMIN","features":[204]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT","features":[204]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT_20","features":[204]},{"name":"TBS_OWNERAUTH_TYPE_FULL","features":[204]},{"name":"TBS_OWNERAUTH_TYPE_STORAGE_20","features":[204]},{"name":"TBS_OWNERAUTH_TYPE_USER","features":[204]},{"name":"TBS_SUCCESS","features":[204]},{"name":"TBS_TCGLOG_DRTM_BOOT","features":[204]},{"name":"TBS_TCGLOG_DRTM_CURRENT","features":[204]},{"name":"TBS_TCGLOG_DRTM_RESUME","features":[204]},{"name":"TBS_TCGLOG_SRTM_BOOT","features":[204]},{"name":"TBS_TCGLOG_SRTM_CURRENT","features":[204]},{"name":"TBS_TCGLOG_SRTM_RESUME","features":[204]},{"name":"TPM_DEVICE_INFO","features":[204]},{"name":"TPM_IFTYPE_1","features":[204]},{"name":"TPM_IFTYPE_EMULATOR","features":[204]},{"name":"TPM_IFTYPE_HW","features":[204]},{"name":"TPM_IFTYPE_SPB","features":[204]},{"name":"TPM_IFTYPE_TRUSTZONE","features":[204]},{"name":"TPM_IFTYPE_UNKNOWN","features":[204]},{"name":"TPM_VERSION_12","features":[204]},{"name":"TPM_VERSION_20","features":[204]},{"name":"TPM_VERSION_UNKNOWN","features":[204]},{"name":"TPM_WNF_INFO_CLEAR_SUCCESSFUL","features":[204]},{"name":"TPM_WNF_INFO_NO_REBOOT_REQUIRED","features":[204]},{"name":"TPM_WNF_INFO_OWNERSHIP_SUCCESSFUL","features":[204]},{"name":"TPM_WNF_PROVISIONING","features":[204]},{"name":"Tbsi_Context_Create","features":[204]},{"name":"Tbsi_Create_Windows_Key","features":[204]},{"name":"Tbsi_GetDeviceInfo","features":[204]},{"name":"Tbsi_Get_OwnerAuth","features":[204]},{"name":"Tbsi_Get_TCG_Log","features":[204]},{"name":"Tbsi_Get_TCG_Log_Ex","features":[204]},{"name":"Tbsi_Is_Tpm_Present","features":[1,204]},{"name":"Tbsi_Physical_Presence_Command","features":[204]},{"name":"Tbsi_Revoke_Attestation","features":[204]},{"name":"Tbsip_Cancel_Commands","features":[204]},{"name":"Tbsip_Context_Close","features":[204]},{"name":"Tbsip_Submit_Command","features":[204]}],"622":[{"name":"UAL_DATA_BLOB","features":[15,205]},{"name":"UalInstrument","features":[15,205]},{"name":"UalRegisterProduct","features":[205]},{"name":"UalStart","features":[15,205]},{"name":"UalStop","features":[15,205]}],"623":[{"name":"ClearVariantArray","features":[1,41,42]},{"name":"DPF_ERROR","features":[42]},{"name":"DPF_MARQUEE","features":[42]},{"name":"DPF_MARQUEE_COMPLETE","features":[42]},{"name":"DPF_NONE","features":[42]},{"name":"DPF_STOPPED","features":[42]},{"name":"DPF_WARNING","features":[42]},{"name":"DRAWPROGRESSFLAGS","features":[42]},{"name":"DosDateTimeToVariantTime","features":[42]},{"name":"InitVariantFromBooleanArray","features":[1,41,42]},{"name":"InitVariantFromBuffer","features":[1,41,42]},{"name":"InitVariantFromDoubleArray","features":[1,41,42]},{"name":"InitVariantFromFileTime","features":[1,41,42]},{"name":"InitVariantFromFileTimeArray","features":[1,41,42]},{"name":"InitVariantFromGUIDAsString","features":[1,41,42]},{"name":"InitVariantFromInt16Array","features":[1,41,42]},{"name":"InitVariantFromInt32Array","features":[1,41,42]},{"name":"InitVariantFromInt64Array","features":[1,41,42]},{"name":"InitVariantFromResource","features":[1,41,42]},{"name":"InitVariantFromStringArray","features":[1,41,42]},{"name":"InitVariantFromUInt16Array","features":[1,41,42]},{"name":"InitVariantFromUInt32Array","features":[1,41,42]},{"name":"InitVariantFromUInt64Array","features":[1,41,42]},{"name":"InitVariantFromVariantArrayElem","features":[1,41,42]},{"name":"PSTF_LOCAL","features":[42]},{"name":"PSTF_UTC","features":[42]},{"name":"PSTIME_FLAGS","features":[42]},{"name":"SystemTimeToVariantTime","features":[1,42]},{"name":"VARENUM","features":[42]},{"name":"VARIANT","features":[1,41,42]},{"name":"VARIANT_ALPHABOOL","features":[42]},{"name":"VARIANT_CALENDAR_GREGORIAN","features":[42]},{"name":"VARIANT_CALENDAR_HIJRI","features":[42]},{"name":"VARIANT_CALENDAR_THAI","features":[42]},{"name":"VARIANT_LOCALBOOL","features":[42]},{"name":"VARIANT_NOUSEROVERRIDE","features":[42]},{"name":"VARIANT_NOVALUEPROP","features":[42]},{"name":"VARIANT_USE_NLS","features":[42]},{"name":"VARIANT_UserFree","features":[1,41,42]},{"name":"VARIANT_UserFree64","features":[1,41,42]},{"name":"VARIANT_UserMarshal","features":[1,41,42]},{"name":"VARIANT_UserMarshal64","features":[1,41,42]},{"name":"VARIANT_UserSize","features":[1,41,42]},{"name":"VARIANT_UserSize64","features":[1,41,42]},{"name":"VARIANT_UserUnmarshal","features":[1,41,42]},{"name":"VARIANT_UserUnmarshal64","features":[1,41,42]},{"name":"VAR_CHANGE_FLAGS","features":[42]},{"name":"VT_ARRAY","features":[42]},{"name":"VT_BLOB","features":[42]},{"name":"VT_BLOB_OBJECT","features":[42]},{"name":"VT_BOOL","features":[42]},{"name":"VT_BSTR","features":[42]},{"name":"VT_BSTR_BLOB","features":[42]},{"name":"VT_BYREF","features":[42]},{"name":"VT_CARRAY","features":[42]},{"name":"VT_CF","features":[42]},{"name":"VT_CLSID","features":[42]},{"name":"VT_CY","features":[42]},{"name":"VT_DATE","features":[42]},{"name":"VT_DECIMAL","features":[42]},{"name":"VT_DISPATCH","features":[42]},{"name":"VT_EMPTY","features":[42]},{"name":"VT_ERROR","features":[42]},{"name":"VT_FILETIME","features":[42]},{"name":"VT_HRESULT","features":[42]},{"name":"VT_I1","features":[42]},{"name":"VT_I2","features":[42]},{"name":"VT_I4","features":[42]},{"name":"VT_I8","features":[42]},{"name":"VT_ILLEGAL","features":[42]},{"name":"VT_ILLEGALMASKED","features":[42]},{"name":"VT_INT","features":[42]},{"name":"VT_INT_PTR","features":[42]},{"name":"VT_LPSTR","features":[42]},{"name":"VT_LPWSTR","features":[42]},{"name":"VT_NULL","features":[42]},{"name":"VT_PTR","features":[42]},{"name":"VT_R4","features":[42]},{"name":"VT_R8","features":[42]},{"name":"VT_RECORD","features":[42]},{"name":"VT_RESERVED","features":[42]},{"name":"VT_SAFEARRAY","features":[42]},{"name":"VT_STORAGE","features":[42]},{"name":"VT_STORED_OBJECT","features":[42]},{"name":"VT_STREAM","features":[42]},{"name":"VT_STREAMED_OBJECT","features":[42]},{"name":"VT_TYPEMASK","features":[42]},{"name":"VT_UI1","features":[42]},{"name":"VT_UI2","features":[42]},{"name":"VT_UI4","features":[42]},{"name":"VT_UI8","features":[42]},{"name":"VT_UINT","features":[42]},{"name":"VT_UINT_PTR","features":[42]},{"name":"VT_UNKNOWN","features":[42]},{"name":"VT_USERDEFINED","features":[42]},{"name":"VT_VARIANT","features":[42]},{"name":"VT_VECTOR","features":[42]},{"name":"VT_VERSIONED_STREAM","features":[42]},{"name":"VT_VOID","features":[42]},{"name":"VariantChangeType","features":[1,41,42]},{"name":"VariantChangeTypeEx","features":[1,41,42]},{"name":"VariantClear","features":[1,41,42]},{"name":"VariantCompare","features":[1,41,42]},{"name":"VariantCopy","features":[1,41,42]},{"name":"VariantCopyInd","features":[1,41,42]},{"name":"VariantGetBooleanElem","features":[1,41,42]},{"name":"VariantGetDoubleElem","features":[1,41,42]},{"name":"VariantGetElementCount","features":[1,41,42]},{"name":"VariantGetInt16Elem","features":[1,41,42]},{"name":"VariantGetInt32Elem","features":[1,41,42]},{"name":"VariantGetInt64Elem","features":[1,41,42]},{"name":"VariantGetStringElem","features":[1,41,42]},{"name":"VariantGetUInt16Elem","features":[1,41,42]},{"name":"VariantGetUInt32Elem","features":[1,41,42]},{"name":"VariantGetUInt64Elem","features":[1,41,42]},{"name":"VariantInit","features":[1,41,42]},{"name":"VariantTimeToDosDateTime","features":[42]},{"name":"VariantTimeToSystemTime","features":[1,42]},{"name":"VariantToBoolean","features":[1,41,42]},{"name":"VariantToBooleanArray","features":[1,41,42]},{"name":"VariantToBooleanArrayAlloc","features":[1,41,42]},{"name":"VariantToBooleanWithDefault","features":[1,41,42]},{"name":"VariantToBuffer","features":[1,41,42]},{"name":"VariantToDosDateTime","features":[1,41,42]},{"name":"VariantToDouble","features":[1,41,42]},{"name":"VariantToDoubleArray","features":[1,41,42]},{"name":"VariantToDoubleArrayAlloc","features":[1,41,42]},{"name":"VariantToDoubleWithDefault","features":[1,41,42]},{"name":"VariantToFileTime","features":[1,41,42]},{"name":"VariantToGUID","features":[1,41,42]},{"name":"VariantToInt16","features":[1,41,42]},{"name":"VariantToInt16Array","features":[1,41,42]},{"name":"VariantToInt16ArrayAlloc","features":[1,41,42]},{"name":"VariantToInt16WithDefault","features":[1,41,42]},{"name":"VariantToInt32","features":[1,41,42]},{"name":"VariantToInt32Array","features":[1,41,42]},{"name":"VariantToInt32ArrayAlloc","features":[1,41,42]},{"name":"VariantToInt32WithDefault","features":[1,41,42]},{"name":"VariantToInt64","features":[1,41,42]},{"name":"VariantToInt64Array","features":[1,41,42]},{"name":"VariantToInt64ArrayAlloc","features":[1,41,42]},{"name":"VariantToInt64WithDefault","features":[1,41,42]},{"name":"VariantToString","features":[1,41,42]},{"name":"VariantToStringAlloc","features":[1,41,42]},{"name":"VariantToStringArray","features":[1,41,42]},{"name":"VariantToStringArrayAlloc","features":[1,41,42]},{"name":"VariantToStringWithDefault","features":[1,41,42]},{"name":"VariantToUInt16","features":[1,41,42]},{"name":"VariantToUInt16Array","features":[1,41,42]},{"name":"VariantToUInt16ArrayAlloc","features":[1,41,42]},{"name":"VariantToUInt16WithDefault","features":[1,41,42]},{"name":"VariantToUInt32","features":[1,41,42]},{"name":"VariantToUInt32Array","features":[1,41,42]},{"name":"VariantToUInt32ArrayAlloc","features":[1,41,42]},{"name":"VariantToUInt32WithDefault","features":[1,41,42]},{"name":"VariantToUInt64","features":[1,41,42]},{"name":"VariantToUInt64Array","features":[1,41,42]},{"name":"VariantToUInt64ArrayAlloc","features":[1,41,42]},{"name":"VariantToUInt64WithDefault","features":[1,41,42]}],"624":[{"name":"DBG_ATTACH","features":[206]},{"name":"DBG_BREAK","features":[206]},{"name":"DBG_DIVOVERFLOW","features":[206]},{"name":"DBG_DLLSTART","features":[206]},{"name":"DBG_DLLSTOP","features":[206]},{"name":"DBG_GPFAULT","features":[206]},{"name":"DBG_GPFAULT2","features":[206]},{"name":"DBG_INIT","features":[206]},{"name":"DBG_INSTRFAULT","features":[206]},{"name":"DBG_MODFREE","features":[206]},{"name":"DBG_MODLOAD","features":[206]},{"name":"DBG_MODMOVE","features":[206]},{"name":"DBG_SEGFREE","features":[206]},{"name":"DBG_SEGLOAD","features":[206]},{"name":"DBG_SEGMOVE","features":[206]},{"name":"DBG_SINGLESTEP","features":[206]},{"name":"DBG_STACKFAULT","features":[206]},{"name":"DBG_TASKSTART","features":[206]},{"name":"DBG_TASKSTOP","features":[206]},{"name":"DBG_TEMPBP","features":[206]},{"name":"DBG_TOOLHELP","features":[206]},{"name":"DBG_WOWINIT","features":[206]},{"name":"DEBUGEVENTPROC","features":[1,30,37,206]},{"name":"GD_ACCELERATORS","features":[206]},{"name":"GD_BITMAP","features":[206]},{"name":"GD_CURSOR","features":[206]},{"name":"GD_CURSORCOMPONENT","features":[206]},{"name":"GD_DIALOG","features":[206]},{"name":"GD_ERRTABLE","features":[206]},{"name":"GD_FONT","features":[206]},{"name":"GD_FONTDIR","features":[206]},{"name":"GD_ICON","features":[206]},{"name":"GD_ICONCOMPONENT","features":[206]},{"name":"GD_MAX_RESOURCE","features":[206]},{"name":"GD_MENU","features":[206]},{"name":"GD_NAMETABLE","features":[206]},{"name":"GD_RCDATA","features":[206]},{"name":"GD_STRING","features":[206]},{"name":"GD_USERDEFINED","features":[206]},{"name":"GLOBALENTRY","features":[1,206]},{"name":"GLOBAL_ALL","features":[206]},{"name":"GLOBAL_FREE","features":[206]},{"name":"GLOBAL_LRU","features":[206]},{"name":"GT_BURGERMASTER","features":[206]},{"name":"GT_CODE","features":[206]},{"name":"GT_DATA","features":[206]},{"name":"GT_DGROUP","features":[206]},{"name":"GT_FREE","features":[206]},{"name":"GT_INTERNAL","features":[206]},{"name":"GT_MODULE","features":[206]},{"name":"GT_RESOURCE","features":[206]},{"name":"GT_SENTINEL","features":[206]},{"name":"GT_TASK","features":[206]},{"name":"GT_UNKNOWN","features":[206]},{"name":"IMAGE_NOTE","features":[206]},{"name":"MAX_MODULE_NAME","features":[206]},{"name":"MAX_PATH16","features":[206]},{"name":"MODULEENTRY","features":[1,206]},{"name":"PROCESSENUMPROC","features":[1,206]},{"name":"SEGMENT_NOTE","features":[206]},{"name":"SN_CODE","features":[206]},{"name":"SN_DATA","features":[206]},{"name":"SN_V86","features":[206]},{"name":"STATUS_VDM_EVENT","features":[206]},{"name":"TASKENUMPROC","features":[1,206]},{"name":"TASKENUMPROCEX","features":[1,206]},{"name":"TEMP_BP_NOTE","features":[1,206]},{"name":"V86FLAGS_ALIGNMENT","features":[206]},{"name":"V86FLAGS_AUXCARRY","features":[206]},{"name":"V86FLAGS_CARRY","features":[206]},{"name":"V86FLAGS_DIRECTION","features":[206]},{"name":"V86FLAGS_INTERRUPT","features":[206]},{"name":"V86FLAGS_IOPL","features":[206]},{"name":"V86FLAGS_IOPL_BITS","features":[206]},{"name":"V86FLAGS_OVERFLOW","features":[206]},{"name":"V86FLAGS_PARITY","features":[206]},{"name":"V86FLAGS_RESUME","features":[206]},{"name":"V86FLAGS_SIGN","features":[206]},{"name":"V86FLAGS_TRACE","features":[206]},{"name":"V86FLAGS_V86","features":[206]},{"name":"V86FLAGS_ZERO","features":[206]},{"name":"VDMADDR_PM16","features":[206]},{"name":"VDMADDR_PM32","features":[206]},{"name":"VDMADDR_V86","features":[206]},{"name":"VDMBREAKTHREADPROC","features":[1,206]},{"name":"VDMCONTEXT","features":[7,206]},{"name":"VDMCONTEXT_WITHOUT_XSAVE","features":[7,206]},{"name":"VDMCONTEXT_i386","features":[206]},{"name":"VDMCONTEXT_i486","features":[206]},{"name":"VDMDBG_BREAK_DEBUGGER","features":[206]},{"name":"VDMDBG_BREAK_DIVIDEBYZERO","features":[206]},{"name":"VDMDBG_BREAK_DOSTASK","features":[206]},{"name":"VDMDBG_BREAK_EXCEPTIONS","features":[206]},{"name":"VDMDBG_BREAK_LOADDLL","features":[206]},{"name":"VDMDBG_BREAK_WOWTASK","features":[206]},{"name":"VDMDBG_INITIAL_FLAGS","features":[206]},{"name":"VDMDBG_MAX_SYMBOL_BUFFER","features":[206]},{"name":"VDMDBG_TRACE_HISTORY","features":[206]},{"name":"VDMDETECTWOWPROC","features":[1,206]},{"name":"VDMENUMPROCESSWOWPROC","features":[1,206]},{"name":"VDMENUMTASKWOWEXPROC","features":[1,206]},{"name":"VDMENUMTASKWOWPROC","features":[1,206]},{"name":"VDMEVENT_ALLFLAGS","features":[206]},{"name":"VDMEVENT_NEEDS_INTERACTIVE","features":[206]},{"name":"VDMEVENT_PE","features":[206]},{"name":"VDMEVENT_PM16","features":[206]},{"name":"VDMEVENT_V86","features":[206]},{"name":"VDMEVENT_VERBOSE","features":[206]},{"name":"VDMGETADDREXPRESSIONPROC","features":[1,206]},{"name":"VDMGETCONTEXTPROC","features":[1,7,206]},{"name":"VDMGETCONTEXTPROC","features":[1,30,7,206]},{"name":"VDMGETDBGFLAGSPROC","features":[1,206]},{"name":"VDMGETMODULESELECTORPROC","features":[1,206]},{"name":"VDMGETPOINTERPROC","features":[1,206]},{"name":"VDMGETSEGMENTINFOPROC","features":[1,206]},{"name":"VDMGETSELECTORMODULEPROC","features":[1,206]},{"name":"VDMGETSYMBOLPROC","features":[1,206]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[1,206]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[1,30,206]},{"name":"VDMGLOBALFIRSTPROC","features":[1,30,37,206]},{"name":"VDMGLOBALNEXTPROC","features":[1,30,37,206]},{"name":"VDMISMODULELOADEDPROC","features":[1,206]},{"name":"VDMKILLWOWPROC","features":[1,206]},{"name":"VDMLDT_ENTRY","features":[206]},{"name":"VDMMODULEFIRSTPROC","features":[1,30,37,206]},{"name":"VDMMODULENEXTPROC","features":[1,30,37,206]},{"name":"VDMPROCESSEXCEPTIONPROC","features":[1,30,37,206]},{"name":"VDMSETCONTEXTPROC","features":[1,7,206]},{"name":"VDMSETCONTEXTPROC","features":[1,30,7,206]},{"name":"VDMSETDBGFLAGSPROC","features":[1,206]},{"name":"VDMSTARTTASKINWOWPROC","features":[1,206]},{"name":"VDMTERMINATETASKINWOWPROC","features":[1,206]},{"name":"VDM_KGDT_R3_CODE","features":[206]},{"name":"VDM_MAXIMUM_SUPPORTED_EXTENSION","features":[206]},{"name":"VDM_SEGINFO","features":[206]},{"name":"WOW_SYSTEM","features":[206]}],"644":[{"name":"AADBE_ADD_ENTRY","features":[34]},{"name":"AADBE_DEL_ENTRY","features":[34]},{"name":"ACTCTX_FLAG_APPLICATION_NAME_VALID","features":[34]},{"name":"ACTCTX_FLAG_ASSEMBLY_DIRECTORY_VALID","features":[34]},{"name":"ACTCTX_FLAG_HMODULE_VALID","features":[34]},{"name":"ACTCTX_FLAG_LANGID_VALID","features":[34]},{"name":"ACTCTX_FLAG_PROCESSOR_ARCHITECTURE_VALID","features":[34]},{"name":"ACTCTX_FLAG_RESOURCE_NAME_VALID","features":[34]},{"name":"ACTCTX_FLAG_SET_PROCESS_DEFAULT","features":[34]},{"name":"ACTCTX_FLAG_SOURCE_IS_ASSEMBLYREF","features":[34]},{"name":"ACTCTX_SECTION_KEYED_DATA_2600","features":[1,34]},{"name":"ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA","features":[34]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION","features":[1,34]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION_DEFINED","features":[34]},{"name":"AC_LINE_BACKUP_POWER","features":[34]},{"name":"AC_LINE_OFFLINE","features":[34]},{"name":"AC_LINE_ONLINE","features":[34]},{"name":"AC_LINE_UNKNOWN","features":[34]},{"name":"ADN_DEL_IF_EMPTY","features":[34]},{"name":"ADN_DEL_UNC_PATHS","features":[34]},{"name":"ADN_DONT_DEL_DIR","features":[34]},{"name":"ADN_DONT_DEL_SUBDIRS","features":[34]},{"name":"AFSR_BACKNEW","features":[34]},{"name":"AFSR_EXTRAINCREFCNT","features":[34]},{"name":"AFSR_NODELETENEW","features":[34]},{"name":"AFSR_NOMESSAGES","features":[34]},{"name":"AFSR_NOPROGRESS","features":[34]},{"name":"AFSR_RESTORE","features":[34]},{"name":"AFSR_UPDREFCNT","features":[34]},{"name":"AFSR_USEREFCNT","features":[34]},{"name":"AIF_FORCE_FILE_IN_USE","features":[34]},{"name":"AIF_NOLANGUAGECHECK","features":[34]},{"name":"AIF_NOOVERWRITE","features":[34]},{"name":"AIF_NOSKIP","features":[34]},{"name":"AIF_NOVERSIONCHECK","features":[34]},{"name":"AIF_NO_VERSION_DIALOG","features":[34]},{"name":"AIF_QUIET","features":[34]},{"name":"AIF_REPLACEONLY","features":[34]},{"name":"AIF_WARNIFSKIP","features":[34]},{"name":"ALINF_BKINSTALL","features":[34]},{"name":"ALINF_CHECKBKDATA","features":[34]},{"name":"ALINF_DELAYREGISTEROCX","features":[34]},{"name":"ALINF_NGCONV","features":[34]},{"name":"ALINF_QUIET","features":[34]},{"name":"ALINF_ROLLBACK","features":[34]},{"name":"ALINF_ROLLBKDOALL","features":[34]},{"name":"ALINF_UPDHLPDLLS","features":[34]},{"name":"APPLICATION_RECOVERY_CALLBACK","features":[34]},{"name":"ARSR_NOMESSAGES","features":[34]},{"name":"ARSR_REGSECTION","features":[34]},{"name":"ARSR_REMOVREGBKDATA","features":[34]},{"name":"ARSR_RESTORE","features":[34]},{"name":"ATOM_FLAG_GLOBAL","features":[34]},{"name":"AT_ARP","features":[34]},{"name":"AT_ENTITY","features":[34]},{"name":"AT_NULL","features":[34]},{"name":"AddDelBackupEntryA","features":[34]},{"name":"AddDelBackupEntryW","features":[34]},{"name":"AdvInstallFileA","features":[1,34]},{"name":"AdvInstallFileW","features":[1,34]},{"name":"ApphelpCheckShellObject","features":[1,34]},{"name":"BACKUP_GHOSTED_FILE_EXTENTS","features":[34]},{"name":"BACKUP_INVALID","features":[34]},{"name":"BASE_SEARCH_PATH_DISABLE_SAFE_SEARCHMODE","features":[34]},{"name":"BASE_SEARCH_PATH_ENABLE_SAFE_SEARCHMODE","features":[34]},{"name":"BASE_SEARCH_PATH_PERMANENT","features":[34]},{"name":"BATTERY_FLAG_CHARGING","features":[34]},{"name":"BATTERY_FLAG_CRITICAL","features":[34]},{"name":"BATTERY_FLAG_HIGH","features":[34]},{"name":"BATTERY_FLAG_LOW","features":[34]},{"name":"BATTERY_FLAG_NO_BATTERY","features":[34]},{"name":"BATTERY_FLAG_UNKNOWN","features":[34]},{"name":"BATTERY_LIFE_UNKNOWN","features":[34]},{"name":"BATTERY_PERCENTAGE_UNKNOWN","features":[34]},{"name":"BAUD_075","features":[34]},{"name":"BAUD_110","features":[34]},{"name":"BAUD_115200","features":[34]},{"name":"BAUD_1200","features":[34]},{"name":"BAUD_128K","features":[34]},{"name":"BAUD_134_5","features":[34]},{"name":"BAUD_14400","features":[34]},{"name":"BAUD_150","features":[34]},{"name":"BAUD_1800","features":[34]},{"name":"BAUD_19200","features":[34]},{"name":"BAUD_2400","features":[34]},{"name":"BAUD_300","features":[34]},{"name":"BAUD_38400","features":[34]},{"name":"BAUD_4800","features":[34]},{"name":"BAUD_56K","features":[34]},{"name":"BAUD_57600","features":[34]},{"name":"BAUD_600","features":[34]},{"name":"BAUD_7200","features":[34]},{"name":"BAUD_9600","features":[34]},{"name":"BAUD_USER","features":[34]},{"name":"CABINFOA","features":[34]},{"name":"CABINFOW","features":[34]},{"name":"CATID_DeleteBrowsingHistory","features":[34]},{"name":"CBR_110","features":[34]},{"name":"CBR_115200","features":[34]},{"name":"CBR_1200","features":[34]},{"name":"CBR_128000","features":[34]},{"name":"CBR_14400","features":[34]},{"name":"CBR_19200","features":[34]},{"name":"CBR_2400","features":[34]},{"name":"CBR_256000","features":[34]},{"name":"CBR_300","features":[34]},{"name":"CBR_38400","features":[34]},{"name":"CBR_4800","features":[34]},{"name":"CBR_56000","features":[34]},{"name":"CBR_57600","features":[34]},{"name":"CBR_600","features":[34]},{"name":"CBR_9600","features":[34]},{"name":"CE_DNS","features":[34]},{"name":"CE_IOE","features":[34]},{"name":"CE_MODE","features":[34]},{"name":"CE_OOP","features":[34]},{"name":"CE_PTO","features":[34]},{"name":"CE_TXFULL","features":[34]},{"name":"CLIENT_ID","features":[1,34]},{"name":"CL_NL_ENTITY","features":[34]},{"name":"CL_NL_IP","features":[34]},{"name":"CL_NL_IPX","features":[34]},{"name":"CL_TL_ENTITY","features":[34]},{"name":"CL_TL_NBF","features":[34]},{"name":"CL_TL_UDP","features":[34]},{"name":"CODEINTEGRITY_OPTION_DEBUGMODE_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_FLIGHTING_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_FLIGHT_BUILD","features":[34]},{"name":"CODEINTEGRITY_OPTION_HVCI_IUM_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_AUDITMODE_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_STRICTMODE_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_PREPRODUCTION_BUILD","features":[34]},{"name":"CODEINTEGRITY_OPTION_TESTSIGN","features":[34]},{"name":"CODEINTEGRITY_OPTION_TEST_BUILD","features":[34]},{"name":"CODEINTEGRITY_OPTION_UMCI_AUDITMODE_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_UMCI_ENABLED","features":[34]},{"name":"CODEINTEGRITY_OPTION_UMCI_EXCLUSIONPATHS_ENABLED","features":[34]},{"name":"COMMPROP_INITIALIZED","features":[34]},{"name":"CONTEXT_SIZE","features":[34]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MAX","features":[34]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MIN","features":[34]},{"name":"COPYFILE2_IO_RATE_MIN","features":[34]},{"name":"COPYFILE2_MESSAGE_COPY_OFFLOAD","features":[34]},{"name":"COPY_FILE2_V2_DONT_COPY_JUNCTIONS","features":[34]},{"name":"COPY_FILE2_V2_VALID_FLAGS","features":[34]},{"name":"COPY_FILE_ALLOW_DECRYPTED_DESTINATION","features":[34]},{"name":"COPY_FILE_COPY_SYMLINK","features":[34]},{"name":"COPY_FILE_DIRECTORY","features":[34]},{"name":"COPY_FILE_DISABLE_PRE_ALLOCATION","features":[34]},{"name":"COPY_FILE_DONT_REQUEST_DEST_WRITE_DAC","features":[34]},{"name":"COPY_FILE_ENABLE_LOW_FREE_SPACE_MODE","features":[34]},{"name":"COPY_FILE_ENABLE_SPARSE_COPY","features":[34]},{"name":"COPY_FILE_FAIL_IF_EXISTS","features":[34]},{"name":"COPY_FILE_IGNORE_EDP_BLOCK","features":[34]},{"name":"COPY_FILE_IGNORE_SOURCE_ENCRYPTION","features":[34]},{"name":"COPY_FILE_NO_BUFFERING","features":[34]},{"name":"COPY_FILE_NO_OFFLOAD","features":[34]},{"name":"COPY_FILE_OPEN_AND_COPY_REPARSE_POINT","features":[34]},{"name":"COPY_FILE_OPEN_SOURCE_FOR_WRITE","features":[34]},{"name":"COPY_FILE_REQUEST_COMPRESSED_TRAFFIC","features":[34]},{"name":"COPY_FILE_REQUEST_SECURITY_PRIVILEGES","features":[34]},{"name":"COPY_FILE_RESTARTABLE","features":[34]},{"name":"COPY_FILE_RESUME_FROM_PAUSE","features":[34]},{"name":"COPY_FILE_SKIP_ALTERNATE_STREAMS","features":[34]},{"name":"CO_NL_ENTITY","features":[34]},{"name":"CO_TL_ENTITY","features":[34]},{"name":"CO_TL_NBF","features":[34]},{"name":"CO_TL_SPP","features":[34]},{"name":"CO_TL_SPX","features":[34]},{"name":"CO_TL_TCP","features":[34]},{"name":"CP_DIRECT","features":[34]},{"name":"CP_HWND","features":[34]},{"name":"CP_LEVEL","features":[34]},{"name":"CP_OPEN","features":[34]},{"name":"CREATE_FOR_DIR","features":[34]},{"name":"CREATE_FOR_IMPORT","features":[34]},{"name":"CRITICAL_SECTION_NO_DEBUG_INFO","features":[34]},{"name":"CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG","features":[34]},{"name":"CameraUIControl","features":[34]},{"name":"CameraUIControlCaptureMode","features":[34]},{"name":"CameraUIControlLinearSelectionMode","features":[34]},{"name":"CameraUIControlMode","features":[34]},{"name":"CameraUIControlPhotoFormat","features":[34]},{"name":"CameraUIControlVideoFormat","features":[34]},{"name":"CameraUIControlViewType","features":[34]},{"name":"CancelDeviceWakeupRequest","features":[1,34]},{"name":"CloseINFEngine","features":[34]},{"name":"ConvertAuxiliaryCounterToPerformanceCounter","features":[34]},{"name":"ConvertPerformanceCounterToAuxiliaryCounter","features":[34]},{"name":"DATETIME","features":[34]},{"name":"DCIBeginAccess","features":[34]},{"name":"DCICMD","features":[34]},{"name":"DCICREATEINPUT","features":[34]},{"name":"DCICREATEOFFSCREENSURFACE","features":[34]},{"name":"DCICREATEOVERLAYSURFACE","features":[34]},{"name":"DCICREATEPRIMARYSURFACE","features":[34]},{"name":"DCICloseProvider","features":[12,34]},{"name":"DCICreateOffscreen","features":[12,34]},{"name":"DCICreateOverlay","features":[12,34]},{"name":"DCICreatePrimary","features":[12,34]},{"name":"DCIDestroy","features":[34]},{"name":"DCIDraw","features":[34]},{"name":"DCIENUMINPUT","features":[1,34]},{"name":"DCIENUMSURFACE","features":[34]},{"name":"DCIESCAPE","features":[34]},{"name":"DCIEndAccess","features":[34]},{"name":"DCIEnum","features":[1,12,34]},{"name":"DCIOFFSCREEN","features":[34]},{"name":"DCIOVERLAY","features":[34]},{"name":"DCIOpenProvider","features":[12,34]},{"name":"DCISURFACEINFO","features":[34]},{"name":"DCISetClipList","features":[1,12,34]},{"name":"DCISetDestination","features":[1,34]},{"name":"DCISetSrcDestClip","features":[1,12,34]},{"name":"DCI_1632_ACCESS","features":[34]},{"name":"DCI_ASYNC","features":[34]},{"name":"DCI_CANOVERLAY","features":[34]},{"name":"DCI_CAN_STRETCHX","features":[34]},{"name":"DCI_CAN_STRETCHXN","features":[34]},{"name":"DCI_CAN_STRETCHY","features":[34]},{"name":"DCI_CAN_STRETCHYN","features":[34]},{"name":"DCI_CHROMAKEY","features":[34]},{"name":"DCI_DWORDALIGN","features":[34]},{"name":"DCI_DWORDSIZE","features":[34]},{"name":"DCI_ERR_CURRENTLYNOTAVAIL","features":[34]},{"name":"DCI_ERR_HEIGHTALIGN","features":[34]},{"name":"DCI_ERR_INVALIDCLIPLIST","features":[34]},{"name":"DCI_ERR_INVALIDPOSITION","features":[34]},{"name":"DCI_ERR_INVALIDRECT","features":[34]},{"name":"DCI_ERR_INVALIDSTRETCH","features":[34]},{"name":"DCI_ERR_OUTOFMEMORY","features":[34]},{"name":"DCI_ERR_SURFACEISOBSCURED","features":[34]},{"name":"DCI_ERR_TOOBIGHEIGHT","features":[34]},{"name":"DCI_ERR_TOOBIGSIZE","features":[34]},{"name":"DCI_ERR_TOOBIGWIDTH","features":[34]},{"name":"DCI_ERR_UNSUPPORTEDFORMAT","features":[34]},{"name":"DCI_ERR_UNSUPPORTEDMASK","features":[34]},{"name":"DCI_ERR_WIDTHALIGN","features":[34]},{"name":"DCI_ERR_XALIGN","features":[34]},{"name":"DCI_ERR_XYALIGN","features":[34]},{"name":"DCI_ERR_YALIGN","features":[34]},{"name":"DCI_FAIL_GENERIC","features":[34]},{"name":"DCI_FAIL_INVALIDSURFACE","features":[34]},{"name":"DCI_FAIL_UNSUPPORTED","features":[34]},{"name":"DCI_FAIL_UNSUPPORTEDVERSION","features":[34]},{"name":"DCI_OFFSCREEN","features":[34]},{"name":"DCI_OK","features":[34]},{"name":"DCI_OVERLAY","features":[34]},{"name":"DCI_PRIMARY","features":[34]},{"name":"DCI_STATUS_CHROMAKEYCHANGED","features":[34]},{"name":"DCI_STATUS_FORMATCHANGED","features":[34]},{"name":"DCI_STATUS_POINTERCHANGED","features":[34]},{"name":"DCI_STATUS_STRIDECHANGED","features":[34]},{"name":"DCI_STATUS_SURFACEINFOCHANGED","features":[34]},{"name":"DCI_STATUS_WASSTILLDRAWING","features":[34]},{"name":"DCI_SURFACE_TYPE","features":[34]},{"name":"DCI_VERSION","features":[34]},{"name":"DCI_VISIBLE","features":[34]},{"name":"DCI_WRITEONLY","features":[34]},{"name":"DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION","features":[34]},{"name":"DECISION_LOCATION","features":[34]},{"name":"DECISION_LOCATION_AUDIT","features":[34]},{"name":"DECISION_LOCATION_ENFORCE_STATE_LIST","features":[34]},{"name":"DECISION_LOCATION_ENTERPRISE_DEFINED_CLASS_ID","features":[34]},{"name":"DECISION_LOCATION_FAILED_CONVERT_GUID","features":[34]},{"name":"DECISION_LOCATION_GLOBAL_BUILT_IN_LIST","features":[34]},{"name":"DECISION_LOCATION_NOT_FOUND","features":[34]},{"name":"DECISION_LOCATION_PARAMETER_VALIDATION","features":[34]},{"name":"DECISION_LOCATION_PROVIDER_BUILT_IN_LIST","features":[34]},{"name":"DECISION_LOCATION_REFRESH_GLOBAL_DATA","features":[34]},{"name":"DECISION_LOCATION_UNKNOWN","features":[34]},{"name":"DELAYLOAD_GPA_FAILURE","features":[34]},{"name":"DELAYLOAD_INFO","features":[34]},{"name":"DELAYLOAD_INFO","features":[34]},{"name":"DELAYLOAD_PROC_DESCRIPTOR","features":[34]},{"name":"DELETE_BROWSING_HISTORY_COOKIES","features":[34]},{"name":"DELETE_BROWSING_HISTORY_DOWNLOADHISTORY","features":[34]},{"name":"DELETE_BROWSING_HISTORY_FORMDATA","features":[34]},{"name":"DELETE_BROWSING_HISTORY_HISTORY","features":[34]},{"name":"DELETE_BROWSING_HISTORY_PASSWORDS","features":[34]},{"name":"DELETE_BROWSING_HISTORY_PRESERVEFAVORITES","features":[34]},{"name":"DELETE_BROWSING_HISTORY_TIF","features":[34]},{"name":"DOCKINFO_DOCKED","features":[34]},{"name":"DOCKINFO_UNDOCKED","features":[34]},{"name":"DOCKINFO_USER_SUPPLIED","features":[34]},{"name":"DRIVE_CDROM","features":[34]},{"name":"DRIVE_FIXED","features":[34]},{"name":"DRIVE_NO_ROOT_DIR","features":[34]},{"name":"DRIVE_RAMDISK","features":[34]},{"name":"DRIVE_REMOTE","features":[34]},{"name":"DRIVE_REMOVABLE","features":[34]},{"name":"DRIVE_UNKNOWN","features":[34]},{"name":"DTR_CONTROL_DISABLE","features":[34]},{"name":"DTR_CONTROL_ENABLE","features":[34]},{"name":"DTR_CONTROL_HANDSHAKE","features":[34]},{"name":"DefaultBrowserSyncSettings","features":[34]},{"name":"DelNodeA","features":[34]},{"name":"DelNodeRunDLL32W","features":[1,34]},{"name":"DelNodeW","features":[34]},{"name":"DnsHostnameToComputerNameA","features":[1,34]},{"name":"DnsHostnameToComputerNameW","features":[1,34]},{"name":"DosDateTimeToFileTime","features":[1,34]},{"name":"EFSRPC_SECURE_ONLY","features":[34]},{"name":"EFS_DROP_ALTERNATE_STREAMS","features":[34]},{"name":"EFS_USE_RECOVERY_KEYS","features":[34]},{"name":"ENTITY_LIST_ID","features":[34]},{"name":"ENTITY_TYPE_ID","features":[34]},{"name":"ENUM_CALLBACK","features":[34]},{"name":"ER_ENTITY","features":[34]},{"name":"ER_ICMP","features":[34]},{"name":"EVENTLOG_FULL_INFO","features":[34]},{"name":"EditionUpgradeBroker","features":[34]},{"name":"EditionUpgradeHelper","features":[34]},{"name":"EnableProcessOptionalXStateFeatures","features":[1,34]},{"name":"EndpointIoControlType","features":[34]},{"name":"ExecuteCabA","features":[1,34]},{"name":"ExecuteCabW","features":[1,34]},{"name":"ExtractFilesA","features":[34]},{"name":"ExtractFilesW","features":[34]},{"name":"FAIL_FAST_GENERATE_EXCEPTION_ADDRESS","features":[34]},{"name":"FAIL_FAST_NO_HARD_ERROR_DLG","features":[34]},{"name":"FEATURE_CHANGE_TIME","features":[34]},{"name":"FEATURE_CHANGE_TIME_MODULE_RELOAD","features":[34]},{"name":"FEATURE_CHANGE_TIME_READ","features":[34]},{"name":"FEATURE_CHANGE_TIME_REBOOT","features":[34]},{"name":"FEATURE_CHANGE_TIME_SESSION","features":[34]},{"name":"FEATURE_ENABLED_STATE","features":[34]},{"name":"FEATURE_ENABLED_STATE_DEFAULT","features":[34]},{"name":"FEATURE_ENABLED_STATE_DISABLED","features":[34]},{"name":"FEATURE_ENABLED_STATE_ENABLED","features":[34]},{"name":"FEATURE_ERROR","features":[34]},{"name":"FEATURE_STATE_CHANGE_SUBSCRIPTION","features":[34]},{"name":"FH_SERVICE_PIPE_HANDLE","features":[34]},{"name":"FIBER_FLAG_FLOAT_SWITCH","features":[34]},{"name":"FILE_CASE_SENSITIVE_INFO","features":[34]},{"name":"FILE_CREATED","features":[34]},{"name":"FILE_DIR_DISALLOWED","features":[34]},{"name":"FILE_DOES_NOT_EXIST","features":[34]},{"name":"FILE_ENCRYPTABLE","features":[34]},{"name":"FILE_EXISTS","features":[34]},{"name":"FILE_FLAG_IGNORE_IMPERSONATED_DEVICEMAP","features":[34]},{"name":"FILE_FLAG_OPEN_REQUIRING_OPLOCK","features":[34]},{"name":"FILE_IS_ENCRYPTED","features":[34]},{"name":"FILE_MAXIMUM_DISPOSITION","features":[34]},{"name":"FILE_NO_COMPRESSION","features":[34]},{"name":"FILE_OPENED","features":[34]},{"name":"FILE_OPEN_NO_RECALL","features":[34]},{"name":"FILE_OPEN_REMOTE_INSTANCE","features":[34]},{"name":"FILE_OVERWRITTEN","features":[34]},{"name":"FILE_READ_ONLY","features":[34]},{"name":"FILE_RENAME_FLAG_POSIX_SEMANTICS","features":[34]},{"name":"FILE_RENAME_FLAG_REPLACE_IF_EXISTS","features":[34]},{"name":"FILE_RENAME_FLAG_SUPPRESS_PIN_STATE_INHERITANCE","features":[34]},{"name":"FILE_ROOT_DIR","features":[34]},{"name":"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS","features":[34]},{"name":"FILE_SKIP_SET_EVENT_ON_HANDLE","features":[34]},{"name":"FILE_SUPERSEDED","features":[34]},{"name":"FILE_SYSTEM_ATTR","features":[34]},{"name":"FILE_SYSTEM_DIR","features":[34]},{"name":"FILE_SYSTEM_NOT_SUPPORT","features":[34]},{"name":"FILE_UNKNOWN","features":[34]},{"name":"FILE_USER_DISALLOWED","features":[34]},{"name":"FILE_VALID_MAILSLOT_OPTION_FLAGS","features":[34]},{"name":"FILE_VALID_OPTION_FLAGS","features":[34]},{"name":"FILE_VALID_PIPE_OPTION_FLAGS","features":[34]},{"name":"FILE_VALID_SET_FLAGS","features":[34]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_ASSEMBLY_METADATA","features":[34]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_FLAGS","features":[34]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX","features":[34]},{"name":"FORMAT_MESSAGE_MAX_WIDTH_MASK","features":[34]},{"name":"FS_CASE_IS_PRESERVED","features":[34]},{"name":"FS_CASE_SENSITIVE","features":[34]},{"name":"FS_FILE_COMPRESSION","features":[34]},{"name":"FS_FILE_ENCRYPTION","features":[34]},{"name":"FS_PERSISTENT_ACLS","features":[34]},{"name":"FS_UNICODE_STORED_ON_DISK","features":[34]},{"name":"FS_VOL_IS_COMPRESSED","features":[34]},{"name":"FileSaveMarkNotExistA","features":[34]},{"name":"FileSaveMarkNotExistW","features":[34]},{"name":"FileSaveRestoreOnINFA","features":[1,34]},{"name":"FileSaveRestoreOnINFW","features":[1,34]},{"name":"FileSaveRestoreW","features":[1,34]},{"name":"FileTimeToDosDateTime","features":[1,34]},{"name":"GENERIC_ENTITY","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_A","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_T","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_W","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_A","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_T","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_W","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_A","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_T","features":[34]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_W","features":[34]},{"name":"GMEM_DDESHARE","features":[34]},{"name":"GMEM_DISCARDABLE","features":[34]},{"name":"GMEM_DISCARDED","features":[34]},{"name":"GMEM_INVALID_HANDLE","features":[34]},{"name":"GMEM_LOCKCOUNT","features":[34]},{"name":"GMEM_LOWER","features":[34]},{"name":"GMEM_MODIFY","features":[34]},{"name":"GMEM_NOCOMPACT","features":[34]},{"name":"GMEM_NODISCARD","features":[34]},{"name":"GMEM_NOTIFY","features":[34]},{"name":"GMEM_NOT_BANKED","features":[34]},{"name":"GMEM_SHARE","features":[34]},{"name":"GMEM_VALID_FLAGS","features":[34]},{"name":"GdiEntry13","features":[34]},{"name":"GetComputerNameA","features":[1,34]},{"name":"GetComputerNameW","features":[1,34]},{"name":"GetCurrentHwProfileA","features":[1,34]},{"name":"GetCurrentHwProfileW","features":[1,34]},{"name":"GetDCRegionData","features":[1,12,34]},{"name":"GetFeatureEnabledState","features":[34]},{"name":"GetFeatureVariant","features":[1,34]},{"name":"GetFirmwareEnvironmentVariableA","features":[34]},{"name":"GetFirmwareEnvironmentVariableExA","features":[34]},{"name":"GetFirmwareEnvironmentVariableExW","features":[34]},{"name":"GetFirmwareEnvironmentVariableW","features":[34]},{"name":"GetPrivateProfileIntA","features":[34]},{"name":"GetPrivateProfileIntW","features":[34]},{"name":"GetPrivateProfileSectionA","features":[34]},{"name":"GetPrivateProfileSectionNamesA","features":[34]},{"name":"GetPrivateProfileSectionNamesW","features":[34]},{"name":"GetPrivateProfileSectionW","features":[34]},{"name":"GetPrivateProfileStringA","features":[34]},{"name":"GetPrivateProfileStringW","features":[34]},{"name":"GetPrivateProfileStructA","features":[1,34]},{"name":"GetPrivateProfileStructW","features":[1,34]},{"name":"GetProfileIntA","features":[34]},{"name":"GetProfileIntW","features":[34]},{"name":"GetProfileSectionA","features":[34]},{"name":"GetProfileSectionW","features":[34]},{"name":"GetProfileStringA","features":[34]},{"name":"GetProfileStringW","features":[34]},{"name":"GetSockOptIoControlType","features":[34]},{"name":"GetSystemRegistryQuota","features":[1,34]},{"name":"GetThreadEnabledXStateFeatures","features":[34]},{"name":"GetUserNameA","features":[1,34]},{"name":"GetUserNameW","features":[1,34]},{"name":"GetVersionFromFileA","features":[1,34]},{"name":"GetVersionFromFileExA","features":[1,34]},{"name":"GetVersionFromFileExW","features":[1,34]},{"name":"GetVersionFromFileW","features":[1,34]},{"name":"GetWindowRegionData","features":[1,12,34]},{"name":"GlobalCompact","features":[34]},{"name":"GlobalFix","features":[1,34]},{"name":"GlobalUnWire","features":[1,34]},{"name":"GlobalUnfix","features":[1,34]},{"name":"GlobalWire","features":[1,34]},{"name":"HANJA_WINDOW","features":[34]},{"name":"HINSTANCE_ERROR","features":[34]},{"name":"HWINWATCH","features":[34]},{"name":"HW_PROFILE_GUIDLEN","features":[34]},{"name":"HW_PROFILE_INFOA","features":[34]},{"name":"HW_PROFILE_INFOW","features":[34]},{"name":"ICameraUIControl","features":[34]},{"name":"ICameraUIControlEventCallback","features":[34]},{"name":"IClipServiceNotificationHelper","features":[34]},{"name":"IContainerActivationHelper","features":[34]},{"name":"IDefaultBrowserSyncSettings","features":[34]},{"name":"IDeleteBrowsingHistory","features":[34]},{"name":"IE4_BACKNEW","features":[34]},{"name":"IE4_EXTRAINCREFCNT","features":[34]},{"name":"IE4_FRDOALL","features":[34]},{"name":"IE4_NODELETENEW","features":[34]},{"name":"IE4_NOENUMKEY","features":[34]},{"name":"IE4_NOMESSAGES","features":[34]},{"name":"IE4_NOPROGRESS","features":[34]},{"name":"IE4_NO_CRC_MAPPING","features":[34]},{"name":"IE4_REGSECTION","features":[34]},{"name":"IE4_REMOVREGBKDATA","features":[34]},{"name":"IE4_RESTORE","features":[34]},{"name":"IE4_UPDREFCNT","features":[34]},{"name":"IE4_USEREFCNT","features":[34]},{"name":"IE_BADID","features":[34]},{"name":"IE_BAUDRATE","features":[34]},{"name":"IE_BYTESIZE","features":[34]},{"name":"IE_DEFAULT","features":[34]},{"name":"IE_HARDWARE","features":[34]},{"name":"IE_MEMORY","features":[34]},{"name":"IE_NOPEN","features":[34]},{"name":"IE_OPEN","features":[34]},{"name":"IEditionUpgradeBroker","features":[34]},{"name":"IEditionUpgradeHelper","features":[34]},{"name":"IFClipNotificationHelper","features":[34]},{"name":"IF_ENTITY","features":[34]},{"name":"IF_GENERIC","features":[34]},{"name":"IF_MIB","features":[34]},{"name":"IGNORE","features":[34]},{"name":"IMAGE_DELAYLOAD_DESCRIPTOR","features":[34]},{"name":"IMAGE_THUNK_DATA32","features":[34]},{"name":"IMAGE_THUNK_DATA64","features":[34]},{"name":"IMEA_INIT","features":[34]},{"name":"IMEA_NEXT","features":[34]},{"name":"IMEA_PREV","features":[34]},{"name":"IMEPROA","features":[1,34]},{"name":"IMEPROW","features":[1,34]},{"name":"IMESTRUCT","features":[1,34]},{"name":"IME_BANJAtoJUNJA","features":[34]},{"name":"IME_ENABLE_CONVERT","features":[34]},{"name":"IME_ENTERWORDREGISTERMODE","features":[34]},{"name":"IME_GETCONVERSIONMODE","features":[34]},{"name":"IME_GETIMECAPS","features":[34]},{"name":"IME_GETOPEN","features":[34]},{"name":"IME_GETVERSION","features":[34]},{"name":"IME_JOHABtoKS","features":[34]},{"name":"IME_JUNJAtoBANJA","features":[34]},{"name":"IME_KStoJOHAB","features":[34]},{"name":"IME_MAXPROCESS","features":[34]},{"name":"IME_MODE_ALPHANUMERIC","features":[34]},{"name":"IME_MODE_CODEINPUT","features":[34]},{"name":"IME_MODE_DBCSCHAR","features":[34]},{"name":"IME_MODE_HANJACONVERT","features":[34]},{"name":"IME_MODE_HIRAGANA","features":[34]},{"name":"IME_MODE_KATAKANA","features":[34]},{"name":"IME_MODE_NOCODEINPUT","features":[34]},{"name":"IME_MODE_NOROMAN","features":[34]},{"name":"IME_MODE_ROMAN","features":[34]},{"name":"IME_MODE_SBCSCHAR","features":[34]},{"name":"IME_MOVEIMEWINDOW","features":[34]},{"name":"IME_REQUEST_CONVERT","features":[34]},{"name":"IME_RS_DISKERROR","features":[34]},{"name":"IME_RS_ERROR","features":[34]},{"name":"IME_RS_ILLEGAL","features":[34]},{"name":"IME_RS_INVALID","features":[34]},{"name":"IME_RS_NEST","features":[34]},{"name":"IME_RS_NOIME","features":[34]},{"name":"IME_RS_NOROOM","features":[34]},{"name":"IME_RS_NOTFOUND","features":[34]},{"name":"IME_RS_SYSTEMMODAL","features":[34]},{"name":"IME_RS_TOOLONG","features":[34]},{"name":"IME_SENDVKEY","features":[34]},{"name":"IME_SETCONVERSIONFONTEX","features":[34]},{"name":"IME_SETCONVERSIONMODE","features":[34]},{"name":"IME_SETCONVERSIONWINDOW","features":[34]},{"name":"IME_SETOPEN","features":[34]},{"name":"IME_SET_MODE","features":[34]},{"name":"IMPGetIMEA","features":[1,34]},{"name":"IMPGetIMEW","features":[1,34]},{"name":"IMPQueryIMEA","features":[1,34]},{"name":"IMPQueryIMEW","features":[1,34]},{"name":"IMPSetIMEA","features":[1,34]},{"name":"IMPSetIMEW","features":[1,34]},{"name":"INFO_CLASS_GENERIC","features":[34]},{"name":"INFO_CLASS_IMPLEMENTATION","features":[34]},{"name":"INFO_CLASS_PROTOCOL","features":[34]},{"name":"INFO_TYPE_ADDRESS_OBJECT","features":[34]},{"name":"INFO_TYPE_CONNECTION","features":[34]},{"name":"INFO_TYPE_PROVIDER","features":[34]},{"name":"INTERIM_WINDOW","features":[34]},{"name":"INVALID_ENTITY_INSTANCE","features":[34]},{"name":"IOCTL_TDI_TL_IO_CONTROL_ENDPOINT","features":[34]},{"name":"IR_CHANGECONVERT","features":[34]},{"name":"IR_CLOSECONVERT","features":[34]},{"name":"IR_DBCSCHAR","features":[34]},{"name":"IR_FULLCONVERT","features":[34]},{"name":"IR_IMESELECT","features":[34]},{"name":"IR_MODEINFO","features":[34]},{"name":"IR_OPENCONVERT","features":[34]},{"name":"IR_STRING","features":[34]},{"name":"IR_STRINGEND","features":[34]},{"name":"IR_STRINGEX","features":[34]},{"name":"IR_STRINGSTART","features":[34]},{"name":"IR_UNDETERMINE","features":[34]},{"name":"IWindowsLockModeHelper","features":[34]},{"name":"IsApiSetImplemented","features":[1,34]},{"name":"IsBadHugeReadPtr","features":[1,34]},{"name":"IsBadHugeWritePtr","features":[1,34]},{"name":"IsNTAdmin","features":[1,34]},{"name":"IsNativeVhdBoot","features":[1,34]},{"name":"IsTokenUntrusted","features":[1,34]},{"name":"JAVA_TRUST","features":[1,34]},{"name":"JIT_DEBUG_INFO","features":[34]},{"name":"KEY_ALL_KEYS","features":[34]},{"name":"KEY_OVERRIDE","features":[34]},{"name":"KEY_UNKNOWN","features":[34]},{"name":"LDR_DATA_TABLE_ENTRY","features":[1,7,34]},{"name":"LIS_NOGRPCONV","features":[34]},{"name":"LIS_QUIET","features":[34]},{"name":"LOGON32_PROVIDER_VIRTUAL","features":[34]},{"name":"LOGON32_PROVIDER_WINNT35","features":[34]},{"name":"LOGON_ZERO_PASSWORD_BUFFER","features":[34]},{"name":"LPTx","features":[34]},{"name":"LaunchINFSectionExW","features":[1,34]},{"name":"LaunchINFSectionW","features":[1,34]},{"name":"LocalCompact","features":[34]},{"name":"LocalShrink","features":[1,34]},{"name":"MAXINTATOM","features":[34]},{"name":"MAX_COMPUTERNAME_LENGTH","features":[34]},{"name":"MAX_TDI_ENTITIES","features":[34]},{"name":"MCW_DEFAULT","features":[34]},{"name":"MCW_HIDDEN","features":[34]},{"name":"MCW_RECT","features":[34]},{"name":"MCW_SCREEN","features":[34]},{"name":"MCW_VERTICAL","features":[34]},{"name":"MCW_WINDOW","features":[34]},{"name":"MICROSOFT_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[34]},{"name":"MICROSOFT_WINDOWS_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[34]},{"name":"MODE_WINDOW","features":[34]},{"name":"MulDiv","features":[34]},{"name":"NeedReboot","features":[1,34]},{"name":"NeedRebootInit","features":[34]},{"name":"OFS_MAXPATHNAME","features":[34]},{"name":"OPERATION_API_VERSION","features":[34]},{"name":"OVERWRITE_HIDDEN","features":[34]},{"name":"OpenINFEngineA","features":[34]},{"name":"OpenINFEngineW","features":[34]},{"name":"OpenMutexA","features":[1,34]},{"name":"OpenSemaphoreA","features":[1,34]},{"name":"PCF_16BITMODE","features":[34]},{"name":"PCF_DTRDSR","features":[34]},{"name":"PCF_INTTIMEOUTS","features":[34]},{"name":"PCF_PARITY_CHECK","features":[34]},{"name":"PCF_RLSD","features":[34]},{"name":"PCF_RTSCTS","features":[34]},{"name":"PCF_SETXCHAR","features":[34]},{"name":"PCF_SPECIALCHARS","features":[34]},{"name":"PCF_TOTALTIMEOUTS","features":[34]},{"name":"PCF_XONXOFF","features":[34]},{"name":"PDELAYLOAD_FAILURE_DLL_CALLBACK","features":[34]},{"name":"PERUSERSECTIONA","features":[1,34]},{"name":"PERUSERSECTIONW","features":[1,34]},{"name":"PFEATURE_STATE_CHANGE_CALLBACK","features":[34]},{"name":"PFIBER_CALLOUT_ROUTINE","features":[34]},{"name":"PQUERYACTCTXW_FUNC","features":[1,34]},{"name":"PROCESS_CREATION_ALL_APPLICATION_PACKAGES_OPT_OUT","features":[34]},{"name":"PROCESS_CREATION_CHILD_PROCESS_OVERRIDE","features":[34]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED","features":[34]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED_UNLESS_SECURE","features":[34]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_DISABLE_PROCESS_TREE","features":[34]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_ENABLE_PROCESS_TREE","features":[34]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_OVERRIDE","features":[34]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ATL_THUNK_ENABLE","features":[34]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ENABLE","features":[34]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_SEHOP_ENABLE","features":[34]},{"name":"PROC_THREAD_ATTRIBUTE_ADDITIVE","features":[34]},{"name":"PROC_THREAD_ATTRIBUTE_INPUT","features":[34]},{"name":"PROC_THREAD_ATTRIBUTE_NUMBER","features":[34]},{"name":"PROC_THREAD_ATTRIBUTE_THREAD","features":[34]},{"name":"PROGRESS_CANCEL","features":[34]},{"name":"PROGRESS_CONTINUE","features":[34]},{"name":"PROGRESS_QUIET","features":[34]},{"name":"PROGRESS_STOP","features":[34]},{"name":"PROTECTION_LEVEL_SAME","features":[34]},{"name":"PST_FAX","features":[34]},{"name":"PST_LAT","features":[34]},{"name":"PST_MODEM","features":[34]},{"name":"PST_NETWORK_BRIDGE","features":[34]},{"name":"PST_PARALLELPORT","features":[34]},{"name":"PST_RS232","features":[34]},{"name":"PST_RS422","features":[34]},{"name":"PST_RS423","features":[34]},{"name":"PST_RS449","features":[34]},{"name":"PST_SCANNER","features":[34]},{"name":"PST_TCPIP_TELNET","features":[34]},{"name":"PST_UNSPECIFIED","features":[34]},{"name":"PST_X25","features":[34]},{"name":"PUBLIC_OBJECT_BASIC_INFORMATION","features":[34]},{"name":"PUBLIC_OBJECT_TYPE_INFORMATION","features":[1,34]},{"name":"PWINSTATIONQUERYINFORMATIONW","features":[1,34]},{"name":"PWLDP_CANEXECUTEBUFFER_API","features":[34]},{"name":"PWLDP_CANEXECUTEFILE_API","features":[1,34]},{"name":"PWLDP_CANEXECUTESTREAM_API","features":[34]},{"name":"PWLDP_ISAPPAPPROVEDBYPOLICY_API","features":[34]},{"name":"PWLDP_ISDYNAMICCODEPOLICYENABLED_API","features":[1,34]},{"name":"PWLDP_ISPRODUCTIONCONFIGURATION_API","features":[1,34]},{"name":"PWLDP_ISWCOSPRODUCTIONCONFIGURATION_API","features":[1,34]},{"name":"PWLDP_QUERYDEVICESECURITYINFORMATION_API","features":[34]},{"name":"PWLDP_QUERYDYNAMICODETRUST_API","features":[1,34]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED2_API","features":[1,34]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED_API","features":[1,34]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNMODE_API","features":[34]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_API","features":[34]},{"name":"PWLDP_RESETPRODUCTIONCONFIGURATION_API","features":[34]},{"name":"PWLDP_RESETWCOSPRODUCTIONCONFIGURATION_API","features":[34]},{"name":"PWLDP_SETDYNAMICCODETRUST_API","features":[1,34]},{"name":"PWLDP_SETWINDOWSLOCKDOWNRESTRICTION_API","features":[34]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS","features":[34]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE","features":[34]},{"name":"QUERY_ACTCTX_FLAG_NO_ADDREF","features":[34]},{"name":"QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX","features":[34]},{"name":"QueryAuxiliaryCounterFrequency","features":[34]},{"name":"QueryIdleProcessorCycleTime","features":[1,34]},{"name":"QueryIdleProcessorCycleTimeEx","features":[1,34]},{"name":"QueryInterruptTime","features":[34]},{"name":"QueryInterruptTimePrecise","features":[34]},{"name":"QueryProcessCycleTime","features":[1,34]},{"name":"QueryThreadCycleTime","features":[1,34]},{"name":"QueryUnbiasedInterruptTime","features":[1,34]},{"name":"QueryUnbiasedInterruptTimePrecise","features":[34]},{"name":"RECOVERY_DEFAULT_PING_INTERVAL","features":[34]},{"name":"REGINSTALLA","features":[1,34]},{"name":"REG_RESTORE_LOG_KEY","features":[34]},{"name":"REG_SAVE_LOG_KEY","features":[34]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_LOOPBACK","features":[34]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_OFFLINE","features":[34]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_PERSISTENT_HANDLE","features":[34]},{"name":"RESETDEV","features":[34]},{"name":"RESTART_MAX_CMD_LINE","features":[34]},{"name":"RPI_FLAG_SMB2_SHARECAP_CLUSTER","features":[34]},{"name":"RPI_FLAG_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[34]},{"name":"RPI_FLAG_SMB2_SHARECAP_DFS","features":[34]},{"name":"RPI_FLAG_SMB2_SHARECAP_SCALEOUT","features":[34]},{"name":"RPI_FLAG_SMB2_SHARECAP_TIMEWARP","features":[34]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DFS","features":[34]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DIRECTORY_LEASING","features":[34]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LARGEMTU","features":[34]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LEASING","features":[34]},{"name":"RPI_SMB2_FLAG_SERVERCAP_MULTICHANNEL","features":[34]},{"name":"RPI_SMB2_FLAG_SERVERCAP_PERSISTENT_HANDLES","features":[34]},{"name":"RPI_SMB2_SHAREFLAG_COMPRESS_DATA","features":[34]},{"name":"RPI_SMB2_SHAREFLAG_ENCRYPT_DATA","features":[34]},{"name":"RSC_FLAG_DELAYREGISTEROCX","features":[34]},{"name":"RSC_FLAG_INF","features":[34]},{"name":"RSC_FLAG_NGCONV","features":[34]},{"name":"RSC_FLAG_QUIET","features":[34]},{"name":"RSC_FLAG_SETUPAPI","features":[34]},{"name":"RSC_FLAG_SKIPDISKSPACECHECK","features":[34]},{"name":"RSC_FLAG_UPDHLPDLLS","features":[34]},{"name":"RTS_CONTROL_DISABLE","features":[34]},{"name":"RTS_CONTROL_ENABLE","features":[34]},{"name":"RTS_CONTROL_HANDSHAKE","features":[34]},{"name":"RTS_CONTROL_TOGGLE","features":[34]},{"name":"RUNCMDS_DELAYPOSTCMD","features":[34]},{"name":"RUNCMDS_NOWAIT","features":[34]},{"name":"RUNCMDS_QUIET","features":[34]},{"name":"RaiseCustomSystemEventTrigger","features":[34]},{"name":"RebootCheckOnInstallA","features":[1,34]},{"name":"RebootCheckOnInstallW","features":[1,34]},{"name":"RecordFeatureError","features":[34]},{"name":"RecordFeatureUsage","features":[34]},{"name":"RegInstallA","features":[1,34]},{"name":"RegInstallW","features":[1,34]},{"name":"RegRestoreAllA","features":[1,49,34]},{"name":"RegRestoreAllW","features":[1,49,34]},{"name":"RegSaveRestoreA","features":[1,49,34]},{"name":"RegSaveRestoreOnINFA","features":[1,49,34]},{"name":"RegSaveRestoreOnINFW","features":[1,49,34]},{"name":"RegSaveRestoreW","features":[1,49,34]},{"name":"ReplacePartitionUnit","features":[1,34]},{"name":"RequestDeviceWakeup","features":[1,34]},{"name":"RtlAnsiStringToUnicodeString","features":[1,7,34]},{"name":"RtlCharToInteger","features":[1,34]},{"name":"RtlFreeAnsiString","features":[7,34]},{"name":"RtlFreeOemString","features":[7,34]},{"name":"RtlFreeUnicodeString","features":[1,34]},{"name":"RtlGetReturnAddressHijackTarget","features":[34]},{"name":"RtlInitAnsiString","features":[7,34]},{"name":"RtlInitAnsiStringEx","features":[1,7,34]},{"name":"RtlInitString","features":[7,34]},{"name":"RtlInitStringEx","features":[1,7,34]},{"name":"RtlInitUnicodeString","features":[1,34]},{"name":"RtlIsNameLegalDOS8Dot3","features":[1,7,34]},{"name":"RtlLocalTimeToSystemTime","features":[1,34]},{"name":"RtlRaiseCustomSystemEventTrigger","features":[34]},{"name":"RtlTimeToSecondsSince1970","features":[1,34]},{"name":"RtlUnicodeStringToAnsiString","features":[1,7,34]},{"name":"RtlUnicodeStringToOemString","features":[1,7,34]},{"name":"RtlUnicodeToMultiByteSize","features":[1,34]},{"name":"RtlUniform","features":[34]},{"name":"RunSetupCommandA","features":[1,34]},{"name":"RunSetupCommandW","features":[1,34]},{"name":"SCS_32BIT_BINARY","features":[34]},{"name":"SCS_64BIT_BINARY","features":[34]},{"name":"SCS_DOS_BINARY","features":[34]},{"name":"SCS_OS216_BINARY","features":[34]},{"name":"SCS_PIF_BINARY","features":[34]},{"name":"SCS_POSIX_BINARY","features":[34]},{"name":"SCS_THIS_PLATFORM_BINARY","features":[34]},{"name":"SCS_WOW_BINARY","features":[34]},{"name":"SHUTDOWN_NORETRY","features":[34]},{"name":"SP_BAUD","features":[34]},{"name":"SP_DATABITS","features":[34]},{"name":"SP_HANDSHAKING","features":[34]},{"name":"SP_PARITY","features":[34]},{"name":"SP_PARITY_CHECK","features":[34]},{"name":"SP_RLSD","features":[34]},{"name":"SP_SERIALCOMM","features":[34]},{"name":"SP_STOPBITS","features":[34]},{"name":"STARTF_HOLOGRAPHIC","features":[34]},{"name":"STORAGE_INFO_FLAGS_ALIGNED_DEVICE","features":[34]},{"name":"STORAGE_INFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[34]},{"name":"STORAGE_INFO_OFFSET_UNKNOWN","features":[34]},{"name":"STREAM_CONTAINS_GHOSTED_FILE_EXTENTS","features":[34]},{"name":"STREAM_CONTAINS_PROPERTIES","features":[34]},{"name":"STREAM_CONTAINS_SECURITY","features":[34]},{"name":"STREAM_MODIFIED_WHEN_READ","features":[34]},{"name":"STREAM_NORMAL_ATTRIBUTE","features":[34]},{"name":"STREAM_SPARSE_ATTRIBUTE","features":[34]},{"name":"STRENTRYA","features":[34]},{"name":"STRENTRYW","features":[34]},{"name":"STRINGEXSTRUCT","features":[34]},{"name":"STRTABLEA","features":[34]},{"name":"STRTABLEW","features":[34]},{"name":"SYSTEM_BASIC_INFORMATION","features":[34]},{"name":"SYSTEM_CODEINTEGRITY_INFORMATION","features":[34]},{"name":"SYSTEM_EXCEPTION_INFORMATION","features":[34]},{"name":"SYSTEM_INTERRUPT_INFORMATION","features":[34]},{"name":"SYSTEM_LOOKASIDE_INFORMATION","features":[34]},{"name":"SYSTEM_PERFORMANCE_INFORMATION","features":[34]},{"name":"SYSTEM_POLICY_INFORMATION","features":[34]},{"name":"SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION","features":[34]},{"name":"SYSTEM_PROCESS_INFORMATION","features":[1,34]},{"name":"SYSTEM_REGISTRY_QUOTA_INFORMATION","features":[34]},{"name":"SYSTEM_STATUS_FLAG_POWER_SAVING_ON","features":[34]},{"name":"SYSTEM_THREAD_INFORMATION","features":[1,34]},{"name":"SYSTEM_TIMEOFDAY_INFORMATION","features":[34]},{"name":"S_ALLTHRESHOLD","features":[34]},{"name":"S_LEGATO","features":[34]},{"name":"S_NORMAL","features":[34]},{"name":"S_PERIOD1024","features":[34]},{"name":"S_PERIOD2048","features":[34]},{"name":"S_PERIOD512","features":[34]},{"name":"S_PERIODVOICE","features":[34]},{"name":"S_QUEUEEMPTY","features":[34]},{"name":"S_SERBDNT","features":[34]},{"name":"S_SERDCC","features":[34]},{"name":"S_SERDDR","features":[34]},{"name":"S_SERDFQ","features":[34]},{"name":"S_SERDLN","features":[34]},{"name":"S_SERDMD","features":[34]},{"name":"S_SERDPT","features":[34]},{"name":"S_SERDSH","features":[34]},{"name":"S_SERDSR","features":[34]},{"name":"S_SERDST","features":[34]},{"name":"S_SERDTP","features":[34]},{"name":"S_SERDVL","features":[34]},{"name":"S_SERDVNA","features":[34]},{"name":"S_SERMACT","features":[34]},{"name":"S_SEROFM","features":[34]},{"name":"S_SERQFUL","features":[34]},{"name":"S_STACCATO","features":[34]},{"name":"S_THRESHOLD","features":[34]},{"name":"S_WHITE1024","features":[34]},{"name":"S_WHITE2048","features":[34]},{"name":"S_WHITE512","features":[34]},{"name":"S_WHITEVOICE","features":[34]},{"name":"SendIMEMessageExA","features":[1,34]},{"name":"SendIMEMessageExW","features":[1,34]},{"name":"SetEnvironmentStringsA","features":[1,34]},{"name":"SetFirmwareEnvironmentVariableA","features":[1,34]},{"name":"SetFirmwareEnvironmentVariableExA","features":[1,34]},{"name":"SetFirmwareEnvironmentVariableExW","features":[1,34]},{"name":"SetFirmwareEnvironmentVariableW","features":[1,34]},{"name":"SetHandleCount","features":[34]},{"name":"SetMessageWaitingIndicator","features":[1,34]},{"name":"SetPerUserSecValuesA","features":[1,34]},{"name":"SetPerUserSecValuesW","features":[1,34]},{"name":"SetSockOptIoControlType","features":[34]},{"name":"SocketIoControlType","features":[34]},{"name":"SubscribeFeatureStateChangeNotification","features":[34]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX32_XP","features":[34]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_W2K","features":[34]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_XP","features":[34]},{"name":"TCP_REQUEST_SET_INFORMATION_EX","features":[34]},{"name":"TC_GP_TRAP","features":[34]},{"name":"TC_HARDERR","features":[34]},{"name":"TC_NORMAL","features":[34]},{"name":"TC_SIGNAL","features":[34]},{"name":"TDIENTITY_ENTITY_TYPE","features":[34]},{"name":"TDIEntityID","features":[34]},{"name":"TDIObjectID","features":[34]},{"name":"TDI_TL_IO_CONTROL_ENDPOINT","features":[34]},{"name":"TDI_TL_IO_CONTROL_TYPE","features":[34]},{"name":"THREAD_NAME_INFORMATION","features":[1,34]},{"name":"THREAD_PRIORITY_ERROR_RETURN","features":[34]},{"name":"TranslateInfStringA","features":[34]},{"name":"TranslateInfStringExA","features":[34]},{"name":"TranslateInfStringExW","features":[34]},{"name":"TranslateInfStringW","features":[34]},{"name":"UMS_VERSION","features":[34]},{"name":"UNDETERMINESTRUCT","features":[34]},{"name":"UnsubscribeFeatureStateChangeNotification","features":[34]},{"name":"UserInstStubWrapperA","features":[1,34]},{"name":"UserInstStubWrapperW","features":[1,34]},{"name":"UserUnInstStubWrapperA","features":[1,34]},{"name":"UserUnInstStubWrapperW","features":[1,34]},{"name":"VALUENAME","features":[34]},{"name":"VALUENAME_BUILT_IN_LIST","features":[34]},{"name":"VALUENAME_ENTERPRISE_DEFINED_CLASS_ID","features":[34]},{"name":"VALUENAME_UNKNOWN","features":[34]},{"name":"WINNLSEnableIME","features":[1,34]},{"name":"WINNLSGetEnableStatus","features":[1,34]},{"name":"WINNLSGetIMEHotkey","features":[1,34]},{"name":"WINSTATIONINFOCLASS","features":[34]},{"name":"WINSTATIONINFORMATIONW","features":[34]},{"name":"WINWATCHNOTIFYPROC","features":[1,34]},{"name":"WINWATCHNOTIFY_CHANGED","features":[34]},{"name":"WINWATCHNOTIFY_CHANGING","features":[34]},{"name":"WINWATCHNOTIFY_DESTROY","features":[34]},{"name":"WINWATCHNOTIFY_START","features":[34]},{"name":"WINWATCHNOTIFY_STOP","features":[34]},{"name":"WLDP_CANEXECUTEBUFFER_FN","features":[34]},{"name":"WLDP_CANEXECUTEFILE_FN","features":[34]},{"name":"WLDP_DEVICE_SECURITY_INFORMATION","features":[34]},{"name":"WLDP_DLL","features":[34]},{"name":"WLDP_EXECUTION_EVALUATION_OPTIONS","features":[34]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_EXECUTE_IN_INTERACTIVE_SESSION","features":[34]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_NONE","features":[34]},{"name":"WLDP_EXECUTION_POLICY","features":[34]},{"name":"WLDP_EXECUTION_POLICY_ALLOWED","features":[34]},{"name":"WLDP_EXECUTION_POLICY_BLOCKED","features":[34]},{"name":"WLDP_EXECUTION_POLICY_REQUIRE_SANDBOX","features":[34]},{"name":"WLDP_FLAGS_SKIPSIGNATUREVALIDATION","features":[34]},{"name":"WLDP_GETLOCKDOWNPOLICY_FN","features":[34]},{"name":"WLDP_HOST","features":[34]},{"name":"WLDP_HOST_CMD","features":[34]},{"name":"WLDP_HOST_HTML","features":[34]},{"name":"WLDP_HOST_ID","features":[34]},{"name":"WLDP_HOST_ID_ALL","features":[34]},{"name":"WLDP_HOST_ID_GLOBAL","features":[34]},{"name":"WLDP_HOST_ID_IE","features":[34]},{"name":"WLDP_HOST_ID_MAX","features":[34]},{"name":"WLDP_HOST_ID_MSI","features":[34]},{"name":"WLDP_HOST_ID_POWERSHELL","features":[34]},{"name":"WLDP_HOST_ID_UNKNOWN","features":[34]},{"name":"WLDP_HOST_ID_VBA","features":[34]},{"name":"WLDP_HOST_ID_WSH","features":[34]},{"name":"WLDP_HOST_INFORMATION","features":[1,34]},{"name":"WLDP_HOST_INFORMATION_REVISION","features":[34]},{"name":"WLDP_HOST_JAVASCRIPT","features":[34]},{"name":"WLDP_HOST_MAX","features":[34]},{"name":"WLDP_HOST_MSI","features":[34]},{"name":"WLDP_HOST_OTHER","features":[34]},{"name":"WLDP_HOST_POWERSHELL","features":[34]},{"name":"WLDP_HOST_PYTHON","features":[34]},{"name":"WLDP_HOST_RUNDLL32","features":[34]},{"name":"WLDP_HOST_SVCHOST","features":[34]},{"name":"WLDP_HOST_WINDOWS_SCRIPT_HOST","features":[34]},{"name":"WLDP_HOST_XML","features":[34]},{"name":"WLDP_ISAPPAPPROVEDBYPOLICY_FN","features":[34]},{"name":"WLDP_ISCLASSINAPPROVEDLIST_FN","features":[34]},{"name":"WLDP_ISDYNAMICCODEPOLICYENABLED_FN","features":[34]},{"name":"WLDP_ISPRODUCTIONCONFIGURATION_FN","features":[34]},{"name":"WLDP_ISWCOSPRODUCTIONCONFIGURATION_FN","features":[34]},{"name":"WLDP_KEY","features":[34]},{"name":"WLDP_LOCKDOWN_AUDIT_FLAG","features":[34]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_AUDIT_FLAG","features":[34]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_FLAG","features":[34]},{"name":"WLDP_LOCKDOWN_DEFINED_FLAG","features":[34]},{"name":"WLDP_LOCKDOWN_EXCLUSION_FLAG","features":[34]},{"name":"WLDP_LOCKDOWN_OFF","features":[34]},{"name":"WLDP_LOCKDOWN_UMCIENFORCE_FLAG","features":[34]},{"name":"WLDP_LOCKDOWN_UNDEFINED","features":[34]},{"name":"WLDP_POLICY_SETTING","features":[34]},{"name":"WLDP_POLICY_SETTING_AV_PERF_MODE","features":[34]},{"name":"WLDP_QUERYDANAMICCODETRUST_FN","features":[34]},{"name":"WLDP_QUERYDEVICESECURITYINFORMATION_FN","features":[34]},{"name":"WLDP_QUERYDYNAMICCODETRUST_FN","features":[34]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED2_FN","features":[34]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED_FN","features":[34]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNMODE_FN","features":[34]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_FN","features":[34]},{"name":"WLDP_RESETPRODUCTIONCONFIGURATION_FN","features":[34]},{"name":"WLDP_RESETWCOSPRODUCTIONCONFIGURATION_FN","features":[34]},{"name":"WLDP_SETDYNAMICCODETRUST_FN","features":[34]},{"name":"WLDP_SETWINDOWSLOCKDOWNRESTRICTION_FN","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_LOCKED","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_MAX","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_TRIAL","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_MAX","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NONE","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK","features":[34]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK_PERMANENT","features":[34]},{"name":"WM_CONVERTREQUEST","features":[34]},{"name":"WM_CONVERTRESULT","features":[34]},{"name":"WM_IMEKEYDOWN","features":[34]},{"name":"WM_IMEKEYUP","features":[34]},{"name":"WM_IME_REPORT","features":[34]},{"name":"WM_INTERIM","features":[34]},{"name":"WM_WNT_CONVERTREQUESTEX","features":[34]},{"name":"WinStationInformation","features":[34]},{"name":"WinWatchClose","features":[34]},{"name":"WinWatchDidStatusChange","features":[1,34]},{"name":"WinWatchGetClipList","features":[1,12,34]},{"name":"WinWatchNotify","features":[1,34]},{"name":"WinWatchOpen","features":[1,34]},{"name":"WldpCanExecuteBuffer","features":[34]},{"name":"WldpCanExecuteFile","features":[1,34]},{"name":"WldpCanExecuteStream","features":[34]},{"name":"WldpGetLockdownPolicy","features":[1,34]},{"name":"WldpIsClassInApprovedList","features":[1,34]},{"name":"WldpIsDynamicCodePolicyEnabled","features":[1,34]},{"name":"WldpQueryDeviceSecurityInformation","features":[34]},{"name":"WldpQueryDynamicCodeTrust","features":[1,34]},{"name":"WldpSetDynamicCodeTrust","features":[1,34]},{"name":"WritePrivateProfileSectionA","features":[1,34]},{"name":"WritePrivateProfileSectionW","features":[1,34]},{"name":"WritePrivateProfileStringA","features":[1,34]},{"name":"WritePrivateProfileStringW","features":[1,34]},{"name":"WritePrivateProfileStructA","features":[1,34]},{"name":"WritePrivateProfileStructW","features":[1,34]},{"name":"WriteProfileSectionA","features":[1,34]},{"name":"WriteProfileSectionW","features":[1,34]},{"name":"WriteProfileStringA","features":[1,34]},{"name":"WriteProfileStringW","features":[1,34]},{"name":"_hread","features":[34]},{"name":"_hwrite","features":[34]},{"name":"_lclose","features":[34]},{"name":"_lcreat","features":[34]},{"name":"_llseek","features":[34]},{"name":"_lopen","features":[34]},{"name":"_lread","features":[34]},{"name":"_lwrite","features":[34]},{"name":"uaw_lstrcmpW","features":[34]},{"name":"uaw_lstrcmpiW","features":[34]},{"name":"uaw_lstrlenW","features":[34]},{"name":"uaw_wcschr","features":[34]},{"name":"uaw_wcscpy","features":[34]},{"name":"uaw_wcsicmp","features":[34]},{"name":"uaw_wcslen","features":[34]},{"name":"uaw_wcsrchr","features":[34]}],"646":[{"name":"CIMTYPE_ENUMERATION","features":[207]},{"name":"CIM_BOOLEAN","features":[207]},{"name":"CIM_CHAR16","features":[207]},{"name":"CIM_DATETIME","features":[207]},{"name":"CIM_EMPTY","features":[207]},{"name":"CIM_FLAG_ARRAY","features":[207]},{"name":"CIM_ILLEGAL","features":[207]},{"name":"CIM_OBJECT","features":[207]},{"name":"CIM_REAL32","features":[207]},{"name":"CIM_REAL64","features":[207]},{"name":"CIM_REFERENCE","features":[207]},{"name":"CIM_SINT16","features":[207]},{"name":"CIM_SINT32","features":[207]},{"name":"CIM_SINT64","features":[207]},{"name":"CIM_SINT8","features":[207]},{"name":"CIM_STRING","features":[207]},{"name":"CIM_UINT16","features":[207]},{"name":"CIM_UINT32","features":[207]},{"name":"CIM_UINT64","features":[207]},{"name":"CIM_UINT8","features":[207]},{"name":"IEnumWbemClassObject","features":[207]},{"name":"IMofCompiler","features":[207]},{"name":"ISWbemDateTime","features":[207]},{"name":"ISWbemEventSource","features":[207]},{"name":"ISWbemLastError","features":[207]},{"name":"ISWbemLocator","features":[207]},{"name":"ISWbemMethod","features":[207]},{"name":"ISWbemMethodSet","features":[207]},{"name":"ISWbemNamedValue","features":[207]},{"name":"ISWbemNamedValueSet","features":[207]},{"name":"ISWbemObject","features":[207]},{"name":"ISWbemObjectEx","features":[207]},{"name":"ISWbemObjectPath","features":[207]},{"name":"ISWbemObjectSet","features":[207]},{"name":"ISWbemPrivilege","features":[207]},{"name":"ISWbemPrivilegeSet","features":[207]},{"name":"ISWbemProperty","features":[207]},{"name":"ISWbemPropertySet","features":[207]},{"name":"ISWbemQualifier","features":[207]},{"name":"ISWbemQualifierSet","features":[207]},{"name":"ISWbemRefreshableItem","features":[207]},{"name":"ISWbemRefresher","features":[207]},{"name":"ISWbemSecurity","features":[207]},{"name":"ISWbemServices","features":[207]},{"name":"ISWbemServicesEx","features":[207]},{"name":"ISWbemSink","features":[207]},{"name":"ISWbemSinkEvents","features":[207]},{"name":"IUnsecuredApartment","features":[207]},{"name":"IWMIExtension","features":[207]},{"name":"IWbemAddressResolution","features":[207]},{"name":"IWbemBackupRestore","features":[207]},{"name":"IWbemBackupRestoreEx","features":[207]},{"name":"IWbemCallResult","features":[207]},{"name":"IWbemClassObject","features":[207]},{"name":"IWbemClientConnectionTransport","features":[207]},{"name":"IWbemClientTransport","features":[207]},{"name":"IWbemConfigureRefresher","features":[207]},{"name":"IWbemConnectorLogin","features":[207]},{"name":"IWbemConstructClassObject","features":[207]},{"name":"IWbemContext","features":[207]},{"name":"IWbemDecoupledBasicEventProvider","features":[207]},{"name":"IWbemDecoupledRegistrar","features":[207]},{"name":"IWbemEventConsumerProvider","features":[207]},{"name":"IWbemEventProvider","features":[207]},{"name":"IWbemEventProviderQuerySink","features":[207]},{"name":"IWbemEventProviderSecurity","features":[207]},{"name":"IWbemEventSink","features":[207]},{"name":"IWbemHiPerfEnum","features":[207]},{"name":"IWbemHiPerfProvider","features":[207]},{"name":"IWbemLevel1Login","features":[207]},{"name":"IWbemLocator","features":[207]},{"name":"IWbemObjectAccess","features":[207]},{"name":"IWbemObjectSink","features":[207]},{"name":"IWbemObjectSinkEx","features":[207]},{"name":"IWbemObjectTextSrc","features":[207]},{"name":"IWbemPath","features":[207]},{"name":"IWbemPathKeyList","features":[207]},{"name":"IWbemPropertyProvider","features":[207]},{"name":"IWbemProviderIdentity","features":[207]},{"name":"IWbemProviderInit","features":[207]},{"name":"IWbemProviderInitSink","features":[207]},{"name":"IWbemQualifierSet","features":[207]},{"name":"IWbemQuery","features":[207]},{"name":"IWbemRefresher","features":[207]},{"name":"IWbemServices","features":[207]},{"name":"IWbemShutdown","features":[207]},{"name":"IWbemStatusCodeText","features":[207]},{"name":"IWbemTransport","features":[207]},{"name":"IWbemUnboundObjectSink","features":[207]},{"name":"IWbemUnsecuredApartment","features":[207]},{"name":"MI_ARRAY","features":[207]},{"name":"MI_Application","features":[207]},{"name":"MI_ApplicationFT","features":[207]},{"name":"MI_Application_InitializeV1","features":[207]},{"name":"MI_Array","features":[207]},{"name":"MI_ArrayField","features":[207]},{"name":"MI_BOOLEAN","features":[207]},{"name":"MI_BOOLEANA","features":[207]},{"name":"MI_BooleanA","features":[207]},{"name":"MI_BooleanAField","features":[207]},{"name":"MI_BooleanField","features":[207]},{"name":"MI_CALLBACKMODE_IGNORE","features":[207]},{"name":"MI_CALLBACKMODE_INQUIRE","features":[207]},{"name":"MI_CALLBACKMODE_REPORT","features":[207]},{"name":"MI_CALL_VERSION","features":[207]},{"name":"MI_CHAR16","features":[207]},{"name":"MI_CHAR16A","features":[207]},{"name":"MI_CHAR_TYPE","features":[207]},{"name":"MI_CallbackMode","features":[207]},{"name":"MI_CancelCallback","features":[207]},{"name":"MI_CancellationReason","features":[207]},{"name":"MI_Char16A","features":[207]},{"name":"MI_Char16AField","features":[207]},{"name":"MI_Char16Field","features":[207]},{"name":"MI_Class","features":[207]},{"name":"MI_ClassDecl","features":[207]},{"name":"MI_ClassFT","features":[207]},{"name":"MI_ClientFT_V1","features":[207]},{"name":"MI_ConstBooleanA","features":[207]},{"name":"MI_ConstBooleanAField","features":[207]},{"name":"MI_ConstBooleanField","features":[207]},{"name":"MI_ConstChar16A","features":[207]},{"name":"MI_ConstChar16AField","features":[207]},{"name":"MI_ConstChar16Field","features":[207]},{"name":"MI_ConstDatetimeA","features":[207]},{"name":"MI_ConstDatetimeAField","features":[207]},{"name":"MI_ConstDatetimeField","features":[207]},{"name":"MI_ConstInstanceA","features":[207]},{"name":"MI_ConstInstanceAField","features":[207]},{"name":"MI_ConstInstanceField","features":[207]},{"name":"MI_ConstReal32A","features":[207]},{"name":"MI_ConstReal32AField","features":[207]},{"name":"MI_ConstReal32Field","features":[207]},{"name":"MI_ConstReal64A","features":[207]},{"name":"MI_ConstReal64AField","features":[207]},{"name":"MI_ConstReal64Field","features":[207]},{"name":"MI_ConstReferenceA","features":[207]},{"name":"MI_ConstReferenceAField","features":[207]},{"name":"MI_ConstReferenceField","features":[207]},{"name":"MI_ConstSint16A","features":[207]},{"name":"MI_ConstSint16AField","features":[207]},{"name":"MI_ConstSint16Field","features":[207]},{"name":"MI_ConstSint32A","features":[207]},{"name":"MI_ConstSint32AField","features":[207]},{"name":"MI_ConstSint32Field","features":[207]},{"name":"MI_ConstSint64A","features":[207]},{"name":"MI_ConstSint64AField","features":[207]},{"name":"MI_ConstSint64Field","features":[207]},{"name":"MI_ConstSint8A","features":[207]},{"name":"MI_ConstSint8AField","features":[207]},{"name":"MI_ConstSint8Field","features":[207]},{"name":"MI_ConstStringA","features":[207]},{"name":"MI_ConstStringAField","features":[207]},{"name":"MI_ConstStringField","features":[207]},{"name":"MI_ConstUint16A","features":[207]},{"name":"MI_ConstUint16AField","features":[207]},{"name":"MI_ConstUint16Field","features":[207]},{"name":"MI_ConstUint32A","features":[207]},{"name":"MI_ConstUint32AField","features":[207]},{"name":"MI_ConstUint32Field","features":[207]},{"name":"MI_ConstUint64A","features":[207]},{"name":"MI_ConstUint64AField","features":[207]},{"name":"MI_ConstUint64Field","features":[207]},{"name":"MI_ConstUint8A","features":[207]},{"name":"MI_ConstUint8AField","features":[207]},{"name":"MI_ConstUint8Field","features":[207]},{"name":"MI_Context","features":[207]},{"name":"MI_ContextFT","features":[207]},{"name":"MI_DATETIME","features":[207]},{"name":"MI_DATETIMEA","features":[207]},{"name":"MI_Datetime","features":[207]},{"name":"MI_DatetimeA","features":[207]},{"name":"MI_DatetimeAField","features":[207]},{"name":"MI_DatetimeField","features":[207]},{"name":"MI_Deserializer","features":[207]},{"name":"MI_DeserializerFT","features":[207]},{"name":"MI_Deserializer_ClassObjectNeeded","features":[207]},{"name":"MI_DestinationOptions","features":[207]},{"name":"MI_DestinationOptionsFT","features":[207]},{"name":"MI_DestinationOptions_ImpersonationType","features":[207]},{"name":"MI_DestinationOptions_ImpersonationType_Default","features":[207]},{"name":"MI_DestinationOptions_ImpersonationType_Delegate","features":[207]},{"name":"MI_DestinationOptions_ImpersonationType_Identify","features":[207]},{"name":"MI_DestinationOptions_ImpersonationType_Impersonate","features":[207]},{"name":"MI_DestinationOptions_ImpersonationType_None","features":[207]},{"name":"MI_ERRORCATEGORY_ACCESS_DENIED","features":[207]},{"name":"MI_ERRORCATEGORY_AUTHENTICATION_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_CLOS_EERROR","features":[207]},{"name":"MI_ERRORCATEGORY_CONNECTION_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_DEADLOCK_DETECTED","features":[207]},{"name":"MI_ERRORCATEGORY_DEVICE_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_FROM_STDERR","features":[207]},{"name":"MI_ERRORCATEGORY_INVALID_ARGUMENT","features":[207]},{"name":"MI_ERRORCATEGORY_INVALID_DATA","features":[207]},{"name":"MI_ERRORCATEGORY_INVALID_OPERATION","features":[207]},{"name":"MI_ERRORCATEGORY_INVALID_RESULT","features":[207]},{"name":"MI_ERRORCATEGORY_INVALID_TYPE","features":[207]},{"name":"MI_ERRORCATEGORY_LIMITS_EXCEEDED","features":[207]},{"name":"MI_ERRORCATEGORY_METADATA_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_NOT_ENABLED","features":[207]},{"name":"MI_ERRORCATEGORY_NOT_IMPLEMENTED","features":[207]},{"name":"MI_ERRORCATEGORY_NOT_INSTALLED","features":[207]},{"name":"MI_ERRORCATEGORY_NOT_SPECIFIED","features":[207]},{"name":"MI_ERRORCATEGORY_OBJECT_NOT_FOUND","features":[207]},{"name":"MI_ERRORCATEGORY_OPEN_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_OPERATION_STOPPED","features":[207]},{"name":"MI_ERRORCATEGORY_OPERATION_TIMEOUT","features":[207]},{"name":"MI_ERRORCATEGORY_PARSER_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_PROTOCOL_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_QUOTA_EXCEEDED","features":[207]},{"name":"MI_ERRORCATEGORY_READ_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_RESOURCE_BUSY","features":[207]},{"name":"MI_ERRORCATEGORY_RESOURCE_EXISTS","features":[207]},{"name":"MI_ERRORCATEGORY_RESOURCE_UNAVAILABLE","features":[207]},{"name":"MI_ERRORCATEGORY_SECURITY_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_SYNTAX_ERROR","features":[207]},{"name":"MI_ERRORCATEGORY_WRITE_ERROR","features":[207]},{"name":"MI_ErrorCategory","features":[207]},{"name":"MI_FLAG_ABSTRACT","features":[207]},{"name":"MI_FLAG_ADOPT","features":[207]},{"name":"MI_FLAG_ANY","features":[207]},{"name":"MI_FLAG_ASSOCIATION","features":[207]},{"name":"MI_FLAG_BORROW","features":[207]},{"name":"MI_FLAG_CLASS","features":[207]},{"name":"MI_FLAG_DISABLEOVERRIDE","features":[207]},{"name":"MI_FLAG_ENABLEOVERRIDE","features":[207]},{"name":"MI_FLAG_EXPENSIVE","features":[207]},{"name":"MI_FLAG_EXTENDED","features":[207]},{"name":"MI_FLAG_IN","features":[207]},{"name":"MI_FLAG_INDICATION","features":[207]},{"name":"MI_FLAG_KEY","features":[207]},{"name":"MI_FLAG_METHOD","features":[207]},{"name":"MI_FLAG_NOT_MODIFIED","features":[207]},{"name":"MI_FLAG_NULL","features":[207]},{"name":"MI_FLAG_OUT","features":[207]},{"name":"MI_FLAG_PARAMETER","features":[207]},{"name":"MI_FLAG_PROPERTY","features":[207]},{"name":"MI_FLAG_READONLY","features":[207]},{"name":"MI_FLAG_REFERENCE","features":[207]},{"name":"MI_FLAG_REQUIRED","features":[207]},{"name":"MI_FLAG_RESTRICTED","features":[207]},{"name":"MI_FLAG_STATIC","features":[207]},{"name":"MI_FLAG_STREAM","features":[207]},{"name":"MI_FLAG_TERMINAL","features":[207]},{"name":"MI_FLAG_TOSUBCLASS","features":[207]},{"name":"MI_FLAG_TRANSLATABLE","features":[207]},{"name":"MI_FLAG_VERSION","features":[207]},{"name":"MI_FeatureDecl","features":[207]},{"name":"MI_Filter","features":[207]},{"name":"MI_FilterFT","features":[207]},{"name":"MI_HostedProvider","features":[207]},{"name":"MI_HostedProviderFT","features":[207]},{"name":"MI_INSTANCE","features":[207]},{"name":"MI_INSTANCEA","features":[207]},{"name":"MI_Instance","features":[207]},{"name":"MI_InstanceA","features":[207]},{"name":"MI_InstanceAField","features":[207]},{"name":"MI_InstanceExFT","features":[207]},{"name":"MI_InstanceFT","features":[207]},{"name":"MI_InstanceField","features":[207]},{"name":"MI_Interval","features":[207]},{"name":"MI_LOCALE_TYPE_CLOSEST_DATA","features":[207]},{"name":"MI_LOCALE_TYPE_CLOSEST_UI","features":[207]},{"name":"MI_LOCALE_TYPE_REQUESTED_DATA","features":[207]},{"name":"MI_LOCALE_TYPE_REQUESTED_UI","features":[207]},{"name":"MI_LocaleType","features":[207]},{"name":"MI_MAX_LOCALE_SIZE","features":[207]},{"name":"MI_MODULE_FLAG_BOOLEANS","features":[207]},{"name":"MI_MODULE_FLAG_CPLUSPLUS","features":[207]},{"name":"MI_MODULE_FLAG_DESCRIPTIONS","features":[207]},{"name":"MI_MODULE_FLAG_FILTER_SUPPORT","features":[207]},{"name":"MI_MODULE_FLAG_LOCALIZED","features":[207]},{"name":"MI_MODULE_FLAG_MAPPING_STRINGS","features":[207]},{"name":"MI_MODULE_FLAG_STANDARD_QUALIFIERS","features":[207]},{"name":"MI_MODULE_FLAG_VALUES","features":[207]},{"name":"MI_MainFunction","features":[207]},{"name":"MI_MethodDecl","features":[207]},{"name":"MI_MethodDecl_Invoke","features":[207]},{"name":"MI_Module","features":[207]},{"name":"MI_Module_Load","features":[207]},{"name":"MI_Module_Self","features":[207]},{"name":"MI_Module_Unload","features":[207]},{"name":"MI_OPERATIONFLAGS_BASIC_RTTI","features":[207]},{"name":"MI_OPERATIONFLAGS_DEFAULT_RTTI","features":[207]},{"name":"MI_OPERATIONFLAGS_EXPENSIVE_PROPERTIES","features":[207]},{"name":"MI_OPERATIONFLAGS_FULL_RTTI","features":[207]},{"name":"MI_OPERATIONFLAGS_LOCALIZED_QUALIFIERS","features":[207]},{"name":"MI_OPERATIONFLAGS_MANUAL_ACK_RESULTS","features":[207]},{"name":"MI_OPERATIONFLAGS_NO_RTTI","features":[207]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_DEEP_BASE_PROPS_ONLY","features":[207]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_SHALLOW","features":[207]},{"name":"MI_OPERATIONFLAGS_REPORT_OPERATION_STARTED","features":[207]},{"name":"MI_OPERATIONFLAGS_STANDARD_RTTI","features":[207]},{"name":"MI_ObjectDecl","features":[207]},{"name":"MI_Operation","features":[207]},{"name":"MI_OperationCallback_Class","features":[207]},{"name":"MI_OperationCallback_Indication","features":[207]},{"name":"MI_OperationCallback_Instance","features":[207]},{"name":"MI_OperationCallback_PromptUser","features":[207]},{"name":"MI_OperationCallback_ResponseType","features":[207]},{"name":"MI_OperationCallback_ResponseType_No","features":[207]},{"name":"MI_OperationCallback_ResponseType_NoToAll","features":[207]},{"name":"MI_OperationCallback_ResponseType_Yes","features":[207]},{"name":"MI_OperationCallback_ResponseType_YesToAll","features":[207]},{"name":"MI_OperationCallback_StreamedParameter","features":[207]},{"name":"MI_OperationCallback_WriteError","features":[207]},{"name":"MI_OperationCallback_WriteMessage","features":[207]},{"name":"MI_OperationCallback_WriteProgress","features":[207]},{"name":"MI_OperationCallbacks","features":[207]},{"name":"MI_OperationFT","features":[207]},{"name":"MI_OperationOptions","features":[207]},{"name":"MI_OperationOptionsFT","features":[207]},{"name":"MI_PROMPTTYPE_CRITICAL","features":[207]},{"name":"MI_PROMPTTYPE_NORMAL","features":[207]},{"name":"MI_PROVIDER_ARCHITECTURE_32BIT","features":[207]},{"name":"MI_PROVIDER_ARCHITECTURE_64BIT","features":[207]},{"name":"MI_ParameterDecl","features":[207]},{"name":"MI_ParameterSet","features":[207]},{"name":"MI_ParameterSetFT","features":[207]},{"name":"MI_PromptType","features":[207]},{"name":"MI_PropertyDecl","features":[207]},{"name":"MI_PropertySet","features":[207]},{"name":"MI_PropertySetFT","features":[207]},{"name":"MI_ProviderArchitecture","features":[207]},{"name":"MI_ProviderFT","features":[207]},{"name":"MI_ProviderFT_AssociatorInstances","features":[207]},{"name":"MI_ProviderFT_CreateInstance","features":[207]},{"name":"MI_ProviderFT_DeleteInstance","features":[207]},{"name":"MI_ProviderFT_DisableIndications","features":[207]},{"name":"MI_ProviderFT_EnableIndications","features":[207]},{"name":"MI_ProviderFT_EnumerateInstances","features":[207]},{"name":"MI_ProviderFT_GetInstance","features":[207]},{"name":"MI_ProviderFT_Invoke","features":[207]},{"name":"MI_ProviderFT_Load","features":[207]},{"name":"MI_ProviderFT_ModifyInstance","features":[207]},{"name":"MI_ProviderFT_ReferenceInstances","features":[207]},{"name":"MI_ProviderFT_Subscribe","features":[207]},{"name":"MI_ProviderFT_Unload","features":[207]},{"name":"MI_ProviderFT_Unsubscribe","features":[207]},{"name":"MI_Qualifier","features":[207]},{"name":"MI_QualifierDecl","features":[207]},{"name":"MI_QualifierSet","features":[207]},{"name":"MI_QualifierSetFT","features":[207]},{"name":"MI_REAL32","features":[207]},{"name":"MI_REAL32A","features":[207]},{"name":"MI_REAL64","features":[207]},{"name":"MI_REAL64A","features":[207]},{"name":"MI_REASON_NONE","features":[207]},{"name":"MI_REASON_SERVICESTOP","features":[207]},{"name":"MI_REASON_SHUTDOWN","features":[207]},{"name":"MI_REASON_TIMEOUT","features":[207]},{"name":"MI_REFERENCE","features":[207]},{"name":"MI_REFERENCEA","features":[207]},{"name":"MI_RESULT_ACCESS_DENIED","features":[207]},{"name":"MI_RESULT_ALREADY_EXISTS","features":[207]},{"name":"MI_RESULT_CLASS_HAS_CHILDREN","features":[207]},{"name":"MI_RESULT_CLASS_HAS_INSTANCES","features":[207]},{"name":"MI_RESULT_CONTINUATION_ON_ERROR_NOT_SUPPORTED","features":[207]},{"name":"MI_RESULT_FAILED","features":[207]},{"name":"MI_RESULT_FILTERED_ENUMERATION_NOT_SUPPORTED","features":[207]},{"name":"MI_RESULT_INVALID_CLASS","features":[207]},{"name":"MI_RESULT_INVALID_ENUMERATION_CONTEXT","features":[207]},{"name":"MI_RESULT_INVALID_NAMESPACE","features":[207]},{"name":"MI_RESULT_INVALID_OPERATION_TIMEOUT","features":[207]},{"name":"MI_RESULT_INVALID_PARAMETER","features":[207]},{"name":"MI_RESULT_INVALID_QUERY","features":[207]},{"name":"MI_RESULT_INVALID_SUPERCLASS","features":[207]},{"name":"MI_RESULT_METHOD_NOT_AVAILABLE","features":[207]},{"name":"MI_RESULT_METHOD_NOT_FOUND","features":[207]},{"name":"MI_RESULT_NAMESPACE_NOT_EMPTY","features":[207]},{"name":"MI_RESULT_NOT_FOUND","features":[207]},{"name":"MI_RESULT_NOT_SUPPORTED","features":[207]},{"name":"MI_RESULT_NO_SUCH_PROPERTY","features":[207]},{"name":"MI_RESULT_OK","features":[207]},{"name":"MI_RESULT_PULL_CANNOT_BE_ABANDONED","features":[207]},{"name":"MI_RESULT_PULL_HAS_BEEN_ABANDONED","features":[207]},{"name":"MI_RESULT_QUERY_LANGUAGE_NOT_SUPPORTED","features":[207]},{"name":"MI_RESULT_SERVER_IS_SHUTTING_DOWN","features":[207]},{"name":"MI_RESULT_SERVER_LIMITS_EXCEEDED","features":[207]},{"name":"MI_RESULT_TYPE_MISMATCH","features":[207]},{"name":"MI_Real32A","features":[207]},{"name":"MI_Real32AField","features":[207]},{"name":"MI_Real32Field","features":[207]},{"name":"MI_Real64A","features":[207]},{"name":"MI_Real64AField","features":[207]},{"name":"MI_Real64Field","features":[207]},{"name":"MI_ReferenceA","features":[207]},{"name":"MI_ReferenceAField","features":[207]},{"name":"MI_ReferenceField","features":[207]},{"name":"MI_Result","features":[207]},{"name":"MI_SERIALIZER_FLAGS_CLASS_DEEP","features":[207]},{"name":"MI_SERIALIZER_FLAGS_INSTANCE_WITH_CLASS","features":[207]},{"name":"MI_SINT16","features":[207]},{"name":"MI_SINT16A","features":[207]},{"name":"MI_SINT32","features":[207]},{"name":"MI_SINT32A","features":[207]},{"name":"MI_SINT64","features":[207]},{"name":"MI_SINT64A","features":[207]},{"name":"MI_SINT8","features":[207]},{"name":"MI_SINT8A","features":[207]},{"name":"MI_STRING","features":[207]},{"name":"MI_STRINGA","features":[207]},{"name":"MI_SUBSCRIBE_BOOKMARK_NEWEST","features":[207]},{"name":"MI_SUBSCRIBE_BOOKMARK_OLDEST","features":[207]},{"name":"MI_SchemaDecl","features":[207]},{"name":"MI_Serializer","features":[207]},{"name":"MI_SerializerFT","features":[207]},{"name":"MI_Server","features":[207]},{"name":"MI_ServerFT","features":[207]},{"name":"MI_Session","features":[207]},{"name":"MI_SessionCallbacks","features":[207]},{"name":"MI_SessionFT","features":[207]},{"name":"MI_Sint16A","features":[207]},{"name":"MI_Sint16AField","features":[207]},{"name":"MI_Sint16Field","features":[207]},{"name":"MI_Sint32A","features":[207]},{"name":"MI_Sint32AField","features":[207]},{"name":"MI_Sint32Field","features":[207]},{"name":"MI_Sint64A","features":[207]},{"name":"MI_Sint64AField","features":[207]},{"name":"MI_Sint64Field","features":[207]},{"name":"MI_Sint8A","features":[207]},{"name":"MI_Sint8AField","features":[207]},{"name":"MI_Sint8Field","features":[207]},{"name":"MI_StringA","features":[207]},{"name":"MI_StringAField","features":[207]},{"name":"MI_StringField","features":[207]},{"name":"MI_SubscriptionDeliveryOptions","features":[207]},{"name":"MI_SubscriptionDeliveryOptionsFT","features":[207]},{"name":"MI_SubscriptionDeliveryType","features":[207]},{"name":"MI_SubscriptionDeliveryType_Pull","features":[207]},{"name":"MI_SubscriptionDeliveryType_Push","features":[207]},{"name":"MI_Timestamp","features":[207]},{"name":"MI_Type","features":[207]},{"name":"MI_UINT16","features":[207]},{"name":"MI_UINT16A","features":[207]},{"name":"MI_UINT32","features":[207]},{"name":"MI_UINT32A","features":[207]},{"name":"MI_UINT64","features":[207]},{"name":"MI_UINT64A","features":[207]},{"name":"MI_UINT8","features":[207]},{"name":"MI_UINT8A","features":[207]},{"name":"MI_Uint16A","features":[207]},{"name":"MI_Uint16AField","features":[207]},{"name":"MI_Uint16Field","features":[207]},{"name":"MI_Uint32A","features":[207]},{"name":"MI_Uint32AField","features":[207]},{"name":"MI_Uint32Field","features":[207]},{"name":"MI_Uint64A","features":[207]},{"name":"MI_Uint64AField","features":[207]},{"name":"MI_Uint64Field","features":[207]},{"name":"MI_Uint8A","features":[207]},{"name":"MI_Uint8AField","features":[207]},{"name":"MI_Uint8Field","features":[207]},{"name":"MI_UserCredentials","features":[207]},{"name":"MI_UsernamePasswordCreds","features":[207]},{"name":"MI_UtilitiesFT","features":[207]},{"name":"MI_Value","features":[207]},{"name":"MI_WRITEMESSAGE_CHANNEL_DEBUG","features":[207]},{"name":"MI_WRITEMESSAGE_CHANNEL_VERBOSE","features":[207]},{"name":"MI_WRITEMESSAGE_CHANNEL_WARNING","features":[207]},{"name":"MofCompiler","features":[207]},{"name":"SWbemAnalysisMatrix","features":[1,207]},{"name":"SWbemAnalysisMatrixList","features":[1,207]},{"name":"SWbemAssocQueryInf","features":[207]},{"name":"SWbemDateTime","features":[207]},{"name":"SWbemEventSource","features":[207]},{"name":"SWbemLastError","features":[207]},{"name":"SWbemLocator","features":[207]},{"name":"SWbemMethod","features":[207]},{"name":"SWbemMethodSet","features":[207]},{"name":"SWbemNamedValue","features":[207]},{"name":"SWbemNamedValueSet","features":[207]},{"name":"SWbemObject","features":[207]},{"name":"SWbemObjectEx","features":[207]},{"name":"SWbemObjectPath","features":[207]},{"name":"SWbemObjectSet","features":[207]},{"name":"SWbemPrivilege","features":[207]},{"name":"SWbemPrivilegeSet","features":[207]},{"name":"SWbemProperty","features":[207]},{"name":"SWbemPropertySet","features":[207]},{"name":"SWbemQualifier","features":[207]},{"name":"SWbemQualifierSet","features":[207]},{"name":"SWbemQueryQualifiedName","features":[1,207]},{"name":"SWbemRefreshableItem","features":[207]},{"name":"SWbemRefresher","features":[207]},{"name":"SWbemRpnConst","features":[1,207]},{"name":"SWbemRpnEncodedQuery","features":[1,207]},{"name":"SWbemRpnQueryToken","features":[1,207]},{"name":"SWbemRpnTokenList","features":[207]},{"name":"SWbemSecurity","features":[207]},{"name":"SWbemServices","features":[207]},{"name":"SWbemServicesEx","features":[207]},{"name":"SWbemSink","features":[207]},{"name":"UnsecuredApartment","features":[207]},{"name":"WBEMESS_E_AUTHZ_NOT_PRIVILEGED","features":[207]},{"name":"WBEMESS_E_REGISTRATION_TOO_BROAD","features":[207]},{"name":"WBEMESS_E_REGISTRATION_TOO_PRECISE","features":[207]},{"name":"WBEMMOF_E_ALIASES_IN_EMBEDDED","features":[207]},{"name":"WBEMMOF_E_CIMTYPE_QUALIFIER","features":[207]},{"name":"WBEMMOF_E_DUPLICATE_PROPERTY","features":[207]},{"name":"WBEMMOF_E_DUPLICATE_QUALIFIER","features":[207]},{"name":"WBEMMOF_E_ERROR_CREATING_TEMP_FILE","features":[207]},{"name":"WBEMMOF_E_ERROR_INVALID_INCLUDE_FILE","features":[207]},{"name":"WBEMMOF_E_EXPECTED_ALIAS_NAME","features":[207]},{"name":"WBEMMOF_E_EXPECTED_BRACE_OR_BAD_TYPE","features":[207]},{"name":"WBEMMOF_E_EXPECTED_CLASS_NAME","features":[207]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACE","features":[207]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACKET","features":[207]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_PAREN","features":[207]},{"name":"WBEMMOF_E_EXPECTED_DOLLAR","features":[207]},{"name":"WBEMMOF_E_EXPECTED_FLAVOR_TYPE","features":[207]},{"name":"WBEMMOF_E_EXPECTED_OPEN_BRACE","features":[207]},{"name":"WBEMMOF_E_EXPECTED_OPEN_PAREN","features":[207]},{"name":"WBEMMOF_E_EXPECTED_PROPERTY_NAME","features":[207]},{"name":"WBEMMOF_E_EXPECTED_QUALIFIER_NAME","features":[207]},{"name":"WBEMMOF_E_EXPECTED_SEMI","features":[207]},{"name":"WBEMMOF_E_EXPECTED_TYPE_IDENTIFIER","features":[207]},{"name":"WBEMMOF_E_ILLEGAL_CONSTANT_VALUE","features":[207]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES","features":[207]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES2","features":[207]},{"name":"WBEMMOF_E_INVALID_AMENDMENT_SYNTAX","features":[207]},{"name":"WBEMMOF_E_INVALID_CLASS_DECLARATION","features":[207]},{"name":"WBEMMOF_E_INVALID_DELETECLASS_SYNTAX","features":[207]},{"name":"WBEMMOF_E_INVALID_DELETEINSTANCE_SYNTAX","features":[207]},{"name":"WBEMMOF_E_INVALID_DUPLICATE_AMENDMENT","features":[207]},{"name":"WBEMMOF_E_INVALID_FILE","features":[207]},{"name":"WBEMMOF_E_INVALID_FLAGS_SYNTAX","features":[207]},{"name":"WBEMMOF_E_INVALID_INSTANCE_DECLARATION","features":[207]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SPECIFICATION","features":[207]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SYNTAX","features":[207]},{"name":"WBEMMOF_E_INVALID_PRAGMA","features":[207]},{"name":"WBEMMOF_E_INVALID_QUALIFIER_SYNTAX","features":[207]},{"name":"WBEMMOF_E_MULTIPLE_ALIASES","features":[207]},{"name":"WBEMMOF_E_MUST_BE_IN_OR_OUT","features":[207]},{"name":"WBEMMOF_E_NO_ARRAYS_RETURNED","features":[207]},{"name":"WBEMMOF_E_NULL_ARRAY_ELEM","features":[207]},{"name":"WBEMMOF_E_OUT_OF_RANGE","features":[207]},{"name":"WBEMMOF_E_QUALIFIER_USED_OUTSIDE_SCOPE","features":[207]},{"name":"WBEMMOF_E_TYPEDEF_NOT_SUPPORTED","features":[207]},{"name":"WBEMMOF_E_TYPE_MISMATCH","features":[207]},{"name":"WBEMMOF_E_UNEXPECTED_ALIAS","features":[207]},{"name":"WBEMMOF_E_UNEXPECTED_ARRAY_INIT","features":[207]},{"name":"WBEMMOF_E_UNRECOGNIZED_TOKEN","features":[207]},{"name":"WBEMMOF_E_UNRECOGNIZED_TYPE","features":[207]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_DATA_TYPE","features":[207]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_QUAL_VALUE","features":[207]},{"name":"WBEMPATH_COMPRESSED","features":[207]},{"name":"WBEMPATH_CREATE_ACCEPT_ABSOLUTE","features":[207]},{"name":"WBEMPATH_CREATE_ACCEPT_ALL","features":[207]},{"name":"WBEMPATH_CREATE_ACCEPT_RELATIVE","features":[207]},{"name":"WBEMPATH_GET_NAMESPACE_ONLY","features":[207]},{"name":"WBEMPATH_GET_ORIGINAL","features":[207]},{"name":"WBEMPATH_GET_RELATIVE_ONLY","features":[207]},{"name":"WBEMPATH_GET_SERVER_AND_NAMESPACE_ONLY","features":[207]},{"name":"WBEMPATH_GET_SERVER_TOO","features":[207]},{"name":"WBEMPATH_INFO_ANON_LOCAL_MACHINE","features":[207]},{"name":"WBEMPATH_INFO_CIM_COMPLIANT","features":[207]},{"name":"WBEMPATH_INFO_CONTAINS_SINGLETON","features":[207]},{"name":"WBEMPATH_INFO_HAS_IMPLIED_KEY","features":[207]},{"name":"WBEMPATH_INFO_HAS_MACHINE_NAME","features":[207]},{"name":"WBEMPATH_INFO_HAS_SUBSCOPES","features":[207]},{"name":"WBEMPATH_INFO_HAS_V2_REF_PATHS","features":[207]},{"name":"WBEMPATH_INFO_IS_CLASS_REF","features":[207]},{"name":"WBEMPATH_INFO_IS_COMPOUND","features":[207]},{"name":"WBEMPATH_INFO_IS_INST_REF","features":[207]},{"name":"WBEMPATH_INFO_IS_PARENT","features":[207]},{"name":"WBEMPATH_INFO_IS_SINGLETON","features":[207]},{"name":"WBEMPATH_INFO_NATIVE_PATH","features":[207]},{"name":"WBEMPATH_INFO_PATH_HAD_SERVER","features":[207]},{"name":"WBEMPATH_INFO_SERVER_NAMESPACE_ONLY","features":[207]},{"name":"WBEMPATH_INFO_V1_COMPLIANT","features":[207]},{"name":"WBEMPATH_INFO_V2_COMPLIANT","features":[207]},{"name":"WBEMPATH_INFO_WMI_PATH","features":[207]},{"name":"WBEMPATH_QUOTEDTEXT","features":[207]},{"name":"WBEMPATH_TEXT","features":[207]},{"name":"WBEMPATH_TREAT_SINGLE_IDENT_AS_NS","features":[207]},{"name":"WBEMSTATUS","features":[207]},{"name":"WBEMSTATUS_FORMAT","features":[207]},{"name":"WBEMSTATUS_FORMAT_NEWLINE","features":[207]},{"name":"WBEMSTATUS_FORMAT_NO_NEWLINE","features":[207]},{"name":"WBEMS_DISPID_COMPLETED","features":[207]},{"name":"WBEMS_DISPID_CONNECTION_READY","features":[207]},{"name":"WBEMS_DISPID_DERIVATION","features":[207]},{"name":"WBEMS_DISPID_OBJECT_PUT","features":[207]},{"name":"WBEMS_DISPID_OBJECT_READY","features":[207]},{"name":"WBEMS_DISPID_PROGRESS","features":[207]},{"name":"WBEM_AUTHENTICATION_METHOD_MASK","features":[207]},{"name":"WBEM_BACKUP_RESTORE_FLAGS","features":[207]},{"name":"WBEM_BATCH_TYPE","features":[207]},{"name":"WBEM_CHANGE_FLAG_TYPE","features":[207]},{"name":"WBEM_COMPARISON_FLAG","features":[207]},{"name":"WBEM_COMPARISON_INCLUDE_ALL","features":[207]},{"name":"WBEM_COMPILER_OPTIONS","features":[207]},{"name":"WBEM_COMPILE_STATUS_INFO","features":[207]},{"name":"WBEM_CONDITION_FLAG_TYPE","features":[207]},{"name":"WBEM_CONNECT_OPTIONS","features":[207]},{"name":"WBEM_ENABLE","features":[207]},{"name":"WBEM_EXTRA_RETURN_CODES","features":[207]},{"name":"WBEM_E_ACCESS_DENIED","features":[207]},{"name":"WBEM_E_AGGREGATING_BY_OBJECT","features":[207]},{"name":"WBEM_E_ALREADY_EXISTS","features":[207]},{"name":"WBEM_E_AMBIGUOUS_OPERATION","features":[207]},{"name":"WBEM_E_AMENDED_OBJECT","features":[207]},{"name":"WBEM_E_BACKUP_RESTORE_WINMGMT_RUNNING","features":[207]},{"name":"WBEM_E_BUFFER_TOO_SMALL","features":[207]},{"name":"WBEM_E_CALL_CANCELLED","features":[207]},{"name":"WBEM_E_CANNOT_BE_ABSTRACT","features":[207]},{"name":"WBEM_E_CANNOT_BE_KEY","features":[207]},{"name":"WBEM_E_CANNOT_BE_SINGLETON","features":[207]},{"name":"WBEM_E_CANNOT_CHANGE_INDEX_INHERITANCE","features":[207]},{"name":"WBEM_E_CANNOT_CHANGE_KEY_INHERITANCE","features":[207]},{"name":"WBEM_E_CIRCULAR_REFERENCE","features":[207]},{"name":"WBEM_E_CLASS_HAS_CHILDREN","features":[207]},{"name":"WBEM_E_CLASS_HAS_INSTANCES","features":[207]},{"name":"WBEM_E_CLASS_NAME_TOO_WIDE","features":[207]},{"name":"WBEM_E_CLIENT_TOO_SLOW","features":[207]},{"name":"WBEM_E_CONNECTION_FAILED","features":[207]},{"name":"WBEM_E_CRITICAL_ERROR","features":[207]},{"name":"WBEM_E_DATABASE_VER_MISMATCH","features":[207]},{"name":"WBEM_E_ENCRYPTED_CONNECTION_REQUIRED","features":[207]},{"name":"WBEM_E_FAILED","features":[207]},{"name":"WBEM_E_FATAL_TRANSPORT_ERROR","features":[207]},{"name":"WBEM_E_HANDLE_OUT_OF_DATE","features":[207]},{"name":"WBEM_E_ILLEGAL_NULL","features":[207]},{"name":"WBEM_E_ILLEGAL_OPERATION","features":[207]},{"name":"WBEM_E_INCOMPLETE_CLASS","features":[207]},{"name":"WBEM_E_INITIALIZATION_FAILURE","features":[207]},{"name":"WBEM_E_INVALID_ASSOCIATION","features":[207]},{"name":"WBEM_E_INVALID_CIM_TYPE","features":[207]},{"name":"WBEM_E_INVALID_CLASS","features":[207]},{"name":"WBEM_E_INVALID_CONTEXT","features":[207]},{"name":"WBEM_E_INVALID_DUPLICATE_PARAMETER","features":[207]},{"name":"WBEM_E_INVALID_FLAVOR","features":[207]},{"name":"WBEM_E_INVALID_HANDLE_REQUEST","features":[207]},{"name":"WBEM_E_INVALID_LOCALE","features":[207]},{"name":"WBEM_E_INVALID_METHOD","features":[207]},{"name":"WBEM_E_INVALID_METHOD_PARAMETERS","features":[207]},{"name":"WBEM_E_INVALID_NAMESPACE","features":[207]},{"name":"WBEM_E_INVALID_OBJECT","features":[207]},{"name":"WBEM_E_INVALID_OBJECT_PATH","features":[207]},{"name":"WBEM_E_INVALID_OPERATION","features":[207]},{"name":"WBEM_E_INVALID_OPERATOR","features":[207]},{"name":"WBEM_E_INVALID_PARAMETER","features":[207]},{"name":"WBEM_E_INVALID_PARAMETER_ID","features":[207]},{"name":"WBEM_E_INVALID_PROPERTY","features":[207]},{"name":"WBEM_E_INVALID_PROPERTY_TYPE","features":[207]},{"name":"WBEM_E_INVALID_PROVIDER_REGISTRATION","features":[207]},{"name":"WBEM_E_INVALID_QUALIFIER","features":[207]},{"name":"WBEM_E_INVALID_QUALIFIER_TYPE","features":[207]},{"name":"WBEM_E_INVALID_QUERY","features":[207]},{"name":"WBEM_E_INVALID_QUERY_TYPE","features":[207]},{"name":"WBEM_E_INVALID_STREAM","features":[207]},{"name":"WBEM_E_INVALID_SUPERCLASS","features":[207]},{"name":"WBEM_E_INVALID_SYNTAX","features":[207]},{"name":"WBEM_E_LOCAL_CREDENTIALS","features":[207]},{"name":"WBEM_E_MARSHAL_INVALID_SIGNATURE","features":[207]},{"name":"WBEM_E_MARSHAL_VERSION_MISMATCH","features":[207]},{"name":"WBEM_E_METHOD_DISABLED","features":[207]},{"name":"WBEM_E_METHOD_NAME_TOO_WIDE","features":[207]},{"name":"WBEM_E_METHOD_NOT_IMPLEMENTED","features":[207]},{"name":"WBEM_E_MISSING_AGGREGATION_LIST","features":[207]},{"name":"WBEM_E_MISSING_GROUP_WITHIN","features":[207]},{"name":"WBEM_E_MISSING_PARAMETER_ID","features":[207]},{"name":"WBEM_E_NONCONSECUTIVE_PARAMETER_IDS","features":[207]},{"name":"WBEM_E_NONDECORATED_OBJECT","features":[207]},{"name":"WBEM_E_NOT_AVAILABLE","features":[207]},{"name":"WBEM_E_NOT_EVENT_CLASS","features":[207]},{"name":"WBEM_E_NOT_FOUND","features":[207]},{"name":"WBEM_E_NOT_SUPPORTED","features":[207]},{"name":"WBEM_E_NO_KEY","features":[207]},{"name":"WBEM_E_NO_SCHEMA","features":[207]},{"name":"WBEM_E_NULL_SECURITY_DESCRIPTOR","features":[207]},{"name":"WBEM_E_OUT_OF_DISK_SPACE","features":[207]},{"name":"WBEM_E_OUT_OF_MEMORY","features":[207]},{"name":"WBEM_E_OVERRIDE_NOT_ALLOWED","features":[207]},{"name":"WBEM_E_PARAMETER_ID_ON_RETVAL","features":[207]},{"name":"WBEM_E_PRIVILEGE_NOT_HELD","features":[207]},{"name":"WBEM_E_PROPAGATED_METHOD","features":[207]},{"name":"WBEM_E_PROPAGATED_PROPERTY","features":[207]},{"name":"WBEM_E_PROPAGATED_QUALIFIER","features":[207]},{"name":"WBEM_E_PROPERTY_NAME_TOO_WIDE","features":[207]},{"name":"WBEM_E_PROPERTY_NOT_AN_OBJECT","features":[207]},{"name":"WBEM_E_PROVIDER_ALREADY_REGISTERED","features":[207]},{"name":"WBEM_E_PROVIDER_DISABLED","features":[207]},{"name":"WBEM_E_PROVIDER_FAILURE","features":[207]},{"name":"WBEM_E_PROVIDER_LOAD_FAILURE","features":[207]},{"name":"WBEM_E_PROVIDER_NOT_CAPABLE","features":[207]},{"name":"WBEM_E_PROVIDER_NOT_FOUND","features":[207]},{"name":"WBEM_E_PROVIDER_NOT_REGISTERED","features":[207]},{"name":"WBEM_E_PROVIDER_SUSPENDED","features":[207]},{"name":"WBEM_E_PROVIDER_TIMED_OUT","features":[207]},{"name":"WBEM_E_QUALIFIER_NAME_TOO_WIDE","features":[207]},{"name":"WBEM_E_QUERY_NOT_IMPLEMENTED","features":[207]},{"name":"WBEM_E_QUEUE_OVERFLOW","features":[207]},{"name":"WBEM_E_QUOTA_VIOLATION","features":[207]},{"name":"WBEM_E_READ_ONLY","features":[207]},{"name":"WBEM_E_REFRESHER_BUSY","features":[207]},{"name":"WBEM_E_RERUN_COMMAND","features":[207]},{"name":"WBEM_E_RESERVED_001","features":[207]},{"name":"WBEM_E_RESERVED_002","features":[207]},{"name":"WBEM_E_RESOURCE_CONTENTION","features":[207]},{"name":"WBEM_E_RETRY_LATER","features":[207]},{"name":"WBEM_E_SERVER_TOO_BUSY","features":[207]},{"name":"WBEM_E_SHUTTING_DOWN","features":[207]},{"name":"WBEM_E_SYNCHRONIZATION_REQUIRED","features":[207]},{"name":"WBEM_E_SYSTEM_PROPERTY","features":[207]},{"name":"WBEM_E_TIMED_OUT","features":[207]},{"name":"WBEM_E_TOO_MANY_PROPERTIES","features":[207]},{"name":"WBEM_E_TOO_MUCH_DATA","features":[207]},{"name":"WBEM_E_TRANSPORT_FAILURE","features":[207]},{"name":"WBEM_E_TYPE_MISMATCH","features":[207]},{"name":"WBEM_E_UNEXPECTED","features":[207]},{"name":"WBEM_E_UNINTERPRETABLE_PROVIDER_QUERY","features":[207]},{"name":"WBEM_E_UNKNOWN_OBJECT_TYPE","features":[207]},{"name":"WBEM_E_UNKNOWN_PACKET_TYPE","features":[207]},{"name":"WBEM_E_UNPARSABLE_QUERY","features":[207]},{"name":"WBEM_E_UNSUPPORTED_CLASS_UPDATE","features":[207]},{"name":"WBEM_E_UNSUPPORTED_LOCALE","features":[207]},{"name":"WBEM_E_UNSUPPORTED_PARAMETER","features":[207]},{"name":"WBEM_E_UNSUPPORTED_PUT_EXTENSION","features":[207]},{"name":"WBEM_E_UPDATE_OVERRIDE_NOT_ALLOWED","features":[207]},{"name":"WBEM_E_UPDATE_PROPAGATED_METHOD","features":[207]},{"name":"WBEM_E_UPDATE_TYPE_MISMATCH","features":[207]},{"name":"WBEM_E_VALUE_OUT_OF_RANGE","features":[207]},{"name":"WBEM_E_VETO_DELETE","features":[207]},{"name":"WBEM_E_VETO_PUT","features":[207]},{"name":"WBEM_FLAG_ADVISORY","features":[207]},{"name":"WBEM_FLAG_ALLOW_READ","features":[207]},{"name":"WBEM_FLAG_ALWAYS","features":[207]},{"name":"WBEM_FLAG_AUTORECOVER","features":[207]},{"name":"WBEM_FLAG_BACKUP_RESTORE_DEFAULT","features":[207]},{"name":"WBEM_FLAG_BACKUP_RESTORE_FORCE_SHUTDOWN","features":[207]},{"name":"WBEM_FLAG_BATCH_IF_NEEDED","features":[207]},{"name":"WBEM_FLAG_BIDIRECTIONAL","features":[207]},{"name":"WBEM_FLAG_CHECK_ONLY","features":[207]},{"name":"WBEM_FLAG_CLASS_LOCAL_AND_OVERRIDES","features":[207]},{"name":"WBEM_FLAG_CLASS_OVERRIDES_ONLY","features":[207]},{"name":"WBEM_FLAG_CONNECT_PROVIDERS","features":[207]},{"name":"WBEM_FLAG_CONNECT_REPOSITORY_ONLY","features":[207]},{"name":"WBEM_FLAG_CONNECT_USE_MAX_WAIT","features":[207]},{"name":"WBEM_FLAG_CONSOLE_PRINT","features":[207]},{"name":"WBEM_FLAG_CREATE_ONLY","features":[207]},{"name":"WBEM_FLAG_CREATE_OR_UPDATE","features":[207]},{"name":"WBEM_FLAG_DEEP","features":[207]},{"name":"WBEM_FLAG_DIRECT_READ","features":[207]},{"name":"WBEM_FLAG_DONT_ADD_TO_LIST","features":[207]},{"name":"WBEM_FLAG_DONT_SEND_STATUS","features":[207]},{"name":"WBEM_FLAG_ENSURE_LOCATABLE","features":[207]},{"name":"WBEM_FLAG_EXCLUDE_OBJECT_QUALIFIERS","features":[207]},{"name":"WBEM_FLAG_EXCLUDE_PROPERTY_QUALIFIERS","features":[207]},{"name":"WBEM_FLAG_FORWARD_ONLY","features":[207]},{"name":"WBEM_FLAG_IGNORE_CASE","features":[207]},{"name":"WBEM_FLAG_IGNORE_CLASS","features":[207]},{"name":"WBEM_FLAG_IGNORE_DEFAULT_VALUES","features":[207]},{"name":"WBEM_FLAG_IGNORE_FLAVOR","features":[207]},{"name":"WBEM_FLAG_IGNORE_OBJECT_SOURCE","features":[207]},{"name":"WBEM_FLAG_IGNORE_QUALIFIERS","features":[207]},{"name":"WBEM_FLAG_INPROC_LOGIN","features":[207]},{"name":"WBEM_FLAG_KEYS_ONLY","features":[207]},{"name":"WBEM_FLAG_LOCAL_LOGIN","features":[207]},{"name":"WBEM_FLAG_LOCAL_ONLY","features":[207]},{"name":"WBEM_FLAG_LONG_NAME","features":[207]},{"name":"WBEM_FLAG_MUST_BATCH","features":[207]},{"name":"WBEM_FLAG_MUST_NOT_BATCH","features":[207]},{"name":"WBEM_FLAG_NONSYSTEM_ONLY","features":[207]},{"name":"WBEM_FLAG_NO_ERROR_OBJECT","features":[207]},{"name":"WBEM_FLAG_NO_FLAVORS","features":[207]},{"name":"WBEM_FLAG_ONLY_IF_FALSE","features":[207]},{"name":"WBEM_FLAG_ONLY_IF_IDENTICAL","features":[207]},{"name":"WBEM_FLAG_ONLY_IF_TRUE","features":[207]},{"name":"WBEM_FLAG_OWNER_UPDATE","features":[207]},{"name":"WBEM_FLAG_PROPAGATED_ONLY","features":[207]},{"name":"WBEM_FLAG_PROTOTYPE","features":[207]},{"name":"WBEM_FLAG_REFRESH_AUTO_RECONNECT","features":[207]},{"name":"WBEM_FLAG_REFRESH_NO_AUTO_RECONNECT","features":[207]},{"name":"WBEM_FLAG_REFS_ONLY","features":[207]},{"name":"WBEM_FLAG_REMOTE_LOGIN","features":[207]},{"name":"WBEM_FLAG_RETURN_ERROR_OBJECT","features":[207]},{"name":"WBEM_FLAG_RETURN_IMMEDIATELY","features":[207]},{"name":"WBEM_FLAG_RETURN_WBEM_COMPLETE","features":[207]},{"name":"WBEM_FLAG_SEND_ONLY_SELECTED","features":[207]},{"name":"WBEM_FLAG_SEND_STATUS","features":[207]},{"name":"WBEM_FLAG_SHALLOW","features":[207]},{"name":"WBEM_FLAG_SHORT_NAME","features":[207]},{"name":"WBEM_FLAG_SPLIT_FILES","features":[207]},{"name":"WBEM_FLAG_STORE_FILE","features":[207]},{"name":"WBEM_FLAG_STRONG_VALIDATION","features":[207]},{"name":"WBEM_FLAG_SYSTEM_ONLY","features":[207]},{"name":"WBEM_FLAG_UNSECAPP_CHECK_ACCESS","features":[207]},{"name":"WBEM_FLAG_UNSECAPP_DEFAULT_CHECK_ACCESS","features":[207]},{"name":"WBEM_FLAG_UNSECAPP_DONT_CHECK_ACCESS","features":[207]},{"name":"WBEM_FLAG_UPDATE_COMPATIBLE","features":[207]},{"name":"WBEM_FLAG_UPDATE_FORCE_MODE","features":[207]},{"name":"WBEM_FLAG_UPDATE_ONLY","features":[207]},{"name":"WBEM_FLAG_UPDATE_SAFE_MODE","features":[207]},{"name":"WBEM_FLAG_USE_AMENDED_QUALIFIERS","features":[207]},{"name":"WBEM_FLAG_USE_MULTIPLE_CHALLENGES","features":[207]},{"name":"WBEM_FLAG_WMI_CHECK","features":[207]},{"name":"WBEM_FLAVOR_AMENDED","features":[207]},{"name":"WBEM_FLAVOR_DONT_PROPAGATE","features":[207]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_DERIVED_CLASS","features":[207]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_INSTANCE","features":[207]},{"name":"WBEM_FLAVOR_MASK_AMENDED","features":[207]},{"name":"WBEM_FLAVOR_MASK_ORIGIN","features":[207]},{"name":"WBEM_FLAVOR_MASK_PERMISSIONS","features":[207]},{"name":"WBEM_FLAVOR_MASK_PROPAGATION","features":[207]},{"name":"WBEM_FLAVOR_NOT_AMENDED","features":[207]},{"name":"WBEM_FLAVOR_NOT_OVERRIDABLE","features":[207]},{"name":"WBEM_FLAVOR_ORIGIN_LOCAL","features":[207]},{"name":"WBEM_FLAVOR_ORIGIN_PROPAGATED","features":[207]},{"name":"WBEM_FLAVOR_ORIGIN_SYSTEM","features":[207]},{"name":"WBEM_FLAVOR_OVERRIDABLE","features":[207]},{"name":"WBEM_FLAVOR_TYPE","features":[207]},{"name":"WBEM_FULL_WRITE_REP","features":[207]},{"name":"WBEM_GENERIC_FLAG_TYPE","features":[207]},{"name":"WBEM_GENUS_CLASS","features":[207]},{"name":"WBEM_GENUS_INSTANCE","features":[207]},{"name":"WBEM_GENUS_TYPE","features":[207]},{"name":"WBEM_GET_KEY_FLAGS","features":[207]},{"name":"WBEM_GET_TEXT_FLAGS","features":[207]},{"name":"WBEM_INFINITE","features":[207]},{"name":"WBEM_INFORMATION_FLAG_TYPE","features":[207]},{"name":"WBEM_LIMITATION_FLAG_TYPE","features":[207]},{"name":"WBEM_LIMITS","features":[207]},{"name":"WBEM_LOCKING_FLAG_TYPE","features":[207]},{"name":"WBEM_LOGIN_TYPE","features":[207]},{"name":"WBEM_MASK_CLASS_CONDITION","features":[207]},{"name":"WBEM_MASK_CONDITION_ORIGIN","features":[207]},{"name":"WBEM_MASK_PRIMARY_CONDITION","features":[207]},{"name":"WBEM_MASK_RESERVED_FLAGS","features":[207]},{"name":"WBEM_MASK_UPDATE_MODE","features":[207]},{"name":"WBEM_MAX_IDENTIFIER","features":[207]},{"name":"WBEM_MAX_OBJECT_NESTING","features":[207]},{"name":"WBEM_MAX_PATH","features":[207]},{"name":"WBEM_MAX_QUERY","features":[207]},{"name":"WBEM_MAX_USER_PROPERTIES","features":[207]},{"name":"WBEM_METHOD_EXECUTE","features":[207]},{"name":"WBEM_NO_ERROR","features":[207]},{"name":"WBEM_NO_WAIT","features":[207]},{"name":"WBEM_PARTIAL_WRITE_REP","features":[207]},{"name":"WBEM_PATH_CREATE_FLAG","features":[207]},{"name":"WBEM_PATH_STATUS_FLAG","features":[207]},{"name":"WBEM_PROVIDER_FLAGS","features":[207]},{"name":"WBEM_PROVIDER_REQUIREMENTS_TYPE","features":[207]},{"name":"WBEM_QUERY_FLAG_TYPE","features":[207]},{"name":"WBEM_REFRESHER_FLAGS","features":[207]},{"name":"WBEM_REMOTE_ACCESS","features":[207]},{"name":"WBEM_REQUIREMENTS_RECHECK_SUBSCRIPTIONS","features":[207]},{"name":"WBEM_REQUIREMENTS_START_POSTFILTER","features":[207]},{"name":"WBEM_REQUIREMENTS_STOP_POSTFILTER","features":[207]},{"name":"WBEM_RETURN_IMMEDIATELY","features":[207]},{"name":"WBEM_RETURN_WHEN_COMPLETE","features":[207]},{"name":"WBEM_RIGHT_PUBLISH","features":[207]},{"name":"WBEM_RIGHT_SUBSCRIBE","features":[207]},{"name":"WBEM_SECURITY_FLAGS","features":[207]},{"name":"WBEM_SHUTDOWN_FLAGS","features":[207]},{"name":"WBEM_SHUTDOWN_OS","features":[207]},{"name":"WBEM_SHUTDOWN_UNLOAD_COMPONENT","features":[207]},{"name":"WBEM_SHUTDOWN_WMI","features":[207]},{"name":"WBEM_STATUS_COMPLETE","features":[207]},{"name":"WBEM_STATUS_LOGGING_INFORMATION","features":[207]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_ESS","features":[207]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_HOST","features":[207]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_PROVIDER","features":[207]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_REPOSITORY","features":[207]},{"name":"WBEM_STATUS_PROGRESS","features":[207]},{"name":"WBEM_STATUS_REQUIREMENTS","features":[207]},{"name":"WBEM_STATUS_TYPE","features":[207]},{"name":"WBEM_S_ACCESS_DENIED","features":[207]},{"name":"WBEM_S_ALREADY_EXISTS","features":[207]},{"name":"WBEM_S_DIFFERENT","features":[207]},{"name":"WBEM_S_DUPLICATE_OBJECTS","features":[207]},{"name":"WBEM_S_FALSE","features":[207]},{"name":"WBEM_S_INDIRECTLY_UPDATED","features":[207]},{"name":"WBEM_S_INITIALIZED","features":[207]},{"name":"WBEM_S_LIMITED_SERVICE","features":[207]},{"name":"WBEM_S_NO_ERROR","features":[207]},{"name":"WBEM_S_NO_MORE_DATA","features":[207]},{"name":"WBEM_S_OPERATION_CANCELLED","features":[207]},{"name":"WBEM_S_PARTIAL_RESULTS","features":[207]},{"name":"WBEM_S_PENDING","features":[207]},{"name":"WBEM_S_RESET_TO_DEFAULT","features":[207]},{"name":"WBEM_S_SAME","features":[207]},{"name":"WBEM_S_SOURCE_NOT_AVAILABLE","features":[207]},{"name":"WBEM_S_SUBJECT_TO_SDS","features":[207]},{"name":"WBEM_S_TIMEDOUT","features":[207]},{"name":"WBEM_TEXT_FLAG_TYPE","features":[207]},{"name":"WBEM_UNSECAPP_FLAG_TYPE","features":[207]},{"name":"WBEM_WRITE_PROVIDER","features":[207]},{"name":"WMIExtension","features":[207]},{"name":"WMIQ_ANALYSIS_ASSOC_QUERY","features":[207]},{"name":"WMIQ_ANALYSIS_PROP_ANALYSIS_MATRIX","features":[207]},{"name":"WMIQ_ANALYSIS_QUERY_TEXT","features":[207]},{"name":"WMIQ_ANALYSIS_RESERVED","features":[207]},{"name":"WMIQ_ANALYSIS_RPN_SEQUENCE","features":[207]},{"name":"WMIQ_ANALYSIS_TYPE","features":[207]},{"name":"WMIQ_ASSOCQ_ASSOCCLASS","features":[207]},{"name":"WMIQ_ASSOCQ_ASSOCIATORS","features":[207]},{"name":"WMIQ_ASSOCQ_CLASSDEFSONLY","features":[207]},{"name":"WMIQ_ASSOCQ_CLASSREFSONLY","features":[207]},{"name":"WMIQ_ASSOCQ_FLAGS","features":[207]},{"name":"WMIQ_ASSOCQ_KEYSONLY","features":[207]},{"name":"WMIQ_ASSOCQ_REFERENCES","features":[207]},{"name":"WMIQ_ASSOCQ_REQUIREDASSOCQUALIFIER","features":[207]},{"name":"WMIQ_ASSOCQ_REQUIREDQUALIFIER","features":[207]},{"name":"WMIQ_ASSOCQ_RESULTCLASS","features":[207]},{"name":"WMIQ_ASSOCQ_RESULTROLE","features":[207]},{"name":"WMIQ_ASSOCQ_ROLE","features":[207]},{"name":"WMIQ_ASSOCQ_SCHEMAONLY","features":[207]},{"name":"WMIQ_LANGUAGE_FEATURES","features":[207]},{"name":"WMIQ_LF10_COMPEX_SUBEXPRESSIONS","features":[207]},{"name":"WMIQ_LF11_ALIASING","features":[207]},{"name":"WMIQ_LF12_GROUP_BY_HAVING","features":[207]},{"name":"WMIQ_LF13_WMI_WITHIN","features":[207]},{"name":"WMIQ_LF14_SQL_WRITE_OPERATIONS","features":[207]},{"name":"WMIQ_LF15_GO","features":[207]},{"name":"WMIQ_LF16_SINGLE_LEVEL_TRANSACTIONS","features":[207]},{"name":"WMIQ_LF17_QUALIFIED_NAMES","features":[207]},{"name":"WMIQ_LF18_ASSOCIATONS","features":[207]},{"name":"WMIQ_LF19_SYSTEM_PROPERTIES","features":[207]},{"name":"WMIQ_LF1_BASIC_SELECT","features":[207]},{"name":"WMIQ_LF20_EXTENDED_SYSTEM_PROPERTIES","features":[207]},{"name":"WMIQ_LF21_SQL89_JOINS","features":[207]},{"name":"WMIQ_LF22_SQL92_JOINS","features":[207]},{"name":"WMIQ_LF23_SUBSELECTS","features":[207]},{"name":"WMIQ_LF24_UMI_EXTENSIONS","features":[207]},{"name":"WMIQ_LF25_DATEPART","features":[207]},{"name":"WMIQ_LF26_LIKE","features":[207]},{"name":"WMIQ_LF27_CIM_TEMPORAL_CONSTRUCTS","features":[207]},{"name":"WMIQ_LF28_STANDARD_AGGREGATES","features":[207]},{"name":"WMIQ_LF29_MULTI_LEVEL_ORDER_BY","features":[207]},{"name":"WMIQ_LF2_CLASS_NAME_IN_QUERY","features":[207]},{"name":"WMIQ_LF30_WMI_PRAGMAS","features":[207]},{"name":"WMIQ_LF31_QUALIFIER_TESTS","features":[207]},{"name":"WMIQ_LF32_SP_EXECUTE","features":[207]},{"name":"WMIQ_LF33_ARRAY_ACCESS","features":[207]},{"name":"WMIQ_LF34_UNION","features":[207]},{"name":"WMIQ_LF35_COMPLEX_SELECT_TARGET","features":[207]},{"name":"WMIQ_LF36_REFERENCE_TESTS","features":[207]},{"name":"WMIQ_LF37_SELECT_INTO","features":[207]},{"name":"WMIQ_LF38_BASIC_DATETIME_TESTS","features":[207]},{"name":"WMIQ_LF39_COUNT_COLUMN","features":[207]},{"name":"WMIQ_LF3_STRING_CASE_FUNCTIONS","features":[207]},{"name":"WMIQ_LF40_BETWEEN","features":[207]},{"name":"WMIQ_LF4_PROP_TO_PROP_TESTS","features":[207]},{"name":"WMIQ_LF5_COUNT_STAR","features":[207]},{"name":"WMIQ_LF6_ORDER_BY","features":[207]},{"name":"WMIQ_LF7_DISTINCT","features":[207]},{"name":"WMIQ_LF8_ISA","features":[207]},{"name":"WMIQ_LF9_THIS","features":[207]},{"name":"WMIQ_LF_LAST","features":[207]},{"name":"WMIQ_RPNF_ARRAY_ACCESS_USED","features":[207]},{"name":"WMIQ_RPNF_COUNT_STAR","features":[207]},{"name":"WMIQ_RPNF_EQUALITY_TESTS_ONLY","features":[207]},{"name":"WMIQ_RPNF_FEATURE","features":[207]},{"name":"WMIQ_RPNF_FEATURE_SELECT_STAR","features":[207]},{"name":"WMIQ_RPNF_GROUP_BY_HAVING","features":[207]},{"name":"WMIQ_RPNF_ISA_USED","features":[207]},{"name":"WMIQ_RPNF_ORDER_BY","features":[207]},{"name":"WMIQ_RPNF_PROJECTION","features":[207]},{"name":"WMIQ_RPNF_PROP_TO_PROP_TESTS","features":[207]},{"name":"WMIQ_RPNF_QUALIFIED_NAMES_USED","features":[207]},{"name":"WMIQ_RPNF_QUERY_IS_CONJUNCTIVE","features":[207]},{"name":"WMIQ_RPNF_QUERY_IS_DISJUNCTIVE","features":[207]},{"name":"WMIQ_RPNF_SYSPROP_CLASS_USED","features":[207]},{"name":"WMIQ_RPNF_WHERE_CLAUSE_PRESENT","features":[207]},{"name":"WMIQ_RPN_CONST","features":[207]},{"name":"WMIQ_RPN_CONST2","features":[207]},{"name":"WMIQ_RPN_FROM_CLASS_LIST","features":[207]},{"name":"WMIQ_RPN_FROM_MULTIPLE","features":[207]},{"name":"WMIQ_RPN_FROM_PATH","features":[207]},{"name":"WMIQ_RPN_FROM_UNARY","features":[207]},{"name":"WMIQ_RPN_GET_EXPR_SHAPE","features":[207]},{"name":"WMIQ_RPN_GET_LEFT_FUNCTION","features":[207]},{"name":"WMIQ_RPN_GET_RELOP","features":[207]},{"name":"WMIQ_RPN_GET_RIGHT_FUNCTION","features":[207]},{"name":"WMIQ_RPN_GET_TOKEN_TYPE","features":[207]},{"name":"WMIQ_RPN_LEFT_FUNCTION","features":[207]},{"name":"WMIQ_RPN_LEFT_PROPERTY_NAME","features":[207]},{"name":"WMIQ_RPN_NEXT_TOKEN","features":[207]},{"name":"WMIQ_RPN_OP_EQ","features":[207]},{"name":"WMIQ_RPN_OP_GE","features":[207]},{"name":"WMIQ_RPN_OP_GT","features":[207]},{"name":"WMIQ_RPN_OP_ISA","features":[207]},{"name":"WMIQ_RPN_OP_ISNOTA","features":[207]},{"name":"WMIQ_RPN_OP_ISNOTNULL","features":[207]},{"name":"WMIQ_RPN_OP_ISNULL","features":[207]},{"name":"WMIQ_RPN_OP_LE","features":[207]},{"name":"WMIQ_RPN_OP_LIKE","features":[207]},{"name":"WMIQ_RPN_OP_LT","features":[207]},{"name":"WMIQ_RPN_OP_NE","features":[207]},{"name":"WMIQ_RPN_OP_UNDEFINED","features":[207]},{"name":"WMIQ_RPN_RELOP","features":[207]},{"name":"WMIQ_RPN_RIGHT_FUNCTION","features":[207]},{"name":"WMIQ_RPN_RIGHT_PROPERTY_NAME","features":[207]},{"name":"WMIQ_RPN_TOKEN_AND","features":[207]},{"name":"WMIQ_RPN_TOKEN_EXPRESSION","features":[207]},{"name":"WMIQ_RPN_TOKEN_FLAGS","features":[207]},{"name":"WMIQ_RPN_TOKEN_NOT","features":[207]},{"name":"WMIQ_RPN_TOKEN_OR","features":[207]},{"name":"WMI_OBJ_TEXT","features":[207]},{"name":"WMI_OBJ_TEXT_CIM_DTD_2_0","features":[207]},{"name":"WMI_OBJ_TEXT_LAST","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_DTD_2_0","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT1","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT10","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT2","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT3","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT4","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT5","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT6","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT7","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT8","features":[207]},{"name":"WMI_OBJ_TEXT_WMI_EXT9","features":[207]},{"name":"WbemAdministrativeLocator","features":[207]},{"name":"WbemAuthenticatedLocator","features":[207]},{"name":"WbemAuthenticationLevelEnum","features":[207]},{"name":"WbemBackupRestore","features":[207]},{"name":"WbemChangeFlagEnum","features":[207]},{"name":"WbemCimtypeEnum","features":[207]},{"name":"WbemClassObject","features":[207]},{"name":"WbemComparisonFlagEnum","features":[207]},{"name":"WbemConnectOptionsEnum","features":[207]},{"name":"WbemContext","features":[207]},{"name":"WbemDCOMTransport","features":[207]},{"name":"WbemDecoupledBasicEventProvider","features":[207]},{"name":"WbemDecoupledRegistrar","features":[207]},{"name":"WbemDefPath","features":[207]},{"name":"WbemErrorEnum","features":[207]},{"name":"WbemFlagEnum","features":[207]},{"name":"WbemImpersonationLevelEnum","features":[207]},{"name":"WbemLevel1Login","features":[207]},{"name":"WbemLocalAddrRes","features":[207]},{"name":"WbemLocator","features":[207]},{"name":"WbemObjectTextFormatEnum","features":[207]},{"name":"WbemObjectTextSrc","features":[207]},{"name":"WbemPrivilegeEnum","features":[207]},{"name":"WbemQuery","features":[207]},{"name":"WbemQueryFlagEnum","features":[207]},{"name":"WbemRefresher","features":[207]},{"name":"WbemStatusCodeText","features":[207]},{"name":"WbemTextFlagEnum","features":[207]},{"name":"WbemTimeout","features":[207]},{"name":"WbemUnauthenticatedLocator","features":[207]},{"name":"WbemUninitializedClassObject","features":[207]},{"name":"wbemAuthenticationLevelCall","features":[207]},{"name":"wbemAuthenticationLevelConnect","features":[207]},{"name":"wbemAuthenticationLevelDefault","features":[207]},{"name":"wbemAuthenticationLevelNone","features":[207]},{"name":"wbemAuthenticationLevelPkt","features":[207]},{"name":"wbemAuthenticationLevelPktIntegrity","features":[207]},{"name":"wbemAuthenticationLevelPktPrivacy","features":[207]},{"name":"wbemChangeFlagAdvisory","features":[207]},{"name":"wbemChangeFlagCreateOnly","features":[207]},{"name":"wbemChangeFlagCreateOrUpdate","features":[207]},{"name":"wbemChangeFlagStrongValidation","features":[207]},{"name":"wbemChangeFlagUpdateCompatible","features":[207]},{"name":"wbemChangeFlagUpdateForceMode","features":[207]},{"name":"wbemChangeFlagUpdateOnly","features":[207]},{"name":"wbemChangeFlagUpdateSafeMode","features":[207]},{"name":"wbemCimtypeBoolean","features":[207]},{"name":"wbemCimtypeChar16","features":[207]},{"name":"wbemCimtypeDatetime","features":[207]},{"name":"wbemCimtypeObject","features":[207]},{"name":"wbemCimtypeReal32","features":[207]},{"name":"wbemCimtypeReal64","features":[207]},{"name":"wbemCimtypeReference","features":[207]},{"name":"wbemCimtypeSint16","features":[207]},{"name":"wbemCimtypeSint32","features":[207]},{"name":"wbemCimtypeSint64","features":[207]},{"name":"wbemCimtypeSint8","features":[207]},{"name":"wbemCimtypeString","features":[207]},{"name":"wbemCimtypeUint16","features":[207]},{"name":"wbemCimtypeUint32","features":[207]},{"name":"wbemCimtypeUint64","features":[207]},{"name":"wbemCimtypeUint8","features":[207]},{"name":"wbemComparisonFlagIgnoreCase","features":[207]},{"name":"wbemComparisonFlagIgnoreClass","features":[207]},{"name":"wbemComparisonFlagIgnoreDefaultValues","features":[207]},{"name":"wbemComparisonFlagIgnoreFlavor","features":[207]},{"name":"wbemComparisonFlagIgnoreObjectSource","features":[207]},{"name":"wbemComparisonFlagIgnoreQualifiers","features":[207]},{"name":"wbemComparisonFlagIncludeAll","features":[207]},{"name":"wbemConnectFlagUseMaxWait","features":[207]},{"name":"wbemErrAccessDenied","features":[207]},{"name":"wbemErrAggregatingByObject","features":[207]},{"name":"wbemErrAlreadyExists","features":[207]},{"name":"wbemErrAmbiguousOperation","features":[207]},{"name":"wbemErrAmendedObject","features":[207]},{"name":"wbemErrBackupRestoreWinmgmtRunning","features":[207]},{"name":"wbemErrBufferTooSmall","features":[207]},{"name":"wbemErrCallCancelled","features":[207]},{"name":"wbemErrCannotBeAbstract","features":[207]},{"name":"wbemErrCannotBeKey","features":[207]},{"name":"wbemErrCannotBeSingleton","features":[207]},{"name":"wbemErrCannotChangeIndexInheritance","features":[207]},{"name":"wbemErrCannotChangeKeyInheritance","features":[207]},{"name":"wbemErrCircularReference","features":[207]},{"name":"wbemErrClassHasChildren","features":[207]},{"name":"wbemErrClassHasInstances","features":[207]},{"name":"wbemErrClassNameTooWide","features":[207]},{"name":"wbemErrClientTooSlow","features":[207]},{"name":"wbemErrConnectionFailed","features":[207]},{"name":"wbemErrCriticalError","features":[207]},{"name":"wbemErrDatabaseVerMismatch","features":[207]},{"name":"wbemErrEncryptedConnectionRequired","features":[207]},{"name":"wbemErrFailed","features":[207]},{"name":"wbemErrFatalTransportError","features":[207]},{"name":"wbemErrForcedRollback","features":[207]},{"name":"wbemErrHandleOutOfDate","features":[207]},{"name":"wbemErrIllegalNull","features":[207]},{"name":"wbemErrIllegalOperation","features":[207]},{"name":"wbemErrIncompleteClass","features":[207]},{"name":"wbemErrInitializationFailure","features":[207]},{"name":"wbemErrInvalidAssociation","features":[207]},{"name":"wbemErrInvalidCimType","features":[207]},{"name":"wbemErrInvalidClass","features":[207]},{"name":"wbemErrInvalidContext","features":[207]},{"name":"wbemErrInvalidDuplicateParameter","features":[207]},{"name":"wbemErrInvalidFlavor","features":[207]},{"name":"wbemErrInvalidHandleRequest","features":[207]},{"name":"wbemErrInvalidLocale","features":[207]},{"name":"wbemErrInvalidMethod","features":[207]},{"name":"wbemErrInvalidMethodParameters","features":[207]},{"name":"wbemErrInvalidNamespace","features":[207]},{"name":"wbemErrInvalidObject","features":[207]},{"name":"wbemErrInvalidObjectPath","features":[207]},{"name":"wbemErrInvalidOperation","features":[207]},{"name":"wbemErrInvalidOperator","features":[207]},{"name":"wbemErrInvalidParameter","features":[207]},{"name":"wbemErrInvalidParameterId","features":[207]},{"name":"wbemErrInvalidProperty","features":[207]},{"name":"wbemErrInvalidPropertyType","features":[207]},{"name":"wbemErrInvalidProviderRegistration","features":[207]},{"name":"wbemErrInvalidQualifier","features":[207]},{"name":"wbemErrInvalidQualifierType","features":[207]},{"name":"wbemErrInvalidQuery","features":[207]},{"name":"wbemErrInvalidQueryType","features":[207]},{"name":"wbemErrInvalidStream","features":[207]},{"name":"wbemErrInvalidSuperclass","features":[207]},{"name":"wbemErrInvalidSyntax","features":[207]},{"name":"wbemErrLocalCredentials","features":[207]},{"name":"wbemErrMarshalInvalidSignature","features":[207]},{"name":"wbemErrMarshalVersionMismatch","features":[207]},{"name":"wbemErrMethodDisabled","features":[207]},{"name":"wbemErrMethodNameTooWide","features":[207]},{"name":"wbemErrMethodNotImplemented","features":[207]},{"name":"wbemErrMissingAggregationList","features":[207]},{"name":"wbemErrMissingGroupWithin","features":[207]},{"name":"wbemErrMissingParameter","features":[207]},{"name":"wbemErrNoSchema","features":[207]},{"name":"wbemErrNonConsecutiveParameterIds","features":[207]},{"name":"wbemErrNondecoratedObject","features":[207]},{"name":"wbemErrNotAvailable","features":[207]},{"name":"wbemErrNotEventClass","features":[207]},{"name":"wbemErrNotFound","features":[207]},{"name":"wbemErrNotSupported","features":[207]},{"name":"wbemErrNullSecurityDescriptor","features":[207]},{"name":"wbemErrOutOfDiskSpace","features":[207]},{"name":"wbemErrOutOfMemory","features":[207]},{"name":"wbemErrOverrideNotAllowed","features":[207]},{"name":"wbemErrParameterIdOnRetval","features":[207]},{"name":"wbemErrPrivilegeNotHeld","features":[207]},{"name":"wbemErrPropagatedMethod","features":[207]},{"name":"wbemErrPropagatedProperty","features":[207]},{"name":"wbemErrPropagatedQualifier","features":[207]},{"name":"wbemErrPropertyNameTooWide","features":[207]},{"name":"wbemErrPropertyNotAnObject","features":[207]},{"name":"wbemErrProviderAlreadyRegistered","features":[207]},{"name":"wbemErrProviderFailure","features":[207]},{"name":"wbemErrProviderLoadFailure","features":[207]},{"name":"wbemErrProviderNotCapable","features":[207]},{"name":"wbemErrProviderNotFound","features":[207]},{"name":"wbemErrProviderNotRegistered","features":[207]},{"name":"wbemErrProviderSuspended","features":[207]},{"name":"wbemErrQualifierNameTooWide","features":[207]},{"name":"wbemErrQueryNotImplemented","features":[207]},{"name":"wbemErrQueueOverflow","features":[207]},{"name":"wbemErrQuotaViolation","features":[207]},{"name":"wbemErrReadOnly","features":[207]},{"name":"wbemErrRefresherBusy","features":[207]},{"name":"wbemErrRegistrationTooBroad","features":[207]},{"name":"wbemErrRegistrationTooPrecise","features":[207]},{"name":"wbemErrRerunCommand","features":[207]},{"name":"wbemErrResetToDefault","features":[207]},{"name":"wbemErrServerTooBusy","features":[207]},{"name":"wbemErrShuttingDown","features":[207]},{"name":"wbemErrSynchronizationRequired","features":[207]},{"name":"wbemErrSystemProperty","features":[207]},{"name":"wbemErrTimedout","features":[207]},{"name":"wbemErrTimeout","features":[207]},{"name":"wbemErrTooManyProperties","features":[207]},{"name":"wbemErrTooMuchData","features":[207]},{"name":"wbemErrTransactionConflict","features":[207]},{"name":"wbemErrTransportFailure","features":[207]},{"name":"wbemErrTypeMismatch","features":[207]},{"name":"wbemErrUnexpected","features":[207]},{"name":"wbemErrUninterpretableProviderQuery","features":[207]},{"name":"wbemErrUnknownObjectType","features":[207]},{"name":"wbemErrUnknownPacketType","features":[207]},{"name":"wbemErrUnparsableQuery","features":[207]},{"name":"wbemErrUnsupportedClassUpdate","features":[207]},{"name":"wbemErrUnsupportedLocale","features":[207]},{"name":"wbemErrUnsupportedParameter","features":[207]},{"name":"wbemErrUnsupportedPutExtension","features":[207]},{"name":"wbemErrUpdateOverrideNotAllowed","features":[207]},{"name":"wbemErrUpdatePropagatedMethod","features":[207]},{"name":"wbemErrUpdateTypeMismatch","features":[207]},{"name":"wbemErrValueOutOfRange","features":[207]},{"name":"wbemErrVetoDelete","features":[207]},{"name":"wbemErrVetoPut","features":[207]},{"name":"wbemFlagBidirectional","features":[207]},{"name":"wbemFlagDirectRead","features":[207]},{"name":"wbemFlagDontSendStatus","features":[207]},{"name":"wbemFlagEnsureLocatable","features":[207]},{"name":"wbemFlagForwardOnly","features":[207]},{"name":"wbemFlagGetDefault","features":[207]},{"name":"wbemFlagNoErrorObject","features":[207]},{"name":"wbemFlagReturnErrorObject","features":[207]},{"name":"wbemFlagReturnImmediately","features":[207]},{"name":"wbemFlagReturnWhenComplete","features":[207]},{"name":"wbemFlagSendOnlySelected","features":[207]},{"name":"wbemFlagSendStatus","features":[207]},{"name":"wbemFlagSpawnInstance","features":[207]},{"name":"wbemFlagUseAmendedQualifiers","features":[207]},{"name":"wbemFlagUseCurrentTime","features":[207]},{"name":"wbemImpersonationLevelAnonymous","features":[207]},{"name":"wbemImpersonationLevelDelegate","features":[207]},{"name":"wbemImpersonationLevelIdentify","features":[207]},{"name":"wbemImpersonationLevelImpersonate","features":[207]},{"name":"wbemNoErr","features":[207]},{"name":"wbemObjectTextFormatCIMDTD20","features":[207]},{"name":"wbemObjectTextFormatWMIDTD20","features":[207]},{"name":"wbemPrivilegeAudit","features":[207]},{"name":"wbemPrivilegeBackup","features":[207]},{"name":"wbemPrivilegeChangeNotify","features":[207]},{"name":"wbemPrivilegeCreatePagefile","features":[207]},{"name":"wbemPrivilegeCreatePermanent","features":[207]},{"name":"wbemPrivilegeCreateToken","features":[207]},{"name":"wbemPrivilegeDebug","features":[207]},{"name":"wbemPrivilegeEnableDelegation","features":[207]},{"name":"wbemPrivilegeIncreaseBasePriority","features":[207]},{"name":"wbemPrivilegeIncreaseQuota","features":[207]},{"name":"wbemPrivilegeLoadDriver","features":[207]},{"name":"wbemPrivilegeLockMemory","features":[207]},{"name":"wbemPrivilegeMachineAccount","features":[207]},{"name":"wbemPrivilegeManageVolume","features":[207]},{"name":"wbemPrivilegePrimaryToken","features":[207]},{"name":"wbemPrivilegeProfileSingleProcess","features":[207]},{"name":"wbemPrivilegeRemoteShutdown","features":[207]},{"name":"wbemPrivilegeRestore","features":[207]},{"name":"wbemPrivilegeSecurity","features":[207]},{"name":"wbemPrivilegeShutdown","features":[207]},{"name":"wbemPrivilegeSyncAgent","features":[207]},{"name":"wbemPrivilegeSystemEnvironment","features":[207]},{"name":"wbemPrivilegeSystemProfile","features":[207]},{"name":"wbemPrivilegeSystemtime","features":[207]},{"name":"wbemPrivilegeTakeOwnership","features":[207]},{"name":"wbemPrivilegeTcb","features":[207]},{"name":"wbemPrivilegeUndock","features":[207]},{"name":"wbemQueryFlagDeep","features":[207]},{"name":"wbemQueryFlagPrototype","features":[207]},{"name":"wbemQueryFlagShallow","features":[207]},{"name":"wbemTextFlagNoFlavors","features":[207]},{"name":"wbemTimeoutInfinite","features":[207]}],"647":[{"name":"ACCESSTIMEOUT","features":[208]},{"name":"ACC_UTILITY_STATE_FLAGS","features":[208]},{"name":"ANNO_CONTAINER","features":[208]},{"name":"ANNO_THIS","features":[208]},{"name":"ANRUS_ON_SCREEN_KEYBOARD_ACTIVE","features":[208]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE","features":[208]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE_NODUCK","features":[208]},{"name":"ANRUS_PRIORITY_AUDIO_DYNAMIC_DUCK","features":[208]},{"name":"ANRUS_TOUCH_MODIFICATION_ACTIVE","features":[208]},{"name":"AccNotifyTouchInteraction","features":[1,208]},{"name":"AccSetRunningUtilityState","features":[1,208]},{"name":"AcceleratorKey_Property_GUID","features":[208]},{"name":"AccessKey_Property_GUID","features":[208]},{"name":"AccessibleChildren","features":[1,41,42,208]},{"name":"AccessibleObjectFromEvent","features":[1,41,42,208]},{"name":"AccessibleObjectFromPoint","features":[1,41,42,208]},{"name":"AccessibleObjectFromWindow","features":[1,208]},{"name":"ActiveEnd","features":[208]},{"name":"ActiveEnd_End","features":[208]},{"name":"ActiveEnd_None","features":[208]},{"name":"ActiveEnd_Start","features":[208]},{"name":"ActiveTextPositionChanged_Event_GUID","features":[208]},{"name":"AnimationStyle","features":[208]},{"name":"AnimationStyle_BlinkingBackground","features":[208]},{"name":"AnimationStyle_LasVegasLights","features":[208]},{"name":"AnimationStyle_MarchingBlackAnts","features":[208]},{"name":"AnimationStyle_MarchingRedAnts","features":[208]},{"name":"AnimationStyle_None","features":[208]},{"name":"AnimationStyle_Other","features":[208]},{"name":"AnimationStyle_Shimmer","features":[208]},{"name":"AnimationStyle_SparkleText","features":[208]},{"name":"AnnoScope","features":[208]},{"name":"AnnotationObjects_Property_GUID","features":[208]},{"name":"AnnotationType_AdvancedProofingIssue","features":[208]},{"name":"AnnotationType_Author","features":[208]},{"name":"AnnotationType_CircularReferenceError","features":[208]},{"name":"AnnotationType_Comment","features":[208]},{"name":"AnnotationType_ConflictingChange","features":[208]},{"name":"AnnotationType_DataValidationError","features":[208]},{"name":"AnnotationType_DeletionChange","features":[208]},{"name":"AnnotationType_EditingLockedChange","features":[208]},{"name":"AnnotationType_Endnote","features":[208]},{"name":"AnnotationType_ExternalChange","features":[208]},{"name":"AnnotationType_Footer","features":[208]},{"name":"AnnotationType_Footnote","features":[208]},{"name":"AnnotationType_FormatChange","features":[208]},{"name":"AnnotationType_FormulaError","features":[208]},{"name":"AnnotationType_GrammarError","features":[208]},{"name":"AnnotationType_Header","features":[208]},{"name":"AnnotationType_Highlighted","features":[208]},{"name":"AnnotationType_InsertionChange","features":[208]},{"name":"AnnotationType_Mathematics","features":[208]},{"name":"AnnotationType_MoveChange","features":[208]},{"name":"AnnotationType_Sensitive","features":[208]},{"name":"AnnotationType_SpellingError","features":[208]},{"name":"AnnotationType_TrackChanges","features":[208]},{"name":"AnnotationType_Unknown","features":[208]},{"name":"AnnotationType_UnsyncedChange","features":[208]},{"name":"AnnotationTypes_Property_GUID","features":[208]},{"name":"Annotation_AdvancedProofingIssue_GUID","features":[208]},{"name":"Annotation_AnnotationTypeId_Property_GUID","features":[208]},{"name":"Annotation_AnnotationTypeName_Property_GUID","features":[208]},{"name":"Annotation_Author_GUID","features":[208]},{"name":"Annotation_Author_Property_GUID","features":[208]},{"name":"Annotation_CircularReferenceError_GUID","features":[208]},{"name":"Annotation_Comment_GUID","features":[208]},{"name":"Annotation_ConflictingChange_GUID","features":[208]},{"name":"Annotation_Custom_GUID","features":[208]},{"name":"Annotation_DataValidationError_GUID","features":[208]},{"name":"Annotation_DateTime_Property_GUID","features":[208]},{"name":"Annotation_DeletionChange_GUID","features":[208]},{"name":"Annotation_EditingLockedChange_GUID","features":[208]},{"name":"Annotation_Endnote_GUID","features":[208]},{"name":"Annotation_ExternalChange_GUID","features":[208]},{"name":"Annotation_Footer_GUID","features":[208]},{"name":"Annotation_Footnote_GUID","features":[208]},{"name":"Annotation_FormatChange_GUID","features":[208]},{"name":"Annotation_FormulaError_GUID","features":[208]},{"name":"Annotation_GrammarError_GUID","features":[208]},{"name":"Annotation_Header_GUID","features":[208]},{"name":"Annotation_Highlighted_GUID","features":[208]},{"name":"Annotation_InsertionChange_GUID","features":[208]},{"name":"Annotation_Mathematics_GUID","features":[208]},{"name":"Annotation_MoveChange_GUID","features":[208]},{"name":"Annotation_Pattern_GUID","features":[208]},{"name":"Annotation_Sensitive_GUID","features":[208]},{"name":"Annotation_SpellingError_GUID","features":[208]},{"name":"Annotation_Target_Property_GUID","features":[208]},{"name":"Annotation_TrackChanges_GUID","features":[208]},{"name":"Annotation_UnsyncedChange_GUID","features":[208]},{"name":"AppBar_Control_GUID","features":[208]},{"name":"AriaProperties_Property_GUID","features":[208]},{"name":"AriaRole_Property_GUID","features":[208]},{"name":"Assertive","features":[208]},{"name":"AsyncContentLoadedState","features":[208]},{"name":"AsyncContentLoadedState_Beginning","features":[208]},{"name":"AsyncContentLoadedState_Completed","features":[208]},{"name":"AsyncContentLoadedState_Progress","features":[208]},{"name":"AsyncContentLoaded_Event_GUID","features":[208]},{"name":"AutomationElementMode","features":[208]},{"name":"AutomationElementMode_Full","features":[208]},{"name":"AutomationElementMode_None","features":[208]},{"name":"AutomationFocusChanged_Event_GUID","features":[208]},{"name":"AutomationId_Property_GUID","features":[208]},{"name":"AutomationIdentifierType","features":[208]},{"name":"AutomationIdentifierType_Annotation","features":[208]},{"name":"AutomationIdentifierType_Changes","features":[208]},{"name":"AutomationIdentifierType_ControlType","features":[208]},{"name":"AutomationIdentifierType_Event","features":[208]},{"name":"AutomationIdentifierType_LandmarkType","features":[208]},{"name":"AutomationIdentifierType_Pattern","features":[208]},{"name":"AutomationIdentifierType_Property","features":[208]},{"name":"AutomationIdentifierType_Style","features":[208]},{"name":"AutomationIdentifierType_TextAttribute","features":[208]},{"name":"AutomationPropertyChanged_Event_GUID","features":[208]},{"name":"BoundingRectangle_Property_GUID","features":[208]},{"name":"BulletStyle","features":[208]},{"name":"BulletStyle_DashBullet","features":[208]},{"name":"BulletStyle_FilledRoundBullet","features":[208]},{"name":"BulletStyle_FilledSquareBullet","features":[208]},{"name":"BulletStyle_HollowRoundBullet","features":[208]},{"name":"BulletStyle_HollowSquareBullet","features":[208]},{"name":"BulletStyle_None","features":[208]},{"name":"BulletStyle_Other","features":[208]},{"name":"Button_Control_GUID","features":[208]},{"name":"CAccPropServices","features":[208]},{"name":"CLSID_AccPropServices","features":[208]},{"name":"CUIAutomation","features":[208]},{"name":"CUIAutomation8","features":[208]},{"name":"CUIAutomationRegistrar","features":[208]},{"name":"Calendar_Control_GUID","features":[208]},{"name":"CapStyle","features":[208]},{"name":"CapStyle_AllCap","features":[208]},{"name":"CapStyle_AllPetiteCaps","features":[208]},{"name":"CapStyle_None","features":[208]},{"name":"CapStyle_Other","features":[208]},{"name":"CapStyle_PetiteCaps","features":[208]},{"name":"CapStyle_SmallCap","features":[208]},{"name":"CapStyle_Titling","features":[208]},{"name":"CapStyle_Unicase","features":[208]},{"name":"CaretBidiMode","features":[208]},{"name":"CaretBidiMode_LTR","features":[208]},{"name":"CaretBidiMode_RTL","features":[208]},{"name":"CaretPosition","features":[208]},{"name":"CaretPosition_BeginningOfLine","features":[208]},{"name":"CaretPosition_EndOfLine","features":[208]},{"name":"CaretPosition_Unknown","features":[208]},{"name":"CenterPoint_Property_GUID","features":[208]},{"name":"Changes_Event_GUID","features":[208]},{"name":"Changes_Summary_GUID","features":[208]},{"name":"CheckBox_Control_GUID","features":[208]},{"name":"ClassName_Property_GUID","features":[208]},{"name":"ClickablePoint_Property_GUID","features":[208]},{"name":"CoalesceEventsOptions","features":[208]},{"name":"CoalesceEventsOptions_Disabled","features":[208]},{"name":"CoalesceEventsOptions_Enabled","features":[208]},{"name":"ComboBox_Control_GUID","features":[208]},{"name":"ConditionType","features":[208]},{"name":"ConditionType_And","features":[208]},{"name":"ConditionType_False","features":[208]},{"name":"ConditionType_Not","features":[208]},{"name":"ConditionType_Or","features":[208]},{"name":"ConditionType_Property","features":[208]},{"name":"ConditionType_True","features":[208]},{"name":"ConnectionRecoveryBehaviorOptions","features":[208]},{"name":"ConnectionRecoveryBehaviorOptions_Disabled","features":[208]},{"name":"ConnectionRecoveryBehaviorOptions_Enabled","features":[208]},{"name":"ControlType_Property_GUID","features":[208]},{"name":"ControllerFor_Property_GUID","features":[208]},{"name":"CreateStdAccessibleObject","features":[1,208]},{"name":"CreateStdAccessibleProxyA","features":[1,208]},{"name":"CreateStdAccessibleProxyW","features":[1,208]},{"name":"Culture_Property_GUID","features":[208]},{"name":"CustomNavigation_Pattern_GUID","features":[208]},{"name":"Custom_Control_GUID","features":[208]},{"name":"DISPID_ACC_CHILD","features":[208]},{"name":"DISPID_ACC_CHILDCOUNT","features":[208]},{"name":"DISPID_ACC_DEFAULTACTION","features":[208]},{"name":"DISPID_ACC_DESCRIPTION","features":[208]},{"name":"DISPID_ACC_DODEFAULTACTION","features":[208]},{"name":"DISPID_ACC_FOCUS","features":[208]},{"name":"DISPID_ACC_HELP","features":[208]},{"name":"DISPID_ACC_HELPTOPIC","features":[208]},{"name":"DISPID_ACC_HITTEST","features":[208]},{"name":"DISPID_ACC_KEYBOARDSHORTCUT","features":[208]},{"name":"DISPID_ACC_LOCATION","features":[208]},{"name":"DISPID_ACC_NAME","features":[208]},{"name":"DISPID_ACC_NAVIGATE","features":[208]},{"name":"DISPID_ACC_PARENT","features":[208]},{"name":"DISPID_ACC_ROLE","features":[208]},{"name":"DISPID_ACC_SELECT","features":[208]},{"name":"DISPID_ACC_SELECTION","features":[208]},{"name":"DISPID_ACC_STATE","features":[208]},{"name":"DISPID_ACC_VALUE","features":[208]},{"name":"DataGrid_Control_GUID","features":[208]},{"name":"DataItem_Control_GUID","features":[208]},{"name":"DescribedBy_Property_GUID","features":[208]},{"name":"DockPattern_SetDockPosition","features":[208]},{"name":"DockPosition","features":[208]},{"name":"DockPosition_Bottom","features":[208]},{"name":"DockPosition_Fill","features":[208]},{"name":"DockPosition_Left","features":[208]},{"name":"DockPosition_None","features":[208]},{"name":"DockPosition_Right","features":[208]},{"name":"DockPosition_Top","features":[208]},{"name":"Dock_DockPosition_Property_GUID","features":[208]},{"name":"Dock_Pattern_GUID","features":[208]},{"name":"Document_Control_GUID","features":[208]},{"name":"Drag_DragCancel_Event_GUID","features":[208]},{"name":"Drag_DragComplete_Event_GUID","features":[208]},{"name":"Drag_DragStart_Event_GUID","features":[208]},{"name":"Drag_DropEffect_Property_GUID","features":[208]},{"name":"Drag_DropEffects_Property_GUID","features":[208]},{"name":"Drag_GrabbedItems_Property_GUID","features":[208]},{"name":"Drag_IsGrabbed_Property_GUID","features":[208]},{"name":"Drag_Pattern_GUID","features":[208]},{"name":"DropTarget_DragEnter_Event_GUID","features":[208]},{"name":"DropTarget_DragLeave_Event_GUID","features":[208]},{"name":"DropTarget_DropTargetEffect_Property_GUID","features":[208]},{"name":"DropTarget_DropTargetEffects_Property_GUID","features":[208]},{"name":"DropTarget_Dropped_Event_GUID","features":[208]},{"name":"DropTarget_Pattern_GUID","features":[208]},{"name":"Edit_Control_GUID","features":[208]},{"name":"EventArgsType","features":[208]},{"name":"EventArgsType_ActiveTextPositionChanged","features":[208]},{"name":"EventArgsType_AsyncContentLoaded","features":[208]},{"name":"EventArgsType_Changes","features":[208]},{"name":"EventArgsType_Notification","features":[208]},{"name":"EventArgsType_PropertyChanged","features":[208]},{"name":"EventArgsType_Simple","features":[208]},{"name":"EventArgsType_StructureChanged","features":[208]},{"name":"EventArgsType_StructuredMarkup","features":[208]},{"name":"EventArgsType_TextEditTextChanged","features":[208]},{"name":"EventArgsType_WindowClosed","features":[208]},{"name":"ExpandCollapsePattern_Collapse","features":[208]},{"name":"ExpandCollapsePattern_Expand","features":[208]},{"name":"ExpandCollapseState","features":[208]},{"name":"ExpandCollapseState_Collapsed","features":[208]},{"name":"ExpandCollapseState_Expanded","features":[208]},{"name":"ExpandCollapseState_LeafNode","features":[208]},{"name":"ExpandCollapseState_PartiallyExpanded","features":[208]},{"name":"ExpandCollapse_ExpandCollapseState_Property_GUID","features":[208]},{"name":"ExpandCollapse_Pattern_GUID","features":[208]},{"name":"ExtendedProperty","features":[208]},{"name":"FILTERKEYS","features":[208]},{"name":"FillColor_Property_GUID","features":[208]},{"name":"FillType","features":[208]},{"name":"FillType_Color","features":[208]},{"name":"FillType_Gradient","features":[208]},{"name":"FillType_None","features":[208]},{"name":"FillType_Pattern","features":[208]},{"name":"FillType_Picture","features":[208]},{"name":"FillType_Property_GUID","features":[208]},{"name":"FlowDirections","features":[208]},{"name":"FlowDirections_BottomToTop","features":[208]},{"name":"FlowDirections_Default","features":[208]},{"name":"FlowDirections_RightToLeft","features":[208]},{"name":"FlowDirections_Vertical","features":[208]},{"name":"FlowsFrom_Property_GUID","features":[208]},{"name":"FlowsTo_Property_GUID","features":[208]},{"name":"FrameworkId_Property_GUID","features":[208]},{"name":"FullDescription_Property_GUID","features":[208]},{"name":"GetOleaccVersionInfo","features":[208]},{"name":"GetRoleTextA","features":[208]},{"name":"GetRoleTextW","features":[208]},{"name":"GetStateTextA","features":[208]},{"name":"GetStateTextW","features":[208]},{"name":"GridItem_ColumnSpan_Property_GUID","features":[208]},{"name":"GridItem_Column_Property_GUID","features":[208]},{"name":"GridItem_Parent_Property_GUID","features":[208]},{"name":"GridItem_Pattern_GUID","features":[208]},{"name":"GridItem_RowSpan_Property_GUID","features":[208]},{"name":"GridItem_Row_Property_GUID","features":[208]},{"name":"GridPattern_GetItem","features":[208]},{"name":"Grid_ColumnCount_Property_GUID","features":[208]},{"name":"Grid_Pattern_GUID","features":[208]},{"name":"Grid_RowCount_Property_GUID","features":[208]},{"name":"Group_Control_GUID","features":[208]},{"name":"HCF_AVAILABLE","features":[208]},{"name":"HCF_CONFIRMHOTKEY","features":[208]},{"name":"HCF_HIGHCONTRASTON","features":[208]},{"name":"HCF_HOTKEYACTIVE","features":[208]},{"name":"HCF_HOTKEYAVAILABLE","features":[208]},{"name":"HCF_HOTKEYSOUND","features":[208]},{"name":"HCF_INDICATOR","features":[208]},{"name":"HCF_OPTION_NOTHEMECHANGE","features":[208]},{"name":"HIGHCONTRASTA","features":[208]},{"name":"HIGHCONTRASTW","features":[208]},{"name":"HIGHCONTRASTW_FLAGS","features":[208]},{"name":"HUIAEVENT","features":[208]},{"name":"HUIANODE","features":[208]},{"name":"HUIAPATTERNOBJECT","features":[208]},{"name":"HUIATEXTRANGE","features":[208]},{"name":"HWINEVENTHOOK","features":[208]},{"name":"HasKeyboardFocus_Property_GUID","features":[208]},{"name":"HeaderItem_Control_GUID","features":[208]},{"name":"Header_Control_GUID","features":[208]},{"name":"HeadingLevel1","features":[208]},{"name":"HeadingLevel2","features":[208]},{"name":"HeadingLevel3","features":[208]},{"name":"HeadingLevel4","features":[208]},{"name":"HeadingLevel5","features":[208]},{"name":"HeadingLevel6","features":[208]},{"name":"HeadingLevel7","features":[208]},{"name":"HeadingLevel8","features":[208]},{"name":"HeadingLevel9","features":[208]},{"name":"HeadingLevel_None","features":[208]},{"name":"HeadingLevel_Property_GUID","features":[208]},{"name":"HelpText_Property_GUID","features":[208]},{"name":"HorizontalTextAlignment","features":[208]},{"name":"HorizontalTextAlignment_Centered","features":[208]},{"name":"HorizontalTextAlignment_Justified","features":[208]},{"name":"HorizontalTextAlignment_Left","features":[208]},{"name":"HorizontalTextAlignment_Right","features":[208]},{"name":"HostedFragmentRootsInvalidated_Event_GUID","features":[208]},{"name":"Hyperlink_Control_GUID","features":[208]},{"name":"IAccIdentity","features":[208]},{"name":"IAccPropServer","features":[208]},{"name":"IAccPropServices","features":[208]},{"name":"IAccessible","features":[208]},{"name":"IAccessibleEx","features":[208]},{"name":"IAccessibleHandler","features":[208]},{"name":"IAccessibleHostingElementProviders","features":[208]},{"name":"IAccessibleWindowlessSite","features":[208]},{"name":"IAnnotationProvider","features":[208]},{"name":"ICustomNavigationProvider","features":[208]},{"name":"IDockProvider","features":[208]},{"name":"IDragProvider","features":[208]},{"name":"IDropTargetProvider","features":[208]},{"name":"IExpandCollapseProvider","features":[208]},{"name":"IGridItemProvider","features":[208]},{"name":"IGridProvider","features":[208]},{"name":"IIS_ControlAccessible","features":[208]},{"name":"IIS_IsOleaccProxy","features":[208]},{"name":"IInvokeProvider","features":[208]},{"name":"IItemContainerProvider","features":[208]},{"name":"ILegacyIAccessibleProvider","features":[208]},{"name":"IMultipleViewProvider","features":[208]},{"name":"IObjectModelProvider","features":[208]},{"name":"IProxyProviderWinEventHandler","features":[208]},{"name":"IProxyProviderWinEventSink","features":[208]},{"name":"IRangeValueProvider","features":[208]},{"name":"IRawElementProviderAdviseEvents","features":[208]},{"name":"IRawElementProviderFragment","features":[208]},{"name":"IRawElementProviderFragmentRoot","features":[208]},{"name":"IRawElementProviderHostingAccessibles","features":[208]},{"name":"IRawElementProviderHwndOverride","features":[208]},{"name":"IRawElementProviderSimple","features":[208]},{"name":"IRawElementProviderSimple2","features":[208]},{"name":"IRawElementProviderSimple3","features":[208]},{"name":"IRawElementProviderWindowlessSite","features":[208]},{"name":"IRichEditUiaInformation","features":[208]},{"name":"IRicheditWindowlessAccessibility","features":[208]},{"name":"IScrollItemProvider","features":[208]},{"name":"IScrollProvider","features":[208]},{"name":"ISelectionItemProvider","features":[208]},{"name":"ISelectionProvider","features":[208]},{"name":"ISelectionProvider2","features":[208]},{"name":"ISpreadsheetItemProvider","features":[208]},{"name":"ISpreadsheetProvider","features":[208]},{"name":"IStylesProvider","features":[208]},{"name":"ISynchronizedInputProvider","features":[208]},{"name":"ITableItemProvider","features":[208]},{"name":"ITableProvider","features":[208]},{"name":"ITextChildProvider","features":[208]},{"name":"ITextEditProvider","features":[208]},{"name":"ITextProvider","features":[208]},{"name":"ITextProvider2","features":[208]},{"name":"ITextRangeProvider","features":[208]},{"name":"ITextRangeProvider2","features":[208]},{"name":"IToggleProvider","features":[208]},{"name":"ITransformProvider","features":[208]},{"name":"ITransformProvider2","features":[208]},{"name":"IUIAutomation","features":[208]},{"name":"IUIAutomation2","features":[208]},{"name":"IUIAutomation3","features":[208]},{"name":"IUIAutomation4","features":[208]},{"name":"IUIAutomation5","features":[208]},{"name":"IUIAutomation6","features":[208]},{"name":"IUIAutomationActiveTextPositionChangedEventHandler","features":[208]},{"name":"IUIAutomationAndCondition","features":[208]},{"name":"IUIAutomationAnnotationPattern","features":[208]},{"name":"IUIAutomationBoolCondition","features":[208]},{"name":"IUIAutomationCacheRequest","features":[208]},{"name":"IUIAutomationChangesEventHandler","features":[208]},{"name":"IUIAutomationCondition","features":[208]},{"name":"IUIAutomationCustomNavigationPattern","features":[208]},{"name":"IUIAutomationDockPattern","features":[208]},{"name":"IUIAutomationDragPattern","features":[208]},{"name":"IUIAutomationDropTargetPattern","features":[208]},{"name":"IUIAutomationElement","features":[208]},{"name":"IUIAutomationElement2","features":[208]},{"name":"IUIAutomationElement3","features":[208]},{"name":"IUIAutomationElement4","features":[208]},{"name":"IUIAutomationElement5","features":[208]},{"name":"IUIAutomationElement6","features":[208]},{"name":"IUIAutomationElement7","features":[208]},{"name":"IUIAutomationElement8","features":[208]},{"name":"IUIAutomationElement9","features":[208]},{"name":"IUIAutomationElementArray","features":[208]},{"name":"IUIAutomationEventHandler","features":[208]},{"name":"IUIAutomationEventHandlerGroup","features":[208]},{"name":"IUIAutomationExpandCollapsePattern","features":[208]},{"name":"IUIAutomationFocusChangedEventHandler","features":[208]},{"name":"IUIAutomationGridItemPattern","features":[208]},{"name":"IUIAutomationGridPattern","features":[208]},{"name":"IUIAutomationInvokePattern","features":[208]},{"name":"IUIAutomationItemContainerPattern","features":[208]},{"name":"IUIAutomationLegacyIAccessiblePattern","features":[208]},{"name":"IUIAutomationMultipleViewPattern","features":[208]},{"name":"IUIAutomationNotCondition","features":[208]},{"name":"IUIAutomationNotificationEventHandler","features":[208]},{"name":"IUIAutomationObjectModelPattern","features":[208]},{"name":"IUIAutomationOrCondition","features":[208]},{"name":"IUIAutomationPatternHandler","features":[208]},{"name":"IUIAutomationPatternInstance","features":[208]},{"name":"IUIAutomationPropertyChangedEventHandler","features":[208]},{"name":"IUIAutomationPropertyCondition","features":[208]},{"name":"IUIAutomationProxyFactory","features":[208]},{"name":"IUIAutomationProxyFactoryEntry","features":[208]},{"name":"IUIAutomationProxyFactoryMapping","features":[208]},{"name":"IUIAutomationRangeValuePattern","features":[208]},{"name":"IUIAutomationRegistrar","features":[208]},{"name":"IUIAutomationScrollItemPattern","features":[208]},{"name":"IUIAutomationScrollPattern","features":[208]},{"name":"IUIAutomationSelectionItemPattern","features":[208]},{"name":"IUIAutomationSelectionPattern","features":[208]},{"name":"IUIAutomationSelectionPattern2","features":[208]},{"name":"IUIAutomationSpreadsheetItemPattern","features":[208]},{"name":"IUIAutomationSpreadsheetPattern","features":[208]},{"name":"IUIAutomationStructureChangedEventHandler","features":[208]},{"name":"IUIAutomationStylesPattern","features":[208]},{"name":"IUIAutomationSynchronizedInputPattern","features":[208]},{"name":"IUIAutomationTableItemPattern","features":[208]},{"name":"IUIAutomationTablePattern","features":[208]},{"name":"IUIAutomationTextChildPattern","features":[208]},{"name":"IUIAutomationTextEditPattern","features":[208]},{"name":"IUIAutomationTextEditTextChangedEventHandler","features":[208]},{"name":"IUIAutomationTextPattern","features":[208]},{"name":"IUIAutomationTextPattern2","features":[208]},{"name":"IUIAutomationTextRange","features":[208]},{"name":"IUIAutomationTextRange2","features":[208]},{"name":"IUIAutomationTextRange3","features":[208]},{"name":"IUIAutomationTextRangeArray","features":[208]},{"name":"IUIAutomationTogglePattern","features":[208]},{"name":"IUIAutomationTransformPattern","features":[208]},{"name":"IUIAutomationTransformPattern2","features":[208]},{"name":"IUIAutomationTreeWalker","features":[208]},{"name":"IUIAutomationValuePattern","features":[208]},{"name":"IUIAutomationVirtualizedItemPattern","features":[208]},{"name":"IUIAutomationWindowPattern","features":[208]},{"name":"IValueProvider","features":[208]},{"name":"IVirtualizedItemProvider","features":[208]},{"name":"IWindowProvider","features":[208]},{"name":"Image_Control_GUID","features":[208]},{"name":"InputDiscarded_Event_GUID","features":[208]},{"name":"InputReachedOtherElement_Event_GUID","features":[208]},{"name":"InputReachedTarget_Event_GUID","features":[208]},{"name":"InvokePattern_Invoke","features":[208]},{"name":"Invoke_Invoked_Event_GUID","features":[208]},{"name":"Invoke_Pattern_GUID","features":[208]},{"name":"IsAnnotationPatternAvailable_Property_GUID","features":[208]},{"name":"IsContentElement_Property_GUID","features":[208]},{"name":"IsControlElement_Property_GUID","features":[208]},{"name":"IsCustomNavigationPatternAvailable_Property_GUID","features":[208]},{"name":"IsDataValidForForm_Property_GUID","features":[208]},{"name":"IsDialog_Property_GUID","features":[208]},{"name":"IsDockPatternAvailable_Property_GUID","features":[208]},{"name":"IsDragPatternAvailable_Property_GUID","features":[208]},{"name":"IsDropTargetPatternAvailable_Property_GUID","features":[208]},{"name":"IsEnabled_Property_GUID","features":[208]},{"name":"IsExpandCollapsePatternAvailable_Property_GUID","features":[208]},{"name":"IsGridItemPatternAvailable_Property_GUID","features":[208]},{"name":"IsGridPatternAvailable_Property_GUID","features":[208]},{"name":"IsInvokePatternAvailable_Property_GUID","features":[208]},{"name":"IsItemContainerPatternAvailable_Property_GUID","features":[208]},{"name":"IsKeyboardFocusable_Property_GUID","features":[208]},{"name":"IsLegacyIAccessiblePatternAvailable_Property_GUID","features":[208]},{"name":"IsMultipleViewPatternAvailable_Property_GUID","features":[208]},{"name":"IsObjectModelPatternAvailable_Property_GUID","features":[208]},{"name":"IsOffscreen_Property_GUID","features":[208]},{"name":"IsPassword_Property_GUID","features":[208]},{"name":"IsPeripheral_Property_GUID","features":[208]},{"name":"IsRangeValuePatternAvailable_Property_GUID","features":[208]},{"name":"IsRequiredForForm_Property_GUID","features":[208]},{"name":"IsScrollItemPatternAvailable_Property_GUID","features":[208]},{"name":"IsScrollPatternAvailable_Property_GUID","features":[208]},{"name":"IsSelectionItemPatternAvailable_Property_GUID","features":[208]},{"name":"IsSelectionPattern2Available_Property_GUID","features":[208]},{"name":"IsSelectionPatternAvailable_Property_GUID","features":[208]},{"name":"IsSpreadsheetItemPatternAvailable_Property_GUID","features":[208]},{"name":"IsSpreadsheetPatternAvailable_Property_GUID","features":[208]},{"name":"IsStructuredMarkupPatternAvailable_Property_GUID","features":[208]},{"name":"IsStylesPatternAvailable_Property_GUID","features":[208]},{"name":"IsSynchronizedInputPatternAvailable_Property_GUID","features":[208]},{"name":"IsTableItemPatternAvailable_Property_GUID","features":[208]},{"name":"IsTablePatternAvailable_Property_GUID","features":[208]},{"name":"IsTextChildPatternAvailable_Property_GUID","features":[208]},{"name":"IsTextEditPatternAvailable_Property_GUID","features":[208]},{"name":"IsTextPattern2Available_Property_GUID","features":[208]},{"name":"IsTextPatternAvailable_Property_GUID","features":[208]},{"name":"IsTogglePatternAvailable_Property_GUID","features":[208]},{"name":"IsTransformPattern2Available_Property_GUID","features":[208]},{"name":"IsTransformPatternAvailable_Property_GUID","features":[208]},{"name":"IsValuePatternAvailable_Property_GUID","features":[208]},{"name":"IsVirtualizedItemPatternAvailable_Property_GUID","features":[208]},{"name":"IsWinEventHookInstalled","features":[1,208]},{"name":"IsWindowPatternAvailable_Property_GUID","features":[208]},{"name":"ItemContainerPattern_FindItemByProperty","features":[1,41,42,208]},{"name":"ItemContainer_Pattern_GUID","features":[208]},{"name":"ItemStatus_Property_GUID","features":[208]},{"name":"ItemType_Property_GUID","features":[208]},{"name":"LIBID_Accessibility","features":[208]},{"name":"LPFNACCESSIBLECHILDREN","features":[1,41,42,208]},{"name":"LPFNACCESSIBLEOBJECTFROMPOINT","features":[1,41,42,208]},{"name":"LPFNACCESSIBLEOBJECTFROMWINDOW","features":[1,208]},{"name":"LPFNCREATESTDACCESSIBLEOBJECT","features":[1,208]},{"name":"LPFNLRESULTFROMOBJECT","features":[1,208]},{"name":"LPFNOBJECTFROMLRESULT","features":[1,208]},{"name":"LabeledBy_Property_GUID","features":[208]},{"name":"LandmarkType_Property_GUID","features":[208]},{"name":"LayoutInvalidated_Event_GUID","features":[208]},{"name":"LegacyIAccessiblePattern_DoDefaultAction","features":[208]},{"name":"LegacyIAccessiblePattern_GetIAccessible","features":[208]},{"name":"LegacyIAccessiblePattern_Select","features":[208]},{"name":"LegacyIAccessiblePattern_SetValue","features":[208]},{"name":"LegacyIAccessible_ChildId_Property_GUID","features":[208]},{"name":"LegacyIAccessible_DefaultAction_Property_GUID","features":[208]},{"name":"LegacyIAccessible_Description_Property_GUID","features":[208]},{"name":"LegacyIAccessible_Help_Property_GUID","features":[208]},{"name":"LegacyIAccessible_KeyboardShortcut_Property_GUID","features":[208]},{"name":"LegacyIAccessible_Name_Property_GUID","features":[208]},{"name":"LegacyIAccessible_Pattern_GUID","features":[208]},{"name":"LegacyIAccessible_Role_Property_GUID","features":[208]},{"name":"LegacyIAccessible_Selection_Property_GUID","features":[208]},{"name":"LegacyIAccessible_State_Property_GUID","features":[208]},{"name":"LegacyIAccessible_Value_Property_GUID","features":[208]},{"name":"Level_Property_GUID","features":[208]},{"name":"ListItem_Control_GUID","features":[208]},{"name":"List_Control_GUID","features":[208]},{"name":"LiveRegionChanged_Event_GUID","features":[208]},{"name":"LiveSetting","features":[208]},{"name":"LiveSetting_Property_GUID","features":[208]},{"name":"LocalizedControlType_Property_GUID","features":[208]},{"name":"LocalizedLandmarkType_Property_GUID","features":[208]},{"name":"LresultFromObject","features":[1,208]},{"name":"MOUSEKEYS","features":[208]},{"name":"MSAAMENUINFO","features":[208]},{"name":"MSAA_MENU_SIG","features":[208]},{"name":"MenuBar_Control_GUID","features":[208]},{"name":"MenuClosed_Event_GUID","features":[208]},{"name":"MenuItem_Control_GUID","features":[208]},{"name":"MenuModeEnd_Event_GUID","features":[208]},{"name":"MenuModeStart_Event_GUID","features":[208]},{"name":"MenuOpened_Event_GUID","features":[208]},{"name":"Menu_Control_GUID","features":[208]},{"name":"MultipleViewPattern_GetViewName","features":[208]},{"name":"MultipleViewPattern_SetCurrentView","features":[208]},{"name":"MultipleView_CurrentView_Property_GUID","features":[208]},{"name":"MultipleView_Pattern_GUID","features":[208]},{"name":"MultipleView_SupportedViews_Property_GUID","features":[208]},{"name":"NAVDIR_DOWN","features":[208]},{"name":"NAVDIR_FIRSTCHILD","features":[208]},{"name":"NAVDIR_LASTCHILD","features":[208]},{"name":"NAVDIR_LEFT","features":[208]},{"name":"NAVDIR_MAX","features":[208]},{"name":"NAVDIR_MIN","features":[208]},{"name":"NAVDIR_NEXT","features":[208]},{"name":"NAVDIR_PREVIOUS","features":[208]},{"name":"NAVDIR_RIGHT","features":[208]},{"name":"NAVDIR_UP","features":[208]},{"name":"Name_Property_GUID","features":[208]},{"name":"NavigateDirection","features":[208]},{"name":"NavigateDirection_FirstChild","features":[208]},{"name":"NavigateDirection_LastChild","features":[208]},{"name":"NavigateDirection_NextSibling","features":[208]},{"name":"NavigateDirection_Parent","features":[208]},{"name":"NavigateDirection_PreviousSibling","features":[208]},{"name":"NewNativeWindowHandle_Property_GUID","features":[208]},{"name":"NormalizeState","features":[208]},{"name":"NormalizeState_Custom","features":[208]},{"name":"NormalizeState_None","features":[208]},{"name":"NormalizeState_View","features":[208]},{"name":"NotificationKind","features":[208]},{"name":"NotificationKind_ActionAborted","features":[208]},{"name":"NotificationKind_ActionCompleted","features":[208]},{"name":"NotificationKind_ItemAdded","features":[208]},{"name":"NotificationKind_ItemRemoved","features":[208]},{"name":"NotificationKind_Other","features":[208]},{"name":"NotificationProcessing","features":[208]},{"name":"NotificationProcessing_All","features":[208]},{"name":"NotificationProcessing_CurrentThenMostRecent","features":[208]},{"name":"NotificationProcessing_ImportantAll","features":[208]},{"name":"NotificationProcessing_ImportantMostRecent","features":[208]},{"name":"NotificationProcessing_MostRecent","features":[208]},{"name":"Notification_Event_GUID","features":[208]},{"name":"NotifyWinEvent","features":[1,208]},{"name":"ObjectFromLresult","features":[1,208]},{"name":"ObjectModel_Pattern_GUID","features":[208]},{"name":"Off","features":[208]},{"name":"OptimizeForVisualContent_Property_GUID","features":[208]},{"name":"OrientationType","features":[208]},{"name":"OrientationType_Horizontal","features":[208]},{"name":"OrientationType_None","features":[208]},{"name":"OrientationType_Vertical","features":[208]},{"name":"Orientation_Property_GUID","features":[208]},{"name":"OutlineColor_Property_GUID","features":[208]},{"name":"OutlineStyles","features":[208]},{"name":"OutlineStyles_Embossed","features":[208]},{"name":"OutlineStyles_Engraved","features":[208]},{"name":"OutlineStyles_None","features":[208]},{"name":"OutlineStyles_Outline","features":[208]},{"name":"OutlineStyles_Shadow","features":[208]},{"name":"OutlineThickness_Property_GUID","features":[208]},{"name":"PROPID_ACC_DEFAULTACTION","features":[208]},{"name":"PROPID_ACC_DESCRIPTION","features":[208]},{"name":"PROPID_ACC_DESCRIPTIONMAP","features":[208]},{"name":"PROPID_ACC_DODEFAULTACTION","features":[208]},{"name":"PROPID_ACC_FOCUS","features":[208]},{"name":"PROPID_ACC_HELP","features":[208]},{"name":"PROPID_ACC_HELPTOPIC","features":[208]},{"name":"PROPID_ACC_KEYBOARDSHORTCUT","features":[208]},{"name":"PROPID_ACC_NAME","features":[208]},{"name":"PROPID_ACC_NAV_DOWN","features":[208]},{"name":"PROPID_ACC_NAV_FIRSTCHILD","features":[208]},{"name":"PROPID_ACC_NAV_LASTCHILD","features":[208]},{"name":"PROPID_ACC_NAV_LEFT","features":[208]},{"name":"PROPID_ACC_NAV_NEXT","features":[208]},{"name":"PROPID_ACC_NAV_PREV","features":[208]},{"name":"PROPID_ACC_NAV_RIGHT","features":[208]},{"name":"PROPID_ACC_NAV_UP","features":[208]},{"name":"PROPID_ACC_PARENT","features":[208]},{"name":"PROPID_ACC_ROLE","features":[208]},{"name":"PROPID_ACC_ROLEMAP","features":[208]},{"name":"PROPID_ACC_SELECTION","features":[208]},{"name":"PROPID_ACC_STATE","features":[208]},{"name":"PROPID_ACC_STATEMAP","features":[208]},{"name":"PROPID_ACC_VALUE","features":[208]},{"name":"PROPID_ACC_VALUEMAP","features":[208]},{"name":"Pane_Control_GUID","features":[208]},{"name":"Polite","features":[208]},{"name":"PositionInSet_Property_GUID","features":[208]},{"name":"ProcessId_Property_GUID","features":[208]},{"name":"ProgressBar_Control_GUID","features":[208]},{"name":"PropertyConditionFlags","features":[208]},{"name":"PropertyConditionFlags_IgnoreCase","features":[208]},{"name":"PropertyConditionFlags_MatchSubstring","features":[208]},{"name":"PropertyConditionFlags_None","features":[208]},{"name":"ProviderDescription_Property_GUID","features":[208]},{"name":"ProviderOptions","features":[208]},{"name":"ProviderOptions_ClientSideProvider","features":[208]},{"name":"ProviderOptions_HasNativeIAccessible","features":[208]},{"name":"ProviderOptions_NonClientAreaProvider","features":[208]},{"name":"ProviderOptions_OverrideProvider","features":[208]},{"name":"ProviderOptions_ProviderOwnsSetFocus","features":[208]},{"name":"ProviderOptions_RefuseNonClientSupport","features":[208]},{"name":"ProviderOptions_ServerSideProvider","features":[208]},{"name":"ProviderOptions_UseClientCoordinates","features":[208]},{"name":"ProviderOptions_UseComThreading","features":[208]},{"name":"ProviderType","features":[208]},{"name":"ProviderType_BaseHwnd","features":[208]},{"name":"ProviderType_NonClientArea","features":[208]},{"name":"ProviderType_Proxy","features":[208]},{"name":"ROLE_SYSTEM_ALERT","features":[208]},{"name":"ROLE_SYSTEM_ANIMATION","features":[208]},{"name":"ROLE_SYSTEM_APPLICATION","features":[208]},{"name":"ROLE_SYSTEM_BORDER","features":[208]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWN","features":[208]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWNGRID","features":[208]},{"name":"ROLE_SYSTEM_BUTTONMENU","features":[208]},{"name":"ROLE_SYSTEM_CARET","features":[208]},{"name":"ROLE_SYSTEM_CELL","features":[208]},{"name":"ROLE_SYSTEM_CHARACTER","features":[208]},{"name":"ROLE_SYSTEM_CHART","features":[208]},{"name":"ROLE_SYSTEM_CHECKBUTTON","features":[208]},{"name":"ROLE_SYSTEM_CLIENT","features":[208]},{"name":"ROLE_SYSTEM_CLOCK","features":[208]},{"name":"ROLE_SYSTEM_COLUMN","features":[208]},{"name":"ROLE_SYSTEM_COLUMNHEADER","features":[208]},{"name":"ROLE_SYSTEM_COMBOBOX","features":[208]},{"name":"ROLE_SYSTEM_CURSOR","features":[208]},{"name":"ROLE_SYSTEM_DIAGRAM","features":[208]},{"name":"ROLE_SYSTEM_DIAL","features":[208]},{"name":"ROLE_SYSTEM_DIALOG","features":[208]},{"name":"ROLE_SYSTEM_DOCUMENT","features":[208]},{"name":"ROLE_SYSTEM_DROPLIST","features":[208]},{"name":"ROLE_SYSTEM_EQUATION","features":[208]},{"name":"ROLE_SYSTEM_GRAPHIC","features":[208]},{"name":"ROLE_SYSTEM_GRIP","features":[208]},{"name":"ROLE_SYSTEM_GROUPING","features":[208]},{"name":"ROLE_SYSTEM_HELPBALLOON","features":[208]},{"name":"ROLE_SYSTEM_HOTKEYFIELD","features":[208]},{"name":"ROLE_SYSTEM_INDICATOR","features":[208]},{"name":"ROLE_SYSTEM_IPADDRESS","features":[208]},{"name":"ROLE_SYSTEM_LINK","features":[208]},{"name":"ROLE_SYSTEM_LIST","features":[208]},{"name":"ROLE_SYSTEM_LISTITEM","features":[208]},{"name":"ROLE_SYSTEM_MENUBAR","features":[208]},{"name":"ROLE_SYSTEM_MENUITEM","features":[208]},{"name":"ROLE_SYSTEM_MENUPOPUP","features":[208]},{"name":"ROLE_SYSTEM_OUTLINE","features":[208]},{"name":"ROLE_SYSTEM_OUTLINEBUTTON","features":[208]},{"name":"ROLE_SYSTEM_OUTLINEITEM","features":[208]},{"name":"ROLE_SYSTEM_PAGETAB","features":[208]},{"name":"ROLE_SYSTEM_PAGETABLIST","features":[208]},{"name":"ROLE_SYSTEM_PANE","features":[208]},{"name":"ROLE_SYSTEM_PROGRESSBAR","features":[208]},{"name":"ROLE_SYSTEM_PROPERTYPAGE","features":[208]},{"name":"ROLE_SYSTEM_PUSHBUTTON","features":[208]},{"name":"ROLE_SYSTEM_RADIOBUTTON","features":[208]},{"name":"ROLE_SYSTEM_ROW","features":[208]},{"name":"ROLE_SYSTEM_ROWHEADER","features":[208]},{"name":"ROLE_SYSTEM_SCROLLBAR","features":[208]},{"name":"ROLE_SYSTEM_SEPARATOR","features":[208]},{"name":"ROLE_SYSTEM_SLIDER","features":[208]},{"name":"ROLE_SYSTEM_SOUND","features":[208]},{"name":"ROLE_SYSTEM_SPINBUTTON","features":[208]},{"name":"ROLE_SYSTEM_SPLITBUTTON","features":[208]},{"name":"ROLE_SYSTEM_STATICTEXT","features":[208]},{"name":"ROLE_SYSTEM_STATUSBAR","features":[208]},{"name":"ROLE_SYSTEM_TABLE","features":[208]},{"name":"ROLE_SYSTEM_TEXT","features":[208]},{"name":"ROLE_SYSTEM_TITLEBAR","features":[208]},{"name":"ROLE_SYSTEM_TOOLBAR","features":[208]},{"name":"ROLE_SYSTEM_TOOLTIP","features":[208]},{"name":"ROLE_SYSTEM_WHITESPACE","features":[208]},{"name":"ROLE_SYSTEM_WINDOW","features":[208]},{"name":"RadioButton_Control_GUID","features":[208]},{"name":"RangeValuePattern_SetValue","features":[208]},{"name":"RangeValue_IsReadOnly_Property_GUID","features":[208]},{"name":"RangeValue_LargeChange_Property_GUID","features":[208]},{"name":"RangeValue_Maximum_Property_GUID","features":[208]},{"name":"RangeValue_Minimum_Property_GUID","features":[208]},{"name":"RangeValue_Pattern_GUID","features":[208]},{"name":"RangeValue_SmallChange_Property_GUID","features":[208]},{"name":"RangeValue_Value_Property_GUID","features":[208]},{"name":"RegisterPointerInputTarget","features":[1,208,50]},{"name":"RegisterPointerInputTargetEx","features":[1,208,50]},{"name":"Rotation_Property_GUID","features":[208]},{"name":"RowOrColumnMajor","features":[208]},{"name":"RowOrColumnMajor_ColumnMajor","features":[208]},{"name":"RowOrColumnMajor_Indeterminate","features":[208]},{"name":"RowOrColumnMajor_RowMajor","features":[208]},{"name":"RuntimeId_Property_GUID","features":[208]},{"name":"SELFLAG_ADDSELECTION","features":[208]},{"name":"SELFLAG_EXTENDSELECTION","features":[208]},{"name":"SELFLAG_NONE","features":[208]},{"name":"SELFLAG_REMOVESELECTION","features":[208]},{"name":"SELFLAG_TAKEFOCUS","features":[208]},{"name":"SELFLAG_TAKESELECTION","features":[208]},{"name":"SELFLAG_VALID","features":[208]},{"name":"SERIALKEYSA","features":[208]},{"name":"SERIALKEYSW","features":[208]},{"name":"SERIALKEYS_FLAGS","features":[208]},{"name":"SERKF_AVAILABLE","features":[208]},{"name":"SERKF_INDICATOR","features":[208]},{"name":"SERKF_SERIALKEYSON","features":[208]},{"name":"SID_ControlElementProvider","features":[208]},{"name":"SID_IsUIAutomationObject","features":[208]},{"name":"SKF_AUDIBLEFEEDBACK","features":[208]},{"name":"SKF_AVAILABLE","features":[208]},{"name":"SKF_CONFIRMHOTKEY","features":[208]},{"name":"SKF_HOTKEYACTIVE","features":[208]},{"name":"SKF_HOTKEYSOUND","features":[208]},{"name":"SKF_INDICATOR","features":[208]},{"name":"SKF_LALTLATCHED","features":[208]},{"name":"SKF_LALTLOCKED","features":[208]},{"name":"SKF_LCTLLATCHED","features":[208]},{"name":"SKF_LCTLLOCKED","features":[208]},{"name":"SKF_LSHIFTLATCHED","features":[208]},{"name":"SKF_LSHIFTLOCKED","features":[208]},{"name":"SKF_LWINLATCHED","features":[208]},{"name":"SKF_LWINLOCKED","features":[208]},{"name":"SKF_RALTLATCHED","features":[208]},{"name":"SKF_RALTLOCKED","features":[208]},{"name":"SKF_RCTLLATCHED","features":[208]},{"name":"SKF_RCTLLOCKED","features":[208]},{"name":"SKF_RSHIFTLATCHED","features":[208]},{"name":"SKF_RSHIFTLOCKED","features":[208]},{"name":"SKF_RWINLATCHED","features":[208]},{"name":"SKF_RWINLOCKED","features":[208]},{"name":"SKF_STICKYKEYSON","features":[208]},{"name":"SKF_TRISTATE","features":[208]},{"name":"SKF_TWOKEYSOFF","features":[208]},{"name":"SOUNDSENTRYA","features":[208]},{"name":"SOUNDSENTRYW","features":[208]},{"name":"SOUNDSENTRY_FLAGS","features":[208]},{"name":"SOUNDSENTRY_TEXT_EFFECT","features":[208]},{"name":"SOUNDSENTRY_WINDOWS_EFFECT","features":[208]},{"name":"SOUND_SENTRY_GRAPHICS_EFFECT","features":[208]},{"name":"SSF_AVAILABLE","features":[208]},{"name":"SSF_INDICATOR","features":[208]},{"name":"SSF_SOUNDSENTRYON","features":[208]},{"name":"SSGF_DISPLAY","features":[208]},{"name":"SSGF_NONE","features":[208]},{"name":"SSTF_BORDER","features":[208]},{"name":"SSTF_CHARS","features":[208]},{"name":"SSTF_DISPLAY","features":[208]},{"name":"SSTF_NONE","features":[208]},{"name":"SSWF_CUSTOM","features":[208]},{"name":"SSWF_DISPLAY","features":[208]},{"name":"SSWF_NONE","features":[208]},{"name":"SSWF_TITLE","features":[208]},{"name":"SSWF_WINDOW","features":[208]},{"name":"STATE_SYSTEM_HASPOPUP","features":[208]},{"name":"STATE_SYSTEM_NORMAL","features":[208]},{"name":"STICKYKEYS","features":[208]},{"name":"STICKYKEYS_FLAGS","features":[208]},{"name":"SayAsInterpretAs","features":[208]},{"name":"SayAsInterpretAs_Address","features":[208]},{"name":"SayAsInterpretAs_Alphanumeric","features":[208]},{"name":"SayAsInterpretAs_Cardinal","features":[208]},{"name":"SayAsInterpretAs_Currency","features":[208]},{"name":"SayAsInterpretAs_Date","features":[208]},{"name":"SayAsInterpretAs_Date_DayMonth","features":[208]},{"name":"SayAsInterpretAs_Date_DayMonthYear","features":[208]},{"name":"SayAsInterpretAs_Date_MonthDay","features":[208]},{"name":"SayAsInterpretAs_Date_MonthDayYear","features":[208]},{"name":"SayAsInterpretAs_Date_MonthYear","features":[208]},{"name":"SayAsInterpretAs_Date_Year","features":[208]},{"name":"SayAsInterpretAs_Date_YearMonth","features":[208]},{"name":"SayAsInterpretAs_Date_YearMonthDay","features":[208]},{"name":"SayAsInterpretAs_Media","features":[208]},{"name":"SayAsInterpretAs_Name","features":[208]},{"name":"SayAsInterpretAs_Net","features":[208]},{"name":"SayAsInterpretAs_None","features":[208]},{"name":"SayAsInterpretAs_Number","features":[208]},{"name":"SayAsInterpretAs_Ordinal","features":[208]},{"name":"SayAsInterpretAs_Spell","features":[208]},{"name":"SayAsInterpretAs_Telephone","features":[208]},{"name":"SayAsInterpretAs_Time","features":[208]},{"name":"SayAsInterpretAs_Time_HoursMinutes12","features":[208]},{"name":"SayAsInterpretAs_Time_HoursMinutes24","features":[208]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds12","features":[208]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds24","features":[208]},{"name":"SayAsInterpretAs_Url","features":[208]},{"name":"ScrollAmount","features":[208]},{"name":"ScrollAmount_LargeDecrement","features":[208]},{"name":"ScrollAmount_LargeIncrement","features":[208]},{"name":"ScrollAmount_NoAmount","features":[208]},{"name":"ScrollAmount_SmallDecrement","features":[208]},{"name":"ScrollAmount_SmallIncrement","features":[208]},{"name":"ScrollBar_Control_GUID","features":[208]},{"name":"ScrollItemPattern_ScrollIntoView","features":[208]},{"name":"ScrollItem_Pattern_GUID","features":[208]},{"name":"ScrollPattern_Scroll","features":[208]},{"name":"ScrollPattern_SetScrollPercent","features":[208]},{"name":"Scroll_HorizontalScrollPercent_Property_GUID","features":[208]},{"name":"Scroll_HorizontalViewSize_Property_GUID","features":[208]},{"name":"Scroll_HorizontallyScrollable_Property_GUID","features":[208]},{"name":"Scroll_Pattern_GUID","features":[208]},{"name":"Scroll_VerticalScrollPercent_Property_GUID","features":[208]},{"name":"Scroll_VerticalViewSize_Property_GUID","features":[208]},{"name":"Scroll_VerticallyScrollable_Property_GUID","features":[208]},{"name":"Selection2_CurrentSelectedItem_Property_GUID","features":[208]},{"name":"Selection2_FirstSelectedItem_Property_GUID","features":[208]},{"name":"Selection2_ItemCount_Property_GUID","features":[208]},{"name":"Selection2_LastSelectedItem_Property_GUID","features":[208]},{"name":"SelectionItemPattern_AddToSelection","features":[208]},{"name":"SelectionItemPattern_RemoveFromSelection","features":[208]},{"name":"SelectionItemPattern_Select","features":[208]},{"name":"SelectionItem_ElementAddedToSelectionEvent_Event_GUID","features":[208]},{"name":"SelectionItem_ElementRemovedFromSelectionEvent_Event_GUID","features":[208]},{"name":"SelectionItem_ElementSelectedEvent_Event_GUID","features":[208]},{"name":"SelectionItem_IsSelected_Property_GUID","features":[208]},{"name":"SelectionItem_Pattern_GUID","features":[208]},{"name":"SelectionItem_SelectionContainer_Property_GUID","features":[208]},{"name":"Selection_CanSelectMultiple_Property_GUID","features":[208]},{"name":"Selection_InvalidatedEvent_Event_GUID","features":[208]},{"name":"Selection_IsSelectionRequired_Property_GUID","features":[208]},{"name":"Selection_Pattern2_GUID","features":[208]},{"name":"Selection_Pattern_GUID","features":[208]},{"name":"Selection_Selection_Property_GUID","features":[208]},{"name":"SemanticZoom_Control_GUID","features":[208]},{"name":"Separator_Control_GUID","features":[208]},{"name":"SetWinEventHook","features":[1,208]},{"name":"SizeOfSet_Property_GUID","features":[208]},{"name":"Size_Property_GUID","features":[208]},{"name":"Slider_Control_GUID","features":[208]},{"name":"Spinner_Control_GUID","features":[208]},{"name":"SplitButton_Control_GUID","features":[208]},{"name":"SpreadsheetItem_AnnotationObjects_Property_GUID","features":[208]},{"name":"SpreadsheetItem_AnnotationTypes_Property_GUID","features":[208]},{"name":"SpreadsheetItem_Formula_Property_GUID","features":[208]},{"name":"SpreadsheetItem_Pattern_GUID","features":[208]},{"name":"Spreadsheet_Pattern_GUID","features":[208]},{"name":"StatusBar_Control_GUID","features":[208]},{"name":"StructureChangeType","features":[208]},{"name":"StructureChangeType_ChildAdded","features":[208]},{"name":"StructureChangeType_ChildRemoved","features":[208]},{"name":"StructureChangeType_ChildrenBulkAdded","features":[208]},{"name":"StructureChangeType_ChildrenBulkRemoved","features":[208]},{"name":"StructureChangeType_ChildrenInvalidated","features":[208]},{"name":"StructureChangeType_ChildrenReordered","features":[208]},{"name":"StructureChanged_Event_GUID","features":[208]},{"name":"StructuredMarkup_CompositionComplete_Event_GUID","features":[208]},{"name":"StructuredMarkup_Deleted_Event_GUID","features":[208]},{"name":"StructuredMarkup_Pattern_GUID","features":[208]},{"name":"StructuredMarkup_SelectionChanged_Event_GUID","features":[208]},{"name":"StyleId_BulletedList","features":[208]},{"name":"StyleId_BulletedList_GUID","features":[208]},{"name":"StyleId_Custom","features":[208]},{"name":"StyleId_Custom_GUID","features":[208]},{"name":"StyleId_Emphasis","features":[208]},{"name":"StyleId_Emphasis_GUID","features":[208]},{"name":"StyleId_Heading1","features":[208]},{"name":"StyleId_Heading1_GUID","features":[208]},{"name":"StyleId_Heading2","features":[208]},{"name":"StyleId_Heading2_GUID","features":[208]},{"name":"StyleId_Heading3","features":[208]},{"name":"StyleId_Heading3_GUID","features":[208]},{"name":"StyleId_Heading4","features":[208]},{"name":"StyleId_Heading4_GUID","features":[208]},{"name":"StyleId_Heading5","features":[208]},{"name":"StyleId_Heading5_GUID","features":[208]},{"name":"StyleId_Heading6","features":[208]},{"name":"StyleId_Heading6_GUID","features":[208]},{"name":"StyleId_Heading7","features":[208]},{"name":"StyleId_Heading7_GUID","features":[208]},{"name":"StyleId_Heading8","features":[208]},{"name":"StyleId_Heading8_GUID","features":[208]},{"name":"StyleId_Heading9","features":[208]},{"name":"StyleId_Heading9_GUID","features":[208]},{"name":"StyleId_Normal","features":[208]},{"name":"StyleId_Normal_GUID","features":[208]},{"name":"StyleId_NumberedList","features":[208]},{"name":"StyleId_NumberedList_GUID","features":[208]},{"name":"StyleId_Quote","features":[208]},{"name":"StyleId_Quote_GUID","features":[208]},{"name":"StyleId_Subtitle","features":[208]},{"name":"StyleId_Subtitle_GUID","features":[208]},{"name":"StyleId_Title","features":[208]},{"name":"StyleId_Title_GUID","features":[208]},{"name":"Styles_ExtendedProperties_Property_GUID","features":[208]},{"name":"Styles_FillColor_Property_GUID","features":[208]},{"name":"Styles_FillPatternColor_Property_GUID","features":[208]},{"name":"Styles_FillPatternStyle_Property_GUID","features":[208]},{"name":"Styles_Pattern_GUID","features":[208]},{"name":"Styles_Shape_Property_GUID","features":[208]},{"name":"Styles_StyleId_Property_GUID","features":[208]},{"name":"Styles_StyleName_Property_GUID","features":[208]},{"name":"SupportedTextSelection","features":[208]},{"name":"SupportedTextSelection_Multiple","features":[208]},{"name":"SupportedTextSelection_None","features":[208]},{"name":"SupportedTextSelection_Single","features":[208]},{"name":"SynchronizedInputPattern_Cancel","features":[208]},{"name":"SynchronizedInputPattern_StartListening","features":[208]},{"name":"SynchronizedInputType","features":[208]},{"name":"SynchronizedInputType_KeyDown","features":[208]},{"name":"SynchronizedInputType_KeyUp","features":[208]},{"name":"SynchronizedInputType_LeftMouseDown","features":[208]},{"name":"SynchronizedInputType_LeftMouseUp","features":[208]},{"name":"SynchronizedInputType_RightMouseDown","features":[208]},{"name":"SynchronizedInputType_RightMouseUp","features":[208]},{"name":"SynchronizedInput_Pattern_GUID","features":[208]},{"name":"SystemAlert_Event_GUID","features":[208]},{"name":"TOGGLEKEYS","features":[208]},{"name":"TabItem_Control_GUID","features":[208]},{"name":"Tab_Control_GUID","features":[208]},{"name":"TableItem_ColumnHeaderItems_Property_GUID","features":[208]},{"name":"TableItem_Pattern_GUID","features":[208]},{"name":"TableItem_RowHeaderItems_Property_GUID","features":[208]},{"name":"Table_ColumnHeaders_Property_GUID","features":[208]},{"name":"Table_Control_GUID","features":[208]},{"name":"Table_Pattern_GUID","features":[208]},{"name":"Table_RowHeaders_Property_GUID","features":[208]},{"name":"Table_RowOrColumnMajor_Property_GUID","features":[208]},{"name":"TextChild_Pattern_GUID","features":[208]},{"name":"TextDecorationLineStyle","features":[208]},{"name":"TextDecorationLineStyle_Dash","features":[208]},{"name":"TextDecorationLineStyle_DashDot","features":[208]},{"name":"TextDecorationLineStyle_DashDotDot","features":[208]},{"name":"TextDecorationLineStyle_Dot","features":[208]},{"name":"TextDecorationLineStyle_Double","features":[208]},{"name":"TextDecorationLineStyle_DoubleWavy","features":[208]},{"name":"TextDecorationLineStyle_LongDash","features":[208]},{"name":"TextDecorationLineStyle_None","features":[208]},{"name":"TextDecorationLineStyle_Other","features":[208]},{"name":"TextDecorationLineStyle_Single","features":[208]},{"name":"TextDecorationLineStyle_ThickDash","features":[208]},{"name":"TextDecorationLineStyle_ThickDashDot","features":[208]},{"name":"TextDecorationLineStyle_ThickDashDotDot","features":[208]},{"name":"TextDecorationLineStyle_ThickDot","features":[208]},{"name":"TextDecorationLineStyle_ThickLongDash","features":[208]},{"name":"TextDecorationLineStyle_ThickSingle","features":[208]},{"name":"TextDecorationLineStyle_ThickWavy","features":[208]},{"name":"TextDecorationLineStyle_Wavy","features":[208]},{"name":"TextDecorationLineStyle_WordsOnly","features":[208]},{"name":"TextEditChangeType","features":[208]},{"name":"TextEditChangeType_AutoComplete","features":[208]},{"name":"TextEditChangeType_AutoCorrect","features":[208]},{"name":"TextEditChangeType_Composition","features":[208]},{"name":"TextEditChangeType_CompositionFinalized","features":[208]},{"name":"TextEditChangeType_None","features":[208]},{"name":"TextEdit_ConversionTargetChanged_Event_GUID","features":[208]},{"name":"TextEdit_Pattern_GUID","features":[208]},{"name":"TextEdit_TextChanged_Event_GUID","features":[208]},{"name":"TextPatternRangeEndpoint","features":[208]},{"name":"TextPatternRangeEndpoint_End","features":[208]},{"name":"TextPatternRangeEndpoint_Start","features":[208]},{"name":"TextPattern_GetSelection","features":[41,208]},{"name":"TextPattern_GetVisibleRanges","features":[41,208]},{"name":"TextPattern_RangeFromChild","features":[208]},{"name":"TextPattern_RangeFromPoint","features":[208]},{"name":"TextPattern_get_DocumentRange","features":[208]},{"name":"TextPattern_get_SupportedTextSelection","features":[208]},{"name":"TextRange_AddToSelection","features":[208]},{"name":"TextRange_Clone","features":[208]},{"name":"TextRange_Compare","features":[1,208]},{"name":"TextRange_CompareEndpoints","features":[208]},{"name":"TextRange_ExpandToEnclosingUnit","features":[208]},{"name":"TextRange_FindAttribute","features":[1,41,42,208]},{"name":"TextRange_FindText","features":[1,208]},{"name":"TextRange_GetAttributeValue","features":[1,41,42,208]},{"name":"TextRange_GetBoundingRectangles","features":[41,208]},{"name":"TextRange_GetChildren","features":[41,208]},{"name":"TextRange_GetEnclosingElement","features":[208]},{"name":"TextRange_GetText","features":[208]},{"name":"TextRange_Move","features":[208]},{"name":"TextRange_MoveEndpointByRange","features":[208]},{"name":"TextRange_MoveEndpointByUnit","features":[208]},{"name":"TextRange_RemoveFromSelection","features":[208]},{"name":"TextRange_ScrollIntoView","features":[1,208]},{"name":"TextRange_Select","features":[208]},{"name":"TextUnit","features":[208]},{"name":"TextUnit_Character","features":[208]},{"name":"TextUnit_Document","features":[208]},{"name":"TextUnit_Format","features":[208]},{"name":"TextUnit_Line","features":[208]},{"name":"TextUnit_Page","features":[208]},{"name":"TextUnit_Paragraph","features":[208]},{"name":"TextUnit_Word","features":[208]},{"name":"Text_AfterParagraphSpacing_Attribute_GUID","features":[208]},{"name":"Text_AfterSpacing_Attribute_GUID","features":[208]},{"name":"Text_AnimationStyle_Attribute_GUID","features":[208]},{"name":"Text_AnnotationObjects_Attribute_GUID","features":[208]},{"name":"Text_AnnotationTypes_Attribute_GUID","features":[208]},{"name":"Text_BackgroundColor_Attribute_GUID","features":[208]},{"name":"Text_BeforeParagraphSpacing_Attribute_GUID","features":[208]},{"name":"Text_BeforeSpacing_Attribute_GUID","features":[208]},{"name":"Text_BulletStyle_Attribute_GUID","features":[208]},{"name":"Text_CapStyle_Attribute_GUID","features":[208]},{"name":"Text_CaretBidiMode_Attribute_GUID","features":[208]},{"name":"Text_CaretPosition_Attribute_GUID","features":[208]},{"name":"Text_Control_GUID","features":[208]},{"name":"Text_Culture_Attribute_GUID","features":[208]},{"name":"Text_FontName_Attribute_GUID","features":[208]},{"name":"Text_FontSize_Attribute_GUID","features":[208]},{"name":"Text_FontWeight_Attribute_GUID","features":[208]},{"name":"Text_ForegroundColor_Attribute_GUID","features":[208]},{"name":"Text_HorizontalTextAlignment_Attribute_GUID","features":[208]},{"name":"Text_IndentationFirstLine_Attribute_GUID","features":[208]},{"name":"Text_IndentationLeading_Attribute_GUID","features":[208]},{"name":"Text_IndentationTrailing_Attribute_GUID","features":[208]},{"name":"Text_IsActive_Attribute_GUID","features":[208]},{"name":"Text_IsHidden_Attribute_GUID","features":[208]},{"name":"Text_IsItalic_Attribute_GUID","features":[208]},{"name":"Text_IsReadOnly_Attribute_GUID","features":[208]},{"name":"Text_IsSubscript_Attribute_GUID","features":[208]},{"name":"Text_IsSuperscript_Attribute_GUID","features":[208]},{"name":"Text_LineSpacing_Attribute_GUID","features":[208]},{"name":"Text_Link_Attribute_GUID","features":[208]},{"name":"Text_MarginBottom_Attribute_GUID","features":[208]},{"name":"Text_MarginLeading_Attribute_GUID","features":[208]},{"name":"Text_MarginTop_Attribute_GUID","features":[208]},{"name":"Text_MarginTrailing_Attribute_GUID","features":[208]},{"name":"Text_OutlineStyles_Attribute_GUID","features":[208]},{"name":"Text_OverlineColor_Attribute_GUID","features":[208]},{"name":"Text_OverlineStyle_Attribute_GUID","features":[208]},{"name":"Text_Pattern2_GUID","features":[208]},{"name":"Text_Pattern_GUID","features":[208]},{"name":"Text_SayAsInterpretAs_Attribute_GUID","features":[208]},{"name":"Text_SelectionActiveEnd_Attribute_GUID","features":[208]},{"name":"Text_StrikethroughColor_Attribute_GUID","features":[208]},{"name":"Text_StrikethroughStyle_Attribute_GUID","features":[208]},{"name":"Text_StyleId_Attribute_GUID","features":[208]},{"name":"Text_StyleName_Attribute_GUID","features":[208]},{"name":"Text_Tabs_Attribute_GUID","features":[208]},{"name":"Text_TextChangedEvent_Event_GUID","features":[208]},{"name":"Text_TextFlowDirections_Attribute_GUID","features":[208]},{"name":"Text_TextSelectionChangedEvent_Event_GUID","features":[208]},{"name":"Text_UnderlineColor_Attribute_GUID","features":[208]},{"name":"Text_UnderlineStyle_Attribute_GUID","features":[208]},{"name":"Thumb_Control_GUID","features":[208]},{"name":"TitleBar_Control_GUID","features":[208]},{"name":"TogglePattern_Toggle","features":[208]},{"name":"ToggleState","features":[208]},{"name":"ToggleState_Indeterminate","features":[208]},{"name":"ToggleState_Off","features":[208]},{"name":"ToggleState_On","features":[208]},{"name":"Toggle_Pattern_GUID","features":[208]},{"name":"Toggle_ToggleState_Property_GUID","features":[208]},{"name":"ToolBar_Control_GUID","features":[208]},{"name":"ToolTipClosed_Event_GUID","features":[208]},{"name":"ToolTipOpened_Event_GUID","features":[208]},{"name":"ToolTip_Control_GUID","features":[208]},{"name":"Tranform_Pattern2_GUID","features":[208]},{"name":"Transform2_CanZoom_Property_GUID","features":[208]},{"name":"Transform2_ZoomLevel_Property_GUID","features":[208]},{"name":"Transform2_ZoomMaximum_Property_GUID","features":[208]},{"name":"Transform2_ZoomMinimum_Property_GUID","features":[208]},{"name":"TransformPattern_Move","features":[208]},{"name":"TransformPattern_Resize","features":[208]},{"name":"TransformPattern_Rotate","features":[208]},{"name":"Transform_CanMove_Property_GUID","features":[208]},{"name":"Transform_CanResize_Property_GUID","features":[208]},{"name":"Transform_CanRotate_Property_GUID","features":[208]},{"name":"Transform_Pattern_GUID","features":[208]},{"name":"TreeItem_Control_GUID","features":[208]},{"name":"TreeScope","features":[208]},{"name":"TreeScope_Ancestors","features":[208]},{"name":"TreeScope_Children","features":[208]},{"name":"TreeScope_Descendants","features":[208]},{"name":"TreeScope_Element","features":[208]},{"name":"TreeScope_None","features":[208]},{"name":"TreeScope_Parent","features":[208]},{"name":"TreeScope_Subtree","features":[208]},{"name":"TreeTraversalOptions","features":[208]},{"name":"TreeTraversalOptions_Default","features":[208]},{"name":"TreeTraversalOptions_LastToFirstOrder","features":[208]},{"name":"TreeTraversalOptions_PostOrder","features":[208]},{"name":"Tree_Control_GUID","features":[208]},{"name":"UIA_ANNOTATIONTYPE","features":[208]},{"name":"UIA_AcceleratorKeyPropertyId","features":[208]},{"name":"UIA_AccessKeyPropertyId","features":[208]},{"name":"UIA_ActiveTextPositionChangedEventId","features":[208]},{"name":"UIA_AfterParagraphSpacingAttributeId","features":[208]},{"name":"UIA_AnimationStyleAttributeId","features":[208]},{"name":"UIA_AnnotationAnnotationTypeIdPropertyId","features":[208]},{"name":"UIA_AnnotationAnnotationTypeNamePropertyId","features":[208]},{"name":"UIA_AnnotationAuthorPropertyId","features":[208]},{"name":"UIA_AnnotationDateTimePropertyId","features":[208]},{"name":"UIA_AnnotationObjectsAttributeId","features":[208]},{"name":"UIA_AnnotationObjectsPropertyId","features":[208]},{"name":"UIA_AnnotationPatternId","features":[208]},{"name":"UIA_AnnotationTargetPropertyId","features":[208]},{"name":"UIA_AnnotationTypesAttributeId","features":[208]},{"name":"UIA_AnnotationTypesPropertyId","features":[208]},{"name":"UIA_AppBarControlTypeId","features":[208]},{"name":"UIA_AriaPropertiesPropertyId","features":[208]},{"name":"UIA_AriaRolePropertyId","features":[208]},{"name":"UIA_AsyncContentLoadedEventId","features":[208]},{"name":"UIA_AutomationFocusChangedEventId","features":[208]},{"name":"UIA_AutomationIdPropertyId","features":[208]},{"name":"UIA_AutomationPropertyChangedEventId","features":[208]},{"name":"UIA_BackgroundColorAttributeId","features":[208]},{"name":"UIA_BeforeParagraphSpacingAttributeId","features":[208]},{"name":"UIA_BoundingRectanglePropertyId","features":[208]},{"name":"UIA_BulletStyleAttributeId","features":[208]},{"name":"UIA_ButtonControlTypeId","features":[208]},{"name":"UIA_CHANGE_ID","features":[208]},{"name":"UIA_CONTROLTYPE_ID","features":[208]},{"name":"UIA_CalendarControlTypeId","features":[208]},{"name":"UIA_CapStyleAttributeId","features":[208]},{"name":"UIA_CaretBidiModeAttributeId","features":[208]},{"name":"UIA_CaretPositionAttributeId","features":[208]},{"name":"UIA_CenterPointPropertyId","features":[208]},{"name":"UIA_ChangesEventId","features":[208]},{"name":"UIA_CheckBoxControlTypeId","features":[208]},{"name":"UIA_ClassNamePropertyId","features":[208]},{"name":"UIA_ClickablePointPropertyId","features":[208]},{"name":"UIA_ComboBoxControlTypeId","features":[208]},{"name":"UIA_ControlTypePropertyId","features":[208]},{"name":"UIA_ControllerForPropertyId","features":[208]},{"name":"UIA_CultureAttributeId","features":[208]},{"name":"UIA_CulturePropertyId","features":[208]},{"name":"UIA_CustomControlTypeId","features":[208]},{"name":"UIA_CustomLandmarkTypeId","features":[208]},{"name":"UIA_CustomNavigationPatternId","features":[208]},{"name":"UIA_DataGridControlTypeId","features":[208]},{"name":"UIA_DataItemControlTypeId","features":[208]},{"name":"UIA_DescribedByPropertyId","features":[208]},{"name":"UIA_DockDockPositionPropertyId","features":[208]},{"name":"UIA_DockPatternId","features":[208]},{"name":"UIA_DocumentControlTypeId","features":[208]},{"name":"UIA_DragDropEffectPropertyId","features":[208]},{"name":"UIA_DragDropEffectsPropertyId","features":[208]},{"name":"UIA_DragGrabbedItemsPropertyId","features":[208]},{"name":"UIA_DragIsGrabbedPropertyId","features":[208]},{"name":"UIA_DragPatternId","features":[208]},{"name":"UIA_Drag_DragCancelEventId","features":[208]},{"name":"UIA_Drag_DragCompleteEventId","features":[208]},{"name":"UIA_Drag_DragStartEventId","features":[208]},{"name":"UIA_DropTargetDropTargetEffectPropertyId","features":[208]},{"name":"UIA_DropTargetDropTargetEffectsPropertyId","features":[208]},{"name":"UIA_DropTargetPatternId","features":[208]},{"name":"UIA_DropTarget_DragEnterEventId","features":[208]},{"name":"UIA_DropTarget_DragLeaveEventId","features":[208]},{"name":"UIA_DropTarget_DroppedEventId","features":[208]},{"name":"UIA_EVENT_ID","features":[208]},{"name":"UIA_E_ELEMENTNOTAVAILABLE","features":[208]},{"name":"UIA_E_ELEMENTNOTENABLED","features":[208]},{"name":"UIA_E_INVALIDOPERATION","features":[208]},{"name":"UIA_E_NOCLICKABLEPOINT","features":[208]},{"name":"UIA_E_NOTSUPPORTED","features":[208]},{"name":"UIA_E_PROXYASSEMBLYNOTLOADED","features":[208]},{"name":"UIA_E_TIMEOUT","features":[208]},{"name":"UIA_EditControlTypeId","features":[208]},{"name":"UIA_ExpandCollapseExpandCollapseStatePropertyId","features":[208]},{"name":"UIA_ExpandCollapsePatternId","features":[208]},{"name":"UIA_FillColorPropertyId","features":[208]},{"name":"UIA_FillTypePropertyId","features":[208]},{"name":"UIA_FlowsFromPropertyId","features":[208]},{"name":"UIA_FlowsToPropertyId","features":[208]},{"name":"UIA_FontNameAttributeId","features":[208]},{"name":"UIA_FontSizeAttributeId","features":[208]},{"name":"UIA_FontWeightAttributeId","features":[208]},{"name":"UIA_ForegroundColorAttributeId","features":[208]},{"name":"UIA_FormLandmarkTypeId","features":[208]},{"name":"UIA_FrameworkIdPropertyId","features":[208]},{"name":"UIA_FullDescriptionPropertyId","features":[208]},{"name":"UIA_GridColumnCountPropertyId","features":[208]},{"name":"UIA_GridItemColumnPropertyId","features":[208]},{"name":"UIA_GridItemColumnSpanPropertyId","features":[208]},{"name":"UIA_GridItemContainingGridPropertyId","features":[208]},{"name":"UIA_GridItemPatternId","features":[208]},{"name":"UIA_GridItemRowPropertyId","features":[208]},{"name":"UIA_GridItemRowSpanPropertyId","features":[208]},{"name":"UIA_GridPatternId","features":[208]},{"name":"UIA_GridRowCountPropertyId","features":[208]},{"name":"UIA_GroupControlTypeId","features":[208]},{"name":"UIA_HEADINGLEVEL_ID","features":[208]},{"name":"UIA_HasKeyboardFocusPropertyId","features":[208]},{"name":"UIA_HeaderControlTypeId","features":[208]},{"name":"UIA_HeaderItemControlTypeId","features":[208]},{"name":"UIA_HeadingLevelPropertyId","features":[208]},{"name":"UIA_HelpTextPropertyId","features":[208]},{"name":"UIA_HorizontalTextAlignmentAttributeId","features":[208]},{"name":"UIA_HostedFragmentRootsInvalidatedEventId","features":[208]},{"name":"UIA_HyperlinkControlTypeId","features":[208]},{"name":"UIA_IAFP_DEFAULT","features":[208]},{"name":"UIA_IAFP_UNWRAP_BRIDGE","features":[208]},{"name":"UIA_ImageControlTypeId","features":[208]},{"name":"UIA_IndentationFirstLineAttributeId","features":[208]},{"name":"UIA_IndentationLeadingAttributeId","features":[208]},{"name":"UIA_IndentationTrailingAttributeId","features":[208]},{"name":"UIA_InputDiscardedEventId","features":[208]},{"name":"UIA_InputReachedOtherElementEventId","features":[208]},{"name":"UIA_InputReachedTargetEventId","features":[208]},{"name":"UIA_InvokePatternId","features":[208]},{"name":"UIA_Invoke_InvokedEventId","features":[208]},{"name":"UIA_IsActiveAttributeId","features":[208]},{"name":"UIA_IsAnnotationPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsContentElementPropertyId","features":[208]},{"name":"UIA_IsControlElementPropertyId","features":[208]},{"name":"UIA_IsCustomNavigationPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsDataValidForFormPropertyId","features":[208]},{"name":"UIA_IsDialogPropertyId","features":[208]},{"name":"UIA_IsDockPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsDragPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsDropTargetPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsEnabledPropertyId","features":[208]},{"name":"UIA_IsExpandCollapsePatternAvailablePropertyId","features":[208]},{"name":"UIA_IsGridItemPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsGridPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsHiddenAttributeId","features":[208]},{"name":"UIA_IsInvokePatternAvailablePropertyId","features":[208]},{"name":"UIA_IsItalicAttributeId","features":[208]},{"name":"UIA_IsItemContainerPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsKeyboardFocusablePropertyId","features":[208]},{"name":"UIA_IsLegacyIAccessiblePatternAvailablePropertyId","features":[208]},{"name":"UIA_IsMultipleViewPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsObjectModelPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsOffscreenPropertyId","features":[208]},{"name":"UIA_IsPasswordPropertyId","features":[208]},{"name":"UIA_IsPeripheralPropertyId","features":[208]},{"name":"UIA_IsRangeValuePatternAvailablePropertyId","features":[208]},{"name":"UIA_IsReadOnlyAttributeId","features":[208]},{"name":"UIA_IsRequiredForFormPropertyId","features":[208]},{"name":"UIA_IsScrollItemPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsScrollPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsSelectionItemPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsSelectionPattern2AvailablePropertyId","features":[208]},{"name":"UIA_IsSelectionPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsSpreadsheetItemPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsSpreadsheetPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsStylesPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsSubscriptAttributeId","features":[208]},{"name":"UIA_IsSuperscriptAttributeId","features":[208]},{"name":"UIA_IsSynchronizedInputPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsTableItemPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsTablePatternAvailablePropertyId","features":[208]},{"name":"UIA_IsTextChildPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsTextEditPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsTextPattern2AvailablePropertyId","features":[208]},{"name":"UIA_IsTextPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsTogglePatternAvailablePropertyId","features":[208]},{"name":"UIA_IsTransformPattern2AvailablePropertyId","features":[208]},{"name":"UIA_IsTransformPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsValuePatternAvailablePropertyId","features":[208]},{"name":"UIA_IsVirtualizedItemPatternAvailablePropertyId","features":[208]},{"name":"UIA_IsWindowPatternAvailablePropertyId","features":[208]},{"name":"UIA_ItemContainerPatternId","features":[208]},{"name":"UIA_ItemStatusPropertyId","features":[208]},{"name":"UIA_ItemTypePropertyId","features":[208]},{"name":"UIA_LANDMARKTYPE_ID","features":[208]},{"name":"UIA_LabeledByPropertyId","features":[208]},{"name":"UIA_LandmarkTypePropertyId","features":[208]},{"name":"UIA_LayoutInvalidatedEventId","features":[208]},{"name":"UIA_LegacyIAccessibleChildIdPropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleDefaultActionPropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleDescriptionPropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleHelpPropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleKeyboardShortcutPropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleNamePropertyId","features":[208]},{"name":"UIA_LegacyIAccessiblePatternId","features":[208]},{"name":"UIA_LegacyIAccessibleRolePropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleSelectionPropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleStatePropertyId","features":[208]},{"name":"UIA_LegacyIAccessibleValuePropertyId","features":[208]},{"name":"UIA_LevelPropertyId","features":[208]},{"name":"UIA_LineSpacingAttributeId","features":[208]},{"name":"UIA_LinkAttributeId","features":[208]},{"name":"UIA_ListControlTypeId","features":[208]},{"name":"UIA_ListItemControlTypeId","features":[208]},{"name":"UIA_LiveRegionChangedEventId","features":[208]},{"name":"UIA_LiveSettingPropertyId","features":[208]},{"name":"UIA_LocalizedControlTypePropertyId","features":[208]},{"name":"UIA_LocalizedLandmarkTypePropertyId","features":[208]},{"name":"UIA_METADATA_ID","features":[208]},{"name":"UIA_MainLandmarkTypeId","features":[208]},{"name":"UIA_MarginBottomAttributeId","features":[208]},{"name":"UIA_MarginLeadingAttributeId","features":[208]},{"name":"UIA_MarginTopAttributeId","features":[208]},{"name":"UIA_MarginTrailingAttributeId","features":[208]},{"name":"UIA_MenuBarControlTypeId","features":[208]},{"name":"UIA_MenuClosedEventId","features":[208]},{"name":"UIA_MenuControlTypeId","features":[208]},{"name":"UIA_MenuItemControlTypeId","features":[208]},{"name":"UIA_MenuModeEndEventId","features":[208]},{"name":"UIA_MenuModeStartEventId","features":[208]},{"name":"UIA_MenuOpenedEventId","features":[208]},{"name":"UIA_MultipleViewCurrentViewPropertyId","features":[208]},{"name":"UIA_MultipleViewPatternId","features":[208]},{"name":"UIA_MultipleViewSupportedViewsPropertyId","features":[208]},{"name":"UIA_NamePropertyId","features":[208]},{"name":"UIA_NativeWindowHandlePropertyId","features":[208]},{"name":"UIA_NavigationLandmarkTypeId","features":[208]},{"name":"UIA_NotificationEventId","features":[208]},{"name":"UIA_ObjectModelPatternId","features":[208]},{"name":"UIA_OptimizeForVisualContentPropertyId","features":[208]},{"name":"UIA_OrientationPropertyId","features":[208]},{"name":"UIA_OutlineColorPropertyId","features":[208]},{"name":"UIA_OutlineStylesAttributeId","features":[208]},{"name":"UIA_OutlineThicknessPropertyId","features":[208]},{"name":"UIA_OverlineColorAttributeId","features":[208]},{"name":"UIA_OverlineStyleAttributeId","features":[208]},{"name":"UIA_PATTERN_ID","features":[208]},{"name":"UIA_PFIA_DEFAULT","features":[208]},{"name":"UIA_PFIA_UNWRAP_BRIDGE","features":[208]},{"name":"UIA_PROPERTY_ID","features":[208]},{"name":"UIA_PaneControlTypeId","features":[208]},{"name":"UIA_PositionInSetPropertyId","features":[208]},{"name":"UIA_ProcessIdPropertyId","features":[208]},{"name":"UIA_ProgressBarControlTypeId","features":[208]},{"name":"UIA_ProviderDescriptionPropertyId","features":[208]},{"name":"UIA_RadioButtonControlTypeId","features":[208]},{"name":"UIA_RangeValueIsReadOnlyPropertyId","features":[208]},{"name":"UIA_RangeValueLargeChangePropertyId","features":[208]},{"name":"UIA_RangeValueMaximumPropertyId","features":[208]},{"name":"UIA_RangeValueMinimumPropertyId","features":[208]},{"name":"UIA_RangeValuePatternId","features":[208]},{"name":"UIA_RangeValueSmallChangePropertyId","features":[208]},{"name":"UIA_RangeValueValuePropertyId","features":[208]},{"name":"UIA_RotationPropertyId","features":[208]},{"name":"UIA_RuntimeIdPropertyId","features":[208]},{"name":"UIA_STYLE_ID","features":[208]},{"name":"UIA_SayAsInterpretAsAttributeId","features":[208]},{"name":"UIA_SayAsInterpretAsMetadataId","features":[208]},{"name":"UIA_ScrollBarControlTypeId","features":[208]},{"name":"UIA_ScrollHorizontalScrollPercentPropertyId","features":[208]},{"name":"UIA_ScrollHorizontalViewSizePropertyId","features":[208]},{"name":"UIA_ScrollHorizontallyScrollablePropertyId","features":[208]},{"name":"UIA_ScrollItemPatternId","features":[208]},{"name":"UIA_ScrollPatternId","features":[208]},{"name":"UIA_ScrollPatternNoScroll","features":[208]},{"name":"UIA_ScrollVerticalScrollPercentPropertyId","features":[208]},{"name":"UIA_ScrollVerticalViewSizePropertyId","features":[208]},{"name":"UIA_ScrollVerticallyScrollablePropertyId","features":[208]},{"name":"UIA_SearchLandmarkTypeId","features":[208]},{"name":"UIA_Selection2CurrentSelectedItemPropertyId","features":[208]},{"name":"UIA_Selection2FirstSelectedItemPropertyId","features":[208]},{"name":"UIA_Selection2ItemCountPropertyId","features":[208]},{"name":"UIA_Selection2LastSelectedItemPropertyId","features":[208]},{"name":"UIA_SelectionActiveEndAttributeId","features":[208]},{"name":"UIA_SelectionCanSelectMultiplePropertyId","features":[208]},{"name":"UIA_SelectionIsSelectionRequiredPropertyId","features":[208]},{"name":"UIA_SelectionItemIsSelectedPropertyId","features":[208]},{"name":"UIA_SelectionItemPatternId","features":[208]},{"name":"UIA_SelectionItemSelectionContainerPropertyId","features":[208]},{"name":"UIA_SelectionItem_ElementAddedToSelectionEventId","features":[208]},{"name":"UIA_SelectionItem_ElementRemovedFromSelectionEventId","features":[208]},{"name":"UIA_SelectionItem_ElementSelectedEventId","features":[208]},{"name":"UIA_SelectionPattern2Id","features":[208]},{"name":"UIA_SelectionPatternId","features":[208]},{"name":"UIA_SelectionSelectionPropertyId","features":[208]},{"name":"UIA_Selection_InvalidatedEventId","features":[208]},{"name":"UIA_SemanticZoomControlTypeId","features":[208]},{"name":"UIA_SeparatorControlTypeId","features":[208]},{"name":"UIA_SizeOfSetPropertyId","features":[208]},{"name":"UIA_SizePropertyId","features":[208]},{"name":"UIA_SliderControlTypeId","features":[208]},{"name":"UIA_SpinnerControlTypeId","features":[208]},{"name":"UIA_SplitButtonControlTypeId","features":[208]},{"name":"UIA_SpreadsheetItemAnnotationObjectsPropertyId","features":[208]},{"name":"UIA_SpreadsheetItemAnnotationTypesPropertyId","features":[208]},{"name":"UIA_SpreadsheetItemFormulaPropertyId","features":[208]},{"name":"UIA_SpreadsheetItemPatternId","features":[208]},{"name":"UIA_SpreadsheetPatternId","features":[208]},{"name":"UIA_StatusBarControlTypeId","features":[208]},{"name":"UIA_StrikethroughColorAttributeId","features":[208]},{"name":"UIA_StrikethroughStyleAttributeId","features":[208]},{"name":"UIA_StructureChangedEventId","features":[208]},{"name":"UIA_StyleIdAttributeId","features":[208]},{"name":"UIA_StyleNameAttributeId","features":[208]},{"name":"UIA_StylesExtendedPropertiesPropertyId","features":[208]},{"name":"UIA_StylesFillColorPropertyId","features":[208]},{"name":"UIA_StylesFillPatternColorPropertyId","features":[208]},{"name":"UIA_StylesFillPatternStylePropertyId","features":[208]},{"name":"UIA_StylesPatternId","features":[208]},{"name":"UIA_StylesShapePropertyId","features":[208]},{"name":"UIA_StylesStyleIdPropertyId","features":[208]},{"name":"UIA_StylesStyleNamePropertyId","features":[208]},{"name":"UIA_SummaryChangeId","features":[208]},{"name":"UIA_SynchronizedInputPatternId","features":[208]},{"name":"UIA_SystemAlertEventId","features":[208]},{"name":"UIA_TEXTATTRIBUTE_ID","features":[208]},{"name":"UIA_TabControlTypeId","features":[208]},{"name":"UIA_TabItemControlTypeId","features":[208]},{"name":"UIA_TableColumnHeadersPropertyId","features":[208]},{"name":"UIA_TableControlTypeId","features":[208]},{"name":"UIA_TableItemColumnHeaderItemsPropertyId","features":[208]},{"name":"UIA_TableItemPatternId","features":[208]},{"name":"UIA_TableItemRowHeaderItemsPropertyId","features":[208]},{"name":"UIA_TablePatternId","features":[208]},{"name":"UIA_TableRowHeadersPropertyId","features":[208]},{"name":"UIA_TableRowOrColumnMajorPropertyId","features":[208]},{"name":"UIA_TabsAttributeId","features":[208]},{"name":"UIA_TextChildPatternId","features":[208]},{"name":"UIA_TextControlTypeId","features":[208]},{"name":"UIA_TextEditPatternId","features":[208]},{"name":"UIA_TextEdit_ConversionTargetChangedEventId","features":[208]},{"name":"UIA_TextEdit_TextChangedEventId","features":[208]},{"name":"UIA_TextFlowDirectionsAttributeId","features":[208]},{"name":"UIA_TextPattern2Id","features":[208]},{"name":"UIA_TextPatternId","features":[208]},{"name":"UIA_Text_TextChangedEventId","features":[208]},{"name":"UIA_Text_TextSelectionChangedEventId","features":[208]},{"name":"UIA_ThumbControlTypeId","features":[208]},{"name":"UIA_TitleBarControlTypeId","features":[208]},{"name":"UIA_TogglePatternId","features":[208]},{"name":"UIA_ToggleToggleStatePropertyId","features":[208]},{"name":"UIA_ToolBarControlTypeId","features":[208]},{"name":"UIA_ToolTipClosedEventId","features":[208]},{"name":"UIA_ToolTipControlTypeId","features":[208]},{"name":"UIA_ToolTipOpenedEventId","features":[208]},{"name":"UIA_Transform2CanZoomPropertyId","features":[208]},{"name":"UIA_Transform2ZoomLevelPropertyId","features":[208]},{"name":"UIA_Transform2ZoomMaximumPropertyId","features":[208]},{"name":"UIA_Transform2ZoomMinimumPropertyId","features":[208]},{"name":"UIA_TransformCanMovePropertyId","features":[208]},{"name":"UIA_TransformCanResizePropertyId","features":[208]},{"name":"UIA_TransformCanRotatePropertyId","features":[208]},{"name":"UIA_TransformPattern2Id","features":[208]},{"name":"UIA_TransformPatternId","features":[208]},{"name":"UIA_TreeControlTypeId","features":[208]},{"name":"UIA_TreeItemControlTypeId","features":[208]},{"name":"UIA_UnderlineColorAttributeId","features":[208]},{"name":"UIA_UnderlineStyleAttributeId","features":[208]},{"name":"UIA_ValueIsReadOnlyPropertyId","features":[208]},{"name":"UIA_ValuePatternId","features":[208]},{"name":"UIA_ValueValuePropertyId","features":[208]},{"name":"UIA_VirtualizedItemPatternId","features":[208]},{"name":"UIA_VisualEffectsPropertyId","features":[208]},{"name":"UIA_WindowCanMaximizePropertyId","features":[208]},{"name":"UIA_WindowCanMinimizePropertyId","features":[208]},{"name":"UIA_WindowControlTypeId","features":[208]},{"name":"UIA_WindowIsModalPropertyId","features":[208]},{"name":"UIA_WindowIsTopmostPropertyId","features":[208]},{"name":"UIA_WindowPatternId","features":[208]},{"name":"UIA_WindowWindowInteractionStatePropertyId","features":[208]},{"name":"UIA_WindowWindowVisualStatePropertyId","features":[208]},{"name":"UIA_Window_WindowClosedEventId","features":[208]},{"name":"UIA_Window_WindowOpenedEventId","features":[208]},{"name":"UIAutomationEventInfo","features":[208]},{"name":"UIAutomationMethodInfo","features":[1,208]},{"name":"UIAutomationParameter","features":[208]},{"name":"UIAutomationPatternInfo","features":[1,208]},{"name":"UIAutomationPropertyInfo","features":[208]},{"name":"UIAutomationType","features":[208]},{"name":"UIAutomationType_Array","features":[208]},{"name":"UIAutomationType_Bool","features":[208]},{"name":"UIAutomationType_BoolArray","features":[208]},{"name":"UIAutomationType_Double","features":[208]},{"name":"UIAutomationType_DoubleArray","features":[208]},{"name":"UIAutomationType_Element","features":[208]},{"name":"UIAutomationType_ElementArray","features":[208]},{"name":"UIAutomationType_Int","features":[208]},{"name":"UIAutomationType_IntArray","features":[208]},{"name":"UIAutomationType_Out","features":[208]},{"name":"UIAutomationType_OutBool","features":[208]},{"name":"UIAutomationType_OutBoolArray","features":[208]},{"name":"UIAutomationType_OutDouble","features":[208]},{"name":"UIAutomationType_OutDoubleArray","features":[208]},{"name":"UIAutomationType_OutElement","features":[208]},{"name":"UIAutomationType_OutElementArray","features":[208]},{"name":"UIAutomationType_OutInt","features":[208]},{"name":"UIAutomationType_OutIntArray","features":[208]},{"name":"UIAutomationType_OutPoint","features":[208]},{"name":"UIAutomationType_OutPointArray","features":[208]},{"name":"UIAutomationType_OutRect","features":[208]},{"name":"UIAutomationType_OutRectArray","features":[208]},{"name":"UIAutomationType_OutString","features":[208]},{"name":"UIAutomationType_OutStringArray","features":[208]},{"name":"UIAutomationType_Point","features":[208]},{"name":"UIAutomationType_PointArray","features":[208]},{"name":"UIAutomationType_Rect","features":[208]},{"name":"UIAutomationType_RectArray","features":[208]},{"name":"UIAutomationType_String","features":[208]},{"name":"UIAutomationType_StringArray","features":[208]},{"name":"UiaAddEvent","features":[41,208]},{"name":"UiaAndOrCondition","features":[208]},{"name":"UiaAppendRuntimeId","features":[208]},{"name":"UiaAsyncContentLoadedEventArgs","features":[208]},{"name":"UiaCacheRequest","features":[208]},{"name":"UiaChangeInfo","features":[1,41,42,208]},{"name":"UiaChangesEventArgs","features":[1,41,42,208]},{"name":"UiaClientsAreListening","features":[1,208]},{"name":"UiaCondition","features":[208]},{"name":"UiaDisconnectAllProviders","features":[208]},{"name":"UiaDisconnectProvider","features":[208]},{"name":"UiaEventAddWindow","features":[1,208]},{"name":"UiaEventArgs","features":[208]},{"name":"UiaEventCallback","features":[41,208]},{"name":"UiaEventRemoveWindow","features":[1,208]},{"name":"UiaFind","features":[1,41,208]},{"name":"UiaFindParams","features":[1,208]},{"name":"UiaGetErrorDescription","features":[1,208]},{"name":"UiaGetPatternProvider","features":[208]},{"name":"UiaGetPropertyValue","features":[1,41,42,208]},{"name":"UiaGetReservedMixedAttributeValue","features":[208]},{"name":"UiaGetReservedNotSupportedValue","features":[208]},{"name":"UiaGetRootNode","features":[208]},{"name":"UiaGetRuntimeId","features":[41,208]},{"name":"UiaGetUpdatedCache","features":[41,208]},{"name":"UiaHPatternObjectFromVariant","features":[1,41,42,208]},{"name":"UiaHTextRangeFromVariant","features":[1,41,42,208]},{"name":"UiaHUiaNodeFromVariant","features":[1,41,42,208]},{"name":"UiaHasServerSideProvider","features":[1,208]},{"name":"UiaHostProviderFromHwnd","features":[1,208]},{"name":"UiaIAccessibleFromProvider","features":[1,41,42,208]},{"name":"UiaLookupId","features":[208]},{"name":"UiaNavigate","features":[41,208]},{"name":"UiaNodeFromFocus","features":[41,208]},{"name":"UiaNodeFromHandle","features":[1,208]},{"name":"UiaNodeFromPoint","features":[41,208]},{"name":"UiaNodeFromProvider","features":[208]},{"name":"UiaNodeRelease","features":[1,208]},{"name":"UiaNotCondition","features":[208]},{"name":"UiaPatternRelease","features":[1,208]},{"name":"UiaPoint","features":[208]},{"name":"UiaPropertyChangedEventArgs","features":[1,41,42,208]},{"name":"UiaPropertyCondition","features":[1,41,42,208]},{"name":"UiaProviderCallback","features":[1,41,208]},{"name":"UiaProviderForNonClient","features":[1,208]},{"name":"UiaProviderFromIAccessible","features":[208]},{"name":"UiaRaiseActiveTextPositionChangedEvent","features":[208]},{"name":"UiaRaiseAsyncContentLoadedEvent","features":[208]},{"name":"UiaRaiseAutomationEvent","features":[208]},{"name":"UiaRaiseAutomationPropertyChangedEvent","features":[1,41,42,208]},{"name":"UiaRaiseChangesEvent","features":[1,41,42,208]},{"name":"UiaRaiseNotificationEvent","features":[208]},{"name":"UiaRaiseStructureChangedEvent","features":[208]},{"name":"UiaRaiseTextEditTextChangedEvent","features":[41,208]},{"name":"UiaRect","features":[208]},{"name":"UiaRegisterProviderCallback","features":[1,41,208]},{"name":"UiaRemoveEvent","features":[208]},{"name":"UiaReturnRawElementProvider","features":[1,208]},{"name":"UiaRootObjectId","features":[208]},{"name":"UiaSetFocus","features":[208]},{"name":"UiaStructureChangedEventArgs","features":[208]},{"name":"UiaTextEditTextChangedEventArgs","features":[41,208]},{"name":"UiaTextRangeRelease","features":[1,208]},{"name":"UiaWindowClosedEventArgs","features":[208]},{"name":"UnhookWinEvent","features":[1,208]},{"name":"UnregisterPointerInputTarget","features":[1,208,50]},{"name":"UnregisterPointerInputTargetEx","features":[1,208,50]},{"name":"ValuePattern_SetValue","features":[208]},{"name":"Value_IsReadOnly_Property_GUID","features":[208]},{"name":"Value_Pattern_GUID","features":[208]},{"name":"Value_Value_Property_GUID","features":[208]},{"name":"VirtualizedItemPattern_Realize","features":[208]},{"name":"VirtualizedItem_Pattern_GUID","features":[208]},{"name":"VisualEffects","features":[208]},{"name":"VisualEffects_Bevel","features":[208]},{"name":"VisualEffects_Glow","features":[208]},{"name":"VisualEffects_None","features":[208]},{"name":"VisualEffects_Property_GUID","features":[208]},{"name":"VisualEffects_Reflection","features":[208]},{"name":"VisualEffects_Shadow","features":[208]},{"name":"VisualEffects_SoftEdges","features":[208]},{"name":"WINEVENTPROC","features":[1,208]},{"name":"WindowFromAccessibleObject","features":[1,208]},{"name":"WindowInteractionState","features":[208]},{"name":"WindowInteractionState_BlockedByModalWindow","features":[208]},{"name":"WindowInteractionState_Closing","features":[208]},{"name":"WindowInteractionState_NotResponding","features":[208]},{"name":"WindowInteractionState_ReadyForUserInteraction","features":[208]},{"name":"WindowInteractionState_Running","features":[208]},{"name":"WindowPattern_Close","features":[208]},{"name":"WindowPattern_SetWindowVisualState","features":[208]},{"name":"WindowPattern_WaitForInputIdle","features":[1,208]},{"name":"WindowVisualState","features":[208]},{"name":"WindowVisualState_Maximized","features":[208]},{"name":"WindowVisualState_Minimized","features":[208]},{"name":"WindowVisualState_Normal","features":[208]},{"name":"Window_CanMaximize_Property_GUID","features":[208]},{"name":"Window_CanMinimize_Property_GUID","features":[208]},{"name":"Window_Control_GUID","features":[208]},{"name":"Window_IsModal_Property_GUID","features":[208]},{"name":"Window_IsTopmost_Property_GUID","features":[208]},{"name":"Window_Pattern_GUID","features":[208]},{"name":"Window_WindowClosed_Event_GUID","features":[208]},{"name":"Window_WindowInteractionState_Property_GUID","features":[208]},{"name":"Window_WindowOpened_Event_GUID","features":[208]},{"name":"Window_WindowVisualState_Property_GUID","features":[208]},{"name":"ZoomUnit","features":[208]},{"name":"ZoomUnit_LargeDecrement","features":[208]},{"name":"ZoomUnit_LargeIncrement","features":[208]},{"name":"ZoomUnit_NoAmount","features":[208]},{"name":"ZoomUnit_SmallDecrement","features":[208]},{"name":"ZoomUnit_SmallIncrement","features":[208]}],"649":[{"name":"ATTRIB_MATTE","features":[55]},{"name":"ATTRIB_TRANSPARENCY","features":[55]},{"name":"AssociateColorProfileWithDeviceA","features":[1,55]},{"name":"AssociateColorProfileWithDeviceW","features":[1,55]},{"name":"BEST_MODE","features":[55]},{"name":"BMFORMAT","features":[55]},{"name":"BM_10b_G3CH","features":[55]},{"name":"BM_10b_Lab","features":[55]},{"name":"BM_10b_RGB","features":[55]},{"name":"BM_10b_XYZ","features":[55]},{"name":"BM_10b_Yxy","features":[55]},{"name":"BM_16b_G3CH","features":[55]},{"name":"BM_16b_GRAY","features":[55]},{"name":"BM_16b_Lab","features":[55]},{"name":"BM_16b_RGB","features":[55]},{"name":"BM_16b_XYZ","features":[55]},{"name":"BM_16b_Yxy","features":[55]},{"name":"BM_32b_scARGB","features":[55]},{"name":"BM_32b_scRGB","features":[55]},{"name":"BM_565RGB","features":[55]},{"name":"BM_5CHANNEL","features":[55]},{"name":"BM_6CHANNEL","features":[55]},{"name":"BM_7CHANNEL","features":[55]},{"name":"BM_8CHANNEL","features":[55]},{"name":"BM_BGRTRIPLETS","features":[55]},{"name":"BM_CMYKQUADS","features":[55]},{"name":"BM_G3CHTRIPLETS","features":[55]},{"name":"BM_GRAY","features":[55]},{"name":"BM_KYMCQUADS","features":[55]},{"name":"BM_LabTRIPLETS","features":[55]},{"name":"BM_NAMED_INDEX","features":[55]},{"name":"BM_R10G10B10A2","features":[55]},{"name":"BM_R10G10B10A2_XR","features":[55]},{"name":"BM_R16G16B16A16_FLOAT","features":[55]},{"name":"BM_RGBTRIPLETS","features":[55]},{"name":"BM_S2DOT13FIXED_scARGB","features":[55]},{"name":"BM_S2DOT13FIXED_scRGB","features":[55]},{"name":"BM_XYZTRIPLETS","features":[55]},{"name":"BM_YxyTRIPLETS","features":[55]},{"name":"BM_x555G3CH","features":[55]},{"name":"BM_x555Lab","features":[55]},{"name":"BM_x555RGB","features":[55]},{"name":"BM_x555XYZ","features":[55]},{"name":"BM_x555Yxy","features":[55]},{"name":"BM_xBGRQUADS","features":[55]},{"name":"BM_xG3CHQUADS","features":[55]},{"name":"BM_xRGBQUADS","features":[55]},{"name":"BlackInformation","features":[1,55]},{"name":"CATID_WcsPlugin","features":[55]},{"name":"CMCheckColors","features":[1,55]},{"name":"CMCheckColorsInGamut","features":[1,12,55]},{"name":"CMCheckRGBs","features":[1,55]},{"name":"CMConvertColorNameToIndex","features":[1,55]},{"name":"CMConvertIndexToColorName","features":[1,55]},{"name":"CMCreateDeviceLinkProfile","features":[1,55]},{"name":"CMCreateMultiProfileTransform","features":[55]},{"name":"CMCreateProfile","features":[1,12,55]},{"name":"CMCreateProfileW","features":[1,12,55]},{"name":"CMCreateTransform","features":[12,55]},{"name":"CMCreateTransformExt","features":[12,55]},{"name":"CMCreateTransformExtW","features":[12,55]},{"name":"CMCreateTransformW","features":[12,55]},{"name":"CMDeleteTransform","features":[1,55]},{"name":"CMGetInfo","features":[55]},{"name":"CMGetNamedProfileInfo","features":[1,55]},{"name":"CMIsProfileValid","features":[1,55]},{"name":"CMM_DESCRIPTION","features":[55]},{"name":"CMM_DLL_VERSION","features":[55]},{"name":"CMM_DRIVER_VERSION","features":[55]},{"name":"CMM_FROM_PROFILE","features":[55]},{"name":"CMM_IDENT","features":[55]},{"name":"CMM_LOGOICON","features":[55]},{"name":"CMM_VERSION","features":[55]},{"name":"CMM_WIN_VERSION","features":[55]},{"name":"CMS_BACKWARD","features":[55]},{"name":"CMS_DISABLEICM","features":[55]},{"name":"CMS_DISABLEINTENT","features":[55]},{"name":"CMS_DISABLERENDERINTENT","features":[55]},{"name":"CMS_ENABLEPROOFING","features":[55]},{"name":"CMS_FORWARD","features":[55]},{"name":"CMS_MONITOROVERFLOW","features":[55]},{"name":"CMS_PRINTEROVERFLOW","features":[55]},{"name":"CMS_SETMONITORPROFILE","features":[55]},{"name":"CMS_SETPRINTERPROFILE","features":[55]},{"name":"CMS_SETPROOFINTENT","features":[55]},{"name":"CMS_SETRENDERINTENT","features":[55]},{"name":"CMS_SETTARGETPROFILE","features":[55]},{"name":"CMS_TARGETOVERFLOW","features":[55]},{"name":"CMS_USEAPPLYCALLBACK","features":[55]},{"name":"CMS_USEDESCRIPTION","features":[55]},{"name":"CMS_USEHOOK","features":[55]},{"name":"CMTranslateColors","features":[1,55]},{"name":"CMTranslateRGB","features":[1,55]},{"name":"CMTranslateRGBs","features":[1,55]},{"name":"CMTranslateRGBsExt","features":[1,55]},{"name":"CMYKCOLOR","features":[55]},{"name":"COLOR","features":[55]},{"name":"COLORDATATYPE","features":[55]},{"name":"COLORMATCHSETUPA","features":[1,55,50]},{"name":"COLORMATCHSETUPW","features":[1,55,50]},{"name":"COLORPROFILESUBTYPE","features":[55]},{"name":"COLORPROFILETYPE","features":[55]},{"name":"COLORTYPE","features":[55]},{"name":"COLOR_10b_R10G10B10A2","features":[55]},{"name":"COLOR_10b_R10G10B10A2_XR","features":[55]},{"name":"COLOR_3_CHANNEL","features":[55]},{"name":"COLOR_5_CHANNEL","features":[55]},{"name":"COLOR_6_CHANNEL","features":[55]},{"name":"COLOR_7_CHANNEL","features":[55]},{"name":"COLOR_8_CHANNEL","features":[55]},{"name":"COLOR_BYTE","features":[55]},{"name":"COLOR_CMYK","features":[55]},{"name":"COLOR_FLOAT","features":[55]},{"name":"COLOR_FLOAT16","features":[55]},{"name":"COLOR_GRAY","features":[55]},{"name":"COLOR_Lab","features":[55]},{"name":"COLOR_MATCH_TO_TARGET_ACTION","features":[55]},{"name":"COLOR_MATCH_VERSION","features":[55]},{"name":"COLOR_NAMED","features":[55]},{"name":"COLOR_RGB","features":[55]},{"name":"COLOR_S2DOT13FIXED","features":[55]},{"name":"COLOR_WORD","features":[55]},{"name":"COLOR_XYZ","features":[55]},{"name":"COLOR_Yxy","features":[55]},{"name":"CPST_ABSOLUTE_COLORIMETRIC","features":[55]},{"name":"CPST_CUSTOM_WORKING_SPACE","features":[55]},{"name":"CPST_EXTENDED_DISPLAY_COLOR_MODE","features":[55]},{"name":"CPST_NONE","features":[55]},{"name":"CPST_PERCEPTUAL","features":[55]},{"name":"CPST_RELATIVE_COLORIMETRIC","features":[55]},{"name":"CPST_RGB_WORKING_SPACE","features":[55]},{"name":"CPST_SATURATION","features":[55]},{"name":"CPST_STANDARD_DISPLAY_COLOR_MODE","features":[55]},{"name":"CPT_CAMP","features":[55]},{"name":"CPT_DMP","features":[55]},{"name":"CPT_GMMP","features":[55]},{"name":"CPT_ICC","features":[55]},{"name":"CSA_A","features":[55]},{"name":"CSA_ABC","features":[55]},{"name":"CSA_CMYK","features":[55]},{"name":"CSA_DEF","features":[55]},{"name":"CSA_DEFG","features":[55]},{"name":"CSA_GRAY","features":[55]},{"name":"CSA_Lab","features":[55]},{"name":"CSA_RGB","features":[55]},{"name":"CS_DELETE_TRANSFORM","features":[55]},{"name":"CS_DISABLE","features":[55]},{"name":"CS_ENABLE","features":[55]},{"name":"CheckBitmapBits","features":[1,55]},{"name":"CheckColors","features":[1,55]},{"name":"CheckColorsInGamut","features":[1,12,55]},{"name":"CloseColorProfile","features":[1,55]},{"name":"ColorCorrectPalette","features":[1,12,55]},{"name":"ColorMatchToTarget","features":[1,12,55]},{"name":"ColorProfileAddDisplayAssociation","features":[1,55]},{"name":"ColorProfileGetDisplayDefault","features":[1,55]},{"name":"ColorProfileGetDisplayList","features":[1,55]},{"name":"ColorProfileGetDisplayUserScope","features":[1,55]},{"name":"ColorProfileRemoveDisplayAssociation","features":[1,55]},{"name":"ColorProfileSetDisplayDefaultAssociation","features":[1,55]},{"name":"ConvertColorNameToIndex","features":[1,55]},{"name":"ConvertIndexToColorName","features":[1,55]},{"name":"CreateColorSpaceA","features":[12,55]},{"name":"CreateColorSpaceW","features":[12,55]},{"name":"CreateColorTransformA","features":[12,55]},{"name":"CreateColorTransformW","features":[12,55]},{"name":"CreateDeviceLinkProfile","features":[1,55]},{"name":"CreateMultiProfileTransform","features":[55]},{"name":"CreateProfileFromLogColorSpaceA","features":[1,12,55]},{"name":"CreateProfileFromLogColorSpaceW","features":[1,12,55]},{"name":"DONT_USE_EMBEDDED_WCS_PROFILES","features":[55]},{"name":"DeleteColorSpace","features":[1,55]},{"name":"DeleteColorTransform","features":[1,55]},{"name":"DisassociateColorProfileFromDeviceA","features":[1,55]},{"name":"DisassociateColorProfileFromDeviceW","features":[1,55]},{"name":"EMRCREATECOLORSPACE","features":[12,55]},{"name":"EMRCREATECOLORSPACEW","features":[12,55]},{"name":"ENABLE_GAMUT_CHECKING","features":[55]},{"name":"ENUMTYPEA","features":[55]},{"name":"ENUMTYPEW","features":[55]},{"name":"ENUM_TYPE_VERSION","features":[55]},{"name":"ET_ATTRIBUTES","features":[55]},{"name":"ET_CLASS","features":[55]},{"name":"ET_CMMTYPE","features":[55]},{"name":"ET_CONNECTIONSPACE","features":[55]},{"name":"ET_CREATOR","features":[55]},{"name":"ET_DATACOLORSPACE","features":[55]},{"name":"ET_DEVICECLASS","features":[55]},{"name":"ET_DEVICENAME","features":[55]},{"name":"ET_DITHERMODE","features":[55]},{"name":"ET_EXTENDEDDISPLAYCOLOR","features":[55]},{"name":"ET_MANUFACTURER","features":[55]},{"name":"ET_MEDIATYPE","features":[55]},{"name":"ET_MODEL","features":[55]},{"name":"ET_PLATFORM","features":[55]},{"name":"ET_PROFILEFLAGS","features":[55]},{"name":"ET_RENDERINGINTENT","features":[55]},{"name":"ET_RESOLUTION","features":[55]},{"name":"ET_SIGNATURE","features":[55]},{"name":"ET_STANDARDDISPLAYCOLOR","features":[55]},{"name":"EnumColorProfilesA","features":[1,55]},{"name":"EnumColorProfilesW","features":[1,55]},{"name":"EnumICMProfilesA","features":[1,12,55]},{"name":"EnumICMProfilesW","features":[1,12,55]},{"name":"FAST_TRANSLATE","features":[55]},{"name":"FLAG_DEPENDENTONDATA","features":[55]},{"name":"FLAG_EMBEDDEDPROFILE","features":[55]},{"name":"FLAG_ENABLE_CHROMATIC_ADAPTATION","features":[55]},{"name":"GENERIC3CHANNEL","features":[55]},{"name":"GRAYCOLOR","features":[55]},{"name":"GamutBoundaryDescription","features":[55]},{"name":"GamutShell","features":[55]},{"name":"GamutShellTriangle","features":[55]},{"name":"GetCMMInfo","features":[55]},{"name":"GetColorDirectoryA","features":[1,55]},{"name":"GetColorDirectoryW","features":[1,55]},{"name":"GetColorProfileElement","features":[1,55]},{"name":"GetColorProfileElementTag","features":[1,55]},{"name":"GetColorProfileFromHandle","features":[1,55]},{"name":"GetColorProfileHeader","features":[1,12,55]},{"name":"GetColorSpace","features":[12,55]},{"name":"GetCountColorProfileElements","features":[1,55]},{"name":"GetDeviceGammaRamp","features":[1,12,55]},{"name":"GetICMProfileA","features":[1,12,55]},{"name":"GetICMProfileW","features":[1,12,55]},{"name":"GetLogColorSpaceA","features":[1,12,55]},{"name":"GetLogColorSpaceW","features":[1,12,55]},{"name":"GetNamedProfileInfo","features":[1,55]},{"name":"GetPS2ColorRenderingDictionary","features":[1,55]},{"name":"GetPS2ColorRenderingIntent","features":[1,55]},{"name":"GetPS2ColorSpaceArray","features":[1,55]},{"name":"GetStandardColorSpaceProfileA","features":[1,55]},{"name":"GetStandardColorSpaceProfileW","features":[1,55]},{"name":"HCOLORSPACE","features":[55]},{"name":"HiFiCOLOR","features":[55]},{"name":"ICMENUMPROCA","features":[1,55]},{"name":"ICMENUMPROCW","features":[1,55]},{"name":"ICM_ADDPROFILE","features":[55]},{"name":"ICM_COMMAND","features":[55]},{"name":"ICM_DELETEPROFILE","features":[55]},{"name":"ICM_DONE_OUTSIDEDC","features":[55]},{"name":"ICM_MODE","features":[55]},{"name":"ICM_OFF","features":[55]},{"name":"ICM_ON","features":[55]},{"name":"ICM_QUERY","features":[55]},{"name":"ICM_QUERYMATCH","features":[55]},{"name":"ICM_QUERYPROFILE","features":[55]},{"name":"ICM_REGISTERICMATCHER","features":[55]},{"name":"ICM_SETDEFAULTPROFILE","features":[55]},{"name":"ICM_UNREGISTERICMATCHER","features":[55]},{"name":"IDeviceModelPlugIn","features":[55]},{"name":"IGamutMapModelPlugIn","features":[55]},{"name":"INDEX_DONT_CARE","features":[55]},{"name":"INTENT_ABSOLUTE_COLORIMETRIC","features":[55]},{"name":"INTENT_PERCEPTUAL","features":[55]},{"name":"INTENT_RELATIVE_COLORIMETRIC","features":[55]},{"name":"INTENT_SATURATION","features":[55]},{"name":"InstallColorProfileA","features":[1,55]},{"name":"InstallColorProfileW","features":[1,55]},{"name":"IsColorProfileTagPresent","features":[1,55]},{"name":"IsColorProfileValid","features":[1,55]},{"name":"JChColorF","features":[55]},{"name":"JabColorF","features":[55]},{"name":"LCSCSTYPE","features":[55]},{"name":"LCS_CALIBRATED_RGB","features":[55]},{"name":"LCS_WINDOWS_COLOR_SPACE","features":[55]},{"name":"LCS_sRGB","features":[55]},{"name":"LOGCOLORSPACEA","features":[12,55]},{"name":"LOGCOLORSPACEW","features":[12,55]},{"name":"LPBMCALLBACKFN","features":[1,55]},{"name":"LabCOLOR","features":[55]},{"name":"MAX_COLOR_CHANNELS","features":[55]},{"name":"MicrosoftHardwareColorV2","features":[55]},{"name":"NAMEDCOLOR","features":[55]},{"name":"NAMED_PROFILE_INFO","features":[55]},{"name":"NORMAL_MODE","features":[55]},{"name":"OpenColorProfileA","features":[55]},{"name":"OpenColorProfileW","features":[55]},{"name":"PCMSCALLBACKA","features":[1,55,50]},{"name":"PCMSCALLBACKW","features":[1,55,50]},{"name":"PRESERVEBLACK","features":[55]},{"name":"PROFILE","features":[55]},{"name":"PROFILEHEADER","features":[12,55]},{"name":"PROFILE_FILENAME","features":[55]},{"name":"PROFILE_MEMBUFFER","features":[55]},{"name":"PROFILE_READ","features":[55]},{"name":"PROFILE_READWRITE","features":[55]},{"name":"PROOF_MODE","features":[55]},{"name":"PrimaryJabColors","features":[55]},{"name":"PrimaryXYZColors","features":[55]},{"name":"RESERVED","features":[55]},{"name":"RGBCOLOR","features":[55]},{"name":"RegisterCMMA","features":[1,55]},{"name":"RegisterCMMW","features":[1,55]},{"name":"SEQUENTIAL_TRANSFORM","features":[55]},{"name":"SelectCMM","features":[1,55]},{"name":"SetColorProfileElement","features":[1,55]},{"name":"SetColorProfileElementReference","features":[1,55]},{"name":"SetColorProfileElementSize","features":[1,55]},{"name":"SetColorProfileHeader","features":[1,12,55]},{"name":"SetColorSpace","features":[12,55]},{"name":"SetDeviceGammaRamp","features":[1,12,55]},{"name":"SetICMMode","features":[12,55]},{"name":"SetICMProfileA","features":[1,12,55]},{"name":"SetICMProfileW","features":[1,12,55]},{"name":"SetStandardColorSpaceProfileA","features":[1,55]},{"name":"SetStandardColorSpaceProfileW","features":[1,55]},{"name":"SetupColorMatchingA","features":[1,55,50]},{"name":"SetupColorMatchingW","features":[1,55,50]},{"name":"TranslateBitmapBits","features":[1,55]},{"name":"TranslateColors","features":[1,55]},{"name":"USE_RELATIVE_COLORIMETRIC","features":[55]},{"name":"UninstallColorProfileA","features":[1,55]},{"name":"UninstallColorProfileW","features":[1,55]},{"name":"UnregisterCMMA","features":[1,55]},{"name":"UnregisterCMMW","features":[1,55]},{"name":"UpdateICMRegKeyA","features":[1,55]},{"name":"UpdateICMRegKeyW","features":[1,55]},{"name":"VideoCardGammaTable","features":[55]},{"name":"WCS_ALWAYS","features":[55]},{"name":"WCS_DEFAULT","features":[55]},{"name":"WCS_DEVICE_CAPABILITIES_TYPE","features":[55]},{"name":"WCS_DEVICE_MHC2_CAPABILITIES","features":[1,55]},{"name":"WCS_DEVICE_VCGT_CAPABILITIES","features":[1,55]},{"name":"WCS_ICCONLY","features":[55]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE","features":[55]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_CURRENT_USER","features":[55]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_SYSTEM_WIDE","features":[55]},{"name":"WcsAssociateColorProfileWithDevice","features":[1,55]},{"name":"WcsCheckColors","features":[1,55]},{"name":"WcsCreateIccProfile","features":[55]},{"name":"WcsDisassociateColorProfileFromDevice","features":[1,55]},{"name":"WcsEnumColorProfiles","features":[1,55]},{"name":"WcsEnumColorProfilesSize","features":[1,55]},{"name":"WcsGetCalibrationManagementState","features":[1,55]},{"name":"WcsGetDefaultColorProfile","features":[1,55]},{"name":"WcsGetDefaultColorProfileSize","features":[1,55]},{"name":"WcsGetDefaultRenderingIntent","features":[1,55]},{"name":"WcsGetUsePerUserProfiles","features":[1,55]},{"name":"WcsOpenColorProfileA","features":[55]},{"name":"WcsOpenColorProfileW","features":[55]},{"name":"WcsSetCalibrationManagementState","features":[1,55]},{"name":"WcsSetDefaultColorProfile","features":[1,55]},{"name":"WcsSetDefaultRenderingIntent","features":[1,55]},{"name":"WcsSetUsePerUserProfiles","features":[1,55]},{"name":"WcsTranslateColors","features":[1,55]},{"name":"XYZCOLOR","features":[55]},{"name":"XYZColorF","features":[55]},{"name":"YxyCOLOR","features":[55]}],"650":[{"name":"ABS_DOWNDISABLED","features":[40]},{"name":"ABS_DOWNHOT","features":[40]},{"name":"ABS_DOWNHOVER","features":[40]},{"name":"ABS_DOWNNORMAL","features":[40]},{"name":"ABS_DOWNPRESSED","features":[40]},{"name":"ABS_LEFTDISABLED","features":[40]},{"name":"ABS_LEFTHOT","features":[40]},{"name":"ABS_LEFTHOVER","features":[40]},{"name":"ABS_LEFTNORMAL","features":[40]},{"name":"ABS_LEFTPRESSED","features":[40]},{"name":"ABS_RIGHTDISABLED","features":[40]},{"name":"ABS_RIGHTHOT","features":[40]},{"name":"ABS_RIGHTHOVER","features":[40]},{"name":"ABS_RIGHTNORMAL","features":[40]},{"name":"ABS_RIGHTPRESSED","features":[40]},{"name":"ABS_UPDISABLED","features":[40]},{"name":"ABS_UPHOT","features":[40]},{"name":"ABS_UPHOVER","features":[40]},{"name":"ABS_UPNORMAL","features":[40]},{"name":"ABS_UPPRESSED","features":[40]},{"name":"ACM_ISPLAYING","features":[40]},{"name":"ACM_OPEN","features":[40]},{"name":"ACM_OPENA","features":[40]},{"name":"ACM_OPENW","features":[40]},{"name":"ACM_PLAY","features":[40]},{"name":"ACM_STOP","features":[40]},{"name":"ACN_START","features":[40]},{"name":"ACN_STOP","features":[40]},{"name":"ACS_AUTOPLAY","features":[40]},{"name":"ACS_CENTER","features":[40]},{"name":"ACS_TIMER","features":[40]},{"name":"ACS_TRANSPARENT","features":[40]},{"name":"AEROWIZARDPARTS","features":[40]},{"name":"ALLOW_CONTROLS","features":[40]},{"name":"ALLOW_NONCLIENT","features":[40]},{"name":"ALLOW_WEBCONTENT","features":[40]},{"name":"ANIMATE_CLASS","features":[40]},{"name":"ANIMATE_CLASSA","features":[40]},{"name":"ANIMATE_CLASSW","features":[40]},{"name":"ARROWBTNSTATES","features":[40]},{"name":"AW_BUTTON","features":[40]},{"name":"AW_COMMANDAREA","features":[40]},{"name":"AW_CONTENTAREA","features":[40]},{"name":"AW_HEADERAREA","features":[40]},{"name":"AW_S_CONTENTAREA_NOMARGIN","features":[40]},{"name":"AW_S_HEADERAREA_NOMARGIN","features":[40]},{"name":"AW_S_TITLEBAR_ACTIVE","features":[40]},{"name":"AW_S_TITLEBAR_INACTIVE","features":[40]},{"name":"AW_TITLEBAR","features":[40]},{"name":"BACKGROUNDSTATES","features":[40]},{"name":"BACKGROUNDWITHBORDERSTATES","features":[40]},{"name":"BALLOONSTATES","features":[40]},{"name":"BALLOONSTEMSTATES","features":[40]},{"name":"BARBACKGROUNDSTATES","features":[40]},{"name":"BARITEMSTATES","features":[40]},{"name":"BCM_FIRST","features":[40]},{"name":"BCM_GETIDEALSIZE","features":[40]},{"name":"BCM_GETIMAGELIST","features":[40]},{"name":"BCM_GETNOTE","features":[40]},{"name":"BCM_GETNOTELENGTH","features":[40]},{"name":"BCM_GETSPLITINFO","features":[40]},{"name":"BCM_GETTEXTMARGIN","features":[40]},{"name":"BCM_SETDROPDOWNSTATE","features":[40]},{"name":"BCM_SETIMAGELIST","features":[40]},{"name":"BCM_SETNOTE","features":[40]},{"name":"BCM_SETSHIELD","features":[40]},{"name":"BCM_SETSPLITINFO","features":[40]},{"name":"BCM_SETTEXTMARGIN","features":[40]},{"name":"BCN_DROPDOWN","features":[40]},{"name":"BCN_FIRST","features":[40]},{"name":"BCN_HOTITEMCHANGE","features":[40]},{"name":"BCN_LAST","features":[40]},{"name":"BCSIF_GLYPH","features":[40]},{"name":"BCSIF_IMAGE","features":[40]},{"name":"BCSIF_SIZE","features":[40]},{"name":"BCSIF_STYLE","features":[40]},{"name":"BCSS_ALIGNLEFT","features":[40]},{"name":"BCSS_IMAGE","features":[40]},{"name":"BCSS_NOSPLIT","features":[40]},{"name":"BCSS_STRETCH","features":[40]},{"name":"BGTYPE","features":[40]},{"name":"BODYSTATES","features":[40]},{"name":"BORDERSTATES","features":[40]},{"name":"BORDERTYPE","features":[40]},{"name":"BORDER_HSCROLLSTATES","features":[40]},{"name":"BORDER_HVSCROLLSTATES","features":[40]},{"name":"BORDER_NOSCROLLSTATES","features":[40]},{"name":"BORDER_VSCROLLSTATES","features":[40]},{"name":"BPAS_CUBIC","features":[40]},{"name":"BPAS_LINEAR","features":[40]},{"name":"BPAS_NONE","features":[40]},{"name":"BPAS_SINE","features":[40]},{"name":"BPBF_COMPATIBLEBITMAP","features":[40]},{"name":"BPBF_DIB","features":[40]},{"name":"BPBF_TOPDOWNDIB","features":[40]},{"name":"BPBF_TOPDOWNMONODIB","features":[40]},{"name":"BPPF_ERASE","features":[40]},{"name":"BPPF_NOCLIP","features":[40]},{"name":"BPPF_NONCLIENT","features":[40]},{"name":"BP_ANIMATIONPARAMS","features":[40]},{"name":"BP_ANIMATIONSTYLE","features":[40]},{"name":"BP_BUFFERFORMAT","features":[40]},{"name":"BP_CHECKBOX","features":[40]},{"name":"BP_CHECKBOX_HCDISABLED","features":[40]},{"name":"BP_COMMANDLINK","features":[40]},{"name":"BP_COMMANDLINKGLYPH","features":[40]},{"name":"BP_GROUPBOX","features":[40]},{"name":"BP_GROUPBOX_HCDISABLED","features":[40]},{"name":"BP_PAINTPARAMS","features":[1,12,40]},{"name":"BP_PAINTPARAMS_FLAGS","features":[40]},{"name":"BP_PUSHBUTTON","features":[40]},{"name":"BP_PUSHBUTTONDROPDOWN","features":[40]},{"name":"BP_RADIOBUTTON","features":[40]},{"name":"BP_RADIOBUTTON_HCDISABLED","features":[40]},{"name":"BP_USERBUTTON","features":[40]},{"name":"BST_CHECKED","features":[40]},{"name":"BST_DROPDOWNPUSHED","features":[40]},{"name":"BST_HOT","features":[40]},{"name":"BST_INDETERMINATE","features":[40]},{"name":"BST_UNCHECKED","features":[40]},{"name":"BS_COMMANDLINK","features":[40]},{"name":"BS_DEFCOMMANDLINK","features":[40]},{"name":"BS_DEFSPLITBUTTON","features":[40]},{"name":"BS_SPLITBUTTON","features":[40]},{"name":"BTNS_AUTOSIZE","features":[40]},{"name":"BTNS_BUTTON","features":[40]},{"name":"BTNS_CHECK","features":[40]},{"name":"BTNS_DROPDOWN","features":[40]},{"name":"BTNS_GROUP","features":[40]},{"name":"BTNS_NOPREFIX","features":[40]},{"name":"BTNS_SEP","features":[40]},{"name":"BTNS_SHOWTEXT","features":[40]},{"name":"BTNS_WHOLEDROPDOWN","features":[40]},{"name":"BT_BORDERFILL","features":[40]},{"name":"BT_ELLIPSE","features":[40]},{"name":"BT_IMAGEFILE","features":[40]},{"name":"BT_NONE","features":[40]},{"name":"BT_RECT","features":[40]},{"name":"BT_ROUNDRECT","features":[40]},{"name":"BUTTONPARTS","features":[40]},{"name":"BUTTON_IMAGELIST","features":[1,40]},{"name":"BUTTON_IMAGELIST_ALIGN","features":[40]},{"name":"BUTTON_IMAGELIST_ALIGN_BOTTOM","features":[40]},{"name":"BUTTON_IMAGELIST_ALIGN_CENTER","features":[40]},{"name":"BUTTON_IMAGELIST_ALIGN_LEFT","features":[40]},{"name":"BUTTON_IMAGELIST_ALIGN_RIGHT","features":[40]},{"name":"BUTTON_IMAGELIST_ALIGN_TOP","features":[40]},{"name":"BUTTON_SPLITINFO","features":[1,40]},{"name":"BeginBufferedAnimation","features":[1,12,40]},{"name":"BeginBufferedPaint","features":[1,12,40]},{"name":"BeginPanningFeedback","features":[1,40]},{"name":"BufferedPaintClear","features":[1,40]},{"name":"BufferedPaintInit","features":[40]},{"name":"BufferedPaintRenderAnimation","features":[1,12,40]},{"name":"BufferedPaintSetAlpha","features":[1,40]},{"name":"BufferedPaintStopAllAnimations","features":[1,40]},{"name":"BufferedPaintUnInit","features":[40]},{"name":"CAPTIONSTATES","features":[40]},{"name":"CA_CENTER","features":[40]},{"name":"CA_LEFT","features":[40]},{"name":"CA_RIGHT","features":[40]},{"name":"CBB_DISABLED","features":[40]},{"name":"CBB_FOCUSED","features":[40]},{"name":"CBB_HOT","features":[40]},{"name":"CBB_NORMAL","features":[40]},{"name":"CBCB_DISABLED","features":[40]},{"name":"CBCB_HOT","features":[40]},{"name":"CBCB_NORMAL","features":[40]},{"name":"CBCB_PRESSED","features":[40]},{"name":"CBDI_HIGHLIGHTED","features":[40]},{"name":"CBDI_NORMAL","features":[40]},{"name":"CBEIF_DI_SETITEM","features":[40]},{"name":"CBEIF_IMAGE","features":[40]},{"name":"CBEIF_INDENT","features":[40]},{"name":"CBEIF_LPARAM","features":[40]},{"name":"CBEIF_OVERLAY","features":[40]},{"name":"CBEIF_SELECTEDIMAGE","features":[40]},{"name":"CBEIF_TEXT","features":[40]},{"name":"CBEMAXSTRLEN","features":[40]},{"name":"CBEM_GETCOMBOCONTROL","features":[40]},{"name":"CBEM_GETEDITCONTROL","features":[40]},{"name":"CBEM_GETEXSTYLE","features":[40]},{"name":"CBEM_GETEXTENDEDSTYLE","features":[40]},{"name":"CBEM_GETIMAGELIST","features":[40]},{"name":"CBEM_GETITEM","features":[40]},{"name":"CBEM_GETITEMA","features":[40]},{"name":"CBEM_GETITEMW","features":[40]},{"name":"CBEM_GETUNICODEFORMAT","features":[40]},{"name":"CBEM_HASEDITCHANGED","features":[40]},{"name":"CBEM_INSERTITEM","features":[40]},{"name":"CBEM_INSERTITEMA","features":[40]},{"name":"CBEM_INSERTITEMW","features":[40]},{"name":"CBEM_SETEXSTYLE","features":[40]},{"name":"CBEM_SETEXTENDEDSTYLE","features":[40]},{"name":"CBEM_SETIMAGELIST","features":[40]},{"name":"CBEM_SETITEM","features":[40]},{"name":"CBEM_SETITEMA","features":[40]},{"name":"CBEM_SETITEMW","features":[40]},{"name":"CBEM_SETUNICODEFORMAT","features":[40]},{"name":"CBEM_SETWINDOWTHEME","features":[40]},{"name":"CBENF_DROPDOWN","features":[40]},{"name":"CBENF_ESCAPE","features":[40]},{"name":"CBENF_KILLFOCUS","features":[40]},{"name":"CBENF_RETURN","features":[40]},{"name":"CBEN_BEGINEDIT","features":[40]},{"name":"CBEN_DELETEITEM","features":[40]},{"name":"CBEN_DRAGBEGIN","features":[40]},{"name":"CBEN_DRAGBEGINA","features":[40]},{"name":"CBEN_DRAGBEGINW","features":[40]},{"name":"CBEN_ENDEDIT","features":[40]},{"name":"CBEN_ENDEDITA","features":[40]},{"name":"CBEN_ENDEDITW","features":[40]},{"name":"CBEN_FIRST","features":[40]},{"name":"CBEN_GETDISPINFOA","features":[40]},{"name":"CBEN_GETDISPINFOW","features":[40]},{"name":"CBEN_INSERTITEM","features":[40]},{"name":"CBEN_LAST","features":[40]},{"name":"CBES_EX_CASESENSITIVE","features":[40]},{"name":"CBES_EX_NOEDITIMAGE","features":[40]},{"name":"CBES_EX_NOEDITIMAGEINDENT","features":[40]},{"name":"CBES_EX_NOSIZELIMIT","features":[40]},{"name":"CBES_EX_PATHWORDBREAKPROC","features":[40]},{"name":"CBES_EX_TEXTENDELLIPSIS","features":[40]},{"name":"CBM_FIRST","features":[40]},{"name":"CBRO_DISABLED","features":[40]},{"name":"CBRO_HOT","features":[40]},{"name":"CBRO_NORMAL","features":[40]},{"name":"CBRO_PRESSED","features":[40]},{"name":"CBS_CHECKEDDISABLED","features":[40]},{"name":"CBS_CHECKEDHOT","features":[40]},{"name":"CBS_CHECKEDNORMAL","features":[40]},{"name":"CBS_CHECKEDPRESSED","features":[40]},{"name":"CBS_DISABLED","features":[40]},{"name":"CBS_EXCLUDEDDISABLED","features":[40]},{"name":"CBS_EXCLUDEDHOT","features":[40]},{"name":"CBS_EXCLUDEDNORMAL","features":[40]},{"name":"CBS_EXCLUDEDPRESSED","features":[40]},{"name":"CBS_HOT","features":[40]},{"name":"CBS_IMPLICITDISABLED","features":[40]},{"name":"CBS_IMPLICITHOT","features":[40]},{"name":"CBS_IMPLICITNORMAL","features":[40]},{"name":"CBS_IMPLICITPRESSED","features":[40]},{"name":"CBS_MIXEDDISABLED","features":[40]},{"name":"CBS_MIXEDHOT","features":[40]},{"name":"CBS_MIXEDNORMAL","features":[40]},{"name":"CBS_MIXEDPRESSED","features":[40]},{"name":"CBS_NORMAL","features":[40]},{"name":"CBS_PUSHED","features":[40]},{"name":"CBS_UNCHECKEDDISABLED","features":[40]},{"name":"CBS_UNCHECKEDHOT","features":[40]},{"name":"CBS_UNCHECKEDNORMAL","features":[40]},{"name":"CBS_UNCHECKEDPRESSED","features":[40]},{"name":"CBTBS_DISABLED","features":[40]},{"name":"CBTBS_FOCUSED","features":[40]},{"name":"CBTBS_HOT","features":[40]},{"name":"CBTBS_NORMAL","features":[40]},{"name":"CBXSL_DISABLED","features":[40]},{"name":"CBXSL_HOT","features":[40]},{"name":"CBXSL_NORMAL","features":[40]},{"name":"CBXSL_PRESSED","features":[40]},{"name":"CBXSR_DISABLED","features":[40]},{"name":"CBXSR_HOT","features":[40]},{"name":"CBXSR_NORMAL","features":[40]},{"name":"CBXSR_PRESSED","features":[40]},{"name":"CBXS_DISABLED","features":[40]},{"name":"CBXS_HOT","features":[40]},{"name":"CBXS_NORMAL","features":[40]},{"name":"CBXS_PRESSED","features":[40]},{"name":"CB_GETCUEBANNER","features":[40]},{"name":"CB_GETMINVISIBLE","features":[40]},{"name":"CB_SETCUEBANNER","features":[40]},{"name":"CB_SETMINVISIBLE","features":[40]},{"name":"CCF_NOTEXT","features":[40]},{"name":"CCHCCCLASS","features":[40]},{"name":"CCHCCDESC","features":[40]},{"name":"CCHCCTEXT","features":[40]},{"name":"CCINFOA","features":[1,12,40]},{"name":"CCINFOW","features":[1,12,40]},{"name":"CCM_DPISCALE","features":[40]},{"name":"CCM_FIRST","features":[40]},{"name":"CCM_GETCOLORSCHEME","features":[40]},{"name":"CCM_GETDROPTARGET","features":[40]},{"name":"CCM_GETUNICODEFORMAT","features":[40]},{"name":"CCM_GETVERSION","features":[40]},{"name":"CCM_LAST","features":[40]},{"name":"CCM_SETBKCOLOR","features":[40]},{"name":"CCM_SETCOLORSCHEME","features":[40]},{"name":"CCM_SETNOTIFYWINDOW","features":[40]},{"name":"CCM_SETUNICODEFORMAT","features":[40]},{"name":"CCM_SETVERSION","features":[40]},{"name":"CCM_SETWINDOWTHEME","features":[40]},{"name":"CCSTYLEA","features":[40]},{"name":"CCSTYLEFLAGA","features":[40]},{"name":"CCSTYLEFLAGW","features":[40]},{"name":"CCSTYLEW","features":[40]},{"name":"CCS_ADJUSTABLE","features":[40]},{"name":"CCS_BOTTOM","features":[40]},{"name":"CCS_NODIVIDER","features":[40]},{"name":"CCS_NOMOVEY","features":[40]},{"name":"CCS_NOPARENTALIGN","features":[40]},{"name":"CCS_NORESIZE","features":[40]},{"name":"CCS_TOP","features":[40]},{"name":"CCS_VERT","features":[40]},{"name":"CDDS_ITEM","features":[40]},{"name":"CDDS_ITEMPOSTERASE","features":[40]},{"name":"CDDS_ITEMPOSTPAINT","features":[40]},{"name":"CDDS_ITEMPREERASE","features":[40]},{"name":"CDDS_ITEMPREPAINT","features":[40]},{"name":"CDDS_POSTERASE","features":[40]},{"name":"CDDS_POSTPAINT","features":[40]},{"name":"CDDS_PREERASE","features":[40]},{"name":"CDDS_PREPAINT","features":[40]},{"name":"CDDS_SUBITEM","features":[40]},{"name":"CDIS_CHECKED","features":[40]},{"name":"CDIS_DEFAULT","features":[40]},{"name":"CDIS_DISABLED","features":[40]},{"name":"CDIS_DROPHILITED","features":[40]},{"name":"CDIS_FOCUS","features":[40]},{"name":"CDIS_GRAYED","features":[40]},{"name":"CDIS_HOT","features":[40]},{"name":"CDIS_INDETERMINATE","features":[40]},{"name":"CDIS_MARKED","features":[40]},{"name":"CDIS_NEARHOT","features":[40]},{"name":"CDIS_OTHERSIDEHOT","features":[40]},{"name":"CDIS_SELECTED","features":[40]},{"name":"CDIS_SHOWKEYBOARDCUES","features":[40]},{"name":"CDN_FIRST","features":[40]},{"name":"CDN_LAST","features":[40]},{"name":"CDRF_DODEFAULT","features":[40]},{"name":"CDRF_DOERASE","features":[40]},{"name":"CDRF_NEWFONT","features":[40]},{"name":"CDRF_NOTIFYITEMDRAW","features":[40]},{"name":"CDRF_NOTIFYPOSTERASE","features":[40]},{"name":"CDRF_NOTIFYPOSTPAINT","features":[40]},{"name":"CDRF_NOTIFYSUBITEMDRAW","features":[40]},{"name":"CDRF_SKIPDEFAULT","features":[40]},{"name":"CDRF_SKIPPOSTPAINT","features":[40]},{"name":"CHECKBOXSTATES","features":[40]},{"name":"CHEVRONSTATES","features":[40]},{"name":"CHEVRONVERTSTATES","features":[40]},{"name":"CHEVSV_HOT","features":[40]},{"name":"CHEVSV_NORMAL","features":[40]},{"name":"CHEVSV_PRESSED","features":[40]},{"name":"CHEVS_HOT","features":[40]},{"name":"CHEVS_NORMAL","features":[40]},{"name":"CHEVS_PRESSED","features":[40]},{"name":"CLOCKPARTS","features":[40]},{"name":"CLOCKSTATES","features":[40]},{"name":"CLOSEBUTTONSTATES","features":[40]},{"name":"CLOSESTATES","features":[40]},{"name":"CLP_TIME","features":[40]},{"name":"CLR_DEFAULT","features":[40]},{"name":"CLR_HILIGHT","features":[40]},{"name":"CLR_NONE","features":[40]},{"name":"CLS_HOT","features":[40]},{"name":"CLS_NORMAL","features":[40]},{"name":"CLS_PRESSED","features":[40]},{"name":"CMB_MASKED","features":[40]},{"name":"CMDLGS_DEFAULTED","features":[40]},{"name":"CMDLGS_DISABLED","features":[40]},{"name":"CMDLGS_HOT","features":[40]},{"name":"CMDLGS_NORMAL","features":[40]},{"name":"CMDLGS_PRESSED","features":[40]},{"name":"CMDLS_DEFAULTED","features":[40]},{"name":"CMDLS_DEFAULTED_ANIMATING","features":[40]},{"name":"CMDLS_DISABLED","features":[40]},{"name":"CMDLS_HOT","features":[40]},{"name":"CMDLS_NORMAL","features":[40]},{"name":"CMDLS_PRESSED","features":[40]},{"name":"COLLAPSEBUTTONSTATES","features":[40]},{"name":"COLORMAP","features":[1,40]},{"name":"COLORMGMTDLGORD","features":[40]},{"name":"COLORSCHEME","features":[1,40]},{"name":"COMBOBOXEXITEMA","features":[1,40]},{"name":"COMBOBOXEXITEMW","features":[1,40]},{"name":"COMBOBOXINFO","features":[1,40]},{"name":"COMBOBOXINFO_BUTTON_STATE","features":[40]},{"name":"COMBOBOXPARTS","features":[40]},{"name":"COMBOBOXSTYLESTATES","features":[40]},{"name":"COMBOBOX_EX_ITEM_FLAGS","features":[40]},{"name":"COMCTL32_VERSION","features":[40]},{"name":"COMMANDLINKGLYPHSTATES","features":[40]},{"name":"COMMANDLINKSTATES","features":[40]},{"name":"COMMUNICATIONSPARTS","features":[40]},{"name":"COMPAREITEMSTRUCT","features":[1,40]},{"name":"CONTENTALIGNMENT","features":[40]},{"name":"CONTENTAREASTATES","features":[40]},{"name":"CONTENTLINKSTATES","features":[40]},{"name":"CONTENTPANESTATES","features":[40]},{"name":"CONTROLLABELSTATES","features":[40]},{"name":"CONTROLPANELPARTS","features":[40]},{"name":"COPYSTATES","features":[40]},{"name":"CPANEL_BANNERAREA","features":[40]},{"name":"CPANEL_BODYTEXT","features":[40]},{"name":"CPANEL_BODYTITLE","features":[40]},{"name":"CPANEL_BUTTON","features":[40]},{"name":"CPANEL_CONTENTLINK","features":[40]},{"name":"CPANEL_CONTENTPANE","features":[40]},{"name":"CPANEL_CONTENTPANELABEL","features":[40]},{"name":"CPANEL_CONTENTPANELINE","features":[40]},{"name":"CPANEL_GROUPTEXT","features":[40]},{"name":"CPANEL_HELPLINK","features":[40]},{"name":"CPANEL_LARGECOMMANDAREA","features":[40]},{"name":"CPANEL_MESSAGETEXT","features":[40]},{"name":"CPANEL_NAVIGATIONPANE","features":[40]},{"name":"CPANEL_NAVIGATIONPANELABEL","features":[40]},{"name":"CPANEL_NAVIGATIONPANELINE","features":[40]},{"name":"CPANEL_SECTIONTITLELINK","features":[40]},{"name":"CPANEL_SMALLCOMMANDAREA","features":[40]},{"name":"CPANEL_TASKLINK","features":[40]},{"name":"CPANEL_TITLE","features":[40]},{"name":"CPCL_DISABLED","features":[40]},{"name":"CPCL_HOT","features":[40]},{"name":"CPCL_NORMAL","features":[40]},{"name":"CPCL_PRESSED","features":[40]},{"name":"CPHL_DISABLED","features":[40]},{"name":"CPHL_HOT","features":[40]},{"name":"CPHL_NORMAL","features":[40]},{"name":"CPHL_PRESSED","features":[40]},{"name":"CPSTL_HOT","features":[40]},{"name":"CPSTL_NORMAL","features":[40]},{"name":"CPTL_DISABLED","features":[40]},{"name":"CPTL_HOT","features":[40]},{"name":"CPTL_NORMAL","features":[40]},{"name":"CPTL_PAGE","features":[40]},{"name":"CPTL_PRESSED","features":[40]},{"name":"CP_BACKGROUND","features":[40]},{"name":"CP_BORDER","features":[40]},{"name":"CP_CUEBANNER","features":[40]},{"name":"CP_DROPDOWNBUTTON","features":[40]},{"name":"CP_DROPDOWNBUTTONLEFT","features":[40]},{"name":"CP_DROPDOWNBUTTONRIGHT","features":[40]},{"name":"CP_DROPDOWNITEM","features":[40]},{"name":"CP_READONLY","features":[40]},{"name":"CP_TRANSPARENTBACKGROUND","features":[40]},{"name":"CREATELINKSTATES","features":[40]},{"name":"CSST_TAB","features":[40]},{"name":"CSTB_HOT","features":[40]},{"name":"CSTB_NORMAL","features":[40]},{"name":"CSTB_SELECTED","features":[40]},{"name":"CS_ACTIVE","features":[40]},{"name":"CS_DISABLED","features":[40]},{"name":"CS_INACTIVE","features":[40]},{"name":"CUEBANNERSTATES","features":[40]},{"name":"CheckDlgButton","features":[1,40]},{"name":"CheckRadioButton","features":[1,40]},{"name":"CloseThemeData","features":[40]},{"name":"CreateMappedBitmap","features":[1,12,40]},{"name":"CreatePropertySheetPageA","features":[1,12,40,50]},{"name":"CreatePropertySheetPageW","features":[1,12,40,50]},{"name":"CreateStatusWindowA","features":[1,40]},{"name":"CreateStatusWindowW","features":[1,40]},{"name":"CreateSyntheticPointerDevice","features":[40,50]},{"name":"CreateToolbarEx","features":[1,40]},{"name":"CreateUpDownControl","features":[1,40]},{"name":"DATEBORDERSTATES","features":[40]},{"name":"DATEPICKERPARTS","features":[40]},{"name":"DATETEXTSTATES","features":[40]},{"name":"DATETIMEPICKERINFO","features":[1,40]},{"name":"DATETIMEPICK_CLASS","features":[40]},{"name":"DATETIMEPICK_CLASSA","features":[40]},{"name":"DATETIMEPICK_CLASSW","features":[40]},{"name":"DA_ERR","features":[40]},{"name":"DA_LAST","features":[40]},{"name":"DDCOPY_HIGHLIGHT","features":[40]},{"name":"DDCOPY_NOHIGHLIGHT","features":[40]},{"name":"DDCREATELINK_HIGHLIGHT","features":[40]},{"name":"DDCREATELINK_NOHIGHLIGHT","features":[40]},{"name":"DDL_ARCHIVE","features":[40]},{"name":"DDL_DIRECTORY","features":[40]},{"name":"DDL_DRIVES","features":[40]},{"name":"DDL_EXCLUSIVE","features":[40]},{"name":"DDL_HIDDEN","features":[40]},{"name":"DDL_POSTMSGS","features":[40]},{"name":"DDL_READONLY","features":[40]},{"name":"DDL_READWRITE","features":[40]},{"name":"DDL_SYSTEM","features":[40]},{"name":"DDMOVE_HIGHLIGHT","features":[40]},{"name":"DDMOVE_NOHIGHLIGHT","features":[40]},{"name":"DDNONE_HIGHLIGHT","features":[40]},{"name":"DDNONE_NOHIGHLIGHT","features":[40]},{"name":"DDUPDATEMETADATA_HIGHLIGHT","features":[40]},{"name":"DDUPDATEMETADATA_NOHIGHLIGHT","features":[40]},{"name":"DDWARNING_HIGHLIGHT","features":[40]},{"name":"DDWARNING_NOHIGHLIGHT","features":[40]},{"name":"DD_COPY","features":[40]},{"name":"DD_CREATELINK","features":[40]},{"name":"DD_IMAGEBG","features":[40]},{"name":"DD_MOVE","features":[40]},{"name":"DD_NONE","features":[40]},{"name":"DD_TEXTBG","features":[40]},{"name":"DD_UPDATEMETADATA","features":[40]},{"name":"DD_WARNING","features":[40]},{"name":"DELETEITEMSTRUCT","features":[1,40]},{"name":"DLG_BUTTON_CHECK_STATE","features":[40]},{"name":"DLG_DIR_LIST_FILE_TYPE","features":[40]},{"name":"DL_BEGINDRAG","features":[40]},{"name":"DL_CANCELDRAG","features":[40]},{"name":"DL_COPYCURSOR","features":[40]},{"name":"DL_CURSORSET","features":[40]},{"name":"DL_DRAGGING","features":[40]},{"name":"DL_DROPPED","features":[40]},{"name":"DL_MOVECURSOR","features":[40]},{"name":"DL_STOPCURSOR","features":[40]},{"name":"DNHZS_DISABLED","features":[40]},{"name":"DNHZS_HOT","features":[40]},{"name":"DNHZS_NORMAL","features":[40]},{"name":"DNHZS_PRESSED","features":[40]},{"name":"DNS_DISABLED","features":[40]},{"name":"DNS_HOT","features":[40]},{"name":"DNS_NORMAL","features":[40]},{"name":"DNS_PRESSED","features":[40]},{"name":"DOWNHORZSTATES","features":[40]},{"name":"DOWNSTATES","features":[40]},{"name":"DPAMM_DELETE","features":[40]},{"name":"DPAMM_INSERT","features":[40]},{"name":"DPAMM_MERGE","features":[40]},{"name":"DPAMM_MESSAGE","features":[40]},{"name":"DPAM_INTERSECT","features":[40]},{"name":"DPAM_NORMAL","features":[40]},{"name":"DPAM_SORTED","features":[40]},{"name":"DPAM_UNION","features":[40]},{"name":"DPASTREAMINFO","features":[40]},{"name":"DPAS_INSERTAFTER","features":[40]},{"name":"DPAS_INSERTBEFORE","features":[40]},{"name":"DPAS_SORTED","features":[40]},{"name":"DPA_APPEND","features":[40]},{"name":"DPA_Clone","features":[40]},{"name":"DPA_Create","features":[40]},{"name":"DPA_CreateEx","features":[1,40]},{"name":"DPA_DeleteAllPtrs","features":[1,40]},{"name":"DPA_DeletePtr","features":[40]},{"name":"DPA_Destroy","features":[1,40]},{"name":"DPA_DestroyCallback","features":[40]},{"name":"DPA_ERR","features":[40]},{"name":"DPA_EnumCallback","features":[40]},{"name":"DPA_GetPtr","features":[40]},{"name":"DPA_GetPtrIndex","features":[40]},{"name":"DPA_GetSize","features":[40]},{"name":"DPA_Grow","features":[1,40]},{"name":"DPA_InsertPtr","features":[40]},{"name":"DPA_LoadStream","features":[40]},{"name":"DPA_Merge","features":[1,40]},{"name":"DPA_SaveStream","features":[40]},{"name":"DPA_Search","features":[1,40]},{"name":"DPA_SetPtr","features":[1,40]},{"name":"DPA_Sort","features":[1,40]},{"name":"DPDB_DISABLED","features":[40]},{"name":"DPDB_FOCUSED","features":[40]},{"name":"DPDB_HOT","features":[40]},{"name":"DPDB_NORMAL","features":[40]},{"name":"DPDT_DISABLED","features":[40]},{"name":"DPDT_NORMAL","features":[40]},{"name":"DPDT_SELECTED","features":[40]},{"name":"DPSCBR_DISABLED","features":[40]},{"name":"DPSCBR_HOT","features":[40]},{"name":"DPSCBR_NORMAL","features":[40]},{"name":"DPSCBR_PRESSED","features":[40]},{"name":"DP_DATEBORDER","features":[40]},{"name":"DP_DATETEXT","features":[40]},{"name":"DP_SHOWCALENDARBUTTONRIGHT","features":[40]},{"name":"DRAGDROPPARTS","features":[40]},{"name":"DRAGLISTINFO","features":[1,40]},{"name":"DRAGLISTINFO_NOTIFICATION_FLAGS","features":[40]},{"name":"DRAGLISTMSGSTRING","features":[40]},{"name":"DRAWITEMSTRUCT","features":[1,12,40]},{"name":"DRAWITEMSTRUCT_CTL_TYPE","features":[40]},{"name":"DRAW_THEME_PARENT_BACKGROUND_FLAGS","features":[40]},{"name":"DROPDOWNBUTTONLEFTSTATES","features":[40]},{"name":"DROPDOWNBUTTONRIGHTSTATES","features":[40]},{"name":"DROPDOWNITEMSTATES","features":[40]},{"name":"DSA_APPEND","features":[40]},{"name":"DSA_Clone","features":[40]},{"name":"DSA_Create","features":[40]},{"name":"DSA_DeleteAllItems","features":[1,40]},{"name":"DSA_DeleteItem","features":[1,40]},{"name":"DSA_Destroy","features":[1,40]},{"name":"DSA_DestroyCallback","features":[40]},{"name":"DSA_ERR","features":[40]},{"name":"DSA_EnumCallback","features":[40]},{"name":"DSA_GetItem","features":[1,40]},{"name":"DSA_GetItemPtr","features":[40]},{"name":"DSA_GetSize","features":[40]},{"name":"DSA_InsertItem","features":[40]},{"name":"DSA_SetItem","features":[1,40]},{"name":"DSA_Sort","features":[1,40]},{"name":"DTBGOPTS","features":[1,40]},{"name":"DTBG_CLIPRECT","features":[40]},{"name":"DTBG_COMPUTINGREGION","features":[40]},{"name":"DTBG_DRAWSOLID","features":[40]},{"name":"DTBG_MIRRORDC","features":[40]},{"name":"DTBG_NOMIRROR","features":[40]},{"name":"DTBG_OMITBORDER","features":[40]},{"name":"DTBG_OMITCONTENT","features":[40]},{"name":"DTM_CLOSEMONTHCAL","features":[40]},{"name":"DTM_FIRST","features":[40]},{"name":"DTM_GETDATETIMEPICKERINFO","features":[40]},{"name":"DTM_GETIDEALSIZE","features":[40]},{"name":"DTM_GETMCCOLOR","features":[40]},{"name":"DTM_GETMCFONT","features":[40]},{"name":"DTM_GETMCSTYLE","features":[40]},{"name":"DTM_GETMONTHCAL","features":[40]},{"name":"DTM_GETRANGE","features":[40]},{"name":"DTM_GETSYSTEMTIME","features":[40]},{"name":"DTM_SETFORMAT","features":[40]},{"name":"DTM_SETFORMATA","features":[40]},{"name":"DTM_SETFORMATW","features":[40]},{"name":"DTM_SETMCCOLOR","features":[40]},{"name":"DTM_SETMCFONT","features":[40]},{"name":"DTM_SETMCSTYLE","features":[40]},{"name":"DTM_SETRANGE","features":[40]},{"name":"DTM_SETSYSTEMTIME","features":[40]},{"name":"DTN_CLOSEUP","features":[40]},{"name":"DTN_DATETIMECHANGE","features":[40]},{"name":"DTN_DROPDOWN","features":[40]},{"name":"DTN_FIRST","features":[40]},{"name":"DTN_FIRST2","features":[40]},{"name":"DTN_FORMAT","features":[40]},{"name":"DTN_FORMATA","features":[40]},{"name":"DTN_FORMATQUERY","features":[40]},{"name":"DTN_FORMATQUERYA","features":[40]},{"name":"DTN_FORMATQUERYW","features":[40]},{"name":"DTN_FORMATW","features":[40]},{"name":"DTN_LAST","features":[40]},{"name":"DTN_LAST2","features":[40]},{"name":"DTN_USERSTRING","features":[40]},{"name":"DTN_USERSTRINGA","features":[40]},{"name":"DTN_USERSTRINGW","features":[40]},{"name":"DTN_WMKEYDOWN","features":[40]},{"name":"DTN_WMKEYDOWNA","features":[40]},{"name":"DTN_WMKEYDOWNW","features":[40]},{"name":"DTPB_USECTLCOLORSTATIC","features":[40]},{"name":"DTPB_USEERASEBKGND","features":[40]},{"name":"DTPB_WINDOWDC","features":[40]},{"name":"DTS_APPCANPARSE","features":[40]},{"name":"DTS_LONGDATEFORMAT","features":[40]},{"name":"DTS_RIGHTALIGN","features":[40]},{"name":"DTS_SHORTDATECENTURYFORMAT","features":[40]},{"name":"DTS_SHORTDATEFORMAT","features":[40]},{"name":"DTS_SHOWNONE","features":[40]},{"name":"DTS_TIMEFORMAT","features":[40]},{"name":"DTS_UPDOWN","features":[40]},{"name":"DTTOPTS","features":[1,12,40]},{"name":"DTTOPTS_FLAGS","features":[40]},{"name":"DTT_APPLYOVERLAY","features":[40]},{"name":"DTT_BORDERCOLOR","features":[40]},{"name":"DTT_BORDERSIZE","features":[40]},{"name":"DTT_CALCRECT","features":[40]},{"name":"DTT_CALLBACK","features":[40]},{"name":"DTT_CALLBACK_PROC","features":[1,12,40]},{"name":"DTT_COLORPROP","features":[40]},{"name":"DTT_COMPOSITED","features":[40]},{"name":"DTT_FLAGS2VALIDBITS","features":[40]},{"name":"DTT_FONTPROP","features":[40]},{"name":"DTT_GLOWSIZE","features":[40]},{"name":"DTT_GRAYED","features":[40]},{"name":"DTT_SHADOWCOLOR","features":[40]},{"name":"DTT_SHADOWOFFSET","features":[40]},{"name":"DTT_SHADOWTYPE","features":[40]},{"name":"DTT_STATEID","features":[40]},{"name":"DTT_TEXTCOLOR","features":[40]},{"name":"DTT_VALIDBITS","features":[40]},{"name":"DestroyPropertySheetPage","features":[1,40]},{"name":"DestroySyntheticPointerDevice","features":[40]},{"name":"DlgDirListA","features":[1,40]},{"name":"DlgDirListComboBoxA","features":[1,40]},{"name":"DlgDirListComboBoxW","features":[1,40]},{"name":"DlgDirListW","features":[1,40]},{"name":"DlgDirSelectComboBoxExA","features":[1,40]},{"name":"DlgDirSelectComboBoxExW","features":[1,40]},{"name":"DlgDirSelectExA","features":[1,40]},{"name":"DlgDirSelectExW","features":[1,40]},{"name":"DrawInsert","features":[1,40]},{"name":"DrawShadowText","features":[1,12,40]},{"name":"DrawStatusTextA","features":[1,12,40]},{"name":"DrawStatusTextW","features":[1,12,40]},{"name":"DrawThemeBackground","features":[1,12,40]},{"name":"DrawThemeBackgroundEx","features":[1,12,40]},{"name":"DrawThemeEdge","features":[1,12,40]},{"name":"DrawThemeIcon","features":[1,12,40]},{"name":"DrawThemeParentBackground","features":[1,12,40]},{"name":"DrawThemeParentBackgroundEx","features":[1,12,40]},{"name":"DrawThemeText","features":[1,12,40]},{"name":"DrawThemeTextEx","features":[1,12,40]},{"name":"EBHC_HOT","features":[40]},{"name":"EBHC_NORMAL","features":[40]},{"name":"EBHC_PRESSED","features":[40]},{"name":"EBHP_HOT","features":[40]},{"name":"EBHP_NORMAL","features":[40]},{"name":"EBHP_PRESSED","features":[40]},{"name":"EBHP_SELECTEDHOT","features":[40]},{"name":"EBHP_SELECTEDNORMAL","features":[40]},{"name":"EBHP_SELECTEDPRESSED","features":[40]},{"name":"EBM_HOT","features":[40]},{"name":"EBM_NORMAL","features":[40]},{"name":"EBM_PRESSED","features":[40]},{"name":"EBNGC_HOT","features":[40]},{"name":"EBNGC_NORMAL","features":[40]},{"name":"EBNGC_PRESSED","features":[40]},{"name":"EBNGE_HOT","features":[40]},{"name":"EBNGE_NORMAL","features":[40]},{"name":"EBNGE_PRESSED","features":[40]},{"name":"EBP_HEADERBACKGROUND","features":[40]},{"name":"EBP_HEADERCLOSE","features":[40]},{"name":"EBP_HEADERPIN","features":[40]},{"name":"EBP_IEBARMENU","features":[40]},{"name":"EBP_NORMALGROUPBACKGROUND","features":[40]},{"name":"EBP_NORMALGROUPCOLLAPSE","features":[40]},{"name":"EBP_NORMALGROUPEXPAND","features":[40]},{"name":"EBP_NORMALGROUPHEAD","features":[40]},{"name":"EBP_SPECIALGROUPBACKGROUND","features":[40]},{"name":"EBP_SPECIALGROUPCOLLAPSE","features":[40]},{"name":"EBP_SPECIALGROUPEXPAND","features":[40]},{"name":"EBP_SPECIALGROUPHEAD","features":[40]},{"name":"EBSGC_HOT","features":[40]},{"name":"EBSGC_NORMAL","features":[40]},{"name":"EBSGC_PRESSED","features":[40]},{"name":"EBSGE_HOT","features":[40]},{"name":"EBSGE_NORMAL","features":[40]},{"name":"EBSGE_PRESSED","features":[40]},{"name":"EBS_ASSIST","features":[40]},{"name":"EBS_DISABLED","features":[40]},{"name":"EBS_FOCUSED","features":[40]},{"name":"EBS_HOT","features":[40]},{"name":"EBS_NORMAL","features":[40]},{"name":"EBS_READONLY","features":[40]},{"name":"EBWBS_DISABLED","features":[40]},{"name":"EBWBS_FOCUSED","features":[40]},{"name":"EBWBS_HOT","features":[40]},{"name":"EBWBS_NORMAL","features":[40]},{"name":"ECM_FIRST","features":[40]},{"name":"EC_ENDOFLINE","features":[40]},{"name":"EC_ENDOFLINE_CR","features":[40]},{"name":"EC_ENDOFLINE_CRLF","features":[40]},{"name":"EC_ENDOFLINE_DETECTFROMCONTENT","features":[40]},{"name":"EC_ENDOFLINE_LF","features":[40]},{"name":"EC_SEARCHWEB_ENTRYPOINT","features":[40]},{"name":"EC_SEARCHWEB_ENTRYPOINT_CONTEXTMENU","features":[40]},{"name":"EC_SEARCHWEB_ENTRYPOINT_EXTERNAL","features":[40]},{"name":"EDITBALLOONTIP","features":[40]},{"name":"EDITBALLOONTIP_ICON","features":[40]},{"name":"EDITBORDER_HSCROLLSTATES","features":[40]},{"name":"EDITBORDER_HVSCROLLSTATES","features":[40]},{"name":"EDITBORDER_NOSCROLLSTATES","features":[40]},{"name":"EDITBORDER_VSCROLLSTATES","features":[40]},{"name":"EDITPARTS","features":[40]},{"name":"EDITTEXTSTATES","features":[40]},{"name":"EDITWORDBREAKPROCA","features":[40]},{"name":"EDITWORDBREAKPROCW","features":[40]},{"name":"EMF_CENTERED","features":[40]},{"name":"EMPTYMARKUPPARTS","features":[40]},{"name":"EMP_MARKUPTEXT","features":[40]},{"name":"EMT_LINKTEXT","features":[40]},{"name":"EMT_NORMALTEXT","features":[40]},{"name":"EM_CANUNDO","features":[40]},{"name":"EM_CHARFROMPOS","features":[40]},{"name":"EM_EMPTYUNDOBUFFER","features":[40]},{"name":"EM_ENABLEFEATURE","features":[40]},{"name":"EM_ENABLESEARCHWEB","features":[40]},{"name":"EM_FILELINEFROMCHAR","features":[40]},{"name":"EM_FILELINEINDEX","features":[40]},{"name":"EM_FILELINELENGTH","features":[40]},{"name":"EM_FMTLINES","features":[40]},{"name":"EM_GETCARETINDEX","features":[40]},{"name":"EM_GETCUEBANNER","features":[40]},{"name":"EM_GETENDOFLINE","features":[40]},{"name":"EM_GETEXTENDEDSTYLE","features":[40]},{"name":"EM_GETFILELINE","features":[40]},{"name":"EM_GETFILELINECOUNT","features":[40]},{"name":"EM_GETFIRSTVISIBLELINE","features":[40]},{"name":"EM_GETHANDLE","features":[40]},{"name":"EM_GETHILITE","features":[40]},{"name":"EM_GETIMESTATUS","features":[40]},{"name":"EM_GETLIMITTEXT","features":[40]},{"name":"EM_GETLINE","features":[40]},{"name":"EM_GETLINECOUNT","features":[40]},{"name":"EM_GETMARGINS","features":[40]},{"name":"EM_GETMODIFY","features":[40]},{"name":"EM_GETPASSWORDCHAR","features":[40]},{"name":"EM_GETRECT","features":[40]},{"name":"EM_GETSEL","features":[40]},{"name":"EM_GETTHUMB","features":[40]},{"name":"EM_GETWORDBREAKPROC","features":[40]},{"name":"EM_HIDEBALLOONTIP","features":[40]},{"name":"EM_LIMITTEXT","features":[40]},{"name":"EM_LINEFROMCHAR","features":[40]},{"name":"EM_LINEINDEX","features":[40]},{"name":"EM_LINELENGTH","features":[40]},{"name":"EM_LINESCROLL","features":[40]},{"name":"EM_NOSETFOCUS","features":[40]},{"name":"EM_POSFROMCHAR","features":[40]},{"name":"EM_REPLACESEL","features":[40]},{"name":"EM_SCROLL","features":[40]},{"name":"EM_SCROLLCARET","features":[40]},{"name":"EM_SEARCHWEB","features":[40]},{"name":"EM_SETCARETINDEX","features":[40]},{"name":"EM_SETCUEBANNER","features":[40]},{"name":"EM_SETENDOFLINE","features":[40]},{"name":"EM_SETEXTENDEDSTYLE","features":[40]},{"name":"EM_SETHANDLE","features":[40]},{"name":"EM_SETHILITE","features":[40]},{"name":"EM_SETIMESTATUS","features":[40]},{"name":"EM_SETLIMITTEXT","features":[40]},{"name":"EM_SETMARGINS","features":[40]},{"name":"EM_SETMODIFY","features":[40]},{"name":"EM_SETPASSWORDCHAR","features":[40]},{"name":"EM_SETREADONLY","features":[40]},{"name":"EM_SETRECT","features":[40]},{"name":"EM_SETRECTNP","features":[40]},{"name":"EM_SETSEL","features":[40]},{"name":"EM_SETTABSTOPS","features":[40]},{"name":"EM_SETWORDBREAKPROC","features":[40]},{"name":"EM_SHOWBALLOONTIP","features":[40]},{"name":"EM_TAKEFOCUS","features":[40]},{"name":"EM_UNDO","features":[40]},{"name":"ENABLE_SCROLL_BAR_ARROWS","features":[40]},{"name":"EN_FIRST","features":[40]},{"name":"EN_LAST","features":[40]},{"name":"EN_SEARCHWEB","features":[40]},{"name":"EPSHV_DISABLED","features":[40]},{"name":"EPSHV_FOCUSED","features":[40]},{"name":"EPSHV_HOT","features":[40]},{"name":"EPSHV_NORMAL","features":[40]},{"name":"EPSH_DISABLED","features":[40]},{"name":"EPSH_FOCUSED","features":[40]},{"name":"EPSH_HOT","features":[40]},{"name":"EPSH_NORMAL","features":[40]},{"name":"EPSN_DISABLED","features":[40]},{"name":"EPSN_FOCUSED","features":[40]},{"name":"EPSN_HOT","features":[40]},{"name":"EPSN_NORMAL","features":[40]},{"name":"EPSV_DISABLED","features":[40]},{"name":"EPSV_FOCUSED","features":[40]},{"name":"EPSV_HOT","features":[40]},{"name":"EPSV_NORMAL","features":[40]},{"name":"EP_BACKGROUND","features":[40]},{"name":"EP_BACKGROUNDWITHBORDER","features":[40]},{"name":"EP_CARET","features":[40]},{"name":"EP_EDITBORDER_HSCROLL","features":[40]},{"name":"EP_EDITBORDER_HVSCROLL","features":[40]},{"name":"EP_EDITBORDER_NOSCROLL","features":[40]},{"name":"EP_EDITBORDER_VSCROLL","features":[40]},{"name":"EP_EDITTEXT","features":[40]},{"name":"EP_PASSWORD","features":[40]},{"name":"ESB_DISABLE_BOTH","features":[40]},{"name":"ESB_DISABLE_DOWN","features":[40]},{"name":"ESB_DISABLE_LEFT","features":[40]},{"name":"ESB_DISABLE_LTUP","features":[40]},{"name":"ESB_DISABLE_RIGHT","features":[40]},{"name":"ESB_DISABLE_RTDN","features":[40]},{"name":"ESB_DISABLE_UP","features":[40]},{"name":"ESB_ENABLE_BOTH","features":[40]},{"name":"ES_EX_ALLOWEOL_CR","features":[40]},{"name":"ES_EX_ALLOWEOL_LF","features":[40]},{"name":"ES_EX_CONVERT_EOL_ON_PASTE","features":[40]},{"name":"ES_EX_ZOOMABLE","features":[40]},{"name":"ETDT_DISABLE","features":[40]},{"name":"ETDT_ENABLE","features":[40]},{"name":"ETDT_USEAEROWIZARDTABTEXTURE","features":[40]},{"name":"ETDT_USETABTEXTURE","features":[40]},{"name":"ETS_ASSIST","features":[40]},{"name":"ETS_CUEBANNER","features":[40]},{"name":"ETS_DISABLED","features":[40]},{"name":"ETS_FOCUSED","features":[40]},{"name":"ETS_HOT","features":[40]},{"name":"ETS_NORMAL","features":[40]},{"name":"ETS_READONLY","features":[40]},{"name":"ETS_SELECTED","features":[40]},{"name":"EXPANDBUTTONSTATES","features":[40]},{"name":"EXPANDOBUTTONSTATES","features":[40]},{"name":"EXPLORERBARPARTS","features":[40]},{"name":"EnableScrollBar","features":[1,40]},{"name":"EnableThemeDialogTexture","features":[1,40]},{"name":"EnableTheming","features":[1,40]},{"name":"EndBufferedAnimation","features":[1,40]},{"name":"EndBufferedPaint","features":[1,40]},{"name":"EndPanningFeedback","features":[1,40]},{"name":"EvaluateProximityToPolygon","features":[1,40]},{"name":"EvaluateProximityToRect","features":[1,40]},{"name":"FBS_EMPHASIZED","features":[40]},{"name":"FBS_NORMAL","features":[40]},{"name":"FEEDBACK_GESTURE_PRESSANDTAP","features":[40]},{"name":"FEEDBACK_MAX","features":[40]},{"name":"FEEDBACK_PEN_BARRELVISUALIZATION","features":[40]},{"name":"FEEDBACK_PEN_DOUBLETAP","features":[40]},{"name":"FEEDBACK_PEN_PRESSANDHOLD","features":[40]},{"name":"FEEDBACK_PEN_RIGHTTAP","features":[40]},{"name":"FEEDBACK_PEN_TAP","features":[40]},{"name":"FEEDBACK_TOUCH_CONTACTVISUALIZATION","features":[40]},{"name":"FEEDBACK_TOUCH_DOUBLETAP","features":[40]},{"name":"FEEDBACK_TOUCH_PRESSANDHOLD","features":[40]},{"name":"FEEDBACK_TOUCH_RIGHTTAP","features":[40]},{"name":"FEEDBACK_TOUCH_TAP","features":[40]},{"name":"FEEDBACK_TYPE","features":[40]},{"name":"FILEOPENORD","features":[40]},{"name":"FILLSTATES","features":[40]},{"name":"FILLTYPE","features":[40]},{"name":"FILLVERTSTATES","features":[40]},{"name":"FINDDLGORD","features":[40]},{"name":"FLH_HOVER","features":[40]},{"name":"FLH_NORMAL","features":[40]},{"name":"FLS_DISABLED","features":[40]},{"name":"FLS_EMPHASIZED","features":[40]},{"name":"FLS_NORMAL","features":[40]},{"name":"FLS_SELECTED","features":[40]},{"name":"FLYOUTLINK_HOVER","features":[40]},{"name":"FLYOUTLINK_NORMAL","features":[40]},{"name":"FLYOUTPARTS","features":[40]},{"name":"FLYOUT_BODY","features":[40]},{"name":"FLYOUT_DIVIDER","features":[40]},{"name":"FLYOUT_HEADER","features":[40]},{"name":"FLYOUT_LABEL","features":[40]},{"name":"FLYOUT_LINK","features":[40]},{"name":"FLYOUT_LINKAREA","features":[40]},{"name":"FLYOUT_LINKHEADER","features":[40]},{"name":"FLYOUT_WINDOW","features":[40]},{"name":"FONTDLGORD","features":[40]},{"name":"FORMATDLGORD30","features":[40]},{"name":"FORMATDLGORD31","features":[40]},{"name":"FRAMEBOTTOMSTATES","features":[40]},{"name":"FRAMELEFTSTATES","features":[40]},{"name":"FRAMERIGHTSTATES","features":[40]},{"name":"FRAMESTATES","features":[40]},{"name":"FRB_ACTIVE","features":[40]},{"name":"FRB_INACTIVE","features":[40]},{"name":"FRL_ACTIVE","features":[40]},{"name":"FRL_INACTIVE","features":[40]},{"name":"FRR_ACTIVE","features":[40]},{"name":"FRR_INACTIVE","features":[40]},{"name":"FSB_ENCARTA_MODE","features":[40]},{"name":"FSB_FLAT_MODE","features":[40]},{"name":"FSB_REGULAR_MODE","features":[40]},{"name":"FS_ACTIVE","features":[40]},{"name":"FS_INACTIVE","features":[40]},{"name":"FT_HORZGRADIENT","features":[40]},{"name":"FT_RADIALGRADIENT","features":[40]},{"name":"FT_SOLID","features":[40]},{"name":"FT_TILEIMAGE","features":[40]},{"name":"FT_VERTGRADIENT","features":[40]},{"name":"FlatSB_EnableScrollBar","features":[1,40]},{"name":"FlatSB_GetScrollInfo","features":[1,40,50]},{"name":"FlatSB_GetScrollPos","features":[1,40,50]},{"name":"FlatSB_GetScrollProp","features":[1,40]},{"name":"FlatSB_GetScrollRange","features":[1,40,50]},{"name":"FlatSB_SetScrollInfo","features":[1,40,50]},{"name":"FlatSB_SetScrollPos","features":[1,40,50]},{"name":"FlatSB_SetScrollProp","features":[1,40]},{"name":"FlatSB_SetScrollRange","features":[1,40,50]},{"name":"FlatSB_ShowScrollBar","features":[1,40,50]},{"name":"GBF_COPY","features":[40]},{"name":"GBF_DIRECT","features":[40]},{"name":"GBF_VALIDBITS","features":[40]},{"name":"GBS_DISABLED","features":[40]},{"name":"GBS_NORMAL","features":[40]},{"name":"GDTR_MAX","features":[40]},{"name":"GDTR_MIN","features":[40]},{"name":"GDT_ERROR","features":[40]},{"name":"GDT_NONE","features":[40]},{"name":"GDT_VALID","features":[40]},{"name":"GET_THEME_BITMAP_FLAGS","features":[40]},{"name":"GFST_DPI","features":[40]},{"name":"GFST_NONE","features":[40]},{"name":"GFST_SIZE","features":[40]},{"name":"GLPS_CLOSED","features":[40]},{"name":"GLPS_OPENED","features":[40]},{"name":"GLYPHFONTSIZINGTYPE","features":[40]},{"name":"GLYPHSTATES","features":[40]},{"name":"GLYPHTYPE","features":[40]},{"name":"GMR_DAYSTATE","features":[40]},{"name":"GMR_VISIBLE","features":[40]},{"name":"GRIDCELLBACKGROUNDSTATES","features":[40]},{"name":"GRIDCELLSTATES","features":[40]},{"name":"GRIDCELLUPPERSTATES","features":[40]},{"name":"GRIPPERSTATES","features":[40]},{"name":"GROUPBOXSTATES","features":[40]},{"name":"GROUPHEADERLINESTATES","features":[40]},{"name":"GROUPHEADERSTATES","features":[40]},{"name":"GT_FONTGLYPH","features":[40]},{"name":"GT_IMAGEGLYPH","features":[40]},{"name":"GT_NONE","features":[40]},{"name":"GetBufferedPaintBits","features":[12,40]},{"name":"GetBufferedPaintDC","features":[12,40]},{"name":"GetBufferedPaintTargetDC","features":[12,40]},{"name":"GetBufferedPaintTargetRect","features":[1,40]},{"name":"GetComboBoxInfo","features":[1,40]},{"name":"GetCurrentThemeName","features":[40]},{"name":"GetEffectiveClientRect","features":[1,40]},{"name":"GetListBoxInfo","features":[1,40]},{"name":"GetMUILanguage","features":[40]},{"name":"GetThemeAnimationProperty","features":[40]},{"name":"GetThemeAnimationTransform","features":[40]},{"name":"GetThemeAppProperties","features":[40]},{"name":"GetThemeBackgroundContentRect","features":[1,12,40]},{"name":"GetThemeBackgroundExtent","features":[1,12,40]},{"name":"GetThemeBackgroundRegion","features":[1,12,40]},{"name":"GetThemeBitmap","features":[12,40]},{"name":"GetThemeBool","features":[1,40]},{"name":"GetThemeColor","features":[1,40]},{"name":"GetThemeDocumentationProperty","features":[40]},{"name":"GetThemeEnumValue","features":[40]},{"name":"GetThemeFilename","features":[40]},{"name":"GetThemeFont","features":[12,40]},{"name":"GetThemeInt","features":[40]},{"name":"GetThemeIntList","features":[40]},{"name":"GetThemeMargins","features":[1,12,40]},{"name":"GetThemeMetric","features":[12,40]},{"name":"GetThemePartSize","features":[1,12,40]},{"name":"GetThemePosition","features":[1,40]},{"name":"GetThemePropertyOrigin","features":[40]},{"name":"GetThemeRect","features":[1,40]},{"name":"GetThemeStream","features":[1,40]},{"name":"GetThemeString","features":[40]},{"name":"GetThemeSysBool","features":[1,40]},{"name":"GetThemeSysColor","features":[1,40]},{"name":"GetThemeSysColorBrush","features":[12,40]},{"name":"GetThemeSysFont","features":[12,40]},{"name":"GetThemeSysInt","features":[40]},{"name":"GetThemeSysSize","features":[40]},{"name":"GetThemeSysString","features":[40]},{"name":"GetThemeTextExtent","features":[1,12,40]},{"name":"GetThemeTextMetrics","features":[12,40]},{"name":"GetThemeTimingFunction","features":[40]},{"name":"GetThemeTransitionDuration","features":[40]},{"name":"GetWindowFeedbackSetting","features":[1,40]},{"name":"GetWindowTheme","features":[1,40]},{"name":"HALIGN","features":[40]},{"name":"HA_CENTER","features":[40]},{"name":"HA_LEFT","features":[40]},{"name":"HA_RIGHT","features":[40]},{"name":"HBG_DETAILS","features":[40]},{"name":"HBG_ICON","features":[40]},{"name":"HBS_DISABLED","features":[40]},{"name":"HBS_HOT","features":[40]},{"name":"HBS_NORMAL","features":[40]},{"name":"HBS_PUSHED","features":[40]},{"name":"HDDFS_HOT","features":[40]},{"name":"HDDFS_NORMAL","features":[40]},{"name":"HDDFS_SOFTHOT","features":[40]},{"name":"HDDS_HOT","features":[40]},{"name":"HDDS_NORMAL","features":[40]},{"name":"HDDS_SOFTHOT","features":[40]},{"name":"HDFT_HASNOVALUE","features":[40]},{"name":"HDFT_ISDATE","features":[40]},{"name":"HDFT_ISNUMBER","features":[40]},{"name":"HDFT_ISSTRING","features":[40]},{"name":"HDF_BITMAP","features":[40]},{"name":"HDF_BITMAP_ON_RIGHT","features":[40]},{"name":"HDF_CENTER","features":[40]},{"name":"HDF_CHECKBOX","features":[40]},{"name":"HDF_CHECKED","features":[40]},{"name":"HDF_FIXEDWIDTH","features":[40]},{"name":"HDF_IMAGE","features":[40]},{"name":"HDF_JUSTIFYMASK","features":[40]},{"name":"HDF_LEFT","features":[40]},{"name":"HDF_OWNERDRAW","features":[40]},{"name":"HDF_RIGHT","features":[40]},{"name":"HDF_RTLREADING","features":[40]},{"name":"HDF_SORTDOWN","features":[40]},{"name":"HDF_SORTUP","features":[40]},{"name":"HDF_SPLITBUTTON","features":[40]},{"name":"HDF_STRING","features":[40]},{"name":"HDHITTESTINFO","features":[1,40]},{"name":"HDIS_FOCUSED","features":[40]},{"name":"HDITEMA","features":[1,12,40]},{"name":"HDITEMW","features":[1,12,40]},{"name":"HDI_BITMAP","features":[40]},{"name":"HDI_DI_SETITEM","features":[40]},{"name":"HDI_FILTER","features":[40]},{"name":"HDI_FORMAT","features":[40]},{"name":"HDI_HEIGHT","features":[40]},{"name":"HDI_IMAGE","features":[40]},{"name":"HDI_LPARAM","features":[40]},{"name":"HDI_MASK","features":[40]},{"name":"HDI_ORDER","features":[40]},{"name":"HDI_STATE","features":[40]},{"name":"HDI_TEXT","features":[40]},{"name":"HDI_WIDTH","features":[40]},{"name":"HDLAYOUT","features":[1,40,50]},{"name":"HDM_CLEARFILTER","features":[40]},{"name":"HDM_CREATEDRAGIMAGE","features":[40]},{"name":"HDM_DELETEITEM","features":[40]},{"name":"HDM_EDITFILTER","features":[40]},{"name":"HDM_FIRST","features":[40]},{"name":"HDM_GETBITMAPMARGIN","features":[40]},{"name":"HDM_GETFOCUSEDITEM","features":[40]},{"name":"HDM_GETIMAGELIST","features":[40]},{"name":"HDM_GETITEM","features":[40]},{"name":"HDM_GETITEMA","features":[40]},{"name":"HDM_GETITEMCOUNT","features":[40]},{"name":"HDM_GETITEMDROPDOWNRECT","features":[40]},{"name":"HDM_GETITEMRECT","features":[40]},{"name":"HDM_GETITEMW","features":[40]},{"name":"HDM_GETORDERARRAY","features":[40]},{"name":"HDM_GETOVERFLOWRECT","features":[40]},{"name":"HDM_GETUNICODEFORMAT","features":[40]},{"name":"HDM_HITTEST","features":[40]},{"name":"HDM_INSERTITEM","features":[40]},{"name":"HDM_INSERTITEMA","features":[40]},{"name":"HDM_INSERTITEMW","features":[40]},{"name":"HDM_LAYOUT","features":[40]},{"name":"HDM_ORDERTOINDEX","features":[40]},{"name":"HDM_SETBITMAPMARGIN","features":[40]},{"name":"HDM_SETFILTERCHANGETIMEOUT","features":[40]},{"name":"HDM_SETFOCUSEDITEM","features":[40]},{"name":"HDM_SETHOTDIVIDER","features":[40]},{"name":"HDM_SETIMAGELIST","features":[40]},{"name":"HDM_SETITEM","features":[40]},{"name":"HDM_SETITEMA","features":[40]},{"name":"HDM_SETITEMW","features":[40]},{"name":"HDM_SETORDERARRAY","features":[40]},{"name":"HDM_SETUNICODEFORMAT","features":[40]},{"name":"HDN_BEGINDRAG","features":[40]},{"name":"HDN_BEGINFILTEREDIT","features":[40]},{"name":"HDN_BEGINTRACK","features":[40]},{"name":"HDN_BEGINTRACKA","features":[40]},{"name":"HDN_BEGINTRACKW","features":[40]},{"name":"HDN_DIVIDERDBLCLICK","features":[40]},{"name":"HDN_DIVIDERDBLCLICKA","features":[40]},{"name":"HDN_DIVIDERDBLCLICKW","features":[40]},{"name":"HDN_DROPDOWN","features":[40]},{"name":"HDN_ENDDRAG","features":[40]},{"name":"HDN_ENDFILTEREDIT","features":[40]},{"name":"HDN_ENDTRACK","features":[40]},{"name":"HDN_ENDTRACKA","features":[40]},{"name":"HDN_ENDTRACKW","features":[40]},{"name":"HDN_FILTERBTNCLICK","features":[40]},{"name":"HDN_FILTERCHANGE","features":[40]},{"name":"HDN_FIRST","features":[40]},{"name":"HDN_GETDISPINFO","features":[40]},{"name":"HDN_GETDISPINFOA","features":[40]},{"name":"HDN_GETDISPINFOW","features":[40]},{"name":"HDN_ITEMCHANGED","features":[40]},{"name":"HDN_ITEMCHANGEDA","features":[40]},{"name":"HDN_ITEMCHANGEDW","features":[40]},{"name":"HDN_ITEMCHANGING","features":[40]},{"name":"HDN_ITEMCHANGINGA","features":[40]},{"name":"HDN_ITEMCHANGINGW","features":[40]},{"name":"HDN_ITEMCLICK","features":[40]},{"name":"HDN_ITEMCLICKA","features":[40]},{"name":"HDN_ITEMCLICKW","features":[40]},{"name":"HDN_ITEMDBLCLICK","features":[40]},{"name":"HDN_ITEMDBLCLICKA","features":[40]},{"name":"HDN_ITEMDBLCLICKW","features":[40]},{"name":"HDN_ITEMKEYDOWN","features":[40]},{"name":"HDN_ITEMSTATEICONCLICK","features":[40]},{"name":"HDN_LAST","features":[40]},{"name":"HDN_OVERFLOWCLICK","features":[40]},{"name":"HDN_TRACK","features":[40]},{"name":"HDN_TRACKA","features":[40]},{"name":"HDN_TRACKW","features":[40]},{"name":"HDPA","features":[40]},{"name":"HDSA","features":[40]},{"name":"HDSIL_NORMAL","features":[40]},{"name":"HDSIL_STATE","features":[40]},{"name":"HDS_BUTTONS","features":[40]},{"name":"HDS_CHECKBOXES","features":[40]},{"name":"HDS_DRAGDROP","features":[40]},{"name":"HDS_FILTERBAR","features":[40]},{"name":"HDS_FLAT","features":[40]},{"name":"HDS_FULLDRAG","features":[40]},{"name":"HDS_HIDDEN","features":[40]},{"name":"HDS_HORZ","features":[40]},{"name":"HDS_HOTTRACK","features":[40]},{"name":"HDS_NOSIZING","features":[40]},{"name":"HDS_OVERFLOW","features":[40]},{"name":"HD_TEXTFILTERA","features":[40]},{"name":"HD_TEXTFILTERW","features":[40]},{"name":"HEADERAREASTATES","features":[40]},{"name":"HEADERCLOSESTATES","features":[40]},{"name":"HEADERDROPDOWNFILTERSTATES","features":[40]},{"name":"HEADERDROPDOWNSTATES","features":[40]},{"name":"HEADERITEMLEFTSTATES","features":[40]},{"name":"HEADERITEMRIGHTSTATES","features":[40]},{"name":"HEADERITEMSTATES","features":[40]},{"name":"HEADEROVERFLOWSTATES","features":[40]},{"name":"HEADERPARTS","features":[40]},{"name":"HEADERPINSTATES","features":[40]},{"name":"HEADERSORTARROWSTATES","features":[40]},{"name":"HEADERSTYLESTATES","features":[40]},{"name":"HEADER_CONTROL_FORMAT_FLAGS","features":[40]},{"name":"HEADER_CONTROL_FORMAT_STATE","features":[40]},{"name":"HEADER_CONTROL_FORMAT_TYPE","features":[40]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON","features":[40]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_LEFT","features":[40]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_MIDDLE","features":[40]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_RIGHT","features":[40]},{"name":"HEADER_HITTEST_INFO_FLAGS","features":[40]},{"name":"HELPBUTTONSTATES","features":[40]},{"name":"HELPLINKSTATES","features":[40]},{"name":"HGLPS_CLOSED","features":[40]},{"name":"HGLPS_OPENED","features":[40]},{"name":"HHT_ABOVE","features":[40]},{"name":"HHT_BELOW","features":[40]},{"name":"HHT_NOWHERE","features":[40]},{"name":"HHT_ONDIVIDER","features":[40]},{"name":"HHT_ONDIVOPEN","features":[40]},{"name":"HHT_ONDROPDOWN","features":[40]},{"name":"HHT_ONFILTER","features":[40]},{"name":"HHT_ONFILTERBUTTON","features":[40]},{"name":"HHT_ONHEADER","features":[40]},{"name":"HHT_ONITEMSTATEICON","features":[40]},{"name":"HHT_ONOVERFLOW","features":[40]},{"name":"HHT_TOLEFT","features":[40]},{"name":"HHT_TORIGHT","features":[40]},{"name":"HICF_ACCELERATOR","features":[40]},{"name":"HICF_ARROWKEYS","features":[40]},{"name":"HICF_DUPACCEL","features":[40]},{"name":"HICF_ENTERING","features":[40]},{"name":"HICF_LEAVING","features":[40]},{"name":"HICF_LMOUSE","features":[40]},{"name":"HICF_MOUSE","features":[40]},{"name":"HICF_OTHER","features":[40]},{"name":"HICF_RESELECT","features":[40]},{"name":"HICF_TOGGLEDROPDOWN","features":[40]},{"name":"HILS_HOT","features":[40]},{"name":"HILS_NORMAL","features":[40]},{"name":"HILS_PRESSED","features":[40]},{"name":"HIMAGELIST","features":[40]},{"name":"HIMAGELIST_QueryInterface","features":[40]},{"name":"HIRS_HOT","features":[40]},{"name":"HIRS_NORMAL","features":[40]},{"name":"HIRS_PRESSED","features":[40]},{"name":"HIST_ADDTOFAVORITES","features":[40]},{"name":"HIST_BACK","features":[40]},{"name":"HIST_FAVORITES","features":[40]},{"name":"HIST_FORWARD","features":[40]},{"name":"HIST_VIEWTREE","features":[40]},{"name":"HIS_HOT","features":[40]},{"name":"HIS_ICONHOT","features":[40]},{"name":"HIS_ICONNORMAL","features":[40]},{"name":"HIS_ICONPRESSED","features":[40]},{"name":"HIS_ICONSORTEDHOT","features":[40]},{"name":"HIS_ICONSORTEDNORMAL","features":[40]},{"name":"HIS_ICONSORTEDPRESSED","features":[40]},{"name":"HIS_NORMAL","features":[40]},{"name":"HIS_PRESSED","features":[40]},{"name":"HIS_SORTEDHOT","features":[40]},{"name":"HIS_SORTEDNORMAL","features":[40]},{"name":"HIS_SORTEDPRESSED","features":[40]},{"name":"HIT_TEST_BACKGROUND_OPTIONS","features":[40]},{"name":"HKCOMB_A","features":[40]},{"name":"HKCOMB_C","features":[40]},{"name":"HKCOMB_CA","features":[40]},{"name":"HKCOMB_NONE","features":[40]},{"name":"HKCOMB_S","features":[40]},{"name":"HKCOMB_SA","features":[40]},{"name":"HKCOMB_SC","features":[40]},{"name":"HKCOMB_SCA","features":[40]},{"name":"HKM_GETHOTKEY","features":[40]},{"name":"HKM_SETHOTKEY","features":[40]},{"name":"HKM_SETRULES","features":[40]},{"name":"HLS_LINKTEXT","features":[40]},{"name":"HLS_NORMALTEXT","features":[40]},{"name":"HOFS_HOT","features":[40]},{"name":"HOFS_NORMAL","features":[40]},{"name":"HORZSCROLLSTATES","features":[40]},{"name":"HORZTHUMBSTATES","features":[40]},{"name":"HOTGLYPHSTATES","features":[40]},{"name":"HOTKEYF_ALT","features":[40]},{"name":"HOTKEYF_CONTROL","features":[40]},{"name":"HOTKEYF_EXT","features":[40]},{"name":"HOTKEYF_SHIFT","features":[40]},{"name":"HOTKEY_CLASS","features":[40]},{"name":"HOTKEY_CLASSA","features":[40]},{"name":"HOTKEY_CLASSW","features":[40]},{"name":"HOVERBACKGROUNDSTATES","features":[40]},{"name":"HOVER_DEFAULT","features":[40]},{"name":"HPROPSHEETPAGE","features":[40]},{"name":"HP_HEADERDROPDOWN","features":[40]},{"name":"HP_HEADERDROPDOWNFILTER","features":[40]},{"name":"HP_HEADERITEM","features":[40]},{"name":"HP_HEADERITEMLEFT","features":[40]},{"name":"HP_HEADERITEMRIGHT","features":[40]},{"name":"HP_HEADEROVERFLOW","features":[40]},{"name":"HP_HEADERSORTARROW","features":[40]},{"name":"HSAS_SORTEDDOWN","features":[40]},{"name":"HSAS_SORTEDUP","features":[40]},{"name":"HSS_DISABLED","features":[40]},{"name":"HSS_HOT","features":[40]},{"name":"HSS_NORMAL","features":[40]},{"name":"HSS_PUSHED","features":[40]},{"name":"HSYNTHETICPOINTERDEVICE","features":[40]},{"name":"HTHEME","features":[40]},{"name":"HTREEITEM","features":[40]},{"name":"HTS_DISABLED","features":[40]},{"name":"HTS_HOT","features":[40]},{"name":"HTS_NORMAL","features":[40]},{"name":"HTS_PUSHED","features":[40]},{"name":"HTTB_BACKGROUNDSEG","features":[40]},{"name":"HTTB_CAPTION","features":[40]},{"name":"HTTB_FIXEDBORDER","features":[40]},{"name":"HTTB_RESIZINGBORDER","features":[40]},{"name":"HTTB_RESIZINGBORDER_BOTTOM","features":[40]},{"name":"HTTB_RESIZINGBORDER_LEFT","features":[40]},{"name":"HTTB_RESIZINGBORDER_RIGHT","features":[40]},{"name":"HTTB_RESIZINGBORDER_TOP","features":[40]},{"name":"HTTB_SIZINGTEMPLATE","features":[40]},{"name":"HTTB_SYSTEMSIZINGMARGINS","features":[40]},{"name":"HYPERLINKSTATES","features":[40]},{"name":"HYPERLINKTEXTSTATES","features":[40]},{"name":"HitTestThemeBackground","features":[1,12,40]},{"name":"ICC_ANIMATE_CLASS","features":[40]},{"name":"ICC_BAR_CLASSES","features":[40]},{"name":"ICC_COOL_CLASSES","features":[40]},{"name":"ICC_DATE_CLASSES","features":[40]},{"name":"ICC_HOTKEY_CLASS","features":[40]},{"name":"ICC_INTERNET_CLASSES","features":[40]},{"name":"ICC_LINK_CLASS","features":[40]},{"name":"ICC_LISTVIEW_CLASSES","features":[40]},{"name":"ICC_NATIVEFNTCTL_CLASS","features":[40]},{"name":"ICC_PAGESCROLLER_CLASS","features":[40]},{"name":"ICC_PROGRESS_CLASS","features":[40]},{"name":"ICC_STANDARD_CLASSES","features":[40]},{"name":"ICC_TAB_CLASSES","features":[40]},{"name":"ICC_TREEVIEW_CLASSES","features":[40]},{"name":"ICC_UPDOWN_CLASS","features":[40]},{"name":"ICC_USEREX_CLASSES","features":[40]},{"name":"ICC_WIN95_CLASSES","features":[40]},{"name":"ICE_ALPHA","features":[40]},{"name":"ICE_GLOW","features":[40]},{"name":"ICE_NONE","features":[40]},{"name":"ICE_PULSE","features":[40]},{"name":"ICE_SHADOW","features":[40]},{"name":"ICONEFFECT","features":[40]},{"name":"IDB_HIST_DISABLED","features":[40]},{"name":"IDB_HIST_HOT","features":[40]},{"name":"IDB_HIST_LARGE_COLOR","features":[40]},{"name":"IDB_HIST_NORMAL","features":[40]},{"name":"IDB_HIST_PRESSED","features":[40]},{"name":"IDB_HIST_SMALL_COLOR","features":[40]},{"name":"IDB_STD_LARGE_COLOR","features":[40]},{"name":"IDB_STD_SMALL_COLOR","features":[40]},{"name":"IDB_VIEW_LARGE_COLOR","features":[40]},{"name":"IDB_VIEW_SMALL_COLOR","features":[40]},{"name":"IDC_MANAGE_LINK","features":[40]},{"name":"ID_PSRESTARTWINDOWS","features":[40]},{"name":"IEBARMENUSTATES","features":[40]},{"name":"IImageList","features":[40]},{"name":"IImageList2","features":[40]},{"name":"ILCF_MOVE","features":[40]},{"name":"ILCF_SWAP","features":[40]},{"name":"ILC_COLOR","features":[40]},{"name":"ILC_COLOR16","features":[40]},{"name":"ILC_COLOR24","features":[40]},{"name":"ILC_COLOR32","features":[40]},{"name":"ILC_COLOR4","features":[40]},{"name":"ILC_COLOR8","features":[40]},{"name":"ILC_COLORDDB","features":[40]},{"name":"ILC_HIGHQUALITYSCALE","features":[40]},{"name":"ILC_MASK","features":[40]},{"name":"ILC_MIRROR","features":[40]},{"name":"ILC_ORIGINALSIZE","features":[40]},{"name":"ILC_PALETTE","features":[40]},{"name":"ILC_PERITEMMIRROR","features":[40]},{"name":"ILDI_PURGE","features":[40]},{"name":"ILDI_QUERYACCESS","features":[40]},{"name":"ILDI_RESETACCESS","features":[40]},{"name":"ILDI_STANDBY","features":[40]},{"name":"ILDRF_IMAGELOWQUALITY","features":[40]},{"name":"ILDRF_OVERLAYLOWQUALITY","features":[40]},{"name":"ILD_ASYNC","features":[40]},{"name":"ILD_BLEND","features":[40]},{"name":"ILD_BLEND25","features":[40]},{"name":"ILD_BLEND50","features":[40]},{"name":"ILD_DPISCALE","features":[40]},{"name":"ILD_FOCUS","features":[40]},{"name":"ILD_IMAGE","features":[40]},{"name":"ILD_MASK","features":[40]},{"name":"ILD_NORMAL","features":[40]},{"name":"ILD_OVERLAYMASK","features":[40]},{"name":"ILD_PRESERVEALPHA","features":[40]},{"name":"ILD_ROP","features":[40]},{"name":"ILD_SCALE","features":[40]},{"name":"ILD_SELECTED","features":[40]},{"name":"ILD_TRANSPARENT","features":[40]},{"name":"ILFIP_ALWAYS","features":[40]},{"name":"ILFIP_FROMSTANDBY","features":[40]},{"name":"ILGOS_ALWAYS","features":[40]},{"name":"ILGOS_FROMSTANDBY","features":[40]},{"name":"ILGT_ASYNC","features":[40]},{"name":"ILGT_NORMAL","features":[40]},{"name":"ILIF_ALPHA","features":[40]},{"name":"ILIF_LOWQUALITY","features":[40]},{"name":"ILP_DOWNLEVEL","features":[40]},{"name":"ILP_NORMAL","features":[40]},{"name":"ILR_DEFAULT","features":[40]},{"name":"ILR_HORIZONTAL_CENTER","features":[40]},{"name":"ILR_HORIZONTAL_LEFT","features":[40]},{"name":"ILR_HORIZONTAL_RIGHT","features":[40]},{"name":"ILR_SCALE_ASPECTRATIO","features":[40]},{"name":"ILR_SCALE_CLIP","features":[40]},{"name":"ILR_VERTICAL_BOTTOM","features":[40]},{"name":"ILR_VERTICAL_CENTER","features":[40]},{"name":"ILR_VERTICAL_TOP","features":[40]},{"name":"ILS_ALPHA","features":[40]},{"name":"ILS_GLOW","features":[40]},{"name":"ILS_NORMAL","features":[40]},{"name":"ILS_SATURATE","features":[40]},{"name":"ILS_SHADOW","features":[40]},{"name":"IL_HORIZONTAL","features":[40]},{"name":"IL_VERTICAL","features":[40]},{"name":"IMAGEINFO","features":[1,12,40]},{"name":"IMAGELAYOUT","features":[40]},{"name":"IMAGELISTDRAWPARAMS","features":[1,12,40]},{"name":"IMAGELISTSTATS","features":[40]},{"name":"IMAGELIST_CREATION_FLAGS","features":[40]},{"name":"IMAGESELECTTYPE","features":[40]},{"name":"IMAGE_LIST_COPY_FLAGS","features":[40]},{"name":"IMAGE_LIST_DRAW_STYLE","features":[40]},{"name":"IMAGE_LIST_ITEM_FLAGS","features":[40]},{"name":"IMAGE_LIST_WRITE_STREAM_FLAGS","features":[40]},{"name":"INFOTIPSIZE","features":[40]},{"name":"INITCOMMONCONTROLSEX","features":[40]},{"name":"INITCOMMONCONTROLSEX_ICC","features":[40]},{"name":"INTLIST","features":[40]},{"name":"INVALID_LINK_INDEX","features":[40]},{"name":"IPM_CLEARADDRESS","features":[40]},{"name":"IPM_GETADDRESS","features":[40]},{"name":"IPM_ISBLANK","features":[40]},{"name":"IPM_SETADDRESS","features":[40]},{"name":"IPM_SETFOCUS","features":[40]},{"name":"IPM_SETRANGE","features":[40]},{"name":"IPN_FIELDCHANGED","features":[40]},{"name":"IPN_FIRST","features":[40]},{"name":"IPN_LAST","features":[40]},{"name":"IST_DPI","features":[40]},{"name":"IST_NONE","features":[40]},{"name":"IST_SIZE","features":[40]},{"name":"ITEMSTATES","features":[40]},{"name":"I_CHILDRENAUTO","features":[40]},{"name":"I_CHILDRENCALLBACK","features":[40]},{"name":"I_GROUPIDCALLBACK","features":[40]},{"name":"I_GROUPIDNONE","features":[40]},{"name":"I_IMAGECALLBACK","features":[40]},{"name":"I_IMAGENONE","features":[40]},{"name":"I_INDENTCALLBACK","features":[40]},{"name":"I_ONE_OR_MORE","features":[40]},{"name":"I_ZERO","features":[40]},{"name":"ImageList","features":[40]},{"name":"ImageList_Add","features":[12,40]},{"name":"ImageList_AddMasked","features":[1,12,40]},{"name":"ImageList_BeginDrag","features":[1,40]},{"name":"ImageList_CoCreateInstance","features":[40]},{"name":"ImageList_Copy","features":[1,40]},{"name":"ImageList_Create","features":[40]},{"name":"ImageList_Destroy","features":[1,40]},{"name":"ImageList_DragEnter","features":[1,40]},{"name":"ImageList_DragLeave","features":[1,40]},{"name":"ImageList_DragMove","features":[1,40]},{"name":"ImageList_DragShowNolock","features":[1,40]},{"name":"ImageList_Draw","features":[1,12,40]},{"name":"ImageList_DrawEx","features":[1,12,40]},{"name":"ImageList_DrawIndirect","features":[1,12,40]},{"name":"ImageList_Duplicate","features":[40]},{"name":"ImageList_EndDrag","features":[40]},{"name":"ImageList_GetBkColor","features":[1,40]},{"name":"ImageList_GetDragImage","features":[1,40]},{"name":"ImageList_GetIcon","features":[40,50]},{"name":"ImageList_GetIconSize","features":[1,40]},{"name":"ImageList_GetImageCount","features":[40]},{"name":"ImageList_GetImageInfo","features":[1,12,40]},{"name":"ImageList_LoadImageA","features":[1,40,50]},{"name":"ImageList_LoadImageW","features":[1,40,50]},{"name":"ImageList_Merge","features":[40]},{"name":"ImageList_Read","features":[40]},{"name":"ImageList_ReadEx","features":[40]},{"name":"ImageList_Remove","features":[1,40]},{"name":"ImageList_Replace","features":[1,12,40]},{"name":"ImageList_ReplaceIcon","features":[40,50]},{"name":"ImageList_SetBkColor","features":[1,40]},{"name":"ImageList_SetDragCursorImage","features":[1,40]},{"name":"ImageList_SetIconSize","features":[1,40]},{"name":"ImageList_SetImageCount","features":[1,40]},{"name":"ImageList_SetOverlayImage","features":[1,40]},{"name":"ImageList_Write","features":[1,40]},{"name":"ImageList_WriteEx","features":[40]},{"name":"InitCommonControls","features":[40]},{"name":"InitCommonControlsEx","features":[1,40]},{"name":"InitMUILanguage","features":[40]},{"name":"InitializeFlatSB","features":[1,40]},{"name":"IsAppThemed","features":[1,40]},{"name":"IsCharLowerW","features":[1,40]},{"name":"IsCompositionActive","features":[1,40]},{"name":"IsDlgButtonChecked","features":[1,40]},{"name":"IsThemeActive","features":[1,40]},{"name":"IsThemeBackgroundPartiallyTransparent","features":[1,40]},{"name":"IsThemeDialogTextureEnabled","features":[1,40]},{"name":"IsThemePartDefined","features":[1,40]},{"name":"LABELSTATES","features":[40]},{"name":"LBCP_BORDER_HSCROLL","features":[40]},{"name":"LBCP_BORDER_HVSCROLL","features":[40]},{"name":"LBCP_BORDER_NOSCROLL","features":[40]},{"name":"LBCP_BORDER_VSCROLL","features":[40]},{"name":"LBCP_ITEM","features":[40]},{"name":"LBItemFromPt","features":[1,40]},{"name":"LBPSHV_DISABLED","features":[40]},{"name":"LBPSHV_FOCUSED","features":[40]},{"name":"LBPSHV_HOT","features":[40]},{"name":"LBPSHV_NORMAL","features":[40]},{"name":"LBPSH_DISABLED","features":[40]},{"name":"LBPSH_FOCUSED","features":[40]},{"name":"LBPSH_HOT","features":[40]},{"name":"LBPSH_NORMAL","features":[40]},{"name":"LBPSI_HOT","features":[40]},{"name":"LBPSI_HOTSELECTED","features":[40]},{"name":"LBPSI_SELECTED","features":[40]},{"name":"LBPSI_SELECTEDNOTFOCUS","features":[40]},{"name":"LBPSN_DISABLED","features":[40]},{"name":"LBPSN_FOCUSED","features":[40]},{"name":"LBPSN_HOT","features":[40]},{"name":"LBPSN_NORMAL","features":[40]},{"name":"LBPSV_DISABLED","features":[40]},{"name":"LBPSV_FOCUSED","features":[40]},{"name":"LBPSV_HOT","features":[40]},{"name":"LBPSV_NORMAL","features":[40]},{"name":"LHITTESTINFO","features":[1,40]},{"name":"LIF_ITEMID","features":[40]},{"name":"LIF_ITEMINDEX","features":[40]},{"name":"LIF_STATE","features":[40]},{"name":"LIF_URL","features":[40]},{"name":"LIM_LARGE","features":[40]},{"name":"LIM_SMALL","features":[40]},{"name":"LINKHEADERSTATES","features":[40]},{"name":"LINKPARTS","features":[40]},{"name":"LINKSTATES","features":[40]},{"name":"LISS_DISABLED","features":[40]},{"name":"LISS_HOT","features":[40]},{"name":"LISS_HOTSELECTED","features":[40]},{"name":"LISS_NORMAL","features":[40]},{"name":"LISS_SELECTED","features":[40]},{"name":"LISS_SELECTEDNOTFOCUS","features":[40]},{"name":"LISTBOXPARTS","features":[40]},{"name":"LISTITEMSTATES","features":[40]},{"name":"LISTVIEWPARTS","features":[40]},{"name":"LIST_ITEM_FLAGS","features":[40]},{"name":"LIST_ITEM_STATE_FLAGS","features":[40]},{"name":"LIST_VIEW_BACKGROUND_IMAGE_FLAGS","features":[40]},{"name":"LIST_VIEW_GROUP_ALIGN_FLAGS","features":[40]},{"name":"LIST_VIEW_GROUP_STATE_FLAGS","features":[40]},{"name":"LIST_VIEW_ITEM_COLUMN_FORMAT_FLAGS","features":[40]},{"name":"LIST_VIEW_ITEM_FLAGS","features":[40]},{"name":"LIST_VIEW_ITEM_STATE_FLAGS","features":[40]},{"name":"LIS_DEFAULTCOLORS","features":[40]},{"name":"LIS_ENABLED","features":[40]},{"name":"LIS_FOCUSED","features":[40]},{"name":"LIS_HOTTRACK","features":[40]},{"name":"LIS_VISITED","features":[40]},{"name":"LITEM","features":[40]},{"name":"LM_GETIDEALHEIGHT","features":[40]},{"name":"LM_GETIDEALSIZE","features":[40]},{"name":"LM_GETITEM","features":[40]},{"name":"LM_HITTEST","features":[40]},{"name":"LM_SETITEM","features":[40]},{"name":"LOGOFFBUTTONSSTATES","features":[40]},{"name":"LPFNADDPROPSHEETPAGES","features":[1,40]},{"name":"LPFNCCINFOA","features":[1,12,40]},{"name":"LPFNCCINFOW","features":[1,12,40]},{"name":"LPFNCCSIZETOTEXTA","features":[12,40]},{"name":"LPFNCCSIZETOTEXTW","features":[12,40]},{"name":"LPFNCCSTYLEA","features":[1,40]},{"name":"LPFNCCSTYLEW","features":[1,40]},{"name":"LPFNPSPCALLBACKA","features":[1,12,40,50]},{"name":"LPFNPSPCALLBACKW","features":[1,12,40,50]},{"name":"LPFNSVADDPROPSHEETPAGE","features":[1,40]},{"name":"LP_HYPERLINK","features":[40]},{"name":"LVA_ALIGNLEFT","features":[40]},{"name":"LVA_ALIGNTOP","features":[40]},{"name":"LVA_DEFAULT","features":[40]},{"name":"LVA_SNAPTOGRID","features":[40]},{"name":"LVBKIF_FLAG_ALPHABLEND","features":[40]},{"name":"LVBKIF_FLAG_TILEOFFSET","features":[40]},{"name":"LVBKIF_SOURCE_HBITMAP","features":[40]},{"name":"LVBKIF_SOURCE_MASK","features":[40]},{"name":"LVBKIF_SOURCE_NONE","features":[40]},{"name":"LVBKIF_SOURCE_URL","features":[40]},{"name":"LVBKIF_STYLE_MASK","features":[40]},{"name":"LVBKIF_STYLE_NORMAL","features":[40]},{"name":"LVBKIF_STYLE_TILE","features":[40]},{"name":"LVBKIF_TYPE_WATERMARK","features":[40]},{"name":"LVBKIMAGEA","features":[12,40]},{"name":"LVBKIMAGEW","features":[12,40]},{"name":"LVCB_HOVER","features":[40]},{"name":"LVCB_NORMAL","features":[40]},{"name":"LVCB_PUSHED","features":[40]},{"name":"LVCDI_GROUP","features":[40]},{"name":"LVCDI_ITEM","features":[40]},{"name":"LVCDI_ITEMSLIST","features":[40]},{"name":"LVCDRF_NOGROUPFRAME","features":[40]},{"name":"LVCDRF_NOSELECT","features":[40]},{"name":"LVCFMT_BITMAP_ON_RIGHT","features":[40]},{"name":"LVCFMT_CENTER","features":[40]},{"name":"LVCFMT_COL_HAS_IMAGES","features":[40]},{"name":"LVCFMT_FILL","features":[40]},{"name":"LVCFMT_FIXED_RATIO","features":[40]},{"name":"LVCFMT_FIXED_WIDTH","features":[40]},{"name":"LVCFMT_IMAGE","features":[40]},{"name":"LVCFMT_JUSTIFYMASK","features":[40]},{"name":"LVCFMT_LEFT","features":[40]},{"name":"LVCFMT_LINE_BREAK","features":[40]},{"name":"LVCFMT_NO_DPI_SCALE","features":[40]},{"name":"LVCFMT_NO_TITLE","features":[40]},{"name":"LVCFMT_RIGHT","features":[40]},{"name":"LVCFMT_SPLITBUTTON","features":[40]},{"name":"LVCFMT_TILE_PLACEMENTMASK","features":[40]},{"name":"LVCFMT_WRAP","features":[40]},{"name":"LVCF_DEFAULTWIDTH","features":[40]},{"name":"LVCF_FMT","features":[40]},{"name":"LVCF_IDEALWIDTH","features":[40]},{"name":"LVCF_IMAGE","features":[40]},{"name":"LVCF_MINWIDTH","features":[40]},{"name":"LVCF_ORDER","features":[40]},{"name":"LVCF_SUBITEM","features":[40]},{"name":"LVCF_TEXT","features":[40]},{"name":"LVCF_WIDTH","features":[40]},{"name":"LVCOLUMNA","features":[40]},{"name":"LVCOLUMNW","features":[40]},{"name":"LVCOLUMNW_FORMAT","features":[40]},{"name":"LVCOLUMNW_MASK","features":[40]},{"name":"LVEB_HOVER","features":[40]},{"name":"LVEB_NORMAL","features":[40]},{"name":"LVEB_PUSHED","features":[40]},{"name":"LVFF_ITEMCOUNT","features":[40]},{"name":"LVFIF_STATE","features":[40]},{"name":"LVFIF_TEXT","features":[40]},{"name":"LVFINDINFOA","features":[1,40]},{"name":"LVFINDINFOW","features":[1,40]},{"name":"LVFINDINFOW_FLAGS","features":[40]},{"name":"LVFIS_FOCUSED","features":[40]},{"name":"LVFI_NEARESTXY","features":[40]},{"name":"LVFI_PARAM","features":[40]},{"name":"LVFI_PARTIAL","features":[40]},{"name":"LVFI_STRING","features":[40]},{"name":"LVFI_SUBSTRING","features":[40]},{"name":"LVFI_WRAP","features":[40]},{"name":"LVFOOTERINFO","features":[40]},{"name":"LVFOOTERITEM","features":[40]},{"name":"LVFOOTERITEM_MASK","features":[40]},{"name":"LVGA_FOOTER_CENTER","features":[40]},{"name":"LVGA_FOOTER_LEFT","features":[40]},{"name":"LVGA_FOOTER_RIGHT","features":[40]},{"name":"LVGA_HEADER_CENTER","features":[40]},{"name":"LVGA_HEADER_LEFT","features":[40]},{"name":"LVGA_HEADER_RIGHT","features":[40]},{"name":"LVGF_ALIGN","features":[40]},{"name":"LVGF_DESCRIPTIONBOTTOM","features":[40]},{"name":"LVGF_DESCRIPTIONTOP","features":[40]},{"name":"LVGF_EXTENDEDIMAGE","features":[40]},{"name":"LVGF_FOOTER","features":[40]},{"name":"LVGF_GROUPID","features":[40]},{"name":"LVGF_HEADER","features":[40]},{"name":"LVGF_ITEMS","features":[40]},{"name":"LVGF_NONE","features":[40]},{"name":"LVGF_STATE","features":[40]},{"name":"LVGF_SUBSET","features":[40]},{"name":"LVGF_SUBSETITEMS","features":[40]},{"name":"LVGF_SUBTITLE","features":[40]},{"name":"LVGF_TASK","features":[40]},{"name":"LVGF_TITLEIMAGE","features":[40]},{"name":"LVGGR_GROUP","features":[40]},{"name":"LVGGR_HEADER","features":[40]},{"name":"LVGGR_LABEL","features":[40]},{"name":"LVGGR_SUBSETLINK","features":[40]},{"name":"LVGHL_CLOSE","features":[40]},{"name":"LVGHL_CLOSEHOT","features":[40]},{"name":"LVGHL_CLOSEMIXEDSELECTION","features":[40]},{"name":"LVGHL_CLOSEMIXEDSELECTIONHOT","features":[40]},{"name":"LVGHL_CLOSESELECTED","features":[40]},{"name":"LVGHL_CLOSESELECTEDHOT","features":[40]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSED","features":[40]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSEDHOT","features":[40]},{"name":"LVGHL_OPEN","features":[40]},{"name":"LVGHL_OPENHOT","features":[40]},{"name":"LVGHL_OPENMIXEDSELECTION","features":[40]},{"name":"LVGHL_OPENMIXEDSELECTIONHOT","features":[40]},{"name":"LVGHL_OPENSELECTED","features":[40]},{"name":"LVGHL_OPENSELECTEDHOT","features":[40]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSED","features":[40]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSEDHOT","features":[40]},{"name":"LVGH_CLOSE","features":[40]},{"name":"LVGH_CLOSEHOT","features":[40]},{"name":"LVGH_CLOSEMIXEDSELECTION","features":[40]},{"name":"LVGH_CLOSEMIXEDSELECTIONHOT","features":[40]},{"name":"LVGH_CLOSESELECTED","features":[40]},{"name":"LVGH_CLOSESELECTEDHOT","features":[40]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSED","features":[40]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSEDHOT","features":[40]},{"name":"LVGH_OPEN","features":[40]},{"name":"LVGH_OPENHOT","features":[40]},{"name":"LVGH_OPENMIXEDSELECTION","features":[40]},{"name":"LVGH_OPENMIXEDSELECTIONHOT","features":[40]},{"name":"LVGH_OPENSELECTED","features":[40]},{"name":"LVGH_OPENSELECTEDHOT","features":[40]},{"name":"LVGH_OPENSELECTEDNOTFOCUSED","features":[40]},{"name":"LVGH_OPENSELECTEDNOTFOCUSEDHOT","features":[40]},{"name":"LVGIT_UNFOLDED","features":[40]},{"name":"LVGIT_ZERO","features":[40]},{"name":"LVGMF_BORDERCOLOR","features":[40]},{"name":"LVGMF_BORDERSIZE","features":[40]},{"name":"LVGMF_NONE","features":[40]},{"name":"LVGMF_TEXTCOLOR","features":[40]},{"name":"LVGROUP","features":[40]},{"name":"LVGROUPMETRICS","features":[1,40]},{"name":"LVGROUP_MASK","features":[40]},{"name":"LVGS_COLLAPSED","features":[40]},{"name":"LVGS_COLLAPSIBLE","features":[40]},{"name":"LVGS_FOCUSED","features":[40]},{"name":"LVGS_HIDDEN","features":[40]},{"name":"LVGS_NOHEADER","features":[40]},{"name":"LVGS_NORMAL","features":[40]},{"name":"LVGS_SELECTED","features":[40]},{"name":"LVGS_SUBSETED","features":[40]},{"name":"LVGS_SUBSETLINKFOCUSED","features":[40]},{"name":"LVHITTESTINFO","features":[1,40]},{"name":"LVHITTESTINFO_FLAGS","features":[40]},{"name":"LVHT_ABOVE","features":[40]},{"name":"LVHT_BELOW","features":[40]},{"name":"LVHT_EX_FOOTER","features":[40]},{"name":"LVHT_EX_GROUP","features":[40]},{"name":"LVHT_EX_GROUP_BACKGROUND","features":[40]},{"name":"LVHT_EX_GROUP_COLLAPSE","features":[40]},{"name":"LVHT_EX_GROUP_FOOTER","features":[40]},{"name":"LVHT_EX_GROUP_HEADER","features":[40]},{"name":"LVHT_EX_GROUP_STATEICON","features":[40]},{"name":"LVHT_EX_GROUP_SUBSETLINK","features":[40]},{"name":"LVHT_EX_ONCONTENTS","features":[40]},{"name":"LVHT_NOWHERE","features":[40]},{"name":"LVHT_ONITEMICON","features":[40]},{"name":"LVHT_ONITEMLABEL","features":[40]},{"name":"LVHT_ONITEMSTATEICON","features":[40]},{"name":"LVHT_TOLEFT","features":[40]},{"name":"LVHT_TORIGHT","features":[40]},{"name":"LVIF_COLFMT","features":[40]},{"name":"LVIF_COLUMNS","features":[40]},{"name":"LVIF_DI_SETITEM","features":[40]},{"name":"LVIF_GROUPID","features":[40]},{"name":"LVIF_IMAGE","features":[40]},{"name":"LVIF_INDENT","features":[40]},{"name":"LVIF_NORECOMPUTE","features":[40]},{"name":"LVIF_PARAM","features":[40]},{"name":"LVIF_STATE","features":[40]},{"name":"LVIF_TEXT","features":[40]},{"name":"LVIM_AFTER","features":[40]},{"name":"LVINSERTGROUPSORTED","features":[40]},{"name":"LVINSERTMARK","features":[40]},{"name":"LVIR_BOUNDS","features":[40]},{"name":"LVIR_ICON","features":[40]},{"name":"LVIR_LABEL","features":[40]},{"name":"LVIR_SELECTBOUNDS","features":[40]},{"name":"LVIS_ACTIVATING","features":[40]},{"name":"LVIS_CUT","features":[40]},{"name":"LVIS_DROPHILITED","features":[40]},{"name":"LVIS_FOCUSED","features":[40]},{"name":"LVIS_GLOW","features":[40]},{"name":"LVIS_OVERLAYMASK","features":[40]},{"name":"LVIS_SELECTED","features":[40]},{"name":"LVIS_STATEIMAGEMASK","features":[40]},{"name":"LVITEMA","features":[1,40]},{"name":"LVITEMA_GROUP_ID","features":[40]},{"name":"LVITEMINDEX","features":[40]},{"name":"LVITEMW","features":[1,40]},{"name":"LVKF_ALT","features":[40]},{"name":"LVKF_CONTROL","features":[40]},{"name":"LVKF_SHIFT","features":[40]},{"name":"LVM_APPROXIMATEVIEWRECT","features":[40]},{"name":"LVM_ARRANGE","features":[40]},{"name":"LVM_CANCELEDITLABEL","features":[40]},{"name":"LVM_CREATEDRAGIMAGE","features":[40]},{"name":"LVM_DELETEALLITEMS","features":[40]},{"name":"LVM_DELETECOLUMN","features":[40]},{"name":"LVM_DELETEITEM","features":[40]},{"name":"LVM_EDITLABEL","features":[40]},{"name":"LVM_EDITLABELA","features":[40]},{"name":"LVM_EDITLABELW","features":[40]},{"name":"LVM_ENABLEGROUPVIEW","features":[40]},{"name":"LVM_ENSUREVISIBLE","features":[40]},{"name":"LVM_FINDITEM","features":[40]},{"name":"LVM_FINDITEMA","features":[40]},{"name":"LVM_FINDITEMW","features":[40]},{"name":"LVM_FIRST","features":[40]},{"name":"LVM_GETBKCOLOR","features":[40]},{"name":"LVM_GETBKIMAGE","features":[40]},{"name":"LVM_GETBKIMAGEA","features":[40]},{"name":"LVM_GETBKIMAGEW","features":[40]},{"name":"LVM_GETCALLBACKMASK","features":[40]},{"name":"LVM_GETCOLUMN","features":[40]},{"name":"LVM_GETCOLUMNA","features":[40]},{"name":"LVM_GETCOLUMNORDERARRAY","features":[40]},{"name":"LVM_GETCOLUMNW","features":[40]},{"name":"LVM_GETCOLUMNWIDTH","features":[40]},{"name":"LVM_GETCOUNTPERPAGE","features":[40]},{"name":"LVM_GETEDITCONTROL","features":[40]},{"name":"LVM_GETEMPTYTEXT","features":[40]},{"name":"LVM_GETEXTENDEDLISTVIEWSTYLE","features":[40]},{"name":"LVM_GETFOCUSEDGROUP","features":[40]},{"name":"LVM_GETFOOTERINFO","features":[40]},{"name":"LVM_GETFOOTERITEM","features":[40]},{"name":"LVM_GETFOOTERITEMRECT","features":[40]},{"name":"LVM_GETFOOTERRECT","features":[40]},{"name":"LVM_GETGROUPCOUNT","features":[40]},{"name":"LVM_GETGROUPINFO","features":[40]},{"name":"LVM_GETGROUPINFOBYINDEX","features":[40]},{"name":"LVM_GETGROUPMETRICS","features":[40]},{"name":"LVM_GETGROUPRECT","features":[40]},{"name":"LVM_GETGROUPSTATE","features":[40]},{"name":"LVM_GETHEADER","features":[40]},{"name":"LVM_GETHOTCURSOR","features":[40]},{"name":"LVM_GETHOTITEM","features":[40]},{"name":"LVM_GETHOVERTIME","features":[40]},{"name":"LVM_GETIMAGELIST","features":[40]},{"name":"LVM_GETINSERTMARK","features":[40]},{"name":"LVM_GETINSERTMARKCOLOR","features":[40]},{"name":"LVM_GETINSERTMARKRECT","features":[40]},{"name":"LVM_GETISEARCHSTRING","features":[40]},{"name":"LVM_GETISEARCHSTRINGA","features":[40]},{"name":"LVM_GETISEARCHSTRINGW","features":[40]},{"name":"LVM_GETITEM","features":[40]},{"name":"LVM_GETITEMA","features":[40]},{"name":"LVM_GETITEMCOUNT","features":[40]},{"name":"LVM_GETITEMINDEXRECT","features":[40]},{"name":"LVM_GETITEMPOSITION","features":[40]},{"name":"LVM_GETITEMRECT","features":[40]},{"name":"LVM_GETITEMSPACING","features":[40]},{"name":"LVM_GETITEMSTATE","features":[40]},{"name":"LVM_GETITEMTEXT","features":[40]},{"name":"LVM_GETITEMTEXTA","features":[40]},{"name":"LVM_GETITEMTEXTW","features":[40]},{"name":"LVM_GETITEMW","features":[40]},{"name":"LVM_GETNEXTITEM","features":[40]},{"name":"LVM_GETNEXTITEMINDEX","features":[40]},{"name":"LVM_GETNUMBEROFWORKAREAS","features":[40]},{"name":"LVM_GETORIGIN","features":[40]},{"name":"LVM_GETOUTLINECOLOR","features":[40]},{"name":"LVM_GETSELECTEDCOLUMN","features":[40]},{"name":"LVM_GETSELECTEDCOUNT","features":[40]},{"name":"LVM_GETSELECTIONMARK","features":[40]},{"name":"LVM_GETSTRINGWIDTH","features":[40]},{"name":"LVM_GETSTRINGWIDTHA","features":[40]},{"name":"LVM_GETSTRINGWIDTHW","features":[40]},{"name":"LVM_GETSUBITEMRECT","features":[40]},{"name":"LVM_GETTEXTBKCOLOR","features":[40]},{"name":"LVM_GETTEXTCOLOR","features":[40]},{"name":"LVM_GETTILEINFO","features":[40]},{"name":"LVM_GETTILEVIEWINFO","features":[40]},{"name":"LVM_GETTOOLTIPS","features":[40]},{"name":"LVM_GETTOPINDEX","features":[40]},{"name":"LVM_GETUNICODEFORMAT","features":[40]},{"name":"LVM_GETVIEW","features":[40]},{"name":"LVM_GETVIEWRECT","features":[40]},{"name":"LVM_GETWORKAREAS","features":[40]},{"name":"LVM_HASGROUP","features":[40]},{"name":"LVM_HITTEST","features":[40]},{"name":"LVM_INSERTCOLUMN","features":[40]},{"name":"LVM_INSERTCOLUMNA","features":[40]},{"name":"LVM_INSERTCOLUMNW","features":[40]},{"name":"LVM_INSERTGROUP","features":[40]},{"name":"LVM_INSERTGROUPSORTED","features":[40]},{"name":"LVM_INSERTITEM","features":[40]},{"name":"LVM_INSERTITEMA","features":[40]},{"name":"LVM_INSERTITEMW","features":[40]},{"name":"LVM_INSERTMARKHITTEST","features":[40]},{"name":"LVM_ISGROUPVIEWENABLED","features":[40]},{"name":"LVM_ISITEMVISIBLE","features":[40]},{"name":"LVM_MAPIDTOINDEX","features":[40]},{"name":"LVM_MAPINDEXTOID","features":[40]},{"name":"LVM_MOVEGROUP","features":[40]},{"name":"LVM_MOVEITEMTOGROUP","features":[40]},{"name":"LVM_REDRAWITEMS","features":[40]},{"name":"LVM_REMOVEALLGROUPS","features":[40]},{"name":"LVM_REMOVEGROUP","features":[40]},{"name":"LVM_SCROLL","features":[40]},{"name":"LVM_SETBKCOLOR","features":[40]},{"name":"LVM_SETBKIMAGE","features":[40]},{"name":"LVM_SETBKIMAGEA","features":[40]},{"name":"LVM_SETBKIMAGEW","features":[40]},{"name":"LVM_SETCALLBACKMASK","features":[40]},{"name":"LVM_SETCOLUMN","features":[40]},{"name":"LVM_SETCOLUMNA","features":[40]},{"name":"LVM_SETCOLUMNORDERARRAY","features":[40]},{"name":"LVM_SETCOLUMNW","features":[40]},{"name":"LVM_SETCOLUMNWIDTH","features":[40]},{"name":"LVM_SETEXTENDEDLISTVIEWSTYLE","features":[40]},{"name":"LVM_SETGROUPINFO","features":[40]},{"name":"LVM_SETGROUPMETRICS","features":[40]},{"name":"LVM_SETHOTCURSOR","features":[40]},{"name":"LVM_SETHOTITEM","features":[40]},{"name":"LVM_SETHOVERTIME","features":[40]},{"name":"LVM_SETICONSPACING","features":[40]},{"name":"LVM_SETIMAGELIST","features":[40]},{"name":"LVM_SETINFOTIP","features":[40]},{"name":"LVM_SETINSERTMARK","features":[40]},{"name":"LVM_SETINSERTMARKCOLOR","features":[40]},{"name":"LVM_SETITEM","features":[40]},{"name":"LVM_SETITEMA","features":[40]},{"name":"LVM_SETITEMCOUNT","features":[40]},{"name":"LVM_SETITEMINDEXSTATE","features":[40]},{"name":"LVM_SETITEMPOSITION","features":[40]},{"name":"LVM_SETITEMPOSITION32","features":[40]},{"name":"LVM_SETITEMSTATE","features":[40]},{"name":"LVM_SETITEMTEXT","features":[40]},{"name":"LVM_SETITEMTEXTA","features":[40]},{"name":"LVM_SETITEMTEXTW","features":[40]},{"name":"LVM_SETITEMW","features":[40]},{"name":"LVM_SETOUTLINECOLOR","features":[40]},{"name":"LVM_SETSELECTEDCOLUMN","features":[40]},{"name":"LVM_SETSELECTIONMARK","features":[40]},{"name":"LVM_SETTEXTBKCOLOR","features":[40]},{"name":"LVM_SETTEXTCOLOR","features":[40]},{"name":"LVM_SETTILEINFO","features":[40]},{"name":"LVM_SETTILEVIEWINFO","features":[40]},{"name":"LVM_SETTOOLTIPS","features":[40]},{"name":"LVM_SETUNICODEFORMAT","features":[40]},{"name":"LVM_SETVIEW","features":[40]},{"name":"LVM_SETWORKAREAS","features":[40]},{"name":"LVM_SORTGROUPS","features":[40]},{"name":"LVM_SORTITEMS","features":[40]},{"name":"LVM_SORTITEMSEX","features":[40]},{"name":"LVM_SUBITEMHITTEST","features":[40]},{"name":"LVM_UPDATE","features":[40]},{"name":"LVNI_ABOVE","features":[40]},{"name":"LVNI_ALL","features":[40]},{"name":"LVNI_BELOW","features":[40]},{"name":"LVNI_CUT","features":[40]},{"name":"LVNI_DROPHILITED","features":[40]},{"name":"LVNI_FOCUSED","features":[40]},{"name":"LVNI_PREVIOUS","features":[40]},{"name":"LVNI_SAMEGROUPONLY","features":[40]},{"name":"LVNI_SELECTED","features":[40]},{"name":"LVNI_TOLEFT","features":[40]},{"name":"LVNI_TORIGHT","features":[40]},{"name":"LVNI_VISIBLEONLY","features":[40]},{"name":"LVNI_VISIBLEORDER","features":[40]},{"name":"LVNSCH_DEFAULT","features":[40]},{"name":"LVNSCH_ERROR","features":[40]},{"name":"LVNSCH_IGNORE","features":[40]},{"name":"LVN_BEGINDRAG","features":[40]},{"name":"LVN_BEGINLABELEDIT","features":[40]},{"name":"LVN_BEGINLABELEDITA","features":[40]},{"name":"LVN_BEGINLABELEDITW","features":[40]},{"name":"LVN_BEGINRDRAG","features":[40]},{"name":"LVN_BEGINSCROLL","features":[40]},{"name":"LVN_COLUMNCLICK","features":[40]},{"name":"LVN_COLUMNDROPDOWN","features":[40]},{"name":"LVN_COLUMNOVERFLOWCLICK","features":[40]},{"name":"LVN_DELETEALLITEMS","features":[40]},{"name":"LVN_DELETEITEM","features":[40]},{"name":"LVN_ENDLABELEDIT","features":[40]},{"name":"LVN_ENDLABELEDITA","features":[40]},{"name":"LVN_ENDLABELEDITW","features":[40]},{"name":"LVN_ENDSCROLL","features":[40]},{"name":"LVN_FIRST","features":[40]},{"name":"LVN_GETDISPINFO","features":[40]},{"name":"LVN_GETDISPINFOA","features":[40]},{"name":"LVN_GETDISPINFOW","features":[40]},{"name":"LVN_GETEMPTYMARKUP","features":[40]},{"name":"LVN_GETINFOTIP","features":[40]},{"name":"LVN_GETINFOTIPA","features":[40]},{"name":"LVN_GETINFOTIPW","features":[40]},{"name":"LVN_HOTTRACK","features":[40]},{"name":"LVN_INCREMENTALSEARCH","features":[40]},{"name":"LVN_INCREMENTALSEARCHA","features":[40]},{"name":"LVN_INCREMENTALSEARCHW","features":[40]},{"name":"LVN_INSERTITEM","features":[40]},{"name":"LVN_ITEMACTIVATE","features":[40]},{"name":"LVN_ITEMCHANGED","features":[40]},{"name":"LVN_ITEMCHANGING","features":[40]},{"name":"LVN_KEYDOWN","features":[40]},{"name":"LVN_LAST","features":[40]},{"name":"LVN_LINKCLICK","features":[40]},{"name":"LVN_MARQUEEBEGIN","features":[40]},{"name":"LVN_ODCACHEHINT","features":[40]},{"name":"LVN_ODFINDITEM","features":[40]},{"name":"LVN_ODFINDITEMA","features":[40]},{"name":"LVN_ODFINDITEMW","features":[40]},{"name":"LVN_ODSTATECHANGED","features":[40]},{"name":"LVN_SETDISPINFO","features":[40]},{"name":"LVN_SETDISPINFOA","features":[40]},{"name":"LVN_SETDISPINFOW","features":[40]},{"name":"LVP_COLLAPSEBUTTON","features":[40]},{"name":"LVP_COLUMNDETAIL","features":[40]},{"name":"LVP_EMPTYTEXT","features":[40]},{"name":"LVP_EXPANDBUTTON","features":[40]},{"name":"LVP_GROUPHEADER","features":[40]},{"name":"LVP_GROUPHEADERLINE","features":[40]},{"name":"LVP_LISTDETAIL","features":[40]},{"name":"LVP_LISTGROUP","features":[40]},{"name":"LVP_LISTITEM","features":[40]},{"name":"LVP_LISTSORTEDDETAIL","features":[40]},{"name":"LVSCW_AUTOSIZE","features":[40]},{"name":"LVSCW_AUTOSIZE_USEHEADER","features":[40]},{"name":"LVSETINFOTIP","features":[40]},{"name":"LVSICF_NOINVALIDATEALL","features":[40]},{"name":"LVSICF_NOSCROLL","features":[40]},{"name":"LVSIL_GROUPHEADER","features":[40]},{"name":"LVSIL_NORMAL","features":[40]},{"name":"LVSIL_SMALL","features":[40]},{"name":"LVSIL_STATE","features":[40]},{"name":"LVS_ALIGNLEFT","features":[40]},{"name":"LVS_ALIGNMASK","features":[40]},{"name":"LVS_ALIGNTOP","features":[40]},{"name":"LVS_AUTOARRANGE","features":[40]},{"name":"LVS_EDITLABELS","features":[40]},{"name":"LVS_EX_AUTOAUTOARRANGE","features":[40]},{"name":"LVS_EX_AUTOCHECKSELECT","features":[40]},{"name":"LVS_EX_AUTOSIZECOLUMNS","features":[40]},{"name":"LVS_EX_BORDERSELECT","features":[40]},{"name":"LVS_EX_CHECKBOXES","features":[40]},{"name":"LVS_EX_COLUMNOVERFLOW","features":[40]},{"name":"LVS_EX_COLUMNSNAPPOINTS","features":[40]},{"name":"LVS_EX_DOUBLEBUFFER","features":[40]},{"name":"LVS_EX_FLATSB","features":[40]},{"name":"LVS_EX_FULLROWSELECT","features":[40]},{"name":"LVS_EX_GRIDLINES","features":[40]},{"name":"LVS_EX_HEADERDRAGDROP","features":[40]},{"name":"LVS_EX_HEADERINALLVIEWS","features":[40]},{"name":"LVS_EX_HIDELABELS","features":[40]},{"name":"LVS_EX_INFOTIP","features":[40]},{"name":"LVS_EX_JUSTIFYCOLUMNS","features":[40]},{"name":"LVS_EX_LABELTIP","features":[40]},{"name":"LVS_EX_MULTIWORKAREAS","features":[40]},{"name":"LVS_EX_ONECLICKACTIVATE","features":[40]},{"name":"LVS_EX_REGIONAL","features":[40]},{"name":"LVS_EX_SIMPLESELECT","features":[40]},{"name":"LVS_EX_SINGLEROW","features":[40]},{"name":"LVS_EX_SNAPTOGRID","features":[40]},{"name":"LVS_EX_SUBITEMIMAGES","features":[40]},{"name":"LVS_EX_TRACKSELECT","features":[40]},{"name":"LVS_EX_TRANSPARENTBKGND","features":[40]},{"name":"LVS_EX_TRANSPARENTSHADOWTEXT","features":[40]},{"name":"LVS_EX_TWOCLICKACTIVATE","features":[40]},{"name":"LVS_EX_UNDERLINECOLD","features":[40]},{"name":"LVS_EX_UNDERLINEHOT","features":[40]},{"name":"LVS_ICON","features":[40]},{"name":"LVS_LIST","features":[40]},{"name":"LVS_NOCOLUMNHEADER","features":[40]},{"name":"LVS_NOLABELWRAP","features":[40]},{"name":"LVS_NOSCROLL","features":[40]},{"name":"LVS_NOSORTHEADER","features":[40]},{"name":"LVS_OWNERDATA","features":[40]},{"name":"LVS_OWNERDRAWFIXED","features":[40]},{"name":"LVS_REPORT","features":[40]},{"name":"LVS_SHAREIMAGELISTS","features":[40]},{"name":"LVS_SHOWSELALWAYS","features":[40]},{"name":"LVS_SINGLESEL","features":[40]},{"name":"LVS_SMALLICON","features":[40]},{"name":"LVS_SORTASCENDING","features":[40]},{"name":"LVS_SORTDESCENDING","features":[40]},{"name":"LVS_TYPEMASK","features":[40]},{"name":"LVS_TYPESTYLEMASK","features":[40]},{"name":"LVTILEINFO","features":[40]},{"name":"LVTILEVIEWINFO","features":[1,40]},{"name":"LVTILEVIEWINFO_FLAGS","features":[40]},{"name":"LVTILEVIEWINFO_MASK","features":[40]},{"name":"LVTVIF_AUTOSIZE","features":[40]},{"name":"LVTVIF_EXTENDED","features":[40]},{"name":"LVTVIF_FIXEDHEIGHT","features":[40]},{"name":"LVTVIF_FIXEDSIZE","features":[40]},{"name":"LVTVIF_FIXEDWIDTH","features":[40]},{"name":"LVTVIM_COLUMNS","features":[40]},{"name":"LVTVIM_LABELMARGIN","features":[40]},{"name":"LVTVIM_TILESIZE","features":[40]},{"name":"LV_MAX_WORKAREAS","features":[40]},{"name":"LV_VIEW_DETAILS","features":[40]},{"name":"LV_VIEW_ICON","features":[40]},{"name":"LV_VIEW_LIST","features":[40]},{"name":"LV_VIEW_MAX","features":[40]},{"name":"LV_VIEW_SMALLICON","features":[40]},{"name":"LV_VIEW_TILE","features":[40]},{"name":"LWS_IGNORERETURN","features":[40]},{"name":"LWS_NOPREFIX","features":[40]},{"name":"LWS_RIGHT","features":[40]},{"name":"LWS_TRANSPARENT","features":[40]},{"name":"LWS_USECUSTOMTEXT","features":[40]},{"name":"LWS_USEVISUALSTYLE","features":[40]},{"name":"LoadIconMetric","features":[1,40,50]},{"name":"LoadIconWithScaleDown","features":[1,40,50]},{"name":"MARGINS","features":[40]},{"name":"MARKUPTEXTSTATES","features":[40]},{"name":"MAXBS_DISABLED","features":[40]},{"name":"MAXBS_HOT","features":[40]},{"name":"MAXBS_NORMAL","features":[40]},{"name":"MAXBS_PUSHED","features":[40]},{"name":"MAXBUTTONSTATES","features":[40]},{"name":"MAXCAPTIONSTATES","features":[40]},{"name":"MAXPROPPAGES","features":[40]},{"name":"MAX_INTLIST_COUNT","features":[40]},{"name":"MAX_LINKID_TEXT","features":[40]},{"name":"MAX_THEMECOLOR","features":[40]},{"name":"MAX_THEMESIZE","features":[40]},{"name":"MBI_DISABLED","features":[40]},{"name":"MBI_DISABLEDHOT","features":[40]},{"name":"MBI_DISABLEDPUSHED","features":[40]},{"name":"MBI_HOT","features":[40]},{"name":"MBI_NORMAL","features":[40]},{"name":"MBI_PUSHED","features":[40]},{"name":"MB_ACTIVE","features":[40]},{"name":"MB_INACTIVE","features":[40]},{"name":"MCB_BITMAP","features":[40]},{"name":"MCB_DISABLED","features":[40]},{"name":"MCB_NORMAL","features":[40]},{"name":"MCGCB_HOT","features":[40]},{"name":"MCGCB_SELECTED","features":[40]},{"name":"MCGCB_SELECTEDHOT","features":[40]},{"name":"MCGCB_SELECTEDNOTFOCUSED","features":[40]},{"name":"MCGCB_TODAY","features":[40]},{"name":"MCGCB_TODAYSELECTED","features":[40]},{"name":"MCGCU_HASSTATE","features":[40]},{"name":"MCGCU_HASSTATEHOT","features":[40]},{"name":"MCGCU_HOT","features":[40]},{"name":"MCGCU_SELECTED","features":[40]},{"name":"MCGCU_SELECTEDHOT","features":[40]},{"name":"MCGC_HASSTATE","features":[40]},{"name":"MCGC_HASSTATEHOT","features":[40]},{"name":"MCGC_HOT","features":[40]},{"name":"MCGC_SELECTED","features":[40]},{"name":"MCGC_SELECTEDHOT","features":[40]},{"name":"MCGC_TODAY","features":[40]},{"name":"MCGC_TODAYSELECTED","features":[40]},{"name":"MCGIF_DATE","features":[40]},{"name":"MCGIF_NAME","features":[40]},{"name":"MCGIF_RECT","features":[40]},{"name":"MCGIP_CALENDAR","features":[40]},{"name":"MCGIP_CALENDARBODY","features":[40]},{"name":"MCGIP_CALENDARCELL","features":[40]},{"name":"MCGIP_CALENDARCONTROL","features":[40]},{"name":"MCGIP_CALENDARHEADER","features":[40]},{"name":"MCGIP_CALENDARROW","features":[40]},{"name":"MCGIP_FOOTER","features":[40]},{"name":"MCGIP_NEXT","features":[40]},{"name":"MCGIP_PREV","features":[40]},{"name":"MCGRIDINFO","features":[1,40]},{"name":"MCGRIDINFO_FLAGS","features":[40]},{"name":"MCGRIDINFO_PART","features":[40]},{"name":"MCHITTESTINFO","features":[1,40]},{"name":"MCHITTESTINFO_HIT_FLAGS","features":[40]},{"name":"MCHT_CALENDAR","features":[40]},{"name":"MCHT_CALENDARBK","features":[40]},{"name":"MCHT_CALENDARCONTROL","features":[40]},{"name":"MCHT_CALENDARDATE","features":[40]},{"name":"MCHT_CALENDARDATEMAX","features":[40]},{"name":"MCHT_CALENDARDATEMIN","features":[40]},{"name":"MCHT_CALENDARDATENEXT","features":[40]},{"name":"MCHT_CALENDARDATEPREV","features":[40]},{"name":"MCHT_CALENDARDAY","features":[40]},{"name":"MCHT_CALENDARWEEKNUM","features":[40]},{"name":"MCHT_NEXT","features":[40]},{"name":"MCHT_NOWHERE","features":[40]},{"name":"MCHT_PREV","features":[40]},{"name":"MCHT_TITLE","features":[40]},{"name":"MCHT_TITLEBK","features":[40]},{"name":"MCHT_TITLEBTNNEXT","features":[40]},{"name":"MCHT_TITLEBTNPREV","features":[40]},{"name":"MCHT_TITLEMONTH","features":[40]},{"name":"MCHT_TITLEYEAR","features":[40]},{"name":"MCHT_TODAYLINK","features":[40]},{"name":"MCMV_CENTURY","features":[40]},{"name":"MCMV_DECADE","features":[40]},{"name":"MCMV_MAX","features":[40]},{"name":"MCMV_MONTH","features":[40]},{"name":"MCMV_YEAR","features":[40]},{"name":"MCM_FIRST","features":[40]},{"name":"MCM_GETCALENDARBORDER","features":[40]},{"name":"MCM_GETCALENDARCOUNT","features":[40]},{"name":"MCM_GETCALENDARGRIDINFO","features":[40]},{"name":"MCM_GETCALID","features":[40]},{"name":"MCM_GETCOLOR","features":[40]},{"name":"MCM_GETCURRENTVIEW","features":[40]},{"name":"MCM_GETCURSEL","features":[40]},{"name":"MCM_GETFIRSTDAYOFWEEK","features":[40]},{"name":"MCM_GETMAXSELCOUNT","features":[40]},{"name":"MCM_GETMAXTODAYWIDTH","features":[40]},{"name":"MCM_GETMINREQRECT","features":[40]},{"name":"MCM_GETMONTHDELTA","features":[40]},{"name":"MCM_GETMONTHRANGE","features":[40]},{"name":"MCM_GETRANGE","features":[40]},{"name":"MCM_GETSELRANGE","features":[40]},{"name":"MCM_GETTODAY","features":[40]},{"name":"MCM_GETUNICODEFORMAT","features":[40]},{"name":"MCM_HITTEST","features":[40]},{"name":"MCM_SETCALENDARBORDER","features":[40]},{"name":"MCM_SETCALID","features":[40]},{"name":"MCM_SETCOLOR","features":[40]},{"name":"MCM_SETCURRENTVIEW","features":[40]},{"name":"MCM_SETCURSEL","features":[40]},{"name":"MCM_SETDAYSTATE","features":[40]},{"name":"MCM_SETFIRSTDAYOFWEEK","features":[40]},{"name":"MCM_SETMAXSELCOUNT","features":[40]},{"name":"MCM_SETMONTHDELTA","features":[40]},{"name":"MCM_SETRANGE","features":[40]},{"name":"MCM_SETSELRANGE","features":[40]},{"name":"MCM_SETTODAY","features":[40]},{"name":"MCM_SETUNICODEFORMAT","features":[40]},{"name":"MCM_SIZERECTTOMIN","features":[40]},{"name":"MCNN_DISABLED","features":[40]},{"name":"MCNN_HOT","features":[40]},{"name":"MCNN_NORMAL","features":[40]},{"name":"MCNN_PRESSED","features":[40]},{"name":"MCNP_DISABLED","features":[40]},{"name":"MCNP_HOT","features":[40]},{"name":"MCNP_NORMAL","features":[40]},{"name":"MCNP_PRESSED","features":[40]},{"name":"MCN_FIRST","features":[40]},{"name":"MCN_GETDAYSTATE","features":[40]},{"name":"MCN_LAST","features":[40]},{"name":"MCN_SELCHANGE","features":[40]},{"name":"MCN_SELECT","features":[40]},{"name":"MCN_VIEWCHANGE","features":[40]},{"name":"MCSC_BACKGROUND","features":[40]},{"name":"MCSC_MONTHBK","features":[40]},{"name":"MCSC_TEXT","features":[40]},{"name":"MCSC_TITLEBK","features":[40]},{"name":"MCSC_TITLETEXT","features":[40]},{"name":"MCSC_TRAILINGTEXT","features":[40]},{"name":"MCS_DAYSTATE","features":[40]},{"name":"MCS_MULTISELECT","features":[40]},{"name":"MCS_NOSELCHANGEONNAV","features":[40]},{"name":"MCS_NOTODAY","features":[40]},{"name":"MCS_NOTODAYCIRCLE","features":[40]},{"name":"MCS_NOTRAILINGDATES","features":[40]},{"name":"MCS_SHORTDAYSOFWEEK","features":[40]},{"name":"MCS_WEEKNUMBERS","features":[40]},{"name":"MCTGCU_HASSTATE","features":[40]},{"name":"MCTGCU_HASSTATEHOT","features":[40]},{"name":"MCTGCU_HOT","features":[40]},{"name":"MCTGCU_SELECTED","features":[40]},{"name":"MCTGCU_SELECTEDHOT","features":[40]},{"name":"MCTGC_HASSTATE","features":[40]},{"name":"MCTGC_HASSTATEHOT","features":[40]},{"name":"MCTGC_HOT","features":[40]},{"name":"MCTGC_SELECTED","features":[40]},{"name":"MCTGC_SELECTEDHOT","features":[40]},{"name":"MCTGC_TODAY","features":[40]},{"name":"MCTGC_TODAYSELECTED","features":[40]},{"name":"MC_BACKGROUND","features":[40]},{"name":"MC_BORDERS","features":[40]},{"name":"MC_BULLETDISABLED","features":[40]},{"name":"MC_BULLETNORMAL","features":[40]},{"name":"MC_CHECKMARKDISABLED","features":[40]},{"name":"MC_CHECKMARKNORMAL","features":[40]},{"name":"MC_COLHEADERSPLITTER","features":[40]},{"name":"MC_GRIDBACKGROUND","features":[40]},{"name":"MC_GRIDCELL","features":[40]},{"name":"MC_GRIDCELLBACKGROUND","features":[40]},{"name":"MC_GRIDCELLUPPER","features":[40]},{"name":"MC_NAVNEXT","features":[40]},{"name":"MC_NAVPREV","features":[40]},{"name":"MC_TRAILINGGRIDCELL","features":[40]},{"name":"MC_TRAILINGGRIDCELLUPPER","features":[40]},{"name":"MDCL_DISABLED","features":[40]},{"name":"MDCL_HOT","features":[40]},{"name":"MDCL_NORMAL","features":[40]},{"name":"MDCL_PUSHED","features":[40]},{"name":"MDICLOSEBUTTONSTATES","features":[40]},{"name":"MDIMINBUTTONSTATES","features":[40]},{"name":"MDIRESTOREBUTTONSTATES","features":[40]},{"name":"MDMI_DISABLED","features":[40]},{"name":"MDMI_HOT","features":[40]},{"name":"MDMI_NORMAL","features":[40]},{"name":"MDMI_PUSHED","features":[40]},{"name":"MDP_NEWAPPBUTTON","features":[40]},{"name":"MDP_SEPERATOR","features":[40]},{"name":"MDRE_DISABLED","features":[40]},{"name":"MDRE_HOT","features":[40]},{"name":"MDRE_NORMAL","features":[40]},{"name":"MDRE_PUSHED","features":[40]},{"name":"MDS_CHECKED","features":[40]},{"name":"MDS_DISABLED","features":[40]},{"name":"MDS_HOT","features":[40]},{"name":"MDS_HOTCHECKED","features":[40]},{"name":"MDS_NORMAL","features":[40]},{"name":"MDS_PRESSED","features":[40]},{"name":"MEASUREITEMSTRUCT","features":[40]},{"name":"MENUBANDPARTS","features":[40]},{"name":"MENUBANDSTATES","features":[40]},{"name":"MENUPARTS","features":[40]},{"name":"MENU_BARBACKGROUND","features":[40]},{"name":"MENU_BARITEM","features":[40]},{"name":"MENU_CHEVRON_TMSCHEMA","features":[40]},{"name":"MENU_MENUBARDROPDOWN_TMSCHEMA","features":[40]},{"name":"MENU_MENUBARITEM_TMSCHEMA","features":[40]},{"name":"MENU_MENUDROPDOWN_TMSCHEMA","features":[40]},{"name":"MENU_MENUITEM_TMSCHEMA","features":[40]},{"name":"MENU_POPUPBACKGROUND","features":[40]},{"name":"MENU_POPUPBORDERS","features":[40]},{"name":"MENU_POPUPCHECK","features":[40]},{"name":"MENU_POPUPCHECKBACKGROUND","features":[40]},{"name":"MENU_POPUPGUTTER","features":[40]},{"name":"MENU_POPUPITEM","features":[40]},{"name":"MENU_POPUPITEMKBFOCUS","features":[40]},{"name":"MENU_POPUPITEM_FOCUSABLE","features":[40]},{"name":"MENU_POPUPSEPARATOR","features":[40]},{"name":"MENU_POPUPSUBMENU","features":[40]},{"name":"MENU_POPUPSUBMENU_HCHOT","features":[40]},{"name":"MENU_SEPARATOR_TMSCHEMA","features":[40]},{"name":"MENU_SYSTEMCLOSE","features":[40]},{"name":"MENU_SYSTEMCLOSE_HCHOT","features":[40]},{"name":"MENU_SYSTEMMAXIMIZE","features":[40]},{"name":"MENU_SYSTEMMAXIMIZE_HCHOT","features":[40]},{"name":"MENU_SYSTEMMINIMIZE","features":[40]},{"name":"MENU_SYSTEMMINIMIZE_HCHOT","features":[40]},{"name":"MENU_SYSTEMRESTORE","features":[40]},{"name":"MENU_SYSTEMRESTORE_HCHOT","features":[40]},{"name":"MINBS_DISABLED","features":[40]},{"name":"MINBS_HOT","features":[40]},{"name":"MINBS_NORMAL","features":[40]},{"name":"MINBS_PUSHED","features":[40]},{"name":"MINBUTTONSTATES","features":[40]},{"name":"MINCAPTIONSTATES","features":[40]},{"name":"MNCS_ACTIVE","features":[40]},{"name":"MNCS_DISABLED","features":[40]},{"name":"MNCS_INACTIVE","features":[40]},{"name":"MONTHCALPARTS","features":[40]},{"name":"MONTHCAL_CLASS","features":[40]},{"name":"MONTHCAL_CLASSA","features":[40]},{"name":"MONTHCAL_CLASSW","features":[40]},{"name":"MONTH_CALDENDAR_MESSAGES_VIEW","features":[40]},{"name":"MOREPROGRAMSARROWBACKSTATES","features":[40]},{"name":"MOREPROGRAMSARROWSTATES","features":[40]},{"name":"MOREPROGRAMSTABSTATES","features":[40]},{"name":"MOVESTATES","features":[40]},{"name":"MPIF_DISABLED","features":[40]},{"name":"MPIF_DISABLEDHOT","features":[40]},{"name":"MPIF_HOT","features":[40]},{"name":"MPIF_NORMAL","features":[40]},{"name":"MPIKBFOCUS_NORMAL","features":[40]},{"name":"MPI_DISABLED","features":[40]},{"name":"MPI_DISABLEDHOT","features":[40]},{"name":"MPI_HOT","features":[40]},{"name":"MPI_NORMAL","features":[40]},{"name":"MSGF_COMMCTRL_BEGINDRAG","features":[40]},{"name":"MSGF_COMMCTRL_DRAGSELECT","features":[40]},{"name":"MSGF_COMMCTRL_SIZEHEADER","features":[40]},{"name":"MSGF_COMMCTRL_TOOLBARCUST","features":[40]},{"name":"MSMHC_HOT","features":[40]},{"name":"MSM_DISABLED","features":[40]},{"name":"MSM_NORMAL","features":[40]},{"name":"MSYSCHC_HOT","features":[40]},{"name":"MSYSC_DISABLED","features":[40]},{"name":"MSYSC_NORMAL","features":[40]},{"name":"MSYSMNHC_HOT","features":[40]},{"name":"MSYSMN_DISABLED","features":[40]},{"name":"MSYSMN_NORMAL","features":[40]},{"name":"MSYSMXHC_HOT","features":[40]},{"name":"MSYSMX_DISABLED","features":[40]},{"name":"MSYSMX_NORMAL","features":[40]},{"name":"MSYSRHC_HOT","features":[40]},{"name":"MSYSR_DISABLED","features":[40]},{"name":"MSYSR_NORMAL","features":[40]},{"name":"MULTIFILEOPENORD","features":[40]},{"name":"MXCS_ACTIVE","features":[40]},{"name":"MXCS_DISABLED","features":[40]},{"name":"MXCS_INACTIVE","features":[40]},{"name":"MakeDragList","features":[1,40]},{"name":"MenuHelp","features":[1,40,50]},{"name":"NAVIGATIONPARTS","features":[40]},{"name":"NAVNEXTSTATES","features":[40]},{"name":"NAVPREVSTATES","features":[40]},{"name":"NAV_BACKBUTTON","features":[40]},{"name":"NAV_BACKBUTTONSTATES","features":[40]},{"name":"NAV_BB_DISABLED","features":[40]},{"name":"NAV_BB_HOT","features":[40]},{"name":"NAV_BB_NORMAL","features":[40]},{"name":"NAV_BB_PRESSED","features":[40]},{"name":"NAV_FB_DISABLED","features":[40]},{"name":"NAV_FB_HOT","features":[40]},{"name":"NAV_FB_NORMAL","features":[40]},{"name":"NAV_FB_PRESSED","features":[40]},{"name":"NAV_FORWARDBUTTON","features":[40]},{"name":"NAV_FORWARDBUTTONSTATES","features":[40]},{"name":"NAV_MB_DISABLED","features":[40]},{"name":"NAV_MB_HOT","features":[40]},{"name":"NAV_MB_NORMAL","features":[40]},{"name":"NAV_MB_PRESSED","features":[40]},{"name":"NAV_MENUBUTTON","features":[40]},{"name":"NAV_MENUBUTTONSTATES","features":[40]},{"name":"NEWFILEOPENORD","features":[40]},{"name":"NEWFILEOPENV2ORD","features":[40]},{"name":"NEWFILEOPENV3ORD","features":[40]},{"name":"NEWFORMATDLGWITHLINK","features":[40]},{"name":"NFS_ALL","features":[40]},{"name":"NFS_BUTTON","features":[40]},{"name":"NFS_EDIT","features":[40]},{"name":"NFS_LISTCOMBO","features":[40]},{"name":"NFS_STATIC","features":[40]},{"name":"NFS_USEFONTASSOC","features":[40]},{"name":"NMBCDROPDOWN","features":[1,40]},{"name":"NMBCHOTITEM","features":[1,40]},{"name":"NMCBEDRAGBEGINA","features":[1,40]},{"name":"NMCBEDRAGBEGINW","features":[1,40]},{"name":"NMCBEENDEDITA","features":[1,40]},{"name":"NMCBEENDEDITW","features":[1,40]},{"name":"NMCHAR","features":[1,40]},{"name":"NMCOMBOBOXEXA","features":[1,40]},{"name":"NMCOMBOBOXEXW","features":[1,40]},{"name":"NMCUSTOMDRAW","features":[1,12,40]},{"name":"NMCUSTOMDRAW_DRAW_STAGE","features":[40]},{"name":"NMCUSTOMDRAW_DRAW_STATE_FLAGS","features":[40]},{"name":"NMCUSTOMSPLITRECTINFO","features":[1,40]},{"name":"NMCUSTOMTEXT","features":[1,12,40]},{"name":"NMDATETIMECHANGE","features":[1,40]},{"name":"NMDATETIMECHANGE_FLAGS","features":[40]},{"name":"NMDATETIMEFORMATA","features":[1,40]},{"name":"NMDATETIMEFORMATQUERYA","features":[1,40]},{"name":"NMDATETIMEFORMATQUERYW","features":[1,40]},{"name":"NMDATETIMEFORMATW","features":[1,40]},{"name":"NMDATETIMESTRINGA","features":[1,40]},{"name":"NMDATETIMESTRINGW","features":[1,40]},{"name":"NMDATETIMEWMKEYDOWNA","features":[1,40]},{"name":"NMDATETIMEWMKEYDOWNW","features":[1,40]},{"name":"NMDAYSTATE","features":[1,40]},{"name":"NMHDDISPINFOA","features":[1,40]},{"name":"NMHDDISPINFOW","features":[1,40]},{"name":"NMHDFILTERBTNCLICK","features":[1,40]},{"name":"NMHDR","features":[1,40]},{"name":"NMHEADERA","features":[1,12,40]},{"name":"NMHEADERW","features":[1,12,40]},{"name":"NMIPADDRESS","features":[1,40]},{"name":"NMITEMACTIVATE","features":[1,40]},{"name":"NMKEY","features":[1,40]},{"name":"NMLINK","features":[1,40]},{"name":"NMLISTVIEW","features":[1,40]},{"name":"NMLVCACHEHINT","features":[1,40]},{"name":"NMLVCUSTOMDRAW","features":[1,12,40]},{"name":"NMLVCUSTOMDRAW_ITEM_TYPE","features":[40]},{"name":"NMLVDISPINFOA","features":[1,40]},{"name":"NMLVDISPINFOW","features":[1,40]},{"name":"NMLVEMPTYMARKUP","features":[1,40]},{"name":"NMLVEMPTYMARKUP_FLAGS","features":[40]},{"name":"NMLVFINDITEMA","features":[1,40]},{"name":"NMLVFINDITEMW","features":[1,40]},{"name":"NMLVGETINFOTIPA","features":[1,40]},{"name":"NMLVGETINFOTIPW","features":[1,40]},{"name":"NMLVGETINFOTIP_FLAGS","features":[40]},{"name":"NMLVKEYDOWN","features":[1,40]},{"name":"NMLVLINK","features":[1,40]},{"name":"NMLVODSTATECHANGE","features":[1,40]},{"name":"NMLVSCROLL","features":[1,40]},{"name":"NMMOUSE","features":[1,40]},{"name":"NMOBJECTNOTIFY","features":[1,40]},{"name":"NMPGCALCSIZE","features":[1,40]},{"name":"NMPGCALCSIZE_FLAGS","features":[40]},{"name":"NMPGHOTITEM","features":[1,40]},{"name":"NMPGSCROLL","features":[1,40]},{"name":"NMPGSCROLL_DIR","features":[40]},{"name":"NMPGSCROLL_KEYS","features":[40]},{"name":"NMRBAUTOSIZE","features":[1,40]},{"name":"NMREBAR","features":[1,40]},{"name":"NMREBARAUTOBREAK","features":[1,40]},{"name":"NMREBARCHEVRON","features":[1,40]},{"name":"NMREBARCHILDSIZE","features":[1,40]},{"name":"NMREBARSPLITTER","features":[1,40]},{"name":"NMREBAR_MASK_FLAGS","features":[40]},{"name":"NMSEARCHWEB","features":[1,40]},{"name":"NMSELCHANGE","features":[1,40]},{"name":"NMTBCUSTOMDRAW","features":[1,12,40]},{"name":"NMTBDISPINFOA","features":[1,40]},{"name":"NMTBDISPINFOW","features":[1,40]},{"name":"NMTBDISPINFOW_MASK","features":[40]},{"name":"NMTBGETINFOTIPA","features":[1,40]},{"name":"NMTBGETINFOTIPW","features":[1,40]},{"name":"NMTBHOTITEM","features":[1,40]},{"name":"NMTBHOTITEM_FLAGS","features":[40]},{"name":"NMTBRESTORE","features":[1,40]},{"name":"NMTBSAVE","features":[1,40]},{"name":"NMTCKEYDOWN","features":[1,40]},{"name":"NMTOOLBARA","features":[1,40]},{"name":"NMTOOLBARW","features":[1,40]},{"name":"NMTOOLTIPSCREATED","features":[1,40]},{"name":"NMTRBTHUMBPOSCHANGING","features":[1,40]},{"name":"NMTREEVIEWA","features":[1,40]},{"name":"NMTREEVIEWW","features":[1,40]},{"name":"NMTTCUSTOMDRAW","features":[1,12,40]},{"name":"NMTTDISPINFOA","features":[1,40]},{"name":"NMTTDISPINFOW","features":[1,40]},{"name":"NMTVASYNCDRAW","features":[1,12,40]},{"name":"NMTVCUSTOMDRAW","features":[1,12,40]},{"name":"NMTVDISPINFOA","features":[1,40]},{"name":"NMTVDISPINFOEXA","features":[1,40]},{"name":"NMTVDISPINFOEXW","features":[1,40]},{"name":"NMTVDISPINFOW","features":[1,40]},{"name":"NMTVGETINFOTIPA","features":[1,40]},{"name":"NMTVGETINFOTIPW","features":[1,40]},{"name":"NMTVITEMCHANGE","features":[1,40]},{"name":"NMTVKEYDOWN","features":[1,40]},{"name":"NMTVSTATEIMAGECHANGING","features":[1,40]},{"name":"NMUPDOWN","features":[1,40]},{"name":"NMVIEWCHANGE","features":[1,40]},{"name":"NM_CHAR","features":[40]},{"name":"NM_CLICK","features":[40]},{"name":"NM_CUSTOMDRAW","features":[40]},{"name":"NM_CUSTOMTEXT","features":[40]},{"name":"NM_DBLCLK","features":[40]},{"name":"NM_FIRST","features":[40]},{"name":"NM_FONTCHANGED","features":[40]},{"name":"NM_GETCUSTOMSPLITRECT","features":[40]},{"name":"NM_HOVER","features":[40]},{"name":"NM_KEYDOWN","features":[40]},{"name":"NM_KILLFOCUS","features":[40]},{"name":"NM_LAST","features":[40]},{"name":"NM_LDOWN","features":[40]},{"name":"NM_NCHITTEST","features":[40]},{"name":"NM_OUTOFMEMORY","features":[40]},{"name":"NM_RCLICK","features":[40]},{"name":"NM_RDBLCLK","features":[40]},{"name":"NM_RDOWN","features":[40]},{"name":"NM_RELEASEDCAPTURE","features":[40]},{"name":"NM_RETURN","features":[40]},{"name":"NM_SETCURSOR","features":[40]},{"name":"NM_SETFOCUS","features":[40]},{"name":"NM_THEMECHANGED","features":[40]},{"name":"NM_TOOLTIPSCREATED","features":[40]},{"name":"NM_TREEVIEW_ACTION","features":[40]},{"name":"NM_TVSTATEIMAGECHANGING","features":[40]},{"name":"NONESTATES","features":[40]},{"name":"NORMALGROUPCOLLAPSESTATES","features":[40]},{"name":"NORMALGROUPEXPANDSTATES","features":[40]},{"name":"ODA_DRAWENTIRE","features":[40]},{"name":"ODA_FLAGS","features":[40]},{"name":"ODA_FOCUS","features":[40]},{"name":"ODA_SELECT","features":[40]},{"name":"ODS_CHECKED","features":[40]},{"name":"ODS_COMBOBOXEDIT","features":[40]},{"name":"ODS_DEFAULT","features":[40]},{"name":"ODS_DISABLED","features":[40]},{"name":"ODS_FLAGS","features":[40]},{"name":"ODS_FOCUS","features":[40]},{"name":"ODS_GRAYED","features":[40]},{"name":"ODS_HOTLIGHT","features":[40]},{"name":"ODS_INACTIVE","features":[40]},{"name":"ODS_NOACCEL","features":[40]},{"name":"ODS_NOFOCUSRECT","features":[40]},{"name":"ODS_SELECTED","features":[40]},{"name":"ODT_BUTTON","features":[40]},{"name":"ODT_COMBOBOX","features":[40]},{"name":"ODT_HEADER","features":[40]},{"name":"ODT_LISTBOX","features":[40]},{"name":"ODT_LISTVIEW","features":[40]},{"name":"ODT_MENU","features":[40]},{"name":"ODT_STATIC","features":[40]},{"name":"ODT_TAB","features":[40]},{"name":"OFFSETTYPE","features":[40]},{"name":"OPENBOXSTATES","features":[40]},{"name":"OPEN_THEME_DATA_FLAGS","features":[40]},{"name":"OTD_FORCE_RECT_SIZING","features":[40]},{"name":"OTD_NONCLIENT","features":[40]},{"name":"OT_ABOVELASTBUTTON","features":[40]},{"name":"OT_BELOWLASTBUTTON","features":[40]},{"name":"OT_BOTTOMLEFT","features":[40]},{"name":"OT_BOTTOMMIDDLE","features":[40]},{"name":"OT_BOTTOMRIGHT","features":[40]},{"name":"OT_LEFTOFCAPTION","features":[40]},{"name":"OT_LEFTOFLASTBUTTON","features":[40]},{"name":"OT_MIDDLELEFT","features":[40]},{"name":"OT_MIDDLERIGHT","features":[40]},{"name":"OT_RIGHTOFCAPTION","features":[40]},{"name":"OT_RIGHTOFLASTBUTTON","features":[40]},{"name":"OT_TOPLEFT","features":[40]},{"name":"OT_TOPMIDDLE","features":[40]},{"name":"OT_TOPRIGHT","features":[40]},{"name":"OpenThemeData","features":[1,40]},{"name":"OpenThemeDataEx","features":[1,40]},{"name":"PAGEPARTS","features":[40]},{"name":"PAGESETUPDLGORD","features":[40]},{"name":"PAGESETUPDLGORDMOTIF","features":[40]},{"name":"PBBS_NORMAL","features":[40]},{"name":"PBBS_PARTIAL","features":[40]},{"name":"PBBVS_NORMAL","features":[40]},{"name":"PBBVS_PARTIAL","features":[40]},{"name":"PBDDS_DISABLED","features":[40]},{"name":"PBDDS_NORMAL","features":[40]},{"name":"PBFS_ERROR","features":[40]},{"name":"PBFS_NORMAL","features":[40]},{"name":"PBFS_PARTIAL","features":[40]},{"name":"PBFS_PAUSED","features":[40]},{"name":"PBFVS_ERROR","features":[40]},{"name":"PBFVS_NORMAL","features":[40]},{"name":"PBFVS_PARTIAL","features":[40]},{"name":"PBFVS_PAUSED","features":[40]},{"name":"PBM_DELTAPOS","features":[40]},{"name":"PBM_GETBARCOLOR","features":[40]},{"name":"PBM_GETBKCOLOR","features":[40]},{"name":"PBM_GETPOS","features":[40]},{"name":"PBM_GETRANGE","features":[40]},{"name":"PBM_GETSTATE","features":[40]},{"name":"PBM_GETSTEP","features":[40]},{"name":"PBM_SETBARCOLOR","features":[40]},{"name":"PBM_SETBKCOLOR","features":[40]},{"name":"PBM_SETMARQUEE","features":[40]},{"name":"PBM_SETPOS","features":[40]},{"name":"PBM_SETRANGE","features":[40]},{"name":"PBM_SETRANGE32","features":[40]},{"name":"PBM_SETSTATE","features":[40]},{"name":"PBM_SETSTEP","features":[40]},{"name":"PBM_STEPIT","features":[40]},{"name":"PBRANGE","features":[40]},{"name":"PBST_ERROR","features":[40]},{"name":"PBST_NORMAL","features":[40]},{"name":"PBST_PAUSED","features":[40]},{"name":"PBS_DEFAULTED","features":[40]},{"name":"PBS_DEFAULTED_ANIMATING","features":[40]},{"name":"PBS_DISABLED","features":[40]},{"name":"PBS_HOT","features":[40]},{"name":"PBS_MARQUEE","features":[40]},{"name":"PBS_NORMAL","features":[40]},{"name":"PBS_PRESSED","features":[40]},{"name":"PBS_SMOOTH","features":[40]},{"name":"PBS_SMOOTHREVERSE","features":[40]},{"name":"PBS_VERTICAL","features":[40]},{"name":"PFNDACOMPARE","features":[1,40]},{"name":"PFNDACOMPARECONST","features":[1,40]},{"name":"PFNDAENUMCALLBACK","features":[40]},{"name":"PFNDAENUMCALLBACKCONST","features":[40]},{"name":"PFNDPAMERGE","features":[1,40]},{"name":"PFNDPAMERGECONST","features":[1,40]},{"name":"PFNDPASTREAM","features":[40]},{"name":"PFNLVCOMPARE","features":[1,40]},{"name":"PFNLVGROUPCOMPARE","features":[40]},{"name":"PFNPROPSHEETCALLBACK","features":[1,40]},{"name":"PFNTVCOMPARE","features":[1,40]},{"name":"PFTASKDIALOGCALLBACK","features":[1,40]},{"name":"PGB_BOTTOMORRIGHT","features":[40]},{"name":"PGB_TOPORLEFT","features":[40]},{"name":"PGF_CALCHEIGHT","features":[40]},{"name":"PGF_CALCWIDTH","features":[40]},{"name":"PGF_DEPRESSED","features":[40]},{"name":"PGF_GRAYED","features":[40]},{"name":"PGF_HOT","features":[40]},{"name":"PGF_INVISIBLE","features":[40]},{"name":"PGF_NORMAL","features":[40]},{"name":"PGF_SCROLLDOWN","features":[40]},{"name":"PGF_SCROLLLEFT","features":[40]},{"name":"PGF_SCROLLRIGHT","features":[40]},{"name":"PGF_SCROLLUP","features":[40]},{"name":"PGK_CONTROL","features":[40]},{"name":"PGK_MENU","features":[40]},{"name":"PGK_NONE","features":[40]},{"name":"PGK_SHIFT","features":[40]},{"name":"PGM_FIRST","features":[40]},{"name":"PGM_FORWARDMOUSE","features":[40]},{"name":"PGM_GETBKCOLOR","features":[40]},{"name":"PGM_GETBORDER","features":[40]},{"name":"PGM_GETBUTTONSIZE","features":[40]},{"name":"PGM_GETBUTTONSTATE","features":[40]},{"name":"PGM_GETDROPTARGET","features":[40]},{"name":"PGM_GETPOS","features":[40]},{"name":"PGM_RECALCSIZE","features":[40]},{"name":"PGM_SETBKCOLOR","features":[40]},{"name":"PGM_SETBORDER","features":[40]},{"name":"PGM_SETBUTTONSIZE","features":[40]},{"name":"PGM_SETCHILD","features":[40]},{"name":"PGM_SETPOS","features":[40]},{"name":"PGM_SETSCROLLINFO","features":[40]},{"name":"PGN_CALCSIZE","features":[40]},{"name":"PGN_FIRST","features":[40]},{"name":"PGN_HOTITEMCHANGE","features":[40]},{"name":"PGN_LAST","features":[40]},{"name":"PGN_SCROLL","features":[40]},{"name":"PGRP_DOWN","features":[40]},{"name":"PGRP_DOWNHORZ","features":[40]},{"name":"PGRP_UP","features":[40]},{"name":"PGRP_UPHORZ","features":[40]},{"name":"PGS_AUTOSCROLL","features":[40]},{"name":"PGS_DRAGNDROP","features":[40]},{"name":"PGS_HORZ","features":[40]},{"name":"PGS_VERT","features":[40]},{"name":"POINTER_DEVICE_CURSOR_INFO","features":[40]},{"name":"POINTER_DEVICE_CURSOR_TYPE","features":[40]},{"name":"POINTER_DEVICE_CURSOR_TYPE_ERASER","features":[40]},{"name":"POINTER_DEVICE_CURSOR_TYPE_MAX","features":[40]},{"name":"POINTER_DEVICE_CURSOR_TYPE_TIP","features":[40]},{"name":"POINTER_DEVICE_CURSOR_TYPE_UNKNOWN","features":[40]},{"name":"POINTER_DEVICE_INFO","features":[1,12,40]},{"name":"POINTER_DEVICE_PROPERTY","features":[40]},{"name":"POINTER_DEVICE_TYPE","features":[40]},{"name":"POINTER_DEVICE_TYPE_EXTERNAL_PEN","features":[40]},{"name":"POINTER_DEVICE_TYPE_INTEGRATED_PEN","features":[40]},{"name":"POINTER_DEVICE_TYPE_MAX","features":[40]},{"name":"POINTER_DEVICE_TYPE_TOUCH","features":[40]},{"name":"POINTER_DEVICE_TYPE_TOUCH_PAD","features":[40]},{"name":"POINTER_FEEDBACK_DEFAULT","features":[40]},{"name":"POINTER_FEEDBACK_INDIRECT","features":[40]},{"name":"POINTER_FEEDBACK_MODE","features":[40]},{"name":"POINTER_FEEDBACK_NONE","features":[40]},{"name":"POINTER_TYPE_INFO","features":[1,40,209,50]},{"name":"POPUPCHECKBACKGROUNDSTATES","features":[40]},{"name":"POPUPCHECKSTATES","features":[40]},{"name":"POPUPITEMFOCUSABLESTATES","features":[40]},{"name":"POPUPITEMKBFOCUSSTATES","features":[40]},{"name":"POPUPITEMSTATES","features":[40]},{"name":"POPUPSUBMENUHCHOTSTATES","features":[40]},{"name":"POPUPSUBMENUSTATES","features":[40]},{"name":"PO_CLASS","features":[40]},{"name":"PO_GLOBAL","features":[40]},{"name":"PO_NOTFOUND","features":[40]},{"name":"PO_PART","features":[40]},{"name":"PO_STATE","features":[40]},{"name":"PP_BAR","features":[40]},{"name":"PP_BARVERT","features":[40]},{"name":"PP_CHUNK","features":[40]},{"name":"PP_CHUNKVERT","features":[40]},{"name":"PP_FILL","features":[40]},{"name":"PP_FILLVERT","features":[40]},{"name":"PP_MOVEOVERLAY","features":[40]},{"name":"PP_MOVEOVERLAYVERT","features":[40]},{"name":"PP_PULSEOVERLAY","features":[40]},{"name":"PP_PULSEOVERLAYVERT","features":[40]},{"name":"PP_TRANSPARENTBAR","features":[40]},{"name":"PP_TRANSPARENTBARVERT","features":[40]},{"name":"PRINTDLGEXORD","features":[40]},{"name":"PRINTDLGORD","features":[40]},{"name":"PRNSETUPDLGORD","features":[40]},{"name":"PROGRESSPARTS","features":[40]},{"name":"PROGRESS_CLASS","features":[40]},{"name":"PROGRESS_CLASSA","features":[40]},{"name":"PROGRESS_CLASSW","features":[40]},{"name":"PROPERTYORIGIN","features":[40]},{"name":"PROPSHEETHEADERA_V1","features":[1,12,40,50]},{"name":"PROPSHEETHEADERA_V2","features":[1,12,40,50]},{"name":"PROPSHEETHEADERW_V1","features":[1,12,40,50]},{"name":"PROPSHEETHEADERW_V2","features":[1,12,40,50]},{"name":"PROPSHEETPAGEA","features":[1,12,40,50]},{"name":"PROPSHEETPAGEA_V1","features":[1,12,40,50]},{"name":"PROPSHEETPAGEA_V2","features":[1,12,40,50]},{"name":"PROPSHEETPAGEA_V3","features":[1,12,40,50]},{"name":"PROPSHEETPAGEW","features":[1,12,40,50]},{"name":"PROPSHEETPAGEW_V1","features":[1,12,40,50]},{"name":"PROPSHEETPAGEW_V2","features":[1,12,40,50]},{"name":"PROPSHEETPAGEW_V3","features":[1,12,40,50]},{"name":"PROP_LG_CXDLG","features":[40]},{"name":"PROP_LG_CYDLG","features":[40]},{"name":"PROP_MED_CXDLG","features":[40]},{"name":"PROP_MED_CYDLG","features":[40]},{"name":"PROP_SM_CXDLG","features":[40]},{"name":"PROP_SM_CYDLG","features":[40]},{"name":"PSBTN_APPLYNOW","features":[40]},{"name":"PSBTN_BACK","features":[40]},{"name":"PSBTN_CANCEL","features":[40]},{"name":"PSBTN_FINISH","features":[40]},{"name":"PSBTN_HELP","features":[40]},{"name":"PSBTN_MAX","features":[40]},{"name":"PSBTN_NEXT","features":[40]},{"name":"PSBTN_OK","features":[40]},{"name":"PSCB_BUTTONPRESSED","features":[40]},{"name":"PSCB_INITIALIZED","features":[40]},{"name":"PSCB_PRECREATE","features":[40]},{"name":"PSHNOTIFY","features":[1,40]},{"name":"PSH_AEROWIZARD","features":[40]},{"name":"PSH_DEFAULT","features":[40]},{"name":"PSH_HASHELP","features":[40]},{"name":"PSH_HEADER","features":[40]},{"name":"PSH_HEADERBITMAP","features":[40]},{"name":"PSH_MODELESS","features":[40]},{"name":"PSH_NOAPPLYNOW","features":[40]},{"name":"PSH_NOCONTEXTHELP","features":[40]},{"name":"PSH_NOMARGIN","features":[40]},{"name":"PSH_PROPSHEETPAGE","features":[40]},{"name":"PSH_PROPTITLE","features":[40]},{"name":"PSH_RESIZABLE","features":[40]},{"name":"PSH_RTLREADING","features":[40]},{"name":"PSH_STRETCHWATERMARK","features":[40]},{"name":"PSH_USECALLBACK","features":[40]},{"name":"PSH_USEHBMHEADER","features":[40]},{"name":"PSH_USEHBMWATERMARK","features":[40]},{"name":"PSH_USEHICON","features":[40]},{"name":"PSH_USEHPLWATERMARK","features":[40]},{"name":"PSH_USEICONID","features":[40]},{"name":"PSH_USEPAGELANG","features":[40]},{"name":"PSH_USEPSTARTPAGE","features":[40]},{"name":"PSH_WATERMARK","features":[40]},{"name":"PSH_WIZARD","features":[40]},{"name":"PSH_WIZARD97","features":[40]},{"name":"PSH_WIZARDCONTEXTHELP","features":[40]},{"name":"PSH_WIZARDHASFINISH","features":[40]},{"name":"PSH_WIZARD_LITE","features":[40]},{"name":"PSM_ADDPAGE","features":[40]},{"name":"PSM_APPLY","features":[40]},{"name":"PSM_CANCELTOCLOSE","features":[40]},{"name":"PSM_CHANGED","features":[40]},{"name":"PSM_ENABLEWIZBUTTONS","features":[40]},{"name":"PSM_GETCURRENTPAGEHWND","features":[40]},{"name":"PSM_GETRESULT","features":[40]},{"name":"PSM_GETTABCONTROL","features":[40]},{"name":"PSM_HWNDTOINDEX","features":[40]},{"name":"PSM_IDTOINDEX","features":[40]},{"name":"PSM_INDEXTOHWND","features":[40]},{"name":"PSM_INDEXTOID","features":[40]},{"name":"PSM_INDEXTOPAGE","features":[40]},{"name":"PSM_INSERTPAGE","features":[40]},{"name":"PSM_ISDIALOGMESSAGE","features":[40]},{"name":"PSM_PAGETOINDEX","features":[40]},{"name":"PSM_PRESSBUTTON","features":[40]},{"name":"PSM_QUERYSIBLINGS","features":[40]},{"name":"PSM_REBOOTSYSTEM","features":[40]},{"name":"PSM_RECALCPAGESIZES","features":[40]},{"name":"PSM_REMOVEPAGE","features":[40]},{"name":"PSM_RESTARTWINDOWS","features":[40]},{"name":"PSM_SETBUTTONTEXT","features":[40]},{"name":"PSM_SETBUTTONTEXTW","features":[40]},{"name":"PSM_SETCURSEL","features":[40]},{"name":"PSM_SETCURSELID","features":[40]},{"name":"PSM_SETFINISHTEXT","features":[40]},{"name":"PSM_SETFINISHTEXTA","features":[40]},{"name":"PSM_SETFINISHTEXTW","features":[40]},{"name":"PSM_SETHEADERSUBTITLE","features":[40]},{"name":"PSM_SETHEADERSUBTITLEA","features":[40]},{"name":"PSM_SETHEADERSUBTITLEW","features":[40]},{"name":"PSM_SETHEADERTITLE","features":[40]},{"name":"PSM_SETHEADERTITLEA","features":[40]},{"name":"PSM_SETHEADERTITLEW","features":[40]},{"name":"PSM_SETNEXTTEXT","features":[40]},{"name":"PSM_SETNEXTTEXTW","features":[40]},{"name":"PSM_SETTITLE","features":[40]},{"name":"PSM_SETTITLEA","features":[40]},{"name":"PSM_SETTITLEW","features":[40]},{"name":"PSM_SETWIZBUTTONS","features":[40]},{"name":"PSM_SHOWWIZBUTTONS","features":[40]},{"name":"PSM_UNCHANGED","features":[40]},{"name":"PSNRET_INVALID","features":[40]},{"name":"PSNRET_INVALID_NOCHANGEPAGE","features":[40]},{"name":"PSNRET_MESSAGEHANDLED","features":[40]},{"name":"PSNRET_NOERROR","features":[40]},{"name":"PSN_APPLY","features":[40]},{"name":"PSN_FIRST","features":[40]},{"name":"PSN_GETOBJECT","features":[40]},{"name":"PSN_HELP","features":[40]},{"name":"PSN_KILLACTIVE","features":[40]},{"name":"PSN_LAST","features":[40]},{"name":"PSN_QUERYCANCEL","features":[40]},{"name":"PSN_QUERYINITIALFOCUS","features":[40]},{"name":"PSN_RESET","features":[40]},{"name":"PSN_SETACTIVE","features":[40]},{"name":"PSN_TRANSLATEACCELERATOR","features":[40]},{"name":"PSN_WIZBACK","features":[40]},{"name":"PSN_WIZFINISH","features":[40]},{"name":"PSN_WIZNEXT","features":[40]},{"name":"PSPCB_ADDREF","features":[40]},{"name":"PSPCB_CREATE","features":[40]},{"name":"PSPCB_MESSAGE","features":[40]},{"name":"PSPCB_RELEASE","features":[40]},{"name":"PSPCB_SI_INITDIALOG","features":[40]},{"name":"PSP_DEFAULT","features":[40]},{"name":"PSP_DLGINDIRECT","features":[40]},{"name":"PSP_HASHELP","features":[40]},{"name":"PSP_HIDEHEADER","features":[40]},{"name":"PSP_PREMATURE","features":[40]},{"name":"PSP_RTLREADING","features":[40]},{"name":"PSP_USECALLBACK","features":[40]},{"name":"PSP_USEFUSIONCONTEXT","features":[40]},{"name":"PSP_USEHEADERSUBTITLE","features":[40]},{"name":"PSP_USEHEADERTITLE","features":[40]},{"name":"PSP_USEHICON","features":[40]},{"name":"PSP_USEICONID","features":[40]},{"name":"PSP_USEREFPARENT","features":[40]},{"name":"PSP_USETITLE","features":[40]},{"name":"PSWIZBF_ELEVATIONREQUIRED","features":[40]},{"name":"PSWIZB_BACK","features":[40]},{"name":"PSWIZB_CANCEL","features":[40]},{"name":"PSWIZB_DISABLEDFINISH","features":[40]},{"name":"PSWIZB_FINISH","features":[40]},{"name":"PSWIZB_NEXT","features":[40]},{"name":"PSWIZB_RESTORE","features":[40]},{"name":"PSWIZB_SHOW","features":[40]},{"name":"PUSHBUTTONDROPDOWNSTATES","features":[40]},{"name":"PUSHBUTTONSTATES","features":[40]},{"name":"PackTouchHitTestingProximityEvaluation","features":[1,40]},{"name":"PropertySheetA","features":[1,12,40,50]},{"name":"PropertySheetW","features":[1,12,40,50]},{"name":"RADIOBUTTONSTATES","features":[40]},{"name":"RBAB_ADDBAND","features":[40]},{"name":"RBAB_AUTOSIZE","features":[40]},{"name":"RBBIM_BACKGROUND","features":[40]},{"name":"RBBIM_CHEVRONLOCATION","features":[40]},{"name":"RBBIM_CHEVRONSTATE","features":[40]},{"name":"RBBIM_CHILD","features":[40]},{"name":"RBBIM_CHILDSIZE","features":[40]},{"name":"RBBIM_COLORS","features":[40]},{"name":"RBBIM_HEADERSIZE","features":[40]},{"name":"RBBIM_ID","features":[40]},{"name":"RBBIM_IDEALSIZE","features":[40]},{"name":"RBBIM_IMAGE","features":[40]},{"name":"RBBIM_LPARAM","features":[40]},{"name":"RBBIM_SIZE","features":[40]},{"name":"RBBIM_STYLE","features":[40]},{"name":"RBBIM_TEXT","features":[40]},{"name":"RBBS_BREAK","features":[40]},{"name":"RBBS_CHILDEDGE","features":[40]},{"name":"RBBS_FIXEDBMP","features":[40]},{"name":"RBBS_FIXEDSIZE","features":[40]},{"name":"RBBS_GRIPPERALWAYS","features":[40]},{"name":"RBBS_HIDDEN","features":[40]},{"name":"RBBS_HIDETITLE","features":[40]},{"name":"RBBS_NOGRIPPER","features":[40]},{"name":"RBBS_NOVERT","features":[40]},{"name":"RBBS_TOPALIGN","features":[40]},{"name":"RBBS_USECHEVRON","features":[40]},{"name":"RBBS_VARIABLEHEIGHT","features":[40]},{"name":"RBHITTESTINFO","features":[1,40]},{"name":"RBHT_CAPTION","features":[40]},{"name":"RBHT_CHEVRON","features":[40]},{"name":"RBHT_CLIENT","features":[40]},{"name":"RBHT_GRABBER","features":[40]},{"name":"RBHT_NOWHERE","features":[40]},{"name":"RBHT_SPLITTER","features":[40]},{"name":"RBIM_IMAGELIST","features":[40]},{"name":"RBNM_ID","features":[40]},{"name":"RBNM_LPARAM","features":[40]},{"name":"RBNM_STYLE","features":[40]},{"name":"RBN_AUTOBREAK","features":[40]},{"name":"RBN_AUTOSIZE","features":[40]},{"name":"RBN_BEGINDRAG","features":[40]},{"name":"RBN_CHEVRONPUSHED","features":[40]},{"name":"RBN_CHILDSIZE","features":[40]},{"name":"RBN_DELETEDBAND","features":[40]},{"name":"RBN_DELETINGBAND","features":[40]},{"name":"RBN_ENDDRAG","features":[40]},{"name":"RBN_FIRST","features":[40]},{"name":"RBN_GETOBJECT","features":[40]},{"name":"RBN_HEIGHTCHANGE","features":[40]},{"name":"RBN_LAST","features":[40]},{"name":"RBN_LAYOUTCHANGED","features":[40]},{"name":"RBN_MINMAX","features":[40]},{"name":"RBN_SPLITTERDRAG","features":[40]},{"name":"RBSTR_CHANGERECT","features":[40]},{"name":"RBS_AUTOSIZE","features":[40]},{"name":"RBS_BANDBORDERS","features":[40]},{"name":"RBS_CHECKEDDISABLED","features":[40]},{"name":"RBS_CHECKEDHOT","features":[40]},{"name":"RBS_CHECKEDNORMAL","features":[40]},{"name":"RBS_CHECKEDPRESSED","features":[40]},{"name":"RBS_DBLCLKTOGGLE","features":[40]},{"name":"RBS_DISABLED","features":[40]},{"name":"RBS_FIXEDORDER","features":[40]},{"name":"RBS_HOT","features":[40]},{"name":"RBS_NORMAL","features":[40]},{"name":"RBS_PUSHED","features":[40]},{"name":"RBS_REGISTERDROP","features":[40]},{"name":"RBS_TOOLTIPS","features":[40]},{"name":"RBS_UNCHECKEDDISABLED","features":[40]},{"name":"RBS_UNCHECKEDHOT","features":[40]},{"name":"RBS_UNCHECKEDNORMAL","features":[40]},{"name":"RBS_UNCHECKEDPRESSED","features":[40]},{"name":"RBS_VARHEIGHT","features":[40]},{"name":"RBS_VERTICALGRIPPER","features":[40]},{"name":"RB_BEGINDRAG","features":[40]},{"name":"RB_DELETEBAND","features":[40]},{"name":"RB_DRAGMOVE","features":[40]},{"name":"RB_ENDDRAG","features":[40]},{"name":"RB_GETBANDBORDERS","features":[40]},{"name":"RB_GETBANDCOUNT","features":[40]},{"name":"RB_GETBANDINFO","features":[40]},{"name":"RB_GETBANDINFOA","features":[40]},{"name":"RB_GETBANDINFOW","features":[40]},{"name":"RB_GETBANDMARGINS","features":[40]},{"name":"RB_GETBARHEIGHT","features":[40]},{"name":"RB_GETBARINFO","features":[40]},{"name":"RB_GETBKCOLOR","features":[40]},{"name":"RB_GETCOLORSCHEME","features":[40]},{"name":"RB_GETDROPTARGET","features":[40]},{"name":"RB_GETEXTENDEDSTYLE","features":[40]},{"name":"RB_GETPALETTE","features":[40]},{"name":"RB_GETRECT","features":[40]},{"name":"RB_GETROWCOUNT","features":[40]},{"name":"RB_GETROWHEIGHT","features":[40]},{"name":"RB_GETTEXTCOLOR","features":[40]},{"name":"RB_GETTOOLTIPS","features":[40]},{"name":"RB_GETUNICODEFORMAT","features":[40]},{"name":"RB_HITTEST","features":[40]},{"name":"RB_IDTOINDEX","features":[40]},{"name":"RB_INSERTBAND","features":[40]},{"name":"RB_INSERTBANDA","features":[40]},{"name":"RB_INSERTBANDW","features":[40]},{"name":"RB_MAXIMIZEBAND","features":[40]},{"name":"RB_MINIMIZEBAND","features":[40]},{"name":"RB_MOVEBAND","features":[40]},{"name":"RB_PUSHCHEVRON","features":[40]},{"name":"RB_SETBANDINFO","features":[40]},{"name":"RB_SETBANDINFOA","features":[40]},{"name":"RB_SETBANDINFOW","features":[40]},{"name":"RB_SETBANDWIDTH","features":[40]},{"name":"RB_SETBARINFO","features":[40]},{"name":"RB_SETBKCOLOR","features":[40]},{"name":"RB_SETCOLORSCHEME","features":[40]},{"name":"RB_SETEXTENDEDSTYLE","features":[40]},{"name":"RB_SETPALETTE","features":[40]},{"name":"RB_SETPARENT","features":[40]},{"name":"RB_SETTEXTCOLOR","features":[40]},{"name":"RB_SETTOOLTIPS","features":[40]},{"name":"RB_SETUNICODEFORMAT","features":[40]},{"name":"RB_SETWINDOWTHEME","features":[40]},{"name":"RB_SHOWBAND","features":[40]},{"name":"RB_SIZETORECT","features":[40]},{"name":"READONLYSTATES","features":[40]},{"name":"REBARBANDINFOA","features":[1,12,40]},{"name":"REBARBANDINFOW","features":[1,12,40]},{"name":"REBARCLASSNAME","features":[40]},{"name":"REBARCLASSNAMEA","features":[40]},{"name":"REBARCLASSNAMEW","features":[40]},{"name":"REBARINFO","features":[40]},{"name":"REBARPARTS","features":[40]},{"name":"REPLACEDLGORD","features":[40]},{"name":"RESTOREBUTTONSTATES","features":[40]},{"name":"RP_BACKGROUND","features":[40]},{"name":"RP_BAND","features":[40]},{"name":"RP_CHEVRON","features":[40]},{"name":"RP_CHEVRONVERT","features":[40]},{"name":"RP_GRIPPER","features":[40]},{"name":"RP_GRIPPERVERT","features":[40]},{"name":"RP_SPLITTER","features":[40]},{"name":"RP_SPLITTERVERT","features":[40]},{"name":"RUNDLGORD","features":[40]},{"name":"RegisterPointerDeviceNotifications","features":[1,40]},{"name":"RegisterTouchHitTestingWindow","features":[1,40]},{"name":"SBARS_SIZEGRIP","features":[40]},{"name":"SBARS_TOOLTIPS","features":[40]},{"name":"SBN_FIRST","features":[40]},{"name":"SBN_LAST","features":[40]},{"name":"SBN_SIMPLEMODECHANGE","features":[40]},{"name":"SBP_ARROWBTN","features":[40]},{"name":"SBP_GRIPPERHORZ","features":[40]},{"name":"SBP_GRIPPERVERT","features":[40]},{"name":"SBP_LOWERTRACKHORZ","features":[40]},{"name":"SBP_LOWERTRACKVERT","features":[40]},{"name":"SBP_SIZEBOX","features":[40]},{"name":"SBP_SIZEBOXBKGND","features":[40]},{"name":"SBP_THUMBBTNHORZ","features":[40]},{"name":"SBP_THUMBBTNVERT","features":[40]},{"name":"SBP_UPPERTRACKHORZ","features":[40]},{"name":"SBP_UPPERTRACKVERT","features":[40]},{"name":"SBS_DISABLED","features":[40]},{"name":"SBS_HOT","features":[40]},{"name":"SBS_NORMAL","features":[40]},{"name":"SBS_PUSHED","features":[40]},{"name":"SBT_NOBORDERS","features":[40]},{"name":"SBT_NOTABPARSING","features":[40]},{"name":"SBT_OWNERDRAW","features":[40]},{"name":"SBT_POPOUT","features":[40]},{"name":"SBT_RTLREADING","features":[40]},{"name":"SBT_TOOLTIPS","features":[40]},{"name":"SB_GETBORDERS","features":[40]},{"name":"SB_GETICON","features":[40]},{"name":"SB_GETPARTS","features":[40]},{"name":"SB_GETRECT","features":[40]},{"name":"SB_GETTEXT","features":[40]},{"name":"SB_GETTEXTA","features":[40]},{"name":"SB_GETTEXTLENGTH","features":[40]},{"name":"SB_GETTEXTLENGTHA","features":[40]},{"name":"SB_GETTEXTLENGTHW","features":[40]},{"name":"SB_GETTEXTW","features":[40]},{"name":"SB_GETTIPTEXTA","features":[40]},{"name":"SB_GETTIPTEXTW","features":[40]},{"name":"SB_GETUNICODEFORMAT","features":[40]},{"name":"SB_ISSIMPLE","features":[40]},{"name":"SB_SETBKCOLOR","features":[40]},{"name":"SB_SETICON","features":[40]},{"name":"SB_SETMINHEIGHT","features":[40]},{"name":"SB_SETPARTS","features":[40]},{"name":"SB_SETTEXT","features":[40]},{"name":"SB_SETTEXTA","features":[40]},{"name":"SB_SETTEXTW","features":[40]},{"name":"SB_SETTIPTEXTA","features":[40]},{"name":"SB_SETTIPTEXTW","features":[40]},{"name":"SB_SETUNICODEFORMAT","features":[40]},{"name":"SB_SIMPLE","features":[40]},{"name":"SB_SIMPLEID","features":[40]},{"name":"SCBS_DISABLED","features":[40]},{"name":"SCBS_HOT","features":[40]},{"name":"SCBS_NORMAL","features":[40]},{"name":"SCBS_PUSHED","features":[40]},{"name":"SCRBS_DISABLED","features":[40]},{"name":"SCRBS_HOT","features":[40]},{"name":"SCRBS_HOVER","features":[40]},{"name":"SCRBS_NORMAL","features":[40]},{"name":"SCRBS_PRESSED","features":[40]},{"name":"SCROLLBARPARTS","features":[40]},{"name":"SCROLLBARSTYLESTATES","features":[40]},{"name":"SCS_ACTIVE","features":[40]},{"name":"SCS_DISABLED","features":[40]},{"name":"SCS_INACTIVE","features":[40]},{"name":"SECTIONTITLELINKSTATES","features":[40]},{"name":"SET_THEME_APP_PROPERTIES_FLAGS","features":[40]},{"name":"SFRB_ACTIVE","features":[40]},{"name":"SFRB_INACTIVE","features":[40]},{"name":"SFRL_ACTIVE","features":[40]},{"name":"SFRL_INACTIVE","features":[40]},{"name":"SFRR_ACTIVE","features":[40]},{"name":"SFRR_INACTIVE","features":[40]},{"name":"SHOWCALENDARBUTTONRIGHTSTATES","features":[40]},{"name":"SIZEBOXSTATES","features":[40]},{"name":"SIZINGTYPE","features":[40]},{"name":"SMALLCAPTIONSTATES","features":[40]},{"name":"SMALLCLOSEBUTTONSTATES","features":[40]},{"name":"SMALLFRAMEBOTTOMSTATES","features":[40]},{"name":"SMALLFRAMELEFTSTATES","features":[40]},{"name":"SMALLFRAMERIGHTSTATES","features":[40]},{"name":"SOFTWAREEXPLORERSTATES","features":[40]},{"name":"SPECIALGROUPCOLLAPSESTATES","features":[40]},{"name":"SPECIALGROUPEXPANDSTATES","features":[40]},{"name":"SPINPARTS","features":[40]},{"name":"SPLITSV_HOT","features":[40]},{"name":"SPLITSV_NORMAL","features":[40]},{"name":"SPLITSV_PRESSED","features":[40]},{"name":"SPLITS_HOT","features":[40]},{"name":"SPLITS_NORMAL","features":[40]},{"name":"SPLITS_PRESSED","features":[40]},{"name":"SPLITTERSTATES","features":[40]},{"name":"SPLITTERVERTSTATES","features":[40]},{"name":"SPLS_HOT","features":[40]},{"name":"SPLS_NORMAL","features":[40]},{"name":"SPLS_PRESSED","features":[40]},{"name":"SPMPT_DISABLED","features":[40]},{"name":"SPMPT_FOCUSED","features":[40]},{"name":"SPMPT_HOT","features":[40]},{"name":"SPMPT_NORMAL","features":[40]},{"name":"SPMPT_SELECTED","features":[40]},{"name":"SPNP_DOWN","features":[40]},{"name":"SPNP_DOWNHORZ","features":[40]},{"name":"SPNP_UP","features":[40]},{"name":"SPNP_UPHORZ","features":[40]},{"name":"SPOB_DISABLED","features":[40]},{"name":"SPOB_FOCUSED","features":[40]},{"name":"SPOB_HOT","features":[40]},{"name":"SPOB_NORMAL","features":[40]},{"name":"SPOB_SELECTED","features":[40]},{"name":"SPP_LOGOFF","features":[40]},{"name":"SPP_LOGOFFBUTTONS","features":[40]},{"name":"SPP_LOGOFFSPLITBUTTONDROPDOWN","features":[40]},{"name":"SPP_MOREPROGRAMS","features":[40]},{"name":"SPP_MOREPROGRAMSARROW","features":[40]},{"name":"SPP_MOREPROGRAMSARROWBACK","features":[40]},{"name":"SPP_MOREPROGRAMSTAB","features":[40]},{"name":"SPP_NSCHOST","features":[40]},{"name":"SPP_OPENBOX","features":[40]},{"name":"SPP_PLACESLIST","features":[40]},{"name":"SPP_PLACESLISTSEPARATOR","features":[40]},{"name":"SPP_PREVIEW","features":[40]},{"name":"SPP_PROGLIST","features":[40]},{"name":"SPP_PROGLISTSEPARATOR","features":[40]},{"name":"SPP_SEARCHVIEW","features":[40]},{"name":"SPP_SOFTWAREEXPLORER","features":[40]},{"name":"SPP_TOPMATCH","features":[40]},{"name":"SPP_USERPANE","features":[40]},{"name":"SPP_USERPICTURE","features":[40]},{"name":"SPSB_HOT","features":[40]},{"name":"SPSB_NORMAL","features":[40]},{"name":"SPSB_PRESSED","features":[40]},{"name":"SPSE_DISABLED","features":[40]},{"name":"SPSE_FOCUSED","features":[40]},{"name":"SPSE_HOT","features":[40]},{"name":"SPSE_NORMAL","features":[40]},{"name":"SPSE_SELECTED","features":[40]},{"name":"SPS_HOT","features":[40]},{"name":"SPS_NORMAL","features":[40]},{"name":"SPS_PRESSED","features":[40]},{"name":"SP_GRIPPER","features":[40]},{"name":"SP_GRIPPERPANE","features":[40]},{"name":"SP_PANE","features":[40]},{"name":"STANDARDSTATES","features":[40]},{"name":"STARTPANELPARTS","features":[40]},{"name":"STATE_SYSTEM_FOCUSABLE","features":[40]},{"name":"STATE_SYSTEM_INVISIBLE","features":[40]},{"name":"STATE_SYSTEM_OFFSCREEN","features":[40]},{"name":"STATE_SYSTEM_PRESSED","features":[40]},{"name":"STATE_SYSTEM_UNAVAILABLE","features":[40]},{"name":"STATICPARTS","features":[40]},{"name":"STATUSCLASSNAME","features":[40]},{"name":"STATUSCLASSNAMEA","features":[40]},{"name":"STATUSCLASSNAMEW","features":[40]},{"name":"STATUSPARTS","features":[40]},{"name":"STAT_TEXT","features":[40]},{"name":"STD_COPY","features":[40]},{"name":"STD_CUT","features":[40]},{"name":"STD_DELETE","features":[40]},{"name":"STD_FILENEW","features":[40]},{"name":"STD_FILEOPEN","features":[40]},{"name":"STD_FILESAVE","features":[40]},{"name":"STD_FIND","features":[40]},{"name":"STD_HELP","features":[40]},{"name":"STD_PASTE","features":[40]},{"name":"STD_PRINT","features":[40]},{"name":"STD_PRINTPRE","features":[40]},{"name":"STD_PROPERTIES","features":[40]},{"name":"STD_REDOW","features":[40]},{"name":"STD_REPLACE","features":[40]},{"name":"STD_UNDO","features":[40]},{"name":"ST_STRETCH","features":[40]},{"name":"ST_TILE","features":[40]},{"name":"ST_TRUESIZE","features":[40]},{"name":"SYSBUTTONSTATES","features":[40]},{"name":"SYSTEMCLOSEHCHOTSTATES","features":[40]},{"name":"SYSTEMCLOSESTATES","features":[40]},{"name":"SYSTEMMAXIMIZEHCHOTSTATES","features":[40]},{"name":"SYSTEMMAXIMIZESTATES","features":[40]},{"name":"SYSTEMMINIMIZEHCHOTSTATES","features":[40]},{"name":"SYSTEMMINIMIZESTATES","features":[40]},{"name":"SYSTEMRESTOREHCHOTSTATES","features":[40]},{"name":"SYSTEMRESTORESTATES","features":[40]},{"name":"SZB_HALFBOTTOMLEFTALIGN","features":[40]},{"name":"SZB_HALFBOTTOMRIGHTALIGN","features":[40]},{"name":"SZB_HALFTOPLEFTALIGN","features":[40]},{"name":"SZB_HALFTOPRIGHTALIGN","features":[40]},{"name":"SZB_LEFTALIGN","features":[40]},{"name":"SZB_RIGHTALIGN","features":[40]},{"name":"SZB_TOPLEFTALIGN","features":[40]},{"name":"SZB_TOPRIGHTALIGN","features":[40]},{"name":"SZ_THDOCPROP_AUTHOR","features":[40]},{"name":"SZ_THDOCPROP_CANONICALNAME","features":[40]},{"name":"SZ_THDOCPROP_DISPLAYNAME","features":[40]},{"name":"SZ_THDOCPROP_TOOLTIP","features":[40]},{"name":"SetScrollInfo","features":[1,40,50]},{"name":"SetScrollPos","features":[1,40,50]},{"name":"SetScrollRange","features":[1,40,50]},{"name":"SetThemeAppProperties","features":[40]},{"name":"SetWindowFeedbackSetting","features":[1,40]},{"name":"SetWindowTheme","features":[1,40]},{"name":"SetWindowThemeAttribute","features":[1,40]},{"name":"ShowHideMenuCtl","features":[1,40]},{"name":"ShowScrollBar","features":[1,40,50]},{"name":"Str_SetPtrW","features":[1,40]},{"name":"TABITEMBOTHEDGESTATES","features":[40]},{"name":"TABITEMLEFTEDGESTATES","features":[40]},{"name":"TABITEMRIGHTEDGESTATES","features":[40]},{"name":"TABITEMSTATES","features":[40]},{"name":"TABPARTS","features":[40]},{"name":"TABP_AEROWIZARDBODY","features":[40]},{"name":"TABP_BODY","features":[40]},{"name":"TABP_PANE","features":[40]},{"name":"TABP_TABITEM","features":[40]},{"name":"TABP_TABITEMBOTHEDGE","features":[40]},{"name":"TABP_TABITEMLEFTEDGE","features":[40]},{"name":"TABP_TABITEMRIGHTEDGE","features":[40]},{"name":"TABP_TOPTABITEM","features":[40]},{"name":"TABP_TOPTABITEMBOTHEDGE","features":[40]},{"name":"TABP_TOPTABITEMLEFTEDGE","features":[40]},{"name":"TABP_TOPTABITEMRIGHTEDGE","features":[40]},{"name":"TABSTATES","features":[40]},{"name":"TAB_CONTROL_ITEM_STATE","features":[40]},{"name":"TAPF_ALLOWCOLLECTION","features":[40]},{"name":"TAPF_HASBACKGROUND","features":[40]},{"name":"TAPF_HASPERSPECTIVE","features":[40]},{"name":"TAPF_HASSTAGGER","features":[40]},{"name":"TAPF_ISRTLAWARE","features":[40]},{"name":"TAPF_NONE","features":[40]},{"name":"TAP_FLAGS","features":[40]},{"name":"TAP_STAGGERDELAY","features":[40]},{"name":"TAP_STAGGERDELAYCAP","features":[40]},{"name":"TAP_STAGGERDELAYFACTOR","features":[40]},{"name":"TAP_TRANSFORMCOUNT","features":[40]},{"name":"TAP_ZORDER","features":[40]},{"name":"TASKBANDPARTS","features":[40]},{"name":"TASKBARPARTS","features":[40]},{"name":"TASKDIALOGCONFIG","features":[1,40,50]},{"name":"TASKDIALOGPARTS","features":[40]},{"name":"TASKDIALOG_BUTTON","features":[40]},{"name":"TASKDIALOG_COMMON_BUTTON_FLAGS","features":[40]},{"name":"TASKDIALOG_ELEMENTS","features":[40]},{"name":"TASKDIALOG_FLAGS","features":[40]},{"name":"TASKDIALOG_ICON_ELEMENTS","features":[40]},{"name":"TASKDIALOG_MESSAGES","features":[40]},{"name":"TASKDIALOG_NOTIFICATIONS","features":[40]},{"name":"TASKLINKSTATES","features":[40]},{"name":"TATF_HASINITIALVALUES","features":[40]},{"name":"TATF_HASORIGINVALUES","features":[40]},{"name":"TATF_NONE","features":[40]},{"name":"TATF_TARGETVALUES_USER","features":[40]},{"name":"TATT_CLIP","features":[40]},{"name":"TATT_OPACITY","features":[40]},{"name":"TATT_SCALE_2D","features":[40]},{"name":"TATT_TRANSLATE_2D","features":[40]},{"name":"TA_CUBIC_BEZIER","features":[40]},{"name":"TA_PROPERTY","features":[40]},{"name":"TA_PROPERTY_FLAG","features":[40]},{"name":"TA_TIMINGFUNCTION","features":[40]},{"name":"TA_TIMINGFUNCTION_TYPE","features":[40]},{"name":"TA_TRANSFORM","features":[40]},{"name":"TA_TRANSFORM_2D","features":[40]},{"name":"TA_TRANSFORM_CLIP","features":[40]},{"name":"TA_TRANSFORM_FLAG","features":[40]},{"name":"TA_TRANSFORM_OPACITY","features":[40]},{"name":"TA_TRANSFORM_TYPE","features":[40]},{"name":"TBADDBITMAP","features":[1,40]},{"name":"TBBF_LARGE","features":[40]},{"name":"TBBUTTON","features":[40]},{"name":"TBBUTTON","features":[40]},{"name":"TBBUTTONINFOA","features":[40]},{"name":"TBBUTTONINFOW","features":[40]},{"name":"TBBUTTONINFOW_MASK","features":[40]},{"name":"TBCDRF_BLENDICON","features":[40]},{"name":"TBCDRF_HILITEHOTTRACK","features":[40]},{"name":"TBCDRF_NOBACKGROUND","features":[40]},{"name":"TBCDRF_NOEDGES","features":[40]},{"name":"TBCDRF_NOETCHEDEFFECT","features":[40]},{"name":"TBCDRF_NOMARK","features":[40]},{"name":"TBCDRF_NOOFFSET","features":[40]},{"name":"TBCDRF_USECDCOLORS","features":[40]},{"name":"TBCD_CHANNEL","features":[40]},{"name":"TBCD_THUMB","features":[40]},{"name":"TBCD_TICS","features":[40]},{"name":"TBDDRET_DEFAULT","features":[40]},{"name":"TBDDRET_NODEFAULT","features":[40]},{"name":"TBDDRET_TREATPRESSED","features":[40]},{"name":"TBIF_BYINDEX","features":[40]},{"name":"TBIF_COMMAND","features":[40]},{"name":"TBIF_IMAGE","features":[40]},{"name":"TBIF_LPARAM","features":[40]},{"name":"TBIF_SIZE","features":[40]},{"name":"TBIF_STATE","features":[40]},{"name":"TBIF_STYLE","features":[40]},{"name":"TBIF_TEXT","features":[40]},{"name":"TBIMHT_AFTER","features":[40]},{"name":"TBIMHT_BACKGROUND","features":[40]},{"name":"TBIMHT_NONE","features":[40]},{"name":"TBINSERTMARK","features":[40]},{"name":"TBINSERTMARK_FLAGS","features":[40]},{"name":"TBMETRICS","features":[40]},{"name":"TBMF_BARPAD","features":[40]},{"name":"TBMF_BUTTONSPACING","features":[40]},{"name":"TBMF_PAD","features":[40]},{"name":"TBM_CLEARSEL","features":[40]},{"name":"TBM_CLEARTICS","features":[40]},{"name":"TBM_GETBUDDY","features":[40]},{"name":"TBM_GETCHANNELRECT","features":[40]},{"name":"TBM_GETLINESIZE","features":[40]},{"name":"TBM_GETNUMTICS","features":[40]},{"name":"TBM_GETPAGESIZE","features":[40]},{"name":"TBM_GETPTICS","features":[40]},{"name":"TBM_GETRANGEMAX","features":[40]},{"name":"TBM_GETRANGEMIN","features":[40]},{"name":"TBM_GETSELEND","features":[40]},{"name":"TBM_GETSELSTART","features":[40]},{"name":"TBM_GETTHUMBLENGTH","features":[40]},{"name":"TBM_GETTHUMBRECT","features":[40]},{"name":"TBM_GETTIC","features":[40]},{"name":"TBM_GETTICPOS","features":[40]},{"name":"TBM_GETTOOLTIPS","features":[40]},{"name":"TBM_GETUNICODEFORMAT","features":[40]},{"name":"TBM_SETBUDDY","features":[40]},{"name":"TBM_SETLINESIZE","features":[40]},{"name":"TBM_SETPAGESIZE","features":[40]},{"name":"TBM_SETPOS","features":[40]},{"name":"TBM_SETPOSNOTIFY","features":[40]},{"name":"TBM_SETRANGE","features":[40]},{"name":"TBM_SETRANGEMAX","features":[40]},{"name":"TBM_SETRANGEMIN","features":[40]},{"name":"TBM_SETSEL","features":[40]},{"name":"TBM_SETSELEND","features":[40]},{"name":"TBM_SETSELSTART","features":[40]},{"name":"TBM_SETTHUMBLENGTH","features":[40]},{"name":"TBM_SETTIC","features":[40]},{"name":"TBM_SETTICFREQ","features":[40]},{"name":"TBM_SETTIPSIDE","features":[40]},{"name":"TBM_SETTOOLTIPS","features":[40]},{"name":"TBM_SETUNICODEFORMAT","features":[40]},{"name":"TBNF_DI_SETITEM","features":[40]},{"name":"TBNF_IMAGE","features":[40]},{"name":"TBNF_TEXT","features":[40]},{"name":"TBNRF_ENDCUSTOMIZE","features":[40]},{"name":"TBNRF_HIDEHELP","features":[40]},{"name":"TBN_BEGINADJUST","features":[40]},{"name":"TBN_BEGINDRAG","features":[40]},{"name":"TBN_CUSTHELP","features":[40]},{"name":"TBN_DELETINGBUTTON","features":[40]},{"name":"TBN_DRAGOUT","features":[40]},{"name":"TBN_DRAGOVER","features":[40]},{"name":"TBN_DROPDOWN","features":[40]},{"name":"TBN_DUPACCELERATOR","features":[40]},{"name":"TBN_ENDADJUST","features":[40]},{"name":"TBN_ENDDRAG","features":[40]},{"name":"TBN_FIRST","features":[40]},{"name":"TBN_GETBUTTONINFO","features":[40]},{"name":"TBN_GETBUTTONINFOA","features":[40]},{"name":"TBN_GETBUTTONINFOW","features":[40]},{"name":"TBN_GETDISPINFO","features":[40]},{"name":"TBN_GETDISPINFOA","features":[40]},{"name":"TBN_GETDISPINFOW","features":[40]},{"name":"TBN_GETINFOTIP","features":[40]},{"name":"TBN_GETINFOTIPA","features":[40]},{"name":"TBN_GETINFOTIPW","features":[40]},{"name":"TBN_GETOBJECT","features":[40]},{"name":"TBN_HOTITEMCHANGE","features":[40]},{"name":"TBN_INITCUSTOMIZE","features":[40]},{"name":"TBN_LAST","features":[40]},{"name":"TBN_MAPACCELERATOR","features":[40]},{"name":"TBN_QUERYDELETE","features":[40]},{"name":"TBN_QUERYINSERT","features":[40]},{"name":"TBN_RESET","features":[40]},{"name":"TBN_RESTORE","features":[40]},{"name":"TBN_SAVE","features":[40]},{"name":"TBN_TOOLBARCHANGE","features":[40]},{"name":"TBN_WRAPACCELERATOR","features":[40]},{"name":"TBN_WRAPHOTITEM","features":[40]},{"name":"TBP_BACKGROUNDBOTTOM","features":[40]},{"name":"TBP_BACKGROUNDLEFT","features":[40]},{"name":"TBP_BACKGROUNDRIGHT","features":[40]},{"name":"TBP_BACKGROUNDTOP","features":[40]},{"name":"TBP_SIZINGBARBOTTOM","features":[40]},{"name":"TBP_SIZINGBARLEFT","features":[40]},{"name":"TBP_SIZINGBARRIGHT","features":[40]},{"name":"TBP_SIZINGBARTOP","features":[40]},{"name":"TBREPLACEBITMAP","features":[1,40]},{"name":"TBSAVEPARAMSA","features":[49,40]},{"name":"TBSAVEPARAMSW","features":[49,40]},{"name":"TBSTATE_CHECKED","features":[40]},{"name":"TBSTATE_ELLIPSES","features":[40]},{"name":"TBSTATE_ENABLED","features":[40]},{"name":"TBSTATE_HIDDEN","features":[40]},{"name":"TBSTATE_INDETERMINATE","features":[40]},{"name":"TBSTATE_MARKED","features":[40]},{"name":"TBSTATE_PRESSED","features":[40]},{"name":"TBSTATE_WRAP","features":[40]},{"name":"TBSTYLE_ALTDRAG","features":[40]},{"name":"TBSTYLE_AUTOSIZE","features":[40]},{"name":"TBSTYLE_BUTTON","features":[40]},{"name":"TBSTYLE_CHECK","features":[40]},{"name":"TBSTYLE_CUSTOMERASE","features":[40]},{"name":"TBSTYLE_DROPDOWN","features":[40]},{"name":"TBSTYLE_EX_DOUBLEBUFFER","features":[40]},{"name":"TBSTYLE_EX_DRAWDDARROWS","features":[40]},{"name":"TBSTYLE_EX_HIDECLIPPEDBUTTONS","features":[40]},{"name":"TBSTYLE_EX_MIXEDBUTTONS","features":[40]},{"name":"TBSTYLE_EX_MULTICOLUMN","features":[40]},{"name":"TBSTYLE_EX_VERTICAL","features":[40]},{"name":"TBSTYLE_FLAT","features":[40]},{"name":"TBSTYLE_GROUP","features":[40]},{"name":"TBSTYLE_LIST","features":[40]},{"name":"TBSTYLE_NOPREFIX","features":[40]},{"name":"TBSTYLE_REGISTERDROP","features":[40]},{"name":"TBSTYLE_SEP","features":[40]},{"name":"TBSTYLE_TOOLTIPS","features":[40]},{"name":"TBSTYLE_TRANSPARENT","features":[40]},{"name":"TBSTYLE_WRAPABLE","features":[40]},{"name":"TBS_AUTOTICKS","features":[40]},{"name":"TBS_BOTH","features":[40]},{"name":"TBS_BOTTOM","features":[40]},{"name":"TBS_DOWNISLEFT","features":[40]},{"name":"TBS_ENABLESELRANGE","features":[40]},{"name":"TBS_FIXEDLENGTH","features":[40]},{"name":"TBS_HORZ","features":[40]},{"name":"TBS_LEFT","features":[40]},{"name":"TBS_NOTHUMB","features":[40]},{"name":"TBS_NOTICKS","features":[40]},{"name":"TBS_NOTIFYBEFOREMOVE","features":[40]},{"name":"TBS_REVERSED","features":[40]},{"name":"TBS_RIGHT","features":[40]},{"name":"TBS_TOOLTIPS","features":[40]},{"name":"TBS_TOP","features":[40]},{"name":"TBS_TRANSPARENTBKGND","features":[40]},{"name":"TBS_VERT","features":[40]},{"name":"TBTS_BOTTOM","features":[40]},{"name":"TBTS_LEFT","features":[40]},{"name":"TBTS_RIGHT","features":[40]},{"name":"TBTS_TOP","features":[40]},{"name":"TB_ADDBITMAP","features":[40]},{"name":"TB_ADDBUTTONS","features":[40]},{"name":"TB_ADDBUTTONSA","features":[40]},{"name":"TB_ADDBUTTONSW","features":[40]},{"name":"TB_ADDSTRING","features":[40]},{"name":"TB_ADDSTRINGA","features":[40]},{"name":"TB_ADDSTRINGW","features":[40]},{"name":"TB_AUTOSIZE","features":[40]},{"name":"TB_BOTTOM","features":[40]},{"name":"TB_BUTTONCOUNT","features":[40]},{"name":"TB_BUTTONSTRUCTSIZE","features":[40]},{"name":"TB_CHANGEBITMAP","features":[40]},{"name":"TB_CHECKBUTTON","features":[40]},{"name":"TB_COMMANDTOINDEX","features":[40]},{"name":"TB_CUSTOMIZE","features":[40]},{"name":"TB_DELETEBUTTON","features":[40]},{"name":"TB_ENABLEBUTTON","features":[40]},{"name":"TB_ENDTRACK","features":[40]},{"name":"TB_GETANCHORHIGHLIGHT","features":[40]},{"name":"TB_GETBITMAP","features":[40]},{"name":"TB_GETBITMAPFLAGS","features":[40]},{"name":"TB_GETBUTTON","features":[40]},{"name":"TB_GETBUTTONINFO","features":[40]},{"name":"TB_GETBUTTONINFOA","features":[40]},{"name":"TB_GETBUTTONINFOW","features":[40]},{"name":"TB_GETBUTTONSIZE","features":[40]},{"name":"TB_GETBUTTONTEXT","features":[40]},{"name":"TB_GETBUTTONTEXTA","features":[40]},{"name":"TB_GETBUTTONTEXTW","features":[40]},{"name":"TB_GETCOLORSCHEME","features":[40]},{"name":"TB_GETDISABLEDIMAGELIST","features":[40]},{"name":"TB_GETEXTENDEDSTYLE","features":[40]},{"name":"TB_GETHOTIMAGELIST","features":[40]},{"name":"TB_GETHOTITEM","features":[40]},{"name":"TB_GETIDEALSIZE","features":[40]},{"name":"TB_GETIMAGELIST","features":[40]},{"name":"TB_GETIMAGELISTCOUNT","features":[40]},{"name":"TB_GETINSERTMARK","features":[40]},{"name":"TB_GETINSERTMARKCOLOR","features":[40]},{"name":"TB_GETITEMDROPDOWNRECT","features":[40]},{"name":"TB_GETITEMRECT","features":[40]},{"name":"TB_GETMAXSIZE","features":[40]},{"name":"TB_GETMETRICS","features":[40]},{"name":"TB_GETOBJECT","features":[40]},{"name":"TB_GETPADDING","features":[40]},{"name":"TB_GETPRESSEDIMAGELIST","features":[40]},{"name":"TB_GETRECT","features":[40]},{"name":"TB_GETROWS","features":[40]},{"name":"TB_GETSTATE","features":[40]},{"name":"TB_GETSTRING","features":[40]},{"name":"TB_GETSTRINGA","features":[40]},{"name":"TB_GETSTRINGW","features":[40]},{"name":"TB_GETSTYLE","features":[40]},{"name":"TB_GETTEXTROWS","features":[40]},{"name":"TB_GETTOOLTIPS","features":[40]},{"name":"TB_GETUNICODEFORMAT","features":[40]},{"name":"TB_HASACCELERATOR","features":[40]},{"name":"TB_HIDEBUTTON","features":[40]},{"name":"TB_HITTEST","features":[40]},{"name":"TB_INDETERMINATE","features":[40]},{"name":"TB_INSERTBUTTON","features":[40]},{"name":"TB_INSERTBUTTONA","features":[40]},{"name":"TB_INSERTBUTTONW","features":[40]},{"name":"TB_INSERTMARKHITTEST","features":[40]},{"name":"TB_ISBUTTONCHECKED","features":[40]},{"name":"TB_ISBUTTONENABLED","features":[40]},{"name":"TB_ISBUTTONHIDDEN","features":[40]},{"name":"TB_ISBUTTONHIGHLIGHTED","features":[40]},{"name":"TB_ISBUTTONINDETERMINATE","features":[40]},{"name":"TB_ISBUTTONPRESSED","features":[40]},{"name":"TB_LINEDOWN","features":[40]},{"name":"TB_LINEUP","features":[40]},{"name":"TB_LOADIMAGES","features":[40]},{"name":"TB_MAPACCELERATOR","features":[40]},{"name":"TB_MAPACCELERATORA","features":[40]},{"name":"TB_MAPACCELERATORW","features":[40]},{"name":"TB_MARKBUTTON","features":[40]},{"name":"TB_MOVEBUTTON","features":[40]},{"name":"TB_PAGEDOWN","features":[40]},{"name":"TB_PAGEUP","features":[40]},{"name":"TB_PRESSBUTTON","features":[40]},{"name":"TB_REPLACEBITMAP","features":[40]},{"name":"TB_SAVERESTORE","features":[40]},{"name":"TB_SAVERESTOREA","features":[40]},{"name":"TB_SAVERESTOREW","features":[40]},{"name":"TB_SETANCHORHIGHLIGHT","features":[40]},{"name":"TB_SETBITMAPSIZE","features":[40]},{"name":"TB_SETBOUNDINGSIZE","features":[40]},{"name":"TB_SETBUTTONINFO","features":[40]},{"name":"TB_SETBUTTONINFOA","features":[40]},{"name":"TB_SETBUTTONINFOW","features":[40]},{"name":"TB_SETBUTTONSIZE","features":[40]},{"name":"TB_SETBUTTONWIDTH","features":[40]},{"name":"TB_SETCMDID","features":[40]},{"name":"TB_SETCOLORSCHEME","features":[40]},{"name":"TB_SETDISABLEDIMAGELIST","features":[40]},{"name":"TB_SETDRAWTEXTFLAGS","features":[40]},{"name":"TB_SETEXTENDEDSTYLE","features":[40]},{"name":"TB_SETHOTIMAGELIST","features":[40]},{"name":"TB_SETHOTITEM","features":[40]},{"name":"TB_SETHOTITEM2","features":[40]},{"name":"TB_SETIMAGELIST","features":[40]},{"name":"TB_SETINDENT","features":[40]},{"name":"TB_SETINSERTMARK","features":[40]},{"name":"TB_SETINSERTMARKCOLOR","features":[40]},{"name":"TB_SETLISTGAP","features":[40]},{"name":"TB_SETMAXTEXTROWS","features":[40]},{"name":"TB_SETMETRICS","features":[40]},{"name":"TB_SETPADDING","features":[40]},{"name":"TB_SETPARENT","features":[40]},{"name":"TB_SETPRESSEDIMAGELIST","features":[40]},{"name":"TB_SETROWS","features":[40]},{"name":"TB_SETSTATE","features":[40]},{"name":"TB_SETSTYLE","features":[40]},{"name":"TB_SETTOOLTIPS","features":[40]},{"name":"TB_SETUNICODEFORMAT","features":[40]},{"name":"TB_SETWINDOWTHEME","features":[40]},{"name":"TB_THUMBPOSITION","features":[40]},{"name":"TB_THUMBTRACK","features":[40]},{"name":"TB_TOP","features":[40]},{"name":"TCHITTESTINFO","features":[1,40]},{"name":"TCHITTESTINFO_FLAGS","features":[40]},{"name":"TCHT_NOWHERE","features":[40]},{"name":"TCHT_ONITEM","features":[40]},{"name":"TCHT_ONITEMICON","features":[40]},{"name":"TCHT_ONITEMLABEL","features":[40]},{"name":"TCIF_IMAGE","features":[40]},{"name":"TCIF_PARAM","features":[40]},{"name":"TCIF_RTLREADING","features":[40]},{"name":"TCIF_STATE","features":[40]},{"name":"TCIF_TEXT","features":[40]},{"name":"TCIS_BUTTONPRESSED","features":[40]},{"name":"TCIS_HIGHLIGHTED","features":[40]},{"name":"TCITEMA","features":[1,40]},{"name":"TCITEMHEADERA","features":[40]},{"name":"TCITEMHEADERA_MASK","features":[40]},{"name":"TCITEMHEADERW","features":[40]},{"name":"TCITEMW","features":[1,40]},{"name":"TCM_ADJUSTRECT","features":[40]},{"name":"TCM_DELETEALLITEMS","features":[40]},{"name":"TCM_DELETEITEM","features":[40]},{"name":"TCM_DESELECTALL","features":[40]},{"name":"TCM_FIRST","features":[40]},{"name":"TCM_GETCURFOCUS","features":[40]},{"name":"TCM_GETCURSEL","features":[40]},{"name":"TCM_GETEXTENDEDSTYLE","features":[40]},{"name":"TCM_GETIMAGELIST","features":[40]},{"name":"TCM_GETITEM","features":[40]},{"name":"TCM_GETITEMA","features":[40]},{"name":"TCM_GETITEMCOUNT","features":[40]},{"name":"TCM_GETITEMRECT","features":[40]},{"name":"TCM_GETITEMW","features":[40]},{"name":"TCM_GETROWCOUNT","features":[40]},{"name":"TCM_GETTOOLTIPS","features":[40]},{"name":"TCM_GETUNICODEFORMAT","features":[40]},{"name":"TCM_HIGHLIGHTITEM","features":[40]},{"name":"TCM_HITTEST","features":[40]},{"name":"TCM_INSERTITEM","features":[40]},{"name":"TCM_INSERTITEMA","features":[40]},{"name":"TCM_INSERTITEMW","features":[40]},{"name":"TCM_REMOVEIMAGE","features":[40]},{"name":"TCM_SETCURFOCUS","features":[40]},{"name":"TCM_SETCURSEL","features":[40]},{"name":"TCM_SETEXTENDEDSTYLE","features":[40]},{"name":"TCM_SETIMAGELIST","features":[40]},{"name":"TCM_SETITEM","features":[40]},{"name":"TCM_SETITEMA","features":[40]},{"name":"TCM_SETITEMEXTRA","features":[40]},{"name":"TCM_SETITEMSIZE","features":[40]},{"name":"TCM_SETITEMW","features":[40]},{"name":"TCM_SETMINTABWIDTH","features":[40]},{"name":"TCM_SETPADDING","features":[40]},{"name":"TCM_SETTOOLTIPS","features":[40]},{"name":"TCM_SETUNICODEFORMAT","features":[40]},{"name":"TCN_FIRST","features":[40]},{"name":"TCN_FOCUSCHANGE","features":[40]},{"name":"TCN_GETOBJECT","features":[40]},{"name":"TCN_KEYDOWN","features":[40]},{"name":"TCN_LAST","features":[40]},{"name":"TCN_SELCHANGE","features":[40]},{"name":"TCN_SELCHANGING","features":[40]},{"name":"TCS_BOTTOM","features":[40]},{"name":"TCS_BUTTONS","features":[40]},{"name":"TCS_EX_FLATSEPARATORS","features":[40]},{"name":"TCS_EX_REGISTERDROP","features":[40]},{"name":"TCS_FIXEDWIDTH","features":[40]},{"name":"TCS_FLATBUTTONS","features":[40]},{"name":"TCS_FOCUSNEVER","features":[40]},{"name":"TCS_FOCUSONBUTTONDOWN","features":[40]},{"name":"TCS_FORCEICONLEFT","features":[40]},{"name":"TCS_FORCELABELLEFT","features":[40]},{"name":"TCS_HOTTRACK","features":[40]},{"name":"TCS_MULTILINE","features":[40]},{"name":"TCS_MULTISELECT","features":[40]},{"name":"TCS_OWNERDRAWFIXED","features":[40]},{"name":"TCS_RAGGEDRIGHT","features":[40]},{"name":"TCS_RIGHT","features":[40]},{"name":"TCS_RIGHTJUSTIFY","features":[40]},{"name":"TCS_SCROLLOPPOSITE","features":[40]},{"name":"TCS_SINGLELINE","features":[40]},{"name":"TCS_TABS","features":[40]},{"name":"TCS_TOOLTIPS","features":[40]},{"name":"TCS_VERTICAL","features":[40]},{"name":"TDCBF_ABORT_BUTTON","features":[40]},{"name":"TDCBF_CANCEL_BUTTON","features":[40]},{"name":"TDCBF_CLOSE_BUTTON","features":[40]},{"name":"TDCBF_CONTINUE_BUTTON","features":[40]},{"name":"TDCBF_HELP_BUTTON","features":[40]},{"name":"TDCBF_IGNORE_BUTTON","features":[40]},{"name":"TDCBF_NO_BUTTON","features":[40]},{"name":"TDCBF_OK_BUTTON","features":[40]},{"name":"TDCBF_RETRY_BUTTON","features":[40]},{"name":"TDCBF_TRYAGAIN_BUTTON","features":[40]},{"name":"TDCBF_YES_BUTTON","features":[40]},{"name":"TDE_CONTENT","features":[40]},{"name":"TDE_EXPANDED_INFORMATION","features":[40]},{"name":"TDE_FOOTER","features":[40]},{"name":"TDE_MAIN_INSTRUCTION","features":[40]},{"name":"TDF_ALLOW_DIALOG_CANCELLATION","features":[40]},{"name":"TDF_CALLBACK_TIMER","features":[40]},{"name":"TDF_CAN_BE_MINIMIZED","features":[40]},{"name":"TDF_ENABLE_HYPERLINKS","features":[40]},{"name":"TDF_EXPANDED_BY_DEFAULT","features":[40]},{"name":"TDF_EXPAND_FOOTER_AREA","features":[40]},{"name":"TDF_NO_DEFAULT_RADIO_BUTTON","features":[40]},{"name":"TDF_NO_SET_FOREGROUND","features":[40]},{"name":"TDF_POSITION_RELATIVE_TO_WINDOW","features":[40]},{"name":"TDF_RTL_LAYOUT","features":[40]},{"name":"TDF_SHOW_MARQUEE_PROGRESS_BAR","features":[40]},{"name":"TDF_SHOW_PROGRESS_BAR","features":[40]},{"name":"TDF_SIZE_TO_CONTENT","features":[40]},{"name":"TDF_USE_COMMAND_LINKS","features":[40]},{"name":"TDF_USE_COMMAND_LINKS_NO_ICON","features":[40]},{"name":"TDF_USE_HICON_FOOTER","features":[40]},{"name":"TDF_USE_HICON_MAIN","features":[40]},{"name":"TDF_VERIFICATION_FLAG_CHECKED","features":[40]},{"name":"TDIE_ICON_FOOTER","features":[40]},{"name":"TDIE_ICON_MAIN","features":[40]},{"name":"TDLGCPS_STANDALONE","features":[40]},{"name":"TDLGEBS_EXPANDEDDISABLED","features":[40]},{"name":"TDLGEBS_EXPANDEDHOVER","features":[40]},{"name":"TDLGEBS_EXPANDEDNORMAL","features":[40]},{"name":"TDLGEBS_EXPANDEDPRESSED","features":[40]},{"name":"TDLGEBS_HOVER","features":[40]},{"name":"TDLGEBS_NORMAL","features":[40]},{"name":"TDLGEBS_NORMALDISABLED","features":[40]},{"name":"TDLGEBS_PRESSED","features":[40]},{"name":"TDLG_BUTTONSECTION","features":[40]},{"name":"TDLG_BUTTONWRAPPER","features":[40]},{"name":"TDLG_COMMANDLINKPANE","features":[40]},{"name":"TDLG_CONTENTICON","features":[40]},{"name":"TDLG_CONTENTPANE","features":[40]},{"name":"TDLG_CONTROLPANE","features":[40]},{"name":"TDLG_EXPANDEDCONTENT","features":[40]},{"name":"TDLG_EXPANDEDFOOTERAREA","features":[40]},{"name":"TDLG_EXPANDOBUTTON","features":[40]},{"name":"TDLG_EXPANDOTEXT","features":[40]},{"name":"TDLG_FOOTNOTEAREA","features":[40]},{"name":"TDLG_FOOTNOTEPANE","features":[40]},{"name":"TDLG_FOOTNOTESEPARATOR","features":[40]},{"name":"TDLG_IMAGEALIGNMENT","features":[40]},{"name":"TDLG_MAINICON","features":[40]},{"name":"TDLG_MAININSTRUCTIONPANE","features":[40]},{"name":"TDLG_PRIMARYPANEL","features":[40]},{"name":"TDLG_PROGRESSBAR","features":[40]},{"name":"TDLG_RADIOBUTTONPANE","features":[40]},{"name":"TDLG_SECONDARYPANEL","features":[40]},{"name":"TDLG_VERIFICATIONTEXT","features":[40]},{"name":"TDM_CLICK_BUTTON","features":[40]},{"name":"TDM_CLICK_RADIO_BUTTON","features":[40]},{"name":"TDM_CLICK_VERIFICATION","features":[40]},{"name":"TDM_ENABLE_BUTTON","features":[40]},{"name":"TDM_ENABLE_RADIO_BUTTON","features":[40]},{"name":"TDM_NAVIGATE_PAGE","features":[40]},{"name":"TDM_SET_BUTTON_ELEVATION_REQUIRED_STATE","features":[40]},{"name":"TDM_SET_ELEMENT_TEXT","features":[40]},{"name":"TDM_SET_MARQUEE_PROGRESS_BAR","features":[40]},{"name":"TDM_SET_PROGRESS_BAR_MARQUEE","features":[40]},{"name":"TDM_SET_PROGRESS_BAR_POS","features":[40]},{"name":"TDM_SET_PROGRESS_BAR_RANGE","features":[40]},{"name":"TDM_SET_PROGRESS_BAR_STATE","features":[40]},{"name":"TDM_UPDATE_ELEMENT_TEXT","features":[40]},{"name":"TDM_UPDATE_ICON","features":[40]},{"name":"TDN_BUTTON_CLICKED","features":[40]},{"name":"TDN_CREATED","features":[40]},{"name":"TDN_DESTROYED","features":[40]},{"name":"TDN_DIALOG_CONSTRUCTED","features":[40]},{"name":"TDN_EXPANDO_BUTTON_CLICKED","features":[40]},{"name":"TDN_HELP","features":[40]},{"name":"TDN_HYPERLINK_CLICKED","features":[40]},{"name":"TDN_NAVIGATED","features":[40]},{"name":"TDN_RADIO_BUTTON_CLICKED","features":[40]},{"name":"TDN_TIMER","features":[40]},{"name":"TDN_VERIFICATION_CLICKED","features":[40]},{"name":"TDP_FLASHBUTTON","features":[40]},{"name":"TDP_FLASHBUTTONGROUPMENU","features":[40]},{"name":"TDP_GROUPCOUNT","features":[40]},{"name":"TD_ERROR_ICON","features":[40]},{"name":"TD_INFORMATION_ICON","features":[40]},{"name":"TD_SHIELD_ICON","features":[40]},{"name":"TD_WARNING_ICON","features":[40]},{"name":"TEXTSELECTIONGRIPPERPARTS","features":[40]},{"name":"TEXTSHADOWTYPE","features":[40]},{"name":"TEXTSTYLEPARTS","features":[40]},{"name":"TEXT_BODYTEXT","features":[40]},{"name":"TEXT_BODYTITLE","features":[40]},{"name":"TEXT_CONTROLLABEL","features":[40]},{"name":"TEXT_EXPANDED","features":[40]},{"name":"TEXT_HYPERLINKTEXT","features":[40]},{"name":"TEXT_INSTRUCTION","features":[40]},{"name":"TEXT_LABEL","features":[40]},{"name":"TEXT_MAININSTRUCTION","features":[40]},{"name":"TEXT_SECONDARYTEXT","features":[40]},{"name":"THEMESIZE","features":[40]},{"name":"THEME_PROPERTY_SYMBOL_ID","features":[40]},{"name":"THUMBBOTTOMSTATES","features":[40]},{"name":"THUMBLEFTSTATES","features":[40]},{"name":"THUMBRIGHTSTATES","features":[40]},{"name":"THUMBSTATES","features":[40]},{"name":"THUMBTOPSTATES","features":[40]},{"name":"THUMBVERTSTATES","features":[40]},{"name":"TIBES_DISABLED","features":[40]},{"name":"TIBES_FOCUSED","features":[40]},{"name":"TIBES_HOT","features":[40]},{"name":"TIBES_NORMAL","features":[40]},{"name":"TIBES_SELECTED","features":[40]},{"name":"TICSSTATES","features":[40]},{"name":"TICSVERTSTATES","features":[40]},{"name":"TILES_DISABLED","features":[40]},{"name":"TILES_FOCUSED","features":[40]},{"name":"TILES_HOT","features":[40]},{"name":"TILES_NORMAL","features":[40]},{"name":"TILES_SELECTED","features":[40]},{"name":"TIRES_DISABLED","features":[40]},{"name":"TIRES_FOCUSED","features":[40]},{"name":"TIRES_HOT","features":[40]},{"name":"TIRES_NORMAL","features":[40]},{"name":"TIRES_SELECTED","features":[40]},{"name":"TIS_DISABLED","features":[40]},{"name":"TIS_FOCUSED","features":[40]},{"name":"TIS_HOT","features":[40]},{"name":"TIS_NORMAL","features":[40]},{"name":"TIS_SELECTED","features":[40]},{"name":"TITLEBARSTATES","features":[40]},{"name":"TKP_THUMB","features":[40]},{"name":"TKP_THUMBBOTTOM","features":[40]},{"name":"TKP_THUMBLEFT","features":[40]},{"name":"TKP_THUMBRIGHT","features":[40]},{"name":"TKP_THUMBTOP","features":[40]},{"name":"TKP_THUMBVERT","features":[40]},{"name":"TKP_TICS","features":[40]},{"name":"TKP_TICSVERT","features":[40]},{"name":"TKP_TRACK","features":[40]},{"name":"TKP_TRACKVERT","features":[40]},{"name":"TKS_NORMAL","features":[40]},{"name":"TMTVS_RESERVEDHIGH","features":[40]},{"name":"TMTVS_RESERVEDLOW","features":[40]},{"name":"TMT_ACCENTCOLORHINT","features":[40]},{"name":"TMT_ACTIVEBORDER","features":[40]},{"name":"TMT_ACTIVECAPTION","features":[40]},{"name":"TMT_ALIAS","features":[40]},{"name":"TMT_ALPHALEVEL","features":[40]},{"name":"TMT_ALPHATHRESHOLD","features":[40]},{"name":"TMT_ALWAYSSHOWSIZINGBAR","features":[40]},{"name":"TMT_ANIMATIONBUTTONRECT","features":[40]},{"name":"TMT_ANIMATIONDELAY","features":[40]},{"name":"TMT_ANIMATIONDURATION","features":[40]},{"name":"TMT_APPWORKSPACE","features":[40]},{"name":"TMT_ATLASIMAGE","features":[40]},{"name":"TMT_ATLASINPUTIMAGE","features":[40]},{"name":"TMT_ATLASRECT","features":[40]},{"name":"TMT_AUTHOR","features":[40]},{"name":"TMT_AUTOSIZE","features":[40]},{"name":"TMT_BACKGROUND","features":[40]},{"name":"TMT_BGFILL","features":[40]},{"name":"TMT_BGTYPE","features":[40]},{"name":"TMT_BITMAPREF","features":[40]},{"name":"TMT_BLENDCOLOR","features":[40]},{"name":"TMT_BODYFONT","features":[40]},{"name":"TMT_BODYTEXTCOLOR","features":[40]},{"name":"TMT_BOOL","features":[40]},{"name":"TMT_BORDERCOLOR","features":[40]},{"name":"TMT_BORDERCOLORHINT","features":[40]},{"name":"TMT_BORDERONLY","features":[40]},{"name":"TMT_BORDERSIZE","features":[40]},{"name":"TMT_BORDERTYPE","features":[40]},{"name":"TMT_BTNFACE","features":[40]},{"name":"TMT_BTNHIGHLIGHT","features":[40]},{"name":"TMT_BTNSHADOW","features":[40]},{"name":"TMT_BTNTEXT","features":[40]},{"name":"TMT_BUTTONALTERNATEFACE","features":[40]},{"name":"TMT_CAPTIONBARHEIGHT","features":[40]},{"name":"TMT_CAPTIONBARWIDTH","features":[40]},{"name":"TMT_CAPTIONFONT","features":[40]},{"name":"TMT_CAPTIONMARGINS","features":[40]},{"name":"TMT_CAPTIONTEXT","features":[40]},{"name":"TMT_CHARSET","features":[40]},{"name":"TMT_CLASSICVALUE","features":[40]},{"name":"TMT_COLOR","features":[40]},{"name":"TMT_COLORIZATIONCOLOR","features":[40]},{"name":"TMT_COLORIZATIONOPACITY","features":[40]},{"name":"TMT_COLORSCHEMES","features":[40]},{"name":"TMT_COMPANY","features":[40]},{"name":"TMT_COMPOSITED","features":[40]},{"name":"TMT_COMPOSITEDOPAQUE","features":[40]},{"name":"TMT_CONTENTALIGNMENT","features":[40]},{"name":"TMT_CONTENTMARGINS","features":[40]},{"name":"TMT_COPYRIGHT","features":[40]},{"name":"TMT_CSSNAME","features":[40]},{"name":"TMT_CUSTOMSPLITRECT","features":[40]},{"name":"TMT_DEFAULTPANESIZE","features":[40]},{"name":"TMT_DESCRIPTION","features":[40]},{"name":"TMT_DIBDATA","features":[40]},{"name":"TMT_DISKSTREAM","features":[40]},{"name":"TMT_DISPLAYNAME","features":[40]},{"name":"TMT_DKSHADOW3D","features":[40]},{"name":"TMT_DRAWBORDERS","features":[40]},{"name":"TMT_EDGEDKSHADOWCOLOR","features":[40]},{"name":"TMT_EDGEFILLCOLOR","features":[40]},{"name":"TMT_EDGEHIGHLIGHTCOLOR","features":[40]},{"name":"TMT_EDGELIGHTCOLOR","features":[40]},{"name":"TMT_EDGESHADOWCOLOR","features":[40]},{"name":"TMT_ENUM","features":[40]},{"name":"TMT_FILENAME","features":[40]},{"name":"TMT_FILLCOLOR","features":[40]},{"name":"TMT_FILLCOLORHINT","features":[40]},{"name":"TMT_FILLTYPE","features":[40]},{"name":"TMT_FIRSTBOOL","features":[40]},{"name":"TMT_FIRSTCOLOR","features":[40]},{"name":"TMT_FIRSTFONT","features":[40]},{"name":"TMT_FIRSTINT","features":[40]},{"name":"TMT_FIRSTSIZE","features":[40]},{"name":"TMT_FIRSTSTRING","features":[40]},{"name":"TMT_FIRST_RCSTRING_NAME","features":[40]},{"name":"TMT_FLATMENUS","features":[40]},{"name":"TMT_FLOAT","features":[40]},{"name":"TMT_FLOATLIST","features":[40]},{"name":"TMT_FONT","features":[40]},{"name":"TMT_FRAMESPERSECOND","features":[40]},{"name":"TMT_FROMCOLOR1","features":[40]},{"name":"TMT_FROMCOLOR2","features":[40]},{"name":"TMT_FROMCOLOR3","features":[40]},{"name":"TMT_FROMCOLOR4","features":[40]},{"name":"TMT_FROMCOLOR5","features":[40]},{"name":"TMT_FROMHUE1","features":[40]},{"name":"TMT_FROMHUE2","features":[40]},{"name":"TMT_FROMHUE3","features":[40]},{"name":"TMT_FROMHUE4","features":[40]},{"name":"TMT_FROMHUE5","features":[40]},{"name":"TMT_GLOWCOLOR","features":[40]},{"name":"TMT_GLOWINTENSITY","features":[40]},{"name":"TMT_GLYPHDIBDATA","features":[40]},{"name":"TMT_GLYPHFONT","features":[40]},{"name":"TMT_GLYPHFONTSIZINGTYPE","features":[40]},{"name":"TMT_GLYPHIMAGEFILE","features":[40]},{"name":"TMT_GLYPHINDEX","features":[40]},{"name":"TMT_GLYPHONLY","features":[40]},{"name":"TMT_GLYPHTEXTCOLOR","features":[40]},{"name":"TMT_GLYPHTRANSPARENT","features":[40]},{"name":"TMT_GLYPHTRANSPARENTCOLOR","features":[40]},{"name":"TMT_GLYPHTYPE","features":[40]},{"name":"TMT_GRADIENTACTIVECAPTION","features":[40]},{"name":"TMT_GRADIENTCOLOR1","features":[40]},{"name":"TMT_GRADIENTCOLOR2","features":[40]},{"name":"TMT_GRADIENTCOLOR3","features":[40]},{"name":"TMT_GRADIENTCOLOR4","features":[40]},{"name":"TMT_GRADIENTCOLOR5","features":[40]},{"name":"TMT_GRADIENTINACTIVECAPTION","features":[40]},{"name":"TMT_GRADIENTRATIO1","features":[40]},{"name":"TMT_GRADIENTRATIO2","features":[40]},{"name":"TMT_GRADIENTRATIO3","features":[40]},{"name":"TMT_GRADIENTRATIO4","features":[40]},{"name":"TMT_GRADIENTRATIO5","features":[40]},{"name":"TMT_GRAYTEXT","features":[40]},{"name":"TMT_HALIGN","features":[40]},{"name":"TMT_HBITMAP","features":[40]},{"name":"TMT_HEADING1FONT","features":[40]},{"name":"TMT_HEADING1TEXTCOLOR","features":[40]},{"name":"TMT_HEADING2FONT","features":[40]},{"name":"TMT_HEADING2TEXTCOLOR","features":[40]},{"name":"TMT_HEIGHT","features":[40]},{"name":"TMT_HIGHLIGHT","features":[40]},{"name":"TMT_HIGHLIGHTTEXT","features":[40]},{"name":"TMT_HOTTRACKING","features":[40]},{"name":"TMT_ICONEFFECT","features":[40]},{"name":"TMT_ICONTITLEFONT","features":[40]},{"name":"TMT_IMAGECOUNT","features":[40]},{"name":"TMT_IMAGEFILE","features":[40]},{"name":"TMT_IMAGEFILE1","features":[40]},{"name":"TMT_IMAGEFILE2","features":[40]},{"name":"TMT_IMAGEFILE3","features":[40]},{"name":"TMT_IMAGEFILE4","features":[40]},{"name":"TMT_IMAGEFILE5","features":[40]},{"name":"TMT_IMAGEFILE6","features":[40]},{"name":"TMT_IMAGEFILE7","features":[40]},{"name":"TMT_IMAGELAYOUT","features":[40]},{"name":"TMT_IMAGESELECTTYPE","features":[40]},{"name":"TMT_INACTIVEBORDER","features":[40]},{"name":"TMT_INACTIVECAPTION","features":[40]},{"name":"TMT_INACTIVECAPTIONTEXT","features":[40]},{"name":"TMT_INFOBK","features":[40]},{"name":"TMT_INFOTEXT","features":[40]},{"name":"TMT_INT","features":[40]},{"name":"TMT_INTEGRALSIZING","features":[40]},{"name":"TMT_INTLIST","features":[40]},{"name":"TMT_LASTBOOL","features":[40]},{"name":"TMT_LASTCOLOR","features":[40]},{"name":"TMT_LASTFONT","features":[40]},{"name":"TMT_LASTINT","features":[40]},{"name":"TMT_LASTSIZE","features":[40]},{"name":"TMT_LASTSTRING","features":[40]},{"name":"TMT_LASTUPDATED","features":[40]},{"name":"TMT_LAST_RCSTRING_NAME","features":[40]},{"name":"TMT_LIGHT3D","features":[40]},{"name":"TMT_LOCALIZEDMIRRORIMAGE","features":[40]},{"name":"TMT_MARGINS","features":[40]},{"name":"TMT_MENU","features":[40]},{"name":"TMT_MENUBAR","features":[40]},{"name":"TMT_MENUBARHEIGHT","features":[40]},{"name":"TMT_MENUBARWIDTH","features":[40]},{"name":"TMT_MENUFONT","features":[40]},{"name":"TMT_MENUHILIGHT","features":[40]},{"name":"TMT_MENUTEXT","features":[40]},{"name":"TMT_MINCOLORDEPTH","features":[40]},{"name":"TMT_MINDPI1","features":[40]},{"name":"TMT_MINDPI2","features":[40]},{"name":"TMT_MINDPI3","features":[40]},{"name":"TMT_MINDPI4","features":[40]},{"name":"TMT_MINDPI5","features":[40]},{"name":"TMT_MINDPI6","features":[40]},{"name":"TMT_MINDPI7","features":[40]},{"name":"TMT_MINSIZE","features":[40]},{"name":"TMT_MINSIZE1","features":[40]},{"name":"TMT_MINSIZE2","features":[40]},{"name":"TMT_MINSIZE3","features":[40]},{"name":"TMT_MINSIZE4","features":[40]},{"name":"TMT_MINSIZE5","features":[40]},{"name":"TMT_MINSIZE6","features":[40]},{"name":"TMT_MINSIZE7","features":[40]},{"name":"TMT_MIRRORIMAGE","features":[40]},{"name":"TMT_MSGBOXFONT","features":[40]},{"name":"TMT_NAME","features":[40]},{"name":"TMT_NOETCHEDEFFECT","features":[40]},{"name":"TMT_NORMALSIZE","features":[40]},{"name":"TMT_OFFSET","features":[40]},{"name":"TMT_OFFSETTYPE","features":[40]},{"name":"TMT_OPACITY","features":[40]},{"name":"TMT_PADDEDBORDERWIDTH","features":[40]},{"name":"TMT_PIXELSPERFRAME","features":[40]},{"name":"TMT_POSITION","features":[40]},{"name":"TMT_PROGRESSCHUNKSIZE","features":[40]},{"name":"TMT_PROGRESSSPACESIZE","features":[40]},{"name":"TMT_RECT","features":[40]},{"name":"TMT_RESERVEDHIGH","features":[40]},{"name":"TMT_RESERVEDLOW","features":[40]},{"name":"TMT_ROUNDCORNERHEIGHT","features":[40]},{"name":"TMT_ROUNDCORNERWIDTH","features":[40]},{"name":"TMT_SATURATION","features":[40]},{"name":"TMT_SCALEDBACKGROUND","features":[40]},{"name":"TMT_SCROLLBAR","features":[40]},{"name":"TMT_SCROLLBARHEIGHT","features":[40]},{"name":"TMT_SCROLLBARWIDTH","features":[40]},{"name":"TMT_SHADOWCOLOR","features":[40]},{"name":"TMT_SIZE","features":[40]},{"name":"TMT_SIZES","features":[40]},{"name":"TMT_SIZINGBORDERWIDTH","features":[40]},{"name":"TMT_SIZINGMARGINS","features":[40]},{"name":"TMT_SIZINGTYPE","features":[40]},{"name":"TMT_SMALLCAPTIONFONT","features":[40]},{"name":"TMT_SMCAPTIONBARHEIGHT","features":[40]},{"name":"TMT_SMCAPTIONBARWIDTH","features":[40]},{"name":"TMT_SOURCEGROW","features":[40]},{"name":"TMT_SOURCESHRINK","features":[40]},{"name":"TMT_STATUSFONT","features":[40]},{"name":"TMT_STREAM","features":[40]},{"name":"TMT_STRING","features":[40]},{"name":"TMT_TEXT","features":[40]},{"name":"TMT_TEXTAPPLYOVERLAY","features":[40]},{"name":"TMT_TEXTBORDERCOLOR","features":[40]},{"name":"TMT_TEXTBORDERSIZE","features":[40]},{"name":"TMT_TEXTCOLOR","features":[40]},{"name":"TMT_TEXTCOLORHINT","features":[40]},{"name":"TMT_TEXTGLOW","features":[40]},{"name":"TMT_TEXTGLOWSIZE","features":[40]},{"name":"TMT_TEXTITALIC","features":[40]},{"name":"TMT_TEXTSHADOWCOLOR","features":[40]},{"name":"TMT_TEXTSHADOWOFFSET","features":[40]},{"name":"TMT_TEXTSHADOWTYPE","features":[40]},{"name":"TMT_TOCOLOR1","features":[40]},{"name":"TMT_TOCOLOR2","features":[40]},{"name":"TMT_TOCOLOR3","features":[40]},{"name":"TMT_TOCOLOR4","features":[40]},{"name":"TMT_TOCOLOR5","features":[40]},{"name":"TMT_TOHUE1","features":[40]},{"name":"TMT_TOHUE2","features":[40]},{"name":"TMT_TOHUE3","features":[40]},{"name":"TMT_TOHUE4","features":[40]},{"name":"TMT_TOHUE5","features":[40]},{"name":"TMT_TOOLTIP","features":[40]},{"name":"TMT_TRANSITIONDURATIONS","features":[40]},{"name":"TMT_TRANSPARENT","features":[40]},{"name":"TMT_TRANSPARENTCOLOR","features":[40]},{"name":"TMT_TRUESIZESCALINGTYPE","features":[40]},{"name":"TMT_TRUESIZESTRETCHMARK","features":[40]},{"name":"TMT_UNIFORMSIZING","features":[40]},{"name":"TMT_URL","features":[40]},{"name":"TMT_USERPICTURE","features":[40]},{"name":"TMT_VALIGN","features":[40]},{"name":"TMT_VERSION","features":[40]},{"name":"TMT_WIDTH","features":[40]},{"name":"TMT_WINDOW","features":[40]},{"name":"TMT_WINDOWFRAME","features":[40]},{"name":"TMT_WINDOWTEXT","features":[40]},{"name":"TMT_XMLNAME","features":[40]},{"name":"TNP_ANIMBACKGROUND","features":[40]},{"name":"TNP_BACKGROUND","features":[40]},{"name":"TOOLBARCLASSNAME","features":[40]},{"name":"TOOLBARCLASSNAMEA","features":[40]},{"name":"TOOLBARCLASSNAMEW","features":[40]},{"name":"TOOLBARPARTS","features":[40]},{"name":"TOOLBARSTYLESTATES","features":[40]},{"name":"TOOLTIPPARTS","features":[40]},{"name":"TOOLTIPS_CLASS","features":[40]},{"name":"TOOLTIPS_CLASSA","features":[40]},{"name":"TOOLTIPS_CLASSW","features":[40]},{"name":"TOOLTIP_FLAGS","features":[40]},{"name":"TOPTABITEMBOTHEDGESTATES","features":[40]},{"name":"TOPTABITEMLEFTEDGESTATES","features":[40]},{"name":"TOPTABITEMRIGHTEDGESTATES","features":[40]},{"name":"TOPTABITEMSTATES","features":[40]},{"name":"TOUCH_HIT_TESTING_INPUT","features":[1,40]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_EVALUATION","features":[1,40]},{"name":"TP_BUTTON","features":[40]},{"name":"TP_DROPDOWNBUTTON","features":[40]},{"name":"TP_DROPDOWNBUTTONGLYPH","features":[40]},{"name":"TP_SEPARATOR","features":[40]},{"name":"TP_SEPARATORVERT","features":[40]},{"name":"TP_SPLITBUTTON","features":[40]},{"name":"TP_SPLITBUTTONDROPDOWN","features":[40]},{"name":"TRACKBARPARTS","features":[40]},{"name":"TRACKBARSTYLESTATES","features":[40]},{"name":"TRACKBAR_CLASS","features":[40]},{"name":"TRACKBAR_CLASSA","features":[40]},{"name":"TRACKBAR_CLASSW","features":[40]},{"name":"TRACKSTATES","features":[40]},{"name":"TRACKVERTSTATES","features":[40]},{"name":"TRAILINGGRIDCELLSTATES","features":[40]},{"name":"TRAILINGGRIDCELLUPPERSTATES","features":[40]},{"name":"TRANSPARENTBACKGROUNDSTATES","features":[40]},{"name":"TRANSPARENTBARSTATES","features":[40]},{"name":"TRANSPARENTBARVERTSTATES","features":[40]},{"name":"TRAYNOTIFYPARTS","features":[40]},{"name":"TRBN_FIRST","features":[40]},{"name":"TRBN_LAST","features":[40]},{"name":"TRBN_THUMBPOSCHANGING","features":[40]},{"name":"TREEITEMSTATES","features":[40]},{"name":"TREEVIEWPARTS","features":[40]},{"name":"TREE_VIEW_ITEM_STATE_FLAGS","features":[40]},{"name":"TREIS_DISABLED","features":[40]},{"name":"TREIS_HOT","features":[40]},{"name":"TREIS_HOTSELECTED","features":[40]},{"name":"TREIS_NORMAL","features":[40]},{"name":"TREIS_SELECTED","features":[40]},{"name":"TREIS_SELECTEDNOTFOCUS","features":[40]},{"name":"TRS_NORMAL","features":[40]},{"name":"TRUESIZESCALINGTYPE","features":[40]},{"name":"TRVS_NORMAL","features":[40]},{"name":"TSGP_GRIPPER","features":[40]},{"name":"TSGS_CENTERED","features":[40]},{"name":"TSGS_NORMAL","features":[40]},{"name":"TSST_DPI","features":[40]},{"name":"TSST_NONE","features":[40]},{"name":"TSST_SIZE","features":[40]},{"name":"TSS_NORMAL","features":[40]},{"name":"TST_CONTINUOUS","features":[40]},{"name":"TST_NONE","features":[40]},{"name":"TST_SINGLE","features":[40]},{"name":"TSVS_NORMAL","features":[40]},{"name":"TS_CHECKED","features":[40]},{"name":"TS_CONTROLLABEL_DISABLED","features":[40]},{"name":"TS_CONTROLLABEL_NORMAL","features":[40]},{"name":"TS_DISABLED","features":[40]},{"name":"TS_DRAW","features":[40]},{"name":"TS_HOT","features":[40]},{"name":"TS_HOTCHECKED","features":[40]},{"name":"TS_HYPERLINK_DISABLED","features":[40]},{"name":"TS_HYPERLINK_HOT","features":[40]},{"name":"TS_HYPERLINK_NORMAL","features":[40]},{"name":"TS_HYPERLINK_PRESSED","features":[40]},{"name":"TS_MIN","features":[40]},{"name":"TS_NEARHOT","features":[40]},{"name":"TS_NORMAL","features":[40]},{"name":"TS_OTHERSIDEHOT","features":[40]},{"name":"TS_PRESSED","features":[40]},{"name":"TS_TRUE","features":[40]},{"name":"TTBSS_POINTINGDOWNCENTERED","features":[40]},{"name":"TTBSS_POINTINGDOWNLEFTWALL","features":[40]},{"name":"TTBSS_POINTINGDOWNRIGHTWALL","features":[40]},{"name":"TTBSS_POINTINGUPCENTERED","features":[40]},{"name":"TTBSS_POINTINGUPLEFTWALL","features":[40]},{"name":"TTBSS_POINTINGUPRIGHTWALL","features":[40]},{"name":"TTBS_LINK","features":[40]},{"name":"TTBS_NORMAL","features":[40]},{"name":"TTCS_HOT","features":[40]},{"name":"TTCS_NORMAL","features":[40]},{"name":"TTCS_PRESSED","features":[40]},{"name":"TTDT_AUTOMATIC","features":[40]},{"name":"TTDT_AUTOPOP","features":[40]},{"name":"TTDT_INITIAL","features":[40]},{"name":"TTDT_RESHOW","features":[40]},{"name":"TTFT_CUBIC_BEZIER","features":[40]},{"name":"TTFT_UNDEFINED","features":[40]},{"name":"TTF_ABSOLUTE","features":[40]},{"name":"TTF_CENTERTIP","features":[40]},{"name":"TTF_DI_SETITEM","features":[40]},{"name":"TTF_IDISHWND","features":[40]},{"name":"TTF_PARSELINKS","features":[40]},{"name":"TTF_RTLREADING","features":[40]},{"name":"TTF_SUBCLASS","features":[40]},{"name":"TTF_TRACK","features":[40]},{"name":"TTF_TRANSPARENT","features":[40]},{"name":"TTGETTITLE","features":[40]},{"name":"TTHITTESTINFOA","features":[1,40]},{"name":"TTHITTESTINFOW","features":[1,40]},{"name":"TTIBES_DISABLED","features":[40]},{"name":"TTIBES_FOCUSED","features":[40]},{"name":"TTIBES_HOT","features":[40]},{"name":"TTIBES_NORMAL","features":[40]},{"name":"TTIBES_SELECTED","features":[40]},{"name":"TTILES_DISABLED","features":[40]},{"name":"TTILES_FOCUSED","features":[40]},{"name":"TTILES_HOT","features":[40]},{"name":"TTILES_NORMAL","features":[40]},{"name":"TTILES_SELECTED","features":[40]},{"name":"TTIRES_DISABLED","features":[40]},{"name":"TTIRES_FOCUSED","features":[40]},{"name":"TTIRES_HOT","features":[40]},{"name":"TTIRES_NORMAL","features":[40]},{"name":"TTIRES_SELECTED","features":[40]},{"name":"TTIS_DISABLED","features":[40]},{"name":"TTIS_FOCUSED","features":[40]},{"name":"TTIS_HOT","features":[40]},{"name":"TTIS_NORMAL","features":[40]},{"name":"TTIS_SELECTED","features":[40]},{"name":"TTI_ERROR","features":[40]},{"name":"TTI_ERROR_LARGE","features":[40]},{"name":"TTI_INFO","features":[40]},{"name":"TTI_INFO_LARGE","features":[40]},{"name":"TTI_NONE","features":[40]},{"name":"TTI_WARNING","features":[40]},{"name":"TTI_WARNING_LARGE","features":[40]},{"name":"TTM_ACTIVATE","features":[40]},{"name":"TTM_ADDTOOL","features":[40]},{"name":"TTM_ADDTOOLA","features":[40]},{"name":"TTM_ADDTOOLW","features":[40]},{"name":"TTM_ADJUSTRECT","features":[40]},{"name":"TTM_DELTOOL","features":[40]},{"name":"TTM_DELTOOLA","features":[40]},{"name":"TTM_DELTOOLW","features":[40]},{"name":"TTM_ENUMTOOLS","features":[40]},{"name":"TTM_ENUMTOOLSA","features":[40]},{"name":"TTM_ENUMTOOLSW","features":[40]},{"name":"TTM_GETBUBBLESIZE","features":[40]},{"name":"TTM_GETCURRENTTOOL","features":[40]},{"name":"TTM_GETCURRENTTOOLA","features":[40]},{"name":"TTM_GETCURRENTTOOLW","features":[40]},{"name":"TTM_GETDELAYTIME","features":[40]},{"name":"TTM_GETMARGIN","features":[40]},{"name":"TTM_GETMAXTIPWIDTH","features":[40]},{"name":"TTM_GETTEXT","features":[40]},{"name":"TTM_GETTEXTA","features":[40]},{"name":"TTM_GETTEXTW","features":[40]},{"name":"TTM_GETTIPBKCOLOR","features":[40]},{"name":"TTM_GETTIPTEXTCOLOR","features":[40]},{"name":"TTM_GETTITLE","features":[40]},{"name":"TTM_GETTOOLCOUNT","features":[40]},{"name":"TTM_GETTOOLINFO","features":[40]},{"name":"TTM_GETTOOLINFOA","features":[40]},{"name":"TTM_GETTOOLINFOW","features":[40]},{"name":"TTM_HITTEST","features":[40]},{"name":"TTM_HITTESTA","features":[40]},{"name":"TTM_HITTESTW","features":[40]},{"name":"TTM_NEWTOOLRECT","features":[40]},{"name":"TTM_NEWTOOLRECTA","features":[40]},{"name":"TTM_NEWTOOLRECTW","features":[40]},{"name":"TTM_POP","features":[40]},{"name":"TTM_POPUP","features":[40]},{"name":"TTM_RELAYEVENT","features":[40]},{"name":"TTM_SETDELAYTIME","features":[40]},{"name":"TTM_SETMARGIN","features":[40]},{"name":"TTM_SETMAXTIPWIDTH","features":[40]},{"name":"TTM_SETTIPBKCOLOR","features":[40]},{"name":"TTM_SETTIPTEXTCOLOR","features":[40]},{"name":"TTM_SETTITLE","features":[40]},{"name":"TTM_SETTITLEA","features":[40]},{"name":"TTM_SETTITLEW","features":[40]},{"name":"TTM_SETTOOLINFO","features":[40]},{"name":"TTM_SETTOOLINFOA","features":[40]},{"name":"TTM_SETTOOLINFOW","features":[40]},{"name":"TTM_SETWINDOWTHEME","features":[40]},{"name":"TTM_TRACKACTIVATE","features":[40]},{"name":"TTM_TRACKPOSITION","features":[40]},{"name":"TTM_UPDATE","features":[40]},{"name":"TTM_UPDATETIPTEXT","features":[40]},{"name":"TTM_UPDATETIPTEXTA","features":[40]},{"name":"TTM_UPDATETIPTEXTW","features":[40]},{"name":"TTM_WINDOWFROMPOINT","features":[40]},{"name":"TTN_FIRST","features":[40]},{"name":"TTN_GETDISPINFO","features":[40]},{"name":"TTN_GETDISPINFOA","features":[40]},{"name":"TTN_GETDISPINFOW","features":[40]},{"name":"TTN_LAST","features":[40]},{"name":"TTN_LINKCLICK","features":[40]},{"name":"TTN_NEEDTEXT","features":[40]},{"name":"TTN_NEEDTEXTA","features":[40]},{"name":"TTN_NEEDTEXTW","features":[40]},{"name":"TTN_POP","features":[40]},{"name":"TTN_SHOW","features":[40]},{"name":"TTP_BALLOON","features":[40]},{"name":"TTP_BALLOONSTEM","features":[40]},{"name":"TTP_BALLOONTITLE","features":[40]},{"name":"TTP_CLOSE","features":[40]},{"name":"TTP_STANDARD","features":[40]},{"name":"TTP_STANDARDTITLE","features":[40]},{"name":"TTP_WRENCH","features":[40]},{"name":"TTSS_LINK","features":[40]},{"name":"TTSS_NORMAL","features":[40]},{"name":"TTS_ALWAYSTIP","features":[40]},{"name":"TTS_BALLOON","features":[40]},{"name":"TTS_CLOSE","features":[40]},{"name":"TTS_NOANIMATE","features":[40]},{"name":"TTS_NOFADE","features":[40]},{"name":"TTS_NOPREFIX","features":[40]},{"name":"TTS_USEVISUALSTYLE","features":[40]},{"name":"TTTOOLINFOA","features":[1,40]},{"name":"TTTOOLINFOW","features":[1,40]},{"name":"TTWS_HOT","features":[40]},{"name":"TTWS_NORMAL","features":[40]},{"name":"TTWS_PRESSED","features":[40]},{"name":"TUBS_DISABLED","features":[40]},{"name":"TUBS_FOCUSED","features":[40]},{"name":"TUBS_HOT","features":[40]},{"name":"TUBS_NORMAL","features":[40]},{"name":"TUBS_PRESSED","features":[40]},{"name":"TUS_DISABLED","features":[40]},{"name":"TUS_FOCUSED","features":[40]},{"name":"TUS_HOT","features":[40]},{"name":"TUS_NORMAL","features":[40]},{"name":"TUS_PRESSED","features":[40]},{"name":"TUTS_DISABLED","features":[40]},{"name":"TUTS_FOCUSED","features":[40]},{"name":"TUTS_HOT","features":[40]},{"name":"TUTS_NORMAL","features":[40]},{"name":"TUTS_PRESSED","features":[40]},{"name":"TUVLS_DISABLED","features":[40]},{"name":"TUVLS_FOCUSED","features":[40]},{"name":"TUVLS_HOT","features":[40]},{"name":"TUVLS_NORMAL","features":[40]},{"name":"TUVLS_PRESSED","features":[40]},{"name":"TUVRS_DISABLED","features":[40]},{"name":"TUVRS_FOCUSED","features":[40]},{"name":"TUVRS_HOT","features":[40]},{"name":"TUVRS_NORMAL","features":[40]},{"name":"TUVRS_PRESSED","features":[40]},{"name":"TUVS_DISABLED","features":[40]},{"name":"TUVS_FOCUSED","features":[40]},{"name":"TUVS_HOT","features":[40]},{"name":"TUVS_NORMAL","features":[40]},{"name":"TUVS_PRESSED","features":[40]},{"name":"TVCDRF_NOIMAGES","features":[40]},{"name":"TVC_BYKEYBOARD","features":[40]},{"name":"TVC_BYMOUSE","features":[40]},{"name":"TVC_UNKNOWN","features":[40]},{"name":"TVE_COLLAPSE","features":[40]},{"name":"TVE_COLLAPSERESET","features":[40]},{"name":"TVE_EXPAND","features":[40]},{"name":"TVE_EXPANDPARTIAL","features":[40]},{"name":"TVE_TOGGLE","features":[40]},{"name":"TVGETITEMPARTRECTINFO","features":[1,40]},{"name":"TVGIPR_BUTTON","features":[40]},{"name":"TVGN_CARET","features":[40]},{"name":"TVGN_CHILD","features":[40]},{"name":"TVGN_DROPHILITE","features":[40]},{"name":"TVGN_FIRSTVISIBLE","features":[40]},{"name":"TVGN_LASTVISIBLE","features":[40]},{"name":"TVGN_NEXT","features":[40]},{"name":"TVGN_NEXTSELECTED","features":[40]},{"name":"TVGN_NEXTVISIBLE","features":[40]},{"name":"TVGN_PARENT","features":[40]},{"name":"TVGN_PREVIOUS","features":[40]},{"name":"TVGN_PREVIOUSVISIBLE","features":[40]},{"name":"TVGN_ROOT","features":[40]},{"name":"TVHITTESTINFO","features":[1,40]},{"name":"TVHITTESTINFO_FLAGS","features":[40]},{"name":"TVHT_ABOVE","features":[40]},{"name":"TVHT_BELOW","features":[40]},{"name":"TVHT_NOWHERE","features":[40]},{"name":"TVHT_ONITEM","features":[40]},{"name":"TVHT_ONITEMBUTTON","features":[40]},{"name":"TVHT_ONITEMICON","features":[40]},{"name":"TVHT_ONITEMINDENT","features":[40]},{"name":"TVHT_ONITEMLABEL","features":[40]},{"name":"TVHT_ONITEMRIGHT","features":[40]},{"name":"TVHT_ONITEMSTATEICON","features":[40]},{"name":"TVHT_TOLEFT","features":[40]},{"name":"TVHT_TORIGHT","features":[40]},{"name":"TVIF_CHILDREN","features":[40]},{"name":"TVIF_DI_SETITEM","features":[40]},{"name":"TVIF_EXPANDEDIMAGE","features":[40]},{"name":"TVIF_HANDLE","features":[40]},{"name":"TVIF_IMAGE","features":[40]},{"name":"TVIF_INTEGRAL","features":[40]},{"name":"TVIF_PARAM","features":[40]},{"name":"TVIF_SELECTEDIMAGE","features":[40]},{"name":"TVIF_STATE","features":[40]},{"name":"TVIF_STATEEX","features":[40]},{"name":"TVIF_TEXT","features":[40]},{"name":"TVINSERTSTRUCTA","features":[1,40]},{"name":"TVINSERTSTRUCTW","features":[1,40]},{"name":"TVIS_BOLD","features":[40]},{"name":"TVIS_CUT","features":[40]},{"name":"TVIS_DROPHILITED","features":[40]},{"name":"TVIS_EXPANDED","features":[40]},{"name":"TVIS_EXPANDEDONCE","features":[40]},{"name":"TVIS_EXPANDPARTIAL","features":[40]},{"name":"TVIS_EX_ALL","features":[40]},{"name":"TVIS_EX_DISABLED","features":[40]},{"name":"TVIS_EX_FLAT","features":[40]},{"name":"TVIS_OVERLAYMASK","features":[40]},{"name":"TVIS_SELECTED","features":[40]},{"name":"TVIS_STATEIMAGEMASK","features":[40]},{"name":"TVIS_USERMASK","features":[40]},{"name":"TVITEMA","features":[1,40]},{"name":"TVITEMEXA","features":[1,40]},{"name":"TVITEMEXW","features":[1,40]},{"name":"TVITEMEXW_CHILDREN","features":[40]},{"name":"TVITEMPART","features":[40]},{"name":"TVITEMW","features":[1,40]},{"name":"TVITEM_MASK","features":[40]},{"name":"TVI_FIRST","features":[40]},{"name":"TVI_LAST","features":[40]},{"name":"TVI_ROOT","features":[40]},{"name":"TVI_SORT","features":[40]},{"name":"TVM_CREATEDRAGIMAGE","features":[40]},{"name":"TVM_DELETEITEM","features":[40]},{"name":"TVM_EDITLABEL","features":[40]},{"name":"TVM_EDITLABELA","features":[40]},{"name":"TVM_EDITLABELW","features":[40]},{"name":"TVM_ENDEDITLABELNOW","features":[40]},{"name":"TVM_ENSUREVISIBLE","features":[40]},{"name":"TVM_EXPAND","features":[40]},{"name":"TVM_GETBKCOLOR","features":[40]},{"name":"TVM_GETCOUNT","features":[40]},{"name":"TVM_GETEDITCONTROL","features":[40]},{"name":"TVM_GETEXTENDEDSTYLE","features":[40]},{"name":"TVM_GETIMAGELIST","features":[40]},{"name":"TVM_GETINDENT","features":[40]},{"name":"TVM_GETINSERTMARKCOLOR","features":[40]},{"name":"TVM_GETISEARCHSTRING","features":[40]},{"name":"TVM_GETISEARCHSTRINGA","features":[40]},{"name":"TVM_GETISEARCHSTRINGW","features":[40]},{"name":"TVM_GETITEM","features":[40]},{"name":"TVM_GETITEMA","features":[40]},{"name":"TVM_GETITEMHEIGHT","features":[40]},{"name":"TVM_GETITEMPARTRECT","features":[40]},{"name":"TVM_GETITEMRECT","features":[40]},{"name":"TVM_GETITEMSTATE","features":[40]},{"name":"TVM_GETITEMW","features":[40]},{"name":"TVM_GETLINECOLOR","features":[40]},{"name":"TVM_GETNEXTITEM","features":[40]},{"name":"TVM_GETSCROLLTIME","features":[40]},{"name":"TVM_GETSELECTEDCOUNT","features":[40]},{"name":"TVM_GETTEXTCOLOR","features":[40]},{"name":"TVM_GETTOOLTIPS","features":[40]},{"name":"TVM_GETUNICODEFORMAT","features":[40]},{"name":"TVM_GETVISIBLECOUNT","features":[40]},{"name":"TVM_HITTEST","features":[40]},{"name":"TVM_INSERTITEM","features":[40]},{"name":"TVM_INSERTITEMA","features":[40]},{"name":"TVM_INSERTITEMW","features":[40]},{"name":"TVM_MAPACCIDTOHTREEITEM","features":[40]},{"name":"TVM_MAPHTREEITEMTOACCID","features":[40]},{"name":"TVM_SELECTITEM","features":[40]},{"name":"TVM_SETAUTOSCROLLINFO","features":[40]},{"name":"TVM_SETBKCOLOR","features":[40]},{"name":"TVM_SETBORDER","features":[40]},{"name":"TVM_SETEXTENDEDSTYLE","features":[40]},{"name":"TVM_SETHOT","features":[40]},{"name":"TVM_SETIMAGELIST","features":[40]},{"name":"TVM_SETINDENT","features":[40]},{"name":"TVM_SETINSERTMARK","features":[40]},{"name":"TVM_SETINSERTMARKCOLOR","features":[40]},{"name":"TVM_SETITEM","features":[40]},{"name":"TVM_SETITEMA","features":[40]},{"name":"TVM_SETITEMHEIGHT","features":[40]},{"name":"TVM_SETITEMW","features":[40]},{"name":"TVM_SETLINECOLOR","features":[40]},{"name":"TVM_SETSCROLLTIME","features":[40]},{"name":"TVM_SETTEXTCOLOR","features":[40]},{"name":"TVM_SETTOOLTIPS","features":[40]},{"name":"TVM_SETUNICODEFORMAT","features":[40]},{"name":"TVM_SHOWINFOTIP","features":[40]},{"name":"TVM_SORTCHILDREN","features":[40]},{"name":"TVM_SORTCHILDRENCB","features":[40]},{"name":"TVNRET_DEFAULT","features":[40]},{"name":"TVNRET_SKIPNEW","features":[40]},{"name":"TVNRET_SKIPOLD","features":[40]},{"name":"TVN_ASYNCDRAW","features":[40]},{"name":"TVN_BEGINDRAG","features":[40]},{"name":"TVN_BEGINDRAGA","features":[40]},{"name":"TVN_BEGINDRAGW","features":[40]},{"name":"TVN_BEGINLABELEDIT","features":[40]},{"name":"TVN_BEGINLABELEDITA","features":[40]},{"name":"TVN_BEGINLABELEDITW","features":[40]},{"name":"TVN_BEGINRDRAG","features":[40]},{"name":"TVN_BEGINRDRAGA","features":[40]},{"name":"TVN_BEGINRDRAGW","features":[40]},{"name":"TVN_DELETEITEM","features":[40]},{"name":"TVN_DELETEITEMA","features":[40]},{"name":"TVN_DELETEITEMW","features":[40]},{"name":"TVN_ENDLABELEDIT","features":[40]},{"name":"TVN_ENDLABELEDITA","features":[40]},{"name":"TVN_ENDLABELEDITW","features":[40]},{"name":"TVN_FIRST","features":[40]},{"name":"TVN_GETDISPINFO","features":[40]},{"name":"TVN_GETDISPINFOA","features":[40]},{"name":"TVN_GETDISPINFOW","features":[40]},{"name":"TVN_GETINFOTIP","features":[40]},{"name":"TVN_GETINFOTIPA","features":[40]},{"name":"TVN_GETINFOTIPW","features":[40]},{"name":"TVN_ITEMCHANGED","features":[40]},{"name":"TVN_ITEMCHANGEDA","features":[40]},{"name":"TVN_ITEMCHANGEDW","features":[40]},{"name":"TVN_ITEMCHANGING","features":[40]},{"name":"TVN_ITEMCHANGINGA","features":[40]},{"name":"TVN_ITEMCHANGINGW","features":[40]},{"name":"TVN_ITEMEXPANDED","features":[40]},{"name":"TVN_ITEMEXPANDEDA","features":[40]},{"name":"TVN_ITEMEXPANDEDW","features":[40]},{"name":"TVN_ITEMEXPANDING","features":[40]},{"name":"TVN_ITEMEXPANDINGA","features":[40]},{"name":"TVN_ITEMEXPANDINGW","features":[40]},{"name":"TVN_KEYDOWN","features":[40]},{"name":"TVN_LAST","features":[40]},{"name":"TVN_SELCHANGED","features":[40]},{"name":"TVN_SELCHANGEDA","features":[40]},{"name":"TVN_SELCHANGEDW","features":[40]},{"name":"TVN_SELCHANGING","features":[40]},{"name":"TVN_SELCHANGINGA","features":[40]},{"name":"TVN_SELCHANGINGW","features":[40]},{"name":"TVN_SETDISPINFO","features":[40]},{"name":"TVN_SETDISPINFOA","features":[40]},{"name":"TVN_SETDISPINFOW","features":[40]},{"name":"TVN_SINGLEEXPAND","features":[40]},{"name":"TVP_BRANCH","features":[40]},{"name":"TVP_GLYPH","features":[40]},{"name":"TVP_HOTGLYPH","features":[40]},{"name":"TVP_TREEITEM","features":[40]},{"name":"TVSBF_XBORDER","features":[40]},{"name":"TVSBF_YBORDER","features":[40]},{"name":"TVSIL_NORMAL","features":[40]},{"name":"TVSIL_STATE","features":[40]},{"name":"TVSI_NOSINGLEEXPAND","features":[40]},{"name":"TVSORTCB","features":[1,40]},{"name":"TVS_CHECKBOXES","features":[40]},{"name":"TVS_DISABLEDRAGDROP","features":[40]},{"name":"TVS_EDITLABELS","features":[40]},{"name":"TVS_EX_AUTOHSCROLL","features":[40]},{"name":"TVS_EX_DIMMEDCHECKBOXES","features":[40]},{"name":"TVS_EX_DOUBLEBUFFER","features":[40]},{"name":"TVS_EX_DRAWIMAGEASYNC","features":[40]},{"name":"TVS_EX_EXCLUSIONCHECKBOXES","features":[40]},{"name":"TVS_EX_FADEINOUTEXPANDOS","features":[40]},{"name":"TVS_EX_MULTISELECT","features":[40]},{"name":"TVS_EX_NOINDENTSTATE","features":[40]},{"name":"TVS_EX_NOSINGLECOLLAPSE","features":[40]},{"name":"TVS_EX_PARTIALCHECKBOXES","features":[40]},{"name":"TVS_EX_RICHTOOLTIP","features":[40]},{"name":"TVS_FULLROWSELECT","features":[40]},{"name":"TVS_HASBUTTONS","features":[40]},{"name":"TVS_HASLINES","features":[40]},{"name":"TVS_INFOTIP","features":[40]},{"name":"TVS_LINESATROOT","features":[40]},{"name":"TVS_NOHSCROLL","features":[40]},{"name":"TVS_NONEVENHEIGHT","features":[40]},{"name":"TVS_NOSCROLL","features":[40]},{"name":"TVS_NOTOOLTIPS","features":[40]},{"name":"TVS_RTLREADING","features":[40]},{"name":"TVS_SHOWSELALWAYS","features":[40]},{"name":"TVS_SINGLEEXPAND","features":[40]},{"name":"TVS_TRACKSELECT","features":[40]},{"name":"TV_FIRST","features":[40]},{"name":"TaskDialog","features":[1,40]},{"name":"TaskDialogIndirect","features":[1,40,50]},{"name":"UDACCEL","features":[40]},{"name":"UDM_GETACCEL","features":[40]},{"name":"UDM_GETBASE","features":[40]},{"name":"UDM_GETBUDDY","features":[40]},{"name":"UDM_GETPOS","features":[40]},{"name":"UDM_GETPOS32","features":[40]},{"name":"UDM_GETRANGE","features":[40]},{"name":"UDM_GETRANGE32","features":[40]},{"name":"UDM_GETUNICODEFORMAT","features":[40]},{"name":"UDM_SETACCEL","features":[40]},{"name":"UDM_SETBASE","features":[40]},{"name":"UDM_SETBUDDY","features":[40]},{"name":"UDM_SETPOS","features":[40]},{"name":"UDM_SETPOS32","features":[40]},{"name":"UDM_SETRANGE","features":[40]},{"name":"UDM_SETRANGE32","features":[40]},{"name":"UDM_SETUNICODEFORMAT","features":[40]},{"name":"UDN_DELTAPOS","features":[40]},{"name":"UDN_FIRST","features":[40]},{"name":"UDN_LAST","features":[40]},{"name":"UDS_ALIGNLEFT","features":[40]},{"name":"UDS_ALIGNRIGHT","features":[40]},{"name":"UDS_ARROWKEYS","features":[40]},{"name":"UDS_AUTOBUDDY","features":[40]},{"name":"UDS_HORZ","features":[40]},{"name":"UDS_HOTTRACK","features":[40]},{"name":"UDS_NOTHOUSANDS","features":[40]},{"name":"UDS_SETBUDDYINT","features":[40]},{"name":"UDS_WRAP","features":[40]},{"name":"UD_MAXVAL","features":[40]},{"name":"UPDATEMETADATASTATES","features":[40]},{"name":"UPDOWN_CLASS","features":[40]},{"name":"UPDOWN_CLASSA","features":[40]},{"name":"UPDOWN_CLASSW","features":[40]},{"name":"UPHORZSTATES","features":[40]},{"name":"UPHZS_DISABLED","features":[40]},{"name":"UPHZS_HOT","features":[40]},{"name":"UPHZS_NORMAL","features":[40]},{"name":"UPHZS_PRESSED","features":[40]},{"name":"UPSTATES","features":[40]},{"name":"UPS_DISABLED","features":[40]},{"name":"UPS_HOT","features":[40]},{"name":"UPS_NORMAL","features":[40]},{"name":"UPS_PRESSED","features":[40]},{"name":"USAGE_PROPERTIES","features":[40]},{"name":"USERTILEPARTS","features":[40]},{"name":"UTP_HOVERBACKGROUND","features":[40]},{"name":"UTP_STROKEBACKGROUND","features":[40]},{"name":"UTS_HOT","features":[40]},{"name":"UTS_NORMAL","features":[40]},{"name":"UTS_PRESSED","features":[40]},{"name":"UninitializeFlatSB","features":[1,40]},{"name":"UpdatePanningFeedback","features":[1,40]},{"name":"VALIDBITS","features":[40]},{"name":"VALIGN","features":[40]},{"name":"VA_BOTTOM","features":[40]},{"name":"VA_CENTER","features":[40]},{"name":"VA_TOP","features":[40]},{"name":"VERTSCROLLSTATES","features":[40]},{"name":"VERTTHUMBSTATES","features":[40]},{"name":"VIEW_DETAILS","features":[40]},{"name":"VIEW_LARGEICONS","features":[40]},{"name":"VIEW_LIST","features":[40]},{"name":"VIEW_NETCONNECT","features":[40]},{"name":"VIEW_NETDISCONNECT","features":[40]},{"name":"VIEW_NEWFOLDER","features":[40]},{"name":"VIEW_PARENTFOLDER","features":[40]},{"name":"VIEW_SMALLICONS","features":[40]},{"name":"VIEW_SORTDATE","features":[40]},{"name":"VIEW_SORTNAME","features":[40]},{"name":"VIEW_SORTSIZE","features":[40]},{"name":"VIEW_SORTTYPE","features":[40]},{"name":"VIEW_VIEWMENU","features":[40]},{"name":"VSCLASS_AEROWIZARD","features":[40]},{"name":"VSCLASS_AEROWIZARDSTYLE","features":[40]},{"name":"VSCLASS_BUTTON","features":[40]},{"name":"VSCLASS_BUTTONSTYLE","features":[40]},{"name":"VSCLASS_CLOCK","features":[40]},{"name":"VSCLASS_COMBOBOX","features":[40]},{"name":"VSCLASS_COMBOBOXSTYLE","features":[40]},{"name":"VSCLASS_COMMUNICATIONS","features":[40]},{"name":"VSCLASS_COMMUNICATIONSSTYLE","features":[40]},{"name":"VSCLASS_CONTROLPANEL","features":[40]},{"name":"VSCLASS_CONTROLPANELSTYLE","features":[40]},{"name":"VSCLASS_DATEPICKER","features":[40]},{"name":"VSCLASS_DATEPICKERSTYLE","features":[40]},{"name":"VSCLASS_DRAGDROP","features":[40]},{"name":"VSCLASS_DRAGDROPSTYLE","features":[40]},{"name":"VSCLASS_EDIT","features":[40]},{"name":"VSCLASS_EDITSTYLE","features":[40]},{"name":"VSCLASS_EMPTYMARKUP","features":[40]},{"name":"VSCLASS_EXPLORERBAR","features":[40]},{"name":"VSCLASS_EXPLORERBARSTYLE","features":[40]},{"name":"VSCLASS_FLYOUT","features":[40]},{"name":"VSCLASS_FLYOUTSTYLE","features":[40]},{"name":"VSCLASS_HEADER","features":[40]},{"name":"VSCLASS_HEADERSTYLE","features":[40]},{"name":"VSCLASS_LINK","features":[40]},{"name":"VSCLASS_LISTBOX","features":[40]},{"name":"VSCLASS_LISTBOXSTYLE","features":[40]},{"name":"VSCLASS_LISTVIEW","features":[40]},{"name":"VSCLASS_LISTVIEWSTYLE","features":[40]},{"name":"VSCLASS_MENU","features":[40]},{"name":"VSCLASS_MENUBAND","features":[40]},{"name":"VSCLASS_MENUSTYLE","features":[40]},{"name":"VSCLASS_MONTHCAL","features":[40]},{"name":"VSCLASS_NAVIGATION","features":[40]},{"name":"VSCLASS_PAGE","features":[40]},{"name":"VSCLASS_PROGRESS","features":[40]},{"name":"VSCLASS_PROGRESSSTYLE","features":[40]},{"name":"VSCLASS_REBAR","features":[40]},{"name":"VSCLASS_REBARSTYLE","features":[40]},{"name":"VSCLASS_SCROLLBAR","features":[40]},{"name":"VSCLASS_SCROLLBARSTYLE","features":[40]},{"name":"VSCLASS_SPIN","features":[40]},{"name":"VSCLASS_SPINSTYLE","features":[40]},{"name":"VSCLASS_STARTPANEL","features":[40]},{"name":"VSCLASS_STATIC","features":[40]},{"name":"VSCLASS_STATUS","features":[40]},{"name":"VSCLASS_STATUSSTYLE","features":[40]},{"name":"VSCLASS_TAB","features":[40]},{"name":"VSCLASS_TABSTYLE","features":[40]},{"name":"VSCLASS_TASKBAND","features":[40]},{"name":"VSCLASS_TASKBAR","features":[40]},{"name":"VSCLASS_TASKDIALOG","features":[40]},{"name":"VSCLASS_TASKDIALOGSTYLE","features":[40]},{"name":"VSCLASS_TEXTSELECTIONGRIPPER","features":[40]},{"name":"VSCLASS_TEXTSTYLE","features":[40]},{"name":"VSCLASS_TOOLBAR","features":[40]},{"name":"VSCLASS_TOOLBARSTYLE","features":[40]},{"name":"VSCLASS_TOOLTIP","features":[40]},{"name":"VSCLASS_TOOLTIPSTYLE","features":[40]},{"name":"VSCLASS_TRACKBAR","features":[40]},{"name":"VSCLASS_TRACKBARSTYLE","features":[40]},{"name":"VSCLASS_TRAYNOTIFY","features":[40]},{"name":"VSCLASS_TREEVIEW","features":[40]},{"name":"VSCLASS_TREEVIEWSTYLE","features":[40]},{"name":"VSCLASS_USERTILE","features":[40]},{"name":"VSCLASS_WINDOW","features":[40]},{"name":"VSCLASS_WINDOWSTYLE","features":[40]},{"name":"VSS_DISABLED","features":[40]},{"name":"VSS_HOT","features":[40]},{"name":"VSS_NORMAL","features":[40]},{"name":"VSS_PUSHED","features":[40]},{"name":"VTS_DISABLED","features":[40]},{"name":"VTS_HOT","features":[40]},{"name":"VTS_NORMAL","features":[40]},{"name":"VTS_PUSHED","features":[40]},{"name":"WARNINGSTATES","features":[40]},{"name":"WB_CLASSIFY","features":[40]},{"name":"WB_ISDELIMITER","features":[40]},{"name":"WB_LEFT","features":[40]},{"name":"WB_LEFTBREAK","features":[40]},{"name":"WB_MOVEWORDLEFT","features":[40]},{"name":"WB_MOVEWORDRIGHT","features":[40]},{"name":"WB_RIGHT","features":[40]},{"name":"WB_RIGHTBREAK","features":[40]},{"name":"WC_BUTTON","features":[40]},{"name":"WC_BUTTONA","features":[40]},{"name":"WC_BUTTONW","features":[40]},{"name":"WC_COMBOBOX","features":[40]},{"name":"WC_COMBOBOXA","features":[40]},{"name":"WC_COMBOBOXEX","features":[40]},{"name":"WC_COMBOBOXEXA","features":[40]},{"name":"WC_COMBOBOXEXW","features":[40]},{"name":"WC_COMBOBOXW","features":[40]},{"name":"WC_EDIT","features":[40]},{"name":"WC_EDITA","features":[40]},{"name":"WC_EDITW","features":[40]},{"name":"WC_HEADER","features":[40]},{"name":"WC_HEADERA","features":[40]},{"name":"WC_HEADERW","features":[40]},{"name":"WC_IPADDRESS","features":[40]},{"name":"WC_IPADDRESSA","features":[40]},{"name":"WC_IPADDRESSW","features":[40]},{"name":"WC_LINK","features":[40]},{"name":"WC_LISTBOX","features":[40]},{"name":"WC_LISTBOXA","features":[40]},{"name":"WC_LISTBOXW","features":[40]},{"name":"WC_LISTVIEW","features":[40]},{"name":"WC_LISTVIEWA","features":[40]},{"name":"WC_LISTVIEWW","features":[40]},{"name":"WC_NATIVEFONTCTL","features":[40]},{"name":"WC_NATIVEFONTCTLA","features":[40]},{"name":"WC_NATIVEFONTCTLW","features":[40]},{"name":"WC_PAGESCROLLER","features":[40]},{"name":"WC_PAGESCROLLERA","features":[40]},{"name":"WC_PAGESCROLLERW","features":[40]},{"name":"WC_SCROLLBAR","features":[40]},{"name":"WC_SCROLLBARA","features":[40]},{"name":"WC_SCROLLBARW","features":[40]},{"name":"WC_STATIC","features":[40]},{"name":"WC_STATICA","features":[40]},{"name":"WC_STATICW","features":[40]},{"name":"WC_TABCONTROL","features":[40]},{"name":"WC_TABCONTROLA","features":[40]},{"name":"WC_TABCONTROLW","features":[40]},{"name":"WC_TREEVIEW","features":[40]},{"name":"WC_TREEVIEWA","features":[40]},{"name":"WC_TREEVIEWW","features":[40]},{"name":"WINDOWPARTS","features":[40]},{"name":"WINDOWTHEMEATTRIBUTETYPE","features":[40]},{"name":"WIZ_BODYCX","features":[40]},{"name":"WIZ_BODYX","features":[40]},{"name":"WIZ_CXBMP","features":[40]},{"name":"WIZ_CXDLG","features":[40]},{"name":"WIZ_CYDLG","features":[40]},{"name":"WMN_FIRST","features":[40]},{"name":"WMN_LAST","features":[40]},{"name":"WM_CTLCOLOR","features":[40]},{"name":"WM_MOUSEHOVER","features":[40]},{"name":"WM_MOUSELEAVE","features":[40]},{"name":"WORD_BREAK_ACTION","features":[40]},{"name":"WP_BORDER","features":[40]},{"name":"WP_CAPTION","features":[40]},{"name":"WP_CAPTIONSIZINGTEMPLATE","features":[40]},{"name":"WP_CLOSEBUTTON","features":[40]},{"name":"WP_DIALOG","features":[40]},{"name":"WP_FRAME","features":[40]},{"name":"WP_FRAMEBOTTOM","features":[40]},{"name":"WP_FRAMEBOTTOMSIZINGTEMPLATE","features":[40]},{"name":"WP_FRAMELEFT","features":[40]},{"name":"WP_FRAMELEFTSIZINGTEMPLATE","features":[40]},{"name":"WP_FRAMERIGHT","features":[40]},{"name":"WP_FRAMERIGHTSIZINGTEMPLATE","features":[40]},{"name":"WP_HELPBUTTON","features":[40]},{"name":"WP_HORZSCROLL","features":[40]},{"name":"WP_HORZTHUMB","features":[40]},{"name":"WP_MAXBUTTON","features":[40]},{"name":"WP_MAXCAPTION","features":[40]},{"name":"WP_MDICLOSEBUTTON","features":[40]},{"name":"WP_MDIHELPBUTTON","features":[40]},{"name":"WP_MDIMINBUTTON","features":[40]},{"name":"WP_MDIRESTOREBUTTON","features":[40]},{"name":"WP_MDISYSBUTTON","features":[40]},{"name":"WP_MINBUTTON","features":[40]},{"name":"WP_MINCAPTION","features":[40]},{"name":"WP_RESTOREBUTTON","features":[40]},{"name":"WP_SMALLCAPTION","features":[40]},{"name":"WP_SMALLCAPTIONSIZINGTEMPLATE","features":[40]},{"name":"WP_SMALLCLOSEBUTTON","features":[40]},{"name":"WP_SMALLFRAMEBOTTOM","features":[40]},{"name":"WP_SMALLFRAMEBOTTOMSIZINGTEMPLATE","features":[40]},{"name":"WP_SMALLFRAMELEFT","features":[40]},{"name":"WP_SMALLFRAMELEFTSIZINGTEMPLATE","features":[40]},{"name":"WP_SMALLFRAMERIGHT","features":[40]},{"name":"WP_SMALLFRAMERIGHTSIZINGTEMPLATE","features":[40]},{"name":"WP_SMALLMAXCAPTION","features":[40]},{"name":"WP_SMALLMINCAPTION","features":[40]},{"name":"WP_SYSBUTTON","features":[40]},{"name":"WP_VERTSCROLL","features":[40]},{"name":"WP_VERTTHUMB","features":[40]},{"name":"WRENCHSTATES","features":[40]},{"name":"WSB_PROP","features":[40]},{"name":"WSB_PROP_CXHSCROLL","features":[40]},{"name":"WSB_PROP_CXHTHUMB","features":[40]},{"name":"WSB_PROP_CXVSCROLL","features":[40]},{"name":"WSB_PROP_CYHSCROLL","features":[40]},{"name":"WSB_PROP_CYVSCROLL","features":[40]},{"name":"WSB_PROP_CYVTHUMB","features":[40]},{"name":"WSB_PROP_HBKGCOLOR","features":[40]},{"name":"WSB_PROP_HSTYLE","features":[40]},{"name":"WSB_PROP_MASK","features":[40]},{"name":"WSB_PROP_PALETTE","features":[40]},{"name":"WSB_PROP_VBKGCOLOR","features":[40]},{"name":"WSB_PROP_VSTYLE","features":[40]},{"name":"WSB_PROP_WINSTYLE","features":[40]},{"name":"WTA_NONCLIENT","features":[40]},{"name":"WTA_OPTIONS","features":[40]},{"name":"WTNCA_NODRAWCAPTION","features":[40]},{"name":"WTNCA_NODRAWICON","features":[40]},{"name":"WTNCA_NOMIRRORHELP","features":[40]},{"name":"WTNCA_NOSYSMENU","features":[40]},{"name":"_LI_METRIC","features":[40]},{"name":"chx1","features":[40]},{"name":"chx10","features":[40]},{"name":"chx11","features":[40]},{"name":"chx12","features":[40]},{"name":"chx13","features":[40]},{"name":"chx14","features":[40]},{"name":"chx15","features":[40]},{"name":"chx16","features":[40]},{"name":"chx2","features":[40]},{"name":"chx3","features":[40]},{"name":"chx4","features":[40]},{"name":"chx5","features":[40]},{"name":"chx6","features":[40]},{"name":"chx7","features":[40]},{"name":"chx8","features":[40]},{"name":"chx9","features":[40]},{"name":"cmb1","features":[40]},{"name":"cmb10","features":[40]},{"name":"cmb11","features":[40]},{"name":"cmb12","features":[40]},{"name":"cmb13","features":[40]},{"name":"cmb14","features":[40]},{"name":"cmb15","features":[40]},{"name":"cmb16","features":[40]},{"name":"cmb2","features":[40]},{"name":"cmb3","features":[40]},{"name":"cmb4","features":[40]},{"name":"cmb5","features":[40]},{"name":"cmb6","features":[40]},{"name":"cmb7","features":[40]},{"name":"cmb8","features":[40]},{"name":"cmb9","features":[40]},{"name":"ctl1","features":[40]},{"name":"ctlFirst","features":[40]},{"name":"ctlLast","features":[40]},{"name":"edt1","features":[40]},{"name":"edt10","features":[40]},{"name":"edt11","features":[40]},{"name":"edt12","features":[40]},{"name":"edt13","features":[40]},{"name":"edt14","features":[40]},{"name":"edt15","features":[40]},{"name":"edt16","features":[40]},{"name":"edt2","features":[40]},{"name":"edt3","features":[40]},{"name":"edt4","features":[40]},{"name":"edt5","features":[40]},{"name":"edt6","features":[40]},{"name":"edt7","features":[40]},{"name":"edt8","features":[40]},{"name":"edt9","features":[40]},{"name":"frm1","features":[40]},{"name":"frm2","features":[40]},{"name":"frm3","features":[40]},{"name":"frm4","features":[40]},{"name":"grp1","features":[40]},{"name":"grp2","features":[40]},{"name":"grp3","features":[40]},{"name":"grp4","features":[40]},{"name":"ico1","features":[40]},{"name":"ico2","features":[40]},{"name":"ico3","features":[40]},{"name":"ico4","features":[40]},{"name":"lst1","features":[40]},{"name":"lst10","features":[40]},{"name":"lst11","features":[40]},{"name":"lst12","features":[40]},{"name":"lst13","features":[40]},{"name":"lst14","features":[40]},{"name":"lst15","features":[40]},{"name":"lst16","features":[40]},{"name":"lst2","features":[40]},{"name":"lst3","features":[40]},{"name":"lst4","features":[40]},{"name":"lst5","features":[40]},{"name":"lst6","features":[40]},{"name":"lst7","features":[40]},{"name":"lst8","features":[40]},{"name":"lst9","features":[40]},{"name":"psh1","features":[40]},{"name":"psh10","features":[40]},{"name":"psh11","features":[40]},{"name":"psh12","features":[40]},{"name":"psh13","features":[40]},{"name":"psh14","features":[40]},{"name":"psh15","features":[40]},{"name":"psh16","features":[40]},{"name":"psh2","features":[40]},{"name":"psh3","features":[40]},{"name":"psh4","features":[40]},{"name":"psh5","features":[40]},{"name":"psh6","features":[40]},{"name":"psh7","features":[40]},{"name":"psh8","features":[40]},{"name":"psh9","features":[40]},{"name":"pshHelp","features":[40]},{"name":"rad1","features":[40]},{"name":"rad10","features":[40]},{"name":"rad11","features":[40]},{"name":"rad12","features":[40]},{"name":"rad13","features":[40]},{"name":"rad14","features":[40]},{"name":"rad15","features":[40]},{"name":"rad16","features":[40]},{"name":"rad2","features":[40]},{"name":"rad3","features":[40]},{"name":"rad4","features":[40]},{"name":"rad5","features":[40]},{"name":"rad6","features":[40]},{"name":"rad7","features":[40]},{"name":"rad8","features":[40]},{"name":"rad9","features":[40]},{"name":"rct1","features":[40]},{"name":"rct2","features":[40]},{"name":"rct3","features":[40]},{"name":"rct4","features":[40]},{"name":"scr1","features":[40]},{"name":"scr2","features":[40]},{"name":"scr3","features":[40]},{"name":"scr4","features":[40]},{"name":"scr5","features":[40]},{"name":"scr6","features":[40]},{"name":"scr7","features":[40]},{"name":"scr8","features":[40]},{"name":"stc1","features":[40]},{"name":"stc10","features":[40]},{"name":"stc11","features":[40]},{"name":"stc12","features":[40]},{"name":"stc13","features":[40]},{"name":"stc14","features":[40]},{"name":"stc15","features":[40]},{"name":"stc16","features":[40]},{"name":"stc17","features":[40]},{"name":"stc18","features":[40]},{"name":"stc19","features":[40]},{"name":"stc2","features":[40]},{"name":"stc20","features":[40]},{"name":"stc21","features":[40]},{"name":"stc22","features":[40]},{"name":"stc23","features":[40]},{"name":"stc24","features":[40]},{"name":"stc25","features":[40]},{"name":"stc26","features":[40]},{"name":"stc27","features":[40]},{"name":"stc28","features":[40]},{"name":"stc29","features":[40]},{"name":"stc3","features":[40]},{"name":"stc30","features":[40]},{"name":"stc31","features":[40]},{"name":"stc32","features":[40]},{"name":"stc4","features":[40]},{"name":"stc5","features":[40]},{"name":"stc6","features":[40]},{"name":"stc7","features":[40]},{"name":"stc8","features":[40]},{"name":"stc9","features":[40]}],"651":[{"name":"BOLD_FONTTYPE","features":[84]},{"name":"CCERR_CHOOSECOLORCODES","features":[84]},{"name":"CC_ANYCOLOR","features":[84]},{"name":"CC_ENABLEHOOK","features":[84]},{"name":"CC_ENABLETEMPLATE","features":[84]},{"name":"CC_ENABLETEMPLATEHANDLE","features":[84]},{"name":"CC_FULLOPEN","features":[84]},{"name":"CC_PREVENTFULLOPEN","features":[84]},{"name":"CC_RGBINIT","features":[84]},{"name":"CC_SHOWHELP","features":[84]},{"name":"CC_SOLIDCOLOR","features":[84]},{"name":"CDERR_DIALOGFAILURE","features":[84]},{"name":"CDERR_FINDRESFAILURE","features":[84]},{"name":"CDERR_GENERALCODES","features":[84]},{"name":"CDERR_INITIALIZATION","features":[84]},{"name":"CDERR_LOADRESFAILURE","features":[84]},{"name":"CDERR_LOADSTRFAILURE","features":[84]},{"name":"CDERR_LOCKRESFAILURE","features":[84]},{"name":"CDERR_MEMALLOCFAILURE","features":[84]},{"name":"CDERR_MEMLOCKFAILURE","features":[84]},{"name":"CDERR_NOHINSTANCE","features":[84]},{"name":"CDERR_NOHOOK","features":[84]},{"name":"CDERR_NOTEMPLATE","features":[84]},{"name":"CDERR_REGISTERMSGFAIL","features":[84]},{"name":"CDERR_STRUCTSIZE","features":[84]},{"name":"CDM_FIRST","features":[84]},{"name":"CDM_GETFILEPATH","features":[84]},{"name":"CDM_GETFOLDERIDLIST","features":[84]},{"name":"CDM_GETFOLDERPATH","features":[84]},{"name":"CDM_GETSPEC","features":[84]},{"name":"CDM_HIDECONTROL","features":[84]},{"name":"CDM_LAST","features":[84]},{"name":"CDM_SETCONTROLTEXT","features":[84]},{"name":"CDM_SETDEFEXT","features":[84]},{"name":"CDN_FILEOK","features":[84]},{"name":"CDN_FOLDERCHANGE","features":[84]},{"name":"CDN_HELP","features":[84]},{"name":"CDN_INCLUDEITEM","features":[84]},{"name":"CDN_INITDONE","features":[84]},{"name":"CDN_SELCHANGE","features":[84]},{"name":"CDN_SHAREVIOLATION","features":[84]},{"name":"CDN_TYPECHANGE","features":[84]},{"name":"CD_LBSELADD","features":[84]},{"name":"CD_LBSELCHANGE","features":[84]},{"name":"CD_LBSELNOITEMS","features":[84]},{"name":"CD_LBSELSUB","features":[84]},{"name":"CFERR_CHOOSEFONTCODES","features":[84]},{"name":"CFERR_MAXLESSTHANMIN","features":[84]},{"name":"CFERR_NOFONTS","features":[84]},{"name":"CF_ANSIONLY","features":[84]},{"name":"CF_APPLY","features":[84]},{"name":"CF_BOTH","features":[84]},{"name":"CF_EFFECTS","features":[84]},{"name":"CF_ENABLEHOOK","features":[84]},{"name":"CF_ENABLETEMPLATE","features":[84]},{"name":"CF_ENABLETEMPLATEHANDLE","features":[84]},{"name":"CF_FIXEDPITCHONLY","features":[84]},{"name":"CF_FORCEFONTEXIST","features":[84]},{"name":"CF_INACTIVEFONTS","features":[84]},{"name":"CF_INITTOLOGFONTSTRUCT","features":[84]},{"name":"CF_LIMITSIZE","features":[84]},{"name":"CF_NOFACESEL","features":[84]},{"name":"CF_NOOEMFONTS","features":[84]},{"name":"CF_NOSCRIPTSEL","features":[84]},{"name":"CF_NOSIMULATIONS","features":[84]},{"name":"CF_NOSIZESEL","features":[84]},{"name":"CF_NOSTYLESEL","features":[84]},{"name":"CF_NOVECTORFONTS","features":[84]},{"name":"CF_NOVERTFONTS","features":[84]},{"name":"CF_PRINTERFONTS","features":[84]},{"name":"CF_SCALABLEONLY","features":[84]},{"name":"CF_SCREENFONTS","features":[84]},{"name":"CF_SCRIPTSONLY","features":[84]},{"name":"CF_SELECTSCRIPT","features":[84]},{"name":"CF_SHOWHELP","features":[84]},{"name":"CF_TTONLY","features":[84]},{"name":"CF_USESTYLE","features":[84]},{"name":"CF_WYSIWYG","features":[84]},{"name":"CHOOSECOLORA","features":[1,84]},{"name":"CHOOSECOLORA","features":[1,84]},{"name":"CHOOSECOLORW","features":[1,84]},{"name":"CHOOSECOLORW","features":[1,84]},{"name":"CHOOSECOLOR_FLAGS","features":[84]},{"name":"CHOOSEFONTA","features":[1,12,84]},{"name":"CHOOSEFONTA","features":[1,12,84]},{"name":"CHOOSEFONTW","features":[1,12,84]},{"name":"CHOOSEFONTW","features":[1,12,84]},{"name":"CHOOSEFONT_FLAGS","features":[84]},{"name":"CHOOSEFONT_FONT_TYPE","features":[84]},{"name":"COLOROKSTRING","features":[84]},{"name":"COLOROKSTRINGA","features":[84]},{"name":"COLOROKSTRINGW","features":[84]},{"name":"COLOR_ADD","features":[84]},{"name":"COLOR_BLUE","features":[84]},{"name":"COLOR_BLUEACCEL","features":[84]},{"name":"COLOR_BOX1","features":[84]},{"name":"COLOR_CURRENT","features":[84]},{"name":"COLOR_CUSTOM1","features":[84]},{"name":"COLOR_ELEMENT","features":[84]},{"name":"COLOR_GREEN","features":[84]},{"name":"COLOR_GREENACCEL","features":[84]},{"name":"COLOR_HUE","features":[84]},{"name":"COLOR_HUEACCEL","features":[84]},{"name":"COLOR_HUESCROLL","features":[84]},{"name":"COLOR_LUM","features":[84]},{"name":"COLOR_LUMACCEL","features":[84]},{"name":"COLOR_LUMSCROLL","features":[84]},{"name":"COLOR_MIX","features":[84]},{"name":"COLOR_PALETTE","features":[84]},{"name":"COLOR_RAINBOW","features":[84]},{"name":"COLOR_RED","features":[84]},{"name":"COLOR_REDACCEL","features":[84]},{"name":"COLOR_SAMPLES","features":[84]},{"name":"COLOR_SAT","features":[84]},{"name":"COLOR_SATACCEL","features":[84]},{"name":"COLOR_SATSCROLL","features":[84]},{"name":"COLOR_SAVE","features":[84]},{"name":"COLOR_SCHEMES","features":[84]},{"name":"COLOR_SOLID","features":[84]},{"name":"COLOR_SOLID_LEFT","features":[84]},{"name":"COLOR_SOLID_RIGHT","features":[84]},{"name":"COLOR_TUNE","features":[84]},{"name":"COMMON_DLG_ERRORS","features":[84]},{"name":"ChooseColorA","features":[1,84]},{"name":"ChooseColorW","features":[1,84]},{"name":"ChooseFontA","features":[1,12,84]},{"name":"ChooseFontW","features":[1,12,84]},{"name":"CommDlgExtendedError","features":[84]},{"name":"DEVNAMES","features":[84]},{"name":"DEVNAMES","features":[84]},{"name":"DLG_COLOR","features":[84]},{"name":"DN_DEFAULTPRN","features":[84]},{"name":"FILEOKSTRING","features":[84]},{"name":"FILEOKSTRINGA","features":[84]},{"name":"FILEOKSTRINGW","features":[84]},{"name":"FINDMSGSTRING","features":[84]},{"name":"FINDMSGSTRINGA","features":[84]},{"name":"FINDMSGSTRINGW","features":[84]},{"name":"FINDREPLACEA","features":[1,84]},{"name":"FINDREPLACEA","features":[1,84]},{"name":"FINDREPLACEW","features":[1,84]},{"name":"FINDREPLACEW","features":[1,84]},{"name":"FINDREPLACE_FLAGS","features":[84]},{"name":"FNERR_BUFFERTOOSMALL","features":[84]},{"name":"FNERR_FILENAMECODES","features":[84]},{"name":"FNERR_INVALIDFILENAME","features":[84]},{"name":"FNERR_SUBCLASSFAILURE","features":[84]},{"name":"FRERR_BUFFERLENGTHZERO","features":[84]},{"name":"FRERR_FINDREPLACECODES","features":[84]},{"name":"FRM_FIRST","features":[84]},{"name":"FRM_LAST","features":[84]},{"name":"FRM_SETOPERATIONRESULT","features":[84]},{"name":"FRM_SETOPERATIONRESULTTEXT","features":[84]},{"name":"FR_DIALOGTERM","features":[84]},{"name":"FR_DOWN","features":[84]},{"name":"FR_ENABLEHOOK","features":[84]},{"name":"FR_ENABLETEMPLATE","features":[84]},{"name":"FR_ENABLETEMPLATEHANDLE","features":[84]},{"name":"FR_FINDNEXT","features":[84]},{"name":"FR_HIDEMATCHCASE","features":[84]},{"name":"FR_HIDEUPDOWN","features":[84]},{"name":"FR_HIDEWHOLEWORD","features":[84]},{"name":"FR_MATCHALEFHAMZA","features":[84]},{"name":"FR_MATCHCASE","features":[84]},{"name":"FR_MATCHDIAC","features":[84]},{"name":"FR_MATCHKASHIDA","features":[84]},{"name":"FR_NOMATCHCASE","features":[84]},{"name":"FR_NOUPDOWN","features":[84]},{"name":"FR_NOWHOLEWORD","features":[84]},{"name":"FR_NOWRAPAROUND","features":[84]},{"name":"FR_RAW","features":[84]},{"name":"FR_REPLACE","features":[84]},{"name":"FR_REPLACEALL","features":[84]},{"name":"FR_SHOWHELP","features":[84]},{"name":"FR_SHOWWRAPAROUND","features":[84]},{"name":"FR_WHOLEWORD","features":[84]},{"name":"FR_WRAPAROUND","features":[84]},{"name":"FindTextA","features":[1,84]},{"name":"FindTextW","features":[1,84]},{"name":"GetFileTitleA","features":[84]},{"name":"GetFileTitleW","features":[84]},{"name":"GetOpenFileNameA","features":[1,84]},{"name":"GetOpenFileNameW","features":[1,84]},{"name":"GetSaveFileNameA","features":[1,84]},{"name":"GetSaveFileNameW","features":[1,84]},{"name":"HELPMSGSTRING","features":[84]},{"name":"HELPMSGSTRINGA","features":[84]},{"name":"HELPMSGSTRINGW","features":[84]},{"name":"IPrintDialogCallback","features":[84]},{"name":"IPrintDialogServices","features":[84]},{"name":"ITALIC_FONTTYPE","features":[84]},{"name":"LBSELCHSTRING","features":[84]},{"name":"LBSELCHSTRINGA","features":[84]},{"name":"LBSELCHSTRINGW","features":[84]},{"name":"LPCCHOOKPROC","features":[1,84]},{"name":"LPCFHOOKPROC","features":[1,84]},{"name":"LPFRHOOKPROC","features":[1,84]},{"name":"LPOFNHOOKPROC","features":[1,84]},{"name":"LPPAGEPAINTHOOK","features":[1,84]},{"name":"LPPAGESETUPHOOK","features":[1,84]},{"name":"LPPRINTHOOKPROC","features":[1,84]},{"name":"LPSETUPHOOKPROC","features":[1,84]},{"name":"NUM_BASIC_COLORS","features":[84]},{"name":"NUM_CUSTOM_COLORS","features":[84]},{"name":"OFNOTIFYA","features":[1,84]},{"name":"OFNOTIFYA","features":[1,84]},{"name":"OFNOTIFYEXA","features":[1,84]},{"name":"OFNOTIFYEXA","features":[1,84]},{"name":"OFNOTIFYEXW","features":[1,84]},{"name":"OFNOTIFYEXW","features":[1,84]},{"name":"OFNOTIFYW","features":[1,84]},{"name":"OFNOTIFYW","features":[1,84]},{"name":"OFN_ALLOWMULTISELECT","features":[84]},{"name":"OFN_CREATEPROMPT","features":[84]},{"name":"OFN_DONTADDTORECENT","features":[84]},{"name":"OFN_ENABLEHOOK","features":[84]},{"name":"OFN_ENABLEINCLUDENOTIFY","features":[84]},{"name":"OFN_ENABLESIZING","features":[84]},{"name":"OFN_ENABLETEMPLATE","features":[84]},{"name":"OFN_ENABLETEMPLATEHANDLE","features":[84]},{"name":"OFN_EXPLORER","features":[84]},{"name":"OFN_EXTENSIONDIFFERENT","features":[84]},{"name":"OFN_EX_NONE","features":[84]},{"name":"OFN_EX_NOPLACESBAR","features":[84]},{"name":"OFN_FILEMUSTEXIST","features":[84]},{"name":"OFN_FORCESHOWHIDDEN","features":[84]},{"name":"OFN_HIDEREADONLY","features":[84]},{"name":"OFN_LONGNAMES","features":[84]},{"name":"OFN_NOCHANGEDIR","features":[84]},{"name":"OFN_NODEREFERENCELINKS","features":[84]},{"name":"OFN_NOLONGNAMES","features":[84]},{"name":"OFN_NONETWORKBUTTON","features":[84]},{"name":"OFN_NOREADONLYRETURN","features":[84]},{"name":"OFN_NOTESTFILECREATE","features":[84]},{"name":"OFN_NOVALIDATE","features":[84]},{"name":"OFN_OVERWRITEPROMPT","features":[84]},{"name":"OFN_PATHMUSTEXIST","features":[84]},{"name":"OFN_READONLY","features":[84]},{"name":"OFN_SHAREAWARE","features":[84]},{"name":"OFN_SHAREFALLTHROUGH","features":[84]},{"name":"OFN_SHARENOWARN","features":[84]},{"name":"OFN_SHAREWARN","features":[84]},{"name":"OFN_SHOWHELP","features":[84]},{"name":"OPENFILENAMEA","features":[1,84]},{"name":"OPENFILENAMEA","features":[1,84]},{"name":"OPENFILENAMEW","features":[1,84]},{"name":"OPENFILENAMEW","features":[1,84]},{"name":"OPENFILENAME_NT4A","features":[1,84]},{"name":"OPENFILENAME_NT4A","features":[1,84]},{"name":"OPENFILENAME_NT4W","features":[1,84]},{"name":"OPENFILENAME_NT4W","features":[1,84]},{"name":"OPEN_FILENAME_FLAGS","features":[84]},{"name":"OPEN_FILENAME_FLAGS_EX","features":[84]},{"name":"PAGESETUPDLGA","features":[1,84]},{"name":"PAGESETUPDLGA","features":[1,84]},{"name":"PAGESETUPDLGW","features":[1,84]},{"name":"PAGESETUPDLGW","features":[1,84]},{"name":"PAGESETUPDLG_FLAGS","features":[84]},{"name":"PDERR_CREATEICFAILURE","features":[84]},{"name":"PDERR_DEFAULTDIFFERENT","features":[84]},{"name":"PDERR_DNDMMISMATCH","features":[84]},{"name":"PDERR_GETDEVMODEFAIL","features":[84]},{"name":"PDERR_INITFAILURE","features":[84]},{"name":"PDERR_LOADDRVFAILURE","features":[84]},{"name":"PDERR_NODEFAULTPRN","features":[84]},{"name":"PDERR_NODEVICES","features":[84]},{"name":"PDERR_PARSEFAILURE","features":[84]},{"name":"PDERR_PRINTERCODES","features":[84]},{"name":"PDERR_PRINTERNOTFOUND","features":[84]},{"name":"PDERR_RETDEFFAILURE","features":[84]},{"name":"PDERR_SETUPFAILURE","features":[84]},{"name":"PD_ALLPAGES","features":[84]},{"name":"PD_COLLATE","features":[84]},{"name":"PD_CURRENTPAGE","features":[84]},{"name":"PD_DISABLEPRINTTOFILE","features":[84]},{"name":"PD_ENABLEPRINTHOOK","features":[84]},{"name":"PD_ENABLEPRINTTEMPLATE","features":[84]},{"name":"PD_ENABLEPRINTTEMPLATEHANDLE","features":[84]},{"name":"PD_ENABLESETUPHOOK","features":[84]},{"name":"PD_ENABLESETUPTEMPLATE","features":[84]},{"name":"PD_ENABLESETUPTEMPLATEHANDLE","features":[84]},{"name":"PD_EXCLUSIONFLAGS","features":[84]},{"name":"PD_HIDEPRINTTOFILE","features":[84]},{"name":"PD_NOCURRENTPAGE","features":[84]},{"name":"PD_NONETWORKBUTTON","features":[84]},{"name":"PD_NOPAGENUMS","features":[84]},{"name":"PD_NOSELECTION","features":[84]},{"name":"PD_NOWARNING","features":[84]},{"name":"PD_PAGENUMS","features":[84]},{"name":"PD_PRINTSETUP","features":[84]},{"name":"PD_PRINTTOFILE","features":[84]},{"name":"PD_RESULT_APPLY","features":[84]},{"name":"PD_RESULT_CANCEL","features":[84]},{"name":"PD_RESULT_PRINT","features":[84]},{"name":"PD_RETURNDC","features":[84]},{"name":"PD_RETURNDEFAULT","features":[84]},{"name":"PD_RETURNIC","features":[84]},{"name":"PD_SELECTION","features":[84]},{"name":"PD_SHOWHELP","features":[84]},{"name":"PD_USEDEVMODECOPIES","features":[84]},{"name":"PD_USEDEVMODECOPIESANDCOLLATE","features":[84]},{"name":"PD_USELARGETEMPLATE","features":[84]},{"name":"PRINTDLGA","features":[1,12,84]},{"name":"PRINTDLGA","features":[1,12,84]},{"name":"PRINTDLGEXA","features":[1,12,84]},{"name":"PRINTDLGEXA","features":[1,12,84]},{"name":"PRINTDLGEXW","features":[1,12,84]},{"name":"PRINTDLGEXW","features":[1,12,84]},{"name":"PRINTDLGEX_FLAGS","features":[84]},{"name":"PRINTDLGW","features":[1,12,84]},{"name":"PRINTDLGW","features":[1,12,84]},{"name":"PRINTER_FONTTYPE","features":[84]},{"name":"PRINTPAGERANGE","features":[84]},{"name":"PRINTPAGERANGE","features":[84]},{"name":"PSD_DEFAULTMINMARGINS","features":[84]},{"name":"PSD_DISABLEMARGINS","features":[84]},{"name":"PSD_DISABLEORIENTATION","features":[84]},{"name":"PSD_DISABLEPAGEPAINTING","features":[84]},{"name":"PSD_DISABLEPAPER","features":[84]},{"name":"PSD_DISABLEPRINTER","features":[84]},{"name":"PSD_ENABLEPAGEPAINTHOOK","features":[84]},{"name":"PSD_ENABLEPAGESETUPHOOK","features":[84]},{"name":"PSD_ENABLEPAGESETUPTEMPLATE","features":[84]},{"name":"PSD_ENABLEPAGESETUPTEMPLATEHANDLE","features":[84]},{"name":"PSD_INHUNDREDTHSOFMILLIMETERS","features":[84]},{"name":"PSD_INTHOUSANDTHSOFINCHES","features":[84]},{"name":"PSD_INWININIINTLMEASURE","features":[84]},{"name":"PSD_MARGINS","features":[84]},{"name":"PSD_MINMARGINS","features":[84]},{"name":"PSD_NONETWORKBUTTON","features":[84]},{"name":"PSD_NOWARNING","features":[84]},{"name":"PSD_RETURNDEFAULT","features":[84]},{"name":"PSD_SHOWHELP","features":[84]},{"name":"PS_OPENTYPE_FONTTYPE","features":[84]},{"name":"PageSetupDlgA","features":[1,84]},{"name":"PageSetupDlgW","features":[1,84]},{"name":"PrintDlgA","features":[1,12,84]},{"name":"PrintDlgExA","features":[1,12,84]},{"name":"PrintDlgExW","features":[1,12,84]},{"name":"PrintDlgW","features":[1,12,84]},{"name":"REGULAR_FONTTYPE","features":[84]},{"name":"ReplaceTextA","features":[1,84]},{"name":"ReplaceTextW","features":[1,84]},{"name":"SCREEN_FONTTYPE","features":[84]},{"name":"SETRGBSTRING","features":[84]},{"name":"SETRGBSTRINGA","features":[84]},{"name":"SETRGBSTRINGW","features":[84]},{"name":"SHAREVISTRING","features":[84]},{"name":"SHAREVISTRINGA","features":[84]},{"name":"SHAREVISTRINGW","features":[84]},{"name":"SIMULATED_FONTTYPE","features":[84]},{"name":"START_PAGE_GENERAL","features":[84]},{"name":"SYMBOL_FONTTYPE","features":[84]},{"name":"TT_OPENTYPE_FONTTYPE","features":[84]},{"name":"TYPE1_FONTTYPE","features":[84]},{"name":"WM_CHOOSEFONT_GETLOGFONT","features":[84]},{"name":"WM_CHOOSEFONT_SETFLAGS","features":[84]},{"name":"WM_CHOOSEFONT_SETLOGFONT","features":[84]},{"name":"WM_PSD_ENVSTAMPRECT","features":[84]},{"name":"WM_PSD_FULLPAGERECT","features":[84]},{"name":"WM_PSD_GREEKTEXTRECT","features":[84]},{"name":"WM_PSD_MARGINRECT","features":[84]},{"name":"WM_PSD_MINMARGINRECT","features":[84]},{"name":"WM_PSD_YAFULLPAGERECT","features":[84]}],"653":[{"name":"AdjustWindowRectExForDpi","features":[1,210,50]},{"name":"AreDpiAwarenessContextsEqual","features":[1,210]},{"name":"DCDC_DEFAULT","features":[210]},{"name":"DCDC_DISABLE_FONT_UPDATE","features":[210]},{"name":"DCDC_DISABLE_RELAYOUT","features":[210]},{"name":"DDC_DEFAULT","features":[210]},{"name":"DDC_DISABLE_ALL","features":[210]},{"name":"DDC_DISABLE_CONTROL_RELAYOUT","features":[210]},{"name":"DDC_DISABLE_RESIZE","features":[210]},{"name":"DIALOG_CONTROL_DPI_CHANGE_BEHAVIORS","features":[210]},{"name":"DIALOG_DPI_CHANGE_BEHAVIORS","features":[210]},{"name":"DPI_AWARENESS","features":[210]},{"name":"DPI_AWARENESS_CONTEXT","features":[210]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE","features":[210]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2","features":[210]},{"name":"DPI_AWARENESS_CONTEXT_SYSTEM_AWARE","features":[210]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE","features":[210]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE_GDISCALED","features":[210]},{"name":"DPI_AWARENESS_INVALID","features":[210]},{"name":"DPI_AWARENESS_PER_MONITOR_AWARE","features":[210]},{"name":"DPI_AWARENESS_SYSTEM_AWARE","features":[210]},{"name":"DPI_AWARENESS_UNAWARE","features":[210]},{"name":"DPI_HOSTING_BEHAVIOR","features":[210]},{"name":"DPI_HOSTING_BEHAVIOR_DEFAULT","features":[210]},{"name":"DPI_HOSTING_BEHAVIOR_INVALID","features":[210]},{"name":"DPI_HOSTING_BEHAVIOR_MIXED","features":[210]},{"name":"EnableNonClientDpiScaling","features":[1,210]},{"name":"GetAwarenessFromDpiAwarenessContext","features":[210]},{"name":"GetDialogControlDpiChangeBehavior","features":[1,210]},{"name":"GetDialogDpiChangeBehavior","features":[1,210]},{"name":"GetDpiAwarenessContextForProcess","features":[1,210]},{"name":"GetDpiForMonitor","features":[12,210]},{"name":"GetDpiForSystem","features":[210]},{"name":"GetDpiForWindow","features":[1,210]},{"name":"GetDpiFromDpiAwarenessContext","features":[210]},{"name":"GetProcessDpiAwareness","features":[1,210]},{"name":"GetSystemDpiForProcess","features":[1,210]},{"name":"GetSystemMetricsForDpi","features":[210,50]},{"name":"GetThreadDpiAwarenessContext","features":[210]},{"name":"GetThreadDpiHostingBehavior","features":[210]},{"name":"GetWindowDpiAwarenessContext","features":[1,210]},{"name":"GetWindowDpiHostingBehavior","features":[1,210]},{"name":"IsValidDpiAwarenessContext","features":[1,210]},{"name":"LogicalToPhysicalPointForPerMonitorDPI","features":[1,210]},{"name":"MDT_ANGULAR_DPI","features":[210]},{"name":"MDT_DEFAULT","features":[210]},{"name":"MDT_EFFECTIVE_DPI","features":[210]},{"name":"MDT_RAW_DPI","features":[210]},{"name":"MONITOR_DPI_TYPE","features":[210]},{"name":"OpenThemeDataForDpi","features":[1,40,210]},{"name":"PROCESS_DPI_AWARENESS","features":[210]},{"name":"PROCESS_DPI_UNAWARE","features":[210]},{"name":"PROCESS_PER_MONITOR_DPI_AWARE","features":[210]},{"name":"PROCESS_SYSTEM_DPI_AWARE","features":[210]},{"name":"PhysicalToLogicalPointForPerMonitorDPI","features":[1,210]},{"name":"SetDialogControlDpiChangeBehavior","features":[1,210]},{"name":"SetDialogDpiChangeBehavior","features":[1,210]},{"name":"SetProcessDpiAwareness","features":[210]},{"name":"SetProcessDpiAwarenessContext","features":[1,210]},{"name":"SetThreadDpiAwarenessContext","features":[210]},{"name":"SetThreadDpiHostingBehavior","features":[210]},{"name":"SystemParametersInfoForDpi","features":[1,210]}],"654":[{"name":"DefRawInputProc","features":[1,211]},{"name":"GetCIMSSM","features":[1,211]},{"name":"GetCurrentInputMessageSource","features":[1,211]},{"name":"GetRawInputBuffer","features":[1,211]},{"name":"GetRawInputData","features":[211]},{"name":"GetRawInputDeviceInfoA","features":[1,211]},{"name":"GetRawInputDeviceInfoW","features":[1,211]},{"name":"GetRawInputDeviceList","features":[1,211]},{"name":"GetRegisteredRawInputDevices","features":[1,211]},{"name":"HRAWINPUT","features":[211]},{"name":"IMDT_KEYBOARD","features":[211]},{"name":"IMDT_MOUSE","features":[211]},{"name":"IMDT_PEN","features":[211]},{"name":"IMDT_TOUCH","features":[211]},{"name":"IMDT_TOUCHPAD","features":[211]},{"name":"IMDT_UNAVAILABLE","features":[211]},{"name":"IMO_HARDWARE","features":[211]},{"name":"IMO_INJECTED","features":[211]},{"name":"IMO_SYSTEM","features":[211]},{"name":"IMO_UNAVAILABLE","features":[211]},{"name":"INPUT_MESSAGE_DEVICE_TYPE","features":[211]},{"name":"INPUT_MESSAGE_ORIGIN_ID","features":[211]},{"name":"INPUT_MESSAGE_SOURCE","features":[211]},{"name":"MOUSE_ATTRIBUTES_CHANGED","features":[211]},{"name":"MOUSE_MOVE_ABSOLUTE","features":[211]},{"name":"MOUSE_MOVE_NOCOALESCE","features":[211]},{"name":"MOUSE_MOVE_RELATIVE","features":[211]},{"name":"MOUSE_STATE","features":[211]},{"name":"MOUSE_VIRTUAL_DESKTOP","features":[211]},{"name":"RAWHID","features":[211]},{"name":"RAWINPUT","features":[1,211]},{"name":"RAWINPUTDEVICE","features":[1,211]},{"name":"RAWINPUTDEVICELIST","features":[1,211]},{"name":"RAWINPUTDEVICE_FLAGS","features":[211]},{"name":"RAWINPUTHEADER","features":[1,211]},{"name":"RAWKEYBOARD","features":[211]},{"name":"RAWMOUSE","features":[211]},{"name":"RAW_INPUT_DATA_COMMAND_FLAGS","features":[211]},{"name":"RAW_INPUT_DEVICE_INFO_COMMAND","features":[211]},{"name":"RIDEV_APPKEYS","features":[211]},{"name":"RIDEV_CAPTUREMOUSE","features":[211]},{"name":"RIDEV_DEVNOTIFY","features":[211]},{"name":"RIDEV_EXCLUDE","features":[211]},{"name":"RIDEV_EXINPUTSINK","features":[211]},{"name":"RIDEV_INPUTSINK","features":[211]},{"name":"RIDEV_NOHOTKEYS","features":[211]},{"name":"RIDEV_NOLEGACY","features":[211]},{"name":"RIDEV_PAGEONLY","features":[211]},{"name":"RIDEV_REMOVE","features":[211]},{"name":"RIDI_DEVICEINFO","features":[211]},{"name":"RIDI_DEVICENAME","features":[211]},{"name":"RIDI_PREPARSEDDATA","features":[211]},{"name":"RID_DEVICE_INFO","features":[1,211]},{"name":"RID_DEVICE_INFO_HID","features":[211]},{"name":"RID_DEVICE_INFO_KEYBOARD","features":[211]},{"name":"RID_DEVICE_INFO_MOUSE","features":[1,211]},{"name":"RID_DEVICE_INFO_TYPE","features":[211]},{"name":"RID_HEADER","features":[211]},{"name":"RID_INPUT","features":[211]},{"name":"RIM_TYPEHID","features":[211]},{"name":"RIM_TYPEKEYBOARD","features":[211]},{"name":"RIM_TYPEMOUSE","features":[211]},{"name":"RegisterRawInputDevices","features":[1,211]}],"655":[{"name":"APPLETIDLIST","features":[212]},{"name":"APPLYCANDEXPARAM","features":[212]},{"name":"ATTR_CONVERTED","features":[212]},{"name":"ATTR_FIXEDCONVERTED","features":[212]},{"name":"ATTR_INPUT","features":[212]},{"name":"ATTR_INPUT_ERROR","features":[212]},{"name":"ATTR_TARGET_CONVERTED","features":[212]},{"name":"ATTR_TARGET_NOTCONVERTED","features":[212]},{"name":"CANDIDATEFORM","features":[1,212]},{"name":"CANDIDATEINFO","features":[212]},{"name":"CANDIDATELIST","features":[212]},{"name":"CATID_MSIME_IImePadApplet","features":[212]},{"name":"CATID_MSIME_IImePadApplet1000","features":[212]},{"name":"CATID_MSIME_IImePadApplet1200","features":[212]},{"name":"CATID_MSIME_IImePadApplet900","features":[212]},{"name":"CATID_MSIME_IImePadApplet_VER7","features":[212]},{"name":"CATID_MSIME_IImePadApplet_VER80","features":[212]},{"name":"CATID_MSIME_IImePadApplet_VER81","features":[212]},{"name":"CActiveIMM","features":[212]},{"name":"CFS_CANDIDATEPOS","features":[212]},{"name":"CFS_DEFAULT","features":[212]},{"name":"CFS_EXCLUDE","features":[212]},{"name":"CFS_FORCE_POSITION","features":[212]},{"name":"CFS_POINT","features":[212]},{"name":"CFS_RECT","features":[212]},{"name":"CHARINFO_APPLETID_MASK","features":[212]},{"name":"CHARINFO_CHARID_MASK","features":[212]},{"name":"CHARINFO_FEID_MASK","features":[212]},{"name":"CLSID_ImePlugInDictDictionaryList_CHS","features":[212]},{"name":"CLSID_ImePlugInDictDictionaryList_JPN","features":[212]},{"name":"CLSID_VERSION_DEPENDENT_MSIME_JAPANESE","features":[212]},{"name":"COMPOSITIONFORM","features":[1,212]},{"name":"COMPOSITIONSTRING","features":[212]},{"name":"CPS_CANCEL","features":[212]},{"name":"CPS_COMPLETE","features":[212]},{"name":"CPS_CONVERT","features":[212]},{"name":"CPS_REVERT","features":[212]},{"name":"CS_INSERTCHAR","features":[212]},{"name":"CS_NOMOVECARET","features":[212]},{"name":"E_LARGEINPUT","features":[212]},{"name":"E_NOCAND","features":[212]},{"name":"E_NOTENOUGH_BUFFER","features":[212]},{"name":"E_NOTENOUGH_WDD","features":[212]},{"name":"FEID_CHINESE_HONGKONG","features":[212]},{"name":"FEID_CHINESE_SIMPLIFIED","features":[212]},{"name":"FEID_CHINESE_SINGAPORE","features":[212]},{"name":"FEID_CHINESE_TRADITIONAL","features":[212]},{"name":"FEID_JAPANESE","features":[212]},{"name":"FEID_KOREAN","features":[212]},{"name":"FEID_KOREAN_JOHAB","features":[212]},{"name":"FEID_NONE","features":[212]},{"name":"FELANG_CLMN_FIXD","features":[212]},{"name":"FELANG_CLMN_FIXR","features":[212]},{"name":"FELANG_CLMN_NOPBREAK","features":[212]},{"name":"FELANG_CLMN_NOWBREAK","features":[212]},{"name":"FELANG_CLMN_PBREAK","features":[212]},{"name":"FELANG_CLMN_WBREAK","features":[212]},{"name":"FELANG_CMODE_AUTOMATIC","features":[212]},{"name":"FELANG_CMODE_BESTFIRST","features":[212]},{"name":"FELANG_CMODE_BOPOMOFO","features":[212]},{"name":"FELANG_CMODE_CONVERSATION","features":[212]},{"name":"FELANG_CMODE_FULLWIDTHOUT","features":[212]},{"name":"FELANG_CMODE_HALFWIDTHOUT","features":[212]},{"name":"FELANG_CMODE_HANGUL","features":[212]},{"name":"FELANG_CMODE_HIRAGANAOUT","features":[212]},{"name":"FELANG_CMODE_KATAKANAOUT","features":[212]},{"name":"FELANG_CMODE_MERGECAND","features":[212]},{"name":"FELANG_CMODE_MONORUBY","features":[212]},{"name":"FELANG_CMODE_NAME","features":[212]},{"name":"FELANG_CMODE_NOINVISIBLECHAR","features":[212]},{"name":"FELANG_CMODE_NONE","features":[212]},{"name":"FELANG_CMODE_NOPRUNING","features":[212]},{"name":"FELANG_CMODE_PHRASEPREDICT","features":[212]},{"name":"FELANG_CMODE_PINYIN","features":[212]},{"name":"FELANG_CMODE_PLAURALCLAUSE","features":[212]},{"name":"FELANG_CMODE_PRECONV","features":[212]},{"name":"FELANG_CMODE_RADICAL","features":[212]},{"name":"FELANG_CMODE_ROMAN","features":[212]},{"name":"FELANG_CMODE_SINGLECONVERT","features":[212]},{"name":"FELANG_CMODE_UNKNOWNREADING","features":[212]},{"name":"FELANG_CMODE_USENOREVWORDS","features":[212]},{"name":"FELANG_INVALD_PO","features":[212]},{"name":"FELANG_REQ_CONV","features":[212]},{"name":"FELANG_REQ_RECONV","features":[212]},{"name":"FELANG_REQ_REV","features":[212]},{"name":"FID_MSIME_KMS_DEL_KEYLIST","features":[212]},{"name":"FID_MSIME_KMS_FUNCDESC","features":[212]},{"name":"FID_MSIME_KMS_GETMAP","features":[212]},{"name":"FID_MSIME_KMS_GETMAPFAST","features":[212]},{"name":"FID_MSIME_KMS_GETMAPSEAMLESS","features":[212]},{"name":"FID_MSIME_KMS_INIT","features":[212]},{"name":"FID_MSIME_KMS_INVOKE","features":[212]},{"name":"FID_MSIME_KMS_NOTIFY","features":[212]},{"name":"FID_MSIME_KMS_SETMAP","features":[212]},{"name":"FID_MSIME_KMS_TERM","features":[212]},{"name":"FID_MSIME_KMS_VERSION","features":[212]},{"name":"FID_MSIME_VERSION","features":[212]},{"name":"FID_RECONVERT_VERSION","features":[212]},{"name":"GCL_CONVERSION","features":[212]},{"name":"GCL_REVERSECONVERSION","features":[212]},{"name":"GCL_REVERSE_LENGTH","features":[212]},{"name":"GCSEX_CANCELRECONVERT","features":[212]},{"name":"GCS_COMPATTR","features":[212]},{"name":"GCS_COMPCLAUSE","features":[212]},{"name":"GCS_COMPREADATTR","features":[212]},{"name":"GCS_COMPREADCLAUSE","features":[212]},{"name":"GCS_COMPREADSTR","features":[212]},{"name":"GCS_COMPSTR","features":[212]},{"name":"GCS_CURSORPOS","features":[212]},{"name":"GCS_DELTASTART","features":[212]},{"name":"GCS_RESULTCLAUSE","features":[212]},{"name":"GCS_RESULTREADCLAUSE","features":[212]},{"name":"GCS_RESULTREADSTR","features":[212]},{"name":"GCS_RESULTSTR","features":[212]},{"name":"GET_CONVERSION_LIST_FLAG","features":[212]},{"name":"GET_GUIDE_LINE_TYPE","features":[212]},{"name":"GGL_INDEX","features":[212]},{"name":"GGL_LEVEL","features":[212]},{"name":"GGL_PRIVATE","features":[212]},{"name":"GGL_STRING","features":[212]},{"name":"GL_ID_CANNOTSAVE","features":[212]},{"name":"GL_ID_CHOOSECANDIDATE","features":[212]},{"name":"GL_ID_INPUTCODE","features":[212]},{"name":"GL_ID_INPUTRADICAL","features":[212]},{"name":"GL_ID_INPUTREADING","features":[212]},{"name":"GL_ID_INPUTSYMBOL","features":[212]},{"name":"GL_ID_NOCONVERT","features":[212]},{"name":"GL_ID_NODICTIONARY","features":[212]},{"name":"GL_ID_NOMODULE","features":[212]},{"name":"GL_ID_PRIVATE_FIRST","features":[212]},{"name":"GL_ID_PRIVATE_LAST","features":[212]},{"name":"GL_ID_READINGCONFLICT","features":[212]},{"name":"GL_ID_REVERSECONVERSION","features":[212]},{"name":"GL_ID_TOOMANYSTROKE","features":[212]},{"name":"GL_ID_TYPINGERROR","features":[212]},{"name":"GL_ID_UNKNOWN","features":[212]},{"name":"GL_LEVEL_ERROR","features":[212]},{"name":"GL_LEVEL_FATAL","features":[212]},{"name":"GL_LEVEL_INFORMATION","features":[212]},{"name":"GL_LEVEL_NOGUIDELINE","features":[212]},{"name":"GL_LEVEL_WARNING","features":[212]},{"name":"GUIDELINE","features":[212]},{"name":"IACE_CHILDREN","features":[212]},{"name":"IACE_DEFAULT","features":[212]},{"name":"IACE_IGNORENOCONTEXT","features":[212]},{"name":"IActiveIME","features":[212]},{"name":"IActiveIME2","features":[212]},{"name":"IActiveIMMApp","features":[212]},{"name":"IActiveIMMIME","features":[212]},{"name":"IActiveIMMMessagePumpOwner","features":[212]},{"name":"IActiveIMMRegistrar","features":[212]},{"name":"IEnumInputContext","features":[212]},{"name":"IEnumRegisterWordA","features":[212]},{"name":"IEnumRegisterWordW","features":[212]},{"name":"IFEC_S_ALREADY_DEFAULT","features":[212]},{"name":"IFEClassFactory","features":[212]},{"name":"IFECommon","features":[212]},{"name":"IFED_ACTIVE_DICT","features":[212]},{"name":"IFED_ATOK10","features":[212]},{"name":"IFED_ATOK9","features":[212]},{"name":"IFED_E_INVALID_FORMAT","features":[212]},{"name":"IFED_E_NOT_FOUND","features":[212]},{"name":"IFED_E_NOT_SUPPORTED","features":[212]},{"name":"IFED_E_NOT_USER_DIC","features":[212]},{"name":"IFED_E_NO_ENTRY","features":[212]},{"name":"IFED_E_OPEN_FAILED","features":[212]},{"name":"IFED_E_REGISTER_DISCONNECTED","features":[212]},{"name":"IFED_E_REGISTER_FAILED","features":[212]},{"name":"IFED_E_REGISTER_ILLEGAL_POS","features":[212]},{"name":"IFED_E_REGISTER_IMPROPER_WORD","features":[212]},{"name":"IFED_E_USER_COMMENT","features":[212]},{"name":"IFED_E_WRITE_FAILED","features":[212]},{"name":"IFED_MSIME2_BIN_SYSTEM","features":[212]},{"name":"IFED_MSIME2_BIN_USER","features":[212]},{"name":"IFED_MSIME2_TEXT_USER","features":[212]},{"name":"IFED_MSIME95_BIN_SYSTEM","features":[212]},{"name":"IFED_MSIME95_BIN_USER","features":[212]},{"name":"IFED_MSIME95_TEXT_USER","features":[212]},{"name":"IFED_MSIME97_BIN_SYSTEM","features":[212]},{"name":"IFED_MSIME97_BIN_USER","features":[212]},{"name":"IFED_MSIME97_TEXT_USER","features":[212]},{"name":"IFED_MSIME98_BIN_SYSTEM","features":[212]},{"name":"IFED_MSIME98_BIN_USER","features":[212]},{"name":"IFED_MSIME98_SYSTEM_CE","features":[212]},{"name":"IFED_MSIME98_TEXT_USER","features":[212]},{"name":"IFED_MSIME_BIN_SYSTEM","features":[212]},{"name":"IFED_MSIME_BIN_USER","features":[212]},{"name":"IFED_MSIME_TEXT_USER","features":[212]},{"name":"IFED_NEC_AI_","features":[212]},{"name":"IFED_PIME2_BIN_STANDARD_SYSTEM","features":[212]},{"name":"IFED_PIME2_BIN_SYSTEM","features":[212]},{"name":"IFED_PIME2_BIN_USER","features":[212]},{"name":"IFED_POS_ADJECTIVE","features":[212]},{"name":"IFED_POS_ADJECTIVE_VERB","features":[212]},{"name":"IFED_POS_ADNOUN","features":[212]},{"name":"IFED_POS_ADVERB","features":[212]},{"name":"IFED_POS_AFFIX","features":[212]},{"name":"IFED_POS_ALL","features":[212]},{"name":"IFED_POS_AUXILIARY_VERB","features":[212]},{"name":"IFED_POS_CONJUNCTION","features":[212]},{"name":"IFED_POS_DEPENDENT","features":[212]},{"name":"IFED_POS_IDIOMS","features":[212]},{"name":"IFED_POS_INDEPENDENT","features":[212]},{"name":"IFED_POS_INFLECTIONALSUFFIX","features":[212]},{"name":"IFED_POS_INTERJECTION","features":[212]},{"name":"IFED_POS_NONE","features":[212]},{"name":"IFED_POS_NOUN","features":[212]},{"name":"IFED_POS_PARTICLE","features":[212]},{"name":"IFED_POS_PREFIX","features":[212]},{"name":"IFED_POS_SUB_VERB","features":[212]},{"name":"IFED_POS_SUFFIX","features":[212]},{"name":"IFED_POS_SYMBOLS","features":[212]},{"name":"IFED_POS_TANKANJI","features":[212]},{"name":"IFED_POS_VERB","features":[212]},{"name":"IFED_REG_ALL","features":[212]},{"name":"IFED_REG_AUTO","features":[212]},{"name":"IFED_REG_DEL","features":[212]},{"name":"IFED_REG_GRAMMAR","features":[212]},{"name":"IFED_REG_HEAD","features":[212]},{"name":"IFED_REG_NONE","features":[212]},{"name":"IFED_REG_TAIL","features":[212]},{"name":"IFED_REG_USER","features":[212]},{"name":"IFED_REL_ALL","features":[212]},{"name":"IFED_REL_DE","features":[212]},{"name":"IFED_REL_FUKU_YOUGEN","features":[212]},{"name":"IFED_REL_GA","features":[212]},{"name":"IFED_REL_HE","features":[212]},{"name":"IFED_REL_IDEOM","features":[212]},{"name":"IFED_REL_KARA","features":[212]},{"name":"IFED_REL_KEIDOU1_YOUGEN","features":[212]},{"name":"IFED_REL_KEIDOU2_YOUGEN","features":[212]},{"name":"IFED_REL_KEIYOU_TARU_YOUGEN","features":[212]},{"name":"IFED_REL_KEIYOU_TO_YOUGEN","features":[212]},{"name":"IFED_REL_KEIYOU_YOUGEN","features":[212]},{"name":"IFED_REL_MADE","features":[212]},{"name":"IFED_REL_NI","features":[212]},{"name":"IFED_REL_NO","features":[212]},{"name":"IFED_REL_NONE","features":[212]},{"name":"IFED_REL_RENSOU","features":[212]},{"name":"IFED_REL_RENTAI_MEI","features":[212]},{"name":"IFED_REL_TAIGEN","features":[212]},{"name":"IFED_REL_TO","features":[212]},{"name":"IFED_REL_UNKNOWN1","features":[212]},{"name":"IFED_REL_UNKNOWN2","features":[212]},{"name":"IFED_REL_WO","features":[212]},{"name":"IFED_REL_YORI","features":[212]},{"name":"IFED_REL_YOUGEN","features":[212]},{"name":"IFED_SELECT_ALL","features":[212]},{"name":"IFED_SELECT_COMMENT","features":[212]},{"name":"IFED_SELECT_DISPLAY","features":[212]},{"name":"IFED_SELECT_NONE","features":[212]},{"name":"IFED_SELECT_POS","features":[212]},{"name":"IFED_SELECT_READING","features":[212]},{"name":"IFED_S_COMMENT_CHANGED","features":[212]},{"name":"IFED_S_EMPTY_DICTIONARY","features":[212]},{"name":"IFED_S_MORE_ENTRIES","features":[212]},{"name":"IFED_S_WORD_EXISTS","features":[212]},{"name":"IFED_TYPE_ALL","features":[212]},{"name":"IFED_TYPE_ENGLISH","features":[212]},{"name":"IFED_TYPE_GENERAL","features":[212]},{"name":"IFED_TYPE_NAMEPLACE","features":[212]},{"name":"IFED_TYPE_NONE","features":[212]},{"name":"IFED_TYPE_REVERSE","features":[212]},{"name":"IFED_TYPE_SPEECH","features":[212]},{"name":"IFED_UCT_MAX","features":[212]},{"name":"IFED_UCT_NONE","features":[212]},{"name":"IFED_UCT_STRING_SJIS","features":[212]},{"name":"IFED_UCT_STRING_UNICODE","features":[212]},{"name":"IFED_UCT_USER_DEFINED","features":[212]},{"name":"IFED_UNKNOWN","features":[212]},{"name":"IFED_VJE_20","features":[212]},{"name":"IFED_WX_II","features":[212]},{"name":"IFED_WX_III","features":[212]},{"name":"IFEDictionary","features":[212]},{"name":"IFELanguage","features":[212]},{"name":"IGIMIF_RIGHTMENU","features":[212]},{"name":"IGIMII_CMODE","features":[212]},{"name":"IGIMII_CONFIGURE","features":[212]},{"name":"IGIMII_HELP","features":[212]},{"name":"IGIMII_INPUTTOOLS","features":[212]},{"name":"IGIMII_OTHER","features":[212]},{"name":"IGIMII_SMODE","features":[212]},{"name":"IGIMII_TOOLS","features":[212]},{"name":"IImePad","features":[212]},{"name":"IImePadApplet","features":[212]},{"name":"IImePlugInDictDictionaryList","features":[212]},{"name":"IImeSpecifyApplets","features":[212]},{"name":"IMCENUMPROC","features":[1,70,212]},{"name":"IMC_CLOSESTATUSWINDOW","features":[212]},{"name":"IMC_GETCANDIDATEPOS","features":[212]},{"name":"IMC_GETCOMPOSITIONFONT","features":[212]},{"name":"IMC_GETCOMPOSITIONWINDOW","features":[212]},{"name":"IMC_GETSOFTKBDFONT","features":[212]},{"name":"IMC_GETSOFTKBDPOS","features":[212]},{"name":"IMC_GETSOFTKBDSUBTYPE","features":[212]},{"name":"IMC_GETSTATUSWINDOWPOS","features":[212]},{"name":"IMC_OPENSTATUSWINDOW","features":[212]},{"name":"IMC_SETCANDIDATEPOS","features":[212]},{"name":"IMC_SETCOMPOSITIONFONT","features":[212]},{"name":"IMC_SETCOMPOSITIONWINDOW","features":[212]},{"name":"IMC_SETCONVERSIONMODE","features":[212]},{"name":"IMC_SETOPENSTATUS","features":[212]},{"name":"IMC_SETSENTENCEMODE","features":[212]},{"name":"IMC_SETSOFTKBDDATA","features":[212]},{"name":"IMC_SETSOFTKBDFONT","features":[212]},{"name":"IMC_SETSOFTKBDPOS","features":[212]},{"name":"IMC_SETSOFTKBDSUBTYPE","features":[212]},{"name":"IMC_SETSTATUSWINDOWPOS","features":[212]},{"name":"IMEAPPLETCFG","features":[1,212,50]},{"name":"IMEAPPLETUI","features":[1,212]},{"name":"IMECHARINFO","features":[212]},{"name":"IMECHARPOSITION","features":[1,212]},{"name":"IMECOMPOSITIONSTRINGINFO","features":[212]},{"name":"IMEDLG","features":[1,212]},{"name":"IMEDP","features":[212]},{"name":"IMEFAREASTINFO","features":[212]},{"name":"IMEFAREASTINFO_TYPE_COMMENT","features":[212]},{"name":"IMEFAREASTINFO_TYPE_COSTTIME","features":[212]},{"name":"IMEFAREASTINFO_TYPE_DEFAULT","features":[212]},{"name":"IMEFAREASTINFO_TYPE_READING","features":[212]},{"name":"IMEFMT","features":[212]},{"name":"IMEINFO","features":[212]},{"name":"IMEITEM","features":[212]},{"name":"IMEITEMCANDIDATE","features":[212]},{"name":"IMEKEYCTRLMASK_ALT","features":[212]},{"name":"IMEKEYCTRLMASK_CTRL","features":[212]},{"name":"IMEKEYCTRLMASK_SHIFT","features":[212]},{"name":"IMEKEYCTRL_DOWN","features":[212]},{"name":"IMEKEYCTRL_UP","features":[212]},{"name":"IMEKMS","features":[70,212]},{"name":"IMEKMSFUNCDESC","features":[212]},{"name":"IMEKMSINIT","features":[1,212]},{"name":"IMEKMSINVK","features":[70,212]},{"name":"IMEKMSKEY","features":[212]},{"name":"IMEKMSKMP","features":[70,212]},{"name":"IMEKMSNTFY","features":[1,70,212]},{"name":"IMEKMS_2NDLEVEL","features":[212]},{"name":"IMEKMS_CANDIDATE","features":[212]},{"name":"IMEKMS_COMPOSITION","features":[212]},{"name":"IMEKMS_IMEOFF","features":[212]},{"name":"IMEKMS_INPTGL","features":[212]},{"name":"IMEKMS_NOCOMPOSITION","features":[212]},{"name":"IMEKMS_SELECTION","features":[212]},{"name":"IMEKMS_TYPECAND","features":[212]},{"name":"IMEMENUITEMINFOA","features":[12,212]},{"name":"IMEMENUITEMINFOW","features":[12,212]},{"name":"IMEMENUITEM_STRING_SIZE","features":[212]},{"name":"IMEMOUSERET_NOTHANDLED","features":[212]},{"name":"IMEMOUSE_LDOWN","features":[212]},{"name":"IMEMOUSE_MDOWN","features":[212]},{"name":"IMEMOUSE_NONE","features":[212]},{"name":"IMEMOUSE_RDOWN","features":[212]},{"name":"IMEMOUSE_VERSION","features":[212]},{"name":"IMEMOUSE_WDOWN","features":[212]},{"name":"IMEMOUSE_WUP","features":[212]},{"name":"IMEPADCTRL_CARETBACKSPACE","features":[212]},{"name":"IMEPADCTRL_CARETBOTTOM","features":[212]},{"name":"IMEPADCTRL_CARETDELETE","features":[212]},{"name":"IMEPADCTRL_CARETLEFT","features":[212]},{"name":"IMEPADCTRL_CARETRIGHT","features":[212]},{"name":"IMEPADCTRL_CARETSET","features":[212]},{"name":"IMEPADCTRL_CARETTOP","features":[212]},{"name":"IMEPADCTRL_CLEARALL","features":[212]},{"name":"IMEPADCTRL_CONVERTALL","features":[212]},{"name":"IMEPADCTRL_DETERMINALL","features":[212]},{"name":"IMEPADCTRL_DETERMINCHAR","features":[212]},{"name":"IMEPADCTRL_INSERTFULLSPACE","features":[212]},{"name":"IMEPADCTRL_INSERTHALFSPACE","features":[212]},{"name":"IMEPADCTRL_INSERTSPACE","features":[212]},{"name":"IMEPADCTRL_OFFIME","features":[212]},{"name":"IMEPADCTRL_OFFPRECONVERSION","features":[212]},{"name":"IMEPADCTRL_ONIME","features":[212]},{"name":"IMEPADCTRL_ONPRECONVERSION","features":[212]},{"name":"IMEPADCTRL_PHONETICCANDIDATE","features":[212]},{"name":"IMEPADCTRL_PHRASEDELETE","features":[212]},{"name":"IMEPADREQ_CHANGESTRING","features":[212]},{"name":"IMEPADREQ_CHANGESTRINGCANDIDATEINFO","features":[212]},{"name":"IMEPADREQ_CHANGESTRINGINFO","features":[212]},{"name":"IMEPADREQ_DELETESTRING","features":[212]},{"name":"IMEPADREQ_FIRST","features":[212]},{"name":"IMEPADREQ_FORCEIMEPADWINDOWSHOW","features":[212]},{"name":"IMEPADREQ_GETAPPLETDATA","features":[212]},{"name":"IMEPADREQ_GETAPPLETUISTYLE","features":[212]},{"name":"IMEPADREQ_GETAPPLHWND","features":[212]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRING","features":[212]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGID","features":[212]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGINFO","features":[212]},{"name":"IMEPADREQ_GETCONVERSIONSTATUS","features":[212]},{"name":"IMEPADREQ_GETCURRENTIMEINFO","features":[212]},{"name":"IMEPADREQ_GETCURRENTUILANGID","features":[212]},{"name":"IMEPADREQ_GETDEFAULTUILANGID","features":[212]},{"name":"IMEPADREQ_GETSELECTEDSTRING","features":[212]},{"name":"IMEPADREQ_GETVERSION","features":[212]},{"name":"IMEPADREQ_INSERTITEMCANDIDATE","features":[212]},{"name":"IMEPADREQ_INSERTSTRING","features":[212]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATE","features":[212]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATEINFO","features":[212]},{"name":"IMEPADREQ_INSERTSTRINGINFO","features":[212]},{"name":"IMEPADREQ_ISAPPLETACTIVE","features":[212]},{"name":"IMEPADREQ_ISIMEPADWINDOWVISIBLE","features":[212]},{"name":"IMEPADREQ_POSTMODALNOTIFY","features":[212]},{"name":"IMEPADREQ_SENDCONTROL","features":[212]},{"name":"IMEPADREQ_SENDKEYCONTROL","features":[212]},{"name":"IMEPADREQ_SETAPPLETDATA","features":[212]},{"name":"IMEPADREQ_SETAPPLETMINMAXSIZE","features":[212]},{"name":"IMEPADREQ_SETAPPLETSIZE","features":[212]},{"name":"IMEPADREQ_SETAPPLETUISTYLE","features":[212]},{"name":"IMEPADREQ_SETTITLEFONT","features":[212]},{"name":"IMEPN_ACTIVATE","features":[212]},{"name":"IMEPN_APPLYCAND","features":[212]},{"name":"IMEPN_APPLYCANDEX","features":[212]},{"name":"IMEPN_CONFIG","features":[212]},{"name":"IMEPN_FIRST","features":[212]},{"name":"IMEPN_HELP","features":[212]},{"name":"IMEPN_HIDE","features":[212]},{"name":"IMEPN_INACTIVATE","features":[212]},{"name":"IMEPN_QUERYCAND","features":[212]},{"name":"IMEPN_SETTINGCHANGED","features":[212]},{"name":"IMEPN_SHOW","features":[212]},{"name":"IMEPN_SIZECHANGED","features":[212]},{"name":"IMEPN_SIZECHANGING","features":[212]},{"name":"IMEPN_USER","features":[212]},{"name":"IMEREG","features":[212]},{"name":"IMEREL","features":[212]},{"name":"IMESHF","features":[212]},{"name":"IMESTRINGCANDIDATE","features":[212]},{"name":"IMESTRINGCANDIDATEINFO","features":[212]},{"name":"IMESTRINGINFO","features":[212]},{"name":"IMEUCT","features":[212]},{"name":"IMEVER_0310","features":[212]},{"name":"IMEVER_0400","features":[212]},{"name":"IMEWRD","features":[212]},{"name":"IME_CAND_CODE","features":[212]},{"name":"IME_CAND_MEANING","features":[212]},{"name":"IME_CAND_RADICAL","features":[212]},{"name":"IME_CAND_READ","features":[212]},{"name":"IME_CAND_STROKE","features":[212]},{"name":"IME_CAND_UNKNOWN","features":[212]},{"name":"IME_CHOTKEY_IME_NONIME_TOGGLE","features":[212]},{"name":"IME_CHOTKEY_SHAPE_TOGGLE","features":[212]},{"name":"IME_CHOTKEY_SYMBOL_TOGGLE","features":[212]},{"name":"IME_CMODE_ALPHANUMERIC","features":[212]},{"name":"IME_CMODE_CHARCODE","features":[212]},{"name":"IME_CMODE_CHINESE","features":[212]},{"name":"IME_CMODE_EUDC","features":[212]},{"name":"IME_CMODE_FIXED","features":[212]},{"name":"IME_CMODE_FULLSHAPE","features":[212]},{"name":"IME_CMODE_HANGEUL","features":[212]},{"name":"IME_CMODE_HANGUL","features":[212]},{"name":"IME_CMODE_HANJACONVERT","features":[212]},{"name":"IME_CMODE_JAPANESE","features":[212]},{"name":"IME_CMODE_KATAKANA","features":[212]},{"name":"IME_CMODE_LANGUAGE","features":[212]},{"name":"IME_CMODE_NATIVE","features":[212]},{"name":"IME_CMODE_NATIVESYMBOL","features":[212]},{"name":"IME_CMODE_NOCONVERSION","features":[212]},{"name":"IME_CMODE_RESERVED","features":[212]},{"name":"IME_CMODE_ROMAN","features":[212]},{"name":"IME_CMODE_SOFTKBD","features":[212]},{"name":"IME_CMODE_SYMBOL","features":[212]},{"name":"IME_COMPOSITION_STRING","features":[212]},{"name":"IME_CONFIG_GENERAL","features":[212]},{"name":"IME_CONFIG_REGISTERWORD","features":[212]},{"name":"IME_CONFIG_SELECTDICTIONARY","features":[212]},{"name":"IME_CONVERSION_MODE","features":[212]},{"name":"IME_ESCAPE","features":[212]},{"name":"IME_ESC_AUTOMATA","features":[212]},{"name":"IME_ESC_GETHELPFILENAME","features":[212]},{"name":"IME_ESC_GET_EUDC_DICTIONARY","features":[212]},{"name":"IME_ESC_HANJA_MODE","features":[212]},{"name":"IME_ESC_IME_NAME","features":[212]},{"name":"IME_ESC_MAX_KEY","features":[212]},{"name":"IME_ESC_PRIVATE_FIRST","features":[212]},{"name":"IME_ESC_PRIVATE_HOTKEY","features":[212]},{"name":"IME_ESC_PRIVATE_LAST","features":[212]},{"name":"IME_ESC_QUERY_SUPPORT","features":[212]},{"name":"IME_ESC_RESERVED_FIRST","features":[212]},{"name":"IME_ESC_RESERVED_LAST","features":[212]},{"name":"IME_ESC_SEQUENCE_TO_INTERNAL","features":[212]},{"name":"IME_ESC_SET_EUDC_DICTIONARY","features":[212]},{"name":"IME_ESC_STRING_BUFFER_SIZE","features":[212]},{"name":"IME_ESC_SYNC_HOTKEY","features":[212]},{"name":"IME_HOTKEY_DSWITCH_FIRST","features":[212]},{"name":"IME_HOTKEY_DSWITCH_LAST","features":[212]},{"name":"IME_HOTKEY_IDENTIFIER","features":[212]},{"name":"IME_HOTKEY_PRIVATE_FIRST","features":[212]},{"name":"IME_HOTKEY_PRIVATE_LAST","features":[212]},{"name":"IME_ITHOTKEY_PREVIOUS_COMPOSITION","features":[212]},{"name":"IME_ITHOTKEY_RECONVERTSTRING","features":[212]},{"name":"IME_ITHOTKEY_RESEND_RESULTSTR","features":[212]},{"name":"IME_ITHOTKEY_UISTYLE_TOGGLE","features":[212]},{"name":"IME_JHOTKEY_CLOSE_OPEN","features":[212]},{"name":"IME_KHOTKEY_ENGLISH","features":[212]},{"name":"IME_KHOTKEY_HANJACONVERT","features":[212]},{"name":"IME_KHOTKEY_SHAPE_TOGGLE","features":[212]},{"name":"IME_PAD_REQUEST_FLAGS","features":[212]},{"name":"IME_PROP_ACCEPT_WIDE_VKEY","features":[212]},{"name":"IME_PROP_AT_CARET","features":[212]},{"name":"IME_PROP_CANDLIST_START_FROM_1","features":[212]},{"name":"IME_PROP_COMPLETE_ON_UNSELECT","features":[212]},{"name":"IME_PROP_END_UNLOAD","features":[212]},{"name":"IME_PROP_IGNORE_UPKEYS","features":[212]},{"name":"IME_PROP_KBD_CHAR_FIRST","features":[212]},{"name":"IME_PROP_NEED_ALTKEY","features":[212]},{"name":"IME_PROP_NO_KEYS_ON_CLOSE","features":[212]},{"name":"IME_PROP_SPECIAL_UI","features":[212]},{"name":"IME_PROP_UNICODE","features":[212]},{"name":"IME_REGWORD_STYLE_EUDC","features":[212]},{"name":"IME_REGWORD_STYLE_USER_FIRST","features":[212]},{"name":"IME_REGWORD_STYLE_USER_LAST","features":[212]},{"name":"IME_SENTENCE_MODE","features":[212]},{"name":"IME_SMODE_AUTOMATIC","features":[212]},{"name":"IME_SMODE_CONVERSATION","features":[212]},{"name":"IME_SMODE_NONE","features":[212]},{"name":"IME_SMODE_PHRASEPREDICT","features":[212]},{"name":"IME_SMODE_PLAURALCLAUSE","features":[212]},{"name":"IME_SMODE_RESERVED","features":[212]},{"name":"IME_SMODE_SINGLECONVERT","features":[212]},{"name":"IME_SYSINFO_WINLOGON","features":[212]},{"name":"IME_THOTKEY_IME_NONIME_TOGGLE","features":[212]},{"name":"IME_THOTKEY_SHAPE_TOGGLE","features":[212]},{"name":"IME_THOTKEY_SYMBOL_TOGGLE","features":[212]},{"name":"IME_UI_CLASS_NAME_SIZE","features":[212]},{"name":"IMFT_RADIOCHECK","features":[212]},{"name":"IMFT_SEPARATOR","features":[212]},{"name":"IMFT_SUBMENU","features":[212]},{"name":"IMMGWLP_IMC","features":[212]},{"name":"IMMGWL_IMC","features":[212]},{"name":"IMM_ERROR_GENERAL","features":[212]},{"name":"IMM_ERROR_NODATA","features":[212]},{"name":"IMN_CHANGECANDIDATE","features":[212]},{"name":"IMN_CLOSECANDIDATE","features":[212]},{"name":"IMN_CLOSESTATUSWINDOW","features":[212]},{"name":"IMN_GUIDELINE","features":[212]},{"name":"IMN_OPENCANDIDATE","features":[212]},{"name":"IMN_OPENSTATUSWINDOW","features":[212]},{"name":"IMN_PRIVATE","features":[212]},{"name":"IMN_SETCANDIDATEPOS","features":[212]},{"name":"IMN_SETCOMPOSITIONFONT","features":[212]},{"name":"IMN_SETCOMPOSITIONWINDOW","features":[212]},{"name":"IMN_SETCONVERSIONMODE","features":[212]},{"name":"IMN_SETOPENSTATUS","features":[212]},{"name":"IMN_SETSENTENCEMODE","features":[212]},{"name":"IMN_SETSTATUSWINDOWPOS","features":[212]},{"name":"IMN_SOFTKBDDESTROYED","features":[212]},{"name":"IMR_CANDIDATEWINDOW","features":[212]},{"name":"IMR_COMPOSITIONFONT","features":[212]},{"name":"IMR_COMPOSITIONWINDOW","features":[212]},{"name":"IMR_CONFIRMRECONVERTSTRING","features":[212]},{"name":"IMR_DOCUMENTFEED","features":[212]},{"name":"IMR_QUERYCHARPOSITION","features":[212]},{"name":"IMR_RECONVERTSTRING","features":[212]},{"name":"INFOMASK_APPLY_CAND","features":[212]},{"name":"INFOMASK_APPLY_CAND_EX","features":[212]},{"name":"INFOMASK_BLOCK_CAND","features":[212]},{"name":"INFOMASK_HIDE_CAND","features":[212]},{"name":"INFOMASK_NONE","features":[212]},{"name":"INFOMASK_QUERY_CAND","features":[212]},{"name":"INFOMASK_STRING_FIX","features":[212]},{"name":"INIT_COMPFORM","features":[212]},{"name":"INIT_CONVERSION","features":[212]},{"name":"INIT_LOGFONT","features":[212]},{"name":"INIT_SENTENCE","features":[212]},{"name":"INIT_SOFTKBDPOS","features":[212]},{"name":"INIT_STATUSWNDPOS","features":[212]},{"name":"INPUTCONTEXT","features":[1,70,12,212]},{"name":"IPACFG_CATEGORY","features":[212]},{"name":"IPACFG_HELP","features":[212]},{"name":"IPACFG_LANG","features":[212]},{"name":"IPACFG_NONE","features":[212]},{"name":"IPACFG_PROPERTY","features":[212]},{"name":"IPACFG_TITLE","features":[212]},{"name":"IPACFG_TITLEFONTFACE","features":[212]},{"name":"IPACID_CHARLIST","features":[212]},{"name":"IPACID_EPWING","features":[212]},{"name":"IPACID_HANDWRITING","features":[212]},{"name":"IPACID_NONE","features":[212]},{"name":"IPACID_OCR","features":[212]},{"name":"IPACID_RADICALSEARCH","features":[212]},{"name":"IPACID_SOFTKEY","features":[212]},{"name":"IPACID_STROKESEARCH","features":[212]},{"name":"IPACID_SYMBOLSEARCH","features":[212]},{"name":"IPACID_USER","features":[212]},{"name":"IPACID_VOICE","features":[212]},{"name":"IPAWS_ENABLED","features":[212]},{"name":"IPAWS_HORIZONTALFIXED","features":[212]},{"name":"IPAWS_MAXHEIGHTFIXED","features":[212]},{"name":"IPAWS_MAXSIZEFIXED","features":[212]},{"name":"IPAWS_MAXWIDTHFIXED","features":[212]},{"name":"IPAWS_MINHEIGHTFIXED","features":[212]},{"name":"IPAWS_MINSIZEFIXED","features":[212]},{"name":"IPAWS_MINWIDTHFIXED","features":[212]},{"name":"IPAWS_SIZEFIXED","features":[212]},{"name":"IPAWS_SIZINGNOTIFY","features":[212]},{"name":"IPAWS_VERTICALFIXED","features":[212]},{"name":"ISC_SHOWUIALL","features":[212]},{"name":"ISC_SHOWUIALLCANDIDATEWINDOW","features":[212]},{"name":"ISC_SHOWUICANDIDATEWINDOW","features":[212]},{"name":"ISC_SHOWUICOMPOSITIONWINDOW","features":[212]},{"name":"ISC_SHOWUIGUIDELINE","features":[212]},{"name":"ImmAssociateContext","features":[1,70,212]},{"name":"ImmAssociateContextEx","features":[1,70,212]},{"name":"ImmConfigureIMEA","features":[1,212,213]},{"name":"ImmConfigureIMEW","features":[1,212,213]},{"name":"ImmCreateContext","features":[70,212]},{"name":"ImmCreateIMCC","features":[70,212]},{"name":"ImmCreateSoftKeyboard","features":[1,212]},{"name":"ImmDestroyContext","features":[1,70,212]},{"name":"ImmDestroyIMCC","features":[70,212]},{"name":"ImmDestroySoftKeyboard","features":[1,212]},{"name":"ImmDisableIME","features":[1,212]},{"name":"ImmDisableLegacyIME","features":[1,212]},{"name":"ImmDisableTextFrameService","features":[1,212]},{"name":"ImmEnumInputContext","features":[1,70,212]},{"name":"ImmEnumRegisterWordA","features":[212,213]},{"name":"ImmEnumRegisterWordW","features":[212,213]},{"name":"ImmEscapeA","features":[1,70,212,213]},{"name":"ImmEscapeW","features":[1,70,212,213]},{"name":"ImmGenerateMessage","features":[1,70,212]},{"name":"ImmGetCandidateListA","features":[70,212]},{"name":"ImmGetCandidateListCountA","features":[70,212]},{"name":"ImmGetCandidateListCountW","features":[70,212]},{"name":"ImmGetCandidateListW","features":[70,212]},{"name":"ImmGetCandidateWindow","features":[1,70,212]},{"name":"ImmGetCompositionFontA","features":[1,70,12,212]},{"name":"ImmGetCompositionFontW","features":[1,70,12,212]},{"name":"ImmGetCompositionStringA","features":[70,212]},{"name":"ImmGetCompositionStringW","features":[70,212]},{"name":"ImmGetCompositionWindow","features":[1,70,212]},{"name":"ImmGetContext","features":[1,70,212]},{"name":"ImmGetConversionListA","features":[70,212,213]},{"name":"ImmGetConversionListW","features":[70,212,213]},{"name":"ImmGetConversionStatus","features":[1,70,212]},{"name":"ImmGetDefaultIMEWnd","features":[1,212]},{"name":"ImmGetDescriptionA","features":[212,213]},{"name":"ImmGetDescriptionW","features":[212,213]},{"name":"ImmGetGuideLineA","features":[70,212]},{"name":"ImmGetGuideLineW","features":[70,212]},{"name":"ImmGetHotKey","features":[1,212,213]},{"name":"ImmGetIMCCLockCount","features":[70,212]},{"name":"ImmGetIMCCSize","features":[70,212]},{"name":"ImmGetIMCLockCount","features":[70,212]},{"name":"ImmGetIMEFileNameA","features":[212,213]},{"name":"ImmGetIMEFileNameW","features":[212,213]},{"name":"ImmGetImeMenuItemsA","features":[70,12,212]},{"name":"ImmGetImeMenuItemsW","features":[70,12,212]},{"name":"ImmGetOpenStatus","features":[1,70,212]},{"name":"ImmGetProperty","features":[212,213]},{"name":"ImmGetRegisterWordStyleA","features":[212,213]},{"name":"ImmGetRegisterWordStyleW","features":[212,213]},{"name":"ImmGetStatusWindowPos","features":[1,70,212]},{"name":"ImmGetVirtualKey","features":[1,212]},{"name":"ImmInstallIMEA","features":[212,213]},{"name":"ImmInstallIMEW","features":[212,213]},{"name":"ImmIsIME","features":[1,212,213]},{"name":"ImmIsUIMessageA","features":[1,212]},{"name":"ImmIsUIMessageW","features":[1,212]},{"name":"ImmLockIMC","features":[1,70,12,212]},{"name":"ImmLockIMCC","features":[70,212]},{"name":"ImmNotifyIME","features":[1,70,212]},{"name":"ImmReSizeIMCC","features":[70,212]},{"name":"ImmRegisterWordA","features":[1,212,213]},{"name":"ImmRegisterWordW","features":[1,212,213]},{"name":"ImmReleaseContext","features":[1,70,212]},{"name":"ImmRequestMessageA","features":[1,70,212]},{"name":"ImmRequestMessageW","features":[1,70,212]},{"name":"ImmSetCandidateWindow","features":[1,70,212]},{"name":"ImmSetCompositionFontA","features":[1,70,12,212]},{"name":"ImmSetCompositionFontW","features":[1,70,12,212]},{"name":"ImmSetCompositionStringA","features":[1,70,212]},{"name":"ImmSetCompositionStringW","features":[1,70,212]},{"name":"ImmSetCompositionWindow","features":[1,70,212]},{"name":"ImmSetConversionStatus","features":[1,70,212]},{"name":"ImmSetHotKey","features":[1,212,213]},{"name":"ImmSetOpenStatus","features":[1,70,212]},{"name":"ImmSetStatusWindowPos","features":[1,70,212]},{"name":"ImmShowSoftKeyboard","features":[1,212]},{"name":"ImmSimulateHotKey","features":[1,212]},{"name":"ImmUnlockIMC","features":[1,70,212]},{"name":"ImmUnlockIMCC","features":[1,70,212]},{"name":"ImmUnregisterWordA","features":[1,212,213]},{"name":"ImmUnregisterWordW","features":[1,212,213]},{"name":"JPOS_1DAN","features":[212]},{"name":"JPOS_4DAN_HA","features":[212]},{"name":"JPOS_5DAN_AWA","features":[212]},{"name":"JPOS_5DAN_AWAUON","features":[212]},{"name":"JPOS_5DAN_BA","features":[212]},{"name":"JPOS_5DAN_GA","features":[212]},{"name":"JPOS_5DAN_KA","features":[212]},{"name":"JPOS_5DAN_KASOKUON","features":[212]},{"name":"JPOS_5DAN_MA","features":[212]},{"name":"JPOS_5DAN_NA","features":[212]},{"name":"JPOS_5DAN_RA","features":[212]},{"name":"JPOS_5DAN_RAHEN","features":[212]},{"name":"JPOS_5DAN_SA","features":[212]},{"name":"JPOS_5DAN_TA","features":[212]},{"name":"JPOS_BUPPIN","features":[212]},{"name":"JPOS_CHIMEI","features":[212]},{"name":"JPOS_CHIMEI_EKI","features":[212]},{"name":"JPOS_CHIMEI_GUN","features":[212]},{"name":"JPOS_CHIMEI_KEN","features":[212]},{"name":"JPOS_CHIMEI_KU","features":[212]},{"name":"JPOS_CHIMEI_KUNI","features":[212]},{"name":"JPOS_CHIMEI_MACHI","features":[212]},{"name":"JPOS_CHIMEI_MURA","features":[212]},{"name":"JPOS_CHIMEI_SHI","features":[212]},{"name":"JPOS_CLOSEBRACE","features":[212]},{"name":"JPOS_DAIMEISHI","features":[212]},{"name":"JPOS_DAIMEISHI_NINSHOU","features":[212]},{"name":"JPOS_DAIMEISHI_SHIJI","features":[212]},{"name":"JPOS_DOKURITSUGO","features":[212]},{"name":"JPOS_EIJI","features":[212]},{"name":"JPOS_FUKUSHI","features":[212]},{"name":"JPOS_FUKUSHI_DA","features":[212]},{"name":"JPOS_FUKUSHI_NANO","features":[212]},{"name":"JPOS_FUKUSHI_NI","features":[212]},{"name":"JPOS_FUKUSHI_SAHEN","features":[212]},{"name":"JPOS_FUKUSHI_TO","features":[212]},{"name":"JPOS_FUKUSHI_TOSURU","features":[212]},{"name":"JPOS_FUTEIGO","features":[212]},{"name":"JPOS_HUKUSIMEISHI","features":[212]},{"name":"JPOS_JINMEI","features":[212]},{"name":"JPOS_JINMEI_MEI","features":[212]},{"name":"JPOS_JINMEI_SEI","features":[212]},{"name":"JPOS_KANDOUSHI","features":[212]},{"name":"JPOS_KANJI","features":[212]},{"name":"JPOS_KANYOUKU","features":[212]},{"name":"JPOS_KAZU","features":[212]},{"name":"JPOS_KAZU_SURYOU","features":[212]},{"name":"JPOS_KAZU_SUSHI","features":[212]},{"name":"JPOS_KEIDOU","features":[212]},{"name":"JPOS_KEIDOU_GARU","features":[212]},{"name":"JPOS_KEIDOU_NO","features":[212]},{"name":"JPOS_KEIDOU_TARU","features":[212]},{"name":"JPOS_KEIYOU","features":[212]},{"name":"JPOS_KEIYOU_GARU","features":[212]},{"name":"JPOS_KEIYOU_GE","features":[212]},{"name":"JPOS_KEIYOU_ME","features":[212]},{"name":"JPOS_KEIYOU_U","features":[212]},{"name":"JPOS_KEIYOU_YUU","features":[212]},{"name":"JPOS_KENCHIKU","features":[212]},{"name":"JPOS_KIGOU","features":[212]},{"name":"JPOS_KURU_KI","features":[212]},{"name":"JPOS_KURU_KITA","features":[212]},{"name":"JPOS_KURU_KITARA","features":[212]},{"name":"JPOS_KURU_KITARI","features":[212]},{"name":"JPOS_KURU_KITAROU","features":[212]},{"name":"JPOS_KURU_KITE","features":[212]},{"name":"JPOS_KURU_KO","features":[212]},{"name":"JPOS_KURU_KOI","features":[212]},{"name":"JPOS_KURU_KOYOU","features":[212]},{"name":"JPOS_KURU_KUREBA","features":[212]},{"name":"JPOS_KUTEN","features":[212]},{"name":"JPOS_MEISA_KEIDOU","features":[212]},{"name":"JPOS_MEISHI_FUTSU","features":[212]},{"name":"JPOS_MEISHI_KEIYOUDOUSHI","features":[212]},{"name":"JPOS_MEISHI_SAHEN","features":[212]},{"name":"JPOS_MEISHI_ZAHEN","features":[212]},{"name":"JPOS_OPENBRACE","features":[212]},{"name":"JPOS_RENTAISHI","features":[212]},{"name":"JPOS_RENTAISHI_SHIJI","features":[212]},{"name":"JPOS_RENYOU_SETSUBI","features":[212]},{"name":"JPOS_SETSUBI","features":[212]},{"name":"JPOS_SETSUBI_CHIMEI","features":[212]},{"name":"JPOS_SETSUBI_CHOU","features":[212]},{"name":"JPOS_SETSUBI_CHU","features":[212]},{"name":"JPOS_SETSUBI_DONO","features":[212]},{"name":"JPOS_SETSUBI_EKI","features":[212]},{"name":"JPOS_SETSUBI_FU","features":[212]},{"name":"JPOS_SETSUBI_FUKUSU","features":[212]},{"name":"JPOS_SETSUBI_GUN","features":[212]},{"name":"JPOS_SETSUBI_JIKAN","features":[212]},{"name":"JPOS_SETSUBI_JIKANPLUS","features":[212]},{"name":"JPOS_SETSUBI_JINMEI","features":[212]},{"name":"JPOS_SETSUBI_JOSUSHI","features":[212]},{"name":"JPOS_SETSUBI_JOSUSHIPLUS","features":[212]},{"name":"JPOS_SETSUBI_KA","features":[212]},{"name":"JPOS_SETSUBI_KATA","features":[212]},{"name":"JPOS_SETSUBI_KEN","features":[212]},{"name":"JPOS_SETSUBI_KENCHIKU","features":[212]},{"name":"JPOS_SETSUBI_KU","features":[212]},{"name":"JPOS_SETSUBI_KUN","features":[212]},{"name":"JPOS_SETSUBI_KUNI","features":[212]},{"name":"JPOS_SETSUBI_MACHI","features":[212]},{"name":"JPOS_SETSUBI_MEISHIRENDAKU","features":[212]},{"name":"JPOS_SETSUBI_MURA","features":[212]},{"name":"JPOS_SETSUBI_RA","features":[212]},{"name":"JPOS_SETSUBI_RYU","features":[212]},{"name":"JPOS_SETSUBI_SAMA","features":[212]},{"name":"JPOS_SETSUBI_SAN","features":[212]},{"name":"JPOS_SETSUBI_SEI","features":[212]},{"name":"JPOS_SETSUBI_SHAMEI","features":[212]},{"name":"JPOS_SETSUBI_SHI","features":[212]},{"name":"JPOS_SETSUBI_SON","features":[212]},{"name":"JPOS_SETSUBI_SONOTA","features":[212]},{"name":"JPOS_SETSUBI_SOSHIKI","features":[212]},{"name":"JPOS_SETSUBI_TACHI","features":[212]},{"name":"JPOS_SETSUBI_TEINEI","features":[212]},{"name":"JPOS_SETSUBI_TEKI","features":[212]},{"name":"JPOS_SETSUBI_YOU","features":[212]},{"name":"JPOS_SETSUZOKUSHI","features":[212]},{"name":"JPOS_SETTOU","features":[212]},{"name":"JPOS_SETTOU_CHIMEI","features":[212]},{"name":"JPOS_SETTOU_CHOUTAN","features":[212]},{"name":"JPOS_SETTOU_DAISHOU","features":[212]},{"name":"JPOS_SETTOU_FUKU","features":[212]},{"name":"JPOS_SETTOU_JINMEI","features":[212]},{"name":"JPOS_SETTOU_JOSUSHI","features":[212]},{"name":"JPOS_SETTOU_KAKU","features":[212]},{"name":"JPOS_SETTOU_KOUTEI","features":[212]},{"name":"JPOS_SETTOU_MI","features":[212]},{"name":"JPOS_SETTOU_SAI","features":[212]},{"name":"JPOS_SETTOU_SHINKYU","features":[212]},{"name":"JPOS_SETTOU_SONOTA","features":[212]},{"name":"JPOS_SETTOU_TEINEI_GO","features":[212]},{"name":"JPOS_SETTOU_TEINEI_O","features":[212]},{"name":"JPOS_SETTOU_TEINEI_ON","features":[212]},{"name":"JPOS_SHAMEI","features":[212]},{"name":"JPOS_SONOTA","features":[212]},{"name":"JPOS_SOSHIKI","features":[212]},{"name":"JPOS_SURU_SA","features":[212]},{"name":"JPOS_SURU_SE","features":[212]},{"name":"JPOS_SURU_SEYO","features":[212]},{"name":"JPOS_SURU_SI","features":[212]},{"name":"JPOS_SURU_SIATRI","features":[212]},{"name":"JPOS_SURU_SITA","features":[212]},{"name":"JPOS_SURU_SITARA","features":[212]},{"name":"JPOS_SURU_SITAROU","features":[212]},{"name":"JPOS_SURU_SITE","features":[212]},{"name":"JPOS_SURU_SIYOU","features":[212]},{"name":"JPOS_SURU_SUREBA","features":[212]},{"name":"JPOS_TANKANJI","features":[212]},{"name":"JPOS_TANKANJI_KAO","features":[212]},{"name":"JPOS_TANSHUKU","features":[212]},{"name":"JPOS_TOKUSHU_KAHEN","features":[212]},{"name":"JPOS_TOKUSHU_NAHEN","features":[212]},{"name":"JPOS_TOKUSHU_SAHEN","features":[212]},{"name":"JPOS_TOKUSHU_SAHENSURU","features":[212]},{"name":"JPOS_TOKUSHU_ZAHEN","features":[212]},{"name":"JPOS_TOUTEN","features":[212]},{"name":"JPOS_UNDEFINED","features":[212]},{"name":"JPOS_YOKUSEI","features":[212]},{"name":"MAX_APPLETTITLE","features":[212]},{"name":"MAX_FONTFACE","features":[212]},{"name":"MODEBIASMODE_DEFAULT","features":[212]},{"name":"MODEBIASMODE_DIGIT","features":[212]},{"name":"MODEBIASMODE_FILENAME","features":[212]},{"name":"MODEBIASMODE_READING","features":[212]},{"name":"MODEBIAS_GETVALUE","features":[212]},{"name":"MODEBIAS_GETVERSION","features":[212]},{"name":"MODEBIAS_SETVALUE","features":[212]},{"name":"MOD_IGNORE_ALL_MODIFIER","features":[212]},{"name":"MOD_LEFT","features":[212]},{"name":"MOD_ON_KEYUP","features":[212]},{"name":"MOD_RIGHT","features":[212]},{"name":"MORRSLT","features":[212]},{"name":"NI_CHANGECANDIDATELIST","features":[212]},{"name":"NI_CLOSECANDIDATE","features":[212]},{"name":"NI_COMPOSITIONSTR","features":[212]},{"name":"NI_CONTEXTUPDATED","features":[212]},{"name":"NI_FINALIZECONVERSIONRESULT","features":[212]},{"name":"NI_IMEMENUSELECTED","features":[212]},{"name":"NI_OPENCANDIDATE","features":[212]},{"name":"NI_SELECTCANDIDATESTR","features":[212]},{"name":"NI_SETCANDIDATE_PAGESIZE","features":[212]},{"name":"NI_SETCANDIDATE_PAGESTART","features":[212]},{"name":"NOTIFY_IME_ACTION","features":[212]},{"name":"NOTIFY_IME_INDEX","features":[212]},{"name":"PFNLOG","features":[1,212]},{"name":"POSTBL","features":[212]},{"name":"POS_UNDEFINED","features":[212]},{"name":"RECONVERTSTRING","features":[212]},{"name":"RECONVOPT_NONE","features":[212]},{"name":"RECONVOPT_USECANCELNOTIFY","features":[212]},{"name":"REGISTERWORDA","features":[212]},{"name":"REGISTERWORDENUMPROCA","features":[212]},{"name":"REGISTERWORDENUMPROCW","features":[212]},{"name":"REGISTERWORDW","features":[212]},{"name":"RWM_CHGKEYMAP","features":[212]},{"name":"RWM_DOCUMENTFEED","features":[212]},{"name":"RWM_KEYMAP","features":[212]},{"name":"RWM_MODEBIAS","features":[212]},{"name":"RWM_MOUSE","features":[212]},{"name":"RWM_NTFYKEYMAP","features":[212]},{"name":"RWM_QUERYPOSITION","features":[212]},{"name":"RWM_RECONVERT","features":[212]},{"name":"RWM_RECONVERTOPTIONS","features":[212]},{"name":"RWM_RECONVERTREQUEST","features":[212]},{"name":"RWM_SERVICE","features":[212]},{"name":"RWM_SHOWIMEPAD","features":[212]},{"name":"RWM_UIREADY","features":[212]},{"name":"SCS_CAP_COMPSTR","features":[212]},{"name":"SCS_CAP_MAKEREAD","features":[212]},{"name":"SCS_CAP_SETRECONVERTSTRING","features":[212]},{"name":"SCS_CHANGEATTR","features":[212]},{"name":"SCS_CHANGECLAUSE","features":[212]},{"name":"SCS_QUERYRECONVERTSTRING","features":[212]},{"name":"SCS_SETRECONVERTSTRING","features":[212]},{"name":"SCS_SETSTR","features":[212]},{"name":"SELECT_CAP_CONVERSION","features":[212]},{"name":"SELECT_CAP_SENTENCE","features":[212]},{"name":"SET_COMPOSITION_STRING_TYPE","features":[212]},{"name":"SHOWIMEPAD_CATEGORY","features":[212]},{"name":"SHOWIMEPAD_DEFAULT","features":[212]},{"name":"SHOWIMEPAD_GUID","features":[212]},{"name":"SOFTKBDDATA","features":[212]},{"name":"SOFTKEYBOARD_TYPE_C1","features":[212]},{"name":"SOFTKEYBOARD_TYPE_T1","features":[212]},{"name":"STYLEBUFA","features":[212]},{"name":"STYLEBUFW","features":[212]},{"name":"STYLE_DESCRIPTION_SIZE","features":[212]},{"name":"TRANSMSG","features":[1,212]},{"name":"TRANSMSGLIST","features":[1,212]},{"name":"UI_CAP_2700","features":[212]},{"name":"UI_CAP_ROT90","features":[212]},{"name":"UI_CAP_ROTANY","features":[212]},{"name":"UI_CAP_SOFTKBD","features":[212]},{"name":"VERSION_DOCUMENTFEED","features":[212]},{"name":"VERSION_ID_CHINESE_SIMPLIFIED","features":[212]},{"name":"VERSION_ID_CHINESE_TRADITIONAL","features":[212]},{"name":"VERSION_ID_JAPANESE","features":[212]},{"name":"VERSION_ID_KOREAN","features":[212]},{"name":"VERSION_MODEBIAS","features":[212]},{"name":"VERSION_MOUSE_OPERATION","features":[212]},{"name":"VERSION_QUERYPOSITION","features":[212]},{"name":"VERSION_RECONVERSION","features":[212]},{"name":"WDD","features":[212]},{"name":"cbCommentMax","features":[212]},{"name":"fpCreateIFECommonInstanceType","features":[212]},{"name":"fpCreateIFEDictionaryInstanceType","features":[212]},{"name":"fpCreateIFELanguageInstanceType","features":[212]},{"name":"szImeChina","features":[212]},{"name":"szImeJapan","features":[212]},{"name":"szImeKorea","features":[212]},{"name":"szImeTaiwan","features":[212]},{"name":"wchPrivate1","features":[212]}],"657":[{"name":"ACTIVATE_KEYBOARD_LAYOUT_FLAGS","features":[214]},{"name":"ACUTE","features":[214]},{"name":"AX_KBD_DESKTOP_TYPE","features":[214]},{"name":"ActivateKeyboardLayout","features":[214,213]},{"name":"BREVE","features":[214]},{"name":"BlockInput","features":[1,214]},{"name":"CAPLOK","features":[214]},{"name":"CAPLOKALTGR","features":[214]},{"name":"CEDILLA","features":[214]},{"name":"CIRCUMFLEX","features":[214]},{"name":"DEADKEY","features":[214]},{"name":"DEC_KBD_ANSI_LAYOUT_TYPE","features":[214]},{"name":"DEC_KBD_JIS_LAYOUT_TYPE","features":[214]},{"name":"DIARESIS","features":[214]},{"name":"DIARESIS_TONOS","features":[214]},{"name":"DKF_DEAD","features":[214]},{"name":"DONTCARE_BIT","features":[214]},{"name":"DOT_ABOVE","features":[214]},{"name":"DOUBLE_ACUTE","features":[214]},{"name":"DragDetect","features":[1,214]},{"name":"EXTENDED_BIT","features":[214]},{"name":"EnableWindow","features":[1,214]},{"name":"FAKE_KEYSTROKE","features":[214]},{"name":"FMR_KBD_JIS_TYPE","features":[214]},{"name":"FMR_KBD_OASYS_TYPE","features":[214]},{"name":"FMV_KBD_OASYS_TYPE","features":[214]},{"name":"GET_MOUSE_MOVE_POINTS_EX_RESOLUTION","features":[214]},{"name":"GMMP_USE_DISPLAY_POINTS","features":[214]},{"name":"GMMP_USE_HIGH_RESOLUTION_POINTS","features":[214]},{"name":"GRAVE","features":[214]},{"name":"GRPSELTAP","features":[214]},{"name":"GetActiveWindow","features":[1,214]},{"name":"GetAsyncKeyState","features":[214]},{"name":"GetCapture","features":[1,214]},{"name":"GetDoubleClickTime","features":[214]},{"name":"GetFocus","features":[1,214]},{"name":"GetKBCodePage","features":[214]},{"name":"GetKeyNameTextA","features":[214]},{"name":"GetKeyNameTextW","features":[214]},{"name":"GetKeyState","features":[214]},{"name":"GetKeyboardLayout","features":[214,213]},{"name":"GetKeyboardLayoutList","features":[214,213]},{"name":"GetKeyboardLayoutNameA","features":[1,214]},{"name":"GetKeyboardLayoutNameW","features":[1,214]},{"name":"GetKeyboardState","features":[1,214]},{"name":"GetKeyboardType","features":[214]},{"name":"GetLastInputInfo","features":[1,214]},{"name":"GetMouseMovePointsEx","features":[214]},{"name":"HACEK","features":[214]},{"name":"HARDWAREINPUT","features":[214]},{"name":"HOOK_ABOVE","features":[214]},{"name":"HOT_KEY_MODIFIERS","features":[214]},{"name":"INPUT","features":[214]},{"name":"INPUT_HARDWARE","features":[214]},{"name":"INPUT_KEYBOARD","features":[214]},{"name":"INPUT_MOUSE","features":[214]},{"name":"INPUT_TYPE","features":[214]},{"name":"IsWindowEnabled","features":[1,214]},{"name":"KANALOK","features":[214]},{"name":"KBDALT","features":[214]},{"name":"KBDBASE","features":[214]},{"name":"KBDCTRL","features":[214]},{"name":"KBDGRPSELTAP","features":[214]},{"name":"KBDKANA","features":[214]},{"name":"KBDLOYA","features":[214]},{"name":"KBDNLSTABLES","features":[214]},{"name":"KBDNLS_ALPHANUM","features":[214]},{"name":"KBDNLS_CODEINPUT","features":[214]},{"name":"KBDNLS_CONV_OR_NONCONV","features":[214]},{"name":"KBDNLS_HELP_OR_END","features":[214]},{"name":"KBDNLS_HIRAGANA","features":[214]},{"name":"KBDNLS_HOME_OR_CLEAR","features":[214]},{"name":"KBDNLS_INDEX_ALT","features":[214]},{"name":"KBDNLS_INDEX_NORMAL","features":[214]},{"name":"KBDNLS_KANAEVENT","features":[214]},{"name":"KBDNLS_KANALOCK","features":[214]},{"name":"KBDNLS_KATAKANA","features":[214]},{"name":"KBDNLS_NOEVENT","features":[214]},{"name":"KBDNLS_NULL","features":[214]},{"name":"KBDNLS_NUMPAD","features":[214]},{"name":"KBDNLS_ROMAN","features":[214]},{"name":"KBDNLS_SBCSDBCS","features":[214]},{"name":"KBDNLS_SEND_BASE_VK","features":[214]},{"name":"KBDNLS_SEND_PARAM_VK","features":[214]},{"name":"KBDNLS_TYPE_NORMAL","features":[214]},{"name":"KBDNLS_TYPE_NULL","features":[214]},{"name":"KBDNLS_TYPE_TOGGLE","features":[214]},{"name":"KBDROYA","features":[214]},{"name":"KBDSHIFT","features":[214]},{"name":"KBDTABLES","features":[214]},{"name":"KBDTABLE_DESC","features":[214]},{"name":"KBDTABLE_MULTI","features":[214]},{"name":"KBDTABLE_MULTI_MAX","features":[214]},{"name":"KBD_TYPE","features":[214]},{"name":"KBD_TYPE_INFO","features":[214]},{"name":"KBD_VERSION","features":[214]},{"name":"KEYBDINPUT","features":[214]},{"name":"KEYBD_EVENT_FLAGS","features":[214]},{"name":"KEYBOARD_TYPE_GENERIC_101","features":[214]},{"name":"KEYBOARD_TYPE_JAPAN","features":[214]},{"name":"KEYBOARD_TYPE_KOREA","features":[214]},{"name":"KEYBOARD_TYPE_UNKNOWN","features":[214]},{"name":"KEYEVENTF_EXTENDEDKEY","features":[214]},{"name":"KEYEVENTF_KEYUP","features":[214]},{"name":"KEYEVENTF_SCANCODE","features":[214]},{"name":"KEYEVENTF_UNICODE","features":[214]},{"name":"KLF_ACTIVATE","features":[214]},{"name":"KLF_NOTELLSHELL","features":[214]},{"name":"KLF_REORDER","features":[214]},{"name":"KLF_REPLACELANG","features":[214]},{"name":"KLF_RESET","features":[214]},{"name":"KLF_SETFORPROCESS","features":[214]},{"name":"KLF_SHIFTLOCK","features":[214]},{"name":"KLF_SUBSTITUTE_OK","features":[214]},{"name":"KLLF_ALTGR","features":[214]},{"name":"KLLF_GLOBAL_ATTRS","features":[214]},{"name":"KLLF_LRM_RLM","features":[214]},{"name":"KLLF_SHIFTLOCK","features":[214]},{"name":"LASTINPUTINFO","features":[214]},{"name":"LIGATURE1","features":[214]},{"name":"LIGATURE2","features":[214]},{"name":"LIGATURE3","features":[214]},{"name":"LIGATURE4","features":[214]},{"name":"LIGATURE5","features":[214]},{"name":"LoadKeyboardLayoutA","features":[214,213]},{"name":"LoadKeyboardLayoutW","features":[214,213]},{"name":"MACRON","features":[214]},{"name":"MAPVK_VK_TO_CHAR","features":[214]},{"name":"MAPVK_VK_TO_VSC","features":[214]},{"name":"MAPVK_VK_TO_VSC_EX","features":[214]},{"name":"MAPVK_VSC_TO_VK","features":[214]},{"name":"MAPVK_VSC_TO_VK_EX","features":[214]},{"name":"MAP_VIRTUAL_KEY_TYPE","features":[214]},{"name":"MICROSOFT_KBD_001_TYPE","features":[214]},{"name":"MICROSOFT_KBD_002_TYPE","features":[214]},{"name":"MICROSOFT_KBD_101A_TYPE","features":[214]},{"name":"MICROSOFT_KBD_101B_TYPE","features":[214]},{"name":"MICROSOFT_KBD_101C_TYPE","features":[214]},{"name":"MICROSOFT_KBD_101_TYPE","features":[214]},{"name":"MICROSOFT_KBD_103_TYPE","features":[214]},{"name":"MICROSOFT_KBD_106_TYPE","features":[214]},{"name":"MICROSOFT_KBD_AX_TYPE","features":[214]},{"name":"MICROSOFT_KBD_FUNC","features":[214]},{"name":"MODIFIERS","features":[214]},{"name":"MOD_ALT","features":[214]},{"name":"MOD_CONTROL","features":[214]},{"name":"MOD_NOREPEAT","features":[214]},{"name":"MOD_SHIFT","features":[214]},{"name":"MOD_WIN","features":[214]},{"name":"MOUSEEVENTF_ABSOLUTE","features":[214]},{"name":"MOUSEEVENTF_HWHEEL","features":[214]},{"name":"MOUSEEVENTF_LEFTDOWN","features":[214]},{"name":"MOUSEEVENTF_LEFTUP","features":[214]},{"name":"MOUSEEVENTF_MIDDLEDOWN","features":[214]},{"name":"MOUSEEVENTF_MIDDLEUP","features":[214]},{"name":"MOUSEEVENTF_MOVE","features":[214]},{"name":"MOUSEEVENTF_MOVE_NOCOALESCE","features":[214]},{"name":"MOUSEEVENTF_RIGHTDOWN","features":[214]},{"name":"MOUSEEVENTF_RIGHTUP","features":[214]},{"name":"MOUSEEVENTF_VIRTUALDESK","features":[214]},{"name":"MOUSEEVENTF_WHEEL","features":[214]},{"name":"MOUSEEVENTF_XDOWN","features":[214]},{"name":"MOUSEEVENTF_XUP","features":[214]},{"name":"MOUSEINPUT","features":[214]},{"name":"MOUSEMOVEPOINT","features":[214]},{"name":"MOUSE_EVENT_FLAGS","features":[214]},{"name":"MapVirtualKeyA","features":[214]},{"name":"MapVirtualKeyExA","features":[214,213]},{"name":"MapVirtualKeyExW","features":[214,213]},{"name":"MapVirtualKeyW","features":[214]},{"name":"NEC_KBD_106_TYPE","features":[214]},{"name":"NEC_KBD_H_MODE_TYPE","features":[214]},{"name":"NEC_KBD_LAPTOP_TYPE","features":[214]},{"name":"NEC_KBD_NORMAL_TYPE","features":[214]},{"name":"NEC_KBD_N_MODE_TYPE","features":[214]},{"name":"NLSKBD_INFO_ACCESSIBILITY_KEYMAP","features":[214]},{"name":"NLSKBD_INFO_EMURATE_101_KEYBOARD","features":[214]},{"name":"NLSKBD_INFO_EMURATE_106_KEYBOARD","features":[214]},{"name":"NLSKBD_INFO_SEND_IME_NOTIFICATION","features":[214]},{"name":"NLSKBD_OEM_AX","features":[214]},{"name":"NLSKBD_OEM_DEC","features":[214]},{"name":"NLSKBD_OEM_EPSON","features":[214]},{"name":"NLSKBD_OEM_FUJITSU","features":[214]},{"name":"NLSKBD_OEM_IBM","features":[214]},{"name":"NLSKBD_OEM_MATSUSHITA","features":[214]},{"name":"NLSKBD_OEM_MICROSOFT","features":[214]},{"name":"NLSKBD_OEM_NEC","features":[214]},{"name":"NLSKBD_OEM_TOSHIBA","features":[214]},{"name":"OGONEK","features":[214]},{"name":"OVERSCORE","features":[214]},{"name":"OemKeyScan","features":[214]},{"name":"RING","features":[214]},{"name":"RegisterHotKey","features":[1,214]},{"name":"ReleaseCapture","features":[1,214]},{"name":"SCANCODE_ALT","features":[214]},{"name":"SCANCODE_CTRL","features":[214]},{"name":"SCANCODE_LSHIFT","features":[214]},{"name":"SCANCODE_LWIN","features":[214]},{"name":"SCANCODE_NUMPAD_FIRST","features":[214]},{"name":"SCANCODE_NUMPAD_LAST","features":[214]},{"name":"SCANCODE_RSHIFT","features":[214]},{"name":"SCANCODE_RWIN","features":[214]},{"name":"SCANCODE_THAI_LAYOUT_TOGGLE","features":[214]},{"name":"SGCAPS","features":[214]},{"name":"SHFT_INVALID","features":[214]},{"name":"SendInput","features":[214]},{"name":"SetActiveWindow","features":[1,214]},{"name":"SetCapture","features":[1,214]},{"name":"SetDoubleClickTime","features":[1,214]},{"name":"SetFocus","features":[1,214]},{"name":"SetKeyboardState","features":[1,214]},{"name":"SwapMouseButton","features":[1,214]},{"name":"TILDE","features":[214]},{"name":"TME_CANCEL","features":[214]},{"name":"TME_HOVER","features":[214]},{"name":"TME_LEAVE","features":[214]},{"name":"TME_NONCLIENT","features":[214]},{"name":"TME_QUERY","features":[214]},{"name":"TONOS","features":[214]},{"name":"TOSHIBA_KBD_DESKTOP_TYPE","features":[214]},{"name":"TOSHIBA_KBD_LAPTOP_TYPE","features":[214]},{"name":"TRACKMOUSEEVENT","features":[1,214]},{"name":"TRACKMOUSEEVENT_FLAGS","features":[214]},{"name":"ToAscii","features":[214]},{"name":"ToAsciiEx","features":[214,213]},{"name":"ToUnicode","features":[214]},{"name":"ToUnicodeEx","features":[214,213]},{"name":"TrackMouseEvent","features":[1,214]},{"name":"UMLAUT","features":[214]},{"name":"UnloadKeyboardLayout","features":[1,214,213]},{"name":"UnregisterHotKey","features":[1,214]},{"name":"VIRTUAL_KEY","features":[214]},{"name":"VK_0","features":[214]},{"name":"VK_1","features":[214]},{"name":"VK_2","features":[214]},{"name":"VK_3","features":[214]},{"name":"VK_4","features":[214]},{"name":"VK_5","features":[214]},{"name":"VK_6","features":[214]},{"name":"VK_7","features":[214]},{"name":"VK_8","features":[214]},{"name":"VK_9","features":[214]},{"name":"VK_A","features":[214]},{"name":"VK_ABNT_C1","features":[214]},{"name":"VK_ABNT_C2","features":[214]},{"name":"VK_ACCEPT","features":[214]},{"name":"VK_ADD","features":[214]},{"name":"VK_APPS","features":[214]},{"name":"VK_ATTN","features":[214]},{"name":"VK_B","features":[214]},{"name":"VK_BACK","features":[214]},{"name":"VK_BROWSER_BACK","features":[214]},{"name":"VK_BROWSER_FAVORITES","features":[214]},{"name":"VK_BROWSER_FORWARD","features":[214]},{"name":"VK_BROWSER_HOME","features":[214]},{"name":"VK_BROWSER_REFRESH","features":[214]},{"name":"VK_BROWSER_SEARCH","features":[214]},{"name":"VK_BROWSER_STOP","features":[214]},{"name":"VK_C","features":[214]},{"name":"VK_CANCEL","features":[214]},{"name":"VK_CAPITAL","features":[214]},{"name":"VK_CLEAR","features":[214]},{"name":"VK_CONTROL","features":[214]},{"name":"VK_CONVERT","features":[214]},{"name":"VK_CRSEL","features":[214]},{"name":"VK_D","features":[214]},{"name":"VK_DBE_ALPHANUMERIC","features":[214]},{"name":"VK_DBE_CODEINPUT","features":[214]},{"name":"VK_DBE_DBCSCHAR","features":[214]},{"name":"VK_DBE_DETERMINESTRING","features":[214]},{"name":"VK_DBE_ENTERDLGCONVERSIONMODE","features":[214]},{"name":"VK_DBE_ENTERIMECONFIGMODE","features":[214]},{"name":"VK_DBE_ENTERWORDREGISTERMODE","features":[214]},{"name":"VK_DBE_FLUSHSTRING","features":[214]},{"name":"VK_DBE_HIRAGANA","features":[214]},{"name":"VK_DBE_KATAKANA","features":[214]},{"name":"VK_DBE_NOCODEINPUT","features":[214]},{"name":"VK_DBE_NOROMAN","features":[214]},{"name":"VK_DBE_ROMAN","features":[214]},{"name":"VK_DBE_SBCSCHAR","features":[214]},{"name":"VK_DECIMAL","features":[214]},{"name":"VK_DELETE","features":[214]},{"name":"VK_DIVIDE","features":[214]},{"name":"VK_DOWN","features":[214]},{"name":"VK_E","features":[214]},{"name":"VK_END","features":[214]},{"name":"VK_EREOF","features":[214]},{"name":"VK_ESCAPE","features":[214]},{"name":"VK_EXECUTE","features":[214]},{"name":"VK_EXSEL","features":[214]},{"name":"VK_F","features":[214]},{"name":"VK_F","features":[214]},{"name":"VK_F1","features":[214]},{"name":"VK_F10","features":[214]},{"name":"VK_F11","features":[214]},{"name":"VK_F12","features":[214]},{"name":"VK_F13","features":[214]},{"name":"VK_F14","features":[214]},{"name":"VK_F15","features":[214]},{"name":"VK_F16","features":[214]},{"name":"VK_F17","features":[214]},{"name":"VK_F18","features":[214]},{"name":"VK_F19","features":[214]},{"name":"VK_F2","features":[214]},{"name":"VK_F20","features":[214]},{"name":"VK_F21","features":[214]},{"name":"VK_F22","features":[214]},{"name":"VK_F23","features":[214]},{"name":"VK_F24","features":[214]},{"name":"VK_F3","features":[214]},{"name":"VK_F4","features":[214]},{"name":"VK_F5","features":[214]},{"name":"VK_F6","features":[214]},{"name":"VK_F7","features":[214]},{"name":"VK_F8","features":[214]},{"name":"VK_F9","features":[214]},{"name":"VK_FINAL","features":[214]},{"name":"VK_FPARAM","features":[214]},{"name":"VK_G","features":[214]},{"name":"VK_GAMEPAD_A","features":[214]},{"name":"VK_GAMEPAD_B","features":[214]},{"name":"VK_GAMEPAD_DPAD_DOWN","features":[214]},{"name":"VK_GAMEPAD_DPAD_LEFT","features":[214]},{"name":"VK_GAMEPAD_DPAD_RIGHT","features":[214]},{"name":"VK_GAMEPAD_DPAD_UP","features":[214]},{"name":"VK_GAMEPAD_LEFT_SHOULDER","features":[214]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_BUTTON","features":[214]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_DOWN","features":[214]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_LEFT","features":[214]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_RIGHT","features":[214]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_UP","features":[214]},{"name":"VK_GAMEPAD_LEFT_TRIGGER","features":[214]},{"name":"VK_GAMEPAD_MENU","features":[214]},{"name":"VK_GAMEPAD_RIGHT_SHOULDER","features":[214]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_BUTTON","features":[214]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_DOWN","features":[214]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_LEFT","features":[214]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_RIGHT","features":[214]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_UP","features":[214]},{"name":"VK_GAMEPAD_RIGHT_TRIGGER","features":[214]},{"name":"VK_GAMEPAD_VIEW","features":[214]},{"name":"VK_GAMEPAD_X","features":[214]},{"name":"VK_GAMEPAD_Y","features":[214]},{"name":"VK_H","features":[214]},{"name":"VK_HANGEUL","features":[214]},{"name":"VK_HANGUL","features":[214]},{"name":"VK_HANJA","features":[214]},{"name":"VK_HELP","features":[214]},{"name":"VK_HOME","features":[214]},{"name":"VK_I","features":[214]},{"name":"VK_ICO_00","features":[214]},{"name":"VK_ICO_CLEAR","features":[214]},{"name":"VK_ICO_HELP","features":[214]},{"name":"VK_IME_OFF","features":[214]},{"name":"VK_IME_ON","features":[214]},{"name":"VK_INSERT","features":[214]},{"name":"VK_J","features":[214]},{"name":"VK_JUNJA","features":[214]},{"name":"VK_K","features":[214]},{"name":"VK_KANA","features":[214]},{"name":"VK_KANJI","features":[214]},{"name":"VK_L","features":[214]},{"name":"VK_LAUNCH_APP1","features":[214]},{"name":"VK_LAUNCH_APP2","features":[214]},{"name":"VK_LAUNCH_MAIL","features":[214]},{"name":"VK_LAUNCH_MEDIA_SELECT","features":[214]},{"name":"VK_LBUTTON","features":[214]},{"name":"VK_LCONTROL","features":[214]},{"name":"VK_LEFT","features":[214]},{"name":"VK_LMENU","features":[214]},{"name":"VK_LSHIFT","features":[214]},{"name":"VK_LWIN","features":[214]},{"name":"VK_M","features":[214]},{"name":"VK_MBUTTON","features":[214]},{"name":"VK_MEDIA_NEXT_TRACK","features":[214]},{"name":"VK_MEDIA_PLAY_PAUSE","features":[214]},{"name":"VK_MEDIA_PREV_TRACK","features":[214]},{"name":"VK_MEDIA_STOP","features":[214]},{"name":"VK_MENU","features":[214]},{"name":"VK_MODECHANGE","features":[214]},{"name":"VK_MULTIPLY","features":[214]},{"name":"VK_N","features":[214]},{"name":"VK_NAVIGATION_ACCEPT","features":[214]},{"name":"VK_NAVIGATION_CANCEL","features":[214]},{"name":"VK_NAVIGATION_DOWN","features":[214]},{"name":"VK_NAVIGATION_LEFT","features":[214]},{"name":"VK_NAVIGATION_MENU","features":[214]},{"name":"VK_NAVIGATION_RIGHT","features":[214]},{"name":"VK_NAVIGATION_UP","features":[214]},{"name":"VK_NAVIGATION_VIEW","features":[214]},{"name":"VK_NEXT","features":[214]},{"name":"VK_NONAME","features":[214]},{"name":"VK_NONCONVERT","features":[214]},{"name":"VK_NUMLOCK","features":[214]},{"name":"VK_NUMPAD0","features":[214]},{"name":"VK_NUMPAD1","features":[214]},{"name":"VK_NUMPAD2","features":[214]},{"name":"VK_NUMPAD3","features":[214]},{"name":"VK_NUMPAD4","features":[214]},{"name":"VK_NUMPAD5","features":[214]},{"name":"VK_NUMPAD6","features":[214]},{"name":"VK_NUMPAD7","features":[214]},{"name":"VK_NUMPAD8","features":[214]},{"name":"VK_NUMPAD9","features":[214]},{"name":"VK_O","features":[214]},{"name":"VK_OEM_1","features":[214]},{"name":"VK_OEM_102","features":[214]},{"name":"VK_OEM_2","features":[214]},{"name":"VK_OEM_3","features":[214]},{"name":"VK_OEM_4","features":[214]},{"name":"VK_OEM_5","features":[214]},{"name":"VK_OEM_6","features":[214]},{"name":"VK_OEM_7","features":[214]},{"name":"VK_OEM_8","features":[214]},{"name":"VK_OEM_ATTN","features":[214]},{"name":"VK_OEM_AUTO","features":[214]},{"name":"VK_OEM_AX","features":[214]},{"name":"VK_OEM_BACKTAB","features":[214]},{"name":"VK_OEM_CLEAR","features":[214]},{"name":"VK_OEM_COMMA","features":[214]},{"name":"VK_OEM_COPY","features":[214]},{"name":"VK_OEM_CUSEL","features":[214]},{"name":"VK_OEM_ENLW","features":[214]},{"name":"VK_OEM_FINISH","features":[214]},{"name":"VK_OEM_FJ_JISHO","features":[214]},{"name":"VK_OEM_FJ_LOYA","features":[214]},{"name":"VK_OEM_FJ_MASSHOU","features":[214]},{"name":"VK_OEM_FJ_ROYA","features":[214]},{"name":"VK_OEM_FJ_TOUROKU","features":[214]},{"name":"VK_OEM_JUMP","features":[214]},{"name":"VK_OEM_MINUS","features":[214]},{"name":"VK_OEM_NEC_EQUAL","features":[214]},{"name":"VK_OEM_PA1","features":[214]},{"name":"VK_OEM_PA2","features":[214]},{"name":"VK_OEM_PA3","features":[214]},{"name":"VK_OEM_PERIOD","features":[214]},{"name":"VK_OEM_PLUS","features":[214]},{"name":"VK_OEM_RESET","features":[214]},{"name":"VK_OEM_WSCTRL","features":[214]},{"name":"VK_P","features":[214]},{"name":"VK_PA1","features":[214]},{"name":"VK_PACKET","features":[214]},{"name":"VK_PAUSE","features":[214]},{"name":"VK_PLAY","features":[214]},{"name":"VK_PRINT","features":[214]},{"name":"VK_PRIOR","features":[214]},{"name":"VK_PROCESSKEY","features":[214]},{"name":"VK_Q","features":[214]},{"name":"VK_R","features":[214]},{"name":"VK_RBUTTON","features":[214]},{"name":"VK_RCONTROL","features":[214]},{"name":"VK_RETURN","features":[214]},{"name":"VK_RIGHT","features":[214]},{"name":"VK_RMENU","features":[214]},{"name":"VK_RSHIFT","features":[214]},{"name":"VK_RWIN","features":[214]},{"name":"VK_S","features":[214]},{"name":"VK_SCROLL","features":[214]},{"name":"VK_SELECT","features":[214]},{"name":"VK_SEPARATOR","features":[214]},{"name":"VK_SHIFT","features":[214]},{"name":"VK_SLEEP","features":[214]},{"name":"VK_SNAPSHOT","features":[214]},{"name":"VK_SPACE","features":[214]},{"name":"VK_SUBTRACT","features":[214]},{"name":"VK_T","features":[214]},{"name":"VK_TAB","features":[214]},{"name":"VK_TO_BIT","features":[214]},{"name":"VK_TO_WCHARS1","features":[214]},{"name":"VK_TO_WCHARS10","features":[214]},{"name":"VK_TO_WCHARS2","features":[214]},{"name":"VK_TO_WCHARS3","features":[214]},{"name":"VK_TO_WCHARS4","features":[214]},{"name":"VK_TO_WCHARS5","features":[214]},{"name":"VK_TO_WCHARS6","features":[214]},{"name":"VK_TO_WCHARS7","features":[214]},{"name":"VK_TO_WCHARS8","features":[214]},{"name":"VK_TO_WCHARS9","features":[214]},{"name":"VK_TO_WCHAR_TABLE","features":[214]},{"name":"VK_U","features":[214]},{"name":"VK_UP","features":[214]},{"name":"VK_V","features":[214]},{"name":"VK_VOLUME_DOWN","features":[214]},{"name":"VK_VOLUME_MUTE","features":[214]},{"name":"VK_VOLUME_UP","features":[214]},{"name":"VK_VSC","features":[214]},{"name":"VK_W","features":[214]},{"name":"VK_X","features":[214]},{"name":"VK_XBUTTON1","features":[214]},{"name":"VK_XBUTTON2","features":[214]},{"name":"VK_Y","features":[214]},{"name":"VK_Z","features":[214]},{"name":"VK_ZOOM","features":[214]},{"name":"VK__none_","features":[214]},{"name":"VSC_LPWSTR","features":[214]},{"name":"VSC_VK","features":[214]},{"name":"VkKeyScanA","features":[214]},{"name":"VkKeyScanExA","features":[214,213]},{"name":"VkKeyScanExW","features":[214,213]},{"name":"VkKeyScanW","features":[214]},{"name":"WCH_DEAD","features":[214]},{"name":"WCH_LGTR","features":[214]},{"name":"WCH_NONE","features":[214]},{"name":"_TrackMouseEvent","features":[1,214]},{"name":"keybd_event","features":[214]},{"name":"mouse_event","features":[214]},{"name":"wszACUTE","features":[214]},{"name":"wszBREVE","features":[214]},{"name":"wszCEDILLA","features":[214]},{"name":"wszCIRCUMFLEX","features":[214]},{"name":"wszDIARESIS_TONOS","features":[214]},{"name":"wszDOT_ABOVE","features":[214]},{"name":"wszDOUBLE_ACUTE","features":[214]},{"name":"wszGRAVE","features":[214]},{"name":"wszHACEK","features":[214]},{"name":"wszHOOK_ABOVE","features":[214]},{"name":"wszMACRON","features":[214]},{"name":"wszOGONEK","features":[214]},{"name":"wszOVERSCORE","features":[214]},{"name":"wszRING","features":[214]},{"name":"wszTILDE","features":[214]},{"name":"wszTONOS","features":[214]},{"name":"wszUMLAUT","features":[214]}],"658":[{"name":"EnableMouseInPointer","features":[1,209]},{"name":"GetPointerCursorId","features":[1,209]},{"name":"GetPointerDevice","features":[1,12,40,209]},{"name":"GetPointerDeviceCursors","features":[1,40,209]},{"name":"GetPointerDeviceProperties","features":[1,40,209]},{"name":"GetPointerDeviceRects","features":[1,209]},{"name":"GetPointerDevices","features":[1,12,40,209]},{"name":"GetPointerFrameInfo","features":[1,209,50]},{"name":"GetPointerFrameInfoHistory","features":[1,209,50]},{"name":"GetPointerFramePenInfo","features":[1,209,50]},{"name":"GetPointerFramePenInfoHistory","features":[1,209,50]},{"name":"GetPointerFrameTouchInfo","features":[1,209,50]},{"name":"GetPointerFrameTouchInfoHistory","features":[1,209,50]},{"name":"GetPointerInfo","features":[1,209,50]},{"name":"GetPointerInfoHistory","features":[1,209,50]},{"name":"GetPointerInputTransform","features":[1,209]},{"name":"GetPointerPenInfo","features":[1,209,50]},{"name":"GetPointerPenInfoHistory","features":[1,209,50]},{"name":"GetPointerTouchInfo","features":[1,209,50]},{"name":"GetPointerTouchInfoHistory","features":[1,209,50]},{"name":"GetPointerType","features":[1,209,50]},{"name":"GetRawPointerDeviceData","features":[1,40,209]},{"name":"GetUnpredictedMessagePos","features":[209]},{"name":"INPUT_INJECTION_VALUE","features":[209]},{"name":"INPUT_TRANSFORM","features":[209]},{"name":"InitializeTouchInjection","features":[1,209]},{"name":"InjectSyntheticPointerInput","features":[1,40,209,50]},{"name":"InjectTouchInput","features":[1,209,50]},{"name":"IsMouseInPointerEnabled","features":[1,209]},{"name":"POINTER_BUTTON_CHANGE_TYPE","features":[209]},{"name":"POINTER_CHANGE_FIFTHBUTTON_DOWN","features":[209]},{"name":"POINTER_CHANGE_FIFTHBUTTON_UP","features":[209]},{"name":"POINTER_CHANGE_FIRSTBUTTON_DOWN","features":[209]},{"name":"POINTER_CHANGE_FIRSTBUTTON_UP","features":[209]},{"name":"POINTER_CHANGE_FOURTHBUTTON_DOWN","features":[209]},{"name":"POINTER_CHANGE_FOURTHBUTTON_UP","features":[209]},{"name":"POINTER_CHANGE_NONE","features":[209]},{"name":"POINTER_CHANGE_SECONDBUTTON_DOWN","features":[209]},{"name":"POINTER_CHANGE_SECONDBUTTON_UP","features":[209]},{"name":"POINTER_CHANGE_THIRDBUTTON_DOWN","features":[209]},{"name":"POINTER_CHANGE_THIRDBUTTON_UP","features":[209]},{"name":"POINTER_FLAGS","features":[209]},{"name":"POINTER_FLAG_CANCELED","features":[209]},{"name":"POINTER_FLAG_CAPTURECHANGED","features":[209]},{"name":"POINTER_FLAG_CONFIDENCE","features":[209]},{"name":"POINTER_FLAG_DOWN","features":[209]},{"name":"POINTER_FLAG_FIFTHBUTTON","features":[209]},{"name":"POINTER_FLAG_FIRSTBUTTON","features":[209]},{"name":"POINTER_FLAG_FOURTHBUTTON","features":[209]},{"name":"POINTER_FLAG_HASTRANSFORM","features":[209]},{"name":"POINTER_FLAG_HWHEEL","features":[209]},{"name":"POINTER_FLAG_INCONTACT","features":[209]},{"name":"POINTER_FLAG_INRANGE","features":[209]},{"name":"POINTER_FLAG_NEW","features":[209]},{"name":"POINTER_FLAG_NONE","features":[209]},{"name":"POINTER_FLAG_PRIMARY","features":[209]},{"name":"POINTER_FLAG_SECONDBUTTON","features":[209]},{"name":"POINTER_FLAG_THIRDBUTTON","features":[209]},{"name":"POINTER_FLAG_UP","features":[209]},{"name":"POINTER_FLAG_UPDATE","features":[209]},{"name":"POINTER_FLAG_WHEEL","features":[209]},{"name":"POINTER_INFO","features":[1,209,50]},{"name":"POINTER_PEN_INFO","features":[1,209,50]},{"name":"POINTER_TOUCH_INFO","features":[1,209,50]},{"name":"SkipPointerFrameMessages","features":[1,209]},{"name":"TOUCH_FEEDBACK_DEFAULT","features":[209]},{"name":"TOUCH_FEEDBACK_INDIRECT","features":[209]},{"name":"TOUCH_FEEDBACK_MODE","features":[209]},{"name":"TOUCH_FEEDBACK_NONE","features":[209]}],"660":[{"name":"CloseGestureInfoHandle","features":[1,215]},{"name":"CloseTouchInputHandle","features":[1,215]},{"name":"GESTURECONFIG","features":[215]},{"name":"GESTURECONFIG_ID","features":[215]},{"name":"GESTUREINFO","features":[1,215]},{"name":"GESTURENOTIFYSTRUCT","features":[1,215]},{"name":"GID_BEGIN","features":[215]},{"name":"GID_END","features":[215]},{"name":"GID_PAN","features":[215]},{"name":"GID_PRESSANDTAP","features":[215]},{"name":"GID_ROLLOVER","features":[215]},{"name":"GID_ROTATE","features":[215]},{"name":"GID_TWOFINGERTAP","features":[215]},{"name":"GID_ZOOM","features":[215]},{"name":"GetGestureConfig","features":[1,215]},{"name":"GetGestureExtraArgs","features":[1,215]},{"name":"GetGestureInfo","features":[1,215]},{"name":"GetTouchInputInfo","features":[1,215]},{"name":"HGESTUREINFO","features":[215]},{"name":"HTOUCHINPUT","features":[215]},{"name":"IInertiaProcessor","features":[215]},{"name":"IManipulationProcessor","features":[215]},{"name":"InertiaProcessor","features":[215]},{"name":"IsTouchWindow","features":[1,215]},{"name":"MANIPULATION_ALL","features":[215]},{"name":"MANIPULATION_NONE","features":[215]},{"name":"MANIPULATION_PROCESSOR_MANIPULATIONS","features":[215]},{"name":"MANIPULATION_ROTATE","features":[215]},{"name":"MANIPULATION_SCALE","features":[215]},{"name":"MANIPULATION_TRANSLATE_X","features":[215]},{"name":"MANIPULATION_TRANSLATE_Y","features":[215]},{"name":"ManipulationProcessor","features":[215]},{"name":"REGISTER_TOUCH_WINDOW_FLAGS","features":[215]},{"name":"RegisterTouchWindow","features":[1,215]},{"name":"SetGestureConfig","features":[1,215]},{"name":"TOUCHEVENTF_DOWN","features":[215]},{"name":"TOUCHEVENTF_FLAGS","features":[215]},{"name":"TOUCHEVENTF_INRANGE","features":[215]},{"name":"TOUCHEVENTF_MOVE","features":[215]},{"name":"TOUCHEVENTF_NOCOALESCE","features":[215]},{"name":"TOUCHEVENTF_PALM","features":[215]},{"name":"TOUCHEVENTF_PEN","features":[215]},{"name":"TOUCHEVENTF_PRIMARY","features":[215]},{"name":"TOUCHEVENTF_UP","features":[215]},{"name":"TOUCHINPUT","features":[1,215]},{"name":"TOUCHINPUTMASKF_CONTACTAREA","features":[215]},{"name":"TOUCHINPUTMASKF_EXTRAINFO","features":[215]},{"name":"TOUCHINPUTMASKF_MASK","features":[215]},{"name":"TOUCHINPUTMASKF_TIMEFROMSYSTEM","features":[215]},{"name":"TWF_FINETOUCH","features":[215]},{"name":"TWF_WANTPALM","features":[215]},{"name":"UnregisterTouchWindow","features":[1,215]},{"name":"_IManipulationEvents","features":[215]}],"661":[{"name":"BATTERY_DEVTYPE","features":[216]},{"name":"BATTERY_DEVTYPE_GAMEPAD","features":[216]},{"name":"BATTERY_DEVTYPE_HEADSET","features":[216]},{"name":"BATTERY_LEVEL","features":[216]},{"name":"BATTERY_LEVEL_EMPTY","features":[216]},{"name":"BATTERY_LEVEL_FULL","features":[216]},{"name":"BATTERY_LEVEL_LOW","features":[216]},{"name":"BATTERY_LEVEL_MEDIUM","features":[216]},{"name":"BATTERY_TYPE","features":[216]},{"name":"BATTERY_TYPE_ALKALINE","features":[216]},{"name":"BATTERY_TYPE_DISCONNECTED","features":[216]},{"name":"BATTERY_TYPE_NIMH","features":[216]},{"name":"BATTERY_TYPE_UNKNOWN","features":[216]},{"name":"BATTERY_TYPE_WIRED","features":[216]},{"name":"VK_PAD_A","features":[216]},{"name":"VK_PAD_B","features":[216]},{"name":"VK_PAD_BACK","features":[216]},{"name":"VK_PAD_DPAD_DOWN","features":[216]},{"name":"VK_PAD_DPAD_LEFT","features":[216]},{"name":"VK_PAD_DPAD_RIGHT","features":[216]},{"name":"VK_PAD_DPAD_UP","features":[216]},{"name":"VK_PAD_LSHOULDER","features":[216]},{"name":"VK_PAD_LTHUMB_DOWN","features":[216]},{"name":"VK_PAD_LTHUMB_DOWNLEFT","features":[216]},{"name":"VK_PAD_LTHUMB_DOWNRIGHT","features":[216]},{"name":"VK_PAD_LTHUMB_LEFT","features":[216]},{"name":"VK_PAD_LTHUMB_PRESS","features":[216]},{"name":"VK_PAD_LTHUMB_RIGHT","features":[216]},{"name":"VK_PAD_LTHUMB_UP","features":[216]},{"name":"VK_PAD_LTHUMB_UPLEFT","features":[216]},{"name":"VK_PAD_LTHUMB_UPRIGHT","features":[216]},{"name":"VK_PAD_LTRIGGER","features":[216]},{"name":"VK_PAD_RSHOULDER","features":[216]},{"name":"VK_PAD_RTHUMB_DOWN","features":[216]},{"name":"VK_PAD_RTHUMB_DOWNLEFT","features":[216]},{"name":"VK_PAD_RTHUMB_DOWNRIGHT","features":[216]},{"name":"VK_PAD_RTHUMB_LEFT","features":[216]},{"name":"VK_PAD_RTHUMB_PRESS","features":[216]},{"name":"VK_PAD_RTHUMB_RIGHT","features":[216]},{"name":"VK_PAD_RTHUMB_UP","features":[216]},{"name":"VK_PAD_RTHUMB_UPLEFT","features":[216]},{"name":"VK_PAD_RTHUMB_UPRIGHT","features":[216]},{"name":"VK_PAD_RTRIGGER","features":[216]},{"name":"VK_PAD_START","features":[216]},{"name":"VK_PAD_X","features":[216]},{"name":"VK_PAD_Y","features":[216]},{"name":"XINPUT_BATTERY_INFORMATION","features":[216]},{"name":"XINPUT_CAPABILITIES","features":[216]},{"name":"XINPUT_CAPABILITIES_FLAGS","features":[216]},{"name":"XINPUT_CAPS_FFB_SUPPORTED","features":[216]},{"name":"XINPUT_CAPS_NO_NAVIGATION","features":[216]},{"name":"XINPUT_CAPS_PMD_SUPPORTED","features":[216]},{"name":"XINPUT_CAPS_VOICE_SUPPORTED","features":[216]},{"name":"XINPUT_CAPS_WIRELESS","features":[216]},{"name":"XINPUT_DEVSUBTYPE","features":[216]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_PAD","features":[216]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_STICK","features":[216]},{"name":"XINPUT_DEVSUBTYPE_DANCE_PAD","features":[216]},{"name":"XINPUT_DEVSUBTYPE_DRUM_KIT","features":[216]},{"name":"XINPUT_DEVSUBTYPE_FLIGHT_STICK","features":[216]},{"name":"XINPUT_DEVSUBTYPE_GAMEPAD","features":[216]},{"name":"XINPUT_DEVSUBTYPE_GUITAR","features":[216]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_ALTERNATE","features":[216]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_BASS","features":[216]},{"name":"XINPUT_DEVSUBTYPE_UNKNOWN","features":[216]},{"name":"XINPUT_DEVSUBTYPE_WHEEL","features":[216]},{"name":"XINPUT_DEVTYPE","features":[216]},{"name":"XINPUT_DEVTYPE_GAMEPAD","features":[216]},{"name":"XINPUT_DLL","features":[216]},{"name":"XINPUT_DLL_A","features":[216]},{"name":"XINPUT_DLL_W","features":[216]},{"name":"XINPUT_FLAG","features":[216]},{"name":"XINPUT_FLAG_ALL","features":[216]},{"name":"XINPUT_FLAG_GAMEPAD","features":[216]},{"name":"XINPUT_GAMEPAD","features":[216]},{"name":"XINPUT_GAMEPAD_A","features":[216]},{"name":"XINPUT_GAMEPAD_B","features":[216]},{"name":"XINPUT_GAMEPAD_BACK","features":[216]},{"name":"XINPUT_GAMEPAD_BUTTON_FLAGS","features":[216]},{"name":"XINPUT_GAMEPAD_DPAD_DOWN","features":[216]},{"name":"XINPUT_GAMEPAD_DPAD_LEFT","features":[216]},{"name":"XINPUT_GAMEPAD_DPAD_RIGHT","features":[216]},{"name":"XINPUT_GAMEPAD_DPAD_UP","features":[216]},{"name":"XINPUT_GAMEPAD_LEFT_SHOULDER","features":[216]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB","features":[216]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE","features":[216]},{"name":"XINPUT_GAMEPAD_RIGHT_SHOULDER","features":[216]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB","features":[216]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE","features":[216]},{"name":"XINPUT_GAMEPAD_START","features":[216]},{"name":"XINPUT_GAMEPAD_TRIGGER_THRESHOLD","features":[216]},{"name":"XINPUT_GAMEPAD_X","features":[216]},{"name":"XINPUT_GAMEPAD_Y","features":[216]},{"name":"XINPUT_KEYSTROKE","features":[216]},{"name":"XINPUT_KEYSTROKE_FLAGS","features":[216]},{"name":"XINPUT_KEYSTROKE_KEYDOWN","features":[216]},{"name":"XINPUT_KEYSTROKE_KEYUP","features":[216]},{"name":"XINPUT_KEYSTROKE_REPEAT","features":[216]},{"name":"XINPUT_STATE","features":[216]},{"name":"XINPUT_VIBRATION","features":[216]},{"name":"XINPUT_VIRTUAL_KEY","features":[216]},{"name":"XInputEnable","features":[1,216]},{"name":"XInputGetAudioDeviceIds","features":[216]},{"name":"XInputGetBatteryInformation","features":[216]},{"name":"XInputGetCapabilities","features":[216]},{"name":"XInputGetKeystroke","features":[216]},{"name":"XInputGetState","features":[216]},{"name":"XInputSetState","features":[216]},{"name":"XUSER_INDEX_ANY","features":[216]},{"name":"XUSER_MAX_COUNT","features":[216]}],"662":[{"name":"AddPointerInteractionContext","features":[217]},{"name":"BufferPointerPacketsInteractionContext","features":[1,209,217,50]},{"name":"CROSS_SLIDE_FLAGS","features":[217]},{"name":"CROSS_SLIDE_FLAGS_MAX","features":[217]},{"name":"CROSS_SLIDE_FLAGS_NONE","features":[217]},{"name":"CROSS_SLIDE_FLAGS_REARRANGE","features":[217]},{"name":"CROSS_SLIDE_FLAGS_SELECT","features":[217]},{"name":"CROSS_SLIDE_FLAGS_SPEED_BUMP","features":[217]},{"name":"CROSS_SLIDE_PARAMETER","features":[217]},{"name":"CROSS_SLIDE_THRESHOLD","features":[217]},{"name":"CROSS_SLIDE_THRESHOLD_COUNT","features":[217]},{"name":"CROSS_SLIDE_THRESHOLD_MAX","features":[217]},{"name":"CROSS_SLIDE_THRESHOLD_REARRANGE_START","features":[217]},{"name":"CROSS_SLIDE_THRESHOLD_SELECT_START","features":[217]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_END","features":[217]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_START","features":[217]},{"name":"CreateInteractionContext","features":[217]},{"name":"DestroyInteractionContext","features":[217]},{"name":"GetCrossSlideParameterInteractionContext","features":[217]},{"name":"GetHoldParameterInteractionContext","features":[217]},{"name":"GetInertiaParameterInteractionContext","features":[217]},{"name":"GetInteractionConfigurationInteractionContext","features":[217]},{"name":"GetMouseWheelParameterInteractionContext","features":[217]},{"name":"GetPropertyInteractionContext","features":[217]},{"name":"GetStateInteractionContext","features":[1,209,217,50]},{"name":"GetTapParameterInteractionContext","features":[217]},{"name":"GetTranslationParameterInteractionContext","features":[217]},{"name":"HINTERACTIONCONTEXT","features":[217]},{"name":"HOLD_PARAMETER","features":[217]},{"name":"HOLD_PARAMETER_MAX","features":[217]},{"name":"HOLD_PARAMETER_MAX_CONTACT_COUNT","features":[217]},{"name":"HOLD_PARAMETER_MIN_CONTACT_COUNT","features":[217]},{"name":"HOLD_PARAMETER_THRESHOLD_RADIUS","features":[217]},{"name":"HOLD_PARAMETER_THRESHOLD_START_DELAY","features":[217]},{"name":"INERTIA_PARAMETER","features":[217]},{"name":"INERTIA_PARAMETER_EXPANSION_DECELERATION","features":[217]},{"name":"INERTIA_PARAMETER_EXPANSION_EXPANSION","features":[217]},{"name":"INERTIA_PARAMETER_MAX","features":[217]},{"name":"INERTIA_PARAMETER_ROTATION_ANGLE","features":[217]},{"name":"INERTIA_PARAMETER_ROTATION_DECELERATION","features":[217]},{"name":"INERTIA_PARAMETER_TRANSLATION_DECELERATION","features":[217]},{"name":"INERTIA_PARAMETER_TRANSLATION_DISPLACEMENT","features":[217]},{"name":"INTERACTION_ARGUMENTS_CROSS_SLIDE","features":[217]},{"name":"INTERACTION_ARGUMENTS_MANIPULATION","features":[217]},{"name":"INTERACTION_ARGUMENTS_TAP","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAGS","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_EXACT","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_HORIZONTAL","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_REARRANGE","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SELECT","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SPEED_BUMP","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_DRAG","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MOUSE","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MULTIPLE_FINGER","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_EXACT","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_MULTIPLE_FINGER_PANNING","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_X","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_Y","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION_INERTIA","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING_INERTIA","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_INERTIA","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_X","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_Y","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_MAX","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_NONE","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_SECONDARY_TAP","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_DOUBLE","features":[217]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_MULTIPLE_FINGER","features":[217]},{"name":"INTERACTION_CONTEXT_CONFIGURATION","features":[217]},{"name":"INTERACTION_CONTEXT_OUTPUT","features":[217,50]},{"name":"INTERACTION_CONTEXT_OUTPUT2","features":[217,50]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK","features":[217,50]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK2","features":[217,50]},{"name":"INTERACTION_CONTEXT_PROPERTY","features":[217]},{"name":"INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS","features":[217]},{"name":"INTERACTION_CONTEXT_PROPERTY_INTERACTION_UI_FEEDBACK","features":[217]},{"name":"INTERACTION_CONTEXT_PROPERTY_MAX","features":[217]},{"name":"INTERACTION_CONTEXT_PROPERTY_MEASUREMENT_UNITS","features":[217]},{"name":"INTERACTION_FLAGS","features":[217]},{"name":"INTERACTION_FLAG_BEGIN","features":[217]},{"name":"INTERACTION_FLAG_CANCEL","features":[217]},{"name":"INTERACTION_FLAG_END","features":[217]},{"name":"INTERACTION_FLAG_INERTIA","features":[217]},{"name":"INTERACTION_FLAG_MAX","features":[217]},{"name":"INTERACTION_FLAG_NONE","features":[217]},{"name":"INTERACTION_ID","features":[217]},{"name":"INTERACTION_ID_CROSS_SLIDE","features":[217]},{"name":"INTERACTION_ID_DRAG","features":[217]},{"name":"INTERACTION_ID_HOLD","features":[217]},{"name":"INTERACTION_ID_MANIPULATION","features":[217]},{"name":"INTERACTION_ID_MAX","features":[217]},{"name":"INTERACTION_ID_NONE","features":[217]},{"name":"INTERACTION_ID_SECONDARY_TAP","features":[217]},{"name":"INTERACTION_ID_TAP","features":[217]},{"name":"INTERACTION_STATE","features":[217]},{"name":"INTERACTION_STATE_IDLE","features":[217]},{"name":"INTERACTION_STATE_IN_INTERACTION","features":[217]},{"name":"INTERACTION_STATE_MAX","features":[217]},{"name":"INTERACTION_STATE_POSSIBLE_DOUBLE_TAP","features":[217]},{"name":"MANIPULATION_RAILS_STATE","features":[217]},{"name":"MANIPULATION_RAILS_STATE_FREE","features":[217]},{"name":"MANIPULATION_RAILS_STATE_MAX","features":[217]},{"name":"MANIPULATION_RAILS_STATE_RAILED","features":[217]},{"name":"MANIPULATION_RAILS_STATE_UNDECIDED","features":[217]},{"name":"MANIPULATION_TRANSFORM","features":[217]},{"name":"MANIPULATION_VELOCITY","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_X","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_Y","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_ROTATION","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_SCALE","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER_MAX","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_X","features":[217]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_Y","features":[217]},{"name":"ProcessBufferedPacketsInteractionContext","features":[217]},{"name":"ProcessInertiaInteractionContext","features":[217]},{"name":"ProcessPointerFramesInteractionContext","features":[1,209,217,50]},{"name":"RegisterOutputCallbackInteractionContext","features":[217,50]},{"name":"RegisterOutputCallbackInteractionContext2","features":[217,50]},{"name":"RemovePointerInteractionContext","features":[217]},{"name":"ResetInteractionContext","features":[217]},{"name":"SetCrossSlideParametersInteractionContext","features":[217]},{"name":"SetHoldParameterInteractionContext","features":[217]},{"name":"SetInertiaParameterInteractionContext","features":[217]},{"name":"SetInteractionConfigurationInteractionContext","features":[217]},{"name":"SetMouseWheelParameterInteractionContext","features":[217]},{"name":"SetPivotInteractionContext","features":[217]},{"name":"SetPropertyInteractionContext","features":[217]},{"name":"SetTapParameterInteractionContext","features":[217]},{"name":"SetTranslationParameterInteractionContext","features":[217]},{"name":"StopInteractionContext","features":[217]},{"name":"TAP_PARAMETER","features":[217]},{"name":"TAP_PARAMETER_MAX","features":[217]},{"name":"TAP_PARAMETER_MAX_CONTACT_COUNT","features":[217]},{"name":"TAP_PARAMETER_MIN_CONTACT_COUNT","features":[217]},{"name":"TRANSLATION_PARAMETER","features":[217]},{"name":"TRANSLATION_PARAMETER_MAX","features":[217]},{"name":"TRANSLATION_PARAMETER_MAX_CONTACT_COUNT","features":[217]},{"name":"TRANSLATION_PARAMETER_MIN_CONTACT_COUNT","features":[217]}],"664":[{"name":"MAGCOLOREFFECT","features":[218]},{"name":"MAGIMAGEHEADER","features":[218]},{"name":"MAGTRANSFORM","features":[218]},{"name":"MS_CLIPAROUNDCURSOR","features":[218]},{"name":"MS_INVERTCOLORS","features":[218]},{"name":"MS_SHOWMAGNIFIEDCURSOR","features":[218]},{"name":"MW_FILTERMODE","features":[218]},{"name":"MW_FILTERMODE_EXCLUDE","features":[218]},{"name":"MW_FILTERMODE_INCLUDE","features":[218]},{"name":"MagGetColorEffect","features":[1,218]},{"name":"MagGetFullscreenColorEffect","features":[1,218]},{"name":"MagGetFullscreenTransform","features":[1,218]},{"name":"MagGetImageScalingCallback","features":[1,12,218]},{"name":"MagGetInputTransform","features":[1,218]},{"name":"MagGetWindowFilterList","features":[1,218]},{"name":"MagGetWindowSource","features":[1,218]},{"name":"MagGetWindowTransform","features":[1,218]},{"name":"MagImageScalingCallback","features":[1,12,218]},{"name":"MagInitialize","features":[1,218]},{"name":"MagSetColorEffect","features":[1,218]},{"name":"MagSetFullscreenColorEffect","features":[1,218]},{"name":"MagSetFullscreenTransform","features":[1,218]},{"name":"MagSetImageScalingCallback","features":[1,12,218]},{"name":"MagSetInputTransform","features":[1,218]},{"name":"MagSetWindowFilterList","features":[1,218]},{"name":"MagSetWindowSource","features":[1,218]},{"name":"MagSetWindowTransform","features":[1,218]},{"name":"MagShowSystemCursor","features":[1,218]},{"name":"MagUninitialize","features":[1,218]},{"name":"WC_MAGNIFIER","features":[218]},{"name":"WC_MAGNIFIERA","features":[218]},{"name":"WC_MAGNIFIERW","features":[218]}],"667":[{"name":"AASHELLMENUFILENAME","features":[109]},{"name":"AASHELLMENUITEM","features":[109]},{"name":"ABE_BOTTOM","features":[109]},{"name":"ABE_LEFT","features":[109]},{"name":"ABE_RIGHT","features":[109]},{"name":"ABE_TOP","features":[109]},{"name":"ABM_ACTIVATE","features":[109]},{"name":"ABM_GETAUTOHIDEBAR","features":[109]},{"name":"ABM_GETAUTOHIDEBAREX","features":[109]},{"name":"ABM_GETSTATE","features":[109]},{"name":"ABM_GETTASKBARPOS","features":[109]},{"name":"ABM_NEW","features":[109]},{"name":"ABM_QUERYPOS","features":[109]},{"name":"ABM_REMOVE","features":[109]},{"name":"ABM_SETAUTOHIDEBAR","features":[109]},{"name":"ABM_SETAUTOHIDEBAREX","features":[109]},{"name":"ABM_SETPOS","features":[109]},{"name":"ABM_SETSTATE","features":[109]},{"name":"ABM_WINDOWPOSCHANGED","features":[109]},{"name":"ABN_FULLSCREENAPP","features":[109]},{"name":"ABN_POSCHANGED","features":[109]},{"name":"ABN_STATECHANGE","features":[109]},{"name":"ABN_WINDOWARRANGE","features":[109]},{"name":"ABS_ALWAYSONTOP","features":[109]},{"name":"ABS_AUTOHIDE","features":[109]},{"name":"ACDD_VISIBLE","features":[109]},{"name":"ACENUMOPTION","features":[109]},{"name":"ACEO_FIRSTUNUSED","features":[109]},{"name":"ACEO_MOSTRECENTFIRST","features":[109]},{"name":"ACEO_NONE","features":[109]},{"name":"ACLO_CURRENTDIR","features":[109]},{"name":"ACLO_DESKTOP","features":[109]},{"name":"ACLO_FAVORITES","features":[109]},{"name":"ACLO_FILESYSDIRS","features":[109]},{"name":"ACLO_FILESYSONLY","features":[109]},{"name":"ACLO_MYCOMPUTER","features":[109]},{"name":"ACLO_NONE","features":[109]},{"name":"ACLO_VIRTUALNAMESPACE","features":[109]},{"name":"ACO_AUTOAPPEND","features":[109]},{"name":"ACO_AUTOSUGGEST","features":[109]},{"name":"ACO_FILTERPREFIXES","features":[109]},{"name":"ACO_NONE","features":[109]},{"name":"ACO_NOPREFIXFILTERING","features":[109]},{"name":"ACO_RTLREADING","features":[109]},{"name":"ACO_SEARCH","features":[109]},{"name":"ACO_UPDOWNKEYDROPSLIST","features":[109]},{"name":"ACO_USETAB","features":[109]},{"name":"ACO_WORD_FILTER","features":[109]},{"name":"ACTIVATEOPTIONS","features":[109]},{"name":"ADDURL_SILENT","features":[109]},{"name":"ADE_LEFT","features":[109]},{"name":"ADE_NONE","features":[109]},{"name":"ADE_RIGHT","features":[109]},{"name":"ADJACENT_DISPLAY_EDGES","features":[109]},{"name":"ADLT_FREQUENT","features":[109]},{"name":"ADLT_RECENT","features":[109]},{"name":"AD_APPLY_BUFFERED_REFRESH","features":[109]},{"name":"AD_APPLY_DYNAMICREFRESH","features":[109]},{"name":"AD_APPLY_FORCE","features":[109]},{"name":"AD_APPLY_HTMLGEN","features":[109]},{"name":"AD_APPLY_REFRESH","features":[109]},{"name":"AD_APPLY_SAVE","features":[109]},{"name":"AD_GETWP_BMP","features":[109]},{"name":"AD_GETWP_IMAGE","features":[109]},{"name":"AD_GETWP_LAST_APPLIED","features":[109]},{"name":"AHE_DESKTOP","features":[109]},{"name":"AHE_IMMERSIVE","features":[109]},{"name":"AHE_TYPE","features":[109]},{"name":"AHTYPE","features":[109]},{"name":"AHTYPE_ANY_APPLICATION","features":[109]},{"name":"AHTYPE_ANY_PROGID","features":[109]},{"name":"AHTYPE_APPLICATION","features":[109]},{"name":"AHTYPE_CLASS_APPLICATION","features":[109]},{"name":"AHTYPE_MACHINEDEFAULT","features":[109]},{"name":"AHTYPE_PROGID","features":[109]},{"name":"AHTYPE_UNDEFINED","features":[109]},{"name":"AHTYPE_USER_APPLICATION","features":[109]},{"name":"AIM_COMMENTS","features":[109]},{"name":"AIM_CONTACT","features":[109]},{"name":"AIM_DISPLAYNAME","features":[109]},{"name":"AIM_HELPLINK","features":[109]},{"name":"AIM_IMAGE","features":[109]},{"name":"AIM_INSTALLDATE","features":[109]},{"name":"AIM_INSTALLLOCATION","features":[109]},{"name":"AIM_INSTALLSOURCE","features":[109]},{"name":"AIM_LANGUAGE","features":[109]},{"name":"AIM_PRODUCTID","features":[109]},{"name":"AIM_PUBLISHER","features":[109]},{"name":"AIM_READMEURL","features":[109]},{"name":"AIM_REGISTEREDCOMPANY","features":[109]},{"name":"AIM_REGISTEREDOWNER","features":[109]},{"name":"AIM_SUPPORTTELEPHONE","features":[109]},{"name":"AIM_SUPPORTURL","features":[109]},{"name":"AIM_UPDATEINFOURL","features":[109]},{"name":"AIM_VERSION","features":[109]},{"name":"AL_EFFECTIVE","features":[109]},{"name":"AL_MACHINE","features":[109]},{"name":"AL_USER","features":[109]},{"name":"AO_DESIGNMODE","features":[109]},{"name":"AO_NOERRORUI","features":[109]},{"name":"AO_NONE","features":[109]},{"name":"AO_NOSPLASHSCREEN","features":[109]},{"name":"AO_PRELAUNCH","features":[109]},{"name":"APPACTIONFLAGS","features":[109]},{"name":"APPACTION_ADDLATER","features":[109]},{"name":"APPACTION_CANGETSIZE","features":[109]},{"name":"APPACTION_INSTALL","features":[109]},{"name":"APPACTION_MODIFY","features":[109]},{"name":"APPACTION_MODIFYREMOVE","features":[109]},{"name":"APPACTION_REPAIR","features":[109]},{"name":"APPACTION_UNINSTALL","features":[109]},{"name":"APPACTION_UNSCHEDULE","features":[109]},{"name":"APPACTION_UPGRADE","features":[109]},{"name":"APPBARDATA","features":[1,109]},{"name":"APPBARDATA","features":[1,109]},{"name":"APPCATEGORYINFO","features":[109]},{"name":"APPCATEGORYINFOLIST","features":[109]},{"name":"APPDOCLISTTYPE","features":[109]},{"name":"APPINFODATA","features":[109]},{"name":"APPINFODATAFLAGS","features":[109]},{"name":"APPLET_PROC","features":[1,109]},{"name":"APPLICATION_VIEW_MIN_WIDTH","features":[109]},{"name":"APPLICATION_VIEW_ORIENTATION","features":[109]},{"name":"APPLICATION_VIEW_SIZE_PREFERENCE","features":[109]},{"name":"APPLICATION_VIEW_STATE","features":[109]},{"name":"APPNAMEBUFFERLEN","features":[109]},{"name":"ARCONTENT_AUDIOCD","features":[109]},{"name":"ARCONTENT_AUTOPLAYMUSIC","features":[109]},{"name":"ARCONTENT_AUTOPLAYPIX","features":[109]},{"name":"ARCONTENT_AUTOPLAYVIDEO","features":[109]},{"name":"ARCONTENT_AUTORUNINF","features":[109]},{"name":"ARCONTENT_BLANKBD","features":[109]},{"name":"ARCONTENT_BLANKCD","features":[109]},{"name":"ARCONTENT_BLANKDVD","features":[109]},{"name":"ARCONTENT_BLURAY","features":[109]},{"name":"ARCONTENT_CAMERASTORAGE","features":[109]},{"name":"ARCONTENT_CUSTOMEVENT","features":[109]},{"name":"ARCONTENT_DVDAUDIO","features":[109]},{"name":"ARCONTENT_DVDMOVIE","features":[109]},{"name":"ARCONTENT_MASK","features":[109]},{"name":"ARCONTENT_NONE","features":[109]},{"name":"ARCONTENT_PHASE_FINAL","features":[109]},{"name":"ARCONTENT_PHASE_MASK","features":[109]},{"name":"ARCONTENT_PHASE_PRESNIFF","features":[109]},{"name":"ARCONTENT_PHASE_SNIFFING","features":[109]},{"name":"ARCONTENT_PHASE_UNKNOWN","features":[109]},{"name":"ARCONTENT_SVCD","features":[109]},{"name":"ARCONTENT_UNKNOWNCONTENT","features":[109]},{"name":"ARCONTENT_VCD","features":[109]},{"name":"ASSOCCLASS","features":[109]},{"name":"ASSOCCLASS_APP_KEY","features":[109]},{"name":"ASSOCCLASS_APP_STR","features":[109]},{"name":"ASSOCCLASS_CLSID_KEY","features":[109]},{"name":"ASSOCCLASS_CLSID_STR","features":[109]},{"name":"ASSOCCLASS_FIXED_PROGID_STR","features":[109]},{"name":"ASSOCCLASS_FOLDER","features":[109]},{"name":"ASSOCCLASS_PROGID_KEY","features":[109]},{"name":"ASSOCCLASS_PROGID_STR","features":[109]},{"name":"ASSOCCLASS_PROTOCOL_STR","features":[109]},{"name":"ASSOCCLASS_SHELL_KEY","features":[109]},{"name":"ASSOCCLASS_STAR","features":[109]},{"name":"ASSOCCLASS_SYSTEM_STR","features":[109]},{"name":"ASSOCDATA","features":[109]},{"name":"ASSOCDATA_EDITFLAGS","features":[109]},{"name":"ASSOCDATA_HASPERUSERASSOC","features":[109]},{"name":"ASSOCDATA_MAX","features":[109]},{"name":"ASSOCDATA_MSIDESCRIPTOR","features":[109]},{"name":"ASSOCDATA_NOACTIVATEHANDLER","features":[109]},{"name":"ASSOCDATA_UNUSED1","features":[109]},{"name":"ASSOCDATA_VALUE","features":[109]},{"name":"ASSOCENUM","features":[109]},{"name":"ASSOCENUM_NONE","features":[109]},{"name":"ASSOCF","features":[109]},{"name":"ASSOCF_APP_TO_APP","features":[109]},{"name":"ASSOCF_IGNOREBASECLASS","features":[109]},{"name":"ASSOCF_INIT_BYEXENAME","features":[109]},{"name":"ASSOCF_INIT_DEFAULTTOFOLDER","features":[109]},{"name":"ASSOCF_INIT_DEFAULTTOSTAR","features":[109]},{"name":"ASSOCF_INIT_FIXED_PROGID","features":[109]},{"name":"ASSOCF_INIT_FOR_FILE","features":[109]},{"name":"ASSOCF_INIT_IGNOREUNKNOWN","features":[109]},{"name":"ASSOCF_INIT_NOREMAPCLSID","features":[109]},{"name":"ASSOCF_IS_FULL_URI","features":[109]},{"name":"ASSOCF_IS_PROTOCOL","features":[109]},{"name":"ASSOCF_NOFIXUPS","features":[109]},{"name":"ASSOCF_NONE","features":[109]},{"name":"ASSOCF_NOTRUNCATE","features":[109]},{"name":"ASSOCF_NOUSERSETTINGS","features":[109]},{"name":"ASSOCF_OPEN_BYEXENAME","features":[109]},{"name":"ASSOCF_PER_MACHINE_ONLY","features":[109]},{"name":"ASSOCF_REMAPRUNDLL","features":[109]},{"name":"ASSOCF_VERIFY","features":[109]},{"name":"ASSOCIATIONELEMENT","features":[49,109]},{"name":"ASSOCIATIONELEMENT","features":[49,109]},{"name":"ASSOCIATIONLEVEL","features":[109]},{"name":"ASSOCIATIONTYPE","features":[109]},{"name":"ASSOCKEY","features":[109]},{"name":"ASSOCKEY_APP","features":[109]},{"name":"ASSOCKEY_BASECLASS","features":[109]},{"name":"ASSOCKEY_CLASS","features":[109]},{"name":"ASSOCKEY_MAX","features":[109]},{"name":"ASSOCKEY_SHELLEXECCLASS","features":[109]},{"name":"ASSOCSTR","features":[109]},{"name":"ASSOCSTR_APPICONREFERENCE","features":[109]},{"name":"ASSOCSTR_APPID","features":[109]},{"name":"ASSOCSTR_APPPUBLISHER","features":[109]},{"name":"ASSOCSTR_COMMAND","features":[109]},{"name":"ASSOCSTR_CONTENTTYPE","features":[109]},{"name":"ASSOCSTR_DDEAPPLICATION","features":[109]},{"name":"ASSOCSTR_DDECOMMAND","features":[109]},{"name":"ASSOCSTR_DDEIFEXEC","features":[109]},{"name":"ASSOCSTR_DDETOPIC","features":[109]},{"name":"ASSOCSTR_DEFAULTICON","features":[109]},{"name":"ASSOCSTR_DELEGATEEXECUTE","features":[109]},{"name":"ASSOCSTR_DROPTARGET","features":[109]},{"name":"ASSOCSTR_EXECUTABLE","features":[109]},{"name":"ASSOCSTR_FRIENDLYAPPNAME","features":[109]},{"name":"ASSOCSTR_FRIENDLYDOCNAME","features":[109]},{"name":"ASSOCSTR_INFOTIP","features":[109]},{"name":"ASSOCSTR_MAX","features":[109]},{"name":"ASSOCSTR_NOOPEN","features":[109]},{"name":"ASSOCSTR_PROGID","features":[109]},{"name":"ASSOCSTR_QUICKTIP","features":[109]},{"name":"ASSOCSTR_SHELLEXTENSION","features":[109]},{"name":"ASSOCSTR_SHELLNEWVALUE","features":[109]},{"name":"ASSOCSTR_SUPPORTED_URI_PROTOCOLS","features":[109]},{"name":"ASSOCSTR_TILEINFO","features":[109]},{"name":"ASSOC_FILTER","features":[109]},{"name":"ASSOC_FILTER_NONE","features":[109]},{"name":"ASSOC_FILTER_RECOMMENDED","features":[109]},{"name":"ATTACHMENT_ACTION","features":[109]},{"name":"ATTACHMENT_ACTION_CANCEL","features":[109]},{"name":"ATTACHMENT_ACTION_EXEC","features":[109]},{"name":"ATTACHMENT_ACTION_SAVE","features":[109]},{"name":"ATTACHMENT_PROMPT","features":[109]},{"name":"ATTACHMENT_PROMPT_EXEC","features":[109]},{"name":"ATTACHMENT_PROMPT_EXEC_OR_SAVE","features":[109]},{"name":"ATTACHMENT_PROMPT_NONE","features":[109]},{"name":"ATTACHMENT_PROMPT_SAVE","features":[109]},{"name":"AT_FILEEXTENSION","features":[109]},{"name":"AT_MIMETYPE","features":[109]},{"name":"AT_STARTMENUCLIENT","features":[109]},{"name":"AT_URLPROTOCOL","features":[109]},{"name":"AUTOCOMPLETELISTOPTIONS","features":[109]},{"name":"AUTOCOMPLETEOPTIONS","features":[109]},{"name":"AUTO_SCROLL_DATA","features":[1,109]},{"name":"AVMW_320","features":[109]},{"name":"AVMW_500","features":[109]},{"name":"AVMW_DEFAULT","features":[109]},{"name":"AVO_LANDSCAPE","features":[109]},{"name":"AVO_PORTRAIT","features":[109]},{"name":"AVSP_CUSTOM","features":[109]},{"name":"AVSP_DEFAULT","features":[109]},{"name":"AVSP_USE_HALF","features":[109]},{"name":"AVSP_USE_LESS","features":[109]},{"name":"AVSP_USE_MINIMUM","features":[109]},{"name":"AVSP_USE_MORE","features":[109]},{"name":"AVSP_USE_NONE","features":[109]},{"name":"AVS_FILLED","features":[109]},{"name":"AVS_FULLSCREEN_LANDSCAPE","features":[109]},{"name":"AVS_FULLSCREEN_PORTRAIT","features":[109]},{"name":"AVS_SNAPPED","features":[109]},{"name":"AccessibilityDockingService","features":[109]},{"name":"AllowSmallerSize","features":[109]},{"name":"AlphabeticalCategorizer","features":[109]},{"name":"AppShellVerbHandler","features":[109]},{"name":"AppStartupLink","features":[109]},{"name":"AppVisibility","features":[109]},{"name":"ApplicationActivationManager","features":[109]},{"name":"ApplicationAssociationRegistration","features":[109]},{"name":"ApplicationAssociationRegistrationUI","features":[109]},{"name":"ApplicationDesignModeSettings","features":[109]},{"name":"ApplicationDestinations","features":[109]},{"name":"ApplicationDocumentLists","features":[109]},{"name":"AssocCreate","features":[109]},{"name":"AssocCreateForClasses","features":[49,109]},{"name":"AssocGetDetailsOfPropKey","features":[1,41,42,219,60]},{"name":"AssocGetPerceivedType","features":[219]},{"name":"AssocIsDangerous","features":[1,109]},{"name":"AssocQueryKeyA","features":[49,109]},{"name":"AssocQueryKeyW","features":[49,109]},{"name":"AssocQueryStringA","features":[109]},{"name":"AssocQueryStringByKeyA","features":[49,109]},{"name":"AssocQueryStringByKeyW","features":[49,109]},{"name":"AssocQueryStringW","features":[109]},{"name":"AttachmentServices","features":[109]},{"name":"BANDINFOSFB","features":[1,219]},{"name":"BANDSITECID","features":[109]},{"name":"BANDSITEINFO","features":[109]},{"name":"BANNER_NOTIFICATION","features":[109]},{"name":"BANNER_NOTIFICATION_EVENT","features":[109]},{"name":"BASEBROWSERDATALH","features":[1,219]},{"name":"BASEBROWSERDATAXP","features":[1,219]},{"name":"BFFCALLBACK","features":[1,109]},{"name":"BFFM_ENABLEOK","features":[109]},{"name":"BFFM_INITIALIZED","features":[109]},{"name":"BFFM_IUNKNOWN","features":[109]},{"name":"BFFM_SELCHANGED","features":[109]},{"name":"BFFM_SETEXPANDED","features":[109]},{"name":"BFFM_SETOKTEXT","features":[109]},{"name":"BFFM_SETSELECTION","features":[109]},{"name":"BFFM_SETSELECTIONA","features":[109]},{"name":"BFFM_SETSELECTIONW","features":[109]},{"name":"BFFM_SETSTATUSTEXT","features":[109]},{"name":"BFFM_SETSTATUSTEXTA","features":[109]},{"name":"BFFM_SETSTATUSTEXTW","features":[109]},{"name":"BFFM_VALIDATEFAILED","features":[109]},{"name":"BFFM_VALIDATEFAILEDA","features":[109]},{"name":"BFFM_VALIDATEFAILEDW","features":[109]},{"name":"BFO_ADD_IE_TOCAPTIONBAR","features":[109]},{"name":"BFO_BOTH_OPTIONS","features":[109]},{"name":"BFO_BROWSER_PERSIST_SETTINGS","features":[109]},{"name":"BFO_BROWSE_NO_IN_NEW_PROCESS","features":[109]},{"name":"BFO_ENABLE_HYPERLINK_TRACKING","features":[109]},{"name":"BFO_GO_HOME_PAGE","features":[109]},{"name":"BFO_NONE","features":[109]},{"name":"BFO_NO_PARENT_FOLDER_SUPPORT","features":[109]},{"name":"BFO_NO_REOPEN_NEXT_RESTART","features":[109]},{"name":"BFO_PREFER_IEPROCESS","features":[109]},{"name":"BFO_QUERY_ALL","features":[109]},{"name":"BFO_RENAME_FOLDER_OPTIONS_TOINTERNET","features":[109]},{"name":"BFO_SHOW_NAVIGATION_CANCELLED","features":[109]},{"name":"BFO_SUBSTITUE_INTERNET_START_PAGE","features":[109]},{"name":"BFO_USE_DIALUP_REF","features":[109]},{"name":"BFO_USE_IE_LOGOBANDING","features":[109]},{"name":"BFO_USE_IE_OFFLINE_SUPPORT","features":[109]},{"name":"BFO_USE_IE_STATUSBAR","features":[109]},{"name":"BFO_USE_IE_TOOLBAR","features":[109]},{"name":"BHID_AssociationArray","features":[109]},{"name":"BHID_DataObject","features":[109]},{"name":"BHID_EnumAssocHandlers","features":[109]},{"name":"BHID_EnumItems","features":[109]},{"name":"BHID_FilePlaceholder","features":[109]},{"name":"BHID_Filter","features":[109]},{"name":"BHID_LinkTargetItem","features":[109]},{"name":"BHID_PropertyStore","features":[109]},{"name":"BHID_RandomAccessStream","features":[109]},{"name":"BHID_SFObject","features":[109]},{"name":"BHID_SFUIObject","features":[109]},{"name":"BHID_SFViewObject","features":[109]},{"name":"BHID_Storage","features":[109]},{"name":"BHID_StorageEnum","features":[109]},{"name":"BHID_StorageItem","features":[109]},{"name":"BHID_Stream","features":[109]},{"name":"BHID_ThumbnailHandler","features":[109]},{"name":"BHID_Transfer","features":[109]},{"name":"BIF_BROWSEFILEJUNCTIONS","features":[109]},{"name":"BIF_BROWSEFORCOMPUTER","features":[109]},{"name":"BIF_BROWSEFORPRINTER","features":[109]},{"name":"BIF_BROWSEINCLUDEFILES","features":[109]},{"name":"BIF_BROWSEINCLUDEURLS","features":[109]},{"name":"BIF_DONTGOBELOWDOMAIN","features":[109]},{"name":"BIF_EDITBOX","features":[109]},{"name":"BIF_NEWDIALOGSTYLE","features":[109]},{"name":"BIF_NONEWFOLDERBUTTON","features":[109]},{"name":"BIF_NOTRANSLATETARGETS","features":[109]},{"name":"BIF_PREFER_INTERNET_SHORTCUT","features":[109]},{"name":"BIF_RETURNFSANCESTORS","features":[109]},{"name":"BIF_RETURNONLYFSDIRS","features":[109]},{"name":"BIF_SHAREABLE","features":[109]},{"name":"BIF_STATUSTEXT","features":[109]},{"name":"BIF_UAHINT","features":[109]},{"name":"BIF_VALIDATE","features":[109]},{"name":"BIND_INTERRUPTABLE","features":[109]},{"name":"BMICON_LARGE","features":[109]},{"name":"BMICON_SMALL","features":[109]},{"name":"BNE_Button1Clicked","features":[109]},{"name":"BNE_Button2Clicked","features":[109]},{"name":"BNE_Closed","features":[109]},{"name":"BNE_Dismissed","features":[109]},{"name":"BNE_Hovered","features":[109]},{"name":"BNE_Rendered","features":[109]},{"name":"BNSTATE","features":[109]},{"name":"BNS_BEGIN_NAVIGATE","features":[109]},{"name":"BNS_NAVIGATE","features":[109]},{"name":"BNS_NORMAL","features":[109]},{"name":"BROWSEINFOA","features":[1,219]},{"name":"BROWSEINFOW","features":[1,219]},{"name":"BSF_CANMAXIMIZE","features":[109]},{"name":"BSF_DELEGATEDNAVIGATION","features":[109]},{"name":"BSF_DONTSHOWNAVCANCELPAGE","features":[109]},{"name":"BSF_FEEDNAVIGATION","features":[109]},{"name":"BSF_FEEDSUBSCRIBED","features":[109]},{"name":"BSF_HTMLNAVCANCELED","features":[109]},{"name":"BSF_MERGEDMENUS","features":[109]},{"name":"BSF_NAVNOHISTORY","features":[109]},{"name":"BSF_NOLOCALFILEWARNING","features":[109]},{"name":"BSF_REGISTERASDROPTARGET","features":[109]},{"name":"BSF_RESIZABLE","features":[109]},{"name":"BSF_SETNAVIGATABLECODEPAGE","features":[109]},{"name":"BSF_THEATERMODE","features":[109]},{"name":"BSF_TOPBROWSER","features":[109]},{"name":"BSF_TRUSTEDFORACTIVEX","features":[109]},{"name":"BSF_UISETBYAUTOMATION","features":[109]},{"name":"BSID_BANDADDED","features":[109]},{"name":"BSID_BANDREMOVED","features":[109]},{"name":"BSIM_STATE","features":[109]},{"name":"BSIM_STYLE","features":[109]},{"name":"BSIS_ALWAYSGRIPPER","features":[109]},{"name":"BSIS_AUTOGRIPPER","features":[109]},{"name":"BSIS_FIXEDORDER","features":[109]},{"name":"BSIS_LEFTALIGN","features":[109]},{"name":"BSIS_LOCKED","features":[109]},{"name":"BSIS_NOCAPTION","features":[109]},{"name":"BSIS_NOCONTEXTMENU","features":[109]},{"name":"BSIS_NODROPTARGET","features":[109]},{"name":"BSIS_NOGRIPPER","features":[109]},{"name":"BSIS_PREFERNOLINEBREAK","features":[109]},{"name":"BSIS_PRESERVEORDERDURINGLAYOUT","features":[109]},{"name":"BSIS_SINGLECLICK","features":[109]},{"name":"BSSF_NOTITLE","features":[109]},{"name":"BSSF_UNDELETEABLE","features":[109]},{"name":"BSSF_VISIBLE","features":[109]},{"name":"BUFFLEN","features":[109]},{"name":"BrowserNavConstants","features":[109]},{"name":"CABINETSTATE","features":[109]},{"name":"CABINETSTATE_VERSION","features":[109]},{"name":"CAMERAROLL_E_NO_DOWNSAMPLING_REQUIRED","features":[109]},{"name":"CATEGORYINFO_FLAGS","features":[109]},{"name":"CATEGORY_INFO","features":[109]},{"name":"CATID_BrowsableShellExt","features":[109]},{"name":"CATID_BrowseInPlace","features":[109]},{"name":"CATID_CommBand","features":[109]},{"name":"CATID_DeskBand","features":[109]},{"name":"CATID_FilePlaceholderMergeHandler","features":[109]},{"name":"CATID_InfoBand","features":[109]},{"name":"CATID_LocationFactory","features":[109]},{"name":"CATID_LocationProvider","features":[109]},{"name":"CATID_SearchableApplication","features":[109]},{"name":"CATINFO_COLLAPSED","features":[109]},{"name":"CATINFO_EXPANDED","features":[109]},{"name":"CATINFO_HIDDEN","features":[109]},{"name":"CATINFO_NOHEADER","features":[109]},{"name":"CATINFO_NOHEADERCOUNT","features":[109]},{"name":"CATINFO_NORMAL","features":[109]},{"name":"CATINFO_NOTCOLLAPSIBLE","features":[109]},{"name":"CATINFO_SEPARATE_IMAGES","features":[109]},{"name":"CATINFO_SHOWEMPTY","features":[109]},{"name":"CATINFO_SUBSETTED","features":[109]},{"name":"CATSORT_DEFAULT","features":[109]},{"name":"CATSORT_FLAGS","features":[109]},{"name":"CATSORT_NAME","features":[109]},{"name":"CDB2GVF_ADDSHIELD","features":[109]},{"name":"CDB2GVF_ALLOWPREVIEWPANE","features":[109]},{"name":"CDB2GVF_ISFILESAVE","features":[109]},{"name":"CDB2GVF_ISFOLDERPICKER","features":[109]},{"name":"CDB2GVF_NOINCLUDEITEM","features":[109]},{"name":"CDB2GVF_NOSELECTVERB","features":[109]},{"name":"CDB2GVF_SHOWALLFILES","features":[109]},{"name":"CDB2N_CONTEXTMENU_DONE","features":[109]},{"name":"CDB2N_CONTEXTMENU_START","features":[109]},{"name":"CDBE_RET_DEFAULT","features":[109]},{"name":"CDBE_RET_DONTRUNOTHEREXTS","features":[109]},{"name":"CDBE_RET_STOPWIZARD","features":[109]},{"name":"CDBE_TYPE_ALL","features":[109]},{"name":"CDBE_TYPE_DATA","features":[109]},{"name":"CDBE_TYPE_MUSIC","features":[109]},{"name":"CDBOSC_KILLFOCUS","features":[109]},{"name":"CDBOSC_RENAME","features":[109]},{"name":"CDBOSC_SELCHANGE","features":[109]},{"name":"CDBOSC_SETFOCUS","features":[109]},{"name":"CDBOSC_STATECHANGE","features":[109]},{"name":"CDBURNINGEXTENSIONRET","features":[109]},{"name":"CDBurn","features":[109]},{"name":"CDCONTROLSTATEF","features":[109]},{"name":"CDCS_ENABLED","features":[109]},{"name":"CDCS_ENABLEDVISIBLE","features":[109]},{"name":"CDCS_INACTIVE","features":[109]},{"name":"CDCS_VISIBLE","features":[109]},{"name":"CDefFolderMenu_Create2","features":[1,49,219]},{"name":"CFSTR_AUTOPLAY_SHELLIDLISTS","features":[109]},{"name":"CFSTR_DROPDESCRIPTION","features":[109]},{"name":"CFSTR_FILECONTENTS","features":[109]},{"name":"CFSTR_FILEDESCRIPTOR","features":[109]},{"name":"CFSTR_FILEDESCRIPTORA","features":[109]},{"name":"CFSTR_FILEDESCRIPTORW","features":[109]},{"name":"CFSTR_FILENAME","features":[109]},{"name":"CFSTR_FILENAMEA","features":[109]},{"name":"CFSTR_FILENAMEMAP","features":[109]},{"name":"CFSTR_FILENAMEMAPA","features":[109]},{"name":"CFSTR_FILENAMEMAPW","features":[109]},{"name":"CFSTR_FILENAMEW","features":[109]},{"name":"CFSTR_FILE_ATTRIBUTES_ARRAY","features":[109]},{"name":"CFSTR_INDRAGLOOP","features":[109]},{"name":"CFSTR_INETURL","features":[109]},{"name":"CFSTR_INETURLA","features":[109]},{"name":"CFSTR_INETURLW","features":[109]},{"name":"CFSTR_INVOKECOMMAND_DROPPARAM","features":[109]},{"name":"CFSTR_LOGICALPERFORMEDDROPEFFECT","features":[109]},{"name":"CFSTR_MOUNTEDVOLUME","features":[109]},{"name":"CFSTR_NETRESOURCES","features":[109]},{"name":"CFSTR_PASTESUCCEEDED","features":[109]},{"name":"CFSTR_PERFORMEDDROPEFFECT","features":[109]},{"name":"CFSTR_PERSISTEDDATAOBJECT","features":[109]},{"name":"CFSTR_PREFERREDDROPEFFECT","features":[109]},{"name":"CFSTR_PRINTERGROUP","features":[109]},{"name":"CFSTR_SHELLDROPHANDLER","features":[109]},{"name":"CFSTR_SHELLIDLIST","features":[109]},{"name":"CFSTR_SHELLIDLISTOFFSET","features":[109]},{"name":"CFSTR_SHELLURL","features":[109]},{"name":"CFSTR_TARGETCLSID","features":[109]},{"name":"CFSTR_UNTRUSTEDDRAGDROP","features":[109]},{"name":"CFSTR_ZONEIDENTIFIER","features":[109]},{"name":"CGID_DefView","features":[109]},{"name":"CGID_Explorer","features":[109]},{"name":"CGID_ExplorerBarDoc","features":[109]},{"name":"CGID_MENUDESKBAR","features":[109]},{"name":"CGID_ShellDocView","features":[109]},{"name":"CGID_ShellServiceObject","features":[109]},{"name":"CGID_ShortCut","features":[109]},{"name":"CIDA","features":[109]},{"name":"CIDLData_CreateFromIDArray","features":[219]},{"name":"CIE4ConnectionPoint","features":[109]},{"name":"CLOSEPROPS_DISCARD","features":[109]},{"name":"CLOSEPROPS_NONE","features":[109]},{"name":"CLSID_ACLCustomMRU","features":[109]},{"name":"CLSID_ACLHistory","features":[109]},{"name":"CLSID_ACLMRU","features":[109]},{"name":"CLSID_ACLMulti","features":[109]},{"name":"CLSID_ACListISF","features":[109]},{"name":"CLSID_ActiveDesktop","features":[109]},{"name":"CLSID_AutoComplete","features":[109]},{"name":"CLSID_CAnchorBrowsePropertyPage","features":[109]},{"name":"CLSID_CDocBrowsePropertyPage","features":[109]},{"name":"CLSID_CFSIconOverlayManager","features":[109]},{"name":"CLSID_CImageBrowsePropertyPage","features":[109]},{"name":"CLSID_CURLSearchHook","features":[109]},{"name":"CLSID_CUrlHistory","features":[109]},{"name":"CLSID_CUrlHistoryBoth","features":[109]},{"name":"CLSID_ControlPanel","features":[109]},{"name":"CLSID_DarwinAppPublisher","features":[109]},{"name":"CLSID_DocHostUIHandler","features":[109]},{"name":"CLSID_DragDropHelper","features":[109]},{"name":"CLSID_FileTypes","features":[109]},{"name":"CLSID_FolderItemsMultiLevel","features":[109]},{"name":"CLSID_FolderShortcut","features":[109]},{"name":"CLSID_HWShellExecute","features":[109]},{"name":"CLSID_ISFBand","features":[109]},{"name":"CLSID_Internet","features":[109]},{"name":"CLSID_InternetButtons","features":[109]},{"name":"CLSID_InternetShortcut","features":[109]},{"name":"CLSID_LinkColumnProvider","features":[109]},{"name":"CLSID_MSOButtons","features":[109]},{"name":"CLSID_MenuBand","features":[109]},{"name":"CLSID_MenuBandSite","features":[109]},{"name":"CLSID_MenuToolbarBase","features":[109]},{"name":"CLSID_MyComputer","features":[109]},{"name":"CLSID_MyDocuments","features":[109]},{"name":"CLSID_NetworkDomain","features":[109]},{"name":"CLSID_NetworkServer","features":[109]},{"name":"CLSID_NetworkShare","features":[109]},{"name":"CLSID_NewMenu","features":[109]},{"name":"CLSID_Printers","features":[109]},{"name":"CLSID_ProgressDialog","features":[109]},{"name":"CLSID_QueryAssociations","features":[109]},{"name":"CLSID_QuickLinks","features":[109]},{"name":"CLSID_RecycleBin","features":[109]},{"name":"CLSID_ShellFldSetExt","features":[109]},{"name":"CLSID_ShellThumbnailDiskCache","features":[109]},{"name":"CLSID_ToolbarExtButtons","features":[109]},{"name":"CMDID_INTSHORTCUTCREATE","features":[109]},{"name":"CMDSTR_NEWFOLDER","features":[109]},{"name":"CMDSTR_NEWFOLDERA","features":[109]},{"name":"CMDSTR_NEWFOLDERW","features":[109]},{"name":"CMDSTR_VIEWDETAILS","features":[109]},{"name":"CMDSTR_VIEWDETAILSA","features":[109]},{"name":"CMDSTR_VIEWDETAILSW","features":[109]},{"name":"CMDSTR_VIEWLIST","features":[109]},{"name":"CMDSTR_VIEWLISTA","features":[109]},{"name":"CMDSTR_VIEWLISTW","features":[109]},{"name":"CMF_ASYNCVERBSTATE","features":[109]},{"name":"CMF_CANRENAME","features":[109]},{"name":"CMF_DEFAULTONLY","features":[109]},{"name":"CMF_DISABLEDVERBS","features":[109]},{"name":"CMF_DONOTPICKDEFAULT","features":[109]},{"name":"CMF_EXPLORE","features":[109]},{"name":"CMF_EXTENDEDVERBS","features":[109]},{"name":"CMF_INCLUDESTATIC","features":[109]},{"name":"CMF_ITEMMENU","features":[109]},{"name":"CMF_NODEFAULT","features":[109]},{"name":"CMF_NORMAL","features":[109]},{"name":"CMF_NOVERBS","features":[109]},{"name":"CMF_OPTIMIZEFORINVOKE","features":[109]},{"name":"CMF_RESERVED","features":[109]},{"name":"CMF_SYNCCASCADEMENU","features":[109]},{"name":"CMF_VERBSONLY","features":[109]},{"name":"CMIC_MASK_CONTROL_DOWN","features":[109]},{"name":"CMIC_MASK_PTINVOKE","features":[109]},{"name":"CMIC_MASK_SHIFT_DOWN","features":[109]},{"name":"CMINVOKECOMMANDINFO","features":[1,109]},{"name":"CMINVOKECOMMANDINFOEX","features":[1,109]},{"name":"CMINVOKECOMMANDINFOEX_REMOTE","features":[1,109]},{"name":"CM_COLUMNINFO","features":[109]},{"name":"CM_ENUM_ALL","features":[109]},{"name":"CM_ENUM_FLAGS","features":[109]},{"name":"CM_ENUM_VISIBLE","features":[109]},{"name":"CM_MASK","features":[109]},{"name":"CM_MASK_DEFAULTWIDTH","features":[109]},{"name":"CM_MASK_IDEALWIDTH","features":[109]},{"name":"CM_MASK_NAME","features":[109]},{"name":"CM_MASK_STATE","features":[109]},{"name":"CM_MASK_WIDTH","features":[109]},{"name":"CM_SET_WIDTH_VALUE","features":[109]},{"name":"CM_STATE","features":[109]},{"name":"CM_STATE_ALWAYSVISIBLE","features":[109]},{"name":"CM_STATE_FIXEDWIDTH","features":[109]},{"name":"CM_STATE_NONE","features":[109]},{"name":"CM_STATE_NOSORTBYFOLDERNESS","features":[109]},{"name":"CM_STATE_VISIBLE","features":[109]},{"name":"CM_WIDTH_AUTOSIZE","features":[109]},{"name":"CM_WIDTH_USEDEFAULT","features":[109]},{"name":"COMPONENT_DEFAULT_LEFT","features":[109]},{"name":"COMPONENT_DEFAULT_TOP","features":[109]},{"name":"COMPONENT_TOP","features":[109]},{"name":"COMP_ELEM_CHECKED","features":[109]},{"name":"COMP_ELEM_CURITEMSTATE","features":[109]},{"name":"COMP_ELEM_DIRTY","features":[109]},{"name":"COMP_ELEM_FRIENDLYNAME","features":[109]},{"name":"COMP_ELEM_NOSCROLL","features":[109]},{"name":"COMP_ELEM_ORIGINAL_CSI","features":[109]},{"name":"COMP_ELEM_POS_LEFT","features":[109]},{"name":"COMP_ELEM_POS_TOP","features":[109]},{"name":"COMP_ELEM_POS_ZINDEX","features":[109]},{"name":"COMP_ELEM_RESTORED_CSI","features":[109]},{"name":"COMP_ELEM_SIZE_HEIGHT","features":[109]},{"name":"COMP_ELEM_SIZE_WIDTH","features":[109]},{"name":"COMP_ELEM_SOURCE","features":[109]},{"name":"COMP_ELEM_SUBSCRIBEDURL","features":[109]},{"name":"COMP_ELEM_TYPE","features":[109]},{"name":"COMP_TYPE_CFHTML","features":[109]},{"name":"COMP_TYPE_CONTROL","features":[109]},{"name":"COMP_TYPE_HTMLDOC","features":[109]},{"name":"COMP_TYPE_MAX","features":[109]},{"name":"COMP_TYPE_PICTURE","features":[109]},{"name":"COMP_TYPE_WEBSITE","features":[109]},{"name":"CONFIRM_CONFLICT_ITEM","features":[109]},{"name":"CONFIRM_CONFLICT_RESULT_INFO","features":[109]},{"name":"CONFLICT_RESOLUTION_CLSID_KEY","features":[109]},{"name":"COPYENGINE_E_ACCESSDENIED_READONLY","features":[109]},{"name":"COPYENGINE_E_ACCESS_DENIED_DEST","features":[109]},{"name":"COPYENGINE_E_ACCESS_DENIED_SRC","features":[109]},{"name":"COPYENGINE_E_ALREADY_EXISTS_FOLDER","features":[109]},{"name":"COPYENGINE_E_ALREADY_EXISTS_NORMAL","features":[109]},{"name":"COPYENGINE_E_ALREADY_EXISTS_READONLY","features":[109]},{"name":"COPYENGINE_E_ALREADY_EXISTS_SYSTEM","features":[109]},{"name":"COPYENGINE_E_BLOCKED_BY_DLP_POLICY","features":[109]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[109]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_POLICY","features":[109]},{"name":"COPYENGINE_E_CANCELLED","features":[109]},{"name":"COPYENGINE_E_CANNOT_MOVE_FROM_RECYCLE_BIN","features":[109]},{"name":"COPYENGINE_E_CANNOT_MOVE_SHARED_FOLDER","features":[109]},{"name":"COPYENGINE_E_CANT_REACH_SOURCE","features":[109]},{"name":"COPYENGINE_E_DEST_IS_RO_CD","features":[109]},{"name":"COPYENGINE_E_DEST_IS_RO_DVD","features":[109]},{"name":"COPYENGINE_E_DEST_IS_RW_CD","features":[109]},{"name":"COPYENGINE_E_DEST_IS_RW_DVD","features":[109]},{"name":"COPYENGINE_E_DEST_IS_R_CD","features":[109]},{"name":"COPYENGINE_E_DEST_IS_R_DVD","features":[109]},{"name":"COPYENGINE_E_DEST_SAME_TREE","features":[109]},{"name":"COPYENGINE_E_DEST_SUBTREE","features":[109]},{"name":"COPYENGINE_E_DIFF_DIR","features":[109]},{"name":"COPYENGINE_E_DIR_NOT_EMPTY","features":[109]},{"name":"COPYENGINE_E_DISK_FULL","features":[109]},{"name":"COPYENGINE_E_DISK_FULL_CLEAN","features":[109]},{"name":"COPYENGINE_E_EA_LOSS","features":[109]},{"name":"COPYENGINE_E_EA_NOT_SUPPORTED","features":[109]},{"name":"COPYENGINE_E_ENCRYPTION_LOSS","features":[109]},{"name":"COPYENGINE_E_FAT_MAX_IN_ROOT","features":[109]},{"name":"COPYENGINE_E_FILE_IS_FLD_DEST","features":[109]},{"name":"COPYENGINE_E_FILE_TOO_LARGE","features":[109]},{"name":"COPYENGINE_E_FLD_IS_FILE_DEST","features":[109]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_ERROR","features":[109]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_PAUSED","features":[109]},{"name":"COPYENGINE_E_INTERNET_ITEM_UNAVAILABLE","features":[109]},{"name":"COPYENGINE_E_INVALID_FILES_DEST","features":[109]},{"name":"COPYENGINE_E_INVALID_FILES_SRC","features":[109]},{"name":"COPYENGINE_E_MANY_SRC_1_DEST","features":[109]},{"name":"COPYENGINE_E_NET_DISCONNECT_DEST","features":[109]},{"name":"COPYENGINE_E_NET_DISCONNECT_SRC","features":[109]},{"name":"COPYENGINE_E_NEWFILE_NAME_TOO_LONG","features":[109]},{"name":"COPYENGINE_E_NEWFOLDER_NAME_TOO_LONG","features":[109]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_DEST","features":[109]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_SRC","features":[109]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_DEST","features":[109]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_SRC","features":[109]},{"name":"COPYENGINE_E_PROPERTIES_LOSS","features":[109]},{"name":"COPYENGINE_E_PROPERTY_LOSS","features":[109]},{"name":"COPYENGINE_E_RECYCLE_BIN_NOT_FOUND","features":[109]},{"name":"COPYENGINE_E_RECYCLE_FORCE_NUKE","features":[109]},{"name":"COPYENGINE_E_RECYCLE_PATH_TOO_LONG","features":[109]},{"name":"COPYENGINE_E_RECYCLE_SIZE_TOO_BIG","features":[109]},{"name":"COPYENGINE_E_RECYCLE_UNKNOWN_ERROR","features":[109]},{"name":"COPYENGINE_E_REDIRECTED_TO_WEBPAGE","features":[109]},{"name":"COPYENGINE_E_REMOVABLE_FULL","features":[109]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT","features":[109]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[109]},{"name":"COPYENGINE_E_REQUIRES_ELEVATION","features":[109]},{"name":"COPYENGINE_E_RMS_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[109]},{"name":"COPYENGINE_E_RMS_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[109]},{"name":"COPYENGINE_E_ROOT_DIR_DEST","features":[109]},{"name":"COPYENGINE_E_ROOT_DIR_SRC","features":[109]},{"name":"COPYENGINE_E_SAME_FILE","features":[109]},{"name":"COPYENGINE_E_SERVER_BAD_FILE_TYPE","features":[109]},{"name":"COPYENGINE_E_SHARING_VIOLATION_DEST","features":[109]},{"name":"COPYENGINE_E_SHARING_VIOLATION_SRC","features":[109]},{"name":"COPYENGINE_E_SILENT_FAIL_BY_DLP_POLICY","features":[109]},{"name":"COPYENGINE_E_SRC_IS_RO_CD","features":[109]},{"name":"COPYENGINE_E_SRC_IS_RO_DVD","features":[109]},{"name":"COPYENGINE_E_SRC_IS_RW_CD","features":[109]},{"name":"COPYENGINE_E_SRC_IS_RW_DVD","features":[109]},{"name":"COPYENGINE_E_SRC_IS_R_CD","features":[109]},{"name":"COPYENGINE_E_SRC_IS_R_DVD","features":[109]},{"name":"COPYENGINE_E_STREAM_LOSS","features":[109]},{"name":"COPYENGINE_E_USER_CANCELLED","features":[109]},{"name":"COPYENGINE_E_WARNED_BY_DLP_POLICY","features":[109]},{"name":"COPYENGINE_S_ALREADY_DONE","features":[109]},{"name":"COPYENGINE_S_CLOSE_PROGRAM","features":[109]},{"name":"COPYENGINE_S_COLLISIONRESOLVED","features":[109]},{"name":"COPYENGINE_S_DONT_PROCESS_CHILDREN","features":[109]},{"name":"COPYENGINE_S_KEEP_BOTH","features":[109]},{"name":"COPYENGINE_S_MERGE","features":[109]},{"name":"COPYENGINE_S_NOT_HANDLED","features":[109]},{"name":"COPYENGINE_S_PENDING","features":[109]},{"name":"COPYENGINE_S_PENDING_DELETE","features":[109]},{"name":"COPYENGINE_S_PROGRESS_PAUSE","features":[109]},{"name":"COPYENGINE_S_USER_IGNORED","features":[109]},{"name":"COPYENGINE_S_USER_RETRY","features":[109]},{"name":"COPYENGINE_S_YES","features":[109]},{"name":"CPAO_EMPTY_CONNECTED","features":[109]},{"name":"CPAO_EMPTY_LOCAL","features":[109]},{"name":"CPAO_NONE","features":[109]},{"name":"CPCFO_ENABLE_PASSWORD_REVEAL","features":[109]},{"name":"CPCFO_ENABLE_TOUCH_KEYBOARD_AUTO_INVOKE","features":[109]},{"name":"CPCFO_IS_EMAIL_ADDRESS","features":[109]},{"name":"CPCFO_NONE","features":[109]},{"name":"CPCFO_NUMBERS_ONLY","features":[109]},{"name":"CPCFO_SHOW_ENGLISH_KEYBOARD","features":[109]},{"name":"CPFG_CREDENTIAL_PROVIDER_LABEL","features":[109]},{"name":"CPFG_CREDENTIAL_PROVIDER_LOGO","features":[109]},{"name":"CPFG_LOGON_PASSWORD","features":[109]},{"name":"CPFG_LOGON_USERNAME","features":[109]},{"name":"CPFG_SMARTCARD_PIN","features":[109]},{"name":"CPFG_SMARTCARD_USERNAME","features":[109]},{"name":"CPFG_STANDALONE_SUBMIT_BUTTON","features":[109]},{"name":"CPFG_STYLE_LINK_AS_BUTTON","features":[109]},{"name":"CPFIS_DISABLED","features":[109]},{"name":"CPFIS_FOCUSED","features":[109]},{"name":"CPFIS_NONE","features":[109]},{"name":"CPFIS_READONLY","features":[109]},{"name":"CPFS_DISPLAY_IN_BOTH","features":[109]},{"name":"CPFS_DISPLAY_IN_DESELECTED_TILE","features":[109]},{"name":"CPFS_DISPLAY_IN_SELECTED_TILE","features":[109]},{"name":"CPFS_HIDDEN","features":[109]},{"name":"CPFT_CHECKBOX","features":[109]},{"name":"CPFT_COMBOBOX","features":[109]},{"name":"CPFT_COMMAND_LINK","features":[109]},{"name":"CPFT_EDIT_TEXT","features":[109]},{"name":"CPFT_INVALID","features":[109]},{"name":"CPFT_LARGE_TEXT","features":[109]},{"name":"CPFT_PASSWORD_TEXT","features":[109]},{"name":"CPFT_SMALL_TEXT","features":[109]},{"name":"CPFT_SUBMIT_BUTTON","features":[109]},{"name":"CPFT_TILE_IMAGE","features":[109]},{"name":"CPGSR_NO_CREDENTIAL_FINISHED","features":[109]},{"name":"CPGSR_NO_CREDENTIAL_NOT_FINISHED","features":[109]},{"name":"CPGSR_RETURN_CREDENTIAL_FINISHED","features":[109]},{"name":"CPGSR_RETURN_NO_CREDENTIAL_FINISHED","features":[109]},{"name":"CPLINFO","features":[109]},{"name":"CPLPAGE_DISPLAY_BACKGROUND","features":[109]},{"name":"CPLPAGE_KEYBOARD_SPEED","features":[109]},{"name":"CPLPAGE_MOUSE_BUTTONS","features":[109]},{"name":"CPLPAGE_MOUSE_PTRMOTION","features":[109]},{"name":"CPLPAGE_MOUSE_WHEEL","features":[109]},{"name":"CPL_DBLCLK","features":[109]},{"name":"CPL_DYNAMIC_RES","features":[109]},{"name":"CPL_EXIT","features":[109]},{"name":"CPL_GETCOUNT","features":[109]},{"name":"CPL_INIT","features":[109]},{"name":"CPL_INQUIRE","features":[109]},{"name":"CPL_NEWINQUIRE","features":[109]},{"name":"CPL_SELECT","features":[109]},{"name":"CPL_SETUP","features":[109]},{"name":"CPL_STARTWPARMS","features":[109]},{"name":"CPL_STARTWPARMSA","features":[109]},{"name":"CPL_STARTWPARMSW","features":[109]},{"name":"CPL_STOP","features":[109]},{"name":"CPSI_ERROR","features":[109]},{"name":"CPSI_NONE","features":[109]},{"name":"CPSI_SUCCESS","features":[109]},{"name":"CPSI_WARNING","features":[109]},{"name":"CPUS_CHANGE_PASSWORD","features":[109]},{"name":"CPUS_CREDUI","features":[109]},{"name":"CPUS_INVALID","features":[109]},{"name":"CPUS_LOGON","features":[109]},{"name":"CPUS_PLAP","features":[109]},{"name":"CPUS_UNLOCK_WORKSTATION","features":[109]},{"name":"CPVIEW","features":[109]},{"name":"CPVIEW_ALLITEMS","features":[109]},{"name":"CPVIEW_CATEGORY","features":[109]},{"name":"CPVIEW_CLASSIC","features":[109]},{"name":"CPVIEW_HOME","features":[109]},{"name":"CREDENTIAL_PROVIDER_ACCOUNT_OPTIONS","features":[109]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_FIELD_OPTIONS","features":[109]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION","features":[109]},{"name":"CREDENTIAL_PROVIDER_FIELD_DESCRIPTOR","features":[109]},{"name":"CREDENTIAL_PROVIDER_FIELD_INTERACTIVE_STATE","features":[109]},{"name":"CREDENTIAL_PROVIDER_FIELD_STATE","features":[109]},{"name":"CREDENTIAL_PROVIDER_FIELD_TYPE","features":[109]},{"name":"CREDENTIAL_PROVIDER_GET_SERIALIZATION_RESPONSE","features":[109]},{"name":"CREDENTIAL_PROVIDER_NO_DEFAULT","features":[109]},{"name":"CREDENTIAL_PROVIDER_STATUS_ICON","features":[109]},{"name":"CREDENTIAL_PROVIDER_USAGE_SCENARIO","features":[109]},{"name":"CSC_NAVIGATEBACK","features":[109]},{"name":"CSC_NAVIGATEFORWARD","features":[109]},{"name":"CSC_UPDATECOMMANDS","features":[109]},{"name":"CSFV","features":[1,219]},{"name":"CSIDL_ADMINTOOLS","features":[109]},{"name":"CSIDL_ALTSTARTUP","features":[109]},{"name":"CSIDL_APPDATA","features":[109]},{"name":"CSIDL_BITBUCKET","features":[109]},{"name":"CSIDL_CDBURN_AREA","features":[109]},{"name":"CSIDL_COMMON_ADMINTOOLS","features":[109]},{"name":"CSIDL_COMMON_ALTSTARTUP","features":[109]},{"name":"CSIDL_COMMON_APPDATA","features":[109]},{"name":"CSIDL_COMMON_DESKTOPDIRECTORY","features":[109]},{"name":"CSIDL_COMMON_DOCUMENTS","features":[109]},{"name":"CSIDL_COMMON_FAVORITES","features":[109]},{"name":"CSIDL_COMMON_MUSIC","features":[109]},{"name":"CSIDL_COMMON_OEM_LINKS","features":[109]},{"name":"CSIDL_COMMON_PICTURES","features":[109]},{"name":"CSIDL_COMMON_PROGRAMS","features":[109]},{"name":"CSIDL_COMMON_STARTMENU","features":[109]},{"name":"CSIDL_COMMON_STARTUP","features":[109]},{"name":"CSIDL_COMMON_TEMPLATES","features":[109]},{"name":"CSIDL_COMMON_VIDEO","features":[109]},{"name":"CSIDL_COMPUTERSNEARME","features":[109]},{"name":"CSIDL_CONNECTIONS","features":[109]},{"name":"CSIDL_CONTROLS","features":[109]},{"name":"CSIDL_COOKIES","features":[109]},{"name":"CSIDL_DESKTOP","features":[109]},{"name":"CSIDL_DESKTOPDIRECTORY","features":[109]},{"name":"CSIDL_DRIVES","features":[109]},{"name":"CSIDL_FAVORITES","features":[109]},{"name":"CSIDL_FLAG_CREATE","features":[109]},{"name":"CSIDL_FLAG_DONT_UNEXPAND","features":[109]},{"name":"CSIDL_FLAG_DONT_VERIFY","features":[109]},{"name":"CSIDL_FLAG_MASK","features":[109]},{"name":"CSIDL_FLAG_NO_ALIAS","features":[109]},{"name":"CSIDL_FLAG_PER_USER_INIT","features":[109]},{"name":"CSIDL_FLAG_PFTI_TRACKTARGET","features":[109]},{"name":"CSIDL_FONTS","features":[109]},{"name":"CSIDL_HISTORY","features":[109]},{"name":"CSIDL_INTERNET","features":[109]},{"name":"CSIDL_INTERNET_CACHE","features":[109]},{"name":"CSIDL_LOCAL_APPDATA","features":[109]},{"name":"CSIDL_MYDOCUMENTS","features":[109]},{"name":"CSIDL_MYMUSIC","features":[109]},{"name":"CSIDL_MYPICTURES","features":[109]},{"name":"CSIDL_MYVIDEO","features":[109]},{"name":"CSIDL_NETHOOD","features":[109]},{"name":"CSIDL_NETWORK","features":[109]},{"name":"CSIDL_PERSONAL","features":[109]},{"name":"CSIDL_PRINTERS","features":[109]},{"name":"CSIDL_PRINTHOOD","features":[109]},{"name":"CSIDL_PROFILE","features":[109]},{"name":"CSIDL_PROGRAMS","features":[109]},{"name":"CSIDL_PROGRAM_FILES","features":[109]},{"name":"CSIDL_PROGRAM_FILESX86","features":[109]},{"name":"CSIDL_PROGRAM_FILES_COMMON","features":[109]},{"name":"CSIDL_PROGRAM_FILES_COMMONX86","features":[109]},{"name":"CSIDL_RECENT","features":[109]},{"name":"CSIDL_RESOURCES","features":[109]},{"name":"CSIDL_RESOURCES_LOCALIZED","features":[109]},{"name":"CSIDL_SENDTO","features":[109]},{"name":"CSIDL_STARTMENU","features":[109]},{"name":"CSIDL_STARTUP","features":[109]},{"name":"CSIDL_SYSTEM","features":[109]},{"name":"CSIDL_SYSTEMX86","features":[109]},{"name":"CSIDL_TEMPLATES","features":[109]},{"name":"CSIDL_WINDOWS","features":[109]},{"name":"CScriptErrorList","features":[109]},{"name":"CTF_COINIT","features":[109]},{"name":"CTF_COINIT_MTA","features":[109]},{"name":"CTF_COINIT_STA","features":[109]},{"name":"CTF_FREELIBANDEXIT","features":[109]},{"name":"CTF_INHERITWOW64","features":[109]},{"name":"CTF_INSIST","features":[109]},{"name":"CTF_KEYBOARD_LOCALE","features":[109]},{"name":"CTF_NOADDREFLIB","features":[109]},{"name":"CTF_OLEINITIALIZE","features":[109]},{"name":"CTF_PROCESS_REF","features":[109]},{"name":"CTF_REF_COUNTED","features":[109]},{"name":"CTF_THREAD_REF","features":[109]},{"name":"CTF_UNUSED","features":[109]},{"name":"CTF_WAIT_ALLOWCOM","features":[109]},{"name":"CTF_WAIT_NO_REENTRANCY","features":[109]},{"name":"ChrCmpIA","features":[1,109]},{"name":"ChrCmpIW","features":[1,109]},{"name":"ColorAdjustLuma","features":[1,109]},{"name":"ColorHLSToRGB","features":[1,109]},{"name":"ColorRGBToHLS","features":[1,109]},{"name":"CommandLineToArgvW","features":[109]},{"name":"CommandStateChangeConstants","features":[109]},{"name":"ConflictFolder","features":[109]},{"name":"ConnectToConnectionPoint","features":[1,109]},{"name":"CreateProfile","features":[109]},{"name":"DAD_AutoScroll","features":[1,109]},{"name":"DAD_DragEnterEx","features":[1,109]},{"name":"DAD_DragEnterEx2","features":[1,109]},{"name":"DAD_DragLeave","features":[1,109]},{"name":"DAD_DragMove","features":[1,109]},{"name":"DAD_SetDragImage","features":[1,40,109]},{"name":"DAD_ShowDragImage","features":[1,109]},{"name":"DATABLOCK_HEADER","features":[109]},{"name":"DATAOBJ_GET_ITEM_FLAGS","features":[109]},{"name":"DBCID_CLSIDOFBAR","features":[109]},{"name":"DBCID_EMPTY","features":[109]},{"name":"DBCID_GETBAR","features":[109]},{"name":"DBCID_ONDRAG","features":[109]},{"name":"DBCID_RESIZE","features":[109]},{"name":"DBCID_UPDATESIZE","features":[109]},{"name":"DBC_GS_IDEAL","features":[109]},{"name":"DBC_GS_SIZEDOWN","features":[109]},{"name":"DBC_HIDE","features":[109]},{"name":"DBC_SHOW","features":[109]},{"name":"DBC_SHOWOBSCURE","features":[109]},{"name":"DBID_BANDINFOCHANGED","features":[109]},{"name":"DBID_DELAYINIT","features":[109]},{"name":"DBID_FINISHINIT","features":[109]},{"name":"DBID_MAXIMIZEBAND","features":[109]},{"name":"DBID_PERMITAUTOHIDE","features":[109]},{"name":"DBID_PUSHCHEVRON","features":[109]},{"name":"DBID_SETWINDOWTHEME","features":[109]},{"name":"DBID_SHOWONLY","features":[109]},{"name":"DBIF_VIEWMODE_FLOATING","features":[109]},{"name":"DBIF_VIEWMODE_NORMAL","features":[109]},{"name":"DBIF_VIEWMODE_TRANSPARENT","features":[109]},{"name":"DBIF_VIEWMODE_VERTICAL","features":[109]},{"name":"DBIMF_ADDTOFRONT","features":[109]},{"name":"DBIMF_ALWAYSGRIPPER","features":[109]},{"name":"DBIMF_BKCOLOR","features":[109]},{"name":"DBIMF_BREAK","features":[109]},{"name":"DBIMF_DEBOSSED","features":[109]},{"name":"DBIMF_FIXED","features":[109]},{"name":"DBIMF_FIXEDBMP","features":[109]},{"name":"DBIMF_NOGRIPPER","features":[109]},{"name":"DBIMF_NOMARGINS","features":[109]},{"name":"DBIMF_NORMAL","features":[109]},{"name":"DBIMF_TOPALIGN","features":[109]},{"name":"DBIMF_UNDELETEABLE","features":[109]},{"name":"DBIMF_USECHEVRON","features":[109]},{"name":"DBIMF_VARIABLEHEIGHT","features":[109]},{"name":"DBIM_ACTUAL","features":[109]},{"name":"DBIM_BKCOLOR","features":[109]},{"name":"DBIM_INTEGRAL","features":[109]},{"name":"DBIM_MAXSIZE","features":[109]},{"name":"DBIM_MINSIZE","features":[109]},{"name":"DBIM_MODEFLAGS","features":[109]},{"name":"DBIM_TITLE","features":[109]},{"name":"DBPC_SELECTFIRST","features":[109]},{"name":"DEFAULTSAVEFOLDERTYPE","features":[109]},{"name":"DEFAULT_FOLDER_MENU_RESTRICTIONS","features":[109]},{"name":"DEFCONTEXTMENU","features":[1,49,219]},{"name":"DEFSHAREID_PUBLIC","features":[109]},{"name":"DEFSHAREID_USERS","features":[109]},{"name":"DEF_SHARE_ID","features":[109]},{"name":"DELEGATEITEMID","features":[109]},{"name":"DESKBANDCID","features":[109]},{"name":"DESKBANDINFO","features":[1,109]},{"name":"DESKTOP_SLIDESHOW_DIRECTION","features":[109]},{"name":"DESKTOP_SLIDESHOW_OPTIONS","features":[109]},{"name":"DESKTOP_SLIDESHOW_STATE","features":[109]},{"name":"DESKTOP_WALLPAPER_POSITION","features":[109]},{"name":"DETAILSINFO","features":[219]},{"name":"DEVICE_IMMERSIVE","features":[109]},{"name":"DEVICE_PRIMARY","features":[109]},{"name":"DFConstraint","features":[109]},{"name":"DFMICS","features":[1,109]},{"name":"DFMR_DEFAULT","features":[109]},{"name":"DFMR_NO_ASYNC_VERBS","features":[109]},{"name":"DFMR_NO_NATIVECPU_VERBS","features":[109]},{"name":"DFMR_NO_NONWOW_VERBS","features":[109]},{"name":"DFMR_NO_RESOURCE_VERBS","features":[109]},{"name":"DFMR_NO_STATIC_VERBS","features":[109]},{"name":"DFMR_OPTIN_HANDLERS_ONLY","features":[109]},{"name":"DFMR_RESOURCE_AND_FOLDER_VERBS_ONLY","features":[109]},{"name":"DFMR_STATIC_VERBS_ONLY","features":[109]},{"name":"DFMR_USE_SPECIFIED_HANDLERS","features":[109]},{"name":"DFMR_USE_SPECIFIED_VERBS","features":[109]},{"name":"DFM_CMD","features":[109]},{"name":"DFM_CMD_COPY","features":[109]},{"name":"DFM_CMD_DELETE","features":[109]},{"name":"DFM_CMD_LINK","features":[109]},{"name":"DFM_CMD_MODALPROP","features":[109]},{"name":"DFM_CMD_MOVE","features":[109]},{"name":"DFM_CMD_NEWFOLDER","features":[109]},{"name":"DFM_CMD_PASTE","features":[109]},{"name":"DFM_CMD_PASTELINK","features":[109]},{"name":"DFM_CMD_PASTESPECIAL","features":[109]},{"name":"DFM_CMD_PROPERTIES","features":[109]},{"name":"DFM_CMD_RENAME","features":[109]},{"name":"DFM_CMD_VIEWDETAILS","features":[109]},{"name":"DFM_CMD_VIEWLIST","features":[109]},{"name":"DFM_GETDEFSTATICID","features":[109]},{"name":"DFM_GETHELPTEXT","features":[109]},{"name":"DFM_GETHELPTEXTW","features":[109]},{"name":"DFM_GETVERBA","features":[109]},{"name":"DFM_GETVERBW","features":[109]},{"name":"DFM_INVOKECOMMAND","features":[109]},{"name":"DFM_INVOKECOMMANDEX","features":[109]},{"name":"DFM_MAPCOMMANDNAME","features":[109]},{"name":"DFM_MERGECONTEXTMENU","features":[109]},{"name":"DFM_MERGECONTEXTMENU_BOTTOM","features":[109]},{"name":"DFM_MERGECONTEXTMENU_TOP","features":[109]},{"name":"DFM_MESSAGE_ID","features":[109]},{"name":"DFM_MODIFYQCMFLAGS","features":[109]},{"name":"DFM_VALIDATECMD","features":[109]},{"name":"DFM_WM_DRAWITEM","features":[109]},{"name":"DFM_WM_INITMENUPOPUP","features":[109]},{"name":"DFM_WM_MEASUREITEM","features":[109]},{"name":"DISPID_BEGINDRAG","features":[109]},{"name":"DISPID_CHECKSTATECHANGED","features":[109]},{"name":"DISPID_COLUMNSCHANGED","features":[109]},{"name":"DISPID_CONTENTSCHANGED","features":[109]},{"name":"DISPID_CTRLMOUSEWHEEL","features":[109]},{"name":"DISPID_DEFAULTVERBINVOKED","features":[109]},{"name":"DISPID_ENTERPRESSED","features":[109]},{"name":"DISPID_ENTERPRISEIDCHANGED","features":[109]},{"name":"DISPID_EXPLORERWINDOWREADY","features":[109]},{"name":"DISPID_FILELISTENUMDONE","features":[109]},{"name":"DISPID_FILTERINVOKED","features":[109]},{"name":"DISPID_FOCUSCHANGED","features":[109]},{"name":"DISPID_FOLDERCHANGED","features":[109]},{"name":"DISPID_IADCCTL_DEFAULTCAT","features":[109]},{"name":"DISPID_IADCCTL_DIRTY","features":[109]},{"name":"DISPID_IADCCTL_FORCEX86","features":[109]},{"name":"DISPID_IADCCTL_ONDOMAIN","features":[109]},{"name":"DISPID_IADCCTL_PUBCAT","features":[109]},{"name":"DISPID_IADCCTL_SHOWPOSTSETUP","features":[109]},{"name":"DISPID_IADCCTL_SORT","features":[109]},{"name":"DISPID_ICONSIZECHANGED","features":[109]},{"name":"DISPID_INITIALENUMERATIONDONE","features":[109]},{"name":"DISPID_NOITEMSTATE_CHANGED","features":[109]},{"name":"DISPID_ORDERCHANGED","features":[109]},{"name":"DISPID_SEARCHCOMMAND_ABORT","features":[109]},{"name":"DISPID_SEARCHCOMMAND_COMPLETE","features":[109]},{"name":"DISPID_SEARCHCOMMAND_ERROR","features":[109]},{"name":"DISPID_SEARCHCOMMAND_PROGRESSTEXT","features":[109]},{"name":"DISPID_SEARCHCOMMAND_RESTORE","features":[109]},{"name":"DISPID_SEARCHCOMMAND_START","features":[109]},{"name":"DISPID_SEARCHCOMMAND_UPDATE","features":[109]},{"name":"DISPID_SELECTEDITEMCHANGED","features":[109]},{"name":"DISPID_SELECTIONCHANGED","features":[109]},{"name":"DISPID_SORTDONE","features":[109]},{"name":"DISPID_UPDATEIMAGE","features":[109]},{"name":"DISPID_VERBINVOKED","features":[109]},{"name":"DISPID_VIEWMODECHANGED","features":[109]},{"name":"DISPID_VIEWPAINTDONE","features":[109]},{"name":"DISPID_WORDWHEELEDITED","features":[109]},{"name":"DISPLAY_DEVICE_TYPE","features":[109]},{"name":"DI_GETDRAGIMAGE","features":[109]},{"name":"DLG_SCRNSAVECONFIGURE","features":[109]},{"name":"DLLGETVERSIONPROC","features":[109]},{"name":"DLLVERSIONINFO","features":[109]},{"name":"DLLVERSIONINFO2","features":[109]},{"name":"DLLVER_BUILD_MASK","features":[109]},{"name":"DLLVER_MAJOR_MASK","features":[109]},{"name":"DLLVER_MINOR_MASK","features":[109]},{"name":"DLLVER_PLATFORM_NT","features":[109]},{"name":"DLLVER_PLATFORM_WINDOWS","features":[109]},{"name":"DLLVER_QFE_MASK","features":[109]},{"name":"DOGIF_DEFAULT","features":[109]},{"name":"DOGIF_NO_HDROP","features":[109]},{"name":"DOGIF_NO_URL","features":[109]},{"name":"DOGIF_ONLY_IF_ONE","features":[109]},{"name":"DOGIF_TRAVERSE_LINK","features":[109]},{"name":"DRAGINFOA","features":[1,109]},{"name":"DRAGINFOA","features":[1,109]},{"name":"DRAGINFOW","features":[1,109]},{"name":"DRAGINFOW","features":[1,109]},{"name":"DROPDESCRIPTION","features":[109]},{"name":"DROPFILES","features":[1,109]},{"name":"DROPIMAGETYPE","features":[109]},{"name":"DROPIMAGE_COPY","features":[109]},{"name":"DROPIMAGE_INVALID","features":[109]},{"name":"DROPIMAGE_LABEL","features":[109]},{"name":"DROPIMAGE_LINK","features":[109]},{"name":"DROPIMAGE_MOVE","features":[109]},{"name":"DROPIMAGE_NOIMAGE","features":[109]},{"name":"DROPIMAGE_NONE","features":[109]},{"name":"DROPIMAGE_WARNING","features":[109]},{"name":"DSD_BACKWARD","features":[109]},{"name":"DSD_FORWARD","features":[109]},{"name":"DSFT_DETECT","features":[109]},{"name":"DSFT_PRIVATE","features":[109]},{"name":"DSFT_PUBLIC","features":[109]},{"name":"DSH_ALLOWDROPDESCRIPTIONTEXT","features":[109]},{"name":"DSH_FLAGS","features":[109]},{"name":"DSO_SHUFFLEIMAGES","features":[109]},{"name":"DSS_DISABLED_BY_REMOTE_SESSION","features":[109]},{"name":"DSS_ENABLED","features":[109]},{"name":"DSS_SLIDESHOW","features":[109]},{"name":"DShellFolderViewEvents","features":[109]},{"name":"DShellNameSpaceEvents","features":[109]},{"name":"DShellWindowsEvents","features":[109]},{"name":"DVASPECT_COPY","features":[109]},{"name":"DVASPECT_LINK","features":[109]},{"name":"DVASPECT_SHORTNAME","features":[109]},{"name":"DWFAF_AUTOHIDE","features":[109]},{"name":"DWFAF_GROUP1","features":[109]},{"name":"DWFAF_GROUP2","features":[109]},{"name":"DWFAF_HIDDEN","features":[109]},{"name":"DWFRF_DELETECONFIGDATA","features":[109]},{"name":"DWFRF_NORMAL","features":[109]},{"name":"DWPOS_CENTER","features":[109]},{"name":"DWPOS_FILL","features":[109]},{"name":"DWPOS_FIT","features":[109]},{"name":"DWPOS_SPAN","features":[109]},{"name":"DWPOS_STRETCH","features":[109]},{"name":"DWPOS_TILE","features":[109]},{"name":"DWebBrowserEvents","features":[109]},{"name":"DWebBrowserEvents2","features":[109]},{"name":"DefFolderMenu","features":[109]},{"name":"DefSubclassProc","features":[1,109]},{"name":"DeleteProfileA","features":[1,109]},{"name":"DeleteProfileW","features":[1,109]},{"name":"DesktopGadget","features":[109]},{"name":"DesktopWallpaper","features":[109]},{"name":"DestinationList","features":[109]},{"name":"DoEnvironmentSubstA","features":[109]},{"name":"DoEnvironmentSubstW","features":[109]},{"name":"DocPropShellExtension","features":[109]},{"name":"DragAcceptFiles","features":[1,109]},{"name":"DragFinish","features":[109]},{"name":"DragQueryFileA","features":[109]},{"name":"DragQueryFileW","features":[109]},{"name":"DragQueryPoint","features":[1,109]},{"name":"DriveSizeCategorizer","features":[109]},{"name":"DriveType","features":[109]},{"name":"DriveTypeCategorizer","features":[109]},{"name":"DuplicateIcon","features":[1,109,50]},{"name":"EBF_NODROPTARGET","features":[109]},{"name":"EBF_NONE","features":[109]},{"name":"EBF_SELECTFROMDATAOBJECT","features":[109]},{"name":"EBO_ALWAYSNAVIGATE","features":[109]},{"name":"EBO_HTMLSHAREPOINTVIEW","features":[109]},{"name":"EBO_NAVIGATEONCE","features":[109]},{"name":"EBO_NOBORDER","features":[109]},{"name":"EBO_NONE","features":[109]},{"name":"EBO_NOPERSISTVIEWSTATE","features":[109]},{"name":"EBO_NOTRAVELLOG","features":[109]},{"name":"EBO_NOWRAPPERWINDOW","features":[109]},{"name":"EBO_SHOWFRAMES","features":[109]},{"name":"ECF_AUTOMENUICONS","features":[109]},{"name":"ECF_DEFAULT","features":[109]},{"name":"ECF_HASLUASHIELD","features":[109]},{"name":"ECF_HASSPLITBUTTON","features":[109]},{"name":"ECF_HASSUBCOMMANDS","features":[109]},{"name":"ECF_HIDELABEL","features":[109]},{"name":"ECF_ISDROPDOWN","features":[109]},{"name":"ECF_ISSEPARATOR","features":[109]},{"name":"ECF_SEPARATORAFTER","features":[109]},{"name":"ECF_SEPARATORBEFORE","features":[109]},{"name":"ECF_TOGGLEABLE","features":[109]},{"name":"ECHUIM_DESKTOP","features":[109]},{"name":"ECHUIM_IMMERSIVE","features":[109]},{"name":"ECHUIM_SYSTEM_LAUNCHER","features":[109]},{"name":"ECS_CHECKBOX","features":[109]},{"name":"ECS_CHECKED","features":[109]},{"name":"ECS_DISABLED","features":[109]},{"name":"ECS_ENABLED","features":[109]},{"name":"ECS_HIDDEN","features":[109]},{"name":"ECS_RADIOCHECK","features":[109]},{"name":"EC_HOST_UI_MODE","features":[109]},{"name":"EDGE_GESTURE_KIND","features":[109]},{"name":"EGK_KEYBOARD","features":[109]},{"name":"EGK_MOUSE","features":[109]},{"name":"EGK_TOUCH","features":[109]},{"name":"EPS_DEFAULT_OFF","features":[109]},{"name":"EPS_DEFAULT_ON","features":[109]},{"name":"EPS_DONTCARE","features":[109]},{"name":"EPS_FORCE","features":[109]},{"name":"EPS_INITIALSTATE","features":[109]},{"name":"EPS_STATEMASK","features":[109]},{"name":"EP_AdvQueryPane","features":[109]},{"name":"EP_Commands","features":[109]},{"name":"EP_Commands_Organize","features":[109]},{"name":"EP_Commands_View","features":[109]},{"name":"EP_DetailsPane","features":[109]},{"name":"EP_NavPane","features":[109]},{"name":"EP_PreviewPane","features":[109]},{"name":"EP_QueryPane","features":[109]},{"name":"EP_Ribbon","features":[109]},{"name":"EP_StatusBar","features":[109]},{"name":"EXECUTE_E_LAUNCH_APPLICATION","features":[109]},{"name":"EXPLORER_BROWSER_FILL_FLAGS","features":[109]},{"name":"EXPLORER_BROWSER_OPTIONS","features":[109]},{"name":"EXPPS_FILETYPES","features":[109]},{"name":"EXP_DARWIN_ID_SIG","features":[109]},{"name":"EXP_DARWIN_LINK","features":[109]},{"name":"EXP_PROPERTYSTORAGE","features":[109]},{"name":"EXP_PROPERTYSTORAGE_SIG","features":[109]},{"name":"EXP_SPECIAL_FOLDER","features":[109]},{"name":"EXP_SPECIAL_FOLDER_SIG","features":[109]},{"name":"EXP_SZ_ICON_SIG","features":[109]},{"name":"EXP_SZ_LINK","features":[109]},{"name":"EXP_SZ_LINK_SIG","features":[109]},{"name":"EXTRASEARCH","features":[109]},{"name":"E_ACTIVATIONDENIED_SHELLERROR","features":[109]},{"name":"E_ACTIVATIONDENIED_SHELLNOTREADY","features":[109]},{"name":"E_ACTIVATIONDENIED_SHELLRESTART","features":[109]},{"name":"E_ACTIVATIONDENIED_UNEXPECTED","features":[109]},{"name":"E_ACTIVATIONDENIED_USERCLOSE","features":[109]},{"name":"E_FILE_PLACEHOLDER_NOT_INITIALIZED","features":[109]},{"name":"E_FILE_PLACEHOLDER_SERVER_TIMED_OUT","features":[109]},{"name":"E_FILE_PLACEHOLDER_STORAGEPROVIDER_NOT_FOUND","features":[109]},{"name":"E_FILE_PLACEHOLDER_VERSION_MISMATCH","features":[109]},{"name":"E_FLAGS","features":[109]},{"name":"E_IMAGEFEED_CHANGEDISABLED","features":[109]},{"name":"E_NOTVALIDFORANIMATEDIMAGE","features":[109]},{"name":"E_PREVIEWHANDLER_CORRUPT","features":[109]},{"name":"E_PREVIEWHANDLER_DRM_FAIL","features":[109]},{"name":"E_PREVIEWHANDLER_NOAUTH","features":[109]},{"name":"E_PREVIEWHANDLER_NOTFOUND","features":[109]},{"name":"E_SHELL_EXTENSION_BLOCKED","features":[109]},{"name":"E_TILE_NOTIFICATIONS_PLATFORM_FAILURE","features":[109]},{"name":"E_USERTILE_CHANGEDISABLED","features":[109]},{"name":"E_USERTILE_FILESIZE","features":[109]},{"name":"E_USERTILE_LARGEORDYNAMIC","features":[109]},{"name":"E_USERTILE_UNSUPPORTEDFILETYPE","features":[109]},{"name":"E_USERTILE_VIDEOFRAMESIZE","features":[109]},{"name":"EnumerableObjectCollection","features":[109]},{"name":"ExecuteFolder","features":[109]},{"name":"ExecuteUnknown","features":[109]},{"name":"ExplorerBrowser","features":[109]},{"name":"ExtractAssociatedIconA","features":[1,109,50]},{"name":"ExtractAssociatedIconExA","features":[1,109,50]},{"name":"ExtractAssociatedIconExW","features":[1,109,50]},{"name":"ExtractAssociatedIconW","features":[1,109,50]},{"name":"ExtractIconA","features":[1,109,50]},{"name":"ExtractIconExA","features":[109,50]},{"name":"ExtractIconExW","features":[109,50]},{"name":"ExtractIconW","features":[1,109,50]},{"name":"ExtractIfNotCached","features":[109]},{"name":"FCIDM_BROWSERFIRST","features":[109]},{"name":"FCIDM_BROWSERLAST","features":[109]},{"name":"FCIDM_GLOBALFIRST","features":[109]},{"name":"FCIDM_GLOBALLAST","features":[109]},{"name":"FCIDM_MENU_EDIT","features":[109]},{"name":"FCIDM_MENU_EXPLORE","features":[109]},{"name":"FCIDM_MENU_FAVORITES","features":[109]},{"name":"FCIDM_MENU_FILE","features":[109]},{"name":"FCIDM_MENU_FIND","features":[109]},{"name":"FCIDM_MENU_HELP","features":[109]},{"name":"FCIDM_MENU_TOOLS","features":[109]},{"name":"FCIDM_MENU_TOOLS_SEP_GOTO","features":[109]},{"name":"FCIDM_MENU_VIEW","features":[109]},{"name":"FCIDM_MENU_VIEW_SEP_OPTIONS","features":[109]},{"name":"FCIDM_SHVIEWFIRST","features":[109]},{"name":"FCIDM_SHVIEWLAST","features":[109]},{"name":"FCIDM_STATUS","features":[109]},{"name":"FCIDM_TOOLBAR","features":[109]},{"name":"FCSM_CLSID","features":[109]},{"name":"FCSM_FLAGS","features":[109]},{"name":"FCSM_ICONFILE","features":[109]},{"name":"FCSM_INFOTIP","features":[109]},{"name":"FCSM_LOGO","features":[109]},{"name":"FCSM_VIEWID","features":[109]},{"name":"FCSM_WEBVIEWTEMPLATE","features":[109]},{"name":"FCS_FLAG_DRAGDROP","features":[109]},{"name":"FCS_FORCEWRITE","features":[109]},{"name":"FCS_READ","features":[109]},{"name":"FCT_ADDTOEND","features":[109]},{"name":"FCT_CONFIGABLE","features":[109]},{"name":"FCT_MERGE","features":[109]},{"name":"FCW_INTERNETBAR","features":[109]},{"name":"FCW_PROGRESS","features":[109]},{"name":"FCW_STATUS","features":[109]},{"name":"FCW_TOOLBAR","features":[109]},{"name":"FCW_TREE","features":[109]},{"name":"FDAP","features":[109]},{"name":"FDAP_BOTTOM","features":[109]},{"name":"FDAP_TOP","features":[109]},{"name":"FDEOR_ACCEPT","features":[109]},{"name":"FDEOR_DEFAULT","features":[109]},{"name":"FDEOR_REFUSE","features":[109]},{"name":"FDESVR_ACCEPT","features":[109]},{"name":"FDESVR_DEFAULT","features":[109]},{"name":"FDESVR_REFUSE","features":[109]},{"name":"FDE_OVERWRITE_RESPONSE","features":[109]},{"name":"FDE_SHAREVIOLATION_RESPONSE","features":[109]},{"name":"FDTF_LONGDATE","features":[109]},{"name":"FDTF_LONGTIME","features":[109]},{"name":"FDTF_LTRDATE","features":[109]},{"name":"FDTF_NOAUTOREADINGORDER","features":[109]},{"name":"FDTF_RELATIVE","features":[109]},{"name":"FDTF_RTLDATE","features":[109]},{"name":"FDTF_SHORTDATE","features":[109]},{"name":"FDTF_SHORTTIME","features":[109]},{"name":"FD_ACCESSTIME","features":[109]},{"name":"FD_ATTRIBUTES","features":[109]},{"name":"FD_CLSID","features":[109]},{"name":"FD_CREATETIME","features":[109]},{"name":"FD_FILESIZE","features":[109]},{"name":"FD_FLAGS","features":[109]},{"name":"FD_LINKUI","features":[109]},{"name":"FD_PROGRESSUI","features":[109]},{"name":"FD_SIZEPOINT","features":[109]},{"name":"FD_UNICODE","features":[109]},{"name":"FD_WRITESTIME","features":[109]},{"name":"FEM_NAVIGATION","features":[109]},{"name":"FEM_VIEWRESULT","features":[109]},{"name":"FFFP_EXACTMATCH","features":[109]},{"name":"FFFP_MODE","features":[109]},{"name":"FFFP_NEARESTPARENTMATCH","features":[109]},{"name":"FILEDESCRIPTORA","features":[1,109]},{"name":"FILEDESCRIPTORW","features":[1,109]},{"name":"FILEGROUPDESCRIPTORA","features":[1,109]},{"name":"FILEGROUPDESCRIPTORW","features":[1,109]},{"name":"FILEOPENDIALOGOPTIONS","features":[109]},{"name":"FILEOPERATION_FLAGS","features":[109]},{"name":"FILETYPEATTRIBUTEFLAGS","features":[109]},{"name":"FILE_ATTRIBUTES_ARRAY","features":[109]},{"name":"FILE_OPERATION_FLAGS2","features":[109]},{"name":"FILE_USAGE_TYPE","features":[109]},{"name":"FLVM_CONTENT","features":[109]},{"name":"FLVM_DETAILS","features":[109]},{"name":"FLVM_FIRST","features":[109]},{"name":"FLVM_ICONS","features":[109]},{"name":"FLVM_LAST","features":[109]},{"name":"FLVM_LIST","features":[109]},{"name":"FLVM_TILES","features":[109]},{"name":"FLVM_UNSPECIFIED","features":[109]},{"name":"FLYOUT_PLACEMENT","features":[109]},{"name":"FMTID_Briefcase","features":[109]},{"name":"FMTID_CustomImageProperties","features":[109]},{"name":"FMTID_DRM","features":[109]},{"name":"FMTID_Displaced","features":[109]},{"name":"FMTID_ImageProperties","features":[109]},{"name":"FMTID_InternetSite","features":[109]},{"name":"FMTID_Intshcut","features":[109]},{"name":"FMTID_LibraryProperties","features":[109]},{"name":"FMTID_MUSIC","features":[109]},{"name":"FMTID_Misc","features":[109]},{"name":"FMTID_Query","features":[109]},{"name":"FMTID_ShellDetails","features":[109]},{"name":"FMTID_Storage","features":[109]},{"name":"FMTID_Volume","features":[109]},{"name":"FMTID_WebView","features":[109]},{"name":"FOF2_MERGEFOLDERSONCOLLISION","features":[109]},{"name":"FOF2_NONE","features":[109]},{"name":"FOFX_ADDUNDORECORD","features":[109]},{"name":"FOFX_COPYASDOWNLOAD","features":[109]},{"name":"FOFX_DONTDISPLAYDESTPATH","features":[109]},{"name":"FOFX_DONTDISPLAYLOCATIONS","features":[109]},{"name":"FOFX_DONTDISPLAYSOURCEPATH","features":[109]},{"name":"FOFX_EARLYFAILURE","features":[109]},{"name":"FOFX_KEEPNEWERFILE","features":[109]},{"name":"FOFX_MOVEACLSACROSSVOLUMES","features":[109]},{"name":"FOFX_NOCOPYHOOKS","features":[109]},{"name":"FOFX_NOMINIMIZEBOX","features":[109]},{"name":"FOFX_NOSKIPJUNCTIONS","features":[109]},{"name":"FOFX_PREFERHARDLINK","features":[109]},{"name":"FOFX_PRESERVEFILEEXTENSIONS","features":[109]},{"name":"FOFX_RECYCLEONDELETE","features":[109]},{"name":"FOFX_REQUIREELEVATION","features":[109]},{"name":"FOFX_SHOWELEVATIONPROMPT","features":[109]},{"name":"FOF_ALLOWUNDO","features":[109]},{"name":"FOF_CONFIRMMOUSE","features":[109]},{"name":"FOF_FILESONLY","features":[109]},{"name":"FOF_MULTIDESTFILES","features":[109]},{"name":"FOF_NOCONFIRMATION","features":[109]},{"name":"FOF_NOCONFIRMMKDIR","features":[109]},{"name":"FOF_NOCOPYSECURITYATTRIBS","features":[109]},{"name":"FOF_NOERRORUI","features":[109]},{"name":"FOF_NORECURSEREPARSE","features":[109]},{"name":"FOF_NORECURSION","features":[109]},{"name":"FOF_NO_CONNECTED_ELEMENTS","features":[109]},{"name":"FOF_NO_UI","features":[109]},{"name":"FOF_RENAMEONCOLLISION","features":[109]},{"name":"FOF_SILENT","features":[109]},{"name":"FOF_SIMPLEPROGRESS","features":[109]},{"name":"FOF_WANTMAPPINGHANDLE","features":[109]},{"name":"FOF_WANTNUKEWARNING","features":[109]},{"name":"FOLDERFLAGS","features":[109]},{"name":"FOLDERID_AccountPictures","features":[109]},{"name":"FOLDERID_AddNewPrograms","features":[109]},{"name":"FOLDERID_AdminTools","features":[109]},{"name":"FOLDERID_AllAppMods","features":[109]},{"name":"FOLDERID_AppCaptures","features":[109]},{"name":"FOLDERID_AppDataDesktop","features":[109]},{"name":"FOLDERID_AppDataDocuments","features":[109]},{"name":"FOLDERID_AppDataFavorites","features":[109]},{"name":"FOLDERID_AppDataProgramData","features":[109]},{"name":"FOLDERID_AppUpdates","features":[109]},{"name":"FOLDERID_ApplicationShortcuts","features":[109]},{"name":"FOLDERID_AppsFolder","features":[109]},{"name":"FOLDERID_CDBurning","features":[109]},{"name":"FOLDERID_CameraRoll","features":[109]},{"name":"FOLDERID_CameraRollLibrary","features":[109]},{"name":"FOLDERID_ChangeRemovePrograms","features":[109]},{"name":"FOLDERID_CommonAdminTools","features":[109]},{"name":"FOLDERID_CommonOEMLinks","features":[109]},{"name":"FOLDERID_CommonPrograms","features":[109]},{"name":"FOLDERID_CommonStartMenu","features":[109]},{"name":"FOLDERID_CommonStartMenuPlaces","features":[109]},{"name":"FOLDERID_CommonStartup","features":[109]},{"name":"FOLDERID_CommonTemplates","features":[109]},{"name":"FOLDERID_ComputerFolder","features":[109]},{"name":"FOLDERID_ConflictFolder","features":[109]},{"name":"FOLDERID_ConnectionsFolder","features":[109]},{"name":"FOLDERID_Contacts","features":[109]},{"name":"FOLDERID_ControlPanelFolder","features":[109]},{"name":"FOLDERID_Cookies","features":[109]},{"name":"FOLDERID_CurrentAppMods","features":[109]},{"name":"FOLDERID_Desktop","features":[109]},{"name":"FOLDERID_DevelopmentFiles","features":[109]},{"name":"FOLDERID_Device","features":[109]},{"name":"FOLDERID_DeviceMetadataStore","features":[109]},{"name":"FOLDERID_Documents","features":[109]},{"name":"FOLDERID_DocumentsLibrary","features":[109]},{"name":"FOLDERID_Downloads","features":[109]},{"name":"FOLDERID_Favorites","features":[109]},{"name":"FOLDERID_Fonts","features":[109]},{"name":"FOLDERID_GameTasks","features":[109]},{"name":"FOLDERID_Games","features":[109]},{"name":"FOLDERID_History","features":[109]},{"name":"FOLDERID_HomeGroup","features":[109]},{"name":"FOLDERID_HomeGroupCurrentUser","features":[109]},{"name":"FOLDERID_ImplicitAppShortcuts","features":[109]},{"name":"FOLDERID_InternetCache","features":[109]},{"name":"FOLDERID_InternetFolder","features":[109]},{"name":"FOLDERID_Libraries","features":[109]},{"name":"FOLDERID_Links","features":[109]},{"name":"FOLDERID_LocalAppData","features":[109]},{"name":"FOLDERID_LocalAppDataLow","features":[109]},{"name":"FOLDERID_LocalDocuments","features":[109]},{"name":"FOLDERID_LocalDownloads","features":[109]},{"name":"FOLDERID_LocalMusic","features":[109]},{"name":"FOLDERID_LocalPictures","features":[109]},{"name":"FOLDERID_LocalStorage","features":[109]},{"name":"FOLDERID_LocalVideos","features":[109]},{"name":"FOLDERID_LocalizedResourcesDir","features":[109]},{"name":"FOLDERID_Music","features":[109]},{"name":"FOLDERID_MusicLibrary","features":[109]},{"name":"FOLDERID_NetHood","features":[109]},{"name":"FOLDERID_NetworkFolder","features":[109]},{"name":"FOLDERID_Objects3D","features":[109]},{"name":"FOLDERID_OneDrive","features":[109]},{"name":"FOLDERID_OriginalImages","features":[109]},{"name":"FOLDERID_PhotoAlbums","features":[109]},{"name":"FOLDERID_Pictures","features":[109]},{"name":"FOLDERID_PicturesLibrary","features":[109]},{"name":"FOLDERID_Playlists","features":[109]},{"name":"FOLDERID_PrintHood","features":[109]},{"name":"FOLDERID_PrintersFolder","features":[109]},{"name":"FOLDERID_Profile","features":[109]},{"name":"FOLDERID_ProgramData","features":[109]},{"name":"FOLDERID_ProgramFiles","features":[109]},{"name":"FOLDERID_ProgramFilesCommon","features":[109]},{"name":"FOLDERID_ProgramFilesCommonX64","features":[109]},{"name":"FOLDERID_ProgramFilesCommonX86","features":[109]},{"name":"FOLDERID_ProgramFilesX64","features":[109]},{"name":"FOLDERID_ProgramFilesX86","features":[109]},{"name":"FOLDERID_Programs","features":[109]},{"name":"FOLDERID_Public","features":[109]},{"name":"FOLDERID_PublicDesktop","features":[109]},{"name":"FOLDERID_PublicDocuments","features":[109]},{"name":"FOLDERID_PublicDownloads","features":[109]},{"name":"FOLDERID_PublicGameTasks","features":[109]},{"name":"FOLDERID_PublicLibraries","features":[109]},{"name":"FOLDERID_PublicMusic","features":[109]},{"name":"FOLDERID_PublicPictures","features":[109]},{"name":"FOLDERID_PublicRingtones","features":[109]},{"name":"FOLDERID_PublicUserTiles","features":[109]},{"name":"FOLDERID_PublicVideos","features":[109]},{"name":"FOLDERID_QuickLaunch","features":[109]},{"name":"FOLDERID_Recent","features":[109]},{"name":"FOLDERID_RecordedCalls","features":[109]},{"name":"FOLDERID_RecordedTVLibrary","features":[109]},{"name":"FOLDERID_RecycleBinFolder","features":[109]},{"name":"FOLDERID_ResourceDir","features":[109]},{"name":"FOLDERID_RetailDemo","features":[109]},{"name":"FOLDERID_Ringtones","features":[109]},{"name":"FOLDERID_RoamedTileImages","features":[109]},{"name":"FOLDERID_RoamingAppData","features":[109]},{"name":"FOLDERID_RoamingTiles","features":[109]},{"name":"FOLDERID_SEARCH_CSC","features":[109]},{"name":"FOLDERID_SEARCH_MAPI","features":[109]},{"name":"FOLDERID_SampleMusic","features":[109]},{"name":"FOLDERID_SamplePictures","features":[109]},{"name":"FOLDERID_SamplePlaylists","features":[109]},{"name":"FOLDERID_SampleVideos","features":[109]},{"name":"FOLDERID_SavedGames","features":[109]},{"name":"FOLDERID_SavedPictures","features":[109]},{"name":"FOLDERID_SavedPicturesLibrary","features":[109]},{"name":"FOLDERID_SavedSearches","features":[109]},{"name":"FOLDERID_Screenshots","features":[109]},{"name":"FOLDERID_SearchHistory","features":[109]},{"name":"FOLDERID_SearchHome","features":[109]},{"name":"FOLDERID_SearchTemplates","features":[109]},{"name":"FOLDERID_SendTo","features":[109]},{"name":"FOLDERID_SidebarDefaultParts","features":[109]},{"name":"FOLDERID_SidebarParts","features":[109]},{"name":"FOLDERID_SkyDrive","features":[109]},{"name":"FOLDERID_SkyDriveCameraRoll","features":[109]},{"name":"FOLDERID_SkyDriveDocuments","features":[109]},{"name":"FOLDERID_SkyDriveMusic","features":[109]},{"name":"FOLDERID_SkyDrivePictures","features":[109]},{"name":"FOLDERID_StartMenu","features":[109]},{"name":"FOLDERID_StartMenuAllPrograms","features":[109]},{"name":"FOLDERID_Startup","features":[109]},{"name":"FOLDERID_SyncManagerFolder","features":[109]},{"name":"FOLDERID_SyncResultsFolder","features":[109]},{"name":"FOLDERID_SyncSetupFolder","features":[109]},{"name":"FOLDERID_System","features":[109]},{"name":"FOLDERID_SystemX86","features":[109]},{"name":"FOLDERID_Templates","features":[109]},{"name":"FOLDERID_UserPinned","features":[109]},{"name":"FOLDERID_UserProfiles","features":[109]},{"name":"FOLDERID_UserProgramFiles","features":[109]},{"name":"FOLDERID_UserProgramFilesCommon","features":[109]},{"name":"FOLDERID_UsersFiles","features":[109]},{"name":"FOLDERID_UsersLibraries","features":[109]},{"name":"FOLDERID_Videos","features":[109]},{"name":"FOLDERID_VideosLibrary","features":[109]},{"name":"FOLDERID_Windows","features":[109]},{"name":"FOLDERLOGICALVIEWMODE","features":[109]},{"name":"FOLDERSETDATA","features":[109]},{"name":"FOLDERSETTINGS","features":[109]},{"name":"FOLDERTYPEID_AccountPictures","features":[109]},{"name":"FOLDERTYPEID_Communications","features":[109]},{"name":"FOLDERTYPEID_CompressedFolder","features":[109]},{"name":"FOLDERTYPEID_Contacts","features":[109]},{"name":"FOLDERTYPEID_ControlPanelCategory","features":[109]},{"name":"FOLDERTYPEID_ControlPanelClassic","features":[109]},{"name":"FOLDERTYPEID_Documents","features":[109]},{"name":"FOLDERTYPEID_Downloads","features":[109]},{"name":"FOLDERTYPEID_Games","features":[109]},{"name":"FOLDERTYPEID_Generic","features":[109]},{"name":"FOLDERTYPEID_GenericLibrary","features":[109]},{"name":"FOLDERTYPEID_GenericSearchResults","features":[109]},{"name":"FOLDERTYPEID_Invalid","features":[109]},{"name":"FOLDERTYPEID_Music","features":[109]},{"name":"FOLDERTYPEID_NetworkExplorer","features":[109]},{"name":"FOLDERTYPEID_OpenSearch","features":[109]},{"name":"FOLDERTYPEID_OtherUsers","features":[109]},{"name":"FOLDERTYPEID_Pictures","features":[109]},{"name":"FOLDERTYPEID_Printers","features":[109]},{"name":"FOLDERTYPEID_PublishedItems","features":[109]},{"name":"FOLDERTYPEID_RecordedTV","features":[109]},{"name":"FOLDERTYPEID_RecycleBin","features":[109]},{"name":"FOLDERTYPEID_SavedGames","features":[109]},{"name":"FOLDERTYPEID_SearchConnector","features":[109]},{"name":"FOLDERTYPEID_SearchHome","features":[109]},{"name":"FOLDERTYPEID_Searches","features":[109]},{"name":"FOLDERTYPEID_SoftwareExplorer","features":[109]},{"name":"FOLDERTYPEID_StartMenu","features":[109]},{"name":"FOLDERTYPEID_StorageProviderDocuments","features":[109]},{"name":"FOLDERTYPEID_StorageProviderGeneric","features":[109]},{"name":"FOLDERTYPEID_StorageProviderMusic","features":[109]},{"name":"FOLDERTYPEID_StorageProviderPictures","features":[109]},{"name":"FOLDERTYPEID_StorageProviderVideos","features":[109]},{"name":"FOLDERTYPEID_UserFiles","features":[109]},{"name":"FOLDERTYPEID_UsersLibraries","features":[109]},{"name":"FOLDERTYPEID_Videos","features":[109]},{"name":"FOLDERVIEWMODE","features":[109]},{"name":"FOLDERVIEWOPTIONS","features":[109]},{"name":"FOLDER_ENUM_MODE","features":[109]},{"name":"FOS_ALLNONSTORAGEITEMS","features":[109]},{"name":"FOS_ALLOWMULTISELECT","features":[109]},{"name":"FOS_CREATEPROMPT","features":[109]},{"name":"FOS_DEFAULTNOMINIMODE","features":[109]},{"name":"FOS_DONTADDTORECENT","features":[109]},{"name":"FOS_FILEMUSTEXIST","features":[109]},{"name":"FOS_FORCEFILESYSTEM","features":[109]},{"name":"FOS_FORCEPREVIEWPANEON","features":[109]},{"name":"FOS_FORCESHOWHIDDEN","features":[109]},{"name":"FOS_HIDEMRUPLACES","features":[109]},{"name":"FOS_HIDEPINNEDPLACES","features":[109]},{"name":"FOS_NOCHANGEDIR","features":[109]},{"name":"FOS_NODEREFERENCELINKS","features":[109]},{"name":"FOS_NOREADONLYRETURN","features":[109]},{"name":"FOS_NOTESTFILECREATE","features":[109]},{"name":"FOS_NOVALIDATE","features":[109]},{"name":"FOS_OKBUTTONNEEDSINTERACTION","features":[109]},{"name":"FOS_OVERWRITEPROMPT","features":[109]},{"name":"FOS_PATHMUSTEXIST","features":[109]},{"name":"FOS_PICKFOLDERS","features":[109]},{"name":"FOS_SHAREAWARE","features":[109]},{"name":"FOS_STRICTFILETYPES","features":[109]},{"name":"FOS_SUPPORTSTREAMABLEITEMS","features":[109]},{"name":"FO_COPY","features":[109]},{"name":"FO_DELETE","features":[109]},{"name":"FO_MOVE","features":[109]},{"name":"FO_RENAME","features":[109]},{"name":"FP_ABOVE","features":[109]},{"name":"FP_BELOW","features":[109]},{"name":"FP_DEFAULT","features":[109]},{"name":"FP_LEFT","features":[109]},{"name":"FP_RIGHT","features":[109]},{"name":"FSCopyHandler","features":[109]},{"name":"FTA_AlwaysUnsafe","features":[109]},{"name":"FTA_AlwaysUseDirectInvoke","features":[109]},{"name":"FTA_Exclude","features":[109]},{"name":"FTA_HasExtension","features":[109]},{"name":"FTA_NoDDE","features":[109]},{"name":"FTA_NoEdit","features":[109]},{"name":"FTA_NoEditDesc","features":[109]},{"name":"FTA_NoEditDflt","features":[109]},{"name":"FTA_NoEditIcon","features":[109]},{"name":"FTA_NoEditMIME","features":[109]},{"name":"FTA_NoEditVerb","features":[109]},{"name":"FTA_NoEditVerbCmd","features":[109]},{"name":"FTA_NoEditVerbExe","features":[109]},{"name":"FTA_NoNewVerb","features":[109]},{"name":"FTA_NoRecentDocs","features":[109]},{"name":"FTA_NoRemove","features":[109]},{"name":"FTA_NoRemoveVerb","features":[109]},{"name":"FTA_None","features":[109]},{"name":"FTA_OpenIsSafe","features":[109]},{"name":"FTA_SafeForElevation","features":[109]},{"name":"FTA_Show","features":[109]},{"name":"FUT_EDITING","features":[109]},{"name":"FUT_GENERIC","features":[109]},{"name":"FUT_PLAYING","features":[109]},{"name":"FVM_AUTO","features":[109]},{"name":"FVM_CONTENT","features":[109]},{"name":"FVM_DETAILS","features":[109]},{"name":"FVM_FIRST","features":[109]},{"name":"FVM_ICON","features":[109]},{"name":"FVM_LAST","features":[109]},{"name":"FVM_LIST","features":[109]},{"name":"FVM_SMALLICON","features":[109]},{"name":"FVM_THUMBNAIL","features":[109]},{"name":"FVM_THUMBSTRIP","features":[109]},{"name":"FVM_TILE","features":[109]},{"name":"FVO_CUSTOMORDERING","features":[109]},{"name":"FVO_CUSTOMPOSITION","features":[109]},{"name":"FVO_DEFAULT","features":[109]},{"name":"FVO_NOANIMATIONS","features":[109]},{"name":"FVO_NOSCROLLTIPS","features":[109]},{"name":"FVO_SUPPORTHYPERLINKS","features":[109]},{"name":"FVO_VISTALAYOUT","features":[109]},{"name":"FVSIF_CANVIEWIT","features":[109]},{"name":"FVSIF_NEWFAILED","features":[109]},{"name":"FVSIF_NEWFILE","features":[109]},{"name":"FVSIF_PINNED","features":[109]},{"name":"FVSIF_RECT","features":[109]},{"name":"FVST_EMPTYTEXT","features":[109]},{"name":"FVTEXTTYPE","features":[109]},{"name":"FWF_ABBREVIATEDNAMES","features":[109]},{"name":"FWF_ALIGNLEFT","features":[109]},{"name":"FWF_ALLOWRTLREADING","features":[109]},{"name":"FWF_AUTOARRANGE","features":[109]},{"name":"FWF_AUTOCHECKSELECT","features":[109]},{"name":"FWF_BESTFITWINDOW","features":[109]},{"name":"FWF_CHECKSELECT","features":[109]},{"name":"FWF_DESKTOP","features":[109]},{"name":"FWF_EXTENDEDTILES","features":[109]},{"name":"FWF_FULLROWSELECT","features":[109]},{"name":"FWF_HIDEFILENAMES","features":[109]},{"name":"FWF_NOBROWSERVIEWSTATE","features":[109]},{"name":"FWF_NOCLIENTEDGE","features":[109]},{"name":"FWF_NOCOLUMNHEADER","features":[109]},{"name":"FWF_NOENUMREFRESH","features":[109]},{"name":"FWF_NOFILTERS","features":[109]},{"name":"FWF_NOGROUPING","features":[109]},{"name":"FWF_NOHEADERINALLVIEWS","features":[109]},{"name":"FWF_NOICONS","features":[109]},{"name":"FWF_NONE","features":[109]},{"name":"FWF_NOSCROLL","features":[109]},{"name":"FWF_NOSUBFOLDERS","features":[109]},{"name":"FWF_NOVISIBLE","features":[109]},{"name":"FWF_NOWEBVIEW","features":[109]},{"name":"FWF_OWNERDATA","features":[109]},{"name":"FWF_SHOWSELALWAYS","features":[109]},{"name":"FWF_SINGLECLICKACTIVATE","features":[109]},{"name":"FWF_SINGLESEL","features":[109]},{"name":"FWF_SNAPTOGRID","features":[109]},{"name":"FWF_SUBSETGROUPS","features":[109]},{"name":"FWF_TRANSPARENT","features":[109]},{"name":"FWF_TRICHECKSELECT","features":[109]},{"name":"FWF_USESEARCHFOLDER","features":[109]},{"name":"FileIconInit","features":[1,109]},{"name":"FileOpenDialog","features":[109]},{"name":"FileOperation","features":[109]},{"name":"FileSaveDialog","features":[109]},{"name":"FileSearchBand","features":[109]},{"name":"FindExecutableA","features":[1,109]},{"name":"FindExecutableW","features":[1,109]},{"name":"Folder","features":[109]},{"name":"Folder2","features":[109]},{"name":"Folder3","features":[109]},{"name":"FolderItem","features":[109]},{"name":"FolderItem2","features":[109]},{"name":"FolderItemVerb","features":[109]},{"name":"FolderItemVerbs","features":[109]},{"name":"FolderItems","features":[109]},{"name":"FolderItems2","features":[109]},{"name":"FolderItems3","features":[109]},{"name":"FolderViewHost","features":[109]},{"name":"FrameworkInputPane","features":[109]},{"name":"FreeSpaceCategorizer","features":[109]},{"name":"GADOF_DIRTY","features":[109]},{"name":"GCS_HELPTEXT","features":[109]},{"name":"GCS_HELPTEXTA","features":[109]},{"name":"GCS_HELPTEXTW","features":[109]},{"name":"GCS_UNICODE","features":[109]},{"name":"GCS_VALIDATE","features":[109]},{"name":"GCS_VALIDATEA","features":[109]},{"name":"GCS_VALIDATEW","features":[109]},{"name":"GCS_VERB","features":[109]},{"name":"GCS_VERBA","features":[109]},{"name":"GCS_VERBICONW","features":[109]},{"name":"GCS_VERBW","features":[109]},{"name":"GCT_INVALID","features":[109]},{"name":"GCT_LFNCHAR","features":[109]},{"name":"GCT_SEPARATOR","features":[109]},{"name":"GCT_SHORTCHAR","features":[109]},{"name":"GCT_WILD","features":[109]},{"name":"GETPROPS_NONE","features":[109]},{"name":"GIL_ASYNC","features":[109]},{"name":"GIL_CHECKSHIELD","features":[109]},{"name":"GIL_DEFAULTICON","features":[109]},{"name":"GIL_DONTCACHE","features":[109]},{"name":"GIL_FORCENOSHIELD","features":[109]},{"name":"GIL_FORSHELL","features":[109]},{"name":"GIL_FORSHORTCUT","features":[109]},{"name":"GIL_NOTFILENAME","features":[109]},{"name":"GIL_OPENICON","features":[109]},{"name":"GIL_PERCLASS","features":[109]},{"name":"GIL_PERINSTANCE","features":[109]},{"name":"GIL_SHIELD","features":[109]},{"name":"GIL_SIMULATEDOC","features":[109]},{"name":"GLOBALCOUNTER_APPLICATION_DESTINATIONS","features":[109]},{"name":"GLOBALCOUNTER_APPROVEDSITES","features":[109]},{"name":"GLOBALCOUNTER_APPSFOLDER_FILETYPEASSOCIATION_COUNTER","features":[109]},{"name":"GLOBALCOUNTER_APP_ITEMS_STATE_STORE_CACHE","features":[109]},{"name":"GLOBALCOUNTER_ASSOCCHANGED","features":[109]},{"name":"GLOBALCOUNTER_BANNERS_DATAMODEL_CACHE_MACHINEWIDE","features":[109]},{"name":"GLOBALCOUNTER_BITBUCKETNUMDELETERS","features":[109]},{"name":"GLOBALCOUNTER_COMMONPLACES_LIST_CACHE","features":[109]},{"name":"GLOBALCOUNTER_FOLDERDEFINITION_CACHE","features":[109]},{"name":"GLOBALCOUNTER_FOLDERSETTINGSCHANGE","features":[109]},{"name":"GLOBALCOUNTER_IEONLY_SESSIONS","features":[109]},{"name":"GLOBALCOUNTER_IESESSIONS","features":[109]},{"name":"GLOBALCOUNTER_INTERNETTOOLBAR_LAYOUT","features":[109]},{"name":"GLOBALCOUNTER_MAXIMUMVALUE","features":[109]},{"name":"GLOBALCOUNTER_OVERLAYMANAGER","features":[109]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE","features":[109]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE_MACHINEWIDE","features":[109]},{"name":"GLOBALCOUNTER_QUERYASSOCIATIONS","features":[109]},{"name":"GLOBALCOUNTER_RATINGS","features":[109]},{"name":"GLOBALCOUNTER_RATINGS_STATECOUNTER","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEBINCORRUPTED","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEBINENUM","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_A","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_B","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_C","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_D","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_E","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_F","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_G","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_H","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_I","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_J","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_K","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_L","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_M","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_N","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_O","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_P","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Q","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_R","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_S","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_T","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_U","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_V","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_W","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_X","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Y","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Z","features":[109]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SHARES","features":[109]},{"name":"GLOBALCOUNTER_RESTRICTIONS","features":[109]},{"name":"GLOBALCOUNTER_SEARCHMANAGER","features":[109]},{"name":"GLOBALCOUNTER_SEARCHOPTIONS","features":[109]},{"name":"GLOBALCOUNTER_SETTINGSYNC_ENABLED","features":[109]},{"name":"GLOBALCOUNTER_SHELLSETTINGSCHANGED","features":[109]},{"name":"GLOBALCOUNTER_SYNC_ENGINE_INFORMATION_CACHE_MACHINEWIDE","features":[109]},{"name":"GLOBALCOUNTER_SYSTEMPIDLCHANGE","features":[109]},{"name":"GLOBALCOUNTER_USERINFOCHANGED","features":[109]},{"name":"GPFIDL_ALTNAME","features":[109]},{"name":"GPFIDL_DEFAULT","features":[109]},{"name":"GPFIDL_FLAGS","features":[109]},{"name":"GPFIDL_UNCPRINTER","features":[109]},{"name":"GenericCredentialProvider","features":[109]},{"name":"GetAcceptLanguagesA","features":[109]},{"name":"GetAcceptLanguagesW","features":[109]},{"name":"GetAllUsersProfileDirectoryA","features":[1,109]},{"name":"GetAllUsersProfileDirectoryW","features":[1,109]},{"name":"GetCurrentProcessExplicitAppUserModelID","features":[109]},{"name":"GetDefaultUserProfileDirectoryA","features":[1,109]},{"name":"GetDefaultUserProfileDirectoryW","features":[1,109]},{"name":"GetDpiForShellUIComponent","features":[109]},{"name":"GetFileNameFromBrowse","features":[1,109]},{"name":"GetMenuContextHelpId","features":[109,50]},{"name":"GetMenuPosFromID","features":[109,50]},{"name":"GetProfileType","features":[1,109]},{"name":"GetProfilesDirectoryA","features":[1,109]},{"name":"GetProfilesDirectoryW","features":[1,109]},{"name":"GetScaleFactorForDevice","features":[219]},{"name":"GetScaleFactorForMonitor","features":[12,219]},{"name":"GetUserProfileDirectoryA","features":[1,109]},{"name":"GetUserProfileDirectoryW","features":[1,109]},{"name":"GetWindowContextHelpId","features":[1,109]},{"name":"GetWindowSubclass","features":[1,109]},{"name":"HDROP","features":[109]},{"name":"HELPINFO","features":[1,109]},{"name":"HELPINFO_MENUITEM","features":[109]},{"name":"HELPINFO_WINDOW","features":[109]},{"name":"HELPWININFOA","features":[109]},{"name":"HELPWININFOW","features":[109]},{"name":"HELP_INFO_TYPE","features":[109]},{"name":"HGSC_DOCUMENTSLIBRARY","features":[109]},{"name":"HGSC_MUSICLIBRARY","features":[109]},{"name":"HGSC_NONE","features":[109]},{"name":"HGSC_PICTURESLIBRARY","features":[109]},{"name":"HGSC_PRINTERS","features":[109]},{"name":"HGSC_VIDEOSLIBRARY","features":[109]},{"name":"HLBWIF_DOCWNDMAXIMIZED","features":[109]},{"name":"HLBWIF_FLAGS","features":[109]},{"name":"HLBWIF_FRAMEWNDMAXIMIZED","features":[109]},{"name":"HLBWIF_HASDOCWNDINFO","features":[109]},{"name":"HLBWIF_HASFRAMEWNDINFO","features":[109]},{"name":"HLBWIF_HASWEBTOOLBARINFO","features":[109]},{"name":"HLBWIF_WEBTOOLBARHIDDEN","features":[109]},{"name":"HLBWINFO","features":[1,109]},{"name":"HLFNAMEF","features":[109]},{"name":"HLFNAMEF_DEFAULT","features":[109]},{"name":"HLFNAMEF_TRYCACHE","features":[109]},{"name":"HLFNAMEF_TRYFULLTARGET","features":[109]},{"name":"HLFNAMEF_TRYPRETTYTARGET","features":[109]},{"name":"HLFNAMEF_TRYWIN95SHORTCUT","features":[109]},{"name":"HLID_CURRENT","features":[109]},{"name":"HLID_INFO","features":[109]},{"name":"HLID_INVALID","features":[109]},{"name":"HLID_NEXT","features":[109]},{"name":"HLID_PREVIOUS","features":[109]},{"name":"HLID_STACKBOTTOM","features":[109]},{"name":"HLID_STACKTOP","features":[109]},{"name":"HLINKGETREF","features":[109]},{"name":"HLINKGETREF_ABSOLUTE","features":[109]},{"name":"HLINKGETREF_DEFAULT","features":[109]},{"name":"HLINKGETREF_RELATIVE","features":[109]},{"name":"HLINKMISC","features":[109]},{"name":"HLINKMISC_RELATIVE","features":[109]},{"name":"HLINKSETF","features":[109]},{"name":"HLINKSETF_LOCATION","features":[109]},{"name":"HLINKSETF_TARGET","features":[109]},{"name":"HLINKWHICHMK","features":[109]},{"name":"HLINKWHICHMK_BASE","features":[109]},{"name":"HLINKWHICHMK_CONTAINER","features":[109]},{"name":"HLINK_E_FIRST","features":[109]},{"name":"HLINK_S_DONTHIDE","features":[109]},{"name":"HLINK_S_FIRST","features":[109]},{"name":"HLITEM","features":[109]},{"name":"HLNF","features":[109]},{"name":"HLNF_ALLOW_AUTONAVIGATE","features":[109]},{"name":"HLNF_CALLERUNTRUSTED","features":[109]},{"name":"HLNF_CREATENOHISTORY","features":[109]},{"name":"HLNF_DISABLEWINDOWRESTRICTIONS","features":[109]},{"name":"HLNF_EXTERNALNAVIGATE","features":[109]},{"name":"HLNF_INTERNALJUMP","features":[109]},{"name":"HLNF_NAVIGATINGBACK","features":[109]},{"name":"HLNF_NAVIGATINGFORWARD","features":[109]},{"name":"HLNF_NAVIGATINGTOSTACKITEM","features":[109]},{"name":"HLNF_NEWWINDOWSMANAGED","features":[109]},{"name":"HLNF_OPENINNEWWINDOW","features":[109]},{"name":"HLNF_TRUSTEDFORACTIVEX","features":[109]},{"name":"HLNF_TRUSTFIRSTDOWNLOAD","features":[109]},{"name":"HLNF_UNTRUSTEDFORDOWNLOAD","features":[109]},{"name":"HLQF_INFO","features":[109]},{"name":"HLQF_ISCURRENT","features":[109]},{"name":"HLQF_ISVALID","features":[109]},{"name":"HLSHORTCUTF","features":[109]},{"name":"HLSHORTCUTF_DEFAULT","features":[109]},{"name":"HLSHORTCUTF_DONTACTUALLYCREATE","features":[109]},{"name":"HLSHORTCUTF_MAYUSEEXISTINGSHORTCUT","features":[109]},{"name":"HLSHORTCUTF_USEFILENAMEFROMFRIENDLYNAME","features":[109]},{"name":"HLSHORTCUTF_USEUNIQUEFILENAME","features":[109]},{"name":"HLSR","features":[109]},{"name":"HLSR_HISTORYFOLDER","features":[109]},{"name":"HLSR_HOME","features":[109]},{"name":"HLSR_SEARCHPAGE","features":[109]},{"name":"HLTBINFO","features":[1,109]},{"name":"HLTB_DOCKEDBOTTOM","features":[109]},{"name":"HLTB_DOCKEDLEFT","features":[109]},{"name":"HLTB_DOCKEDRIGHT","features":[109]},{"name":"HLTB_DOCKEDTOP","features":[109]},{"name":"HLTB_FLOATING","features":[109]},{"name":"HLTB_INFO","features":[109]},{"name":"HLTRANSLATEF","features":[109]},{"name":"HLTRANSLATEF_DEFAULT","features":[109]},{"name":"HLTRANSLATEF_DONTAPPLYDEFAULTPREFIX","features":[109]},{"name":"HMONITOR_UserFree","features":[12,109]},{"name":"HMONITOR_UserFree64","features":[12,109]},{"name":"HMONITOR_UserMarshal","features":[12,109]},{"name":"HMONITOR_UserMarshal64","features":[12,109]},{"name":"HMONITOR_UserSize","features":[12,109]},{"name":"HMONITOR_UserSize64","features":[12,109]},{"name":"HMONITOR_UserUnmarshal","features":[12,109]},{"name":"HMONITOR_UserUnmarshal64","features":[12,109]},{"name":"HOMEGROUPSHARINGCHOICES","features":[109]},{"name":"HOMEGROUP_SECURITY_GROUP","features":[109]},{"name":"HOMEGROUP_SECURITY_GROUP_MULTI","features":[109]},{"name":"HPSXA","features":[109]},{"name":"HashData","features":[109]},{"name":"HideInputPaneAnimationCoordinator","features":[109]},{"name":"HlinkClone","features":[109]},{"name":"HlinkCreateBrowseContext","features":[109]},{"name":"HlinkCreateExtensionServices","features":[1,109]},{"name":"HlinkCreateFromData","features":[109]},{"name":"HlinkCreateFromMoniker","features":[109]},{"name":"HlinkCreateFromString","features":[109]},{"name":"HlinkCreateShortcut","features":[109]},{"name":"HlinkCreateShortcutFromMoniker","features":[109]},{"name":"HlinkCreateShortcutFromString","features":[109]},{"name":"HlinkGetSpecialReference","features":[109]},{"name":"HlinkGetValueFromParams","features":[109]},{"name":"HlinkIsShortcut","features":[109]},{"name":"HlinkNavigate","features":[109]},{"name":"HlinkNavigateToStringReference","features":[109]},{"name":"HlinkOnNavigate","features":[109]},{"name":"HlinkOnRenameDocument","features":[109]},{"name":"HlinkParseDisplayName","features":[1,109]},{"name":"HlinkPreprocessMoniker","features":[109]},{"name":"HlinkQueryCreateFromData","features":[109]},{"name":"HlinkResolveMonikerForData","features":[41,109]},{"name":"HlinkResolveShortcut","features":[109]},{"name":"HlinkResolveShortcutToMoniker","features":[109]},{"name":"HlinkResolveShortcutToString","features":[109]},{"name":"HlinkResolveStringForData","features":[41,109]},{"name":"HlinkSetSpecialReference","features":[109]},{"name":"HlinkTranslateURL","features":[109]},{"name":"HlinkUpdateStackItem","features":[109]},{"name":"HomeGroup","features":[109]},{"name":"IACList","features":[109]},{"name":"IACList2","features":[109]},{"name":"IAccessibilityDockingService","features":[109]},{"name":"IAccessibilityDockingServiceCallback","features":[109]},{"name":"IAccessibleObject","features":[109]},{"name":"IActionProgress","features":[109]},{"name":"IActionProgressDialog","features":[109]},{"name":"IAppActivationUIInfo","features":[109]},{"name":"IAppPublisher","features":[109]},{"name":"IAppVisibility","features":[109]},{"name":"IAppVisibilityEvents","features":[109]},{"name":"IApplicationActivationManager","features":[109]},{"name":"IApplicationAssociationRegistration","features":[109]},{"name":"IApplicationAssociationRegistrationUI","features":[109]},{"name":"IApplicationDesignModeSettings","features":[109]},{"name":"IApplicationDesignModeSettings2","features":[109]},{"name":"IApplicationDestinations","features":[109]},{"name":"IApplicationDocumentLists","features":[109]},{"name":"IAssocHandler","features":[109]},{"name":"IAssocHandlerInvoker","features":[109]},{"name":"IAttachmentExecute","features":[109]},{"name":"IAutoComplete","features":[109]},{"name":"IAutoComplete2","features":[109]},{"name":"IAutoCompleteDropDown","features":[109]},{"name":"IBandHost","features":[109]},{"name":"IBandSite","features":[109]},{"name":"IBannerNotificationHandler","features":[109]},{"name":"IBanneredBar","features":[109]},{"name":"IBrowserFrameOptions","features":[109]},{"name":"IBrowserService","features":[109]},{"name":"IBrowserService2","features":[109]},{"name":"IBrowserService3","features":[109]},{"name":"IBrowserService4","features":[109]},{"name":"ICDBurn","features":[109]},{"name":"ICDBurnExt","features":[109]},{"name":"ICategorizer","features":[109]},{"name":"ICategoryProvider","features":[109]},{"name":"IColumnManager","features":[109]},{"name":"IColumnProvider","features":[109]},{"name":"ICommDlgBrowser","features":[109]},{"name":"ICommDlgBrowser2","features":[109]},{"name":"ICommDlgBrowser3","features":[109]},{"name":"IComputerInfoChangeNotify","features":[109]},{"name":"IConnectableCredentialProviderCredential","features":[109]},{"name":"IContactManagerInterop","features":[109]},{"name":"IContextMenu","features":[109]},{"name":"IContextMenu2","features":[109]},{"name":"IContextMenu3","features":[109]},{"name":"IContextMenuCB","features":[109]},{"name":"IContextMenuSite","features":[109]},{"name":"ICopyHookA","features":[109]},{"name":"ICopyHookW","features":[109]},{"name":"ICreateProcessInputs","features":[109]},{"name":"ICreatingProcess","features":[109]},{"name":"ICredentialProvider","features":[109]},{"name":"ICredentialProviderCredential","features":[109]},{"name":"ICredentialProviderCredential2","features":[109]},{"name":"ICredentialProviderCredentialEvents","features":[109]},{"name":"ICredentialProviderCredentialEvents2","features":[109]},{"name":"ICredentialProviderCredentialWithFieldOptions","features":[109]},{"name":"ICredentialProviderEvents","features":[109]},{"name":"ICredentialProviderFilter","features":[109]},{"name":"ICredentialProviderSetUserArray","features":[109]},{"name":"ICredentialProviderUser","features":[109]},{"name":"ICredentialProviderUserArray","features":[109]},{"name":"ICurrentItem","features":[109]},{"name":"ICurrentWorkingDirectory","features":[109]},{"name":"ICustomDestinationList","features":[109]},{"name":"IDC_OFFLINE_HAND","features":[109]},{"name":"IDC_PANTOOL_HAND_CLOSED","features":[109]},{"name":"IDC_PANTOOL_HAND_OPEN","features":[109]},{"name":"IDD_WIZEXTN_FIRST","features":[109]},{"name":"IDD_WIZEXTN_LAST","features":[109]},{"name":"IDO_SHGIOI_DEFAULT","features":[109]},{"name":"IDO_SHGIOI_LINK","features":[109]},{"name":"IDO_SHGIOI_SHARE","features":[109]},{"name":"IDO_SHGIOI_SLOWFILE","features":[109]},{"name":"IDS_DESCRIPTION","features":[109]},{"name":"ID_APP","features":[109]},{"name":"IDataObjectAsyncCapability","features":[109]},{"name":"IDataObjectProvider","features":[109]},{"name":"IDataTransferManagerInterop","features":[109]},{"name":"IDefaultExtractIconInit","features":[109]},{"name":"IDefaultFolderMenuInitialize","features":[109]},{"name":"IDelegateFolder","features":[109]},{"name":"IDelegateItem","features":[109]},{"name":"IDeskBand","features":[109]},{"name":"IDeskBand2","features":[109]},{"name":"IDeskBandInfo","features":[109]},{"name":"IDeskBar","features":[109]},{"name":"IDeskBarClient","features":[109]},{"name":"IDesktopGadget","features":[109]},{"name":"IDesktopWallpaper","features":[109]},{"name":"IDestinationStreamFactory","features":[109]},{"name":"IDisplayItem","features":[109]},{"name":"IDocViewSite","features":[109]},{"name":"IDockingWindow","features":[109]},{"name":"IDockingWindowFrame","features":[109]},{"name":"IDockingWindowSite","features":[109]},{"name":"IDragSourceHelper","features":[109]},{"name":"IDragSourceHelper2","features":[109]},{"name":"IDropTargetHelper","features":[109]},{"name":"IDynamicHWHandler","features":[109]},{"name":"IEIFLAG_ASPECT","features":[109]},{"name":"IEIFLAG_ASYNC","features":[109]},{"name":"IEIFLAG_CACHE","features":[109]},{"name":"IEIFLAG_GLEAM","features":[109]},{"name":"IEIFLAG_NOBORDER","features":[109]},{"name":"IEIFLAG_NOSTAMP","features":[109]},{"name":"IEIFLAG_OFFLINE","features":[109]},{"name":"IEIFLAG_ORIGSIZE","features":[109]},{"name":"IEIFLAG_QUALITY","features":[109]},{"name":"IEIFLAG_REFRESH","features":[109]},{"name":"IEIFLAG_SCREEN","features":[109]},{"name":"IEIT_PRIORITY_NORMAL","features":[109]},{"name":"IEI_PRIORITY_MAX","features":[109]},{"name":"IEI_PRIORITY_MIN","features":[109]},{"name":"IENamespaceTreeControl","features":[109]},{"name":"IEPDNFLAGS","features":[109]},{"name":"IEPDN_BINDINGUI","features":[109]},{"name":"IESHORTCUTFLAGS","features":[109]},{"name":"IESHORTCUT_BACKGROUNDTAB","features":[109]},{"name":"IESHORTCUT_FORCENAVIGATE","features":[109]},{"name":"IESHORTCUT_NEWBROWSER","features":[109]},{"name":"IESHORTCUT_OPENNEWTAB","features":[109]},{"name":"IEnumACString","features":[109]},{"name":"IEnumAssocHandlers","features":[109]},{"name":"IEnumExplorerCommand","features":[109]},{"name":"IEnumExtraSearch","features":[109]},{"name":"IEnumFullIDList","features":[109]},{"name":"IEnumHLITEM","features":[109]},{"name":"IEnumIDList","features":[109]},{"name":"IEnumObjects","features":[109]},{"name":"IEnumPublishedApps","features":[109]},{"name":"IEnumReadyCallback","features":[109]},{"name":"IEnumResources","features":[109]},{"name":"IEnumShellItems","features":[109]},{"name":"IEnumSyncMgrConflict","features":[109]},{"name":"IEnumSyncMgrEvents","features":[109]},{"name":"IEnumSyncMgrSyncItems","features":[109]},{"name":"IEnumTravelLogEntry","features":[109]},{"name":"IEnumerableView","features":[109]},{"name":"IExecuteCommand","features":[109]},{"name":"IExecuteCommandApplicationHostEnvironment","features":[109]},{"name":"IExecuteCommandHost","features":[109]},{"name":"IExpDispSupport","features":[109]},{"name":"IExpDispSupportXP","features":[109]},{"name":"IExplorerBrowser","features":[109]},{"name":"IExplorerBrowserEvents","features":[109]},{"name":"IExplorerCommand","features":[109]},{"name":"IExplorerCommandProvider","features":[109]},{"name":"IExplorerCommandState","features":[109]},{"name":"IExplorerPaneVisibility","features":[109]},{"name":"IExtensionServices","features":[109]},{"name":"IExtractIconA","features":[109]},{"name":"IExtractIconW","features":[109]},{"name":"IExtractImage","features":[109]},{"name":"IExtractImage2","features":[109]},{"name":"IFileDialog","features":[109]},{"name":"IFileDialog2","features":[109]},{"name":"IFileDialogControlEvents","features":[109]},{"name":"IFileDialogCustomize","features":[109]},{"name":"IFileDialogEvents","features":[109]},{"name":"IFileIsInUse","features":[109]},{"name":"IFileOpenDialog","features":[109]},{"name":"IFileOperation","features":[109]},{"name":"IFileOperation2","features":[109]},{"name":"IFileOperationProgressSink","features":[109]},{"name":"IFileSaveDialog","features":[109]},{"name":"IFileSearchBand","features":[109]},{"name":"IFileSyncMergeHandler","features":[109]},{"name":"IFileSystemBindData","features":[109]},{"name":"IFileSystemBindData2","features":[109]},{"name":"IFolderBandPriv","features":[109]},{"name":"IFolderFilter","features":[109]},{"name":"IFolderFilterSite","features":[109]},{"name":"IFolderView","features":[109]},{"name":"IFolderView2","features":[109]},{"name":"IFolderViewHost","features":[109]},{"name":"IFolderViewOC","features":[109]},{"name":"IFolderViewOptions","features":[109]},{"name":"IFolderViewSettings","features":[109]},{"name":"IFrameworkInputPane","features":[109]},{"name":"IFrameworkInputPaneHandler","features":[109]},{"name":"IGetServiceIds","features":[109]},{"name":"IHWEventHandler","features":[109]},{"name":"IHWEventHandler2","features":[109]},{"name":"IHandlerActivationHost","features":[109]},{"name":"IHandlerInfo","features":[109]},{"name":"IHandlerInfo2","features":[109]},{"name":"IHlink","features":[109]},{"name":"IHlinkBrowseContext","features":[109]},{"name":"IHlinkFrame","features":[109]},{"name":"IHlinkSite","features":[109]},{"name":"IHlinkTarget","features":[109]},{"name":"IHomeGroup","features":[109]},{"name":"IIOCancelInformation","features":[109]},{"name":"IIdentityName","features":[109]},{"name":"IImageRecompress","features":[109]},{"name":"IInitializeCommand","features":[109]},{"name":"IInitializeNetworkFolder","features":[109]},{"name":"IInitializeObject","features":[109]},{"name":"IInitializeWithBindCtx","features":[109]},{"name":"IInitializeWithItem","features":[109]},{"name":"IInitializeWithPropertyStore","features":[109]},{"name":"IInitializeWithWindow","features":[109]},{"name":"IInputObject","features":[109]},{"name":"IInputObject2","features":[109]},{"name":"IInputObjectSite","features":[109]},{"name":"IInputPaneAnimationCoordinator","features":[109]},{"name":"IInputPanelConfiguration","features":[109]},{"name":"IInputPanelInvocationConfiguration","features":[109]},{"name":"IInsertItem","features":[109]},{"name":"IItemNameLimits","features":[109]},{"name":"IKnownFolder","features":[109]},{"name":"IKnownFolderManager","features":[109]},{"name":"ILAppendID","features":[1,219]},{"name":"ILClone","features":[219]},{"name":"ILCloneFirst","features":[219]},{"name":"ILCombine","features":[219]},{"name":"ILCreateFromPathA","features":[219]},{"name":"ILCreateFromPathW","features":[219]},{"name":"ILFindChild","features":[219]},{"name":"ILFindLastID","features":[219]},{"name":"ILFree","features":[219]},{"name":"ILGetNext","features":[219]},{"name":"ILGetSize","features":[219]},{"name":"ILIsEqual","features":[1,219]},{"name":"ILIsParent","features":[1,219]},{"name":"ILLoadFromStreamEx","features":[219]},{"name":"ILMM_IE4","features":[109]},{"name":"ILRemoveLastID","features":[1,219]},{"name":"ILSaveToStream","features":[219]},{"name":"ILaunchSourceAppUserModelId","features":[109]},{"name":"ILaunchSourceViewSizePreference","features":[109]},{"name":"ILaunchTargetMonitor","features":[109]},{"name":"ILaunchTargetViewSizePreference","features":[109]},{"name":"ILaunchUIContext","features":[109]},{"name":"ILaunchUIContextProvider","features":[109]},{"name":"IMM_ACC_DOCKING_E_DOCKOCCUPIED","features":[109]},{"name":"IMM_ACC_DOCKING_E_INSUFFICIENTHEIGHT","features":[109]},{"name":"IMSC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[109]},{"name":"IMenuBand","features":[109]},{"name":"IMenuPopup","features":[109]},{"name":"IModalWindow","features":[109]},{"name":"INTERNET_MAX_PATH_LENGTH","features":[109]},{"name":"INTERNET_MAX_SCHEME_LENGTH","features":[109]},{"name":"INameSpaceTreeAccessible","features":[109]},{"name":"INameSpaceTreeControl","features":[109]},{"name":"INameSpaceTreeControl2","features":[109]},{"name":"INameSpaceTreeControlCustomDraw","features":[109]},{"name":"INameSpaceTreeControlDropHandler","features":[109]},{"name":"INameSpaceTreeControlEvents","features":[109]},{"name":"INameSpaceTreeControlFolderCapabilities","features":[109]},{"name":"INamedPropertyBag","features":[109]},{"name":"INamespaceWalk","features":[109]},{"name":"INamespaceWalkCB","features":[109]},{"name":"INamespaceWalkCB2","features":[109]},{"name":"INetworkFolderInternal","features":[109]},{"name":"INewMenuClient","features":[109]},{"name":"INewShortcutHookA","features":[109]},{"name":"INewShortcutHookW","features":[109]},{"name":"INewWDEvents","features":[109]},{"name":"INewWindowManager","features":[109]},{"name":"INotifyReplica","features":[109]},{"name":"IObjMgr","features":[109]},{"name":"IObjectProvider","features":[109]},{"name":"IObjectWithAppUserModelID","features":[109]},{"name":"IObjectWithBackReferences","features":[109]},{"name":"IObjectWithCancelEvent","features":[109]},{"name":"IObjectWithFolderEnumMode","features":[109]},{"name":"IObjectWithProgID","features":[109]},{"name":"IObjectWithSelection","features":[109]},{"name":"IOpenControlPanel","features":[109]},{"name":"IOpenSearchSource","features":[109]},{"name":"IOperationsProgressDialog","features":[109]},{"name":"IPackageDebugSettings","features":[109]},{"name":"IPackageDebugSettings2","features":[109]},{"name":"IPackageExecutionStateChangeNotification","features":[109]},{"name":"IParentAndItem","features":[109]},{"name":"IParseAndCreateItem","features":[109]},{"name":"IPersistFolder","features":[109]},{"name":"IPersistFolder2","features":[109]},{"name":"IPersistFolder3","features":[109]},{"name":"IPersistIDList","features":[109]},{"name":"IPreviewHandler","features":[109]},{"name":"IPreviewHandlerFrame","features":[109]},{"name":"IPreviewHandlerVisuals","features":[109]},{"name":"IPreviewItem","features":[109]},{"name":"IPreviousVersionsInfo","features":[109]},{"name":"IProfferService","features":[109]},{"name":"IProgressDialog","features":[109]},{"name":"IPropertyKeyStore","features":[109]},{"name":"IPublishedApp","features":[109]},{"name":"IPublishedApp2","features":[109]},{"name":"IPublishingWizard","features":[109]},{"name":"IQueryAssociations","features":[109]},{"name":"IQueryCancelAutoPlay","features":[109]},{"name":"IQueryCodePage","features":[109]},{"name":"IQueryContinue","features":[109]},{"name":"IQueryContinueWithStatus","features":[109]},{"name":"IQueryInfo","features":[109]},{"name":"IRTIR_TASK_FINISHED","features":[109]},{"name":"IRTIR_TASK_NOT_RUNNING","features":[109]},{"name":"IRTIR_TASK_PENDING","features":[109]},{"name":"IRTIR_TASK_RUNNING","features":[109]},{"name":"IRTIR_TASK_SUSPENDED","features":[109]},{"name":"IRegTreeItem","features":[109]},{"name":"IRelatedItem","features":[109]},{"name":"IRemoteComputer","features":[109]},{"name":"IResolveShellLink","features":[109]},{"name":"IResultsFolder","features":[109]},{"name":"IRunnableTask","features":[109]},{"name":"ISFBVIEWMODE_LARGEICONS","features":[109]},{"name":"ISFBVIEWMODE_LOGOS","features":[109]},{"name":"ISFBVIEWMODE_SMALLICONS","features":[109]},{"name":"ISFB_MASK_BKCOLOR","features":[109]},{"name":"ISFB_MASK_COLORS","features":[109]},{"name":"ISFB_MASK_IDLIST","features":[109]},{"name":"ISFB_MASK_SHELLFOLDER","features":[109]},{"name":"ISFB_MASK_STATE","features":[109]},{"name":"ISFB_MASK_VIEWMODE","features":[109]},{"name":"ISFB_STATE_ALLOWRENAME","features":[109]},{"name":"ISFB_STATE_BTNMINSIZE","features":[109]},{"name":"ISFB_STATE_CHANNELBAR","features":[109]},{"name":"ISFB_STATE_DEBOSSED","features":[109]},{"name":"ISFB_STATE_DEFAULT","features":[109]},{"name":"ISFB_STATE_FULLOPEN","features":[109]},{"name":"ISFB_STATE_NONAMESORT","features":[109]},{"name":"ISFB_STATE_NOSHOWTEXT","features":[109]},{"name":"ISFB_STATE_QLINKSMODE","features":[109]},{"name":"ISHCUTCMDID_COMMITHISTORY","features":[109]},{"name":"ISHCUTCMDID_DOWNLOADICON","features":[109]},{"name":"ISHCUTCMDID_INTSHORTCUTCREATE","features":[109]},{"name":"ISHCUTCMDID_SETUSERAWURL","features":[109]},{"name":"ISIOI_ICONFILE","features":[109]},{"name":"ISIOI_ICONINDEX","features":[109]},{"name":"IS_E_EXEC_FAILED","features":[109]},{"name":"IS_FULLSCREEN","features":[109]},{"name":"IS_NORMAL","features":[109]},{"name":"IS_SPLIT","features":[109]},{"name":"IScriptErrorList","features":[109]},{"name":"ISearchBoxInfo","features":[109]},{"name":"ISearchContext","features":[109]},{"name":"ISearchFolderItemFactory","features":[109]},{"name":"ISharedBitmap","features":[109]},{"name":"ISharingConfigurationManager","features":[109]},{"name":"IShellApp","features":[109]},{"name":"IShellBrowser","features":[109]},{"name":"IShellChangeNotify","features":[109]},{"name":"IShellDetails","features":[109]},{"name":"IShellDispatch","features":[109]},{"name":"IShellDispatch2","features":[109]},{"name":"IShellDispatch3","features":[109]},{"name":"IShellDispatch4","features":[109]},{"name":"IShellDispatch5","features":[109]},{"name":"IShellDispatch6","features":[109]},{"name":"IShellExtInit","features":[109]},{"name":"IShellFavoritesNameSpace","features":[109]},{"name":"IShellFolder","features":[109]},{"name":"IShellFolder2","features":[109]},{"name":"IShellFolderBand","features":[109]},{"name":"IShellFolderView","features":[109]},{"name":"IShellFolderViewCB","features":[109]},{"name":"IShellFolderViewDual","features":[109]},{"name":"IShellFolderViewDual2","features":[109]},{"name":"IShellFolderViewDual3","features":[109]},{"name":"IShellIcon","features":[109]},{"name":"IShellIconOverlay","features":[109]},{"name":"IShellIconOverlayIdentifier","features":[109]},{"name":"IShellIconOverlayManager","features":[109]},{"name":"IShellImageData","features":[109]},{"name":"IShellImageDataAbort","features":[109]},{"name":"IShellImageDataFactory","features":[109]},{"name":"IShellItem","features":[109]},{"name":"IShellItem2","features":[109]},{"name":"IShellItemArray","features":[109]},{"name":"IShellItemFilter","features":[109]},{"name":"IShellItemImageFactory","features":[109]},{"name":"IShellItemResources","features":[109]},{"name":"IShellLibrary","features":[109]},{"name":"IShellLinkA","features":[109]},{"name":"IShellLinkDataList","features":[109]},{"name":"IShellLinkDual","features":[109]},{"name":"IShellLinkDual2","features":[109]},{"name":"IShellLinkW","features":[109]},{"name":"IShellMenu","features":[109]},{"name":"IShellMenuCallback","features":[109]},{"name":"IShellNameSpace","features":[109]},{"name":"IShellPropSheetExt","features":[109]},{"name":"IShellRunDll","features":[109]},{"name":"IShellService","features":[109]},{"name":"IShellTaskScheduler","features":[109]},{"name":"IShellUIHelper","features":[109]},{"name":"IShellUIHelper2","features":[109]},{"name":"IShellUIHelper3","features":[109]},{"name":"IShellUIHelper4","features":[109]},{"name":"IShellUIHelper5","features":[109]},{"name":"IShellUIHelper6","features":[109]},{"name":"IShellUIHelper7","features":[109]},{"name":"IShellUIHelper8","features":[109]},{"name":"IShellUIHelper9","features":[109]},{"name":"IShellView","features":[109]},{"name":"IShellView2","features":[109]},{"name":"IShellView3","features":[109]},{"name":"IShellWindows","features":[109]},{"name":"ISortColumnArray","features":[109]},{"name":"IStartMenuPinnedList","features":[109]},{"name":"IStorageProviderBanners","features":[109]},{"name":"IStorageProviderCopyHook","features":[109]},{"name":"IStorageProviderHandler","features":[109]},{"name":"IStorageProviderPropertyHandler","features":[109]},{"name":"IStreamAsync","features":[109]},{"name":"IStreamUnbufferedInfo","features":[109]},{"name":"IStream_Copy","features":[109]},{"name":"IStream_Read","features":[109]},{"name":"IStream_ReadPidl","features":[219]},{"name":"IStream_ReadStr","features":[109]},{"name":"IStream_Reset","features":[109]},{"name":"IStream_Size","features":[109]},{"name":"IStream_Write","features":[109]},{"name":"IStream_WritePidl","features":[219]},{"name":"IStream_WriteStr","features":[109]},{"name":"ISuspensionDependencyManager","features":[109]},{"name":"ISyncMgrConflict","features":[109]},{"name":"ISyncMgrConflictFolder","features":[109]},{"name":"ISyncMgrConflictItems","features":[109]},{"name":"ISyncMgrConflictPresenter","features":[109]},{"name":"ISyncMgrConflictResolutionItems","features":[109]},{"name":"ISyncMgrConflictResolveInfo","features":[109]},{"name":"ISyncMgrConflictStore","features":[109]},{"name":"ISyncMgrControl","features":[109]},{"name":"ISyncMgrEnumItems","features":[109]},{"name":"ISyncMgrEvent","features":[109]},{"name":"ISyncMgrEventLinkUIOperation","features":[109]},{"name":"ISyncMgrEventStore","features":[109]},{"name":"ISyncMgrHandler","features":[109]},{"name":"ISyncMgrHandlerCollection","features":[109]},{"name":"ISyncMgrHandlerInfo","features":[109]},{"name":"ISyncMgrRegister","features":[109]},{"name":"ISyncMgrResolutionHandler","features":[109]},{"name":"ISyncMgrScheduleWizardUIOperation","features":[109]},{"name":"ISyncMgrSessionCreator","features":[109]},{"name":"ISyncMgrSyncCallback","features":[109]},{"name":"ISyncMgrSyncItem","features":[109]},{"name":"ISyncMgrSyncItemContainer","features":[109]},{"name":"ISyncMgrSyncItemInfo","features":[109]},{"name":"ISyncMgrSyncResult","features":[109]},{"name":"ISyncMgrSynchronize","features":[109]},{"name":"ISyncMgrSynchronizeCallback","features":[109]},{"name":"ISyncMgrSynchronizeInvoke","features":[109]},{"name":"ISyncMgrUIOperation","features":[109]},{"name":"ITEMSPACING","features":[109]},{"name":"ITSAT_DEFAULT_PRIORITY","features":[109]},{"name":"ITSAT_MAX_PRIORITY","features":[109]},{"name":"ITSAT_MIN_PRIORITY","features":[109]},{"name":"ITSSFLAG_COMPLETE_ON_DESTROY","features":[109]},{"name":"ITSSFLAG_FLAGS_MASK","features":[109]},{"name":"ITSSFLAG_KILL_ON_DESTROY","features":[109]},{"name":"ITSS_THREAD_TIMEOUT_NO_CHANGE","features":[109]},{"name":"ITaskbarList","features":[109]},{"name":"ITaskbarList2","features":[109]},{"name":"ITaskbarList3","features":[109]},{"name":"ITaskbarList4","features":[109]},{"name":"IThumbnailCache","features":[109]},{"name":"IThumbnailCachePrimer","features":[109]},{"name":"IThumbnailCapture","features":[109]},{"name":"IThumbnailHandlerFactory","features":[109]},{"name":"IThumbnailProvider","features":[109]},{"name":"IThumbnailSettings","features":[109]},{"name":"IThumbnailStreamCache","features":[109]},{"name":"ITrackShellMenu","features":[109]},{"name":"ITranscodeImage","features":[109]},{"name":"ITransferAdviseSink","features":[109]},{"name":"ITransferDestination","features":[109]},{"name":"ITransferMediumItem","features":[109]},{"name":"ITransferSource","features":[109]},{"name":"ITravelEntry","features":[109]},{"name":"ITravelLog","features":[109]},{"name":"ITravelLogClient","features":[109]},{"name":"ITravelLogEntry","features":[109]},{"name":"ITravelLogStg","features":[109]},{"name":"ITrayDeskBand","features":[109]},{"name":"IURLSearchHook","features":[109]},{"name":"IURLSearchHook2","features":[109]},{"name":"IURL_INVOKECOMMAND_FLAGS","features":[109]},{"name":"IURL_INVOKECOMMAND_FL_ALLOW_UI","features":[109]},{"name":"IURL_INVOKECOMMAND_FL_ASYNCOK","features":[109]},{"name":"IURL_INVOKECOMMAND_FL_DDEWAIT","features":[109]},{"name":"IURL_INVOKECOMMAND_FL_LOG_USAGE","features":[109]},{"name":"IURL_INVOKECOMMAND_FL_USE_DEFAULT_VERB","features":[109]},{"name":"IURL_SETURL_FLAGS","features":[109]},{"name":"IURL_SETURL_FL_GUESS_PROTOCOL","features":[109]},{"name":"IURL_SETURL_FL_USE_DEFAULT_PROTOCOL","features":[109]},{"name":"IUniformResourceLocatorA","features":[109]},{"name":"IUniformResourceLocatorW","features":[109]},{"name":"IUnknown_AtomicRelease","features":[109]},{"name":"IUnknown_GetSite","features":[109]},{"name":"IUnknown_GetWindow","features":[1,109]},{"name":"IUnknown_QueryService","features":[109]},{"name":"IUnknown_Set","features":[109]},{"name":"IUnknown_SetSite","features":[109]},{"name":"IUpdateIDList","features":[109]},{"name":"IUseToBrowseItem","features":[109]},{"name":"IUserAccountChangeCallback","features":[109]},{"name":"IUserNotification","features":[109]},{"name":"IUserNotification2","features":[109]},{"name":"IUserNotificationCallback","features":[109]},{"name":"IViewStateIdentityItem","features":[109]},{"name":"IVirtualDesktopManager","features":[109]},{"name":"IVisualProperties","features":[109]},{"name":"IWebBrowser","features":[109]},{"name":"IWebBrowser2","features":[109]},{"name":"IWebBrowserApp","features":[109]},{"name":"IWebWizardExtension","features":[109]},{"name":"IWebWizardHost","features":[109]},{"name":"IWebWizardHost2","features":[109]},{"name":"IWizardExtension","features":[109]},{"name":"IWizardSite","features":[109]},{"name":"Identity_LocalUserProvider","features":[109]},{"name":"ImageProperties","features":[109]},{"name":"ImageRecompress","features":[109]},{"name":"ImageTranscode","features":[109]},{"name":"ImportPrivacySettings","features":[1,109]},{"name":"InitNetworkAddressControl","features":[1,109]},{"name":"InitPropVariantFromStrRet","features":[1,63,42,219]},{"name":"InitVariantFromStrRet","features":[1,41,42,219]},{"name":"InputPanelConfiguration","features":[109]},{"name":"InternetExplorer","features":[109]},{"name":"InternetExplorerMedium","features":[109]},{"name":"InternetPrintOrdering","features":[109]},{"name":"IntlStrEqWorkerA","features":[1,109]},{"name":"IntlStrEqWorkerW","features":[1,109]},{"name":"IsCharSpaceA","features":[1,109]},{"name":"IsCharSpaceW","features":[1,109]},{"name":"IsInternetESCEnabled","features":[1,109]},{"name":"IsLFNDriveA","features":[1,109]},{"name":"IsLFNDriveW","features":[1,109]},{"name":"IsNetDrive","features":[109]},{"name":"IsOS","features":[1,109]},{"name":"IsUserAnAdmin","features":[1,109]},{"name":"ItemCount_Property_GUID","features":[109]},{"name":"ItemIndex_Property_GUID","features":[109]},{"name":"KDC_FREQUENT","features":[109]},{"name":"KDC_RECENT","features":[109]},{"name":"KFDF_LOCAL_REDIRECT_ONLY","features":[109]},{"name":"KFDF_NO_REDIRECT_UI","features":[109]},{"name":"KFDF_PRECREATE","features":[109]},{"name":"KFDF_PUBLISHEXPANDEDPATH","features":[109]},{"name":"KFDF_ROAMABLE","features":[109]},{"name":"KFDF_STREAM","features":[109]},{"name":"KF_CATEGORY","features":[109]},{"name":"KF_CATEGORY_COMMON","features":[109]},{"name":"KF_CATEGORY_FIXED","features":[109]},{"name":"KF_CATEGORY_PERUSER","features":[109]},{"name":"KF_CATEGORY_VIRTUAL","features":[109]},{"name":"KF_FLAG_ALIAS_ONLY","features":[109]},{"name":"KF_FLAG_CREATE","features":[109]},{"name":"KF_FLAG_DEFAULT","features":[109]},{"name":"KF_FLAG_DEFAULT_PATH","features":[109]},{"name":"KF_FLAG_DONT_UNEXPAND","features":[109]},{"name":"KF_FLAG_DONT_VERIFY","features":[109]},{"name":"KF_FLAG_FORCE_APPCONTAINER_REDIRECTION","features":[109]},{"name":"KF_FLAG_FORCE_APP_DATA_REDIRECTION","features":[109]},{"name":"KF_FLAG_FORCE_PACKAGE_REDIRECTION","features":[109]},{"name":"KF_FLAG_INIT","features":[109]},{"name":"KF_FLAG_NOT_PARENT_RELATIVE","features":[109]},{"name":"KF_FLAG_NO_ALIAS","features":[109]},{"name":"KF_FLAG_NO_APPCONTAINER_REDIRECTION","features":[109]},{"name":"KF_FLAG_NO_PACKAGE_REDIRECTION","features":[109]},{"name":"KF_FLAG_RETURN_FILTER_REDIRECTION_TARGET","features":[109]},{"name":"KF_FLAG_SIMPLE_IDLIST","features":[109]},{"name":"KF_REDIRECTION_CAPABILITIES_ALLOW_ALL","features":[109]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_ALL","features":[109]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_PERMISSIONS","features":[109]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY","features":[109]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY_REDIRECTED","features":[109]},{"name":"KF_REDIRECTION_CAPABILITIES_REDIRECTABLE","features":[109]},{"name":"KF_REDIRECT_CHECK_ONLY","features":[109]},{"name":"KF_REDIRECT_COPY_CONTENTS","features":[109]},{"name":"KF_REDIRECT_COPY_SOURCE_DACL","features":[109]},{"name":"KF_REDIRECT_DEL_SOURCE_CONTENTS","features":[109]},{"name":"KF_REDIRECT_EXCLUDE_ALL_KNOWN_SUBFOLDERS","features":[109]},{"name":"KF_REDIRECT_OWNER_USER","features":[109]},{"name":"KF_REDIRECT_PIN","features":[109]},{"name":"KF_REDIRECT_SET_OWNER_EXPLICIT","features":[109]},{"name":"KF_REDIRECT_UNPIN","features":[109]},{"name":"KF_REDIRECT_USER_EXCLUSIVE","features":[109]},{"name":"KF_REDIRECT_WITH_UI","features":[109]},{"name":"KNOWNDESTCATEGORY","features":[109]},{"name":"KNOWNFOLDER_DEFINITION","features":[109]},{"name":"KNOWN_FOLDER_FLAG","features":[109]},{"name":"KnownFolderManager","features":[109]},{"name":"LFF_ALLITEMS","features":[109]},{"name":"LFF_FORCEFILESYSTEM","features":[109]},{"name":"LFF_STORAGEITEMS","features":[109]},{"name":"LIBRARYFOLDERFILTER","features":[109]},{"name":"LIBRARYMANAGEDIALOGOPTIONS","features":[109]},{"name":"LIBRARYOPTIONFLAGS","features":[109]},{"name":"LIBRARYSAVEFLAGS","features":[109]},{"name":"LIBRARY_E_NO_ACCESSIBLE_LOCATION","features":[109]},{"name":"LIBRARY_E_NO_SAVE_LOCATION","features":[109]},{"name":"LINK_E_DELETE","features":[109]},{"name":"LMD_ALLOWUNINDEXABLENETWORKLOCATIONS","features":[109]},{"name":"LMD_DEFAULT","features":[109]},{"name":"LOF_DEFAULT","features":[109]},{"name":"LOF_MASK_ALL","features":[109]},{"name":"LOF_PINNEDTONAVPANE","features":[109]},{"name":"LPFNDFMCALLBACK","features":[1,109]},{"name":"LPFNVIEWCALLBACK","features":[1,109]},{"name":"LSF_FAILIFTHERE","features":[109]},{"name":"LSF_MAKEUNIQUENAME","features":[109]},{"name":"LSF_OVERRIDEEXISTING","features":[109]},{"name":"LoadUserProfileA","features":[1,109]},{"name":"LoadUserProfileW","features":[1,109]},{"name":"LocalThumbnailCache","features":[109]},{"name":"MAV_APP_VISIBLE","features":[109]},{"name":"MAV_NO_APP_VISIBLE","features":[109]},{"name":"MAV_UNKNOWN","features":[109]},{"name":"MAXFILELEN","features":[109]},{"name":"MAX_COLUMN_DESC_LEN","features":[109]},{"name":"MAX_COLUMN_NAME_LEN","features":[109]},{"name":"MAX_SYNCMGRHANDLERNAME","features":[109]},{"name":"MAX_SYNCMGRITEMNAME","features":[109]},{"name":"MAX_SYNCMGR_ID","features":[109]},{"name":"MAX_SYNCMGR_NAME","features":[109]},{"name":"MAX_SYNCMGR_PROGRESSTEXT","features":[109]},{"name":"MBHANDCID_PIDLSELECT","features":[109]},{"name":"MENUBANDHANDLERCID","features":[109]},{"name":"MENUPOPUPPOPUPFLAGS","features":[109]},{"name":"MENUPOPUPSELECT","features":[109]},{"name":"MERGE_UPDATE_STATUS","features":[109]},{"name":"MIMEASSOCDLG_FL_REGISTER_ASSOC","features":[109]},{"name":"MIMEASSOCIATIONDIALOG_IN_FLAGS","features":[109]},{"name":"MM_ADDSEPARATOR","features":[109]},{"name":"MM_DONTREMOVESEPS","features":[109]},{"name":"MM_FLAGS","features":[109]},{"name":"MM_SUBMENUSHAVEIDS","features":[109]},{"name":"MONITOR_APP_VISIBILITY","features":[109]},{"name":"MPOS_CANCELLEVEL","features":[109]},{"name":"MPOS_CHILDTRACKING","features":[109]},{"name":"MPOS_EXECUTE","features":[109]},{"name":"MPOS_FULLCANCEL","features":[109]},{"name":"MPOS_SELECTLEFT","features":[109]},{"name":"MPOS_SELECTRIGHT","features":[109]},{"name":"MPPF_ALIGN_LEFT","features":[109]},{"name":"MPPF_ALIGN_RIGHT","features":[109]},{"name":"MPPF_BOTTOM","features":[109]},{"name":"MPPF_FINALSELECT","features":[109]},{"name":"MPPF_FORCEZORDER","features":[109]},{"name":"MPPF_INITIALSELECT","features":[109]},{"name":"MPPF_KEYBOARD","features":[109]},{"name":"MPPF_LEFT","features":[109]},{"name":"MPPF_NOANIMATE","features":[109]},{"name":"MPPF_POS_MASK","features":[109]},{"name":"MPPF_REPOSITION","features":[109]},{"name":"MPPF_RIGHT","features":[109]},{"name":"MPPF_SETFOCUS","features":[109]},{"name":"MPPF_TOP","features":[109]},{"name":"MULTIKEYHELPA","features":[109]},{"name":"MULTIKEYHELPW","features":[109]},{"name":"MUS_COMPLETE","features":[109]},{"name":"MUS_FAILED","features":[109]},{"name":"MUS_USERINPUTNEEDED","features":[109]},{"name":"MailRecipient","features":[109]},{"name":"MergedCategorizer","features":[109]},{"name":"NAMESPACEWALKFLAG","features":[109]},{"name":"NATIVE_DISPLAY_ORIENTATION","features":[109]},{"name":"NCM_DISPLAYERRORTIP","features":[109]},{"name":"NCM_GETADDRESS","features":[109]},{"name":"NCM_GETALLOWTYPE","features":[109]},{"name":"NCM_SETALLOWTYPE","features":[109]},{"name":"NC_ADDRESS","features":[90,15,109]},{"name":"NDO_LANDSCAPE","features":[109]},{"name":"NDO_PORTRAIT","features":[109]},{"name":"NETCACHE_E_NEGATIVE_CACHE","features":[109]},{"name":"NEWCPLINFOA","features":[109,50]},{"name":"NEWCPLINFOW","features":[109,50]},{"name":"NIF_GUID","features":[109]},{"name":"NIF_ICON","features":[109]},{"name":"NIF_INFO","features":[109]},{"name":"NIF_MESSAGE","features":[109]},{"name":"NIF_REALTIME","features":[109]},{"name":"NIF_SHOWTIP","features":[109]},{"name":"NIF_STATE","features":[109]},{"name":"NIF_TIP","features":[109]},{"name":"NIIF_ERROR","features":[109]},{"name":"NIIF_ICON_MASK","features":[109]},{"name":"NIIF_INFO","features":[109]},{"name":"NIIF_LARGE_ICON","features":[109]},{"name":"NIIF_NONE","features":[109]},{"name":"NIIF_NOSOUND","features":[109]},{"name":"NIIF_RESPECT_QUIET_TIME","features":[109]},{"name":"NIIF_USER","features":[109]},{"name":"NIIF_WARNING","features":[109]},{"name":"NIM_ADD","features":[109]},{"name":"NIM_DELETE","features":[109]},{"name":"NIM_MODIFY","features":[109]},{"name":"NIM_SETFOCUS","features":[109]},{"name":"NIM_SETVERSION","features":[109]},{"name":"NINF_KEY","features":[109]},{"name":"NIN_BALLOONHIDE","features":[109]},{"name":"NIN_BALLOONSHOW","features":[109]},{"name":"NIN_BALLOONTIMEOUT","features":[109]},{"name":"NIN_BALLOONUSERCLICK","features":[109]},{"name":"NIN_POPUPCLOSE","features":[109]},{"name":"NIN_POPUPOPEN","features":[109]},{"name":"NIN_SELECT","features":[109]},{"name":"NIS_HIDDEN","features":[109]},{"name":"NIS_SHAREDICON","features":[109]},{"name":"NMCII_FOLDERS","features":[109]},{"name":"NMCII_ITEMS","features":[109]},{"name":"NMCII_NONE","features":[109]},{"name":"NMCSAEI_EDIT","features":[109]},{"name":"NMCSAEI_SELECT","features":[109]},{"name":"NOTIFYICONDATAA","features":[1,109,50]},{"name":"NOTIFYICONDATAA","features":[1,109,50]},{"name":"NOTIFYICONDATAW","features":[1,109,50]},{"name":"NOTIFYICONDATAW","features":[1,109,50]},{"name":"NOTIFYICONIDENTIFIER","features":[1,109]},{"name":"NOTIFYICONIDENTIFIER","features":[1,109]},{"name":"NOTIFYICON_VERSION","features":[109]},{"name":"NOTIFYICON_VERSION_4","features":[109]},{"name":"NOTIFY_ICON_DATA_FLAGS","features":[109]},{"name":"NOTIFY_ICON_INFOTIP_FLAGS","features":[109]},{"name":"NOTIFY_ICON_MESSAGE","features":[109]},{"name":"NOTIFY_ICON_STATE","features":[109]},{"name":"NPCredentialProvider","features":[109]},{"name":"NRESARRAY","features":[100,109]},{"name":"NSTCCUSTOMDRAW","features":[40,109]},{"name":"NSTCDHPOS_ONTOP","features":[109]},{"name":"NSTCECT_BUTTON","features":[109]},{"name":"NSTCECT_DBLCLICK","features":[109]},{"name":"NSTCECT_LBUTTON","features":[109]},{"name":"NSTCECT_MBUTTON","features":[109]},{"name":"NSTCECT_RBUTTON","features":[109]},{"name":"NSTCEHT_NOWHERE","features":[109]},{"name":"NSTCEHT_ONITEM","features":[109]},{"name":"NSTCEHT_ONITEMBUTTON","features":[109]},{"name":"NSTCEHT_ONITEMICON","features":[109]},{"name":"NSTCEHT_ONITEMINDENT","features":[109]},{"name":"NSTCEHT_ONITEMLABEL","features":[109]},{"name":"NSTCEHT_ONITEMRIGHT","features":[109]},{"name":"NSTCEHT_ONITEMSTATEICON","features":[109]},{"name":"NSTCEHT_ONITEMTABBUTTON","features":[109]},{"name":"NSTCFC_DELAY_REGISTER_NOTIFY","features":[109]},{"name":"NSTCFC_NONE","features":[109]},{"name":"NSTCFC_PINNEDITEMFILTERING","features":[109]},{"name":"NSTCFOLDERCAPABILITIES","features":[109]},{"name":"NSTCGNI","features":[109]},{"name":"NSTCGNI_CHILD","features":[109]},{"name":"NSTCGNI_FIRSTVISIBLE","features":[109]},{"name":"NSTCGNI_LASTVISIBLE","features":[109]},{"name":"NSTCGNI_NEXT","features":[109]},{"name":"NSTCGNI_NEXTVISIBLE","features":[109]},{"name":"NSTCGNI_PARENT","features":[109]},{"name":"NSTCGNI_PREV","features":[109]},{"name":"NSTCGNI_PREVVISIBLE","features":[109]},{"name":"NSTCIS_BOLD","features":[109]},{"name":"NSTCIS_DISABLED","features":[109]},{"name":"NSTCIS_EXPANDED","features":[109]},{"name":"NSTCIS_NONE","features":[109]},{"name":"NSTCIS_SELECTED","features":[109]},{"name":"NSTCIS_SELECTEDNOEXPAND","features":[109]},{"name":"NSTCRS_EXPANDED","features":[109]},{"name":"NSTCRS_HIDDEN","features":[109]},{"name":"NSTCRS_VISIBLE","features":[109]},{"name":"NSTCS2_DEFAULT","features":[109]},{"name":"NSTCS2_DISPLAYPADDING","features":[109]},{"name":"NSTCS2_DISPLAYPINNEDONLY","features":[109]},{"name":"NSTCS2_INTERRUPTNOTIFICATIONS","features":[109]},{"name":"NSTCS2_SHOWNULLSPACEMENU","features":[109]},{"name":"NSTCSTYLE2","features":[109]},{"name":"NSTCS_ALLOWJUNCTIONS","features":[109]},{"name":"NSTCS_AUTOHSCROLL","features":[109]},{"name":"NSTCS_BORDER","features":[109]},{"name":"NSTCS_CHECKBOXES","features":[109]},{"name":"NSTCS_DIMMEDCHECKBOXES","features":[109]},{"name":"NSTCS_DISABLEDRAGDROP","features":[109]},{"name":"NSTCS_EMPTYTEXT","features":[109]},{"name":"NSTCS_EVENHEIGHT","features":[109]},{"name":"NSTCS_EXCLUSIONCHECKBOXES","features":[109]},{"name":"NSTCS_FADEINOUTEXPANDOS","features":[109]},{"name":"NSTCS_FAVORITESMODE","features":[109]},{"name":"NSTCS_FULLROWSELECT","features":[109]},{"name":"NSTCS_HASEXPANDOS","features":[109]},{"name":"NSTCS_HASLINES","features":[109]},{"name":"NSTCS_HORIZONTALSCROLL","features":[109]},{"name":"NSTCS_NOEDITLABELS","features":[109]},{"name":"NSTCS_NOINDENTCHECKS","features":[109]},{"name":"NSTCS_NOINFOTIP","features":[109]},{"name":"NSTCS_NOORDERSTREAM","features":[109]},{"name":"NSTCS_NOREPLACEOPEN","features":[109]},{"name":"NSTCS_PARTIALCHECKBOXES","features":[109]},{"name":"NSTCS_RICHTOOLTIP","features":[109]},{"name":"NSTCS_ROOTHASEXPANDO","features":[109]},{"name":"NSTCS_SHOWDELETEBUTTON","features":[109]},{"name":"NSTCS_SHOWREFRESHBUTTON","features":[109]},{"name":"NSTCS_SHOWSELECTIONALWAYS","features":[109]},{"name":"NSTCS_SHOWTABSBUTTON","features":[109]},{"name":"NSTCS_SINGLECLICKEXPAND","features":[109]},{"name":"NSTCS_SPRINGEXPAND","features":[109]},{"name":"NSTCS_TABSTOP","features":[109]},{"name":"NSWF_ACCUMULATE_FOLDERS","features":[109]},{"name":"NSWF_ANY_IMPLIES_ALL","features":[109]},{"name":"NSWF_ASYNC","features":[109]},{"name":"NSWF_DEFAULT","features":[109]},{"name":"NSWF_DONT_ACCUMULATE_RESULT","features":[109]},{"name":"NSWF_DONT_RESOLVE_LINKS","features":[109]},{"name":"NSWF_DONT_SORT","features":[109]},{"name":"NSWF_DONT_TRAVERSE_LINKS","features":[109]},{"name":"NSWF_DONT_TRAVERSE_STREAM_JUNCTIONS","features":[109]},{"name":"NSWF_FILESYSTEM_ONLY","features":[109]},{"name":"NSWF_FLAG_VIEWORDER","features":[109]},{"name":"NSWF_IGNORE_AUTOPLAY_HIDA","features":[109]},{"name":"NSWF_NONE_IMPLIES_ALL","features":[109]},{"name":"NSWF_ONE_IMPLIES_ALL","features":[109]},{"name":"NSWF_SHOW_PROGRESS","features":[109]},{"name":"NSWF_TRAVERSE_STREAM_JUNCTIONS","features":[109]},{"name":"NSWF_USE_TRANSFER_MEDIUM","features":[109]},{"name":"NTSCS2_NEVERINSERTNONENUMERATED","features":[109]},{"name":"NTSCS2_NOSINGLETONAUTOEXPAND","features":[109]},{"name":"NT_CONSOLE_PROPS","features":[1,53,109]},{"name":"NT_CONSOLE_PROPS_SIG","features":[109]},{"name":"NT_FE_CONSOLE_PROPS","features":[109]},{"name":"NT_FE_CONSOLE_PROPS_SIG","features":[109]},{"name":"NUM_POINTS","features":[109]},{"name":"NWMF","features":[109]},{"name":"NWMF_FIRST","features":[109]},{"name":"NWMF_FORCETAB","features":[109]},{"name":"NWMF_FORCEWINDOW","features":[109]},{"name":"NWMF_FROMDIALOGCHILD","features":[109]},{"name":"NWMF_HTMLDIALOG","features":[109]},{"name":"NWMF_INACTIVETAB","features":[109]},{"name":"NWMF_OVERRIDEKEY","features":[109]},{"name":"NWMF_SHOWHELP","features":[109]},{"name":"NWMF_SUGGESTTAB","features":[109]},{"name":"NWMF_SUGGESTWINDOW","features":[109]},{"name":"NWMF_UNLOADING","features":[109]},{"name":"NWMF_USERALLOWED","features":[109]},{"name":"NWMF_USERINITED","features":[109]},{"name":"NWMF_USERREQUESTED","features":[109]},{"name":"NamespaceTreeControl","features":[109]},{"name":"NamespaceWalker","features":[109]},{"name":"NetworkConnections","features":[109]},{"name":"NetworkExplorerFolder","features":[109]},{"name":"NetworkPlaces","features":[109]},{"name":"NewProcessCauseConstants","features":[109]},{"name":"OAIF_ALLOW_REGISTRATION","features":[109]},{"name":"OAIF_EXEC","features":[109]},{"name":"OAIF_FILE_IS_URI","features":[109]},{"name":"OAIF_FORCE_REGISTRATION","features":[109]},{"name":"OAIF_HIDE_REGISTRATION","features":[109]},{"name":"OAIF_REGISTER_EXT","features":[109]},{"name":"OAIF_URL_PROTOCOL","features":[109]},{"name":"OFASI_EDIT","features":[109]},{"name":"OFASI_OPENDESKTOP","features":[109]},{"name":"OFFLINE_STATUS_INCOMPLETE","features":[109]},{"name":"OFFLINE_STATUS_LOCAL","features":[109]},{"name":"OFFLINE_STATUS_REMOTE","features":[109]},{"name":"OFS_DIRTYCACHE","features":[109]},{"name":"OFS_INACTIVE","features":[109]},{"name":"OFS_OFFLINE","features":[109]},{"name":"OFS_ONLINE","features":[109]},{"name":"OFS_SERVERBACK","features":[109]},{"name":"OF_CAP_CANCLOSE","features":[109]},{"name":"OF_CAP_CANSWITCHTO","features":[109]},{"name":"OI_ASYNC","features":[109]},{"name":"OI_DEFAULT","features":[109]},{"name":"OPENASINFO","features":[109]},{"name":"OPENPROPS_INHIBITPIF","features":[109]},{"name":"OPENPROPS_NONE","features":[109]},{"name":"OPEN_AS_INFO_FLAGS","features":[109]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[1,109]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[1,109]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[1,109]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[1,109]},{"name":"OPPROGDLG_ALLOWUNDO","features":[109]},{"name":"OPPROGDLG_DEFAULT","features":[109]},{"name":"OPPROGDLG_DONTDISPLAYDESTPATH","features":[109]},{"name":"OPPROGDLG_DONTDISPLAYLOCATIONS","features":[109]},{"name":"OPPROGDLG_DONTDISPLAYSOURCEPATH","features":[109]},{"name":"OPPROGDLG_ENABLEPAUSE","features":[109]},{"name":"OPPROGDLG_NOMULTIDAYESTIMATES","features":[109]},{"name":"OS","features":[109]},{"name":"OS_ADVSERVER","features":[109]},{"name":"OS_ANYSERVER","features":[109]},{"name":"OS_APPLIANCE","features":[109]},{"name":"OS_DATACENTER","features":[109]},{"name":"OS_DOMAINMEMBER","features":[109]},{"name":"OS_EMBEDDED","features":[109]},{"name":"OS_FASTUSERSWITCHING","features":[109]},{"name":"OS_HOME","features":[109]},{"name":"OS_MEDIACENTER","features":[109]},{"name":"OS_MEORGREATER","features":[109]},{"name":"OS_NT","features":[109]},{"name":"OS_NT4ORGREATER","features":[109]},{"name":"OS_PERSONALTERMINALSERVER","features":[109]},{"name":"OS_PROFESSIONAL","features":[109]},{"name":"OS_SERVER","features":[109]},{"name":"OS_SERVERADMINUI","features":[109]},{"name":"OS_SMALLBUSINESSSERVER","features":[109]},{"name":"OS_TABLETPC","features":[109]},{"name":"OS_TERMINALCLIENT","features":[109]},{"name":"OS_TERMINALREMOTEADMIN","features":[109]},{"name":"OS_TERMINALSERVER","features":[109]},{"name":"OS_WEBSERVER","features":[109]},{"name":"OS_WELCOMELOGONUI","features":[109]},{"name":"OS_WIN2000ADVSERVER","features":[109]},{"name":"OS_WIN2000DATACENTER","features":[109]},{"name":"OS_WIN2000ORGREATER","features":[109]},{"name":"OS_WIN2000PRO","features":[109]},{"name":"OS_WIN2000SERVER","features":[109]},{"name":"OS_WIN2000TERMINAL","features":[109]},{"name":"OS_WIN95ORGREATER","features":[109]},{"name":"OS_WIN95_GOLD","features":[109]},{"name":"OS_WIN98ORGREATER","features":[109]},{"name":"OS_WIN98_GOLD","features":[109]},{"name":"OS_WINDOWS","features":[109]},{"name":"OS_WOW6432","features":[109]},{"name":"OS_XPORGREATER","features":[109]},{"name":"OfflineFolderStatus","features":[109]},{"name":"OleSaveToStreamEx","features":[1,109]},{"name":"OnexCredentialProvider","features":[109]},{"name":"OnexPlapSmartcardCredentialProvider","features":[109]},{"name":"OpenControlPanel","features":[109]},{"name":"OpenRegStream","features":[49,109]},{"name":"PACKAGE_EXECUTION_STATE","features":[109]},{"name":"PAI_ASSIGNEDTIME","features":[109]},{"name":"PAI_EXPIRETIME","features":[109]},{"name":"PAI_PUBLISHEDTIME","features":[109]},{"name":"PAI_SCHEDULEDTIME","features":[109]},{"name":"PAI_SOURCE","features":[109]},{"name":"PANE_NAVIGATION","features":[109]},{"name":"PANE_NONE","features":[109]},{"name":"PANE_OFFLINE","features":[109]},{"name":"PANE_PRINTER","features":[109]},{"name":"PANE_PRIVACY","features":[109]},{"name":"PANE_PROGRESS","features":[109]},{"name":"PANE_SSL","features":[109]},{"name":"PANE_ZONE","features":[109]},{"name":"PAPPCONSTRAIN_CHANGE_ROUTINE","features":[1,109]},{"name":"PAPPCONSTRAIN_REGISTRATION","features":[109]},{"name":"PAPPSTATE_CHANGE_ROUTINE","features":[1,109]},{"name":"PAPPSTATE_REGISTRATION","features":[109]},{"name":"PARSEDURLA","features":[109]},{"name":"PARSEDURLW","features":[109]},{"name":"PATHCCH_ALLOW_LONG_PATHS","features":[109]},{"name":"PATHCCH_CANONICALIZE_SLASHES","features":[109]},{"name":"PATHCCH_DO_NOT_NORMALIZE_SEGMENTS","features":[109]},{"name":"PATHCCH_ENSURE_IS_EXTENDED_LENGTH_PATH","features":[109]},{"name":"PATHCCH_ENSURE_TRAILING_SLASH","features":[109]},{"name":"PATHCCH_FORCE_DISABLE_LONG_NAME_PROCESS","features":[109]},{"name":"PATHCCH_FORCE_ENABLE_LONG_NAME_PROCESS","features":[109]},{"name":"PATHCCH_MAX_CCH","features":[109]},{"name":"PATHCCH_NONE","features":[109]},{"name":"PATHCCH_OPTIONS","features":[109]},{"name":"PCS_FATAL","features":[109]},{"name":"PCS_PATHTOOLONG","features":[109]},{"name":"PCS_REMOVEDCHAR","features":[109]},{"name":"PCS_REPLACEDCHAR","features":[109]},{"name":"PCS_RET","features":[109]},{"name":"PCS_TRUNCATED","features":[109]},{"name":"PDM_DEFAULT","features":[109]},{"name":"PDM_ERRORSBLOCKING","features":[109]},{"name":"PDM_INDETERMINATE","features":[109]},{"name":"PDM_PREFLIGHT","features":[109]},{"name":"PDM_RUN","features":[109]},{"name":"PDM_UNDOING","features":[109]},{"name":"PDTIMER_PAUSE","features":[109]},{"name":"PDTIMER_RESET","features":[109]},{"name":"PDTIMER_RESUME","features":[109]},{"name":"PERSIST_FOLDER_TARGET_INFO","features":[219]},{"name":"PES_RUNNING","features":[109]},{"name":"PES_SUSPENDED","features":[109]},{"name":"PES_SUSPENDING","features":[109]},{"name":"PES_TERMINATED","features":[109]},{"name":"PES_UNKNOWN","features":[109]},{"name":"PFNCANSHAREFOLDERW","features":[109]},{"name":"PFNSHOWSHAREFOLDERUIW","features":[1,109]},{"name":"PIDASI_AVG_DATA_RATE","features":[109]},{"name":"PIDASI_CHANNEL_COUNT","features":[109]},{"name":"PIDASI_COMPRESSION","features":[109]},{"name":"PIDASI_FORMAT","features":[109]},{"name":"PIDASI_SAMPLE_RATE","features":[109]},{"name":"PIDASI_SAMPLE_SIZE","features":[109]},{"name":"PIDASI_STREAM_NAME","features":[109]},{"name":"PIDASI_STREAM_NUMBER","features":[109]},{"name":"PIDASI_TIMELENGTH","features":[109]},{"name":"PIDDRSI_DESCRIPTION","features":[109]},{"name":"PIDDRSI_PLAYCOUNT","features":[109]},{"name":"PIDDRSI_PLAYEXPIRES","features":[109]},{"name":"PIDDRSI_PLAYSTARTS","features":[109]},{"name":"PIDDRSI_PROTECTED","features":[109]},{"name":"PIDISF_CACHEDSTICKY","features":[109]},{"name":"PIDISF_CACHEIMAGES","features":[109]},{"name":"PIDISF_FLAGS","features":[109]},{"name":"PIDISF_FOLLOWALLLINKS","features":[109]},{"name":"PIDISF_RECENTLYCHANGED","features":[109]},{"name":"PIDISM_DONTWATCH","features":[109]},{"name":"PIDISM_GLOBAL","features":[109]},{"name":"PIDISM_OPTIONS","features":[109]},{"name":"PIDISM_WATCH","features":[109]},{"name":"PIDISR_INFO","features":[109]},{"name":"PIDISR_NEEDS_ADD","features":[109]},{"name":"PIDISR_NEEDS_DELETE","features":[109]},{"name":"PIDISR_NEEDS_UPDATE","features":[109]},{"name":"PIDISR_UP_TO_DATE","features":[109]},{"name":"PIDSI_ALBUM","features":[109]},{"name":"PIDSI_ARTIST","features":[109]},{"name":"PIDSI_COMMENT","features":[109]},{"name":"PIDSI_GENRE","features":[109]},{"name":"PIDSI_LYRICS","features":[109]},{"name":"PIDSI_SONGTITLE","features":[109]},{"name":"PIDSI_TRACK","features":[109]},{"name":"PIDSI_YEAR","features":[109]},{"name":"PIDVSI_COMPRESSION","features":[109]},{"name":"PIDVSI_DATA_RATE","features":[109]},{"name":"PIDVSI_FRAME_COUNT","features":[109]},{"name":"PIDVSI_FRAME_HEIGHT","features":[109]},{"name":"PIDVSI_FRAME_RATE","features":[109]},{"name":"PIDVSI_FRAME_WIDTH","features":[109]},{"name":"PIDVSI_SAMPLE_SIZE","features":[109]},{"name":"PIDVSI_STREAM_NAME","features":[109]},{"name":"PIDVSI_STREAM_NUMBER","features":[109]},{"name":"PIDVSI_TIMELENGTH","features":[109]},{"name":"PID_COMPUTERNAME","features":[109]},{"name":"PID_CONTROLPANEL_CATEGORY","features":[109]},{"name":"PID_DESCRIPTIONID","features":[109]},{"name":"PID_DISPLACED_DATE","features":[109]},{"name":"PID_DISPLACED_FROM","features":[109]},{"name":"PID_DISPLAY_PROPERTIES","features":[109]},{"name":"PID_FINDDATA","features":[109]},{"name":"PID_HTMLINFOTIPFILE","features":[109]},{"name":"PID_INTROTEXT","features":[109]},{"name":"PID_INTSITE","features":[109]},{"name":"PID_INTSITE_AUTHOR","features":[109]},{"name":"PID_INTSITE_CODEPAGE","features":[109]},{"name":"PID_INTSITE_COMMENT","features":[109]},{"name":"PID_INTSITE_CONTENTCODE","features":[109]},{"name":"PID_INTSITE_CONTENTLEN","features":[109]},{"name":"PID_INTSITE_DESCRIPTION","features":[109]},{"name":"PID_INTSITE_FLAGS","features":[109]},{"name":"PID_INTSITE_ICONFILE","features":[109]},{"name":"PID_INTSITE_ICONINDEX","features":[109]},{"name":"PID_INTSITE_LASTMOD","features":[109]},{"name":"PID_INTSITE_LASTVISIT","features":[109]},{"name":"PID_INTSITE_RECURSE","features":[109]},{"name":"PID_INTSITE_ROAMED","features":[109]},{"name":"PID_INTSITE_SUBSCRIPTION","features":[109]},{"name":"PID_INTSITE_TITLE","features":[109]},{"name":"PID_INTSITE_TRACKING","features":[109]},{"name":"PID_INTSITE_URL","features":[109]},{"name":"PID_INTSITE_VISITCOUNT","features":[109]},{"name":"PID_INTSITE_WATCH","features":[109]},{"name":"PID_INTSITE_WHATSNEW","features":[109]},{"name":"PID_IS","features":[109]},{"name":"PID_IS_AUTHOR","features":[109]},{"name":"PID_IS_COMMENT","features":[109]},{"name":"PID_IS_DESCRIPTION","features":[109]},{"name":"PID_IS_HOTKEY","features":[109]},{"name":"PID_IS_ICONFILE","features":[109]},{"name":"PID_IS_ICONINDEX","features":[109]},{"name":"PID_IS_NAME","features":[109]},{"name":"PID_IS_ROAMED","features":[109]},{"name":"PID_IS_SHOWCMD","features":[109]},{"name":"PID_IS_URL","features":[109]},{"name":"PID_IS_WHATSNEW","features":[109]},{"name":"PID_IS_WORKINGDIR","features":[109]},{"name":"PID_LINK_TARGET","features":[109]},{"name":"PID_LINK_TARGET_TYPE","features":[109]},{"name":"PID_MISC_ACCESSCOUNT","features":[109]},{"name":"PID_MISC_OWNER","features":[109]},{"name":"PID_MISC_PICS","features":[109]},{"name":"PID_MISC_STATUS","features":[109]},{"name":"PID_NETRESOURCE","features":[109]},{"name":"PID_NETWORKLOCATION","features":[109]},{"name":"PID_QUERY_RANK","features":[109]},{"name":"PID_SHARE_CSC_STATUS","features":[109]},{"name":"PID_SYNC_COPY_IN","features":[109]},{"name":"PID_VOLUME_CAPACITY","features":[109]},{"name":"PID_VOLUME_FILESYSTEM","features":[109]},{"name":"PID_VOLUME_FREE","features":[109]},{"name":"PID_WHICHFOLDER","features":[109]},{"name":"PIFDEFFILESIZE","features":[109]},{"name":"PIFDEFPATHSIZE","features":[109]},{"name":"PIFMAXFILEPATH","features":[109]},{"name":"PIFNAMESIZE","features":[109]},{"name":"PIFPARAMSSIZE","features":[109]},{"name":"PIFSHDATASIZE","features":[109]},{"name":"PIFSHPROGSIZE","features":[109]},{"name":"PIFSTARTLOCSIZE","features":[109]},{"name":"PINLogonCredentialProvider","features":[109]},{"name":"PLATFORM_BROWSERONLY","features":[109]},{"name":"PLATFORM_IE3","features":[109]},{"name":"PLATFORM_INTEGRATED","features":[109]},{"name":"PLATFORM_UNKNOWN","features":[109]},{"name":"PMSF_DONT_STRIP_SPACES","features":[109]},{"name":"PMSF_MULTIPLE","features":[109]},{"name":"PMSF_NORMAL","features":[109]},{"name":"PO_DELETE","features":[109]},{"name":"PO_PORTCHANGE","features":[109]},{"name":"PO_RENAME","features":[109]},{"name":"PO_REN_PORT","features":[109]},{"name":"PPCF_ADDARGUMENTS","features":[109]},{"name":"PPCF_ADDQUOTES","features":[109]},{"name":"PPCF_FORCEQUALIFY","features":[109]},{"name":"PPCF_LONGESTPOSSIBLE","features":[109]},{"name":"PPCF_NODIRECTORIES","features":[109]},{"name":"PREVIEWHANDLERFRAMEINFO","features":[109,50]},{"name":"PRF_DONTFINDLNK","features":[109]},{"name":"PRF_FIRSTDIRDEF","features":[109]},{"name":"PRF_FLAGS","features":[109]},{"name":"PRF_REQUIREABSOLUTE","features":[109]},{"name":"PRF_TRYPROGRAMEXTENSIONS","features":[109]},{"name":"PRF_VERIFYEXISTS","features":[109]},{"name":"PRINTACTION_DOCUMENTDEFAULTS","features":[109]},{"name":"PRINTACTION_NETINSTALL","features":[109]},{"name":"PRINTACTION_NETINSTALLLINK","features":[109]},{"name":"PRINTACTION_OPEN","features":[109]},{"name":"PRINTACTION_OPENNETPRN","features":[109]},{"name":"PRINTACTION_PROPERTIES","features":[109]},{"name":"PRINTACTION_SERVERPROPERTIES","features":[109]},{"name":"PRINTACTION_TESTPAGE","features":[109]},{"name":"PRINT_PROP_FORCE_NAME","features":[109]},{"name":"PROFILEINFOA","features":[1,109]},{"name":"PROFILEINFOW","features":[1,109]},{"name":"PROGDLG_AUTOTIME","features":[109]},{"name":"PROGDLG_MARQUEEPROGRESS","features":[109]},{"name":"PROGDLG_MODAL","features":[109]},{"name":"PROGDLG_NOCANCEL","features":[109]},{"name":"PROGDLG_NOMINIMIZE","features":[109]},{"name":"PROGDLG_NOPROGRESSBAR","features":[109]},{"name":"PROGDLG_NORMAL","features":[109]},{"name":"PROGDLG_NOTIME","features":[109]},{"name":"PROPSTR_EXTENSIONCOMPLETIONSTATE","features":[109]},{"name":"PROP_CONTRACT_DELEGATE","features":[109]},{"name":"PSGUID_AUDIO","features":[109]},{"name":"PSGUID_BRIEFCASE","features":[109]},{"name":"PSGUID_CONTROLPANEL","features":[109]},{"name":"PSGUID_CUSTOMIMAGEPROPERTIES","features":[109]},{"name":"PSGUID_DISPLACED","features":[109]},{"name":"PSGUID_DOCUMENTSUMMARYINFORMATION","features":[109]},{"name":"PSGUID_DRM","features":[109]},{"name":"PSGUID_IMAGEPROPERTIES","features":[109]},{"name":"PSGUID_IMAGESUMMARYINFORMATION","features":[109]},{"name":"PSGUID_LIBRARYPROPERTIES","features":[109]},{"name":"PSGUID_LINK","features":[109]},{"name":"PSGUID_MEDIAFILESUMMARYINFORMATION","features":[109]},{"name":"PSGUID_MISC","features":[109]},{"name":"PSGUID_MUSIC","features":[109]},{"name":"PSGUID_QUERY_D","features":[109]},{"name":"PSGUID_SHARE","features":[109]},{"name":"PSGUID_SHELLDETAILS","features":[109]},{"name":"PSGUID_SUMMARYINFORMATION","features":[109]},{"name":"PSGUID_VIDEO","features":[109]},{"name":"PSGUID_VOLUME","features":[109]},{"name":"PSGUID_WEBVIEW","features":[109]},{"name":"PUBAPPINFO","features":[1,109]},{"name":"PUBAPPINFOFLAGS","features":[109]},{"name":"PackageDebugSettings","features":[109]},{"name":"ParseURLA","features":[109]},{"name":"ParseURLW","features":[109]},{"name":"PasswordCredentialProvider","features":[109]},{"name":"PathAddBackslashA","features":[109]},{"name":"PathAddBackslashW","features":[109]},{"name":"PathAddExtensionA","features":[1,109]},{"name":"PathAddExtensionW","features":[1,109]},{"name":"PathAllocCanonicalize","features":[109]},{"name":"PathAllocCombine","features":[109]},{"name":"PathAppendA","features":[1,109]},{"name":"PathAppendW","features":[1,109]},{"name":"PathBuildRootA","features":[109]},{"name":"PathBuildRootW","features":[109]},{"name":"PathCanonicalizeA","features":[1,109]},{"name":"PathCanonicalizeW","features":[1,109]},{"name":"PathCchAddBackslash","features":[109]},{"name":"PathCchAddBackslashEx","features":[109]},{"name":"PathCchAddExtension","features":[109]},{"name":"PathCchAppend","features":[109]},{"name":"PathCchAppendEx","features":[109]},{"name":"PathCchCanonicalize","features":[109]},{"name":"PathCchCanonicalizeEx","features":[109]},{"name":"PathCchCombine","features":[109]},{"name":"PathCchCombineEx","features":[109]},{"name":"PathCchFindExtension","features":[109]},{"name":"PathCchIsRoot","features":[1,109]},{"name":"PathCchRemoveBackslash","features":[109]},{"name":"PathCchRemoveBackslashEx","features":[109]},{"name":"PathCchRemoveExtension","features":[109]},{"name":"PathCchRemoveFileSpec","features":[109]},{"name":"PathCchRenameExtension","features":[109]},{"name":"PathCchSkipRoot","features":[109]},{"name":"PathCchStripPrefix","features":[109]},{"name":"PathCchStripToRoot","features":[109]},{"name":"PathCleanupSpec","features":[109]},{"name":"PathCombineA","features":[109]},{"name":"PathCombineW","features":[109]},{"name":"PathCommonPrefixA","features":[109]},{"name":"PathCommonPrefixW","features":[109]},{"name":"PathCompactPathA","features":[1,12,109]},{"name":"PathCompactPathExA","features":[1,109]},{"name":"PathCompactPathExW","features":[1,109]},{"name":"PathCompactPathW","features":[1,12,109]},{"name":"PathCreateFromUrlA","features":[109]},{"name":"PathCreateFromUrlAlloc","features":[109]},{"name":"PathCreateFromUrlW","features":[109]},{"name":"PathFileExistsA","features":[1,109]},{"name":"PathFileExistsW","features":[1,109]},{"name":"PathFindExtensionA","features":[109]},{"name":"PathFindExtensionW","features":[109]},{"name":"PathFindFileNameA","features":[109]},{"name":"PathFindFileNameW","features":[109]},{"name":"PathFindNextComponentA","features":[109]},{"name":"PathFindNextComponentW","features":[109]},{"name":"PathFindOnPathA","features":[1,109]},{"name":"PathFindOnPathW","features":[1,109]},{"name":"PathFindSuffixArrayA","features":[109]},{"name":"PathFindSuffixArrayW","features":[109]},{"name":"PathGetArgsA","features":[109]},{"name":"PathGetArgsW","features":[109]},{"name":"PathGetCharTypeA","features":[109]},{"name":"PathGetCharTypeW","features":[109]},{"name":"PathGetDriveNumberA","features":[109]},{"name":"PathGetDriveNumberW","features":[109]},{"name":"PathGetShortPath","features":[109]},{"name":"PathIsContentTypeA","features":[1,109]},{"name":"PathIsContentTypeW","features":[1,109]},{"name":"PathIsDirectoryA","features":[1,109]},{"name":"PathIsDirectoryEmptyA","features":[1,109]},{"name":"PathIsDirectoryEmptyW","features":[1,109]},{"name":"PathIsDirectoryW","features":[1,109]},{"name":"PathIsExe","features":[1,109]},{"name":"PathIsFileSpecA","features":[1,109]},{"name":"PathIsFileSpecW","features":[1,109]},{"name":"PathIsLFNFileSpecA","features":[1,109]},{"name":"PathIsLFNFileSpecW","features":[1,109]},{"name":"PathIsNetworkPathA","features":[1,109]},{"name":"PathIsNetworkPathW","features":[1,109]},{"name":"PathIsPrefixA","features":[1,109]},{"name":"PathIsPrefixW","features":[1,109]},{"name":"PathIsRelativeA","features":[1,109]},{"name":"PathIsRelativeW","features":[1,109]},{"name":"PathIsRootA","features":[1,109]},{"name":"PathIsRootW","features":[1,109]},{"name":"PathIsSameRootA","features":[1,109]},{"name":"PathIsSameRootW","features":[1,109]},{"name":"PathIsSlowA","features":[1,109]},{"name":"PathIsSlowW","features":[1,109]},{"name":"PathIsSystemFolderA","features":[1,109]},{"name":"PathIsSystemFolderW","features":[1,109]},{"name":"PathIsUNCA","features":[1,109]},{"name":"PathIsUNCEx","features":[1,109]},{"name":"PathIsUNCServerA","features":[1,109]},{"name":"PathIsUNCServerShareA","features":[1,109]},{"name":"PathIsUNCServerShareW","features":[1,109]},{"name":"PathIsUNCServerW","features":[1,109]},{"name":"PathIsUNCW","features":[1,109]},{"name":"PathIsURLA","features":[1,109]},{"name":"PathIsURLW","features":[1,109]},{"name":"PathMakePrettyA","features":[1,109]},{"name":"PathMakePrettyW","features":[1,109]},{"name":"PathMakeSystemFolderA","features":[1,109]},{"name":"PathMakeSystemFolderW","features":[1,109]},{"name":"PathMakeUniqueName","features":[1,109]},{"name":"PathMatchSpecA","features":[1,109]},{"name":"PathMatchSpecExA","features":[109]},{"name":"PathMatchSpecExW","features":[109]},{"name":"PathMatchSpecW","features":[1,109]},{"name":"PathParseIconLocationA","features":[109]},{"name":"PathParseIconLocationW","features":[109]},{"name":"PathQualify","features":[109]},{"name":"PathQuoteSpacesA","features":[1,109]},{"name":"PathQuoteSpacesW","features":[1,109]},{"name":"PathRelativePathToA","features":[1,109]},{"name":"PathRelativePathToW","features":[1,109]},{"name":"PathRemoveArgsA","features":[109]},{"name":"PathRemoveArgsW","features":[109]},{"name":"PathRemoveBackslashA","features":[109]},{"name":"PathRemoveBackslashW","features":[109]},{"name":"PathRemoveBlanksA","features":[109]},{"name":"PathRemoveBlanksW","features":[109]},{"name":"PathRemoveExtensionA","features":[109]},{"name":"PathRemoveExtensionW","features":[109]},{"name":"PathRemoveFileSpecA","features":[1,109]},{"name":"PathRemoveFileSpecW","features":[1,109]},{"name":"PathRenameExtensionA","features":[1,109]},{"name":"PathRenameExtensionW","features":[1,109]},{"name":"PathResolve","features":[109]},{"name":"PathSearchAndQualifyA","features":[1,109]},{"name":"PathSearchAndQualifyW","features":[1,109]},{"name":"PathSetDlgItemPathA","features":[1,109]},{"name":"PathSetDlgItemPathW","features":[1,109]},{"name":"PathSkipRootA","features":[109]},{"name":"PathSkipRootW","features":[109]},{"name":"PathStripPathA","features":[109]},{"name":"PathStripPathW","features":[109]},{"name":"PathStripToRootA","features":[1,109]},{"name":"PathStripToRootW","features":[1,109]},{"name":"PathUnExpandEnvStringsA","features":[1,109]},{"name":"PathUnExpandEnvStringsW","features":[1,109]},{"name":"PathUndecorateA","features":[109]},{"name":"PathUndecorateW","features":[109]},{"name":"PathUnmakeSystemFolderA","features":[1,109]},{"name":"PathUnmakeSystemFolderW","features":[1,109]},{"name":"PathUnquoteSpacesA","features":[1,109]},{"name":"PathUnquoteSpacesW","features":[1,109]},{"name":"PathYetAnotherMakeUniqueName","features":[1,109]},{"name":"PickIconDlg","features":[1,109]},{"name":"PreviousVersions","features":[109]},{"name":"PropVariantToStrRet","features":[1,63,42,219]},{"name":"PropertiesUI","features":[109]},{"name":"ProtectedModeRedirect","features":[109]},{"name":"PublishDropTarget","features":[109]},{"name":"PublishingWizard","features":[109]},{"name":"QCMINFO","features":[109,50]},{"name":"QCMINFO_IDMAP","features":[109]},{"name":"QCMINFO_IDMAP_PLACEMENT","features":[109]},{"name":"QCMINFO_PLACE_AFTER","features":[109]},{"name":"QCMINFO_PLACE_BEFORE","features":[109]},{"name":"QIF_CACHED","features":[109]},{"name":"QIF_DONTEXPANDFOLDER","features":[109]},{"name":"QISearch","features":[109]},{"name":"QITAB","features":[109]},{"name":"QITIPF_DEFAULT","features":[109]},{"name":"QITIPF_FLAGS","features":[109]},{"name":"QITIPF_LINKNOTARGET","features":[109]},{"name":"QITIPF_LINKUSETARGET","features":[109]},{"name":"QITIPF_SINGLELINE","features":[109]},{"name":"QITIPF_USENAME","features":[109]},{"name":"QITIPF_USESLOWTIP","features":[109]},{"name":"QUERY_USER_NOTIFICATION_STATE","features":[109]},{"name":"QUNS_ACCEPTS_NOTIFICATIONS","features":[109]},{"name":"QUNS_APP","features":[109]},{"name":"QUNS_BUSY","features":[109]},{"name":"QUNS_NOT_PRESENT","features":[109]},{"name":"QUNS_PRESENTATION_MODE","features":[109]},{"name":"QUNS_QUIET_TIME","features":[109]},{"name":"QUNS_RUNNING_D3D_FULL_SCREEN","features":[109]},{"name":"QueryCancelAutoPlay","features":[109]},{"name":"RASProvider","features":[109]},{"name":"REFRESH_COMPLETELY","features":[109]},{"name":"REFRESH_IFEXPIRED","features":[109]},{"name":"REFRESH_NORMAL","features":[109]},{"name":"RESTRICTIONS","features":[109]},{"name":"REST_ALLOWBITBUCKDRIVES","features":[109]},{"name":"REST_ALLOWCOMMENTTOGGLE","features":[109]},{"name":"REST_ALLOWFILECLSIDJUNCTIONS","features":[109]},{"name":"REST_ALLOWLEGACYWEBVIEW","features":[109]},{"name":"REST_ALLOWUNHASHEDWEBVIEW","features":[109]},{"name":"REST_ARP_DONTGROUPPATCHES","features":[109]},{"name":"REST_ARP_NOADDPAGE","features":[109]},{"name":"REST_ARP_NOARP","features":[109]},{"name":"REST_ARP_NOCHOOSEPROGRAMSPAGE","features":[109]},{"name":"REST_ARP_NOREMOVEPAGE","features":[109]},{"name":"REST_ARP_NOWINSETUPPAGE","features":[109]},{"name":"REST_ARP_ShowPostSetup","features":[109]},{"name":"REST_BITBUCKCONFIRMDELETE","features":[109]},{"name":"REST_BITBUCKNOPROP","features":[109]},{"name":"REST_BITBUCKNUKEONDELETE","features":[109]},{"name":"REST_CLASSICSHELL","features":[109]},{"name":"REST_CLEARRECENTDOCSONEXIT","features":[109]},{"name":"REST_DISALLOWCPL","features":[109]},{"name":"REST_DISALLOWRUN","features":[109]},{"name":"REST_DONTRETRYBADNETNAME","features":[109]},{"name":"REST_DONTSHOWSUPERHIDDEN","features":[109]},{"name":"REST_ENFORCESHELLEXTSECURITY","features":[109]},{"name":"REST_ENUMWORKGROUP","features":[109]},{"name":"REST_FORCEACTIVEDESKTOPON","features":[109]},{"name":"REST_FORCECOPYACLWITHFILE","features":[109]},{"name":"REST_FORCESTARTMENULOGOFF","features":[109]},{"name":"REST_GREYMSIADS","features":[109]},{"name":"REST_HASFINDCOMPUTERS","features":[109]},{"name":"REST_HIDECLOCK","features":[109]},{"name":"REST_HIDERUNASVERB","features":[109]},{"name":"REST_INHERITCONSOLEHANDLES","features":[109]},{"name":"REST_INTELLIMENUS","features":[109]},{"name":"REST_LINKRESOLVEIGNORELINKINFO","features":[109]},{"name":"REST_MYCOMPNOPROP","features":[109]},{"name":"REST_MYDOCSNOPROP","features":[109]},{"name":"REST_MYDOCSONNET","features":[109]},{"name":"REST_MaxRecentDocs","features":[109]},{"name":"REST_NOACTIVEDESKTOP","features":[109]},{"name":"REST_NOACTIVEDESKTOPCHANGES","features":[109]},{"name":"REST_NOADDDESKCOMP","features":[109]},{"name":"REST_NOAUTOTRAYNOTIFY","features":[109]},{"name":"REST_NOCDBURNING","features":[109]},{"name":"REST_NOCHANGEMAPPEDDRIVECOMMENT","features":[109]},{"name":"REST_NOCHANGEMAPPEDDRIVELABEL","features":[109]},{"name":"REST_NOCHANGESTARMENU","features":[109]},{"name":"REST_NOCHANGINGWALLPAPER","features":[109]},{"name":"REST_NOCLOSE","features":[109]},{"name":"REST_NOCLOSEDESKCOMP","features":[109]},{"name":"REST_NOCLOSE_DRAGDROPBAND","features":[109]},{"name":"REST_NOCOLORCHOICE","features":[109]},{"name":"REST_NOCOMMONGROUPS","features":[109]},{"name":"REST_NOCONTROLPANEL","features":[109]},{"name":"REST_NOCONTROLPANELBARRICADE","features":[109]},{"name":"REST_NOCSC","features":[109]},{"name":"REST_NOCURRENTUSERRUN","features":[109]},{"name":"REST_NOCURRENTUSERRUNONCE","features":[109]},{"name":"REST_NOCUSTOMIZETHISFOLDER","features":[109]},{"name":"REST_NOCUSTOMIZEWEBVIEW","features":[109]},{"name":"REST_NODELDESKCOMP","features":[109]},{"name":"REST_NODESKCOMP","features":[109]},{"name":"REST_NODESKTOP","features":[109]},{"name":"REST_NODESKTOPCLEANUP","features":[109]},{"name":"REST_NODISCONNECT","features":[109]},{"name":"REST_NODISPBACKGROUND","features":[109]},{"name":"REST_NODISPLAYAPPEARANCEPAGE","features":[109]},{"name":"REST_NODISPLAYCPL","features":[109]},{"name":"REST_NODISPSCREENSAVEPG","features":[109]},{"name":"REST_NODISPSCREENSAVEPREVIEW","features":[109]},{"name":"REST_NODISPSETTINGSPG","features":[109]},{"name":"REST_NODRIVEAUTORUN","features":[109]},{"name":"REST_NODRIVES","features":[109]},{"name":"REST_NODRIVETYPEAUTORUN","features":[109]},{"name":"REST_NOEDITDESKCOMP","features":[109]},{"name":"REST_NOENCRYPTION","features":[109]},{"name":"REST_NOENCRYPTONMOVE","features":[109]},{"name":"REST_NOENTIRENETWORK","features":[109]},{"name":"REST_NOENUMENTIRENETWORK","features":[109]},{"name":"REST_NOEXITTODOS","features":[109]},{"name":"REST_NOFAVORITESMENU","features":[109]},{"name":"REST_NOFILEASSOCIATE","features":[109]},{"name":"REST_NOFILEMENU","features":[109]},{"name":"REST_NOFIND","features":[109]},{"name":"REST_NOFOLDEROPTIONS","features":[109]},{"name":"REST_NOFORGETSOFTWAREUPDATE","features":[109]},{"name":"REST_NOHARDWARETAB","features":[109]},{"name":"REST_NOHTMLWALLPAPER","features":[109]},{"name":"REST_NOINTERNETICON","features":[109]},{"name":"REST_NOINTERNETOPENWITH","features":[109]},{"name":"REST_NOLOCALMACHINERUN","features":[109]},{"name":"REST_NOLOCALMACHINERUNONCE","features":[109]},{"name":"REST_NOLOWDISKSPACECHECKS","features":[109]},{"name":"REST_NOMANAGEMYCOMPUTERVERB","features":[109]},{"name":"REST_NOMOVINGBAND","features":[109]},{"name":"REST_NOMYCOMPUTERICON","features":[109]},{"name":"REST_NONE","features":[109]},{"name":"REST_NONETCONNECTDISCONNECT","features":[109]},{"name":"REST_NONETCRAWL","features":[109]},{"name":"REST_NONETHOOD","features":[109]},{"name":"REST_NONETWORKCONNECTIONS","features":[109]},{"name":"REST_NONLEGACYSHELLMODE","features":[109]},{"name":"REST_NOONLINEPRINTSWIZARD","features":[109]},{"name":"REST_NOPRINTERADD","features":[109]},{"name":"REST_NOPRINTERDELETE","features":[109]},{"name":"REST_NOPRINTERTABS","features":[109]},{"name":"REST_NOPUBLISHWIZARD","features":[109]},{"name":"REST_NORECENTDOCSHISTORY","features":[109]},{"name":"REST_NORECENTDOCSMENU","features":[109]},{"name":"REST_NOREMOTECHANGENOTIFY","features":[109]},{"name":"REST_NOREMOTERECURSIVEEVENTS","features":[109]},{"name":"REST_NORESOLVESEARCH","features":[109]},{"name":"REST_NORESOLVETRACK","features":[109]},{"name":"REST_NORUN","features":[109]},{"name":"REST_NORUNASINSTALLPROMPT","features":[109]},{"name":"REST_NOSAVESET","features":[109]},{"name":"REST_NOSECURITY","features":[109]},{"name":"REST_NOSETACTIVEDESKTOP","features":[109]},{"name":"REST_NOSETFOLDERS","features":[109]},{"name":"REST_NOSETTASKBAR","features":[109]},{"name":"REST_NOSETTINGSASSIST","features":[109]},{"name":"REST_NOSHAREDDOCUMENTS","features":[109]},{"name":"REST_NOSHELLSEARCHBUTTON","features":[109]},{"name":"REST_NOSIZECHOICE","features":[109]},{"name":"REST_NOSMBALLOONTIP","features":[109]},{"name":"REST_NOSMCONFIGUREPROGRAMS","features":[109]},{"name":"REST_NOSMEJECTPC","features":[109]},{"name":"REST_NOSMHELP","features":[109]},{"name":"REST_NOSMMFUPROGRAMS","features":[109]},{"name":"REST_NOSMMOREPROGRAMS","features":[109]},{"name":"REST_NOSMMYDOCS","features":[109]},{"name":"REST_NOSMMYMUSIC","features":[109]},{"name":"REST_NOSMMYPICS","features":[109]},{"name":"REST_NOSMNETWORKPLACES","features":[109]},{"name":"REST_NOSMPINNEDLIST","features":[109]},{"name":"REST_NOSTARTMENUSUBFOLDERS","features":[109]},{"name":"REST_NOSTARTPAGE","features":[109]},{"name":"REST_NOSTARTPANEL","features":[109]},{"name":"REST_NOSTRCMPLOGICAL","features":[109]},{"name":"REST_NOTASKGROUPING","features":[109]},{"name":"REST_NOTHEMESTAB","features":[109]},{"name":"REST_NOTHUMBNAILCACHE","features":[109]},{"name":"REST_NOTOOLBARSONTASKBAR","features":[109]},{"name":"REST_NOTRAYCONTEXTMENU","features":[109]},{"name":"REST_NOTRAYITEMSDISPLAY","features":[109]},{"name":"REST_NOUPDATEWINDOWS","features":[109]},{"name":"REST_NOUPNPINSTALL","features":[109]},{"name":"REST_NOUSERNAMEINSTARTPANEL","features":[109]},{"name":"REST_NOVIEWCONTEXTMENU","features":[109]},{"name":"REST_NOVIEWONDRIVE","features":[109]},{"name":"REST_NOVISUALSTYLECHOICE","features":[109]},{"name":"REST_NOWEB","features":[109]},{"name":"REST_NOWEBSERVICES","features":[109]},{"name":"REST_NOWEBVIEW","features":[109]},{"name":"REST_NOWELCOMESCREEN","features":[109]},{"name":"REST_NOWINKEYS","features":[109]},{"name":"REST_PROMPTRUNASINSTALLNETPATH","features":[109]},{"name":"REST_RESTRICTCPL","features":[109]},{"name":"REST_RESTRICTRUN","features":[109]},{"name":"REST_REVERTWEBVIEWSECURITY","features":[109]},{"name":"REST_RUNDLGMEMCHECKBOX","features":[109]},{"name":"REST_SEPARATEDESKTOPPROCESS","features":[109]},{"name":"REST_SETVISUALSTYLE","features":[109]},{"name":"REST_STARTBANNER","features":[109]},{"name":"REST_STARTMENULOGOFF","features":[109]},{"name":"REST_STARTRUNNOHOMEPATH","features":[109]},{"name":"ReadCabinetState","features":[1,109]},{"name":"RealDriveType","features":[1,109]},{"name":"RefreshConstants","features":[109]},{"name":"RegisterAppConstrainedChangeNotification","features":[1,109]},{"name":"RegisterAppStateChangeNotification","features":[1,109]},{"name":"RegisterScaleChangeEvent","features":[1,109]},{"name":"RegisterScaleChangeNotifications","features":[1,109]},{"name":"RemoveWindowSubclass","features":[1,109]},{"name":"ResizeThumbnail","features":[109]},{"name":"RestartDialog","features":[1,109]},{"name":"RestartDialogEx","features":[1,109]},{"name":"ReturnOnlyIfCached","features":[109]},{"name":"RevokeScaleChangeNotifications","features":[109]},{"name":"SBSC_HIDE","features":[109]},{"name":"SBSC_QUERY","features":[109]},{"name":"SBSC_SHOW","features":[109]},{"name":"SBSC_TOGGLE","features":[109]},{"name":"SBSP_ABSOLUTE","features":[109]},{"name":"SBSP_ACTIVATE_NOFOCUS","features":[109]},{"name":"SBSP_ALLOW_AUTONAVIGATE","features":[109]},{"name":"SBSP_CALLERUNTRUSTED","features":[109]},{"name":"SBSP_CREATENOHISTORY","features":[109]},{"name":"SBSP_DEFBROWSER","features":[109]},{"name":"SBSP_DEFMODE","features":[109]},{"name":"SBSP_EXPLOREMODE","features":[109]},{"name":"SBSP_FEEDNAVIGATION","features":[109]},{"name":"SBSP_HELPMODE","features":[109]},{"name":"SBSP_INITIATEDBYHLINKFRAME","features":[109]},{"name":"SBSP_KEEPSAMETEMPLATE","features":[109]},{"name":"SBSP_KEEPWORDWHEELTEXT","features":[109]},{"name":"SBSP_NAVIGATEBACK","features":[109]},{"name":"SBSP_NAVIGATEFORWARD","features":[109]},{"name":"SBSP_NEWBROWSER","features":[109]},{"name":"SBSP_NOAUTOSELECT","features":[109]},{"name":"SBSP_NOTRANSFERHIST","features":[109]},{"name":"SBSP_OPENMODE","features":[109]},{"name":"SBSP_PARENT","features":[109]},{"name":"SBSP_PLAYNOSOUND","features":[109]},{"name":"SBSP_REDIRECT","features":[109]},{"name":"SBSP_RELATIVE","features":[109]},{"name":"SBSP_SAMEBROWSER","features":[109]},{"name":"SBSP_TRUSTEDFORACTIVEX","features":[109]},{"name":"SBSP_TRUSTFIRSTDOWNLOAD","features":[109]},{"name":"SBSP_UNTRUSTEDFORDOWNLOAD","features":[109]},{"name":"SBSP_WRITENOHISTORY","features":[109]},{"name":"SCALE_CHANGE_FLAGS","features":[109]},{"name":"SCF_PHYSICAL","features":[109]},{"name":"SCF_SCALE","features":[109]},{"name":"SCF_VALUE_NONE","features":[109]},{"name":"SCHEME_CREATE","features":[109]},{"name":"SCHEME_DISPLAY","features":[109]},{"name":"SCHEME_DONOTUSE","features":[109]},{"name":"SCHEME_EDIT","features":[109]},{"name":"SCHEME_GLOBAL","features":[109]},{"name":"SCHEME_LOCAL","features":[109]},{"name":"SCHEME_REFRESH","features":[109]},{"name":"SCHEME_UPDATE","features":[109]},{"name":"SCNRT_DISABLE","features":[109]},{"name":"SCNRT_ENABLE","features":[109]},{"name":"SCNRT_STATUS","features":[109]},{"name":"SCRM_VERIFYPW","features":[109]},{"name":"SECURELOCKCODE","features":[109]},{"name":"SECURELOCK_FIRSTSUGGEST","features":[109]},{"name":"SECURELOCK_NOCHANGE","features":[109]},{"name":"SECURELOCK_SET_FORTEZZA","features":[109]},{"name":"SECURELOCK_SET_MIXED","features":[109]},{"name":"SECURELOCK_SET_SECURE128BIT","features":[109]},{"name":"SECURELOCK_SET_SECURE40BIT","features":[109]},{"name":"SECURELOCK_SET_SECURE56BIT","features":[109]},{"name":"SECURELOCK_SET_SECUREUNKNOWNBIT","features":[109]},{"name":"SECURELOCK_SET_UNSECURE","features":[109]},{"name":"SECURELOCK_SUGGEST_FORTEZZA","features":[109]},{"name":"SECURELOCK_SUGGEST_MIXED","features":[109]},{"name":"SECURELOCK_SUGGEST_SECURE128BIT","features":[109]},{"name":"SECURELOCK_SUGGEST_SECURE40BIT","features":[109]},{"name":"SECURELOCK_SUGGEST_SECURE56BIT","features":[109]},{"name":"SECURELOCK_SUGGEST_SECUREUNKNOWNBIT","features":[109]},{"name":"SECURELOCK_SUGGEST_UNSECURE","features":[109]},{"name":"SEE_MASK_ASYNCOK","features":[109]},{"name":"SEE_MASK_CLASSKEY","features":[109]},{"name":"SEE_MASK_CLASSNAME","features":[109]},{"name":"SEE_MASK_CONNECTNETDRV","features":[109]},{"name":"SEE_MASK_DEFAULT","features":[109]},{"name":"SEE_MASK_DOENVSUBST","features":[109]},{"name":"SEE_MASK_FLAG_DDEWAIT","features":[109]},{"name":"SEE_MASK_FLAG_HINST_IS_SITE","features":[109]},{"name":"SEE_MASK_FLAG_LOG_USAGE","features":[109]},{"name":"SEE_MASK_FLAG_NO_UI","features":[109]},{"name":"SEE_MASK_HMONITOR","features":[109]},{"name":"SEE_MASK_HOTKEY","features":[109]},{"name":"SEE_MASK_ICON","features":[109]},{"name":"SEE_MASK_IDLIST","features":[109]},{"name":"SEE_MASK_INVOKEIDLIST","features":[109]},{"name":"SEE_MASK_NOASYNC","features":[109]},{"name":"SEE_MASK_NOCLOSEPROCESS","features":[109]},{"name":"SEE_MASK_NOQUERYCLASSSTORE","features":[109]},{"name":"SEE_MASK_NOZONECHECKS","features":[109]},{"name":"SEE_MASK_NO_CONSOLE","features":[109]},{"name":"SEE_MASK_UNICODE","features":[109]},{"name":"SEE_MASK_WAITFORINPUTIDLE","features":[109]},{"name":"SETPROPS_NONE","features":[109]},{"name":"SE_ERR_ACCESSDENIED","features":[109]},{"name":"SE_ERR_ASSOCINCOMPLETE","features":[109]},{"name":"SE_ERR_DDEBUSY","features":[109]},{"name":"SE_ERR_DDEFAIL","features":[109]},{"name":"SE_ERR_DDETIMEOUT","features":[109]},{"name":"SE_ERR_DLLNOTFOUND","features":[109]},{"name":"SE_ERR_FNF","features":[109]},{"name":"SE_ERR_NOASSOC","features":[109]},{"name":"SE_ERR_OOM","features":[109]},{"name":"SE_ERR_PNF","features":[109]},{"name":"SE_ERR_SHARE","features":[109]},{"name":"SFBID_PIDLCHANGED","features":[109]},{"name":"SFBS_FLAGS","features":[109]},{"name":"SFBS_FLAGS_ROUND_TO_NEAREST_DISPLAYED_DIGIT","features":[109]},{"name":"SFBS_FLAGS_TRUNCATE_UNDISPLAYED_DECIMAL_DIGITS","features":[109]},{"name":"SFVM_ADDOBJECT","features":[109]},{"name":"SFVM_ADDPROPERTYPAGES","features":[109]},{"name":"SFVM_BACKGROUNDENUM","features":[109]},{"name":"SFVM_BACKGROUNDENUMDONE","features":[109]},{"name":"SFVM_COLUMNCLICK","features":[109]},{"name":"SFVM_DEFITEMCOUNT","features":[109]},{"name":"SFVM_DEFVIEWMODE","features":[109]},{"name":"SFVM_DIDDRAGDROP","features":[109]},{"name":"SFVM_FSNOTIFY","features":[109]},{"name":"SFVM_GETANIMATION","features":[109]},{"name":"SFVM_GETBUTTONINFO","features":[109]},{"name":"SFVM_GETBUTTONS","features":[109]},{"name":"SFVM_GETDETAILSOF","features":[109]},{"name":"SFVM_GETHELPTEXT","features":[109]},{"name":"SFVM_GETHELPTOPIC","features":[109]},{"name":"SFVM_GETNOTIFY","features":[109]},{"name":"SFVM_GETPANE","features":[109]},{"name":"SFVM_GETSELECTEDOBJECTS","features":[109]},{"name":"SFVM_GETSORTDEFAULTS","features":[109]},{"name":"SFVM_GETTOOLTIPTEXT","features":[109]},{"name":"SFVM_GETZONE","features":[109]},{"name":"SFVM_HELPTOPIC_DATA","features":[109]},{"name":"SFVM_INITMENUPOPUP","features":[109]},{"name":"SFVM_INVOKECOMMAND","features":[109]},{"name":"SFVM_MERGEMENU","features":[109]},{"name":"SFVM_MESSAGE_ID","features":[109]},{"name":"SFVM_PROPPAGE_DATA","features":[1,40,109]},{"name":"SFVM_QUERYFSNOTIFY","features":[109]},{"name":"SFVM_REARRANGE","features":[109]},{"name":"SFVM_REMOVEOBJECT","features":[109]},{"name":"SFVM_SETCLIPBOARD","features":[109]},{"name":"SFVM_SETISFV","features":[109]},{"name":"SFVM_SETITEMPOS","features":[109]},{"name":"SFVM_SETPOINTS","features":[109]},{"name":"SFVM_SIZE","features":[109]},{"name":"SFVM_THISIDLIST","features":[109]},{"name":"SFVM_UNMERGEMENU","features":[109]},{"name":"SFVM_UPDATEOBJECT","features":[109]},{"name":"SFVM_UPDATESTATUSBAR","features":[109]},{"name":"SFVM_WINDOWCREATED","features":[109]},{"name":"SFVSOC_INVALIDATE_ALL","features":[109]},{"name":"SFVSOC_NOSCROLL","features":[109]},{"name":"SFVS_SELECT","features":[109]},{"name":"SFVS_SELECT_ALLITEMS","features":[109]},{"name":"SFVS_SELECT_INVERT","features":[109]},{"name":"SFVS_SELECT_NONE","features":[109]},{"name":"SFVVO_DESKTOPHTML","features":[109]},{"name":"SFVVO_DOUBLECLICKINWEBVIEW","features":[109]},{"name":"SFVVO_SHOWALLOBJECTS","features":[109]},{"name":"SFVVO_SHOWCOMPCOLOR","features":[109]},{"name":"SFVVO_SHOWEXTENSIONS","features":[109]},{"name":"SFVVO_SHOWSYSFILES","features":[109]},{"name":"SFVVO_WIN95CLASSIC","features":[109]},{"name":"SFV_CREATE","features":[109]},{"name":"SFV_SETITEMPOS","features":[1,219]},{"name":"SHACF_AUTOAPPEND_FORCE_OFF","features":[109]},{"name":"SHACF_AUTOAPPEND_FORCE_ON","features":[109]},{"name":"SHACF_AUTOSUGGEST_FORCE_OFF","features":[109]},{"name":"SHACF_AUTOSUGGEST_FORCE_ON","features":[109]},{"name":"SHACF_DEFAULT","features":[109]},{"name":"SHACF_FILESYSTEM","features":[109]},{"name":"SHACF_FILESYS_DIRS","features":[109]},{"name":"SHACF_FILESYS_ONLY","features":[109]},{"name":"SHACF_URLALL","features":[109]},{"name":"SHACF_URLHISTORY","features":[109]},{"name":"SHACF_URLMRU","features":[109]},{"name":"SHACF_USETAB","features":[109]},{"name":"SHACF_VIRTUAL_NAMESPACE","features":[109]},{"name":"SHARD","features":[109]},{"name":"SHARDAPPIDINFO","features":[109]},{"name":"SHARDAPPIDINFOIDLIST","features":[219]},{"name":"SHARDAPPIDINFOLINK","features":[109]},{"name":"SHARD_APPIDINFO","features":[109]},{"name":"SHARD_APPIDINFOIDLIST","features":[109]},{"name":"SHARD_APPIDINFOLINK","features":[109]},{"name":"SHARD_LINK","features":[109]},{"name":"SHARD_PATHA","features":[109]},{"name":"SHARD_PATHW","features":[109]},{"name":"SHARD_PIDL","features":[109]},{"name":"SHARD_SHELLITEM","features":[109]},{"name":"SHARE_ROLE","features":[109]},{"name":"SHARE_ROLE_CONTRIBUTOR","features":[109]},{"name":"SHARE_ROLE_CO_OWNER","features":[109]},{"name":"SHARE_ROLE_CUSTOM","features":[109]},{"name":"SHARE_ROLE_INVALID","features":[109]},{"name":"SHARE_ROLE_MIXED","features":[109]},{"name":"SHARE_ROLE_OWNER","features":[109]},{"name":"SHARE_ROLE_READER","features":[109]},{"name":"SHAddFromPropSheetExtArray","features":[1,40,109]},{"name":"SHAddToRecentDocs","features":[109]},{"name":"SHAlloc","features":[109]},{"name":"SHAllocShared","features":[1,109]},{"name":"SHAnsiToAnsi","features":[109]},{"name":"SHAnsiToUnicode","features":[109]},{"name":"SHAppBarMessage","features":[1,109]},{"name":"SHAssocEnumHandlers","features":[109]},{"name":"SHAssocEnumHandlersForProtocolByApplication","features":[109]},{"name":"SHAutoComplete","features":[1,109]},{"name":"SHBindToFolderIDListParent","features":[219]},{"name":"SHBindToFolderIDListParentEx","features":[219]},{"name":"SHBindToObject","features":[219]},{"name":"SHBindToParent","features":[219]},{"name":"SHBrowseForFolderA","features":[1,219]},{"name":"SHBrowseForFolderW","features":[1,219]},{"name":"SHCDF_UPDATEITEM","features":[109]},{"name":"SHCIDS_ALLFIELDS","features":[109]},{"name":"SHCIDS_BITMASK","features":[109]},{"name":"SHCIDS_CANONICALONLY","features":[109]},{"name":"SHCIDS_COLUMNMASK","features":[109]},{"name":"SHCLSIDFromString","features":[109]},{"name":"SHCNEE_MSI_CHANGE","features":[109]},{"name":"SHCNEE_MSI_UNINSTALL","features":[109]},{"name":"SHCNEE_ORDERCHANGED","features":[109]},{"name":"SHCNE_ALLEVENTS","features":[109]},{"name":"SHCNE_ASSOCCHANGED","features":[109]},{"name":"SHCNE_ATTRIBUTES","features":[109]},{"name":"SHCNE_CREATE","features":[109]},{"name":"SHCNE_DELETE","features":[109]},{"name":"SHCNE_DISKEVENTS","features":[109]},{"name":"SHCNE_DRIVEADD","features":[109]},{"name":"SHCNE_DRIVEADDGUI","features":[109]},{"name":"SHCNE_DRIVEREMOVED","features":[109]},{"name":"SHCNE_EXTENDED_EVENT","features":[109]},{"name":"SHCNE_FREESPACE","features":[109]},{"name":"SHCNE_GLOBALEVENTS","features":[109]},{"name":"SHCNE_ID","features":[109]},{"name":"SHCNE_INTERRUPT","features":[109]},{"name":"SHCNE_MEDIAINSERTED","features":[109]},{"name":"SHCNE_MEDIAREMOVED","features":[109]},{"name":"SHCNE_MKDIR","features":[109]},{"name":"SHCNE_NETSHARE","features":[109]},{"name":"SHCNE_NETUNSHARE","features":[109]},{"name":"SHCNE_RENAMEFOLDER","features":[109]},{"name":"SHCNE_RENAMEITEM","features":[109]},{"name":"SHCNE_RMDIR","features":[109]},{"name":"SHCNE_SERVERDISCONNECT","features":[109]},{"name":"SHCNE_UPDATEDIR","features":[109]},{"name":"SHCNE_UPDATEIMAGE","features":[109]},{"name":"SHCNE_UPDATEITEM","features":[109]},{"name":"SHCNF_DWORD","features":[109]},{"name":"SHCNF_FLAGS","features":[109]},{"name":"SHCNF_FLUSH","features":[109]},{"name":"SHCNF_FLUSHNOWAIT","features":[109]},{"name":"SHCNF_IDLIST","features":[109]},{"name":"SHCNF_NOTIFYRECURSIVE","features":[109]},{"name":"SHCNF_PATH","features":[109]},{"name":"SHCNF_PATHA","features":[109]},{"name":"SHCNF_PATHW","features":[109]},{"name":"SHCNF_PRINTER","features":[109]},{"name":"SHCNF_PRINTERA","features":[109]},{"name":"SHCNF_PRINTERW","features":[109]},{"name":"SHCNF_TYPE","features":[109]},{"name":"SHCNRF_InterruptLevel","features":[109]},{"name":"SHCNRF_NewDelivery","features":[109]},{"name":"SHCNRF_RecursiveInterrupt","features":[109]},{"name":"SHCNRF_SOURCE","features":[109]},{"name":"SHCNRF_ShellLevel","features":[109]},{"name":"SHCOLUMNDATA","features":[109]},{"name":"SHCOLUMNINFO","features":[42,60]},{"name":"SHCOLUMNINIT","features":[109]},{"name":"SHCONTF_CHECKING_FOR_CHILDREN","features":[109]},{"name":"SHCONTF_ENABLE_ASYNC","features":[109]},{"name":"SHCONTF_FASTITEMS","features":[109]},{"name":"SHCONTF_FLATLIST","features":[109]},{"name":"SHCONTF_FOLDERS","features":[109]},{"name":"SHCONTF_INCLUDEHIDDEN","features":[109]},{"name":"SHCONTF_INCLUDESUPERHIDDEN","features":[109]},{"name":"SHCONTF_INIT_ON_FIRST_NEXT","features":[109]},{"name":"SHCONTF_NAVIGATION_ENUM","features":[109]},{"name":"SHCONTF_NETPRINTERSRCH","features":[109]},{"name":"SHCONTF_NONFOLDERS","features":[109]},{"name":"SHCONTF_SHAREABLE","features":[109]},{"name":"SHCONTF_STORAGE","features":[109]},{"name":"SHCREATEPROCESSINFOW","features":[1,4,37,109]},{"name":"SHCREATEPROCESSINFOW","features":[1,4,37,109]},{"name":"SHC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[109]},{"name":"SHChangeDWORDAsIDList","features":[109]},{"name":"SHChangeNotification_Lock","features":[1,219]},{"name":"SHChangeNotification_Unlock","features":[1,109]},{"name":"SHChangeNotify","features":[109]},{"name":"SHChangeNotifyDeregister","features":[1,109]},{"name":"SHChangeNotifyEntry","features":[1,219]},{"name":"SHChangeNotifyRegister","features":[1,219]},{"name":"SHChangeNotifyRegisterThread","features":[109]},{"name":"SHChangeProductKeyAsIDList","features":[109]},{"name":"SHChangeUpdateImageIDList","features":[109]},{"name":"SHCloneSpecialIDList","features":[1,219]},{"name":"SHCoCreateInstance","features":[109]},{"name":"SHCopyKeyA","features":[1,49,109]},{"name":"SHCopyKeyW","features":[1,49,109]},{"name":"SHCreateAssociationRegistration","features":[109]},{"name":"SHCreateDataObject","features":[219]},{"name":"SHCreateDefaultContextMenu","features":[1,49,219]},{"name":"SHCreateDefaultExtractIcon","features":[109]},{"name":"SHCreateDefaultPropertiesOp","features":[109]},{"name":"SHCreateDirectory","features":[1,109]},{"name":"SHCreateDirectoryExA","features":[1,4,109]},{"name":"SHCreateDirectoryExW","features":[1,4,109]},{"name":"SHCreateFileExtractIconW","features":[109]},{"name":"SHCreateItemFromIDList","features":[219]},{"name":"SHCreateItemFromParsingName","features":[109]},{"name":"SHCreateItemFromRelativeName","features":[109]},{"name":"SHCreateItemInKnownFolder","features":[109]},{"name":"SHCreateItemWithParent","features":[219]},{"name":"SHCreateMemStream","features":[109]},{"name":"SHCreateProcessAsUserW","features":[1,4,37,109]},{"name":"SHCreatePropSheetExtArray","features":[49,109]},{"name":"SHCreateQueryCancelAutoPlayMoniker","features":[109]},{"name":"SHCreateShellFolderView","features":[109]},{"name":"SHCreateShellFolderViewEx","features":[1,219]},{"name":"SHCreateShellItem","features":[219]},{"name":"SHCreateShellItemArray","features":[219]},{"name":"SHCreateShellItemArrayFromDataObject","features":[109]},{"name":"SHCreateShellItemArrayFromIDLists","features":[219]},{"name":"SHCreateShellItemArrayFromShellItem","features":[109]},{"name":"SHCreateShellPalette","features":[12,109]},{"name":"SHCreateStdEnumFmtEtc","features":[41,109]},{"name":"SHCreateStreamOnFileA","features":[109]},{"name":"SHCreateStreamOnFileEx","features":[1,109]},{"name":"SHCreateStreamOnFileW","features":[109]},{"name":"SHCreateThread","features":[1,37,109]},{"name":"SHCreateThreadRef","features":[109]},{"name":"SHCreateThreadWithHandle","features":[1,37,109]},{"name":"SHDESCRIPTIONID","features":[109]},{"name":"SHDID_COMPUTER_AUDIO","features":[109]},{"name":"SHDID_COMPUTER_CDROM","features":[109]},{"name":"SHDID_COMPUTER_DRIVE35","features":[109]},{"name":"SHDID_COMPUTER_DRIVE525","features":[109]},{"name":"SHDID_COMPUTER_FIXED","features":[109]},{"name":"SHDID_COMPUTER_IMAGING","features":[109]},{"name":"SHDID_COMPUTER_NETDRIVE","features":[109]},{"name":"SHDID_COMPUTER_OTHER","features":[109]},{"name":"SHDID_COMPUTER_RAMDISK","features":[109]},{"name":"SHDID_COMPUTER_REMOVABLE","features":[109]},{"name":"SHDID_COMPUTER_SHAREDDOCS","features":[109]},{"name":"SHDID_FS_DIRECTORY","features":[109]},{"name":"SHDID_FS_FILE","features":[109]},{"name":"SHDID_FS_OTHER","features":[109]},{"name":"SHDID_ID","features":[109]},{"name":"SHDID_MOBILE_DEVICE","features":[109]},{"name":"SHDID_NET_DOMAIN","features":[109]},{"name":"SHDID_NET_OTHER","features":[109]},{"name":"SHDID_NET_RESTOFNET","features":[109]},{"name":"SHDID_NET_SERVER","features":[109]},{"name":"SHDID_NET_SHARE","features":[109]},{"name":"SHDID_REMOTE_DESKTOP_DRIVE","features":[109]},{"name":"SHDID_ROOT_REGITEM","features":[109]},{"name":"SHDRAGIMAGE","features":[1,12,109]},{"name":"SHDefExtractIconA","features":[109,50]},{"name":"SHDefExtractIconW","features":[109,50]},{"name":"SHDeleteEmptyKeyA","features":[1,49,109]},{"name":"SHDeleteEmptyKeyW","features":[1,49,109]},{"name":"SHDeleteKeyA","features":[1,49,109]},{"name":"SHDeleteKeyW","features":[1,49,109]},{"name":"SHDeleteValueA","features":[1,49,109]},{"name":"SHDeleteValueW","features":[1,49,109]},{"name":"SHDestroyPropSheetExtArray","features":[109]},{"name":"SHDoDragDrop","features":[1,155,109]},{"name":"SHELLBROWSERSHOWCONTROL","features":[109]},{"name":"SHELLEXECUTEINFOA","features":[1,49,109]},{"name":"SHELLEXECUTEINFOA","features":[1,49,109]},{"name":"SHELLEXECUTEINFOW","features":[1,49,109]},{"name":"SHELLEXECUTEINFOW","features":[1,49,109]},{"name":"SHELLFLAGSTATE","features":[109]},{"name":"SHELLSTATEA","features":[109]},{"name":"SHELLSTATEVERSION_IE4","features":[109]},{"name":"SHELLSTATEVERSION_WIN2K","features":[109]},{"name":"SHELLSTATEW","features":[109]},{"name":"SHELL_AUTOCOMPLETE_FLAGS","features":[109]},{"name":"SHELL_E_WRONG_BITDEPTH","features":[109]},{"name":"SHELL_ITEM_RESOURCE","features":[109]},{"name":"SHELL_LINK_DATA_FLAGS","features":[109]},{"name":"SHELL_UI_COMPONENT","features":[109]},{"name":"SHELL_UI_COMPONENT_DESKBAND","features":[109]},{"name":"SHELL_UI_COMPONENT_NOTIFICATIONAREA","features":[109]},{"name":"SHELL_UI_COMPONENT_TASKBARS","features":[109]},{"name":"SHERB_NOCONFIRMATION","features":[109]},{"name":"SHERB_NOPROGRESSUI","features":[109]},{"name":"SHERB_NOSOUND","features":[109]},{"name":"SHEmptyRecycleBinA","features":[1,109]},{"name":"SHEmptyRecycleBinW","features":[1,109]},{"name":"SHEnumKeyExA","features":[1,49,109]},{"name":"SHEnumKeyExW","features":[1,49,109]},{"name":"SHEnumValueA","features":[1,49,109]},{"name":"SHEnumValueW","features":[1,49,109]},{"name":"SHEnumerateUnreadMailAccountsW","features":[49,109]},{"name":"SHEvaluateSystemCommandTemplate","features":[109]},{"name":"SHFILEINFOA","features":[109,50]},{"name":"SHFILEINFOA","features":[109,50]},{"name":"SHFILEINFOW","features":[109,50]},{"name":"SHFILEINFOW","features":[109,50]},{"name":"SHFILEOPSTRUCTA","features":[1,109]},{"name":"SHFILEOPSTRUCTA","features":[1,109]},{"name":"SHFILEOPSTRUCTW","features":[1,109]},{"name":"SHFILEOPSTRUCTW","features":[1,109]},{"name":"SHFMT_CANCEL","features":[109]},{"name":"SHFMT_ERROR","features":[109]},{"name":"SHFMT_ID","features":[109]},{"name":"SHFMT_ID_DEFAULT","features":[109]},{"name":"SHFMT_NOFORMAT","features":[109]},{"name":"SHFMT_OPT","features":[109]},{"name":"SHFMT_OPT_FULL","features":[109]},{"name":"SHFMT_OPT_NONE","features":[109]},{"name":"SHFMT_OPT_SYSONLY","features":[109]},{"name":"SHFMT_RET","features":[109]},{"name":"SHFOLDERCUSTOMSETTINGS","features":[109]},{"name":"SHFileOperationA","features":[1,109]},{"name":"SHFileOperationW","features":[1,109]},{"name":"SHFindFiles","features":[1,219]},{"name":"SHFind_InitMenuPopup","features":[1,109,50]},{"name":"SHFlushSFCache","features":[109]},{"name":"SHFormatDateTimeA","features":[1,109]},{"name":"SHFormatDateTimeW","features":[1,109]},{"name":"SHFormatDrive","features":[1,109]},{"name":"SHFree","features":[109]},{"name":"SHFreeNameMappings","features":[1,109]},{"name":"SHFreeShared","features":[1,109]},{"name":"SHGDFIL_DESCRIPTIONID","features":[109]},{"name":"SHGDFIL_FINDDATA","features":[109]},{"name":"SHGDFIL_FORMAT","features":[109]},{"name":"SHGDFIL_NETRESOURCE","features":[109]},{"name":"SHGDNF","features":[109]},{"name":"SHGDN_FORADDRESSBAR","features":[109]},{"name":"SHGDN_FOREDITING","features":[109]},{"name":"SHGDN_FORPARSING","features":[109]},{"name":"SHGDN_INFOLDER","features":[109]},{"name":"SHGDN_NORMAL","features":[109]},{"name":"SHGFI_ADDOVERLAYS","features":[109]},{"name":"SHGFI_ATTRIBUTES","features":[109]},{"name":"SHGFI_ATTR_SPECIFIED","features":[109]},{"name":"SHGFI_DISPLAYNAME","features":[109]},{"name":"SHGFI_EXETYPE","features":[109]},{"name":"SHGFI_FLAGS","features":[109]},{"name":"SHGFI_ICON","features":[109]},{"name":"SHGFI_ICONLOCATION","features":[109]},{"name":"SHGFI_LARGEICON","features":[109]},{"name":"SHGFI_LINKOVERLAY","features":[109]},{"name":"SHGFI_OPENICON","features":[109]},{"name":"SHGFI_OVERLAYINDEX","features":[109]},{"name":"SHGFI_PIDL","features":[109]},{"name":"SHGFI_SELECTED","features":[109]},{"name":"SHGFI_SHELLICONSIZE","features":[109]},{"name":"SHGFI_SMALLICON","features":[109]},{"name":"SHGFI_SYSICONINDEX","features":[109]},{"name":"SHGFI_TYPENAME","features":[109]},{"name":"SHGFI_USEFILEATTRIBUTES","features":[109]},{"name":"SHGFP_TYPE","features":[109]},{"name":"SHGFP_TYPE_CURRENT","features":[109]},{"name":"SHGFP_TYPE_DEFAULT","features":[109]},{"name":"SHGLOBALCOUNTER","features":[109]},{"name":"SHGNLI_NOLNK","features":[109]},{"name":"SHGNLI_NOLOCNAME","features":[109]},{"name":"SHGNLI_NOUNIQUE","features":[109]},{"name":"SHGNLI_PIDL","features":[109]},{"name":"SHGNLI_PREFIXNAME","features":[109]},{"name":"SHGNLI_USEURLEXT","features":[109]},{"name":"SHGSI_FLAGS","features":[109]},{"name":"SHGSI_ICON","features":[109]},{"name":"SHGSI_ICONLOCATION","features":[109]},{"name":"SHGSI_LARGEICON","features":[109]},{"name":"SHGSI_LINKOVERLAY","features":[109]},{"name":"SHGSI_SELECTED","features":[109]},{"name":"SHGSI_SHELLICONSIZE","features":[109]},{"name":"SHGSI_SMALLICON","features":[109]},{"name":"SHGSI_SYSICONINDEX","features":[109]},{"name":"SHGVSPB_ALLFOLDERS","features":[109]},{"name":"SHGVSPB_ALLUSERS","features":[109]},{"name":"SHGVSPB_INHERIT","features":[109]},{"name":"SHGVSPB_NOAUTODEFAULTS","features":[109]},{"name":"SHGVSPB_PERFOLDER","features":[109]},{"name":"SHGVSPB_PERUSER","features":[109]},{"name":"SHGVSPB_ROAM","features":[109]},{"name":"SHGetAttributesFromDataObject","features":[109]},{"name":"SHGetDataFromIDListA","features":[219]},{"name":"SHGetDataFromIDListW","features":[219]},{"name":"SHGetDesktopFolder","features":[109]},{"name":"SHGetDiskFreeSpaceExA","features":[1,109]},{"name":"SHGetDiskFreeSpaceExW","features":[1,109]},{"name":"SHGetDriveMedia","features":[109]},{"name":"SHGetFileInfoA","features":[21,109,50]},{"name":"SHGetFileInfoW","features":[21,109,50]},{"name":"SHGetFolderLocation","features":[1,219]},{"name":"SHGetFolderPathA","features":[1,109]},{"name":"SHGetFolderPathAndSubDirA","features":[1,109]},{"name":"SHGetFolderPathAndSubDirW","features":[1,109]},{"name":"SHGetFolderPathW","features":[1,109]},{"name":"SHGetIDListFromObject","features":[219]},{"name":"SHGetIconOverlayIndexA","features":[109]},{"name":"SHGetIconOverlayIndexW","features":[109]},{"name":"SHGetImageList","features":[109]},{"name":"SHGetInstanceExplorer","features":[109]},{"name":"SHGetInverseCMAP","features":[109]},{"name":"SHGetItemFromDataObject","features":[109]},{"name":"SHGetItemFromObject","features":[109]},{"name":"SHGetKnownFolderIDList","features":[1,219]},{"name":"SHGetKnownFolderItem","features":[1,109]},{"name":"SHGetKnownFolderPath","features":[1,109]},{"name":"SHGetLocalizedName","features":[109]},{"name":"SHGetMalloc","features":[109]},{"name":"SHGetNameFromIDList","features":[219]},{"name":"SHGetNewLinkInfoA","features":[1,109]},{"name":"SHGetNewLinkInfoW","features":[1,109]},{"name":"SHGetPathFromIDListA","features":[1,219]},{"name":"SHGetPathFromIDListEx","features":[1,219]},{"name":"SHGetPathFromIDListW","features":[1,219]},{"name":"SHGetRealIDL","features":[219]},{"name":"SHGetSetFolderCustomSettings","features":[109]},{"name":"SHGetSetSettings","features":[1,109]},{"name":"SHGetSettings","features":[109]},{"name":"SHGetSpecialFolderLocation","features":[1,219]},{"name":"SHGetSpecialFolderPathA","features":[1,109]},{"name":"SHGetSpecialFolderPathW","features":[1,109]},{"name":"SHGetStockIconInfo","features":[109,50]},{"name":"SHGetTemporaryPropertyForItem","features":[1,63,42,60]},{"name":"SHGetThreadRef","features":[109]},{"name":"SHGetUnreadMailCountW","features":[1,49,109]},{"name":"SHGetValueA","features":[1,49,109]},{"name":"SHGetValueW","features":[1,49,109]},{"name":"SHGetViewStatePropertyBag","features":[219]},{"name":"SHGlobalCounterDecrement","features":[109]},{"name":"SHGlobalCounterGetValue","features":[109]},{"name":"SHGlobalCounterIncrement","features":[109]},{"name":"SHHLNF_NOAUTOSELECT","features":[109]},{"name":"SHHLNF_WRITENOHISTORY","features":[109]},{"name":"SHHandleUpdateImage","features":[219]},{"name":"SHILCreateFromPath","features":[219]},{"name":"SHIL_EXTRALARGE","features":[109]},{"name":"SHIL_JUMBO","features":[109]},{"name":"SHIL_LARGE","features":[109]},{"name":"SHIL_LAST","features":[109]},{"name":"SHIL_SMALL","features":[109]},{"name":"SHIL_SYSSMALL","features":[109]},{"name":"SHIMGDEC_DEFAULT","features":[109]},{"name":"SHIMGDEC_LOADFULL","features":[109]},{"name":"SHIMGDEC_THUMBNAIL","features":[109]},{"name":"SHIMGKEY_QUALITY","features":[109]},{"name":"SHIMGKEY_RAWFORMAT","features":[109]},{"name":"SHIMSTCAPFLAG_LOCKABLE","features":[109]},{"name":"SHIMSTCAPFLAG_PURGEABLE","features":[109]},{"name":"SHInvokePrinterCommandA","features":[1,109]},{"name":"SHInvokePrinterCommandW","features":[1,109]},{"name":"SHIsFileAvailableOffline","features":[109]},{"name":"SHIsLowMemoryMachine","features":[1,109]},{"name":"SHLimitInputEdit","features":[1,109]},{"name":"SHLoadInProc","features":[109]},{"name":"SHLoadIndirectString","features":[109]},{"name":"SHLoadNonloadedIconOverlayIdentifiers","features":[109]},{"name":"SHLockShared","features":[1,109]},{"name":"SHMapPIDLToSystemImageListIndex","features":[219]},{"name":"SHMessageBoxCheckA","features":[1,109]},{"name":"SHMessageBoxCheckW","features":[1,109]},{"name":"SHMultiFileProperties","features":[109]},{"name":"SHNAMEMAPPINGA","features":[109]},{"name":"SHNAMEMAPPINGA","features":[109]},{"name":"SHNAMEMAPPINGW","features":[109]},{"name":"SHNAMEMAPPINGW","features":[109]},{"name":"SHOP_FILEPATH","features":[109]},{"name":"SHOP_PRINTERNAME","features":[109]},{"name":"SHOP_TYPE","features":[109]},{"name":"SHOP_VOLUMEGUID","features":[109]},{"name":"SHObjectProperties","features":[1,109]},{"name":"SHOpenFolderAndSelectItems","features":[219]},{"name":"SHOpenPropSheetW","features":[1,49,109]},{"name":"SHOpenRegStream2A","features":[49,109]},{"name":"SHOpenRegStream2W","features":[49,109]},{"name":"SHOpenRegStreamA","features":[49,109]},{"name":"SHOpenRegStreamW","features":[49,109]},{"name":"SHOpenWithDialog","features":[1,109]},{"name":"SHPPFW_ASKDIRCREATE","features":[109]},{"name":"SHPPFW_DIRCREATE","features":[109]},{"name":"SHPPFW_IGNOREFILENAME","features":[109]},{"name":"SHPPFW_MEDIACHECKONLY","features":[109]},{"name":"SHPPFW_NONE","features":[109]},{"name":"SHPPFW_NOWRITECHECK","features":[109]},{"name":"SHPWHF_ANYLOCATION","features":[109]},{"name":"SHPWHF_NOFILESELECTOR","features":[109]},{"name":"SHPWHF_NONETPLACECREATE","features":[109]},{"name":"SHPWHF_NORECOMPRESS","features":[109]},{"name":"SHPWHF_USEMRU","features":[109]},{"name":"SHPWHF_VALIDATEVIAWEBFOLDERS","features":[109]},{"name":"SHParseDisplayName","features":[219]},{"name":"SHPathPrepareForWriteA","features":[1,109]},{"name":"SHPathPrepareForWriteW","features":[1,109]},{"name":"SHQUERYRBINFO","features":[109]},{"name":"SHQUERYRBINFO","features":[109]},{"name":"SHQueryInfoKeyA","features":[1,49,109]},{"name":"SHQueryInfoKeyW","features":[1,49,109]},{"name":"SHQueryRecycleBinA","features":[109]},{"name":"SHQueryRecycleBinW","features":[109]},{"name":"SHQueryUserNotificationState","features":[109]},{"name":"SHQueryValueExA","features":[1,49,109]},{"name":"SHQueryValueExW","features":[1,49,109]},{"name":"SHREGDEL_BOTH","features":[109]},{"name":"SHREGDEL_DEFAULT","features":[109]},{"name":"SHREGDEL_FLAGS","features":[109]},{"name":"SHREGDEL_HKCU","features":[109]},{"name":"SHREGDEL_HKLM","features":[109]},{"name":"SHREGENUM_BOTH","features":[109]},{"name":"SHREGENUM_DEFAULT","features":[109]},{"name":"SHREGENUM_FLAGS","features":[109]},{"name":"SHREGENUM_HKCU","features":[109]},{"name":"SHREGENUM_HKLM","features":[109]},{"name":"SHREGSET_FORCE_HKCU","features":[109]},{"name":"SHREGSET_FORCE_HKLM","features":[109]},{"name":"SHREGSET_HKCU","features":[109]},{"name":"SHREGSET_HKLM","features":[109]},{"name":"SHRegCloseUSKey","features":[1,109]},{"name":"SHRegCreateUSKeyA","features":[1,109]},{"name":"SHRegCreateUSKeyW","features":[1,109]},{"name":"SHRegDeleteEmptyUSKeyA","features":[1,109]},{"name":"SHRegDeleteEmptyUSKeyW","features":[1,109]},{"name":"SHRegDeleteUSValueA","features":[1,109]},{"name":"SHRegDeleteUSValueW","features":[1,109]},{"name":"SHRegDuplicateHKey","features":[49,109]},{"name":"SHRegEnumUSKeyA","features":[1,109]},{"name":"SHRegEnumUSKeyW","features":[1,109]},{"name":"SHRegEnumUSValueA","features":[1,109]},{"name":"SHRegEnumUSValueW","features":[1,109]},{"name":"SHRegGetBoolUSValueA","features":[1,109]},{"name":"SHRegGetBoolUSValueW","features":[1,109]},{"name":"SHRegGetIntW","features":[49,109]},{"name":"SHRegGetPathA","features":[1,49,109]},{"name":"SHRegGetPathW","features":[1,49,109]},{"name":"SHRegGetUSValueA","features":[1,109]},{"name":"SHRegGetUSValueW","features":[1,109]},{"name":"SHRegGetValueA","features":[1,49,109]},{"name":"SHRegGetValueFromHKCUHKLM","features":[1,109]},{"name":"SHRegGetValueW","features":[1,49,109]},{"name":"SHRegOpenUSKeyA","features":[1,109]},{"name":"SHRegOpenUSKeyW","features":[1,109]},{"name":"SHRegQueryInfoUSKeyA","features":[1,109]},{"name":"SHRegQueryInfoUSKeyW","features":[1,109]},{"name":"SHRegQueryUSValueA","features":[1,109]},{"name":"SHRegQueryUSValueW","features":[1,109]},{"name":"SHRegSetPathA","features":[1,49,109]},{"name":"SHRegSetPathW","features":[1,49,109]},{"name":"SHRegSetUSValueA","features":[1,109]},{"name":"SHRegSetUSValueW","features":[1,109]},{"name":"SHRegWriteUSValueA","features":[1,109]},{"name":"SHRegWriteUSValueW","features":[1,109]},{"name":"SHReleaseThreadRef","features":[109]},{"name":"SHRemoveLocalizedName","features":[109]},{"name":"SHReplaceFromPropSheetExtArray","features":[1,40,109]},{"name":"SHResolveLibrary","features":[109]},{"name":"SHRestricted","features":[109]},{"name":"SHSTOCKICONID","features":[109]},{"name":"SHSTOCKICONINFO","features":[109,50]},{"name":"SHSTOCKICONINFO","features":[109,50]},{"name":"SHSendMessageBroadcastA","features":[1,109]},{"name":"SHSendMessageBroadcastW","features":[1,109]},{"name":"SHSetDefaultProperties","features":[1,109]},{"name":"SHSetFolderPathA","features":[1,109]},{"name":"SHSetFolderPathW","features":[1,109]},{"name":"SHSetInstanceExplorer","features":[109]},{"name":"SHSetKnownFolderPath","features":[1,109]},{"name":"SHSetLocalizedName","features":[109]},{"name":"SHSetTemporaryPropertyForItem","features":[1,63,42,60]},{"name":"SHSetThreadRef","features":[109]},{"name":"SHSetUnreadMailCountW","features":[109]},{"name":"SHSetValueA","features":[49,109]},{"name":"SHSetValueW","features":[49,109]},{"name":"SHShellFolderView_Message","features":[1,109]},{"name":"SHShowManageLibraryUI","features":[1,109]},{"name":"SHSimpleIDListFromPath","features":[219]},{"name":"SHSkipJunction","features":[1,109]},{"name":"SHStartNetConnectionDialogW","features":[1,109]},{"name":"SHStrDupA","features":[109]},{"name":"SHStrDupW","features":[109]},{"name":"SHStripMneumonicA","features":[109]},{"name":"SHStripMneumonicW","features":[109]},{"name":"SHTestTokenMembership","features":[1,109]},{"name":"SHUnicodeToAnsi","features":[109]},{"name":"SHUnicodeToUnicode","features":[109]},{"name":"SHUnlockShared","features":[1,109]},{"name":"SHUpdateImageA","features":[109]},{"name":"SHUpdateImageW","features":[109]},{"name":"SHValidateUNC","features":[1,109]},{"name":"SIATTRIBFLAGS","features":[109]},{"name":"SIATTRIBFLAGS_ALLITEMS","features":[109]},{"name":"SIATTRIBFLAGS_AND","features":[109]},{"name":"SIATTRIBFLAGS_APPCOMPAT","features":[109]},{"name":"SIATTRIBFLAGS_MASK","features":[109]},{"name":"SIATTRIBFLAGS_OR","features":[109]},{"name":"SICHINT_ALLFIELDS","features":[109]},{"name":"SICHINT_CANONICAL","features":[109]},{"name":"SICHINT_DISPLAY","features":[109]},{"name":"SICHINT_TEST_FILESYSPATH_IF_NOT_EQUAL","features":[109]},{"name":"SID_CommandsPropertyBag","features":[109]},{"name":"SID_CtxQueryAssociations","features":[109]},{"name":"SID_DefView","features":[109]},{"name":"SID_LaunchSourceAppUserModelId","features":[109]},{"name":"SID_LaunchSourceViewSizePreference","features":[109]},{"name":"SID_LaunchTargetViewSizePreference","features":[109]},{"name":"SID_MenuShellFolder","features":[109]},{"name":"SID_SCommDlgBrowser","features":[109]},{"name":"SID_SCommandBarState","features":[109]},{"name":"SID_SGetViewFromViewDual","features":[109]},{"name":"SID_SInPlaceBrowser","features":[109]},{"name":"SID_SMenuBandBKContextMenu","features":[109]},{"name":"SID_SMenuBandBottom","features":[109]},{"name":"SID_SMenuBandBottomSelected","features":[109]},{"name":"SID_SMenuBandChild","features":[109]},{"name":"SID_SMenuBandContextMenuModifier","features":[109]},{"name":"SID_SMenuBandParent","features":[109]},{"name":"SID_SMenuBandTop","features":[109]},{"name":"SID_SMenuPopup","features":[109]},{"name":"SID_SSearchBoxInfo","features":[109]},{"name":"SID_STopLevelBrowser","features":[109]},{"name":"SID_STopWindow","features":[109]},{"name":"SID_ShellExecuteNamedPropertyStore","features":[109]},{"name":"SID_URLExecutionContext","features":[109]},{"name":"SIGDN","features":[109]},{"name":"SIGDN_DESKTOPABSOLUTEEDITING","features":[109]},{"name":"SIGDN_DESKTOPABSOLUTEPARSING","features":[109]},{"name":"SIGDN_FILESYSPATH","features":[109]},{"name":"SIGDN_NORMALDISPLAY","features":[109]},{"name":"SIGDN_PARENTRELATIVE","features":[109]},{"name":"SIGDN_PARENTRELATIVEEDITING","features":[109]},{"name":"SIGDN_PARENTRELATIVEFORADDRESSBAR","features":[109]},{"name":"SIGDN_PARENTRELATIVEFORUI","features":[109]},{"name":"SIGDN_PARENTRELATIVEPARSING","features":[109]},{"name":"SIGDN_URL","features":[109]},{"name":"SIID_APPLICATION","features":[109]},{"name":"SIID_AUDIOFILES","features":[109]},{"name":"SIID_AUTOLIST","features":[109]},{"name":"SIID_CLUSTEREDDRIVE","features":[109]},{"name":"SIID_DELETE","features":[109]},{"name":"SIID_DESKTOPPC","features":[109]},{"name":"SIID_DEVICEAUDIOPLAYER","features":[109]},{"name":"SIID_DEVICECAMERA","features":[109]},{"name":"SIID_DEVICECELLPHONE","features":[109]},{"name":"SIID_DEVICEVIDEOCAMERA","features":[109]},{"name":"SIID_DOCASSOC","features":[109]},{"name":"SIID_DOCNOASSOC","features":[109]},{"name":"SIID_DRIVE35","features":[109]},{"name":"SIID_DRIVE525","features":[109]},{"name":"SIID_DRIVEBD","features":[109]},{"name":"SIID_DRIVECD","features":[109]},{"name":"SIID_DRIVEDVD","features":[109]},{"name":"SIID_DRIVEFIXED","features":[109]},{"name":"SIID_DRIVEHDDVD","features":[109]},{"name":"SIID_DRIVENET","features":[109]},{"name":"SIID_DRIVENETDISABLED","features":[109]},{"name":"SIID_DRIVERAM","features":[109]},{"name":"SIID_DRIVEREMOVE","features":[109]},{"name":"SIID_DRIVEUNKNOWN","features":[109]},{"name":"SIID_ERROR","features":[109]},{"name":"SIID_FIND","features":[109]},{"name":"SIID_FOLDER","features":[109]},{"name":"SIID_FOLDERBACK","features":[109]},{"name":"SIID_FOLDERFRONT","features":[109]},{"name":"SIID_FOLDEROPEN","features":[109]},{"name":"SIID_HELP","features":[109]},{"name":"SIID_IMAGEFILES","features":[109]},{"name":"SIID_INFO","features":[109]},{"name":"SIID_INTERNET","features":[109]},{"name":"SIID_KEY","features":[109]},{"name":"SIID_LINK","features":[109]},{"name":"SIID_LOCK","features":[109]},{"name":"SIID_MAX_ICONS","features":[109]},{"name":"SIID_MEDIAAUDIODVD","features":[109]},{"name":"SIID_MEDIABDR","features":[109]},{"name":"SIID_MEDIABDRE","features":[109]},{"name":"SIID_MEDIABDROM","features":[109]},{"name":"SIID_MEDIABLANKCD","features":[109]},{"name":"SIID_MEDIABLURAY","features":[109]},{"name":"SIID_MEDIACDAUDIO","features":[109]},{"name":"SIID_MEDIACDAUDIOPLUS","features":[109]},{"name":"SIID_MEDIACDBURN","features":[109]},{"name":"SIID_MEDIACDR","features":[109]},{"name":"SIID_MEDIACDROM","features":[109]},{"name":"SIID_MEDIACDRW","features":[109]},{"name":"SIID_MEDIACOMPACTFLASH","features":[109]},{"name":"SIID_MEDIADVD","features":[109]},{"name":"SIID_MEDIADVDPLUSR","features":[109]},{"name":"SIID_MEDIADVDPLUSRW","features":[109]},{"name":"SIID_MEDIADVDR","features":[109]},{"name":"SIID_MEDIADVDRAM","features":[109]},{"name":"SIID_MEDIADVDROM","features":[109]},{"name":"SIID_MEDIADVDRW","features":[109]},{"name":"SIID_MEDIAENHANCEDCD","features":[109]},{"name":"SIID_MEDIAENHANCEDDVD","features":[109]},{"name":"SIID_MEDIAHDDVD","features":[109]},{"name":"SIID_MEDIAHDDVDR","features":[109]},{"name":"SIID_MEDIAHDDVDRAM","features":[109]},{"name":"SIID_MEDIAHDDVDROM","features":[109]},{"name":"SIID_MEDIAMOVIEDVD","features":[109]},{"name":"SIID_MEDIASMARTMEDIA","features":[109]},{"name":"SIID_MEDIASVCD","features":[109]},{"name":"SIID_MEDIAVCD","features":[109]},{"name":"SIID_MIXEDFILES","features":[109]},{"name":"SIID_MOBILEPC","features":[109]},{"name":"SIID_MYNETWORK","features":[109]},{"name":"SIID_NETWORKCONNECT","features":[109]},{"name":"SIID_PRINTER","features":[109]},{"name":"SIID_PRINTERFAX","features":[109]},{"name":"SIID_PRINTERFAXNET","features":[109]},{"name":"SIID_PRINTERFILE","features":[109]},{"name":"SIID_PRINTERNET","features":[109]},{"name":"SIID_RECYCLER","features":[109]},{"name":"SIID_RECYCLERFULL","features":[109]},{"name":"SIID_RENAME","features":[109]},{"name":"SIID_SERVER","features":[109]},{"name":"SIID_SERVERSHARE","features":[109]},{"name":"SIID_SETTINGS","features":[109]},{"name":"SIID_SHARE","features":[109]},{"name":"SIID_SHIELD","features":[109]},{"name":"SIID_SLOWFILE","features":[109]},{"name":"SIID_SOFTWARE","features":[109]},{"name":"SIID_STACK","features":[109]},{"name":"SIID_STUFFEDFOLDER","features":[109]},{"name":"SIID_USERS","features":[109]},{"name":"SIID_VIDEOFILES","features":[109]},{"name":"SIID_WARNING","features":[109]},{"name":"SIID_WORLD","features":[109]},{"name":"SIID_ZIPFILE","features":[109]},{"name":"SIIGBF","features":[109]},{"name":"SIIGBF_BIGGERSIZEOK","features":[109]},{"name":"SIIGBF_CROPTOSQUARE","features":[109]},{"name":"SIIGBF_ICONBACKGROUND","features":[109]},{"name":"SIIGBF_ICONONLY","features":[109]},{"name":"SIIGBF_INCACHEONLY","features":[109]},{"name":"SIIGBF_MEMORYONLY","features":[109]},{"name":"SIIGBF_RESIZETOFIT","features":[109]},{"name":"SIIGBF_SCALEUP","features":[109]},{"name":"SIIGBF_THUMBNAILONLY","features":[109]},{"name":"SIIGBF_WIDETHUMBNAILS","features":[109]},{"name":"SIOM_ICONINDEX","features":[109]},{"name":"SIOM_OVERLAYINDEX","features":[109]},{"name":"SIOM_RESERVED_DEFAULT","features":[109]},{"name":"SIOM_RESERVED_LINK","features":[109]},{"name":"SIOM_RESERVED_SHARED","features":[109]},{"name":"SIOM_RESERVED_SLOWFILE","features":[109]},{"name":"SLDF_ALLOW_LINK_TO_LINK","features":[109]},{"name":"SLDF_DEFAULT","features":[109]},{"name":"SLDF_DISABLE_KNOWNFOLDER_RELATIVE_TRACKING","features":[109]},{"name":"SLDF_DISABLE_LINK_PATH_TRACKING","features":[109]},{"name":"SLDF_ENABLE_TARGET_METADATA","features":[109]},{"name":"SLDF_FORCE_NO_LINKINFO","features":[109]},{"name":"SLDF_FORCE_NO_LINKTRACK","features":[109]},{"name":"SLDF_FORCE_UNCNAME","features":[109]},{"name":"SLDF_HAS_ARGS","features":[109]},{"name":"SLDF_HAS_DARWINID","features":[109]},{"name":"SLDF_HAS_EXP_ICON_SZ","features":[109]},{"name":"SLDF_HAS_EXP_SZ","features":[109]},{"name":"SLDF_HAS_ICONLOCATION","features":[109]},{"name":"SLDF_HAS_ID_LIST","features":[109]},{"name":"SLDF_HAS_LINK_INFO","features":[109]},{"name":"SLDF_HAS_NAME","features":[109]},{"name":"SLDF_HAS_RELPATH","features":[109]},{"name":"SLDF_HAS_WORKINGDIR","features":[109]},{"name":"SLDF_KEEP_LOCAL_IDLIST_FOR_UNC_TARGET","features":[109]},{"name":"SLDF_NO_KF_ALIAS","features":[109]},{"name":"SLDF_NO_PIDL_ALIAS","features":[109]},{"name":"SLDF_PERSIST_VOLUME_ID_RELATIVE","features":[109]},{"name":"SLDF_PREFER_ENVIRONMENT_PATH","features":[109]},{"name":"SLDF_RESERVED","features":[109]},{"name":"SLDF_RUNAS_USER","features":[109]},{"name":"SLDF_RUN_IN_SEPARATE","features":[109]},{"name":"SLDF_RUN_WITH_SHIMLAYER","features":[109]},{"name":"SLDF_UNALIAS_ON_SAVE","features":[109]},{"name":"SLDF_UNICODE","features":[109]},{"name":"SLDF_VALID","features":[109]},{"name":"SLGP_FLAGS","features":[109]},{"name":"SLGP_RAWPATH","features":[109]},{"name":"SLGP_RELATIVEPRIORITY","features":[109]},{"name":"SLGP_SHORTPATH","features":[109]},{"name":"SLGP_UNCPRIORITY","features":[109]},{"name":"SLOWAPPINFO","features":[1,109]},{"name":"SLR_ANY_MATCH","features":[109]},{"name":"SLR_FLAGS","features":[109]},{"name":"SLR_INVOKE_MSI","features":[109]},{"name":"SLR_KNOWNFOLDER","features":[109]},{"name":"SLR_MACHINE_IN_LOCAL_TARGET","features":[109]},{"name":"SLR_NOLINKINFO","features":[109]},{"name":"SLR_NONE","features":[109]},{"name":"SLR_NOSEARCH","features":[109]},{"name":"SLR_NOTRACK","features":[109]},{"name":"SLR_NOUPDATE","features":[109]},{"name":"SLR_NO_OBJECT_ID","features":[109]},{"name":"SLR_NO_UI","features":[109]},{"name":"SLR_NO_UI_WITH_MSG_PUMP","features":[109]},{"name":"SLR_OFFER_DELETE_WITHOUT_FILE","features":[109]},{"name":"SLR_UPDATE","features":[109]},{"name":"SLR_UPDATE_MACHINE_AND_SID","features":[109]},{"name":"SMAE_CONTRACTED","features":[109]},{"name":"SMAE_EXPANDED","features":[109]},{"name":"SMAE_USER","features":[109]},{"name":"SMAE_VALID","features":[109]},{"name":"SMCSHCHANGENOTIFYSTRUCT","features":[219]},{"name":"SMC_AUTOEXPANDCHANGE","features":[109]},{"name":"SMC_CHEVRONEXPAND","features":[109]},{"name":"SMC_CHEVRONGETTIP","features":[109]},{"name":"SMC_CREATE","features":[109]},{"name":"SMC_DEFAULTICON","features":[109]},{"name":"SMC_DEMOTE","features":[109]},{"name":"SMC_DISPLAYCHEVRONTIP","features":[109]},{"name":"SMC_EXITMENU","features":[109]},{"name":"SMC_GETAUTOEXPANDSTATE","features":[109]},{"name":"SMC_GETBKCONTEXTMENU","features":[109]},{"name":"SMC_GETCONTEXTMENUMODIFIER","features":[109]},{"name":"SMC_GETINFO","features":[109]},{"name":"SMC_GETOBJECT","features":[109]},{"name":"SMC_GETSFINFO","features":[109]},{"name":"SMC_GETSFOBJECT","features":[109]},{"name":"SMC_INITMENU","features":[109]},{"name":"SMC_NEWITEM","features":[109]},{"name":"SMC_OPEN","features":[109]},{"name":"SMC_PROMOTE","features":[109]},{"name":"SMC_REFRESH","features":[109]},{"name":"SMC_SETSFOBJECT","features":[109]},{"name":"SMC_SFDDRESTRICTED","features":[109]},{"name":"SMC_SFEXEC","features":[109]},{"name":"SMC_SFEXEC_MIDDLE","features":[109]},{"name":"SMC_SFSELECTITEM","features":[109]},{"name":"SMC_SHCHANGENOTIFY","features":[109]},{"name":"SMDATA","features":[1,219,50]},{"name":"SMDM_HMENU","features":[109]},{"name":"SMDM_SHELLFOLDER","features":[109]},{"name":"SMDM_TOOLBAR","features":[109]},{"name":"SMIF_ACCELERATOR","features":[109]},{"name":"SMIF_ALTSTATE","features":[109]},{"name":"SMIF_CHECKED","features":[109]},{"name":"SMIF_DEMOTED","features":[109]},{"name":"SMIF_DISABLED","features":[109]},{"name":"SMIF_DRAGNDROP","features":[109]},{"name":"SMIF_DROPCASCADE","features":[109]},{"name":"SMIF_DROPTARGET","features":[109]},{"name":"SMIF_HIDDEN","features":[109]},{"name":"SMIF_ICON","features":[109]},{"name":"SMIF_NEW","features":[109]},{"name":"SMIF_SUBMENU","features":[109]},{"name":"SMIF_TRACKPOPUP","features":[109]},{"name":"SMIM_FLAGS","features":[109]},{"name":"SMIM_ICON","features":[109]},{"name":"SMIM_TYPE","features":[109]},{"name":"SMINFO","features":[109]},{"name":"SMINFOFLAGS","features":[109]},{"name":"SMINFOMASK","features":[109]},{"name":"SMINFOTYPE","features":[109]},{"name":"SMINIT_AUTOEXPAND","features":[109]},{"name":"SMINIT_AUTOTOOLTIP","features":[109]},{"name":"SMINIT_CACHED","features":[109]},{"name":"SMINIT_DEFAULT","features":[109]},{"name":"SMINIT_DROPONCONTAINER","features":[109]},{"name":"SMINIT_HORIZONTAL","features":[109]},{"name":"SMINIT_RESTRICT_DRAGDROP","features":[109]},{"name":"SMINIT_TOPLEVEL","features":[109]},{"name":"SMINIT_VERTICAL","features":[109]},{"name":"SMINV_ID","features":[109]},{"name":"SMINV_REFRESH","features":[109]},{"name":"SMIT_SEPARATOR","features":[109]},{"name":"SMIT_STRING","features":[109]},{"name":"SMSET_BOTTOM","features":[109]},{"name":"SMSET_DONTOWN","features":[109]},{"name":"SMSET_TOP","features":[109]},{"name":"SORTCOLUMN","features":[60]},{"name":"SORTDIRECTION","features":[109]},{"name":"SORT_ASCENDING","features":[109]},{"name":"SORT_DESCENDING","features":[109]},{"name":"SORT_ORDER_TYPE","features":[109]},{"name":"SOT_DEFAULT","features":[109]},{"name":"SOT_IGNORE_FOLDERNESS","features":[109]},{"name":"SPACTION","features":[109]},{"name":"SPACTION_APPLYINGATTRIBS","features":[109]},{"name":"SPACTION_CALCULATING","features":[109]},{"name":"SPACTION_COPYING","features":[109]},{"name":"SPACTION_COPY_MOVING","features":[109]},{"name":"SPACTION_DELETING","features":[109]},{"name":"SPACTION_DOWNLOADING","features":[109]},{"name":"SPACTION_FORMATTING","features":[109]},{"name":"SPACTION_MOVING","features":[109]},{"name":"SPACTION_NONE","features":[109]},{"name":"SPACTION_RECYCLING","features":[109]},{"name":"SPACTION_RENAMING","features":[109]},{"name":"SPACTION_SEARCHING_FILES","features":[109]},{"name":"SPACTION_SEARCHING_INTERNET","features":[109]},{"name":"SPACTION_UPLOADING","features":[109]},{"name":"SPBEGINF_AUTOTIME","features":[109]},{"name":"SPBEGINF_MARQUEEPROGRESS","features":[109]},{"name":"SPBEGINF_NOCANCELBUTTON","features":[109]},{"name":"SPBEGINF_NOPROGRESSBAR","features":[109]},{"name":"SPBEGINF_NORMAL","features":[109]},{"name":"SPFF_CREATED_ON_THIS_DEVICE","features":[109]},{"name":"SPFF_DOWNLOAD_BY_DEFAULT","features":[109]},{"name":"SPFF_NONE","features":[109]},{"name":"SPINITF_MODAL","features":[109]},{"name":"SPINITF_NOMINIMIZE","features":[109]},{"name":"SPINITF_NORMAL","features":[109]},{"name":"SPMODE_BROWSER","features":[109]},{"name":"SPMODE_DBMON","features":[109]},{"name":"SPMODE_DEBUGBREAK","features":[109]},{"name":"SPMODE_DEBUGOUT","features":[109]},{"name":"SPMODE_EVENT","features":[109]},{"name":"SPMODE_EVENTTRACE","features":[109]},{"name":"SPMODE_FLUSH","features":[109]},{"name":"SPMODE_FORMATTEXT","features":[109]},{"name":"SPMODE_MEMWATCH","features":[109]},{"name":"SPMODE_MSGTRACE","features":[109]},{"name":"SPMODE_MSVM","features":[109]},{"name":"SPMODE_MULTISTOP","features":[109]},{"name":"SPMODE_PERFTAGS","features":[109]},{"name":"SPMODE_PROFILE","features":[109]},{"name":"SPMODE_SHELL","features":[109]},{"name":"SPMODE_TEST","features":[109]},{"name":"SPTEXT","features":[109]},{"name":"SPTEXT_ACTIONDESCRIPTION","features":[109]},{"name":"SPTEXT_ACTIONDETAIL","features":[109]},{"name":"SRRF_NOEXPAND","features":[109]},{"name":"SRRF_NOVIRT","features":[109]},{"name":"SRRF_RM_ANY","features":[109]},{"name":"SRRF_RM_NORMAL","features":[109]},{"name":"SRRF_RM_SAFE","features":[109]},{"name":"SRRF_RM_SAFENETWORK","features":[109]},{"name":"SRRF_RT_ANY","features":[109]},{"name":"SRRF_RT_REG_BINARY","features":[109]},{"name":"SRRF_RT_REG_DWORD","features":[109]},{"name":"SRRF_RT_REG_EXPAND_SZ","features":[109]},{"name":"SRRF_RT_REG_MULTI_SZ","features":[109]},{"name":"SRRF_RT_REG_NONE","features":[109]},{"name":"SRRF_RT_REG_QWORD","features":[109]},{"name":"SRRF_RT_REG_SZ","features":[109]},{"name":"SRRF_ZEROONFAILURE","features":[109]},{"name":"SSF_AUTOCHECKSELECT","features":[109]},{"name":"SSF_DESKTOPHTML","features":[109]},{"name":"SSF_DONTPRETTYPATH","features":[109]},{"name":"SSF_DOUBLECLICKINWEBVIEW","features":[109]},{"name":"SSF_FILTER","features":[109]},{"name":"SSF_HIDDENFILEEXTS","features":[109]},{"name":"SSF_HIDEICONS","features":[109]},{"name":"SSF_ICONSONLY","features":[109]},{"name":"SSF_MAPNETDRVBUTTON","features":[109]},{"name":"SSF_MASK","features":[109]},{"name":"SSF_NOCONFIRMRECYCLE","features":[109]},{"name":"SSF_NONETCRAWLING","features":[109]},{"name":"SSF_SEPPROCESS","features":[109]},{"name":"SSF_SERVERADMINUI","features":[109]},{"name":"SSF_SHOWALLOBJECTS","features":[109]},{"name":"SSF_SHOWATTRIBCOL","features":[109]},{"name":"SSF_SHOWCOMPCOLOR","features":[109]},{"name":"SSF_SHOWEXTENSIONS","features":[109]},{"name":"SSF_SHOWINFOTIP","features":[109]},{"name":"SSF_SHOWSTARTPAGE","features":[109]},{"name":"SSF_SHOWSTATUSBAR","features":[109]},{"name":"SSF_SHOWSUPERHIDDEN","features":[109]},{"name":"SSF_SHOWSYSFILES","features":[109]},{"name":"SSF_SHOWTYPEOVERLAY","features":[109]},{"name":"SSF_SORTCOLUMNS","features":[109]},{"name":"SSF_STARTPANELON","features":[109]},{"name":"SSF_WEBVIEW","features":[109]},{"name":"SSF_WIN95CLASSIC","features":[109]},{"name":"SSM_CLEAR","features":[109]},{"name":"SSM_REFRESH","features":[109]},{"name":"SSM_SET","features":[109]},{"name":"SSM_UPDATE","features":[109]},{"name":"STGOP","features":[109]},{"name":"STGOP_APPLYPROPERTIES","features":[109]},{"name":"STGOP_COPY","features":[109]},{"name":"STGOP_MOVE","features":[109]},{"name":"STGOP_NEW","features":[109]},{"name":"STGOP_REMOVE","features":[109]},{"name":"STGOP_RENAME","features":[109]},{"name":"STGOP_SYNC","features":[109]},{"name":"STIF_DEFAULT","features":[109]},{"name":"STIF_SUPPORT_HEX","features":[109]},{"name":"STORAGE_PROVIDER_FILE_FLAGS","features":[109]},{"name":"STORE_E_NEWER_VERSION_AVAILABLE","features":[109]},{"name":"STPFLAG","features":[109]},{"name":"STPF_NONE","features":[109]},{"name":"STPF_USEAPPPEEKALWAYS","features":[109]},{"name":"STPF_USEAPPPEEKWHENACTIVE","features":[109]},{"name":"STPF_USEAPPTHUMBNAILALWAYS","features":[109]},{"name":"STPF_USEAPPTHUMBNAILWHENACTIVE","features":[109]},{"name":"STR_AVOID_DRIVE_RESTRICTION_POLICY","features":[109]},{"name":"STR_BIND_DELEGATE_CREATE_OBJECT","features":[109]},{"name":"STR_BIND_FOLDERS_READ_ONLY","features":[109]},{"name":"STR_BIND_FOLDER_ENUM_MODE","features":[109]},{"name":"STR_BIND_FORCE_FOLDER_SHORTCUT_RESOLVE","features":[109]},{"name":"STR_DONT_PARSE_RELATIVE","features":[109]},{"name":"STR_DONT_RESOLVE_LINK","features":[109]},{"name":"STR_ENUM_ITEMS_FLAGS","features":[109]},{"name":"STR_FILE_SYS_BIND_DATA","features":[109]},{"name":"STR_FILE_SYS_BIND_DATA_WIN7_FORMAT","features":[109]},{"name":"STR_GET_ASYNC_HANDLER","features":[109]},{"name":"STR_GPS_BESTEFFORT","features":[109]},{"name":"STR_GPS_DELAYCREATION","features":[109]},{"name":"STR_GPS_FASTPROPERTIESONLY","features":[109]},{"name":"STR_GPS_HANDLERPROPERTIESONLY","features":[109]},{"name":"STR_GPS_NO_OPLOCK","features":[109]},{"name":"STR_GPS_OPENSLOWITEM","features":[109]},{"name":"STR_INTERNAL_NAVIGATE","features":[109]},{"name":"STR_INTERNETFOLDER_PARSE_ONLY_URLMON_BINDABLE","features":[109]},{"name":"STR_ITEM_CACHE_CONTEXT","features":[109]},{"name":"STR_MYDOCS_CLSID","features":[109]},{"name":"STR_NO_VALIDATE_FILENAME_CHARS","features":[109]},{"name":"STR_PARSE_ALLOW_INTERNET_SHELL_FOLDERS","features":[109]},{"name":"STR_PARSE_AND_CREATE_ITEM","features":[109]},{"name":"STR_PARSE_DONT_REQUIRE_VALIDATED_URLS","features":[109]},{"name":"STR_PARSE_EXPLICIT_ASSOCIATION_SUCCESSFUL","features":[109]},{"name":"STR_PARSE_PARTIAL_IDLIST","features":[109]},{"name":"STR_PARSE_PREFER_FOLDER_BROWSING","features":[109]},{"name":"STR_PARSE_PREFER_WEB_BROWSING","features":[109]},{"name":"STR_PARSE_PROPERTYSTORE","features":[109]},{"name":"STR_PARSE_SHELL_PROTOCOL_TO_FILE_OBJECTS","features":[109]},{"name":"STR_PARSE_SHOW_NET_DIAGNOSTICS_UI","features":[109]},{"name":"STR_PARSE_SKIP_NET_CACHE","features":[109]},{"name":"STR_PARSE_TRANSLATE_ALIASES","features":[109]},{"name":"STR_PARSE_WITH_EXPLICIT_ASSOCAPP","features":[109]},{"name":"STR_PARSE_WITH_EXPLICIT_PROGID","features":[109]},{"name":"STR_PARSE_WITH_PROPERTIES","features":[109]},{"name":"STR_PROPERTYBAG_PARAM","features":[109]},{"name":"STR_REFERRER_IDENTIFIER","features":[109]},{"name":"STR_SKIP_BINDING_CLSID","features":[109]},{"name":"STR_STORAGEITEM_CREATION_FLAGS","features":[109]},{"name":"STR_TAB_REUSE_IDENTIFIER","features":[109]},{"name":"STR_TRACK_CLSID","features":[109]},{"name":"SUBCLASSPROC","features":[1,109]},{"name":"SV2CVW2_PARAMS","features":[1,109]},{"name":"SV3CVW3_DEFAULT","features":[109]},{"name":"SV3CVW3_FORCEFOLDERFLAGS","features":[109]},{"name":"SV3CVW3_FORCEVIEWMODE","features":[109]},{"name":"SV3CVW3_NONINTERACTIVE","features":[109]},{"name":"SVGIO_ALLVIEW","features":[109]},{"name":"SVGIO_BACKGROUND","features":[109]},{"name":"SVGIO_CHECKED","features":[109]},{"name":"SVGIO_FLAG_VIEWORDER","features":[109]},{"name":"SVGIO_SELECTION","features":[109]},{"name":"SVGIO_TYPE_MASK","features":[109]},{"name":"SVSI_CHECK","features":[109]},{"name":"SVSI_CHECK2","features":[109]},{"name":"SVSI_DESELECT","features":[109]},{"name":"SVSI_DESELECTOTHERS","features":[109]},{"name":"SVSI_EDIT","features":[109]},{"name":"SVSI_ENSUREVISIBLE","features":[109]},{"name":"SVSI_FOCUSED","features":[109]},{"name":"SVSI_KEYBOARDSELECT","features":[109]},{"name":"SVSI_NOTAKEFOCUS","features":[109]},{"name":"SVSI_POSITIONITEM","features":[109]},{"name":"SVSI_SELECT","features":[109]},{"name":"SVSI_SELECTIONMARK","features":[109]},{"name":"SVSI_TRANSLATEPT","features":[109]},{"name":"SVUIA_ACTIVATE_FOCUS","features":[109]},{"name":"SVUIA_ACTIVATE_NOFOCUS","features":[109]},{"name":"SVUIA_DEACTIVATE","features":[109]},{"name":"SVUIA_INPLACEACTIVATE","features":[109]},{"name":"SVUIA_STATUS","features":[109]},{"name":"SWC_3RDPARTY","features":[109]},{"name":"SWC_BROWSER","features":[109]},{"name":"SWC_CALLBACK","features":[109]},{"name":"SWC_DESKTOP","features":[109]},{"name":"SWC_EXPLORER","features":[109]},{"name":"SWFO_COOKIEPASSED","features":[109]},{"name":"SWFO_INCLUDEPENDING","features":[109]},{"name":"SWFO_NEEDDISPATCH","features":[109]},{"name":"SYNCMGRERRORFLAGS","features":[109]},{"name":"SYNCMGRERRORFLAG_ENABLEJUMPTEXT","features":[109]},{"name":"SYNCMGRFLAG","features":[109]},{"name":"SYNCMGRFLAG_CONNECT","features":[109]},{"name":"SYNCMGRFLAG_EVENTMASK","features":[109]},{"name":"SYNCMGRFLAG_IDLE","features":[109]},{"name":"SYNCMGRFLAG_INVOKE","features":[109]},{"name":"SYNCMGRFLAG_MANUAL","features":[109]},{"name":"SYNCMGRFLAG_MAYBOTHERUSER","features":[109]},{"name":"SYNCMGRFLAG_PENDINGDISCONNECT","features":[109]},{"name":"SYNCMGRFLAG_SCHEDULED","features":[109]},{"name":"SYNCMGRFLAG_SETTINGS","features":[109]},{"name":"SYNCMGRHANDLERFLAGS","features":[109]},{"name":"SYNCMGRHANDLERFLAG_MASK","features":[109]},{"name":"SYNCMGRHANDLERINFO","features":[109,50]},{"name":"SYNCMGRHANDLER_ALWAYSLISTHANDLER","features":[109]},{"name":"SYNCMGRHANDLER_HASPROPERTIES","features":[109]},{"name":"SYNCMGRHANDLER_HIDDEN","features":[109]},{"name":"SYNCMGRHANDLER_MAYESTABLISHCONNECTION","features":[109]},{"name":"SYNCMGRINVOKEFLAGS","features":[109]},{"name":"SYNCMGRINVOKE_MINIMIZED","features":[109]},{"name":"SYNCMGRINVOKE_STARTSYNC","features":[109]},{"name":"SYNCMGRITEM","features":[1,109,50]},{"name":"SYNCMGRITEMFLAGS","features":[109]},{"name":"SYNCMGRITEMSTATE","features":[109]},{"name":"SYNCMGRITEMSTATE_CHECKED","features":[109]},{"name":"SYNCMGRITEMSTATE_UNCHECKED","features":[109]},{"name":"SYNCMGRITEM_HASPROPERTIES","features":[109]},{"name":"SYNCMGRITEM_HIDDEN","features":[109]},{"name":"SYNCMGRITEM_ITEMFLAGMASK","features":[109]},{"name":"SYNCMGRITEM_LASTUPDATETIME","features":[109]},{"name":"SYNCMGRITEM_MAYDELETEITEM","features":[109]},{"name":"SYNCMGRITEM_ROAMINGUSER","features":[109]},{"name":"SYNCMGRITEM_TEMPORARY","features":[109]},{"name":"SYNCMGRLOGERRORINFO","features":[109]},{"name":"SYNCMGRLOGERROR_ERRORFLAGS","features":[109]},{"name":"SYNCMGRLOGERROR_ERRORID","features":[109]},{"name":"SYNCMGRLOGERROR_ITEMID","features":[109]},{"name":"SYNCMGRLOGLEVEL","features":[109]},{"name":"SYNCMGRLOGLEVEL_ERROR","features":[109]},{"name":"SYNCMGRLOGLEVEL_INFORMATION","features":[109]},{"name":"SYNCMGRLOGLEVEL_LOGLEVELMAX","features":[109]},{"name":"SYNCMGRLOGLEVEL_WARNING","features":[109]},{"name":"SYNCMGRPROGRESSITEM","features":[109]},{"name":"SYNCMGRPROGRESSITEM_MAXVALUE","features":[109]},{"name":"SYNCMGRPROGRESSITEM_PROGVALUE","features":[109]},{"name":"SYNCMGRPROGRESSITEM_STATUSTEXT","features":[109]},{"name":"SYNCMGRPROGRESSITEM_STATUSTYPE","features":[109]},{"name":"SYNCMGRREGISTERFLAGS","features":[109]},{"name":"SYNCMGRREGISTERFLAGS_MASK","features":[109]},{"name":"SYNCMGRREGISTERFLAG_CONNECT","features":[109]},{"name":"SYNCMGRREGISTERFLAG_IDLE","features":[109]},{"name":"SYNCMGRREGISTERFLAG_PENDINGDISCONNECT","features":[109]},{"name":"SYNCMGRSTATUS","features":[109]},{"name":"SYNCMGRSTATUS_DELETED","features":[109]},{"name":"SYNCMGRSTATUS_FAILED","features":[109]},{"name":"SYNCMGRSTATUS_PAUSED","features":[109]},{"name":"SYNCMGRSTATUS_PENDING","features":[109]},{"name":"SYNCMGRSTATUS_RESUMING","features":[109]},{"name":"SYNCMGRSTATUS_SKIPPED","features":[109]},{"name":"SYNCMGRSTATUS_STOPPED","features":[109]},{"name":"SYNCMGRSTATUS_SUCCEEDED","features":[109]},{"name":"SYNCMGRSTATUS_UPDATING","features":[109]},{"name":"SYNCMGRSTATUS_UPDATING_INDETERMINATE","features":[109]},{"name":"SYNCMGR_CANCEL_REQUEST","features":[109]},{"name":"SYNCMGR_CF_NONE","features":[109]},{"name":"SYNCMGR_CF_NOUI","features":[109]},{"name":"SYNCMGR_CF_NOWAIT","features":[109]},{"name":"SYNCMGR_CF_VALID","features":[109]},{"name":"SYNCMGR_CF_WAIT","features":[109]},{"name":"SYNCMGR_CIT_DELETED","features":[109]},{"name":"SYNCMGR_CIT_UPDATED","features":[109]},{"name":"SYNCMGR_CONFLICT_ID_INFO","features":[41,109]},{"name":"SYNCMGR_CONFLICT_ITEM_TYPE","features":[109]},{"name":"SYNCMGR_CONTROL_FLAGS","features":[109]},{"name":"SYNCMGR_CR_CANCEL_ALL","features":[109]},{"name":"SYNCMGR_CR_CANCEL_ITEM","features":[109]},{"name":"SYNCMGR_CR_MAX","features":[109]},{"name":"SYNCMGR_CR_NONE","features":[109]},{"name":"SYNCMGR_EF_NONE","features":[109]},{"name":"SYNCMGR_EF_VALID","features":[109]},{"name":"SYNCMGR_EL_ERROR","features":[109]},{"name":"SYNCMGR_EL_INFORMATION","features":[109]},{"name":"SYNCMGR_EL_MAX","features":[109]},{"name":"SYNCMGR_EL_WARNING","features":[109]},{"name":"SYNCMGR_EVENT_FLAGS","features":[109]},{"name":"SYNCMGR_EVENT_LEVEL","features":[109]},{"name":"SYNCMGR_HANDLER_CAPABILITIES","features":[109]},{"name":"SYNCMGR_HANDLER_POLICIES","features":[109]},{"name":"SYNCMGR_HANDLER_TYPE","features":[109]},{"name":"SYNCMGR_HCM_CAN_BROWSE_CONTENT","features":[109]},{"name":"SYNCMGR_HCM_CAN_SHOW_SCHEDULE","features":[109]},{"name":"SYNCMGR_HCM_CONFLICT_STORE","features":[109]},{"name":"SYNCMGR_HCM_EVENT_STORE","features":[109]},{"name":"SYNCMGR_HCM_NONE","features":[109]},{"name":"SYNCMGR_HCM_PROVIDES_ICON","features":[109]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ACTIVATE","features":[109]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DEACTIVATE","features":[109]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DISABLE","features":[109]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ENABLE","features":[109]},{"name":"SYNCMGR_HCM_SUPPORTS_CONCURRENT_SESSIONS","features":[109]},{"name":"SYNCMGR_HCM_VALID_MASK","features":[109]},{"name":"SYNCMGR_HPM_BACKGROUND_SYNC_ONLY","features":[109]},{"name":"SYNCMGR_HPM_DISABLE_BROWSE","features":[109]},{"name":"SYNCMGR_HPM_DISABLE_DISABLE","features":[109]},{"name":"SYNCMGR_HPM_DISABLE_ENABLE","features":[109]},{"name":"SYNCMGR_HPM_DISABLE_SCHEDULE","features":[109]},{"name":"SYNCMGR_HPM_DISABLE_START_SYNC","features":[109]},{"name":"SYNCMGR_HPM_DISABLE_STOP_SYNC","features":[109]},{"name":"SYNCMGR_HPM_HIDDEN_BY_DEFAULT","features":[109]},{"name":"SYNCMGR_HPM_NONE","features":[109]},{"name":"SYNCMGR_HPM_PREVENT_ACTIVATE","features":[109]},{"name":"SYNCMGR_HPM_PREVENT_DEACTIVATE","features":[109]},{"name":"SYNCMGR_HPM_PREVENT_DISABLE","features":[109]},{"name":"SYNCMGR_HPM_PREVENT_ENABLE","features":[109]},{"name":"SYNCMGR_HPM_PREVENT_START_SYNC","features":[109]},{"name":"SYNCMGR_HPM_PREVENT_STOP_SYNC","features":[109]},{"name":"SYNCMGR_HPM_VALID_MASK","features":[109]},{"name":"SYNCMGR_HT_APPLICATION","features":[109]},{"name":"SYNCMGR_HT_COMPUTER","features":[109]},{"name":"SYNCMGR_HT_DEVICE","features":[109]},{"name":"SYNCMGR_HT_FOLDER","features":[109]},{"name":"SYNCMGR_HT_MAX","features":[109]},{"name":"SYNCMGR_HT_MIN","features":[109]},{"name":"SYNCMGR_HT_SERVICE","features":[109]},{"name":"SYNCMGR_HT_UNSPECIFIED","features":[109]},{"name":"SYNCMGR_ICM_CAN_BROWSE_CONTENT","features":[109]},{"name":"SYNCMGR_ICM_CAN_DELETE","features":[109]},{"name":"SYNCMGR_ICM_CONFLICT_STORE","features":[109]},{"name":"SYNCMGR_ICM_EVENT_STORE","features":[109]},{"name":"SYNCMGR_ICM_NONE","features":[109]},{"name":"SYNCMGR_ICM_PROVIDES_ICON","features":[109]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DELETE","features":[109]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DISABLE","features":[109]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_ENABLE","features":[109]},{"name":"SYNCMGR_ICM_VALID_MASK","features":[109]},{"name":"SYNCMGR_IPM_DISABLE_BROWSE","features":[109]},{"name":"SYNCMGR_IPM_DISABLE_DELETE","features":[109]},{"name":"SYNCMGR_IPM_DISABLE_DISABLE","features":[109]},{"name":"SYNCMGR_IPM_DISABLE_ENABLE","features":[109]},{"name":"SYNCMGR_IPM_DISABLE_START_SYNC","features":[109]},{"name":"SYNCMGR_IPM_DISABLE_STOP_SYNC","features":[109]},{"name":"SYNCMGR_IPM_HIDDEN_BY_DEFAULT","features":[109]},{"name":"SYNCMGR_IPM_NONE","features":[109]},{"name":"SYNCMGR_IPM_PREVENT_DISABLE","features":[109]},{"name":"SYNCMGR_IPM_PREVENT_ENABLE","features":[109]},{"name":"SYNCMGR_IPM_PREVENT_START_SYNC","features":[109]},{"name":"SYNCMGR_IPM_PREVENT_STOP_SYNC","features":[109]},{"name":"SYNCMGR_IPM_VALID_MASK","features":[109]},{"name":"SYNCMGR_ITEM_CAPABILITIES","features":[109]},{"name":"SYNCMGR_ITEM_POLICIES","features":[109]},{"name":"SYNCMGR_OBJECTID_BrowseContent","features":[109]},{"name":"SYNCMGR_OBJECTID_ConflictStore","features":[109]},{"name":"SYNCMGR_OBJECTID_EventLinkClick","features":[109]},{"name":"SYNCMGR_OBJECTID_EventStore","features":[109]},{"name":"SYNCMGR_OBJECTID_Icon","features":[109]},{"name":"SYNCMGR_OBJECTID_QueryBeforeActivate","features":[109]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDeactivate","features":[109]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDelete","features":[109]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDisable","features":[109]},{"name":"SYNCMGR_OBJECTID_QueryBeforeEnable","features":[109]},{"name":"SYNCMGR_OBJECTID_ShowSchedule","features":[109]},{"name":"SYNCMGR_PC_KEEP_MULTIPLE","features":[109]},{"name":"SYNCMGR_PC_KEEP_ONE","features":[109]},{"name":"SYNCMGR_PC_KEEP_RECENT","features":[109]},{"name":"SYNCMGR_PC_NO_CHOICE","features":[109]},{"name":"SYNCMGR_PC_REMOVE_FROM_SYNC_SET","features":[109]},{"name":"SYNCMGR_PC_SKIP","features":[109]},{"name":"SYNCMGR_PNS_CANCEL","features":[109]},{"name":"SYNCMGR_PNS_CONTINUE","features":[109]},{"name":"SYNCMGR_PNS_DEFAULT","features":[109]},{"name":"SYNCMGR_PRESENTER_CHOICE","features":[109]},{"name":"SYNCMGR_PRESENTER_NEXT_STEP","features":[109]},{"name":"SYNCMGR_PROGRESS_STATUS","features":[109]},{"name":"SYNCMGR_PS_CANCELED","features":[109]},{"name":"SYNCMGR_PS_DISCONNECTED","features":[109]},{"name":"SYNCMGR_PS_FAILED","features":[109]},{"name":"SYNCMGR_PS_MAX","features":[109]},{"name":"SYNCMGR_PS_SUCCEEDED","features":[109]},{"name":"SYNCMGR_PS_UPDATING","features":[109]},{"name":"SYNCMGR_PS_UPDATING_INDETERMINATE","features":[109]},{"name":"SYNCMGR_RA_KEEPOTHER","features":[109]},{"name":"SYNCMGR_RA_KEEPRECENT","features":[109]},{"name":"SYNCMGR_RA_KEEP_MULTIPLE","features":[109]},{"name":"SYNCMGR_RA_KEEP_SINGLE","features":[109]},{"name":"SYNCMGR_RA_REMOVEFROMSYNCSET","features":[109]},{"name":"SYNCMGR_RA_VALID","features":[109]},{"name":"SYNCMGR_RESOLUTION_ABILITIES","features":[109]},{"name":"SYNCMGR_RESOLUTION_FEEDBACK","features":[109]},{"name":"SYNCMGR_RF_CANCEL","features":[109]},{"name":"SYNCMGR_RF_CONTINUE","features":[109]},{"name":"SYNCMGR_RF_REFRESH","features":[109]},{"name":"SYNCMGR_SCF_IGNORE_IF_ALREADY_SYNCING","features":[109]},{"name":"SYNCMGR_SCF_NONE","features":[109]},{"name":"SYNCMGR_SCF_VALID","features":[109]},{"name":"SYNCMGR_SYNC_CONTROL_FLAGS","features":[109]},{"name":"SYNCMGR_UPDATE_REASON","features":[109]},{"name":"SYNCMGR_UR_ADDED","features":[109]},{"name":"SYNCMGR_UR_CHANGED","features":[109]},{"name":"SYNCMGR_UR_MAX","features":[109]},{"name":"SYNCMGR_UR_REMOVED","features":[109]},{"name":"SZ_CONTENTTYPE_CDF","features":[109]},{"name":"SZ_CONTENTTYPE_CDFA","features":[109]},{"name":"SZ_CONTENTTYPE_CDFW","features":[109]},{"name":"SZ_CONTENTTYPE_HTML","features":[109]},{"name":"SZ_CONTENTTYPE_HTMLA","features":[109]},{"name":"SZ_CONTENTTYPE_HTMLW","features":[109]},{"name":"S_SYNCMGR_CANCELALL","features":[109]},{"name":"S_SYNCMGR_CANCELITEM","features":[109]},{"name":"S_SYNCMGR_ENUMITEMS","features":[109]},{"name":"S_SYNCMGR_ITEMDELETED","features":[109]},{"name":"S_SYNCMGR_MISSINGITEMS","features":[109]},{"name":"S_SYNCMGR_RETRYSYNC","features":[109]},{"name":"ScheduledTasks","features":[109]},{"name":"SearchFolderItemFactory","features":[109]},{"name":"SecureLockIconConstants","features":[109]},{"name":"SelectedItemCount_Property_GUID","features":[109]},{"name":"SetCurrentProcessExplicitAppUserModelID","features":[109]},{"name":"SetMenuContextHelpId","features":[1,109,50]},{"name":"SetWindowContextHelpId","features":[1,109]},{"name":"SetWindowSubclass","features":[1,109]},{"name":"SharedBitmap","features":[109]},{"name":"SharingConfigurationManager","features":[109]},{"name":"Shell","features":[109]},{"name":"ShellAboutA","features":[1,109,50]},{"name":"ShellAboutW","features":[1,109,50]},{"name":"ShellBrowserWindow","features":[109]},{"name":"ShellDesktop","features":[109]},{"name":"ShellDispatchInproc","features":[109]},{"name":"ShellExecuteA","features":[1,109,50]},{"name":"ShellExecuteExA","features":[1,49,109]},{"name":"ShellExecuteExW","features":[1,49,109]},{"name":"ShellExecuteW","features":[1,109,50]},{"name":"ShellFSFolder","features":[109]},{"name":"ShellFolderItem","features":[109]},{"name":"ShellFolderView","features":[109]},{"name":"ShellFolderViewOC","features":[109]},{"name":"ShellFolderViewOptions","features":[109]},{"name":"ShellImageDataFactory","features":[109]},{"name":"ShellItem","features":[109]},{"name":"ShellLibrary","features":[109]},{"name":"ShellLink","features":[109]},{"name":"ShellLinkObject","features":[109]},{"name":"ShellMessageBoxA","features":[1,109,50]},{"name":"ShellMessageBoxW","features":[1,109,50]},{"name":"ShellNameSpace","features":[109]},{"name":"ShellSpecialFolderConstants","features":[109]},{"name":"ShellUIHelper","features":[109]},{"name":"ShellWindowFindWindowOptions","features":[109]},{"name":"ShellWindowTypeConstants","features":[109]},{"name":"ShellWindows","features":[109]},{"name":"Shell_GetCachedImageIndex","features":[109]},{"name":"Shell_GetCachedImageIndexA","features":[109]},{"name":"Shell_GetCachedImageIndexW","features":[109]},{"name":"Shell_GetImageLists","features":[1,40,109]},{"name":"Shell_MergeMenus","features":[109,50]},{"name":"Shell_NotifyIconA","features":[1,109,50]},{"name":"Shell_NotifyIconGetRect","features":[1,109]},{"name":"Shell_NotifyIconW","features":[1,109,50]},{"name":"ShowInputPaneAnimationCoordinator","features":[109]},{"name":"SignalFileOpen","features":[1,219]},{"name":"SimpleConflictPresenter","features":[109]},{"name":"SizeCategorizer","features":[109]},{"name":"SmartcardCredentialProvider","features":[109]},{"name":"SmartcardPinProvider","features":[109]},{"name":"SmartcardReaderSelectionProvider","features":[109]},{"name":"SmartcardWinRTProvider","features":[109]},{"name":"SoftwareUpdateMessageBox","features":[1,157,109]},{"name":"StartMenuPin","features":[109]},{"name":"StgMakeUniqueName","features":[109]},{"name":"StorageProviderBanners","features":[109]},{"name":"StrCSpnA","features":[109]},{"name":"StrCSpnIA","features":[109]},{"name":"StrCSpnIW","features":[109]},{"name":"StrCSpnW","features":[109]},{"name":"StrCatBuffA","features":[109]},{"name":"StrCatBuffW","features":[109]},{"name":"StrCatChainW","features":[109]},{"name":"StrCatW","features":[109]},{"name":"StrChrA","features":[109]},{"name":"StrChrIA","features":[109]},{"name":"StrChrIW","features":[109]},{"name":"StrChrNIW","features":[109]},{"name":"StrChrNW","features":[109]},{"name":"StrChrW","features":[109]},{"name":"StrCmpCA","features":[109]},{"name":"StrCmpCW","features":[109]},{"name":"StrCmpICA","features":[109]},{"name":"StrCmpICW","features":[109]},{"name":"StrCmpIW","features":[109]},{"name":"StrCmpLogicalW","features":[109]},{"name":"StrCmpNA","features":[109]},{"name":"StrCmpNCA","features":[109]},{"name":"StrCmpNCW","features":[109]},{"name":"StrCmpNIA","features":[109]},{"name":"StrCmpNICA","features":[109]},{"name":"StrCmpNICW","features":[109]},{"name":"StrCmpNIW","features":[109]},{"name":"StrCmpNW","features":[109]},{"name":"StrCmpW","features":[109]},{"name":"StrCpyNW","features":[109]},{"name":"StrCpyW","features":[109]},{"name":"StrDupA","features":[109]},{"name":"StrDupW","features":[109]},{"name":"StrFormatByteSize64A","features":[109]},{"name":"StrFormatByteSizeA","features":[109]},{"name":"StrFormatByteSizeEx","features":[109]},{"name":"StrFormatByteSizeW","features":[109]},{"name":"StrFormatKBSizeA","features":[109]},{"name":"StrFormatKBSizeW","features":[109]},{"name":"StrFromTimeIntervalA","features":[109]},{"name":"StrFromTimeIntervalW","features":[109]},{"name":"StrIsIntlEqualA","features":[1,109]},{"name":"StrIsIntlEqualW","features":[1,109]},{"name":"StrNCatA","features":[109]},{"name":"StrNCatW","features":[109]},{"name":"StrPBrkA","features":[109]},{"name":"StrPBrkW","features":[109]},{"name":"StrRChrA","features":[109]},{"name":"StrRChrIA","features":[109]},{"name":"StrRChrIW","features":[109]},{"name":"StrRChrW","features":[109]},{"name":"StrRStrIA","features":[109]},{"name":"StrRStrIW","features":[109]},{"name":"StrRetToBSTR","features":[219]},{"name":"StrRetToBufA","features":[219]},{"name":"StrRetToBufW","features":[219]},{"name":"StrRetToStrA","features":[219]},{"name":"StrRetToStrW","features":[219]},{"name":"StrSpnA","features":[109]},{"name":"StrSpnW","features":[109]},{"name":"StrStrA","features":[109]},{"name":"StrStrIA","features":[109]},{"name":"StrStrIW","features":[109]},{"name":"StrStrNIW","features":[109]},{"name":"StrStrNW","features":[109]},{"name":"StrStrW","features":[109]},{"name":"StrToInt64ExA","features":[1,109]},{"name":"StrToInt64ExW","features":[1,109]},{"name":"StrToIntA","features":[109]},{"name":"StrToIntExA","features":[1,109]},{"name":"StrToIntExW","features":[1,109]},{"name":"StrToIntW","features":[109]},{"name":"StrTrimA","features":[1,109]},{"name":"StrTrimW","features":[1,109]},{"name":"SuspensionDependencyManager","features":[109]},{"name":"SyncMgr","features":[109]},{"name":"SyncMgrClient","features":[109]},{"name":"SyncMgrControl","features":[109]},{"name":"SyncMgrFolder","features":[109]},{"name":"SyncMgrScheduleWizard","features":[109]},{"name":"SyncResultsFolder","features":[109]},{"name":"SyncSetupFolder","features":[109]},{"name":"TBIF_APPEND","features":[109]},{"name":"TBIF_DEFAULT","features":[109]},{"name":"TBIF_INTERNETBAR","features":[109]},{"name":"TBIF_NOTOOLBAR","features":[109]},{"name":"TBIF_PREPEND","features":[109]},{"name":"TBIF_REPLACE","features":[109]},{"name":"TBIF_STANDARDTOOLBAR","features":[109]},{"name":"TBINFO","features":[109]},{"name":"TBPFLAG","features":[109]},{"name":"TBPF_ERROR","features":[109]},{"name":"TBPF_INDETERMINATE","features":[109]},{"name":"TBPF_NOPROGRESS","features":[109]},{"name":"TBPF_NORMAL","features":[109]},{"name":"TBPF_PAUSED","features":[109]},{"name":"THBF_DISABLED","features":[109]},{"name":"THBF_DISMISSONCLICK","features":[109]},{"name":"THBF_ENABLED","features":[109]},{"name":"THBF_HIDDEN","features":[109]},{"name":"THBF_NOBACKGROUND","features":[109]},{"name":"THBF_NONINTERACTIVE","features":[109]},{"name":"THBN_CLICKED","features":[109]},{"name":"THB_BITMAP","features":[109]},{"name":"THB_FLAGS","features":[109]},{"name":"THB_ICON","features":[109]},{"name":"THB_TOOLTIP","features":[109]},{"name":"THUMBBUTTON","features":[109,50]},{"name":"THUMBBUTTONFLAGS","features":[109]},{"name":"THUMBBUTTONMASK","features":[109]},{"name":"TITLEBARNAMELEN","features":[109]},{"name":"TI_BITMAP","features":[109]},{"name":"TI_FLAGS","features":[109]},{"name":"TI_JPEG","features":[109]},{"name":"TLEF_ABSOLUTE","features":[109]},{"name":"TLEF_EXCLUDE_ABOUT_PAGES","features":[109]},{"name":"TLEF_EXCLUDE_SUBFRAME_ENTRIES","features":[109]},{"name":"TLEF_INCLUDE_UNINVOKEABLE","features":[109]},{"name":"TLEF_RELATIVE_BACK","features":[109]},{"name":"TLEF_RELATIVE_FORE","features":[109]},{"name":"TLEF_RELATIVE_INCLUDE_CURRENT","features":[109]},{"name":"TLENUMF","features":[109]},{"name":"TLMENUF_BACK","features":[109]},{"name":"TLMENUF_FORE","features":[109]},{"name":"TLMENUF_INCLUDECURRENT","features":[109]},{"name":"TLOG_BACK","features":[109]},{"name":"TLOG_CURRENT","features":[109]},{"name":"TLOG_FORE","features":[109]},{"name":"TOOLBARITEM","features":[1,12,109]},{"name":"TRANSLATEURL_FL_GUESS_PROTOCOL","features":[109]},{"name":"TRANSLATEURL_FL_USE_DEFAULT_PROTOCOL","features":[109]},{"name":"TRANSLATEURL_IN_FLAGS","features":[109]},{"name":"TSF_ALLOW_DECRYPTION","features":[109]},{"name":"TSF_COPY_CREATION_TIME","features":[109]},{"name":"TSF_COPY_HARD_LINK","features":[109]},{"name":"TSF_COPY_LOCALIZED_NAME","features":[109]},{"name":"TSF_COPY_WRITE_TIME","features":[109]},{"name":"TSF_DELETE_RECYCLE_IF_POSSIBLE","features":[109]},{"name":"TSF_FAIL_EXIST","features":[109]},{"name":"TSF_MOVE_AS_COPY_DELETE","features":[109]},{"name":"TSF_NORMAL","features":[109]},{"name":"TSF_NO_SECURITY","features":[109]},{"name":"TSF_OVERWRITE_EXIST","features":[109]},{"name":"TSF_RENAME_EXIST","features":[109]},{"name":"TSF_SUSPEND_SHELLEVENTS","features":[109]},{"name":"TSF_USE_FULL_ACCESS","features":[109]},{"name":"TS_INDETERMINATE","features":[109]},{"name":"TS_NONE","features":[109]},{"name":"TS_PERFORMING","features":[109]},{"name":"TS_PREPARING","features":[109]},{"name":"TaskbarList","features":[109]},{"name":"ThumbnailStreamCache","features":[109]},{"name":"ThumbnailStreamCacheOptions","features":[109]},{"name":"TimeCategorizer","features":[109]},{"name":"TrackShellMenu","features":[109]},{"name":"TrayBandSiteService","features":[109]},{"name":"TrayDeskBand","features":[109]},{"name":"UNDOCK_REASON","features":[109]},{"name":"URLASSOCDLG_FL_REGISTER_ASSOC","features":[109]},{"name":"URLASSOCDLG_FL_USE_DEFAULT_NAME","features":[109]},{"name":"URLASSOCIATIONDIALOG_IN_FLAGS","features":[109]},{"name":"URLINVOKECOMMANDINFOA","features":[1,109]},{"name":"URLINVOKECOMMANDINFOW","features":[1,109]},{"name":"URLIS","features":[109]},{"name":"URLIS_APPLIABLE","features":[109]},{"name":"URLIS_DIRECTORY","features":[109]},{"name":"URLIS_FILEURL","features":[109]},{"name":"URLIS_HASQUERY","features":[109]},{"name":"URLIS_NOHISTORY","features":[109]},{"name":"URLIS_OPAQUE","features":[109]},{"name":"URLIS_URL","features":[109]},{"name":"URL_APPLY_DEFAULT","features":[109]},{"name":"URL_APPLY_FORCEAPPLY","features":[109]},{"name":"URL_APPLY_GUESSFILE","features":[109]},{"name":"URL_APPLY_GUESSSCHEME","features":[109]},{"name":"URL_BROWSER_MODE","features":[109]},{"name":"URL_CONVERT_IF_DOSPATH","features":[109]},{"name":"URL_DONT_ESCAPE_EXTRA_INFO","features":[109]},{"name":"URL_DONT_SIMPLIFY","features":[109]},{"name":"URL_DONT_UNESCAPE","features":[109]},{"name":"URL_DONT_UNESCAPE_EXTRA_INFO","features":[109]},{"name":"URL_ESCAPE_ASCII_URI_COMPONENT","features":[109]},{"name":"URL_ESCAPE_AS_UTF8","features":[109]},{"name":"URL_ESCAPE_PERCENT","features":[109]},{"name":"URL_ESCAPE_SEGMENT_ONLY","features":[109]},{"name":"URL_ESCAPE_SPACES_ONLY","features":[109]},{"name":"URL_ESCAPE_UNSAFE","features":[109]},{"name":"URL_E_INVALID_SYNTAX","features":[109]},{"name":"URL_E_UNREGISTERED_PROTOCOL","features":[109]},{"name":"URL_FILE_USE_PATHURL","features":[109]},{"name":"URL_INTERNAL_PATH","features":[109]},{"name":"URL_NO_META","features":[109]},{"name":"URL_PART","features":[109]},{"name":"URL_PARTFLAG_KEEPSCHEME","features":[109]},{"name":"URL_PART_HOSTNAME","features":[109]},{"name":"URL_PART_NONE","features":[109]},{"name":"URL_PART_PASSWORD","features":[109]},{"name":"URL_PART_PORT","features":[109]},{"name":"URL_PART_QUERY","features":[109]},{"name":"URL_PART_SCHEME","features":[109]},{"name":"URL_PART_USERNAME","features":[109]},{"name":"URL_PLUGGABLE_PROTOCOL","features":[109]},{"name":"URL_SCHEME","features":[109]},{"name":"URL_SCHEME_ABOUT","features":[109]},{"name":"URL_SCHEME_FILE","features":[109]},{"name":"URL_SCHEME_FTP","features":[109]},{"name":"URL_SCHEME_GOPHER","features":[109]},{"name":"URL_SCHEME_HTTP","features":[109]},{"name":"URL_SCHEME_HTTPS","features":[109]},{"name":"URL_SCHEME_INVALID","features":[109]},{"name":"URL_SCHEME_JAVASCRIPT","features":[109]},{"name":"URL_SCHEME_KNOWNFOLDER","features":[109]},{"name":"URL_SCHEME_LOCAL","features":[109]},{"name":"URL_SCHEME_MAILTO","features":[109]},{"name":"URL_SCHEME_MAXVALUE","features":[109]},{"name":"URL_SCHEME_MK","features":[109]},{"name":"URL_SCHEME_MSHELP","features":[109]},{"name":"URL_SCHEME_MSSHELLDEVICE","features":[109]},{"name":"URL_SCHEME_MSSHELLIDLIST","features":[109]},{"name":"URL_SCHEME_MSSHELLROOTED","features":[109]},{"name":"URL_SCHEME_NEWS","features":[109]},{"name":"URL_SCHEME_NNTP","features":[109]},{"name":"URL_SCHEME_RES","features":[109]},{"name":"URL_SCHEME_SEARCH","features":[109]},{"name":"URL_SCHEME_SEARCH_MS","features":[109]},{"name":"URL_SCHEME_SHELL","features":[109]},{"name":"URL_SCHEME_SNEWS","features":[109]},{"name":"URL_SCHEME_TELNET","features":[109]},{"name":"URL_SCHEME_UNKNOWN","features":[109]},{"name":"URL_SCHEME_VBSCRIPT","features":[109]},{"name":"URL_SCHEME_WAIS","features":[109]},{"name":"URL_SCHEME_WILDCARD","features":[109]},{"name":"URL_UNESCAPE","features":[109]},{"name":"URL_UNESCAPE_AS_UTF8","features":[109]},{"name":"URL_UNESCAPE_HIGH_ANSI_ONLY","features":[109]},{"name":"URL_UNESCAPE_INPLACE","features":[109]},{"name":"URL_UNESCAPE_URI_COMPONENT","features":[109]},{"name":"URL_WININET_COMPATIBILITY","features":[109]},{"name":"UR_MONITOR_DISCONNECT","features":[109]},{"name":"UR_RESOLUTION_CHANGE","features":[109]},{"name":"UnloadUserProfile","features":[1,109]},{"name":"UnregisterAppConstrainedChangeNotification","features":[109]},{"name":"UnregisterAppStateChangeNotification","features":[109]},{"name":"UnregisterScaleChangeEvent","features":[109]},{"name":"UrlApplySchemeA","features":[109]},{"name":"UrlApplySchemeW","features":[109]},{"name":"UrlCanonicalizeA","features":[109]},{"name":"UrlCanonicalizeW","features":[109]},{"name":"UrlCombineA","features":[109]},{"name":"UrlCombineW","features":[109]},{"name":"UrlCompareA","features":[1,109]},{"name":"UrlCompareW","features":[1,109]},{"name":"UrlCreateFromPathA","features":[109]},{"name":"UrlCreateFromPathW","features":[109]},{"name":"UrlEscapeA","features":[109]},{"name":"UrlEscapeW","features":[109]},{"name":"UrlFixupW","features":[109]},{"name":"UrlGetLocationA","features":[109]},{"name":"UrlGetLocationW","features":[109]},{"name":"UrlGetPartA","features":[109]},{"name":"UrlGetPartW","features":[109]},{"name":"UrlHashA","features":[109]},{"name":"UrlHashW","features":[109]},{"name":"UrlIsA","features":[1,109]},{"name":"UrlIsNoHistoryA","features":[1,109]},{"name":"UrlIsNoHistoryW","features":[1,109]},{"name":"UrlIsOpaqueA","features":[1,109]},{"name":"UrlIsOpaqueW","features":[1,109]},{"name":"UrlIsW","features":[1,109]},{"name":"UrlUnescapeA","features":[109]},{"name":"UrlUnescapeW","features":[109]},{"name":"UserNotification","features":[109]},{"name":"V1PasswordCredentialProvider","features":[109]},{"name":"V1SmartcardCredentialProvider","features":[109]},{"name":"V1WinBioCredentialProvider","features":[109]},{"name":"VALIDATEUNC_CONNECT","features":[109]},{"name":"VALIDATEUNC_NOUI","features":[109]},{"name":"VALIDATEUNC_OPTION","features":[109]},{"name":"VALIDATEUNC_PERSIST","features":[109]},{"name":"VALIDATEUNC_PRINT","features":[109]},{"name":"VALIDATEUNC_VALID","features":[109]},{"name":"VID_Content","features":[109]},{"name":"VID_Details","features":[109]},{"name":"VID_LargeIcons","features":[109]},{"name":"VID_List","features":[109]},{"name":"VID_SmallIcons","features":[109]},{"name":"VID_ThumbStrip","features":[109]},{"name":"VID_Thumbnails","features":[109]},{"name":"VID_Tile","features":[109]},{"name":"VIEW_PRIORITY_CACHEHIT","features":[109]},{"name":"VIEW_PRIORITY_CACHEMISS","features":[109]},{"name":"VIEW_PRIORITY_DESPERATE","features":[109]},{"name":"VIEW_PRIORITY_INHERIT","features":[109]},{"name":"VIEW_PRIORITY_NONE","features":[109]},{"name":"VIEW_PRIORITY_RESTRICTED","features":[109]},{"name":"VIEW_PRIORITY_SHELLEXT","features":[109]},{"name":"VIEW_PRIORITY_SHELLEXT_ASBACKUP","features":[109]},{"name":"VIEW_PRIORITY_STALECACHEHIT","features":[109]},{"name":"VIEW_PRIORITY_USEASDEFAULT","features":[109]},{"name":"VOLUME_PREFIX","features":[109]},{"name":"VPCF_BACKGROUND","features":[109]},{"name":"VPCF_SORTCOLUMN","features":[109]},{"name":"VPCF_SUBTEXT","features":[109]},{"name":"VPCF_TEXT","features":[109]},{"name":"VPCF_TEXTBACKGROUND","features":[109]},{"name":"VPCOLORFLAGS","features":[109]},{"name":"VPWATERMARKFLAGS","features":[109]},{"name":"VPWF_ALPHABLEND","features":[109]},{"name":"VPWF_DEFAULT","features":[109]},{"name":"VariantToStrRet","features":[1,41,42,219]},{"name":"VaultProvider","features":[109]},{"name":"VirtualDesktopManager","features":[109]},{"name":"WC_NETADDRESS","features":[109]},{"name":"WINDOWDATA","features":[219]},{"name":"WM_CPL_LAUNCH","features":[109]},{"name":"WM_CPL_LAUNCHED","features":[109]},{"name":"WPSTYLE_CENTER","features":[109]},{"name":"WPSTYLE_CROPTOFIT","features":[109]},{"name":"WPSTYLE_KEEPASPECT","features":[109]},{"name":"WPSTYLE_MAX","features":[109]},{"name":"WPSTYLE_SPAN","features":[109]},{"name":"WPSTYLE_STRETCH","features":[109]},{"name":"WPSTYLE_TILE","features":[109]},{"name":"WTSAT_ARGB","features":[109]},{"name":"WTSAT_RGB","features":[109]},{"name":"WTSAT_UNKNOWN","features":[109]},{"name":"WTSCF_APPSTYLE","features":[109]},{"name":"WTSCF_DEFAULT","features":[109]},{"name":"WTSCF_FAST","features":[109]},{"name":"WTSCF_SQUARE","features":[109]},{"name":"WTSCF_WIDE","features":[109]},{"name":"WTS_ALPHATYPE","features":[109]},{"name":"WTS_APPSTYLE","features":[109]},{"name":"WTS_CACHED","features":[109]},{"name":"WTS_CACHEFLAGS","features":[109]},{"name":"WTS_CONTEXTFLAGS","features":[109]},{"name":"WTS_CROPTOSQUARE","features":[109]},{"name":"WTS_DEFAULT","features":[109]},{"name":"WTS_EXTRACT","features":[109]},{"name":"WTS_EXTRACTDONOTCACHE","features":[109]},{"name":"WTS_EXTRACTINPROC","features":[109]},{"name":"WTS_E_DATAFILEUNAVAILABLE","features":[109]},{"name":"WTS_E_EXTRACTIONBLOCKED","features":[109]},{"name":"WTS_E_EXTRACTIONPENDING","features":[109]},{"name":"WTS_E_EXTRACTIONTIMEDOUT","features":[109]},{"name":"WTS_E_FAILEDEXTRACTION","features":[109]},{"name":"WTS_E_FASTEXTRACTIONNOTSUPPORTED","features":[109]},{"name":"WTS_E_NOSTORAGEPROVIDERTHUMBNAILHANDLER","features":[109]},{"name":"WTS_E_SURROGATEUNAVAILABLE","features":[109]},{"name":"WTS_FASTEXTRACT","features":[109]},{"name":"WTS_FLAGS","features":[109]},{"name":"WTS_FORCEEXTRACTION","features":[109]},{"name":"WTS_IDEALCACHESIZEONLY","features":[109]},{"name":"WTS_INCACHEONLY","features":[109]},{"name":"WTS_INSTANCESURROGATE","features":[109]},{"name":"WTS_LOWQUALITY","features":[109]},{"name":"WTS_NONE","features":[109]},{"name":"WTS_REQUIRESURROGATE","features":[109]},{"name":"WTS_SCALETOREQUESTEDSIZE","features":[109]},{"name":"WTS_SCALEUP","features":[109]},{"name":"WTS_SKIPFASTEXTRACT","features":[109]},{"name":"WTS_SLOWRECLAIM","features":[109]},{"name":"WTS_THUMBNAILID","features":[109]},{"name":"WTS_WIDETHUMBNAILS","features":[109]},{"name":"WebBrowser","features":[109]},{"name":"WebBrowser_V1","features":[109]},{"name":"WebWizardHost","features":[109]},{"name":"WhichPlatform","features":[109]},{"name":"Win32DeleteFile","features":[1,109]},{"name":"WinBioCredentialProvider","features":[109]},{"name":"WinHelpA","features":[1,109]},{"name":"WinHelpW","features":[1,109]},{"name":"WriteCabinetState","features":[1,109]},{"name":"_BROWSERFRAMEOPTIONS","features":[109]},{"name":"_CDBE_ACTIONS","features":[109]},{"name":"_EXPCMDFLAGS","features":[109]},{"name":"_EXPCMDSTATE","features":[109]},{"name":"_EXPLORERPANESTATE","features":[109]},{"name":"_EXPPS","features":[109]},{"name":"_KF_DEFINITION_FLAGS","features":[109]},{"name":"_KF_REDIRECTION_CAPABILITIES","features":[109]},{"name":"_KF_REDIRECT_FLAGS","features":[109]},{"name":"_NMCII_FLAGS","features":[109]},{"name":"_NMCSAEI_FLAGS","features":[109]},{"name":"_NSTCECLICKTYPE","features":[109]},{"name":"_NSTCEHITTEST","features":[109]},{"name":"_NSTCITEMSTATE","features":[109]},{"name":"_NSTCROOTSTYLE","features":[109]},{"name":"_NSTCSTYLE","features":[109]},{"name":"_OPPROGDLGF","features":[109]},{"name":"_PDMODE","features":[109]},{"name":"_SHCONTF","features":[109]},{"name":"_SICHINTF","features":[109]},{"name":"_SPBEGINF","features":[109]},{"name":"_SPINITF","features":[109]},{"name":"_SV3CVW3_FLAGS","features":[109]},{"name":"_SVGIO","features":[109]},{"name":"_SVSIF","features":[109]},{"name":"_TRANSFER_ADVISE_STATE","features":[109]},{"name":"_TRANSFER_SOURCE_FLAGS","features":[109]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_CSCSYNCINPROGRESS","features":[109]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SERVERDRIVE","features":[109]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEGLOBALDIRTYCOUNT","features":[109]},{"name":"idsAppName","features":[109]},{"name":"idsBadOldPW","features":[109]},{"name":"idsChangePW","features":[109]},{"name":"idsDefKeyword","features":[109]},{"name":"idsDifferentPW","features":[109]},{"name":"idsHelpFile","features":[109]},{"name":"idsIniFile","features":[109]},{"name":"idsIsPassword","features":[109]},{"name":"idsNoHelpMemory","features":[109]},{"name":"idsPassword","features":[109]},{"name":"idsScreenSaver","features":[109]},{"name":"navAllowAutosearch","features":[109]},{"name":"navBlockRedirectsXDomain","features":[109]},{"name":"navBrowserBar","features":[109]},{"name":"navDeferUnload","features":[109]},{"name":"navEnforceRestricted","features":[109]},{"name":"navHomepageNavigate","features":[109]},{"name":"navHostNavigation","features":[109]},{"name":"navHyperlink","features":[109]},{"name":"navKeepWordWheelText","features":[109]},{"name":"navNewWindowsManaged","features":[109]},{"name":"navNoHistory","features":[109]},{"name":"navNoReadFromCache","features":[109]},{"name":"navNoWriteToCache","features":[109]},{"name":"navOpenInBackgroundTab","features":[109]},{"name":"navOpenInNewTab","features":[109]},{"name":"navOpenInNewWindow","features":[109]},{"name":"navOpenNewForegroundTab","features":[109]},{"name":"navRefresh","features":[109]},{"name":"navReserved1","features":[109]},{"name":"navReserved2","features":[109]},{"name":"navReserved3","features":[109]},{"name":"navReserved4","features":[109]},{"name":"navReserved5","features":[109]},{"name":"navReserved6","features":[109]},{"name":"navReserved7","features":[109]},{"name":"navSpeculative","features":[109]},{"name":"navSuggestNewTab","features":[109]},{"name":"navSuggestNewWindow","features":[109]},{"name":"navTravelLogScreenshot","features":[109]},{"name":"navTrustedForActiveX","features":[109]},{"name":"navUntrustedForDownload","features":[109]},{"name":"navVirtualTab","features":[109]},{"name":"secureLockIconMixed","features":[109]},{"name":"secureLockIconSecure128Bit","features":[109]},{"name":"secureLockIconSecure40Bit","features":[109]},{"name":"secureLockIconSecure56Bit","features":[109]},{"name":"secureLockIconSecureFortezza","features":[109]},{"name":"secureLockIconSecureUnknownBits","features":[109]},{"name":"secureLockIconUnsecure","features":[109]},{"name":"ssfALTSTARTUP","features":[109]},{"name":"ssfAPPDATA","features":[109]},{"name":"ssfBITBUCKET","features":[109]},{"name":"ssfCOMMONALTSTARTUP","features":[109]},{"name":"ssfCOMMONAPPDATA","features":[109]},{"name":"ssfCOMMONDESKTOPDIR","features":[109]},{"name":"ssfCOMMONFAVORITES","features":[109]},{"name":"ssfCOMMONPROGRAMS","features":[109]},{"name":"ssfCOMMONSTARTMENU","features":[109]},{"name":"ssfCOMMONSTARTUP","features":[109]},{"name":"ssfCONTROLS","features":[109]},{"name":"ssfCOOKIES","features":[109]},{"name":"ssfDESKTOP","features":[109]},{"name":"ssfDESKTOPDIRECTORY","features":[109]},{"name":"ssfDRIVES","features":[109]},{"name":"ssfFAVORITES","features":[109]},{"name":"ssfFONTS","features":[109]},{"name":"ssfHISTORY","features":[109]},{"name":"ssfINTERNETCACHE","features":[109]},{"name":"ssfLOCALAPPDATA","features":[109]},{"name":"ssfMYPICTURES","features":[109]},{"name":"ssfNETHOOD","features":[109]},{"name":"ssfNETWORK","features":[109]},{"name":"ssfPERSONAL","features":[109]},{"name":"ssfPRINTERS","features":[109]},{"name":"ssfPRINTHOOD","features":[109]},{"name":"ssfPROFILE","features":[109]},{"name":"ssfPROGRAMFILES","features":[109]},{"name":"ssfPROGRAMFILESx86","features":[109]},{"name":"ssfPROGRAMS","features":[109]},{"name":"ssfRECENT","features":[109]},{"name":"ssfSENDTO","features":[109]},{"name":"ssfSTARTMENU","features":[109]},{"name":"ssfSTARTUP","features":[109]},{"name":"ssfSYSTEM","features":[109]},{"name":"ssfSYSTEMx86","features":[109]},{"name":"ssfTEMPLATES","features":[109]},{"name":"ssfWINDOWS","features":[109]},{"name":"wnsprintfA","features":[109]},{"name":"wnsprintfW","features":[109]},{"name":"wvnsprintfA","features":[109]},{"name":"wvnsprintfW","features":[109]}],"668":[{"name":"COMDLG_FILTERSPEC","features":[219]},{"name":"DEVICE_SCALE_FACTOR","features":[219]},{"name":"DEVICE_SCALE_FACTOR_INVALID","features":[219]},{"name":"IObjectArray","features":[219]},{"name":"IObjectCollection","features":[219]},{"name":"ITEMIDLIST","features":[219]},{"name":"PERCEIVED","features":[219]},{"name":"PERCEIVEDFLAG_GDIPLUS","features":[219]},{"name":"PERCEIVEDFLAG_HARDCODED","features":[219]},{"name":"PERCEIVEDFLAG_NATIVESUPPORT","features":[219]},{"name":"PERCEIVEDFLAG_SOFTCODED","features":[219]},{"name":"PERCEIVEDFLAG_UNDEFINED","features":[219]},{"name":"PERCEIVEDFLAG_WMSDK","features":[219]},{"name":"PERCEIVEDFLAG_ZIPFOLDER","features":[219]},{"name":"PERCEIVED_TYPE_APPLICATION","features":[219]},{"name":"PERCEIVED_TYPE_AUDIO","features":[219]},{"name":"PERCEIVED_TYPE_COMPRESSED","features":[219]},{"name":"PERCEIVED_TYPE_CONTACTS","features":[219]},{"name":"PERCEIVED_TYPE_CUSTOM","features":[219]},{"name":"PERCEIVED_TYPE_DOCUMENT","features":[219]},{"name":"PERCEIVED_TYPE_FIRST","features":[219]},{"name":"PERCEIVED_TYPE_FOLDER","features":[219]},{"name":"PERCEIVED_TYPE_GAMEMEDIA","features":[219]},{"name":"PERCEIVED_TYPE_IMAGE","features":[219]},{"name":"PERCEIVED_TYPE_LAST","features":[219]},{"name":"PERCEIVED_TYPE_SYSTEM","features":[219]},{"name":"PERCEIVED_TYPE_TEXT","features":[219]},{"name":"PERCEIVED_TYPE_UNKNOWN","features":[219]},{"name":"PERCEIVED_TYPE_UNSPECIFIED","features":[219]},{"name":"PERCEIVED_TYPE_VIDEO","features":[219]},{"name":"SCALE_100_PERCENT","features":[219]},{"name":"SCALE_120_PERCENT","features":[219]},{"name":"SCALE_125_PERCENT","features":[219]},{"name":"SCALE_140_PERCENT","features":[219]},{"name":"SCALE_150_PERCENT","features":[219]},{"name":"SCALE_160_PERCENT","features":[219]},{"name":"SCALE_175_PERCENT","features":[219]},{"name":"SCALE_180_PERCENT","features":[219]},{"name":"SCALE_200_PERCENT","features":[219]},{"name":"SCALE_225_PERCENT","features":[219]},{"name":"SCALE_250_PERCENT","features":[219]},{"name":"SCALE_300_PERCENT","features":[219]},{"name":"SCALE_350_PERCENT","features":[219]},{"name":"SCALE_400_PERCENT","features":[219]},{"name":"SCALE_450_PERCENT","features":[219]},{"name":"SCALE_500_PERCENT","features":[219]},{"name":"SHCOLSTATE","features":[219]},{"name":"SHCOLSTATE_BATCHREAD","features":[219]},{"name":"SHCOLSTATE_DEFAULT","features":[219]},{"name":"SHCOLSTATE_DISPLAYMASK","features":[219]},{"name":"SHCOLSTATE_EXTENDED","features":[219]},{"name":"SHCOLSTATE_FIXED_RATIO","features":[219]},{"name":"SHCOLSTATE_FIXED_WIDTH","features":[219]},{"name":"SHCOLSTATE_HIDDEN","features":[219]},{"name":"SHCOLSTATE_NODPISCALE","features":[219]},{"name":"SHCOLSTATE_NOSORTBYFOLDERNESS","features":[219]},{"name":"SHCOLSTATE_NO_GROUPBY","features":[219]},{"name":"SHCOLSTATE_ONBYDEFAULT","features":[219]},{"name":"SHCOLSTATE_PREFER_FMTCMP","features":[219]},{"name":"SHCOLSTATE_PREFER_VARCMP","features":[219]},{"name":"SHCOLSTATE_SECONDARYUI","features":[219]},{"name":"SHCOLSTATE_SLOW","features":[219]},{"name":"SHCOLSTATE_TYPEMASK","features":[219]},{"name":"SHCOLSTATE_TYPE_DATE","features":[219]},{"name":"SHCOLSTATE_TYPE_INT","features":[219]},{"name":"SHCOLSTATE_TYPE_STR","features":[219]},{"name":"SHCOLSTATE_VIEWONLY","features":[219]},{"name":"SHELLDETAILS","features":[219]},{"name":"SHITEMID","features":[219]},{"name":"STRRET","features":[219]},{"name":"STRRET_CSTR","features":[219]},{"name":"STRRET_OFFSET","features":[219]},{"name":"STRRET_TYPE","features":[219]},{"name":"STRRET_WSTR","features":[219]}],"669":[{"name":"FPSPS_DEFAULT","features":[60]},{"name":"FPSPS_READONLY","features":[60]},{"name":"FPSPS_TREAT_NEW_VALUES_AS_DIRTY","features":[60]},{"name":"GETPROPERTYSTOREFLAGS","features":[60]},{"name":"GPS_BESTEFFORT","features":[60]},{"name":"GPS_DEFAULT","features":[60]},{"name":"GPS_DELAYCREATION","features":[60]},{"name":"GPS_EXTRINSICPROPERTIES","features":[60]},{"name":"GPS_EXTRINSICPROPERTIESONLY","features":[60]},{"name":"GPS_FASTPROPERTIESONLY","features":[60]},{"name":"GPS_HANDLERPROPERTIESONLY","features":[60]},{"name":"GPS_MASK_VALID","features":[60]},{"name":"GPS_NO_OPLOCK","features":[60]},{"name":"GPS_OPENSLOWITEM","features":[60]},{"name":"GPS_PREFERQUERYPROPERTIES","features":[60]},{"name":"GPS_READWRITE","features":[60]},{"name":"GPS_TEMPORARY","features":[60]},{"name":"GPS_VOLATILEPROPERTIES","features":[60]},{"name":"GPS_VOLATILEPROPERTIESONLY","features":[60]},{"name":"ICreateObject","features":[60]},{"name":"IDelayedPropertyStoreFactory","features":[60]},{"name":"IInitializeWithFile","features":[60]},{"name":"IInitializeWithStream","features":[60]},{"name":"INamedPropertyStore","features":[60]},{"name":"IObjectWithPropertyKey","features":[60]},{"name":"IPersistSerializedPropStorage","features":[60]},{"name":"IPersistSerializedPropStorage2","features":[60]},{"name":"IPropertyChange","features":[60]},{"name":"IPropertyChangeArray","features":[60]},{"name":"IPropertyDescription","features":[60]},{"name":"IPropertyDescription2","features":[60]},{"name":"IPropertyDescriptionAliasInfo","features":[60]},{"name":"IPropertyDescriptionList","features":[60]},{"name":"IPropertyDescriptionRelatedPropertyInfo","features":[60]},{"name":"IPropertyDescriptionSearchInfo","features":[60]},{"name":"IPropertyEnumType","features":[60]},{"name":"IPropertyEnumType2","features":[60]},{"name":"IPropertyEnumTypeList","features":[60]},{"name":"IPropertyStore","features":[60]},{"name":"IPropertyStoreCache","features":[60]},{"name":"IPropertyStoreCapabilities","features":[60]},{"name":"IPropertyStoreFactory","features":[60]},{"name":"IPropertySystem","features":[60]},{"name":"IPropertySystemChangeNotify","features":[60]},{"name":"IPropertyUI","features":[60]},{"name":"InMemoryPropertyStore","features":[60]},{"name":"InMemoryPropertyStoreMarshalByValue","features":[60]},{"name":"PCUSERIALIZEDPROPSTORAGE","features":[60]},{"name":"PDAT_AVERAGE","features":[60]},{"name":"PDAT_DATERANGE","features":[60]},{"name":"PDAT_DEFAULT","features":[60]},{"name":"PDAT_FIRST","features":[60]},{"name":"PDAT_MAX","features":[60]},{"name":"PDAT_MIN","features":[60]},{"name":"PDAT_SUM","features":[60]},{"name":"PDAT_UNION","features":[60]},{"name":"PDCIT_INMEMORY","features":[60]},{"name":"PDCIT_NONE","features":[60]},{"name":"PDCIT_ONDEMAND","features":[60]},{"name":"PDCIT_ONDISK","features":[60]},{"name":"PDCIT_ONDISKALL","features":[60]},{"name":"PDCIT_ONDISKVECTOR","features":[60]},{"name":"PDCOT_BOOLEAN","features":[60]},{"name":"PDCOT_DATETIME","features":[60]},{"name":"PDCOT_NONE","features":[60]},{"name":"PDCOT_NUMBER","features":[60]},{"name":"PDCOT_SIZE","features":[60]},{"name":"PDCOT_STRING","features":[60]},{"name":"PDDT_BOOLEAN","features":[60]},{"name":"PDDT_DATETIME","features":[60]},{"name":"PDDT_ENUMERATED","features":[60]},{"name":"PDDT_NUMBER","features":[60]},{"name":"PDDT_STRING","features":[60]},{"name":"PDEF_ALL","features":[60]},{"name":"PDEF_COLUMN","features":[60]},{"name":"PDEF_INFULLTEXTQUERY","features":[60]},{"name":"PDEF_NONSYSTEM","features":[60]},{"name":"PDEF_QUERYABLE","features":[60]},{"name":"PDEF_SYSTEM","features":[60]},{"name":"PDEF_VIEWABLE","features":[60]},{"name":"PDFF_ALWAYSKB","features":[60]},{"name":"PDFF_DEFAULT","features":[60]},{"name":"PDFF_FILENAME","features":[60]},{"name":"PDFF_HIDEDATE","features":[60]},{"name":"PDFF_HIDETIME","features":[60]},{"name":"PDFF_LONGDATE","features":[60]},{"name":"PDFF_LONGTIME","features":[60]},{"name":"PDFF_NOAUTOREADINGORDER","features":[60]},{"name":"PDFF_PREFIXNAME","features":[60]},{"name":"PDFF_READONLY","features":[60]},{"name":"PDFF_RELATIVEDATE","features":[60]},{"name":"PDFF_RESERVED_RIGHTTOLEFT","features":[60]},{"name":"PDFF_SHORTDATE","features":[60]},{"name":"PDFF_SHORTTIME","features":[60]},{"name":"PDFF_USEEDITINVITATION","features":[60]},{"name":"PDGR_ALPHANUMERIC","features":[60]},{"name":"PDGR_DATE","features":[60]},{"name":"PDGR_DISCRETE","features":[60]},{"name":"PDGR_DYNAMIC","features":[60]},{"name":"PDGR_ENUMERATED","features":[60]},{"name":"PDGR_PERCENT","features":[60]},{"name":"PDGR_SIZE","features":[60]},{"name":"PDOPSTATUS","features":[60]},{"name":"PDOPS_CANCELLED","features":[60]},{"name":"PDOPS_ERRORS","features":[60]},{"name":"PDOPS_PAUSED","features":[60]},{"name":"PDOPS_RUNNING","features":[60]},{"name":"PDOPS_STOPPED","features":[60]},{"name":"PDRDT_COUNT","features":[60]},{"name":"PDRDT_DATE","features":[60]},{"name":"PDRDT_DURATION","features":[60]},{"name":"PDRDT_GENERAL","features":[60]},{"name":"PDRDT_LENGTH","features":[60]},{"name":"PDRDT_PRIORITY","features":[60]},{"name":"PDRDT_RATE","features":[60]},{"name":"PDRDT_RATING","features":[60]},{"name":"PDRDT_REVISION","features":[60]},{"name":"PDRDT_SIZE","features":[60]},{"name":"PDRDT_SPEED","features":[60]},{"name":"PDSD_A_Z","features":[60]},{"name":"PDSD_GENERAL","features":[60]},{"name":"PDSD_LOWEST_HIGHEST","features":[60]},{"name":"PDSD_OLDEST_NEWEST","features":[60]},{"name":"PDSD_SMALLEST_BIGGEST","features":[60]},{"name":"PDSIF_ALWAYSINCLUDE","features":[60]},{"name":"PDSIF_DEFAULT","features":[60]},{"name":"PDSIF_ININVERTEDINDEX","features":[60]},{"name":"PDSIF_ISCOLUMN","features":[60]},{"name":"PDSIF_ISCOLUMNSPARSE","features":[60]},{"name":"PDSIF_USEFORTYPEAHEAD","features":[60]},{"name":"PDTF_ALWAYSINSUPPLEMENTALSTORE","features":[60]},{"name":"PDTF_CANBEPURGED","features":[60]},{"name":"PDTF_CANGROUPBY","features":[60]},{"name":"PDTF_CANSTACKBY","features":[60]},{"name":"PDTF_DEFAULT","features":[60]},{"name":"PDTF_DONTCOERCEEMPTYSTRINGS","features":[60]},{"name":"PDTF_INCLUDEINFULLTEXTQUERY","features":[60]},{"name":"PDTF_ISGROUP","features":[60]},{"name":"PDTF_ISINNATE","features":[60]},{"name":"PDTF_ISQUERYABLE","features":[60]},{"name":"PDTF_ISSYSTEMPROPERTY","features":[60]},{"name":"PDTF_ISTREEPROPERTY","features":[60]},{"name":"PDTF_ISVIEWABLE","features":[60]},{"name":"PDTF_MASK_ALL","features":[60]},{"name":"PDTF_MULTIPLEVALUES","features":[60]},{"name":"PDTF_SEARCHRAWVALUE","features":[60]},{"name":"PDVF_BEGINNEWGROUP","features":[60]},{"name":"PDVF_CANWRAP","features":[60]},{"name":"PDVF_CENTERALIGN","features":[60]},{"name":"PDVF_DEFAULT","features":[60]},{"name":"PDVF_FILLAREA","features":[60]},{"name":"PDVF_HIDDEN","features":[60]},{"name":"PDVF_HIDELABEL","features":[60]},{"name":"PDVF_MASK_ALL","features":[60]},{"name":"PDVF_RIGHTALIGN","features":[60]},{"name":"PDVF_SHOWBYDEFAULT","features":[60]},{"name":"PDVF_SHOWINPRIMARYLIST","features":[60]},{"name":"PDVF_SHOWINSECONDARYLIST","features":[60]},{"name":"PDVF_SHOWONLYIFPRESENT","features":[60]},{"name":"PDVF_SORTDESCENDING","features":[60]},{"name":"PET_DEFAULTVALUE","features":[60]},{"name":"PET_DISCRETEVALUE","features":[60]},{"name":"PET_ENDRANGE","features":[60]},{"name":"PET_RANGEDVALUE","features":[60]},{"name":"PKA_APPEND","features":[60]},{"name":"PKA_DELETE","features":[60]},{"name":"PKA_FLAGS","features":[60]},{"name":"PKA_SET","features":[60]},{"name":"PKEY_PIDSTR_MAX","features":[60]},{"name":"PLACEHOLDER_STATES","features":[60]},{"name":"PROPDESC_AGGREGATION_TYPE","features":[60]},{"name":"PROPDESC_COLUMNINDEX_TYPE","features":[60]},{"name":"PROPDESC_CONDITION_TYPE","features":[60]},{"name":"PROPDESC_DISPLAYTYPE","features":[60]},{"name":"PROPDESC_ENUMFILTER","features":[60]},{"name":"PROPDESC_FORMAT_FLAGS","features":[60]},{"name":"PROPDESC_GROUPING_RANGE","features":[60]},{"name":"PROPDESC_RELATIVEDESCRIPTION_TYPE","features":[60]},{"name":"PROPDESC_SEARCHINFO_FLAGS","features":[60]},{"name":"PROPDESC_SORTDESCRIPTION","features":[60]},{"name":"PROPDESC_TYPE_FLAGS","features":[60]},{"name":"PROPDESC_VIEW_FLAGS","features":[60]},{"name":"PROPENUMTYPE","features":[60]},{"name":"PROPERTYKEY","features":[60]},{"name":"PROPERTYUI_FLAGS","features":[60]},{"name":"PROPERTYUI_FORMAT_FLAGS","features":[60]},{"name":"PROPERTYUI_NAME_FLAGS","features":[60]},{"name":"PROPPRG","features":[60]},{"name":"PSC_DIRTY","features":[60]},{"name":"PSC_NORMAL","features":[60]},{"name":"PSC_NOTINSOURCE","features":[60]},{"name":"PSC_READONLY","features":[60]},{"name":"PSC_STATE","features":[60]},{"name":"PSCoerceToCanonicalValue","features":[1,63,42,60]},{"name":"PSCreateAdapterFromPropertyStore","features":[60]},{"name":"PSCreateDelayedMultiplexPropertyStore","features":[60]},{"name":"PSCreateMemoryPropertyStore","features":[60]},{"name":"PSCreateMultiplexPropertyStore","features":[60]},{"name":"PSCreatePropertyChangeArray","features":[1,63,42,60]},{"name":"PSCreatePropertyStoreFromObject","features":[60]},{"name":"PSCreatePropertyStoreFromPropertySetStorage","features":[60]},{"name":"PSCreateSimplePropertyChange","features":[1,63,42,60]},{"name":"PSEnumeratePropertyDescriptions","features":[60]},{"name":"PSFormatForDisplay","features":[1,63,42,60]},{"name":"PSFormatForDisplayAlloc","features":[1,63,42,60]},{"name":"PSFormatPropertyValue","features":[60]},{"name":"PSGetImageReferenceForValue","features":[1,63,42,60]},{"name":"PSGetItemPropertyHandler","features":[1,60]},{"name":"PSGetItemPropertyHandlerWithCreateObject","features":[1,60]},{"name":"PSGetNameFromPropertyKey","features":[60]},{"name":"PSGetNamedPropertyFromPropertyStorage","features":[1,63,42,60]},{"name":"PSGetPropertyDescription","features":[60]},{"name":"PSGetPropertyDescriptionByName","features":[60]},{"name":"PSGetPropertyDescriptionListFromString","features":[60]},{"name":"PSGetPropertyFromPropertyStorage","features":[1,63,42,60]},{"name":"PSGetPropertyKeyFromName","features":[60]},{"name":"PSGetPropertySystem","features":[60]},{"name":"PSGetPropertyValue","features":[1,63,42,60]},{"name":"PSLookupPropertyHandlerCLSID","features":[60]},{"name":"PSPropertyBag_Delete","features":[60]},{"name":"PSPropertyBag_ReadBOOL","features":[1,60]},{"name":"PSPropertyBag_ReadBSTR","features":[60]},{"name":"PSPropertyBag_ReadDWORD","features":[60]},{"name":"PSPropertyBag_ReadGUID","features":[60]},{"name":"PSPropertyBag_ReadInt","features":[60]},{"name":"PSPropertyBag_ReadLONG","features":[60]},{"name":"PSPropertyBag_ReadPOINTL","features":[1,60]},{"name":"PSPropertyBag_ReadPOINTS","features":[1,60]},{"name":"PSPropertyBag_ReadPropertyKey","features":[60]},{"name":"PSPropertyBag_ReadRECTL","features":[1,60]},{"name":"PSPropertyBag_ReadSHORT","features":[60]},{"name":"PSPropertyBag_ReadStr","features":[60]},{"name":"PSPropertyBag_ReadStrAlloc","features":[60]},{"name":"PSPropertyBag_ReadStream","features":[60]},{"name":"PSPropertyBag_ReadType","features":[1,41,42,60]},{"name":"PSPropertyBag_ReadULONGLONG","features":[60]},{"name":"PSPropertyBag_ReadUnknown","features":[60]},{"name":"PSPropertyBag_WriteBOOL","features":[1,60]},{"name":"PSPropertyBag_WriteBSTR","features":[60]},{"name":"PSPropertyBag_WriteDWORD","features":[60]},{"name":"PSPropertyBag_WriteGUID","features":[60]},{"name":"PSPropertyBag_WriteInt","features":[60]},{"name":"PSPropertyBag_WriteLONG","features":[60]},{"name":"PSPropertyBag_WritePOINTL","features":[1,60]},{"name":"PSPropertyBag_WritePOINTS","features":[1,60]},{"name":"PSPropertyBag_WritePropertyKey","features":[60]},{"name":"PSPropertyBag_WriteRECTL","features":[1,60]},{"name":"PSPropertyBag_WriteSHORT","features":[60]},{"name":"PSPropertyBag_WriteStr","features":[60]},{"name":"PSPropertyBag_WriteStream","features":[60]},{"name":"PSPropertyBag_WriteULONGLONG","features":[60]},{"name":"PSPropertyBag_WriteUnknown","features":[60]},{"name":"PSPropertyKeyFromString","features":[60]},{"name":"PSRefreshPropertySchema","features":[60]},{"name":"PSRegisterPropertySchema","features":[60]},{"name":"PSSetPropertyValue","features":[1,63,42,60]},{"name":"PSStringFromPropertyKey","features":[60]},{"name":"PSUnregisterPropertySchema","features":[60]},{"name":"PS_ALL","features":[60]},{"name":"PS_CLOUDFILE_PLACEHOLDER","features":[60]},{"name":"PS_CREATE_FILE_ACCESSIBLE","features":[60]},{"name":"PS_DEFAULT","features":[60]},{"name":"PS_FULL_PRIMARY_STREAM_AVAILABLE","features":[60]},{"name":"PS_MARKED_FOR_OFFLINE_AVAILABILITY","features":[60]},{"name":"PS_NONE","features":[60]},{"name":"PUIFFDF_DEFAULT","features":[60]},{"name":"PUIFFDF_FRIENDLYDATE","features":[60]},{"name":"PUIFFDF_NOTIME","features":[60]},{"name":"PUIFFDF_RIGHTTOLEFT","features":[60]},{"name":"PUIFFDF_SHORTFORMAT","features":[60]},{"name":"PUIFNF_DEFAULT","features":[60]},{"name":"PUIFNF_MNEMONIC","features":[60]},{"name":"PUIF_DEFAULT","features":[60]},{"name":"PUIF_NOLABELININFOTIP","features":[60]},{"name":"PUIF_RIGHTALIGN","features":[60]},{"name":"PifMgr_CloseProperties","features":[1,60]},{"name":"PifMgr_GetProperties","features":[1,60]},{"name":"PifMgr_OpenProperties","features":[1,60]},{"name":"PifMgr_SetProperties","features":[1,60]},{"name":"PropertySystem","features":[60]},{"name":"SERIALIZEDPROPSTORAGE","features":[60]},{"name":"SESF_ALL_FLAGS","features":[60]},{"name":"SESF_AUTHENTICATION_ERROR","features":[60]},{"name":"SESF_NONE","features":[60]},{"name":"SESF_PAUSED_DUE_TO_CLIENT_POLICY","features":[60]},{"name":"SESF_PAUSED_DUE_TO_DISK_SPACE_FULL","features":[60]},{"name":"SESF_PAUSED_DUE_TO_METERED_NETWORK","features":[60]},{"name":"SESF_PAUSED_DUE_TO_SERVICE_POLICY","features":[60]},{"name":"SESF_PAUSED_DUE_TO_USER_REQUEST","features":[60]},{"name":"SESF_SERVICE_QUOTA_EXCEEDED_LIMIT","features":[60]},{"name":"SESF_SERVICE_QUOTA_NEARING_LIMIT","features":[60]},{"name":"SESF_SERVICE_UNAVAILABLE","features":[60]},{"name":"SHAddDefaultPropertiesByExt","features":[60]},{"name":"SHGetPropertyStoreForWindow","features":[1,60]},{"name":"SHGetPropertyStoreFromIDList","features":[219,60]},{"name":"SHGetPropertyStoreFromParsingName","features":[60]},{"name":"SHPropStgCreate","features":[60]},{"name":"SHPropStgReadMultiple","features":[1,63,42,60]},{"name":"SHPropStgWriteMultiple","features":[1,63,42,60]},{"name":"STS_EXCLUDED","features":[60]},{"name":"STS_FETCHING_METADATA","features":[60]},{"name":"STS_HASERROR","features":[60]},{"name":"STS_HASWARNING","features":[60]},{"name":"STS_INCOMPLETE","features":[60]},{"name":"STS_NEEDSDOWNLOAD","features":[60]},{"name":"STS_NEEDSUPLOAD","features":[60]},{"name":"STS_NONE","features":[60]},{"name":"STS_PAUSED","features":[60]},{"name":"STS_PLACEHOLDER_IFEMPTY","features":[60]},{"name":"STS_TRANSFERRING","features":[60]},{"name":"STS_USER_REQUESTED_REFRESH","features":[60]},{"name":"SYNC_ENGINE_STATE_FLAGS","features":[60]},{"name":"SYNC_TRANSFER_STATUS","features":[60]},{"name":"_PERSIST_SPROPSTORE_FLAGS","features":[60]}],"670":[{"name":"ALT_BREAKS","features":[220]},{"name":"ALT_BREAKS_FULL","features":[220]},{"name":"ALT_BREAKS_SAME","features":[220]},{"name":"ALT_BREAKS_UNIQUE","features":[220]},{"name":"ASYNC_RECO_ADDSTROKE_FAILED","features":[220]},{"name":"ASYNC_RECO_INTERRUPTED","features":[220]},{"name":"ASYNC_RECO_PROCESS_FAILED","features":[220]},{"name":"ASYNC_RECO_RESETCONTEXT_FAILED","features":[220]},{"name":"ASYNC_RECO_SETCACMODE_FAILED","features":[220]},{"name":"ASYNC_RECO_SETFACTOID_FAILED","features":[220]},{"name":"ASYNC_RECO_SETFLAGS_FAILED","features":[220]},{"name":"ASYNC_RECO_SETGUIDE_FAILED","features":[220]},{"name":"ASYNC_RECO_SETTEXTCONTEXT_FAILED","features":[220]},{"name":"ASYNC_RECO_SETWORDLIST_FAILED","features":[220]},{"name":"AddStroke","features":[12,220]},{"name":"AddWordsToWordList","features":[220]},{"name":"AdviseInkChange","features":[1,220]},{"name":"AppearanceConstants","features":[220]},{"name":"AsyncStylusQueue","features":[220]},{"name":"AsyncStylusQueueImmediate","features":[220]},{"name":"BEST_COMPLETE","features":[220]},{"name":"BorderStyleConstants","features":[220]},{"name":"CAC_FULL","features":[220]},{"name":"CAC_PREFIX","features":[220]},{"name":"CAC_RANDOM","features":[220]},{"name":"CFL_INTERMEDIATE","features":[220]},{"name":"CFL_POOR","features":[220]},{"name":"CFL_STRONG","features":[220]},{"name":"CHARACTER_RANGE","features":[220]},{"name":"CONFIDENCE_LEVEL","features":[220]},{"name":"Closed","features":[220]},{"name":"CorrectionMode","features":[220]},{"name":"CorrectionMode_NotVisible","features":[220]},{"name":"CorrectionMode_PostInsertionCollapsed","features":[220]},{"name":"CorrectionMode_PostInsertionExpanded","features":[220]},{"name":"CorrectionMode_PreInsertion","features":[220]},{"name":"CorrectionPosition","features":[220]},{"name":"CorrectionPosition_Auto","features":[220]},{"name":"CorrectionPosition_Bottom","features":[220]},{"name":"CorrectionPosition_Top","features":[220]},{"name":"CreateContext","features":[220]},{"name":"CreateRecognizer","features":[220]},{"name":"DISPID_DAAntiAliased","features":[220]},{"name":"DISPID_DAClone","features":[220]},{"name":"DISPID_DAColor","features":[220]},{"name":"DISPID_DAExtendedProperties","features":[220]},{"name":"DISPID_DAFitToCurve","features":[220]},{"name":"DISPID_DAHeight","features":[220]},{"name":"DISPID_DAIgnorePressure","features":[220]},{"name":"DISPID_DAPenTip","features":[220]},{"name":"DISPID_DARasterOperation","features":[220]},{"name":"DISPID_DATransparency","features":[220]},{"name":"DISPID_DAWidth","features":[220]},{"name":"DISPID_DisableNoScroll","features":[220]},{"name":"DISPID_DragIcon","features":[220]},{"name":"DISPID_DrawAttr","features":[220]},{"name":"DISPID_Enabled","features":[220]},{"name":"DISPID_Factoid","features":[220]},{"name":"DISPID_GetGestStatus","features":[220]},{"name":"DISPID_Hwnd","features":[220]},{"name":"DISPID_IAddStrokesAtRectangle","features":[220]},{"name":"DISPID_ICAutoRedraw","features":[220]},{"name":"DISPID_ICBId","features":[220]},{"name":"DISPID_ICBName","features":[220]},{"name":"DISPID_ICBState","features":[220]},{"name":"DISPID_ICBsCount","features":[220]},{"name":"DISPID_ICBsItem","features":[220]},{"name":"DISPID_ICBs_NewEnum","features":[220]},{"name":"DISPID_ICCollectingInk","features":[220]},{"name":"DISPID_ICCollectionMode","features":[220]},{"name":"DISPID_ICCursors","features":[220]},{"name":"DISPID_ICDefaultDrawingAttributes","features":[220]},{"name":"DISPID_ICDesiredPacketDescription","features":[220]},{"name":"DISPID_ICDynamicRendering","features":[220]},{"name":"DISPID_ICECursorButtonDown","features":[220]},{"name":"DISPID_ICECursorButtonUp","features":[220]},{"name":"DISPID_ICECursorDown","features":[220]},{"name":"DISPID_ICECursorInRange","features":[220]},{"name":"DISPID_ICECursorOutOfRange","features":[220]},{"name":"DISPID_ICEGesture","features":[220]},{"name":"DISPID_ICENewInAirPackets","features":[220]},{"name":"DISPID_ICENewPackets","features":[220]},{"name":"DISPID_ICEStroke","features":[220]},{"name":"DISPID_ICESystemGesture","features":[220]},{"name":"DISPID_ICETabletAdded","features":[220]},{"name":"DISPID_ICETabletRemoved","features":[220]},{"name":"DISPID_ICEnabled","features":[220]},{"name":"DISPID_ICGetEventInterest","features":[220]},{"name":"DISPID_ICGetGestureStatus","features":[220]},{"name":"DISPID_ICGetWindowInputRectangle","features":[220]},{"name":"DISPID_ICHwnd","features":[220]},{"name":"DISPID_ICInk","features":[220]},{"name":"DISPID_ICMarginX","features":[220]},{"name":"DISPID_ICMarginY","features":[220]},{"name":"DISPID_ICMouseIcon","features":[220]},{"name":"DISPID_ICMousePointer","features":[220]},{"name":"DISPID_ICPaint","features":[220]},{"name":"DISPID_ICRenderer","features":[220]},{"name":"DISPID_ICSetAllTabletsMode","features":[220]},{"name":"DISPID_ICSetEventInterest","features":[220]},{"name":"DISPID_ICSetGestureStatus","features":[220]},{"name":"DISPID_ICSetSingleTabletIntegratedMode","features":[220]},{"name":"DISPID_ICSetWindowInputRectangle","features":[220]},{"name":"DISPID_ICSsAdd","features":[220]},{"name":"DISPID_ICSsClear","features":[220]},{"name":"DISPID_ICSsCount","features":[220]},{"name":"DISPID_ICSsItem","features":[220]},{"name":"DISPID_ICSsRemove","features":[220]},{"name":"DISPID_ICSs_NewEnum","features":[220]},{"name":"DISPID_ICSupportHighContrastInk","features":[220]},{"name":"DISPID_ICTablet","features":[220]},{"name":"DISPID_ICText","features":[220]},{"name":"DISPID_ICanPaste","features":[220]},{"name":"DISPID_IClip","features":[220]},{"name":"DISPID_IClipboardCopy","features":[220]},{"name":"DISPID_IClipboardCopyWithRectangle","features":[220]},{"name":"DISPID_IClipboardPaste","features":[220]},{"name":"DISPID_IClone","features":[220]},{"name":"DISPID_ICreateStroke","features":[220]},{"name":"DISPID_ICreateStrokeFromPoints","features":[220]},{"name":"DISPID_ICreateStrokes","features":[220]},{"name":"DISPID_ICsCount","features":[220]},{"name":"DISPID_ICsItem","features":[220]},{"name":"DISPID_ICs_NewEnum","features":[220]},{"name":"DISPID_ICsrButtons","features":[220]},{"name":"DISPID_ICsrDrawingAttributes","features":[220]},{"name":"DISPID_ICsrId","features":[220]},{"name":"DISPID_ICsrInverted","features":[220]},{"name":"DISPID_ICsrName","features":[220]},{"name":"DISPID_ICsrTablet","features":[220]},{"name":"DISPID_ICustomStrokes","features":[220]},{"name":"DISPID_IDeleteStroke","features":[220]},{"name":"DISPID_IDeleteStrokes","features":[220]},{"name":"DISPID_IDirty","features":[220]},{"name":"DISPID_IEInkAdded","features":[220]},{"name":"DISPID_IEInkDeleted","features":[220]},{"name":"DISPID_IEPData","features":[220]},{"name":"DISPID_IEPGuid","features":[220]},{"name":"DISPID_IEPsAdd","features":[220]},{"name":"DISPID_IEPsClear","features":[220]},{"name":"DISPID_IEPsCount","features":[220]},{"name":"DISPID_IEPsDoesPropertyExist","features":[220]},{"name":"DISPID_IEPsItem","features":[220]},{"name":"DISPID_IEPsRemove","features":[220]},{"name":"DISPID_IEPs_NewEnum","features":[220]},{"name":"DISPID_IExtendedProperties","features":[220]},{"name":"DISPID_IExtractStrokes","features":[220]},{"name":"DISPID_IExtractWithRectangle","features":[220]},{"name":"DISPID_IGConfidence","features":[220]},{"name":"DISPID_IGGetHotPoint","features":[220]},{"name":"DISPID_IGId","features":[220]},{"name":"DISPID_IGetBoundingBox","features":[220]},{"name":"DISPID_IHitTestCircle","features":[220]},{"name":"DISPID_IHitTestWithLasso","features":[220]},{"name":"DISPID_IHitTestWithRectangle","features":[220]},{"name":"DISPID_IInkDivider_Divide","features":[220]},{"name":"DISPID_IInkDivider_LineHeight","features":[220]},{"name":"DISPID_IInkDivider_RecognizerContext","features":[220]},{"name":"DISPID_IInkDivider_Strokes","features":[220]},{"name":"DISPID_IInkDivisionResult_ResultByType","features":[220]},{"name":"DISPID_IInkDivisionResult_Strokes","features":[220]},{"name":"DISPID_IInkDivisionUnit_DivisionType","features":[220]},{"name":"DISPID_IInkDivisionUnit_RecognizedString","features":[220]},{"name":"DISPID_IInkDivisionUnit_RotationTransform","features":[220]},{"name":"DISPID_IInkDivisionUnit_Strokes","features":[220]},{"name":"DISPID_IInkDivisionUnits_Count","features":[220]},{"name":"DISPID_IInkDivisionUnits_Item","features":[220]},{"name":"DISPID_IInkDivisionUnits_NewEnum","features":[220]},{"name":"DISPID_ILoad","features":[220]},{"name":"DISPID_INearestPoint","features":[220]},{"name":"DISPID_IOAttachMode","features":[220]},{"name":"DISPID_IODraw","features":[220]},{"name":"DISPID_IOEPainted","features":[220]},{"name":"DISPID_IOEPainting","features":[220]},{"name":"DISPID_IOESelectionChanged","features":[220]},{"name":"DISPID_IOESelectionChanging","features":[220]},{"name":"DISPID_IOESelectionMoved","features":[220]},{"name":"DISPID_IOESelectionMoving","features":[220]},{"name":"DISPID_IOESelectionResized","features":[220]},{"name":"DISPID_IOESelectionResizing","features":[220]},{"name":"DISPID_IOEStrokesDeleted","features":[220]},{"name":"DISPID_IOEStrokesDeleting","features":[220]},{"name":"DISPID_IOEditingMode","features":[220]},{"name":"DISPID_IOEraserMode","features":[220]},{"name":"DISPID_IOEraserWidth","features":[220]},{"name":"DISPID_IOHitTestSelection","features":[220]},{"name":"DISPID_IOSelection","features":[220]},{"name":"DISPID_IOSupportHighContrastSelectionUI","features":[220]},{"name":"DISPID_IPBackColor","features":[220]},{"name":"DISPID_IPEChangeUICues","features":[220]},{"name":"DISPID_IPEClick","features":[220]},{"name":"DISPID_IPEDblClick","features":[220]},{"name":"DISPID_IPEInvalidated","features":[220]},{"name":"DISPID_IPEKeyDown","features":[220]},{"name":"DISPID_IPEKeyPress","features":[220]},{"name":"DISPID_IPEKeyUp","features":[220]},{"name":"DISPID_IPEMouseDown","features":[220]},{"name":"DISPID_IPEMouseEnter","features":[220]},{"name":"DISPID_IPEMouseHover","features":[220]},{"name":"DISPID_IPEMouseLeave","features":[220]},{"name":"DISPID_IPEMouseMove","features":[220]},{"name":"DISPID_IPEMouseUp","features":[220]},{"name":"DISPID_IPEMouseWheel","features":[220]},{"name":"DISPID_IPEResize","features":[220]},{"name":"DISPID_IPESizeChanged","features":[220]},{"name":"DISPID_IPESizeModeChanged","features":[220]},{"name":"DISPID_IPEStyleChanged","features":[220]},{"name":"DISPID_IPESystemColorsChanged","features":[220]},{"name":"DISPID_IPInkEnabled","features":[220]},{"name":"DISPID_IPPicture","features":[220]},{"name":"DISPID_IPSizeMode","features":[220]},{"name":"DISPID_IRBottom","features":[220]},{"name":"DISPID_IRData","features":[220]},{"name":"DISPID_IRDraw","features":[220]},{"name":"DISPID_IRDrawStroke","features":[220]},{"name":"DISPID_IRERecognition","features":[220]},{"name":"DISPID_IRERecognitionWithAlternates","features":[220]},{"name":"DISPID_IRGColumns","features":[220]},{"name":"DISPID_IRGDrawnBox","features":[220]},{"name":"DISPID_IRGGuideData","features":[220]},{"name":"DISPID_IRGMidline","features":[220]},{"name":"DISPID_IRGRows","features":[220]},{"name":"DISPID_IRGWritingBox","features":[220]},{"name":"DISPID_IRGetObjectTransform","features":[220]},{"name":"DISPID_IRGetRectangle","features":[220]},{"name":"DISPID_IRGetViewTransform","features":[220]},{"name":"DISPID_IRInkSpaceToPixel","features":[220]},{"name":"DISPID_IRInkSpaceToPixelFromPoints","features":[220]},{"name":"DISPID_IRLeft","features":[220]},{"name":"DISPID_IRMeasure","features":[220]},{"name":"DISPID_IRMeasureStroke","features":[220]},{"name":"DISPID_IRMove","features":[220]},{"name":"DISPID_IRPixelToInkSpace","features":[220]},{"name":"DISPID_IRPixelToInkSpaceFromPoints","features":[220]},{"name":"DISPID_IRRight","features":[220]},{"name":"DISPID_IRRotate","features":[220]},{"name":"DISPID_IRScale","features":[220]},{"name":"DISPID_IRSetObjectTransform","features":[220]},{"name":"DISPID_IRSetRectangle","features":[220]},{"name":"DISPID_IRSetViewTransform","features":[220]},{"name":"DISPID_IRTop","features":[220]},{"name":"DISPID_IRecoCtx2_EnabledUnicodeRanges","features":[220]},{"name":"DISPID_IRecoCtx_BackgroundRecognize","features":[220]},{"name":"DISPID_IRecoCtx_BackgroundRecognizeWithAlternates","features":[220]},{"name":"DISPID_IRecoCtx_CharacterAutoCompletionMode","features":[220]},{"name":"DISPID_IRecoCtx_Clone","features":[220]},{"name":"DISPID_IRecoCtx_EndInkInput","features":[220]},{"name":"DISPID_IRecoCtx_Factoid","features":[220]},{"name":"DISPID_IRecoCtx_Flags","features":[220]},{"name":"DISPID_IRecoCtx_Guide","features":[220]},{"name":"DISPID_IRecoCtx_IsStringSupported","features":[220]},{"name":"DISPID_IRecoCtx_PrefixText","features":[220]},{"name":"DISPID_IRecoCtx_Recognize","features":[220]},{"name":"DISPID_IRecoCtx_Recognizer","features":[220]},{"name":"DISPID_IRecoCtx_StopBackgroundRecognition","features":[220]},{"name":"DISPID_IRecoCtx_StopRecognition","features":[220]},{"name":"DISPID_IRecoCtx_Strokes","features":[220]},{"name":"DISPID_IRecoCtx_SuffixText","features":[220]},{"name":"DISPID_IRecoCtx_WordList","features":[220]},{"name":"DISPID_IRecosCount","features":[220]},{"name":"DISPID_IRecosGetDefaultRecognizer","features":[220]},{"name":"DISPID_IRecosItem","features":[220]},{"name":"DISPID_IRecos_NewEnum","features":[220]},{"name":"DISPID_ISDBezierCusps","features":[220]},{"name":"DISPID_ISDBezierPoints","features":[220]},{"name":"DISPID_ISDClip","features":[220]},{"name":"DISPID_ISDDeleted","features":[220]},{"name":"DISPID_ISDDrawingAttributes","features":[220]},{"name":"DISPID_ISDExtendedProperties","features":[220]},{"name":"DISPID_ISDFindIntersections","features":[220]},{"name":"DISPID_ISDGetBoundingBox","features":[220]},{"name":"DISPID_ISDGetFlattenedBezierPoints","features":[220]},{"name":"DISPID_ISDGetPacketData","features":[220]},{"name":"DISPID_ISDGetPacketDescriptionPropertyMetrics","features":[220]},{"name":"DISPID_ISDGetPacketValuesByProperty","features":[220]},{"name":"DISPID_ISDGetPoints","features":[220]},{"name":"DISPID_ISDGetRectangleIntersections","features":[220]},{"name":"DISPID_ISDHitTestCircle","features":[220]},{"name":"DISPID_ISDID","features":[220]},{"name":"DISPID_ISDInk","features":[220]},{"name":"DISPID_ISDInkIndex","features":[220]},{"name":"DISPID_ISDMove","features":[220]},{"name":"DISPID_ISDNearestPoint","features":[220]},{"name":"DISPID_ISDPacketCount","features":[220]},{"name":"DISPID_ISDPacketDescription","features":[220]},{"name":"DISPID_ISDPacketSize","features":[220]},{"name":"DISPID_ISDPolylineCusps","features":[220]},{"name":"DISPID_ISDRotate","features":[220]},{"name":"DISPID_ISDScale","features":[220]},{"name":"DISPID_ISDScaleToRectangle","features":[220]},{"name":"DISPID_ISDSelfIntersections","features":[220]},{"name":"DISPID_ISDSetPacketValuesByProperty","features":[220]},{"name":"DISPID_ISDSetPoints","features":[220]},{"name":"DISPID_ISDShear","features":[220]},{"name":"DISPID_ISDSplit","features":[220]},{"name":"DISPID_ISDTransform","features":[220]},{"name":"DISPID_ISave","features":[220]},{"name":"DISPID_ISsAdd","features":[220]},{"name":"DISPID_ISsAddStrokes","features":[220]},{"name":"DISPID_ISsClip","features":[220]},{"name":"DISPID_ISsCount","features":[220]},{"name":"DISPID_ISsGetBoundingBox","features":[220]},{"name":"DISPID_ISsInk","features":[220]},{"name":"DISPID_ISsItem","features":[220]},{"name":"DISPID_ISsModifyDrawingAttributes","features":[220]},{"name":"DISPID_ISsMove","features":[220]},{"name":"DISPID_ISsRecognitionResult","features":[220]},{"name":"DISPID_ISsRemove","features":[220]},{"name":"DISPID_ISsRemoveRecognitionResult","features":[220]},{"name":"DISPID_ISsRemoveStrokes","features":[220]},{"name":"DISPID_ISsRotate","features":[220]},{"name":"DISPID_ISsScale","features":[220]},{"name":"DISPID_ISsScaleToRectangle","features":[220]},{"name":"DISPID_ISsShear","features":[220]},{"name":"DISPID_ISsToString","features":[220]},{"name":"DISPID_ISsTransform","features":[220]},{"name":"DISPID_ISsValid","features":[220]},{"name":"DISPID_ISs_NewEnum","features":[220]},{"name":"DISPID_IStrokes","features":[220]},{"name":"DISPID_IT2DeviceKind","features":[220]},{"name":"DISPID_IT3IsMultiTouch","features":[220]},{"name":"DISPID_IT3MaximumCursors","features":[220]},{"name":"DISPID_ITData","features":[220]},{"name":"DISPID_ITGetTransform","features":[220]},{"name":"DISPID_ITHardwareCapabilities","features":[220]},{"name":"DISPID_ITIsPacketPropertySupported","features":[220]},{"name":"DISPID_ITMaximumInputRectangle","features":[220]},{"name":"DISPID_ITName","features":[220]},{"name":"DISPID_ITPlugAndPlayId","features":[220]},{"name":"DISPID_ITPropertyMetrics","features":[220]},{"name":"DISPID_ITReflect","features":[220]},{"name":"DISPID_ITReset","features":[220]},{"name":"DISPID_ITRotate","features":[220]},{"name":"DISPID_ITScale","features":[220]},{"name":"DISPID_ITSetTransform","features":[220]},{"name":"DISPID_ITShear","features":[220]},{"name":"DISPID_ITTranslate","features":[220]},{"name":"DISPID_ITeDx","features":[220]},{"name":"DISPID_ITeDy","features":[220]},{"name":"DISPID_ITeM11","features":[220]},{"name":"DISPID_ITeM12","features":[220]},{"name":"DISPID_ITeM21","features":[220]},{"name":"DISPID_ITeM22","features":[220]},{"name":"DISPID_ITsCount","features":[220]},{"name":"DISPID_ITsDefaultTablet","features":[220]},{"name":"DISPID_ITsIsPacketPropertySupported","features":[220]},{"name":"DISPID_ITsItem","features":[220]},{"name":"DISPID_ITs_NewEnum","features":[220]},{"name":"DISPID_IeeChange","features":[220]},{"name":"DISPID_IeeClick","features":[220]},{"name":"DISPID_IeeCursorDown","features":[220]},{"name":"DISPID_IeeDblClick","features":[220]},{"name":"DISPID_IeeGesture","features":[220]},{"name":"DISPID_IeeKeyDown","features":[220]},{"name":"DISPID_IeeKeyPress","features":[220]},{"name":"DISPID_IeeKeyUp","features":[220]},{"name":"DISPID_IeeMouseDown","features":[220]},{"name":"DISPID_IeeMouseMove","features":[220]},{"name":"DISPID_IeeMouseUp","features":[220]},{"name":"DISPID_IeeRecognitionResult","features":[220]},{"name":"DISPID_IeeSelChange","features":[220]},{"name":"DISPID_IeeStroke","features":[220]},{"name":"DISPID_Ink","features":[220]},{"name":"DISPID_InkCollector","features":[220]},{"name":"DISPID_InkCollectorEvent","features":[220]},{"name":"DISPID_InkCursor","features":[220]},{"name":"DISPID_InkCursorButton","features":[220]},{"name":"DISPID_InkCursorButtons","features":[220]},{"name":"DISPID_InkCursors","features":[220]},{"name":"DISPID_InkCustomStrokes","features":[220]},{"name":"DISPID_InkDivider","features":[220]},{"name":"DISPID_InkDivisionResult","features":[220]},{"name":"DISPID_InkDivisionUnit","features":[220]},{"name":"DISPID_InkDivisionUnits","features":[220]},{"name":"DISPID_InkDrawingAttributes","features":[220]},{"name":"DISPID_InkEdit","features":[220]},{"name":"DISPID_InkEditEvents","features":[220]},{"name":"DISPID_InkEvent","features":[220]},{"name":"DISPID_InkExtendedProperties","features":[220]},{"name":"DISPID_InkExtendedProperty","features":[220]},{"name":"DISPID_InkGesture","features":[220]},{"name":"DISPID_InkInsertMode","features":[220]},{"name":"DISPID_InkMode","features":[220]},{"name":"DISPID_InkRecoAlternate","features":[220]},{"name":"DISPID_InkRecoAlternate_AlternatesWithConstantPropertyValues","features":[220]},{"name":"DISPID_InkRecoAlternate_Ascender","features":[220]},{"name":"DISPID_InkRecoAlternate_Baseline","features":[220]},{"name":"DISPID_InkRecoAlternate_Confidence","features":[220]},{"name":"DISPID_InkRecoAlternate_ConfidenceAlternates","features":[220]},{"name":"DISPID_InkRecoAlternate_Descender","features":[220]},{"name":"DISPID_InkRecoAlternate_GetPropertyValue","features":[220]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromStrokeRanges","features":[220]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromTextRange","features":[220]},{"name":"DISPID_InkRecoAlternate_GetTextRangeFromStrokes","features":[220]},{"name":"DISPID_InkRecoAlternate_LineAlternates","features":[220]},{"name":"DISPID_InkRecoAlternate_LineNumber","features":[220]},{"name":"DISPID_InkRecoAlternate_Midline","features":[220]},{"name":"DISPID_InkRecoAlternate_String","features":[220]},{"name":"DISPID_InkRecoAlternate_Strokes","features":[220]},{"name":"DISPID_InkRecoContext","features":[220]},{"name":"DISPID_InkRecoContext2","features":[220]},{"name":"DISPID_InkRecognitionAlternates","features":[220]},{"name":"DISPID_InkRecognitionAlternates_Count","features":[220]},{"name":"DISPID_InkRecognitionAlternates_Item","features":[220]},{"name":"DISPID_InkRecognitionAlternates_NewEnum","features":[220]},{"name":"DISPID_InkRecognitionAlternates_Strokes","features":[220]},{"name":"DISPID_InkRecognitionEvent","features":[220]},{"name":"DISPID_InkRecognitionResult","features":[220]},{"name":"DISPID_InkRecognitionResult_AlternatesFromSelection","features":[220]},{"name":"DISPID_InkRecognitionResult_ModifyTopAlternate","features":[220]},{"name":"DISPID_InkRecognitionResult_SetResultOnStrokes","features":[220]},{"name":"DISPID_InkRecognitionResult_Strokes","features":[220]},{"name":"DISPID_InkRecognitionResult_TopAlternate","features":[220]},{"name":"DISPID_InkRecognitionResult_TopConfidence","features":[220]},{"name":"DISPID_InkRecognitionResult_TopString","features":[220]},{"name":"DISPID_InkRecognizer","features":[220]},{"name":"DISPID_InkRecognizer2","features":[220]},{"name":"DISPID_InkRecognizerGuide","features":[220]},{"name":"DISPID_InkRecognizers","features":[220]},{"name":"DISPID_InkRectangle","features":[220]},{"name":"DISPID_InkRenderer","features":[220]},{"name":"DISPID_InkStrokeDisp","features":[220]},{"name":"DISPID_InkStrokes","features":[220]},{"name":"DISPID_InkTablet","features":[220]},{"name":"DISPID_InkTablet2","features":[220]},{"name":"DISPID_InkTablet3","features":[220]},{"name":"DISPID_InkTablets","features":[220]},{"name":"DISPID_InkTransform","features":[220]},{"name":"DISPID_InkWordList","features":[220]},{"name":"DISPID_InkWordList2","features":[220]},{"name":"DISPID_InkWordList2_AddWords","features":[220]},{"name":"DISPID_InkWordList_AddWord","features":[220]},{"name":"DISPID_InkWordList_Merge","features":[220]},{"name":"DISPID_InkWordList_RemoveWord","features":[220]},{"name":"DISPID_Locked","features":[220]},{"name":"DISPID_MICClear","features":[220]},{"name":"DISPID_MICClose","features":[220]},{"name":"DISPID_MICInsert","features":[220]},{"name":"DISPID_MICPaint","features":[220]},{"name":"DISPID_MathInputControlEvents","features":[220]},{"name":"DISPID_MaxLength","features":[220]},{"name":"DISPID_MultiLine","features":[220]},{"name":"DISPID_PIPAttachedEditWindow","features":[220]},{"name":"DISPID_PIPAutoShow","features":[220]},{"name":"DISPID_PIPBusy","features":[220]},{"name":"DISPID_PIPCommitPendingInput","features":[220]},{"name":"DISPID_PIPCurrentPanel","features":[220]},{"name":"DISPID_PIPDefaultPanel","features":[220]},{"name":"DISPID_PIPEInputFailed","features":[220]},{"name":"DISPID_PIPEPanelChanged","features":[220]},{"name":"DISPID_PIPEPanelMoving","features":[220]},{"name":"DISPID_PIPEVisibleChanged","features":[220]},{"name":"DISPID_PIPEnableTsf","features":[220]},{"name":"DISPID_PIPFactoid","features":[220]},{"name":"DISPID_PIPHeight","features":[220]},{"name":"DISPID_PIPHorizontalOffset","features":[220]},{"name":"DISPID_PIPLeft","features":[220]},{"name":"DISPID_PIPMoveTo","features":[220]},{"name":"DISPID_PIPRefresh","features":[220]},{"name":"DISPID_PIPTop","features":[220]},{"name":"DISPID_PIPVerticalOffset","features":[220]},{"name":"DISPID_PIPVisible","features":[220]},{"name":"DISPID_PIPWidth","features":[220]},{"name":"DISPID_PenInputPanel","features":[220]},{"name":"DISPID_PenInputPanelEvents","features":[220]},{"name":"DISPID_RTSelLength","features":[220]},{"name":"DISPID_RTSelStart","features":[220]},{"name":"DISPID_RTSelText","features":[220]},{"name":"DISPID_RecoCapabilities","features":[220]},{"name":"DISPID_RecoClsid","features":[220]},{"name":"DISPID_RecoCreateRecognizerContext","features":[220]},{"name":"DISPID_RecoId","features":[220]},{"name":"DISPID_RecoLanguageID","features":[220]},{"name":"DISPID_RecoName","features":[220]},{"name":"DISPID_RecoPreferredPacketDescription","features":[220]},{"name":"DISPID_RecoSupportedProperties","features":[220]},{"name":"DISPID_RecoTimeout","features":[220]},{"name":"DISPID_RecoUnicodeRanges","features":[220]},{"name":"DISPID_RecoVendor","features":[220]},{"name":"DISPID_Recognize","features":[220]},{"name":"DISPID_Recognizer","features":[220]},{"name":"DISPID_Refresh","features":[220]},{"name":"DISPID_SEStrokesAdded","features":[220]},{"name":"DISPID_SEStrokesRemoved","features":[220]},{"name":"DISPID_ScrollBars","features":[220]},{"name":"DISPID_SelAlignment","features":[220]},{"name":"DISPID_SelBold","features":[220]},{"name":"DISPID_SelCharOffset","features":[220]},{"name":"DISPID_SelColor","features":[220]},{"name":"DISPID_SelFontName","features":[220]},{"name":"DISPID_SelFontSize","features":[220]},{"name":"DISPID_SelInk","features":[220]},{"name":"DISPID_SelInksDisplayMode","features":[220]},{"name":"DISPID_SelItalic","features":[220]},{"name":"DISPID_SelRTF","features":[220]},{"name":"DISPID_SelUnderline","features":[220]},{"name":"DISPID_SetGestStatus","features":[220]},{"name":"DISPID_Status","features":[220]},{"name":"DISPID_StrokeEvent","features":[220]},{"name":"DISPID_Text","features":[220]},{"name":"DISPID_TextRTF","features":[220]},{"name":"DISPID_UseMouseForInput","features":[220]},{"name":"DYNAMIC_RENDERER_CACHED_DATA","features":[220]},{"name":"DestroyContext","features":[220]},{"name":"DestroyRecognizer","features":[220]},{"name":"DestroyWordList","features":[220]},{"name":"DockedBottom","features":[220]},{"name":"DockedTop","features":[220]},{"name":"DynamicRenderer","features":[220]},{"name":"EM_GETDRAWATTR","features":[220]},{"name":"EM_GETFACTOID","features":[220]},{"name":"EM_GETGESTURESTATUS","features":[220]},{"name":"EM_GETINKINSERTMODE","features":[220]},{"name":"EM_GETINKMODE","features":[220]},{"name":"EM_GETMOUSEICON","features":[220]},{"name":"EM_GETMOUSEPOINTER","features":[220]},{"name":"EM_GETRECOGNIZER","features":[220]},{"name":"EM_GETRECOTIMEOUT","features":[220]},{"name":"EM_GETSELINK","features":[220]},{"name":"EM_GETSELINKDISPLAYMODE","features":[220]},{"name":"EM_GETSTATUS","features":[220]},{"name":"EM_GETUSEMOUSEFORINPUT","features":[220]},{"name":"EM_RECOGNIZE","features":[220]},{"name":"EM_SETDRAWATTR","features":[220]},{"name":"EM_SETFACTOID","features":[220]},{"name":"EM_SETGESTURESTATUS","features":[220]},{"name":"EM_SETINKINSERTMODE","features":[220]},{"name":"EM_SETINKMODE","features":[220]},{"name":"EM_SETMOUSEICON","features":[220]},{"name":"EM_SETMOUSEPOINTER","features":[220]},{"name":"EM_SETRECOGNIZER","features":[220]},{"name":"EM_SETRECOTIMEOUT","features":[220]},{"name":"EM_SETSELINK","features":[220]},{"name":"EM_SETSELINKDISPLAYMODE","features":[220]},{"name":"EM_SETUSEMOUSEFORINPUT","features":[220]},{"name":"EndInkInput","features":[220]},{"name":"EventMask","features":[220]},{"name":"EventMask_All","features":[220]},{"name":"EventMask_CorrectionModeChanged","features":[220]},{"name":"EventMask_CorrectionModeChanging","features":[220]},{"name":"EventMask_InPlaceSizeChanged","features":[220]},{"name":"EventMask_InPlaceSizeChanging","features":[220]},{"name":"EventMask_InPlaceStateChanged","features":[220]},{"name":"EventMask_InPlaceStateChanging","features":[220]},{"name":"EventMask_InPlaceVisibilityChanged","features":[220]},{"name":"EventMask_InPlaceVisibilityChanging","features":[220]},{"name":"EventMask_InputAreaChanged","features":[220]},{"name":"EventMask_InputAreaChanging","features":[220]},{"name":"EventMask_TextInserted","features":[220]},{"name":"EventMask_TextInserting","features":[220]},{"name":"FACILITY_INK","features":[220]},{"name":"FACTOID_BOPOMOFO","features":[220]},{"name":"FACTOID_CHINESESIMPLECOMMON","features":[220]},{"name":"FACTOID_CHINESETRADITIONALCOMMON","features":[220]},{"name":"FACTOID_CURRENCY","features":[220]},{"name":"FACTOID_DATE","features":[220]},{"name":"FACTOID_DEFAULT","features":[220]},{"name":"FACTOID_DIGIT","features":[220]},{"name":"FACTOID_EMAIL","features":[220]},{"name":"FACTOID_FILENAME","features":[220]},{"name":"FACTOID_HANGULCOMMON","features":[220]},{"name":"FACTOID_HANGULRARE","features":[220]},{"name":"FACTOID_HIRAGANA","features":[220]},{"name":"FACTOID_JAMO","features":[220]},{"name":"FACTOID_JAPANESECOMMON","features":[220]},{"name":"FACTOID_KANJICOMMON","features":[220]},{"name":"FACTOID_KANJIRARE","features":[220]},{"name":"FACTOID_KATAKANA","features":[220]},{"name":"FACTOID_KOREANCOMMON","features":[220]},{"name":"FACTOID_LOWERCHAR","features":[220]},{"name":"FACTOID_NONE","features":[220]},{"name":"FACTOID_NUMBER","features":[220]},{"name":"FACTOID_NUMBERSIMPLE","features":[220]},{"name":"FACTOID_ONECHAR","features":[220]},{"name":"FACTOID_PERCENT","features":[220]},{"name":"FACTOID_POSTALCODE","features":[220]},{"name":"FACTOID_PUNCCHAR","features":[220]},{"name":"FACTOID_SYSTEMDICTIONARY","features":[220]},{"name":"FACTOID_TELEPHONE","features":[220]},{"name":"FACTOID_TIME","features":[220]},{"name":"FACTOID_UPPERCHAR","features":[220]},{"name":"FACTOID_WEB","features":[220]},{"name":"FACTOID_WORDLIST","features":[220]},{"name":"FLICKACTION_COMMANDCODE","features":[220]},{"name":"FLICKACTION_COMMANDCODE_APPCOMMAND","features":[220]},{"name":"FLICKACTION_COMMANDCODE_CUSTOMKEY","features":[220]},{"name":"FLICKACTION_COMMANDCODE_KEYMODIFIER","features":[220]},{"name":"FLICKACTION_COMMANDCODE_NULL","features":[220]},{"name":"FLICKACTION_COMMANDCODE_SCROLL","features":[220]},{"name":"FLICKDIRECTION","features":[220]},{"name":"FLICKDIRECTION_DOWN","features":[220]},{"name":"FLICKDIRECTION_DOWNLEFT","features":[220]},{"name":"FLICKDIRECTION_DOWNRIGHT","features":[220]},{"name":"FLICKDIRECTION_INVALID","features":[220]},{"name":"FLICKDIRECTION_LEFT","features":[220]},{"name":"FLICKDIRECTION_MIN","features":[220]},{"name":"FLICKDIRECTION_RIGHT","features":[220]},{"name":"FLICKDIRECTION_UP","features":[220]},{"name":"FLICKDIRECTION_UPLEFT","features":[220]},{"name":"FLICKDIRECTION_UPRIGHT","features":[220]},{"name":"FLICKMODE","features":[220]},{"name":"FLICKMODE_DEFAULT","features":[220]},{"name":"FLICKMODE_LEARNING","features":[220]},{"name":"FLICKMODE_MAX","features":[220]},{"name":"FLICKMODE_MIN","features":[220]},{"name":"FLICKMODE_OFF","features":[220]},{"name":"FLICKMODE_ON","features":[220]},{"name":"FLICK_DATA","features":[220]},{"name":"FLICK_POINT","features":[220]},{"name":"FLICK_WM_HANDLED_MASK","features":[220]},{"name":"Floating","features":[220]},{"name":"GESTURE_ARROW_DOWN","features":[220]},{"name":"GESTURE_ARROW_LEFT","features":[220]},{"name":"GESTURE_ARROW_RIGHT","features":[220]},{"name":"GESTURE_ARROW_UP","features":[220]},{"name":"GESTURE_ASTERISK","features":[220]},{"name":"GESTURE_BRACE_LEFT","features":[220]},{"name":"GESTURE_BRACE_OVER","features":[220]},{"name":"GESTURE_BRACE_RIGHT","features":[220]},{"name":"GESTURE_BRACE_UNDER","features":[220]},{"name":"GESTURE_BRACKET_LEFT","features":[220]},{"name":"GESTURE_BRACKET_OVER","features":[220]},{"name":"GESTURE_BRACKET_RIGHT","features":[220]},{"name":"GESTURE_BRACKET_UNDER","features":[220]},{"name":"GESTURE_BULLET","features":[220]},{"name":"GESTURE_BULLET_CROSS","features":[220]},{"name":"GESTURE_CHECK","features":[220]},{"name":"GESTURE_CHEVRON_DOWN","features":[220]},{"name":"GESTURE_CHEVRON_LEFT","features":[220]},{"name":"GESTURE_CHEVRON_RIGHT","features":[220]},{"name":"GESTURE_CHEVRON_UP","features":[220]},{"name":"GESTURE_CIRCLE","features":[220]},{"name":"GESTURE_CIRCLE_CIRCLE","features":[220]},{"name":"GESTURE_CIRCLE_CROSS","features":[220]},{"name":"GESTURE_CIRCLE_LINE_HORZ","features":[220]},{"name":"GESTURE_CIRCLE_LINE_VERT","features":[220]},{"name":"GESTURE_CIRCLE_TAP","features":[220]},{"name":"GESTURE_CLOSEUP","features":[220]},{"name":"GESTURE_CROSS","features":[220]},{"name":"GESTURE_CURLICUE","features":[220]},{"name":"GESTURE_DATA","features":[220]},{"name":"GESTURE_DIAGONAL_LEFTDOWN","features":[220]},{"name":"GESTURE_DIAGONAL_LEFTUP","features":[220]},{"name":"GESTURE_DIAGONAL_RIGHTDOWN","features":[220]},{"name":"GESTURE_DIAGONAL_RIGHTUP","features":[220]},{"name":"GESTURE_DIGIT_0","features":[220]},{"name":"GESTURE_DIGIT_1","features":[220]},{"name":"GESTURE_DIGIT_2","features":[220]},{"name":"GESTURE_DIGIT_3","features":[220]},{"name":"GESTURE_DIGIT_4","features":[220]},{"name":"GESTURE_DIGIT_5","features":[220]},{"name":"GESTURE_DIGIT_6","features":[220]},{"name":"GESTURE_DIGIT_7","features":[220]},{"name":"GESTURE_DIGIT_8","features":[220]},{"name":"GESTURE_DIGIT_9","features":[220]},{"name":"GESTURE_DOLLAR","features":[220]},{"name":"GESTURE_DOUBLE_ARROW_DOWN","features":[220]},{"name":"GESTURE_DOUBLE_ARROW_LEFT","features":[220]},{"name":"GESTURE_DOUBLE_ARROW_RIGHT","features":[220]},{"name":"GESTURE_DOUBLE_ARROW_UP","features":[220]},{"name":"GESTURE_DOUBLE_CIRCLE","features":[220]},{"name":"GESTURE_DOUBLE_CURLICUE","features":[220]},{"name":"GESTURE_DOUBLE_DOWN","features":[220]},{"name":"GESTURE_DOUBLE_LEFT","features":[220]},{"name":"GESTURE_DOUBLE_RIGHT","features":[220]},{"name":"GESTURE_DOUBLE_TAP","features":[220]},{"name":"GESTURE_DOUBLE_UP","features":[220]},{"name":"GESTURE_DOWN","features":[220]},{"name":"GESTURE_DOWN_ARROW_LEFT","features":[220]},{"name":"GESTURE_DOWN_ARROW_RIGHT","features":[220]},{"name":"GESTURE_DOWN_LEFT","features":[220]},{"name":"GESTURE_DOWN_LEFT_LONG","features":[220]},{"name":"GESTURE_DOWN_RIGHT","features":[220]},{"name":"GESTURE_DOWN_RIGHT_LONG","features":[220]},{"name":"GESTURE_DOWN_UP","features":[220]},{"name":"GESTURE_EXCLAMATION","features":[220]},{"name":"GESTURE_INFINITY","features":[220]},{"name":"GESTURE_LEFT","features":[220]},{"name":"GESTURE_LEFT_ARROW_DOWN","features":[220]},{"name":"GESTURE_LEFT_ARROW_UP","features":[220]},{"name":"GESTURE_LEFT_DOWN","features":[220]},{"name":"GESTURE_LEFT_RIGHT","features":[220]},{"name":"GESTURE_LEFT_UP","features":[220]},{"name":"GESTURE_LETTER_A","features":[220]},{"name":"GESTURE_LETTER_B","features":[220]},{"name":"GESTURE_LETTER_C","features":[220]},{"name":"GESTURE_LETTER_D","features":[220]},{"name":"GESTURE_LETTER_E","features":[220]},{"name":"GESTURE_LETTER_F","features":[220]},{"name":"GESTURE_LETTER_G","features":[220]},{"name":"GESTURE_LETTER_H","features":[220]},{"name":"GESTURE_LETTER_I","features":[220]},{"name":"GESTURE_LETTER_J","features":[220]},{"name":"GESTURE_LETTER_K","features":[220]},{"name":"GESTURE_LETTER_L","features":[220]},{"name":"GESTURE_LETTER_M","features":[220]},{"name":"GESTURE_LETTER_N","features":[220]},{"name":"GESTURE_LETTER_O","features":[220]},{"name":"GESTURE_LETTER_P","features":[220]},{"name":"GESTURE_LETTER_Q","features":[220]},{"name":"GESTURE_LETTER_R","features":[220]},{"name":"GESTURE_LETTER_S","features":[220]},{"name":"GESTURE_LETTER_T","features":[220]},{"name":"GESTURE_LETTER_U","features":[220]},{"name":"GESTURE_LETTER_V","features":[220]},{"name":"GESTURE_LETTER_W","features":[220]},{"name":"GESTURE_LETTER_X","features":[220]},{"name":"GESTURE_LETTER_Y","features":[220]},{"name":"GESTURE_LETTER_Z","features":[220]},{"name":"GESTURE_NULL","features":[220]},{"name":"GESTURE_OPENUP","features":[220]},{"name":"GESTURE_PARAGRAPH","features":[220]},{"name":"GESTURE_PLUS","features":[220]},{"name":"GESTURE_QUAD_TAP","features":[220]},{"name":"GESTURE_QUESTION","features":[220]},{"name":"GESTURE_RECTANGLE","features":[220]},{"name":"GESTURE_RIGHT","features":[220]},{"name":"GESTURE_RIGHT_ARROW_DOWN","features":[220]},{"name":"GESTURE_RIGHT_ARROW_UP","features":[220]},{"name":"GESTURE_RIGHT_DOWN","features":[220]},{"name":"GESTURE_RIGHT_LEFT","features":[220]},{"name":"GESTURE_RIGHT_UP","features":[220]},{"name":"GESTURE_SCRATCHOUT","features":[220]},{"name":"GESTURE_SECTION","features":[220]},{"name":"GESTURE_SEMICIRCLE_LEFT","features":[220]},{"name":"GESTURE_SEMICIRCLE_RIGHT","features":[220]},{"name":"GESTURE_SHARP","features":[220]},{"name":"GESTURE_SQUARE","features":[220]},{"name":"GESTURE_SQUIGGLE","features":[220]},{"name":"GESTURE_STAR","features":[220]},{"name":"GESTURE_SWAP","features":[220]},{"name":"GESTURE_TAP","features":[220]},{"name":"GESTURE_TRIANGLE","features":[220]},{"name":"GESTURE_TRIPLE_DOWN","features":[220]},{"name":"GESTURE_TRIPLE_LEFT","features":[220]},{"name":"GESTURE_TRIPLE_RIGHT","features":[220]},{"name":"GESTURE_TRIPLE_TAP","features":[220]},{"name":"GESTURE_TRIPLE_UP","features":[220]},{"name":"GESTURE_UP","features":[220]},{"name":"GESTURE_UP_ARROW_LEFT","features":[220]},{"name":"GESTURE_UP_ARROW_RIGHT","features":[220]},{"name":"GESTURE_UP_DOWN","features":[220]},{"name":"GESTURE_UP_LEFT","features":[220]},{"name":"GESTURE_UP_LEFT_LONG","features":[220]},{"name":"GESTURE_UP_RIGHT","features":[220]},{"name":"GESTURE_UP_RIGHT_LONG","features":[220]},{"name":"GET_DANDIDATE_FLAGS","features":[220]},{"name":"GUID_DYNAMIC_RENDERER_CACHED_DATA","features":[220]},{"name":"GUID_GESTURE_DATA","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_ALTITUDE_ORIENTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_AZIMUTH_ORIENTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_BUTTON_PRESSURE","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_DEVICE_CONTACT_ID","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_FINGERCONTACTCONFIDENCE","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_HEIGHT","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_NORMAL_PRESSURE","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_PACKET_STATUS","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_PITCH_ROTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_ROLL_ROTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_SERIAL_NUMBER","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_TANGENT_PRESSURE","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_TIMER_TICK","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_TWIST_ORIENTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_WIDTH","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_X","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_X_TILT_ORIENTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_Y","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_YAW_ROTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_Y_TILT_ORIENTATION","features":[220]},{"name":"GUID_PACKETPROPERTY_GUID_Z","features":[220]},{"name":"GestureRecognizer","features":[220]},{"name":"GetAllRecognizers","features":[220]},{"name":"GetBestResultString","features":[220]},{"name":"GetLatticePtr","features":[220]},{"name":"GetLeftSeparator","features":[220]},{"name":"GetRecoAttributes","features":[220]},{"name":"GetResultPropertyList","features":[220]},{"name":"GetRightSeparator","features":[220]},{"name":"GetUnicodeRanges","features":[220]},{"name":"HRECOALT","features":[220]},{"name":"HRECOCONTEXT","features":[220]},{"name":"HRECOGNIZER","features":[220]},{"name":"HRECOLATTICE","features":[220]},{"name":"HRECOWORDLIST","features":[220]},{"name":"HandwrittenTextInsertion","features":[220]},{"name":"IAG_AllGestures","features":[220]},{"name":"IAG_ArrowDown","features":[220]},{"name":"IAG_ArrowLeft","features":[220]},{"name":"IAG_ArrowRight","features":[220]},{"name":"IAG_ArrowUp","features":[220]},{"name":"IAG_Check","features":[220]},{"name":"IAG_ChevronDown","features":[220]},{"name":"IAG_ChevronLeft","features":[220]},{"name":"IAG_ChevronRight","features":[220]},{"name":"IAG_ChevronUp","features":[220]},{"name":"IAG_Circle","features":[220]},{"name":"IAG_Curlicue","features":[220]},{"name":"IAG_DoubleCircle","features":[220]},{"name":"IAG_DoubleCurlicue","features":[220]},{"name":"IAG_DoubleTap","features":[220]},{"name":"IAG_Down","features":[220]},{"name":"IAG_DownLeft","features":[220]},{"name":"IAG_DownLeftLong","features":[220]},{"name":"IAG_DownRight","features":[220]},{"name":"IAG_DownRightLong","features":[220]},{"name":"IAG_DownUp","features":[220]},{"name":"IAG_Exclamation","features":[220]},{"name":"IAG_Left","features":[220]},{"name":"IAG_LeftDown","features":[220]},{"name":"IAG_LeftRight","features":[220]},{"name":"IAG_LeftUp","features":[220]},{"name":"IAG_NoGesture","features":[220]},{"name":"IAG_Right","features":[220]},{"name":"IAG_RightDown","features":[220]},{"name":"IAG_RightLeft","features":[220]},{"name":"IAG_RightUp","features":[220]},{"name":"IAG_Scratchout","features":[220]},{"name":"IAG_SemiCircleLeft","features":[220]},{"name":"IAG_SemiCircleRight","features":[220]},{"name":"IAG_Square","features":[220]},{"name":"IAG_Star","features":[220]},{"name":"IAG_Tap","features":[220]},{"name":"IAG_Triangle","features":[220]},{"name":"IAG_Up","features":[220]},{"name":"IAG_UpDown","features":[220]},{"name":"IAG_UpLeft","features":[220]},{"name":"IAG_UpLeftLong","features":[220]},{"name":"IAG_UpRight","features":[220]},{"name":"IAG_UpRightLong","features":[220]},{"name":"IBBM_CurveFit","features":[220]},{"name":"IBBM_Default","features":[220]},{"name":"IBBM_NoCurveFit","features":[220]},{"name":"IBBM_PointsOnly","features":[220]},{"name":"IBBM_Union","features":[220]},{"name":"ICBS_Down","features":[220]},{"name":"ICBS_Unavailable","features":[220]},{"name":"ICBS_Up","features":[220]},{"name":"ICB_Copy","features":[220]},{"name":"ICB_Cut","features":[220]},{"name":"ICB_Default","features":[220]},{"name":"ICB_DelayedCopy","features":[220]},{"name":"ICB_ExtractOnly","features":[220]},{"name":"ICEI_AllEvents","features":[220]},{"name":"ICEI_CursorButtonDown","features":[220]},{"name":"ICEI_CursorButtonUp","features":[220]},{"name":"ICEI_CursorDown","features":[220]},{"name":"ICEI_CursorInRange","features":[220]},{"name":"ICEI_CursorOutOfRange","features":[220]},{"name":"ICEI_DblClick","features":[220]},{"name":"ICEI_DefaultEvents","features":[220]},{"name":"ICEI_MouseDown","features":[220]},{"name":"ICEI_MouseMove","features":[220]},{"name":"ICEI_MouseUp","features":[220]},{"name":"ICEI_MouseWheel","features":[220]},{"name":"ICEI_NewInAirPackets","features":[220]},{"name":"ICEI_NewPackets","features":[220]},{"name":"ICEI_Stroke","features":[220]},{"name":"ICEI_SystemGesture","features":[220]},{"name":"ICEI_TabletAdded","features":[220]},{"name":"ICEI_TabletRemoved","features":[220]},{"name":"ICF_Bitmap","features":[220]},{"name":"ICF_CopyMask","features":[220]},{"name":"ICF_Default","features":[220]},{"name":"ICF_EnhancedMetafile","features":[220]},{"name":"ICF_InkSerializedFormat","features":[220]},{"name":"ICF_Metafile","features":[220]},{"name":"ICF_None","features":[220]},{"name":"ICF_PasteMask","features":[220]},{"name":"ICF_SketchInk","features":[220]},{"name":"ICF_TextInk","features":[220]},{"name":"ICM_GestureOnly","features":[220]},{"name":"ICM_InkAndGesture","features":[220]},{"name":"ICM_InkOnly","features":[220]},{"name":"IDM_Ink","features":[220]},{"name":"IDM_Text","features":[220]},{"name":"IDT_Drawing","features":[220]},{"name":"IDT_Line","features":[220]},{"name":"IDT_Paragraph","features":[220]},{"name":"IDT_Segment","features":[220]},{"name":"IDynamicRenderer","features":[220]},{"name":"IECN_GESTURE","features":[220]},{"name":"IECN_RECOGNITIONRESULT","features":[220]},{"name":"IECN_STROKE","features":[220]},{"name":"IECN__BASE","features":[220]},{"name":"IEC_GESTUREINFO","features":[1,41,42,40,220]},{"name":"IEC_RECOGNITIONRESULTINFO","features":[1,40,220]},{"name":"IEC_STROKEINFO","features":[1,40,220]},{"name":"IEC__BASE","features":[220]},{"name":"IEF_CopyFromOriginal","features":[220]},{"name":"IEF_Default","features":[220]},{"name":"IEF_RemoveFromOriginal","features":[220]},{"name":"IEM_Disabled","features":[220]},{"name":"IEM_Ink","features":[220]},{"name":"IEM_InkAndGesture","features":[220]},{"name":"IEM_InsertInk","features":[220]},{"name":"IEM_InsertText","features":[220]},{"name":"IES_Collecting","features":[220]},{"name":"IES_Idle","features":[220]},{"name":"IES_Recognizing","features":[220]},{"name":"IGestureRecognizer","features":[220]},{"name":"IHandwrittenTextInsertion","features":[220]},{"name":"IInk","features":[220]},{"name":"IInkCollector","features":[220]},{"name":"IInkCursor","features":[220]},{"name":"IInkCursorButton","features":[220]},{"name":"IInkCursorButtons","features":[220]},{"name":"IInkCursors","features":[220]},{"name":"IInkCustomStrokes","features":[220]},{"name":"IInkDisp","features":[220]},{"name":"IInkDivider","features":[220]},{"name":"IInkDivisionResult","features":[220]},{"name":"IInkDivisionUnit","features":[220]},{"name":"IInkDivisionUnits","features":[220]},{"name":"IInkDrawingAttributes","features":[220]},{"name":"IInkEdit","features":[220]},{"name":"IInkExtendedProperties","features":[220]},{"name":"IInkExtendedProperty","features":[220]},{"name":"IInkGesture","features":[220]},{"name":"IInkLineInfo","features":[220]},{"name":"IInkOverlay","features":[220]},{"name":"IInkPicture","features":[220]},{"name":"IInkRecognitionAlternate","features":[220]},{"name":"IInkRecognitionAlternates","features":[220]},{"name":"IInkRecognitionResult","features":[220]},{"name":"IInkRecognizer","features":[220]},{"name":"IInkRecognizer2","features":[220]},{"name":"IInkRecognizerContext","features":[220]},{"name":"IInkRecognizerContext2","features":[220]},{"name":"IInkRecognizerGuide","features":[220]},{"name":"IInkRecognizers","features":[220]},{"name":"IInkRectangle","features":[220]},{"name":"IInkRenderer","features":[220]},{"name":"IInkStrokeDisp","features":[220]},{"name":"IInkStrokes","features":[220]},{"name":"IInkTablet","features":[220]},{"name":"IInkTablet2","features":[220]},{"name":"IInkTablet3","features":[220]},{"name":"IInkTablets","features":[220]},{"name":"IInkTransform","features":[220]},{"name":"IInkWordList","features":[220]},{"name":"IInkWordList2","features":[220]},{"name":"IInputPanelWindowHandle","features":[220]},{"name":"IKM_Alt","features":[220]},{"name":"IKM_Control","features":[220]},{"name":"IKM_Shift","features":[220]},{"name":"IMF_BOLD","features":[220]},{"name":"IMF_FONT_SELECTED_IN_HDC","features":[220]},{"name":"IMF_ITALIC","features":[220]},{"name":"IMF_Left","features":[220]},{"name":"IMF_Middle","features":[220]},{"name":"IMF_Right","features":[220]},{"name":"IMP_Arrow","features":[220]},{"name":"IMP_ArrowHourglass","features":[220]},{"name":"IMP_ArrowQuestion","features":[220]},{"name":"IMP_Crosshair","features":[220]},{"name":"IMP_Custom","features":[220]},{"name":"IMP_Default","features":[220]},{"name":"IMP_Hand","features":[220]},{"name":"IMP_Hourglass","features":[220]},{"name":"IMP_Ibeam","features":[220]},{"name":"IMP_NoDrop","features":[220]},{"name":"IMP_SizeAll","features":[220]},{"name":"IMP_SizeNESW","features":[220]},{"name":"IMP_SizeNS","features":[220]},{"name":"IMP_SizeNWSE","features":[220]},{"name":"IMP_SizeWE","features":[220]},{"name":"IMP_UpArrow","features":[220]},{"name":"IMathInputControl","features":[220]},{"name":"INKEDIT_CLASS","features":[220]},{"name":"INKEDIT_CLASSW","features":[220]},{"name":"INKMETRIC","features":[1,220]},{"name":"INKRECOGNITIONPROPERTY_BOXNUMBER","features":[220]},{"name":"INKRECOGNITIONPROPERTY_CONFIDENCELEVEL","features":[220]},{"name":"INKRECOGNITIONPROPERTY_HOTPOINT","features":[220]},{"name":"INKRECOGNITIONPROPERTY_LINEMETRICS","features":[220]},{"name":"INKRECOGNITIONPROPERTY_LINENUMBER","features":[220]},{"name":"INKRECOGNITIONPROPERTY_MAXIMUMSTROKECOUNT","features":[220]},{"name":"INKRECOGNITIONPROPERTY_POINTSPERINCH","features":[220]},{"name":"INKRECOGNITIONPROPERTY_SEGMENTATION","features":[220]},{"name":"INK_METRIC_FLAGS","features":[220]},{"name":"INK_SERIALIZED_FORMAT","features":[220]},{"name":"IOAM_Behind","features":[220]},{"name":"IOAM_InFront","features":[220]},{"name":"IOEM_Delete","features":[220]},{"name":"IOEM_Ink","features":[220]},{"name":"IOEM_Select","features":[220]},{"name":"IOERM_PointErase","features":[220]},{"name":"IOERM_StrokeErase","features":[220]},{"name":"IPCM_Default","features":[220]},{"name":"IPCM_MaximumCompression","features":[220]},{"name":"IPCM_NoCompression","features":[220]},{"name":"IPF_Base64GIF","features":[220]},{"name":"IPF_Base64InkSerializedFormat","features":[220]},{"name":"IPF_GIF","features":[220]},{"name":"IPF_InkSerializedFormat","features":[220]},{"name":"IPSM_AutoSize","features":[220]},{"name":"IPSM_CenterImage","features":[220]},{"name":"IPSM_Normal","features":[220]},{"name":"IPSM_StretchImage","features":[220]},{"name":"IPT_Ball","features":[220]},{"name":"IPT_Rectangle","features":[220]},{"name":"IP_CURSOR_DOWN","features":[220]},{"name":"IP_INVERTED","features":[220]},{"name":"IP_MARGIN","features":[220]},{"name":"IPenInputPanel","features":[220]},{"name":"IRAS_All","features":[220]},{"name":"IRAS_DefaultCount","features":[220]},{"name":"IRAS_Start","features":[220]},{"name":"IRCACM_Full","features":[220]},{"name":"IRCACM_Prefix","features":[220]},{"name":"IRCACM_Random","features":[220]},{"name":"IRC_AdviseInkChange","features":[220]},{"name":"IRC_Alpha","features":[220]},{"name":"IRC_ArbitraryAngle","features":[220]},{"name":"IRC_Beta","features":[220]},{"name":"IRC_BoxedInput","features":[220]},{"name":"IRC_CharacterAutoCompletionInput","features":[220]},{"name":"IRC_Cursive","features":[220]},{"name":"IRC_DontCare","features":[220]},{"name":"IRC_DownAndLeft","features":[220]},{"name":"IRC_DownAndRight","features":[220]},{"name":"IRC_FreeInput","features":[220]},{"name":"IRC_Intermediate","features":[220]},{"name":"IRC_Lattice","features":[220]},{"name":"IRC_LeftAndDown","features":[220]},{"name":"IRC_LinedInput","features":[220]},{"name":"IRC_Object","features":[220]},{"name":"IRC_Personalizable","features":[220]},{"name":"IRC_Poor","features":[220]},{"name":"IRC_PrefersArbitraryAngle","features":[220]},{"name":"IRC_PrefersParagraphBreaking","features":[220]},{"name":"IRC_PrefersSegmentation","features":[220]},{"name":"IRC_RightAndDown","features":[220]},{"name":"IRC_StrokeReorder","features":[220]},{"name":"IRC_Strong","features":[220]},{"name":"IRC_TextPrediction","features":[220]},{"name":"IRM_AutoSpace","features":[220]},{"name":"IRM_Coerce","features":[220]},{"name":"IRM_DisablePersonalization","features":[220]},{"name":"IRM_LineMode","features":[220]},{"name":"IRM_Max","features":[220]},{"name":"IRM_None","features":[220]},{"name":"IRM_PrefixOk","features":[220]},{"name":"IRM_TopInkBreaksOnly","features":[220]},{"name":"IRM_WordModeOnly","features":[220]},{"name":"IRO_Black","features":[220]},{"name":"IRO_CopyPen","features":[220]},{"name":"IRO_MaskNotPen","features":[220]},{"name":"IRO_MaskPen","features":[220]},{"name":"IRO_MaskPenNot","features":[220]},{"name":"IRO_MergeNotPen","features":[220]},{"name":"IRO_MergePen","features":[220]},{"name":"IRO_MergePenNot","features":[220]},{"name":"IRO_NoOperation","features":[220]},{"name":"IRO_Not","features":[220]},{"name":"IRO_NotCopyPen","features":[220]},{"name":"IRO_NotMaskPen","features":[220]},{"name":"IRO_NotMergePen","features":[220]},{"name":"IRO_NotXOrPen","features":[220]},{"name":"IRO_White","features":[220]},{"name":"IRO_XOrPen","features":[220]},{"name":"IRS_InkAddedFailed","features":[220]},{"name":"IRS_Interrupted","features":[220]},{"name":"IRS_NoError","features":[220]},{"name":"IRS_ProcessFailed","features":[220]},{"name":"IRS_SetAutoCompletionModeFailed","features":[220]},{"name":"IRS_SetFactoidFailed","features":[220]},{"name":"IRS_SetFlagsFailed","features":[220]},{"name":"IRS_SetGuideFailed","features":[220]},{"name":"IRS_SetPrefixSuffixFailed","features":[220]},{"name":"IRS_SetStrokesFailed","features":[220]},{"name":"IRS_SetWordListFailed","features":[220]},{"name":"IRealTimeStylus","features":[220]},{"name":"IRealTimeStylus2","features":[220]},{"name":"IRealTimeStylus3","features":[220]},{"name":"IRealTimeStylusSynchronization","features":[220]},{"name":"ISC_AllElements","features":[220]},{"name":"ISC_FirstElement","features":[220]},{"name":"ISG_DoubleTap","features":[220]},{"name":"ISG_Drag","features":[220]},{"name":"ISG_Flick","features":[220]},{"name":"ISG_HoldEnter","features":[220]},{"name":"ISG_HoldLeave","features":[220]},{"name":"ISG_HoverEnter","features":[220]},{"name":"ISG_HoverLeave","features":[220]},{"name":"ISG_RightDrag","features":[220]},{"name":"ISG_RightTap","features":[220]},{"name":"ISG_Tap","features":[220]},{"name":"ISketchInk","features":[220]},{"name":"IStrokeBuilder","features":[220]},{"name":"IStylusAsyncPlugin","features":[220]},{"name":"IStylusPlugin","features":[220]},{"name":"IStylusSyncPlugin","features":[220]},{"name":"ITextInputPanel","features":[220]},{"name":"ITextInputPanelEventSink","features":[220]},{"name":"ITextInputPanelRunInfo","features":[220]},{"name":"ITipAutoCompleteClient","features":[220]},{"name":"ITipAutoCompleteProvider","features":[220]},{"name":"InPlace","features":[220]},{"name":"InPlaceDirection","features":[220]},{"name":"InPlaceDirection_Auto","features":[220]},{"name":"InPlaceDirection_Bottom","features":[220]},{"name":"InPlaceDirection_Top","features":[220]},{"name":"InPlaceState","features":[220]},{"name":"InPlaceState_Auto","features":[220]},{"name":"InPlaceState_Expanded","features":[220]},{"name":"InPlaceState_HoverTarget","features":[220]},{"name":"Ink","features":[220]},{"name":"InkApplicationGesture","features":[220]},{"name":"InkBoundingBoxMode","features":[220]},{"name":"InkClipboardFormats","features":[220]},{"name":"InkClipboardModes","features":[220]},{"name":"InkCollectionMode","features":[220]},{"name":"InkCollector","features":[220]},{"name":"InkCollectorClipInkToMargin","features":[220]},{"name":"InkCollectorDefaultMargin","features":[220]},{"name":"InkCollectorEventInterest","features":[220]},{"name":"InkCursorButtonState","features":[220]},{"name":"InkDisp","features":[220]},{"name":"InkDisplayMode","features":[220]},{"name":"InkDivider","features":[220]},{"name":"InkDivisionType","features":[220]},{"name":"InkDrawingAttributes","features":[220]},{"name":"InkEdit","features":[220]},{"name":"InkEditStatus","features":[220]},{"name":"InkExtractFlags","features":[220]},{"name":"InkInsertMode","features":[220]},{"name":"InkMaxTransparencyValue","features":[220]},{"name":"InkMinTransparencyValue","features":[220]},{"name":"InkMode","features":[220]},{"name":"InkMouseButton","features":[220]},{"name":"InkMousePointer","features":[220]},{"name":"InkOverlay","features":[220]},{"name":"InkOverlayAttachMode","features":[220]},{"name":"InkOverlayEditingMode","features":[220]},{"name":"InkOverlayEraserMode","features":[220]},{"name":"InkPenTip","features":[220]},{"name":"InkPersistenceCompressionMode","features":[220]},{"name":"InkPersistenceFormat","features":[220]},{"name":"InkPicture","features":[220]},{"name":"InkPictureSizeMode","features":[220]},{"name":"InkRasterOperation","features":[220]},{"name":"InkRecoGuide","features":[1,220]},{"name":"InkRecognitionAlternatesSelection","features":[220]},{"name":"InkRecognitionConfidence","features":[220]},{"name":"InkRecognitionModes","features":[220]},{"name":"InkRecognitionStatus","features":[220]},{"name":"InkRecognizerCapabilities","features":[220]},{"name":"InkRecognizerCharacterAutoCompletionMode","features":[220]},{"name":"InkRecognizerContext","features":[220]},{"name":"InkRecognizerGuide","features":[220]},{"name":"InkRecognizers","features":[220]},{"name":"InkRectangle","features":[220]},{"name":"InkRenderer","features":[220]},{"name":"InkSelectionConstants","features":[220]},{"name":"InkShiftKeyModifierFlags","features":[220]},{"name":"InkStrokes","features":[220]},{"name":"InkSystemGesture","features":[220]},{"name":"InkTablets","features":[220]},{"name":"InkTransform","features":[220]},{"name":"InkWordList","features":[220]},{"name":"InteractionMode","features":[220]},{"name":"InteractionMode_DockedBottom","features":[220]},{"name":"InteractionMode_DockedTop","features":[220]},{"name":"InteractionMode_Floating","features":[220]},{"name":"InteractionMode_InPlace","features":[220]},{"name":"IsStringSupported","features":[220]},{"name":"KEYMODIFIER","features":[220]},{"name":"KEYMODIFIER_ALTGR","features":[220]},{"name":"KEYMODIFIER_CONTROL","features":[220]},{"name":"KEYMODIFIER_EXT","features":[220]},{"name":"KEYMODIFIER_MENU","features":[220]},{"name":"KEYMODIFIER_SHIFT","features":[220]},{"name":"KEYMODIFIER_WIN","features":[220]},{"name":"LATTICE_METRICS","features":[1,220]},{"name":"LEFT_BUTTON","features":[220]},{"name":"LINE_METRICS","features":[220]},{"name":"LINE_SEGMENT","features":[1,220]},{"name":"LM_ASCENDER","features":[220]},{"name":"LM_BASELINE","features":[220]},{"name":"LM_DESCENDER","features":[220]},{"name":"LM_MIDLINE","features":[220]},{"name":"LoadCachedAttributes","features":[220]},{"name":"MAX_FRIENDLYNAME","features":[220]},{"name":"MAX_LANGUAGES","features":[220]},{"name":"MAX_PACKET_BUTTON_COUNT","features":[220]},{"name":"MAX_PACKET_PROPERTY_COUNT","features":[220]},{"name":"MAX_VENDORNAME","features":[220]},{"name":"MICROSOFT_PENINPUT_PANEL_PROPERTY_T","features":[220]},{"name":"MICROSOFT_TIP_COMBOBOXLIST_PROPERTY","features":[220]},{"name":"MICROSOFT_TIP_NO_INSERT_BUTTON_PROPERTY","features":[220]},{"name":"MICROSOFT_TIP_OPENING_MSG","features":[220]},{"name":"MICROSOFT_URL_EXPERIENCE_PROPERTY","features":[220]},{"name":"MICUIELEMENT","features":[220]},{"name":"MICUIELEMENTSTATE","features":[220]},{"name":"MICUIELEMENTSTATE_DISABLED","features":[220]},{"name":"MICUIELEMENTSTATE_HOT","features":[220]},{"name":"MICUIELEMENTSTATE_NORMAL","features":[220]},{"name":"MICUIELEMENTSTATE_PRESSED","features":[220]},{"name":"MICUIELEMENT_BUTTON_CANCEL","features":[220]},{"name":"MICUIELEMENT_BUTTON_CLEAR","features":[220]},{"name":"MICUIELEMENT_BUTTON_CORRECT","features":[220]},{"name":"MICUIELEMENT_BUTTON_ERASE","features":[220]},{"name":"MICUIELEMENT_BUTTON_INSERT","features":[220]},{"name":"MICUIELEMENT_BUTTON_REDO","features":[220]},{"name":"MICUIELEMENT_BUTTON_UNDO","features":[220]},{"name":"MICUIELEMENT_BUTTON_WRITE","features":[220]},{"name":"MICUIELEMENT_INKPANEL_BACKGROUND","features":[220]},{"name":"MICUIELEMENT_RESULTPANEL_BACKGROUND","features":[220]},{"name":"MIDDLE_BUTTON","features":[220]},{"name":"MakeWordList","features":[220]},{"name":"MathInputControl","features":[220]},{"name":"MouseButton","features":[220]},{"name":"NO_BUTTON","features":[220]},{"name":"NUM_FLICK_DIRECTIONS","features":[220]},{"name":"PACKET_DESCRIPTION","features":[220]},{"name":"PACKET_PROPERTY","features":[220]},{"name":"PROPERTY_METRICS","features":[220]},{"name":"PROPERTY_UNITS","features":[220]},{"name":"PROPERTY_UNITS_AMPERE","features":[220]},{"name":"PROPERTY_UNITS_CANDELA","features":[220]},{"name":"PROPERTY_UNITS_CENTIMETERS","features":[220]},{"name":"PROPERTY_UNITS_DEFAULT","features":[220]},{"name":"PROPERTY_UNITS_DEGREES","features":[220]},{"name":"PROPERTY_UNITS_ENGLINEAR","features":[220]},{"name":"PROPERTY_UNITS_ENGROTATION","features":[220]},{"name":"PROPERTY_UNITS_FAHRENHEIT","features":[220]},{"name":"PROPERTY_UNITS_GRAMS","features":[220]},{"name":"PROPERTY_UNITS_INCHES","features":[220]},{"name":"PROPERTY_UNITS_KELVIN","features":[220]},{"name":"PROPERTY_UNITS_POUNDS","features":[220]},{"name":"PROPERTY_UNITS_RADIANS","features":[220]},{"name":"PROPERTY_UNITS_SECONDS","features":[220]},{"name":"PROPERTY_UNITS_SILINEAR","features":[220]},{"name":"PROPERTY_UNITS_SIROTATION","features":[220]},{"name":"PROPERTY_UNITS_SLUGS","features":[220]},{"name":"PT_Default","features":[220]},{"name":"PT_Handwriting","features":[220]},{"name":"PT_Inactive","features":[220]},{"name":"PT_Keyboard","features":[220]},{"name":"PanelInputArea","features":[220]},{"name":"PanelInputArea_Auto","features":[220]},{"name":"PanelInputArea_CharacterPad","features":[220]},{"name":"PanelInputArea_Keyboard","features":[220]},{"name":"PanelInputArea_WritingPad","features":[220]},{"name":"PanelType","features":[220]},{"name":"PenInputPanel","features":[220]},{"name":"PenInputPanel_Internal","features":[220]},{"name":"PfnRecoCallback","features":[220]},{"name":"Process","features":[1,220]},{"name":"RECOCONF_HIGHCONFIDENCE","features":[220]},{"name":"RECOCONF_LOWCONFIDENCE","features":[220]},{"name":"RECOCONF_MEDIUMCONFIDENCE","features":[220]},{"name":"RECOCONF_NOTSET","features":[220]},{"name":"RECOFLAG_AUTOSPACE","features":[220]},{"name":"RECOFLAG_COERCE","features":[220]},{"name":"RECOFLAG_DISABLEPERSONALIZATION","features":[220]},{"name":"RECOFLAG_LINEMODE","features":[220]},{"name":"RECOFLAG_PREFIXOK","features":[220]},{"name":"RECOFLAG_SINGLESEG","features":[220]},{"name":"RECOFLAG_WORDMODE","features":[220]},{"name":"RECO_ATTRS","features":[220]},{"name":"RECO_GUIDE","features":[220]},{"name":"RECO_LATTICE","features":[220]},{"name":"RECO_LATTICE_COLUMN","features":[220]},{"name":"RECO_LATTICE_ELEMENT","features":[220]},{"name":"RECO_LATTICE_PROPERTIES","features":[220]},{"name":"RECO_LATTICE_PROPERTY","features":[220]},{"name":"RECO_RANGE","features":[220]},{"name":"RECO_TYPE","features":[220]},{"name":"RECO_TYPE_WCHAR","features":[220]},{"name":"RECO_TYPE_WSTRING","features":[220]},{"name":"RF_ADVISEINKCHANGE","features":[220]},{"name":"RF_ARBITRARY_ANGLE","features":[220]},{"name":"RF_BOXED_INPUT","features":[220]},{"name":"RF_CAC_INPUT","features":[220]},{"name":"RF_DONTCARE","features":[220]},{"name":"RF_DOWN_AND_LEFT","features":[220]},{"name":"RF_DOWN_AND_RIGHT","features":[220]},{"name":"RF_FREE_INPUT","features":[220]},{"name":"RF_LATTICE","features":[220]},{"name":"RF_LEFT_AND_DOWN","features":[220]},{"name":"RF_LINED_INPUT","features":[220]},{"name":"RF_OBJECT","features":[220]},{"name":"RF_PERFORMSLINEBREAKING","features":[220]},{"name":"RF_PERSONALIZABLE","features":[220]},{"name":"RF_REQUIRESSEGMENTATIONBREAKING","features":[220]},{"name":"RF_RIGHT_AND_DOWN","features":[220]},{"name":"RF_STROKEREORDER","features":[220]},{"name":"RIGHT_BUTTON","features":[220]},{"name":"RTSDI_AllData","features":[220]},{"name":"RTSDI_CustomStylusDataAdded","features":[220]},{"name":"RTSDI_DefaultEvents","features":[220]},{"name":"RTSDI_Error","features":[220]},{"name":"RTSDI_InAirPackets","features":[220]},{"name":"RTSDI_None","features":[220]},{"name":"RTSDI_Packets","features":[220]},{"name":"RTSDI_RealTimeStylusDisabled","features":[220]},{"name":"RTSDI_RealTimeStylusEnabled","features":[220]},{"name":"RTSDI_StylusButtonDown","features":[220]},{"name":"RTSDI_StylusButtonUp","features":[220]},{"name":"RTSDI_StylusDown","features":[220]},{"name":"RTSDI_StylusInRange","features":[220]},{"name":"RTSDI_StylusNew","features":[220]},{"name":"RTSDI_StylusOutOfRange","features":[220]},{"name":"RTSDI_StylusUp","features":[220]},{"name":"RTSDI_SystemEvents","features":[220]},{"name":"RTSDI_TabletAdded","features":[220]},{"name":"RTSDI_TabletRemoved","features":[220]},{"name":"RTSDI_UpdateMapping","features":[220]},{"name":"RTSLT_AsyncEventLock","features":[220]},{"name":"RTSLT_AsyncObjLock","features":[220]},{"name":"RTSLT_ExcludeCallback","features":[220]},{"name":"RTSLT_ObjLock","features":[220]},{"name":"RTSLT_SyncEventLock","features":[220]},{"name":"RTSLT_SyncObjLock","features":[220]},{"name":"RealTimeStylus","features":[220]},{"name":"RealTimeStylusDataInterest","features":[220]},{"name":"RealTimeStylusLockType","features":[220]},{"name":"SAFE_PARTIAL","features":[220]},{"name":"SCROLLDIRECTION","features":[220]},{"name":"SCROLLDIRECTION_DOWN","features":[220]},{"name":"SCROLLDIRECTION_UP","features":[220]},{"name":"SHR_E","features":[220]},{"name":"SHR_N","features":[220]},{"name":"SHR_NE","features":[220]},{"name":"SHR_NW","features":[220]},{"name":"SHR_None","features":[220]},{"name":"SHR_S","features":[220]},{"name":"SHR_SE","features":[220]},{"name":"SHR_SW","features":[220]},{"name":"SHR_Selection","features":[220]},{"name":"SHR_W","features":[220]},{"name":"STROKE_RANGE","features":[220]},{"name":"STR_GUID_ALTITUDEORIENTATION","features":[220]},{"name":"STR_GUID_AZIMUTHORIENTATION","features":[220]},{"name":"STR_GUID_BUTTONPRESSURE","features":[220]},{"name":"STR_GUID_DEVICE_CONTACT_ID","features":[220]},{"name":"STR_GUID_FINGERCONTACTCONFIDENCE","features":[220]},{"name":"STR_GUID_HEIGHT","features":[220]},{"name":"STR_GUID_NORMALPRESSURE","features":[220]},{"name":"STR_GUID_PAKETSTATUS","features":[220]},{"name":"STR_GUID_PITCHROTATION","features":[220]},{"name":"STR_GUID_ROLLROTATION","features":[220]},{"name":"STR_GUID_SERIALNUMBER","features":[220]},{"name":"STR_GUID_TANGENTPRESSURE","features":[220]},{"name":"STR_GUID_TIMERTICK","features":[220]},{"name":"STR_GUID_TWISTORIENTATION","features":[220]},{"name":"STR_GUID_WIDTH","features":[220]},{"name":"STR_GUID_X","features":[220]},{"name":"STR_GUID_XTILTORIENTATION","features":[220]},{"name":"STR_GUID_Y","features":[220]},{"name":"STR_GUID_YAWROTATION","features":[220]},{"name":"STR_GUID_YTILTORIENTATION","features":[220]},{"name":"STR_GUID_Z","features":[220]},{"name":"SYSTEM_EVENT_DATA","features":[220]},{"name":"ScrollBarsConstants","features":[220]},{"name":"SelAlignmentConstants","features":[220]},{"name":"SelectionHitResult","features":[220]},{"name":"SetEnabledUnicodeRanges","features":[220]},{"name":"SetFactoid","features":[220]},{"name":"SetFlags","features":[220]},{"name":"SetGuide","features":[220]},{"name":"SetTextContext","features":[220]},{"name":"SetWordList","features":[220]},{"name":"SketchInk","features":[220]},{"name":"StrokeBuilder","features":[220]},{"name":"StylusInfo","features":[1,220]},{"name":"StylusQueue","features":[220]},{"name":"SyncStylusQueue","features":[220]},{"name":"TABLET_DISABLE_FLICKFALLBACKKEYS","features":[220]},{"name":"TABLET_DISABLE_FLICKS","features":[220]},{"name":"TABLET_DISABLE_PENBARRELFEEDBACK","features":[220]},{"name":"TABLET_DISABLE_PENTAPFEEDBACK","features":[220]},{"name":"TABLET_DISABLE_PRESSANDHOLD","features":[220]},{"name":"TABLET_DISABLE_SMOOTHSCROLLING","features":[220]},{"name":"TABLET_DISABLE_TOUCHSWITCH","features":[220]},{"name":"TABLET_DISABLE_TOUCHUIFORCEOFF","features":[220]},{"name":"TABLET_DISABLE_TOUCHUIFORCEON","features":[220]},{"name":"TABLET_ENABLE_FLICKLEARNINGMODE","features":[220]},{"name":"TABLET_ENABLE_FLICKSONCONTEXT","features":[220]},{"name":"TABLET_ENABLE_MULTITOUCHDATA","features":[220]},{"name":"TCF_ALLOW_RECOGNITION","features":[220]},{"name":"TCF_FORCE_RECOGNITION","features":[220]},{"name":"TDK_Mouse","features":[220]},{"name":"TDK_Pen","features":[220]},{"name":"TDK_Touch","features":[220]},{"name":"THWC_CursorMustTouch","features":[220]},{"name":"THWC_CursorsHavePhysicalIds","features":[220]},{"name":"THWC_HardProximity","features":[220]},{"name":"THWC_Integrated","features":[220]},{"name":"TPMU_Centimeters","features":[220]},{"name":"TPMU_Default","features":[220]},{"name":"TPMU_Degrees","features":[220]},{"name":"TPMU_Grams","features":[220]},{"name":"TPMU_Inches","features":[220]},{"name":"TPMU_Pounds","features":[220]},{"name":"TPMU_Radians","features":[220]},{"name":"TPMU_Seconds","features":[220]},{"name":"TabletDeviceKind","features":[220]},{"name":"TabletHardwareCapabilities","features":[220]},{"name":"TabletPropertyMetricUnit","features":[220]},{"name":"TextInputPanel","features":[220]},{"name":"TipAutoCompleteClient","features":[220]},{"name":"VisualState","features":[220]},{"name":"WM_TABLET_ADDED","features":[220]},{"name":"WM_TABLET_DEFBASE","features":[220]},{"name":"WM_TABLET_DELETED","features":[220]},{"name":"WM_TABLET_FLICK","features":[220]},{"name":"WM_TABLET_MAXOFFSET","features":[220]},{"name":"WM_TABLET_QUERYSYSTEMGESTURESTATUS","features":[220]},{"name":"_IInkCollectorEvents","features":[220]},{"name":"_IInkEditEvents","features":[220]},{"name":"_IInkEvents","features":[220]},{"name":"_IInkOverlayEvents","features":[220]},{"name":"_IInkPictureEvents","features":[220]},{"name":"_IInkRecognitionEvents","features":[220]},{"name":"_IInkStrokesEvents","features":[220]},{"name":"_IMathInputControlEvents","features":[220]},{"name":"_IPenInputPanelEvents","features":[220]},{"name":"rtfBoth","features":[220]},{"name":"rtfCenter","features":[220]},{"name":"rtfFixedSingle","features":[220]},{"name":"rtfFlat","features":[220]},{"name":"rtfHorizontal","features":[220]},{"name":"rtfLeft","features":[220]},{"name":"rtfNoBorder","features":[220]},{"name":"rtfNone","features":[220]},{"name":"rtfRight","features":[220]},{"name":"rtfThreeD","features":[220]},{"name":"rtfVertical","features":[220]}],"671":[{"name":"ANCHOR_CHANGE_HISTORY_FLAGS","features":[213]},{"name":"AccClientDocMgr","features":[213]},{"name":"AccDictionary","features":[213]},{"name":"AccServerDocMgr","features":[213]},{"name":"AccStore","features":[213]},{"name":"CAND_CANCELED","features":[213]},{"name":"CAND_FINALIZED","features":[213]},{"name":"CAND_SELECTED","features":[213]},{"name":"CLSID_TF_CategoryMgr","features":[213]},{"name":"CLSID_TF_ClassicLangBar","features":[213]},{"name":"CLSID_TF_DisplayAttributeMgr","features":[213]},{"name":"CLSID_TF_InputProcessorProfiles","features":[213]},{"name":"CLSID_TF_LangBarItemMgr","features":[213]},{"name":"CLSID_TF_LangBarMgr","features":[213]},{"name":"CLSID_TF_ThreadMgr","features":[213]},{"name":"CLSID_TF_TransitoryExtensionUIEntry","features":[213]},{"name":"CLSID_TsfServices","features":[213]},{"name":"DCM_FLAGS_CTFMON","features":[213]},{"name":"DCM_FLAGS_LOCALTHREADTSF","features":[213]},{"name":"DCM_FLAGS_TASKENG","features":[213]},{"name":"DoMsCtfMonitor","features":[1,213]},{"name":"DocWrap","features":[213]},{"name":"GETIF_DICTGRAM","features":[213]},{"name":"GETIF_RECOCONTEXT","features":[213]},{"name":"GETIF_RECOGNIZER","features":[213]},{"name":"GETIF_RECOGNIZERNOINIT","features":[213]},{"name":"GETIF_RESMGR","features":[213]},{"name":"GETIF_VOICE","features":[213]},{"name":"GET_TEXT_AND_PROPERTY_UPDATES_FLAGS","features":[213]},{"name":"GUID_APP_FUNCTIONPROVIDER","features":[213]},{"name":"GUID_COMPARTMENT_CONVERSIONMODEBIAS","features":[213]},{"name":"GUID_COMPARTMENT_EMPTYCONTEXT","features":[213]},{"name":"GUID_COMPARTMENT_ENABLED_PROFILES_UPDATED","features":[213]},{"name":"GUID_COMPARTMENT_HANDWRITING_OPENCLOSE","features":[213]},{"name":"GUID_COMPARTMENT_KEYBOARD_DISABLED","features":[213]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE","features":[213]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_CONVERSION","features":[213]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_SENTENCE","features":[213]},{"name":"GUID_COMPARTMENT_KEYBOARD_OPENCLOSE","features":[213]},{"name":"GUID_COMPARTMENT_SAPI_AUDIO","features":[213]},{"name":"GUID_COMPARTMENT_SPEECH_CFGMENU","features":[213]},{"name":"GUID_COMPARTMENT_SPEECH_DISABLED","features":[213]},{"name":"GUID_COMPARTMENT_SPEECH_GLOBALSTATE","features":[213]},{"name":"GUID_COMPARTMENT_SPEECH_OPENCLOSE","features":[213]},{"name":"GUID_COMPARTMENT_SPEECH_UI_STATUS","features":[213]},{"name":"GUID_COMPARTMENT_TIPUISTATUS","features":[213]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION","features":[213]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_DOCUMENTMANAGER","features":[213]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_PARENT","features":[213]},{"name":"GUID_INTEGRATIONSTYLE_SEARCHBOX","features":[213]},{"name":"GUID_LBI_INPUTMODE","features":[213]},{"name":"GUID_LBI_SAPILAYR_CFGMENUBUTTON","features":[213]},{"name":"GUID_MODEBIAS_CHINESE","features":[213]},{"name":"GUID_MODEBIAS_CONVERSATION","features":[213]},{"name":"GUID_MODEBIAS_DATETIME","features":[213]},{"name":"GUID_MODEBIAS_FILENAME","features":[213]},{"name":"GUID_MODEBIAS_FULLWIDTHALPHANUMERIC","features":[213]},{"name":"GUID_MODEBIAS_FULLWIDTHHANGUL","features":[213]},{"name":"GUID_MODEBIAS_HALFWIDTHKATAKANA","features":[213]},{"name":"GUID_MODEBIAS_HANGUL","features":[213]},{"name":"GUID_MODEBIAS_HIRAGANA","features":[213]},{"name":"GUID_MODEBIAS_KATAKANA","features":[213]},{"name":"GUID_MODEBIAS_NAME","features":[213]},{"name":"GUID_MODEBIAS_NONE","features":[213]},{"name":"GUID_MODEBIAS_NUMERIC","features":[213]},{"name":"GUID_MODEBIAS_READING","features":[213]},{"name":"GUID_MODEBIAS_URLHISTORY","features":[213]},{"name":"GUID_PROP_ATTRIBUTE","features":[213]},{"name":"GUID_PROP_COMPOSING","features":[213]},{"name":"GUID_PROP_INPUTSCOPE","features":[213]},{"name":"GUID_PROP_LANGID","features":[213]},{"name":"GUID_PROP_MODEBIAS","features":[213]},{"name":"GUID_PROP_READING","features":[213]},{"name":"GUID_PROP_TEXTOWNER","features":[213]},{"name":"GUID_PROP_TKB_ALTERNATES","features":[213]},{"name":"GUID_SYSTEM_FUNCTIONPROVIDER","features":[213]},{"name":"GUID_TFCAT_CATEGORY_OF_TIP","features":[213]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROPERTY","features":[213]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROVIDER","features":[213]},{"name":"GUID_TFCAT_PROPSTYLE_STATIC","features":[213]},{"name":"GUID_TFCAT_PROP_AUDIODATA","features":[213]},{"name":"GUID_TFCAT_PROP_INKDATA","features":[213]},{"name":"GUID_TFCAT_TIPCAP_COMLESS","features":[213]},{"name":"GUID_TFCAT_TIPCAP_DUALMODE","features":[213]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVEONLY","features":[213]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVESUPPORT","features":[213]},{"name":"GUID_TFCAT_TIPCAP_INPUTMODECOMPARTMENT","features":[213]},{"name":"GUID_TFCAT_TIPCAP_LOCALSERVER","features":[213]},{"name":"GUID_TFCAT_TIPCAP_SECUREMODE","features":[213]},{"name":"GUID_TFCAT_TIPCAP_SYSTRAYSUPPORT","features":[213]},{"name":"GUID_TFCAT_TIPCAP_TSF3","features":[213]},{"name":"GUID_TFCAT_TIPCAP_UIELEMENTENABLED","features":[213]},{"name":"GUID_TFCAT_TIPCAP_WOW16","features":[213]},{"name":"GUID_TFCAT_TIP_HANDWRITING","features":[213]},{"name":"GUID_TFCAT_TIP_KEYBOARD","features":[213]},{"name":"GUID_TFCAT_TIP_SPEECH","features":[213]},{"name":"GUID_TFCAT_TRANSITORYEXTENSIONUI","features":[213]},{"name":"GUID_TS_SERVICE_ACCESSIBLE","features":[213]},{"name":"GUID_TS_SERVICE_ACTIVEX","features":[213]},{"name":"GUID_TS_SERVICE_DATAOBJECT","features":[213]},{"name":"GXFPF_NEAREST","features":[213]},{"name":"GXFPF_ROUND_NEAREST","features":[213]},{"name":"HKL","features":[213]},{"name":"IAccClientDocMgr","features":[213]},{"name":"IAccDictionary","features":[213]},{"name":"IAccServerDocMgr","features":[213]},{"name":"IAccStore","features":[213]},{"name":"IAnchor","features":[213]},{"name":"IClonableWrapper","features":[213]},{"name":"ICoCreateLocally","features":[213]},{"name":"ICoCreatedLocally","features":[213]},{"name":"IDocWrap","features":[213]},{"name":"IEnumITfCompositionView","features":[213]},{"name":"IEnumSpeechCommands","features":[213]},{"name":"IEnumTfCandidates","features":[213]},{"name":"IEnumTfContextViews","features":[213]},{"name":"IEnumTfContexts","features":[213]},{"name":"IEnumTfDisplayAttributeInfo","features":[213]},{"name":"IEnumTfDocumentMgrs","features":[213]},{"name":"IEnumTfFunctionProviders","features":[213]},{"name":"IEnumTfInputProcessorProfiles","features":[213]},{"name":"IEnumTfLangBarItems","features":[213]},{"name":"IEnumTfLanguageProfiles","features":[213]},{"name":"IEnumTfLatticeElements","features":[213]},{"name":"IEnumTfProperties","features":[213]},{"name":"IEnumTfPropertyValue","features":[213]},{"name":"IEnumTfRanges","features":[213]},{"name":"IEnumTfUIElements","features":[213]},{"name":"IInternalDocWrap","features":[213]},{"name":"ILMCM_CHECKLAYOUTANDTIPENABLED","features":[213]},{"name":"ILMCM_LANGUAGEBAROFF","features":[213]},{"name":"INSERT_TEXT_AT_SELECTION_FLAGS","features":[213]},{"name":"IS_ADDRESS_CITY","features":[213]},{"name":"IS_ADDRESS_COUNTRYNAME","features":[213]},{"name":"IS_ADDRESS_COUNTRYSHORTNAME","features":[213]},{"name":"IS_ADDRESS_FULLPOSTALADDRESS","features":[213]},{"name":"IS_ADDRESS_POSTALCODE","features":[213]},{"name":"IS_ADDRESS_STATEORPROVINCE","features":[213]},{"name":"IS_ADDRESS_STREET","features":[213]},{"name":"IS_ALPHANUMERIC_FULLWIDTH","features":[213]},{"name":"IS_ALPHANUMERIC_HALFWIDTH","features":[213]},{"name":"IS_ALPHANUMERIC_PIN","features":[213]},{"name":"IS_ALPHANUMERIC_PIN_SET","features":[213]},{"name":"IS_BOPOMOFO","features":[213]},{"name":"IS_CHAT","features":[213]},{"name":"IS_CHAT_WITHOUT_EMOJI","features":[213]},{"name":"IS_CHINESE_FULLWIDTH","features":[213]},{"name":"IS_CHINESE_HALFWIDTH","features":[213]},{"name":"IS_CURRENCY_AMOUNT","features":[213]},{"name":"IS_CURRENCY_AMOUNTANDSYMBOL","features":[213]},{"name":"IS_CURRENCY_CHINESE","features":[213]},{"name":"IS_DATE_DAY","features":[213]},{"name":"IS_DATE_DAYNAME","features":[213]},{"name":"IS_DATE_FULLDATE","features":[213]},{"name":"IS_DATE_MONTH","features":[213]},{"name":"IS_DATE_MONTHNAME","features":[213]},{"name":"IS_DATE_YEAR","features":[213]},{"name":"IS_DEFAULT","features":[213]},{"name":"IS_DIGITS","features":[213]},{"name":"IS_EMAILNAME_OR_ADDRESS","features":[213]},{"name":"IS_EMAIL_SMTPEMAILADDRESS","features":[213]},{"name":"IS_EMAIL_USERNAME","features":[213]},{"name":"IS_ENUMSTRING","features":[213]},{"name":"IS_FILE_FILENAME","features":[213]},{"name":"IS_FILE_FULLFILEPATH","features":[213]},{"name":"IS_FORMULA","features":[213]},{"name":"IS_FORMULA_NUMBER","features":[213]},{"name":"IS_HANGUL_FULLWIDTH","features":[213]},{"name":"IS_HANGUL_HALFWIDTH","features":[213]},{"name":"IS_HANJA","features":[213]},{"name":"IS_HIRAGANA","features":[213]},{"name":"IS_KATAKANA_FULLWIDTH","features":[213]},{"name":"IS_KATAKANA_HALFWIDTH","features":[213]},{"name":"IS_LOGINNAME","features":[213]},{"name":"IS_MAPS","features":[213]},{"name":"IS_NAME_OR_PHONENUMBER","features":[213]},{"name":"IS_NATIVE_SCRIPT","features":[213]},{"name":"IS_NUMBER","features":[213]},{"name":"IS_NUMBER_FULLWIDTH","features":[213]},{"name":"IS_NUMERIC_PASSWORD","features":[213]},{"name":"IS_NUMERIC_PIN","features":[213]},{"name":"IS_ONECHAR","features":[213]},{"name":"IS_PASSWORD","features":[213]},{"name":"IS_PERSONALNAME_FULLNAME","features":[213]},{"name":"IS_PERSONALNAME_GIVENNAME","features":[213]},{"name":"IS_PERSONALNAME_MIDDLENAME","features":[213]},{"name":"IS_PERSONALNAME_PREFIX","features":[213]},{"name":"IS_PERSONALNAME_SUFFIX","features":[213]},{"name":"IS_PERSONALNAME_SURNAME","features":[213]},{"name":"IS_PHRASELIST","features":[213]},{"name":"IS_PRIVATE","features":[213]},{"name":"IS_REGULAREXPRESSION","features":[213]},{"name":"IS_SEARCH","features":[213]},{"name":"IS_SEARCH_INCREMENTAL","features":[213]},{"name":"IS_SRGS","features":[213]},{"name":"IS_TELEPHONE_AREACODE","features":[213]},{"name":"IS_TELEPHONE_COUNTRYCODE","features":[213]},{"name":"IS_TELEPHONE_FULLTELEPHONENUMBER","features":[213]},{"name":"IS_TELEPHONE_LOCALNUMBER","features":[213]},{"name":"IS_TEXT","features":[213]},{"name":"IS_TIME_FULLTIME","features":[213]},{"name":"IS_TIME_HOUR","features":[213]},{"name":"IS_TIME_MINORSEC","features":[213]},{"name":"IS_URL","features":[213]},{"name":"IS_XML","features":[213]},{"name":"IS_YOMI","features":[213]},{"name":"ISpeechCommandProvider","features":[213]},{"name":"ITextStoreACP","features":[213]},{"name":"ITextStoreACP2","features":[213]},{"name":"ITextStoreACPEx","features":[213]},{"name":"ITextStoreACPServices","features":[213]},{"name":"ITextStoreACPSink","features":[213]},{"name":"ITextStoreACPSinkEx","features":[213]},{"name":"ITextStoreAnchor","features":[213]},{"name":"ITextStoreAnchorEx","features":[213]},{"name":"ITextStoreAnchorSink","features":[213]},{"name":"ITextStoreSinkAnchorEx","features":[213]},{"name":"ITfActiveLanguageProfileNotifySink","features":[213]},{"name":"ITfCandidateList","features":[213]},{"name":"ITfCandidateListUIElement","features":[213]},{"name":"ITfCandidateListUIElementBehavior","features":[213]},{"name":"ITfCandidateString","features":[213]},{"name":"ITfCategoryMgr","features":[213]},{"name":"ITfCleanupContextDurationSink","features":[213]},{"name":"ITfCleanupContextSink","features":[213]},{"name":"ITfClientId","features":[213]},{"name":"ITfCompartment","features":[213]},{"name":"ITfCompartmentEventSink","features":[213]},{"name":"ITfCompartmentMgr","features":[213]},{"name":"ITfComposition","features":[213]},{"name":"ITfCompositionSink","features":[213]},{"name":"ITfCompositionView","features":[213]},{"name":"ITfConfigureSystemKeystrokeFeed","features":[213]},{"name":"ITfContext","features":[213]},{"name":"ITfContextComposition","features":[213]},{"name":"ITfContextKeyEventSink","features":[213]},{"name":"ITfContextOwner","features":[213]},{"name":"ITfContextOwnerCompositionServices","features":[213]},{"name":"ITfContextOwnerCompositionSink","features":[213]},{"name":"ITfContextOwnerServices","features":[213]},{"name":"ITfContextView","features":[213]},{"name":"ITfCreatePropertyStore","features":[213]},{"name":"ITfDisplayAttributeInfo","features":[213]},{"name":"ITfDisplayAttributeMgr","features":[213]},{"name":"ITfDisplayAttributeNotifySink","features":[213]},{"name":"ITfDisplayAttributeProvider","features":[213]},{"name":"ITfDocumentMgr","features":[213]},{"name":"ITfEditRecord","features":[213]},{"name":"ITfEditSession","features":[213]},{"name":"ITfEditTransactionSink","features":[213]},{"name":"ITfFnAdviseText","features":[213]},{"name":"ITfFnBalloon","features":[213]},{"name":"ITfFnConfigure","features":[213]},{"name":"ITfFnConfigureRegisterEudc","features":[213]},{"name":"ITfFnConfigureRegisterWord","features":[213]},{"name":"ITfFnCustomSpeechCommand","features":[213]},{"name":"ITfFnGetLinguisticAlternates","features":[213]},{"name":"ITfFnGetPreferredTouchKeyboardLayout","features":[213]},{"name":"ITfFnGetSAPIObject","features":[213]},{"name":"ITfFnLMInternal","features":[213]},{"name":"ITfFnLMProcessor","features":[213]},{"name":"ITfFnLangProfileUtil","features":[213]},{"name":"ITfFnPlayBack","features":[213]},{"name":"ITfFnPropertyUIStatus","features":[213]},{"name":"ITfFnReconversion","features":[213]},{"name":"ITfFnSearchCandidateProvider","features":[213]},{"name":"ITfFnShowHelp","features":[213]},{"name":"ITfFunction","features":[213]},{"name":"ITfFunctionProvider","features":[213]},{"name":"ITfInputProcessorProfileActivationSink","features":[213]},{"name":"ITfInputProcessorProfileMgr","features":[213]},{"name":"ITfInputProcessorProfileSubstituteLayout","features":[213]},{"name":"ITfInputProcessorProfiles","features":[213]},{"name":"ITfInputProcessorProfilesEx","features":[213]},{"name":"ITfInputScope","features":[213]},{"name":"ITfInputScope2","features":[213]},{"name":"ITfInsertAtSelection","features":[213]},{"name":"ITfIntegratableCandidateListUIElement","features":[213]},{"name":"ITfKeyEventSink","features":[213]},{"name":"ITfKeyTraceEventSink","features":[213]},{"name":"ITfKeystrokeMgr","features":[213]},{"name":"ITfLMLattice","features":[213]},{"name":"ITfLangBarEventSink","features":[213]},{"name":"ITfLangBarItem","features":[213]},{"name":"ITfLangBarItemBalloon","features":[213]},{"name":"ITfLangBarItemBitmap","features":[213]},{"name":"ITfLangBarItemBitmapButton","features":[213]},{"name":"ITfLangBarItemButton","features":[213]},{"name":"ITfLangBarItemMgr","features":[213]},{"name":"ITfLangBarItemSink","features":[213]},{"name":"ITfLangBarMgr","features":[213]},{"name":"ITfLanguageProfileNotifySink","features":[213]},{"name":"ITfMSAAControl","features":[213]},{"name":"ITfMenu","features":[213]},{"name":"ITfMessagePump","features":[213]},{"name":"ITfMouseSink","features":[213]},{"name":"ITfMouseTracker","features":[213]},{"name":"ITfMouseTrackerACP","features":[213]},{"name":"ITfPersistentPropertyLoaderACP","features":[213]},{"name":"ITfPreservedKeyNotifySink","features":[213]},{"name":"ITfProperty","features":[213]},{"name":"ITfPropertyStore","features":[213]},{"name":"ITfQueryEmbedded","features":[213]},{"name":"ITfRange","features":[213]},{"name":"ITfRangeACP","features":[213]},{"name":"ITfRangeBackup","features":[213]},{"name":"ITfReadOnlyProperty","features":[213]},{"name":"ITfReadingInformationUIElement","features":[213]},{"name":"ITfReverseConversion","features":[213]},{"name":"ITfReverseConversionList","features":[213]},{"name":"ITfReverseConversionMgr","features":[213]},{"name":"ITfSource","features":[213]},{"name":"ITfSourceSingle","features":[213]},{"name":"ITfSpeechUIServer","features":[213]},{"name":"ITfStatusSink","features":[213]},{"name":"ITfSystemDeviceTypeLangBarItem","features":[213]},{"name":"ITfSystemLangBarItem","features":[213]},{"name":"ITfSystemLangBarItemSink","features":[213]},{"name":"ITfSystemLangBarItemText","features":[213]},{"name":"ITfTextEditSink","features":[213]},{"name":"ITfTextInputProcessor","features":[213]},{"name":"ITfTextInputProcessorEx","features":[213]},{"name":"ITfTextLayoutSink","features":[213]},{"name":"ITfThreadFocusSink","features":[213]},{"name":"ITfThreadMgr","features":[213]},{"name":"ITfThreadMgr2","features":[213]},{"name":"ITfThreadMgrEventSink","features":[213]},{"name":"ITfThreadMgrEx","features":[213]},{"name":"ITfToolTipUIElement","features":[213]},{"name":"ITfTransitoryExtensionSink","features":[213]},{"name":"ITfTransitoryExtensionUIElement","features":[213]},{"name":"ITfUIElement","features":[213]},{"name":"ITfUIElementMgr","features":[213]},{"name":"ITfUIElementSink","features":[213]},{"name":"IUIManagerEventSink","features":[213]},{"name":"IVersionInfo","features":[213]},{"name":"InitLocalMsCtfMonitor","features":[213]},{"name":"InputScope","features":[213]},{"name":"LANG_BAR_ITEM_ICON_MODE_FLAGS","features":[213]},{"name":"LIBID_MSAATEXTLib","features":[213]},{"name":"MSAAControl","features":[213]},{"name":"STYLE_ACTIVE_SELECTION","features":[213]},{"name":"STYLE_IMPLIED_SELECTION","features":[213]},{"name":"TEXT_STORE_CHANGE_FLAGS","features":[213]},{"name":"TEXT_STORE_LOCK_FLAGS","features":[213]},{"name":"TEXT_STORE_TEXT_CHANGE_FLAGS","features":[213]},{"name":"TF_AE_END","features":[213]},{"name":"TF_AE_NONE","features":[213]},{"name":"TF_AE_START","features":[213]},{"name":"TF_ANCHOR_END","features":[213]},{"name":"TF_ANCHOR_START","features":[213]},{"name":"TF_ATTR_CONVERTED","features":[213]},{"name":"TF_ATTR_FIXEDCONVERTED","features":[213]},{"name":"TF_ATTR_INPUT","features":[213]},{"name":"TF_ATTR_INPUT_ERROR","features":[213]},{"name":"TF_ATTR_OTHER","features":[213]},{"name":"TF_ATTR_TARGET_CONVERTED","features":[213]},{"name":"TF_ATTR_TARGET_NOTCONVERTED","features":[213]},{"name":"TF_CHAR_EMBEDDED","features":[213]},{"name":"TF_CLUIE_COUNT","features":[213]},{"name":"TF_CLUIE_CURRENTPAGE","features":[213]},{"name":"TF_CLUIE_DOCUMENTMGR","features":[213]},{"name":"TF_CLUIE_PAGEINDEX","features":[213]},{"name":"TF_CLUIE_SELECTION","features":[213]},{"name":"TF_CLUIE_STRING","features":[213]},{"name":"TF_COMMANDING_ENABLED","features":[213]},{"name":"TF_COMMANDING_ON","features":[213]},{"name":"TF_CONTEXT_EDIT_CONTEXT_FLAGS","features":[213]},{"name":"TF_CONVERSIONMODE_ALPHANUMERIC","features":[213]},{"name":"TF_CONVERSIONMODE_CHARCODE","features":[213]},{"name":"TF_CONVERSIONMODE_EUDC","features":[213]},{"name":"TF_CONVERSIONMODE_FIXED","features":[213]},{"name":"TF_CONVERSIONMODE_FULLSHAPE","features":[213]},{"name":"TF_CONVERSIONMODE_KATAKANA","features":[213]},{"name":"TF_CONVERSIONMODE_NATIVE","features":[213]},{"name":"TF_CONVERSIONMODE_NOCONVERSION","features":[213]},{"name":"TF_CONVERSIONMODE_ROMAN","features":[213]},{"name":"TF_CONVERSIONMODE_SOFTKEYBOARD","features":[213]},{"name":"TF_CONVERSIONMODE_SYMBOL","features":[213]},{"name":"TF_CT_COLORREF","features":[213]},{"name":"TF_CT_NONE","features":[213]},{"name":"TF_CT_SYSCOLOR","features":[213]},{"name":"TF_DA_ATTR_INFO","features":[213]},{"name":"TF_DA_COLOR","features":[1,213]},{"name":"TF_DA_COLORTYPE","features":[213]},{"name":"TF_DA_LINESTYLE","features":[213]},{"name":"TF_DEFAULT_SELECTION","features":[213]},{"name":"TF_DICTATION_ENABLED","features":[213]},{"name":"TF_DICTATION_ON","features":[213]},{"name":"TF_DISABLE_BALLOON","features":[213]},{"name":"TF_DISABLE_COMMANDING","features":[213]},{"name":"TF_DISABLE_DICTATION","features":[213]},{"name":"TF_DISABLE_SPEECH","features":[213]},{"name":"TF_DISPLAYATTRIBUTE","features":[1,213]},{"name":"TF_DTLBI_NONE","features":[213]},{"name":"TF_DTLBI_USEPROFILEICON","features":[213]},{"name":"TF_ENABLE_PROCESS_ATOM","features":[213]},{"name":"TF_ES_ASYNC","features":[213]},{"name":"TF_ES_ASYNCDONTCARE","features":[213]},{"name":"TF_ES_READ","features":[213]},{"name":"TF_ES_READWRITE","features":[213]},{"name":"TF_ES_SYNC","features":[213]},{"name":"TF_E_ALREADY_EXISTS","features":[213]},{"name":"TF_E_COMPOSITION_REJECTED","features":[213]},{"name":"TF_E_DISCONNECTED","features":[213]},{"name":"TF_E_EMPTYCONTEXT","features":[213]},{"name":"TF_E_FORMAT","features":[213]},{"name":"TF_E_INVALIDPOINT","features":[213]},{"name":"TF_E_INVALIDPOS","features":[213]},{"name":"TF_E_INVALIDVIEW","features":[213]},{"name":"TF_E_LOCKED","features":[213]},{"name":"TF_E_NOCONVERSION","features":[213]},{"name":"TF_E_NOINTERFACE","features":[213]},{"name":"TF_E_NOLAYOUT","features":[213]},{"name":"TF_E_NOLOCK","features":[213]},{"name":"TF_E_NOOBJECT","features":[213]},{"name":"TF_E_NOPROVIDER","features":[213]},{"name":"TF_E_NOSELECTION","features":[213]},{"name":"TF_E_NOSERVICE","features":[213]},{"name":"TF_E_NOTOWNEDRANGE","features":[213]},{"name":"TF_E_RANGE_NOT_COVERED","features":[213]},{"name":"TF_E_READONLY","features":[213]},{"name":"TF_E_STACKFULL","features":[213]},{"name":"TF_E_SYNCHRONOUS","features":[213]},{"name":"TF_FLOATINGLANGBAR_WNDTITLE","features":[213]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEA","features":[213]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEW","features":[213]},{"name":"TF_GRAVITY_BACKWARD","features":[213]},{"name":"TF_GRAVITY_FORWARD","features":[213]},{"name":"TF_GTP_INCL_TEXT","features":[213]},{"name":"TF_GTP_NONE","features":[213]},{"name":"TF_HALTCOND","features":[213]},{"name":"TF_HF_OBJECT","features":[213]},{"name":"TF_IAS_NOQUERY","features":[213]},{"name":"TF_IAS_NO_DEFAULT_COMPOSITION","features":[213]},{"name":"TF_IAS_QUERYONLY","features":[213]},{"name":"TF_IE_CORRECTION","features":[213]},{"name":"TF_INPUTPROCESSORPROFILE","features":[213]},{"name":"TF_INVALID_COOKIE","features":[213]},{"name":"TF_INVALID_EDIT_COOKIE","features":[213]},{"name":"TF_IPPMF_DISABLEPROFILE","features":[213]},{"name":"TF_IPPMF_DONTCARECURRENTINPUTLANGUAGE","features":[213]},{"name":"TF_IPPMF_ENABLEPROFILE","features":[213]},{"name":"TF_IPPMF_FORPROCESS","features":[213]},{"name":"TF_IPPMF_FORSESSION","features":[213]},{"name":"TF_IPPMF_FORSYSTEMALL","features":[213]},{"name":"TF_IPP_CAPS_COMLESSSUPPORT","features":[213]},{"name":"TF_IPP_CAPS_DISABLEONTRANSITORY","features":[213]},{"name":"TF_IPP_CAPS_IMMERSIVESUPPORT","features":[213]},{"name":"TF_IPP_CAPS_SECUREMODESUPPORT","features":[213]},{"name":"TF_IPP_CAPS_SYSTRAYSUPPORT","features":[213]},{"name":"TF_IPP_CAPS_UIELEMENTENABLED","features":[213]},{"name":"TF_IPP_CAPS_WOW16SUPPORT","features":[213]},{"name":"TF_IPP_FLAG_ACTIVE","features":[213]},{"name":"TF_IPP_FLAG_ENABLED","features":[213]},{"name":"TF_IPP_FLAG_SUBSTITUTEDBYINPUTPROCESSOR","features":[213]},{"name":"TF_IPSINK_FLAG_ACTIVE","features":[213]},{"name":"TF_LANGBARITEMINFO","features":[213]},{"name":"TF_LANGUAGEPROFILE","features":[1,213]},{"name":"TF_LBBALLOONINFO","features":[213]},{"name":"TF_LBI_BALLOON","features":[213]},{"name":"TF_LBI_BITMAP","features":[213]},{"name":"TF_LBI_BMPF_VERTICAL","features":[213]},{"name":"TF_LBI_CLK_LEFT","features":[213]},{"name":"TF_LBI_CLK_RIGHT","features":[213]},{"name":"TF_LBI_CUSTOMUI","features":[213]},{"name":"TF_LBI_DESC_MAXLEN","features":[213]},{"name":"TF_LBI_ICON","features":[213]},{"name":"TF_LBI_STATUS","features":[213]},{"name":"TF_LBI_STATUS_BTN_TOGGLED","features":[213]},{"name":"TF_LBI_STATUS_DISABLED","features":[213]},{"name":"TF_LBI_STATUS_HIDDEN","features":[213]},{"name":"TF_LBI_STYLE_BTN_BUTTON","features":[213]},{"name":"TF_LBI_STYLE_BTN_MENU","features":[213]},{"name":"TF_LBI_STYLE_BTN_TOGGLE","features":[213]},{"name":"TF_LBI_STYLE_HIDDENBYDEFAULT","features":[213]},{"name":"TF_LBI_STYLE_HIDDENSTATUSCONTROL","features":[213]},{"name":"TF_LBI_STYLE_HIDEONNOOTHERITEMS","features":[213]},{"name":"TF_LBI_STYLE_SHOWNINTRAY","features":[213]},{"name":"TF_LBI_STYLE_SHOWNINTRAYONLY","features":[213]},{"name":"TF_LBI_STYLE_TEXTCOLORICON","features":[213]},{"name":"TF_LBI_TEXT","features":[213]},{"name":"TF_LBI_TOOLTIP","features":[213]},{"name":"TF_LBMENUF_CHECKED","features":[213]},{"name":"TF_LBMENUF_GRAYED","features":[213]},{"name":"TF_LBMENUF_RADIOCHECKED","features":[213]},{"name":"TF_LBMENUF_SEPARATOR","features":[213]},{"name":"TF_LBMENUF_SUBMENU","features":[213]},{"name":"TF_LB_BALLOON_MISS","features":[213]},{"name":"TF_LB_BALLOON_RECO","features":[213]},{"name":"TF_LB_BALLOON_SHOW","features":[213]},{"name":"TF_LC_CHANGE","features":[213]},{"name":"TF_LC_CREATE","features":[213]},{"name":"TF_LC_DESTROY","features":[213]},{"name":"TF_LMLATTELEMENT","features":[213]},{"name":"TF_LS_DASH","features":[213]},{"name":"TF_LS_DOT","features":[213]},{"name":"TF_LS_NONE","features":[213]},{"name":"TF_LS_SOLID","features":[213]},{"name":"TF_LS_SQUIGGLE","features":[213]},{"name":"TF_MENUREADY","features":[213]},{"name":"TF_MOD_ALT","features":[213]},{"name":"TF_MOD_CONTROL","features":[213]},{"name":"TF_MOD_IGNORE_ALL_MODIFIER","features":[213]},{"name":"TF_MOD_LALT","features":[213]},{"name":"TF_MOD_LCONTROL","features":[213]},{"name":"TF_MOD_LSHIFT","features":[213]},{"name":"TF_MOD_ON_KEYUP","features":[213]},{"name":"TF_MOD_RALT","features":[213]},{"name":"TF_MOD_RCONTROL","features":[213]},{"name":"TF_MOD_RSHIFT","features":[213]},{"name":"TF_MOD_SHIFT","features":[213]},{"name":"TF_PERSISTENT_PROPERTY_HEADER_ACP","features":[213]},{"name":"TF_POPF_ALL","features":[213]},{"name":"TF_PRESERVEDKEY","features":[213]},{"name":"TF_PROCESS_ATOM","features":[213]},{"name":"TF_PROFILETYPE_INPUTPROCESSOR","features":[213]},{"name":"TF_PROFILETYPE_KEYBOARDLAYOUT","features":[213]},{"name":"TF_PROFILE_ARRAY","features":[213]},{"name":"TF_PROFILE_CANTONESE","features":[213]},{"name":"TF_PROFILE_CHANGJIE","features":[213]},{"name":"TF_PROFILE_DAYI","features":[213]},{"name":"TF_PROFILE_NEWCHANGJIE","features":[213]},{"name":"TF_PROFILE_NEWPHONETIC","features":[213]},{"name":"TF_PROFILE_NEWQUICK","features":[213]},{"name":"TF_PROFILE_PHONETIC","features":[213]},{"name":"TF_PROFILE_PINYIN","features":[213]},{"name":"TF_PROFILE_QUICK","features":[213]},{"name":"TF_PROFILE_SIMPLEFAST","features":[213]},{"name":"TF_PROFILE_TIGRINYA","features":[213]},{"name":"TF_PROFILE_WUBI","features":[213]},{"name":"TF_PROFILE_YI","features":[213]},{"name":"TF_PROPERTYVAL","features":[1,41,42,213]},{"name":"TF_PROPUI_STATUS_SAVETOFILE","features":[213]},{"name":"TF_RCM_COMLESS","features":[213]},{"name":"TF_RCM_HINT_COLLISION","features":[213]},{"name":"TF_RCM_HINT_READING_LENGTH","features":[213]},{"name":"TF_RCM_VKEY","features":[213]},{"name":"TF_RIP_FLAG_FREEUNUSEDLIBRARIES","features":[213]},{"name":"TF_RIUIE_CONTEXT","features":[213]},{"name":"TF_RIUIE_ERRORINDEX","features":[213]},{"name":"TF_RIUIE_MAXREADINGSTRINGLENGTH","features":[213]},{"name":"TF_RIUIE_STRING","features":[213]},{"name":"TF_RIUIE_VERTICALORDER","features":[213]},{"name":"TF_RP_HIDDENINSETTINGUI","features":[213]},{"name":"TF_RP_LOCALPROCESS","features":[213]},{"name":"TF_RP_LOCALTHREAD","features":[213]},{"name":"TF_RP_SUBITEMINSETTINGUI","features":[213]},{"name":"TF_SD_BACKWARD","features":[213]},{"name":"TF_SD_FORWARD","features":[213]},{"name":"TF_SD_LOADING","features":[213]},{"name":"TF_SD_READONLY","features":[213]},{"name":"TF_SELECTION","features":[1,213]},{"name":"TF_SELECTIONSTYLE","features":[1,213]},{"name":"TF_SENTENCEMODE_AUTOMATIC","features":[213]},{"name":"TF_SENTENCEMODE_CONVERSATION","features":[213]},{"name":"TF_SENTENCEMODE_NONE","features":[213]},{"name":"TF_SENTENCEMODE_PHRASEPREDICT","features":[213]},{"name":"TF_SENTENCEMODE_PLAURALCLAUSE","features":[213]},{"name":"TF_SENTENCEMODE_SINGLECONVERT","features":[213]},{"name":"TF_SFT_DESKBAND","features":[213]},{"name":"TF_SFT_DOCK","features":[213]},{"name":"TF_SFT_EXTRAICONSONMINIMIZED","features":[213]},{"name":"TF_SFT_HIDDEN","features":[213]},{"name":"TF_SFT_HIGHTRANSPARENCY","features":[213]},{"name":"TF_SFT_LABELS","features":[213]},{"name":"TF_SFT_LOWTRANSPARENCY","features":[213]},{"name":"TF_SFT_MINIMIZED","features":[213]},{"name":"TF_SFT_NOEXTRAICONSONMINIMIZED","features":[213]},{"name":"TF_SFT_NOLABELS","features":[213]},{"name":"TF_SFT_NOTRANSPARENCY","features":[213]},{"name":"TF_SFT_SHOWNORMAL","features":[213]},{"name":"TF_SHOW_BALLOON","features":[213]},{"name":"TF_SPEECHUI_SHOWN","features":[213]},{"name":"TF_SS_DISJOINTSEL","features":[213]},{"name":"TF_SS_REGIONS","features":[213]},{"name":"TF_SS_TKBAUTOCORRECTENABLE","features":[213]},{"name":"TF_SS_TKBPREDICTIONENABLE","features":[213]},{"name":"TF_SS_TRANSITORY","features":[213]},{"name":"TF_ST_CORRECTION","features":[213]},{"name":"TF_S_ASYNC","features":[213]},{"name":"TF_TF_IGNOREEND","features":[213]},{"name":"TF_TF_MOVESTART","features":[213]},{"name":"TF_TMAE_COMLESS","features":[213]},{"name":"TF_TMAE_CONSOLE","features":[213]},{"name":"TF_TMAE_NOACTIVATEKEYBOARDLAYOUT","features":[213]},{"name":"TF_TMAE_NOACTIVATETIP","features":[213]},{"name":"TF_TMAE_SECUREMODE","features":[213]},{"name":"TF_TMAE_UIELEMENTENABLEDONLY","features":[213]},{"name":"TF_TMAE_WOW16","features":[213]},{"name":"TF_TMF_ACTIVATED","features":[213]},{"name":"TF_TMF_COMLESS","features":[213]},{"name":"TF_TMF_CONSOLE","features":[213]},{"name":"TF_TMF_IMMERSIVEMODE","features":[213]},{"name":"TF_TMF_NOACTIVATETIP","features":[213]},{"name":"TF_TMF_SECUREMODE","features":[213]},{"name":"TF_TMF_UIELEMENTENABLEDONLY","features":[213]},{"name":"TF_TMF_WOW16","features":[213]},{"name":"TF_TRANSITORYEXTENSION_ATSELECTION","features":[213]},{"name":"TF_TRANSITORYEXTENSION_FLOATING","features":[213]},{"name":"TF_TRANSITORYEXTENSION_NONE","features":[213]},{"name":"TF_TU_CORRECTION","features":[213]},{"name":"TF_URP_ALLPROFILES","features":[213]},{"name":"TF_URP_LOCALPROCESS","features":[213]},{"name":"TF_URP_LOCALTHREAD","features":[213]},{"name":"TF_US_HIDETIPUI","features":[213]},{"name":"TKBLT_CLASSIC","features":[213]},{"name":"TKBLT_OPTIMIZED","features":[213]},{"name":"TKBLT_UNDEFINED","features":[213]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_CHANGJIE","features":[213]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_DAYI","features":[213]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_PHONETIC","features":[213]},{"name":"TKBL_OPT_JAPANESE_ABC","features":[213]},{"name":"TKBL_OPT_KOREAN_HANGUL_2_BULSIK","features":[213]},{"name":"TKBL_OPT_SIMPLIFIED_CHINESE_PINYIN","features":[213]},{"name":"TKBL_OPT_TRADITIONAL_CHINESE_PHONETIC","features":[213]},{"name":"TKBL_UNDEFINED","features":[213]},{"name":"TKBLayoutType","features":[213]},{"name":"TKB_ALTERNATES_AUTOCORRECTION_APPLIED","features":[213]},{"name":"TKB_ALTERNATES_FOR_AUTOCORRECTION","features":[213]},{"name":"TKB_ALTERNATES_FOR_PREDICTION","features":[213]},{"name":"TKB_ALTERNATES_STANDARD","features":[213]},{"name":"TSATTRID_App","features":[213]},{"name":"TSATTRID_App_IncorrectGrammar","features":[213]},{"name":"TSATTRID_App_IncorrectSpelling","features":[213]},{"name":"TSATTRID_Font","features":[213]},{"name":"TSATTRID_Font_FaceName","features":[213]},{"name":"TSATTRID_Font_SizePts","features":[213]},{"name":"TSATTRID_Font_Style","features":[213]},{"name":"TSATTRID_Font_Style_Animation","features":[213]},{"name":"TSATTRID_Font_Style_Animation_BlinkingBackground","features":[213]},{"name":"TSATTRID_Font_Style_Animation_LasVegasLights","features":[213]},{"name":"TSATTRID_Font_Style_Animation_MarchingBlackAnts","features":[213]},{"name":"TSATTRID_Font_Style_Animation_MarchingRedAnts","features":[213]},{"name":"TSATTRID_Font_Style_Animation_Shimmer","features":[213]},{"name":"TSATTRID_Font_Style_Animation_SparkleText","features":[213]},{"name":"TSATTRID_Font_Style_Animation_WipeDown","features":[213]},{"name":"TSATTRID_Font_Style_Animation_WipeRight","features":[213]},{"name":"TSATTRID_Font_Style_BackgroundColor","features":[213]},{"name":"TSATTRID_Font_Style_Blink","features":[213]},{"name":"TSATTRID_Font_Style_Bold","features":[213]},{"name":"TSATTRID_Font_Style_Capitalize","features":[213]},{"name":"TSATTRID_Font_Style_Color","features":[213]},{"name":"TSATTRID_Font_Style_Emboss","features":[213]},{"name":"TSATTRID_Font_Style_Engrave","features":[213]},{"name":"TSATTRID_Font_Style_Height","features":[213]},{"name":"TSATTRID_Font_Style_Hidden","features":[213]},{"name":"TSATTRID_Font_Style_Italic","features":[213]},{"name":"TSATTRID_Font_Style_Kerning","features":[213]},{"name":"TSATTRID_Font_Style_Lowercase","features":[213]},{"name":"TSATTRID_Font_Style_Outlined","features":[213]},{"name":"TSATTRID_Font_Style_Overline","features":[213]},{"name":"TSATTRID_Font_Style_Overline_Double","features":[213]},{"name":"TSATTRID_Font_Style_Overline_Single","features":[213]},{"name":"TSATTRID_Font_Style_Position","features":[213]},{"name":"TSATTRID_Font_Style_Protected","features":[213]},{"name":"TSATTRID_Font_Style_Shadow","features":[213]},{"name":"TSATTRID_Font_Style_SmallCaps","features":[213]},{"name":"TSATTRID_Font_Style_Spacing","features":[213]},{"name":"TSATTRID_Font_Style_Strikethrough","features":[213]},{"name":"TSATTRID_Font_Style_Strikethrough_Double","features":[213]},{"name":"TSATTRID_Font_Style_Strikethrough_Single","features":[213]},{"name":"TSATTRID_Font_Style_Subscript","features":[213]},{"name":"TSATTRID_Font_Style_Superscript","features":[213]},{"name":"TSATTRID_Font_Style_Underline","features":[213]},{"name":"TSATTRID_Font_Style_Underline_Double","features":[213]},{"name":"TSATTRID_Font_Style_Underline_Single","features":[213]},{"name":"TSATTRID_Font_Style_Uppercase","features":[213]},{"name":"TSATTRID_Font_Style_Weight","features":[213]},{"name":"TSATTRID_List","features":[213]},{"name":"TSATTRID_List_LevelIndel","features":[213]},{"name":"TSATTRID_List_Type","features":[213]},{"name":"TSATTRID_List_Type_Arabic","features":[213]},{"name":"TSATTRID_List_Type_Bullet","features":[213]},{"name":"TSATTRID_List_Type_LowerLetter","features":[213]},{"name":"TSATTRID_List_Type_LowerRoman","features":[213]},{"name":"TSATTRID_List_Type_UpperLetter","features":[213]},{"name":"TSATTRID_List_Type_UpperRoman","features":[213]},{"name":"TSATTRID_OTHERS","features":[213]},{"name":"TSATTRID_Text","features":[213]},{"name":"TSATTRID_Text_Alignment","features":[213]},{"name":"TSATTRID_Text_Alignment_Center","features":[213]},{"name":"TSATTRID_Text_Alignment_Justify","features":[213]},{"name":"TSATTRID_Text_Alignment_Left","features":[213]},{"name":"TSATTRID_Text_Alignment_Right","features":[213]},{"name":"TSATTRID_Text_EmbeddedObject","features":[213]},{"name":"TSATTRID_Text_Hyphenation","features":[213]},{"name":"TSATTRID_Text_Language","features":[213]},{"name":"TSATTRID_Text_Link","features":[213]},{"name":"TSATTRID_Text_Orientation","features":[213]},{"name":"TSATTRID_Text_Para","features":[213]},{"name":"TSATTRID_Text_Para_FirstLineIndent","features":[213]},{"name":"TSATTRID_Text_Para_LeftIndent","features":[213]},{"name":"TSATTRID_Text_Para_LineSpacing","features":[213]},{"name":"TSATTRID_Text_Para_LineSpacing_AtLeast","features":[213]},{"name":"TSATTRID_Text_Para_LineSpacing_Double","features":[213]},{"name":"TSATTRID_Text_Para_LineSpacing_Exactly","features":[213]},{"name":"TSATTRID_Text_Para_LineSpacing_Multiple","features":[213]},{"name":"TSATTRID_Text_Para_LineSpacing_OnePtFive","features":[213]},{"name":"TSATTRID_Text_Para_LineSpacing_Single","features":[213]},{"name":"TSATTRID_Text_Para_RightIndent","features":[213]},{"name":"TSATTRID_Text_Para_SpaceAfter","features":[213]},{"name":"TSATTRID_Text_Para_SpaceBefore","features":[213]},{"name":"TSATTRID_Text_ReadOnly","features":[213]},{"name":"TSATTRID_Text_RightToLeft","features":[213]},{"name":"TSATTRID_Text_VerticalWriting","features":[213]},{"name":"TS_AE_END","features":[213]},{"name":"TS_AE_NONE","features":[213]},{"name":"TS_AE_START","features":[213]},{"name":"TS_AS_ATTR_CHANGE","features":[213]},{"name":"TS_AS_LAYOUT_CHANGE","features":[213]},{"name":"TS_AS_SEL_CHANGE","features":[213]},{"name":"TS_AS_STATUS_CHANGE","features":[213]},{"name":"TS_AS_TEXT_CHANGE","features":[213]},{"name":"TS_ATTRVAL","features":[1,41,42,213]},{"name":"TS_ATTR_FIND_BACKWARDS","features":[213]},{"name":"TS_ATTR_FIND_HIDDEN","features":[213]},{"name":"TS_ATTR_FIND_UPDATESTART","features":[213]},{"name":"TS_ATTR_FIND_WANT_END","features":[213]},{"name":"TS_ATTR_FIND_WANT_OFFSET","features":[213]},{"name":"TS_ATTR_FIND_WANT_VALUE","features":[213]},{"name":"TS_CHAR_EMBEDDED","features":[213]},{"name":"TS_CHAR_REGION","features":[213]},{"name":"TS_CHAR_REPLACEMENT","features":[213]},{"name":"TS_CH_FOLLOWING_DEL","features":[213]},{"name":"TS_CH_PRECEDING_DEL","features":[213]},{"name":"TS_DEFAULT_SELECTION","features":[213]},{"name":"TS_E_FORMAT","features":[213]},{"name":"TS_E_INVALIDPOINT","features":[213]},{"name":"TS_E_INVALIDPOS","features":[213]},{"name":"TS_E_NOINTERFACE","features":[213]},{"name":"TS_E_NOLAYOUT","features":[213]},{"name":"TS_E_NOLOCK","features":[213]},{"name":"TS_E_NOOBJECT","features":[213]},{"name":"TS_E_NOSELECTION","features":[213]},{"name":"TS_E_NOSERVICE","features":[213]},{"name":"TS_E_READONLY","features":[213]},{"name":"TS_E_SYNCHRONOUS","features":[213]},{"name":"TS_GEA_HIDDEN","features":[213]},{"name":"TS_GR_BACKWARD","features":[213]},{"name":"TS_GR_FORWARD","features":[213]},{"name":"TS_GTA_HIDDEN","features":[213]},{"name":"TS_IAS_NOQUERY","features":[213]},{"name":"TS_IAS_QUERYONLY","features":[213]},{"name":"TS_IE_COMPOSITION","features":[213]},{"name":"TS_IE_CORRECTION","features":[213]},{"name":"TS_LC_CHANGE","features":[213]},{"name":"TS_LC_CREATE","features":[213]},{"name":"TS_LC_DESTROY","features":[213]},{"name":"TS_LF_READ","features":[213]},{"name":"TS_LF_READWRITE","features":[213]},{"name":"TS_LF_SYNC","features":[213]},{"name":"TS_RT_HIDDEN","features":[213]},{"name":"TS_RT_OPAQUE","features":[213]},{"name":"TS_RT_PLAIN","features":[213]},{"name":"TS_RUNINFO","features":[213]},{"name":"TS_SD_BACKWARD","features":[213]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_ENABLED","features":[213]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_VISIBLE","features":[213]},{"name":"TS_SD_FORWARD","features":[213]},{"name":"TS_SD_INPUTPANEMANUALDISPLAYENABLE","features":[213]},{"name":"TS_SD_LOADING","features":[213]},{"name":"TS_SD_READONLY","features":[213]},{"name":"TS_SD_RESERVED","features":[213]},{"name":"TS_SD_TKBAUTOCORRECTENABLE","features":[213]},{"name":"TS_SD_TKBPREDICTIONENABLE","features":[213]},{"name":"TS_SD_UIINTEGRATIONENABLE","features":[213]},{"name":"TS_SELECTIONSTYLE","features":[1,213]},{"name":"TS_SELECTION_ACP","features":[1,213]},{"name":"TS_SELECTION_ANCHOR","features":[1,213]},{"name":"TS_SHIFT_COUNT_HIDDEN","features":[213]},{"name":"TS_SHIFT_COUNT_ONLY","features":[213]},{"name":"TS_SHIFT_HALT_HIDDEN","features":[213]},{"name":"TS_SHIFT_HALT_VISIBLE","features":[213]},{"name":"TS_SS_DISJOINTSEL","features":[213]},{"name":"TS_SS_NOHIDDENTEXT","features":[213]},{"name":"TS_SS_REGIONS","features":[213]},{"name":"TS_SS_TKBAUTOCORRECTENABLE","features":[213]},{"name":"TS_SS_TKBPREDICTIONENABLE","features":[213]},{"name":"TS_SS_TRANSITORY","features":[213]},{"name":"TS_SS_UWPCONTROL","features":[213]},{"name":"TS_STATUS","features":[213]},{"name":"TS_STRF_END","features":[213]},{"name":"TS_STRF_MID","features":[213]},{"name":"TS_STRF_START","features":[213]},{"name":"TS_ST_CORRECTION","features":[213]},{"name":"TS_ST_NONE","features":[213]},{"name":"TS_S_ASYNC","features":[213]},{"name":"TS_TC_CORRECTION","features":[213]},{"name":"TS_TC_NONE","features":[213]},{"name":"TS_TEXTCHANGE","features":[213]},{"name":"TS_VCOOKIE_NUL","features":[213]},{"name":"TfActiveSelEnd","features":[213]},{"name":"TfAnchor","features":[213]},{"name":"TfCandidateResult","features":[213]},{"name":"TfGravity","features":[213]},{"name":"TfIntegratableCandidateListSelectionStyle","features":[213]},{"name":"TfLBBalloonStyle","features":[213]},{"name":"TfLBIClick","features":[213]},{"name":"TfLayoutCode","features":[213]},{"name":"TfSapiObject","features":[213]},{"name":"TfShiftDir","features":[213]},{"name":"TsActiveSelEnd","features":[213]},{"name":"TsGravity","features":[213]},{"name":"TsLayoutCode","features":[213]},{"name":"TsRunType","features":[213]},{"name":"TsShiftDir","features":[213]},{"name":"UninitLocalMsCtfMonitor","features":[213]}],"672":[{"name":"ACCEL","features":[50]},{"name":"ACCEL_VIRT_FLAGS","features":[50]},{"name":"ALTTABINFO","features":[1,50]},{"name":"ANIMATE_WINDOW_FLAGS","features":[50]},{"name":"ANIMATIONINFO","features":[50]},{"name":"ARW_BOTTOMLEFT","features":[50]},{"name":"ARW_BOTTOMRIGHT","features":[50]},{"name":"ARW_DOWN","features":[50]},{"name":"ARW_HIDE","features":[50]},{"name":"ARW_LEFT","features":[50]},{"name":"ARW_RIGHT","features":[50]},{"name":"ARW_STARTMASK","features":[50]},{"name":"ARW_STARTRIGHT","features":[50]},{"name":"ARW_STARTTOP","features":[50]},{"name":"ARW_TOPLEFT","features":[50]},{"name":"ARW_TOPRIGHT","features":[50]},{"name":"ARW_UP","features":[50]},{"name":"ASFW_ANY","features":[50]},{"name":"AUDIODESCRIPTION","features":[1,50]},{"name":"AW_ACTIVATE","features":[50]},{"name":"AW_BLEND","features":[50]},{"name":"AW_CENTER","features":[50]},{"name":"AW_HIDE","features":[50]},{"name":"AW_HOR_NEGATIVE","features":[50]},{"name":"AW_HOR_POSITIVE","features":[50]},{"name":"AW_SLIDE","features":[50]},{"name":"AW_VER_NEGATIVE","features":[50]},{"name":"AW_VER_POSITIVE","features":[50]},{"name":"AdjustWindowRect","features":[1,50]},{"name":"AdjustWindowRectEx","features":[1,50]},{"name":"AllowSetForegroundWindow","features":[1,50]},{"name":"AnimateWindow","features":[1,50]},{"name":"AnyPopup","features":[1,50]},{"name":"AppendMenuA","features":[1,50]},{"name":"AppendMenuW","features":[1,50]},{"name":"ArrangeIconicWindows","features":[1,50]},{"name":"BM_CLICK","features":[50]},{"name":"BM_GETCHECK","features":[50]},{"name":"BM_GETIMAGE","features":[50]},{"name":"BM_GETSTATE","features":[50]},{"name":"BM_SETCHECK","features":[50]},{"name":"BM_SETDONTCLICK","features":[50]},{"name":"BM_SETIMAGE","features":[50]},{"name":"BM_SETSTATE","features":[50]},{"name":"BM_SETSTYLE","features":[50]},{"name":"BN_CLICKED","features":[50]},{"name":"BN_DBLCLK","features":[50]},{"name":"BN_DISABLE","features":[50]},{"name":"BN_DOUBLECLICKED","features":[50]},{"name":"BN_HILITE","features":[50]},{"name":"BN_KILLFOCUS","features":[50]},{"name":"BN_PAINT","features":[50]},{"name":"BN_PUSHED","features":[50]},{"name":"BN_SETFOCUS","features":[50]},{"name":"BN_UNHILITE","features":[50]},{"name":"BN_UNPUSHED","features":[50]},{"name":"BROADCAST_QUERY_DENY","features":[50]},{"name":"BSF_MSGSRV32ISOK","features":[50]},{"name":"BSF_MSGSRV32ISOK_BIT","features":[50]},{"name":"BSM_INSTALLABLEDRIVERS","features":[50]},{"name":"BSM_NETDRIVER","features":[50]},{"name":"BSM_VXDS","features":[50]},{"name":"BST_FOCUS","features":[50]},{"name":"BST_PUSHED","features":[50]},{"name":"BS_3STATE","features":[50]},{"name":"BS_AUTO3STATE","features":[50]},{"name":"BS_AUTOCHECKBOX","features":[50]},{"name":"BS_AUTORADIOBUTTON","features":[50]},{"name":"BS_BITMAP","features":[50]},{"name":"BS_BOTTOM","features":[50]},{"name":"BS_CENTER","features":[50]},{"name":"BS_CHECKBOX","features":[50]},{"name":"BS_DEFPUSHBUTTON","features":[50]},{"name":"BS_FLAT","features":[50]},{"name":"BS_GROUPBOX","features":[50]},{"name":"BS_ICON","features":[50]},{"name":"BS_LEFT","features":[50]},{"name":"BS_LEFTTEXT","features":[50]},{"name":"BS_MULTILINE","features":[50]},{"name":"BS_NOTIFY","features":[50]},{"name":"BS_OWNERDRAW","features":[50]},{"name":"BS_PUSHBOX","features":[50]},{"name":"BS_PUSHBUTTON","features":[50]},{"name":"BS_PUSHLIKE","features":[50]},{"name":"BS_RADIOBUTTON","features":[50]},{"name":"BS_RIGHT","features":[50]},{"name":"BS_RIGHTBUTTON","features":[50]},{"name":"BS_TEXT","features":[50]},{"name":"BS_TOP","features":[50]},{"name":"BS_TYPEMASK","features":[50]},{"name":"BS_USERBUTTON","features":[50]},{"name":"BS_VCENTER","features":[50]},{"name":"BeginDeferWindowPos","features":[50]},{"name":"BringWindowToTop","features":[1,50]},{"name":"CALERT_SYSTEM","features":[50]},{"name":"CASCADE_WINDOWS_HOW","features":[50]},{"name":"CBN_CLOSEUP","features":[50]},{"name":"CBN_DBLCLK","features":[50]},{"name":"CBN_DROPDOWN","features":[50]},{"name":"CBN_EDITCHANGE","features":[50]},{"name":"CBN_EDITUPDATE","features":[50]},{"name":"CBN_ERRSPACE","features":[50]},{"name":"CBN_KILLFOCUS","features":[50]},{"name":"CBN_SELCHANGE","features":[50]},{"name":"CBN_SELENDCANCEL","features":[50]},{"name":"CBN_SELENDOK","features":[50]},{"name":"CBN_SETFOCUS","features":[50]},{"name":"CBS_AUTOHSCROLL","features":[50]},{"name":"CBS_DISABLENOSCROLL","features":[50]},{"name":"CBS_DROPDOWN","features":[50]},{"name":"CBS_DROPDOWNLIST","features":[50]},{"name":"CBS_HASSTRINGS","features":[50]},{"name":"CBS_LOWERCASE","features":[50]},{"name":"CBS_NOINTEGRALHEIGHT","features":[50]},{"name":"CBS_OEMCONVERT","features":[50]},{"name":"CBS_OWNERDRAWFIXED","features":[50]},{"name":"CBS_OWNERDRAWVARIABLE","features":[50]},{"name":"CBS_SIMPLE","features":[50]},{"name":"CBS_SORT","features":[50]},{"name":"CBS_UPPERCASE","features":[50]},{"name":"CBTACTIVATESTRUCT","features":[1,50]},{"name":"CBT_CREATEWNDA","features":[1,50]},{"name":"CBT_CREATEWNDW","features":[1,50]},{"name":"CB_ADDSTRING","features":[50]},{"name":"CB_DELETESTRING","features":[50]},{"name":"CB_DIR","features":[50]},{"name":"CB_ERR","features":[50]},{"name":"CB_ERRSPACE","features":[50]},{"name":"CB_FINDSTRING","features":[50]},{"name":"CB_FINDSTRINGEXACT","features":[50]},{"name":"CB_GETCOMBOBOXINFO","features":[50]},{"name":"CB_GETCOUNT","features":[50]},{"name":"CB_GETCURSEL","features":[50]},{"name":"CB_GETDROPPEDCONTROLRECT","features":[50]},{"name":"CB_GETDROPPEDSTATE","features":[50]},{"name":"CB_GETDROPPEDWIDTH","features":[50]},{"name":"CB_GETEDITSEL","features":[50]},{"name":"CB_GETEXTENDEDUI","features":[50]},{"name":"CB_GETHORIZONTALEXTENT","features":[50]},{"name":"CB_GETITEMDATA","features":[50]},{"name":"CB_GETITEMHEIGHT","features":[50]},{"name":"CB_GETLBTEXT","features":[50]},{"name":"CB_GETLBTEXTLEN","features":[50]},{"name":"CB_GETLOCALE","features":[50]},{"name":"CB_GETTOPINDEX","features":[50]},{"name":"CB_INITSTORAGE","features":[50]},{"name":"CB_INSERTSTRING","features":[50]},{"name":"CB_LIMITTEXT","features":[50]},{"name":"CB_MSGMAX","features":[50]},{"name":"CB_MULTIPLEADDSTRING","features":[50]},{"name":"CB_OKAY","features":[50]},{"name":"CB_RESETCONTENT","features":[50]},{"name":"CB_SELECTSTRING","features":[50]},{"name":"CB_SETCURSEL","features":[50]},{"name":"CB_SETDROPPEDWIDTH","features":[50]},{"name":"CB_SETEDITSEL","features":[50]},{"name":"CB_SETEXTENDEDUI","features":[50]},{"name":"CB_SETHORIZONTALEXTENT","features":[50]},{"name":"CB_SETITEMDATA","features":[50]},{"name":"CB_SETITEMHEIGHT","features":[50]},{"name":"CB_SETLOCALE","features":[50]},{"name":"CB_SETTOPINDEX","features":[50]},{"name":"CB_SHOWDROPDOWN","features":[50]},{"name":"CCHILDREN_SCROLLBAR","features":[50]},{"name":"CCHILDREN_TITLEBAR","features":[50]},{"name":"CHANGEFILTERSTRUCT","features":[50]},{"name":"CHANGE_WINDOW_MESSAGE_FILTER_FLAGS","features":[50]},{"name":"CHILDID_SELF","features":[50]},{"name":"CLIENTCREATESTRUCT","features":[1,50]},{"name":"CONSOLE_APPLICATION_16BIT","features":[50]},{"name":"CONSOLE_CARET_SELECTION","features":[50]},{"name":"CONSOLE_CARET_VISIBLE","features":[50]},{"name":"CONTACTVISUALIZATION_OFF","features":[50]},{"name":"CONTACTVISUALIZATION_ON","features":[50]},{"name":"CONTACTVISUALIZATION_PRESENTATIONMODE","features":[50]},{"name":"CREATEPROCESS_MANIFEST_RESOURCE_ID","features":[50]},{"name":"CREATESTRUCTA","features":[1,50]},{"name":"CREATESTRUCTW","features":[1,50]},{"name":"CSOUND_SYSTEM","features":[50]},{"name":"CS_BYTEALIGNCLIENT","features":[50]},{"name":"CS_BYTEALIGNWINDOW","features":[50]},{"name":"CS_CLASSDC","features":[50]},{"name":"CS_DBLCLKS","features":[50]},{"name":"CS_DROPSHADOW","features":[50]},{"name":"CS_GLOBALCLASS","features":[50]},{"name":"CS_HREDRAW","features":[50]},{"name":"CS_IME","features":[50]},{"name":"CS_NOCLOSE","features":[50]},{"name":"CS_OWNDC","features":[50]},{"name":"CS_PARENTDC","features":[50]},{"name":"CS_SAVEBITS","features":[50]},{"name":"CS_VREDRAW","features":[50]},{"name":"CTLCOLOR_BTN","features":[50]},{"name":"CTLCOLOR_DLG","features":[50]},{"name":"CTLCOLOR_EDIT","features":[50]},{"name":"CTLCOLOR_LISTBOX","features":[50]},{"name":"CTLCOLOR_MAX","features":[50]},{"name":"CTLCOLOR_MSGBOX","features":[50]},{"name":"CTLCOLOR_SCROLLBAR","features":[50]},{"name":"CTLCOLOR_STATIC","features":[50]},{"name":"CURSORINFO","features":[1,50]},{"name":"CURSORINFO_FLAGS","features":[50]},{"name":"CURSORSHAPE","features":[50]},{"name":"CURSOR_CREATION_SCALING_DEFAULT","features":[50]},{"name":"CURSOR_CREATION_SCALING_NONE","features":[50]},{"name":"CURSOR_SHOWING","features":[50]},{"name":"CURSOR_SUPPRESSED","features":[50]},{"name":"CWF_CREATE_ONLY","features":[50]},{"name":"CWPRETSTRUCT","features":[1,50]},{"name":"CWPSTRUCT","features":[1,50]},{"name":"CWP_ALL","features":[50]},{"name":"CWP_FLAGS","features":[50]},{"name":"CWP_SKIPDISABLED","features":[50]},{"name":"CWP_SKIPINVISIBLE","features":[50]},{"name":"CWP_SKIPTRANSPARENT","features":[50]},{"name":"CW_USEDEFAULT","features":[50]},{"name":"CalculatePopupWindowPosition","features":[1,50]},{"name":"CallMsgFilterA","features":[1,50]},{"name":"CallMsgFilterW","features":[1,50]},{"name":"CallNextHookEx","features":[1,50]},{"name":"CallWindowProcA","features":[1,50]},{"name":"CallWindowProcW","features":[1,50]},{"name":"CancelShutdown","features":[1,50]},{"name":"CascadeWindows","features":[1,50]},{"name":"ChangeMenuA","features":[1,50]},{"name":"ChangeMenuW","features":[1,50]},{"name":"ChangeWindowMessageFilter","features":[1,50]},{"name":"ChangeWindowMessageFilterEx","features":[1,50]},{"name":"CharLowerA","features":[50]},{"name":"CharLowerBuffA","features":[50]},{"name":"CharLowerBuffW","features":[50]},{"name":"CharLowerW","features":[50]},{"name":"CharNextA","features":[50]},{"name":"CharNextExA","features":[50]},{"name":"CharNextW","features":[50]},{"name":"CharPrevA","features":[50]},{"name":"CharPrevExA","features":[50]},{"name":"CharPrevW","features":[50]},{"name":"CharToOemA","features":[1,50]},{"name":"CharToOemBuffA","features":[1,50]},{"name":"CharToOemBuffW","features":[1,50]},{"name":"CharToOemW","features":[1,50]},{"name":"CharUpperA","features":[50]},{"name":"CharUpperBuffA","features":[50]},{"name":"CharUpperBuffW","features":[50]},{"name":"CharUpperW","features":[50]},{"name":"CheckMenuItem","features":[50]},{"name":"CheckMenuRadioItem","features":[1,50]},{"name":"ChildWindowFromPoint","features":[1,50]},{"name":"ChildWindowFromPointEx","features":[1,50]},{"name":"ClipCursor","features":[1,50]},{"name":"CloseWindow","features":[1,50]},{"name":"CopyAcceleratorTableA","features":[50]},{"name":"CopyAcceleratorTableW","features":[50]},{"name":"CopyIcon","features":[50]},{"name":"CopyImage","features":[1,50]},{"name":"CreateAcceleratorTableA","features":[50]},{"name":"CreateAcceleratorTableW","features":[50]},{"name":"CreateCaret","features":[1,12,50]},{"name":"CreateCursor","features":[1,50]},{"name":"CreateDialogIndirectParamA","features":[1,50]},{"name":"CreateDialogIndirectParamW","features":[1,50]},{"name":"CreateDialogParamA","features":[1,50]},{"name":"CreateDialogParamW","features":[1,50]},{"name":"CreateIcon","features":[1,50]},{"name":"CreateIconFromResource","features":[1,50]},{"name":"CreateIconFromResourceEx","features":[1,50]},{"name":"CreateIconIndirect","features":[1,12,50]},{"name":"CreateMDIWindowA","features":[1,50]},{"name":"CreateMDIWindowW","features":[1,50]},{"name":"CreateMenu","features":[50]},{"name":"CreatePopupMenu","features":[50]},{"name":"CreateResourceIndexer","features":[50]},{"name":"CreateWindowExA","features":[1,50]},{"name":"CreateWindowExW","features":[1,50]},{"name":"DBTF_MEDIA","features":[50]},{"name":"DBTF_NET","features":[50]},{"name":"DBTF_RESOURCE","features":[50]},{"name":"DBTF_SLOWNET","features":[50]},{"name":"DBTF_XPORT","features":[50]},{"name":"DBT_APPYBEGIN","features":[50]},{"name":"DBT_APPYEND","features":[50]},{"name":"DBT_CONFIGCHANGECANCELED","features":[50]},{"name":"DBT_CONFIGCHANGED","features":[50]},{"name":"DBT_CONFIGMGAPI32","features":[50]},{"name":"DBT_CONFIGMGPRIVATE","features":[50]},{"name":"DBT_CUSTOMEVENT","features":[50]},{"name":"DBT_DEVICEARRIVAL","features":[50]},{"name":"DBT_DEVICEQUERYREMOVE","features":[50]},{"name":"DBT_DEVICEQUERYREMOVEFAILED","features":[50]},{"name":"DBT_DEVICEREMOVECOMPLETE","features":[50]},{"name":"DBT_DEVICEREMOVEPENDING","features":[50]},{"name":"DBT_DEVICETYPESPECIFIC","features":[50]},{"name":"DBT_DEVNODES_CHANGED","features":[50]},{"name":"DBT_DEVTYP_DEVICEINTERFACE","features":[50]},{"name":"DBT_DEVTYP_DEVNODE","features":[50]},{"name":"DBT_DEVTYP_HANDLE","features":[50]},{"name":"DBT_DEVTYP_NET","features":[50]},{"name":"DBT_DEVTYP_OEM","features":[50]},{"name":"DBT_DEVTYP_PORT","features":[50]},{"name":"DBT_DEVTYP_VOLUME","features":[50]},{"name":"DBT_LOW_DISK_SPACE","features":[50]},{"name":"DBT_MONITORCHANGE","features":[50]},{"name":"DBT_NO_DISK_SPACE","features":[50]},{"name":"DBT_QUERYCHANGECONFIG","features":[50]},{"name":"DBT_SHELLLOGGEDON","features":[50]},{"name":"DBT_USERDEFINED","features":[50]},{"name":"DBT_VOLLOCKLOCKFAILED","features":[50]},{"name":"DBT_VOLLOCKLOCKRELEASED","features":[50]},{"name":"DBT_VOLLOCKLOCKTAKEN","features":[50]},{"name":"DBT_VOLLOCKQUERYLOCK","features":[50]},{"name":"DBT_VOLLOCKQUERYUNLOCK","features":[50]},{"name":"DBT_VOLLOCKUNLOCKFAILED","features":[50]},{"name":"DBT_VPOWERDAPI","features":[50]},{"name":"DBT_VXDINITCOMPLETE","features":[50]},{"name":"DCX_EXCLUDEUPDATE","features":[50]},{"name":"DC_HASDEFID","features":[50]},{"name":"DEBUGHOOKINFO","features":[1,50]},{"name":"DEVICE_EVENT_BECOMING_READY","features":[50]},{"name":"DEVICE_EVENT_EXTERNAL_REQUEST","features":[50]},{"name":"DEVICE_EVENT_GENERIC_DATA","features":[50]},{"name":"DEVICE_EVENT_MOUNT","features":[50]},{"name":"DEVICE_EVENT_RBC_DATA","features":[50]},{"name":"DEVICE_NOTIFY_ALL_INTERFACE_CLASSES","features":[50]},{"name":"DEVICE_NOTIFY_CALLBACK","features":[50]},{"name":"DEVICE_NOTIFY_SERVICE_HANDLE","features":[50]},{"name":"DEVICE_NOTIFY_WINDOW_HANDLE","features":[50]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_A","features":[50]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_W","features":[50]},{"name":"DEV_BROADCAST_DEVNODE","features":[50]},{"name":"DEV_BROADCAST_HANDLE","features":[1,50]},{"name":"DEV_BROADCAST_HANDLE32","features":[50]},{"name":"DEV_BROADCAST_HANDLE64","features":[50]},{"name":"DEV_BROADCAST_HDR","features":[50]},{"name":"DEV_BROADCAST_HDR_DEVICE_TYPE","features":[50]},{"name":"DEV_BROADCAST_NET","features":[50]},{"name":"DEV_BROADCAST_OEM","features":[50]},{"name":"DEV_BROADCAST_PORT_A","features":[50]},{"name":"DEV_BROADCAST_PORT_W","features":[50]},{"name":"DEV_BROADCAST_VOLUME","features":[50]},{"name":"DEV_BROADCAST_VOLUME_FLAGS","features":[50]},{"name":"DIFFERENCE","features":[50]},{"name":"DISK_HEALTH_NOTIFICATION_DATA","features":[50]},{"name":"DI_COMPAT","features":[50]},{"name":"DI_DEFAULTSIZE","features":[50]},{"name":"DI_FLAGS","features":[50]},{"name":"DI_IMAGE","features":[50]},{"name":"DI_MASK","features":[50]},{"name":"DI_NOMIRROR","features":[50]},{"name":"DI_NORMAL","features":[50]},{"name":"DLGC_BUTTON","features":[50]},{"name":"DLGC_DEFPUSHBUTTON","features":[50]},{"name":"DLGC_HASSETSEL","features":[50]},{"name":"DLGC_RADIOBUTTON","features":[50]},{"name":"DLGC_STATIC","features":[50]},{"name":"DLGC_UNDEFPUSHBUTTON","features":[50]},{"name":"DLGC_WANTALLKEYS","features":[50]},{"name":"DLGC_WANTARROWS","features":[50]},{"name":"DLGC_WANTCHARS","features":[50]},{"name":"DLGC_WANTMESSAGE","features":[50]},{"name":"DLGC_WANTTAB","features":[50]},{"name":"DLGITEMTEMPLATE","features":[50]},{"name":"DLGPROC","features":[1,50]},{"name":"DLGTEMPLATE","features":[50]},{"name":"DLGWINDOWEXTRA","features":[50]},{"name":"DM_GETDEFID","features":[50]},{"name":"DM_POINTERHITTEST","features":[50]},{"name":"DM_REPOSITION","features":[50]},{"name":"DM_SETDEFID","features":[50]},{"name":"DOF_DIRECTORY","features":[50]},{"name":"DOF_DOCUMENT","features":[50]},{"name":"DOF_EXECUTABLE","features":[50]},{"name":"DOF_MULTIPLE","features":[50]},{"name":"DOF_PROGMAN","features":[50]},{"name":"DOF_SHELLDATA","features":[50]},{"name":"DO_DROPFILE","features":[50]},{"name":"DO_PRINTFILE","features":[50]},{"name":"DROPSTRUCT","features":[1,50]},{"name":"DS_3DLOOK","features":[50]},{"name":"DS_ABSALIGN","features":[50]},{"name":"DS_CENTER","features":[50]},{"name":"DS_CENTERMOUSE","features":[50]},{"name":"DS_CONTEXTHELP","features":[50]},{"name":"DS_CONTROL","features":[50]},{"name":"DS_FIXEDSYS","features":[50]},{"name":"DS_LOCALEDIT","features":[50]},{"name":"DS_MODALFRAME","features":[50]},{"name":"DS_NOFAILCREATE","features":[50]},{"name":"DS_NOIDLEMSG","features":[50]},{"name":"DS_SETFONT","features":[50]},{"name":"DS_SETFOREGROUND","features":[50]},{"name":"DS_SYSMODAL","features":[50]},{"name":"DS_USEPIXELS","features":[50]},{"name":"DWLP_MSGRESULT","features":[50]},{"name":"DWL_DLGPROC","features":[50]},{"name":"DWL_MSGRESULT","features":[50]},{"name":"DWL_USER","features":[50]},{"name":"DefDlgProcA","features":[1,50]},{"name":"DefDlgProcW","features":[1,50]},{"name":"DefFrameProcA","features":[1,50]},{"name":"DefFrameProcW","features":[1,50]},{"name":"DefMDIChildProcA","features":[1,50]},{"name":"DefMDIChildProcW","features":[1,50]},{"name":"DefWindowProcA","features":[1,50]},{"name":"DefWindowProcW","features":[1,50]},{"name":"DeferWindowPos","features":[1,50]},{"name":"DeleteMenu","features":[1,50]},{"name":"DeregisterShellHookWindow","features":[1,50]},{"name":"DestroyAcceleratorTable","features":[1,50]},{"name":"DestroyCaret","features":[1,50]},{"name":"DestroyCursor","features":[1,50]},{"name":"DestroyIcon","features":[1,50]},{"name":"DestroyIndexedResults","features":[50]},{"name":"DestroyMenu","features":[1,50]},{"name":"DestroyResourceIndexer","features":[50]},{"name":"DestroyWindow","features":[1,50]},{"name":"DialogBoxIndirectParamA","features":[1,50]},{"name":"DialogBoxIndirectParamW","features":[1,50]},{"name":"DialogBoxParamA","features":[1,50]},{"name":"DialogBoxParamW","features":[1,50]},{"name":"DisableProcessWindowsGhosting","features":[50]},{"name":"DispatchMessageA","features":[1,50]},{"name":"DispatchMessageW","features":[1,50]},{"name":"DragObject","features":[1,50]},{"name":"DrawIcon","features":[1,12,50]},{"name":"DrawIconEx","features":[1,12,50]},{"name":"DrawMenuBar","features":[1,50]},{"name":"EC_LEFTMARGIN","features":[50]},{"name":"EC_RIGHTMARGIN","features":[50]},{"name":"EC_USEFONTINFO","features":[50]},{"name":"EDD_GET_DEVICE_INTERFACE_NAME","features":[50]},{"name":"EDIT_CONTROL_FEATURE","features":[50]},{"name":"EDIT_CONTROL_FEATURE_ENTERPRISE_DATA_PROTECTION_PASTE_SUPPORT","features":[50]},{"name":"EDIT_CONTROL_FEATURE_PASTE_NOTIFICATIONS","features":[50]},{"name":"EIMES_CANCELCOMPSTRINFOCUS","features":[50]},{"name":"EIMES_COMPLETECOMPSTRKILLFOCUS","features":[50]},{"name":"EIMES_GETCOMPSTRATONCE","features":[50]},{"name":"EMSIS_COMPOSITIONSTRING","features":[50]},{"name":"ENDSESSION_CLOSEAPP","features":[50]},{"name":"ENDSESSION_CRITICAL","features":[50]},{"name":"ENDSESSION_LOGOFF","features":[50]},{"name":"EN_AFTER_PASTE","features":[50]},{"name":"EN_ALIGN_LTR_EC","features":[50]},{"name":"EN_ALIGN_RTL_EC","features":[50]},{"name":"EN_BEFORE_PASTE","features":[50]},{"name":"EN_CHANGE","features":[50]},{"name":"EN_ERRSPACE","features":[50]},{"name":"EN_HSCROLL","features":[50]},{"name":"EN_KILLFOCUS","features":[50]},{"name":"EN_MAXTEXT","features":[50]},{"name":"EN_SETFOCUS","features":[50]},{"name":"EN_UPDATE","features":[50]},{"name":"EN_VSCROLL","features":[50]},{"name":"ES_AUTOHSCROLL","features":[50]},{"name":"ES_AUTOVSCROLL","features":[50]},{"name":"ES_CENTER","features":[50]},{"name":"ES_LEFT","features":[50]},{"name":"ES_LOWERCASE","features":[50]},{"name":"ES_MULTILINE","features":[50]},{"name":"ES_NOHIDESEL","features":[50]},{"name":"ES_NUMBER","features":[50]},{"name":"ES_OEMCONVERT","features":[50]},{"name":"ES_PASSWORD","features":[50]},{"name":"ES_READONLY","features":[50]},{"name":"ES_RIGHT","features":[50]},{"name":"ES_UPPERCASE","features":[50]},{"name":"ES_WANTRETURN","features":[50]},{"name":"EVENTMSG","features":[1,50]},{"name":"EVENT_AIA_END","features":[50]},{"name":"EVENT_AIA_START","features":[50]},{"name":"EVENT_CONSOLE_CARET","features":[50]},{"name":"EVENT_CONSOLE_END","features":[50]},{"name":"EVENT_CONSOLE_END_APPLICATION","features":[50]},{"name":"EVENT_CONSOLE_LAYOUT","features":[50]},{"name":"EVENT_CONSOLE_START_APPLICATION","features":[50]},{"name":"EVENT_CONSOLE_UPDATE_REGION","features":[50]},{"name":"EVENT_CONSOLE_UPDATE_SCROLL","features":[50]},{"name":"EVENT_CONSOLE_UPDATE_SIMPLE","features":[50]},{"name":"EVENT_MAX","features":[50]},{"name":"EVENT_MIN","features":[50]},{"name":"EVENT_OBJECT_ACCELERATORCHANGE","features":[50]},{"name":"EVENT_OBJECT_CLOAKED","features":[50]},{"name":"EVENT_OBJECT_CONTENTSCROLLED","features":[50]},{"name":"EVENT_OBJECT_CREATE","features":[50]},{"name":"EVENT_OBJECT_DEFACTIONCHANGE","features":[50]},{"name":"EVENT_OBJECT_DESCRIPTIONCHANGE","features":[50]},{"name":"EVENT_OBJECT_DESTROY","features":[50]},{"name":"EVENT_OBJECT_DRAGCANCEL","features":[50]},{"name":"EVENT_OBJECT_DRAGCOMPLETE","features":[50]},{"name":"EVENT_OBJECT_DRAGDROPPED","features":[50]},{"name":"EVENT_OBJECT_DRAGENTER","features":[50]},{"name":"EVENT_OBJECT_DRAGLEAVE","features":[50]},{"name":"EVENT_OBJECT_DRAGSTART","features":[50]},{"name":"EVENT_OBJECT_END","features":[50]},{"name":"EVENT_OBJECT_FOCUS","features":[50]},{"name":"EVENT_OBJECT_HELPCHANGE","features":[50]},{"name":"EVENT_OBJECT_HIDE","features":[50]},{"name":"EVENT_OBJECT_HOSTEDOBJECTSINVALIDATED","features":[50]},{"name":"EVENT_OBJECT_IME_CHANGE","features":[50]},{"name":"EVENT_OBJECT_IME_HIDE","features":[50]},{"name":"EVENT_OBJECT_IME_SHOW","features":[50]},{"name":"EVENT_OBJECT_INVOKED","features":[50]},{"name":"EVENT_OBJECT_LIVEREGIONCHANGED","features":[50]},{"name":"EVENT_OBJECT_LOCATIONCHANGE","features":[50]},{"name":"EVENT_OBJECT_NAMECHANGE","features":[50]},{"name":"EVENT_OBJECT_PARENTCHANGE","features":[50]},{"name":"EVENT_OBJECT_REORDER","features":[50]},{"name":"EVENT_OBJECT_SELECTION","features":[50]},{"name":"EVENT_OBJECT_SELECTIONADD","features":[50]},{"name":"EVENT_OBJECT_SELECTIONREMOVE","features":[50]},{"name":"EVENT_OBJECT_SELECTIONWITHIN","features":[50]},{"name":"EVENT_OBJECT_SHOW","features":[50]},{"name":"EVENT_OBJECT_STATECHANGE","features":[50]},{"name":"EVENT_OBJECT_TEXTEDIT_CONVERSIONTARGETCHANGED","features":[50]},{"name":"EVENT_OBJECT_TEXTSELECTIONCHANGED","features":[50]},{"name":"EVENT_OBJECT_UNCLOAKED","features":[50]},{"name":"EVENT_OBJECT_VALUECHANGE","features":[50]},{"name":"EVENT_OEM_DEFINED_END","features":[50]},{"name":"EVENT_OEM_DEFINED_START","features":[50]},{"name":"EVENT_SYSTEM_ALERT","features":[50]},{"name":"EVENT_SYSTEM_ARRANGMENTPREVIEW","features":[50]},{"name":"EVENT_SYSTEM_CAPTUREEND","features":[50]},{"name":"EVENT_SYSTEM_CAPTURESTART","features":[50]},{"name":"EVENT_SYSTEM_CONTEXTHELPEND","features":[50]},{"name":"EVENT_SYSTEM_CONTEXTHELPSTART","features":[50]},{"name":"EVENT_SYSTEM_DESKTOPSWITCH","features":[50]},{"name":"EVENT_SYSTEM_DIALOGEND","features":[50]},{"name":"EVENT_SYSTEM_DIALOGSTART","features":[50]},{"name":"EVENT_SYSTEM_DRAGDROPEND","features":[50]},{"name":"EVENT_SYSTEM_DRAGDROPSTART","features":[50]},{"name":"EVENT_SYSTEM_END","features":[50]},{"name":"EVENT_SYSTEM_FOREGROUND","features":[50]},{"name":"EVENT_SYSTEM_IME_KEY_NOTIFICATION","features":[50]},{"name":"EVENT_SYSTEM_MENUEND","features":[50]},{"name":"EVENT_SYSTEM_MENUPOPUPEND","features":[50]},{"name":"EVENT_SYSTEM_MENUPOPUPSTART","features":[50]},{"name":"EVENT_SYSTEM_MENUSTART","features":[50]},{"name":"EVENT_SYSTEM_MINIMIZEEND","features":[50]},{"name":"EVENT_SYSTEM_MINIMIZESTART","features":[50]},{"name":"EVENT_SYSTEM_MOVESIZEEND","features":[50]},{"name":"EVENT_SYSTEM_MOVESIZESTART","features":[50]},{"name":"EVENT_SYSTEM_SCROLLINGEND","features":[50]},{"name":"EVENT_SYSTEM_SCROLLINGSTART","features":[50]},{"name":"EVENT_SYSTEM_SOUND","features":[50]},{"name":"EVENT_SYSTEM_SWITCHEND","features":[50]},{"name":"EVENT_SYSTEM_SWITCHER_APPDROPPED","features":[50]},{"name":"EVENT_SYSTEM_SWITCHER_APPGRABBED","features":[50]},{"name":"EVENT_SYSTEM_SWITCHER_APPOVERTARGET","features":[50]},{"name":"EVENT_SYSTEM_SWITCHER_CANCELLED","features":[50]},{"name":"EVENT_SYSTEM_SWITCHSTART","features":[50]},{"name":"EVENT_UIA_EVENTID_END","features":[50]},{"name":"EVENT_UIA_EVENTID_START","features":[50]},{"name":"EVENT_UIA_PROPID_END","features":[50]},{"name":"EVENT_UIA_PROPID_START","features":[50]},{"name":"EnableMenuItem","features":[1,50]},{"name":"EndDeferWindowPos","features":[1,50]},{"name":"EndDialog","features":[1,50]},{"name":"EndMenu","features":[1,50]},{"name":"EnumChildWindows","features":[1,50]},{"name":"EnumPropsA","features":[1,50]},{"name":"EnumPropsExA","features":[1,50]},{"name":"EnumPropsExW","features":[1,50]},{"name":"EnumPropsW","features":[1,50]},{"name":"EnumThreadWindows","features":[1,50]},{"name":"EnumWindows","features":[1,50]},{"name":"FALT","features":[50]},{"name":"FAPPCOMMAND_KEY","features":[50]},{"name":"FAPPCOMMAND_MASK","features":[50]},{"name":"FAPPCOMMAND_MOUSE","features":[50]},{"name":"FAPPCOMMAND_OEM","features":[50]},{"name":"FCONTROL","features":[50]},{"name":"FE_FONTSMOOTHINGCLEARTYPE","features":[50]},{"name":"FE_FONTSMOOTHINGORIENTATIONBGR","features":[50]},{"name":"FE_FONTSMOOTHINGORIENTATIONRGB","features":[50]},{"name":"FE_FONTSMOOTHINGSTANDARD","features":[50]},{"name":"FKF_AVAILABLE","features":[50]},{"name":"FKF_CLICKON","features":[50]},{"name":"FKF_CONFIRMHOTKEY","features":[50]},{"name":"FKF_FILTERKEYSON","features":[50]},{"name":"FKF_HOTKEYACTIVE","features":[50]},{"name":"FKF_HOTKEYSOUND","features":[50]},{"name":"FKF_INDICATOR","features":[50]},{"name":"FLASHWINFO","features":[1,50]},{"name":"FLASHWINFO_FLAGS","features":[50]},{"name":"FLASHW_ALL","features":[50]},{"name":"FLASHW_CAPTION","features":[50]},{"name":"FLASHW_STOP","features":[50]},{"name":"FLASHW_TIMER","features":[50]},{"name":"FLASHW_TIMERNOFG","features":[50]},{"name":"FLASHW_TRAY","features":[50]},{"name":"FNOINVERT","features":[50]},{"name":"FOREGROUND_WINDOW_LOCK_CODE","features":[50]},{"name":"FSHIFT","features":[50]},{"name":"FVIRTKEY","features":[50]},{"name":"FindWindowA","features":[1,50]},{"name":"FindWindowExA","features":[1,50]},{"name":"FindWindowExW","features":[1,50]},{"name":"FindWindowW","features":[1,50]},{"name":"FlashWindow","features":[1,50]},{"name":"FlashWindowEx","features":[1,50]},{"name":"GA_PARENT","features":[50]},{"name":"GA_ROOT","features":[50]},{"name":"GA_ROOTOWNER","features":[50]},{"name":"GCF_INCLUDE_ANCESTORS","features":[50]},{"name":"GCLP_HBRBACKGROUND","features":[50]},{"name":"GCLP_HCURSOR","features":[50]},{"name":"GCLP_HICON","features":[50]},{"name":"GCLP_HICONSM","features":[50]},{"name":"GCLP_HMODULE","features":[50]},{"name":"GCLP_MENUNAME","features":[50]},{"name":"GCLP_WNDPROC","features":[50]},{"name":"GCL_CBCLSEXTRA","features":[50]},{"name":"GCL_CBWNDEXTRA","features":[50]},{"name":"GCL_HBRBACKGROUND","features":[50]},{"name":"GCL_HCURSOR","features":[50]},{"name":"GCL_HICON","features":[50]},{"name":"GCL_HICONSM","features":[50]},{"name":"GCL_HMODULE","features":[50]},{"name":"GCL_MENUNAME","features":[50]},{"name":"GCL_STYLE","features":[50]},{"name":"GCL_WNDPROC","features":[50]},{"name":"GCW_ATOM","features":[50]},{"name":"GDI_IMAGE_TYPE","features":[50]},{"name":"GESTURECONFIGMAXCOUNT","features":[50]},{"name":"GESTUREVISUALIZATION_DOUBLETAP","features":[50]},{"name":"GESTUREVISUALIZATION_OFF","features":[50]},{"name":"GESTUREVISUALIZATION_ON","features":[50]},{"name":"GESTUREVISUALIZATION_PRESSANDHOLD","features":[50]},{"name":"GESTUREVISUALIZATION_PRESSANDTAP","features":[50]},{"name":"GESTUREVISUALIZATION_RIGHTTAP","features":[50]},{"name":"GESTUREVISUALIZATION_TAP","features":[50]},{"name":"GETCLIPBMETADATA","features":[1,50]},{"name":"GET_ANCESTOR_FLAGS","features":[50]},{"name":"GET_CLASS_LONG_INDEX","features":[50]},{"name":"GET_MENU_DEFAULT_ITEM_FLAGS","features":[50]},{"name":"GET_WINDOW_CMD","features":[50]},{"name":"GF_BEGIN","features":[50]},{"name":"GF_END","features":[50]},{"name":"GF_INERTIA","features":[50]},{"name":"GIDC_ARRIVAL","features":[50]},{"name":"GIDC_REMOVAL","features":[50]},{"name":"GMDI_GOINTOPOPUPS","features":[50]},{"name":"GMDI_USEDISABLED","features":[50]},{"name":"GUID_DEVICE_EVENT_RBC","features":[50]},{"name":"GUID_IO_CDROM_EXCLUSIVE_LOCK","features":[50]},{"name":"GUID_IO_CDROM_EXCLUSIVE_UNLOCK","features":[50]},{"name":"GUID_IO_DEVICE_BECOMING_READY","features":[50]},{"name":"GUID_IO_DEVICE_EXTERNAL_REQUEST","features":[50]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL","features":[50]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL_INFORMATION","features":[50]},{"name":"GUID_IO_DISK_HEALTH_NOTIFICATION","features":[50]},{"name":"GUID_IO_DISK_LAYOUT_CHANGE","features":[50]},{"name":"GUID_IO_DRIVE_REQUIRES_CLEANING","features":[50]},{"name":"GUID_IO_MEDIA_ARRIVAL","features":[50]},{"name":"GUID_IO_MEDIA_EJECT_REQUEST","features":[50]},{"name":"GUID_IO_MEDIA_REMOVAL","features":[50]},{"name":"GUID_IO_TAPE_ERASE","features":[50]},{"name":"GUID_IO_VOLUME_BACKGROUND_FORMAT","features":[50]},{"name":"GUID_IO_VOLUME_CHANGE","features":[50]},{"name":"GUID_IO_VOLUME_CHANGE_SIZE","features":[50]},{"name":"GUID_IO_VOLUME_DEVICE_INTERFACE","features":[50]},{"name":"GUID_IO_VOLUME_DISMOUNT","features":[50]},{"name":"GUID_IO_VOLUME_DISMOUNT_FAILED","features":[50]},{"name":"GUID_IO_VOLUME_FORCE_CLOSED","features":[50]},{"name":"GUID_IO_VOLUME_FVE_STATUS_CHANGE","features":[50]},{"name":"GUID_IO_VOLUME_INFO_MAKE_COMPAT","features":[50]},{"name":"GUID_IO_VOLUME_LOCK","features":[50]},{"name":"GUID_IO_VOLUME_LOCK_FAILED","features":[50]},{"name":"GUID_IO_VOLUME_MOUNT","features":[50]},{"name":"GUID_IO_VOLUME_NAME_CHANGE","features":[50]},{"name":"GUID_IO_VOLUME_NEED_CHKDSK","features":[50]},{"name":"GUID_IO_VOLUME_PHYSICAL_CONFIGURATION_CHANGE","features":[50]},{"name":"GUID_IO_VOLUME_PREPARING_EJECT","features":[50]},{"name":"GUID_IO_VOLUME_UNIQUE_ID_CHANGE","features":[50]},{"name":"GUID_IO_VOLUME_UNLOCK","features":[50]},{"name":"GUID_IO_VOLUME_WEARING_OUT","features":[50]},{"name":"GUID_IO_VOLUME_WORM_NEAR_FULL","features":[50]},{"name":"GUITHREADINFO","features":[1,50]},{"name":"GUITHREADINFO_FLAGS","features":[50]},{"name":"GUI_16BITTASK","features":[50]},{"name":"GUI_CARETBLINKING","features":[50]},{"name":"GUI_INMENUMODE","features":[50]},{"name":"GUI_INMOVESIZE","features":[50]},{"name":"GUI_POPUPMENUMODE","features":[50]},{"name":"GUI_SYSTEMMENUMODE","features":[50]},{"name":"GWFS_INCLUDE_ANCESTORS","features":[50]},{"name":"GWLP_HINSTANCE","features":[50]},{"name":"GWLP_HWNDPARENT","features":[50]},{"name":"GWLP_ID","features":[50]},{"name":"GWLP_USERDATA","features":[50]},{"name":"GWLP_WNDPROC","features":[50]},{"name":"GWL_EXSTYLE","features":[50]},{"name":"GWL_HINSTANCE","features":[50]},{"name":"GWL_HWNDPARENT","features":[50]},{"name":"GWL_ID","features":[50]},{"name":"GWL_STYLE","features":[50]},{"name":"GWL_USERDATA","features":[50]},{"name":"GWL_WNDPROC","features":[50]},{"name":"GW_CHILD","features":[50]},{"name":"GW_ENABLEDPOPUP","features":[50]},{"name":"GW_HWNDFIRST","features":[50]},{"name":"GW_HWNDLAST","features":[50]},{"name":"GW_HWNDNEXT","features":[50]},{"name":"GW_HWNDPREV","features":[50]},{"name":"GW_MAX","features":[50]},{"name":"GW_OWNER","features":[50]},{"name":"GetAltTabInfoA","features":[1,50]},{"name":"GetAltTabInfoW","features":[1,50]},{"name":"GetAncestor","features":[1,50]},{"name":"GetCaretBlinkTime","features":[50]},{"name":"GetCaretPos","features":[1,50]},{"name":"GetClassInfoA","features":[1,12,50]},{"name":"GetClassInfoExA","features":[1,12,50]},{"name":"GetClassInfoExW","features":[1,12,50]},{"name":"GetClassInfoW","features":[1,12,50]},{"name":"GetClassLongA","features":[1,50]},{"name":"GetClassLongPtrA","features":[1,50]},{"name":"GetClassLongPtrW","features":[1,50]},{"name":"GetClassLongW","features":[1,50]},{"name":"GetClassNameA","features":[1,50]},{"name":"GetClassNameW","features":[1,50]},{"name":"GetClassWord","features":[1,50]},{"name":"GetClientRect","features":[1,50]},{"name":"GetClipCursor","features":[1,50]},{"name":"GetCursor","features":[50]},{"name":"GetCursorInfo","features":[1,50]},{"name":"GetCursorPos","features":[1,50]},{"name":"GetDesktopWindow","features":[1,50]},{"name":"GetDialogBaseUnits","features":[50]},{"name":"GetDlgCtrlID","features":[1,50]},{"name":"GetDlgItem","features":[1,50]},{"name":"GetDlgItemInt","features":[1,50]},{"name":"GetDlgItemTextA","features":[1,50]},{"name":"GetDlgItemTextW","features":[1,50]},{"name":"GetForegroundWindow","features":[1,50]},{"name":"GetGUIThreadInfo","features":[1,50]},{"name":"GetIconInfo","features":[1,12,50]},{"name":"GetIconInfoExA","features":[1,12,50]},{"name":"GetIconInfoExW","features":[1,12,50]},{"name":"GetInputState","features":[1,50]},{"name":"GetLastActivePopup","features":[1,50]},{"name":"GetLayeredWindowAttributes","features":[1,50]},{"name":"GetMenu","features":[1,50]},{"name":"GetMenuBarInfo","features":[1,50]},{"name":"GetMenuCheckMarkDimensions","features":[50]},{"name":"GetMenuDefaultItem","features":[50]},{"name":"GetMenuInfo","features":[1,12,50]},{"name":"GetMenuItemCount","features":[50]},{"name":"GetMenuItemID","features":[50]},{"name":"GetMenuItemInfoA","features":[1,12,50]},{"name":"GetMenuItemInfoW","features":[1,12,50]},{"name":"GetMenuItemRect","features":[1,50]},{"name":"GetMenuState","features":[50]},{"name":"GetMenuStringA","features":[50]},{"name":"GetMenuStringW","features":[50]},{"name":"GetMessageA","features":[1,50]},{"name":"GetMessageExtraInfo","features":[1,50]},{"name":"GetMessagePos","features":[50]},{"name":"GetMessageTime","features":[50]},{"name":"GetMessageW","features":[1,50]},{"name":"GetNextDlgGroupItem","features":[1,50]},{"name":"GetNextDlgTabItem","features":[1,50]},{"name":"GetParent","features":[1,50]},{"name":"GetPhysicalCursorPos","features":[1,50]},{"name":"GetProcessDefaultLayout","features":[1,50]},{"name":"GetPropA","features":[1,50]},{"name":"GetPropW","features":[1,50]},{"name":"GetQueueStatus","features":[50]},{"name":"GetScrollBarInfo","features":[1,50]},{"name":"GetScrollInfo","features":[1,50]},{"name":"GetScrollPos","features":[1,50]},{"name":"GetScrollRange","features":[1,50]},{"name":"GetShellWindow","features":[1,50]},{"name":"GetSubMenu","features":[50]},{"name":"GetSystemMenu","features":[1,50]},{"name":"GetSystemMetrics","features":[50]},{"name":"GetTitleBarInfo","features":[1,50]},{"name":"GetTopWindow","features":[1,50]},{"name":"GetWindow","features":[1,50]},{"name":"GetWindowDisplayAffinity","features":[1,50]},{"name":"GetWindowInfo","features":[1,50]},{"name":"GetWindowLongA","features":[1,50]},{"name":"GetWindowLongPtrA","features":[1,50]},{"name":"GetWindowLongPtrW","features":[1,50]},{"name":"GetWindowLongW","features":[1,50]},{"name":"GetWindowModuleFileNameA","features":[1,50]},{"name":"GetWindowModuleFileNameW","features":[1,50]},{"name":"GetWindowPlacement","features":[1,50]},{"name":"GetWindowRect","features":[1,50]},{"name":"GetWindowTextA","features":[1,50]},{"name":"GetWindowTextLengthA","features":[1,50]},{"name":"GetWindowTextLengthW","features":[1,50]},{"name":"GetWindowTextW","features":[1,50]},{"name":"GetWindowThreadProcessId","features":[1,50]},{"name":"GetWindowWord","features":[1,50]},{"name":"HACCEL","features":[50]},{"name":"HANDEDNESS","features":[50]},{"name":"HANDEDNESS_LEFT","features":[50]},{"name":"HANDEDNESS_RIGHT","features":[50]},{"name":"HARDWAREHOOKSTRUCT","features":[1,50]},{"name":"HBMMENU_CALLBACK","features":[12,50]},{"name":"HBMMENU_MBAR_CLOSE","features":[12,50]},{"name":"HBMMENU_MBAR_CLOSE_D","features":[12,50]},{"name":"HBMMENU_MBAR_MINIMIZE","features":[12,50]},{"name":"HBMMENU_MBAR_MINIMIZE_D","features":[12,50]},{"name":"HBMMENU_MBAR_RESTORE","features":[12,50]},{"name":"HBMMENU_POPUP_CLOSE","features":[12,50]},{"name":"HBMMENU_POPUP_MAXIMIZE","features":[12,50]},{"name":"HBMMENU_POPUP_MINIMIZE","features":[12,50]},{"name":"HBMMENU_POPUP_RESTORE","features":[12,50]},{"name":"HBMMENU_SYSTEM","features":[12,50]},{"name":"HCBT_ACTIVATE","features":[50]},{"name":"HCBT_CLICKSKIPPED","features":[50]},{"name":"HCBT_CREATEWND","features":[50]},{"name":"HCBT_DESTROYWND","features":[50]},{"name":"HCBT_KEYSKIPPED","features":[50]},{"name":"HCBT_MINMAX","features":[50]},{"name":"HCBT_MOVESIZE","features":[50]},{"name":"HCBT_QS","features":[50]},{"name":"HCBT_SETFOCUS","features":[50]},{"name":"HCBT_SYSCOMMAND","features":[50]},{"name":"HCF_DEFAULTDESKTOP","features":[50]},{"name":"HCF_LOGONDESKTOP","features":[50]},{"name":"HCURSOR","features":[50]},{"name":"HC_ACTION","features":[50]},{"name":"HC_GETNEXT","features":[50]},{"name":"HC_NOREM","features":[50]},{"name":"HC_NOREMOVE","features":[50]},{"name":"HC_SKIP","features":[50]},{"name":"HC_SYSMODALOFF","features":[50]},{"name":"HC_SYSMODALON","features":[50]},{"name":"HDEVNOTIFY","features":[50]},{"name":"HDWP","features":[50]},{"name":"HELP_COMMAND","features":[50]},{"name":"HELP_CONTENTS","features":[50]},{"name":"HELP_CONTEXT","features":[50]},{"name":"HELP_CONTEXTMENU","features":[50]},{"name":"HELP_CONTEXTPOPUP","features":[50]},{"name":"HELP_FINDER","features":[50]},{"name":"HELP_FORCEFILE","features":[50]},{"name":"HELP_HELPONHELP","features":[50]},{"name":"HELP_INDEX","features":[50]},{"name":"HELP_KEY","features":[50]},{"name":"HELP_MULTIKEY","features":[50]},{"name":"HELP_PARTIALKEY","features":[50]},{"name":"HELP_QUIT","features":[50]},{"name":"HELP_SETCONTENTS","features":[50]},{"name":"HELP_SETINDEX","features":[50]},{"name":"HELP_SETPOPUP_POS","features":[50]},{"name":"HELP_SETWINPOS","features":[50]},{"name":"HELP_TCARD","features":[50]},{"name":"HELP_TCARD_DATA","features":[50]},{"name":"HELP_TCARD_OTHER_CALLER","features":[50]},{"name":"HELP_WM_HELP","features":[50]},{"name":"HHOOK","features":[50]},{"name":"HICON","features":[50]},{"name":"HIDE_WINDOW","features":[50]},{"name":"HKL_NEXT","features":[50]},{"name":"HKL_PREV","features":[50]},{"name":"HMENU","features":[50]},{"name":"HOOKPROC","features":[1,50]},{"name":"HSHELL_ACCESSIBILITYSTATE","features":[50]},{"name":"HSHELL_ACTIVATESHELLWINDOW","features":[50]},{"name":"HSHELL_APPCOMMAND","features":[50]},{"name":"HSHELL_ENDTASK","features":[50]},{"name":"HSHELL_GETMINRECT","features":[50]},{"name":"HSHELL_HIGHBIT","features":[50]},{"name":"HSHELL_LANGUAGE","features":[50]},{"name":"HSHELL_MONITORCHANGED","features":[50]},{"name":"HSHELL_REDRAW","features":[50]},{"name":"HSHELL_SYSMENU","features":[50]},{"name":"HSHELL_TASKMAN","features":[50]},{"name":"HSHELL_WINDOWACTIVATED","features":[50]},{"name":"HSHELL_WINDOWCREATED","features":[50]},{"name":"HSHELL_WINDOWDESTROYED","features":[50]},{"name":"HSHELL_WINDOWREPLACED","features":[50]},{"name":"HSHELL_WINDOWREPLACING","features":[50]},{"name":"HTBORDER","features":[50]},{"name":"HTBOTTOM","features":[50]},{"name":"HTBOTTOMLEFT","features":[50]},{"name":"HTBOTTOMRIGHT","features":[50]},{"name":"HTCAPTION","features":[50]},{"name":"HTCLIENT","features":[50]},{"name":"HTCLOSE","features":[50]},{"name":"HTERROR","features":[50]},{"name":"HTGROWBOX","features":[50]},{"name":"HTHELP","features":[50]},{"name":"HTHSCROLL","features":[50]},{"name":"HTLEFT","features":[50]},{"name":"HTMAXBUTTON","features":[50]},{"name":"HTMENU","features":[50]},{"name":"HTMINBUTTON","features":[50]},{"name":"HTNOWHERE","features":[50]},{"name":"HTOBJECT","features":[50]},{"name":"HTREDUCE","features":[50]},{"name":"HTRIGHT","features":[50]},{"name":"HTSIZE","features":[50]},{"name":"HTSIZEFIRST","features":[50]},{"name":"HTSIZELAST","features":[50]},{"name":"HTSYSMENU","features":[50]},{"name":"HTTOP","features":[50]},{"name":"HTTOPLEFT","features":[50]},{"name":"HTTOPRIGHT","features":[50]},{"name":"HTTRANSPARENT","features":[50]},{"name":"HTVSCROLL","features":[50]},{"name":"HTZOOM","features":[50]},{"name":"HWND_BOTTOM","features":[1,50]},{"name":"HWND_BROADCAST","features":[1,50]},{"name":"HWND_DESKTOP","features":[1,50]},{"name":"HWND_MESSAGE","features":[1,50]},{"name":"HWND_NOTOPMOST","features":[1,50]},{"name":"HWND_TOP","features":[1,50]},{"name":"HWND_TOPMOST","features":[1,50]},{"name":"HideCaret","features":[1,50]},{"name":"HiliteMenuItem","features":[1,50]},{"name":"ICONINFO","features":[1,12,50]},{"name":"ICONINFOEXA","features":[1,12,50]},{"name":"ICONINFOEXW","features":[1,12,50]},{"name":"ICONMETRICSA","features":[12,50]},{"name":"ICONMETRICSW","features":[12,50]},{"name":"ICON_BIG","features":[50]},{"name":"ICON_SMALL","features":[50]},{"name":"ICON_SMALL2","features":[50]},{"name":"IDABORT","features":[50]},{"name":"IDANI_CAPTION","features":[50]},{"name":"IDANI_OPEN","features":[50]},{"name":"IDASYNC","features":[50]},{"name":"IDCANCEL","features":[50]},{"name":"IDCLOSE","features":[50]},{"name":"IDCONTINUE","features":[50]},{"name":"IDC_APPSTARTING","features":[50]},{"name":"IDC_ARROW","features":[50]},{"name":"IDC_CROSS","features":[50]},{"name":"IDC_HAND","features":[50]},{"name":"IDC_HELP","features":[50]},{"name":"IDC_IBEAM","features":[50]},{"name":"IDC_ICON","features":[50]},{"name":"IDC_NO","features":[50]},{"name":"IDC_PERSON","features":[50]},{"name":"IDC_PIN","features":[50]},{"name":"IDC_SIZE","features":[50]},{"name":"IDC_SIZEALL","features":[50]},{"name":"IDC_SIZENESW","features":[50]},{"name":"IDC_SIZENS","features":[50]},{"name":"IDC_SIZENWSE","features":[50]},{"name":"IDC_SIZEWE","features":[50]},{"name":"IDC_UPARROW","features":[50]},{"name":"IDC_WAIT","features":[50]},{"name":"IDHELP","features":[50]},{"name":"IDHOT_SNAPDESKTOP","features":[50]},{"name":"IDHOT_SNAPWINDOW","features":[50]},{"name":"IDH_CANCEL","features":[50]},{"name":"IDH_GENERIC_HELP_BUTTON","features":[50]},{"name":"IDH_HELP","features":[50]},{"name":"IDH_MISSING_CONTEXT","features":[50]},{"name":"IDH_NO_HELP","features":[50]},{"name":"IDH_OK","features":[50]},{"name":"IDIGNORE","features":[50]},{"name":"IDI_APPLICATION","features":[50]},{"name":"IDI_ASTERISK","features":[50]},{"name":"IDI_ERROR","features":[50]},{"name":"IDI_EXCLAMATION","features":[50]},{"name":"IDI_HAND","features":[50]},{"name":"IDI_INFORMATION","features":[50]},{"name":"IDI_QUESTION","features":[50]},{"name":"IDI_SHIELD","features":[50]},{"name":"IDI_WARNING","features":[50]},{"name":"IDI_WINLOGO","features":[50]},{"name":"IDNO","features":[50]},{"name":"IDOK","features":[50]},{"name":"IDRETRY","features":[50]},{"name":"IDTIMEOUT","features":[50]},{"name":"IDTRYAGAIN","features":[50]},{"name":"IDYES","features":[50]},{"name":"IMAGE_BITMAP","features":[50]},{"name":"IMAGE_CURSOR","features":[50]},{"name":"IMAGE_ENHMETAFILE","features":[50]},{"name":"IMAGE_FLAGS","features":[50]},{"name":"IMAGE_ICON","features":[50]},{"name":"INDEXID_CONTAINER","features":[50]},{"name":"INDEXID_OBJECT","features":[50]},{"name":"INPUTLANGCHANGE_BACKWARD","features":[50]},{"name":"INPUTLANGCHANGE_FORWARD","features":[50]},{"name":"INPUTLANGCHANGE_SYSCHARSET","features":[50]},{"name":"ISMEX_CALLBACK","features":[50]},{"name":"ISMEX_NOSEND","features":[50]},{"name":"ISMEX_NOTIFY","features":[50]},{"name":"ISMEX_REPLIED","features":[50]},{"name":"ISMEX_SEND","features":[50]},{"name":"ISOLATIONAWARE_MANIFEST_RESOURCE_ID","features":[50]},{"name":"ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID","features":[50]},{"name":"ISOLATIONPOLICY_BROWSER_MANIFEST_RESOURCE_ID","features":[50]},{"name":"ISOLATIONPOLICY_MANIFEST_RESOURCE_ID","features":[50]},{"name":"InSendMessage","features":[1,50]},{"name":"InSendMessageEx","features":[50]},{"name":"IndexFilePath","features":[50]},{"name":"IndexedResourceQualifier","features":[50]},{"name":"InheritWindowMonitor","features":[1,50]},{"name":"InsertMenuA","features":[1,50]},{"name":"InsertMenuItemA","features":[1,12,50]},{"name":"InsertMenuItemW","features":[1,12,50]},{"name":"InsertMenuW","features":[1,50]},{"name":"InternalGetWindowText","features":[1,50]},{"name":"IsCharAlphaA","features":[1,50]},{"name":"IsCharAlphaNumericA","features":[1,50]},{"name":"IsCharAlphaNumericW","features":[1,50]},{"name":"IsCharAlphaW","features":[1,50]},{"name":"IsCharLowerA","features":[1,50]},{"name":"IsCharUpperA","features":[1,50]},{"name":"IsCharUpperW","features":[1,50]},{"name":"IsChild","features":[1,50]},{"name":"IsDialogMessageA","features":[1,50]},{"name":"IsDialogMessageW","features":[1,50]},{"name":"IsGUIThread","features":[1,50]},{"name":"IsHungAppWindow","features":[1,50]},{"name":"IsIconic","features":[1,50]},{"name":"IsMenu","features":[1,50]},{"name":"IsProcessDPIAware","features":[1,50]},{"name":"IsWindow","features":[1,50]},{"name":"IsWindowArranged","features":[1,50]},{"name":"IsWindowUnicode","features":[1,50]},{"name":"IsWindowVisible","features":[1,50]},{"name":"IsWow64Message","features":[1,50]},{"name":"IsZoomed","features":[1,50]},{"name":"KBDLLHOOKSTRUCT","features":[50]},{"name":"KBDLLHOOKSTRUCT_FLAGS","features":[50]},{"name":"KF_ALTDOWN","features":[50]},{"name":"KF_DLGMODE","features":[50]},{"name":"KF_EXTENDED","features":[50]},{"name":"KF_MENUMODE","features":[50]},{"name":"KF_REPEAT","features":[50]},{"name":"KF_UP","features":[50]},{"name":"KL_NAMELENGTH","features":[50]},{"name":"KillTimer","features":[1,50]},{"name":"LAYERED_WINDOW_ATTRIBUTES_FLAGS","features":[50]},{"name":"LBN_DBLCLK","features":[50]},{"name":"LBN_ERRSPACE","features":[50]},{"name":"LBN_KILLFOCUS","features":[50]},{"name":"LBN_SELCANCEL","features":[50]},{"name":"LBN_SELCHANGE","features":[50]},{"name":"LBN_SETFOCUS","features":[50]},{"name":"LBS_COMBOBOX","features":[50]},{"name":"LBS_DISABLENOSCROLL","features":[50]},{"name":"LBS_EXTENDEDSEL","features":[50]},{"name":"LBS_HASSTRINGS","features":[50]},{"name":"LBS_MULTICOLUMN","features":[50]},{"name":"LBS_MULTIPLESEL","features":[50]},{"name":"LBS_NODATA","features":[50]},{"name":"LBS_NOINTEGRALHEIGHT","features":[50]},{"name":"LBS_NOREDRAW","features":[50]},{"name":"LBS_NOSEL","features":[50]},{"name":"LBS_NOTIFY","features":[50]},{"name":"LBS_OWNERDRAWFIXED","features":[50]},{"name":"LBS_OWNERDRAWVARIABLE","features":[50]},{"name":"LBS_SORT","features":[50]},{"name":"LBS_STANDARD","features":[50]},{"name":"LBS_USETABSTOPS","features":[50]},{"name":"LBS_WANTKEYBOARDINPUT","features":[50]},{"name":"LB_ADDFILE","features":[50]},{"name":"LB_ADDSTRING","features":[50]},{"name":"LB_CTLCODE","features":[50]},{"name":"LB_DELETESTRING","features":[50]},{"name":"LB_DIR","features":[50]},{"name":"LB_ERR","features":[50]},{"name":"LB_ERRSPACE","features":[50]},{"name":"LB_FINDSTRING","features":[50]},{"name":"LB_FINDSTRINGEXACT","features":[50]},{"name":"LB_GETANCHORINDEX","features":[50]},{"name":"LB_GETCARETINDEX","features":[50]},{"name":"LB_GETCOUNT","features":[50]},{"name":"LB_GETCURSEL","features":[50]},{"name":"LB_GETHORIZONTALEXTENT","features":[50]},{"name":"LB_GETITEMDATA","features":[50]},{"name":"LB_GETITEMHEIGHT","features":[50]},{"name":"LB_GETITEMRECT","features":[50]},{"name":"LB_GETLISTBOXINFO","features":[50]},{"name":"LB_GETLOCALE","features":[50]},{"name":"LB_GETSEL","features":[50]},{"name":"LB_GETSELCOUNT","features":[50]},{"name":"LB_GETSELITEMS","features":[50]},{"name":"LB_GETTEXT","features":[50]},{"name":"LB_GETTEXTLEN","features":[50]},{"name":"LB_GETTOPINDEX","features":[50]},{"name":"LB_INITSTORAGE","features":[50]},{"name":"LB_INSERTSTRING","features":[50]},{"name":"LB_ITEMFROMPOINT","features":[50]},{"name":"LB_MSGMAX","features":[50]},{"name":"LB_MULTIPLEADDSTRING","features":[50]},{"name":"LB_OKAY","features":[50]},{"name":"LB_RESETCONTENT","features":[50]},{"name":"LB_SELECTSTRING","features":[50]},{"name":"LB_SELITEMRANGE","features":[50]},{"name":"LB_SELITEMRANGEEX","features":[50]},{"name":"LB_SETANCHORINDEX","features":[50]},{"name":"LB_SETCARETINDEX","features":[50]},{"name":"LB_SETCOLUMNWIDTH","features":[50]},{"name":"LB_SETCOUNT","features":[50]},{"name":"LB_SETCURSEL","features":[50]},{"name":"LB_SETHORIZONTALEXTENT","features":[50]},{"name":"LB_SETITEMDATA","features":[50]},{"name":"LB_SETITEMHEIGHT","features":[50]},{"name":"LB_SETLOCALE","features":[50]},{"name":"LB_SETSEL","features":[50]},{"name":"LB_SETTABSTOPS","features":[50]},{"name":"LB_SETTOPINDEX","features":[50]},{"name":"LLKHF_ALTDOWN","features":[50]},{"name":"LLKHF_EXTENDED","features":[50]},{"name":"LLKHF_INJECTED","features":[50]},{"name":"LLKHF_LOWER_IL_INJECTED","features":[50]},{"name":"LLKHF_UP","features":[50]},{"name":"LLMHF_INJECTED","features":[50]},{"name":"LLMHF_LOWER_IL_INJECTED","features":[50]},{"name":"LOCKF_LOGICAL_LOCK","features":[50]},{"name":"LOCKF_PHYSICAL_LOCK","features":[50]},{"name":"LOCKP_ALLOW_MEM_MAPPING","features":[50]},{"name":"LOCKP_ALLOW_WRITES","features":[50]},{"name":"LOCKP_FAIL_MEM_MAPPING","features":[50]},{"name":"LOCKP_FAIL_WRITES","features":[50]},{"name":"LOCKP_LOCK_FOR_FORMAT","features":[50]},{"name":"LOCKP_USER_MASK","features":[50]},{"name":"LR_COLOR","features":[50]},{"name":"LR_COPYDELETEORG","features":[50]},{"name":"LR_COPYFROMRESOURCE","features":[50]},{"name":"LR_COPYRETURNORG","features":[50]},{"name":"LR_CREATEDIBSECTION","features":[50]},{"name":"LR_DEFAULTCOLOR","features":[50]},{"name":"LR_DEFAULTSIZE","features":[50]},{"name":"LR_LOADFROMFILE","features":[50]},{"name":"LR_LOADMAP3DCOLORS","features":[50]},{"name":"LR_LOADTRANSPARENT","features":[50]},{"name":"LR_MONOCHROME","features":[50]},{"name":"LR_SHARED","features":[50]},{"name":"LR_VGACOLOR","features":[50]},{"name":"LSFW_LOCK","features":[50]},{"name":"LSFW_UNLOCK","features":[50]},{"name":"LWA_ALPHA","features":[50]},{"name":"LWA_COLORKEY","features":[50]},{"name":"LoadAcceleratorsA","features":[1,50]},{"name":"LoadAcceleratorsW","features":[1,50]},{"name":"LoadCursorA","features":[1,50]},{"name":"LoadCursorFromFileA","features":[50]},{"name":"LoadCursorFromFileW","features":[50]},{"name":"LoadCursorW","features":[1,50]},{"name":"LoadIconA","features":[1,50]},{"name":"LoadIconW","features":[1,50]},{"name":"LoadImageA","features":[1,50]},{"name":"LoadImageW","features":[1,50]},{"name":"LoadMenuA","features":[1,50]},{"name":"LoadMenuIndirectA","features":[50]},{"name":"LoadMenuIndirectW","features":[50]},{"name":"LoadMenuW","features":[1,50]},{"name":"LoadStringA","features":[1,50]},{"name":"LoadStringW","features":[1,50]},{"name":"LockSetForegroundWindow","features":[1,50]},{"name":"LogicalToPhysicalPoint","features":[1,50]},{"name":"LookupIconIdFromDirectory","features":[1,50]},{"name":"LookupIconIdFromDirectoryEx","features":[1,50]},{"name":"MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[50]},{"name":"MAX_LOGICALDPIOVERRIDE","features":[50]},{"name":"MAX_STR_BLOCKREASON","features":[50]},{"name":"MAX_TOUCH_COUNT","features":[50]},{"name":"MAX_TOUCH_PREDICTION_FILTER_TAPS","features":[50]},{"name":"MA_ACTIVATE","features":[50]},{"name":"MA_ACTIVATEANDEAT","features":[50]},{"name":"MA_NOACTIVATE","features":[50]},{"name":"MA_NOACTIVATEANDEAT","features":[50]},{"name":"MB_ABORTRETRYIGNORE","features":[50]},{"name":"MB_APPLMODAL","features":[50]},{"name":"MB_CANCELTRYCONTINUE","features":[50]},{"name":"MB_DEFAULT_DESKTOP_ONLY","features":[50]},{"name":"MB_DEFBUTTON1","features":[50]},{"name":"MB_DEFBUTTON2","features":[50]},{"name":"MB_DEFBUTTON3","features":[50]},{"name":"MB_DEFBUTTON4","features":[50]},{"name":"MB_DEFMASK","features":[50]},{"name":"MB_HELP","features":[50]},{"name":"MB_ICONASTERISK","features":[50]},{"name":"MB_ICONERROR","features":[50]},{"name":"MB_ICONEXCLAMATION","features":[50]},{"name":"MB_ICONHAND","features":[50]},{"name":"MB_ICONINFORMATION","features":[50]},{"name":"MB_ICONMASK","features":[50]},{"name":"MB_ICONQUESTION","features":[50]},{"name":"MB_ICONSTOP","features":[50]},{"name":"MB_ICONWARNING","features":[50]},{"name":"MB_MISCMASK","features":[50]},{"name":"MB_MODEMASK","features":[50]},{"name":"MB_NOFOCUS","features":[50]},{"name":"MB_OK","features":[50]},{"name":"MB_OKCANCEL","features":[50]},{"name":"MB_RETRYCANCEL","features":[50]},{"name":"MB_RIGHT","features":[50]},{"name":"MB_RTLREADING","features":[50]},{"name":"MB_SERVICE_NOTIFICATION","features":[50]},{"name":"MB_SERVICE_NOTIFICATION_NT3X","features":[50]},{"name":"MB_SETFOREGROUND","features":[50]},{"name":"MB_SYSTEMMODAL","features":[50]},{"name":"MB_TASKMODAL","features":[50]},{"name":"MB_TOPMOST","features":[50]},{"name":"MB_TYPEMASK","features":[50]},{"name":"MB_USERICON","features":[50]},{"name":"MB_YESNO","features":[50]},{"name":"MB_YESNOCANCEL","features":[50]},{"name":"MDICREATESTRUCTA","features":[1,50]},{"name":"MDICREATESTRUCTW","features":[1,50]},{"name":"MDINEXTMENU","features":[1,50]},{"name":"MDIS_ALLCHILDSTYLES","features":[50]},{"name":"MDITILE_HORIZONTAL","features":[50]},{"name":"MDITILE_SKIPDISABLED","features":[50]},{"name":"MDITILE_VERTICAL","features":[50]},{"name":"MDITILE_ZORDER","features":[50]},{"name":"MENUBARINFO","features":[1,50]},{"name":"MENUEX_TEMPLATE_HEADER","features":[50]},{"name":"MENUEX_TEMPLATE_ITEM","features":[50]},{"name":"MENUGETOBJECTINFO","features":[50]},{"name":"MENUGETOBJECTINFO_FLAGS","features":[50]},{"name":"MENUINFO","features":[12,50]},{"name":"MENUINFO_MASK","features":[50]},{"name":"MENUINFO_STYLE","features":[50]},{"name":"MENUITEMINFOA","features":[12,50]},{"name":"MENUITEMINFOW","features":[12,50]},{"name":"MENUITEMTEMPLATE","features":[50]},{"name":"MENUITEMTEMPLATEHEADER","features":[50]},{"name":"MENUTEMPLATEEX","features":[50]},{"name":"MENU_ITEM_FLAGS","features":[50]},{"name":"MENU_ITEM_MASK","features":[50]},{"name":"MENU_ITEM_STATE","features":[50]},{"name":"MENU_ITEM_TYPE","features":[50]},{"name":"MESSAGEBOX_RESULT","features":[50]},{"name":"MESSAGEBOX_STYLE","features":[50]},{"name":"MESSAGE_RESOURCE_BLOCK","features":[50]},{"name":"MESSAGE_RESOURCE_DATA","features":[50]},{"name":"MESSAGE_RESOURCE_ENTRY","features":[50]},{"name":"METRICS_USEDEFAULT","features":[50]},{"name":"MFS_CHECKED","features":[50]},{"name":"MFS_DEFAULT","features":[50]},{"name":"MFS_DISABLED","features":[50]},{"name":"MFS_ENABLED","features":[50]},{"name":"MFS_GRAYED","features":[50]},{"name":"MFS_HILITE","features":[50]},{"name":"MFS_UNCHECKED","features":[50]},{"name":"MFS_UNHILITE","features":[50]},{"name":"MFT_BITMAP","features":[50]},{"name":"MFT_MENUBARBREAK","features":[50]},{"name":"MFT_MENUBREAK","features":[50]},{"name":"MFT_OWNERDRAW","features":[50]},{"name":"MFT_RADIOCHECK","features":[50]},{"name":"MFT_RIGHTJUSTIFY","features":[50]},{"name":"MFT_RIGHTORDER","features":[50]},{"name":"MFT_SEPARATOR","features":[50]},{"name":"MFT_STRING","features":[50]},{"name":"MF_APPEND","features":[50]},{"name":"MF_BITMAP","features":[50]},{"name":"MF_BYCOMMAND","features":[50]},{"name":"MF_BYPOSITION","features":[50]},{"name":"MF_CHANGE","features":[50]},{"name":"MF_CHECKED","features":[50]},{"name":"MF_DEFAULT","features":[50]},{"name":"MF_DELETE","features":[50]},{"name":"MF_DISABLED","features":[50]},{"name":"MF_ENABLED","features":[50]},{"name":"MF_END","features":[50]},{"name":"MF_GRAYED","features":[50]},{"name":"MF_HELP","features":[50]},{"name":"MF_HILITE","features":[50]},{"name":"MF_INSERT","features":[50]},{"name":"MF_MENUBARBREAK","features":[50]},{"name":"MF_MENUBREAK","features":[50]},{"name":"MF_MOUSESELECT","features":[50]},{"name":"MF_OWNERDRAW","features":[50]},{"name":"MF_POPUP","features":[50]},{"name":"MF_REMOVE","features":[50]},{"name":"MF_RIGHTJUSTIFY","features":[50]},{"name":"MF_SEPARATOR","features":[50]},{"name":"MF_STRING","features":[50]},{"name":"MF_SYSMENU","features":[50]},{"name":"MF_UNCHECKED","features":[50]},{"name":"MF_UNHILITE","features":[50]},{"name":"MF_USECHECKBITMAPS","features":[50]},{"name":"MIIM_BITMAP","features":[50]},{"name":"MIIM_CHECKMARKS","features":[50]},{"name":"MIIM_DATA","features":[50]},{"name":"MIIM_FTYPE","features":[50]},{"name":"MIIM_ID","features":[50]},{"name":"MIIM_STATE","features":[50]},{"name":"MIIM_STRING","features":[50]},{"name":"MIIM_SUBMENU","features":[50]},{"name":"MIIM_TYPE","features":[50]},{"name":"MIM_APPLYTOSUBMENUS","features":[50]},{"name":"MIM_BACKGROUND","features":[50]},{"name":"MIM_HELPID","features":[50]},{"name":"MIM_MAXHEIGHT","features":[50]},{"name":"MIM_MENUDATA","features":[50]},{"name":"MIM_STYLE","features":[50]},{"name":"MINIMIZEDMETRICS","features":[50]},{"name":"MINIMIZEDMETRICS_ARRANGE","features":[50]},{"name":"MINIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[50]},{"name":"MINMAXINFO","features":[1,50]},{"name":"MIN_LOGICALDPIOVERRIDE","features":[50]},{"name":"MKF_AVAILABLE","features":[50]},{"name":"MKF_CONFIRMHOTKEY","features":[50]},{"name":"MKF_HOTKEYACTIVE","features":[50]},{"name":"MKF_HOTKEYSOUND","features":[50]},{"name":"MKF_INDICATOR","features":[50]},{"name":"MKF_LEFTBUTTONDOWN","features":[50]},{"name":"MKF_LEFTBUTTONSEL","features":[50]},{"name":"MKF_MODIFIERS","features":[50]},{"name":"MKF_MOUSEKEYSON","features":[50]},{"name":"MKF_MOUSEMODE","features":[50]},{"name":"MKF_REPLACENUMBERS","features":[50]},{"name":"MKF_RIGHTBUTTONDOWN","features":[50]},{"name":"MKF_RIGHTBUTTONSEL","features":[50]},{"name":"MNC_CLOSE","features":[50]},{"name":"MNC_EXECUTE","features":[50]},{"name":"MNC_IGNORE","features":[50]},{"name":"MNC_SELECT","features":[50]},{"name":"MND_CONTINUE","features":[50]},{"name":"MND_ENDMENU","features":[50]},{"name":"MNGOF_BOTTOMGAP","features":[50]},{"name":"MNGOF_TOPGAP","features":[50]},{"name":"MNGO_NOERROR","features":[50]},{"name":"MNGO_NOINTERFACE","features":[50]},{"name":"MNS_AUTODISMISS","features":[50]},{"name":"MNS_CHECKORBMP","features":[50]},{"name":"MNS_DRAGDROP","features":[50]},{"name":"MNS_MODELESS","features":[50]},{"name":"MNS_NOCHECK","features":[50]},{"name":"MNS_NOTIFYBYPOS","features":[50]},{"name":"MN_GETHMENU","features":[50]},{"name":"MONITORINFOF_PRIMARY","features":[50]},{"name":"MOUSEHOOKSTRUCT","features":[1,50]},{"name":"MOUSEHOOKSTRUCTEX","features":[1,50]},{"name":"MOUSEWHEEL_ROUTING_FOCUS","features":[50]},{"name":"MOUSEWHEEL_ROUTING_HYBRID","features":[50]},{"name":"MOUSEWHEEL_ROUTING_MOUSE_POS","features":[50]},{"name":"MSG","features":[1,50]},{"name":"MSGBOXCALLBACK","features":[1,109,50]},{"name":"MSGBOXPARAMSA","features":[1,109,50]},{"name":"MSGBOXPARAMSW","features":[1,109,50]},{"name":"MSGFLTINFO_ALLOWED_HIGHER","features":[50]},{"name":"MSGFLTINFO_ALREADYALLOWED_FORWND","features":[50]},{"name":"MSGFLTINFO_ALREADYDISALLOWED_FORWND","features":[50]},{"name":"MSGFLTINFO_NONE","features":[50]},{"name":"MSGFLTINFO_STATUS","features":[50]},{"name":"MSGFLT_ADD","features":[50]},{"name":"MSGFLT_ALLOW","features":[50]},{"name":"MSGFLT_DISALLOW","features":[50]},{"name":"MSGFLT_REMOVE","features":[50]},{"name":"MSGFLT_RESET","features":[50]},{"name":"MSGF_DIALOGBOX","features":[50]},{"name":"MSGF_MAX","features":[50]},{"name":"MSGF_MENU","features":[50]},{"name":"MSGF_MESSAGEBOX","features":[50]},{"name":"MSGF_NEXTWINDOW","features":[50]},{"name":"MSGF_SCROLLBAR","features":[50]},{"name":"MSGF_USER","features":[50]},{"name":"MSG_WAIT_FOR_MULTIPLE_OBJECTS_EX_FLAGS","features":[50]},{"name":"MSLLHOOKSTRUCT","features":[1,50]},{"name":"MWMO_ALERTABLE","features":[50]},{"name":"MWMO_INPUTAVAILABLE","features":[50]},{"name":"MWMO_NONE","features":[50]},{"name":"MWMO_WAITALL","features":[50]},{"name":"MapDialogRect","features":[1,50]},{"name":"MenuItemFromPoint","features":[1,50]},{"name":"MessageBoxA","features":[1,50]},{"name":"MessageBoxExA","features":[1,50]},{"name":"MessageBoxExW","features":[1,50]},{"name":"MessageBoxIndirectA","features":[1,109,50]},{"name":"MessageBoxIndirectW","features":[1,109,50]},{"name":"MessageBoxW","features":[1,50]},{"name":"ModifyMenuA","features":[1,50]},{"name":"ModifyMenuW","features":[1,50]},{"name":"MoveWindow","features":[1,50]},{"name":"MrmCreateConfig","features":[50]},{"name":"MrmCreateConfigInMemory","features":[50]},{"name":"MrmCreateResourceFile","features":[50]},{"name":"MrmCreateResourceFileInMemory","features":[50]},{"name":"MrmCreateResourceFileWithChecksum","features":[50]},{"name":"MrmCreateResourceIndexer","features":[50]},{"name":"MrmCreateResourceIndexerFromPreviousPriData","features":[50]},{"name":"MrmCreateResourceIndexerFromPreviousPriFile","features":[50]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaData","features":[50]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaFile","features":[50]},{"name":"MrmCreateResourceIndexerWithFlags","features":[50]},{"name":"MrmDestroyIndexerAndMessages","features":[50]},{"name":"MrmDumpPriDataInMemory","features":[50]},{"name":"MrmDumpPriFile","features":[50]},{"name":"MrmDumpPriFileInMemory","features":[50]},{"name":"MrmDumpType","features":[50]},{"name":"MrmDumpType_Basic","features":[50]},{"name":"MrmDumpType_Detailed","features":[50]},{"name":"MrmDumpType_Schema","features":[50]},{"name":"MrmFreeMemory","features":[50]},{"name":"MrmGetPriFileContentChecksum","features":[50]},{"name":"MrmIndexEmbeddedData","features":[50]},{"name":"MrmIndexFile","features":[50]},{"name":"MrmIndexFileAutoQualifiers","features":[50]},{"name":"MrmIndexResourceContainerAutoQualifiers","features":[50]},{"name":"MrmIndexString","features":[50]},{"name":"MrmIndexerFlags","features":[50]},{"name":"MrmIndexerFlagsAutoMerge","features":[50]},{"name":"MrmIndexerFlagsCreateContentChecksum","features":[50]},{"name":"MrmIndexerFlagsNone","features":[50]},{"name":"MrmPackagingMode","features":[50]},{"name":"MrmPackagingModeAutoSplit","features":[50]},{"name":"MrmPackagingModeResourcePack","features":[50]},{"name":"MrmPackagingModeStandaloneFile","features":[50]},{"name":"MrmPackagingOptions","features":[50]},{"name":"MrmPackagingOptionsNone","features":[50]},{"name":"MrmPackagingOptionsOmitSchemaFromResourcePacks","features":[50]},{"name":"MrmPackagingOptionsSplitLanguageVariants","features":[50]},{"name":"MrmPeekResourceIndexerMessages","features":[50]},{"name":"MrmPlatformVersion","features":[50]},{"name":"MrmPlatformVersion_Default","features":[50]},{"name":"MrmPlatformVersion_Windows10_0_0_0","features":[50]},{"name":"MrmPlatformVersion_Windows10_0_0_5","features":[50]},{"name":"MrmResourceIndexerHandle","features":[50]},{"name":"MrmResourceIndexerMessage","features":[50]},{"name":"MrmResourceIndexerMessageSeverity","features":[50]},{"name":"MrmResourceIndexerMessageSeverityError","features":[50]},{"name":"MrmResourceIndexerMessageSeverityInfo","features":[50]},{"name":"MrmResourceIndexerMessageSeverityVerbose","features":[50]},{"name":"MrmResourceIndexerMessageSeverityWarning","features":[50]},{"name":"MsgWaitForMultipleObjects","features":[1,50]},{"name":"MsgWaitForMultipleObjectsEx","features":[1,50]},{"name":"NAMEENUMPROCA","features":[1,50]},{"name":"NAMEENUMPROCW","features":[1,50]},{"name":"NCCALCSIZE_PARAMS","features":[1,50]},{"name":"NFR_ANSI","features":[50]},{"name":"NFR_UNICODE","features":[50]},{"name":"NF_QUERY","features":[50]},{"name":"NF_REQUERY","features":[50]},{"name":"NID_EXTERNAL_PEN","features":[50]},{"name":"NID_EXTERNAL_TOUCH","features":[50]},{"name":"NID_INTEGRATED_PEN","features":[50]},{"name":"NID_INTEGRATED_TOUCH","features":[50]},{"name":"NID_MULTI_INPUT","features":[50]},{"name":"NID_READY","features":[50]},{"name":"NONCLIENTMETRICSA","features":[12,50]},{"name":"NONCLIENTMETRICSW","features":[12,50]},{"name":"OBJECT_IDENTIFIER","features":[50]},{"name":"OBJID_ALERT","features":[50]},{"name":"OBJID_CARET","features":[50]},{"name":"OBJID_CLIENT","features":[50]},{"name":"OBJID_CURSOR","features":[50]},{"name":"OBJID_HSCROLL","features":[50]},{"name":"OBJID_MENU","features":[50]},{"name":"OBJID_NATIVEOM","features":[50]},{"name":"OBJID_QUERYCLASSNAMEIDX","features":[50]},{"name":"OBJID_SIZEGRIP","features":[50]},{"name":"OBJID_SOUND","features":[50]},{"name":"OBJID_SYSMENU","features":[50]},{"name":"OBJID_TITLEBAR","features":[50]},{"name":"OBJID_VSCROLL","features":[50]},{"name":"OBJID_WINDOW","features":[50]},{"name":"OBM_BTNCORNERS","features":[50]},{"name":"OBM_BTSIZE","features":[50]},{"name":"OBM_CHECK","features":[50]},{"name":"OBM_CHECKBOXES","features":[50]},{"name":"OBM_CLOSE","features":[50]},{"name":"OBM_COMBO","features":[50]},{"name":"OBM_DNARROW","features":[50]},{"name":"OBM_DNARROWD","features":[50]},{"name":"OBM_DNARROWI","features":[50]},{"name":"OBM_LFARROW","features":[50]},{"name":"OBM_LFARROWD","features":[50]},{"name":"OBM_LFARROWI","features":[50]},{"name":"OBM_MNARROW","features":[50]},{"name":"OBM_OLD_CLOSE","features":[50]},{"name":"OBM_OLD_DNARROW","features":[50]},{"name":"OBM_OLD_LFARROW","features":[50]},{"name":"OBM_OLD_REDUCE","features":[50]},{"name":"OBM_OLD_RESTORE","features":[50]},{"name":"OBM_OLD_RGARROW","features":[50]},{"name":"OBM_OLD_UPARROW","features":[50]},{"name":"OBM_OLD_ZOOM","features":[50]},{"name":"OBM_REDUCE","features":[50]},{"name":"OBM_REDUCED","features":[50]},{"name":"OBM_RESTORE","features":[50]},{"name":"OBM_RESTORED","features":[50]},{"name":"OBM_RGARROW","features":[50]},{"name":"OBM_RGARROWD","features":[50]},{"name":"OBM_RGARROWI","features":[50]},{"name":"OBM_SIZE","features":[50]},{"name":"OBM_UPARROW","features":[50]},{"name":"OBM_UPARROWD","features":[50]},{"name":"OBM_UPARROWI","features":[50]},{"name":"OBM_ZOOM","features":[50]},{"name":"OBM_ZOOMD","features":[50]},{"name":"OCR_APPSTARTING","features":[50]},{"name":"OCR_CROSS","features":[50]},{"name":"OCR_HAND","features":[50]},{"name":"OCR_HELP","features":[50]},{"name":"OCR_IBEAM","features":[50]},{"name":"OCR_ICOCUR","features":[50]},{"name":"OCR_ICON","features":[50]},{"name":"OCR_NO","features":[50]},{"name":"OCR_NORMAL","features":[50]},{"name":"OCR_SIZE","features":[50]},{"name":"OCR_SIZEALL","features":[50]},{"name":"OCR_SIZENESW","features":[50]},{"name":"OCR_SIZENS","features":[50]},{"name":"OCR_SIZENWSE","features":[50]},{"name":"OCR_SIZEWE","features":[50]},{"name":"OCR_UP","features":[50]},{"name":"OCR_WAIT","features":[50]},{"name":"OIC_BANG","features":[50]},{"name":"OIC_ERROR","features":[50]},{"name":"OIC_HAND","features":[50]},{"name":"OIC_INFORMATION","features":[50]},{"name":"OIC_NOTE","features":[50]},{"name":"OIC_QUES","features":[50]},{"name":"OIC_SAMPLE","features":[50]},{"name":"OIC_SHIELD","features":[50]},{"name":"OIC_WARNING","features":[50]},{"name":"OIC_WINLOGO","features":[50]},{"name":"ORD_LANGDRIVER","features":[50]},{"name":"OemToCharA","features":[1,50]},{"name":"OemToCharBuffA","features":[1,50]},{"name":"OemToCharBuffW","features":[1,50]},{"name":"OemToCharW","features":[1,50]},{"name":"OpenIcon","features":[1,50]},{"name":"PA_ACTIVATE","features":[50]},{"name":"PA_NOACTIVATE","features":[50]},{"name":"PBTF_APMRESUMEFROMFAILURE","features":[50]},{"name":"PBT_APMBATTERYLOW","features":[50]},{"name":"PBT_APMOEMEVENT","features":[50]},{"name":"PBT_APMPOWERSTATUSCHANGE","features":[50]},{"name":"PBT_APMQUERYSTANDBY","features":[50]},{"name":"PBT_APMQUERYSTANDBYFAILED","features":[50]},{"name":"PBT_APMQUERYSUSPEND","features":[50]},{"name":"PBT_APMQUERYSUSPENDFAILED","features":[50]},{"name":"PBT_APMRESUMEAUTOMATIC","features":[50]},{"name":"PBT_APMRESUMECRITICAL","features":[50]},{"name":"PBT_APMRESUMESTANDBY","features":[50]},{"name":"PBT_APMRESUMESUSPEND","features":[50]},{"name":"PBT_APMSTANDBY","features":[50]},{"name":"PBT_APMSUSPEND","features":[50]},{"name":"PBT_POWERSETTINGCHANGE","features":[50]},{"name":"PDC_ARRIVAL","features":[50]},{"name":"PDC_MAPPING_CHANGE","features":[50]},{"name":"PDC_MODE_ASPECTRATIOPRESERVED","features":[50]},{"name":"PDC_MODE_CENTERED","features":[50]},{"name":"PDC_MODE_DEFAULT","features":[50]},{"name":"PDC_ORIENTATION_0","features":[50]},{"name":"PDC_ORIENTATION_180","features":[50]},{"name":"PDC_ORIENTATION_270","features":[50]},{"name":"PDC_ORIENTATION_90","features":[50]},{"name":"PDC_ORIGIN","features":[50]},{"name":"PDC_REMOVAL","features":[50]},{"name":"PDC_RESOLUTION","features":[50]},{"name":"PEEK_MESSAGE_REMOVE_TYPE","features":[50]},{"name":"PENARBITRATIONTYPE_FIS","features":[50]},{"name":"PENARBITRATIONTYPE_MAX","features":[50]},{"name":"PENARBITRATIONTYPE_NONE","features":[50]},{"name":"PENARBITRATIONTYPE_SPT","features":[50]},{"name":"PENARBITRATIONTYPE_WIN8","features":[50]},{"name":"PENVISUALIZATION_CURSOR","features":[50]},{"name":"PENVISUALIZATION_DOUBLETAP","features":[50]},{"name":"PENVISUALIZATION_OFF","features":[50]},{"name":"PENVISUALIZATION_ON","features":[50]},{"name":"PENVISUALIZATION_TAP","features":[50]},{"name":"PEN_FLAG_BARREL","features":[50]},{"name":"PEN_FLAG_ERASER","features":[50]},{"name":"PEN_FLAG_INVERTED","features":[50]},{"name":"PEN_FLAG_NONE","features":[50]},{"name":"PEN_MASK_NONE","features":[50]},{"name":"PEN_MASK_PRESSURE","features":[50]},{"name":"PEN_MASK_ROTATION","features":[50]},{"name":"PEN_MASK_TILT_X","features":[50]},{"name":"PEN_MASK_TILT_Y","features":[50]},{"name":"PMB_ACTIVE","features":[50]},{"name":"PM_NOREMOVE","features":[50]},{"name":"PM_NOYIELD","features":[50]},{"name":"PM_QS_INPUT","features":[50]},{"name":"PM_QS_PAINT","features":[50]},{"name":"PM_QS_POSTMESSAGE","features":[50]},{"name":"PM_QS_SENDMESSAGE","features":[50]},{"name":"PM_REMOVE","features":[50]},{"name":"POINTER_DEVICE_PRODUCT_STRING_MAX","features":[50]},{"name":"POINTER_INPUT_TYPE","features":[50]},{"name":"POINTER_MESSAGE_FLAG_CANCELED","features":[50]},{"name":"POINTER_MESSAGE_FLAG_CONFIDENCE","features":[50]},{"name":"POINTER_MESSAGE_FLAG_FIFTHBUTTON","features":[50]},{"name":"POINTER_MESSAGE_FLAG_FIRSTBUTTON","features":[50]},{"name":"POINTER_MESSAGE_FLAG_FOURTHBUTTON","features":[50]},{"name":"POINTER_MESSAGE_FLAG_INCONTACT","features":[50]},{"name":"POINTER_MESSAGE_FLAG_INRANGE","features":[50]},{"name":"POINTER_MESSAGE_FLAG_NEW","features":[50]},{"name":"POINTER_MESSAGE_FLAG_PRIMARY","features":[50]},{"name":"POINTER_MESSAGE_FLAG_SECONDBUTTON","features":[50]},{"name":"POINTER_MESSAGE_FLAG_THIRDBUTTON","features":[50]},{"name":"POINTER_MOD_CTRL","features":[50]},{"name":"POINTER_MOD_SHIFT","features":[50]},{"name":"PREGISTERCLASSNAMEW","features":[1,50]},{"name":"PRF_CHECKVISIBLE","features":[50]},{"name":"PRF_CHILDREN","features":[50]},{"name":"PRF_CLIENT","features":[50]},{"name":"PRF_ERASEBKGND","features":[50]},{"name":"PRF_NONCLIENT","features":[50]},{"name":"PRF_OWNED","features":[50]},{"name":"PROPENUMPROCA","features":[1,50]},{"name":"PROPENUMPROCEXA","features":[1,50]},{"name":"PROPENUMPROCEXW","features":[1,50]},{"name":"PROPENUMPROCW","features":[1,50]},{"name":"PT_MOUSE","features":[50]},{"name":"PT_PEN","features":[50]},{"name":"PT_POINTER","features":[50]},{"name":"PT_TOUCH","features":[50]},{"name":"PT_TOUCHPAD","features":[50]},{"name":"PWR_CRITICALRESUME","features":[50]},{"name":"PWR_FAIL","features":[50]},{"name":"PWR_OK","features":[50]},{"name":"PWR_SUSPENDREQUEST","features":[50]},{"name":"PWR_SUSPENDRESUME","features":[50]},{"name":"PW_RENDERFULLCONTENT","features":[50]},{"name":"PeekMessageA","features":[1,50]},{"name":"PeekMessageW","features":[1,50]},{"name":"PhysicalToLogicalPoint","features":[1,50]},{"name":"PostMessageA","features":[1,50]},{"name":"PostMessageW","features":[1,50]},{"name":"PostQuitMessage","features":[50]},{"name":"PostThreadMessageA","features":[1,50]},{"name":"PostThreadMessageW","features":[1,50]},{"name":"PrivateExtractIconsA","features":[50]},{"name":"PrivateExtractIconsW","features":[50]},{"name":"QS_ALLEVENTS","features":[50]},{"name":"QS_ALLINPUT","features":[50]},{"name":"QS_ALLPOSTMESSAGE","features":[50]},{"name":"QS_HOTKEY","features":[50]},{"name":"QS_INPUT","features":[50]},{"name":"QS_KEY","features":[50]},{"name":"QS_MOUSE","features":[50]},{"name":"QS_MOUSEBUTTON","features":[50]},{"name":"QS_MOUSEMOVE","features":[50]},{"name":"QS_PAINT","features":[50]},{"name":"QS_POINTER","features":[50]},{"name":"QS_POSTMESSAGE","features":[50]},{"name":"QS_RAWINPUT","features":[50]},{"name":"QS_SENDMESSAGE","features":[50]},{"name":"QS_TIMER","features":[50]},{"name":"QS_TOUCH","features":[50]},{"name":"QUEUE_STATUS_FLAGS","features":[50]},{"name":"REGISTER_NOTIFICATION_FLAGS","features":[50]},{"name":"RES_CURSOR","features":[50]},{"name":"RES_ICON","features":[50]},{"name":"RIDEV_EXMODEMASK","features":[50]},{"name":"RIM_INPUT","features":[50]},{"name":"RIM_INPUTSINK","features":[50]},{"name":"RIM_TYPEMAX","features":[50]},{"name":"RI_KEY_BREAK","features":[50]},{"name":"RI_KEY_E0","features":[50]},{"name":"RI_KEY_E1","features":[50]},{"name":"RI_KEY_MAKE","features":[50]},{"name":"RI_KEY_TERMSRV_SET_LED","features":[50]},{"name":"RI_KEY_TERMSRV_SHADOW","features":[50]},{"name":"RI_MOUSE_BUTTON_1_DOWN","features":[50]},{"name":"RI_MOUSE_BUTTON_1_UP","features":[50]},{"name":"RI_MOUSE_BUTTON_2_DOWN","features":[50]},{"name":"RI_MOUSE_BUTTON_2_UP","features":[50]},{"name":"RI_MOUSE_BUTTON_3_DOWN","features":[50]},{"name":"RI_MOUSE_BUTTON_3_UP","features":[50]},{"name":"RI_MOUSE_BUTTON_4_DOWN","features":[50]},{"name":"RI_MOUSE_BUTTON_4_UP","features":[50]},{"name":"RI_MOUSE_BUTTON_5_DOWN","features":[50]},{"name":"RI_MOUSE_BUTTON_5_UP","features":[50]},{"name":"RI_MOUSE_HWHEEL","features":[50]},{"name":"RI_MOUSE_LEFT_BUTTON_DOWN","features":[50]},{"name":"RI_MOUSE_LEFT_BUTTON_UP","features":[50]},{"name":"RI_MOUSE_MIDDLE_BUTTON_DOWN","features":[50]},{"name":"RI_MOUSE_MIDDLE_BUTTON_UP","features":[50]},{"name":"RI_MOUSE_RIGHT_BUTTON_DOWN","features":[50]},{"name":"RI_MOUSE_RIGHT_BUTTON_UP","features":[50]},{"name":"RI_MOUSE_WHEEL","features":[50]},{"name":"RT_ACCELERATOR","features":[50]},{"name":"RT_ANICURSOR","features":[50]},{"name":"RT_ANIICON","features":[50]},{"name":"RT_BITMAP","features":[50]},{"name":"RT_CURSOR","features":[50]},{"name":"RT_DIALOG","features":[50]},{"name":"RT_DLGINCLUDE","features":[50]},{"name":"RT_FONT","features":[50]},{"name":"RT_FONTDIR","features":[50]},{"name":"RT_HTML","features":[50]},{"name":"RT_ICON","features":[50]},{"name":"RT_MANIFEST","features":[50]},{"name":"RT_MENU","features":[50]},{"name":"RT_MESSAGETABLE","features":[50]},{"name":"RT_PLUGPLAY","features":[50]},{"name":"RT_VERSION","features":[50]},{"name":"RT_VXD","features":[50]},{"name":"RealChildWindowFromPoint","features":[1,50]},{"name":"RealGetWindowClassA","features":[1,50]},{"name":"RealGetWindowClassW","features":[1,50]},{"name":"RegisterClassA","features":[1,12,50]},{"name":"RegisterClassExA","features":[1,12,50]},{"name":"RegisterClassExW","features":[1,12,50]},{"name":"RegisterClassW","features":[1,12,50]},{"name":"RegisterDeviceNotificationA","features":[1,50]},{"name":"RegisterDeviceNotificationW","features":[1,50]},{"name":"RegisterForTooltipDismissNotification","features":[1,50]},{"name":"RegisterShellHookWindow","features":[1,50]},{"name":"RegisterWindowMessageA","features":[50]},{"name":"RegisterWindowMessageW","features":[50]},{"name":"RemoveMenu","features":[1,50]},{"name":"RemovePropA","features":[1,50]},{"name":"RemovePropW","features":[1,50]},{"name":"ReplyMessage","features":[1,50]},{"name":"SBM_ENABLE_ARROWS","features":[50]},{"name":"SBM_GETPOS","features":[50]},{"name":"SBM_GETRANGE","features":[50]},{"name":"SBM_GETSCROLLBARINFO","features":[50]},{"name":"SBM_GETSCROLLINFO","features":[50]},{"name":"SBM_SETPOS","features":[50]},{"name":"SBM_SETRANGE","features":[50]},{"name":"SBM_SETRANGEREDRAW","features":[50]},{"name":"SBM_SETSCROLLINFO","features":[50]},{"name":"SBS_BOTTOMALIGN","features":[50]},{"name":"SBS_HORZ","features":[50]},{"name":"SBS_LEFTALIGN","features":[50]},{"name":"SBS_RIGHTALIGN","features":[50]},{"name":"SBS_SIZEBOX","features":[50]},{"name":"SBS_SIZEBOXBOTTOMRIGHTALIGN","features":[50]},{"name":"SBS_SIZEBOXTOPLEFTALIGN","features":[50]},{"name":"SBS_SIZEGRIP","features":[50]},{"name":"SBS_TOPALIGN","features":[50]},{"name":"SBS_VERT","features":[50]},{"name":"SB_BOTH","features":[50]},{"name":"SB_BOTTOM","features":[50]},{"name":"SB_CTL","features":[50]},{"name":"SB_ENDSCROLL","features":[50]},{"name":"SB_HORZ","features":[50]},{"name":"SB_LEFT","features":[50]},{"name":"SB_LINEDOWN","features":[50]},{"name":"SB_LINELEFT","features":[50]},{"name":"SB_LINERIGHT","features":[50]},{"name":"SB_LINEUP","features":[50]},{"name":"SB_PAGEDOWN","features":[50]},{"name":"SB_PAGELEFT","features":[50]},{"name":"SB_PAGERIGHT","features":[50]},{"name":"SB_PAGEUP","features":[50]},{"name":"SB_RIGHT","features":[50]},{"name":"SB_THUMBPOSITION","features":[50]},{"name":"SB_THUMBTRACK","features":[50]},{"name":"SB_TOP","features":[50]},{"name":"SB_VERT","features":[50]},{"name":"SCF_ISSECURE","features":[50]},{"name":"SCROLLBARINFO","features":[1,50]},{"name":"SCROLLBAR_COMMAND","features":[50]},{"name":"SCROLLBAR_CONSTANTS","features":[50]},{"name":"SCROLLINFO","features":[50]},{"name":"SCROLLINFO_MASK","features":[50]},{"name":"SCROLL_WINDOW_FLAGS","features":[50]},{"name":"SC_ARRANGE","features":[50]},{"name":"SC_CLOSE","features":[50]},{"name":"SC_CONTEXTHELP","features":[50]},{"name":"SC_DEFAULT","features":[50]},{"name":"SC_HOTKEY","features":[50]},{"name":"SC_HSCROLL","features":[50]},{"name":"SC_ICON","features":[50]},{"name":"SC_KEYMENU","features":[50]},{"name":"SC_MAXIMIZE","features":[50]},{"name":"SC_MINIMIZE","features":[50]},{"name":"SC_MONITORPOWER","features":[50]},{"name":"SC_MOUSEMENU","features":[50]},{"name":"SC_MOVE","features":[50]},{"name":"SC_NEXTWINDOW","features":[50]},{"name":"SC_PREVWINDOW","features":[50]},{"name":"SC_RESTORE","features":[50]},{"name":"SC_SEPARATOR","features":[50]},{"name":"SC_SIZE","features":[50]},{"name":"SC_TASKLIST","features":[50]},{"name":"SC_VSCROLL","features":[50]},{"name":"SC_ZOOM","features":[50]},{"name":"SENDASYNCPROC","features":[1,50]},{"name":"SEND_MESSAGE_TIMEOUT_FLAGS","features":[50]},{"name":"SET_WINDOW_POS_FLAGS","features":[50]},{"name":"SHELLHOOKINFO","features":[1,50]},{"name":"SHOW_FULLSCREEN","features":[50]},{"name":"SHOW_ICONWINDOW","features":[50]},{"name":"SHOW_OPENNOACTIVATE","features":[50]},{"name":"SHOW_OPENWINDOW","features":[50]},{"name":"SHOW_WINDOW_CMD","features":[50]},{"name":"SHOW_WINDOW_STATUS","features":[50]},{"name":"SIF_ALL","features":[50]},{"name":"SIF_DISABLENOSCROLL","features":[50]},{"name":"SIF_PAGE","features":[50]},{"name":"SIF_POS","features":[50]},{"name":"SIF_RANGE","features":[50]},{"name":"SIF_TRACKPOS","features":[50]},{"name":"SIZEFULLSCREEN","features":[50]},{"name":"SIZEICONIC","features":[50]},{"name":"SIZENORMAL","features":[50]},{"name":"SIZEZOOMHIDE","features":[50]},{"name":"SIZEZOOMSHOW","features":[50]},{"name":"SIZE_MAXHIDE","features":[50]},{"name":"SIZE_MAXIMIZED","features":[50]},{"name":"SIZE_MAXSHOW","features":[50]},{"name":"SIZE_MINIMIZED","features":[50]},{"name":"SIZE_RESTORED","features":[50]},{"name":"SMTO_ABORTIFHUNG","features":[50]},{"name":"SMTO_BLOCK","features":[50]},{"name":"SMTO_ERRORONEXIT","features":[50]},{"name":"SMTO_NORMAL","features":[50]},{"name":"SMTO_NOTIMEOUTIFNOTHUNG","features":[50]},{"name":"SM_ARRANGE","features":[50]},{"name":"SM_CARETBLINKINGENABLED","features":[50]},{"name":"SM_CLEANBOOT","features":[50]},{"name":"SM_CMETRICS","features":[50]},{"name":"SM_CMONITORS","features":[50]},{"name":"SM_CMOUSEBUTTONS","features":[50]},{"name":"SM_CONVERTIBLESLATEMODE","features":[50]},{"name":"SM_CXBORDER","features":[50]},{"name":"SM_CXCURSOR","features":[50]},{"name":"SM_CXDLGFRAME","features":[50]},{"name":"SM_CXDOUBLECLK","features":[50]},{"name":"SM_CXDRAG","features":[50]},{"name":"SM_CXEDGE","features":[50]},{"name":"SM_CXFIXEDFRAME","features":[50]},{"name":"SM_CXFOCUSBORDER","features":[50]},{"name":"SM_CXFRAME","features":[50]},{"name":"SM_CXFULLSCREEN","features":[50]},{"name":"SM_CXHSCROLL","features":[50]},{"name":"SM_CXHTHUMB","features":[50]},{"name":"SM_CXICON","features":[50]},{"name":"SM_CXICONSPACING","features":[50]},{"name":"SM_CXMAXIMIZED","features":[50]},{"name":"SM_CXMAXTRACK","features":[50]},{"name":"SM_CXMENUCHECK","features":[50]},{"name":"SM_CXMENUSIZE","features":[50]},{"name":"SM_CXMIN","features":[50]},{"name":"SM_CXMINIMIZED","features":[50]},{"name":"SM_CXMINSPACING","features":[50]},{"name":"SM_CXMINTRACK","features":[50]},{"name":"SM_CXPADDEDBORDER","features":[50]},{"name":"SM_CXSCREEN","features":[50]},{"name":"SM_CXSIZE","features":[50]},{"name":"SM_CXSIZEFRAME","features":[50]},{"name":"SM_CXSMICON","features":[50]},{"name":"SM_CXSMSIZE","features":[50]},{"name":"SM_CXVIRTUALSCREEN","features":[50]},{"name":"SM_CXVSCROLL","features":[50]},{"name":"SM_CYBORDER","features":[50]},{"name":"SM_CYCAPTION","features":[50]},{"name":"SM_CYCURSOR","features":[50]},{"name":"SM_CYDLGFRAME","features":[50]},{"name":"SM_CYDOUBLECLK","features":[50]},{"name":"SM_CYDRAG","features":[50]},{"name":"SM_CYEDGE","features":[50]},{"name":"SM_CYFIXEDFRAME","features":[50]},{"name":"SM_CYFOCUSBORDER","features":[50]},{"name":"SM_CYFRAME","features":[50]},{"name":"SM_CYFULLSCREEN","features":[50]},{"name":"SM_CYHSCROLL","features":[50]},{"name":"SM_CYICON","features":[50]},{"name":"SM_CYICONSPACING","features":[50]},{"name":"SM_CYKANJIWINDOW","features":[50]},{"name":"SM_CYMAXIMIZED","features":[50]},{"name":"SM_CYMAXTRACK","features":[50]},{"name":"SM_CYMENU","features":[50]},{"name":"SM_CYMENUCHECK","features":[50]},{"name":"SM_CYMENUSIZE","features":[50]},{"name":"SM_CYMIN","features":[50]},{"name":"SM_CYMINIMIZED","features":[50]},{"name":"SM_CYMINSPACING","features":[50]},{"name":"SM_CYMINTRACK","features":[50]},{"name":"SM_CYSCREEN","features":[50]},{"name":"SM_CYSIZE","features":[50]},{"name":"SM_CYSIZEFRAME","features":[50]},{"name":"SM_CYSMCAPTION","features":[50]},{"name":"SM_CYSMICON","features":[50]},{"name":"SM_CYSMSIZE","features":[50]},{"name":"SM_CYVIRTUALSCREEN","features":[50]},{"name":"SM_CYVSCROLL","features":[50]},{"name":"SM_CYVTHUMB","features":[50]},{"name":"SM_DBCSENABLED","features":[50]},{"name":"SM_DEBUG","features":[50]},{"name":"SM_DIGITIZER","features":[50]},{"name":"SM_IMMENABLED","features":[50]},{"name":"SM_MAXIMUMTOUCHES","features":[50]},{"name":"SM_MEDIACENTER","features":[50]},{"name":"SM_MENUDROPALIGNMENT","features":[50]},{"name":"SM_MIDEASTENABLED","features":[50]},{"name":"SM_MOUSEHORIZONTALWHEELPRESENT","features":[50]},{"name":"SM_MOUSEPRESENT","features":[50]},{"name":"SM_MOUSEWHEELPRESENT","features":[50]},{"name":"SM_NETWORK","features":[50]},{"name":"SM_PENWINDOWS","features":[50]},{"name":"SM_REMOTECONTROL","features":[50]},{"name":"SM_REMOTESESSION","features":[50]},{"name":"SM_RESERVED1","features":[50]},{"name":"SM_RESERVED2","features":[50]},{"name":"SM_RESERVED3","features":[50]},{"name":"SM_RESERVED4","features":[50]},{"name":"SM_SAMEDISPLAYFORMAT","features":[50]},{"name":"SM_SECURE","features":[50]},{"name":"SM_SERVERR2","features":[50]},{"name":"SM_SHOWSOUNDS","features":[50]},{"name":"SM_SHUTTINGDOWN","features":[50]},{"name":"SM_SLOWMACHINE","features":[50]},{"name":"SM_STARTER","features":[50]},{"name":"SM_SWAPBUTTON","features":[50]},{"name":"SM_SYSTEMDOCKED","features":[50]},{"name":"SM_TABLETPC","features":[50]},{"name":"SM_XVIRTUALSCREEN","features":[50]},{"name":"SM_YVIRTUALSCREEN","features":[50]},{"name":"SOUND_SYSTEM_APPEND","features":[50]},{"name":"SOUND_SYSTEM_APPSTART","features":[50]},{"name":"SOUND_SYSTEM_BEEP","features":[50]},{"name":"SOUND_SYSTEM_ERROR","features":[50]},{"name":"SOUND_SYSTEM_FAULT","features":[50]},{"name":"SOUND_SYSTEM_INFORMATION","features":[50]},{"name":"SOUND_SYSTEM_MAXIMIZE","features":[50]},{"name":"SOUND_SYSTEM_MENUCOMMAND","features":[50]},{"name":"SOUND_SYSTEM_MENUPOPUP","features":[50]},{"name":"SOUND_SYSTEM_MINIMIZE","features":[50]},{"name":"SOUND_SYSTEM_QUESTION","features":[50]},{"name":"SOUND_SYSTEM_RESTOREDOWN","features":[50]},{"name":"SOUND_SYSTEM_RESTOREUP","features":[50]},{"name":"SOUND_SYSTEM_SHUTDOWN","features":[50]},{"name":"SOUND_SYSTEM_STARTUP","features":[50]},{"name":"SOUND_SYSTEM_WARNING","features":[50]},{"name":"SPIF_SENDCHANGE","features":[50]},{"name":"SPIF_SENDWININICHANGE","features":[50]},{"name":"SPIF_UPDATEINIFILE","features":[50]},{"name":"SPI_GETACCESSTIMEOUT","features":[50]},{"name":"SPI_GETACTIVEWINDOWTRACKING","features":[50]},{"name":"SPI_GETACTIVEWNDTRKTIMEOUT","features":[50]},{"name":"SPI_GETACTIVEWNDTRKZORDER","features":[50]},{"name":"SPI_GETANIMATION","features":[50]},{"name":"SPI_GETAUDIODESCRIPTION","features":[50]},{"name":"SPI_GETBEEP","features":[50]},{"name":"SPI_GETBLOCKSENDINPUTRESETS","features":[50]},{"name":"SPI_GETBORDER","features":[50]},{"name":"SPI_GETCARETBROWSING","features":[50]},{"name":"SPI_GETCARETTIMEOUT","features":[50]},{"name":"SPI_GETCARETWIDTH","features":[50]},{"name":"SPI_GETCLEARTYPE","features":[50]},{"name":"SPI_GETCLIENTAREAANIMATION","features":[50]},{"name":"SPI_GETCOMBOBOXANIMATION","features":[50]},{"name":"SPI_GETCONTACTVISUALIZATION","features":[50]},{"name":"SPI_GETCURSORSHADOW","features":[50]},{"name":"SPI_GETDEFAULTINPUTLANG","features":[50]},{"name":"SPI_GETDESKWALLPAPER","features":[50]},{"name":"SPI_GETDISABLEOVERLAPPEDCONTENT","features":[50]},{"name":"SPI_GETDOCKMOVING","features":[50]},{"name":"SPI_GETDRAGFROMMAXIMIZE","features":[50]},{"name":"SPI_GETDRAGFULLWINDOWS","features":[50]},{"name":"SPI_GETDROPSHADOW","features":[50]},{"name":"SPI_GETFASTTASKSWITCH","features":[50]},{"name":"SPI_GETFILTERKEYS","features":[50]},{"name":"SPI_GETFLATMENU","features":[50]},{"name":"SPI_GETFOCUSBORDERHEIGHT","features":[50]},{"name":"SPI_GETFOCUSBORDERWIDTH","features":[50]},{"name":"SPI_GETFONTSMOOTHING","features":[50]},{"name":"SPI_GETFONTSMOOTHINGCONTRAST","features":[50]},{"name":"SPI_GETFONTSMOOTHINGORIENTATION","features":[50]},{"name":"SPI_GETFONTSMOOTHINGTYPE","features":[50]},{"name":"SPI_GETFOREGROUNDFLASHCOUNT","features":[50]},{"name":"SPI_GETFOREGROUNDLOCKTIMEOUT","features":[50]},{"name":"SPI_GETGESTUREVISUALIZATION","features":[50]},{"name":"SPI_GETGRADIENTCAPTIONS","features":[50]},{"name":"SPI_GETGRIDGRANULARITY","features":[50]},{"name":"SPI_GETHANDEDNESS","features":[50]},{"name":"SPI_GETHIGHCONTRAST","features":[50]},{"name":"SPI_GETHOTTRACKING","features":[50]},{"name":"SPI_GETHUNGAPPTIMEOUT","features":[50]},{"name":"SPI_GETICONMETRICS","features":[50]},{"name":"SPI_GETICONTITLELOGFONT","features":[50]},{"name":"SPI_GETICONTITLEWRAP","features":[50]},{"name":"SPI_GETKEYBOARDCUES","features":[50]},{"name":"SPI_GETKEYBOARDDELAY","features":[50]},{"name":"SPI_GETKEYBOARDPREF","features":[50]},{"name":"SPI_GETKEYBOARDSPEED","features":[50]},{"name":"SPI_GETLISTBOXSMOOTHSCROLLING","features":[50]},{"name":"SPI_GETLOGICALDPIOVERRIDE","features":[50]},{"name":"SPI_GETLOWPOWERACTIVE","features":[50]},{"name":"SPI_GETLOWPOWERTIMEOUT","features":[50]},{"name":"SPI_GETMENUANIMATION","features":[50]},{"name":"SPI_GETMENUDROPALIGNMENT","features":[50]},{"name":"SPI_GETMENUFADE","features":[50]},{"name":"SPI_GETMENURECT","features":[50]},{"name":"SPI_GETMENUSHOWDELAY","features":[50]},{"name":"SPI_GETMENUUNDERLINES","features":[50]},{"name":"SPI_GETMESSAGEDURATION","features":[50]},{"name":"SPI_GETMINIMIZEDMETRICS","features":[50]},{"name":"SPI_GETMINIMUMHITRADIUS","features":[50]},{"name":"SPI_GETMOUSE","features":[50]},{"name":"SPI_GETMOUSECLICKLOCK","features":[50]},{"name":"SPI_GETMOUSECLICKLOCKTIME","features":[50]},{"name":"SPI_GETMOUSEDOCKTHRESHOLD","features":[50]},{"name":"SPI_GETMOUSEDRAGOUTTHRESHOLD","features":[50]},{"name":"SPI_GETMOUSEHOVERHEIGHT","features":[50]},{"name":"SPI_GETMOUSEHOVERTIME","features":[50]},{"name":"SPI_GETMOUSEHOVERWIDTH","features":[50]},{"name":"SPI_GETMOUSEKEYS","features":[50]},{"name":"SPI_GETMOUSESIDEMOVETHRESHOLD","features":[50]},{"name":"SPI_GETMOUSESONAR","features":[50]},{"name":"SPI_GETMOUSESPEED","features":[50]},{"name":"SPI_GETMOUSETRAILS","features":[50]},{"name":"SPI_GETMOUSEVANISH","features":[50]},{"name":"SPI_GETMOUSEWHEELROUTING","features":[50]},{"name":"SPI_GETNONCLIENTMETRICS","features":[50]},{"name":"SPI_GETPENARBITRATIONTYPE","features":[50]},{"name":"SPI_GETPENDOCKTHRESHOLD","features":[50]},{"name":"SPI_GETPENDRAGOUTTHRESHOLD","features":[50]},{"name":"SPI_GETPENSIDEMOVETHRESHOLD","features":[50]},{"name":"SPI_GETPENVISUALIZATION","features":[50]},{"name":"SPI_GETPOWEROFFACTIVE","features":[50]},{"name":"SPI_GETPOWEROFFTIMEOUT","features":[50]},{"name":"SPI_GETSCREENREADER","features":[50]},{"name":"SPI_GETSCREENSAVEACTIVE","features":[50]},{"name":"SPI_GETSCREENSAVERRUNNING","features":[50]},{"name":"SPI_GETSCREENSAVESECURE","features":[50]},{"name":"SPI_GETSCREENSAVETIMEOUT","features":[50]},{"name":"SPI_GETSELECTIONFADE","features":[50]},{"name":"SPI_GETSERIALKEYS","features":[50]},{"name":"SPI_GETSHOWIMEUI","features":[50]},{"name":"SPI_GETSHOWSOUNDS","features":[50]},{"name":"SPI_GETSNAPSIZING","features":[50]},{"name":"SPI_GETSNAPTODEFBUTTON","features":[50]},{"name":"SPI_GETSOUNDSENTRY","features":[50]},{"name":"SPI_GETSPEECHRECOGNITION","features":[50]},{"name":"SPI_GETSTICKYKEYS","features":[50]},{"name":"SPI_GETSYSTEMLANGUAGEBAR","features":[50]},{"name":"SPI_GETTHREADLOCALINPUTSETTINGS","features":[50]},{"name":"SPI_GETTOGGLEKEYS","features":[50]},{"name":"SPI_GETTOOLTIPANIMATION","features":[50]},{"name":"SPI_GETTOOLTIPFADE","features":[50]},{"name":"SPI_GETTOUCHPREDICTIONPARAMETERS","features":[50]},{"name":"SPI_GETUIEFFECTS","features":[50]},{"name":"SPI_GETWAITTOKILLSERVICETIMEOUT","features":[50]},{"name":"SPI_GETWAITTOKILLTIMEOUT","features":[50]},{"name":"SPI_GETWHEELSCROLLCHARS","features":[50]},{"name":"SPI_GETWHEELSCROLLLINES","features":[50]},{"name":"SPI_GETWINARRANGING","features":[50]},{"name":"SPI_GETWINDOWSEXTENSION","features":[50]},{"name":"SPI_GETWORKAREA","features":[50]},{"name":"SPI_ICONHORIZONTALSPACING","features":[50]},{"name":"SPI_ICONVERTICALSPACING","features":[50]},{"name":"SPI_LANGDRIVER","features":[50]},{"name":"SPI_SCREENSAVERRUNNING","features":[50]},{"name":"SPI_SETACCESSTIMEOUT","features":[50]},{"name":"SPI_SETACTIVEWINDOWTRACKING","features":[50]},{"name":"SPI_SETACTIVEWNDTRKTIMEOUT","features":[50]},{"name":"SPI_SETACTIVEWNDTRKZORDER","features":[50]},{"name":"SPI_SETANIMATION","features":[50]},{"name":"SPI_SETAUDIODESCRIPTION","features":[50]},{"name":"SPI_SETBEEP","features":[50]},{"name":"SPI_SETBLOCKSENDINPUTRESETS","features":[50]},{"name":"SPI_SETBORDER","features":[50]},{"name":"SPI_SETCARETBROWSING","features":[50]},{"name":"SPI_SETCARETTIMEOUT","features":[50]},{"name":"SPI_SETCARETWIDTH","features":[50]},{"name":"SPI_SETCLEARTYPE","features":[50]},{"name":"SPI_SETCLIENTAREAANIMATION","features":[50]},{"name":"SPI_SETCOMBOBOXANIMATION","features":[50]},{"name":"SPI_SETCONTACTVISUALIZATION","features":[50]},{"name":"SPI_SETCURSORS","features":[50]},{"name":"SPI_SETCURSORSHADOW","features":[50]},{"name":"SPI_SETDEFAULTINPUTLANG","features":[50]},{"name":"SPI_SETDESKPATTERN","features":[50]},{"name":"SPI_SETDESKWALLPAPER","features":[50]},{"name":"SPI_SETDISABLEOVERLAPPEDCONTENT","features":[50]},{"name":"SPI_SETDOCKMOVING","features":[50]},{"name":"SPI_SETDOUBLECLICKTIME","features":[50]},{"name":"SPI_SETDOUBLECLKHEIGHT","features":[50]},{"name":"SPI_SETDOUBLECLKWIDTH","features":[50]},{"name":"SPI_SETDRAGFROMMAXIMIZE","features":[50]},{"name":"SPI_SETDRAGFULLWINDOWS","features":[50]},{"name":"SPI_SETDRAGHEIGHT","features":[50]},{"name":"SPI_SETDRAGWIDTH","features":[50]},{"name":"SPI_SETDROPSHADOW","features":[50]},{"name":"SPI_SETFASTTASKSWITCH","features":[50]},{"name":"SPI_SETFILTERKEYS","features":[50]},{"name":"SPI_SETFLATMENU","features":[50]},{"name":"SPI_SETFOCUSBORDERHEIGHT","features":[50]},{"name":"SPI_SETFOCUSBORDERWIDTH","features":[50]},{"name":"SPI_SETFONTSMOOTHING","features":[50]},{"name":"SPI_SETFONTSMOOTHINGCONTRAST","features":[50]},{"name":"SPI_SETFONTSMOOTHINGORIENTATION","features":[50]},{"name":"SPI_SETFONTSMOOTHINGTYPE","features":[50]},{"name":"SPI_SETFOREGROUNDFLASHCOUNT","features":[50]},{"name":"SPI_SETFOREGROUNDLOCKTIMEOUT","features":[50]},{"name":"SPI_SETGESTUREVISUALIZATION","features":[50]},{"name":"SPI_SETGRADIENTCAPTIONS","features":[50]},{"name":"SPI_SETGRIDGRANULARITY","features":[50]},{"name":"SPI_SETHANDEDNESS","features":[50]},{"name":"SPI_SETHANDHELD","features":[50]},{"name":"SPI_SETHIGHCONTRAST","features":[50]},{"name":"SPI_SETHOTTRACKING","features":[50]},{"name":"SPI_SETHUNGAPPTIMEOUT","features":[50]},{"name":"SPI_SETICONMETRICS","features":[50]},{"name":"SPI_SETICONS","features":[50]},{"name":"SPI_SETICONTITLELOGFONT","features":[50]},{"name":"SPI_SETICONTITLEWRAP","features":[50]},{"name":"SPI_SETKEYBOARDCUES","features":[50]},{"name":"SPI_SETKEYBOARDDELAY","features":[50]},{"name":"SPI_SETKEYBOARDPREF","features":[50]},{"name":"SPI_SETKEYBOARDSPEED","features":[50]},{"name":"SPI_SETLANGTOGGLE","features":[50]},{"name":"SPI_SETLISTBOXSMOOTHSCROLLING","features":[50]},{"name":"SPI_SETLOGICALDPIOVERRIDE","features":[50]},{"name":"SPI_SETLOWPOWERACTIVE","features":[50]},{"name":"SPI_SETLOWPOWERTIMEOUT","features":[50]},{"name":"SPI_SETMENUANIMATION","features":[50]},{"name":"SPI_SETMENUDROPALIGNMENT","features":[50]},{"name":"SPI_SETMENUFADE","features":[50]},{"name":"SPI_SETMENURECT","features":[50]},{"name":"SPI_SETMENUSHOWDELAY","features":[50]},{"name":"SPI_SETMENUUNDERLINES","features":[50]},{"name":"SPI_SETMESSAGEDURATION","features":[50]},{"name":"SPI_SETMINIMIZEDMETRICS","features":[50]},{"name":"SPI_SETMINIMUMHITRADIUS","features":[50]},{"name":"SPI_SETMOUSE","features":[50]},{"name":"SPI_SETMOUSEBUTTONSWAP","features":[50]},{"name":"SPI_SETMOUSECLICKLOCK","features":[50]},{"name":"SPI_SETMOUSECLICKLOCKTIME","features":[50]},{"name":"SPI_SETMOUSEDOCKTHRESHOLD","features":[50]},{"name":"SPI_SETMOUSEDRAGOUTTHRESHOLD","features":[50]},{"name":"SPI_SETMOUSEHOVERHEIGHT","features":[50]},{"name":"SPI_SETMOUSEHOVERTIME","features":[50]},{"name":"SPI_SETMOUSEHOVERWIDTH","features":[50]},{"name":"SPI_SETMOUSEKEYS","features":[50]},{"name":"SPI_SETMOUSESIDEMOVETHRESHOLD","features":[50]},{"name":"SPI_SETMOUSESONAR","features":[50]},{"name":"SPI_SETMOUSESPEED","features":[50]},{"name":"SPI_SETMOUSETRAILS","features":[50]},{"name":"SPI_SETMOUSEVANISH","features":[50]},{"name":"SPI_SETMOUSEWHEELROUTING","features":[50]},{"name":"SPI_SETNONCLIENTMETRICS","features":[50]},{"name":"SPI_SETPENARBITRATIONTYPE","features":[50]},{"name":"SPI_SETPENDOCKTHRESHOLD","features":[50]},{"name":"SPI_SETPENDRAGOUTTHRESHOLD","features":[50]},{"name":"SPI_SETPENSIDEMOVETHRESHOLD","features":[50]},{"name":"SPI_SETPENVISUALIZATION","features":[50]},{"name":"SPI_SETPENWINDOWS","features":[50]},{"name":"SPI_SETPOWEROFFACTIVE","features":[50]},{"name":"SPI_SETPOWEROFFTIMEOUT","features":[50]},{"name":"SPI_SETSCREENREADER","features":[50]},{"name":"SPI_SETSCREENSAVEACTIVE","features":[50]},{"name":"SPI_SETSCREENSAVERRUNNING","features":[50]},{"name":"SPI_SETSCREENSAVESECURE","features":[50]},{"name":"SPI_SETSCREENSAVETIMEOUT","features":[50]},{"name":"SPI_SETSELECTIONFADE","features":[50]},{"name":"SPI_SETSERIALKEYS","features":[50]},{"name":"SPI_SETSHOWIMEUI","features":[50]},{"name":"SPI_SETSHOWSOUNDS","features":[50]},{"name":"SPI_SETSNAPSIZING","features":[50]},{"name":"SPI_SETSNAPTODEFBUTTON","features":[50]},{"name":"SPI_SETSOUNDSENTRY","features":[50]},{"name":"SPI_SETSPEECHRECOGNITION","features":[50]},{"name":"SPI_SETSTICKYKEYS","features":[50]},{"name":"SPI_SETSYSTEMLANGUAGEBAR","features":[50]},{"name":"SPI_SETTHREADLOCALINPUTSETTINGS","features":[50]},{"name":"SPI_SETTOGGLEKEYS","features":[50]},{"name":"SPI_SETTOOLTIPANIMATION","features":[50]},{"name":"SPI_SETTOOLTIPFADE","features":[50]},{"name":"SPI_SETTOUCHPREDICTIONPARAMETERS","features":[50]},{"name":"SPI_SETUIEFFECTS","features":[50]},{"name":"SPI_SETWAITTOKILLSERVICETIMEOUT","features":[50]},{"name":"SPI_SETWAITTOKILLTIMEOUT","features":[50]},{"name":"SPI_SETWHEELSCROLLCHARS","features":[50]},{"name":"SPI_SETWHEELSCROLLLINES","features":[50]},{"name":"SPI_SETWINARRANGING","features":[50]},{"name":"SPI_SETWORKAREA","features":[50]},{"name":"STATE_SYSTEM_ALERT_HIGH","features":[50]},{"name":"STATE_SYSTEM_ALERT_LOW","features":[50]},{"name":"STATE_SYSTEM_ALERT_MEDIUM","features":[50]},{"name":"STATE_SYSTEM_ANIMATED","features":[50]},{"name":"STATE_SYSTEM_BUSY","features":[50]},{"name":"STATE_SYSTEM_CHECKED","features":[50]},{"name":"STATE_SYSTEM_COLLAPSED","features":[50]},{"name":"STATE_SYSTEM_DEFAULT","features":[50]},{"name":"STATE_SYSTEM_EXPANDED","features":[50]},{"name":"STATE_SYSTEM_EXTSELECTABLE","features":[50]},{"name":"STATE_SYSTEM_FLOATING","features":[50]},{"name":"STATE_SYSTEM_FOCUSED","features":[50]},{"name":"STATE_SYSTEM_HOTTRACKED","features":[50]},{"name":"STATE_SYSTEM_INDETERMINATE","features":[50]},{"name":"STATE_SYSTEM_LINKED","features":[50]},{"name":"STATE_SYSTEM_MARQUEED","features":[50]},{"name":"STATE_SYSTEM_MIXED","features":[50]},{"name":"STATE_SYSTEM_MOVEABLE","features":[50]},{"name":"STATE_SYSTEM_MULTISELECTABLE","features":[50]},{"name":"STATE_SYSTEM_PROTECTED","features":[50]},{"name":"STATE_SYSTEM_READONLY","features":[50]},{"name":"STATE_SYSTEM_SELECTABLE","features":[50]},{"name":"STATE_SYSTEM_SELECTED","features":[50]},{"name":"STATE_SYSTEM_SELFVOICING","features":[50]},{"name":"STATE_SYSTEM_SIZEABLE","features":[50]},{"name":"STATE_SYSTEM_TRAVERSED","features":[50]},{"name":"STATE_SYSTEM_VALID","features":[50]},{"name":"STM_GETICON","features":[50]},{"name":"STM_GETIMAGE","features":[50]},{"name":"STM_MSGMAX","features":[50]},{"name":"STM_SETICON","features":[50]},{"name":"STM_SETIMAGE","features":[50]},{"name":"STN_CLICKED","features":[50]},{"name":"STN_DBLCLK","features":[50]},{"name":"STN_DISABLE","features":[50]},{"name":"STN_ENABLE","features":[50]},{"name":"STRSAFE_E_END_OF_FILE","features":[50]},{"name":"STRSAFE_E_INSUFFICIENT_BUFFER","features":[50]},{"name":"STRSAFE_E_INVALID_PARAMETER","features":[50]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[50]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[50]},{"name":"STRSAFE_IGNORE_NULLS","features":[50]},{"name":"STRSAFE_MAX_CCH","features":[50]},{"name":"STRSAFE_MAX_LENGTH","features":[50]},{"name":"STRSAFE_NO_TRUNCATION","features":[50]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[50]},{"name":"STRSAFE_USE_SECURE_CRT","features":[50]},{"name":"STYLESTRUCT","features":[50]},{"name":"SWP_ASYNCWINDOWPOS","features":[50]},{"name":"SWP_DEFERERASE","features":[50]},{"name":"SWP_DRAWFRAME","features":[50]},{"name":"SWP_FRAMECHANGED","features":[50]},{"name":"SWP_HIDEWINDOW","features":[50]},{"name":"SWP_NOACTIVATE","features":[50]},{"name":"SWP_NOCOPYBITS","features":[50]},{"name":"SWP_NOMOVE","features":[50]},{"name":"SWP_NOOWNERZORDER","features":[50]},{"name":"SWP_NOREDRAW","features":[50]},{"name":"SWP_NOREPOSITION","features":[50]},{"name":"SWP_NOSENDCHANGING","features":[50]},{"name":"SWP_NOSIZE","features":[50]},{"name":"SWP_NOZORDER","features":[50]},{"name":"SWP_SHOWWINDOW","features":[50]},{"name":"SW_ERASE","features":[50]},{"name":"SW_FORCEMINIMIZE","features":[50]},{"name":"SW_HIDE","features":[50]},{"name":"SW_INVALIDATE","features":[50]},{"name":"SW_MAX","features":[50]},{"name":"SW_MAXIMIZE","features":[50]},{"name":"SW_MINIMIZE","features":[50]},{"name":"SW_NORMAL","features":[50]},{"name":"SW_OTHERUNZOOM","features":[50]},{"name":"SW_OTHERZOOM","features":[50]},{"name":"SW_PARENTCLOSING","features":[50]},{"name":"SW_PARENTOPENING","features":[50]},{"name":"SW_RESTORE","features":[50]},{"name":"SW_SCROLLCHILDREN","features":[50]},{"name":"SW_SHOW","features":[50]},{"name":"SW_SHOWDEFAULT","features":[50]},{"name":"SW_SHOWMAXIMIZED","features":[50]},{"name":"SW_SHOWMINIMIZED","features":[50]},{"name":"SW_SHOWMINNOACTIVE","features":[50]},{"name":"SW_SHOWNA","features":[50]},{"name":"SW_SHOWNOACTIVATE","features":[50]},{"name":"SW_SHOWNORMAL","features":[50]},{"name":"SW_SMOOTHSCROLL","features":[50]},{"name":"SYSTEM_CURSOR_ID","features":[50]},{"name":"SYSTEM_METRICS_INDEX","features":[50]},{"name":"SYSTEM_PARAMETERS_INFO_ACTION","features":[50]},{"name":"SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS","features":[50]},{"name":"ScrollDC","features":[1,12,50]},{"name":"ScrollWindow","features":[1,50]},{"name":"ScrollWindowEx","features":[1,12,50]},{"name":"SendDlgItemMessageA","features":[1,50]},{"name":"SendDlgItemMessageW","features":[1,50]},{"name":"SendMessageA","features":[1,50]},{"name":"SendMessageCallbackA","features":[1,50]},{"name":"SendMessageCallbackW","features":[1,50]},{"name":"SendMessageTimeoutA","features":[1,50]},{"name":"SendMessageTimeoutW","features":[1,50]},{"name":"SendMessageW","features":[1,50]},{"name":"SendNotifyMessageA","features":[1,50]},{"name":"SendNotifyMessageW","features":[1,50]},{"name":"SetAdditionalForegroundBoostProcesses","features":[1,50]},{"name":"SetCaretBlinkTime","features":[1,50]},{"name":"SetCaretPos","features":[1,50]},{"name":"SetClassLongA","features":[1,50]},{"name":"SetClassLongPtrA","features":[1,50]},{"name":"SetClassLongPtrW","features":[1,50]},{"name":"SetClassLongW","features":[1,50]},{"name":"SetClassWord","features":[1,50]},{"name":"SetCoalescableTimer","features":[1,50]},{"name":"SetCursor","features":[50]},{"name":"SetCursorPos","features":[1,50]},{"name":"SetDebugErrorLevel","features":[50]},{"name":"SetDlgItemInt","features":[1,50]},{"name":"SetDlgItemTextA","features":[1,50]},{"name":"SetDlgItemTextW","features":[1,50]},{"name":"SetForegroundWindow","features":[1,50]},{"name":"SetLayeredWindowAttributes","features":[1,50]},{"name":"SetMenu","features":[1,50]},{"name":"SetMenuDefaultItem","features":[1,50]},{"name":"SetMenuInfo","features":[1,12,50]},{"name":"SetMenuItemBitmaps","features":[1,12,50]},{"name":"SetMenuItemInfoA","features":[1,12,50]},{"name":"SetMenuItemInfoW","features":[1,12,50]},{"name":"SetMessageExtraInfo","features":[1,50]},{"name":"SetMessageQueue","features":[1,50]},{"name":"SetParent","features":[1,50]},{"name":"SetPhysicalCursorPos","features":[1,50]},{"name":"SetProcessDPIAware","features":[1,50]},{"name":"SetProcessDefaultLayout","features":[1,50]},{"name":"SetPropA","features":[1,50]},{"name":"SetPropW","features":[1,50]},{"name":"SetSystemCursor","features":[1,50]},{"name":"SetTimer","features":[1,50]},{"name":"SetWindowDisplayAffinity","features":[1,50]},{"name":"SetWindowLongA","features":[1,50]},{"name":"SetWindowLongPtrA","features":[1,50]},{"name":"SetWindowLongPtrW","features":[1,50]},{"name":"SetWindowLongW","features":[1,50]},{"name":"SetWindowPlacement","features":[1,50]},{"name":"SetWindowPos","features":[1,50]},{"name":"SetWindowTextA","features":[1,50]},{"name":"SetWindowTextW","features":[1,50]},{"name":"SetWindowWord","features":[1,50]},{"name":"SetWindowsHookA","features":[1,50]},{"name":"SetWindowsHookExA","features":[1,50]},{"name":"SetWindowsHookExW","features":[1,50]},{"name":"SetWindowsHookW","features":[1,50]},{"name":"ShowCaret","features":[1,50]},{"name":"ShowCursor","features":[1,50]},{"name":"ShowOwnedPopups","features":[1,50]},{"name":"ShowWindow","features":[1,50]},{"name":"ShowWindowAsync","features":[1,50]},{"name":"SoundSentry","features":[1,50]},{"name":"SwitchToThisWindow","features":[1,50]},{"name":"SystemParametersInfoA","features":[1,50]},{"name":"SystemParametersInfoW","features":[1,50]},{"name":"TDF_REGISTER","features":[50]},{"name":"TDF_UNREGISTER","features":[50]},{"name":"TILE_WINDOWS_HOW","features":[50]},{"name":"TIMERPROC","features":[1,50]},{"name":"TIMERV_COALESCING_MAX","features":[50]},{"name":"TIMERV_COALESCING_MIN","features":[50]},{"name":"TIMERV_DEFAULT_COALESCING","features":[50]},{"name":"TIMERV_NO_COALESCING","features":[50]},{"name":"TITLEBARINFO","features":[1,50]},{"name":"TITLEBARINFOEX","features":[1,50]},{"name":"TKF_AVAILABLE","features":[50]},{"name":"TKF_CONFIRMHOTKEY","features":[50]},{"name":"TKF_HOTKEYACTIVE","features":[50]},{"name":"TKF_HOTKEYSOUND","features":[50]},{"name":"TKF_INDICATOR","features":[50]},{"name":"TKF_TOGGLEKEYSON","features":[50]},{"name":"TOOLTIP_DISMISS_FLAGS","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_LATENCY","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_DELTA","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_EXPO_SMOOTH_ALPHA","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_LEARNING_RATE","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MAX","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MIN","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_SAMPLETIME","features":[50]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_USE_HW_TIMESTAMP","features":[50]},{"name":"TOUCH_FLAG_NONE","features":[50]},{"name":"TOUCH_HIT_TESTING_CLIENT","features":[50]},{"name":"TOUCH_HIT_TESTING_DEFAULT","features":[50]},{"name":"TOUCH_HIT_TESTING_NONE","features":[50]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_CLOSEST","features":[50]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_FARTHEST","features":[50]},{"name":"TOUCH_MASK_CONTACTAREA","features":[50]},{"name":"TOUCH_MASK_NONE","features":[50]},{"name":"TOUCH_MASK_ORIENTATION","features":[50]},{"name":"TOUCH_MASK_PRESSURE","features":[50]},{"name":"TPMPARAMS","features":[1,50]},{"name":"TPM_BOTTOMALIGN","features":[50]},{"name":"TPM_CENTERALIGN","features":[50]},{"name":"TPM_HORIZONTAL","features":[50]},{"name":"TPM_HORNEGANIMATION","features":[50]},{"name":"TPM_HORPOSANIMATION","features":[50]},{"name":"TPM_LAYOUTRTL","features":[50]},{"name":"TPM_LEFTALIGN","features":[50]},{"name":"TPM_LEFTBUTTON","features":[50]},{"name":"TPM_NOANIMATION","features":[50]},{"name":"TPM_NONOTIFY","features":[50]},{"name":"TPM_RECURSE","features":[50]},{"name":"TPM_RETURNCMD","features":[50]},{"name":"TPM_RIGHTALIGN","features":[50]},{"name":"TPM_RIGHTBUTTON","features":[50]},{"name":"TPM_TOPALIGN","features":[50]},{"name":"TPM_VCENTERALIGN","features":[50]},{"name":"TPM_VERNEGANIMATION","features":[50]},{"name":"TPM_VERPOSANIMATION","features":[50]},{"name":"TPM_VERTICAL","features":[50]},{"name":"TPM_WORKAREA","features":[50]},{"name":"TRACK_POPUP_MENU_FLAGS","features":[50]},{"name":"TileWindows","features":[1,50]},{"name":"TrackPopupMenu","features":[1,50]},{"name":"TrackPopupMenuEx","features":[1,50]},{"name":"TranslateAcceleratorA","features":[1,50]},{"name":"TranslateAcceleratorW","features":[1,50]},{"name":"TranslateMDISysAccel","features":[1,50]},{"name":"TranslateMessage","features":[1,50]},{"name":"UISF_ACTIVE","features":[50]},{"name":"UISF_HIDEACCEL","features":[50]},{"name":"UISF_HIDEFOCUS","features":[50]},{"name":"UIS_CLEAR","features":[50]},{"name":"UIS_INITIALIZE","features":[50]},{"name":"UIS_SET","features":[50]},{"name":"ULW_ALPHA","features":[50]},{"name":"ULW_COLORKEY","features":[50]},{"name":"ULW_EX_NORESIZE","features":[50]},{"name":"ULW_OPAQUE","features":[50]},{"name":"UNICODE_NOCHAR","features":[50]},{"name":"UOI_TIMERPROC_EXCEPTION_SUPPRESSION","features":[50]},{"name":"UPDATELAYEREDWINDOWINFO","features":[1,12,50]},{"name":"UPDATE_LAYERED_WINDOW_FLAGS","features":[50]},{"name":"USER_DEFAULT_SCREEN_DPI","features":[50]},{"name":"USER_TIMER_MAXIMUM","features":[50]},{"name":"USER_TIMER_MINIMUM","features":[50]},{"name":"UnhookWindowsHook","features":[1,50]},{"name":"UnhookWindowsHookEx","features":[1,50]},{"name":"UnregisterClassA","features":[1,50]},{"name":"UnregisterClassW","features":[1,50]},{"name":"UnregisterDeviceNotification","features":[1,50]},{"name":"UpdateLayeredWindow","features":[1,12,50]},{"name":"UpdateLayeredWindowIndirect","features":[1,12,50]},{"name":"VolLockBroadcast","features":[50]},{"name":"WA_ACTIVE","features":[50]},{"name":"WA_CLICKACTIVE","features":[50]},{"name":"WA_INACTIVE","features":[50]},{"name":"WDA_EXCLUDEFROMCAPTURE","features":[50]},{"name":"WDA_MONITOR","features":[50]},{"name":"WDA_NONE","features":[50]},{"name":"WHEEL_DELTA","features":[50]},{"name":"WH_CALLWNDPROC","features":[50]},{"name":"WH_CALLWNDPROCRET","features":[50]},{"name":"WH_CBT","features":[50]},{"name":"WH_DEBUG","features":[50]},{"name":"WH_FOREGROUNDIDLE","features":[50]},{"name":"WH_GETMESSAGE","features":[50]},{"name":"WH_HARDWARE","features":[50]},{"name":"WH_JOURNALPLAYBACK","features":[50]},{"name":"WH_JOURNALRECORD","features":[50]},{"name":"WH_KEYBOARD","features":[50]},{"name":"WH_KEYBOARD_LL","features":[50]},{"name":"WH_MAX","features":[50]},{"name":"WH_MAXHOOK","features":[50]},{"name":"WH_MIN","features":[50]},{"name":"WH_MINHOOK","features":[50]},{"name":"WH_MOUSE","features":[50]},{"name":"WH_MOUSE_LL","features":[50]},{"name":"WH_MSGFILTER","features":[50]},{"name":"WH_SHELL","features":[50]},{"name":"WH_SYSMSGFILTER","features":[50]},{"name":"WINDOWINFO","features":[1,50]},{"name":"WINDOWPLACEMENT","features":[1,50]},{"name":"WINDOWPLACEMENT_FLAGS","features":[50]},{"name":"WINDOWPOS","features":[1,50]},{"name":"WINDOWS_HOOK_ID","features":[50]},{"name":"WINDOW_DISPLAY_AFFINITY","features":[50]},{"name":"WINDOW_EX_STYLE","features":[50]},{"name":"WINDOW_LONG_PTR_INDEX","features":[50]},{"name":"WINDOW_MESSAGE_FILTER_ACTION","features":[50]},{"name":"WINDOW_STYLE","features":[50]},{"name":"WINEVENT_INCONTEXT","features":[50]},{"name":"WINEVENT_OUTOFCONTEXT","features":[50]},{"name":"WINEVENT_SKIPOWNPROCESS","features":[50]},{"name":"WINEVENT_SKIPOWNTHREAD","features":[50]},{"name":"WINSTA_ACCESSCLIPBOARD","features":[50]},{"name":"WINSTA_ACCESSGLOBALATOMS","features":[50]},{"name":"WINSTA_CREATEDESKTOP","features":[50]},{"name":"WINSTA_ENUMDESKTOPS","features":[50]},{"name":"WINSTA_ENUMERATE","features":[50]},{"name":"WINSTA_EXITWINDOWS","features":[50]},{"name":"WINSTA_READATTRIBUTES","features":[50]},{"name":"WINSTA_READSCREEN","features":[50]},{"name":"WINSTA_WRITEATTRIBUTES","features":[50]},{"name":"WMSZ_BOTTOM","features":[50]},{"name":"WMSZ_BOTTOMLEFT","features":[50]},{"name":"WMSZ_BOTTOMRIGHT","features":[50]},{"name":"WMSZ_LEFT","features":[50]},{"name":"WMSZ_RIGHT","features":[50]},{"name":"WMSZ_TOP","features":[50]},{"name":"WMSZ_TOPLEFT","features":[50]},{"name":"WMSZ_TOPRIGHT","features":[50]},{"name":"WM_ACTIVATE","features":[50]},{"name":"WM_ACTIVATEAPP","features":[50]},{"name":"WM_AFXFIRST","features":[50]},{"name":"WM_AFXLAST","features":[50]},{"name":"WM_APP","features":[50]},{"name":"WM_APPCOMMAND","features":[50]},{"name":"WM_ASKCBFORMATNAME","features":[50]},{"name":"WM_CANCELJOURNAL","features":[50]},{"name":"WM_CANCELMODE","features":[50]},{"name":"WM_CAPTURECHANGED","features":[50]},{"name":"WM_CHANGECBCHAIN","features":[50]},{"name":"WM_CHANGEUISTATE","features":[50]},{"name":"WM_CHAR","features":[50]},{"name":"WM_CHARTOITEM","features":[50]},{"name":"WM_CHILDACTIVATE","features":[50]},{"name":"WM_CLEAR","features":[50]},{"name":"WM_CLIPBOARDUPDATE","features":[50]},{"name":"WM_CLOSE","features":[50]},{"name":"WM_COMMAND","features":[50]},{"name":"WM_COMMNOTIFY","features":[50]},{"name":"WM_COMPACTING","features":[50]},{"name":"WM_COMPAREITEM","features":[50]},{"name":"WM_CONTEXTMENU","features":[50]},{"name":"WM_COPY","features":[50]},{"name":"WM_COPYDATA","features":[50]},{"name":"WM_CREATE","features":[50]},{"name":"WM_CTLCOLORBTN","features":[50]},{"name":"WM_CTLCOLORDLG","features":[50]},{"name":"WM_CTLCOLOREDIT","features":[50]},{"name":"WM_CTLCOLORLISTBOX","features":[50]},{"name":"WM_CTLCOLORMSGBOX","features":[50]},{"name":"WM_CTLCOLORSCROLLBAR","features":[50]},{"name":"WM_CTLCOLORSTATIC","features":[50]},{"name":"WM_CUT","features":[50]},{"name":"WM_DEADCHAR","features":[50]},{"name":"WM_DELETEITEM","features":[50]},{"name":"WM_DESTROY","features":[50]},{"name":"WM_DESTROYCLIPBOARD","features":[50]},{"name":"WM_DEVICECHANGE","features":[50]},{"name":"WM_DEVMODECHANGE","features":[50]},{"name":"WM_DISPLAYCHANGE","features":[50]},{"name":"WM_DPICHANGED","features":[50]},{"name":"WM_DPICHANGED_AFTERPARENT","features":[50]},{"name":"WM_DPICHANGED_BEFOREPARENT","features":[50]},{"name":"WM_DRAWCLIPBOARD","features":[50]},{"name":"WM_DRAWITEM","features":[50]},{"name":"WM_DROPFILES","features":[50]},{"name":"WM_DWMCOLORIZATIONCOLORCHANGED","features":[50]},{"name":"WM_DWMCOMPOSITIONCHANGED","features":[50]},{"name":"WM_DWMNCRENDERINGCHANGED","features":[50]},{"name":"WM_DWMSENDICONICLIVEPREVIEWBITMAP","features":[50]},{"name":"WM_DWMSENDICONICTHUMBNAIL","features":[50]},{"name":"WM_DWMWINDOWMAXIMIZEDCHANGE","features":[50]},{"name":"WM_ENABLE","features":[50]},{"name":"WM_ENDSESSION","features":[50]},{"name":"WM_ENTERIDLE","features":[50]},{"name":"WM_ENTERMENULOOP","features":[50]},{"name":"WM_ENTERSIZEMOVE","features":[50]},{"name":"WM_ERASEBKGND","features":[50]},{"name":"WM_EXITMENULOOP","features":[50]},{"name":"WM_EXITSIZEMOVE","features":[50]},{"name":"WM_FONTCHANGE","features":[50]},{"name":"WM_GESTURE","features":[50]},{"name":"WM_GESTURENOTIFY","features":[50]},{"name":"WM_GETDLGCODE","features":[50]},{"name":"WM_GETDPISCALEDSIZE","features":[50]},{"name":"WM_GETFONT","features":[50]},{"name":"WM_GETHOTKEY","features":[50]},{"name":"WM_GETICON","features":[50]},{"name":"WM_GETMINMAXINFO","features":[50]},{"name":"WM_GETOBJECT","features":[50]},{"name":"WM_GETTEXT","features":[50]},{"name":"WM_GETTEXTLENGTH","features":[50]},{"name":"WM_GETTITLEBARINFOEX","features":[50]},{"name":"WM_HANDHELDFIRST","features":[50]},{"name":"WM_HANDHELDLAST","features":[50]},{"name":"WM_HELP","features":[50]},{"name":"WM_HOTKEY","features":[50]},{"name":"WM_HSCROLL","features":[50]},{"name":"WM_HSCROLLCLIPBOARD","features":[50]},{"name":"WM_ICONERASEBKGND","features":[50]},{"name":"WM_IME_CHAR","features":[50]},{"name":"WM_IME_COMPOSITION","features":[50]},{"name":"WM_IME_COMPOSITIONFULL","features":[50]},{"name":"WM_IME_CONTROL","features":[50]},{"name":"WM_IME_ENDCOMPOSITION","features":[50]},{"name":"WM_IME_KEYDOWN","features":[50]},{"name":"WM_IME_KEYLAST","features":[50]},{"name":"WM_IME_KEYUP","features":[50]},{"name":"WM_IME_NOTIFY","features":[50]},{"name":"WM_IME_REQUEST","features":[50]},{"name":"WM_IME_SELECT","features":[50]},{"name":"WM_IME_SETCONTEXT","features":[50]},{"name":"WM_IME_STARTCOMPOSITION","features":[50]},{"name":"WM_INITDIALOG","features":[50]},{"name":"WM_INITMENU","features":[50]},{"name":"WM_INITMENUPOPUP","features":[50]},{"name":"WM_INPUT","features":[50]},{"name":"WM_INPUTLANGCHANGE","features":[50]},{"name":"WM_INPUTLANGCHANGEREQUEST","features":[50]},{"name":"WM_INPUT_DEVICE_CHANGE","features":[50]},{"name":"WM_KEYDOWN","features":[50]},{"name":"WM_KEYFIRST","features":[50]},{"name":"WM_KEYLAST","features":[50]},{"name":"WM_KEYUP","features":[50]},{"name":"WM_KILLFOCUS","features":[50]},{"name":"WM_LBUTTONDBLCLK","features":[50]},{"name":"WM_LBUTTONDOWN","features":[50]},{"name":"WM_LBUTTONUP","features":[50]},{"name":"WM_MBUTTONDBLCLK","features":[50]},{"name":"WM_MBUTTONDOWN","features":[50]},{"name":"WM_MBUTTONUP","features":[50]},{"name":"WM_MDIACTIVATE","features":[50]},{"name":"WM_MDICASCADE","features":[50]},{"name":"WM_MDICREATE","features":[50]},{"name":"WM_MDIDESTROY","features":[50]},{"name":"WM_MDIGETACTIVE","features":[50]},{"name":"WM_MDIICONARRANGE","features":[50]},{"name":"WM_MDIMAXIMIZE","features":[50]},{"name":"WM_MDINEXT","features":[50]},{"name":"WM_MDIREFRESHMENU","features":[50]},{"name":"WM_MDIRESTORE","features":[50]},{"name":"WM_MDISETMENU","features":[50]},{"name":"WM_MDITILE","features":[50]},{"name":"WM_MEASUREITEM","features":[50]},{"name":"WM_MENUCHAR","features":[50]},{"name":"WM_MENUCOMMAND","features":[50]},{"name":"WM_MENUDRAG","features":[50]},{"name":"WM_MENUGETOBJECT","features":[50]},{"name":"WM_MENURBUTTONUP","features":[50]},{"name":"WM_MENUSELECT","features":[50]},{"name":"WM_MOUSEACTIVATE","features":[50]},{"name":"WM_MOUSEFIRST","features":[50]},{"name":"WM_MOUSEHWHEEL","features":[50]},{"name":"WM_MOUSELAST","features":[50]},{"name":"WM_MOUSEMOVE","features":[50]},{"name":"WM_MOUSEWHEEL","features":[50]},{"name":"WM_MOVE","features":[50]},{"name":"WM_MOVING","features":[50]},{"name":"WM_NCACTIVATE","features":[50]},{"name":"WM_NCCALCSIZE","features":[50]},{"name":"WM_NCCREATE","features":[50]},{"name":"WM_NCDESTROY","features":[50]},{"name":"WM_NCHITTEST","features":[50]},{"name":"WM_NCLBUTTONDBLCLK","features":[50]},{"name":"WM_NCLBUTTONDOWN","features":[50]},{"name":"WM_NCLBUTTONUP","features":[50]},{"name":"WM_NCMBUTTONDBLCLK","features":[50]},{"name":"WM_NCMBUTTONDOWN","features":[50]},{"name":"WM_NCMBUTTONUP","features":[50]},{"name":"WM_NCMOUSEHOVER","features":[50]},{"name":"WM_NCMOUSELEAVE","features":[50]},{"name":"WM_NCMOUSEMOVE","features":[50]},{"name":"WM_NCPAINT","features":[50]},{"name":"WM_NCPOINTERDOWN","features":[50]},{"name":"WM_NCPOINTERUP","features":[50]},{"name":"WM_NCPOINTERUPDATE","features":[50]},{"name":"WM_NCRBUTTONDBLCLK","features":[50]},{"name":"WM_NCRBUTTONDOWN","features":[50]},{"name":"WM_NCRBUTTONUP","features":[50]},{"name":"WM_NCXBUTTONDBLCLK","features":[50]},{"name":"WM_NCXBUTTONDOWN","features":[50]},{"name":"WM_NCXBUTTONUP","features":[50]},{"name":"WM_NEXTDLGCTL","features":[50]},{"name":"WM_NEXTMENU","features":[50]},{"name":"WM_NOTIFY","features":[50]},{"name":"WM_NOTIFYFORMAT","features":[50]},{"name":"WM_NULL","features":[50]},{"name":"WM_PAINT","features":[50]},{"name":"WM_PAINTCLIPBOARD","features":[50]},{"name":"WM_PAINTICON","features":[50]},{"name":"WM_PALETTECHANGED","features":[50]},{"name":"WM_PALETTEISCHANGING","features":[50]},{"name":"WM_PARENTNOTIFY","features":[50]},{"name":"WM_PASTE","features":[50]},{"name":"WM_PENWINFIRST","features":[50]},{"name":"WM_PENWINLAST","features":[50]},{"name":"WM_POINTERACTIVATE","features":[50]},{"name":"WM_POINTERCAPTURECHANGED","features":[50]},{"name":"WM_POINTERDEVICECHANGE","features":[50]},{"name":"WM_POINTERDEVICEINRANGE","features":[50]},{"name":"WM_POINTERDEVICEOUTOFRANGE","features":[50]},{"name":"WM_POINTERDOWN","features":[50]},{"name":"WM_POINTERENTER","features":[50]},{"name":"WM_POINTERHWHEEL","features":[50]},{"name":"WM_POINTERLEAVE","features":[50]},{"name":"WM_POINTERROUTEDAWAY","features":[50]},{"name":"WM_POINTERROUTEDRELEASED","features":[50]},{"name":"WM_POINTERROUTEDTO","features":[50]},{"name":"WM_POINTERUP","features":[50]},{"name":"WM_POINTERUPDATE","features":[50]},{"name":"WM_POINTERWHEEL","features":[50]},{"name":"WM_POWER","features":[50]},{"name":"WM_POWERBROADCAST","features":[50]},{"name":"WM_PRINT","features":[50]},{"name":"WM_PRINTCLIENT","features":[50]},{"name":"WM_QUERYDRAGICON","features":[50]},{"name":"WM_QUERYENDSESSION","features":[50]},{"name":"WM_QUERYNEWPALETTE","features":[50]},{"name":"WM_QUERYOPEN","features":[50]},{"name":"WM_QUERYUISTATE","features":[50]},{"name":"WM_QUEUESYNC","features":[50]},{"name":"WM_QUIT","features":[50]},{"name":"WM_RBUTTONDBLCLK","features":[50]},{"name":"WM_RBUTTONDOWN","features":[50]},{"name":"WM_RBUTTONUP","features":[50]},{"name":"WM_RENDERALLFORMATS","features":[50]},{"name":"WM_RENDERFORMAT","features":[50]},{"name":"WM_SETCURSOR","features":[50]},{"name":"WM_SETFOCUS","features":[50]},{"name":"WM_SETFONT","features":[50]},{"name":"WM_SETHOTKEY","features":[50]},{"name":"WM_SETICON","features":[50]},{"name":"WM_SETREDRAW","features":[50]},{"name":"WM_SETTEXT","features":[50]},{"name":"WM_SETTINGCHANGE","features":[50]},{"name":"WM_SHOWWINDOW","features":[50]},{"name":"WM_SIZE","features":[50]},{"name":"WM_SIZECLIPBOARD","features":[50]},{"name":"WM_SIZING","features":[50]},{"name":"WM_SPOOLERSTATUS","features":[50]},{"name":"WM_STYLECHANGED","features":[50]},{"name":"WM_STYLECHANGING","features":[50]},{"name":"WM_SYNCPAINT","features":[50]},{"name":"WM_SYSCHAR","features":[50]},{"name":"WM_SYSCOLORCHANGE","features":[50]},{"name":"WM_SYSCOMMAND","features":[50]},{"name":"WM_SYSDEADCHAR","features":[50]},{"name":"WM_SYSKEYDOWN","features":[50]},{"name":"WM_SYSKEYUP","features":[50]},{"name":"WM_TABLET_FIRST","features":[50]},{"name":"WM_TABLET_LAST","features":[50]},{"name":"WM_TCARD","features":[50]},{"name":"WM_THEMECHANGED","features":[50]},{"name":"WM_TIMECHANGE","features":[50]},{"name":"WM_TIMER","features":[50]},{"name":"WM_TOOLTIPDISMISS","features":[50]},{"name":"WM_TOUCH","features":[50]},{"name":"WM_TOUCHHITTESTING","features":[50]},{"name":"WM_UNDO","features":[50]},{"name":"WM_UNICHAR","features":[50]},{"name":"WM_UNINITMENUPOPUP","features":[50]},{"name":"WM_UPDATEUISTATE","features":[50]},{"name":"WM_USER","features":[50]},{"name":"WM_USERCHANGED","features":[50]},{"name":"WM_VKEYTOITEM","features":[50]},{"name":"WM_VSCROLL","features":[50]},{"name":"WM_VSCROLLCLIPBOARD","features":[50]},{"name":"WM_WINDOWPOSCHANGED","features":[50]},{"name":"WM_WINDOWPOSCHANGING","features":[50]},{"name":"WM_WININICHANGE","features":[50]},{"name":"WM_WTSSESSION_CHANGE","features":[50]},{"name":"WM_XBUTTONDBLCLK","features":[50]},{"name":"WM_XBUTTONDOWN","features":[50]},{"name":"WM_XBUTTONUP","features":[50]},{"name":"WNDCLASSA","features":[1,12,50]},{"name":"WNDCLASSEXA","features":[1,12,50]},{"name":"WNDCLASSEXW","features":[1,12,50]},{"name":"WNDCLASSW","features":[1,12,50]},{"name":"WNDCLASS_STYLES","features":[50]},{"name":"WNDENUMPROC","features":[1,50]},{"name":"WNDPROC","features":[1,50]},{"name":"WPF_ASYNCWINDOWPLACEMENT","features":[50]},{"name":"WPF_RESTORETOMAXIMIZED","features":[50]},{"name":"WPF_SETMINPOSITION","features":[50]},{"name":"WSF_VISIBLE","features":[50]},{"name":"WS_ACTIVECAPTION","features":[50]},{"name":"WS_BORDER","features":[50]},{"name":"WS_CAPTION","features":[50]},{"name":"WS_CHILD","features":[50]},{"name":"WS_CHILDWINDOW","features":[50]},{"name":"WS_CLIPCHILDREN","features":[50]},{"name":"WS_CLIPSIBLINGS","features":[50]},{"name":"WS_DISABLED","features":[50]},{"name":"WS_DLGFRAME","features":[50]},{"name":"WS_EX_ACCEPTFILES","features":[50]},{"name":"WS_EX_APPWINDOW","features":[50]},{"name":"WS_EX_CLIENTEDGE","features":[50]},{"name":"WS_EX_COMPOSITED","features":[50]},{"name":"WS_EX_CONTEXTHELP","features":[50]},{"name":"WS_EX_CONTROLPARENT","features":[50]},{"name":"WS_EX_DLGMODALFRAME","features":[50]},{"name":"WS_EX_LAYERED","features":[50]},{"name":"WS_EX_LAYOUTRTL","features":[50]},{"name":"WS_EX_LEFT","features":[50]},{"name":"WS_EX_LEFTSCROLLBAR","features":[50]},{"name":"WS_EX_LTRREADING","features":[50]},{"name":"WS_EX_MDICHILD","features":[50]},{"name":"WS_EX_NOACTIVATE","features":[50]},{"name":"WS_EX_NOINHERITLAYOUT","features":[50]},{"name":"WS_EX_NOPARENTNOTIFY","features":[50]},{"name":"WS_EX_NOREDIRECTIONBITMAP","features":[50]},{"name":"WS_EX_OVERLAPPEDWINDOW","features":[50]},{"name":"WS_EX_PALETTEWINDOW","features":[50]},{"name":"WS_EX_RIGHT","features":[50]},{"name":"WS_EX_RIGHTSCROLLBAR","features":[50]},{"name":"WS_EX_RTLREADING","features":[50]},{"name":"WS_EX_STATICEDGE","features":[50]},{"name":"WS_EX_TOOLWINDOW","features":[50]},{"name":"WS_EX_TOPMOST","features":[50]},{"name":"WS_EX_TRANSPARENT","features":[50]},{"name":"WS_EX_WINDOWEDGE","features":[50]},{"name":"WS_GROUP","features":[50]},{"name":"WS_HSCROLL","features":[50]},{"name":"WS_ICONIC","features":[50]},{"name":"WS_MAXIMIZE","features":[50]},{"name":"WS_MAXIMIZEBOX","features":[50]},{"name":"WS_MINIMIZE","features":[50]},{"name":"WS_MINIMIZEBOX","features":[50]},{"name":"WS_OVERLAPPED","features":[50]},{"name":"WS_OVERLAPPEDWINDOW","features":[50]},{"name":"WS_POPUP","features":[50]},{"name":"WS_POPUPWINDOW","features":[50]},{"name":"WS_SIZEBOX","features":[50]},{"name":"WS_SYSMENU","features":[50]},{"name":"WS_TABSTOP","features":[50]},{"name":"WS_THICKFRAME","features":[50]},{"name":"WS_TILED","features":[50]},{"name":"WS_TILEDWINDOW","features":[50]},{"name":"WS_VISIBLE","features":[50]},{"name":"WS_VSCROLL","features":[50]},{"name":"WTS_CONSOLE_CONNECT","features":[50]},{"name":"WTS_CONSOLE_DISCONNECT","features":[50]},{"name":"WTS_REMOTE_CONNECT","features":[50]},{"name":"WTS_REMOTE_DISCONNECT","features":[50]},{"name":"WTS_SESSION_CREATE","features":[50]},{"name":"WTS_SESSION_LOCK","features":[50]},{"name":"WTS_SESSION_LOGOFF","features":[50]},{"name":"WTS_SESSION_LOGON","features":[50]},{"name":"WTS_SESSION_REMOTE_CONTROL","features":[50]},{"name":"WTS_SESSION_TERMINATE","features":[50]},{"name":"WTS_SESSION_UNLOCK","features":[50]},{"name":"WVR_ALIGNBOTTOM","features":[50]},{"name":"WVR_ALIGNLEFT","features":[50]},{"name":"WVR_ALIGNRIGHT","features":[50]},{"name":"WVR_ALIGNTOP","features":[50]},{"name":"WVR_HREDRAW","features":[50]},{"name":"WVR_VALIDRECTS","features":[50]},{"name":"WVR_VREDRAW","features":[50]},{"name":"WaitMessage","features":[1,50]},{"name":"WindowFromPhysicalPoint","features":[1,50]},{"name":"WindowFromPoint","features":[1,50]},{"name":"XBUTTON1","features":[50]},{"name":"XBUTTON2","features":[50]},{"name":"_DEV_BROADCAST_HEADER","features":[50]},{"name":"_DEV_BROADCAST_USERDEFINED","features":[50]},{"name":"__WARNING_BANNED_API_USAGE","features":[50]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[50]},{"name":"__WARNING_DEREF_NULL_PTR","features":[50]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[50]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[50]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[50]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[50]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[50]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[50]},{"name":"__WARNING_POST_EXPECTED","features":[50]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[50]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[50]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[50]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[50]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[50]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[50]},{"name":"__WARNING_USING_UNINIT_VAR","features":[50]},{"name":"wsprintfA","features":[50]},{"name":"wsprintfW","features":[50]},{"name":"wvsprintfA","features":[50]},{"name":"wvsprintfW","features":[50]}],"675":[{"name":"ADDRESSBAND","features":[221]},{"name":"ADDURL_ADDTOCACHE","features":[221]},{"name":"ADDURL_ADDTOHISTORYANDCACHE","features":[221]},{"name":"ADDURL_FIRST","features":[221]},{"name":"ADDURL_FLAG","features":[221]},{"name":"ADDURL_Max","features":[221]},{"name":"ActivityContentCount","features":[221]},{"name":"ActivityContentDocument","features":[221]},{"name":"ActivityContentLink","features":[221]},{"name":"ActivityContentNone","features":[221]},{"name":"ActivityContentSelection","features":[221]},{"name":"AnchorClick","features":[221]},{"name":"CATID_MSOfficeAntiVirus","features":[221]},{"name":"CDeviceRect","features":[221]},{"name":"CDownloadBehavior","features":[221]},{"name":"CHeaderFooter","features":[221]},{"name":"CLayoutRect","features":[221]},{"name":"COLOR_NO_TRANSPARENT","features":[221]},{"name":"CPersistDataPeer","features":[221]},{"name":"CPersistHistory","features":[221]},{"name":"CPersistShortcut","features":[221]},{"name":"CPersistSnapshot","features":[221]},{"name":"CPersistUserData","features":[221]},{"name":"CoDitherToRGB8","features":[221]},{"name":"CoMapMIMEToCLSID","features":[221]},{"name":"CoSniffStream","features":[221]},{"name":"ComputeInvCMAP","features":[12,221]},{"name":"CreateDDrawSurfaceOnDIB","features":[12,221]},{"name":"CreateMIMEMap","features":[221]},{"name":"DISPID_ACTIVEXFILTERINGENABLED","features":[221]},{"name":"DISPID_ADDCHANNEL","features":[221]},{"name":"DISPID_ADDDESKTOPCOMPONENT","features":[221]},{"name":"DISPID_ADDFAVORITE","features":[221]},{"name":"DISPID_ADDSEARCHPROVIDER","features":[221]},{"name":"DISPID_ADDSERVICE","features":[221]},{"name":"DISPID_ADDSITEMODE","features":[221]},{"name":"DISPID_ADDTHUMBNAILBUTTONS","features":[221]},{"name":"DISPID_ADDTOFAVORITESBAR","features":[221]},{"name":"DISPID_ADDTRACKINGPROTECTIONLIST","features":[221]},{"name":"DISPID_ADVANCEERROR","features":[221]},{"name":"DISPID_AMBIENT_OFFLINEIFNOTCONNECTED","features":[221]},{"name":"DISPID_AMBIENT_SILENT","features":[221]},{"name":"DISPID_AUTOCOMPLETEATTACH","features":[221]},{"name":"DISPID_AUTOCOMPLETESAVEFORM","features":[221]},{"name":"DISPID_AUTOSCAN","features":[221]},{"name":"DISPID_BEFORENAVIGATE","features":[221]},{"name":"DISPID_BEFORENAVIGATE2","features":[221]},{"name":"DISPID_BEFORESCRIPTEXECUTE","features":[221]},{"name":"DISPID_BRANDIMAGEURI","features":[221]},{"name":"DISPID_BUILDNEWTABPAGE","features":[221]},{"name":"DISPID_CANADVANCEERROR","features":[221]},{"name":"DISPID_CANRETREATERROR","features":[221]},{"name":"DISPID_CHANGEDEFAULTBROWSER","features":[221]},{"name":"DISPID_CLEARNOTIFICATION","features":[221]},{"name":"DISPID_CLEARSITEMODEICONOVERLAY","features":[221]},{"name":"DISPID_CLIENTTOHOSTWINDOW","features":[221]},{"name":"DISPID_COMMANDSTATECHANGE","features":[221]},{"name":"DISPID_CONTENTDISCOVERYRESET","features":[221]},{"name":"DISPID_COUNTVIEWTYPES","features":[221]},{"name":"DISPID_CREATESUBSCRIPTION","features":[221]},{"name":"DISPID_CUSTOMIZECLEARTYPE","features":[221]},{"name":"DISPID_CUSTOMIZESETTINGS","features":[221]},{"name":"DISPID_DEFAULTSEARCHPROVIDER","features":[221]},{"name":"DISPID_DELETESUBSCRIPTION","features":[221]},{"name":"DISPID_DEPTH","features":[221]},{"name":"DISPID_DIAGNOSECONNECTION","features":[221]},{"name":"DISPID_DIAGNOSECONNECTIONUILESS","features":[221]},{"name":"DISPID_DOCUMENTCOMPLETE","features":[221]},{"name":"DISPID_DOUBLECLICK","features":[221]},{"name":"DISPID_DOWNLOADBEGIN","features":[221]},{"name":"DISPID_DOWNLOADCOMPLETE","features":[221]},{"name":"DISPID_ENABLENOTIFICATIONQUEUE","features":[221]},{"name":"DISPID_ENABLENOTIFICATIONQUEUELARGE","features":[221]},{"name":"DISPID_ENABLENOTIFICATIONQUEUESQUARE","features":[221]},{"name":"DISPID_ENABLENOTIFICATIONQUEUEWIDE","features":[221]},{"name":"DISPID_ENABLESUGGESTEDSITES","features":[221]},{"name":"DISPID_ENUMOPTIONS","features":[221]},{"name":"DISPID_EXPAND","features":[221]},{"name":"DISPID_EXPORT","features":[221]},{"name":"DISPID_FAVSELECTIONCHANGE","features":[221]},{"name":"DISPID_FILEDOWNLOAD","features":[221]},{"name":"DISPID_FLAGS","features":[221]},{"name":"DISPID_FRAMEBEFORENAVIGATE","features":[221]},{"name":"DISPID_FRAMENAVIGATECOMPLETE","features":[221]},{"name":"DISPID_FRAMENEWWINDOW","features":[221]},{"name":"DISPID_GETALWAYSSHOWLOCKSTATE","features":[221]},{"name":"DISPID_GETCVLISTDATA","features":[221]},{"name":"DISPID_GETCVLISTLOCALDATA","features":[221]},{"name":"DISPID_GETDETAILSSTATE","features":[221]},{"name":"DISPID_GETEMIELISTDATA","features":[221]},{"name":"DISPID_GETEMIELISTLOCALDATA","features":[221]},{"name":"DISPID_GETERRORCHAR","features":[221]},{"name":"DISPID_GETERRORCODE","features":[221]},{"name":"DISPID_GETERRORLINE","features":[221]},{"name":"DISPID_GETERRORMSG","features":[221]},{"name":"DISPID_GETERRORURL","features":[221]},{"name":"DISPID_GETEXPERIMENTALFLAG","features":[221]},{"name":"DISPID_GETEXPERIMENTALVALUE","features":[221]},{"name":"DISPID_GETNEEDHVSIAUTOLAUNCHFLAG","features":[221]},{"name":"DISPID_GETNEEDIEAUTOLAUNCHFLAG","features":[221]},{"name":"DISPID_GETOSSKU","features":[221]},{"name":"DISPID_GETPERERRSTATE","features":[221]},{"name":"DISPID_HASNEEDHVSIAUTOLAUNCHFLAG","features":[221]},{"name":"DISPID_HASNEEDIEAUTOLAUNCHFLAG","features":[221]},{"name":"DISPID_IMPORT","features":[221]},{"name":"DISPID_IMPORTEXPORTFAVORITES","features":[221]},{"name":"DISPID_INITIALIZED","features":[221]},{"name":"DISPID_INPRIVATEFILTERINGENABLED","features":[221]},{"name":"DISPID_INVOKECONTEXTMENU","features":[221]},{"name":"DISPID_ISMETAREFERRERAVAILABLE","features":[221]},{"name":"DISPID_ISSEARCHMIGRATED","features":[221]},{"name":"DISPID_ISSEARCHPROVIDERINSTALLED","features":[221]},{"name":"DISPID_ISSERVICEINSTALLED","features":[221]},{"name":"DISPID_ISSITEMODE","features":[221]},{"name":"DISPID_ISSITEMODEFIRSTRUN","features":[221]},{"name":"DISPID_ISSUBSCRIBED","features":[221]},{"name":"DISPID_LAUNCHIE","features":[221]},{"name":"DISPID_LAUNCHINHVSI","features":[221]},{"name":"DISPID_LAUNCHINTERNETOPTIONS","features":[221]},{"name":"DISPID_LAUNCHNETWORKCLIENTHELP","features":[221]},{"name":"DISPID_MODE","features":[221]},{"name":"DISPID_MOVESELECTIONDOWN","features":[221]},{"name":"DISPID_MOVESELECTIONTO","features":[221]},{"name":"DISPID_MOVESELECTIONUP","features":[221]},{"name":"DISPID_NAVIGATEANDFIND","features":[221]},{"name":"DISPID_NAVIGATECOMPLETE","features":[221]},{"name":"DISPID_NAVIGATECOMPLETE2","features":[221]},{"name":"DISPID_NAVIGATEERROR","features":[221]},{"name":"DISPID_NAVIGATETOSUGGESTEDSITES","features":[221]},{"name":"DISPID_NEWFOLDER","features":[221]},{"name":"DISPID_NEWPROCESS","features":[221]},{"name":"DISPID_NEWWINDOW","features":[221]},{"name":"DISPID_NEWWINDOW2","features":[221]},{"name":"DISPID_NEWWINDOW3","features":[221]},{"name":"DISPID_NSCOLUMNS","features":[221]},{"name":"DISPID_ONADDRESSBAR","features":[221]},{"name":"DISPID_ONFULLSCREEN","features":[221]},{"name":"DISPID_ONMENUBAR","features":[221]},{"name":"DISPID_ONQUIT","features":[221]},{"name":"DISPID_ONSTATUSBAR","features":[221]},{"name":"DISPID_ONTHEATERMODE","features":[221]},{"name":"DISPID_ONTOOLBAR","features":[221]},{"name":"DISPID_ONVISIBLE","features":[221]},{"name":"DISPID_OPENFAVORITESPANE","features":[221]},{"name":"DISPID_OPENFAVORITESSETTINGS","features":[221]},{"name":"DISPID_PHISHINGENABLED","features":[221]},{"name":"DISPID_PINNEDSITESTATE","features":[221]},{"name":"DISPID_PRINTTEMPLATEINSTANTIATION","features":[221]},{"name":"DISPID_PRINTTEMPLATETEARDOWN","features":[221]},{"name":"DISPID_PRIVACYIMPACTEDSTATECHANGE","features":[221]},{"name":"DISPID_PROGRESSCHANGE","features":[221]},{"name":"DISPID_PROPERTYCHANGE","features":[221]},{"name":"DISPID_PROVISIONNETWORKS","features":[221]},{"name":"DISPID_QUIT","features":[221]},{"name":"DISPID_REDIRECTXDOMAINBLOCKED","features":[221]},{"name":"DISPID_REFRESHOFFLINEDESKTOP","features":[221]},{"name":"DISPID_REMOVESCHEDULEDTILENOTIFICATION","features":[221]},{"name":"DISPID_REPORTSAFEURL","features":[221]},{"name":"DISPID_RESETEXPERIMENTALFLAGS","features":[221]},{"name":"DISPID_RESETFIRSTBOOTMODE","features":[221]},{"name":"DISPID_RESETSAFEMODE","features":[221]},{"name":"DISPID_RESETSORT","features":[221]},{"name":"DISPID_RETREATERROR","features":[221]},{"name":"DISPID_ROOT","features":[221]},{"name":"DISPID_RUNONCEHASSHOWN","features":[221]},{"name":"DISPID_RUNONCEREQUIREDSETTINGSCOMPLETE","features":[221]},{"name":"DISPID_RUNONCESHOWN","features":[221]},{"name":"DISPID_SCHEDULEDTILENOTIFICATION","features":[221]},{"name":"DISPID_SEARCHGUIDEURL","features":[221]},{"name":"DISPID_SELECTEDITEM","features":[221]},{"name":"DISPID_SELECTEDITEMS","features":[221]},{"name":"DISPID_SELECTIONCHANGE","features":[221]},{"name":"DISPID_SETACTIVITIESVISIBLE","features":[221]},{"name":"DISPID_SETDETAILSSTATE","features":[221]},{"name":"DISPID_SETEXPERIMENTALFLAG","features":[221]},{"name":"DISPID_SETEXPERIMENTALVALUE","features":[221]},{"name":"DISPID_SETMSDEFAULTS","features":[221]},{"name":"DISPID_SETNEEDHVSIAUTOLAUNCHFLAG","features":[221]},{"name":"DISPID_SETNEEDIEAUTOLAUNCHFLAG","features":[221]},{"name":"DISPID_SETPERERRSTATE","features":[221]},{"name":"DISPID_SETPHISHINGFILTERSTATUS","features":[221]},{"name":"DISPID_SETRECENTLYCLOSEDVISIBLE","features":[221]},{"name":"DISPID_SETROOT","features":[221]},{"name":"DISPID_SETSECURELOCKICON","features":[221]},{"name":"DISPID_SETSITEMODEICONOVERLAY","features":[221]},{"name":"DISPID_SETSITEMODEPROPERTIES","features":[221]},{"name":"DISPID_SETTHUMBNAILBUTTONS","features":[221]},{"name":"DISPID_SETVIEWTYPE","features":[221]},{"name":"DISPID_SHELLUIHELPERLAST","features":[221]},{"name":"DISPID_SHOWBROWSERUI","features":[221]},{"name":"DISPID_SHOWINPRIVATEHELP","features":[221]},{"name":"DISPID_SHOWTABSHELP","features":[221]},{"name":"DISPID_SITEMODEACTIVATE","features":[221]},{"name":"DISPID_SITEMODEADDBUTTONSTYLE","features":[221]},{"name":"DISPID_SITEMODEADDJUMPLISTITEM","features":[221]},{"name":"DISPID_SITEMODECLEARBADGE","features":[221]},{"name":"DISPID_SITEMODECLEARJUMPLIST","features":[221]},{"name":"DISPID_SITEMODECREATEJUMPLIST","features":[221]},{"name":"DISPID_SITEMODEREFRESHBADGE","features":[221]},{"name":"DISPID_SITEMODESHOWBUTTONSTYLE","features":[221]},{"name":"DISPID_SITEMODESHOWJUMPLIST","features":[221]},{"name":"DISPID_SKIPRUNONCE","features":[221]},{"name":"DISPID_SKIPTABSWELCOME","features":[221]},{"name":"DISPID_SQMENABLED","features":[221]},{"name":"DISPID_STARTBADGEUPDATE","features":[221]},{"name":"DISPID_STARTPERIODICUPDATE","features":[221]},{"name":"DISPID_STARTPERIODICUPDATEBATCH","features":[221]},{"name":"DISPID_STATUSTEXTCHANGE","features":[221]},{"name":"DISPID_STOPBADGEUPDATE","features":[221]},{"name":"DISPID_STOPPERIODICUPDATE","features":[221]},{"name":"DISPID_SUBSCRIPTIONSENABLED","features":[221]},{"name":"DISPID_SUGGESTEDSITESENABLED","features":[221]},{"name":"DISPID_SYNCHRONIZE","features":[221]},{"name":"DISPID_THIRDPARTYURLBLOCKED","features":[221]},{"name":"DISPID_TITLECHANGE","features":[221]},{"name":"DISPID_TITLEICONCHANGE","features":[221]},{"name":"DISPID_TRACKINGPROTECTIONENABLED","features":[221]},{"name":"DISPID_TVFLAGS","features":[221]},{"name":"DISPID_UNSELECTALL","features":[221]},{"name":"DISPID_UPDATEPAGESTATUS","features":[221]},{"name":"DISPID_UPDATETHUMBNAILBUTTON","features":[221]},{"name":"DISPID_VIEWUPDATE","features":[221]},{"name":"DISPID_WEBWORKERFINISHED","features":[221]},{"name":"DISPID_WEBWORKERSTARTED","features":[221]},{"name":"DISPID_WINDOWACTIVATE","features":[221]},{"name":"DISPID_WINDOWCLOSING","features":[221]},{"name":"DISPID_WINDOWMOVE","features":[221]},{"name":"DISPID_WINDOWREGISTERED","features":[221]},{"name":"DISPID_WINDOWRESIZE","features":[221]},{"name":"DISPID_WINDOWREVOKED","features":[221]},{"name":"DISPID_WINDOWSETHEIGHT","features":[221]},{"name":"DISPID_WINDOWSETLEFT","features":[221]},{"name":"DISPID_WINDOWSETRESIZABLE","features":[221]},{"name":"DISPID_WINDOWSETTOP","features":[221]},{"name":"DISPID_WINDOWSETWIDTH","features":[221]},{"name":"DISPID_WINDOWSTATECHANGED","features":[221]},{"name":"DecodeImage","features":[221]},{"name":"DecodeImageEx","features":[221]},{"name":"DitherTo8","features":[12,221]},{"name":"E_SURFACE_DISCARDED","features":[221]},{"name":"E_SURFACE_NODC","features":[221]},{"name":"E_SURFACE_NOSURFACE","features":[221]},{"name":"E_SURFACE_NOTMYDC","features":[221]},{"name":"E_SURFACE_NOTMYPOINTER","features":[221]},{"name":"E_SURFACE_UNKNOWN_FORMAT","features":[221]},{"name":"ExtensionValidationContextDynamic","features":[221]},{"name":"ExtensionValidationContextNone","features":[221]},{"name":"ExtensionValidationContextParsed","features":[221]},{"name":"ExtensionValidationContexts","features":[221]},{"name":"ExtensionValidationResultArrestPageLoad","features":[221]},{"name":"ExtensionValidationResultDoNotInstantiate","features":[221]},{"name":"ExtensionValidationResultNone","features":[221]},{"name":"ExtensionValidationResults","features":[221]},{"name":"FINDFRAME_FLAGS","features":[221]},{"name":"FINDFRAME_INTERNAL","features":[221]},{"name":"FINDFRAME_JUSTTESTEXISTENCE","features":[221]},{"name":"FINDFRAME_NONE","features":[221]},{"name":"FRAMEOPTIONS_BROWSERBAND","features":[221]},{"name":"FRAMEOPTIONS_DESKTOP","features":[221]},{"name":"FRAMEOPTIONS_FLAGS","features":[221]},{"name":"FRAMEOPTIONS_NO3DBORDER","features":[221]},{"name":"FRAMEOPTIONS_NORESIZE","features":[221]},{"name":"FRAMEOPTIONS_SCROLL_AUTO","features":[221]},{"name":"FRAMEOPTIONS_SCROLL_NO","features":[221]},{"name":"FRAMEOPTIONS_SCROLL_YES","features":[221]},{"name":"GetMaxMIMEIDBytes","features":[221]},{"name":"HomePage","features":[221]},{"name":"HomePageSetting","features":[221]},{"name":"IActiveXUIHandlerSite","features":[221]},{"name":"IActiveXUIHandlerSite2","features":[221]},{"name":"IActiveXUIHandlerSite3","features":[221]},{"name":"IAnchorClick","features":[221]},{"name":"IAudioSessionSite","features":[221]},{"name":"ICaretPositionProvider","features":[221]},{"name":"IDeviceRect","features":[221]},{"name":"IDithererImpl","features":[221]},{"name":"IDocObjectService","features":[221]},{"name":"IDownloadBehavior","features":[221]},{"name":"IDownloadManager","features":[221]},{"name":"IEAssociateThreadWithTab","features":[221]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL","features":[221]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL_BUT_PASSWORDS","features":[221]},{"name":"IECMDID_ARG_CLEAR_FORMS_PASSWORDS_ONLY","features":[221]},{"name":"IECMDID_BEFORENAVIGATE_DOEXTERNALBROWSE","features":[221]},{"name":"IECMDID_BEFORENAVIGATE_GETIDLIST","features":[221]},{"name":"IECMDID_BEFORENAVIGATE_GETSHELLBROWSE","features":[221]},{"name":"IECMDID_CLEAR_AUTOCOMPLETE_FOR_FORMS","features":[221]},{"name":"IECMDID_GET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[221]},{"name":"IECMDID_SETID_AUTOCOMPLETE_FOR_FORMS","features":[221]},{"name":"IECMDID_SET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[221]},{"name":"IECancelSaveFile","features":[1,221]},{"name":"IECreateDirectory","features":[1,4,221]},{"name":"IECreateFile","features":[1,4,221]},{"name":"IEDeleteFile","features":[1,221]},{"name":"IEDisassociateThreadWithTab","features":[221]},{"name":"IEFindFirstFile","features":[1,21,221]},{"name":"IEGetFileAttributesEx","features":[1,21,221]},{"name":"IEGetProcessModule_PROC_NAME","features":[221]},{"name":"IEGetProtectedModeCookie","features":[221]},{"name":"IEGetTabWindowExports_PROC_NAME","features":[221]},{"name":"IEGetWriteableFolderPath","features":[221]},{"name":"IEGetWriteableLowHKCU","features":[49,221]},{"name":"IEInPrivateFilteringEnabled","features":[1,221]},{"name":"IEIsInPrivateBrowsing","features":[1,221]},{"name":"IEIsProtectedModeProcess","features":[1,221]},{"name":"IEIsProtectedModeURL","features":[221]},{"name":"IELAUNCHOPTION_FLAGS","features":[221]},{"name":"IELAUNCHOPTION_FORCE_COMPAT","features":[221]},{"name":"IELAUNCHOPTION_FORCE_EDGE","features":[221]},{"name":"IELAUNCHOPTION_LOCK_ENGINE","features":[221]},{"name":"IELAUNCHOPTION_SCRIPTDEBUG","features":[221]},{"name":"IELAUNCHURLINFO","features":[221]},{"name":"IELaunchURL","features":[1,37,221]},{"name":"IEMoveFileEx","features":[1,221]},{"name":"IEPROCESS_MODULE_NAME","features":[221]},{"name":"IERefreshElevationPolicy","features":[221]},{"name":"IERegCreateKeyEx","features":[1,4,49,221]},{"name":"IERegSetValueEx","features":[221]},{"name":"IERegisterWritableRegistryKey","features":[1,221]},{"name":"IERegisterWritableRegistryValue","features":[221]},{"name":"IERemoveDirectory","features":[1,221]},{"name":"IESaveFile","features":[1,221]},{"name":"IESetProtectedModeCookie","features":[221]},{"name":"IEShowOpenFileDialog","features":[1,221]},{"name":"IEShowSaveFileDialog","features":[1,221]},{"name":"IETrackingProtectionEnabled","features":[1,221]},{"name":"IEUnregisterWritableRegistry","features":[221]},{"name":"IEWebDriverManager","features":[221]},{"name":"IE_USE_OE_MAIL_HKEY","features":[221]},{"name":"IE_USE_OE_MAIL_KEY","features":[221]},{"name":"IE_USE_OE_MAIL_VALUE","features":[221]},{"name":"IE_USE_OE_NEWS_HKEY","features":[221]},{"name":"IE_USE_OE_NEWS_KEY","features":[221]},{"name":"IE_USE_OE_NEWS_VALUE","features":[221]},{"name":"IE_USE_OE_PRESENT_HKEY","features":[221]},{"name":"IE_USE_OE_PRESENT_KEY","features":[221]},{"name":"IEnumManagerFrames","features":[221]},{"name":"IEnumOpenServiceActivity","features":[221]},{"name":"IEnumOpenServiceActivityCategory","features":[221]},{"name":"IEnumSTATURL","features":[221]},{"name":"IExtensionValidation","features":[221]},{"name":"IHTMLPersistData","features":[221]},{"name":"IHTMLPersistDataOM","features":[221]},{"name":"IHTMLUserDataOM","features":[221]},{"name":"IHeaderFooter","features":[221]},{"name":"IHeaderFooter2","features":[221]},{"name":"IHomePage","features":[221]},{"name":"IHomePageSetting","features":[221]},{"name":"IIEWebDriverManager","features":[221]},{"name":"IIEWebDriverSite","features":[221]},{"name":"IImageDecodeEventSink","features":[221]},{"name":"IImageDecodeEventSink2","features":[221]},{"name":"IImageDecodeFilter","features":[221]},{"name":"IIntelliForms","features":[221]},{"name":"IInternetExplorerManager","features":[221]},{"name":"IInternetExplorerManager2","features":[221]},{"name":"ILayoutRect","features":[221]},{"name":"IMGDECODE_EVENT_BEGINBITS","features":[221]},{"name":"IMGDECODE_EVENT_BITSCOMPLETE","features":[221]},{"name":"IMGDECODE_EVENT_PALETTE","features":[221]},{"name":"IMGDECODE_EVENT_PROGRESS","features":[221]},{"name":"IMGDECODE_EVENT_USEDDRAW","features":[221]},{"name":"IMGDECODE_HINT_BOTTOMUP","features":[221]},{"name":"IMGDECODE_HINT_FULLWIDTH","features":[221]},{"name":"IMGDECODE_HINT_TOPDOWN","features":[221]},{"name":"IMapMIMEToCLSID","features":[221]},{"name":"IMediaActivityNotifySite","features":[221]},{"name":"INTERNETEXPLORERCONFIGURATION","features":[221]},{"name":"INTERNETEXPLORERCONFIGURATION_HOST","features":[221]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER","features":[221]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER_EDGE","features":[221]},{"name":"IOpenService","features":[221]},{"name":"IOpenServiceActivity","features":[221]},{"name":"IOpenServiceActivityCategory","features":[221]},{"name":"IOpenServiceActivityInput","features":[221]},{"name":"IOpenServiceActivityManager","features":[221]},{"name":"IOpenServiceActivityOutputContext","features":[221]},{"name":"IOpenServiceManager","features":[221]},{"name":"IPeerFactory","features":[221]},{"name":"IPersistHistory","features":[221]},{"name":"IPrintTaskRequestFactory","features":[221]},{"name":"IPrintTaskRequestHandler","features":[221]},{"name":"IScrollableContextMenu","features":[221]},{"name":"IScrollableContextMenu2","features":[221]},{"name":"ISniffStream","features":[221]},{"name":"ISurfacePresenterFlip","features":[221]},{"name":"ISurfacePresenterFlip2","features":[221]},{"name":"ISurfacePresenterFlipBuffer","features":[221]},{"name":"ITargetContainer","features":[221]},{"name":"ITargetEmbedding","features":[221]},{"name":"ITargetFrame","features":[221]},{"name":"ITargetFrame2","features":[221]},{"name":"ITargetFramePriv","features":[221]},{"name":"ITargetFramePriv2","features":[221]},{"name":"ITargetNotify","features":[221]},{"name":"ITargetNotify2","features":[221]},{"name":"ITimer","features":[221]},{"name":"ITimerEx","features":[221]},{"name":"ITimerService","features":[221]},{"name":"ITimerSink","features":[221]},{"name":"ITridentTouchInput","features":[221]},{"name":"ITridentTouchInputSite","features":[221]},{"name":"IUrlHistoryNotify","features":[221]},{"name":"IUrlHistoryStg","features":[221]},{"name":"IUrlHistoryStg2","features":[221]},{"name":"IViewObjectPresentFlip","features":[221]},{"name":"IViewObjectPresentFlip2","features":[221]},{"name":"IViewObjectPresentFlipSite","features":[221]},{"name":"IViewObjectPresentFlipSite2","features":[221]},{"name":"IWebBrowserEventsService","features":[221]},{"name":"IWebBrowserEventsUrlService","features":[221]},{"name":"IdentifyMIMEType","features":[221]},{"name":"IntelliForms","features":[221]},{"name":"InternetExplorerManager","features":[221]},{"name":"Iwfolders","features":[221]},{"name":"LINKSBAND","features":[221]},{"name":"MAPMIME_CLSID","features":[221]},{"name":"MAPMIME_DEFAULT","features":[221]},{"name":"MAPMIME_DEFAULT_ALWAYS","features":[221]},{"name":"MAPMIME_DISABLE","features":[221]},{"name":"MAX_SEARCH_FORMAT_STRING","features":[221]},{"name":"MEDIA_ACTIVITY_NOTIFY_TYPE","features":[221]},{"name":"MediaCasting","features":[221]},{"name":"MediaPlayback","features":[221]},{"name":"MediaRecording","features":[221]},{"name":"NAVIGATEDATA","features":[221]},{"name":"NAVIGATEFRAME_FLAGS","features":[221]},{"name":"NAVIGATEFRAME_FL_AUTH_FAIL_CACHE_OK","features":[221]},{"name":"NAVIGATEFRAME_FL_NO_DOC_CACHE","features":[221]},{"name":"NAVIGATEFRAME_FL_NO_IMAGE_CACHE","features":[221]},{"name":"NAVIGATEFRAME_FL_POST","features":[221]},{"name":"NAVIGATEFRAME_FL_REALLY_SENDING_FROM_FORM","features":[221]},{"name":"NAVIGATEFRAME_FL_RECORD","features":[221]},{"name":"NAVIGATEFRAME_FL_SENDING_FROM_FORM","features":[221]},{"name":"OS_E_CANCELLED","features":[221]},{"name":"OS_E_GPDISABLED","features":[221]},{"name":"OS_E_NOTFOUND","features":[221]},{"name":"OS_E_NOTSUPPORTED","features":[221]},{"name":"OpenServiceActivityContentType","features":[221]},{"name":"OpenServiceActivityManager","features":[221]},{"name":"OpenServiceErrors","features":[221]},{"name":"OpenServiceManager","features":[221]},{"name":"PeerFactory","features":[221]},{"name":"REGSTRA_VAL_STARTPAGE","features":[221]},{"name":"REGSTR_PATH_CURRENT","features":[221]},{"name":"REGSTR_PATH_DEFAULT","features":[221]},{"name":"REGSTR_PATH_INETCPL_RESTRICTIONS","features":[221]},{"name":"REGSTR_PATH_MIME_DATABASE","features":[221]},{"name":"REGSTR_PATH_REMOTEACCESS","features":[221]},{"name":"REGSTR_PATH_REMOTEACESS","features":[221]},{"name":"REGSTR_SHIFTQUICKSUFFIX","features":[221]},{"name":"REGSTR_VAL_ACCEPT_LANGUAGE","features":[221]},{"name":"REGSTR_VAL_ACCESSMEDIUM","features":[221]},{"name":"REGSTR_VAL_ACCESSTYPE","features":[221]},{"name":"REGSTR_VAL_ALIASTO","features":[221]},{"name":"REGSTR_VAL_ANCHORCOLOR","features":[221]},{"name":"REGSTR_VAL_ANCHORCOLORHOVER","features":[221]},{"name":"REGSTR_VAL_ANCHORCOLORVISITED","features":[221]},{"name":"REGSTR_VAL_ANCHORUNDERLINE","features":[221]},{"name":"REGSTR_VAL_AUTODETECT","features":[221]},{"name":"REGSTR_VAL_AUTODIALDLLNAME","features":[221]},{"name":"REGSTR_VAL_AUTODIALFCNNAME","features":[221]},{"name":"REGSTR_VAL_AUTODIAL_MONITORCLASSNAME","features":[221]},{"name":"REGSTR_VAL_AUTODIAL_TRYONLYONCE","features":[221]},{"name":"REGSTR_VAL_AUTONAVIGATE","features":[221]},{"name":"REGSTR_VAL_AUTOSEARCH","features":[221]},{"name":"REGSTR_VAL_BACKBITMAP","features":[221]},{"name":"REGSTR_VAL_BACKGROUNDCOLOR","features":[221]},{"name":"REGSTR_VAL_BODYCHARSET","features":[221]},{"name":"REGSTR_VAL_BYPASSAUTOCONFIG","features":[221]},{"name":"REGSTR_VAL_CACHEPREFIX","features":[221]},{"name":"REGSTR_VAL_CHECKASSOC","features":[221]},{"name":"REGSTR_VAL_CODEDOWNLOAD","features":[221]},{"name":"REGSTR_VAL_CODEDOWNLOAD_DEF","features":[221]},{"name":"REGSTR_VAL_CODEPAGE","features":[221]},{"name":"REGSTR_VAL_COVEREXCLUDE","features":[221]},{"name":"REGSTR_VAL_DAYSTOKEEP","features":[221]},{"name":"REGSTR_VAL_DEFAULT_CODEPAGE","features":[221]},{"name":"REGSTR_VAL_DEFAULT_SCRIPT","features":[221]},{"name":"REGSTR_VAL_DEF_ENCODING","features":[221]},{"name":"REGSTR_VAL_DEF_INETENCODING","features":[221]},{"name":"REGSTR_VAL_DESCRIPTION","features":[221]},{"name":"REGSTR_VAL_DIRECTORY","features":[221]},{"name":"REGSTR_VAL_DISCONNECTIDLETIME","features":[221]},{"name":"REGSTR_VAL_ENABLEAUTODIAL","features":[221]},{"name":"REGSTR_VAL_ENABLEAUTODIALDISCONNECT","features":[221]},{"name":"REGSTR_VAL_ENABLEAUTODISCONNECT","features":[221]},{"name":"REGSTR_VAL_ENABLEEXITDISCONNECT","features":[221]},{"name":"REGSTR_VAL_ENABLESECURITYCHECK","features":[221]},{"name":"REGSTR_VAL_ENABLEUNATTENDED","features":[221]},{"name":"REGSTR_VAL_ENCODENAME","features":[221]},{"name":"REGSTR_VAL_FAMILY","features":[221]},{"name":"REGSTR_VAL_FIXEDWIDTHFONT","features":[221]},{"name":"REGSTR_VAL_FIXED_FONT","features":[221]},{"name":"REGSTR_VAL_FONT_SCRIPT","features":[221]},{"name":"REGSTR_VAL_FONT_SCRIPTS","features":[221]},{"name":"REGSTR_VAL_FONT_SCRIPT_NAME","features":[221]},{"name":"REGSTR_VAL_FONT_SIZE","features":[221]},{"name":"REGSTR_VAL_FONT_SIZE_DEF","features":[221]},{"name":"REGSTR_VAL_HEADERCHARSET","features":[221]},{"name":"REGSTR_VAL_HTTP_ERRORS","features":[221]},{"name":"REGSTR_VAL_IE_CUSTOMCOLORS","features":[221]},{"name":"REGSTR_VAL_INETCPL_ADVANCEDTAB","features":[221]},{"name":"REGSTR_VAL_INETCPL_CONNECTIONSTAB","features":[221]},{"name":"REGSTR_VAL_INETCPL_CONTENTTAB","features":[221]},{"name":"REGSTR_VAL_INETCPL_GENERALTAB","features":[221]},{"name":"REGSTR_VAL_INETCPL_IEAK","features":[221]},{"name":"REGSTR_VAL_INETCPL_PRIVACYTAB","features":[221]},{"name":"REGSTR_VAL_INETCPL_PROGRAMSTAB","features":[221]},{"name":"REGSTR_VAL_INETCPL_SECURITYTAB","features":[221]},{"name":"REGSTR_VAL_INETENCODING","features":[221]},{"name":"REGSTR_VAL_INTERNETENTRY","features":[221]},{"name":"REGSTR_VAL_INTERNETENTRYBKUP","features":[221]},{"name":"REGSTR_VAL_INTERNETPROFILE","features":[221]},{"name":"REGSTR_VAL_JAVAJIT","features":[221]},{"name":"REGSTR_VAL_JAVAJIT_DEF","features":[221]},{"name":"REGSTR_VAL_JAVALOGGING","features":[221]},{"name":"REGSTR_VAL_JAVALOGGING_DEF","features":[221]},{"name":"REGSTR_VAL_LEVEL","features":[221]},{"name":"REGSTR_VAL_LOADIMAGES","features":[221]},{"name":"REGSTR_VAL_LOCALPAGE","features":[221]},{"name":"REGSTR_VAL_MOSDISCONNECT","features":[221]},{"name":"REGSTR_VAL_NEWDIRECTORY","features":[221]},{"name":"REGSTR_VAL_NONETAUTODIAL","features":[221]},{"name":"REGSTR_VAL_PLAYSOUNDS","features":[221]},{"name":"REGSTR_VAL_PLAYVIDEOS","features":[221]},{"name":"REGSTR_VAL_PRIVCONVERTER","features":[221]},{"name":"REGSTR_VAL_PROPORTIONALFONT","features":[221]},{"name":"REGSTR_VAL_PROP_FONT","features":[221]},{"name":"REGSTR_VAL_PROXYENABLE","features":[221]},{"name":"REGSTR_VAL_PROXYOVERRIDE","features":[221]},{"name":"REGSTR_VAL_PROXYSERVER","features":[221]},{"name":"REGSTR_VAL_REDIALATTEMPTS","features":[221]},{"name":"REGSTR_VAL_REDIALINTERVAL","features":[221]},{"name":"REGSTR_VAL_RNAINSTALLED","features":[221]},{"name":"REGSTR_VAL_SAFETYWARNINGLEVEL","features":[221]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL","features":[221]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL_DEF","features":[221]},{"name":"REGSTR_VAL_SCRIPT_FIXED_FONT","features":[221]},{"name":"REGSTR_VAL_SCRIPT_PROP_FONT","features":[221]},{"name":"REGSTR_VAL_SEARCHPAGE","features":[221]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS","features":[221]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYACTIVEX","features":[221]},{"name":"REGSTR_VAL_SECURITYACTIVEX_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES","features":[221]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES","features":[221]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYJAVA","features":[221]},{"name":"REGSTR_VAL_SECURITYJAVA_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONSEND","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONSEND_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW_DEF","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING","features":[221]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING_DEF","features":[221]},{"name":"REGSTR_VAL_SHOWADDRESSBAR","features":[221]},{"name":"REGSTR_VAL_SHOWFOCUS","features":[221]},{"name":"REGSTR_VAL_SHOWFOCUS_DEF","features":[221]},{"name":"REGSTR_VAL_SHOWFULLURLS","features":[221]},{"name":"REGSTR_VAL_SHOWTOOLBAR","features":[221]},{"name":"REGSTR_VAL_SMOOTHSCROLL","features":[221]},{"name":"REGSTR_VAL_SMOOTHSCROLL_DEF","features":[221]},{"name":"REGSTR_VAL_STARTPAGE","features":[221]},{"name":"REGSTR_VAL_TEXTCOLOR","features":[221]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_HIGH","features":[221]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_LOW","features":[221]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_MED","features":[221]},{"name":"REGSTR_VAL_USEAUTOAPPEND","features":[221]},{"name":"REGSTR_VAL_USEAUTOCOMPLETE","features":[221]},{"name":"REGSTR_VAL_USEAUTOSUGGEST","features":[221]},{"name":"REGSTR_VAL_USEDLGCOLORS","features":[221]},{"name":"REGSTR_VAL_USEHOVERCOLOR","features":[221]},{"name":"REGSTR_VAL_USEIBAR","features":[221]},{"name":"REGSTR_VAL_USEICM","features":[221]},{"name":"REGSTR_VAL_USEICM_DEF","features":[221]},{"name":"REGSTR_VAL_USERAGENT","features":[221]},{"name":"REGSTR_VAL_USESTYLESHEETS","features":[221]},{"name":"REGSTR_VAL_USESTYLESHEETS_DEF","features":[221]},{"name":"REGSTR_VAL_VISIBLEBANDS","features":[221]},{"name":"REGSTR_VAL_VISIBLEBANDS_DEF","features":[221]},{"name":"REGSTR_VAL_WEBCHARSET","features":[221]},{"name":"RatingAccessDeniedDialog","features":[1,221]},{"name":"RatingAccessDeniedDialog2","features":[1,221]},{"name":"RatingAccessDeniedDialog2W","features":[1,221]},{"name":"RatingAccessDeniedDialogW","features":[1,221]},{"name":"RatingAddToApprovedSites","features":[1,221]},{"name":"RatingCheckUserAccess","features":[221]},{"name":"RatingCheckUserAccessW","features":[221]},{"name":"RatingClickedOnPRFInternal","features":[1,221]},{"name":"RatingClickedOnRATInternal","features":[1,221]},{"name":"RatingEnable","features":[1,221]},{"name":"RatingEnableW","features":[1,221]},{"name":"RatingEnabledQuery","features":[221]},{"name":"RatingFreeDetails","features":[221]},{"name":"RatingInit","features":[221]},{"name":"RatingObtainCancel","features":[1,221]},{"name":"RatingObtainQuery","features":[1,221]},{"name":"RatingObtainQueryW","features":[1,221]},{"name":"RatingSetupUI","features":[1,221]},{"name":"RatingSetupUIW","features":[1,221]},{"name":"SCMP_BOTTOM","features":[221]},{"name":"SCMP_FULL","features":[221]},{"name":"SCMP_LEFT","features":[221]},{"name":"SCMP_RIGHT","features":[221]},{"name":"SCMP_TOP","features":[221]},{"name":"SCROLLABLECONTEXTMENU_PLACEMENT","features":[221]},{"name":"STATURL","features":[1,221]},{"name":"STATURLFLAG_ISCACHED","features":[221]},{"name":"STATURLFLAG_ISTOPLEVEL","features":[221]},{"name":"STATURL_QUERYFLAG_ISCACHED","features":[221]},{"name":"STATURL_QUERYFLAG_NOTITLE","features":[221]},{"name":"STATURL_QUERYFLAG_NOURL","features":[221]},{"name":"STATURL_QUERYFLAG_TOPLEVEL","features":[221]},{"name":"SURFACE_LOCK_ALLOW_DISCARD","features":[221]},{"name":"SURFACE_LOCK_EXCLUSIVE","features":[221]},{"name":"SURFACE_LOCK_WAIT","features":[221]},{"name":"SZBACKBITMAP","features":[221]},{"name":"SZJAVAVMPATH","features":[221]},{"name":"SZNOTEXT","features":[221]},{"name":"SZTOOLBAR","features":[221]},{"name":"SZTRUSTWARNLEVEL","features":[221]},{"name":"SZVISIBLE","features":[221]},{"name":"SZ_IE_DEFAULT_HTML_EDITOR","features":[221]},{"name":"SZ_IE_IBAR","features":[221]},{"name":"SZ_IE_IBAR_BANDS","features":[221]},{"name":"SZ_IE_MAIN","features":[221]},{"name":"SZ_IE_SEARCHSTRINGS","features":[221]},{"name":"SZ_IE_SECURITY","features":[221]},{"name":"SZ_IE_SETTINGS","features":[221]},{"name":"SZ_IE_THRESHOLDS","features":[221]},{"name":"S_SURFACE_DISCARDED","features":[221]},{"name":"SniffStream","features":[221]},{"name":"TARGET_NOTIFY_OBJECT_NAME","features":[221]},{"name":"TF_NAVIGATE","features":[221]},{"name":"TIMERMODE_NORMAL","features":[221]},{"name":"TIMERMODE_VISIBILITYAWARE","features":[221]},{"name":"TOOLSBAND","features":[221]},{"name":"TSZCALENDARPROTOCOL","features":[221]},{"name":"TSZCALLTOPROTOCOL","features":[221]},{"name":"TSZINTERNETCLIENTSPATH","features":[221]},{"name":"TSZLDAPPROTOCOL","features":[221]},{"name":"TSZMAILTOPROTOCOL","features":[221]},{"name":"TSZMICROSOFTPATH","features":[221]},{"name":"TSZNEWSPROTOCOL","features":[221]},{"name":"TSZPROTOCOLSPATH","features":[221]},{"name":"TSZSCHANNELPATH","features":[221]},{"name":"TSZVSOURCEPROTOCOL","features":[221]},{"name":"msodsvFailed","features":[221]},{"name":"msodsvLowSecurityLevel","features":[221]},{"name":"msodsvNoMacros","features":[221]},{"name":"msodsvPassedTrusted","features":[221]},{"name":"msodsvPassedTrustedCert","features":[221]},{"name":"msodsvUnsigned","features":[221]},{"name":"msoedmDisable","features":[221]},{"name":"msoedmDontOpen","features":[221]},{"name":"msoedmEnable","features":[221]},{"name":"msoslHigh","features":[221]},{"name":"msoslMedium","features":[221]},{"name":"msoslNone","features":[221]},{"name":"msoslUndefined","features":[221]},{"name":"wfolders","features":[221]}]}} \ No newline at end of file +{"namespace_map":["Windows.AI.MachineLearning","Windows.AI.MachineLearning.Preview","Windows.ApplicationModel","Windows.ApplicationModel.Activation","Windows.ApplicationModel.AppExtensions","Windows.ApplicationModel.AppService","Windows.ApplicationModel.Appointments","Windows.ApplicationModel.Appointments.AppointmentsProvider","Windows.ApplicationModel.Appointments.DataProvider","Windows.ApplicationModel.Background","Windows.ApplicationModel.Calls","Windows.ApplicationModel.Calls.Background","Windows.ApplicationModel.Calls.Provider","Windows.ApplicationModel.Chat","Windows.ApplicationModel.CommunicationBlocking","Windows.ApplicationModel.Contacts","Windows.ApplicationModel.Contacts.DataProvider","Windows.ApplicationModel.Contacts.Provider","Windows.ApplicationModel.ConversationalAgent","Windows.ApplicationModel.Core","Windows.ApplicationModel.DataTransfer","Windows.ApplicationModel.DataTransfer.DragDrop","Windows.ApplicationModel.DataTransfer.DragDrop.Core","Windows.ApplicationModel.DataTransfer.ShareTarget","Windows.ApplicationModel.Email","Windows.ApplicationModel.Email.DataProvider","Windows.ApplicationModel.ExtendedExecution","Windows.ApplicationModel.ExtendedExecution.Foreground","Windows.ApplicationModel.Holographic","Windows.ApplicationModel.LockScreen","Windows.ApplicationModel.Payments","Windows.ApplicationModel.Payments.Provider","Windows.ApplicationModel.Preview.Holographic","Windows.ApplicationModel.Preview.InkWorkspace","Windows.ApplicationModel.Preview.Notes","Windows.ApplicationModel.Resources","Windows.ApplicationModel.Resources.Core","Windows.ApplicationModel.Resources.Management","Windows.ApplicationModel.Search","Windows.ApplicationModel.Search.Core","Windows.ApplicationModel.SocialInfo","Windows.ApplicationModel.SocialInfo.Provider","Windows.ApplicationModel.Store","Windows.ApplicationModel.Store.LicenseManagement","Windows.ApplicationModel.Store.Preview","Windows.ApplicationModel.Store.Preview.InstallControl","Windows.ApplicationModel.UserActivities","Windows.ApplicationModel.UserActivities.Core","Windows.ApplicationModel.UserDataAccounts","Windows.ApplicationModel.UserDataAccounts.Provider","Windows.ApplicationModel.UserDataAccounts.SystemAccess","Windows.ApplicationModel.UserDataTasks","Windows.ApplicationModel.UserDataTasks.DataProvider","Windows.ApplicationModel.VoiceCommands","Windows.ApplicationModel.Wallet","Windows.ApplicationModel.Wallet.System","Windows.Data.Html","Windows.Data.Json","Windows.Data.Pdf","Windows.Data.Text","Windows.Data.Xml.Dom","Windows.Data.Xml.Xsl","Windows.Devices","Windows.Devices.Adc","Windows.Devices.Adc.Provider","Windows.Devices.AllJoyn","Windows.Devices.Background","Windows.Devices.Bluetooth","Windows.Devices.Bluetooth.Advertisement","Windows.Devices.Bluetooth.Background","Windows.Devices.Bluetooth.GenericAttributeProfile","Windows.Devices.Bluetooth.Rfcomm","Windows.Devices.Custom","Windows.Devices.Display","Windows.Devices.Display.Core","Windows.Devices.Enumeration","Windows.Devices.Enumeration.Pnp","Windows.Devices.Geolocation","Windows.Devices.Geolocation.Geofencing","Windows.Devices.Geolocation.Provider","Windows.Devices.Gpio","Windows.Devices.Gpio.Provider","Windows.Devices.Haptics","Windows.Devices.HumanInterfaceDevice","Windows.Devices.I2c","Windows.Devices.I2c.Provider","Windows.Devices.Input","Windows.Devices.Input.Preview","Windows.Devices.Lights","Windows.Devices.Lights.Effects","Windows.Devices.Midi","Windows.Devices.Perception","Windows.Devices.Perception.Provider","Windows.Devices.PointOfService","Windows.Devices.PointOfService.Provider","Windows.Devices.Portable","Windows.Devices.Power","Windows.Devices.Printers","Windows.Devices.Printers.Extensions","Windows.Devices.Pwm","Windows.Devices.Pwm.Provider","Windows.Devices.Radios","Windows.Devices.Scanners","Windows.Devices.Sensors","Windows.Devices.Sensors.Custom","Windows.Devices.SerialCommunication","Windows.Devices.SmartCards","Windows.Devices.Sms","Windows.Devices.Spi","Windows.Devices.Spi.Provider","Windows.Devices.Usb","Windows.Devices.WiFi","Windows.Devices.WiFiDirect","Windows.Devices.WiFiDirect.Services","Windows.Embedded.DeviceLockdown","Windows.Foundation","Windows.Foundation.Collections","Windows.Foundation.Diagnostics","Windows.Foundation.Metadata","Windows.Foundation.Numerics","Windows.Gaming.Input","Windows.Gaming.Input.Custom","Windows.Gaming.Input.ForceFeedback","Windows.Gaming.Input.Preview","Windows.Gaming.Preview","Windows.Gaming.Preview.GamesEnumeration","Windows.Gaming.UI","Windows.Gaming.XboxLive","Windows.Gaming.XboxLive.Storage","Windows.Globalization","Windows.Globalization.Collation","Windows.Globalization.DateTimeFormatting","Windows.Globalization.Fonts","Windows.Globalization.NumberFormatting","Windows.Globalization.PhoneNumberFormatting","Windows.Graphics","Windows.Graphics.Capture","Windows.Graphics.DirectX","Windows.Graphics.DirectX.Direct3D11","Windows.Graphics.Display","Windows.Graphics.Display.Core","Windows.Graphics.Effects","Windows.Graphics.Holographic","Windows.Graphics.Imaging","Windows.Graphics.Printing","Windows.Graphics.Printing.OptionDetails","Windows.Graphics.Printing.PrintSupport","Windows.Graphics.Printing.PrintTicket","Windows.Graphics.Printing.Workflow","Windows.Graphics.Printing3D","Windows.Management","Windows.Management.Core","Windows.Management.Deployment","Windows.Management.Deployment.Preview","Windows.Management.Policies","Windows.Management.Update","Windows.Management.Workplace","Windows.Media","Windows.Media.AppBroadcasting","Windows.Media.AppRecording","Windows.Media.Audio","Windows.Media.Capture","Windows.Media.Capture.Core","Windows.Media.Capture.Frames","Windows.Media.Casting","Windows.Media.ClosedCaptioning","Windows.Media.ContentRestrictions","Windows.Media.Control","Windows.Media.Core","Windows.Media.Core.Preview","Windows.Media.Devices","Windows.Media.Devices.Core","Windows.Media.DialProtocol","Windows.Media.Editing","Windows.Media.Effects","Windows.Media.FaceAnalysis","Windows.Media.Import","Windows.Media.MediaProperties","Windows.Media.Miracast","Windows.Media.Ocr","Windows.Media.PlayTo","Windows.Media.Playback","Windows.Media.Playlists","Windows.Media.Protection","Windows.Media.Protection.PlayReady","Windows.Media.Render","Windows.Media.SpeechRecognition","Windows.Media.SpeechSynthesis","Windows.Media.Streaming.Adaptive","Windows.Media.Transcoding","Windows.Networking","Windows.Networking.BackgroundTransfer","Windows.Networking.Connectivity","Windows.Networking.NetworkOperators","Windows.Networking.Proximity","Windows.Networking.PushNotifications","Windows.Networking.ServiceDiscovery.Dnssd","Windows.Networking.Sockets","Windows.Networking.Vpn","Windows.Networking.XboxLive","Windows.Perception","Windows.Perception.Automation.Core","Windows.Perception.People","Windows.Perception.Spatial","Windows.Perception.Spatial.Preview","Windows.Perception.Spatial.Surfaces","Windows.Phone","Windows.Phone.ApplicationModel","Windows.Phone.Devices.Notification","Windows.Phone.Devices.Power","Windows.Phone.Management.Deployment","Windows.Phone.Media.Devices","Windows.Phone.Notification.Management","Windows.Phone.PersonalInformation","Windows.Phone.PersonalInformation.Provisioning","Windows.Phone.Speech.Recognition","Windows.Phone.StartScreen","Windows.Phone.System","Windows.Phone.System.Power","Windows.Phone.System.Profile","Windows.Phone.System.UserProfile.GameServices.Core","Windows.Phone.UI.Input","Windows.Security.Authentication.Identity","Windows.Security.Authentication.Identity.Core","Windows.Security.Authentication.Identity.Provider","Windows.Security.Authentication.OnlineId","Windows.Security.Authentication.Web","Windows.Security.Authentication.Web.Core","Windows.Security.Authentication.Web.Provider","Windows.Security.Authorization.AppCapabilityAccess","Windows.Security.Credentials","Windows.Security.Credentials.UI","Windows.Security.Cryptography","Windows.Security.Cryptography.Certificates","Windows.Security.Cryptography.Core","Windows.Security.Cryptography.DataProtection","Windows.Security.DataProtection","Windows.Security.EnterpriseData","Windows.Security.ExchangeActiveSyncProvisioning","Windows.Security.Isolation","Windows.Services.Cortana","Windows.Services.Maps","Windows.Services.Maps.Guidance","Windows.Services.Maps.LocalSearch","Windows.Services.Maps.OfflineMaps","Windows.Services.Store","Windows.Services.TargetedContent","Windows.Storage","Windows.Storage.AccessCache","Windows.Storage.BulkAccess","Windows.Storage.Compression","Windows.Storage.FileProperties","Windows.Storage.Pickers","Windows.Storage.Pickers.Provider","Windows.Storage.Provider","Windows.Storage.Search","Windows.Storage.Streams","Windows.System","Windows.System.Diagnostics","Windows.System.Diagnostics.DevicePortal","Windows.System.Diagnostics.Telemetry","Windows.System.Diagnostics.TraceReporting","Windows.System.Display","Windows.System.Implementation.FileExplorer","Windows.System.Inventory","Windows.System.Power","Windows.System.Power.Diagnostics","Windows.System.Preview","Windows.System.Profile","Windows.System.Profile.SystemManufacturers","Windows.System.RemoteDesktop","Windows.System.RemoteDesktop.Input","Windows.System.RemoteDesktop.Provider","Windows.System.RemoteSystems","Windows.System.Threading","Windows.System.Threading.Core","Windows.System.Update","Windows.System.UserProfile","Windows.UI","Windows.UI.Accessibility","Windows.UI.ApplicationSettings","Windows.UI.Composition","Windows.UI.Composition.Core","Windows.UI.Composition.Desktop","Windows.UI.Composition.Diagnostics","Windows.UI.Composition.Effects","Windows.UI.Composition.Interactions","Windows.UI.Composition.Scenes","Windows.UI.Core","Windows.UI.Core.AnimationMetrics","Windows.UI.Core.Preview","Windows.UI.Input","Windows.UI.Input.Core","Windows.UI.Input.Inking","Windows.UI.Input.Inking.Analysis","Windows.UI.Input.Inking.Core","Windows.UI.Input.Inking.Preview","Windows.UI.Input.Preview","Windows.UI.Input.Preview.Injection","Windows.UI.Input.Spatial","Windows.UI.Notifications","Windows.UI.Notifications.Management","Windows.UI.Notifications.Preview","Windows.UI.Popups","Windows.UI.Shell","Windows.UI.StartScreen","Windows.UI.Text","Windows.UI.Text.Core","Windows.UI.UIAutomation","Windows.UI.UIAutomation.Core","Windows.UI.ViewManagement","Windows.UI.ViewManagement.Core","Windows.UI.WebUI","Windows.UI.WebUI.Core","Windows.UI.WindowManagement","Windows.UI.WindowManagement.Preview","Windows.UI.Xaml","Windows.UI.Xaml.Automation","Windows.UI.Xaml.Automation.Peers","Windows.UI.Xaml.Automation.Provider","Windows.UI.Xaml.Automation.Text","Windows.UI.Xaml.Controls","Windows.UI.Xaml.Controls.Maps","Windows.UI.Xaml.Controls.Primitives","Windows.UI.Xaml.Core.Direct","Windows.UI.Xaml.Data","Windows.UI.Xaml.Documents","Windows.UI.Xaml.Hosting","Windows.UI.Xaml.Input","Windows.UI.Xaml.Interop","Windows.UI.Xaml.Markup","Windows.UI.Xaml.Media","Windows.UI.Xaml.Media.Animation","Windows.UI.Xaml.Media.Imaging","Windows.UI.Xaml.Media.Media3D","Windows.UI.Xaml.Navigation","Windows.UI.Xaml.Printing","Windows.UI.Xaml.Resources","Windows.UI.Xaml.Shapes","Windows.Wdk.Devices.Bluetooth","Windows.Wdk.Devices.HumanInterfaceDevice","Windows.Wdk.Foundation","Windows.Wdk.Graphics.Direct3D","Windows.Wdk.NetworkManagement.Ndis","Windows.Wdk.NetworkManagement.WindowsFilteringPlatform","Windows.Wdk.Storage.FileSystem","Windows.Wdk.Storage.FileSystem.Minifilters","Windows.Wdk.System.IO","Windows.Wdk.System.Memory","Windows.Wdk.System.OfflineRegistry","Windows.Wdk.System.Registry","Windows.Wdk.System.SystemInformation","Windows.Wdk.System.SystemServices","Windows.Wdk.System.Threading","Windows.Web","Windows.Web.AtomPub","Windows.Web.Http","Windows.Web.Http.Diagnostics","Windows.Web.Http.Filters","Windows.Web.Http.Headers","Windows.Web.Syndication","Windows.Web.UI","Windows.Web.UI.Interop","Windows.Win32.AI.MachineLearning.DirectML","Windows.Win32.AI.MachineLearning.WinML","Windows.Win32.Data.HtmlHelp","Windows.Win32.Data.RightsManagement","Windows.Win32.Data.Xml.MsXml","Windows.Win32.Data.Xml.XmlLite","Windows.Win32.Devices.AllJoyn","Windows.Win32.Devices.BiometricFramework","Windows.Win32.Devices.Bluetooth","Windows.Win32.Devices.Communication","Windows.Win32.Devices.DeviceAccess","Windows.Win32.Devices.DeviceAndDriverInstallation","Windows.Win32.Devices.DeviceQuery","Windows.Win32.Devices.Display","Windows.Win32.Devices.Enumeration.Pnp","Windows.Win32.Devices.Fax","Windows.Win32.Devices.FunctionDiscovery","Windows.Win32.Devices.Geolocation","Windows.Win32.Devices.HumanInterfaceDevice","Windows.Win32.Devices.ImageAcquisition","Windows.Win32.Devices.PortableDevices","Windows.Win32.Devices.Properties","Windows.Win32.Devices.Pwm","Windows.Win32.Devices.Sensors","Windows.Win32.Devices.SerialCommunication","Windows.Win32.Devices.Tapi","Windows.Win32.Devices.Usb","Windows.Win32.Devices.WebServicesOnDevices","Windows.Win32.Foundation","Windows.Win32.Foundation.Metadata","Windows.Win32.Gaming","Windows.Win32.Globalization","Windows.Win32.Graphics.CompositionSwapchain","Windows.Win32.Graphics.DXCore","Windows.Win32.Graphics.Direct2D","Windows.Win32.Graphics.Direct2D.Common","Windows.Win32.Graphics.Direct3D","Windows.Win32.Graphics.Direct3D.Dxc","Windows.Win32.Graphics.Direct3D.Fxc","Windows.Win32.Graphics.Direct3D10","Windows.Win32.Graphics.Direct3D11","Windows.Win32.Graphics.Direct3D11on12","Windows.Win32.Graphics.Direct3D12","Windows.Win32.Graphics.Direct3D9","Windows.Win32.Graphics.Direct3D9on12","Windows.Win32.Graphics.DirectComposition","Windows.Win32.Graphics.DirectDraw","Windows.Win32.Graphics.DirectManipulation","Windows.Win32.Graphics.DirectWrite","Windows.Win32.Graphics.Dwm","Windows.Win32.Graphics.Dxgi","Windows.Win32.Graphics.Dxgi.Common","Windows.Win32.Graphics.Gdi","Windows.Win32.Graphics.GdiPlus","Windows.Win32.Graphics.Hlsl","Windows.Win32.Graphics.Imaging","Windows.Win32.Graphics.Imaging.D2D","Windows.Win32.Graphics.OpenGL","Windows.Win32.Graphics.Printing","Windows.Win32.Graphics.Printing.PrintTicket","Windows.Win32.Management.MobileDeviceManagementRegistration","Windows.Win32.Media","Windows.Win32.Media.Audio","Windows.Win32.Media.Audio.Apo","Windows.Win32.Media.Audio.DirectMusic","Windows.Win32.Media.Audio.DirectSound","Windows.Win32.Media.Audio.Endpoints","Windows.Win32.Media.Audio.XAudio2","Windows.Win32.Media.DeviceManager","Windows.Win32.Media.DirectShow","Windows.Win32.Media.DirectShow.Tv","Windows.Win32.Media.DirectShow.Xml","Windows.Win32.Media.DxMediaObjects","Windows.Win32.Media.KernelStreaming","Windows.Win32.Media.LibrarySharingServices","Windows.Win32.Media.MediaFoundation","Windows.Win32.Media.MediaPlayer","Windows.Win32.Media.Multimedia","Windows.Win32.Media.PictureAcquisition","Windows.Win32.Media.Speech","Windows.Win32.Media.Streaming","Windows.Win32.Media.WindowsMediaFormat","Windows.Win32.NetworkManagement.Dhcp","Windows.Win32.NetworkManagement.Dns","Windows.Win32.NetworkManagement.InternetConnectionWizard","Windows.Win32.NetworkManagement.IpHelper","Windows.Win32.NetworkManagement.MobileBroadband","Windows.Win32.NetworkManagement.Multicast","Windows.Win32.NetworkManagement.Ndis","Windows.Win32.NetworkManagement.NetBios","Windows.Win32.NetworkManagement.NetManagement","Windows.Win32.NetworkManagement.NetShell","Windows.Win32.NetworkManagement.NetworkDiagnosticsFramework","Windows.Win32.NetworkManagement.NetworkPolicyServer","Windows.Win32.NetworkManagement.P2P","Windows.Win32.NetworkManagement.QoS","Windows.Win32.NetworkManagement.Rras","Windows.Win32.NetworkManagement.Snmp","Windows.Win32.NetworkManagement.WNet","Windows.Win32.NetworkManagement.WebDav","Windows.Win32.NetworkManagement.WiFi","Windows.Win32.NetworkManagement.WindowsConnectNow","Windows.Win32.NetworkManagement.WindowsConnectionManager","Windows.Win32.NetworkManagement.WindowsFilteringPlatform","Windows.Win32.NetworkManagement.WindowsFirewall","Windows.Win32.NetworkManagement.WindowsNetworkVirtualization","Windows.Win32.Networking.ActiveDirectory","Windows.Win32.Networking.BackgroundIntelligentTransferService","Windows.Win32.Networking.Clustering","Windows.Win32.Networking.HttpServer","Windows.Win32.Networking.Ldap","Windows.Win32.Networking.NetworkListManager","Windows.Win32.Networking.RemoteDifferentialCompression","Windows.Win32.Networking.WebSocket","Windows.Win32.Networking.WinHttp","Windows.Win32.Networking.WinInet","Windows.Win32.Networking.WinSock","Windows.Win32.Networking.WindowsWebServices","Windows.Win32.Security","Windows.Win32.Security.AppLocker","Windows.Win32.Security.Authentication.Identity","Windows.Win32.Security.Authentication.Identity.Provider","Windows.Win32.Security.Authorization","Windows.Win32.Security.Authorization.UI","Windows.Win32.Security.ConfigurationSnapin","Windows.Win32.Security.Credentials","Windows.Win32.Security.Cryptography","Windows.Win32.Security.Cryptography.Catalog","Windows.Win32.Security.Cryptography.Certificates","Windows.Win32.Security.Cryptography.Sip","Windows.Win32.Security.Cryptography.UI","Windows.Win32.Security.DiagnosticDataQuery","Windows.Win32.Security.DirectoryServices","Windows.Win32.Security.EnterpriseData","Windows.Win32.Security.ExtensibleAuthenticationProtocol","Windows.Win32.Security.Isolation","Windows.Win32.Security.LicenseProtection","Windows.Win32.Security.NetworkAccessProtection","Windows.Win32.Security.Tpm","Windows.Win32.Security.WinTrust","Windows.Win32.Security.WinWlx","Windows.Win32.Storage.Cabinets","Windows.Win32.Storage.CloudFilters","Windows.Win32.Storage.Compression","Windows.Win32.Storage.DataDeduplication","Windows.Win32.Storage.DistributedFileSystem","Windows.Win32.Storage.EnhancedStorage","Windows.Win32.Storage.FileHistory","Windows.Win32.Storage.FileServerResourceManager","Windows.Win32.Storage.FileSystem","Windows.Win32.Storage.Imapi","Windows.Win32.Storage.IndexServer","Windows.Win32.Storage.InstallableFileSystems","Windows.Win32.Storage.IscsiDisc","Windows.Win32.Storage.Jet","Windows.Win32.Storage.Nvme","Windows.Win32.Storage.OfflineFiles","Windows.Win32.Storage.OperationRecorder","Windows.Win32.Storage.Packaging.Appx","Windows.Win32.Storage.Packaging.Opc","Windows.Win32.Storage.ProjectedFileSystem","Windows.Win32.Storage.StructuredStorage","Windows.Win32.Storage.Vhd","Windows.Win32.Storage.VirtualDiskService","Windows.Win32.Storage.Vss","Windows.Win32.Storage.Xps","Windows.Win32.Storage.Xps.Printing","Windows.Win32.System.AddressBook","Windows.Win32.System.Antimalware","Windows.Win32.System.ApplicationInstallationAndServicing","Windows.Win32.System.ApplicationVerifier","Windows.Win32.System.AssessmentTool","Windows.Win32.System.ClrHosting","Windows.Win32.System.Com","Windows.Win32.System.Com.CallObj","Windows.Win32.System.Com.ChannelCredentials","Windows.Win32.System.Com.Events","Windows.Win32.System.Com.Marshal","Windows.Win32.System.Com.StructuredStorage","Windows.Win32.System.Com.UI","Windows.Win32.System.Com.Urlmon","Windows.Win32.System.ComponentServices","Windows.Win32.System.Console","Windows.Win32.System.Contacts","Windows.Win32.System.CorrelationVector","Windows.Win32.System.DataExchange","Windows.Win32.System.DeploymentServices","Windows.Win32.System.DesktopSharing","Windows.Win32.System.DeveloperLicensing","Windows.Win32.System.Diagnostics.Ceip","Windows.Win32.System.Diagnostics.ClrProfiling","Windows.Win32.System.Diagnostics.Debug","Windows.Win32.System.Diagnostics.Debug.ActiveScript","Windows.Win32.System.Diagnostics.Debug.Extensions","Windows.Win32.System.Diagnostics.Debug.WebApp","Windows.Win32.System.Diagnostics.Etw","Windows.Win32.System.Diagnostics.ProcessSnapshotting","Windows.Win32.System.Diagnostics.ToolHelp","Windows.Win32.System.Diagnostics.TraceLogging","Windows.Win32.System.DistributedTransactionCoordinator","Windows.Win32.System.Environment","Windows.Win32.System.ErrorReporting","Windows.Win32.System.EventCollector","Windows.Win32.System.EventLog","Windows.Win32.System.EventNotificationService","Windows.Win32.System.GroupPolicy","Windows.Win32.System.HostCompute","Windows.Win32.System.HostComputeNetwork","Windows.Win32.System.HostComputeSystem","Windows.Win32.System.Hypervisor","Windows.Win32.System.IO","Windows.Win32.System.Iis","Windows.Win32.System.Ioctl","Windows.Win32.System.JobObjects","Windows.Win32.System.Js","Windows.Win32.System.Kernel","Windows.Win32.System.LibraryLoader","Windows.Win32.System.Mailslots","Windows.Win32.System.Mapi","Windows.Win32.System.Memory","Windows.Win32.System.Memory.NonVolatile","Windows.Win32.System.MessageQueuing","Windows.Win32.System.MixedReality","Windows.Win32.System.Mmc","Windows.Win32.System.Ole","Windows.Win32.System.ParentalControls","Windows.Win32.System.PasswordManagement","Windows.Win32.System.Performance","Windows.Win32.System.Performance.HardwareCounterProfiling","Windows.Win32.System.Pipes","Windows.Win32.System.Power","Windows.Win32.System.ProcessStatus","Windows.Win32.System.RealTimeCommunications","Windows.Win32.System.Recovery","Windows.Win32.System.Registry","Windows.Win32.System.RemoteAssistance","Windows.Win32.System.RemoteDesktop","Windows.Win32.System.RemoteManagement","Windows.Win32.System.RestartManager","Windows.Win32.System.Restore","Windows.Win32.System.Rpc","Windows.Win32.System.Search","Windows.Win32.System.Search.Common","Windows.Win32.System.SecurityCenter","Windows.Win32.System.ServerBackup","Windows.Win32.System.Services","Windows.Win32.System.SettingsManagementInfrastructure","Windows.Win32.System.SetupAndMigration","Windows.Win32.System.Shutdown","Windows.Win32.System.SideShow","Windows.Win32.System.StationsAndDesktops","Windows.Win32.System.SubsystemForLinux","Windows.Win32.System.SystemInformation","Windows.Win32.System.SystemServices","Windows.Win32.System.TaskScheduler","Windows.Win32.System.Threading","Windows.Win32.System.Time","Windows.Win32.System.TpmBaseServices","Windows.Win32.System.TransactionServer","Windows.Win32.System.UpdateAgent","Windows.Win32.System.UpdateAssessment","Windows.Win32.System.UserAccessLogging","Windows.Win32.System.Variant","Windows.Win32.System.VirtualDosMachines","Windows.Win32.System.WinRT","Windows.Win32.System.WinRT.AllJoyn","Windows.Win32.System.WinRT.Composition","Windows.Win32.System.WinRT.CoreInputView","Windows.Win32.System.WinRT.Direct3D11","Windows.Win32.System.WinRT.Display","Windows.Win32.System.WinRT.Graphics.Capture","Windows.Win32.System.WinRT.Graphics.Direct2D","Windows.Win32.System.WinRT.Graphics.Imaging","Windows.Win32.System.WinRT.Holographic","Windows.Win32.System.WinRT.Isolation","Windows.Win32.System.WinRT.ML","Windows.Win32.System.WinRT.Media","Windows.Win32.System.WinRT.Metadata","Windows.Win32.System.WinRT.Pdf","Windows.Win32.System.WinRT.Printing","Windows.Win32.System.WinRT.Shell","Windows.Win32.System.WinRT.Storage","Windows.Win32.System.WinRT.Xaml","Windows.Win32.System.WindowsProgramming","Windows.Win32.System.WindowsSync","Windows.Win32.System.Wmi","Windows.Win32.UI.Accessibility","Windows.Win32.UI.Animation","Windows.Win32.UI.ColorSystem","Windows.Win32.UI.Controls","Windows.Win32.UI.Controls.Dialogs","Windows.Win32.UI.Controls.RichEdit","Windows.Win32.UI.HiDpi","Windows.Win32.UI.Input","Windows.Win32.UI.Input.Ime","Windows.Win32.UI.Input.Ink","Windows.Win32.UI.Input.KeyboardAndMouse","Windows.Win32.UI.Input.Pointer","Windows.Win32.UI.Input.Radial","Windows.Win32.UI.Input.Touch","Windows.Win32.UI.Input.XboxController","Windows.Win32.UI.InteractionContext","Windows.Win32.UI.LegacyWindowsEnvironmentFeatures","Windows.Win32.UI.Magnification","Windows.Win32.UI.Notifications","Windows.Win32.UI.Ribbon","Windows.Win32.UI.Shell","Windows.Win32.UI.Shell.Common","Windows.Win32.UI.Shell.PropertiesSystem","Windows.Win32.UI.TabletPC","Windows.Win32.UI.TextServices","Windows.Win32.UI.WindowsAndMessaging","Windows.Win32.UI.Wpf","Windows.Win32.UI.Xaml.Diagnostics","Windows.Win32.Web.InternetExplorer","Windows.Win32.Web.MsHtml"],"feature_map":["Wdk_Devices_Bluetooth","Win32_Devices_Properties","Wdk_Devices_HumanInterfaceDevice","Win32_Foundation","Wdk_Foundation","Wdk_System_SystemServices","Win32_Security","Wdk_Storage_FileSystem","Win32_System_IO","Win32_System_Kernel","Win32_System_Power","Wdk_Graphics_Direct3D","Win32_Graphics_Direct3D9","Win32_Graphics_DirectDraw","Win32_Graphics_Gdi","Foundation_Numerics","Wdk_NetworkManagement_Ndis","Win32_Networking_WinSock","Win32_NetworkManagement_Ndis","Wdk_NetworkManagement_WindowsFilteringPlatform","Win32_NetworkManagement_WindowsFilteringPlatform","Win32_System_Rpc","Win32_System_Memory","Win32_Storage_FileSystem","Win32_System_Ioctl","Win32_Security_Authentication_Identity","Wdk_Storage_FileSystem_Minifilters","Win32_Storage_InstallableFileSystems","Wdk_System_IO","Wdk_System_Memory","Wdk_System_OfflineRegistry","Wdk_System_Registry","Wdk_System_SystemInformation","Win32_System_Diagnostics_Debug","Win32_System_Diagnostics_Etw","Win32_System_SystemInformation","Win32_Storage_IscsiDisc","Win32_System_WindowsProgramming","Win32_System_SystemServices","Win32_System_Threading","Wdk_System_Threading","Win32_Data_HtmlHelp","Win32_UI_Controls","Win32_System_Com","Win32_System_Variant","Win32_Data_RightsManagement","Win32_Devices_AllJoyn","Win32_Devices_BiometricFramework","Win32_Devices_Bluetooth","Win32_Devices_Communication","Win32_Devices_DeviceAndDriverInstallation","Win32_System_Registry","Win32_UI_WindowsAndMessaging","Win32_Devices_DeviceQuery","Win32_Devices_Display","Win32_System_Console","Win32_Graphics_OpenGL","Win32_UI_ColorSystem","Win32_Devices_Enumeration_Pnp","Win32_Devices_Fax","Win32_Devices_HumanInterfaceDevice","Win32_Devices_PortableDevices","Win32_UI_Shell_PropertiesSystem","Win32_Devices_Pwm","Win32_Devices_Sensors","Win32_System_Com_StructuredStorage","Win32_Devices_SerialCommunication","Win32_Devices_Tapi","Win32_Devices_Usb","Win32_Devices_WebServicesOnDevices","Win32_Security_Cryptography","Win32_Gaming","Win32_Globalization","Win32_Graphics_Dwm","Win32_Graphics_GdiPlus","Win32_Graphics_Hlsl","Win32_Graphics_Printing","Win32_Storage_Xps","Win32_Graphics_Printing_PrintTicket","Win32_Management_MobileDeviceManagementRegistration","Win32_Media","Win32_Media_Multimedia","Win32_Media_Audio","Win32_Media_DxMediaObjects","Win32_Media_KernelStreaming","Win32_Media_MediaFoundation","Win32_UI_Controls_Dialogs","Win32_Media_Streaming","Win32_Media_WindowsMediaFormat","Win32_NetworkManagement_Dhcp","Win32_NetworkManagement_Dns","Win32_NetworkManagement_InternetConnectionWizard","Win32_NetworkManagement_IpHelper","Win32_NetworkManagement_Multicast","Win32_NetworkManagement_NetBios","Win32_NetworkManagement_NetManagement","Win32_NetworkManagement_NetShell","Win32_NetworkManagement_NetworkDiagnosticsFramework","Win32_NetworkManagement_P2P","Win32_NetworkManagement_QoS","Win32_NetworkManagement_Rras","Win32_NetworkManagement_Snmp","Win32_NetworkManagement_WNet","Win32_NetworkManagement_WebDav","Win32_NetworkManagement_WiFi","Win32_Security_ExtensibleAuthenticationProtocol","Win32_System_RemoteDesktop","Win32_NetworkManagement_WindowsConnectionManager","Win32_NetworkManagement_WindowsFirewall","Win32_NetworkManagement_WindowsNetworkVirtualization","Win32_Networking_ActiveDirectory","Win32_UI_Shell","Win32_Networking_Clustering","Win32_System_Services","Win32_Networking_HttpServer","Win32_Networking_Ldap","Win32_Networking_WebSocket","Win32_Networking_WinHttp","Win32_Networking_WinInet","Win32_Networking_WindowsWebServices","Win32_Security_AppLocker","Win32_Security_Credentials","Win32_System_PasswordManagement","Win32_Security_Authorization","Win32_Security_Cryptography_Catalog","Win32_Security_Cryptography_Sip","Win32_Security_Cryptography_Certificates","Win32_Security_Cryptography_UI","Win32_Security_WinTrust","Win32_Security_DiagnosticDataQuery","Win32_Security_DirectoryServices","Win32_Security_EnterpriseData","Win32_Storage_Packaging_Appx","Win32_Security_Isolation","Win32_Security_LicenseProtection","Win32_Security_NetworkAccessProtection","Win32_Security_WinWlx","Win32_System_StationsAndDesktops","Win32_Storage_Cabinets","Win32_Storage_CloudFilters","Win32_System_CorrelationVector","Win32_Storage_Compression","Win32_Storage_DistributedFileSystem","Win32_Storage_FileHistory","Win32_Storage_Imapi","Win32_System_AddressBook","Win32_Storage_IndexServer","Win32_Storage_Jet","Win32_Storage_StructuredStorage","Win32_Storage_Nvme","Win32_Storage_OfflineFiles","Win32_Storage_OperationRecorder","Win32_Storage_ProjectedFileSystem","Win32_Storage_Vhd","Win32_System_Antimalware","Win32_System_ApplicationInstallationAndServicing","Win32_System_ApplicationVerifier","Win32_System_ClrHosting","Win32_System_Ole","Win32_System_Com_Marshal","Win32_System_Com_Urlmon","Win32_System_ComponentServices","Win32_System_DataExchange","Win32_System_DeploymentServices","Win32_System_DeveloperLicensing","Win32_System_Diagnostics_Ceip","Win32_System_Time","Win32_System_Diagnostics_Debug_Extensions","Win32_System_Diagnostics_ProcessSnapshotting","Win32_System_Diagnostics_ToolHelp","Win32_System_Diagnostics_TraceLogging","Win32_System_DistributedTransactionCoordinator","Win32_System_Environment","Win32_System_ErrorReporting","Win32_System_EventCollector","Win32_System_EventLog","Win32_System_EventNotificationService","Win32_System_GroupPolicy","Win32_System_HostCompute","Win32_System_HostComputeNetwork","Win32_System_HostComputeSystem","Win32_System_Hypervisor","Win32_System_Iis","Win32_System_JobObjects","Win32_System_Js","Win32_System_Diagnostics_Debug_ActiveScript","Win32_System_LibraryLoader","Win32_System_Mailslots","Win32_System_Mapi","Win32_System_Memory_NonVolatile","Win32_System_MessageQueuing","Win32_System_MixedReality","Win32_System_Performance","Win32_System_Performance_HardwareCounterProfiling","Win32_System_Pipes","Win32_System_ProcessStatus","Win32_System_Recovery","Win32_System_RemoteManagement","Win32_System_RestartManager","Win32_System_Restore","Win32_System_Search","Win32_System_Search_Common","Win32_System_SecurityCenter","Win32_System_SetupAndMigration","Win32_System_Shutdown","Win32_System_SubsystemForLinux","Win32_System_TpmBaseServices","Win32_System_UserAccessLogging","Win32_System_VirtualDosMachines","Win32_System_Wmi","Win32_UI_Accessibility","Win32_UI_Input_Pointer","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_Ime","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Input_Touch","Win32_UI_Input_XboxController","Win32_UI_InteractionContext","Win32_UI_Magnification","Win32_UI_Shell_Common","Win32_UI_TabletPC","Win32_UI_TextServices","Win32_Web_InternetExplorer"],"namespaces":{"339":[{"name":"DEVPKEY_Bluetooth_ClassOfDevice","features":[0,1]},{"name":"DEVPKEY_Bluetooth_ClassOfDevice_Deprecated","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DeviceAddress","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DeviceFlags","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DeviceManufacturer","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DeviceModelNumber","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DevicePID","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DeviceProductVersion","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DeviceVID","features":[0,1]},{"name":"DEVPKEY_Bluetooth_DeviceVIDSource","features":[0,1]},{"name":"DEVPKEY_Bluetooth_LastConnectedTime","features":[0,1]},{"name":"DEVPKEY_Bluetooth_LastConnectedTime_Deprecated","features":[0,1]},{"name":"DEVPKEY_Bluetooth_LastSeenTime","features":[0,1]},{"name":"DEVPKEY_Bluetooth_ServiceGUID","features":[0,1]},{"name":"GUID_BTHDDI_PROFILE_DRIVER_INTERFACE","features":[0]},{"name":"GUID_BTHDDI_SDP_NODE_INTERFACE","features":[0]},{"name":"GUID_BTHDDI_SDP_PARSE_INTERFACE","features":[0]},{"name":"GUID_BTH_DEVICE_INTERFACE","features":[0]}],"340":[{"name":"EVT_VHF_ASYNC_OPERATION","features":[2]},{"name":"EVT_VHF_CLEANUP","features":[2]},{"name":"EVT_VHF_READY_FOR_NEXT_READ_REPORT","features":[2]},{"name":"HID_XFER_PACKET","features":[2]},{"name":"VHF_CONFIG","features":[2,3]},{"name":"VhfAsyncOperationComplete","features":[2,3]},{"name":"VhfCreate","features":[2,3]},{"name":"VhfDelete","features":[2,3]},{"name":"VhfReadReportSubmit","features":[2,3]},{"name":"VhfStart","features":[2,3]}],"341":[{"name":"ACCESS_STATE","features":[4,5,3,6]},{"name":"DEVICE_OBJECT","features":[4,7,5,3,6,8,9,10]},{"name":"DEVOBJ_EXTENSION","features":[4,7,5,3,6,8,9,10]},{"name":"DISPATCHER_HEADER","features":[4,3,9]},{"name":"DMA_COMMON_BUFFER_VECTOR","features":[4]},{"name":"DRIVER_ADD_DEVICE","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_CANCEL","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_CONTROL","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_DISPATCH","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_DISPATCH_PAGED","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_EXTENSION","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_FS_NOTIFICATION","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_INITIALIZE","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_NOTIFICATION_CALLBACK_ROUTINE","features":[4,3]},{"name":"DRIVER_OBJECT","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_REINITIALIZE","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_STARTIO","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_UNLOAD","features":[4,7,5,3,6,8,9,10]},{"name":"DontUseThisType","features":[4]},{"name":"DontUseThisTypeSession","features":[4]},{"name":"ECP_HEADER","features":[4]},{"name":"ECP_LIST","features":[4]},{"name":"ERESOURCE","features":[4,9]},{"name":"FAST_IO_ACQUIRE_FILE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_ACQUIRE_FOR_CCFLUSH","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_ACQUIRE_FOR_MOD_WRITE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_CHECK_IF_POSSIBLE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_DETACH_DEVICE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_DEVICE_CONTROL","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_DISPATCH","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_LOCK","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_MDL_READ","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_MDL_READ_COMPLETE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_MDL_READ_COMPLETE_COMPRESSED","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_MDL_WRITE_COMPLETE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_PREPARE_MDL_WRITE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_QUERY_BASIC_INFO","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_QUERY_NETWORK_OPEN_INFO","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_QUERY_OPEN","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_QUERY_STANDARD_INFO","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_READ","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_READ_COMPRESSED","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_RELEASE_FILE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_RELEASE_FOR_CCFLUSH","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_RELEASE_FOR_MOD_WRITE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_UNLOCK_ALL","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_UNLOCK_ALL_BY_KEY","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_UNLOCK_SINGLE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_WRITE","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_IO_WRITE_COMPRESSED","features":[4,7,5,3,6,8,9,10]},{"name":"FAST_MUTEX","features":[4,3,9]},{"name":"FILE_OBJECT","features":[4,7,5,3,6,8,9,10]},{"name":"IOMMU_DMA_DEVICE","features":[4]},{"name":"IOMMU_DMA_DOMAIN","features":[4]},{"name":"IO_COMPLETION_CONTEXT","features":[4]},{"name":"IO_PRIORITY_HINT","features":[4]},{"name":"IO_SECURITY_CONTEXT","features":[4,5,3,6]},{"name":"IO_STACK_LOCATION","features":[4,7,5,3,6,8,9,10]},{"name":"IRP","features":[4,7,5,3,6,8,9,10]},{"name":"IoPriorityCritical","features":[4]},{"name":"IoPriorityHigh","features":[4]},{"name":"IoPriorityLow","features":[4]},{"name":"IoPriorityNormal","features":[4]},{"name":"IoPriorityVeryLow","features":[4]},{"name":"KDEVICE_QUEUE","features":[4,3,9]},{"name":"KDPC","features":[4,9]},{"name":"KENLISTMENT","features":[4]},{"name":"KEVENT","features":[4,3,9]},{"name":"KGDT","features":[4]},{"name":"KIDT","features":[4]},{"name":"KMUTANT","features":[4,3,9]},{"name":"KPCR","features":[4]},{"name":"KPRCB","features":[4]},{"name":"KQUEUE","features":[4,3,9]},{"name":"KRESOURCEMANAGER","features":[4]},{"name":"KSPIN_LOCK_QUEUE_NUMBER","features":[4]},{"name":"KTM","features":[4]},{"name":"KTRANSACTION","features":[4]},{"name":"KTSS","features":[4]},{"name":"KWAIT_BLOCK","features":[4,3,9]},{"name":"LOADER_PARAMETER_BLOCK","features":[4]},{"name":"LockQueueAfdWorkQueueLock","features":[4]},{"name":"LockQueueBcbLock","features":[4]},{"name":"LockQueueIoCancelLock","features":[4]},{"name":"LockQueueIoCompletionLock","features":[4]},{"name":"LockQueueIoDatabaseLock","features":[4]},{"name":"LockQueueIoVpbLock","features":[4]},{"name":"LockQueueMasterLock","features":[4]},{"name":"LockQueueMaximumLock","features":[4]},{"name":"LockQueueNonPagedPoolLock","features":[4]},{"name":"LockQueueNtfsStructLock","features":[4]},{"name":"LockQueueUnusedSpare0","features":[4]},{"name":"LockQueueUnusedSpare1","features":[4]},{"name":"LockQueueUnusedSpare15","features":[4]},{"name":"LockQueueUnusedSpare16","features":[4]},{"name":"LockQueueUnusedSpare2","features":[4]},{"name":"LockQueueUnusedSpare3","features":[4]},{"name":"LockQueueUnusedSpare8","features":[4]},{"name":"LockQueueVacbLock","features":[4]},{"name":"MDL","features":[4]},{"name":"MaxIoPriorityTypes","features":[4]},{"name":"MaxPoolType","features":[4]},{"name":"NTSTRSAFE_MAX_CCH","features":[4]},{"name":"NTSTRSAFE_MAX_LENGTH","features":[4]},{"name":"NTSTRSAFE_UNICODE_STRING_MAX_CCH","features":[4]},{"name":"NTSTRSAFE_USE_SECURE_CRT","features":[4]},{"name":"NonPagedPool","features":[4]},{"name":"NonPagedPoolBase","features":[4]},{"name":"NonPagedPoolBaseCacheAligned","features":[4]},{"name":"NonPagedPoolBaseCacheAlignedMustS","features":[4]},{"name":"NonPagedPoolBaseMustSucceed","features":[4]},{"name":"NonPagedPoolCacheAligned","features":[4]},{"name":"NonPagedPoolCacheAlignedMustS","features":[4]},{"name":"NonPagedPoolCacheAlignedMustSSession","features":[4]},{"name":"NonPagedPoolCacheAlignedSession","features":[4]},{"name":"NonPagedPoolExecute","features":[4]},{"name":"NonPagedPoolMustSucceed","features":[4]},{"name":"NonPagedPoolMustSucceedSession","features":[4]},{"name":"NonPagedPoolNx","features":[4]},{"name":"NonPagedPoolNxCacheAligned","features":[4]},{"name":"NonPagedPoolSession","features":[4]},{"name":"NonPagedPoolSessionNx","features":[4]},{"name":"NtClose","features":[4,3]},{"name":"NtQueryObject","features":[4,3]},{"name":"OBJECT_ATTRIBUTES","features":[4,3]},{"name":"OBJECT_ATTRIBUTES32","features":[4]},{"name":"OBJECT_ATTRIBUTES64","features":[4]},{"name":"OBJECT_INFORMATION_CLASS","features":[4]},{"name":"OBJECT_NAME_INFORMATION","features":[4,3]},{"name":"OWNER_ENTRY","features":[4]},{"name":"ObjectBasicInformation","features":[4]},{"name":"ObjectTypeInformation","features":[4]},{"name":"PAFFINITY_TOKEN","features":[4]},{"name":"PBUS_HANDLER","features":[4]},{"name":"PCALLBACK_OBJECT","features":[4]},{"name":"PDEVICE_HANDLER_OBJECT","features":[4]},{"name":"PEJOB","features":[4]},{"name":"PEPROCESS","features":[4]},{"name":"PESILO","features":[4]},{"name":"PETHREAD","features":[4]},{"name":"PEX_RUNDOWN_REF_CACHE_AWARE","features":[4]},{"name":"PEX_TIMER","features":[4]},{"name":"PFREE_FUNCTION","features":[4]},{"name":"PIO_COMPLETION_ROUTINE","features":[4,3]},{"name":"PIO_REMOVE_LOCK_TRACKING_BLOCK","features":[4]},{"name":"PIO_TIMER","features":[4]},{"name":"PIO_WORKITEM","features":[4]},{"name":"PKDEFERRED_ROUTINE","features":[4]},{"name":"PKINTERRUPT","features":[4]},{"name":"PKPROCESS","features":[4]},{"name":"PKTHREAD","features":[4]},{"name":"PNOTIFY_SYNC","features":[4]},{"name":"POBJECT_TYPE","features":[4]},{"name":"POHANDLE","features":[4]},{"name":"POOL_TYPE","features":[4]},{"name":"PPCW_BUFFER","features":[4]},{"name":"PPCW_INSTANCE","features":[4]},{"name":"PPCW_REGISTRATION","features":[4]},{"name":"PRKPROCESS","features":[4]},{"name":"PRKTHREAD","features":[4]},{"name":"PSILO_MONITOR","features":[4]},{"name":"PWORKER_THREAD_ROUTINE","features":[4]},{"name":"PagedPool","features":[4]},{"name":"PagedPoolCacheAligned","features":[4]},{"name":"PagedPoolCacheAlignedSession","features":[4]},{"name":"PagedPoolSession","features":[4]},{"name":"RTL_SPLAY_LINKS","features":[4]},{"name":"SECTION_OBJECT_POINTERS","features":[4]},{"name":"SECURITY_SUBJECT_CONTEXT","features":[4,6]},{"name":"STRSAFE_FILL_BEHIND","features":[4]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[4]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[4]},{"name":"STRSAFE_IGNORE_NULLS","features":[4]},{"name":"STRSAFE_NO_TRUNCATION","features":[4]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[4]},{"name":"STRSAFE_ZERO_LENGTH_ON_FAILURE","features":[4]},{"name":"SspiAsyncContext","features":[4]},{"name":"TARGET_DEVICE_CUSTOM_NOTIFICATION","features":[4,7,5,3,6,8,9,10]},{"name":"VPB","features":[4,7,5,3,6,8,9,10]},{"name":"WORK_QUEUE_ITEM","features":[4,9]},{"name":"_DEVICE_OBJECT_POWER_EXTENSION","features":[4]},{"name":"_IORING_OBJECT","features":[4]},{"name":"_SCSI_REQUEST_BLOCK","features":[4]},{"name":"__WARNING_BANNED_API_USAGE","features":[4]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[4]},{"name":"__WARNING_DEREF_NULL_PTR","features":[4]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[4]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[4]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[4]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[4]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[4]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[4]},{"name":"__WARNING_POST_EXPECTED","features":[4]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[4]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[4]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[4]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[4]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[4]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[4]},{"name":"__WARNING_USING_UNINIT_VAR","features":[4]}],"342":[{"name":"D3DCAPS8","features":[11,12]},{"name":"D3DCLEAR_COMPUTERECTS","features":[11]},{"name":"D3DDDIARG_CREATERESOURCE","features":[11,3]},{"name":"D3DDDIARG_CREATERESOURCE2","features":[11,3]},{"name":"D3DDDICB_DESTROYALLOCATION2FLAGS","features":[11]},{"name":"D3DDDICB_LOCK2FLAGS","features":[11]},{"name":"D3DDDICB_LOCKFLAGS","features":[11]},{"name":"D3DDDICB_SIGNALFLAGS","features":[11]},{"name":"D3DDDIFMT_A1","features":[11]},{"name":"D3DDDIFMT_A16B16G16R16","features":[11]},{"name":"D3DDDIFMT_A16B16G16R16F","features":[11]},{"name":"D3DDDIFMT_A1R5G5B5","features":[11]},{"name":"D3DDDIFMT_A2B10G10R10","features":[11]},{"name":"D3DDDIFMT_A2B10G10R10_XR_BIAS","features":[11]},{"name":"D3DDDIFMT_A2R10G10B10","features":[11]},{"name":"D3DDDIFMT_A2W10V10U10","features":[11]},{"name":"D3DDDIFMT_A32B32G32R32F","features":[11]},{"name":"D3DDDIFMT_A4L4","features":[11]},{"name":"D3DDDIFMT_A4R4G4B4","features":[11]},{"name":"D3DDDIFMT_A8","features":[11]},{"name":"D3DDDIFMT_A8B8G8R8","features":[11]},{"name":"D3DDDIFMT_A8L8","features":[11]},{"name":"D3DDDIFMT_A8P8","features":[11]},{"name":"D3DDDIFMT_A8R3G3B2","features":[11]},{"name":"D3DDDIFMT_A8R8G8B8","features":[11]},{"name":"D3DDDIFMT_BINARYBUFFER","features":[11]},{"name":"D3DDDIFMT_BITSTREAMDATA","features":[11]},{"name":"D3DDDIFMT_CxV8U8","features":[11]},{"name":"D3DDDIFMT_D15S1","features":[11]},{"name":"D3DDDIFMT_D16","features":[11]},{"name":"D3DDDIFMT_D16_LOCKABLE","features":[11]},{"name":"D3DDDIFMT_D24FS8","features":[11]},{"name":"D3DDDIFMT_D24S8","features":[11]},{"name":"D3DDDIFMT_D24X4S4","features":[11]},{"name":"D3DDDIFMT_D24X8","features":[11]},{"name":"D3DDDIFMT_D32","features":[11]},{"name":"D3DDDIFMT_D32F_LOCKABLE","features":[11]},{"name":"D3DDDIFMT_D32_LOCKABLE","features":[11]},{"name":"D3DDDIFMT_DEBLOCKINGDATA","features":[11]},{"name":"D3DDDIFMT_DXT1","features":[11]},{"name":"D3DDDIFMT_DXT2","features":[11]},{"name":"D3DDDIFMT_DXT3","features":[11]},{"name":"D3DDDIFMT_DXT4","features":[11]},{"name":"D3DDDIFMT_DXT5","features":[11]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_BASE","features":[11]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_MAX","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED10","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED11","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED12","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED13","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED14","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED15","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED16","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED17","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED18","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED19","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED20","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED21","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED22","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED23","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED24","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED25","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED26","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED27","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED28","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED29","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED30","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED31","features":[11]},{"name":"D3DDDIFMT_DXVA_RESERVED9","features":[11]},{"name":"D3DDDIFMT_FILMGRAINBUFFER","features":[11]},{"name":"D3DDDIFMT_G16R16","features":[11]},{"name":"D3DDDIFMT_G16R16F","features":[11]},{"name":"D3DDDIFMT_G32R32F","features":[11]},{"name":"D3DDDIFMT_G8R8","features":[11]},{"name":"D3DDDIFMT_G8R8_G8B8","features":[11]},{"name":"D3DDDIFMT_INDEX16","features":[11]},{"name":"D3DDDIFMT_INDEX32","features":[11]},{"name":"D3DDDIFMT_INVERSEQUANTIZATIONDATA","features":[11]},{"name":"D3DDDIFMT_L16","features":[11]},{"name":"D3DDDIFMT_L6V5U5","features":[11]},{"name":"D3DDDIFMT_L8","features":[11]},{"name":"D3DDDIFMT_MACROBLOCKDATA","features":[11]},{"name":"D3DDDIFMT_MOTIONVECTORBUFFER","features":[11]},{"name":"D3DDDIFMT_MULTI2_ARGB8","features":[11]},{"name":"D3DDDIFMT_P8","features":[11]},{"name":"D3DDDIFMT_PICTUREPARAMSDATA","features":[11]},{"name":"D3DDDIFMT_Q16W16V16U16","features":[11]},{"name":"D3DDDIFMT_Q8W8V8U8","features":[11]},{"name":"D3DDDIFMT_R16F","features":[11]},{"name":"D3DDDIFMT_R32F","features":[11]},{"name":"D3DDDIFMT_R3G3B2","features":[11]},{"name":"D3DDDIFMT_R5G6B5","features":[11]},{"name":"D3DDDIFMT_R8","features":[11]},{"name":"D3DDDIFMT_R8G8B8","features":[11]},{"name":"D3DDDIFMT_R8G8_B8G8","features":[11]},{"name":"D3DDDIFMT_RESIDUALDIFFERENCEDATA","features":[11]},{"name":"D3DDDIFMT_S1D15","features":[11]},{"name":"D3DDDIFMT_S8D24","features":[11]},{"name":"D3DDDIFMT_S8_LOCKABLE","features":[11]},{"name":"D3DDDIFMT_SLICECONTROLDATA","features":[11]},{"name":"D3DDDIFMT_UNKNOWN","features":[11]},{"name":"D3DDDIFMT_UYVY","features":[11]},{"name":"D3DDDIFMT_V16U16","features":[11]},{"name":"D3DDDIFMT_V8U8","features":[11]},{"name":"D3DDDIFMT_VERTEXDATA","features":[11]},{"name":"D3DDDIFMT_W11V11U10","features":[11]},{"name":"D3DDDIFMT_X1R5G5B5","features":[11]},{"name":"D3DDDIFMT_X4R4G4B4","features":[11]},{"name":"D3DDDIFMT_X4S4D24","features":[11]},{"name":"D3DDDIFMT_X8B8G8R8","features":[11]},{"name":"D3DDDIFMT_X8D24","features":[11]},{"name":"D3DDDIFMT_X8L8V8U8","features":[11]},{"name":"D3DDDIFMT_X8R8G8B8","features":[11]},{"name":"D3DDDIFMT_YUY2","features":[11]},{"name":"D3DDDIFORMAT","features":[11]},{"name":"D3DDDIGPUVIRTUALADDRESS_PROTECTION_TYPE","features":[11]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVATION_TYPE","features":[11]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_ACCESS","features":[11]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_COMMIT","features":[11]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_ZERO","features":[11]},{"name":"D3DDDIMULTISAMPLE_10_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_11_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_12_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_13_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_14_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_15_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_16_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_2_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_3_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_4_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_5_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_6_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_7_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_8_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_9_SAMPLES","features":[11]},{"name":"D3DDDIMULTISAMPLE_NONE","features":[11]},{"name":"D3DDDIMULTISAMPLE_NONMASKABLE","features":[11]},{"name":"D3DDDIMULTISAMPLE_TYPE","features":[11]},{"name":"D3DDDIPOOL_LOCALVIDMEM","features":[11]},{"name":"D3DDDIPOOL_NONLOCALVIDMEM","features":[11]},{"name":"D3DDDIPOOL_STAGINGMEM","features":[11]},{"name":"D3DDDIPOOL_SYSTEMMEM","features":[11]},{"name":"D3DDDIPOOL_VIDEOMEMORY","features":[11]},{"name":"D3DDDIRECT","features":[11]},{"name":"D3DDDI_ALLOCATIONINFO","features":[11]},{"name":"D3DDDI_ALLOCATIONINFO2","features":[11,3]},{"name":"D3DDDI_ALLOCATIONLIST","features":[11]},{"name":"D3DDDI_ALLOCATIONPRIORITY_HIGH","features":[11]},{"name":"D3DDDI_ALLOCATIONPRIORITY_LOW","features":[11]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MAXIMUM","features":[11]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MINIMUM","features":[11]},{"name":"D3DDDI_ALLOCATIONPRIORITY_NORMAL","features":[11]},{"name":"D3DDDI_COLOR_SPACE_CUSTOM","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RESERVED","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G10_NONE_P709","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P709","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G2084_NONE_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P709","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P709","features":[11]},{"name":"D3DDDI_COLOR_SPACE_TYPE","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P601","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P709","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_GHLG_TOPLEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_LEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_TOPLEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_TOPLEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P709","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_TOPLEFT_P2020","features":[11]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_GHLG_TOPLEFT_P2020","features":[11]},{"name":"D3DDDI_CPU_NOTIFICATION","features":[11]},{"name":"D3DDDI_CREATECONTEXTFLAGS","features":[11]},{"name":"D3DDDI_CREATEHWCONTEXTFLAGS","features":[11]},{"name":"D3DDDI_CREATEHWQUEUEFLAGS","features":[11]},{"name":"D3DDDI_CREATENATIVEFENCEINFO","features":[11]},{"name":"D3DDDI_DESTROYPAGINGQUEUE","features":[11]},{"name":"D3DDDI_DOORBELLSTATUS","features":[11]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED","features":[11]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED_NOTIFY_KMD","features":[11]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_ABORT","features":[11]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_RETRY","features":[11]},{"name":"D3DDDI_DOORBELL_PRIVATEDATA_MAX_BYTES_WDDM3_1","features":[11]},{"name":"D3DDDI_DRIVERESCAPETYPE","features":[11]},{"name":"D3DDDI_DRIVERESCAPETYPE_CPUEVENTUSAGE","features":[11]},{"name":"D3DDDI_DRIVERESCAPETYPE_MAX","features":[11]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATEALLOCATIONHANDLE","features":[11]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATERESOURCEHANDLE","features":[11]},{"name":"D3DDDI_DRIVERESCAPE_CPUEVENTUSAGE","features":[11]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATEALLOCATIONEHANDLE","features":[11]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATERESOURCEHANDLE","features":[11]},{"name":"D3DDDI_DXGI_RGB","features":[11]},{"name":"D3DDDI_ESCAPEFLAGS","features":[11]},{"name":"D3DDDI_EVICT_FLAGS","features":[11]},{"name":"D3DDDI_FENCE","features":[11]},{"name":"D3DDDI_FLIPINTERVAL_FOUR","features":[11]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE","features":[11]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE_ALLOW_TEARING","features":[11]},{"name":"D3DDDI_FLIPINTERVAL_ONE","features":[11]},{"name":"D3DDDI_FLIPINTERVAL_THREE","features":[11]},{"name":"D3DDDI_FLIPINTERVAL_TWO","features":[11]},{"name":"D3DDDI_FLIPINTERVAL_TYPE","features":[11]},{"name":"D3DDDI_GAMMARAMP_DEFAULT","features":[11]},{"name":"D3DDDI_GAMMARAMP_DXGI_1","features":[11]},{"name":"D3DDDI_GAMMARAMP_MATRIX_3x4","features":[11]},{"name":"D3DDDI_GAMMARAMP_MATRIX_V2","features":[11]},{"name":"D3DDDI_GAMMARAMP_RGB256x3x16","features":[11]},{"name":"D3DDDI_GAMMARAMP_TYPE","features":[11]},{"name":"D3DDDI_GAMMARAMP_UNINITIALIZED","features":[11]},{"name":"D3DDDI_GAMMA_RAMP_DXGI_1","features":[11]},{"name":"D3DDDI_GAMMA_RAMP_RGB256x3x16","features":[11]},{"name":"D3DDDI_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[11]},{"name":"D3DDDI_HDR_METADATA_HDR10","features":[11]},{"name":"D3DDDI_HDR_METADATA_HDR10PLUS","features":[11]},{"name":"D3DDDI_HDR_METADATA_TYPE","features":[11]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10","features":[11]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10PLUS","features":[11]},{"name":"D3DDDI_HDR_METADATA_TYPE_NONE","features":[11]},{"name":"D3DDDI_KERNELOVERLAYINFO","features":[11]},{"name":"D3DDDI_MAKERESIDENT","features":[11]},{"name":"D3DDDI_MAKERESIDENT_FLAGS","features":[11]},{"name":"D3DDDI_MAPGPUVIRTUALADDRESS","features":[11]},{"name":"D3DDDI_MAX_BROADCAST_CONTEXT","features":[11]},{"name":"D3DDDI_MAX_MPO_PRESENT_DIRTY_RECTS","features":[11]},{"name":"D3DDDI_MAX_OBJECT_SIGNALED","features":[11]},{"name":"D3DDDI_MAX_OBJECT_WAITED_ON","features":[11]},{"name":"D3DDDI_MAX_WRITTEN_PRIMARIES","features":[11]},{"name":"D3DDDI_MONITORED_FENCE","features":[11]},{"name":"D3DDDI_MULTISAMPLINGMETHOD","features":[11]},{"name":"D3DDDI_NATIVEFENCEMAPPING","features":[11]},{"name":"D3DDDI_OFFER_FLAGS","features":[11]},{"name":"D3DDDI_OFFER_PRIORITY","features":[11]},{"name":"D3DDDI_OFFER_PRIORITY_AUTO","features":[11]},{"name":"D3DDDI_OFFER_PRIORITY_HIGH","features":[11]},{"name":"D3DDDI_OFFER_PRIORITY_LOW","features":[11]},{"name":"D3DDDI_OFFER_PRIORITY_NONE","features":[11]},{"name":"D3DDDI_OFFER_PRIORITY_NORMAL","features":[11]},{"name":"D3DDDI_OPENALLOCATIONINFO","features":[11]},{"name":"D3DDDI_OPENALLOCATIONINFO2","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[11]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[11]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY","features":[11]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_ABOVE_NORMAL","features":[11]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_BELOW_NORMAL","features":[11]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_NORMAL","features":[11]},{"name":"D3DDDI_PATCHLOCATIONLIST","features":[11]},{"name":"D3DDDI_PERIODIC_MONITORED_FENCE","features":[11]},{"name":"D3DDDI_POOL","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_ADAPTERKEY","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERIMAGEPATH","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERSTOREPATH","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_FLAGS","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_INFO","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_MAX","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_SERVICEKEY","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_STATUS","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_BUFFER_OVERFLOW","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_FAIL","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_MAX","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_SUCCESS","features":[11]},{"name":"D3DDDI_QUERYREGISTRY_TYPE","features":[11]},{"name":"D3DDDI_RATIONAL","features":[11]},{"name":"D3DDDI_RECLAIM_RESULT","features":[11]},{"name":"D3DDDI_RECLAIM_RESULT_DISCARDED","features":[11]},{"name":"D3DDDI_RECLAIM_RESULT_NOT_COMMITTED","features":[11]},{"name":"D3DDDI_RECLAIM_RESULT_OK","features":[11]},{"name":"D3DDDI_RESERVEGPUVIRTUALADDRESS","features":[11]},{"name":"D3DDDI_RESOURCEFLAGS","features":[11]},{"name":"D3DDDI_RESOURCEFLAGS2","features":[11]},{"name":"D3DDDI_ROTATION","features":[11]},{"name":"D3DDDI_ROTATION_180","features":[11]},{"name":"D3DDDI_ROTATION_270","features":[11]},{"name":"D3DDDI_ROTATION_90","features":[11]},{"name":"D3DDDI_ROTATION_IDENTITY","features":[11]},{"name":"D3DDDI_SCANLINEORDERING","features":[11]},{"name":"D3DDDI_SCANLINEORDERING_INTERLACED","features":[11]},{"name":"D3DDDI_SCANLINEORDERING_PROGRESSIVE","features":[11]},{"name":"D3DDDI_SCANLINEORDERING_UNKNOWN","features":[11]},{"name":"D3DDDI_SEGMENTPREFERENCE","features":[11]},{"name":"D3DDDI_SEMAPHORE","features":[11]},{"name":"D3DDDI_SURFACEINFO","features":[11]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO","features":[11,3]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO2","features":[11,3]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_FLAGS","features":[11]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_TYPE","features":[11]},{"name":"D3DDDI_SYNCHRONIZATION_MUTEX","features":[11]},{"name":"D3DDDI_SYNCHRONIZATION_TYPE_LIMIT","features":[11]},{"name":"D3DDDI_SYNC_OBJECT_SIGNAL","features":[11]},{"name":"D3DDDI_SYNC_OBJECT_WAIT","features":[11]},{"name":"D3DDDI_TRIMRESIDENCYSET_FLAGS","features":[11]},{"name":"D3DDDI_UPDATEALLOCPROPERTY","features":[11]},{"name":"D3DDDI_UPDATEALLOCPROPERTY_FLAGS","features":[11]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_COPY","features":[11]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP","features":[11]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP_PROTECT","features":[11]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION","features":[11]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION_TYPE","features":[11]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_UNMAP","features":[11]},{"name":"D3DDDI_VIDEO_SIGNAL_SCANLINE_ORDERING","features":[11]},{"name":"D3DDDI_VSSLO_INTERLACED_LOWERFIELDFIRST","features":[11]},{"name":"D3DDDI_VSSLO_INTERLACED_UPPERFIELDFIRST","features":[11]},{"name":"D3DDDI_VSSLO_OTHER","features":[11]},{"name":"D3DDDI_VSSLO_PROGRESSIVE","features":[11]},{"name":"D3DDDI_VSSLO_UNINITIALIZED","features":[11]},{"name":"D3DDDI_WAITFORSYNCHRONIZATIONOBJECTFROMCPU_FLAGS","features":[11]},{"name":"D3DDEVCAPS_HWINDEXBUFFER","features":[11]},{"name":"D3DDEVCAPS_HWVERTEXBUFFER","features":[11]},{"name":"D3DDEVCAPS_SUBVOLUMELOCK","features":[11]},{"name":"D3DDEVICEDESC_V1","features":[11,3,12]},{"name":"D3DDEVICEDESC_V2","features":[11,3,12]},{"name":"D3DDEVICEDESC_V3","features":[11,3,12]},{"name":"D3DDEVINFOID_VCACHE","features":[11]},{"name":"D3DDP2OP_ADDDIRTYBOX","features":[11]},{"name":"D3DDP2OP_ADDDIRTYRECT","features":[11]},{"name":"D3DDP2OP_BLT","features":[11]},{"name":"D3DDP2OP_BUFFERBLT","features":[11]},{"name":"D3DDP2OP_CLEAR","features":[11]},{"name":"D3DDP2OP_CLIPPEDTRIANGLEFAN","features":[11]},{"name":"D3DDP2OP_COLORFILL","features":[11]},{"name":"D3DDP2OP_COMPOSERECTS","features":[11]},{"name":"D3DDP2OP_CREATELIGHT","features":[11]},{"name":"D3DDP2OP_CREATEPIXELSHADER","features":[11]},{"name":"D3DDP2OP_CREATEQUERY","features":[11]},{"name":"D3DDP2OP_CREATEVERTEXSHADER","features":[11]},{"name":"D3DDP2OP_CREATEVERTEXSHADERDECL","features":[11]},{"name":"D3DDP2OP_CREATEVERTEXSHADERFUNC","features":[11]},{"name":"D3DDP2OP_DELETEPIXELSHADER","features":[11]},{"name":"D3DDP2OP_DELETEQUERY","features":[11]},{"name":"D3DDP2OP_DELETEVERTEXSHADER","features":[11]},{"name":"D3DDP2OP_DELETEVERTEXSHADERDECL","features":[11]},{"name":"D3DDP2OP_DELETEVERTEXSHADERFUNC","features":[11]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE","features":[11]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE2","features":[11]},{"name":"D3DDP2OP_DRAWPRIMITIVE","features":[11]},{"name":"D3DDP2OP_DRAWPRIMITIVE2","features":[11]},{"name":"D3DDP2OP_DRAWRECTPATCH","features":[11]},{"name":"D3DDP2OP_DRAWTRIPATCH","features":[11]},{"name":"D3DDP2OP_GENERATEMIPSUBLEVELS","features":[11]},{"name":"D3DDP2OP_INDEXEDLINELIST","features":[11]},{"name":"D3DDP2OP_INDEXEDLINELIST2","features":[11]},{"name":"D3DDP2OP_INDEXEDLINESTRIP","features":[11]},{"name":"D3DDP2OP_INDEXEDTRIANGLEFAN","features":[11]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST","features":[11]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST2","features":[11]},{"name":"D3DDP2OP_INDEXEDTRIANGLESTRIP","features":[11]},{"name":"D3DDP2OP_ISSUEQUERY","features":[11]},{"name":"D3DDP2OP_LINELIST","features":[11]},{"name":"D3DDP2OP_LINELIST_IMM","features":[11]},{"name":"D3DDP2OP_LINESTRIP","features":[11]},{"name":"D3DDP2OP_MULTIPLYTRANSFORM","features":[11]},{"name":"D3DDP2OP_POINTS","features":[11]},{"name":"D3DDP2OP_RENDERSTATE","features":[11]},{"name":"D3DDP2OP_RESPONSECONTINUE","features":[11]},{"name":"D3DDP2OP_RESPONSEQUERY","features":[11]},{"name":"D3DDP2OP_SETCLIPPLANE","features":[11]},{"name":"D3DDP2OP_SETCONVOLUTIONKERNELMONO","features":[11]},{"name":"D3DDP2OP_SETDEPTHSTENCIL","features":[11]},{"name":"D3DDP2OP_SETINDICES","features":[11]},{"name":"D3DDP2OP_SETLIGHT","features":[11]},{"name":"D3DDP2OP_SETMATERIAL","features":[11]},{"name":"D3DDP2OP_SETPALETTE","features":[11]},{"name":"D3DDP2OP_SETPIXELSHADER","features":[11]},{"name":"D3DDP2OP_SETPIXELSHADERCONST","features":[11]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTB","features":[11]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTI","features":[11]},{"name":"D3DDP2OP_SETPRIORITY","features":[11]},{"name":"D3DDP2OP_SETRENDERTARGET","features":[11]},{"name":"D3DDP2OP_SETRENDERTARGET2","features":[11]},{"name":"D3DDP2OP_SETSCISSORRECT","features":[11]},{"name":"D3DDP2OP_SETSTREAMSOURCE","features":[11]},{"name":"D3DDP2OP_SETSTREAMSOURCE2","features":[11]},{"name":"D3DDP2OP_SETSTREAMSOURCEFREQ","features":[11]},{"name":"D3DDP2OP_SETSTREAMSOURCEUM","features":[11]},{"name":"D3DDP2OP_SETTEXLOD","features":[11]},{"name":"D3DDP2OP_SETTRANSFORM","features":[11]},{"name":"D3DDP2OP_SETVERTEXSHADER","features":[11]},{"name":"D3DDP2OP_SETVERTEXSHADERCONST","features":[11]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTB","features":[11]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTI","features":[11]},{"name":"D3DDP2OP_SETVERTEXSHADERDECL","features":[11]},{"name":"D3DDP2OP_SETVERTEXSHADERFUNC","features":[11]},{"name":"D3DDP2OP_STATESET","features":[11]},{"name":"D3DDP2OP_SURFACEBLT","features":[11]},{"name":"D3DDP2OP_TEXBLT","features":[11]},{"name":"D3DDP2OP_TEXTURESTAGESTATE","features":[11]},{"name":"D3DDP2OP_TRIANGLEFAN","features":[11]},{"name":"D3DDP2OP_TRIANGLEFAN_IMM","features":[11]},{"name":"D3DDP2OP_TRIANGLELIST","features":[11]},{"name":"D3DDP2OP_TRIANGLESTRIP","features":[11]},{"name":"D3DDP2OP_UPDATEPALETTE","features":[11]},{"name":"D3DDP2OP_VIEWPORTINFO","features":[11]},{"name":"D3DDP2OP_VOLUMEBLT","features":[11]},{"name":"D3DDP2OP_WINFO","features":[11]},{"name":"D3DDP2OP_ZRANGE","features":[11]},{"name":"D3DFVF_FOG","features":[11]},{"name":"D3DGDI2_MAGIC","features":[11]},{"name":"D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[11]},{"name":"D3DGDI2_TYPE_DEFER_AGP_FREES","features":[11]},{"name":"D3DGDI2_TYPE_DXVERSION","features":[11]},{"name":"D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[11]},{"name":"D3DGDI2_TYPE_GETADAPTERGROUP","features":[11]},{"name":"D3DGDI2_TYPE_GETD3DCAPS8","features":[11]},{"name":"D3DGDI2_TYPE_GETD3DCAPS9","features":[11]},{"name":"D3DGDI2_TYPE_GETD3DQUERY","features":[11]},{"name":"D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[11]},{"name":"D3DGDI2_TYPE_GETDDIVERSION","features":[11]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODE","features":[11]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[11]},{"name":"D3DGDI2_TYPE_GETFORMAT","features":[11]},{"name":"D3DGDI2_TYPE_GETFORMATCOUNT","features":[11]},{"name":"D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[11]},{"name":"D3DGPU_NULL","features":[11]},{"name":"D3DGPU_PHYSICAL_ADDRESS","features":[11]},{"name":"D3DHAL2_CB32_CLEAR","features":[11]},{"name":"D3DHAL2_CB32_DRAWONEINDEXEDPRIMITIVE","features":[11]},{"name":"D3DHAL2_CB32_DRAWONEPRIMITIVE","features":[11]},{"name":"D3DHAL2_CB32_DRAWPRIMITIVES","features":[11]},{"name":"D3DHAL2_CB32_SETRENDERTARGET","features":[11]},{"name":"D3DHAL3_CB32_CLEAR2","features":[11]},{"name":"D3DHAL3_CB32_DRAWPRIMITIVES2","features":[11]},{"name":"D3DHAL3_CB32_RESERVED","features":[11]},{"name":"D3DHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[11]},{"name":"D3DHALDP2_EXECUTEBUFFER","features":[11]},{"name":"D3DHALDP2_REQCOMMANDBUFSIZE","features":[11]},{"name":"D3DHALDP2_REQVERTEXBUFSIZE","features":[11]},{"name":"D3DHALDP2_SWAPCOMMANDBUFFER","features":[11]},{"name":"D3DHALDP2_SWAPVERTEXBUFFER","features":[11]},{"name":"D3DHALDP2_USERMEMVERTICES","features":[11]},{"name":"D3DHALDP2_VIDMEMCOMMANDBUF","features":[11]},{"name":"D3DHALDP2_VIDMEMVERTEXBUF","features":[11]},{"name":"D3DHALSTATE_GET_LIGHT","features":[11]},{"name":"D3DHALSTATE_GET_RENDER","features":[11]},{"name":"D3DHALSTATE_GET_TRANSFORM","features":[11]},{"name":"D3DHAL_CALLBACKS","features":[11,3,12,13,14]},{"name":"D3DHAL_CALLBACKS2","features":[11,3,12,13,14]},{"name":"D3DHAL_CALLBACKS3","features":[11,3,12,13,14]},{"name":"D3DHAL_CLEAR2DATA","features":[11,12]},{"name":"D3DHAL_CLEARDATA","features":[11,12]},{"name":"D3DHAL_CLIPPEDTRIANGLEFAN","features":[11]},{"name":"D3DHAL_COL_WEIGHTS","features":[11]},{"name":"D3DHAL_CONTEXTCREATEDATA","features":[11,3,13,14]},{"name":"D3DHAL_CONTEXTDESTROYALLDATA","features":[11]},{"name":"D3DHAL_CONTEXTDESTROYDATA","features":[11]},{"name":"D3DHAL_CONTEXT_BAD","features":[11]},{"name":"D3DHAL_D3DDX6EXTENDEDCAPS","features":[11]},{"name":"D3DHAL_D3DEXTENDEDCAPS","features":[11]},{"name":"D3DHAL_DP2ADDDIRTYBOX","features":[11,12]},{"name":"D3DHAL_DP2ADDDIRTYRECT","features":[11,3]},{"name":"D3DHAL_DP2BLT","features":[11,3]},{"name":"D3DHAL_DP2BUFFERBLT","features":[11,12]},{"name":"D3DHAL_DP2CLEAR","features":[11,3]},{"name":"D3DHAL_DP2COLORFILL","features":[11,3]},{"name":"D3DHAL_DP2COMMAND","features":[11]},{"name":"D3DHAL_DP2COMPOSERECTS","features":[11,12]},{"name":"D3DHAL_DP2CREATELIGHT","features":[11]},{"name":"D3DHAL_DP2CREATEPIXELSHADER","features":[11]},{"name":"D3DHAL_DP2CREATEQUERY","features":[11,12]},{"name":"D3DHAL_DP2CREATEVERTEXSHADER","features":[11]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERDECL","features":[11]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERFUNC","features":[11]},{"name":"D3DHAL_DP2DELETEQUERY","features":[11]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE","features":[11,12]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[11,12]},{"name":"D3DHAL_DP2DRAWPRIMITIVE","features":[11,12]},{"name":"D3DHAL_DP2DRAWPRIMITIVE2","features":[11,12]},{"name":"D3DHAL_DP2DRAWRECTPATCH","features":[11]},{"name":"D3DHAL_DP2DRAWTRIPATCH","features":[11]},{"name":"D3DHAL_DP2EXT","features":[11]},{"name":"D3DHAL_DP2GENERATEMIPSUBLEVELS","features":[11,12]},{"name":"D3DHAL_DP2INDEXEDLINELIST","features":[11]},{"name":"D3DHAL_DP2INDEXEDLINESTRIP","features":[11]},{"name":"D3DHAL_DP2INDEXEDTRIANGLEFAN","features":[11]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST","features":[11]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST2","features":[11]},{"name":"D3DHAL_DP2INDEXEDTRIANGLESTRIP","features":[11]},{"name":"D3DHAL_DP2ISSUEQUERY","features":[11]},{"name":"D3DHAL_DP2LINELIST","features":[11]},{"name":"D3DHAL_DP2LINESTRIP","features":[11]},{"name":"D3DHAL_DP2MULTIPLYTRANSFORM","features":[15,11,12]},{"name":"D3DHAL_DP2OPERATION","features":[11]},{"name":"D3DHAL_DP2PIXELSHADER","features":[11]},{"name":"D3DHAL_DP2POINTS","features":[11]},{"name":"D3DHAL_DP2RENDERSTATE","features":[11,12]},{"name":"D3DHAL_DP2RESPONSE","features":[11]},{"name":"D3DHAL_DP2RESPONSEQUERY","features":[11]},{"name":"D3DHAL_DP2SETCLIPPLANE","features":[11]},{"name":"D3DHAL_DP2SETCONVOLUTIONKERNELMONO","features":[11]},{"name":"D3DHAL_DP2SETDEPTHSTENCIL","features":[11]},{"name":"D3DHAL_DP2SETINDICES","features":[11]},{"name":"D3DHAL_DP2SETLIGHT","features":[11]},{"name":"D3DHAL_DP2SETPALETTE","features":[11]},{"name":"D3DHAL_DP2SETPIXELSHADERCONST","features":[11]},{"name":"D3DHAL_DP2SETPRIORITY","features":[11]},{"name":"D3DHAL_DP2SETRENDERTARGET","features":[11]},{"name":"D3DHAL_DP2SETRENDERTARGET2","features":[11]},{"name":"D3DHAL_DP2SETSTREAMSOURCE","features":[11]},{"name":"D3DHAL_DP2SETSTREAMSOURCE2","features":[11]},{"name":"D3DHAL_DP2SETSTREAMSOURCEFREQ","features":[11]},{"name":"D3DHAL_DP2SETSTREAMSOURCEUM","features":[11]},{"name":"D3DHAL_DP2SETTEXLOD","features":[11]},{"name":"D3DHAL_DP2SETTRANSFORM","features":[15,11,12]},{"name":"D3DHAL_DP2SETVERTEXSHADERCONST","features":[11]},{"name":"D3DHAL_DP2STARTVERTEX","features":[11]},{"name":"D3DHAL_DP2STATESET","features":[11,12]},{"name":"D3DHAL_DP2SURFACEBLT","features":[11,3]},{"name":"D3DHAL_DP2TEXBLT","features":[11,3]},{"name":"D3DHAL_DP2TEXTURESTAGESTATE","features":[11]},{"name":"D3DHAL_DP2TRIANGLEFAN","features":[11]},{"name":"D3DHAL_DP2TRIANGLEFAN_IMM","features":[11]},{"name":"D3DHAL_DP2TRIANGLELIST","features":[11]},{"name":"D3DHAL_DP2TRIANGLESTRIP","features":[11]},{"name":"D3DHAL_DP2UPDATEPALETTE","features":[11]},{"name":"D3DHAL_DP2VERTEXSHADER","features":[11]},{"name":"D3DHAL_DP2VIEWPORTINFO","features":[11]},{"name":"D3DHAL_DP2VOLUMEBLT","features":[11,12]},{"name":"D3DHAL_DP2WINFO","features":[11]},{"name":"D3DHAL_DP2ZRANGE","features":[11]},{"name":"D3DHAL_DRAWONEINDEXEDPRIMITIVEDATA","features":[11,12]},{"name":"D3DHAL_DRAWONEPRIMITIVEDATA","features":[11,12]},{"name":"D3DHAL_DRAWPRIMCOUNTS","features":[11]},{"name":"D3DHAL_DRAWPRIMITIVES2DATA","features":[11,3,13,14]},{"name":"D3DHAL_DRAWPRIMITIVESDATA","features":[11]},{"name":"D3DHAL_EXECUTE_ABORT","features":[11]},{"name":"D3DHAL_EXECUTE_NORMAL","features":[11]},{"name":"D3DHAL_EXECUTE_OVERRIDE","features":[11]},{"name":"D3DHAL_EXECUTE_UNHANDLED","features":[11]},{"name":"D3DHAL_GETSTATEDATA","features":[11,12]},{"name":"D3DHAL_GLOBALDRIVERDATA","features":[11,3,12,13]},{"name":"D3DHAL_MAX_RSTATES","features":[11]},{"name":"D3DHAL_MAX_RSTATES_DX6","features":[11]},{"name":"D3DHAL_MAX_RSTATES_DX7","features":[11]},{"name":"D3DHAL_MAX_RSTATES_DX8","features":[11]},{"name":"D3DHAL_MAX_RSTATES_DX9","features":[11]},{"name":"D3DHAL_MAX_TEXTURESTATES","features":[11]},{"name":"D3DHAL_NUMCLIPVERTICES","features":[11]},{"name":"D3DHAL_OUTOFCONTEXTS","features":[11]},{"name":"D3DHAL_RENDERPRIMITIVEDATA","features":[11,12]},{"name":"D3DHAL_RENDERSTATEDATA","features":[11]},{"name":"D3DHAL_ROW_WEIGHTS","features":[11]},{"name":"D3DHAL_SAMPLER_MAXSAMP","features":[11]},{"name":"D3DHAL_SAMPLER_MAXVERTEXSAMP","features":[11]},{"name":"D3DHAL_SCENECAPTUREDATA","features":[11]},{"name":"D3DHAL_SCENE_CAPTURE_END","features":[11]},{"name":"D3DHAL_SCENE_CAPTURE_START","features":[11]},{"name":"D3DHAL_SETLIGHT_DATA","features":[11]},{"name":"D3DHAL_SETLIGHT_DISABLE","features":[11]},{"name":"D3DHAL_SETLIGHT_ENABLE","features":[11]},{"name":"D3DHAL_SETRENDERTARGETDATA","features":[11,3,13,14]},{"name":"D3DHAL_STATESETBEGIN","features":[11]},{"name":"D3DHAL_STATESETCAPTURE","features":[11]},{"name":"D3DHAL_STATESETCREATE","features":[11]},{"name":"D3DHAL_STATESETDELETE","features":[11]},{"name":"D3DHAL_STATESETEND","features":[11]},{"name":"D3DHAL_STATESETEXECUTE","features":[11]},{"name":"D3DHAL_TEXTURECREATEDATA","features":[11]},{"name":"D3DHAL_TEXTUREDESTROYDATA","features":[11]},{"name":"D3DHAL_TEXTUREGETSURFDATA","features":[11]},{"name":"D3DHAL_TEXTURESTATEBUF_SIZE","features":[11]},{"name":"D3DHAL_TEXTURESWAPDATA","features":[11]},{"name":"D3DHAL_TSS_MAXSTAGES","features":[11]},{"name":"D3DHAL_TSS_RENDERSTATEBASE","features":[11]},{"name":"D3DHAL_TSS_STATESPERSTAGE","features":[11]},{"name":"D3DHAL_VALIDATETEXTURESTAGESTATEDATA","features":[11]},{"name":"D3DINFINITEINSTRUCTIONS","features":[11]},{"name":"D3DKMDT_2DREGION","features":[11]},{"name":"D3DKMDT_3x4_COLORSPACE_TRANSFORM","features":[11]},{"name":"D3DKMDT_BITS_PER_COMPONENT_06","features":[11]},{"name":"D3DKMDT_BITS_PER_COMPONENT_08","features":[11]},{"name":"D3DKMDT_BITS_PER_COMPONENT_10","features":[11]},{"name":"D3DKMDT_BITS_PER_COMPONENT_12","features":[11]},{"name":"D3DKMDT_BITS_PER_COMPONENT_14","features":[11]},{"name":"D3DKMDT_BITS_PER_COMPONENT_16","features":[11]},{"name":"D3DKMDT_CB_INTENSITY","features":[11]},{"name":"D3DKMDT_CB_SCRGB","features":[11]},{"name":"D3DKMDT_CB_SRGB","features":[11]},{"name":"D3DKMDT_CB_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_CB_YCBCR","features":[11]},{"name":"D3DKMDT_CB_YPBPR","features":[11]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_MATRIX_V2","features":[11]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[11]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_BYPASS","features":[11]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_ENABLE","features":[11]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_NO_CHANGE","features":[11]},{"name":"D3DKMDT_COLOR_BASIS","features":[11]},{"name":"D3DKMDT_COLOR_COEFF_DYNAMIC_RANGES","features":[11]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DISPATCH_BOUNDARY","features":[11]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[11]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_GRANULARITY","features":[11]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_NONE","features":[11]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_SHADER_BOUNDARY","features":[11]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_BOUNDARY","features":[11]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_GROUP_BOUNDARY","features":[11]},{"name":"D3DKMDT_DISPLAYMODE_FLAGS","features":[11]},{"name":"D3DKMDT_ENUMCOFUNCMODALITY_PIVOT_TYPE","features":[11]},{"name":"D3DKMDT_EPT_NOPIVOT","features":[11]},{"name":"D3DKMDT_EPT_ROTATION","features":[11]},{"name":"D3DKMDT_EPT_SCALING","features":[11]},{"name":"D3DKMDT_EPT_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_EPT_VIDPNSOURCE","features":[11]},{"name":"D3DKMDT_EPT_VIDPNTARGET","features":[11]},{"name":"D3DKMDT_FREQUENCY_RANGE","features":[11]},{"name":"D3DKMDT_GAMMA_RAMP","features":[11]},{"name":"D3DKMDT_GDISURFACEDATA","features":[11]},{"name":"D3DKMDT_GDISURFACEFLAGS","features":[11]},{"name":"D3DKMDT_GDISURFACETYPE","features":[11]},{"name":"D3DKMDT_GDISURFACE_EXISTINGSYSMEM","features":[11]},{"name":"D3DKMDT_GDISURFACE_INVALID","features":[11]},{"name":"D3DKMDT_GDISURFACE_LOOKUPTABLE","features":[11]},{"name":"D3DKMDT_GDISURFACE_STAGING","features":[11]},{"name":"D3DKMDT_GDISURFACE_STAGING_CPUVISIBLE","features":[11]},{"name":"D3DKMDT_GDISURFACE_TEXTURE","features":[11]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE","features":[11]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE_CROSSADAPTER","features":[11]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CROSSADAPTER","features":[11]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[11]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_GRANULARITY","features":[11]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_NONE","features":[11]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PIXEL_BOUNDARY","features":[11]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PRIMITIVE_BOUNDARY","features":[11]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_SHADER_BOUNDARY","features":[11]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_TRIANGLE_BOUNDARY","features":[11]},{"name":"D3DKMDT_GRAPHICS_RENDERING_FORMAT","features":[11]},{"name":"D3DKMDT_GTFCOMPLIANCE","features":[11]},{"name":"D3DKMDT_GTF_COMPLIANT","features":[11]},{"name":"D3DKMDT_GTF_NOTCOMPLIANT","features":[11]},{"name":"D3DKMDT_GTF_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MACROVISION_OEMCOPYPROTECTION_SIZE","features":[11]},{"name":"D3DKMDT_MAX_OVERLAYS_BITCOUNT","features":[11]},{"name":"D3DKMDT_MAX_VIDPN_SOURCES_BITCOUNT","features":[11]},{"name":"D3DKMDT_MCC_ENFORCE","features":[11]},{"name":"D3DKMDT_MCC_IGNORE","features":[11]},{"name":"D3DKMDT_MCC_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MCO_DEFAULTMONITORPROFILE","features":[11]},{"name":"D3DKMDT_MCO_DRIVER","features":[11]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR","features":[11]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR_REGISTRYOVERRIDE","features":[11]},{"name":"D3DKMDT_MCO_SPECIFICCAP_REGISTRYOVERRIDE","features":[11]},{"name":"D3DKMDT_MCO_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MDT_OTHER","features":[11]},{"name":"D3DKMDT_MDT_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BASEBLOCK","features":[11]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BLOCKMAP","features":[11]},{"name":"D3DKMDT_MFRC_ACTIVESIZE","features":[11]},{"name":"D3DKMDT_MFRC_MAXPIXELRATE","features":[11]},{"name":"D3DKMDT_MFRC_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MOA_INTERRUPTIBLE","features":[11]},{"name":"D3DKMDT_MOA_NONE","features":[11]},{"name":"D3DKMDT_MOA_POLLED","features":[11]},{"name":"D3DKMDT_MOA_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MODE_PREFERENCE","features":[11]},{"name":"D3DKMDT_MODE_PRUNING_REASON","features":[11]},{"name":"D3DKMDT_MONITOR_CAPABILITIES_ORIGIN","features":[11]},{"name":"D3DKMDT_MONITOR_CONNECTIVITY_CHECKS","features":[11]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR","features":[11]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR_TYPE","features":[11]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE","features":[11]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE_CONSTRAINT","features":[11]},{"name":"D3DKMDT_MONITOR_ORIENTATION","features":[11]},{"name":"D3DKMDT_MONITOR_ORIENTATION_AWARENESS","features":[11]},{"name":"D3DKMDT_MONITOR_SOURCE_MODE","features":[11]},{"name":"D3DKMDT_MONITOR_TIMING_TYPE","features":[11]},{"name":"D3DKMDT_MO_0DEG","features":[11]},{"name":"D3DKMDT_MO_180DEG","features":[11]},{"name":"D3DKMDT_MO_270DEG","features":[11]},{"name":"D3DKMDT_MO_90DEG","features":[11]},{"name":"D3DKMDT_MO_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MPR_ALLCAPS","features":[11]},{"name":"D3DKMDT_MPR_CLONE_PATH_PRUNED","features":[11]},{"name":"D3DKMDT_MPR_DEFAULT_PROFILE_MONITOR_SOURCE_MODE","features":[11]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_FREQUENCY_RANGE","features":[11]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_SOURCE_MODE","features":[11]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_FREQUENCY_RANGE","features":[11]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_SOURCE_MODE","features":[11]},{"name":"D3DKMDT_MPR_DRIVER_RECOMMENDED_MONITOR_SOURCE_MODE","features":[11]},{"name":"D3DKMDT_MPR_MAXVALID","features":[11]},{"name":"D3DKMDT_MPR_MONITOR_FREQUENCY_RANGE_OVERRIDE","features":[11]},{"name":"D3DKMDT_MPR_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MP_NOTPREFERRED","features":[11]},{"name":"D3DKMDT_MP_PREFERRED","features":[11]},{"name":"D3DKMDT_MP_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_MTT_DEFAULTMONITORPROFILE","features":[11]},{"name":"D3DKMDT_MTT_DETAILED","features":[11]},{"name":"D3DKMDT_MTT_DRIVER","features":[11]},{"name":"D3DKMDT_MTT_ESTABLISHED","features":[11]},{"name":"D3DKMDT_MTT_EXTRASTANDARD","features":[11]},{"name":"D3DKMDT_MTT_STANDARD","features":[11]},{"name":"D3DKMDT_MTT_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_PALETTEDATA","features":[11]},{"name":"D3DKMDT_PIXEL_VALUE_ACCESS_MODE","features":[11]},{"name":"D3DKMDT_PREEMPTION_CAPS","features":[11]},{"name":"D3DKMDT_PVAM_DIRECT","features":[11]},{"name":"D3DKMDT_PVAM_PRESETPALETTE","features":[11]},{"name":"D3DKMDT_PVAM_SETTABLEPALETTE","features":[11]},{"name":"D3DKMDT_PVAM_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_RMT_GRAPHICS","features":[11]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO","features":[11]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO_ADVANCED_SCAN","features":[11]},{"name":"D3DKMDT_RMT_TEXT","features":[11]},{"name":"D3DKMDT_RMT_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_SHADOWSURFACEDATA","features":[11]},{"name":"D3DKMDT_SHAREDPRIMARYSURFACEDATA","features":[11]},{"name":"D3DKMDT_STAGINGSURFACEDATA","features":[11]},{"name":"D3DKMDT_STANDARDALLOCATION_GDISURFACE","features":[11]},{"name":"D3DKMDT_STANDARDALLOCATION_SHADOWSURFACE","features":[11]},{"name":"D3DKMDT_STANDARDALLOCATION_SHAREDPRIMARYSURFACE","features":[11]},{"name":"D3DKMDT_STANDARDALLOCATION_STAGINGSURFACE","features":[11]},{"name":"D3DKMDT_STANDARDALLOCATION_TYPE","features":[11]},{"name":"D3DKMDT_STANDARDALLOCATION_VGPU","features":[11]},{"name":"D3DKMDT_TEXT_RENDERING_FORMAT","features":[11]},{"name":"D3DKMDT_TRF_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VIDEO_OUTPUT_TECHNOLOGY","features":[11]},{"name":"D3DKMDT_VIDEO_PRESENT_SOURCE","features":[11]},{"name":"D3DKMDT_VIDEO_PRESENT_TARGET","features":[11,3]},{"name":"D3DKMDT_VIDEO_SIGNAL_INFO","features":[11]},{"name":"D3DKMDT_VIDEO_SIGNAL_STANDARD","features":[11]},{"name":"D3DKMDT_VIDPN_HW_CAPABILITY","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_CONTENT","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_SUPPORT","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_TYPE","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_IMPORTANCE","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION_SUPPORT","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING_SUPPORT","features":[11]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_TRANSFORMATION","features":[11]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE","features":[11]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE_TYPE","features":[11]},{"name":"D3DKMDT_VIDPN_TARGET_MODE","features":[11]},{"name":"D3DKMDT_VIRTUALGPUSURFACEDATA","features":[11]},{"name":"D3DKMDT_VOT_BNC","features":[11]},{"name":"D3DKMDT_VOT_COMPONENT_VIDEO","features":[11]},{"name":"D3DKMDT_VOT_COMPOSITE_VIDEO","features":[11]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EMBEDDED","features":[11]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EXTERNAL","features":[11]},{"name":"D3DKMDT_VOT_DVI","features":[11]},{"name":"D3DKMDT_VOT_D_JPN","features":[11]},{"name":"D3DKMDT_VOT_HD15","features":[11]},{"name":"D3DKMDT_VOT_HDMI","features":[11]},{"name":"D3DKMDT_VOT_INDIRECT_WIRED","features":[11]},{"name":"D3DKMDT_VOT_INTERNAL","features":[11]},{"name":"D3DKMDT_VOT_LVDS","features":[11]},{"name":"D3DKMDT_VOT_MIRACAST","features":[11]},{"name":"D3DKMDT_VOT_OTHER","features":[11]},{"name":"D3DKMDT_VOT_RCA_3COMPONENT","features":[11]},{"name":"D3DKMDT_VOT_RF","features":[11]},{"name":"D3DKMDT_VOT_SDI","features":[11]},{"name":"D3DKMDT_VOT_SDTVDONGLE","features":[11]},{"name":"D3DKMDT_VOT_SVIDEO","features":[11]},{"name":"D3DKMDT_VOT_SVIDEO_4PIN","features":[11]},{"name":"D3DKMDT_VOT_SVIDEO_7PIN","features":[11]},{"name":"D3DKMDT_VOT_UDI_EMBEDDED","features":[11]},{"name":"D3DKMDT_VOT_UDI_EXTERNAL","features":[11]},{"name":"D3DKMDT_VOT_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VPPC_GRAPHICS","features":[11]},{"name":"D3DKMDT_VPPC_NOTSPECIFIED","features":[11]},{"name":"D3DKMDT_VPPC_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VPPC_VIDEO","features":[11]},{"name":"D3DKMDT_VPPI_DENARY","features":[11]},{"name":"D3DKMDT_VPPI_NONARY","features":[11]},{"name":"D3DKMDT_VPPI_OCTONARY","features":[11]},{"name":"D3DKMDT_VPPI_PRIMARY","features":[11]},{"name":"D3DKMDT_VPPI_QUATERNARY","features":[11]},{"name":"D3DKMDT_VPPI_QUINARY","features":[11]},{"name":"D3DKMDT_VPPI_SECONDARY","features":[11]},{"name":"D3DKMDT_VPPI_SENARY","features":[11]},{"name":"D3DKMDT_VPPI_SEPTENARY","features":[11]},{"name":"D3DKMDT_VPPI_TERTIARY","features":[11]},{"name":"D3DKMDT_VPPI_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VPPMT_MACROVISION_APSTRIGGER","features":[11]},{"name":"D3DKMDT_VPPMT_MACROVISION_FULLSUPPORT","features":[11]},{"name":"D3DKMDT_VPPMT_NOPROTECTION","features":[11]},{"name":"D3DKMDT_VPPMT_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VPPR_IDENTITY","features":[11]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET180","features":[11]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET270","features":[11]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET90","features":[11]},{"name":"D3DKMDT_VPPR_NOTSPECIFIED","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE180","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET180","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET270","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET90","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE270","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET180","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET270","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET90","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE90","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET180","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET270","features":[11]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET90","features":[11]},{"name":"D3DKMDT_VPPR_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VPPR_UNPINNED","features":[11]},{"name":"D3DKMDT_VPPS_ASPECTRATIOCENTEREDMAX","features":[11]},{"name":"D3DKMDT_VPPS_CENTERED","features":[11]},{"name":"D3DKMDT_VPPS_CUSTOM","features":[11]},{"name":"D3DKMDT_VPPS_IDENTITY","features":[11]},{"name":"D3DKMDT_VPPS_NOTSPECIFIED","features":[11]},{"name":"D3DKMDT_VPPS_RESERVED1","features":[11]},{"name":"D3DKMDT_VPPS_STRETCHED","features":[11]},{"name":"D3DKMDT_VPPS_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VPPS_UNPINNED","features":[11]},{"name":"D3DKMDT_VSS_APPLE","features":[11]},{"name":"D3DKMDT_VSS_EIA_861","features":[11]},{"name":"D3DKMDT_VSS_EIA_861A","features":[11]},{"name":"D3DKMDT_VSS_EIA_861B","features":[11]},{"name":"D3DKMDT_VSS_IBM","features":[11]},{"name":"D3DKMDT_VSS_NTSC_443","features":[11]},{"name":"D3DKMDT_VSS_NTSC_J","features":[11]},{"name":"D3DKMDT_VSS_NTSC_M","features":[11]},{"name":"D3DKMDT_VSS_OTHER","features":[11]},{"name":"D3DKMDT_VSS_PAL_B","features":[11]},{"name":"D3DKMDT_VSS_PAL_B1","features":[11]},{"name":"D3DKMDT_VSS_PAL_D","features":[11]},{"name":"D3DKMDT_VSS_PAL_G","features":[11]},{"name":"D3DKMDT_VSS_PAL_H","features":[11]},{"name":"D3DKMDT_VSS_PAL_I","features":[11]},{"name":"D3DKMDT_VSS_PAL_K","features":[11]},{"name":"D3DKMDT_VSS_PAL_K1","features":[11]},{"name":"D3DKMDT_VSS_PAL_L","features":[11]},{"name":"D3DKMDT_VSS_PAL_M","features":[11]},{"name":"D3DKMDT_VSS_PAL_N","features":[11]},{"name":"D3DKMDT_VSS_PAL_NC","features":[11]},{"name":"D3DKMDT_VSS_SECAM_B","features":[11]},{"name":"D3DKMDT_VSS_SECAM_D","features":[11]},{"name":"D3DKMDT_VSS_SECAM_G","features":[11]},{"name":"D3DKMDT_VSS_SECAM_H","features":[11]},{"name":"D3DKMDT_VSS_SECAM_K","features":[11]},{"name":"D3DKMDT_VSS_SECAM_K1","features":[11]},{"name":"D3DKMDT_VSS_SECAM_L","features":[11]},{"name":"D3DKMDT_VSS_SECAM_L1","features":[11]},{"name":"D3DKMDT_VSS_UNINITIALIZED","features":[11]},{"name":"D3DKMDT_VSS_VESA_CVT","features":[11]},{"name":"D3DKMDT_VSS_VESA_DMT","features":[11]},{"name":"D3DKMDT_VSS_VESA_GTF","features":[11]},{"name":"D3DKMDT_WIRE_FORMAT_AND_PREFERENCE","features":[11]},{"name":"D3DKMTAcquireKeyedMutex","features":[11,3]},{"name":"D3DKMTAcquireKeyedMutex2","features":[11,3]},{"name":"D3DKMTAdjustFullscreenGamma","features":[11,3]},{"name":"D3DKMTCancelPresents","features":[11,3]},{"name":"D3DKMTChangeSurfacePointer","features":[11,3,14]},{"name":"D3DKMTChangeVideoMemoryReservation","features":[11,3]},{"name":"D3DKMTCheckExclusiveOwnership","features":[11,3]},{"name":"D3DKMTCheckMonitorPowerState","features":[11,3]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport","features":[11,3]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport2","features":[11,3]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport3","features":[11,3]},{"name":"D3DKMTCheckOcclusion","features":[11,3]},{"name":"D3DKMTCheckSharedResourceAccess","features":[11,3]},{"name":"D3DKMTCheckVidPnExclusiveOwnership","features":[11,3]},{"name":"D3DKMTCloseAdapter","features":[11,3]},{"name":"D3DKMTConfigureSharedResource","features":[11,3]},{"name":"D3DKMTCreateAllocation","features":[11,3]},{"name":"D3DKMTCreateAllocation2","features":[11,3]},{"name":"D3DKMTCreateContext","features":[11,3]},{"name":"D3DKMTCreateContextVirtual","features":[11,3]},{"name":"D3DKMTCreateDCFromMemory","features":[11,3,14]},{"name":"D3DKMTCreateDevice","features":[11,3]},{"name":"D3DKMTCreateHwContext","features":[11,3]},{"name":"D3DKMTCreateHwQueue","features":[11,3]},{"name":"D3DKMTCreateKeyedMutex","features":[11,3]},{"name":"D3DKMTCreateKeyedMutex2","features":[11,3]},{"name":"D3DKMTCreateOutputDupl","features":[11,3]},{"name":"D3DKMTCreateOverlay","features":[11,3]},{"name":"D3DKMTCreatePagingQueue","features":[11,3]},{"name":"D3DKMTCreateProtectedSession","features":[11,3]},{"name":"D3DKMTCreateSynchronizationObject","features":[11,3]},{"name":"D3DKMTCreateSynchronizationObject2","features":[11,3]},{"name":"D3DKMTDestroyAllocation","features":[11,3]},{"name":"D3DKMTDestroyAllocation2","features":[11,3]},{"name":"D3DKMTDestroyContext","features":[11,3]},{"name":"D3DKMTDestroyDCFromMemory","features":[11,3,14]},{"name":"D3DKMTDestroyDevice","features":[11,3]},{"name":"D3DKMTDestroyHwContext","features":[11,3]},{"name":"D3DKMTDestroyHwQueue","features":[11,3]},{"name":"D3DKMTDestroyKeyedMutex","features":[11,3]},{"name":"D3DKMTDestroyOutputDupl","features":[11,3]},{"name":"D3DKMTDestroyOverlay","features":[11,3]},{"name":"D3DKMTDestroyPagingQueue","features":[11,3]},{"name":"D3DKMTDestroyProtectedSession","features":[11,3]},{"name":"D3DKMTDestroySynchronizationObject","features":[11,3]},{"name":"D3DKMTEnumAdapters","features":[11,3]},{"name":"D3DKMTEnumAdapters2","features":[11,3]},{"name":"D3DKMTEnumAdapters3","features":[11,3]},{"name":"D3DKMTEscape","features":[11,3]},{"name":"D3DKMTEvict","features":[11,3]},{"name":"D3DKMTFlipOverlay","features":[11,3]},{"name":"D3DKMTFlushHeapTransitions","features":[11,3]},{"name":"D3DKMTFreeGpuVirtualAddress","features":[11,3]},{"name":"D3DKMTGetAllocationPriority","features":[11,3]},{"name":"D3DKMTGetContextInProcessSchedulingPriority","features":[11,3]},{"name":"D3DKMTGetContextSchedulingPriority","features":[11,3]},{"name":"D3DKMTGetDWMVerticalBlankEvent","features":[11,3]},{"name":"D3DKMTGetDeviceState","features":[11,3]},{"name":"D3DKMTGetDisplayModeList","features":[11,3]},{"name":"D3DKMTGetMultiPlaneOverlayCaps","features":[11,3]},{"name":"D3DKMTGetMultisampleMethodList","features":[11,3]},{"name":"D3DKMTGetOverlayState","features":[11,3]},{"name":"D3DKMTGetPostCompositionCaps","features":[11,3]},{"name":"D3DKMTGetPresentHistory","features":[11,3]},{"name":"D3DKMTGetPresentQueueEvent","features":[11,3]},{"name":"D3DKMTGetProcessDeviceRemovalSupport","features":[11,3]},{"name":"D3DKMTGetProcessSchedulingPriorityClass","features":[11,3]},{"name":"D3DKMTGetResourcePresentPrivateDriverData","features":[11,3]},{"name":"D3DKMTGetRuntimeData","features":[11,3]},{"name":"D3DKMTGetScanLine","features":[11,3]},{"name":"D3DKMTGetSharedPrimaryHandle","features":[11,3]},{"name":"D3DKMTGetSharedResourceAdapterLuid","features":[11,3]},{"name":"D3DKMTInvalidateActiveVidPn","features":[11,3]},{"name":"D3DKMTInvalidateCache","features":[11,3]},{"name":"D3DKMTLock","features":[11,3]},{"name":"D3DKMTLock2","features":[11,3]},{"name":"D3DKMTMakeResident","features":[11,3]},{"name":"D3DKMTMapGpuVirtualAddress","features":[11,3]},{"name":"D3DKMTMarkDeviceAsError","features":[11,3]},{"name":"D3DKMTOfferAllocations","features":[11,3]},{"name":"D3DKMTOpenAdapterFromDeviceName","features":[11,3]},{"name":"D3DKMTOpenAdapterFromGdiDisplayName","features":[11,3]},{"name":"D3DKMTOpenAdapterFromHdc","features":[11,3,14]},{"name":"D3DKMTOpenAdapterFromLuid","features":[11,3]},{"name":"D3DKMTOpenKeyedMutex","features":[11,3]},{"name":"D3DKMTOpenKeyedMutex2","features":[11,3]},{"name":"D3DKMTOpenKeyedMutexFromNtHandle","features":[11,3]},{"name":"D3DKMTOpenNtHandleFromName","features":[4,11,3]},{"name":"D3DKMTOpenProtectedSessionFromNtHandle","features":[11,3]},{"name":"D3DKMTOpenResource","features":[11,3]},{"name":"D3DKMTOpenResource2","features":[11,3]},{"name":"D3DKMTOpenResourceFromNtHandle","features":[11,3]},{"name":"D3DKMTOpenSyncObjectFromNtHandle","features":[11,3]},{"name":"D3DKMTOpenSyncObjectFromNtHandle2","features":[11,3]},{"name":"D3DKMTOpenSyncObjectNtHandleFromName","features":[4,11,3]},{"name":"D3DKMTOpenSynchronizationObject","features":[11,3]},{"name":"D3DKMTOutputDuplGetFrameInfo","features":[11,3]},{"name":"D3DKMTOutputDuplGetMetaData","features":[11,3]},{"name":"D3DKMTOutputDuplGetPointerShapeData","features":[11,3]},{"name":"D3DKMTOutputDuplPresent","features":[11,3]},{"name":"D3DKMTOutputDuplPresentToHwQueue","features":[11,3]},{"name":"D3DKMTOutputDuplReleaseFrame","features":[11,3]},{"name":"D3DKMTPollDisplayChildren","features":[11,3]},{"name":"D3DKMTPresent","features":[11,3]},{"name":"D3DKMTPresentMultiPlaneOverlay","features":[11,3]},{"name":"D3DKMTPresentMultiPlaneOverlay2","features":[11,3]},{"name":"D3DKMTPresentMultiPlaneOverlay3","features":[11,3]},{"name":"D3DKMTPresentRedirected","features":[11,3]},{"name":"D3DKMTQueryAdapterInfo","features":[11,3]},{"name":"D3DKMTQueryAllocationResidency","features":[11,3]},{"name":"D3DKMTQueryClockCalibration","features":[11,3]},{"name":"D3DKMTQueryFSEBlock","features":[11,3]},{"name":"D3DKMTQueryProcessOfferInfo","features":[11,3]},{"name":"D3DKMTQueryProtectedSessionInfoFromNtHandle","features":[11,3]},{"name":"D3DKMTQueryProtectedSessionStatus","features":[11,3]},{"name":"D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName","features":[11,3]},{"name":"D3DKMTQueryResourceInfo","features":[11,3]},{"name":"D3DKMTQueryResourceInfoFromNtHandle","features":[11,3]},{"name":"D3DKMTQueryStatistics","features":[11,3]},{"name":"D3DKMTQueryVidPnExclusiveOwnership","features":[11,3]},{"name":"D3DKMTQueryVideoMemoryInfo","features":[11,3]},{"name":"D3DKMTReclaimAllocations","features":[11,3]},{"name":"D3DKMTReclaimAllocations2","features":[11,3]},{"name":"D3DKMTRegisterTrimNotification","features":[11,3]},{"name":"D3DKMTRegisterVailProcess","features":[11,3]},{"name":"D3DKMTReleaseKeyedMutex","features":[11,3]},{"name":"D3DKMTReleaseKeyedMutex2","features":[11,3]},{"name":"D3DKMTReleaseProcessVidPnSourceOwners","features":[11,3]},{"name":"D3DKMTRender","features":[11,3]},{"name":"D3DKMTReserveGpuVirtualAddress","features":[11,3]},{"name":"D3DKMTSetAllocationPriority","features":[11,3]},{"name":"D3DKMTSetContextInProcessSchedulingPriority","features":[11,3]},{"name":"D3DKMTSetContextSchedulingPriority","features":[11,3]},{"name":"D3DKMTSetDisplayMode","features":[11,3]},{"name":"D3DKMTSetDisplayPrivateDriverFormat","features":[11,3]},{"name":"D3DKMTSetFSEBlock","features":[11,3]},{"name":"D3DKMTSetGammaRamp","features":[11,3]},{"name":"D3DKMTSetHwProtectionTeardownRecovery","features":[11,3]},{"name":"D3DKMTSetMonitorColorSpaceTransform","features":[11,3]},{"name":"D3DKMTSetProcessSchedulingPriorityClass","features":[11,3]},{"name":"D3DKMTSetQueuedLimit","features":[11,3]},{"name":"D3DKMTSetStablePowerState","features":[11,3]},{"name":"D3DKMTSetSyncRefreshCountWaitTarget","features":[11,3]},{"name":"D3DKMTSetVidPnSourceHwProtection","features":[11,3]},{"name":"D3DKMTSetVidPnSourceOwner","features":[11,3]},{"name":"D3DKMTSetVidPnSourceOwner1","features":[11,3]},{"name":"D3DKMTSetVidPnSourceOwner2","features":[11,3]},{"name":"D3DKMTShareObjects","features":[4,11,3]},{"name":"D3DKMTSharedPrimaryLockNotification","features":[11,3]},{"name":"D3DKMTSharedPrimaryUnLockNotification","features":[11,3]},{"name":"D3DKMTSignalSynchronizationObject","features":[11,3]},{"name":"D3DKMTSignalSynchronizationObject2","features":[11,3]},{"name":"D3DKMTSignalSynchronizationObjectFromCpu","features":[11,3]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu","features":[11,3]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu2","features":[11,3]},{"name":"D3DKMTSubmitCommand","features":[11,3]},{"name":"D3DKMTSubmitCommandToHwQueue","features":[11,3]},{"name":"D3DKMTSubmitPresentBltToHwQueue","features":[11,3]},{"name":"D3DKMTSubmitPresentToHwQueue","features":[11,3]},{"name":"D3DKMTSubmitSignalSyncObjectsToHwQueue","features":[11,3]},{"name":"D3DKMTSubmitWaitForSyncObjectsToHwQueue","features":[11,3]},{"name":"D3DKMTTrimProcessCommitment","features":[11,3]},{"name":"D3DKMTUnlock","features":[11,3]},{"name":"D3DKMTUnlock2","features":[11,3]},{"name":"D3DKMTUnregisterTrimNotification","features":[11,3]},{"name":"D3DKMTUpdateAllocationProperty","features":[11,3]},{"name":"D3DKMTUpdateGpuVirtualAddress","features":[11,3]},{"name":"D3DKMTUpdateOverlay","features":[11,3]},{"name":"D3DKMTWaitForIdle","features":[11,3]},{"name":"D3DKMTWaitForSynchronizationObject","features":[11,3]},{"name":"D3DKMTWaitForSynchronizationObject2","features":[11,3]},{"name":"D3DKMTWaitForSynchronizationObjectFromCpu","features":[11,3]},{"name":"D3DKMTWaitForSynchronizationObjectFromGpu","features":[11,3]},{"name":"D3DKMTWaitForVerticalBlankEvent","features":[11,3]},{"name":"D3DKMTWaitForVerticalBlankEvent2","features":[11,3]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX","features":[11]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX2","features":[11]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_ESCAPE","features":[11,3]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE","features":[11]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_EXTRA_CCD_DATABASE_INFO","features":[11]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_MODES_PRUNED","features":[11]},{"name":"D3DKMT_ADAPTERADDRESS","features":[11]},{"name":"D3DKMT_ADAPTERINFO","features":[11,3]},{"name":"D3DKMT_ADAPTERREGISTRYINFO","features":[11]},{"name":"D3DKMT_ADAPTERTYPE","features":[11]},{"name":"D3DKMT_ADAPTER_PERFDATA","features":[11]},{"name":"D3DKMT_ADAPTER_PERFDATACAPS","features":[11]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION","features":[11]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_DATA","features":[11]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_TYPE","features":[11]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_FLAGS","features":[11]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_TRIM_INTERVAL","features":[11]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_FLAGS","features":[11]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_TRIM_INTERVAL","features":[11]},{"name":"D3DKMT_ADJUSTFULLSCREENGAMMA","features":[11]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS","features":[11]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_NOTRESIDENT","features":[11]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINGPUMEMORY","features":[11]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINSHAREDMEMORY","features":[11]},{"name":"D3DKMT_AUXILIARYPRESENTINFO","features":[11]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE","features":[11]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE_FLIPMANAGER","features":[11]},{"name":"D3DKMT_AllocationPriorityClassHigh","features":[11]},{"name":"D3DKMT_AllocationPriorityClassLow","features":[11]},{"name":"D3DKMT_AllocationPriorityClassMaximum","features":[11]},{"name":"D3DKMT_AllocationPriorityClassMinimum","features":[11]},{"name":"D3DKMT_AllocationPriorityClassNormal","features":[11]},{"name":"D3DKMT_BDDFALLBACK_CTL","features":[11,3]},{"name":"D3DKMT_BLOCKLIST_INFO","features":[11]},{"name":"D3DKMT_BLTMODEL_PRESENTHISTORYTOKEN","features":[11,3]},{"name":"D3DKMT_BRIGHTNESS_INFO","features":[11,3]},{"name":"D3DKMT_BRIGHTNESS_INFO_BEGIN_MANUAL_MODE","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_END_MANUAL_MODE","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_CAPS","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_NIT_RANGES","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_POSSIBLE_LEVELS","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_REDUCTION","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_OPTIMIZATION","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_STATE","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_TOGGLE_LOGGING","features":[11]},{"name":"D3DKMT_BRIGHTNESS_INFO_TYPE","features":[11]},{"name":"D3DKMT_BRIGHTNESS_POSSIBLE_LEVELS","features":[11]},{"name":"D3DKMT_BUDGETCHANGENOTIFICATION","features":[11]},{"name":"D3DKMT_CANCEL_PRESENTS","features":[11,3]},{"name":"D3DKMT_CANCEL_PRESENTS_FLAGS","features":[11]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION","features":[11]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_CANCEL_FROM","features":[11]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_REPROGRAM_INTERRUPT","features":[11]},{"name":"D3DKMT_CHANGESURFACEPOINTER","features":[11,3,14]},{"name":"D3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[11,3]},{"name":"D3DKMT_CHECKMONITORPOWERSTATE","features":[11]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[11,3]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[11,3]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[11,3]},{"name":"D3DKMT_CHECKOCCLUSION","features":[11,3]},{"name":"D3DKMT_CHECKSHAREDRESOURCEACCESS","features":[11]},{"name":"D3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[11]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE","features":[11,3]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE2","features":[11,3]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE3","features":[11,3]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO","features":[11]},{"name":"D3DKMT_CLIENTHINT","features":[11]},{"name":"D3DKMT_CLIENTHINT_11ON12","features":[11]},{"name":"D3DKMT_CLIENTHINT_9ON12","features":[11]},{"name":"D3DKMT_CLIENTHINT_CDD","features":[11]},{"name":"D3DKMT_CLIENTHINT_CLON12","features":[11]},{"name":"D3DKMT_CLIENTHINT_CUDA","features":[11]},{"name":"D3DKMT_CLIENTHINT_DML_PYTORCH","features":[11]},{"name":"D3DKMT_CLIENTHINT_DML_TENSORFLOW","features":[11]},{"name":"D3DKMT_CLIENTHINT_DX10","features":[11]},{"name":"D3DKMT_CLIENTHINT_DX11","features":[11]},{"name":"D3DKMT_CLIENTHINT_DX12","features":[11]},{"name":"D3DKMT_CLIENTHINT_DX7","features":[11]},{"name":"D3DKMT_CLIENTHINT_DX8","features":[11]},{"name":"D3DKMT_CLIENTHINT_DX9","features":[11]},{"name":"D3DKMT_CLIENTHINT_GLON12","features":[11]},{"name":"D3DKMT_CLIENTHINT_MAX","features":[11]},{"name":"D3DKMT_CLIENTHINT_MFT_ENCODE","features":[11]},{"name":"D3DKMT_CLIENTHINT_ONEAPI_LEVEL0","features":[11]},{"name":"D3DKMT_CLIENTHINT_OPENCL","features":[11]},{"name":"D3DKMT_CLIENTHINT_OPENGL","features":[11]},{"name":"D3DKMT_CLIENTHINT_RESERVED","features":[11]},{"name":"D3DKMT_CLIENTHINT_UNKNOWN","features":[11]},{"name":"D3DKMT_CLIENTHINT_VULKAN","features":[11]},{"name":"D3DKMT_CLOSEADAPTER","features":[11]},{"name":"D3DKMT_COMPOSITION_PRESENTHISTORYTOKEN","features":[11]},{"name":"D3DKMT_CONFIGURESHAREDRESOURCE","features":[11,3]},{"name":"D3DKMT_CONNECT_DOORBELL","features":[11]},{"name":"D3DKMT_CONNECT_DOORBELL_FLAGS","features":[11]},{"name":"D3DKMT_CPDRIVERNAME","features":[11]},{"name":"D3DKMT_CREATEALLOCATION","features":[11,3]},{"name":"D3DKMT_CREATEALLOCATIONFLAGS","features":[11]},{"name":"D3DKMT_CREATECONTEXT","features":[11]},{"name":"D3DKMT_CREATECONTEXTVIRTUAL","features":[11]},{"name":"D3DKMT_CREATEDCFROMMEMORY","features":[11,3,14]},{"name":"D3DKMT_CREATEDEVICE","features":[11]},{"name":"D3DKMT_CREATEDEVICEFLAGS","features":[11]},{"name":"D3DKMT_CREATEHWCONTEXT","features":[11]},{"name":"D3DKMT_CREATEHWQUEUE","features":[11]},{"name":"D3DKMT_CREATEKEYEDMUTEX","features":[11]},{"name":"D3DKMT_CREATEKEYEDMUTEX2","features":[11]},{"name":"D3DKMT_CREATEKEYEDMUTEX2_FLAGS","features":[11]},{"name":"D3DKMT_CREATENATIVEFENCE","features":[11]},{"name":"D3DKMT_CREATEOVERLAY","features":[11]},{"name":"D3DKMT_CREATEPAGINGQUEUE","features":[11]},{"name":"D3DKMT_CREATEPROTECTEDSESSION","features":[11]},{"name":"D3DKMT_CREATESTANDARDALLOCATION","features":[11]},{"name":"D3DKMT_CREATESTANDARDALLOCATIONFLAGS","features":[11]},{"name":"D3DKMT_CREATESYNCFILE","features":[11]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[11,3]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[11,3]},{"name":"D3DKMT_CREATE_DOORBELL","features":[11]},{"name":"D3DKMT_CREATE_DOORBELL_FLAGS","features":[11]},{"name":"D3DKMT_CREATE_OUTPUTDUPL","features":[11,3]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT","features":[11]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER","features":[11]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_COPY","features":[11]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_NONE","features":[11]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_SCANOUT","features":[11]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_TEXTURE","features":[11]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_HEIGHT_ALIGNMENT","features":[11]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_PITCH_ALIGNMENT","features":[11]},{"name":"D3DKMT_CURRENTDISPLAYMODE","features":[11]},{"name":"D3DKMT_ClientPagingBuffer","features":[11]},{"name":"D3DKMT_ClientRenderBuffer","features":[11]},{"name":"D3DKMT_DEBUG_SNAPSHOT_ESCAPE","features":[11]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_DOWNWARD","features":[11]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_PASS","features":[11]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_UPWARD","features":[11]},{"name":"D3DKMT_DEFRAG_ESCAPE_GET_FRAGMENTATION_STATS","features":[11]},{"name":"D3DKMT_DEFRAG_ESCAPE_OPERATION","features":[11]},{"name":"D3DKMT_DEFRAG_ESCAPE_VERIFY_TRANSFER","features":[11]},{"name":"D3DKMT_DESTROYALLOCATION","features":[11]},{"name":"D3DKMT_DESTROYALLOCATION2","features":[11]},{"name":"D3DKMT_DESTROYCONTEXT","features":[11]},{"name":"D3DKMT_DESTROYDCFROMMEMORY","features":[11,3,14]},{"name":"D3DKMT_DESTROYDEVICE","features":[11]},{"name":"D3DKMT_DESTROYHWCONTEXT","features":[11]},{"name":"D3DKMT_DESTROYHWQUEUE","features":[11]},{"name":"D3DKMT_DESTROYKEYEDMUTEX","features":[11]},{"name":"D3DKMT_DESTROYOVERLAY","features":[11]},{"name":"D3DKMT_DESTROYPROTECTEDSESSION","features":[11]},{"name":"D3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[11]},{"name":"D3DKMT_DESTROY_DOORBELL","features":[11]},{"name":"D3DKMT_DESTROY_OUTPUTDUPL","features":[11,3]},{"name":"D3DKMT_DEVICEESCAPE_RESTOREGAMMA","features":[11]},{"name":"D3DKMT_DEVICEESCAPE_TYPE","features":[11]},{"name":"D3DKMT_DEVICEESCAPE_VIDPNFROMALLOCATION","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_ACTIVE","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAFAULT","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAPAGEFAULT","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_OUTOFMEMORY","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_HUNG","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_RESET","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_STATE","features":[11]},{"name":"D3DKMT_DEVICEEXECUTION_STOPPED","features":[11]},{"name":"D3DKMT_DEVICEPAGEFAULT_STATE","features":[11]},{"name":"D3DKMT_DEVICEPRESENT_QUEUE_STATE","features":[11,3]},{"name":"D3DKMT_DEVICEPRESENT_STATE","features":[11]},{"name":"D3DKMT_DEVICEPRESENT_STATE_DWM","features":[11]},{"name":"D3DKMT_DEVICERESET_STATE","features":[11]},{"name":"D3DKMT_DEVICESTATE_EXECUTION","features":[11]},{"name":"D3DKMT_DEVICESTATE_PAGE_FAULT","features":[11]},{"name":"D3DKMT_DEVICESTATE_PRESENT","features":[11]},{"name":"D3DKMT_DEVICESTATE_PRESENT_DWM","features":[11]},{"name":"D3DKMT_DEVICESTATE_PRESENT_QUEUE","features":[11]},{"name":"D3DKMT_DEVICESTATE_RESET","features":[11]},{"name":"D3DKMT_DEVICESTATE_TYPE","features":[11]},{"name":"D3DKMT_DEVICE_ERROR_REASON","features":[11]},{"name":"D3DKMT_DEVICE_ERROR_REASON_DRIVER_ERROR","features":[11]},{"name":"D3DKMT_DEVICE_ERROR_REASON_GENERIC","features":[11]},{"name":"D3DKMT_DEVICE_ESCAPE","features":[11]},{"name":"D3DKMT_DEVICE_IDS","features":[11]},{"name":"D3DKMT_DIRECTFLIP_SUPPORT","features":[11,3]},{"name":"D3DKMT_DIRTYREGIONS","features":[11,3]},{"name":"D3DKMT_DISPLAYMODE","features":[11]},{"name":"D3DKMT_DISPLAYMODELIST","features":[11]},{"name":"D3DKMT_DISPLAY_CAPS","features":[11]},{"name":"D3DKMT_DISPLAY_UMD_FILENAMEINFO","features":[11]},{"name":"D3DKMT_DLIST_DRIVER_NAME","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_COFUNCPATHMODALITY_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_SOURCEMODESET_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_GET_ACTIVEVIDPN_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_GET_LASTCLIENTCOMMITTEDVIDPN_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_GET_MONITORS_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_GET_SUMMARY_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VERSION_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_SOURCES_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_TARGETS_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_COMMITTED_VIDPNS_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_RECOMMENDED_VIDPNS_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MODECHANGE_REQUESTS_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MONITOR_PRESENCE_EVENTS_INFO","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_UNINITIALIZED","features":[11]},{"name":"D3DKMT_DMMESCAPETYPE_VIDPN_MGR_DIAGNOSTICS","features":[11]},{"name":"D3DKMT_DMM_ESCAPE","features":[11]},{"name":"D3DKMT_DOD_SET_DIRTYRECT_MODE","features":[11,3]},{"name":"D3DKMT_DRIVERCAPS_EXT","features":[11]},{"name":"D3DKMT_DRIVERVERSION","features":[11]},{"name":"D3DKMT_DRIVER_DESCRIPTION","features":[11]},{"name":"D3DKMT_DeferredCommandBuffer","features":[11]},{"name":"D3DKMT_DeviceCommandBuffer","features":[11]},{"name":"D3DKMT_DmaPacketTypeMax","features":[11]},{"name":"D3DKMT_ENUMADAPTERS","features":[11,3]},{"name":"D3DKMT_ENUMADAPTERS2","features":[11,3]},{"name":"D3DKMT_ENUMADAPTERS3","features":[11,3]},{"name":"D3DKMT_ENUMADAPTERS_FILTER","features":[11]},{"name":"D3DKMT_ESCAPE","features":[11]},{"name":"D3DKMT_ESCAPETYPE","features":[11]},{"name":"D3DKMT_ESCAPE_ACTIVATE_SPECIFIC_DIAG","features":[11]},{"name":"D3DKMT_ESCAPE_ADAPTER_VERIFIER_OPTION","features":[11]},{"name":"D3DKMT_ESCAPE_BDD_FALLBACK","features":[11]},{"name":"D3DKMT_ESCAPE_BDD_PNP","features":[11]},{"name":"D3DKMT_ESCAPE_BRIGHTNESS","features":[11]},{"name":"D3DKMT_ESCAPE_CCD_DATABASE","features":[11]},{"name":"D3DKMT_ESCAPE_DEBUG_SNAPSHOT","features":[11]},{"name":"D3DKMT_ESCAPE_DEVICE","features":[11]},{"name":"D3DKMT_ESCAPE_DIAGNOSTICS","features":[11]},{"name":"D3DKMT_ESCAPE_DMM","features":[11]},{"name":"D3DKMT_ESCAPE_DOD_SET_DIRTYRECT_MODE","features":[11]},{"name":"D3DKMT_ESCAPE_DRIVERPRIVATE","features":[11]},{"name":"D3DKMT_ESCAPE_DRT_TEST","features":[11]},{"name":"D3DKMT_ESCAPE_EDID_CACHE","features":[11]},{"name":"D3DKMT_ESCAPE_FORCE_BDDFALLBACK_HEADLESS","features":[11]},{"name":"D3DKMT_ESCAPE_GET_DISPLAY_CONFIGURATIONS","features":[11]},{"name":"D3DKMT_ESCAPE_GET_EXTERNAL_DIAGNOSTICS","features":[11]},{"name":"D3DKMT_ESCAPE_HISTORY_BUFFER_STATUS","features":[11]},{"name":"D3DKMT_ESCAPE_IDD_REQUEST","features":[11]},{"name":"D3DKMT_ESCAPE_LOG_CODEPOINT_PACKET","features":[11]},{"name":"D3DKMT_ESCAPE_LOG_USERMODE_DAIG_PACKET","features":[11]},{"name":"D3DKMT_ESCAPE_MIRACAST_ADAPTER_DIAG_INFO","features":[11]},{"name":"D3DKMT_ESCAPE_MIRACAST_DISPLAY_REQUEST","features":[11]},{"name":"D3DKMT_ESCAPE_MODES_PRUNED_OUT","features":[11]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_DIAGNOSTICS","features":[11]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_SNAPSHOT","features":[11]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_COMMAND","features":[11]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_DEFAULT","features":[11]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_CPU","features":[11]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_GPU","features":[11]},{"name":"D3DKMT_ESCAPE_PROCESS_VERIFIER_OPTION","features":[11]},{"name":"D3DKMT_ESCAPE_QUERY_DMA_REMAPPING_STATUS","features":[11]},{"name":"D3DKMT_ESCAPE_QUERY_IOMMU_STATUS","features":[11]},{"name":"D3DKMT_ESCAPE_REQUEST_MACHINE_CRASH","features":[11]},{"name":"D3DKMT_ESCAPE_SOFTGPU_ENABLE_DISABLE_HMD","features":[11]},{"name":"D3DKMT_ESCAPE_TDRDBGCTRL","features":[11]},{"name":"D3DKMT_ESCAPE_VIDMM","features":[11]},{"name":"D3DKMT_ESCAPE_VIDSCH","features":[11]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE","features":[11,3]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE","features":[11]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_BASE_DESKTOP_DURATION","features":[11]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_PROCESS_BOOST_ELIGIBLE","features":[11]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_VSYNC_MULTIPLIER","features":[11]},{"name":"D3DKMT_ESCAPE_WHQL_INFO","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_BDD_FALLBACK","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_COLOR_PROFILE_INFO","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_DDA_TEST_CTL","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_DISPBROKER_TEST","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_DPI_INFO","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_HIP_DEVICE_INFO","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_PRESENTER_VIEW_INFO","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_QUERY_CD_ROTATION_BLOCK","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_SET_DIMMED_STATE","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_SPECIALIZED_DISPLAY_TEST","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_START","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_SYSTEM_DPI","features":[11]},{"name":"D3DKMT_ESCAPE_WIN32K_USER_DETECTED_BLACK_SCREEN","features":[11]},{"name":"D3DKMT_EVICT","features":[11]},{"name":"D3DKMT_EVICTION_CRITERIA","features":[11]},{"name":"D3DKMT_FENCE_PRESENTHISTORYTOKEN","features":[11]},{"name":"D3DKMT_FLIPINFOFLAGS","features":[11]},{"name":"D3DKMT_FLIPMANAGER_AUXILIARYPRESENTINFO","features":[11,3]},{"name":"D3DKMT_FLIPMANAGER_PRESENTHISTORYTOKEN","features":[11]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE","features":[11]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_COMPLETE","features":[11]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_SUBMITTED","features":[11]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKEN","features":[11,3]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKENFLAGS","features":[11]},{"name":"D3DKMT_FLIPOVERLAY","features":[11]},{"name":"D3DKMT_FLIPQUEUEINFO","features":[11]},{"name":"D3DKMT_FLUSHHEAPTRANSITIONS","features":[11]},{"name":"D3DKMT_FREEGPUVIRTUALADDRESS","features":[11]},{"name":"D3DKMT_GDIMODEL_PRESENTHISTORYTOKEN","features":[11,3]},{"name":"D3DKMT_GDIMODEL_SYSMEM_PRESENTHISTORYTOKEN","features":[11]},{"name":"D3DKMT_GDI_STYLE_HANDLE_DECORATION","features":[11]},{"name":"D3DKMT_GETALLOCATIONPRIORITY","features":[11]},{"name":"D3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[11]},{"name":"D3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[11]},{"name":"D3DKMT_GETDEVICESTATE","features":[11,3]},{"name":"D3DKMT_GETDISPLAYMODELIST","features":[11]},{"name":"D3DKMT_GETMULTISAMPLEMETHODLIST","features":[11]},{"name":"D3DKMT_GETOVERLAYSTATE","features":[11,3]},{"name":"D3DKMT_GETPRESENTHISTORY","features":[11,3]},{"name":"D3DKMT_GETPRESENTHISTORY_MAXTOKENS","features":[11]},{"name":"D3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[11,3]},{"name":"D3DKMT_GETRUNTIMEDATA","features":[11]},{"name":"D3DKMT_GETSCANLINE","features":[11,3]},{"name":"D3DKMT_GETSHAREDPRIMARYHANDLE","features":[11]},{"name":"D3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[11,3]},{"name":"D3DKMT_GETVERTICALBLANKEVENT","features":[11]},{"name":"D3DKMT_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[11,3]},{"name":"D3DKMT_GET_GPUMMU_CAPS","features":[11,3]},{"name":"D3DKMT_GET_MULTIPLANE_OVERLAY_CAPS","features":[11]},{"name":"D3DKMT_GET_POST_COMPOSITION_CAPS","features":[11]},{"name":"D3DKMT_GET_PTE","features":[11,3]},{"name":"D3DKMT_GET_PTE_MAX","features":[11]},{"name":"D3DKMT_GET_QUEUEDLIMIT_PRESENT","features":[11]},{"name":"D3DKMT_GET_SEGMENT_CAPS","features":[11,3]},{"name":"D3DKMT_GPUMMU_CAPS","features":[11]},{"name":"D3DKMT_GPUVERSION","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_STATE","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_TYPE","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_HIGH_PERFORMANCE","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_MINIMUM_POWER","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_NOT_FOUND","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNINITIALIZED","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNSPECIFIED","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_USER_SPECIFIED_GPU","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_DX_DATABASE","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_IHV_DLIST","features":[11]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_USER_PREFERENCE","features":[11]},{"name":"D3DKMT_HISTORY_BUFFER_STATUS","features":[11,3]},{"name":"D3DKMT_HWDRM_SUPPORT","features":[11,3]},{"name":"D3DKMT_HYBRID_DLIST_DLL_SUPPORT","features":[11,3]},{"name":"D3DKMT_HYBRID_LIST","features":[11,3]},{"name":"D3DKMT_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[11,3]},{"name":"D3DKMT_INDEPENDENTFLIP_SUPPORT","features":[11,3]},{"name":"D3DKMT_INVALIDATEACTIVEVIDPN","features":[11]},{"name":"D3DKMT_INVALIDATECACHE","features":[11]},{"name":"D3DKMT_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[11,3]},{"name":"D3DKMT_KMD_DRIVER_VERSION","features":[11]},{"name":"D3DKMT_LOCK","features":[11]},{"name":"D3DKMT_LOCK2","features":[11]},{"name":"D3DKMT_MARKDEVICEASERROR","features":[11]},{"name":"D3DKMT_MAX_BUNDLE_OBJECTS_PER_HANDLE","features":[11]},{"name":"D3DKMT_MAX_DMM_ESCAPE_DATASIZE","features":[11]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_ALLOCATIONS_PER_PLANE","features":[11]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_PLANES","features":[11]},{"name":"D3DKMT_MAX_OBJECTS_PER_HANDLE","features":[11]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_RECTS","features":[11]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_SCATTERBLTS","features":[11]},{"name":"D3DKMT_MAX_SEGMENT_COUNT","features":[11]},{"name":"D3DKMT_MAX_WAITFORVERTICALBLANK_OBJECTS","features":[11]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP","features":[11]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_LOCAL","features":[11]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_NON_LOCAL","features":[11]},{"name":"D3DKMT_MIRACASTCOMPANIONDRIVERNAME","features":[11]},{"name":"D3DKMT_MIRACAST_CHUNK_DATA","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_CANCELLED","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_ERROR","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_FOUND","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_STARTED","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_GPU_RESOURCE_IN_USE","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_BANDWIDTH","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_MEMORY","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INVALID_PARAMETER","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_PENDING","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_REMOTE_SESSION","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS_NO_MONITOR","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_ERROR","features":[11]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_PAIRING","features":[11]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_CAPS","features":[11,3]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATE","features":[11]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATUS","features":[11]},{"name":"D3DKMT_MIRACAST_DISPLAY_STOP_SESSIONS","features":[11,3]},{"name":"D3DKMT_MIRACAST_DRIVER_IHV","features":[11]},{"name":"D3DKMT_MIRACAST_DRIVER_MS","features":[11]},{"name":"D3DKMT_MIRACAST_DRIVER_NOT_SUPPORTED","features":[11]},{"name":"D3DKMT_MIRACAST_DRIVER_TYPE","features":[11]},{"name":"D3DKMT_MOVE_RECT","features":[11,3]},{"name":"D3DKMT_MPO3DDI_SUPPORT","features":[11,3]},{"name":"D3DKMT_MPOKERNELCAPS_SUPPORT","features":[11,3]},{"name":"D3DKMT_MULIIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_PROGRESSIVE","features":[11]},{"name":"D3DKMT_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[11,3]},{"name":"D3DKMT_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[11,3]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[11,3]},{"name":"D3DKMT_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[11,3]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SUPPORT","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY2","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY3","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES2","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES3","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_ALPHABLEND","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_OPAQUE","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_CAPS","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAGS","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_HORIZONTAL_FLIP","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_STATIC_CHECK","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_VERTICAL_FLIP","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_WITH_SOURCE","features":[11,3]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_HORIZONTAL","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_VERTICAL","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAGS","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE","features":[11]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_xvYCC","features":[11]},{"name":"D3DKMT_MULTISAMPLEMETHOD","features":[11]},{"name":"D3DKMT_MaxAllocationPriorityClass","features":[11]},{"name":"D3DKMT_MmIoFlipCommandBuffer","features":[11]},{"name":"D3DKMT_NODEMETADATA","features":[11,3]},{"name":"D3DKMT_NODE_PERFDATA","features":[11]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION","features":[11]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION_FLAGS","features":[11]},{"name":"D3DKMT_OFFERALLOCATIONS","features":[11]},{"name":"D3DKMT_OFFER_FLAGS","features":[11]},{"name":"D3DKMT_OFFER_PRIORITY","features":[11]},{"name":"D3DKMT_OFFER_PRIORITY_AUTO","features":[11]},{"name":"D3DKMT_OFFER_PRIORITY_HIGH","features":[11]},{"name":"D3DKMT_OFFER_PRIORITY_LOW","features":[11]},{"name":"D3DKMT_OFFER_PRIORITY_NORMAL","features":[11]},{"name":"D3DKMT_OPENADAPTERFROMDEVICENAME","features":[11,3]},{"name":"D3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[11,3]},{"name":"D3DKMT_OPENADAPTERFROMHDC","features":[11,3,14]},{"name":"D3DKMT_OPENADAPTERFROMLUID","features":[11,3]},{"name":"D3DKMT_OPENGLINFO","features":[11]},{"name":"D3DKMT_OPENKEYEDMUTEX","features":[11]},{"name":"D3DKMT_OPENKEYEDMUTEX2","features":[11]},{"name":"D3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[11,3]},{"name":"D3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[11,3]},{"name":"D3DKMT_OPENNTHANDLEFROMNAME","features":[4,11,3]},{"name":"D3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[11,3]},{"name":"D3DKMT_OPENRESOURCE","features":[11]},{"name":"D3DKMT_OPENRESOURCEFROMNTHANDLE","features":[11,3]},{"name":"D3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[11]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[11,3]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[11,3]},{"name":"D3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[4,11,3]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_INFO","features":[11,3]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE","features":[11]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_COLOR","features":[11]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR","features":[11]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MONOCHROME","features":[11]},{"name":"D3DKMT_OUTPUTDUPLCONTEXTSCOUNT","features":[11]},{"name":"D3DKMT_OUTPUTDUPLCREATIONFLAGS","features":[11]},{"name":"D3DKMT_OUTPUTDUPLPRESENT","features":[11,3]},{"name":"D3DKMT_OUTPUTDUPLPRESENTFLAGS","features":[11]},{"name":"D3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[11,3]},{"name":"D3DKMT_OUTPUTDUPL_FRAMEINFO","features":[11,3]},{"name":"D3DKMT_OUTPUTDUPL_GET_FRAMEINFO","features":[11,3]},{"name":"D3DKMT_OUTPUTDUPL_GET_POINTER_SHAPE_DATA","features":[11,3]},{"name":"D3DKMT_OUTPUTDUPL_KEYEDMUTEX","features":[11,3]},{"name":"D3DKMT_OUTPUTDUPL_METADATA","features":[11]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE","features":[11]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_DIRTY_RECTS","features":[11]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_MOVE_RECTS","features":[11]},{"name":"D3DKMT_OUTPUTDUPL_POINTER_POSITION","features":[11,3]},{"name":"D3DKMT_OUTPUTDUPL_RELEASE_FRAME","features":[11]},{"name":"D3DKMT_OUTPUTDUPL_SNAPSHOT","features":[11,3]},{"name":"D3DKMT_PAGE_TABLE_LEVEL_DESC","features":[11]},{"name":"D3DKMT_PANELFITTER_SUPPORT","features":[11,3]},{"name":"D3DKMT_PARAVIRTUALIZATION","features":[11,3]},{"name":"D3DKMT_PHYSICAL_ADAPTER_COUNT","features":[11]},{"name":"D3DKMT_PINDIRECTFLIPRESOURCES","features":[11]},{"name":"D3DKMT_PLANE_SPECIFIC_INPUT_FLAGS","features":[11]},{"name":"D3DKMT_PLANE_SPECIFIC_OUTPUT_FLAGS","features":[11]},{"name":"D3DKMT_PM_FLIPMANAGER","features":[11]},{"name":"D3DKMT_PM_REDIRECTED_BLT","features":[11]},{"name":"D3DKMT_PM_REDIRECTED_COMPOSITION","features":[11]},{"name":"D3DKMT_PM_REDIRECTED_FLIP","features":[11]},{"name":"D3DKMT_PM_REDIRECTED_GDI","features":[11]},{"name":"D3DKMT_PM_REDIRECTED_GDI_SYSMEM","features":[11]},{"name":"D3DKMT_PM_REDIRECTED_VISTABLT","features":[11]},{"name":"D3DKMT_PM_SCREENCAPTUREFENCE","features":[11]},{"name":"D3DKMT_PM_SURFACECOMPLETE","features":[11]},{"name":"D3DKMT_PM_UNINITIALIZED","features":[11]},{"name":"D3DKMT_PNP_KEY_HARDWARE","features":[11]},{"name":"D3DKMT_PNP_KEY_SOFTWARE","features":[11]},{"name":"D3DKMT_PNP_KEY_TYPE","features":[11]},{"name":"D3DKMT_POLLDISPLAYCHILDREN","features":[11]},{"name":"D3DKMT_PRESENT","features":[11,3]},{"name":"D3DKMT_PRESENTFLAGS","features":[11]},{"name":"D3DKMT_PRESENTHISTORYTOKEN","features":[11,3]},{"name":"D3DKMT_PRESENT_MODEL","features":[11]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY","features":[11,3]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY2","features":[11,3]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY3","features":[11,3]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY_FLAGS","features":[11]},{"name":"D3DKMT_PRESENT_REDIRECTED","features":[11,3]},{"name":"D3DKMT_PRESENT_REDIRECTED_FLAGS","features":[11]},{"name":"D3DKMT_PRESENT_RGNS","features":[11,3]},{"name":"D3DKMT_PRESENT_STATS","features":[11]},{"name":"D3DKMT_PRESENT_STATS_DWM","features":[11]},{"name":"D3DKMT_PRESENT_STATS_DWM2","features":[11]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION","features":[11,3]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_DATA","features":[11]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_TYPE","features":[11]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_FLAGS","features":[11]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_RESTRICT_BUDGET","features":[11]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_FLAGS","features":[11]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_RESTRICT_BUDGET","features":[11]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS","features":[11]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_INVALID","features":[11]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_OK","features":[11]},{"name":"D3DKMT_PreemptionAttempt","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyPreempting","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyRunning","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissFenceCommand","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissGlobalBlock","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissLessPriority","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissNextFence","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissNoCommand","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissNotEnabled","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissNotMakingProgress","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissPagingCommand","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissRemainingPreemptionQuantum","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissRemainingQuantum","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissRenderPendingFlip","features":[11]},{"name":"D3DKMT_PreemptionAttemptMissSplittedCommand","features":[11]},{"name":"D3DKMT_PreemptionAttemptStatisticsMax","features":[11]},{"name":"D3DKMT_PreemptionAttemptSuccess","features":[11]},{"name":"D3DKMT_QUERYADAPTERINFO","features":[11]},{"name":"D3DKMT_QUERYALLOCATIONRESIDENCY","features":[11]},{"name":"D3DKMT_QUERYCLOCKCALIBRATION","features":[11]},{"name":"D3DKMT_QUERYFSEBLOCK","features":[11,3]},{"name":"D3DKMT_QUERYFSEBLOCKFLAGS","features":[11]},{"name":"D3DKMT_QUERYPROCESSOFFERINFO","features":[11,3]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[11,3]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[11]},{"name":"D3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[11]},{"name":"D3DKMT_QUERYRESOURCEINFO","features":[11]},{"name":"D3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[11,3]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT","features":[11]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT_MAX","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS","features":[11,3]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION_FLAGS","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS_MAX","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_COMMITMENT_DATA","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_COUNTER","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_BUFFER","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_MAX","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY_USAGE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_NODE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_NODE2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_NODE_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PACKET_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_POLICY","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PREEMPTION_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_BUCKET_COUNT","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_COUNTERS","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_POLICY","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER_INFORMATION2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PHYSICAL_ADAPTER","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PROCESS_SEGMENT_GROUP2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_GROUP_USAGE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_USAGE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_VIDPNSOURCE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_MAX","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_RESULT","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT2","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_GROUP_USAGE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_PREFERENCE_MAX","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_APERTURE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_MEMORY","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_SYSMEM","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_USAGE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_SYSTEM_MEMORY","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_TYPE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_VIDEO_MEMORY","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE","features":[11]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE_INFORMATION","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_ALLOCATIONS","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_LOCKS","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_FAULT","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_TRANSFER","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_PREPRATION","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_REFERENCE_DMA_BUFFER","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_RENAMING","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_SWIZZLING_RANGE","features":[11]},{"name":"D3DKMT_QUERYSTATSTICS_TERMINATIONS","features":[11]},{"name":"D3DKMT_QUERYVIDEOMEMORYINFO","features":[11,3]},{"name":"D3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[11,3]},{"name":"D3DKMT_QUERY_ADAPTER_UNIQUE_GUID","features":[11]},{"name":"D3DKMT_QUERY_DEVICE_IDS","features":[11]},{"name":"D3DKMT_QUERY_GPUMMU_CAPS","features":[11]},{"name":"D3DKMT_QUERY_MIRACAST_DRIVER_TYPE","features":[11]},{"name":"D3DKMT_QUERY_PHYSICAL_ADAPTER_PNP_KEY","features":[11]},{"name":"D3DKMT_QUERY_SCANOUT_CAPS","features":[11]},{"name":"D3DKMT_QUEUEDLIMIT_TYPE","features":[11]},{"name":"D3DKMT_QueuePacketTypeMax","features":[11]},{"name":"D3DKMT_RECLAIMALLOCATIONS","features":[11,3]},{"name":"D3DKMT_RECLAIMALLOCATIONS2","features":[11,3]},{"name":"D3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[11]},{"name":"D3DKMT_REGISTERTRIMNOTIFICATION","features":[11,3]},{"name":"D3DKMT_RELEASEKEYEDMUTEX","features":[11]},{"name":"D3DKMT_RELEASEKEYEDMUTEX2","features":[11]},{"name":"D3DKMT_RENDER","features":[11]},{"name":"D3DKMT_RENDERFLAGS","features":[11]},{"name":"D3DKMT_REQUEST_MACHINE_CRASH_ESCAPE","features":[11]},{"name":"D3DKMT_RenderCommandBuffer","features":[11]},{"name":"D3DKMT_SCATTERBLT","features":[11,3]},{"name":"D3DKMT_SCATTERBLTS","features":[11,3]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS","features":[11]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_ABOVE_NORMAL","features":[11]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_BELOW_NORMAL","features":[11]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_HIGH","features":[11]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_IDLE","features":[11]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_NORMAL","features":[11]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME","features":[11]},{"name":"D3DKMT_SEGMENTGROUPSIZEINFO","features":[11]},{"name":"D3DKMT_SEGMENTSIZEINFO","features":[11]},{"name":"D3DKMT_SEGMENT_CAPS","features":[11,3]},{"name":"D3DKMT_SETALLOCATIONPRIORITY","features":[11]},{"name":"D3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[11]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[11]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY_ABSOLUTE","features":[11]},{"name":"D3DKMT_SETDISPLAYMODE","features":[11]},{"name":"D3DKMT_SETDISPLAYMODE_FLAGS","features":[11]},{"name":"D3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[11]},{"name":"D3DKMT_SETFSEBLOCK","features":[11,3]},{"name":"D3DKMT_SETFSEBLOCKFLAGS","features":[11]},{"name":"D3DKMT_SETGAMMARAMP","features":[11]},{"name":"D3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[11,3]},{"name":"D3DKMT_SETQUEUEDLIMIT","features":[11]},{"name":"D3DKMT_SETSTABLEPOWERSTATE","features":[11,3]},{"name":"D3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[11]},{"name":"D3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[11,3]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER","features":[11]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER1","features":[11]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER2","features":[11]},{"name":"D3DKMT_SET_COLORSPACE_TRANSFORM","features":[11,3]},{"name":"D3DKMT_SET_QUEUEDLIMIT_PRESENT","features":[11]},{"name":"D3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[11,3]},{"name":"D3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[11,3]},{"name":"D3DKMT_SHAREOBJECTWITHHOST","features":[11]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[11]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[11,3]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[11]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[11]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[11,3]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE","features":[11]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_EXISTINGHEAP","features":[11]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_INTERNALBACKINGSTORE","features":[11]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_MAX","features":[11]},{"name":"D3DKMT_STANDARDALLOCATION_EXISTINGHEAP","features":[11]},{"name":"D3DKMT_SUBKEY_DX9","features":[11]},{"name":"D3DKMT_SUBKEY_OPENGL","features":[11]},{"name":"D3DKMT_SUBMITCOMMAND","features":[11]},{"name":"D3DKMT_SUBMITCOMMANDFLAGS","features":[11]},{"name":"D3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[11]},{"name":"D3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[11,3]},{"name":"D3DKMT_SUBMITPRESENTTOHWQUEUE","features":[11,3]},{"name":"D3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[11]},{"name":"D3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[11]},{"name":"D3DKMT_SURFACECOMPLETE_PRESENTHISTORYTOKEN","features":[11]},{"name":"D3DKMT_SignalCommandBuffer","features":[11]},{"name":"D3DKMT_SoftwareCommandBuffer","features":[11]},{"name":"D3DKMT_SystemCommandBuffer","features":[11]},{"name":"D3DKMT_SystemPagingBuffer","features":[11]},{"name":"D3DKMT_SystemPreemptionBuffer","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_DISABLEBREAK","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENABLEBREAK","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENGINETDR","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODTDR","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODVSYNCTDR","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCETDR","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_GPUTDR","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_UNCONDITIONAL","features":[11]},{"name":"D3DKMT_TDRDBGCTRLTYPE_VSYNCTDR","features":[11]},{"name":"D3DKMT_TDRDBGCTRL_ESCAPE","features":[11]},{"name":"D3DKMT_TRACKEDWORKLOAD_SUPPORT","features":[11,3]},{"name":"D3DKMT_TRIMNOTIFICATION","features":[11]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT","features":[11,3]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT_FLAGS","features":[11]},{"name":"D3DKMT_UMDFILENAMEINFO","features":[11]},{"name":"D3DKMT_UMD_DRIVER_VERSION","features":[11]},{"name":"D3DKMT_UNLOCK","features":[11]},{"name":"D3DKMT_UNLOCK2","features":[11]},{"name":"D3DKMT_UNPINDIRECTFLIPRESOURCES","features":[11]},{"name":"D3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[11]},{"name":"D3DKMT_UNREGISTERTRIMNOTIFICATION","features":[11]},{"name":"D3DKMT_UPDATEGPUVIRTUALADDRESS","features":[11]},{"name":"D3DKMT_UPDATEOVERLAY","features":[11]},{"name":"D3DKMT_VAD_DESC","features":[11]},{"name":"D3DKMT_VAD_ESCAPE_COMMAND","features":[11]},{"name":"D3DKMT_VAD_ESCAPE_GETNUMVADS","features":[11]},{"name":"D3DKMT_VAD_ESCAPE_GETVAD","features":[11]},{"name":"D3DKMT_VAD_ESCAPE_GETVADRANGE","features":[11]},{"name":"D3DKMT_VAD_ESCAPE_GET_GPUMMU_CAPS","features":[11]},{"name":"D3DKMT_VAD_ESCAPE_GET_PTE","features":[11]},{"name":"D3DKMT_VAD_ESCAPE_GET_SEGMENT_CAPS","features":[11]},{"name":"D3DKMT_VA_RANGE_DESC","features":[11]},{"name":"D3DKMT_VERIFIER_OPTION_MODE","features":[11]},{"name":"D3DKMT_VERIFIER_OPTION_QUERY","features":[11]},{"name":"D3DKMT_VERIFIER_OPTION_SET","features":[11]},{"name":"D3DKMT_VGPUINTERFACEID","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_APERTURE_CORRUPTION_CHECK","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_DEFRAG","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_DELAYEXECUTION","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_CRITERIA","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_NT_HANDLE","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_BUDGET","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_VAD_INFO","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_RESUME_PROCESS","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_COHERENCY_TEST","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_UNMAP_TO_DUMMY_PAGE_TEST","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_SETFAULT","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_BUDGET","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_EVICTION_CONFIG","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_TRIM_INTERVALS","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_CPU_ACCESS_TEST","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_PROCESS","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_VALIDATE_INTEGRITY","features":[11]},{"name":"D3DKMT_VIDMMESCAPETYPE_WAKE","features":[11]},{"name":"D3DKMT_VIDMM_ESCAPE","features":[11,3]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EMULATED","features":[11]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE","features":[11]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVEGDI","features":[11]},{"name":"D3DKMT_VIDPNSOURCEOWNER_FLAGS","features":[11]},{"name":"D3DKMT_VIDPNSOURCEOWNER_SHARED","features":[11]},{"name":"D3DKMT_VIDPNSOURCEOWNER_TYPE","features":[11]},{"name":"D3DKMT_VIDPNSOURCEOWNER_UNOWNED","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_CONFIGURE_TDR_LIMIT","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_ENABLECONTEXTDELAY","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PFN_CONTROL","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PREEMPTIONCONTROL","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDRESUME","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDSCHEDULER","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_TDRCONTROL","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VGPU_RESET","features":[11]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VIRTUAL_REFRESH_RATE","features":[11]},{"name":"D3DKMT_VIDSCH_ESCAPE","features":[11,3]},{"name":"D3DKMT_VIRTUALADDRESSFLAGS","features":[11]},{"name":"D3DKMT_VIRTUALADDRESSINFO","features":[11]},{"name":"D3DKMT_WAITFORIDLE","features":[11]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[11]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[11]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[11,3]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[11]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT","features":[11]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT2","features":[11]},{"name":"D3DKMT_WDDM_1_2_CAPS","features":[11]},{"name":"D3DKMT_WDDM_1_3_CAPS","features":[11]},{"name":"D3DKMT_WDDM_2_0_CAPS","features":[11]},{"name":"D3DKMT_WDDM_2_7_CAPS","features":[11]},{"name":"D3DKMT_WDDM_2_9_CAPS","features":[11]},{"name":"D3DKMT_WDDM_3_0_CAPS","features":[11]},{"name":"D3DKMT_WDDM_3_1_CAPS","features":[11]},{"name":"D3DKMT_WORKINGSETFLAGS","features":[11]},{"name":"D3DKMT_WORKINGSETINFO","features":[11]},{"name":"D3DKMT_WSAUMDIMAGENAME","features":[11]},{"name":"D3DKMT_WaitCommandBuffer","features":[11]},{"name":"D3DKMT_XBOX","features":[11,3]},{"name":"D3DLINEPATTERN","features":[11]},{"name":"D3DNTCLEAR_COMPUTERECTS","features":[11]},{"name":"D3DNTDEVICEDESC_V3","features":[11,3,12]},{"name":"D3DNTDP2OP_ADDDIRTYBOX","features":[11]},{"name":"D3DNTDP2OP_ADDDIRTYRECT","features":[11]},{"name":"D3DNTDP2OP_BLT","features":[11]},{"name":"D3DNTDP2OP_BUFFERBLT","features":[11]},{"name":"D3DNTDP2OP_CLEAR","features":[11]},{"name":"D3DNTDP2OP_CLIPPEDTRIANGLEFAN","features":[11]},{"name":"D3DNTDP2OP_COLORFILL","features":[11]},{"name":"D3DNTDP2OP_COMPOSERECTS","features":[11]},{"name":"D3DNTDP2OP_CREATELIGHT","features":[11]},{"name":"D3DNTDP2OP_CREATEPIXELSHADER","features":[11]},{"name":"D3DNTDP2OP_CREATEQUERY","features":[11]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADER","features":[11]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERDECL","features":[11]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERFUNC","features":[11]},{"name":"D3DNTDP2OP_DELETEPIXELSHADER","features":[11]},{"name":"D3DNTDP2OP_DELETEQUERY","features":[11]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADER","features":[11]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERDECL","features":[11]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERFUNC","features":[11]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE","features":[11]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE2","features":[11]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE","features":[11]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE2","features":[11]},{"name":"D3DNTDP2OP_DRAWRECTPATCH","features":[11]},{"name":"D3DNTDP2OP_DRAWTRIPATCH","features":[11]},{"name":"D3DNTDP2OP_GENERATEMIPSUBLEVELS","features":[11]},{"name":"D3DNTDP2OP_INDEXEDLINELIST","features":[11]},{"name":"D3DNTDP2OP_INDEXEDLINELIST2","features":[11]},{"name":"D3DNTDP2OP_INDEXEDLINESTRIP","features":[11]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLEFAN","features":[11]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST","features":[11]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST2","features":[11]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLESTRIP","features":[11]},{"name":"D3DNTDP2OP_ISSUEQUERY","features":[11]},{"name":"D3DNTDP2OP_LINELIST","features":[11]},{"name":"D3DNTDP2OP_LINELIST_IMM","features":[11]},{"name":"D3DNTDP2OP_LINESTRIP","features":[11]},{"name":"D3DNTDP2OP_MULTIPLYTRANSFORM","features":[11]},{"name":"D3DNTDP2OP_POINTS","features":[11]},{"name":"D3DNTDP2OP_RENDERSTATE","features":[11]},{"name":"D3DNTDP2OP_RESPONSECONTINUE","features":[11]},{"name":"D3DNTDP2OP_RESPONSEQUERY","features":[11]},{"name":"D3DNTDP2OP_SETCLIPPLANE","features":[11]},{"name":"D3DNTDP2OP_SETCONVOLUTIONKERNELMONO","features":[11]},{"name":"D3DNTDP2OP_SETDEPTHSTENCIL","features":[11]},{"name":"D3DNTDP2OP_SETINDICES","features":[11]},{"name":"D3DNTDP2OP_SETLIGHT","features":[11]},{"name":"D3DNTDP2OP_SETMATERIAL","features":[11]},{"name":"D3DNTDP2OP_SETPALETTE","features":[11]},{"name":"D3DNTDP2OP_SETPIXELSHADER","features":[11]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONST","features":[11]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTB","features":[11]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTI","features":[11]},{"name":"D3DNTDP2OP_SETPRIORITY","features":[11]},{"name":"D3DNTDP2OP_SETRENDERTARGET","features":[11]},{"name":"D3DNTDP2OP_SETRENDERTARGET2","features":[11]},{"name":"D3DNTDP2OP_SETSCISSORRECT","features":[11]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE","features":[11]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE2","features":[11]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEFREQ","features":[11]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEUM","features":[11]},{"name":"D3DNTDP2OP_SETTEXLOD","features":[11]},{"name":"D3DNTDP2OP_SETTRANSFORM","features":[11]},{"name":"D3DNTDP2OP_SETVERTEXSHADER","features":[11]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONST","features":[11]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTB","features":[11]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTI","features":[11]},{"name":"D3DNTDP2OP_SETVERTEXSHADERDECL","features":[11]},{"name":"D3DNTDP2OP_SETVERTEXSHADERFUNC","features":[11]},{"name":"D3DNTDP2OP_STATESET","features":[11]},{"name":"D3DNTDP2OP_SURFACEBLT","features":[11]},{"name":"D3DNTDP2OP_TEXBLT","features":[11]},{"name":"D3DNTDP2OP_TEXTURESTAGESTATE","features":[11]},{"name":"D3DNTDP2OP_TRIANGLEFAN","features":[11]},{"name":"D3DNTDP2OP_TRIANGLEFAN_IMM","features":[11]},{"name":"D3DNTDP2OP_TRIANGLELIST","features":[11]},{"name":"D3DNTDP2OP_TRIANGLESTRIP","features":[11]},{"name":"D3DNTDP2OP_UPDATEPALETTE","features":[11]},{"name":"D3DNTDP2OP_VIEWPORTINFO","features":[11]},{"name":"D3DNTDP2OP_VOLUMEBLT","features":[11]},{"name":"D3DNTDP2OP_WINFO","features":[11]},{"name":"D3DNTDP2OP_ZRANGE","features":[11]},{"name":"D3DNTHAL2_CB32_SETRENDERTARGET","features":[11]},{"name":"D3DNTHAL3_CB32_CLEAR2","features":[11]},{"name":"D3DNTHAL3_CB32_DRAWPRIMITIVES2","features":[11]},{"name":"D3DNTHAL3_CB32_RESERVED","features":[11]},{"name":"D3DNTHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[11]},{"name":"D3DNTHALDEVICEDESC_V1","features":[11,3,12]},{"name":"D3DNTHALDEVICEDESC_V2","features":[11,3,12]},{"name":"D3DNTHALDP2_EXECUTEBUFFER","features":[11]},{"name":"D3DNTHALDP2_REQCOMMANDBUFSIZE","features":[11]},{"name":"D3DNTHALDP2_REQVERTEXBUFSIZE","features":[11]},{"name":"D3DNTHALDP2_SWAPCOMMANDBUFFER","features":[11]},{"name":"D3DNTHALDP2_SWAPVERTEXBUFFER","features":[11]},{"name":"D3DNTHALDP2_USERMEMVERTICES","features":[11]},{"name":"D3DNTHALDP2_VIDMEMCOMMANDBUF","features":[11]},{"name":"D3DNTHALDP2_VIDMEMVERTEXBUF","features":[11]},{"name":"D3DNTHAL_CALLBACKS","features":[11,3,13]},{"name":"D3DNTHAL_CALLBACKS2","features":[11,3,13]},{"name":"D3DNTHAL_CALLBACKS3","features":[11,3,12,13]},{"name":"D3DNTHAL_CLEAR2DATA","features":[11,12]},{"name":"D3DNTHAL_CLIPPEDTRIANGLEFAN","features":[11]},{"name":"D3DNTHAL_COL_WEIGHTS","features":[11]},{"name":"D3DNTHAL_CONTEXTCREATEDATA","features":[11,3,13]},{"name":"D3DNTHAL_CONTEXTDESTROYALLDATA","features":[11]},{"name":"D3DNTHAL_CONTEXTDESTROYDATA","features":[11]},{"name":"D3DNTHAL_CONTEXT_BAD","features":[11]},{"name":"D3DNTHAL_D3DDX6EXTENDEDCAPS","features":[11]},{"name":"D3DNTHAL_D3DEXTENDEDCAPS","features":[11]},{"name":"D3DNTHAL_DP2ADDDIRTYBOX","features":[11,12]},{"name":"D3DNTHAL_DP2ADDDIRTYRECT","features":[11,3]},{"name":"D3DNTHAL_DP2BLT","features":[11,3]},{"name":"D3DNTHAL_DP2BUFFERBLT","features":[11,12]},{"name":"D3DNTHAL_DP2CLEAR","features":[11,3]},{"name":"D3DNTHAL_DP2COLORFILL","features":[11,3]},{"name":"D3DNTHAL_DP2COMMAND","features":[11]},{"name":"D3DNTHAL_DP2COMPOSERECTS","features":[11,12]},{"name":"D3DNTHAL_DP2CREATELIGHT","features":[11]},{"name":"D3DNTHAL_DP2CREATEPIXELSHADER","features":[11]},{"name":"D3DNTHAL_DP2CREATEQUERY","features":[11,12]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADER","features":[11]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERDECL","features":[11]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERFUNC","features":[11]},{"name":"D3DNTHAL_DP2DELETEQUERY","features":[11]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE","features":[11,12]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[11,12]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE","features":[11,12]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE2","features":[11,12]},{"name":"D3DNTHAL_DP2DRAWRECTPATCH","features":[11]},{"name":"D3DNTHAL_DP2DRAWTRIPATCH","features":[11]},{"name":"D3DNTHAL_DP2EXT","features":[11]},{"name":"D3DNTHAL_DP2GENERATEMIPSUBLEVELS","features":[11,12]},{"name":"D3DNTHAL_DP2INDEXEDLINELIST","features":[11]},{"name":"D3DNTHAL_DP2INDEXEDLINESTRIP","features":[11]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLEFAN","features":[11]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST","features":[11]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST2","features":[11]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLESTRIP","features":[11]},{"name":"D3DNTHAL_DP2ISSUEQUERY","features":[11]},{"name":"D3DNTHAL_DP2LINELIST","features":[11]},{"name":"D3DNTHAL_DP2LINESTRIP","features":[11]},{"name":"D3DNTHAL_DP2MULTIPLYTRANSFORM","features":[15,11,12]},{"name":"D3DNTHAL_DP2OPERATION","features":[11]},{"name":"D3DNTHAL_DP2PIXELSHADER","features":[11]},{"name":"D3DNTHAL_DP2POINTS","features":[11]},{"name":"D3DNTHAL_DP2RENDERSTATE","features":[11,12]},{"name":"D3DNTHAL_DP2RESPONSE","features":[11]},{"name":"D3DNTHAL_DP2RESPONSEQUERY","features":[11]},{"name":"D3DNTHAL_DP2SETCLIPPLANE","features":[11]},{"name":"D3DNTHAL_DP2SETCONVOLUTIONKERNELMONO","features":[11]},{"name":"D3DNTHAL_DP2SETDEPTHSTENCIL","features":[11]},{"name":"D3DNTHAL_DP2SETINDICES","features":[11]},{"name":"D3DNTHAL_DP2SETLIGHT","features":[11]},{"name":"D3DNTHAL_DP2SETPALETTE","features":[11]},{"name":"D3DNTHAL_DP2SETPIXELSHADERCONST","features":[11]},{"name":"D3DNTHAL_DP2SETPRIORITY","features":[11]},{"name":"D3DNTHAL_DP2SETRENDERTARGET","features":[11]},{"name":"D3DNTHAL_DP2SETRENDERTARGET2","features":[11]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE","features":[11]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE2","features":[11]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEFREQ","features":[11]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEUM","features":[11]},{"name":"D3DNTHAL_DP2SETTEXLOD","features":[11]},{"name":"D3DNTHAL_DP2SETTRANSFORM","features":[15,11,12]},{"name":"D3DNTHAL_DP2SETVERTEXSHADERCONST","features":[11]},{"name":"D3DNTHAL_DP2STARTVERTEX","features":[11]},{"name":"D3DNTHAL_DP2STATESET","features":[11,12]},{"name":"D3DNTHAL_DP2SURFACEBLT","features":[11,3]},{"name":"D3DNTHAL_DP2TEXBLT","features":[11,3]},{"name":"D3DNTHAL_DP2TEXTURESTAGESTATE","features":[11]},{"name":"D3DNTHAL_DP2TRIANGLEFAN","features":[11]},{"name":"D3DNTHAL_DP2TRIANGLEFAN_IMM","features":[11]},{"name":"D3DNTHAL_DP2TRIANGLELIST","features":[11]},{"name":"D3DNTHAL_DP2TRIANGLESTRIP","features":[11]},{"name":"D3DNTHAL_DP2UPDATEPALETTE","features":[11]},{"name":"D3DNTHAL_DP2VERTEXSHADER","features":[11]},{"name":"D3DNTHAL_DP2VIEWPORTINFO","features":[11]},{"name":"D3DNTHAL_DP2VOLUMEBLT","features":[11,12]},{"name":"D3DNTHAL_DP2WINFO","features":[11]},{"name":"D3DNTHAL_DP2ZRANGE","features":[11]},{"name":"D3DNTHAL_DRAWPRIMITIVES2DATA","features":[11,3,13]},{"name":"D3DNTHAL_GLOBALDRIVERDATA","features":[11,3,12,13]},{"name":"D3DNTHAL_NUMCLIPVERTICES","features":[11]},{"name":"D3DNTHAL_OUTOFCONTEXTS","features":[11]},{"name":"D3DNTHAL_ROW_WEIGHTS","features":[11]},{"name":"D3DNTHAL_SCENECAPTUREDATA","features":[11]},{"name":"D3DNTHAL_SCENE_CAPTURE_END","features":[11]},{"name":"D3DNTHAL_SCENE_CAPTURE_START","features":[11]},{"name":"D3DNTHAL_SETRENDERTARGETDATA","features":[11,3,13]},{"name":"D3DNTHAL_STATESETCREATE","features":[11]},{"name":"D3DNTHAL_TEXTURECREATEDATA","features":[11,3]},{"name":"D3DNTHAL_TEXTUREDESTROYDATA","features":[11]},{"name":"D3DNTHAL_TEXTUREGETSURFDATA","features":[11,3]},{"name":"D3DNTHAL_TEXTURESWAPDATA","features":[11]},{"name":"D3DNTHAL_TSS_MAXSTAGES","features":[11]},{"name":"D3DNTHAL_TSS_RENDERSTATEBASE","features":[11]},{"name":"D3DNTHAL_TSS_STATESPERSTAGE","features":[11]},{"name":"D3DNTHAL_VALIDATETEXTURESTAGESTATEDATA","features":[11]},{"name":"D3DPMISCCAPS_FOGINFVF","features":[11]},{"name":"D3DPMISCCAPS_LINEPATTERNREP","features":[11]},{"name":"D3DPRASTERCAPS_PAT","features":[11]},{"name":"D3DPRASTERCAPS_STRETCHBLTMULTISAMPLE","features":[11]},{"name":"D3DPS_COLOROUT_MAX_V2_0","features":[11]},{"name":"D3DPS_COLOROUT_MAX_V2_1","features":[11]},{"name":"D3DPS_COLOROUT_MAX_V3_0","features":[11]},{"name":"D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[11]},{"name":"D3DPS_CONSTBOOLREG_MAX_V2_1","features":[11]},{"name":"D3DPS_CONSTBOOLREG_MAX_V3_0","features":[11]},{"name":"D3DPS_CONSTINTREG_MAX_SW_DX9","features":[11]},{"name":"D3DPS_CONSTINTREG_MAX_V2_1","features":[11]},{"name":"D3DPS_CONSTINTREG_MAX_V3_0","features":[11]},{"name":"D3DPS_CONSTREG_MAX_DX8","features":[11]},{"name":"D3DPS_CONSTREG_MAX_SW_DX9","features":[11]},{"name":"D3DPS_CONSTREG_MAX_V1_1","features":[11]},{"name":"D3DPS_CONSTREG_MAX_V1_2","features":[11]},{"name":"D3DPS_CONSTREG_MAX_V1_3","features":[11]},{"name":"D3DPS_CONSTREG_MAX_V1_4","features":[11]},{"name":"D3DPS_CONSTREG_MAX_V2_0","features":[11]},{"name":"D3DPS_CONSTREG_MAX_V2_1","features":[11]},{"name":"D3DPS_CONSTREG_MAX_V3_0","features":[11]},{"name":"D3DPS_INPUTREG_MAX_DX8","features":[11]},{"name":"D3DPS_INPUTREG_MAX_SW_DX9","features":[11]},{"name":"D3DPS_INPUTREG_MAX_V1_1","features":[11]},{"name":"D3DPS_INPUTREG_MAX_V1_2","features":[11]},{"name":"D3DPS_INPUTREG_MAX_V1_3","features":[11]},{"name":"D3DPS_INPUTREG_MAX_V1_4","features":[11]},{"name":"D3DPS_INPUTREG_MAX_V2_0","features":[11]},{"name":"D3DPS_INPUTREG_MAX_V2_1","features":[11]},{"name":"D3DPS_INPUTREG_MAX_V3_0","features":[11]},{"name":"D3DPS_MAXLOOPINITVALUE_V2_1","features":[11]},{"name":"D3DPS_MAXLOOPINITVALUE_V3_0","features":[11]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[11]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[11]},{"name":"D3DPS_MAXLOOPSTEP_V2_1","features":[11]},{"name":"D3DPS_MAXLOOPSTEP_V3_0","features":[11]},{"name":"D3DPS_PREDICATE_MAX_V2_1","features":[11]},{"name":"D3DPS_PREDICATE_MAX_V3_0","features":[11]},{"name":"D3DPS_TEMPREG_MAX_DX8","features":[11]},{"name":"D3DPS_TEMPREG_MAX_V1_1","features":[11]},{"name":"D3DPS_TEMPREG_MAX_V1_2","features":[11]},{"name":"D3DPS_TEMPREG_MAX_V1_3","features":[11]},{"name":"D3DPS_TEMPREG_MAX_V1_4","features":[11]},{"name":"D3DPS_TEMPREG_MAX_V2_0","features":[11]},{"name":"D3DPS_TEMPREG_MAX_V2_1","features":[11]},{"name":"D3DPS_TEMPREG_MAX_V3_0","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_DX8","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_V1_1","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_V1_2","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_V1_3","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_V1_4","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_V2_0","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_V2_1","features":[11]},{"name":"D3DPS_TEXTUREREG_MAX_V3_0","features":[11]},{"name":"D3DRENDERSTATE_EVICTMANAGEDTEXTURES","features":[11]},{"name":"D3DRENDERSTATE_SCENECAPTURE","features":[11]},{"name":"D3DRS_DELETERTPATCH","features":[11]},{"name":"D3DRS_MAXPIXELSHADERINST","features":[11]},{"name":"D3DRS_MAXVERTEXSHADERINST","features":[11]},{"name":"D3DTEXF_FLATCUBIC","features":[11]},{"name":"D3DTEXF_GAUSSIANCUBIC","features":[11]},{"name":"D3DTRANSFORMSTATE_WORLD1_DX7","features":[11]},{"name":"D3DTRANSFORMSTATE_WORLD2_DX7","features":[11]},{"name":"D3DTRANSFORMSTATE_WORLD3_DX7","features":[11]},{"name":"D3DTRANSFORMSTATE_WORLD_DX7","features":[11]},{"name":"D3DTSS_TEXTUREMAP","features":[11]},{"name":"D3DVSDE_BLENDINDICES","features":[11]},{"name":"D3DVSDE_BLENDWEIGHT","features":[11]},{"name":"D3DVSDE_DIFFUSE","features":[11]},{"name":"D3DVSDE_NORMAL","features":[11]},{"name":"D3DVSDE_NORMAL2","features":[11]},{"name":"D3DVSDE_POSITION","features":[11]},{"name":"D3DVSDE_POSITION2","features":[11]},{"name":"D3DVSDE_PSIZE","features":[11]},{"name":"D3DVSDE_SPECULAR","features":[11]},{"name":"D3DVSDE_TEXCOORD0","features":[11]},{"name":"D3DVSDE_TEXCOORD1","features":[11]},{"name":"D3DVSDE_TEXCOORD2","features":[11]},{"name":"D3DVSDE_TEXCOORD3","features":[11]},{"name":"D3DVSDE_TEXCOORD4","features":[11]},{"name":"D3DVSDE_TEXCOORD5","features":[11]},{"name":"D3DVSDE_TEXCOORD6","features":[11]},{"name":"D3DVSDE_TEXCOORD7","features":[11]},{"name":"D3DVSDT_D3DCOLOR","features":[11]},{"name":"D3DVSDT_FLOAT1","features":[11]},{"name":"D3DVSDT_FLOAT2","features":[11]},{"name":"D3DVSDT_FLOAT3","features":[11]},{"name":"D3DVSDT_FLOAT4","features":[11]},{"name":"D3DVSDT_SHORT2","features":[11]},{"name":"D3DVSDT_SHORT4","features":[11]},{"name":"D3DVSDT_UBYTE4","features":[11]},{"name":"D3DVSD_CONSTADDRESSSHIFT","features":[11]},{"name":"D3DVSD_CONSTCOUNTSHIFT","features":[11]},{"name":"D3DVSD_CONSTRSSHIFT","features":[11]},{"name":"D3DVSD_DATALOADTYPESHIFT","features":[11]},{"name":"D3DVSD_DATATYPESHIFT","features":[11]},{"name":"D3DVSD_EXTCOUNTSHIFT","features":[11]},{"name":"D3DVSD_EXTINFOSHIFT","features":[11]},{"name":"D3DVSD_SKIPCOUNTSHIFT","features":[11]},{"name":"D3DVSD_STREAMNUMBERSHIFT","features":[11]},{"name":"D3DVSD_STREAMTESSSHIFT","features":[11]},{"name":"D3DVSD_TOKENTYPE","features":[11]},{"name":"D3DVSD_TOKENTYPESHIFT","features":[11]},{"name":"D3DVSD_TOKEN_CONSTMEM","features":[11]},{"name":"D3DVSD_TOKEN_END","features":[11]},{"name":"D3DVSD_TOKEN_EXT","features":[11]},{"name":"D3DVSD_TOKEN_NOP","features":[11]},{"name":"D3DVSD_TOKEN_STREAM","features":[11]},{"name":"D3DVSD_TOKEN_STREAMDATA","features":[11]},{"name":"D3DVSD_TOKEN_TESSELLATOR","features":[11]},{"name":"D3DVSD_VERTEXREGINSHIFT","features":[11]},{"name":"D3DVSD_VERTEXREGSHIFT","features":[11]},{"name":"D3DVS_ADDRREG_MAX_V1_1","features":[11]},{"name":"D3DVS_ADDRREG_MAX_V2_0","features":[11]},{"name":"D3DVS_ADDRREG_MAX_V2_1","features":[11]},{"name":"D3DVS_ADDRREG_MAX_V3_0","features":[11]},{"name":"D3DVS_ATTROUTREG_MAX_V1_1","features":[11]},{"name":"D3DVS_ATTROUTREG_MAX_V2_0","features":[11]},{"name":"D3DVS_ATTROUTREG_MAX_V2_1","features":[11]},{"name":"D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[11]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_0","features":[11]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_1","features":[11]},{"name":"D3DVS_CONSTBOOLREG_MAX_V3_0","features":[11]},{"name":"D3DVS_CONSTINTREG_MAX_SW_DX9","features":[11]},{"name":"D3DVS_CONSTINTREG_MAX_V2_0","features":[11]},{"name":"D3DVS_CONSTINTREG_MAX_V2_1","features":[11]},{"name":"D3DVS_CONSTINTREG_MAX_V3_0","features":[11]},{"name":"D3DVS_CONSTREG_MAX_V1_1","features":[11]},{"name":"D3DVS_CONSTREG_MAX_V2_0","features":[11]},{"name":"D3DVS_CONSTREG_MAX_V2_1","features":[11]},{"name":"D3DVS_CONSTREG_MAX_V3_0","features":[11]},{"name":"D3DVS_INPUTREG_MAX_V1_1","features":[11]},{"name":"D3DVS_INPUTREG_MAX_V2_0","features":[11]},{"name":"D3DVS_INPUTREG_MAX_V2_1","features":[11]},{"name":"D3DVS_INPUTREG_MAX_V3_0","features":[11]},{"name":"D3DVS_LABEL_MAX_V3_0","features":[11]},{"name":"D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[11]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_0","features":[11]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_1","features":[11]},{"name":"D3DVS_MAXLOOPINITVALUE_V3_0","features":[11]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[11]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[11]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[11]},{"name":"D3DVS_MAXLOOPSTEP_V2_0","features":[11]},{"name":"D3DVS_MAXLOOPSTEP_V2_1","features":[11]},{"name":"D3DVS_MAXLOOPSTEP_V3_0","features":[11]},{"name":"D3DVS_OUTPUTREG_MAX_SW_DX9","features":[11]},{"name":"D3DVS_OUTPUTREG_MAX_V3_0","features":[11]},{"name":"D3DVS_PREDICATE_MAX_V2_1","features":[11]},{"name":"D3DVS_PREDICATE_MAX_V3_0","features":[11]},{"name":"D3DVS_TCRDOUTREG_MAX_V1_1","features":[11]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_0","features":[11]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_1","features":[11]},{"name":"D3DVS_TEMPREG_MAX_V1_1","features":[11]},{"name":"D3DVS_TEMPREG_MAX_V2_0","features":[11]},{"name":"D3DVS_TEMPREG_MAX_V2_1","features":[11]},{"name":"D3DVS_TEMPREG_MAX_V3_0","features":[11]},{"name":"D3DVTXPCAPS_NO_VSDT_UBYTE4","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_VISTA","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM1_3","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1_3","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M2_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_3","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_4","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_3","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_3","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_4","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_2","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1_1","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN7","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_CP","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_M3","features":[11]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_RC","features":[11]},{"name":"DDBLT_EXTENDED_PRESENTATION_STRETCHFACTOR","features":[11]},{"name":"DDNT_DEFERRED_AGP_AWARE_DATA","features":[11]},{"name":"DDNT_DXVERSION","features":[11]},{"name":"DDNT_FREE_DEFERRED_AGP_DATA","features":[11]},{"name":"DDNT_GETADAPTERGROUPDATA","features":[11]},{"name":"DDNT_GETD3DQUERYCOUNTDATA","features":[11]},{"name":"DDNT_GETD3DQUERYDATA","features":[11,12]},{"name":"DDNT_GETDDIVERSIONDATA","features":[11]},{"name":"DDNT_GETDRIVERINFO2DATA","features":[11]},{"name":"DDNT_GETEXTENDEDMODECOUNTDATA","features":[11]},{"name":"DDNT_GETEXTENDEDMODEDATA","features":[11,12]},{"name":"DDNT_GETFORMATCOUNTDATA","features":[11]},{"name":"DDNT_GETFORMATDATA","features":[11,13]},{"name":"DDNT_MULTISAMPLEQUALITYLEVELSDATA","features":[11,12]},{"name":"DD_DEFERRED_AGP_AWARE_DATA","features":[11]},{"name":"DD_DXVERSION","features":[11]},{"name":"DD_FREE_DEFERRED_AGP_DATA","features":[11]},{"name":"DD_GETADAPTERGROUPDATA","features":[11]},{"name":"DD_GETD3DQUERYCOUNTDATA","features":[11]},{"name":"DD_GETD3DQUERYDATA","features":[11,12]},{"name":"DD_GETDDIVERSIONDATA","features":[11]},{"name":"DD_GETDRIVERINFO2DATA","features":[11]},{"name":"DD_GETEXTENDEDMODECOUNTDATA","features":[11]},{"name":"DD_GETEXTENDEDMODEDATA","features":[11,12]},{"name":"DD_GETFORMATCOUNTDATA","features":[11]},{"name":"DD_GETFORMATDATA","features":[11,13]},{"name":"DD_MULTISAMPLEQUALITYLEVELSDATA","features":[11,12]},{"name":"DIDDT1_AspectRatio_15x9","features":[11]},{"name":"DIDDT1_AspectRatio_16x10","features":[11]},{"name":"DIDDT1_AspectRatio_16x9","features":[11]},{"name":"DIDDT1_AspectRatio_1x1","features":[11]},{"name":"DIDDT1_AspectRatio_4x3","features":[11]},{"name":"DIDDT1_AspectRatio_5x4","features":[11]},{"name":"DIDDT1_Dependent","features":[11]},{"name":"DIDDT1_Interlaced","features":[11]},{"name":"DIDDT1_Monoscopic","features":[11]},{"name":"DIDDT1_Progressive","features":[11]},{"name":"DIDDT1_Stereo","features":[11]},{"name":"DIDDT1_Sync_Negative","features":[11]},{"name":"DIDDT1_Sync_Positive","features":[11]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I","features":[11]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_ASPECT_RATIO","features":[11]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SCANNING_MODE","features":[11]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SIZE","features":[11]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_STEREO_MODE","features":[11]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SYNC_POLARITY","features":[11]},{"name":"DP2BLT_LINEAR","features":[11]},{"name":"DP2BLT_POINT","features":[11]},{"name":"DX9_DDI_VERSION","features":[11]},{"name":"DXGKARG_SETPALETTE","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA_SP1","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3_PATH_INDEPENDENT_ROTATION","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_0","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_5","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_6","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_2","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_3","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_4","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_5","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_6","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_7","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_8","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_9","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_0","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_1","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN7","features":[11]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN8","features":[11]},{"name":"DXGKDT_OPM_DVI_CHARACTERISTICS","features":[11]},{"name":"DXGKMDT_CERTIFICATE_TYPE","features":[11]},{"name":"DXGKMDT_COPP_CERTIFICATE","features":[11]},{"name":"DXGKMDT_I2C_DEVICE_TRANSMITS_DATA_LENGTH","features":[11]},{"name":"DXGKMDT_I2C_NO_FLAGS","features":[11]},{"name":"DXGKMDT_INDIRECT_DISPLAY_CERTIFICATE","features":[11]},{"name":"DXGKMDT_OPM_128_BIT_RANDOM_NUMBER_SIZE","features":[11]},{"name":"DXGKMDT_OPM_ACP_AND_CGMSA_SIGNALING","features":[11]},{"name":"DXGKMDT_OPM_ACP_LEVEL_ONE","features":[11]},{"name":"DXGKMDT_OPM_ACP_LEVEL_THREE","features":[11]},{"name":"DXGKMDT_OPM_ACP_LEVEL_TWO","features":[11]},{"name":"DXGKMDT_OPM_ACP_OFF","features":[11]},{"name":"DXGKMDT_OPM_ACP_PROTECTION_LEVEL","features":[11]},{"name":"DXGKMDT_OPM_ACTUAL_OUTPUT_FORMAT","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_CENTER","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_TOP","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_CENTER","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_TOP","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_GT_16_BY_9_CENTER","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_16_BY_9_ANAMORPHIC","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3","features":[11]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3_PROTECTED_CENTER","features":[11]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[11]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[11]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_INSIDE_OF_CHIPSET","features":[11]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_NON_STANDARD","features":[11]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[11]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[11]},{"name":"DXGKMDT_OPM_BUS_TYPE_AGP","features":[11]},{"name":"DXGKMDT_OPM_BUS_TYPE_AND_IMPLEMENTATION","features":[11]},{"name":"DXGKMDT_OPM_BUS_TYPE_OTHER","features":[11]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCI","features":[11]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIEXPRESS","features":[11]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIX","features":[11]},{"name":"DXGKMDT_OPM_CERTIFICATE","features":[11]},{"name":"DXGKMDT_OPM_CGMSA","features":[11]},{"name":"DXGKMDT_OPM_CGMSA_COPY_FREELY","features":[11]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NEVER","features":[11]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NO_MORE","features":[11]},{"name":"DXGKMDT_OPM_CGMSA_COPY_ONE_GENERATION","features":[11]},{"name":"DXGKMDT_OPM_CGMSA_OFF","features":[11]},{"name":"DXGKMDT_OPM_CONFIGURE_PARAMETERS","features":[11]},{"name":"DXGKMDT_OPM_CONFIGURE_SETTING_DATA_SIZE","features":[11]},{"name":"DXGKMDT_OPM_CONNECTED_HDCP_DEVICE_INFORMATION","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPONENT_VIDEO","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPOSITE_VIDEO","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EMBEDDED","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EXTERNAL","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DVI","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_D_JPN","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HD15","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HDMI","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_LVDS","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_MIRACAST","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_OTHER","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_RESERVED","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SDI","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SVIDEO","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EMBEDDED","features":[11]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EXTERNAL","features":[11]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_BUS_TYPE_INTEGRATED","features":[11]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_CONNECTOR_TYPE_INTERNAL","features":[11]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_GET_INFO_PARAMETERS","features":[11]},{"name":"DXGKMDT_OPM_CREATE_VIDEO_OUTPUT_FOR_TARGET_PARAMETERS","features":[11,3]},{"name":"DXGKMDT_OPM_DPCP_OFF","features":[11]},{"name":"DXGKMDT_OPM_DPCP_ON","features":[11]},{"name":"DXGKMDT_OPM_DPCP_PROTECTION_LEVEL","features":[11]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_0","features":[11]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_1_OR_ABOVE","features":[11]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS","features":[11]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS_SIZE","features":[11]},{"name":"DXGKMDT_OPM_GET_ACP_AND_CGMSA_SIGNALING","features":[11]},{"name":"DXGKMDT_OPM_GET_ACTUAL_OUTPUT_FORMAT","features":[11]},{"name":"DXGKMDT_OPM_GET_ACTUAL_PROTECTION_LEVEL","features":[11]},{"name":"DXGKMDT_OPM_GET_ADAPTER_BUS_TYPE","features":[11]},{"name":"DXGKMDT_OPM_GET_CODEC_INFO","features":[11]},{"name":"DXGKMDT_OPM_GET_CONNECTED_HDCP_DEVICE_INFORMATION","features":[11]},{"name":"DXGKMDT_OPM_GET_CONNECTOR_TYPE","features":[11]},{"name":"DXGKMDT_OPM_GET_CURRENT_HDCP_SRM_VERSION","features":[11]},{"name":"DXGKMDT_OPM_GET_DVI_CHARACTERISTICS","features":[11]},{"name":"DXGKMDT_OPM_GET_INFORMATION_PARAMETERS_SIZE","features":[11]},{"name":"DXGKMDT_OPM_GET_INFO_PARAMETERS","features":[11]},{"name":"DXGKMDT_OPM_GET_OUTPUT_HARDWARE_PROTECTION_SUPPORT","features":[11]},{"name":"DXGKMDT_OPM_GET_OUTPUT_ID","features":[11]},{"name":"DXGKMDT_OPM_GET_SUPPORTED_PROTECTION_TYPES","features":[11]},{"name":"DXGKMDT_OPM_GET_VIRTUAL_PROTECTION_LEVEL","features":[11]},{"name":"DXGKMDT_OPM_HDCP_FLAG","features":[11]},{"name":"DXGKMDT_OPM_HDCP_FLAG_NONE","features":[11]},{"name":"DXGKMDT_OPM_HDCP_FLAG_REPEATER","features":[11]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR","features":[11]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR_SIZE","features":[11]},{"name":"DXGKMDT_OPM_HDCP_OFF","features":[11]},{"name":"DXGKMDT_OPM_HDCP_ON","features":[11]},{"name":"DXGKMDT_OPM_HDCP_PROTECTION_LEVEL","features":[11]},{"name":"DXGKMDT_OPM_IMAGE_ASPECT_RATIO_EN300294","features":[11]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT","features":[11]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_EVEN_FIRST","features":[11]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_ODD_FIRST","features":[11]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_OTHER","features":[11]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_PROGRESSIVE","features":[11]},{"name":"DXGKMDT_OPM_OMAC","features":[11]},{"name":"DXGKMDT_OPM_OMAC_SIZE","features":[11]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION","features":[11]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_NOT_SUPPORTED","features":[11]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_SUPPORTED","features":[11]},{"name":"DXGKMDT_OPM_OUTPUT_ID","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_1125I","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525I","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525P","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_750P","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_1125I","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_525P","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_750P","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_1125I","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_525P","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_750P","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EIA608B_525","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EN300294_625I","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_2_525I","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_525I","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC62375_625P","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_NONE","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_OTHER","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_ACP","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_CGMSA","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_COPP_COMPATIBLE_HDCP","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_DPCP","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_HDCP","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_MASK","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_NONE","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_OTHER","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_SIZE","features":[11]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_TYPE_ENFORCEMENT_HDCP","features":[11]},{"name":"DXGKMDT_OPM_RANDOM_NUMBER","features":[11]},{"name":"DXGKMDT_OPM_REDISTRIBUTION_CONTROL_REQUIRED","features":[11]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION","features":[11]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION_SIZE","features":[11]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING","features":[11]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING_PARAMETERS","features":[11]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM","features":[11]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM_PARAMETERS","features":[11]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL","features":[11]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_ACCORDING_TO_CSS_DVD","features":[11]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_PARAMETERS","features":[11]},{"name":"DXGKMDT_OPM_STANDARD_INFORMATION","features":[11]},{"name":"DXGKMDT_OPM_STATUS","features":[11]},{"name":"DXGKMDT_OPM_STATUS_LINK_LOST","features":[11]},{"name":"DXGKMDT_OPM_STATUS_NORMAL","features":[11]},{"name":"DXGKMDT_OPM_STATUS_RENEGOTIATION_REQUIRED","features":[11]},{"name":"DXGKMDT_OPM_STATUS_REVOKED_HDCP_DEVICE_ATTACHED","features":[11]},{"name":"DXGKMDT_OPM_STATUS_TAMPERING_DETECTED","features":[11]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_OFF","features":[11]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_NO_TYPE_RESTRICTION","features":[11]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_TYPE1_RESTRICTION","features":[11]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_PROTECTION_LEVEL","features":[11]},{"name":"DXGKMDT_OPM_VIDEO_OUTPUT_SEMANTICS","features":[11]},{"name":"DXGKMDT_OPM_VOS_COPP_SEMANTICS","features":[11]},{"name":"DXGKMDT_OPM_VOS_OPM_INDIRECT_DISPLAY","features":[11]},{"name":"DXGKMDT_OPM_VOS_OPM_SEMANTICS","features":[11]},{"name":"DXGKMDT_UAB_CERTIFICATE","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME0","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME1","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_MODE","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_NONE","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_CHECKERBOARD","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_COLUMN_INTERLEAVED","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO_OFFSET","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_ROW_INTERLEAVED","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_SEPARATE","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_BILINEAR","features":[11]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_HIGH","features":[11]},{"name":"DXGKMT_POWER_SHARED_TYPE","features":[11]},{"name":"DXGKMT_POWER_SHARED_TYPE_AUDIO","features":[11]},{"name":"DXGKVGPU_ESCAPE_HEAD","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_INITIALIZE","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_PAUSE","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_POWERTRANSITIONCOMPLETE","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_READ_PCI_CONFIG","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_READ_VGPU_TYPE","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_RELEASE","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_RESUME","features":[11,3]},{"name":"DXGKVGPU_ESCAPE_TYPE","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_GET_VGPU_TYPE","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_INITIALIZE","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_PAUSE","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_POWERTRANSITIONCOMPLETE","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_READ_PCI_CONFIG","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_RELEASE","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_RESUME","features":[11]},{"name":"DXGKVGPU_ESCAPE_TYPE_WRITE_PCI_CONFIG","features":[11]},{"name":"DXGKVGPU_ESCAPE_WRITE_PCI_CONFIG","features":[11,3]},{"name":"DXGK_ADAPTER_PERFDATA","features":[11]},{"name":"DXGK_ADAPTER_PERFDATACAPS","features":[11]},{"name":"DXGK_BACKLIGHT_INFO","features":[11]},{"name":"DXGK_BACKLIGHT_OPTIMIZATION_LEVEL","features":[11]},{"name":"DXGK_BRIGHTNESS_CAPS","features":[11]},{"name":"DXGK_BRIGHTNESS_GET_NIT_RANGES_OUT","features":[11]},{"name":"DXGK_BRIGHTNESS_GET_OUT","features":[11]},{"name":"DXGK_BRIGHTNESS_MAXIMUM_NIT_RANGE_COUNT","features":[11]},{"name":"DXGK_BRIGHTNESS_NIT_RANGE","features":[11]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA","features":[11]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA_CHROMATICITY","features":[11]},{"name":"DXGK_BRIGHTNESS_SET_IN","features":[11]},{"name":"DXGK_BRIGHTNESS_STATE","features":[11]},{"name":"DXGK_CHILD_DEVICE_HPD_AWARENESS","features":[11]},{"name":"DXGK_DDT_DISPLAYID","features":[11]},{"name":"DXGK_DDT_EDID","features":[11]},{"name":"DXGK_DDT_INVALID","features":[11]},{"name":"DXGK_DIAG_PROCESS_NAME_LENGTH","features":[11]},{"name":"DXGK_DISPLAY_DESCRIPTOR_TYPE","features":[11]},{"name":"DXGK_DISPLAY_INFORMATION","features":[11]},{"name":"DXGK_DISPLAY_TECHNOLOGY","features":[11]},{"name":"DXGK_DISPLAY_USAGE","features":[11]},{"name":"DXGK_DT_INVALID","features":[11]},{"name":"DXGK_DT_LCD","features":[11]},{"name":"DXGK_DT_MAX","features":[11]},{"name":"DXGK_DT_OLED","features":[11]},{"name":"DXGK_DT_OTHER","features":[11]},{"name":"DXGK_DT_PROJECTOR","features":[11]},{"name":"DXGK_DU_ACCESSORY","features":[11]},{"name":"DXGK_DU_AR","features":[11]},{"name":"DXGK_DU_GENERIC","features":[11]},{"name":"DXGK_DU_INVALID","features":[11]},{"name":"DXGK_DU_MAX","features":[11]},{"name":"DXGK_DU_MEDICAL_IMAGING","features":[11]},{"name":"DXGK_DU_VR","features":[11]},{"name":"DXGK_ENGINE_TYPE","features":[11]},{"name":"DXGK_ENGINE_TYPE_3D","features":[11]},{"name":"DXGK_ENGINE_TYPE_COPY","features":[11]},{"name":"DXGK_ENGINE_TYPE_CRYPTO","features":[11]},{"name":"DXGK_ENGINE_TYPE_MAX","features":[11]},{"name":"DXGK_ENGINE_TYPE_OTHER","features":[11]},{"name":"DXGK_ENGINE_TYPE_OVERLAY","features":[11]},{"name":"DXGK_ENGINE_TYPE_SCENE_ASSEMBLY","features":[11]},{"name":"DXGK_ENGINE_TYPE_VIDEO_DECODE","features":[11]},{"name":"DXGK_ENGINE_TYPE_VIDEO_ENCODE","features":[11]},{"name":"DXGK_ENGINE_TYPE_VIDEO_PROCESSING","features":[11]},{"name":"DXGK_ESCAPE_GPUMMUCAPS","features":[11,3]},{"name":"DXGK_FAULT_ERROR_CODE","features":[11]},{"name":"DXGK_GENERAL_ERROR_CODE","features":[11]},{"name":"DXGK_GENERAL_ERROR_INVALID_INSTRUCTION","features":[11]},{"name":"DXGK_GENERAL_ERROR_PAGE_FAULT","features":[11]},{"name":"DXGK_GPUCLOCKDATA","features":[11]},{"name":"DXGK_GPUCLOCKDATA_FLAGS","features":[11]},{"name":"DXGK_GPUVERSION","features":[11]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_INPUT_V_1_2","features":[11,3,10]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_OUTPUT","features":[11,3,10]},{"name":"DXGK_GRAPHICSPOWER_VERSION","features":[11]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_0","features":[11]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_1","features":[11]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_2","features":[11]},{"name":"DXGK_MAX_GPUVERSION_NAME_LENGTH","features":[11]},{"name":"DXGK_MAX_METADATA_NAME_LENGTH","features":[11]},{"name":"DXGK_MAX_PAGE_TABLE_LEVEL_COUNT","features":[11]},{"name":"DXGK_MIN_PAGE_TABLE_LEVEL_COUNT","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_ID","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_INFO","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_COLOR_CONVERT_COMPLETE","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_COMPLETE","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_1","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_2","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_DROPPED","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_START","features":[11]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_UNKNOWN","features":[11]},{"name":"DXGK_MONITORLINKINFO_CAPABILITIES","features":[11]},{"name":"DXGK_MONITORLINKINFO_USAGEHINTS","features":[11]},{"name":"DXGK_NODEMETADATA","features":[11,3]},{"name":"DXGK_NODEMETADATA_FLAGS","features":[11]},{"name":"DXGK_NODE_PERFDATA","features":[11]},{"name":"DXGK_PAGE_FAULT_ADAPTER_RESET_REQUIRED","features":[11]},{"name":"DXGK_PAGE_FAULT_ENGINE_RESET_REQUIRED","features":[11]},{"name":"DXGK_PAGE_FAULT_FATAL_HARDWARE_ERROR","features":[11]},{"name":"DXGK_PAGE_FAULT_FENCE_INVALID","features":[11]},{"name":"DXGK_PAGE_FAULT_FLAGS","features":[11]},{"name":"DXGK_PAGE_FAULT_HW_CONTEXT_VALID","features":[11]},{"name":"DXGK_PAGE_FAULT_IOMMU","features":[11]},{"name":"DXGK_PAGE_FAULT_PROCESS_HANDLE_VALID","features":[11]},{"name":"DXGK_PAGE_FAULT_WRITE","features":[11]},{"name":"DXGK_PTE","features":[11]},{"name":"DXGK_PTE_PAGE_SIZE","features":[11]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_4KB","features":[11]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_64KB","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_GEOMETRY_SHADER","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_INPUT_ASSEMBLER","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_OUTPUT_MERGER","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_PIXEL_SHADER","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_RASTERIZER","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_STREAM_OUTPUT","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_UNKNOWN","features":[11]},{"name":"DXGK_RENDER_PIPELINE_STAGE_VERTEX_SHADER","features":[11]},{"name":"DXGK_TARGETMODE_DETAIL_TIMING","features":[11]},{"name":"DxgkBacklightOptimizationDesktop","features":[11]},{"name":"DxgkBacklightOptimizationDimmed","features":[11]},{"name":"DxgkBacklightOptimizationDisable","features":[11]},{"name":"DxgkBacklightOptimizationDynamic","features":[11]},{"name":"DxgkBacklightOptimizationEDR","features":[11]},{"name":"FLIPEX_TIMEOUT_USER","features":[11]},{"name":"GPUP_DRIVER_ESCAPE_INPUT","features":[11,3]},{"name":"GUID_DEVINTERFACE_GRAPHICSPOWER","features":[11]},{"name":"HpdAwarenessAlwaysConnected","features":[11]},{"name":"HpdAwarenessInterruptible","features":[11]},{"name":"HpdAwarenessNone","features":[11]},{"name":"HpdAwarenessPolled","features":[11]},{"name":"HpdAwarenessUninitialized","features":[11]},{"name":"IOCTL_GPUP_DRIVER_ESCAPE","features":[11]},{"name":"IOCTL_INTERNAL_GRAPHICSPOWER_REGISTER","features":[11]},{"name":"KMTQAITYPE_ADAPTERADDRESS","features":[11]},{"name":"KMTQAITYPE_ADAPTERADDRESS_RENDER","features":[11]},{"name":"KMTQAITYPE_ADAPTERGUID","features":[11]},{"name":"KMTQAITYPE_ADAPTERGUID_RENDER","features":[11]},{"name":"KMTQAITYPE_ADAPTERPERFDATA","features":[11]},{"name":"KMTQAITYPE_ADAPTERPERFDATA_CAPS","features":[11]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO","features":[11]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO_RENDER","features":[11]},{"name":"KMTQAITYPE_ADAPTERTYPE","features":[11]},{"name":"KMTQAITYPE_ADAPTERTYPE_RENDER","features":[11]},{"name":"KMTQAITYPE_BLOCKLIST_KERNEL","features":[11]},{"name":"KMTQAITYPE_BLOCKLIST_RUNTIME","features":[11]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS","features":[11]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS_RENDER","features":[11]},{"name":"KMTQAITYPE_CPDRIVERNAME","features":[11]},{"name":"KMTQAITYPE_CROSSADAPTERRESOURCE_SUPPORT","features":[11]},{"name":"KMTQAITYPE_CURRENTDISPLAYMODE","features":[11]},{"name":"KMTQAITYPE_DIRECTFLIP_SUPPORT","features":[11]},{"name":"KMTQAITYPE_DISPLAY_CAPS","features":[11]},{"name":"KMTQAITYPE_DISPLAY_UMDRIVERNAME","features":[11]},{"name":"KMTQAITYPE_DLIST_DRIVER_NAME","features":[11]},{"name":"KMTQAITYPE_DRIVERCAPS_EXT","features":[11]},{"name":"KMTQAITYPE_DRIVERVERSION","features":[11]},{"name":"KMTQAITYPE_DRIVERVERSION_RENDER","features":[11]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION","features":[11]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION_RENDER","features":[11]},{"name":"KMTQAITYPE_FLIPQUEUEINFO","features":[11]},{"name":"KMTQAITYPE_GETSEGMENTGROUPSIZE","features":[11]},{"name":"KMTQAITYPE_GETSEGMENTSIZE","features":[11]},{"name":"KMTQAITYPE_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[11]},{"name":"KMTQAITYPE_HWDRM_SUPPORT","features":[11]},{"name":"KMTQAITYPE_HYBRID_DLIST_DLL_SUPPORT","features":[11]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[11]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SUPPORT","features":[11]},{"name":"KMTQAITYPE_KMD_DRIVER_VERSION","features":[11]},{"name":"KMTQAITYPE_MIRACASTCOMPANIONDRIVERNAME","features":[11]},{"name":"KMTQAITYPE_MODELIST","features":[11]},{"name":"KMTQAITYPE_MPO3DDI_SUPPORT","features":[11]},{"name":"KMTQAITYPE_MPOKERNELCAPS_SUPPORT","features":[11]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[11]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[11]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[11]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SUPPORT","features":[11]},{"name":"KMTQAITYPE_NODEMETADATA","features":[11]},{"name":"KMTQAITYPE_NODEPERFDATA","features":[11]},{"name":"KMTQAITYPE_OUTPUTDUPLCONTEXTSCOUNT","features":[11]},{"name":"KMTQAITYPE_PANELFITTER_SUPPORT","features":[11]},{"name":"KMTQAITYPE_PARAVIRTUALIZATION_RENDER","features":[11]},{"name":"KMTQAITYPE_PHYSICALADAPTERCOUNT","features":[11]},{"name":"KMTQAITYPE_PHYSICALADAPTERDEVICEIDS","features":[11]},{"name":"KMTQAITYPE_PHYSICALADAPTERPNPKEY","features":[11]},{"name":"KMTQAITYPE_QUERYREGISTRY","features":[11]},{"name":"KMTQAITYPE_QUERY_ADAPTER_UNIQUE_GUID","features":[11]},{"name":"KMTQAITYPE_QUERY_GPUMMU_CAPS","features":[11]},{"name":"KMTQAITYPE_QUERY_HW_PROTECTION_TEARDOWN_COUNT","features":[11]},{"name":"KMTQAITYPE_QUERY_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[11]},{"name":"KMTQAITYPE_QUERY_MIRACAST_DRIVER_TYPE","features":[11]},{"name":"KMTQAITYPE_QUERY_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[11]},{"name":"KMTQAITYPE_SCANOUT_CAPS","features":[11]},{"name":"KMTQAITYPE_SERVICENAME","features":[11]},{"name":"KMTQAITYPE_SETWORKINGSETINFO","features":[11]},{"name":"KMTQAITYPE_TRACKEDWORKLOAD_SUPPORT","features":[11]},{"name":"KMTQAITYPE_UMDRIVERNAME","features":[11]},{"name":"KMTQAITYPE_UMDRIVERPRIVATE","features":[11]},{"name":"KMTQAITYPE_UMD_DRIVER_VERSION","features":[11]},{"name":"KMTQAITYPE_UMOPENGLINFO","features":[11]},{"name":"KMTQAITYPE_VGPUINTERFACEID","features":[11]},{"name":"KMTQAITYPE_VIRTUALADDRESSINFO","features":[11]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS","features":[11]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS_RENDER","features":[11]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS","features":[11]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS_RENDER","features":[11]},{"name":"KMTQAITYPE_WDDM_2_0_CAPS","features":[11]},{"name":"KMTQAITYPE_WDDM_2_7_CAPS","features":[11]},{"name":"KMTQAITYPE_WDDM_2_9_CAPS","features":[11]},{"name":"KMTQAITYPE_WDDM_3_0_CAPS","features":[11]},{"name":"KMTQAITYPE_WDDM_3_1_CAPS","features":[11]},{"name":"KMTQAITYPE_WSAUMDIMAGENAME","features":[11]},{"name":"KMTQAITYPE_XBOX","features":[11]},{"name":"KMTQUERYADAPTERINFOTYPE","features":[11]},{"name":"KMTQUITYPE_GPUVERSION","features":[11]},{"name":"KMTUMDVERSION","features":[11]},{"name":"KMTUMDVERSION_DX10","features":[11]},{"name":"KMTUMDVERSION_DX11","features":[11]},{"name":"KMTUMDVERSION_DX12","features":[11]},{"name":"KMTUMDVERSION_DX12_WSA32","features":[11]},{"name":"KMTUMDVERSION_DX12_WSA64","features":[11]},{"name":"KMTUMDVERSION_DX9","features":[11]},{"name":"KMT_DISPLAY_UMDVERSION_1","features":[11]},{"name":"KMT_DISPLAY_UMD_VERSION","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_1_0","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_1_1","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_1_1_PRERELEASE","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_1_2","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_1_3","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_0","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_1","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_2","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_3","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_4","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_5","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_6","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_7","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_8","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_2_9","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_3_0","features":[11]},{"name":"KMT_DRIVERVERSION_WDDM_3_1","features":[11]},{"name":"LPD3DHAL_CLEAR2CB","features":[11,12]},{"name":"LPD3DHAL_CLEARCB","features":[11,12]},{"name":"LPD3DHAL_CONTEXTCREATECB","features":[11,3,13,14]},{"name":"LPD3DHAL_CONTEXTDESTROYALLCB","features":[11]},{"name":"LPD3DHAL_CONTEXTDESTROYCB","features":[11]},{"name":"LPD3DHAL_DRAWONEINDEXEDPRIMITIVECB","features":[11,12]},{"name":"LPD3DHAL_DRAWONEPRIMITIVECB","features":[11,12]},{"name":"LPD3DHAL_DRAWPRIMITIVES2CB","features":[11,3,13,14]},{"name":"LPD3DHAL_DRAWPRIMITIVESCB","features":[11]},{"name":"LPD3DHAL_GETSTATECB","features":[11,12]},{"name":"LPD3DHAL_RENDERPRIMITIVECB","features":[11,12]},{"name":"LPD3DHAL_RENDERSTATECB","features":[11]},{"name":"LPD3DHAL_SCENECAPTURECB","features":[11]},{"name":"LPD3DHAL_SETRENDERTARGETCB","features":[11,3,13,14]},{"name":"LPD3DHAL_TEXTURECREATECB","features":[11]},{"name":"LPD3DHAL_TEXTUREDESTROYCB","features":[11]},{"name":"LPD3DHAL_TEXTUREGETSURFCB","features":[11]},{"name":"LPD3DHAL_TEXTURESWAPCB","features":[11]},{"name":"LPD3DHAL_VALIDATETEXTURESTAGESTATECB","features":[11]},{"name":"LPD3DNTHAL_CLEAR2CB","features":[11,12]},{"name":"LPD3DNTHAL_CONTEXTCREATECB","features":[11,3,13]},{"name":"LPD3DNTHAL_CONTEXTDESTROYALLCB","features":[11]},{"name":"LPD3DNTHAL_CONTEXTDESTROYCB","features":[11]},{"name":"LPD3DNTHAL_DRAWPRIMITIVES2CB","features":[11,3,13]},{"name":"LPD3DNTHAL_SCENECAPTURECB","features":[11]},{"name":"LPD3DNTHAL_SETRENDERTARGETCB","features":[11,3,13]},{"name":"LPD3DNTHAL_TEXTURECREATECB","features":[11,3]},{"name":"LPD3DNTHAL_TEXTUREDESTROYCB","features":[11]},{"name":"LPD3DNTHAL_TEXTUREGETSURFCB","features":[11,3]},{"name":"LPD3DNTHAL_TEXTURESWAPCB","features":[11]},{"name":"LPD3DNTHAL_VALIDATETEXTURESTAGESTATECB","features":[11]},{"name":"MAX_ENUM_ADAPTERS","features":[11]},{"name":"MiracastStartPending","features":[11]},{"name":"MiracastStarted","features":[11]},{"name":"MiracastStopPending","features":[11]},{"name":"MiracastStopped","features":[11]},{"name":"NUM_KMTUMDVERSIONS","features":[11]},{"name":"NUM_KMT_DISPLAY_UMDVERSIONS","features":[11]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_INFO","features":[11,3]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS","features":[11]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_ACTIVE","features":[11]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_INACTIVE","features":[11]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_PENDING_DESTROY","features":[11]},{"name":"OUTPUTDUPL_CREATE_MAX_KEYEDMUTXES","features":[11]},{"name":"PDXGK_FSTATE_NOTIFICATION","features":[11,3]},{"name":"PDXGK_GRAPHICSPOWER_UNREGISTER","features":[11,3]},{"name":"PDXGK_INITIAL_COMPONENT_STATE","features":[11,3]},{"name":"PDXGK_POWER_NOTIFICATION","features":[11,3,10]},{"name":"PDXGK_REMOVAL_NOTIFICATION","features":[11]},{"name":"PDXGK_SET_SHARED_POWER_COMPONENT_STATE","features":[11,3]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX","features":[11,3]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX2","features":[11,3]},{"name":"PFND3DKMT_ADJUSTFULLSCREENGAMMA","features":[11,3]},{"name":"PFND3DKMT_BUDGETCHANGENOTIFICATIONCALLBACK","features":[11]},{"name":"PFND3DKMT_CANCELPRESENTS","features":[11,3]},{"name":"PFND3DKMT_CHANGESURFACEPOINTER","features":[11,3,14]},{"name":"PFND3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[11,3]},{"name":"PFND3DKMT_CHECKEXCLUSIVEOWNERSHIP","features":[11,3]},{"name":"PFND3DKMT_CHECKMONITORPOWERSTATE","features":[11,3]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[11,3]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[11,3]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[11,3]},{"name":"PFND3DKMT_CHECKOCCLUSION","features":[11,3]},{"name":"PFND3DKMT_CHECKSHAREDRESOURCEACCESS","features":[11,3]},{"name":"PFND3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[11,3]},{"name":"PFND3DKMT_CLOSEADAPTER","features":[11,3]},{"name":"PFND3DKMT_CONFIGURESHAREDRESOURCE","features":[11,3]},{"name":"PFND3DKMT_CONNECTDOORBELL","features":[11,3]},{"name":"PFND3DKMT_CREATEALLOCATION","features":[11,3]},{"name":"PFND3DKMT_CREATEALLOCATION2","features":[11,3]},{"name":"PFND3DKMT_CREATECONTEXT","features":[11,3]},{"name":"PFND3DKMT_CREATECONTEXTVIRTUAL","features":[11,3]},{"name":"PFND3DKMT_CREATEDCFROMMEMORY","features":[11,3,14]},{"name":"PFND3DKMT_CREATEDEVICE","features":[11,3]},{"name":"PFND3DKMT_CREATEDOORBELL","features":[11,3]},{"name":"PFND3DKMT_CREATEHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX","features":[11,3]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX2","features":[11,3]},{"name":"PFND3DKMT_CREATENATIVEFENCE","features":[11,3]},{"name":"PFND3DKMT_CREATEOUTPUTDUPL","features":[11,3]},{"name":"PFND3DKMT_CREATEOVERLAY","features":[11,3]},{"name":"PFND3DKMT_CREATEPAGINGQUEUE","features":[11,3]},{"name":"PFND3DKMT_CREATEPROTECTEDSESSION","features":[11,3]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[11,3]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[11,3]},{"name":"PFND3DKMT_DESTROYALLOCATION","features":[11,3]},{"name":"PFND3DKMT_DESTROYALLOCATION2","features":[11,3]},{"name":"PFND3DKMT_DESTROYCONTEXT","features":[11,3]},{"name":"PFND3DKMT_DESTROYDCFROMMEMORY","features":[11,3,14]},{"name":"PFND3DKMT_DESTROYDEVICE","features":[11,3]},{"name":"PFND3DKMT_DESTROYDOORBELL","features":[11,3]},{"name":"PFND3DKMT_DESTROYHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_DESTROYKEYEDMUTEX","features":[11,3]},{"name":"PFND3DKMT_DESTROYOUTPUTDUPL","features":[11,3]},{"name":"PFND3DKMT_DESTROYOVERLAY","features":[11,3]},{"name":"PFND3DKMT_DESTROYPAGINGQUEUE","features":[11,3]},{"name":"PFND3DKMT_DESTROYPROTECTEDSESSION","features":[11,3]},{"name":"PFND3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[11,3]},{"name":"PFND3DKMT_ENUMADAPTERS","features":[11,3]},{"name":"PFND3DKMT_ENUMADAPTERS2","features":[11,3]},{"name":"PFND3DKMT_ENUMADAPTERS3","features":[11,3]},{"name":"PFND3DKMT_ESCAPE","features":[11,3]},{"name":"PFND3DKMT_EVICT","features":[11,3]},{"name":"PFND3DKMT_FLIPOVERLAY","features":[11,3]},{"name":"PFND3DKMT_FLUSHHEAPTRANSITIONS","features":[11,3]},{"name":"PFND3DKMT_FREEGPUVIRTUALADDRESS","features":[11,3]},{"name":"PFND3DKMT_GETALLOCATIONPRIORITY","features":[11,3]},{"name":"PFND3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[11,3]},{"name":"PFND3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[11,3]},{"name":"PFND3DKMT_GETDEVICESTATE","features":[11,3]},{"name":"PFND3DKMT_GETDISPLAYMODELIST","features":[11,3]},{"name":"PFND3DKMT_GETDWMVERTICALBLANKEVENT","features":[11,3]},{"name":"PFND3DKMT_GETMULTIPLANEOVERLAYCAPS","features":[11,3]},{"name":"PFND3DKMT_GETMULTISAMPLEMETHODLIST","features":[11,3]},{"name":"PFND3DKMT_GETOVERLAYSTATE","features":[11,3]},{"name":"PFND3DKMT_GETPOSTCOMPOSITIONCAPS","features":[11,3]},{"name":"PFND3DKMT_GETPRESENTHISTORY","features":[11,3]},{"name":"PFND3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[11,3]},{"name":"PFND3DKMT_GETPROCESSSCHEDULINGPRIORITYCLASS","features":[11,3]},{"name":"PFND3DKMT_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[11,3]},{"name":"PFND3DKMT_GETRUNTIMEDATA","features":[11,3]},{"name":"PFND3DKMT_GETSCANLINE","features":[11,3]},{"name":"PFND3DKMT_GETSHAREDPRIMARYHANDLE","features":[11,3]},{"name":"PFND3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[11,3]},{"name":"PFND3DKMT_INVALIDATEACTIVEVIDPN","features":[11,3]},{"name":"PFND3DKMT_INVALIDATECACHE","features":[11,3]},{"name":"PFND3DKMT_LOCK","features":[11,3]},{"name":"PFND3DKMT_LOCK2","features":[11,3]},{"name":"PFND3DKMT_MAKERESIDENT","features":[11,3]},{"name":"PFND3DKMT_MAPGPUVIRTUALADDRESS","features":[11,3]},{"name":"PFND3DKMT_MARKDEVICEASERROR","features":[11,3]},{"name":"PFND3DKMT_NOTIFYWORKSUBMISSION","features":[11,3]},{"name":"PFND3DKMT_OFFERALLOCATIONS","features":[11,3]},{"name":"PFND3DKMT_OPENADAPTERFROMDEVICENAME","features":[11,3]},{"name":"PFND3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[11,3]},{"name":"PFND3DKMT_OPENADAPTERFROMHDC","features":[11,3,14]},{"name":"PFND3DKMT_OPENADAPTERFROMLUID","features":[11,3]},{"name":"PFND3DKMT_OPENKEYEDMUTEX","features":[11,3]},{"name":"PFND3DKMT_OPENKEYEDMUTEX2","features":[11,3]},{"name":"PFND3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[11,3]},{"name":"PFND3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[11,3]},{"name":"PFND3DKMT_OPENNTHANDLEFROMNAME","features":[4,11,3]},{"name":"PFND3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[11,3]},{"name":"PFND3DKMT_OPENRESOURCE","features":[11,3]},{"name":"PFND3DKMT_OPENRESOURCE2","features":[11,3]},{"name":"PFND3DKMT_OPENRESOURCEFROMNTHANDLE","features":[11,3]},{"name":"PFND3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[11,3]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[11,3]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[11,3]},{"name":"PFND3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[4,11,3]},{"name":"PFND3DKMT_OUTPUTDUPLGETFRAMEINFO","features":[11,3]},{"name":"PFND3DKMT_OUTPUTDUPLGETMETADATA","features":[11,3]},{"name":"PFND3DKMT_OUTPUTDUPLGETPOINTERSHAPEDATA","features":[11,3]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENT","features":[11,3]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_OUTPUTDUPLRELEASEFRAME","features":[11,3]},{"name":"PFND3DKMT_PINDIRECTFLIPRESOURCES","features":[11,3]},{"name":"PFND3DKMT_POLLDISPLAYCHILDREN","features":[11,3]},{"name":"PFND3DKMT_PRESENT","features":[11,3]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY","features":[11,3]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY2","features":[11,3]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY3","features":[11,3]},{"name":"PFND3DKMT_QUERYADAPTERINFO","features":[11,3]},{"name":"PFND3DKMT_QUERYALLOCATIONRESIDENCY","features":[11,3]},{"name":"PFND3DKMT_QUERYCLOCKCALIBRATION","features":[11,3]},{"name":"PFND3DKMT_QUERYFSEBLOCK","features":[11,3]},{"name":"PFND3DKMT_QUERYHYBRIDLISTVALUE","features":[11,3]},{"name":"PFND3DKMT_QUERYPROCESSOFFERINFO","features":[11,3]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[11,3]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[11,3]},{"name":"PFND3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[11,3]},{"name":"PFND3DKMT_QUERYRESOURCEINFO","features":[11,3]},{"name":"PFND3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[11,3]},{"name":"PFND3DKMT_QUERYSTATISTICS","features":[11,3]},{"name":"PFND3DKMT_QUERYVIDEOMEMORYINFO","features":[11,3]},{"name":"PFND3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[11,3]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS","features":[11,3]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS2","features":[11,3]},{"name":"PFND3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[11,3]},{"name":"PFND3DKMT_REGISTERTRIMNOTIFICATION","features":[11,3]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX","features":[11,3]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX2","features":[11,3]},{"name":"PFND3DKMT_RELEASEPROCESSVIDPNSOURCEOWNERS","features":[11,3]},{"name":"PFND3DKMT_RENDER","features":[11,3]},{"name":"PFND3DKMT_RESERVEGPUVIRTUALADDRESS","features":[11,3]},{"name":"PFND3DKMT_SETALLOCATIONPRIORITY","features":[11,3]},{"name":"PFND3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[11,3]},{"name":"PFND3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[11,3]},{"name":"PFND3DKMT_SETDISPLAYMODE","features":[11,3]},{"name":"PFND3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[11,3]},{"name":"PFND3DKMT_SETFSEBLOCK","features":[11,3]},{"name":"PFND3DKMT_SETGAMMARAMP","features":[11,3]},{"name":"PFND3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[11,3]},{"name":"PFND3DKMT_SETHYBRIDLISTVVALUE","features":[11,3]},{"name":"PFND3DKMT_SETPROCESSSCHEDULINGPRIORITYCLASS","features":[11,3]},{"name":"PFND3DKMT_SETQUEUEDLIMIT","features":[11,3]},{"name":"PFND3DKMT_SETSTABLEPOWERSTATE","features":[11,3]},{"name":"PFND3DKMT_SETSTEREOENABLED","features":[11,3]},{"name":"PFND3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[11,3]},{"name":"PFND3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[11,3]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER","features":[11,3]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER1","features":[11,3]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER2","features":[11,3]},{"name":"PFND3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[11,3]},{"name":"PFND3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[11,3]},{"name":"PFND3DKMT_SHAREOBJECTS","features":[4,11,3]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[11,3]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[11,3]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[11,3]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[11,3]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[11,3]},{"name":"PFND3DKMT_SUBMITCOMMAND","features":[11,3]},{"name":"PFND3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_SUBMITPRESENTTOHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[11,3]},{"name":"PFND3DKMT_TRIMNOTIFICATIONCALLBACK","features":[11]},{"name":"PFND3DKMT_TRIMPROCESSCOMMITMENT","features":[11,3]},{"name":"PFND3DKMT_UNLOCK","features":[11,3]},{"name":"PFND3DKMT_UNLOCK2","features":[11,3]},{"name":"PFND3DKMT_UNPINDIRECTFLIPRESOURCES","features":[11,3]},{"name":"PFND3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[11,3]},{"name":"PFND3DKMT_UNREGISTERTRIMNOTIFICATION","features":[11,3]},{"name":"PFND3DKMT_UPDATEALLOCATIONPROPERTY","features":[11,3]},{"name":"PFND3DKMT_UPDATEGPUVIRTUALADDRESS","features":[11,3]},{"name":"PFND3DKMT_UPDATEOVERLAY","features":[11,3]},{"name":"PFND3DKMT_WAITFORIDLE","features":[11,3]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[11,3]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[11,3]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[11,3]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[11,3]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT","features":[11,3]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT2","features":[11,3]},{"name":"PFND3DNTPARSEUNKNOWNCOMMAND","features":[11]},{"name":"PFND3DPARSEUNKNOWNCOMMAND","features":[11]},{"name":"RTPATCHFLAG_HASINFO","features":[11]},{"name":"RTPATCHFLAG_HASSEGS","features":[11]},{"name":"SHARED_ALLOCATION_WRITE","features":[11]},{"name":"_NT_D3DDEVCAPS_HWINDEXBUFFER","features":[11]},{"name":"_NT_D3DDEVCAPS_HWVERTEXBUFFER","features":[11]},{"name":"_NT_D3DDEVCAPS_SUBVOLUMELOCK","features":[11]},{"name":"_NT_D3DFVF_FOG","features":[11]},{"name":"_NT_D3DGDI2_MAGIC","features":[11]},{"name":"_NT_D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[11]},{"name":"_NT_D3DGDI2_TYPE_DEFER_AGP_FREES","features":[11]},{"name":"_NT_D3DGDI2_TYPE_DXVERSION","features":[11]},{"name":"_NT_D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETADAPTERGROUP","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS8","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS9","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERY","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETDDIVERSION","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODE","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETFORMAT","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETFORMATCOUNT","features":[11]},{"name":"_NT_D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[11]},{"name":"_NT_D3DLINEPATTERN","features":[11]},{"name":"_NT_D3DPMISCCAPS_FOGINFVF","features":[11]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_0","features":[11]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_COLOROUT_MAX_V3_0","features":[11]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[11]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_SW_DX9","features":[11]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_DX8","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_SW_DX9","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_2","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_3","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_4","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_CONSTREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_DX8","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_2","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_3","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_4","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_INPUTREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V2_1","features":[11]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V3_0","features":[11]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[11]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[11]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V2_1","features":[11]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V3_0","features":[11]},{"name":"_NT_D3DPS_PREDICATE_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_PREDICATE_MAX_V3_0","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_DX8","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_2","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_3","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_4","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_TEMPREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_DX8","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_2","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_3","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_4","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DRS_DELETERTPATCH","features":[11]},{"name":"_NT_D3DVS_ADDRREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_ADDRREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[11]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_SW_DX9","features":[11]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_CONSTREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_CONSTREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_INPUTREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_INPUTREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_LABEL_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[11]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_0","features":[11]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_1","features":[11]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V3_0","features":[11]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[11]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[11]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[11]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_0","features":[11]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_1","features":[11]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V3_0","features":[11]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_SW_DX9","features":[11]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_PREDICATE_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_PREDICATE_MAX_V3_0","features":[11]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_TEMPREG_MAX_V1_1","features":[11]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_0","features":[11]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_1","features":[11]},{"name":"_NT_D3DVS_TEMPREG_MAX_V3_0","features":[11]},{"name":"_NT_RTPATCHFLAG_HASINFO","features":[11]},{"name":"_NT_RTPATCHFLAG_HASSEGS","features":[11]}],"343":[{"name":"AUTHENTICATE","features":[16]},{"name":"BINARY_COMPATIBLE","features":[16]},{"name":"BINARY_DATA","features":[16]},{"name":"BROADCAST_VC","features":[16]},{"name":"BSSID_INFO","features":[16]},{"name":"CALL_PARAMETERS_CHANGED","features":[16]},{"name":"CLOCK_NETWORK_DERIVED","features":[16]},{"name":"CLOCK_PRECISION","features":[16]},{"name":"CL_ADD_PARTY_COMPLETE_HANDLER","features":[16]},{"name":"CL_CALL_CONNECTED_HANDLER","features":[16]},{"name":"CL_CLOSE_AF_COMPLETE_HANDLER","features":[16]},{"name":"CL_CLOSE_CALL_COMPLETE_HANDLER","features":[16]},{"name":"CL_DEREG_SAP_COMPLETE_HANDLER","features":[16]},{"name":"CL_DROP_PARTY_COMPLETE_HANDLER","features":[16]},{"name":"CL_INCOMING_CALL_HANDLER","features":[16]},{"name":"CL_INCOMING_CALL_QOS_CHANGE_HANDLER","features":[16]},{"name":"CL_INCOMING_CLOSE_CALL_HANDLER","features":[16]},{"name":"CL_INCOMING_DROP_PARTY_HANDLER","features":[16]},{"name":"CL_MAKE_CALL_COMPLETE_HANDLER","features":[16]},{"name":"CL_MODIFY_CALL_QOS_COMPLETE_HANDLER","features":[16]},{"name":"CL_OPEN_AF_COMPLETE_HANDLER","features":[16]},{"name":"CL_REG_SAP_COMPLETE_HANDLER","features":[16]},{"name":"CM_ACTIVATE_VC_COMPLETE_HANDLER","features":[16]},{"name":"CM_ADD_PARTY_HANDLER","features":[16]},{"name":"CM_CLOSE_AF_HANDLER","features":[16]},{"name":"CM_CLOSE_CALL_HANDLER","features":[16]},{"name":"CM_DEACTIVATE_VC_COMPLETE_HANDLER","features":[16]},{"name":"CM_DEREG_SAP_HANDLER","features":[16]},{"name":"CM_DROP_PARTY_HANDLER","features":[16]},{"name":"CM_INCOMING_CALL_COMPLETE_HANDLER","features":[16]},{"name":"CM_MAKE_CALL_HANDLER","features":[16]},{"name":"CM_MODIFY_CALL_QOS_HANDLER","features":[16]},{"name":"CM_OPEN_AF_HANDLER","features":[16]},{"name":"CM_REG_SAP_HANDLER","features":[16]},{"name":"CO_ADDRESS","features":[16]},{"name":"CO_ADDRESS_FAMILY","features":[16]},{"name":"CO_ADDRESS_FAMILY_PROXY","features":[16]},{"name":"CO_ADDRESS_LIST","features":[16]},{"name":"CO_AF_REGISTER_NOTIFY_HANDLER","features":[16]},{"name":"CO_CALL_MANAGER_PARAMETERS","features":[16,17]},{"name":"CO_CALL_PARAMETERS","features":[16]},{"name":"CO_CREATE_VC_HANDLER","features":[16]},{"name":"CO_DELETE_VC_HANDLER","features":[16]},{"name":"CO_MEDIA_PARAMETERS","features":[16]},{"name":"CO_PVC","features":[16]},{"name":"CO_SAP","features":[16]},{"name":"CO_SEND_FLAG_SET_DISCARD_ELIBILITY","features":[16]},{"name":"CO_SPECIFIC_PARAMETERS","features":[16]},{"name":"CRYPTO_GENERIC_ERROR","features":[16]},{"name":"CRYPTO_INVALID_PACKET_SYNTAX","features":[16]},{"name":"CRYPTO_INVALID_PROTOCOL","features":[16]},{"name":"CRYPTO_SUCCESS","features":[16]},{"name":"CRYPTO_TRANSPORT_AH_AUTH_FAILED","features":[16]},{"name":"CRYPTO_TRANSPORT_ESP_AUTH_FAILED","features":[16]},{"name":"CRYPTO_TUNNEL_AH_AUTH_FAILED","features":[16]},{"name":"CRYPTO_TUNNEL_ESP_AUTH_FAILED","features":[16]},{"name":"CachedNetBufferList","features":[16]},{"name":"ClassificationHandlePacketInfo","features":[16]},{"name":"DD_NDIS_DEVICE_NAME","features":[16]},{"name":"DOT11_RSN_KCK_LENGTH","features":[16]},{"name":"DOT11_RSN_KEK_LENGTH","features":[16]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[16]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[16]},{"name":"ENCRYPT","features":[16]},{"name":"ERRED_PACKET_INDICATION","features":[16]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[16]},{"name":"ETH_FILTER","features":[16]},{"name":"FILTERDBS","features":[16]},{"name":"GEN_GET_NETCARD_TIME","features":[16]},{"name":"GEN_GET_TIME_CAPS","features":[16]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[16]},{"name":"GUID_NDIS_NDK_STATE","features":[16]},{"name":"INDICATE_END_OF_TX","features":[16]},{"name":"INDICATE_ERRED_PACKETS","features":[16]},{"name":"IOCTL_NDIS_RESERVED5","features":[16]},{"name":"IOCTL_NDIS_RESERVED6","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[16]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[16]},{"name":"IPSEC_OFFLOAD_V2_ESN_SA","features":[16]},{"name":"IPSEC_OFFLOAD_V2_INBOUND","features":[16]},{"name":"IPSEC_OFFLOAD_V2_IPv6","features":[16]},{"name":"IPSEC_OFFLOAD_V2_MAX_EXTENSION_HEADERS","features":[16]},{"name":"IPSEC_OFFLOAD_V2_TRANSPORT_OVER_UDP_ESP_ENCAPSULATION_TUNNEL","features":[16]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_NONE","features":[16]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT","features":[16]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT_OVER_TUNNEL","features":[16]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TUNNEL","features":[16]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_IKE","features":[16]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_OTHER","features":[16]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_IKE","features":[16]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_OTHER","features":[16]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_IKE","features":[16]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_OTHER","features":[16]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_IKE","features":[16]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_OTHER","features":[16]},{"name":"Ieee8021QInfo","features":[16]},{"name":"IpSecPacketInfo","features":[16]},{"name":"LOCK_STATE","features":[16]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[16]},{"name":"MAX_HASHES","features":[16]},{"name":"MEDIA_SPECIFIC_INFORMATION","features":[16]},{"name":"MINIPORT_CO_ACTIVATE_VC","features":[16]},{"name":"MINIPORT_CO_CREATE_VC","features":[16]},{"name":"MINIPORT_CO_DEACTIVATE_VC","features":[16]},{"name":"MINIPORT_CO_DELETE_VC","features":[16]},{"name":"MULTIPOINT_VC","features":[16]},{"name":"MaxPerPacketInfo","features":[16]},{"name":"NBL_FLAGS_MINIPORT_RESERVED","features":[16]},{"name":"NBL_FLAGS_NDIS_RESERVED","features":[16]},{"name":"NBL_FLAGS_PROTOCOL_RESERVED","features":[16]},{"name":"NBL_FLAGS_SCRATCH","features":[16]},{"name":"NBL_PROT_RSVD_FLAGS","features":[16]},{"name":"NDIS630_MINIPORT","features":[16]},{"name":"NDIS685_MINIPORT","features":[16]},{"name":"NDIS_802_11_AI_REQFI","features":[16]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[16]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[16]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[16]},{"name":"NDIS_802_11_AI_RESFI","features":[16]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[16]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[16]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[16]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[16]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[16]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[16]},{"name":"NDIS_802_11_BSSID_LIST","features":[16]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[16]},{"name":"NDIS_802_11_CAPABILITY","features":[16]},{"name":"NDIS_802_11_CONFIGURATION","features":[16]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[16]},{"name":"NDIS_802_11_FIXED_IEs","features":[16]},{"name":"NDIS_802_11_KEY","features":[16]},{"name":"NDIS_802_11_LENGTH_RATES","features":[16]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[16]},{"name":"NDIS_802_11_LENGTH_SSID","features":[16]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[16]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[16]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[16]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[16]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[16]},{"name":"NDIS_802_11_PMKID","features":[16]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[16]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[16]},{"name":"NDIS_802_11_POWER_MODE","features":[16]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[16]},{"name":"NDIS_802_11_RADIO_STATUS","features":[16]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[16]},{"name":"NDIS_802_11_REMOVE_KEY","features":[16]},{"name":"NDIS_802_11_SSID","features":[16]},{"name":"NDIS_802_11_STATISTICS","features":[16]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[16]},{"name":"NDIS_802_11_STATUS_TYPE","features":[16]},{"name":"NDIS_802_11_TEST","features":[16]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[16]},{"name":"NDIS_802_11_WEP","features":[16]},{"name":"NDIS_802_11_WEP_STATUS","features":[16]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[16]},{"name":"NDIS_802_5_RING_STATE","features":[16]},{"name":"NDIS_AF_LIST","features":[16]},{"name":"NDIS_ANY_NUMBER_OF_NBLS","features":[16]},{"name":"NDIS_ATTRIBUTE_BUS_MASTER","features":[16]},{"name":"NDIS_ATTRIBUTE_DESERIALIZE","features":[16]},{"name":"NDIS_ATTRIBUTE_DO_NOT_BIND_TO_ALL_CO","features":[16]},{"name":"NDIS_ATTRIBUTE_IGNORE_PACKET_TIMEOUT","features":[16]},{"name":"NDIS_ATTRIBUTE_IGNORE_REQUEST_TIMEOUT","features":[16]},{"name":"NDIS_ATTRIBUTE_IGNORE_TOKEN_RING_ERRORS","features":[16]},{"name":"NDIS_ATTRIBUTE_INTERMEDIATE_DRIVER","features":[16]},{"name":"NDIS_ATTRIBUTE_MINIPORT_PADS_SHORT_PACKETS","features":[16]},{"name":"NDIS_ATTRIBUTE_NOT_CO_NDIS","features":[16]},{"name":"NDIS_ATTRIBUTE_NO_HALT_ON_SUSPEND","features":[16]},{"name":"NDIS_ATTRIBUTE_SURPRISE_REMOVE_OK","features":[16]},{"name":"NDIS_ATTRIBUTE_USES_SAFE_BUFFER_APIS","features":[16]},{"name":"NDIS_BIND_FAILED_NOTIFICATION_REVISION_1","features":[16]},{"name":"NDIS_BIND_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_BIND_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_BIND_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_BIND_PARAMETERS_REVISION_4","features":[16]},{"name":"NDIS_CALL_MANAGER_CHARACTERISTICS","features":[16]},{"name":"NDIS_CLASS_ID","features":[16]},{"name":"NDIS_CLONE_FLAGS_RESERVED","features":[16]},{"name":"NDIS_CLONE_FLAGS_USE_ORIGINAL_MDLS","features":[16]},{"name":"NDIS_CONFIGURATION_OBJECT_REVISION_1","features":[16]},{"name":"NDIS_CONFIGURATION_PARAMETER","features":[16,3]},{"name":"NDIS_CONFIG_FLAG_FILTER_INSTANCE_CONFIGURATION","features":[16]},{"name":"NDIS_CO_CALL_MANAGER_OPTIONAL_HANDLERS_REVISION_1","features":[16]},{"name":"NDIS_CO_CLIENT_OPTIONAL_HANDLERS_REVISION_1","features":[16]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[16]},{"name":"NDIS_CO_LINK_SPEED","features":[16]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[16]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[16]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[16]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[16]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[16]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[16]},{"name":"NDIS_DEVICE_OBJECT_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_DEVICE_PNP_EVENT","features":[16]},{"name":"NDIS_DEVICE_POWER_STATE","features":[16]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[16]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[16]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[16]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[16]},{"name":"NDIS_DMA_BLOCK","features":[4,16,3,9]},{"name":"NDIS_DMA_DESCRIPTION","features":[16,5,3]},{"name":"NDIS_DRIVER_FLAGS_RESERVED","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[16]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[16]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[16]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[16]},{"name":"NDIS_ENCAPSULATION_NULL","features":[16]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[16]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[16]},{"name":"NDIS_ENUM_FILTERS_REVISION_1","features":[16]},{"name":"NDIS_ENVIRONMENT_TYPE","features":[16]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[16]},{"name":"NDIS_ETH_TYPE_802_1X","features":[16]},{"name":"NDIS_ETH_TYPE_ARP","features":[16]},{"name":"NDIS_ETH_TYPE_IPV4","features":[16]},{"name":"NDIS_ETH_TYPE_IPV6","features":[16]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[16]},{"name":"NDIS_EVENT","features":[4,16,3,9]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[16]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[16]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[16]},{"name":"NDIS_FILTER_ATTACH_FLAGS_IGNORE_MANDATORY","features":[16]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_4","features":[16]},{"name":"NDIS_FILTER_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_2","features":[16]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_3","features":[16]},{"name":"NDIS_FILTER_DRIVER_MANDATORY","features":[16]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[16]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[16]},{"name":"NDIS_FILTER_INTERFACE_IM_FILTER","features":[16]},{"name":"NDIS_FILTER_INTERFACE_LW_FILTER","features":[16]},{"name":"NDIS_FILTER_INTERFACE_RECEIVE_BYPASS","features":[16]},{"name":"NDIS_FILTER_INTERFACE_REVISION_1","features":[16]},{"name":"NDIS_FILTER_INTERFACE_REVISION_2","features":[16]},{"name":"NDIS_FILTER_INTERFACE_SEND_BYPASS","features":[16]},{"name":"NDIS_FILTER_MAJOR_VERSION","features":[16]},{"name":"NDIS_FILTER_MINIMUM_MAJOR_VERSION","features":[16]},{"name":"NDIS_FILTER_MINIMUM_MINOR_VERSION","features":[16]},{"name":"NDIS_FILTER_MINOR_VERSION","features":[16]},{"name":"NDIS_FILTER_PARTIAL_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_FILTER_PAUSE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_FILTER_RESTART_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_FLAGS_DONT_LOOPBACK","features":[16]},{"name":"NDIS_FLAGS_DOUBLE_BUFFERED","features":[16]},{"name":"NDIS_FLAGS_IS_LOOPBACK_PACKET","features":[16]},{"name":"NDIS_FLAGS_LOOPBACK_ONLY","features":[16]},{"name":"NDIS_FLAGS_MULTICAST_PACKET","features":[16]},{"name":"NDIS_FLAGS_PADDED","features":[16]},{"name":"NDIS_FLAGS_PROTOCOL_ID_MASK","features":[16]},{"name":"NDIS_FLAGS_RESERVED2","features":[16]},{"name":"NDIS_FLAGS_RESERVED3","features":[16]},{"name":"NDIS_FLAGS_RESERVED4","features":[16]},{"name":"NDIS_FLAGS_SENT_AT_DPC","features":[16]},{"name":"NDIS_FLAGS_USES_ORIGINAL_PACKET","features":[16]},{"name":"NDIS_FLAGS_USES_SG_BUFFER_LIST","features":[16]},{"name":"NDIS_FLAGS_XLATE_AT_TOP","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[16]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[16]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[16]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[16]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[16]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[16]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[16]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[16]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[16]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[16]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[16]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[16]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[16]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[16]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[16]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[16]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[16]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[16]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[16]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[16]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[16]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[16]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[16]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[16]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[16]},{"name":"NDIS_GFT_OFFLOAD_INFO_COPY_PACKET","features":[16]},{"name":"NDIS_GFT_OFFLOAD_INFO_DIRECTION_INGRESS","features":[16]},{"name":"NDIS_GFT_OFFLOAD_INFO_EXCEPTION_PACKET","features":[16]},{"name":"NDIS_GFT_OFFLOAD_INFO_SAMPLE_PACKET","features":[16]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[16]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[16]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[16]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[16]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[16]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[16]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[16]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[16]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[16]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[16]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[16]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[16]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[16]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[16]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[16]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[16]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[16]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[16]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[16]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[16]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[16]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[16]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[16]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[16]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[16]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[16]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[16]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[16]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_GUID","features":[16]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[16]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[16]},{"name":"NDIS_HARDWARE_STATUS","features":[16]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[16]},{"name":"NDIS_HASH_IPV4","features":[16]},{"name":"NDIS_HASH_IPV6","features":[16]},{"name":"NDIS_HASH_IPV6_EX","features":[16]},{"name":"NDIS_HASH_TCP_IPV4","features":[16]},{"name":"NDIS_HASH_TCP_IPV6","features":[16]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[16]},{"name":"NDIS_HASH_TYPE_MASK","features":[16]},{"name":"NDIS_HASH_UDP_IPV4","features":[16]},{"name":"NDIS_HASH_UDP_IPV6","features":[16]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[16]},{"name":"NDIS_HD_SPLIT_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[16]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[16]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[16]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[16]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[16]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[16]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[16]},{"name":"NDIS_INTERFACE_TYPE","features":[16]},{"name":"NDIS_INTERMEDIATE_DRIVER","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[16]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[16]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_EX_REVISION_1","features":[16]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_REVISION_1","features":[16]},{"name":"NDIS_IPSEC_OFFLOAD_V2_DELETE_SA_REVISION_1","features":[16]},{"name":"NDIS_IPSEC_OFFLOAD_V2_UPDATE_SA_REVISION_1","features":[16]},{"name":"NDIS_IP_OPER_STATE","features":[16,18]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[16]},{"name":"NDIS_IP_OPER_STATUS","features":[16,18]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[16,18]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[16]},{"name":"NDIS_IRDA_PACKET_INFO","features":[16]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[16]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_KDNET_ADD_PF_REVISION_1","features":[16]},{"name":"NDIS_KDNET_ENUMERATE_PFS_REVISION_1","features":[16]},{"name":"NDIS_KDNET_PF_ENUM_ELEMENT_REVISION_1","features":[16]},{"name":"NDIS_KDNET_QUERY_PF_INFORMATION_REVISION_1","features":[16]},{"name":"NDIS_KDNET_REMOVE_PF_REVISION_1","features":[16]},{"name":"NDIS_LARGE_SEND_OFFLOAD_MAX_HEADER_LENGTH","features":[16]},{"name":"NDIS_LEGACY_DRIVER","features":[16]},{"name":"NDIS_LEGACY_MINIPORT","features":[16]},{"name":"NDIS_LEGACY_PROTOCOL","features":[16]},{"name":"NDIS_LINK_PARAMETERS","features":[16,18]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_LINK_SPEED","features":[16]},{"name":"NDIS_LINK_STATE","features":[16,18]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[16]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[16]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[16]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[16]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[16]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[16]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[16]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[16]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[16]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[16]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[16]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[16]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[16]},{"name":"NDIS_MAXIMUM_PORTS","features":[16]},{"name":"NDIS_MAX_LOOKAHEAD_SIZE_ACCESSED_UNDEFINED","features":[16]},{"name":"NDIS_MAX_PROCESSOR_COUNT","features":[16]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[16]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[16]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_EAPOL","features":[16]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_FCOE","features":[16]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_LLDP","features":[16]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TIMESYNC","features":[16]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TUNDL","features":[16]},{"name":"NDIS_MEDIA_STATE","features":[16]},{"name":"NDIS_MEDIUM","features":[16]},{"name":"NDIS_MEMORY_CONTIGUOUS","features":[16]},{"name":"NDIS_MEMORY_NONCACHED","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_2","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_3","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_2","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_2","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_3","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_4","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_NDK_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_2","features":[16]},{"name":"NDIS_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_BUS_MASTER","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_CONTROLS_DEFAULT_PORT","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_DO_NOT_BIND_TO_ALL_CO","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_HARDWARE_DEVICE","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NDIS_WDM","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NOT_CO_NDIS","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_HALT_ON_SUSPEND","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_OID_INTERCEPT_ON_NONDEFAULT_PORTS","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_PAUSE_ON_SUSPEND","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_REGISTER_BUGCHECK_CALLBACK","features":[16]},{"name":"NDIS_MINIPORT_ATTRIBUTES_SURPRISE_REMOVE_OK","features":[16]},{"name":"NDIS_MINIPORT_BLOCK","features":[16]},{"name":"NDIS_MINIPORT_CO_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_DRIVER","features":[16]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_2","features":[16]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_3","features":[16]},{"name":"NDIS_MINIPORT_INIT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_INTERRUPT_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_MAJOR_VERSION","features":[16]},{"name":"NDIS_MINIPORT_MINIMUM_MAJOR_VERSION","features":[16]},{"name":"NDIS_MINIPORT_MINIMUM_MINOR_VERSION","features":[16]},{"name":"NDIS_MINIPORT_MINOR_VERSION","features":[16]},{"name":"NDIS_MINIPORT_PAUSE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_PNP_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_RESTART_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_SS_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_MINIPORT_TIMER","features":[4,16,5,3,9]},{"name":"NDIS_MIN_API","features":[16]},{"name":"NDIS_MONITOR_CONFIG_REVISION_1","features":[16]},{"name":"NDIS_MSIX_CONFIG_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_M_DRIVER_BLOCK","features":[16]},{"name":"NDIS_M_MAX_LOOKAHEAD","features":[16]},{"name":"NDIS_NBL_FLAGS_CAPTURE_TIMESTAMP_ON_TRANSMIT","features":[16]},{"name":"NDIS_NBL_FLAGS_HD_SPLIT","features":[16]},{"name":"NDIS_NBL_FLAGS_IS_IPV4","features":[16]},{"name":"NDIS_NBL_FLAGS_IS_IPV6","features":[16]},{"name":"NDIS_NBL_FLAGS_IS_LOOPBACK_PACKET","features":[16]},{"name":"NDIS_NBL_FLAGS_IS_TCP","features":[16]},{"name":"NDIS_NBL_FLAGS_IS_UDP","features":[16]},{"name":"NDIS_NBL_FLAGS_RECV_READ_ONLY","features":[16]},{"name":"NDIS_NBL_FLAGS_SEND_READ_ONLY","features":[16]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_HEADER","features":[16]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_PAYLOAD","features":[16]},{"name":"NDIS_NBL_MEDIA_SPECIFIC_INFO_REVISION_1","features":[16]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[16]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[16]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[16]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[16]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[16]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[16]},{"name":"NDIS_NT","features":[16]},{"name":"NDIS_OBJECT_HEADER","features":[16]},{"name":"NDIS_OBJECT_REVISION_1","features":[16]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[16]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[16]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_REVISION_1","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[16]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[16]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[16]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[16]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[16]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[16]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[16]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[16]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[16]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[16]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[16]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[16]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[16]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[16]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[16]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[16]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[16]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[16]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[16]},{"name":"NDIS_OFFLOAD","features":[16]},{"name":"NDIS_OFFLOAD_ENCAPSULATION_REVISION_1","features":[16]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[16]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[16]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[16]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[16]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[16]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[16]},{"name":"NDIS_OFFLOAD_SET_ON","features":[16]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[16]},{"name":"NDIS_OID_REQUEST_FLAGS_VPORT_ID_VALID","features":[16]},{"name":"NDIS_OID_REQUEST_NDIS_RESERVED_SIZE","features":[16]},{"name":"NDIS_OID_REQUEST_REVISION_1","features":[16]},{"name":"NDIS_OID_REQUEST_REVISION_2","features":[16]},{"name":"NDIS_OID_REQUEST_TIMEOUT_INFINITE","features":[16]},{"name":"NDIS_OPEN_BLOCK","features":[16]},{"name":"NDIS_OPEN_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_OPEN_RECEIVE_NOT_REENTRANT","features":[16]},{"name":"NDIS_OPER_STATE","features":[16,18]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[16]},{"name":"NDIS_PACKET_8021Q_INFO","features":[16]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[16]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[16]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[16]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[16]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[16]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[16]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[16]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[16]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[16]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[16]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[16]},{"name":"NDIS_PACKET_TYPE_SMT","features":[16]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[16]},{"name":"NDIS_PARAMETER_TYPE","features":[16]},{"name":"NDIS_PAUSE_ATTACH_FILTER","features":[16]},{"name":"NDIS_PAUSE_BIND_PROTOCOL","features":[16]},{"name":"NDIS_PAUSE_DETACH_FILTER","features":[16]},{"name":"NDIS_PAUSE_FILTER_RESTART_STACK","features":[16]},{"name":"NDIS_PAUSE_LOW_POWER","features":[16]},{"name":"NDIS_PAUSE_MINIPORT_DEVICE_REMOVE","features":[16]},{"name":"NDIS_PAUSE_NDIS_INTERNAL","features":[16]},{"name":"NDIS_PAUSE_UNBIND_PROTOCOL","features":[16]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[16]},{"name":"NDIS_PD_ACQUIRE_QUEUES_FLAG_DRAIN_NOTIFICATION","features":[16]},{"name":"NDIS_PD_ACQUIRE_QUEUES_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[16]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[16]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[16]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[16]},{"name":"NDIS_PD_CLOSE_PROVIDER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[16]},{"name":"NDIS_PD_COUNTER_HANDLE","features":[16]},{"name":"NDIS_PD_COUNTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PD_FILTER_HANDLE","features":[16]},{"name":"NDIS_PD_FILTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PD_OPEN_PROVIDER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PD_PROVIDER_DISPATCH_REVISION_1","features":[16]},{"name":"NDIS_PD_PROVIDER_HANDLE","features":[16]},{"name":"NDIS_PD_QUEUE_DISPATCH_REVISION_1","features":[16]},{"name":"NDIS_PD_QUEUE_FLAG_DRAIN_NOTIFICATION","features":[16]},{"name":"NDIS_PD_QUEUE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PD_QUEUE_REVISION_1","features":[16]},{"name":"NDIS_PER_PACKET_INFO","features":[16]},{"name":"NDIS_PHYSICAL_ADDRESS_UNIT","features":[16]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[16]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[16]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[16]},{"name":"NDIS_PM_PACKET_PATTERN","features":[16]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[16]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[16]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[16]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[16]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[16]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[16]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[16]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[16]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[16]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[16]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[16]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[16]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[16]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[16]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[16]},{"name":"NDIS_PNP_CAPABILITIES","features":[16]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[16]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[16]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[16]},{"name":"NDIS_POLL_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_POLL_DATA_REVISION_1","features":[16]},{"name":"NDIS_POLL_HANDLE","features":[16]},{"name":"NDIS_POLL_NOTIFICATION_REVISION_1","features":[16]},{"name":"NDIS_PORT","features":[16,18]},{"name":"NDIS_PORT_ARRAY","features":[16,18]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[16]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[16]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[16,18]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[16]},{"name":"NDIS_PORT_CONTROL_STATE","features":[16]},{"name":"NDIS_PORT_STATE","features":[16,18]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[16]},{"name":"NDIS_PORT_TYPE","features":[16]},{"name":"NDIS_POWER_PROFILE","features":[16]},{"name":"NDIS_PROC","features":[16]},{"name":"NDIS_PROCESSOR_TYPE","features":[16]},{"name":"NDIS_PROCESSOR_VENDOR","features":[16]},{"name":"NDIS_PROC_CALLBACK","features":[16]},{"name":"NDIS_PROTOCOL_BLOCK","features":[16]},{"name":"NDIS_PROTOCOL_CO_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_2","features":[16]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[16]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[16]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[16]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[16]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[16]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[16]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[16]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[16]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[16]},{"name":"NDIS_PROTOCOL_MAJOR_VERSION","features":[16]},{"name":"NDIS_PROTOCOL_MINIMUM_MAJOR_VERSION","features":[16]},{"name":"NDIS_PROTOCOL_MINIMUM_MINOR_VERSION","features":[16]},{"name":"NDIS_PROTOCOL_MINOR_VERSION","features":[16]},{"name":"NDIS_PROTOCOL_PAUSE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PROTOCOL_RESTART_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[16]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[16]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[16]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[16]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[16]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[16]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[16]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[16]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[16]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[16]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[16]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[16]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[16]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[16]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[16]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[16]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[16]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[16]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[16]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[16]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[16]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[16]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[16]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[16]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[16]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[16]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[16]},{"name":"NDIS_QOS_TSA_CBS","features":[16]},{"name":"NDIS_QOS_TSA_ETS","features":[16]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[16]},{"name":"NDIS_QOS_TSA_STRICT","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_FILTER_QUEUE_STATE_CHANGE_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[16]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_DISPATCH_LEVEL","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_MORE_NBLS","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_PERFECT_FILTERED","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_RESOURCES","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_SHARED_MEMORY_INFO_VALID","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_ETHER_TYPE","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_QUEUE","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_VLAN","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_DESTINATION_GROUP","features":[16]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_SINGLE_SOURCE","features":[16]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[16]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[16]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[16]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[16]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_QUEUE_STATE_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[16]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[16]},{"name":"NDIS_REQUEST_TYPE","features":[16]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_MAX_LOOKAHEAD_ACCESSED_DEFINED","features":[16]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_1","features":[16]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_2","features":[16]},{"name":"NDIS_RETURN_FLAGS_DISPATCH_LEVEL","features":[16]},{"name":"NDIS_RETURN_FLAGS_SINGLE_QUEUE","features":[16]},{"name":"NDIS_RETURN_FLAGS_SWITCH_SINGLE_SOURCE","features":[16]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[16]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[16]},{"name":"NDIS_RING_HARD_ERROR","features":[16]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[16]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[16]},{"name":"NDIS_RING_RING_RECOVERY","features":[16]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[16]},{"name":"NDIS_RING_SINGLE_STATION","features":[16]},{"name":"NDIS_RING_SOFT_ERROR","features":[16]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[16]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[16]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[16]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[16]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[16]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[16]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[16]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[16]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[16]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[16]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[16]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[16]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[16]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[16]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[16]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[16]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[16]},{"name":"NDIS_RUNTIME_VERSION_60","features":[16]},{"name":"NDIS_RWL_AT_DISPATCH_LEVEL","features":[16]},{"name":"NDIS_RW_LOCK","features":[16,3]},{"name":"NDIS_RW_LOCK_REFCOUNT","features":[16]},{"name":"NDIS_SCATTER_GATHER_LIST_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SEND_COMPLETE_FLAGS_DISPATCH_LEVEL","features":[16]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SINGLE_QUEUE","features":[16]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SWITCH_SINGLE_SOURCE","features":[16]},{"name":"NDIS_SEND_FLAGS_CHECK_FOR_LOOPBACK","features":[16]},{"name":"NDIS_SEND_FLAGS_DISPATCH_LEVEL","features":[16]},{"name":"NDIS_SEND_FLAGS_SINGLE_QUEUE","features":[16]},{"name":"NDIS_SEND_FLAGS_SWITCH_DESTINATION_GROUP","features":[16]},{"name":"NDIS_SEND_FLAGS_SWITCH_SINGLE_SOURCE","features":[16]},{"name":"NDIS_SG_DMA_64_BIT_ADDRESS","features":[16]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_1","features":[16]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_2","features":[16]},{"name":"NDIS_SG_DMA_HYBRID_DMA","features":[16]},{"name":"NDIS_SG_DMA_V3_HAL_API","features":[16]},{"name":"NDIS_SG_LIST_WRITE_TO_DEVICE","features":[16]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHAR_SUPPORTS_PF_VPORTS","features":[16]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGOUS","features":[16]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGUOUS","features":[16]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_SPIN_LOCK","features":[16]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[16]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[16]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[16]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[16]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_RCV_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_XMIT_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_RCV_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_XMIT_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_BYTES_RCV_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_BYTES_XMIT_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_RCV_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_XMIT_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_RCV_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_XMIT_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[16]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[16]},{"name":"NDIS_STATISTICS_GEN_STATISTICS_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_INFO","features":[16]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[16]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_RCV_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_XMIT_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_RCV_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_XMIT_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_RCV_CRC_ERROR_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_RCV_DISCARDS_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_RCV_ERROR_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_RCV_NO_BUFFER_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_RCV_OK_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_TRANSMIT_QUEUE_LENGTH_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_VALUE","features":[16]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[16]},{"name":"NDIS_STATISTICS_XMIT_DISCARDS_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_XMIT_ERROR_SUPPORTED","features":[16]},{"name":"NDIS_STATISTICS_XMIT_OK_SUPPORTED","features":[16]},{"name":"NDIS_STATUS_INDICATION_FLAGS_MEDIA_CONNECT_TO_CONNECT","features":[16]},{"name":"NDIS_STATUS_INDICATION_FLAGS_NDIS_RESERVED","features":[16]},{"name":"NDIS_STATUS_INDICATION_REVISION_1","features":[16]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[16]},{"name":"NDIS_SUPPORT_60_COMPATIBLE_API","features":[16]},{"name":"NDIS_SUPPORT_NDIS6","features":[16]},{"name":"NDIS_SUPPORT_NDIS61","features":[16]},{"name":"NDIS_SUPPORT_NDIS620","features":[16]},{"name":"NDIS_SUPPORT_NDIS630","features":[16]},{"name":"NDIS_SUPPORT_NDIS640","features":[16]},{"name":"NDIS_SUPPORT_NDIS650","features":[16]},{"name":"NDIS_SUPPORT_NDIS651","features":[16]},{"name":"NDIS_SUPPORT_NDIS660","features":[16]},{"name":"NDIS_SUPPORT_NDIS670","features":[16]},{"name":"NDIS_SUPPORT_NDIS680","features":[16]},{"name":"NDIS_SUPPORT_NDIS681","features":[16]},{"name":"NDIS_SUPPORT_NDIS682","features":[16]},{"name":"NDIS_SUPPORT_NDIS683","features":[16]},{"name":"NDIS_SUPPORT_NDIS684","features":[16]},{"name":"NDIS_SUPPORT_NDIS685","features":[16]},{"name":"NDIS_SUPPORT_NDIS686","features":[16]},{"name":"NDIS_SUPPORT_NDIS687","features":[16]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_DESTINATIONS","features":[16]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_SWITCH_INFO_ONLY","features":[16]},{"name":"NDIS_SWITCH_DEFAULT_NIC_INDEX","features":[16]},{"name":"NDIS_SWITCH_DEFAULT_PORT_ID","features":[16]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_FORWARDING_DESTINATION_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NET_BUFFER_LIST_CONTEXT_TYPE_INFO_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[16]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[16]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[16]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[16]},{"name":"NDIS_SWITCH_NIC_STATUS_INDICATION_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[16]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_PD_RESERVED_SIZE","features":[16]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_2","features":[16]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[16]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[16]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[16]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_SWITCH_REPORT_FILTERED_NBL_FLAGS_IS_INCOMING","features":[16]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[16]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_REVISION_1","features":[16]},{"name":"NDIS_TASK_OFFLOAD_VERSION","features":[16]},{"name":"NDIS_TASK_TCP_LARGE_SEND_V0","features":[16]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[16]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[16]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[16]},{"name":"NDIS_TCP_IP_CHECKSUM_PACKET_INFO","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv4","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv6","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1_TYPE","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[16]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE","features":[16]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[16]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[16]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_TIMER","features":[4,16,5,3,9]},{"name":"NDIS_TIMER_CHARACTERISTICS_REVISION_1","features":[16]},{"name":"NDIS_TIMER_FUNCTION","features":[16]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[16,3]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[16,3]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV4","features":[16]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV6","features":[16]},{"name":"NDIS_VAR_DATA_DESC","features":[16]},{"name":"NDIS_WAN_FRAGMENT","features":[16]},{"name":"NDIS_WAN_GET_STATS","features":[16]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[16]},{"name":"NDIS_WAN_LINE_DOWN","features":[16]},{"name":"NDIS_WAN_LINE_UP","features":[16,3]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[16]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[16]},{"name":"NDIS_WAN_QUALITY","features":[16]},{"name":"NDIS_WDF","features":[16]},{"name":"NDIS_WDM","features":[16]},{"name":"NDIS_WDM_DRIVER","features":[16]},{"name":"NDIS_WLAN_BSSID","features":[16]},{"name":"NDIS_WLAN_BSSID_EX","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[16]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[16]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[16]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[16,18]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[16]},{"name":"NDIS_WMI_EVENT_HEADER","features":[16,18]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[16]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[16]},{"name":"NDIS_WMI_METHOD_HEADER","features":[16,18]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[16]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[16]},{"name":"NDIS_WMI_OFFLOAD","features":[16]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[16]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[16]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[16]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[16]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[16]},{"name":"NDIS_WMI_SET_HEADER","features":[16,18]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[16]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[16]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[16]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[16]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[16]},{"name":"NDIS_WORK_ITEM","features":[16]},{"name":"NDIS_WRAPPER_HANDLE","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[16]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[16]},{"name":"NETWORK_ADDRESS","features":[16]},{"name":"NETWORK_ADDRESS_IP","features":[16]},{"name":"NETWORK_ADDRESS_IP6","features":[16]},{"name":"NETWORK_ADDRESS_IPX","features":[16]},{"name":"NETWORK_ADDRESS_LIST","features":[16]},{"name":"NET_BUFFER_LIST_POOL_FLAG_VERIFY","features":[16]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_1","features":[16]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_2","features":[16]},{"name":"NET_BUFFER_POOL_FLAG_VERIFY","features":[16]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_1","features":[16]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_2","features":[16]},{"name":"NET_DEVICE_PNP_EVENT_REVISION_1","features":[16]},{"name":"NET_EVENT_FLAGS_VPORT_ID_VALID","features":[16]},{"name":"NET_EVENT_HALT_MINIPORT_ON_LOW_POWER","features":[16]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_1","features":[16]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_2","features":[16]},{"name":"NULL_FILTER","features":[16]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[16]},{"name":"Ndis802_11AuthModeMax","features":[16]},{"name":"Ndis802_11AuthModeOpen","features":[16]},{"name":"Ndis802_11AuthModeShared","features":[16]},{"name":"Ndis802_11AuthModeWPA","features":[16]},{"name":"Ndis802_11AuthModeWPA2","features":[16]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[16]},{"name":"Ndis802_11AuthModeWPA3","features":[16]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[16]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[16]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[16]},{"name":"Ndis802_11AuthModeWPANone","features":[16]},{"name":"Ndis802_11AuthModeWPAPSK","features":[16]},{"name":"Ndis802_11AutoUnknown","features":[16]},{"name":"Ndis802_11Automode","features":[16]},{"name":"Ndis802_11DS","features":[16]},{"name":"Ndis802_11Encryption1Enabled","features":[16]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[16]},{"name":"Ndis802_11Encryption2Enabled","features":[16]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[16]},{"name":"Ndis802_11Encryption3Enabled","features":[16]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[16]},{"name":"Ndis802_11EncryptionDisabled","features":[16]},{"name":"Ndis802_11EncryptionNotSupported","features":[16]},{"name":"Ndis802_11FH","features":[16]},{"name":"Ndis802_11IBSS","features":[16]},{"name":"Ndis802_11Infrastructure","features":[16]},{"name":"Ndis802_11InfrastructureMax","features":[16]},{"name":"Ndis802_11MediaStreamOff","features":[16]},{"name":"Ndis802_11MediaStreamOn","features":[16]},{"name":"Ndis802_11NetworkTypeMax","features":[16]},{"name":"Ndis802_11OFDM24","features":[16]},{"name":"Ndis802_11OFDM5","features":[16]},{"name":"Ndis802_11PowerModeCAM","features":[16]},{"name":"Ndis802_11PowerModeFast_PSP","features":[16]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[16]},{"name":"Ndis802_11PowerModeMax","features":[16]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[16]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[16]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[16]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[16]},{"name":"Ndis802_11RadioStatusMax","features":[16]},{"name":"Ndis802_11RadioStatusOn","features":[16]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[16]},{"name":"Ndis802_11ReloadWEPKeys","features":[16]},{"name":"Ndis802_11StatusTypeMax","features":[16]},{"name":"Ndis802_11StatusType_Authentication","features":[16]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[16]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[16]},{"name":"Ndis802_11WEPDisabled","features":[16]},{"name":"Ndis802_11WEPEnabled","features":[16]},{"name":"Ndis802_11WEPKeyAbsent","features":[16]},{"name":"Ndis802_11WEPNotSupported","features":[16]},{"name":"NdisAcquireReadWriteLock","features":[16,3]},{"name":"NdisAllocateMemoryWithTag","features":[16]},{"name":"NdisCancelTimer","features":[4,16,5,3,9]},{"name":"NdisClAddParty","features":[16]},{"name":"NdisClCloseAddressFamily","features":[16]},{"name":"NdisClCloseCall","features":[16]},{"name":"NdisClDeregisterSap","features":[16]},{"name":"NdisClDropParty","features":[16]},{"name":"NdisClGetProtocolVcContextFromTapiCallId","features":[16,3]},{"name":"NdisClIncomingCallComplete","features":[16]},{"name":"NdisClMakeCall","features":[16]},{"name":"NdisClModifyCallQoS","features":[16]},{"name":"NdisClRegisterSap","features":[16]},{"name":"NdisClass802_3Priority","features":[16]},{"name":"NdisClassAtmAALInfo","features":[16]},{"name":"NdisClassIrdaPacketInfo","features":[16]},{"name":"NdisClassWirelessWanMbxMailbox","features":[16]},{"name":"NdisCloseConfiguration","features":[16]},{"name":"NdisCloseFile","features":[16]},{"name":"NdisCmActivateVc","features":[16]},{"name":"NdisCmAddPartyComplete","features":[16]},{"name":"NdisCmCloseAddressFamilyComplete","features":[16]},{"name":"NdisCmCloseCallComplete","features":[16]},{"name":"NdisCmDeactivateVc","features":[16]},{"name":"NdisCmDeregisterSapComplete","features":[16]},{"name":"NdisCmDispatchCallConnected","features":[16]},{"name":"NdisCmDispatchIncomingCall","features":[16]},{"name":"NdisCmDispatchIncomingCallQoSChange","features":[16]},{"name":"NdisCmDispatchIncomingCloseCall","features":[16]},{"name":"NdisCmDispatchIncomingDropParty","features":[16]},{"name":"NdisCmDropPartyComplete","features":[16]},{"name":"NdisCmMakeCallComplete","features":[16]},{"name":"NdisCmModifyCallQoSComplete","features":[16]},{"name":"NdisCmOpenAddressFamilyComplete","features":[16]},{"name":"NdisCmRegisterSapComplete","features":[16]},{"name":"NdisCoAssignInstanceName","features":[16,3]},{"name":"NdisCoCreateVc","features":[16]},{"name":"NdisCoDeleteVc","features":[16]},{"name":"NdisCoGetTapiCallId","features":[16]},{"name":"NdisCompleteDmaTransfer","features":[4,16,3]},{"name":"NdisCopyBuffer","features":[4,16]},{"name":"NdisDefinitelyNetworkChange","features":[16]},{"name":"NdisDeregisterTdiCallBack","features":[16]},{"name":"NdisDevicePnPEventMaximum","features":[16]},{"name":"NdisDevicePnPEventPowerProfileChanged","features":[16]},{"name":"NdisDevicePnPEventQueryRemoved","features":[16]},{"name":"NdisDevicePnPEventQueryStopped","features":[16]},{"name":"NdisDevicePnPEventRemoved","features":[16]},{"name":"NdisDevicePnPEventStopped","features":[16]},{"name":"NdisDevicePnPEventSurpriseRemoved","features":[16]},{"name":"NdisDeviceStateD0","features":[16]},{"name":"NdisDeviceStateD1","features":[16]},{"name":"NdisDeviceStateD2","features":[16]},{"name":"NdisDeviceStateD3","features":[16]},{"name":"NdisDeviceStateMaximum","features":[16]},{"name":"NdisDeviceStateUnspecified","features":[16]},{"name":"NdisEnvironmentWindows","features":[16]},{"name":"NdisEnvironmentWindowsNt","features":[16]},{"name":"NdisFddiRingDetect","features":[16]},{"name":"NdisFddiRingDirected","features":[16]},{"name":"NdisFddiRingIsolated","features":[16]},{"name":"NdisFddiRingNonOperational","features":[16]},{"name":"NdisFddiRingNonOperationalDup","features":[16]},{"name":"NdisFddiRingOperational","features":[16]},{"name":"NdisFddiRingOperationalDup","features":[16]},{"name":"NdisFddiRingTrace","features":[16]},{"name":"NdisFddiStateActive","features":[16]},{"name":"NdisFddiStateBreak","features":[16]},{"name":"NdisFddiStateConnect","features":[16]},{"name":"NdisFddiStateJoin","features":[16]},{"name":"NdisFddiStateMaintenance","features":[16]},{"name":"NdisFddiStateNext","features":[16]},{"name":"NdisFddiStateOff","features":[16]},{"name":"NdisFddiStateSignal","features":[16]},{"name":"NdisFddiStateTrace","features":[16]},{"name":"NdisFddiStateVerify","features":[16]},{"name":"NdisFddiTypeCWrapA","features":[16]},{"name":"NdisFddiTypeCWrapB","features":[16]},{"name":"NdisFddiTypeCWrapS","features":[16]},{"name":"NdisFddiTypeIsolated","features":[16]},{"name":"NdisFddiTypeLocalA","features":[16]},{"name":"NdisFddiTypeLocalAB","features":[16]},{"name":"NdisFddiTypeLocalB","features":[16]},{"name":"NdisFddiTypeLocalS","features":[16]},{"name":"NdisFddiTypeThrough","features":[16]},{"name":"NdisFddiTypeWrapA","features":[16]},{"name":"NdisFddiTypeWrapAB","features":[16]},{"name":"NdisFddiTypeWrapB","features":[16]},{"name":"NdisFddiTypeWrapS","features":[16]},{"name":"NdisFreeMemory","features":[16]},{"name":"NdisGeneratePartialCancelId","features":[16]},{"name":"NdisGetCurrentProcessorCounts","features":[16]},{"name":"NdisGetCurrentProcessorCpuUsage","features":[16]},{"name":"NdisGetRoutineAddress","features":[16,3]},{"name":"NdisGetSharedDataAlignment","features":[16]},{"name":"NdisGetVersion","features":[16]},{"name":"NdisHardwareStatusClosing","features":[16]},{"name":"NdisHardwareStatusInitializing","features":[16]},{"name":"NdisHardwareStatusNotReady","features":[16]},{"name":"NdisHardwareStatusReady","features":[16]},{"name":"NdisHardwareStatusReset","features":[16]},{"name":"NdisHashFunctionReserved1","features":[16]},{"name":"NdisHashFunctionReserved2","features":[16]},{"name":"NdisHashFunctionReserved3","features":[16]},{"name":"NdisHashFunctionToeplitz","features":[16]},{"name":"NdisIMAssociateMiniport","features":[16]},{"name":"NdisIMCancelInitializeDeviceInstance","features":[16,3]},{"name":"NdisIMDeInitializeDeviceInstance","features":[16]},{"name":"NdisIMGetBindingContext","features":[16]},{"name":"NdisIMInitializeDeviceInstanceEx","features":[16,3]},{"name":"NdisInitializeEvent","features":[4,16,3,9]},{"name":"NdisInitializeReadWriteLock","features":[16,3]},{"name":"NdisInitializeString","features":[16,3]},{"name":"NdisInitializeTimer","features":[4,16,5,3,9]},{"name":"NdisInterface1394","features":[16]},{"name":"NdisInterfaceCBus","features":[16]},{"name":"NdisInterfaceEisa","features":[16]},{"name":"NdisInterfaceInternal","features":[16]},{"name":"NdisInterfaceInternalPowerBus","features":[16]},{"name":"NdisInterfaceIrda","features":[16]},{"name":"NdisInterfaceIsa","features":[16]},{"name":"NdisInterfaceMPIBus","features":[16]},{"name":"NdisInterfaceMPSABus","features":[16]},{"name":"NdisInterfaceMca","features":[16]},{"name":"NdisInterfacePNPBus","features":[16]},{"name":"NdisInterfacePNPISABus","features":[16]},{"name":"NdisInterfacePcMcia","features":[16]},{"name":"NdisInterfacePci","features":[16]},{"name":"NdisInterfaceProcessorInternal","features":[16]},{"name":"NdisInterfaceTurboChannel","features":[16]},{"name":"NdisInterfaceUSB","features":[16]},{"name":"NdisInterruptModerationDisabled","features":[16]},{"name":"NdisInterruptModerationEnabled","features":[16]},{"name":"NdisInterruptModerationNotSupported","features":[16]},{"name":"NdisInterruptModerationUnknown","features":[16]},{"name":"NdisMAllocateSharedMemory","features":[16,3]},{"name":"NdisMAllocateSharedMemoryAsync","features":[16,3]},{"name":"NdisMCancelTimer","features":[4,16,5,3,9]},{"name":"NdisMCloseLog","features":[16]},{"name":"NdisMCmActivateVc","features":[16]},{"name":"NdisMCmCreateVc","features":[16]},{"name":"NdisMCmDeactivateVc","features":[16]},{"name":"NdisMCmDeleteVc","features":[16]},{"name":"NdisMCmRegisterAddressFamily","features":[16]},{"name":"NdisMCoActivateVcComplete","features":[16]},{"name":"NdisMCoDeactivateVcComplete","features":[16]},{"name":"NdisMCreateLog","features":[16]},{"name":"NdisMDeregisterDmaChannel","features":[16]},{"name":"NdisMDeregisterIoPortRange","features":[16]},{"name":"NdisMFlushLog","features":[16]},{"name":"NdisMFreeSharedMemory","features":[16,3]},{"name":"NdisMGetDeviceProperty","features":[4,16,7,5,3,6,8,9,10]},{"name":"NdisMGetDmaAlignment","features":[16]},{"name":"NdisMInitializeTimer","features":[4,16,5,3,9]},{"name":"NdisMMapIoSpace","features":[16]},{"name":"NdisMQueryAdapterInstanceName","features":[16,3]},{"name":"NdisMReadDmaCounter","features":[16]},{"name":"NdisMRegisterDmaChannel","features":[16,5,3]},{"name":"NdisMRegisterIoPortRange","features":[16]},{"name":"NdisMRemoveMiniport","features":[16]},{"name":"NdisMSetPeriodicTimer","features":[4,16,5,3,9]},{"name":"NdisMSleep","features":[16]},{"name":"NdisMUnmapIoSpace","features":[16]},{"name":"NdisMWriteLogData","features":[16]},{"name":"NdisMapFile","features":[16]},{"name":"NdisMaximumInterfaceType","features":[16]},{"name":"NdisMediaStateConnected","features":[16]},{"name":"NdisMediaStateDisconnected","features":[16]},{"name":"NdisMedium1394","features":[16]},{"name":"NdisMedium802_3","features":[16]},{"name":"NdisMedium802_5","features":[16]},{"name":"NdisMediumArcnet878_2","features":[16]},{"name":"NdisMediumArcnetRaw","features":[16]},{"name":"NdisMediumAtm","features":[16]},{"name":"NdisMediumBpc","features":[16]},{"name":"NdisMediumCoWan","features":[16]},{"name":"NdisMediumDix","features":[16]},{"name":"NdisMediumFddi","features":[16]},{"name":"NdisMediumIP","features":[16]},{"name":"NdisMediumInfiniBand","features":[16]},{"name":"NdisMediumIrda","features":[16]},{"name":"NdisMediumLocalTalk","features":[16]},{"name":"NdisMediumLoopback","features":[16]},{"name":"NdisMediumMax","features":[16]},{"name":"NdisMediumNative802_11","features":[16]},{"name":"NdisMediumTunnel","features":[16]},{"name":"NdisMediumWan","features":[16]},{"name":"NdisMediumWiMAX","features":[16]},{"name":"NdisMediumWirelessWan","features":[16]},{"name":"NdisNetworkChangeFromMediaConnect","features":[16]},{"name":"NdisNetworkChangeMax","features":[16]},{"name":"NdisOpenConfigurationKeyByIndex","features":[16,3]},{"name":"NdisOpenConfigurationKeyByName","features":[16,3]},{"name":"NdisOpenFile","features":[16,3]},{"name":"NdisParameterBinary","features":[16]},{"name":"NdisParameterHexInteger","features":[16]},{"name":"NdisParameterInteger","features":[16]},{"name":"NdisParameterMultiString","features":[16]},{"name":"NdisParameterString","features":[16]},{"name":"NdisPauseFunctionsReceiveOnly","features":[16]},{"name":"NdisPauseFunctionsSendAndReceive","features":[16]},{"name":"NdisPauseFunctionsSendOnly","features":[16]},{"name":"NdisPauseFunctionsUnknown","features":[16]},{"name":"NdisPauseFunctionsUnsupported","features":[16]},{"name":"NdisPhysicalMedium1394","features":[16]},{"name":"NdisPhysicalMedium802_3","features":[16]},{"name":"NdisPhysicalMedium802_5","features":[16]},{"name":"NdisPhysicalMediumBluetooth","features":[16]},{"name":"NdisPhysicalMediumCableModem","features":[16]},{"name":"NdisPhysicalMediumDSL","features":[16]},{"name":"NdisPhysicalMediumFibreChannel","features":[16]},{"name":"NdisPhysicalMediumInfiniband","features":[16]},{"name":"NdisPhysicalMediumIrda","features":[16]},{"name":"NdisPhysicalMediumMax","features":[16]},{"name":"NdisPhysicalMediumNative802_11","features":[16]},{"name":"NdisPhysicalMediumNative802_15_4","features":[16]},{"name":"NdisPhysicalMediumOther","features":[16]},{"name":"NdisPhysicalMediumPhoneLine","features":[16]},{"name":"NdisPhysicalMediumPowerLine","features":[16]},{"name":"NdisPhysicalMediumUWB","features":[16]},{"name":"NdisPhysicalMediumUnspecified","features":[16]},{"name":"NdisPhysicalMediumWiMax","features":[16]},{"name":"NdisPhysicalMediumWiredCoWan","features":[16]},{"name":"NdisPhysicalMediumWiredWAN","features":[16]},{"name":"NdisPhysicalMediumWirelessLan","features":[16]},{"name":"NdisPhysicalMediumWirelessWan","features":[16]},{"name":"NdisPortAuthorizationUnknown","features":[16]},{"name":"NdisPortAuthorized","features":[16]},{"name":"NdisPortControlStateControlled","features":[16]},{"name":"NdisPortControlStateUncontrolled","features":[16]},{"name":"NdisPortControlStateUnknown","features":[16]},{"name":"NdisPortReauthorizing","features":[16]},{"name":"NdisPortType8021xSupplicant","features":[16]},{"name":"NdisPortTypeBridge","features":[16]},{"name":"NdisPortTypeMax","features":[16]},{"name":"NdisPortTypeRasConnection","features":[16]},{"name":"NdisPortTypeUndefined","features":[16]},{"name":"NdisPortUnauthorized","features":[16]},{"name":"NdisPossibleNetworkChange","features":[16]},{"name":"NdisPowerProfileAcOnLine","features":[16]},{"name":"NdisPowerProfileBattery","features":[16]},{"name":"NdisProcessorAlpha","features":[16]},{"name":"NdisProcessorAmd64","features":[16]},{"name":"NdisProcessorArm","features":[16]},{"name":"NdisProcessorArm64","features":[16]},{"name":"NdisProcessorIA64","features":[16]},{"name":"NdisProcessorMips","features":[16]},{"name":"NdisProcessorPpc","features":[16]},{"name":"NdisProcessorVendorAuthenticAMD","features":[16]},{"name":"NdisProcessorVendorGenuinIntel","features":[16]},{"name":"NdisProcessorVendorGenuineIntel","features":[16]},{"name":"NdisProcessorVendorUnknown","features":[16]},{"name":"NdisProcessorX86","features":[16]},{"name":"NdisQueryAdapterInstanceName","features":[16,3]},{"name":"NdisQueryBindInstanceName","features":[16,3]},{"name":"NdisReEnumerateProtocolBindings","features":[16]},{"name":"NdisReadConfiguration","features":[16,3]},{"name":"NdisReadNetworkAddress","features":[16]},{"name":"NdisRegisterTdiCallBack","features":[16,3]},{"name":"NdisReleaseReadWriteLock","features":[16,3]},{"name":"NdisRequestClose","features":[16]},{"name":"NdisRequestGeneric1","features":[16]},{"name":"NdisRequestGeneric2","features":[16]},{"name":"NdisRequestGeneric3","features":[16]},{"name":"NdisRequestGeneric4","features":[16]},{"name":"NdisRequestOpen","features":[16]},{"name":"NdisRequestQueryInformation","features":[16]},{"name":"NdisRequestQueryStatistics","features":[16]},{"name":"NdisRequestReset","features":[16]},{"name":"NdisRequestSend","features":[16]},{"name":"NdisRequestSetInformation","features":[16]},{"name":"NdisRequestTransferData","features":[16]},{"name":"NdisReserved","features":[16]},{"name":"NdisResetEvent","features":[4,16,3,9]},{"name":"NdisRingStateClosed","features":[16]},{"name":"NdisRingStateClosing","features":[16]},{"name":"NdisRingStateOpenFailure","features":[16]},{"name":"NdisRingStateOpened","features":[16]},{"name":"NdisRingStateOpening","features":[16]},{"name":"NdisRingStateRingFailure","features":[16]},{"name":"NdisSetEvent","features":[4,16,3,9]},{"name":"NdisSetPeriodicTimer","features":[4,16,5,3,9]},{"name":"NdisSetTimer","features":[4,16,5,3,9]},{"name":"NdisSetTimerEx","features":[4,16,5,3,9]},{"name":"NdisSetupDmaTransfer","features":[4,16,3]},{"name":"NdisSystemProcessorCount","features":[16]},{"name":"NdisUnmapFile","features":[16]},{"name":"NdisUpdateSharedMemory","features":[16]},{"name":"NdisWaitEvent","features":[4,16,3,9]},{"name":"NdisWanErrorControl","features":[16]},{"name":"NdisWanHeaderEthernet","features":[16]},{"name":"NdisWanHeaderNative","features":[16]},{"name":"NdisWanMediumAgileVPN","features":[16]},{"name":"NdisWanMediumAtm","features":[16]},{"name":"NdisWanMediumFrameRelay","features":[16]},{"name":"NdisWanMediumGre","features":[16]},{"name":"NdisWanMediumHub","features":[16]},{"name":"NdisWanMediumIrda","features":[16]},{"name":"NdisWanMediumIsdn","features":[16]},{"name":"NdisWanMediumL2TP","features":[16]},{"name":"NdisWanMediumPPTP","features":[16]},{"name":"NdisWanMediumParallel","features":[16]},{"name":"NdisWanMediumPppoe","features":[16]},{"name":"NdisWanMediumSSTP","features":[16]},{"name":"NdisWanMediumSW56K","features":[16]},{"name":"NdisWanMediumSerial","features":[16]},{"name":"NdisWanMediumSonet","features":[16]},{"name":"NdisWanMediumSubTypeMax","features":[16]},{"name":"NdisWanMediumX_25","features":[16]},{"name":"NdisWanRaw","features":[16]},{"name":"NdisWanReliable","features":[16]},{"name":"NdisWriteConfiguration","features":[16,3]},{"name":"NdisWriteErrorLogEntry","features":[16]},{"name":"NdisWriteEventLogEntry","features":[16]},{"name":"OFFLOAD_ALGO_INFO","features":[16]},{"name":"OFFLOAD_CONF_ALGO","features":[16]},{"name":"OFFLOAD_INBOUND_SA","features":[16]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[16]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[16,3]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[16,3]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[16]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[16]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[16,3]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[16,3]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[16]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[16]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[16]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[16]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[16]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[16]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[16]},{"name":"OFFLOAD_MAX_SAS","features":[16]},{"name":"OFFLOAD_OPERATION_E","features":[16]},{"name":"OFFLOAD_OUTBOUND_SA","features":[16]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[16]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[16]},{"name":"OID_1394_VC_INFO","features":[16]},{"name":"OID_802_11_ADD_KEY","features":[16]},{"name":"OID_802_11_ADD_WEP","features":[16]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[16]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[16]},{"name":"OID_802_11_BSSID","features":[16]},{"name":"OID_802_11_BSSID_LIST","features":[16]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[16]},{"name":"OID_802_11_CAPABILITY","features":[16]},{"name":"OID_802_11_CONFIGURATION","features":[16]},{"name":"OID_802_11_DESIRED_RATES","features":[16]},{"name":"OID_802_11_DISASSOCIATE","features":[16]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[16]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[16]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[16]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[16]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[16]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[16]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[16]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[16]},{"name":"OID_802_11_PMKID","features":[16]},{"name":"OID_802_11_POWER_MODE","features":[16]},{"name":"OID_802_11_PRIVACY_FILTER","features":[16]},{"name":"OID_802_11_RADIO_STATUS","features":[16]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[16]},{"name":"OID_802_11_REMOVE_KEY","features":[16]},{"name":"OID_802_11_REMOVE_WEP","features":[16]},{"name":"OID_802_11_RSSI","features":[16]},{"name":"OID_802_11_RSSI_TRIGGER","features":[16]},{"name":"OID_802_11_RTS_THRESHOLD","features":[16]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[16]},{"name":"OID_802_11_SSID","features":[16]},{"name":"OID_802_11_STATISTICS","features":[16]},{"name":"OID_802_11_SUPPORTED_RATES","features":[16]},{"name":"OID_802_11_TEST","features":[16]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[16]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[16]},{"name":"OID_802_11_WEP_STATUS","features":[16]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[16]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[16]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[16]},{"name":"OID_802_3_MAC_OPTIONS","features":[16]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[16]},{"name":"OID_802_3_MULTICAST_LIST","features":[16]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[16]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[16]},{"name":"OID_802_3_RCV_OVERRUN","features":[16]},{"name":"OID_802_3_XMIT_DEFERRED","features":[16]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[16]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[16]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[16]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[16]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[16]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[16]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[16]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[16]},{"name":"OID_802_5_AC_ERRORS","features":[16]},{"name":"OID_802_5_BURST_ERRORS","features":[16]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[16]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[16]},{"name":"OID_802_5_CURRENT_GROUP","features":[16]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[16]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[16]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[16]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[16]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[16]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[16]},{"name":"OID_802_5_LINE_ERRORS","features":[16]},{"name":"OID_802_5_LOST_FRAMES","features":[16]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[16]},{"name":"OID_802_5_TOKEN_ERRORS","features":[16]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[16]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[16]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[16]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[16]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[16]},{"name":"OID_ATM_ASSIGNED_VPI","features":[16]},{"name":"OID_ATM_CALL_ALERTING","features":[16]},{"name":"OID_ATM_CALL_NOTIFY","features":[16]},{"name":"OID_ATM_CALL_PROCEEDING","features":[16]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[16]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[16]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[16]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[16]},{"name":"OID_ATM_ILMI_VPIVCI","features":[16]},{"name":"OID_ATM_LECS_ADDRESS","features":[16]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[16]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[16]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[16]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[16]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[16]},{"name":"OID_ATM_PARTY_ALERTING","features":[16]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[16]},{"name":"OID_ATM_RCV_CELLS_OK","features":[16]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[16]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[16]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[16]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[16]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[16]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[16]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[16]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[16]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[16]},{"name":"OID_CO_ADDRESS_CHANGE","features":[16]},{"name":"OID_CO_ADD_ADDRESS","features":[16]},{"name":"OID_CO_ADD_PVC","features":[16]},{"name":"OID_CO_AF_CLOSE","features":[16]},{"name":"OID_CO_DELETE_ADDRESS","features":[16]},{"name":"OID_CO_DELETE_PVC","features":[16]},{"name":"OID_CO_GET_ADDRESSES","features":[16]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[16]},{"name":"OID_CO_SIGNALING_DISABLED","features":[16]},{"name":"OID_CO_SIGNALING_ENABLED","features":[16]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[16]},{"name":"OID_CO_TAPI_CM_CAPS","features":[16]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[16]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[16]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[16]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[16]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[16]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[16]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[16]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[16]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[16]},{"name":"OID_FDDI_FRAMES_LOST","features":[16]},{"name":"OID_FDDI_FRAME_ERRORS","features":[16]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[16]},{"name":"OID_FDDI_IF_DESCR","features":[16]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[16]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[16]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[16]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[16]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[16]},{"name":"OID_FDDI_IF_MTU","features":[16]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[16]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[16]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[16]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[16]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[16]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[16]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[16]},{"name":"OID_FDDI_IF_SPECIFIC","features":[16]},{"name":"OID_FDDI_IF_SPEED","features":[16]},{"name":"OID_FDDI_IF_TYPE","features":[16]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[16]},{"name":"OID_FDDI_LCT_FAILURES","features":[16]},{"name":"OID_FDDI_LEM_REJECTS","features":[16]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[16]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[16]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[16]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[16]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[16]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[16]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[16]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[16]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[16]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[16]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[16]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[16]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[16]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[16]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[16]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[16]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[16]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[16]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[16]},{"name":"OID_FDDI_MAC_INDEX","features":[16]},{"name":"OID_FDDI_MAC_LATE_CT","features":[16]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[16]},{"name":"OID_FDDI_MAC_LOST_CT","features":[16]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[16]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[16]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[16]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[16]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[16]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[16]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[16]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[16]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[16]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[16]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[16]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[16]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[16]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[16]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[16]},{"name":"OID_FDDI_MAC_T_MAX","features":[16]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[16]},{"name":"OID_FDDI_MAC_T_NEG","features":[16]},{"name":"OID_FDDI_MAC_T_PRI0","features":[16]},{"name":"OID_FDDI_MAC_T_PRI1","features":[16]},{"name":"OID_FDDI_MAC_T_PRI2","features":[16]},{"name":"OID_FDDI_MAC_T_PRI3","features":[16]},{"name":"OID_FDDI_MAC_T_PRI4","features":[16]},{"name":"OID_FDDI_MAC_T_PRI5","features":[16]},{"name":"OID_FDDI_MAC_T_PRI6","features":[16]},{"name":"OID_FDDI_MAC_T_REQ","features":[16]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[16]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[16]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[16]},{"name":"OID_FDDI_PATH_INDEX","features":[16]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[16]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[16]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[16]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[16]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[16]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[16]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[16]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[16]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[16]},{"name":"OID_FDDI_PORT_ACTION","features":[16]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[16]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[16]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[16]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[16]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[16]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[16]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[16]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[16]},{"name":"OID_FDDI_PORT_INDEX","features":[16]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[16]},{"name":"OID_FDDI_PORT_LEM_CT","features":[16]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[16]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[16]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[16]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[16]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[16]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[16]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[16]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[16]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[16]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[16]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[16]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[16]},{"name":"OID_FDDI_PORT_PC_LS","features":[16]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[16]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[16]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[16]},{"name":"OID_FDDI_RING_MGT_STATE","features":[16]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[16]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[16]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[16]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[16]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[16]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[16]},{"name":"OID_FDDI_SMT_CF_STATE","features":[16]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[16]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[16]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[16]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[16]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[16]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[16]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_MAC_CT","features":[16]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[16]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[16]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[16]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[16]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[16]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[16]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[16]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[16]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[16]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[16]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[16]},{"name":"OID_FDDI_SMT_STATION_ID","features":[16]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[16]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[16]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[16]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[16]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[16]},{"name":"OID_FDDI_SMT_USER_DATA","features":[16]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[16]},{"name":"OID_FFP_ADAPTER_STATS","features":[16]},{"name":"OID_FFP_CONTROL","features":[16]},{"name":"OID_FFP_DATA","features":[16]},{"name":"OID_FFP_DRIVER_STATS","features":[16]},{"name":"OID_FFP_FLUSH","features":[16]},{"name":"OID_FFP_PARAMS","features":[16]},{"name":"OID_FFP_SUPPORT","features":[16]},{"name":"OID_GEN_ADMIN_STATUS","features":[16]},{"name":"OID_GEN_ALIAS","features":[16]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[16]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[16]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[16]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[16]},{"name":"OID_GEN_BYTES_RCV","features":[16]},{"name":"OID_GEN_BYTES_XMIT","features":[16]},{"name":"OID_GEN_CO_BYTES_RCV","features":[16]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[16]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[16]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[16]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[16]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[16]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[16]},{"name":"OID_GEN_CO_LINK_SPEED","features":[16]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[16]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[16]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[16]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[16]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[16]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[16]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[16]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[16]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[16]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[16]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[16]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[16]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[16]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[16]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[16]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_CO_VENDOR_ID","features":[16]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[16]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[16]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[16]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[16]},{"name":"OID_GEN_DEVICE_PROFILE","features":[16]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[16]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[16]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[16]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[16]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[16]},{"name":"OID_GEN_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[16]},{"name":"OID_GEN_FRIENDLY_NAME","features":[16]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[16]},{"name":"OID_GEN_GET_TIME_CAPS","features":[16]},{"name":"OID_GEN_HARDWARE_STATUS","features":[16]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[16]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[16]},{"name":"OID_GEN_INIT_TIME_MS","features":[16]},{"name":"OID_GEN_INTERFACE_INFO","features":[16]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[16]},{"name":"OID_GEN_IP_OPER_STATUS","features":[16]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[16]},{"name":"OID_GEN_LAST_CHANGE","features":[16]},{"name":"OID_GEN_LINK_PARAMETERS","features":[16]},{"name":"OID_GEN_LINK_SPEED","features":[16]},{"name":"OID_GEN_LINK_SPEED_EX","features":[16]},{"name":"OID_GEN_LINK_STATE","features":[16]},{"name":"OID_GEN_MACHINE_NAME","features":[16]},{"name":"OID_GEN_MAC_ADDRESS","features":[16]},{"name":"OID_GEN_MAC_OPTIONS","features":[16]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[16]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[16]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[16]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[16]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[16]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[16]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[16]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[16]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[16]},{"name":"OID_GEN_MEDIA_IN_USE","features":[16]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[16]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[16]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[16]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[16]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[16]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[16]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[16]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[16]},{"name":"OID_GEN_NETCARD_LOAD","features":[16]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[16]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[16]},{"name":"OID_GEN_PACKET_MONITOR","features":[16]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[16]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[16]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[16]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[16]},{"name":"OID_GEN_PORT_STATE","features":[16]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[16]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[16]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[16]},{"name":"OID_GEN_RCV_DISCARDS","features":[16]},{"name":"OID_GEN_RCV_ERROR","features":[16]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[16]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[16]},{"name":"OID_GEN_RCV_OK","features":[16]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[16]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[16]},{"name":"OID_GEN_RECEIVE_HASH","features":[16]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[16]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[16]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[16]},{"name":"OID_GEN_RESET_COUNTS","features":[16]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[16]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[16]},{"name":"OID_GEN_STATISTICS","features":[16]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[16]},{"name":"OID_GEN_SUPPORTED_LIST","features":[16]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[16]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[16]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[16]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[16]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[16]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[16]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[16]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[16]},{"name":"OID_GEN_VENDOR_ID","features":[16]},{"name":"OID_GEN_VLAN_ID","features":[16]},{"name":"OID_GEN_XMIT_DISCARDS","features":[16]},{"name":"OID_GEN_XMIT_ERROR","features":[16]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[16]},{"name":"OID_GEN_XMIT_OK","features":[16]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[16]},{"name":"OID_GFT_COUNTER_VALUES","features":[16]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[16]},{"name":"OID_GFT_CREATE_TABLE","features":[16]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[16]},{"name":"OID_GFT_DELETE_PROFILE","features":[16]},{"name":"OID_GFT_DELETE_TABLE","features":[16]},{"name":"OID_GFT_ENUM_COUNTERS","features":[16]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[16]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[16]},{"name":"OID_GFT_ENUM_PROFILES","features":[16]},{"name":"OID_GFT_ENUM_TABLES","features":[16]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[16]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[16]},{"name":"OID_GFT_FREE_COUNTERS","features":[16]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[16]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[16]},{"name":"OID_GFT_STATISTICS","features":[16]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[16]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[16]},{"name":"OID_IP4_OFFLOAD_STATS","features":[16]},{"name":"OID_IP6_OFFLOAD_STATS","features":[16]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[16]},{"name":"OID_IRDA_LINK_SPEED","features":[16]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[16]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[16]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[16]},{"name":"OID_IRDA_MEDIA_BUSY","features":[16]},{"name":"OID_IRDA_RATE_SNIFF","features":[16]},{"name":"OID_IRDA_RECEIVING","features":[16]},{"name":"OID_IRDA_RESERVED1","features":[16]},{"name":"OID_IRDA_RESERVED2","features":[16]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[16]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[16]},{"name":"OID_IRDA_UNICAST_LIST","features":[16]},{"name":"OID_KDNET_ADD_PF","features":[16]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[16]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[16]},{"name":"OID_KDNET_REMOVE_PF","features":[16]},{"name":"OID_LTALK_COLLISIONS","features":[16]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[16]},{"name":"OID_LTALK_DEFERS","features":[16]},{"name":"OID_LTALK_FCS_ERRORS","features":[16]},{"name":"OID_LTALK_IN_BROADCASTS","features":[16]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[16]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[16]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[16]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[16]},{"name":"OID_NDK_CONNECTIONS","features":[16]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[16]},{"name":"OID_NDK_SET_STATE","features":[16]},{"name":"OID_NDK_STATISTICS","features":[16]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[16]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[16]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[16]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[16]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[16]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[16]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[16]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[16]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[16]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[16]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[16]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[16]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[16]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[16]},{"name":"OID_PD_CLOSE_PROVIDER","features":[16]},{"name":"OID_PD_OPEN_PROVIDER","features":[16]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[16]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[16]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[16]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[16]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_PM_PARAMETERS","features":[16]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[16]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[16]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[16]},{"name":"OID_PM_RESERVED_1","features":[16]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[16]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[16]},{"name":"OID_PNP_CAPABILITIES","features":[16]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[16]},{"name":"OID_PNP_QUERY_POWER","features":[16]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[16]},{"name":"OID_PNP_SET_POWER","features":[16]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[16]},{"name":"OID_PNP_WAKE_UP_OK","features":[16]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[16]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[16]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[16]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[16]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[16]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[16]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[16]},{"name":"OID_QOS_PARAMETERS","features":[16]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[16]},{"name":"OID_QOS_RESERVED1","features":[16]},{"name":"OID_QOS_RESERVED10","features":[16]},{"name":"OID_QOS_RESERVED11","features":[16]},{"name":"OID_QOS_RESERVED12","features":[16]},{"name":"OID_QOS_RESERVED13","features":[16]},{"name":"OID_QOS_RESERVED14","features":[16]},{"name":"OID_QOS_RESERVED15","features":[16]},{"name":"OID_QOS_RESERVED16","features":[16]},{"name":"OID_QOS_RESERVED17","features":[16]},{"name":"OID_QOS_RESERVED18","features":[16]},{"name":"OID_QOS_RESERVED19","features":[16]},{"name":"OID_QOS_RESERVED2","features":[16]},{"name":"OID_QOS_RESERVED20","features":[16]},{"name":"OID_QOS_RESERVED3","features":[16]},{"name":"OID_QOS_RESERVED4","features":[16]},{"name":"OID_QOS_RESERVED5","features":[16]},{"name":"OID_QOS_RESERVED6","features":[16]},{"name":"OID_QOS_RESERVED7","features":[16]},{"name":"OID_QOS_RESERVED8","features":[16]},{"name":"OID_QOS_RESERVED9","features":[16]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[16]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[16]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[16]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[16]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[16]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[16]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[16]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[16]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[16]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[16]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[16]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[16]},{"name":"OID_SRIOV_CONFIG_STATE","features":[16]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[16]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[16]},{"name":"OID_SRIOV_PF_LUID","features":[16]},{"name":"OID_SRIOV_PROBED_BARS","features":[16]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[16]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[16]},{"name":"OID_SRIOV_RESET_VF","features":[16]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[16]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[16]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[16]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[16]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[16]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[16]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[16]},{"name":"OID_SWITCH_NIC_ARRAY","features":[16]},{"name":"OID_SWITCH_NIC_CONNECT","features":[16]},{"name":"OID_SWITCH_NIC_CREATE","features":[16]},{"name":"OID_SWITCH_NIC_DELETE","features":[16]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[16]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[16]},{"name":"OID_SWITCH_NIC_REQUEST","features":[16]},{"name":"OID_SWITCH_NIC_RESTORE","features":[16]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[16]},{"name":"OID_SWITCH_NIC_RESUME","features":[16]},{"name":"OID_SWITCH_NIC_SAVE","features":[16]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[16]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[16]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[16]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[16]},{"name":"OID_SWITCH_NIC_UPDATED","features":[16]},{"name":"OID_SWITCH_PARAMETERS","features":[16]},{"name":"OID_SWITCH_PORT_ARRAY","features":[16]},{"name":"OID_SWITCH_PORT_CREATE","features":[16]},{"name":"OID_SWITCH_PORT_DELETE","features":[16]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[16]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[16]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[16]},{"name":"OID_SWITCH_PORT_UPDATED","features":[16]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[16]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[16]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[16]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[16]},{"name":"OID_TAPI_ACCEPT","features":[16]},{"name":"OID_TAPI_ANSWER","features":[16]},{"name":"OID_TAPI_CLOSE","features":[16]},{"name":"OID_TAPI_CLOSE_CALL","features":[16]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[16]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[16]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[16]},{"name":"OID_TAPI_DIAL","features":[16]},{"name":"OID_TAPI_DROP","features":[16]},{"name":"OID_TAPI_GATHER_DIGITS","features":[16]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[16]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[16]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[16]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[16]},{"name":"OID_TAPI_GET_CALL_INFO","features":[16]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[16]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[16]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[16]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[16]},{"name":"OID_TAPI_GET_ID","features":[16]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[16]},{"name":"OID_TAPI_MAKE_CALL","features":[16]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[16]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[16]},{"name":"OID_TAPI_OPEN","features":[16]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[16]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[16]},{"name":"OID_TAPI_SECURE_CALL","features":[16]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[16]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[16]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[16]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[16]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[16]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[16]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[16]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[16]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[16]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[16]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[16]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[16]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[16]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[16]},{"name":"OID_TCP_RSC_STATISTICS","features":[16]},{"name":"OID_TCP_SAN_SUPPORT","features":[16]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[16]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[16]},{"name":"OID_TCP_TASK_OFFLOAD","features":[16]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[16]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[16]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[16]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[16]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[16]},{"name":"OID_VLAN_RESERVED1","features":[16]},{"name":"OID_VLAN_RESERVED2","features":[16]},{"name":"OID_VLAN_RESERVED3","features":[16]},{"name":"OID_VLAN_RESERVED4","features":[16]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[16]},{"name":"OID_WAN_CO_GET_INFO","features":[16]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[16]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[16]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[16]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[16]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[16]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[16]},{"name":"OID_WAN_GET_COMP_INFO","features":[16]},{"name":"OID_WAN_GET_INFO","features":[16]},{"name":"OID_WAN_GET_LINK_INFO","features":[16]},{"name":"OID_WAN_GET_STATS_INFO","features":[16]},{"name":"OID_WAN_HEADER_FORMAT","features":[16]},{"name":"OID_WAN_LINE_COUNT","features":[16]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[16]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[16]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[16]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[16]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[16]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[16]},{"name":"OID_WAN_SET_COMP_INFO","features":[16]},{"name":"OID_WAN_SET_LINK_INFO","features":[16]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[16]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[16]},{"name":"OID_WWAN_CONNECT","features":[16]},{"name":"OID_WWAN_CREATE_MAC","features":[16]},{"name":"OID_WWAN_DELETE_MAC","features":[16]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[16]},{"name":"OID_WWAN_DEVICE_CAPS","features":[16]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[16]},{"name":"OID_WWAN_DEVICE_RESET","features":[16]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[16]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[16]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[16]},{"name":"OID_WWAN_DRIVER_CAPS","features":[16]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[16]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[16]},{"name":"OID_WWAN_HOME_PROVIDER","features":[16]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[16]},{"name":"OID_WWAN_LOCATION_STATE","features":[16]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[16]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[16]},{"name":"OID_WWAN_MBIM_VERSION","features":[16]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[16]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[16]},{"name":"OID_WWAN_MPDP","features":[16]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[16]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[16]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[16]},{"name":"OID_WWAN_NITZ","features":[16]},{"name":"OID_WWAN_PACKET_SERVICE","features":[16]},{"name":"OID_WWAN_PCO","features":[16]},{"name":"OID_WWAN_PIN","features":[16]},{"name":"OID_WWAN_PIN_EX","features":[16]},{"name":"OID_WWAN_PIN_EX2","features":[16]},{"name":"OID_WWAN_PIN_LIST","features":[16]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[16]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[16]},{"name":"OID_WWAN_PRESHUTDOWN","features":[16]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[16]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[16]},{"name":"OID_WWAN_RADIO_STATE","features":[16]},{"name":"OID_WWAN_READY_INFO","features":[16]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[16]},{"name":"OID_WWAN_REGISTER_STATE","features":[16]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[16]},{"name":"OID_WWAN_SAR_CONFIG","features":[16]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[16]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[16]},{"name":"OID_WWAN_SIGNAL_STATE","features":[16]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[16]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[16]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[16]},{"name":"OID_WWAN_SMS_DELETE","features":[16]},{"name":"OID_WWAN_SMS_READ","features":[16]},{"name":"OID_WWAN_SMS_SEND","features":[16]},{"name":"OID_WWAN_SMS_STATUS","features":[16]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[16]},{"name":"OID_WWAN_SYS_CAPS","features":[16]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[16]},{"name":"OID_WWAN_UE_POLICY","features":[16]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[16]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[16]},{"name":"OID_WWAN_UICC_APDU","features":[16]},{"name":"OID_WWAN_UICC_APP_LIST","features":[16]},{"name":"OID_WWAN_UICC_ATR","features":[16]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[16]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[16]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[16]},{"name":"OID_WWAN_UICC_RESET","features":[16]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[16]},{"name":"OID_WWAN_USSD","features":[16]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[16]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[16]},{"name":"OID_XBOX_ACC_RESERVED0","features":[16]},{"name":"OriginalNetBufferList","features":[16]},{"name":"OriginalPacketInfo","features":[16]},{"name":"PD_BUFFER_ATTR_BUILT_IN_DATA_BUFFER","features":[16]},{"name":"PD_BUFFER_FLAG_PARTIAL_PACKET_HEAD","features":[16]},{"name":"PD_BUFFER_MIN_RX_DATA_START_ALIGNMENT","features":[16]},{"name":"PD_BUFFER_MIN_RX_DATA_START_VALUE","features":[16]},{"name":"PD_BUFFER_MIN_TX_DATA_START_ALIGNMENT","features":[16]},{"name":"PERMANENT_VC","features":[16]},{"name":"PMKID_CANDIDATE","features":[16]},{"name":"PNDIS_TIMER_FUNCTION","features":[16]},{"name":"PROTCOL_CO_AF_REGISTER_NOTIFY","features":[16]},{"name":"PROTOCOL_CL_ADD_PARTY_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_CALL_CONNECTED","features":[16]},{"name":"PROTOCOL_CL_CLOSE_AF_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_CLOSE_CALL_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_DEREGISTER_SAP_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_DROP_PARTY_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_INCOMING_CALL","features":[16]},{"name":"PROTOCOL_CL_INCOMING_CALL_QOS_CHANGE","features":[16]},{"name":"PROTOCOL_CL_INCOMING_CLOSE_CALL","features":[16]},{"name":"PROTOCOL_CL_INCOMING_DROP_PARTY","features":[16]},{"name":"PROTOCOL_CL_MAKE_CALL_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_MODIFY_CALL_QOS_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_OPEN_AF_COMPLETE","features":[16]},{"name":"PROTOCOL_CL_REGISTER_SAP_COMPLETE","features":[16]},{"name":"PROTOCOL_CM_ACTIVATE_VC_COMPLETE","features":[16]},{"name":"PROTOCOL_CM_ADD_PARTY","features":[16]},{"name":"PROTOCOL_CM_CLOSE_AF","features":[16]},{"name":"PROTOCOL_CM_CLOSE_CALL","features":[16]},{"name":"PROTOCOL_CM_DEACTIVATE_VC_COMPLETE","features":[16]},{"name":"PROTOCOL_CM_DEREGISTER_SAP","features":[16]},{"name":"PROTOCOL_CM_DROP_PARTY","features":[16]},{"name":"PROTOCOL_CM_INCOMING_CALL_COMPLETE","features":[16]},{"name":"PROTOCOL_CM_MAKE_CALL","features":[16]},{"name":"PROTOCOL_CM_MODIFY_QOS_CALL","features":[16]},{"name":"PROTOCOL_CM_OPEN_AF","features":[16]},{"name":"PROTOCOL_CM_REG_SAP","features":[16]},{"name":"PROTOCOL_CO_AF_REGISTER_NOTIFY","features":[16]},{"name":"PROTOCOL_CO_CREATE_VC","features":[16]},{"name":"PROTOCOL_CO_DELETE_VC","features":[16]},{"name":"PacketCancelId","features":[16]},{"name":"QUERY_CALL_PARAMETERS","features":[16]},{"name":"READABLE_LOCAL_CLOCK","features":[16]},{"name":"RECEIVE_TIME_INDICATION","features":[16]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[16]},{"name":"RECEIVE_VC","features":[16]},{"name":"REFERENCE","features":[16,3]},{"name":"RESERVE_RESOURCES_VC","features":[16]},{"name":"ROUND_DOWN_FLOW","features":[16]},{"name":"ROUND_UP_FLOW","features":[16]},{"name":"STRINGFORMAT_ASCII","features":[16]},{"name":"STRINGFORMAT_BINARY","features":[16]},{"name":"STRINGFORMAT_DBCS","features":[16]},{"name":"STRINGFORMAT_UNICODE","features":[16]},{"name":"ScatterGatherListPacketInfo","features":[16]},{"name":"ShortPacketPaddingInfo","features":[16]},{"name":"TDI_PNP_HANDLER","features":[16,3]},{"name":"TDI_REGISTER_CALLBACK","features":[16,3]},{"name":"TIMED_SEND_CAPABLE","features":[16]},{"name":"TIME_STAMP_CAPABLE","features":[16]},{"name":"TRANSMIT_VC","features":[16]},{"name":"TRANSPORT_HEADER_OFFSET","features":[16]},{"name":"TRUNCATED_HASH_LEN","features":[16]},{"name":"TR_FILTER","features":[16]},{"name":"TcpIpChecksumPacketInfo","features":[16]},{"name":"TcpLargeSendPacketInfo","features":[16]},{"name":"UDP_ENCAP_TYPE","features":[16]},{"name":"USE_TIME_STAMPS","features":[16]},{"name":"VAR_STRING","features":[16]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[16]},{"name":"W_CO_ACTIVATE_VC_HANDLER","features":[16]},{"name":"W_CO_CREATE_VC_HANDLER","features":[16]},{"name":"W_CO_DEACTIVATE_VC_HANDLER","features":[16]},{"name":"W_CO_DELETE_VC_HANDLER","features":[16]},{"name":"fNDIS_GUID_ALLOW_READ","features":[16]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[16]},{"name":"fNDIS_GUID_ANSI_STRING","features":[16]},{"name":"fNDIS_GUID_ARRAY","features":[16]},{"name":"fNDIS_GUID_METHOD","features":[16]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[16]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[16]},{"name":"fNDIS_GUID_TO_OID","features":[16]},{"name":"fNDIS_GUID_TO_STATUS","features":[16]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[16]},{"name":"fPACKET_ALLOCATED_BY_NDIS","features":[16]},{"name":"fPACKET_CONTAINS_MEDIA_SPECIFIC_INFO","features":[16]},{"name":"fPACKET_WRAPPER_RESERVED","features":[16]}],"344":[{"name":"FWPM_SERVICE_STATE_CHANGE_CALLBACK0","features":[19,20]},{"name":"FwpmBfeStateGet0","features":[19,20]},{"name":"FwpmBfeStateSubscribeChanges0","features":[19,3,20]},{"name":"FwpmBfeStateUnsubscribeChanges0","features":[19,3]},{"name":"FwpmCalloutAdd0","features":[19,3,20,6]},{"name":"FwpmCalloutCreateEnumHandle0","features":[19,3,20]},{"name":"FwpmCalloutDeleteById0","features":[19,3]},{"name":"FwpmCalloutDeleteByKey0","features":[19,3]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[19,3]},{"name":"FwpmCalloutEnum0","features":[19,3,20]},{"name":"FwpmCalloutGetById0","features":[19,3,20]},{"name":"FwpmCalloutGetByKey0","features":[19,3,20]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmConnectionCreateEnumHandle0","features":[19,3,20]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[19,3]},{"name":"FwpmConnectionEnum0","features":[19,3,20]},{"name":"FwpmConnectionGetById0","features":[19,3,20]},{"name":"FwpmConnectionGetSecurityInfo0","features":[19,3,6]},{"name":"FwpmConnectionSetSecurityInfo0","features":[19,3,6]},{"name":"FwpmEngineClose0","features":[19,3]},{"name":"FwpmEngineGetOption0","features":[19,3,20,6]},{"name":"FwpmEngineGetSecurityInfo0","features":[19,3,6]},{"name":"FwpmEngineOpen0","features":[19,3,20,6,21]},{"name":"FwpmEngineSetOption0","features":[19,3,20,6]},{"name":"FwpmEngineSetSecurityInfo0","features":[19,3,6]},{"name":"FwpmFilterAdd0","features":[19,3,20,6]},{"name":"FwpmFilterCreateEnumHandle0","features":[19,3,20,6]},{"name":"FwpmFilterDeleteById0","features":[19,3]},{"name":"FwpmFilterDeleteByKey0","features":[19,3]},{"name":"FwpmFilterDestroyEnumHandle0","features":[19,3]},{"name":"FwpmFilterEnum0","features":[19,3,20,6]},{"name":"FwpmFilterGetById0","features":[19,3,20,6]},{"name":"FwpmFilterGetByKey0","features":[19,3,20,6]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmFreeMemory0","features":[19]},{"name":"FwpmIPsecTunnelAdd0","features":[19,3,20,6]},{"name":"FwpmIPsecTunnelAdd1","features":[19,3,20,6]},{"name":"FwpmIPsecTunnelAdd2","features":[19,3,20,6]},{"name":"FwpmIPsecTunnelAdd3","features":[19,3,20,6]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[19,3]},{"name":"FwpmLayerCreateEnumHandle0","features":[19,3,20]},{"name":"FwpmLayerDestroyEnumHandle0","features":[19,3]},{"name":"FwpmLayerEnum0","features":[19,3,20]},{"name":"FwpmLayerGetById0","features":[19,3,20]},{"name":"FwpmLayerGetByKey0","features":[19,3,20]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmNetEventCreateEnumHandle0","features":[19,3,20,6]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[19,3]},{"name":"FwpmNetEventEnum0","features":[19,3,20,6]},{"name":"FwpmNetEventEnum1","features":[19,3,20,6]},{"name":"FwpmNetEventEnum2","features":[19,3,20,6]},{"name":"FwpmNetEventEnum3","features":[19,3,20,6]},{"name":"FwpmNetEventEnum4","features":[19,3,20,6]},{"name":"FwpmNetEventEnum5","features":[19,3,20,6]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[19,3,6]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[19,3,6]},{"name":"FwpmProviderAdd0","features":[19,3,20,6]},{"name":"FwpmProviderContextAdd0","features":[19,3,20,6]},{"name":"FwpmProviderContextAdd1","features":[19,3,20,6]},{"name":"FwpmProviderContextAdd2","features":[19,3,20,6]},{"name":"FwpmProviderContextAdd3","features":[19,3,20,6]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[19,3,20]},{"name":"FwpmProviderContextDeleteById0","features":[19,3]},{"name":"FwpmProviderContextDeleteByKey0","features":[19,3]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[19,3]},{"name":"FwpmProviderContextEnum0","features":[19,3,20,6]},{"name":"FwpmProviderContextEnum1","features":[19,3,20,6]},{"name":"FwpmProviderContextEnum2","features":[19,3,20,6]},{"name":"FwpmProviderContextEnum3","features":[19,3,20,6]},{"name":"FwpmProviderContextGetById0","features":[19,3,20,6]},{"name":"FwpmProviderContextGetById1","features":[19,3,20,6]},{"name":"FwpmProviderContextGetById2","features":[19,3,20,6]},{"name":"FwpmProviderContextGetById3","features":[19,3,20,6]},{"name":"FwpmProviderContextGetByKey0","features":[19,3,20,6]},{"name":"FwpmProviderContextGetByKey1","features":[19,3,20,6]},{"name":"FwpmProviderContextGetByKey2","features":[19,3,20,6]},{"name":"FwpmProviderContextGetByKey3","features":[19,3,20,6]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmProviderCreateEnumHandle0","features":[19,3,20]},{"name":"FwpmProviderDeleteByKey0","features":[19,3]},{"name":"FwpmProviderDestroyEnumHandle0","features":[19,3]},{"name":"FwpmProviderEnum0","features":[19,3,20]},{"name":"FwpmProviderGetByKey0","features":[19,3,20]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmSessionCreateEnumHandle0","features":[19,3,20]},{"name":"FwpmSessionDestroyEnumHandle0","features":[19,3]},{"name":"FwpmSessionEnum0","features":[19,3,20,6]},{"name":"FwpmSubLayerAdd0","features":[19,3,20,6]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[19,3,20]},{"name":"FwpmSubLayerDeleteByKey0","features":[19,3]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[19,3]},{"name":"FwpmSubLayerEnum0","features":[19,3,20]},{"name":"FwpmSubLayerGetByKey0","features":[19,3,20]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[19,3,6]},{"name":"FwpmTransactionAbort0","features":[19,3]},{"name":"FwpmTransactionBegin0","features":[19,3]},{"name":"FwpmTransactionCommit0","features":[19,3]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[19,3,6]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[19,3,6]},{"name":"IPsecDospGetSecurityInfo0","features":[19,3,6]},{"name":"IPsecDospGetStatistics0","features":[19,3,20]},{"name":"IPsecDospSetSecurityInfo0","features":[19,3,6]},{"name":"IPsecDospStateCreateEnumHandle0","features":[19,3,20]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[19,3]},{"name":"IPsecDospStateEnum0","features":[19,3,20]},{"name":"IPsecGetStatistics0","features":[19,3,20]},{"name":"IPsecGetStatistics1","features":[19,3,20]},{"name":"IPsecSaContextAddInbound0","features":[19,3,20]},{"name":"IPsecSaContextAddInbound1","features":[19,3,20]},{"name":"IPsecSaContextAddOutbound0","features":[19,3,20]},{"name":"IPsecSaContextAddOutbound1","features":[19,3,20]},{"name":"IPsecSaContextCreate0","features":[19,3,20]},{"name":"IPsecSaContextCreate1","features":[19,3,20]},{"name":"IPsecSaContextCreateEnumHandle0","features":[19,3,20,6]},{"name":"IPsecSaContextDeleteById0","features":[19,3]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[19,3]},{"name":"IPsecSaContextEnum0","features":[19,3,20,6]},{"name":"IPsecSaContextEnum1","features":[19,3,20,6]},{"name":"IPsecSaContextExpire0","features":[19,3]},{"name":"IPsecSaContextGetById0","features":[19,3,20,6]},{"name":"IPsecSaContextGetById1","features":[19,3,20,6]},{"name":"IPsecSaContextGetSpi0","features":[19,3,20]},{"name":"IPsecSaContextGetSpi1","features":[19,3,20]},{"name":"IPsecSaContextSetSpi0","features":[19,3,20]},{"name":"IPsecSaContextUpdate0","features":[19,3,20,6]},{"name":"IPsecSaCreateEnumHandle0","features":[19,3,20]},{"name":"IPsecSaDbGetSecurityInfo0","features":[19,3,6]},{"name":"IPsecSaDbSetSecurityInfo0","features":[19,3,6]},{"name":"IPsecSaDestroyEnumHandle0","features":[19,3]},{"name":"IPsecSaEnum0","features":[19,3,20,6]},{"name":"IPsecSaEnum1","features":[19,3,20,6]},{"name":"IkeextGetStatistics0","features":[19,3,20]},{"name":"IkeextGetStatistics1","features":[19,3,20]},{"name":"IkeextSaCreateEnumHandle0","features":[19,3,20,6]},{"name":"IkeextSaDbGetSecurityInfo0","features":[19,3,6]},{"name":"IkeextSaDbSetSecurityInfo0","features":[19,3,6]},{"name":"IkeextSaDeleteById0","features":[19,3]},{"name":"IkeextSaDestroyEnumHandle0","features":[19,3]},{"name":"IkeextSaEnum0","features":[19,3,20]},{"name":"IkeextSaEnum1","features":[19,3,20]},{"name":"IkeextSaEnum2","features":[19,3,20]},{"name":"IkeextSaGetById0","features":[19,3,20]},{"name":"IkeextSaGetById1","features":[19,3,20]},{"name":"IkeextSaGetById2","features":[19,3,20]}],"345":[{"name":"ACE_HEADER","features":[7]},{"name":"ALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[7,3,22]},{"name":"ATOMIC_CREATE_ECP_CONTEXT","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_BEST_EFFORT","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_EOF_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_FILE_ATTRIBUTES_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_GEN_FLAGS_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_MARK_USN_SOURCE_INFO","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OPERATION_MASK","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OP_FLAGS_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_REPARSE_POINT_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SPARSE_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_DIR_CHANGE_NOTIFY","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_FILE_ATTRIBUTE_INHERITANCE","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_PARENT_TIMESTAMPS_UPDATE","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_TIMESTAMPS_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_VDL_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_WRITE_USN_CLOSE_RECORD","features":[7]},{"name":"ATOMIC_CREATE_ECP_IN_OP_FLAG_CASE_SENSITIVE_FLAGS_SPECIFIED","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_EOF_SET","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_RETURNED","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_SET","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTE_INHERITANCE_SUPPRESSED","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OPERATION_MASK","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OP_FLAGS_HONORED","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_REPARSE_POINT_SET","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_SPARSE_SET","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_RETURNED","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_SET","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_CLOSE_RECORD_WRITTEN","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_RETURNED","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_SOURCE_INFO_MARKED","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_VDL_SET","features":[7]},{"name":"ATOMIC_CREATE_ECP_OUT_OP_FLAG_CASE_SENSITIVE_FLAGS_SET","features":[7]},{"name":"ApplyControlToken","features":[7]},{"name":"AuditAccessCheck","features":[7]},{"name":"AuditCloseNonObject","features":[7]},{"name":"AuditCloseObject","features":[7]},{"name":"AuditDeleteObject","features":[7]},{"name":"AuditHandleCreation","features":[7]},{"name":"AuditObjectReference","features":[7]},{"name":"AuditOpenNonObject","features":[7]},{"name":"AuditOpenObject","features":[7]},{"name":"AuditOpenObjectForDelete","features":[7]},{"name":"AuditOpenObjectForDeleteWithTransaction","features":[7]},{"name":"AuditOpenObjectWithTransaction","features":[7]},{"name":"AuditPrivilegeObject","features":[7]},{"name":"AuditPrivilegeService","features":[7]},{"name":"BASE_MCB","features":[7]},{"name":"BOOT_AREA_INFO","features":[7]},{"name":"CACHE_MANAGER_CALLBACKS","features":[7,3]},{"name":"CACHE_MANAGER_CALLBACKS_EX","features":[7,3]},{"name":"CACHE_MANAGER_CALLBACKS_EX_V1","features":[7]},{"name":"CACHE_MANAGER_CALLBACK_FUNCTIONS","features":[7,3]},{"name":"CACHE_UNINITIALIZE_EVENT","features":[4,7,3,9]},{"name":"CACHE_USE_DIRECT_ACCESS_MAPPING","features":[7]},{"name":"CACHE_VALID_FLAGS","features":[7]},{"name":"CC_ACQUIRE_DONT_WAIT","features":[7]},{"name":"CC_ACQUIRE_SUPPORTS_ASYNC_LAZYWRITE","features":[7]},{"name":"CC_AGGRESSIVE_UNMAP_BEHIND","features":[7]},{"name":"CC_ASYNC_READ_CONTEXT","features":[4,7,3]},{"name":"CC_DISABLE_DIRTY_PAGE_TRACKING","features":[7]},{"name":"CC_DISABLE_READ_AHEAD","features":[7]},{"name":"CC_DISABLE_UNMAP_BEHIND","features":[7]},{"name":"CC_DISABLE_WRITE_BEHIND","features":[7]},{"name":"CC_ENABLE_CPU_CACHE","features":[7]},{"name":"CC_ENABLE_DISK_IO_ACCOUNTING","features":[7]},{"name":"CC_ERROR_CALLBACK_CONTEXT","features":[7,3]},{"name":"CC_FILE_SIZES","features":[7]},{"name":"CC_FLUSH_AND_PURGE_GATHER_DIRTY_BITS","features":[7]},{"name":"CC_FLUSH_AND_PURGE_NO_PURGE","features":[7]},{"name":"CC_FLUSH_AND_PURGE_WRITEABLE_VIEWS_NOTSEEN","features":[7]},{"name":"COMPRESSED_DATA_INFO","features":[7]},{"name":"COMPRESSION_ENGINE_MASK","features":[7]},{"name":"COMPRESSION_ENGINE_MAX","features":[7]},{"name":"COMPRESSION_FORMAT_MASK","features":[7]},{"name":"COMPRESSION_FORMAT_MAX","features":[7]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[7]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[7]},{"name":"CONTAINER_VOLUME_STATE","features":[7]},{"name":"COPY_INFORMATION","features":[4,7,5,3,6,8,9,10]},{"name":"CPTABLEINFO","features":[7]},{"name":"CREATE_REDIRECTION_ECP_CONTEXT","features":[7,23]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_LAYER","features":[7]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REGISTERED_LAYER","features":[7]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REMOTE_LAYER","features":[7]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_SCRATCH","features":[7]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_USER_MODE","features":[7]},{"name":"CREATE_USN_JOURNAL_DATA","features":[7]},{"name":"CSV_DOWN_LEVEL_FILE_TYPE","features":[7]},{"name":"CSV_DOWN_LEVEL_OPEN_ECP_CONTEXT","features":[7,3]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT","features":[7]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT_FILE_ID_128","features":[7,23]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT","features":[7]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[7]},{"name":"CcAsyncCopyRead","features":[4,7,5,3,6,8,9,10]},{"name":"CcCanIWrite","features":[4,7,5,3,6,8,9,10]},{"name":"CcCoherencyFlushAndPurgeCache","features":[4,7,3,8]},{"name":"CcCopyRead","features":[4,7,5,3,6,8,9,10]},{"name":"CcCopyReadEx","features":[4,7,5,3,6,8,9,10]},{"name":"CcCopyWrite","features":[4,7,5,3,6,8,9,10]},{"name":"CcCopyWriteEx","features":[4,7,5,3,6,8,9,10]},{"name":"CcCopyWriteWontFlush","features":[4,7,5,3,6,8,9,10]},{"name":"CcDeferWrite","features":[4,7,5,3,6,8,9,10]},{"name":"CcErrorCallbackRoutine","features":[7,3]},{"name":"CcFastCopyRead","features":[4,7,5,3,6,8,9,10]},{"name":"CcFastCopyWrite","features":[4,7,5,3,6,8,9,10]},{"name":"CcFlushCache","features":[4,7,3,8]},{"name":"CcGetDirtyPages","features":[4,7,5,3,6,8,9,10]},{"name":"CcGetFileObjectFromBcb","features":[4,7,5,3,6,8,9,10]},{"name":"CcGetFileObjectFromSectionPtrs","features":[4,7,5,3,6,8,9,10]},{"name":"CcGetFileObjectFromSectionPtrsRef","features":[4,7,5,3,6,8,9,10]},{"name":"CcGetFlushedValidData","features":[4,7,3]},{"name":"CcInitializeCacheMap","features":[4,7,5,3,6,8,9,10]},{"name":"CcInitializeCacheMapEx","features":[4,7,5,3,6,8,9,10]},{"name":"CcIsCacheManagerCallbackNeeded","features":[7,3]},{"name":"CcIsThereDirtyData","features":[4,7,5,3,6,8,9,10]},{"name":"CcIsThereDirtyDataEx","features":[4,7,5,3,6,8,9,10]},{"name":"CcMapData","features":[4,7,5,3,6,8,9,10]},{"name":"CcMdlRead","features":[4,7,5,3,6,8,9,10]},{"name":"CcMdlReadComplete","features":[4,7,5,3,6,8,9,10]},{"name":"CcMdlWriteAbort","features":[4,7,5,3,6,8,9,10]},{"name":"CcMdlWriteComplete","features":[4,7,5,3,6,8,9,10]},{"name":"CcPinMappedData","features":[4,7,5,3,6,8,9,10]},{"name":"CcPinRead","features":[4,7,5,3,6,8,9,10]},{"name":"CcPrepareMdlWrite","features":[4,7,5,3,6,8,9,10]},{"name":"CcPreparePinWrite","features":[4,7,5,3,6,8,9,10]},{"name":"CcPurgeCacheSection","features":[4,7,3]},{"name":"CcRemapBcb","features":[7]},{"name":"CcRepinBcb","features":[7]},{"name":"CcScheduleReadAhead","features":[4,7,5,3,6,8,9,10]},{"name":"CcScheduleReadAheadEx","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetAdditionalCacheAttributes","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetAdditionalCacheAttributesEx","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetBcbOwnerPointer","features":[7]},{"name":"CcSetDirtyPageThreshold","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetDirtyPinnedData","features":[7]},{"name":"CcSetFileSizes","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetFileSizesEx","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetLogHandleForFile","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetParallelFlushFile","features":[4,7,5,3,6,8,9,10]},{"name":"CcSetReadAheadGranularity","features":[4,7,5,3,6,8,9,10]},{"name":"CcUninitializeCacheMap","features":[4,7,5,3,6,8,9,10]},{"name":"CcUnpinData","features":[7]},{"name":"CcUnpinDataForThread","features":[7]},{"name":"CcUnpinRepinnedBcb","features":[7,3,8]},{"name":"CcWaitForCurrentLazyWriterActivity","features":[7,3]},{"name":"CcZeroData","features":[4,7,5,3,6,8,9,10]},{"name":"ChangeDataControlArea","features":[7]},{"name":"ChangeImageControlArea","features":[7]},{"name":"ChangeSharedCacheMap","features":[7]},{"name":"CompleteAuthToken","features":[7]},{"name":"CsvCsvFsInternalFileObject","features":[7]},{"name":"CsvDownLevelFileObject","features":[7]},{"name":"DD_MUP_DEVICE_NAME","features":[7]},{"name":"DEVICE_RESET_KEEP_STACK","features":[7]},{"name":"DEVICE_RESET_RESERVED_0","features":[7]},{"name":"DEVICE_RESET_RESERVED_1","features":[7]},{"name":"DO_BOOT_CRITICAL","features":[7]},{"name":"DO_BUFFERED_IO","features":[7]},{"name":"DO_BUS_ENUMERATED_DEVICE","features":[7]},{"name":"DO_DAX_VOLUME","features":[7]},{"name":"DO_DEVICE_HAS_NAME","features":[7]},{"name":"DO_DEVICE_INITIALIZING","features":[7]},{"name":"DO_DEVICE_IRP_REQUIRES_EXTENSION","features":[7]},{"name":"DO_DEVICE_TO_BE_RESET","features":[7]},{"name":"DO_DIRECT_IO","features":[7]},{"name":"DO_DISALLOW_EXECUTE","features":[7]},{"name":"DO_EXCLUSIVE","features":[7]},{"name":"DO_FORCE_NEITHER_IO","features":[7]},{"name":"DO_LONG_TERM_REQUESTS","features":[7]},{"name":"DO_LOW_PRIORITY_FILESYSTEM","features":[7]},{"name":"DO_MAP_IO_BUFFER","features":[7]},{"name":"DO_NEVER_LAST_DEVICE","features":[7]},{"name":"DO_NOT_PURGE_DIRTY_PAGES","features":[7]},{"name":"DO_NOT_RETRY_PURGE","features":[7]},{"name":"DO_POWER_INRUSH","features":[7]},{"name":"DO_POWER_PAGABLE","features":[7]},{"name":"DO_SHUTDOWN_REGISTERED","features":[7]},{"name":"DO_SUPPORTS_PERSISTENT_ACLS","features":[7]},{"name":"DO_SUPPORTS_TRANSACTIONS","features":[7]},{"name":"DO_SYSTEM_BOOT_PARTITION","features":[7]},{"name":"DO_SYSTEM_CRITICAL_PARTITION","features":[7]},{"name":"DO_SYSTEM_SYSTEM_PARTITION","features":[7]},{"name":"DO_VERIFY_VOLUME","features":[7]},{"name":"DO_VOLUME_DEVICE_OBJECT","features":[7]},{"name":"DUAL_OPLOCK_KEY_ECP_CONTEXT","features":[7,3]},{"name":"DUPLICATE_CLUSTER_DATA","features":[7]},{"name":"DfsLinkTrackingInformation","features":[7]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY","features":[7]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY_U","features":[7]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY","features":[7]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY_U","features":[7]},{"name":"ECP_OPEN_PARAMETERS","features":[7]},{"name":"ECP_OPEN_PARAMETERS_FLAG_FAIL_ON_CASE_SENSITIVE_DIR","features":[7]},{"name":"ECP_OPEN_PARAMETERS_FLAG_IGNORE_DIR_CASE_SENSITIVITY","features":[7]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_DELETE","features":[7]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_READ","features":[7]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_WRITE","features":[7]},{"name":"ECP_TYPE_CLFS_CREATE_CONTAINER","features":[7]},{"name":"ECP_TYPE_IO_STOP_ON_SYMLINK_FILTER_GUID","features":[7]},{"name":"ECP_TYPE_OPEN_REPARSE_GUID","features":[7]},{"name":"EOF_WAIT_BLOCK","features":[4,7,3,9]},{"name":"EVENT_INCREMENT","features":[7]},{"name":"EXTENT_READ_CACHE_INFO_BUFFER","features":[7]},{"name":"EqualTo","features":[7]},{"name":"ExDisableResourceBoostLite","features":[4,7,9]},{"name":"ExQueryPoolBlockSize","features":[7,3]},{"name":"ExportSecurityContext","features":[7]},{"name":"FAST_IO_POSSIBLE","features":[7]},{"name":"FILE_ACCESS_INFORMATION","features":[7]},{"name":"FILE_ACTION_ADDED_STREAM","features":[7]},{"name":"FILE_ACTION_ID_NOT_TUNNELLED","features":[7]},{"name":"FILE_ACTION_MODIFIED_STREAM","features":[7]},{"name":"FILE_ACTION_REMOVED_BY_DELETE","features":[7]},{"name":"FILE_ACTION_REMOVED_STREAM","features":[7]},{"name":"FILE_ACTION_TUNNELLED_ID_COLLISION","features":[7]},{"name":"FILE_ALIGNMENT_INFORMATION","features":[7]},{"name":"FILE_ALLOCATION_INFORMATION","features":[7]},{"name":"FILE_ALL_INFORMATION","features":[7,3]},{"name":"FILE_BASIC_INFORMATION","features":[7]},{"name":"FILE_BOTH_DIR_INFORMATION","features":[7]},{"name":"FILE_CASE_SENSITIVE_INFORMATION","features":[7]},{"name":"FILE_CLEANUP_FILE_DELETED","features":[7]},{"name":"FILE_CLEANUP_FILE_REMAINS","features":[7]},{"name":"FILE_CLEANUP_LINK_DELETED","features":[7]},{"name":"FILE_CLEANUP_POSIX_STYLE_DELETE","features":[7]},{"name":"FILE_CLEANUP_STREAM_DELETED","features":[7]},{"name":"FILE_CLEANUP_UNKNOWN","features":[7]},{"name":"FILE_CLEANUP_WRONG_DEVICE","features":[7]},{"name":"FILE_COMPLETE_IF_OPLOCKED","features":[7]},{"name":"FILE_COMPLETION_INFORMATION","features":[7,3]},{"name":"FILE_COMPRESSION_INFORMATION","features":[7]},{"name":"FILE_CONTAINS_EXTENDED_CREATE_INFORMATION","features":[7]},{"name":"FILE_CREATE","features":[7]},{"name":"FILE_CREATE_TREE_CONNECTION","features":[7]},{"name":"FILE_DELETE_ON_CLOSE","features":[7]},{"name":"FILE_DIRECTORY_FILE","features":[7]},{"name":"FILE_DIRECTORY_INFORMATION","features":[7]},{"name":"FILE_DISALLOW_EXCLUSIVE","features":[7]},{"name":"FILE_DISPOSITION_DELETE","features":[7]},{"name":"FILE_DISPOSITION_DO_NOT_DELETE","features":[7]},{"name":"FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK","features":[7]},{"name":"FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE","features":[7]},{"name":"FILE_DISPOSITION_INFORMATION","features":[7,3]},{"name":"FILE_DISPOSITION_INFORMATION_EX","features":[7]},{"name":"FILE_DISPOSITION_INFORMATION_EX_FLAGS","features":[7]},{"name":"FILE_DISPOSITION_ON_CLOSE","features":[7]},{"name":"FILE_DISPOSITION_POSIX_SEMANTICS","features":[7]},{"name":"FILE_EA_INFORMATION","features":[7]},{"name":"FILE_EA_TYPE_ASCII","features":[7]},{"name":"FILE_EA_TYPE_ASN1","features":[7]},{"name":"FILE_EA_TYPE_BINARY","features":[7]},{"name":"FILE_EA_TYPE_BITMAP","features":[7]},{"name":"FILE_EA_TYPE_EA","features":[7]},{"name":"FILE_EA_TYPE_FAMILY_IDS","features":[7]},{"name":"FILE_EA_TYPE_ICON","features":[7]},{"name":"FILE_EA_TYPE_METAFILE","features":[7]},{"name":"FILE_EA_TYPE_MVMT","features":[7]},{"name":"FILE_EA_TYPE_MVST","features":[7]},{"name":"FILE_END_OF_FILE_INFORMATION_EX","features":[7]},{"name":"FILE_FS_ATTRIBUTE_INFORMATION","features":[7]},{"name":"FILE_FS_CONTROL_INFORMATION","features":[7]},{"name":"FILE_FS_DATA_COPY_INFORMATION","features":[7]},{"name":"FILE_FS_DRIVER_PATH_INFORMATION","features":[7,3]},{"name":"FILE_FS_SECTOR_SIZE_INFORMATION","features":[7]},{"name":"FILE_FS_VOLUME_FLAGS_INFORMATION","features":[7]},{"name":"FILE_FULL_DIR_INFORMATION","features":[7]},{"name":"FILE_FULL_EA_INFORMATION","features":[7]},{"name":"FILE_GET_EA_INFORMATION","features":[7]},{"name":"FILE_GET_QUOTA_INFORMATION","features":[7,6]},{"name":"FILE_ID_BOTH_DIR_INFORMATION","features":[7]},{"name":"FILE_ID_EXTD_BOTH_DIR_INFORMATION","features":[7,23]},{"name":"FILE_ID_EXTD_DIR_INFORMATION","features":[7,23]},{"name":"FILE_ID_FULL_DIR_INFORMATION","features":[7]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFORMATION","features":[7]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_OUTSIDE_TX","features":[7]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_TO_TX","features":[7]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_WRITELOCKED","features":[7]},{"name":"FILE_ID_INFORMATION","features":[7,23]},{"name":"FILE_INFORMATION_CLASS","features":[7]},{"name":"FILE_INFORMATION_DEFINITION","features":[7]},{"name":"FILE_INTERNAL_INFORMATION","features":[7]},{"name":"FILE_KNOWN_FOLDER_INFORMATION","features":[7]},{"name":"FILE_KNOWN_FOLDER_TYPE","features":[7]},{"name":"FILE_LINKS_FULL_ID_INFORMATION","features":[7,23]},{"name":"FILE_LINKS_INFORMATION","features":[7]},{"name":"FILE_LINK_ENTRY_FULL_ID_INFORMATION","features":[7,23]},{"name":"FILE_LINK_ENTRY_INFORMATION","features":[7]},{"name":"FILE_LINK_FORCE_RESIZE_SOURCE_SR","features":[7]},{"name":"FILE_LINK_FORCE_RESIZE_SR","features":[7]},{"name":"FILE_LINK_FORCE_RESIZE_TARGET_SR","features":[7]},{"name":"FILE_LINK_IGNORE_READONLY_ATTRIBUTE","features":[7]},{"name":"FILE_LINK_INFORMATION","features":[7,3]},{"name":"FILE_LINK_NO_DECREASE_AVAILABLE_SPACE","features":[7]},{"name":"FILE_LINK_NO_INCREASE_AVAILABLE_SPACE","features":[7]},{"name":"FILE_LINK_POSIX_SEMANTICS","features":[7]},{"name":"FILE_LINK_PRESERVE_AVAILABLE_SPACE","features":[7]},{"name":"FILE_LINK_REPLACE_IF_EXISTS","features":[7]},{"name":"FILE_LINK_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[7]},{"name":"FILE_LOCK","features":[4,7,5,3,6,8,9,10]},{"name":"FILE_LOCK_INFO","features":[4,7,5,3,6,8,9,10]},{"name":"FILE_MAILSLOT_QUERY_INFORMATION","features":[7]},{"name":"FILE_MAILSLOT_SET_INFORMATION","features":[7]},{"name":"FILE_MODE_INFORMATION","features":[7]},{"name":"FILE_MOVE_CLUSTER_INFORMATION","features":[7,3]},{"name":"FILE_NAMES_INFORMATION","features":[7]},{"name":"FILE_NAME_INFORMATION","features":[7]},{"name":"FILE_NEED_EA","features":[7]},{"name":"FILE_NETWORK_OPEN_INFORMATION","features":[7]},{"name":"FILE_NETWORK_PHYSICAL_NAME_INFORMATION","features":[7]},{"name":"FILE_NON_DIRECTORY_FILE","features":[7]},{"name":"FILE_NOTIFY_CHANGE_EA","features":[7]},{"name":"FILE_NOTIFY_CHANGE_NAME","features":[7]},{"name":"FILE_NOTIFY_CHANGE_STREAM_NAME","features":[7]},{"name":"FILE_NOTIFY_CHANGE_STREAM_SIZE","features":[7]},{"name":"FILE_NOTIFY_CHANGE_STREAM_WRITE","features":[7]},{"name":"FILE_NOTIFY_VALID_MASK","features":[7]},{"name":"FILE_NO_COMPRESSION","features":[7]},{"name":"FILE_NO_EA_KNOWLEDGE","features":[7]},{"name":"FILE_NO_INTERMEDIATE_BUFFERING","features":[7]},{"name":"FILE_OBJECTID_INFORMATION","features":[7]},{"name":"FILE_OPBATCH_BREAK_UNDERWAY","features":[7]},{"name":"FILE_OPEN","features":[7]},{"name":"FILE_OPEN_BY_FILE_ID","features":[7]},{"name":"FILE_OPEN_FOR_BACKUP_INTENT","features":[7]},{"name":"FILE_OPEN_FOR_FREE_SPACE_QUERY","features":[7]},{"name":"FILE_OPEN_IF","features":[7]},{"name":"FILE_OPEN_NO_RECALL","features":[7]},{"name":"FILE_OPEN_REPARSE_POINT","features":[7]},{"name":"FILE_OPEN_REQUIRING_OPLOCK","features":[7]},{"name":"FILE_OPLOCK_BROKEN_TO_LEVEL_2","features":[7]},{"name":"FILE_OPLOCK_BROKEN_TO_NONE","features":[7]},{"name":"FILE_OVERWRITE","features":[7]},{"name":"FILE_OVERWRITE_IF","features":[7]},{"name":"FILE_PIPE_ACCEPT_REMOTE_CLIENTS","features":[7]},{"name":"FILE_PIPE_ASSIGN_EVENT_BUFFER","features":[7,3]},{"name":"FILE_PIPE_BYTE_STREAM_MODE","features":[7]},{"name":"FILE_PIPE_BYTE_STREAM_TYPE","features":[7]},{"name":"FILE_PIPE_CLIENT_END","features":[7]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER","features":[7]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_EX","features":[7]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_V2","features":[7]},{"name":"FILE_PIPE_CLOSING_STATE","features":[7]},{"name":"FILE_PIPE_COMPLETE_OPERATION","features":[7]},{"name":"FILE_PIPE_COMPUTER_NAME_LENGTH","features":[7]},{"name":"FILE_PIPE_CONNECTED_STATE","features":[7]},{"name":"FILE_PIPE_CREATE_SYMLINK_INPUT","features":[7]},{"name":"FILE_PIPE_DELETE_SYMLINK_INPUT","features":[7]},{"name":"FILE_PIPE_DISCONNECTED_STATE","features":[7]},{"name":"FILE_PIPE_EVENT_BUFFER","features":[7]},{"name":"FILE_PIPE_FULL_DUPLEX","features":[7]},{"name":"FILE_PIPE_INBOUND","features":[7]},{"name":"FILE_PIPE_INFORMATION","features":[7]},{"name":"FILE_PIPE_LISTENING_STATE","features":[7]},{"name":"FILE_PIPE_LOCAL_INFORMATION","features":[7]},{"name":"FILE_PIPE_MESSAGE_MODE","features":[7]},{"name":"FILE_PIPE_MESSAGE_TYPE","features":[7]},{"name":"FILE_PIPE_OUTBOUND","features":[7]},{"name":"FILE_PIPE_PEEK_BUFFER","features":[7]},{"name":"FILE_PIPE_QUEUE_OPERATION","features":[7]},{"name":"FILE_PIPE_READ_DATA","features":[7]},{"name":"FILE_PIPE_REJECT_REMOTE_CLIENTS","features":[7]},{"name":"FILE_PIPE_REMOTE_INFORMATION","features":[7]},{"name":"FILE_PIPE_SERVER_END","features":[7]},{"name":"FILE_PIPE_SILO_ARRIVAL_INPUT","features":[7,3]},{"name":"FILE_PIPE_SYMLINK_FLAG_GLOBAL","features":[7]},{"name":"FILE_PIPE_SYMLINK_FLAG_RELATIVE","features":[7]},{"name":"FILE_PIPE_TYPE_VALID_MASK","features":[7]},{"name":"FILE_PIPE_WAIT_FOR_BUFFER","features":[7,3]},{"name":"FILE_PIPE_WRITE_SPACE","features":[7]},{"name":"FILE_POSITION_INFORMATION","features":[7]},{"name":"FILE_QUOTA_INFORMATION","features":[7,6]},{"name":"FILE_RANDOM_ACCESS","features":[7]},{"name":"FILE_REMOTE_PROTOCOL_INFORMATION","features":[7]},{"name":"FILE_RENAME_FORCE_RESIZE_SOURCE_SR","features":[7]},{"name":"FILE_RENAME_FORCE_RESIZE_SR","features":[7]},{"name":"FILE_RENAME_FORCE_RESIZE_TARGET_SR","features":[7]},{"name":"FILE_RENAME_IGNORE_READONLY_ATTRIBUTE","features":[7]},{"name":"FILE_RENAME_INFORMATION","features":[7,3]},{"name":"FILE_RENAME_NO_DECREASE_AVAILABLE_SPACE","features":[7]},{"name":"FILE_RENAME_NO_INCREASE_AVAILABLE_SPACE","features":[7]},{"name":"FILE_RENAME_POSIX_SEMANTICS","features":[7]},{"name":"FILE_RENAME_PRESERVE_AVAILABLE_SPACE","features":[7]},{"name":"FILE_RENAME_REPLACE_IF_EXISTS","features":[7]},{"name":"FILE_RENAME_SUPPRESS_PIN_STATE_INHERITANCE","features":[7]},{"name":"FILE_RENAME_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[7]},{"name":"FILE_REPARSE_POINT_INFORMATION","features":[7]},{"name":"FILE_RESERVE_OPFILTER","features":[7]},{"name":"FILE_SEQUENTIAL_ONLY","features":[7]},{"name":"FILE_SESSION_AWARE","features":[7]},{"name":"FILE_STANDARD_INFORMATION","features":[7,3]},{"name":"FILE_STANDARD_LINK_INFORMATION","features":[7,3]},{"name":"FILE_STAT_INFORMATION","features":[7]},{"name":"FILE_STAT_LX_INFORMATION","features":[7]},{"name":"FILE_STORAGE_RESERVE_ID_INFORMATION","features":[7,24]},{"name":"FILE_STREAM_INFORMATION","features":[7]},{"name":"FILE_SUPERSEDE","features":[7]},{"name":"FILE_SYNCHRONOUS_IO_ALERT","features":[7]},{"name":"FILE_SYNCHRONOUS_IO_NONALERT","features":[7]},{"name":"FILE_TIMESTAMPS","features":[7]},{"name":"FILE_TRACKING_INFORMATION","features":[7,3]},{"name":"FILE_VC_CONTENT_INDEX_DISABLED","features":[7]},{"name":"FILE_VC_LOG_QUOTA_LIMIT","features":[7]},{"name":"FILE_VC_LOG_QUOTA_THRESHOLD","features":[7]},{"name":"FILE_VC_LOG_VOLUME_LIMIT","features":[7]},{"name":"FILE_VC_LOG_VOLUME_THRESHOLD","features":[7]},{"name":"FILE_VC_QUOTAS_INCOMPLETE","features":[7]},{"name":"FILE_VC_QUOTAS_REBUILDING","features":[7]},{"name":"FILE_VC_QUOTA_ENFORCE","features":[7]},{"name":"FILE_VC_QUOTA_MASK","features":[7]},{"name":"FILE_VC_QUOTA_NONE","features":[7]},{"name":"FILE_VC_QUOTA_TRACK","features":[7]},{"name":"FILE_VC_VALID_MASK","features":[7]},{"name":"FILE_VOLUME_NAME_INFORMATION","features":[7]},{"name":"FILE_WRITE_THROUGH","features":[7]},{"name":"FLAGS_DELAY_REASONS_BITMAP_SCANNED","features":[7]},{"name":"FLAGS_DELAY_REASONS_LOG_FILE_FULL","features":[7]},{"name":"FLAGS_END_OF_FILE_INFO_EX_EXTEND_PAGING","features":[7]},{"name":"FLAGS_END_OF_FILE_INFO_EX_NO_EXTRA_PAGING_EXTEND","features":[7]},{"name":"FLAGS_END_OF_FILE_INFO_EX_TIME_CONSTRAINED","features":[7]},{"name":"FREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[7,3]},{"name":"FSCTL_GHOST_FILE_EXTENTS_INPUT_BUFFER","features":[7]},{"name":"FSCTL_LMR_GET_LINK_TRACKING_INFORMATION","features":[7]},{"name":"FSCTL_LMR_SET_LINK_TRACKING_INFORMATION","features":[7]},{"name":"FSCTL_MAILSLOT_PEEK","features":[7]},{"name":"FSCTL_PIPE_ASSIGN_EVENT","features":[7]},{"name":"FSCTL_PIPE_CREATE_SYMLINK","features":[7]},{"name":"FSCTL_PIPE_DELETE_SYMLINK","features":[7]},{"name":"FSCTL_PIPE_DISABLE_IMPERSONATE","features":[7]},{"name":"FSCTL_PIPE_DISCONNECT","features":[7]},{"name":"FSCTL_PIPE_FLUSH","features":[7]},{"name":"FSCTL_PIPE_GET_CONNECTION_ATTRIBUTE","features":[7]},{"name":"FSCTL_PIPE_GET_HANDLE_ATTRIBUTE","features":[7]},{"name":"FSCTL_PIPE_GET_PIPE_ATTRIBUTE","features":[7]},{"name":"FSCTL_PIPE_IMPERSONATE","features":[7]},{"name":"FSCTL_PIPE_INTERNAL_READ","features":[7]},{"name":"FSCTL_PIPE_INTERNAL_READ_OVFLOW","features":[7]},{"name":"FSCTL_PIPE_INTERNAL_TRANSCEIVE","features":[7]},{"name":"FSCTL_PIPE_INTERNAL_WRITE","features":[7]},{"name":"FSCTL_PIPE_LISTEN","features":[7]},{"name":"FSCTL_PIPE_PEEK","features":[7]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS","features":[7]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS_V2","features":[7]},{"name":"FSCTL_PIPE_QUERY_EVENT","features":[7]},{"name":"FSCTL_PIPE_SET_CLIENT_PROCESS","features":[7]},{"name":"FSCTL_PIPE_SET_CONNECTION_ATTRIBUTE","features":[7]},{"name":"FSCTL_PIPE_SET_HANDLE_ATTRIBUTE","features":[7]},{"name":"FSCTL_PIPE_SET_PIPE_ATTRIBUTE","features":[7]},{"name":"FSCTL_PIPE_SILO_ARRIVAL","features":[7]},{"name":"FSCTL_PIPE_TRANSCEIVE","features":[7]},{"name":"FSCTL_PIPE_WAIT","features":[7]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_INPUT_RANGE","features":[7]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_OUTPUT","features":[7]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO_OUTPUT","features":[7]},{"name":"FSCTL_UNMAP_SPACE_INPUT_BUFFER","features":[7]},{"name":"FSCTL_UNMAP_SPACE_OUTPUT","features":[7]},{"name":"FSRTL_ADD_TC_CASE_SENSITIVE","features":[7]},{"name":"FSRTL_ADD_TC_KEY_BY_SHORT_NAME","features":[7]},{"name":"FSRTL_ADVANCED_FCB_HEADER","features":[4,7,3,9]},{"name":"FSRTL_ALLOCATE_ECPLIST_FLAG_CHARGE_QUOTA","features":[7]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_CHARGE_QUOTA","features":[7]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_NONPAGED_POOL","features":[7]},{"name":"FSRTL_AUXILIARY_BUFFER","features":[4,7]},{"name":"FSRTL_AUXILIARY_FLAG_DEALLOCATE","features":[7]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_HARD_ERROR","features":[7]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_LOG_ENTRY","features":[7]},{"name":"FSRTL_CHANGE_BACKING_TYPE","features":[7]},{"name":"FSRTL_COMMON_FCB_HEADER","features":[4,7,9]},{"name":"FSRTL_COMPARISON_RESULT","features":[7]},{"name":"FSRTL_DRIVER_BACKING_FLAG_USE_PAGE_FILE","features":[7]},{"name":"FSRTL_ECP_LOOKASIDE_FLAG_NONPAGED_POOL","features":[7]},{"name":"FSRTL_FAT_LEGAL","features":[7]},{"name":"FSRTL_FCB_HEADER_V0","features":[7]},{"name":"FSRTL_FCB_HEADER_V1","features":[7]},{"name":"FSRTL_FCB_HEADER_V2","features":[7]},{"name":"FSRTL_FCB_HEADER_V3","features":[7]},{"name":"FSRTL_FCB_HEADER_V4","features":[7]},{"name":"FSRTL_FIND_TC_CASE_SENSITIVE","features":[7]},{"name":"FSRTL_FLAG2_BYPASSIO_STREAM_PAUSED","features":[7]},{"name":"FSRTL_FLAG2_DO_MODIFIED_WRITE","features":[7]},{"name":"FSRTL_FLAG2_IS_PAGING_FILE","features":[7]},{"name":"FSRTL_FLAG2_PURGE_WHEN_MAPPED","features":[7]},{"name":"FSRTL_FLAG2_SUPPORTS_FILTER_CONTEXTS","features":[7]},{"name":"FSRTL_FLAG2_WRITABLE_USER_MAPPED_FILE","features":[7]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_EX","features":[7]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_SH","features":[7]},{"name":"FSRTL_FLAG_ADVANCED_HEADER","features":[7]},{"name":"FSRTL_FLAG_EOF_ADVANCE_ACTIVE","features":[7]},{"name":"FSRTL_FLAG_FILE_LENGTH_CHANGED","features":[7]},{"name":"FSRTL_FLAG_FILE_MODIFIED","features":[7]},{"name":"FSRTL_FLAG_LIMIT_MODIFIED_PAGES","features":[7]},{"name":"FSRTL_FLAG_USER_MAPPED_FILE","features":[7]},{"name":"FSRTL_HPFS_LEGAL","features":[7]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_1","features":[7]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_2","features":[7,3]},{"name":"FSRTL_NTFS_LEGAL","features":[7]},{"name":"FSRTL_OLE_LEGAL","features":[7]},{"name":"FSRTL_PER_FILEOBJECT_CONTEXT","features":[7,9]},{"name":"FSRTL_PER_FILE_CONTEXT","features":[4,7,9]},{"name":"FSRTL_PER_STREAM_CONTEXT","features":[4,7,9]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_INTEGRITY","features":[7]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_MUTUAL_AUTH","features":[7]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_PRIVACY","features":[7]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CONTAINER_AWARE","features":[7]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CSC_ENABLED","features":[7]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_DOMAIN_SVC_AWARE","features":[7]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_MAILSLOTS_SUPPORTED","features":[7]},{"name":"FSRTL_UNC_PROVIDER_REGISTRATION","features":[7]},{"name":"FSRTL_UNC_REGISTRATION_CURRENT_VERSION","features":[7]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0200","features":[7]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0201","features":[7]},{"name":"FSRTL_VIRTDISK_FULLY_ALLOCATED","features":[7]},{"name":"FSRTL_VIRTDISK_NO_DRIVE_LETTER","features":[7]},{"name":"FSRTL_VOLUME_BACKGROUND_FORMAT","features":[7]},{"name":"FSRTL_VOLUME_CHANGE_SIZE","features":[7]},{"name":"FSRTL_VOLUME_DISMOUNT","features":[7]},{"name":"FSRTL_VOLUME_DISMOUNT_FAILED","features":[7]},{"name":"FSRTL_VOLUME_FORCED_CLOSED","features":[7]},{"name":"FSRTL_VOLUME_INFO_MAKE_COMPAT","features":[7]},{"name":"FSRTL_VOLUME_LOCK","features":[7]},{"name":"FSRTL_VOLUME_LOCK_FAILED","features":[7]},{"name":"FSRTL_VOLUME_MOUNT","features":[7]},{"name":"FSRTL_VOLUME_NEEDS_CHKDSK","features":[7]},{"name":"FSRTL_VOLUME_PREPARING_EJECT","features":[7]},{"name":"FSRTL_VOLUME_UNLOCK","features":[7]},{"name":"FSRTL_VOLUME_WEARING_OUT","features":[7]},{"name":"FSRTL_VOLUME_WORM_NEAR_FULL","features":[7]},{"name":"FSRTL_WILD_CHARACTER","features":[7]},{"name":"FS_BPIO_INFO","features":[7]},{"name":"FS_BPIO_INPUT","features":[7,24]},{"name":"FS_FILTER_ACQUIRE_FOR_CC_FLUSH","features":[7]},{"name":"FS_FILTER_ACQUIRE_FOR_MOD_WRITE","features":[7]},{"name":"FS_FILTER_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[7]},{"name":"FS_FILTER_CALLBACKS","features":[4,7,5,3,6,8,9,10]},{"name":"FS_FILTER_CALLBACK_DATA","features":[4,7,5,3,6,8,9,10]},{"name":"FS_FILTER_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"FS_FILTER_QUERY_OPEN","features":[7]},{"name":"FS_FILTER_RELEASE_FOR_CC_FLUSH","features":[7]},{"name":"FS_FILTER_RELEASE_FOR_MOD_WRITE","features":[7]},{"name":"FS_FILTER_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_IMAGE_EXTENTS_ARE_NOT_RVA","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_ACCESS","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_WRITE","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_OUTPUT","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_ASYNC_PARALLEL_IO","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_DATA","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_IMAGE","features":[7]},{"name":"FS_FILTER_SECTION_SYNC_TYPE","features":[7]},{"name":"FS_FILTER_STREAM_FO_NOTIFICATION_TYPE","features":[7]},{"name":"FS_INFORMATION_CLASS","features":[7]},{"name":"FastIoIsNotPossible","features":[7]},{"name":"FastIoIsPossible","features":[7]},{"name":"FastIoIsQuestionable","features":[7]},{"name":"FileAccessInformation","features":[7]},{"name":"FileAlignmentInformation","features":[7]},{"name":"FileAllInformation","features":[7]},{"name":"FileAllocationInformation","features":[7]},{"name":"FileAlternateNameInformation","features":[7]},{"name":"FileAttributeTagInformation","features":[7]},{"name":"FileBasicInformation","features":[7]},{"name":"FileBothDirectoryInformation","features":[7]},{"name":"FileCaseSensitiveInformation","features":[7]},{"name":"FileCaseSensitiveInformationForceAccessCheck","features":[7]},{"name":"FileCompletionInformation","features":[7]},{"name":"FileCompressionInformation","features":[7]},{"name":"FileDesiredStorageClassInformation","features":[7]},{"name":"FileDirectoryInformation","features":[7]},{"name":"FileDispositionInformation","features":[7]},{"name":"FileDispositionInformationEx","features":[7]},{"name":"FileEaInformation","features":[7]},{"name":"FileEndOfFileInformation","features":[7]},{"name":"FileFsAttributeInformation","features":[7]},{"name":"FileFsControlInformation","features":[7]},{"name":"FileFsDataCopyInformation","features":[7]},{"name":"FileFsDeviceInformation","features":[7]},{"name":"FileFsDriverPathInformation","features":[7]},{"name":"FileFsFullSizeInformation","features":[7]},{"name":"FileFsFullSizeInformationEx","features":[7]},{"name":"FileFsLabelInformation","features":[7]},{"name":"FileFsMaximumInformation","features":[7]},{"name":"FileFsMetadataSizeInformation","features":[7]},{"name":"FileFsObjectIdInformation","features":[7]},{"name":"FileFsSectorSizeInformation","features":[7]},{"name":"FileFsSizeInformation","features":[7]},{"name":"FileFsVolumeFlagsInformation","features":[7]},{"name":"FileFsVolumeInformation","features":[7]},{"name":"FileFullDirectoryInformation","features":[7]},{"name":"FileFullEaInformation","features":[7]},{"name":"FileHardLinkFullIdInformation","features":[7]},{"name":"FileHardLinkInformation","features":[7]},{"name":"FileIdBothDirectoryInformation","features":[7]},{"name":"FileIdExtdBothDirectoryInformation","features":[7]},{"name":"FileIdExtdDirectoryInformation","features":[7]},{"name":"FileIdFullDirectoryInformation","features":[7]},{"name":"FileIdGlobalTxDirectoryInformation","features":[7]},{"name":"FileIdInformation","features":[7]},{"name":"FileInternalInformation","features":[7]},{"name":"FileIoCompletionNotificationInformation","features":[7]},{"name":"FileIoPriorityHintInformation","features":[7]},{"name":"FileIoStatusBlockRangeInformation","features":[7]},{"name":"FileIsRemoteDeviceInformation","features":[7]},{"name":"FileKnownFolderInformation","features":[7]},{"name":"FileLinkInformation","features":[7]},{"name":"FileLinkInformationBypassAccessCheck","features":[7]},{"name":"FileLinkInformationEx","features":[7]},{"name":"FileLinkInformationExBypassAccessCheck","features":[7]},{"name":"FileMailslotQueryInformation","features":[7]},{"name":"FileMailslotSetInformation","features":[7]},{"name":"FileMaximumInformation","features":[7]},{"name":"FileMemoryPartitionInformation","features":[7]},{"name":"FileModeInformation","features":[7]},{"name":"FileMoveClusterInformation","features":[7]},{"name":"FileNameInformation","features":[7]},{"name":"FileNamesInformation","features":[7]},{"name":"FileNetworkOpenInformation","features":[7]},{"name":"FileNetworkPhysicalNameInformation","features":[7]},{"name":"FileNormalizedNameInformation","features":[7]},{"name":"FileNumaNodeInformation","features":[7]},{"name":"FileObjectIdInformation","features":[7]},{"name":"FilePipeInformation","features":[7]},{"name":"FilePipeLocalInformation","features":[7]},{"name":"FilePipeRemoteInformation","features":[7]},{"name":"FilePositionInformation","features":[7]},{"name":"FileProcessIdsUsingFileInformation","features":[7]},{"name":"FileQuotaInformation","features":[7]},{"name":"FileRemoteProtocolInformation","features":[7]},{"name":"FileRenameInformation","features":[7]},{"name":"FileRenameInformationBypassAccessCheck","features":[7]},{"name":"FileRenameInformationEx","features":[7]},{"name":"FileRenameInformationExBypassAccessCheck","features":[7]},{"name":"FileReparsePointInformation","features":[7]},{"name":"FileReplaceCompletionInformation","features":[7]},{"name":"FileSfioReserveInformation","features":[7]},{"name":"FileSfioVolumeInformation","features":[7]},{"name":"FileShortNameInformation","features":[7]},{"name":"FileStandardInformation","features":[7]},{"name":"FileStandardLinkInformation","features":[7]},{"name":"FileStatInformation","features":[7]},{"name":"FileStatLxInformation","features":[7]},{"name":"FileStorageReserveIdInformation","features":[7]},{"name":"FileStreamInformation","features":[7]},{"name":"FileTrackingInformation","features":[7]},{"name":"FileUnusedInformation","features":[7]},{"name":"FileValidDataLengthInformation","features":[7]},{"name":"FileVolumeNameInformation","features":[7]},{"name":"FsRtlAcknowledgeEcp","features":[7]},{"name":"FsRtlAcquireFileExclusive","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlAddBaseMcbEntry","features":[7,3]},{"name":"FsRtlAddBaseMcbEntryEx","features":[7,3]},{"name":"FsRtlAddLargeMcbEntry","features":[4,7,3,9]},{"name":"FsRtlAddMcbEntry","features":[4,7,3,9]},{"name":"FsRtlAddToTunnelCache","features":[4,7,3,9]},{"name":"FsRtlAddToTunnelCacheEx","features":[4,7,3,9]},{"name":"FsRtlAllocateAePushLock","features":[4,7]},{"name":"FsRtlAllocateExtraCreateParameter","features":[7,3]},{"name":"FsRtlAllocateExtraCreateParameterFromLookasideList","features":[7,3]},{"name":"FsRtlAllocateExtraCreateParameterList","features":[4,7,3]},{"name":"FsRtlAllocateFileLock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlAllocateResource","features":[4,7,9]},{"name":"FsRtlAreNamesEqual","features":[7,3]},{"name":"FsRtlAreThereCurrentOrInProgressFileLocks","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlAreThereWaitingFileLocks","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlAreVolumeStartupApplicationsComplete","features":[7,3]},{"name":"FsRtlBalanceReads","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCancellableWaitForMultipleObjects","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCancellableWaitForSingleObject","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlChangeBackingFileObject","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCheckLockForOplockRequest","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCheckLockForReadAccess","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCheckLockForWriteAccess","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCheckOplock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCheckOplockEx","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCheckOplockEx2","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCheckUpperOplock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCopyRead","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCopyWrite","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCreateSectionForDataScan","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlCurrentBatchOplock","features":[7,3]},{"name":"FsRtlCurrentOplock","features":[7,3]},{"name":"FsRtlCurrentOplockH","features":[7,3]},{"name":"FsRtlDeleteExtraCreateParameterLookasideList","features":[7]},{"name":"FsRtlDeleteKeyFromTunnelCache","features":[4,7,3,9]},{"name":"FsRtlDeleteTunnelCache","features":[4,7,3,9]},{"name":"FsRtlDeregisterUncProvider","features":[7,3]},{"name":"FsRtlDismountComplete","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlDissectDbcs","features":[7,9]},{"name":"FsRtlDissectName","features":[7,3]},{"name":"FsRtlDoesDbcsContainWildCards","features":[7,3,9]},{"name":"FsRtlDoesNameContainWildCards","features":[7,3]},{"name":"FsRtlFastCheckLockForRead","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlFastCheckLockForWrite","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlFastUnlockAll","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlFastUnlockAllByKey","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlFastUnlockSingle","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlFindExtraCreateParameter","features":[4,7,3]},{"name":"FsRtlFindInTunnelCache","features":[4,7,3,9]},{"name":"FsRtlFindInTunnelCacheEx","features":[4,7,3,9]},{"name":"FsRtlFreeAePushLock","features":[7]},{"name":"FsRtlFreeExtraCreateParameter","features":[7]},{"name":"FsRtlFreeExtraCreateParameterList","features":[4,7]},{"name":"FsRtlFreeFileLock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlGetCurrentProcessLoaderList","features":[7,9]},{"name":"FsRtlGetEcpListFromIrp","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlGetFileSize","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlGetNextBaseMcbEntry","features":[7,3]},{"name":"FsRtlGetNextExtraCreateParameter","features":[4,7,3]},{"name":"FsRtlGetNextFileLock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlGetNextLargeMcbEntry","features":[4,7,3,9]},{"name":"FsRtlGetNextMcbEntry","features":[4,7,3,9]},{"name":"FsRtlGetSectorSizeInformation","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlGetSupportedFeatures","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlGetVirtualDiskNestingLevel","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlIncrementCcFastMdlReadWait","features":[7]},{"name":"FsRtlIncrementCcFastReadNoWait","features":[7]},{"name":"FsRtlIncrementCcFastReadNotPossible","features":[7]},{"name":"FsRtlIncrementCcFastReadResourceMiss","features":[7]},{"name":"FsRtlIncrementCcFastReadWait","features":[7]},{"name":"FsRtlInitExtraCreateParameterLookasideList","features":[7]},{"name":"FsRtlInitializeBaseMcb","features":[4,7]},{"name":"FsRtlInitializeBaseMcbEx","features":[4,7,3]},{"name":"FsRtlInitializeExtraCreateParameter","features":[4,7]},{"name":"FsRtlInitializeExtraCreateParameterList","features":[4,7,3]},{"name":"FsRtlInitializeFileLock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlInitializeLargeMcb","features":[4,7,3,9]},{"name":"FsRtlInitializeMcb","features":[4,7,3,9]},{"name":"FsRtlInitializeOplock","features":[7]},{"name":"FsRtlInitializeTunnelCache","features":[4,7,3,9]},{"name":"FsRtlInsertExtraCreateParameter","features":[4,7,3]},{"name":"FsRtlInsertPerFileContext","features":[4,7,3,9]},{"name":"FsRtlInsertPerFileObjectContext","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlInsertPerStreamContext","features":[4,7,3,9]},{"name":"FsRtlIs32BitProcess","features":[4,7,3]},{"name":"FsRtlIsDaxVolume","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlIsDbcsInExpression","features":[7,3,9]},{"name":"FsRtlIsEcpAcknowledged","features":[7,3]},{"name":"FsRtlIsEcpFromUserMode","features":[7,3]},{"name":"FsRtlIsExtentDangling","features":[7]},{"name":"FsRtlIsFatDbcsLegal","features":[7,3,9]},{"name":"FsRtlIsHpfsDbcsLegal","features":[7,3,9]},{"name":"FsRtlIsMobileOS","features":[7,3]},{"name":"FsRtlIsNameInExpression","features":[7,3]},{"name":"FsRtlIsNameInUnUpcasedExpression","features":[7,3]},{"name":"FsRtlIsNonEmptyDirectoryReparsePointAllowed","features":[7,3]},{"name":"FsRtlIsNtstatusExpected","features":[7,3]},{"name":"FsRtlIsPagingFile","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlIsSystemPagingFile","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlIssueDeviceIoControl","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlKernelFsControlFile","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlLogCcFlushError","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlLookupBaseMcbEntry","features":[7,3]},{"name":"FsRtlLookupLargeMcbEntry","features":[4,7,3,9]},{"name":"FsRtlLookupLastBaseMcbEntry","features":[7,3]},{"name":"FsRtlLookupLastBaseMcbEntryAndIndex","features":[7,3]},{"name":"FsRtlLookupLastLargeMcbEntry","features":[4,7,3,9]},{"name":"FsRtlLookupLastLargeMcbEntryAndIndex","features":[4,7,3,9]},{"name":"FsRtlLookupLastMcbEntry","features":[4,7,3,9]},{"name":"FsRtlLookupMcbEntry","features":[4,7,3,9]},{"name":"FsRtlLookupPerFileContext","features":[4,7,9]},{"name":"FsRtlLookupPerFileObjectContext","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlLookupPerStreamContextInternal","features":[4,7,3,9]},{"name":"FsRtlMdlReadCompleteDev","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlMdlReadDev","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlMdlReadEx","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlMdlWriteCompleteDev","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlMupGetProviderIdFromName","features":[7,3]},{"name":"FsRtlMupGetProviderInfoFromFileObject","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlNormalizeNtstatus","features":[7,3]},{"name":"FsRtlNotifyCleanup","features":[4,7,9]},{"name":"FsRtlNotifyCleanupAll","features":[4,7,9]},{"name":"FsRtlNotifyFilterChangeDirectory","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlNotifyFilterReportChange","features":[4,7,9]},{"name":"FsRtlNotifyFullChangeDirectory","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlNotifyFullReportChange","features":[4,7,9]},{"name":"FsRtlNotifyInitializeSync","features":[4,7]},{"name":"FsRtlNotifyUninitializeSync","features":[4,7]},{"name":"FsRtlNotifyVolumeEvent","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlNotifyVolumeEventEx","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlNumberOfRunsInBaseMcb","features":[7]},{"name":"FsRtlNumberOfRunsInLargeMcb","features":[4,7,3,9]},{"name":"FsRtlNumberOfRunsInMcb","features":[4,7,3,9]},{"name":"FsRtlOplockBreakH","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlOplockBreakH2","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlOplockBreakToNone","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlOplockBreakToNoneEx","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlOplockFsctrl","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlOplockFsctrlEx","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlOplockGetAnyBreakOwnerProcess","features":[4,7]},{"name":"FsRtlOplockIsFastIoPossible","features":[7,3]},{"name":"FsRtlOplockIsSharedRequest","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlOplockKeysEqual","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlPostPagingFileStackOverflow","features":[4,7,3,9]},{"name":"FsRtlPostStackOverflow","features":[4,7,3,9]},{"name":"FsRtlPrepareMdlWriteDev","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlPrepareMdlWriteEx","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlPrepareToReuseEcp","features":[7]},{"name":"FsRtlPrivateLock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlProcessFileLock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlQueryCachedVdl","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlQueryInformationFile","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlQueryKernelEaFile","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlQueryMaximumVirtualDiskNestingLevel","features":[7]},{"name":"FsRtlRegisterFileSystemFilterCallbacks","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlRegisterUncProvider","features":[7,3]},{"name":"FsRtlRegisterUncProviderEx","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlRegisterUncProviderEx2","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlReleaseFile","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlRemoveBaseMcbEntry","features":[7,3]},{"name":"FsRtlRemoveDotsFromPath","features":[7,3]},{"name":"FsRtlRemoveExtraCreateParameter","features":[4,7,3]},{"name":"FsRtlRemoveLargeMcbEntry","features":[4,7,3,9]},{"name":"FsRtlRemoveMcbEntry","features":[4,7,3,9]},{"name":"FsRtlRemovePerFileContext","features":[4,7,9]},{"name":"FsRtlRemovePerFileObjectContext","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlRemovePerStreamContext","features":[4,7,3,9]},{"name":"FsRtlResetBaseMcb","features":[7]},{"name":"FsRtlResetLargeMcb","features":[4,7,3,9]},{"name":"FsRtlSetDriverBacking","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlSetEcpListIntoIrp","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlSetKernelEaFile","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlSplitBaseMcb","features":[7,3]},{"name":"FsRtlSplitLargeMcb","features":[4,7,3,9]},{"name":"FsRtlTeardownPerFileContexts","features":[7]},{"name":"FsRtlTeardownPerStreamContexts","features":[4,7,3,9]},{"name":"FsRtlTruncateBaseMcb","features":[7]},{"name":"FsRtlTruncateLargeMcb","features":[4,7,3,9]},{"name":"FsRtlTruncateMcb","features":[4,7,3,9]},{"name":"FsRtlUninitializeBaseMcb","features":[7]},{"name":"FsRtlUninitializeFileLock","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlUninitializeLargeMcb","features":[4,7,3,9]},{"name":"FsRtlUninitializeMcb","features":[4,7,3,9]},{"name":"FsRtlUninitializeOplock","features":[7]},{"name":"FsRtlUpdateDiskCounters","features":[7]},{"name":"FsRtlUpperOplockFsctrl","features":[4,7,5,3,6,8,9,10]},{"name":"FsRtlValidateReparsePointBuffer","features":[7,3]},{"name":"FsRtlVolumeDeviceToCorrelationId","features":[4,7,5,3,6,8,9,10]},{"name":"GCR_ALLOW_LM","features":[7]},{"name":"GCR_ALLOW_NO_TARGET","features":[7]},{"name":"GCR_ALLOW_NTLM","features":[7]},{"name":"GCR_MACHINE_CREDENTIAL","features":[7]},{"name":"GCR_NTLM3_PARMS","features":[7]},{"name":"GCR_TARGET_INFO","features":[7]},{"name":"GCR_USE_OEM_SET","features":[7]},{"name":"GCR_USE_OWF_PASSWORD","features":[7]},{"name":"GCR_VSM_PROTECTED_PASSWORD","features":[7]},{"name":"GENERATE_CLIENT_CHALLENGE","features":[7]},{"name":"GENERATE_NAME_CONTEXT","features":[7,3]},{"name":"GHOSTED_FILE_EXTENT","features":[7]},{"name":"GUID_ECP_ATOMIC_CREATE","features":[7]},{"name":"GUID_ECP_CLOUDFILES_ATTRIBUTION","features":[7]},{"name":"GUID_ECP_CREATE_REDIRECTION","features":[7]},{"name":"GUID_ECP_CSV_DOWN_LEVEL_OPEN","features":[7]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION","features":[7]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[7]},{"name":"GUID_ECP_CSV_SET_HANDLE_PROPERTIES","features":[7]},{"name":"GUID_ECP_DUAL_OPLOCK_KEY","features":[7]},{"name":"GUID_ECP_IO_DEVICE_HINT","features":[7]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE","features":[7]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE_VERSION","features":[7]},{"name":"GUID_ECP_NETWORK_OPEN_CONTEXT","features":[7]},{"name":"GUID_ECP_NFS_OPEN","features":[7]},{"name":"GUID_ECP_OPEN_PARAMETERS","features":[7]},{"name":"GUID_ECP_OPLOCK_KEY","features":[7]},{"name":"GUID_ECP_PREFETCH_OPEN","features":[7]},{"name":"GUID_ECP_QUERY_ON_CREATE","features":[7]},{"name":"GUID_ECP_RKF_BYPASS","features":[7]},{"name":"GUID_ECP_SRV_OPEN","features":[7]},{"name":"GetSecurityUserInfo","features":[7,3,25]},{"name":"GreaterThan","features":[7]},{"name":"HEAP_CLASS_0","features":[7]},{"name":"HEAP_CLASS_1","features":[7]},{"name":"HEAP_CLASS_2","features":[7]},{"name":"HEAP_CLASS_3","features":[7]},{"name":"HEAP_CLASS_4","features":[7]},{"name":"HEAP_CLASS_5","features":[7]},{"name":"HEAP_CLASS_6","features":[7]},{"name":"HEAP_CLASS_7","features":[7]},{"name":"HEAP_CLASS_8","features":[7]},{"name":"HEAP_CLASS_MASK","features":[7]},{"name":"HEAP_CREATE_ALIGN_16","features":[7]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[7]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[7]},{"name":"HEAP_CREATE_HARDENED","features":[7]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[7]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[7]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[7]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[7]},{"name":"HEAP_GLOBAL_TAG","features":[7]},{"name":"HEAP_GROWABLE","features":[7]},{"name":"HEAP_MAXIMUM_TAG","features":[7]},{"name":"HEAP_MEMORY_INFO_CLASS","features":[7]},{"name":"HEAP_NO_SERIALIZE","features":[7]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[7]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[7]},{"name":"HEAP_SETTABLE_USER_FLAG1","features":[7]},{"name":"HEAP_SETTABLE_USER_FLAG2","features":[7]},{"name":"HEAP_SETTABLE_USER_FLAG3","features":[7]},{"name":"HEAP_SETTABLE_USER_FLAGS","features":[7]},{"name":"HEAP_SETTABLE_USER_VALUE","features":[7]},{"name":"HEAP_TAG_SHIFT","features":[7]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[7]},{"name":"HEAP_ZERO_MEMORY","features":[7]},{"name":"HeapMemoryBasicInformation","features":[7]},{"name":"INVALID_PROCESSOR_INDEX","features":[7]},{"name":"IOCTL_LMR_ARE_FILE_OBJECTS_ON_SAME_SERVER","features":[7]},{"name":"IOCTL_REDIR_QUERY_PATH","features":[7]},{"name":"IOCTL_REDIR_QUERY_PATH_EX","features":[7]},{"name":"IOCTL_VOLSNAP_FLUSH_AND_HOLD_WRITES","features":[7]},{"name":"IO_CD_ROM_INCREMENT","features":[7]},{"name":"IO_CREATE_STREAM_FILE_LITE","features":[7]},{"name":"IO_CREATE_STREAM_FILE_OPTIONS","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CREATE_STREAM_FILE_RAISE_ON_ERROR","features":[7]},{"name":"IO_DEVICE_HINT_ECP_CONTEXT","features":[4,7,5,3,6,8,9,10]},{"name":"IO_DISK_INCREMENT","features":[7]},{"name":"IO_FILE_OBJECT_NON_PAGED_POOL_CHARGE","features":[7]},{"name":"IO_FILE_OBJECT_PAGED_POOL_CHARGE","features":[7]},{"name":"IO_IGNORE_READONLY_ATTRIBUTE","features":[7]},{"name":"IO_MAILSLOT_INCREMENT","features":[7]},{"name":"IO_MM_PAGING_FILE","features":[7]},{"name":"IO_NAMED_PIPE_INCREMENT","features":[7]},{"name":"IO_NETWORK_INCREMENT","features":[7]},{"name":"IO_NO_INCREMENT","features":[7]},{"name":"IO_OPEN_PAGING_FILE","features":[7]},{"name":"IO_OPEN_TARGET_DIRECTORY","features":[7]},{"name":"IO_PRIORITY_INFO","features":[4,7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_0","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_1","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_2","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_3","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_4","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_5","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_6","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_7","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_8","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_9","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_A","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_B","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_C","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_D","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_E","features":[7]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_F","features":[7]},{"name":"IO_REPARSE_TAG_ACTIVISION_HSM","features":[7]},{"name":"IO_REPARSE_TAG_ADA_HSM","features":[7]},{"name":"IO_REPARSE_TAG_ADOBE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_ALERTBOOT","features":[7]},{"name":"IO_REPARSE_TAG_ALTIRIS_HSM","features":[7]},{"name":"IO_REPARSE_TAG_APPXSTRM","features":[7]},{"name":"IO_REPARSE_TAG_ARCO_BACKUP","features":[7]},{"name":"IO_REPARSE_TAG_ARKIVIO","features":[7]},{"name":"IO_REPARSE_TAG_AURISTOR_FS","features":[7]},{"name":"IO_REPARSE_TAG_AUTN_HSM","features":[7]},{"name":"IO_REPARSE_TAG_BRIDGEHEAD_HSM","features":[7]},{"name":"IO_REPARSE_TAG_C2CSYSTEMS_HSM","features":[7]},{"name":"IO_REPARSE_TAG_CARINGO_HSM","features":[7]},{"name":"IO_REPARSE_TAG_CARROLL_HSM","features":[7]},{"name":"IO_REPARSE_TAG_CITRIX_PM","features":[7]},{"name":"IO_REPARSE_TAG_COMMVAULT","features":[7]},{"name":"IO_REPARSE_TAG_COMMVAULT_HSM","features":[7]},{"name":"IO_REPARSE_TAG_COMTRADE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_CTERA_HSM","features":[7]},{"name":"IO_REPARSE_TAG_DATAFIRST_HSM","features":[7]},{"name":"IO_REPARSE_TAG_DATAGLOBAL_HSM","features":[7]},{"name":"IO_REPARSE_TAG_DATASTOR_SIS","features":[7]},{"name":"IO_REPARSE_TAG_DFM","features":[7]},{"name":"IO_REPARSE_TAG_DOR_HSM","features":[7]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_SIS","features":[7]},{"name":"IO_REPARSE_TAG_DRIVE_EXTENDER","features":[7]},{"name":"IO_REPARSE_TAG_DROPBOX_HSM","features":[7]},{"name":"IO_REPARSE_TAG_EASEFILTER_HSM","features":[7]},{"name":"IO_REPARSE_TAG_EASEVAULT_HSM","features":[7]},{"name":"IO_REPARSE_TAG_EDSI_HSM","features":[7]},{"name":"IO_REPARSE_TAG_ELTAN_HSM","features":[7]},{"name":"IO_REPARSE_TAG_EMC_HSM","features":[7]},{"name":"IO_REPARSE_TAG_ENIGMA_HSM","features":[7]},{"name":"IO_REPARSE_TAG_FILTER_MANAGER","features":[7]},{"name":"IO_REPARSE_TAG_GLOBAL360_HSM","features":[7]},{"name":"IO_REPARSE_TAG_GOOGLE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_GRAU_DATASTORAGE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_HDS_HCP_HSM","features":[7]},{"name":"IO_REPARSE_TAG_HDS_HSM","features":[7]},{"name":"IO_REPARSE_TAG_HERMES_HSM","features":[7]},{"name":"IO_REPARSE_TAG_HP_BACKUP","features":[7]},{"name":"IO_REPARSE_TAG_HP_DATA_PROTECT","features":[7]},{"name":"IO_REPARSE_TAG_HP_HSM","features":[7]},{"name":"IO_REPARSE_TAG_HSAG_HSM","features":[7]},{"name":"IO_REPARSE_TAG_HUBSTOR_HSM","features":[7]},{"name":"IO_REPARSE_TAG_IFSTEST_CONGRUENT","features":[7]},{"name":"IO_REPARSE_TAG_IIS_CACHE","features":[7]},{"name":"IO_REPARSE_TAG_IMANAGE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_INTERCOPE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_ITSTATION","features":[7]},{"name":"IO_REPARSE_TAG_KOM_NETWORKS_HSM","features":[7]},{"name":"IO_REPARSE_TAG_LX_BLK","features":[7]},{"name":"IO_REPARSE_TAG_LX_CHR","features":[7]},{"name":"IO_REPARSE_TAG_LX_FIFO","features":[7]},{"name":"IO_REPARSE_TAG_LX_SYMLINK","features":[7]},{"name":"IO_REPARSE_TAG_MAGINATICS_RDR","features":[7]},{"name":"IO_REPARSE_TAG_MAXISCALE_HSM","features":[7]},{"name":"IO_REPARSE_TAG_MEMORY_TECH_HSM","features":[7]},{"name":"IO_REPARSE_TAG_MIMOSA_HSM","features":[7]},{"name":"IO_REPARSE_TAG_MOONWALK_HSM","features":[7]},{"name":"IO_REPARSE_TAG_MTALOS","features":[7]},{"name":"IO_REPARSE_TAG_NEUSHIELD","features":[7]},{"name":"IO_REPARSE_TAG_NEXSAN_HSM","features":[7]},{"name":"IO_REPARSE_TAG_NIPPON_HSM","features":[7]},{"name":"IO_REPARSE_TAG_NVIDIA_UNIONFS","features":[7]},{"name":"IO_REPARSE_TAG_OPENAFS_DFS","features":[7]},{"name":"IO_REPARSE_TAG_OSR_SAMPLE","features":[7]},{"name":"IO_REPARSE_TAG_OVERTONE","features":[7]},{"name":"IO_REPARSE_TAG_POINTSOFT_HSM","features":[7]},{"name":"IO_REPARSE_TAG_QI_TECH_HSM","features":[7]},{"name":"IO_REPARSE_TAG_QUADDRA_HSM","features":[7]},{"name":"IO_REPARSE_TAG_QUEST_HSM","features":[7]},{"name":"IO_REPARSE_TAG_REDSTOR_HSM","features":[7]},{"name":"IO_REPARSE_TAG_RIVERBED_HSM","features":[7]},{"name":"IO_REPARSE_TAG_SER_HSM","features":[7]},{"name":"IO_REPARSE_TAG_SHX_BACKUP","features":[7]},{"name":"IO_REPARSE_TAG_SOLUTIONSOFT","features":[7]},{"name":"IO_REPARSE_TAG_SONY_HSM","features":[7]},{"name":"IO_REPARSE_TAG_SPHARSOFT","features":[7]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM","features":[7]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM2","features":[7]},{"name":"IO_REPARSE_TAG_TSINGHUA_UNIVERSITY_RESEARCH","features":[7]},{"name":"IO_REPARSE_TAG_UTIXO_HSM","features":[7]},{"name":"IO_REPARSE_TAG_VALID_VALUES","features":[7]},{"name":"IO_REPARSE_TAG_VMWARE_PM","features":[7]},{"name":"IO_REPARSE_TAG_WATERFORD","features":[7]},{"name":"IO_REPARSE_TAG_WISDATA_HSM","features":[7]},{"name":"IO_REPARSE_TAG_ZLTI_HSM","features":[7]},{"name":"IO_STOP_ON_SYMLINK","features":[7]},{"name":"IO_STOP_ON_SYMLINK_FILTER_ECP_v0","features":[7]},{"name":"IoAcquireVpbSpinLock","features":[7]},{"name":"IoApplyPriorityInfoThread","features":[4,7,3]},{"name":"IoCheckDesiredAccess","features":[7,3]},{"name":"IoCheckEaBufferValidity","features":[7,3]},{"name":"IoCheckFunctionAccess","features":[7,3]},{"name":"IoCheckQuerySetFileInformation","features":[7,3]},{"name":"IoCheckQuerySetVolumeInformation","features":[7,3]},{"name":"IoCheckQuotaBufferValidity","features":[7,3,6]},{"name":"IoClearFsTrackOffsetState","features":[4,7,5,3,6,8,9,10]},{"name":"IoCreateStreamFileObject","features":[4,7,5,3,6,8,9,10]},{"name":"IoCreateStreamFileObjectEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoCreateStreamFileObjectEx2","features":[4,7,5,3,6,8,9,10]},{"name":"IoCreateStreamFileObjectLite","features":[4,7,5,3,6,8,9,10]},{"name":"IoEnumerateDeviceObjectList","features":[4,7,5,3,6,8,9,10]},{"name":"IoEnumerateRegisteredFiltersList","features":[4,7,5,3,6,8,9,10]},{"name":"IoFastQueryNetworkAttributes","features":[4,7,3,8]},{"name":"IoGetAttachedDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetBaseFileSystemDeviceObject","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDeviceAttachmentBaseRef","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDeviceToVerify","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDiskDeviceObject","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetFsTrackOffsetState","features":[4,7,5,3,6,8,24,9,10]},{"name":"IoGetLowerDeviceObject","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetOplockKeyContext","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetOplockKeyContextEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetRequestorProcess","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetRequestorProcessId","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetRequestorSessionId","features":[4,7,5,3,6,8,9,10]},{"name":"IoIrpHasFsTrackOffsetExtensionType","features":[4,7,5,3,6,8,9,10]},{"name":"IoIsOperationSynchronous","features":[4,7,5,3,6,8,9,10]},{"name":"IoIsSystemThread","features":[4,7,3]},{"name":"IoIsValidNameGraftingBuffer","features":[4,7,5,3,6,8,9,10]},{"name":"IoPageRead","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueryFileDosDeviceName","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueryFileInformation","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueryVolumeInformation","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueueThreadIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterFileSystem","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterFsRegistrationChange","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterFsRegistrationChangeMountAware","features":[4,7,5,3,6,8,9,10]},{"name":"IoReleaseVpbSpinLock","features":[7]},{"name":"IoReplaceFileObjectName","features":[4,7,5,3,6,8,9,10]},{"name":"IoRequestDeviceRemovalForReset","features":[4,7,5,3,6,8,9,10]},{"name":"IoRetrievePriorityInfo","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetDeviceToVerify","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetFsTrackOffsetState","features":[4,7,5,3,6,8,24,9,10]},{"name":"IoSetInformation","features":[4,7,5,3,6,8,9,10]},{"name":"IoSynchronousPageWrite","features":[4,7,5,3,6,8,9,10]},{"name":"IoThreadToProcess","features":[4,7]},{"name":"IoUnregisterFileSystem","features":[4,7,5,3,6,8,9,10]},{"name":"IoUnregisterFsRegistrationChange","features":[4,7,5,3,6,8,9,10]},{"name":"IoVerifyVolume","features":[4,7,5,3,6,8,9,10]},{"name":"KAPC_STATE","features":[7,3,9]},{"name":"KeAcquireQueuedSpinLock","features":[4,7]},{"name":"KeAcquireSpinLockRaiseToSynch","features":[7]},{"name":"KeAttachProcess","features":[4,7]},{"name":"KeDetachProcess","features":[7]},{"name":"KeInitializeMutant","features":[4,7,3,9]},{"name":"KeInitializeQueue","features":[4,7,3,9]},{"name":"KeInsertHeadQueue","features":[4,7,3,9]},{"name":"KeInsertQueue","features":[4,7,3,9]},{"name":"KeReadStateMutant","features":[4,7,3,9]},{"name":"KeReadStateQueue","features":[4,7,3,9]},{"name":"KeReleaseMutant","features":[4,7,3,9]},{"name":"KeReleaseQueuedSpinLock","features":[4,7]},{"name":"KeRemoveQueue","features":[4,7,3,9]},{"name":"KeRemoveQueueEx","features":[4,7,3,9]},{"name":"KeRundownQueue","features":[4,7,3,9]},{"name":"KeSetIdealProcessorThread","features":[4,7]},{"name":"KeSetKernelStackSwapEnable","features":[7,3]},{"name":"KeStackAttachProcess","features":[4,7,3,9]},{"name":"KeTryToAcquireQueuedSpinLock","features":[4,7]},{"name":"KeUnstackDetachProcess","features":[7,3,9]},{"name":"KnownFolderDesktop","features":[7]},{"name":"KnownFolderDocuments","features":[7]},{"name":"KnownFolderDownloads","features":[7]},{"name":"KnownFolderMax","features":[7]},{"name":"KnownFolderMusic","features":[7]},{"name":"KnownFolderNone","features":[7]},{"name":"KnownFolderOther","features":[7]},{"name":"KnownFolderPictures","features":[7]},{"name":"KnownFolderVideos","features":[7]},{"name":"LARGE_MCB","features":[4,7,3,9]},{"name":"LCN_CHECKSUM_VALID","features":[7]},{"name":"LCN_WEAK_REFERENCE_BUFFER","features":[7]},{"name":"LCN_WEAK_REFERENCE_CREATE_INPUT_BUFFER","features":[7]},{"name":"LCN_WEAK_REFERENCE_VALID","features":[7]},{"name":"LINK_TRACKING_INFORMATION","features":[7]},{"name":"LINK_TRACKING_INFORMATION_TYPE","features":[7]},{"name":"LX_FILE_CASE_SENSITIVE_DIR","features":[7]},{"name":"LX_FILE_METADATA_DEVICE_ID_EA_NAME","features":[7]},{"name":"LX_FILE_METADATA_GID_EA_NAME","features":[7]},{"name":"LX_FILE_METADATA_HAS_DEVICE_ID","features":[7]},{"name":"LX_FILE_METADATA_HAS_GID","features":[7]},{"name":"LX_FILE_METADATA_HAS_MODE","features":[7]},{"name":"LX_FILE_METADATA_HAS_UID","features":[7]},{"name":"LX_FILE_METADATA_MODE_EA_NAME","features":[7]},{"name":"LX_FILE_METADATA_UID_EA_NAME","features":[7]},{"name":"LessThan","features":[7]},{"name":"MAP_DISABLE_PAGEFAULT_CLUSTERING","features":[7]},{"name":"MAP_HIGH_PRIORITY","features":[7]},{"name":"MAP_NO_READ","features":[7]},{"name":"MAP_WAIT","features":[7]},{"name":"MAXIMUM_LEADBYTES","features":[7]},{"name":"MAX_UNICODE_STACK_BUFFER_LENGTH","features":[7]},{"name":"MCB","features":[4,7,3,9]},{"name":"MCB_FLAG_RAISE_ON_ALLOCATION_FAILURE","features":[7]},{"name":"MEMORY_INFORMATION_CLASS","features":[7]},{"name":"MEMORY_RANGE_ENTRY","features":[7]},{"name":"MFT_ENUM_DATA","features":[7]},{"name":"MMFLUSH_TYPE","features":[7]},{"name":"MM_FORCE_CLOSED_DATA","features":[7]},{"name":"MM_FORCE_CLOSED_IMAGE","features":[7]},{"name":"MM_FORCE_CLOSED_LATER_OK","features":[7]},{"name":"MM_IS_FILE_SECTION_ACTIVE_DATA","features":[7]},{"name":"MM_IS_FILE_SECTION_ACTIVE_IMAGE","features":[7]},{"name":"MM_IS_FILE_SECTION_ACTIVE_USER","features":[7]},{"name":"MM_PREFETCH_FLAGS","features":[7]},{"name":"MSV1_0_AVID","features":[7]},{"name":"MSV1_0_ENUMUSERS_REQUEST","features":[7,25]},{"name":"MSV1_0_ENUMUSERS_RESPONSE","features":[7,3,25]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST","features":[7,3,25]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST_V1","features":[7,3,25]},{"name":"MSV1_0_GETCHALLENRESP_RESPONSE","features":[7,3,25,9]},{"name":"MSV1_0_GETUSERINFO_REQUEST","features":[7,3,25]},{"name":"MSV1_0_GETUSERINFO_RESPONSE","features":[7,3,25]},{"name":"MSV1_0_LM20_CHALLENGE_REQUEST","features":[7,25]},{"name":"MSV1_0_LM20_CHALLENGE_RESPONSE","features":[7,25]},{"name":"MakeSignature","features":[7]},{"name":"MapSecurityError","features":[7,3]},{"name":"MemoryBasicInformation","features":[7]},{"name":"MemoryType64KPage","features":[7]},{"name":"MemoryTypeCustom","features":[7]},{"name":"MemoryTypeHugePage","features":[7]},{"name":"MemoryTypeLargePage","features":[7]},{"name":"MemoryTypeMax","features":[7]},{"name":"MemoryTypeNonPaged","features":[7]},{"name":"MemoryTypePaged","features":[7]},{"name":"MmCanFileBeTruncated","features":[4,7,3]},{"name":"MmDoesFileHaveUserWritableReferences","features":[4,7]},{"name":"MmFlushForDelete","features":[7]},{"name":"MmFlushForWrite","features":[7]},{"name":"MmFlushImageSection","features":[4,7,3]},{"name":"MmForceSectionClosed","features":[4,7,3]},{"name":"MmForceSectionClosedEx","features":[4,7,3]},{"name":"MmGetMaximumFileSectionSize","features":[7]},{"name":"MmIsFileSectionActive","features":[4,7,3]},{"name":"MmIsRecursiveIoFault","features":[7,3]},{"name":"MmMdlPagesAreZero","features":[4,7]},{"name":"MmPrefetchPages","features":[4,7,5,3,6,23,8,9,10]},{"name":"MmSetAddressRangeModified","features":[7,3]},{"name":"MsvAvChannelBindings","features":[7]},{"name":"MsvAvDnsComputerName","features":[7]},{"name":"MsvAvDnsDomainName","features":[7]},{"name":"MsvAvDnsTreeName","features":[7]},{"name":"MsvAvEOL","features":[7]},{"name":"MsvAvFlags","features":[7]},{"name":"MsvAvNbComputerName","features":[7]},{"name":"MsvAvNbDomainName","features":[7]},{"name":"MsvAvRestrictions","features":[7]},{"name":"MsvAvTargetName","features":[7]},{"name":"MsvAvTimestamp","features":[7]},{"name":"NETWORK_APP_INSTANCE_ECP_CONTEXT","features":[7]},{"name":"NETWORK_APP_INSTANCE_VERSION_ECP_CONTEXT","features":[7]},{"name":"NETWORK_OPEN_ECP_CONTEXT","features":[7]},{"name":"NETWORK_OPEN_ECP_CONTEXT_V0","features":[7]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_COLLAPSING","features":[7]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_DURABILITY","features":[7]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_OPLOCKS","features":[7]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_BUFFERED_SYNCHRONOUS_IO_HACK","features":[7]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_MAX_EOF_HACK","features":[7]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_REQ_MUTUAL_AUTH","features":[7]},{"name":"NETWORK_OPEN_ECP_OUT_FLAG_RET_MUTUAL_AUTH","features":[7]},{"name":"NETWORK_OPEN_INTEGRITY_QUALIFIER","features":[7]},{"name":"NETWORK_OPEN_LOCATION_QUALIFIER","features":[7]},{"name":"NFS_OPEN_ECP_CONTEXT","features":[7,3,17]},{"name":"NLSTABLEINFO","features":[7]},{"name":"NO_8DOT3_NAME_PRESENT","features":[7]},{"name":"NTCREATEFILE_CREATE_DISPOSITION","features":[7]},{"name":"NTCREATEFILE_CREATE_OPTIONS","features":[7]},{"name":"NetworkOpenIntegrityAny","features":[7]},{"name":"NetworkOpenIntegrityEncrypted","features":[7]},{"name":"NetworkOpenIntegrityMaximum","features":[7]},{"name":"NetworkOpenIntegrityNone","features":[7]},{"name":"NetworkOpenIntegritySigned","features":[7]},{"name":"NetworkOpenLocationAny","features":[7]},{"name":"NetworkOpenLocationLoopback","features":[7]},{"name":"NetworkOpenLocationRemote","features":[7]},{"name":"NotifyTypeCreate","features":[7]},{"name":"NotifyTypeRetired","features":[7]},{"name":"NtAccessCheckAndAuditAlarm","features":[7,3,6]},{"name":"NtAccessCheckByTypeAndAuditAlarm","features":[7,3,6]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarm","features":[7,3,6]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarmByHandle","features":[7,3,6]},{"name":"NtAdjustGroupsToken","features":[7,3,6]},{"name":"NtAdjustPrivilegesToken","features":[7,3,6]},{"name":"NtAllocateVirtualMemory","features":[7,3]},{"name":"NtAllocateVirtualMemoryEx","features":[7,3,22]},{"name":"NtCancelIoFileEx","features":[7,3,8]},{"name":"NtCloseObjectAuditAlarm","features":[7,3]},{"name":"NtCreateDirectoryObject","features":[4,7,3]},{"name":"NtCreateEvent","features":[4,7,3,9]},{"name":"NtCreateFile","features":[4,7,3,23,8]},{"name":"NtCreateSection","features":[4,7,3]},{"name":"NtCreateSectionEx","features":[4,7,3,22]},{"name":"NtDeleteFile","features":[4,7,3]},{"name":"NtDeleteObjectAuditAlarm","features":[7,3]},{"name":"NtDuplicateObject","features":[7,3]},{"name":"NtDuplicateToken","features":[4,7,3,6]},{"name":"NtFilterToken","features":[7,3,6]},{"name":"NtFlushBuffersFile","features":[7,3,8]},{"name":"NtFlushBuffersFileEx","features":[7,3,8]},{"name":"NtFlushVirtualMemory","features":[7,3,8]},{"name":"NtFreeVirtualMemory","features":[7,3]},{"name":"NtFsControlFile","features":[7,3,8]},{"name":"NtImpersonateAnonymousToken","features":[7,3]},{"name":"NtLockFile","features":[7,3,8]},{"name":"NtNotifyChangeKey","features":[7,3,8]},{"name":"NtOpenDirectoryObject","features":[4,7,3]},{"name":"NtOpenFile","features":[4,7,3,8]},{"name":"NtOpenObjectAuditAlarm","features":[7,3,6]},{"name":"NtOpenProcessToken","features":[7,3]},{"name":"NtOpenProcessTokenEx","features":[7,3]},{"name":"NtOpenSymbolicLinkObject","features":[4,7,3]},{"name":"NtOpenThreadToken","features":[7,3]},{"name":"NtOpenThreadTokenEx","features":[7,3]},{"name":"NtPrivilegeCheck","features":[7,3,6]},{"name":"NtPrivilegeObjectAuditAlarm","features":[7,3,6]},{"name":"NtPrivilegedServiceAuditAlarm","features":[7,3,6]},{"name":"NtQueryDirectoryFile","features":[7,3,8]},{"name":"NtQueryDirectoryFileEx","features":[7,3,8]},{"name":"NtQueryDirectoryObject","features":[7,3]},{"name":"NtQueryEaFile","features":[7,3,8]},{"name":"NtQueryFullAttributesFile","features":[4,7,3]},{"name":"NtQueryInformationByName","features":[4,7,3,8]},{"name":"NtQueryInformationFile","features":[7,3,8]},{"name":"NtQueryInformationToken","features":[7,3,6]},{"name":"NtQueryQuotaInformationFile","features":[7,3,6,8]},{"name":"NtQuerySecurityObject","features":[7,3,6]},{"name":"NtQuerySymbolicLinkObject","features":[7,3]},{"name":"NtQueryVirtualMemory","features":[7,3]},{"name":"NtQueryVolumeInformationFile","features":[7,3,8]},{"name":"NtReadFile","features":[7,3,8]},{"name":"NtSetEaFile","features":[7,3,8]},{"name":"NtSetEvent","features":[7,3]},{"name":"NtSetInformationFile","features":[7,3,8]},{"name":"NtSetInformationToken","features":[7,3,6]},{"name":"NtSetInformationVirtualMemory","features":[7,3]},{"name":"NtSetQuotaInformationFile","features":[7,3,8]},{"name":"NtSetSecurityObject","features":[7,3,6]},{"name":"NtSetVolumeInformationFile","features":[7,3,8]},{"name":"NtUnlockFile","features":[7,3,8]},{"name":"NtWriteFile","features":[7,3,8]},{"name":"NtfsLinkTrackingInformation","features":[7]},{"name":"OPEN_REPARSE_LIST","features":[7,9]},{"name":"OPEN_REPARSE_LIST_ENTRY","features":[7,9]},{"name":"OPEN_REPARSE_POINT_OVERRIDE_CREATE_OPTION","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_ALWAYS","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_EXISTS","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_NOT_EXISTS","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT_ALWAYS","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT_ALWAYS","features":[7]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_FINAL_COMPONENT","features":[7]},{"name":"OPEN_REPARSE_POINT_RETURN_REPARSE_DATA_BUFFER","features":[7]},{"name":"OPEN_REPARSE_POINT_TAG_ENCOUNTERED","features":[7]},{"name":"OPEN_REPARSE_POINT_VERSION_EX","features":[7]},{"name":"OPLOCK_FLAG_BACK_OUT_ATOMIC_OPLOCK","features":[7]},{"name":"OPLOCK_FLAG_BREAKING_FOR_SHARING_VIOLATION","features":[7]},{"name":"OPLOCK_FLAG_CLOSING_DELETE_ON_CLOSE","features":[7]},{"name":"OPLOCK_FLAG_COMPLETE_IF_OPLOCKED","features":[7]},{"name":"OPLOCK_FLAG_IGNORE_OPLOCK_KEYS","features":[7]},{"name":"OPLOCK_FLAG_OPLOCK_KEY_CHECK_ONLY","features":[7]},{"name":"OPLOCK_FLAG_PARENT_OBJECT","features":[7]},{"name":"OPLOCK_FLAG_REMOVING_FILE_OR_LINK","features":[7]},{"name":"OPLOCK_FSCTRL_FLAG_ALL_KEYS_MATCH","features":[7]},{"name":"OPLOCK_KEY_CONTEXT","features":[7]},{"name":"OPLOCK_KEY_ECP_CONTEXT","features":[7]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_INTERIM_TIMEOUT","features":[7]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_TERMINATED","features":[7]},{"name":"OPLOCK_NOTIFY_PARAMS","features":[4,7,5,3,6,8,9,10]},{"name":"OPLOCK_NOTIFY_REASON","features":[7]},{"name":"OPLOCK_UPPER_FLAG_CHECK_NO_BREAK","features":[7]},{"name":"OPLOCK_UPPER_FLAG_NOTIFY_REFRESH_READ","features":[7]},{"name":"ObInsertObject","features":[4,7,5,3,6]},{"name":"ObIsKernelHandle","features":[7,3]},{"name":"ObMakeTemporaryObject","features":[7]},{"name":"ObOpenObjectByPointer","features":[4,7,5,3,6]},{"name":"ObOpenObjectByPointerWithTag","features":[4,7,5,3,6]},{"name":"ObQueryNameString","features":[4,7,3]},{"name":"ObQueryObjectAuditingByHandle","features":[7,3]},{"name":"PACQUIRE_FOR_LAZY_WRITE","features":[7,3]},{"name":"PACQUIRE_FOR_LAZY_WRITE_EX","features":[7,3]},{"name":"PACQUIRE_FOR_READ_AHEAD","features":[7,3]},{"name":"PALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[7,3]},{"name":"PASYNC_READ_COMPLETION_CALLBACK","features":[7,3]},{"name":"PCC_POST_DEFERRED_WRITE","features":[7]},{"name":"PCHECK_FOR_TRAVERSE_ACCESS","features":[4,7,3,6]},{"name":"PCOMPLETE_LOCK_IRP_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"PDIRTY_PAGE_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"PFILTER_REPORT_CHANGE","features":[7,3]},{"name":"PFLUSH_TO_LSN","features":[7]},{"name":"PFN_FSRTLTEARDOWNPERSTREAMCONTEXTS","features":[4,7,3,9]},{"name":"PFREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[7,3]},{"name":"PFSRTL_EXTRA_CREATE_PARAMETER_CLEANUP_CALLBACK","features":[7]},{"name":"PFSRTL_STACK_OVERFLOW_ROUTINE","features":[4,7,3,9]},{"name":"PFS_FILTER_CALLBACK","features":[4,7,5,3,6,8,9,10]},{"name":"PFS_FILTER_COMPLETION_CALLBACK","features":[4,7,5,3,6,8,9,10]},{"name":"PHYSICAL_EXTENTS_DESCRIPTOR","features":[7]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR","features":[7]},{"name":"PHYSICAL_MEMORY_RUN","features":[7]},{"name":"PIN_CALLER_TRACKS_DIRTY_DATA","features":[7]},{"name":"PIN_EXCLUSIVE","features":[7]},{"name":"PIN_HIGH_PRIORITY","features":[7]},{"name":"PIN_IF_BCB","features":[7]},{"name":"PIN_NO_READ","features":[7]},{"name":"PIN_VERIFY_REQUIRED","features":[7]},{"name":"PIN_WAIT","features":[7]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[7]},{"name":"POPLOCK_FS_PREPOST_IRP","features":[4,7,5,3,6,8,9,10]},{"name":"POPLOCK_NOTIFY_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"POPLOCK_WAIT_COMPLETE_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"PO_CB_AC_STATUS","features":[7]},{"name":"PO_CB_BUTTON_COLLISION","features":[7]},{"name":"PO_CB_LID_SWITCH_STATE","features":[7]},{"name":"PO_CB_PROCESSOR_POWER_POLICY","features":[7]},{"name":"PO_CB_SYSTEM_POWER_POLICY","features":[7]},{"name":"PO_CB_SYSTEM_STATE_LOCK","features":[7]},{"name":"PQUERY_LOG_USAGE","features":[7]},{"name":"PQUERY_VIRTUAL_MEMORY_CALLBACK","features":[7,3]},{"name":"PREFETCH_OPEN_ECP_CONTEXT","features":[7]},{"name":"PREFIX_TABLE","features":[4,7,9]},{"name":"PREFIX_TABLE_ENTRY","features":[4,7,9]},{"name":"PRELEASE_FROM_LAZY_WRITE","features":[7]},{"name":"PRELEASE_FROM_READ_AHEAD","features":[7]},{"name":"PRTL_ALLOCATE_STRING_ROUTINE","features":[7]},{"name":"PRTL_FREE_STRING_ROUTINE","features":[7]},{"name":"PRTL_HEAP_COMMIT_ROUTINE","features":[7,3]},{"name":"PRTL_REALLOCATE_STRING_ROUTINE","features":[7]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE","features":[7,3]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[7,3]},{"name":"PSMP_MAXIMUM_SYSAPP_CLAIM_VALUES","features":[7]},{"name":"PSMP_MINIMUM_SYSAPP_CLAIM_VALUES","features":[7]},{"name":"PUBLIC_BCB","features":[7]},{"name":"PUNLOCK_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"PURGE_WITH_ACTIVE_VIEWS","features":[7]},{"name":"PfxFindPrefix","features":[4,7,9]},{"name":"PfxInitialize","features":[4,7,9]},{"name":"PfxInsertPrefix","features":[4,7,3,9]},{"name":"PfxRemovePrefix","features":[4,7,9]},{"name":"PoQueueShutdownWorkItem","features":[4,7,3,9]},{"name":"PsAssignImpersonationToken","features":[4,7,3]},{"name":"PsChargePoolQuota","features":[4,7]},{"name":"PsChargeProcessPoolQuota","features":[4,7,3]},{"name":"PsDereferenceImpersonationToken","features":[7]},{"name":"PsDereferencePrimaryToken","features":[7]},{"name":"PsDisableImpersonation","features":[4,7,3,6]},{"name":"PsGetProcessExitTime","features":[7]},{"name":"PsGetThreadProcess","features":[4,7]},{"name":"PsImpersonateClient","features":[4,7,3,6]},{"name":"PsIsDiskCountersEnabled","features":[7,3]},{"name":"PsIsSystemThread","features":[4,7,3]},{"name":"PsIsThreadTerminating","features":[4,7,3]},{"name":"PsLookupProcessByProcessId","features":[4,7,3]},{"name":"PsLookupThreadByThreadId","features":[4,7,3]},{"name":"PsReferenceImpersonationToken","features":[4,7,3,6]},{"name":"PsReferencePrimaryToken","features":[4,7]},{"name":"PsRestoreImpersonation","features":[4,7,3,6]},{"name":"PsReturnPoolQuota","features":[4,7]},{"name":"PsRevertToSelf","features":[7]},{"name":"PsUpdateDiskCounters","features":[4,7]},{"name":"QUERY_BAD_RANGES_INPUT","features":[7,24]},{"name":"QUERY_DIRECT_ACCESS_DATA_EXTENTS","features":[7]},{"name":"QUERY_DIRECT_ACCESS_EXTENTS","features":[7]},{"name":"QUERY_DIRECT_ACCESS_IMAGE_EXTENTS","features":[7]},{"name":"QUERY_ON_CREATE_EA_INFORMATION","features":[7]},{"name":"QUERY_ON_CREATE_ECP_CONTEXT","features":[7]},{"name":"QUERY_ON_CREATE_FILE_LX_INFORMATION","features":[7]},{"name":"QUERY_ON_CREATE_FILE_STAT_INFORMATION","features":[7]},{"name":"QUERY_PATH_REQUEST","features":[4,7,5,3,6]},{"name":"QUERY_PATH_REQUEST_EX","features":[4,7,5,3,6]},{"name":"QUERY_PATH_RESPONSE","features":[7]},{"name":"QUERY_VIRTUAL_MEMORY_CALLBACK","features":[7,3]},{"name":"QoCFileEaInformation","features":[7]},{"name":"QoCFileLxInformation","features":[7]},{"name":"QoCFileStatInformation","features":[7]},{"name":"QuerySecurityContextToken","features":[7]},{"name":"READ_AHEAD_PARAMETERS","features":[7]},{"name":"READ_LIST","features":[4,7,5,3,6,23,8,9,10]},{"name":"READ_USN_JOURNAL_DATA","features":[7]},{"name":"REFS_COMPRESSION_FORMATS","features":[7]},{"name":"REFS_COMPRESSION_FORMAT_LZ4","features":[7]},{"name":"REFS_COMPRESSION_FORMAT_MAX","features":[7]},{"name":"REFS_COMPRESSION_FORMAT_UNCOMPRESSED","features":[7]},{"name":"REFS_COMPRESSION_FORMAT_ZSTD","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_CAA","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_MAA","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_NONE","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_SAA","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER_EX","features":[7]},{"name":"REFS_DEALLOCATE_RANGES_RANGE","features":[7]},{"name":"REFS_QUERY_VOLUME_COMPRESSION_INFO_OUTPUT_BUFFER","features":[7]},{"name":"REFS_QUERY_VOLUME_DEDUP_INFO_OUTPUT_BUFFER","features":[7,3]},{"name":"REFS_REMOVE_HARDLINK_BACKPOINTER","features":[7]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAGS","features":[7]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_COMPRESS_SYNC","features":[7]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_MAX","features":[7]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_INPUT_BUFFER","features":[7]},{"name":"REFS_SET_VOLUME_DEDUP_INFO_INPUT_BUFFER","features":[7,3]},{"name":"REFS_STREAM_EXTENT","features":[7]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC32","features":[7]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC64","features":[7]},{"name":"REFS_STREAM_EXTENT_PROPERTY_GHOSTED","features":[7]},{"name":"REFS_STREAM_EXTENT_PROPERTY_READONLY","features":[7]},{"name":"REFS_STREAM_EXTENT_PROPERTY_SPARSE","features":[7]},{"name":"REFS_STREAM_EXTENT_PROPERTY_STREAM_RESERVED","features":[7]},{"name":"REFS_STREAM_EXTENT_PROPERTY_VALID","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER_ENTRY","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_MANAGEMENT_INPUT_BUFFER","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CLEAR_SHADOW_BTREE","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CREATE","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_INVALID","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_LIST","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_MAX","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_QUERY_DELTAS","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_REVERT","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_SET_SHADOW_BTREE","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_INPUT_BUFFER","features":[7]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_OUTPUT_BUFFER","features":[7]},{"name":"REFS_VOLUME_COUNTER_INFO_INPUT_BUFFER","features":[7,3]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[7]},{"name":"REMOTE_LINK_TRACKING_INFORMATION","features":[7]},{"name":"REMOTE_PROTOCOL_FLAG_INTEGRITY","features":[7]},{"name":"REMOTE_PROTOCOL_FLAG_LOOPBACK","features":[7]},{"name":"REMOTE_PROTOCOL_FLAG_MUTUAL_AUTH","features":[7]},{"name":"REMOTE_PROTOCOL_FLAG_OFFLINE","features":[7]},{"name":"REMOTE_PROTOCOL_FLAG_PERSISTENT_HANDLE","features":[7]},{"name":"REMOTE_PROTOCOL_FLAG_PRIVACY","features":[7]},{"name":"REMOVED_8DOT3_NAME","features":[7]},{"name":"REPARSE_DATA_BUFFER","features":[7]},{"name":"REPARSE_DATA_BUFFER_EX","features":[7,23]},{"name":"REPARSE_DATA_EX_FLAG_GIVEN_TAG_OR_NONE","features":[7]},{"name":"REPARSE_INDEX_KEY","features":[7]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[7]},{"name":"RETURN_NON_NT_USER_SESSION_KEY","features":[7]},{"name":"RETURN_PRIMARY_LOGON_DOMAINNAME","features":[7]},{"name":"RETURN_PRIMARY_USERNAME","features":[7]},{"name":"RETURN_RESERVED_PARAMETER","features":[7]},{"name":"RKF_BYPASS_ECP_CONTEXT","features":[7]},{"name":"RPI_SMB2_SERVERCAP_DFS","features":[7]},{"name":"RPI_SMB2_SERVERCAP_DIRECTORY_LEASING","features":[7]},{"name":"RPI_SMB2_SERVERCAP_ENCRYPTION_AWARE","features":[7]},{"name":"RPI_SMB2_SERVERCAP_LARGEMTU","features":[7]},{"name":"RPI_SMB2_SERVERCAP_LEASING","features":[7]},{"name":"RPI_SMB2_SERVERCAP_MULTICHANNEL","features":[7]},{"name":"RPI_SMB2_SERVERCAP_PERSISTENT_HANDLES","features":[7]},{"name":"RPI_SMB2_SHARECAP_ACCESS_BASED_DIRECTORY_ENUM","features":[7]},{"name":"RPI_SMB2_SHARECAP_ASYMMETRIC_SCALEOUT","features":[7]},{"name":"RPI_SMB2_SHARECAP_CLUSTER","features":[7]},{"name":"RPI_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[7]},{"name":"RPI_SMB2_SHARECAP_DFS","features":[7]},{"name":"RPI_SMB2_SHARECAP_ENCRYPTED","features":[7]},{"name":"RPI_SMB2_SHARECAP_IDENTITY_REMOTING","features":[7]},{"name":"RPI_SMB2_SHARECAP_SCALEOUT","features":[7]},{"name":"RPI_SMB2_SHARECAP_TIMEWARP","features":[7]},{"name":"RPI_SMB2_SHARETYPE_DISK","features":[7]},{"name":"RPI_SMB2_SHARETYPE_PIPE","features":[7]},{"name":"RPI_SMB2_SHARETYPE_PRINT","features":[7]},{"name":"RTL_ALLOCATE_STRING_ROUTINE","features":[7]},{"name":"RTL_DUPLICATE_UNICODE_STRING_ALLOCATE_NULL_STRING","features":[7]},{"name":"RTL_DUPLICATE_UNICODE_STRING_NULL_TERMINATE","features":[7]},{"name":"RTL_FREE_STRING_ROUTINE","features":[7]},{"name":"RTL_HEAP_COMMIT_ROUTINE","features":[7,3]},{"name":"RTL_HEAP_MEMORY_LIMIT_CURRENT_VERSION","features":[7]},{"name":"RTL_HEAP_MEMORY_LIMIT_DATA","features":[7]},{"name":"RTL_HEAP_MEMORY_LIMIT_INFO","features":[7]},{"name":"RTL_HEAP_PARAMETERS","features":[7,3]},{"name":"RTL_MEMORY_TYPE","features":[7]},{"name":"RTL_NLS_STATE","features":[7]},{"name":"RTL_REALLOCATE_STRING_ROUTINE","features":[7]},{"name":"RTL_SEGMENT_HEAP_MEMORY_SOURCE","features":[7,3]},{"name":"RTL_SEGMENT_HEAP_PARAMETERS","features":[7,3]},{"name":"RTL_SEGMENT_HEAP_VA_CALLBACKS","features":[7,3]},{"name":"RTL_SYSTEM_VOLUME_INFORMATION_FOLDER","features":[7]},{"name":"RtlAbsoluteToSelfRelativeSD","features":[7,3,6]},{"name":"RtlAddAccessAllowedAce","features":[7,3,6]},{"name":"RtlAddAccessAllowedAceEx","features":[7,3,6]},{"name":"RtlAddAce","features":[7,3,6]},{"name":"RtlAllocateAndInitializeSid","features":[7,3,6]},{"name":"RtlAllocateAndInitializeSidEx","features":[7,3,6]},{"name":"RtlAllocateHeap","features":[7]},{"name":"RtlAppendStringToString","features":[7,3,9]},{"name":"RtlCompareAltitudes","features":[7,3]},{"name":"RtlCompareMemoryUlong","features":[7]},{"name":"RtlCompressBuffer","features":[7,3]},{"name":"RtlCompressChunks","features":[7,3]},{"name":"RtlCopyLuid","features":[7,3]},{"name":"RtlCopySid","features":[7,3,6]},{"name":"RtlCreateAcl","features":[7,3,6]},{"name":"RtlCreateHeap","features":[7,3]},{"name":"RtlCreateServiceSid","features":[7,3,6]},{"name":"RtlCreateSystemVolumeInformationFolder","features":[7,3]},{"name":"RtlCreateUnicodeString","features":[7,3]},{"name":"RtlCreateVirtualAccountSid","features":[7,3,6]},{"name":"RtlCustomCPToUnicodeN","features":[7,3]},{"name":"RtlDecompressBuffer","features":[7,3]},{"name":"RtlDecompressBufferEx","features":[7,3]},{"name":"RtlDecompressBufferEx2","features":[7,3]},{"name":"RtlDecompressChunks","features":[7,3]},{"name":"RtlDecompressFragment","features":[7,3]},{"name":"RtlDecompressFragmentEx","features":[7,3]},{"name":"RtlDeleteAce","features":[7,3,6]},{"name":"RtlDescribeChunk","features":[7,3]},{"name":"RtlDestroyHeap","features":[7]},{"name":"RtlDowncaseUnicodeString","features":[7,3]},{"name":"RtlDuplicateUnicodeString","features":[7,3]},{"name":"RtlEqualPrefixSid","features":[7,3,6]},{"name":"RtlEqualSid","features":[7,3,6]},{"name":"RtlFindUnicodePrefix","features":[4,7,3]},{"name":"RtlFreeHeap","features":[7]},{"name":"RtlFreeSid","features":[7,6]},{"name":"RtlGenerate8dot3Name","features":[7,3]},{"name":"RtlGetAce","features":[7,3,6]},{"name":"RtlGetCompressionWorkSpaceSize","features":[7,3]},{"name":"RtlGetDaclSecurityDescriptor","features":[7,3,6]},{"name":"RtlGetGroupSecurityDescriptor","features":[7,3,6]},{"name":"RtlGetOwnerSecurityDescriptor","features":[7,3,6]},{"name":"RtlGetSaclSecurityDescriptor","features":[7,3,6]},{"name":"RtlIdentifierAuthoritySid","features":[7,6]},{"name":"RtlIdnToAscii","features":[7,3]},{"name":"RtlIdnToNameprepUnicode","features":[7,3]},{"name":"RtlIdnToUnicode","features":[7,3]},{"name":"RtlInitCodePageTable","features":[7]},{"name":"RtlInitUnicodeStringEx","features":[7,3]},{"name":"RtlInitializeSid","features":[7,3,6]},{"name":"RtlInitializeSidEx","features":[7,3,6]},{"name":"RtlInitializeUnicodePrefix","features":[4,7,3]},{"name":"RtlInsertUnicodePrefix","features":[4,7,3]},{"name":"RtlIsCloudFilesPlaceholder","features":[7,3]},{"name":"RtlIsNonEmptyDirectoryReparsePointAllowed","features":[7,3]},{"name":"RtlIsNormalizedString","features":[7,3]},{"name":"RtlIsPartialPlaceholder","features":[7,3]},{"name":"RtlIsPartialPlaceholderFileHandle","features":[7,3]},{"name":"RtlIsPartialPlaceholderFileInfo","features":[7,3]},{"name":"RtlIsSandboxedToken","features":[4,7,3,6]},{"name":"RtlIsValidOemCharacter","features":[7,3]},{"name":"RtlLengthRequiredSid","features":[7]},{"name":"RtlLengthSid","features":[7,6]},{"name":"RtlMultiByteToUnicodeN","features":[7,3]},{"name":"RtlMultiByteToUnicodeSize","features":[7,3]},{"name":"RtlNextUnicodePrefix","features":[4,7,3]},{"name":"RtlNormalizeString","features":[7,3]},{"name":"RtlNtStatusToDosErrorNoTeb","features":[7,3]},{"name":"RtlOemStringToCountedUnicodeString","features":[7,3,9]},{"name":"RtlOemStringToUnicodeString","features":[7,3,9]},{"name":"RtlOemToUnicodeN","features":[7,3]},{"name":"RtlPrefixString","features":[7,3,9]},{"name":"RtlQueryPackageIdentity","features":[7,3]},{"name":"RtlQueryPackageIdentityEx","features":[7,3]},{"name":"RtlQueryProcessPlaceholderCompatibilityMode","features":[7]},{"name":"RtlQueryThreadPlaceholderCompatibilityMode","features":[7]},{"name":"RtlRandom","features":[7]},{"name":"RtlRandomEx","features":[7]},{"name":"RtlRemoveUnicodePrefix","features":[4,7,3]},{"name":"RtlReplaceSidInSd","features":[7,3,6]},{"name":"RtlReserveChunk","features":[7,3]},{"name":"RtlSecondsSince1970ToTime","features":[7]},{"name":"RtlSecondsSince1980ToTime","features":[7]},{"name":"RtlSelfRelativeToAbsoluteSD","features":[7,3,6]},{"name":"RtlSetGroupSecurityDescriptor","features":[7,3,6]},{"name":"RtlSetOwnerSecurityDescriptor","features":[7,3,6]},{"name":"RtlSetProcessPlaceholderCompatibilityMode","features":[7]},{"name":"RtlSetThreadPlaceholderCompatibilityMode","features":[7]},{"name":"RtlSubAuthorityCountSid","features":[7,6]},{"name":"RtlSubAuthoritySid","features":[7,6]},{"name":"RtlTimeToSecondsSince1980","features":[7,3]},{"name":"RtlUnicodeStringToCountedOemString","features":[7,3,9]},{"name":"RtlUnicodeToCustomCPN","features":[7,3]},{"name":"RtlUnicodeToMultiByteN","features":[7,3]},{"name":"RtlUnicodeToOemN","features":[7,3]},{"name":"RtlUpcaseUnicodeStringToCountedOemString","features":[7,3,9]},{"name":"RtlUpcaseUnicodeStringToOemString","features":[7,3,9]},{"name":"RtlUpcaseUnicodeToCustomCPN","features":[7,3]},{"name":"RtlUpcaseUnicodeToMultiByteN","features":[7,3]},{"name":"RtlUpcaseUnicodeToOemN","features":[7,3]},{"name":"RtlValidSid","features":[7,3,6]},{"name":"RtlValidateUnicodeString","features":[7,3]},{"name":"RtlxOemStringToUnicodeSize","features":[7,9]},{"name":"RtlxUnicodeStringToOemSize","features":[7,3]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[7]},{"name":"SECURITY_CLIENT_CONTEXT","features":[7,3,6]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[7,25]},{"name":"SEC_DTLS_MTU","features":[7]},{"name":"SEC_FLAGS","features":[7]},{"name":"SEC_NEGOTIATION_INFO","features":[7]},{"name":"SEC_PRESHAREDKEY","features":[7]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[7]},{"name":"SEGMENT_HEAP_FLG_USE_PAGE_HEAP","features":[7]},{"name":"SEGMENT_HEAP_PARAMETERS_VERSION","features":[7]},{"name":"SEGMENT_HEAP_PARAMS_VALID_FLAGS","features":[7]},{"name":"SEMAPHORE_INCREMENT","features":[7]},{"name":"SET_CACHED_RUNS_STATE_INPUT_BUFFER","features":[7,3]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[7]},{"name":"SE_AUDIT_INFO","features":[7,3,6]},{"name":"SE_AUDIT_OPERATION","features":[7]},{"name":"SE_BACKUP_PRIVILEGES_CHECKED","features":[7]},{"name":"SE_DACL_UNTRUSTED","features":[7]},{"name":"SE_EXPORTS","features":[7,3,6]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE","features":[7,3]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[4,7,3]},{"name":"SE_SERVER_SECURITY","features":[7]},{"name":"SPECIAL_ENCRYPTED_OPEN","features":[7]},{"name":"SRV_INSTANCE_TYPE","features":[7]},{"name":"SRV_OPEN_ECP_CONTEXT","features":[7,3,17]},{"name":"SRV_OPEN_ECP_CONTEXT_VERSION_2","features":[7]},{"name":"SUPPORTED_FS_FEATURES_BYPASS_IO","features":[7]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_READ","features":[7]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_WRITE","features":[7]},{"name":"SUPPORTED_FS_FEATURES_QUERY_OPEN","features":[7]},{"name":"SYMLINK_DIRECTORY","features":[7]},{"name":"SYMLINK_FILE","features":[7]},{"name":"SYMLINK_FLAG_RELATIVE","features":[7]},{"name":"SYMLINK_RESERVED_MASK","features":[7]},{"name":"SYSTEM_PAGE_PRIORITY_BITS","features":[7]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[7]},{"name":"SeAccessCheckFromState","features":[7,3,6]},{"name":"SeAccessCheckFromStateEx","features":[7,3,6]},{"name":"SeAdjustAccessStateForAccessConstraints","features":[4,7,5,3,6]},{"name":"SeAdjustAccessStateForTrustLabel","features":[4,7,5,3,6]},{"name":"SeAdjustObjectSecurity","features":[4,7,3,6]},{"name":"SeAppendPrivileges","features":[4,7,5,3,6]},{"name":"SeAuditFipsCryptoSelftests","features":[7,3]},{"name":"SeAuditHardLinkCreation","features":[7,3]},{"name":"SeAuditHardLinkCreationWithTransaction","features":[7,3]},{"name":"SeAuditTransactionStateChange","features":[7]},{"name":"SeAuditingAnyFileEventsWithContext","features":[4,7,3,6]},{"name":"SeAuditingAnyFileEventsWithContextEx","features":[4,7,3,6]},{"name":"SeAuditingFileEvents","features":[7,3,6]},{"name":"SeAuditingFileEventsWithContext","features":[4,7,3,6]},{"name":"SeAuditingFileEventsWithContextEx","features":[4,7,3,6]},{"name":"SeAuditingFileOrGlobalEvents","features":[4,7,3,6]},{"name":"SeAuditingHardLinkEvents","features":[7,3,6]},{"name":"SeAuditingHardLinkEventsWithContext","features":[4,7,3,6]},{"name":"SeCaptureSubjectContextEx","features":[4,7,6]},{"name":"SeCheckForCriticalAceRemoval","features":[4,7,3,6]},{"name":"SeCreateClientSecurity","features":[4,7,3,6]},{"name":"SeCreateClientSecurityFromSubjectContext","features":[4,7,3,6]},{"name":"SeDeleteClientSecurity","features":[7,3,6]},{"name":"SeDeleteObjectAuditAlarm","features":[7,3]},{"name":"SeDeleteObjectAuditAlarmWithTransaction","features":[7,3]},{"name":"SeExamineSacl","features":[7,3,6]},{"name":"SeFilterToken","features":[7,3,6]},{"name":"SeFreePrivileges","features":[7,3,6]},{"name":"SeImpersonateClient","features":[4,7,3,6]},{"name":"SeImpersonateClientEx","features":[4,7,3,6]},{"name":"SeLocateProcessImageName","features":[4,7,3]},{"name":"SeMarkLogonSessionForTerminationNotification","features":[7,3]},{"name":"SeMarkLogonSessionForTerminationNotificationEx","features":[4,7,3]},{"name":"SeOpenObjectAuditAlarm","features":[4,7,5,3,6]},{"name":"SeOpenObjectAuditAlarmWithTransaction","features":[4,7,5,3,6]},{"name":"SeOpenObjectForDeleteAuditAlarm","features":[4,7,5,3,6]},{"name":"SeOpenObjectForDeleteAuditAlarmWithTransaction","features":[4,7,5,3,6]},{"name":"SePrivilegeCheck","features":[4,7,3,6]},{"name":"SeQueryAuthenticationIdToken","features":[7,3]},{"name":"SeQueryInformationToken","features":[7,3,6]},{"name":"SeQuerySecurityDescriptorInfo","features":[7,3,6]},{"name":"SeQueryServerSiloToken","features":[4,7,3]},{"name":"SeQuerySessionIdToken","features":[7,3]},{"name":"SeQuerySessionIdTokenEx","features":[7,3]},{"name":"SeRegisterLogonSessionTerminatedRoutine","features":[7,3]},{"name":"SeRegisterLogonSessionTerminatedRoutineEx","features":[7,3]},{"name":"SeReportSecurityEventWithSubCategory","features":[7,3,25]},{"name":"SeSetAccessStateGenericMapping","features":[4,7,5,3,6]},{"name":"SeSetSecurityDescriptorInfo","features":[4,7,3,6]},{"name":"SeSetSecurityDescriptorInfoEx","features":[4,7,3,6]},{"name":"SeShouldCheckForAccessRightsFromParent","features":[4,7,5,3,6]},{"name":"SeTokenFromAccessInformation","features":[7,3,6]},{"name":"SeTokenIsAdmin","features":[7,3]},{"name":"SeTokenIsRestricted","features":[7,3]},{"name":"SeTokenIsWriteRestricted","features":[7,3]},{"name":"SeTokenType","features":[7,6]},{"name":"SeUnregisterLogonSessionTerminatedRoutine","features":[7,3]},{"name":"SeUnregisterLogonSessionTerminatedRoutineEx","features":[7,3]},{"name":"SecBuffer","features":[7]},{"name":"SecBufferDesc","features":[7]},{"name":"SecHandle","features":[7]},{"name":"SecLookupAccountName","features":[7,3,6]},{"name":"SecLookupAccountSid","features":[7,3,6]},{"name":"SecLookupWellKnownSid","features":[7,3,6]},{"name":"SecMakeSPN","features":[7,3]},{"name":"SecMakeSPNEx","features":[7,3]},{"name":"SecMakeSPNEx2","features":[7,3]},{"name":"SetContextAttributesW","features":[7]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[7]},{"name":"SharedVirtualDiskHandleState","features":[7]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[7]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[7]},{"name":"SharedVirtualDiskHandleStateNone","features":[7]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[7]},{"name":"SharedVirtualDiskSupportType","features":[7]},{"name":"SharedVirtualDisksSupported","features":[7]},{"name":"SharedVirtualDisksUnsupported","features":[7]},{"name":"SrvInstanceTypeCsv","features":[7]},{"name":"SrvInstanceTypePrimary","features":[7]},{"name":"SrvInstanceTypeSBL","features":[7]},{"name":"SrvInstanceTypeSR","features":[7]},{"name":"SrvInstanceTypeUndefined","features":[7]},{"name":"SrvInstanceTypeVSMB","features":[7]},{"name":"SspiAcceptSecurityContextAsync","features":[4,7]},{"name":"SspiAcquireCredentialsHandleAsyncA","features":[4,7,25]},{"name":"SspiAcquireCredentialsHandleAsyncW","features":[4,7,3,25]},{"name":"SspiAsyncNotifyCallback","features":[4,7]},{"name":"SspiCreateAsyncContext","features":[4,7]},{"name":"SspiDeleteSecurityContextAsync","features":[4,7]},{"name":"SspiFreeAsyncContext","features":[4,7]},{"name":"SspiFreeCredentialsHandleAsync","features":[4,7]},{"name":"SspiGetAsyncCallStatus","features":[4,7]},{"name":"SspiInitializeSecurityContextAsyncA","features":[4,7]},{"name":"SspiInitializeSecurityContextAsyncW","features":[4,7,3]},{"name":"SspiReinitAsyncContext","features":[4,7,3]},{"name":"SspiSetAsyncNotifyCallback","features":[4,7]},{"name":"SyncTypeCreateSection","features":[7]},{"name":"SyncTypeOther","features":[7]},{"name":"TOKEN_AUDIT_NO_CHILD_PROCESS","features":[7]},{"name":"TOKEN_AUDIT_REDIRECTION_TRUST","features":[7]},{"name":"TOKEN_DO_NOT_USE_GLOBAL_ATTRIBS_FOR_QUERY","features":[7]},{"name":"TOKEN_ENFORCE_REDIRECTION_TRUST","features":[7]},{"name":"TOKEN_HAS_BACKUP_PRIVILEGE","features":[7]},{"name":"TOKEN_HAS_IMPERSONATE_PRIVILEGE","features":[7]},{"name":"TOKEN_HAS_OWN_CLAIM_ATTRIBUTES","features":[7]},{"name":"TOKEN_HAS_RESTORE_PRIVILEGE","features":[7]},{"name":"TOKEN_HAS_TRAVERSE_PRIVILEGE","features":[7]},{"name":"TOKEN_IS_FILTERED","features":[7]},{"name":"TOKEN_IS_RESTRICTED","features":[7]},{"name":"TOKEN_LEARNING_MODE_LOGGING","features":[7]},{"name":"TOKEN_LOWBOX","features":[7]},{"name":"TOKEN_NOT_LOW","features":[7]},{"name":"TOKEN_NO_CHILD_PROCESS","features":[7]},{"name":"TOKEN_NO_CHILD_PROCESS_UNLESS_SECURE","features":[7]},{"name":"TOKEN_PERMISSIVE_LEARNING_MODE","features":[7]},{"name":"TOKEN_PRIVATE_NAMESPACE","features":[7]},{"name":"TOKEN_SANDBOX_INERT","features":[7]},{"name":"TOKEN_SESSION_NOT_REFERENCED","features":[7]},{"name":"TOKEN_UIACCESS","features":[7]},{"name":"TOKEN_VIRTUALIZE_ALLOWED","features":[7]},{"name":"TOKEN_VIRTUALIZE_ENABLED","features":[7]},{"name":"TOKEN_WRITE_RESTRICTED","features":[7]},{"name":"TUNNEL","features":[4,7,3,9]},{"name":"UNICODE_PREFIX_TABLE","features":[4,7,3]},{"name":"UNICODE_PREFIX_TABLE_ENTRY","features":[4,7,3]},{"name":"UNINITIALIZE_CACHE_MAPS","features":[7]},{"name":"USE_PRIMARY_PASSWORD","features":[7]},{"name":"USN_DELETE_FLAG_DELETE","features":[7]},{"name":"USN_JOURNAL_DATA","features":[7]},{"name":"USN_RECORD","features":[7]},{"name":"VACB_MAPPING_GRANULARITY","features":[7]},{"name":"VACB_OFFSET_SHIFT","features":[7]},{"name":"VALID_INHERIT_FLAGS","features":[7]},{"name":"VCN_RANGE_INPUT_BUFFER","features":[7]},{"name":"VIRTUAL_MEMORY_INFORMATION_CLASS","features":[7]},{"name":"VOLSNAPCONTROLTYPE","features":[7]},{"name":"VOLUME_REFS_INFO_BUFFER","features":[7]},{"name":"VerifySignature","features":[7]},{"name":"VmPrefetchInformation","features":[7]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_LAYER","features":[7]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REGISTERED_LAYER","features":[7]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REMOTE_LAYER","features":[7]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_SCRATCH","features":[7]},{"name":"ZwAccessCheckAndAuditAlarm","features":[7,3,6]},{"name":"ZwAccessCheckByTypeAndAuditAlarm","features":[7,3,6]},{"name":"ZwAccessCheckByTypeResultListAndAuditAlarm","features":[7,3,6]},{"name":"ZwAccessCheckByTypeResultListAndAuditAlarmByHandle","features":[7,3,6]},{"name":"ZwAdjustGroupsToken","features":[7,3,6]},{"name":"ZwAdjustPrivilegesToken","features":[7,3,6]},{"name":"ZwAllocateVirtualMemory","features":[7,3]},{"name":"ZwAllocateVirtualMemoryEx","features":[7,3,22]},{"name":"ZwCancelIoFileEx","features":[7,3,8]},{"name":"ZwCloseObjectAuditAlarm","features":[7,3]},{"name":"ZwCreateDirectoryObject","features":[4,7,3]},{"name":"ZwCreateEvent","features":[4,7,3,9]},{"name":"ZwCreateSectionEx","features":[4,7,3,22]},{"name":"ZwDeleteFile","features":[4,7,3]},{"name":"ZwDeleteObjectAuditAlarm","features":[7,3]},{"name":"ZwDuplicateObject","features":[7,3]},{"name":"ZwDuplicateToken","features":[4,7,3,6]},{"name":"ZwFilterToken","features":[7,3,6]},{"name":"ZwFlushBuffersFile","features":[7,3,8]},{"name":"ZwFlushBuffersFileEx","features":[7,3,8]},{"name":"ZwFlushVirtualMemory","features":[7,3,8]},{"name":"ZwFreeVirtualMemory","features":[7,3]},{"name":"ZwFsControlFile","features":[7,3,8]},{"name":"ZwImpersonateAnonymousToken","features":[7,3]},{"name":"ZwLockFile","features":[7,3,8]},{"name":"ZwNotifyChangeKey","features":[7,3,8]},{"name":"ZwOpenDirectoryObject","features":[4,7,3]},{"name":"ZwOpenObjectAuditAlarm","features":[7,3,6]},{"name":"ZwOpenProcessToken","features":[7,3]},{"name":"ZwOpenProcessTokenEx","features":[7,3]},{"name":"ZwOpenThreadToken","features":[7,3]},{"name":"ZwOpenThreadTokenEx","features":[7,3]},{"name":"ZwPrivilegeCheck","features":[7,3,6]},{"name":"ZwPrivilegeObjectAuditAlarm","features":[7,3,6]},{"name":"ZwPrivilegedServiceAuditAlarm","features":[7,3,6]},{"name":"ZwQueryDirectoryFile","features":[7,3,8]},{"name":"ZwQueryDirectoryFileEx","features":[7,3,8]},{"name":"ZwQueryDirectoryObject","features":[7,3]},{"name":"ZwQueryEaFile","features":[7,3,8]},{"name":"ZwQueryFullAttributesFile","features":[4,7,3]},{"name":"ZwQueryInformationToken","features":[7,3,6]},{"name":"ZwQueryObject","features":[4,7,3]},{"name":"ZwQueryQuotaInformationFile","features":[7,3,6,8]},{"name":"ZwQuerySecurityObject","features":[7,3,6]},{"name":"ZwQueryVirtualMemory","features":[7,3]},{"name":"ZwQueryVolumeInformationFile","features":[7,3,8]},{"name":"ZwSetEaFile","features":[7,3,8]},{"name":"ZwSetEvent","features":[7,3]},{"name":"ZwSetInformationToken","features":[7,3,6]},{"name":"ZwSetInformationVirtualMemory","features":[7,3]},{"name":"ZwSetQuotaInformationFile","features":[7,3,8]},{"name":"ZwSetSecurityObject","features":[7,3,6]},{"name":"ZwSetVolumeInformationFile","features":[7,3,8]},{"name":"ZwUnlockFile","features":[7,3,8]},{"name":"_LCN_WEAK_REFERENCE_STATE","features":[7]},{"name":"_REFS_STREAM_EXTENT_PROPERTIES","features":[7]}],"346":[{"name":"FLTFL_CALLBACK_DATA_DIRTY","features":[26]},{"name":"FLTFL_CALLBACK_DATA_DRAINING_IO","features":[26]},{"name":"FLTFL_CALLBACK_DATA_FAST_IO_OPERATION","features":[26]},{"name":"FLTFL_CALLBACK_DATA_FS_FILTER_OPERATION","features":[26]},{"name":"FLTFL_CALLBACK_DATA_GENERATED_IO","features":[26]},{"name":"FLTFL_CALLBACK_DATA_IRP_OPERATION","features":[26]},{"name":"FLTFL_CALLBACK_DATA_NEW_SYSTEM_BUFFER","features":[26]},{"name":"FLTFL_CALLBACK_DATA_POST_OPERATION","features":[26]},{"name":"FLTFL_CALLBACK_DATA_REISSUED_IO","features":[26]},{"name":"FLTFL_CALLBACK_DATA_REISSUE_MASK","features":[26]},{"name":"FLTFL_CALLBACK_DATA_SYSTEM_BUFFER","features":[26]},{"name":"FLTFL_CONTEXT_REGISTRATION_NO_EXACT_SIZE_MATCH","features":[26]},{"name":"FLTFL_FILE_NAME_PARSED_EXTENSION","features":[26]},{"name":"FLTFL_FILE_NAME_PARSED_FINAL_COMPONENT","features":[26]},{"name":"FLTFL_FILE_NAME_PARSED_PARENT_DIR","features":[26]},{"name":"FLTFL_FILE_NAME_PARSED_STREAM","features":[26]},{"name":"FLTFL_FILTER_UNLOAD_MANDATORY","features":[26]},{"name":"FLTFL_INSTANCE_SETUP_AUTOMATIC_ATTACHMENT","features":[26]},{"name":"FLTFL_INSTANCE_SETUP_DETACHED_VOLUME","features":[26]},{"name":"FLTFL_INSTANCE_SETUP_MANUAL_ATTACHMENT","features":[26]},{"name":"FLTFL_INSTANCE_SETUP_NEWLY_MOUNTED_VOLUME","features":[26]},{"name":"FLTFL_INSTANCE_TEARDOWN_FILTER_UNLOAD","features":[26]},{"name":"FLTFL_INSTANCE_TEARDOWN_INTERNAL_ERROR","features":[26]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANDATORY_FILTER_UNLOAD","features":[26]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANUAL","features":[26]},{"name":"FLTFL_INSTANCE_TEARDOWN_VOLUME_DISMOUNT","features":[26]},{"name":"FLTFL_IO_OPERATION_DO_NOT_UPDATE_BYTE_OFFSET","features":[26]},{"name":"FLTFL_IO_OPERATION_NON_CACHED","features":[26]},{"name":"FLTFL_IO_OPERATION_PAGING","features":[26]},{"name":"FLTFL_IO_OPERATION_SYNCHRONOUS_PAGING","features":[26]},{"name":"FLTFL_NORMALIZE_NAME_CASE_SENSITIVE","features":[26]},{"name":"FLTFL_NORMALIZE_NAME_DESTINATION_FILE_NAME","features":[26]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_CACHED_IO","features":[26]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_CACHED_NON_PAGING_IO","features":[26]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_DASD_IO","features":[26]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_PAGING_IO","features":[26]},{"name":"FLTFL_POST_OPERATION_DRAINING","features":[26]},{"name":"FLTFL_REGISTRATION_DO_NOT_SUPPORT_SERVICE_STOP","features":[26]},{"name":"FLTFL_REGISTRATION_SUPPORT_DAX_VOLUME","features":[26]},{"name":"FLTFL_REGISTRATION_SUPPORT_NPFS_MSFS","features":[26]},{"name":"FLTFL_REGISTRATION_SUPPORT_WCOS","features":[26]},{"name":"FLTTCFL_AUTO_REPARSE","features":[26]},{"name":"FLT_ALLOCATE_CALLBACK_DATA_PREALLOCATE_ALL_MEMORY","features":[26]},{"name":"FLT_CALLBACK_DATA","features":[4,26,5,3,6,8,9,10]},{"name":"FLT_CALLBACK_DATA_QUEUE","features":[4,26,5,3,6,8,9,10]},{"name":"FLT_CALLBACK_DATA_QUEUE_FLAGS","features":[26]},{"name":"FLT_CONTEXT_END","features":[26]},{"name":"FLT_CONTEXT_REGISTRATION","features":[4,26]},{"name":"FLT_CREATEFILE_TARGET_ECP_CONTEXT","features":[26,3]},{"name":"FLT_FILE_CONTEXT","features":[26]},{"name":"FLT_FILE_NAME_ALLOW_QUERY_ON_REPARSE","features":[26]},{"name":"FLT_FILE_NAME_DO_NOT_CACHE","features":[26]},{"name":"FLT_FILE_NAME_INFORMATION","features":[26,3]},{"name":"FLT_FILE_NAME_NORMALIZED","features":[26]},{"name":"FLT_FILE_NAME_OPENED","features":[26]},{"name":"FLT_FILE_NAME_QUERY_ALWAYS_ALLOW_CACHE_LOOKUP","features":[26]},{"name":"FLT_FILE_NAME_QUERY_CACHE_ONLY","features":[26]},{"name":"FLT_FILE_NAME_QUERY_DEFAULT","features":[26]},{"name":"FLT_FILE_NAME_QUERY_FILESYSTEM_ONLY","features":[26]},{"name":"FLT_FILE_NAME_REQUEST_FROM_CURRENT_PROVIDER","features":[26]},{"name":"FLT_FILE_NAME_SHORT","features":[26]},{"name":"FLT_FLUSH_TYPE_DATA_SYNC_ONLY","features":[26]},{"name":"FLT_FLUSH_TYPE_FILE_DATA_ONLY","features":[26]},{"name":"FLT_FLUSH_TYPE_FLUSH_AND_PURGE","features":[26]},{"name":"FLT_FLUSH_TYPE_NO_SYNC","features":[26]},{"name":"FLT_INSTANCE_CONTEXT","features":[26]},{"name":"FLT_INTERNAL_OPERATION_COUNT","features":[26]},{"name":"FLT_IO_PARAMETER_BLOCK","features":[4,26,5,3,6,8,9,10]},{"name":"FLT_MAX_DEVICE_REPARSE_ATTEMPTS","features":[26]},{"name":"FLT_NAME_CONTROL","features":[26,3]},{"name":"FLT_OPERATION_REGISTRATION","features":[4,26,5,3,6,8,9,10]},{"name":"FLT_PARAMETERS","features":[4,26,5,3,6,8,9,10]},{"name":"FLT_PORT_CONNECT","features":[26]},{"name":"FLT_POSTOP_CALLBACK_STATUS","features":[26]},{"name":"FLT_POSTOP_DISALLOW_FSFILTER_IO","features":[26]},{"name":"FLT_POSTOP_FINISHED_PROCESSING","features":[26]},{"name":"FLT_POSTOP_MORE_PROCESSING_REQUIRED","features":[26]},{"name":"FLT_PREOP_CALLBACK_STATUS","features":[26]},{"name":"FLT_PREOP_COMPLETE","features":[26]},{"name":"FLT_PREOP_DISALLOW_FASTIO","features":[26]},{"name":"FLT_PREOP_DISALLOW_FSFILTER_IO","features":[26]},{"name":"FLT_PREOP_PENDING","features":[26]},{"name":"FLT_PREOP_SUCCESS_NO_CALLBACK","features":[26]},{"name":"FLT_PREOP_SUCCESS_WITH_CALLBACK","features":[26]},{"name":"FLT_PREOP_SYNCHRONIZE","features":[26]},{"name":"FLT_PUSH_LOCK_DISABLE_AUTO_BOOST","features":[26]},{"name":"FLT_PUSH_LOCK_ENABLE_AUTO_BOOST","features":[26]},{"name":"FLT_PUSH_LOCK_VALID_FLAGS","features":[26]},{"name":"FLT_REGISTRATION","features":[4,26,5,3,6,27,8,9,10]},{"name":"FLT_REGISTRATION_VERSION","features":[26]},{"name":"FLT_REGISTRATION_VERSION_0200","features":[26]},{"name":"FLT_REGISTRATION_VERSION_0201","features":[26]},{"name":"FLT_REGISTRATION_VERSION_0202","features":[26]},{"name":"FLT_REGISTRATION_VERSION_0203","features":[26]},{"name":"FLT_RELATED_CONTEXTS","features":[26]},{"name":"FLT_RELATED_CONTEXTS_EX","features":[26]},{"name":"FLT_RELATED_OBJECTS","features":[4,26,5,3,6,8,9,10]},{"name":"FLT_SECTION_CONTEXT","features":[26]},{"name":"FLT_SET_CONTEXT_KEEP_IF_EXISTS","features":[26]},{"name":"FLT_SET_CONTEXT_OPERATION","features":[26]},{"name":"FLT_SET_CONTEXT_REPLACE_IF_EXISTS","features":[26]},{"name":"FLT_STREAMHANDLE_CONTEXT","features":[26]},{"name":"FLT_STREAM_CONTEXT","features":[26]},{"name":"FLT_TAG_DATA_BUFFER","features":[26]},{"name":"FLT_TRANSACTION_CONTEXT","features":[26]},{"name":"FLT_VALID_FILE_NAME_FLAGS","features":[26]},{"name":"FLT_VALID_FILE_NAME_FORMATS","features":[26]},{"name":"FLT_VALID_FILE_NAME_QUERY_METHODS","features":[26]},{"name":"FLT_VOLUME_CONTEXT","features":[26]},{"name":"FLT_VOLUME_PROPERTIES","features":[26,3]},{"name":"FltAcknowledgeEcp","features":[26]},{"name":"FltAcquirePushLockExclusive","features":[26]},{"name":"FltAcquirePushLockExclusiveEx","features":[26]},{"name":"FltAcquirePushLockShared","features":[26]},{"name":"FltAcquirePushLockSharedEx","features":[26]},{"name":"FltAcquireResourceExclusive","features":[4,26,9]},{"name":"FltAcquireResourceShared","features":[4,26,9]},{"name":"FltAddOpenReparseEntry","features":[4,26,5,3,6,8,9,10]},{"name":"FltAdjustDeviceStackSizeForIoRedirection","features":[26,3]},{"name":"FltAllocateCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltAllocateCallbackDataEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltAllocateContext","features":[4,26,3]},{"name":"FltAllocateDeferredIoWorkItem","features":[26]},{"name":"FltAllocateExtraCreateParameter","features":[26,3]},{"name":"FltAllocateExtraCreateParameterFromLookasideList","features":[26,3]},{"name":"FltAllocateExtraCreateParameterList","features":[4,26,3]},{"name":"FltAllocateFileLock","features":[4,26,5,3,6,8,9,10]},{"name":"FltAllocateGenericWorkItem","features":[26]},{"name":"FltAllocatePoolAlignedWithTag","features":[4,26]},{"name":"FltApplyPriorityInfoThread","features":[4,26,3]},{"name":"FltAttachVolume","features":[26,3]},{"name":"FltAttachVolumeAtAltitude","features":[26,3]},{"name":"FltBuildDefaultSecurityDescriptor","features":[26,3,6]},{"name":"FltCancelFileOpen","features":[4,26,5,3,6,8,9,10]},{"name":"FltCancelIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltCancellableWaitForMultipleObjects","features":[4,26,5,3,6,8,9,10]},{"name":"FltCancellableWaitForSingleObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltCbdqDisable","features":[4,26,5,3,6,8,9,10]},{"name":"FltCbdqEnable","features":[4,26,5,3,6,8,9,10]},{"name":"FltCbdqInitialize","features":[4,26,5,3,6,8,9,10]},{"name":"FltCbdqInsertIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltCbdqRemoveIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltCbdqRemoveNextIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltCheckAndGrowNameControl","features":[26,3]},{"name":"FltCheckLockForReadAccess","features":[4,26,5,3,6,8,9,10]},{"name":"FltCheckLockForWriteAccess","features":[4,26,5,3,6,8,9,10]},{"name":"FltCheckOplock","features":[4,26,5,3,6,8,9,10]},{"name":"FltCheckOplockEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltClearCallbackDataDirty","features":[4,26,5,3,6,8,9,10]},{"name":"FltClearCancelCompletion","features":[4,26,5,3,6,8,9,10]},{"name":"FltClose","features":[26,3]},{"name":"FltCloseClientPort","features":[26]},{"name":"FltCloseCommunicationPort","features":[26]},{"name":"FltCloseSectionForDataScan","features":[26,3]},{"name":"FltCommitComplete","features":[4,26,3]},{"name":"FltCommitFinalizeComplete","features":[4,26,3]},{"name":"FltCompareInstanceAltitudes","features":[26]},{"name":"FltCompletePendedPostOperation","features":[4,26,5,3,6,8,9,10]},{"name":"FltCompletePendedPreOperation","features":[4,26,5,3,6,8,9,10]},{"name":"FltCopyOpenReparseList","features":[4,26,5,3,6,8,9,10]},{"name":"FltCreateCommunicationPort","features":[4,26,3]},{"name":"FltCreateFile","features":[4,26,3,8]},{"name":"FltCreateFileEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltCreateFileEx2","features":[4,26,5,3,6,8,9,10]},{"name":"FltCreateMailslotFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltCreateNamedPipeFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltCreateSectionForDataScan","features":[4,26,5,3,6,8,9,10]},{"name":"FltCreateSystemVolumeInformationFolder","features":[26,3]},{"name":"FltCurrentBatchOplock","features":[26,3]},{"name":"FltCurrentOplock","features":[26,3]},{"name":"FltCurrentOplockH","features":[26,3]},{"name":"FltDecodeParameters","features":[4,26,5,3,6,8,9,10]},{"name":"FltDeleteContext","features":[26]},{"name":"FltDeleteExtraCreateParameterLookasideList","features":[26]},{"name":"FltDeleteFileContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltDeleteInstanceContext","features":[26,3]},{"name":"FltDeletePushLock","features":[26]},{"name":"FltDeleteStreamContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltDeleteStreamHandleContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltDeleteTransactionContext","features":[4,26,3]},{"name":"FltDeleteVolumeContext","features":[26,3]},{"name":"FltDetachVolume","features":[26,3]},{"name":"FltDeviceIoControlFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltDoCompletionProcessingWhenSafe","features":[4,26,5,3,6,8,9,10]},{"name":"FltEnlistInTransaction","features":[4,26,3]},{"name":"FltEnumerateFilterInformation","features":[26,3,27]},{"name":"FltEnumerateFilters","features":[26,3]},{"name":"FltEnumerateInstanceInformationByDeviceObject","features":[4,26,5,3,6,27,8,9,10]},{"name":"FltEnumerateInstanceInformationByFilter","features":[26,3,27]},{"name":"FltEnumerateInstanceInformationByVolume","features":[26,3,27]},{"name":"FltEnumerateInstanceInformationByVolumeName","features":[26,3,27]},{"name":"FltEnumerateInstances","features":[26,3]},{"name":"FltEnumerateVolumeInformation","features":[26,3,27]},{"name":"FltEnumerateVolumes","features":[26,3]},{"name":"FltFastIoMdlRead","features":[4,26,5,3,6,8,9,10]},{"name":"FltFastIoMdlReadComplete","features":[4,26,5,3,6,8,9,10]},{"name":"FltFastIoMdlWriteComplete","features":[4,26,5,3,6,8,9,10]},{"name":"FltFastIoPrepareMdlWrite","features":[4,26,5,3,6,8,9,10]},{"name":"FltFindExtraCreateParameter","features":[4,26,3]},{"name":"FltFlushBuffers","features":[4,26,5,3,6,8,9,10]},{"name":"FltFlushBuffers2","features":[4,26,5,3,6,8,9,10]},{"name":"FltFreeCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltFreeDeferredIoWorkItem","features":[26]},{"name":"FltFreeExtraCreateParameter","features":[26]},{"name":"FltFreeExtraCreateParameterList","features":[4,26]},{"name":"FltFreeFileLock","features":[4,26,5,3,6,8,9,10]},{"name":"FltFreeGenericWorkItem","features":[26]},{"name":"FltFreeOpenReparseList","features":[4,26]},{"name":"FltFreePoolAlignedWithTag","features":[26]},{"name":"FltFreeSecurityDescriptor","features":[26,6]},{"name":"FltFsControlFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetActivityIdCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetBottomInstance","features":[26,3]},{"name":"FltGetContexts","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetContextsEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetDestinationFileNameInformation","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetDeviceObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetDiskDeviceObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetEcpListFromCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetFileContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetFileNameInformation","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetFileNameInformationUnsafe","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetFileSystemType","features":[26,3,27]},{"name":"FltGetFilterFromInstance","features":[26,3]},{"name":"FltGetFilterFromName","features":[26,3]},{"name":"FltGetFilterInformation","features":[26,3,27]},{"name":"FltGetFsZeroingOffset","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetInstanceContext","features":[26,3]},{"name":"FltGetInstanceInformation","features":[26,3,27]},{"name":"FltGetIoAttributionHandleFromCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetIoPriorityHint","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetIoPriorityHintFromCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetIoPriorityHintFromFileObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetIoPriorityHintFromThread","features":[4,26]},{"name":"FltGetIrpName","features":[26]},{"name":"FltGetLowerInstance","features":[26,3]},{"name":"FltGetNewSystemBufferAddress","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetNextExtraCreateParameter","features":[4,26,3]},{"name":"FltGetRequestorProcess","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetRequestorProcessId","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetRequestorProcessIdEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetRequestorSessionId","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetRoutineAddress","features":[26]},{"name":"FltGetSectionContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetStreamContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetStreamHandleContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetSwappedBufferMdlAddress","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetTopInstance","features":[26,3]},{"name":"FltGetTransactionContext","features":[4,26,3]},{"name":"FltGetTunneledName","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetUpperInstance","features":[26,3]},{"name":"FltGetVolumeContext","features":[26,3]},{"name":"FltGetVolumeFromDeviceObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetVolumeFromFileObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltGetVolumeFromInstance","features":[26,3]},{"name":"FltGetVolumeFromName","features":[26,3]},{"name":"FltGetVolumeGuidName","features":[26,3]},{"name":"FltGetVolumeInformation","features":[26,3,27]},{"name":"FltGetVolumeInstanceFromName","features":[26,3]},{"name":"FltGetVolumeName","features":[26,3]},{"name":"FltGetVolumeProperties","features":[26,3]},{"name":"FltInitExtraCreateParameterLookasideList","features":[26]},{"name":"FltInitializeFileLock","features":[4,26,5,3,6,8,9,10]},{"name":"FltInitializeOplock","features":[26]},{"name":"FltInitializePushLock","features":[26]},{"name":"FltInsertExtraCreateParameter","features":[4,26,3]},{"name":"FltIs32bitProcess","features":[4,26,5,3,6,8,9,10]},{"name":"FltIsCallbackDataDirty","features":[4,26,5,3,6,8,9,10]},{"name":"FltIsDirectory","features":[4,26,5,3,6,8,9,10]},{"name":"FltIsEcpAcknowledged","features":[26,3]},{"name":"FltIsEcpFromUserMode","features":[26,3]},{"name":"FltIsFltMgrVolumeDeviceObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltIsIoCanceled","features":[4,26,5,3,6,8,9,10]},{"name":"FltIsIoRedirectionAllowed","features":[26,3]},{"name":"FltIsIoRedirectionAllowedForOperation","features":[4,26,5,3,6,8,9,10]},{"name":"FltIsOperationSynchronous","features":[4,26,5,3,6,8,9,10]},{"name":"FltIsVolumeSnapshot","features":[26,3]},{"name":"FltIsVolumeWritable","features":[26,3]},{"name":"FltLoadFilter","features":[26,3]},{"name":"FltLockUserBuffer","features":[4,26,5,3,6,8,9,10]},{"name":"FltNotifyFilterChangeDirectory","features":[4,26,5,3,6,8,9,10]},{"name":"FltObjectDereference","features":[26]},{"name":"FltObjectReference","features":[26,3]},{"name":"FltOpenVolume","features":[4,26,5,3,6,8,9,10]},{"name":"FltOplockBreakH","features":[4,26,5,3,6,8,9,10]},{"name":"FltOplockBreakToNone","features":[4,26,5,3,6,8,9,10]},{"name":"FltOplockBreakToNoneEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltOplockFsctrl","features":[4,26,5,3,6,8,9,10]},{"name":"FltOplockFsctrlEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltOplockIsFastIoPossible","features":[26,3]},{"name":"FltOplockIsSharedRequest","features":[4,26,5,3,6,8,9,10]},{"name":"FltOplockKeysEqual","features":[4,26,5,3,6,8,9,10]},{"name":"FltParseFileName","features":[26,3]},{"name":"FltParseFileNameInformation","features":[26,3]},{"name":"FltPerformAsynchronousIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltPerformSynchronousIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltPrePrepareComplete","features":[4,26,3]},{"name":"FltPrepareComplete","features":[4,26,3]},{"name":"FltPrepareToReuseEcp","features":[26]},{"name":"FltProcessFileLock","features":[4,26,5,3,6,8,9,10]},{"name":"FltPropagateActivityIdToThread","features":[4,26,5,3,6,8,9,10]},{"name":"FltPropagateIrpExtension","features":[4,26,5,3,6,8,9,10]},{"name":"FltPurgeFileNameInformationCache","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueryDirectoryFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueryDirectoryFileEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueryEaFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueryInformationByName","features":[4,26,5,3,8]},{"name":"FltQueryInformationFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueryQuotaInformationFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltQuerySecurityObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueryVolumeInformation","features":[26,3,8]},{"name":"FltQueryVolumeInformationFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueueDeferredIoWorkItem","features":[4,26,5,3,6,8,9,10]},{"name":"FltQueueGenericWorkItem","features":[26,5,3]},{"name":"FltReadFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltReadFileEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltReferenceContext","features":[26]},{"name":"FltReferenceFileNameInformation","features":[26,3]},{"name":"FltRegisterFilter","features":[4,26,5,3,6,27,8,9,10]},{"name":"FltRegisterForDataScan","features":[26,3]},{"name":"FltReissueSynchronousIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltReleaseContext","features":[26]},{"name":"FltReleaseContexts","features":[26]},{"name":"FltReleaseContextsEx","features":[26]},{"name":"FltReleaseFileNameInformation","features":[26,3]},{"name":"FltReleasePushLock","features":[26]},{"name":"FltReleasePushLockEx","features":[26]},{"name":"FltReleaseResource","features":[4,26,9]},{"name":"FltRemoveExtraCreateParameter","features":[4,26,3]},{"name":"FltRemoveOpenReparseEntry","features":[4,26,5,3,6,8,9,10]},{"name":"FltRequestFileInfoOnCreateCompletion","features":[4,26,5,3,6,8,9,10]},{"name":"FltRequestOperationStatusCallback","features":[4,26,5,3,6,8,9,10]},{"name":"FltRetainSwappedBufferMdlAddress","features":[4,26,5,3,6,8,9,10]},{"name":"FltRetrieveFileInfoOnCreateCompletion","features":[4,26,5,3,6,8,9,10]},{"name":"FltRetrieveFileInfoOnCreateCompletionEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltRetrieveIoPriorityInfo","features":[4,26,5,3,6,8,9,10]},{"name":"FltReuseCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltRollbackComplete","features":[4,26,3]},{"name":"FltRollbackEnlistment","features":[4,26,3]},{"name":"FltSendMessage","features":[26,3]},{"name":"FltSetActivityIdCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetCallbackDataDirty","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetCancelCompletion","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetEaFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetEcpListIntoCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetFileContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetFsZeroingOffset","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetFsZeroingOffsetRequired","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetInformationFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetInstanceContext","features":[26,3]},{"name":"FltSetIoPriorityHintIntoCallbackData","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetIoPriorityHintIntoFileObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetIoPriorityHintIntoThread","features":[4,26,3]},{"name":"FltSetQuotaInformationFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetSecurityObject","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetStreamContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetStreamHandleContext","features":[4,26,5,3,6,8,9,10]},{"name":"FltSetTransactionContext","features":[4,26,3]},{"name":"FltSetVolumeContext","features":[26,3]},{"name":"FltSetVolumeInformation","features":[26,3,8]},{"name":"FltStartFiltering","features":[26,3]},{"name":"FltSupportsFileContexts","features":[4,26,5,3,6,8,9,10]},{"name":"FltSupportsFileContextsEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltSupportsStreamContexts","features":[4,26,5,3,6,8,9,10]},{"name":"FltSupportsStreamHandleContexts","features":[4,26,5,3,6,8,9,10]},{"name":"FltTagFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltTagFileEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltUninitializeFileLock","features":[4,26,5,3,6,8,9,10]},{"name":"FltUninitializeOplock","features":[26]},{"name":"FltUnloadFilter","features":[26,3]},{"name":"FltUnregisterFilter","features":[26]},{"name":"FltUntagFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltVetoBypassIo","features":[4,26,5,3,6,8,9,10]},{"name":"FltWriteFile","features":[4,26,5,3,6,8,9,10]},{"name":"FltWriteFileEx","features":[4,26,5,3,6,8,9,10]},{"name":"FltpTraceRedirectedFileIo","features":[4,26,5,3,6,8,9,10]},{"name":"GUID_ECP_FLT_CREATEFILE_TARGET","features":[26]},{"name":"IRP_MJ_ACQUIRE_FOR_CC_FLUSH","features":[26]},{"name":"IRP_MJ_ACQUIRE_FOR_MOD_WRITE","features":[26]},{"name":"IRP_MJ_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[26]},{"name":"IRP_MJ_FAST_IO_CHECK_IF_POSSIBLE","features":[26]},{"name":"IRP_MJ_MDL_READ","features":[26]},{"name":"IRP_MJ_MDL_READ_COMPLETE","features":[26]},{"name":"IRP_MJ_MDL_WRITE_COMPLETE","features":[26]},{"name":"IRP_MJ_NETWORK_QUERY_OPEN","features":[26]},{"name":"IRP_MJ_OPERATION_END","features":[26]},{"name":"IRP_MJ_PREPARE_MDL_WRITE","features":[26]},{"name":"IRP_MJ_QUERY_OPEN","features":[26]},{"name":"IRP_MJ_RELEASE_FOR_CC_FLUSH","features":[26]},{"name":"IRP_MJ_RELEASE_FOR_MOD_WRITE","features":[26]},{"name":"IRP_MJ_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[26]},{"name":"IRP_MJ_VOLUME_DISMOUNT","features":[26]},{"name":"IRP_MJ_VOLUME_MOUNT","features":[26]},{"name":"PFLTOPLOCK_PREPOST_CALLBACKDATA_ROUTINE","features":[4,26,5,3,6,8,9,10]},{"name":"PFLTOPLOCK_WAIT_COMPLETE_ROUTINE","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_CALLBACK_DATA_QUEUE_ACQUIRE","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_CALLBACK_DATA_QUEUE_COMPLETE_CANCELED_IO","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_CALLBACK_DATA_QUEUE_INSERT_IO","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_CALLBACK_DATA_QUEUE_PEEK_NEXT_IO","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_CALLBACK_DATA_QUEUE_RELEASE","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_CALLBACK_DATA_QUEUE_REMOVE_IO","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_COMPLETED_ASYNC_IO_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_COMPLETE_CANCELED_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_COMPLETE_LOCK_CALLBACK_DATA_ROUTINE","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_CONNECT_NOTIFY","features":[26,3]},{"name":"PFLT_CONTEXT","features":[26]},{"name":"PFLT_CONTEXT_ALLOCATE_CALLBACK","features":[4,26]},{"name":"PFLT_CONTEXT_CLEANUP_CALLBACK","features":[26]},{"name":"PFLT_CONTEXT_FREE_CALLBACK","features":[26]},{"name":"PFLT_DEFERRED_IO_WORKITEM","features":[26]},{"name":"PFLT_DEFERRED_IO_WORKITEM_ROUTINE","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_DISCONNECT_NOTIFY","features":[26]},{"name":"PFLT_FILTER","features":[26]},{"name":"PFLT_FILTER_UNLOAD_CALLBACK","features":[26,3]},{"name":"PFLT_GENERATE_FILE_NAME","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_GENERIC_WORKITEM","features":[26]},{"name":"PFLT_GENERIC_WORKITEM_ROUTINE","features":[26]},{"name":"PFLT_GET_OPERATION_STATUS_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_INSTANCE","features":[26]},{"name":"PFLT_INSTANCE_QUERY_TEARDOWN_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_INSTANCE_SETUP_CALLBACK","features":[4,26,5,3,6,27,8,9,10]},{"name":"PFLT_INSTANCE_TEARDOWN_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_MESSAGE_NOTIFY","features":[26,3]},{"name":"PFLT_NORMALIZE_CONTEXT_CLEANUP","features":[26]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT","features":[26,3]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT_EX","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_PORT","features":[26]},{"name":"PFLT_POST_OPERATION_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_PRE_OPERATION_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_SECTION_CONFLICT_NOTIFICATION_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_TRANSACTION_NOTIFICATION_CALLBACK","features":[4,26,5,3,6,8,9,10]},{"name":"PFLT_VOLUME","features":[26]},{"name":"VOL_PROP_FL_DAX_VOLUME","features":[26]}],"347":[{"name":"NtDeviceIoControlFile","features":[28,3,8]}],"348":[{"name":"NtMapViewOfSection","features":[29,3]},{"name":"NtOpenSection","features":[4,29,3]},{"name":"NtUnmapViewOfSection","features":[29,3]},{"name":"SECTION_INHERIT","features":[29]},{"name":"ViewShare","features":[29]},{"name":"ViewUnmap","features":[29]},{"name":"ZwMapViewOfSection","features":[29,3]},{"name":"ZwOpenSection","features":[4,29,3]},{"name":"ZwUnmapViewOfSection","features":[29,3]}],"349":[{"name":"ORCloseHive","features":[30,3]},{"name":"ORCloseKey","features":[30,3]},{"name":"ORCreateHive","features":[30,3]},{"name":"ORCreateKey","features":[30,3,6]},{"name":"ORDeleteKey","features":[30,3]},{"name":"ORDeleteValue","features":[30,3]},{"name":"OREnumKey","features":[30,3]},{"name":"OREnumValue","features":[30,3]},{"name":"ORGetKeySecurity","features":[30,3,6]},{"name":"ORGetValue","features":[30,3]},{"name":"ORGetVersion","features":[30,3]},{"name":"ORGetVirtualFlags","features":[30,3]},{"name":"ORHKEY","features":[30]},{"name":"ORMergeHives","features":[30,3]},{"name":"OROpenHive","features":[30,3]},{"name":"OROpenHiveByHandle","features":[30,3]},{"name":"OROpenKey","features":[30,3]},{"name":"ORQueryInfoKey","features":[30,3]},{"name":"ORRenameKey","features":[30,3]},{"name":"ORSaveHive","features":[30,3]},{"name":"ORSetKeySecurity","features":[30,3,6]},{"name":"ORSetValue","features":[30,3]},{"name":"ORSetVirtualFlags","features":[30,3]},{"name":"ORShutdown","features":[30,3]},{"name":"ORStart","features":[30,3]}],"350":[{"name":"KEY_INFORMATION_CLASS","features":[31]},{"name":"KEY_SET_INFORMATION_CLASS","features":[31]},{"name":"KEY_VALUE_ENTRY","features":[31,3]},{"name":"KEY_VALUE_INFORMATION_CLASS","features":[31]},{"name":"KeyBasicInformation","features":[31]},{"name":"KeyCachedInformation","features":[31]},{"name":"KeyControlFlagsInformation","features":[31]},{"name":"KeyFlagsInformation","features":[31]},{"name":"KeyFullInformation","features":[31]},{"name":"KeyHandleTagsInformation","features":[31]},{"name":"KeyLayerInformation","features":[31]},{"name":"KeyNameInformation","features":[31]},{"name":"KeyNodeInformation","features":[31]},{"name":"KeySetDebugInformation","features":[31]},{"name":"KeySetHandleTagsInformation","features":[31]},{"name":"KeySetLayerInformation","features":[31]},{"name":"KeySetVirtualizationInformation","features":[31]},{"name":"KeyTrustInformation","features":[31]},{"name":"KeyValueBasicInformation","features":[31]},{"name":"KeyValueFullInformation","features":[31]},{"name":"KeyValueFullInformationAlign64","features":[31]},{"name":"KeyValueLayerInformation","features":[31]},{"name":"KeyValuePartialInformation","features":[31]},{"name":"KeyValuePartialInformationAlign64","features":[31]},{"name":"KeyVirtualizationInformation","features":[31]},{"name":"KeyWow64FlagsInformation","features":[31]},{"name":"KeyWriteTimeInformation","features":[31]},{"name":"MaxKeyInfoClass","features":[31]},{"name":"MaxKeySetInfoClass","features":[31]},{"name":"MaxKeyValueInfoClass","features":[31]},{"name":"NtCommitRegistryTransaction","features":[31,3]},{"name":"NtCreateKey","features":[4,31,3]},{"name":"NtCreateKeyTransacted","features":[4,31,3]},{"name":"NtCreateRegistryTransaction","features":[4,31,3]},{"name":"NtDeleteKey","features":[31,3]},{"name":"NtDeleteValueKey","features":[31,3]},{"name":"NtEnumerateKey","features":[31,3]},{"name":"NtEnumerateValueKey","features":[31,3]},{"name":"NtFlushKey","features":[31,3]},{"name":"NtNotifyChangeMultipleKeys","features":[4,31,3,8]},{"name":"NtOpenKey","features":[4,31,3]},{"name":"NtOpenKeyEx","features":[4,31,3]},{"name":"NtOpenKeyTransacted","features":[4,31,3]},{"name":"NtOpenKeyTransactedEx","features":[4,31,3]},{"name":"NtOpenRegistryTransaction","features":[4,31,3]},{"name":"NtQueryKey","features":[31,3]},{"name":"NtQueryMultipleValueKey","features":[31,3]},{"name":"NtQueryValueKey","features":[31,3]},{"name":"NtRenameKey","features":[31,3]},{"name":"NtRestoreKey","features":[31,3]},{"name":"NtRollbackRegistryTransaction","features":[31,3]},{"name":"NtSaveKey","features":[31,3]},{"name":"NtSaveKeyEx","features":[31,3]},{"name":"NtSetInformationKey","features":[31,3]},{"name":"NtSetValueKey","features":[31,3]},{"name":"REG_ENUMERATE_KEY_INFORMATION","features":[31]},{"name":"REG_ENUMERATE_VALUE_KEY_INFORMATION","features":[31]},{"name":"REG_QUERY_KEY_INFORMATION","features":[31]},{"name":"REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION","features":[31,3]},{"name":"REG_QUERY_VALUE_KEY_INFORMATION","features":[31,3]},{"name":"REG_SET_INFORMATION_KEY_INFORMATION","features":[31]},{"name":"ZwCommitRegistryTransaction","features":[31,3]},{"name":"ZwCreateKey","features":[4,31,3]},{"name":"ZwCreateKeyTransacted","features":[4,31,3]},{"name":"ZwCreateRegistryTransaction","features":[4,31,3]},{"name":"ZwDeleteKey","features":[31,3]},{"name":"ZwDeleteValueKey","features":[31,3]},{"name":"ZwEnumerateKey","features":[31,3]},{"name":"ZwEnumerateValueKey","features":[31,3]},{"name":"ZwFlushKey","features":[31,3]},{"name":"ZwNotifyChangeMultipleKeys","features":[4,31,3,8]},{"name":"ZwOpenKey","features":[4,31,3]},{"name":"ZwOpenKeyEx","features":[4,31,3]},{"name":"ZwOpenKeyTransacted","features":[4,31,3]},{"name":"ZwOpenKeyTransactedEx","features":[4,31,3]},{"name":"ZwOpenRegistryTransaction","features":[4,31,3]},{"name":"ZwQueryKey","features":[31,3]},{"name":"ZwQueryMultipleValueKey","features":[31,3]},{"name":"ZwQueryValueKey","features":[31,3]},{"name":"ZwRenameKey","features":[31,3]},{"name":"ZwRestoreKey","features":[31,3]},{"name":"ZwRollbackRegistryTransaction","features":[31,3]},{"name":"ZwSaveKey","features":[31,3]},{"name":"ZwSaveKeyEx","features":[31,3]},{"name":"ZwSetInformationKey","features":[31,3]},{"name":"ZwSetValueKey","features":[31,3]}],"351":[{"name":"NtQuerySystemInformation","features":[32,3]},{"name":"NtQuerySystemTime","features":[32,3]},{"name":"NtQueryTimerResolution","features":[32,3]},{"name":"SYSTEM_INFORMATION_CLASS","features":[32]},{"name":"SystemBasicInformation","features":[32]},{"name":"SystemCodeIntegrityInformation","features":[32]},{"name":"SystemExceptionInformation","features":[32]},{"name":"SystemInterruptInformation","features":[32]},{"name":"SystemLookasideInformation","features":[32]},{"name":"SystemPerformanceInformation","features":[32]},{"name":"SystemPolicyInformation","features":[32]},{"name":"SystemProcessInformation","features":[32]},{"name":"SystemProcessorPerformanceInformation","features":[32]},{"name":"SystemRegistryQuotaInformation","features":[32]},{"name":"SystemTimeOfDayInformation","features":[32]},{"name":"ZwQuerySystemInformation","features":[32,3]},{"name":"ZwQuerySystemTime","features":[32,3]},{"name":"ZwQueryTimerResolution","features":[32,3]}],"352":[{"name":"ACPIBus","features":[5]},{"name":"ACPI_DEBUGGING_DEVICE_IN_USE","features":[5]},{"name":"ACPI_INTERFACE_STANDARD","features":[4,7,5,3,6,8,9,10]},{"name":"ACPI_INTERFACE_STANDARD2","features":[5,3]},{"name":"ADAPTER_INFO_API_BYPASS","features":[5]},{"name":"ADAPTER_INFO_SYNCHRONOUS_CALLBACK","features":[5]},{"name":"AGP_TARGET_BUS_INTERFACE_STANDARD","features":[5]},{"name":"ALLOCATE_FUNCTION","features":[4,5]},{"name":"ALLOC_DATA_PRAGMA","features":[5]},{"name":"ALLOC_PRAGMA","features":[5]},{"name":"ALTERNATIVE_ARCHITECTURE_TYPE","features":[5]},{"name":"AMD_L1_CACHE_INFO","features":[5]},{"name":"AMD_L2_CACHE_INFO","features":[5]},{"name":"AMD_L3_CACHE_INFO","features":[5]},{"name":"ANY_SIZE","features":[5]},{"name":"APC_LEVEL","features":[5]},{"name":"ARBITER_ACTION","features":[5]},{"name":"ARBITER_ADD_RESERVED_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"ARBITER_BOOT_ALLOCATION_PARAMETERS","features":[5,9]},{"name":"ARBITER_CONFLICT_INFO","features":[4,7,5,3,6,8,9,10]},{"name":"ARBITER_FLAG_BOOT_CONFIG","features":[5]},{"name":"ARBITER_FLAG_OTHER_ENUM","features":[5]},{"name":"ARBITER_FLAG_ROOT_ENUM","features":[5]},{"name":"ARBITER_INTERFACE","features":[4,7,5,3,6,8,9,10]},{"name":"ARBITER_LIST_ENTRY","features":[4,7,5,3,6,8,9,10]},{"name":"ARBITER_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"ARBITER_PARTIAL","features":[5]},{"name":"ARBITER_QUERY_ALLOCATED_RESOURCES_PARAMETERS","features":[5]},{"name":"ARBITER_QUERY_ARBITRATE_PARAMETERS","features":[5,9]},{"name":"ARBITER_QUERY_CONFLICT_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"ARBITER_REQUEST_SOURCE","features":[5]},{"name":"ARBITER_RESULT","features":[5]},{"name":"ARBITER_RETEST_ALLOCATION_PARAMETERS","features":[5,9]},{"name":"ARBITER_TEST_ALLOCATION_PARAMETERS","features":[5,9]},{"name":"ARM64_NT_CONTEXT","features":[5,33]},{"name":"ARM64_PCR_RESERVED_MASK","features":[5]},{"name":"ARM_PROCESSOR_ERROR_SECTION_GUID","features":[5]},{"name":"ATS_DEVICE_SVM_OPTOUT","features":[5]},{"name":"AccessFlagFault","features":[5]},{"name":"AddressSizeFault","features":[5]},{"name":"AgpControl","features":[5]},{"name":"AllLoggerHandlesClass","features":[5]},{"name":"AperturePageSize","features":[5]},{"name":"ApertureSize","features":[5]},{"name":"ApicDestinationModeLogicalClustered","features":[5]},{"name":"ApicDestinationModeLogicalFlat","features":[5]},{"name":"ApicDestinationModePhysical","features":[5]},{"name":"ApicDestinationModeUnknown","features":[5]},{"name":"ArbiterActionAddReserved","features":[5]},{"name":"ArbiterActionBootAllocation","features":[5]},{"name":"ArbiterActionCommitAllocation","features":[5]},{"name":"ArbiterActionQueryAllocatedResources","features":[5]},{"name":"ArbiterActionQueryArbitrate","features":[5]},{"name":"ArbiterActionQueryConflict","features":[5]},{"name":"ArbiterActionRetestAllocation","features":[5]},{"name":"ArbiterActionRollbackAllocation","features":[5]},{"name":"ArbiterActionTestAllocation","features":[5]},{"name":"ArbiterActionWriteReservedResources","features":[5]},{"name":"ArbiterRequestHalReported","features":[5]},{"name":"ArbiterRequestLegacyAssigned","features":[5]},{"name":"ArbiterRequestLegacyReported","features":[5]},{"name":"ArbiterRequestPnpDetected","features":[5]},{"name":"ArbiterRequestPnpEnumerated","features":[5]},{"name":"ArbiterRequestUndefined","features":[5]},{"name":"ArbiterResultExternalConflict","features":[5]},{"name":"ArbiterResultNullRequest","features":[5]},{"name":"ArbiterResultSuccess","features":[5]},{"name":"ArbiterResultUndefined","features":[5]},{"name":"ArcSystem","features":[5]},{"name":"AssignSecurityDescriptor","features":[5]},{"name":"AudioController","features":[5]},{"name":"BDCB_CALLBACK_TYPE","features":[5]},{"name":"BDCB_CLASSIFICATION","features":[5]},{"name":"BDCB_IMAGE_INFORMATION","features":[5,3]},{"name":"BDCB_STATUS_UPDATE_CONTEXT","features":[5]},{"name":"BDCB_STATUS_UPDATE_TYPE","features":[5]},{"name":"BMC_NOTIFY_TYPE_GUID","features":[5]},{"name":"BOOTDISK_INFORMATION","features":[5]},{"name":"BOOTDISK_INFORMATION_EX","features":[5,3]},{"name":"BOOTDISK_INFORMATION_LITE","features":[5]},{"name":"BOOT_DRIVER_CALLBACK_FUNCTION","features":[5,3]},{"name":"BOOT_NOTIFY_TYPE_GUID","features":[5]},{"name":"BOUND_CALLBACK","features":[5]},{"name":"BOUND_CALLBACK_STATUS","features":[5]},{"name":"BUS_DATA_TYPE","features":[5]},{"name":"BUS_INTERFACE_STANDARD","features":[4,7,5,3,6,8,9,10]},{"name":"BUS_QUERY_ID_TYPE","features":[5]},{"name":"BUS_RESOURCE_UPDATE_INTERFACE","features":[5,3]},{"name":"BUS_SPECIFIC_RESET_FLAGS","features":[5]},{"name":"BackgroundWorkQueue","features":[5]},{"name":"BdCbClassificationEnd","features":[5]},{"name":"BdCbClassificationKnownBadImage","features":[5]},{"name":"BdCbClassificationKnownBadImageBootCritical","features":[5]},{"name":"BdCbClassificationKnownGoodImage","features":[5]},{"name":"BdCbClassificationUnknownImage","features":[5]},{"name":"BdCbInitializeImage","features":[5]},{"name":"BdCbStatusPrepareForDependencyLoad","features":[5]},{"name":"BdCbStatusPrepareForDriverLoad","features":[5]},{"name":"BdCbStatusPrepareForUnload","features":[5]},{"name":"BdCbStatusUpdate","features":[5]},{"name":"BoundExceptionContinueSearch","features":[5]},{"name":"BoundExceptionError","features":[5]},{"name":"BoundExceptionHandled","features":[5]},{"name":"BoundExceptionMaximum","features":[5]},{"name":"BufferEmpty","features":[5]},{"name":"BufferFinished","features":[5]},{"name":"BufferIncomplete","features":[5]},{"name":"BufferInserted","features":[5]},{"name":"BufferStarted","features":[5]},{"name":"BusQueryCompatibleIDs","features":[5]},{"name":"BusQueryContainerID","features":[5]},{"name":"BusQueryDeviceID","features":[5]},{"name":"BusQueryDeviceSerialNumber","features":[5]},{"name":"BusQueryHardwareIDs","features":[5]},{"name":"BusQueryInstanceID","features":[5]},{"name":"BusRelations","features":[5]},{"name":"BusWidth32Bits","features":[5]},{"name":"BusWidth64Bits","features":[5]},{"name":"CBus","features":[5]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[5]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION","features":[4,7,5,3,6,23,8,9,10]},{"name":"CLFS_SCAN_BACKWARD","features":[5]},{"name":"CLFS_SCAN_BUFFERED","features":[5]},{"name":"CLFS_SCAN_CLOSE","features":[5]},{"name":"CLFS_SCAN_FORWARD","features":[5]},{"name":"CLFS_SCAN_INIT","features":[5]},{"name":"CLFS_SCAN_INITIALIZED","features":[5]},{"name":"CLOCK1_LEVEL","features":[5]},{"name":"CLOCK2_LEVEL","features":[5]},{"name":"CLOCK_LEVEL","features":[5]},{"name":"CMCI_LEVEL","features":[5]},{"name":"CMCI_NOTIFY_TYPE_GUID","features":[5]},{"name":"CMC_DRIVER_INFO","features":[4,5]},{"name":"CMC_NOTIFY_TYPE_GUID","features":[5]},{"name":"CM_COMPONENT_INFORMATION","features":[5]},{"name":"CM_DISK_GEOMETRY_DEVICE_DATA","features":[5]},{"name":"CM_EISA_FUNCTION_INFORMATION","features":[5]},{"name":"CM_EISA_SLOT_INFORMATION","features":[5]},{"name":"CM_FLOPPY_DEVICE_DATA","features":[5]},{"name":"CM_FULL_RESOURCE_DESCRIPTOR","features":[5]},{"name":"CM_INT13_DRIVE_PARAMETER","features":[5]},{"name":"CM_KEYBOARD_DEVICE_DATA","features":[5]},{"name":"CM_MCA_POS_DATA","features":[5]},{"name":"CM_MONITOR_DEVICE_DATA","features":[5]},{"name":"CM_PARTIAL_RESOURCE_DESCRIPTOR","features":[5]},{"name":"CM_PARTIAL_RESOURCE_LIST","features":[5]},{"name":"CM_PCCARD_DEVICE_DATA","features":[5]},{"name":"CM_PNP_BIOS_DEVICE_NODE","features":[5]},{"name":"CM_PNP_BIOS_INSTALLATION_CHECK","features":[5]},{"name":"CM_POWER_DATA","features":[5,10]},{"name":"CM_RESOURCE_CONNECTION_CLASS_FUNCTION_CONFIG","features":[5]},{"name":"CM_RESOURCE_CONNECTION_CLASS_GPIO","features":[5]},{"name":"CM_RESOURCE_CONNECTION_CLASS_SERIAL","features":[5]},{"name":"CM_RESOURCE_CONNECTION_TYPE_FUNCTION_CONFIG","features":[5]},{"name":"CM_RESOURCE_CONNECTION_TYPE_GPIO_IO","features":[5]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_I2C","features":[5]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_SPI","features":[5]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_UART","features":[5]},{"name":"CM_RESOURCE_DMA_16","features":[5]},{"name":"CM_RESOURCE_DMA_32","features":[5]},{"name":"CM_RESOURCE_DMA_8","features":[5]},{"name":"CM_RESOURCE_DMA_8_AND_16","features":[5]},{"name":"CM_RESOURCE_DMA_BUS_MASTER","features":[5]},{"name":"CM_RESOURCE_DMA_TYPE_A","features":[5]},{"name":"CM_RESOURCE_DMA_TYPE_B","features":[5]},{"name":"CM_RESOURCE_DMA_TYPE_F","features":[5]},{"name":"CM_RESOURCE_DMA_V3","features":[5]},{"name":"CM_RESOURCE_INTERRUPT_LATCHED","features":[5]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_LATCHED_BITS","features":[5]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_SENSITIVE","features":[5]},{"name":"CM_RESOURCE_INTERRUPT_MESSAGE","features":[5]},{"name":"CM_RESOURCE_INTERRUPT_POLICY_INCLUDED","features":[5]},{"name":"CM_RESOURCE_INTERRUPT_SECONDARY_INTERRUPT","features":[5]},{"name":"CM_RESOURCE_INTERRUPT_WAKE_HINT","features":[5]},{"name":"CM_RESOURCE_LIST","features":[5]},{"name":"CM_RESOURCE_MEMORY_24","features":[5]},{"name":"CM_RESOURCE_MEMORY_BAR","features":[5]},{"name":"CM_RESOURCE_MEMORY_CACHEABLE","features":[5]},{"name":"CM_RESOURCE_MEMORY_COMBINEDWRITE","features":[5]},{"name":"CM_RESOURCE_MEMORY_COMPAT_FOR_INACCESSIBLE_RANGE","features":[5]},{"name":"CM_RESOURCE_MEMORY_LARGE","features":[5]},{"name":"CM_RESOURCE_MEMORY_LARGE_40","features":[5]},{"name":"CM_RESOURCE_MEMORY_LARGE_40_MAXLEN","features":[5]},{"name":"CM_RESOURCE_MEMORY_LARGE_48","features":[5]},{"name":"CM_RESOURCE_MEMORY_LARGE_48_MAXLEN","features":[5]},{"name":"CM_RESOURCE_MEMORY_LARGE_64","features":[5]},{"name":"CM_RESOURCE_MEMORY_LARGE_64_MAXLEN","features":[5]},{"name":"CM_RESOURCE_MEMORY_PREFETCHABLE","features":[5]},{"name":"CM_RESOURCE_MEMORY_READ_ONLY","features":[5]},{"name":"CM_RESOURCE_MEMORY_READ_WRITE","features":[5]},{"name":"CM_RESOURCE_MEMORY_WINDOW_DECODE","features":[5]},{"name":"CM_RESOURCE_MEMORY_WRITEABILITY_MASK","features":[5]},{"name":"CM_RESOURCE_MEMORY_WRITE_ONLY","features":[5]},{"name":"CM_RESOURCE_PORT_10_BIT_DECODE","features":[5]},{"name":"CM_RESOURCE_PORT_12_BIT_DECODE","features":[5]},{"name":"CM_RESOURCE_PORT_16_BIT_DECODE","features":[5]},{"name":"CM_RESOURCE_PORT_BAR","features":[5]},{"name":"CM_RESOURCE_PORT_IO","features":[5]},{"name":"CM_RESOURCE_PORT_MEMORY","features":[5]},{"name":"CM_RESOURCE_PORT_PASSIVE_DECODE","features":[5]},{"name":"CM_RESOURCE_PORT_POSITIVE_DECODE","features":[5]},{"name":"CM_RESOURCE_PORT_WINDOW_DECODE","features":[5]},{"name":"CM_ROM_BLOCK","features":[5]},{"name":"CM_SCSI_DEVICE_DATA","features":[5]},{"name":"CM_SERIAL_DEVICE_DATA","features":[5]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[5]},{"name":"CM_SHARE_DISPOSITION","features":[5]},{"name":"CM_SONIC_DEVICE_DATA","features":[5]},{"name":"CM_VIDEO_DEVICE_DATA","features":[5]},{"name":"CONFIGURATION_INFORMATION","features":[5,3]},{"name":"CONFIGURATION_TYPE","features":[5]},{"name":"CONNECT_CURRENT_VERSION","features":[5]},{"name":"CONNECT_FULLY_SPECIFIED","features":[5]},{"name":"CONNECT_FULLY_SPECIFIED_GROUP","features":[5]},{"name":"CONNECT_LINE_BASED","features":[5]},{"name":"CONNECT_MESSAGE_BASED","features":[5]},{"name":"CONNECT_MESSAGE_BASED_PASSIVE","features":[5]},{"name":"CONTROLLER_OBJECT","features":[4,5,3,9]},{"name":"COUNTED_REASON_CONTEXT","features":[5,3]},{"name":"CP15_PCR_RESERVED_MASK","features":[5]},{"name":"CPER_EMPTY_GUID","features":[5]},{"name":"CPE_DRIVER_INFO","features":[4,5]},{"name":"CPE_NOTIFY_TYPE_GUID","features":[5]},{"name":"CP_GET_ERROR","features":[5]},{"name":"CP_GET_NODATA","features":[5]},{"name":"CP_GET_SUCCESS","features":[5]},{"name":"CRASHDUMP_FUNCTIONS_INTERFACE","features":[5,3]},{"name":"CREATE_FILE_TYPE","features":[5]},{"name":"CREATE_USER_PROCESS_ECP_CONTEXT","features":[5]},{"name":"CardPresent","features":[5]},{"name":"CbusConfiguration","features":[5]},{"name":"CdromController","features":[5]},{"name":"CentralProcessor","features":[5]},{"name":"ClfsAddLogContainer","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsAddLogContainerSet","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsAdvanceLogBase","features":[5,3,23]},{"name":"ClfsAlignReservedLog","features":[5,3]},{"name":"ClfsAllocReservedLog","features":[5,3]},{"name":"ClfsClientRecord","features":[5]},{"name":"ClfsCloseAndResetLogFile","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsCloseLogFileObject","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsContainerActive","features":[5]},{"name":"ClfsContainerActivePendingDelete","features":[5]},{"name":"ClfsContainerInactive","features":[5]},{"name":"ClfsContainerInitializing","features":[5]},{"name":"ClfsContainerPendingArchive","features":[5]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[5]},{"name":"ClfsCreateLogFile","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsCreateMarshallingArea","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsCreateMarshallingAreaEx","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsCreateScanContext","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsDataRecord","features":[5]},{"name":"ClfsDeleteLogByPointer","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsDeleteLogFile","features":[5,3]},{"name":"ClfsDeleteMarshallingArea","features":[5,3]},{"name":"ClfsEarlierLsn","features":[5,23]},{"name":"ClfsFinalize","features":[5]},{"name":"ClfsFlushBuffers","features":[5,3]},{"name":"ClfsFlushToLsn","features":[5,3,23]},{"name":"ClfsFreeReservedLog","features":[5,3]},{"name":"ClfsGetContainerName","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsGetIoStatistics","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsGetLogFileInformation","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsInitialize","features":[5,3]},{"name":"ClfsLaterLsn","features":[5,23]},{"name":"ClfsLsnBlockOffset","features":[5,23]},{"name":"ClfsLsnContainer","features":[5,23]},{"name":"ClfsLsnCreate","features":[5,23]},{"name":"ClfsLsnDifference","features":[5,3,23]},{"name":"ClfsLsnEqual","features":[5,3,23]},{"name":"ClfsLsnGreater","features":[5,3,23]},{"name":"ClfsLsnInvalid","features":[5,3,23]},{"name":"ClfsLsnLess","features":[5,3,23]},{"name":"ClfsLsnNull","features":[5,3,23]},{"name":"ClfsLsnRecordSequence","features":[5,23]},{"name":"ClfsMgmtDeregisterManagedClient","features":[5,3]},{"name":"ClfsMgmtHandleLogFileFull","features":[5,3]},{"name":"ClfsMgmtInstallPolicy","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsMgmtQueryPolicy","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsMgmtRegisterManagedClient","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsMgmtRemovePolicy","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsMgmtSetLogFileSize","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsMgmtSetLogFileSizeAsClient","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsMgmtTailAdvanceFailure","features":[5,3]},{"name":"ClfsNullRecord","features":[5]},{"name":"ClfsQueryLogFileInformation","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsReadLogRecord","features":[5,3,23]},{"name":"ClfsReadNextLogRecord","features":[5,3,23]},{"name":"ClfsReadPreviousRestartArea","features":[5,3,23]},{"name":"ClfsReadRestartArea","features":[5,3,23]},{"name":"ClfsRemoveLogContainer","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsRemoveLogContainerSet","features":[4,7,5,3,6,8,9,10]},{"name":"ClfsReserveAndAppendLog","features":[5,3,23]},{"name":"ClfsReserveAndAppendLogAligned","features":[5,3,23]},{"name":"ClfsRestartRecord","features":[5]},{"name":"ClfsScanLogContainers","features":[5,3,23]},{"name":"ClfsSetArchiveTail","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsSetEndOfLog","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsSetLogFileInformation","features":[4,7,5,3,6,23,8,9,10]},{"name":"ClfsTerminateReadLog","features":[5,3]},{"name":"ClfsWriteRestartArea","features":[5,3,23]},{"name":"ClsContainerActive","features":[5]},{"name":"ClsContainerActivePendingDelete","features":[5]},{"name":"ClsContainerInactive","features":[5]},{"name":"ClsContainerInitializing","features":[5]},{"name":"ClsContainerPendingArchive","features":[5]},{"name":"ClsContainerPendingArchiveAndDelete","features":[5]},{"name":"CmCallbackGetKeyObjectID","features":[5,3]},{"name":"CmCallbackGetKeyObjectIDEx","features":[5,3]},{"name":"CmCallbackReleaseKeyObjectIDEx","features":[5,3]},{"name":"CmGetBoundTransaction","features":[5]},{"name":"CmGetCallbackVersion","features":[5]},{"name":"CmRegisterCallback","features":[5,3]},{"name":"CmRegisterCallbackEx","features":[5,3]},{"name":"CmResourceShareDeviceExclusive","features":[5]},{"name":"CmResourceShareDriverExclusive","features":[5]},{"name":"CmResourceShareShared","features":[5]},{"name":"CmResourceShareUndetermined","features":[5]},{"name":"CmResourceTypeBusNumber","features":[5]},{"name":"CmResourceTypeConfigData","features":[5]},{"name":"CmResourceTypeConnection","features":[5]},{"name":"CmResourceTypeDevicePrivate","features":[5]},{"name":"CmResourceTypeDeviceSpecific","features":[5]},{"name":"CmResourceTypeDma","features":[5]},{"name":"CmResourceTypeInterrupt","features":[5]},{"name":"CmResourceTypeMaximum","features":[5]},{"name":"CmResourceTypeMemory","features":[5]},{"name":"CmResourceTypeMemoryLarge","features":[5]},{"name":"CmResourceTypeMfCardConfig","features":[5]},{"name":"CmResourceTypeNonArbitrated","features":[5]},{"name":"CmResourceTypeNull","features":[5]},{"name":"CmResourceTypePcCardConfig","features":[5]},{"name":"CmResourceTypePort","features":[5]},{"name":"CmSetCallbackObjectContext","features":[5,3]},{"name":"CmUnRegisterCallback","features":[5,3]},{"name":"Cmos","features":[5]},{"name":"CommonBufferConfigTypeHardwareAccessPermissions","features":[5]},{"name":"CommonBufferConfigTypeLogicalAddressLimits","features":[5]},{"name":"CommonBufferConfigTypeMax","features":[5]},{"name":"CommonBufferConfigTypeSubSection","features":[5]},{"name":"CommonBufferHardwareAccessMax","features":[5]},{"name":"CommonBufferHardwareAccessReadOnly","features":[5]},{"name":"CommonBufferHardwareAccessReadWrite","features":[5]},{"name":"CommonBufferHardwareAccessWriteOnly","features":[5]},{"name":"Compatible","features":[5]},{"name":"ConfigurationSpaceUndefined","features":[5]},{"name":"ContinueCompletion","features":[5]},{"name":"CreateFileTypeMailslot","features":[5]},{"name":"CreateFileTypeNamedPipe","features":[5]},{"name":"CreateFileTypeNone","features":[5]},{"name":"CriticalWorkQueue","features":[5]},{"name":"CustomPriorityWorkQueue","features":[5]},{"name":"D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[5,3]},{"name":"D3COLD_LAST_TRANSITION_STATUS","features":[5]},{"name":"D3COLD_REQUEST_AUX_POWER","features":[5,3]},{"name":"D3COLD_REQUEST_CORE_POWER_RAIL","features":[5,3]},{"name":"D3COLD_REQUEST_PERST_DELAY","features":[5,3]},{"name":"D3COLD_SUPPORT_INTERFACE","features":[5,3]},{"name":"D3COLD_SUPPORT_INTERFACE_VERSION","features":[5]},{"name":"DBG_DEVICE_FLAG_BARS_MAPPED","features":[5]},{"name":"DBG_DEVICE_FLAG_HAL_SCRATCH_ALLOCATED","features":[5]},{"name":"DBG_DEVICE_FLAG_HOST_VISIBLE_ALLOCATED","features":[5]},{"name":"DBG_DEVICE_FLAG_SCRATCH_ALLOCATED","features":[5]},{"name":"DBG_DEVICE_FLAG_SYNTHETIC","features":[5]},{"name":"DBG_DEVICE_FLAG_UNCACHED_MEMORY","features":[5]},{"name":"DBG_STATUS_BUGCHECK_FIRST","features":[5]},{"name":"DBG_STATUS_BUGCHECK_SECOND","features":[5]},{"name":"DBG_STATUS_CONTROL_C","features":[5]},{"name":"DBG_STATUS_DEBUG_CONTROL","features":[5]},{"name":"DBG_STATUS_FATAL","features":[5]},{"name":"DBG_STATUS_SYSRQ","features":[5]},{"name":"DBG_STATUS_WORKER","features":[5]},{"name":"DEBUGGING_DEVICE_IN_USE","features":[5]},{"name":"DEBUGGING_DEVICE_IN_USE_INFORMATION","features":[5]},{"name":"DEBUG_DEVICE_ADDRESS","features":[5,3]},{"name":"DEBUG_DEVICE_DESCRIPTOR","features":[5,3]},{"name":"DEBUG_EFI_IOMMU_DATA","features":[5]},{"name":"DEBUG_MEMORY_REQUIREMENTS","features":[5,3]},{"name":"DEBUG_TRANSPORT_DATA","features":[5,3]},{"name":"DEFAULT_DEVICE_DRIVER_CREATOR_GUID","features":[5]},{"name":"DEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[5,3]},{"name":"DEVICE_BUS_SPECIFIC_RESET_INFO","features":[5]},{"name":"DEVICE_BUS_SPECIFIC_RESET_TYPE","features":[5]},{"name":"DEVICE_CAPABILITIES","features":[5,10]},{"name":"DEVICE_CHANGE_COMPLETE_CALLBACK","features":[5]},{"name":"DEVICE_DESCRIPTION","features":[5,3]},{"name":"DEVICE_DESCRIPTION_VERSION","features":[5]},{"name":"DEVICE_DESCRIPTION_VERSION1","features":[5]},{"name":"DEVICE_DESCRIPTION_VERSION2","features":[5]},{"name":"DEVICE_DESCRIPTION_VERSION3","features":[5]},{"name":"DEVICE_DIRECTORY_TYPE","features":[5]},{"name":"DEVICE_DRIVER_NOTIFY_TYPE_GUID","features":[5]},{"name":"DEVICE_FAULT_CONFIGURATION","features":[5]},{"name":"DEVICE_FLAGS","features":[5]},{"name":"DEVICE_INSTALL_STATE","features":[5]},{"name":"DEVICE_INTERFACE_CHANGE_NOTIFICATION","features":[5,3]},{"name":"DEVICE_INTERFACE_INCLUDE_NONACTIVE","features":[5]},{"name":"DEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[5,3]},{"name":"DEVICE_REGISTRY_PROPERTY","features":[5]},{"name":"DEVICE_RELATIONS","features":[4,7,5,3,6,8,9,10]},{"name":"DEVICE_RELATION_TYPE","features":[5]},{"name":"DEVICE_REMOVAL_POLICY","features":[5]},{"name":"DEVICE_RESET_COMPLETION","features":[5,3]},{"name":"DEVICE_RESET_HANDLER","features":[5,3]},{"name":"DEVICE_RESET_INTERFACE_STANDARD","features":[5,3]},{"name":"DEVICE_RESET_INTERFACE_VERSION","features":[5]},{"name":"DEVICE_RESET_INTERFACE_VERSION_1","features":[5]},{"name":"DEVICE_RESET_INTERFACE_VERSION_2","features":[5]},{"name":"DEVICE_RESET_INTERFACE_VERSION_3","features":[5]},{"name":"DEVICE_RESET_STATUS_FLAGS","features":[5]},{"name":"DEVICE_RESET_TYPE","features":[5]},{"name":"DEVICE_TEXT_TYPE","features":[5]},{"name":"DEVICE_USAGE_NOTIFICATION_TYPE","features":[5]},{"name":"DEVICE_WAKE_DEPTH","features":[5]},{"name":"DIRECTORY_CREATE_OBJECT","features":[5]},{"name":"DIRECTORY_CREATE_SUBDIRECTORY","features":[5]},{"name":"DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[5]},{"name":"DIRECTORY_QUERY","features":[5]},{"name":"DIRECTORY_TRAVERSE","features":[5]},{"name":"DISK_SIGNATURE","features":[5]},{"name":"DISPATCH_LEVEL","features":[5]},{"name":"DMAV3_TRANFER_WIDTH_128","features":[5]},{"name":"DMAV3_TRANFER_WIDTH_16","features":[5]},{"name":"DMAV3_TRANFER_WIDTH_256","features":[5]},{"name":"DMAV3_TRANFER_WIDTH_32","features":[5]},{"name":"DMAV3_TRANFER_WIDTH_64","features":[5]},{"name":"DMAV3_TRANFER_WIDTH_8","features":[5]},{"name":"DMA_ADAPTER","features":[4,7,5,3,6,8,9,10]},{"name":"DMA_ADAPTER_INFO","features":[5,3]},{"name":"DMA_ADAPTER_INFO_CRASHDUMP","features":[5,3]},{"name":"DMA_ADAPTER_INFO_V1","features":[5]},{"name":"DMA_ADAPTER_INFO_VERSION1","features":[5]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION","features":[5]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_ACCESS_TYPE","features":[5]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_TYPE","features":[5]},{"name":"DMA_COMPLETION_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"DMA_COMPLETION_STATUS","features":[5]},{"name":"DMA_CONFIGURATION_BYTE0","features":[5]},{"name":"DMA_CONFIGURATION_BYTE1","features":[5]},{"name":"DMA_FAIL_ON_BOUNCE","features":[5]},{"name":"DMA_IOMMU_INTERFACE","features":[5,3]},{"name":"DMA_IOMMU_INTERFACE_EX","features":[5,3]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION","features":[5]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_1","features":[5]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_2","features":[5]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MAX","features":[5]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MIN","features":[5]},{"name":"DMA_IOMMU_INTERFACE_V1","features":[5,3]},{"name":"DMA_IOMMU_INTERFACE_V2","features":[5,3]},{"name":"DMA_IOMMU_INTERFACE_VERSION","features":[5]},{"name":"DMA_IOMMU_INTERFACE_VERSION_1","features":[5]},{"name":"DMA_OPERATIONS","features":[4,7,5,3,6,8,9,10]},{"name":"DMA_SPEED","features":[5]},{"name":"DMA_SYNCHRONOUS_CALLBACK","features":[5]},{"name":"DMA_TRANSFER_CONTEXT_SIZE_V1","features":[5]},{"name":"DMA_TRANSFER_CONTEXT_VERSION1","features":[5]},{"name":"DMA_TRANSFER_INFO","features":[5]},{"name":"DMA_TRANSFER_INFO_V1","features":[5]},{"name":"DMA_TRANSFER_INFO_V2","features":[5]},{"name":"DMA_TRANSFER_INFO_VERSION1","features":[5]},{"name":"DMA_TRANSFER_INFO_VERSION2","features":[5]},{"name":"DMA_WIDTH","features":[5]},{"name":"DMA_ZERO_BUFFERS","features":[5]},{"name":"DOMAIN_COMMON_BUFFER_LARGE_PAGE","features":[5]},{"name":"DOMAIN_CONFIGURATION","features":[5,3]},{"name":"DOMAIN_CONFIGURATION_ARCH","features":[5]},{"name":"DOMAIN_CONFIGURATION_ARM64","features":[5,3]},{"name":"DOMAIN_CONFIGURATION_X64","features":[5,3]},{"name":"DPC_NORMAL","features":[5]},{"name":"DPC_THREADED","features":[5]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK","features":[5]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_REVISION_1","features":[5]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_SIGNATURE","features":[5]},{"name":"DRIVER_DIRECTORY_TYPE","features":[5]},{"name":"DRIVER_LIST_CONTROL","features":[4,7,5,3,6,8,9,10]},{"name":"DRIVER_REGKEY_TYPE","features":[5]},{"name":"DRIVER_RUNTIME_INIT_FLAGS","features":[5]},{"name":"DRIVER_VERIFIER_FORCE_IRQL_CHECKING","features":[5]},{"name":"DRIVER_VERIFIER_INJECT_ALLOCATION_FAILURES","features":[5]},{"name":"DRIVER_VERIFIER_IO_CHECKING","features":[5]},{"name":"DRIVER_VERIFIER_SPECIAL_POOLING","features":[5]},{"name":"DRIVER_VERIFIER_THUNK_PAIRS","features":[5]},{"name":"DRIVER_VERIFIER_TRACK_POOL_ALLOCATIONS","features":[5]},{"name":"DRS_LEVEL","features":[5]},{"name":"DRVO_BOOTREINIT_REGISTERED","features":[5]},{"name":"DRVO_BUILTIN_DRIVER","features":[5]},{"name":"DRVO_INITIALIZED","features":[5]},{"name":"DRVO_LEGACY_DRIVER","features":[5]},{"name":"DRVO_LEGACY_RESOURCES","features":[5]},{"name":"DRVO_REINIT_REGISTERED","features":[5]},{"name":"DRVO_UNLOAD_INVOKED","features":[5]},{"name":"DUPLICATE_SAME_ATTRIBUTES","features":[5]},{"name":"DbgBreakPointWithStatus","features":[5]},{"name":"DbgPrint","features":[5]},{"name":"DbgPrintEx","features":[5]},{"name":"DbgPrintReturnControlC","features":[5]},{"name":"DbgPrompt","features":[5]},{"name":"DbgQueryDebugFilterState","features":[5,3]},{"name":"DbgSetDebugFilterState","features":[5,3]},{"name":"DbgSetDebugPrintCallback","features":[5,3,9]},{"name":"DeallocateObject","features":[5]},{"name":"DeallocateObjectKeepRegisters","features":[5]},{"name":"DelayExecution","features":[5]},{"name":"DelayedWorkQueue","features":[5]},{"name":"DeleteSecurityDescriptor","features":[5]},{"name":"DeviceDirectoryData","features":[5]},{"name":"DevicePowerState","features":[5]},{"name":"DevicePropertyAddress","features":[5]},{"name":"DevicePropertyAllocatedResources","features":[5]},{"name":"DevicePropertyBootConfiguration","features":[5]},{"name":"DevicePropertyBootConfigurationTranslated","features":[5]},{"name":"DevicePropertyBusNumber","features":[5]},{"name":"DevicePropertyBusTypeGuid","features":[5]},{"name":"DevicePropertyClassGuid","features":[5]},{"name":"DevicePropertyClassName","features":[5]},{"name":"DevicePropertyCompatibleIDs","features":[5]},{"name":"DevicePropertyContainerID","features":[5]},{"name":"DevicePropertyDeviceDescription","features":[5]},{"name":"DevicePropertyDriverKeyName","features":[5]},{"name":"DevicePropertyEnumeratorName","features":[5]},{"name":"DevicePropertyFriendlyName","features":[5]},{"name":"DevicePropertyHardwareID","features":[5]},{"name":"DevicePropertyInstallState","features":[5]},{"name":"DevicePropertyLegacyBusType","features":[5]},{"name":"DevicePropertyLocationInformation","features":[5]},{"name":"DevicePropertyManufacturer","features":[5]},{"name":"DevicePropertyPhysicalDeviceObjectName","features":[5]},{"name":"DevicePropertyRemovalPolicy","features":[5]},{"name":"DevicePropertyResourceRequirements","features":[5]},{"name":"DevicePropertyUINumber","features":[5]},{"name":"DeviceTextDescription","features":[5]},{"name":"DeviceTextLocationInformation","features":[5]},{"name":"DeviceUsageTypeBoot","features":[5]},{"name":"DeviceUsageTypeDumpFile","features":[5]},{"name":"DeviceUsageTypeGuestAssigned","features":[5]},{"name":"DeviceUsageTypeHibernation","features":[5]},{"name":"DeviceUsageTypePaging","features":[5]},{"name":"DeviceUsageTypePostDisplay","features":[5]},{"name":"DeviceUsageTypeUndefined","features":[5]},{"name":"DeviceWakeDepthD0","features":[5]},{"name":"DeviceWakeDepthD1","features":[5]},{"name":"DeviceWakeDepthD2","features":[5]},{"name":"DeviceWakeDepthD3cold","features":[5]},{"name":"DeviceWakeDepthD3hot","features":[5]},{"name":"DeviceWakeDepthMaximum","features":[5]},{"name":"DeviceWakeDepthNotWakeable","features":[5]},{"name":"DirectoryNotifyExtendedInformation","features":[5]},{"name":"DirectoryNotifyFullInformation","features":[5]},{"name":"DirectoryNotifyInformation","features":[5]},{"name":"DirectoryNotifyMaximumInformation","features":[5]},{"name":"DisabledControl","features":[5]},{"name":"DiskController","features":[5]},{"name":"DiskIoNotifyRoutinesClass","features":[5]},{"name":"DiskPeripheral","features":[5]},{"name":"DisplayController","features":[5]},{"name":"DmaAborted","features":[5]},{"name":"DmaCancelled","features":[5]},{"name":"DmaComplete","features":[5]},{"name":"DmaError","features":[5]},{"name":"DockingInformation","features":[5]},{"name":"DomainConfigurationArm64","features":[5]},{"name":"DomainConfigurationInvalid","features":[5]},{"name":"DomainConfigurationX64","features":[5]},{"name":"DomainTypeMax","features":[5]},{"name":"DomainTypePassThrough","features":[5]},{"name":"DomainTypeTranslate","features":[5]},{"name":"DomainTypeUnmanaged","features":[5]},{"name":"DriverDirectoryData","features":[5]},{"name":"DriverDirectoryImage","features":[5]},{"name":"DriverDirectorySharedData","features":[5]},{"name":"DriverRegKeyParameters","features":[5]},{"name":"DriverRegKeyPersistentState","features":[5]},{"name":"DriverRegKeySharedPersistentState","features":[5]},{"name":"DrvRtPoolNxOptIn","features":[5]},{"name":"DtiAdapter","features":[5]},{"name":"EFI_ACPI_RAS_SIGNAL_TABLE","features":[5]},{"name":"EFLAG_SIGN","features":[5]},{"name":"EFLAG_ZERO","features":[5]},{"name":"EISA_DMA_CONFIGURATION","features":[5]},{"name":"EISA_EMPTY_SLOT","features":[5]},{"name":"EISA_FREE_FORM_DATA","features":[5]},{"name":"EISA_FUNCTION_ENABLED","features":[5]},{"name":"EISA_HAS_DMA_ENTRY","features":[5]},{"name":"EISA_HAS_IRQ_ENTRY","features":[5]},{"name":"EISA_HAS_MEMORY_ENTRY","features":[5]},{"name":"EISA_HAS_PORT_INIT_ENTRY","features":[5]},{"name":"EISA_HAS_PORT_RANGE","features":[5]},{"name":"EISA_HAS_TYPE_ENTRY","features":[5]},{"name":"EISA_INVALID_BIOS_CALL","features":[5]},{"name":"EISA_INVALID_CONFIGURATION","features":[5]},{"name":"EISA_INVALID_FUNCTION","features":[5]},{"name":"EISA_INVALID_SLOT","features":[5]},{"name":"EISA_IRQ_CONFIGURATION","features":[5]},{"name":"EISA_IRQ_DESCRIPTOR","features":[5]},{"name":"EISA_MEMORY_CONFIGURATION","features":[5]},{"name":"EISA_MEMORY_TYPE","features":[5]},{"name":"EISA_MEMORY_TYPE_RAM","features":[5]},{"name":"EISA_MORE_ENTRIES","features":[5]},{"name":"EISA_PORT_CONFIGURATION","features":[5]},{"name":"EISA_PORT_DESCRIPTOR","features":[5]},{"name":"EISA_SYSTEM_MEMORY","features":[5]},{"name":"ENABLE_VIRTUALIZATION","features":[5,3]},{"name":"ERROR_LOG_LIMIT_SIZE","features":[5]},{"name":"ERROR_MAJOR_REVISION_SAL_03_00","features":[5]},{"name":"ERROR_MEMORY_GUID","features":[5]},{"name":"ERROR_MINOR_REVISION_SAL_03_00","features":[5]},{"name":"ERROR_PCI_BUS_GUID","features":[5]},{"name":"ERROR_PCI_COMPONENT_GUID","features":[5]},{"name":"ERROR_PLATFORM_BUS_GUID","features":[5]},{"name":"ERROR_PLATFORM_HOST_CONTROLLER_GUID","features":[5]},{"name":"ERROR_PLATFORM_SPECIFIC_GUID","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_MASK","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_SHIFT","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_MASK","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_SHIFT","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_MASK","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_SHIFT","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_MASK","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_SHIFT","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_MASK","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_SHIFT","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_MASK","features":[5]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_SHIFT","features":[5]},{"name":"ERROR_SMBIOS_GUID","features":[5]},{"name":"ERROR_SYSTEM_EVENT_LOG_GUID","features":[5]},{"name":"ERRTYP_BUS","features":[5]},{"name":"ERRTYP_CACHE","features":[5]},{"name":"ERRTYP_FLOW","features":[5]},{"name":"ERRTYP_FUNCTION","features":[5]},{"name":"ERRTYP_IMPROPER","features":[5]},{"name":"ERRTYP_INTERNAL","features":[5]},{"name":"ERRTYP_LOSSOFLOCKSTEP","features":[5]},{"name":"ERRTYP_MAP","features":[5]},{"name":"ERRTYP_MEM","features":[5]},{"name":"ERRTYP_PARITY","features":[5]},{"name":"ERRTYP_PATHERROR","features":[5]},{"name":"ERRTYP_POISONED","features":[5]},{"name":"ERRTYP_PROTOCOL","features":[5]},{"name":"ERRTYP_RESPONSE","features":[5]},{"name":"ERRTYP_SELFTEST","features":[5]},{"name":"ERRTYP_TIMEOUT","features":[5]},{"name":"ERRTYP_TLB","features":[5]},{"name":"ERRTYP_UNIMPL","features":[5]},{"name":"ETWENABLECALLBACK","features":[5,34]},{"name":"ETW_TRACE_SESSION_SETTINGS","features":[5]},{"name":"EVENT_QUERY_STATE","features":[5]},{"name":"EXCEPTION_ALIGNMENT_CHECK","features":[5]},{"name":"EXCEPTION_BOUND_CHECK","features":[5]},{"name":"EXCEPTION_CP_FAULT","features":[5]},{"name":"EXCEPTION_DEBUG","features":[5]},{"name":"EXCEPTION_DIVIDED_BY_ZERO","features":[5]},{"name":"EXCEPTION_DOUBLE_FAULT","features":[5]},{"name":"EXCEPTION_GP_FAULT","features":[5]},{"name":"EXCEPTION_INT3","features":[5]},{"name":"EXCEPTION_INVALID_OPCODE","features":[5]},{"name":"EXCEPTION_INVALID_TSS","features":[5]},{"name":"EXCEPTION_NMI","features":[5]},{"name":"EXCEPTION_NPX_ERROR","features":[5]},{"name":"EXCEPTION_NPX_NOT_AVAILABLE","features":[5]},{"name":"EXCEPTION_NPX_OVERRUN","features":[5]},{"name":"EXCEPTION_RESERVED_TRAP","features":[5]},{"name":"EXCEPTION_SEGMENT_NOT_PRESENT","features":[5]},{"name":"EXCEPTION_SE_FAULT","features":[5]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[5]},{"name":"EXCEPTION_STACK_FAULT","features":[5]},{"name":"EXCEPTION_VIRTUALIZATION_FAULT","features":[5]},{"name":"EXPAND_STACK_CALLOUT","features":[5]},{"name":"EXTENDED_AGP_REGISTER","features":[5]},{"name":"EXTENDED_CREATE_INFORMATION","features":[5]},{"name":"EXTENDED_CREATE_INFORMATION_32","features":[5]},{"name":"EXTINT_NOTIFY_TYPE_GUID","features":[5]},{"name":"EXT_CALLBACK","features":[4,5]},{"name":"EXT_DELETE_CALLBACK","features":[5]},{"name":"EXT_DELETE_PARAMETERS","features":[5]},{"name":"EX_CALLBACK_FUNCTION","features":[5,3]},{"name":"EX_CARR_ALLOCATE_NONPAGED_POOL","features":[5]},{"name":"EX_CARR_ALLOCATE_PAGED_POOL","features":[5]},{"name":"EX_CARR_DISABLE_EXPANSION","features":[5]},{"name":"EX_CREATE_FLAG_FILE_DEST_OPEN_FOR_COPY","features":[5]},{"name":"EX_CREATE_FLAG_FILE_SOURCE_OPEN_FOR_COPY","features":[5]},{"name":"EX_DEFAULT_PUSH_LOCK_FLAGS","features":[5]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_FAIL_NO_RAISE","features":[5]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_RAISE_ON_FAIL","features":[5]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_BASE","features":[5]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_LIMIT","features":[5]},{"name":"EX_POOL_PRIORITY","features":[5]},{"name":"EX_RUNDOWN_ACTIVE","features":[5]},{"name":"EX_RUNDOWN_COUNT_SHIFT","features":[5]},{"name":"EX_RUNDOWN_REF","features":[5]},{"name":"EX_TIMER_HIGH_RESOLUTION","features":[5]},{"name":"EX_TIMER_NO_WAKE","features":[5]},{"name":"Eisa","features":[5]},{"name":"EisaAdapter","features":[5]},{"name":"EisaConfiguration","features":[5]},{"name":"EjectionRelations","features":[5]},{"name":"EndAlternatives","features":[5]},{"name":"EtwActivityIdControl","features":[5,3]},{"name":"EtwEventEnabled","features":[5,3,34]},{"name":"EtwProviderEnabled","features":[5,3,34]},{"name":"EtwRegister","features":[5,3]},{"name":"EtwSetInformation","features":[5,3,34]},{"name":"EtwUnregister","features":[5,3,34]},{"name":"EtwWrite","features":[5,3,34]},{"name":"EtwWriteEx","features":[5,3,34]},{"name":"EtwWriteString","features":[5,3,34]},{"name":"EtwWriteTransfer","features":[5,3,34]},{"name":"EventCategoryDeviceInterfaceChange","features":[5]},{"name":"EventCategoryHardwareProfileChange","features":[5]},{"name":"EventCategoryKernelSoftRestart","features":[5]},{"name":"EventCategoryReserved","features":[5]},{"name":"EventCategoryTargetDeviceChange","features":[5]},{"name":"EventLoggerHandleClass","features":[5]},{"name":"ExAcquireFastMutex","features":[4,5,3,9]},{"name":"ExAcquireFastMutexUnsafe","features":[4,5,3,9]},{"name":"ExAcquirePushLockExclusiveEx","features":[5]},{"name":"ExAcquirePushLockSharedEx","features":[5]},{"name":"ExAcquireResourceExclusiveLite","features":[4,5,3,9]},{"name":"ExAcquireResourceSharedLite","features":[4,5,3,9]},{"name":"ExAcquireRundownProtection","features":[5,3]},{"name":"ExAcquireRundownProtectionCacheAware","features":[4,5,3]},{"name":"ExAcquireRundownProtectionCacheAwareEx","features":[4,5,3]},{"name":"ExAcquireRundownProtectionEx","features":[5,3]},{"name":"ExAcquireSharedStarveExclusive","features":[4,5,3,9]},{"name":"ExAcquireSharedWaitForExclusive","features":[4,5,3,9]},{"name":"ExAcquireSpinLockExclusive","features":[5]},{"name":"ExAcquireSpinLockExclusiveAtDpcLevel","features":[5]},{"name":"ExAcquireSpinLockShared","features":[5]},{"name":"ExAcquireSpinLockSharedAtDpcLevel","features":[5]},{"name":"ExAllocateCacheAwareRundownProtection","features":[4,5]},{"name":"ExAllocatePool","features":[4,5]},{"name":"ExAllocatePool2","features":[5]},{"name":"ExAllocatePool3","features":[5,3]},{"name":"ExAllocatePoolWithQuota","features":[4,5]},{"name":"ExAllocatePoolWithQuotaTag","features":[4,5]},{"name":"ExAllocatePoolWithTag","features":[4,5]},{"name":"ExAllocatePoolWithTagPriority","features":[4,5]},{"name":"ExAllocateTimer","features":[4,5]},{"name":"ExCancelTimer","features":[4,5,3]},{"name":"ExCleanupRundownProtectionCacheAware","features":[4,5]},{"name":"ExConvertExclusiveToSharedLite","features":[4,5,9]},{"name":"ExCreateCallback","features":[4,5,3]},{"name":"ExCreatePool","features":[5,3]},{"name":"ExDeleteResourceLite","features":[4,5,3,9]},{"name":"ExDeleteTimer","features":[4,5,3]},{"name":"ExDestroyPool","features":[5,3]},{"name":"ExEnterCriticalRegionAndAcquireResourceExclusive","features":[4,5,9]},{"name":"ExEnterCriticalRegionAndAcquireResourceShared","features":[4,5,9]},{"name":"ExEnterCriticalRegionAndAcquireSharedWaitForExclusive","features":[4,5,9]},{"name":"ExEnumerateSystemFirmwareTables","features":[5,3]},{"name":"ExExtendZone","features":[5,3,9]},{"name":"ExFreeCacheAwareRundownProtection","features":[4,5]},{"name":"ExFreePool","features":[5]},{"name":"ExFreePool2","features":[5,3]},{"name":"ExFreePoolWithTag","features":[5]},{"name":"ExGetExclusiveWaiterCount","features":[4,5,9]},{"name":"ExGetFirmwareEnvironmentVariable","features":[5,3]},{"name":"ExGetFirmwareType","features":[5,35]},{"name":"ExGetPreviousMode","features":[5]},{"name":"ExGetSharedWaiterCount","features":[4,5,9]},{"name":"ExGetSystemFirmwareTable","features":[5,3]},{"name":"ExInitializePushLock","features":[5]},{"name":"ExInitializeResourceLite","features":[4,5,3,9]},{"name":"ExInitializeRundownProtection","features":[5]},{"name":"ExInitializeRundownProtectionCacheAware","features":[4,5]},{"name":"ExInitializeRundownProtectionCacheAwareEx","features":[4,5]},{"name":"ExInitializeZone","features":[5,3,9]},{"name":"ExInterlockedAddLargeInteger","features":[5]},{"name":"ExInterlockedExtendZone","features":[5,3,9]},{"name":"ExIsManufacturingModeEnabled","features":[5,3]},{"name":"ExIsProcessorFeaturePresent","features":[5,3]},{"name":"ExIsResourceAcquiredExclusiveLite","features":[4,5,3,9]},{"name":"ExIsResourceAcquiredSharedLite","features":[4,5,9]},{"name":"ExIsSoftBoot","features":[5,3]},{"name":"ExLocalTimeToSystemTime","features":[5]},{"name":"ExNotifyCallback","features":[5]},{"name":"ExQueryTimerResolution","features":[5]},{"name":"ExQueueWorkItem","features":[4,5,9]},{"name":"ExRaiseAccessViolation","features":[5]},{"name":"ExRaiseDatatypeMisalignment","features":[5]},{"name":"ExRaiseStatus","features":[5,3]},{"name":"ExReInitializeRundownProtection","features":[5]},{"name":"ExReInitializeRundownProtectionCacheAware","features":[4,5]},{"name":"ExRegisterCallback","features":[4,5]},{"name":"ExReinitializeResourceLite","features":[4,5,3,9]},{"name":"ExReleaseFastMutex","features":[4,5,3,9]},{"name":"ExReleaseFastMutexUnsafe","features":[4,5,3,9]},{"name":"ExReleasePushLockExclusiveEx","features":[5]},{"name":"ExReleasePushLockSharedEx","features":[5]},{"name":"ExReleaseResourceAndLeaveCriticalRegion","features":[4,5,9]},{"name":"ExReleaseResourceForThreadLite","features":[4,5,9]},{"name":"ExReleaseResourceLite","features":[4,5,9]},{"name":"ExReleaseRundownProtection","features":[5]},{"name":"ExReleaseRundownProtectionCacheAware","features":[4,5]},{"name":"ExReleaseRundownProtectionCacheAwareEx","features":[4,5]},{"name":"ExReleaseRundownProtectionEx","features":[5]},{"name":"ExReleaseSpinLockExclusive","features":[5]},{"name":"ExReleaseSpinLockExclusiveFromDpcLevel","features":[5]},{"name":"ExReleaseSpinLockShared","features":[5]},{"name":"ExReleaseSpinLockSharedFromDpcLevel","features":[5]},{"name":"ExRundownCompleted","features":[5]},{"name":"ExRundownCompletedCacheAware","features":[4,5]},{"name":"ExSecurePoolUpdate","features":[5,3]},{"name":"ExSecurePoolValidate","features":[5,3]},{"name":"ExSetFirmwareEnvironmentVariable","features":[5,3]},{"name":"ExSetResourceOwnerPointer","features":[4,5,9]},{"name":"ExSetResourceOwnerPointerEx","features":[4,5,9]},{"name":"ExSetTimer","features":[4,5,3]},{"name":"ExSetTimerResolution","features":[5,3]},{"name":"ExSizeOfRundownProtectionCacheAware","features":[5]},{"name":"ExSystemTimeToLocalTime","features":[5]},{"name":"ExTryAcquireSpinLockExclusiveAtDpcLevel","features":[5]},{"name":"ExTryAcquireSpinLockSharedAtDpcLevel","features":[5]},{"name":"ExTryConvertSharedSpinLockExclusive","features":[5]},{"name":"ExTryToAcquireFastMutex","features":[4,5,3,9]},{"name":"ExUnregisterCallback","features":[5]},{"name":"ExUuidCreate","features":[5,3]},{"name":"ExVerifySuite","features":[5,3,9]},{"name":"ExWaitForRundownProtectionRelease","features":[5]},{"name":"ExWaitForRundownProtectionReleaseCacheAware","features":[4,5]},{"name":"Executive","features":[5]},{"name":"ExternalFault","features":[5]},{"name":"FAULT_INFORMATION","features":[4,7,5,3,6,8,9,10]},{"name":"FAULT_INFORMATION_ARCH","features":[5]},{"name":"FAULT_INFORMATION_ARM64","features":[4,7,5,3,6,8,9,10]},{"name":"FAULT_INFORMATION_ARM64_FLAGS","features":[5]},{"name":"FAULT_INFORMATION_ARM64_TYPE","features":[5]},{"name":"FAULT_INFORMATION_X64","features":[5]},{"name":"FAULT_INFORMATION_X64_FLAGS","features":[5]},{"name":"FILE_128_BYTE_ALIGNMENT","features":[5]},{"name":"FILE_256_BYTE_ALIGNMENT","features":[5]},{"name":"FILE_32_BYTE_ALIGNMENT","features":[5]},{"name":"FILE_512_BYTE_ALIGNMENT","features":[5]},{"name":"FILE_64_BYTE_ALIGNMENT","features":[5]},{"name":"FILE_ATTRIBUTE_TAG_INFORMATION","features":[5]},{"name":"FILE_ATTRIBUTE_VALID_FLAGS","features":[5]},{"name":"FILE_ATTRIBUTE_VALID_KERNEL_SET_FLAGS","features":[5]},{"name":"FILE_ATTRIBUTE_VALID_SET_FLAGS","features":[5]},{"name":"FILE_AUTOGENERATED_DEVICE_NAME","features":[5]},{"name":"FILE_BYTE_ALIGNMENT","features":[5]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL","features":[5]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_DEPRECATED","features":[5]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_EX","features":[5]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL","features":[5]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_DEPRECATED","features":[5]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_EX","features":[5]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK","features":[5]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_DEPRECATED","features":[5]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_EX","features":[5]},{"name":"FILE_CHARACTERISTIC_CSV","features":[5]},{"name":"FILE_CHARACTERISTIC_PNP_DEVICE","features":[5]},{"name":"FILE_CHARACTERISTIC_TS_DEVICE","features":[5]},{"name":"FILE_CHARACTERISTIC_WEBDAV_DEVICE","features":[5]},{"name":"FILE_DEVICE_ALLOW_APPCONTAINER_TRAVERSAL","features":[5]},{"name":"FILE_DEVICE_IS_MOUNTED","features":[5]},{"name":"FILE_DEVICE_REQUIRE_SECURITY_CHECK","features":[5]},{"name":"FILE_DEVICE_SECURE_OPEN","features":[5]},{"name":"FILE_END_OF_FILE_INFORMATION","features":[5]},{"name":"FILE_FLOPPY_DISKETTE","features":[5]},{"name":"FILE_FS_DEVICE_INFORMATION","features":[5]},{"name":"FILE_FS_FULL_SIZE_INFORMATION","features":[5]},{"name":"FILE_FS_FULL_SIZE_INFORMATION_EX","features":[5]},{"name":"FILE_FS_LABEL_INFORMATION","features":[5]},{"name":"FILE_FS_METADATA_SIZE_INFORMATION","features":[5]},{"name":"FILE_FS_OBJECTID_INFORMATION","features":[5]},{"name":"FILE_FS_SIZE_INFORMATION","features":[5]},{"name":"FILE_FS_VOLUME_INFORMATION","features":[5,3]},{"name":"FILE_IOSTATUSBLOCK_RANGE_INFORMATION","features":[5]},{"name":"FILE_IO_COMPLETION_NOTIFICATION_INFORMATION","features":[5]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION","features":[4,5]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION_EX","features":[4,5,3]},{"name":"FILE_IS_REMOTE_DEVICE_INFORMATION","features":[5,3]},{"name":"FILE_LONG_ALIGNMENT","features":[5]},{"name":"FILE_MEMORY_PARTITION_INFORMATION","features":[5]},{"name":"FILE_NUMA_NODE_INFORMATION","features":[5]},{"name":"FILE_OCTA_ALIGNMENT","features":[5]},{"name":"FILE_PORTABLE_DEVICE","features":[5]},{"name":"FILE_PROCESS_IDS_USING_FILE_INFORMATION","features":[5]},{"name":"FILE_QUAD_ALIGNMENT","features":[5]},{"name":"FILE_QUERY_INDEX_SPECIFIED","features":[5]},{"name":"FILE_QUERY_NO_CURSOR_UPDATE","features":[5]},{"name":"FILE_QUERY_RESTART_SCAN","features":[5]},{"name":"FILE_QUERY_RETURN_ON_DISK_ENTRIES_ONLY","features":[5]},{"name":"FILE_QUERY_RETURN_SINGLE_ENTRY","features":[5]},{"name":"FILE_READ_ONLY_DEVICE","features":[5]},{"name":"FILE_REMOTE_DEVICE","features":[5]},{"name":"FILE_REMOTE_DEVICE_VSMB","features":[5]},{"name":"FILE_REMOVABLE_MEDIA","features":[5]},{"name":"FILE_SFIO_RESERVE_INFORMATION","features":[5,3]},{"name":"FILE_SFIO_VOLUME_INFORMATION","features":[5]},{"name":"FILE_SHARE_VALID_FLAGS","features":[5]},{"name":"FILE_SKIP_SET_USER_EVENT_ON_FAST_IO","features":[5]},{"name":"FILE_STANDARD_INFORMATION_EX","features":[5,3]},{"name":"FILE_USE_FILE_POINTER_POSITION","features":[5]},{"name":"FILE_VALID_DATA_LENGTH_INFORMATION","features":[5]},{"name":"FILE_VALID_EXTENDED_OPTION_FLAGS","features":[5]},{"name":"FILE_VIRTUAL_VOLUME","features":[5]},{"name":"FILE_WORD_ALIGNMENT","features":[5]},{"name":"FILE_WRITE_ONCE_MEDIA","features":[5]},{"name":"FILE_WRITE_TO_END_OF_FILE","features":[5]},{"name":"FIRMWARE_ERROR_RECORD_REFERENCE_GUID","features":[5]},{"name":"FLAG_OWNER_POINTER_IS_THREAD","features":[5]},{"name":"FLOATING_SAVE_AREA","features":[5]},{"name":"FLUSH_MULTIPLE_MAXIMUM","features":[5]},{"name":"FM_LOCK_BIT","features":[5]},{"name":"FM_LOCK_BIT_V","features":[5]},{"name":"FO_ALERTABLE_IO","features":[5]},{"name":"FO_BYPASS_IO_ENABLED","features":[5]},{"name":"FO_CACHE_SUPPORTED","features":[5]},{"name":"FO_CLEANUP_COMPLETE","features":[5]},{"name":"FO_DELETE_ON_CLOSE","features":[5]},{"name":"FO_DIRECT_DEVICE_OPEN","features":[5]},{"name":"FO_DISALLOW_EXCLUSIVE","features":[5]},{"name":"FO_FILE_FAST_IO_READ","features":[5]},{"name":"FO_FILE_MODIFIED","features":[5]},{"name":"FO_FILE_OPEN","features":[5]},{"name":"FO_FILE_OPEN_CANCELLED","features":[5]},{"name":"FO_FILE_SIZE_CHANGED","features":[5]},{"name":"FO_FLAGS_VALID_ONLY_DURING_CREATE","features":[5]},{"name":"FO_GENERATE_AUDIT_ON_CLOSE","features":[5]},{"name":"FO_HANDLE_CREATED","features":[5]},{"name":"FO_INDIRECT_WAIT_OBJECT","features":[5]},{"name":"FO_MAILSLOT","features":[5]},{"name":"FO_NAMED_PIPE","features":[5]},{"name":"FO_NO_INTERMEDIATE_BUFFERING","features":[5]},{"name":"FO_OPENED_CASE_SENSITIVE","features":[5]},{"name":"FO_QUEUE_IRP_TO_THREAD","features":[5]},{"name":"FO_RANDOM_ACCESS","features":[5]},{"name":"FO_REMOTE_ORIGIN","features":[5]},{"name":"FO_SECTION_MINSTORE_TREATMENT","features":[5]},{"name":"FO_SEQUENTIAL_ONLY","features":[5]},{"name":"FO_SKIP_COMPLETION_PORT","features":[5]},{"name":"FO_SKIP_SET_EVENT","features":[5]},{"name":"FO_SKIP_SET_FAST_IO","features":[5]},{"name":"FO_STREAM_FILE","features":[5]},{"name":"FO_SYNCHRONOUS_IO","features":[5]},{"name":"FO_TEMPORARY_FILE","features":[5]},{"name":"FO_VOLUME_OPEN","features":[5]},{"name":"FO_WRITE_THROUGH","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_16GB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1GB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1MB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_256MB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_2GB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_32GB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_4GB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_512MB","features":[5]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_8GB","features":[5]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_16MB","features":[5]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_1MB","features":[5]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_2MB","features":[5]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_4MB","features":[5]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_8MB","features":[5]},{"name":"FPB_MEM_VECTOR_GRANULARITY_1B","features":[5]},{"name":"FPB_RID_VECTOR_GRANULARITY_256RIDS","features":[5]},{"name":"FPB_RID_VECTOR_GRANULARITY_64RIDS","features":[5]},{"name":"FPB_RID_VECTOR_GRANULARITY_8RIDS","features":[5]},{"name":"FPB_VECTOR_SELECT_MEM_HIGH","features":[5]},{"name":"FPB_VECTOR_SELECT_MEM_LOW","features":[5]},{"name":"FPB_VECTOR_SELECT_RID","features":[5]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_1KBITS","features":[5]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_256BITS","features":[5]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_2KBITS","features":[5]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_4KBITS","features":[5]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_512BITS","features":[5]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_8KBITS","features":[5]},{"name":"FPGA_BUS_SCAN","features":[5]},{"name":"FPGA_CONTROL_CONFIG_SPACE","features":[5,3]},{"name":"FPGA_CONTROL_ERROR_REPORTING","features":[5,3]},{"name":"FPGA_CONTROL_INTERFACE","features":[5,3]},{"name":"FPGA_CONTROL_LINK","features":[5,3]},{"name":"FREE_FUNCTION","features":[5]},{"name":"FUNCTION_LEVEL_DEVICE_RESET_PARAMETERS","features":[5]},{"name":"FWMI_NOTIFICATION_CALLBACK","features":[5]},{"name":"FailControl","features":[5]},{"name":"FaultInformationArm64","features":[5]},{"name":"FaultInformationInvalid","features":[5]},{"name":"FaultInformationX64","features":[5]},{"name":"FloatingPointProcessor","features":[5]},{"name":"FloppyDiskPeripheral","features":[5]},{"name":"FltIoNotifyRoutinesClass","features":[5]},{"name":"FreePage","features":[5]},{"name":"FsRtlIsTotalDeviceFailure","features":[5,3]},{"name":"FunctionLevelDeviceReset","features":[5]},{"name":"GENERIC_NOTIFY_TYPE_GUID","features":[5]},{"name":"GENERIC_SECTION_GUID","features":[5]},{"name":"GENPROC_FLAGS_CORRECTED","features":[5]},{"name":"GENPROC_FLAGS_OVERFLOW","features":[5]},{"name":"GENPROC_FLAGS_PRECISEIP","features":[5]},{"name":"GENPROC_FLAGS_RESTARTABLE","features":[5]},{"name":"GENPROC_OP_DATAREAD","features":[5]},{"name":"GENPROC_OP_DATAWRITE","features":[5]},{"name":"GENPROC_OP_GENERIC","features":[5]},{"name":"GENPROC_OP_INSTRUCTIONEXE","features":[5]},{"name":"GENPROC_PROCERRTYPE_BUS","features":[5]},{"name":"GENPROC_PROCERRTYPE_CACHE","features":[5]},{"name":"GENPROC_PROCERRTYPE_MAE","features":[5]},{"name":"GENPROC_PROCERRTYPE_TLB","features":[5]},{"name":"GENPROC_PROCERRTYPE_UNKNOWN","features":[5]},{"name":"GENPROC_PROCISA_ARM32","features":[5]},{"name":"GENPROC_PROCISA_ARM64","features":[5]},{"name":"GENPROC_PROCISA_IPF","features":[5]},{"name":"GENPROC_PROCISA_X64","features":[5]},{"name":"GENPROC_PROCISA_X86","features":[5]},{"name":"GENPROC_PROCTYPE_ARM","features":[5]},{"name":"GENPROC_PROCTYPE_IPF","features":[5]},{"name":"GENPROC_PROCTYPE_XPF","features":[5]},{"name":"GET_D3COLD_CAPABILITY","features":[5,3]},{"name":"GET_D3COLD_LAST_TRANSITION_STATUS","features":[5]},{"name":"GET_DEVICE_RESET_STATUS","features":[5,3]},{"name":"GET_DMA_ADAPTER","features":[4,7,5,3,6,8,9,10]},{"name":"GET_IDLE_WAKE_INFO","features":[5,3,10]},{"name":"GET_SDEV_IDENTIFIER","features":[5]},{"name":"GET_SET_DEVICE_DATA","features":[5]},{"name":"GET_UPDATED_BUS_RESOURCE","features":[5,3]},{"name":"GET_VIRTUAL_DEVICE_DATA","features":[5]},{"name":"GET_VIRTUAL_DEVICE_LOCATION","features":[5,3]},{"name":"GET_VIRTUAL_DEVICE_RESOURCES","features":[5]},{"name":"GET_VIRTUAL_FUNCTION_PROBED_BARS","features":[5,3]},{"name":"GUID_ECP_CREATE_USER_PROCESS","features":[5]},{"name":"GartHigh","features":[5]},{"name":"GartLow","features":[5]},{"name":"GenericEqual","features":[5]},{"name":"GenericGreaterThan","features":[5]},{"name":"GenericLessThan","features":[5]},{"name":"GlobalLoggerHandleClass","features":[5]},{"name":"GroupAffinityAllGroupZero","features":[5]},{"name":"GroupAffinityDontCare","features":[5]},{"name":"HAL_AMLI_BAD_IO_ADDRESS_LIST","features":[5,3]},{"name":"HAL_APIC_DESTINATION_MODE","features":[5]},{"name":"HAL_BUS_INFORMATION","features":[5]},{"name":"HAL_CALLBACKS","features":[4,5]},{"name":"HAL_DISPATCH","features":[4,7,5,3,6,8,24,9,10]},{"name":"HAL_DISPATCH_VERSION","features":[5]},{"name":"HAL_DISPLAY_BIOS_INFORMATION","features":[5]},{"name":"HAL_DMA_ADAPTER_VERSION_1","features":[5]},{"name":"HAL_DMA_CRASH_DUMP_REGISTER_TYPE","features":[5]},{"name":"HAL_ERROR_INFO","features":[5]},{"name":"HAL_MASK_UNMASK_FLAGS_NONE","features":[5]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_COMPLETE","features":[5]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_DEFERRED","features":[5]},{"name":"HAL_MCA_INTERFACE","features":[5,3]},{"name":"HAL_MCA_RECORD","features":[5]},{"name":"HAL_MCE_RECORD","features":[5]},{"name":"HAL_PLATFORM_ACPI_TABLES_CACHED","features":[5]},{"name":"HAL_PLATFORM_DISABLE_PTCG","features":[5]},{"name":"HAL_PLATFORM_DISABLE_UC_MAIN_MEMORY","features":[5]},{"name":"HAL_PLATFORM_DISABLE_WRITE_COMBINING","features":[5]},{"name":"HAL_PLATFORM_ENABLE_WRITE_COMBINING_MMIO","features":[5]},{"name":"HAL_PLATFORM_INFORMATION","features":[5]},{"name":"HAL_POWER_INFORMATION","features":[5]},{"name":"HAL_PROCESSOR_FEATURE","features":[5]},{"name":"HAL_PROCESSOR_SPEED_INFORMATION","features":[5]},{"name":"HAL_QUERY_INFORMATION_CLASS","features":[5]},{"name":"HAL_SET_INFORMATION_CLASS","features":[5]},{"name":"HARDWARE_COUNTER","features":[5]},{"name":"HARDWARE_COUNTER_TYPE","features":[5]},{"name":"HASH_STRING_ALGORITHM_DEFAULT","features":[5]},{"name":"HASH_STRING_ALGORITHM_INVALID","features":[5]},{"name":"HASH_STRING_ALGORITHM_X65599","features":[5]},{"name":"HIGH_LEVEL","features":[5]},{"name":"HIGH_PRIORITY","features":[5]},{"name":"HVL_WHEA_ERROR_NOTIFICATION","features":[5,3]},{"name":"HWPROFILE_CHANGE_NOTIFICATION","features":[5]},{"name":"HalAcpiAuditInformation","features":[5]},{"name":"HalAcquireDisplayOwnership","features":[5,3]},{"name":"HalAllocateAdapterChannel","features":[4,7,5,3,6,36,8,9,10]},{"name":"HalAllocateCommonBuffer","features":[5,3,36]},{"name":"HalAllocateCrashDumpRegisters","features":[5,36]},{"name":"HalAllocateHardwareCounters","features":[5,3,35]},{"name":"HalAssignSlotResources","features":[4,7,5,3,6,8,9,10]},{"name":"HalBugCheckSystem","features":[5,3,33]},{"name":"HalCallbackInformation","features":[5]},{"name":"HalChannelTopologyInformation","features":[5]},{"name":"HalCmcLog","features":[5]},{"name":"HalCmcLogInformation","features":[5]},{"name":"HalCmcRegisterDriver","features":[5]},{"name":"HalCpeLog","features":[5]},{"name":"HalCpeLogInformation","features":[5]},{"name":"HalCpeRegisterDriver","features":[5]},{"name":"HalDisplayBiosInformation","features":[5]},{"name":"HalDisplayEmulatedBios","features":[5]},{"name":"HalDisplayInt10Bios","features":[5]},{"name":"HalDisplayNoBios","features":[5]},{"name":"HalDmaAllocateCrashDumpRegistersEx","features":[5,3,36]},{"name":"HalDmaCrashDumpRegisterSet1","features":[5]},{"name":"HalDmaCrashDumpRegisterSet2","features":[5]},{"name":"HalDmaCrashDumpRegisterSetMax","features":[5]},{"name":"HalDmaFreeCrashDumpRegistersEx","features":[5,3,36]},{"name":"HalDmaRemappingInformation","features":[5]},{"name":"HalEnlightenment","features":[5]},{"name":"HalErrorInformation","features":[5]},{"name":"HalExamineMBR","features":[4,7,5,3,6,8,9,10]},{"name":"HalExternalCacheInformation","features":[5]},{"name":"HalFrameBufferCachingInformation","features":[5]},{"name":"HalFreeCommonBuffer","features":[5,3,36]},{"name":"HalFreeHardwareCounters","features":[5,3]},{"name":"HalFrequencyInformation","features":[5]},{"name":"HalFwBootPerformanceInformation","features":[5]},{"name":"HalFwS3PerformanceInformation","features":[5]},{"name":"HalGenerateCmcInterrupt","features":[5]},{"name":"HalGetAdapter","features":[5,3,36]},{"name":"HalGetBusData","features":[5]},{"name":"HalGetBusDataByOffset","features":[5]},{"name":"HalGetChannelPowerInformation","features":[5]},{"name":"HalGetInterruptVector","features":[5]},{"name":"HalHardwareWatchdogInformation","features":[5]},{"name":"HalHeterogeneousMemoryAttributesInterface","features":[5]},{"name":"HalHypervisorInformation","features":[5]},{"name":"HalI386ExceptionChainTerminatorInformation","features":[5]},{"name":"HalInformationClassUnused1","features":[5]},{"name":"HalInitLogInformation","features":[5]},{"name":"HalInstalledBusInformation","features":[5]},{"name":"HalInterruptControllerInformation","features":[5]},{"name":"HalIrtInformation","features":[5]},{"name":"HalKernelErrorHandler","features":[5]},{"name":"HalMakeBeep","features":[5,3]},{"name":"HalMapRegisterInformation","features":[5]},{"name":"HalMcaLog","features":[5]},{"name":"HalMcaLogInformation","features":[5]},{"name":"HalMcaRegisterDriver","features":[5]},{"name":"HalNumaRangeTableInformation","features":[5]},{"name":"HalNumaTopologyInterface","features":[5]},{"name":"HalParkingPageInformation","features":[5]},{"name":"HalPartitionIpiInterface","features":[5]},{"name":"HalPlatformInformation","features":[5]},{"name":"HalPlatformTimerInformation","features":[5]},{"name":"HalPowerInformation","features":[5]},{"name":"HalProcessorBrandString","features":[5]},{"name":"HalProcessorFeatureInformation","features":[5]},{"name":"HalProcessorSpeedInformation","features":[5]},{"name":"HalProfileDpgoSourceInterruptHandler","features":[5]},{"name":"HalProfileSourceAdd","features":[5]},{"name":"HalProfileSourceInformation","features":[5]},{"name":"HalProfileSourceInterruptHandler","features":[5]},{"name":"HalProfileSourceInterval","features":[5]},{"name":"HalProfileSourceRemove","features":[5]},{"name":"HalProfileSourceTimerHandler","features":[5]},{"name":"HalPsciInformation","features":[5]},{"name":"HalQueryAMLIIllegalIOPortAddresses","features":[5]},{"name":"HalQueryAcpiWakeAlarmSystemPowerStateInformation","features":[5]},{"name":"HalQueryArmErrataInformation","features":[5]},{"name":"HalQueryDebuggerInformation","features":[5]},{"name":"HalQueryHyperlaunchEntrypoint","features":[5]},{"name":"HalQueryIommuReservedRegionInformation","features":[5]},{"name":"HalQueryMaxHotPlugMemoryAddress","features":[5]},{"name":"HalQueryMcaInterface","features":[5]},{"name":"HalQueryPerDeviceMsiLimitInformation","features":[5]},{"name":"HalQueryProcessorEfficiencyInformation","features":[5]},{"name":"HalQueryProfileCorruptionStatus","features":[5]},{"name":"HalQueryProfileCounterOwnership","features":[5]},{"name":"HalQueryProfileNumberOfCounters","features":[5]},{"name":"HalQueryProfileSourceList","features":[5]},{"name":"HalQueryStateElementInformation","features":[5]},{"name":"HalQueryUnused0001","features":[5]},{"name":"HalReadDmaCounter","features":[5,36]},{"name":"HalRegisterSecondaryInterruptInterface","features":[5]},{"name":"HalSecondaryInterruptInformation","features":[5]},{"name":"HalSetBusData","features":[5]},{"name":"HalSetBusDataByOffset","features":[5]},{"name":"HalSetChannelPowerInformation","features":[5]},{"name":"HalSetClockTimerMinimumInterval","features":[5]},{"name":"HalSetHvciEnabled","features":[5]},{"name":"HalSetProcessorTraceInterruptHandler","features":[5]},{"name":"HalSetPsciSuspendMode","features":[5]},{"name":"HalSetResetParkDisposition","features":[5]},{"name":"HalSetSwInterruptHandler","features":[5]},{"name":"HalTranslateBusAddress","features":[5,3]},{"name":"HighImportance","features":[5]},{"name":"HighPagePriority","features":[5]},{"name":"HighPoolPriority","features":[5]},{"name":"HighPoolPrioritySpecialPoolOverrun","features":[5]},{"name":"HighPoolPrioritySpecialPoolUnderrun","features":[5]},{"name":"HotSpareControl","features":[5]},{"name":"HvlRegisterWheaErrorNotification","features":[5,3]},{"name":"HvlUnregisterWheaErrorNotification","features":[5,3]},{"name":"HyperCriticalWorkQueue","features":[5]},{"name":"IMAGE_ADDRESSING_MODE_32BIT","features":[5]},{"name":"IMAGE_INFO","features":[5]},{"name":"IMAGE_INFO_EX","features":[4,7,5,3,6,8,9,10]},{"name":"INITIAL_PRIVILEGE_COUNT","features":[5]},{"name":"INITIAL_PRIVILEGE_SET","features":[5,3,6]},{"name":"INIT_NOTIFY_TYPE_GUID","features":[5]},{"name":"INJECT_ERRTYPE_MEMORY_CORRECTABLE","features":[5]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLEFATAL","features":[5]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLENONFATAL","features":[5]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_CORRECTABLE","features":[5]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLEFATAL","features":[5]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLENONFATAL","features":[5]},{"name":"INJECT_ERRTYPE_PLATFORM_CORRECTABLE","features":[5]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLEFATAL","features":[5]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLENONFATAL","features":[5]},{"name":"INJECT_ERRTYPE_PROCESSOR_CORRECTABLE","features":[5]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLEFATAL","features":[5]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLENONFATAL","features":[5]},{"name":"INPUT_MAPPING_ELEMENT","features":[5]},{"name":"INTEL_CACHE_INFO_EAX","features":[5]},{"name":"INTEL_CACHE_INFO_EBX","features":[5]},{"name":"INTEL_CACHE_TYPE","features":[5]},{"name":"INTERFACE","features":[5]},{"name":"INTERFACE_TYPE","features":[5]},{"name":"INTERLOCKED_RESULT","features":[5]},{"name":"IOCTL_CANCEL_DEVICE_WAKE","features":[5]},{"name":"IOCTL_QUERY_DEVICE_POWER_STATE","features":[5]},{"name":"IOCTL_SET_DEVICE_WAKE","features":[5]},{"name":"IOMMU_ACCESS_NONE","features":[5]},{"name":"IOMMU_ACCESS_READ","features":[5]},{"name":"IOMMU_ACCESS_WRITE","features":[5]},{"name":"IOMMU_DEVICE_CREATE","features":[4,7,5,3,6,8,9,10]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION","features":[5,9]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_ACPI","features":[5]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_TYPE","features":[5]},{"name":"IOMMU_DEVICE_DELETE","features":[4,5,3]},{"name":"IOMMU_DEVICE_FAULT_HANDLER","features":[4,7,5,3,6,8,9,10]},{"name":"IOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[4,5]},{"name":"IOMMU_DMA_DOMAIN_CREATION_FLAGS","features":[5]},{"name":"IOMMU_DMA_DOMAIN_TYPE","features":[5]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN","features":[5]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN_MAPPED_SEGMENT","features":[5]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_CONFIG","features":[5]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_TYPE","features":[5]},{"name":"IOMMU_DMA_RESERVED_REGION","features":[5,3]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE","features":[4,7,5,3,6,8,9,10]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[4,5,3]},{"name":"IOMMU_DOMAIN_CONFIGURE","features":[4,5,3]},{"name":"IOMMU_DOMAIN_CREATE","features":[4,5,3]},{"name":"IOMMU_DOMAIN_CREATE_EX","features":[4,5,3]},{"name":"IOMMU_DOMAIN_DELETE","features":[4,5,3]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE","features":[4,7,5,3,6,8,9,10]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE_EX","features":[4,5,3]},{"name":"IOMMU_FLUSH_DOMAIN","features":[4,5,3]},{"name":"IOMMU_FLUSH_DOMAIN_VA_LIST","features":[4,5,3]},{"name":"IOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[5,3]},{"name":"IOMMU_INTERFACE_STATE_CHANGE","features":[5]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[5]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_FIELDS","features":[5]},{"name":"IOMMU_MAP_IDENTITY_RANGE","features":[4,5,3]},{"name":"IOMMU_MAP_IDENTITY_RANGE_EX","features":[4,5,3]},{"name":"IOMMU_MAP_LOGICAL_RANGE","features":[4,5,3]},{"name":"IOMMU_MAP_LOGICAL_RANGE_EX","features":[4,5,3]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS","features":[4,5]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS_TYPE","features":[5]},{"name":"IOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[4,5,3]},{"name":"IOMMU_QUERY_INPUT_MAPPINGS","features":[4,7,5,3,6,8,9,10]},{"name":"IOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[4,5,3]},{"name":"IOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[4,5,3]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING","features":[4,7,5,3,6,8,9,10]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[4,5,3]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE","features":[4,5,3]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE_EX","features":[4,5,3]},{"name":"IOMMU_UNMAP_LOGICAL_RANGE","features":[4,5,3]},{"name":"IOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[5,3]},{"name":"IOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[4,5,3]},{"name":"IO_ACCESS_MODE","features":[5]},{"name":"IO_ACCESS_TYPE","features":[5]},{"name":"IO_ALLOCATION_ACTION","features":[5]},{"name":"IO_ATTACH_DEVICE","features":[5]},{"name":"IO_ATTRIBUTION_INFORMATION","features":[5]},{"name":"IO_ATTRIBUTION_INFO_V1","features":[5]},{"name":"IO_CHECK_CREATE_PARAMETERS","features":[5]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_DELETE","features":[5]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_READ","features":[5]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_WRITE","features":[5]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_UPDATE_FILE_OBJECT","features":[5]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_CHECK","features":[5]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_USING_SCB","features":[5]},{"name":"IO_CHECK_SHARE_ACCESS_UPDATE_SHARE_ACCESS","features":[5]},{"name":"IO_COMPLETION_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"IO_COMPLETION_ROUTINE_RESULT","features":[5]},{"name":"IO_CONNECT_INTERRUPT_FULLY_SPECIFIED_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CONNECT_INTERRUPT_LINE_BASED_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CONNECT_INTERRUPT_MESSAGE_BASED_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CONNECT_INTERRUPT_PARAMETERS","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CONTAINER_INFORMATION_CLASS","features":[5]},{"name":"IO_CONTAINER_NOTIFICATION_CLASS","features":[5]},{"name":"IO_CSQ","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_ACQUIRE_LOCK","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_COMPLETE_CANCELED_IRP","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_INSERT_IRP","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_INSERT_IRP_EX","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_IRP_CONTEXT","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_PEEK_NEXT_IRP","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_RELEASE_LOCK","features":[4,7,5,3,6,8,9,10]},{"name":"IO_CSQ_REMOVE_IRP","features":[4,7,5,3,6,8,9,10]},{"name":"IO_DISCONNECT_INTERRUPT_PARAMETERS","features":[4,5]},{"name":"IO_DPC_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"IO_DRIVER_CREATE_CONTEXT","features":[4,5]},{"name":"IO_ERROR_LOG_MESSAGE","features":[5,3]},{"name":"IO_ERROR_LOG_PACKET","features":[5,3]},{"name":"IO_FOEXT_SHADOW_FILE","features":[4,7,5,3,6,8,9,10]},{"name":"IO_FOEXT_SILO_PARAMETERS","features":[4,5]},{"name":"IO_FORCE_ACCESS_CHECK","features":[5]},{"name":"IO_IGNORE_SHARE_ACCESS_CHECK","features":[5]},{"name":"IO_INTERRUPT_MESSAGE_INFO","features":[4,5]},{"name":"IO_INTERRUPT_MESSAGE_INFO_ENTRY","features":[4,5]},{"name":"IO_KEYBOARD_INCREMENT","features":[5]},{"name":"IO_MOUSE_INCREMENT","features":[5]},{"name":"IO_NOTIFICATION_EVENT_CATEGORY","features":[5]},{"name":"IO_NO_PARAMETER_CHECKING","features":[5]},{"name":"IO_PAGING_PRIORITY","features":[5]},{"name":"IO_PARALLEL_INCREMENT","features":[5]},{"name":"IO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[4,7,5,3,6,8,9,10]},{"name":"IO_QUERY_DEVICE_DATA_FORMAT","features":[5]},{"name":"IO_REMOUNT","features":[5]},{"name":"IO_REMOVE_LOCK","features":[4,5,3,9]},{"name":"IO_REMOVE_LOCK_COMMON_BLOCK","features":[4,5,3,9]},{"name":"IO_REMOVE_LOCK_DBG_BLOCK","features":[4,5,9]},{"name":"IO_REPARSE","features":[5]},{"name":"IO_REPARSE_GLOBAL","features":[5]},{"name":"IO_REPORT_INTERRUPT_ACTIVE_STATE_PARAMETERS","features":[4,5]},{"name":"IO_RESOURCE_ALTERNATIVE","features":[5]},{"name":"IO_RESOURCE_DEFAULT","features":[5]},{"name":"IO_RESOURCE_DESCRIPTOR","features":[5]},{"name":"IO_RESOURCE_LIST","features":[5]},{"name":"IO_RESOURCE_PREFERRED","features":[5]},{"name":"IO_RESOURCE_REQUIREMENTS_LIST","features":[5]},{"name":"IO_SERIAL_INCREMENT","features":[5]},{"name":"IO_SESSION_CONNECT_INFO","features":[5,3]},{"name":"IO_SESSION_EVENT","features":[5]},{"name":"IO_SESSION_MAX_PAYLOAD_SIZE","features":[5]},{"name":"IO_SESSION_NOTIFICATION_FUNCTION","features":[5,3]},{"name":"IO_SESSION_STATE","features":[5]},{"name":"IO_SESSION_STATE_ALL_EVENTS","features":[5]},{"name":"IO_SESSION_STATE_CONNECT_EVENT","features":[5]},{"name":"IO_SESSION_STATE_CREATION_EVENT","features":[5]},{"name":"IO_SESSION_STATE_DISCONNECT_EVENT","features":[5]},{"name":"IO_SESSION_STATE_INFORMATION","features":[5,3]},{"name":"IO_SESSION_STATE_LOGOFF_EVENT","features":[5]},{"name":"IO_SESSION_STATE_LOGON_EVENT","features":[5]},{"name":"IO_SESSION_STATE_NOTIFICATION","features":[5]},{"name":"IO_SESSION_STATE_TERMINATION_EVENT","features":[5]},{"name":"IO_SESSION_STATE_VALID_EVENT_MASK","features":[5]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FLAGS_MASK","features":[5]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_PROCESS","features":[5]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_THREAD","features":[5]},{"name":"IO_SHARE_ACCESS_NON_PRIMARY_STREAM","features":[5]},{"name":"IO_SHARE_ACCESS_NO_WRITE_PERMISSION","features":[5]},{"name":"IO_SOUND_INCREMENT","features":[5]},{"name":"IO_STATUS_BLOCK32","features":[5,3]},{"name":"IO_STATUS_BLOCK64","features":[5,3]},{"name":"IO_TIMER_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"IO_TYPE_ADAPTER","features":[5]},{"name":"IO_TYPE_CONTROLLER","features":[5]},{"name":"IO_TYPE_CSQ","features":[5]},{"name":"IO_TYPE_CSQ_EX","features":[5]},{"name":"IO_TYPE_CSQ_IRP_CONTEXT","features":[5]},{"name":"IO_TYPE_DEVICE","features":[5]},{"name":"IO_TYPE_DEVICE_OBJECT_EXTENSION","features":[5]},{"name":"IO_TYPE_DRIVER","features":[5]},{"name":"IO_TYPE_ERROR_LOG","features":[5]},{"name":"IO_TYPE_ERROR_MESSAGE","features":[5]},{"name":"IO_TYPE_FILE","features":[5]},{"name":"IO_TYPE_IORING","features":[5]},{"name":"IO_TYPE_IRP","features":[5]},{"name":"IO_TYPE_MASTER_ADAPTER","features":[5]},{"name":"IO_TYPE_OPEN_PACKET","features":[5]},{"name":"IO_TYPE_TIMER","features":[5]},{"name":"IO_TYPE_VPB","features":[5]},{"name":"IO_VIDEO_INCREMENT","features":[5]},{"name":"IO_WORKITEM_ROUTINE","features":[4,7,5,3,6,8,9,10]},{"name":"IO_WORKITEM_ROUTINE_EX","features":[4,5]},{"name":"IPF_SAL_RECORD_SECTION_GUID","features":[5]},{"name":"IPI_LEVEL","features":[5]},{"name":"IPMI_MSR_DUMP_SECTION_GUID","features":[5]},{"name":"IRP_ALLOCATED_FIXED_SIZE","features":[5]},{"name":"IRP_ALLOCATED_MUST_SUCCEED","features":[5]},{"name":"IRP_ASSOCIATED_IRP","features":[5]},{"name":"IRP_BUFFERED_IO","features":[5]},{"name":"IRP_CLOSE_OPERATION","features":[5]},{"name":"IRP_CREATE_OPERATION","features":[5]},{"name":"IRP_DEALLOCATE_BUFFER","features":[5]},{"name":"IRP_DEFER_IO_COMPLETION","features":[5]},{"name":"IRP_HOLD_DEVICE_QUEUE","features":[5]},{"name":"IRP_INPUT_OPERATION","features":[5]},{"name":"IRP_LOOKASIDE_ALLOCATION","features":[5]},{"name":"IRP_MJ_CLEANUP","features":[5]},{"name":"IRP_MJ_CLOSE","features":[5]},{"name":"IRP_MJ_CREATE","features":[5]},{"name":"IRP_MJ_CREATE_MAILSLOT","features":[5]},{"name":"IRP_MJ_CREATE_NAMED_PIPE","features":[5]},{"name":"IRP_MJ_DEVICE_CHANGE","features":[5]},{"name":"IRP_MJ_DEVICE_CONTROL","features":[5]},{"name":"IRP_MJ_DIRECTORY_CONTROL","features":[5]},{"name":"IRP_MJ_FILE_SYSTEM_CONTROL","features":[5]},{"name":"IRP_MJ_FLUSH_BUFFERS","features":[5]},{"name":"IRP_MJ_INTERNAL_DEVICE_CONTROL","features":[5]},{"name":"IRP_MJ_LOCK_CONTROL","features":[5]},{"name":"IRP_MJ_MAXIMUM_FUNCTION","features":[5]},{"name":"IRP_MJ_PNP","features":[5]},{"name":"IRP_MJ_PNP_POWER","features":[5]},{"name":"IRP_MJ_POWER","features":[5]},{"name":"IRP_MJ_QUERY_EA","features":[5]},{"name":"IRP_MJ_QUERY_INFORMATION","features":[5]},{"name":"IRP_MJ_QUERY_QUOTA","features":[5]},{"name":"IRP_MJ_QUERY_SECURITY","features":[5]},{"name":"IRP_MJ_QUERY_VOLUME_INFORMATION","features":[5]},{"name":"IRP_MJ_READ","features":[5]},{"name":"IRP_MJ_SCSI","features":[5]},{"name":"IRP_MJ_SET_EA","features":[5]},{"name":"IRP_MJ_SET_INFORMATION","features":[5]},{"name":"IRP_MJ_SET_QUOTA","features":[5]},{"name":"IRP_MJ_SET_SECURITY","features":[5]},{"name":"IRP_MJ_SET_VOLUME_INFORMATION","features":[5]},{"name":"IRP_MJ_SHUTDOWN","features":[5]},{"name":"IRP_MJ_SYSTEM_CONTROL","features":[5]},{"name":"IRP_MJ_WRITE","features":[5]},{"name":"IRP_MN_CANCEL_REMOVE_DEVICE","features":[5]},{"name":"IRP_MN_CANCEL_STOP_DEVICE","features":[5]},{"name":"IRP_MN_CHANGE_SINGLE_INSTANCE","features":[5]},{"name":"IRP_MN_CHANGE_SINGLE_ITEM","features":[5]},{"name":"IRP_MN_COMPLETE","features":[5]},{"name":"IRP_MN_COMPRESSED","features":[5]},{"name":"IRP_MN_DEVICE_ENUMERATED","features":[5]},{"name":"IRP_MN_DEVICE_USAGE_NOTIFICATION","features":[5]},{"name":"IRP_MN_DISABLE_COLLECTION","features":[5]},{"name":"IRP_MN_DISABLE_EVENTS","features":[5]},{"name":"IRP_MN_DPC","features":[5]},{"name":"IRP_MN_EJECT","features":[5]},{"name":"IRP_MN_ENABLE_COLLECTION","features":[5]},{"name":"IRP_MN_ENABLE_EVENTS","features":[5]},{"name":"IRP_MN_EXECUTE_METHOD","features":[5]},{"name":"IRP_MN_FILTER_RESOURCE_REQUIREMENTS","features":[5]},{"name":"IRP_MN_FLUSH_AND_PURGE","features":[5]},{"name":"IRP_MN_FLUSH_DATA_ONLY","features":[5]},{"name":"IRP_MN_FLUSH_DATA_SYNC_ONLY","features":[5]},{"name":"IRP_MN_FLUSH_NO_SYNC","features":[5]},{"name":"IRP_MN_KERNEL_CALL","features":[5]},{"name":"IRP_MN_LOAD_FILE_SYSTEM","features":[5]},{"name":"IRP_MN_LOCK","features":[5]},{"name":"IRP_MN_MDL","features":[5]},{"name":"IRP_MN_MOUNT_VOLUME","features":[5]},{"name":"IRP_MN_NORMAL","features":[5]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY","features":[5]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY_EX","features":[5]},{"name":"IRP_MN_POWER_SEQUENCE","features":[5]},{"name":"IRP_MN_QUERY_ALL_DATA","features":[5]},{"name":"IRP_MN_QUERY_BUS_INFORMATION","features":[5]},{"name":"IRP_MN_QUERY_CAPABILITIES","features":[5]},{"name":"IRP_MN_QUERY_DEVICE_RELATIONS","features":[5]},{"name":"IRP_MN_QUERY_DEVICE_TEXT","features":[5]},{"name":"IRP_MN_QUERY_DIRECTORY","features":[5]},{"name":"IRP_MN_QUERY_ID","features":[5]},{"name":"IRP_MN_QUERY_INTERFACE","features":[5]},{"name":"IRP_MN_QUERY_LEGACY_BUS_INFORMATION","features":[5]},{"name":"IRP_MN_QUERY_PNP_DEVICE_STATE","features":[5]},{"name":"IRP_MN_QUERY_POWER","features":[5]},{"name":"IRP_MN_QUERY_REMOVE_DEVICE","features":[5]},{"name":"IRP_MN_QUERY_RESOURCES","features":[5]},{"name":"IRP_MN_QUERY_RESOURCE_REQUIREMENTS","features":[5]},{"name":"IRP_MN_QUERY_SINGLE_INSTANCE","features":[5]},{"name":"IRP_MN_QUERY_STOP_DEVICE","features":[5]},{"name":"IRP_MN_READ_CONFIG","features":[5]},{"name":"IRP_MN_REGINFO","features":[5]},{"name":"IRP_MN_REGINFO_EX","features":[5]},{"name":"IRP_MN_REMOVE_DEVICE","features":[5]},{"name":"IRP_MN_SCSI_CLASS","features":[5]},{"name":"IRP_MN_SET_LOCK","features":[5]},{"name":"IRP_MN_SET_POWER","features":[5]},{"name":"IRP_MN_START_DEVICE","features":[5]},{"name":"IRP_MN_STOP_DEVICE","features":[5]},{"name":"IRP_MN_SURPRISE_REMOVAL","features":[5]},{"name":"IRP_MN_TRACK_LINK","features":[5]},{"name":"IRP_MN_UNLOCK_ALL","features":[5]},{"name":"IRP_MN_UNLOCK_ALL_BY_KEY","features":[5]},{"name":"IRP_MN_UNLOCK_SINGLE","features":[5]},{"name":"IRP_MN_USER_FS_REQUEST","features":[5]},{"name":"IRP_MN_VERIFY_VOLUME","features":[5]},{"name":"IRP_MN_WAIT_WAKE","features":[5]},{"name":"IRP_MN_WRITE_CONFIG","features":[5]},{"name":"IRP_MOUNT_COMPLETION","features":[5]},{"name":"IRP_NOCACHE","features":[5]},{"name":"IRP_OB_QUERY_NAME","features":[5]},{"name":"IRP_PAGING_IO","features":[5]},{"name":"IRP_QUOTA_CHARGED","features":[5]},{"name":"IRP_READ_OPERATION","features":[5]},{"name":"IRP_SYNCHRONOUS_API","features":[5]},{"name":"IRP_SYNCHRONOUS_PAGING_IO","features":[5]},{"name":"IRP_UM_DRIVER_INITIATED_IO","features":[5]},{"name":"IRP_WRITE_OPERATION","features":[5]},{"name":"IRQ_DEVICE_POLICY","features":[5]},{"name":"IRQ_GROUP_POLICY","features":[5]},{"name":"IRQ_PRIORITY","features":[5]},{"name":"InACriticalArrayControl","features":[5]},{"name":"InAFailedArrayControl","features":[5]},{"name":"IndicatorBlink","features":[5]},{"name":"IndicatorOff","features":[5]},{"name":"IndicatorOn","features":[5]},{"name":"InitiateReset","features":[5]},{"name":"InstallStateFailedInstall","features":[5]},{"name":"InstallStateFinishInstall","features":[5]},{"name":"InstallStateInstalled","features":[5]},{"name":"InstallStateNeedsReinstall","features":[5]},{"name":"IntelCacheData","features":[5]},{"name":"IntelCacheInstruction","features":[5]},{"name":"IntelCacheNull","features":[5]},{"name":"IntelCacheRam","features":[5]},{"name":"IntelCacheTrace","features":[5]},{"name":"IntelCacheUnified","features":[5]},{"name":"InterfaceTypeUndefined","features":[5]},{"name":"Internal","features":[5]},{"name":"InternalPowerBus","features":[5]},{"name":"InterruptActiveBoth","features":[5]},{"name":"InterruptActiveBothTriggerHigh","features":[5]},{"name":"InterruptActiveBothTriggerLow","features":[5]},{"name":"InterruptActiveHigh","features":[5]},{"name":"InterruptActiveLow","features":[5]},{"name":"InterruptFallingEdge","features":[5]},{"name":"InterruptPolarityUnknown","features":[5]},{"name":"InterruptRisingEdge","features":[5]},{"name":"InvalidDeviceTypeControl","features":[5]},{"name":"IoAcquireCancelSpinLock","features":[5]},{"name":"IoAcquireKsrPersistentMemory","features":[4,7,5,3,6,8,9,10]},{"name":"IoAcquireKsrPersistentMemoryEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoAcquireRemoveLockEx","features":[4,5,3,9]},{"name":"IoAllocateAdapterChannel","features":[4,7,5,3,6,36,8,9,10]},{"name":"IoAllocateController","features":[4,7,5,3,6,8,9,10]},{"name":"IoAllocateDriverObjectExtension","features":[4,7,5,3,6,8,9,10]},{"name":"IoAllocateErrorLogEntry","features":[5]},{"name":"IoAllocateIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoAllocateIrpEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoAllocateMdl","features":[4,7,5,3,6,8,9,10]},{"name":"IoAllocateSfioStreamIdentifier","features":[4,7,5,3,6,8,9,10]},{"name":"IoAllocateWorkItem","features":[4,7,5,3,6,8,9,10]},{"name":"IoAssignResources","features":[4,7,5,3,6,8,9,10]},{"name":"IoAttachDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoAttachDeviceByPointer","features":[4,7,5,3,6,8,9,10]},{"name":"IoAttachDeviceToDeviceStack","features":[4,7,5,3,6,8,9,10]},{"name":"IoAttachDeviceToDeviceStackSafe","features":[4,7,5,3,6,8,9,10]},{"name":"IoBuildAsynchronousFsdRequest","features":[4,7,5,3,6,8,9,10]},{"name":"IoBuildDeviceIoControlRequest","features":[4,7,5,3,6,8,9,10]},{"name":"IoBuildPartialMdl","features":[4,5]},{"name":"IoBuildSynchronousFsdRequest","features":[4,7,5,3,6,8,9,10]},{"name":"IoCancelFileOpen","features":[4,7,5,3,6,8,9,10]},{"name":"IoCancelIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoCheckLinkShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoCheckShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoCheckShareAccessEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoCleanupIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoClearActivityIdThread","features":[5]},{"name":"IoClearIrpExtraCreateParameter","features":[4,7,5,3,6,8,9,10]},{"name":"IoConnectInterrupt","features":[4,5,3]},{"name":"IoConnectInterruptEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoCreateController","features":[4,5,3,9]},{"name":"IoCreateDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoCreateDisk","features":[4,7,5,3,6,8,24,9,10]},{"name":"IoCreateFile","features":[4,5,3,8]},{"name":"IoCreateFileEx","features":[4,5,3,8]},{"name":"IoCreateFileSpecifyDeviceObjectHint","features":[4,5,3,8]},{"name":"IoCreateNotificationEvent","features":[4,5,3,9]},{"name":"IoCreateSymbolicLink","features":[5,3]},{"name":"IoCreateSynchronizationEvent","features":[4,5,3,9]},{"name":"IoCreateSystemThread","features":[4,5,3,37]},{"name":"IoCreateUnprotectedSymbolicLink","features":[5,3]},{"name":"IoCsqInitialize","features":[4,7,5,3,6,8,9,10]},{"name":"IoCsqInitializeEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoCsqInsertIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoCsqInsertIrpEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoCsqRemoveIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoCsqRemoveNextIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoDecrementKeepAliveCount","features":[4,7,5,3,6,8,9,10]},{"name":"IoDeleteController","features":[4,5,3,9]},{"name":"IoDeleteDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoDeleteSymbolicLink","features":[5,3]},{"name":"IoDetachDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoDisconnectInterrupt","features":[4,5]},{"name":"IoDisconnectInterruptEx","features":[4,5]},{"name":"IoEnumerateKsrPersistentMemoryEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoFlushAdapterBuffers","features":[4,5,3,36]},{"name":"IoForwardIrpSynchronously","features":[4,7,5,3,6,8,9,10]},{"name":"IoFreeAdapterChannel","features":[5,36]},{"name":"IoFreeController","features":[4,5,3,9]},{"name":"IoFreeErrorLogEntry","features":[5]},{"name":"IoFreeIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoFreeKsrPersistentMemory","features":[5,3]},{"name":"IoFreeMapRegisters","features":[5,36]},{"name":"IoFreeMdl","features":[4,5]},{"name":"IoFreeSfioStreamIdentifier","features":[4,7,5,3,6,8,9,10]},{"name":"IoFreeWorkItem","features":[4,5]},{"name":"IoGetActivityIdIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetActivityIdThread","features":[5]},{"name":"IoGetAffinityInterrupt","features":[4,5,3,35]},{"name":"IoGetAttachedDeviceReference","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetBootDiskInformation","features":[5,3]},{"name":"IoGetBootDiskInformationLite","features":[5,3]},{"name":"IoGetConfigurationInformation","features":[5,3]},{"name":"IoGetContainerInformation","features":[5,3]},{"name":"IoGetCurrentProcess","features":[4,5]},{"name":"IoGetDeviceDirectory","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDeviceInterfaceAlias","features":[5,3]},{"name":"IoGetDeviceInterfacePropertyData","features":[5,1,3]},{"name":"IoGetDeviceInterfaces","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDeviceNumaNode","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDeviceObjectPointer","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDeviceProperty","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDevicePropertyData","features":[4,7,5,1,3,6,8,9,10]},{"name":"IoGetDmaAdapter","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDriverDirectory","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetDriverObjectExtension","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetFileObjectGenericMapping","features":[5,6]},{"name":"IoGetFsZeroingOffset","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetInitialStack","features":[5]},{"name":"IoGetInitiatorProcess","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetIoAttributionHandle","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetIoPriorityHint","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetIommuInterface","features":[5,3]},{"name":"IoGetIommuInterfaceEx","features":[5,3]},{"name":"IoGetIrpExtraCreateParameter","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetPagingIoPriority","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetRelatedDeviceObject","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetSfioStreamIdentifier","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetSilo","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetSiloParameters","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetStackLimits","features":[5]},{"name":"IoGetTopLevelIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoGetTransactionParameterBlock","features":[4,7,5,3,6,8,9,10]},{"name":"IoIncrementKeepAliveCount","features":[4,7,5,3,6,8,9,10]},{"name":"IoInitializeIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoInitializeIrpEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoInitializeRemoveLockEx","features":[4,5,3,9]},{"name":"IoInitializeTimer","features":[4,7,5,3,6,8,9,10]},{"name":"IoInitializeWorkItem","features":[4,5]},{"name":"IoInvalidateDeviceRelations","features":[4,7,5,3,6,8,9,10]},{"name":"IoInvalidateDeviceState","features":[4,7,5,3,6,8,9,10]},{"name":"IoIs32bitProcess","features":[4,7,5,3,6,8,9,10]},{"name":"IoIsFileObjectIgnoringSharing","features":[4,7,5,3,6,8,9,10]},{"name":"IoIsFileOriginRemote","features":[4,7,5,3,6,8,9,10]},{"name":"IoIsInitiator32bitProcess","features":[4,7,5,3,6,8,9,10]},{"name":"IoIsValidIrpStatus","features":[5,3]},{"name":"IoIsWdmVersionAvailable","features":[5,3]},{"name":"IoMakeAssociatedIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoMakeAssociatedIrpEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoMapTransfer","features":[4,5,3,36]},{"name":"IoMaxContainerInformationClass","features":[5]},{"name":"IoMaxContainerNotificationClass","features":[5]},{"name":"IoModifyAccess","features":[5]},{"name":"IoOpenDeviceInterfaceRegistryKey","features":[5,3]},{"name":"IoOpenDeviceRegistryKey","features":[4,7,5,3,6,8,9,10]},{"name":"IoOpenDriverRegistryKey","features":[4,7,5,3,6,8,9,10]},{"name":"IoPagingPriorityHigh","features":[5]},{"name":"IoPagingPriorityInvalid","features":[5]},{"name":"IoPagingPriorityNormal","features":[5]},{"name":"IoPagingPriorityReserved1","features":[5]},{"name":"IoPagingPriorityReserved2","features":[5]},{"name":"IoPropagateActivityIdToThread","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueryDeviceComponentInformation","features":[5]},{"name":"IoQueryDeviceConfigurationData","features":[5]},{"name":"IoQueryDeviceDescription","features":[5,3]},{"name":"IoQueryDeviceIdentifier","features":[5]},{"name":"IoQueryDeviceMaxData","features":[5]},{"name":"IoQueryFullDriverPath","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueryInformationByName","features":[4,7,5,3,8]},{"name":"IoQueryKsrPersistentMemorySize","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueryKsrPersistentMemorySizeEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoQueueWorkItem","features":[4,5]},{"name":"IoQueueWorkItemEx","features":[4,5]},{"name":"IoRaiseHardError","features":[4,7,5,3,6,8,9,10]},{"name":"IoRaiseInformationalHardError","features":[4,5,3]},{"name":"IoReadAccess","features":[5]},{"name":"IoReadDiskSignature","features":[4,7,5,3,6,8,9,10]},{"name":"IoReadPartitionTable","features":[4,7,5,3,6,8,24,9,10]},{"name":"IoReadPartitionTableEx","features":[4,7,5,3,6,8,24,9,10]},{"name":"IoRecordIoAttribution","features":[5,3]},{"name":"IoRegisterBootDriverCallback","features":[5]},{"name":"IoRegisterBootDriverReinitialization","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterContainerNotification","features":[5,3]},{"name":"IoRegisterDeviceInterface","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterDriverReinitialization","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterLastChanceShutdownNotification","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterPlugPlayNotification","features":[4,7,5,3,6,8,9,10]},{"name":"IoRegisterShutdownNotification","features":[4,7,5,3,6,8,9,10]},{"name":"IoReleaseCancelSpinLock","features":[5]},{"name":"IoReleaseRemoveLockAndWaitEx","features":[4,5,3,9]},{"name":"IoReleaseRemoveLockEx","features":[4,5,3,9]},{"name":"IoRemoveLinkShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoRemoveLinkShareAccessEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoRemoveShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoReplacePartitionUnit","features":[4,7,5,3,6,8,9,10]},{"name":"IoReportDetectedDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoReportInterruptActive","features":[4,5]},{"name":"IoReportInterruptInactive","features":[4,5]},{"name":"IoReportResourceForDetection","features":[4,7,5,3,6,8,9,10]},{"name":"IoReportResourceUsage","features":[4,7,5,3,6,8,9,10]},{"name":"IoReportRootDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoReportTargetDeviceChange","features":[4,7,5,3,6,8,9,10]},{"name":"IoReportTargetDeviceChangeAsynchronous","features":[4,7,5,3,6,8,9,10]},{"name":"IoRequestDeviceEject","features":[4,7,5,3,6,8,9,10]},{"name":"IoRequestDeviceEjectEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoReserveKsrPersistentMemory","features":[4,7,5,3,6,8,9,10]},{"name":"IoReserveKsrPersistentMemoryEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoReuseIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoSessionEventConnected","features":[5]},{"name":"IoSessionEventCreated","features":[5]},{"name":"IoSessionEventDisconnected","features":[5]},{"name":"IoSessionEventIgnore","features":[5]},{"name":"IoSessionEventLogoff","features":[5]},{"name":"IoSessionEventLogon","features":[5]},{"name":"IoSessionEventMax","features":[5]},{"name":"IoSessionEventTerminated","features":[5]},{"name":"IoSessionStateConnected","features":[5]},{"name":"IoSessionStateCreated","features":[5]},{"name":"IoSessionStateDisconnected","features":[5]},{"name":"IoSessionStateDisconnectedLoggedOn","features":[5]},{"name":"IoSessionStateInformation","features":[5]},{"name":"IoSessionStateInitialized","features":[5]},{"name":"IoSessionStateLoggedOff","features":[5]},{"name":"IoSessionStateLoggedOn","features":[5]},{"name":"IoSessionStateMax","features":[5]},{"name":"IoSessionStateNotification","features":[5]},{"name":"IoSessionStateTerminated","features":[5]},{"name":"IoSetActivityIdIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetActivityIdThread","features":[5]},{"name":"IoSetCompletionRoutineEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetDeviceInterfacePropertyData","features":[5,1,3]},{"name":"IoSetDeviceInterfaceState","features":[5,3]},{"name":"IoSetDevicePropertyData","features":[4,7,5,1,3,6,8,9,10]},{"name":"IoSetFileObjectIgnoreSharing","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetFileOrigin","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetFsZeroingOffset","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetFsZeroingOffsetRequired","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetHardErrorOrVerifyDevice","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetIoAttributionIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetIoPriorityHint","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetIrpExtraCreateParameter","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetLinkShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetMasterIrpStatus","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetPartitionInformation","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetPartitionInformationEx","features":[4,7,5,3,6,8,24,9,10]},{"name":"IoSetShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetShareAccessEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetStartIoAttributes","features":[4,7,5,3,6,8,9,10]},{"name":"IoSetSystemPartition","features":[5,3]},{"name":"IoSetThreadHardErrorMode","features":[5,3]},{"name":"IoSetTopLevelIrp","features":[4,7,5,3,6,8,9,10]},{"name":"IoSizeOfIrpEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoSizeofWorkItem","features":[5]},{"name":"IoStartNextPacket","features":[4,7,5,3,6,8,9,10]},{"name":"IoStartNextPacketByKey","features":[4,7,5,3,6,8,9,10]},{"name":"IoStartPacket","features":[4,7,5,3,6,8,9,10]},{"name":"IoStartTimer","features":[4,7,5,3,6,8,9,10]},{"name":"IoStopTimer","features":[4,7,5,3,6,8,9,10]},{"name":"IoSynchronousCallDriver","features":[4,7,5,3,6,8,9,10]},{"name":"IoTransferActivityId","features":[5]},{"name":"IoTranslateBusAddress","features":[5,3]},{"name":"IoTryQueueWorkItem","features":[4,5,3]},{"name":"IoUninitializeWorkItem","features":[4,5]},{"name":"IoUnregisterBootDriverCallback","features":[5]},{"name":"IoUnregisterContainerNotification","features":[5]},{"name":"IoUnregisterPlugPlayNotification","features":[5,3]},{"name":"IoUnregisterPlugPlayNotificationEx","features":[5,3]},{"name":"IoUnregisterShutdownNotification","features":[4,7,5,3,6,8,9,10]},{"name":"IoUpdateLinkShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoUpdateLinkShareAccessEx","features":[4,7,5,3,6,8,9,10]},{"name":"IoUpdateShareAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoValidateDeviceIoControlAccess","features":[4,7,5,3,6,8,9,10]},{"name":"IoVerifyPartitionTable","features":[4,7,5,3,6,8,9,10]},{"name":"IoVolumeDeviceNameToGuid","features":[5,3]},{"name":"IoVolumeDeviceNameToGuidPath","features":[5,3]},{"name":"IoVolumeDeviceToDosName","features":[5,3]},{"name":"IoVolumeDeviceToGuid","features":[5,3]},{"name":"IoVolumeDeviceToGuidPath","features":[5,3]},{"name":"IoWMIAllocateInstanceIds","features":[5,3]},{"name":"IoWMIDeviceObjectToInstanceName","features":[4,7,5,3,6,8,9,10]},{"name":"IoWMIExecuteMethod","features":[5,3]},{"name":"IoWMIHandleToInstanceName","features":[5,3]},{"name":"IoWMIOpenBlock","features":[5,3]},{"name":"IoWMIQueryAllData","features":[5,3]},{"name":"IoWMIQueryAllDataMultiple","features":[5,3]},{"name":"IoWMIQuerySingleInstance","features":[5,3]},{"name":"IoWMIQuerySingleInstanceMultiple","features":[5,3]},{"name":"IoWMIRegistrationControl","features":[4,7,5,3,6,8,9,10]},{"name":"IoWMISetNotificationCallback","features":[5,3]},{"name":"IoWMISetSingleInstance","features":[5,3]},{"name":"IoWMISetSingleItem","features":[5,3]},{"name":"IoWMISuggestInstanceName","features":[4,7,5,3,6,8,9,10]},{"name":"IoWMIWriteEvent","features":[5,3]},{"name":"IoWithinStackLimits","features":[5]},{"name":"IoWriteAccess","features":[5]},{"name":"IoWriteErrorLogEntry","features":[5]},{"name":"IoWriteKsrPersistentMemory","features":[5,3]},{"name":"IoWritePartitionTable","features":[4,7,5,3,6,8,24,9,10]},{"name":"IoWritePartitionTableEx","features":[4,7,5,3,6,8,24,9,10]},{"name":"IofCallDriver","features":[4,7,5,3,6,8,9,10]},{"name":"IofCompleteRequest","features":[4,7,5,3,6,8,9,10]},{"name":"IommuDeviceCreationConfigTypeAcpi","features":[5]},{"name":"IommuDeviceCreationConfigTypeDeviceId","features":[5]},{"name":"IommuDeviceCreationConfigTypeMax","features":[5]},{"name":"IommuDeviceCreationConfigTypeNone","features":[5]},{"name":"IommuDmaLogicalAllocatorBuddy","features":[5]},{"name":"IommuDmaLogicalAllocatorMax","features":[5]},{"name":"IommuDmaLogicalAllocatorNone","features":[5]},{"name":"IrqPolicyAllCloseProcessors","features":[5]},{"name":"IrqPolicyAllProcessorsInMachine","features":[5]},{"name":"IrqPolicyAllProcessorsInMachineWhenSteered","features":[5]},{"name":"IrqPolicyMachineDefault","features":[5]},{"name":"IrqPolicyOneCloseProcessor","features":[5]},{"name":"IrqPolicySpecifiedProcessors","features":[5]},{"name":"IrqPolicySpreadMessagesAcrossAllProcessors","features":[5]},{"name":"IrqPriorityHigh","features":[5]},{"name":"IrqPriorityLow","features":[5]},{"name":"IrqPriorityNormal","features":[5]},{"name":"IrqPriorityUndefined","features":[5]},{"name":"Isa","features":[5]},{"name":"IsochCommand","features":[5]},{"name":"IsochStatus","features":[5]},{"name":"KADDRESS_BASE","features":[5]},{"name":"KADDRESS_RANGE","features":[5]},{"name":"KADDRESS_RANGE_DESCRIPTOR","features":[5]},{"name":"KAPC","features":[5,3,9]},{"name":"KBUGCHECK_ADD_PAGES","features":[5]},{"name":"KBUGCHECK_BUFFER_DUMP_STATE","features":[5]},{"name":"KBUGCHECK_CALLBACK_REASON","features":[5]},{"name":"KBUGCHECK_CALLBACK_RECORD","features":[5,9]},{"name":"KBUGCHECK_CALLBACK_ROUTINE","features":[5]},{"name":"KBUGCHECK_DUMP_IO","features":[5]},{"name":"KBUGCHECK_DUMP_IO_TYPE","features":[5]},{"name":"KBUGCHECK_REASON_CALLBACK_RECORD","features":[5,9]},{"name":"KBUGCHECK_REASON_CALLBACK_ROUTINE","features":[5,9]},{"name":"KBUGCHECK_REMOVE_PAGES","features":[5]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA","features":[5]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA_EX","features":[5]},{"name":"KBUGCHECK_TRIAGE_DUMP_DATA","features":[5,9]},{"name":"KB_ADD_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[5]},{"name":"KB_ADD_PAGES_FLAG_PHYSICAL_ADDRESS","features":[5]},{"name":"KB_ADD_PAGES_FLAG_VIRTUAL_ADDRESS","features":[5]},{"name":"KB_REMOVE_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[5]},{"name":"KB_REMOVE_PAGES_FLAG_PHYSICAL_ADDRESS","features":[5]},{"name":"KB_REMOVE_PAGES_FLAG_VIRTUAL_ADDRESS","features":[5]},{"name":"KB_SECONDARY_DATA_FLAG_ADDITIONAL_DATA","features":[5]},{"name":"KB_SECONDARY_DATA_FLAG_NO_DEVICE_ACCESS","features":[5]},{"name":"KB_TRIAGE_DUMP_DATA_FLAG_BUGCHECK_ACTIVE","features":[5]},{"name":"KDEFERRED_ROUTINE","features":[4,5,9]},{"name":"KDEVICE_QUEUE_ENTRY","features":[5,3,9]},{"name":"KDPC_IMPORTANCE","features":[5]},{"name":"KDPC_WATCHDOG_INFORMATION","features":[5]},{"name":"KD_CALLBACK_ACTION","features":[5]},{"name":"KD_NAMESPACE_ENUM","features":[5]},{"name":"KD_OPTION","features":[5]},{"name":"KD_OPTION_SET_BLOCK_ENABLE","features":[5]},{"name":"KENCODED_TIMER_PROCESSOR","features":[5]},{"name":"KERNEL_LARGE_STACK_COMMIT","features":[5]},{"name":"KERNEL_LARGE_STACK_SIZE","features":[5]},{"name":"KERNEL_MCA_EXCEPTION_STACK_SIZE","features":[5]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION","features":[5]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION_VERSION","features":[5]},{"name":"KERNEL_STACK_SIZE","features":[5]},{"name":"KERNEL_USER_TIMES","features":[5]},{"name":"KEY_BASIC_INFORMATION","features":[5]},{"name":"KEY_CACHED_INFORMATION","features":[5]},{"name":"KEY_CONTROL_FLAGS_INFORMATION","features":[5]},{"name":"KEY_FULL_INFORMATION","features":[5]},{"name":"KEY_LAYER_INFORMATION","features":[5]},{"name":"KEY_NAME_INFORMATION","features":[5]},{"name":"KEY_NODE_INFORMATION","features":[5]},{"name":"KEY_SET_VIRTUALIZATION_INFORMATION","features":[5]},{"name":"KEY_TRUST_INFORMATION","features":[5]},{"name":"KEY_VALUE_BASIC_INFORMATION","features":[5]},{"name":"KEY_VALUE_FULL_INFORMATION","features":[5]},{"name":"KEY_VALUE_LAYER_INFORMATION","features":[5]},{"name":"KEY_VALUE_PARTIAL_INFORMATION","features":[5]},{"name":"KEY_VALUE_PARTIAL_INFORMATION_ALIGN64","features":[5]},{"name":"KEY_VIRTUALIZATION_INFORMATION","features":[5]},{"name":"KEY_WOW64_FLAGS_INFORMATION","features":[5]},{"name":"KEY_WRITE_TIME_INFORMATION","features":[5]},{"name":"KE_MAX_TRIAGE_DUMP_DATA_MEMORY_SIZE","features":[5]},{"name":"KE_PROCESSOR_CHANGE_ADD_EXISTING","features":[5]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_CONTEXT","features":[5,3,9]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_STATE","features":[5]},{"name":"KFLOATING_SAVE","features":[5]},{"name":"KGATE","features":[4,5,3,9]},{"name":"KINTERRUPT_MODE","features":[5]},{"name":"KINTERRUPT_POLARITY","features":[5]},{"name":"KIPI_BROADCAST_WORKER","features":[5]},{"name":"KI_USER_SHARED_DATA","features":[5]},{"name":"KLOCK_QUEUE_HANDLE","features":[5]},{"name":"KMESSAGE_SERVICE_ROUTINE","features":[5,3]},{"name":"KPROFILE_SOURCE","features":[5]},{"name":"KSEMAPHORE","features":[4,5,3,9]},{"name":"KSERVICE_ROUTINE","features":[5,3]},{"name":"KSPIN_LOCK_QUEUE","features":[5]},{"name":"KSTART_ROUTINE","features":[5]},{"name":"KSYNCHRONIZE_ROUTINE","features":[5,3]},{"name":"KSYSTEM_TIME","features":[5]},{"name":"KTIMER","features":[4,5,3,9]},{"name":"KTRIAGE_DUMP_DATA_ARRAY","features":[5,9]},{"name":"KUMS_UCH_VOLATILE_BIT","features":[5]},{"name":"KUSER_SHARED_DATA","features":[5,3,33,9]},{"name":"KWAIT_CHAIN","features":[5]},{"name":"KWAIT_REASON","features":[5]},{"name":"KbCallbackAddPages","features":[5]},{"name":"KbCallbackDumpIo","features":[5]},{"name":"KbCallbackInvalid","features":[5]},{"name":"KbCallbackRemovePages","features":[5]},{"name":"KbCallbackReserved1","features":[5]},{"name":"KbCallbackReserved2","features":[5]},{"name":"KbCallbackSecondaryDumpData","features":[5]},{"name":"KbCallbackSecondaryMultiPartDumpData","features":[5]},{"name":"KbCallbackTriageDumpData","features":[5]},{"name":"KbDumpIoBody","features":[5]},{"name":"KbDumpIoComplete","features":[5]},{"name":"KbDumpIoHeader","features":[5]},{"name":"KbDumpIoInvalid","features":[5]},{"name":"KbDumpIoSecondaryData","features":[5]},{"name":"KdChangeOption","features":[5,3]},{"name":"KdConfigureDeviceAndContinue","features":[5]},{"name":"KdConfigureDeviceAndStop","features":[5]},{"name":"KdDisableDebugger","features":[5,3]},{"name":"KdEnableDebugger","features":[5,3]},{"name":"KdNameSpaceACPI","features":[5]},{"name":"KdNameSpaceAny","features":[5]},{"name":"KdNameSpaceMax","features":[5]},{"name":"KdNameSpaceNone","features":[5]},{"name":"KdNameSpacePCI","features":[5]},{"name":"KdRefreshDebuggerNotPresent","features":[5,3]},{"name":"KdSkipDeviceAndContinue","features":[5]},{"name":"KdSkipDeviceAndStop","features":[5]},{"name":"KeAcquireGuardedMutex","features":[4,5,3,9]},{"name":"KeAcquireGuardedMutexUnsafe","features":[4,5,3,9]},{"name":"KeAcquireInStackQueuedSpinLock","features":[5]},{"name":"KeAcquireInStackQueuedSpinLockAtDpcLevel","features":[5]},{"name":"KeAcquireInStackQueuedSpinLockForDpc","features":[5]},{"name":"KeAcquireInterruptSpinLock","features":[4,5]},{"name":"KeAcquireSpinLockForDpc","features":[5]},{"name":"KeAddTriageDumpDataBlock","features":[5,3,9]},{"name":"KeAreAllApcsDisabled","features":[5,3]},{"name":"KeAreApcsDisabled","features":[5,3]},{"name":"KeBugCheck","features":[5,33]},{"name":"KeBugCheckEx","features":[5,33]},{"name":"KeCancelTimer","features":[4,5,3,9]},{"name":"KeClearEvent","features":[4,5,3,9]},{"name":"KeConvertAuxiliaryCounterToPerformanceCounter","features":[5,3]},{"name":"KeConvertPerformanceCounterToAuxiliaryCounter","features":[5,3]},{"name":"KeDelayExecutionThread","features":[5,3]},{"name":"KeDeregisterBoundCallback","features":[5,3]},{"name":"KeDeregisterBugCheckCallback","features":[5,3,9]},{"name":"KeDeregisterBugCheckReasonCallback","features":[5,3,9]},{"name":"KeDeregisterNmiCallback","features":[5,3]},{"name":"KeDeregisterProcessorChangeCallback","features":[5]},{"name":"KeEnterCriticalRegion","features":[5]},{"name":"KeEnterGuardedRegion","features":[5]},{"name":"KeExpandKernelStackAndCallout","features":[5,3]},{"name":"KeExpandKernelStackAndCalloutEx","features":[5,3]},{"name":"KeFlushIoBuffers","features":[4,5,3]},{"name":"KeFlushQueuedDpcs","features":[5]},{"name":"KeFlushWriteBuffer","features":[5]},{"name":"KeGetCurrentIrql","features":[5]},{"name":"KeGetCurrentNodeNumber","features":[5]},{"name":"KeGetCurrentProcessorNumberEx","features":[5,9]},{"name":"KeGetProcessorIndexFromNumber","features":[5,9]},{"name":"KeGetProcessorNumberFromIndex","features":[5,3,9]},{"name":"KeGetRecommendedSharedDataAlignment","features":[5]},{"name":"KeInitializeCrashDumpHeader","features":[5,3]},{"name":"KeInitializeDeviceQueue","features":[4,5,3,9]},{"name":"KeInitializeDpc","features":[4,5,9]},{"name":"KeInitializeEvent","features":[4,5,3,9]},{"name":"KeInitializeGuardedMutex","features":[4,5,3,9]},{"name":"KeInitializeMutex","features":[4,5,3,9]},{"name":"KeInitializeSemaphore","features":[4,5,3,9]},{"name":"KeInitializeSpinLock","features":[5]},{"name":"KeInitializeThreadedDpc","features":[4,5,9]},{"name":"KeInitializeTimer","features":[4,5,3,9]},{"name":"KeInitializeTimerEx","features":[4,5,3,9]},{"name":"KeInitializeTriageDumpDataArray","features":[5,3,9]},{"name":"KeInsertByKeyDeviceQueue","features":[4,5,3,9]},{"name":"KeInsertDeviceQueue","features":[4,5,3,9]},{"name":"KeInsertQueueDpc","features":[4,5,3,9]},{"name":"KeInvalidateAllCaches","features":[5,3]},{"name":"KeInvalidateRangeAllCaches","features":[5]},{"name":"KeIpiGenericCall","features":[5]},{"name":"KeIsExecutingDpc","features":[5]},{"name":"KeLeaveCriticalRegion","features":[5]},{"name":"KeLeaveGuardedRegion","features":[5]},{"name":"KeProcessorAddCompleteNotify","features":[5]},{"name":"KeProcessorAddFailureNotify","features":[5]},{"name":"KeProcessorAddStartNotify","features":[5]},{"name":"KePulseEvent","features":[4,5,3,9]},{"name":"KeQueryActiveGroupCount","features":[5]},{"name":"KeQueryActiveProcessorCount","features":[5]},{"name":"KeQueryActiveProcessorCountEx","features":[5]},{"name":"KeQueryActiveProcessors","features":[5]},{"name":"KeQueryAuxiliaryCounterFrequency","features":[5,3]},{"name":"KeQueryDpcWatchdogInformation","features":[5,3]},{"name":"KeQueryGroupAffinity","features":[5]},{"name":"KeQueryHardwareCounterConfiguration","features":[5,3]},{"name":"KeQueryHighestNodeNumber","features":[5]},{"name":"KeQueryInterruptTimePrecise","features":[5]},{"name":"KeQueryLogicalProcessorRelationship","features":[5,3,9,35]},{"name":"KeQueryMaximumGroupCount","features":[5]},{"name":"KeQueryMaximumProcessorCount","features":[5]},{"name":"KeQueryMaximumProcessorCountEx","features":[5]},{"name":"KeQueryNodeActiveAffinity","features":[5,35]},{"name":"KeQueryNodeActiveAffinity2","features":[5,3,35]},{"name":"KeQueryNodeActiveProcessorCount","features":[5]},{"name":"KeQueryNodeMaximumProcessorCount","features":[5]},{"name":"KeQueryPerformanceCounter","features":[5]},{"name":"KeQueryPriorityThread","features":[4,5]},{"name":"KeQueryRuntimeThread","features":[4,5]},{"name":"KeQuerySystemTimePrecise","features":[5]},{"name":"KeQueryTimeIncrement","features":[5]},{"name":"KeQueryTotalCycleTimeThread","features":[4,5]},{"name":"KeQueryUnbiasedInterruptTime","features":[5]},{"name":"KeQueryUnbiasedInterruptTimePrecise","features":[5]},{"name":"KeReadStateEvent","features":[4,5,3,9]},{"name":"KeReadStateMutex","features":[4,5,3,9]},{"name":"KeReadStateSemaphore","features":[4,5,3,9]},{"name":"KeReadStateTimer","features":[4,5,3,9]},{"name":"KeRegisterBoundCallback","features":[5]},{"name":"KeRegisterBugCheckCallback","features":[5,3,9]},{"name":"KeRegisterBugCheckReasonCallback","features":[5,3,9]},{"name":"KeRegisterNmiCallback","features":[5,3]},{"name":"KeRegisterProcessorChangeCallback","features":[5]},{"name":"KeReleaseGuardedMutex","features":[4,5,3,9]},{"name":"KeReleaseGuardedMutexUnsafe","features":[4,5,3,9]},{"name":"KeReleaseInStackQueuedSpinLock","features":[5]},{"name":"KeReleaseInStackQueuedSpinLockForDpc","features":[5]},{"name":"KeReleaseInStackQueuedSpinLockFromDpcLevel","features":[5]},{"name":"KeReleaseInterruptSpinLock","features":[4,5]},{"name":"KeReleaseMutex","features":[4,5,3,9]},{"name":"KeReleaseSemaphore","features":[4,5,3,9]},{"name":"KeReleaseSpinLockForDpc","features":[5]},{"name":"KeRemoveByKeyDeviceQueue","features":[4,5,3,9]},{"name":"KeRemoveByKeyDeviceQueueIfBusy","features":[4,5,3,9]},{"name":"KeRemoveDeviceQueue","features":[4,5,3,9]},{"name":"KeRemoveEntryDeviceQueue","features":[4,5,3,9]},{"name":"KeRemoveQueueDpc","features":[4,5,3,9]},{"name":"KeRemoveQueueDpcEx","features":[4,5,3,9]},{"name":"KeResetEvent","features":[4,5,3,9]},{"name":"KeRestoreExtendedProcessorState","features":[5,33]},{"name":"KeRevertToUserAffinityThread","features":[5]},{"name":"KeRevertToUserAffinityThreadEx","features":[5]},{"name":"KeRevertToUserGroupAffinityThread","features":[5,35]},{"name":"KeSaveExtendedProcessorState","features":[5,3,33]},{"name":"KeSetBasePriorityThread","features":[4,5]},{"name":"KeSetCoalescableTimer","features":[4,5,3,9]},{"name":"KeSetEvent","features":[4,5,3,9]},{"name":"KeSetHardwareCounterConfiguration","features":[5,3]},{"name":"KeSetImportanceDpc","features":[4,5,9]},{"name":"KeSetPriorityThread","features":[4,5]},{"name":"KeSetSystemAffinityThread","features":[5]},{"name":"KeSetSystemAffinityThreadEx","features":[5]},{"name":"KeSetSystemGroupAffinityThread","features":[5,35]},{"name":"KeSetTargetProcessorDpc","features":[4,5,9]},{"name":"KeSetTargetProcessorDpcEx","features":[4,5,3,9]},{"name":"KeSetTimer","features":[4,5,3,9]},{"name":"KeSetTimerEx","features":[4,5,3,9]},{"name":"KeShouldYieldProcessor","features":[5]},{"name":"KeStallExecutionProcessor","features":[5]},{"name":"KeSynchronizeExecution","features":[4,5,3]},{"name":"KeTestSpinLock","features":[5,3]},{"name":"KeTryToAcquireGuardedMutex","features":[4,5,3,9]},{"name":"KeTryToAcquireSpinLockAtDpcLevel","features":[5,3]},{"name":"KeWaitForMultipleObjects","features":[4,5,3,9]},{"name":"KeWaitForSingleObject","features":[5,3]},{"name":"KeepObject","features":[5]},{"name":"KernelMode","features":[5]},{"name":"KeyboardController","features":[5]},{"name":"KeyboardPeripheral","features":[5]},{"name":"KfRaiseIrql","features":[5]},{"name":"L0sAndL1EntryDisabled","features":[5]},{"name":"L0sAndL1EntryEnabled","features":[5]},{"name":"L0sAndL1EntrySupport","features":[5]},{"name":"L0sEntryEnabled","features":[5]},{"name":"L0sEntrySupport","features":[5]},{"name":"L0s_128ns_256ns","features":[5]},{"name":"L0s_1us_2us","features":[5]},{"name":"L0s_256ns_512ns","features":[5]},{"name":"L0s_2us_4us","features":[5]},{"name":"L0s_512ns_1us","features":[5]},{"name":"L0s_64ns_128ns","features":[5]},{"name":"L0s_Above4us","features":[5]},{"name":"L0s_Below64ns","features":[5]},{"name":"L1EntryEnabled","features":[5]},{"name":"L1EntrySupport","features":[5]},{"name":"L1_16us_32us","features":[5]},{"name":"L1_1us_2us","features":[5]},{"name":"L1_2us_4us","features":[5]},{"name":"L1_32us_64us","features":[5]},{"name":"L1_4us_8us","features":[5]},{"name":"L1_8us_16us","features":[5]},{"name":"L1_Above64us","features":[5]},{"name":"L1_Below1us","features":[5]},{"name":"LEGACY_BUS_INFORMATION","features":[5]},{"name":"LINK_SHARE_ACCESS","features":[5]},{"name":"LOADER_PARTITION_INFORMATION_EX","features":[5]},{"name":"LOCK_OPERATION","features":[5]},{"name":"LOCK_QUEUE_HALTED","features":[5]},{"name":"LOCK_QUEUE_HALTED_BIT","features":[5]},{"name":"LOCK_QUEUE_OWNER","features":[5]},{"name":"LOCK_QUEUE_OWNER_BIT","features":[5]},{"name":"LOCK_QUEUE_WAIT","features":[5]},{"name":"LOCK_QUEUE_WAIT_BIT","features":[5]},{"name":"LONG_2ND_MOST_SIGNIFICANT_BIT","features":[5]},{"name":"LONG_3RD_MOST_SIGNIFICANT_BIT","features":[5]},{"name":"LONG_LEAST_SIGNIFICANT_BIT","features":[5]},{"name":"LONG_MOST_SIGNIFICANT_BIT","features":[5]},{"name":"LOWBYTE_MASK","features":[5]},{"name":"LOW_LEVEL","features":[5]},{"name":"LOW_PRIORITY","features":[5]},{"name":"LOW_REALTIME_PRIORITY","features":[5]},{"name":"LastDStateTransitionD3cold","features":[5]},{"name":"LastDStateTransitionD3hot","features":[5]},{"name":"LastDStateTransitionStatusUnknown","features":[5]},{"name":"LastDrvRtFlag","features":[5]},{"name":"Latched","features":[5]},{"name":"LevelSensitive","features":[5]},{"name":"LinePeripheral","features":[5]},{"name":"LocateControl","features":[5]},{"name":"LocationTypeFileSystem","features":[5]},{"name":"LocationTypeMaximum","features":[5]},{"name":"LocationTypeRegistry","features":[5]},{"name":"LoggerEventsLoggedClass","features":[5]},{"name":"LoggerEventsLostClass","features":[5]},{"name":"LowImportance","features":[5]},{"name":"LowPagePriority","features":[5]},{"name":"LowPoolPriority","features":[5]},{"name":"LowPoolPrioritySpecialPoolOverrun","features":[5]},{"name":"LowPoolPrioritySpecialPoolUnderrun","features":[5]},{"name":"MAILSLOT_CREATE_PARAMETERS","features":[5,3]},{"name":"MAP_REGISTER_ENTRY","features":[5,3]},{"name":"MAXIMUM_DEBUG_BARS","features":[5]},{"name":"MAXIMUM_FILENAME_LENGTH","features":[5]},{"name":"MAXIMUM_PRIORITY","features":[5]},{"name":"MAX_EVENT_COUNTERS","features":[5]},{"name":"MCA_DRIVER_INFO","features":[4,5]},{"name":"MCA_EXCEPTION","features":[5]},{"name":"MCA_EXCEPTION_TYPE","features":[5]},{"name":"MCA_EXTREG_V2MAX","features":[5]},{"name":"MCE_NOTIFY_TYPE_GUID","features":[5]},{"name":"MCG_CAP","features":[5]},{"name":"MCG_STATUS","features":[5]},{"name":"MCI_ADDR","features":[5]},{"name":"MCI_STATS","features":[5]},{"name":"MCI_STATUS","features":[5]},{"name":"MCI_STATUS_AMD_BITS","features":[5]},{"name":"MCI_STATUS_BITS_COMMON","features":[5]},{"name":"MCI_STATUS_INTEL_BITS","features":[5]},{"name":"MDL_ALLOCATED_FIXED_SIZE","features":[5]},{"name":"MDL_DESCRIBES_AWE","features":[5]},{"name":"MDL_FREE_EXTRA_PTES","features":[5]},{"name":"MDL_INTERNAL","features":[5]},{"name":"MDL_LOCKED_PAGE_TABLES","features":[5]},{"name":"MDL_PAGE_CONTENTS_INVARIANT","features":[5]},{"name":"MEMORY_CACHING_TYPE","features":[5]},{"name":"MEMORY_CACHING_TYPE_ORIG","features":[5]},{"name":"MEMORY_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[5]},{"name":"MEMORY_ERROR_SECTION_GUID","features":[5]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_OPEN_INFORMATION","features":[5,3]},{"name":"MEM_COMMIT","features":[5]},{"name":"MEM_DECOMMIT","features":[5]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[5]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[5]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[5]},{"name":"MEM_LARGE_PAGES","features":[5]},{"name":"MEM_MAPPED","features":[5]},{"name":"MEM_PRIVATE","features":[5]},{"name":"MEM_RELEASE","features":[5]},{"name":"MEM_RESERVE","features":[5]},{"name":"MEM_RESET","features":[5]},{"name":"MEM_RESET_UNDO","features":[5]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[5]},{"name":"MEM_TOP_DOWN","features":[5]},{"name":"MM_ADD_PHYSICAL_MEMORY_ALREADY_ZEROED","features":[5]},{"name":"MM_ADD_PHYSICAL_MEMORY_HUGE_PAGES_ONLY","features":[5]},{"name":"MM_ADD_PHYSICAL_MEMORY_LARGE_PAGES_ONLY","features":[5]},{"name":"MM_ALLOCATE_AND_HOT_REMOVE","features":[5]},{"name":"MM_ALLOCATE_CONTIGUOUS_MEMORY_FAST_ONLY","features":[5]},{"name":"MM_ALLOCATE_FAST_LARGE_PAGES","features":[5]},{"name":"MM_ALLOCATE_FROM_LOCAL_NODE_ONLY","features":[5]},{"name":"MM_ALLOCATE_FULLY_REQUIRED","features":[5]},{"name":"MM_ALLOCATE_NO_WAIT","features":[5]},{"name":"MM_ALLOCATE_PREFER_CONTIGUOUS","features":[5]},{"name":"MM_ALLOCATE_REQUIRE_CONTIGUOUS_CHUNKS","features":[5]},{"name":"MM_ALLOCATE_TRIM_IF_NECESSARY","features":[5]},{"name":"MM_ANY_NODE_OK","features":[5]},{"name":"MM_COPY_ADDRESS","features":[5]},{"name":"MM_COPY_MEMORY_PHYSICAL","features":[5]},{"name":"MM_COPY_MEMORY_VIRTUAL","features":[5]},{"name":"MM_DONT_ZERO_ALLOCATION","features":[5]},{"name":"MM_DUMP_MAP_CACHED","features":[5]},{"name":"MM_DUMP_MAP_INVALIDATE","features":[5]},{"name":"MM_FREE_MDL_PAGES_ZERO","features":[5]},{"name":"MM_GET_CACHE_ATTRIBUTE_IO_SPACE","features":[5]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_ALL_PARTITIONS","features":[5]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_FILE_ONLY","features":[5]},{"name":"MM_MAPPING_ADDRESS_DIVISIBLE","features":[5]},{"name":"MM_MAXIMUM_DISK_IO_SIZE","features":[5]},{"name":"MM_MDL_PAGE_CONTENTS_STATE","features":[5]},{"name":"MM_MDL_ROUTINE","features":[5]},{"name":"MM_PAGE_PRIORITY","features":[5]},{"name":"MM_PERMANENT_ADDRESS_IS_IO_SPACE","features":[5]},{"name":"MM_PHYSICAL_ADDRESS_LIST","features":[5]},{"name":"MM_PROTECT_DRIVER_SECTION_ALLOW_UNLOAD","features":[5]},{"name":"MM_PROTECT_DRIVER_SECTION_VALID_FLAGS","features":[5]},{"name":"MM_REMOVE_PHYSICAL_MEMORY_BAD_ONLY","features":[5]},{"name":"MM_ROTATE_DIRECTION","features":[5]},{"name":"MM_SECURE_EXCLUSIVE","features":[5]},{"name":"MM_SECURE_NO_CHANGE","features":[5]},{"name":"MM_SECURE_NO_INHERIT","features":[5]},{"name":"MM_SECURE_USER_MODE_ONLY","features":[5]},{"name":"MM_SYSTEMSIZE","features":[5]},{"name":"MM_SYSTEM_SPACE_END","features":[5]},{"name":"MM_SYSTEM_VIEW_EXCEPTIONS_FOR_INPAGE_ERRORS","features":[5]},{"name":"MODE","features":[5]},{"name":"MPIBus","features":[5]},{"name":"MPIConfiguration","features":[5]},{"name":"MPSABus","features":[5]},{"name":"MPSAConfiguration","features":[5]},{"name":"MRLClosed","features":[5]},{"name":"MRLOpen","features":[5]},{"name":"MU_TELEMETRY_SECTION","features":[5]},{"name":"MU_TELEMETRY_SECTION_GUID","features":[5]},{"name":"MapPhysicalAddressTypeContiguousRange","features":[5]},{"name":"MapPhysicalAddressTypeMax","features":[5]},{"name":"MapPhysicalAddressTypeMdl","features":[5]},{"name":"MapPhysicalAddressTypePfn","features":[5]},{"name":"MaxFaultType","features":[5]},{"name":"MaxHardwareCounterType","features":[5]},{"name":"MaxPayload1024Bytes","features":[5]},{"name":"MaxPayload128Bytes","features":[5]},{"name":"MaxPayload2048Bytes","features":[5]},{"name":"MaxPayload256Bytes","features":[5]},{"name":"MaxPayload4096Bytes","features":[5]},{"name":"MaxPayload512Bytes","features":[5]},{"name":"MaxRegNtNotifyClass","features":[5]},{"name":"MaxSubsystemInformationType","features":[5]},{"name":"MaxTraceInformationClass","features":[5]},{"name":"MaximumBusDataType","features":[5]},{"name":"MaximumDmaSpeed","features":[5]},{"name":"MaximumDmaWidth","features":[5]},{"name":"MaximumInterfaceType","features":[5]},{"name":"MaximumMode","features":[5]},{"name":"MaximumType","features":[5]},{"name":"MaximumWaitReason","features":[5]},{"name":"MaximumWorkQueue","features":[5]},{"name":"MdlMappingNoExecute","features":[5]},{"name":"MdlMappingNoWrite","features":[5]},{"name":"MdlMappingWithGuardPtes","features":[5]},{"name":"MediumHighImportance","features":[5]},{"name":"MediumImportance","features":[5]},{"name":"MemDedicatedAttributeMax","features":[5]},{"name":"MemDedicatedAttributeReadBandwidth","features":[5]},{"name":"MemDedicatedAttributeReadLatency","features":[5]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[5]},{"name":"MemDedicatedAttributeWriteLatency","features":[5]},{"name":"MemSectionExtendedParameterInvalidType","features":[5]},{"name":"MemSectionExtendedParameterMax","features":[5]},{"name":"MemSectionExtendedParameterNumaNode","features":[5]},{"name":"MemSectionExtendedParameterSigningLevel","features":[5]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[5]},{"name":"MicroChannel","features":[5]},{"name":"MmAddPhysicalMemory","features":[5,3]},{"name":"MmAddVerifierSpecialThunks","features":[5,3]},{"name":"MmAddVerifierThunks","features":[5,3]},{"name":"MmAdvanceMdl","features":[4,5,3]},{"name":"MmAllocateContiguousMemory","features":[5]},{"name":"MmAllocateContiguousMemoryEx","features":[5,3]},{"name":"MmAllocateContiguousMemorySpecifyCache","features":[5]},{"name":"MmAllocateContiguousMemorySpecifyCacheNode","features":[5]},{"name":"MmAllocateContiguousNodeMemory","features":[5]},{"name":"MmAllocateMappingAddress","features":[5]},{"name":"MmAllocateMappingAddressEx","features":[5]},{"name":"MmAllocateMdlForIoSpace","features":[4,5,3]},{"name":"MmAllocateNodePagesForMdlEx","features":[4,5]},{"name":"MmAllocateNonCachedMemory","features":[5]},{"name":"MmAllocatePagesForMdl","features":[4,5]},{"name":"MmAllocatePagesForMdlEx","features":[4,5]},{"name":"MmAllocatePartitionNodePagesForMdlEx","features":[4,5]},{"name":"MmAreMdlPagesCached","features":[4,5]},{"name":"MmBuildMdlForNonPagedPool","features":[4,5]},{"name":"MmCached","features":[5]},{"name":"MmCopyMemory","features":[5,3]},{"name":"MmCreateMdl","features":[4,5]},{"name":"MmCreateMirror","features":[5,3]},{"name":"MmFrameBufferCached","features":[5]},{"name":"MmFreeContiguousMemory","features":[5]},{"name":"MmFreeContiguousMemorySpecifyCache","features":[5]},{"name":"MmFreeMappingAddress","features":[5]},{"name":"MmFreeNonCachedMemory","features":[5]},{"name":"MmFreePagesFromMdl","features":[4,5]},{"name":"MmFreePagesFromMdlEx","features":[4,5]},{"name":"MmGetCacheAttribute","features":[5,3]},{"name":"MmGetCacheAttributeEx","features":[5,3]},{"name":"MmGetPhysicalAddress","features":[5]},{"name":"MmGetPhysicalMemoryRanges","features":[5]},{"name":"MmGetPhysicalMemoryRangesEx","features":[5]},{"name":"MmGetPhysicalMemoryRangesEx2","features":[5]},{"name":"MmGetSystemRoutineAddress","features":[5,3]},{"name":"MmGetVirtualForPhysical","features":[5]},{"name":"MmHardwareCoherentCached","features":[5]},{"name":"MmIsAddressValid","features":[5,3]},{"name":"MmIsDriverSuspectForVerifier","features":[4,7,5,3,6,8,9,10]},{"name":"MmIsDriverVerifying","features":[4,7,5,3,6,8,9,10]},{"name":"MmIsDriverVerifyingByAddress","features":[5]},{"name":"MmIsIoSpaceActive","features":[5]},{"name":"MmIsNonPagedSystemAddressValid","features":[5,3]},{"name":"MmIsThisAnNtAsSystem","features":[5,3]},{"name":"MmIsVerifierEnabled","features":[5,3]},{"name":"MmLargeSystem","features":[5]},{"name":"MmLockPagableDataSection","features":[5]},{"name":"MmLockPagableSectionByHandle","features":[5]},{"name":"MmMapIoSpace","features":[5]},{"name":"MmMapIoSpaceEx","features":[5]},{"name":"MmMapLockedPages","features":[4,5]},{"name":"MmMapLockedPagesSpecifyCache","features":[4,5]},{"name":"MmMapLockedPagesWithReservedMapping","features":[4,5]},{"name":"MmMapMdl","features":[4,5,3]},{"name":"MmMapMemoryDumpMdlEx","features":[4,5,3]},{"name":"MmMapUserAddressesToPage","features":[5,3]},{"name":"MmMapVideoDisplay","features":[5]},{"name":"MmMapViewInSessionSpace","features":[5,3]},{"name":"MmMapViewInSessionSpaceEx","features":[5,3]},{"name":"MmMapViewInSystemSpace","features":[5,3]},{"name":"MmMapViewInSystemSpaceEx","features":[5,3]},{"name":"MmMaximumCacheType","features":[5]},{"name":"MmMaximumRotateDirection","features":[5]},{"name":"MmMdlPageContentsDynamic","features":[5]},{"name":"MmMdlPageContentsInvariant","features":[5]},{"name":"MmMdlPageContentsQuery","features":[5]},{"name":"MmMdlPageContentsState","features":[4,5]},{"name":"MmMediumSystem","features":[5]},{"name":"MmNonCached","features":[5]},{"name":"MmNonCachedUnordered","features":[5]},{"name":"MmNotMapped","features":[5]},{"name":"MmPageEntireDriver","features":[5]},{"name":"MmProbeAndLockPages","features":[4,5]},{"name":"MmProbeAndLockProcessPages","features":[4,5]},{"name":"MmProbeAndLockSelectedPages","features":[4,5,23]},{"name":"MmProtectDriverSection","features":[5,3]},{"name":"MmProtectMdlSystemAddress","features":[4,5,3]},{"name":"MmQuerySystemSize","features":[5]},{"name":"MmRemovePhysicalMemory","features":[5,3]},{"name":"MmResetDriverPaging","features":[5]},{"name":"MmRotatePhysicalView","features":[4,5,3]},{"name":"MmSecureVirtualMemory","features":[5,3]},{"name":"MmSecureVirtualMemoryEx","features":[5,3]},{"name":"MmSetPermanentCacheAttribute","features":[5,3]},{"name":"MmSizeOfMdl","features":[5]},{"name":"MmSmallSystem","features":[5]},{"name":"MmToFrameBuffer","features":[5]},{"name":"MmToFrameBufferNoCopy","features":[5]},{"name":"MmToRegularMemory","features":[5]},{"name":"MmToRegularMemoryNoCopy","features":[5]},{"name":"MmUSWCCached","features":[5]},{"name":"MmUnlockPagableImageSection","features":[5]},{"name":"MmUnlockPages","features":[4,5]},{"name":"MmUnmapIoSpace","features":[5]},{"name":"MmUnmapLockedPages","features":[4,5]},{"name":"MmUnmapReservedMapping","features":[4,5]},{"name":"MmUnmapVideoDisplay","features":[5]},{"name":"MmUnmapViewInSessionSpace","features":[5,3]},{"name":"MmUnmapViewInSystemSpace","features":[5,3]},{"name":"MmUnsecureVirtualMemory","features":[5,3]},{"name":"MmWriteCombined","features":[5]},{"name":"ModemPeripheral","features":[5]},{"name":"ModifyAccess","features":[5]},{"name":"MonitorPeripheral","features":[5]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[5]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[5]},{"name":"MonitorRequestReasonBatteryCountChange","features":[5]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[5]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[5]},{"name":"MonitorRequestReasonBuiltinPanel","features":[5]},{"name":"MonitorRequestReasonDP","features":[5]},{"name":"MonitorRequestReasonDim","features":[5]},{"name":"MonitorRequestReasonDirectedDrips","features":[5]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[5]},{"name":"MonitorRequestReasonFullWake","features":[5]},{"name":"MonitorRequestReasonGracePeriod","features":[5]},{"name":"MonitorRequestReasonIdleTimeout","features":[5]},{"name":"MonitorRequestReasonLid","features":[5]},{"name":"MonitorRequestReasonMax","features":[5]},{"name":"MonitorRequestReasonNearProximity","features":[5]},{"name":"MonitorRequestReasonPdcSignal","features":[5]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[5]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[5]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[5]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[5]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[5]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[5]},{"name":"MonitorRequestReasonPnP","features":[5]},{"name":"MonitorRequestReasonPoSetSystemState","features":[5]},{"name":"MonitorRequestReasonPolicyChange","features":[5]},{"name":"MonitorRequestReasonPowerButton","features":[5]},{"name":"MonitorRequestReasonRemoteConnection","features":[5]},{"name":"MonitorRequestReasonResumeModernStandby","features":[5]},{"name":"MonitorRequestReasonResumePdc","features":[5]},{"name":"MonitorRequestReasonResumeS4","features":[5]},{"name":"MonitorRequestReasonScMonitorpower","features":[5]},{"name":"MonitorRequestReasonScreenOffRequest","features":[5]},{"name":"MonitorRequestReasonSessionUnlock","features":[5]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[5]},{"name":"MonitorRequestReasonSleepButton","features":[5]},{"name":"MonitorRequestReasonSxTransition","features":[5]},{"name":"MonitorRequestReasonSystemIdle","features":[5]},{"name":"MonitorRequestReasonSystemStateEntered","features":[5]},{"name":"MonitorRequestReasonTerminal","features":[5]},{"name":"MonitorRequestReasonTerminalInit","features":[5]},{"name":"MonitorRequestReasonThermalStandby","features":[5]},{"name":"MonitorRequestReasonUnknown","features":[5]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[5]},{"name":"MonitorRequestReasonUserInput","features":[5]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[5]},{"name":"MonitorRequestReasonUserInputHid","features":[5]},{"name":"MonitorRequestReasonUserInputInitialization","features":[5]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[5]},{"name":"MonitorRequestReasonUserInputMouse","features":[5]},{"name":"MonitorRequestReasonUserInputPen","features":[5]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[5]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[5]},{"name":"MonitorRequestReasonUserInputTouch","features":[5]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[5]},{"name":"MonitorRequestReasonWinrt","features":[5]},{"name":"MonitorRequestTypeOff","features":[5]},{"name":"MonitorRequestTypeOnAndPresent","features":[5]},{"name":"MonitorRequestTypeToggleOn","features":[5]},{"name":"MultiFunctionAdapter","features":[5]},{"name":"NAMED_PIPE_CREATE_PARAMETERS","features":[5,3]},{"name":"NEC98x86","features":[5]},{"name":"NMI_CALLBACK","features":[5,3]},{"name":"NMI_NOTIFY_TYPE_GUID","features":[5]},{"name":"NMI_SECTION_GUID","features":[5]},{"name":"NPEM_CAPABILITY_STANDARD","features":[5]},{"name":"NPEM_CONTROL_ENABLE_DISABLE","features":[5,3]},{"name":"NPEM_CONTROL_INTERFACE","features":[5,3]},{"name":"NPEM_CONTROL_INTERFACE_CURRENT_VERSION","features":[5]},{"name":"NPEM_CONTROL_INTERFACE_VERSION1","features":[5]},{"name":"NPEM_CONTROL_INTERFACE_VERSION2","features":[5]},{"name":"NPEM_CONTROL_QUERY_CONTROL","features":[5]},{"name":"NPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[5,3]},{"name":"NPEM_CONTROL_SET_STANDARD_CONTROL","features":[5,3]},{"name":"NPEM_CONTROL_STANDARD_CONTROL_BIT","features":[5]},{"name":"NTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[5,6]},{"name":"NT_PAGING_LEVELS","features":[5]},{"name":"NT_TIB32","features":[5]},{"name":"NX_SUPPORT_POLICY_ALWAYSOFF","features":[5]},{"name":"NX_SUPPORT_POLICY_ALWAYSON","features":[5]},{"name":"NX_SUPPORT_POLICY_OPTIN","features":[5]},{"name":"NX_SUPPORT_POLICY_OPTOUT","features":[5]},{"name":"NetworkController","features":[5]},{"name":"NetworkPeripheral","features":[5]},{"name":"NoAspmSupport","features":[5]},{"name":"NormalPagePriority","features":[5]},{"name":"NormalPoolPriority","features":[5]},{"name":"NormalPoolPrioritySpecialPoolOverrun","features":[5]},{"name":"NormalPoolPrioritySpecialPoolUnderrun","features":[5]},{"name":"NormalWorkQueue","features":[5]},{"name":"NtAllocateLocallyUniqueId","features":[5,3]},{"name":"NtCommitComplete","features":[5,3]},{"name":"NtCommitEnlistment","features":[5,3]},{"name":"NtCommitTransaction","features":[5,3]},{"name":"NtCreateEnlistment","features":[4,5,3]},{"name":"NtCreateResourceManager","features":[4,5,3]},{"name":"NtCreateTransaction","features":[4,5,3]},{"name":"NtCreateTransactionManager","features":[4,5,3]},{"name":"NtDisplayString","features":[5,3]},{"name":"NtEnumerateTransactionObject","features":[5,3,38]},{"name":"NtGetNotificationResourceManager","features":[5,3,23]},{"name":"NtLoadDriver","features":[5,3]},{"name":"NtMakeTemporaryObject","features":[5,3]},{"name":"NtManagePartition","features":[5,3]},{"name":"NtOpenEnlistment","features":[4,5,3]},{"name":"NtOpenResourceManager","features":[4,5,3]},{"name":"NtOpenTransaction","features":[4,5,3]},{"name":"NtOpenTransactionManager","features":[4,5,3]},{"name":"NtPowerInformation","features":[5,3,10]},{"name":"NtPrePrepareComplete","features":[5,3]},{"name":"NtPrePrepareEnlistment","features":[5,3]},{"name":"NtPrepareComplete","features":[5,3]},{"name":"NtPrepareEnlistment","features":[5,3]},{"name":"NtPropagationComplete","features":[5,3]},{"name":"NtPropagationFailed","features":[5,3]},{"name":"NtQueryInformationEnlistment","features":[5,3,38]},{"name":"NtQueryInformationResourceManager","features":[5,3,38]},{"name":"NtQueryInformationTransaction","features":[5,3,38]},{"name":"NtQueryInformationTransactionManager","features":[5,3,38]},{"name":"NtReadOnlyEnlistment","features":[5,3]},{"name":"NtRecoverEnlistment","features":[5,3]},{"name":"NtRecoverResourceManager","features":[5,3]},{"name":"NtRecoverTransactionManager","features":[5,3]},{"name":"NtRegisterProtocolAddressInformation","features":[5,3]},{"name":"NtRenameTransactionManager","features":[5,3]},{"name":"NtRollbackComplete","features":[5,3]},{"name":"NtRollbackEnlistment","features":[5,3]},{"name":"NtRollbackTransaction","features":[5,3]},{"name":"NtRollforwardTransactionManager","features":[5,3]},{"name":"NtSetInformationEnlistment","features":[5,3,38]},{"name":"NtSetInformationResourceManager","features":[5,3,38]},{"name":"NtSetInformationTransaction","features":[5,3,38]},{"name":"NtSetInformationTransactionManager","features":[5,3,38]},{"name":"NtSinglePhaseReject","features":[5,3]},{"name":"NtUnloadDriver","features":[5,3]},{"name":"NuBus","features":[5]},{"name":"NuBusConfiguration","features":[5]},{"name":"OBJECT_HANDLE_INFORMATION","features":[5]},{"name":"OBJECT_TYPE_CREATE","features":[5]},{"name":"OB_CALLBACK_REGISTRATION","features":[4,5,3]},{"name":"OB_FLT_REGISTRATION_VERSION","features":[5]},{"name":"OB_FLT_REGISTRATION_VERSION_0100","features":[5]},{"name":"OB_OPERATION_HANDLE_CREATE","features":[5]},{"name":"OB_OPERATION_HANDLE_DUPLICATE","features":[5]},{"name":"OB_OPERATION_REGISTRATION","features":[4,5,3]},{"name":"OB_POST_CREATE_HANDLE_INFORMATION","features":[5]},{"name":"OB_POST_DUPLICATE_HANDLE_INFORMATION","features":[5]},{"name":"OB_POST_OPERATION_INFORMATION","features":[4,5,3]},{"name":"OB_POST_OPERATION_PARAMETERS","features":[5]},{"name":"OB_PREOP_CALLBACK_STATUS","features":[5]},{"name":"OB_PREOP_SUCCESS","features":[5]},{"name":"OB_PRE_CREATE_HANDLE_INFORMATION","features":[5]},{"name":"OB_PRE_DUPLICATE_HANDLE_INFORMATION","features":[5]},{"name":"OB_PRE_OPERATION_INFORMATION","features":[4,5]},{"name":"OB_PRE_OPERATION_PARAMETERS","features":[5]},{"name":"OPLOCK_KEY_FLAG_PARENT_KEY","features":[5]},{"name":"OPLOCK_KEY_FLAG_TARGET_KEY","features":[5]},{"name":"OPLOCK_KEY_VERSION_WIN7","features":[5]},{"name":"OPLOCK_KEY_VERSION_WIN8","features":[5]},{"name":"OSC_CAPABILITIES_MASKED","features":[5]},{"name":"OSC_FIRMWARE_FAILURE","features":[5]},{"name":"OSC_UNRECOGNIZED_REVISION","features":[5]},{"name":"OSC_UNRECOGNIZED_UUID","features":[5]},{"name":"ObCloseHandle","features":[5,3]},{"name":"ObDereferenceObjectDeferDelete","features":[5]},{"name":"ObDereferenceObjectDeferDeleteWithTag","features":[5]},{"name":"ObGetFilterVersion","features":[5]},{"name":"ObGetObjectSecurity","features":[5,3,6]},{"name":"ObReferenceObjectByHandle","features":[4,5,3]},{"name":"ObReferenceObjectByHandleWithTag","features":[4,5,3]},{"name":"ObReferenceObjectByPointer","features":[4,5,3]},{"name":"ObReferenceObjectByPointerWithTag","features":[4,5,3]},{"name":"ObReferenceObjectSafe","features":[5,3]},{"name":"ObReferenceObjectSafeWithTag","features":[5,3]},{"name":"ObRegisterCallbacks","features":[4,5,3]},{"name":"ObReleaseObjectSecurity","features":[5,3,6]},{"name":"ObUnRegisterCallbacks","features":[5]},{"name":"ObfDereferenceObject","features":[5]},{"name":"ObfDereferenceObjectWithTag","features":[5]},{"name":"ObfReferenceObject","features":[5]},{"name":"ObfReferenceObjectWithTag","features":[5]},{"name":"OkControl","features":[5]},{"name":"OtherController","features":[5]},{"name":"OtherPeripheral","features":[5]},{"name":"PAGE_ENCLAVE_NO_CHANGE","features":[5]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[5]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[5]},{"name":"PAGE_EXECUTE","features":[5]},{"name":"PAGE_EXECUTE_READ","features":[5]},{"name":"PAGE_EXECUTE_READWRITE","features":[5]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[5]},{"name":"PAGE_GRAPHICS_COHERENT","features":[5]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[5]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[5]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[5]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[5]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[5]},{"name":"PAGE_GRAPHICS_READONLY","features":[5]},{"name":"PAGE_GRAPHICS_READWRITE","features":[5]},{"name":"PAGE_GUARD","features":[5]},{"name":"PAGE_NOACCESS","features":[5]},{"name":"PAGE_NOCACHE","features":[5]},{"name":"PAGE_PRIORITY_INFORMATION","features":[5]},{"name":"PAGE_READONLY","features":[5]},{"name":"PAGE_READWRITE","features":[5]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[5]},{"name":"PAGE_SHIFT","features":[5]},{"name":"PAGE_SIZE","features":[5]},{"name":"PAGE_TARGETS_INVALID","features":[5]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[5]},{"name":"PAGE_WRITECOMBINE","features":[5]},{"name":"PAGE_WRITECOPY","features":[5]},{"name":"PALLOCATE_ADAPTER_CHANNEL","features":[4,7,5,3,6,8,9,10]},{"name":"PALLOCATE_ADAPTER_CHANNEL_EX","features":[4,7,5,3,6,8,9,10]},{"name":"PALLOCATE_COMMON_BUFFER","features":[4,7,5,3,6,8,9,10]},{"name":"PALLOCATE_COMMON_BUFFER_EX","features":[4,7,5,3,6,8,9,10]},{"name":"PALLOCATE_COMMON_BUFFER_VECTOR","features":[4,7,5,3,6,8,9,10]},{"name":"PALLOCATE_COMMON_BUFFER_WITH_BOUNDS","features":[4,7,5,3,6,8,9,10]},{"name":"PALLOCATE_DOMAIN_COMMON_BUFFER","features":[4,7,5,3,6,8,9,10]},{"name":"PALLOCATE_FUNCTION","features":[5]},{"name":"PALLOCATE_FUNCTION_EX","features":[5]},{"name":"PARBITER_HANDLER","features":[4,7,5,3,6,8,9,10]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[5]},{"name":"PARTITION_INFORMATION_CLASS","features":[5]},{"name":"PASSIVE_LEVEL","features":[5]},{"name":"PBOOT_DRIVER_CALLBACK_FUNCTION","features":[5]},{"name":"PBOUND_CALLBACK","features":[5]},{"name":"PBUILD_MDL_FROM_SCATTER_GATHER_LIST","features":[4,7,5,3,6,8,9,10]},{"name":"PBUILD_SCATTER_GATHER_LIST","features":[4,7,5,3,6,8,9,10]},{"name":"PBUILD_SCATTER_GATHER_LIST_EX","features":[4,7,5,3,6,8,9,10]},{"name":"PCALCULATE_SCATTER_GATHER_LIST_SIZE","features":[4,7,5,3,6,8,9,10]},{"name":"PCALLBACK_FUNCTION","features":[5]},{"name":"PCANCEL_ADAPTER_CHANNEL","features":[4,7,5,3,6,8,9,10]},{"name":"PCANCEL_MAPPED_TRANSFER","features":[4,7,5,3,6,8,9,10]},{"name":"PCCARD_DEVICE_PCI","features":[5]},{"name":"PCCARD_DUP_LEGACY_BASE","features":[5]},{"name":"PCCARD_MAP_ERROR","features":[5]},{"name":"PCCARD_MAP_ZERO","features":[5]},{"name":"PCCARD_NO_CONTROLLERS","features":[5]},{"name":"PCCARD_NO_LEGACY_BASE","features":[5]},{"name":"PCCARD_NO_PIC","features":[5]},{"name":"PCCARD_NO_TIMER","features":[5]},{"name":"PCCARD_SCAN_DISABLED","features":[5]},{"name":"PCIBUSDATA","features":[5]},{"name":"PCIBus","features":[5]},{"name":"PCIConfiguration","features":[5]},{"name":"PCIEXPRESS_ERROR_SECTION_GUID","features":[5]},{"name":"PCIE_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[5]},{"name":"PCIXBUS_ERROR_SECTION_GUID","features":[5]},{"name":"PCIXBUS_ERRTYPE_ADDRESSPARITY","features":[5]},{"name":"PCIXBUS_ERRTYPE_BUSTIMEOUT","features":[5]},{"name":"PCIXBUS_ERRTYPE_COMMANDPARITY","features":[5]},{"name":"PCIXBUS_ERRTYPE_DATAPARITY","features":[5]},{"name":"PCIXBUS_ERRTYPE_MASTERABORT","features":[5]},{"name":"PCIXBUS_ERRTYPE_MASTERDATAPARITY","features":[5]},{"name":"PCIXBUS_ERRTYPE_SYSTEM","features":[5]},{"name":"PCIXBUS_ERRTYPE_UNKNOWN","features":[5]},{"name":"PCIXDEVICE_ERROR_SECTION_GUID","features":[5]},{"name":"PCIX_BRIDGE_CAPABILITY","features":[5]},{"name":"PCIX_MODE1_100MHZ","features":[5]},{"name":"PCIX_MODE1_133MHZ","features":[5]},{"name":"PCIX_MODE1_66MHZ","features":[5]},{"name":"PCIX_MODE2_266_100MHZ","features":[5]},{"name":"PCIX_MODE2_266_133MHZ","features":[5]},{"name":"PCIX_MODE2_266_66MHZ","features":[5]},{"name":"PCIX_MODE2_533_100MHZ","features":[5]},{"name":"PCIX_MODE2_533_133MHZ","features":[5]},{"name":"PCIX_MODE2_533_66MHZ","features":[5]},{"name":"PCIX_MODE_CONVENTIONAL_PCI","features":[5]},{"name":"PCIX_VERSION_DUAL_MODE_ECC","features":[5]},{"name":"PCIX_VERSION_MODE1_ONLY","features":[5]},{"name":"PCIX_VERSION_MODE2_ECC","features":[5]},{"name":"PCI_ACS_ALLOWED","features":[5]},{"name":"PCI_ACS_BIT","features":[5]},{"name":"PCI_ACS_BLOCKED","features":[5]},{"name":"PCI_ACS_REDIRECTED","features":[5]},{"name":"PCI_ADDRESS_IO_ADDRESS_MASK","features":[5]},{"name":"PCI_ADDRESS_IO_SPACE","features":[5]},{"name":"PCI_ADDRESS_MEMORY_ADDRESS_MASK","features":[5]},{"name":"PCI_ADDRESS_MEMORY_PREFETCHABLE","features":[5]},{"name":"PCI_ADDRESS_MEMORY_TYPE_MASK","features":[5]},{"name":"PCI_ADDRESS_ROM_ADDRESS_MASK","features":[5]},{"name":"PCI_ADVANCED_FEATURES_CAPABILITY","features":[5]},{"name":"PCI_AGP_APERTURE_PAGE_SIZE","features":[5]},{"name":"PCI_AGP_CAPABILITY","features":[5]},{"name":"PCI_AGP_CONTROL","features":[5]},{"name":"PCI_AGP_EXTENDED_CAPABILITY","features":[5]},{"name":"PCI_AGP_ISOCH_COMMAND","features":[5]},{"name":"PCI_AGP_ISOCH_STATUS","features":[5]},{"name":"PCI_AGP_RATE_1X","features":[5]},{"name":"PCI_AGP_RATE_2X","features":[5]},{"name":"PCI_AGP_RATE_4X","features":[5]},{"name":"PCI_ATS_INTERFACE","features":[5,3]},{"name":"PCI_ATS_INTERFACE_VERSION","features":[5]},{"name":"PCI_BRIDGE_TYPE","features":[5]},{"name":"PCI_BUS_INTERFACE_STANDARD","features":[5]},{"name":"PCI_BUS_INTERFACE_STANDARD_VERSION","features":[5]},{"name":"PCI_BUS_WIDTH","features":[5]},{"name":"PCI_CAPABILITIES_HEADER","features":[5]},{"name":"PCI_CAPABILITY_ID_ADVANCED_FEATURES","features":[5]},{"name":"PCI_CAPABILITY_ID_AGP","features":[5]},{"name":"PCI_CAPABILITY_ID_AGP_TARGET","features":[5]},{"name":"PCI_CAPABILITY_ID_CPCI_HOTSWAP","features":[5]},{"name":"PCI_CAPABILITY_ID_CPCI_RES_CTRL","features":[5]},{"name":"PCI_CAPABILITY_ID_DEBUG_PORT","features":[5]},{"name":"PCI_CAPABILITY_ID_FPB","features":[5]},{"name":"PCI_CAPABILITY_ID_HYPERTRANSPORT","features":[5]},{"name":"PCI_CAPABILITY_ID_MSI","features":[5]},{"name":"PCI_CAPABILITY_ID_MSIX","features":[5]},{"name":"PCI_CAPABILITY_ID_P2P_SSID","features":[5]},{"name":"PCI_CAPABILITY_ID_PCIX","features":[5]},{"name":"PCI_CAPABILITY_ID_PCI_EXPRESS","features":[5]},{"name":"PCI_CAPABILITY_ID_POWER_MANAGEMENT","features":[5]},{"name":"PCI_CAPABILITY_ID_SATA_CONFIG","features":[5]},{"name":"PCI_CAPABILITY_ID_SECURE","features":[5]},{"name":"PCI_CAPABILITY_ID_SHPC","features":[5]},{"name":"PCI_CAPABILITY_ID_SLOT_ID","features":[5]},{"name":"PCI_CAPABILITY_ID_VENDOR_SPECIFIC","features":[5]},{"name":"PCI_CAPABILITY_ID_VPD","features":[5]},{"name":"PCI_CARDBUS_BRIDGE_TYPE","features":[5]},{"name":"PCI_CLASS_BASE_SYSTEM_DEV","features":[5]},{"name":"PCI_CLASS_BRIDGE_DEV","features":[5]},{"name":"PCI_CLASS_DATA_ACQ_SIGNAL_PROC","features":[5]},{"name":"PCI_CLASS_DISPLAY_CTLR","features":[5]},{"name":"PCI_CLASS_DOCKING_STATION","features":[5]},{"name":"PCI_CLASS_ENCRYPTION_DECRYPTION","features":[5]},{"name":"PCI_CLASS_INPUT_DEV","features":[5]},{"name":"PCI_CLASS_INTELLIGENT_IO_CTLR","features":[5]},{"name":"PCI_CLASS_MASS_STORAGE_CTLR","features":[5]},{"name":"PCI_CLASS_MEMORY_CTLR","features":[5]},{"name":"PCI_CLASS_MULTIMEDIA_DEV","features":[5]},{"name":"PCI_CLASS_NETWORK_CTLR","features":[5]},{"name":"PCI_CLASS_NOT_DEFINED","features":[5]},{"name":"PCI_CLASS_PRE_20","features":[5]},{"name":"PCI_CLASS_PROCESSOR","features":[5]},{"name":"PCI_CLASS_SATELLITE_COMMS_CTLR","features":[5]},{"name":"PCI_CLASS_SERIAL_BUS_CTLR","features":[5]},{"name":"PCI_CLASS_SIMPLE_COMMS_CTLR","features":[5]},{"name":"PCI_CLASS_WIRELESS_CTLR","features":[5]},{"name":"PCI_COMMON_CONFIG","features":[5]},{"name":"PCI_COMMON_HEADER","features":[5]},{"name":"PCI_DATA_VERSION","features":[5]},{"name":"PCI_DEBUGGING_DEVICE_IN_USE","features":[5]},{"name":"PCI_DEVICE_D3COLD_STATE_REASON","features":[5]},{"name":"PCI_DEVICE_PRESENCE_PARAMETERS","features":[5]},{"name":"PCI_DEVICE_PRESENT_INTERFACE","features":[5,3]},{"name":"PCI_DEVICE_PRESENT_INTERFACE_VERSION","features":[5]},{"name":"PCI_DEVICE_TYPE","features":[5]},{"name":"PCI_DISABLE_LEVEL_INTERRUPT","features":[5]},{"name":"PCI_ENABLE_BUS_MASTER","features":[5]},{"name":"PCI_ENABLE_FAST_BACK_TO_BACK","features":[5]},{"name":"PCI_ENABLE_IO_SPACE","features":[5]},{"name":"PCI_ENABLE_MEMORY_SPACE","features":[5]},{"name":"PCI_ENABLE_PARITY","features":[5]},{"name":"PCI_ENABLE_SERR","features":[5]},{"name":"PCI_ENABLE_SPECIAL_CYCLES","features":[5]},{"name":"PCI_ENABLE_VGA_COMPATIBLE_PALETTE","features":[5]},{"name":"PCI_ENABLE_WAIT_CYCLE","features":[5]},{"name":"PCI_ENABLE_WRITE_AND_INVALIDATE","features":[5]},{"name":"PCI_ERROR_HANDLER_CALLBACK","features":[5]},{"name":"PCI_EXPRESS_ACCESS_CONTROL_SERVICES_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_ACS_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_ACS_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_ACS_CONTROL","features":[5]},{"name":"PCI_EXPRESS_ADVANCED_ERROR_REPORTING_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_AER_CAPABILITIES","features":[5]},{"name":"PCI_EXPRESS_AER_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_ARI_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_ARI_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_ARI_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_ARI_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_ASPM_CONTROL","features":[5]},{"name":"PCI_EXPRESS_ASPM_SUPPORT","features":[5]},{"name":"PCI_EXPRESS_ATS_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_ATS_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_ATS_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_ATS_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_BRIDGE_AER_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_CAPABILITIES_REGISTER","features":[5]},{"name":"PCI_EXPRESS_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_CARD_PRESENCE","features":[5]},{"name":"PCI_EXPRESS_CONFIGURATION_ACCESS_CORRELATION_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_MASK","features":[5]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_STATUS","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_REGISTER_V11","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_V11","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_LOCK_REGISTER","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_HIGH_REGISTER","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_LOW_REGISTER","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_HIGH_REGISTER","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_LOW_REGISTER_V11","features":[5]},{"name":"PCI_EXPRESS_CXL_DVSEC_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_1","features":[5]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_2","features":[5]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_2_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_2_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DEVICE_SERIAL_NUMBER_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_DEVICE_STATUS_2_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DEVICE_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DEVICE_TYPE","features":[5]},{"name":"PCI_EXPRESS_DPA_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_DPC_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_DPC_CAPS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_DPC_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_ERROR_SOURCE_ID","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_EXCEPTION_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_HEADERLOG_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_IMPSPECLOG_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_MASK_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SEVERITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SYSERR_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_RP_PIO_TLPPREFIXLOG_REGISTER","features":[5]},{"name":"PCI_EXPRESS_DPC_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_ENHANCED_CAPABILITY_HEADER","features":[5]},{"name":"PCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[5,3]},{"name":"PCI_EXPRESS_ERROR_SOURCE_ID","features":[5]},{"name":"PCI_EXPRESS_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[5,3]},{"name":"PCI_EXPRESS_FRS_QUEUEING_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_INDICATOR_STATE","features":[5]},{"name":"PCI_EXPRESS_L0s_EXIT_LATENCY","features":[5]},{"name":"PCI_EXPRESS_L1_EXIT_LATENCY","features":[5]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITIES_REGISTER","features":[5]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_L1_PM_SS_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_1_REGISTER","features":[5]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_2_REGISTER","features":[5]},{"name":"PCI_EXPRESS_LANE_ERROR_STATUS","features":[5]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_2_REGISTER","features":[5]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_REGISTER","features":[5]},{"name":"PCI_EXPRESS_LINK_CONTROL3","features":[5]},{"name":"PCI_EXPRESS_LINK_CONTROL_2_REGISTER","features":[5]},{"name":"PCI_EXPRESS_LINK_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[5,3]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE_VERSION","features":[5]},{"name":"PCI_EXPRESS_LINK_STATUS_2_REGISTER","features":[5]},{"name":"PCI_EXPRESS_LINK_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_LINK_SUBSTATE","features":[5]},{"name":"PCI_EXPRESS_LN_REQUESTER_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_LTR_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_LTR_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_LTR_MAX_LATENCY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_MAX_PAYLOAD_SIZE","features":[5]},{"name":"PCI_EXPRESS_MFVC_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_MPCIE_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_MRL_STATE","features":[5]},{"name":"PCI_EXPRESS_MULTICAST_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_MULTI_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_NPEM_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_NPEM_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_NPEM_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_PAGE_REQUEST_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_PASID_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_PASID_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_PASID_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_PASID_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_PME_REQUESTOR_ID","features":[5]},{"name":"PCI_EXPRESS_PMUX_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_POWER_BUDGETING_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_POWER_STATE","features":[5]},{"name":"PCI_EXPRESS_PRI_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_PRI_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_PRI_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_PTM_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_PTM_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_PTM_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_PTM_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_RCB","features":[5]},{"name":"PCI_EXPRESS_RCRB_HEADER_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_RC_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_RC_INTERNAL_LINK_CONTROL_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_RC_LINK_DECLARATION_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_READINESS_TIME_REPORTING_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_RESERVED_FOR_AMD_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_ENTRY","features":[5]},{"name":"PCI_EXPRESS_ROOTPORT_AER_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_ROOT_CAPABILITIES_REGISTER","features":[5]},{"name":"PCI_EXPRESS_ROOT_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_ROOT_ERROR_COMMAND","features":[5]},{"name":"PCI_EXPRESS_ROOT_ERROR_STATUS","features":[5]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[5]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE_VERSION","features":[5]},{"name":"PCI_EXPRESS_ROOT_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_SECONDARY_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_SECONDARY_PCI_EXPRESS_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_SEC_AER_CAPABILITIES","features":[5]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_MASK","features":[5]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_SEVERITY","features":[5]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_STATUS","features":[5]},{"name":"PCI_EXPRESS_SERIAL_NUMBER_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_SINGLE_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_SLOT_CAPABILITIES_REGISTER","features":[5]},{"name":"PCI_EXPRESS_SLOT_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_SLOT_STATUS_REGISTER","features":[5]},{"name":"PCI_EXPRESS_SRIOV_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_SRIOV_CAPS","features":[5]},{"name":"PCI_EXPRESS_SRIOV_CONTROL","features":[5]},{"name":"PCI_EXPRESS_SRIOV_MIGRATION_STATE_ARRAY","features":[5]},{"name":"PCI_EXPRESS_SRIOV_STATUS","features":[5]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY_REGISTER","features":[5]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CONTROL_REGISTER","features":[5]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_MSIX_TABLE","features":[5]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_NONE","features":[5]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_RESERVED","features":[5]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_TPH_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_TPH_ST_TABLE_ENTRY","features":[5]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_MASK","features":[5]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_SEVERITY","features":[5]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_STATUS","features":[5]},{"name":"PCI_EXPRESS_VC_AND_MFVC_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAPABILITY","features":[5]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAP_ID","features":[5]},{"name":"PCI_EXPRESS_WAKE_CONTROL","features":[5,3]},{"name":"PCI_EXTENDED_CONFIG_LENGTH","features":[5]},{"name":"PCI_FIRMWARE_BUS_CAPS","features":[5]},{"name":"PCI_FIRMWARE_BUS_CAPS_RETURN_BUFFER","features":[5]},{"name":"PCI_FPB_CAPABILITIES_REGISTER","features":[5]},{"name":"PCI_FPB_CAPABILITY","features":[5]},{"name":"PCI_FPB_CAPABILITY_HEADER","features":[5]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL1_REGISTER","features":[5]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL2_REGISTER","features":[5]},{"name":"PCI_FPB_MEM_LOW_VECTOR_CONTROL_REGISTER","features":[5]},{"name":"PCI_FPB_RID_VECTOR_CONTROL1_REGISTER","features":[5]},{"name":"PCI_FPB_RID_VECTOR_CONTROL2_REGISTER","features":[5]},{"name":"PCI_FPB_VECTOR_ACCESS_CONTROL_REGISTER","features":[5]},{"name":"PCI_FPB_VECTOR_ACCESS_DATA_REGISTER","features":[5]},{"name":"PCI_HARDWARE_INTERFACE","features":[5]},{"name":"PCI_INVALID_ALTERNATE_FUNCTION_NUMBER","features":[5]},{"name":"PCI_INVALID_VENDORID","features":[5]},{"name":"PCI_IS_DEVICE_PRESENT","features":[5,3]},{"name":"PCI_IS_DEVICE_PRESENT_EX","features":[5,3]},{"name":"PCI_LINE_TO_PIN","features":[5]},{"name":"PCI_MAX_BRIDGE_NUMBER","features":[5]},{"name":"PCI_MAX_DEVICES","features":[5]},{"name":"PCI_MAX_FUNCTION","features":[5]},{"name":"PCI_MAX_SEGMENT_NUMBER","features":[5]},{"name":"PCI_MSIX_GET_ENTRY","features":[5,3]},{"name":"PCI_MSIX_GET_TABLE_SIZE","features":[5,3]},{"name":"PCI_MSIX_MASKUNMASK_ENTRY","features":[5,3]},{"name":"PCI_MSIX_SET_ENTRY","features":[5,3]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE","features":[5,3]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE_VERSION","features":[5]},{"name":"PCI_MULTIFUNCTION","features":[5]},{"name":"PCI_PIN_TO_LINE","features":[5]},{"name":"PCI_PMC","features":[5]},{"name":"PCI_PMCSR","features":[5]},{"name":"PCI_PMCSR_BSE","features":[5]},{"name":"PCI_PM_CAPABILITY","features":[5]},{"name":"PCI_PREPARE_MULTISTAGE_RESUME","features":[5]},{"name":"PCI_PROGRAMMING_INTERFACE_MSC_NVM_EXPRESS","features":[5]},{"name":"PCI_PTM_TIME_SOURCE_AUX","features":[5]},{"name":"PCI_READ_WRITE_CONFIG","features":[5]},{"name":"PCI_RECOVERY_SECTION_GUID","features":[5]},{"name":"PCI_ROMADDRESS_ENABLED","features":[5]},{"name":"PCI_ROOT_BUS_CAPABILITY","features":[5,3]},{"name":"PCI_ROOT_BUS_HARDWARE_CAPABILITY","features":[5,3]},{"name":"PCI_ROOT_BUS_OSC_CONTROL_FIELD","features":[5]},{"name":"PCI_ROOT_BUS_OSC_METHOD_CAPABILITY_REVISION","features":[5]},{"name":"PCI_ROOT_BUS_OSC_SUPPORT_FIELD","features":[5]},{"name":"PCI_SECURITY_DIRECT_TRANSLATED_P2P","features":[5]},{"name":"PCI_SECURITY_ENHANCED","features":[5]},{"name":"PCI_SECURITY_FULLY_SUPPORTED","features":[5]},{"name":"PCI_SECURITY_GUEST_ASSIGNED","features":[5]},{"name":"PCI_SECURITY_INTERFACE","features":[5,3]},{"name":"PCI_SECURITY_INTERFACE2","features":[5,3]},{"name":"PCI_SECURITY_INTERFACE_VERSION","features":[5]},{"name":"PCI_SECURITY_INTERFACE_VERSION2","features":[5]},{"name":"PCI_SECURITY_SRIOV_DIRECT_TRANSLATED_P2P","features":[5]},{"name":"PCI_SEGMENT_BUS_NUMBER","features":[5]},{"name":"PCI_SET_ACS","features":[5,3]},{"name":"PCI_SET_ACS2","features":[5,3]},{"name":"PCI_SET_ATS","features":[5,3]},{"name":"PCI_SLOT_NUMBER","features":[5]},{"name":"PCI_STATUS_66MHZ_CAPABLE","features":[5]},{"name":"PCI_STATUS_CAPABILITIES_LIST","features":[5]},{"name":"PCI_STATUS_DATA_PARITY_DETECTED","features":[5]},{"name":"PCI_STATUS_DETECTED_PARITY_ERROR","features":[5]},{"name":"PCI_STATUS_DEVSEL","features":[5]},{"name":"PCI_STATUS_FAST_BACK_TO_BACK","features":[5]},{"name":"PCI_STATUS_IMMEDIATE_READINESS","features":[5]},{"name":"PCI_STATUS_INTERRUPT_PENDING","features":[5]},{"name":"PCI_STATUS_RECEIVED_MASTER_ABORT","features":[5]},{"name":"PCI_STATUS_RECEIVED_TARGET_ABORT","features":[5]},{"name":"PCI_STATUS_SIGNALED_SYSTEM_ERROR","features":[5]},{"name":"PCI_STATUS_SIGNALED_TARGET_ABORT","features":[5]},{"name":"PCI_STATUS_UDF_SUPPORTED","features":[5]},{"name":"PCI_SUBCLASS_BR_CARDBUS","features":[5]},{"name":"PCI_SUBCLASS_BR_EISA","features":[5]},{"name":"PCI_SUBCLASS_BR_HOST","features":[5]},{"name":"PCI_SUBCLASS_BR_ISA","features":[5]},{"name":"PCI_SUBCLASS_BR_MCA","features":[5]},{"name":"PCI_SUBCLASS_BR_NUBUS","features":[5]},{"name":"PCI_SUBCLASS_BR_OTHER","features":[5]},{"name":"PCI_SUBCLASS_BR_PCI_TO_PCI","features":[5]},{"name":"PCI_SUBCLASS_BR_PCMCIA","features":[5]},{"name":"PCI_SUBCLASS_BR_RACEWAY","features":[5]},{"name":"PCI_SUBCLASS_COM_MODEM","features":[5]},{"name":"PCI_SUBCLASS_COM_MULTIPORT","features":[5]},{"name":"PCI_SUBCLASS_COM_OTHER","features":[5]},{"name":"PCI_SUBCLASS_COM_PARALLEL","features":[5]},{"name":"PCI_SUBCLASS_COM_SERIAL","features":[5]},{"name":"PCI_SUBCLASS_CRYPTO_ENTERTAINMENT","features":[5]},{"name":"PCI_SUBCLASS_CRYPTO_NET_COMP","features":[5]},{"name":"PCI_SUBCLASS_CRYPTO_OTHER","features":[5]},{"name":"PCI_SUBCLASS_DASP_DPIO","features":[5]},{"name":"PCI_SUBCLASS_DASP_OTHER","features":[5]},{"name":"PCI_SUBCLASS_DOC_GENERIC","features":[5]},{"name":"PCI_SUBCLASS_DOC_OTHER","features":[5]},{"name":"PCI_SUBCLASS_INP_DIGITIZER","features":[5]},{"name":"PCI_SUBCLASS_INP_GAMEPORT","features":[5]},{"name":"PCI_SUBCLASS_INP_KEYBOARD","features":[5]},{"name":"PCI_SUBCLASS_INP_MOUSE","features":[5]},{"name":"PCI_SUBCLASS_INP_OTHER","features":[5]},{"name":"PCI_SUBCLASS_INP_SCANNER","features":[5]},{"name":"PCI_SUBCLASS_INTIO_I2O","features":[5]},{"name":"PCI_SUBCLASS_MEM_FLASH","features":[5]},{"name":"PCI_SUBCLASS_MEM_OTHER","features":[5]},{"name":"PCI_SUBCLASS_MEM_RAM","features":[5]},{"name":"PCI_SUBCLASS_MM_AUDIO_DEV","features":[5]},{"name":"PCI_SUBCLASS_MM_OTHER","features":[5]},{"name":"PCI_SUBCLASS_MM_TELEPHONY_DEV","features":[5]},{"name":"PCI_SUBCLASS_MM_VIDEO_DEV","features":[5]},{"name":"PCI_SUBCLASS_MSC_AHCI_CTLR","features":[5]},{"name":"PCI_SUBCLASS_MSC_FLOPPY_CTLR","features":[5]},{"name":"PCI_SUBCLASS_MSC_IDE_CTLR","features":[5]},{"name":"PCI_SUBCLASS_MSC_IPI_CTLR","features":[5]},{"name":"PCI_SUBCLASS_MSC_NVM_CTLR","features":[5]},{"name":"PCI_SUBCLASS_MSC_OTHER","features":[5]},{"name":"PCI_SUBCLASS_MSC_RAID_CTLR","features":[5]},{"name":"PCI_SUBCLASS_MSC_SCSI_BUS_CTLR","features":[5]},{"name":"PCI_SUBCLASS_NET_ATM_CTLR","features":[5]},{"name":"PCI_SUBCLASS_NET_ETHERNET_CTLR","features":[5]},{"name":"PCI_SUBCLASS_NET_FDDI_CTLR","features":[5]},{"name":"PCI_SUBCLASS_NET_ISDN_CTLR","features":[5]},{"name":"PCI_SUBCLASS_NET_OTHER","features":[5]},{"name":"PCI_SUBCLASS_NET_TOKEN_RING_CTLR","features":[5]},{"name":"PCI_SUBCLASS_PRE_20_NON_VGA","features":[5]},{"name":"PCI_SUBCLASS_PRE_20_VGA","features":[5]},{"name":"PCI_SUBCLASS_PROC_386","features":[5]},{"name":"PCI_SUBCLASS_PROC_486","features":[5]},{"name":"PCI_SUBCLASS_PROC_ALPHA","features":[5]},{"name":"PCI_SUBCLASS_PROC_COPROCESSOR","features":[5]},{"name":"PCI_SUBCLASS_PROC_PENTIUM","features":[5]},{"name":"PCI_SUBCLASS_PROC_POWERPC","features":[5]},{"name":"PCI_SUBCLASS_SAT_AUDIO","features":[5]},{"name":"PCI_SUBCLASS_SAT_DATA","features":[5]},{"name":"PCI_SUBCLASS_SAT_TV","features":[5]},{"name":"PCI_SUBCLASS_SAT_VOICE","features":[5]},{"name":"PCI_SUBCLASS_SB_ACCESS","features":[5]},{"name":"PCI_SUBCLASS_SB_FIBRE_CHANNEL","features":[5]},{"name":"PCI_SUBCLASS_SB_IEEE1394","features":[5]},{"name":"PCI_SUBCLASS_SB_SMBUS","features":[5]},{"name":"PCI_SUBCLASS_SB_SSA","features":[5]},{"name":"PCI_SUBCLASS_SB_THUNDERBOLT","features":[5]},{"name":"PCI_SUBCLASS_SB_USB","features":[5]},{"name":"PCI_SUBCLASS_SYS_DMA_CTLR","features":[5]},{"name":"PCI_SUBCLASS_SYS_GEN_HOTPLUG_CTLR","features":[5]},{"name":"PCI_SUBCLASS_SYS_INTERRUPT_CTLR","features":[5]},{"name":"PCI_SUBCLASS_SYS_OTHER","features":[5]},{"name":"PCI_SUBCLASS_SYS_RCEC","features":[5]},{"name":"PCI_SUBCLASS_SYS_REAL_TIME_CLOCK","features":[5]},{"name":"PCI_SUBCLASS_SYS_SDIO_CTRL","features":[5]},{"name":"PCI_SUBCLASS_SYS_SYSTEM_TIMER","features":[5]},{"name":"PCI_SUBCLASS_VID_OTHER","features":[5]},{"name":"PCI_SUBCLASS_VID_VGA_CTLR","features":[5]},{"name":"PCI_SUBCLASS_VID_XGA_CTLR","features":[5]},{"name":"PCI_SUBCLASS_WIRELESS_CON_IR","features":[5]},{"name":"PCI_SUBCLASS_WIRELESS_IRDA","features":[5]},{"name":"PCI_SUBCLASS_WIRELESS_OTHER","features":[5]},{"name":"PCI_SUBCLASS_WIRELESS_RF","features":[5]},{"name":"PCI_SUBLCASS_VID_3D_CTLR","features":[5]},{"name":"PCI_SUBSYSTEM_IDS_CAPABILITY","features":[5]},{"name":"PCI_TYPE0_ADDRESSES","features":[5]},{"name":"PCI_TYPE1_ADDRESSES","features":[5]},{"name":"PCI_TYPE2_ADDRESSES","features":[5]},{"name":"PCI_TYPE_20BIT","features":[5]},{"name":"PCI_TYPE_32BIT","features":[5]},{"name":"PCI_TYPE_64BIT","features":[5]},{"name":"PCI_USE_CLASS_SUBCLASS","features":[5]},{"name":"PCI_USE_LOCAL_BUS","features":[5]},{"name":"PCI_USE_LOCAL_DEVICE","features":[5]},{"name":"PCI_USE_PROGIF","features":[5]},{"name":"PCI_USE_REVISION","features":[5]},{"name":"PCI_USE_SUBSYSTEM_IDS","features":[5]},{"name":"PCI_USE_VENDEV_IDS","features":[5]},{"name":"PCI_VENDOR_SPECIFIC_CAPABILITY","features":[5]},{"name":"PCI_VIRTUALIZATION_INTERFACE","features":[5,3]},{"name":"PCI_WHICHSPACE_CONFIG","features":[5]},{"name":"PCI_WHICHSPACE_ROM","features":[5]},{"name":"PCI_X_CAPABILITY","features":[5]},{"name":"PCIe_NOTIFY_TYPE_GUID","features":[5]},{"name":"PCLFS_CLIENT_ADVANCE_TAIL_CALLBACK","features":[4,7,5,3,6,23,8,9,10]},{"name":"PCLFS_CLIENT_LFF_HANDLER_COMPLETE_CALLBACK","features":[4,7,5,3,6,8,9,10]},{"name":"PCLFS_CLIENT_LOG_UNPINNED_CALLBACK","features":[4,7,5,3,6,8,9,10]},{"name":"PCLFS_SET_LOG_SIZE_COMPLETE_CALLBACK","features":[4,7,5,3,6,8,9,10]},{"name":"PCMCIABus","features":[5]},{"name":"PCMCIAConfiguration","features":[5]},{"name":"PCONFIGURE_ADAPTER_CHANNEL","features":[4,7,5,3,6,8,9,10]},{"name":"PCRASHDUMP_POWER_ON","features":[5,3]},{"name":"PCREATE_COMMON_BUFFER_FROM_MDL","features":[4,7,5,3,6,8,9,10]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE","features":[5,3]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE_EX","features":[4,7,5,3,6,8,9,10,37]},{"name":"PCREATE_THREAD_NOTIFY_ROUTINE","features":[5,3]},{"name":"PCR_BTI_MITIGATION_CSWAP_HVC","features":[5]},{"name":"PCR_BTI_MITIGATION_CSWAP_SMC","features":[5]},{"name":"PCR_BTI_MITIGATION_NONE","features":[5]},{"name":"PCR_BTI_MITIGATION_VBAR_MASK","features":[5]},{"name":"PCR_MAJOR_VERSION","features":[5]},{"name":"PCR_MINOR_VERSION","features":[5]},{"name":"PCW_CALLBACK","features":[4,5,3,9]},{"name":"PCW_CALLBACK_INFORMATION","features":[4,5,3,9]},{"name":"PCW_CALLBACK_TYPE","features":[5]},{"name":"PCW_COUNTER_DESCRIPTOR","features":[5]},{"name":"PCW_COUNTER_INFORMATION","features":[5,3]},{"name":"PCW_CURRENT_VERSION","features":[5]},{"name":"PCW_DATA","features":[5]},{"name":"PCW_MASK_INFORMATION","features":[4,5,3,9]},{"name":"PCW_REGISTRATION_FLAGS","features":[5]},{"name":"PCW_REGISTRATION_INFORMATION","features":[5,3]},{"name":"PCW_VERSION_1","features":[5]},{"name":"PCW_VERSION_2","features":[5]},{"name":"PD3COLD_REQUEST_AUX_POWER","features":[5,3]},{"name":"PD3COLD_REQUEST_CORE_POWER_RAIL","features":[5]},{"name":"PD3COLD_REQUEST_PERST_DELAY","features":[5,3]},{"name":"PDEBUG_DEVICE_FOUND_FUNCTION","features":[5,3]},{"name":"PDEBUG_PRINT_CALLBACK","features":[5,9]},{"name":"PDEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[5,3]},{"name":"PDEVICE_CHANGE_COMPLETE_CALLBACK","features":[5]},{"name":"PDEVICE_NOTIFY_CALLBACK","features":[5]},{"name":"PDEVICE_NOTIFY_CALLBACK2","features":[5]},{"name":"PDEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[5,3]},{"name":"PDEVICE_RESET_COMPLETION","features":[5]},{"name":"PDEVICE_RESET_HANDLER","features":[5,3]},{"name":"PDE_BASE","features":[5]},{"name":"PDE_PER_PAGE","features":[5]},{"name":"PDE_TOP","features":[5]},{"name":"PDI_SHIFT","features":[5]},{"name":"PDMA_COMPLETION_ROUTINE","features":[5]},{"name":"PDRIVER_CMC_EXCEPTION_CALLBACK","features":[5]},{"name":"PDRIVER_CPE_EXCEPTION_CALLBACK","features":[5]},{"name":"PDRIVER_EXCPTN_CALLBACK","features":[5]},{"name":"PDRIVER_VERIFIER_THUNK_ROUTINE","features":[5]},{"name":"PEI_NOTIFY_TYPE_GUID","features":[5]},{"name":"PENABLE_VIRTUALIZATION","features":[5,3]},{"name":"PETWENABLECALLBACK","features":[5]},{"name":"PEXPAND_STACK_CALLOUT","features":[5]},{"name":"PEXT_CALLBACK","features":[5]},{"name":"PEXT_DELETE_CALLBACK","features":[5]},{"name":"PEX_CALLBACK_FUNCTION","features":[5,3]},{"name":"PFAControl","features":[5]},{"name":"PFLUSH_ADAPTER_BUFFERS","features":[4,7,5,3,6,8,9,10]},{"name":"PFLUSH_ADAPTER_BUFFERS_EX","features":[4,7,5,3,6,8,9,10]},{"name":"PFLUSH_DMA_BUFFER","features":[4,7,5,3,6,8,9,10]},{"name":"PFNFTH","features":[5,3]},{"name":"PFN_IN_USE_PAGE_OFFLINE_NOTIFY","features":[5,3]},{"name":"PFN_NT_COMMIT_TRANSACTION","features":[5,3]},{"name":"PFN_NT_CREATE_TRANSACTION","features":[4,5,3]},{"name":"PFN_NT_OPEN_TRANSACTION","features":[4,5,3]},{"name":"PFN_NT_QUERY_INFORMATION_TRANSACTION","features":[5,3,38]},{"name":"PFN_NT_ROLLBACK_TRANSACTION","features":[5,3]},{"name":"PFN_NT_SET_INFORMATION_TRANSACTION","features":[5,3,38]},{"name":"PFN_RTL_IS_NTDDI_VERSION_AVAILABLE","features":[5,3]},{"name":"PFN_RTL_IS_SERVICE_PACK_VERSION_INSTALLED","features":[5,3]},{"name":"PFN_WHEA_HIGH_IRQL_LOG_SEL_EVENT_HANDLER","features":[5,3,33]},{"name":"PFPGA_BUS_SCAN","features":[5]},{"name":"PFPGA_CONTROL_CONFIG_SPACE","features":[5,3]},{"name":"PFPGA_CONTROL_ERROR_REPORTING","features":[5,3]},{"name":"PFPGA_CONTROL_LINK","features":[5,3]},{"name":"PFREE_ADAPTER_CHANNEL","features":[4,7,5,3,6,8,9,10]},{"name":"PFREE_ADAPTER_OBJECT","features":[4,7,5,3,6,8,9,10]},{"name":"PFREE_COMMON_BUFFER","features":[4,7,5,3,6,8,9,10]},{"name":"PFREE_COMMON_BUFFER_FROM_VECTOR","features":[4,7,5,3,6,8,9,10]},{"name":"PFREE_COMMON_BUFFER_VECTOR","features":[4,7,5,3,6,8,9,10]},{"name":"PFREE_FUNCTION_EX","features":[5]},{"name":"PFREE_MAP_REGISTERS","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_COMMON_BUFFER_FROM_VECTOR_BY_INDEX","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_D3COLD_CAPABILITY","features":[5,3]},{"name":"PGET_D3COLD_LAST_TRANSITION_STATUS","features":[5]},{"name":"PGET_DEVICE_RESET_STATUS","features":[5,3]},{"name":"PGET_DMA_ADAPTER","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_DMA_ADAPTER_INFO","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_DMA_ALIGNMENT","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_DMA_DOMAIN","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_DMA_TRANSFER_INFO","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_IDLE_WAKE_INFO","features":[5,3]},{"name":"PGET_LOCATION_STRING","features":[5,3]},{"name":"PGET_SCATTER_GATHER_LIST","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_SCATTER_GATHER_LIST_EX","features":[4,7,5,3,6,8,9,10]},{"name":"PGET_SDEV_IDENTIFIER","features":[5]},{"name":"PGET_SET_DEVICE_DATA","features":[5]},{"name":"PGET_UPDATED_BUS_RESOURCE","features":[5,3]},{"name":"PGET_VIRTUAL_DEVICE_DATA","features":[5]},{"name":"PGET_VIRTUAL_DEVICE_LOCATION","features":[5,3]},{"name":"PGET_VIRTUAL_DEVICE_RESOURCES","features":[5]},{"name":"PGET_VIRTUAL_FUNCTION_PROBED_BARS","features":[5,3]},{"name":"PGPE_CLEAR_STATUS","features":[4,7,5,3,6,8,9,10]},{"name":"PGPE_CLEAR_STATUS2","features":[5,3]},{"name":"PGPE_CONNECT_VECTOR","features":[4,7,5,3,6,8,9,10]},{"name":"PGPE_CONNECT_VECTOR2","features":[5,3]},{"name":"PGPE_DISABLE_EVENT","features":[4,7,5,3,6,8,9,10]},{"name":"PGPE_DISABLE_EVENT2","features":[5,3]},{"name":"PGPE_DISCONNECT_VECTOR","features":[5,3]},{"name":"PGPE_DISCONNECT_VECTOR2","features":[5,3]},{"name":"PGPE_ENABLE_EVENT","features":[4,7,5,3,6,8,9,10]},{"name":"PGPE_ENABLE_EVENT2","features":[5,3]},{"name":"PGPE_SERVICE_ROUTINE","features":[5,3]},{"name":"PGPE_SERVICE_ROUTINE2","features":[5,3]},{"name":"PHALIOREADWRITEHANDLER","features":[5,3]},{"name":"PHALMCAINTERFACELOCK","features":[5]},{"name":"PHALMCAINTERFACEREADREGISTER","features":[5,3]},{"name":"PHALMCAINTERFACEUNLOCK","features":[5]},{"name":"PHAL_RESET_DISPLAY_PARAMETERS","features":[5,3]},{"name":"PHVL_WHEA_ERROR_NOTIFICATION","features":[5,3]},{"name":"PHYSICAL_COUNTER_EVENT_BUFFER_CONFIGURATION","features":[5,3]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR","features":[5,3]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR_TYPE","features":[5]},{"name":"PHYSICAL_COUNTER_RESOURCE_LIST","features":[5,3]},{"name":"PHYSICAL_MEMORY_RANGE","features":[5]},{"name":"PINITIALIZE_DMA_TRANSFER_CONTEXT","features":[4,7,5,3,6,8,9,10]},{"name":"PINTERFACE_DEREFERENCE","features":[5]},{"name":"PINTERFACE_REFERENCE","features":[5]},{"name":"PIOMMU_DEVICE_CREATE","features":[5,3]},{"name":"PIOMMU_DEVICE_DELETE","features":[5,3]},{"name":"PIOMMU_DEVICE_FAULT_HANDLER","features":[5]},{"name":"PIOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[5]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE","features":[5,3]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[5,3]},{"name":"PIOMMU_DOMAIN_CONFIGURE","features":[5,3]},{"name":"PIOMMU_DOMAIN_CREATE","features":[5,3]},{"name":"PIOMMU_DOMAIN_CREATE_EX","features":[5,3]},{"name":"PIOMMU_DOMAIN_DELETE","features":[5,3]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE","features":[5,3]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE_EX","features":[5,3]},{"name":"PIOMMU_FLUSH_DOMAIN","features":[5,3]},{"name":"PIOMMU_FLUSH_DOMAIN_VA_LIST","features":[5,3]},{"name":"PIOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[5,3]},{"name":"PIOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[5]},{"name":"PIOMMU_MAP_IDENTITY_RANGE","features":[5,3]},{"name":"PIOMMU_MAP_IDENTITY_RANGE_EX","features":[5,3]},{"name":"PIOMMU_MAP_LOGICAL_RANGE","features":[5,3]},{"name":"PIOMMU_MAP_LOGICAL_RANGE_EX","features":[5,3]},{"name":"PIOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[5,3]},{"name":"PIOMMU_QUERY_INPUT_MAPPINGS","features":[5,3]},{"name":"PIOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[5,3]},{"name":"PIOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[5,3]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING","features":[5,3]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[5,3]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE","features":[5,3]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE_EX","features":[5,3]},{"name":"PIOMMU_UNMAP_LOGICAL_RANGE","features":[5,3]},{"name":"PIOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[5,3]},{"name":"PIOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[5,3]},{"name":"PIO_CONTAINER_NOTIFICATION_FUNCTION","features":[5,3]},{"name":"PIO_CSQ_ACQUIRE_LOCK","features":[5]},{"name":"PIO_CSQ_COMPLETE_CANCELED_IRP","features":[5]},{"name":"PIO_CSQ_INSERT_IRP","features":[5]},{"name":"PIO_CSQ_INSERT_IRP_EX","features":[5,3]},{"name":"PIO_CSQ_PEEK_NEXT_IRP","features":[4,7,5,3,6,8,9,10]},{"name":"PIO_CSQ_RELEASE_LOCK","features":[5]},{"name":"PIO_CSQ_REMOVE_IRP","features":[5]},{"name":"PIO_DEVICE_EJECT_CALLBACK","features":[5,3]},{"name":"PIO_DPC_ROUTINE","features":[5]},{"name":"PIO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[5,3]},{"name":"PIO_QUERY_DEVICE_ROUTINE","features":[5,3]},{"name":"PIO_SESSION_NOTIFICATION_FUNCTION","features":[5,3]},{"name":"PIO_TIMER_ROUTINE","features":[5]},{"name":"PIO_WORKITEM_ROUTINE","features":[5]},{"name":"PIO_WORKITEM_ROUTINE_EX","features":[5]},{"name":"PJOIN_DMA_DOMAIN","features":[4,7,5,3,6,8,9,10]},{"name":"PKBUGCHECK_CALLBACK_ROUTINE","features":[5]},{"name":"PKBUGCHECK_REASON_CALLBACK_ROUTINE","features":[5]},{"name":"PKIPI_BROADCAST_WORKER","features":[5]},{"name":"PKMESSAGE_SERVICE_ROUTINE","features":[5,3]},{"name":"PKSERVICE_ROUTINE","features":[5,3]},{"name":"PKSTART_ROUTINE","features":[5]},{"name":"PKSYNCHRONIZE_ROUTINE","features":[5,3]},{"name":"PLEAVE_DMA_DOMAIN","features":[4,7,5,3,6,8,9,10]},{"name":"PLOAD_IMAGE_NOTIFY_ROUTINE","features":[5,3]},{"name":"PLUGPLAY_NOTIFICATION_HEADER","features":[5]},{"name":"PLUGPLAY_PROPERTY_PERSISTENT","features":[5]},{"name":"PLUGPLAY_REGKEY_CURRENT_HWPROFILE","features":[5]},{"name":"PLUGPLAY_REGKEY_DEVICE","features":[5]},{"name":"PLUGPLAY_REGKEY_DRIVER","features":[5]},{"name":"PMAP_TRANSFER","features":[4,7,5,3,6,8,9,10]},{"name":"PMAP_TRANSFER_EX","features":[4,7,5,3,6,8,9,10]},{"name":"PMCCounter","features":[5]},{"name":"PMEM_ERROR_SECTION_GUID","features":[5]},{"name":"PMM_DLL_INITIALIZE","features":[5,3]},{"name":"PMM_DLL_UNLOAD","features":[5,3]},{"name":"PMM_GET_SYSTEM_ROUTINE_ADDRESS_EX","features":[5,3]},{"name":"PMM_MDL_ROUTINE","features":[5]},{"name":"PMM_ROTATE_COPY_CALLBACK_FUNCTION","features":[4,5,3]},{"name":"PM_DISPATCH_TABLE","features":[5]},{"name":"PNMI_CALLBACK","features":[5,3]},{"name":"PNPBus","features":[5]},{"name":"PNPEM_CONTROL_ENABLE_DISABLE","features":[5,3]},{"name":"PNPEM_CONTROL_QUERY_CONTROL","features":[5]},{"name":"PNPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[5,3]},{"name":"PNPEM_CONTROL_SET_STANDARD_CONTROL","features":[5,3]},{"name":"PNPISABus","features":[5]},{"name":"PNPISAConfiguration","features":[5]},{"name":"PNPNOTIFY_DEVICE_INTERFACE_INCLUDE_EXISTING_INTERFACES","features":[5]},{"name":"PNP_BUS_INFORMATION","features":[5]},{"name":"PNP_DEVICE_ASSIGNED_TO_GUEST","features":[5]},{"name":"PNP_DEVICE_DISABLED","features":[5]},{"name":"PNP_DEVICE_DISCONNECTED","features":[5]},{"name":"PNP_DEVICE_DONT_DISPLAY_IN_UI","features":[5]},{"name":"PNP_DEVICE_FAILED","features":[5]},{"name":"PNP_DEVICE_NOT_DISABLEABLE","features":[5]},{"name":"PNP_DEVICE_REMOVED","features":[5]},{"name":"PNP_DEVICE_RESOURCE_REQUIREMENTS_CHANGED","features":[5]},{"name":"PNP_DEVICE_RESOURCE_UPDATED","features":[5]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE","features":[5]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE_VERSION","features":[5]},{"name":"PNP_LOCATION_INTERFACE","features":[5,3]},{"name":"PNP_REPLACE_DRIVER_INTERFACE","features":[5,3]},{"name":"PNP_REPLACE_DRIVER_INTERFACE_VERSION","features":[5]},{"name":"PNP_REPLACE_HARDWARE_MEMORY_MIRRORING","features":[5]},{"name":"PNP_REPLACE_HARDWARE_PAGE_COPY","features":[5]},{"name":"PNP_REPLACE_HARDWARE_QUIESCE","features":[5]},{"name":"PNP_REPLACE_MEMORY_LIST","features":[5]},{"name":"PNP_REPLACE_MEMORY_SUPPORTED","features":[5]},{"name":"PNP_REPLACE_PARAMETERS","features":[5,3]},{"name":"PNP_REPLACE_PARAMETERS_VERSION","features":[5]},{"name":"PNP_REPLACE_PROCESSOR_LIST","features":[5]},{"name":"PNP_REPLACE_PROCESSOR_LIST_V1","features":[5]},{"name":"PNP_REPLACE_PROCESSOR_SUPPORTED","features":[5]},{"name":"PNTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[5]},{"name":"POB_POST_OPERATION_CALLBACK","features":[4,5,3]},{"name":"POB_PRE_OPERATION_CALLBACK","features":[4,5]},{"name":"POOLED_USAGE_AND_LIMITS","features":[5]},{"name":"POOL_COLD_ALLOCATION","features":[5]},{"name":"POOL_CREATE_EXTENDED_PARAMS","features":[5]},{"name":"POOL_CREATE_FLG_SECURE_POOL","features":[5]},{"name":"POOL_CREATE_FLG_USE_GLOBAL_POOL","features":[5]},{"name":"POOL_CREATE_PARAMS_VERSION","features":[5]},{"name":"POOL_EXTENDED_PARAMETER","features":[5,3]},{"name":"POOL_EXTENDED_PARAMETER_REQUIRED_FIELD_BITS","features":[5]},{"name":"POOL_EXTENDED_PARAMETER_TYPE","features":[5]},{"name":"POOL_EXTENDED_PARAMETER_TYPE_BITS","features":[5]},{"name":"POOL_EXTENDED_PARAMS_SECURE_POOL","features":[5,3]},{"name":"POOL_NX_ALLOCATION","features":[5]},{"name":"POOL_NX_OPTIN_AUTO","features":[5]},{"name":"POOL_QUOTA_FAIL_INSTEAD_OF_RAISE","features":[5]},{"name":"POOL_RAISE_IF_ALLOCATION_FAILURE","features":[5]},{"name":"POOL_TAGGING","features":[5]},{"name":"POOL_ZEROING_INFORMATION","features":[5]},{"name":"POOL_ZERO_ALLOCATION","features":[5]},{"name":"PORT_MAXIMUM_MESSAGE_LENGTH","features":[5]},{"name":"POWER_LEVEL","features":[5]},{"name":"POWER_MONITOR_INVOCATION","features":[5,3]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[5]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[5]},{"name":"POWER_PLATFORM_INFORMATION","features":[5,3]},{"name":"POWER_PLATFORM_ROLE","features":[5]},{"name":"POWER_PLATFORM_ROLE_V1","features":[5]},{"name":"POWER_PLATFORM_ROLE_V2","features":[5]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[5]},{"name":"POWER_SEQUENCE","features":[5]},{"name":"POWER_SESSION_CONNECT","features":[5,3]},{"name":"POWER_SESSION_RIT_STATE","features":[5,3]},{"name":"POWER_SESSION_TIMEOUTS","features":[5]},{"name":"POWER_SESSION_WINLOGON","features":[5,3]},{"name":"POWER_SETTING_CALLBACK","features":[5,3]},{"name":"POWER_SETTING_VALUE_VERSION","features":[5]},{"name":"POWER_STATE","features":[5,10]},{"name":"POWER_STATE_TYPE","features":[5]},{"name":"POWER_THROTTLING_PROCESS_CURRENT_VERSION","features":[5]},{"name":"POWER_THROTTLING_PROCESS_DELAYTIMERS","features":[5]},{"name":"POWER_THROTTLING_PROCESS_EXECUTION_SPEED","features":[5]},{"name":"POWER_THROTTLING_PROCESS_IGNORE_TIMER_RESOLUTION","features":[5]},{"name":"POWER_THROTTLING_PROCESS_STATE","features":[5]},{"name":"POWER_THROTTLING_THREAD_CURRENT_VERSION","features":[5]},{"name":"POWER_THROTTLING_THREAD_EXECUTION_SPEED","features":[5]},{"name":"POWER_THROTTLING_THREAD_STATE","features":[5]},{"name":"POWER_THROTTLING_THREAD_VALID_FLAGS","features":[5]},{"name":"POWER_USER_PRESENCE_TYPE","features":[5]},{"name":"PO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[5]},{"name":"PO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[5,3]},{"name":"PO_FX_COMPONENT_FLAG_F0_ON_DX","features":[5]},{"name":"PO_FX_COMPONENT_FLAG_NO_DEBOUNCE","features":[5]},{"name":"PO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[5]},{"name":"PO_FX_COMPONENT_IDLE_STATE","features":[5]},{"name":"PO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[5]},{"name":"PO_FX_COMPONENT_PERF_INFO","features":[5,3]},{"name":"PO_FX_COMPONENT_PERF_SET","features":[5,3]},{"name":"PO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[5,3]},{"name":"PO_FX_COMPONENT_V1","features":[5]},{"name":"PO_FX_COMPONENT_V2","features":[5]},{"name":"PO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[5]},{"name":"PO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[5]},{"name":"PO_FX_DEVICE_V1","features":[5,3]},{"name":"PO_FX_DEVICE_V2","features":[5,3]},{"name":"PO_FX_DEVICE_V3","features":[5,3]},{"name":"PO_FX_DIRECTED_FX_DEFAULT_IDLE_TIMEOUT","features":[5]},{"name":"PO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[5]},{"name":"PO_FX_DIRECTED_POWER_UP_CALLBACK","features":[5]},{"name":"PO_FX_DRIPS_WATCHDOG_CALLBACK","features":[4,7,5,3,6,8,9,10]},{"name":"PO_FX_FLAG_ASYNC_ONLY","features":[5]},{"name":"PO_FX_FLAG_BLOCKING","features":[5]},{"name":"PO_FX_FLAG_PERF_PEP_OPTIONAL","features":[5]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_ALL_IDLE_STATES","features":[5]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_F0","features":[5]},{"name":"PO_FX_PERF_STATE","features":[5]},{"name":"PO_FX_PERF_STATE_CHANGE","features":[5]},{"name":"PO_FX_PERF_STATE_TYPE","features":[5]},{"name":"PO_FX_PERF_STATE_UNIT","features":[5]},{"name":"PO_FX_POWER_CONTROL_CALLBACK","features":[5,3]},{"name":"PO_FX_UNKNOWN_POWER","features":[5]},{"name":"PO_FX_UNKNOWN_TIME","features":[5]},{"name":"PO_FX_VERSION","features":[5]},{"name":"PO_FX_VERSION_V1","features":[5]},{"name":"PO_FX_VERSION_V2","features":[5]},{"name":"PO_FX_VERSION_V3","features":[5]},{"name":"PO_MEM_BOOT_PHASE","features":[5]},{"name":"PO_MEM_CLONE","features":[5]},{"name":"PO_MEM_CL_OR_NCHK","features":[5]},{"name":"PO_MEM_DISCARD","features":[5]},{"name":"PO_MEM_PAGE_ADDRESS","features":[5]},{"name":"PO_MEM_PRESERVE","features":[5]},{"name":"PO_THERMAL_REQUEST_TYPE","features":[5]},{"name":"PPCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[5,3]},{"name":"PPCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[5,3]},{"name":"PPCI_EXPRESS_ROOT_PORT_READ_CONFIG_SPACE","features":[5]},{"name":"PPCI_EXPRESS_ROOT_PORT_WRITE_CONFIG_SPACE","features":[5]},{"name":"PPCI_EXPRESS_WAKE_CONTROL","features":[5]},{"name":"PPCI_IS_DEVICE_PRESENT","features":[5,3]},{"name":"PPCI_IS_DEVICE_PRESENT_EX","features":[5,3]},{"name":"PPCI_LINE_TO_PIN","features":[5]},{"name":"PPCI_MSIX_GET_ENTRY","features":[5,3]},{"name":"PPCI_MSIX_GET_TABLE_SIZE","features":[5,3]},{"name":"PPCI_MSIX_MASKUNMASK_ENTRY","features":[5,3]},{"name":"PPCI_MSIX_SET_ENTRY","features":[5,3]},{"name":"PPCI_PIN_TO_LINE","features":[5]},{"name":"PPCI_PREPARE_MULTISTAGE_RESUME","features":[5]},{"name":"PPCI_READ_WRITE_CONFIG","features":[5]},{"name":"PPCI_ROOT_BUS_CAPABILITY","features":[5]},{"name":"PPCI_SET_ACS","features":[5,3]},{"name":"PPCI_SET_ACS2","features":[5,3]},{"name":"PPCI_SET_ATS","features":[5,3]},{"name":"PPCW_CALLBACK","features":[5,3]},{"name":"PPHYSICAL_COUNTER_EVENT_BUFFER_OVERFLOW_HANDLER","features":[5,3]},{"name":"PPHYSICAL_COUNTER_OVERFLOW_HANDLER","features":[5,3]},{"name":"PPI_SHIFT","features":[5]},{"name":"PPOWER_SETTING_CALLBACK","features":[5,3]},{"name":"PPO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[5]},{"name":"PPO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[5]},{"name":"PPO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[5]},{"name":"PPO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[5]},{"name":"PPO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[5]},{"name":"PPO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[5]},{"name":"PPO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[5]},{"name":"PPO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[5]},{"name":"PPO_FX_DIRECTED_POWER_UP_CALLBACK","features":[5]},{"name":"PPO_FX_DRIPS_WATCHDOG_CALLBACK","features":[5]},{"name":"PPO_FX_POWER_CONTROL_CALLBACK","features":[5,3]},{"name":"PPROCESSOR_CALLBACK_FUNCTION","features":[5]},{"name":"PPROCESSOR_HALT_ROUTINE","features":[5,3]},{"name":"PPTM_DEVICE_DISABLE","features":[5,3]},{"name":"PPTM_DEVICE_ENABLE","features":[5,3]},{"name":"PPTM_DEVICE_QUERY_GRANULARITY","features":[5,3]},{"name":"PPTM_DEVICE_QUERY_TIME_SOURCE","features":[5,3]},{"name":"PPUT_DMA_ADAPTER","features":[4,7,5,3,6,8,9,10]},{"name":"PPUT_SCATTER_GATHER_LIST","features":[4,7,5,3,6,8,9,10]},{"name":"PQUERYEXTENDEDADDRESS","features":[5]},{"name":"PREAD_DMA_COUNTER","features":[4,7,5,3,6,8,9,10]},{"name":"PREENUMERATE_SELF","features":[5]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[4,7,5,3,6,8,9,10]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[5,3]},{"name":"PREPLACE_BEGIN","features":[5,3]},{"name":"PREPLACE_DRIVER_INIT","features":[5,3]},{"name":"PREPLACE_ENABLE_DISABLE_HARDWARE_QUIESCE","features":[5,3]},{"name":"PREPLACE_END","features":[5,3]},{"name":"PREPLACE_GET_MEMORY_DESTINATION","features":[5,3]},{"name":"PREPLACE_INITIATE_HARDWARE_MIRROR","features":[5,3]},{"name":"PREPLACE_MAP_MEMORY","features":[5,3]},{"name":"PREPLACE_MIRROR_PHYSICAL_MEMORY","features":[5,3]},{"name":"PREPLACE_MIRROR_PLATFORM_MEMORY","features":[5,3]},{"name":"PREPLACE_SET_PROCESSOR_ID","features":[5,3]},{"name":"PREPLACE_SWAP","features":[5,3]},{"name":"PREPLACE_UNLOAD","features":[5]},{"name":"PREQUEST_POWER_COMPLETE","features":[5]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[5]},{"name":"PROCESSOR_CALLBACK_FUNCTION","features":[5,3,9]},{"name":"PROCESSOR_FEATURE_MAX","features":[5]},{"name":"PROCESSOR_GENERIC_ERROR_SECTION_GUID","features":[5]},{"name":"PROCESSOR_HALT_ROUTINE","features":[5,3]},{"name":"PROCESS_ACCESS_TOKEN","features":[5,3]},{"name":"PROCESS_DEVICEMAP_INFORMATION","features":[5,3]},{"name":"PROCESS_DEVICEMAP_INFORMATION_EX","features":[5,3]},{"name":"PROCESS_EXCEPTION_PORT","features":[5,3]},{"name":"PROCESS_EXCEPTION_PORT_ALL_STATE_BITS","features":[5]},{"name":"PROCESS_EXTENDED_BASIC_INFORMATION","features":[5,3,9,39]},{"name":"PROCESS_HANDLE_EXCEPTIONS_ENABLED","features":[5]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_DISABLED","features":[5]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_ENABLED","features":[5]},{"name":"PROCESS_HANDLE_TRACING_ENABLE","features":[5]},{"name":"PROCESS_HANDLE_TRACING_ENABLE_EX","features":[5]},{"name":"PROCESS_HANDLE_TRACING_ENTRY","features":[5,3,37]},{"name":"PROCESS_HANDLE_TRACING_MAX_STACKS","features":[5]},{"name":"PROCESS_HANDLE_TRACING_QUERY","features":[5,3,37]},{"name":"PROCESS_KEEPALIVE_COUNT_INFORMATION","features":[5]},{"name":"PROCESS_LUID_DOSDEVICES_ONLY","features":[5]},{"name":"PROCESS_MEMBERSHIP_INFORMATION","features":[5]},{"name":"PROCESS_REVOKE_FILE_HANDLES_INFORMATION","features":[5,3]},{"name":"PROCESS_SESSION_INFORMATION","features":[5]},{"name":"PROCESS_SYSCALL_PROVIDER_INFORMATION","features":[5]},{"name":"PROCESS_WS_WATCH_INFORMATION","features":[5]},{"name":"PROFILE_LEVEL","features":[5]},{"name":"PROTECTED_POOL","features":[5]},{"name":"PRTL_AVL_ALLOCATE_ROUTINE","features":[5]},{"name":"PRTL_AVL_COMPARE_ROUTINE","features":[5]},{"name":"PRTL_AVL_FREE_ROUTINE","features":[5]},{"name":"PRTL_AVL_MATCH_FUNCTION","features":[5,3]},{"name":"PRTL_GENERIC_ALLOCATE_ROUTINE","features":[5]},{"name":"PRTL_GENERIC_COMPARE_ROUTINE","features":[5]},{"name":"PRTL_GENERIC_FREE_ROUTINE","features":[5]},{"name":"PRTL_QUERY_REGISTRY_ROUTINE","features":[5,3]},{"name":"PRTL_RUN_ONCE_INIT_FN","features":[5]},{"name":"PSCREATEPROCESSNOTIFYTYPE","features":[5]},{"name":"PSCREATETHREADNOTIFYTYPE","features":[5]},{"name":"PSECURE_DRIVER_PROCESS_DEREFERENCE","features":[5]},{"name":"PSECURE_DRIVER_PROCESS_REFERENCE","features":[4,5]},{"name":"PSET_D3COLD_SUPPORT","features":[5]},{"name":"PSET_VIRTUAL_DEVICE_DATA","features":[5]},{"name":"PSE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[5]},{"name":"PSHED_PI_ATTEMPT_ERROR_RECOVERY","features":[5,3]},{"name":"PSHED_PI_CLEAR_ERROR_RECORD","features":[5,3]},{"name":"PSHED_PI_CLEAR_ERROR_STATUS","features":[5,3,33]},{"name":"PSHED_PI_DISABLE_ERROR_SOURCE","features":[5,3,33]},{"name":"PSHED_PI_ENABLE_ERROR_SOURCE","features":[5,3,33]},{"name":"PSHED_PI_ERR_READING_PCIE_OVERRIDES","features":[5]},{"name":"PSHED_PI_FINALIZE_ERROR_RECORD","features":[5,3,33]},{"name":"PSHED_PI_GET_ALL_ERROR_SOURCES","features":[5,3,33]},{"name":"PSHED_PI_GET_ERROR_SOURCE_INFO","features":[5,3,33]},{"name":"PSHED_PI_GET_INJECTION_CAPABILITIES","features":[5,3]},{"name":"PSHED_PI_INJECT_ERROR","features":[5,3]},{"name":"PSHED_PI_READ_ERROR_RECORD","features":[5,3]},{"name":"PSHED_PI_RETRIEVE_ERROR_INFO","features":[5,3,33]},{"name":"PSHED_PI_SET_ERROR_SOURCE_INFO","features":[5,3,33]},{"name":"PSHED_PI_WRITE_ERROR_RECORD","features":[5,3]},{"name":"PS_CREATE_NOTIFY_INFO","features":[4,7,5,3,6,8,9,10,37]},{"name":"PS_IMAGE_NOTIFY_CONFLICTING_ARCHITECTURE","features":[5]},{"name":"PS_INVALID_SILO_CONTEXT_SLOT","features":[5]},{"name":"PTE_BASE","features":[5]},{"name":"PTE_PER_PAGE","features":[5]},{"name":"PTE_TOP","features":[5]},{"name":"PTIMER_APC_ROUTINE","features":[5]},{"name":"PTI_SHIFT","features":[5]},{"name":"PTM_CONTROL_INTERFACE","features":[5,3]},{"name":"PTM_DEVICE_DISABLE","features":[5,3]},{"name":"PTM_DEVICE_ENABLE","features":[5,3]},{"name":"PTM_DEVICE_QUERY_GRANULARITY","features":[5,3]},{"name":"PTM_DEVICE_QUERY_TIME_SOURCE","features":[5,3]},{"name":"PTM_PROPAGATE_ROUTINE","features":[5,3]},{"name":"PTM_RM_NOTIFICATION","features":[4,5,3]},{"name":"PTRANSLATE_BUS_ADDRESS","features":[5,3]},{"name":"PTRANSLATE_RESOURCE_HANDLER","features":[4,7,5,3,6,8,9,10]},{"name":"PTRANSLATE_RESOURCE_REQUIREMENTS_HANDLER","features":[4,7,5,3,6,8,9,10]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[4,7,5,3,6,8,9,10]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[5]},{"name":"PageIn","features":[5]},{"name":"ParallelController","features":[5]},{"name":"PciAcsBitDisable","features":[5]},{"name":"PciAcsBitDontCare","features":[5]},{"name":"PciAcsBitEnable","features":[5]},{"name":"PciAcsReserved","features":[5]},{"name":"PciAddressParityError","features":[5]},{"name":"PciBusDataParityError","features":[5]},{"name":"PciBusMasterAbort","features":[5]},{"name":"PciBusSystemError","features":[5]},{"name":"PciBusTimeOut","features":[5]},{"name":"PciBusUnknownError","features":[5]},{"name":"PciCommandParityError","features":[5]},{"name":"PciConventional","features":[5]},{"name":"PciDeviceD3Cold_Reason_Default_State_BitIndex","features":[5]},{"name":"PciDeviceD3Cold_Reason_INF_BitIndex","features":[5]},{"name":"PciDeviceD3Cold_Reason_Interface_Api_BitIndex","features":[5]},{"name":"PciDeviceD3Cold_State_Disabled_BitIndex","features":[5]},{"name":"PciDeviceD3Cold_State_Disabled_Bridge_HackFlags_BitIndex","features":[5]},{"name":"PciDeviceD3Cold_State_Enabled_BitIndex","features":[5]},{"name":"PciDeviceD3Cold_State_ParentRootPortS0WakeSupported_BitIndex","features":[5]},{"name":"PciExpress","features":[5]},{"name":"PciExpressASPMLinkSubState_L11_BitIndex","features":[5]},{"name":"PciExpressASPMLinkSubState_L12_BitIndex","features":[5]},{"name":"PciExpressDownstreamSwitchPort","features":[5]},{"name":"PciExpressEndpoint","features":[5]},{"name":"PciExpressLegacyEndpoint","features":[5]},{"name":"PciExpressPciPmLinkSubState_L11_BitIndex","features":[5]},{"name":"PciExpressPciPmLinkSubState_L12_BitIndex","features":[5]},{"name":"PciExpressRootComplexEventCollector","features":[5]},{"name":"PciExpressRootComplexIntegratedEndpoint","features":[5]},{"name":"PciExpressRootPort","features":[5]},{"name":"PciExpressToPciXBridge","features":[5]},{"name":"PciExpressUpstreamSwitchPort","features":[5]},{"name":"PciLine2Pin","features":[5]},{"name":"PciMasterDataParityError","features":[5]},{"name":"PciPin2Line","features":[5]},{"name":"PciReadWriteConfig","features":[5]},{"name":"PciXMode1","features":[5]},{"name":"PciXMode2","features":[5]},{"name":"PciXToExpressBridge","features":[5]},{"name":"PcwAddInstance","features":[4,5,3]},{"name":"PcwCallbackAddCounter","features":[5]},{"name":"PcwCallbackCollectData","features":[5]},{"name":"PcwCallbackEnumerateInstances","features":[5]},{"name":"PcwCallbackRemoveCounter","features":[5]},{"name":"PcwCloseInstance","features":[4,5]},{"name":"PcwCreateInstance","features":[4,5,3]},{"name":"PcwRegister","features":[4,5,3]},{"name":"PcwRegistrationNone","features":[5]},{"name":"PcwRegistrationSiloNeutral","features":[5]},{"name":"PcwUnregister","features":[4,5]},{"name":"PermissionFault","features":[5]},{"name":"PlatformLevelDeviceReset","features":[5]},{"name":"PlatformRoleAppliancePC","features":[5]},{"name":"PlatformRoleDesktop","features":[5]},{"name":"PlatformRoleEnterpriseServer","features":[5]},{"name":"PlatformRoleMaximum","features":[5]},{"name":"PlatformRoleMobile","features":[5]},{"name":"PlatformRolePerformanceServer","features":[5]},{"name":"PlatformRoleSOHOServer","features":[5]},{"name":"PlatformRoleSlate","features":[5]},{"name":"PlatformRoleUnspecified","features":[5]},{"name":"PlatformRoleWorkstation","features":[5]},{"name":"PoAc","features":[5]},{"name":"PoCallDriver","features":[4,7,5,3,6,8,9,10]},{"name":"PoClearPowerRequest","features":[5,3,10]},{"name":"PoConditionMaximum","features":[5]},{"name":"PoCreatePowerRequest","features":[4,7,5,3,6,8,9,10]},{"name":"PoCreateThermalRequest","features":[4,7,5,3,6,8,9,10]},{"name":"PoDc","features":[5]},{"name":"PoDeletePowerRequest","features":[5]},{"name":"PoDeleteThermalRequest","features":[5]},{"name":"PoEndDeviceBusy","features":[5]},{"name":"PoFxActivateComponent","features":[4,5]},{"name":"PoFxCompleteDevicePowerNotRequired","features":[4,5]},{"name":"PoFxCompleteDirectedPowerDown","features":[4,5]},{"name":"PoFxCompleteIdleCondition","features":[4,5]},{"name":"PoFxCompleteIdleState","features":[4,5]},{"name":"PoFxIdleComponent","features":[4,5]},{"name":"PoFxIssueComponentPerfStateChange","features":[4,5]},{"name":"PoFxIssueComponentPerfStateChangeMultiple","features":[4,5]},{"name":"PoFxNotifySurprisePowerOn","features":[4,7,5,3,6,8,9,10]},{"name":"PoFxPerfStateTypeDiscrete","features":[5]},{"name":"PoFxPerfStateTypeMaximum","features":[5]},{"name":"PoFxPerfStateTypeRange","features":[5]},{"name":"PoFxPerfStateUnitBandwidth","features":[5]},{"name":"PoFxPerfStateUnitFrequency","features":[5]},{"name":"PoFxPerfStateUnitMaximum","features":[5]},{"name":"PoFxPerfStateUnitOther","features":[5]},{"name":"PoFxPowerControl","features":[4,5,3]},{"name":"PoFxPowerOnCrashdumpDevice","features":[4,5,3]},{"name":"PoFxQueryCurrentComponentPerfState","features":[4,5,3]},{"name":"PoFxRegisterComponentPerfStates","features":[4,5,3]},{"name":"PoFxRegisterCrashdumpDevice","features":[4,5,3]},{"name":"PoFxRegisterDevice","features":[4,7,5,3,6,8,9,10]},{"name":"PoFxRegisterDripsWatchdogCallback","features":[4,7,5,3,6,8,9,10]},{"name":"PoFxReportDevicePoweredOn","features":[4,5]},{"name":"PoFxSetComponentLatency","features":[4,5]},{"name":"PoFxSetComponentResidency","features":[4,5]},{"name":"PoFxSetComponentWake","features":[4,5,3]},{"name":"PoFxSetDeviceIdleTimeout","features":[4,5]},{"name":"PoFxSetTargetDripsDevicePowerState","features":[4,5,3,10]},{"name":"PoFxStartDevicePowerManagement","features":[4,5]},{"name":"PoFxUnregisterDevice","features":[4,5]},{"name":"PoGetSystemWake","features":[4,7,5,3,6,8,9,10]},{"name":"PoGetThermalRequestSupport","features":[5,3]},{"name":"PoHot","features":[5]},{"name":"PoQueryWatchdogTime","features":[4,7,5,3,6,8,9,10]},{"name":"PoRegisterDeviceForIdleDetection","features":[4,7,5,3,6,8,9,10]},{"name":"PoRegisterPowerSettingCallback","features":[4,7,5,3,6,8,9,10]},{"name":"PoRegisterSystemState","features":[5]},{"name":"PoRequestPowerIrp","features":[4,7,5,3,6,8,9,10]},{"name":"PoSetDeviceBusyEx","features":[5]},{"name":"PoSetHiberRange","features":[5]},{"name":"PoSetPowerRequest","features":[5,3,10]},{"name":"PoSetPowerState","features":[4,7,5,3,6,8,9,10]},{"name":"PoSetSystemState","features":[5]},{"name":"PoSetSystemWake","features":[4,7,5,3,6,8,9,10]},{"name":"PoSetSystemWakeDevice","features":[4,7,5,3,6,8,9,10]},{"name":"PoSetThermalActiveCooling","features":[5,3]},{"name":"PoSetThermalPassiveCooling","features":[5,3]},{"name":"PoStartDeviceBusy","features":[5]},{"name":"PoStartNextPowerIrp","features":[4,7,5,3,6,8,9,10]},{"name":"PoThermalRequestActive","features":[5]},{"name":"PoThermalRequestPassive","features":[5]},{"name":"PoUnregisterPowerSettingCallback","features":[5,3]},{"name":"PoUnregisterSystemState","features":[5]},{"name":"PointerController","features":[5]},{"name":"PointerPeripheral","features":[5]},{"name":"PoolAllocation","features":[5]},{"name":"PoolExtendedParameterInvalidType","features":[5]},{"name":"PoolExtendedParameterMax","features":[5]},{"name":"PoolExtendedParameterNumaNode","features":[5]},{"name":"PoolExtendedParameterPriority","features":[5]},{"name":"PoolExtendedParameterSecurePool","features":[5]},{"name":"Pos","features":[5]},{"name":"PowerOff","features":[5]},{"name":"PowerOn","features":[5]},{"name":"PowerRelations","features":[5]},{"name":"PrimaryDcache","features":[5]},{"name":"PrimaryIcache","features":[5]},{"name":"PrinterPeripheral","features":[5]},{"name":"ProbeForRead","features":[5]},{"name":"ProbeForWrite","features":[5]},{"name":"ProcessorInternal","features":[5]},{"name":"Profile2Issue","features":[5]},{"name":"Profile3Issue","features":[5]},{"name":"Profile4Issue","features":[5]},{"name":"ProfileAlignmentFixup","features":[5]},{"name":"ProfileBranchInstructions","features":[5]},{"name":"ProfileBranchMispredictions","features":[5]},{"name":"ProfileCacheMisses","features":[5]},{"name":"ProfileDcacheAccesses","features":[5]},{"name":"ProfileDcacheMisses","features":[5]},{"name":"ProfileFpInstructions","features":[5]},{"name":"ProfileIcacheIssues","features":[5]},{"name":"ProfileIcacheMisses","features":[5]},{"name":"ProfileIntegerInstructions","features":[5]},{"name":"ProfileLoadInstructions","features":[5]},{"name":"ProfileLoadLinkedIssues","features":[5]},{"name":"ProfileMaximum","features":[5]},{"name":"ProfileMemoryBarrierCycles","features":[5]},{"name":"ProfilePipelineDry","features":[5]},{"name":"ProfilePipelineFrozen","features":[5]},{"name":"ProfileSpecialInstructions","features":[5]},{"name":"ProfileStoreInstructions","features":[5]},{"name":"ProfileTime","features":[5]},{"name":"ProfileTotalCycles","features":[5]},{"name":"ProfileTotalIssues","features":[5]},{"name":"ProfileTotalNonissues","features":[5]},{"name":"PsAcquireSiloHardReference","features":[4,5,3]},{"name":"PsAllocSiloContextSlot","features":[5,3]},{"name":"PsAllocateAffinityToken","features":[4,5,3]},{"name":"PsAttachSiloToCurrentThread","features":[4,5]},{"name":"PsCreateProcessNotifySubsystems","features":[5]},{"name":"PsCreateSiloContext","features":[4,5,3]},{"name":"PsCreateSystemThread","features":[4,5,3,37]},{"name":"PsCreateThreadNotifyNonSystem","features":[5]},{"name":"PsCreateThreadNotifySubsystems","features":[5]},{"name":"PsDereferenceSiloContext","features":[5]},{"name":"PsDetachSiloFromCurrentThread","features":[4,5]},{"name":"PsFreeAffinityToken","features":[4,5]},{"name":"PsFreeSiloContextSlot","features":[5,3]},{"name":"PsGetCurrentProcessId","features":[5,3]},{"name":"PsGetCurrentServerSilo","features":[4,5]},{"name":"PsGetCurrentServerSiloName","features":[5,3]},{"name":"PsGetCurrentSilo","features":[4,5]},{"name":"PsGetCurrentThreadId","features":[5,3]},{"name":"PsGetCurrentThreadTeb","features":[5]},{"name":"PsGetEffectiveServerSilo","features":[4,5]},{"name":"PsGetHostSilo","features":[4,5]},{"name":"PsGetJobServerSilo","features":[4,5,3]},{"name":"PsGetJobSilo","features":[4,5,3]},{"name":"PsGetParentSilo","features":[4,5]},{"name":"PsGetPermanentSiloContext","features":[4,5,3]},{"name":"PsGetProcessCreateTimeQuadPart","features":[4,5]},{"name":"PsGetProcessExitStatus","features":[4,5,3]},{"name":"PsGetProcessId","features":[4,5,3]},{"name":"PsGetProcessStartKey","features":[4,5]},{"name":"PsGetServerSiloServiceSessionId","features":[4,5]},{"name":"PsGetSiloContainerId","features":[4,5]},{"name":"PsGetSiloContext","features":[4,5,3]},{"name":"PsGetSiloMonitorContextSlot","features":[4,5]},{"name":"PsGetThreadCreateTime","features":[4,5]},{"name":"PsGetThreadExitStatus","features":[4,5,3]},{"name":"PsGetThreadId","features":[4,5,3]},{"name":"PsGetThreadProcessId","features":[4,5,3]},{"name":"PsGetThreadProperty","features":[4,5]},{"name":"PsGetThreadServerSilo","features":[4,5]},{"name":"PsGetVersion","features":[5,3]},{"name":"PsInsertPermanentSiloContext","features":[4,5,3]},{"name":"PsInsertSiloContext","features":[4,5,3]},{"name":"PsIsCurrentThreadInServerSilo","features":[5,3]},{"name":"PsIsCurrentThreadPrefetching","features":[5,3]},{"name":"PsIsHostSilo","features":[4,5,3]},{"name":"PsMakeSiloContextPermanent","features":[4,5,3]},{"name":"PsQueryTotalCycleTimeProcess","features":[4,5]},{"name":"PsReferenceSiloContext","features":[5]},{"name":"PsRegisterSiloMonitor","features":[4,5,3]},{"name":"PsReleaseSiloHardReference","features":[4,5]},{"name":"PsRemoveCreateThreadNotifyRoutine","features":[5,3]},{"name":"PsRemoveLoadImageNotifyRoutine","features":[5,3]},{"name":"PsRemoveSiloContext","features":[4,5,3]},{"name":"PsReplaceSiloContext","features":[4,5,3]},{"name":"PsRevertToUserMultipleGroupAffinityThread","features":[4,5]},{"name":"PsSetCreateProcessNotifyRoutine","features":[5,3]},{"name":"PsSetCreateProcessNotifyRoutineEx","features":[4,7,5,3,6,8,9,10,37]},{"name":"PsSetCreateProcessNotifyRoutineEx2","features":[5,3]},{"name":"PsSetCreateThreadNotifyRoutine","features":[5,3]},{"name":"PsSetCreateThreadNotifyRoutineEx","features":[5,3]},{"name":"PsSetCurrentThreadPrefetching","features":[5,3]},{"name":"PsSetLoadImageNotifyRoutine","features":[5,3]},{"name":"PsSetLoadImageNotifyRoutineEx","features":[5,3]},{"name":"PsSetSystemMultipleGroupAffinityThread","features":[4,5,3,35]},{"name":"PsStartSiloMonitor","features":[4,5,3]},{"name":"PsTerminateServerSilo","features":[4,5,3]},{"name":"PsTerminateSystemThread","features":[5,3]},{"name":"PsUnregisterSiloMonitor","features":[4,5]},{"name":"PsWrapApcWow64Thread","features":[5,3]},{"name":"PshedAllocateMemory","features":[5]},{"name":"PshedFADiscovery","features":[5]},{"name":"PshedFAErrorInfoRetrieval","features":[5]},{"name":"PshedFAErrorInjection","features":[5]},{"name":"PshedFAErrorRecordPersistence","features":[5]},{"name":"PshedFAErrorRecovery","features":[5]},{"name":"PshedFAErrorSourceControl","features":[5]},{"name":"PshedFreeMemory","features":[5]},{"name":"PshedIsSystemWheaEnabled","features":[5,3]},{"name":"PshedPiEnableNotifyErrorCreateNotifyEvent","features":[5]},{"name":"PshedPiEnableNotifyErrorCreateSystemThread","features":[5]},{"name":"PshedPiEnableNotifyErrorMax","features":[5]},{"name":"PshedPiErrReadingPcieOverridesBadSignature","features":[5]},{"name":"PshedPiErrReadingPcieOverridesBadSize","features":[5]},{"name":"PshedPiErrReadingPcieOverridesNoCapOffset","features":[5]},{"name":"PshedPiErrReadingPcieOverridesNoErr","features":[5]},{"name":"PshedPiErrReadingPcieOverridesNoMemory","features":[5]},{"name":"PshedPiErrReadingPcieOverridesNotBinary","features":[5]},{"name":"PshedPiErrReadingPcieOverridesQueryErr","features":[5]},{"name":"PshedRegisterPlugin","features":[5,3,33]},{"name":"PshedSynchronizeExecution","features":[5,3,33]},{"name":"PshedUnregisterPlugin","features":[5]},{"name":"QuerySecurityDescriptor","features":[5]},{"name":"RCB128Bytes","features":[5]},{"name":"RCB64Bytes","features":[5]},{"name":"RECOVERY_INFO_SECTION_GUID","features":[5]},{"name":"REENUMERATE_SELF_INTERFACE_STANDARD","features":[5]},{"name":"REG_CALLBACK_CONTEXT_CLEANUP_INFORMATION","features":[5]},{"name":"REG_CREATE_KEY_INFORMATION","features":[5,3]},{"name":"REG_CREATE_KEY_INFORMATION_V1","features":[5,3]},{"name":"REG_DELETE_KEY_INFORMATION","features":[5]},{"name":"REG_DELETE_VALUE_KEY_INFORMATION","features":[5,3]},{"name":"REG_KEY_HANDLE_CLOSE_INFORMATION","features":[5]},{"name":"REG_LOAD_KEY_INFORMATION","features":[5,3]},{"name":"REG_LOAD_KEY_INFORMATION_V2","features":[5,3]},{"name":"REG_NOTIFY_CLASS","features":[5]},{"name":"REG_POST_CREATE_KEY_INFORMATION","features":[5,3]},{"name":"REG_POST_OPERATION_INFORMATION","features":[5,3]},{"name":"REG_PRE_CREATE_KEY_INFORMATION","features":[5,3]},{"name":"REG_QUERY_KEY_NAME","features":[4,5,3]},{"name":"REG_QUERY_KEY_SECURITY_INFORMATION","features":[5,6]},{"name":"REG_RENAME_KEY_INFORMATION","features":[5,3]},{"name":"REG_REPLACE_KEY_INFORMATION","features":[5,3]},{"name":"REG_RESTORE_KEY_INFORMATION","features":[5,3]},{"name":"REG_SAVE_KEY_INFORMATION","features":[5,3]},{"name":"REG_SAVE_MERGED_KEY_INFORMATION","features":[5,3]},{"name":"REG_SET_KEY_SECURITY_INFORMATION","features":[5,6]},{"name":"REG_SET_VALUE_KEY_INFORMATION","features":[5,3]},{"name":"REG_UNLOAD_KEY_INFORMATION","features":[5]},{"name":"REQUEST_POWER_COMPLETE","features":[4,7,5,3,6,8,9,10]},{"name":"RESOURCE_HASH_ENTRY","features":[5,9]},{"name":"RESOURCE_HASH_TABLE_SIZE","features":[5]},{"name":"RESOURCE_PERFORMANCE_DATA","features":[5,9]},{"name":"RESOURCE_TRANSLATION_DIRECTION","features":[5]},{"name":"RESULT_NEGATIVE","features":[5]},{"name":"RESULT_POSITIVE","features":[5]},{"name":"RESULT_ZERO","features":[5]},{"name":"ROOT_CMD_ENABLE_CORRECTABLE_ERROR_REPORTING","features":[5]},{"name":"ROOT_CMD_ENABLE_FATAL_ERROR_REPORTING","features":[5]},{"name":"ROOT_CMD_ENABLE_NONFATAL_ERROR_REPORTING","features":[5]},{"name":"RTL_AVL_ALLOCATE_ROUTINE","features":[5]},{"name":"RTL_AVL_COMPARE_ROUTINE","features":[5]},{"name":"RTL_AVL_FREE_ROUTINE","features":[5]},{"name":"RTL_AVL_MATCH_FUNCTION","features":[5,3]},{"name":"RTL_AVL_TABLE","features":[5]},{"name":"RTL_BALANCED_LINKS","features":[5]},{"name":"RTL_BITMAP","features":[5]},{"name":"RTL_BITMAP_RUN","features":[5]},{"name":"RTL_DYNAMIC_HASH_TABLE","features":[5]},{"name":"RTL_DYNAMIC_HASH_TABLE_CONTEXT","features":[5,9]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENTRY","features":[5,9]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENUMERATOR","features":[5,9]},{"name":"RTL_GENERIC_ALLOCATE_ROUTINE","features":[4,5,9]},{"name":"RTL_GENERIC_COMPARE_RESULTS","features":[5]},{"name":"RTL_GENERIC_COMPARE_ROUTINE","features":[4,5,9]},{"name":"RTL_GENERIC_FREE_ROUTINE","features":[4,5,9]},{"name":"RTL_GENERIC_TABLE","features":[4,5,9]},{"name":"RTL_GUID_STRING_SIZE","features":[5]},{"name":"RTL_HASH_ALLOCATED_HEADER","features":[5]},{"name":"RTL_HASH_RESERVED_SIGNATURE","features":[5]},{"name":"RTL_QUERY_REGISTRY_DELETE","features":[5]},{"name":"RTL_QUERY_REGISTRY_DIRECT","features":[5]},{"name":"RTL_QUERY_REGISTRY_NOEXPAND","features":[5]},{"name":"RTL_QUERY_REGISTRY_NOSTRING","features":[5]},{"name":"RTL_QUERY_REGISTRY_NOVALUE","features":[5]},{"name":"RTL_QUERY_REGISTRY_REQUIRED","features":[5]},{"name":"RTL_QUERY_REGISTRY_ROUTINE","features":[5,3]},{"name":"RTL_QUERY_REGISTRY_SUBKEY","features":[5]},{"name":"RTL_QUERY_REGISTRY_TABLE","features":[5,3]},{"name":"RTL_QUERY_REGISTRY_TOPKEY","features":[5]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK","features":[5]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK_SHIFT","features":[5]},{"name":"RTL_REGISTRY_ABSOLUTE","features":[5]},{"name":"RTL_REGISTRY_CONTROL","features":[5]},{"name":"RTL_REGISTRY_DEVICEMAP","features":[5]},{"name":"RTL_REGISTRY_HANDLE","features":[5]},{"name":"RTL_REGISTRY_MAXIMUM","features":[5]},{"name":"RTL_REGISTRY_OPTIONAL","features":[5]},{"name":"RTL_REGISTRY_SERVICES","features":[5]},{"name":"RTL_REGISTRY_USER","features":[5]},{"name":"RTL_REGISTRY_WINDOWS_NT","features":[5]},{"name":"RTL_RUN_ONCE_INIT_FN","features":[5,39]},{"name":"RTL_STACK_WALKING_MODE_FRAMES_TO_SKIP_SHIFT","features":[5]},{"name":"RandomAccess","features":[5]},{"name":"ReadAccess","features":[5]},{"name":"RealModeIrqRoutingTable","features":[5]},{"name":"RealModePCIEnumeration","features":[5]},{"name":"RealTimeWorkQueue","features":[5]},{"name":"RebuildControl","features":[5]},{"name":"RegNtCallbackObjectContextCleanup","features":[5]},{"name":"RegNtDeleteKey","features":[5]},{"name":"RegNtDeleteValueKey","features":[5]},{"name":"RegNtEnumerateKey","features":[5]},{"name":"RegNtEnumerateValueKey","features":[5]},{"name":"RegNtKeyHandleClose","features":[5]},{"name":"RegNtPostCreateKey","features":[5]},{"name":"RegNtPostCreateKeyEx","features":[5]},{"name":"RegNtPostDeleteKey","features":[5]},{"name":"RegNtPostDeleteValueKey","features":[5]},{"name":"RegNtPostEnumerateKey","features":[5]},{"name":"RegNtPostEnumerateValueKey","features":[5]},{"name":"RegNtPostFlushKey","features":[5]},{"name":"RegNtPostKeyHandleClose","features":[5]},{"name":"RegNtPostLoadKey","features":[5]},{"name":"RegNtPostOpenKey","features":[5]},{"name":"RegNtPostOpenKeyEx","features":[5]},{"name":"RegNtPostQueryKey","features":[5]},{"name":"RegNtPostQueryKeyName","features":[5]},{"name":"RegNtPostQueryKeySecurity","features":[5]},{"name":"RegNtPostQueryMultipleValueKey","features":[5]},{"name":"RegNtPostQueryValueKey","features":[5]},{"name":"RegNtPostRenameKey","features":[5]},{"name":"RegNtPostReplaceKey","features":[5]},{"name":"RegNtPostRestoreKey","features":[5]},{"name":"RegNtPostSaveKey","features":[5]},{"name":"RegNtPostSaveMergedKey","features":[5]},{"name":"RegNtPostSetInformationKey","features":[5]},{"name":"RegNtPostSetKeySecurity","features":[5]},{"name":"RegNtPostSetValueKey","features":[5]},{"name":"RegNtPostUnLoadKey","features":[5]},{"name":"RegNtPreCreateKey","features":[5]},{"name":"RegNtPreCreateKeyEx","features":[5]},{"name":"RegNtPreDeleteKey","features":[5]},{"name":"RegNtPreDeleteValueKey","features":[5]},{"name":"RegNtPreEnumerateKey","features":[5]},{"name":"RegNtPreEnumerateValueKey","features":[5]},{"name":"RegNtPreFlushKey","features":[5]},{"name":"RegNtPreKeyHandleClose","features":[5]},{"name":"RegNtPreLoadKey","features":[5]},{"name":"RegNtPreOpenKey","features":[5]},{"name":"RegNtPreOpenKeyEx","features":[5]},{"name":"RegNtPreQueryKey","features":[5]},{"name":"RegNtPreQueryKeyName","features":[5]},{"name":"RegNtPreQueryKeySecurity","features":[5]},{"name":"RegNtPreQueryMultipleValueKey","features":[5]},{"name":"RegNtPreQueryValueKey","features":[5]},{"name":"RegNtPreRenameKey","features":[5]},{"name":"RegNtPreReplaceKey","features":[5]},{"name":"RegNtPreRestoreKey","features":[5]},{"name":"RegNtPreSaveKey","features":[5]},{"name":"RegNtPreSaveMergedKey","features":[5]},{"name":"RegNtPreSetInformationKey","features":[5]},{"name":"RegNtPreSetKeySecurity","features":[5]},{"name":"RegNtPreSetValueKey","features":[5]},{"name":"RegNtPreUnLoadKey","features":[5]},{"name":"RegNtQueryKey","features":[5]},{"name":"RegNtQueryMultipleValueKey","features":[5]},{"name":"RegNtQueryValueKey","features":[5]},{"name":"RegNtRenameKey","features":[5]},{"name":"RegNtSetInformationKey","features":[5]},{"name":"RegNtSetValueKey","features":[5]},{"name":"RemovalPolicyExpectNoRemoval","features":[5]},{"name":"RemovalPolicyExpectOrderlyRemoval","features":[5]},{"name":"RemovalPolicyExpectSurpriseRemoval","features":[5]},{"name":"RemovalRelations","features":[5]},{"name":"ResourceNeverExclusive","features":[5]},{"name":"ResourceOwnedExclusive","features":[5]},{"name":"ResourceReleaseByOtherThread","features":[5]},{"name":"ResourceTypeEventBuffer","features":[5]},{"name":"ResourceTypeExtendedCounterConfiguration","features":[5]},{"name":"ResourceTypeIdenitificationTag","features":[5]},{"name":"ResourceTypeMax","features":[5]},{"name":"ResourceTypeOverflow","features":[5]},{"name":"ResourceTypeRange","features":[5]},{"name":"ResourceTypeSingle","features":[5]},{"name":"ResultNegative","features":[5]},{"name":"ResultPositive","features":[5]},{"name":"ResultZero","features":[5]},{"name":"RtlAppendUnicodeStringToString","features":[5,3]},{"name":"RtlAppendUnicodeToString","features":[5,3]},{"name":"RtlAreBitsClear","features":[5,3]},{"name":"RtlAreBitsSet","features":[5,3]},{"name":"RtlAssert","features":[5]},{"name":"RtlCheckRegistryKey","features":[5,3]},{"name":"RtlClearAllBits","features":[5]},{"name":"RtlClearBit","features":[5]},{"name":"RtlClearBits","features":[5]},{"name":"RtlCmDecodeMemIoResource","features":[5]},{"name":"RtlCmEncodeMemIoResource","features":[5,3]},{"name":"RtlCompareString","features":[5,3,9]},{"name":"RtlCompareUnicodeString","features":[5,3]},{"name":"RtlCompareUnicodeStrings","features":[5,3]},{"name":"RtlContractHashTable","features":[5,3]},{"name":"RtlCopyBitMap","features":[5]},{"name":"RtlCopyString","features":[5,9]},{"name":"RtlCopyUnicodeString","features":[5,3]},{"name":"RtlCreateHashTable","features":[5,3]},{"name":"RtlCreateHashTableEx","features":[5,3]},{"name":"RtlCreateRegistryKey","features":[5,3]},{"name":"RtlCreateSecurityDescriptor","features":[5,3,6]},{"name":"RtlDelete","features":[4,5]},{"name":"RtlDeleteElementGenericTable","features":[4,5,3,9]},{"name":"RtlDeleteElementGenericTableAvl","features":[5,3]},{"name":"RtlDeleteElementGenericTableAvlEx","features":[5]},{"name":"RtlDeleteHashTable","features":[5]},{"name":"RtlDeleteNoSplay","features":[4,5]},{"name":"RtlDeleteRegistryValue","features":[5,3]},{"name":"RtlDowncaseUnicodeChar","features":[5]},{"name":"RtlEndEnumerationHashTable","features":[5,9]},{"name":"RtlEndStrongEnumerationHashTable","features":[5,9]},{"name":"RtlEndWeakEnumerationHashTable","features":[5,9]},{"name":"RtlEnumerateEntryHashTable","features":[5,9]},{"name":"RtlEnumerateGenericTable","features":[4,5,3,9]},{"name":"RtlEnumerateGenericTableAvl","features":[5,3]},{"name":"RtlEnumerateGenericTableLikeADirectory","features":[5,3]},{"name":"RtlEnumerateGenericTableWithoutSplaying","features":[4,5,9]},{"name":"RtlEnumerateGenericTableWithoutSplayingAvl","features":[5]},{"name":"RtlEqualString","features":[5,3,9]},{"name":"RtlEqualUnicodeString","features":[5,3]},{"name":"RtlExpandHashTable","features":[5,3]},{"name":"RtlExtractBitMap","features":[5]},{"name":"RtlFindClearBits","features":[5]},{"name":"RtlFindClearBitsAndSet","features":[5]},{"name":"RtlFindClearRuns","features":[5,3]},{"name":"RtlFindClosestEncodableLength","features":[5,3]},{"name":"RtlFindFirstRunClear","features":[5]},{"name":"RtlFindLastBackwardRunClear","features":[5]},{"name":"RtlFindLeastSignificantBit","features":[5]},{"name":"RtlFindLongestRunClear","features":[5]},{"name":"RtlFindMostSignificantBit","features":[5]},{"name":"RtlFindNextForwardRunClear","features":[5]},{"name":"RtlFindSetBits","features":[5]},{"name":"RtlFindSetBitsAndClear","features":[5]},{"name":"RtlFreeUTF8String","features":[5,9]},{"name":"RtlGUIDFromString","features":[5,3]},{"name":"RtlGenerateClass5Guid","features":[5,3]},{"name":"RtlGetActiveConsoleId","features":[5]},{"name":"RtlGetCallersAddress","features":[5]},{"name":"RtlGetConsoleSessionForegroundProcessId","features":[5]},{"name":"RtlGetElementGenericTable","features":[4,5,9]},{"name":"RtlGetElementGenericTableAvl","features":[5]},{"name":"RtlGetEnabledExtendedFeatures","features":[5]},{"name":"RtlGetNextEntryHashTable","features":[5,9]},{"name":"RtlGetNtProductType","features":[5,3,9]},{"name":"RtlGetNtSystemRoot","features":[5]},{"name":"RtlGetPersistedStateLocation","features":[5,3]},{"name":"RtlGetSuiteMask","features":[5]},{"name":"RtlGetVersion","features":[5,3,35]},{"name":"RtlHashUnicodeString","features":[5,3]},{"name":"RtlInitEnumerationHashTable","features":[5,3,9]},{"name":"RtlInitStrongEnumerationHashTable","features":[5,3,9]},{"name":"RtlInitUTF8String","features":[5,9]},{"name":"RtlInitUTF8StringEx","features":[5,3,9]},{"name":"RtlInitWeakEnumerationHashTable","features":[5,3,9]},{"name":"RtlInitializeBitMap","features":[5]},{"name":"RtlInitializeGenericTable","features":[4,5,9]},{"name":"RtlInitializeGenericTableAvl","features":[5]},{"name":"RtlInsertElementGenericTable","features":[4,5,3,9]},{"name":"RtlInsertElementGenericTableAvl","features":[5,3]},{"name":"RtlInsertElementGenericTableFull","features":[4,5,3,9]},{"name":"RtlInsertElementGenericTableFullAvl","features":[5,3]},{"name":"RtlInsertEntryHashTable","features":[5,3,9]},{"name":"RtlInt64ToUnicodeString","features":[5,3]},{"name":"RtlIntegerToUnicodeString","features":[5,3]},{"name":"RtlIoDecodeMemIoResource","features":[5]},{"name":"RtlIoEncodeMemIoResource","features":[5,3]},{"name":"RtlIsApiSetImplemented","features":[5,3]},{"name":"RtlIsGenericTableEmpty","features":[4,5,3,9]},{"name":"RtlIsGenericTableEmptyAvl","features":[5,3]},{"name":"RtlIsMultiSessionSku","features":[5,3]},{"name":"RtlIsMultiUsersInSessionSku","features":[5,3]},{"name":"RtlIsNtDdiVersionAvailable","features":[5,3]},{"name":"RtlIsServicePackVersionInstalled","features":[5,3]},{"name":"RtlIsStateSeparationEnabled","features":[5,3]},{"name":"RtlIsUntrustedObject","features":[5,3]},{"name":"RtlLengthSecurityDescriptor","features":[5,6]},{"name":"RtlLookupElementGenericTable","features":[4,5,9]},{"name":"RtlLookupElementGenericTableAvl","features":[5]},{"name":"RtlLookupElementGenericTableFull","features":[4,5,9]},{"name":"RtlLookupElementGenericTableFullAvl","features":[5]},{"name":"RtlLookupEntryHashTable","features":[5,9]},{"name":"RtlLookupFirstMatchingElementGenericTableAvl","features":[5]},{"name":"RtlMapGenericMask","features":[5,6]},{"name":"RtlNormalizeSecurityDescriptor","features":[5,3,6]},{"name":"RtlNumberGenericTableElements","features":[4,5,9]},{"name":"RtlNumberGenericTableElementsAvl","features":[5]},{"name":"RtlNumberOfClearBits","features":[5]},{"name":"RtlNumberOfClearBitsInRange","features":[5]},{"name":"RtlNumberOfSetBits","features":[5]},{"name":"RtlNumberOfSetBitsInRange","features":[5]},{"name":"RtlNumberOfSetBitsUlongPtr","features":[5]},{"name":"RtlPrefetchMemoryNonTemporal","features":[5]},{"name":"RtlPrefixUnicodeString","features":[5,3]},{"name":"RtlQueryRegistryValueWithFallback","features":[5,3]},{"name":"RtlQueryRegistryValues","features":[5,3]},{"name":"RtlQueryValidationRunlevel","features":[5,3]},{"name":"RtlRealPredecessor","features":[4,5]},{"name":"RtlRealSuccessor","features":[4,5]},{"name":"RtlRemoveEntryHashTable","features":[5,3,9]},{"name":"RtlRunOnceBeginInitialize","features":[5,3,39]},{"name":"RtlRunOnceComplete","features":[5,3,39]},{"name":"RtlRunOnceExecuteOnce","features":[5,3,39]},{"name":"RtlRunOnceInitialize","features":[5,39]},{"name":"RtlSetAllBits","features":[5]},{"name":"RtlSetBit","features":[5]},{"name":"RtlSetBits","features":[5]},{"name":"RtlSetDaclSecurityDescriptor","features":[5,3,6]},{"name":"RtlSetSystemGlobalData","features":[5,3,35]},{"name":"RtlSplay","features":[4,5]},{"name":"RtlStringFromGUID","features":[5,3]},{"name":"RtlStronglyEnumerateEntryHashTable","features":[5,9]},{"name":"RtlSubtreePredecessor","features":[4,5]},{"name":"RtlSubtreeSuccessor","features":[4,5]},{"name":"RtlSuffixUnicodeString","features":[5,3]},{"name":"RtlTestBit","features":[5,3]},{"name":"RtlTimeFieldsToTime","features":[5,3]},{"name":"RtlTimeToTimeFields","features":[5]},{"name":"RtlUTF8StringToUnicodeString","features":[5,3,9]},{"name":"RtlUTF8ToUnicodeN","features":[5,3]},{"name":"RtlUnicodeStringToInt64","features":[5,3]},{"name":"RtlUnicodeStringToInteger","features":[5,3]},{"name":"RtlUnicodeStringToUTF8String","features":[5,3,9]},{"name":"RtlUnicodeToUTF8N","features":[5,3]},{"name":"RtlUpcaseUnicodeChar","features":[5]},{"name":"RtlUpcaseUnicodeString","features":[5,3]},{"name":"RtlUpperChar","features":[5]},{"name":"RtlUpperString","features":[5,9]},{"name":"RtlValidRelativeSecurityDescriptor","features":[5,3,6]},{"name":"RtlValidSecurityDescriptor","features":[5,3,6]},{"name":"RtlVerifyVersionInfo","features":[5,3,35]},{"name":"RtlVolumeDeviceToDosName","features":[5,3]},{"name":"RtlWalkFrameChain","features":[5]},{"name":"RtlWeaklyEnumerateEntryHashTable","features":[5,9]},{"name":"RtlWriteRegistryValue","features":[5,3]},{"name":"RtlxAnsiStringToUnicodeSize","features":[5,9]},{"name":"RtlxUnicodeStringToAnsiSize","features":[5,3]},{"name":"SCATTER_GATHER_ELEMENT","features":[5]},{"name":"SCATTER_GATHER_LIST","features":[5]},{"name":"SCI_NOTIFY_TYPE_GUID","features":[5]},{"name":"SDEV_IDENTIFIER_INTERFACE","features":[5]},{"name":"SDEV_IDENTIFIER_INTERFACE_VERSION","features":[5]},{"name":"SEA_NOTIFY_TYPE_GUID","features":[5]},{"name":"SEA_SECTION_GUID","features":[5]},{"name":"SECTION_MAP_EXECUTE","features":[5]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[5]},{"name":"SECTION_MAP_READ","features":[5]},{"name":"SECTION_MAP_WRITE","features":[5]},{"name":"SECTION_QUERY","features":[5]},{"name":"SECURE_DRIVER_INTERFACE","features":[4,5]},{"name":"SECURE_DRIVER_INTERFACE_VERSION","features":[5]},{"name":"SECURE_DRIVER_PROCESS_DEREFERENCE","features":[4,5]},{"name":"SECURE_DRIVER_PROCESS_REFERENCE","features":[4,5]},{"name":"SECURE_POOL_FLAGS_FREEABLE","features":[5]},{"name":"SECURE_POOL_FLAGS_MODIFIABLE","features":[5]},{"name":"SECURE_POOL_FLAGS_NONE","features":[5]},{"name":"SECURE_SECTION_ALLOW_PARTIAL_MDL","features":[5]},{"name":"SECURITY_CONTEXT_TRACKING_MODE","features":[5]},{"name":"SECURITY_OPERATION_CODE","features":[5]},{"name":"SEC_LARGE_PAGES","features":[5]},{"name":"SEH_VALIDATION_POLICY_DEFER","features":[5]},{"name":"SEH_VALIDATION_POLICY_OFF","features":[5]},{"name":"SEH_VALIDATION_POLICY_ON","features":[5]},{"name":"SEH_VALIDATION_POLICY_TELEMETRY","features":[5]},{"name":"SEI_NOTIFY_TYPE_GUID","features":[5]},{"name":"SEI_SECTION_GUID","features":[5]},{"name":"SEMAPHORE_QUERY_STATE","features":[5]},{"name":"SET_D3COLD_SUPPORT","features":[5,3]},{"name":"SET_VIRTUAL_DEVICE_DATA","features":[5]},{"name":"SE_ASSIGNPRIMARYTOKEN_PRIVILEGE","features":[5]},{"name":"SE_AUDIT_PRIVILEGE","features":[5]},{"name":"SE_BACKUP_PRIVILEGE","features":[5]},{"name":"SE_CHANGE_NOTIFY_PRIVILEGE","features":[5]},{"name":"SE_CREATE_GLOBAL_PRIVILEGE","features":[5]},{"name":"SE_CREATE_PAGEFILE_PRIVILEGE","features":[5]},{"name":"SE_CREATE_PERMANENT_PRIVILEGE","features":[5]},{"name":"SE_CREATE_SYMBOLIC_LINK_PRIVILEGE","features":[5]},{"name":"SE_CREATE_TOKEN_PRIVILEGE","features":[5]},{"name":"SE_DEBUG_PRIVILEGE","features":[5]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_PRIVILEGE","features":[5]},{"name":"SE_ENABLE_DELEGATION_PRIVILEGE","features":[5]},{"name":"SE_IMAGE_TYPE","features":[5]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[5,3]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_TYPE","features":[5]},{"name":"SE_IMPERSONATE_PRIVILEGE","features":[5]},{"name":"SE_INCREASE_QUOTA_PRIVILEGE","features":[5]},{"name":"SE_INC_BASE_PRIORITY_PRIVILEGE","features":[5]},{"name":"SE_INC_WORKING_SET_PRIVILEGE","features":[5]},{"name":"SE_LOAD_DRIVER_PRIVILEGE","features":[5]},{"name":"SE_LOCK_MEMORY_PRIVILEGE","features":[5]},{"name":"SE_MACHINE_ACCOUNT_PRIVILEGE","features":[5]},{"name":"SE_MANAGE_VOLUME_PRIVILEGE","features":[5]},{"name":"SE_MAX_WELL_KNOWN_PRIVILEGE","features":[5]},{"name":"SE_MIN_WELL_KNOWN_PRIVILEGE","features":[5]},{"name":"SE_PROF_SINGLE_PROCESS_PRIVILEGE","features":[5]},{"name":"SE_RELABEL_PRIVILEGE","features":[5]},{"name":"SE_REMOTE_SHUTDOWN_PRIVILEGE","features":[5]},{"name":"SE_RESTORE_PRIVILEGE","features":[5]},{"name":"SE_SECURITY_PRIVILEGE","features":[5]},{"name":"SE_SHUTDOWN_PRIVILEGE","features":[5]},{"name":"SE_SYNC_AGENT_PRIVILEGE","features":[5]},{"name":"SE_SYSTEMTIME_PRIVILEGE","features":[5]},{"name":"SE_SYSTEM_ENVIRONMENT_PRIVILEGE","features":[5]},{"name":"SE_SYSTEM_PROFILE_PRIVILEGE","features":[5]},{"name":"SE_TAKE_OWNERSHIP_PRIVILEGE","features":[5]},{"name":"SE_TCB_PRIVILEGE","features":[5]},{"name":"SE_TIME_ZONE_PRIVILEGE","features":[5]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_PRIVILEGE","features":[5]},{"name":"SE_UNDOCK_PRIVILEGE","features":[5]},{"name":"SE_UNSOLICITED_INPUT_PRIVILEGE","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_CLEAR_GLOBAL_DATA_FLAG","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_CONSOLE_BROKER_ENABLED_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_DYNAMIC_PROC_ENABLED_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_ELEVATION_ENABLED_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_ERROR_PORT_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_INSTALLER_DETECT_ENABLED_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_LKG_ENABLED_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_MULTIUSERS_IN_SESSION_SKU_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_MULTI_SESSION_SKU_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_A73_ERRATA","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_DISABLE_32BIT","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_ENABLED","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_HV_PAGE","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_LFENCE","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_MFENCE","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_RDTSCP","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_SECURE_BOOT_ENABLED_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_SET_GLOBAL_DATA_FLAG","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_STATE_SEPARATION_ENABLED_V","features":[5]},{"name":"SHARED_GLOBAL_FLAGS_VIRT_ENABLED_V","features":[5]},{"name":"SHARE_ACCESS","features":[5]},{"name":"SHORT_LEAST_SIGNIFICANT_BIT","features":[5]},{"name":"SHORT_MOST_SIGNIFICANT_BIT","features":[5]},{"name":"SIGNAL_REG_VALUE","features":[5]},{"name":"SILO_CONTEXT_CLEANUP_CALLBACK","features":[5]},{"name":"SILO_MONITOR_CREATE_CALLBACK","features":[4,5,3]},{"name":"SILO_MONITOR_REGISTRATION","features":[4,5,3]},{"name":"SILO_MONITOR_REGISTRATION_VERSION","features":[5]},{"name":"SILO_MONITOR_TERMINATE_CALLBACK","features":[4,5]},{"name":"SINGLE_GROUP_LEGACY_API","features":[5]},{"name":"SL_ALLOW_RAW_MOUNT","features":[5]},{"name":"SL_BYPASS_ACCESS_CHECK","features":[5]},{"name":"SL_BYPASS_IO","features":[5]},{"name":"SL_CASE_SENSITIVE","features":[5]},{"name":"SL_ERROR_RETURNED","features":[5]},{"name":"SL_EXCLUSIVE_LOCK","features":[5]},{"name":"SL_FAIL_IMMEDIATELY","features":[5]},{"name":"SL_FORCE_ACCESS_CHECK","features":[5]},{"name":"SL_FORCE_ASYNCHRONOUS","features":[5]},{"name":"SL_FORCE_DIRECT_WRITE","features":[5]},{"name":"SL_FT_SEQUENTIAL_WRITE","features":[5]},{"name":"SL_IGNORE_READONLY_ATTRIBUTE","features":[5]},{"name":"SL_INDEX_SPECIFIED","features":[5]},{"name":"SL_INFO_FORCE_ACCESS_CHECK","features":[5]},{"name":"SL_INFO_IGNORE_READONLY_ATTRIBUTE","features":[5]},{"name":"SL_INVOKE_ON_CANCEL","features":[5]},{"name":"SL_INVOKE_ON_ERROR","features":[5]},{"name":"SL_INVOKE_ON_SUCCESS","features":[5]},{"name":"SL_KEY_SPECIFIED","features":[5]},{"name":"SL_NO_CURSOR_UPDATE","features":[5]},{"name":"SL_OPEN_PAGING_FILE","features":[5]},{"name":"SL_OPEN_TARGET_DIRECTORY","features":[5]},{"name":"SL_OVERRIDE_VERIFY_VOLUME","features":[5]},{"name":"SL_PENDING_RETURNED","features":[5]},{"name":"SL_PERSISTENT_MEMORY_FIXED_MAPPING","features":[5]},{"name":"SL_QUERY_DIRECTORY_MASK","features":[5]},{"name":"SL_READ_ACCESS_GRANTED","features":[5]},{"name":"SL_REALTIME_STREAM","features":[5]},{"name":"SL_RESTART_SCAN","features":[5]},{"name":"SL_RETURN_ON_DISK_ENTRIES_ONLY","features":[5]},{"name":"SL_RETURN_SINGLE_ENTRY","features":[5]},{"name":"SL_STOP_ON_SYMLINK","features":[5]},{"name":"SL_WATCH_TREE","features":[5]},{"name":"SL_WRITE_ACCESS_GRANTED","features":[5]},{"name":"SL_WRITE_THROUGH","features":[5]},{"name":"SOC_SUBSYSTEM_FAILURE_DETAILS","features":[5]},{"name":"SOC_SUBSYSTEM_TYPE","features":[5]},{"name":"SOC_SUBSYS_AUDIO_DSP","features":[5]},{"name":"SOC_SUBSYS_COMPUTE_DSP","features":[5]},{"name":"SOC_SUBSYS_SECURE_PROC","features":[5]},{"name":"SOC_SUBSYS_SENSORS","features":[5]},{"name":"SOC_SUBSYS_VENDOR_DEFINED","features":[5]},{"name":"SOC_SUBSYS_WIRELESS_MODEM","features":[5]},{"name":"SOC_SUBSYS_WIRELSS_CONNECTIVITY","features":[5]},{"name":"SSINFO_FLAGS_ALIGNED_DEVICE","features":[5]},{"name":"SSINFO_FLAGS_BYTE_ADDRESSABLE","features":[5]},{"name":"SSINFO_FLAGS_NO_SEEK_PENALTY","features":[5]},{"name":"SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[5]},{"name":"SSINFO_FLAGS_TRIM_ENABLED","features":[5]},{"name":"SSINFO_OFFSET_UNKNOWN","features":[5]},{"name":"STATE_LOCATION_TYPE","features":[5]},{"name":"SUBSYSTEM_INFORMATION_TYPE","features":[5]},{"name":"SYMBOLIC_LINK_QUERY","features":[5]},{"name":"SYMBOLIC_LINK_SET","features":[5]},{"name":"SYSTEM_CALL_INT_2E","features":[5]},{"name":"SYSTEM_CALL_SYSCALL","features":[5]},{"name":"SYSTEM_FIRMWARE_TABLE_ACTION","features":[5]},{"name":"SYSTEM_FIRMWARE_TABLE_HANDLER","features":[5,3]},{"name":"SYSTEM_FIRMWARE_TABLE_INFORMATION","features":[5]},{"name":"SYSTEM_POWER_CONDITION","features":[5]},{"name":"SYSTEM_POWER_STATE_CONTEXT","features":[5]},{"name":"ScsiAdapter","features":[5]},{"name":"SeAccessCheck","features":[4,5,3,6]},{"name":"SeAssignSecurity","features":[4,5,3,6]},{"name":"SeAssignSecurityEx","features":[4,5,3,6]},{"name":"SeCaptureSubjectContext","features":[4,5,6]},{"name":"SeComputeAutoInheritByObjectType","features":[5,6]},{"name":"SeDeassignSecurity","features":[5,3,6]},{"name":"SeEtwWriteKMCveEvent","features":[5,3]},{"name":"SeImageTypeDriver","features":[5]},{"name":"SeImageTypeDynamicCodeFile","features":[5]},{"name":"SeImageTypeElamDriver","features":[5]},{"name":"SeImageTypeMax","features":[5]},{"name":"SeImageTypePlatformSecureFile","features":[5]},{"name":"SeImageVerificationCallbackInformational","features":[5]},{"name":"SeLockSubjectContext","features":[4,5,6]},{"name":"SeRegisterImageVerificationCallback","features":[5,3]},{"name":"SeReleaseSubjectContext","features":[4,5,6]},{"name":"SeReportSecurityEvent","features":[5,3,25]},{"name":"SeSetAuditParameter","features":[5,3,25]},{"name":"SeSinglePrivilegeCheck","features":[5,3]},{"name":"SeUnlockSubjectContext","features":[4,5,6]},{"name":"SeUnregisterImageVerificationCallback","features":[5]},{"name":"SeValidSecurityDescriptor","features":[5,3,6]},{"name":"SecondaryCache","features":[5]},{"name":"SecondaryDcache","features":[5]},{"name":"SecondaryIcache","features":[5]},{"name":"SequentialAccess","features":[5]},{"name":"SerialController","features":[5]},{"name":"SetSecurityDescriptor","features":[5]},{"name":"SgiInternalConfiguration","features":[5]},{"name":"SharedInterruptTime","features":[5]},{"name":"SharedSystemTime","features":[5]},{"name":"SharedTickCount","features":[5]},{"name":"SingleBusRelations","features":[5]},{"name":"SlotEmpty","features":[5]},{"name":"StandardDesign","features":[5]},{"name":"StopCompletion","features":[5]},{"name":"SubsystemInformationTypeWSL","features":[5]},{"name":"SubsystemInformationTypeWin32","features":[5]},{"name":"SuperCriticalWorkQueue","features":[5]},{"name":"Suspended","features":[5]},{"name":"SystemFirmwareTable_Enumerate","features":[5]},{"name":"SystemFirmwareTable_Get","features":[5]},{"name":"SystemMemory","features":[5]},{"name":"SystemMemoryPartitionDedicatedMemoryInformation","features":[5]},{"name":"SystemMemoryPartitionInformation","features":[5]},{"name":"SystemMemoryPartitionOpenDedicatedMemory","features":[5]},{"name":"SystemPowerState","features":[5]},{"name":"TABLE_SEARCH_RESULT","features":[5]},{"name":"TARGET_DEVICE_REMOVAL_NOTIFICATION","features":[4,7,5,3,6,8,9,10]},{"name":"THREAD_ALERT","features":[5]},{"name":"THREAD_CSWITCH_PMU_DISABLE","features":[5]},{"name":"THREAD_CSWITCH_PMU_ENABLE","features":[5]},{"name":"THREAD_GET_CONTEXT","features":[5]},{"name":"THREAD_WAIT_OBJECTS","features":[5]},{"name":"TIMER_EXPIRED_INDEX_BITS","features":[5]},{"name":"TIMER_PROCESSOR_INDEX_BITS","features":[5]},{"name":"TIMER_SET_COALESCABLE_TIMER_INFO","features":[5,3]},{"name":"TIMER_TOLERABLE_DELAY_BITS","features":[5]},{"name":"TIME_FIELDS","features":[5]},{"name":"TRACE_INFORMATION_CLASS","features":[5]},{"name":"TRANSLATE_BUS_ADDRESS","features":[5,3]},{"name":"TRANSLATOR_INTERFACE","features":[4,7,5,3,6,8,9,10]},{"name":"TREE_CONNECT_NO_CLIENT_BUFFERING","features":[5]},{"name":"TREE_CONNECT_WRITE_THROUGH","features":[5]},{"name":"TXF_MINIVERSION_DEFAULT_VIEW","features":[5]},{"name":"TXN_PARAMETER_BLOCK","features":[5]},{"name":"TableEmptyTree","features":[5]},{"name":"TableFoundNode","features":[5]},{"name":"TableInsertAsLeft","features":[5]},{"name":"TableInsertAsRight","features":[5]},{"name":"TapeController","features":[5]},{"name":"TapePeripheral","features":[5]},{"name":"TargetDeviceRelation","features":[5]},{"name":"TcAdapter","features":[5]},{"name":"TerminalPeripheral","features":[5]},{"name":"TlbMatchConflict","features":[5]},{"name":"TmCommitComplete","features":[4,5,3]},{"name":"TmCommitEnlistment","features":[4,5,3]},{"name":"TmCommitTransaction","features":[4,5,3]},{"name":"TmCreateEnlistment","features":[4,5,3]},{"name":"TmDereferenceEnlistmentKey","features":[4,5,3]},{"name":"TmEnableCallbacks","features":[4,5,3]},{"name":"TmGetTransactionId","features":[4,5]},{"name":"TmInitializeTransactionManager","features":[5,3]},{"name":"TmIsTransactionActive","features":[4,5,3]},{"name":"TmPrePrepareComplete","features":[4,5,3]},{"name":"TmPrePrepareEnlistment","features":[4,5,3]},{"name":"TmPrepareComplete","features":[4,5,3]},{"name":"TmPrepareEnlistment","features":[4,5,3]},{"name":"TmPropagationComplete","features":[4,5,3]},{"name":"TmPropagationFailed","features":[4,5,3]},{"name":"TmReadOnlyEnlistment","features":[4,5,3]},{"name":"TmRecoverEnlistment","features":[4,5,3]},{"name":"TmRecoverResourceManager","features":[4,5,3]},{"name":"TmRecoverTransactionManager","features":[4,5,3]},{"name":"TmReferenceEnlistmentKey","features":[4,5,3]},{"name":"TmRenameTransactionManager","features":[5,3]},{"name":"TmRequestOutcomeEnlistment","features":[4,5,3]},{"name":"TmRollbackComplete","features":[4,5,3]},{"name":"TmRollbackEnlistment","features":[4,5,3]},{"name":"TmRollbackTransaction","features":[4,5,3]},{"name":"TmSinglePhaseReject","features":[4,5,3]},{"name":"TraceEnableFlagsClass","features":[5]},{"name":"TraceEnableLevelClass","features":[5]},{"name":"TraceHandleByNameClass","features":[5]},{"name":"TraceHandleClass","features":[5]},{"name":"TraceIdClass","features":[5]},{"name":"TraceInformationClassReserved1","features":[5]},{"name":"TraceInformationClassReserved2","features":[5]},{"name":"TraceSessionSettingsClass","features":[5]},{"name":"TranslateChildToParent","features":[5]},{"name":"TranslateParentToChild","features":[5]},{"name":"TranslationFault","features":[5]},{"name":"TransportRelations","features":[5]},{"name":"TurboChannel","features":[5]},{"name":"TypeA","features":[5]},{"name":"TypeB","features":[5]},{"name":"TypeC","features":[5]},{"name":"TypeF","features":[5]},{"name":"UADDRESS_BASE","features":[5]},{"name":"UnsupportedUpstreamTransaction","features":[5]},{"name":"UserMode","features":[5]},{"name":"UserNotPresent","features":[5]},{"name":"UserPresent","features":[5]},{"name":"UserRequest","features":[5]},{"name":"UserUnknown","features":[5]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES1","features":[5]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES2","features":[5]},{"name":"VIRTUAL_CHANNEL_CONTROL","features":[5]},{"name":"VIRTUAL_CHANNEL_STATUS","features":[5]},{"name":"VIRTUAL_RESOURCE","features":[5]},{"name":"VIRTUAL_RESOURCE_CAPABILITY","features":[5]},{"name":"VIRTUAL_RESOURCE_CONTROL","features":[5]},{"name":"VIRTUAL_RESOURCE_STATUS","features":[5]},{"name":"VMEBus","features":[5]},{"name":"VMEConfiguration","features":[5]},{"name":"VM_COUNTERS","features":[5]},{"name":"VM_COUNTERS_EX","features":[5]},{"name":"VM_COUNTERS_EX2","features":[5]},{"name":"VPB_DIRECT_WRITES_ALLOWED","features":[5]},{"name":"VPB_DISMOUNTING","features":[5]},{"name":"VPB_FLAGS_BYPASSIO_BLOCKED","features":[5]},{"name":"VPB_LOCKED","features":[5]},{"name":"VPB_MOUNTED","features":[5]},{"name":"VPB_PERSISTENT","features":[5]},{"name":"VPB_RAW_MOUNT","features":[5]},{"name":"VPB_REMOVE_PENDING","features":[5]},{"name":"Vmcs","features":[5]},{"name":"VslCreateSecureSection","features":[4,5,3]},{"name":"VslDeleteSecureSection","features":[5,3]},{"name":"WAIT_CONTEXT_BLOCK","features":[4,7,5,3,6,8,9,10]},{"name":"WCS_RAS_REGISTER_NAME_MAX_LENGTH","features":[5]},{"name":"WDM_MAJORVERSION","features":[5]},{"name":"WDM_MINORVERSION","features":[5]},{"name":"WHEA128A","features":[5]},{"name":"WHEAP_ACPI_TIMEOUT_EVENT","features":[5]},{"name":"WHEAP_ADD_REMOVE_ERROR_SOURCE_EVENT","features":[5,3,33]},{"name":"WHEAP_ATTEMPT_RECOVERY_EVENT","features":[5,3]},{"name":"WHEAP_BAD_HEST_NOTIFY_DATA_EVENT","features":[5,33]},{"name":"WHEAP_CLEARED_POISON_EVENT","features":[5]},{"name":"WHEAP_CMCI_IMPLEMENTED_EVENT","features":[5,3]},{"name":"WHEAP_CMCI_INITERR_EVENT","features":[5]},{"name":"WHEAP_CMCI_RESTART_EVENT","features":[5]},{"name":"WHEAP_CREATE_GENERIC_RECORD_EVENT","features":[5,3]},{"name":"WHEAP_DEFERRED_EVENT","features":[5,9]},{"name":"WHEAP_DEVICE_DRV_EVENT","features":[5]},{"name":"WHEAP_DPC_ERROR_EVENT","features":[5]},{"name":"WHEAP_DPC_ERROR_EVENT_TYPE","features":[5]},{"name":"WHEAP_DROPPED_CORRECTED_ERROR_EVENT","features":[5,33]},{"name":"WHEAP_EDPC_ENABLED_EVENT","features":[5,3]},{"name":"WHEAP_ERROR_CLEARED_EVENT","features":[5]},{"name":"WHEAP_ERROR_RECORD_EVENT","features":[5]},{"name":"WHEAP_ERR_SRC_ARRAY_INVALID_EVENT","features":[5]},{"name":"WHEAP_ERR_SRC_INVALID_EVENT","features":[5,3,33]},{"name":"WHEAP_FOUND_ERROR_IN_BANK_EVENT","features":[5]},{"name":"WHEAP_GENERIC_ERR_MEM_MAP_EVENT","features":[5]},{"name":"WHEAP_OSC_IMPLEMENTED","features":[5,3]},{"name":"WHEAP_PCIE_CONFIG_INFO","features":[5]},{"name":"WHEAP_PCIE_OVERRIDE_INFO","features":[5]},{"name":"WHEAP_PCIE_READ_OVERRIDES_ERR","features":[5,3]},{"name":"WHEAP_PFA_MEMORY_OFFLINED","features":[5,3]},{"name":"WHEAP_PFA_MEMORY_POLICY","features":[5,3]},{"name":"WHEAP_PFA_MEMORY_REMOVE_MONITOR","features":[5]},{"name":"WHEAP_PFA_OFFLINE_DECISION_TYPE","features":[5]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_CORRUPT","features":[5]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_FULL_EVENT","features":[5]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_UEFI_VAR_FAILED","features":[5]},{"name":"WHEAP_PLUGIN_PFA_EVENT","features":[5,3]},{"name":"WHEAP_PROCESS_EINJ_EVENT","features":[5,3]},{"name":"WHEAP_PROCESS_HEST_EVENT","features":[5,3]},{"name":"WHEAP_PSHED_INJECT_ERROR","features":[5,3]},{"name":"WHEAP_PSHED_PLUGIN_REGISTER","features":[5,3]},{"name":"WHEAP_ROW_FAILURE_EVENT","features":[5]},{"name":"WHEAP_SPURIOUS_AER_EVENT","features":[5]},{"name":"WHEAP_STARTED_REPORT_HW_ERROR","features":[5,33]},{"name":"WHEAP_STUCK_ERROR_EVENT","features":[5]},{"name":"WHEA_ACPI_HEADER","features":[5]},{"name":"WHEA_AMD_EXTENDED_REGISTERS","features":[5]},{"name":"WHEA_AMD_EXT_REG_NUM","features":[5]},{"name":"WHEA_ARMV8_AARCH32_GPRS","features":[5]},{"name":"WHEA_ARMV8_AARCH64_EL3_CSR","features":[5]},{"name":"WHEA_ARMV8_AARCH64_GPRS","features":[5]},{"name":"WHEA_ARM_AARCH32_EL1_CSR","features":[5]},{"name":"WHEA_ARM_AARCH32_EL2_CSR","features":[5]},{"name":"WHEA_ARM_AARCH32_SECURE_CSR","features":[5]},{"name":"WHEA_ARM_AARCH64_EL1_CSR","features":[5]},{"name":"WHEA_ARM_AARCH64_EL2_CSR","features":[5]},{"name":"WHEA_ARM_BUS_ERROR","features":[5]},{"name":"WHEA_ARM_BUS_ERROR_VALID_BITS","features":[5]},{"name":"WHEA_ARM_CACHE_ERROR","features":[5]},{"name":"WHEA_ARM_CACHE_ERROR_VALID_BITS","features":[5]},{"name":"WHEA_ARM_MISC_CSR","features":[5]},{"name":"WHEA_ARM_PROCESSOR_ERROR","features":[5]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER","features":[5]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER_FLAGS","features":[5]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION","features":[5]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION_VALID_BITS","features":[5]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION","features":[5]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION_VALID_BITS","features":[5]},{"name":"WHEA_ARM_TLB_ERROR","features":[5]},{"name":"WHEA_ARM_TLB_ERROR_VALID_BITS","features":[5]},{"name":"WHEA_AZCC_ROOT_BUS_ERR_EVENT","features":[5,3]},{"name":"WHEA_AZCC_ROOT_BUS_LIST_EVENT","features":[5]},{"name":"WHEA_AZCC_SET_POISON_EVENT","features":[5,3]},{"name":"WHEA_BUGCHECK_RECOVERY_LOG_TYPE","features":[5]},{"name":"WHEA_BUSCHECK_GUID","features":[5]},{"name":"WHEA_CACHECHECK_GUID","features":[5]},{"name":"WHEA_CPU_VENDOR","features":[5]},{"name":"WHEA_DEVICE_ERROR_SUMMARY_GUID","features":[5]},{"name":"WHEA_DPC_CAPABILITY_SECTION_GUID","features":[5]},{"name":"WHEA_ERROR_INJECTION_CAPABILITIES","features":[5]},{"name":"WHEA_ERROR_LOG_ENTRY_VERSION","features":[5]},{"name":"WHEA_ERROR_PACKET_DATA_FORMAT","features":[5]},{"name":"WHEA_ERROR_PACKET_FLAGS","features":[5]},{"name":"WHEA_ERROR_PACKET_SECTION_GUID","features":[5]},{"name":"WHEA_ERROR_PACKET_V1","features":[5,33]},{"name":"WHEA_ERROR_PACKET_V1_VERSION","features":[5]},{"name":"WHEA_ERROR_PACKET_V2","features":[5,33]},{"name":"WHEA_ERROR_PACKET_V2_VERSION","features":[5]},{"name":"WHEA_ERROR_PACKET_VERSION","features":[5]},{"name":"WHEA_ERROR_PKT_VERSION","features":[5]},{"name":"WHEA_ERROR_RECORD","features":[5]},{"name":"WHEA_ERROR_RECORD_FLAGS_DEVICE_DRIVER","features":[5]},{"name":"WHEA_ERROR_RECORD_FLAGS_PREVIOUSERROR","features":[5]},{"name":"WHEA_ERROR_RECORD_FLAGS_RECOVERED","features":[5]},{"name":"WHEA_ERROR_RECORD_FLAGS_SIMULATED","features":[5]},{"name":"WHEA_ERROR_RECORD_HEADER","features":[5]},{"name":"WHEA_ERROR_RECORD_HEADER_FLAGS","features":[5]},{"name":"WHEA_ERROR_RECORD_HEADER_VALIDBITS","features":[5]},{"name":"WHEA_ERROR_RECORD_REVISION","features":[5]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR","features":[5]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_FLAGS","features":[5]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_REVISION","features":[5]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS","features":[5]},{"name":"WHEA_ERROR_RECORD_SIGNATURE_END","features":[5]},{"name":"WHEA_ERROR_RECORD_VALID_PARTITIONID","features":[5]},{"name":"WHEA_ERROR_RECORD_VALID_PLATFORMID","features":[5]},{"name":"WHEA_ERROR_RECORD_VALID_TIMESTAMP","features":[5]},{"name":"WHEA_ERROR_RECOVERY_INFO_SECTION","features":[5,3]},{"name":"WHEA_ERROR_SEVERITY","features":[5]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION","features":[5,3]},{"name":"WHEA_ERROR_SOURCE_CORRECT","features":[5,3]},{"name":"WHEA_ERROR_SOURCE_CREATE_RECORD","features":[5,3]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE","features":[5,3]},{"name":"WHEA_ERROR_SOURCE_OVERRIDE_SETTINGS","features":[5,33]},{"name":"WHEA_ERROR_SOURCE_RECOVER","features":[5,3]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE","features":[5]},{"name":"WHEA_ERROR_STATUS","features":[5]},{"name":"WHEA_ERROR_TEXT_LEN","features":[5]},{"name":"WHEA_ERROR_TYPE","features":[5]},{"name":"WHEA_ERR_SRC_OVERRIDE_FLAG","features":[5]},{"name":"WHEA_ETW_OVERFLOW_EVENT","features":[5]},{"name":"WHEA_EVENT_LOG_ENTRY","features":[5]},{"name":"WHEA_EVENT_LOG_ENTRY_FLAGS","features":[5]},{"name":"WHEA_EVENT_LOG_ENTRY_HEADER","features":[5]},{"name":"WHEA_EVENT_LOG_ENTRY_ID","features":[5]},{"name":"WHEA_EVENT_LOG_ENTRY_TYPE","features":[5]},{"name":"WHEA_FAILED_ADD_DEFECT_LIST_EVENT","features":[5]},{"name":"WHEA_FIRMWARE_ERROR_RECORD_REFERENCE","features":[5]},{"name":"WHEA_FIRMWARE_RECORD_TYPE_IPFSAL","features":[5]},{"name":"WHEA_GENERIC_ENTRY_TEXT_LEN","features":[5]},{"name":"WHEA_GENERIC_ENTRY_V2_VERSION","features":[5]},{"name":"WHEA_GENERIC_ENTRY_VERSION","features":[5]},{"name":"WHEA_GENERIC_ERROR","features":[5]},{"name":"WHEA_GENERIC_ERROR_BLOCKSTATUS","features":[5]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V1","features":[5]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V2","features":[5]},{"name":"WHEA_INVALID_ERR_SRC_ID","features":[5]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAGS","features":[5]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_NOTIFYALL","features":[5]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PAGEOFFLINED","features":[5]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PLATFORMDIRECTED","features":[5]},{"name":"WHEA_MAX_LOG_DATA_LEN","features":[5]},{"name":"WHEA_MEMERRTYPE_INVALIDADDRESS","features":[5]},{"name":"WHEA_MEMERRTYPE_MASTERABORT","features":[5]},{"name":"WHEA_MEMERRTYPE_MEMORYSPARING","features":[5]},{"name":"WHEA_MEMERRTYPE_MIRRORBROKEN","features":[5]},{"name":"WHEA_MEMERRTYPE_MULTIBITECC","features":[5]},{"name":"WHEA_MEMERRTYPE_MULTISYMCHIPKILL","features":[5]},{"name":"WHEA_MEMERRTYPE_NOERROR","features":[5]},{"name":"WHEA_MEMERRTYPE_PARITYERROR","features":[5]},{"name":"WHEA_MEMERRTYPE_SINGLEBITECC","features":[5]},{"name":"WHEA_MEMERRTYPE_SINGLESYMCHIPKILL","features":[5]},{"name":"WHEA_MEMERRTYPE_TARGETABORT","features":[5]},{"name":"WHEA_MEMERRTYPE_UNKNOWN","features":[5]},{"name":"WHEA_MEMERRTYPE_WATCHDOGTIMEOUT","features":[5]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_DATA","features":[5]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_HEADER","features":[5]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION","features":[5]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_MEMORY_ERROR_SECTION","features":[5]},{"name":"WHEA_MEMORY_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_MEMORY_THROTTLE_SUMMARY_FAILED_EVENT","features":[5,3]},{"name":"WHEA_MSCHECK_GUID","features":[5]},{"name":"WHEA_MSR_DUMP_SECTION","features":[5]},{"name":"WHEA_NMI_ERROR_SECTION","features":[5]},{"name":"WHEA_NMI_ERROR_SECTION_FLAGS","features":[5]},{"name":"WHEA_OFFLINE_DONE_EVENT","features":[5]},{"name":"WHEA_PACKET_LOG_DATA","features":[5]},{"name":"WHEA_PCIEXPRESS_BRIDGE_CONTROL_STATUS","features":[5]},{"name":"WHEA_PCIEXPRESS_COMMAND_STATUS","features":[5]},{"name":"WHEA_PCIEXPRESS_DEVICE_ID","features":[5]},{"name":"WHEA_PCIEXPRESS_DEVICE_TYPE","features":[5]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION","features":[5]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_PCIEXPRESS_VERSION","features":[5]},{"name":"WHEA_PCIE_ADDRESS","features":[5]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES","features":[5]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES_VALIDBITS","features":[5]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION","features":[5]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_COUNT_SIZE","features":[5]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_HEADER","features":[5]},{"name":"WHEA_PCIXBUS_COMMAND","features":[5]},{"name":"WHEA_PCIXBUS_ERROR_SECTION","features":[5]},{"name":"WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_PCIXBUS_ID","features":[5]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION","features":[5]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_PCIXDEVICE_ID","features":[5]},{"name":"WHEA_PCIXDEVICE_REGISTER_PAIR","features":[5]},{"name":"WHEA_PCI_RECOVERY_SECTION","features":[5,3]},{"name":"WHEA_PCI_RECOVERY_SIGNAL","features":[5]},{"name":"WHEA_PCI_RECOVERY_STATUS","features":[5]},{"name":"WHEA_PERSISTENCE_INFO","features":[5]},{"name":"WHEA_PFA_REMOVE_TRIGGER","features":[5]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V1","features":[5]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V2","features":[5]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_VERSION","features":[5]},{"name":"WHEA_PMEM_ERROR_SECTION","features":[5]},{"name":"WHEA_PMEM_ERROR_SECTION_LOCATION_INFO_SIZE","features":[5]},{"name":"WHEA_PMEM_ERROR_SECTION_MAX_PAGES","features":[5]},{"name":"WHEA_PMEM_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_PMEM_PAGE_RANGE","features":[5]},{"name":"WHEA_PROCESSOR_FAMILY_INFO","features":[5]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION","features":[5]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_PSHED_PI_CPU_BUSES_INIT_FAILED_EVENT","features":[5,3]},{"name":"WHEA_PSHED_PI_TRACE_EVENT","features":[5]},{"name":"WHEA_PSHED_PLUGIN_CALLBACKS","features":[5,3,33]},{"name":"WHEA_PSHED_PLUGIN_DIMM_MISMATCH","features":[5]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_ERRORS","features":[5]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_FAILED_EVENT","features":[5]},{"name":"WHEA_PSHED_PLUGIN_HEARTBEAT","features":[5]},{"name":"WHEA_PSHED_PLUGIN_INIT_FAILED_EVENT","features":[5,3]},{"name":"WHEA_PSHED_PLUGIN_LOAD_EVENT","features":[5]},{"name":"WHEA_PSHED_PLUGIN_PLATFORM_SUPPORT_EVENT","features":[5,3]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V1","features":[5,3,33]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V2","features":[5,3,33]},{"name":"WHEA_PSHED_PLUGIN_UNLOAD_EVENT","features":[5]},{"name":"WHEA_RAW_DATA_FORMAT","features":[5]},{"name":"WHEA_RECORD_CREATOR_GUID","features":[5]},{"name":"WHEA_RECOVERY_ACTION","features":[5]},{"name":"WHEA_RECOVERY_CONTEXT","features":[5,3]},{"name":"WHEA_RECOVERY_CONTEXT_ERROR_TYPE","features":[5]},{"name":"WHEA_RECOVERY_FAILURE_REASON","features":[5]},{"name":"WHEA_RECOVERY_TYPE","features":[5]},{"name":"WHEA_REGISTER_KEY_NOTIFICATION_FAILED_EVENT","features":[5]},{"name":"WHEA_REPORT_HW_ERROR_DEVICE_DRIVER_FLAGS","features":[5]},{"name":"WHEA_REVISION","features":[5]},{"name":"WHEA_SEA_SECTION","features":[5,3]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_CONTAINMENTWRN","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_FRU_TEXT_BY_PLUGIN","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_LATENTERROR","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PRIMARY","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PROPAGATED","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESET","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESOURCENA","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_THRESHOLDEXCEEDED","features":[5]},{"name":"WHEA_SECTION_DESCRIPTOR_REVISION","features":[5]},{"name":"WHEA_SEI_SECTION","features":[5]},{"name":"WHEA_SEL_BUGCHECK_PROGRESS","features":[5]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_MULTIPLE_BUGCHECK_EVENT","features":[5,3]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_EVENT","features":[5,3]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_VERSION","features":[5]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE2_EVENT","features":[5,3]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_START_EVENT","features":[5]},{"name":"WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[5,3]},{"name":"WHEA_SRAR_DETAIL_EVENT","features":[5,3]},{"name":"WHEA_SRAS_TABLE_ENTRIES_EVENT","features":[5]},{"name":"WHEA_SRAS_TABLE_ERROR","features":[5]},{"name":"WHEA_SRAS_TABLE_NOT_FOUND","features":[5]},{"name":"WHEA_THROTTLE_ADD_ERR_SRC_FAILED_EVENT","features":[5]},{"name":"WHEA_THROTTLE_MEMORY_ADD_OR_REMOVE_EVENT","features":[5]},{"name":"WHEA_THROTTLE_PCIE_ADD_EVENT","features":[5,3]},{"name":"WHEA_THROTTLE_PCIE_REMOVE_EVENT","features":[5]},{"name":"WHEA_THROTTLE_REGISTRY_CORRUPT_EVENT","features":[5]},{"name":"WHEA_THROTTLE_REG_DATA_IGNORED_EVENT","features":[5]},{"name":"WHEA_THROTTLE_TYPE","features":[5]},{"name":"WHEA_TIMESTAMP","features":[5]},{"name":"WHEA_TLBCHECK_GUID","features":[5]},{"name":"WHEA_WRITE_FLAG_DUMMY","features":[5]},{"name":"WHEA_X64_REGISTER_STATE","features":[5]},{"name":"WHEA_X86_REGISTER_STATE","features":[5]},{"name":"WHEA_XPF_BUS_CHECK","features":[5]},{"name":"WHEA_XPF_CACHE_CHECK","features":[5]},{"name":"WHEA_XPF_CONTEXT_INFO","features":[5]},{"name":"WHEA_XPF_MCA_EXTREG_MAX_COUNT","features":[5]},{"name":"WHEA_XPF_MCA_SECTION","features":[5,3]},{"name":"WHEA_XPF_MCA_SECTION_VERSION","features":[5]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_2","features":[5]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_3","features":[5]},{"name":"WHEA_XPF_MS_CHECK","features":[5]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION","features":[5]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS","features":[5]},{"name":"WHEA_XPF_PROCINFO","features":[5]},{"name":"WHEA_XPF_PROCINFO_VALIDBITS","features":[5]},{"name":"WHEA_XPF_TLB_CHECK","features":[5]},{"name":"WMIREGISTER","features":[5]},{"name":"WMIREG_ACTION_BLOCK_IRPS","features":[5]},{"name":"WMIREG_ACTION_DEREGISTER","features":[5]},{"name":"WMIREG_ACTION_REGISTER","features":[5]},{"name":"WMIREG_ACTION_REREGISTER","features":[5]},{"name":"WMIREG_ACTION_UPDATE_GUIDS","features":[5]},{"name":"WMIUPDATE","features":[5]},{"name":"WMI_NOTIFICATION_CALLBACK","features":[5]},{"name":"WORKER_THREAD_ROUTINE","features":[5]},{"name":"WORK_QUEUE_TYPE","features":[5]},{"name":"WdfNotifyRoutinesClass","features":[5]},{"name":"WheaAddErrorSource","features":[5,3,33]},{"name":"WheaAddErrorSourceDeviceDriver","features":[5,3,33]},{"name":"WheaAddErrorSourceDeviceDriverV1","features":[5,3,33]},{"name":"WheaAddHwErrorReportSectionDeviceDriver","features":[5,3,33]},{"name":"WheaConfigureErrorSource","features":[5,3,33]},{"name":"WheaCpuVendorAmd","features":[5]},{"name":"WheaCpuVendorIntel","features":[5]},{"name":"WheaCpuVendorOther","features":[5]},{"name":"WheaCreateHwErrorReportDeviceDriver","features":[4,7,5,3,6,8,9,10]},{"name":"WheaDataFormatGeneric","features":[5]},{"name":"WheaDataFormatIPFSalRecord","features":[5]},{"name":"WheaDataFormatMax","features":[5]},{"name":"WheaDataFormatMemory","features":[5]},{"name":"WheaDataFormatNMIPort","features":[5]},{"name":"WheaDataFormatPCIExpress","features":[5]},{"name":"WheaDataFormatPCIXBus","features":[5]},{"name":"WheaDataFormatPCIXDevice","features":[5]},{"name":"WheaDataFormatXPFMCA","features":[5]},{"name":"WheaErrSevCorrected","features":[5]},{"name":"WheaErrSevFatal","features":[5]},{"name":"WheaErrSevInformational","features":[5]},{"name":"WheaErrSevRecoverable","features":[5]},{"name":"WheaErrTypeGeneric","features":[5]},{"name":"WheaErrTypeMemory","features":[5]},{"name":"WheaErrTypeNMI","features":[5]},{"name":"WheaErrTypePCIExpress","features":[5]},{"name":"WheaErrTypePCIXBus","features":[5]},{"name":"WheaErrTypePCIXDevice","features":[5]},{"name":"WheaErrTypePmem","features":[5]},{"name":"WheaErrTypeProcessor","features":[5]},{"name":"WheaErrorSourceGetState","features":[5,33]},{"name":"WheaEventBugCheckRecoveryEntry","features":[5]},{"name":"WheaEventBugCheckRecoveryMax","features":[5]},{"name":"WheaEventBugCheckRecoveryReturn","features":[5]},{"name":"WheaEventLogAzccRootBusList","features":[5]},{"name":"WheaEventLogAzccRootBusPoisonSet","features":[5]},{"name":"WheaEventLogAzccRootBusSearchErr","features":[5]},{"name":"WheaEventLogCmciFinalRestart","features":[5]},{"name":"WheaEventLogCmciRestart","features":[5]},{"name":"WheaEventLogEntryEarlyError","features":[5]},{"name":"WheaEventLogEntryEtwOverFlow","features":[5]},{"name":"WheaEventLogEntryIdAcpiTimeOut","features":[5]},{"name":"WheaEventLogEntryIdAddRemoveErrorSource","features":[5]},{"name":"WheaEventLogEntryIdAerNotGrantedToOs","features":[5]},{"name":"WheaEventLogEntryIdAttemptErrorRecovery","features":[5]},{"name":"WheaEventLogEntryIdBadHestNotifyData","features":[5]},{"name":"WheaEventLogEntryIdBadPageLimitReached","features":[5]},{"name":"WheaEventLogEntryIdClearedPoison","features":[5]},{"name":"WheaEventLogEntryIdCmcPollingTimeout","features":[5]},{"name":"WheaEventLogEntryIdCmcSwitchToPolling","features":[5]},{"name":"WheaEventLogEntryIdCmciImplPresent","features":[5]},{"name":"WheaEventLogEntryIdCmciInitError","features":[5]},{"name":"WheaEventLogEntryIdCpuBusesInitFailed","features":[5]},{"name":"WheaEventLogEntryIdCpusFrozen","features":[5]},{"name":"WheaEventLogEntryIdCpusFrozenNoCrashDump","features":[5]},{"name":"WheaEventLogEntryIdCreateGenericRecord","features":[5]},{"name":"WheaEventLogEntryIdDefectListCorrupt","features":[5]},{"name":"WheaEventLogEntryIdDefectListFull","features":[5]},{"name":"WheaEventLogEntryIdDefectListUEFIVarFailed","features":[5]},{"name":"WheaEventLogEntryIdDeviceDriver","features":[5]},{"name":"WheaEventLogEntryIdDroppedCorrectedError","features":[5]},{"name":"WheaEventLogEntryIdDrvErrSrcInvalid","features":[5]},{"name":"WheaEventLogEntryIdDrvHandleBusy","features":[5]},{"name":"WheaEventLogEntryIdEnableKeyNotifFailed","features":[5]},{"name":"WheaEventLogEntryIdErrDimmInfoMismatch","features":[5]},{"name":"WheaEventLogEntryIdErrSrcArrayInvalid","features":[5]},{"name":"WheaEventLogEntryIdErrSrcInvalid","features":[5]},{"name":"WheaEventLogEntryIdErrorRecord","features":[5]},{"name":"WheaEventLogEntryIdErrorRecordLimit","features":[5]},{"name":"WheaEventLogEntryIdFailedAddToDefectList","features":[5]},{"name":"WheaEventLogEntryIdGenericErrMemMap","features":[5]},{"name":"WheaEventLogEntryIdKeyNotificationFailed","features":[5]},{"name":"WheaEventLogEntryIdMcaErrorCleared","features":[5]},{"name":"WheaEventLogEntryIdMcaFoundErrorInBank","features":[5]},{"name":"WheaEventLogEntryIdMcaStuckErrorCheck","features":[5]},{"name":"WheaEventLogEntryIdMemoryAddDevice","features":[5]},{"name":"WheaEventLogEntryIdMemoryRemoveDevice","features":[5]},{"name":"WheaEventLogEntryIdMemorySummaryFailed","features":[5]},{"name":"WheaEventLogEntryIdOscCapabilities","features":[5]},{"name":"WheaEventLogEntryIdPFAMemoryOfflined","features":[5]},{"name":"WheaEventLogEntryIdPFAMemoryPolicy","features":[5]},{"name":"WheaEventLogEntryIdPFAMemoryRemoveMonitor","features":[5]},{"name":"WheaEventLogEntryIdPcieAddDevice","features":[5]},{"name":"WheaEventLogEntryIdPcieConfigInfo","features":[5]},{"name":"WheaEventLogEntryIdPcieDpcError","features":[5]},{"name":"WheaEventLogEntryIdPcieOverrideInfo","features":[5]},{"name":"WheaEventLogEntryIdPcieRemoveDevice","features":[5]},{"name":"WheaEventLogEntryIdPcieSpuriousErrSource","features":[5]},{"name":"WheaEventLogEntryIdPcieSummaryFailed","features":[5]},{"name":"WheaEventLogEntryIdProcessEINJ","features":[5]},{"name":"WheaEventLogEntryIdProcessHEST","features":[5]},{"name":"WheaEventLogEntryIdPshedCallbackCollision","features":[5]},{"name":"WheaEventLogEntryIdPshedInjectError","features":[5]},{"name":"WheaEventLogEntryIdPshedPiTraceLog","features":[5]},{"name":"WheaEventLogEntryIdPshedPluginInitFailed","features":[5]},{"name":"WheaEventLogEntryIdPshedPluginLoad","features":[5]},{"name":"WheaEventLogEntryIdPshedPluginRegister","features":[5]},{"name":"WheaEventLogEntryIdPshedPluginSupported","features":[5]},{"name":"WheaEventLogEntryIdPshedPluginUnload","features":[5]},{"name":"WheaEventLogEntryIdReadPcieOverridesErr","features":[5]},{"name":"WheaEventLogEntryIdRowFailure","features":[5]},{"name":"WheaEventLogEntryIdSELBugCheckInfo","features":[5]},{"name":"WheaEventLogEntryIdSELBugCheckProgress","features":[5]},{"name":"WheaEventLogEntryIdSELBugCheckRecovery","features":[5]},{"name":"WheaEventLogEntryIdSrasTableEntries","features":[5]},{"name":"WheaEventLogEntryIdSrasTableError","features":[5]},{"name":"WheaEventLogEntryIdSrasTableNotFound","features":[5]},{"name":"WheaEventLogEntryIdStartedReportHwError","features":[5]},{"name":"WheaEventLogEntryIdThrottleAddErrSrcFailed","features":[5]},{"name":"WheaEventLogEntryIdThrottleRegCorrupt","features":[5]},{"name":"WheaEventLogEntryIdThrottleRegDataIgnored","features":[5]},{"name":"WheaEventLogEntryIdWheaHeartbeat","features":[5]},{"name":"WheaEventLogEntryIdWheaInit","features":[5]},{"name":"WheaEventLogEntryIdWorkQueueItem","features":[5]},{"name":"WheaEventLogEntryIdeDpcEnabled","features":[5]},{"name":"WheaEventLogEntryPageOfflineDone","features":[5]},{"name":"WheaEventLogEntryPageOfflinePendMax","features":[5]},{"name":"WheaEventLogEntrySrarDetail","features":[5]},{"name":"WheaEventLogEntryTypeError","features":[5]},{"name":"WheaEventLogEntryTypeInformational","features":[5]},{"name":"WheaEventLogEntryTypeWarning","features":[5]},{"name":"WheaGetNotifyAllOfflinesPolicy","features":[5,3]},{"name":"WheaHighIrqlLogSelEventHandlerRegister","features":[5,3,33]},{"name":"WheaHighIrqlLogSelEventHandlerUnregister","features":[5]},{"name":"WheaHwErrorReportAbandonDeviceDriver","features":[5,3]},{"name":"WheaHwErrorReportSetSectionNameDeviceDriver","features":[5,3,33]},{"name":"WheaHwErrorReportSetSeverityDeviceDriver","features":[5,3]},{"name":"WheaHwErrorReportSubmitDeviceDriver","features":[5,3]},{"name":"WheaInitializeRecordHeader","features":[5,3]},{"name":"WheaIsCriticalState","features":[5,3]},{"name":"WheaLogInternalEvent","features":[5]},{"name":"WheaMemoryThrottle","features":[5]},{"name":"WheaPciExpressDownstreamSwitchPort","features":[5]},{"name":"WheaPciExpressEndpoint","features":[5]},{"name":"WheaPciExpressLegacyEndpoint","features":[5]},{"name":"WheaPciExpressRootComplexEventCollector","features":[5]},{"name":"WheaPciExpressRootComplexIntegratedEndpoint","features":[5]},{"name":"WheaPciExpressRootPort","features":[5]},{"name":"WheaPciExpressToPciXBridge","features":[5]},{"name":"WheaPciExpressUpstreamSwitchPort","features":[5]},{"name":"WheaPciREcoveryStatusUnknown","features":[5]},{"name":"WheaPciRecoverySignalAer","features":[5]},{"name":"WheaPciRecoverySignalDpc","features":[5]},{"name":"WheaPciRecoverySignalUnknown","features":[5]},{"name":"WheaPciRecoveryStatusBusNotFound","features":[5]},{"name":"WheaPciRecoveryStatusComplexTree","features":[5]},{"name":"WheaPciRecoveryStatusLinkDisableTimeout","features":[5]},{"name":"WheaPciRecoveryStatusLinkEnableTimeout","features":[5]},{"name":"WheaPciRecoveryStatusNoError","features":[5]},{"name":"WheaPciRecoveryStatusRpBusyTimeout","features":[5]},{"name":"WheaPciXToExpressBridge","features":[5]},{"name":"WheaPcieThrottle","features":[5]},{"name":"WheaPfaRemoveCapacity","features":[5]},{"name":"WheaPfaRemoveErrorThreshold","features":[5]},{"name":"WheaPfaRemoveTimeout","features":[5]},{"name":"WheaRawDataFormatAMD64MCA","features":[5]},{"name":"WheaRawDataFormatGeneric","features":[5]},{"name":"WheaRawDataFormatIA32MCA","features":[5]},{"name":"WheaRawDataFormatIPFSalRecord","features":[5]},{"name":"WheaRawDataFormatIntel64MCA","features":[5]},{"name":"WheaRawDataFormatMax","features":[5]},{"name":"WheaRawDataFormatMemory","features":[5]},{"name":"WheaRawDataFormatNMIPort","features":[5]},{"name":"WheaRawDataFormatPCIExpress","features":[5]},{"name":"WheaRawDataFormatPCIXBus","features":[5]},{"name":"WheaRawDataFormatPCIXDevice","features":[5]},{"name":"WheaRecoveryContextErrorTypeMax","features":[5]},{"name":"WheaRecoveryContextErrorTypeMemory","features":[5]},{"name":"WheaRecoveryContextErrorTypePmem","features":[5]},{"name":"WheaRecoveryFailureReasonFarNotValid","features":[5]},{"name":"WheaRecoveryFailureReasonHighIrql","features":[5]},{"name":"WheaRecoveryFailureReasonInsufficientAltContextWrappers","features":[5]},{"name":"WheaRecoveryFailureReasonInterruptsDisabled","features":[5]},{"name":"WheaRecoveryFailureReasonInvalidAddressMode","features":[5]},{"name":"WheaRecoveryFailureReasonKernelCouldNotMarkMemoryBad","features":[5]},{"name":"WheaRecoveryFailureReasonKernelMarkMemoryBadTimedOut","features":[5]},{"name":"WheaRecoveryFailureReasonKernelWillPageFaultBCAtCurrentIrql","features":[5]},{"name":"WheaRecoveryFailureReasonMax","features":[5]},{"name":"WheaRecoveryFailureReasonMiscOrAddrNotValid","features":[5]},{"name":"WheaRecoveryFailureReasonNoRecoveryContext","features":[5]},{"name":"WheaRecoveryFailureReasonNotContinuable","features":[5]},{"name":"WheaRecoveryFailureReasonNotSupported","features":[5]},{"name":"WheaRecoveryFailureReasonOverflow","features":[5]},{"name":"WheaRecoveryFailureReasonPcc","features":[5]},{"name":"WheaRecoveryFailureReasonStackOverflow","features":[5]},{"name":"WheaRecoveryFailureReasonSwapBusy","features":[5]},{"name":"WheaRecoveryFailureReasonUnexpectedFailure","features":[5]},{"name":"WheaRecoveryTypeActionOptional","features":[5]},{"name":"WheaRecoveryTypeActionRequired","features":[5]},{"name":"WheaRecoveryTypeMax","features":[5]},{"name":"WheaRegisterInUsePageOfflineNotification","features":[5,3]},{"name":"WheaRemoveErrorSource","features":[5]},{"name":"WheaRemoveErrorSourceDeviceDriver","features":[5,3]},{"name":"WheaReportHwError","features":[5,3,33]},{"name":"WheaReportHwErrorDeviceDriver","features":[4,7,5,3,6,8,9,10]},{"name":"WheaUnconfigureErrorSource","features":[5,3,33]},{"name":"WheaUnregisterInUsePageOfflineNotification","features":[5,3]},{"name":"WheapDpcErrBusNotFound","features":[5]},{"name":"WheapDpcErrDeviceIdBad","features":[5]},{"name":"WheapDpcErrDpcedSubtree","features":[5]},{"name":"WheapDpcErrNoChildren","features":[5]},{"name":"WheapDpcErrNoErr","features":[5]},{"name":"WheapDpcErrResetFailed","features":[5]},{"name":"WheapPfaOfflinePredictiveFailure","features":[5]},{"name":"WheapPfaOfflineUncorrectedError","features":[5]},{"name":"Width16Bits","features":[5]},{"name":"Width32Bits","features":[5]},{"name":"Width64Bits","features":[5]},{"name":"Width8Bits","features":[5]},{"name":"WidthNoWrap","features":[5]},{"name":"WmiQueryTraceInformation","features":[5,3]},{"name":"WormController","features":[5]},{"name":"WrAlertByThreadId","features":[5]},{"name":"WrCalloutStack","features":[5]},{"name":"WrCpuRateControl","features":[5]},{"name":"WrDeferredPreempt","features":[5]},{"name":"WrDelayExecution","features":[5]},{"name":"WrDispatchInt","features":[5]},{"name":"WrExecutive","features":[5]},{"name":"WrFastMutex","features":[5]},{"name":"WrFreePage","features":[5]},{"name":"WrGuardedMutex","features":[5]},{"name":"WrIoRing","features":[5]},{"name":"WrKernel","features":[5]},{"name":"WrKeyedEvent","features":[5]},{"name":"WrLpcReceive","features":[5]},{"name":"WrLpcReply","features":[5]},{"name":"WrMdlCache","features":[5]},{"name":"WrMutex","features":[5]},{"name":"WrPageIn","features":[5]},{"name":"WrPageOut","features":[5]},{"name":"WrPhysicalFault","features":[5]},{"name":"WrPoolAllocation","features":[5]},{"name":"WrPreempted","features":[5]},{"name":"WrProcessInSwap","features":[5]},{"name":"WrPushLock","features":[5]},{"name":"WrQuantumEnd","features":[5]},{"name":"WrQueue","features":[5]},{"name":"WrRendezvous","features":[5]},{"name":"WrResource","features":[5]},{"name":"WrRundown","features":[5]},{"name":"WrSpare0","features":[5]},{"name":"WrSuspended","features":[5]},{"name":"WrTerminated","features":[5]},{"name":"WrUserRequest","features":[5]},{"name":"WrVirtualMemory","features":[5]},{"name":"WrYieldExecution","features":[5]},{"name":"WriteAccess","features":[5]},{"name":"XPF_BUS_CHECK_ADDRESS_IO","features":[5]},{"name":"XPF_BUS_CHECK_ADDRESS_MEMORY","features":[5]},{"name":"XPF_BUS_CHECK_ADDRESS_OTHER","features":[5]},{"name":"XPF_BUS_CHECK_ADDRESS_RESERVED","features":[5]},{"name":"XPF_BUS_CHECK_OPERATION_DATAREAD","features":[5]},{"name":"XPF_BUS_CHECK_OPERATION_DATAWRITE","features":[5]},{"name":"XPF_BUS_CHECK_OPERATION_GENERIC","features":[5]},{"name":"XPF_BUS_CHECK_OPERATION_GENREAD","features":[5]},{"name":"XPF_BUS_CHECK_OPERATION_GENWRITE","features":[5]},{"name":"XPF_BUS_CHECK_OPERATION_INSTRUCTIONFETCH","features":[5]},{"name":"XPF_BUS_CHECK_OPERATION_PREFETCH","features":[5]},{"name":"XPF_BUS_CHECK_PARTICIPATION_GENERIC","features":[5]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCOBSERVED","features":[5]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCORIGINATED","features":[5]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCRESPONDED","features":[5]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[5]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_GENERIC","features":[5]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAREAD","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAWRITE","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_EVICTION","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_GENERIC","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_GENREAD","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_GENWRITE","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_INSTRUCTIONFETCH","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_PREFETCH","features":[5]},{"name":"XPF_CACHE_CHECK_OPERATION_SNOOP","features":[5]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[5]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_GENERIC","features":[5]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[5]},{"name":"XPF_CONTEXT_INFO_32BITCONTEXT","features":[5]},{"name":"XPF_CONTEXT_INFO_32BITDEBUGREGS","features":[5]},{"name":"XPF_CONTEXT_INFO_64BITCONTEXT","features":[5]},{"name":"XPF_CONTEXT_INFO_64BITDEBUGREGS","features":[5]},{"name":"XPF_CONTEXT_INFO_FXSAVE","features":[5]},{"name":"XPF_CONTEXT_INFO_MMREGISTERS","features":[5]},{"name":"XPF_CONTEXT_INFO_MSRREGISTERS","features":[5]},{"name":"XPF_CONTEXT_INFO_UNCLASSIFIEDDATA","features":[5]},{"name":"XPF_MCA_SECTION_GUID","features":[5]},{"name":"XPF_MS_CHECK_ERRORTYPE_EXTERNAL","features":[5]},{"name":"XPF_MS_CHECK_ERRORTYPE_FRC","features":[5]},{"name":"XPF_MS_CHECK_ERRORTYPE_INTERNALUNCLASSIFIED","features":[5]},{"name":"XPF_MS_CHECK_ERRORTYPE_MCROMPARITY","features":[5]},{"name":"XPF_MS_CHECK_ERRORTYPE_NOERROR","features":[5]},{"name":"XPF_MS_CHECK_ERRORTYPE_UNCLASSIFIED","features":[5]},{"name":"XPF_PROCESSOR_ERROR_SECTION_GUID","features":[5]},{"name":"XPF_RECOVERY_INFO","features":[5,3]},{"name":"XPF_TLB_CHECK_OPERATION_DATAREAD","features":[5]},{"name":"XPF_TLB_CHECK_OPERATION_DATAWRITE","features":[5]},{"name":"XPF_TLB_CHECK_OPERATION_GENERIC","features":[5]},{"name":"XPF_TLB_CHECK_OPERATION_GENREAD","features":[5]},{"name":"XPF_TLB_CHECK_OPERATION_GENWRITE","features":[5]},{"name":"XPF_TLB_CHECK_OPERATION_INSTRUCTIONFETCH","features":[5]},{"name":"XPF_TLB_CHECK_OPERATION_PREFETCH","features":[5]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[5]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_GENERIC","features":[5]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[5]},{"name":"XSAVE_FORMAT","features":[5,33]},{"name":"XSTATE_CONTEXT","features":[5,33]},{"name":"XSTATE_SAVE","features":[5,33]},{"name":"ZONE_HEADER","features":[5,9]},{"name":"ZONE_SEGMENT_HEADER","features":[5,9]},{"name":"ZwAllocateLocallyUniqueId","features":[5,3]},{"name":"ZwClose","features":[5,3]},{"name":"ZwCommitComplete","features":[5,3]},{"name":"ZwCommitEnlistment","features":[5,3]},{"name":"ZwCommitTransaction","features":[5,3]},{"name":"ZwCreateEnlistment","features":[4,5,3]},{"name":"ZwCreateFile","features":[4,5,3,8]},{"name":"ZwCreateResourceManager","features":[4,5,3]},{"name":"ZwCreateSection","features":[4,5,3]},{"name":"ZwCreateTransaction","features":[4,5,3]},{"name":"ZwCreateTransactionManager","features":[4,5,3]},{"name":"ZwDeviceIoControlFile","features":[5,3,8]},{"name":"ZwDisplayString","features":[5,3]},{"name":"ZwEnumerateTransactionObject","features":[5,3,38]},{"name":"ZwGetNotificationResourceManager","features":[5,3,23]},{"name":"ZwLoadDriver","features":[5,3]},{"name":"ZwMakeTemporaryObject","features":[5,3]},{"name":"ZwManagePartition","features":[5,3]},{"name":"ZwOpenEnlistment","features":[4,5,3]},{"name":"ZwOpenFile","features":[4,5,3,8]},{"name":"ZwOpenResourceManager","features":[4,5,3]},{"name":"ZwOpenSymbolicLinkObject","features":[4,5,3]},{"name":"ZwOpenTransaction","features":[4,5,3]},{"name":"ZwOpenTransactionManager","features":[4,5,3]},{"name":"ZwPowerInformation","features":[5,3,10]},{"name":"ZwPrePrepareComplete","features":[5,3]},{"name":"ZwPrePrepareEnlistment","features":[5,3]},{"name":"ZwPrepareComplete","features":[5,3]},{"name":"ZwPrepareEnlistment","features":[5,3]},{"name":"ZwPropagationComplete","features":[5,3]},{"name":"ZwPropagationFailed","features":[5,3]},{"name":"ZwQueryInformationByName","features":[4,7,5,3,8]},{"name":"ZwQueryInformationEnlistment","features":[5,3,38]},{"name":"ZwQueryInformationFile","features":[7,5,3,8]},{"name":"ZwQueryInformationResourceManager","features":[5,3,38]},{"name":"ZwQueryInformationTransaction","features":[5,3,38]},{"name":"ZwQueryInformationTransactionManager","features":[5,3,38]},{"name":"ZwQuerySymbolicLinkObject","features":[5,3]},{"name":"ZwReadFile","features":[5,3,8]},{"name":"ZwReadOnlyEnlistment","features":[5,3]},{"name":"ZwRecoverEnlistment","features":[5,3]},{"name":"ZwRecoverResourceManager","features":[5,3]},{"name":"ZwRecoverTransactionManager","features":[5,3]},{"name":"ZwRegisterProtocolAddressInformation","features":[5,3]},{"name":"ZwRenameTransactionManager","features":[5,3]},{"name":"ZwRollbackComplete","features":[5,3]},{"name":"ZwRollbackEnlistment","features":[5,3]},{"name":"ZwRollbackTransaction","features":[5,3]},{"name":"ZwRollforwardTransactionManager","features":[5,3]},{"name":"ZwSetInformationEnlistment","features":[5,3,38]},{"name":"ZwSetInformationFile","features":[7,5,3,8]},{"name":"ZwSetInformationResourceManager","features":[5,3,38]},{"name":"ZwSetInformationTransaction","features":[5,3,38]},{"name":"ZwSetInformationTransactionManager","features":[5,3,38]},{"name":"ZwSinglePhaseReject","features":[5,3]},{"name":"ZwUnloadDriver","features":[5,3]},{"name":"ZwWriteFile","features":[5,3,8]},{"name":"_EXT_SET_PARAMETERS_V0","features":[5]},{"name":"_STRSAFE_USE_SECURE_CRT","features":[5]},{"name":"_WHEA_ERROR_SOURCE_CORRECT","features":[5,3,33]},{"name":"_WHEA_ERROR_SOURCE_CREATE_RECORD","features":[5,3,33]},{"name":"_WHEA_ERROR_SOURCE_INITIALIZE","features":[5,3,33]},{"name":"_WHEA_ERROR_SOURCE_RECOVER","features":[5,3]},{"name":"_WHEA_ERROR_SOURCE_UNINITIALIZE","features":[5]},{"name":"_WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[5,3]},{"name":"__guid_type","features":[5]},{"name":"__multiString_type","features":[5]},{"name":"__string_type","features":[5]},{"name":"pHalAssignSlotResources","features":[4,7,5,3,6,8,9,10]},{"name":"pHalEndMirroring","features":[5,3]},{"name":"pHalEndOfBoot","features":[5]},{"name":"pHalExamineMBR","features":[4,7,5,3,6,8,9,10]},{"name":"pHalFindBusAddressTranslation","features":[5,3]},{"name":"pHalGetAcpiTable","features":[5]},{"name":"pHalGetDmaAdapter","features":[4,7,5,3,6,8,9,10]},{"name":"pHalGetInterruptTranslator","features":[4,7,5,3,6,8,9,10]},{"name":"pHalGetPrmCache","features":[5,9]},{"name":"pHalHaltSystem","features":[5]},{"name":"pHalHandlerForBus","features":[4,5]},{"name":"pHalInitPnpDriver","features":[5,3]},{"name":"pHalInitPowerManagement","features":[5,3]},{"name":"pHalIoReadPartitionTable","features":[4,7,5,3,6,8,24,9,10]},{"name":"pHalIoSetPartitionInformation","features":[4,7,5,3,6,8,9,10]},{"name":"pHalIoWritePartitionTable","features":[4,7,5,3,6,8,24,9,10]},{"name":"pHalMirrorPhysicalMemory","features":[5,3]},{"name":"pHalMirrorVerify","features":[5,3]},{"name":"pHalQueryBusSlots","features":[4,5,3]},{"name":"pHalQuerySystemInformation","features":[5,3]},{"name":"pHalReferenceBusHandler","features":[4,5]},{"name":"pHalResetDisplay","features":[5,3]},{"name":"pHalSetPciErrorHandlerCallback","features":[5]},{"name":"pHalSetSystemInformation","features":[5,3]},{"name":"pHalStartMirroring","features":[5,3]},{"name":"pHalTranslateBusAddress","features":[5,3]},{"name":"pHalVectorToIDTEntry","features":[5]},{"name":"pKdCheckPowerButton","features":[5]},{"name":"pKdEnumerateDebuggingDevices","features":[5,3]},{"name":"pKdGetAcpiTablePhase0","features":[5]},{"name":"pKdGetPciDataByOffset","features":[5]},{"name":"pKdMapPhysicalMemory64","features":[5,3]},{"name":"pKdReleaseIntegratedDeviceForDebugging","features":[5,3]},{"name":"pKdReleasePciDeviceForDebugging","features":[5,3]},{"name":"pKdSetPciDataByOffset","features":[5]},{"name":"pKdSetupIntegratedDeviceForDebugging","features":[5,3]},{"name":"pKdSetupPciDeviceForDebugging","features":[5,3]},{"name":"pKdUnmapVirtualAddress","features":[5,3]},{"name":"vDbgPrintEx","features":[5]},{"name":"vDbgPrintExWithPrefix","features":[5]}],"353":[{"name":"MaxProcessInfoClass","features":[40]},{"name":"MaxThreadInfoClass","features":[40]},{"name":"MaxTimerInfoClass","features":[40]},{"name":"NtCancelTimer","features":[40,3]},{"name":"NtCreateTimer","features":[4,40,3,9]},{"name":"NtOpenEvent","features":[4,40,3]},{"name":"NtOpenProcess","features":[4,40,3,37]},{"name":"NtOpenTimer","features":[4,40,3]},{"name":"NtQueryInformationProcess","features":[40,3]},{"name":"NtQueryInformationThread","features":[40,3]},{"name":"NtSetInformationThread","features":[40,3]},{"name":"NtSetTimer","features":[5,40,3]},{"name":"NtSetTimerEx","features":[40,3]},{"name":"NtTerminateProcess","features":[40,3]},{"name":"NtWaitForSingleObject","features":[40,3]},{"name":"PROCESSINFOCLASS","features":[40]},{"name":"ProcessAccessToken","features":[40]},{"name":"ProcessAffinityMask","features":[40]},{"name":"ProcessAffinityUpdateMode","features":[40]},{"name":"ProcessBasePriority","features":[40]},{"name":"ProcessBasicInformation","features":[40]},{"name":"ProcessBreakOnTermination","features":[40]},{"name":"ProcessCheckStackExtentsMode","features":[40]},{"name":"ProcessCommandLineInformation","features":[40]},{"name":"ProcessCommitReleaseInformation","features":[40]},{"name":"ProcessCookie","features":[40]},{"name":"ProcessCycleTime","features":[40]},{"name":"ProcessDebugFlags","features":[40]},{"name":"ProcessDebugObjectHandle","features":[40]},{"name":"ProcessDebugPort","features":[40]},{"name":"ProcessDefaultHardErrorMode","features":[40]},{"name":"ProcessDeviceMap","features":[40]},{"name":"ProcessDynamicFunctionTableInformation","features":[40]},{"name":"ProcessEnableAlignmentFaultFixup","features":[40]},{"name":"ProcessEnergyTrackingState","features":[40]},{"name":"ProcessExceptionPort","features":[40]},{"name":"ProcessExecuteFlags","features":[40]},{"name":"ProcessFaultInformation","features":[40]},{"name":"ProcessForegroundInformation","features":[40]},{"name":"ProcessGroupInformation","features":[40]},{"name":"ProcessHandleCheckingMode","features":[40]},{"name":"ProcessHandleCount","features":[40]},{"name":"ProcessHandleInformation","features":[40]},{"name":"ProcessHandleTable","features":[40]},{"name":"ProcessHandleTracing","features":[40]},{"name":"ProcessImageFileMapping","features":[40]},{"name":"ProcessImageFileName","features":[40]},{"name":"ProcessImageFileNameWin32","features":[40]},{"name":"ProcessImageInformation","features":[40]},{"name":"ProcessInPrivate","features":[40]},{"name":"ProcessInstrumentationCallback","features":[40]},{"name":"ProcessIoCounters","features":[40]},{"name":"ProcessIoPortHandlers","features":[40]},{"name":"ProcessIoPriority","features":[40]},{"name":"ProcessKeepAliveCount","features":[40]},{"name":"ProcessLUIDDeviceMapsEnabled","features":[40]},{"name":"ProcessLdtInformation","features":[40]},{"name":"ProcessLdtSize","features":[40]},{"name":"ProcessMemoryAllocationMode","features":[40]},{"name":"ProcessMemoryExhaustion","features":[40]},{"name":"ProcessMitigationPolicy","features":[40]},{"name":"ProcessOwnerInformation","features":[40]},{"name":"ProcessPagePriority","features":[40]},{"name":"ProcessPooledUsageAndLimits","features":[40]},{"name":"ProcessPriorityBoost","features":[40]},{"name":"ProcessPriorityClass","features":[40]},{"name":"ProcessProtectionInformation","features":[40]},{"name":"ProcessQuotaLimits","features":[40]},{"name":"ProcessRaisePriority","features":[40]},{"name":"ProcessRaiseUMExceptionOnInvalidHandleClose","features":[40]},{"name":"ProcessReserved1Information","features":[40]},{"name":"ProcessReserved2Information","features":[40]},{"name":"ProcessRevokeFileHandles","features":[40]},{"name":"ProcessSessionInformation","features":[40]},{"name":"ProcessSubsystemInformation","features":[40]},{"name":"ProcessSubsystemProcess","features":[40]},{"name":"ProcessTelemetryIdInformation","features":[40]},{"name":"ProcessThreadStackAllocation","features":[40]},{"name":"ProcessTimes","features":[40]},{"name":"ProcessTlsInformation","features":[40]},{"name":"ProcessTokenVirtualizationEnabled","features":[40]},{"name":"ProcessUserModeIOPL","features":[40]},{"name":"ProcessVmCounters","features":[40]},{"name":"ProcessWin32kSyscallFilterInformation","features":[40]},{"name":"ProcessWindowInformation","features":[40]},{"name":"ProcessWorkingSetControl","features":[40]},{"name":"ProcessWorkingSetWatch","features":[40]},{"name":"ProcessWorkingSetWatchEx","features":[40]},{"name":"ProcessWow64Information","features":[40]},{"name":"ProcessWx86Information","features":[40]},{"name":"THREADINFOCLASS","features":[40]},{"name":"TIMER_SET_INFORMATION_CLASS","features":[40]},{"name":"ThreadActualBasePriority","features":[40]},{"name":"ThreadActualGroupAffinity","features":[40]},{"name":"ThreadAffinityMask","features":[40]},{"name":"ThreadAmILastThread","features":[40]},{"name":"ThreadBasePriority","features":[40]},{"name":"ThreadBasicInformation","features":[40]},{"name":"ThreadBreakOnTermination","features":[40]},{"name":"ThreadCSwitchMon","features":[40]},{"name":"ThreadCSwitchPmu","features":[40]},{"name":"ThreadCounterProfiling","features":[40]},{"name":"ThreadCpuAccountingInformation","features":[40]},{"name":"ThreadCycleTime","features":[40]},{"name":"ThreadDescriptorTableEntry","features":[40]},{"name":"ThreadDynamicCodePolicyInfo","features":[40]},{"name":"ThreadEnableAlignmentFaultFixup","features":[40]},{"name":"ThreadEventPair_Reusable","features":[40]},{"name":"ThreadGroupInformation","features":[40]},{"name":"ThreadHideFromDebugger","features":[40]},{"name":"ThreadIdealProcessor","features":[40]},{"name":"ThreadIdealProcessorEx","features":[40]},{"name":"ThreadImpersonationToken","features":[40]},{"name":"ThreadIoPriority","features":[40]},{"name":"ThreadIsIoPending","features":[40]},{"name":"ThreadIsTerminated","features":[40]},{"name":"ThreadLastSystemCall","features":[40]},{"name":"ThreadNameInformation","features":[40]},{"name":"ThreadPagePriority","features":[40]},{"name":"ThreadPerformanceCount","features":[40]},{"name":"ThreadPriority","features":[40]},{"name":"ThreadPriorityBoost","features":[40]},{"name":"ThreadQuerySetWin32StartAddress","features":[40]},{"name":"ThreadSetTlsArrayAddress","features":[40]},{"name":"ThreadSubsystemInformation","features":[40]},{"name":"ThreadSuspendCount","features":[40]},{"name":"ThreadSwitchLegacyState","features":[40]},{"name":"ThreadTebInformation","features":[40]},{"name":"ThreadTimes","features":[40]},{"name":"ThreadUmsInformation","features":[40]},{"name":"ThreadWow64Context","features":[40]},{"name":"ThreadZeroTlsCell","features":[40]},{"name":"TimerSetCoalescableTimer","features":[40]},{"name":"ZwCancelTimer","features":[40,3]},{"name":"ZwCreateTimer","features":[4,40,3,9]},{"name":"ZwOpenEvent","features":[4,40,3]},{"name":"ZwOpenProcess","features":[4,40,3,37]},{"name":"ZwOpenTimer","features":[4,40,3]},{"name":"ZwQueryInformationProcess","features":[40,3]},{"name":"ZwQueryInformationThread","features":[40,3]},{"name":"ZwSetInformationThread","features":[40,3]},{"name":"ZwSetTimer","features":[5,40,3]},{"name":"ZwSetTimerEx","features":[40,3]},{"name":"ZwTerminateProcess","features":[40,3]},{"name":"ZwWaitForSingleObject","features":[40,3]}],"365":[{"name":"CLSID_IITCmdInt","features":[41]},{"name":"CLSID_IITDatabase","features":[41]},{"name":"CLSID_IITDatabaseLocal","features":[41]},{"name":"CLSID_IITGroupUpdate","features":[41]},{"name":"CLSID_IITIndexBuild","features":[41]},{"name":"CLSID_IITPropList","features":[41]},{"name":"CLSID_IITResultSet","features":[41]},{"name":"CLSID_IITSvMgr","features":[41]},{"name":"CLSID_IITWWFilterBuild","features":[41]},{"name":"CLSID_IITWordWheel","features":[41]},{"name":"CLSID_IITWordWheelLocal","features":[41]},{"name":"CLSID_IITWordWheelUpdate","features":[41]},{"name":"CLSID_ITEngStemmer","features":[41]},{"name":"CLSID_ITStdBreaker","features":[41]},{"name":"COLUMNSTATUS","features":[41]},{"name":"CProperty","features":[41,3]},{"name":"E_ALL_WILD","features":[41]},{"name":"E_ALREADYINIT","features":[41]},{"name":"E_ALREADYOPEN","features":[41]},{"name":"E_ASSERT","features":[41]},{"name":"E_BADBREAKER","features":[41]},{"name":"E_BADFILE","features":[41]},{"name":"E_BADFILTERSIZE","features":[41]},{"name":"E_BADFORMAT","features":[41]},{"name":"E_BADINDEXFLAGS","features":[41]},{"name":"E_BADPARAM","features":[41]},{"name":"E_BADRANGEOP","features":[41]},{"name":"E_BADVALUE","features":[41]},{"name":"E_BADVERSION","features":[41]},{"name":"E_CANTFINDDLL","features":[41]},{"name":"E_DISKFULL","features":[41]},{"name":"E_DUPLICATE","features":[41]},{"name":"E_EXPECTEDTERM","features":[41]},{"name":"E_FILECLOSE","features":[41]},{"name":"E_FILECREATE","features":[41]},{"name":"E_FILEDELETE","features":[41]},{"name":"E_FILEINVALID","features":[41]},{"name":"E_FILENOTFOUND","features":[41]},{"name":"E_FILEREAD","features":[41]},{"name":"E_FILESEEK","features":[41]},{"name":"E_FILEWRITE","features":[41]},{"name":"E_GETLASTERROR","features":[41]},{"name":"E_GROUPIDTOOBIG","features":[41]},{"name":"E_INTERRUPT","features":[41]},{"name":"E_INVALIDSTATE","features":[41]},{"name":"E_MISSINGPROP","features":[41]},{"name":"E_MISSLPAREN","features":[41]},{"name":"E_MISSQUOTE","features":[41]},{"name":"E_MISSRPAREN","features":[41]},{"name":"E_NAMETOOLONG","features":[41]},{"name":"E_NOHANDLE","features":[41]},{"name":"E_NOKEYPROP","features":[41]},{"name":"E_NOMERGEDDATA","features":[41]},{"name":"E_NOPERMISSION","features":[41]},{"name":"E_NOSTEMMER","features":[41]},{"name":"E_NOTEXIST","features":[41]},{"name":"E_NOTFOUND","features":[41]},{"name":"E_NOTINIT","features":[41]},{"name":"E_NOTOPEN","features":[41]},{"name":"E_NOTSUPPORTED","features":[41]},{"name":"E_NULLQUERY","features":[41]},{"name":"E_OUTOFRANGE","features":[41]},{"name":"E_PROPLISTEMPTY","features":[41]},{"name":"E_PROPLISTNOTEMPTY","features":[41]},{"name":"E_RESULTSETEMPTY","features":[41]},{"name":"E_STOPWORD","features":[41]},{"name":"E_TOODEEP","features":[41]},{"name":"E_TOOMANYCOLUMNS","features":[41]},{"name":"E_TOOMANYDUPS","features":[41]},{"name":"E_TOOMANYOBJECTS","features":[41]},{"name":"E_TOOMANYTITLES","features":[41]},{"name":"E_TOOMANYTOPICS","features":[41]},{"name":"E_TREETOOBIG","features":[41]},{"name":"E_UNKNOWN_TRANSPORT","features":[41]},{"name":"E_UNMATCHEDTYPE","features":[41]},{"name":"E_UNSUPPORTED_TRANSPORT","features":[41]},{"name":"E_WILD_IN_DTYPE","features":[41]},{"name":"E_WORDTOOLONG","features":[41]},{"name":"HHACT_BACK","features":[41]},{"name":"HHACT_CONTRACT","features":[41]},{"name":"HHACT_CUSTOMIZE","features":[41]},{"name":"HHACT_EXPAND","features":[41]},{"name":"HHACT_FORWARD","features":[41]},{"name":"HHACT_HIGHLIGHT","features":[41]},{"name":"HHACT_HOME","features":[41]},{"name":"HHACT_JUMP1","features":[41]},{"name":"HHACT_JUMP2","features":[41]},{"name":"HHACT_LAST_ENUM","features":[41]},{"name":"HHACT_NOTES","features":[41]},{"name":"HHACT_OPTIONS","features":[41]},{"name":"HHACT_PRINT","features":[41]},{"name":"HHACT_REFRESH","features":[41]},{"name":"HHACT_STOP","features":[41]},{"name":"HHACT_SYNC","features":[41]},{"name":"HHACT_TAB_CONTENTS","features":[41]},{"name":"HHACT_TAB_FAVORITES","features":[41]},{"name":"HHACT_TAB_HISTORY","features":[41]},{"name":"HHACT_TAB_INDEX","features":[41]},{"name":"HHACT_TAB_SEARCH","features":[41]},{"name":"HHACT_TOC_NEXT","features":[41]},{"name":"HHACT_TOC_PREV","features":[41]},{"name":"HHACT_ZOOM","features":[41]},{"name":"HHNTRACK","features":[41,3,42]},{"name":"HHN_FIRST","features":[41]},{"name":"HHN_LAST","features":[41]},{"name":"HHN_NAVCOMPLETE","features":[41]},{"name":"HHN_NOTIFY","features":[41,3,42]},{"name":"HHN_TRACK","features":[41]},{"name":"HHN_WINDOW_CREATE","features":[41]},{"name":"HHWIN_BUTTON_BACK","features":[41]},{"name":"HHWIN_BUTTON_BROWSE_BCK","features":[41]},{"name":"HHWIN_BUTTON_BROWSE_FWD","features":[41]},{"name":"HHWIN_BUTTON_CONTENTS","features":[41]},{"name":"HHWIN_BUTTON_EXPAND","features":[41]},{"name":"HHWIN_BUTTON_FAVORITES","features":[41]},{"name":"HHWIN_BUTTON_FORWARD","features":[41]},{"name":"HHWIN_BUTTON_HISTORY","features":[41]},{"name":"HHWIN_BUTTON_HOME","features":[41]},{"name":"HHWIN_BUTTON_INDEX","features":[41]},{"name":"HHWIN_BUTTON_JUMP1","features":[41]},{"name":"HHWIN_BUTTON_JUMP2","features":[41]},{"name":"HHWIN_BUTTON_NOTES","features":[41]},{"name":"HHWIN_BUTTON_OPTIONS","features":[41]},{"name":"HHWIN_BUTTON_PRINT","features":[41]},{"name":"HHWIN_BUTTON_REFRESH","features":[41]},{"name":"HHWIN_BUTTON_SEARCH","features":[41]},{"name":"HHWIN_BUTTON_STOP","features":[41]},{"name":"HHWIN_BUTTON_SYNC","features":[41]},{"name":"HHWIN_BUTTON_TOC_NEXT","features":[41]},{"name":"HHWIN_BUTTON_TOC_PREV","features":[41]},{"name":"HHWIN_BUTTON_ZOOM","features":[41]},{"name":"HHWIN_NAVTAB_BOTTOM","features":[41]},{"name":"HHWIN_NAVTAB_LEFT","features":[41]},{"name":"HHWIN_NAVTAB_TOP","features":[41]},{"name":"HHWIN_NAVTYPE_AUTHOR","features":[41]},{"name":"HHWIN_NAVTYPE_CUSTOM_FIRST","features":[41]},{"name":"HHWIN_NAVTYPE_FAVORITES","features":[41]},{"name":"HHWIN_NAVTYPE_HISTORY","features":[41]},{"name":"HHWIN_NAVTYPE_INDEX","features":[41]},{"name":"HHWIN_NAVTYPE_SEARCH","features":[41]},{"name":"HHWIN_NAVTYPE_TOC","features":[41]},{"name":"HHWIN_PARAM_CUR_TAB","features":[41]},{"name":"HHWIN_PARAM_EXPANSION","features":[41]},{"name":"HHWIN_PARAM_EXSTYLES","features":[41]},{"name":"HHWIN_PARAM_HISTORY_COUNT","features":[41]},{"name":"HHWIN_PARAM_INFOTYPES","features":[41]},{"name":"HHWIN_PARAM_NAV_WIDTH","features":[41]},{"name":"HHWIN_PARAM_PROPERTIES","features":[41]},{"name":"HHWIN_PARAM_RECT","features":[41]},{"name":"HHWIN_PARAM_SHOWSTATE","features":[41]},{"name":"HHWIN_PARAM_STYLES","features":[41]},{"name":"HHWIN_PARAM_TABORDER","features":[41]},{"name":"HHWIN_PARAM_TABPOS","features":[41]},{"name":"HHWIN_PARAM_TB_FLAGS","features":[41]},{"name":"HHWIN_PROP_AUTO_SYNC","features":[41]},{"name":"HHWIN_PROP_CHANGE_TITLE","features":[41]},{"name":"HHWIN_PROP_MENU","features":[41]},{"name":"HHWIN_PROP_NAV_ONLY_WIN","features":[41]},{"name":"HHWIN_PROP_NODEF_EXSTYLES","features":[41]},{"name":"HHWIN_PROP_NODEF_STYLES","features":[41]},{"name":"HHWIN_PROP_NOTB_TEXT","features":[41]},{"name":"HHWIN_PROP_NOTITLEBAR","features":[41]},{"name":"HHWIN_PROP_NO_TOOLBAR","features":[41]},{"name":"HHWIN_PROP_ONTOP","features":[41]},{"name":"HHWIN_PROP_POST_QUIT","features":[41]},{"name":"HHWIN_PROP_TAB_ADVSEARCH","features":[41]},{"name":"HHWIN_PROP_TAB_AUTOHIDESHOW","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM1","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM2","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM3","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM4","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM5","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM6","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM7","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM8","features":[41]},{"name":"HHWIN_PROP_TAB_CUSTOM9","features":[41]},{"name":"HHWIN_PROP_TAB_FAVORITES","features":[41]},{"name":"HHWIN_PROP_TAB_HISTORY","features":[41]},{"name":"HHWIN_PROP_TAB_SEARCH","features":[41]},{"name":"HHWIN_PROP_TRACKING","features":[41]},{"name":"HHWIN_PROP_TRI_PANE","features":[41]},{"name":"HHWIN_PROP_USER_POS","features":[41]},{"name":"HHWIN_TB_MARGIN","features":[41]},{"name":"HH_AKLINK","features":[41,3]},{"name":"HH_ALINK_LOOKUP","features":[41]},{"name":"HH_CLOSE_ALL","features":[41]},{"name":"HH_DISPLAY_INDEX","features":[41]},{"name":"HH_DISPLAY_SEARCH","features":[41]},{"name":"HH_DISPLAY_TEXT_POPUP","features":[41]},{"name":"HH_DISPLAY_TOC","features":[41]},{"name":"HH_DISPLAY_TOPIC","features":[41]},{"name":"HH_ENUM_CAT","features":[41]},{"name":"HH_ENUM_CATEGORY","features":[41]},{"name":"HH_ENUM_CATEGORY_IT","features":[41]},{"name":"HH_ENUM_INFO_TYPE","features":[41]},{"name":"HH_ENUM_IT","features":[41]},{"name":"HH_FTS_DEFAULT_PROXIMITY","features":[41]},{"name":"HH_FTS_QUERY","features":[41,3]},{"name":"HH_GET_LAST_ERROR","features":[41]},{"name":"HH_GET_WIN_HANDLE","features":[41]},{"name":"HH_GET_WIN_TYPE","features":[41]},{"name":"HH_GLOBAL_PROPERTY","features":[41,3,43,44]},{"name":"HH_GPROPID","features":[41]},{"name":"HH_GPROPID_CONTENT_LANGUAGE","features":[41]},{"name":"HH_GPROPID_CURRENT_SUBSET","features":[41]},{"name":"HH_GPROPID_SINGLETHREAD","features":[41]},{"name":"HH_GPROPID_TOOLBAR_MARGIN","features":[41]},{"name":"HH_GPROPID_UI_LANGUAGE","features":[41]},{"name":"HH_HELP_CONTEXT","features":[41]},{"name":"HH_HELP_FINDER","features":[41]},{"name":"HH_INITIALIZE","features":[41]},{"name":"HH_KEYWORD_LOOKUP","features":[41]},{"name":"HH_MAX_TABS","features":[41]},{"name":"HH_MAX_TABS_CUSTOM","features":[41]},{"name":"HH_POPUP","features":[41,3]},{"name":"HH_PRETRANSLATEMESSAGE","features":[41]},{"name":"HH_RESERVED1","features":[41]},{"name":"HH_RESERVED2","features":[41]},{"name":"HH_RESERVED3","features":[41]},{"name":"HH_RESET_IT_FILTER","features":[41]},{"name":"HH_SAFE_DISPLAY_TOPIC","features":[41]},{"name":"HH_SET_EXCLUSIVE_FILTER","features":[41]},{"name":"HH_SET_GLOBAL_PROPERTY","features":[41]},{"name":"HH_SET_INCLUSIVE_FILTER","features":[41]},{"name":"HH_SET_INFOTYPE","features":[41]},{"name":"HH_SET_INFO_TYPE","features":[41]},{"name":"HH_SET_QUERYSERVICE","features":[41]},{"name":"HH_SET_WIN_TYPE","features":[41]},{"name":"HH_SYNC","features":[41]},{"name":"HH_TAB_AUTHOR","features":[41]},{"name":"HH_TAB_CONTENTS","features":[41]},{"name":"HH_TAB_CUSTOM_FIRST","features":[41]},{"name":"HH_TAB_CUSTOM_LAST","features":[41]},{"name":"HH_TAB_FAVORITES","features":[41]},{"name":"HH_TAB_HISTORY","features":[41]},{"name":"HH_TAB_INDEX","features":[41]},{"name":"HH_TAB_SEARCH","features":[41]},{"name":"HH_TP_HELP_CONTEXTMENU","features":[41]},{"name":"HH_TP_HELP_WM_HELP","features":[41]},{"name":"HH_UNINITIALIZE","features":[41]},{"name":"HH_WINTYPE","features":[41,3]},{"name":"HTML_HELP_COMMAND","features":[41]},{"name":"HtmlHelpA","features":[41,3]},{"name":"HtmlHelpW","features":[41,3]},{"name":"IDTB_BACK","features":[41]},{"name":"IDTB_BROWSE_BACK","features":[41]},{"name":"IDTB_BROWSE_FWD","features":[41]},{"name":"IDTB_CONTENTS","features":[41]},{"name":"IDTB_CONTRACT","features":[41]},{"name":"IDTB_CUSTOMIZE","features":[41]},{"name":"IDTB_EXPAND","features":[41]},{"name":"IDTB_FAVORITES","features":[41]},{"name":"IDTB_FORWARD","features":[41]},{"name":"IDTB_HISTORY","features":[41]},{"name":"IDTB_HOME","features":[41]},{"name":"IDTB_INDEX","features":[41]},{"name":"IDTB_JUMP1","features":[41]},{"name":"IDTB_JUMP2","features":[41]},{"name":"IDTB_NOTES","features":[41]},{"name":"IDTB_OPTIONS","features":[41]},{"name":"IDTB_PRINT","features":[41]},{"name":"IDTB_REFRESH","features":[41]},{"name":"IDTB_SEARCH","features":[41]},{"name":"IDTB_STOP","features":[41]},{"name":"IDTB_SYNC","features":[41]},{"name":"IDTB_TOC_NEXT","features":[41]},{"name":"IDTB_TOC_PREV","features":[41]},{"name":"IDTB_ZOOM","features":[41]},{"name":"IITDatabase","features":[41]},{"name":"IITPropList","features":[41]},{"name":"IITResultSet","features":[41]},{"name":"IITWBC_BREAK_ACCEPT_WILDCARDS","features":[41]},{"name":"IITWBC_BREAK_AND_STEM","features":[41]},{"name":"IStemSink","features":[41]},{"name":"IStemmerConfig","features":[41]},{"name":"ITWW_CBKEY_MAX","features":[41]},{"name":"ITWW_OPEN_NOCONNECT","features":[41]},{"name":"IT_EXCLUSIVE","features":[41]},{"name":"IT_HIDDEN","features":[41]},{"name":"IT_INCLUSIVE","features":[41]},{"name":"IWordBreakerConfig","features":[41]},{"name":"MAX_COLUMNS","features":[41]},{"name":"PFNCOLHEAPFREE","features":[41]},{"name":"PRIORITY","features":[41]},{"name":"PRIORITY_HIGH","features":[41]},{"name":"PRIORITY_LOW","features":[41]},{"name":"PRIORITY_NORMAL","features":[41]},{"name":"PROP_ADD","features":[41]},{"name":"PROP_DELETE","features":[41]},{"name":"PROP_UPDATE","features":[41]},{"name":"ROWSTATUS","features":[41]},{"name":"STDPROP_DISPLAYKEY","features":[41]},{"name":"STDPROP_INDEX_BREAK","features":[41]},{"name":"STDPROP_INDEX_DTYPE","features":[41]},{"name":"STDPROP_INDEX_LENGTH","features":[41]},{"name":"STDPROP_INDEX_TERM","features":[41]},{"name":"STDPROP_INDEX_TERM_RAW_LENGTH","features":[41]},{"name":"STDPROP_INDEX_TEXT","features":[41]},{"name":"STDPROP_INDEX_VFLD","features":[41]},{"name":"STDPROP_KEY","features":[41]},{"name":"STDPROP_SORTKEY","features":[41]},{"name":"STDPROP_SORTORDINAL","features":[41]},{"name":"STDPROP_TITLE","features":[41]},{"name":"STDPROP_UID","features":[41]},{"name":"STDPROP_USERDATA","features":[41]},{"name":"STDPROP_USERPROP_BASE","features":[41]},{"name":"STDPROP_USERPROP_MAX","features":[41]},{"name":"SZ_WWDEST_GLOBAL","features":[41]},{"name":"SZ_WWDEST_KEY","features":[41]},{"name":"SZ_WWDEST_OCC","features":[41]},{"name":"TYPE_POINTER","features":[41]},{"name":"TYPE_STRING","features":[41]},{"name":"TYPE_VALUE","features":[41]}],"366":[{"name":"DRMACTSERVINFOVERSION","features":[45]},{"name":"DRMATTESTTYPE","features":[45]},{"name":"DRMATTESTTYPE_FULLENVIRONMENT","features":[45]},{"name":"DRMATTESTTYPE_HASHONLY","features":[45]},{"name":"DRMAcquireAdvisories","features":[45]},{"name":"DRMAcquireIssuanceLicenseTemplate","features":[45]},{"name":"DRMAcquireLicense","features":[45]},{"name":"DRMActivate","features":[45,3]},{"name":"DRMAddLicense","features":[45]},{"name":"DRMAddRightWithUser","features":[45]},{"name":"DRMAttest","features":[45]},{"name":"DRMBINDINGFLAGS_IGNORE_VALIDITY_INTERVALS","features":[45]},{"name":"DRMBOUNDLICENSEPARAMS","features":[45]},{"name":"DRMBOUNDLICENSEPARAMSVERSION","features":[45]},{"name":"DRMCALLBACK","features":[45]},{"name":"DRMCALLBACKVERSION","features":[45]},{"name":"DRMCLIENTSTRUCTVERSION","features":[45]},{"name":"DRMCheckSecurity","features":[45]},{"name":"DRMClearAllRights","features":[45]},{"name":"DRMCloseEnvironmentHandle","features":[45]},{"name":"DRMCloseHandle","features":[45]},{"name":"DRMClosePubHandle","features":[45]},{"name":"DRMCloseQueryHandle","features":[45]},{"name":"DRMCloseSession","features":[45]},{"name":"DRMConstructCertificateChain","features":[45]},{"name":"DRMCreateBoundLicense","features":[45]},{"name":"DRMCreateClientSession","features":[45]},{"name":"DRMCreateEnablingBitsDecryptor","features":[45]},{"name":"DRMCreateEnablingBitsEncryptor","features":[45]},{"name":"DRMCreateEnablingPrincipal","features":[45]},{"name":"DRMCreateIssuanceLicense","features":[45,3]},{"name":"DRMCreateLicenseStorageSession","features":[45]},{"name":"DRMCreateRight","features":[45,3]},{"name":"DRMCreateUser","features":[45]},{"name":"DRMDecode","features":[45]},{"name":"DRMDeconstructCertificateChain","features":[45]},{"name":"DRMDecrypt","features":[45]},{"name":"DRMDeleteLicense","features":[45]},{"name":"DRMDuplicateEnvironmentHandle","features":[45]},{"name":"DRMDuplicateHandle","features":[45]},{"name":"DRMDuplicatePubHandle","features":[45]},{"name":"DRMDuplicateSession","features":[45]},{"name":"DRMENCODINGTYPE","features":[45]},{"name":"DRMENCODINGTYPE_BASE64","features":[45]},{"name":"DRMENCODINGTYPE_LONG","features":[45]},{"name":"DRMENCODINGTYPE_RAW","features":[45]},{"name":"DRMENCODINGTYPE_STRING","features":[45]},{"name":"DRMENCODINGTYPE_TIME","features":[45]},{"name":"DRMENCODINGTYPE_UINT","features":[45]},{"name":"DRMENVHANDLE_INVALID","features":[45]},{"name":"DRMEncode","features":[45]},{"name":"DRMEncrypt","features":[45]},{"name":"DRMEnumerateLicense","features":[45,3]},{"name":"DRMGLOBALOPTIONS","features":[45]},{"name":"DRMGLOBALOPTIONS_USE_SERVERSECURITYPROCESSOR","features":[45]},{"name":"DRMGLOBALOPTIONS_USE_WINHTTP","features":[45]},{"name":"DRMGetApplicationSpecificData","features":[45]},{"name":"DRMGetBoundLicenseAttribute","features":[45]},{"name":"DRMGetBoundLicenseAttributeCount","features":[45]},{"name":"DRMGetBoundLicenseObject","features":[45]},{"name":"DRMGetBoundLicenseObjectCount","features":[45]},{"name":"DRMGetCertificateChainCount","features":[45]},{"name":"DRMGetClientVersion","features":[45]},{"name":"DRMGetEnvironmentInfo","features":[45]},{"name":"DRMGetInfo","features":[45]},{"name":"DRMGetIntervalTime","features":[45]},{"name":"DRMGetIssuanceLicenseInfo","features":[45,3]},{"name":"DRMGetIssuanceLicenseTemplate","features":[45]},{"name":"DRMGetMetaData","features":[45]},{"name":"DRMGetNameAndDescription","features":[45]},{"name":"DRMGetOwnerLicense","features":[45]},{"name":"DRMGetProcAddress","features":[45,3]},{"name":"DRMGetRevocationPoint","features":[45,3]},{"name":"DRMGetRightExtendedInfo","features":[45]},{"name":"DRMGetRightInfo","features":[45,3]},{"name":"DRMGetSecurityProvider","features":[45]},{"name":"DRMGetServiceLocation","features":[45]},{"name":"DRMGetSignedIssuanceLicense","features":[45]},{"name":"DRMGetSignedIssuanceLicenseEx","features":[45]},{"name":"DRMGetTime","features":[45,3]},{"name":"DRMGetUnboundLicenseAttribute","features":[45]},{"name":"DRMGetUnboundLicenseAttributeCount","features":[45]},{"name":"DRMGetUnboundLicenseObject","features":[45]},{"name":"DRMGetUnboundLicenseObjectCount","features":[45]},{"name":"DRMGetUsagePolicy","features":[45,3]},{"name":"DRMGetUserInfo","features":[45]},{"name":"DRMGetUserRights","features":[45]},{"name":"DRMGetUsers","features":[45]},{"name":"DRMHANDLE_INVALID","features":[45]},{"name":"DRMHSESSION_INVALID","features":[45]},{"name":"DRMID","features":[45]},{"name":"DRMIDVERSION","features":[45]},{"name":"DRMInitEnvironment","features":[45]},{"name":"DRMIsActivated","features":[45]},{"name":"DRMIsWindowProtected","features":[45,3]},{"name":"DRMLICENSEACQDATAVERSION","features":[45]},{"name":"DRMLoadLibrary","features":[45]},{"name":"DRMPUBHANDLE_INVALID","features":[45]},{"name":"DRMParseUnboundLicense","features":[45]},{"name":"DRMQUERYHANDLE_INVALID","features":[45]},{"name":"DRMRegisterContent","features":[45,3]},{"name":"DRMRegisterProtectedWindow","features":[45,3]},{"name":"DRMRegisterRevocationList","features":[45]},{"name":"DRMRepair","features":[45]},{"name":"DRMSECURITYPROVIDERTYPE","features":[45]},{"name":"DRMSECURITYPROVIDERTYPE_SOFTWARESECREP","features":[45]},{"name":"DRMSPECTYPE","features":[45]},{"name":"DRMSPECTYPE_FILENAME","features":[45]},{"name":"DRMSPECTYPE_UNKNOWN","features":[45]},{"name":"DRMSetApplicationSpecificData","features":[45,3]},{"name":"DRMSetGlobalOptions","features":[45]},{"name":"DRMSetIntervalTime","features":[45]},{"name":"DRMSetMetaData","features":[45]},{"name":"DRMSetNameAndDescription","features":[45,3]},{"name":"DRMSetRevocationPoint","features":[45,3]},{"name":"DRMSetUsagePolicy","features":[45,3]},{"name":"DRMTIMETYPE","features":[45]},{"name":"DRMTIMETYPE_SYSTEMLOCAL","features":[45]},{"name":"DRMTIMETYPE_SYSTEMUTC","features":[45]},{"name":"DRMVerify","features":[45]},{"name":"DRM_ACTIVATE_CANCEL","features":[45]},{"name":"DRM_ACTIVATE_DELAYED","features":[45]},{"name":"DRM_ACTIVATE_GROUPIDENTITY","features":[45]},{"name":"DRM_ACTIVATE_MACHINE","features":[45]},{"name":"DRM_ACTIVATE_SHARED_GROUPIDENTITY","features":[45]},{"name":"DRM_ACTIVATE_SILENT","features":[45]},{"name":"DRM_ACTIVATE_TEMPORARY","features":[45]},{"name":"DRM_ACTSERV_INFO","features":[45]},{"name":"DRM_ADD_LICENSE_NOPERSIST","features":[45]},{"name":"DRM_ADD_LICENSE_PERSIST","features":[45]},{"name":"DRM_AILT_CANCEL","features":[45]},{"name":"DRM_AILT_NONSILENT","features":[45]},{"name":"DRM_AILT_OBTAIN_ALL","features":[45]},{"name":"DRM_AL_CANCEL","features":[45]},{"name":"DRM_AL_FETCHNOADVISORY","features":[45]},{"name":"DRM_AL_NONSILENT","features":[45]},{"name":"DRM_AL_NOPERSIST","features":[45]},{"name":"DRM_AL_NOUI","features":[45]},{"name":"DRM_AUTO_GENERATE_KEY","features":[45]},{"name":"DRM_CLIENT_VERSION_INFO","features":[45]},{"name":"DRM_DEFAULTGROUPIDTYPE_PASSPORT","features":[45]},{"name":"DRM_DEFAULTGROUPIDTYPE_WINDOWSAUTH","features":[45]},{"name":"DRM_DISTRIBUTION_POINT_INFO","features":[45]},{"name":"DRM_DISTRIBUTION_POINT_LICENSE_ACQUISITION","features":[45]},{"name":"DRM_DISTRIBUTION_POINT_PUBLISHING","features":[45]},{"name":"DRM_DISTRIBUTION_POINT_REFERRAL_INFO","features":[45]},{"name":"DRM_EL_CLIENTLICENSOR","features":[45]},{"name":"DRM_EL_CLIENTLICENSOR_LID","features":[45]},{"name":"DRM_EL_EUL","features":[45]},{"name":"DRM_EL_EUL_LID","features":[45]},{"name":"DRM_EL_EXPIRED","features":[45]},{"name":"DRM_EL_GROUPIDENTITY","features":[45]},{"name":"DRM_EL_GROUPIDENTITY_LID","features":[45]},{"name":"DRM_EL_GROUPIDENTITY_NAME","features":[45]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE","features":[45]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE_LID","features":[45]},{"name":"DRM_EL_ISSUERNAME","features":[45]},{"name":"DRM_EL_MACHINE","features":[45]},{"name":"DRM_EL_REVOCATIONLIST","features":[45]},{"name":"DRM_EL_REVOCATIONLIST_LID","features":[45]},{"name":"DRM_EL_SPECIFIED_CLIENTLICENSOR","features":[45]},{"name":"DRM_EL_SPECIFIED_GROUPIDENTITY","features":[45]},{"name":"DRM_LICENSE_ACQ_DATA","features":[45]},{"name":"DRM_LOCKBOXTYPE_BLACKBOX","features":[45]},{"name":"DRM_LOCKBOXTYPE_DEFAULT","features":[45]},{"name":"DRM_LOCKBOXTYPE_NONE","features":[45]},{"name":"DRM_LOCKBOXTYPE_WHITEBOX","features":[45]},{"name":"DRM_MSG_ACQUIRE_ADVISORY","features":[45]},{"name":"DRM_MSG_ACQUIRE_CLIENTLICENSOR","features":[45]},{"name":"DRM_MSG_ACQUIRE_ISSUANCE_LICENSE_TEMPLATE","features":[45]},{"name":"DRM_MSG_ACQUIRE_LICENSE","features":[45]},{"name":"DRM_MSG_ACTIVATE_GROUPIDENTITY","features":[45]},{"name":"DRM_MSG_ACTIVATE_MACHINE","features":[45]},{"name":"DRM_MSG_SIGN_ISSUANCE_LICENSE","features":[45]},{"name":"DRM_OWNER_LICENSE_NOPERSIST","features":[45]},{"name":"DRM_REUSE_KEY","features":[45]},{"name":"DRM_SERVER_ISSUANCELICENSE","features":[45]},{"name":"DRM_SERVICE_LOCATION_ENTERPRISE","features":[45]},{"name":"DRM_SERVICE_LOCATION_INTERNET","features":[45]},{"name":"DRM_SERVICE_TYPE_ACTIVATION","features":[45]},{"name":"DRM_SERVICE_TYPE_CERTIFICATION","features":[45]},{"name":"DRM_SERVICE_TYPE_CLIENTLICENSOR","features":[45]},{"name":"DRM_SERVICE_TYPE_PUBLISHING","features":[45]},{"name":"DRM_SERVICE_TYPE_SILENT","features":[45]},{"name":"DRM_SIGN_CANCEL","features":[45]},{"name":"DRM_SIGN_OFFLINE","features":[45]},{"name":"DRM_SIGN_ONLINE","features":[45]},{"name":"DRM_STATUS_MSG","features":[45]},{"name":"DRM_USAGEPOLICY_TYPE","features":[45]},{"name":"DRM_USAGEPOLICY_TYPE_BYDIGEST","features":[45]},{"name":"DRM_USAGEPOLICY_TYPE_BYNAME","features":[45]},{"name":"DRM_USAGEPOLICY_TYPE_BYPUBLICKEY","features":[45]},{"name":"DRM_USAGEPOLICY_TYPE_OSEXCLUSION","features":[45]},{"name":"MSDRM_CLIENT_ZONE","features":[45]},{"name":"MSDRM_POLICY_ZONE","features":[45]}],"369":[{"name":"AJ_IFC_SECURITY_INHERIT","features":[46]},{"name":"AJ_IFC_SECURITY_OFF","features":[46]},{"name":"AJ_IFC_SECURITY_REQUIRED","features":[46]},{"name":"ALLJOYN_ARRAY","features":[46]},{"name":"ALLJOYN_BIG_ENDIAN","features":[46]},{"name":"ALLJOYN_BOOLEAN","features":[46]},{"name":"ALLJOYN_BOOLEAN_ARRAY","features":[46]},{"name":"ALLJOYN_BYTE","features":[46]},{"name":"ALLJOYN_BYTE_ARRAY","features":[46]},{"name":"ALLJOYN_CRED_CERT_CHAIN","features":[46]},{"name":"ALLJOYN_CRED_EXPIRATION","features":[46]},{"name":"ALLJOYN_CRED_LOGON_ENTRY","features":[46]},{"name":"ALLJOYN_CRED_NEW_PASSWORD","features":[46]},{"name":"ALLJOYN_CRED_ONE_TIME_PWD","features":[46]},{"name":"ALLJOYN_CRED_PASSWORD","features":[46]},{"name":"ALLJOYN_CRED_PRIVATE_KEY","features":[46]},{"name":"ALLJOYN_CRED_USER_NAME","features":[46]},{"name":"ALLJOYN_DICT_ENTRY","features":[46]},{"name":"ALLJOYN_DICT_ENTRY_CLOSE","features":[46]},{"name":"ALLJOYN_DICT_ENTRY_OPEN","features":[46]},{"name":"ALLJOYN_DISCONNECTED","features":[46]},{"name":"ALLJOYN_DOUBLE","features":[46]},{"name":"ALLJOYN_DOUBLE_ARRAY","features":[46]},{"name":"ALLJOYN_HANDLE","features":[46]},{"name":"ALLJOYN_INT16","features":[46]},{"name":"ALLJOYN_INT16_ARRAY","features":[46]},{"name":"ALLJOYN_INT32","features":[46]},{"name":"ALLJOYN_INT32_ARRAY","features":[46]},{"name":"ALLJOYN_INT64","features":[46]},{"name":"ALLJOYN_INT64_ARRAY","features":[46]},{"name":"ALLJOYN_INVALID","features":[46]},{"name":"ALLJOYN_LITTLE_ENDIAN","features":[46]},{"name":"ALLJOYN_MEMBER_ANNOTATE_DEPRECATED","features":[46]},{"name":"ALLJOYN_MEMBER_ANNOTATE_GLOBAL_BROADCAST","features":[46]},{"name":"ALLJOYN_MEMBER_ANNOTATE_NO_REPLY","features":[46]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONCAST","features":[46]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONLESS","features":[46]},{"name":"ALLJOYN_MEMBER_ANNOTATE_UNICAST","features":[46]},{"name":"ALLJOYN_MESSAGE_DEFAULT_TIMEOUT","features":[46]},{"name":"ALLJOYN_MESSAGE_ERROR","features":[46]},{"name":"ALLJOYN_MESSAGE_FLAG_ALLOW_REMOTE_MSG","features":[46]},{"name":"ALLJOYN_MESSAGE_FLAG_AUTO_START","features":[46]},{"name":"ALLJOYN_MESSAGE_FLAG_ENCRYPTED","features":[46]},{"name":"ALLJOYN_MESSAGE_FLAG_GLOBAL_BROADCAST","features":[46]},{"name":"ALLJOYN_MESSAGE_FLAG_NO_REPLY_EXPECTED","features":[46]},{"name":"ALLJOYN_MESSAGE_FLAG_SESSIONLESS","features":[46]},{"name":"ALLJOYN_MESSAGE_INVALID","features":[46]},{"name":"ALLJOYN_MESSAGE_METHOD_CALL","features":[46]},{"name":"ALLJOYN_MESSAGE_METHOD_RET","features":[46]},{"name":"ALLJOYN_MESSAGE_SIGNAL","features":[46]},{"name":"ALLJOYN_NAMED_PIPE_CONNECT_SPEC","features":[46]},{"name":"ALLJOYN_OBJECT_PATH","features":[46]},{"name":"ALLJOYN_PROP_ACCESS_READ","features":[46]},{"name":"ALLJOYN_PROP_ACCESS_RW","features":[46]},{"name":"ALLJOYN_PROP_ACCESS_WRITE","features":[46]},{"name":"ALLJOYN_PROXIMITY_ANY","features":[46]},{"name":"ALLJOYN_PROXIMITY_NETWORK","features":[46]},{"name":"ALLJOYN_PROXIMITY_PHYSICAL","features":[46]},{"name":"ALLJOYN_READ_READY","features":[46]},{"name":"ALLJOYN_SESSIONLOST_INVALID","features":[46]},{"name":"ALLJOYN_SESSIONLOST_LINK_TIMEOUT","features":[46]},{"name":"ALLJOYN_SESSIONLOST_REASON_OTHER","features":[46]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_CLOSED_ABRUPTLY","features":[46]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_LEFT_SESSION","features":[46]},{"name":"ALLJOYN_SESSIONLOST_REMOVED_BY_BINDER","features":[46]},{"name":"ALLJOYN_SIGNATURE","features":[46]},{"name":"ALLJOYN_STRING","features":[46]},{"name":"ALLJOYN_STRUCT","features":[46]},{"name":"ALLJOYN_STRUCT_CLOSE","features":[46]},{"name":"ALLJOYN_STRUCT_OPEN","features":[46]},{"name":"ALLJOYN_TRAFFIC_TYPE_MESSAGES","features":[46]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_RELIABLE","features":[46]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_UNRELIABLE","features":[46]},{"name":"ALLJOYN_UINT16","features":[46]},{"name":"ALLJOYN_UINT16_ARRAY","features":[46]},{"name":"ALLJOYN_UINT32","features":[46]},{"name":"ALLJOYN_UINT32_ARRAY","features":[46]},{"name":"ALLJOYN_UINT64","features":[46]},{"name":"ALLJOYN_UINT64_ARRAY","features":[46]},{"name":"ALLJOYN_VARIANT","features":[46]},{"name":"ALLJOYN_WILDCARD","features":[46]},{"name":"ALLJOYN_WRITE_READY","features":[46]},{"name":"ANNOUNCED","features":[46]},{"name":"AllJoynAcceptBusConnection","features":[46,3]},{"name":"AllJoynCloseBusHandle","features":[46,3]},{"name":"AllJoynConnectToBus","features":[46,3]},{"name":"AllJoynCreateBus","features":[46,3,6]},{"name":"AllJoynEnumEvents","features":[46,3]},{"name":"AllJoynEventSelect","features":[46,3]},{"name":"AllJoynReceiveFromBus","features":[46,3]},{"name":"AllJoynSendToBus","features":[46,3]},{"name":"CAPABLE_ECDHE_ECDSA","features":[46]},{"name":"CAPABLE_ECDHE_NULL","features":[46]},{"name":"CAPABLE_ECDHE_SPEKE","features":[46]},{"name":"CLAIMABLE","features":[46]},{"name":"CLAIMED","features":[46]},{"name":"ER_ABOUT_ABOUTDATA_MISSING_REQUIRED_FIELD","features":[46]},{"name":"ER_ABOUT_DEFAULT_LANGUAGE_NOT_SPECIFIED","features":[46]},{"name":"ER_ABOUT_FIELD_ALREADY_SPECIFIED","features":[46]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_APPID_SIZE","features":[46]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_VALUE","features":[46]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_LISTENER","features":[46]},{"name":"ER_ABOUT_SESSIONPORT_NOT_BOUND","features":[46]},{"name":"ER_ALERTED_THREAD","features":[46]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_ERROR","features":[46]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_WARNING","features":[46]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_ALREADY_ADVERTISING","features":[46]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[46]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_ALREADY_EXISTS","features":[46]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_INVALID_OPTS","features":[46]},{"name":"ER_ALLJOYN_CANCELADVERTISENAME_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_CANCELFINDADVERTISEDNAME_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_ALREADY_DISCOVERING","features":[46]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[46]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_ALREADY_JOINED","features":[46]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_BAD_SESSION_OPTS","features":[46]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_CONNECT_FAILED","features":[46]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_NO_SESSION","features":[46]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_REJECTED","features":[46]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_UNREACHABLE","features":[46]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_NO_SESSION","features":[46]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_UNSUPPORTED","features":[46]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_UNSUPPORTED","features":[46]},{"name":"ER_ALLJOYN_PING_FAILED","features":[46]},{"name":"ER_ALLJOYN_PING_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_PING_REPLY_INCOMPATIBLE_REMOTE_ROUTING_NODE","features":[46]},{"name":"ER_ALLJOYN_PING_REPLY_IN_PROGRESS","features":[46]},{"name":"ER_ALLJOYN_PING_REPLY_TIMEOUT","features":[46]},{"name":"ER_ALLJOYN_PING_REPLY_UNKNOWN_NAME","features":[46]},{"name":"ER_ALLJOYN_PING_REPLY_UNREACHABLE","features":[46]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_INCOMPATIBLE_REMOTE_DAEMON","features":[46]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_BINDER","features":[46]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_FOUND","features":[46]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_MULTIPOINT","features":[46]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_NO_SESSION","features":[46]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_FAILED","features":[46]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NOT_SUPPORTED","features":[46]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NO_DEST_SUPPORT","features":[46]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_BAD_PORT","features":[46]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_FAILED","features":[46]},{"name":"ER_APPLICATION_STATE_LISTENER_ALREADY_EXISTS","features":[46]},{"name":"ER_APPLICATION_STATE_LISTENER_NO_SUCH_LISTENER","features":[46]},{"name":"ER_ARDP_BACKPRESSURE","features":[46]},{"name":"ER_ARDP_DISCONNECTING","features":[46]},{"name":"ER_ARDP_INVALID_CONNECTION","features":[46]},{"name":"ER_ARDP_INVALID_RESPONSE","features":[46]},{"name":"ER_ARDP_INVALID_STATE","features":[46]},{"name":"ER_ARDP_PERSIST_TIMEOUT","features":[46]},{"name":"ER_ARDP_PROBE_TIMEOUT","features":[46]},{"name":"ER_ARDP_REMOTE_CONNECTION_RESET","features":[46]},{"name":"ER_ARDP_TTL_EXPIRED","features":[46]},{"name":"ER_ARDP_VERSION_NOT_SUPPORTED","features":[46]},{"name":"ER_ARDP_WRITE_BLOCKED","features":[46]},{"name":"ER_AUTH_FAIL","features":[46]},{"name":"ER_AUTH_USER_REJECT","features":[46]},{"name":"ER_BAD_ARG_1","features":[46]},{"name":"ER_BAD_ARG_2","features":[46]},{"name":"ER_BAD_ARG_3","features":[46]},{"name":"ER_BAD_ARG_4","features":[46]},{"name":"ER_BAD_ARG_5","features":[46]},{"name":"ER_BAD_ARG_6","features":[46]},{"name":"ER_BAD_ARG_7","features":[46]},{"name":"ER_BAD_ARG_8","features":[46]},{"name":"ER_BAD_ARG_COUNT","features":[46]},{"name":"ER_BAD_HOSTNAME","features":[46]},{"name":"ER_BAD_STRING_ENCODING","features":[46]},{"name":"ER_BAD_TRANSPORT_MASK","features":[46]},{"name":"ER_BUFFER_TOO_SMALL","features":[46]},{"name":"ER_BUS_ALREADY_CONNECTED","features":[46]},{"name":"ER_BUS_ALREADY_LISTENING","features":[46]},{"name":"ER_BUS_ANNOTATION_ALREADY_EXISTS","features":[46]},{"name":"ER_BUS_AUTHENTICATION_PENDING","features":[46]},{"name":"ER_BUS_BAD_BODY_LEN","features":[46]},{"name":"ER_BUS_BAD_BUS_NAME","features":[46]},{"name":"ER_BUS_BAD_CHILD_PATH","features":[46]},{"name":"ER_BUS_BAD_ERROR_NAME","features":[46]},{"name":"ER_BUS_BAD_HDR_FLAGS","features":[46]},{"name":"ER_BUS_BAD_HEADER_FIELD","features":[46]},{"name":"ER_BUS_BAD_HEADER_LEN","features":[46]},{"name":"ER_BUS_BAD_INTERFACE_NAME","features":[46]},{"name":"ER_BUS_BAD_LENGTH","features":[46]},{"name":"ER_BUS_BAD_MEMBER_NAME","features":[46]},{"name":"ER_BUS_BAD_OBJ_PATH","features":[46]},{"name":"ER_BUS_BAD_SENDER_ID","features":[46]},{"name":"ER_BUS_BAD_SEND_PARAMETER","features":[46]},{"name":"ER_BUS_BAD_SESSION_OPTS","features":[46]},{"name":"ER_BUS_BAD_SIGNATURE","features":[46]},{"name":"ER_BUS_BAD_TRANSPORT_ARGS","features":[46]},{"name":"ER_BUS_BAD_VALUE","features":[46]},{"name":"ER_BUS_BAD_VALUE_TYPE","features":[46]},{"name":"ER_BUS_BAD_XML","features":[46]},{"name":"ER_BUS_BLOCKING_CALL_NOT_ALLOWED","features":[46]},{"name":"ER_BUS_BUS_ALREADY_STARTED","features":[46]},{"name":"ER_BUS_BUS_NOT_STARTED","features":[46]},{"name":"ER_BUS_CANNOT_ADD_HANDLER","features":[46]},{"name":"ER_BUS_CANNOT_ADD_INTERFACE","features":[46]},{"name":"ER_BUS_CANNOT_EXPAND_MESSAGE","features":[46]},{"name":"ER_BUS_CONNECTION_REJECTED","features":[46]},{"name":"ER_BUS_CONNECT_FAILED","features":[46]},{"name":"ER_BUS_CORRUPT_KEYSTORE","features":[46]},{"name":"ER_BUS_DESCRIPTION_ALREADY_EXISTS","features":[46]},{"name":"ER_BUS_DESTINATION_NOT_AUTHENTICATED","features":[46]},{"name":"ER_BUS_ELEMENT_NOT_FOUND","features":[46]},{"name":"ER_BUS_EMPTY_MESSAGE","features":[46]},{"name":"ER_BUS_ENDPOINT_CLOSING","features":[46]},{"name":"ER_BUS_ENDPOINT_REDIRECTED","features":[46]},{"name":"ER_BUS_ERRORS","features":[46]},{"name":"ER_BUS_ERROR_NAME_MISSING","features":[46]},{"name":"ER_BUS_ERROR_RESPONSE","features":[46]},{"name":"ER_BUS_ESTABLISH_FAILED","features":[46]},{"name":"ER_BUS_HANDLES_MISMATCH","features":[46]},{"name":"ER_BUS_HANDLES_NOT_ENABLED","features":[46]},{"name":"ER_BUS_HDR_EXPANSION_INVALID","features":[46]},{"name":"ER_BUS_IFACE_ALREADY_EXISTS","features":[46]},{"name":"ER_BUS_INCOMPATIBLE_DAEMON","features":[46]},{"name":"ER_BUS_INTERFACE_ACTIVATED","features":[46]},{"name":"ER_BUS_INTERFACE_MISMATCH","features":[46]},{"name":"ER_BUS_INTERFACE_MISSING","features":[46]},{"name":"ER_BUS_INTERFACE_NO_SUCH_MEMBER","features":[46]},{"name":"ER_BUS_INVALID_AUTH_MECHANISM","features":[46]},{"name":"ER_BUS_INVALID_HEADER_CHECKSUM","features":[46]},{"name":"ER_BUS_INVALID_HEADER_SERIAL","features":[46]},{"name":"ER_BUS_KEYBLOB_OP_INVALID","features":[46]},{"name":"ER_BUS_KEYSTORE_NOT_LOADED","features":[46]},{"name":"ER_BUS_KEYSTORE_VERSION_MISMATCH","features":[46]},{"name":"ER_BUS_KEY_EXPIRED","features":[46]},{"name":"ER_BUS_KEY_STORE_NOT_LOADED","features":[46]},{"name":"ER_BUS_KEY_UNAVAILABLE","features":[46]},{"name":"ER_BUS_LISTENER_ALREADY_SET","features":[46]},{"name":"ER_BUS_MATCH_RULE_NOT_FOUND","features":[46]},{"name":"ER_BUS_MEMBER_ALREADY_EXISTS","features":[46]},{"name":"ER_BUS_MEMBER_MISSING","features":[46]},{"name":"ER_BUS_MEMBER_NO_SUCH_SIGNATURE","features":[46]},{"name":"ER_BUS_MESSAGE_DECRYPTION_FAILED","features":[46]},{"name":"ER_BUS_MESSAGE_NOT_ENCRYPTED","features":[46]},{"name":"ER_BUS_METHOD_CALL_ABORTED","features":[46]},{"name":"ER_BUS_MISSING_COMPRESSION_TOKEN","features":[46]},{"name":"ER_BUS_NAME_TOO_LONG","features":[46]},{"name":"ER_BUS_NOT_ALLOWED","features":[46]},{"name":"ER_BUS_NOT_AUTHENTICATING","features":[46]},{"name":"ER_BUS_NOT_AUTHORIZED","features":[46]},{"name":"ER_BUS_NOT_A_COMPLETE_TYPE","features":[46]},{"name":"ER_BUS_NOT_A_DICTIONARY","features":[46]},{"name":"ER_BUS_NOT_COMPRESSED","features":[46]},{"name":"ER_BUS_NOT_CONNECTED","features":[46]},{"name":"ER_BUS_NOT_NUL_TERMINATED","features":[46]},{"name":"ER_BUS_NOT_OWNER","features":[46]},{"name":"ER_BUS_NO_AUTHENTICATION_MECHANISM","features":[46]},{"name":"ER_BUS_NO_CALL_FOR_REPLY","features":[46]},{"name":"ER_BUS_NO_ENDPOINT","features":[46]},{"name":"ER_BUS_NO_LISTENER","features":[46]},{"name":"ER_BUS_NO_PEER_GUID","features":[46]},{"name":"ER_BUS_NO_ROUTE","features":[46]},{"name":"ER_BUS_NO_SESSION","features":[46]},{"name":"ER_BUS_NO_SUCH_ANNOTATION","features":[46]},{"name":"ER_BUS_NO_SUCH_HANDLE","features":[46]},{"name":"ER_BUS_NO_SUCH_INTERFACE","features":[46]},{"name":"ER_BUS_NO_SUCH_MESSAGE","features":[46]},{"name":"ER_BUS_NO_SUCH_OBJECT","features":[46]},{"name":"ER_BUS_NO_SUCH_PROPERTY","features":[46]},{"name":"ER_BUS_NO_SUCH_SERVICE","features":[46]},{"name":"ER_BUS_NO_TRANSPORTS","features":[46]},{"name":"ER_BUS_OBJECT_NOT_REGISTERED","features":[46]},{"name":"ER_BUS_OBJECT_NO_SUCH_INTERFACE","features":[46]},{"name":"ER_BUS_OBJECT_NO_SUCH_MEMBER","features":[46]},{"name":"ER_BUS_OBJ_ALREADY_EXISTS","features":[46]},{"name":"ER_BUS_OBJ_NOT_FOUND","features":[46]},{"name":"ER_BUS_PATH_MISSING","features":[46]},{"name":"ER_BUS_PEER_AUTH_VERSION_MISMATCH","features":[46]},{"name":"ER_BUS_PING_GROUP_NOT_FOUND","features":[46]},{"name":"ER_BUS_POLICY_VIOLATION","features":[46]},{"name":"ER_BUS_PROPERTY_ACCESS_DENIED","features":[46]},{"name":"ER_BUS_PROPERTY_ALREADY_EXISTS","features":[46]},{"name":"ER_BUS_PROPERTY_VALUE_NOT_SET","features":[46]},{"name":"ER_BUS_READ_ERROR","features":[46]},{"name":"ER_BUS_REMOVED_BY_BINDER","features":[46]},{"name":"ER_BUS_REMOVED_BY_BINDER_SELF","features":[46]},{"name":"ER_BUS_REPLY_IS_ERROR_MESSAGE","features":[46]},{"name":"ER_BUS_REPLY_SERIAL_MISSING","features":[46]},{"name":"ER_BUS_SECURITY_FATAL","features":[46]},{"name":"ER_BUS_SECURITY_NOT_ENABLED","features":[46]},{"name":"ER_BUS_SELF_CONNECT","features":[46]},{"name":"ER_BUS_SET_PROPERTY_REJECTED","features":[46]},{"name":"ER_BUS_SET_WRONG_SIGNATURE","features":[46]},{"name":"ER_BUS_SIGNATURE_MISMATCH","features":[46]},{"name":"ER_BUS_STOPPING","features":[46]},{"name":"ER_BUS_TIME_TO_LIVE_EXPIRED","features":[46]},{"name":"ER_BUS_TRANSPORT_ACCESS_DENIED","features":[46]},{"name":"ER_BUS_TRANSPORT_NOT_AVAILABLE","features":[46]},{"name":"ER_BUS_TRANSPORT_NOT_STARTED","features":[46]},{"name":"ER_BUS_TRUNCATED","features":[46]},{"name":"ER_BUS_UNEXPECTED_DISPOSITION","features":[46]},{"name":"ER_BUS_UNEXPECTED_SIGNATURE","features":[46]},{"name":"ER_BUS_UNKNOWN_INTERFACE","features":[46]},{"name":"ER_BUS_UNKNOWN_PATH","features":[46]},{"name":"ER_BUS_UNKNOWN_SERIAL","features":[46]},{"name":"ER_BUS_UNMATCHED_REPLY_SERIAL","features":[46]},{"name":"ER_BUS_WAIT_FAILED","features":[46]},{"name":"ER_BUS_WRITE_ERROR","features":[46]},{"name":"ER_BUS_WRITE_QUEUE_FULL","features":[46]},{"name":"ER_CERTIFICATE_NOT_FOUND","features":[46]},{"name":"ER_COMMON_ERRORS","features":[46]},{"name":"ER_CONNECTION_LIMIT_EXCEEDED","features":[46]},{"name":"ER_CONN_REFUSED","features":[46]},{"name":"ER_CORRUPT_KEYBLOB","features":[46]},{"name":"ER_CRYPTO_ERROR","features":[46]},{"name":"ER_CRYPTO_HASH_UNINITIALIZED","features":[46]},{"name":"ER_CRYPTO_ILLEGAL_PARAMETERS","features":[46]},{"name":"ER_CRYPTO_INSUFFICIENT_SECURITY","features":[46]},{"name":"ER_CRYPTO_KEY_UNAVAILABLE","features":[46]},{"name":"ER_CRYPTO_KEY_UNUSABLE","features":[46]},{"name":"ER_CRYPTO_TRUNCATED","features":[46]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NON_EXISTENT","features":[46]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NOT_OWNER","features":[46]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_RELEASED","features":[46]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER","features":[46]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_EXISTS","features":[46]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_IN_QUEUE","features":[46]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER","features":[46]},{"name":"ER_DBUS_START_REPLY_ALREADY_RUNNING","features":[46]},{"name":"ER_DEADLOCK","features":[46]},{"name":"ER_DEAD_THREAD","features":[46]},{"name":"ER_DIGEST_MISMATCH","features":[46]},{"name":"ER_DUPLICATE_CERTIFICATE","features":[46]},{"name":"ER_DUPLICATE_KEY","features":[46]},{"name":"ER_EMPTY_KEY_BLOB","features":[46]},{"name":"ER_END_OF_DATA","features":[46]},{"name":"ER_EOF","features":[46]},{"name":"ER_EXTERNAL_THREAD","features":[46]},{"name":"ER_FAIL","features":[46]},{"name":"ER_FEATURE_NOT_AVAILABLE","features":[46]},{"name":"ER_INIT_FAILED","features":[46]},{"name":"ER_INVALID_ADDRESS","features":[46]},{"name":"ER_INVALID_APPLICATION_STATE","features":[46]},{"name":"ER_INVALID_CERTIFICATE","features":[46]},{"name":"ER_INVALID_CERTIFICATE_USAGE","features":[46]},{"name":"ER_INVALID_CERT_CHAIN","features":[46]},{"name":"ER_INVALID_CONFIG","features":[46]},{"name":"ER_INVALID_DATA","features":[46]},{"name":"ER_INVALID_GUID","features":[46]},{"name":"ER_INVALID_HTTP_METHOD_USED_FOR_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[46]},{"name":"ER_INVALID_KEY_ENCODING","features":[46]},{"name":"ER_INVALID_ON_DEMAND_CONNECTION_MESSAGE_RESPONSE","features":[46]},{"name":"ER_INVALID_PERSISTENT_CONNECTION_MESSAGE_RESPONSE","features":[46]},{"name":"ER_INVALID_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[46]},{"name":"ER_INVALID_SIGNAL_EMISSION_TYPE","features":[46]},{"name":"ER_INVALID_STREAM","features":[46]},{"name":"ER_IODISPATCH_STOPPING","features":[46]},{"name":"ER_KEY_STORE_ALREADY_INITIALIZED","features":[46]},{"name":"ER_KEY_STORE_ID_NOT_YET_SET","features":[46]},{"name":"ER_LANGUAGE_NOT_SUPPORTED","features":[46]},{"name":"ER_MANAGEMENT_ALREADY_STARTED","features":[46]},{"name":"ER_MANAGEMENT_NOT_STARTED","features":[46]},{"name":"ER_MANIFEST_NOT_FOUND","features":[46]},{"name":"ER_MANIFEST_REJECTED","features":[46]},{"name":"ER_MISSING_DIGEST_IN_CERTIFICATE","features":[46]},{"name":"ER_NONE","features":[46]},{"name":"ER_NOT_CONN","features":[46]},{"name":"ER_NOT_CONNECTED_TO_RENDEZVOUS_SERVER","features":[46]},{"name":"ER_NOT_IMPLEMENTED","features":[46]},{"name":"ER_NO_COMMON_TRUST","features":[46]},{"name":"ER_NO_SUCH_ALARM","features":[46]},{"name":"ER_NO_SUCH_DEVICE","features":[46]},{"name":"ER_NO_TRUST_ANCHOR","features":[46]},{"name":"ER_OK","features":[46]},{"name":"ER_OPEN_FAILED","features":[46]},{"name":"ER_OS_ERROR","features":[46]},{"name":"ER_OUT_OF_MEMORY","features":[46]},{"name":"ER_P2P","features":[46]},{"name":"ER_P2P_BUSY","features":[46]},{"name":"ER_P2P_DISABLED","features":[46]},{"name":"ER_P2P_FORBIDDEN","features":[46]},{"name":"ER_P2P_NOT_CONNECTED","features":[46]},{"name":"ER_P2P_NO_GO","features":[46]},{"name":"ER_P2P_NO_STA","features":[46]},{"name":"ER_P2P_TIMEOUT","features":[46]},{"name":"ER_PACKET_BAD_CRC","features":[46]},{"name":"ER_PACKET_BAD_FORMAT","features":[46]},{"name":"ER_PACKET_BAD_PARAMETER","features":[46]},{"name":"ER_PACKET_BUS_NO_SUCH_CHANNEL","features":[46]},{"name":"ER_PACKET_CHANNEL_FAIL","features":[46]},{"name":"ER_PACKET_CONNECT_TIMEOUT","features":[46]},{"name":"ER_PACKET_TOO_LARGE","features":[46]},{"name":"ER_PARSE_ERROR","features":[46]},{"name":"ER_PERMISSION_DENIED","features":[46]},{"name":"ER_POLICY_NOT_NEWER","features":[46]},{"name":"ER_PROXIMITY_CONNECTION_ESTABLISH_FAIL","features":[46]},{"name":"ER_PROXIMITY_NO_PEERS_FOUND","features":[46]},{"name":"ER_READ_ERROR","features":[46]},{"name":"ER_RENDEZVOUS_SERVER_DEACTIVATED_USER","features":[46]},{"name":"ER_RENDEZVOUS_SERVER_ERR401_UNAUTHORIZED_REQUEST","features":[46]},{"name":"ER_RENDEZVOUS_SERVER_ERR500_INTERNAL_ERROR","features":[46]},{"name":"ER_RENDEZVOUS_SERVER_ERR503_STATUS_UNAVAILABLE","features":[46]},{"name":"ER_RENDEZVOUS_SERVER_ROOT_CERTIFICATE_UNINITIALIZED","features":[46]},{"name":"ER_RENDEZVOUS_SERVER_UNKNOWN_USER","features":[46]},{"name":"ER_RENDEZVOUS_SERVER_UNRECOVERABLE_ERROR","features":[46]},{"name":"ER_SLAP_CRC_ERROR","features":[46]},{"name":"ER_SLAP_ERROR","features":[46]},{"name":"ER_SLAP_HDR_CHECKSUM_ERROR","features":[46]},{"name":"ER_SLAP_INVALID_PACKET_LEN","features":[46]},{"name":"ER_SLAP_INVALID_PACKET_TYPE","features":[46]},{"name":"ER_SLAP_LEN_MISMATCH","features":[46]},{"name":"ER_SLAP_OTHER_END_CLOSED","features":[46]},{"name":"ER_SLAP_PACKET_TYPE_MISMATCH","features":[46]},{"name":"ER_SOCKET_BIND_ERROR","features":[46]},{"name":"ER_SOCK_CLOSING","features":[46]},{"name":"ER_SOCK_OTHER_END_CLOSED","features":[46]},{"name":"ER_SSL_CONNECT","features":[46]},{"name":"ER_SSL_ERRORS","features":[46]},{"name":"ER_SSL_INIT","features":[46]},{"name":"ER_SSL_VERIFY","features":[46]},{"name":"ER_STOPPING_THREAD","features":[46]},{"name":"ER_TCP_MAX_UNTRUSTED","features":[46]},{"name":"ER_THREADPOOL_EXHAUSTED","features":[46]},{"name":"ER_THREADPOOL_STOPPING","features":[46]},{"name":"ER_THREAD_NO_WAIT","features":[46]},{"name":"ER_THREAD_RUNNING","features":[46]},{"name":"ER_THREAD_STOPPING","features":[46]},{"name":"ER_TIMEOUT","features":[46]},{"name":"ER_TIMER_EXITING","features":[46]},{"name":"ER_TIMER_FALLBEHIND","features":[46]},{"name":"ER_TIMER_FULL","features":[46]},{"name":"ER_TIMER_NOT_ALLOWED","features":[46]},{"name":"ER_UDP_BACKPRESSURE","features":[46]},{"name":"ER_UDP_BUSHELLO","features":[46]},{"name":"ER_UDP_DEMUX_NO_ENDPOINT","features":[46]},{"name":"ER_UDP_DISCONNECT","features":[46]},{"name":"ER_UDP_EARLY_EXIT","features":[46]},{"name":"ER_UDP_ENDPOINT_NOT_STARTED","features":[46]},{"name":"ER_UDP_ENDPOINT_REMOVED","features":[46]},{"name":"ER_UDP_ENDPOINT_STALLED","features":[46]},{"name":"ER_UDP_INVALID","features":[46]},{"name":"ER_UDP_LOCAL_DISCONNECT","features":[46]},{"name":"ER_UDP_LOCAL_DISCONNECT_FAIL","features":[46]},{"name":"ER_UDP_MESSAGE","features":[46]},{"name":"ER_UDP_MSG_TOO_LONG","features":[46]},{"name":"ER_UDP_NOT_DISCONNECTED","features":[46]},{"name":"ER_UDP_NOT_IMPLEMENTED","features":[46]},{"name":"ER_UDP_NO_LISTENER","features":[46]},{"name":"ER_UDP_NO_NETWORK","features":[46]},{"name":"ER_UDP_STOPPING","features":[46]},{"name":"ER_UDP_UNEXPECTED_FLOW","features":[46]},{"name":"ER_UDP_UNEXPECTED_LENGTH","features":[46]},{"name":"ER_UDP_UNSUPPORTED","features":[46]},{"name":"ER_UNABLE_TO_CONNECT_TO_RENDEZVOUS_SERVER","features":[46]},{"name":"ER_UNABLE_TO_SEND_MESSAGE_TO_RENDEZVOUS_SERVER","features":[46]},{"name":"ER_UNKNOWN_CERTIFICATE","features":[46]},{"name":"ER_UTF_CONVERSION_FAILED","features":[46]},{"name":"ER_WARNING","features":[46]},{"name":"ER_WOULDBLOCK","features":[46]},{"name":"ER_WRITE_ERROR","features":[46]},{"name":"ER_XML_ACLS_MISSING","features":[46]},{"name":"ER_XML_ACL_ALL_TYPE_PEER_WITH_OTHERS","features":[46]},{"name":"ER_XML_ACL_PEERS_MISSING","features":[46]},{"name":"ER_XML_ACL_PEER_NOT_UNIQUE","features":[46]},{"name":"ER_XML_ACL_PEER_PUBLIC_KEY_SET","features":[46]},{"name":"ER_XML_ANNOTATION_NOT_UNIQUE","features":[46]},{"name":"ER_XML_CONVERTER_ERROR","features":[46]},{"name":"ER_XML_INTERFACE_MEMBERS_MISSING","features":[46]},{"name":"ER_XML_INTERFACE_NAME_NOT_UNIQUE","features":[46]},{"name":"ER_XML_INVALID_ACL_PEER_CHILDREN_COUNT","features":[46]},{"name":"ER_XML_INVALID_ACL_PEER_PUBLIC_KEY","features":[46]},{"name":"ER_XML_INVALID_ACL_PEER_TYPE","features":[46]},{"name":"ER_XML_INVALID_ANNOTATIONS_COUNT","features":[46]},{"name":"ER_XML_INVALID_ATTRIBUTE_VALUE","features":[46]},{"name":"ER_XML_INVALID_BASE64","features":[46]},{"name":"ER_XML_INVALID_ELEMENT_CHILDREN_COUNT","features":[46]},{"name":"ER_XML_INVALID_ELEMENT_NAME","features":[46]},{"name":"ER_XML_INVALID_INTERFACE_NAME","features":[46]},{"name":"ER_XML_INVALID_MANIFEST_VERSION","features":[46]},{"name":"ER_XML_INVALID_MEMBER_ACTION","features":[46]},{"name":"ER_XML_INVALID_MEMBER_NAME","features":[46]},{"name":"ER_XML_INVALID_MEMBER_TYPE","features":[46]},{"name":"ER_XML_INVALID_OBJECT_PATH","features":[46]},{"name":"ER_XML_INVALID_OID","features":[46]},{"name":"ER_XML_INVALID_POLICY_SERIAL_NUMBER","features":[46]},{"name":"ER_XML_INVALID_POLICY_VERSION","features":[46]},{"name":"ER_XML_INVALID_RULES_COUNT","features":[46]},{"name":"ER_XML_INVALID_SECURITY_LEVEL_ANNOTATION_VALUE","features":[46]},{"name":"ER_XML_MALFORMED","features":[46]},{"name":"ER_XML_MEMBER_DENY_ACTION_WITH_OTHER","features":[46]},{"name":"ER_XML_MEMBER_NAME_NOT_UNIQUE","features":[46]},{"name":"ER_XML_OBJECT_PATH_NOT_UNIQUE","features":[46]},{"name":"NEED_UPDATE","features":[46]},{"name":"NOT_CLAIMABLE","features":[46]},{"name":"PASSWORD_GENERATED_BY_APPLICATION","features":[46]},{"name":"PASSWORD_GENERATED_BY_SECURITY_MANAGER","features":[46]},{"name":"QCC_FALSE","features":[46]},{"name":"QCC_StatusText","features":[46]},{"name":"QCC_TRUE","features":[46]},{"name":"QStatus","features":[46]},{"name":"UNANNOUNCED","features":[46]},{"name":"alljoyn_about_announced_ptr","features":[46]},{"name":"alljoyn_about_announceflag","features":[46]},{"name":"alljoyn_aboutdata","features":[46]},{"name":"alljoyn_aboutdata_create","features":[46]},{"name":"alljoyn_aboutdata_create_empty","features":[46]},{"name":"alljoyn_aboutdata_create_full","features":[46]},{"name":"alljoyn_aboutdata_createfrommsgarg","features":[46]},{"name":"alljoyn_aboutdata_createfromxml","features":[46]},{"name":"alljoyn_aboutdata_destroy","features":[46]},{"name":"alljoyn_aboutdata_getaboutdata","features":[46]},{"name":"alljoyn_aboutdata_getajsoftwareversion","features":[46]},{"name":"alljoyn_aboutdata_getannouncedaboutdata","features":[46]},{"name":"alljoyn_aboutdata_getappid","features":[46]},{"name":"alljoyn_aboutdata_getappname","features":[46]},{"name":"alljoyn_aboutdata_getdateofmanufacture","features":[46]},{"name":"alljoyn_aboutdata_getdefaultlanguage","features":[46]},{"name":"alljoyn_aboutdata_getdescription","features":[46]},{"name":"alljoyn_aboutdata_getdeviceid","features":[46]},{"name":"alljoyn_aboutdata_getdevicename","features":[46]},{"name":"alljoyn_aboutdata_getfield","features":[46]},{"name":"alljoyn_aboutdata_getfields","features":[46]},{"name":"alljoyn_aboutdata_getfieldsignature","features":[46]},{"name":"alljoyn_aboutdata_gethardwareversion","features":[46]},{"name":"alljoyn_aboutdata_getmanufacturer","features":[46]},{"name":"alljoyn_aboutdata_getmodelnumber","features":[46]},{"name":"alljoyn_aboutdata_getsoftwareversion","features":[46]},{"name":"alljoyn_aboutdata_getsupportedlanguages","features":[46]},{"name":"alljoyn_aboutdata_getsupporturl","features":[46]},{"name":"alljoyn_aboutdata_isfieldannounced","features":[46]},{"name":"alljoyn_aboutdata_isfieldlocalized","features":[46]},{"name":"alljoyn_aboutdata_isfieldrequired","features":[46]},{"name":"alljoyn_aboutdata_isvalid","features":[46]},{"name":"alljoyn_aboutdata_setappid","features":[46]},{"name":"alljoyn_aboutdata_setappid_fromstring","features":[46]},{"name":"alljoyn_aboutdata_setappname","features":[46]},{"name":"alljoyn_aboutdata_setdateofmanufacture","features":[46]},{"name":"alljoyn_aboutdata_setdefaultlanguage","features":[46]},{"name":"alljoyn_aboutdata_setdescription","features":[46]},{"name":"alljoyn_aboutdata_setdeviceid","features":[46]},{"name":"alljoyn_aboutdata_setdevicename","features":[46]},{"name":"alljoyn_aboutdata_setfield","features":[46]},{"name":"alljoyn_aboutdata_sethardwareversion","features":[46]},{"name":"alljoyn_aboutdata_setmanufacturer","features":[46]},{"name":"alljoyn_aboutdata_setmodelnumber","features":[46]},{"name":"alljoyn_aboutdata_setsoftwareversion","features":[46]},{"name":"alljoyn_aboutdata_setsupportedlanguage","features":[46]},{"name":"alljoyn_aboutdata_setsupporturl","features":[46]},{"name":"alljoyn_aboutdatalistener","features":[46]},{"name":"alljoyn_aboutdatalistener_callbacks","features":[46]},{"name":"alljoyn_aboutdatalistener_create","features":[46]},{"name":"alljoyn_aboutdatalistener_destroy","features":[46]},{"name":"alljoyn_aboutdatalistener_getaboutdata_ptr","features":[46]},{"name":"alljoyn_aboutdatalistener_getannouncedaboutdata_ptr","features":[46]},{"name":"alljoyn_abouticon","features":[46]},{"name":"alljoyn_abouticon_clear","features":[46]},{"name":"alljoyn_abouticon_create","features":[46]},{"name":"alljoyn_abouticon_destroy","features":[46]},{"name":"alljoyn_abouticon_getcontent","features":[46]},{"name":"alljoyn_abouticon_geturl","features":[46]},{"name":"alljoyn_abouticon_setcontent","features":[46]},{"name":"alljoyn_abouticon_setcontent_frommsgarg","features":[46]},{"name":"alljoyn_abouticon_seturl","features":[46]},{"name":"alljoyn_abouticonobj","features":[46]},{"name":"alljoyn_abouticonobj_create","features":[46]},{"name":"alljoyn_abouticonobj_destroy","features":[46]},{"name":"alljoyn_abouticonproxy","features":[46]},{"name":"alljoyn_abouticonproxy_create","features":[46]},{"name":"alljoyn_abouticonproxy_destroy","features":[46]},{"name":"alljoyn_abouticonproxy_geticon","features":[46]},{"name":"alljoyn_abouticonproxy_getversion","features":[46]},{"name":"alljoyn_aboutlistener","features":[46]},{"name":"alljoyn_aboutlistener_callback","features":[46]},{"name":"alljoyn_aboutlistener_create","features":[46]},{"name":"alljoyn_aboutlistener_destroy","features":[46]},{"name":"alljoyn_aboutobj","features":[46]},{"name":"alljoyn_aboutobj_announce","features":[46]},{"name":"alljoyn_aboutobj_announce_using_datalistener","features":[46]},{"name":"alljoyn_aboutobj_create","features":[46]},{"name":"alljoyn_aboutobj_destroy","features":[46]},{"name":"alljoyn_aboutobj_unannounce","features":[46]},{"name":"alljoyn_aboutobjectdescription","features":[46]},{"name":"alljoyn_aboutobjectdescription_clear","features":[46]},{"name":"alljoyn_aboutobjectdescription_create","features":[46]},{"name":"alljoyn_aboutobjectdescription_create_full","features":[46]},{"name":"alljoyn_aboutobjectdescription_createfrommsgarg","features":[46]},{"name":"alljoyn_aboutobjectdescription_destroy","features":[46]},{"name":"alljoyn_aboutobjectdescription_getinterfacepaths","features":[46]},{"name":"alljoyn_aboutobjectdescription_getinterfaces","features":[46]},{"name":"alljoyn_aboutobjectdescription_getmsgarg","features":[46]},{"name":"alljoyn_aboutobjectdescription_getpaths","features":[46]},{"name":"alljoyn_aboutobjectdescription_hasinterface","features":[46]},{"name":"alljoyn_aboutobjectdescription_hasinterfaceatpath","features":[46]},{"name":"alljoyn_aboutobjectdescription_haspath","features":[46]},{"name":"alljoyn_aboutproxy","features":[46]},{"name":"alljoyn_aboutproxy_create","features":[46]},{"name":"alljoyn_aboutproxy_destroy","features":[46]},{"name":"alljoyn_aboutproxy_getaboutdata","features":[46]},{"name":"alljoyn_aboutproxy_getobjectdescription","features":[46]},{"name":"alljoyn_aboutproxy_getversion","features":[46]},{"name":"alljoyn_applicationstate","features":[46]},{"name":"alljoyn_applicationstatelistener","features":[46]},{"name":"alljoyn_applicationstatelistener_callbacks","features":[46]},{"name":"alljoyn_applicationstatelistener_create","features":[46]},{"name":"alljoyn_applicationstatelistener_destroy","features":[46]},{"name":"alljoyn_applicationstatelistener_state_ptr","features":[46]},{"name":"alljoyn_authlistener","features":[46]},{"name":"alljoyn_authlistener_authenticationcomplete_ptr","features":[46]},{"name":"alljoyn_authlistener_callbacks","features":[46]},{"name":"alljoyn_authlistener_create","features":[46]},{"name":"alljoyn_authlistener_destroy","features":[46]},{"name":"alljoyn_authlistener_requestcredentials_ptr","features":[46]},{"name":"alljoyn_authlistener_requestcredentialsasync_ptr","features":[46]},{"name":"alljoyn_authlistener_requestcredentialsresponse","features":[46]},{"name":"alljoyn_authlistener_securityviolation_ptr","features":[46]},{"name":"alljoyn_authlistener_setsharedsecret","features":[46]},{"name":"alljoyn_authlistener_verifycredentials_ptr","features":[46]},{"name":"alljoyn_authlistener_verifycredentialsasync_ptr","features":[46]},{"name":"alljoyn_authlistener_verifycredentialsresponse","features":[46]},{"name":"alljoyn_authlistenerasync_callbacks","features":[46]},{"name":"alljoyn_authlistenerasync_create","features":[46]},{"name":"alljoyn_authlistenerasync_destroy","features":[46]},{"name":"alljoyn_autopinger","features":[46]},{"name":"alljoyn_autopinger_adddestination","features":[46]},{"name":"alljoyn_autopinger_addpinggroup","features":[46]},{"name":"alljoyn_autopinger_create","features":[46]},{"name":"alljoyn_autopinger_destination_found_ptr","features":[46]},{"name":"alljoyn_autopinger_destination_lost_ptr","features":[46]},{"name":"alljoyn_autopinger_destroy","features":[46]},{"name":"alljoyn_autopinger_pause","features":[46]},{"name":"alljoyn_autopinger_removedestination","features":[46]},{"name":"alljoyn_autopinger_removepinggroup","features":[46]},{"name":"alljoyn_autopinger_resume","features":[46]},{"name":"alljoyn_autopinger_setpinginterval","features":[46]},{"name":"alljoyn_busattachment","features":[46]},{"name":"alljoyn_busattachment_addlogonentry","features":[46]},{"name":"alljoyn_busattachment_addmatch","features":[46]},{"name":"alljoyn_busattachment_advertisename","features":[46]},{"name":"alljoyn_busattachment_bindsessionport","features":[46]},{"name":"alljoyn_busattachment_canceladvertisename","features":[46]},{"name":"alljoyn_busattachment_cancelfindadvertisedname","features":[46]},{"name":"alljoyn_busattachment_cancelfindadvertisednamebytransport","features":[46]},{"name":"alljoyn_busattachment_cancelwhoimplements_interface","features":[46]},{"name":"alljoyn_busattachment_cancelwhoimplements_interfaces","features":[46]},{"name":"alljoyn_busattachment_clearkeys","features":[46]},{"name":"alljoyn_busattachment_clearkeystore","features":[46]},{"name":"alljoyn_busattachment_connect","features":[46]},{"name":"alljoyn_busattachment_create","features":[46]},{"name":"alljoyn_busattachment_create_concurrency","features":[46]},{"name":"alljoyn_busattachment_createinterface","features":[46]},{"name":"alljoyn_busattachment_createinterface_secure","features":[46]},{"name":"alljoyn_busattachment_createinterfacesfromxml","features":[46]},{"name":"alljoyn_busattachment_deletedefaultkeystore","features":[46]},{"name":"alljoyn_busattachment_deleteinterface","features":[46]},{"name":"alljoyn_busattachment_destroy","features":[46]},{"name":"alljoyn_busattachment_disconnect","features":[46]},{"name":"alljoyn_busattachment_enableconcurrentcallbacks","features":[46]},{"name":"alljoyn_busattachment_enablepeersecurity","features":[46]},{"name":"alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener","features":[46]},{"name":"alljoyn_busattachment_findadvertisedname","features":[46]},{"name":"alljoyn_busattachment_findadvertisednamebytransport","features":[46]},{"name":"alljoyn_busattachment_getalljoyndebugobj","features":[46]},{"name":"alljoyn_busattachment_getalljoynproxyobj","features":[46]},{"name":"alljoyn_busattachment_getconcurrency","features":[46]},{"name":"alljoyn_busattachment_getconnectspec","features":[46]},{"name":"alljoyn_busattachment_getdbusproxyobj","features":[46]},{"name":"alljoyn_busattachment_getglobalguidstring","features":[46]},{"name":"alljoyn_busattachment_getinterface","features":[46]},{"name":"alljoyn_busattachment_getinterfaces","features":[46]},{"name":"alljoyn_busattachment_getkeyexpiration","features":[46]},{"name":"alljoyn_busattachment_getpeerguid","features":[46]},{"name":"alljoyn_busattachment_getpermissionconfigurator","features":[46]},{"name":"alljoyn_busattachment_gettimestamp","features":[46]},{"name":"alljoyn_busattachment_getuniquename","features":[46]},{"name":"alljoyn_busattachment_isconnected","features":[46]},{"name":"alljoyn_busattachment_ispeersecurityenabled","features":[46]},{"name":"alljoyn_busattachment_isstarted","features":[46]},{"name":"alljoyn_busattachment_isstopping","features":[46]},{"name":"alljoyn_busattachment_join","features":[46]},{"name":"alljoyn_busattachment_joinsession","features":[46]},{"name":"alljoyn_busattachment_joinsessionasync","features":[46]},{"name":"alljoyn_busattachment_joinsessioncb_ptr","features":[46]},{"name":"alljoyn_busattachment_leavesession","features":[46]},{"name":"alljoyn_busattachment_namehasowner","features":[46]},{"name":"alljoyn_busattachment_ping","features":[46]},{"name":"alljoyn_busattachment_registeraboutlistener","features":[46]},{"name":"alljoyn_busattachment_registerapplicationstatelistener","features":[46]},{"name":"alljoyn_busattachment_registerbuslistener","features":[46]},{"name":"alljoyn_busattachment_registerbusobject","features":[46]},{"name":"alljoyn_busattachment_registerbusobject_secure","features":[46]},{"name":"alljoyn_busattachment_registerkeystorelistener","features":[46]},{"name":"alljoyn_busattachment_registersignalhandler","features":[46]},{"name":"alljoyn_busattachment_registersignalhandlerwithrule","features":[46]},{"name":"alljoyn_busattachment_releasename","features":[46]},{"name":"alljoyn_busattachment_reloadkeystore","features":[46]},{"name":"alljoyn_busattachment_removematch","features":[46]},{"name":"alljoyn_busattachment_removesessionmember","features":[46]},{"name":"alljoyn_busattachment_requestname","features":[46]},{"name":"alljoyn_busattachment_secureconnection","features":[46]},{"name":"alljoyn_busattachment_secureconnectionasync","features":[46]},{"name":"alljoyn_busattachment_setdaemondebug","features":[46]},{"name":"alljoyn_busattachment_setkeyexpiration","features":[46]},{"name":"alljoyn_busattachment_setlinktimeout","features":[46]},{"name":"alljoyn_busattachment_setlinktimeoutasync","features":[46]},{"name":"alljoyn_busattachment_setlinktimeoutcb_ptr","features":[46]},{"name":"alljoyn_busattachment_setsessionlistener","features":[46]},{"name":"alljoyn_busattachment_start","features":[46]},{"name":"alljoyn_busattachment_stop","features":[46]},{"name":"alljoyn_busattachment_unbindsessionport","features":[46]},{"name":"alljoyn_busattachment_unregisteraboutlistener","features":[46]},{"name":"alljoyn_busattachment_unregisterallaboutlisteners","features":[46]},{"name":"alljoyn_busattachment_unregisterallhandlers","features":[46]},{"name":"alljoyn_busattachment_unregisterapplicationstatelistener","features":[46]},{"name":"alljoyn_busattachment_unregisterbuslistener","features":[46]},{"name":"alljoyn_busattachment_unregisterbusobject","features":[46]},{"name":"alljoyn_busattachment_unregistersignalhandler","features":[46]},{"name":"alljoyn_busattachment_unregistersignalhandlerwithrule","features":[46]},{"name":"alljoyn_busattachment_whoimplements_interface","features":[46]},{"name":"alljoyn_busattachment_whoimplements_interfaces","features":[46]},{"name":"alljoyn_buslistener","features":[46]},{"name":"alljoyn_buslistener_bus_disconnected_ptr","features":[46]},{"name":"alljoyn_buslistener_bus_prop_changed_ptr","features":[46]},{"name":"alljoyn_buslistener_bus_stopping_ptr","features":[46]},{"name":"alljoyn_buslistener_callbacks","features":[46]},{"name":"alljoyn_buslistener_create","features":[46]},{"name":"alljoyn_buslistener_destroy","features":[46]},{"name":"alljoyn_buslistener_found_advertised_name_ptr","features":[46]},{"name":"alljoyn_buslistener_listener_registered_ptr","features":[46]},{"name":"alljoyn_buslistener_listener_unregistered_ptr","features":[46]},{"name":"alljoyn_buslistener_lost_advertised_name_ptr","features":[46]},{"name":"alljoyn_buslistener_name_owner_changed_ptr","features":[46]},{"name":"alljoyn_busobject","features":[46]},{"name":"alljoyn_busobject_addinterface","features":[46]},{"name":"alljoyn_busobject_addinterface_announced","features":[46]},{"name":"alljoyn_busobject_addmethodhandler","features":[46]},{"name":"alljoyn_busobject_addmethodhandlers","features":[46]},{"name":"alljoyn_busobject_callbacks","features":[46]},{"name":"alljoyn_busobject_cancelsessionlessmessage","features":[46]},{"name":"alljoyn_busobject_cancelsessionlessmessage_serial","features":[46]},{"name":"alljoyn_busobject_create","features":[46]},{"name":"alljoyn_busobject_destroy","features":[46]},{"name":"alljoyn_busobject_emitpropertieschanged","features":[46]},{"name":"alljoyn_busobject_emitpropertychanged","features":[46]},{"name":"alljoyn_busobject_getannouncedinterfacenames","features":[46]},{"name":"alljoyn_busobject_getbusattachment","features":[46]},{"name":"alljoyn_busobject_getname","features":[46]},{"name":"alljoyn_busobject_getpath","features":[46]},{"name":"alljoyn_busobject_issecure","features":[46]},{"name":"alljoyn_busobject_methodentry","features":[46]},{"name":"alljoyn_busobject_methodreply_args","features":[46]},{"name":"alljoyn_busobject_methodreply_err","features":[46]},{"name":"alljoyn_busobject_methodreply_status","features":[46]},{"name":"alljoyn_busobject_object_registration_ptr","features":[46]},{"name":"alljoyn_busobject_prop_get_ptr","features":[46]},{"name":"alljoyn_busobject_prop_set_ptr","features":[46]},{"name":"alljoyn_busobject_setannounceflag","features":[46]},{"name":"alljoyn_busobject_signal","features":[46]},{"name":"alljoyn_certificateid","features":[46]},{"name":"alljoyn_certificateidarray","features":[46]},{"name":"alljoyn_claimcapability_masks","features":[46]},{"name":"alljoyn_claimcapabilityadditionalinfo_masks","features":[46]},{"name":"alljoyn_credentials","features":[46]},{"name":"alljoyn_credentials_clear","features":[46]},{"name":"alljoyn_credentials_create","features":[46]},{"name":"alljoyn_credentials_destroy","features":[46]},{"name":"alljoyn_credentials_getcertchain","features":[46]},{"name":"alljoyn_credentials_getexpiration","features":[46]},{"name":"alljoyn_credentials_getlogonentry","features":[46]},{"name":"alljoyn_credentials_getpassword","features":[46]},{"name":"alljoyn_credentials_getprivateKey","features":[46]},{"name":"alljoyn_credentials_getusername","features":[46]},{"name":"alljoyn_credentials_isset","features":[46]},{"name":"alljoyn_credentials_setcertchain","features":[46]},{"name":"alljoyn_credentials_setexpiration","features":[46]},{"name":"alljoyn_credentials_setlogonentry","features":[46]},{"name":"alljoyn_credentials_setpassword","features":[46]},{"name":"alljoyn_credentials_setprivatekey","features":[46]},{"name":"alljoyn_credentials_setusername","features":[46]},{"name":"alljoyn_getbuildinfo","features":[46]},{"name":"alljoyn_getnumericversion","features":[46]},{"name":"alljoyn_getversion","features":[46]},{"name":"alljoyn_init","features":[46]},{"name":"alljoyn_interfacedescription","features":[46]},{"name":"alljoyn_interfacedescription_activate","features":[46]},{"name":"alljoyn_interfacedescription_addannotation","features":[46]},{"name":"alljoyn_interfacedescription_addargannotation","features":[46]},{"name":"alljoyn_interfacedescription_addmember","features":[46]},{"name":"alljoyn_interfacedescription_addmemberannotation","features":[46]},{"name":"alljoyn_interfacedescription_addmethod","features":[46]},{"name":"alljoyn_interfacedescription_addproperty","features":[46]},{"name":"alljoyn_interfacedescription_addpropertyannotation","features":[46]},{"name":"alljoyn_interfacedescription_addsignal","features":[46]},{"name":"alljoyn_interfacedescription_eql","features":[46]},{"name":"alljoyn_interfacedescription_getannotation","features":[46]},{"name":"alljoyn_interfacedescription_getannotationatindex","features":[46]},{"name":"alljoyn_interfacedescription_getannotationscount","features":[46]},{"name":"alljoyn_interfacedescription_getargdescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_getdescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages","features":[46]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages2","features":[46]},{"name":"alljoyn_interfacedescription_getdescriptiontranslationcallback","features":[46]},{"name":"alljoyn_interfacedescription_getmember","features":[46]},{"name":"alljoyn_interfacedescription_getmemberannotation","features":[46]},{"name":"alljoyn_interfacedescription_getmemberargannotation","features":[46]},{"name":"alljoyn_interfacedescription_getmemberdescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_getmembers","features":[46]},{"name":"alljoyn_interfacedescription_getmethod","features":[46]},{"name":"alljoyn_interfacedescription_getname","features":[46]},{"name":"alljoyn_interfacedescription_getproperties","features":[46]},{"name":"alljoyn_interfacedescription_getproperty","features":[46]},{"name":"alljoyn_interfacedescription_getpropertyannotation","features":[46]},{"name":"alljoyn_interfacedescription_getpropertydescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_getsecuritypolicy","features":[46]},{"name":"alljoyn_interfacedescription_getsignal","features":[46]},{"name":"alljoyn_interfacedescription_hasdescription","features":[46]},{"name":"alljoyn_interfacedescription_hasmember","features":[46]},{"name":"alljoyn_interfacedescription_hasproperties","features":[46]},{"name":"alljoyn_interfacedescription_hasproperty","features":[46]},{"name":"alljoyn_interfacedescription_introspect","features":[46]},{"name":"alljoyn_interfacedescription_issecure","features":[46]},{"name":"alljoyn_interfacedescription_member","features":[46]},{"name":"alljoyn_interfacedescription_member_eql","features":[46]},{"name":"alljoyn_interfacedescription_member_getannotation","features":[46]},{"name":"alljoyn_interfacedescription_member_getannotationatindex","features":[46]},{"name":"alljoyn_interfacedescription_member_getannotationscount","features":[46]},{"name":"alljoyn_interfacedescription_member_getargannotation","features":[46]},{"name":"alljoyn_interfacedescription_member_getargannotationatindex","features":[46]},{"name":"alljoyn_interfacedescription_member_getargannotationscount","features":[46]},{"name":"alljoyn_interfacedescription_property","features":[46]},{"name":"alljoyn_interfacedescription_property_eql","features":[46]},{"name":"alljoyn_interfacedescription_property_getannotation","features":[46]},{"name":"alljoyn_interfacedescription_property_getannotationatindex","features":[46]},{"name":"alljoyn_interfacedescription_property_getannotationscount","features":[46]},{"name":"alljoyn_interfacedescription_securitypolicy","features":[46]},{"name":"alljoyn_interfacedescription_setargdescription","features":[46]},{"name":"alljoyn_interfacedescription_setargdescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_setdescription","features":[46]},{"name":"alljoyn_interfacedescription_setdescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_setdescriptionlanguage","features":[46]},{"name":"alljoyn_interfacedescription_setdescriptiontranslationcallback","features":[46]},{"name":"alljoyn_interfacedescription_setmemberdescription","features":[46]},{"name":"alljoyn_interfacedescription_setmemberdescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_setpropertydescription","features":[46]},{"name":"alljoyn_interfacedescription_setpropertydescriptionforlanguage","features":[46]},{"name":"alljoyn_interfacedescription_translation_callback_ptr","features":[46]},{"name":"alljoyn_keystore","features":[46]},{"name":"alljoyn_keystorelistener","features":[46]},{"name":"alljoyn_keystorelistener_acquireexclusivelock_ptr","features":[46]},{"name":"alljoyn_keystorelistener_callbacks","features":[46]},{"name":"alljoyn_keystorelistener_create","features":[46]},{"name":"alljoyn_keystorelistener_destroy","features":[46]},{"name":"alljoyn_keystorelistener_getkeys","features":[46]},{"name":"alljoyn_keystorelistener_loadrequest_ptr","features":[46]},{"name":"alljoyn_keystorelistener_putkeys","features":[46]},{"name":"alljoyn_keystorelistener_releaseexclusivelock_ptr","features":[46]},{"name":"alljoyn_keystorelistener_storerequest_ptr","features":[46]},{"name":"alljoyn_keystorelistener_with_synchronization_callbacks","features":[46]},{"name":"alljoyn_keystorelistener_with_synchronization_create","features":[46]},{"name":"alljoyn_manifestarray","features":[46]},{"name":"alljoyn_message","features":[46]},{"name":"alljoyn_message_create","features":[46]},{"name":"alljoyn_message_description","features":[46]},{"name":"alljoyn_message_destroy","features":[46]},{"name":"alljoyn_message_eql","features":[46]},{"name":"alljoyn_message_getarg","features":[46]},{"name":"alljoyn_message_getargs","features":[46]},{"name":"alljoyn_message_getauthmechanism","features":[46]},{"name":"alljoyn_message_getcallserial","features":[46]},{"name":"alljoyn_message_getcompressiontoken","features":[46]},{"name":"alljoyn_message_getdestination","features":[46]},{"name":"alljoyn_message_geterrorname","features":[46]},{"name":"alljoyn_message_getflags","features":[46]},{"name":"alljoyn_message_getinterface","features":[46]},{"name":"alljoyn_message_getmembername","features":[46]},{"name":"alljoyn_message_getobjectpath","features":[46]},{"name":"alljoyn_message_getreceiveendpointname","features":[46]},{"name":"alljoyn_message_getreplyserial","features":[46]},{"name":"alljoyn_message_getsender","features":[46]},{"name":"alljoyn_message_getsessionid","features":[46]},{"name":"alljoyn_message_getsignature","features":[46]},{"name":"alljoyn_message_gettimestamp","features":[46]},{"name":"alljoyn_message_gettype","features":[46]},{"name":"alljoyn_message_isbroadcastsignal","features":[46]},{"name":"alljoyn_message_isencrypted","features":[46]},{"name":"alljoyn_message_isexpired","features":[46]},{"name":"alljoyn_message_isglobalbroadcast","features":[46]},{"name":"alljoyn_message_issessionless","features":[46]},{"name":"alljoyn_message_isunreliable","features":[46]},{"name":"alljoyn_message_parseargs","features":[46]},{"name":"alljoyn_message_setendianess","features":[46]},{"name":"alljoyn_message_tostring","features":[46]},{"name":"alljoyn_messagereceiver_methodhandler_ptr","features":[46]},{"name":"alljoyn_messagereceiver_replyhandler_ptr","features":[46]},{"name":"alljoyn_messagereceiver_signalhandler_ptr","features":[46]},{"name":"alljoyn_messagetype","features":[46]},{"name":"alljoyn_msgarg","features":[46]},{"name":"alljoyn_msgarg_array_create","features":[46]},{"name":"alljoyn_msgarg_array_element","features":[46]},{"name":"alljoyn_msgarg_array_get","features":[46]},{"name":"alljoyn_msgarg_array_set","features":[46]},{"name":"alljoyn_msgarg_array_set_offset","features":[46]},{"name":"alljoyn_msgarg_array_signature","features":[46]},{"name":"alljoyn_msgarg_array_tostring","features":[46]},{"name":"alljoyn_msgarg_clear","features":[46]},{"name":"alljoyn_msgarg_clone","features":[46]},{"name":"alljoyn_msgarg_copy","features":[46]},{"name":"alljoyn_msgarg_create","features":[46]},{"name":"alljoyn_msgarg_create_and_set","features":[46]},{"name":"alljoyn_msgarg_destroy","features":[46]},{"name":"alljoyn_msgarg_equal","features":[46]},{"name":"alljoyn_msgarg_get","features":[46]},{"name":"alljoyn_msgarg_get_array_element","features":[46]},{"name":"alljoyn_msgarg_get_array_elementsignature","features":[46]},{"name":"alljoyn_msgarg_get_array_numberofelements","features":[46]},{"name":"alljoyn_msgarg_get_bool","features":[46]},{"name":"alljoyn_msgarg_get_bool_array","features":[46]},{"name":"alljoyn_msgarg_get_double","features":[46]},{"name":"alljoyn_msgarg_get_double_array","features":[46]},{"name":"alljoyn_msgarg_get_int16","features":[46]},{"name":"alljoyn_msgarg_get_int16_array","features":[46]},{"name":"alljoyn_msgarg_get_int32","features":[46]},{"name":"alljoyn_msgarg_get_int32_array","features":[46]},{"name":"alljoyn_msgarg_get_int64","features":[46]},{"name":"alljoyn_msgarg_get_int64_array","features":[46]},{"name":"alljoyn_msgarg_get_objectpath","features":[46]},{"name":"alljoyn_msgarg_get_signature","features":[46]},{"name":"alljoyn_msgarg_get_string","features":[46]},{"name":"alljoyn_msgarg_get_uint16","features":[46]},{"name":"alljoyn_msgarg_get_uint16_array","features":[46]},{"name":"alljoyn_msgarg_get_uint32","features":[46]},{"name":"alljoyn_msgarg_get_uint32_array","features":[46]},{"name":"alljoyn_msgarg_get_uint64","features":[46]},{"name":"alljoyn_msgarg_get_uint64_array","features":[46]},{"name":"alljoyn_msgarg_get_uint8","features":[46]},{"name":"alljoyn_msgarg_get_uint8_array","features":[46]},{"name":"alljoyn_msgarg_get_variant","features":[46]},{"name":"alljoyn_msgarg_get_variant_array","features":[46]},{"name":"alljoyn_msgarg_getdictelement","features":[46]},{"name":"alljoyn_msgarg_getkey","features":[46]},{"name":"alljoyn_msgarg_getmember","features":[46]},{"name":"alljoyn_msgarg_getnummembers","features":[46]},{"name":"alljoyn_msgarg_gettype","features":[46]},{"name":"alljoyn_msgarg_getvalue","features":[46]},{"name":"alljoyn_msgarg_hassignature","features":[46]},{"name":"alljoyn_msgarg_set","features":[46]},{"name":"alljoyn_msgarg_set_and_stabilize","features":[46]},{"name":"alljoyn_msgarg_set_bool","features":[46]},{"name":"alljoyn_msgarg_set_bool_array","features":[46]},{"name":"alljoyn_msgarg_set_double","features":[46]},{"name":"alljoyn_msgarg_set_double_array","features":[46]},{"name":"alljoyn_msgarg_set_int16","features":[46]},{"name":"alljoyn_msgarg_set_int16_array","features":[46]},{"name":"alljoyn_msgarg_set_int32","features":[46]},{"name":"alljoyn_msgarg_set_int32_array","features":[46]},{"name":"alljoyn_msgarg_set_int64","features":[46]},{"name":"alljoyn_msgarg_set_int64_array","features":[46]},{"name":"alljoyn_msgarg_set_objectpath","features":[46]},{"name":"alljoyn_msgarg_set_objectpath_array","features":[46]},{"name":"alljoyn_msgarg_set_signature","features":[46]},{"name":"alljoyn_msgarg_set_signature_array","features":[46]},{"name":"alljoyn_msgarg_set_string","features":[46]},{"name":"alljoyn_msgarg_set_string_array","features":[46]},{"name":"alljoyn_msgarg_set_uint16","features":[46]},{"name":"alljoyn_msgarg_set_uint16_array","features":[46]},{"name":"alljoyn_msgarg_set_uint32","features":[46]},{"name":"alljoyn_msgarg_set_uint32_array","features":[46]},{"name":"alljoyn_msgarg_set_uint64","features":[46]},{"name":"alljoyn_msgarg_set_uint64_array","features":[46]},{"name":"alljoyn_msgarg_set_uint8","features":[46]},{"name":"alljoyn_msgarg_set_uint8_array","features":[46]},{"name":"alljoyn_msgarg_setdictentry","features":[46]},{"name":"alljoyn_msgarg_setstruct","features":[46]},{"name":"alljoyn_msgarg_signature","features":[46]},{"name":"alljoyn_msgarg_stabilize","features":[46]},{"name":"alljoyn_msgarg_tostring","features":[46]},{"name":"alljoyn_observer","features":[46]},{"name":"alljoyn_observer_create","features":[46]},{"name":"alljoyn_observer_destroy","features":[46]},{"name":"alljoyn_observer_get","features":[46]},{"name":"alljoyn_observer_getfirst","features":[46]},{"name":"alljoyn_observer_getnext","features":[46]},{"name":"alljoyn_observer_object_discovered_ptr","features":[46]},{"name":"alljoyn_observer_object_lost_ptr","features":[46]},{"name":"alljoyn_observer_registerlistener","features":[46]},{"name":"alljoyn_observer_unregisteralllisteners","features":[46]},{"name":"alljoyn_observer_unregisterlistener","features":[46]},{"name":"alljoyn_observerlistener","features":[46]},{"name":"alljoyn_observerlistener_callback","features":[46]},{"name":"alljoyn_observerlistener_create","features":[46]},{"name":"alljoyn_observerlistener_destroy","features":[46]},{"name":"alljoyn_passwordmanager_setcredentials","features":[46]},{"name":"alljoyn_permissionconfigurationlistener","features":[46]},{"name":"alljoyn_permissionconfigurationlistener_callbacks","features":[46]},{"name":"alljoyn_permissionconfigurationlistener_create","features":[46]},{"name":"alljoyn_permissionconfigurationlistener_destroy","features":[46]},{"name":"alljoyn_permissionconfigurationlistener_endmanagement_ptr","features":[46]},{"name":"alljoyn_permissionconfigurationlistener_factoryreset_ptr","features":[46]},{"name":"alljoyn_permissionconfigurationlistener_policychanged_ptr","features":[46]},{"name":"alljoyn_permissionconfigurationlistener_startmanagement_ptr","features":[46]},{"name":"alljoyn_permissionconfigurator","features":[46]},{"name":"alljoyn_permissionconfigurator_certificatechain_destroy","features":[46]},{"name":"alljoyn_permissionconfigurator_certificateid_cleanup","features":[46]},{"name":"alljoyn_permissionconfigurator_certificateidarray_cleanup","features":[46]},{"name":"alljoyn_permissionconfigurator_claim","features":[46]},{"name":"alljoyn_permissionconfigurator_endmanagement","features":[46]},{"name":"alljoyn_permissionconfigurator_getapplicationstate","features":[46]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilities","features":[46]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo","features":[46]},{"name":"alljoyn_permissionconfigurator_getdefaultclaimcapabilities","features":[46]},{"name":"alljoyn_permissionconfigurator_getdefaultpolicy","features":[46]},{"name":"alljoyn_permissionconfigurator_getidentity","features":[46]},{"name":"alljoyn_permissionconfigurator_getidentitycertificateid","features":[46]},{"name":"alljoyn_permissionconfigurator_getmanifests","features":[46]},{"name":"alljoyn_permissionconfigurator_getmanifesttemplate","features":[46]},{"name":"alljoyn_permissionconfigurator_getmembershipsummaries","features":[46]},{"name":"alljoyn_permissionconfigurator_getpolicy","features":[46]},{"name":"alljoyn_permissionconfigurator_getpublickey","features":[46]},{"name":"alljoyn_permissionconfigurator_installmanifests","features":[46]},{"name":"alljoyn_permissionconfigurator_installmembership","features":[46]},{"name":"alljoyn_permissionconfigurator_manifestarray_cleanup","features":[46]},{"name":"alljoyn_permissionconfigurator_manifesttemplate_destroy","features":[46]},{"name":"alljoyn_permissionconfigurator_policy_destroy","features":[46]},{"name":"alljoyn_permissionconfigurator_publickey_destroy","features":[46]},{"name":"alljoyn_permissionconfigurator_removemembership","features":[46]},{"name":"alljoyn_permissionconfigurator_reset","features":[46]},{"name":"alljoyn_permissionconfigurator_resetpolicy","features":[46]},{"name":"alljoyn_permissionconfigurator_setapplicationstate","features":[46]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilities","features":[46]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo","features":[46]},{"name":"alljoyn_permissionconfigurator_setmanifesttemplatefromxml","features":[46]},{"name":"alljoyn_permissionconfigurator_startmanagement","features":[46]},{"name":"alljoyn_permissionconfigurator_updateidentity","features":[46]},{"name":"alljoyn_permissionconfigurator_updatepolicy","features":[46]},{"name":"alljoyn_pinglistener","features":[46]},{"name":"alljoyn_pinglistener_callback","features":[46]},{"name":"alljoyn_pinglistener_create","features":[46]},{"name":"alljoyn_pinglistener_destroy","features":[46]},{"name":"alljoyn_proxybusobject","features":[46]},{"name":"alljoyn_proxybusobject_addchild","features":[46]},{"name":"alljoyn_proxybusobject_addinterface","features":[46]},{"name":"alljoyn_proxybusobject_addinterface_by_name","features":[46]},{"name":"alljoyn_proxybusobject_copy","features":[46]},{"name":"alljoyn_proxybusobject_create","features":[46]},{"name":"alljoyn_proxybusobject_create_secure","features":[46]},{"name":"alljoyn_proxybusobject_destroy","features":[46]},{"name":"alljoyn_proxybusobject_enablepropertycaching","features":[46]},{"name":"alljoyn_proxybusobject_getallproperties","features":[46]},{"name":"alljoyn_proxybusobject_getallpropertiesasync","features":[46]},{"name":"alljoyn_proxybusobject_getchild","features":[46]},{"name":"alljoyn_proxybusobject_getchildren","features":[46]},{"name":"alljoyn_proxybusobject_getinterface","features":[46]},{"name":"alljoyn_proxybusobject_getinterfaces","features":[46]},{"name":"alljoyn_proxybusobject_getpath","features":[46]},{"name":"alljoyn_proxybusobject_getproperty","features":[46]},{"name":"alljoyn_proxybusobject_getpropertyasync","features":[46]},{"name":"alljoyn_proxybusobject_getservicename","features":[46]},{"name":"alljoyn_proxybusobject_getsessionid","features":[46]},{"name":"alljoyn_proxybusobject_getuniquename","features":[46]},{"name":"alljoyn_proxybusobject_implementsinterface","features":[46]},{"name":"alljoyn_proxybusobject_introspectremoteobject","features":[46]},{"name":"alljoyn_proxybusobject_introspectremoteobjectasync","features":[46]},{"name":"alljoyn_proxybusobject_issecure","features":[46]},{"name":"alljoyn_proxybusobject_isvalid","features":[46]},{"name":"alljoyn_proxybusobject_listener_getallpropertiescb_ptr","features":[46]},{"name":"alljoyn_proxybusobject_listener_getpropertycb_ptr","features":[46]},{"name":"alljoyn_proxybusobject_listener_introspectcb_ptr","features":[46]},{"name":"alljoyn_proxybusobject_listener_propertieschanged_ptr","features":[46]},{"name":"alljoyn_proxybusobject_listener_setpropertycb_ptr","features":[46]},{"name":"alljoyn_proxybusobject_methodcall","features":[46]},{"name":"alljoyn_proxybusobject_methodcall_member","features":[46]},{"name":"alljoyn_proxybusobject_methodcall_member_noreply","features":[46]},{"name":"alljoyn_proxybusobject_methodcall_noreply","features":[46]},{"name":"alljoyn_proxybusobject_methodcallasync","features":[46]},{"name":"alljoyn_proxybusobject_methodcallasync_member","features":[46]},{"name":"alljoyn_proxybusobject_parsexml","features":[46]},{"name":"alljoyn_proxybusobject_ref","features":[46]},{"name":"alljoyn_proxybusobject_ref_create","features":[46]},{"name":"alljoyn_proxybusobject_ref_decref","features":[46]},{"name":"alljoyn_proxybusobject_ref_get","features":[46]},{"name":"alljoyn_proxybusobject_ref_incref","features":[46]},{"name":"alljoyn_proxybusobject_registerpropertieschangedlistener","features":[46]},{"name":"alljoyn_proxybusobject_removechild","features":[46]},{"name":"alljoyn_proxybusobject_secureconnection","features":[46]},{"name":"alljoyn_proxybusobject_secureconnectionasync","features":[46]},{"name":"alljoyn_proxybusobject_setproperty","features":[46]},{"name":"alljoyn_proxybusobject_setpropertyasync","features":[46]},{"name":"alljoyn_proxybusobject_unregisterpropertieschangedlistener","features":[46]},{"name":"alljoyn_routerinit","features":[46]},{"name":"alljoyn_routerinitwithconfig","features":[46]},{"name":"alljoyn_routershutdown","features":[46]},{"name":"alljoyn_securityapplicationproxy","features":[46]},{"name":"alljoyn_securityapplicationproxy_claim","features":[46]},{"name":"alljoyn_securityapplicationproxy_computemanifestdigest","features":[46]},{"name":"alljoyn_securityapplicationproxy_create","features":[46]},{"name":"alljoyn_securityapplicationproxy_destroy","features":[46]},{"name":"alljoyn_securityapplicationproxy_digest_destroy","features":[46]},{"name":"alljoyn_securityapplicationproxy_eccpublickey_destroy","features":[46]},{"name":"alljoyn_securityapplicationproxy_endmanagement","features":[46]},{"name":"alljoyn_securityapplicationproxy_getapplicationstate","features":[46]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilities","features":[46]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo","features":[46]},{"name":"alljoyn_securityapplicationproxy_getdefaultpolicy","features":[46]},{"name":"alljoyn_securityapplicationproxy_geteccpublickey","features":[46]},{"name":"alljoyn_securityapplicationproxy_getmanifesttemplate","features":[46]},{"name":"alljoyn_securityapplicationproxy_getpermissionmanagementsessionport","features":[46]},{"name":"alljoyn_securityapplicationproxy_getpolicy","features":[46]},{"name":"alljoyn_securityapplicationproxy_installmembership","features":[46]},{"name":"alljoyn_securityapplicationproxy_manifest_destroy","features":[46]},{"name":"alljoyn_securityapplicationproxy_manifesttemplate_destroy","features":[46]},{"name":"alljoyn_securityapplicationproxy_policy_destroy","features":[46]},{"name":"alljoyn_securityapplicationproxy_reset","features":[46]},{"name":"alljoyn_securityapplicationproxy_resetpolicy","features":[46]},{"name":"alljoyn_securityapplicationproxy_setmanifestsignature","features":[46]},{"name":"alljoyn_securityapplicationproxy_signmanifest","features":[46]},{"name":"alljoyn_securityapplicationproxy_startmanagement","features":[46]},{"name":"alljoyn_securityapplicationproxy_updateidentity","features":[46]},{"name":"alljoyn_securityapplicationproxy_updatepolicy","features":[46]},{"name":"alljoyn_sessionlistener","features":[46]},{"name":"alljoyn_sessionlistener_callbacks","features":[46]},{"name":"alljoyn_sessionlistener_create","features":[46]},{"name":"alljoyn_sessionlistener_destroy","features":[46]},{"name":"alljoyn_sessionlistener_sessionlost_ptr","features":[46]},{"name":"alljoyn_sessionlistener_sessionmemberadded_ptr","features":[46]},{"name":"alljoyn_sessionlistener_sessionmemberremoved_ptr","features":[46]},{"name":"alljoyn_sessionlostreason","features":[46]},{"name":"alljoyn_sessionopts","features":[46]},{"name":"alljoyn_sessionopts_cmp","features":[46]},{"name":"alljoyn_sessionopts_create","features":[46]},{"name":"alljoyn_sessionopts_destroy","features":[46]},{"name":"alljoyn_sessionopts_get_multipoint","features":[46]},{"name":"alljoyn_sessionopts_get_proximity","features":[46]},{"name":"alljoyn_sessionopts_get_traffic","features":[46]},{"name":"alljoyn_sessionopts_get_transports","features":[46]},{"name":"alljoyn_sessionopts_iscompatible","features":[46]},{"name":"alljoyn_sessionopts_set_multipoint","features":[46]},{"name":"alljoyn_sessionopts_set_proximity","features":[46]},{"name":"alljoyn_sessionopts_set_traffic","features":[46]},{"name":"alljoyn_sessionopts_set_transports","features":[46]},{"name":"alljoyn_sessionportlistener","features":[46]},{"name":"alljoyn_sessionportlistener_acceptsessionjoiner_ptr","features":[46]},{"name":"alljoyn_sessionportlistener_callbacks","features":[46]},{"name":"alljoyn_sessionportlistener_create","features":[46]},{"name":"alljoyn_sessionportlistener_destroy","features":[46]},{"name":"alljoyn_sessionportlistener_sessionjoined_ptr","features":[46]},{"name":"alljoyn_shutdown","features":[46]},{"name":"alljoyn_typeid","features":[46]},{"name":"alljoyn_unity_deferred_callbacks_process","features":[46]},{"name":"alljoyn_unity_set_deferred_callback_mainthread_only","features":[46]}],"370":[{"name":"FACILITY_NONE","features":[47]},{"name":"FACILITY_WINBIO","features":[47]},{"name":"GUID_DEVINTERFACE_BIOMETRIC_READER","features":[47]},{"name":"IOCTL_BIOMETRIC_VENDOR","features":[47]},{"name":"PIBIO_ENGINE_ACCEPT_PRIVATE_SENSOR_TYPE_INFO_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_ACCEPT_SAMPLE_DATA_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_ACTIVATE_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_ATTACH_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_CHECK_FOR_DUPLICATE_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_CLEAR_CONTEXT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_COMMIT_ENROLLMENT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_PRIVILEGED_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_AUTHENTICATED_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_CREATE_KEY_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_DEACTIVATE_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_DETACH_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_DISCARD_ENROLLMENT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_EXPORT_ENGINE_DATA_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_HASH_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_STATUS_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_IDENTIFY_ALL_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_AUTHENTICATED_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_SECURE_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_NOTIFY_POWER_CHANGE_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_PIPELINE_CLEANUP_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_PIPELINE_INIT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_QUERY_CALIBRATION_DATA_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_ENROLLMENT_STATUS_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_INFO_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_QUERY_HASH_ALGORITHMS_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_QUERY_INDEX_VECTOR_SIZE_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_QUERY_PREFERRED_FORMAT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_QUERY_SAMPLE_HINT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_REFRESH_CACHE_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_RESERVED_1_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_SELECT_CALIBRATION_FORMAT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_SET_ACCOUNT_POLICY_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_PARAMETERS_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_SELECTOR_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_SET_HASH_ALGORITHM_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_UPDATE_ENROLLMENT_FN","features":[47,3,8]},{"name":"PIBIO_ENGINE_VERIFY_FEATURE_SET_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_ALLOCATE_MEMORY_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_FREE_MEMORY_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_GET_PROPERTY_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_LOCK_AND_VALIDATE_SECURE_BUFFER_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_RELEASE_SECURE_BUFFER_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_SET_UNIT_STATUS_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_CLEAR_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_BEGIN_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_END_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_NEXT_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_BEGIN_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_END_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_NEXT_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_DECRYPT_SAMPLE_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_QUERY_AUTHORIZED_ENROLLMENTS_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_1_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_2_FN","features":[47,3,8]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_3_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_ACCEPT_CALIBRATION_DATA_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_ACTIVATE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_RAW_BUFFER_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_SECURE_BUFFER_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_ATTACH_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_CANCEL_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_CLEAR_CONTEXT_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_CONNECT_SECURE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_PRIVILEGED_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_DEACTIVATE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_DETACH_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_EXPORT_SENSOR_DATA_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_FINISH_CAPTURE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_FINISH_NOTIFY_WAKE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_GET_INDICATOR_STATUS_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_NOTIFY_POWER_CHANGE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_PIPELINE_CLEANUP_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_PIPELINE_INIT_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_PUSH_DATA_TO_ENGINE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_QUERY_CALIBRATION_FORMATS_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_QUERY_EXTENDED_INFO_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_QUERY_PRIVATE_SENSOR_TYPE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_QUERY_STATUS_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_RESET_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_SET_CALIBRATION_FORMAT_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_SET_INDICATOR_STATUS_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_SET_MODE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_START_CAPTURE_EX_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_START_CAPTURE_FN","features":[47,3,8]},{"name":"PIBIO_SENSOR_START_NOTIFY_WAKE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_ACTIVATE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_ADD_RECORD_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_ATTACH_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_CLEAR_CONTEXT_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_CLOSE_DATABASE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_PRIVILEGED_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_CREATE_DATABASE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_DEACTIVATE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_DELETE_RECORD_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_DETACH_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_ERASE_DATABASE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_FIRST_RECORD_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_GET_CURRENT_RECORD_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_GET_DATABASE_SIZE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_GET_DATA_FORMAT_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_GET_RECORD_COUNT_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_NEXT_RECORD_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_NOTIFY_DATABASE_CHANGE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_NOTIFY_POWER_CHANGE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_OPEN_DATABASE_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_PIPELINE_CLEANUP_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_PIPELINE_INIT_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_QUERY_BY_CONTENT_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_QUERY_BY_SUBJECT_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_QUERY_EXTENDED_INFO_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_RESERVED_1_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_RESERVED_2_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_BEGIN_FN","features":[47,3,8]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_COMMIT_FN","features":[47,3,8]},{"name":"PWINBIO_ASYNC_COMPLETION_CALLBACK","features":[47,3]},{"name":"PWINBIO_CAPTURE_CALLBACK","features":[47]},{"name":"PWINBIO_ENROLL_CAPTURE_CALLBACK","features":[47]},{"name":"PWINBIO_EVENT_CALLBACK","features":[47]},{"name":"PWINBIO_IDENTIFY_CALLBACK","features":[47]},{"name":"PWINBIO_LOCATE_SENSOR_CALLBACK","features":[47]},{"name":"PWINBIO_QUERY_ENGINE_INTERFACE_FN","features":[47,3,8]},{"name":"PWINBIO_QUERY_SENSOR_INTERFACE_FN","features":[47,3,8]},{"name":"PWINBIO_QUERY_STORAGE_INTERFACE_FN","features":[47,3,8]},{"name":"PWINBIO_VERIFY_CALLBACK","features":[47,3]},{"name":"WINBIO_ACCOUNT_POLICY","features":[47]},{"name":"WINBIO_ADAPTER_INTERFACE_VERSION","features":[47]},{"name":"WINBIO_ANSI_381_IMG_BIT_PACKED","features":[47]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG","features":[47]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG2000","features":[47]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_PNG","features":[47]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_WSQ","features":[47]},{"name":"WINBIO_ANSI_381_IMG_UNCOMPRESSED","features":[47]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LATENT","features":[47]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_CONTACTLESS","features":[47]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_PLAIN","features":[47]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_ROLLED","features":[47]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_PLAIN","features":[47]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_ROLLED","features":[47]},{"name":"WINBIO_ANSI_381_IMP_TYPE_SWIPE","features":[47]},{"name":"WINBIO_ANSI_381_PIXELS_PER_CM","features":[47]},{"name":"WINBIO_ANSI_381_PIXELS_PER_INCH","features":[47]},{"name":"WINBIO_ANTI_SPOOF_DISABLE","features":[47]},{"name":"WINBIO_ANTI_SPOOF_ENABLE","features":[47]},{"name":"WINBIO_ANTI_SPOOF_POLICY","features":[47]},{"name":"WINBIO_ANTI_SPOOF_POLICY_ACTION","features":[47]},{"name":"WINBIO_ANTI_SPOOF_REMOVE","features":[47]},{"name":"WINBIO_ASYNC_NOTIFICATION_METHOD","features":[47]},{"name":"WINBIO_ASYNC_NOTIFY_CALLBACK","features":[47]},{"name":"WINBIO_ASYNC_NOTIFY_MAXIMUM_VALUE","features":[47]},{"name":"WINBIO_ASYNC_NOTIFY_MESSAGE","features":[47]},{"name":"WINBIO_ASYNC_NOTIFY_NONE","features":[47]},{"name":"WINBIO_ASYNC_RESULT","features":[47,3]},{"name":"WINBIO_BDB_ANSI_381_HEADER","features":[47]},{"name":"WINBIO_BDB_ANSI_381_RECORD","features":[47]},{"name":"WINBIO_BIR","features":[47]},{"name":"WINBIO_BIR_ALGIN_SIZE","features":[47]},{"name":"WINBIO_BIR_ALIGN_SIZE","features":[47]},{"name":"WINBIO_BIR_DATA","features":[47]},{"name":"WINBIO_BIR_HEADER","features":[47]},{"name":"WINBIO_BLANK_PAYLOAD","features":[47]},{"name":"WINBIO_BSP_SCHEMA","features":[47]},{"name":"WINBIO_CALIBRATION_INFO","features":[47]},{"name":"WINBIO_CAPTURE_DATA","features":[47]},{"name":"WINBIO_CAPTURE_PARAMETERS","features":[47]},{"name":"WINBIO_COMPONENT","features":[47]},{"name":"WINBIO_COMPONENT_ENGINE","features":[47]},{"name":"WINBIO_COMPONENT_SENSOR","features":[47]},{"name":"WINBIO_COMPONENT_STORAGE","features":[47]},{"name":"WINBIO_CREDENTIAL_ALL","features":[47]},{"name":"WINBIO_CREDENTIAL_FORMAT","features":[47]},{"name":"WINBIO_CREDENTIAL_NOT_SET","features":[47]},{"name":"WINBIO_CREDENTIAL_PASSWORD","features":[47]},{"name":"WINBIO_CREDENTIAL_SET","features":[47]},{"name":"WINBIO_CREDENTIAL_STATE","features":[47]},{"name":"WINBIO_CREDENTIAL_TYPE","features":[47]},{"name":"WINBIO_DATA","features":[47]},{"name":"WINBIO_DATA_FLAG_INTEGRITY","features":[47]},{"name":"WINBIO_DATA_FLAG_INTERMEDIATE","features":[47]},{"name":"WINBIO_DATA_FLAG_OPTION_MASK_PRESENT","features":[47]},{"name":"WINBIO_DATA_FLAG_PRIVACY","features":[47]},{"name":"WINBIO_DATA_FLAG_PROCESSED","features":[47]},{"name":"WINBIO_DATA_FLAG_RAW","features":[47]},{"name":"WINBIO_DATA_FLAG_SIGNED","features":[47]},{"name":"WINBIO_DIAGNOSTICS","features":[47]},{"name":"WINBIO_ENCRYPTED_CAPTURE_PARAMS","features":[47]},{"name":"WINBIO_ENGINE_INTERFACE","features":[47,3,8]},{"name":"WINBIO_EVENT","features":[47]},{"name":"WINBIO_EXTENDED_ENGINE_INFO","features":[47]},{"name":"WINBIO_EXTENDED_ENROLLMENT_PARAMETERS","features":[47]},{"name":"WINBIO_EXTENDED_ENROLLMENT_STATUS","features":[47,3]},{"name":"WINBIO_EXTENDED_SENSOR_INFO","features":[47,3]},{"name":"WINBIO_EXTENDED_STORAGE_INFO","features":[47]},{"name":"WINBIO_EXTENDED_UNIT_STATUS","features":[47]},{"name":"WINBIO_E_ADAPTER_INTEGRITY_FAILURE","features":[47]},{"name":"WINBIO_E_AUTO_LOGON_DISABLED","features":[47]},{"name":"WINBIO_E_BAD_CAPTURE","features":[47]},{"name":"WINBIO_E_CALIBRATION_BUFFER_INVALID","features":[47]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_LARGE","features":[47]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_SMALL","features":[47]},{"name":"WINBIO_E_CANCELED","features":[47]},{"name":"WINBIO_E_CAPTURE_ABORTED","features":[47]},{"name":"WINBIO_E_CONFIGURATION_FAILURE","features":[47]},{"name":"WINBIO_E_CRED_PROV_DISABLED","features":[47]},{"name":"WINBIO_E_CRED_PROV_NO_CREDENTIAL","features":[47]},{"name":"WINBIO_E_CRED_PROV_SECURITY_LOCKOUT","features":[47]},{"name":"WINBIO_E_DATABASE_ALREADY_EXISTS","features":[47]},{"name":"WINBIO_E_DATABASE_BAD_INDEX_VECTOR","features":[47]},{"name":"WINBIO_E_DATABASE_CANT_CLOSE","features":[47]},{"name":"WINBIO_E_DATABASE_CANT_CREATE","features":[47]},{"name":"WINBIO_E_DATABASE_CANT_ERASE","features":[47]},{"name":"WINBIO_E_DATABASE_CANT_FIND","features":[47]},{"name":"WINBIO_E_DATABASE_CANT_OPEN","features":[47]},{"name":"WINBIO_E_DATABASE_CORRUPTED","features":[47]},{"name":"WINBIO_E_DATABASE_EOF","features":[47]},{"name":"WINBIO_E_DATABASE_FULL","features":[47]},{"name":"WINBIO_E_DATABASE_LOCKED","features":[47]},{"name":"WINBIO_E_DATABASE_NO_MORE_RECORDS","features":[47]},{"name":"WINBIO_E_DATABASE_NO_RESULTS","features":[47]},{"name":"WINBIO_E_DATABASE_NO_SUCH_RECORD","features":[47]},{"name":"WINBIO_E_DATABASE_READ_ERROR","features":[47]},{"name":"WINBIO_E_DATABASE_WRITE_ERROR","features":[47]},{"name":"WINBIO_E_DATA_COLLECTION_IN_PROGRESS","features":[47]},{"name":"WINBIO_E_DATA_PROTECTION_FAILURE","features":[47]},{"name":"WINBIO_E_DEADLOCK_DETECTED","features":[47]},{"name":"WINBIO_E_DEVICE_BUSY","features":[47]},{"name":"WINBIO_E_DEVICE_FAILURE","features":[47]},{"name":"WINBIO_E_DISABLED","features":[47]},{"name":"WINBIO_E_DUPLICATE_ENROLLMENT","features":[47]},{"name":"WINBIO_E_DUPLICATE_TEMPLATE","features":[47]},{"name":"WINBIO_E_ENROLLMENT_CANCELED_BY_SUSPEND","features":[47]},{"name":"WINBIO_E_ENROLLMENT_IN_PROGRESS","features":[47]},{"name":"WINBIO_E_EVENT_MONITOR_ACTIVE","features":[47]},{"name":"WINBIO_E_FAST_USER_SWITCH_DISABLED","features":[47]},{"name":"WINBIO_E_INCORRECT_BSP","features":[47]},{"name":"WINBIO_E_INCORRECT_SENSOR_POOL","features":[47]},{"name":"WINBIO_E_INCORRECT_SESSION_TYPE","features":[47]},{"name":"WINBIO_E_INSECURE_SENSOR","features":[47]},{"name":"WINBIO_E_INVALID_BUFFER","features":[47]},{"name":"WINBIO_E_INVALID_BUFFER_ID","features":[47]},{"name":"WINBIO_E_INVALID_CALIBRATION_FORMAT_ARRAY","features":[47]},{"name":"WINBIO_E_INVALID_CONTROL_CODE","features":[47]},{"name":"WINBIO_E_INVALID_DEVICE_STATE","features":[47]},{"name":"WINBIO_E_INVALID_KEY_IDENTIFIER","features":[47]},{"name":"WINBIO_E_INVALID_OPERATION","features":[47]},{"name":"WINBIO_E_INVALID_PROPERTY_ID","features":[47]},{"name":"WINBIO_E_INVALID_PROPERTY_TYPE","features":[47]},{"name":"WINBIO_E_INVALID_SENSOR_MODE","features":[47]},{"name":"WINBIO_E_INVALID_SUBFACTOR","features":[47]},{"name":"WINBIO_E_INVALID_TICKET","features":[47]},{"name":"WINBIO_E_INVALID_UNIT","features":[47]},{"name":"WINBIO_E_KEY_CREATION_FAILED","features":[47]},{"name":"WINBIO_E_KEY_IDENTIFIER_BUFFER_TOO_SMALL","features":[47]},{"name":"WINBIO_E_LOCK_VIOLATION","features":[47]},{"name":"WINBIO_E_MAX_ERROR_COUNT_EXCEEDED","features":[47]},{"name":"WINBIO_E_NOT_ACTIVE_CONSOLE","features":[47]},{"name":"WINBIO_E_NO_CAPTURE_DATA","features":[47]},{"name":"WINBIO_E_NO_MATCH","features":[47]},{"name":"WINBIO_E_NO_PREBOOT_IDENTITY","features":[47]},{"name":"WINBIO_E_NO_SUPPORTED_CALIBRATION_FORMAT","features":[47]},{"name":"WINBIO_E_POLICY_PROTECTION_UNAVAILABLE","features":[47]},{"name":"WINBIO_E_PRESENCE_MONITOR_ACTIVE","features":[47]},{"name":"WINBIO_E_PROPERTY_UNAVAILABLE","features":[47]},{"name":"WINBIO_E_SAS_ENABLED","features":[47]},{"name":"WINBIO_E_SELECTION_REQUIRED","features":[47]},{"name":"WINBIO_E_SENSOR_UNAVAILABLE","features":[47]},{"name":"WINBIO_E_SESSION_BUSY","features":[47]},{"name":"WINBIO_E_SESSION_HANDLE_CLOSED","features":[47]},{"name":"WINBIO_E_TICKET_QUOTA_EXCEEDED","features":[47]},{"name":"WINBIO_E_TRUSTLET_INTEGRITY_FAIL","features":[47]},{"name":"WINBIO_E_UNKNOWN_ID","features":[47]},{"name":"WINBIO_E_UNSUPPORTED_DATA_FORMAT","features":[47]},{"name":"WINBIO_E_UNSUPPORTED_DATA_TYPE","features":[47]},{"name":"WINBIO_E_UNSUPPORTED_FACTOR","features":[47]},{"name":"WINBIO_E_UNSUPPORTED_POOL_TYPE","features":[47]},{"name":"WINBIO_E_UNSUPPORTED_PROPERTY","features":[47]},{"name":"WINBIO_E_UNSUPPORTED_PURPOSE","features":[47]},{"name":"WINBIO_E_UNSUPPORTED_SENSOR_CALIBRATION_FORMAT","features":[47]},{"name":"WINBIO_FP_BU_STATE","features":[47,3]},{"name":"WINBIO_FRAMEWORK_INTERFACE","features":[47,3,8]},{"name":"WINBIO_GESTURE_METADATA","features":[47]},{"name":"WINBIO_GET_INDICATOR","features":[47]},{"name":"WINBIO_IDENTITY","features":[47]},{"name":"WINBIO_I_EXTENDED_STATUS_INFORMATION","features":[47]},{"name":"WINBIO_I_MORE_DATA","features":[47]},{"name":"WINBIO_MAX_STRING_LEN","features":[47]},{"name":"WINBIO_NOTIFY_WAKE","features":[47]},{"name":"WINBIO_PASSWORD_GENERIC","features":[47]},{"name":"WINBIO_PASSWORD_PACKED","features":[47]},{"name":"WINBIO_PASSWORD_PROTECTED","features":[47]},{"name":"WINBIO_PIPELINE","features":[47,3,8]},{"name":"WINBIO_POLICY_ADMIN","features":[47]},{"name":"WINBIO_POLICY_DEFAULT","features":[47]},{"name":"WINBIO_POLICY_LOCAL","features":[47]},{"name":"WINBIO_POLICY_SOURCE","features":[47]},{"name":"WINBIO_POLICY_UNKNOWN","features":[47]},{"name":"WINBIO_POOL","features":[47]},{"name":"WINBIO_POOL_PRIVATE","features":[47]},{"name":"WINBIO_POOL_SYSTEM","features":[47]},{"name":"WINBIO_PRESENCE","features":[47,3]},{"name":"WINBIO_PRESENCE_PROPERTIES","features":[47,3]},{"name":"WINBIO_PRIVATE_SENSOR_TYPE_INFO","features":[47]},{"name":"WINBIO_PROTECTION_POLICY","features":[47]},{"name":"WINBIO_REGISTERED_FORMAT","features":[47]},{"name":"WINBIO_SCP_CURVE_FIELD_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_DIGEST_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_ENCRYPTION_BLOCK_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_ENCRYPTION_KEY_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_PRIVATE_KEY_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_PUBLIC_KEY_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_RANDOM_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_SIGNATURE_SIZE_V1","features":[47]},{"name":"WINBIO_SCP_VERSION_1","features":[47]},{"name":"WINBIO_SECURE_BUFFER_HEADER_V1","features":[47]},{"name":"WINBIO_SECURE_CONNECTION_DATA","features":[47]},{"name":"WINBIO_SECURE_CONNECTION_PARAMS","features":[47]},{"name":"WINBIO_SENSOR_ATTRIBUTES","features":[47]},{"name":"WINBIO_SENSOR_INTERFACE","features":[47,3,8]},{"name":"WINBIO_SETTING_SOURCE","features":[47]},{"name":"WINBIO_SETTING_SOURCE_DEFAULT","features":[47]},{"name":"WINBIO_SETTING_SOURCE_INVALID","features":[47]},{"name":"WINBIO_SETTING_SOURCE_LOCAL","features":[47]},{"name":"WINBIO_SETTING_SOURCE_POLICY","features":[47]},{"name":"WINBIO_SET_INDICATOR","features":[47]},{"name":"WINBIO_STORAGE_INTERFACE","features":[47,3,8]},{"name":"WINBIO_STORAGE_RECORD","features":[47]},{"name":"WINBIO_STORAGE_SCHEMA","features":[47]},{"name":"WINBIO_SUPPORTED_ALGORITHMS","features":[47]},{"name":"WINBIO_UNIT_SCHEMA","features":[47]},{"name":"WINBIO_UPDATE_FIRMWARE","features":[47]},{"name":"WINBIO_VERSION","features":[47]},{"name":"WINBIO_WBDI_MAJOR_VERSION","features":[47]},{"name":"WINBIO_WBDI_MINOR_VERSION","features":[47]},{"name":"WINIBIO_ENGINE_CONTEXT","features":[47]},{"name":"WINIBIO_SENSOR_CONTEXT","features":[47]},{"name":"WINIBIO_STORAGE_CONTEXT","features":[47]},{"name":"WinBioAcquireFocus","features":[47]},{"name":"WinBioAsyncEnumBiometricUnits","features":[47]},{"name":"WinBioAsyncEnumDatabases","features":[47]},{"name":"WinBioAsyncEnumServiceProviders","features":[47]},{"name":"WinBioAsyncMonitorFrameworkChanges","features":[47]},{"name":"WinBioAsyncOpenFramework","features":[47,3]},{"name":"WinBioAsyncOpenSession","features":[47,3]},{"name":"WinBioCancel","features":[47]},{"name":"WinBioCaptureSample","features":[47]},{"name":"WinBioCaptureSampleWithCallback","features":[47]},{"name":"WinBioCloseFramework","features":[47]},{"name":"WinBioCloseSession","features":[47]},{"name":"WinBioControlUnit","features":[47]},{"name":"WinBioControlUnitPrivileged","features":[47]},{"name":"WinBioDeleteTemplate","features":[47]},{"name":"WinBioEnrollBegin","features":[47]},{"name":"WinBioEnrollCapture","features":[47]},{"name":"WinBioEnrollCaptureWithCallback","features":[47]},{"name":"WinBioEnrollCommit","features":[47]},{"name":"WinBioEnrollDiscard","features":[47]},{"name":"WinBioEnrollSelect","features":[47]},{"name":"WinBioEnumBiometricUnits","features":[47]},{"name":"WinBioEnumDatabases","features":[47]},{"name":"WinBioEnumEnrollments","features":[47]},{"name":"WinBioEnumServiceProviders","features":[47]},{"name":"WinBioFree","features":[47]},{"name":"WinBioGetCredentialState","features":[47]},{"name":"WinBioGetDomainLogonSetting","features":[47]},{"name":"WinBioGetEnabledSetting","features":[47]},{"name":"WinBioGetEnrolledFactors","features":[47]},{"name":"WinBioGetLogonSetting","features":[47]},{"name":"WinBioGetProperty","features":[47]},{"name":"WinBioIdentify","features":[47]},{"name":"WinBioIdentifyWithCallback","features":[47]},{"name":"WinBioImproveBegin","features":[47]},{"name":"WinBioImproveEnd","features":[47]},{"name":"WinBioLocateSensor","features":[47]},{"name":"WinBioLocateSensorWithCallback","features":[47]},{"name":"WinBioLockUnit","features":[47]},{"name":"WinBioLogonIdentifiedUser","features":[47]},{"name":"WinBioMonitorPresence","features":[47]},{"name":"WinBioOpenSession","features":[47]},{"name":"WinBioRegisterEventMonitor","features":[47]},{"name":"WinBioReleaseFocus","features":[47]},{"name":"WinBioRemoveAllCredentials","features":[47]},{"name":"WinBioRemoveAllDomainCredentials","features":[47]},{"name":"WinBioRemoveCredential","features":[47]},{"name":"WinBioSetCredential","features":[47]},{"name":"WinBioSetProperty","features":[47]},{"name":"WinBioUnlockUnit","features":[47]},{"name":"WinBioUnregisterEventMonitor","features":[47]},{"name":"WinBioVerify","features":[47]},{"name":"WinBioVerifyWithCallback","features":[47,3]},{"name":"WinBioWait","features":[47]}],"371":[{"name":"A2DP_SINK_SUPPORTED_FEATURES_AMPLIFIER","features":[48]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_HEADPHONE","features":[48]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_RECORDER","features":[48]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_SPEAKER","features":[48]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MICROPHONE","features":[48]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MIXER","features":[48]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_PLAYER","features":[48]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_TUNER","features":[48]},{"name":"AF_BTH","features":[48]},{"name":"ATT_PROTOCOL_UUID16","features":[48]},{"name":"AUTHENTICATION_REQUIREMENTS","features":[48]},{"name":"AVCTP_PROTOCOL_UUID16","features":[48]},{"name":"AVDTP_PROTOCOL_UUID16","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_1","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_2","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_3","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_4","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_BROWSING","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE_PROPERTIES","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_LINKED_THUMBNAIL","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_BROWSING","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_COVER_ART","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_GROUP_NAVIGATION","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_MULTIPLE_PLAYER_APPLICATIONS","features":[48]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_PLAYER_APPLICATION_SETTINGS","features":[48]},{"name":"AVRemoteControlControllerServiceClass_UUID16","features":[48]},{"name":"AVRemoteControlServiceClassID_UUID16","features":[48]},{"name":"AVRemoteControlTargetServiceClassID_UUID16","features":[48]},{"name":"AdvancedAudioDistributionProfileID_UUID16","features":[48]},{"name":"AdvancedAudioDistributionServiceClassID_UUID16","features":[48]},{"name":"AudioSinkServiceClassID_UUID16","features":[48]},{"name":"AudioSinkSourceServiceClassID_UUID16","features":[48]},{"name":"AudioSourceServiceClassID_UUID16","features":[48]},{"name":"AudioVideoServiceClassID_UUID16","features":[48]},{"name":"AudioVideoServiceClass_UUID16","features":[48]},{"name":"BDIF_ADDRESS","features":[48]},{"name":"BDIF_BR","features":[48]},{"name":"BDIF_BR_SECURE_CONNECTION_PAIRED","features":[48]},{"name":"BDIF_COD","features":[48]},{"name":"BDIF_CONNECTED","features":[48]},{"name":"BDIF_DEBUGKEY","features":[48]},{"name":"BDIF_EIR","features":[48]},{"name":"BDIF_LE","features":[48]},{"name":"BDIF_LE_CONNECTABLE","features":[48]},{"name":"BDIF_LE_CONNECTED","features":[48]},{"name":"BDIF_LE_DEBUGKEY","features":[48]},{"name":"BDIF_LE_DISCOVERABLE","features":[48]},{"name":"BDIF_LE_MITM_PROTECTED","features":[48]},{"name":"BDIF_LE_NAME","features":[48]},{"name":"BDIF_LE_PAIRED","features":[48]},{"name":"BDIF_LE_PERSONAL","features":[48]},{"name":"BDIF_LE_PRIVACY_ENABLED","features":[48]},{"name":"BDIF_LE_RANDOM_ADDRESS_TYPE","features":[48]},{"name":"BDIF_LE_SECURE_CONNECTION_PAIRED","features":[48]},{"name":"BDIF_LE_VISIBLE","features":[48]},{"name":"BDIF_NAME","features":[48]},{"name":"BDIF_PAIRED","features":[48]},{"name":"BDIF_PERSONAL","features":[48]},{"name":"BDIF_RSSI","features":[48]},{"name":"BDIF_SHORT_NAME","features":[48]},{"name":"BDIF_SSP_MITM_PROTECTED","features":[48]},{"name":"BDIF_SSP_PAIRED","features":[48]},{"name":"BDIF_SSP_SUPPORTED","features":[48]},{"name":"BDIF_TX_POWER","features":[48]},{"name":"BDIF_VISIBLE","features":[48]},{"name":"BLUETOOTH_ADDRESS","features":[48]},{"name":"BLUETOOTH_AUTHENTICATE_RESPONSE","features":[48]},{"name":"BLUETOOTH_AUTHENTICATION_CALLBACK_PARAMS","features":[48,3]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD","features":[48]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_LEGACY","features":[48]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_NUMERIC_COMPARISON","features":[48]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_OOB","features":[48]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY","features":[48]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY_NOTIFICATION","features":[48]},{"name":"BLUETOOTH_AUTHENTICATION_REQUIREMENTS","features":[48]},{"name":"BLUETOOTH_COD_PAIRS","features":[48]},{"name":"BLUETOOTH_DEVICE_INFO","features":[48,3]},{"name":"BLUETOOTH_DEVICE_NAME_SIZE","features":[48]},{"name":"BLUETOOTH_DEVICE_SEARCH_PARAMS","features":[48,3]},{"name":"BLUETOOTH_FIND_RADIO_PARAMS","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_AUTHENTICATED","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_ENCRYPTED","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_CACHE","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_DEVICE","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_NONE","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_RETURN_ALL","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_SIGNED_WRITE","features":[48]},{"name":"BLUETOOTH_GATT_FLAG_WRITE_WITHOUT_RESPONSE","features":[48]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT","features":[48]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT_REGISTRATION","features":[48,3]},{"name":"BLUETOOTH_IO_CAPABILITY","features":[48]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYONLY","features":[48]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYYESNO","features":[48]},{"name":"BLUETOOTH_IO_CAPABILITY_KEYBOARDONLY","features":[48]},{"name":"BLUETOOTH_IO_CAPABILITY_NOINPUTNOOUTPUT","features":[48]},{"name":"BLUETOOTH_IO_CAPABILITY_UNDEFINED","features":[48]},{"name":"BLUETOOTH_LOCAL_SERVICE_INFO","features":[48,3]},{"name":"BLUETOOTH_MAX_NAME_SIZE","features":[48]},{"name":"BLUETOOTH_MAX_PASSKEY_BUFFER_SIZE","features":[48]},{"name":"BLUETOOTH_MAX_PASSKEY_SIZE","features":[48]},{"name":"BLUETOOTH_MAX_SERVICE_NAME_SIZE","features":[48]},{"name":"BLUETOOTH_MITM_ProtectionNotDefined","features":[48]},{"name":"BLUETOOTH_MITM_ProtectionNotRequired","features":[48]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredBonding","features":[48]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredGeneralBonding","features":[48]},{"name":"BLUETOOTH_MITM_ProtectionRequired","features":[48]},{"name":"BLUETOOTH_MITM_ProtectionRequiredBonding","features":[48]},{"name":"BLUETOOTH_MITM_ProtectionRequiredGeneralBonding","features":[48]},{"name":"BLUETOOTH_NUMERIC_COMPARISON_INFO","features":[48]},{"name":"BLUETOOTH_OOB_DATA_INFO","features":[48]},{"name":"BLUETOOTH_PASSKEY_INFO","features":[48]},{"name":"BLUETOOTH_PIN_INFO","features":[48]},{"name":"BLUETOOTH_RADIO_INFO","features":[48]},{"name":"BLUETOOTH_SELECT_DEVICE_PARAMS","features":[48,3]},{"name":"BLUETOOTH_SERVICE_DISABLE","features":[48]},{"name":"BLUETOOTH_SERVICE_ENABLE","features":[48]},{"name":"BNEP_PROTOCOL_UUID16","features":[48]},{"name":"BTHLEENUM_ATT_MTU_DEFAULT","features":[48]},{"name":"BTHLEENUM_ATT_MTU_INITIAL_NEGOTIATION","features":[48]},{"name":"BTHLEENUM_ATT_MTU_MAX","features":[48]},{"name":"BTHLEENUM_ATT_MTU_MIN","features":[48]},{"name":"BTHNS_RESULT_DEVICE_AUTHENTICATED","features":[48]},{"name":"BTHNS_RESULT_DEVICE_CONNECTED","features":[48]},{"name":"BTHNS_RESULT_DEVICE_REMEMBERED","features":[48]},{"name":"BTHPROTO_L2CAP","features":[48]},{"name":"BTHPROTO_RFCOMM","features":[48]},{"name":"BTH_ADDR_GIAC","features":[48]},{"name":"BTH_ADDR_IAC_FIRST","features":[48]},{"name":"BTH_ADDR_IAC_LAST","features":[48]},{"name":"BTH_ADDR_LIAC","features":[48]},{"name":"BTH_ADDR_STRING_SIZE","features":[48]},{"name":"BTH_DEVICE_INFO","features":[48]},{"name":"BTH_EIR_128_UUIDS_COMPLETE_ID","features":[48]},{"name":"BTH_EIR_128_UUIDS_PARTIAL_ID","features":[48]},{"name":"BTH_EIR_16_UUIDS_COMPLETE_ID","features":[48]},{"name":"BTH_EIR_16_UUIDS_PARTIAL_ID","features":[48]},{"name":"BTH_EIR_32_UUIDS_COMPLETE_ID","features":[48]},{"name":"BTH_EIR_32_UUIDS_PARTIAL_ID","features":[48]},{"name":"BTH_EIR_FLAGS_ID","features":[48]},{"name":"BTH_EIR_LOCAL_NAME_COMPLETE_ID","features":[48]},{"name":"BTH_EIR_LOCAL_NAME_PARTIAL_ID","features":[48]},{"name":"BTH_EIR_MANUFACTURER_ID","features":[48]},{"name":"BTH_EIR_OOB_BD_ADDR_ID","features":[48]},{"name":"BTH_EIR_OOB_COD_ID","features":[48]},{"name":"BTH_EIR_OOB_OPT_DATA_LEN_ID","features":[48]},{"name":"BTH_EIR_OOB_SP_HASH_ID","features":[48]},{"name":"BTH_EIR_OOB_SP_RANDOMIZER_ID","features":[48]},{"name":"BTH_EIR_SIZE","features":[48]},{"name":"BTH_EIR_TX_POWER_LEVEL_ID","features":[48]},{"name":"BTH_ERROR_ACL_CONNECTION_ALREADY_EXISTS","features":[48]},{"name":"BTH_ERROR_AUTHENTICATION_FAILURE","features":[48]},{"name":"BTH_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED","features":[48]},{"name":"BTH_ERROR_COARSE_CLOCK_ADJUSTMENT_REJECTED","features":[48]},{"name":"BTH_ERROR_COMMAND_DISALLOWED","features":[48]},{"name":"BTH_ERROR_CONNECTION_FAILED_TO_BE_ESTABLISHED","features":[48]},{"name":"BTH_ERROR_CONNECTION_REJECTED_DUE_TO_NO_SUITABLE_CHANNEL_FOUND","features":[48]},{"name":"BTH_ERROR_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE","features":[48]},{"name":"BTH_ERROR_CONNECTION_TIMEOUT","features":[48]},{"name":"BTH_ERROR_CONTROLLER_BUSY","features":[48]},{"name":"BTH_ERROR_DIFFERENT_TRANSACTION_COLLISION","features":[48]},{"name":"BTH_ERROR_DIRECTED_ADVERTISING_TIMEOUT","features":[48]},{"name":"BTH_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE","features":[48]},{"name":"BTH_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE","features":[48]},{"name":"BTH_ERROR_HARDWARE_FAILURE","features":[48]},{"name":"BTH_ERROR_HOST_BUSY_PAIRING","features":[48]},{"name":"BTH_ERROR_HOST_REJECTED_LIMITED_RESOURCES","features":[48]},{"name":"BTH_ERROR_HOST_REJECTED_PERSONAL_DEVICE","features":[48]},{"name":"BTH_ERROR_HOST_REJECTED_SECURITY_REASONS","features":[48]},{"name":"BTH_ERROR_HOST_TIMEOUT","features":[48]},{"name":"BTH_ERROR_INSTANT_PASSED","features":[48]},{"name":"BTH_ERROR_INSUFFICIENT_SECURITY","features":[48]},{"name":"BTH_ERROR_INVALID_HCI_PARAMETER","features":[48]},{"name":"BTH_ERROR_INVALID_LMP_PARAMETERS","features":[48]},{"name":"BTH_ERROR_KEY_MISSING","features":[48]},{"name":"BTH_ERROR_LIMIT_REACHED","features":[48]},{"name":"BTH_ERROR_LMP_PDU_NOT_ALLOWED","features":[48]},{"name":"BTH_ERROR_LMP_RESPONSE_TIMEOUT","features":[48]},{"name":"BTH_ERROR_LMP_TRANSACTION_COLLISION","features":[48]},{"name":"BTH_ERROR_LOCAL_HOST_TERMINATED_CONNECTION","features":[48]},{"name":"BTH_ERROR_MAC_CONNECTION_FAILED","features":[48]},{"name":"BTH_ERROR_MAX_NUMBER_OF_CONNECTIONS","features":[48]},{"name":"BTH_ERROR_MAX_NUMBER_OF_SCO_CONNECTIONS","features":[48]},{"name":"BTH_ERROR_MEMORY_FULL","features":[48]},{"name":"BTH_ERROR_NO_CONNECTION","features":[48]},{"name":"BTH_ERROR_OPERATION_CANCELLED_BY_HOST","features":[48]},{"name":"BTH_ERROR_PACKET_TOO_LONG","features":[48]},{"name":"BTH_ERROR_PAGE_TIMEOUT","features":[48]},{"name":"BTH_ERROR_PAIRING_NOT_ALLOWED","features":[48]},{"name":"BTH_ERROR_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED","features":[48]},{"name":"BTH_ERROR_PARAMETER_OUT_OF_MANDATORY_RANGE","features":[48]},{"name":"BTH_ERROR_QOS_IS_NOT_SUPPORTED","features":[48]},{"name":"BTH_ERROR_QOS_REJECTED","features":[48]},{"name":"BTH_ERROR_QOS_UNACCEPTABLE_PARAMETER","features":[48]},{"name":"BTH_ERROR_REMOTE_LOW_RESOURCES","features":[48]},{"name":"BTH_ERROR_REMOTE_POWERING_OFF","features":[48]},{"name":"BTH_ERROR_REMOTE_USER_ENDED_CONNECTION","features":[48]},{"name":"BTH_ERROR_REPEATED_ATTEMPTS","features":[48]},{"name":"BTH_ERROR_RESERVED_SLOT_VIOLATION","features":[48]},{"name":"BTH_ERROR_ROLE_CHANGE_NOT_ALLOWED","features":[48]},{"name":"BTH_ERROR_ROLE_SWITCH_FAILED","features":[48]},{"name":"BTH_ERROR_ROLE_SWITCH_PENDING","features":[48]},{"name":"BTH_ERROR_SCO_AIRMODE_REJECTED","features":[48]},{"name":"BTH_ERROR_SCO_INTERVAL_REJECTED","features":[48]},{"name":"BTH_ERROR_SCO_OFFSET_REJECTED","features":[48]},{"name":"BTH_ERROR_SECURE_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST","features":[48]},{"name":"BTH_ERROR_SUCCESS","features":[48]},{"name":"BTH_ERROR_TYPE_0_SUBMAP_NOT_DEFINED","features":[48]},{"name":"BTH_ERROR_UKNOWN_LMP_PDU","features":[48]},{"name":"BTH_ERROR_UNACCEPTABLE_CONNECTION_INTERVAL","features":[48]},{"name":"BTH_ERROR_UNIT_KEY_NOT_USED","features":[48]},{"name":"BTH_ERROR_UNKNOWN_ADVERTISING_IDENTIFIER","features":[48]},{"name":"BTH_ERROR_UNKNOWN_HCI_COMMAND","features":[48]},{"name":"BTH_ERROR_UNSPECIFIED","features":[48]},{"name":"BTH_ERROR_UNSPECIFIED_ERROR","features":[48]},{"name":"BTH_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER","features":[48]},{"name":"BTH_ERROR_UNSUPPORTED_LMP_PARM_VALUE","features":[48]},{"name":"BTH_ERROR_UNSUPPORTED_REMOTE_FEATURE","features":[48]},{"name":"BTH_HCI_EVENT_INFO","features":[48]},{"name":"BTH_HOST_FEATURE_ENHANCED_RETRANSMISSION_MODE","features":[48]},{"name":"BTH_HOST_FEATURE_LOW_ENERGY","features":[48]},{"name":"BTH_HOST_FEATURE_SCO_HCI","features":[48]},{"name":"BTH_HOST_FEATURE_SCO_HCIBYPASS","features":[48]},{"name":"BTH_HOST_FEATURE_STREAMING_MODE","features":[48]},{"name":"BTH_INFO_REQ","features":[48]},{"name":"BTH_INFO_RSP","features":[48]},{"name":"BTH_IOCTL_BASE","features":[48]},{"name":"BTH_L2CAP_EVENT_INFO","features":[48]},{"name":"BTH_LE_ATT_BLUETOOTH_BASE_GUID","features":[48]},{"name":"BTH_LE_ATT_CID","features":[48]},{"name":"BTH_LE_ATT_MAX_VALUE_SIZE","features":[48]},{"name":"BTH_LE_ATT_TRANSACTION_TIMEOUT","features":[48]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_FOUND","features":[48]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_LONG","features":[48]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHENTICATION","features":[48]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHORIZATION","features":[48]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION","features":[48]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[48]},{"name":"BTH_LE_ERROR_INSUFFICIENT_RESOURCES","features":[48]},{"name":"BTH_LE_ERROR_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[48]},{"name":"BTH_LE_ERROR_INVALID_HANDLE","features":[48]},{"name":"BTH_LE_ERROR_INVALID_OFFSET","features":[48]},{"name":"BTH_LE_ERROR_INVALID_PDU","features":[48]},{"name":"BTH_LE_ERROR_PREPARE_QUEUE_FULL","features":[48]},{"name":"BTH_LE_ERROR_READ_NOT_PERMITTED","features":[48]},{"name":"BTH_LE_ERROR_REQUEST_NOT_SUPPORTED","features":[48]},{"name":"BTH_LE_ERROR_UNKNOWN","features":[48]},{"name":"BTH_LE_ERROR_UNLIKELY","features":[48]},{"name":"BTH_LE_ERROR_UNSUPPORTED_GROUP_TYPE","features":[48]},{"name":"BTH_LE_ERROR_WRITE_NOT_PERMITTED","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_BOOKSHELF_SPEAKER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SOUNDBAR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SPEAKERPHONE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDALONE_SPEAKER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDMOUNTED_SPEAKER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_ALARM","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_AUDITORIUM","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BELL","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_ROOM","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_HORN","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_KIOSK","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_MICROPHONE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_SERVICE_DESK","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_ARM","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_WRIST","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_ACCESS_CONTROL","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIRCRAFT","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIR_CONDITIONING","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SINK","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SOURCE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AV_EQUIPMENT","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BARCODE_SCANNER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BLOOD_PRESSURE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CLOCK","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_COMPUTER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTINUOUS_GLUCOSE_MONITOR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTROL_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CYCLING","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY_EQUIPMENT","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DOMESTIC_APPLIANCE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_EYE_GLASSES","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_FAN","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GAMING","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GLUCOSE_METER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEARING_AID","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEART_RATE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEATING","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HID","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HUMIDIFIER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HVAC","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_INSULIN_PUMP","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_KEYRING","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_FIXTURES","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_SOURCE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MASK","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDIA_PLAYER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDICATION_DELIVERY","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_VEHICLE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_NETWORK_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OFFSET","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OUTDOOR_SPORTS_ACTIVITY","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PERSONAL_MOBILITY_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PHONE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PLUSE_OXIMETER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_POWER_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_REMOTE_CONTROL","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_RUNNING_WALKING_SENSOR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SENSOR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SIGNAGE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_TAG","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_THERMOMETER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_UNCATEGORIZED","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WATCH","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEARABLE_AUDIO_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEIGHT_SCALE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WINDOW_COVERING","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CADENCE_SENSOR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CYCLING_COMPUTER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_POWER_SENSOR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_AND_CADENCE_SENSOR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_SENSOR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_BEHIND_EAR_HEARING_AID","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_COCHLEAR_IMPLANT","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_IN_EAR_HEARING_AID","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HEART_RATE_SUBCATEGORY_HEART_RATE_BELT","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_BARCODE_SCANNER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_CARD_READER","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITAL_PEN","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITIZER_TABLET","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_GAMEPAD","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_JOYSTICK","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_KEYBOARD","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_MOUSE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_DISPLAY_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_DISPLAY_DEVICE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_POD","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_POD","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_FINGERTIP","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_WRIST_WORN","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_IN_SHOE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_HIP","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_SHOE","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_SUBCATEGORY_GENERIC","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_SUB_CATEGORY_MASK","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_THERMOMETER_SUBCATEGORY_EAR","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_WATCH_SUBCATEGORY_SPORTS_WATCH","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_EARBUD","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADPHONES","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADSET","features":[48]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_NECKBAND","features":[48]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_CHARACTERISTIC","features":[48]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_INCLUDE","features":[48]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_PRIMARY_SERVICE","features":[48]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_SECONDARY_SERVICE","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC","features":[48,3]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_AGGREGATE_FORMAT","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_CLIENT_CONFIGURATION","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_EXTENDED_PROPERTIES","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_FORMAT","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_SERVER_CONFIGURATION","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_USER_DESCRIPTION","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_APPEARANCE","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_DEVICE_NAME","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PREFERED_CONNECTION_PARAMETER","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PRIVACY_FLAG","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_RECONNECTION_ADDRESS","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_SERVICE_CHANGED","features":[48]},{"name":"BTH_LE_GATT_CHARACTERISTIC_VALUE","features":[48]},{"name":"BTH_LE_GATT_DEFAULT_MAX_INCLUDED_SERVICES_DEPTH","features":[48]},{"name":"BTH_LE_GATT_DESCRIPTOR","features":[48,3]},{"name":"BTH_LE_GATT_DESCRIPTOR_TYPE","features":[48]},{"name":"BTH_LE_GATT_DESCRIPTOR_VALUE","features":[48,3]},{"name":"BTH_LE_GATT_EVENT_TYPE","features":[48]},{"name":"BTH_LE_GATT_SERVICE","features":[48,3]},{"name":"BTH_LE_SERVICE_GAP","features":[48]},{"name":"BTH_LE_SERVICE_GATT","features":[48]},{"name":"BTH_LE_UUID","features":[48,3]},{"name":"BTH_LINK_KEY_LENGTH","features":[48]},{"name":"BTH_MAJORVERSION","features":[48]},{"name":"BTH_MAX_NAME_SIZE","features":[48]},{"name":"BTH_MAX_PIN_SIZE","features":[48]},{"name":"BTH_MAX_SERVICE_NAME_SIZE","features":[48]},{"name":"BTH_MFG_3COM","features":[48]},{"name":"BTH_MFG_ALCATEL","features":[48]},{"name":"BTH_MFG_APPLE","features":[48]},{"name":"BTH_MFG_ARUBA_NETWORKS","features":[48]},{"name":"BTH_MFG_ATMEL","features":[48]},{"name":"BTH_MFG_AVM_BERLIN","features":[48]},{"name":"BTH_MFG_BANDSPEED","features":[48]},{"name":"BTH_MFG_BROADCOM","features":[48]},{"name":"BTH_MFG_CONEXANT","features":[48]},{"name":"BTH_MFG_CSR","features":[48]},{"name":"BTH_MFG_C_TECHNOLOGIES","features":[48]},{"name":"BTH_MFG_DIGIANSWER","features":[48]},{"name":"BTH_MFG_ERICSSON","features":[48]},{"name":"BTH_MFG_HITACHI","features":[48]},{"name":"BTH_MFG_IBM","features":[48]},{"name":"BTH_MFG_INFINEON","features":[48]},{"name":"BTH_MFG_INTEL","features":[48]},{"name":"BTH_MFG_INTERNAL_USE","features":[48]},{"name":"BTH_MFG_INVENTEL","features":[48]},{"name":"BTH_MFG_KC_TECHNOLOGY","features":[48]},{"name":"BTH_MFG_LUCENT","features":[48]},{"name":"BTH_MFG_MACRONIX_INTERNATIONAL","features":[48]},{"name":"BTH_MFG_MANSELLA","features":[48]},{"name":"BTH_MFG_MARVELL","features":[48]},{"name":"BTH_MFG_MICROSOFT","features":[48]},{"name":"BTH_MFG_MITEL","features":[48]},{"name":"BTH_MFG_MITSIBUSHI","features":[48]},{"name":"BTH_MFG_MOTOROLA","features":[48]},{"name":"BTH_MFG_NEC","features":[48]},{"name":"BTH_MFG_NEWLOGIC","features":[48]},{"name":"BTH_MFG_NOKIA","features":[48]},{"name":"BTH_MFG_NORDIC_SEMICONDUCTORS_ASA","features":[48]},{"name":"BTH_MFG_OPEN_INTERFACE","features":[48]},{"name":"BTH_MFG_PARTHUS","features":[48]},{"name":"BTH_MFG_PHILIPS_SEMICONDUCTOR","features":[48]},{"name":"BTH_MFG_QUALCOMM","features":[48]},{"name":"BTH_MFG_RF_MICRO_DEVICES","features":[48]},{"name":"BTH_MFG_ROHDE_SCHWARZ","features":[48]},{"name":"BTH_MFG_RTX_TELECOM","features":[48]},{"name":"BTH_MFG_SIGNIA","features":[48]},{"name":"BTH_MFG_SILICONWAVE","features":[48]},{"name":"BTH_MFG_SYMBOL_TECHNOLOGIES","features":[48]},{"name":"BTH_MFG_TENOVIS","features":[48]},{"name":"BTH_MFG_TI","features":[48]},{"name":"BTH_MFG_TOSHIBA","features":[48]},{"name":"BTH_MFG_TRANSILICA","features":[48]},{"name":"BTH_MFG_TTPCOM","features":[48]},{"name":"BTH_MFG_WAVEPLUS_TECHNOLOGY_CO","features":[48]},{"name":"BTH_MFG_WIDCOMM","features":[48]},{"name":"BTH_MFG_ZEEVO","features":[48]},{"name":"BTH_MINORVERSION","features":[48]},{"name":"BTH_PING_REQ","features":[48]},{"name":"BTH_PING_RSP","features":[48]},{"name":"BTH_QUERY_DEVICE","features":[48]},{"name":"BTH_QUERY_SERVICE","features":[48]},{"name":"BTH_RADIO_IN_RANGE","features":[48]},{"name":"BTH_SDP_VERSION","features":[48]},{"name":"BTH_SET_SERVICE","features":[48,3]},{"name":"BTH_VID_DEFAULT_VALUE","features":[48]},{"name":"BT_PORT_DYN_FIRST","features":[48]},{"name":"BT_PORT_MAX","features":[48]},{"name":"BT_PORT_MIN","features":[48]},{"name":"BasicPrintingProfileID_UUID16","features":[48]},{"name":"BasicPrintingServiceClassID_UUID16","features":[48]},{"name":"BluetoothAuthenticateDevice","features":[48,3]},{"name":"BluetoothAuthenticateDeviceEx","features":[48,3]},{"name":"BluetoothAuthenticateMultipleDevices","features":[48,3]},{"name":"BluetoothDisplayDeviceProperties","features":[48,3]},{"name":"BluetoothEnableDiscovery","features":[48,3]},{"name":"BluetoothEnableIncomingConnections","features":[48,3]},{"name":"BluetoothEnumerateInstalledServices","features":[48,3]},{"name":"BluetoothFindDeviceClose","features":[48,3]},{"name":"BluetoothFindFirstDevice","features":[48,3]},{"name":"BluetoothFindFirstRadio","features":[48,3]},{"name":"BluetoothFindNextDevice","features":[48,3]},{"name":"BluetoothFindNextRadio","features":[48,3]},{"name":"BluetoothFindRadioClose","features":[48,3]},{"name":"BluetoothGATTAbortReliableWrite","features":[48,3]},{"name":"BluetoothGATTBeginReliableWrite","features":[48,3]},{"name":"BluetoothGATTEndReliableWrite","features":[48,3]},{"name":"BluetoothGATTGetCharacteristicValue","features":[48,3]},{"name":"BluetoothGATTGetCharacteristics","features":[48,3]},{"name":"BluetoothGATTGetDescriptorValue","features":[48,3]},{"name":"BluetoothGATTGetDescriptors","features":[48,3]},{"name":"BluetoothGATTGetIncludedServices","features":[48,3]},{"name":"BluetoothGATTGetServices","features":[48,3]},{"name":"BluetoothGATTRegisterEvent","features":[48,3]},{"name":"BluetoothGATTSetCharacteristicValue","features":[48,3]},{"name":"BluetoothGATTSetDescriptorValue","features":[48,3]},{"name":"BluetoothGATTUnregisterEvent","features":[48]},{"name":"BluetoothGetDeviceInfo","features":[48,3]},{"name":"BluetoothGetRadioInfo","features":[48,3]},{"name":"BluetoothIsConnectable","features":[48,3]},{"name":"BluetoothIsDiscoverable","features":[48,3]},{"name":"BluetoothIsVersionAvailable","features":[48,3]},{"name":"BluetoothRegisterForAuthentication","features":[48,3]},{"name":"BluetoothRegisterForAuthenticationEx","features":[48,3]},{"name":"BluetoothRemoveDevice","features":[48]},{"name":"BluetoothSdpEnumAttributes","features":[48,3]},{"name":"BluetoothSdpGetAttributeValue","features":[48]},{"name":"BluetoothSdpGetContainerElementData","features":[48]},{"name":"BluetoothSdpGetElementData","features":[48]},{"name":"BluetoothSdpGetString","features":[48]},{"name":"BluetoothSelectDevices","features":[48,3]},{"name":"BluetoothSelectDevicesFree","features":[48,3]},{"name":"BluetoothSendAuthenticationResponse","features":[48,3]},{"name":"BluetoothSendAuthenticationResponseEx","features":[48,3]},{"name":"BluetoothSetLocalServiceInfo","features":[48,3]},{"name":"BluetoothSetServiceState","features":[48,3]},{"name":"BluetoothUnregisterAuthentication","features":[48,3]},{"name":"BluetoothUpdateDeviceRecord","features":[48,3]},{"name":"Bluetooth_Base_UUID","features":[48]},{"name":"BrowseGroupDescriptorServiceClassID_UUID16","features":[48]},{"name":"CMPT_PROTOCOL_UUID16","features":[48]},{"name":"COD_AUDIO_MINOR_CAMCORDER","features":[48]},{"name":"COD_AUDIO_MINOR_CAR_AUDIO","features":[48]},{"name":"COD_AUDIO_MINOR_GAMING_TOY","features":[48]},{"name":"COD_AUDIO_MINOR_HANDS_FREE","features":[48]},{"name":"COD_AUDIO_MINOR_HEADPHONES","features":[48]},{"name":"COD_AUDIO_MINOR_HEADSET","features":[48]},{"name":"COD_AUDIO_MINOR_HEADSET_HANDS_FREE","features":[48]},{"name":"COD_AUDIO_MINOR_HIFI_AUDIO","features":[48]},{"name":"COD_AUDIO_MINOR_LOUDSPEAKER","features":[48]},{"name":"COD_AUDIO_MINOR_MICROPHONE","features":[48]},{"name":"COD_AUDIO_MINOR_PORTABLE_AUDIO","features":[48]},{"name":"COD_AUDIO_MINOR_SET_TOP_BOX","features":[48]},{"name":"COD_AUDIO_MINOR_UNCLASSIFIED","features":[48]},{"name":"COD_AUDIO_MINOR_VCR","features":[48]},{"name":"COD_AUDIO_MINOR_VIDEO_CAMERA","features":[48]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_CONFERENCING","features":[48]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_LOUDSPEAKER","features":[48]},{"name":"COD_AUDIO_MINOR_VIDEO_MONITOR","features":[48]},{"name":"COD_COMPUTER_MINOR_DESKTOP","features":[48]},{"name":"COD_COMPUTER_MINOR_HANDHELD","features":[48]},{"name":"COD_COMPUTER_MINOR_LAPTOP","features":[48]},{"name":"COD_COMPUTER_MINOR_PALM","features":[48]},{"name":"COD_COMPUTER_MINOR_SERVER","features":[48]},{"name":"COD_COMPUTER_MINOR_UNCLASSIFIED","features":[48]},{"name":"COD_COMPUTER_MINOR_WEARABLE","features":[48]},{"name":"COD_FORMAT_BIT_OFFSET","features":[48]},{"name":"COD_FORMAT_MASK","features":[48]},{"name":"COD_HEALTH_MINOR_BLOOD_PRESSURE_MONITOR","features":[48]},{"name":"COD_HEALTH_MINOR_GLUCOSE_METER","features":[48]},{"name":"COD_HEALTH_MINOR_HEALTH_DATA_DISPLAY","features":[48]},{"name":"COD_HEALTH_MINOR_HEART_PULSE_MONITOR","features":[48]},{"name":"COD_HEALTH_MINOR_PULSE_OXIMETER","features":[48]},{"name":"COD_HEALTH_MINOR_STEP_COUNTER","features":[48]},{"name":"COD_HEALTH_MINOR_THERMOMETER","features":[48]},{"name":"COD_HEALTH_MINOR_WEIGHING_SCALE","features":[48]},{"name":"COD_IMAGING_MINOR_CAMERA_MASK","features":[48]},{"name":"COD_IMAGING_MINOR_DISPLAY_MASK","features":[48]},{"name":"COD_IMAGING_MINOR_PRINTER_MASK","features":[48]},{"name":"COD_IMAGING_MINOR_SCANNER_MASK","features":[48]},{"name":"COD_LAN_ACCESS_0_USED","features":[48]},{"name":"COD_LAN_ACCESS_17_USED","features":[48]},{"name":"COD_LAN_ACCESS_33_USED","features":[48]},{"name":"COD_LAN_ACCESS_50_USED","features":[48]},{"name":"COD_LAN_ACCESS_67_USED","features":[48]},{"name":"COD_LAN_ACCESS_83_USED","features":[48]},{"name":"COD_LAN_ACCESS_99_USED","features":[48]},{"name":"COD_LAN_ACCESS_BIT_OFFSET","features":[48]},{"name":"COD_LAN_ACCESS_FULL","features":[48]},{"name":"COD_LAN_ACCESS_MASK","features":[48]},{"name":"COD_LAN_MINOR_MASK","features":[48]},{"name":"COD_LAN_MINOR_UNCLASSIFIED","features":[48]},{"name":"COD_MAJOR_AUDIO","features":[48]},{"name":"COD_MAJOR_COMPUTER","features":[48]},{"name":"COD_MAJOR_HEALTH","features":[48]},{"name":"COD_MAJOR_IMAGING","features":[48]},{"name":"COD_MAJOR_LAN_ACCESS","features":[48]},{"name":"COD_MAJOR_MASK","features":[48]},{"name":"COD_MAJOR_MISCELLANEOUS","features":[48]},{"name":"COD_MAJOR_PERIPHERAL","features":[48]},{"name":"COD_MAJOR_PHONE","features":[48]},{"name":"COD_MAJOR_TOY","features":[48]},{"name":"COD_MAJOR_UNCLASSIFIED","features":[48]},{"name":"COD_MAJOR_WEARABLE","features":[48]},{"name":"COD_MINOR_BIT_OFFSET","features":[48]},{"name":"COD_MINOR_MASK","features":[48]},{"name":"COD_PERIPHERAL_MINOR_GAMEPAD","features":[48]},{"name":"COD_PERIPHERAL_MINOR_JOYSTICK","features":[48]},{"name":"COD_PERIPHERAL_MINOR_KEYBOARD_MASK","features":[48]},{"name":"COD_PERIPHERAL_MINOR_NO_CATEGORY","features":[48]},{"name":"COD_PERIPHERAL_MINOR_POINTER_MASK","features":[48]},{"name":"COD_PERIPHERAL_MINOR_REMOTE_CONTROL","features":[48]},{"name":"COD_PERIPHERAL_MINOR_SENSING","features":[48]},{"name":"COD_PHONE_MINOR_CELLULAR","features":[48]},{"name":"COD_PHONE_MINOR_CORDLESS","features":[48]},{"name":"COD_PHONE_MINOR_SMART","features":[48]},{"name":"COD_PHONE_MINOR_UNCLASSIFIED","features":[48]},{"name":"COD_PHONE_MINOR_WIRED_MODEM","features":[48]},{"name":"COD_SERVICE_AUDIO","features":[48]},{"name":"COD_SERVICE_CAPTURING","features":[48]},{"name":"COD_SERVICE_INFORMATION","features":[48]},{"name":"COD_SERVICE_LE_AUDIO","features":[48]},{"name":"COD_SERVICE_LIMITED","features":[48]},{"name":"COD_SERVICE_MASK","features":[48]},{"name":"COD_SERVICE_MAX_COUNT","features":[48]},{"name":"COD_SERVICE_NETWORKING","features":[48]},{"name":"COD_SERVICE_OBJECT_XFER","features":[48]},{"name":"COD_SERVICE_POSITIONING","features":[48]},{"name":"COD_SERVICE_RENDERING","features":[48]},{"name":"COD_SERVICE_TELEPHONY","features":[48]},{"name":"COD_TOY_MINOR_CONTROLLER","features":[48]},{"name":"COD_TOY_MINOR_DOLL_ACTION_FIGURE","features":[48]},{"name":"COD_TOY_MINOR_GAME","features":[48]},{"name":"COD_TOY_MINOR_ROBOT","features":[48]},{"name":"COD_TOY_MINOR_VEHICLE","features":[48]},{"name":"COD_VERSION","features":[48]},{"name":"COD_WEARABLE_MINOR_GLASSES","features":[48]},{"name":"COD_WEARABLE_MINOR_HELMET","features":[48]},{"name":"COD_WEARABLE_MINOR_JACKET","features":[48]},{"name":"COD_WEARABLE_MINOR_PAGER","features":[48]},{"name":"COD_WEARABLE_MINOR_WRIST_WATCH","features":[48]},{"name":"CORDLESS_EXTERNAL_NETWORK_ANALOG_CELLULAR","features":[48]},{"name":"CORDLESS_EXTERNAL_NETWORK_CDMA","features":[48]},{"name":"CORDLESS_EXTERNAL_NETWORK_GSM","features":[48]},{"name":"CORDLESS_EXTERNAL_NETWORK_ISDN","features":[48]},{"name":"CORDLESS_EXTERNAL_NETWORK_OTHER","features":[48]},{"name":"CORDLESS_EXTERNAL_NETWORK_PACKET_SWITCHED","features":[48]},{"name":"CORDLESS_EXTERNAL_NETWORK_PSTN","features":[48]},{"name":"CTNAccessServiceClassID_UUID16","features":[48]},{"name":"CTNNotificationServiceClassID_UUID16","features":[48]},{"name":"CTNProfileID_UUID16","features":[48]},{"name":"CharacteristicAggregateFormat","features":[48]},{"name":"CharacteristicExtendedProperties","features":[48]},{"name":"CharacteristicFormat","features":[48]},{"name":"CharacteristicUserDescription","features":[48]},{"name":"CharacteristicValueChangedEvent","features":[48]},{"name":"ClientCharacteristicConfiguration","features":[48]},{"name":"CommonISDNAccessServiceClassID_UUID16","features":[48]},{"name":"CommonISDNAccessServiceClass_UUID16","features":[48]},{"name":"CordlessServiceClassID_UUID16","features":[48]},{"name":"CordlessTelephonyServiceClassID_UUID16","features":[48]},{"name":"CustomDescriptor","features":[48]},{"name":"DI_VENDOR_ID_SOURCE_BLUETOOTH_SIG","features":[48]},{"name":"DI_VENDOR_ID_SOURCE_USB_IF","features":[48]},{"name":"DialupNetworkingServiceClassID_UUID16","features":[48]},{"name":"DirectPrintingReferenceObjectsServiceClassID_UUID16","features":[48]},{"name":"DirectPrintingServiceClassID_UUID16","features":[48]},{"name":"ENCODING_UTF_8","features":[48]},{"name":"ESdpUpnpIpLapServiceClassID_UUID16","features":[48]},{"name":"ESdpUpnpIpPanServiceClassID_UUID16","features":[48]},{"name":"ESdpUpnpL2capServiceClassID_UUID16","features":[48]},{"name":"FTP_PROTOCOL_UUID16","features":[48]},{"name":"FaxServiceClassID_UUID16","features":[48]},{"name":"GNSSProfileID_UUID16","features":[48]},{"name":"GNSSServerServiceClassID_UUID16","features":[48]},{"name":"GNServiceClassID_UUID16","features":[48]},{"name":"GUID_BLUETOOTHLE_DEVICE_INTERFACE","features":[48]},{"name":"GUID_BLUETOOTH_AUTHENTICATION_REQUEST","features":[48]},{"name":"GUID_BLUETOOTH_GATT_SERVICE_DEVICE_INTERFACE","features":[48]},{"name":"GUID_BLUETOOTH_HCI_EVENT","features":[48]},{"name":"GUID_BLUETOOTH_HCI_VENDOR_EVENT","features":[48]},{"name":"GUID_BLUETOOTH_KEYPRESS_EVENT","features":[48]},{"name":"GUID_BLUETOOTH_L2CAP_EVENT","features":[48]},{"name":"GUID_BLUETOOTH_RADIO_IN_RANGE","features":[48]},{"name":"GUID_BLUETOOTH_RADIO_OUT_OF_RANGE","features":[48]},{"name":"GUID_BTHPORT_DEVICE_INTERFACE","features":[48]},{"name":"GUID_BTH_RFCOMM_SERVICE_DEVICE_INTERFACE","features":[48]},{"name":"GenericAudioServiceClassID_UUID16","features":[48]},{"name":"GenericFileTransferServiceClassID_UUID16","features":[48]},{"name":"GenericNetworkingServiceClassID_UUID16","features":[48]},{"name":"GenericTelephonyServiceClassID_UUID16","features":[48]},{"name":"HANDLE_SDP_TYPE","features":[48]},{"name":"HBLUETOOTH_DEVICE_FIND","features":[48]},{"name":"HBLUETOOTH_RADIO_FIND","features":[48]},{"name":"HCCC_PROTOCOL_UUID16","features":[48]},{"name":"HCDC_PROTOCOL_UUID16","features":[48]},{"name":"HCI_CONNECTION_TYPE_ACL","features":[48]},{"name":"HCI_CONNECTION_TYPE_LE","features":[48]},{"name":"HCI_CONNECTION_TYPE_SCO","features":[48]},{"name":"HCI_CONNNECTION_TYPE_ACL","features":[48]},{"name":"HCI_CONNNECTION_TYPE_SCO","features":[48]},{"name":"HCN_PROTOCOL_UUID16","features":[48]},{"name":"HCRPrintServiceClassID_UUID16","features":[48]},{"name":"HCRScanServiceClassID_UUID16","features":[48]},{"name":"HID_PROTOCOL_UUID16","features":[48]},{"name":"HTTP_PROTOCOL_UUID16","features":[48]},{"name":"HandsfreeAudioGatewayServiceClassID_UUID16","features":[48]},{"name":"HandsfreeServiceClassID_UUID16","features":[48]},{"name":"HardcopyCableReplacementProfileID_UUID16","features":[48]},{"name":"HardcopyCableReplacementServiceClassID_UUID16","features":[48]},{"name":"HeadsetAudioGatewayServiceClassID_UUID16","features":[48]},{"name":"HeadsetHSServiceClassID_UUID16","features":[48]},{"name":"HeadsetServiceClassID_UUID16","features":[48]},{"name":"HealthDeviceProfileID_UUID16","features":[48]},{"name":"HealthDeviceProfileSinkServiceClassID_UUID16","features":[48]},{"name":"HealthDeviceProfileSourceServiceClassID_UUID16","features":[48]},{"name":"HumanInterfaceDeviceServiceClassID_UUID16","features":[48]},{"name":"IO_CAPABILITY","features":[48]},{"name":"IP_PROTOCOL_UUID16","features":[48]},{"name":"ImagingAutomaticArchiveServiceClassID_UUID16","features":[48]},{"name":"ImagingReferenceObjectsServiceClassID_UUID16","features":[48]},{"name":"ImagingResponderServiceClassID_UUID16","features":[48]},{"name":"ImagingServiceClassID_UUID16","features":[48]},{"name":"ImagingServiceProfileID_UUID16","features":[48]},{"name":"IntercomServiceClassID_UUID16","features":[48]},{"name":"IoCaps_DisplayOnly","features":[48]},{"name":"IoCaps_DisplayYesNo","features":[48]},{"name":"IoCaps_KeyboardOnly","features":[48]},{"name":"IoCaps_NoInputNoOutput","features":[48]},{"name":"IoCaps_Undefined","features":[48]},{"name":"IrMCSyncServiceClassID_UUID16","features":[48]},{"name":"IrMcSyncCommandServiceClassID_UUID16","features":[48]},{"name":"L2CAP_DEFAULT_MTU","features":[48]},{"name":"L2CAP_MAX_MTU","features":[48]},{"name":"L2CAP_MIN_MTU","features":[48]},{"name":"L2CAP_PROTOCOL_UUID16","features":[48]},{"name":"LANAccessUsingPPPServiceClassID_UUID16","features":[48]},{"name":"LANGUAGE_EN_US","features":[48]},{"name":"LANG_BASE_ENCODING_INDEX","features":[48]},{"name":"LANG_BASE_LANGUAGE_INDEX","features":[48]},{"name":"LANG_BASE_OFFSET_INDEX","features":[48]},{"name":"LANG_DEFAULT_ID","features":[48]},{"name":"LAP_GIAC_VALUE","features":[48]},{"name":"LAP_LIAC_VALUE","features":[48]},{"name":"MAX_L2CAP_INFO_DATA_LENGTH","features":[48]},{"name":"MAX_L2CAP_PING_DATA_LENGTH","features":[48]},{"name":"MAX_UUIDS_IN_QUERY","features":[48]},{"name":"MITMProtectionNotDefined","features":[48]},{"name":"MITMProtectionNotRequired","features":[48]},{"name":"MITMProtectionNotRequiredBonding","features":[48]},{"name":"MITMProtectionNotRequiredGeneralBonding","features":[48]},{"name":"MITMProtectionRequired","features":[48]},{"name":"MITMProtectionRequiredBonding","features":[48]},{"name":"MITMProtectionRequiredGeneralBonding","features":[48]},{"name":"MPSProfileID_UUID16","features":[48]},{"name":"MPSServiceClassID_UUID16","features":[48]},{"name":"MessageAccessProfileID_UUID16","features":[48]},{"name":"MessageAccessServerServiceClassID_UUID16","features":[48]},{"name":"MessageNotificationServerServiceClassID_UUID16","features":[48]},{"name":"NAPServiceClassID_UUID16","features":[48]},{"name":"NS_BTH","features":[48]},{"name":"NodeContainerType","features":[48]},{"name":"NodeContainerTypeAlternative","features":[48]},{"name":"NodeContainerTypeSequence","features":[48]},{"name":"OBEXFileTransferServiceClassID_UUID16","features":[48]},{"name":"OBEXObjectPushServiceClassID_UUID16","features":[48]},{"name":"OBEX_PROTOCOL_UUID16","features":[48]},{"name":"OBJECT_PUSH_FORMAT_ANY","features":[48]},{"name":"OBJECT_PUSH_FORMAT_ICAL_2_0","features":[48]},{"name":"OBJECT_PUSH_FORMAT_VCAL_1_0","features":[48]},{"name":"OBJECT_PUSH_FORMAT_VCARD_2_1","features":[48]},{"name":"OBJECT_PUSH_FORMAT_VCARD_3_0","features":[48]},{"name":"OBJECT_PUSH_FORMAT_VMESSAGE","features":[48]},{"name":"OBJECT_PUSH_FORMAT_VNOTE","features":[48]},{"name":"PANUServiceClassID_UUID16","features":[48]},{"name":"PFNBLUETOOTH_GATT_EVENT_CALLBACK","features":[48]},{"name":"PFN_AUTHENTICATION_CALLBACK","features":[48,3]},{"name":"PFN_AUTHENTICATION_CALLBACK_EX","features":[48,3]},{"name":"PFN_BLUETOOTH_ENUM_ATTRIBUTES_CALLBACK","features":[48,3]},{"name":"PFN_DEVICE_CALLBACK","features":[48,3]},{"name":"PF_BTH","features":[48]},{"name":"PSM_3DSP","features":[48]},{"name":"PSM_ATT","features":[48]},{"name":"PSM_AVCTP","features":[48]},{"name":"PSM_AVCTP_BROWSE","features":[48]},{"name":"PSM_AVDTP","features":[48]},{"name":"PSM_BNEP","features":[48]},{"name":"PSM_HID_CONTROL","features":[48]},{"name":"PSM_HID_INTERRUPT","features":[48]},{"name":"PSM_LE_IPSP","features":[48]},{"name":"PSM_RFCOMM","features":[48]},{"name":"PSM_SDP","features":[48]},{"name":"PSM_TCS_BIN","features":[48]},{"name":"PSM_TCS_BIN_CORDLESS","features":[48]},{"name":"PSM_UDI_C_PLANE","features":[48]},{"name":"PSM_UPNP","features":[48]},{"name":"PhonebookAccessPceServiceClassID_UUID16","features":[48]},{"name":"PhonebookAccessProfileID_UUID16","features":[48]},{"name":"PhonebookAccessPseServiceClassID_UUID16","features":[48]},{"name":"PnPInformationServiceClassID_UUID16","features":[48]},{"name":"PrintingStatusServiceClassID_UUID16","features":[48]},{"name":"PublicBrowseGroupServiceClassID_UUID16","features":[48]},{"name":"RFCOMM_CMD_MSC","features":[48]},{"name":"RFCOMM_CMD_NONE","features":[48]},{"name":"RFCOMM_CMD_RLS","features":[48]},{"name":"RFCOMM_CMD_RPN","features":[48]},{"name":"RFCOMM_CMD_RPN_REQUEST","features":[48]},{"name":"RFCOMM_CMD_RPN_RESPONSE","features":[48]},{"name":"RFCOMM_COMMAND","features":[48]},{"name":"RFCOMM_MAX_MTU","features":[48]},{"name":"RFCOMM_MIN_MTU","features":[48]},{"name":"RFCOMM_MSC_DATA","features":[48]},{"name":"RFCOMM_PROTOCOL_UUID16","features":[48]},{"name":"RFCOMM_RLS_DATA","features":[48]},{"name":"RFCOMM_RPN_DATA","features":[48]},{"name":"RLS_ERROR","features":[48]},{"name":"RLS_FRAMING","features":[48]},{"name":"RLS_OVERRUN","features":[48]},{"name":"RLS_PARITY","features":[48]},{"name":"RPN_BAUD_115200","features":[48]},{"name":"RPN_BAUD_19200","features":[48]},{"name":"RPN_BAUD_230400","features":[48]},{"name":"RPN_BAUD_2400","features":[48]},{"name":"RPN_BAUD_38400","features":[48]},{"name":"RPN_BAUD_4800","features":[48]},{"name":"RPN_BAUD_57600","features":[48]},{"name":"RPN_BAUD_7200","features":[48]},{"name":"RPN_BAUD_9600","features":[48]},{"name":"RPN_DATA_5","features":[48]},{"name":"RPN_DATA_6","features":[48]},{"name":"RPN_DATA_7","features":[48]},{"name":"RPN_DATA_8","features":[48]},{"name":"RPN_FLOW_RTC_IN","features":[48]},{"name":"RPN_FLOW_RTC_OUT","features":[48]},{"name":"RPN_FLOW_RTR_IN","features":[48]},{"name":"RPN_FLOW_RTR_OUT","features":[48]},{"name":"RPN_FLOW_X_IN","features":[48]},{"name":"RPN_FLOW_X_OUT","features":[48]},{"name":"RPN_PARAM_BAUD","features":[48]},{"name":"RPN_PARAM_DATA","features":[48]},{"name":"RPN_PARAM_PARITY","features":[48]},{"name":"RPN_PARAM_P_TYPE","features":[48]},{"name":"RPN_PARAM_RTC_IN","features":[48]},{"name":"RPN_PARAM_RTC_OUT","features":[48]},{"name":"RPN_PARAM_RTR_IN","features":[48]},{"name":"RPN_PARAM_RTR_OUT","features":[48]},{"name":"RPN_PARAM_STOP","features":[48]},{"name":"RPN_PARAM_XOFF","features":[48]},{"name":"RPN_PARAM_XON","features":[48]},{"name":"RPN_PARAM_X_IN","features":[48]},{"name":"RPN_PARAM_X_OUT","features":[48]},{"name":"RPN_PARITY_EVEN","features":[48]},{"name":"RPN_PARITY_MARK","features":[48]},{"name":"RPN_PARITY_NONE","features":[48]},{"name":"RPN_PARITY_ODD","features":[48]},{"name":"RPN_PARITY_SPACE","features":[48]},{"name":"RPN_STOP_1","features":[48]},{"name":"RPN_STOP_1_5","features":[48]},{"name":"ReferencePrintingServiceClassID_UUID16","features":[48]},{"name":"ReflectsUIServiceClassID_UUID16","features":[48]},{"name":"SAP_BIT_OFFSET","features":[48]},{"name":"SDP_ATTRIB_A2DP_SUPPORTED_FEATURES","features":[48]},{"name":"SDP_ATTRIB_ADDITIONAL_PROTOCOL_DESCRIPTOR_LIST","features":[48]},{"name":"SDP_ATTRIB_AVAILABILITY","features":[48]},{"name":"SDP_ATTRIB_AVRCP_SUPPORTED_FEATURES","features":[48]},{"name":"SDP_ATTRIB_BROWSE_GROUP_ID","features":[48]},{"name":"SDP_ATTRIB_BROWSE_GROUP_LIST","features":[48]},{"name":"SDP_ATTRIB_CLASS_ID_LIST","features":[48]},{"name":"SDP_ATTRIB_CLIENT_EXECUTABLE_URL","features":[48]},{"name":"SDP_ATTRIB_CORDLESS_EXTERNAL_NETWORK","features":[48]},{"name":"SDP_ATTRIB_DI_PRIMARY_RECORD","features":[48]},{"name":"SDP_ATTRIB_DI_PRODUCT_ID","features":[48]},{"name":"SDP_ATTRIB_DI_SPECIFICATION_ID","features":[48]},{"name":"SDP_ATTRIB_DI_VENDOR_ID","features":[48]},{"name":"SDP_ATTRIB_DI_VENDOR_ID_SOURCE","features":[48]},{"name":"SDP_ATTRIB_DI_VERSION","features":[48]},{"name":"SDP_ATTRIB_DOCUMENTATION_URL","features":[48]},{"name":"SDP_ATTRIB_FAX_AUDIO_FEEDBACK_SUPPORT","features":[48]},{"name":"SDP_ATTRIB_FAX_CLASS_1_SUPPORT","features":[48]},{"name":"SDP_ATTRIB_FAX_CLASS_2_0_SUPPORT","features":[48]},{"name":"SDP_ATTRIB_FAX_CLASS_2_SUPPORT","features":[48]},{"name":"SDP_ATTRIB_HEADSET_REMOTE_AUDIO_VOLUME_CONTROL","features":[48]},{"name":"SDP_ATTRIB_HFP_SUPPORTED_FEATURES","features":[48]},{"name":"SDP_ATTRIB_HID_BATTERY_POWER","features":[48]},{"name":"SDP_ATTRIB_HID_BOOT_DEVICE","features":[48]},{"name":"SDP_ATTRIB_HID_COUNTRY_CODE","features":[48]},{"name":"SDP_ATTRIB_HID_DESCRIPTOR_LIST","features":[48]},{"name":"SDP_ATTRIB_HID_DEVICE_RELEASE_NUMBER","features":[48]},{"name":"SDP_ATTRIB_HID_DEVICE_SUBCLASS","features":[48]},{"name":"SDP_ATTRIB_HID_LANG_ID_BASE_LIST","features":[48]},{"name":"SDP_ATTRIB_HID_NORMALLY_CONNECTABLE","features":[48]},{"name":"SDP_ATTRIB_HID_PARSER_VERSION","features":[48]},{"name":"SDP_ATTRIB_HID_PROFILE_VERSION","features":[48]},{"name":"SDP_ATTRIB_HID_RECONNECT_INITIATE","features":[48]},{"name":"SDP_ATTRIB_HID_REMOTE_WAKE","features":[48]},{"name":"SDP_ATTRIB_HID_SDP_DISABLE","features":[48]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MAX_LATENCY","features":[48]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MIN_TIMEOUT","features":[48]},{"name":"SDP_ATTRIB_HID_SUPERVISION_TIMEOUT","features":[48]},{"name":"SDP_ATTRIB_HID_VIRTUAL_CABLE","features":[48]},{"name":"SDP_ATTRIB_ICON_URL","features":[48]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_CAPABILITIES","features":[48]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FEATURES","features":[48]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FUNCTIONS","features":[48]},{"name":"SDP_ATTRIB_IMAGING_TOTAL_DATA_CAPACITY","features":[48]},{"name":"SDP_ATTRIB_INFO_TIME_TO_LIVE","features":[48]},{"name":"SDP_ATTRIB_LANG_BASE_ATTRIB_ID_LIST","features":[48]},{"name":"SDP_ATTRIB_LAN_LPSUBNET","features":[48]},{"name":"SDP_ATTRIB_OBJECT_PUSH_SUPPORTED_FORMATS_LIST","features":[48]},{"name":"SDP_ATTRIB_PAN_HOME_PAGE_URL","features":[48]},{"name":"SDP_ATTRIB_PAN_MAX_NET_ACCESS_RATE","features":[48]},{"name":"SDP_ATTRIB_PAN_NETWORK_ADDRESS","features":[48]},{"name":"SDP_ATTRIB_PAN_NET_ACCESS_TYPE","features":[48]},{"name":"SDP_ATTRIB_PAN_SECURITY_DESCRIPTION","features":[48]},{"name":"SDP_ATTRIB_PAN_WAP_GATEWAY","features":[48]},{"name":"SDP_ATTRIB_PAN_WAP_STACK_TYPE","features":[48]},{"name":"SDP_ATTRIB_PROFILE_DESCRIPTOR_LIST","features":[48]},{"name":"SDP_ATTRIB_PROFILE_SPECIFIC","features":[48]},{"name":"SDP_ATTRIB_PROTOCOL_DESCRIPTOR_LIST","features":[48]},{"name":"SDP_ATTRIB_RECORD_HANDLE","features":[48]},{"name":"SDP_ATTRIB_RECORD_STATE","features":[48]},{"name":"SDP_ATTRIB_SDP_DATABASE_STATE","features":[48]},{"name":"SDP_ATTRIB_SDP_VERSION_NUMBER_LIST","features":[48]},{"name":"SDP_ATTRIB_SERVICE_ID","features":[48]},{"name":"SDP_ATTRIB_SERVICE_VERSION","features":[48]},{"name":"SDP_ATTRIB_SYNCH_SUPPORTED_DATA_STORES_LIST","features":[48]},{"name":"SDP_CONNECT_ALLOW_PIN","features":[48]},{"name":"SDP_CONNECT_CACHE","features":[48]},{"name":"SDP_DEFAULT_INQUIRY_MAX_RESPONSES","features":[48]},{"name":"SDP_DEFAULT_INQUIRY_SECONDS","features":[48]},{"name":"SDP_ELEMENT_DATA","features":[48]},{"name":"SDP_ERROR_INSUFFICIENT_RESOURCES","features":[48]},{"name":"SDP_ERROR_INVALID_CONTINUATION_STATE","features":[48]},{"name":"SDP_ERROR_INVALID_PDU_SIZE","features":[48]},{"name":"SDP_ERROR_INVALID_RECORD_HANDLE","features":[48]},{"name":"SDP_ERROR_INVALID_REQUEST_SYNTAX","features":[48]},{"name":"SDP_ERROR_INVALID_SDP_VERSION","features":[48]},{"name":"SDP_LARGE_INTEGER_16","features":[48]},{"name":"SDP_MAX_INQUIRY_SECONDS","features":[48]},{"name":"SDP_PROTOCOL_UUID16","features":[48]},{"name":"SDP_REQUEST_TO_DEFAULT","features":[48]},{"name":"SDP_REQUEST_TO_MAX","features":[48]},{"name":"SDP_REQUEST_TO_MIN","features":[48]},{"name":"SDP_SEARCH_NO_FORMAT_CHECK","features":[48]},{"name":"SDP_SEARCH_NO_PARSE_CHECK","features":[48]},{"name":"SDP_SERVICE_ATTRIBUTE_REQUEST","features":[48]},{"name":"SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST","features":[48]},{"name":"SDP_SERVICE_SEARCH_REQUEST","features":[48]},{"name":"SDP_SPECIFICTYPE","features":[48]},{"name":"SDP_STRING_TYPE_DATA","features":[48]},{"name":"SDP_ST_INT128","features":[48]},{"name":"SDP_ST_INT16","features":[48]},{"name":"SDP_ST_INT32","features":[48]},{"name":"SDP_ST_INT64","features":[48]},{"name":"SDP_ST_INT8","features":[48]},{"name":"SDP_ST_NONE","features":[48]},{"name":"SDP_ST_UINT128","features":[48]},{"name":"SDP_ST_UINT16","features":[48]},{"name":"SDP_ST_UINT32","features":[48]},{"name":"SDP_ST_UINT64","features":[48]},{"name":"SDP_ST_UINT8","features":[48]},{"name":"SDP_ST_UUID128","features":[48]},{"name":"SDP_ST_UUID16","features":[48]},{"name":"SDP_ST_UUID32","features":[48]},{"name":"SDP_TYPE","features":[48]},{"name":"SDP_TYPE_ALTERNATIVE","features":[48]},{"name":"SDP_TYPE_BOOLEAN","features":[48]},{"name":"SDP_TYPE_CONTAINER","features":[48]},{"name":"SDP_TYPE_INT","features":[48]},{"name":"SDP_TYPE_NIL","features":[48]},{"name":"SDP_TYPE_SEQUENCE","features":[48]},{"name":"SDP_TYPE_STRING","features":[48]},{"name":"SDP_TYPE_UINT","features":[48]},{"name":"SDP_TYPE_URL","features":[48]},{"name":"SDP_TYPE_UUID","features":[48]},{"name":"SDP_ULARGE_INTEGER_16","features":[48]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH","features":[48]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH_EIR","features":[48]},{"name":"SERVICE_OPTION_NO_PUBLIC_BROWSE","features":[48]},{"name":"SERVICE_SECURITY_AUTHENTICATE","features":[48]},{"name":"SERVICE_SECURITY_AUTHORIZE","features":[48]},{"name":"SERVICE_SECURITY_DISABLED","features":[48]},{"name":"SERVICE_SECURITY_ENCRYPT_OPTIONAL","features":[48]},{"name":"SERVICE_SECURITY_ENCRYPT_REQUIRED","features":[48]},{"name":"SERVICE_SECURITY_NONE","features":[48]},{"name":"SERVICE_SECURITY_NO_ASK","features":[48]},{"name":"SERVICE_SECURITY_USE_DEFAULTS","features":[48]},{"name":"SOCKADDR_BTH","features":[48]},{"name":"SOL_L2CAP","features":[48]},{"name":"SOL_RFCOMM","features":[48]},{"name":"SOL_SDP","features":[48]},{"name":"SO_BTH_AUTHENTICATE","features":[48]},{"name":"SO_BTH_ENCRYPT","features":[48]},{"name":"SO_BTH_MTU","features":[48]},{"name":"SO_BTH_MTU_MAX","features":[48]},{"name":"SO_BTH_MTU_MIN","features":[48]},{"name":"STRING_DESCRIPTION_OFFSET","features":[48]},{"name":"STRING_NAME_OFFSET","features":[48]},{"name":"STRING_PROVIDER_NAME_OFFSET","features":[48]},{"name":"STR_ADDR_FMT","features":[48]},{"name":"STR_ADDR_FMTA","features":[48]},{"name":"STR_ADDR_FMTW","features":[48]},{"name":"STR_ADDR_SHORT_FMT","features":[48]},{"name":"STR_ADDR_SHORT_FMTA","features":[48]},{"name":"STR_ADDR_SHORT_FMTW","features":[48]},{"name":"STR_USBHCI_CLASS_HARDWAREID","features":[48]},{"name":"STR_USBHCI_CLASS_HARDWAREIDA","features":[48]},{"name":"STR_USBHCI_CLASS_HARDWAREIDW","features":[48]},{"name":"SVCID_BTH_PROVIDER","features":[48]},{"name":"SYNCH_DATA_STORE_CALENDAR","features":[48]},{"name":"SYNCH_DATA_STORE_MESSAGES","features":[48]},{"name":"SYNCH_DATA_STORE_NOTES","features":[48]},{"name":"SYNCH_DATA_STORE_PHONEBOOK","features":[48]},{"name":"SdpAttributeRange","features":[48]},{"name":"SdpQueryUuid","features":[48]},{"name":"SdpQueryUuidUnion","features":[48]},{"name":"SerialPortServiceClassID_UUID16","features":[48]},{"name":"ServerCharacteristicConfiguration","features":[48]},{"name":"ServiceDiscoveryServerServiceClassID_UUID16","features":[48]},{"name":"SimAccessServiceClassID_UUID16","features":[48]},{"name":"TCP_PROTOCOL_UUID16","features":[48]},{"name":"TCSAT_PROTOCOL_UUID16","features":[48]},{"name":"TCSBIN_PROTOCOL_UUID16","features":[48]},{"name":"ThreeDimensionalDisplayServiceClassID_UUID16","features":[48]},{"name":"ThreeDimensionalGlassesServiceClassID_UUID16","features":[48]},{"name":"ThreeDimensionalSynchronizationProfileID_UUID16","features":[48]},{"name":"UDIMTServiceClassID_UUID16","features":[48]},{"name":"UDIMTServiceClass_UUID16","features":[48]},{"name":"UDITAServiceClassID_UUID16","features":[48]},{"name":"UDITAServiceClass_UUID16","features":[48]},{"name":"UDI_C_PLANE_PROTOCOL_UUID16","features":[48]},{"name":"UDP_PROTOCOL_UUID16","features":[48]},{"name":"UPNP_PROTOCOL_UUID16","features":[48]},{"name":"UPnpIpServiceClassID_UUID16","features":[48]},{"name":"UPnpServiceClassID_UUID16","features":[48]},{"name":"VideoConferencingGWServiceClassID_UUID16","features":[48]},{"name":"VideoConferencingGWServiceClass_UUID16","features":[48]},{"name":"VideoConferencingServiceClassID_UUID16","features":[48]},{"name":"VideoDistributionProfileID_UUID16","features":[48]},{"name":"VideoSinkServiceClassID_UUID16","features":[48]},{"name":"VideoSourceServiceClassID_UUID16","features":[48]},{"name":"WAPClientServiceClassID_UUID16","features":[48]},{"name":"WAPServiceClassID_UUID16","features":[48]},{"name":"WSP_PROTOCOL_UUID16","features":[48]}],"372":[{"name":"BuildCommDCBA","features":[49,3]},{"name":"BuildCommDCBAndTimeoutsA","features":[49,3]},{"name":"BuildCommDCBAndTimeoutsW","features":[49,3]},{"name":"BuildCommDCBW","features":[49,3]},{"name":"CE_BREAK","features":[49]},{"name":"CE_FRAME","features":[49]},{"name":"CE_OVERRUN","features":[49]},{"name":"CE_RXOVER","features":[49]},{"name":"CE_RXPARITY","features":[49]},{"name":"CLEAR_COMM_ERROR_FLAGS","features":[49]},{"name":"CLRBREAK","features":[49]},{"name":"CLRDTR","features":[49]},{"name":"CLRRTS","features":[49]},{"name":"COMMCONFIG","features":[49]},{"name":"COMMPROP","features":[49]},{"name":"COMMPROP_STOP_PARITY","features":[49]},{"name":"COMMTIMEOUTS","features":[49]},{"name":"COMM_EVENT_MASK","features":[49]},{"name":"COMSTAT","features":[49]},{"name":"ClearCommBreak","features":[49,3]},{"name":"ClearCommError","features":[49,3]},{"name":"CommConfigDialogA","features":[49,3]},{"name":"CommConfigDialogW","features":[49,3]},{"name":"DCB","features":[49]},{"name":"DCB_PARITY","features":[49]},{"name":"DCB_STOP_BITS","features":[49]},{"name":"DIALOPTION_BILLING","features":[49]},{"name":"DIALOPTION_DIALTONE","features":[49]},{"name":"DIALOPTION_QUIET","features":[49]},{"name":"ESCAPE_COMM_FUNCTION","features":[49]},{"name":"EVENPARITY","features":[49]},{"name":"EV_BREAK","features":[49]},{"name":"EV_CTS","features":[49]},{"name":"EV_DSR","features":[49]},{"name":"EV_ERR","features":[49]},{"name":"EV_EVENT1","features":[49]},{"name":"EV_EVENT2","features":[49]},{"name":"EV_PERR","features":[49]},{"name":"EV_RING","features":[49]},{"name":"EV_RLSD","features":[49]},{"name":"EV_RX80FULL","features":[49]},{"name":"EV_RXCHAR","features":[49]},{"name":"EV_RXFLAG","features":[49]},{"name":"EV_TXEMPTY","features":[49]},{"name":"EscapeCommFunction","features":[49,3]},{"name":"GetCommConfig","features":[49,3]},{"name":"GetCommMask","features":[49,3]},{"name":"GetCommModemStatus","features":[49,3]},{"name":"GetCommPorts","features":[49]},{"name":"GetCommProperties","features":[49,3]},{"name":"GetCommState","features":[49,3]},{"name":"GetCommTimeouts","features":[49,3]},{"name":"GetDefaultCommConfigA","features":[49,3]},{"name":"GetDefaultCommConfigW","features":[49,3]},{"name":"MARKPARITY","features":[49]},{"name":"MAXLENGTH_NAI","features":[49]},{"name":"MAXLENGTH_UICCDATASTORE","features":[49]},{"name":"MDMSPKRFLAG_CALLSETUP","features":[49]},{"name":"MDMSPKRFLAG_DIAL","features":[49]},{"name":"MDMSPKRFLAG_OFF","features":[49]},{"name":"MDMSPKRFLAG_ON","features":[49]},{"name":"MDMSPKR_CALLSETUP","features":[49]},{"name":"MDMSPKR_DIAL","features":[49]},{"name":"MDMSPKR_OFF","features":[49]},{"name":"MDMSPKR_ON","features":[49]},{"name":"MDMVOLFLAG_HIGH","features":[49]},{"name":"MDMVOLFLAG_LOW","features":[49]},{"name":"MDMVOLFLAG_MEDIUM","features":[49]},{"name":"MDMVOL_HIGH","features":[49]},{"name":"MDMVOL_LOW","features":[49]},{"name":"MDMVOL_MEDIUM","features":[49]},{"name":"MDM_ANALOG_RLP_OFF","features":[49]},{"name":"MDM_ANALOG_RLP_ON","features":[49]},{"name":"MDM_ANALOG_V34","features":[49]},{"name":"MDM_AUTO_ML_2","features":[49]},{"name":"MDM_AUTO_ML_DEFAULT","features":[49]},{"name":"MDM_AUTO_ML_NONE","features":[49]},{"name":"MDM_AUTO_SPEED_DEFAULT","features":[49]},{"name":"MDM_BEARERMODE_ANALOG","features":[49]},{"name":"MDM_BEARERMODE_GSM","features":[49]},{"name":"MDM_BEARERMODE_ISDN","features":[49]},{"name":"MDM_BLIND_DIAL","features":[49]},{"name":"MDM_CCITT_OVERRIDE","features":[49]},{"name":"MDM_CELLULAR","features":[49]},{"name":"MDM_COMPRESSION","features":[49]},{"name":"MDM_DIAGNOSTICS","features":[49]},{"name":"MDM_ERROR_CONTROL","features":[49]},{"name":"MDM_FLOWCONTROL_HARD","features":[49]},{"name":"MDM_FLOWCONTROL_SOFT","features":[49]},{"name":"MDM_FORCED_EC","features":[49]},{"name":"MDM_HDLCPPP_AUTH_CHAP","features":[49]},{"name":"MDM_HDLCPPP_AUTH_DEFAULT","features":[49]},{"name":"MDM_HDLCPPP_AUTH_MSCHAP","features":[49]},{"name":"MDM_HDLCPPP_AUTH_NONE","features":[49]},{"name":"MDM_HDLCPPP_AUTH_PAP","features":[49]},{"name":"MDM_HDLCPPP_ML_2","features":[49]},{"name":"MDM_HDLCPPP_ML_DEFAULT","features":[49]},{"name":"MDM_HDLCPPP_ML_NONE","features":[49]},{"name":"MDM_HDLCPPP_SPEED_56K","features":[49]},{"name":"MDM_HDLCPPP_SPEED_64K","features":[49]},{"name":"MDM_HDLCPPP_SPEED_DEFAULT","features":[49]},{"name":"MDM_MASK_AUTO_SPEED","features":[49]},{"name":"MDM_MASK_BEARERMODE","features":[49]},{"name":"MDM_MASK_HDLCPPP_SPEED","features":[49]},{"name":"MDM_MASK_PROTOCOLDATA","features":[49]},{"name":"MDM_MASK_PROTOCOLID","features":[49]},{"name":"MDM_MASK_V110_SPEED","features":[49]},{"name":"MDM_MASK_V120_SPEED","features":[49]},{"name":"MDM_MASK_X75_DATA","features":[49]},{"name":"MDM_PIAFS_INCOMING","features":[49]},{"name":"MDM_PIAFS_OUTGOING","features":[49]},{"name":"MDM_PROTOCOLID_ANALOG","features":[49]},{"name":"MDM_PROTOCOLID_AUTO","features":[49]},{"name":"MDM_PROTOCOLID_DEFAULT","features":[49]},{"name":"MDM_PROTOCOLID_GPRS","features":[49]},{"name":"MDM_PROTOCOLID_HDLCPPP","features":[49]},{"name":"MDM_PROTOCOLID_PIAFS","features":[49]},{"name":"MDM_PROTOCOLID_V110","features":[49]},{"name":"MDM_PROTOCOLID_V120","features":[49]},{"name":"MDM_PROTOCOLID_V128","features":[49]},{"name":"MDM_PROTOCOLID_X75","features":[49]},{"name":"MDM_SHIFT_AUTO_ML","features":[49]},{"name":"MDM_SHIFT_AUTO_SPEED","features":[49]},{"name":"MDM_SHIFT_BEARERMODE","features":[49]},{"name":"MDM_SHIFT_EXTENDEDINFO","features":[49]},{"name":"MDM_SHIFT_HDLCPPP_AUTH","features":[49]},{"name":"MDM_SHIFT_HDLCPPP_ML","features":[49]},{"name":"MDM_SHIFT_HDLCPPP_SPEED","features":[49]},{"name":"MDM_SHIFT_PROTOCOLDATA","features":[49]},{"name":"MDM_SHIFT_PROTOCOLID","features":[49]},{"name":"MDM_SHIFT_PROTOCOLINFO","features":[49]},{"name":"MDM_SHIFT_V110_SPEED","features":[49]},{"name":"MDM_SHIFT_V120_ML","features":[49]},{"name":"MDM_SHIFT_V120_SPEED","features":[49]},{"name":"MDM_SHIFT_X75_DATA","features":[49]},{"name":"MDM_SPEED_ADJUST","features":[49]},{"name":"MDM_TONE_DIAL","features":[49]},{"name":"MDM_V110_SPEED_12DOT0K","features":[49]},{"name":"MDM_V110_SPEED_14DOT4K","features":[49]},{"name":"MDM_V110_SPEED_19DOT2K","features":[49]},{"name":"MDM_V110_SPEED_1DOT2K","features":[49]},{"name":"MDM_V110_SPEED_28DOT8K","features":[49]},{"name":"MDM_V110_SPEED_2DOT4K","features":[49]},{"name":"MDM_V110_SPEED_38DOT4K","features":[49]},{"name":"MDM_V110_SPEED_4DOT8K","features":[49]},{"name":"MDM_V110_SPEED_57DOT6K","features":[49]},{"name":"MDM_V110_SPEED_9DOT6K","features":[49]},{"name":"MDM_V110_SPEED_DEFAULT","features":[49]},{"name":"MDM_V120_ML_2","features":[49]},{"name":"MDM_V120_ML_DEFAULT","features":[49]},{"name":"MDM_V120_ML_NONE","features":[49]},{"name":"MDM_V120_SPEED_56K","features":[49]},{"name":"MDM_V120_SPEED_64K","features":[49]},{"name":"MDM_V120_SPEED_DEFAULT","features":[49]},{"name":"MDM_V23_OVERRIDE","features":[49]},{"name":"MDM_X75_DATA_128K","features":[49]},{"name":"MDM_X75_DATA_64K","features":[49]},{"name":"MDM_X75_DATA_BTX","features":[49]},{"name":"MDM_X75_DATA_DEFAULT","features":[49]},{"name":"MDM_X75_DATA_T_70","features":[49]},{"name":"MODEMDEVCAPS","features":[49]},{"name":"MODEMDEVCAPS_DIAL_OPTIONS","features":[49]},{"name":"MODEMDEVCAPS_SPEAKER_MODE","features":[49]},{"name":"MODEMDEVCAPS_SPEAKER_VOLUME","features":[49]},{"name":"MODEMSETTINGS","features":[49]},{"name":"MODEMSETTINGS_SPEAKER_MODE","features":[49]},{"name":"MODEM_SPEAKER_VOLUME","features":[49]},{"name":"MODEM_STATUS_FLAGS","features":[49]},{"name":"MS_CTS_ON","features":[49]},{"name":"MS_DSR_ON","features":[49]},{"name":"MS_RING_ON","features":[49]},{"name":"MS_RLSD_ON","features":[49]},{"name":"NOPARITY","features":[49]},{"name":"ODDPARITY","features":[49]},{"name":"ONE5STOPBITS","features":[49]},{"name":"ONESTOPBIT","features":[49]},{"name":"OpenCommPort","features":[49,3]},{"name":"PARITY_EVEN","features":[49]},{"name":"PARITY_MARK","features":[49]},{"name":"PARITY_NONE","features":[49]},{"name":"PARITY_ODD","features":[49]},{"name":"PARITY_SPACE","features":[49]},{"name":"PURGE_COMM_FLAGS","features":[49]},{"name":"PURGE_RXABORT","features":[49]},{"name":"PURGE_RXCLEAR","features":[49]},{"name":"PURGE_TXABORT","features":[49]},{"name":"PURGE_TXCLEAR","features":[49]},{"name":"PurgeComm","features":[49,3]},{"name":"SETBREAK","features":[49]},{"name":"SETDTR","features":[49]},{"name":"SETRTS","features":[49]},{"name":"SETXOFF","features":[49]},{"name":"SETXON","features":[49]},{"name":"SID_3GPP_SUPSVCMODEL","features":[49]},{"name":"SPACEPARITY","features":[49]},{"name":"STOPBITS_10","features":[49]},{"name":"STOPBITS_15","features":[49]},{"name":"STOPBITS_20","features":[49]},{"name":"SetCommBreak","features":[49,3]},{"name":"SetCommConfig","features":[49,3]},{"name":"SetCommMask","features":[49,3]},{"name":"SetCommState","features":[49,3]},{"name":"SetCommTimeouts","features":[49,3]},{"name":"SetDefaultCommConfigA","features":[49,3]},{"name":"SetDefaultCommConfigW","features":[49,3]},{"name":"SetupComm","features":[49,3]},{"name":"TWOSTOPBITS","features":[49]},{"name":"TransmitCommChar","features":[49,3]},{"name":"WaitCommEvent","features":[49,3,8]}],"374":[{"name":"ALLOC_LOG_CONF","features":[50]},{"name":"BASIC_LOG_CONF","features":[50]},{"name":"BOOT_LOG_CONF","features":[50]},{"name":"BUSNUMBER_DES","features":[50]},{"name":"BUSNUMBER_RANGE","features":[50]},{"name":"BUSNUMBER_RESOURCE","features":[50]},{"name":"CABINET_INFO_A","features":[50]},{"name":"CABINET_INFO_A","features":[50]},{"name":"CABINET_INFO_W","features":[50]},{"name":"CABINET_INFO_W","features":[50]},{"name":"CMP_WaitNoPendingInstallEvents","features":[50]},{"name":"CM_ADD_ID_BITS","features":[50]},{"name":"CM_ADD_ID_COMPATIBLE","features":[50]},{"name":"CM_ADD_ID_HARDWARE","features":[50]},{"name":"CM_ADD_RANGE_ADDIFCONFLICT","features":[50]},{"name":"CM_ADD_RANGE_BITS","features":[50]},{"name":"CM_ADD_RANGE_DONOTADDIFCONFLICT","features":[50]},{"name":"CM_Add_Empty_Log_Conf","features":[41,50]},{"name":"CM_Add_Empty_Log_Conf_Ex","features":[41,50]},{"name":"CM_Add_IDA","features":[50]},{"name":"CM_Add_IDW","features":[50]},{"name":"CM_Add_ID_ExA","features":[50]},{"name":"CM_Add_ID_ExW","features":[50]},{"name":"CM_Add_Range","features":[50]},{"name":"CM_Add_Res_Des","features":[50]},{"name":"CM_Add_Res_Des_Ex","features":[50]},{"name":"CM_CDFLAGS","features":[50]},{"name":"CM_CDFLAGS_DRIVER","features":[50]},{"name":"CM_CDFLAGS_RESERVED","features":[50]},{"name":"CM_CDFLAGS_ROOT_OWNED","features":[50]},{"name":"CM_CDMASK","features":[50]},{"name":"CM_CDMASK_DESCRIPTION","features":[50]},{"name":"CM_CDMASK_DEVINST","features":[50]},{"name":"CM_CDMASK_FLAGS","features":[50]},{"name":"CM_CDMASK_RESDES","features":[50]},{"name":"CM_CDMASK_VALID","features":[50]},{"name":"CM_CLASS_PROPERTY_BITS","features":[50]},{"name":"CM_CLASS_PROPERTY_INSTALLER","features":[50]},{"name":"CM_CLASS_PROPERTY_INTERFACE","features":[50]},{"name":"CM_CREATE_DEVINST_BITS","features":[50]},{"name":"CM_CREATE_DEVINST_DO_NOT_INSTALL","features":[50]},{"name":"CM_CREATE_DEVINST_GENERATE_ID","features":[50]},{"name":"CM_CREATE_DEVINST_NORMAL","features":[50]},{"name":"CM_CREATE_DEVINST_NO_WAIT_INSTALL","features":[50]},{"name":"CM_CREATE_DEVINST_PHANTOM","features":[50]},{"name":"CM_CREATE_DEVNODE_BITS","features":[50]},{"name":"CM_CREATE_DEVNODE_DO_NOT_INSTALL","features":[50]},{"name":"CM_CREATE_DEVNODE_GENERATE_ID","features":[50]},{"name":"CM_CREATE_DEVNODE_NORMAL","features":[50]},{"name":"CM_CREATE_DEVNODE_NO_WAIT_INSTALL","features":[50]},{"name":"CM_CREATE_DEVNODE_PHANTOM","features":[50]},{"name":"CM_CRP_CHARACTERISTICS","features":[50]},{"name":"CM_CRP_DEVTYPE","features":[50]},{"name":"CM_CRP_EXCLUSIVE","features":[50]},{"name":"CM_CRP_LOWERFILTERS","features":[50]},{"name":"CM_CRP_MAX","features":[50]},{"name":"CM_CRP_MIN","features":[50]},{"name":"CM_CRP_SECURITY","features":[50]},{"name":"CM_CRP_SECURITY_SDS","features":[50]},{"name":"CM_CRP_UPPERFILTERS","features":[50]},{"name":"CM_CUSTOMDEVPROP_BITS","features":[50]},{"name":"CM_CUSTOMDEVPROP_MERGE_MULTISZ","features":[50]},{"name":"CM_Connect_MachineA","features":[50]},{"name":"CM_Connect_MachineW","features":[50]},{"name":"CM_Create_DevNodeA","features":[50]},{"name":"CM_Create_DevNodeW","features":[50]},{"name":"CM_Create_DevNode_ExA","features":[50]},{"name":"CM_Create_DevNode_ExW","features":[50]},{"name":"CM_Create_Range_List","features":[50]},{"name":"CM_DELETE_CLASS_BITS","features":[50]},{"name":"CM_DELETE_CLASS_INTERFACE","features":[50]},{"name":"CM_DELETE_CLASS_ONLY","features":[50]},{"name":"CM_DELETE_CLASS_SUBKEYS","features":[50]},{"name":"CM_DETECT_BITS","features":[50]},{"name":"CM_DETECT_CRASHED","features":[50]},{"name":"CM_DETECT_HWPROF_FIRST_BOOT","features":[50]},{"name":"CM_DETECT_NEW_PROFILE","features":[50]},{"name":"CM_DETECT_RUN","features":[50]},{"name":"CM_DEVCAP","features":[50]},{"name":"CM_DEVCAP_DOCKDEVICE","features":[50]},{"name":"CM_DEVCAP_EJECTSUPPORTED","features":[50]},{"name":"CM_DEVCAP_HARDWAREDISABLED","features":[50]},{"name":"CM_DEVCAP_LOCKSUPPORTED","features":[50]},{"name":"CM_DEVCAP_NONDYNAMIC","features":[50]},{"name":"CM_DEVCAP_RAWDEVICEOK","features":[50]},{"name":"CM_DEVCAP_REMOVABLE","features":[50]},{"name":"CM_DEVCAP_SECUREDEVICE","features":[50]},{"name":"CM_DEVCAP_SILENTINSTALL","features":[50]},{"name":"CM_DEVCAP_SURPRISEREMOVALOK","features":[50]},{"name":"CM_DEVCAP_UNIQUEID","features":[50]},{"name":"CM_DEVICE_PANEL_EDGE_BOTTOM","features":[50]},{"name":"CM_DEVICE_PANEL_EDGE_LEFT","features":[50]},{"name":"CM_DEVICE_PANEL_EDGE_RIGHT","features":[50]},{"name":"CM_DEVICE_PANEL_EDGE_TOP","features":[50]},{"name":"CM_DEVICE_PANEL_EDGE_UNKNOWN","features":[50]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_HINGE","features":[50]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PIVOT","features":[50]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PLANAR","features":[50]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_SWIVEL","features":[50]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_UNKNOWN","features":[50]},{"name":"CM_DEVICE_PANEL_ORIENTATION_HORIZONTAL","features":[50]},{"name":"CM_DEVICE_PANEL_ORIENTATION_VERTICAL","features":[50]},{"name":"CM_DEVICE_PANEL_SHAPE_OVAL","features":[50]},{"name":"CM_DEVICE_PANEL_SHAPE_RECTANGLE","features":[50]},{"name":"CM_DEVICE_PANEL_SHAPE_UNKNOWN","features":[50]},{"name":"CM_DEVICE_PANEL_SIDE_BACK","features":[50]},{"name":"CM_DEVICE_PANEL_SIDE_BOTTOM","features":[50]},{"name":"CM_DEVICE_PANEL_SIDE_FRONT","features":[50]},{"name":"CM_DEVICE_PANEL_SIDE_LEFT","features":[50]},{"name":"CM_DEVICE_PANEL_SIDE_RIGHT","features":[50]},{"name":"CM_DEVICE_PANEL_SIDE_TOP","features":[50]},{"name":"CM_DEVICE_PANEL_SIDE_UNKNOWN","features":[50]},{"name":"CM_DEVNODE_STATUS_FLAGS","features":[50]},{"name":"CM_DISABLE_ABSOLUTE","features":[50]},{"name":"CM_DISABLE_BITS","features":[50]},{"name":"CM_DISABLE_HARDWARE","features":[50]},{"name":"CM_DISABLE_PERSIST","features":[50]},{"name":"CM_DISABLE_POLITE","features":[50]},{"name":"CM_DISABLE_UI_NOT_OK","features":[50]},{"name":"CM_DRP_ADDRESS","features":[50]},{"name":"CM_DRP_BASE_CONTAINERID","features":[50]},{"name":"CM_DRP_BUSNUMBER","features":[50]},{"name":"CM_DRP_BUSTYPEGUID","features":[50]},{"name":"CM_DRP_CAPABILITIES","features":[50]},{"name":"CM_DRP_CHARACTERISTICS","features":[50]},{"name":"CM_DRP_CLASS","features":[50]},{"name":"CM_DRP_CLASSGUID","features":[50]},{"name":"CM_DRP_COMPATIBLEIDS","features":[50]},{"name":"CM_DRP_CONFIGFLAGS","features":[50]},{"name":"CM_DRP_DEVICEDESC","features":[50]},{"name":"CM_DRP_DEVICE_POWER_DATA","features":[50]},{"name":"CM_DRP_DEVTYPE","features":[50]},{"name":"CM_DRP_DRIVER","features":[50]},{"name":"CM_DRP_ENUMERATOR_NAME","features":[50]},{"name":"CM_DRP_EXCLUSIVE","features":[50]},{"name":"CM_DRP_FRIENDLYNAME","features":[50]},{"name":"CM_DRP_HARDWAREID","features":[50]},{"name":"CM_DRP_INSTALL_STATE","features":[50]},{"name":"CM_DRP_LEGACYBUSTYPE","features":[50]},{"name":"CM_DRP_LOCATION_INFORMATION","features":[50]},{"name":"CM_DRP_LOCATION_PATHS","features":[50]},{"name":"CM_DRP_LOWERFILTERS","features":[50]},{"name":"CM_DRP_MAX","features":[50]},{"name":"CM_DRP_MFG","features":[50]},{"name":"CM_DRP_MIN","features":[50]},{"name":"CM_DRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[50]},{"name":"CM_DRP_REMOVAL_POLICY","features":[50]},{"name":"CM_DRP_REMOVAL_POLICY_HW_DEFAULT","features":[50]},{"name":"CM_DRP_REMOVAL_POLICY_OVERRIDE","features":[50]},{"name":"CM_DRP_SECURITY","features":[50]},{"name":"CM_DRP_SECURITY_SDS","features":[50]},{"name":"CM_DRP_SERVICE","features":[50]},{"name":"CM_DRP_UI_NUMBER","features":[50]},{"name":"CM_DRP_UI_NUMBER_DESC_FORMAT","features":[50]},{"name":"CM_DRP_UNUSED0","features":[50]},{"name":"CM_DRP_UNUSED1","features":[50]},{"name":"CM_DRP_UNUSED2","features":[50]},{"name":"CM_DRP_UPPERFILTERS","features":[50]},{"name":"CM_Delete_Class_Key","features":[50]},{"name":"CM_Delete_Class_Key_Ex","features":[50]},{"name":"CM_Delete_DevNode_Key","features":[50]},{"name":"CM_Delete_DevNode_Key_Ex","features":[50]},{"name":"CM_Delete_Device_Interface_KeyA","features":[50]},{"name":"CM_Delete_Device_Interface_KeyW","features":[50]},{"name":"CM_Delete_Device_Interface_Key_ExA","features":[50]},{"name":"CM_Delete_Device_Interface_Key_ExW","features":[50]},{"name":"CM_Delete_Range","features":[50]},{"name":"CM_Detect_Resource_Conflict","features":[50,3]},{"name":"CM_Detect_Resource_Conflict_Ex","features":[50,3]},{"name":"CM_Disable_DevNode","features":[50]},{"name":"CM_Disable_DevNode_Ex","features":[50]},{"name":"CM_Disconnect_Machine","features":[50]},{"name":"CM_Dup_Range_List","features":[50]},{"name":"CM_ENUMERATE_CLASSES_BITS","features":[50]},{"name":"CM_ENUMERATE_CLASSES_INSTALLER","features":[50]},{"name":"CM_ENUMERATE_CLASSES_INTERFACE","features":[50]},{"name":"CM_ENUMERATE_FLAGS","features":[50]},{"name":"CM_Enable_DevNode","features":[50]},{"name":"CM_Enable_DevNode_Ex","features":[50]},{"name":"CM_Enumerate_Classes","features":[50]},{"name":"CM_Enumerate_Classes_Ex","features":[50]},{"name":"CM_Enumerate_EnumeratorsA","features":[50]},{"name":"CM_Enumerate_EnumeratorsW","features":[50]},{"name":"CM_Enumerate_Enumerators_ExA","features":[50]},{"name":"CM_Enumerate_Enumerators_ExW","features":[50]},{"name":"CM_Find_Range","features":[50]},{"name":"CM_First_Range","features":[50]},{"name":"CM_Free_Log_Conf","features":[50]},{"name":"CM_Free_Log_Conf_Ex","features":[50]},{"name":"CM_Free_Log_Conf_Handle","features":[50]},{"name":"CM_Free_Range_List","features":[50]},{"name":"CM_Free_Res_Des","features":[50]},{"name":"CM_Free_Res_Des_Ex","features":[50]},{"name":"CM_Free_Res_Des_Handle","features":[50]},{"name":"CM_Free_Resource_Conflict_Handle","features":[50]},{"name":"CM_GETIDLIST_DONOTGENERATE","features":[50]},{"name":"CM_GETIDLIST_FILTER_BITS","features":[50]},{"name":"CM_GETIDLIST_FILTER_BUSRELATIONS","features":[50]},{"name":"CM_GETIDLIST_FILTER_CLASS","features":[50]},{"name":"CM_GETIDLIST_FILTER_EJECTRELATIONS","features":[50]},{"name":"CM_GETIDLIST_FILTER_ENUMERATOR","features":[50]},{"name":"CM_GETIDLIST_FILTER_NONE","features":[50]},{"name":"CM_GETIDLIST_FILTER_POWERRELATIONS","features":[50]},{"name":"CM_GETIDLIST_FILTER_PRESENT","features":[50]},{"name":"CM_GETIDLIST_FILTER_REMOVALRELATIONS","features":[50]},{"name":"CM_GETIDLIST_FILTER_SERVICE","features":[50]},{"name":"CM_GETIDLIST_FILTER_TRANSPORTRELATIONS","features":[50]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_ALL_DEVICES","features":[50]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_BITS","features":[50]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_FLAGS","features":[50]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_PRESENT","features":[50]},{"name":"CM_GLOBAL_STATE_CAN_DO_UI","features":[50]},{"name":"CM_GLOBAL_STATE_DETECTION_PENDING","features":[50]},{"name":"CM_GLOBAL_STATE_ON_BIG_STACK","features":[50]},{"name":"CM_GLOBAL_STATE_REBOOT_REQUIRED","features":[50]},{"name":"CM_GLOBAL_STATE_SERVICES_AVAILABLE","features":[50]},{"name":"CM_GLOBAL_STATE_SHUTTING_DOWN","features":[50]},{"name":"CM_Get_Child","features":[50]},{"name":"CM_Get_Child_Ex","features":[50]},{"name":"CM_Get_Class_Key_NameA","features":[50]},{"name":"CM_Get_Class_Key_NameW","features":[50]},{"name":"CM_Get_Class_Key_Name_ExA","features":[50]},{"name":"CM_Get_Class_Key_Name_ExW","features":[50]},{"name":"CM_Get_Class_NameA","features":[50]},{"name":"CM_Get_Class_NameW","features":[50]},{"name":"CM_Get_Class_Name_ExA","features":[50]},{"name":"CM_Get_Class_Name_ExW","features":[50]},{"name":"CM_Get_Class_PropertyW","features":[50,1]},{"name":"CM_Get_Class_Property_ExW","features":[50,1]},{"name":"CM_Get_Class_Property_Keys","features":[50,1]},{"name":"CM_Get_Class_Property_Keys_Ex","features":[50,1]},{"name":"CM_Get_Class_Registry_PropertyA","features":[50]},{"name":"CM_Get_Class_Registry_PropertyW","features":[50]},{"name":"CM_Get_Depth","features":[50]},{"name":"CM_Get_Depth_Ex","features":[50]},{"name":"CM_Get_DevNode_Custom_PropertyA","features":[50]},{"name":"CM_Get_DevNode_Custom_PropertyW","features":[50]},{"name":"CM_Get_DevNode_Custom_Property_ExA","features":[50]},{"name":"CM_Get_DevNode_Custom_Property_ExW","features":[50]},{"name":"CM_Get_DevNode_PropertyW","features":[50,1]},{"name":"CM_Get_DevNode_Property_ExW","features":[50,1]},{"name":"CM_Get_DevNode_Property_Keys","features":[50,1]},{"name":"CM_Get_DevNode_Property_Keys_Ex","features":[50,1]},{"name":"CM_Get_DevNode_Registry_PropertyA","features":[50]},{"name":"CM_Get_DevNode_Registry_PropertyW","features":[50]},{"name":"CM_Get_DevNode_Registry_Property_ExA","features":[50]},{"name":"CM_Get_DevNode_Registry_Property_ExW","features":[50]},{"name":"CM_Get_DevNode_Status","features":[50]},{"name":"CM_Get_DevNode_Status_Ex","features":[50]},{"name":"CM_Get_Device_IDA","features":[50]},{"name":"CM_Get_Device_IDW","features":[50]},{"name":"CM_Get_Device_ID_ExA","features":[50]},{"name":"CM_Get_Device_ID_ExW","features":[50]},{"name":"CM_Get_Device_ID_ListA","features":[50]},{"name":"CM_Get_Device_ID_ListW","features":[50]},{"name":"CM_Get_Device_ID_List_ExA","features":[50]},{"name":"CM_Get_Device_ID_List_ExW","features":[50]},{"name":"CM_Get_Device_ID_List_SizeA","features":[50]},{"name":"CM_Get_Device_ID_List_SizeW","features":[50]},{"name":"CM_Get_Device_ID_List_Size_ExA","features":[50]},{"name":"CM_Get_Device_ID_List_Size_ExW","features":[50]},{"name":"CM_Get_Device_ID_Size","features":[50]},{"name":"CM_Get_Device_ID_Size_Ex","features":[50]},{"name":"CM_Get_Device_Interface_AliasA","features":[50]},{"name":"CM_Get_Device_Interface_AliasW","features":[50]},{"name":"CM_Get_Device_Interface_Alias_ExA","features":[50]},{"name":"CM_Get_Device_Interface_Alias_ExW","features":[50]},{"name":"CM_Get_Device_Interface_ListA","features":[50]},{"name":"CM_Get_Device_Interface_ListW","features":[50]},{"name":"CM_Get_Device_Interface_List_ExA","features":[50]},{"name":"CM_Get_Device_Interface_List_ExW","features":[50]},{"name":"CM_Get_Device_Interface_List_SizeA","features":[50]},{"name":"CM_Get_Device_Interface_List_SizeW","features":[50]},{"name":"CM_Get_Device_Interface_List_Size_ExA","features":[50]},{"name":"CM_Get_Device_Interface_List_Size_ExW","features":[50]},{"name":"CM_Get_Device_Interface_PropertyW","features":[50,1]},{"name":"CM_Get_Device_Interface_Property_ExW","features":[50,1]},{"name":"CM_Get_Device_Interface_Property_KeysW","features":[50,1]},{"name":"CM_Get_Device_Interface_Property_Keys_ExW","features":[50,1]},{"name":"CM_Get_First_Log_Conf","features":[50]},{"name":"CM_Get_First_Log_Conf_Ex","features":[50]},{"name":"CM_Get_Global_State","features":[50]},{"name":"CM_Get_Global_State_Ex","features":[50]},{"name":"CM_Get_HW_Prof_FlagsA","features":[50]},{"name":"CM_Get_HW_Prof_FlagsW","features":[50]},{"name":"CM_Get_HW_Prof_Flags_ExA","features":[50]},{"name":"CM_Get_HW_Prof_Flags_ExW","features":[50]},{"name":"CM_Get_Hardware_Profile_InfoA","features":[50]},{"name":"CM_Get_Hardware_Profile_InfoW","features":[50]},{"name":"CM_Get_Hardware_Profile_Info_ExA","features":[50]},{"name":"CM_Get_Hardware_Profile_Info_ExW","features":[50]},{"name":"CM_Get_Log_Conf_Priority","features":[50]},{"name":"CM_Get_Log_Conf_Priority_Ex","features":[50]},{"name":"CM_Get_Next_Log_Conf","features":[50]},{"name":"CM_Get_Next_Log_Conf_Ex","features":[50]},{"name":"CM_Get_Next_Res_Des","features":[50]},{"name":"CM_Get_Next_Res_Des_Ex","features":[50]},{"name":"CM_Get_Parent","features":[50]},{"name":"CM_Get_Parent_Ex","features":[50]},{"name":"CM_Get_Res_Des_Data","features":[50]},{"name":"CM_Get_Res_Des_Data_Ex","features":[50]},{"name":"CM_Get_Res_Des_Data_Size","features":[50]},{"name":"CM_Get_Res_Des_Data_Size_Ex","features":[50]},{"name":"CM_Get_Resource_Conflict_Count","features":[50]},{"name":"CM_Get_Resource_Conflict_DetailsA","features":[50]},{"name":"CM_Get_Resource_Conflict_DetailsW","features":[50]},{"name":"CM_Get_Sibling","features":[50]},{"name":"CM_Get_Sibling_Ex","features":[50]},{"name":"CM_Get_Version","features":[50]},{"name":"CM_Get_Version_Ex","features":[50]},{"name":"CM_HWPI_DOCKED","features":[50]},{"name":"CM_HWPI_NOT_DOCKABLE","features":[50]},{"name":"CM_HWPI_UNDOCKED","features":[50]},{"name":"CM_INSTALL_STATE","features":[50]},{"name":"CM_INSTALL_STATE_FAILED_INSTALL","features":[50]},{"name":"CM_INSTALL_STATE_FINISH_INSTALL","features":[50]},{"name":"CM_INSTALL_STATE_INSTALLED","features":[50]},{"name":"CM_INSTALL_STATE_NEEDS_REINSTALL","features":[50]},{"name":"CM_Intersect_Range_List","features":[50]},{"name":"CM_Invert_Range_List","features":[50]},{"name":"CM_Is_Dock_Station_Present","features":[50,3]},{"name":"CM_Is_Dock_Station_Present_Ex","features":[50,3]},{"name":"CM_Is_Version_Available","features":[50,3]},{"name":"CM_Is_Version_Available_Ex","features":[50,3]},{"name":"CM_LOCATE_DEVNODE_BITS","features":[50]},{"name":"CM_LOCATE_DEVNODE_CANCELREMOVE","features":[50]},{"name":"CM_LOCATE_DEVNODE_FLAGS","features":[50]},{"name":"CM_LOCATE_DEVNODE_NORMAL","features":[50]},{"name":"CM_LOCATE_DEVNODE_NOVALIDATION","features":[50]},{"name":"CM_LOCATE_DEVNODE_PHANTOM","features":[50]},{"name":"CM_LOG_CONF","features":[50]},{"name":"CM_Locate_DevNodeA","features":[50]},{"name":"CM_Locate_DevNodeW","features":[50]},{"name":"CM_Locate_DevNode_ExA","features":[50]},{"name":"CM_Locate_DevNode_ExW","features":[50]},{"name":"CM_MapCrToWin32Err","features":[50]},{"name":"CM_Merge_Range_List","features":[50]},{"name":"CM_Modify_Res_Des","features":[50]},{"name":"CM_Modify_Res_Des_Ex","features":[50]},{"name":"CM_Move_DevNode","features":[50]},{"name":"CM_Move_DevNode_Ex","features":[50]},{"name":"CM_NAME_ATTRIBUTE_NAME_RETRIEVED_FROM_DEVICE","features":[50]},{"name":"CM_NAME_ATTRIBUTE_USER_ASSIGNED_NAME","features":[50]},{"name":"CM_NOTIFY_ACTION","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICECUSTOMEVENT","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEENUMERATED","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEREMOVED","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCESTARTED","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEARRIVAL","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEREMOVAL","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVE","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVEFAILED","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVECOMPLETE","features":[50]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVEPENDING","features":[50]},{"name":"CM_NOTIFY_ACTION_MAX","features":[50]},{"name":"CM_NOTIFY_EVENT_DATA","features":[50]},{"name":"CM_NOTIFY_FILTER","features":[50,3]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_DEVICE_INSTANCES","features":[50]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_INTERFACE_CLASSES","features":[50]},{"name":"CM_NOTIFY_FILTER_TYPE","features":[50]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEHANDLE","features":[50]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINSTANCE","features":[50]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINTERFACE","features":[50]},{"name":"CM_NOTIFY_FILTER_TYPE_MAX","features":[50]},{"name":"CM_Next_Range","features":[50]},{"name":"CM_OPEN_CLASS_KEY_BITS","features":[50]},{"name":"CM_OPEN_CLASS_KEY_INSTALLER","features":[50]},{"name":"CM_OPEN_CLASS_KEY_INTERFACE","features":[50]},{"name":"CM_Open_Class_KeyA","features":[50,51]},{"name":"CM_Open_Class_KeyW","features":[50,51]},{"name":"CM_Open_Class_Key_ExA","features":[50,51]},{"name":"CM_Open_Class_Key_ExW","features":[50,51]},{"name":"CM_Open_DevNode_Key","features":[50,51]},{"name":"CM_Open_DevNode_Key_Ex","features":[50,51]},{"name":"CM_Open_Device_Interface_KeyA","features":[50,51]},{"name":"CM_Open_Device_Interface_KeyW","features":[50,51]},{"name":"CM_Open_Device_Interface_Key_ExA","features":[50,51]},{"name":"CM_Open_Device_Interface_Key_ExW","features":[50,51]},{"name":"CM_PROB","features":[50]},{"name":"CM_PROB_BIOS_TABLE","features":[50]},{"name":"CM_PROB_BOOT_CONFIG_CONFLICT","features":[50]},{"name":"CM_PROB_CANT_SHARE_IRQ","features":[50]},{"name":"CM_PROB_CONSOLE_LOCKED","features":[50]},{"name":"CM_PROB_DEVICE_NOT_THERE","features":[50]},{"name":"CM_PROB_DEVICE_RESET","features":[50]},{"name":"CM_PROB_DEVLOADER_FAILED","features":[50]},{"name":"CM_PROB_DEVLOADER_NOT_FOUND","features":[50]},{"name":"CM_PROB_DEVLOADER_NOT_READY","features":[50]},{"name":"CM_PROB_DISABLED","features":[50]},{"name":"CM_PROB_DISABLED_SERVICE","features":[50]},{"name":"CM_PROB_DRIVER_BLOCKED","features":[50]},{"name":"CM_PROB_DRIVER_FAILED_LOAD","features":[50]},{"name":"CM_PROB_DRIVER_FAILED_PRIOR_UNLOAD","features":[50]},{"name":"CM_PROB_DRIVER_SERVICE_KEY_INVALID","features":[50]},{"name":"CM_PROB_DUPLICATE_DEVICE","features":[50]},{"name":"CM_PROB_ENTRY_IS_WRONG_TYPE","features":[50]},{"name":"CM_PROB_FAILED_ADD","features":[50]},{"name":"CM_PROB_FAILED_DRIVER_ENTRY","features":[50]},{"name":"CM_PROB_FAILED_FILTER","features":[50]},{"name":"CM_PROB_FAILED_INSTALL","features":[50]},{"name":"CM_PROB_FAILED_POST_START","features":[50]},{"name":"CM_PROB_FAILED_START","features":[50]},{"name":"CM_PROB_GUEST_ASSIGNMENT_FAILED","features":[50]},{"name":"CM_PROB_HALTED","features":[50]},{"name":"CM_PROB_HARDWARE_DISABLED","features":[50]},{"name":"CM_PROB_HELD_FOR_EJECT","features":[50]},{"name":"CM_PROB_INVALID_DATA","features":[50]},{"name":"CM_PROB_IRQ_TRANSLATION_FAILED","features":[50]},{"name":"CM_PROB_LACKED_ARBITRATOR","features":[50]},{"name":"CM_PROB_LEGACY_SERVICE_NO_DEVICES","features":[50]},{"name":"CM_PROB_LIAR","features":[50]},{"name":"CM_PROB_MOVED","features":[50]},{"name":"CM_PROB_NEED_CLASS_CONFIG","features":[50]},{"name":"CM_PROB_NEED_RESTART","features":[50]},{"name":"CM_PROB_NORMAL_CONFLICT","features":[50]},{"name":"CM_PROB_NOT_CONFIGURED","features":[50]},{"name":"CM_PROB_NOT_VERIFIED","features":[50]},{"name":"CM_PROB_NO_SOFTCONFIG","features":[50]},{"name":"CM_PROB_NO_VALID_LOG_CONF","features":[50]},{"name":"CM_PROB_OUT_OF_MEMORY","features":[50]},{"name":"CM_PROB_PARTIAL_LOG_CONF","features":[50]},{"name":"CM_PROB_PHANTOM","features":[50]},{"name":"CM_PROB_REENUMERATION","features":[50]},{"name":"CM_PROB_REGISTRY","features":[50]},{"name":"CM_PROB_REGISTRY_TOO_LARGE","features":[50]},{"name":"CM_PROB_REINSTALL","features":[50]},{"name":"CM_PROB_SETPROPERTIES_FAILED","features":[50]},{"name":"CM_PROB_SYSTEM_SHUTDOWN","features":[50]},{"name":"CM_PROB_TOO_EARLY","features":[50]},{"name":"CM_PROB_TRANSLATION_FAILED","features":[50]},{"name":"CM_PROB_UNKNOWN_RESOURCE","features":[50]},{"name":"CM_PROB_UNSIGNED_DRIVER","features":[50]},{"name":"CM_PROB_USED_BY_DEBUGGER","features":[50]},{"name":"CM_PROB_VXDLDR","features":[50]},{"name":"CM_PROB_WAITING_ON_DEPENDENCY","features":[50]},{"name":"CM_PROB_WILL_BE_REMOVED","features":[50]},{"name":"CM_QUERY_ARBITRATOR_BITS","features":[50]},{"name":"CM_QUERY_ARBITRATOR_RAW","features":[50]},{"name":"CM_QUERY_ARBITRATOR_TRANSLATED","features":[50]},{"name":"CM_QUERY_REMOVE_UI_NOT_OK","features":[50]},{"name":"CM_QUERY_REMOVE_UI_OK","features":[50]},{"name":"CM_Query_And_Remove_SubTreeA","features":[50]},{"name":"CM_Query_And_Remove_SubTreeW","features":[50]},{"name":"CM_Query_And_Remove_SubTree_ExA","features":[50]},{"name":"CM_Query_And_Remove_SubTree_ExW","features":[50]},{"name":"CM_Query_Arbitrator_Free_Data","features":[50]},{"name":"CM_Query_Arbitrator_Free_Data_Ex","features":[50]},{"name":"CM_Query_Arbitrator_Free_Size","features":[50]},{"name":"CM_Query_Arbitrator_Free_Size_Ex","features":[50]},{"name":"CM_Query_Remove_SubTree","features":[50]},{"name":"CM_Query_Remove_SubTree_Ex","features":[50]},{"name":"CM_Query_Resource_Conflict_List","features":[50]},{"name":"CM_REENUMERATE_ASYNCHRONOUS","features":[50]},{"name":"CM_REENUMERATE_BITS","features":[50]},{"name":"CM_REENUMERATE_FLAGS","features":[50]},{"name":"CM_REENUMERATE_NORMAL","features":[50]},{"name":"CM_REENUMERATE_RETRY_INSTALLATION","features":[50]},{"name":"CM_REENUMERATE_SYNCHRONOUS","features":[50]},{"name":"CM_REGISTER_DEVICE_DRIVER_BITS","features":[50]},{"name":"CM_REGISTER_DEVICE_DRIVER_DISABLEABLE","features":[50]},{"name":"CM_REGISTER_DEVICE_DRIVER_REMOVABLE","features":[50]},{"name":"CM_REGISTER_DEVICE_DRIVER_STATIC","features":[50]},{"name":"CM_REGISTRY_BITS","features":[50]},{"name":"CM_REGISTRY_CONFIG","features":[50]},{"name":"CM_REGISTRY_HARDWARE","features":[50]},{"name":"CM_REGISTRY_SOFTWARE","features":[50]},{"name":"CM_REGISTRY_USER","features":[50]},{"name":"CM_REMOVAL_POLICY","features":[50]},{"name":"CM_REMOVAL_POLICY_EXPECT_NO_REMOVAL","features":[50]},{"name":"CM_REMOVAL_POLICY_EXPECT_ORDERLY_REMOVAL","features":[50]},{"name":"CM_REMOVAL_POLICY_EXPECT_SURPRISE_REMOVAL","features":[50]},{"name":"CM_REMOVE_BITS","features":[50]},{"name":"CM_REMOVE_DISABLE","features":[50]},{"name":"CM_REMOVE_NO_RESTART","features":[50]},{"name":"CM_REMOVE_UI_NOT_OK","features":[50]},{"name":"CM_REMOVE_UI_OK","features":[50]},{"name":"CM_RESDES_WIDTH_32","features":[50]},{"name":"CM_RESDES_WIDTH_64","features":[50]},{"name":"CM_RESDES_WIDTH_BITS","features":[50]},{"name":"CM_RESDES_WIDTH_DEFAULT","features":[50]},{"name":"CM_RESTYPE","features":[50]},{"name":"CM_Reenumerate_DevNode","features":[50]},{"name":"CM_Reenumerate_DevNode_Ex","features":[50]},{"name":"CM_Register_Device_Driver","features":[50]},{"name":"CM_Register_Device_Driver_Ex","features":[50]},{"name":"CM_Register_Device_InterfaceA","features":[50]},{"name":"CM_Register_Device_InterfaceW","features":[50]},{"name":"CM_Register_Device_Interface_ExA","features":[50]},{"name":"CM_Register_Device_Interface_ExW","features":[50]},{"name":"CM_Register_Notification","features":[50,3]},{"name":"CM_Remove_SubTree","features":[50]},{"name":"CM_Remove_SubTree_Ex","features":[50]},{"name":"CM_Request_Device_EjectA","features":[50]},{"name":"CM_Request_Device_EjectW","features":[50]},{"name":"CM_Request_Device_Eject_ExA","features":[50]},{"name":"CM_Request_Device_Eject_ExW","features":[50]},{"name":"CM_Request_Eject_PC","features":[50]},{"name":"CM_Request_Eject_PC_Ex","features":[50]},{"name":"CM_Run_Detection","features":[50]},{"name":"CM_Run_Detection_Ex","features":[50]},{"name":"CM_SETUP_BITS","features":[50]},{"name":"CM_SETUP_DEVINST_CONFIG","features":[50]},{"name":"CM_SETUP_DEVINST_CONFIG_CLASS","features":[50]},{"name":"CM_SETUP_DEVINST_CONFIG_EXTENSIONS","features":[50]},{"name":"CM_SETUP_DEVINST_CONFIG_RESET","features":[50]},{"name":"CM_SETUP_DEVINST_READY","features":[50]},{"name":"CM_SETUP_DEVINST_RESET","features":[50]},{"name":"CM_SETUP_DEVNODE_CONFIG","features":[50]},{"name":"CM_SETUP_DEVNODE_CONFIG_CLASS","features":[50]},{"name":"CM_SETUP_DEVNODE_CONFIG_EXTENSIONS","features":[50]},{"name":"CM_SETUP_DEVNODE_CONFIG_RESET","features":[50]},{"name":"CM_SETUP_DEVNODE_READY","features":[50]},{"name":"CM_SETUP_DEVNODE_RESET","features":[50]},{"name":"CM_SETUP_DOWNLOAD","features":[50]},{"name":"CM_SETUP_PROP_CHANGE","features":[50]},{"name":"CM_SETUP_WRITE_LOG_CONFS","features":[50]},{"name":"CM_SET_DEVINST_PROBLEM_BITS","features":[50]},{"name":"CM_SET_DEVINST_PROBLEM_NORMAL","features":[50]},{"name":"CM_SET_DEVINST_PROBLEM_OVERRIDE","features":[50]},{"name":"CM_SET_DEVNODE_PROBLEM_BITS","features":[50]},{"name":"CM_SET_DEVNODE_PROBLEM_NORMAL","features":[50]},{"name":"CM_SET_DEVNODE_PROBLEM_OVERRIDE","features":[50]},{"name":"CM_SET_HW_PROF_FLAGS_BITS","features":[50]},{"name":"CM_SET_HW_PROF_FLAGS_UI_NOT_OK","features":[50]},{"name":"CM_Set_Class_PropertyW","features":[50,1]},{"name":"CM_Set_Class_Property_ExW","features":[50,1]},{"name":"CM_Set_Class_Registry_PropertyA","features":[50]},{"name":"CM_Set_Class_Registry_PropertyW","features":[50]},{"name":"CM_Set_DevNode_Problem","features":[50]},{"name":"CM_Set_DevNode_Problem_Ex","features":[50]},{"name":"CM_Set_DevNode_PropertyW","features":[50,1]},{"name":"CM_Set_DevNode_Property_ExW","features":[50,1]},{"name":"CM_Set_DevNode_Registry_PropertyA","features":[50]},{"name":"CM_Set_DevNode_Registry_PropertyW","features":[50]},{"name":"CM_Set_DevNode_Registry_Property_ExA","features":[50]},{"name":"CM_Set_DevNode_Registry_Property_ExW","features":[50]},{"name":"CM_Set_Device_Interface_PropertyW","features":[50,1]},{"name":"CM_Set_Device_Interface_Property_ExW","features":[50,1]},{"name":"CM_Set_HW_Prof","features":[50]},{"name":"CM_Set_HW_Prof_Ex","features":[50]},{"name":"CM_Set_HW_Prof_FlagsA","features":[50]},{"name":"CM_Set_HW_Prof_FlagsW","features":[50]},{"name":"CM_Set_HW_Prof_Flags_ExA","features":[50]},{"name":"CM_Set_HW_Prof_Flags_ExW","features":[50]},{"name":"CM_Setup_DevNode","features":[50]},{"name":"CM_Setup_DevNode_Ex","features":[50]},{"name":"CM_Test_Range_Available","features":[50]},{"name":"CM_Uninstall_DevNode","features":[50]},{"name":"CM_Uninstall_DevNode_Ex","features":[50]},{"name":"CM_Unregister_Device_InterfaceA","features":[50]},{"name":"CM_Unregister_Device_InterfaceW","features":[50]},{"name":"CM_Unregister_Device_Interface_ExA","features":[50]},{"name":"CM_Unregister_Device_Interface_ExW","features":[50]},{"name":"CM_Unregister_Notification","features":[50]},{"name":"COINSTALLER_CONTEXT_DATA","features":[50,3]},{"name":"COINSTALLER_CONTEXT_DATA","features":[50,3]},{"name":"CONFIGFLAG_BOOT_DEVICE","features":[50]},{"name":"CONFIGFLAG_CANTSTOPACHILD","features":[50]},{"name":"CONFIGFLAG_DISABLED","features":[50]},{"name":"CONFIGFLAG_FAILEDINSTALL","features":[50]},{"name":"CONFIGFLAG_FINISHINSTALL_ACTION","features":[50]},{"name":"CONFIGFLAG_FINISHINSTALL_UI","features":[50]},{"name":"CONFIGFLAG_FINISH_INSTALL","features":[50]},{"name":"CONFIGFLAG_IGNORE_BOOT_LC","features":[50]},{"name":"CONFIGFLAG_MANUAL_INSTALL","features":[50]},{"name":"CONFIGFLAG_NEEDS_CLASS_CONFIG","features":[50]},{"name":"CONFIGFLAG_NEEDS_FORCED_CONFIG","features":[50]},{"name":"CONFIGFLAG_NETBOOT_CARD","features":[50]},{"name":"CONFIGFLAG_NET_BOOT","features":[50]},{"name":"CONFIGFLAG_NOREMOVEEXIT","features":[50]},{"name":"CONFIGFLAG_OKREMOVEROM","features":[50]},{"name":"CONFIGFLAG_PARTIAL_LOG_CONF","features":[50]},{"name":"CONFIGFLAG_REINSTALL","features":[50]},{"name":"CONFIGFLAG_REMOVED","features":[50]},{"name":"CONFIGFLAG_SUPPRESS_SURPRISE","features":[50]},{"name":"CONFIGFLAG_VERIFY_HARDWARE","features":[50]},{"name":"CONFIGMG_VERSION","features":[50]},{"name":"CONFIGRET","features":[50]},{"name":"CONFLICT_DETAILS_A","features":[50]},{"name":"CONFLICT_DETAILS_W","features":[50]},{"name":"CONNECTION_DES","features":[50]},{"name":"CONNECTION_RESOURCE","features":[50]},{"name":"COPYFLG_FORCE_FILE_IN_USE","features":[50]},{"name":"COPYFLG_IN_USE_TRY_RENAME","features":[50]},{"name":"COPYFLG_NODECOMP","features":[50]},{"name":"COPYFLG_NOPRUNE","features":[50]},{"name":"COPYFLG_NOSKIP","features":[50]},{"name":"COPYFLG_NOVERSIONCHECK","features":[50]},{"name":"COPYFLG_NO_OVERWRITE","features":[50]},{"name":"COPYFLG_NO_VERSION_DIALOG","features":[50]},{"name":"COPYFLG_OVERWRITE_OLDER_ONLY","features":[50]},{"name":"COPYFLG_PROTECTED_WINDOWS_DRIVER_FILE","features":[50]},{"name":"COPYFLG_REPLACEONLY","features":[50]},{"name":"COPYFLG_REPLACE_BOOT_FILE","features":[50]},{"name":"COPYFLG_WARN_IF_SKIP","features":[50]},{"name":"CR_ACCESS_DENIED","features":[50]},{"name":"CR_ALREADY_SUCH_DEVINST","features":[50]},{"name":"CR_ALREADY_SUCH_DEVNODE","features":[50]},{"name":"CR_APM_VETOED","features":[50]},{"name":"CR_BUFFER_SMALL","features":[50]},{"name":"CR_CALL_NOT_IMPLEMENTED","features":[50]},{"name":"CR_CANT_SHARE_IRQ","features":[50]},{"name":"CR_CREATE_BLOCKED","features":[50]},{"name":"CR_DEFAULT","features":[50]},{"name":"CR_DEVICE_INTERFACE_ACTIVE","features":[50]},{"name":"CR_DEVICE_NOT_THERE","features":[50]},{"name":"CR_DEVINST_HAS_REQS","features":[50]},{"name":"CR_DEVLOADER_NOT_READY","features":[50]},{"name":"CR_DEVNODE_HAS_REQS","features":[50]},{"name":"CR_DLVXD_NOT_FOUND","features":[50]},{"name":"CR_FAILURE","features":[50]},{"name":"CR_FREE_RESOURCES","features":[50]},{"name":"CR_INVALID_API","features":[50]},{"name":"CR_INVALID_ARBITRATOR","features":[50]},{"name":"CR_INVALID_CONFLICT_LIST","features":[50]},{"name":"CR_INVALID_DATA","features":[50]},{"name":"CR_INVALID_DEVICE_ID","features":[50]},{"name":"CR_INVALID_DEVINST","features":[50]},{"name":"CR_INVALID_DEVNODE","features":[50]},{"name":"CR_INVALID_FLAG","features":[50]},{"name":"CR_INVALID_INDEX","features":[50]},{"name":"CR_INVALID_LOAD_TYPE","features":[50]},{"name":"CR_INVALID_LOG_CONF","features":[50]},{"name":"CR_INVALID_MACHINENAME","features":[50]},{"name":"CR_INVALID_NODELIST","features":[50]},{"name":"CR_INVALID_POINTER","features":[50]},{"name":"CR_INVALID_PRIORITY","features":[50]},{"name":"CR_INVALID_PROPERTY","features":[50]},{"name":"CR_INVALID_RANGE","features":[50]},{"name":"CR_INVALID_RANGE_LIST","features":[50]},{"name":"CR_INVALID_REFERENCE_STRING","features":[50]},{"name":"CR_INVALID_RESOURCEID","features":[50]},{"name":"CR_INVALID_RES_DES","features":[50]},{"name":"CR_INVALID_STRUCTURE_SIZE","features":[50]},{"name":"CR_MACHINE_UNAVAILABLE","features":[50]},{"name":"CR_NEED_RESTART","features":[50]},{"name":"CR_NOT_DISABLEABLE","features":[50]},{"name":"CR_NOT_SYSTEM_VM","features":[50]},{"name":"CR_NO_ARBITRATOR","features":[50]},{"name":"CR_NO_CM_SERVICES","features":[50]},{"name":"CR_NO_DEPENDENT","features":[50]},{"name":"CR_NO_MORE_HW_PROFILES","features":[50]},{"name":"CR_NO_MORE_LOG_CONF","features":[50]},{"name":"CR_NO_MORE_RES_DES","features":[50]},{"name":"CR_NO_REGISTRY_HANDLE","features":[50]},{"name":"CR_NO_SUCH_DEVICE_INTERFACE","features":[50]},{"name":"CR_NO_SUCH_DEVINST","features":[50]},{"name":"CR_NO_SUCH_DEVNODE","features":[50]},{"name":"CR_NO_SUCH_LOGICAL_DEV","features":[50]},{"name":"CR_NO_SUCH_REGISTRY_KEY","features":[50]},{"name":"CR_NO_SUCH_VALUE","features":[50]},{"name":"CR_OUT_OF_MEMORY","features":[50]},{"name":"CR_QUERY_VETOED","features":[50]},{"name":"CR_REGISTRY_ERROR","features":[50]},{"name":"CR_REMOTE_COMM_FAILURE","features":[50]},{"name":"CR_REMOVE_VETOED","features":[50]},{"name":"CR_SAME_RESOURCES","features":[50]},{"name":"CR_SUCCESS","features":[50]},{"name":"CR_WRONG_TYPE","features":[50]},{"name":"CS_DES","features":[50]},{"name":"CS_RESOURCE","features":[50]},{"name":"DD_FLAGS","features":[50]},{"name":"DELFLG_IN_USE","features":[50]},{"name":"DELFLG_IN_USE1","features":[50]},{"name":"DEVPRIVATE_DES","features":[50]},{"name":"DEVPRIVATE_RANGE","features":[50]},{"name":"DEVPRIVATE_RESOURCE","features":[50]},{"name":"DIBCI_NODISPLAYCLASS","features":[50]},{"name":"DIBCI_NOINSTALLCLASS","features":[50]},{"name":"DICD_GENERATE_ID","features":[50]},{"name":"DICD_INHERIT_CLASSDRVS","features":[50]},{"name":"DICLASSPROP_INSTALLER","features":[50]},{"name":"DICLASSPROP_INTERFACE","features":[50]},{"name":"DICS_DISABLE","features":[50]},{"name":"DICS_ENABLE","features":[50]},{"name":"DICS_FLAG_CONFIGGENERAL","features":[50]},{"name":"DICS_FLAG_CONFIGSPECIFIC","features":[50]},{"name":"DICS_FLAG_GLOBAL","features":[50]},{"name":"DICS_PROPCHANGE","features":[50]},{"name":"DICS_START","features":[50]},{"name":"DICS_STOP","features":[50]},{"name":"DICUSTOMDEVPROP_MERGE_MULTISZ","features":[50]},{"name":"DIF_ADDPROPERTYPAGE_ADVANCED","features":[50]},{"name":"DIF_ADDPROPERTYPAGE_BASIC","features":[50]},{"name":"DIF_ADDREMOTEPROPERTYPAGE_ADVANCED","features":[50]},{"name":"DIF_ALLOW_INSTALL","features":[50]},{"name":"DIF_ASSIGNRESOURCES","features":[50]},{"name":"DIF_CALCDISKSPACE","features":[50]},{"name":"DIF_DESTROYPRIVATEDATA","features":[50]},{"name":"DIF_DESTROYWIZARDDATA","features":[50]},{"name":"DIF_DETECT","features":[50]},{"name":"DIF_DETECTCANCEL","features":[50]},{"name":"DIF_DETECTVERIFY","features":[50]},{"name":"DIF_ENABLECLASS","features":[50]},{"name":"DIF_FINISHINSTALL_ACTION","features":[50]},{"name":"DIF_FIRSTTIMESETUP","features":[50]},{"name":"DIF_FOUNDDEVICE","features":[50]},{"name":"DIF_INSTALLCLASSDRIVERS","features":[50]},{"name":"DIF_INSTALLDEVICE","features":[50]},{"name":"DIF_INSTALLDEVICEFILES","features":[50]},{"name":"DIF_INSTALLINTERFACES","features":[50]},{"name":"DIF_INSTALLWIZARD","features":[50]},{"name":"DIF_MOVEDEVICE","features":[50]},{"name":"DIF_NEWDEVICEWIZARD_FINISHINSTALL","features":[50]},{"name":"DIF_NEWDEVICEWIZARD_POSTANALYZE","features":[50]},{"name":"DIF_NEWDEVICEWIZARD_PREANALYZE","features":[50]},{"name":"DIF_NEWDEVICEWIZARD_PRESELECT","features":[50]},{"name":"DIF_NEWDEVICEWIZARD_SELECT","features":[50]},{"name":"DIF_POWERMESSAGEWAKE","features":[50]},{"name":"DIF_PROPERTIES","features":[50]},{"name":"DIF_PROPERTYCHANGE","features":[50]},{"name":"DIF_REGISTERDEVICE","features":[50]},{"name":"DIF_REGISTER_COINSTALLERS","features":[50]},{"name":"DIF_REMOVE","features":[50]},{"name":"DIF_RESERVED1","features":[50]},{"name":"DIF_RESERVED2","features":[50]},{"name":"DIF_SELECTBESTCOMPATDRV","features":[50]},{"name":"DIF_SELECTCLASSDRIVERS","features":[50]},{"name":"DIF_SELECTDEVICE","features":[50]},{"name":"DIF_TROUBLESHOOTER","features":[50]},{"name":"DIF_UNREMOVE","features":[50]},{"name":"DIF_UNUSED1","features":[50]},{"name":"DIF_UPDATEDRIVER_UI","features":[50]},{"name":"DIF_VALIDATECLASSDRIVERS","features":[50]},{"name":"DIF_VALIDATEDRIVER","features":[50]},{"name":"DIGCDP_FLAG_ADVANCED","features":[50]},{"name":"DIGCDP_FLAG_BASIC","features":[50]},{"name":"DIGCDP_FLAG_REMOTE_ADVANCED","features":[50]},{"name":"DIGCDP_FLAG_REMOTE_BASIC","features":[50]},{"name":"DIGCF_ALLCLASSES","features":[50]},{"name":"DIGCF_DEFAULT","features":[50]},{"name":"DIGCF_DEVICEINTERFACE","features":[50]},{"name":"DIGCF_INTERFACEDEVICE","features":[50]},{"name":"DIGCF_PRESENT","features":[50]},{"name":"DIGCF_PROFILE","features":[50]},{"name":"DIIDFLAG_BITS","features":[50]},{"name":"DIIDFLAG_INSTALLCOPYINFDRIVERS","features":[50]},{"name":"DIIDFLAG_INSTALLNULLDRIVER","features":[50]},{"name":"DIIDFLAG_NOFINISHINSTALLUI","features":[50]},{"name":"DIIDFLAG_SHOWSEARCHUI","features":[50]},{"name":"DIINSTALLDEVICE_FLAGS","features":[50]},{"name":"DIINSTALLDRIVER_FLAGS","features":[50]},{"name":"DIIRFLAG_BITS","features":[50]},{"name":"DIIRFLAG_FORCE_INF","features":[50]},{"name":"DIIRFLAG_HOTPATCH","features":[50]},{"name":"DIIRFLAG_HW_USING_THE_INF","features":[50]},{"name":"DIIRFLAG_INF_ALREADY_COPIED","features":[50]},{"name":"DIIRFLAG_INSTALL_AS_SET","features":[50]},{"name":"DIIRFLAG_NOBACKUP","features":[50]},{"name":"DIIRFLAG_PRE_CONFIGURE_INF","features":[50]},{"name":"DIIRFLAG_SYSTEM_BITS","features":[50]},{"name":"DIOCR_INSTALLER","features":[50]},{"name":"DIOCR_INTERFACE","features":[50]},{"name":"DIODI_NO_ADD","features":[50]},{"name":"DIOD_CANCEL_REMOVE","features":[50]},{"name":"DIOD_INHERIT_CLASSDRVS","features":[50]},{"name":"DIREG_BOTH","features":[50]},{"name":"DIREG_DEV","features":[50]},{"name":"DIREG_DRV","features":[50]},{"name":"DIRID_ABSOLUTE","features":[50]},{"name":"DIRID_ABSOLUTE_16BIT","features":[50]},{"name":"DIRID_APPS","features":[50]},{"name":"DIRID_BOOT","features":[50]},{"name":"DIRID_COLOR","features":[50]},{"name":"DIRID_COMMON_APPDATA","features":[50]},{"name":"DIRID_COMMON_DESKTOPDIRECTORY","features":[50]},{"name":"DIRID_COMMON_DOCUMENTS","features":[50]},{"name":"DIRID_COMMON_FAVORITES","features":[50]},{"name":"DIRID_COMMON_PROGRAMS","features":[50]},{"name":"DIRID_COMMON_STARTMENU","features":[50]},{"name":"DIRID_COMMON_STARTUP","features":[50]},{"name":"DIRID_COMMON_TEMPLATES","features":[50]},{"name":"DIRID_DEFAULT","features":[50]},{"name":"DIRID_DRIVERS","features":[50]},{"name":"DIRID_DRIVER_STORE","features":[50]},{"name":"DIRID_FONTS","features":[50]},{"name":"DIRID_HELP","features":[50]},{"name":"DIRID_INF","features":[50]},{"name":"DIRID_IOSUBSYS","features":[50]},{"name":"DIRID_LOADER","features":[50]},{"name":"DIRID_NULL","features":[50]},{"name":"DIRID_PRINTPROCESSOR","features":[50]},{"name":"DIRID_PROGRAM_FILES","features":[50]},{"name":"DIRID_PROGRAM_FILES_COMMON","features":[50]},{"name":"DIRID_PROGRAM_FILES_COMMONX86","features":[50]},{"name":"DIRID_PROGRAM_FILES_X86","features":[50]},{"name":"DIRID_SHARED","features":[50]},{"name":"DIRID_SPOOL","features":[50]},{"name":"DIRID_SPOOLDRIVERS","features":[50]},{"name":"DIRID_SRCPATH","features":[50]},{"name":"DIRID_SYSTEM","features":[50]},{"name":"DIRID_SYSTEM16","features":[50]},{"name":"DIRID_SYSTEM_X86","features":[50]},{"name":"DIRID_USER","features":[50]},{"name":"DIRID_USERPROFILE","features":[50]},{"name":"DIRID_VIEWERS","features":[50]},{"name":"DIRID_WINDOWS","features":[50]},{"name":"DIROLLBACKDRIVER_FLAGS","features":[50]},{"name":"DIUNINSTALLDRIVER_FLAGS","features":[50]},{"name":"DIURFLAG_NO_REMOVE_INF","features":[50]},{"name":"DIURFLAG_RESERVED","features":[50]},{"name":"DIURFLAG_VALID","features":[50]},{"name":"DI_AUTOASSIGNRES","features":[50]},{"name":"DI_CLASSINSTALLPARAMS","features":[50]},{"name":"DI_COMPAT_FROM_CLASS","features":[50]},{"name":"DI_DIDCLASS","features":[50]},{"name":"DI_DIDCOMPAT","features":[50]},{"name":"DI_DISABLED","features":[50]},{"name":"DI_DONOTCALLCONFIGMG","features":[50]},{"name":"DI_DRIVERPAGE_ADDED","features":[50]},{"name":"DI_ENUMSINGLEINF","features":[50]},{"name":"DI_FLAGSEX_ALLOWEXCLUDEDDRVS","features":[50]},{"name":"DI_FLAGSEX_ALTPLATFORM_DRVSEARCH","features":[50]},{"name":"DI_FLAGSEX_ALWAYSWRITEIDS","features":[50]},{"name":"DI_FLAGSEX_APPENDDRIVERLIST","features":[50]},{"name":"DI_FLAGSEX_BACKUPONREPLACE","features":[50]},{"name":"DI_FLAGSEX_CI_FAILED","features":[50]},{"name":"DI_FLAGSEX_DEVICECHANGE","features":[50]},{"name":"DI_FLAGSEX_DIDCOMPATINFO","features":[50]},{"name":"DI_FLAGSEX_DIDINFOLIST","features":[50]},{"name":"DI_FLAGSEX_DRIVERLIST_FROM_URL","features":[50]},{"name":"DI_FLAGSEX_EXCLUDE_OLD_INET_DRIVERS","features":[50]},{"name":"DI_FLAGSEX_FILTERCLASSES","features":[50]},{"name":"DI_FLAGSEX_FILTERSIMILARDRIVERS","features":[50]},{"name":"DI_FLAGSEX_FINISHINSTALL_ACTION","features":[50]},{"name":"DI_FLAGSEX_INET_DRIVER","features":[50]},{"name":"DI_FLAGSEX_INSTALLEDDRIVER","features":[50]},{"name":"DI_FLAGSEX_IN_SYSTEM_SETUP","features":[50]},{"name":"DI_FLAGSEX_NOUIONQUERYREMOVE","features":[50]},{"name":"DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE","features":[50]},{"name":"DI_FLAGSEX_NO_DRVREG_MODIFY","features":[50]},{"name":"DI_FLAGSEX_POWERPAGE_ADDED","features":[50]},{"name":"DI_FLAGSEX_PREINSTALLBACKUP","features":[50]},{"name":"DI_FLAGSEX_PROPCHANGE_PENDING","features":[50]},{"name":"DI_FLAGSEX_RECURSIVESEARCH","features":[50]},{"name":"DI_FLAGSEX_RESERVED1","features":[50]},{"name":"DI_FLAGSEX_RESERVED2","features":[50]},{"name":"DI_FLAGSEX_RESERVED3","features":[50]},{"name":"DI_FLAGSEX_RESERVED4","features":[50]},{"name":"DI_FLAGSEX_RESTART_DEVICE_ONLY","features":[50]},{"name":"DI_FLAGSEX_SEARCH_PUBLISHED_INFS","features":[50]},{"name":"DI_FLAGSEX_SETFAILEDINSTALL","features":[50]},{"name":"DI_FLAGSEX_USECLASSFORCOMPAT","features":[50]},{"name":"DI_FORCECOPY","features":[50]},{"name":"DI_FUNCTION","features":[50]},{"name":"DI_GENERALPAGE_ADDED","features":[50]},{"name":"DI_INF_IS_SORTED","features":[50]},{"name":"DI_INSTALLDISABLED","features":[50]},{"name":"DI_MULTMFGS","features":[50]},{"name":"DI_NEEDREBOOT","features":[50]},{"name":"DI_NEEDRESTART","features":[50]},{"name":"DI_NOBROWSE","features":[50]},{"name":"DI_NODI_DEFAULTACTION","features":[50]},{"name":"DI_NOFILECOPY","features":[50]},{"name":"DI_NOSELECTICONS","features":[50]},{"name":"DI_NOVCP","features":[50]},{"name":"DI_NOWRITE_IDS","features":[50]},{"name":"DI_OVERRIDE_INFFLAGS","features":[50]},{"name":"DI_PROPERTIES_CHANGE","features":[50]},{"name":"DI_PROPS_NOCHANGEUSAGE","features":[50]},{"name":"DI_QUIETINSTALL","features":[50]},{"name":"DI_REMOVEDEVICE_CONFIGSPECIFIC","features":[50]},{"name":"DI_REMOVEDEVICE_GLOBAL","features":[50]},{"name":"DI_RESOURCEPAGE_ADDED","features":[50]},{"name":"DI_SHOWALL","features":[50]},{"name":"DI_SHOWCLASS","features":[50]},{"name":"DI_SHOWCOMPAT","features":[50]},{"name":"DI_SHOWOEM","features":[50]},{"name":"DI_UNREMOVEDEVICE_CONFIGSPECIFIC","features":[50]},{"name":"DI_USECI_SELECTSTRINGS","features":[50]},{"name":"DMA_DES","features":[50]},{"name":"DMA_RANGE","features":[50]},{"name":"DMA_RESOURCE","features":[50]},{"name":"DMI_BKCOLOR","features":[50]},{"name":"DMI_MASK","features":[50]},{"name":"DMI_USERECT","features":[50]},{"name":"DNF_ALWAYSEXCLUDEFROMLIST","features":[50]},{"name":"DNF_AUTHENTICODE_SIGNED","features":[50]},{"name":"DNF_BAD_DRIVER","features":[50]},{"name":"DNF_BASIC_DRIVER","features":[50]},{"name":"DNF_CLASS_DRIVER","features":[50]},{"name":"DNF_COMPATIBLE_DRIVER","features":[50]},{"name":"DNF_DUPDESC","features":[50]},{"name":"DNF_DUPDRIVERVER","features":[50]},{"name":"DNF_DUPPROVIDER","features":[50]},{"name":"DNF_EXCLUDEFROMLIST","features":[50]},{"name":"DNF_INBOX_DRIVER","features":[50]},{"name":"DNF_INET_DRIVER","features":[50]},{"name":"DNF_INF_IS_SIGNED","features":[50]},{"name":"DNF_INSTALLEDDRIVER","features":[50]},{"name":"DNF_LEGACYINF","features":[50]},{"name":"DNF_NODRIVER","features":[50]},{"name":"DNF_OEM_F6_INF","features":[50]},{"name":"DNF_OLDDRIVER","features":[50]},{"name":"DNF_OLD_INET_DRIVER","features":[50]},{"name":"DNF_REQUESTADDITIONALSOFTWARE","features":[50]},{"name":"DNF_UNUSED1","features":[50]},{"name":"DNF_UNUSED2","features":[50]},{"name":"DNF_UNUSED_22","features":[50]},{"name":"DNF_UNUSED_23","features":[50]},{"name":"DNF_UNUSED_24","features":[50]},{"name":"DNF_UNUSED_25","features":[50]},{"name":"DNF_UNUSED_26","features":[50]},{"name":"DNF_UNUSED_27","features":[50]},{"name":"DNF_UNUSED_28","features":[50]},{"name":"DNF_UNUSED_29","features":[50]},{"name":"DNF_UNUSED_30","features":[50]},{"name":"DNF_UNUSED_31","features":[50]},{"name":"DN_APM_DRIVER","features":[50]},{"name":"DN_APM_ENUMERATOR","features":[50]},{"name":"DN_ARM_WAKEUP","features":[50]},{"name":"DN_BAD_PARTIAL","features":[50]},{"name":"DN_BOOT_LOG_PROB","features":[50]},{"name":"DN_CHANGEABLE_FLAGS","features":[50]},{"name":"DN_CHILD_WITH_INVALID_ID","features":[50]},{"name":"DN_DEVICE_DISCONNECTED","features":[50]},{"name":"DN_DISABLEABLE","features":[50]},{"name":"DN_DRIVER_BLOCKED","features":[50]},{"name":"DN_DRIVER_LOADED","features":[50]},{"name":"DN_ENUM_LOADED","features":[50]},{"name":"DN_FILTERED","features":[50]},{"name":"DN_HARDWARE_ENUM","features":[50]},{"name":"DN_HAS_MARK","features":[50]},{"name":"DN_HAS_PROBLEM","features":[50]},{"name":"DN_LEGACY_DRIVER","features":[50]},{"name":"DN_LIAR","features":[50]},{"name":"DN_MANUAL","features":[50]},{"name":"DN_MF_CHILD","features":[50]},{"name":"DN_MF_PARENT","features":[50]},{"name":"DN_MOVED","features":[50]},{"name":"DN_NEEDS_LOCKING","features":[50]},{"name":"DN_NEED_RESTART","features":[50]},{"name":"DN_NEED_TO_ENUM","features":[50]},{"name":"DN_NOT_FIRST_TIME","features":[50]},{"name":"DN_NOT_FIRST_TIMEE","features":[50]},{"name":"DN_NO_SHOW_IN_DM","features":[50]},{"name":"DN_NT_DRIVER","features":[50]},{"name":"DN_NT_ENUMERATOR","features":[50]},{"name":"DN_PRIVATE_PROBLEM","features":[50]},{"name":"DN_QUERY_REMOVE_ACTIVE","features":[50]},{"name":"DN_QUERY_REMOVE_PENDING","features":[50]},{"name":"DN_REBAL_CANDIDATE","features":[50]},{"name":"DN_REMOVABLE","features":[50]},{"name":"DN_ROOT_ENUMERATED","features":[50]},{"name":"DN_SILENT_INSTALL","features":[50]},{"name":"DN_STARTED","features":[50]},{"name":"DN_STOP_FREE_RES","features":[50]},{"name":"DN_WILL_BE_REMOVED","features":[50]},{"name":"DPROMPT_BUFFERTOOSMALL","features":[50]},{"name":"DPROMPT_CANCEL","features":[50]},{"name":"DPROMPT_OUTOFMEMORY","features":[50]},{"name":"DPROMPT_SKIPFILE","features":[50]},{"name":"DPROMPT_SUCCESS","features":[50]},{"name":"DRIVER_COMPATID_RANK","features":[50]},{"name":"DRIVER_HARDWAREID_MASK","features":[50]},{"name":"DRIVER_HARDWAREID_RANK","features":[50]},{"name":"DRIVER_UNTRUSTED_COMPATID_RANK","features":[50]},{"name":"DRIVER_UNTRUSTED_HARDWAREID_RANK","features":[50]},{"name":"DRIVER_UNTRUSTED_RANK","features":[50]},{"name":"DRIVER_W9X_SUSPECT_COMPATID_RANK","features":[50]},{"name":"DRIVER_W9X_SUSPECT_HARDWAREID_RANK","features":[50]},{"name":"DRIVER_W9X_SUSPECT_RANK","features":[50]},{"name":"DWORD_MAX","features":[50]},{"name":"DYNAWIZ_FLAG_ANALYZE_HANDLECONFLICT","features":[50]},{"name":"DYNAWIZ_FLAG_INSTALLDET_NEXT","features":[50]},{"name":"DYNAWIZ_FLAG_INSTALLDET_PREV","features":[50]},{"name":"DYNAWIZ_FLAG_PAGESADDED","features":[50]},{"name":"DiInstallDevice","features":[50,3]},{"name":"DiInstallDriverA","features":[50,3]},{"name":"DiInstallDriverW","features":[50,3]},{"name":"DiRollbackDriver","features":[50,3]},{"name":"DiShowUpdateDevice","features":[50,3]},{"name":"DiShowUpdateDriver","features":[50,3]},{"name":"DiUninstallDevice","features":[50,3]},{"name":"DiUninstallDriverA","features":[50,3]},{"name":"DiUninstallDriverW","features":[50,3]},{"name":"ENABLECLASS_FAILURE","features":[50]},{"name":"ENABLECLASS_QUERY","features":[50]},{"name":"ENABLECLASS_SUCCESS","features":[50]},{"name":"FILEOP_ABORT","features":[50]},{"name":"FILEOP_BACKUP","features":[50]},{"name":"FILEOP_COPY","features":[50]},{"name":"FILEOP_DELETE","features":[50]},{"name":"FILEOP_DOIT","features":[50]},{"name":"FILEOP_NEWPATH","features":[50]},{"name":"FILEOP_RENAME","features":[50]},{"name":"FILEOP_RETRY","features":[50]},{"name":"FILEOP_SKIP","features":[50]},{"name":"FILEPATHS_A","features":[50]},{"name":"FILEPATHS_A","features":[50]},{"name":"FILEPATHS_SIGNERINFO_A","features":[50]},{"name":"FILEPATHS_SIGNERINFO_A","features":[50]},{"name":"FILEPATHS_SIGNERINFO_W","features":[50]},{"name":"FILEPATHS_SIGNERINFO_W","features":[50]},{"name":"FILEPATHS_W","features":[50]},{"name":"FILEPATHS_W","features":[50]},{"name":"FILE_COMPRESSION_MSZIP","features":[50]},{"name":"FILE_COMPRESSION_NONE","features":[50]},{"name":"FILE_COMPRESSION_NTCAB","features":[50]},{"name":"FILE_COMPRESSION_TYPE","features":[50]},{"name":"FILE_COMPRESSION_WINLZA","features":[50]},{"name":"FILE_IN_CABINET_INFO_A","features":[50]},{"name":"FILE_IN_CABINET_INFO_A","features":[50]},{"name":"FILE_IN_CABINET_INFO_W","features":[50]},{"name":"FILE_IN_CABINET_INFO_W","features":[50]},{"name":"FILTERED_LOG_CONF","features":[50]},{"name":"FLG_ADDPROPERTY_AND","features":[50]},{"name":"FLG_ADDPROPERTY_APPEND","features":[50]},{"name":"FLG_ADDPROPERTY_NOCLOBBER","features":[50]},{"name":"FLG_ADDPROPERTY_OR","features":[50]},{"name":"FLG_ADDPROPERTY_OVERWRITEONLY","features":[50]},{"name":"FLG_ADDREG_32BITKEY","features":[50]},{"name":"FLG_ADDREG_64BITKEY","features":[50]},{"name":"FLG_ADDREG_APPEND","features":[50]},{"name":"FLG_ADDREG_BINVALUETYPE","features":[50]},{"name":"FLG_ADDREG_DELREG_BIT","features":[50]},{"name":"FLG_ADDREG_DELVAL","features":[50]},{"name":"FLG_ADDREG_KEYONLY","features":[50]},{"name":"FLG_ADDREG_KEYONLY_COMMON","features":[50]},{"name":"FLG_ADDREG_NOCLOBBER","features":[50]},{"name":"FLG_ADDREG_OVERWRITEONLY","features":[50]},{"name":"FLG_ADDREG_TYPE_EXPAND_SZ","features":[50]},{"name":"FLG_ADDREG_TYPE_MULTI_SZ","features":[50]},{"name":"FLG_ADDREG_TYPE_SZ","features":[50]},{"name":"FLG_BITREG_32BITKEY","features":[50]},{"name":"FLG_BITREG_64BITKEY","features":[50]},{"name":"FLG_BITREG_CLEARBITS","features":[50]},{"name":"FLG_BITREG_SETBITS","features":[50]},{"name":"FLG_DELPROPERTY_MULTI_SZ_DELSTRING","features":[50]},{"name":"FLG_DELREG_32BITKEY","features":[50]},{"name":"FLG_DELREG_64BITKEY","features":[50]},{"name":"FLG_DELREG_KEYONLY_COMMON","features":[50]},{"name":"FLG_DELREG_OPERATION_MASK","features":[50]},{"name":"FLG_DELREG_TYPE_EXPAND_SZ","features":[50]},{"name":"FLG_DELREG_TYPE_MULTI_SZ","features":[50]},{"name":"FLG_DELREG_TYPE_SZ","features":[50]},{"name":"FLG_DELREG_VALUE","features":[50]},{"name":"FLG_INI2REG_32BITKEY","features":[50]},{"name":"FLG_INI2REG_64BITKEY","features":[50]},{"name":"FLG_PROFITEM_CSIDL","features":[50]},{"name":"FLG_PROFITEM_CURRENTUSER","features":[50]},{"name":"FLG_PROFITEM_DELETE","features":[50]},{"name":"FLG_PROFITEM_GROUP","features":[50]},{"name":"FLG_REGSVR_DLLINSTALL","features":[50]},{"name":"FLG_REGSVR_DLLREGISTER","features":[50]},{"name":"FORCED_LOG_CONF","features":[50]},{"name":"GUID_ACPI_CMOS_INTERFACE_STANDARD","features":[50]},{"name":"GUID_ACPI_INTERFACE_STANDARD","features":[50]},{"name":"GUID_ACPI_INTERFACE_STANDARD2","features":[50]},{"name":"GUID_ACPI_PORT_RANGES_INTERFACE_STANDARD","features":[50]},{"name":"GUID_ACPI_REGS_INTERFACE_STANDARD","features":[50]},{"name":"GUID_AGP_TARGET_BUS_INTERFACE_STANDARD","features":[50]},{"name":"GUID_ARBITER_INTERFACE_STANDARD","features":[50]},{"name":"GUID_BUS_INTERFACE_STANDARD","features":[50]},{"name":"GUID_BUS_RESOURCE_UPDATE_INTERFACE","features":[50]},{"name":"GUID_BUS_TYPE_1394","features":[50]},{"name":"GUID_BUS_TYPE_ACPI","features":[50]},{"name":"GUID_BUS_TYPE_AVC","features":[50]},{"name":"GUID_BUS_TYPE_DOT4PRT","features":[50]},{"name":"GUID_BUS_TYPE_EISA","features":[50]},{"name":"GUID_BUS_TYPE_HID","features":[50]},{"name":"GUID_BUS_TYPE_INTERNAL","features":[50]},{"name":"GUID_BUS_TYPE_IRDA","features":[50]},{"name":"GUID_BUS_TYPE_ISAPNP","features":[50]},{"name":"GUID_BUS_TYPE_LPTENUM","features":[50]},{"name":"GUID_BUS_TYPE_MCA","features":[50]},{"name":"GUID_BUS_TYPE_PCI","features":[50]},{"name":"GUID_BUS_TYPE_PCMCIA","features":[50]},{"name":"GUID_BUS_TYPE_SCM","features":[50]},{"name":"GUID_BUS_TYPE_SD","features":[50]},{"name":"GUID_BUS_TYPE_SERENUM","features":[50]},{"name":"GUID_BUS_TYPE_SW_DEVICE","features":[50]},{"name":"GUID_BUS_TYPE_USB","features":[50]},{"name":"GUID_BUS_TYPE_USBPRINT","features":[50]},{"name":"GUID_D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[50]},{"name":"GUID_D3COLD_SUPPORT_INTERFACE","features":[50]},{"name":"GUID_DEVCLASS_1394","features":[50]},{"name":"GUID_DEVCLASS_1394DEBUG","features":[50]},{"name":"GUID_DEVCLASS_61883","features":[50]},{"name":"GUID_DEVCLASS_ADAPTER","features":[50]},{"name":"GUID_DEVCLASS_APMSUPPORT","features":[50]},{"name":"GUID_DEVCLASS_AVC","features":[50]},{"name":"GUID_DEVCLASS_BATTERY","features":[50]},{"name":"GUID_DEVCLASS_BIOMETRIC","features":[50]},{"name":"GUID_DEVCLASS_BLUETOOTH","features":[50]},{"name":"GUID_DEVCLASS_CAMERA","features":[50]},{"name":"GUID_DEVCLASS_CDROM","features":[50]},{"name":"GUID_DEVCLASS_COMPUTEACCELERATOR","features":[50]},{"name":"GUID_DEVCLASS_COMPUTER","features":[50]},{"name":"GUID_DEVCLASS_DECODER","features":[50]},{"name":"GUID_DEVCLASS_DISKDRIVE","features":[50]},{"name":"GUID_DEVCLASS_DISPLAY","features":[50]},{"name":"GUID_DEVCLASS_DOT4","features":[50]},{"name":"GUID_DEVCLASS_DOT4PRINT","features":[50]},{"name":"GUID_DEVCLASS_EHSTORAGESILO","features":[50]},{"name":"GUID_DEVCLASS_ENUM1394","features":[50]},{"name":"GUID_DEVCLASS_EXTENSION","features":[50]},{"name":"GUID_DEVCLASS_FDC","features":[50]},{"name":"GUID_DEVCLASS_FIRMWARE","features":[50]},{"name":"GUID_DEVCLASS_FLOPPYDISK","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_ACTIVITYMONITOR","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_ANTIVIRUS","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_BOTTOM","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_CFSMETADATASERVER","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_COMPRESSION","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_CONTENTSCREENER","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_CONTINUOUSBACKUP","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_COPYPROTECTION","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_ENCRYPTION","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_HSM","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_INFRASTRUCTURE","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_OPENFILEBACKUP","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAMANAGEMENT","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_QUOTAMANAGEMENT","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_REPLICATION","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_SECURITYENHANCER","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEM","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEMRECOVERY","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_TOP","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_UNDELETE","features":[50]},{"name":"GUID_DEVCLASS_FSFILTER_VIRTUALIZATION","features":[50]},{"name":"GUID_DEVCLASS_GENERIC","features":[50]},{"name":"GUID_DEVCLASS_GPS","features":[50]},{"name":"GUID_DEVCLASS_HDC","features":[50]},{"name":"GUID_DEVCLASS_HIDCLASS","features":[50]},{"name":"GUID_DEVCLASS_HOLOGRAPHIC","features":[50]},{"name":"GUID_DEVCLASS_IMAGE","features":[50]},{"name":"GUID_DEVCLASS_INFINIBAND","features":[50]},{"name":"GUID_DEVCLASS_INFRARED","features":[50]},{"name":"GUID_DEVCLASS_KEYBOARD","features":[50]},{"name":"GUID_DEVCLASS_LEGACYDRIVER","features":[50]},{"name":"GUID_DEVCLASS_MEDIA","features":[50]},{"name":"GUID_DEVCLASS_MEDIUM_CHANGER","features":[50]},{"name":"GUID_DEVCLASS_MEMORY","features":[50]},{"name":"GUID_DEVCLASS_MODEM","features":[50]},{"name":"GUID_DEVCLASS_MONITOR","features":[50]},{"name":"GUID_DEVCLASS_MOUSE","features":[50]},{"name":"GUID_DEVCLASS_MTD","features":[50]},{"name":"GUID_DEVCLASS_MULTIFUNCTION","features":[50]},{"name":"GUID_DEVCLASS_MULTIPORTSERIAL","features":[50]},{"name":"GUID_DEVCLASS_NET","features":[50]},{"name":"GUID_DEVCLASS_NETCLIENT","features":[50]},{"name":"GUID_DEVCLASS_NETDRIVER","features":[50]},{"name":"GUID_DEVCLASS_NETSERVICE","features":[50]},{"name":"GUID_DEVCLASS_NETTRANS","features":[50]},{"name":"GUID_DEVCLASS_NETUIO","features":[50]},{"name":"GUID_DEVCLASS_NODRIVER","features":[50]},{"name":"GUID_DEVCLASS_PCMCIA","features":[50]},{"name":"GUID_DEVCLASS_PNPPRINTERS","features":[50]},{"name":"GUID_DEVCLASS_PORTS","features":[50]},{"name":"GUID_DEVCLASS_PRIMITIVE","features":[50]},{"name":"GUID_DEVCLASS_PRINTER","features":[50]},{"name":"GUID_DEVCLASS_PRINTERUPGRADE","features":[50]},{"name":"GUID_DEVCLASS_PRINTQUEUE","features":[50]},{"name":"GUID_DEVCLASS_PROCESSOR","features":[50]},{"name":"GUID_DEVCLASS_SBP2","features":[50]},{"name":"GUID_DEVCLASS_SCMDISK","features":[50]},{"name":"GUID_DEVCLASS_SCMVOLUME","features":[50]},{"name":"GUID_DEVCLASS_SCSIADAPTER","features":[50]},{"name":"GUID_DEVCLASS_SECURITYACCELERATOR","features":[50]},{"name":"GUID_DEVCLASS_SENSOR","features":[50]},{"name":"GUID_DEVCLASS_SIDESHOW","features":[50]},{"name":"GUID_DEVCLASS_SMARTCARDREADER","features":[50]},{"name":"GUID_DEVCLASS_SMRDISK","features":[50]},{"name":"GUID_DEVCLASS_SMRVOLUME","features":[50]},{"name":"GUID_DEVCLASS_SOFTWARECOMPONENT","features":[50]},{"name":"GUID_DEVCLASS_SOUND","features":[50]},{"name":"GUID_DEVCLASS_SYSTEM","features":[50]},{"name":"GUID_DEVCLASS_TAPEDRIVE","features":[50]},{"name":"GUID_DEVCLASS_UCM","features":[50]},{"name":"GUID_DEVCLASS_UNKNOWN","features":[50]},{"name":"GUID_DEVCLASS_USB","features":[50]},{"name":"GUID_DEVCLASS_VOLUME","features":[50]},{"name":"GUID_DEVCLASS_VOLUMESNAPSHOT","features":[50]},{"name":"GUID_DEVCLASS_WCEUSBS","features":[50]},{"name":"GUID_DEVCLASS_WPD","features":[50]},{"name":"GUID_DEVICE_INTERFACE_ARRIVAL","features":[50]},{"name":"GUID_DEVICE_INTERFACE_REMOVAL","features":[50]},{"name":"GUID_DEVICE_RESET_INTERFACE_STANDARD","features":[50]},{"name":"GUID_DMA_CACHE_COHERENCY_INTERFACE","features":[50]},{"name":"GUID_HWPROFILE_CHANGE_CANCELLED","features":[50]},{"name":"GUID_HWPROFILE_CHANGE_COMPLETE","features":[50]},{"name":"GUID_HWPROFILE_QUERY_CHANGE","features":[50]},{"name":"GUID_INT_ROUTE_INTERFACE_STANDARD","features":[50]},{"name":"GUID_IOMMU_BUS_INTERFACE","features":[50]},{"name":"GUID_KERNEL_SOFT_RESTART_CANCEL","features":[50]},{"name":"GUID_KERNEL_SOFT_RESTART_FINALIZE","features":[50]},{"name":"GUID_KERNEL_SOFT_RESTART_PREPARE","features":[50]},{"name":"GUID_LEGACY_DEVICE_DETECTION_STANDARD","features":[50]},{"name":"GUID_MF_ENUMERATION_INTERFACE","features":[50]},{"name":"GUID_MSIX_TABLE_CONFIG_INTERFACE","features":[50]},{"name":"GUID_NPEM_CONTROL_INTERFACE","features":[50]},{"name":"GUID_PARTITION_UNIT_INTERFACE_STANDARD","features":[50]},{"name":"GUID_PCC_INTERFACE_INTERNAL","features":[50]},{"name":"GUID_PCC_INTERFACE_STANDARD","features":[50]},{"name":"GUID_PCI_ATS_INTERFACE","features":[50]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD","features":[50]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD2","features":[50]},{"name":"GUID_PCI_DEVICE_PRESENT_INTERFACE","features":[50]},{"name":"GUID_PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[50]},{"name":"GUID_PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[50]},{"name":"GUID_PCI_FPGA_CONTROL_INTERFACE","features":[50]},{"name":"GUID_PCI_PTM_CONTROL_INTERFACE","features":[50]},{"name":"GUID_PCI_SECURITY_INTERFACE","features":[50]},{"name":"GUID_PCI_VIRTUALIZATION_INTERFACE","features":[50]},{"name":"GUID_PCMCIA_BUS_INTERFACE_STANDARD","features":[50]},{"name":"GUID_PNP_CUSTOM_NOTIFICATION","features":[50]},{"name":"GUID_PNP_EXTENDED_ADDRESS_INTERFACE","features":[50]},{"name":"GUID_PNP_LOCATION_INTERFACE","features":[50]},{"name":"GUID_PNP_POWER_NOTIFICATION","features":[50]},{"name":"GUID_PNP_POWER_SETTING_CHANGE","features":[50]},{"name":"GUID_POWER_DEVICE_ENABLE","features":[50]},{"name":"GUID_POWER_DEVICE_TIMEOUTS","features":[50]},{"name":"GUID_POWER_DEVICE_WAKE_ENABLE","features":[50]},{"name":"GUID_PROCESSOR_PCC_INTERFACE_STANDARD","features":[50]},{"name":"GUID_QUERY_CRASHDUMP_FUNCTIONS","features":[50]},{"name":"GUID_RECOVERY_NVMED_PREPARE_SHUTDOWN","features":[50]},{"name":"GUID_RECOVERY_PCI_PREPARE_SHUTDOWN","features":[50]},{"name":"GUID_REENUMERATE_SELF_INTERFACE_STANDARD","features":[50]},{"name":"GUID_SCM_BUS_INTERFACE","features":[50]},{"name":"GUID_SCM_BUS_LD_INTERFACE","features":[50]},{"name":"GUID_SCM_BUS_NVD_INTERFACE","features":[50]},{"name":"GUID_SCM_PHYSICAL_NVDIMM_INTERFACE","features":[50]},{"name":"GUID_SDEV_IDENTIFIER_INTERFACE","features":[50]},{"name":"GUID_SECURE_DRIVER_INTERFACE","features":[50]},{"name":"GUID_TARGET_DEVICE_QUERY_REMOVE","features":[50]},{"name":"GUID_TARGET_DEVICE_REMOVE_CANCELLED","features":[50]},{"name":"GUID_TARGET_DEVICE_REMOVE_COMPLETE","features":[50]},{"name":"GUID_TARGET_DEVICE_TRANSPORT_RELATIONS_CHANGED","features":[50]},{"name":"GUID_THERMAL_COOLING_INTERFACE","features":[50]},{"name":"GUID_TRANSLATOR_INTERFACE_STANDARD","features":[50]},{"name":"GUID_WUDF_DEVICE_HOST_PROBLEM","features":[50]},{"name":"HCMNOTIFICATION","features":[50]},{"name":"HDEVINFO","features":[50]},{"name":"HWPROFILEINFO_A","features":[50]},{"name":"HWPROFILEINFO_W","features":[50]},{"name":"IDD_DYNAWIZ_ANALYZEDEV_PAGE","features":[50]},{"name":"IDD_DYNAWIZ_ANALYZE_NEXTPAGE","features":[50]},{"name":"IDD_DYNAWIZ_ANALYZE_PREVPAGE","features":[50]},{"name":"IDD_DYNAWIZ_FIRSTPAGE","features":[50]},{"name":"IDD_DYNAWIZ_INSTALLDETECTEDDEVS_PAGE","features":[50]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NEXTPAGE","features":[50]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NODEVS","features":[50]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_PREVPAGE","features":[50]},{"name":"IDD_DYNAWIZ_SELECTCLASS_PAGE","features":[50]},{"name":"IDD_DYNAWIZ_SELECTDEV_PAGE","features":[50]},{"name":"IDD_DYNAWIZ_SELECT_NEXTPAGE","features":[50]},{"name":"IDD_DYNAWIZ_SELECT_PREVPAGE","features":[50]},{"name":"IDF_CHECKFIRST","features":[50]},{"name":"IDF_NOBEEP","features":[50]},{"name":"IDF_NOBROWSE","features":[50]},{"name":"IDF_NOCOMPRESSED","features":[50]},{"name":"IDF_NODETAILS","features":[50]},{"name":"IDF_NOFOREGROUND","features":[50]},{"name":"IDF_NOREMOVABLEMEDIAPROMPT","features":[50]},{"name":"IDF_NOSKIP","features":[50]},{"name":"IDF_OEMDISK","features":[50]},{"name":"IDF_USEDISKNAMEASPROMPT","features":[50]},{"name":"IDF_WARNIFSKIP","features":[50]},{"name":"IDI_CLASSICON_OVERLAYFIRST","features":[50]},{"name":"IDI_CLASSICON_OVERLAYLAST","features":[50]},{"name":"IDI_CONFLICT","features":[50]},{"name":"IDI_DISABLED_OVL","features":[50]},{"name":"IDI_FORCED_OVL","features":[50]},{"name":"IDI_PROBLEM_OVL","features":[50]},{"name":"IDI_RESOURCE","features":[50]},{"name":"IDI_RESOURCEFIRST","features":[50]},{"name":"IDI_RESOURCELAST","features":[50]},{"name":"IDI_RESOURCEOVERLAYFIRST","features":[50]},{"name":"IDI_RESOURCEOVERLAYLAST","features":[50]},{"name":"INFCONTEXT","features":[50]},{"name":"INFCONTEXT","features":[50]},{"name":"INFINFO_DEFAULT_SEARCH","features":[50]},{"name":"INFINFO_INF_NAME_IS_ABSOLUTE","features":[50]},{"name":"INFINFO_INF_PATH_LIST_SEARCH","features":[50]},{"name":"INFINFO_INF_SPEC_IS_HINF","features":[50]},{"name":"INFINFO_REVERSE_DEFAULT_SEARCH","features":[50]},{"name":"INFSTR_BUS_ALL","features":[50]},{"name":"INFSTR_BUS_EISA","features":[50]},{"name":"INFSTR_BUS_ISA","features":[50]},{"name":"INFSTR_BUS_MCA","features":[50]},{"name":"INFSTR_CFGPRI_DESIRED","features":[50]},{"name":"INFSTR_CFGPRI_DISABLED","features":[50]},{"name":"INFSTR_CFGPRI_FORCECONFIG","features":[50]},{"name":"INFSTR_CFGPRI_HARDRECONFIG","features":[50]},{"name":"INFSTR_CFGPRI_HARDWIRED","features":[50]},{"name":"INFSTR_CFGPRI_NORMAL","features":[50]},{"name":"INFSTR_CFGPRI_POWEROFF","features":[50]},{"name":"INFSTR_CFGPRI_REBOOT","features":[50]},{"name":"INFSTR_CFGPRI_RESTART","features":[50]},{"name":"INFSTR_CFGPRI_SUBOPTIMAL","features":[50]},{"name":"INFSTR_CFGTYPE_BASIC","features":[50]},{"name":"INFSTR_CFGTYPE_FORCED","features":[50]},{"name":"INFSTR_CFGTYPE_OVERRIDE","features":[50]},{"name":"INFSTR_CLASS_SAFEEXCL","features":[50]},{"name":"INFSTR_CONTROLFLAGS_SECTION","features":[50]},{"name":"INFSTR_DRIVERSELECT_FUNCTIONS","features":[50]},{"name":"INFSTR_DRIVERSELECT_SECTION","features":[50]},{"name":"INFSTR_DRIVERVERSION_SECTION","features":[50]},{"name":"INFSTR_KEY_ACTION","features":[50]},{"name":"INFSTR_KEY_ALWAYSEXCLUDEFROMSELECT","features":[50]},{"name":"INFSTR_KEY_BUFFER_SIZE","features":[50]},{"name":"INFSTR_KEY_CATALOGFILE","features":[50]},{"name":"INFSTR_KEY_CHANNEL_ACCESS","features":[50]},{"name":"INFSTR_KEY_CHANNEL_ENABLED","features":[50]},{"name":"INFSTR_KEY_CHANNEL_ISOLATION","features":[50]},{"name":"INFSTR_KEY_CHANNEL_VALUE","features":[50]},{"name":"INFSTR_KEY_CLASS","features":[50]},{"name":"INFSTR_KEY_CLASSGUID","features":[50]},{"name":"INFSTR_KEY_CLOCK_TYPE","features":[50]},{"name":"INFSTR_KEY_CONFIGPRIORITY","features":[50]},{"name":"INFSTR_KEY_COPYFILESONLY","features":[50]},{"name":"INFSTR_KEY_DATA_ITEM","features":[50]},{"name":"INFSTR_KEY_DELAYEDAUTOSTART","features":[50]},{"name":"INFSTR_KEY_DEPENDENCIES","features":[50]},{"name":"INFSTR_KEY_DESCRIPTION","features":[50]},{"name":"INFSTR_KEY_DETECTLIST","features":[50]},{"name":"INFSTR_KEY_DETPARAMS","features":[50]},{"name":"INFSTR_KEY_DISABLE_REALTIME_PERSISTENCE","features":[50]},{"name":"INFSTR_KEY_DISPLAYNAME","features":[50]},{"name":"INFSTR_KEY_DMA","features":[50]},{"name":"INFSTR_KEY_DMACONFIG","features":[50]},{"name":"INFSTR_KEY_DRIVERSET","features":[50]},{"name":"INFSTR_KEY_ENABLED","features":[50]},{"name":"INFSTR_KEY_ENABLE_FLAGS","features":[50]},{"name":"INFSTR_KEY_ENABLE_LEVEL","features":[50]},{"name":"INFSTR_KEY_ENABLE_PROPERTY","features":[50]},{"name":"INFSTR_KEY_ERRORCONTROL","features":[50]},{"name":"INFSTR_KEY_EXCLUDEFROMSELECT","features":[50]},{"name":"INFSTR_KEY_EXCLUDERES","features":[50]},{"name":"INFSTR_KEY_EXTENSIONID","features":[50]},{"name":"INFSTR_KEY_FAILURE_ACTION","features":[50]},{"name":"INFSTR_KEY_FILE_MAX","features":[50]},{"name":"INFSTR_KEY_FILE_NAME","features":[50]},{"name":"INFSTR_KEY_FLUSH_TIMER","features":[50]},{"name":"INFSTR_KEY_FROMINET","features":[50]},{"name":"INFSTR_KEY_HARDWARE_CLASS","features":[50]},{"name":"INFSTR_KEY_HARDWARE_CLASSGUID","features":[50]},{"name":"INFSTR_KEY_INTERACTIVEINSTALL","features":[50]},{"name":"INFSTR_KEY_IO","features":[50]},{"name":"INFSTR_KEY_IOCONFIG","features":[50]},{"name":"INFSTR_KEY_IRQ","features":[50]},{"name":"INFSTR_KEY_IRQCONFIG","features":[50]},{"name":"INFSTR_KEY_LOADORDERGROUP","features":[50]},{"name":"INFSTR_KEY_LOGGING_AUTOBACKUP","features":[50]},{"name":"INFSTR_KEY_LOGGING_MAXSIZE","features":[50]},{"name":"INFSTR_KEY_LOGGING_RETENTION","features":[50]},{"name":"INFSTR_KEY_LOG_FILE_MODE","features":[50]},{"name":"INFSTR_KEY_MATCH_ALL_KEYWORD","features":[50]},{"name":"INFSTR_KEY_MATCH_ANY_KEYWORD","features":[50]},{"name":"INFSTR_KEY_MAXIMUM_BUFFERS","features":[50]},{"name":"INFSTR_KEY_MAX_FILE_SIZE","features":[50]},{"name":"INFSTR_KEY_MEM","features":[50]},{"name":"INFSTR_KEY_MEMCONFIG","features":[50]},{"name":"INFSTR_KEY_MEMLARGECONFIG","features":[50]},{"name":"INFSTR_KEY_MESSAGE_FILE","features":[50]},{"name":"INFSTR_KEY_MFCARDCONFIG","features":[50]},{"name":"INFSTR_KEY_MINIMUM_BUFFERS","features":[50]},{"name":"INFSTR_KEY_NAME","features":[50]},{"name":"INFSTR_KEY_NON_CRASH_FAILURES","features":[50]},{"name":"INFSTR_KEY_NOSETUPINF","features":[50]},{"name":"INFSTR_KEY_PARAMETER_FILE","features":[50]},{"name":"INFSTR_KEY_PATH","features":[50]},{"name":"INFSTR_KEY_PCCARDCONFIG","features":[50]},{"name":"INFSTR_KEY_PNPLOCKDOWN","features":[50]},{"name":"INFSTR_KEY_PROVIDER","features":[50]},{"name":"INFSTR_KEY_PROVIDER_NAME","features":[50]},{"name":"INFSTR_KEY_REQUESTADDITIONALSOFTWARE","features":[50]},{"name":"INFSTR_KEY_REQUIREDPRIVILEGES","features":[50]},{"name":"INFSTR_KEY_RESET_PERIOD","features":[50]},{"name":"INFSTR_KEY_RESOURCE_FILE","features":[50]},{"name":"INFSTR_KEY_SECURITY","features":[50]},{"name":"INFSTR_KEY_SERVICEBINARY","features":[50]},{"name":"INFSTR_KEY_SERVICESIDTYPE","features":[50]},{"name":"INFSTR_KEY_SERVICETYPE","features":[50]},{"name":"INFSTR_KEY_SIGNATURE","features":[50]},{"name":"INFSTR_KEY_SKIPLIST","features":[50]},{"name":"INFSTR_KEY_START","features":[50]},{"name":"INFSTR_KEY_STARTNAME","features":[50]},{"name":"INFSTR_KEY_STARTTYPE","features":[50]},{"name":"INFSTR_KEY_SUB_TYPE","features":[50]},{"name":"INFSTR_KEY_TRIGGER_TYPE","features":[50]},{"name":"INFSTR_PLATFORM_NT","features":[50]},{"name":"INFSTR_PLATFORM_NTALPHA","features":[50]},{"name":"INFSTR_PLATFORM_NTAMD64","features":[50]},{"name":"INFSTR_PLATFORM_NTARM","features":[50]},{"name":"INFSTR_PLATFORM_NTARM64","features":[50]},{"name":"INFSTR_PLATFORM_NTAXP64","features":[50]},{"name":"INFSTR_PLATFORM_NTIA64","features":[50]},{"name":"INFSTR_PLATFORM_NTMIPS","features":[50]},{"name":"INFSTR_PLATFORM_NTPPC","features":[50]},{"name":"INFSTR_PLATFORM_NTX86","features":[50]},{"name":"INFSTR_PLATFORM_WIN","features":[50]},{"name":"INFSTR_REBOOT","features":[50]},{"name":"INFSTR_RESTART","features":[50]},{"name":"INFSTR_RISK_BIOSROMRD","features":[50]},{"name":"INFSTR_RISK_DELICATE","features":[50]},{"name":"INFSTR_RISK_IORD","features":[50]},{"name":"INFSTR_RISK_IOWR","features":[50]},{"name":"INFSTR_RISK_LOW","features":[50]},{"name":"INFSTR_RISK_MEMRD","features":[50]},{"name":"INFSTR_RISK_MEMWR","features":[50]},{"name":"INFSTR_RISK_NONE","features":[50]},{"name":"INFSTR_RISK_QUERYDRV","features":[50]},{"name":"INFSTR_RISK_SWINT","features":[50]},{"name":"INFSTR_RISK_UNRELIABLE","features":[50]},{"name":"INFSTR_RISK_VERYHIGH","features":[50]},{"name":"INFSTR_RISK_VERYLOW","features":[50]},{"name":"INFSTR_SECT_AUTOEXECBAT","features":[50]},{"name":"INFSTR_SECT_AVOIDCFGSYSDEV","features":[50]},{"name":"INFSTR_SECT_AVOIDENVDEV","features":[50]},{"name":"INFSTR_SECT_AVOIDINIDEV","features":[50]},{"name":"INFSTR_SECT_BADACPIBIOS","features":[50]},{"name":"INFSTR_SECT_BADDISKBIOS","features":[50]},{"name":"INFSTR_SECT_BADDSBIOS","features":[50]},{"name":"INFSTR_SECT_BADPMCALLBIOS","features":[50]},{"name":"INFSTR_SECT_BADPNPBIOS","features":[50]},{"name":"INFSTR_SECT_BADRMCALLBIOS","features":[50]},{"name":"INFSTR_SECT_BADROUTINGTABLEBIOS","features":[50]},{"name":"INFSTR_SECT_CFGSYS","features":[50]},{"name":"INFSTR_SECT_CLASS_INSTALL","features":[50]},{"name":"INFSTR_SECT_CLASS_INSTALL_32","features":[50]},{"name":"INFSTR_SECT_DEFAULT_INSTALL","features":[50]},{"name":"INFSTR_SECT_DEFAULT_UNINSTALL","features":[50]},{"name":"INFSTR_SECT_DETCLASSINFO","features":[50]},{"name":"INFSTR_SECT_DETMODULES","features":[50]},{"name":"INFSTR_SECT_DETOPTIONS","features":[50]},{"name":"INFSTR_SECT_DEVINFS","features":[50]},{"name":"INFSTR_SECT_DISPLAY_CLEANUP","features":[50]},{"name":"INFSTR_SECT_EXTENSIONCONTRACTS","features":[50]},{"name":"INFSTR_SECT_FORCEHWVERIFY","features":[50]},{"name":"INFSTR_SECT_GOODACPIBIOS","features":[50]},{"name":"INFSTR_SECT_HPOMNIBOOK","features":[50]},{"name":"INFSTR_SECT_INTERFACE_INSTALL_32","features":[50]},{"name":"INFSTR_SECT_MACHINEIDBIOS","features":[50]},{"name":"INFSTR_SECT_MANUALDEV","features":[50]},{"name":"INFSTR_SECT_MFG","features":[50]},{"name":"INFSTR_SECT_REGCFGSYSDEV","features":[50]},{"name":"INFSTR_SECT_REGENVDEV","features":[50]},{"name":"INFSTR_SECT_REGINIDEV","features":[50]},{"name":"INFSTR_SECT_SYSINI","features":[50]},{"name":"INFSTR_SECT_SYSINIDRV","features":[50]},{"name":"INFSTR_SECT_TARGETCOMPUTERS","features":[50]},{"name":"INFSTR_SECT_VERSION","features":[50]},{"name":"INFSTR_SECT_WININIRUN","features":[50]},{"name":"INFSTR_SOFTWAREVERSION_SECTION","features":[50]},{"name":"INFSTR_STRKEY_DRVDESC","features":[50]},{"name":"INFSTR_SUBKEY_COINSTALLERS","features":[50]},{"name":"INFSTR_SUBKEY_CTL","features":[50]},{"name":"INFSTR_SUBKEY_DET","features":[50]},{"name":"INFSTR_SUBKEY_EVENTS","features":[50]},{"name":"INFSTR_SUBKEY_FACTDEF","features":[50]},{"name":"INFSTR_SUBKEY_FILTERS","features":[50]},{"name":"INFSTR_SUBKEY_HW","features":[50]},{"name":"INFSTR_SUBKEY_INTERFACES","features":[50]},{"name":"INFSTR_SUBKEY_LOGCONFIG","features":[50]},{"name":"INFSTR_SUBKEY_LOGCONFIGOVERRIDE","features":[50]},{"name":"INFSTR_SUBKEY_NORESOURCEDUPS","features":[50]},{"name":"INFSTR_SUBKEY_POSSIBLEDUPS","features":[50]},{"name":"INFSTR_SUBKEY_SERVICES","features":[50]},{"name":"INFSTR_SUBKEY_SOFTWARE","features":[50]},{"name":"INFSTR_SUBKEY_WMI","features":[50]},{"name":"INF_STYLE","features":[50]},{"name":"INF_STYLE_CACHE_DISABLE","features":[50]},{"name":"INF_STYLE_CACHE_ENABLE","features":[50]},{"name":"INF_STYLE_CACHE_IGNORE","features":[50]},{"name":"INF_STYLE_NONE","features":[50]},{"name":"INF_STYLE_OLDNT","features":[50]},{"name":"INF_STYLE_WIN4","features":[50]},{"name":"INSTALLFLAG_BITS","features":[50]},{"name":"INSTALLFLAG_FORCE","features":[50]},{"name":"INSTALLFLAG_NONINTERACTIVE","features":[50]},{"name":"INSTALLFLAG_READONLY","features":[50]},{"name":"IOA_Local","features":[50]},{"name":"IOD_DESFLAGS","features":[50]},{"name":"IO_ALIAS_10_BIT_DECODE","features":[50]},{"name":"IO_ALIAS_12_BIT_DECODE","features":[50]},{"name":"IO_ALIAS_16_BIT_DECODE","features":[50]},{"name":"IO_ALIAS_POSITIVE_DECODE","features":[50]},{"name":"IO_DES","features":[50]},{"name":"IO_RANGE","features":[50]},{"name":"IO_RESOURCE","features":[50]},{"name":"IRQD_FLAGS","features":[50]},{"name":"IRQ_DES_32","features":[50]},{"name":"IRQ_DES_64","features":[50]},{"name":"IRQ_RANGE","features":[50]},{"name":"IRQ_RESOURCE_32","features":[50]},{"name":"IRQ_RESOURCE_64","features":[50]},{"name":"InstallHinfSectionA","features":[50,3]},{"name":"InstallHinfSectionW","features":[50,3]},{"name":"LCPRI_BOOTCONFIG","features":[50]},{"name":"LCPRI_DESIRED","features":[50]},{"name":"LCPRI_DISABLED","features":[50]},{"name":"LCPRI_FORCECONFIG","features":[50]},{"name":"LCPRI_HARDRECONFIG","features":[50]},{"name":"LCPRI_HARDWIRED","features":[50]},{"name":"LCPRI_IMPOSSIBLE","features":[50]},{"name":"LCPRI_LASTBESTCONFIG","features":[50]},{"name":"LCPRI_LASTSOFTCONFIG","features":[50]},{"name":"LCPRI_NORMAL","features":[50]},{"name":"LCPRI_POWEROFF","features":[50]},{"name":"LCPRI_REBOOT","features":[50]},{"name":"LCPRI_RESTART","features":[50]},{"name":"LCPRI_SUBOPTIMAL","features":[50]},{"name":"LINE_LEN","features":[50]},{"name":"LOG_CONF_BITS","features":[50]},{"name":"LogSevError","features":[50]},{"name":"LogSevFatalError","features":[50]},{"name":"LogSevInformation","features":[50]},{"name":"LogSevMaximum","features":[50]},{"name":"LogSevWarning","features":[50]},{"name":"MAX_CLASS_NAME_LEN","features":[50]},{"name":"MAX_CONFIG_VALUE","features":[50]},{"name":"MAX_DEVICE_ID_LEN","features":[50]},{"name":"MAX_DEVNODE_ID_LEN","features":[50]},{"name":"MAX_DMA_CHANNELS","features":[50]},{"name":"MAX_GUID_STRING_LEN","features":[50]},{"name":"MAX_IDD_DYNAWIZ_RESOURCE_ID","features":[50]},{"name":"MAX_INFSTR_STRKEY_LEN","features":[50]},{"name":"MAX_INF_FLAG","features":[50]},{"name":"MAX_INF_SECTION_NAME_LENGTH","features":[50]},{"name":"MAX_INF_STRING_LENGTH","features":[50]},{"name":"MAX_INSTALLWIZARD_DYNAPAGES","features":[50]},{"name":"MAX_INSTANCE_VALUE","features":[50]},{"name":"MAX_INSTRUCTION_LEN","features":[50]},{"name":"MAX_IO_PORTS","features":[50]},{"name":"MAX_IRQS","features":[50]},{"name":"MAX_KEY_LEN","features":[50]},{"name":"MAX_LABEL_LEN","features":[50]},{"name":"MAX_LCPRI","features":[50]},{"name":"MAX_MEM_REGISTERS","features":[50]},{"name":"MAX_PRIORITYSTR_LEN","features":[50]},{"name":"MAX_PROFILE_LEN","features":[50]},{"name":"MAX_SERVICE_NAME_LEN","features":[50]},{"name":"MAX_SUBTITLE_LEN","features":[50]},{"name":"MAX_TITLE_LEN","features":[50]},{"name":"MD_FLAGS","features":[50]},{"name":"MEM_DES","features":[50]},{"name":"MEM_LARGE_DES","features":[50]},{"name":"MEM_LARGE_RANGE","features":[50]},{"name":"MEM_LARGE_RESOURCE","features":[50]},{"name":"MEM_RANGE","features":[50]},{"name":"MEM_RESOURCE","features":[50]},{"name":"MFCARD_DES","features":[50]},{"name":"MFCARD_RESOURCE","features":[50]},{"name":"MIN_IDD_DYNAWIZ_RESOURCE_ID","features":[50]},{"name":"NDW_INSTALLFLAG_CI_PICKED_OEM","features":[50]},{"name":"NDW_INSTALLFLAG_DIDFACTDEFS","features":[50]},{"name":"NDW_INSTALLFLAG_EXPRESSINTRO","features":[50]},{"name":"NDW_INSTALLFLAG_HARDWAREALLREADYIN","features":[50]},{"name":"NDW_INSTALLFLAG_INSTALLSPECIFIC","features":[50]},{"name":"NDW_INSTALLFLAG_KNOWNCLASS","features":[50]},{"name":"NDW_INSTALLFLAG_NEEDSHUTDOWN","features":[50]},{"name":"NDW_INSTALLFLAG_NODETECTEDDEVS","features":[50]},{"name":"NDW_INSTALLFLAG_PCMCIADEVICE","features":[50]},{"name":"NDW_INSTALLFLAG_PCMCIAMODE","features":[50]},{"name":"NDW_INSTALLFLAG_SKIPCLASSLIST","features":[50]},{"name":"NDW_INSTALLFLAG_SKIPISDEVINSTALLED","features":[50]},{"name":"NDW_INSTALLFLAG_USERCANCEL","features":[50]},{"name":"NUM_CM_PROB","features":[50]},{"name":"NUM_CM_PROB_V1","features":[50]},{"name":"NUM_CM_PROB_V2","features":[50]},{"name":"NUM_CM_PROB_V3","features":[50]},{"name":"NUM_CM_PROB_V4","features":[50]},{"name":"NUM_CM_PROB_V5","features":[50]},{"name":"NUM_CM_PROB_V6","features":[50]},{"name":"NUM_CM_PROB_V7","features":[50]},{"name":"NUM_CM_PROB_V8","features":[50]},{"name":"NUM_CM_PROB_V9","features":[50]},{"name":"NUM_CR_RESULTS","features":[50]},{"name":"NUM_LOG_CONF","features":[50]},{"name":"OEM_SOURCE_MEDIA_TYPE","features":[50]},{"name":"OVERRIDE_LOG_CONF","features":[50]},{"name":"PCCARD_DES","features":[50]},{"name":"PCCARD_RESOURCE","features":[50]},{"name":"PCD_FLAGS","features":[50]},{"name":"PCD_MAX_IO","features":[50]},{"name":"PCD_MAX_MEMORY","features":[50]},{"name":"PCM_NOTIFY_CALLBACK","features":[50]},{"name":"PDETECT_PROGRESS_NOTIFY","features":[50,3]},{"name":"PMF_FLAGS","features":[50]},{"name":"PNP_VETO_TYPE","features":[50]},{"name":"PNP_VetoAlreadyRemoved","features":[50]},{"name":"PNP_VetoDevice","features":[50]},{"name":"PNP_VetoDriver","features":[50]},{"name":"PNP_VetoIllegalDeviceRequest","features":[50]},{"name":"PNP_VetoInsufficientPower","features":[50]},{"name":"PNP_VetoInsufficientRights","features":[50]},{"name":"PNP_VetoLegacyDevice","features":[50]},{"name":"PNP_VetoLegacyDriver","features":[50]},{"name":"PNP_VetoNonDisableable","features":[50]},{"name":"PNP_VetoOutstandingOpen","features":[50]},{"name":"PNP_VetoPendingClose","features":[50]},{"name":"PNP_VetoTypeUnknown","features":[50]},{"name":"PNP_VetoWindowsApp","features":[50]},{"name":"PNP_VetoWindowsService","features":[50]},{"name":"PRIORITY_BIT","features":[50]},{"name":"PRIORITY_EQUAL_FIRST","features":[50]},{"name":"PRIORITY_EQUAL_LAST","features":[50]},{"name":"PSP_DETSIG_CMPPROC","features":[50]},{"name":"PSP_FILE_CALLBACK_A","features":[50]},{"name":"PSP_FILE_CALLBACK_W","features":[50]},{"name":"ROLLBACK_BITS","features":[50]},{"name":"ROLLBACK_FLAG_NO_UI","features":[50]},{"name":"RegDisposition_Bits","features":[50]},{"name":"RegDisposition_OpenAlways","features":[50]},{"name":"RegDisposition_OpenExisting","features":[50]},{"name":"ResType_All","features":[50]},{"name":"ResType_BusNumber","features":[50]},{"name":"ResType_ClassSpecific","features":[50]},{"name":"ResType_Connection","features":[50]},{"name":"ResType_DMA","features":[50]},{"name":"ResType_DevicePrivate","features":[50]},{"name":"ResType_DoNotUse","features":[50]},{"name":"ResType_IO","features":[50]},{"name":"ResType_IRQ","features":[50]},{"name":"ResType_Ignored_Bit","features":[50]},{"name":"ResType_MAX","features":[50]},{"name":"ResType_Mem","features":[50]},{"name":"ResType_MemLarge","features":[50]},{"name":"ResType_MfCardConfig","features":[50]},{"name":"ResType_None","features":[50]},{"name":"ResType_PcCardConfig","features":[50]},{"name":"ResType_Reserved","features":[50]},{"name":"SCWMI_CLOBBER_SECURITY","features":[50]},{"name":"SETDIRID_NOT_FULL_PATH","features":[50]},{"name":"SETUPSCANFILEQUEUE_FLAGS","features":[50]},{"name":"SETUP_DI_DEVICE_CONFIGURATION_FLAGS","features":[50]},{"name":"SETUP_DI_DEVICE_CREATION_FLAGS","features":[50]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS","features":[50]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS_EX","features":[50]},{"name":"SETUP_DI_DRIVER_INSTALL_FLAGS","features":[50]},{"name":"SETUP_DI_DRIVER_TYPE","features":[50]},{"name":"SETUP_DI_GET_CLASS_DEVS_FLAGS","features":[50]},{"name":"SETUP_DI_PROPERTY_CHANGE_SCOPE","features":[50]},{"name":"SETUP_DI_REGISTRY_PROPERTY","features":[50]},{"name":"SETUP_DI_REMOVE_DEVICE_SCOPE","features":[50]},{"name":"SETUP_DI_STATE_CHANGE","features":[50]},{"name":"SETUP_FILE_OPERATION","features":[50]},{"name":"SIGNERSCORE_AUTHENTICODE","features":[50]},{"name":"SIGNERSCORE_INBOX","features":[50]},{"name":"SIGNERSCORE_LOGO_PREMIUM","features":[50]},{"name":"SIGNERSCORE_LOGO_STANDARD","features":[50]},{"name":"SIGNERSCORE_MASK","features":[50]},{"name":"SIGNERSCORE_SIGNED_MASK","features":[50]},{"name":"SIGNERSCORE_UNCLASSIFIED","features":[50]},{"name":"SIGNERSCORE_UNKNOWN","features":[50]},{"name":"SIGNERSCORE_UNSIGNED","features":[50]},{"name":"SIGNERSCORE_W9X_SUSPECT","features":[50]},{"name":"SIGNERSCORE_WHQL","features":[50]},{"name":"SOURCE_MEDIA_A","features":[50]},{"name":"SOURCE_MEDIA_A","features":[50]},{"name":"SOURCE_MEDIA_W","features":[50]},{"name":"SOURCE_MEDIA_W","features":[50]},{"name":"SPCRP_CHARACTERISTICS","features":[50]},{"name":"SPCRP_DEVTYPE","features":[50]},{"name":"SPCRP_EXCLUSIVE","features":[50]},{"name":"SPCRP_LOWERFILTERS","features":[50]},{"name":"SPCRP_MAXIMUM_PROPERTY","features":[50]},{"name":"SPCRP_SECURITY","features":[50]},{"name":"SPCRP_SECURITY_SDS","features":[50]},{"name":"SPCRP_UPPERFILTERS","features":[50]},{"name":"SPDIT_CLASSDRIVER","features":[50]},{"name":"SPDIT_COMPATDRIVER","features":[50]},{"name":"SPDIT_NODRIVER","features":[50]},{"name":"SPDRP_ADDRESS","features":[50]},{"name":"SPDRP_BASE_CONTAINERID","features":[50]},{"name":"SPDRP_BUSNUMBER","features":[50]},{"name":"SPDRP_BUSTYPEGUID","features":[50]},{"name":"SPDRP_CAPABILITIES","features":[50]},{"name":"SPDRP_CHARACTERISTICS","features":[50]},{"name":"SPDRP_CLASS","features":[50]},{"name":"SPDRP_CLASSGUID","features":[50]},{"name":"SPDRP_COMPATIBLEIDS","features":[50]},{"name":"SPDRP_CONFIGFLAGS","features":[50]},{"name":"SPDRP_DEVICEDESC","features":[50]},{"name":"SPDRP_DEVICE_POWER_DATA","features":[50]},{"name":"SPDRP_DEVTYPE","features":[50]},{"name":"SPDRP_DRIVER","features":[50]},{"name":"SPDRP_ENUMERATOR_NAME","features":[50]},{"name":"SPDRP_EXCLUSIVE","features":[50]},{"name":"SPDRP_FRIENDLYNAME","features":[50]},{"name":"SPDRP_HARDWAREID","features":[50]},{"name":"SPDRP_INSTALL_STATE","features":[50]},{"name":"SPDRP_LEGACYBUSTYPE","features":[50]},{"name":"SPDRP_LOCATION_INFORMATION","features":[50]},{"name":"SPDRP_LOCATION_PATHS","features":[50]},{"name":"SPDRP_LOWERFILTERS","features":[50]},{"name":"SPDRP_MAXIMUM_PROPERTY","features":[50]},{"name":"SPDRP_MFG","features":[50]},{"name":"SPDRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[50]},{"name":"SPDRP_REMOVAL_POLICY","features":[50]},{"name":"SPDRP_REMOVAL_POLICY_HW_DEFAULT","features":[50]},{"name":"SPDRP_REMOVAL_POLICY_OVERRIDE","features":[50]},{"name":"SPDRP_SECURITY","features":[50]},{"name":"SPDRP_SECURITY_SDS","features":[50]},{"name":"SPDRP_SERVICE","features":[50]},{"name":"SPDRP_UI_NUMBER","features":[50]},{"name":"SPDRP_UI_NUMBER_DESC_FORMAT","features":[50]},{"name":"SPDRP_UNUSED0","features":[50]},{"name":"SPDRP_UNUSED1","features":[50]},{"name":"SPDRP_UNUSED2","features":[50]},{"name":"SPDRP_UPPERFILTERS","features":[50]},{"name":"SPDSL_DISALLOW_NEGATIVE_ADJUST","features":[50]},{"name":"SPDSL_IGNORE_DISK","features":[50]},{"name":"SPFILELOG_FORCENEW","features":[50]},{"name":"SPFILELOG_OEMFILE","features":[50]},{"name":"SPFILELOG_QUERYONLY","features":[50]},{"name":"SPFILELOG_SYSTEMLOG","features":[50]},{"name":"SPFILENOTIFY_BACKUPERROR","features":[50]},{"name":"SPFILENOTIFY_CABINETINFO","features":[50]},{"name":"SPFILENOTIFY_COPYERROR","features":[50]},{"name":"SPFILENOTIFY_DELETEERROR","features":[50]},{"name":"SPFILENOTIFY_ENDBACKUP","features":[50]},{"name":"SPFILENOTIFY_ENDCOPY","features":[50]},{"name":"SPFILENOTIFY_ENDDELETE","features":[50]},{"name":"SPFILENOTIFY_ENDQUEUE","features":[50]},{"name":"SPFILENOTIFY_ENDREGISTRATION","features":[50]},{"name":"SPFILENOTIFY_ENDRENAME","features":[50]},{"name":"SPFILENOTIFY_ENDSUBQUEUE","features":[50]},{"name":"SPFILENOTIFY_FILEEXTRACTED","features":[50]},{"name":"SPFILENOTIFY_FILEINCABINET","features":[50]},{"name":"SPFILENOTIFY_FILEOPDELAYED","features":[50]},{"name":"SPFILENOTIFY_LANGMISMATCH","features":[50]},{"name":"SPFILENOTIFY_NEEDMEDIA","features":[50]},{"name":"SPFILENOTIFY_NEEDNEWCABINET","features":[50]},{"name":"SPFILENOTIFY_QUEUESCAN","features":[50]},{"name":"SPFILENOTIFY_QUEUESCAN_EX","features":[50]},{"name":"SPFILENOTIFY_QUEUESCAN_SIGNERINFO","features":[50]},{"name":"SPFILENOTIFY_RENAMEERROR","features":[50]},{"name":"SPFILENOTIFY_STARTBACKUP","features":[50]},{"name":"SPFILENOTIFY_STARTCOPY","features":[50]},{"name":"SPFILENOTIFY_STARTDELETE","features":[50]},{"name":"SPFILENOTIFY_STARTQUEUE","features":[50]},{"name":"SPFILENOTIFY_STARTREGISTRATION","features":[50]},{"name":"SPFILENOTIFY_STARTRENAME","features":[50]},{"name":"SPFILENOTIFY_STARTSUBQUEUE","features":[50]},{"name":"SPFILENOTIFY_TARGETEXISTS","features":[50]},{"name":"SPFILENOTIFY_TARGETNEWER","features":[50]},{"name":"SPFILEQ_FILE_IN_USE","features":[50]},{"name":"SPFILEQ_REBOOT_IN_PROGRESS","features":[50]},{"name":"SPFILEQ_REBOOT_RECOMMENDED","features":[50]},{"name":"SPID_ACTIVE","features":[50]},{"name":"SPID_DEFAULT","features":[50]},{"name":"SPID_REMOVED","features":[50]},{"name":"SPINST_ALL","features":[50]},{"name":"SPINST_BITREG","features":[50]},{"name":"SPINST_COPYINF","features":[50]},{"name":"SPINST_DEVICEINSTALL","features":[50]},{"name":"SPINST_FILES","features":[50]},{"name":"SPINST_INI2REG","features":[50]},{"name":"SPINST_INIFILES","features":[50]},{"name":"SPINST_LOGCONFIG","features":[50]},{"name":"SPINST_LOGCONFIGS_ARE_OVERRIDES","features":[50]},{"name":"SPINST_LOGCONFIG_IS_FORCED","features":[50]},{"name":"SPINST_PROFILEITEMS","features":[50]},{"name":"SPINST_PROPERTIES","features":[50]},{"name":"SPINST_REGISTERCALLBACKAWARE","features":[50]},{"name":"SPINST_REGISTRY","features":[50]},{"name":"SPINST_REGSVR","features":[50]},{"name":"SPINST_SINGLESECTION","features":[50]},{"name":"SPINST_UNREGSVR","features":[50]},{"name":"SPINT_ACTIVE","features":[50]},{"name":"SPINT_DEFAULT","features":[50]},{"name":"SPINT_REMOVED","features":[50]},{"name":"SPOST_MAX","features":[50]},{"name":"SPOST_NONE","features":[50]},{"name":"SPOST_PATH","features":[50]},{"name":"SPOST_URL","features":[50]},{"name":"SPPSR_ENUM_ADV_DEVICE_PROPERTIES","features":[50]},{"name":"SPPSR_ENUM_BASIC_DEVICE_PROPERTIES","features":[50]},{"name":"SPPSR_SELECT_DEVICE_RESOURCES","features":[50]},{"name":"SPQ_DELAYED_COPY","features":[50]},{"name":"SPQ_FLAG_ABORT_IF_UNSIGNED","features":[50]},{"name":"SPQ_FLAG_BACKUP_AWARE","features":[50]},{"name":"SPQ_FLAG_DO_SHUFFLEMOVE","features":[50]},{"name":"SPQ_FLAG_FILES_MODIFIED","features":[50]},{"name":"SPQ_FLAG_VALID","features":[50]},{"name":"SPQ_SCAN_ACTIVATE_DRP","features":[50]},{"name":"SPQ_SCAN_FILE_COMPARISON","features":[50]},{"name":"SPQ_SCAN_FILE_PRESENCE","features":[50]},{"name":"SPQ_SCAN_FILE_PRESENCE_WITHOUT_SOURCE","features":[50]},{"name":"SPQ_SCAN_FILE_VALIDITY","features":[50]},{"name":"SPQ_SCAN_INFORM_USER","features":[50]},{"name":"SPQ_SCAN_PRUNE_COPY_QUEUE","features":[50]},{"name":"SPQ_SCAN_PRUNE_DELREN","features":[50]},{"name":"SPQ_SCAN_USE_CALLBACK","features":[50]},{"name":"SPQ_SCAN_USE_CALLBACKEX","features":[50]},{"name":"SPQ_SCAN_USE_CALLBACK_SIGNERINFO","features":[50]},{"name":"SPRDI_FIND_DUPS","features":[50]},{"name":"SPREG_DLLINSTALL","features":[50]},{"name":"SPREG_GETPROCADDR","features":[50]},{"name":"SPREG_LOADLIBRARY","features":[50]},{"name":"SPREG_REGSVR","features":[50]},{"name":"SPREG_SUCCESS","features":[50]},{"name":"SPREG_TIMEOUT","features":[50]},{"name":"SPREG_UNKNOWN","features":[50]},{"name":"SPSVCINST_ASSOCSERVICE","features":[50]},{"name":"SPSVCINST_CLOBBER_SECURITY","features":[50]},{"name":"SPSVCINST_DELETEEVENTLOGENTRY","features":[50]},{"name":"SPSVCINST_FLAGS","features":[50]},{"name":"SPSVCINST_NOCLOBBER_DELAYEDAUTOSTART","features":[50]},{"name":"SPSVCINST_NOCLOBBER_DEPENDENCIES","features":[50]},{"name":"SPSVCINST_NOCLOBBER_DESCRIPTION","features":[50]},{"name":"SPSVCINST_NOCLOBBER_DISPLAYNAME","features":[50]},{"name":"SPSVCINST_NOCLOBBER_ERRORCONTROL","features":[50]},{"name":"SPSVCINST_NOCLOBBER_FAILUREACTIONS","features":[50]},{"name":"SPSVCINST_NOCLOBBER_LOADORDERGROUP","features":[50]},{"name":"SPSVCINST_NOCLOBBER_REQUIREDPRIVILEGES","features":[50]},{"name":"SPSVCINST_NOCLOBBER_SERVICESIDTYPE","features":[50]},{"name":"SPSVCINST_NOCLOBBER_STARTTYPE","features":[50]},{"name":"SPSVCINST_NOCLOBBER_TRIGGERS","features":[50]},{"name":"SPSVCINST_STARTSERVICE","features":[50]},{"name":"SPSVCINST_STOPSERVICE","features":[50]},{"name":"SPSVCINST_TAGTOFRONT","features":[50]},{"name":"SPSVCINST_UNIQUE_NAME","features":[50]},{"name":"SPWPT_SELECTDEVICE","features":[50]},{"name":"SPWP_USE_DEVINFO_DATA","features":[50]},{"name":"SP_ALTPLATFORM_FLAGS_SUITE_MASK","features":[50]},{"name":"SP_ALTPLATFORM_FLAGS_VERSION_RANGE","features":[50]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[50,33]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[50,33]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[50,33,35]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[50,33,35]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[50]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[50]},{"name":"SP_BACKUP_BACKUPPASS","features":[50]},{"name":"SP_BACKUP_BOOTFILE","features":[50]},{"name":"SP_BACKUP_DEMANDPASS","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[50]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[50]},{"name":"SP_BACKUP_SPECIAL","features":[50]},{"name":"SP_CLASSIMAGELIST_DATA","features":[50,42]},{"name":"SP_CLASSIMAGELIST_DATA","features":[50,42]},{"name":"SP_CLASSINSTALL_HEADER","features":[50]},{"name":"SP_CLASSINSTALL_HEADER","features":[50]},{"name":"SP_COPY_ALREADYDECOMP","features":[50]},{"name":"SP_COPY_DELETESOURCE","features":[50]},{"name":"SP_COPY_FORCE_IN_USE","features":[50]},{"name":"SP_COPY_FORCE_NEWER","features":[50]},{"name":"SP_COPY_FORCE_NOOVERWRITE","features":[50]},{"name":"SP_COPY_HARDLINK","features":[50]},{"name":"SP_COPY_INBOX_INF","features":[50]},{"name":"SP_COPY_IN_USE_NEEDS_REBOOT","features":[50]},{"name":"SP_COPY_IN_USE_TRY_RENAME","features":[50]},{"name":"SP_COPY_LANGUAGEAWARE","features":[50]},{"name":"SP_COPY_NEWER","features":[50]},{"name":"SP_COPY_NEWER_ONLY","features":[50]},{"name":"SP_COPY_NEWER_OR_SAME","features":[50]},{"name":"SP_COPY_NOBROWSE","features":[50]},{"name":"SP_COPY_NODECOMP","features":[50]},{"name":"SP_COPY_NOOVERWRITE","features":[50]},{"name":"SP_COPY_NOPRUNE","features":[50]},{"name":"SP_COPY_NOSKIP","features":[50]},{"name":"SP_COPY_OEMINF_CATALOG_ONLY","features":[50]},{"name":"SP_COPY_OEM_F6_INF","features":[50]},{"name":"SP_COPY_PNPLOCKED","features":[50]},{"name":"SP_COPY_REPLACEONLY","features":[50]},{"name":"SP_COPY_REPLACE_BOOT_FILE","features":[50]},{"name":"SP_COPY_RESERVED","features":[50]},{"name":"SP_COPY_SOURCEPATH_ABSOLUTE","features":[50]},{"name":"SP_COPY_SOURCE_ABSOLUTE","features":[50]},{"name":"SP_COPY_STYLE","features":[50]},{"name":"SP_COPY_WARNIFSKIP","features":[50]},{"name":"SP_COPY_WINDOWS_SIGNED","features":[50]},{"name":"SP_DETECTDEVICE_PARAMS","features":[50,3]},{"name":"SP_DETECTDEVICE_PARAMS","features":[50,3]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[50]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[50]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[50]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[50]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[50]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[50]},{"name":"SP_DEVINFO_DATA","features":[50]},{"name":"SP_DEVINFO_DATA","features":[50]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[50,3]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[50,3]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[50,3]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[50,3]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[50,3]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[50,3]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[50,3]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[50,3]},{"name":"SP_DRVINFO_DATA_V1_A","features":[50]},{"name":"SP_DRVINFO_DATA_V1_A","features":[50]},{"name":"SP_DRVINFO_DATA_V1_W","features":[50]},{"name":"SP_DRVINFO_DATA_V1_W","features":[50]},{"name":"SP_DRVINFO_DATA_V2_A","features":[50,3]},{"name":"SP_DRVINFO_DATA_V2_A","features":[50,3]},{"name":"SP_DRVINFO_DATA_V2_W","features":[50,3]},{"name":"SP_DRVINFO_DATA_V2_W","features":[50,3]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[50,3]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[50,3]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[50,3]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[50,3]},{"name":"SP_DRVINSTALL_PARAMS","features":[50]},{"name":"SP_DRVINSTALL_PARAMS","features":[50]},{"name":"SP_ENABLECLASS_PARAMS","features":[50]},{"name":"SP_ENABLECLASS_PARAMS","features":[50]},{"name":"SP_FILE_COPY_PARAMS_A","features":[50]},{"name":"SP_FILE_COPY_PARAMS_A","features":[50]},{"name":"SP_FILE_COPY_PARAMS_W","features":[50]},{"name":"SP_FILE_COPY_PARAMS_W","features":[50]},{"name":"SP_FLAG_CABINETCONTINUATION","features":[50]},{"name":"SP_INF_INFORMATION","features":[50]},{"name":"SP_INF_INFORMATION","features":[50]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[50]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[50]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[50]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[50]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[50]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[50]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[50]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[50]},{"name":"SP_INSTALLWIZARD_DATA","features":[50,3,42]},{"name":"SP_INSTALLWIZARD_DATA","features":[50,3,42]},{"name":"SP_MAX_MACHINENAME_LENGTH","features":[50]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[50,3,42]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[50,3,42]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[50]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[50]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[50]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[50]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_A","features":[50]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[50]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[50]},{"name":"SP_PROPCHANGE_PARAMS","features":[50]},{"name":"SP_PROPCHANGE_PARAMS","features":[50]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[50]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[50]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[50]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[50]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[50]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[50]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[50]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[50]},{"name":"SP_SELECTDEVICE_PARAMS_A","features":[50]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[50]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[50]},{"name":"SP_TROUBLESHOOTER_PARAMS_A","features":[50]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[50]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[50]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[50]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[50]},{"name":"SRCINFO_DESCRIPTION","features":[50]},{"name":"SRCINFO_FLAGS","features":[50]},{"name":"SRCINFO_PATH","features":[50]},{"name":"SRCINFO_TAGFILE","features":[50]},{"name":"SRCINFO_TAGFILE2","features":[50]},{"name":"SRCLIST_APPEND","features":[50]},{"name":"SRCLIST_NOBROWSE","features":[50]},{"name":"SRCLIST_NOSTRIPPLATFORM","features":[50]},{"name":"SRCLIST_SUBDIRS","features":[50]},{"name":"SRCLIST_SYSIFADMIN","features":[50]},{"name":"SRCLIST_SYSTEM","features":[50]},{"name":"SRCLIST_TEMPORARY","features":[50]},{"name":"SRCLIST_USER","features":[50]},{"name":"SRC_FLAGS_CABFILE","features":[50]},{"name":"SUOI_FORCEDELETE","features":[50]},{"name":"SUOI_INTERNAL1","features":[50]},{"name":"SZ_KEY_ADDAUTOLOGGER","features":[50]},{"name":"SZ_KEY_ADDAUTOLOGGERPROVIDER","features":[50]},{"name":"SZ_KEY_ADDCHANNEL","features":[50]},{"name":"SZ_KEY_ADDEVENTPROVIDER","features":[50]},{"name":"SZ_KEY_ADDFILTER","features":[50]},{"name":"SZ_KEY_ADDIME","features":[50]},{"name":"SZ_KEY_ADDINTERFACE","features":[50]},{"name":"SZ_KEY_ADDPOWERSETTING","features":[50]},{"name":"SZ_KEY_ADDPROP","features":[50]},{"name":"SZ_KEY_ADDREG","features":[50]},{"name":"SZ_KEY_ADDREGNOCLOBBER","features":[50]},{"name":"SZ_KEY_ADDSERVICE","features":[50]},{"name":"SZ_KEY_ADDTRIGGER","features":[50]},{"name":"SZ_KEY_BITREG","features":[50]},{"name":"SZ_KEY_CLEANONLY","features":[50]},{"name":"SZ_KEY_COPYFILES","features":[50]},{"name":"SZ_KEY_COPYINF","features":[50]},{"name":"SZ_KEY_DEFAULTOPTION","features":[50]},{"name":"SZ_KEY_DEFDESTDIR","features":[50]},{"name":"SZ_KEY_DELFILES","features":[50]},{"name":"SZ_KEY_DELIME","features":[50]},{"name":"SZ_KEY_DELPROP","features":[50]},{"name":"SZ_KEY_DELREG","features":[50]},{"name":"SZ_KEY_DELSERVICE","features":[50]},{"name":"SZ_KEY_DESTDIRS","features":[50]},{"name":"SZ_KEY_EXCLUDEID","features":[50]},{"name":"SZ_KEY_FAILUREACTIONS","features":[50]},{"name":"SZ_KEY_FEATURESCORE","features":[50]},{"name":"SZ_KEY_FILTERLEVEL","features":[50]},{"name":"SZ_KEY_FILTERPOSITION","features":[50]},{"name":"SZ_KEY_HARDWARE","features":[50]},{"name":"SZ_KEY_IMPORTCHANNEL","features":[50]},{"name":"SZ_KEY_INI2REG","features":[50]},{"name":"SZ_KEY_LAYOUT_FILE","features":[50]},{"name":"SZ_KEY_LDIDOEM","features":[50]},{"name":"SZ_KEY_LFN_SECTION","features":[50]},{"name":"SZ_KEY_LISTOPTIONS","features":[50]},{"name":"SZ_KEY_LOGCONFIG","features":[50]},{"name":"SZ_KEY_MODULES","features":[50]},{"name":"SZ_KEY_OPTIONDESC","features":[50]},{"name":"SZ_KEY_PHASE1","features":[50]},{"name":"SZ_KEY_PROFILEITEMS","features":[50]},{"name":"SZ_KEY_REGSVR","features":[50]},{"name":"SZ_KEY_RENFILES","features":[50]},{"name":"SZ_KEY_SFN_SECTION","features":[50]},{"name":"SZ_KEY_SRCDISKFILES","features":[50]},{"name":"SZ_KEY_SRCDISKNAMES","features":[50]},{"name":"SZ_KEY_STRINGS","features":[50]},{"name":"SZ_KEY_UNREGSVR","features":[50]},{"name":"SZ_KEY_UPDATEAUTOLOGGER","features":[50]},{"name":"SZ_KEY_UPDATEINIFIELDS","features":[50]},{"name":"SZ_KEY_UPDATEINIS","features":[50]},{"name":"SZ_KEY_UPGRADEONLY","features":[50]},{"name":"SetupAddInstallSectionToDiskSpaceListA","features":[50,3]},{"name":"SetupAddInstallSectionToDiskSpaceListW","features":[50,3]},{"name":"SetupAddSectionToDiskSpaceListA","features":[50,3]},{"name":"SetupAddSectionToDiskSpaceListW","features":[50,3]},{"name":"SetupAddToDiskSpaceListA","features":[50,3]},{"name":"SetupAddToDiskSpaceListW","features":[50,3]},{"name":"SetupAddToSourceListA","features":[50,3]},{"name":"SetupAddToSourceListW","features":[50,3]},{"name":"SetupAdjustDiskSpaceListA","features":[50,3]},{"name":"SetupAdjustDiskSpaceListW","features":[50,3]},{"name":"SetupBackupErrorA","features":[50,3]},{"name":"SetupBackupErrorW","features":[50,3]},{"name":"SetupCancelTemporarySourceList","features":[50,3]},{"name":"SetupCloseFileQueue","features":[50,3]},{"name":"SetupCloseInfFile","features":[50]},{"name":"SetupCloseLog","features":[50]},{"name":"SetupCommitFileQueueA","features":[50,3]},{"name":"SetupCommitFileQueueW","features":[50,3]},{"name":"SetupConfigureWmiFromInfSectionA","features":[50,3]},{"name":"SetupConfigureWmiFromInfSectionW","features":[50,3]},{"name":"SetupCopyErrorA","features":[50,3]},{"name":"SetupCopyErrorW","features":[50,3]},{"name":"SetupCopyOEMInfA","features":[50,3]},{"name":"SetupCopyOEMInfW","features":[50,3]},{"name":"SetupCreateDiskSpaceListA","features":[50]},{"name":"SetupCreateDiskSpaceListW","features":[50]},{"name":"SetupDecompressOrCopyFileA","features":[50]},{"name":"SetupDecompressOrCopyFileW","features":[50]},{"name":"SetupDefaultQueueCallbackA","features":[50]},{"name":"SetupDefaultQueueCallbackW","features":[50]},{"name":"SetupDeleteErrorA","features":[50,3]},{"name":"SetupDeleteErrorW","features":[50,3]},{"name":"SetupDestroyDiskSpaceList","features":[50,3]},{"name":"SetupDiAskForOEMDisk","features":[50,3]},{"name":"SetupDiBuildClassInfoList","features":[50,3]},{"name":"SetupDiBuildClassInfoListExA","features":[50,3]},{"name":"SetupDiBuildClassInfoListExW","features":[50,3]},{"name":"SetupDiBuildDriverInfoList","features":[50,3]},{"name":"SetupDiCallClassInstaller","features":[50,3]},{"name":"SetupDiCancelDriverInfoSearch","features":[50,3]},{"name":"SetupDiChangeState","features":[50,3]},{"name":"SetupDiClassGuidsFromNameA","features":[50,3]},{"name":"SetupDiClassGuidsFromNameExA","features":[50,3]},{"name":"SetupDiClassGuidsFromNameExW","features":[50,3]},{"name":"SetupDiClassGuidsFromNameW","features":[50,3]},{"name":"SetupDiClassNameFromGuidA","features":[50,3]},{"name":"SetupDiClassNameFromGuidExA","features":[50,3]},{"name":"SetupDiClassNameFromGuidExW","features":[50,3]},{"name":"SetupDiClassNameFromGuidW","features":[50,3]},{"name":"SetupDiCreateDevRegKeyA","features":[50,51]},{"name":"SetupDiCreateDevRegKeyW","features":[50,51]},{"name":"SetupDiCreateDeviceInfoA","features":[50,3]},{"name":"SetupDiCreateDeviceInfoList","features":[50,3]},{"name":"SetupDiCreateDeviceInfoListExA","features":[50,3]},{"name":"SetupDiCreateDeviceInfoListExW","features":[50,3]},{"name":"SetupDiCreateDeviceInfoW","features":[50,3]},{"name":"SetupDiCreateDeviceInterfaceA","features":[50,3]},{"name":"SetupDiCreateDeviceInterfaceRegKeyA","features":[50,51]},{"name":"SetupDiCreateDeviceInterfaceRegKeyW","features":[50,51]},{"name":"SetupDiCreateDeviceInterfaceW","features":[50,3]},{"name":"SetupDiDeleteDevRegKey","features":[50,3]},{"name":"SetupDiDeleteDeviceInfo","features":[50,3]},{"name":"SetupDiDeleteDeviceInterfaceData","features":[50,3]},{"name":"SetupDiDeleteDeviceInterfaceRegKey","features":[50,3]},{"name":"SetupDiDestroyClassImageList","features":[50,3,42]},{"name":"SetupDiDestroyDeviceInfoList","features":[50,3]},{"name":"SetupDiDestroyDriverInfoList","features":[50,3]},{"name":"SetupDiDrawMiniIcon","features":[50,3,14]},{"name":"SetupDiEnumDeviceInfo","features":[50,3]},{"name":"SetupDiEnumDeviceInterfaces","features":[50,3]},{"name":"SetupDiEnumDriverInfoA","features":[50,3]},{"name":"SetupDiEnumDriverInfoW","features":[50,3]},{"name":"SetupDiGetActualModelsSectionA","features":[50,3,33,35]},{"name":"SetupDiGetActualModelsSectionW","features":[50,3,33,35]},{"name":"SetupDiGetActualSectionToInstallA","features":[50,3]},{"name":"SetupDiGetActualSectionToInstallExA","features":[50,3,33,35]},{"name":"SetupDiGetActualSectionToInstallExW","features":[50,3,33,35]},{"name":"SetupDiGetActualSectionToInstallW","features":[50,3]},{"name":"SetupDiGetClassBitmapIndex","features":[50,3]},{"name":"SetupDiGetClassDescriptionA","features":[50,3]},{"name":"SetupDiGetClassDescriptionExA","features":[50,3]},{"name":"SetupDiGetClassDescriptionExW","features":[50,3]},{"name":"SetupDiGetClassDescriptionW","features":[50,3]},{"name":"SetupDiGetClassDevPropertySheetsA","features":[50,3,14,42,52]},{"name":"SetupDiGetClassDevPropertySheetsW","features":[50,3,14,42,52]},{"name":"SetupDiGetClassDevsA","features":[50,3]},{"name":"SetupDiGetClassDevsExA","features":[50,3]},{"name":"SetupDiGetClassDevsExW","features":[50,3]},{"name":"SetupDiGetClassDevsW","features":[50,3]},{"name":"SetupDiGetClassImageIndex","features":[50,3,42]},{"name":"SetupDiGetClassImageList","features":[50,3,42]},{"name":"SetupDiGetClassImageListExA","features":[50,3,42]},{"name":"SetupDiGetClassImageListExW","features":[50,3,42]},{"name":"SetupDiGetClassInstallParamsA","features":[50,3]},{"name":"SetupDiGetClassInstallParamsW","features":[50,3]},{"name":"SetupDiGetClassPropertyExW","features":[50,1,3]},{"name":"SetupDiGetClassPropertyKeys","features":[50,1,3]},{"name":"SetupDiGetClassPropertyKeysExW","features":[50,1,3]},{"name":"SetupDiGetClassPropertyW","features":[50,1,3]},{"name":"SetupDiGetClassRegistryPropertyA","features":[50,3]},{"name":"SetupDiGetClassRegistryPropertyW","features":[50,3]},{"name":"SetupDiGetCustomDevicePropertyA","features":[50,3]},{"name":"SetupDiGetCustomDevicePropertyW","features":[50,3]},{"name":"SetupDiGetDeviceInfoListClass","features":[50,3]},{"name":"SetupDiGetDeviceInfoListDetailA","features":[50,3]},{"name":"SetupDiGetDeviceInfoListDetailW","features":[50,3]},{"name":"SetupDiGetDeviceInstallParamsA","features":[50,3]},{"name":"SetupDiGetDeviceInstallParamsW","features":[50,3]},{"name":"SetupDiGetDeviceInstanceIdA","features":[50,3]},{"name":"SetupDiGetDeviceInstanceIdW","features":[50,3]},{"name":"SetupDiGetDeviceInterfaceAlias","features":[50,3]},{"name":"SetupDiGetDeviceInterfaceDetailA","features":[50,3]},{"name":"SetupDiGetDeviceInterfaceDetailW","features":[50,3]},{"name":"SetupDiGetDeviceInterfacePropertyKeys","features":[50,1,3]},{"name":"SetupDiGetDeviceInterfacePropertyW","features":[50,1,3]},{"name":"SetupDiGetDevicePropertyKeys","features":[50,1,3]},{"name":"SetupDiGetDevicePropertyW","features":[50,1,3]},{"name":"SetupDiGetDeviceRegistryPropertyA","features":[50,3]},{"name":"SetupDiGetDeviceRegistryPropertyW","features":[50,3]},{"name":"SetupDiGetDriverInfoDetailA","features":[50,3]},{"name":"SetupDiGetDriverInfoDetailW","features":[50,3]},{"name":"SetupDiGetDriverInstallParamsA","features":[50,3]},{"name":"SetupDiGetDriverInstallParamsW","features":[50,3]},{"name":"SetupDiGetHwProfileFriendlyNameA","features":[50,3]},{"name":"SetupDiGetHwProfileFriendlyNameExA","features":[50,3]},{"name":"SetupDiGetHwProfileFriendlyNameExW","features":[50,3]},{"name":"SetupDiGetHwProfileFriendlyNameW","features":[50,3]},{"name":"SetupDiGetHwProfileList","features":[50,3]},{"name":"SetupDiGetHwProfileListExA","features":[50,3]},{"name":"SetupDiGetHwProfileListExW","features":[50,3]},{"name":"SetupDiGetINFClassA","features":[50,3]},{"name":"SetupDiGetINFClassW","features":[50,3]},{"name":"SetupDiGetSelectedDevice","features":[50,3]},{"name":"SetupDiGetSelectedDriverA","features":[50,3]},{"name":"SetupDiGetSelectedDriverW","features":[50,3]},{"name":"SetupDiGetWizardPage","features":[50,3,42]},{"name":"SetupDiInstallClassA","features":[50,3]},{"name":"SetupDiInstallClassExA","features":[50,3]},{"name":"SetupDiInstallClassExW","features":[50,3]},{"name":"SetupDiInstallClassW","features":[50,3]},{"name":"SetupDiInstallDevice","features":[50,3]},{"name":"SetupDiInstallDeviceInterfaces","features":[50,3]},{"name":"SetupDiInstallDriverFiles","features":[50,3]},{"name":"SetupDiLoadClassIcon","features":[50,3,52]},{"name":"SetupDiLoadDeviceIcon","features":[50,3,52]},{"name":"SetupDiOpenClassRegKey","features":[50,51]},{"name":"SetupDiOpenClassRegKeyExA","features":[50,51]},{"name":"SetupDiOpenClassRegKeyExW","features":[50,51]},{"name":"SetupDiOpenDevRegKey","features":[50,51]},{"name":"SetupDiOpenDeviceInfoA","features":[50,3]},{"name":"SetupDiOpenDeviceInfoW","features":[50,3]},{"name":"SetupDiOpenDeviceInterfaceA","features":[50,3]},{"name":"SetupDiOpenDeviceInterfaceRegKey","features":[50,51]},{"name":"SetupDiOpenDeviceInterfaceW","features":[50,3]},{"name":"SetupDiRegisterCoDeviceInstallers","features":[50,3]},{"name":"SetupDiRegisterDeviceInfo","features":[50,3]},{"name":"SetupDiRemoveDevice","features":[50,3]},{"name":"SetupDiRemoveDeviceInterface","features":[50,3]},{"name":"SetupDiRestartDevices","features":[50,3]},{"name":"SetupDiSelectBestCompatDrv","features":[50,3]},{"name":"SetupDiSelectDevice","features":[50,3]},{"name":"SetupDiSelectOEMDrv","features":[50,3]},{"name":"SetupDiSetClassInstallParamsA","features":[50,3]},{"name":"SetupDiSetClassInstallParamsW","features":[50,3]},{"name":"SetupDiSetClassPropertyExW","features":[50,1,3]},{"name":"SetupDiSetClassPropertyW","features":[50,1,3]},{"name":"SetupDiSetClassRegistryPropertyA","features":[50,3]},{"name":"SetupDiSetClassRegistryPropertyW","features":[50,3]},{"name":"SetupDiSetDeviceInstallParamsA","features":[50,3]},{"name":"SetupDiSetDeviceInstallParamsW","features":[50,3]},{"name":"SetupDiSetDeviceInterfaceDefault","features":[50,3]},{"name":"SetupDiSetDeviceInterfacePropertyW","features":[50,1,3]},{"name":"SetupDiSetDevicePropertyW","features":[50,1,3]},{"name":"SetupDiSetDeviceRegistryPropertyA","features":[50,3]},{"name":"SetupDiSetDeviceRegistryPropertyW","features":[50,3]},{"name":"SetupDiSetDriverInstallParamsA","features":[50,3]},{"name":"SetupDiSetDriverInstallParamsW","features":[50,3]},{"name":"SetupDiSetSelectedDevice","features":[50,3]},{"name":"SetupDiSetSelectedDriverA","features":[50,3]},{"name":"SetupDiSetSelectedDriverW","features":[50,3]},{"name":"SetupDiUnremoveDevice","features":[50,3]},{"name":"SetupDuplicateDiskSpaceListA","features":[50]},{"name":"SetupDuplicateDiskSpaceListW","features":[50]},{"name":"SetupEnumInfSectionsA","features":[50,3]},{"name":"SetupEnumInfSectionsW","features":[50,3]},{"name":"SetupFileLogChecksum","features":[50]},{"name":"SetupFileLogDiskDescription","features":[50]},{"name":"SetupFileLogDiskTagfile","features":[50]},{"name":"SetupFileLogInfo","features":[50]},{"name":"SetupFileLogMax","features":[50]},{"name":"SetupFileLogOtherInfo","features":[50]},{"name":"SetupFileLogSourceFilename","features":[50]},{"name":"SetupFindFirstLineA","features":[50,3]},{"name":"SetupFindFirstLineW","features":[50,3]},{"name":"SetupFindNextLine","features":[50,3]},{"name":"SetupFindNextMatchLineA","features":[50,3]},{"name":"SetupFindNextMatchLineW","features":[50,3]},{"name":"SetupFreeSourceListA","features":[50,3]},{"name":"SetupFreeSourceListW","features":[50,3]},{"name":"SetupGetBackupInformationA","features":[50,3]},{"name":"SetupGetBackupInformationW","features":[50,3]},{"name":"SetupGetBinaryField","features":[50,3]},{"name":"SetupGetFieldCount","features":[50]},{"name":"SetupGetFileCompressionInfoA","features":[50]},{"name":"SetupGetFileCompressionInfoExA","features":[50,3]},{"name":"SetupGetFileCompressionInfoExW","features":[50,3]},{"name":"SetupGetFileCompressionInfoW","features":[50]},{"name":"SetupGetFileQueueCount","features":[50,3]},{"name":"SetupGetFileQueueFlags","features":[50,3]},{"name":"SetupGetInfDriverStoreLocationA","features":[50,3,33,35]},{"name":"SetupGetInfDriverStoreLocationW","features":[50,3,33,35]},{"name":"SetupGetInfFileListA","features":[50,3]},{"name":"SetupGetInfFileListW","features":[50,3]},{"name":"SetupGetInfInformationA","features":[50,3]},{"name":"SetupGetInfInformationW","features":[50,3]},{"name":"SetupGetInfPublishedNameA","features":[50,3]},{"name":"SetupGetInfPublishedNameW","features":[50,3]},{"name":"SetupGetIntField","features":[50,3]},{"name":"SetupGetLineByIndexA","features":[50,3]},{"name":"SetupGetLineByIndexW","features":[50,3]},{"name":"SetupGetLineCountA","features":[50]},{"name":"SetupGetLineCountW","features":[50]},{"name":"SetupGetLineTextA","features":[50,3]},{"name":"SetupGetLineTextW","features":[50,3]},{"name":"SetupGetMultiSzFieldA","features":[50,3]},{"name":"SetupGetMultiSzFieldW","features":[50,3]},{"name":"SetupGetNonInteractiveMode","features":[50,3]},{"name":"SetupGetSourceFileLocationA","features":[50,3]},{"name":"SetupGetSourceFileLocationW","features":[50,3]},{"name":"SetupGetSourceFileSizeA","features":[50,3]},{"name":"SetupGetSourceFileSizeW","features":[50,3]},{"name":"SetupGetSourceInfoA","features":[50,3]},{"name":"SetupGetSourceInfoW","features":[50,3]},{"name":"SetupGetStringFieldA","features":[50,3]},{"name":"SetupGetStringFieldW","features":[50,3]},{"name":"SetupGetTargetPathA","features":[50,3]},{"name":"SetupGetTargetPathW","features":[50,3]},{"name":"SetupGetThreadLogToken","features":[50]},{"name":"SetupInitDefaultQueueCallback","features":[50,3]},{"name":"SetupInitDefaultQueueCallbackEx","features":[50,3]},{"name":"SetupInitializeFileLogA","features":[50]},{"name":"SetupInitializeFileLogW","features":[50]},{"name":"SetupInstallFileA","features":[50,3]},{"name":"SetupInstallFileExA","features":[50,3]},{"name":"SetupInstallFileExW","features":[50,3]},{"name":"SetupInstallFileW","features":[50,3]},{"name":"SetupInstallFilesFromInfSectionA","features":[50,3]},{"name":"SetupInstallFilesFromInfSectionW","features":[50,3]},{"name":"SetupInstallFromInfSectionA","features":[50,3,51]},{"name":"SetupInstallFromInfSectionW","features":[50,3,51]},{"name":"SetupInstallServicesFromInfSectionA","features":[50,3]},{"name":"SetupInstallServicesFromInfSectionExA","features":[50,3]},{"name":"SetupInstallServicesFromInfSectionExW","features":[50,3]},{"name":"SetupInstallServicesFromInfSectionW","features":[50,3]},{"name":"SetupIterateCabinetA","features":[50,3]},{"name":"SetupIterateCabinetW","features":[50,3]},{"name":"SetupLogErrorA","features":[50,3]},{"name":"SetupLogErrorW","features":[50,3]},{"name":"SetupLogFileA","features":[50,3]},{"name":"SetupLogFileW","features":[50,3]},{"name":"SetupOpenAppendInfFileA","features":[50,3]},{"name":"SetupOpenAppendInfFileW","features":[50,3]},{"name":"SetupOpenFileQueue","features":[50]},{"name":"SetupOpenInfFileA","features":[50]},{"name":"SetupOpenInfFileW","features":[50]},{"name":"SetupOpenLog","features":[50,3]},{"name":"SetupOpenMasterInf","features":[50]},{"name":"SetupPrepareQueueForRestoreA","features":[50,3]},{"name":"SetupPrepareQueueForRestoreW","features":[50,3]},{"name":"SetupPromptForDiskA","features":[50,3]},{"name":"SetupPromptForDiskW","features":[50,3]},{"name":"SetupPromptReboot","features":[50,3]},{"name":"SetupQueryDrivesInDiskSpaceListA","features":[50,3]},{"name":"SetupQueryDrivesInDiskSpaceListW","features":[50,3]},{"name":"SetupQueryFileLogA","features":[50,3]},{"name":"SetupQueryFileLogW","features":[50,3]},{"name":"SetupQueryInfFileInformationA","features":[50,3]},{"name":"SetupQueryInfFileInformationW","features":[50,3]},{"name":"SetupQueryInfOriginalFileInformationA","features":[50,3,33,35]},{"name":"SetupQueryInfOriginalFileInformationW","features":[50,3,33,35]},{"name":"SetupQueryInfVersionInformationA","features":[50,3]},{"name":"SetupQueryInfVersionInformationW","features":[50,3]},{"name":"SetupQuerySourceListA","features":[50,3]},{"name":"SetupQuerySourceListW","features":[50,3]},{"name":"SetupQuerySpaceRequiredOnDriveA","features":[50,3]},{"name":"SetupQuerySpaceRequiredOnDriveW","features":[50,3]},{"name":"SetupQueueCopyA","features":[50,3]},{"name":"SetupQueueCopyIndirectA","features":[50,3]},{"name":"SetupQueueCopyIndirectW","features":[50,3]},{"name":"SetupQueueCopySectionA","features":[50,3]},{"name":"SetupQueueCopySectionW","features":[50,3]},{"name":"SetupQueueCopyW","features":[50,3]},{"name":"SetupQueueDefaultCopyA","features":[50,3]},{"name":"SetupQueueDefaultCopyW","features":[50,3]},{"name":"SetupQueueDeleteA","features":[50,3]},{"name":"SetupQueueDeleteSectionA","features":[50,3]},{"name":"SetupQueueDeleteSectionW","features":[50,3]},{"name":"SetupQueueDeleteW","features":[50,3]},{"name":"SetupQueueRenameA","features":[50,3]},{"name":"SetupQueueRenameSectionA","features":[50,3]},{"name":"SetupQueueRenameSectionW","features":[50,3]},{"name":"SetupQueueRenameW","features":[50,3]},{"name":"SetupRemoveFileLogEntryA","features":[50,3]},{"name":"SetupRemoveFileLogEntryW","features":[50,3]},{"name":"SetupRemoveFromDiskSpaceListA","features":[50,3]},{"name":"SetupRemoveFromDiskSpaceListW","features":[50,3]},{"name":"SetupRemoveFromSourceListA","features":[50,3]},{"name":"SetupRemoveFromSourceListW","features":[50,3]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListA","features":[50,3]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListW","features":[50,3]},{"name":"SetupRemoveSectionFromDiskSpaceListA","features":[50,3]},{"name":"SetupRemoveSectionFromDiskSpaceListW","features":[50,3]},{"name":"SetupRenameErrorA","features":[50,3]},{"name":"SetupRenameErrorW","features":[50,3]},{"name":"SetupScanFileQueueA","features":[50,3]},{"name":"SetupScanFileQueueW","features":[50,3]},{"name":"SetupSetDirectoryIdA","features":[50,3]},{"name":"SetupSetDirectoryIdExA","features":[50,3]},{"name":"SetupSetDirectoryIdExW","features":[50,3]},{"name":"SetupSetDirectoryIdW","features":[50,3]},{"name":"SetupSetFileQueueAlternatePlatformA","features":[50,3,33,35]},{"name":"SetupSetFileQueueAlternatePlatformW","features":[50,3,33,35]},{"name":"SetupSetFileQueueFlags","features":[50,3]},{"name":"SetupSetNonInteractiveMode","features":[50,3]},{"name":"SetupSetPlatformPathOverrideA","features":[50,3]},{"name":"SetupSetPlatformPathOverrideW","features":[50,3]},{"name":"SetupSetSourceListA","features":[50,3]},{"name":"SetupSetSourceListW","features":[50,3]},{"name":"SetupSetThreadLogToken","features":[50]},{"name":"SetupTermDefaultQueueCallback","features":[50]},{"name":"SetupTerminateFileLog","features":[50,3]},{"name":"SetupUninstallNewlyCopiedInfs","features":[50,3]},{"name":"SetupUninstallOEMInfA","features":[50,3]},{"name":"SetupUninstallOEMInfW","features":[50,3]},{"name":"SetupVerifyInfFileA","features":[50,3,33,35]},{"name":"SetupVerifyInfFileW","features":[50,3,33,35]},{"name":"SetupWriteTextLog","features":[50]},{"name":"SetupWriteTextLogError","features":[50]},{"name":"SetupWriteTextLogInfLine","features":[50]},{"name":"UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS","features":[50]},{"name":"UpdateDriverForPlugAndPlayDevicesA","features":[50,3]},{"name":"UpdateDriverForPlugAndPlayDevicesW","features":[50,3]},{"name":"fDD_BYTE","features":[50]},{"name":"fDD_BYTE_AND_WORD","features":[50]},{"name":"fDD_BusMaster","features":[50]},{"name":"fDD_DWORD","features":[50]},{"name":"fDD_NoBusMaster","features":[50]},{"name":"fDD_TypeA","features":[50]},{"name":"fDD_TypeB","features":[50]},{"name":"fDD_TypeF","features":[50]},{"name":"fDD_TypeStandard","features":[50]},{"name":"fDD_WORD","features":[50]},{"name":"fIOD_10_BIT_DECODE","features":[50]},{"name":"fIOD_12_BIT_DECODE","features":[50]},{"name":"fIOD_16_BIT_DECODE","features":[50]},{"name":"fIOD_DECODE","features":[50]},{"name":"fIOD_IO","features":[50]},{"name":"fIOD_Memory","features":[50]},{"name":"fIOD_PASSIVE_DECODE","features":[50]},{"name":"fIOD_PORT_BAR","features":[50]},{"name":"fIOD_POSITIVE_DECODE","features":[50]},{"name":"fIOD_PortType","features":[50]},{"name":"fIOD_WINDOW_DECODE","features":[50]},{"name":"fIRQD_Edge","features":[50]},{"name":"fIRQD_Exclusive","features":[50]},{"name":"fIRQD_Level","features":[50]},{"name":"fIRQD_Level_Bit","features":[50]},{"name":"fIRQD_Share","features":[50]},{"name":"fIRQD_Share_Bit","features":[50]},{"name":"fMD_24","features":[50]},{"name":"fMD_32","features":[50]},{"name":"fMD_32_24","features":[50]},{"name":"fMD_Cacheable","features":[50]},{"name":"fMD_CombinedWrite","features":[50]},{"name":"fMD_CombinedWriteAllowed","features":[50]},{"name":"fMD_CombinedWriteDisallowed","features":[50]},{"name":"fMD_MEMORY_BAR","features":[50]},{"name":"fMD_MemoryType","features":[50]},{"name":"fMD_NonCacheable","features":[50]},{"name":"fMD_Pref","features":[50]},{"name":"fMD_PrefetchAllowed","features":[50]},{"name":"fMD_PrefetchDisallowed","features":[50]},{"name":"fMD_Prefetchable","features":[50]},{"name":"fMD_RAM","features":[50]},{"name":"fMD_ROM","features":[50]},{"name":"fMD_ReadAllowed","features":[50]},{"name":"fMD_ReadDisallowed","features":[50]},{"name":"fMD_Readable","features":[50]},{"name":"fMD_WINDOW_DECODE","features":[50]},{"name":"fPCD_ATTRIBUTES_PER_WINDOW","features":[50]},{"name":"fPCD_IO1_16","features":[50]},{"name":"fPCD_IO1_SRC_16","features":[50]},{"name":"fPCD_IO1_WS_16","features":[50]},{"name":"fPCD_IO1_ZW_8","features":[50]},{"name":"fPCD_IO2_16","features":[50]},{"name":"fPCD_IO2_SRC_16","features":[50]},{"name":"fPCD_IO2_WS_16","features":[50]},{"name":"fPCD_IO2_ZW_8","features":[50]},{"name":"fPCD_IO_16","features":[50]},{"name":"fPCD_IO_8","features":[50]},{"name":"fPCD_IO_SRC_16","features":[50]},{"name":"fPCD_IO_WS_16","features":[50]},{"name":"fPCD_IO_ZW_8","features":[50]},{"name":"fPCD_MEM1_16","features":[50]},{"name":"fPCD_MEM1_A","features":[50]},{"name":"fPCD_MEM1_WS_ONE","features":[50]},{"name":"fPCD_MEM1_WS_THREE","features":[50]},{"name":"fPCD_MEM1_WS_TWO","features":[50]},{"name":"fPCD_MEM2_16","features":[50]},{"name":"fPCD_MEM2_A","features":[50]},{"name":"fPCD_MEM2_WS_ONE","features":[50]},{"name":"fPCD_MEM2_WS_THREE","features":[50]},{"name":"fPCD_MEM2_WS_TWO","features":[50]},{"name":"fPCD_MEM_16","features":[50]},{"name":"fPCD_MEM_8","features":[50]},{"name":"fPCD_MEM_A","features":[50]},{"name":"fPCD_MEM_WS_ONE","features":[50]},{"name":"fPCD_MEM_WS_THREE","features":[50]},{"name":"fPCD_MEM_WS_TWO","features":[50]},{"name":"fPMF_AUDIO_ENABLE","features":[50]},{"name":"mDD_BusMaster","features":[50]},{"name":"mDD_Type","features":[50]},{"name":"mDD_Width","features":[50]},{"name":"mIRQD_Edge_Level","features":[50]},{"name":"mIRQD_Share","features":[50]},{"name":"mMD_32_24","features":[50]},{"name":"mMD_Cacheable","features":[50]},{"name":"mMD_CombinedWrite","features":[50]},{"name":"mMD_MemoryType","features":[50]},{"name":"mMD_Prefetchable","features":[50]},{"name":"mMD_Readable","features":[50]},{"name":"mPCD_IO_8_16","features":[50]},{"name":"mPCD_MEM1_WS","features":[50]},{"name":"mPCD_MEM2_WS","features":[50]},{"name":"mPCD_MEM_8_16","features":[50]},{"name":"mPCD_MEM_A_C","features":[50]},{"name":"mPCD_MEM_WS","features":[50]},{"name":"mPMF_AUDIO_ENABLE","features":[50]}],"375":[{"name":"DEVPROP_FILTER_EXPRESSION","features":[53,1]},{"name":"DEVPROP_OPERATOR","features":[53]},{"name":"DEVPROP_OPERATOR_AND_CLOSE","features":[53]},{"name":"DEVPROP_OPERATOR_AND_OPEN","features":[53]},{"name":"DEVPROP_OPERATOR_ARRAY_CONTAINS","features":[53]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH","features":[53]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_BITWISE_AND","features":[53]},{"name":"DEVPROP_OPERATOR_BITWISE_OR","features":[53]},{"name":"DEVPROP_OPERATOR_CONTAINS","features":[53]},{"name":"DEVPROP_OPERATOR_CONTAINS_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_ENDS_WITH","features":[53]},{"name":"DEVPROP_OPERATOR_ENDS_WITH_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_EQUALS","features":[53]},{"name":"DEVPROP_OPERATOR_EQUALS_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_EXISTS","features":[53]},{"name":"DEVPROP_OPERATOR_GREATER_THAN","features":[53]},{"name":"DEVPROP_OPERATOR_GREATER_THAN_EQUALS","features":[53]},{"name":"DEVPROP_OPERATOR_LESS_THAN","features":[53]},{"name":"DEVPROP_OPERATOR_LESS_THAN_EQUALS","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH","features":[53]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_MASK_ARRAY","features":[53]},{"name":"DEVPROP_OPERATOR_MASK_EVAL","features":[53]},{"name":"DEVPROP_OPERATOR_MASK_LIST","features":[53]},{"name":"DEVPROP_OPERATOR_MASK_LOGICAL","features":[53]},{"name":"DEVPROP_OPERATOR_MASK_MODIFIER","features":[53]},{"name":"DEVPROP_OPERATOR_MASK_NOT_LOGICAL","features":[53]},{"name":"DEVPROP_OPERATOR_MODIFIER_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_MODIFIER_NOT","features":[53]},{"name":"DEVPROP_OPERATOR_NONE","features":[53]},{"name":"DEVPROP_OPERATOR_NOT_CLOSE","features":[53]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS","features":[53]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS_IGNORE_CASE","features":[53]},{"name":"DEVPROP_OPERATOR_NOT_EXISTS","features":[53]},{"name":"DEVPROP_OPERATOR_NOT_OPEN","features":[53]},{"name":"DEVPROP_OPERATOR_OR_CLOSE","features":[53]},{"name":"DEVPROP_OPERATOR_OR_OPEN","features":[53]},{"name":"DEV_OBJECT","features":[53,1]},{"name":"DEV_OBJECT_TYPE","features":[53]},{"name":"DEV_QUERY_FLAGS","features":[53]},{"name":"DEV_QUERY_PARAMETER","features":[53,1]},{"name":"DEV_QUERY_RESULT_ACTION","features":[53]},{"name":"DEV_QUERY_RESULT_ACTION_DATA","features":[53,1]},{"name":"DEV_QUERY_STATE","features":[53]},{"name":"DevCloseObjectQuery","features":[53]},{"name":"DevCreateObjectQuery","features":[53,1]},{"name":"DevCreateObjectQueryEx","features":[53,1]},{"name":"DevCreateObjectQueryFromId","features":[53,1]},{"name":"DevCreateObjectQueryFromIdEx","features":[53,1]},{"name":"DevCreateObjectQueryFromIds","features":[53,1]},{"name":"DevCreateObjectQueryFromIdsEx","features":[53,1]},{"name":"DevFindProperty","features":[53,1]},{"name":"DevFreeObjectProperties","features":[53,1]},{"name":"DevFreeObjects","features":[53,1]},{"name":"DevGetObjectProperties","features":[53,1]},{"name":"DevGetObjectPropertiesEx","features":[53,1]},{"name":"DevGetObjects","features":[53,1]},{"name":"DevGetObjectsEx","features":[53,1]},{"name":"DevObjectTypeAEP","features":[53]},{"name":"DevObjectTypeAEPContainer","features":[53]},{"name":"DevObjectTypeAEPService","features":[53]},{"name":"DevObjectTypeDevice","features":[53]},{"name":"DevObjectTypeDeviceContainer","features":[53]},{"name":"DevObjectTypeDeviceContainerDisplay","features":[53]},{"name":"DevObjectTypeDeviceInstallerClass","features":[53]},{"name":"DevObjectTypeDeviceInterface","features":[53]},{"name":"DevObjectTypeDeviceInterfaceClass","features":[53]},{"name":"DevObjectTypeDeviceInterfaceDisplay","features":[53]},{"name":"DevObjectTypeDevicePanel","features":[53]},{"name":"DevObjectTypeUnknown","features":[53]},{"name":"DevQueryFlagAllProperties","features":[53]},{"name":"DevQueryFlagAsyncClose","features":[53]},{"name":"DevQueryFlagLocalize","features":[53]},{"name":"DevQueryFlagNone","features":[53]},{"name":"DevQueryFlagUpdateResults","features":[53]},{"name":"DevQueryResultAdd","features":[53]},{"name":"DevQueryResultRemove","features":[53]},{"name":"DevQueryResultStateChange","features":[53]},{"name":"DevQueryResultUpdate","features":[53]},{"name":"DevQueryStateAborted","features":[53]},{"name":"DevQueryStateClosed","features":[53]},{"name":"DevQueryStateEnumCompleted","features":[53]},{"name":"DevQueryStateInitialized","features":[53]},{"name":"HDEVQUERY","features":[53]},{"name":"PDEV_QUERY_RESULT_CALLBACK","features":[53,1]}],"376":[{"name":"AR_DISABLED","features":[54]},{"name":"AR_DOCKED","features":[54]},{"name":"AR_ENABLED","features":[54]},{"name":"AR_LAPTOP","features":[54]},{"name":"AR_MULTIMON","features":[54]},{"name":"AR_NOSENSOR","features":[54]},{"name":"AR_NOT_SUPPORTED","features":[54]},{"name":"AR_REMOTESESSION","features":[54]},{"name":"AR_STATE","features":[54]},{"name":"AR_SUPPRESSED","features":[54]},{"name":"Adapter","features":[54]},{"name":"Adapters","features":[54]},{"name":"BACKLIGHT_OPTIMIZATION_LEVEL","features":[54]},{"name":"BACKLIGHT_REDUCTION_GAMMA_RAMP","features":[54]},{"name":"BANK_POSITION","features":[54]},{"name":"BITMAP_ARRAY_BYTE","features":[54]},{"name":"BITMAP_BITS_BYTE_ALIGN","features":[54]},{"name":"BITMAP_BITS_PIXEL","features":[54]},{"name":"BITMAP_BITS_WORD_ALIGN","features":[54]},{"name":"BITMAP_PLANES","features":[54]},{"name":"BLENDOBJ","features":[54,14]},{"name":"BMF_16BPP","features":[54]},{"name":"BMF_1BPP","features":[54]},{"name":"BMF_24BPP","features":[54]},{"name":"BMF_32BPP","features":[54]},{"name":"BMF_4BPP","features":[54]},{"name":"BMF_4RLE","features":[54]},{"name":"BMF_8BPP","features":[54]},{"name":"BMF_8RLE","features":[54]},{"name":"BMF_ACC_NOTIFY","features":[54]},{"name":"BMF_DONTCACHE","features":[54]},{"name":"BMF_JPEG","features":[54]},{"name":"BMF_KMSECTION","features":[54]},{"name":"BMF_NOTSYSMEM","features":[54]},{"name":"BMF_NOZEROINIT","features":[54]},{"name":"BMF_PNG","features":[54]},{"name":"BMF_RESERVED","features":[54]},{"name":"BMF_RMT_ENTER","features":[54]},{"name":"BMF_TEMP_ALPHA","features":[54]},{"name":"BMF_TOPDOWN","features":[54]},{"name":"BMF_UMPDMEM","features":[54]},{"name":"BMF_USERMEM","features":[54]},{"name":"BMF_WINDOW_BLT","features":[54]},{"name":"BRIGHTNESS_INTERFACE_VERSION","features":[54]},{"name":"BRIGHTNESS_INTERFACE_VERSION_1","features":[54]},{"name":"BRIGHTNESS_INTERFACE_VERSION_2","features":[54]},{"name":"BRIGHTNESS_INTERFACE_VERSION_3","features":[54]},{"name":"BRIGHTNESS_LEVEL","features":[54]},{"name":"BRIGHTNESS_MAX_LEVEL_COUNT","features":[54]},{"name":"BRIGHTNESS_MAX_NIT_RANGE_COUNT","features":[54]},{"name":"BRIGHTNESS_NIT_RANGE","features":[54]},{"name":"BRIGHTNESS_NIT_RANGES","features":[54]},{"name":"BRUSHOBJ","features":[54]},{"name":"BRUSHOBJ_hGetColorTransform","features":[54,3]},{"name":"BRUSHOBJ_pvAllocRbrush","features":[54]},{"name":"BRUSHOBJ_pvGetRbrush","features":[54]},{"name":"BRUSHOBJ_ulGetBrushColor","features":[54]},{"name":"BR_CMYKCOLOR","features":[54]},{"name":"BR_DEVICE_ICM","features":[54]},{"name":"BR_HOST_ICM","features":[54]},{"name":"BR_ORIGCOLOR","features":[54]},{"name":"BacklightOptimizationDesktop","features":[54]},{"name":"BacklightOptimizationDimmed","features":[54]},{"name":"BacklightOptimizationDisable","features":[54]},{"name":"BacklightOptimizationDynamic","features":[54]},{"name":"BacklightOptimizationEDR","features":[54]},{"name":"BlackScreenDiagnosticsCalloutParam","features":[54]},{"name":"BlackScreenDiagnosticsData","features":[54]},{"name":"BlackScreenDisplayRecovery","features":[54]},{"name":"CDBEX_CROSSADAPTER","features":[54]},{"name":"CDBEX_DXINTEROP","features":[54]},{"name":"CDBEX_NTSHAREDSURFACEHANDLE","features":[54]},{"name":"CDBEX_REDIRECTION","features":[54]},{"name":"CDBEX_REUSE","features":[54]},{"name":"CDDDXGK_REDIRBITMAPPRESENTINFO","features":[54,3]},{"name":"CD_ANY","features":[54]},{"name":"CD_LEFTDOWN","features":[54]},{"name":"CD_LEFTUP","features":[54]},{"name":"CD_LEFTWARDS","features":[54]},{"name":"CD_RIGHTDOWN","features":[54]},{"name":"CD_RIGHTUP","features":[54]},{"name":"CD_UPWARDS","features":[54]},{"name":"CHAR_IMAGE_INFO","features":[54,55]},{"name":"CHAR_TYPE_LEADING","features":[54]},{"name":"CHAR_TYPE_SBCS","features":[54]},{"name":"CHAR_TYPE_TRAILING","features":[54]},{"name":"CHROMATICITY_COORDINATE","features":[54]},{"name":"CIECHROMA","features":[54]},{"name":"CLIPLINE","features":[54]},{"name":"CLIPOBJ","features":[54,3]},{"name":"CLIPOBJ_bEnum","features":[54,3]},{"name":"CLIPOBJ_cEnumStart","features":[54,3]},{"name":"CLIPOBJ_ppoGetPath","features":[54,3]},{"name":"COLORINFO","features":[54]},{"name":"COLORSPACE_TRANSFORM","features":[54]},{"name":"COLORSPACE_TRANSFORM_1DLUT_CAP","features":[54]},{"name":"COLORSPACE_TRANSFORM_3x4","features":[54]},{"name":"COLORSPACE_TRANSFORM_DATA_CAP","features":[54]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE","features":[54]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FIXED_POINT","features":[54]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FLOAT","features":[54]},{"name":"COLORSPACE_TRANSFORM_MATRIX_CAP","features":[54]},{"name":"COLORSPACE_TRANSFORM_MATRIX_V2","features":[54]},{"name":"COLORSPACE_TRANSFORM_SET_INPUT","features":[54]},{"name":"COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[54]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS","features":[54]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS_VERSION","features":[54]},{"name":"COLORSPACE_TRANSFORM_TYPE","features":[54]},{"name":"COLORSPACE_TRANSFORM_TYPE_DEFAULT","features":[54]},{"name":"COLORSPACE_TRANSFORM_TYPE_DXGI_1","features":[54]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_3x4","features":[54]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_V2","features":[54]},{"name":"COLORSPACE_TRANSFORM_TYPE_RGB256x3x16","features":[54]},{"name":"COLORSPACE_TRANSFORM_TYPE_UNINITIALIZED","features":[54]},{"name":"COLORSPACE_TRANSFORM_VERSION_1","features":[54]},{"name":"COLORSPACE_TRANSFORM_VERSION_DEFAULT","features":[54]},{"name":"COLORSPACE_TRANSFORM_VERSION_NOT_SUPPORTED","features":[54]},{"name":"CT_RECTANGLES","features":[54]},{"name":"CapabilitiesRequestAndCapabilitiesReply","features":[54,3]},{"name":"ColorSpaceTransformStageControl_Bypass","features":[54]},{"name":"ColorSpaceTransformStageControl_Enable","features":[54]},{"name":"ColorSpaceTransformStageControl_No_Change","features":[54]},{"name":"DCR_DRIVER","features":[54]},{"name":"DCR_HALFTONE","features":[54]},{"name":"DCR_SOLID","features":[54]},{"name":"DCT_DEFAULT","features":[54]},{"name":"DCT_FORCE_HIGH_PERFORMANCE","features":[54]},{"name":"DCT_FORCE_LOW_POWER","features":[54]},{"name":"DC_COMPLEX","features":[54]},{"name":"DC_RECT","features":[54]},{"name":"DC_TRIVIAL","features":[54]},{"name":"DDI_DRIVER_VERSION_NT4","features":[54]},{"name":"DDI_DRIVER_VERSION_NT5","features":[54]},{"name":"DDI_DRIVER_VERSION_NT5_01","features":[54]},{"name":"DDI_DRIVER_VERSION_NT5_01_SP1","features":[54]},{"name":"DDI_DRIVER_VERSION_SP3","features":[54]},{"name":"DDI_ERROR","features":[54]},{"name":"DD_FULLSCREEN_VIDEO_DEVICE_NAME","features":[54]},{"name":"DEVHTADJDATA","features":[54]},{"name":"DEVHTADJF_ADDITIVE_DEVICE","features":[54]},{"name":"DEVHTADJF_COLOR_DEVICE","features":[54]},{"name":"DEVHTINFO","features":[54]},{"name":"DEVINFO","features":[54,14]},{"name":"DEVPKEY_Device_ActivityId","features":[54,1]},{"name":"DEVPKEY_Device_AdapterLuid","features":[54,1]},{"name":"DEVPKEY_Device_TerminalLuid","features":[54,1]},{"name":"DEVPKEY_IndirectDisplay","features":[54,1]},{"name":"DHPDEV","features":[54]},{"name":"DHSURF","features":[54]},{"name":"DISPLAYCONFIG_2DREGION","features":[54]},{"name":"DISPLAYCONFIG_ADAPTER_NAME","features":[54,3]},{"name":"DISPLAYCONFIG_DESKTOP_IMAGE_INFO","features":[54,3]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADAPTER_NAME","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADVANCED_COLOR_INFO","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_MONITOR_SPECIALIZATION","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SDR_WHITE_LEVEL","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SOURCE_NAME","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SUPPORT_VIRTUAL_RESOLUTION","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_BASE_TYPE","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_NAME","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_PREFERRED_MODE","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_HEADER","features":[54,3]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_ADVANCED_COLOR_STATE","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_MONITOR_SPECIALIZATION","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_SUPPORT_VIRTUAL_RESOLUTION","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_TARGET_PERSISTENCE","features":[54]},{"name":"DISPLAYCONFIG_DEVICE_INFO_TYPE","features":[54]},{"name":"DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO","features":[54,3,14]},{"name":"DISPLAYCONFIG_GET_MONITOR_SPECIALIZATION","features":[54,3]},{"name":"DISPLAYCONFIG_MODE_INFO","features":[54,3]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE","features":[54]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_DESKTOP_IMAGE","features":[54]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_SOURCE","features":[54]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_TARGET","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPONENT_VIDEO","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPOSITE_VIDEO","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EMBEDDED","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EXTERNAL","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_USB_TUNNEL","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DVI","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HD15","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HDMI","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_VIRTUAL","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_WIRED","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INTERNAL","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_LVDS","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_MIRACAST","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_OTHER","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDI","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDTVDONGLE","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SVIDEO","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EMBEDDED","features":[54]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EXTERNAL","features":[54]},{"name":"DISPLAYCONFIG_PATH_INFO","features":[54,3]},{"name":"DISPLAYCONFIG_PATH_SOURCE_INFO","features":[54,3]},{"name":"DISPLAYCONFIG_PATH_TARGET_INFO","features":[54,3]},{"name":"DISPLAYCONFIG_PIXELFORMAT","features":[54]},{"name":"DISPLAYCONFIG_PIXELFORMAT_16BPP","features":[54]},{"name":"DISPLAYCONFIG_PIXELFORMAT_24BPP","features":[54]},{"name":"DISPLAYCONFIG_PIXELFORMAT_32BPP","features":[54]},{"name":"DISPLAYCONFIG_PIXELFORMAT_8BPP","features":[54]},{"name":"DISPLAYCONFIG_PIXELFORMAT_NONGDI","features":[54]},{"name":"DISPLAYCONFIG_RATIONAL","features":[54]},{"name":"DISPLAYCONFIG_ROTATION","features":[54]},{"name":"DISPLAYCONFIG_ROTATION_IDENTITY","features":[54]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE180","features":[54]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE270","features":[54]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE90","features":[54]},{"name":"DISPLAYCONFIG_SCALING","features":[54]},{"name":"DISPLAYCONFIG_SCALING_ASPECTRATIOCENTEREDMAX","features":[54]},{"name":"DISPLAYCONFIG_SCALING_CENTERED","features":[54]},{"name":"DISPLAYCONFIG_SCALING_CUSTOM","features":[54]},{"name":"DISPLAYCONFIG_SCALING_IDENTITY","features":[54]},{"name":"DISPLAYCONFIG_SCALING_PREFERRED","features":[54]},{"name":"DISPLAYCONFIG_SCALING_STRETCHED","features":[54]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING","features":[54]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED","features":[54]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_LOWERFIELDFIRST","features":[54]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_UPPERFIELDFIRST","features":[54]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_PROGRESSIVE","features":[54]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_UNSPECIFIED","features":[54]},{"name":"DISPLAYCONFIG_SDR_WHITE_LEVEL","features":[54,3]},{"name":"DISPLAYCONFIG_SET_ADVANCED_COLOR_STATE","features":[54,3]},{"name":"DISPLAYCONFIG_SET_MONITOR_SPECIALIZATION","features":[54,3]},{"name":"DISPLAYCONFIG_SET_TARGET_PERSISTENCE","features":[54,3]},{"name":"DISPLAYCONFIG_SOURCE_DEVICE_NAME","features":[54,3]},{"name":"DISPLAYCONFIG_SOURCE_MODE","features":[54,3]},{"name":"DISPLAYCONFIG_SUPPORT_VIRTUAL_RESOLUTION","features":[54,3]},{"name":"DISPLAYCONFIG_TARGET_BASE_TYPE","features":[54,3]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME","features":[54,3]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME_FLAGS","features":[54]},{"name":"DISPLAYCONFIG_TARGET_MODE","features":[54]},{"name":"DISPLAYCONFIG_TARGET_PREFERRED_MODE","features":[54,3]},{"name":"DISPLAYCONFIG_TOPOLOGY_CLONE","features":[54]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTEND","features":[54]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTERNAL","features":[54]},{"name":"DISPLAYCONFIG_TOPOLOGY_ID","features":[54]},{"name":"DISPLAYCONFIG_TOPOLOGY_INTERNAL","features":[54]},{"name":"DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY","features":[54]},{"name":"DISPLAYCONFIG_VIDEO_SIGNAL_INFO","features":[54]},{"name":"DISPLAYPOLICY_AC","features":[54]},{"name":"DISPLAYPOLICY_DC","features":[54]},{"name":"DISPLAY_BRIGHTNESS","features":[54]},{"name":"DM_DEFAULT","features":[54]},{"name":"DM_MONOCHROME","features":[54]},{"name":"DN_ACCELERATION_LEVEL","features":[54]},{"name":"DN_ASSOCIATE_WINDOW","features":[54]},{"name":"DN_COMPOSITION_CHANGED","features":[54]},{"name":"DN_DEVICE_ORIGIN","features":[54]},{"name":"DN_DRAWING_BEGIN","features":[54]},{"name":"DN_DRAWING_BEGIN_APIBITMAP","features":[54]},{"name":"DN_SLEEP_MODE","features":[54]},{"name":"DN_SURFOBJ_DESTRUCTION","features":[54]},{"name":"DRD_ERROR","features":[54]},{"name":"DRD_SUCCESS","features":[54]},{"name":"DRH_APIBITMAP","features":[54]},{"name":"DRH_APIBITMAPDATA","features":[54,3]},{"name":"DRIVEROBJ","features":[54,3]},{"name":"DRVENABLEDATA","features":[54]},{"name":"DRVFN","features":[54]},{"name":"DRVQUERY_USERMODE","features":[54]},{"name":"DSI_CHECKSUM_ERROR_CORRECTED","features":[54]},{"name":"DSI_CHECKSUM_ERROR_NOT_CORRECTED","features":[54]},{"name":"DSI_CONTENTION_DETECTED","features":[54]},{"name":"DSI_CONTROL_TRANSMISSION_MODE","features":[54]},{"name":"DSI_DSI_DATA_TYPE_NOT_RECOGNIZED","features":[54]},{"name":"DSI_DSI_PROTOCOL_VIOLATION","features":[54]},{"name":"DSI_DSI_VC_ID_INVALID","features":[54]},{"name":"DSI_EOT_SYNC_ERROR","features":[54]},{"name":"DSI_ESCAPE_MODE_ENTRY_COMMAND_ERROR","features":[54]},{"name":"DSI_FALSE_CONTROL_ERROR","features":[54]},{"name":"DSI_INVALID_PACKET_INDEX","features":[54]},{"name":"DSI_INVALID_TRANSMISSION_LENGTH","features":[54]},{"name":"DSI_LONG_PACKET_PAYLOAD_CHECKSUM_ERROR","features":[54]},{"name":"DSI_LOW_POWER_TRANSMIT_SYNC_ERROR","features":[54]},{"name":"DSI_PACKET_EMBEDDED_PAYLOAD_SIZE","features":[54]},{"name":"DSI_PERIPHERAL_TIMEOUT_ERROR","features":[54]},{"name":"DSI_SOT_ERROR","features":[54]},{"name":"DSI_SOT_SYNC_ERROR","features":[54]},{"name":"DSS_FLUSH_EVENT","features":[54]},{"name":"DSS_RESERVED","features":[54]},{"name":"DSS_RESERVED1","features":[54]},{"name":"DSS_RESERVED2","features":[54]},{"name":"DSS_TIMER_EVENT","features":[54]},{"name":"DXGK_WIN32K_PARAM_DATA","features":[54]},{"name":"DXGK_WIN32K_PARAM_FLAG_DISABLEVIEW","features":[54]},{"name":"DXGK_WIN32K_PARAM_FLAG_MODESWITCH","features":[54]},{"name":"DXGK_WIN32K_PARAM_FLAG_UPDATEREGISTRY","features":[54]},{"name":"DegaussMonitor","features":[54,3]},{"name":"DestroyPhysicalMonitor","features":[54,3]},{"name":"DestroyPhysicalMonitors","features":[54,3]},{"name":"DisplayConfigGetDeviceInfo","features":[54,3]},{"name":"DisplayConfigSetDeviceInfo","features":[54,3]},{"name":"DisplayMode","features":[54,3,14]},{"name":"DisplayModes","features":[54,3,14]},{"name":"ECS_REDRAW","features":[54]},{"name":"ECS_TEARDOWN","features":[54]},{"name":"ED_ABORTDOC","features":[54]},{"name":"EHN_ERROR","features":[54]},{"name":"EHN_RESTORED","features":[54]},{"name":"EMFINFO","features":[54,14]},{"name":"ENDCAP_BUTT","features":[54]},{"name":"ENDCAP_ROUND","features":[54]},{"name":"ENDCAP_SQUARE","features":[54]},{"name":"ENGSAFESEMAPHORE","features":[54]},{"name":"ENG_DEVICE_ATTRIBUTE","features":[54]},{"name":"ENG_EVENT","features":[54]},{"name":"ENG_FNT_CACHE_READ_FAULT","features":[54]},{"name":"ENG_FNT_CACHE_WRITE_FAULT","features":[54]},{"name":"ENG_SYSTEM_ATTRIBUTE","features":[54]},{"name":"ENG_TIME_FIELDS","features":[54]},{"name":"ENUMRECTS","features":[54,3]},{"name":"EngAcquireSemaphore","features":[54]},{"name":"EngAlphaBlend","features":[54,3,14]},{"name":"EngAssociateSurface","features":[54,3]},{"name":"EngBitBlt","features":[54,3]},{"name":"EngCheckAbort","features":[54,3]},{"name":"EngComputeGlyphSet","features":[54]},{"name":"EngCopyBits","features":[54,3]},{"name":"EngCreateBitmap","features":[54,3,14]},{"name":"EngCreateClip","features":[54,3]},{"name":"EngCreateDeviceBitmap","features":[54,3,14]},{"name":"EngCreateDeviceSurface","features":[54,3]},{"name":"EngCreatePalette","features":[54,14]},{"name":"EngCreateSemaphore","features":[54]},{"name":"EngDeleteClip","features":[54,3]},{"name":"EngDeletePalette","features":[54,3,14]},{"name":"EngDeletePath","features":[54]},{"name":"EngDeleteSemaphore","features":[54]},{"name":"EngDeleteSurface","features":[54,3]},{"name":"EngEraseSurface","features":[54,3]},{"name":"EngFillPath","features":[54,3]},{"name":"EngFindResource","features":[54,3]},{"name":"EngFreeModule","features":[54,3]},{"name":"EngGetCurrentCodePage","features":[54]},{"name":"EngGetDriverName","features":[54]},{"name":"EngGetPrinterDataFileName","features":[54]},{"name":"EngGradientFill","features":[54,3,14]},{"name":"EngLineTo","features":[54,3]},{"name":"EngLoadModule","features":[54,3]},{"name":"EngLockSurface","features":[54,3]},{"name":"EngMarkBandingSurface","features":[54,3]},{"name":"EngMultiByteToUnicodeN","features":[54]},{"name":"EngMultiByteToWideChar","features":[54]},{"name":"EngNumberOfProcessors","features":[54]},{"name":"EngOptimumAvailableSystemMemory","features":[54]},{"name":"EngOptimumAvailableUserMemory","features":[54]},{"name":"EngPaint","features":[54,3]},{"name":"EngPlgBlt","features":[54,3,14]},{"name":"EngProcessorFeature","features":[54]},{"name":"EngQueryEMFInfo","features":[54,3,14]},{"name":"EngQueryLocalTime","features":[54]},{"name":"EngReleaseSemaphore","features":[54]},{"name":"EngStretchBlt","features":[54,3,14]},{"name":"EngStretchBltROP","features":[54,3,14]},{"name":"EngStrokeAndFillPath","features":[54,3]},{"name":"EngStrokePath","features":[54,3]},{"name":"EngTextOut","features":[54,3]},{"name":"EngTransparentBlt","features":[54,3]},{"name":"EngUnicodeToMultiByteN","features":[54]},{"name":"EngUnlockSurface","features":[54,3]},{"name":"EngWideCharToMultiByte","features":[54]},{"name":"FC_COMPLEX","features":[54]},{"name":"FC_RECT","features":[54]},{"name":"FC_RECT4","features":[54]},{"name":"FDM_TYPE_BM_SIDE_CONST","features":[54]},{"name":"FDM_TYPE_CHAR_INC_EQUAL_BM_BASE","features":[54]},{"name":"FDM_TYPE_CONST_BEARINGS","features":[54]},{"name":"FDM_TYPE_MAXEXT_EQUAL_BM_SIDE","features":[54]},{"name":"FDM_TYPE_ZERO_BEARINGS","features":[54]},{"name":"FD_DEVICEMETRICS","features":[54,3]},{"name":"FD_ERROR","features":[54]},{"name":"FD_GLYPHATTR","features":[54]},{"name":"FD_GLYPHSET","features":[54]},{"name":"FD_KERNINGPAIR","features":[54]},{"name":"FD_LIGATURE","features":[54]},{"name":"FD_NEGATIVE_FONT","features":[54]},{"name":"FD_XFORM","features":[54]},{"name":"FD_XFORM","features":[54]},{"name":"FF_IGNORED_SIGNATURE","features":[54]},{"name":"FF_SIGNATURE_VERIFIED","features":[54]},{"name":"FLOATOBJ","features":[54]},{"name":"FLOATOBJ_XFORM","features":[54]},{"name":"FLOATOBJ_XFORM","features":[54]},{"name":"FLOAT_LONG","features":[54]},{"name":"FLOAT_LONG","features":[54]},{"name":"FL_NONPAGED_MEMORY","features":[54]},{"name":"FL_NON_SESSION","features":[54]},{"name":"FL_ZERO_MEMORY","features":[54]},{"name":"FM_EDITABLE_EMBED","features":[54]},{"name":"FM_INFO_16BPP","features":[54]},{"name":"FM_INFO_1BPP","features":[54]},{"name":"FM_INFO_24BPP","features":[54]},{"name":"FM_INFO_32BPP","features":[54]},{"name":"FM_INFO_4BPP","features":[54]},{"name":"FM_INFO_8BPP","features":[54]},{"name":"FM_INFO_90DEGREE_ROTATIONS","features":[54]},{"name":"FM_INFO_ANISOTROPIC_SCALING_ONLY","features":[54]},{"name":"FM_INFO_ARB_XFORMS","features":[54]},{"name":"FM_INFO_CONSTANT_WIDTH","features":[54]},{"name":"FM_INFO_DBCS_FIXED_PITCH","features":[54]},{"name":"FM_INFO_DO_NOT_ENUMERATE","features":[54]},{"name":"FM_INFO_DSIG","features":[54]},{"name":"FM_INFO_FAMILY_EQUIV","features":[54]},{"name":"FM_INFO_IGNORE_TC_RA_ABLE","features":[54]},{"name":"FM_INFO_INTEGER_WIDTH","features":[54]},{"name":"FM_INFO_INTEGRAL_SCALING","features":[54]},{"name":"FM_INFO_ISOTROPIC_SCALING_ONLY","features":[54]},{"name":"FM_INFO_NONNEGATIVE_AC","features":[54]},{"name":"FM_INFO_NOT_CONTIGUOUS","features":[54]},{"name":"FM_INFO_OPTICALLY_FIXED_PITCH","features":[54]},{"name":"FM_INFO_RETURNS_BITMAPS","features":[54]},{"name":"FM_INFO_RETURNS_OUTLINES","features":[54]},{"name":"FM_INFO_RETURNS_STROKES","features":[54]},{"name":"FM_INFO_RIGHT_HANDED","features":[54]},{"name":"FM_INFO_TECH_BITMAP","features":[54]},{"name":"FM_INFO_TECH_CFF","features":[54]},{"name":"FM_INFO_TECH_MM","features":[54]},{"name":"FM_INFO_TECH_OUTLINE_NOT_TRUETYPE","features":[54]},{"name":"FM_INFO_TECH_STROKE","features":[54]},{"name":"FM_INFO_TECH_TRUETYPE","features":[54]},{"name":"FM_INFO_TECH_TYPE1","features":[54]},{"name":"FM_NO_EMBEDDING","features":[54]},{"name":"FM_PANOSE_CULTURE_LATIN","features":[54]},{"name":"FM_READONLY_EMBED","features":[54]},{"name":"FM_SEL_BOLD","features":[54]},{"name":"FM_SEL_ITALIC","features":[54]},{"name":"FM_SEL_NEGATIVE","features":[54]},{"name":"FM_SEL_OUTLINED","features":[54]},{"name":"FM_SEL_REGULAR","features":[54]},{"name":"FM_SEL_STRIKEOUT","features":[54]},{"name":"FM_SEL_UNDERSCORE","features":[54]},{"name":"FM_TYPE_LICENSED","features":[54]},{"name":"FM_VERSION_NUMBER","features":[54]},{"name":"FONTDIFF","features":[54,3]},{"name":"FONTINFO","features":[54]},{"name":"FONTOBJ","features":[54,3]},{"name":"FONTOBJ_cGetAllGlyphHandles","features":[54,3]},{"name":"FONTOBJ_cGetGlyphs","features":[54,3]},{"name":"FONTOBJ_pQueryGlyphAttrs","features":[54,3]},{"name":"FONTOBJ_pfdg","features":[54,3]},{"name":"FONTOBJ_pifi","features":[54,3,14]},{"name":"FONTOBJ_pvTrueTypeFontFile","features":[54,3]},{"name":"FONTOBJ_pxoGetXform","features":[54,3]},{"name":"FONTOBJ_vGetInfo","features":[54,3]},{"name":"FONTSIM","features":[54]},{"name":"FONT_IMAGE_INFO","features":[54,55]},{"name":"FO_ATTR_MODE_ROTATE","features":[54]},{"name":"FO_CFF","features":[54]},{"name":"FO_CLEARTYPENATURAL_X","features":[54]},{"name":"FO_CLEARTYPE_X","features":[54]},{"name":"FO_CLEARTYPE_Y","features":[54]},{"name":"FO_DBCS_FONT","features":[54]},{"name":"FO_DEVICE_FONT","features":[54]},{"name":"FO_EM_HEIGHT","features":[54]},{"name":"FO_GLYPHBITS","features":[54]},{"name":"FO_GRAY16","features":[54]},{"name":"FO_HGLYPHS","features":[54]},{"name":"FO_MULTIPLEMASTER","features":[54]},{"name":"FO_NOCLEARTYPE","features":[54]},{"name":"FO_NOGRAY16","features":[54]},{"name":"FO_NOHINTS","features":[54]},{"name":"FO_NO_CHOICE","features":[54]},{"name":"FO_OUTLINE_CAPABLE","features":[54]},{"name":"FO_PATHOBJ","features":[54]},{"name":"FO_POSTSCRIPT","features":[54]},{"name":"FO_SIM_BOLD","features":[54]},{"name":"FO_SIM_ITALIC","features":[54]},{"name":"FO_VERT_FACE","features":[54]},{"name":"FP_ALTERNATEMODE","features":[54]},{"name":"FP_WINDINGMODE","features":[54]},{"name":"FREEOBJPROC","features":[54,3]},{"name":"FSCNTL_SCREEN_INFO","features":[54,55]},{"name":"FSVIDEO_COPY_FRAME_BUFFER","features":[54,55]},{"name":"FSVIDEO_CURSOR_POSITION","features":[54]},{"name":"FSVIDEO_MODE_INFORMATION","features":[54]},{"name":"FSVIDEO_REVERSE_MOUSE_POINTER","features":[54,55]},{"name":"FSVIDEO_SCREEN_INFORMATION","features":[54,55]},{"name":"FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[54,55]},{"name":"GAMMARAMP","features":[54]},{"name":"GAMMA_RAMP_DXGI_1","features":[54]},{"name":"GAMMA_RAMP_RGB","features":[54]},{"name":"GAMMA_RAMP_RGB256x3x16","features":[54]},{"name":"GCAPS2_ACC_DRIVER","features":[54]},{"name":"GCAPS2_ALPHACURSOR","features":[54]},{"name":"GCAPS2_BITMAPEXREUSE","features":[54]},{"name":"GCAPS2_CHANGEGAMMARAMP","features":[54]},{"name":"GCAPS2_CLEARTYPE","features":[54]},{"name":"GCAPS2_EXCLUDELAYERED","features":[54]},{"name":"GCAPS2_ICD_MULTIMON","features":[54]},{"name":"GCAPS2_INCLUDEAPIBITMAPS","features":[54]},{"name":"GCAPS2_JPEGSRC","features":[54]},{"name":"GCAPS2_MOUSETRAILS","features":[54]},{"name":"GCAPS2_PNGSRC","features":[54]},{"name":"GCAPS2_REMOTEDRIVER","features":[54]},{"name":"GCAPS2_RESERVED1","features":[54]},{"name":"GCAPS2_SHOWHIDDENPOINTER","features":[54]},{"name":"GCAPS2_SYNCFLUSH","features":[54]},{"name":"GCAPS2_SYNCTIMER","features":[54]},{"name":"GCAPS2_xxxx","features":[54]},{"name":"GCAPS_ALTERNATEFILL","features":[54]},{"name":"GCAPS_ARBRUSHOPAQUE","features":[54]},{"name":"GCAPS_ARBRUSHTEXT","features":[54]},{"name":"GCAPS_ASYNCCHANGE","features":[54]},{"name":"GCAPS_ASYNCMOVE","features":[54]},{"name":"GCAPS_BEZIERS","features":[54]},{"name":"GCAPS_CMYKCOLOR","features":[54]},{"name":"GCAPS_COLOR_DITHER","features":[54]},{"name":"GCAPS_DIRECTDRAW","features":[54]},{"name":"GCAPS_DITHERONREALIZE","features":[54]},{"name":"GCAPS_DONTJOURNAL","features":[54]},{"name":"GCAPS_FONT_RASTERIZER","features":[54]},{"name":"GCAPS_FORCEDITHER","features":[54]},{"name":"GCAPS_GEOMETRICWIDE","features":[54]},{"name":"GCAPS_GRAY16","features":[54]},{"name":"GCAPS_HALFTONE","features":[54]},{"name":"GCAPS_HIGHRESTEXT","features":[54]},{"name":"GCAPS_HORIZSTRIKE","features":[54]},{"name":"GCAPS_ICM","features":[54]},{"name":"GCAPS_LAYERED","features":[54]},{"name":"GCAPS_MONO_DITHER","features":[54]},{"name":"GCAPS_NO64BITMEMACCESS","features":[54]},{"name":"GCAPS_NUP","features":[54]},{"name":"GCAPS_OPAQUERECT","features":[54]},{"name":"GCAPS_PALMANAGED","features":[54]},{"name":"GCAPS_PANNING","features":[54]},{"name":"GCAPS_SCREENPRECISION","features":[54]},{"name":"GCAPS_VECTORFONT","features":[54]},{"name":"GCAPS_VERTSTRIKE","features":[54]},{"name":"GCAPS_WINDINGFILL","features":[54]},{"name":"GDIINFO","features":[54,3]},{"name":"GDI_DRIVER_VERSION","features":[54]},{"name":"GETCONNECTEDIDS_SOURCE","features":[54]},{"name":"GETCONNECTEDIDS_TARGET","features":[54]},{"name":"GLYPHBITS","features":[54,3]},{"name":"GLYPHDATA","features":[54,3]},{"name":"GLYPHDEF","features":[54,3]},{"name":"GLYPHPOS","features":[54,3]},{"name":"GS_16BIT_HANDLES","features":[54]},{"name":"GS_8BIT_HANDLES","features":[54]},{"name":"GS_UNICODE_HANDLES","features":[54]},{"name":"GUID_DEVINTERFACE_DISPLAY_ADAPTER","features":[54]},{"name":"GUID_DEVINTERFACE_MONITOR","features":[54]},{"name":"GUID_DEVINTERFACE_VIDEO_OUTPUT_ARRIVAL","features":[54]},{"name":"GUID_DISPLAY_DEVICE_ARRIVAL","features":[54]},{"name":"GUID_MONITOR_OVERRIDE_PSEUDO_SPECIALIZED","features":[54]},{"name":"GX_GENERAL","features":[54]},{"name":"GX_IDENTITY","features":[54]},{"name":"GX_OFFSET","features":[54]},{"name":"GX_SCALE","features":[54]},{"name":"GetAutoRotationState","features":[54,3]},{"name":"GetCapabilitiesStringLength","features":[54,3]},{"name":"GetDisplayAutoRotationPreferences","features":[54,3]},{"name":"GetDisplayConfigBufferSizes","features":[54,3]},{"name":"GetMonitorBrightness","features":[54,3]},{"name":"GetMonitorCapabilities","features":[54,3]},{"name":"GetMonitorColorTemperature","features":[54,3]},{"name":"GetMonitorContrast","features":[54,3]},{"name":"GetMonitorDisplayAreaPosition","features":[54,3]},{"name":"GetMonitorDisplayAreaSize","features":[54,3]},{"name":"GetMonitorRedGreenOrBlueDrive","features":[54,3]},{"name":"GetMonitorRedGreenOrBlueGain","features":[54,3]},{"name":"GetMonitorTechnologyType","features":[54,3]},{"name":"GetNumberOfPhysicalMonitorsFromHMONITOR","features":[54,3,14]},{"name":"GetNumberOfPhysicalMonitorsFromIDirect3DDevice9","features":[54]},{"name":"GetPhysicalMonitorsFromHMONITOR","features":[54,3,14]},{"name":"GetPhysicalMonitorsFromIDirect3DDevice9","features":[54,3]},{"name":"GetTimingReport","features":[54,3]},{"name":"GetVCPFeatureAndVCPFeatureReply","features":[54,3]},{"name":"HBM","features":[54]},{"name":"HDEV","features":[54]},{"name":"HDRVOBJ","features":[54]},{"name":"HFASTMUTEX","features":[54]},{"name":"HOOK_ALPHABLEND","features":[54]},{"name":"HOOK_BITBLT","features":[54]},{"name":"HOOK_COPYBITS","features":[54]},{"name":"HOOK_FILLPATH","features":[54]},{"name":"HOOK_FLAGS","features":[54]},{"name":"HOOK_GRADIENTFILL","features":[54]},{"name":"HOOK_LINETO","features":[54]},{"name":"HOOK_MOVEPANNING","features":[54]},{"name":"HOOK_PAINT","features":[54]},{"name":"HOOK_PLGBLT","features":[54]},{"name":"HOOK_STRETCHBLT","features":[54]},{"name":"HOOK_STRETCHBLTROP","features":[54]},{"name":"HOOK_STROKEANDFILLPATH","features":[54]},{"name":"HOOK_STROKEPATH","features":[54]},{"name":"HOOK_SYNCHRONIZE","features":[54]},{"name":"HOOK_SYNCHRONIZEACCESS","features":[54]},{"name":"HOOK_TEXTOUT","features":[54]},{"name":"HOOK_TRANSPARENTBLT","features":[54]},{"name":"HOST_DSI_BAD_TRANSMISSION_MODE","features":[54]},{"name":"HOST_DSI_DEVICE_NOT_READY","features":[54]},{"name":"HOST_DSI_DEVICE_RESET","features":[54]},{"name":"HOST_DSI_DRIVER_REJECTED_PACKET","features":[54]},{"name":"HOST_DSI_INTERFACE_RESET","features":[54]},{"name":"HOST_DSI_INVALID_TRANSMISSION","features":[54]},{"name":"HOST_DSI_OS_REJECTED_PACKET","features":[54]},{"name":"HOST_DSI_TRANSMISSION_CANCELLED","features":[54]},{"name":"HOST_DSI_TRANSMISSION_DROPPED","features":[54]},{"name":"HOST_DSI_TRANSMISSION_TIMEOUT","features":[54]},{"name":"HSEMAPHORE","features":[54]},{"name":"HSURF","features":[54]},{"name":"HS_DDI_MAX","features":[54]},{"name":"HT_FLAG_8BPP_CMY332_MASK","features":[54]},{"name":"HT_FLAG_ADDITIVE_PRIMS","features":[54]},{"name":"HT_FLAG_DO_DEVCLR_XFORM","features":[54]},{"name":"HT_FLAG_HAS_BLACK_DYE","features":[54]},{"name":"HT_FLAG_INK_ABSORPTION_IDX0","features":[54]},{"name":"HT_FLAG_INK_ABSORPTION_IDX1","features":[54]},{"name":"HT_FLAG_INK_ABSORPTION_IDX2","features":[54]},{"name":"HT_FLAG_INK_ABSORPTION_IDX3","features":[54]},{"name":"HT_FLAG_INK_ABSORPTION_INDICES","features":[54]},{"name":"HT_FLAG_INK_HIGH_ABSORPTION","features":[54]},{"name":"HT_FLAG_INVERT_8BPP_BITMASK_IDX","features":[54]},{"name":"HT_FLAG_LOWER_INK_ABSORPTION","features":[54]},{"name":"HT_FLAG_LOWEST_INK_ABSORPTION","features":[54]},{"name":"HT_FLAG_LOW_INK_ABSORPTION","features":[54]},{"name":"HT_FLAG_NORMAL_INK_ABSORPTION","features":[54]},{"name":"HT_FLAG_OUTPUT_CMY","features":[54]},{"name":"HT_FLAG_PRINT_DRAFT_MODE","features":[54]},{"name":"HT_FLAG_SQUARE_DEVICE_PEL","features":[54]},{"name":"HT_FLAG_USE_8BPP_BITMASK","features":[54]},{"name":"HT_FORMAT_16BPP","features":[54]},{"name":"HT_FORMAT_1BPP","features":[54]},{"name":"HT_FORMAT_24BPP","features":[54]},{"name":"HT_FORMAT_32BPP","features":[54]},{"name":"HT_FORMAT_4BPP","features":[54]},{"name":"HT_FORMAT_4BPP_IRGB","features":[54]},{"name":"HT_FORMAT_8BPP","features":[54]},{"name":"HT_Get8BPPFormatPalette","features":[54,14]},{"name":"HT_Get8BPPMaskPalette","features":[54,3,14]},{"name":"HT_PATSIZE_10x10","features":[54]},{"name":"HT_PATSIZE_10x10_M","features":[54]},{"name":"HT_PATSIZE_12x12","features":[54]},{"name":"HT_PATSIZE_12x12_M","features":[54]},{"name":"HT_PATSIZE_14x14","features":[54]},{"name":"HT_PATSIZE_14x14_M","features":[54]},{"name":"HT_PATSIZE_16x16","features":[54]},{"name":"HT_PATSIZE_16x16_M","features":[54]},{"name":"HT_PATSIZE_2x2","features":[54]},{"name":"HT_PATSIZE_2x2_M","features":[54]},{"name":"HT_PATSIZE_4x4","features":[54]},{"name":"HT_PATSIZE_4x4_M","features":[54]},{"name":"HT_PATSIZE_6x6","features":[54]},{"name":"HT_PATSIZE_6x6_M","features":[54]},{"name":"HT_PATSIZE_8x8","features":[54]},{"name":"HT_PATSIZE_8x8_M","features":[54]},{"name":"HT_PATSIZE_DEFAULT","features":[54]},{"name":"HT_PATSIZE_MAX_INDEX","features":[54]},{"name":"HT_PATSIZE_SUPERCELL","features":[54]},{"name":"HT_PATSIZE_SUPERCELL_M","features":[54]},{"name":"HT_PATSIZE_USER","features":[54]},{"name":"HT_USERPAT_CX_MAX","features":[54]},{"name":"HT_USERPAT_CX_MIN","features":[54]},{"name":"HT_USERPAT_CY_MAX","features":[54]},{"name":"HT_USERPAT_CY_MIN","features":[54]},{"name":"ICloneViewHelper","features":[54]},{"name":"IFIEXTRA","features":[54]},{"name":"IFIMETRICS","features":[54,3,14]},{"name":"IFIMETRICS","features":[54,3,14]},{"name":"IGRF_RGB_256BYTES","features":[54]},{"name":"IGRF_RGB_256WORDS","features":[54]},{"name":"INDEX_DrvAccumulateD3DDirtyRect","features":[54]},{"name":"INDEX_DrvAlphaBlend","features":[54]},{"name":"INDEX_DrvAssertMode","features":[54]},{"name":"INDEX_DrvAssociateSharedSurface","features":[54]},{"name":"INDEX_DrvBitBlt","features":[54]},{"name":"INDEX_DrvCompletePDEV","features":[54]},{"name":"INDEX_DrvCopyBits","features":[54]},{"name":"INDEX_DrvCreateDeviceBitmap","features":[54]},{"name":"INDEX_DrvCreateDeviceBitmapEx","features":[54]},{"name":"INDEX_DrvDeleteDeviceBitmap","features":[54]},{"name":"INDEX_DrvDeleteDeviceBitmapEx","features":[54]},{"name":"INDEX_DrvDeriveSurface","features":[54]},{"name":"INDEX_DrvDescribePixelFormat","features":[54]},{"name":"INDEX_DrvDestroyFont","features":[54]},{"name":"INDEX_DrvDisableDirectDraw","features":[54]},{"name":"INDEX_DrvDisableDriver","features":[54]},{"name":"INDEX_DrvDisablePDEV","features":[54]},{"name":"INDEX_DrvDisableSurface","features":[54]},{"name":"INDEX_DrvDitherColor","features":[54]},{"name":"INDEX_DrvDrawEscape","features":[54]},{"name":"INDEX_DrvEnableDirectDraw","features":[54]},{"name":"INDEX_DrvEnablePDEV","features":[54]},{"name":"INDEX_DrvEnableSurface","features":[54]},{"name":"INDEX_DrvEndDoc","features":[54]},{"name":"INDEX_DrvEndDxInterop","features":[54]},{"name":"INDEX_DrvEscape","features":[54]},{"name":"INDEX_DrvFillPath","features":[54]},{"name":"INDEX_DrvFontManagement","features":[54]},{"name":"INDEX_DrvFree","features":[54]},{"name":"INDEX_DrvGetDirectDrawInfo","features":[54]},{"name":"INDEX_DrvGetGlyphMode","features":[54]},{"name":"INDEX_DrvGetModes","features":[54]},{"name":"INDEX_DrvGetSynthesizedFontFiles","features":[54]},{"name":"INDEX_DrvGetTrueTypeFile","features":[54]},{"name":"INDEX_DrvGradientFill","features":[54]},{"name":"INDEX_DrvIcmCheckBitmapBits","features":[54]},{"name":"INDEX_DrvIcmCreateColorTransform","features":[54]},{"name":"INDEX_DrvIcmDeleteColorTransform","features":[54]},{"name":"INDEX_DrvIcmSetDeviceGammaRamp","features":[54]},{"name":"INDEX_DrvLineTo","features":[54]},{"name":"INDEX_DrvLoadFontFile","features":[54]},{"name":"INDEX_DrvLockDisplayArea","features":[54]},{"name":"INDEX_DrvMovePanning","features":[54]},{"name":"INDEX_DrvMovePointer","features":[54]},{"name":"INDEX_DrvNextBand","features":[54]},{"name":"INDEX_DrvNotify","features":[54]},{"name":"INDEX_DrvOffset","features":[54]},{"name":"INDEX_DrvPaint","features":[54]},{"name":"INDEX_DrvPlgBlt","features":[54]},{"name":"INDEX_DrvQueryAdvanceWidths","features":[54]},{"name":"INDEX_DrvQueryDeviceSupport","features":[54]},{"name":"INDEX_DrvQueryFont","features":[54]},{"name":"INDEX_DrvQueryFontCaps","features":[54]},{"name":"INDEX_DrvQueryFontData","features":[54]},{"name":"INDEX_DrvQueryFontFile","features":[54]},{"name":"INDEX_DrvQueryFontTree","features":[54]},{"name":"INDEX_DrvQueryGlyphAttrs","features":[54]},{"name":"INDEX_DrvQueryPerBandInfo","features":[54]},{"name":"INDEX_DrvQuerySpoolType","features":[54]},{"name":"INDEX_DrvQueryTrueTypeOutline","features":[54]},{"name":"INDEX_DrvQueryTrueTypeTable","features":[54]},{"name":"INDEX_DrvRealizeBrush","features":[54]},{"name":"INDEX_DrvRenderHint","features":[54]},{"name":"INDEX_DrvReserved1","features":[54]},{"name":"INDEX_DrvReserved10","features":[54]},{"name":"INDEX_DrvReserved11","features":[54]},{"name":"INDEX_DrvReserved2","features":[54]},{"name":"INDEX_DrvReserved3","features":[54]},{"name":"INDEX_DrvReserved4","features":[54]},{"name":"INDEX_DrvReserved5","features":[54]},{"name":"INDEX_DrvReserved6","features":[54]},{"name":"INDEX_DrvReserved7","features":[54]},{"name":"INDEX_DrvReserved8","features":[54]},{"name":"INDEX_DrvReserved9","features":[54]},{"name":"INDEX_DrvResetDevice","features":[54]},{"name":"INDEX_DrvResetPDEV","features":[54]},{"name":"INDEX_DrvSaveScreenBits","features":[54]},{"name":"INDEX_DrvSendPage","features":[54]},{"name":"INDEX_DrvSetPalette","features":[54]},{"name":"INDEX_DrvSetPixelFormat","features":[54]},{"name":"INDEX_DrvSetPointerShape","features":[54]},{"name":"INDEX_DrvStartBanding","features":[54]},{"name":"INDEX_DrvStartDoc","features":[54]},{"name":"INDEX_DrvStartDxInterop","features":[54]},{"name":"INDEX_DrvStartPage","features":[54]},{"name":"INDEX_DrvStretchBlt","features":[54]},{"name":"INDEX_DrvStretchBltROP","features":[54]},{"name":"INDEX_DrvStrokeAndFillPath","features":[54]},{"name":"INDEX_DrvStrokePath","features":[54]},{"name":"INDEX_DrvSurfaceComplete","features":[54]},{"name":"INDEX_DrvSwapBuffers","features":[54]},{"name":"INDEX_DrvSynchronize","features":[54]},{"name":"INDEX_DrvSynchronizeRedirectionBitmaps","features":[54]},{"name":"INDEX_DrvSynchronizeSurface","features":[54]},{"name":"INDEX_DrvSynthesizeFont","features":[54]},{"name":"INDEX_DrvTextOut","features":[54]},{"name":"INDEX_DrvTransparentBlt","features":[54]},{"name":"INDEX_DrvUnloadFontFile","features":[54]},{"name":"INDEX_DrvUnlockDisplayArea","features":[54]},{"name":"INDEX_LAST","features":[54]},{"name":"INDIRECT_DISPLAY_INFO","features":[54,3]},{"name":"INDIRECT_DISPLAY_INFO_FLAGS_CREATED_IDDCX_ADAPTER","features":[54]},{"name":"IOCTL_COLORSPACE_TRANSFORM_QUERY_TARGET_CAPS","features":[54]},{"name":"IOCTL_COLORSPACE_TRANSFORM_SET","features":[54]},{"name":"IOCTL_FSVIDEO_COPY_FRAME_BUFFER","features":[54]},{"name":"IOCTL_FSVIDEO_REVERSE_MOUSE_POINTER","features":[54]},{"name":"IOCTL_FSVIDEO_SET_CURRENT_MODE","features":[54]},{"name":"IOCTL_FSVIDEO_SET_CURSOR_POSITION","features":[54]},{"name":"IOCTL_FSVIDEO_SET_SCREEN_INFORMATION","features":[54]},{"name":"IOCTL_FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[54]},{"name":"IOCTL_MIPI_DSI_QUERY_CAPS","features":[54]},{"name":"IOCTL_MIPI_DSI_RESET","features":[54]},{"name":"IOCTL_MIPI_DSI_TRANSMISSION","features":[54]},{"name":"IOCTL_PANEL_GET_BACKLIGHT_REDUCTION","features":[54]},{"name":"IOCTL_PANEL_GET_BRIGHTNESS","features":[54]},{"name":"IOCTL_PANEL_GET_MANUFACTURING_MODE","features":[54]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_CAPS","features":[54]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_RANGES","features":[54]},{"name":"IOCTL_PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[54]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS","features":[54]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS_STATE","features":[54]},{"name":"IOCTL_SET_ACTIVE_COLOR_PROFILE_NAME","features":[54]},{"name":"IOCTL_VIDEO_DISABLE_CURSOR","features":[54]},{"name":"IOCTL_VIDEO_DISABLE_POINTER","features":[54]},{"name":"IOCTL_VIDEO_DISABLE_VDM","features":[54]},{"name":"IOCTL_VIDEO_ENABLE_CURSOR","features":[54]},{"name":"IOCTL_VIDEO_ENABLE_POINTER","features":[54]},{"name":"IOCTL_VIDEO_ENABLE_VDM","features":[54]},{"name":"IOCTL_VIDEO_ENUM_MONITOR_PDO","features":[54]},{"name":"IOCTL_VIDEO_FREE_PUBLIC_ACCESS_RANGES","features":[54]},{"name":"IOCTL_VIDEO_GET_BANK_SELECT_CODE","features":[54]},{"name":"IOCTL_VIDEO_GET_CHILD_STATE","features":[54]},{"name":"IOCTL_VIDEO_GET_OUTPUT_DEVICE_POWER_STATE","features":[54]},{"name":"IOCTL_VIDEO_GET_POWER_MANAGEMENT","features":[54]},{"name":"IOCTL_VIDEO_HANDLE_VIDEOPARAMETERS","features":[54]},{"name":"IOCTL_VIDEO_INIT_WIN32K_CALLBACKS","features":[54]},{"name":"IOCTL_VIDEO_IS_VGA_DEVICE","features":[54]},{"name":"IOCTL_VIDEO_LOAD_AND_SET_FONT","features":[54]},{"name":"IOCTL_VIDEO_MAP_VIDEO_MEMORY","features":[54]},{"name":"IOCTL_VIDEO_MONITOR_DEVICE","features":[54]},{"name":"IOCTL_VIDEO_PREPARE_FOR_EARECOVERY","features":[54]},{"name":"IOCTL_VIDEO_QUERY_AVAIL_MODES","features":[54]},{"name":"IOCTL_VIDEO_QUERY_COLOR_CAPABILITIES","features":[54]},{"name":"IOCTL_VIDEO_QUERY_CURRENT_MODE","features":[54]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_ATTR","features":[54]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_POSITION","features":[54]},{"name":"IOCTL_VIDEO_QUERY_DISPLAY_BRIGHTNESS","features":[54]},{"name":"IOCTL_VIDEO_QUERY_NUM_AVAIL_MODES","features":[54]},{"name":"IOCTL_VIDEO_QUERY_POINTER_ATTR","features":[54]},{"name":"IOCTL_VIDEO_QUERY_POINTER_CAPABILITIES","features":[54]},{"name":"IOCTL_VIDEO_QUERY_POINTER_POSITION","features":[54]},{"name":"IOCTL_VIDEO_QUERY_PUBLIC_ACCESS_RANGES","features":[54]},{"name":"IOCTL_VIDEO_QUERY_SUPPORTED_BRIGHTNESS","features":[54]},{"name":"IOCTL_VIDEO_REGISTER_VDM","features":[54]},{"name":"IOCTL_VIDEO_RESET_DEVICE","features":[54]},{"name":"IOCTL_VIDEO_RESTORE_HARDWARE_STATE","features":[54]},{"name":"IOCTL_VIDEO_SAVE_HARDWARE_STATE","features":[54]},{"name":"IOCTL_VIDEO_SET_BANK_POSITION","features":[54]},{"name":"IOCTL_VIDEO_SET_CHILD_STATE_CONFIGURATION","features":[54]},{"name":"IOCTL_VIDEO_SET_COLOR_LUT_DATA","features":[54]},{"name":"IOCTL_VIDEO_SET_COLOR_REGISTERS","features":[54]},{"name":"IOCTL_VIDEO_SET_CURRENT_MODE","features":[54]},{"name":"IOCTL_VIDEO_SET_CURSOR_ATTR","features":[54]},{"name":"IOCTL_VIDEO_SET_CURSOR_POSITION","features":[54]},{"name":"IOCTL_VIDEO_SET_DISPLAY_BRIGHTNESS","features":[54]},{"name":"IOCTL_VIDEO_SET_OUTPUT_DEVICE_POWER_STATE","features":[54]},{"name":"IOCTL_VIDEO_SET_PALETTE_REGISTERS","features":[54]},{"name":"IOCTL_VIDEO_SET_POINTER_ATTR","features":[54]},{"name":"IOCTL_VIDEO_SET_POINTER_POSITION","features":[54]},{"name":"IOCTL_VIDEO_SET_POWER_MANAGEMENT","features":[54]},{"name":"IOCTL_VIDEO_SHARE_VIDEO_MEMORY","features":[54]},{"name":"IOCTL_VIDEO_SWITCH_DUALVIEW","features":[54]},{"name":"IOCTL_VIDEO_UNMAP_VIDEO_MEMORY","features":[54]},{"name":"IOCTL_VIDEO_UNSHARE_VIDEO_MEMORY","features":[54]},{"name":"IOCTL_VIDEO_USE_DEVICE_IN_SESSION","features":[54]},{"name":"IOCTL_VIDEO_VALIDATE_CHILD_STATE_CONFIGURATION","features":[54]},{"name":"IViewHelper","features":[54]},{"name":"JOIN_BEVEL","features":[54]},{"name":"JOIN_MITER","features":[54]},{"name":"JOIN_ROUND","features":[54]},{"name":"LA_ALTERNATE","features":[54]},{"name":"LA_GEOMETRIC","features":[54]},{"name":"LA_STARTGAP","features":[54]},{"name":"LA_STYLED","features":[54]},{"name":"LIGATURE","features":[54]},{"name":"LINEATTRS","features":[54]},{"name":"LINEATTRS","features":[54]},{"name":"MAXCHARSETS","features":[54]},{"name":"MAX_PACKET_COUNT","features":[54]},{"name":"MC_APERTURE_GRILL_CATHODE_RAY_TUBE","features":[54]},{"name":"MC_BLUE_DRIVE","features":[54]},{"name":"MC_BLUE_GAIN","features":[54]},{"name":"MC_CAPS_BRIGHTNESS","features":[54]},{"name":"MC_CAPS_COLOR_TEMPERATURE","features":[54]},{"name":"MC_CAPS_CONTRAST","features":[54]},{"name":"MC_CAPS_DEGAUSS","features":[54]},{"name":"MC_CAPS_DISPLAY_AREA_POSITION","features":[54]},{"name":"MC_CAPS_DISPLAY_AREA_SIZE","features":[54]},{"name":"MC_CAPS_MONITOR_TECHNOLOGY_TYPE","features":[54]},{"name":"MC_CAPS_NONE","features":[54]},{"name":"MC_CAPS_RED_GREEN_BLUE_DRIVE","features":[54]},{"name":"MC_CAPS_RED_GREEN_BLUE_GAIN","features":[54]},{"name":"MC_CAPS_RESTORE_FACTORY_COLOR_DEFAULTS","features":[54]},{"name":"MC_CAPS_RESTORE_FACTORY_DEFAULTS","features":[54]},{"name":"MC_COLOR_TEMPERATURE","features":[54]},{"name":"MC_COLOR_TEMPERATURE_10000K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_11500K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_4000K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_5000K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_6500K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_7500K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_8200K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_9300K","features":[54]},{"name":"MC_COLOR_TEMPERATURE_UNKNOWN","features":[54]},{"name":"MC_DISPLAY_TECHNOLOGY_TYPE","features":[54]},{"name":"MC_DRIVE_TYPE","features":[54]},{"name":"MC_ELECTROLUMINESCENT","features":[54]},{"name":"MC_FIELD_EMISSION_DEVICE","features":[54]},{"name":"MC_GAIN_TYPE","features":[54]},{"name":"MC_GREEN_DRIVE","features":[54]},{"name":"MC_GREEN_GAIN","features":[54]},{"name":"MC_HEIGHT","features":[54]},{"name":"MC_HORIZONTAL_POSITION","features":[54]},{"name":"MC_LIQUID_CRYSTAL_ON_SILICON","features":[54]},{"name":"MC_MICROELECTROMECHANICAL","features":[54]},{"name":"MC_MOMENTARY","features":[54]},{"name":"MC_ORGANIC_LIGHT_EMITTING_DIODE","features":[54]},{"name":"MC_PLASMA","features":[54]},{"name":"MC_POSITION_TYPE","features":[54]},{"name":"MC_RED_DRIVE","features":[54]},{"name":"MC_RED_GAIN","features":[54]},{"name":"MC_RESTORE_FACTORY_DEFAULTS_ENABLES_MONITOR_SETTINGS","features":[54]},{"name":"MC_SET_PARAMETER","features":[54]},{"name":"MC_SHADOW_MASK_CATHODE_RAY_TUBE","features":[54]},{"name":"MC_SIZE_TYPE","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_10000K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_11500K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_4000K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_5000K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_6500K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_7500K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_8200K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_9300K","features":[54]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_NONE","features":[54]},{"name":"MC_THIN_FILM_TRANSISTOR","features":[54]},{"name":"MC_TIMING_REPORT","features":[54]},{"name":"MC_VCP_CODE_TYPE","features":[54]},{"name":"MC_VERTICAL_POSITION","features":[54]},{"name":"MC_WIDTH","features":[54]},{"name":"MIPI_DSI_CAPS","features":[54]},{"name":"MIPI_DSI_PACKET","features":[54]},{"name":"MIPI_DSI_RESET","features":[54]},{"name":"MIPI_DSI_TRANSMISSION","features":[54]},{"name":"MS_CDDDEVICEBITMAP","features":[54]},{"name":"MS_NOTSYSTEMMEMORY","features":[54]},{"name":"MS_REUSEDDEVICEBITMAP","features":[54]},{"name":"MS_SHAREDACCESS","features":[54]},{"name":"NumVideoBankTypes","features":[54]},{"name":"OC_BANK_CLIP","features":[54]},{"name":"OPENGL_CMD","features":[54]},{"name":"OPENGL_GETINFO","features":[54]},{"name":"ORIENTATION_PREFERENCE","features":[54]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE","features":[54]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE_FLIPPED","features":[54]},{"name":"ORIENTATION_PREFERENCE_NONE","features":[54]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT","features":[54]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT_FLIPPED","features":[54]},{"name":"OUTPUT_COLOR_ENCODING","features":[54]},{"name":"OUTPUT_COLOR_ENCODING_INTENSITY","features":[54]},{"name":"OUTPUT_COLOR_ENCODING_RGB","features":[54]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR420","features":[54]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR422","features":[54]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR444","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[54]},{"name":"OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[54]},{"name":"OUTPUT_WIRE_FORMAT","features":[54]},{"name":"PALOBJ","features":[54]},{"name":"PAL_BGR","features":[54]},{"name":"PAL_BITFIELDS","features":[54]},{"name":"PAL_CMYK","features":[54]},{"name":"PAL_INDEXED","features":[54]},{"name":"PAL_RGB","features":[54]},{"name":"PANEL_BRIGHTNESS_SENSOR_DATA","features":[54]},{"name":"PANEL_GET_BACKLIGHT_REDUCTION","features":[54]},{"name":"PANEL_GET_BRIGHTNESS","features":[54]},{"name":"PANEL_QUERY_BRIGHTNESS_CAPS","features":[54]},{"name":"PANEL_QUERY_BRIGHTNESS_RANGES","features":[54]},{"name":"PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[54]},{"name":"PANEL_SET_BRIGHTNESS","features":[54]},{"name":"PANEL_SET_BRIGHTNESS_STATE","features":[54]},{"name":"PATHDATA","features":[54]},{"name":"PATHOBJ","features":[54]},{"name":"PATHOBJ_bEnum","features":[54,3]},{"name":"PATHOBJ_bEnumClipLines","features":[54,3]},{"name":"PATHOBJ_vEnumStart","features":[54]},{"name":"PATHOBJ_vEnumStartClipLines","features":[54,3]},{"name":"PATHOBJ_vGetBounds","features":[54]},{"name":"PD_BEGINSUBPATH","features":[54]},{"name":"PD_BEZIERS","features":[54]},{"name":"PD_CLOSEFIGURE","features":[54]},{"name":"PD_ENDSUBPATH","features":[54]},{"name":"PD_RESETSTYLE","features":[54]},{"name":"PERBANDINFO","features":[54,3]},{"name":"PFN","features":[54]},{"name":"PFN_DrvAccumulateD3DDirtyRect","features":[54,3]},{"name":"PFN_DrvAlphaBlend","features":[54,3,14]},{"name":"PFN_DrvAssertMode","features":[54,3]},{"name":"PFN_DrvAssociateSharedSurface","features":[54,3]},{"name":"PFN_DrvBitBlt","features":[54,3]},{"name":"PFN_DrvCompletePDEV","features":[54]},{"name":"PFN_DrvCopyBits","features":[54,3]},{"name":"PFN_DrvCreateDeviceBitmap","features":[54,3,14]},{"name":"PFN_DrvCreateDeviceBitmapEx","features":[54,3,14]},{"name":"PFN_DrvDeleteDeviceBitmap","features":[54]},{"name":"PFN_DrvDeleteDeviceBitmapEx","features":[54]},{"name":"PFN_DrvDeriveSurface","features":[54,3,13,14]},{"name":"PFN_DrvDescribePixelFormat","features":[54,56]},{"name":"PFN_DrvDestroyFont","features":[54,3]},{"name":"PFN_DrvDisableDirectDraw","features":[54]},{"name":"PFN_DrvDisableDriver","features":[54]},{"name":"PFN_DrvDisablePDEV","features":[54]},{"name":"PFN_DrvDisableSurface","features":[54]},{"name":"PFN_DrvDitherColor","features":[54]},{"name":"PFN_DrvDrawEscape","features":[54,3]},{"name":"PFN_DrvEnableDirectDraw","features":[54,3,13,14]},{"name":"PFN_DrvEnableDriver","features":[54,3]},{"name":"PFN_DrvEnablePDEV","features":[54,3,14]},{"name":"PFN_DrvEnableSurface","features":[54]},{"name":"PFN_DrvEndDoc","features":[54,3]},{"name":"PFN_DrvEndDxInterop","features":[54,3]},{"name":"PFN_DrvEscape","features":[54,3]},{"name":"PFN_DrvFillPath","features":[54,3]},{"name":"PFN_DrvFontManagement","features":[54,3]},{"name":"PFN_DrvFree","features":[54]},{"name":"PFN_DrvGetDirectDrawInfo","features":[54,3,13]},{"name":"PFN_DrvGetGlyphMode","features":[54,3]},{"name":"PFN_DrvGetModes","features":[54,3,14]},{"name":"PFN_DrvGetTrueTypeFile","features":[54]},{"name":"PFN_DrvGradientFill","features":[54,3,14]},{"name":"PFN_DrvIcmCheckBitmapBits","features":[54,3]},{"name":"PFN_DrvIcmCreateColorTransform","features":[54,3,14,57]},{"name":"PFN_DrvIcmDeleteColorTransform","features":[54,3]},{"name":"PFN_DrvIcmSetDeviceGammaRamp","features":[54,3]},{"name":"PFN_DrvLineTo","features":[54,3]},{"name":"PFN_DrvLoadFontFile","features":[54,14]},{"name":"PFN_DrvLockDisplayArea","features":[54,3]},{"name":"PFN_DrvMovePointer","features":[54,3]},{"name":"PFN_DrvNextBand","features":[54,3]},{"name":"PFN_DrvNotify","features":[54,3]},{"name":"PFN_DrvPaint","features":[54,3]},{"name":"PFN_DrvPlgBlt","features":[54,3,14]},{"name":"PFN_DrvQueryAdvanceWidths","features":[54,3]},{"name":"PFN_DrvQueryDeviceSupport","features":[54,3]},{"name":"PFN_DrvQueryFont","features":[54,3,14]},{"name":"PFN_DrvQueryFontCaps","features":[54]},{"name":"PFN_DrvQueryFontData","features":[54,3]},{"name":"PFN_DrvQueryFontFile","features":[54]},{"name":"PFN_DrvQueryFontTree","features":[54]},{"name":"PFN_DrvQueryGlyphAttrs","features":[54,3]},{"name":"PFN_DrvQueryPerBandInfo","features":[54,3]},{"name":"PFN_DrvQuerySpoolType","features":[54,3]},{"name":"PFN_DrvQueryTrueTypeOutline","features":[54,3,14]},{"name":"PFN_DrvQueryTrueTypeSection","features":[54,3]},{"name":"PFN_DrvQueryTrueTypeTable","features":[54]},{"name":"PFN_DrvRealizeBrush","features":[54,3]},{"name":"PFN_DrvRenderHint","features":[54]},{"name":"PFN_DrvResetDevice","features":[54]},{"name":"PFN_DrvResetPDEV","features":[54,3]},{"name":"PFN_DrvSaveScreenBits","features":[54,3]},{"name":"PFN_DrvSendPage","features":[54,3]},{"name":"PFN_DrvSetPalette","features":[54,3]},{"name":"PFN_DrvSetPixelFormat","features":[54,3]},{"name":"PFN_DrvSetPointerShape","features":[54,3]},{"name":"PFN_DrvStartBanding","features":[54,3]},{"name":"PFN_DrvStartDoc","features":[54,3]},{"name":"PFN_DrvStartDxInterop","features":[54,3]},{"name":"PFN_DrvStartPage","features":[54,3]},{"name":"PFN_DrvStretchBlt","features":[54,3,14]},{"name":"PFN_DrvStretchBltROP","features":[54,3,14]},{"name":"PFN_DrvStrokeAndFillPath","features":[54,3]},{"name":"PFN_DrvStrokePath","features":[54,3]},{"name":"PFN_DrvSurfaceComplete","features":[54,3]},{"name":"PFN_DrvSwapBuffers","features":[54,3]},{"name":"PFN_DrvSynchronize","features":[54,3]},{"name":"PFN_DrvSynchronizeRedirectionBitmaps","features":[54,3]},{"name":"PFN_DrvSynchronizeSurface","features":[54,3]},{"name":"PFN_DrvTextOut","features":[54,3]},{"name":"PFN_DrvTransparentBlt","features":[54,3]},{"name":"PFN_DrvUnloadFontFile","features":[54,3]},{"name":"PFN_DrvUnlockDisplayArea","features":[54,3]},{"name":"PFN_EngCombineRgn","features":[54,3]},{"name":"PFN_EngCopyRgn","features":[54,3]},{"name":"PFN_EngCreateRectRgn","features":[54,3]},{"name":"PFN_EngDeleteRgn","features":[54,3]},{"name":"PFN_EngIntersectRgn","features":[54,3]},{"name":"PFN_EngSubtractRgn","features":[54,3]},{"name":"PFN_EngUnionRgn","features":[54,3]},{"name":"PFN_EngXorRgn","features":[54,3]},{"name":"PHYSICAL_MONITOR","features":[54,3]},{"name":"PHYSICAL_MONITOR_DESCRIPTION_SIZE","features":[54]},{"name":"PLANAR_HC","features":[54]},{"name":"POINTE","features":[54]},{"name":"POINTE","features":[54]},{"name":"POINTFIX","features":[54]},{"name":"POINTQF","features":[54]},{"name":"PO_ALL_INTEGERS","features":[54]},{"name":"PO_BEZIERS","features":[54]},{"name":"PO_ELLIPSE","features":[54]},{"name":"PO_ENUM_AS_INTEGERS","features":[54]},{"name":"PO_WIDENED","features":[54]},{"name":"PPC_BGR_ORDER_HORIZONTAL_STRIPES","features":[54]},{"name":"PPC_BGR_ORDER_VERTICAL_STRIPES","features":[54]},{"name":"PPC_DEFAULT","features":[54]},{"name":"PPC_RGB_ORDER_HORIZONTAL_STRIPES","features":[54]},{"name":"PPC_RGB_ORDER_VERTICAL_STRIPES","features":[54]},{"name":"PPC_UNDEFINED","features":[54]},{"name":"PPG_DEFAULT","features":[54]},{"name":"PPG_SRGB","features":[54]},{"name":"PRIMARY_ORDER_ABC","features":[54]},{"name":"PRIMARY_ORDER_ACB","features":[54]},{"name":"PRIMARY_ORDER_BAC","features":[54]},{"name":"PRIMARY_ORDER_BCA","features":[54]},{"name":"PRIMARY_ORDER_CAB","features":[54]},{"name":"PRIMARY_ORDER_CBA","features":[54]},{"name":"PVIDEO_WIN32K_CALLOUT","features":[54]},{"name":"QAW_GETEASYWIDTHS","features":[54]},{"name":"QAW_GETWIDTHS","features":[54]},{"name":"QC_1BIT","features":[54]},{"name":"QC_4BIT","features":[54]},{"name":"QC_OUTLINES","features":[54]},{"name":"QDA_ACCELERATION_LEVEL","features":[54]},{"name":"QDA_RESERVED","features":[54]},{"name":"QDC_ALL_PATHS","features":[54]},{"name":"QDC_DATABASE_CURRENT","features":[54]},{"name":"QDC_INCLUDE_HMD","features":[54]},{"name":"QDC_ONLY_ACTIVE_PATHS","features":[54]},{"name":"QDC_VIRTUAL_MODE_AWARE","features":[54]},{"name":"QDC_VIRTUAL_REFRESH_RATE_AWARE","features":[54]},{"name":"QDS_CHECKJPEGFORMAT","features":[54]},{"name":"QDS_CHECKPNGFORMAT","features":[54]},{"name":"QFD_GLYPHANDBITMAP","features":[54]},{"name":"QFD_GLYPHANDOUTLINE","features":[54]},{"name":"QFD_MAXEXTENTS","features":[54]},{"name":"QFD_TT_GLYPHANDBITMAP","features":[54]},{"name":"QFD_TT_GRAY1_BITMAP","features":[54]},{"name":"QFD_TT_GRAY2_BITMAP","features":[54]},{"name":"QFD_TT_GRAY4_BITMAP","features":[54]},{"name":"QFD_TT_GRAY8_BITMAP","features":[54]},{"name":"QFD_TT_MONO_BITMAP","features":[54]},{"name":"QFF_DESCRIPTION","features":[54]},{"name":"QFF_NUMFACES","features":[54]},{"name":"QFT_GLYPHSET","features":[54]},{"name":"QFT_KERNPAIRS","features":[54]},{"name":"QFT_LIGATURES","features":[54]},{"name":"QSA_3DNOW","features":[54]},{"name":"QSA_MMX","features":[54]},{"name":"QSA_SSE","features":[54]},{"name":"QSA_SSE1","features":[54]},{"name":"QSA_SSE2","features":[54]},{"name":"QSA_SSE3","features":[54]},{"name":"QUERY_DISPLAY_CONFIG_FLAGS","features":[54]},{"name":"QueryDisplayConfig","features":[54,3]},{"name":"RB_DITHERCOLOR","features":[54]},{"name":"RECTFX","features":[54]},{"name":"RUN","features":[54]},{"name":"RestoreMonitorFactoryColorDefaults","features":[54,3]},{"name":"RestoreMonitorFactoryDefaults","features":[54,3]},{"name":"SDC_ALLOW_CHANGES","features":[54]},{"name":"SDC_ALLOW_PATH_ORDER_CHANGES","features":[54]},{"name":"SDC_APPLY","features":[54]},{"name":"SDC_FORCE_MODE_ENUMERATION","features":[54]},{"name":"SDC_NO_OPTIMIZATION","features":[54]},{"name":"SDC_PATH_PERSIST_IF_REQUIRED","features":[54]},{"name":"SDC_SAVE_TO_DATABASE","features":[54]},{"name":"SDC_TOPOLOGY_CLONE","features":[54]},{"name":"SDC_TOPOLOGY_EXTEND","features":[54]},{"name":"SDC_TOPOLOGY_EXTERNAL","features":[54]},{"name":"SDC_TOPOLOGY_INTERNAL","features":[54]},{"name":"SDC_TOPOLOGY_SUPPLIED","features":[54]},{"name":"SDC_USE_DATABASE_CURRENT","features":[54]},{"name":"SDC_USE_SUPPLIED_DISPLAY_CONFIG","features":[54]},{"name":"SDC_VALIDATE","features":[54]},{"name":"SDC_VIRTUAL_MODE_AWARE","features":[54]},{"name":"SDC_VIRTUAL_REFRESH_RATE_AWARE","features":[54]},{"name":"SETCONFIGURATION_STATUS_ADDITIONAL","features":[54]},{"name":"SETCONFIGURATION_STATUS_APPLIED","features":[54]},{"name":"SETCONFIGURATION_STATUS_OVERRIDDEN","features":[54]},{"name":"SET_ACTIVE_COLOR_PROFILE_NAME","features":[54]},{"name":"SET_DISPLAY_CONFIG_FLAGS","features":[54]},{"name":"SGI_EXTRASPACE","features":[54]},{"name":"SORTCOMP","features":[54]},{"name":"SO_BREAK_EXTRA","features":[54]},{"name":"SO_CHARACTER_EXTRA","features":[54]},{"name":"SO_CHAR_INC_EQUAL_BM_BASE","features":[54]},{"name":"SO_DO_NOT_SUBSTITUTE_DEVICE_FONT","features":[54]},{"name":"SO_DXDY","features":[54]},{"name":"SO_ESC_NOT_ORIENT","features":[54]},{"name":"SO_FLAG_DEFAULT_PLACEMENT","features":[54]},{"name":"SO_GLYPHINDEX_TEXTOUT","features":[54]},{"name":"SO_HORIZONTAL","features":[54]},{"name":"SO_MAXEXT_EQUAL_BM_SIDE","features":[54]},{"name":"SO_REVERSED","features":[54]},{"name":"SO_VERTICAL","features":[54]},{"name":"SO_ZERO_BEARINGS","features":[54]},{"name":"SPS_ACCEPT_EXCLUDE","features":[54]},{"name":"SPS_ACCEPT_NOEXCLUDE","features":[54]},{"name":"SPS_ACCEPT_SYNCHRONOUS","features":[54]},{"name":"SPS_ALPHA","features":[54]},{"name":"SPS_ANIMATESTART","features":[54]},{"name":"SPS_ANIMATEUPDATE","features":[54]},{"name":"SPS_ASYNCCHANGE","features":[54]},{"name":"SPS_CHANGE","features":[54]},{"name":"SPS_DECLINE","features":[54]},{"name":"SPS_ERROR","features":[54]},{"name":"SPS_FLAGSMASK","features":[54]},{"name":"SPS_FREQMASK","features":[54]},{"name":"SPS_LENGTHMASK","features":[54]},{"name":"SPS_RESERVED","features":[54]},{"name":"SPS_RESERVED1","features":[54]},{"name":"SS_FREE","features":[54]},{"name":"SS_RESTORE","features":[54]},{"name":"SS_SAVE","features":[54]},{"name":"STROBJ","features":[54,3]},{"name":"STROBJ_bEnum","features":[54,3]},{"name":"STROBJ_bEnumPositionsOnly","features":[54,3]},{"name":"STROBJ_bGetAdvanceWidths","features":[54,3]},{"name":"STROBJ_dwGetCodePage","features":[54,3]},{"name":"STROBJ_vEnumStart","features":[54,3]},{"name":"STYPE_BITMAP","features":[54]},{"name":"STYPE_DEVBITMAP","features":[54]},{"name":"SURFOBJ","features":[54,3]},{"name":"S_INIT","features":[54]},{"name":"SaveCurrentMonitorSettings","features":[54,3]},{"name":"SaveCurrentSettings","features":[54,3]},{"name":"SetDisplayAutoRotationPreferences","features":[54,3]},{"name":"SetDisplayConfig","features":[54,3]},{"name":"SetMonitorBrightness","features":[54,3]},{"name":"SetMonitorColorTemperature","features":[54,3]},{"name":"SetMonitorContrast","features":[54,3]},{"name":"SetMonitorDisplayAreaPosition","features":[54,3]},{"name":"SetMonitorDisplayAreaSize","features":[54,3]},{"name":"SetMonitorRedGreenOrBlueDrive","features":[54,3]},{"name":"SetMonitorRedGreenOrBlueGain","features":[54,3]},{"name":"SetVCPFeature","features":[54,3]},{"name":"Sources","features":[54]},{"name":"TC_PATHOBJ","features":[54]},{"name":"TC_RECTANGLES","features":[54]},{"name":"TTO_METRICS_ONLY","features":[54]},{"name":"TTO_QUBICS","features":[54]},{"name":"TTO_UNHINTED","features":[54]},{"name":"TYPE1_FONT","features":[54,3]},{"name":"VGA_CHAR","features":[54]},{"name":"VIDEOPARAMETERS","features":[54]},{"name":"VIDEO_BANK_SELECT","features":[54]},{"name":"VIDEO_BANK_TYPE","features":[54]},{"name":"VIDEO_BRIGHTNESS_POLICY","features":[54,3]},{"name":"VIDEO_CLUT","features":[54]},{"name":"VIDEO_CLUTDATA","features":[54]},{"name":"VIDEO_COLOR_CAPABILITIES","features":[54]},{"name":"VIDEO_COLOR_LUT_DATA","features":[54]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_PRIVATEFORMAT","features":[54]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_RGB256WORDS","features":[54]},{"name":"VIDEO_CURSOR_ATTRIBUTES","features":[54]},{"name":"VIDEO_CURSOR_POSITION","features":[54]},{"name":"VIDEO_DEVICE_COLOR","features":[54]},{"name":"VIDEO_DEVICE_NAME","features":[54]},{"name":"VIDEO_DEVICE_SESSION_STATUS","features":[54]},{"name":"VIDEO_DUALVIEW_PRIMARY","features":[54]},{"name":"VIDEO_DUALVIEW_REMOVABLE","features":[54]},{"name":"VIDEO_DUALVIEW_SECONDARY","features":[54]},{"name":"VIDEO_DUALVIEW_WDDM_VGA","features":[54]},{"name":"VIDEO_HARDWARE_STATE","features":[54]},{"name":"VIDEO_HARDWARE_STATE_HEADER","features":[54]},{"name":"VIDEO_LOAD_FONT_INFORMATION","features":[54]},{"name":"VIDEO_LUT_RGB256WORDS","features":[54]},{"name":"VIDEO_MAX_REASON","features":[54]},{"name":"VIDEO_MEMORY","features":[54]},{"name":"VIDEO_MEMORY_INFORMATION","features":[54]},{"name":"VIDEO_MODE","features":[54]},{"name":"VIDEO_MODE_ANIMATE_START","features":[54]},{"name":"VIDEO_MODE_ANIMATE_UPDATE","features":[54]},{"name":"VIDEO_MODE_ASYNC_POINTER","features":[54]},{"name":"VIDEO_MODE_BANKED","features":[54]},{"name":"VIDEO_MODE_COLOR","features":[54]},{"name":"VIDEO_MODE_COLOR_POINTER","features":[54]},{"name":"VIDEO_MODE_GRAPHICS","features":[54]},{"name":"VIDEO_MODE_INFORMATION","features":[54]},{"name":"VIDEO_MODE_INTERLACED","features":[54]},{"name":"VIDEO_MODE_LINEAR","features":[54]},{"name":"VIDEO_MODE_MANAGED_PALETTE","features":[54]},{"name":"VIDEO_MODE_MAP_MEM_LINEAR","features":[54]},{"name":"VIDEO_MODE_MONO_POINTER","features":[54]},{"name":"VIDEO_MODE_NO_64_BIT_ACCESS","features":[54]},{"name":"VIDEO_MODE_NO_OFF_SCREEN","features":[54]},{"name":"VIDEO_MODE_NO_ZERO_MEMORY","features":[54]},{"name":"VIDEO_MODE_PALETTE_DRIVEN","features":[54]},{"name":"VIDEO_MONITOR_DESCRIPTOR","features":[54]},{"name":"VIDEO_NUM_MODES","features":[54]},{"name":"VIDEO_OPTIONAL_GAMMET_TABLE","features":[54]},{"name":"VIDEO_PALETTE_DATA","features":[54]},{"name":"VIDEO_PERFORMANCE_COUNTER","features":[54]},{"name":"VIDEO_POINTER_ATTRIBUTES","features":[54]},{"name":"VIDEO_POINTER_CAPABILITIES","features":[54]},{"name":"VIDEO_POINTER_POSITION","features":[54]},{"name":"VIDEO_POWER_MANAGEMENT","features":[54]},{"name":"VIDEO_POWER_STATE","features":[54]},{"name":"VIDEO_PUBLIC_ACCESS_RANGES","features":[54]},{"name":"VIDEO_QUERY_PERFORMANCE_COUNTER","features":[54]},{"name":"VIDEO_REASON_ALLOCATION","features":[54]},{"name":"VIDEO_REASON_CONFIGURATION","features":[54]},{"name":"VIDEO_REASON_FAILED_ROTATION","features":[54]},{"name":"VIDEO_REASON_LOCK","features":[54]},{"name":"VIDEO_REASON_NONE","features":[54]},{"name":"VIDEO_REASON_POLICY1","features":[54]},{"name":"VIDEO_REASON_POLICY2","features":[54]},{"name":"VIDEO_REASON_POLICY3","features":[54]},{"name":"VIDEO_REASON_POLICY4","features":[54]},{"name":"VIDEO_REASON_SCRATCH","features":[54]},{"name":"VIDEO_REGISTER_VDM","features":[54]},{"name":"VIDEO_SHARE_MEMORY","features":[54,3]},{"name":"VIDEO_SHARE_MEMORY_INFORMATION","features":[54]},{"name":"VIDEO_STATE_NON_STANDARD_VGA","features":[54]},{"name":"VIDEO_STATE_PACKED_CHAIN4_MODE","features":[54]},{"name":"VIDEO_STATE_UNEMULATED_VGA_STATE","features":[54]},{"name":"VIDEO_VDM","features":[54,3]},{"name":"VIDEO_WIN32K_CALLBACKS","features":[54,3]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS","features":[54,3]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS_TYPE","features":[54]},{"name":"VideoBanked1R1W","features":[54]},{"name":"VideoBanked1RW","features":[54]},{"name":"VideoBanked2RW","features":[54]},{"name":"VideoBlackScreenDiagnostics","features":[54]},{"name":"VideoDesktopDuplicationChange","features":[54]},{"name":"VideoDisableMultiPlaneOverlay","features":[54]},{"name":"VideoDxgkDisplaySwitchCallout","features":[54]},{"name":"VideoDxgkFindAdapterTdrCallout","features":[54]},{"name":"VideoDxgkHardwareProtectionTeardown","features":[54]},{"name":"VideoEnumChildPdoNotifyCallout","features":[54]},{"name":"VideoFindAdapterCallout","features":[54]},{"name":"VideoNotBanked","features":[54]},{"name":"VideoPnpNotifyCallout","features":[54]},{"name":"VideoPowerHibernate","features":[54]},{"name":"VideoPowerMaximum","features":[54]},{"name":"VideoPowerNotifyCallout","features":[54]},{"name":"VideoPowerOff","features":[54]},{"name":"VideoPowerOn","features":[54]},{"name":"VideoPowerShutdown","features":[54]},{"name":"VideoPowerStandBy","features":[54]},{"name":"VideoPowerSuspend","features":[54]},{"name":"VideoPowerUnspecified","features":[54]},{"name":"VideoRepaintDesktop","features":[54]},{"name":"VideoUpdateCursor","features":[54]},{"name":"WCRUN","features":[54]},{"name":"WINDDI_MAXSETPALETTECOLORINDEX","features":[54]},{"name":"WINDDI_MAXSETPALETTECOLORS","features":[54]},{"name":"WINDDI_MAX_BROADCAST_CONTEXT","features":[54]},{"name":"WNDOBJ","features":[54,3]},{"name":"WNDOBJCHANGEPROC","features":[54,3]},{"name":"WNDOBJ_SETUP","features":[54]},{"name":"WOC_CHANGED","features":[54]},{"name":"WOC_DELETE","features":[54]},{"name":"WOC_DRAWN","features":[54]},{"name":"WOC_RGN_CLIENT","features":[54]},{"name":"WOC_RGN_CLIENT_DELTA","features":[54]},{"name":"WOC_RGN_SPRITE","features":[54]},{"name":"WOC_RGN_SURFACE","features":[54]},{"name":"WOC_RGN_SURFACE_DELTA","features":[54]},{"name":"WOC_SPRITE_NO_OVERLAP","features":[54]},{"name":"WOC_SPRITE_OVERLAP","features":[54]},{"name":"WO_DRAW_NOTIFY","features":[54]},{"name":"WO_RGN_CLIENT","features":[54]},{"name":"WO_RGN_CLIENT_DELTA","features":[54]},{"name":"WO_RGN_DESKTOP_COORD","features":[54]},{"name":"WO_RGN_SPRITE","features":[54]},{"name":"WO_RGN_SURFACE","features":[54]},{"name":"WO_RGN_SURFACE_DELTA","features":[54]},{"name":"WO_RGN_UPDATE_ALL","features":[54]},{"name":"WO_RGN_WINDOW","features":[54]},{"name":"WO_SPRITE_NOTIFY","features":[54]},{"name":"WVIDEO_DEVICE_NAME","features":[54]},{"name":"XFORML","features":[54]},{"name":"XFORML","features":[54]},{"name":"XFORMOBJ","features":[54]},{"name":"XFORMOBJ_bApplyXform","features":[54,3]},{"name":"XFORMOBJ_iGetXform","features":[54]},{"name":"XF_INV_FXTOL","features":[54]},{"name":"XF_INV_LTOL","features":[54]},{"name":"XF_LTOFX","features":[54]},{"name":"XF_LTOL","features":[54]},{"name":"XLATEOBJ","features":[54]},{"name":"XLATEOBJ_cGetPalette","features":[54]},{"name":"XLATEOBJ_hGetColorTransform","features":[54,3]},{"name":"XLATEOBJ_iXlate","features":[54]},{"name":"XLATEOBJ_piVector","features":[54]},{"name":"XO_DESTBITFIELDS","features":[54]},{"name":"XO_DESTDCPALETTE","features":[54]},{"name":"XO_DESTPALETTE","features":[54]},{"name":"XO_DEVICE_ICM","features":[54]},{"name":"XO_FROM_CMYK","features":[54]},{"name":"XO_HOST_ICM","features":[54]},{"name":"XO_SRCBITFIELDS","features":[54]},{"name":"XO_SRCPALETTE","features":[54]},{"name":"XO_TABLE","features":[54]},{"name":"XO_TO_MONO","features":[54]},{"name":"XO_TRIVIAL","features":[54]}],"377":[{"name":"ADDRESS_FAMILY_VALUE_NAME","features":[58]},{"name":"FAULT_ACTION_SPECIFIC_BASE","features":[58]},{"name":"FAULT_ACTION_SPECIFIC_MAX","features":[58]},{"name":"FAULT_DEVICE_INTERNAL_ERROR","features":[58]},{"name":"FAULT_INVALID_ACTION","features":[58]},{"name":"FAULT_INVALID_ARG","features":[58]},{"name":"FAULT_INVALID_SEQUENCE_NUMBER","features":[58]},{"name":"FAULT_INVALID_VARIABLE","features":[58]},{"name":"HSWDEVICE","features":[58]},{"name":"IUPnPAddressFamilyControl","features":[58]},{"name":"IUPnPAsyncResult","features":[58]},{"name":"IUPnPDescriptionDocument","features":[58]},{"name":"IUPnPDescriptionDocumentCallback","features":[58]},{"name":"IUPnPDevice","features":[58]},{"name":"IUPnPDeviceControl","features":[58]},{"name":"IUPnPDeviceControlHttpHeaders","features":[58]},{"name":"IUPnPDeviceDocumentAccess","features":[58]},{"name":"IUPnPDeviceDocumentAccessEx","features":[58]},{"name":"IUPnPDeviceFinder","features":[58]},{"name":"IUPnPDeviceFinderAddCallbackWithInterface","features":[58]},{"name":"IUPnPDeviceFinderCallback","features":[58]},{"name":"IUPnPDeviceProvider","features":[58]},{"name":"IUPnPDevices","features":[58]},{"name":"IUPnPEventSink","features":[58]},{"name":"IUPnPEventSource","features":[58]},{"name":"IUPnPHttpHeaderControl","features":[58]},{"name":"IUPnPRegistrar","features":[58]},{"name":"IUPnPRemoteEndpointInfo","features":[58]},{"name":"IUPnPReregistrar","features":[58]},{"name":"IUPnPService","features":[58]},{"name":"IUPnPServiceAsync","features":[58]},{"name":"IUPnPServiceCallback","features":[58]},{"name":"IUPnPServiceDocumentAccess","features":[58]},{"name":"IUPnPServiceEnumProperty","features":[58]},{"name":"IUPnPServices","features":[58]},{"name":"REMOTE_ADDRESS_VALUE_NAME","features":[58]},{"name":"SWDeviceCapabilitiesDriverRequired","features":[58]},{"name":"SWDeviceCapabilitiesNoDisplayInUI","features":[58]},{"name":"SWDeviceCapabilitiesNone","features":[58]},{"name":"SWDeviceCapabilitiesRemovable","features":[58]},{"name":"SWDeviceCapabilitiesSilentInstall","features":[58]},{"name":"SWDeviceLifetimeHandle","features":[58]},{"name":"SWDeviceLifetimeMax","features":[58]},{"name":"SWDeviceLifetimeParentPresent","features":[58]},{"name":"SW_DEVICE_CAPABILITIES","features":[58]},{"name":"SW_DEVICE_CREATE_CALLBACK","features":[58]},{"name":"SW_DEVICE_CREATE_INFO","features":[58,6]},{"name":"SW_DEVICE_LIFETIME","features":[58]},{"name":"SwDeviceClose","features":[58]},{"name":"SwDeviceCreate","features":[58,1,6]},{"name":"SwDeviceGetLifetime","features":[58]},{"name":"SwDeviceInterfacePropertySet","features":[58,1]},{"name":"SwDeviceInterfaceRegister","features":[58,1,3]},{"name":"SwDeviceInterfaceSetState","features":[58,3]},{"name":"SwDevicePropertySet","features":[58,1]},{"name":"SwDeviceSetLifetime","features":[58]},{"name":"SwMemFree","features":[58]},{"name":"UPNP_ADDRESSFAMILY_BOTH","features":[58]},{"name":"UPNP_ADDRESSFAMILY_IPv4","features":[58]},{"name":"UPNP_ADDRESSFAMILY_IPv6","features":[58]},{"name":"UPNP_E_ACTION_REQUEST_FAILED","features":[58]},{"name":"UPNP_E_ACTION_SPECIFIC_BASE","features":[58]},{"name":"UPNP_E_DEVICE_ELEMENT_EXPECTED","features":[58]},{"name":"UPNP_E_DEVICE_ERROR","features":[58]},{"name":"UPNP_E_DEVICE_NODE_INCOMPLETE","features":[58]},{"name":"UPNP_E_DEVICE_NOTREGISTERED","features":[58]},{"name":"UPNP_E_DEVICE_RUNNING","features":[58]},{"name":"UPNP_E_DEVICE_TIMEOUT","features":[58]},{"name":"UPNP_E_DUPLICATE_NOT_ALLOWED","features":[58]},{"name":"UPNP_E_DUPLICATE_SERVICE_ID","features":[58]},{"name":"UPNP_E_ERROR_PROCESSING_RESPONSE","features":[58]},{"name":"UPNP_E_EVENT_SUBSCRIPTION_FAILED","features":[58]},{"name":"UPNP_E_ICON_ELEMENT_EXPECTED","features":[58]},{"name":"UPNP_E_ICON_NODE_INCOMPLETE","features":[58]},{"name":"UPNP_E_INVALID_ACTION","features":[58]},{"name":"UPNP_E_INVALID_ARGUMENTS","features":[58]},{"name":"UPNP_E_INVALID_DESCRIPTION","features":[58]},{"name":"UPNP_E_INVALID_DOCUMENT","features":[58]},{"name":"UPNP_E_INVALID_ICON","features":[58]},{"name":"UPNP_E_INVALID_ROOT_NAMESPACE","features":[58]},{"name":"UPNP_E_INVALID_SERVICE","features":[58]},{"name":"UPNP_E_INVALID_VARIABLE","features":[58]},{"name":"UPNP_E_INVALID_XML","features":[58]},{"name":"UPNP_E_OUT_OF_SYNC","features":[58]},{"name":"UPNP_E_PROTOCOL_ERROR","features":[58]},{"name":"UPNP_E_REQUIRED_ELEMENT_ERROR","features":[58]},{"name":"UPNP_E_ROOT_ELEMENT_EXPECTED","features":[58]},{"name":"UPNP_E_SERVICE_ELEMENT_EXPECTED","features":[58]},{"name":"UPNP_E_SERVICE_NODE_INCOMPLETE","features":[58]},{"name":"UPNP_E_SUFFIX_TOO_LONG","features":[58]},{"name":"UPNP_E_TRANSPORT_ERROR","features":[58]},{"name":"UPNP_E_URLBASE_PRESENT","features":[58]},{"name":"UPNP_E_VALUE_TOO_LONG","features":[58]},{"name":"UPNP_E_VARIABLE_VALUE_UNKNOWN","features":[58]},{"name":"UPNP_SERVICE_DELAY_SCPD_AND_SUBSCRIPTION","features":[58]},{"name":"UPnPDescriptionDocument","features":[58]},{"name":"UPnPDescriptionDocumentEx","features":[58]},{"name":"UPnPDevice","features":[58]},{"name":"UPnPDeviceFinder","features":[58]},{"name":"UPnPDeviceFinderEx","features":[58]},{"name":"UPnPDevices","features":[58]},{"name":"UPnPRegistrar","features":[58]},{"name":"UPnPRemoteEndpointInfo","features":[58]},{"name":"UPnPService","features":[58]},{"name":"UPnPServices","features":[58]}],"378":[{"name":"CF_MSFAXSRV_DEVICE_ID","features":[59]},{"name":"CF_MSFAXSRV_FSP_GUID","features":[59]},{"name":"CF_MSFAXSRV_ROUTEEXT_NAME","features":[59]},{"name":"CF_MSFAXSRV_ROUTING_METHOD_GUID","features":[59]},{"name":"CF_MSFAXSRV_SERVER_NAME","features":[59]},{"name":"CLSID_Sti","features":[59]},{"name":"CanSendToFaxRecipient","features":[59,3]},{"name":"DEVPKEY_WIA_DeviceType","features":[59,1]},{"name":"DEVPKEY_WIA_USDClassId","features":[59,1]},{"name":"DEV_ID_SRC_FAX","features":[59]},{"name":"DEV_ID_SRC_TAPI","features":[59]},{"name":"DRT_EMAIL","features":[59]},{"name":"DRT_INBOX","features":[59]},{"name":"DRT_NONE","features":[59]},{"name":"FAXDEVRECEIVE_SIZE","features":[59]},{"name":"FAXDEVREPORTSTATUS_SIZE","features":[59]},{"name":"FAXLOG_CATEGORY_INBOUND","features":[59]},{"name":"FAXLOG_CATEGORY_INIT","features":[59]},{"name":"FAXLOG_CATEGORY_OUTBOUND","features":[59]},{"name":"FAXLOG_CATEGORY_UNKNOWN","features":[59]},{"name":"FAXLOG_LEVEL_MAX","features":[59]},{"name":"FAXLOG_LEVEL_MED","features":[59]},{"name":"FAXLOG_LEVEL_MIN","features":[59]},{"name":"FAXLOG_LEVEL_NONE","features":[59]},{"name":"FAXROUTE_ENABLE","features":[59]},{"name":"FAXSRV_DEVICE_NODETYPE_GUID","features":[59]},{"name":"FAXSRV_DEVICE_PROVIDER_NODETYPE_GUID","features":[59]},{"name":"FAXSRV_ROUTING_METHOD_NODETYPE_GUID","features":[59]},{"name":"FAX_ACCESS_RIGHTS_ENUM","features":[59]},{"name":"FAX_ACCESS_RIGHTS_ENUM_2","features":[59]},{"name":"FAX_ACCOUNT_EVENTS_TYPE_ENUM","features":[59]},{"name":"FAX_CONFIGURATIONA","features":[59,3]},{"name":"FAX_CONFIGURATIONW","features":[59,3]},{"name":"FAX_CONFIG_QUERY","features":[59]},{"name":"FAX_CONFIG_SET","features":[59]},{"name":"FAX_CONTEXT_INFOA","features":[59,14]},{"name":"FAX_CONTEXT_INFOW","features":[59,14]},{"name":"FAX_COVERPAGE_INFOA","features":[59,3]},{"name":"FAX_COVERPAGE_INFOW","features":[59,3]},{"name":"FAX_COVERPAGE_TYPE_ENUM","features":[59]},{"name":"FAX_DEVICE_RECEIVE_MODE_ENUM","features":[59]},{"name":"FAX_DEVICE_STATUSA","features":[59,3]},{"name":"FAX_DEVICE_STATUSW","features":[59,3]},{"name":"FAX_DEV_STATUS","features":[59]},{"name":"FAX_ENUM_DELIVERY_REPORT_TYPES","features":[59]},{"name":"FAX_ENUM_DEVICE_ID_SOURCE","features":[59]},{"name":"FAX_ENUM_JOB_COMMANDS","features":[59]},{"name":"FAX_ENUM_JOB_SEND_ATTRIBUTES","features":[59]},{"name":"FAX_ENUM_LOG_CATEGORIES","features":[59]},{"name":"FAX_ENUM_LOG_LEVELS","features":[59]},{"name":"FAX_ENUM_PORT_OPEN_TYPE","features":[59]},{"name":"FAX_ERR_BAD_GROUP_CONFIGURATION","features":[59]},{"name":"FAX_ERR_DEVICE_NUM_LIMIT_EXCEEDED","features":[59]},{"name":"FAX_ERR_DIRECTORY_IN_USE","features":[59]},{"name":"FAX_ERR_END","features":[59]},{"name":"FAX_ERR_FILE_ACCESS_DENIED","features":[59]},{"name":"FAX_ERR_GROUP_IN_USE","features":[59]},{"name":"FAX_ERR_GROUP_NOT_FOUND","features":[59]},{"name":"FAX_ERR_MESSAGE_NOT_FOUND","features":[59]},{"name":"FAX_ERR_NOT_NTFS","features":[59]},{"name":"FAX_ERR_NOT_SUPPORTED_ON_THIS_SKU","features":[59]},{"name":"FAX_ERR_RECIPIENTS_LIMIT","features":[59]},{"name":"FAX_ERR_RULE_NOT_FOUND","features":[59]},{"name":"FAX_ERR_SRV_OUTOFMEMORY","features":[59]},{"name":"FAX_ERR_START","features":[59]},{"name":"FAX_ERR_VERSION_MISMATCH","features":[59]},{"name":"FAX_EVENTA","features":[59,3]},{"name":"FAX_EVENTW","features":[59,3]},{"name":"FAX_E_BAD_GROUP_CONFIGURATION","features":[59]},{"name":"FAX_E_DEVICE_NUM_LIMIT_EXCEEDED","features":[59]},{"name":"FAX_E_DIRECTORY_IN_USE","features":[59]},{"name":"FAX_E_FILE_ACCESS_DENIED","features":[59]},{"name":"FAX_E_GROUP_IN_USE","features":[59]},{"name":"FAX_E_GROUP_NOT_FOUND","features":[59]},{"name":"FAX_E_MESSAGE_NOT_FOUND","features":[59]},{"name":"FAX_E_NOT_NTFS","features":[59]},{"name":"FAX_E_NOT_SUPPORTED_ON_THIS_SKU","features":[59]},{"name":"FAX_E_RECIPIENTS_LIMIT","features":[59]},{"name":"FAX_E_RULE_NOT_FOUND","features":[59]},{"name":"FAX_E_SRV_OUTOFMEMORY","features":[59]},{"name":"FAX_E_VERSION_MISMATCH","features":[59]},{"name":"FAX_GLOBAL_ROUTING_INFOA","features":[59]},{"name":"FAX_GLOBAL_ROUTING_INFOW","features":[59]},{"name":"FAX_GROUP_STATUS_ENUM","features":[59]},{"name":"FAX_JOB_ENTRYA","features":[59,3]},{"name":"FAX_JOB_ENTRYW","features":[59,3]},{"name":"FAX_JOB_EXTENDED_STATUS_ENUM","features":[59]},{"name":"FAX_JOB_MANAGE","features":[59]},{"name":"FAX_JOB_OPERATIONS_ENUM","features":[59]},{"name":"FAX_JOB_PARAMA","features":[59,3]},{"name":"FAX_JOB_PARAMW","features":[59,3]},{"name":"FAX_JOB_QUERY","features":[59]},{"name":"FAX_JOB_STATUS_ENUM","features":[59]},{"name":"FAX_JOB_SUBMIT","features":[59]},{"name":"FAX_JOB_TYPE_ENUM","features":[59]},{"name":"FAX_LOG_CATEGORYA","features":[59]},{"name":"FAX_LOG_CATEGORYW","features":[59]},{"name":"FAX_LOG_LEVEL_ENUM","features":[59]},{"name":"FAX_PORT_INFOA","features":[59]},{"name":"FAX_PORT_INFOW","features":[59]},{"name":"FAX_PORT_QUERY","features":[59]},{"name":"FAX_PORT_SET","features":[59]},{"name":"FAX_PRINT_INFOA","features":[59]},{"name":"FAX_PRINT_INFOW","features":[59]},{"name":"FAX_PRIORITY_TYPE_ENUM","features":[59]},{"name":"FAX_PROVIDER_STATUS_ENUM","features":[59]},{"name":"FAX_RECEIPT_TYPE_ENUM","features":[59]},{"name":"FAX_RECEIVE","features":[59]},{"name":"FAX_ROUTE","features":[59]},{"name":"FAX_ROUTE_CALLBACKROUTINES","features":[59,3]},{"name":"FAX_ROUTING_METHODA","features":[59,3]},{"name":"FAX_ROUTING_METHODW","features":[59,3]},{"name":"FAX_ROUTING_RULE_CODE_ENUM","features":[59]},{"name":"FAX_RULE_STATUS_ENUM","features":[59]},{"name":"FAX_SCHEDULE_TYPE_ENUM","features":[59]},{"name":"FAX_SEND","features":[59,3]},{"name":"FAX_SERVER_APIVERSION_ENUM","features":[59]},{"name":"FAX_SERVER_EVENTS_TYPE_ENUM","features":[59]},{"name":"FAX_SMTP_AUTHENTICATION_TYPE_ENUM","features":[59]},{"name":"FAX_TIME","features":[59]},{"name":"FEI_ABORTING","features":[59]},{"name":"FEI_ANSWERED","features":[59]},{"name":"FEI_BAD_ADDRESS","features":[59]},{"name":"FEI_BUSY","features":[59]},{"name":"FEI_CALL_BLACKLISTED","features":[59]},{"name":"FEI_CALL_DELAYED","features":[59]},{"name":"FEI_COMPLETED","features":[59]},{"name":"FEI_DELETED","features":[59]},{"name":"FEI_DIALING","features":[59]},{"name":"FEI_DISCONNECTED","features":[59]},{"name":"FEI_FATAL_ERROR","features":[59]},{"name":"FEI_FAXSVC_ENDED","features":[59]},{"name":"FEI_FAXSVC_STARTED","features":[59]},{"name":"FEI_HANDLED","features":[59]},{"name":"FEI_IDLE","features":[59]},{"name":"FEI_INITIALIZING","features":[59]},{"name":"FEI_JOB_QUEUED","features":[59]},{"name":"FEI_LINE_UNAVAILABLE","features":[59]},{"name":"FEI_MODEM_POWERED_OFF","features":[59]},{"name":"FEI_MODEM_POWERED_ON","features":[59]},{"name":"FEI_NEVENTS","features":[59]},{"name":"FEI_NOT_FAX_CALL","features":[59]},{"name":"FEI_NO_ANSWER","features":[59]},{"name":"FEI_NO_DIAL_TONE","features":[59]},{"name":"FEI_RECEIVING","features":[59]},{"name":"FEI_RINGING","features":[59]},{"name":"FEI_ROUTING","features":[59]},{"name":"FEI_SENDING","features":[59]},{"name":"FPF_RECEIVE","features":[59]},{"name":"FPF_SEND","features":[59]},{"name":"FPF_VIRTUAL","features":[59]},{"name":"FPS_ABORTING","features":[59]},{"name":"FPS_ANSWERED","features":[59]},{"name":"FPS_AVAILABLE","features":[59]},{"name":"FPS_BAD_ADDRESS","features":[59]},{"name":"FPS_BUSY","features":[59]},{"name":"FPS_CALL_BLACKLISTED","features":[59]},{"name":"FPS_CALL_DELAYED","features":[59]},{"name":"FPS_COMPLETED","features":[59]},{"name":"FPS_DIALING","features":[59]},{"name":"FPS_DISCONNECTED","features":[59]},{"name":"FPS_FATAL_ERROR","features":[59]},{"name":"FPS_HANDLED","features":[59]},{"name":"FPS_INITIALIZING","features":[59]},{"name":"FPS_NOT_FAX_CALL","features":[59]},{"name":"FPS_NO_ANSWER","features":[59]},{"name":"FPS_NO_DIAL_TONE","features":[59]},{"name":"FPS_OFFLINE","features":[59]},{"name":"FPS_RECEIVING","features":[59]},{"name":"FPS_RINGING","features":[59]},{"name":"FPS_ROUTING","features":[59]},{"name":"FPS_SENDING","features":[59]},{"name":"FPS_UNAVAILABLE","features":[59]},{"name":"FS_ANSWERED","features":[59]},{"name":"FS_BAD_ADDRESS","features":[59]},{"name":"FS_BUSY","features":[59]},{"name":"FS_CALL_BLACKLISTED","features":[59]},{"name":"FS_CALL_DELAYED","features":[59]},{"name":"FS_COMPLETED","features":[59]},{"name":"FS_DIALING","features":[59]},{"name":"FS_DISCONNECTED","features":[59]},{"name":"FS_FATAL_ERROR","features":[59]},{"name":"FS_HANDLED","features":[59]},{"name":"FS_INITIALIZING","features":[59]},{"name":"FS_LINE_UNAVAILABLE","features":[59]},{"name":"FS_NOT_FAX_CALL","features":[59]},{"name":"FS_NO_ANSWER","features":[59]},{"name":"FS_NO_DIAL_TONE","features":[59]},{"name":"FS_RECEIVING","features":[59]},{"name":"FS_TRANSMITTING","features":[59]},{"name":"FS_USER_ABORT","features":[59]},{"name":"FaxAbort","features":[59,3]},{"name":"FaxAccessCheck","features":[59,3]},{"name":"FaxAccount","features":[59]},{"name":"FaxAccountFolders","features":[59]},{"name":"FaxAccountIncomingArchive","features":[59]},{"name":"FaxAccountIncomingQueue","features":[59]},{"name":"FaxAccountOutgoingArchive","features":[59]},{"name":"FaxAccountOutgoingQueue","features":[59]},{"name":"FaxAccountSet","features":[59]},{"name":"FaxAccounts","features":[59]},{"name":"FaxActivity","features":[59]},{"name":"FaxActivityLogging","features":[59]},{"name":"FaxClose","features":[59,3]},{"name":"FaxCompleteJobParamsA","features":[59,3]},{"name":"FaxCompleteJobParamsW","features":[59,3]},{"name":"FaxConfiguration","features":[59]},{"name":"FaxConnectFaxServerA","features":[59,3]},{"name":"FaxConnectFaxServerW","features":[59,3]},{"name":"FaxDevice","features":[59]},{"name":"FaxDeviceIds","features":[59]},{"name":"FaxDeviceProvider","features":[59]},{"name":"FaxDeviceProviders","features":[59]},{"name":"FaxDevices","features":[59]},{"name":"FaxDocument","features":[59]},{"name":"FaxEnableRoutingMethodA","features":[59,3]},{"name":"FaxEnableRoutingMethodW","features":[59,3]},{"name":"FaxEnumGlobalRoutingInfoA","features":[59,3]},{"name":"FaxEnumGlobalRoutingInfoW","features":[59,3]},{"name":"FaxEnumJobsA","features":[59,3]},{"name":"FaxEnumJobsW","features":[59,3]},{"name":"FaxEnumPortsA","features":[59,3]},{"name":"FaxEnumPortsW","features":[59,3]},{"name":"FaxEnumRoutingMethodsA","features":[59,3]},{"name":"FaxEnumRoutingMethodsW","features":[59,3]},{"name":"FaxEventLogging","features":[59]},{"name":"FaxFolders","features":[59]},{"name":"FaxFreeBuffer","features":[59]},{"name":"FaxGetConfigurationA","features":[59,3]},{"name":"FaxGetConfigurationW","features":[59,3]},{"name":"FaxGetDeviceStatusA","features":[59,3]},{"name":"FaxGetDeviceStatusW","features":[59,3]},{"name":"FaxGetJobA","features":[59,3]},{"name":"FaxGetJobW","features":[59,3]},{"name":"FaxGetLoggingCategoriesA","features":[59,3]},{"name":"FaxGetLoggingCategoriesW","features":[59,3]},{"name":"FaxGetPageData","features":[59,3]},{"name":"FaxGetPortA","features":[59,3]},{"name":"FaxGetPortW","features":[59,3]},{"name":"FaxGetRoutingInfoA","features":[59,3]},{"name":"FaxGetRoutingInfoW","features":[59,3]},{"name":"FaxInboundRouting","features":[59]},{"name":"FaxInboundRoutingExtension","features":[59]},{"name":"FaxInboundRoutingExtensions","features":[59]},{"name":"FaxInboundRoutingMethod","features":[59]},{"name":"FaxInboundRoutingMethods","features":[59]},{"name":"FaxIncomingArchive","features":[59]},{"name":"FaxIncomingJob","features":[59]},{"name":"FaxIncomingJobs","features":[59]},{"name":"FaxIncomingMessage","features":[59]},{"name":"FaxIncomingMessageIterator","features":[59]},{"name":"FaxIncomingQueue","features":[59]},{"name":"FaxInitializeEventQueue","features":[59,3]},{"name":"FaxJobStatus","features":[59]},{"name":"FaxLoggingOptions","features":[59]},{"name":"FaxOpenPort","features":[59,3]},{"name":"FaxOutboundRouting","features":[59]},{"name":"FaxOutboundRoutingGroup","features":[59]},{"name":"FaxOutboundRoutingGroups","features":[59]},{"name":"FaxOutboundRoutingRule","features":[59]},{"name":"FaxOutboundRoutingRules","features":[59]},{"name":"FaxOutgoingArchive","features":[59]},{"name":"FaxOutgoingJob","features":[59]},{"name":"FaxOutgoingJobs","features":[59]},{"name":"FaxOutgoingMessage","features":[59]},{"name":"FaxOutgoingMessageIterator","features":[59]},{"name":"FaxOutgoingQueue","features":[59]},{"name":"FaxPrintCoverPageA","features":[59,3,14]},{"name":"FaxPrintCoverPageW","features":[59,3,14]},{"name":"FaxReceiptOptions","features":[59]},{"name":"FaxRecipient","features":[59]},{"name":"FaxRecipients","features":[59]},{"name":"FaxRegisterRoutingExtensionW","features":[59,3]},{"name":"FaxRegisterServiceProviderW","features":[59,3]},{"name":"FaxSecurity","features":[59]},{"name":"FaxSecurity2","features":[59]},{"name":"FaxSendDocumentA","features":[59,3]},{"name":"FaxSendDocumentForBroadcastA","features":[59,3]},{"name":"FaxSendDocumentForBroadcastW","features":[59,3]},{"name":"FaxSendDocumentW","features":[59,3]},{"name":"FaxSender","features":[59]},{"name":"FaxServer","features":[59]},{"name":"FaxSetConfigurationA","features":[59,3]},{"name":"FaxSetConfigurationW","features":[59,3]},{"name":"FaxSetGlobalRoutingInfoA","features":[59,3]},{"name":"FaxSetGlobalRoutingInfoW","features":[59,3]},{"name":"FaxSetJobA","features":[59,3]},{"name":"FaxSetJobW","features":[59,3]},{"name":"FaxSetLoggingCategoriesA","features":[59,3]},{"name":"FaxSetLoggingCategoriesW","features":[59,3]},{"name":"FaxSetPortA","features":[59,3]},{"name":"FaxSetPortW","features":[59,3]},{"name":"FaxSetRoutingInfoA","features":[59,3]},{"name":"FaxSetRoutingInfoW","features":[59,3]},{"name":"FaxStartPrintJobA","features":[59,3,14]},{"name":"FaxStartPrintJobW","features":[59,3,14]},{"name":"FaxUnregisterServiceProviderW","features":[59,3]},{"name":"GUID_DeviceArrivedLaunch","features":[59]},{"name":"GUID_STIUserDefined1","features":[59]},{"name":"GUID_STIUserDefined2","features":[59]},{"name":"GUID_STIUserDefined3","features":[59]},{"name":"GUID_ScanFaxImage","features":[59]},{"name":"GUID_ScanImage","features":[59]},{"name":"GUID_ScanPrintImage","features":[59]},{"name":"IFaxAccount","features":[59]},{"name":"IFaxAccountFolders","features":[59]},{"name":"IFaxAccountIncomingArchive","features":[59]},{"name":"IFaxAccountIncomingQueue","features":[59]},{"name":"IFaxAccountNotify","features":[59]},{"name":"IFaxAccountOutgoingArchive","features":[59]},{"name":"IFaxAccountOutgoingQueue","features":[59]},{"name":"IFaxAccountSet","features":[59]},{"name":"IFaxAccounts","features":[59]},{"name":"IFaxActivity","features":[59]},{"name":"IFaxActivityLogging","features":[59]},{"name":"IFaxConfiguration","features":[59]},{"name":"IFaxDevice","features":[59]},{"name":"IFaxDeviceIds","features":[59]},{"name":"IFaxDeviceProvider","features":[59]},{"name":"IFaxDeviceProviders","features":[59]},{"name":"IFaxDevices","features":[59]},{"name":"IFaxDocument","features":[59]},{"name":"IFaxDocument2","features":[59]},{"name":"IFaxEventLogging","features":[59]},{"name":"IFaxFolders","features":[59]},{"name":"IFaxInboundRouting","features":[59]},{"name":"IFaxInboundRoutingExtension","features":[59]},{"name":"IFaxInboundRoutingExtensions","features":[59]},{"name":"IFaxInboundRoutingMethod","features":[59]},{"name":"IFaxInboundRoutingMethods","features":[59]},{"name":"IFaxIncomingArchive","features":[59]},{"name":"IFaxIncomingJob","features":[59]},{"name":"IFaxIncomingJobs","features":[59]},{"name":"IFaxIncomingMessage","features":[59]},{"name":"IFaxIncomingMessage2","features":[59]},{"name":"IFaxIncomingMessageIterator","features":[59]},{"name":"IFaxIncomingQueue","features":[59]},{"name":"IFaxJobStatus","features":[59]},{"name":"IFaxLoggingOptions","features":[59]},{"name":"IFaxOutboundRouting","features":[59]},{"name":"IFaxOutboundRoutingGroup","features":[59]},{"name":"IFaxOutboundRoutingGroups","features":[59]},{"name":"IFaxOutboundRoutingRule","features":[59]},{"name":"IFaxOutboundRoutingRules","features":[59]},{"name":"IFaxOutgoingArchive","features":[59]},{"name":"IFaxOutgoingJob","features":[59]},{"name":"IFaxOutgoingJob2","features":[59]},{"name":"IFaxOutgoingJobs","features":[59]},{"name":"IFaxOutgoingMessage","features":[59]},{"name":"IFaxOutgoingMessage2","features":[59]},{"name":"IFaxOutgoingMessageIterator","features":[59]},{"name":"IFaxOutgoingQueue","features":[59]},{"name":"IFaxReceiptOptions","features":[59]},{"name":"IFaxRecipient","features":[59]},{"name":"IFaxRecipients","features":[59]},{"name":"IFaxSecurity","features":[59]},{"name":"IFaxSecurity2","features":[59]},{"name":"IFaxSender","features":[59]},{"name":"IFaxServer","features":[59]},{"name":"IFaxServer2","features":[59]},{"name":"IFaxServerNotify","features":[59]},{"name":"IFaxServerNotify2","features":[59]},{"name":"IS_DIGITAL_CAMERA_STR","features":[59]},{"name":"IS_DIGITAL_CAMERA_VAL","features":[59]},{"name":"IStiDevice","features":[59]},{"name":"IStiDeviceControl","features":[59]},{"name":"IStiUSD","features":[59]},{"name":"IStillImageW","features":[59]},{"name":"JC_DELETE","features":[59]},{"name":"JC_PAUSE","features":[59]},{"name":"JC_RESUME","features":[59]},{"name":"JC_UNKNOWN","features":[59]},{"name":"JSA_DISCOUNT_PERIOD","features":[59]},{"name":"JSA_NOW","features":[59]},{"name":"JSA_SPECIFIC_TIME","features":[59]},{"name":"JS_DELETING","features":[59]},{"name":"JS_FAILED","features":[59]},{"name":"JS_INPROGRESS","features":[59]},{"name":"JS_NOLINE","features":[59]},{"name":"JS_PAUSED","features":[59]},{"name":"JS_PENDING","features":[59]},{"name":"JS_RETRIES_EXCEEDED","features":[59]},{"name":"JS_RETRYING","features":[59]},{"name":"JT_FAIL_RECEIVE","features":[59]},{"name":"JT_RECEIVE","features":[59]},{"name":"JT_ROUTING","features":[59]},{"name":"JT_SEND","features":[59]},{"name":"JT_UNKNOWN","features":[59]},{"name":"MAX_NOTIFICATION_DATA","features":[59]},{"name":"MS_FAXROUTE_EMAIL_GUID","features":[59]},{"name":"MS_FAXROUTE_FOLDER_GUID","features":[59]},{"name":"MS_FAXROUTE_PRINTING_GUID","features":[59]},{"name":"PFAXABORT","features":[59,3]},{"name":"PFAXACCESSCHECK","features":[59,3]},{"name":"PFAXCLOSE","features":[59,3]},{"name":"PFAXCOMPLETEJOBPARAMSA","features":[59,3]},{"name":"PFAXCOMPLETEJOBPARAMSW","features":[59,3]},{"name":"PFAXCONNECTFAXSERVERA","features":[59,3]},{"name":"PFAXCONNECTFAXSERVERW","features":[59,3]},{"name":"PFAXDEVABORTOPERATION","features":[59,3]},{"name":"PFAXDEVCONFIGURE","features":[59,3,42]},{"name":"PFAXDEVENDJOB","features":[59,3]},{"name":"PFAXDEVINITIALIZE","features":[59,3]},{"name":"PFAXDEVRECEIVE","features":[59,3]},{"name":"PFAXDEVREPORTSTATUS","features":[59,3]},{"name":"PFAXDEVSEND","features":[59,3]},{"name":"PFAXDEVSHUTDOWN","features":[59]},{"name":"PFAXDEVSTARTJOB","features":[59,3]},{"name":"PFAXDEVVIRTUALDEVICECREATION","features":[59,3]},{"name":"PFAXENABLEROUTINGMETHODA","features":[59,3]},{"name":"PFAXENABLEROUTINGMETHODW","features":[59,3]},{"name":"PFAXENUMGLOBALROUTINGINFOA","features":[59,3]},{"name":"PFAXENUMGLOBALROUTINGINFOW","features":[59,3]},{"name":"PFAXENUMJOBSA","features":[59,3]},{"name":"PFAXENUMJOBSW","features":[59,3]},{"name":"PFAXENUMPORTSA","features":[59,3]},{"name":"PFAXENUMPORTSW","features":[59,3]},{"name":"PFAXENUMROUTINGMETHODSA","features":[59,3]},{"name":"PFAXENUMROUTINGMETHODSW","features":[59,3]},{"name":"PFAXFREEBUFFER","features":[59]},{"name":"PFAXGETCONFIGURATIONA","features":[59,3]},{"name":"PFAXGETCONFIGURATIONW","features":[59,3]},{"name":"PFAXGETDEVICESTATUSA","features":[59,3]},{"name":"PFAXGETDEVICESTATUSW","features":[59,3]},{"name":"PFAXGETJOBA","features":[59,3]},{"name":"PFAXGETJOBW","features":[59,3]},{"name":"PFAXGETLOGGINGCATEGORIESA","features":[59,3]},{"name":"PFAXGETLOGGINGCATEGORIESW","features":[59,3]},{"name":"PFAXGETPAGEDATA","features":[59,3]},{"name":"PFAXGETPORTA","features":[59,3]},{"name":"PFAXGETPORTW","features":[59,3]},{"name":"PFAXGETROUTINGINFOA","features":[59,3]},{"name":"PFAXGETROUTINGINFOW","features":[59,3]},{"name":"PFAXINITIALIZEEVENTQUEUE","features":[59,3]},{"name":"PFAXOPENPORT","features":[59,3]},{"name":"PFAXPRINTCOVERPAGEA","features":[59,3,14]},{"name":"PFAXPRINTCOVERPAGEW","features":[59,3,14]},{"name":"PFAXREGISTERROUTINGEXTENSIONW","features":[59,3]},{"name":"PFAXREGISTERSERVICEPROVIDERW","features":[59,3]},{"name":"PFAXROUTEADDFILE","features":[59]},{"name":"PFAXROUTEDELETEFILE","features":[59]},{"name":"PFAXROUTEDEVICECHANGENOTIFICATION","features":[59,3]},{"name":"PFAXROUTEDEVICEENABLE","features":[59,3]},{"name":"PFAXROUTEENUMFILE","features":[59,3]},{"name":"PFAXROUTEENUMFILES","features":[59,3]},{"name":"PFAXROUTEGETFILE","features":[59,3]},{"name":"PFAXROUTEGETROUTINGINFO","features":[59,3]},{"name":"PFAXROUTEINITIALIZE","features":[59,3]},{"name":"PFAXROUTEMETHOD","features":[59,3]},{"name":"PFAXROUTEMODIFYROUTINGDATA","features":[59,3]},{"name":"PFAXROUTESETROUTINGINFO","features":[59,3]},{"name":"PFAXSENDDOCUMENTA","features":[59,3]},{"name":"PFAXSENDDOCUMENTFORBROADCASTA","features":[59,3]},{"name":"PFAXSENDDOCUMENTFORBROADCASTW","features":[59,3]},{"name":"PFAXSENDDOCUMENTW","features":[59,3]},{"name":"PFAXSETCONFIGURATIONA","features":[59,3]},{"name":"PFAXSETCONFIGURATIONW","features":[59,3]},{"name":"PFAXSETGLOBALROUTINGINFOA","features":[59,3]},{"name":"PFAXSETGLOBALROUTINGINFOW","features":[59,3]},{"name":"PFAXSETJOBA","features":[59,3]},{"name":"PFAXSETJOBW","features":[59,3]},{"name":"PFAXSETLOGGINGCATEGORIESA","features":[59,3]},{"name":"PFAXSETLOGGINGCATEGORIESW","features":[59,3]},{"name":"PFAXSETPORTA","features":[59,3]},{"name":"PFAXSETPORTW","features":[59,3]},{"name":"PFAXSETROUTINGINFOA","features":[59,3]},{"name":"PFAXSETROUTINGINFOW","features":[59,3]},{"name":"PFAXSTARTPRINTJOBA","features":[59,3,14]},{"name":"PFAXSTARTPRINTJOBW","features":[59,3,14]},{"name":"PFAXUNREGISTERSERVICEPROVIDERW","features":[59,3]},{"name":"PFAX_EXT_CONFIG_CHANGE","features":[59]},{"name":"PFAX_EXT_FREE_BUFFER","features":[59]},{"name":"PFAX_EXT_GET_DATA","features":[59]},{"name":"PFAX_EXT_INITIALIZE_CONFIG","features":[59,3]},{"name":"PFAX_EXT_REGISTER_FOR_EVENTS","features":[59,3]},{"name":"PFAX_EXT_SET_DATA","features":[59,3]},{"name":"PFAX_EXT_UNREGISTER_FOR_EVENTS","features":[59,3]},{"name":"PFAX_LINECALLBACK","features":[59,3]},{"name":"PFAX_RECIPIENT_CALLBACKA","features":[59,3]},{"name":"PFAX_RECIPIENT_CALLBACKW","features":[59,3]},{"name":"PFAX_ROUTING_INSTALLATION_CALLBACKW","features":[59,3]},{"name":"PFAX_SEND_CALLBACK","features":[59,3]},{"name":"PFAX_SERVICE_CALLBACK","features":[59,3]},{"name":"PORT_OPEN_MODIFY","features":[59]},{"name":"PORT_OPEN_QUERY","features":[59]},{"name":"QUERY_STATUS","features":[59]},{"name":"REGSTR_VAL_BAUDRATE","features":[59]},{"name":"REGSTR_VAL_BAUDRATE_A","features":[59]},{"name":"REGSTR_VAL_DATA_W","features":[59]},{"name":"REGSTR_VAL_DEVICESUBTYPE_W","features":[59]},{"name":"REGSTR_VAL_DEVICETYPE_W","features":[59]},{"name":"REGSTR_VAL_DEVICE_NAME_W","features":[59]},{"name":"REGSTR_VAL_DEV_NAME_W","features":[59]},{"name":"REGSTR_VAL_DRIVER_DESC_W","features":[59]},{"name":"REGSTR_VAL_FRIENDLY_NAME_W","features":[59]},{"name":"REGSTR_VAL_GENERIC_CAPS_W","features":[59]},{"name":"REGSTR_VAL_GUID","features":[59]},{"name":"REGSTR_VAL_GUID_W","features":[59]},{"name":"REGSTR_VAL_HARDWARE","features":[59]},{"name":"REGSTR_VAL_HARDWARE_W","features":[59]},{"name":"REGSTR_VAL_LAUNCHABLE","features":[59]},{"name":"REGSTR_VAL_LAUNCHABLE_W","features":[59]},{"name":"REGSTR_VAL_LAUNCH_APPS","features":[59]},{"name":"REGSTR_VAL_LAUNCH_APPS_W","features":[59]},{"name":"REGSTR_VAL_SHUTDOWNDELAY","features":[59]},{"name":"REGSTR_VAL_SHUTDOWNDELAY_W","features":[59]},{"name":"REGSTR_VAL_TYPE_W","features":[59]},{"name":"REGSTR_VAL_VENDOR_NAME_W","features":[59]},{"name":"SEND_TO_FAX_RECIPIENT_ATTACHMENT","features":[59]},{"name":"STATUS_DISABLE","features":[59]},{"name":"STATUS_ENABLE","features":[59]},{"name":"STIEDFL_ALLDEVICES","features":[59]},{"name":"STIEDFL_ATTACHEDONLY","features":[59]},{"name":"STIERR_ALREADY_INITIALIZED","features":[59]},{"name":"STIERR_BADDRIVER","features":[59]},{"name":"STIERR_BETA_VERSION","features":[59]},{"name":"STIERR_DEVICENOTREG","features":[59]},{"name":"STIERR_DEVICE_LOCKED","features":[59]},{"name":"STIERR_DEVICE_NOTREADY","features":[59]},{"name":"STIERR_GENERIC","features":[59]},{"name":"STIERR_HANDLEEXISTS","features":[59]},{"name":"STIERR_INVALID_DEVICE_NAME","features":[59]},{"name":"STIERR_INVALID_HW_TYPE","features":[59]},{"name":"STIERR_INVALID_PARAM","features":[59]},{"name":"STIERR_NEEDS_LOCK","features":[59]},{"name":"STIERR_NOEVENTS","features":[59]},{"name":"STIERR_NOINTERFACE","features":[59]},{"name":"STIERR_NOTINITIALIZED","features":[59]},{"name":"STIERR_NOT_INITIALIZED","features":[59]},{"name":"STIERR_OBJECTNOTFOUND","features":[59]},{"name":"STIERR_OLD_VERSION","features":[59]},{"name":"STIERR_OUTOFMEMORY","features":[59]},{"name":"STIERR_READONLY","features":[59]},{"name":"STIERR_SHARING_VIOLATION","features":[59]},{"name":"STIERR_UNSUPPORTED","features":[59]},{"name":"STINOTIFY","features":[59]},{"name":"STISUBSCRIBE","features":[59,3]},{"name":"STI_ADD_DEVICE_BROADCAST_ACTION","features":[59]},{"name":"STI_ADD_DEVICE_BROADCAST_STRING","features":[59]},{"name":"STI_CHANGENOEFFECT","features":[59]},{"name":"STI_DEVICE_CREATE_BOTH","features":[59]},{"name":"STI_DEVICE_CREATE_DATA","features":[59]},{"name":"STI_DEVICE_CREATE_FOR_MONITOR","features":[59]},{"name":"STI_DEVICE_CREATE_MASK","features":[59]},{"name":"STI_DEVICE_CREATE_STATUS","features":[59]},{"name":"STI_DEVICE_INFORMATIONW","features":[59]},{"name":"STI_DEVICE_MJ_TYPE","features":[59]},{"name":"STI_DEVICE_STATUS","features":[59]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP","features":[59]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP_A","features":[59]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS","features":[59]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS_A","features":[59]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE","features":[59]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE_A","features":[59]},{"name":"STI_DEVICE_VALUE_ISIS_NAME","features":[59]},{"name":"STI_DEVICE_VALUE_ISIS_NAME_A","features":[59]},{"name":"STI_DEVICE_VALUE_TIMEOUT","features":[59]},{"name":"STI_DEVICE_VALUE_TIMEOUT_A","features":[59]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME","features":[59]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME_A","features":[59]},{"name":"STI_DEVSTATUS_EVENTS_STATE","features":[59]},{"name":"STI_DEVSTATUS_ONLINE_STATE","features":[59]},{"name":"STI_DEV_CAPS","features":[59]},{"name":"STI_DIAG","features":[59]},{"name":"STI_DIAGCODE_HWPRESENCE","features":[59]},{"name":"STI_ERROR_NO_ERROR","features":[59]},{"name":"STI_EVENTHANDLING_ENABLED","features":[59]},{"name":"STI_EVENTHANDLING_PENDING","features":[59]},{"name":"STI_EVENTHANDLING_POLLING","features":[59]},{"name":"STI_GENCAP_AUTO_PORTSELECT","features":[59]},{"name":"STI_GENCAP_COMMON_MASK","features":[59]},{"name":"STI_GENCAP_GENERATE_ARRIVALEVENT","features":[59]},{"name":"STI_GENCAP_NOTIFICATIONS","features":[59]},{"name":"STI_GENCAP_POLLING_NEEDED","features":[59]},{"name":"STI_GENCAP_SUBSET","features":[59]},{"name":"STI_GENCAP_WIA","features":[59]},{"name":"STI_HW_CONFIG_PARALLEL","features":[59]},{"name":"STI_HW_CONFIG_SCSI","features":[59]},{"name":"STI_HW_CONFIG_SERIAL","features":[59]},{"name":"STI_HW_CONFIG_UNKNOWN","features":[59]},{"name":"STI_HW_CONFIG_USB","features":[59]},{"name":"STI_MAX_INTERNAL_NAME_LENGTH","features":[59]},{"name":"STI_NOTCONNECTED","features":[59]},{"name":"STI_OK","features":[59]},{"name":"STI_ONLINESTATE_BUSY","features":[59]},{"name":"STI_ONLINESTATE_ERROR","features":[59]},{"name":"STI_ONLINESTATE_INITIALIZING","features":[59]},{"name":"STI_ONLINESTATE_IO_ACTIVE","features":[59]},{"name":"STI_ONLINESTATE_OFFLINE","features":[59]},{"name":"STI_ONLINESTATE_OPERATIONAL","features":[59]},{"name":"STI_ONLINESTATE_PAPER_JAM","features":[59]},{"name":"STI_ONLINESTATE_PAPER_PROBLEM","features":[59]},{"name":"STI_ONLINESTATE_PAUSED","features":[59]},{"name":"STI_ONLINESTATE_PENDING","features":[59]},{"name":"STI_ONLINESTATE_POWER_SAVE","features":[59]},{"name":"STI_ONLINESTATE_TRANSFERRING","features":[59]},{"name":"STI_ONLINESTATE_USER_INTERVENTION","features":[59]},{"name":"STI_ONLINESTATE_WARMING_UP","features":[59]},{"name":"STI_RAW_RESERVED","features":[59]},{"name":"STI_REMOVE_DEVICE_BROADCAST_ACTION","features":[59]},{"name":"STI_REMOVE_DEVICE_BROADCAST_STRING","features":[59]},{"name":"STI_SUBSCRIBE_FLAG_EVENT","features":[59]},{"name":"STI_SUBSCRIBE_FLAG_WINDOW","features":[59]},{"name":"STI_TRACE_ERROR","features":[59]},{"name":"STI_TRACE_INFORMATION","features":[59]},{"name":"STI_TRACE_WARNING","features":[59]},{"name":"STI_UNICODE","features":[59]},{"name":"STI_USD_CAPS","features":[59]},{"name":"STI_USD_GENCAP_NATIVE_PUSHSUPPORT","features":[59]},{"name":"STI_VERSION","features":[59]},{"name":"STI_VERSION_FLAG_MASK","features":[59]},{"name":"STI_VERSION_FLAG_UNICODE","features":[59]},{"name":"STI_VERSION_MIN_ALLOWED","features":[59]},{"name":"STI_VERSION_REAL","features":[59]},{"name":"STI_WIA_DEVICE_INFORMATIONW","features":[59]},{"name":"SUPPORTS_MSCPLUS_STR","features":[59]},{"name":"SUPPORTS_MSCPLUS_VAL","features":[59]},{"name":"SendToFaxRecipient","features":[59]},{"name":"SendToMode","features":[59]},{"name":"StiCreateInstanceW","features":[59,3]},{"name":"StiDeviceTypeDefault","features":[59]},{"name":"StiDeviceTypeDigitalCamera","features":[59]},{"name":"StiDeviceTypeScanner","features":[59]},{"name":"StiDeviceTypeStreamingVideo","features":[59]},{"name":"WIA_INCOMPAT_XP","features":[59]},{"name":"_ERROR_INFOW","features":[59]},{"name":"faetFXSSVC_ENDED","features":[59]},{"name":"faetIN_ARCHIVE","features":[59]},{"name":"faetIN_QUEUE","features":[59]},{"name":"faetNONE","features":[59]},{"name":"faetOUT_ARCHIVE","features":[59]},{"name":"faetOUT_QUEUE","features":[59]},{"name":"far2MANAGE_ARCHIVES","features":[59]},{"name":"far2MANAGE_CONFIG","features":[59]},{"name":"far2MANAGE_OUT_JOBS","features":[59]},{"name":"far2MANAGE_RECEIVE_FOLDER","features":[59]},{"name":"far2QUERY_ARCHIVES","features":[59]},{"name":"far2QUERY_CONFIG","features":[59]},{"name":"far2QUERY_OUT_JOBS","features":[59]},{"name":"far2SUBMIT_HIGH","features":[59]},{"name":"far2SUBMIT_LOW","features":[59]},{"name":"far2SUBMIT_NORMAL","features":[59]},{"name":"farMANAGE_CONFIG","features":[59]},{"name":"farMANAGE_IN_ARCHIVE","features":[59]},{"name":"farMANAGE_JOBS","features":[59]},{"name":"farMANAGE_OUT_ARCHIVE","features":[59]},{"name":"farQUERY_CONFIG","features":[59]},{"name":"farQUERY_IN_ARCHIVE","features":[59]},{"name":"farQUERY_JOBS","features":[59]},{"name":"farQUERY_OUT_ARCHIVE","features":[59]},{"name":"farSUBMIT_HIGH","features":[59]},{"name":"farSUBMIT_LOW","features":[59]},{"name":"farSUBMIT_NORMAL","features":[59]},{"name":"fcptLOCAL","features":[59]},{"name":"fcptNONE","features":[59]},{"name":"fcptSERVER","features":[59]},{"name":"fdrmAUTO_ANSWER","features":[59]},{"name":"fdrmMANUAL_ANSWER","features":[59]},{"name":"fdrmNO_ANSWER","features":[59]},{"name":"fgsALL_DEV_NOT_VALID","features":[59]},{"name":"fgsALL_DEV_VALID","features":[59]},{"name":"fgsEMPTY","features":[59]},{"name":"fgsSOME_DEV_NOT_VALID","features":[59]},{"name":"fjesANSWERED","features":[59]},{"name":"fjesBAD_ADDRESS","features":[59]},{"name":"fjesBUSY","features":[59]},{"name":"fjesCALL_ABORTED","features":[59]},{"name":"fjesCALL_BLACKLISTED","features":[59]},{"name":"fjesCALL_COMPLETED","features":[59]},{"name":"fjesCALL_DELAYED","features":[59]},{"name":"fjesDIALING","features":[59]},{"name":"fjesDISCONNECTED","features":[59]},{"name":"fjesFATAL_ERROR","features":[59]},{"name":"fjesHANDLED","features":[59]},{"name":"fjesINITIALIZING","features":[59]},{"name":"fjesLINE_UNAVAILABLE","features":[59]},{"name":"fjesNONE","features":[59]},{"name":"fjesNOT_FAX_CALL","features":[59]},{"name":"fjesNO_ANSWER","features":[59]},{"name":"fjesNO_DIAL_TONE","features":[59]},{"name":"fjesPARTIALLY_RECEIVED","features":[59]},{"name":"fjesPROPRIETARY","features":[59]},{"name":"fjesRECEIVING","features":[59]},{"name":"fjesTRANSMITTING","features":[59]},{"name":"fjoDELETE","features":[59]},{"name":"fjoPAUSE","features":[59]},{"name":"fjoRECIPIENT_INFO","features":[59]},{"name":"fjoRESTART","features":[59]},{"name":"fjoRESUME","features":[59]},{"name":"fjoSENDER_INFO","features":[59]},{"name":"fjoVIEW","features":[59]},{"name":"fjsCANCELED","features":[59]},{"name":"fjsCANCELING","features":[59]},{"name":"fjsCOMPLETED","features":[59]},{"name":"fjsFAILED","features":[59]},{"name":"fjsINPROGRESS","features":[59]},{"name":"fjsNOLINE","features":[59]},{"name":"fjsPAUSED","features":[59]},{"name":"fjsPENDING","features":[59]},{"name":"fjsRETRIES_EXCEEDED","features":[59]},{"name":"fjsRETRYING","features":[59]},{"name":"fjsROUTING","features":[59]},{"name":"fjtRECEIVE","features":[59]},{"name":"fjtROUTING","features":[59]},{"name":"fjtSEND","features":[59]},{"name":"fllMAX","features":[59]},{"name":"fllMED","features":[59]},{"name":"fllMIN","features":[59]},{"name":"fllNONE","features":[59]},{"name":"fpsBAD_GUID","features":[59]},{"name":"fpsBAD_VERSION","features":[59]},{"name":"fpsCANT_INIT","features":[59]},{"name":"fpsCANT_LINK","features":[59]},{"name":"fpsCANT_LOAD","features":[59]},{"name":"fpsSERVER_ERROR","features":[59]},{"name":"fpsSUCCESS","features":[59]},{"name":"fptHIGH","features":[59]},{"name":"fptLOW","features":[59]},{"name":"fptNORMAL","features":[59]},{"name":"frrcANY_CODE","features":[59]},{"name":"frsALL_GROUP_DEV_NOT_VALID","features":[59]},{"name":"frsBAD_DEVICE","features":[59]},{"name":"frsEMPTY_GROUP","features":[59]},{"name":"frsSOME_GROUP_DEV_NOT_VALID","features":[59]},{"name":"frsVALID","features":[59]},{"name":"frtMAIL","features":[59]},{"name":"frtMSGBOX","features":[59]},{"name":"frtNONE","features":[59]},{"name":"fsAPI_VERSION_0","features":[59]},{"name":"fsAPI_VERSION_1","features":[59]},{"name":"fsAPI_VERSION_2","features":[59]},{"name":"fsAPI_VERSION_3","features":[59]},{"name":"fsatANONYMOUS","features":[59]},{"name":"fsatBASIC","features":[59]},{"name":"fsatNTLM","features":[59]},{"name":"fsetACTIVITY","features":[59]},{"name":"fsetCONFIG","features":[59]},{"name":"fsetDEVICE_STATUS","features":[59]},{"name":"fsetFXSSVC_ENDED","features":[59]},{"name":"fsetINCOMING_CALL","features":[59]},{"name":"fsetIN_ARCHIVE","features":[59]},{"name":"fsetIN_QUEUE","features":[59]},{"name":"fsetNONE","features":[59]},{"name":"fsetOUT_ARCHIVE","features":[59]},{"name":"fsetOUT_QUEUE","features":[59]},{"name":"fsetQUEUE_STATE","features":[59]},{"name":"fstDISCOUNT_PERIOD","features":[59]},{"name":"fstNOW","features":[59]},{"name":"fstSPECIFIC_TIME","features":[59]},{"name":"lDEFAULT_PREFETCH_SIZE","features":[59]},{"name":"prv_DEFAULT_PREFETCH_SIZE","features":[59]},{"name":"wcharREASSIGN_RECIPIENTS_DELIMITER","features":[59]}],"381":[{"name":"BALLPOINT_I8042_HARDWARE","features":[60]},{"name":"BALLPOINT_SERIAL_HARDWARE","features":[60]},{"name":"BUTTON_BIT_ALLBUTTONSMASK","features":[60]},{"name":"BUTTON_BIT_BACK","features":[60]},{"name":"BUTTON_BIT_CAMERAFOCUS","features":[60]},{"name":"BUTTON_BIT_CAMERALENS","features":[60]},{"name":"BUTTON_BIT_CAMERASHUTTER","features":[60]},{"name":"BUTTON_BIT_HEADSET","features":[60]},{"name":"BUTTON_BIT_HWKBDEPLOY","features":[60]},{"name":"BUTTON_BIT_OEMCUSTOM","features":[60]},{"name":"BUTTON_BIT_OEMCUSTOM2","features":[60]},{"name":"BUTTON_BIT_OEMCUSTOM3","features":[60]},{"name":"BUTTON_BIT_POWER","features":[60]},{"name":"BUTTON_BIT_RINGERTOGGLE","features":[60]},{"name":"BUTTON_BIT_ROTATION_LOCK","features":[60]},{"name":"BUTTON_BIT_SEARCH","features":[60]},{"name":"BUTTON_BIT_VOLUMEDOWN","features":[60]},{"name":"BUTTON_BIT_VOLUMEUP","features":[60]},{"name":"BUTTON_BIT_WINDOWS","features":[60]},{"name":"CLSID_DirectInput","features":[60]},{"name":"CLSID_DirectInput8","features":[60]},{"name":"CLSID_DirectInputDevice","features":[60]},{"name":"CLSID_DirectInputDevice8","features":[60]},{"name":"CPOINT","features":[60]},{"name":"DD_KEYBOARD_DEVICE_NAME","features":[60]},{"name":"DD_KEYBOARD_DEVICE_NAME_U","features":[60]},{"name":"DD_MOUSE_DEVICE_NAME","features":[60]},{"name":"DD_MOUSE_DEVICE_NAME_U","features":[60]},{"name":"DEVPKEY_DeviceInterface_HID_BackgroundAccess","features":[60,1]},{"name":"DEVPKEY_DeviceInterface_HID_IsReadOnly","features":[60,1]},{"name":"DEVPKEY_DeviceInterface_HID_ProductId","features":[60,1]},{"name":"DEVPKEY_DeviceInterface_HID_UsageId","features":[60,1]},{"name":"DEVPKEY_DeviceInterface_HID_UsagePage","features":[60,1]},{"name":"DEVPKEY_DeviceInterface_HID_VendorId","features":[60,1]},{"name":"DEVPKEY_DeviceInterface_HID_VersionNumber","features":[60,1]},{"name":"DEVPKEY_DeviceInterface_HID_WakeScreenOnInputCapable","features":[60,1]},{"name":"DI8DEVCLASS_ALL","features":[60]},{"name":"DI8DEVCLASS_DEVICE","features":[60]},{"name":"DI8DEVCLASS_GAMECTRL","features":[60]},{"name":"DI8DEVCLASS_KEYBOARD","features":[60]},{"name":"DI8DEVCLASS_POINTER","features":[60]},{"name":"DI8DEVTYPE1STPERSON_LIMITED","features":[60]},{"name":"DI8DEVTYPE1STPERSON_SHOOTER","features":[60]},{"name":"DI8DEVTYPE1STPERSON_SIXDOF","features":[60]},{"name":"DI8DEVTYPE1STPERSON_UNKNOWN","features":[60]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION","features":[60]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION_HARDWIRED","features":[60]},{"name":"DI8DEVTYPEDEVICECTRL_UNKNOWN","features":[60]},{"name":"DI8DEVTYPEDRIVING_COMBINEDPEDALS","features":[60]},{"name":"DI8DEVTYPEDRIVING_DUALPEDALS","features":[60]},{"name":"DI8DEVTYPEDRIVING_HANDHELD","features":[60]},{"name":"DI8DEVTYPEDRIVING_LIMITED","features":[60]},{"name":"DI8DEVTYPEDRIVING_THREEPEDALS","features":[60]},{"name":"DI8DEVTYPEFLIGHT_LIMITED","features":[60]},{"name":"DI8DEVTYPEFLIGHT_RC","features":[60]},{"name":"DI8DEVTYPEFLIGHT_STICK","features":[60]},{"name":"DI8DEVTYPEFLIGHT_YOKE","features":[60]},{"name":"DI8DEVTYPEGAMEPAD_LIMITED","features":[60]},{"name":"DI8DEVTYPEGAMEPAD_STANDARD","features":[60]},{"name":"DI8DEVTYPEGAMEPAD_TILT","features":[60]},{"name":"DI8DEVTYPEJOYSTICK_LIMITED","features":[60]},{"name":"DI8DEVTYPEJOYSTICK_STANDARD","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_J3100","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_JAPAN106","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_JAPANAX","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_NEC98","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_NEC98106","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_NEC98LAPTOP","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA1050","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA9140","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_OLIVETTI","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_PCAT","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_PCENH","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_PCXT","features":[60]},{"name":"DI8DEVTYPEKEYBOARD_UNKNOWN","features":[60]},{"name":"DI8DEVTYPEMOUSE_ABSOLUTE","features":[60]},{"name":"DI8DEVTYPEMOUSE_FINGERSTICK","features":[60]},{"name":"DI8DEVTYPEMOUSE_TOUCHPAD","features":[60]},{"name":"DI8DEVTYPEMOUSE_TRACKBALL","features":[60]},{"name":"DI8DEVTYPEMOUSE_TRADITIONAL","features":[60]},{"name":"DI8DEVTYPEMOUSE_UNKNOWN","features":[60]},{"name":"DI8DEVTYPEREMOTE_UNKNOWN","features":[60]},{"name":"DI8DEVTYPESCREENPTR_LIGHTGUN","features":[60]},{"name":"DI8DEVTYPESCREENPTR_LIGHTPEN","features":[60]},{"name":"DI8DEVTYPESCREENPTR_TOUCH","features":[60]},{"name":"DI8DEVTYPESCREENPTR_UNKNOWN","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_2NDHANDCONTROLLER","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_COMBINEDPEDALS","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_DUALPEDALS","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_HANDTRACKER","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_HEADTRACKER","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_RUDDERPEDALS","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTER","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTSTICKGATE","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_SPLITTHROTTLE","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_THREEPEDALS","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_THROTTLE","features":[60]},{"name":"DI8DEVTYPESUPPLEMENTAL_UNKNOWN","features":[60]},{"name":"DI8DEVTYPE_1STPERSON","features":[60]},{"name":"DI8DEVTYPE_DEVICE","features":[60]},{"name":"DI8DEVTYPE_DEVICECTRL","features":[60]},{"name":"DI8DEVTYPE_DRIVING","features":[60]},{"name":"DI8DEVTYPE_FLIGHT","features":[60]},{"name":"DI8DEVTYPE_GAMEPAD","features":[60]},{"name":"DI8DEVTYPE_JOYSTICK","features":[60]},{"name":"DI8DEVTYPE_KEYBOARD","features":[60]},{"name":"DI8DEVTYPE_LIMITEDGAMESUBTYPE","features":[60]},{"name":"DI8DEVTYPE_MOUSE","features":[60]},{"name":"DI8DEVTYPE_REMOTE","features":[60]},{"name":"DI8DEVTYPE_SCREENPOINTER","features":[60]},{"name":"DI8DEVTYPE_SUPPLEMENTAL","features":[60]},{"name":"DIACTIONA","features":[60]},{"name":"DIACTIONFORMATA","features":[60,3]},{"name":"DIACTIONFORMATW","features":[60,3]},{"name":"DIACTIONW","features":[60]},{"name":"DIAFTS_NEWDEVICEHIGH","features":[60]},{"name":"DIAFTS_NEWDEVICELOW","features":[60]},{"name":"DIAFTS_UNUSEDDEVICEHIGH","features":[60]},{"name":"DIAFTS_UNUSEDDEVICELOW","features":[60]},{"name":"DIAH_APPREQUESTED","features":[60]},{"name":"DIAH_DEFAULT","features":[60]},{"name":"DIAH_ERROR","features":[60]},{"name":"DIAH_HWAPP","features":[60]},{"name":"DIAH_HWDEFAULT","features":[60]},{"name":"DIAH_UNMAPPED","features":[60]},{"name":"DIAH_USERCONFIG","features":[60]},{"name":"DIAPPIDFLAG_NOSIZE","features":[60]},{"name":"DIAPPIDFLAG_NOTIME","features":[60]},{"name":"DIAXIS_2DCONTROL_INOUT","features":[60]},{"name":"DIAXIS_2DCONTROL_LATERAL","features":[60]},{"name":"DIAXIS_2DCONTROL_MOVE","features":[60]},{"name":"DIAXIS_2DCONTROL_ROTATEZ","features":[60]},{"name":"DIAXIS_3DCONTROL_INOUT","features":[60]},{"name":"DIAXIS_3DCONTROL_LATERAL","features":[60]},{"name":"DIAXIS_3DCONTROL_MOVE","features":[60]},{"name":"DIAXIS_3DCONTROL_ROTATEX","features":[60]},{"name":"DIAXIS_3DCONTROL_ROTATEY","features":[60]},{"name":"DIAXIS_3DCONTROL_ROTATEZ","features":[60]},{"name":"DIAXIS_ANY_1","features":[60]},{"name":"DIAXIS_ANY_2","features":[60]},{"name":"DIAXIS_ANY_3","features":[60]},{"name":"DIAXIS_ANY_4","features":[60]},{"name":"DIAXIS_ANY_A_1","features":[60]},{"name":"DIAXIS_ANY_A_2","features":[60]},{"name":"DIAXIS_ANY_B_1","features":[60]},{"name":"DIAXIS_ANY_B_2","features":[60]},{"name":"DIAXIS_ANY_C_1","features":[60]},{"name":"DIAXIS_ANY_C_2","features":[60]},{"name":"DIAXIS_ANY_R_1","features":[60]},{"name":"DIAXIS_ANY_R_2","features":[60]},{"name":"DIAXIS_ANY_S_1","features":[60]},{"name":"DIAXIS_ANY_S_2","features":[60]},{"name":"DIAXIS_ANY_U_1","features":[60]},{"name":"DIAXIS_ANY_U_2","features":[60]},{"name":"DIAXIS_ANY_V_1","features":[60]},{"name":"DIAXIS_ANY_V_2","features":[60]},{"name":"DIAXIS_ANY_X_1","features":[60]},{"name":"DIAXIS_ANY_X_2","features":[60]},{"name":"DIAXIS_ANY_Y_1","features":[60]},{"name":"DIAXIS_ANY_Y_2","features":[60]},{"name":"DIAXIS_ANY_Z_1","features":[60]},{"name":"DIAXIS_ANY_Z_2","features":[60]},{"name":"DIAXIS_ARCADEP_LATERAL","features":[60]},{"name":"DIAXIS_ARCADEP_MOVE","features":[60]},{"name":"DIAXIS_ARCADES_LATERAL","features":[60]},{"name":"DIAXIS_ARCADES_MOVE","features":[60]},{"name":"DIAXIS_BASEBALLB_LATERAL","features":[60]},{"name":"DIAXIS_BASEBALLB_MOVE","features":[60]},{"name":"DIAXIS_BASEBALLF_LATERAL","features":[60]},{"name":"DIAXIS_BASEBALLF_MOVE","features":[60]},{"name":"DIAXIS_BASEBALLP_LATERAL","features":[60]},{"name":"DIAXIS_BASEBALLP_MOVE","features":[60]},{"name":"DIAXIS_BBALLD_LATERAL","features":[60]},{"name":"DIAXIS_BBALLD_MOVE","features":[60]},{"name":"DIAXIS_BBALLO_LATERAL","features":[60]},{"name":"DIAXIS_BBALLO_MOVE","features":[60]},{"name":"DIAXIS_BIKINGM_BRAKE","features":[60]},{"name":"DIAXIS_BIKINGM_PEDAL","features":[60]},{"name":"DIAXIS_BIKINGM_TURN","features":[60]},{"name":"DIAXIS_BROWSER_LATERAL","features":[60]},{"name":"DIAXIS_BROWSER_MOVE","features":[60]},{"name":"DIAXIS_BROWSER_VIEW","features":[60]},{"name":"DIAXIS_CADF_INOUT","features":[60]},{"name":"DIAXIS_CADF_LATERAL","features":[60]},{"name":"DIAXIS_CADF_MOVE","features":[60]},{"name":"DIAXIS_CADF_ROTATEX","features":[60]},{"name":"DIAXIS_CADF_ROTATEY","features":[60]},{"name":"DIAXIS_CADF_ROTATEZ","features":[60]},{"name":"DIAXIS_CADM_INOUT","features":[60]},{"name":"DIAXIS_CADM_LATERAL","features":[60]},{"name":"DIAXIS_CADM_MOVE","features":[60]},{"name":"DIAXIS_CADM_ROTATEX","features":[60]},{"name":"DIAXIS_CADM_ROTATEY","features":[60]},{"name":"DIAXIS_CADM_ROTATEZ","features":[60]},{"name":"DIAXIS_DRIVINGC_ACCELERATE","features":[60]},{"name":"DIAXIS_DRIVINGC_ACCEL_AND_BRAKE","features":[60]},{"name":"DIAXIS_DRIVINGC_BRAKE","features":[60]},{"name":"DIAXIS_DRIVINGC_STEER","features":[60]},{"name":"DIAXIS_DRIVINGR_ACCELERATE","features":[60]},{"name":"DIAXIS_DRIVINGR_ACCEL_AND_BRAKE","features":[60]},{"name":"DIAXIS_DRIVINGR_BRAKE","features":[60]},{"name":"DIAXIS_DRIVINGR_STEER","features":[60]},{"name":"DIAXIS_DRIVINGT_ACCELERATE","features":[60]},{"name":"DIAXIS_DRIVINGT_ACCEL_AND_BRAKE","features":[60]},{"name":"DIAXIS_DRIVINGT_BARREL","features":[60]},{"name":"DIAXIS_DRIVINGT_BRAKE","features":[60]},{"name":"DIAXIS_DRIVINGT_ROTATE","features":[60]},{"name":"DIAXIS_DRIVINGT_STEER","features":[60]},{"name":"DIAXIS_FIGHTINGH_LATERAL","features":[60]},{"name":"DIAXIS_FIGHTINGH_MOVE","features":[60]},{"name":"DIAXIS_FIGHTINGH_ROTATE","features":[60]},{"name":"DIAXIS_FISHING_LATERAL","features":[60]},{"name":"DIAXIS_FISHING_MOVE","features":[60]},{"name":"DIAXIS_FISHING_ROTATE","features":[60]},{"name":"DIAXIS_FLYINGC_BANK","features":[60]},{"name":"DIAXIS_FLYINGC_BRAKE","features":[60]},{"name":"DIAXIS_FLYINGC_FLAPS","features":[60]},{"name":"DIAXIS_FLYINGC_PITCH","features":[60]},{"name":"DIAXIS_FLYINGC_RUDDER","features":[60]},{"name":"DIAXIS_FLYINGC_THROTTLE","features":[60]},{"name":"DIAXIS_FLYINGH_BANK","features":[60]},{"name":"DIAXIS_FLYINGH_COLLECTIVE","features":[60]},{"name":"DIAXIS_FLYINGH_PITCH","features":[60]},{"name":"DIAXIS_FLYINGH_THROTTLE","features":[60]},{"name":"DIAXIS_FLYINGH_TORQUE","features":[60]},{"name":"DIAXIS_FLYINGM_BANK","features":[60]},{"name":"DIAXIS_FLYINGM_BRAKE","features":[60]},{"name":"DIAXIS_FLYINGM_FLAPS","features":[60]},{"name":"DIAXIS_FLYINGM_PITCH","features":[60]},{"name":"DIAXIS_FLYINGM_RUDDER","features":[60]},{"name":"DIAXIS_FLYINGM_THROTTLE","features":[60]},{"name":"DIAXIS_FOOTBALLD_LATERAL","features":[60]},{"name":"DIAXIS_FOOTBALLD_MOVE","features":[60]},{"name":"DIAXIS_FOOTBALLO_LATERAL","features":[60]},{"name":"DIAXIS_FOOTBALLO_MOVE","features":[60]},{"name":"DIAXIS_FOOTBALLQ_LATERAL","features":[60]},{"name":"DIAXIS_FOOTBALLQ_MOVE","features":[60]},{"name":"DIAXIS_FPS_LOOKUPDOWN","features":[60]},{"name":"DIAXIS_FPS_MOVE","features":[60]},{"name":"DIAXIS_FPS_ROTATE","features":[60]},{"name":"DIAXIS_FPS_SIDESTEP","features":[60]},{"name":"DIAXIS_GOLF_LATERAL","features":[60]},{"name":"DIAXIS_GOLF_MOVE","features":[60]},{"name":"DIAXIS_HOCKEYD_LATERAL","features":[60]},{"name":"DIAXIS_HOCKEYD_MOVE","features":[60]},{"name":"DIAXIS_HOCKEYG_LATERAL","features":[60]},{"name":"DIAXIS_HOCKEYG_MOVE","features":[60]},{"name":"DIAXIS_HOCKEYO_LATERAL","features":[60]},{"name":"DIAXIS_HOCKEYO_MOVE","features":[60]},{"name":"DIAXIS_HUNTING_LATERAL","features":[60]},{"name":"DIAXIS_HUNTING_MOVE","features":[60]},{"name":"DIAXIS_HUNTING_ROTATE","features":[60]},{"name":"DIAXIS_MECHA_ROTATE","features":[60]},{"name":"DIAXIS_MECHA_STEER","features":[60]},{"name":"DIAXIS_MECHA_THROTTLE","features":[60]},{"name":"DIAXIS_MECHA_TORSO","features":[60]},{"name":"DIAXIS_RACQUET_LATERAL","features":[60]},{"name":"DIAXIS_RACQUET_MOVE","features":[60]},{"name":"DIAXIS_REMOTE_SLIDER","features":[60]},{"name":"DIAXIS_REMOTE_SLIDER2","features":[60]},{"name":"DIAXIS_SKIING_SPEED","features":[60]},{"name":"DIAXIS_SKIING_TURN","features":[60]},{"name":"DIAXIS_SOCCERD_LATERAL","features":[60]},{"name":"DIAXIS_SOCCERD_MOVE","features":[60]},{"name":"DIAXIS_SOCCERO_BEND","features":[60]},{"name":"DIAXIS_SOCCERO_LATERAL","features":[60]},{"name":"DIAXIS_SOCCERO_MOVE","features":[60]},{"name":"DIAXIS_SPACESIM_CLIMB","features":[60]},{"name":"DIAXIS_SPACESIM_LATERAL","features":[60]},{"name":"DIAXIS_SPACESIM_MOVE","features":[60]},{"name":"DIAXIS_SPACESIM_ROTATE","features":[60]},{"name":"DIAXIS_SPACESIM_THROTTLE","features":[60]},{"name":"DIAXIS_STRATEGYR_LATERAL","features":[60]},{"name":"DIAXIS_STRATEGYR_MOVE","features":[60]},{"name":"DIAXIS_STRATEGYR_ROTATE","features":[60]},{"name":"DIAXIS_STRATEGYT_LATERAL","features":[60]},{"name":"DIAXIS_STRATEGYT_MOVE","features":[60]},{"name":"DIAXIS_TPS_MOVE","features":[60]},{"name":"DIAXIS_TPS_STEP","features":[60]},{"name":"DIAXIS_TPS_TURN","features":[60]},{"name":"DIA_APPFIXED","features":[60]},{"name":"DIA_APPMAPPED","features":[60]},{"name":"DIA_APPNOMAP","features":[60]},{"name":"DIA_FORCEFEEDBACK","features":[60]},{"name":"DIA_NORANGE","features":[60]},{"name":"DIBUTTON_2DCONTROL_DEVICE","features":[60]},{"name":"DIBUTTON_2DCONTROL_DISPLAY","features":[60]},{"name":"DIBUTTON_2DCONTROL_MENU","features":[60]},{"name":"DIBUTTON_2DCONTROL_PAUSE","features":[60]},{"name":"DIBUTTON_2DCONTROL_SELECT","features":[60]},{"name":"DIBUTTON_2DCONTROL_SPECIAL","features":[60]},{"name":"DIBUTTON_2DCONTROL_SPECIAL1","features":[60]},{"name":"DIBUTTON_2DCONTROL_SPECIAL2","features":[60]},{"name":"DIBUTTON_3DCONTROL_DEVICE","features":[60]},{"name":"DIBUTTON_3DCONTROL_DISPLAY","features":[60]},{"name":"DIBUTTON_3DCONTROL_MENU","features":[60]},{"name":"DIBUTTON_3DCONTROL_PAUSE","features":[60]},{"name":"DIBUTTON_3DCONTROL_SELECT","features":[60]},{"name":"DIBUTTON_3DCONTROL_SPECIAL","features":[60]},{"name":"DIBUTTON_3DCONTROL_SPECIAL1","features":[60]},{"name":"DIBUTTON_3DCONTROL_SPECIAL2","features":[60]},{"name":"DIBUTTON_ARCADEP_BACK_LINK","features":[60]},{"name":"DIBUTTON_ARCADEP_CROUCH","features":[60]},{"name":"DIBUTTON_ARCADEP_DEVICE","features":[60]},{"name":"DIBUTTON_ARCADEP_FIRE","features":[60]},{"name":"DIBUTTON_ARCADEP_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_ARCADEP_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_ARCADEP_JUMP","features":[60]},{"name":"DIBUTTON_ARCADEP_LEFT_LINK","features":[60]},{"name":"DIBUTTON_ARCADEP_MENU","features":[60]},{"name":"DIBUTTON_ARCADEP_PAUSE","features":[60]},{"name":"DIBUTTON_ARCADEP_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_ARCADEP_SELECT","features":[60]},{"name":"DIBUTTON_ARCADEP_SPECIAL","features":[60]},{"name":"DIBUTTON_ARCADEP_VIEW_DOWN_LINK","features":[60]},{"name":"DIBUTTON_ARCADEP_VIEW_LEFT_LINK","features":[60]},{"name":"DIBUTTON_ARCADEP_VIEW_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_ARCADEP_VIEW_UP_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_ATTACK","features":[60]},{"name":"DIBUTTON_ARCADES_BACK_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_CARRY","features":[60]},{"name":"DIBUTTON_ARCADES_DEVICE","features":[60]},{"name":"DIBUTTON_ARCADES_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_LEFT_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_MENU","features":[60]},{"name":"DIBUTTON_ARCADES_PAUSE","features":[60]},{"name":"DIBUTTON_ARCADES_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_SELECT","features":[60]},{"name":"DIBUTTON_ARCADES_SPECIAL","features":[60]},{"name":"DIBUTTON_ARCADES_THROW","features":[60]},{"name":"DIBUTTON_ARCADES_VIEW_DOWN_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_VIEW_LEFT_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_VIEW_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_ARCADES_VIEW_UP_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLB_BACK_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLB_BOX","features":[60]},{"name":"DIBUTTON_BASEBALLB_BUNT","features":[60]},{"name":"DIBUTTON_BASEBALLB_BURST","features":[60]},{"name":"DIBUTTON_BASEBALLB_CONTACT","features":[60]},{"name":"DIBUTTON_BASEBALLB_DEVICE","features":[60]},{"name":"DIBUTTON_BASEBALLB_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLB_LEFT_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLB_MENU","features":[60]},{"name":"DIBUTTON_BASEBALLB_NORMAL","features":[60]},{"name":"DIBUTTON_BASEBALLB_NOSTEAL","features":[60]},{"name":"DIBUTTON_BASEBALLB_PAUSE","features":[60]},{"name":"DIBUTTON_BASEBALLB_POWER","features":[60]},{"name":"DIBUTTON_BASEBALLB_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLB_SELECT","features":[60]},{"name":"DIBUTTON_BASEBALLB_SLIDE","features":[60]},{"name":"DIBUTTON_BASEBALLB_STEAL","features":[60]},{"name":"DIBUTTON_BASEBALLF_AIM_LEFT_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLF_AIM_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLF_BACK_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLF_BURST","features":[60]},{"name":"DIBUTTON_BASEBALLF_DEVICE","features":[60]},{"name":"DIBUTTON_BASEBALLF_DIVE","features":[60]},{"name":"DIBUTTON_BASEBALLF_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLF_JUMP","features":[60]},{"name":"DIBUTTON_BASEBALLF_MENU","features":[60]},{"name":"DIBUTTON_BASEBALLF_NEAREST","features":[60]},{"name":"DIBUTTON_BASEBALLF_PAUSE","features":[60]},{"name":"DIBUTTON_BASEBALLF_SHIFTIN","features":[60]},{"name":"DIBUTTON_BASEBALLF_SHIFTOUT","features":[60]},{"name":"DIBUTTON_BASEBALLF_THROW1","features":[60]},{"name":"DIBUTTON_BASEBALLF_THROW2","features":[60]},{"name":"DIBUTTON_BASEBALLP_BACK_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLP_BASE","features":[60]},{"name":"DIBUTTON_BASEBALLP_DEVICE","features":[60]},{"name":"DIBUTTON_BASEBALLP_FAKE","features":[60]},{"name":"DIBUTTON_BASEBALLP_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLP_LEFT_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLP_LOOK","features":[60]},{"name":"DIBUTTON_BASEBALLP_MENU","features":[60]},{"name":"DIBUTTON_BASEBALLP_PAUSE","features":[60]},{"name":"DIBUTTON_BASEBALLP_PITCH","features":[60]},{"name":"DIBUTTON_BASEBALLP_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_BASEBALLP_SELECT","features":[60]},{"name":"DIBUTTON_BASEBALLP_THROW","features":[60]},{"name":"DIBUTTON_BASEBALLP_WALK","features":[60]},{"name":"DIBUTTON_BBALLD_BACK_LINK","features":[60]},{"name":"DIBUTTON_BBALLD_BURST","features":[60]},{"name":"DIBUTTON_BBALLD_DEVICE","features":[60]},{"name":"DIBUTTON_BBALLD_FAKE","features":[60]},{"name":"DIBUTTON_BBALLD_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_BBALLD_JUMP","features":[60]},{"name":"DIBUTTON_BBALLD_LEFT_LINK","features":[60]},{"name":"DIBUTTON_BBALLD_MENU","features":[60]},{"name":"DIBUTTON_BBALLD_PAUSE","features":[60]},{"name":"DIBUTTON_BBALLD_PLAY","features":[60]},{"name":"DIBUTTON_BBALLD_PLAYER","features":[60]},{"name":"DIBUTTON_BBALLD_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_BBALLD_SPECIAL","features":[60]},{"name":"DIBUTTON_BBALLD_STEAL","features":[60]},{"name":"DIBUTTON_BBALLD_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_BBALLD_TIMEOUT","features":[60]},{"name":"DIBUTTON_BBALLO_BACK_LINK","features":[60]},{"name":"DIBUTTON_BBALLO_BURST","features":[60]},{"name":"DIBUTTON_BBALLO_CALL","features":[60]},{"name":"DIBUTTON_BBALLO_DEVICE","features":[60]},{"name":"DIBUTTON_BBALLO_DUNK","features":[60]},{"name":"DIBUTTON_BBALLO_FAKE","features":[60]},{"name":"DIBUTTON_BBALLO_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_BBALLO_JAB","features":[60]},{"name":"DIBUTTON_BBALLO_LEFT_LINK","features":[60]},{"name":"DIBUTTON_BBALLO_MENU","features":[60]},{"name":"DIBUTTON_BBALLO_PASS","features":[60]},{"name":"DIBUTTON_BBALLO_PAUSE","features":[60]},{"name":"DIBUTTON_BBALLO_PLAY","features":[60]},{"name":"DIBUTTON_BBALLO_PLAYER","features":[60]},{"name":"DIBUTTON_BBALLO_POST","features":[60]},{"name":"DIBUTTON_BBALLO_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_BBALLO_SCREEN","features":[60]},{"name":"DIBUTTON_BBALLO_SHOOT","features":[60]},{"name":"DIBUTTON_BBALLO_SPECIAL","features":[60]},{"name":"DIBUTTON_BBALLO_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_BBALLO_TIMEOUT","features":[60]},{"name":"DIBUTTON_BIKINGM_BRAKE_BUTTON_LINK","features":[60]},{"name":"DIBUTTON_BIKINGM_CAMERA","features":[60]},{"name":"DIBUTTON_BIKINGM_DEVICE","features":[60]},{"name":"DIBUTTON_BIKINGM_FASTER_LINK","features":[60]},{"name":"DIBUTTON_BIKINGM_JUMP","features":[60]},{"name":"DIBUTTON_BIKINGM_LEFT_LINK","features":[60]},{"name":"DIBUTTON_BIKINGM_MENU","features":[60]},{"name":"DIBUTTON_BIKINGM_PAUSE","features":[60]},{"name":"DIBUTTON_BIKINGM_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_BIKINGM_SELECT","features":[60]},{"name":"DIBUTTON_BIKINGM_SLOWER_LINK","features":[60]},{"name":"DIBUTTON_BIKINGM_SPECIAL1","features":[60]},{"name":"DIBUTTON_BIKINGM_SPECIAL2","features":[60]},{"name":"DIBUTTON_BIKINGM_ZOOM","features":[60]},{"name":"DIBUTTON_BROWSER_DEVICE","features":[60]},{"name":"DIBUTTON_BROWSER_FAVORITES","features":[60]},{"name":"DIBUTTON_BROWSER_HISTORY","features":[60]},{"name":"DIBUTTON_BROWSER_HOME","features":[60]},{"name":"DIBUTTON_BROWSER_MENU","features":[60]},{"name":"DIBUTTON_BROWSER_NEXT","features":[60]},{"name":"DIBUTTON_BROWSER_PAUSE","features":[60]},{"name":"DIBUTTON_BROWSER_PREVIOUS","features":[60]},{"name":"DIBUTTON_BROWSER_PRINT","features":[60]},{"name":"DIBUTTON_BROWSER_REFRESH","features":[60]},{"name":"DIBUTTON_BROWSER_SEARCH","features":[60]},{"name":"DIBUTTON_BROWSER_SELECT","features":[60]},{"name":"DIBUTTON_BROWSER_STOP","features":[60]},{"name":"DIBUTTON_CADF_DEVICE","features":[60]},{"name":"DIBUTTON_CADF_DISPLAY","features":[60]},{"name":"DIBUTTON_CADF_MENU","features":[60]},{"name":"DIBUTTON_CADF_PAUSE","features":[60]},{"name":"DIBUTTON_CADF_SELECT","features":[60]},{"name":"DIBUTTON_CADF_SPECIAL","features":[60]},{"name":"DIBUTTON_CADF_SPECIAL1","features":[60]},{"name":"DIBUTTON_CADF_SPECIAL2","features":[60]},{"name":"DIBUTTON_CADM_DEVICE","features":[60]},{"name":"DIBUTTON_CADM_DISPLAY","features":[60]},{"name":"DIBUTTON_CADM_MENU","features":[60]},{"name":"DIBUTTON_CADM_PAUSE","features":[60]},{"name":"DIBUTTON_CADM_SELECT","features":[60]},{"name":"DIBUTTON_CADM_SPECIAL","features":[60]},{"name":"DIBUTTON_CADM_SPECIAL1","features":[60]},{"name":"DIBUTTON_CADM_SPECIAL2","features":[60]},{"name":"DIBUTTON_DRIVINGC_ACCELERATE_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGC_AIDS","features":[60]},{"name":"DIBUTTON_DRIVINGC_BRAKE","features":[60]},{"name":"DIBUTTON_DRIVINGC_DASHBOARD","features":[60]},{"name":"DIBUTTON_DRIVINGC_DEVICE","features":[60]},{"name":"DIBUTTON_DRIVINGC_FIRE","features":[60]},{"name":"DIBUTTON_DRIVINGC_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_DRIVINGC_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGC_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGC_MENU","features":[60]},{"name":"DIBUTTON_DRIVINGC_PAUSE","features":[60]},{"name":"DIBUTTON_DRIVINGC_SHIFTDOWN","features":[60]},{"name":"DIBUTTON_DRIVINGC_SHIFTUP","features":[60]},{"name":"DIBUTTON_DRIVINGC_STEER_LEFT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGC_STEER_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGC_TARGET","features":[60]},{"name":"DIBUTTON_DRIVINGC_WEAPONS","features":[60]},{"name":"DIBUTTON_DRIVINGR_ACCELERATE_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGR_AIDS","features":[60]},{"name":"DIBUTTON_DRIVINGR_BOOST","features":[60]},{"name":"DIBUTTON_DRIVINGR_BRAKE","features":[60]},{"name":"DIBUTTON_DRIVINGR_DASHBOARD","features":[60]},{"name":"DIBUTTON_DRIVINGR_DEVICE","features":[60]},{"name":"DIBUTTON_DRIVINGR_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGR_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGR_MAP","features":[60]},{"name":"DIBUTTON_DRIVINGR_MENU","features":[60]},{"name":"DIBUTTON_DRIVINGR_PAUSE","features":[60]},{"name":"DIBUTTON_DRIVINGR_PIT","features":[60]},{"name":"DIBUTTON_DRIVINGR_SHIFTDOWN","features":[60]},{"name":"DIBUTTON_DRIVINGR_SHIFTUP","features":[60]},{"name":"DIBUTTON_DRIVINGR_STEER_LEFT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGR_STEER_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGR_VIEW","features":[60]},{"name":"DIBUTTON_DRIVINGT_ACCELERATE_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_BARREL_DOWN_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_BARREL_UP_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_BRAKE","features":[60]},{"name":"DIBUTTON_DRIVINGT_DASHBOARD","features":[60]},{"name":"DIBUTTON_DRIVINGT_DEVICE","features":[60]},{"name":"DIBUTTON_DRIVINGT_FIRE","features":[60]},{"name":"DIBUTTON_DRIVINGT_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_DRIVINGT_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_MENU","features":[60]},{"name":"DIBUTTON_DRIVINGT_PAUSE","features":[60]},{"name":"DIBUTTON_DRIVINGT_ROTATE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_ROTATE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_STEER_LEFT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_STEER_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_DRIVINGT_TARGET","features":[60]},{"name":"DIBUTTON_DRIVINGT_VIEW","features":[60]},{"name":"DIBUTTON_DRIVINGT_WEAPONS","features":[60]},{"name":"DIBUTTON_FIGHTINGH_BACKWARD_LINK","features":[60]},{"name":"DIBUTTON_FIGHTINGH_BLOCK","features":[60]},{"name":"DIBUTTON_FIGHTINGH_CROUCH","features":[60]},{"name":"DIBUTTON_FIGHTINGH_DEVICE","features":[60]},{"name":"DIBUTTON_FIGHTINGH_DISPLAY","features":[60]},{"name":"DIBUTTON_FIGHTINGH_DODGE","features":[60]},{"name":"DIBUTTON_FIGHTINGH_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_FIGHTINGH_JUMP","features":[60]},{"name":"DIBUTTON_FIGHTINGH_KICK","features":[60]},{"name":"DIBUTTON_FIGHTINGH_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FIGHTINGH_MENU","features":[60]},{"name":"DIBUTTON_FIGHTINGH_PAUSE","features":[60]},{"name":"DIBUTTON_FIGHTINGH_PUNCH","features":[60]},{"name":"DIBUTTON_FIGHTINGH_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FIGHTINGH_SELECT","features":[60]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL1","features":[60]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL2","features":[60]},{"name":"DIBUTTON_FISHING_BACK_LINK","features":[60]},{"name":"DIBUTTON_FISHING_BAIT","features":[60]},{"name":"DIBUTTON_FISHING_BINOCULAR","features":[60]},{"name":"DIBUTTON_FISHING_CAST","features":[60]},{"name":"DIBUTTON_FISHING_CROUCH","features":[60]},{"name":"DIBUTTON_FISHING_DEVICE","features":[60]},{"name":"DIBUTTON_FISHING_DISPLAY","features":[60]},{"name":"DIBUTTON_FISHING_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_FISHING_JUMP","features":[60]},{"name":"DIBUTTON_FISHING_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FISHING_MAP","features":[60]},{"name":"DIBUTTON_FISHING_MENU","features":[60]},{"name":"DIBUTTON_FISHING_PAUSE","features":[60]},{"name":"DIBUTTON_FISHING_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FISHING_ROTATE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FISHING_ROTATE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FISHING_TYPE","features":[60]},{"name":"DIBUTTON_FLYINGC_BRAKE_LINK","features":[60]},{"name":"DIBUTTON_FLYINGC_DEVICE","features":[60]},{"name":"DIBUTTON_FLYINGC_DISPLAY","features":[60]},{"name":"DIBUTTON_FLYINGC_FASTER_LINK","features":[60]},{"name":"DIBUTTON_FLYINGC_FLAPSDOWN","features":[60]},{"name":"DIBUTTON_FLYINGC_FLAPSUP","features":[60]},{"name":"DIBUTTON_FLYINGC_GEAR","features":[60]},{"name":"DIBUTTON_FLYINGC_GLANCE_DOWN_LINK","features":[60]},{"name":"DIBUTTON_FLYINGC_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FLYINGC_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FLYINGC_GLANCE_UP_LINK","features":[60]},{"name":"DIBUTTON_FLYINGC_MENU","features":[60]},{"name":"DIBUTTON_FLYINGC_PAUSE","features":[60]},{"name":"DIBUTTON_FLYINGC_SLOWER_LINK","features":[60]},{"name":"DIBUTTON_FLYINGC_VIEW","features":[60]},{"name":"DIBUTTON_FLYINGH_COUNTER","features":[60]},{"name":"DIBUTTON_FLYINGH_DEVICE","features":[60]},{"name":"DIBUTTON_FLYINGH_FASTER_LINK","features":[60]},{"name":"DIBUTTON_FLYINGH_FIRE","features":[60]},{"name":"DIBUTTON_FLYINGH_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_FLYINGH_GEAR","features":[60]},{"name":"DIBUTTON_FLYINGH_GLANCE_DOWN_LINK","features":[60]},{"name":"DIBUTTON_FLYINGH_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FLYINGH_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FLYINGH_GLANCE_UP_LINK","features":[60]},{"name":"DIBUTTON_FLYINGH_MENU","features":[60]},{"name":"DIBUTTON_FLYINGH_PAUSE","features":[60]},{"name":"DIBUTTON_FLYINGH_SLOWER_LINK","features":[60]},{"name":"DIBUTTON_FLYINGH_TARGET","features":[60]},{"name":"DIBUTTON_FLYINGH_VIEW","features":[60]},{"name":"DIBUTTON_FLYINGH_WEAPONS","features":[60]},{"name":"DIBUTTON_FLYINGM_BRAKE_LINK","features":[60]},{"name":"DIBUTTON_FLYINGM_COUNTER","features":[60]},{"name":"DIBUTTON_FLYINGM_DEVICE","features":[60]},{"name":"DIBUTTON_FLYINGM_DISPLAY","features":[60]},{"name":"DIBUTTON_FLYINGM_FASTER_LINK","features":[60]},{"name":"DIBUTTON_FLYINGM_FIRE","features":[60]},{"name":"DIBUTTON_FLYINGM_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_FLYINGM_FLAPSDOWN","features":[60]},{"name":"DIBUTTON_FLYINGM_FLAPSUP","features":[60]},{"name":"DIBUTTON_FLYINGM_GEAR","features":[60]},{"name":"DIBUTTON_FLYINGM_GLANCE_DOWN_LINK","features":[60]},{"name":"DIBUTTON_FLYINGM_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FLYINGM_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FLYINGM_GLANCE_UP_LINK","features":[60]},{"name":"DIBUTTON_FLYINGM_MENU","features":[60]},{"name":"DIBUTTON_FLYINGM_PAUSE","features":[60]},{"name":"DIBUTTON_FLYINGM_SLOWER_LINK","features":[60]},{"name":"DIBUTTON_FLYINGM_TARGET","features":[60]},{"name":"DIBUTTON_FLYINGM_VIEW","features":[60]},{"name":"DIBUTTON_FLYINGM_WEAPONS","features":[60]},{"name":"DIBUTTON_FOOTBALLD_AUDIBLE","features":[60]},{"name":"DIBUTTON_FOOTBALLD_BACK_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLD_BULLRUSH","features":[60]},{"name":"DIBUTTON_FOOTBALLD_DEVICE","features":[60]},{"name":"DIBUTTON_FOOTBALLD_FAKE","features":[60]},{"name":"DIBUTTON_FOOTBALLD_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLD_JUMP","features":[60]},{"name":"DIBUTTON_FOOTBALLD_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLD_MENU","features":[60]},{"name":"DIBUTTON_FOOTBALLD_PAUSE","features":[60]},{"name":"DIBUTTON_FOOTBALLD_PLAY","features":[60]},{"name":"DIBUTTON_FOOTBALLD_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLD_RIP","features":[60]},{"name":"DIBUTTON_FOOTBALLD_SELECT","features":[60]},{"name":"DIBUTTON_FOOTBALLD_SPIN","features":[60]},{"name":"DIBUTTON_FOOTBALLD_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_FOOTBALLD_SUPERTACKLE","features":[60]},{"name":"DIBUTTON_FOOTBALLD_SWIM","features":[60]},{"name":"DIBUTTON_FOOTBALLD_TACKLE","features":[60]},{"name":"DIBUTTON_FOOTBALLD_ZOOM","features":[60]},{"name":"DIBUTTON_FOOTBALLO_BACK_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLO_DEVICE","features":[60]},{"name":"DIBUTTON_FOOTBALLO_DIVE","features":[60]},{"name":"DIBUTTON_FOOTBALLO_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLO_JUKE","features":[60]},{"name":"DIBUTTON_FOOTBALLO_JUMP","features":[60]},{"name":"DIBUTTON_FOOTBALLO_LEFTARM","features":[60]},{"name":"DIBUTTON_FOOTBALLO_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLO_MENU","features":[60]},{"name":"DIBUTTON_FOOTBALLO_PAUSE","features":[60]},{"name":"DIBUTTON_FOOTBALLO_RIGHTARM","features":[60]},{"name":"DIBUTTON_FOOTBALLO_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLO_SHOULDER","features":[60]},{"name":"DIBUTTON_FOOTBALLO_SPIN","features":[60]},{"name":"DIBUTTON_FOOTBALLO_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_FOOTBALLO_THROW","features":[60]},{"name":"DIBUTTON_FOOTBALLO_TURBO","features":[60]},{"name":"DIBUTTON_FOOTBALLO_ZOOM","features":[60]},{"name":"DIBUTTON_FOOTBALLP_DEVICE","features":[60]},{"name":"DIBUTTON_FOOTBALLP_HELP","features":[60]},{"name":"DIBUTTON_FOOTBALLP_MENU","features":[60]},{"name":"DIBUTTON_FOOTBALLP_PAUSE","features":[60]},{"name":"DIBUTTON_FOOTBALLP_PLAY","features":[60]},{"name":"DIBUTTON_FOOTBALLP_SELECT","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_AUDIBLE","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_BACK_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_DEVICE","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_FAKE","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_FAKESNAP","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_JUMP","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_MENU","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_MOTION","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_PASS","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_PAUSE","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_SELECT","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_SLIDE","features":[60]},{"name":"DIBUTTON_FOOTBALLQ_SNAP","features":[60]},{"name":"DIBUTTON_FPS_APPLY","features":[60]},{"name":"DIBUTTON_FPS_BACKWARD_LINK","features":[60]},{"name":"DIBUTTON_FPS_CROUCH","features":[60]},{"name":"DIBUTTON_FPS_DEVICE","features":[60]},{"name":"DIBUTTON_FPS_DISPLAY","features":[60]},{"name":"DIBUTTON_FPS_DODGE","features":[60]},{"name":"DIBUTTON_FPS_FIRE","features":[60]},{"name":"DIBUTTON_FPS_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_FPS_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_FPS_GLANCEL","features":[60]},{"name":"DIBUTTON_FPS_GLANCER","features":[60]},{"name":"DIBUTTON_FPS_GLANCE_DOWN_LINK","features":[60]},{"name":"DIBUTTON_FPS_GLANCE_UP_LINK","features":[60]},{"name":"DIBUTTON_FPS_JUMP","features":[60]},{"name":"DIBUTTON_FPS_MENU","features":[60]},{"name":"DIBUTTON_FPS_PAUSE","features":[60]},{"name":"DIBUTTON_FPS_ROTATE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FPS_ROTATE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FPS_SELECT","features":[60]},{"name":"DIBUTTON_FPS_STEP_LEFT_LINK","features":[60]},{"name":"DIBUTTON_FPS_STEP_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_FPS_STRAFE","features":[60]},{"name":"DIBUTTON_FPS_WEAPONS","features":[60]},{"name":"DIBUTTON_GOLF_BACK_LINK","features":[60]},{"name":"DIBUTTON_GOLF_DEVICE","features":[60]},{"name":"DIBUTTON_GOLF_DOWN","features":[60]},{"name":"DIBUTTON_GOLF_FLYBY","features":[60]},{"name":"DIBUTTON_GOLF_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_GOLF_LEFT_LINK","features":[60]},{"name":"DIBUTTON_GOLF_MENU","features":[60]},{"name":"DIBUTTON_GOLF_PAUSE","features":[60]},{"name":"DIBUTTON_GOLF_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_GOLF_SELECT","features":[60]},{"name":"DIBUTTON_GOLF_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_GOLF_SWING","features":[60]},{"name":"DIBUTTON_GOLF_TERRAIN","features":[60]},{"name":"DIBUTTON_GOLF_TIMEOUT","features":[60]},{"name":"DIBUTTON_GOLF_UP","features":[60]},{"name":"DIBUTTON_GOLF_ZOOM","features":[60]},{"name":"DIBUTTON_HOCKEYD_BACK_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYD_BLOCK","features":[60]},{"name":"DIBUTTON_HOCKEYD_BURST","features":[60]},{"name":"DIBUTTON_HOCKEYD_DEVICE","features":[60]},{"name":"DIBUTTON_HOCKEYD_FAKE","features":[60]},{"name":"DIBUTTON_HOCKEYD_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYD_LEFT_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYD_MENU","features":[60]},{"name":"DIBUTTON_HOCKEYD_PAUSE","features":[60]},{"name":"DIBUTTON_HOCKEYD_PLAYER","features":[60]},{"name":"DIBUTTON_HOCKEYD_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYD_STEAL","features":[60]},{"name":"DIBUTTON_HOCKEYD_STRATEGY","features":[60]},{"name":"DIBUTTON_HOCKEYD_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_HOCKEYD_TIMEOUT","features":[60]},{"name":"DIBUTTON_HOCKEYD_ZOOM","features":[60]},{"name":"DIBUTTON_HOCKEYG_BACK_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYG_BLOCK","features":[60]},{"name":"DIBUTTON_HOCKEYG_DEVICE","features":[60]},{"name":"DIBUTTON_HOCKEYG_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYG_LEFT_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYG_MENU","features":[60]},{"name":"DIBUTTON_HOCKEYG_PASS","features":[60]},{"name":"DIBUTTON_HOCKEYG_PAUSE","features":[60]},{"name":"DIBUTTON_HOCKEYG_POKE","features":[60]},{"name":"DIBUTTON_HOCKEYG_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYG_STEAL","features":[60]},{"name":"DIBUTTON_HOCKEYG_STRATEGY","features":[60]},{"name":"DIBUTTON_HOCKEYG_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_HOCKEYG_TIMEOUT","features":[60]},{"name":"DIBUTTON_HOCKEYG_ZOOM","features":[60]},{"name":"DIBUTTON_HOCKEYO_BACK_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYO_BURST","features":[60]},{"name":"DIBUTTON_HOCKEYO_DEVICE","features":[60]},{"name":"DIBUTTON_HOCKEYO_FAKE","features":[60]},{"name":"DIBUTTON_HOCKEYO_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYO_LEFT_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYO_MENU","features":[60]},{"name":"DIBUTTON_HOCKEYO_PASS","features":[60]},{"name":"DIBUTTON_HOCKEYO_PAUSE","features":[60]},{"name":"DIBUTTON_HOCKEYO_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_HOCKEYO_SHOOT","features":[60]},{"name":"DIBUTTON_HOCKEYO_SPECIAL","features":[60]},{"name":"DIBUTTON_HOCKEYO_STRATEGY","features":[60]},{"name":"DIBUTTON_HOCKEYO_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_HOCKEYO_TIMEOUT","features":[60]},{"name":"DIBUTTON_HOCKEYO_ZOOM","features":[60]},{"name":"DIBUTTON_HUNTING_AIM","features":[60]},{"name":"DIBUTTON_HUNTING_BACK_LINK","features":[60]},{"name":"DIBUTTON_HUNTING_BINOCULAR","features":[60]},{"name":"DIBUTTON_HUNTING_CALL","features":[60]},{"name":"DIBUTTON_HUNTING_CROUCH","features":[60]},{"name":"DIBUTTON_HUNTING_DEVICE","features":[60]},{"name":"DIBUTTON_HUNTING_DISPLAY","features":[60]},{"name":"DIBUTTON_HUNTING_FIRE","features":[60]},{"name":"DIBUTTON_HUNTING_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_HUNTING_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_HUNTING_JUMP","features":[60]},{"name":"DIBUTTON_HUNTING_LEFT_LINK","features":[60]},{"name":"DIBUTTON_HUNTING_MAP","features":[60]},{"name":"DIBUTTON_HUNTING_MENU","features":[60]},{"name":"DIBUTTON_HUNTING_PAUSE","features":[60]},{"name":"DIBUTTON_HUNTING_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_HUNTING_ROTATE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_HUNTING_ROTATE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_HUNTING_SPECIAL","features":[60]},{"name":"DIBUTTON_HUNTING_WEAPON","features":[60]},{"name":"DIBUTTON_MECHA_BACK_LINK","features":[60]},{"name":"DIBUTTON_MECHA_CENTER","features":[60]},{"name":"DIBUTTON_MECHA_DEVICE","features":[60]},{"name":"DIBUTTON_MECHA_FASTER_LINK","features":[60]},{"name":"DIBUTTON_MECHA_FIRE","features":[60]},{"name":"DIBUTTON_MECHA_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_MECHA_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_MECHA_JUMP","features":[60]},{"name":"DIBUTTON_MECHA_LEFT_LINK","features":[60]},{"name":"DIBUTTON_MECHA_MENU","features":[60]},{"name":"DIBUTTON_MECHA_PAUSE","features":[60]},{"name":"DIBUTTON_MECHA_REVERSE","features":[60]},{"name":"DIBUTTON_MECHA_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_MECHA_ROTATE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_MECHA_ROTATE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_MECHA_SLOWER_LINK","features":[60]},{"name":"DIBUTTON_MECHA_TARGET","features":[60]},{"name":"DIBUTTON_MECHA_VIEW","features":[60]},{"name":"DIBUTTON_MECHA_WEAPONS","features":[60]},{"name":"DIBUTTON_MECHA_ZOOM","features":[60]},{"name":"DIBUTTON_RACQUET_BACKSWING","features":[60]},{"name":"DIBUTTON_RACQUET_BACK_LINK","features":[60]},{"name":"DIBUTTON_RACQUET_DEVICE","features":[60]},{"name":"DIBUTTON_RACQUET_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_RACQUET_LEFT_LINK","features":[60]},{"name":"DIBUTTON_RACQUET_MENU","features":[60]},{"name":"DIBUTTON_RACQUET_PAUSE","features":[60]},{"name":"DIBUTTON_RACQUET_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_RACQUET_SELECT","features":[60]},{"name":"DIBUTTON_RACQUET_SMASH","features":[60]},{"name":"DIBUTTON_RACQUET_SPECIAL","features":[60]},{"name":"DIBUTTON_RACQUET_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_RACQUET_SWING","features":[60]},{"name":"DIBUTTON_RACQUET_TIMEOUT","features":[60]},{"name":"DIBUTTON_REMOTE_ADJUST","features":[60]},{"name":"DIBUTTON_REMOTE_CABLE","features":[60]},{"name":"DIBUTTON_REMOTE_CD","features":[60]},{"name":"DIBUTTON_REMOTE_CHANGE","features":[60]},{"name":"DIBUTTON_REMOTE_CUE","features":[60]},{"name":"DIBUTTON_REMOTE_DEVICE","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT0","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT1","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT2","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT3","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT4","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT5","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT6","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT7","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT8","features":[60]},{"name":"DIBUTTON_REMOTE_DIGIT9","features":[60]},{"name":"DIBUTTON_REMOTE_DVD","features":[60]},{"name":"DIBUTTON_REMOTE_MENU","features":[60]},{"name":"DIBUTTON_REMOTE_MUTE","features":[60]},{"name":"DIBUTTON_REMOTE_PAUSE","features":[60]},{"name":"DIBUTTON_REMOTE_PLAY","features":[60]},{"name":"DIBUTTON_REMOTE_RECORD","features":[60]},{"name":"DIBUTTON_REMOTE_REVIEW","features":[60]},{"name":"DIBUTTON_REMOTE_SELECT","features":[60]},{"name":"DIBUTTON_REMOTE_TUNER","features":[60]},{"name":"DIBUTTON_REMOTE_TV","features":[60]},{"name":"DIBUTTON_REMOTE_VCR","features":[60]},{"name":"DIBUTTON_SKIING_CAMERA","features":[60]},{"name":"DIBUTTON_SKIING_CROUCH","features":[60]},{"name":"DIBUTTON_SKIING_DEVICE","features":[60]},{"name":"DIBUTTON_SKIING_FASTER_LINK","features":[60]},{"name":"DIBUTTON_SKIING_JUMP","features":[60]},{"name":"DIBUTTON_SKIING_LEFT_LINK","features":[60]},{"name":"DIBUTTON_SKIING_MENU","features":[60]},{"name":"DIBUTTON_SKIING_PAUSE","features":[60]},{"name":"DIBUTTON_SKIING_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_SKIING_SELECT","features":[60]},{"name":"DIBUTTON_SKIING_SLOWER_LINK","features":[60]},{"name":"DIBUTTON_SKIING_SPECIAL1","features":[60]},{"name":"DIBUTTON_SKIING_SPECIAL2","features":[60]},{"name":"DIBUTTON_SKIING_ZOOM","features":[60]},{"name":"DIBUTTON_SOCCERD_BACK_LINK","features":[60]},{"name":"DIBUTTON_SOCCERD_BLOCK","features":[60]},{"name":"DIBUTTON_SOCCERD_CLEAR","features":[60]},{"name":"DIBUTTON_SOCCERD_DEVICE","features":[60]},{"name":"DIBUTTON_SOCCERD_FAKE","features":[60]},{"name":"DIBUTTON_SOCCERD_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_SOCCERD_FOUL","features":[60]},{"name":"DIBUTTON_SOCCERD_GOALIECHARGE","features":[60]},{"name":"DIBUTTON_SOCCERD_HEAD","features":[60]},{"name":"DIBUTTON_SOCCERD_LEFT_LINK","features":[60]},{"name":"DIBUTTON_SOCCERD_MENU","features":[60]},{"name":"DIBUTTON_SOCCERD_PAUSE","features":[60]},{"name":"DIBUTTON_SOCCERD_PLAYER","features":[60]},{"name":"DIBUTTON_SOCCERD_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_SOCCERD_SELECT","features":[60]},{"name":"DIBUTTON_SOCCERD_SLIDE","features":[60]},{"name":"DIBUTTON_SOCCERD_SPECIAL","features":[60]},{"name":"DIBUTTON_SOCCERD_STEAL","features":[60]},{"name":"DIBUTTON_SOCCERD_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_SOCCERO_BACK_LINK","features":[60]},{"name":"DIBUTTON_SOCCERO_CONTROL","features":[60]},{"name":"DIBUTTON_SOCCERO_DEVICE","features":[60]},{"name":"DIBUTTON_SOCCERO_FAKE","features":[60]},{"name":"DIBUTTON_SOCCERO_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_SOCCERO_HEAD","features":[60]},{"name":"DIBUTTON_SOCCERO_LEFT_LINK","features":[60]},{"name":"DIBUTTON_SOCCERO_MENU","features":[60]},{"name":"DIBUTTON_SOCCERO_PASS","features":[60]},{"name":"DIBUTTON_SOCCERO_PASSTHRU","features":[60]},{"name":"DIBUTTON_SOCCERO_PAUSE","features":[60]},{"name":"DIBUTTON_SOCCERO_PLAYER","features":[60]},{"name":"DIBUTTON_SOCCERO_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_SOCCERO_SELECT","features":[60]},{"name":"DIBUTTON_SOCCERO_SHOOT","features":[60]},{"name":"DIBUTTON_SOCCERO_SHOOTHIGH","features":[60]},{"name":"DIBUTTON_SOCCERO_SHOOTLOW","features":[60]},{"name":"DIBUTTON_SOCCERO_SPECIAL1","features":[60]},{"name":"DIBUTTON_SOCCERO_SPRINT","features":[60]},{"name":"DIBUTTON_SOCCERO_SUBSTITUTE","features":[60]},{"name":"DIBUTTON_SPACESIM_BACKWARD_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_DEVICE","features":[60]},{"name":"DIBUTTON_SPACESIM_DISPLAY","features":[60]},{"name":"DIBUTTON_SPACESIM_FASTER_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_FIRE","features":[60]},{"name":"DIBUTTON_SPACESIM_FIRESECONDARY","features":[60]},{"name":"DIBUTTON_SPACESIM_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_GEAR","features":[60]},{"name":"DIBUTTON_SPACESIM_GLANCE_DOWN_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_GLANCE_UP_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_LEFT_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_LOWER","features":[60]},{"name":"DIBUTTON_SPACESIM_MENU","features":[60]},{"name":"DIBUTTON_SPACESIM_PAUSE","features":[60]},{"name":"DIBUTTON_SPACESIM_RAISE","features":[60]},{"name":"DIBUTTON_SPACESIM_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_SLOWER_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_TARGET","features":[60]},{"name":"DIBUTTON_SPACESIM_TURN_LEFT_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_TURN_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_SPACESIM_VIEW","features":[60]},{"name":"DIBUTTON_SPACESIM_WEAPONS","features":[60]},{"name":"DIBUTTON_STRATEGYR_APPLY","features":[60]},{"name":"DIBUTTON_STRATEGYR_ATTACK","features":[60]},{"name":"DIBUTTON_STRATEGYR_BACK_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYR_CAST","features":[60]},{"name":"DIBUTTON_STRATEGYR_CROUCH","features":[60]},{"name":"DIBUTTON_STRATEGYR_DEVICE","features":[60]},{"name":"DIBUTTON_STRATEGYR_DISPLAY","features":[60]},{"name":"DIBUTTON_STRATEGYR_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYR_GET","features":[60]},{"name":"DIBUTTON_STRATEGYR_JUMP","features":[60]},{"name":"DIBUTTON_STRATEGYR_LEFT_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYR_MAP","features":[60]},{"name":"DIBUTTON_STRATEGYR_MENU","features":[60]},{"name":"DIBUTTON_STRATEGYR_PAUSE","features":[60]},{"name":"DIBUTTON_STRATEGYR_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYR_ROTATE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYR_ROTATE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYR_SELECT","features":[60]},{"name":"DIBUTTON_STRATEGYT_APPLY","features":[60]},{"name":"DIBUTTON_STRATEGYT_BACK_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYT_DEVICE","features":[60]},{"name":"DIBUTTON_STRATEGYT_DISPLAY","features":[60]},{"name":"DIBUTTON_STRATEGYT_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYT_INSTRUCT","features":[60]},{"name":"DIBUTTON_STRATEGYT_LEFT_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYT_MAP","features":[60]},{"name":"DIBUTTON_STRATEGYT_MENU","features":[60]},{"name":"DIBUTTON_STRATEGYT_PAUSE","features":[60]},{"name":"DIBUTTON_STRATEGYT_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_STRATEGYT_SELECT","features":[60]},{"name":"DIBUTTON_STRATEGYT_TEAM","features":[60]},{"name":"DIBUTTON_STRATEGYT_TURN","features":[60]},{"name":"DIBUTTON_STRATEGYT_ZOOM","features":[60]},{"name":"DIBUTTON_TPS_ACTION","features":[60]},{"name":"DIBUTTON_TPS_BACKWARD_LINK","features":[60]},{"name":"DIBUTTON_TPS_DEVICE","features":[60]},{"name":"DIBUTTON_TPS_DODGE","features":[60]},{"name":"DIBUTTON_TPS_FORWARD_LINK","features":[60]},{"name":"DIBUTTON_TPS_GLANCE_DOWN_LINK","features":[60]},{"name":"DIBUTTON_TPS_GLANCE_LEFT_LINK","features":[60]},{"name":"DIBUTTON_TPS_GLANCE_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_TPS_GLANCE_UP_LINK","features":[60]},{"name":"DIBUTTON_TPS_INVENTORY","features":[60]},{"name":"DIBUTTON_TPS_JUMP","features":[60]},{"name":"DIBUTTON_TPS_MENU","features":[60]},{"name":"DIBUTTON_TPS_PAUSE","features":[60]},{"name":"DIBUTTON_TPS_RUN","features":[60]},{"name":"DIBUTTON_TPS_SELECT","features":[60]},{"name":"DIBUTTON_TPS_STEPLEFT","features":[60]},{"name":"DIBUTTON_TPS_STEPRIGHT","features":[60]},{"name":"DIBUTTON_TPS_TURN_LEFT_LINK","features":[60]},{"name":"DIBUTTON_TPS_TURN_RIGHT_LINK","features":[60]},{"name":"DIBUTTON_TPS_USE","features":[60]},{"name":"DIBUTTON_TPS_VIEW","features":[60]},{"name":"DICD_DEFAULT","features":[60]},{"name":"DICD_EDIT","features":[60]},{"name":"DICOLORSET","features":[60]},{"name":"DICONDITION","features":[60]},{"name":"DICONFIGUREDEVICESPARAMSA","features":[60,3]},{"name":"DICONFIGUREDEVICESPARAMSW","features":[60,3]},{"name":"DICONSTANTFORCE","features":[60]},{"name":"DICUSTOMFORCE","features":[60]},{"name":"DIDAL_BOTTOMALIGNED","features":[60]},{"name":"DIDAL_CENTERED","features":[60]},{"name":"DIDAL_LEFTALIGNED","features":[60]},{"name":"DIDAL_MIDDLE","features":[60]},{"name":"DIDAL_RIGHTALIGNED","features":[60]},{"name":"DIDAL_TOPALIGNED","features":[60]},{"name":"DIDATAFORMAT","features":[60]},{"name":"DIDBAM_DEFAULT","features":[60]},{"name":"DIDBAM_HWDEFAULTS","features":[60]},{"name":"DIDBAM_INITIALIZE","features":[60]},{"name":"DIDBAM_PRESERVE","features":[60]},{"name":"DIDC_ALIAS","features":[60]},{"name":"DIDC_ATTACHED","features":[60]},{"name":"DIDC_DEADBAND","features":[60]},{"name":"DIDC_EMULATED","features":[60]},{"name":"DIDC_FFATTACK","features":[60]},{"name":"DIDC_FFFADE","features":[60]},{"name":"DIDC_FORCEFEEDBACK","features":[60]},{"name":"DIDC_HIDDEN","features":[60]},{"name":"DIDC_PHANTOM","features":[60]},{"name":"DIDC_POLLEDDATAFORMAT","features":[60]},{"name":"DIDC_POLLEDDEVICE","features":[60]},{"name":"DIDC_POSNEGCOEFFICIENTS","features":[60]},{"name":"DIDC_POSNEGSATURATION","features":[60]},{"name":"DIDC_SATURATION","features":[60]},{"name":"DIDC_STARTDELAY","features":[60]},{"name":"DIDEVCAPS","features":[60]},{"name":"DIDEVCAPS_DX3","features":[60]},{"name":"DIDEVICEIMAGEINFOA","features":[60,3]},{"name":"DIDEVICEIMAGEINFOHEADERA","features":[60,3]},{"name":"DIDEVICEIMAGEINFOHEADERW","features":[60,3]},{"name":"DIDEVICEIMAGEINFOW","features":[60,3]},{"name":"DIDEVICEINSTANCEA","features":[60]},{"name":"DIDEVICEINSTANCEW","features":[60]},{"name":"DIDEVICEINSTANCE_DX3A","features":[60]},{"name":"DIDEVICEINSTANCE_DX3W","features":[60]},{"name":"DIDEVICEOBJECTDATA","features":[60]},{"name":"DIDEVICEOBJECTDATA_DX3","features":[60]},{"name":"DIDEVICEOBJECTINSTANCEA","features":[60]},{"name":"DIDEVICEOBJECTINSTANCEW","features":[60]},{"name":"DIDEVICEOBJECTINSTANCE_DX3A","features":[60]},{"name":"DIDEVICEOBJECTINSTANCE_DX3W","features":[60]},{"name":"DIDEVICESTATE","features":[60]},{"name":"DIDEVTYPEJOYSTICK_FLIGHTSTICK","features":[60]},{"name":"DIDEVTYPEJOYSTICK_GAMEPAD","features":[60]},{"name":"DIDEVTYPEJOYSTICK_HEADTRACKER","features":[60]},{"name":"DIDEVTYPEJOYSTICK_RUDDER","features":[60]},{"name":"DIDEVTYPEJOYSTICK_TRADITIONAL","features":[60]},{"name":"DIDEVTYPEJOYSTICK_UNKNOWN","features":[60]},{"name":"DIDEVTYPEJOYSTICK_WHEEL","features":[60]},{"name":"DIDEVTYPEKEYBOARD_J3100","features":[60]},{"name":"DIDEVTYPEKEYBOARD_JAPAN106","features":[60]},{"name":"DIDEVTYPEKEYBOARD_JAPANAX","features":[60]},{"name":"DIDEVTYPEKEYBOARD_NEC98","features":[60]},{"name":"DIDEVTYPEKEYBOARD_NEC98106","features":[60]},{"name":"DIDEVTYPEKEYBOARD_NEC98LAPTOP","features":[60]},{"name":"DIDEVTYPEKEYBOARD_NOKIA1050","features":[60]},{"name":"DIDEVTYPEKEYBOARD_NOKIA9140","features":[60]},{"name":"DIDEVTYPEKEYBOARD_OLIVETTI","features":[60]},{"name":"DIDEVTYPEKEYBOARD_PCAT","features":[60]},{"name":"DIDEVTYPEKEYBOARD_PCENH","features":[60]},{"name":"DIDEVTYPEKEYBOARD_PCXT","features":[60]},{"name":"DIDEVTYPEKEYBOARD_UNKNOWN","features":[60]},{"name":"DIDEVTYPEMOUSE_FINGERSTICK","features":[60]},{"name":"DIDEVTYPEMOUSE_TOUCHPAD","features":[60]},{"name":"DIDEVTYPEMOUSE_TRACKBALL","features":[60]},{"name":"DIDEVTYPEMOUSE_TRADITIONAL","features":[60]},{"name":"DIDEVTYPEMOUSE_UNKNOWN","features":[60]},{"name":"DIDEVTYPE_DEVICE","features":[60]},{"name":"DIDEVTYPE_HID","features":[60]},{"name":"DIDEVTYPE_JOYSTICK","features":[60]},{"name":"DIDEVTYPE_KEYBOARD","features":[60]},{"name":"DIDEVTYPE_MOUSE","features":[60]},{"name":"DIDFT_ABSAXIS","features":[60]},{"name":"DIDFT_ALIAS","features":[60]},{"name":"DIDFT_ALL","features":[60]},{"name":"DIDFT_ANYINSTANCE","features":[60]},{"name":"DIDFT_AXIS","features":[60]},{"name":"DIDFT_BUTTON","features":[60]},{"name":"DIDFT_COLLECTION","features":[60]},{"name":"DIDFT_FFACTUATOR","features":[60]},{"name":"DIDFT_FFEFFECTTRIGGER","features":[60]},{"name":"DIDFT_INSTANCEMASK","features":[60]},{"name":"DIDFT_NOCOLLECTION","features":[60]},{"name":"DIDFT_NODATA","features":[60]},{"name":"DIDFT_OUTPUT","features":[60]},{"name":"DIDFT_POV","features":[60]},{"name":"DIDFT_PSHBUTTON","features":[60]},{"name":"DIDFT_RELAXIS","features":[60]},{"name":"DIDFT_TGLBUTTON","features":[60]},{"name":"DIDFT_VENDORDEFINED","features":[60]},{"name":"DIDF_ABSAXIS","features":[60]},{"name":"DIDF_RELAXIS","features":[60]},{"name":"DIDIFT_CONFIGURATION","features":[60]},{"name":"DIDIFT_DELETE","features":[60]},{"name":"DIDIFT_OVERLAY","features":[60]},{"name":"DIDOI_ASPECTACCEL","features":[60]},{"name":"DIDOI_ASPECTFORCE","features":[60]},{"name":"DIDOI_ASPECTMASK","features":[60]},{"name":"DIDOI_ASPECTPOSITION","features":[60]},{"name":"DIDOI_ASPECTVELOCITY","features":[60]},{"name":"DIDOI_FFACTUATOR","features":[60]},{"name":"DIDOI_FFEFFECTTRIGGER","features":[60]},{"name":"DIDOI_GUIDISUSAGE","features":[60]},{"name":"DIDOI_POLLED","features":[60]},{"name":"DIDRIVERVERSIONS","features":[60]},{"name":"DIDSAM_DEFAULT","features":[60]},{"name":"DIDSAM_FORCESAVE","features":[60]},{"name":"DIDSAM_NOUSER","features":[60]},{"name":"DIEB_NOTRIGGER","features":[60]},{"name":"DIEDBSFL_ATTACHEDONLY","features":[60]},{"name":"DIEDBSFL_AVAILABLEDEVICES","features":[60]},{"name":"DIEDBSFL_FORCEFEEDBACK","features":[60]},{"name":"DIEDBSFL_MULTIMICEKEYBOARDS","features":[60]},{"name":"DIEDBSFL_NONGAMINGDEVICES","features":[60]},{"name":"DIEDBSFL_THISUSER","features":[60]},{"name":"DIEDBSFL_VALID","features":[60]},{"name":"DIEDBS_MAPPEDPRI1","features":[60]},{"name":"DIEDBS_MAPPEDPRI2","features":[60]},{"name":"DIEDBS_NEWDEVICE","features":[60]},{"name":"DIEDBS_RECENTDEVICE","features":[60]},{"name":"DIEDFL_ALLDEVICES","features":[60]},{"name":"DIEDFL_ATTACHEDONLY","features":[60]},{"name":"DIEDFL_FORCEFEEDBACK","features":[60]},{"name":"DIEDFL_INCLUDEALIASES","features":[60]},{"name":"DIEDFL_INCLUDEHIDDEN","features":[60]},{"name":"DIEDFL_INCLUDEPHANTOMS","features":[60]},{"name":"DIEFFECT","features":[60]},{"name":"DIEFFECTATTRIBUTES","features":[60]},{"name":"DIEFFECTINFOA","features":[60]},{"name":"DIEFFECTINFOW","features":[60]},{"name":"DIEFFECT_DX5","features":[60]},{"name":"DIEFFESCAPE","features":[60]},{"name":"DIEFF_CARTESIAN","features":[60]},{"name":"DIEFF_OBJECTIDS","features":[60]},{"name":"DIEFF_OBJECTOFFSETS","features":[60]},{"name":"DIEFF_POLAR","features":[60]},{"name":"DIEFF_SPHERICAL","features":[60]},{"name":"DIEFT_ALL","features":[60]},{"name":"DIEFT_CONDITION","features":[60]},{"name":"DIEFT_CONSTANTFORCE","features":[60]},{"name":"DIEFT_CUSTOMFORCE","features":[60]},{"name":"DIEFT_DEADBAND","features":[60]},{"name":"DIEFT_FFATTACK","features":[60]},{"name":"DIEFT_FFFADE","features":[60]},{"name":"DIEFT_HARDWARE","features":[60]},{"name":"DIEFT_PERIODIC","features":[60]},{"name":"DIEFT_POSNEGCOEFFICIENTS","features":[60]},{"name":"DIEFT_POSNEGSATURATION","features":[60]},{"name":"DIEFT_RAMPFORCE","features":[60]},{"name":"DIEFT_SATURATION","features":[60]},{"name":"DIEFT_STARTDELAY","features":[60]},{"name":"DIEGES_EMULATED","features":[60]},{"name":"DIEGES_PLAYING","features":[60]},{"name":"DIENUM_CONTINUE","features":[60]},{"name":"DIENUM_STOP","features":[60]},{"name":"DIENVELOPE","features":[60]},{"name":"DIEP_ALLPARAMS","features":[60]},{"name":"DIEP_ALLPARAMS_DX5","features":[60]},{"name":"DIEP_AXES","features":[60]},{"name":"DIEP_DIRECTION","features":[60]},{"name":"DIEP_DURATION","features":[60]},{"name":"DIEP_ENVELOPE","features":[60]},{"name":"DIEP_GAIN","features":[60]},{"name":"DIEP_NODOWNLOAD","features":[60]},{"name":"DIEP_NORESTART","features":[60]},{"name":"DIEP_SAMPLEPERIOD","features":[60]},{"name":"DIEP_START","features":[60]},{"name":"DIEP_STARTDELAY","features":[60]},{"name":"DIEP_TRIGGERBUTTON","features":[60]},{"name":"DIEP_TRIGGERREPEATINTERVAL","features":[60]},{"name":"DIEP_TYPESPECIFICPARAMS","features":[60]},{"name":"DIERR_ACQUIRED","features":[60]},{"name":"DIERR_ALREADYINITIALIZED","features":[60]},{"name":"DIERR_BADDRIVERVER","features":[60]},{"name":"DIERR_BADINF","features":[60]},{"name":"DIERR_BETADIRECTINPUTVERSION","features":[60]},{"name":"DIERR_CANCELLED","features":[60]},{"name":"DIERR_DEVICEFULL","features":[60]},{"name":"DIERR_DEVICENOTREG","features":[60]},{"name":"DIERR_DRIVERFIRST","features":[60]},{"name":"DIERR_DRIVERLAST","features":[60]},{"name":"DIERR_EFFECTPLAYING","features":[60]},{"name":"DIERR_GENERIC","features":[60]},{"name":"DIERR_HANDLEEXISTS","features":[60]},{"name":"DIERR_HASEFFECTS","features":[60]},{"name":"DIERR_INCOMPLETEEFFECT","features":[60]},{"name":"DIERR_INPUTLOST","features":[60]},{"name":"DIERR_INSUFFICIENTPRIVS","features":[60]},{"name":"DIERR_INVALIDCLASSINSTALLER","features":[60]},{"name":"DIERR_INVALIDPARAM","features":[60]},{"name":"DIERR_MAPFILEFAIL","features":[60]},{"name":"DIERR_MOREDATA","features":[60]},{"name":"DIERR_NOAGGREGATION","features":[60]},{"name":"DIERR_NOINTERFACE","features":[60]},{"name":"DIERR_NOMOREITEMS","features":[60]},{"name":"DIERR_NOTACQUIRED","features":[60]},{"name":"DIERR_NOTBUFFERED","features":[60]},{"name":"DIERR_NOTDOWNLOADED","features":[60]},{"name":"DIERR_NOTEXCLUSIVEACQUIRED","features":[60]},{"name":"DIERR_NOTFOUND","features":[60]},{"name":"DIERR_NOTINITIALIZED","features":[60]},{"name":"DIERR_OBJECTNOTFOUND","features":[60]},{"name":"DIERR_OLDDIRECTINPUTVERSION","features":[60]},{"name":"DIERR_OTHERAPPHASPRIO","features":[60]},{"name":"DIERR_OUTOFMEMORY","features":[60]},{"name":"DIERR_READONLY","features":[60]},{"name":"DIERR_REPORTFULL","features":[60]},{"name":"DIERR_UNPLUGGED","features":[60]},{"name":"DIERR_UNSUPPORTED","features":[60]},{"name":"DIES_NODOWNLOAD","features":[60]},{"name":"DIES_SOLO","features":[60]},{"name":"DIFEF_DEFAULT","features":[60]},{"name":"DIFEF_INCLUDENONSTANDARD","features":[60]},{"name":"DIFEF_MODIFYIFNEEDED","features":[60]},{"name":"DIFFDEVICEATTRIBUTES","features":[60]},{"name":"DIFFOBJECTATTRIBUTES","features":[60]},{"name":"DIFILEEFFECT","features":[60]},{"name":"DIGDD_PEEK","features":[60]},{"name":"DIGFFS_ACTUATORSOFF","features":[60]},{"name":"DIGFFS_ACTUATORSON","features":[60]},{"name":"DIGFFS_DEVICELOST","features":[60]},{"name":"DIGFFS_EMPTY","features":[60]},{"name":"DIGFFS_PAUSED","features":[60]},{"name":"DIGFFS_POWEROFF","features":[60]},{"name":"DIGFFS_POWERON","features":[60]},{"name":"DIGFFS_SAFETYSWITCHOFF","features":[60]},{"name":"DIGFFS_SAFETYSWITCHON","features":[60]},{"name":"DIGFFS_STOPPED","features":[60]},{"name":"DIGFFS_USERFFSWITCHOFF","features":[60]},{"name":"DIGFFS_USERFFSWITCHON","features":[60]},{"name":"DIHATSWITCH_2DCONTROL_HATSWITCH","features":[60]},{"name":"DIHATSWITCH_3DCONTROL_HATSWITCH","features":[60]},{"name":"DIHATSWITCH_ARCADEP_VIEW","features":[60]},{"name":"DIHATSWITCH_ARCADES_VIEW","features":[60]},{"name":"DIHATSWITCH_BBALLD_GLANCE","features":[60]},{"name":"DIHATSWITCH_BBALLO_GLANCE","features":[60]},{"name":"DIHATSWITCH_BIKINGM_SCROLL","features":[60]},{"name":"DIHATSWITCH_CADF_HATSWITCH","features":[60]},{"name":"DIHATSWITCH_CADM_HATSWITCH","features":[60]},{"name":"DIHATSWITCH_DRIVINGC_GLANCE","features":[60]},{"name":"DIHATSWITCH_DRIVINGR_GLANCE","features":[60]},{"name":"DIHATSWITCH_DRIVINGT_GLANCE","features":[60]},{"name":"DIHATSWITCH_FIGHTINGH_SLIDE","features":[60]},{"name":"DIHATSWITCH_FISHING_GLANCE","features":[60]},{"name":"DIHATSWITCH_FLYINGC_GLANCE","features":[60]},{"name":"DIHATSWITCH_FLYINGH_GLANCE","features":[60]},{"name":"DIHATSWITCH_FLYINGM_GLANCE","features":[60]},{"name":"DIHATSWITCH_FPS_GLANCE","features":[60]},{"name":"DIHATSWITCH_GOLF_SCROLL","features":[60]},{"name":"DIHATSWITCH_HOCKEYD_SCROLL","features":[60]},{"name":"DIHATSWITCH_HOCKEYG_SCROLL","features":[60]},{"name":"DIHATSWITCH_HOCKEYO_SCROLL","features":[60]},{"name":"DIHATSWITCH_HUNTING_GLANCE","features":[60]},{"name":"DIHATSWITCH_MECHA_GLANCE","features":[60]},{"name":"DIHATSWITCH_RACQUET_GLANCE","features":[60]},{"name":"DIHATSWITCH_SKIING_GLANCE","features":[60]},{"name":"DIHATSWITCH_SOCCERD_GLANCE","features":[60]},{"name":"DIHATSWITCH_SOCCERO_GLANCE","features":[60]},{"name":"DIHATSWITCH_SPACESIM_GLANCE","features":[60]},{"name":"DIHATSWITCH_STRATEGYR_GLANCE","features":[60]},{"name":"DIHATSWITCH_TPS_GLANCE","features":[60]},{"name":"DIHIDFFINITINFO","features":[60]},{"name":"DIJC_CALLOUT","features":[60]},{"name":"DIJC_GAIN","features":[60]},{"name":"DIJC_GUIDINSTANCE","features":[60]},{"name":"DIJC_REGHWCONFIGTYPE","features":[60]},{"name":"DIJC_WDMGAMEPORT","features":[60]},{"name":"DIJOYCONFIG","features":[60]},{"name":"DIJOYCONFIG_DX5","features":[60]},{"name":"DIJOYSTATE","features":[60]},{"name":"DIJOYSTATE2","features":[60]},{"name":"DIJOYTYPEINFO","features":[60]},{"name":"DIJOYTYPEINFO_DX5","features":[60]},{"name":"DIJOYTYPEINFO_DX6","features":[60]},{"name":"DIJOYUSERVALUES","features":[60]},{"name":"DIJU_GAMEPORTEMULATOR","features":[60]},{"name":"DIJU_GLOBALDRIVER","features":[60]},{"name":"DIJU_USERVALUES","features":[60]},{"name":"DIKEYBOARD_0","features":[60]},{"name":"DIKEYBOARD_1","features":[60]},{"name":"DIKEYBOARD_2","features":[60]},{"name":"DIKEYBOARD_3","features":[60]},{"name":"DIKEYBOARD_4","features":[60]},{"name":"DIKEYBOARD_5","features":[60]},{"name":"DIKEYBOARD_6","features":[60]},{"name":"DIKEYBOARD_7","features":[60]},{"name":"DIKEYBOARD_8","features":[60]},{"name":"DIKEYBOARD_9","features":[60]},{"name":"DIKEYBOARD_A","features":[60]},{"name":"DIKEYBOARD_ABNT_C1","features":[60]},{"name":"DIKEYBOARD_ABNT_C2","features":[60]},{"name":"DIKEYBOARD_ADD","features":[60]},{"name":"DIKEYBOARD_APOSTROPHE","features":[60]},{"name":"DIKEYBOARD_APPS","features":[60]},{"name":"DIKEYBOARD_AT","features":[60]},{"name":"DIKEYBOARD_AX","features":[60]},{"name":"DIKEYBOARD_B","features":[60]},{"name":"DIKEYBOARD_BACK","features":[60]},{"name":"DIKEYBOARD_BACKSLASH","features":[60]},{"name":"DIKEYBOARD_C","features":[60]},{"name":"DIKEYBOARD_CALCULATOR","features":[60]},{"name":"DIKEYBOARD_CAPITAL","features":[60]},{"name":"DIKEYBOARD_COLON","features":[60]},{"name":"DIKEYBOARD_COMMA","features":[60]},{"name":"DIKEYBOARD_CONVERT","features":[60]},{"name":"DIKEYBOARD_D","features":[60]},{"name":"DIKEYBOARD_DECIMAL","features":[60]},{"name":"DIKEYBOARD_DELETE","features":[60]},{"name":"DIKEYBOARD_DIVIDE","features":[60]},{"name":"DIKEYBOARD_DOWN","features":[60]},{"name":"DIKEYBOARD_E","features":[60]},{"name":"DIKEYBOARD_END","features":[60]},{"name":"DIKEYBOARD_EQUALS","features":[60]},{"name":"DIKEYBOARD_ESCAPE","features":[60]},{"name":"DIKEYBOARD_F","features":[60]},{"name":"DIKEYBOARD_F1","features":[60]},{"name":"DIKEYBOARD_F10","features":[60]},{"name":"DIKEYBOARD_F11","features":[60]},{"name":"DIKEYBOARD_F12","features":[60]},{"name":"DIKEYBOARD_F13","features":[60]},{"name":"DIKEYBOARD_F14","features":[60]},{"name":"DIKEYBOARD_F15","features":[60]},{"name":"DIKEYBOARD_F2","features":[60]},{"name":"DIKEYBOARD_F3","features":[60]},{"name":"DIKEYBOARD_F4","features":[60]},{"name":"DIKEYBOARD_F5","features":[60]},{"name":"DIKEYBOARD_F6","features":[60]},{"name":"DIKEYBOARD_F7","features":[60]},{"name":"DIKEYBOARD_F8","features":[60]},{"name":"DIKEYBOARD_F9","features":[60]},{"name":"DIKEYBOARD_G","features":[60]},{"name":"DIKEYBOARD_GRAVE","features":[60]},{"name":"DIKEYBOARD_H","features":[60]},{"name":"DIKEYBOARD_HOME","features":[60]},{"name":"DIKEYBOARD_I","features":[60]},{"name":"DIKEYBOARD_INSERT","features":[60]},{"name":"DIKEYBOARD_J","features":[60]},{"name":"DIKEYBOARD_K","features":[60]},{"name":"DIKEYBOARD_KANA","features":[60]},{"name":"DIKEYBOARD_KANJI","features":[60]},{"name":"DIKEYBOARD_L","features":[60]},{"name":"DIKEYBOARD_LBRACKET","features":[60]},{"name":"DIKEYBOARD_LCONTROL","features":[60]},{"name":"DIKEYBOARD_LEFT","features":[60]},{"name":"DIKEYBOARD_LMENU","features":[60]},{"name":"DIKEYBOARD_LSHIFT","features":[60]},{"name":"DIKEYBOARD_LWIN","features":[60]},{"name":"DIKEYBOARD_M","features":[60]},{"name":"DIKEYBOARD_MAIL","features":[60]},{"name":"DIKEYBOARD_MEDIASELECT","features":[60]},{"name":"DIKEYBOARD_MEDIASTOP","features":[60]},{"name":"DIKEYBOARD_MINUS","features":[60]},{"name":"DIKEYBOARD_MULTIPLY","features":[60]},{"name":"DIKEYBOARD_MUTE","features":[60]},{"name":"DIKEYBOARD_MYCOMPUTER","features":[60]},{"name":"DIKEYBOARD_N","features":[60]},{"name":"DIKEYBOARD_NEXT","features":[60]},{"name":"DIKEYBOARD_NEXTTRACK","features":[60]},{"name":"DIKEYBOARD_NOCONVERT","features":[60]},{"name":"DIKEYBOARD_NUMLOCK","features":[60]},{"name":"DIKEYBOARD_NUMPAD0","features":[60]},{"name":"DIKEYBOARD_NUMPAD1","features":[60]},{"name":"DIKEYBOARD_NUMPAD2","features":[60]},{"name":"DIKEYBOARD_NUMPAD3","features":[60]},{"name":"DIKEYBOARD_NUMPAD4","features":[60]},{"name":"DIKEYBOARD_NUMPAD5","features":[60]},{"name":"DIKEYBOARD_NUMPAD6","features":[60]},{"name":"DIKEYBOARD_NUMPAD7","features":[60]},{"name":"DIKEYBOARD_NUMPAD8","features":[60]},{"name":"DIKEYBOARD_NUMPAD9","features":[60]},{"name":"DIKEYBOARD_NUMPADCOMMA","features":[60]},{"name":"DIKEYBOARD_NUMPADENTER","features":[60]},{"name":"DIKEYBOARD_NUMPADEQUALS","features":[60]},{"name":"DIKEYBOARD_O","features":[60]},{"name":"DIKEYBOARD_OEM_102","features":[60]},{"name":"DIKEYBOARD_P","features":[60]},{"name":"DIKEYBOARD_PAUSE","features":[60]},{"name":"DIKEYBOARD_PERIOD","features":[60]},{"name":"DIKEYBOARD_PLAYPAUSE","features":[60]},{"name":"DIKEYBOARD_POWER","features":[60]},{"name":"DIKEYBOARD_PREVTRACK","features":[60]},{"name":"DIKEYBOARD_PRIOR","features":[60]},{"name":"DIKEYBOARD_Q","features":[60]},{"name":"DIKEYBOARD_R","features":[60]},{"name":"DIKEYBOARD_RBRACKET","features":[60]},{"name":"DIKEYBOARD_RCONTROL","features":[60]},{"name":"DIKEYBOARD_RETURN","features":[60]},{"name":"DIKEYBOARD_RIGHT","features":[60]},{"name":"DIKEYBOARD_RMENU","features":[60]},{"name":"DIKEYBOARD_RSHIFT","features":[60]},{"name":"DIKEYBOARD_RWIN","features":[60]},{"name":"DIKEYBOARD_S","features":[60]},{"name":"DIKEYBOARD_SCROLL","features":[60]},{"name":"DIKEYBOARD_SEMICOLON","features":[60]},{"name":"DIKEYBOARD_SLASH","features":[60]},{"name":"DIKEYBOARD_SLEEP","features":[60]},{"name":"DIKEYBOARD_SPACE","features":[60]},{"name":"DIKEYBOARD_STOP","features":[60]},{"name":"DIKEYBOARD_SUBTRACT","features":[60]},{"name":"DIKEYBOARD_SYSRQ","features":[60]},{"name":"DIKEYBOARD_T","features":[60]},{"name":"DIKEYBOARD_TAB","features":[60]},{"name":"DIKEYBOARD_U","features":[60]},{"name":"DIKEYBOARD_UNDERLINE","features":[60]},{"name":"DIKEYBOARD_UNLABELED","features":[60]},{"name":"DIKEYBOARD_UP","features":[60]},{"name":"DIKEYBOARD_V","features":[60]},{"name":"DIKEYBOARD_VOLUMEDOWN","features":[60]},{"name":"DIKEYBOARD_VOLUMEUP","features":[60]},{"name":"DIKEYBOARD_W","features":[60]},{"name":"DIKEYBOARD_WAKE","features":[60]},{"name":"DIKEYBOARD_WEBBACK","features":[60]},{"name":"DIKEYBOARD_WEBFAVORITES","features":[60]},{"name":"DIKEYBOARD_WEBFORWARD","features":[60]},{"name":"DIKEYBOARD_WEBHOME","features":[60]},{"name":"DIKEYBOARD_WEBREFRESH","features":[60]},{"name":"DIKEYBOARD_WEBSEARCH","features":[60]},{"name":"DIKEYBOARD_WEBSTOP","features":[60]},{"name":"DIKEYBOARD_X","features":[60]},{"name":"DIKEYBOARD_Y","features":[60]},{"name":"DIKEYBOARD_YEN","features":[60]},{"name":"DIKEYBOARD_Z","features":[60]},{"name":"DIK_0","features":[60]},{"name":"DIK_1","features":[60]},{"name":"DIK_2","features":[60]},{"name":"DIK_3","features":[60]},{"name":"DIK_4","features":[60]},{"name":"DIK_5","features":[60]},{"name":"DIK_6","features":[60]},{"name":"DIK_7","features":[60]},{"name":"DIK_8","features":[60]},{"name":"DIK_9","features":[60]},{"name":"DIK_A","features":[60]},{"name":"DIK_ABNT_C1","features":[60]},{"name":"DIK_ABNT_C2","features":[60]},{"name":"DIK_ADD","features":[60]},{"name":"DIK_APOSTROPHE","features":[60]},{"name":"DIK_APPS","features":[60]},{"name":"DIK_AT","features":[60]},{"name":"DIK_AX","features":[60]},{"name":"DIK_B","features":[60]},{"name":"DIK_BACK","features":[60]},{"name":"DIK_BACKSLASH","features":[60]},{"name":"DIK_BACKSPACE","features":[60]},{"name":"DIK_C","features":[60]},{"name":"DIK_CALCULATOR","features":[60]},{"name":"DIK_CAPITAL","features":[60]},{"name":"DIK_CAPSLOCK","features":[60]},{"name":"DIK_CIRCUMFLEX","features":[60]},{"name":"DIK_COLON","features":[60]},{"name":"DIK_COMMA","features":[60]},{"name":"DIK_CONVERT","features":[60]},{"name":"DIK_D","features":[60]},{"name":"DIK_DECIMAL","features":[60]},{"name":"DIK_DELETE","features":[60]},{"name":"DIK_DIVIDE","features":[60]},{"name":"DIK_DOWN","features":[60]},{"name":"DIK_DOWNARROW","features":[60]},{"name":"DIK_E","features":[60]},{"name":"DIK_END","features":[60]},{"name":"DIK_EQUALS","features":[60]},{"name":"DIK_ESCAPE","features":[60]},{"name":"DIK_F","features":[60]},{"name":"DIK_F1","features":[60]},{"name":"DIK_F10","features":[60]},{"name":"DIK_F11","features":[60]},{"name":"DIK_F12","features":[60]},{"name":"DIK_F13","features":[60]},{"name":"DIK_F14","features":[60]},{"name":"DIK_F15","features":[60]},{"name":"DIK_F2","features":[60]},{"name":"DIK_F3","features":[60]},{"name":"DIK_F4","features":[60]},{"name":"DIK_F5","features":[60]},{"name":"DIK_F6","features":[60]},{"name":"DIK_F7","features":[60]},{"name":"DIK_F8","features":[60]},{"name":"DIK_F9","features":[60]},{"name":"DIK_G","features":[60]},{"name":"DIK_GRAVE","features":[60]},{"name":"DIK_H","features":[60]},{"name":"DIK_HOME","features":[60]},{"name":"DIK_I","features":[60]},{"name":"DIK_INSERT","features":[60]},{"name":"DIK_J","features":[60]},{"name":"DIK_K","features":[60]},{"name":"DIK_KANA","features":[60]},{"name":"DIK_KANJI","features":[60]},{"name":"DIK_L","features":[60]},{"name":"DIK_LALT","features":[60]},{"name":"DIK_LBRACKET","features":[60]},{"name":"DIK_LCONTROL","features":[60]},{"name":"DIK_LEFT","features":[60]},{"name":"DIK_LEFTARROW","features":[60]},{"name":"DIK_LMENU","features":[60]},{"name":"DIK_LSHIFT","features":[60]},{"name":"DIK_LWIN","features":[60]},{"name":"DIK_M","features":[60]},{"name":"DIK_MAIL","features":[60]},{"name":"DIK_MEDIASELECT","features":[60]},{"name":"DIK_MEDIASTOP","features":[60]},{"name":"DIK_MINUS","features":[60]},{"name":"DIK_MULTIPLY","features":[60]},{"name":"DIK_MUTE","features":[60]},{"name":"DIK_MYCOMPUTER","features":[60]},{"name":"DIK_N","features":[60]},{"name":"DIK_NEXT","features":[60]},{"name":"DIK_NEXTTRACK","features":[60]},{"name":"DIK_NOCONVERT","features":[60]},{"name":"DIK_NUMLOCK","features":[60]},{"name":"DIK_NUMPAD0","features":[60]},{"name":"DIK_NUMPAD1","features":[60]},{"name":"DIK_NUMPAD2","features":[60]},{"name":"DIK_NUMPAD3","features":[60]},{"name":"DIK_NUMPAD4","features":[60]},{"name":"DIK_NUMPAD5","features":[60]},{"name":"DIK_NUMPAD6","features":[60]},{"name":"DIK_NUMPAD7","features":[60]},{"name":"DIK_NUMPAD8","features":[60]},{"name":"DIK_NUMPAD9","features":[60]},{"name":"DIK_NUMPADCOMMA","features":[60]},{"name":"DIK_NUMPADENTER","features":[60]},{"name":"DIK_NUMPADEQUALS","features":[60]},{"name":"DIK_NUMPADMINUS","features":[60]},{"name":"DIK_NUMPADPERIOD","features":[60]},{"name":"DIK_NUMPADPLUS","features":[60]},{"name":"DIK_NUMPADSLASH","features":[60]},{"name":"DIK_NUMPADSTAR","features":[60]},{"name":"DIK_O","features":[60]},{"name":"DIK_OEM_102","features":[60]},{"name":"DIK_P","features":[60]},{"name":"DIK_PAUSE","features":[60]},{"name":"DIK_PERIOD","features":[60]},{"name":"DIK_PGDN","features":[60]},{"name":"DIK_PGUP","features":[60]},{"name":"DIK_PLAYPAUSE","features":[60]},{"name":"DIK_POWER","features":[60]},{"name":"DIK_PREVTRACK","features":[60]},{"name":"DIK_PRIOR","features":[60]},{"name":"DIK_Q","features":[60]},{"name":"DIK_R","features":[60]},{"name":"DIK_RALT","features":[60]},{"name":"DIK_RBRACKET","features":[60]},{"name":"DIK_RCONTROL","features":[60]},{"name":"DIK_RETURN","features":[60]},{"name":"DIK_RIGHT","features":[60]},{"name":"DIK_RIGHTARROW","features":[60]},{"name":"DIK_RMENU","features":[60]},{"name":"DIK_RSHIFT","features":[60]},{"name":"DIK_RWIN","features":[60]},{"name":"DIK_S","features":[60]},{"name":"DIK_SCROLL","features":[60]},{"name":"DIK_SEMICOLON","features":[60]},{"name":"DIK_SLASH","features":[60]},{"name":"DIK_SLEEP","features":[60]},{"name":"DIK_SPACE","features":[60]},{"name":"DIK_STOP","features":[60]},{"name":"DIK_SUBTRACT","features":[60]},{"name":"DIK_SYSRQ","features":[60]},{"name":"DIK_T","features":[60]},{"name":"DIK_TAB","features":[60]},{"name":"DIK_U","features":[60]},{"name":"DIK_UNDERLINE","features":[60]},{"name":"DIK_UNLABELED","features":[60]},{"name":"DIK_UP","features":[60]},{"name":"DIK_UPARROW","features":[60]},{"name":"DIK_V","features":[60]},{"name":"DIK_VOLUMEDOWN","features":[60]},{"name":"DIK_VOLUMEUP","features":[60]},{"name":"DIK_W","features":[60]},{"name":"DIK_WAKE","features":[60]},{"name":"DIK_WEBBACK","features":[60]},{"name":"DIK_WEBFAVORITES","features":[60]},{"name":"DIK_WEBFORWARD","features":[60]},{"name":"DIK_WEBHOME","features":[60]},{"name":"DIK_WEBREFRESH","features":[60]},{"name":"DIK_WEBSEARCH","features":[60]},{"name":"DIK_WEBSTOP","features":[60]},{"name":"DIK_X","features":[60]},{"name":"DIK_Y","features":[60]},{"name":"DIK_YEN","features":[60]},{"name":"DIK_Z","features":[60]},{"name":"DIMOUSESTATE","features":[60]},{"name":"DIMOUSESTATE2","features":[60]},{"name":"DIMSGWP_DX8APPSTART","features":[60]},{"name":"DIMSGWP_DX8MAPPERAPPSTART","features":[60]},{"name":"DIMSGWP_NEWAPPSTART","features":[60]},{"name":"DIOBJECTATTRIBUTES","features":[60]},{"name":"DIOBJECTCALIBRATION","features":[60]},{"name":"DIOBJECTDATAFORMAT","features":[60]},{"name":"DIPERIODIC","features":[60]},{"name":"DIPH_BYID","features":[60]},{"name":"DIPH_BYOFFSET","features":[60]},{"name":"DIPH_BYUSAGE","features":[60]},{"name":"DIPH_DEVICE","features":[60]},{"name":"DIPOVCALIBRATION","features":[60]},{"name":"DIPOV_ANY_1","features":[60]},{"name":"DIPOV_ANY_2","features":[60]},{"name":"DIPOV_ANY_3","features":[60]},{"name":"DIPOV_ANY_4","features":[60]},{"name":"DIPROPAUTOCENTER_OFF","features":[60]},{"name":"DIPROPAUTOCENTER_ON","features":[60]},{"name":"DIPROPAXISMODE_ABS","features":[60]},{"name":"DIPROPAXISMODE_REL","features":[60]},{"name":"DIPROPCAL","features":[60]},{"name":"DIPROPCALIBRATIONMODE_COOKED","features":[60]},{"name":"DIPROPCALIBRATIONMODE_RAW","features":[60]},{"name":"DIPROPCALPOV","features":[60]},{"name":"DIPROPCPOINTS","features":[60]},{"name":"DIPROPDWORD","features":[60]},{"name":"DIPROPGUIDANDPATH","features":[60]},{"name":"DIPROPHEADER","features":[60]},{"name":"DIPROPPOINTER","features":[60]},{"name":"DIPROPRANGE","features":[60]},{"name":"DIPROPSTRING","features":[60]},{"name":"DIPROP_APPDATA","features":[60]},{"name":"DIPROP_AUTOCENTER","features":[60]},{"name":"DIPROP_AXISMODE","features":[60]},{"name":"DIPROP_BUFFERSIZE","features":[60]},{"name":"DIPROP_CALIBRATION","features":[60]},{"name":"DIPROP_CALIBRATIONMODE","features":[60]},{"name":"DIPROP_CPOINTS","features":[60]},{"name":"DIPROP_DEADZONE","features":[60]},{"name":"DIPROP_FFGAIN","features":[60]},{"name":"DIPROP_FFLOAD","features":[60]},{"name":"DIPROP_GETPORTDISPLAYNAME","features":[60]},{"name":"DIPROP_GRANULARITY","features":[60]},{"name":"DIPROP_GUIDANDPATH","features":[60]},{"name":"DIPROP_INSTANCENAME","features":[60]},{"name":"DIPROP_JOYSTICKID","features":[60]},{"name":"DIPROP_KEYNAME","features":[60]},{"name":"DIPROP_LOGICALRANGE","features":[60]},{"name":"DIPROP_PHYSICALRANGE","features":[60]},{"name":"DIPROP_PRODUCTNAME","features":[60]},{"name":"DIPROP_RANGE","features":[60]},{"name":"DIPROP_SATURATION","features":[60]},{"name":"DIPROP_SCANCODE","features":[60]},{"name":"DIPROP_TYPENAME","features":[60]},{"name":"DIPROP_USERNAME","features":[60]},{"name":"DIPROP_VIDPID","features":[60]},{"name":"DIRAMPFORCE","features":[60]},{"name":"DIRECTINPUT_HEADER_VERSION","features":[60]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRING","features":[60]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGA","features":[60]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGW","features":[60]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPP","features":[60]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPA","features":[60]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPW","features":[60]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPP","features":[60]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA","features":[60]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAG","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGA","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGW","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_ID","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_IDA","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_IDW","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTART","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTA","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTW","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPER","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERA","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERW","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_NAME","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEA","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEW","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSION","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONA","features":[60]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONW","features":[60]},{"name":"DIRECTINPUT_VERSION","features":[60]},{"name":"DISCL_BACKGROUND","features":[60]},{"name":"DISCL_EXCLUSIVE","features":[60]},{"name":"DISCL_FOREGROUND","features":[60]},{"name":"DISCL_NONEXCLUSIVE","features":[60]},{"name":"DISCL_NOWINKEY","features":[60]},{"name":"DISDD_CONTINUE","features":[60]},{"name":"DISFFC_CONTINUE","features":[60]},{"name":"DISFFC_PAUSE","features":[60]},{"name":"DISFFC_RESET","features":[60]},{"name":"DISFFC_SETACTUATORSOFF","features":[60]},{"name":"DISFFC_SETACTUATORSON","features":[60]},{"name":"DISFFC_STOPALL","features":[60]},{"name":"DITC_CALLOUT","features":[60]},{"name":"DITC_CLSIDCONFIG","features":[60]},{"name":"DITC_DISPLAYNAME","features":[60]},{"name":"DITC_FLAGS1","features":[60]},{"name":"DITC_FLAGS2","features":[60]},{"name":"DITC_HARDWAREID","features":[60]},{"name":"DITC_MAPFILE","features":[60]},{"name":"DITC_REGHWSETTINGS","features":[60]},{"name":"DIVIRTUAL_ARCADE_PLATFORM","features":[60]},{"name":"DIVIRTUAL_ARCADE_SIDE2SIDE","features":[60]},{"name":"DIVIRTUAL_BROWSER_CONTROL","features":[60]},{"name":"DIVIRTUAL_CAD_2DCONTROL","features":[60]},{"name":"DIVIRTUAL_CAD_3DCONTROL","features":[60]},{"name":"DIVIRTUAL_CAD_FLYBY","features":[60]},{"name":"DIVIRTUAL_CAD_MODEL","features":[60]},{"name":"DIVIRTUAL_DRIVING_COMBAT","features":[60]},{"name":"DIVIRTUAL_DRIVING_MECHA","features":[60]},{"name":"DIVIRTUAL_DRIVING_RACE","features":[60]},{"name":"DIVIRTUAL_DRIVING_TANK","features":[60]},{"name":"DIVIRTUAL_FIGHTING_FPS","features":[60]},{"name":"DIVIRTUAL_FIGHTING_HAND2HAND","features":[60]},{"name":"DIVIRTUAL_FIGHTING_THIRDPERSON","features":[60]},{"name":"DIVIRTUAL_FLYING_CIVILIAN","features":[60]},{"name":"DIVIRTUAL_FLYING_HELICOPTER","features":[60]},{"name":"DIVIRTUAL_FLYING_MILITARY","features":[60]},{"name":"DIVIRTUAL_REMOTE_CONTROL","features":[60]},{"name":"DIVIRTUAL_SPACESIM","features":[60]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_BAT","features":[60]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_FIELD","features":[60]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_PITCH","features":[60]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_DEFENSE","features":[60]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_OFFENSE","features":[60]},{"name":"DIVIRTUAL_SPORTS_BIKING_MOUNTAIN","features":[60]},{"name":"DIVIRTUAL_SPORTS_FISHING","features":[60]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_DEFENSE","features":[60]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_FIELD","features":[60]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_OFFENSE","features":[60]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_QBCK","features":[60]},{"name":"DIVIRTUAL_SPORTS_GOLF","features":[60]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_DEFENSE","features":[60]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_GOALIE","features":[60]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_OFFENSE","features":[60]},{"name":"DIVIRTUAL_SPORTS_HUNTING","features":[60]},{"name":"DIVIRTUAL_SPORTS_RACQUET","features":[60]},{"name":"DIVIRTUAL_SPORTS_SKIING","features":[60]},{"name":"DIVIRTUAL_SPORTS_SOCCER_DEFENSE","features":[60]},{"name":"DIVIRTUAL_SPORTS_SOCCER_OFFENSE","features":[60]},{"name":"DIVIRTUAL_STRATEGY_ROLEPLAYING","features":[60]},{"name":"DIVIRTUAL_STRATEGY_TURN","features":[60]},{"name":"DIVOICE_ALL","features":[60]},{"name":"DIVOICE_CHANNEL1","features":[60]},{"name":"DIVOICE_CHANNEL2","features":[60]},{"name":"DIVOICE_CHANNEL3","features":[60]},{"name":"DIVOICE_CHANNEL4","features":[60]},{"name":"DIVOICE_CHANNEL5","features":[60]},{"name":"DIVOICE_CHANNEL6","features":[60]},{"name":"DIVOICE_CHANNEL7","features":[60]},{"name":"DIVOICE_CHANNEL8","features":[60]},{"name":"DIVOICE_PLAYBACKMUTE","features":[60]},{"name":"DIVOICE_RECORDMUTE","features":[60]},{"name":"DIVOICE_TEAM","features":[60]},{"name":"DIVOICE_TRANSMIT","features":[60]},{"name":"DIVOICE_VOICECOMMAND","features":[60]},{"name":"DI_BUFFEROVERFLOW","features":[60]},{"name":"DI_DEGREES","features":[60]},{"name":"DI_DOWNLOADSKIPPED","features":[60]},{"name":"DI_EFFECTRESTARTED","features":[60]},{"name":"DI_FFNOMINALMAX","features":[60]},{"name":"DI_NOEFFECT","features":[60]},{"name":"DI_NOTATTACHED","features":[60]},{"name":"DI_OK","features":[60]},{"name":"DI_POLLEDDEVICE","features":[60]},{"name":"DI_PROPNOEFFECT","features":[60]},{"name":"DI_SECONDS","features":[60]},{"name":"DI_SETTINGSNOTSAVED","features":[60]},{"name":"DI_TRUNCATED","features":[60]},{"name":"DI_TRUNCATEDANDRESTARTED","features":[60]},{"name":"DI_WRITEPROTECT","features":[60]},{"name":"DirectInput8Create","features":[60,3]},{"name":"GPIOBUTTONS_BUTTON_TYPE","features":[60]},{"name":"GPIO_BUTTON_BACK","features":[60]},{"name":"GPIO_BUTTON_CAMERA_FOCUS","features":[60]},{"name":"GPIO_BUTTON_CAMERA_LENS","features":[60]},{"name":"GPIO_BUTTON_CAMERA_SHUTTER","features":[60]},{"name":"GPIO_BUTTON_COUNT","features":[60]},{"name":"GPIO_BUTTON_COUNT_MIN","features":[60]},{"name":"GPIO_BUTTON_HEADSET","features":[60]},{"name":"GPIO_BUTTON_HWKB_DEPLOY","features":[60]},{"name":"GPIO_BUTTON_OEM_CUSTOM","features":[60]},{"name":"GPIO_BUTTON_OEM_CUSTOM2","features":[60]},{"name":"GPIO_BUTTON_OEM_CUSTOM3","features":[60]},{"name":"GPIO_BUTTON_POWER","features":[60]},{"name":"GPIO_BUTTON_RINGER_TOGGLE","features":[60]},{"name":"GPIO_BUTTON_ROTATION_LOCK","features":[60]},{"name":"GPIO_BUTTON_SEARCH","features":[60]},{"name":"GPIO_BUTTON_VOLUME_DOWN","features":[60]},{"name":"GPIO_BUTTON_VOLUME_UP","features":[60]},{"name":"GPIO_BUTTON_WINDOWS","features":[60]},{"name":"GUID_Button","features":[60]},{"name":"GUID_ConstantForce","features":[60]},{"name":"GUID_CustomForce","features":[60]},{"name":"GUID_DEVINTERFACE_HID","features":[60]},{"name":"GUID_DEVINTERFACE_KEYBOARD","features":[60]},{"name":"GUID_DEVINTERFACE_MOUSE","features":[60]},{"name":"GUID_Damper","features":[60]},{"name":"GUID_Friction","features":[60]},{"name":"GUID_HIDClass","features":[60]},{"name":"GUID_HID_INTERFACE_HIDPARSE","features":[60]},{"name":"GUID_HID_INTERFACE_NOTIFY","features":[60]},{"name":"GUID_Inertia","features":[60]},{"name":"GUID_Joystick","features":[60]},{"name":"GUID_Key","features":[60]},{"name":"GUID_KeyboardClass","features":[60]},{"name":"GUID_MediaClass","features":[60]},{"name":"GUID_MouseClass","features":[60]},{"name":"GUID_POV","features":[60]},{"name":"GUID_RampForce","features":[60]},{"name":"GUID_RxAxis","features":[60]},{"name":"GUID_RyAxis","features":[60]},{"name":"GUID_RzAxis","features":[60]},{"name":"GUID_SawtoothDown","features":[60]},{"name":"GUID_SawtoothUp","features":[60]},{"name":"GUID_Sine","features":[60]},{"name":"GUID_Slider","features":[60]},{"name":"GUID_Spring","features":[60]},{"name":"GUID_Square","features":[60]},{"name":"GUID_SysKeyboard","features":[60]},{"name":"GUID_SysKeyboardEm","features":[60]},{"name":"GUID_SysKeyboardEm2","features":[60]},{"name":"GUID_SysMouse","features":[60]},{"name":"GUID_SysMouseEm","features":[60]},{"name":"GUID_SysMouseEm2","features":[60]},{"name":"GUID_Triangle","features":[60]},{"name":"GUID_Unknown","features":[60]},{"name":"GUID_XAxis","features":[60]},{"name":"GUID_YAxis","features":[60]},{"name":"GUID_ZAxis","features":[60]},{"name":"HIDD_ATTRIBUTES","features":[60]},{"name":"HIDD_CONFIGURATION","features":[60]},{"name":"HIDP_BUTTON_ARRAY_DATA","features":[60,3]},{"name":"HIDP_BUTTON_CAPS","features":[60,3]},{"name":"HIDP_CAPS","features":[60]},{"name":"HIDP_DATA","features":[60,3]},{"name":"HIDP_EXTENDED_ATTRIBUTES","features":[60]},{"name":"HIDP_KEYBOARD_DIRECTION","features":[60]},{"name":"HIDP_KEYBOARD_MODIFIER_STATE","features":[60]},{"name":"HIDP_LINK_COLLECTION_NODE","features":[60]},{"name":"HIDP_REPORT_TYPE","features":[60]},{"name":"HIDP_STATUS_BAD_LOG_PHY_VALUES","features":[60,3]},{"name":"HIDP_STATUS_BUFFER_TOO_SMALL","features":[60,3]},{"name":"HIDP_STATUS_BUTTON_NOT_PRESSED","features":[60,3]},{"name":"HIDP_STATUS_DATA_INDEX_NOT_FOUND","features":[60,3]},{"name":"HIDP_STATUS_DATA_INDEX_OUT_OF_RANGE","features":[60,3]},{"name":"HIDP_STATUS_I8042_TRANS_UNKNOWN","features":[60,3]},{"name":"HIDP_STATUS_I8242_TRANS_UNKNOWN","features":[60,3]},{"name":"HIDP_STATUS_INCOMPATIBLE_REPORT_ID","features":[60,3]},{"name":"HIDP_STATUS_INTERNAL_ERROR","features":[60,3]},{"name":"HIDP_STATUS_INVALID_PREPARSED_DATA","features":[60,3]},{"name":"HIDP_STATUS_INVALID_REPORT_LENGTH","features":[60,3]},{"name":"HIDP_STATUS_INVALID_REPORT_TYPE","features":[60,3]},{"name":"HIDP_STATUS_IS_VALUE_ARRAY","features":[60,3]},{"name":"HIDP_STATUS_NOT_BUTTON_ARRAY","features":[60,3]},{"name":"HIDP_STATUS_NOT_IMPLEMENTED","features":[60,3]},{"name":"HIDP_STATUS_NOT_VALUE_ARRAY","features":[60,3]},{"name":"HIDP_STATUS_NULL","features":[60,3]},{"name":"HIDP_STATUS_REPORT_DOES_NOT_EXIST","features":[60,3]},{"name":"HIDP_STATUS_SUCCESS","features":[60,3]},{"name":"HIDP_STATUS_USAGE_NOT_FOUND","features":[60,3]},{"name":"HIDP_STATUS_VALUE_OUT_OF_RANGE","features":[60,3]},{"name":"HIDP_UNKNOWN_TOKEN","features":[60]},{"name":"HIDP_VALUE_CAPS","features":[60,3]},{"name":"HID_COLLECTION_INFORMATION","features":[60,3]},{"name":"HID_DRIVER_CONFIG","features":[60]},{"name":"HID_REVISION","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_14_SEGMENT_DIRECT_MAP","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_7_SEGMENT_DIRECT_MAP","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ALPHANUMERIC_DISPLAY","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ASCII_CHARACTER_SET","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_DATA","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_READBACK","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAPPED_DISPLAY","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_X","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_Y","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BIT_DEPTH_FORMAT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_DATA","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X1","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X2","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y1","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y2","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_ATTRIBUTE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_BLINK","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_ENHANCE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_UNDERLINE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_HEIGHT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_HORIZONTAL","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_VERTICAL","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_WIDTH","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CLEAR_DISPLAY","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMN","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMNS","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_BLINK","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_ENABLE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_MODE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_PIXEL_POSITIONING","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_POSITION_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DATA_READ_BACK","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ATTRIBUTES_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_BRIGHTNESS","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTRAST","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTROL_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_DATA","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ENABLE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ORIENTATION","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_STATUS","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_FONT_DATA_CANNOT_BE_READ","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_NOT_A_LOADABLE_CHARACTER","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_14_SEGMENT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_7_SEGMENT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_DATA","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_READ_BACK","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_HORIZONTAL_SCROLL","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_OFFSET","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_SIZE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ROW","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_ROWS","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_DELAY","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_ENABLE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_ID","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET1","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET2","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_REPORT","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_SIDE","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_NOT_READY","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_READY","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_UNICODE_CHAR_SET","features":[60]},{"name":"HID_USAGE_ALPHANUMERIC_VERTICAL_SCROLL","features":[60]},{"name":"HID_USAGE_CAMERA_AUTO_FOCUS","features":[60]},{"name":"HID_USAGE_CAMERA_SHUTTER","features":[60]},{"name":"HID_USAGE_CONSUMERCTRL","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_BACK","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_BOOKMARKS","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_FORWARD","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_GOTO","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_HOME","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_NEXT","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_PAN","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_PREVIOUS","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_REFRESH","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_SEARCH","features":[60]},{"name":"HID_USAGE_CONSUMER_AC_STOP","features":[60]},{"name":"HID_USAGE_CONSUMER_AL_BROWSER","features":[60]},{"name":"HID_USAGE_CONSUMER_AL_CALCULATOR","features":[60]},{"name":"HID_USAGE_CONSUMER_AL_CONFIGURATION","features":[60]},{"name":"HID_USAGE_CONSUMER_AL_EMAIL","features":[60]},{"name":"HID_USAGE_CONSUMER_AL_SEARCH","features":[60]},{"name":"HID_USAGE_CONSUMER_BALANCE","features":[60]},{"name":"HID_USAGE_CONSUMER_BASS","features":[60]},{"name":"HID_USAGE_CONSUMER_BASS_BOOST","features":[60]},{"name":"HID_USAGE_CONSUMER_BASS_DECREMENT","features":[60]},{"name":"HID_USAGE_CONSUMER_BASS_INCREMENT","features":[60]},{"name":"HID_USAGE_CONSUMER_CHANNEL_DECREMENT","features":[60]},{"name":"HID_USAGE_CONSUMER_CHANNEL_INCREMENT","features":[60]},{"name":"HID_USAGE_CONSUMER_EXTENDED_KEYBOARD_ATTRIBUTES_COLLECTION","features":[60]},{"name":"HID_USAGE_CONSUMER_FAST_FORWARD","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_OPEN_GAMEBAR","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_RECORD_CLIP","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_SCREENSHOT","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_BROADCAST","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_CAMERA","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_INDICATOR","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_MICROPHONE","features":[60]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_RECORD","features":[60]},{"name":"HID_USAGE_CONSUMER_IMPLEMENTED_KEYBOARD_INPUT_ASSIST_CONTROLS","features":[60]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_FORM_FACTOR","features":[60]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_IETF_LANGUAGE_TAG_INDEX","features":[60]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_KEY_TYPE","features":[60]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_PHYSICAL_LAYOUT","features":[60]},{"name":"HID_USAGE_CONSUMER_LOUDNESS","features":[60]},{"name":"HID_USAGE_CONSUMER_MPX","features":[60]},{"name":"HID_USAGE_CONSUMER_MUTE","features":[60]},{"name":"HID_USAGE_CONSUMER_PAUSE","features":[60]},{"name":"HID_USAGE_CONSUMER_PLAY","features":[60]},{"name":"HID_USAGE_CONSUMER_PLAY_PAUSE","features":[60]},{"name":"HID_USAGE_CONSUMER_RECORD","features":[60]},{"name":"HID_USAGE_CONSUMER_REWIND","features":[60]},{"name":"HID_USAGE_CONSUMER_SCAN_NEXT_TRACK","features":[60]},{"name":"HID_USAGE_CONSUMER_SCAN_PREV_TRACK","features":[60]},{"name":"HID_USAGE_CONSUMER_STOP","features":[60]},{"name":"HID_USAGE_CONSUMER_SURROUND_MODE","features":[60]},{"name":"HID_USAGE_CONSUMER_TREBLE","features":[60]},{"name":"HID_USAGE_CONSUMER_TREBLE_DECREMENT","features":[60]},{"name":"HID_USAGE_CONSUMER_TREBLE_INCREMENT","features":[60]},{"name":"HID_USAGE_CONSUMER_VENDOR_SPECIFIC_KEYBOARD_PHYSICAL_LAYOUT","features":[60]},{"name":"HID_USAGE_CONSUMER_VOLUME","features":[60]},{"name":"HID_USAGE_CONSUMER_VOLUME_DECREMENT","features":[60]},{"name":"HID_USAGE_CONSUMER_VOLUME_INCREMENT","features":[60]},{"name":"HID_USAGE_DIGITIZER_3D_DIGITIZER","features":[60]},{"name":"HID_USAGE_DIGITIZER_ALTITUDE","features":[60]},{"name":"HID_USAGE_DIGITIZER_ARMATURE","features":[60]},{"name":"HID_USAGE_DIGITIZER_ARTICULATED_ARM","features":[60]},{"name":"HID_USAGE_DIGITIZER_AZIMUTH","features":[60]},{"name":"HID_USAGE_DIGITIZER_BARREL_PRESSURE","features":[60]},{"name":"HID_USAGE_DIGITIZER_BARREL_SWITCH","features":[60]},{"name":"HID_USAGE_DIGITIZER_BATTERY_STRENGTH","features":[60]},{"name":"HID_USAGE_DIGITIZER_COORD_MEASURING","features":[60]},{"name":"HID_USAGE_DIGITIZER_DATA_VALID","features":[60]},{"name":"HID_USAGE_DIGITIZER_DIGITIZER","features":[60]},{"name":"HID_USAGE_DIGITIZER_ERASER","features":[60]},{"name":"HID_USAGE_DIGITIZER_FINGER","features":[60]},{"name":"HID_USAGE_DIGITIZER_FREE_SPACE_WAND","features":[60]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP","features":[60]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_FRAME_DATA","features":[60]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VENDOR_ID","features":[60]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VERSION","features":[60]},{"name":"HID_USAGE_DIGITIZER_INVERT","features":[60]},{"name":"HID_USAGE_DIGITIZER_IN_RANGE","features":[60]},{"name":"HID_USAGE_DIGITIZER_LIGHT_PEN","features":[60]},{"name":"HID_USAGE_DIGITIZER_MULTI_POINT","features":[60]},{"name":"HID_USAGE_DIGITIZER_PEN","features":[60]},{"name":"HID_USAGE_DIGITIZER_PROG_CHANGE_KEYS","features":[60]},{"name":"HID_USAGE_DIGITIZER_PUCK","features":[60]},{"name":"HID_USAGE_DIGITIZER_QUALITY","features":[60]},{"name":"HID_USAGE_DIGITIZER_SECONDARY_TIP_SWITCH","features":[60]},{"name":"HID_USAGE_DIGITIZER_STEREO_PLOTTER","features":[60]},{"name":"HID_USAGE_DIGITIZER_STYLUS","features":[60]},{"name":"HID_USAGE_DIGITIZER_TABLET_FUNC_KEYS","features":[60]},{"name":"HID_USAGE_DIGITIZER_TABLET_PICK","features":[60]},{"name":"HID_USAGE_DIGITIZER_TAP","features":[60]},{"name":"HID_USAGE_DIGITIZER_TIP_PRESSURE","features":[60]},{"name":"HID_USAGE_DIGITIZER_TIP_SWITCH","features":[60]},{"name":"HID_USAGE_DIGITIZER_TOUCH","features":[60]},{"name":"HID_USAGE_DIGITIZER_TOUCH_PAD","features":[60]},{"name":"HID_USAGE_DIGITIZER_TOUCH_SCREEN","features":[60]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_CONNECTED","features":[60]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_INDEX","features":[60]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_PRODUCT","features":[60]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL","features":[60]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL_PART2","features":[60]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_VENDOR","features":[60]},{"name":"HID_USAGE_DIGITIZER_TWIST","features":[60]},{"name":"HID_USAGE_DIGITIZER_UNTOUCH","features":[60]},{"name":"HID_USAGE_DIGITIZER_WHITE_BOARD","features":[60]},{"name":"HID_USAGE_DIGITIZER_X_TILT","features":[60]},{"name":"HID_USAGE_DIGITIZER_Y_TILT","features":[60]},{"name":"HID_USAGE_GAME_3D_GAME_CONTROLLER","features":[60]},{"name":"HID_USAGE_GAME_BUMP","features":[60]},{"name":"HID_USAGE_GAME_FLIPPER","features":[60]},{"name":"HID_USAGE_GAME_GAMEPAD_FIRE_JUMP","features":[60]},{"name":"HID_USAGE_GAME_GAMEPAD_TRIGGER","features":[60]},{"name":"HID_USAGE_GAME_GUN_AUTOMATIC","features":[60]},{"name":"HID_USAGE_GAME_GUN_BOLT","features":[60]},{"name":"HID_USAGE_GAME_GUN_BURST","features":[60]},{"name":"HID_USAGE_GAME_GUN_CLIP","features":[60]},{"name":"HID_USAGE_GAME_GUN_DEVICE","features":[60]},{"name":"HID_USAGE_GAME_GUN_SAFETY","features":[60]},{"name":"HID_USAGE_GAME_GUN_SELECTOR","features":[60]},{"name":"HID_USAGE_GAME_GUN_SINGLE_SHOT","features":[60]},{"name":"HID_USAGE_GAME_LEAN_FORWARD_BACK","features":[60]},{"name":"HID_USAGE_GAME_LEAN_RIGHT_LEFT","features":[60]},{"name":"HID_USAGE_GAME_MOVE_FORWARD_BACK","features":[60]},{"name":"HID_USAGE_GAME_MOVE_RIGHT_LEFT","features":[60]},{"name":"HID_USAGE_GAME_MOVE_UP_DOWN","features":[60]},{"name":"HID_USAGE_GAME_NEW_GAME","features":[60]},{"name":"HID_USAGE_GAME_PINBALL_DEVICE","features":[60]},{"name":"HID_USAGE_GAME_PITCH_FORWARD_BACK","features":[60]},{"name":"HID_USAGE_GAME_PLAYER","features":[60]},{"name":"HID_USAGE_GAME_POINT_OF_VIEW","features":[60]},{"name":"HID_USAGE_GAME_POV_HEIGHT","features":[60]},{"name":"HID_USAGE_GAME_ROLL_RIGHT_LEFT","features":[60]},{"name":"HID_USAGE_GAME_SECONDARY_FLIPPER","features":[60]},{"name":"HID_USAGE_GAME_SHOOT_BALL","features":[60]},{"name":"HID_USAGE_GAME_TURN_RIGHT_LEFT","features":[60]},{"name":"HID_USAGE_GENERIC_BYTE_COUNT","features":[60]},{"name":"HID_USAGE_GENERIC_CONTROL_ENABLE","features":[60]},{"name":"HID_USAGE_GENERIC_COUNTED_BUFFER","features":[60]},{"name":"HID_USAGE_GENERIC_DEVICE_BATTERY_STRENGTH","features":[60]},{"name":"HID_USAGE_GENERIC_DEVICE_DISCOVER_WIRELESS_CONTROL","features":[60]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ENTERED","features":[60]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ERASED","features":[60]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CLEARED","features":[60]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_CHANNEL","features":[60]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_ID","features":[60]},{"name":"HID_USAGE_GENERIC_DIAL","features":[60]},{"name":"HID_USAGE_GENERIC_DPAD_DOWN","features":[60]},{"name":"HID_USAGE_GENERIC_DPAD_LEFT","features":[60]},{"name":"HID_USAGE_GENERIC_DPAD_RIGHT","features":[60]},{"name":"HID_USAGE_GENERIC_DPAD_UP","features":[60]},{"name":"HID_USAGE_GENERIC_FEATURE_NOTIFICATION","features":[60]},{"name":"HID_USAGE_GENERIC_GAMEPAD","features":[60]},{"name":"HID_USAGE_GENERIC_HATSWITCH","features":[60]},{"name":"HID_USAGE_GENERIC_INTERACTIVE_CONTROL","features":[60]},{"name":"HID_USAGE_GENERIC_JOYSTICK","features":[60]},{"name":"HID_USAGE_GENERIC_KEYBOARD","features":[60]},{"name":"HID_USAGE_GENERIC_KEYPAD","features":[60]},{"name":"HID_USAGE_GENERIC_MOTION_WAKEUP","features":[60]},{"name":"HID_USAGE_GENERIC_MOUSE","features":[60]},{"name":"HID_USAGE_GENERIC_MULTI_AXIS_CONTROLLER","features":[60]},{"name":"HID_USAGE_GENERIC_POINTER","features":[60]},{"name":"HID_USAGE_GENERIC_PORTABLE_DEVICE_CONTROL","features":[60]},{"name":"HID_USAGE_GENERIC_RESOLUTION_MULTIPLIER","features":[60]},{"name":"HID_USAGE_GENERIC_RX","features":[60]},{"name":"HID_USAGE_GENERIC_RY","features":[60]},{"name":"HID_USAGE_GENERIC_RZ","features":[60]},{"name":"HID_USAGE_GENERIC_SELECT","features":[60]},{"name":"HID_USAGE_GENERIC_SLIDER","features":[60]},{"name":"HID_USAGE_GENERIC_START","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_BREAK","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_DBG_BREAK","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_MENU","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_COLD_RESTART","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_CONTEXT_MENU","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISMISS_NOTIFICATION","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_AUTOSCALE","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_BOTH","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_DUAL","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_EXTERNAL","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INTERNAL","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INVERT","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_SWAP","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_TOGGLE","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_DOCK","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK_INDICATOR","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_HELP_MENU","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_HIBERNATE","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MAIN_MENU","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_DOWN","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_EXIT","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_LEFT","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_RIGHT","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_SELECT","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_UP","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_MUTE","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_POWER","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_SETUP","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_SLEEP","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_BREAK","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_DBG_BREAK","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_UNDOCK","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_WAKE","features":[60]},{"name":"HID_USAGE_GENERIC_SYSCTL_WARM_RESTART","features":[60]},{"name":"HID_USAGE_GENERIC_SYSTEM_CTL","features":[60]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_BUTTON","features":[60]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_SLIDER_SWITCH","features":[60]},{"name":"HID_USAGE_GENERIC_TABLET_PC_SYSTEM_CTL","features":[60]},{"name":"HID_USAGE_GENERIC_VBRX","features":[60]},{"name":"HID_USAGE_GENERIC_VBRY","features":[60]},{"name":"HID_USAGE_GENERIC_VBRZ","features":[60]},{"name":"HID_USAGE_GENERIC_VNO","features":[60]},{"name":"HID_USAGE_GENERIC_VX","features":[60]},{"name":"HID_USAGE_GENERIC_VY","features":[60]},{"name":"HID_USAGE_GENERIC_VZ","features":[60]},{"name":"HID_USAGE_GENERIC_WHEEL","features":[60]},{"name":"HID_USAGE_GENERIC_X","features":[60]},{"name":"HID_USAGE_GENERIC_Y","features":[60]},{"name":"HID_USAGE_GENERIC_Z","features":[60]},{"name":"HID_USAGE_HAPTICS_AUTO_ASSOCIATED_CONTROL","features":[60]},{"name":"HID_USAGE_HAPTICS_AUTO_TRIGGER","features":[60]},{"name":"HID_USAGE_HAPTICS_DURATION_LIST","features":[60]},{"name":"HID_USAGE_HAPTICS_INTENSITY","features":[60]},{"name":"HID_USAGE_HAPTICS_MANUAL_TRIGGER","features":[60]},{"name":"HID_USAGE_HAPTICS_REPEAT_COUNT","features":[60]},{"name":"HID_USAGE_HAPTICS_RETRIGGER_PERIOD","features":[60]},{"name":"HID_USAGE_HAPTICS_SIMPLE_CONTROLLER","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BEGIN","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BUZZ","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CLICK","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CUTOFF_TIME","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_END","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_LIST","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_NULL","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_PRESS","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RELEASE","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RUMBLE","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_STOP","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_BEGIN","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_END","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_ID","features":[60]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_PAGE","features":[60]},{"name":"HID_USAGE_KEYBOARD_CAPS_LOCK","features":[60]},{"name":"HID_USAGE_KEYBOARD_DELETE","features":[60]},{"name":"HID_USAGE_KEYBOARD_DELETE_FORWARD","features":[60]},{"name":"HID_USAGE_KEYBOARD_ESCAPE","features":[60]},{"name":"HID_USAGE_KEYBOARD_F1","features":[60]},{"name":"HID_USAGE_KEYBOARD_F10","features":[60]},{"name":"HID_USAGE_KEYBOARD_F11","features":[60]},{"name":"HID_USAGE_KEYBOARD_F12","features":[60]},{"name":"HID_USAGE_KEYBOARD_F13","features":[60]},{"name":"HID_USAGE_KEYBOARD_F14","features":[60]},{"name":"HID_USAGE_KEYBOARD_F15","features":[60]},{"name":"HID_USAGE_KEYBOARD_F16","features":[60]},{"name":"HID_USAGE_KEYBOARD_F17","features":[60]},{"name":"HID_USAGE_KEYBOARD_F18","features":[60]},{"name":"HID_USAGE_KEYBOARD_F19","features":[60]},{"name":"HID_USAGE_KEYBOARD_F2","features":[60]},{"name":"HID_USAGE_KEYBOARD_F20","features":[60]},{"name":"HID_USAGE_KEYBOARD_F21","features":[60]},{"name":"HID_USAGE_KEYBOARD_F22","features":[60]},{"name":"HID_USAGE_KEYBOARD_F23","features":[60]},{"name":"HID_USAGE_KEYBOARD_F24","features":[60]},{"name":"HID_USAGE_KEYBOARD_F3","features":[60]},{"name":"HID_USAGE_KEYBOARD_F4","features":[60]},{"name":"HID_USAGE_KEYBOARD_F5","features":[60]},{"name":"HID_USAGE_KEYBOARD_F6","features":[60]},{"name":"HID_USAGE_KEYBOARD_F7","features":[60]},{"name":"HID_USAGE_KEYBOARD_F8","features":[60]},{"name":"HID_USAGE_KEYBOARD_F9","features":[60]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_0_AND_INSERT","features":[60]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_1_AND_END","features":[60]},{"name":"HID_USAGE_KEYBOARD_LALT","features":[60]},{"name":"HID_USAGE_KEYBOARD_LCTRL","features":[60]},{"name":"HID_USAGE_KEYBOARD_LGUI","features":[60]},{"name":"HID_USAGE_KEYBOARD_LSHFT","features":[60]},{"name":"HID_USAGE_KEYBOARD_NOEVENT","features":[60]},{"name":"HID_USAGE_KEYBOARD_NUM_LOCK","features":[60]},{"name":"HID_USAGE_KEYBOARD_ONE","features":[60]},{"name":"HID_USAGE_KEYBOARD_POSTFAIL","features":[60]},{"name":"HID_USAGE_KEYBOARD_PRINT_SCREEN","features":[60]},{"name":"HID_USAGE_KEYBOARD_RALT","features":[60]},{"name":"HID_USAGE_KEYBOARD_RCTRL","features":[60]},{"name":"HID_USAGE_KEYBOARD_RETURN","features":[60]},{"name":"HID_USAGE_KEYBOARD_RGUI","features":[60]},{"name":"HID_USAGE_KEYBOARD_ROLLOVER","features":[60]},{"name":"HID_USAGE_KEYBOARD_RSHFT","features":[60]},{"name":"HID_USAGE_KEYBOARD_SCROLL_LOCK","features":[60]},{"name":"HID_USAGE_KEYBOARD_UNDEFINED","features":[60]},{"name":"HID_USAGE_KEYBOARD_ZERO","features":[60]},{"name":"HID_USAGE_KEYBOARD_aA","features":[60]},{"name":"HID_USAGE_KEYBOARD_zZ","features":[60]},{"name":"HID_USAGE_LAMPARRAY","features":[60]},{"name":"HID_USAGE_LAMPARRAY_ATTRBIUTES_REPORT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_AUTONOMOUS_MODE","features":[60]},{"name":"HID_USAGE_LAMPARRAY_BLUE_LEVEL_COUNT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_DEPTH_IN_MICROMETERS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_HEIGHT_IN_MICROMETERS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_WIDTH_IN_MICROMETERS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_CONTROL_REPORT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_GREEN_LEVEL_COUNT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_INPUT_BINDING","features":[60]},{"name":"HID_USAGE_LAMPARRAY_INTENSITY_LEVEL_COUNT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_IS_PROGRAMMABLE","features":[60]},{"name":"HID_USAGE_LAMPARRAY_KIND","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_REQUEST_REPORT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_RESPONSE_REPORT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_BLUE_UPDATE_CHANNEL","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_COUNT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_GREEN_UPDATE_CHANNEL","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_END","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_START","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_INTENSITY_UPDATE_CHANNEL","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_MULTI_UPDATE_REPORT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_PURPOSES","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RANGE_UPDATE_REPORT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RED_UPDATE_CHANNEL","features":[60]},{"name":"HID_USAGE_LAMPARRAY_LAMP_UPDATE_FLAGS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_MIN_UPDATE_INTERVAL_IN_MICROSECONDS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_POSITION_X_IN_MICROMETERS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Y_IN_MICROMETERS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Z_IN_MICROMETERS","features":[60]},{"name":"HID_USAGE_LAMPARRAY_RED_LEVEL_COUNT","features":[60]},{"name":"HID_USAGE_LAMPARRAY_UPDATE_LATENCY_IN_MICROSECONDS","features":[60]},{"name":"HID_USAGE_LED_AMBER","features":[60]},{"name":"HID_USAGE_LED_BATTERY_LOW","features":[60]},{"name":"HID_USAGE_LED_BATTERY_OK","features":[60]},{"name":"HID_USAGE_LED_BATTERY_OPERATION","features":[60]},{"name":"HID_USAGE_LED_BUSY","features":[60]},{"name":"HID_USAGE_LED_CALL_PICKUP","features":[60]},{"name":"HID_USAGE_LED_CAMERA_OFF","features":[60]},{"name":"HID_USAGE_LED_CAMERA_ON","features":[60]},{"name":"HID_USAGE_LED_CAPS_LOCK","features":[60]},{"name":"HID_USAGE_LED_CAV","features":[60]},{"name":"HID_USAGE_LED_CLV","features":[60]},{"name":"HID_USAGE_LED_COMPOSE","features":[60]},{"name":"HID_USAGE_LED_CONFERENCE","features":[60]},{"name":"HID_USAGE_LED_COVERAGE","features":[60]},{"name":"HID_USAGE_LED_DATA_MODE","features":[60]},{"name":"HID_USAGE_LED_DO_NOT_DISTURB","features":[60]},{"name":"HID_USAGE_LED_EQUALIZER_ENABLE","features":[60]},{"name":"HID_USAGE_LED_ERROR","features":[60]},{"name":"HID_USAGE_LED_EXTERNAL_POWER","features":[60]},{"name":"HID_USAGE_LED_FAST_BLINK_OFF_TIME","features":[60]},{"name":"HID_USAGE_LED_FAST_BLINK_ON_TIME","features":[60]},{"name":"HID_USAGE_LED_FAST_FORWARD","features":[60]},{"name":"HID_USAGE_LED_FLASH_ON_TIME","features":[60]},{"name":"HID_USAGE_LED_FORWARD","features":[60]},{"name":"HID_USAGE_LED_GENERIC_INDICATOR","features":[60]},{"name":"HID_USAGE_LED_GREEN","features":[60]},{"name":"HID_USAGE_LED_HEAD_SET","features":[60]},{"name":"HID_USAGE_LED_HIGH_CUT_FILTER","features":[60]},{"name":"HID_USAGE_LED_HOLD","features":[60]},{"name":"HID_USAGE_LED_INDICATOR_COLOR","features":[60]},{"name":"HID_USAGE_LED_INDICATOR_FAST_BLINK","features":[60]},{"name":"HID_USAGE_LED_INDICATOR_FLASH","features":[60]},{"name":"HID_USAGE_LED_INDICATOR_OFF","features":[60]},{"name":"HID_USAGE_LED_INDICATOR_ON","features":[60]},{"name":"HID_USAGE_LED_INDICATOR_SLOW_BLINK","features":[60]},{"name":"HID_USAGE_LED_IN_USE_INDICATOR","features":[60]},{"name":"HID_USAGE_LED_KANA","features":[60]},{"name":"HID_USAGE_LED_LOW_CUT_FILTER","features":[60]},{"name":"HID_USAGE_LED_MESSAGE_WAITING","features":[60]},{"name":"HID_USAGE_LED_MICROPHONE","features":[60]},{"name":"HID_USAGE_LED_MULTI_MODE_INDICATOR","features":[60]},{"name":"HID_USAGE_LED_MUTE","features":[60]},{"name":"HID_USAGE_LED_NIGHT_MODE","features":[60]},{"name":"HID_USAGE_LED_NUM_LOCK","features":[60]},{"name":"HID_USAGE_LED_OFF_HOOK","features":[60]},{"name":"HID_USAGE_LED_OFF_LINE","features":[60]},{"name":"HID_USAGE_LED_ON_LINE","features":[60]},{"name":"HID_USAGE_LED_PAPER_JAM","features":[60]},{"name":"HID_USAGE_LED_PAPER_OUT","features":[60]},{"name":"HID_USAGE_LED_PAUSE","features":[60]},{"name":"HID_USAGE_LED_PLAY","features":[60]},{"name":"HID_USAGE_LED_POWER","features":[60]},{"name":"HID_USAGE_LED_READY","features":[60]},{"name":"HID_USAGE_LED_RECORD","features":[60]},{"name":"HID_USAGE_LED_RECORDING_FORMAT_DET","features":[60]},{"name":"HID_USAGE_LED_RED","features":[60]},{"name":"HID_USAGE_LED_REMOTE","features":[60]},{"name":"HID_USAGE_LED_REPEAT","features":[60]},{"name":"HID_USAGE_LED_REVERSE","features":[60]},{"name":"HID_USAGE_LED_REWIND","features":[60]},{"name":"HID_USAGE_LED_RING","features":[60]},{"name":"HID_USAGE_LED_SAMPLING_RATE_DETECT","features":[60]},{"name":"HID_USAGE_LED_SCROLL_LOCK","features":[60]},{"name":"HID_USAGE_LED_SELECTED_INDICATOR","features":[60]},{"name":"HID_USAGE_LED_SEND_CALLS","features":[60]},{"name":"HID_USAGE_LED_SHIFT","features":[60]},{"name":"HID_USAGE_LED_SLOW_BLINK_OFF_TIME","features":[60]},{"name":"HID_USAGE_LED_SLOW_BLINK_ON_TIME","features":[60]},{"name":"HID_USAGE_LED_SOUND_FIELD_ON","features":[60]},{"name":"HID_USAGE_LED_SPEAKER","features":[60]},{"name":"HID_USAGE_LED_SPINNING","features":[60]},{"name":"HID_USAGE_LED_STAND_BY","features":[60]},{"name":"HID_USAGE_LED_STEREO","features":[60]},{"name":"HID_USAGE_LED_STOP","features":[60]},{"name":"HID_USAGE_LED_SURROUND_FIELD_ON","features":[60]},{"name":"HID_USAGE_LED_SYSTEM_SUSPEND","features":[60]},{"name":"HID_USAGE_LED_TONE_ENABLE","features":[60]},{"name":"HID_USAGE_MS_BTH_HF_DIALMEMORY","features":[60]},{"name":"HID_USAGE_MS_BTH_HF_DIALNUMBER","features":[60]},{"name":"HID_USAGE_PAGE_ALPHANUMERIC","features":[60]},{"name":"HID_USAGE_PAGE_ARCADE","features":[60]},{"name":"HID_USAGE_PAGE_BARCODE_SCANNER","features":[60]},{"name":"HID_USAGE_PAGE_BUTTON","features":[60]},{"name":"HID_USAGE_PAGE_CAMERA_CONTROL","features":[60]},{"name":"HID_USAGE_PAGE_CONSUMER","features":[60]},{"name":"HID_USAGE_PAGE_DIGITIZER","features":[60]},{"name":"HID_USAGE_PAGE_GAME","features":[60]},{"name":"HID_USAGE_PAGE_GENERIC","features":[60]},{"name":"HID_USAGE_PAGE_GENERIC_DEVICE","features":[60]},{"name":"HID_USAGE_PAGE_HAPTICS","features":[60]},{"name":"HID_USAGE_PAGE_KEYBOARD","features":[60]},{"name":"HID_USAGE_PAGE_LED","features":[60]},{"name":"HID_USAGE_PAGE_LIGHTING_ILLUMINATION","features":[60]},{"name":"HID_USAGE_PAGE_MAGNETIC_STRIPE_READER","features":[60]},{"name":"HID_USAGE_PAGE_MICROSOFT_BLUETOOTH_HANDSFREE","features":[60]},{"name":"HID_USAGE_PAGE_ORDINAL","features":[60]},{"name":"HID_USAGE_PAGE_PID","features":[60]},{"name":"HID_USAGE_PAGE_SENSOR","features":[60]},{"name":"HID_USAGE_PAGE_SIMULATION","features":[60]},{"name":"HID_USAGE_PAGE_SPORT","features":[60]},{"name":"HID_USAGE_PAGE_TELEPHONY","features":[60]},{"name":"HID_USAGE_PAGE_UNDEFINED","features":[60]},{"name":"HID_USAGE_PAGE_UNICODE","features":[60]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_BEGIN","features":[60]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_END","features":[60]},{"name":"HID_USAGE_PAGE_VR","features":[60]},{"name":"HID_USAGE_PAGE_WEIGHING_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_ACCELLERATOR","features":[60]},{"name":"HID_USAGE_SIMULATION_AILERON","features":[60]},{"name":"HID_USAGE_SIMULATION_AILERON_TRIM","features":[60]},{"name":"HID_USAGE_SIMULATION_AIRPLANE_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_ANTI_TORQUE_CONTROL","features":[60]},{"name":"HID_USAGE_SIMULATION_AUTOMOBILE_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_AUTOPIOLOT_ENABLE","features":[60]},{"name":"HID_USAGE_SIMULATION_BALLAST","features":[60]},{"name":"HID_USAGE_SIMULATION_BARREL_ELEVATION","features":[60]},{"name":"HID_USAGE_SIMULATION_BICYCLE_CRANK","features":[60]},{"name":"HID_USAGE_SIMULATION_BICYCLE_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_BRAKE","features":[60]},{"name":"HID_USAGE_SIMULATION_CHAFF_RELEASE","features":[60]},{"name":"HID_USAGE_SIMULATION_CLUTCH","features":[60]},{"name":"HID_USAGE_SIMULATION_COLLECTIVE_CONTROL","features":[60]},{"name":"HID_USAGE_SIMULATION_CYCLIC_CONTROL","features":[60]},{"name":"HID_USAGE_SIMULATION_CYCLIC_TRIM","features":[60]},{"name":"HID_USAGE_SIMULATION_DIVE_BRAKE","features":[60]},{"name":"HID_USAGE_SIMULATION_DIVE_PLANE","features":[60]},{"name":"HID_USAGE_SIMULATION_ELECTRONIC_COUNTERMEASURES","features":[60]},{"name":"HID_USAGE_SIMULATION_ELEVATOR","features":[60]},{"name":"HID_USAGE_SIMULATION_ELEVATOR_TRIM","features":[60]},{"name":"HID_USAGE_SIMULATION_FLARE_RELEASE","features":[60]},{"name":"HID_USAGE_SIMULATION_FLIGHT_COMMUNICATIONS","features":[60]},{"name":"HID_USAGE_SIMULATION_FLIGHT_CONTROL_STICK","features":[60]},{"name":"HID_USAGE_SIMULATION_FLIGHT_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_FLIGHT_STICK","features":[60]},{"name":"HID_USAGE_SIMULATION_FLIGHT_YOKE","features":[60]},{"name":"HID_USAGE_SIMULATION_FRONT_BRAKE","features":[60]},{"name":"HID_USAGE_SIMULATION_HANDLE_BARS","features":[60]},{"name":"HID_USAGE_SIMULATION_HELICOPTER_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_LANDING_GEAR","features":[60]},{"name":"HID_USAGE_SIMULATION_MAGIC_CARPET_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_MOTORCYCLE_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_REAR_BRAKE","features":[60]},{"name":"HID_USAGE_SIMULATION_RUDDER","features":[60]},{"name":"HID_USAGE_SIMULATION_SAILING_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_SHIFTER","features":[60]},{"name":"HID_USAGE_SIMULATION_SPACESHIP_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_SPORTS_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_STEERING","features":[60]},{"name":"HID_USAGE_SIMULATION_SUBMARINE_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_TANK_SIMULATION_DEVICE","features":[60]},{"name":"HID_USAGE_SIMULATION_THROTTLE","features":[60]},{"name":"HID_USAGE_SIMULATION_TOE_BRAKE","features":[60]},{"name":"HID_USAGE_SIMULATION_TRACK_CONTROL","features":[60]},{"name":"HID_USAGE_SIMULATION_TRIGGER","features":[60]},{"name":"HID_USAGE_SIMULATION_TURRET_DIRECTION","features":[60]},{"name":"HID_USAGE_SIMULATION_WEAPONS_ARM","features":[60]},{"name":"HID_USAGE_SIMULATION_WEAPONS_SELECT","features":[60]},{"name":"HID_USAGE_SIMULATION_WING_FLAPS","features":[60]},{"name":"HID_USAGE_SPORT_10_IRON","features":[60]},{"name":"HID_USAGE_SPORT_11_IRON","features":[60]},{"name":"HID_USAGE_SPORT_1_IRON","features":[60]},{"name":"HID_USAGE_SPORT_1_WOOD","features":[60]},{"name":"HID_USAGE_SPORT_2_IRON","features":[60]},{"name":"HID_USAGE_SPORT_3_IRON","features":[60]},{"name":"HID_USAGE_SPORT_3_WOOD","features":[60]},{"name":"HID_USAGE_SPORT_4_IRON","features":[60]},{"name":"HID_USAGE_SPORT_5_IRON","features":[60]},{"name":"HID_USAGE_SPORT_5_WOOD","features":[60]},{"name":"HID_USAGE_SPORT_6_IRON","features":[60]},{"name":"HID_USAGE_SPORT_7_IRON","features":[60]},{"name":"HID_USAGE_SPORT_7_WOOD","features":[60]},{"name":"HID_USAGE_SPORT_8_IRON","features":[60]},{"name":"HID_USAGE_SPORT_9_IRON","features":[60]},{"name":"HID_USAGE_SPORT_9_WOOD","features":[60]},{"name":"HID_USAGE_SPORT_BASEBALL_BAT","features":[60]},{"name":"HID_USAGE_SPORT_FOLLOW_THROUGH","features":[60]},{"name":"HID_USAGE_SPORT_GOLF_CLUB","features":[60]},{"name":"HID_USAGE_SPORT_HEEL_TOE","features":[60]},{"name":"HID_USAGE_SPORT_HEIGHT","features":[60]},{"name":"HID_USAGE_SPORT_LOFT_WEDGE","features":[60]},{"name":"HID_USAGE_SPORT_OAR","features":[60]},{"name":"HID_USAGE_SPORT_POWER_WEDGE","features":[60]},{"name":"HID_USAGE_SPORT_PUTTER","features":[60]},{"name":"HID_USAGE_SPORT_RATE","features":[60]},{"name":"HID_USAGE_SPORT_ROWING_MACHINE","features":[60]},{"name":"HID_USAGE_SPORT_SAND_WEDGE","features":[60]},{"name":"HID_USAGE_SPORT_SLOPE","features":[60]},{"name":"HID_USAGE_SPORT_STICK_FACE_ANGLE","features":[60]},{"name":"HID_USAGE_SPORT_STICK_SPEED","features":[60]},{"name":"HID_USAGE_SPORT_STICK_TYPE","features":[60]},{"name":"HID_USAGE_SPORT_TEMPO","features":[60]},{"name":"HID_USAGE_SPORT_TREADMILL","features":[60]},{"name":"HID_USAGE_TELEPHONY_ANSWERING_MACHINE","features":[60]},{"name":"HID_USAGE_TELEPHONY_DROP","features":[60]},{"name":"HID_USAGE_TELEPHONY_HANDSET","features":[60]},{"name":"HID_USAGE_TELEPHONY_HEADSET","features":[60]},{"name":"HID_USAGE_TELEPHONY_HOST_AVAILABLE","features":[60]},{"name":"HID_USAGE_TELEPHONY_KEYPAD","features":[60]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_0","features":[60]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_D","features":[60]},{"name":"HID_USAGE_TELEPHONY_LINE","features":[60]},{"name":"HID_USAGE_TELEPHONY_MESSAGE_CONTROLS","features":[60]},{"name":"HID_USAGE_TELEPHONY_PHONE","features":[60]},{"name":"HID_USAGE_TELEPHONY_PROGRAMMABLE_BUTTON","features":[60]},{"name":"HID_USAGE_TELEPHONY_REDIAL","features":[60]},{"name":"HID_USAGE_TELEPHONY_RING_ENABLE","features":[60]},{"name":"HID_USAGE_TELEPHONY_SEND","features":[60]},{"name":"HID_USAGE_TELEPHONY_TRANSFER","features":[60]},{"name":"HID_USAGE_VR_ANIMATRONIC_DEVICE","features":[60]},{"name":"HID_USAGE_VR_BELT","features":[60]},{"name":"HID_USAGE_VR_BODY_SUIT","features":[60]},{"name":"HID_USAGE_VR_DISPLAY_ENABLE","features":[60]},{"name":"HID_USAGE_VR_FLEXOR","features":[60]},{"name":"HID_USAGE_VR_GLOVE","features":[60]},{"name":"HID_USAGE_VR_HAND_TRACKER","features":[60]},{"name":"HID_USAGE_VR_HEAD_MOUNTED_DISPLAY","features":[60]},{"name":"HID_USAGE_VR_HEAD_TRACKER","features":[60]},{"name":"HID_USAGE_VR_OCULOMETER","features":[60]},{"name":"HID_USAGE_VR_STEREO_ENABLE","features":[60]},{"name":"HID_USAGE_VR_VEST","features":[60]},{"name":"HID_XFER_PACKET","features":[60]},{"name":"HORIZONTAL_WHEEL_PRESENT","features":[60]},{"name":"HidD_FlushQueue","features":[60,3]},{"name":"HidD_FreePreparsedData","features":[60,3]},{"name":"HidD_GetAttributes","features":[60,3]},{"name":"HidD_GetConfiguration","features":[60,3]},{"name":"HidD_GetFeature","features":[60,3]},{"name":"HidD_GetHidGuid","features":[60]},{"name":"HidD_GetIndexedString","features":[60,3]},{"name":"HidD_GetInputReport","features":[60,3]},{"name":"HidD_GetManufacturerString","features":[60,3]},{"name":"HidD_GetMsGenreDescriptor","features":[60,3]},{"name":"HidD_GetNumInputBuffers","features":[60,3]},{"name":"HidD_GetPhysicalDescriptor","features":[60,3]},{"name":"HidD_GetPreparsedData","features":[60,3]},{"name":"HidD_GetProductString","features":[60,3]},{"name":"HidD_GetSerialNumberString","features":[60,3]},{"name":"HidD_SetConfiguration","features":[60,3]},{"name":"HidD_SetFeature","features":[60,3]},{"name":"HidD_SetNumInputBuffers","features":[60,3]},{"name":"HidD_SetOutputReport","features":[60,3]},{"name":"HidP_Feature","features":[60]},{"name":"HidP_GetButtonArray","features":[60,3]},{"name":"HidP_GetButtonCaps","features":[60,3]},{"name":"HidP_GetCaps","features":[60,3]},{"name":"HidP_GetData","features":[60,3]},{"name":"HidP_GetExtendedAttributes","features":[60,3]},{"name":"HidP_GetLinkCollectionNodes","features":[60,3]},{"name":"HidP_GetScaledUsageValue","features":[60,3]},{"name":"HidP_GetSpecificButtonCaps","features":[60,3]},{"name":"HidP_GetSpecificValueCaps","features":[60,3]},{"name":"HidP_GetUsageValue","features":[60,3]},{"name":"HidP_GetUsageValueArray","features":[60,3]},{"name":"HidP_GetUsages","features":[60,3]},{"name":"HidP_GetUsagesEx","features":[60,3]},{"name":"HidP_GetValueCaps","features":[60,3]},{"name":"HidP_InitializeReportForID","features":[60,3]},{"name":"HidP_Input","features":[60]},{"name":"HidP_Keyboard_Break","features":[60]},{"name":"HidP_Keyboard_Make","features":[60]},{"name":"HidP_MaxDataListLength","features":[60]},{"name":"HidP_MaxUsageListLength","features":[60]},{"name":"HidP_Output","features":[60]},{"name":"HidP_SetButtonArray","features":[60,3]},{"name":"HidP_SetData","features":[60,3]},{"name":"HidP_SetScaledUsageValue","features":[60,3]},{"name":"HidP_SetUsageValue","features":[60,3]},{"name":"HidP_SetUsageValueArray","features":[60,3]},{"name":"HidP_SetUsages","features":[60,3]},{"name":"HidP_TranslateUsagesToI8042ScanCodes","features":[60,3]},{"name":"HidP_UnsetUsages","features":[60,3]},{"name":"HidP_UsageListDifference","features":[60,3]},{"name":"IDirectInput2A","features":[60]},{"name":"IDirectInput2W","features":[60]},{"name":"IDirectInput7A","features":[60]},{"name":"IDirectInput7W","features":[60]},{"name":"IDirectInput8A","features":[60]},{"name":"IDirectInput8W","features":[60]},{"name":"IDirectInputA","features":[60]},{"name":"IDirectInputDevice2A","features":[60]},{"name":"IDirectInputDevice2W","features":[60]},{"name":"IDirectInputDevice7A","features":[60]},{"name":"IDirectInputDevice7W","features":[60]},{"name":"IDirectInputDevice8A","features":[60]},{"name":"IDirectInputDevice8W","features":[60]},{"name":"IDirectInputDeviceA","features":[60]},{"name":"IDirectInputDeviceW","features":[60]},{"name":"IDirectInputEffect","features":[60]},{"name":"IDirectInputEffectDriver","features":[60]},{"name":"IDirectInputJoyConfig","features":[60]},{"name":"IDirectInputJoyConfig8","features":[60]},{"name":"IDirectInputW","features":[60]},{"name":"INDICATOR_LIST","features":[60]},{"name":"INPUT_BUTTON_ENABLE_INFO","features":[60,3]},{"name":"IOCTL_BUTTON_GET_ENABLED_ON_IDLE","features":[60]},{"name":"IOCTL_BUTTON_SET_ENABLED_ON_IDLE","features":[60]},{"name":"IOCTL_KEYBOARD_INSERT_DATA","features":[60]},{"name":"IOCTL_KEYBOARD_QUERY_ATTRIBUTES","features":[60]},{"name":"IOCTL_KEYBOARD_QUERY_EXTENDED_ATTRIBUTES","features":[60]},{"name":"IOCTL_KEYBOARD_QUERY_IME_STATUS","features":[60]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATORS","features":[60]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATOR_TRANSLATION","features":[60]},{"name":"IOCTL_KEYBOARD_QUERY_TYPEMATIC","features":[60]},{"name":"IOCTL_KEYBOARD_SET_IME_STATUS","features":[60]},{"name":"IOCTL_KEYBOARD_SET_INDICATORS","features":[60]},{"name":"IOCTL_KEYBOARD_SET_TYPEMATIC","features":[60]},{"name":"IOCTL_MOUSE_INSERT_DATA","features":[60]},{"name":"IOCTL_MOUSE_QUERY_ATTRIBUTES","features":[60]},{"name":"JOYCALIBRATE","features":[60]},{"name":"JOYPOS","features":[60]},{"name":"JOYRANGE","features":[60]},{"name":"JOYREGHWCONFIG","features":[60]},{"name":"JOYREGHWSETTINGS","features":[60]},{"name":"JOYREGHWVALUES","features":[60]},{"name":"JOYREGUSERVALUES","features":[60]},{"name":"JOYTYPE_ANALOGCOMPAT","features":[60]},{"name":"JOYTYPE_DEFAULTPROPSHEET","features":[60]},{"name":"JOYTYPE_DEVICEHIDE","features":[60]},{"name":"JOYTYPE_ENABLEINPUTREPORT","features":[60]},{"name":"JOYTYPE_GAMEHIDE","features":[60]},{"name":"JOYTYPE_HIDEACTIVE","features":[60]},{"name":"JOYTYPE_INFODEFAULT","features":[60]},{"name":"JOYTYPE_INFOMASK","features":[60]},{"name":"JOYTYPE_INFOYRPEDALS","features":[60]},{"name":"JOYTYPE_INFOYYPEDALS","features":[60]},{"name":"JOYTYPE_INFOZISSLIDER","features":[60]},{"name":"JOYTYPE_INFOZISZ","features":[60]},{"name":"JOYTYPE_INFOZRPEDALS","features":[60]},{"name":"JOYTYPE_INFOZYPEDALS","features":[60]},{"name":"JOYTYPE_KEYBHIDE","features":[60]},{"name":"JOYTYPE_MOUSEHIDE","features":[60]},{"name":"JOYTYPE_NOAUTODETECTGAMEPORT","features":[60]},{"name":"JOYTYPE_NOHIDDIRECT","features":[60]},{"name":"JOYTYPE_ZEROGAMEENUMOEMDATA","features":[60]},{"name":"JOY_HWS_AUTOLOAD","features":[60]},{"name":"JOY_HWS_GAMEPORTBUSBUSY","features":[60]},{"name":"JOY_HWS_HASPOV","features":[60]},{"name":"JOY_HWS_HASR","features":[60]},{"name":"JOY_HWS_HASU","features":[60]},{"name":"JOY_HWS_HASV","features":[60]},{"name":"JOY_HWS_HASZ","features":[60]},{"name":"JOY_HWS_ISANALOGPORTDRIVER","features":[60]},{"name":"JOY_HWS_ISCARCTRL","features":[60]},{"name":"JOY_HWS_ISGAMEPAD","features":[60]},{"name":"JOY_HWS_ISGAMEPORTBUS","features":[60]},{"name":"JOY_HWS_ISGAMEPORTDRIVER","features":[60]},{"name":"JOY_HWS_ISHEADTRACKER","features":[60]},{"name":"JOY_HWS_ISYOKE","features":[60]},{"name":"JOY_HWS_NODEVNODE","features":[60]},{"name":"JOY_HWS_POVISBUTTONCOMBOS","features":[60]},{"name":"JOY_HWS_POVISJ1X","features":[60]},{"name":"JOY_HWS_POVISJ1Y","features":[60]},{"name":"JOY_HWS_POVISJ2X","features":[60]},{"name":"JOY_HWS_POVISPOLL","features":[60]},{"name":"JOY_HWS_RISJ1X","features":[60]},{"name":"JOY_HWS_RISJ1Y","features":[60]},{"name":"JOY_HWS_RISJ2Y","features":[60]},{"name":"JOY_HWS_XISJ1Y","features":[60]},{"name":"JOY_HWS_XISJ2X","features":[60]},{"name":"JOY_HWS_XISJ2Y","features":[60]},{"name":"JOY_HWS_YISJ1X","features":[60]},{"name":"JOY_HWS_YISJ2X","features":[60]},{"name":"JOY_HWS_YISJ2Y","features":[60]},{"name":"JOY_HWS_ZISJ1X","features":[60]},{"name":"JOY_HWS_ZISJ1Y","features":[60]},{"name":"JOY_HWS_ZISJ2X","features":[60]},{"name":"JOY_HW_2A_2B_GENERIC","features":[60]},{"name":"JOY_HW_2A_4B_GENERIC","features":[60]},{"name":"JOY_HW_2B_FLIGHTYOKE","features":[60]},{"name":"JOY_HW_2B_FLIGHTYOKETHROTTLE","features":[60]},{"name":"JOY_HW_2B_GAMEPAD","features":[60]},{"name":"JOY_HW_3A_2B_GENERIC","features":[60]},{"name":"JOY_HW_3A_4B_GENERIC","features":[60]},{"name":"JOY_HW_4B_FLIGHTYOKE","features":[60]},{"name":"JOY_HW_4B_FLIGHTYOKETHROTTLE","features":[60]},{"name":"JOY_HW_4B_GAMEPAD","features":[60]},{"name":"JOY_HW_CUSTOM","features":[60]},{"name":"JOY_HW_LASTENTRY","features":[60]},{"name":"JOY_HW_NONE","features":[60]},{"name":"JOY_HW_TWO_2A_2B_WITH_Y","features":[60]},{"name":"JOY_ISCAL_POV","features":[60]},{"name":"JOY_ISCAL_R","features":[60]},{"name":"JOY_ISCAL_U","features":[60]},{"name":"JOY_ISCAL_V","features":[60]},{"name":"JOY_ISCAL_XY","features":[60]},{"name":"JOY_ISCAL_Z","features":[60]},{"name":"JOY_OEMPOLL_PASSDRIVERDATA","features":[60]},{"name":"JOY_PASSDRIVERDATA","features":[60]},{"name":"JOY_POVVAL_BACKWARD","features":[60]},{"name":"JOY_POVVAL_FORWARD","features":[60]},{"name":"JOY_POVVAL_LEFT","features":[60]},{"name":"JOY_POVVAL_RIGHT","features":[60]},{"name":"JOY_POV_NUMDIRS","features":[60]},{"name":"JOY_US_HASRUDDER","features":[60]},{"name":"JOY_US_ISOEM","features":[60]},{"name":"JOY_US_PRESENT","features":[60]},{"name":"JOY_US_RESERVED","features":[60]},{"name":"JOY_US_VOLATILE","features":[60]},{"name":"KEYBOARD_ATTRIBUTES","features":[60]},{"name":"KEYBOARD_CAPS_LOCK_ON","features":[60]},{"name":"KEYBOARD_ERROR_VALUE_BASE","features":[60]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES","features":[60]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES_STRUCT_VERSION_1","features":[60]},{"name":"KEYBOARD_ID","features":[60]},{"name":"KEYBOARD_IME_STATUS","features":[60]},{"name":"KEYBOARD_INDICATOR_PARAMETERS","features":[60]},{"name":"KEYBOARD_INDICATOR_TRANSLATION","features":[60]},{"name":"KEYBOARD_INPUT_DATA","features":[60]},{"name":"KEYBOARD_KANA_LOCK_ON","features":[60]},{"name":"KEYBOARD_LED_INJECTED","features":[60]},{"name":"KEYBOARD_NUM_LOCK_ON","features":[60]},{"name":"KEYBOARD_OVERRUN_MAKE_CODE","features":[60]},{"name":"KEYBOARD_SCROLL_LOCK_ON","features":[60]},{"name":"KEYBOARD_SHADOW","features":[60]},{"name":"KEYBOARD_TYPEMATIC_PARAMETERS","features":[60]},{"name":"KEYBOARD_UNIT_ID_PARAMETER","features":[60]},{"name":"KEY_BREAK","features":[60]},{"name":"KEY_E0","features":[60]},{"name":"KEY_E1","features":[60]},{"name":"KEY_FROM_KEYBOARD_OVERRIDER","features":[60]},{"name":"KEY_MAKE","features":[60]},{"name":"KEY_RIM_VKEY","features":[60]},{"name":"KEY_TERMSRV_SET_LED","features":[60]},{"name":"KEY_TERMSRV_SHADOW","features":[60]},{"name":"KEY_TERMSRV_VKPACKET","features":[60]},{"name":"KEY_UNICODE_SEQUENCE_END","features":[60]},{"name":"KEY_UNICODE_SEQUENCE_ITEM","features":[60]},{"name":"LPDICONFIGUREDEVICESCALLBACK","features":[60,3]},{"name":"LPDIENUMCREATEDEFFECTOBJECTSCALLBACK","features":[60,3]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKA","features":[60,3]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKW","features":[60,3]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBA","features":[60,3]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBW","features":[60,3]},{"name":"LPDIENUMDEVICESCALLBACKA","features":[60,3]},{"name":"LPDIENUMDEVICESCALLBACKW","features":[60,3]},{"name":"LPDIENUMEFFECTSCALLBACKA","features":[60,3]},{"name":"LPDIENUMEFFECTSCALLBACKW","features":[60,3]},{"name":"LPDIENUMEFFECTSINFILECALLBACK","features":[60,3]},{"name":"LPDIJOYTYPECALLBACK","features":[60,3]},{"name":"LPFNSHOWJOYCPL","features":[60,3]},{"name":"MAXCPOINTSNUM","features":[60]},{"name":"MAX_JOYSTICKOEMVXDNAME","features":[60]},{"name":"MAX_JOYSTRING","features":[60]},{"name":"MOUSE_ATTRIBUTES","features":[60]},{"name":"MOUSE_BUTTON_1_DOWN","features":[60]},{"name":"MOUSE_BUTTON_1_UP","features":[60]},{"name":"MOUSE_BUTTON_2_DOWN","features":[60]},{"name":"MOUSE_BUTTON_2_UP","features":[60]},{"name":"MOUSE_BUTTON_3_DOWN","features":[60]},{"name":"MOUSE_BUTTON_3_UP","features":[60]},{"name":"MOUSE_BUTTON_4_DOWN","features":[60]},{"name":"MOUSE_BUTTON_4_UP","features":[60]},{"name":"MOUSE_BUTTON_5_DOWN","features":[60]},{"name":"MOUSE_BUTTON_5_UP","features":[60]},{"name":"MOUSE_ERROR_VALUE_BASE","features":[60]},{"name":"MOUSE_HID_HARDWARE","features":[60]},{"name":"MOUSE_HWHEEL","features":[60]},{"name":"MOUSE_I8042_HARDWARE","features":[60]},{"name":"MOUSE_INPORT_HARDWARE","features":[60]},{"name":"MOUSE_INPUT_DATA","features":[60]},{"name":"MOUSE_LEFT_BUTTON_DOWN","features":[60]},{"name":"MOUSE_LEFT_BUTTON_UP","features":[60]},{"name":"MOUSE_MIDDLE_BUTTON_DOWN","features":[60]},{"name":"MOUSE_MIDDLE_BUTTON_UP","features":[60]},{"name":"MOUSE_RIGHT_BUTTON_DOWN","features":[60]},{"name":"MOUSE_RIGHT_BUTTON_UP","features":[60]},{"name":"MOUSE_SERIAL_HARDWARE","features":[60]},{"name":"MOUSE_TERMSRV_SRC_SHADOW","features":[60]},{"name":"MOUSE_UNIT_ID_PARAMETER","features":[60]},{"name":"MOUSE_WHEEL","features":[60]},{"name":"PFN_HidP_GetVersionInternal","features":[60,3]},{"name":"PHIDP_INSERT_SCANCODES","features":[60,3]},{"name":"PHIDP_PREPARSED_DATA","features":[60]},{"name":"USAGE_AND_PAGE","features":[60]},{"name":"WHEELMOUSE_HID_HARDWARE","features":[60]},{"name":"WHEELMOUSE_I8042_HARDWARE","features":[60]},{"name":"WHEELMOUSE_SERIAL_HARDWARE","features":[60]},{"name":"joyConfigChanged","features":[60]}],"383":[{"name":"CLSID_WPD_NAMESPACE_EXTENSION","features":[61]},{"name":"DELETE_OBJECT_OPTIONS","features":[61]},{"name":"DEVICE_RADIO_STATE","features":[61]},{"name":"DEVPKEY_MTPBTH_IsConnected","features":[61,1]},{"name":"DEVSVCTYPE_ABSTRACT","features":[61]},{"name":"DEVSVCTYPE_DEFAULT","features":[61]},{"name":"DEVSVC_SERVICEINFO_VERSION","features":[61]},{"name":"DMProcessConfigXMLFiltered","features":[61]},{"name":"DRS_HW_RADIO_OFF","features":[61]},{"name":"DRS_HW_RADIO_OFF_UNCONTROLLABLE","features":[61]},{"name":"DRS_HW_RADIO_ON_UNCONTROLLABLE","features":[61]},{"name":"DRS_RADIO_INVALID","features":[61]},{"name":"DRS_RADIO_MAX","features":[61]},{"name":"DRS_RADIO_ON","features":[61]},{"name":"DRS_SW_HW_RADIO_OFF","features":[61]},{"name":"DRS_SW_RADIO_OFF","features":[61]},{"name":"ENUM_AnchorResults_AnchorStateInvalid","features":[61]},{"name":"ENUM_AnchorResults_AnchorStateNormal","features":[61]},{"name":"ENUM_AnchorResults_AnchorStateOld","features":[61]},{"name":"ENUM_AnchorResults_ItemStateChanged","features":[61]},{"name":"ENUM_AnchorResults_ItemStateCreated","features":[61]},{"name":"ENUM_AnchorResults_ItemStateDeleted","features":[61]},{"name":"ENUM_AnchorResults_ItemStateInvalid","features":[61]},{"name":"ENUM_AnchorResults_ItemStateUpdated","features":[61]},{"name":"ENUM_CalendarObj_BusyStatusBusy","features":[61]},{"name":"ENUM_CalendarObj_BusyStatusFree","features":[61]},{"name":"ENUM_CalendarObj_BusyStatusOutOfOffice","features":[61]},{"name":"ENUM_CalendarObj_BusyStatusTentative","features":[61]},{"name":"ENUM_DeviceMetadataObj_DefaultCABFalse","features":[61]},{"name":"ENUM_DeviceMetadataObj_DefaultCABTrue","features":[61]},{"name":"ENUM_MessageObj_PatternInstanceFirst","features":[61]},{"name":"ENUM_MessageObj_PatternInstanceFourth","features":[61]},{"name":"ENUM_MessageObj_PatternInstanceLast","features":[61]},{"name":"ENUM_MessageObj_PatternInstanceNone","features":[61]},{"name":"ENUM_MessageObj_PatternInstanceSecond","features":[61]},{"name":"ENUM_MessageObj_PatternInstanceThird","features":[61]},{"name":"ENUM_MessageObj_PatternTypeDaily","features":[61]},{"name":"ENUM_MessageObj_PatternTypeMonthly","features":[61]},{"name":"ENUM_MessageObj_PatternTypeWeekly","features":[61]},{"name":"ENUM_MessageObj_PatternTypeYearly","features":[61]},{"name":"ENUM_MessageObj_PriorityHighest","features":[61]},{"name":"ENUM_MessageObj_PriorityLowest","features":[61]},{"name":"ENUM_MessageObj_PriorityNormal","features":[61]},{"name":"ENUM_MessageObj_ReadFalse","features":[61]},{"name":"ENUM_MessageObj_ReadTrue","features":[61]},{"name":"ENUM_StatusSvc_ChargingActive","features":[61]},{"name":"ENUM_StatusSvc_ChargingInactive","features":[61]},{"name":"ENUM_StatusSvc_ChargingUnknown","features":[61]},{"name":"ENUM_StatusSvc_RoamingActive","features":[61]},{"name":"ENUM_StatusSvc_RoamingInactive","features":[61]},{"name":"ENUM_StatusSvc_RoamingUnknown","features":[61]},{"name":"ENUM_SyncSvc_SyncObjectReferencesDisabled","features":[61]},{"name":"ENUM_SyncSvc_SyncObjectReferencesEnabled","features":[61]},{"name":"ENUM_TaskObj_CompleteFalse","features":[61]},{"name":"ENUM_TaskObj_CompleteTrue","features":[61]},{"name":"E_WPD_DEVICE_ALREADY_OPENED","features":[61]},{"name":"E_WPD_DEVICE_IS_HUNG","features":[61]},{"name":"E_WPD_DEVICE_NOT_OPEN","features":[61]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_DEVICE","features":[61]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_SERVICE","features":[61]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_DEVICE","features":[61]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_SERVICE","features":[61]},{"name":"E_WPD_OBJECT_NOT_COMMITED","features":[61]},{"name":"E_WPD_SERVICE_ALREADY_OPENED","features":[61]},{"name":"E_WPD_SERVICE_BAD_PARAMETER_ORDER","features":[61]},{"name":"E_WPD_SERVICE_NOT_OPEN","features":[61]},{"name":"E_WPD_SMS_INVALID_MESSAGE_BODY","features":[61]},{"name":"E_WPD_SMS_INVALID_RECIPIENT","features":[61]},{"name":"E_WPD_SMS_SERVICE_UNAVAILABLE","features":[61]},{"name":"EnumBthMtpConnectors","features":[61]},{"name":"FACILITY_WPD","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekFriday","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekMonday","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekNone","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekSaturday","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekSunday","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekThursday","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekTuesday","features":[61]},{"name":"FLAG_MessageObj_DayOfWeekWednesday","features":[61]},{"name":"GUID_DEVINTERFACE_WPD","features":[61]},{"name":"GUID_DEVINTERFACE_WPD_PRIVATE","features":[61]},{"name":"GUID_DEVINTERFACE_WPD_SERVICE","features":[61]},{"name":"IConnectionRequestCallback","features":[61]},{"name":"IEnumPortableDeviceConnectors","features":[61]},{"name":"IEnumPortableDeviceObjectIDs","features":[61]},{"name":"IMediaRadioManager","features":[61]},{"name":"IMediaRadioManagerNotifySink","features":[61]},{"name":"IOCTL_WPD_MESSAGE_READWRITE_ACCESS","features":[61]},{"name":"IOCTL_WPD_MESSAGE_READ_ACCESS","features":[61]},{"name":"IPortableDevice","features":[61]},{"name":"IPortableDeviceCapabilities","features":[61]},{"name":"IPortableDeviceConnector","features":[61]},{"name":"IPortableDeviceContent","features":[61]},{"name":"IPortableDeviceContent2","features":[61]},{"name":"IPortableDeviceDataStream","features":[61]},{"name":"IPortableDeviceDispatchFactory","features":[61]},{"name":"IPortableDeviceEventCallback","features":[61]},{"name":"IPortableDeviceKeyCollection","features":[61]},{"name":"IPortableDeviceManager","features":[61]},{"name":"IPortableDevicePropVariantCollection","features":[61]},{"name":"IPortableDeviceProperties","features":[61]},{"name":"IPortableDevicePropertiesBulk","features":[61]},{"name":"IPortableDevicePropertiesBulkCallback","features":[61]},{"name":"IPortableDeviceResources","features":[61]},{"name":"IPortableDeviceService","features":[61]},{"name":"IPortableDeviceServiceActivation","features":[61]},{"name":"IPortableDeviceServiceCapabilities","features":[61]},{"name":"IPortableDeviceServiceManager","features":[61]},{"name":"IPortableDeviceServiceMethodCallback","features":[61]},{"name":"IPortableDeviceServiceMethods","features":[61]},{"name":"IPortableDeviceServiceOpenCallback","features":[61]},{"name":"IPortableDeviceUnitsStream","features":[61]},{"name":"IPortableDeviceValues","features":[61]},{"name":"IPortableDeviceValuesCollection","features":[61]},{"name":"IPortableDeviceWebControl","features":[61]},{"name":"IRadioInstance","features":[61]},{"name":"IRadioInstanceCollection","features":[61]},{"name":"IWpdSerializer","features":[61]},{"name":"NAME_3GPP2File","features":[61]},{"name":"NAME_3GPPFile","features":[61]},{"name":"NAME_AACFile","features":[61]},{"name":"NAME_AIFFFile","features":[61]},{"name":"NAME_AMRFile","features":[61]},{"name":"NAME_ASFFile","features":[61]},{"name":"NAME_ASXPlaylist","features":[61]},{"name":"NAME_ATSCTSFile","features":[61]},{"name":"NAME_AVCHDFile","features":[61]},{"name":"NAME_AVIFile","features":[61]},{"name":"NAME_AbstractActivity","features":[61]},{"name":"NAME_AbstractActivityOccurrence","features":[61]},{"name":"NAME_AbstractAudioAlbum","features":[61]},{"name":"NAME_AbstractAudioPlaylist","features":[61]},{"name":"NAME_AbstractAudioVideoAlbum","features":[61]},{"name":"NAME_AbstractChapteredProduction","features":[61]},{"name":"NAME_AbstractContact","features":[61]},{"name":"NAME_AbstractContactGroup","features":[61]},{"name":"NAME_AbstractDocument","features":[61]},{"name":"NAME_AbstractImageAlbum","features":[61]},{"name":"NAME_AbstractMediacast","features":[61]},{"name":"NAME_AbstractMessage","features":[61]},{"name":"NAME_AbstractMessageFolder","features":[61]},{"name":"NAME_AbstractMultimediaAlbum","features":[61]},{"name":"NAME_AbstractNote","features":[61]},{"name":"NAME_AbstractTask","features":[61]},{"name":"NAME_AbstractVideoAlbum","features":[61]},{"name":"NAME_AbstractVideoPlaylist","features":[61]},{"name":"NAME_AnchorResults","features":[61]},{"name":"NAME_AnchorResults_Anchor","features":[61]},{"name":"NAME_AnchorResults_AnchorState","features":[61]},{"name":"NAME_AnchorResults_ResultObjectID","features":[61]},{"name":"NAME_AnchorSyncKnowledge","features":[61]},{"name":"NAME_AnchorSyncSvc","features":[61]},{"name":"NAME_AnchorSyncSvc_BeginSync","features":[61]},{"name":"NAME_AnchorSyncSvc_CurrentAnchor","features":[61]},{"name":"NAME_AnchorSyncSvc_EndSync","features":[61]},{"name":"NAME_AnchorSyncSvc_FilterType","features":[61]},{"name":"NAME_AnchorSyncSvc_GetChangesSinceAnchor","features":[61]},{"name":"NAME_AnchorSyncSvc_KnowledgeObjectID","features":[61]},{"name":"NAME_AnchorSyncSvc_LastSyncProxyID","features":[61]},{"name":"NAME_AnchorSyncSvc_LocalOnlyDelete","features":[61]},{"name":"NAME_AnchorSyncSvc_ProviderVersion","features":[61]},{"name":"NAME_AnchorSyncSvc_ReplicaID","features":[61]},{"name":"NAME_AnchorSyncSvc_SyncFormat","features":[61]},{"name":"NAME_AnchorSyncSvc_VersionProps","features":[61]},{"name":"NAME_Association","features":[61]},{"name":"NAME_AudibleFile","features":[61]},{"name":"NAME_AudioObj_AudioBitDepth","features":[61]},{"name":"NAME_AudioObj_AudioBitRate","features":[61]},{"name":"NAME_AudioObj_AudioBlockAlignment","features":[61]},{"name":"NAME_AudioObj_AudioFormatCode","features":[61]},{"name":"NAME_AudioObj_Channels","features":[61]},{"name":"NAME_AudioObj_Lyrics","features":[61]},{"name":"NAME_BMPImage","features":[61]},{"name":"NAME_CIFFImage","features":[61]},{"name":"NAME_CalendarObj_Accepted","features":[61]},{"name":"NAME_CalendarObj_BeginDateTime","features":[61]},{"name":"NAME_CalendarObj_BusyStatus","features":[61]},{"name":"NAME_CalendarObj_Declined","features":[61]},{"name":"NAME_CalendarObj_EndDateTime","features":[61]},{"name":"NAME_CalendarObj_Location","features":[61]},{"name":"NAME_CalendarObj_PatternDuration","features":[61]},{"name":"NAME_CalendarObj_PatternStartTime","features":[61]},{"name":"NAME_CalendarObj_ReminderOffset","features":[61]},{"name":"NAME_CalendarObj_Tentative","features":[61]},{"name":"NAME_CalendarObj_TimeZone","features":[61]},{"name":"NAME_CalendarSvc","features":[61]},{"name":"NAME_CalendarSvc_SyncWindowEnd","features":[61]},{"name":"NAME_CalendarSvc_SyncWindowStart","features":[61]},{"name":"NAME_ContactObj_AnniversaryDate","features":[61]},{"name":"NAME_ContactObj_Assistant","features":[61]},{"name":"NAME_ContactObj_Birthdate","features":[61]},{"name":"NAME_ContactObj_BusinessAddressCity","features":[61]},{"name":"NAME_ContactObj_BusinessAddressCountry","features":[61]},{"name":"NAME_ContactObj_BusinessAddressFull","features":[61]},{"name":"NAME_ContactObj_BusinessAddressLine2","features":[61]},{"name":"NAME_ContactObj_BusinessAddressPostalCode","features":[61]},{"name":"NAME_ContactObj_BusinessAddressRegion","features":[61]},{"name":"NAME_ContactObj_BusinessAddressStreet","features":[61]},{"name":"NAME_ContactObj_BusinessEmail","features":[61]},{"name":"NAME_ContactObj_BusinessEmail2","features":[61]},{"name":"NAME_ContactObj_BusinessFax","features":[61]},{"name":"NAME_ContactObj_BusinessPhone","features":[61]},{"name":"NAME_ContactObj_BusinessPhone2","features":[61]},{"name":"NAME_ContactObj_BusinessWebAddress","features":[61]},{"name":"NAME_ContactObj_Children","features":[61]},{"name":"NAME_ContactObj_Email","features":[61]},{"name":"NAME_ContactObj_FamilyName","features":[61]},{"name":"NAME_ContactObj_Fax","features":[61]},{"name":"NAME_ContactObj_GivenName","features":[61]},{"name":"NAME_ContactObj_IMAddress","features":[61]},{"name":"NAME_ContactObj_IMAddress2","features":[61]},{"name":"NAME_ContactObj_IMAddress3","features":[61]},{"name":"NAME_ContactObj_MiddleNames","features":[61]},{"name":"NAME_ContactObj_MobilePhone","features":[61]},{"name":"NAME_ContactObj_MobilePhone2","features":[61]},{"name":"NAME_ContactObj_Organization","features":[61]},{"name":"NAME_ContactObj_OtherAddressCity","features":[61]},{"name":"NAME_ContactObj_OtherAddressCountry","features":[61]},{"name":"NAME_ContactObj_OtherAddressFull","features":[61]},{"name":"NAME_ContactObj_OtherAddressLine2","features":[61]},{"name":"NAME_ContactObj_OtherAddressPostalCode","features":[61]},{"name":"NAME_ContactObj_OtherAddressRegion","features":[61]},{"name":"NAME_ContactObj_OtherAddressStreet","features":[61]},{"name":"NAME_ContactObj_OtherEmail","features":[61]},{"name":"NAME_ContactObj_OtherPhone","features":[61]},{"name":"NAME_ContactObj_Pager","features":[61]},{"name":"NAME_ContactObj_PersonalAddressCity","features":[61]},{"name":"NAME_ContactObj_PersonalAddressCountry","features":[61]},{"name":"NAME_ContactObj_PersonalAddressFull","features":[61]},{"name":"NAME_ContactObj_PersonalAddressLine2","features":[61]},{"name":"NAME_ContactObj_PersonalAddressPostalCode","features":[61]},{"name":"NAME_ContactObj_PersonalAddressRegion","features":[61]},{"name":"NAME_ContactObj_PersonalAddressStreet","features":[61]},{"name":"NAME_ContactObj_PersonalEmail","features":[61]},{"name":"NAME_ContactObj_PersonalEmail2","features":[61]},{"name":"NAME_ContactObj_PersonalFax","features":[61]},{"name":"NAME_ContactObj_PersonalPhone","features":[61]},{"name":"NAME_ContactObj_PersonalPhone2","features":[61]},{"name":"NAME_ContactObj_PersonalWebAddress","features":[61]},{"name":"NAME_ContactObj_Phone","features":[61]},{"name":"NAME_ContactObj_PhoneticFamilyName","features":[61]},{"name":"NAME_ContactObj_PhoneticGivenName","features":[61]},{"name":"NAME_ContactObj_PhoneticOrganization","features":[61]},{"name":"NAME_ContactObj_Ringtone","features":[61]},{"name":"NAME_ContactObj_Role","features":[61]},{"name":"NAME_ContactObj_Spouse","features":[61]},{"name":"NAME_ContactObj_Suffix","features":[61]},{"name":"NAME_ContactObj_Title","features":[61]},{"name":"NAME_ContactObj_WebAddress","features":[61]},{"name":"NAME_ContactSvc_SyncWithPhoneOnly","features":[61]},{"name":"NAME_ContactsSvc","features":[61]},{"name":"NAME_DPOFDocument","features":[61]},{"name":"NAME_DVBTSFile","features":[61]},{"name":"NAME_DeviceExecutable","features":[61]},{"name":"NAME_DeviceMetadataCAB","features":[61]},{"name":"NAME_DeviceMetadataObj_ContentID","features":[61]},{"name":"NAME_DeviceMetadataObj_DefaultCAB","features":[61]},{"name":"NAME_DeviceMetadataSvc","features":[61]},{"name":"NAME_DeviceScript","features":[61]},{"name":"NAME_EXIFImage","features":[61]},{"name":"NAME_ExcelDocument","features":[61]},{"name":"NAME_FLACFile","features":[61]},{"name":"NAME_FirmwareFile","features":[61]},{"name":"NAME_FlashPixImage","features":[61]},{"name":"NAME_FullEnumSyncKnowledge","features":[61]},{"name":"NAME_FullEnumSyncSvc","features":[61]},{"name":"NAME_FullEnumSyncSvc_BeginSync","features":[61]},{"name":"NAME_FullEnumSyncSvc_EndSync","features":[61]},{"name":"NAME_FullEnumSyncSvc_FilterType","features":[61]},{"name":"NAME_FullEnumSyncSvc_KnowledgeObjectID","features":[61]},{"name":"NAME_FullEnumSyncSvc_LastSyncProxyID","features":[61]},{"name":"NAME_FullEnumSyncSvc_LocalOnlyDelete","features":[61]},{"name":"NAME_FullEnumSyncSvc_ProviderVersion","features":[61]},{"name":"NAME_FullEnumSyncSvc_ReplicaID","features":[61]},{"name":"NAME_FullEnumSyncSvc_SyncFormat","features":[61]},{"name":"NAME_FullEnumSyncSvc_VersionProps","features":[61]},{"name":"NAME_GIFImage","features":[61]},{"name":"NAME_GenericObj_AllowedFolderContents","features":[61]},{"name":"NAME_GenericObj_AssociationDesc","features":[61]},{"name":"NAME_GenericObj_AssociationType","features":[61]},{"name":"NAME_GenericObj_Copyright","features":[61]},{"name":"NAME_GenericObj_Corrupt","features":[61]},{"name":"NAME_GenericObj_DRMStatus","features":[61]},{"name":"NAME_GenericObj_DateAccessed","features":[61]},{"name":"NAME_GenericObj_DateAdded","features":[61]},{"name":"NAME_GenericObj_DateAuthored","features":[61]},{"name":"NAME_GenericObj_DateCreated","features":[61]},{"name":"NAME_GenericObj_DateModified","features":[61]},{"name":"NAME_GenericObj_DateRevised","features":[61]},{"name":"NAME_GenericObj_Description","features":[61]},{"name":"NAME_GenericObj_Hidden","features":[61]},{"name":"NAME_GenericObj_Keywords","features":[61]},{"name":"NAME_GenericObj_LanguageLocale","features":[61]},{"name":"NAME_GenericObj_Name","features":[61]},{"name":"NAME_GenericObj_NonConsumable","features":[61]},{"name":"NAME_GenericObj_ObjectFileName","features":[61]},{"name":"NAME_GenericObj_ObjectFormat","features":[61]},{"name":"NAME_GenericObj_ObjectID","features":[61]},{"name":"NAME_GenericObj_ObjectSize","features":[61]},{"name":"NAME_GenericObj_ParentID","features":[61]},{"name":"NAME_GenericObj_PersistentUID","features":[61]},{"name":"NAME_GenericObj_PropertyBag","features":[61]},{"name":"NAME_GenericObj_ProtectionStatus","features":[61]},{"name":"NAME_GenericObj_ReferenceParentID","features":[61]},{"name":"NAME_GenericObj_StorageID","features":[61]},{"name":"NAME_GenericObj_SubDescription","features":[61]},{"name":"NAME_GenericObj_SyncID","features":[61]},{"name":"NAME_GenericObj_SystemObject","features":[61]},{"name":"NAME_GenericObj_TimeToLive","features":[61]},{"name":"NAME_HDPhotoImage","features":[61]},{"name":"NAME_HTMLDocument","features":[61]},{"name":"NAME_HintsSvc","features":[61]},{"name":"NAME_ICalendarActivity","features":[61]},{"name":"NAME_ImageObj_Aperature","features":[61]},{"name":"NAME_ImageObj_Exposure","features":[61]},{"name":"NAME_ImageObj_ISOSpeed","features":[61]},{"name":"NAME_ImageObj_ImageBitDepth","features":[61]},{"name":"NAME_ImageObj_IsColorCorrected","features":[61]},{"name":"NAME_ImageObj_IsCropped","features":[61]},{"name":"NAME_JFIFImage","features":[61]},{"name":"NAME_JP2Image","features":[61]},{"name":"NAME_JPEGXRImage","features":[61]},{"name":"NAME_JPXImage","features":[61]},{"name":"NAME_M3UPlaylist","features":[61]},{"name":"NAME_MHTDocument","features":[61]},{"name":"NAME_MP3File","features":[61]},{"name":"NAME_MPEG2File","features":[61]},{"name":"NAME_MPEG4File","features":[61]},{"name":"NAME_MPEGFile","features":[61]},{"name":"NAME_MPLPlaylist","features":[61]},{"name":"NAME_MediaObj_AlbumArtist","features":[61]},{"name":"NAME_MediaObj_AlbumName","features":[61]},{"name":"NAME_MediaObj_Artist","features":[61]},{"name":"NAME_MediaObj_AudioEncodingProfile","features":[61]},{"name":"NAME_MediaObj_BitRateType","features":[61]},{"name":"NAME_MediaObj_BookmarkByte","features":[61]},{"name":"NAME_MediaObj_BookmarkObject","features":[61]},{"name":"NAME_MediaObj_BookmarkTime","features":[61]},{"name":"NAME_MediaObj_BufferSize","features":[61]},{"name":"NAME_MediaObj_Composer","features":[61]},{"name":"NAME_MediaObj_Credits","features":[61]},{"name":"NAME_MediaObj_DateOriginalRelease","features":[61]},{"name":"NAME_MediaObj_Duration","features":[61]},{"name":"NAME_MediaObj_Editor","features":[61]},{"name":"NAME_MediaObj_EffectiveRating","features":[61]},{"name":"NAME_MediaObj_EncodingProfile","features":[61]},{"name":"NAME_MediaObj_EncodingQuality","features":[61]},{"name":"NAME_MediaObj_Genre","features":[61]},{"name":"NAME_MediaObj_GeographicOrigin","features":[61]},{"name":"NAME_MediaObj_Height","features":[61]},{"name":"NAME_MediaObj_MediaType","features":[61]},{"name":"NAME_MediaObj_MediaUID","features":[61]},{"name":"NAME_MediaObj_Mood","features":[61]},{"name":"NAME_MediaObj_Owner","features":[61]},{"name":"NAME_MediaObj_ParentalRating","features":[61]},{"name":"NAME_MediaObj_Producer","features":[61]},{"name":"NAME_MediaObj_SampleRate","features":[61]},{"name":"NAME_MediaObj_SkipCount","features":[61]},{"name":"NAME_MediaObj_SubscriptionContentID","features":[61]},{"name":"NAME_MediaObj_Subtitle","features":[61]},{"name":"NAME_MediaObj_TotalBitRate","features":[61]},{"name":"NAME_MediaObj_Track","features":[61]},{"name":"NAME_MediaObj_URLLink","features":[61]},{"name":"NAME_MediaObj_URLSource","features":[61]},{"name":"NAME_MediaObj_UseCount","features":[61]},{"name":"NAME_MediaObj_UserRating","features":[61]},{"name":"NAME_MediaObj_WebMaster","features":[61]},{"name":"NAME_MediaObj_Width","features":[61]},{"name":"NAME_MessageObj_BCC","features":[61]},{"name":"NAME_MessageObj_Body","features":[61]},{"name":"NAME_MessageObj_CC","features":[61]},{"name":"NAME_MessageObj_Category","features":[61]},{"name":"NAME_MessageObj_PatternDayOfMonth","features":[61]},{"name":"NAME_MessageObj_PatternDayOfWeek","features":[61]},{"name":"NAME_MessageObj_PatternDeleteDates","features":[61]},{"name":"NAME_MessageObj_PatternInstance","features":[61]},{"name":"NAME_MessageObj_PatternMonthOfYear","features":[61]},{"name":"NAME_MessageObj_PatternOriginalDateTime","features":[61]},{"name":"NAME_MessageObj_PatternPeriod","features":[61]},{"name":"NAME_MessageObj_PatternType","features":[61]},{"name":"NAME_MessageObj_PatternValidEndDate","features":[61]},{"name":"NAME_MessageObj_PatternValidStartDate","features":[61]},{"name":"NAME_MessageObj_Priority","features":[61]},{"name":"NAME_MessageObj_Read","features":[61]},{"name":"NAME_MessageObj_ReceivedTime","features":[61]},{"name":"NAME_MessageObj_Sender","features":[61]},{"name":"NAME_MessageObj_Subject","features":[61]},{"name":"NAME_MessageObj_To","features":[61]},{"name":"NAME_MessageSvc","features":[61]},{"name":"NAME_NotesSvc","features":[61]},{"name":"NAME_OGGFile","features":[61]},{"name":"NAME_PCDImage","features":[61]},{"name":"NAME_PICTImage","features":[61]},{"name":"NAME_PNGImage","features":[61]},{"name":"NAME_PSLPlaylist","features":[61]},{"name":"NAME_PowerPointDocument","features":[61]},{"name":"NAME_QCELPFile","features":[61]},{"name":"NAME_RingtonesSvc","features":[61]},{"name":"NAME_RingtonesSvc_DefaultRingtone","features":[61]},{"name":"NAME_Services_ServiceDisplayName","features":[61]},{"name":"NAME_Services_ServiceIcon","features":[61]},{"name":"NAME_Services_ServiceLocale","features":[61]},{"name":"NAME_StatusSvc","features":[61]},{"name":"NAME_StatusSvc_BatteryLife","features":[61]},{"name":"NAME_StatusSvc_ChargingState","features":[61]},{"name":"NAME_StatusSvc_MissedCalls","features":[61]},{"name":"NAME_StatusSvc_NetworkName","features":[61]},{"name":"NAME_StatusSvc_NetworkType","features":[61]},{"name":"NAME_StatusSvc_NewPictures","features":[61]},{"name":"NAME_StatusSvc_Roaming","features":[61]},{"name":"NAME_StatusSvc_SignalStrength","features":[61]},{"name":"NAME_StatusSvc_StorageCapacity","features":[61]},{"name":"NAME_StatusSvc_StorageFreeSpace","features":[61]},{"name":"NAME_StatusSvc_TextMessages","features":[61]},{"name":"NAME_StatusSvc_VoiceMail","features":[61]},{"name":"NAME_SyncObj_LastAuthorProxyID","features":[61]},{"name":"NAME_SyncSvc_BeginSync","features":[61]},{"name":"NAME_SyncSvc_EndSync","features":[61]},{"name":"NAME_SyncSvc_FilterType","features":[61]},{"name":"NAME_SyncSvc_LocalOnlyDelete","features":[61]},{"name":"NAME_SyncSvc_SyncFormat","features":[61]},{"name":"NAME_SyncSvc_SyncObjectReferences","features":[61]},{"name":"NAME_TIFFEPImage","features":[61]},{"name":"NAME_TIFFITImage","features":[61]},{"name":"NAME_TIFFImage","features":[61]},{"name":"NAME_TaskObj_BeginDate","features":[61]},{"name":"NAME_TaskObj_Complete","features":[61]},{"name":"NAME_TaskObj_EndDate","features":[61]},{"name":"NAME_TaskObj_ReminderDateTime","features":[61]},{"name":"NAME_TasksSvc","features":[61]},{"name":"NAME_TasksSvc_SyncActiveOnly","features":[61]},{"name":"NAME_TextDocument","features":[61]},{"name":"NAME_Undefined","features":[61]},{"name":"NAME_UndefinedAudio","features":[61]},{"name":"NAME_UndefinedCollection","features":[61]},{"name":"NAME_UndefinedDocument","features":[61]},{"name":"NAME_UndefinedVideo","features":[61]},{"name":"NAME_UnknownImage","features":[61]},{"name":"NAME_VCalendar1Activity","features":[61]},{"name":"NAME_VCard2Contact","features":[61]},{"name":"NAME_VCard3Contact","features":[61]},{"name":"NAME_VideoObj_KeyFrameDistance","features":[61]},{"name":"NAME_VideoObj_ScanType","features":[61]},{"name":"NAME_VideoObj_Source","features":[61]},{"name":"NAME_VideoObj_VideoBitRate","features":[61]},{"name":"NAME_VideoObj_VideoFormatCode","features":[61]},{"name":"NAME_VideoObj_VideoFrameRate","features":[61]},{"name":"NAME_WAVFile","features":[61]},{"name":"NAME_WBMPImage","features":[61]},{"name":"NAME_WMAFile","features":[61]},{"name":"NAME_WMVFile","features":[61]},{"name":"NAME_WPLPlaylist","features":[61]},{"name":"NAME_WordDocument","features":[61]},{"name":"NAME_XMLDocument","features":[61]},{"name":"PORTABLE_DEVICE_DELETE_NO_RECURSION","features":[61]},{"name":"PORTABLE_DEVICE_DELETE_WITH_RECURSION","features":[61]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_PDDRM","features":[61]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_WMDRM10_PD","features":[61]},{"name":"PORTABLE_DEVICE_ICON","features":[61]},{"name":"PORTABLE_DEVICE_IS_MASS_STORAGE","features":[61]},{"name":"PORTABLE_DEVICE_NAMESPACE_EXCLUDE_FROM_SHELL","features":[61]},{"name":"PORTABLE_DEVICE_NAMESPACE_THUMBNAIL_CONTENT_TYPES","features":[61]},{"name":"PORTABLE_DEVICE_NAMESPACE_TIMEOUT","features":[61]},{"name":"PORTABLE_DEVICE_TYPE","features":[61]},{"name":"PortableDevice","features":[61]},{"name":"PortableDeviceDispatchFactory","features":[61]},{"name":"PortableDeviceFTM","features":[61]},{"name":"PortableDeviceKeyCollection","features":[61]},{"name":"PortableDeviceManager","features":[61]},{"name":"PortableDevicePropVariantCollection","features":[61]},{"name":"PortableDeviceService","features":[61]},{"name":"PortableDeviceServiceFTM","features":[61]},{"name":"PortableDeviceValues","features":[61]},{"name":"PortableDeviceValuesCollection","features":[61]},{"name":"PortableDeviceWebControl","features":[61]},{"name":"RANGEMAX_MessageObj_PatternDayOfMonth","features":[61]},{"name":"RANGEMAX_MessageObj_PatternMonthOfYear","features":[61]},{"name":"RANGEMAX_StatusSvc_BatteryLife","features":[61]},{"name":"RANGEMAX_StatusSvc_MissedCalls","features":[61]},{"name":"RANGEMAX_StatusSvc_NewPictures","features":[61]},{"name":"RANGEMAX_StatusSvc_SignalStrength","features":[61]},{"name":"RANGEMAX_StatusSvc_TextMessages","features":[61]},{"name":"RANGEMAX_StatusSvc_VoiceMail","features":[61]},{"name":"RANGEMIN_MessageObj_PatternDayOfMonth","features":[61]},{"name":"RANGEMIN_MessageObj_PatternMonthOfYear","features":[61]},{"name":"RANGEMIN_StatusSvc_BatteryLife","features":[61]},{"name":"RANGEMIN_StatusSvc_SignalStrength","features":[61]},{"name":"RANGESTEP_MessageObj_PatternDayOfMonth","features":[61]},{"name":"RANGESTEP_MessageObj_PatternMonthOfYear","features":[61]},{"name":"RANGESTEP_StatusSvc_BatteryLife","features":[61]},{"name":"RANGESTEP_StatusSvc_SignalStrength","features":[61]},{"name":"SMS_BINARY_MESSAGE","features":[61]},{"name":"SMS_ENCODING_7_BIT","features":[61]},{"name":"SMS_ENCODING_8_BIT","features":[61]},{"name":"SMS_ENCODING_UTF_16","features":[61]},{"name":"SMS_MESSAGE_TYPES","features":[61]},{"name":"SMS_TEXT_MESSAGE","features":[61]},{"name":"SRS_RADIO_DISABLED","features":[61]},{"name":"SRS_RADIO_ENABLED","features":[61]},{"name":"STR_WPDNSE_FAST_ENUM","features":[61]},{"name":"STR_WPDNSE_SIMPLE_ITEM","features":[61]},{"name":"SYNCSVC_FILTER_CALENDAR_WINDOW_WITH_RECURRENCE","features":[61]},{"name":"SYNCSVC_FILTER_CONTACTS_WITH_PHONE","features":[61]},{"name":"SYNCSVC_FILTER_NONE","features":[61]},{"name":"SYNCSVC_FILTER_TASK_ACTIVE","features":[61]},{"name":"SYSTEM_RADIO_STATE","features":[61]},{"name":"TYPE_AnchorSyncSvc","features":[61]},{"name":"TYPE_CalendarSvc","features":[61]},{"name":"TYPE_ContactsSvc","features":[61]},{"name":"TYPE_DeviceMetadataSvc","features":[61]},{"name":"TYPE_FullEnumSyncSvc","features":[61]},{"name":"TYPE_HintsSvc","features":[61]},{"name":"TYPE_MessageSvc","features":[61]},{"name":"TYPE_NotesSvc","features":[61]},{"name":"TYPE_RingtonesSvc","features":[61]},{"name":"TYPE_StatusSvc","features":[61]},{"name":"TYPE_TasksSvc","features":[61]},{"name":"WPDNSE_OBJECT_HAS_ALBUM_ART","features":[61,62]},{"name":"WPDNSE_OBJECT_HAS_AUDIO_CLIP","features":[61,62]},{"name":"WPDNSE_OBJECT_HAS_CONTACT_PHOTO","features":[61,62]},{"name":"WPDNSE_OBJECT_HAS_ICON","features":[61,62]},{"name":"WPDNSE_OBJECT_HAS_THUMBNAIL","features":[61,62]},{"name":"WPDNSE_OBJECT_OPTIMAL_READ_BLOCK_SIZE","features":[61,62]},{"name":"WPDNSE_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPDNSE_PROPSHEET_CONTENT_DETAILS","features":[61]},{"name":"WPDNSE_PROPSHEET_CONTENT_GENERAL","features":[61]},{"name":"WPDNSE_PROPSHEET_CONTENT_REFERENCES","features":[61]},{"name":"WPDNSE_PROPSHEET_CONTENT_RESOURCES","features":[61]},{"name":"WPDNSE_PROPSHEET_DEVICE_GENERAL","features":[61]},{"name":"WPDNSE_PROPSHEET_STORAGE_GENERAL","features":[61]},{"name":"WPD_API_OPTIONS_V1","features":[61]},{"name":"WPD_API_OPTION_IOCTL_ACCESS","features":[61,62]},{"name":"WPD_API_OPTION_USE_CLEAR_DATA_STREAM","features":[61,62]},{"name":"WPD_APPOINTMENT_ACCEPTED_ATTENDEES","features":[61,62]},{"name":"WPD_APPOINTMENT_DECLINED_ATTENDEES","features":[61,62]},{"name":"WPD_APPOINTMENT_LOCATION","features":[61,62]},{"name":"WPD_APPOINTMENT_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_APPOINTMENT_OPTIONAL_ATTENDEES","features":[61,62]},{"name":"WPD_APPOINTMENT_REQUIRED_ATTENDEES","features":[61,62]},{"name":"WPD_APPOINTMENT_RESOURCES","features":[61,62]},{"name":"WPD_APPOINTMENT_TENTATIVE_ATTENDEES","features":[61,62]},{"name":"WPD_APPOINTMENT_TYPE","features":[61,62]},{"name":"WPD_AUDIO_BITRATE","features":[61,62]},{"name":"WPD_AUDIO_BIT_DEPTH","features":[61,62]},{"name":"WPD_AUDIO_BLOCK_ALIGNMENT","features":[61,62]},{"name":"WPD_AUDIO_CHANNEL_COUNT","features":[61,62]},{"name":"WPD_AUDIO_FORMAT_CODE","features":[61,62]},{"name":"WPD_BITRATE_TYPES","features":[61]},{"name":"WPD_BITRATE_TYPE_DISCRETE","features":[61]},{"name":"WPD_BITRATE_TYPE_FREE","features":[61]},{"name":"WPD_BITRATE_TYPE_UNUSED","features":[61]},{"name":"WPD_BITRATE_TYPE_VARIABLE","features":[61]},{"name":"WPD_CAPTURE_MODES","features":[61]},{"name":"WPD_CAPTURE_MODE_BURST","features":[61]},{"name":"WPD_CAPTURE_MODE_NORMAL","features":[61]},{"name":"WPD_CAPTURE_MODE_TIMELAPSE","features":[61]},{"name":"WPD_CAPTURE_MODE_UNDEFINED","features":[61]},{"name":"WPD_CATEGORY_CAPABILITIES","features":[61]},{"name":"WPD_CATEGORY_COMMON","features":[61]},{"name":"WPD_CATEGORY_DEVICE_HINTS","features":[61]},{"name":"WPD_CATEGORY_MEDIA_CAPTURE","features":[61]},{"name":"WPD_CATEGORY_MTP_EXT_VENDOR_OPERATIONS","features":[61]},{"name":"WPD_CATEGORY_NETWORK_CONFIGURATION","features":[61]},{"name":"WPD_CATEGORY_NULL","features":[61]},{"name":"WPD_CATEGORY_OBJECT_ENUMERATION","features":[61]},{"name":"WPD_CATEGORY_OBJECT_MANAGEMENT","features":[61]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES","features":[61]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES_BULK","features":[61]},{"name":"WPD_CATEGORY_OBJECT_RESOURCES","features":[61]},{"name":"WPD_CATEGORY_SERVICE_CAPABILITIES","features":[61]},{"name":"WPD_CATEGORY_SERVICE_COMMON","features":[61]},{"name":"WPD_CATEGORY_SERVICE_METHODS","features":[61]},{"name":"WPD_CATEGORY_SMS","features":[61]},{"name":"WPD_CATEGORY_STILL_IMAGE_CAPTURE","features":[61]},{"name":"WPD_CATEGORY_STORAGE","features":[61]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DEVICE_IDENTIFICATION_VALUES","features":[61,62]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DONT_REGISTER_WPD_DEVICE_INTERFACE","features":[61,62]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_MULTITRANSPORT_MODE","features":[61,62]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_REGISTER_WPD_PRIVATE_DEVICE_INTERFACE","features":[61,62]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SILENCE_AUTOPLAY","features":[61,62]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SUPPORTED_CONTENT_TYPES","features":[61,62]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_TRANSPORT_BANDWIDTH","features":[61,62]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V1","features":[61]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V2","features":[61]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V3","features":[61]},{"name":"WPD_CLASS_EXTENSION_V1","features":[61]},{"name":"WPD_CLASS_EXTENSION_V2","features":[61]},{"name":"WPD_CLIENT_DESIRED_ACCESS","features":[61,62]},{"name":"WPD_CLIENT_EVENT_COOKIE","features":[61,62]},{"name":"WPD_CLIENT_INFORMATION_PROPERTIES_V1","features":[61]},{"name":"WPD_CLIENT_MAJOR_VERSION","features":[61,62]},{"name":"WPD_CLIENT_MANUAL_CLOSE_ON_DISCONNECT","features":[61,62]},{"name":"WPD_CLIENT_MINIMUM_RESULTS_BUFFER_SIZE","features":[61,62]},{"name":"WPD_CLIENT_MINOR_VERSION","features":[61,62]},{"name":"WPD_CLIENT_NAME","features":[61,62]},{"name":"WPD_CLIENT_REVISION","features":[61,62]},{"name":"WPD_CLIENT_SECURITY_QUALITY_OF_SERVICE","features":[61,62]},{"name":"WPD_CLIENT_SHARE_MODE","features":[61,62]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_CERTIFICATE","features":[61,62]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_PRIVATE_KEY","features":[61,62]},{"name":"WPD_COLOR_CORRECTED_STATUS_CORRECTED","features":[61]},{"name":"WPD_COLOR_CORRECTED_STATUS_NOT_CORRECTED","features":[61]},{"name":"WPD_COLOR_CORRECTED_STATUS_SHOULD_NOT_BE_CORRECTED","features":[61]},{"name":"WPD_COLOR_CORRECTED_STATUS_VALUES","features":[61]},{"name":"WPD_COMMAND_ACCESS_FROM_ATTRIBUTE_WITH_METHOD_ACCESS","features":[61]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_FILE_ACCESS","features":[61]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_STGM_ACCESS","features":[61]},{"name":"WPD_COMMAND_ACCESS_LOOKUP_ENTRY","features":[61,62]},{"name":"WPD_COMMAND_ACCESS_READ","features":[61]},{"name":"WPD_COMMAND_ACCESS_READWRITE","features":[61]},{"name":"WPD_COMMAND_ACCESS_TYPES","features":[61]},{"name":"WPD_COMMAND_CAPABILITIES_GET_COMMAND_OPTIONS","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_EVENT_OPTIONS","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FIXED_PROPERTY_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FUNCTIONAL_OBJECTS","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_CONTENT_TYPES","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[61,62]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FUNCTIONAL_CATEGORIES","features":[61,62]},{"name":"WPD_COMMAND_CLASS_EXTENSION_REGISTER_SERVICE_INTERFACES","features":[61,62]},{"name":"WPD_COMMAND_CLASS_EXTENSION_UNREGISTER_SERVICE_INTERFACES","features":[61,62]},{"name":"WPD_COMMAND_CLASS_EXTENSION_WRITE_DEVICE_INFORMATION","features":[61,62]},{"name":"WPD_COMMAND_COMMIT_KEYPAIR","features":[61,62]},{"name":"WPD_COMMAND_COMMON_GET_OBJECT_IDS_FROM_PERSISTENT_UNIQUE_IDS","features":[61,62]},{"name":"WPD_COMMAND_COMMON_RESET_DEVICE","features":[61,62]},{"name":"WPD_COMMAND_COMMON_SAVE_CLIENT_INFORMATION","features":[61,62]},{"name":"WPD_COMMAND_DEVICE_HINTS_GET_CONTENT_LOCATION","features":[61,62]},{"name":"WPD_COMMAND_GENERATE_KEYPAIR","features":[61,62]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_PAUSE","features":[61,62]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_START","features":[61,62]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_STOP","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_END_DATA_TRANSFER","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITHOUT_DATA_PHASE","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_READ","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_WRITE","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_GET_SUPPORTED_VENDOR_OPCODES","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_GET_VENDOR_EXTENSION_DESCRIPTION","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_READ_DATA","features":[61,62]},{"name":"WPD_COMMAND_MTP_EXT_WRITE_DATA","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_END_FIND","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_FIND_NEXT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_START_FIND","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COMMIT_OBJECT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COPY_OBJECTS","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_ONLY","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_DELETE_OBJECTS","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_MOVE_OBJECTS","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_REVERT_OBJECT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_UPDATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_WRITE_OBJECT_DATA","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_END","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_NEXT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_START","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_END","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_NEXT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_START","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_END","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_NEXT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_START","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_DELETE","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ALL","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_SUPPORTED","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_SET","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CLOSE","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_COMMIT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CREATE_RESOURCE","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_DELETE","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_SUPPORTED","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_OPEN","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_READ","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_REVERT","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK_IN_UNITS","features":[61,62]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_WRITE","features":[61,62]},{"name":"WPD_COMMAND_PROCESS_WIRELESS_PROFILE","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_COMMAND_OPTIONS","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_PARAMETER_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_PROPERTY_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_RENDERING_PROFILES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_INHERITED_SERVICES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_PARAMETER_ATTRIBUTES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS_BY_FORMAT","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_COMMON_GET_SERVICE_OBJECT_ID","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_METHODS_CANCEL_INVOKE","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_METHODS_END_INVOKE","features":[61,62]},{"name":"WPD_COMMAND_SERVICE_METHODS_START_INVOKE","features":[61,62]},{"name":"WPD_COMMAND_SMS_SEND","features":[61,62]},{"name":"WPD_COMMAND_STILL_IMAGE_CAPTURE_INITIATE","features":[61,62]},{"name":"WPD_COMMAND_STORAGE_EJECT","features":[61,62]},{"name":"WPD_COMMAND_STORAGE_FORMAT","features":[61,62]},{"name":"WPD_COMMON_INFORMATION_BODY_TEXT","features":[61,62]},{"name":"WPD_COMMON_INFORMATION_END_DATETIME","features":[61,62]},{"name":"WPD_COMMON_INFORMATION_NOTES","features":[61,62]},{"name":"WPD_COMMON_INFORMATION_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_COMMON_INFORMATION_PRIORITY","features":[61,62]},{"name":"WPD_COMMON_INFORMATION_START_DATETIME","features":[61,62]},{"name":"WPD_COMMON_INFORMATION_SUBJECT","features":[61,62]},{"name":"WPD_CONTACT_ANNIVERSARY_DATE","features":[61,62]},{"name":"WPD_CONTACT_ASSISTANT","features":[61,62]},{"name":"WPD_CONTACT_BIRTHDATE","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_EMAIL","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_EMAIL2","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_FAX","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_FULL_POSTAL_ADDRESS","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_PHONE","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_PHONE2","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_CITY","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_COUNTRY","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE1","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE2","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_POSTAL_CODE","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_REGION","features":[61,62]},{"name":"WPD_CONTACT_BUSINESS_WEB_ADDRESS","features":[61,62]},{"name":"WPD_CONTACT_CHILDREN","features":[61,62]},{"name":"WPD_CONTACT_COMPANY_NAME","features":[61,62]},{"name":"WPD_CONTACT_DISPLAY_NAME","features":[61,62]},{"name":"WPD_CONTACT_FIRST_NAME","features":[61,62]},{"name":"WPD_CONTACT_INSTANT_MESSENGER","features":[61,62]},{"name":"WPD_CONTACT_INSTANT_MESSENGER2","features":[61,62]},{"name":"WPD_CONTACT_INSTANT_MESSENGER3","features":[61,62]},{"name":"WPD_CONTACT_LAST_NAME","features":[61,62]},{"name":"WPD_CONTACT_MIDDLE_NAMES","features":[61,62]},{"name":"WPD_CONTACT_MOBILE_PHONE","features":[61,62]},{"name":"WPD_CONTACT_MOBILE_PHONE2","features":[61,62]},{"name":"WPD_CONTACT_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_CONTACT_OTHER_EMAILS","features":[61,62]},{"name":"WPD_CONTACT_OTHER_FULL_POSTAL_ADDRESS","features":[61,62]},{"name":"WPD_CONTACT_OTHER_PHONES","features":[61,62]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_CITY","features":[61,62]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE1","features":[61,62]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE2","features":[61,62]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_CODE","features":[61,62]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_COUNTRY","features":[61,62]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_REGION","features":[61,62]},{"name":"WPD_CONTACT_PAGER","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_EMAIL","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_EMAIL2","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_FAX","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_FULL_POSTAL_ADDRESS","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_PHONE","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_PHONE2","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_CITY","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_COUNTRY","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE1","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE2","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_POSTAL_CODE","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_REGION","features":[61,62]},{"name":"WPD_CONTACT_PERSONAL_WEB_ADDRESS","features":[61,62]},{"name":"WPD_CONTACT_PHONETIC_COMPANY_NAME","features":[61,62]},{"name":"WPD_CONTACT_PHONETIC_FIRST_NAME","features":[61,62]},{"name":"WPD_CONTACT_PHONETIC_LAST_NAME","features":[61,62]},{"name":"WPD_CONTACT_PREFIX","features":[61,62]},{"name":"WPD_CONTACT_PRIMARY_EMAIL_ADDRESS","features":[61,62]},{"name":"WPD_CONTACT_PRIMARY_FAX","features":[61,62]},{"name":"WPD_CONTACT_PRIMARY_PHONE","features":[61,62]},{"name":"WPD_CONTACT_PRIMARY_WEB_ADDRESS","features":[61,62]},{"name":"WPD_CONTACT_RINGTONE","features":[61,62]},{"name":"WPD_CONTACT_ROLE","features":[61,62]},{"name":"WPD_CONTACT_SPOUSE","features":[61,62]},{"name":"WPD_CONTACT_SUFFIX","features":[61,62]},{"name":"WPD_CONTENT_TYPE_ALL","features":[61]},{"name":"WPD_CONTENT_TYPE_APPOINTMENT","features":[61]},{"name":"WPD_CONTENT_TYPE_AUDIO","features":[61]},{"name":"WPD_CONTENT_TYPE_AUDIO_ALBUM","features":[61]},{"name":"WPD_CONTENT_TYPE_CALENDAR","features":[61]},{"name":"WPD_CONTENT_TYPE_CERTIFICATE","features":[61]},{"name":"WPD_CONTENT_TYPE_CONTACT","features":[61]},{"name":"WPD_CONTENT_TYPE_CONTACT_GROUP","features":[61]},{"name":"WPD_CONTENT_TYPE_DOCUMENT","features":[61]},{"name":"WPD_CONTENT_TYPE_EMAIL","features":[61]},{"name":"WPD_CONTENT_TYPE_FOLDER","features":[61]},{"name":"WPD_CONTENT_TYPE_FUNCTIONAL_OBJECT","features":[61]},{"name":"WPD_CONTENT_TYPE_GENERIC_FILE","features":[61]},{"name":"WPD_CONTENT_TYPE_GENERIC_MESSAGE","features":[61]},{"name":"WPD_CONTENT_TYPE_IMAGE","features":[61]},{"name":"WPD_CONTENT_TYPE_IMAGE_ALBUM","features":[61]},{"name":"WPD_CONTENT_TYPE_MEDIA_CAST","features":[61]},{"name":"WPD_CONTENT_TYPE_MEMO","features":[61]},{"name":"WPD_CONTENT_TYPE_MIXED_CONTENT_ALBUM","features":[61]},{"name":"WPD_CONTENT_TYPE_NETWORK_ASSOCIATION","features":[61]},{"name":"WPD_CONTENT_TYPE_PLAYLIST","features":[61]},{"name":"WPD_CONTENT_TYPE_PROGRAM","features":[61]},{"name":"WPD_CONTENT_TYPE_SECTION","features":[61]},{"name":"WPD_CONTENT_TYPE_TASK","features":[61]},{"name":"WPD_CONTENT_TYPE_TELEVISION","features":[61]},{"name":"WPD_CONTENT_TYPE_UNSPECIFIED","features":[61]},{"name":"WPD_CONTENT_TYPE_VIDEO","features":[61]},{"name":"WPD_CONTENT_TYPE_VIDEO_ALBUM","features":[61]},{"name":"WPD_CONTENT_TYPE_WIRELESS_PROFILE","features":[61]},{"name":"WPD_CONTROL_FUNCTION_GENERIC_MESSAGE","features":[61]},{"name":"WPD_CROPPED_STATUS_CROPPED","features":[61]},{"name":"WPD_CROPPED_STATUS_NOT_CROPPED","features":[61]},{"name":"WPD_CROPPED_STATUS_SHOULD_NOT_BE_CROPPED","features":[61]},{"name":"WPD_CROPPED_STATUS_VALUES","features":[61]},{"name":"WPD_DEVICE_DATETIME","features":[61,62]},{"name":"WPD_DEVICE_EDP_IDENTITY","features":[61,62]},{"name":"WPD_DEVICE_FIRMWARE_VERSION","features":[61,62]},{"name":"WPD_DEVICE_FRIENDLY_NAME","features":[61,62]},{"name":"WPD_DEVICE_FUNCTIONAL_UNIQUE_ID","features":[61,62]},{"name":"WPD_DEVICE_MANUFACTURER","features":[61,62]},{"name":"WPD_DEVICE_MODEL","features":[61,62]},{"name":"WPD_DEVICE_MODEL_UNIQUE_ID","features":[61,62]},{"name":"WPD_DEVICE_NETWORK_IDENTIFIER","features":[61,62]},{"name":"WPD_DEVICE_OBJECT_ID","features":[61]},{"name":"WPD_DEVICE_POWER_LEVEL","features":[61,62]},{"name":"WPD_DEVICE_POWER_SOURCE","features":[61,62]},{"name":"WPD_DEVICE_PROPERTIES_V1","features":[61]},{"name":"WPD_DEVICE_PROPERTIES_V2","features":[61]},{"name":"WPD_DEVICE_PROPERTIES_V3","features":[61]},{"name":"WPD_DEVICE_PROTOCOL","features":[61,62]},{"name":"WPD_DEVICE_SERIAL_NUMBER","features":[61,62]},{"name":"WPD_DEVICE_SUPPORTED_DRM_SCHEMES","features":[61,62]},{"name":"WPD_DEVICE_SUPPORTED_FORMATS_ARE_ORDERED","features":[61,62]},{"name":"WPD_DEVICE_SUPPORTS_NON_CONSUMABLE","features":[61,62]},{"name":"WPD_DEVICE_SYNC_PARTNER","features":[61,62]},{"name":"WPD_DEVICE_TRANSPORT","features":[61,62]},{"name":"WPD_DEVICE_TRANSPORTS","features":[61]},{"name":"WPD_DEVICE_TRANSPORT_BLUETOOTH","features":[61]},{"name":"WPD_DEVICE_TRANSPORT_IP","features":[61]},{"name":"WPD_DEVICE_TRANSPORT_UNSPECIFIED","features":[61]},{"name":"WPD_DEVICE_TRANSPORT_USB","features":[61]},{"name":"WPD_DEVICE_TYPE","features":[61,62]},{"name":"WPD_DEVICE_TYPES","features":[61]},{"name":"WPD_DEVICE_TYPE_AUDIO_RECORDER","features":[61]},{"name":"WPD_DEVICE_TYPE_CAMERA","features":[61]},{"name":"WPD_DEVICE_TYPE_GENERIC","features":[61]},{"name":"WPD_DEVICE_TYPE_MEDIA_PLAYER","features":[61]},{"name":"WPD_DEVICE_TYPE_PERSONAL_INFORMATION_MANAGER","features":[61]},{"name":"WPD_DEVICE_TYPE_PHONE","features":[61]},{"name":"WPD_DEVICE_TYPE_VIDEO","features":[61]},{"name":"WPD_DEVICE_USE_DEVICE_STAGE","features":[61,62]},{"name":"WPD_DOCUMENT_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_EFFECT_MODES","features":[61]},{"name":"WPD_EFFECT_MODE_BLACK_AND_WHITE","features":[61]},{"name":"WPD_EFFECT_MODE_COLOR","features":[61]},{"name":"WPD_EFFECT_MODE_SEPIA","features":[61]},{"name":"WPD_EFFECT_MODE_UNDEFINED","features":[61]},{"name":"WPD_EMAIL_BCC_LINE","features":[61,62]},{"name":"WPD_EMAIL_CC_LINE","features":[61,62]},{"name":"WPD_EMAIL_HAS_ATTACHMENTS","features":[61,62]},{"name":"WPD_EMAIL_HAS_BEEN_READ","features":[61,62]},{"name":"WPD_EMAIL_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_EMAIL_RECEIVED_TIME","features":[61,62]},{"name":"WPD_EMAIL_SENDER_ADDRESS","features":[61,62]},{"name":"WPD_EMAIL_TO_LINE","features":[61,62]},{"name":"WPD_EVENT_ATTRIBUTES_V1","features":[61]},{"name":"WPD_EVENT_ATTRIBUTE_NAME","features":[61,62]},{"name":"WPD_EVENT_ATTRIBUTE_OPTIONS","features":[61,62]},{"name":"WPD_EVENT_ATTRIBUTE_PARAMETERS","features":[61,62]},{"name":"WPD_EVENT_DEVICE_CAPABILITIES_UPDATED","features":[61]},{"name":"WPD_EVENT_DEVICE_REMOVED","features":[61]},{"name":"WPD_EVENT_DEVICE_RESET","features":[61]},{"name":"WPD_EVENT_MTP_VENDOR_EXTENDED_EVENTS","features":[61]},{"name":"WPD_EVENT_NOTIFICATION","features":[61]},{"name":"WPD_EVENT_OBJECT_ADDED","features":[61]},{"name":"WPD_EVENT_OBJECT_REMOVED","features":[61]},{"name":"WPD_EVENT_OBJECT_TRANSFER_REQUESTED","features":[61]},{"name":"WPD_EVENT_OBJECT_UPDATED","features":[61]},{"name":"WPD_EVENT_OPTIONS_V1","features":[61]},{"name":"WPD_EVENT_OPTION_IS_AUTOPLAY_EVENT","features":[61,62]},{"name":"WPD_EVENT_OPTION_IS_BROADCAST_EVENT","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_CHILD_HIERARCHY_CHANGED","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_EVENT_ID","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_OBJECT_CREATION_COOKIE","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_OBJECT_PARENT_PERSISTENT_UNIQUE_ID","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_OPERATION_PROGRESS","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_OPERATION_STATE","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_PNP_DEVICE_ID","features":[61,62]},{"name":"WPD_EVENT_PARAMETER_SERVICE_METHOD_CONTEXT","features":[61,62]},{"name":"WPD_EVENT_PROPERTIES_V1","features":[61]},{"name":"WPD_EVENT_PROPERTIES_V2","features":[61]},{"name":"WPD_EVENT_SERVICE_METHOD_COMPLETE","features":[61]},{"name":"WPD_EVENT_STORAGE_FORMAT","features":[61]},{"name":"WPD_EXPOSURE_METERING_MODES","features":[61]},{"name":"WPD_EXPOSURE_METERING_MODE_AVERAGE","features":[61]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_SPOT","features":[61]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_WEIGHTED_AVERAGE","features":[61]},{"name":"WPD_EXPOSURE_METERING_MODE_MULTI_SPOT","features":[61]},{"name":"WPD_EXPOSURE_METERING_MODE_UNDEFINED","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODES","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_ACTION","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_APERTURE_PRIORITY","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_AUTO","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_CREATIVE","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_MANUAL","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_PORTRAIT","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_SHUTTER_PRIORITY","features":[61]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_UNDEFINED","features":[61]},{"name":"WPD_FLASH_MODES","features":[61]},{"name":"WPD_FLASH_MODE_AUTO","features":[61]},{"name":"WPD_FLASH_MODE_EXTERNAL_SYNC","features":[61]},{"name":"WPD_FLASH_MODE_FILL","features":[61]},{"name":"WPD_FLASH_MODE_OFF","features":[61]},{"name":"WPD_FLASH_MODE_RED_EYE_AUTO","features":[61]},{"name":"WPD_FLASH_MODE_RED_EYE_FILL","features":[61]},{"name":"WPD_FLASH_MODE_UNDEFINED","features":[61]},{"name":"WPD_FOCUS_AUTOMATIC","features":[61]},{"name":"WPD_FOCUS_AUTOMATIC_MACRO","features":[61]},{"name":"WPD_FOCUS_MANUAL","features":[61]},{"name":"WPD_FOCUS_METERING_MODES","features":[61]},{"name":"WPD_FOCUS_METERING_MODE_CENTER_SPOT","features":[61]},{"name":"WPD_FOCUS_METERING_MODE_MULTI_SPOT","features":[61]},{"name":"WPD_FOCUS_METERING_MODE_UNDEFINED","features":[61]},{"name":"WPD_FOCUS_MODES","features":[61]},{"name":"WPD_FOCUS_UNDEFINED","features":[61]},{"name":"WPD_FOLDER_CONTENT_TYPES_ALLOWED","features":[61,62]},{"name":"WPD_FOLDER_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_FORMAT_ATTRIBUTES_V1","features":[61]},{"name":"WPD_FORMAT_ATTRIBUTE_MIMETYPE","features":[61,62]},{"name":"WPD_FORMAT_ATTRIBUTE_NAME","features":[61,62]},{"name":"WPD_FUNCTIONAL_CATEGORY_ALL","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_AUDIO_CAPTURE","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_DEVICE","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_NETWORK_CONFIGURATION","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_RENDERING_INFORMATION","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_SMS","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_STILL_IMAGE_CAPTURE","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_STORAGE","features":[61]},{"name":"WPD_FUNCTIONAL_CATEGORY_VIDEO_CAPTURE","features":[61]},{"name":"WPD_FUNCTIONAL_OBJECT_CATEGORY","features":[61,62]},{"name":"WPD_FUNCTIONAL_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_IMAGE_BITDEPTH","features":[61,62]},{"name":"WPD_IMAGE_COLOR_CORRECTED_STATUS","features":[61,62]},{"name":"WPD_IMAGE_CROPPED_STATUS","features":[61,62]},{"name":"WPD_IMAGE_EXPOSURE_INDEX","features":[61,62]},{"name":"WPD_IMAGE_EXPOSURE_TIME","features":[61,62]},{"name":"WPD_IMAGE_FNUMBER","features":[61,62]},{"name":"WPD_IMAGE_HORIZONTAL_RESOLUTION","features":[61,62]},{"name":"WPD_IMAGE_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_IMAGE_VERTICAL_RESOLUTION","features":[61,62]},{"name":"WPD_MEDIA_ALBUM_ARTIST","features":[61,62]},{"name":"WPD_MEDIA_ARTIST","features":[61,62]},{"name":"WPD_MEDIA_AUDIO_ENCODING_PROFILE","features":[61,62]},{"name":"WPD_MEDIA_BITRATE_TYPE","features":[61,62]},{"name":"WPD_MEDIA_BUY_NOW","features":[61,62]},{"name":"WPD_MEDIA_BYTE_BOOKMARK","features":[61,62]},{"name":"WPD_MEDIA_COMPOSER","features":[61,62]},{"name":"WPD_MEDIA_COPYRIGHT","features":[61,62]},{"name":"WPD_MEDIA_DESCRIPTION","features":[61,62]},{"name":"WPD_MEDIA_DESTINATION_URL","features":[61,62]},{"name":"WPD_MEDIA_DURATION","features":[61,62]},{"name":"WPD_MEDIA_EFFECTIVE_RATING","features":[61,62]},{"name":"WPD_MEDIA_ENCODING_PROFILE","features":[61,62]},{"name":"WPD_MEDIA_GENRE","features":[61,62]},{"name":"WPD_MEDIA_GUID","features":[61,62]},{"name":"WPD_MEDIA_HEIGHT","features":[61,62]},{"name":"WPD_MEDIA_LAST_ACCESSED_TIME","features":[61,62]},{"name":"WPD_MEDIA_LAST_BUILD_DATE","features":[61,62]},{"name":"WPD_MEDIA_MANAGING_EDITOR","features":[61,62]},{"name":"WPD_MEDIA_META_GENRE","features":[61,62]},{"name":"WPD_MEDIA_OBJECT_BOOKMARK","features":[61,62]},{"name":"WPD_MEDIA_OWNER","features":[61,62]},{"name":"WPD_MEDIA_PARENTAL_RATING","features":[61,62]},{"name":"WPD_MEDIA_PROPERTIES_V1","features":[61]},{"name":"WPD_MEDIA_RELEASE_DATE","features":[61,62]},{"name":"WPD_MEDIA_SAMPLE_RATE","features":[61,62]},{"name":"WPD_MEDIA_SKIP_COUNT","features":[61,62]},{"name":"WPD_MEDIA_SOURCE_URL","features":[61,62]},{"name":"WPD_MEDIA_STAR_RATING","features":[61,62]},{"name":"WPD_MEDIA_SUBSCRIPTION_CONTENT_ID","features":[61,62]},{"name":"WPD_MEDIA_SUB_DESCRIPTION","features":[61,62]},{"name":"WPD_MEDIA_SUB_TITLE","features":[61,62]},{"name":"WPD_MEDIA_TIME_BOOKMARK","features":[61,62]},{"name":"WPD_MEDIA_TIME_TO_LIVE","features":[61,62]},{"name":"WPD_MEDIA_TITLE","features":[61,62]},{"name":"WPD_MEDIA_TOTAL_BITRATE","features":[61,62]},{"name":"WPD_MEDIA_USER_EFFECTIVE_RATING","features":[61,62]},{"name":"WPD_MEDIA_USE_COUNT","features":[61,62]},{"name":"WPD_MEDIA_WEBMASTER","features":[61,62]},{"name":"WPD_MEDIA_WIDTH","features":[61,62]},{"name":"WPD_MEMO_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_META_GENRES","features":[61]},{"name":"WPD_META_GENRE_AUDIO_PODCAST","features":[61]},{"name":"WPD_META_GENRE_FEATURE_FILM_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_GENERIC_MUSIC_AUDIO_FILE","features":[61]},{"name":"WPD_META_GENRE_GENERIC_NON_AUDIO_NON_VIDEO","features":[61]},{"name":"WPD_META_GENRE_GENERIC_NON_MUSIC_AUDIO_FILE","features":[61]},{"name":"WPD_META_GENRE_GENERIC_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_HOME_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_MIXED_PODCAST","features":[61]},{"name":"WPD_META_GENRE_MUSIC_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_NEWS_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_PHOTO_MONTAGE_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_SPOKEN_WORD_AUDIO_BOOK_FILES","features":[61]},{"name":"WPD_META_GENRE_SPOKEN_WORD_FILES_NON_AUDIO_BOOK","features":[61]},{"name":"WPD_META_GENRE_SPOKEN_WORD_NEWS","features":[61]},{"name":"WPD_META_GENRE_SPOKEN_WORD_TALK_SHOWS","features":[61]},{"name":"WPD_META_GENRE_TELEVISION_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_TRAINING_EDUCATIONAL_VIDEO_FILE","features":[61]},{"name":"WPD_META_GENRE_UNUSED","features":[61]},{"name":"WPD_META_GENRE_VIDEO_PODCAST","features":[61]},{"name":"WPD_METHOD_ATTRIBUTES_V1","features":[61]},{"name":"WPD_METHOD_ATTRIBUTE_ACCESS","features":[61,62]},{"name":"WPD_METHOD_ATTRIBUTE_ASSOCIATED_FORMAT","features":[61,62]},{"name":"WPD_METHOD_ATTRIBUTE_NAME","features":[61,62]},{"name":"WPD_METHOD_ATTRIBUTE_PARAMETERS","features":[61,62]},{"name":"WPD_MUSIC_ALBUM","features":[61,62]},{"name":"WPD_MUSIC_LYRICS","features":[61,62]},{"name":"WPD_MUSIC_MOOD","features":[61,62]},{"name":"WPD_MUSIC_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_MUSIC_TRACK","features":[61,62]},{"name":"WPD_NETWORK_ASSOCIATION_HOST_NETWORK_IDENTIFIERS","features":[61,62]},{"name":"WPD_NETWORK_ASSOCIATION_PROPERTIES_V1","features":[61]},{"name":"WPD_NETWORK_ASSOCIATION_X509V3SEQUENCE","features":[61,62]},{"name":"WPD_OBJECT_BACK_REFERENCES","features":[61,62]},{"name":"WPD_OBJECT_CAN_DELETE","features":[61,62]},{"name":"WPD_OBJECT_CONTAINER_FUNCTIONAL_OBJECT_ID","features":[61,62]},{"name":"WPD_OBJECT_CONTENT_TYPE","features":[61,62]},{"name":"WPD_OBJECT_DATE_AUTHORED","features":[61,62]},{"name":"WPD_OBJECT_DATE_CREATED","features":[61,62]},{"name":"WPD_OBJECT_DATE_MODIFIED","features":[61,62]},{"name":"WPD_OBJECT_FORMAT","features":[61,62]},{"name":"WPD_OBJECT_FORMAT_3G2","features":[61]},{"name":"WPD_OBJECT_FORMAT_3G2A","features":[61]},{"name":"WPD_OBJECT_FORMAT_3GP","features":[61]},{"name":"WPD_OBJECT_FORMAT_3GPA","features":[61]},{"name":"WPD_OBJECT_FORMAT_AAC","features":[61]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT","features":[61]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT_GROUP","features":[61]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_MEDIA_CAST","features":[61]},{"name":"WPD_OBJECT_FORMAT_AIFF","features":[61]},{"name":"WPD_OBJECT_FORMAT_ALL","features":[61]},{"name":"WPD_OBJECT_FORMAT_AMR","features":[61]},{"name":"WPD_OBJECT_FORMAT_ASF","features":[61]},{"name":"WPD_OBJECT_FORMAT_ASXPLAYLIST","features":[61]},{"name":"WPD_OBJECT_FORMAT_ATSCTS","features":[61]},{"name":"WPD_OBJECT_FORMAT_AUDIBLE","features":[61]},{"name":"WPD_OBJECT_FORMAT_AVCHD","features":[61]},{"name":"WPD_OBJECT_FORMAT_AVI","features":[61]},{"name":"WPD_OBJECT_FORMAT_BMP","features":[61]},{"name":"WPD_OBJECT_FORMAT_CIFF","features":[61]},{"name":"WPD_OBJECT_FORMAT_DPOF","features":[61]},{"name":"WPD_OBJECT_FORMAT_DVBTS","features":[61]},{"name":"WPD_OBJECT_FORMAT_EXECUTABLE","features":[61]},{"name":"WPD_OBJECT_FORMAT_EXIF","features":[61]},{"name":"WPD_OBJECT_FORMAT_FLAC","features":[61]},{"name":"WPD_OBJECT_FORMAT_FLASHPIX","features":[61]},{"name":"WPD_OBJECT_FORMAT_GIF","features":[61]},{"name":"WPD_OBJECT_FORMAT_HTML","features":[61]},{"name":"WPD_OBJECT_FORMAT_ICALENDAR","features":[61]},{"name":"WPD_OBJECT_FORMAT_ICON","features":[61]},{"name":"WPD_OBJECT_FORMAT_JFIF","features":[61]},{"name":"WPD_OBJECT_FORMAT_JP2","features":[61]},{"name":"WPD_OBJECT_FORMAT_JPEGXR","features":[61]},{"name":"WPD_OBJECT_FORMAT_JPX","features":[61]},{"name":"WPD_OBJECT_FORMAT_M3UPLAYLIST","features":[61]},{"name":"WPD_OBJECT_FORMAT_M4A","features":[61]},{"name":"WPD_OBJECT_FORMAT_MHT_COMPILED_HTML","features":[61]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_EXCEL","features":[61]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_POWERPOINT","features":[61]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WFC","features":[61]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WORD","features":[61]},{"name":"WPD_OBJECT_FORMAT_MKV","features":[61]},{"name":"WPD_OBJECT_FORMAT_MP2","features":[61]},{"name":"WPD_OBJECT_FORMAT_MP3","features":[61]},{"name":"WPD_OBJECT_FORMAT_MP4","features":[61]},{"name":"WPD_OBJECT_FORMAT_MPEG","features":[61]},{"name":"WPD_OBJECT_FORMAT_MPLPLAYLIST","features":[61]},{"name":"WPD_OBJECT_FORMAT_NETWORK_ASSOCIATION","features":[61]},{"name":"WPD_OBJECT_FORMAT_OGG","features":[61]},{"name":"WPD_OBJECT_FORMAT_PCD","features":[61]},{"name":"WPD_OBJECT_FORMAT_PICT","features":[61]},{"name":"WPD_OBJECT_FORMAT_PLSPLAYLIST","features":[61]},{"name":"WPD_OBJECT_FORMAT_PNG","features":[61]},{"name":"WPD_OBJECT_FORMAT_PROPERTIES_ONLY","features":[61]},{"name":"WPD_OBJECT_FORMAT_QCELP","features":[61]},{"name":"WPD_OBJECT_FORMAT_SCRIPT","features":[61]},{"name":"WPD_OBJECT_FORMAT_TEXT","features":[61]},{"name":"WPD_OBJECT_FORMAT_TIFF","features":[61]},{"name":"WPD_OBJECT_FORMAT_TIFFEP","features":[61]},{"name":"WPD_OBJECT_FORMAT_TIFFIT","features":[61]},{"name":"WPD_OBJECT_FORMAT_UNSPECIFIED","features":[61]},{"name":"WPD_OBJECT_FORMAT_VCALENDAR1","features":[61]},{"name":"WPD_OBJECT_FORMAT_VCARD2","features":[61]},{"name":"WPD_OBJECT_FORMAT_VCARD3","features":[61]},{"name":"WPD_OBJECT_FORMAT_WAVE","features":[61]},{"name":"WPD_OBJECT_FORMAT_WBMP","features":[61]},{"name":"WPD_OBJECT_FORMAT_WINDOWSIMAGEFORMAT","features":[61]},{"name":"WPD_OBJECT_FORMAT_WMA","features":[61]},{"name":"WPD_OBJECT_FORMAT_WMV","features":[61]},{"name":"WPD_OBJECT_FORMAT_WPLPLAYLIST","features":[61]},{"name":"WPD_OBJECT_FORMAT_X509V3CERTIFICATE","features":[61]},{"name":"WPD_OBJECT_FORMAT_XML","features":[61]},{"name":"WPD_OBJECT_GENERATE_THUMBNAIL_FROM_RESOURCE","features":[61,62]},{"name":"WPD_OBJECT_HINT_LOCATION_DISPLAY_NAME","features":[61,62]},{"name":"WPD_OBJECT_ID","features":[61,62]},{"name":"WPD_OBJECT_ISHIDDEN","features":[61,62]},{"name":"WPD_OBJECT_ISSYSTEM","features":[61,62]},{"name":"WPD_OBJECT_IS_DRM_PROTECTED","features":[61,62]},{"name":"WPD_OBJECT_KEYWORDS","features":[61,62]},{"name":"WPD_OBJECT_LANGUAGE_LOCALE","features":[61,62]},{"name":"WPD_OBJECT_NAME","features":[61,62]},{"name":"WPD_OBJECT_NON_CONSUMABLE","features":[61,62]},{"name":"WPD_OBJECT_ORIGINAL_FILE_NAME","features":[61,62]},{"name":"WPD_OBJECT_PARENT_ID","features":[61,62]},{"name":"WPD_OBJECT_PERSISTENT_UNIQUE_ID","features":[61,62]},{"name":"WPD_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_OBJECT_PROPERTIES_V2","features":[61]},{"name":"WPD_OBJECT_REFERENCES","features":[61,62]},{"name":"WPD_OBJECT_SIZE","features":[61,62]},{"name":"WPD_OBJECT_SUPPORTED_UNITS","features":[61,62]},{"name":"WPD_OBJECT_SYNC_ID","features":[61,62]},{"name":"WPD_OPERATION_STATES","features":[61]},{"name":"WPD_OPERATION_STATE_ABORTED","features":[61]},{"name":"WPD_OPERATION_STATE_CANCELLED","features":[61]},{"name":"WPD_OPERATION_STATE_FINISHED","features":[61]},{"name":"WPD_OPERATION_STATE_PAUSED","features":[61]},{"name":"WPD_OPERATION_STATE_RUNNING","features":[61]},{"name":"WPD_OPERATION_STATE_STARTED","features":[61]},{"name":"WPD_OPERATION_STATE_UNSPECIFIED","features":[61]},{"name":"WPD_OPTION_OBJECT_MANAGEMENT_RECURSIVE_DELETE_SUPPORTED","features":[61,62]},{"name":"WPD_OPTION_OBJECT_RESOURCES_NO_INPUT_BUFFER_ON_READ","features":[61,62]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_READ_SUPPORTED","features":[61,62]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_WRITE_SUPPORTED","features":[61,62]},{"name":"WPD_OPTION_SMS_BINARY_MESSAGE_SUPPORTED","features":[61,62]},{"name":"WPD_OPTION_VALID_OBJECT_IDS","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTES_V1","features":[61]},{"name":"WPD_PARAMETER_ATTRIBUTE_DEFAULT_VALUE","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_ENUMERATION","features":[61]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[61]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_RANGE","features":[61]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[61]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_UNSPECIFIED","features":[61]},{"name":"WPD_PARAMETER_ATTRIBUTE_MAX_SIZE","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_NAME","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_ORDER","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MAX","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MIN","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_STEP","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_REGULAR_EXPRESSION","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_USAGE","features":[61,62]},{"name":"WPD_PARAMETER_ATTRIBUTE_VARTYPE","features":[61,62]},{"name":"WPD_PARAMETER_USAGE_IN","features":[61]},{"name":"WPD_PARAMETER_USAGE_INOUT","features":[61]},{"name":"WPD_PARAMETER_USAGE_OUT","features":[61]},{"name":"WPD_PARAMETER_USAGE_RETURN","features":[61]},{"name":"WPD_PARAMETER_USAGE_TYPES","features":[61]},{"name":"WPD_POWER_SOURCES","features":[61]},{"name":"WPD_POWER_SOURCE_BATTERY","features":[61]},{"name":"WPD_POWER_SOURCE_EXTERNAL","features":[61]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_DEVICE_PROPS","features":[61]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_OBJECT_PROPS","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTES_V1","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTES_V2","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_DELETE","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_READ","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_WRITE","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_DEFAULT_VALUE","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_FAST_PROPERTY","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_ENUMERATION","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_RANGE","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_UNSPECIFIED","features":[61]},{"name":"WPD_PROPERTY_ATTRIBUTE_MAX_SIZE","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_NAME","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MAX","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MIN","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_STEP","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_REGULAR_EXPRESSION","features":[61,62]},{"name":"WPD_PROPERTY_ATTRIBUTE_VARTYPE","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND_OPTIONS","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPE","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPES","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT_OPTIONS","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMAT","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMATS","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORIES","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORY","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_OBJECTS","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_KEYS","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_COMMANDS","features":[61,62]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_EVENTS","features":[61,62]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_VALUES","features":[61,62]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_WRITE_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_INTERFACES","features":[61,62]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_REGISTRATION_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_ACTIVITY_ID","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION_CONTEXT","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_COMMAND_CATEGORY","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_COMMAND_ID","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_COMMAND_TARGET","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_DRIVER_ERROR_CODE","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_HRESULT","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_OBJECT_IDS","features":[61,62]},{"name":"WPD_PROPERTY_COMMON_PERSISTENT_UNIQUE_IDS","features":[61,62]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_LOCATIONS","features":[61,62]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_TYPE","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_EVENT_PARAMS","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_CODE","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_PARAMS","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_CODE","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_PARAMS","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_CONTEXT","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_DATA","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_READ","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_READ","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_WRITE","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_WRITTEN","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_TOTAL_DATA_SIZE","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_EXTENSION_DESCRIPTION","features":[61,62]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_OPERATION_CODES","features":[61,62]},{"name":"WPD_PROPERTY_NULL","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_CONTEXT","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_FILTER","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_NUM_OBJECTS_REQUESTED","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_OBJECT_IDS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_PARENT_ID","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CONTEXT","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_COPY_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CREATION_PROPERTIES","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DATA","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_OPTIONS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DESTINATION_FOLDER_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_MOVE_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_TO_WRITE","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_WRITTEN","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_FORMAT","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_IDS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_PROPERTY_KEYS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_UPDATE_PROPERTIES","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_CONTEXT","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_DEPTH","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_FORMAT","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_IDS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PARENT_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PROPERTY_KEYS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_VALUES","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_WRITE_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_DELETE_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_KEYS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_VALUES","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_WRITE_RESULTS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_ACCESS_MODE","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_CONTEXT","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_DATA","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_READ","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_READ","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_WRITE","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_WRITTEN","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_POSITION_FROM_START","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_KEYS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_OFFSET","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_ORIGIN_FLAG","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_STREAM_UNITS","features":[61,62]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SUPPORTS_UNITS","features":[61,62]},{"name":"WPD_PROPERTY_PUBLIC_KEY","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND_OPTIONS","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMATS","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITANCE_TYPE","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITED_SERVICES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_KEYS","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_RENDERING_PROFILES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_COMMANDS","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_EVENTS","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_METHODS","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_METHOD","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_METHOD_CONTEXT","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_METHOD_HRESULT","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_METHOD_PARAMETER_VALUES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_METHOD_RESULT_VALUES","features":[61,62]},{"name":"WPD_PROPERTY_SERVICE_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_SMS_BINARY_MESSAGE","features":[61,62]},{"name":"WPD_PROPERTY_SMS_MESSAGE_TYPE","features":[61,62]},{"name":"WPD_PROPERTY_SMS_RECIPIENT","features":[61,62]},{"name":"WPD_PROPERTY_SMS_TEXT_MESSAGE","features":[61,62]},{"name":"WPD_PROPERTY_STORAGE_DESTINATION_OBJECT_ID","features":[61,62]},{"name":"WPD_PROPERTY_STORAGE_OBJECT_ID","features":[61,62]},{"name":"WPD_RENDERING_INFORMATION_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_RENDERING_INFORMATION_PROFILES","features":[61,62]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_CREATABLE_RESOURCES","features":[61,62]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE","features":[61,62]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPES","features":[61]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_OBJECT","features":[61]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_RESOURCE","features":[61]},{"name":"WPD_RESOURCE_ALBUM_ART","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTES_V1","features":[61]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_DELETE","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_READ","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_WRITE","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTE_FORMAT","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_READ_BUFFER_SIZE","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_WRITE_BUFFER_SIZE","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTE_RESOURCE_KEY","features":[61,62]},{"name":"WPD_RESOURCE_ATTRIBUTE_TOTAL_SIZE","features":[61,62]},{"name":"WPD_RESOURCE_AUDIO_CLIP","features":[61,62]},{"name":"WPD_RESOURCE_BRANDING_ART","features":[61,62]},{"name":"WPD_RESOURCE_CONTACT_PHOTO","features":[61,62]},{"name":"WPD_RESOURCE_DEFAULT","features":[61,62]},{"name":"WPD_RESOURCE_GENERIC","features":[61,62]},{"name":"WPD_RESOURCE_ICON","features":[61,62]},{"name":"WPD_RESOURCE_THUMBNAIL","features":[61,62]},{"name":"WPD_RESOURCE_VIDEO_CLIP","features":[61,62]},{"name":"WPD_SECTION_DATA_LENGTH","features":[61,62]},{"name":"WPD_SECTION_DATA_OFFSET","features":[61,62]},{"name":"WPD_SECTION_DATA_REFERENCED_OBJECT_RESOURCE","features":[61,62]},{"name":"WPD_SECTION_DATA_UNITS","features":[61,62]},{"name":"WPD_SECTION_DATA_UNITS_BYTES","features":[61]},{"name":"WPD_SECTION_DATA_UNITS_MILLISECONDS","features":[61]},{"name":"WPD_SECTION_DATA_UNITS_VALUES","features":[61]},{"name":"WPD_SECTION_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_SERVICE_INHERITANCE_IMPLEMENTATION","features":[61]},{"name":"WPD_SERVICE_INHERITANCE_TYPES","features":[61]},{"name":"WPD_SERVICE_PROPERTIES_V1","features":[61]},{"name":"WPD_SERVICE_VERSION","features":[61,62]},{"name":"WPD_SMS_ENCODING","features":[61,62]},{"name":"WPD_SMS_ENCODING_TYPES","features":[61]},{"name":"WPD_SMS_MAX_PAYLOAD","features":[61,62]},{"name":"WPD_SMS_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_SMS_PROVIDER","features":[61,62]},{"name":"WPD_SMS_TIMEOUT","features":[61,62]},{"name":"WPD_STILL_IMAGE_ARTIST","features":[61,62]},{"name":"WPD_STILL_IMAGE_BURST_INTERVAL","features":[61,62]},{"name":"WPD_STILL_IMAGE_BURST_NUMBER","features":[61,62]},{"name":"WPD_STILL_IMAGE_CAMERA_MANUFACTURER","features":[61,62]},{"name":"WPD_STILL_IMAGE_CAMERA_MODEL","features":[61,62]},{"name":"WPD_STILL_IMAGE_CAPTURE_DELAY","features":[61,62]},{"name":"WPD_STILL_IMAGE_CAPTURE_FORMAT","features":[61,62]},{"name":"WPD_STILL_IMAGE_CAPTURE_MODE","features":[61,62]},{"name":"WPD_STILL_IMAGE_CAPTURE_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_STILL_IMAGE_CAPTURE_RESOLUTION","features":[61,62]},{"name":"WPD_STILL_IMAGE_COMPRESSION_SETTING","features":[61,62]},{"name":"WPD_STILL_IMAGE_CONTRAST","features":[61,62]},{"name":"WPD_STILL_IMAGE_DIGITAL_ZOOM","features":[61,62]},{"name":"WPD_STILL_IMAGE_EFFECT_MODE","features":[61,62]},{"name":"WPD_STILL_IMAGE_EXPOSURE_BIAS_COMPENSATION","features":[61,62]},{"name":"WPD_STILL_IMAGE_EXPOSURE_INDEX","features":[61,62]},{"name":"WPD_STILL_IMAGE_EXPOSURE_METERING_MODE","features":[61,62]},{"name":"WPD_STILL_IMAGE_EXPOSURE_PROGRAM_MODE","features":[61,62]},{"name":"WPD_STILL_IMAGE_EXPOSURE_TIME","features":[61,62]},{"name":"WPD_STILL_IMAGE_FLASH_MODE","features":[61,62]},{"name":"WPD_STILL_IMAGE_FNUMBER","features":[61,62]},{"name":"WPD_STILL_IMAGE_FOCAL_LENGTH","features":[61,62]},{"name":"WPD_STILL_IMAGE_FOCUS_DISTANCE","features":[61,62]},{"name":"WPD_STILL_IMAGE_FOCUS_METERING_MODE","features":[61,62]},{"name":"WPD_STILL_IMAGE_FOCUS_MODE","features":[61,62]},{"name":"WPD_STILL_IMAGE_RGB_GAIN","features":[61,62]},{"name":"WPD_STILL_IMAGE_SHARPNESS","features":[61,62]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_INTERVAL","features":[61,62]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_NUMBER","features":[61,62]},{"name":"WPD_STILL_IMAGE_UPLOAD_URL","features":[61,62]},{"name":"WPD_STILL_IMAGE_WHITE_BALANCE","features":[61,62]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY","features":[61,62]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READWRITE","features":[61]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITHOUT_OBJECT_DELETION","features":[61]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITH_OBJECT_DELETION","features":[61]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_VALUES","features":[61]},{"name":"WPD_STORAGE_CAPACITY","features":[61,62]},{"name":"WPD_STORAGE_CAPACITY_IN_OBJECTS","features":[61,62]},{"name":"WPD_STORAGE_DESCRIPTION","features":[61,62]},{"name":"WPD_STORAGE_FILE_SYSTEM_TYPE","features":[61,62]},{"name":"WPD_STORAGE_FREE_SPACE_IN_BYTES","features":[61,62]},{"name":"WPD_STORAGE_FREE_SPACE_IN_OBJECTS","features":[61,62]},{"name":"WPD_STORAGE_MAX_OBJECT_SIZE","features":[61,62]},{"name":"WPD_STORAGE_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_STORAGE_SERIAL_NUMBER","features":[61,62]},{"name":"WPD_STORAGE_TYPE","features":[61,62]},{"name":"WPD_STORAGE_TYPE_FIXED_RAM","features":[61]},{"name":"WPD_STORAGE_TYPE_FIXED_ROM","features":[61]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_RAM","features":[61]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_ROM","features":[61]},{"name":"WPD_STORAGE_TYPE_UNDEFINED","features":[61]},{"name":"WPD_STORAGE_TYPE_VALUES","features":[61]},{"name":"WPD_STREAM_UNITS","features":[61]},{"name":"WPD_STREAM_UNITS_BYTES","features":[61]},{"name":"WPD_STREAM_UNITS_FRAMES","features":[61]},{"name":"WPD_STREAM_UNITS_MICROSECONDS","features":[61]},{"name":"WPD_STREAM_UNITS_MILLISECONDS","features":[61]},{"name":"WPD_STREAM_UNITS_ROWS","features":[61]},{"name":"WPD_TASK_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_TASK_OWNER","features":[61,62]},{"name":"WPD_TASK_PERCENT_COMPLETE","features":[61,62]},{"name":"WPD_TASK_REMINDER_DATE","features":[61,62]},{"name":"WPD_TASK_STATUS","features":[61,62]},{"name":"WPD_VIDEO_AUTHOR","features":[61,62]},{"name":"WPD_VIDEO_BITRATE","features":[61,62]},{"name":"WPD_VIDEO_BUFFER_SIZE","features":[61,62]},{"name":"WPD_VIDEO_CREDITS","features":[61,62]},{"name":"WPD_VIDEO_FOURCC_CODE","features":[61,62]},{"name":"WPD_VIDEO_FRAMERATE","features":[61,62]},{"name":"WPD_VIDEO_KEY_FRAME_DISTANCE","features":[61,62]},{"name":"WPD_VIDEO_OBJECT_PROPERTIES_V1","features":[61]},{"name":"WPD_VIDEO_QUALITY_SETTING","features":[61,62]},{"name":"WPD_VIDEO_RECORDEDTV_CHANNEL_NUMBER","features":[61,62]},{"name":"WPD_VIDEO_RECORDEDTV_REPEAT","features":[61,62]},{"name":"WPD_VIDEO_RECORDEDTV_STATION_NAME","features":[61,62]},{"name":"WPD_VIDEO_SCAN_TYPE","features":[61,62]},{"name":"WPD_VIDEO_SCAN_TYPES","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_LOWER_FIRST","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_UPPER_FIRST","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_LOWER_FIRST","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_UPPER_FIRST","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE_AND_PROGRESSIVE","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_PROGRESSIVE","features":[61]},{"name":"WPD_VIDEO_SCAN_TYPE_UNUSED","features":[61]},{"name":"WPD_WHITE_BALANCE_AUTOMATIC","features":[61]},{"name":"WPD_WHITE_BALANCE_DAYLIGHT","features":[61]},{"name":"WPD_WHITE_BALANCE_FLASH","features":[61]},{"name":"WPD_WHITE_BALANCE_FLORESCENT","features":[61]},{"name":"WPD_WHITE_BALANCE_MANUAL","features":[61]},{"name":"WPD_WHITE_BALANCE_ONE_PUSH_AUTOMATIC","features":[61]},{"name":"WPD_WHITE_BALANCE_SETTINGS","features":[61]},{"name":"WPD_WHITE_BALANCE_TUNGSTEN","features":[61]},{"name":"WPD_WHITE_BALANCE_UNDEFINED","features":[61]},{"name":"WpdAttributeForm","features":[61]},{"name":"WpdParameterAttributeForm","features":[61]},{"name":"WpdSerializer","features":[61]}],"384":[{"name":"DEVPKEY_DevQuery_ObjectType","features":[1]},{"name":"DEVPKEY_DeviceClass_Characteristics","features":[1]},{"name":"DEVPKEY_DeviceClass_ClassCoInstallers","features":[1]},{"name":"DEVPKEY_DeviceClass_ClassInstaller","features":[1]},{"name":"DEVPKEY_DeviceClass_ClassName","features":[1]},{"name":"DEVPKEY_DeviceClass_DHPRebalanceOptOut","features":[1]},{"name":"DEVPKEY_DeviceClass_DefaultService","features":[1]},{"name":"DEVPKEY_DeviceClass_DevType","features":[1]},{"name":"DEVPKEY_DeviceClass_Exclusive","features":[1]},{"name":"DEVPKEY_DeviceClass_Icon","features":[1]},{"name":"DEVPKEY_DeviceClass_IconPath","features":[1]},{"name":"DEVPKEY_DeviceClass_LowerFilters","features":[1]},{"name":"DEVPKEY_DeviceClass_Name","features":[1]},{"name":"DEVPKEY_DeviceClass_NoDisplayClass","features":[1]},{"name":"DEVPKEY_DeviceClass_NoInstallClass","features":[1]},{"name":"DEVPKEY_DeviceClass_NoUseClass","features":[1]},{"name":"DEVPKEY_DeviceClass_PropPageProvider","features":[1]},{"name":"DEVPKEY_DeviceClass_Security","features":[1]},{"name":"DEVPKEY_DeviceClass_SecuritySDS","features":[1]},{"name":"DEVPKEY_DeviceClass_SilentInstall","features":[1]},{"name":"DEVPKEY_DeviceClass_UpperFilters","features":[1]},{"name":"DEVPKEY_DeviceContainer_Address","features":[1]},{"name":"DEVPKEY_DeviceContainer_AlwaysShowDeviceAsConnected","features":[1]},{"name":"DEVPKEY_DeviceContainer_AssociationArray","features":[1]},{"name":"DEVPKEY_DeviceContainer_BaselineExperienceId","features":[1]},{"name":"DEVPKEY_DeviceContainer_Category","features":[1]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Desc","features":[1]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Icon","features":[1]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Plural","features":[1]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Singular","features":[1]},{"name":"DEVPKEY_DeviceContainer_Category_Icon","features":[1]},{"name":"DEVPKEY_DeviceContainer_ConfigFlags","features":[1]},{"name":"DEVPKEY_DeviceContainer_CustomPrivilegedPackageFamilyNames","features":[1]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription1","features":[1]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription2","features":[1]},{"name":"DEVPKEY_DeviceContainer_DeviceFunctionSubRank","features":[1]},{"name":"DEVPKEY_DeviceContainer_DiscoveryMethod","features":[1]},{"name":"DEVPKEY_DeviceContainer_ExperienceId","features":[1]},{"name":"DEVPKEY_DeviceContainer_FriendlyName","features":[1]},{"name":"DEVPKEY_DeviceContainer_HasProblem","features":[1]},{"name":"DEVPKEY_DeviceContainer_Icon","features":[1]},{"name":"DEVPKEY_DeviceContainer_InstallInProgress","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsAuthenticated","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsConnected","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsDefaultDevice","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsDeviceUniquelyIdentifiable","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsEncrypted","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsLocalMachine","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsMetadataSearchInProgress","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsNetworkDevice","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsNotInterestingForDisplay","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsPaired","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsRebootRequired","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsSharedDevice","features":[1]},{"name":"DEVPKEY_DeviceContainer_IsShowInDisconnectedState","features":[1]},{"name":"DEVPKEY_DeviceContainer_Last_Connected","features":[1]},{"name":"DEVPKEY_DeviceContainer_Last_Seen","features":[1]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageFromExplorer","features":[1]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageOnDeviceConnect","features":[1]},{"name":"DEVPKEY_DeviceContainer_Manufacturer","features":[1]},{"name":"DEVPKEY_DeviceContainer_MetadataCabinet","features":[1]},{"name":"DEVPKEY_DeviceContainer_MetadataChecksum","features":[1]},{"name":"DEVPKEY_DeviceContainer_MetadataPath","features":[1]},{"name":"DEVPKEY_DeviceContainer_ModelName","features":[1]},{"name":"DEVPKEY_DeviceContainer_ModelNumber","features":[1]},{"name":"DEVPKEY_DeviceContainer_PrimaryCategory","features":[1]},{"name":"DEVPKEY_DeviceContainer_PrivilegedPackageFamilyNames","features":[1]},{"name":"DEVPKEY_DeviceContainer_RequiresPairingElevation","features":[1]},{"name":"DEVPKEY_DeviceContainer_RequiresUninstallElevation","features":[1]},{"name":"DEVPKEY_DeviceContainer_UnpairUninstall","features":[1]},{"name":"DEVPKEY_DeviceContainer_Version","features":[1]},{"name":"DEVPKEY_DeviceInterfaceClass_DefaultInterface","features":[1]},{"name":"DEVPKEY_DeviceInterfaceClass_Name","features":[1]},{"name":"DEVPKEY_DeviceInterface_Autoplay_Silent","features":[1]},{"name":"DEVPKEY_DeviceInterface_ClassGuid","features":[1]},{"name":"DEVPKEY_DeviceInterface_Enabled","features":[1]},{"name":"DEVPKEY_DeviceInterface_FriendlyName","features":[1]},{"name":"DEVPKEY_DeviceInterface_ReferenceString","features":[1]},{"name":"DEVPKEY_DeviceInterface_Restricted","features":[1]},{"name":"DEVPKEY_DeviceInterface_SchematicName","features":[1]},{"name":"DEVPKEY_DeviceInterface_UnrestrictedAppCapabilities","features":[1]},{"name":"DEVPKEY_Device_AdditionalSoftwareRequested","features":[1]},{"name":"DEVPKEY_Device_Address","features":[1]},{"name":"DEVPKEY_Device_AssignedToGuest","features":[1]},{"name":"DEVPKEY_Device_BaseContainerId","features":[1]},{"name":"DEVPKEY_Device_BiosDeviceName","features":[1]},{"name":"DEVPKEY_Device_BusNumber","features":[1]},{"name":"DEVPKEY_Device_BusRelations","features":[1]},{"name":"DEVPKEY_Device_BusReportedDeviceDesc","features":[1]},{"name":"DEVPKEY_Device_BusTypeGuid","features":[1]},{"name":"DEVPKEY_Device_Capabilities","features":[1]},{"name":"DEVPKEY_Device_Characteristics","features":[1]},{"name":"DEVPKEY_Device_Children","features":[1]},{"name":"DEVPKEY_Device_Class","features":[1]},{"name":"DEVPKEY_Device_ClassGuid","features":[1]},{"name":"DEVPKEY_Device_CompanionApps","features":[1]},{"name":"DEVPKEY_Device_CompatibleIds","features":[1]},{"name":"DEVPKEY_Device_ConfigFlags","features":[1]},{"name":"DEVPKEY_Device_ConfigurationId","features":[1]},{"name":"DEVPKEY_Device_ContainerId","features":[1]},{"name":"DEVPKEY_Device_CreatorProcessId","features":[1]},{"name":"DEVPKEY_Device_DHP_Rebalance_Policy","features":[1]},{"name":"DEVPKEY_Device_DebuggerSafe","features":[1]},{"name":"DEVPKEY_Device_DependencyDependents","features":[1]},{"name":"DEVPKEY_Device_DependencyProviders","features":[1]},{"name":"DEVPKEY_Device_DevNodeStatus","features":[1]},{"name":"DEVPKEY_Device_DevType","features":[1]},{"name":"DEVPKEY_Device_DeviceDesc","features":[1]},{"name":"DEVPKEY_Device_Driver","features":[1]},{"name":"DEVPKEY_Device_DriverCoInstallers","features":[1]},{"name":"DEVPKEY_Device_DriverDate","features":[1]},{"name":"DEVPKEY_Device_DriverDesc","features":[1]},{"name":"DEVPKEY_Device_DriverInfPath","features":[1]},{"name":"DEVPKEY_Device_DriverInfSection","features":[1]},{"name":"DEVPKEY_Device_DriverInfSectionExt","features":[1]},{"name":"DEVPKEY_Device_DriverLogoLevel","features":[1]},{"name":"DEVPKEY_Device_DriverProblemDesc","features":[1]},{"name":"DEVPKEY_Device_DriverPropPageProvider","features":[1]},{"name":"DEVPKEY_Device_DriverProvider","features":[1]},{"name":"DEVPKEY_Device_DriverRank","features":[1]},{"name":"DEVPKEY_Device_DriverVersion","features":[1]},{"name":"DEVPKEY_Device_EjectionRelations","features":[1]},{"name":"DEVPKEY_Device_EnumeratorName","features":[1]},{"name":"DEVPKEY_Device_Exclusive","features":[1]},{"name":"DEVPKEY_Device_ExtendedAddress","features":[1]},{"name":"DEVPKEY_Device_ExtendedConfigurationIds","features":[1]},{"name":"DEVPKEY_Device_FirmwareDate","features":[1]},{"name":"DEVPKEY_Device_FirmwareRevision","features":[1]},{"name":"DEVPKEY_Device_FirmwareVendor","features":[1]},{"name":"DEVPKEY_Device_FirmwareVersion","features":[1]},{"name":"DEVPKEY_Device_FirstInstallDate","features":[1]},{"name":"DEVPKEY_Device_FriendlyName","features":[1]},{"name":"DEVPKEY_Device_FriendlyNameAttributes","features":[1]},{"name":"DEVPKEY_Device_GenericDriverInstalled","features":[1]},{"name":"DEVPKEY_Device_HardwareIds","features":[1]},{"name":"DEVPKEY_Device_HasProblem","features":[1]},{"name":"DEVPKEY_Device_InLocalMachineContainer","features":[1]},{"name":"DEVPKEY_Device_InstallDate","features":[1]},{"name":"DEVPKEY_Device_InstallState","features":[1]},{"name":"DEVPKEY_Device_InstanceId","features":[1]},{"name":"DEVPKEY_Device_IsAssociateableByUserAction","features":[1]},{"name":"DEVPKEY_Device_IsPresent","features":[1]},{"name":"DEVPKEY_Device_IsRebootRequired","features":[1]},{"name":"DEVPKEY_Device_LastArrivalDate","features":[1]},{"name":"DEVPKEY_Device_LastRemovalDate","features":[1]},{"name":"DEVPKEY_Device_Legacy","features":[1]},{"name":"DEVPKEY_Device_LegacyBusType","features":[1]},{"name":"DEVPKEY_Device_LocationInfo","features":[1]},{"name":"DEVPKEY_Device_LocationPaths","features":[1]},{"name":"DEVPKEY_Device_LowerFilters","features":[1]},{"name":"DEVPKEY_Device_Manufacturer","features":[1]},{"name":"DEVPKEY_Device_ManufacturerAttributes","features":[1]},{"name":"DEVPKEY_Device_MatchingDeviceId","features":[1]},{"name":"DEVPKEY_Device_Model","features":[1]},{"name":"DEVPKEY_Device_ModelId","features":[1]},{"name":"DEVPKEY_Device_NoConnectSound","features":[1]},{"name":"DEVPKEY_Device_Numa_Node","features":[1]},{"name":"DEVPKEY_Device_Numa_Proximity_Domain","features":[1]},{"name":"DEVPKEY_Device_PDOName","features":[1]},{"name":"DEVPKEY_Device_Parent","features":[1]},{"name":"DEVPKEY_Device_PhysicalDeviceLocation","features":[1]},{"name":"DEVPKEY_Device_PostInstallInProgress","features":[1]},{"name":"DEVPKEY_Device_PowerData","features":[1]},{"name":"DEVPKEY_Device_PowerRelations","features":[1]},{"name":"DEVPKEY_Device_PresenceNotForDevice","features":[1]},{"name":"DEVPKEY_Device_PrimaryCompanionApp","features":[1]},{"name":"DEVPKEY_Device_ProblemCode","features":[1]},{"name":"DEVPKEY_Device_ProblemStatus","features":[1]},{"name":"DEVPKEY_Device_RemovalPolicy","features":[1]},{"name":"DEVPKEY_Device_RemovalPolicyDefault","features":[1]},{"name":"DEVPKEY_Device_RemovalPolicyOverride","features":[1]},{"name":"DEVPKEY_Device_RemovalRelations","features":[1]},{"name":"DEVPKEY_Device_Reported","features":[1]},{"name":"DEVPKEY_Device_ReportedDeviceIdsHash","features":[1]},{"name":"DEVPKEY_Device_ResourcePickerExceptions","features":[1]},{"name":"DEVPKEY_Device_ResourcePickerTags","features":[1]},{"name":"DEVPKEY_Device_SafeRemovalRequired","features":[1]},{"name":"DEVPKEY_Device_SafeRemovalRequiredOverride","features":[1]},{"name":"DEVPKEY_Device_Security","features":[1]},{"name":"DEVPKEY_Device_SecuritySDS","features":[1]},{"name":"DEVPKEY_Device_Service","features":[1]},{"name":"DEVPKEY_Device_SessionId","features":[1]},{"name":"DEVPKEY_Device_ShowInUninstallUI","features":[1]},{"name":"DEVPKEY_Device_Siblings","features":[1]},{"name":"DEVPKEY_Device_SignalStrength","features":[1]},{"name":"DEVPKEY_Device_SoftRestartSupported","features":[1]},{"name":"DEVPKEY_Device_Stack","features":[1]},{"name":"DEVPKEY_Device_TransportRelations","features":[1]},{"name":"DEVPKEY_Device_UINumber","features":[1]},{"name":"DEVPKEY_Device_UINumberDescFormat","features":[1]},{"name":"DEVPKEY_Device_UpperFilters","features":[1]},{"name":"DEVPKEY_DrvPkg_BrandingIcon","features":[1]},{"name":"DEVPKEY_DrvPkg_DetailedDescription","features":[1]},{"name":"DEVPKEY_DrvPkg_DocumentationLink","features":[1]},{"name":"DEVPKEY_DrvPkg_Icon","features":[1]},{"name":"DEVPKEY_DrvPkg_Model","features":[1]},{"name":"DEVPKEY_DrvPkg_VendorWebSite","features":[1]},{"name":"DEVPKEY_NAME","features":[1]},{"name":"DEVPROPCOMPKEY","features":[1]},{"name":"DEVPROPERTY","features":[1]},{"name":"DEVPROPID_FIRST_USABLE","features":[1]},{"name":"DEVPROPKEY","features":[1]},{"name":"DEVPROPSTORE","features":[1]},{"name":"DEVPROPTYPE","features":[1]},{"name":"DEVPROP_BOOLEAN","features":[1]},{"name":"DEVPROP_FALSE","features":[1]},{"name":"DEVPROP_MASK_TYPE","features":[1]},{"name":"DEVPROP_MASK_TYPEMOD","features":[1]},{"name":"DEVPROP_STORE_SYSTEM","features":[1]},{"name":"DEVPROP_STORE_USER","features":[1]},{"name":"DEVPROP_TRUE","features":[1]},{"name":"DEVPROP_TYPEMOD_ARRAY","features":[1]},{"name":"DEVPROP_TYPEMOD_LIST","features":[1]},{"name":"DEVPROP_TYPE_BINARY","features":[1]},{"name":"DEVPROP_TYPE_BOOLEAN","features":[1]},{"name":"DEVPROP_TYPE_BYTE","features":[1]},{"name":"DEVPROP_TYPE_CURRENCY","features":[1]},{"name":"DEVPROP_TYPE_DATE","features":[1]},{"name":"DEVPROP_TYPE_DECIMAL","features":[1]},{"name":"DEVPROP_TYPE_DEVPROPKEY","features":[1]},{"name":"DEVPROP_TYPE_DEVPROPTYPE","features":[1]},{"name":"DEVPROP_TYPE_DOUBLE","features":[1]},{"name":"DEVPROP_TYPE_EMPTY","features":[1]},{"name":"DEVPROP_TYPE_ERROR","features":[1]},{"name":"DEVPROP_TYPE_FILETIME","features":[1]},{"name":"DEVPROP_TYPE_FLOAT","features":[1]},{"name":"DEVPROP_TYPE_GUID","features":[1]},{"name":"DEVPROP_TYPE_INT16","features":[1]},{"name":"DEVPROP_TYPE_INT32","features":[1]},{"name":"DEVPROP_TYPE_INT64","features":[1]},{"name":"DEVPROP_TYPE_NTSTATUS","features":[1]},{"name":"DEVPROP_TYPE_NULL","features":[1]},{"name":"DEVPROP_TYPE_SBYTE","features":[1]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR","features":[1]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING","features":[1]},{"name":"DEVPROP_TYPE_STRING","features":[1]},{"name":"DEVPROP_TYPE_STRING_INDIRECT","features":[1]},{"name":"DEVPROP_TYPE_STRING_LIST","features":[1]},{"name":"DEVPROP_TYPE_UINT16","features":[1]},{"name":"DEVPROP_TYPE_UINT32","features":[1]},{"name":"DEVPROP_TYPE_UINT64","features":[1]},{"name":"MAX_DEVPROP_TYPE","features":[1]},{"name":"MAX_DEVPROP_TYPEMOD","features":[1]}],"385":[{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER","features":[63]},{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER_WSZ","features":[63]},{"name":"IOCTL_PWM_CONTROLLER_GET_ACTUAL_PERIOD","features":[63]},{"name":"IOCTL_PWM_CONTROLLER_GET_INFO","features":[63]},{"name":"IOCTL_PWM_CONTROLLER_SET_DESIRED_PERIOD","features":[63]},{"name":"IOCTL_PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[63]},{"name":"IOCTL_PWM_PIN_GET_POLARITY","features":[63]},{"name":"IOCTL_PWM_PIN_IS_STARTED","features":[63]},{"name":"IOCTL_PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[63]},{"name":"IOCTL_PWM_PIN_SET_POLARITY","features":[63]},{"name":"IOCTL_PWM_PIN_START","features":[63]},{"name":"IOCTL_PWM_PIN_STOP","features":[63]},{"name":"PWM_ACTIVE_HIGH","features":[63]},{"name":"PWM_ACTIVE_LOW","features":[63]},{"name":"PWM_CONTROLLER_GET_ACTUAL_PERIOD_OUTPUT","features":[63]},{"name":"PWM_CONTROLLER_INFO","features":[63]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_INPUT","features":[63]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_OUTPUT","features":[63]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_ACTUAL_PERIOD","features":[63]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_INFO","features":[63]},{"name":"PWM_IOCTL_ID_CONTROLLER_SET_DESIRED_PERIOD","features":[63]},{"name":"PWM_IOCTL_ID_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[63]},{"name":"PWM_IOCTL_ID_PIN_GET_POLARITY","features":[63]},{"name":"PWM_IOCTL_ID_PIN_IS_STARTED","features":[63]},{"name":"PWM_IOCTL_ID_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[63]},{"name":"PWM_IOCTL_ID_PIN_SET_POLARITY","features":[63]},{"name":"PWM_IOCTL_ID_PIN_START","features":[63]},{"name":"PWM_IOCTL_ID_PIN_STOP","features":[63]},{"name":"PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE_OUTPUT","features":[63]},{"name":"PWM_PIN_GET_POLARITY_OUTPUT","features":[63]},{"name":"PWM_PIN_IS_STARTED_OUTPUT","features":[63,3]},{"name":"PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE_INPUT","features":[63]},{"name":"PWM_PIN_SET_POLARITY_INPUT","features":[63]},{"name":"PWM_POLARITY","features":[63]}],"386":[{"name":"ACTIVITY_STATE","features":[64]},{"name":"ACTIVITY_STATE_COUNT","features":[64]},{"name":"AXIS","features":[64]},{"name":"AXIS_MAX","features":[64]},{"name":"AXIS_X","features":[64]},{"name":"AXIS_Y","features":[64]},{"name":"AXIS_Z","features":[64]},{"name":"ActivityStateCount","features":[64]},{"name":"ActivityState_Biking","features":[64]},{"name":"ActivityState_Fidgeting","features":[64]},{"name":"ActivityState_Force_Dword","features":[64]},{"name":"ActivityState_Idle","features":[64]},{"name":"ActivityState_InVehicle","features":[64]},{"name":"ActivityState_Max","features":[64]},{"name":"ActivityState_Running","features":[64]},{"name":"ActivityState_Stationary","features":[64]},{"name":"ActivityState_Unknown","features":[64]},{"name":"ActivityState_Walking","features":[64]},{"name":"CollectionsListAllocateBufferAndSerialize","features":[64,3,65,44,62]},{"name":"CollectionsListCopyAndMarshall","features":[64,3,65,44,62]},{"name":"CollectionsListDeserializeFromBuffer","features":[64,3,65,44,62]},{"name":"CollectionsListGetFillableCount","features":[64]},{"name":"CollectionsListGetMarshalledSize","features":[64,3,65,44,62]},{"name":"CollectionsListGetMarshalledSizeWithoutSerialization","features":[64,3,65,44,62]},{"name":"CollectionsListGetSerializedSize","features":[64,3,65,44,62]},{"name":"CollectionsListMarshall","features":[64,3,65,44,62]},{"name":"CollectionsListSerializeToBuffer","features":[64,3,65,44,62]},{"name":"CollectionsListSortSubscribedActivitiesByConfidence","features":[64,3,65,44,62]},{"name":"CollectionsListUpdateMarshalledPointer","features":[64,3,65,44,62]},{"name":"ELEVATION_CHANGE_MODE","features":[64]},{"name":"ElevationChangeMode_Elevator","features":[64]},{"name":"ElevationChangeMode_Force_Dword","features":[64]},{"name":"ElevationChangeMode_Max","features":[64]},{"name":"ElevationChangeMode_Stepping","features":[64]},{"name":"ElevationChangeMode_Unknown","features":[64]},{"name":"EvaluateActivityThresholds","features":[64,3,65,44,62]},{"name":"GNSS_CLEAR_ALL_ASSISTANCE_DATA","features":[64]},{"name":"GUID_DEVINTERFACE_SENSOR","features":[64]},{"name":"GUID_SensorCategory_All","features":[64]},{"name":"GUID_SensorCategory_Biometric","features":[64]},{"name":"GUID_SensorCategory_Electrical","features":[64]},{"name":"GUID_SensorCategory_Environmental","features":[64]},{"name":"GUID_SensorCategory_Light","features":[64]},{"name":"GUID_SensorCategory_Location","features":[64]},{"name":"GUID_SensorCategory_Mechanical","features":[64]},{"name":"GUID_SensorCategory_Motion","features":[64]},{"name":"GUID_SensorCategory_Orientation","features":[64]},{"name":"GUID_SensorCategory_Other","features":[64]},{"name":"GUID_SensorCategory_PersonalActivity","features":[64]},{"name":"GUID_SensorCategory_Scanner","features":[64]},{"name":"GUID_SensorCategory_Unsupported","features":[64]},{"name":"GUID_SensorType_Accelerometer3D","features":[64]},{"name":"GUID_SensorType_ActivityDetection","features":[64]},{"name":"GUID_SensorType_AmbientLight","features":[64]},{"name":"GUID_SensorType_Barometer","features":[64]},{"name":"GUID_SensorType_Custom","features":[64]},{"name":"GUID_SensorType_FloorElevation","features":[64]},{"name":"GUID_SensorType_GeomagneticOrientation","features":[64]},{"name":"GUID_SensorType_GravityVector","features":[64]},{"name":"GUID_SensorType_Gyrometer3D","features":[64]},{"name":"GUID_SensorType_HingeAngle","features":[64]},{"name":"GUID_SensorType_Humidity","features":[64]},{"name":"GUID_SensorType_LinearAccelerometer","features":[64]},{"name":"GUID_SensorType_Magnetometer3D","features":[64]},{"name":"GUID_SensorType_Orientation","features":[64]},{"name":"GUID_SensorType_Pedometer","features":[64]},{"name":"GUID_SensorType_Proximity","features":[64]},{"name":"GUID_SensorType_RelativeOrientation","features":[64]},{"name":"GUID_SensorType_SimpleDeviceOrientation","features":[64]},{"name":"GUID_SensorType_Temperature","features":[64]},{"name":"GetPerformanceTime","features":[64,3]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE","features":[64]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE_COUNT","features":[64]},{"name":"HumanPresenceDetectionTypeCount","features":[64]},{"name":"HumanPresenceDetectionType_AudioBiometric","features":[64]},{"name":"HumanPresenceDetectionType_FacialBiometric","features":[64]},{"name":"HumanPresenceDetectionType_Force_Dword","features":[64]},{"name":"HumanPresenceDetectionType_Undefined","features":[64]},{"name":"HumanPresenceDetectionType_VendorDefinedBiometric","features":[64]},{"name":"HumanPresenceDetectionType_VendorDefinedNonBiometric","features":[64]},{"name":"ILocationPermissions","features":[64]},{"name":"ISensor","features":[64]},{"name":"ISensorCollection","features":[64]},{"name":"ISensorDataReport","features":[64]},{"name":"ISensorEvents","features":[64]},{"name":"ISensorManager","features":[64]},{"name":"ISensorManagerEvents","features":[64]},{"name":"InitPropVariantFromCLSIDArray","features":[64,3,65,44]},{"name":"InitPropVariantFromFloat","features":[64,3,65,44]},{"name":"IsCollectionListSame","features":[64,3,65,44,62]},{"name":"IsGUIDPresentInList","features":[64,3]},{"name":"IsKeyPresentInCollectionList","features":[64,3,65,44,62]},{"name":"IsKeyPresentInPropertyList","features":[64,3,62]},{"name":"IsSensorSubscribed","features":[64,3,65,44,62]},{"name":"LOCATION_DESIRED_ACCURACY","features":[64]},{"name":"LOCATION_DESIRED_ACCURACY_DEFAULT","features":[64]},{"name":"LOCATION_DESIRED_ACCURACY_HIGH","features":[64]},{"name":"LOCATION_POSITION_SOURCE","features":[64]},{"name":"LOCATION_POSITION_SOURCE_CELLULAR","features":[64]},{"name":"LOCATION_POSITION_SOURCE_IPADDRESS","features":[64]},{"name":"LOCATION_POSITION_SOURCE_SATELLITE","features":[64]},{"name":"LOCATION_POSITION_SOURCE_UNKNOWN","features":[64]},{"name":"LOCATION_POSITION_SOURCE_WIFI","features":[64]},{"name":"MAGNETOMETER_ACCURACY","features":[64]},{"name":"MAGNETOMETER_ACCURACY_APPROXIMATE","features":[64]},{"name":"MAGNETOMETER_ACCURACY_HIGH","features":[64]},{"name":"MAGNETOMETER_ACCURACY_UNKNOWN","features":[64]},{"name":"MAGNETOMETER_ACCURACY_UNRELIABLE","features":[64]},{"name":"MATRIX3X3","features":[64]},{"name":"MagnetometerAccuracy","features":[64]},{"name":"MagnetometerAccuracy_Approximate","features":[64]},{"name":"MagnetometerAccuracy_High","features":[64]},{"name":"MagnetometerAccuracy_Unknown","features":[64]},{"name":"MagnetometerAccuracy_Unreliable","features":[64]},{"name":"PEDOMETER_STEP_TYPE","features":[64]},{"name":"PEDOMETER_STEP_TYPE_COUNT","features":[64]},{"name":"PROXIMITY_SENSOR_CAPABILITIES","features":[64]},{"name":"PROXIMITY_TYPE","features":[64]},{"name":"PedometerStepTypeCount","features":[64]},{"name":"PedometerStepType_Force_Dword","features":[64]},{"name":"PedometerStepType_Max","features":[64]},{"name":"PedometerStepType_Running","features":[64]},{"name":"PedometerStepType_Unknown","features":[64]},{"name":"PedometerStepType_Walking","features":[64]},{"name":"PropKeyFindKeyGetBool","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetDouble","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetFileTime","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetFloat","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetGuid","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetInt32","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetInt64","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetNthInt64","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetNthUlong","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetNthUshort","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetPropVariant","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetUlong","features":[64,3,65,44,62]},{"name":"PropKeyFindKeyGetUshort","features":[64,3,65,44,62]},{"name":"PropKeyFindKeySetPropVariant","features":[64,3,65,44,62]},{"name":"PropVariantGetInformation","features":[1,64,3,65,44]},{"name":"PropertiesListCopy","features":[64,3,62]},{"name":"PropertiesListGetFillableCount","features":[64]},{"name":"ProximityType_Force_Dword","features":[64]},{"name":"ProximityType_HumanProximity","features":[64]},{"name":"ProximityType_ObjectProximity","features":[64]},{"name":"Proximity_Sensor_Human_Engagement_Capable","features":[64]},{"name":"Proximity_Sensor_Human_Presence_Capable","features":[64]},{"name":"Proximity_Sensor_Supported_Capabilities","features":[64]},{"name":"QUATERNION","features":[64]},{"name":"SENSOR_CATEGORY_ALL","features":[64]},{"name":"SENSOR_CATEGORY_BIOMETRIC","features":[64]},{"name":"SENSOR_CATEGORY_ELECTRICAL","features":[64]},{"name":"SENSOR_CATEGORY_ENVIRONMENTAL","features":[64]},{"name":"SENSOR_CATEGORY_LIGHT","features":[64]},{"name":"SENSOR_CATEGORY_LOCATION","features":[64]},{"name":"SENSOR_CATEGORY_MECHANICAL","features":[64]},{"name":"SENSOR_CATEGORY_MOTION","features":[64]},{"name":"SENSOR_CATEGORY_ORIENTATION","features":[64]},{"name":"SENSOR_CATEGORY_OTHER","features":[64]},{"name":"SENSOR_CATEGORY_SCANNER","features":[64]},{"name":"SENSOR_CATEGORY_UNSUPPORTED","features":[64]},{"name":"SENSOR_COLLECTION_LIST","features":[64,3,65,44,62]},{"name":"SENSOR_CONNECTION_TYPES","features":[64]},{"name":"SENSOR_CONNECTION_TYPE_PC_ATTACHED","features":[64]},{"name":"SENSOR_CONNECTION_TYPE_PC_EXTERNAL","features":[64]},{"name":"SENSOR_CONNECTION_TYPE_PC_INTEGRATED","features":[64]},{"name":"SENSOR_DATA_TYPE_ABSOLUTE_PRESSURE_PASCAL","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_X_G","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Y_G","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Z_G","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ADDRESS1","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ADDRESS2","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ANTENNA_SEALEVEL_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_ERROR_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_ERROR_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_X_DEGREES_PER_SECOND_SQUARED","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Y_DEGREES_PER_SECOND_SQUARED","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Z_DEGREES_PER_SECOND_SQUARED","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_X_DEGREES_PER_SECOND","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Y_DEGREES_PER_SECOND","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Z_DEGREES_PER_SECOND","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ATMOSPHERIC_PRESSURE_BAR","features":[64,62]},{"name":"SENSOR_DATA_TYPE_BIOMETRIC_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_ARRAY_STATES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_STATE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CAPACITANCE_FARAD","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CITY","features":[64,62]},{"name":"SENSOR_DATA_TYPE_COMMON_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_COUNTRY_REGION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CURRENT_AMPS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_BOOLEAN_ARRAY","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_CUSTOM_USAGE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE1","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE10","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE11","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE12","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE13","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE14","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE15","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE16","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE17","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE18","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE19","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE2","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE20","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE21","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE22","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE23","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE24","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE25","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE26","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE27","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE28","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE3","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE4","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE5","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE6","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE7","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE8","features":[64,62]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE9","features":[64,62]},{"name":"SENSOR_DATA_TYPE_DGPS_DATA_AGE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_DIFFERENTIAL_REFERENCE_STATION_ID","features":[64,62]},{"name":"SENSOR_DATA_TYPE_DISTANCE_X_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Y_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Z_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_FREQUENCY_HERTZ","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_PERCENT_OF_RANGE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_POWER_WATTS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ENVIRONMENTAL_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_ERROR_RADIUS_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_FIX_QUALITY","features":[64,62]},{"name":"SENSOR_DATA_TYPE_FIX_TYPE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_FORCE_NEWTONS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_GAUGE_PRESSURE_PASCAL","features":[64,62]},{"name":"SENSOR_DATA_TYPE_GEOIDAL_SEPARATION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_GPS_OPERATION_MODE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_GPS_SELECTION_MODE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_GPS_STATUS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_GUID_MECHANICAL_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_HORIZONAL_DILUTION_OF_PRECISION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_HUMAN_PRESENCE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_HUMAN_PROXIMITY_METERS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_INDUCTANCE_HENRY","features":[64,62]},{"name":"SENSOR_DATA_TYPE_LATITUDE_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_LIGHT_CHROMACITY","features":[64,62]},{"name":"SENSOR_DATA_TYPE_LIGHT_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_LIGHT_LEVEL_LUX","features":[64,62]},{"name":"SENSOR_DATA_TYPE_LIGHT_TEMPERATURE_KELVIN","features":[64,62]},{"name":"SENSOR_DATA_TYPE_LOCATION_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_LOCATION_SOURCE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_LONGITUDE_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_X_MILLIGAUSS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Y_MILLIGAUSS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Z_MILLIGAUSS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_MAGNETIC_NORTH_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_TRUE_NORTH_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_MAGNETIC_NORTH_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_TRUE_NORTH_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_X_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Y_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Z_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_VARIATION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MAGNETOMETER_ACCURACY","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MOTION_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_MOTION_STATE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_MULTIVALUE_SWITCH_STATE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_NMEA_SENTENCE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ORIENTATION_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_POSITION_DILUTION_OF_PRECISION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_POSTALCODE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_QUADRANT_ANGLE_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_QUATERNION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_RELATIVE_HUMIDITY_PERCENT","features":[64,62]},{"name":"SENSOR_DATA_TYPE_RESISTANCE_OHMS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_RFID_TAG_40_BIT","features":[64,62]},{"name":"SENSOR_DATA_TYPE_ROTATION_MATRIX","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_AZIMUTH","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ELEVATION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ID","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_PRNS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_STN_RATIO","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_COUNT","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS_AND_CONSTELLATIONS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SCANNER_GUID","features":[64]},{"name":"SENSOR_DATA_TYPE_SIMPLE_DEVICE_ORIENTATION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SPEED_KNOTS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_SPEED_METERS_PER_SECOND","features":[64,62]},{"name":"SENSOR_DATA_TYPE_STATE_PROVINCE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_STRAIN","features":[64,62]},{"name":"SENSOR_DATA_TYPE_TEMPERATURE_CELSIUS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_TILT_X_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_TILT_Y_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_TILT_Z_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_TIMESTAMP","features":[64,62]},{"name":"SENSOR_DATA_TYPE_TOUCH_STATE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_TRUE_HEADING_DEGREES","features":[64,62]},{"name":"SENSOR_DATA_TYPE_VERTICAL_DILUTION_OF_PRECISION","features":[64,62]},{"name":"SENSOR_DATA_TYPE_VOLTAGE_VOLTS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_WEIGHT_KILOGRAMS","features":[64,62]},{"name":"SENSOR_DATA_TYPE_WIND_DIRECTION_DEGREES_ANTICLOCKWISE","features":[64,62]},{"name":"SENSOR_DATA_TYPE_WIND_SPEED_METERS_PER_SECOND","features":[64,62]},{"name":"SENSOR_ERROR_PARAMETER_COMMON_GUID","features":[64]},{"name":"SENSOR_EVENT_ACCELEROMETER_SHAKE","features":[64]},{"name":"SENSOR_EVENT_DATA_UPDATED","features":[64]},{"name":"SENSOR_EVENT_PARAMETER_COMMON_GUID","features":[64]},{"name":"SENSOR_EVENT_PARAMETER_EVENT_ID","features":[64,62]},{"name":"SENSOR_EVENT_PARAMETER_STATE","features":[64,62]},{"name":"SENSOR_EVENT_PROPERTY_CHANGED","features":[64]},{"name":"SENSOR_EVENT_STATE_CHANGED","features":[64]},{"name":"SENSOR_PROPERTY_ACCURACY","features":[64,62]},{"name":"SENSOR_PROPERTY_CHANGE_SENSITIVITY","features":[64,62]},{"name":"SENSOR_PROPERTY_CLEAR_ASSISTANCE_DATA","features":[64,62]},{"name":"SENSOR_PROPERTY_COMMON_GUID","features":[64]},{"name":"SENSOR_PROPERTY_CONNECTION_TYPE","features":[64,62]},{"name":"SENSOR_PROPERTY_CURRENT_REPORT_INTERVAL","features":[64,62]},{"name":"SENSOR_PROPERTY_DESCRIPTION","features":[64,62]},{"name":"SENSOR_PROPERTY_DEVICE_PATH","features":[64,62]},{"name":"SENSOR_PROPERTY_FRIENDLY_NAME","features":[64,62]},{"name":"SENSOR_PROPERTY_HID_USAGE","features":[64,62]},{"name":"SENSOR_PROPERTY_LIGHT_RESPONSE_CURVE","features":[64,62]},{"name":"SENSOR_PROPERTY_LIST","features":[64,62]},{"name":"SENSOR_PROPERTY_LIST_HEADER_SIZE","features":[64]},{"name":"SENSOR_PROPERTY_LOCATION_DESIRED_ACCURACY","features":[64,62]},{"name":"SENSOR_PROPERTY_MANUFACTURER","features":[64,62]},{"name":"SENSOR_PROPERTY_MIN_REPORT_INTERVAL","features":[64,62]},{"name":"SENSOR_PROPERTY_MODEL","features":[64,62]},{"name":"SENSOR_PROPERTY_PERSISTENT_UNIQUE_ID","features":[64,62]},{"name":"SENSOR_PROPERTY_RADIO_STATE","features":[64,62]},{"name":"SENSOR_PROPERTY_RADIO_STATE_PREVIOUS","features":[64,62]},{"name":"SENSOR_PROPERTY_RANGE_MAXIMUM","features":[64,62]},{"name":"SENSOR_PROPERTY_RANGE_MINIMUM","features":[64,62]},{"name":"SENSOR_PROPERTY_RESOLUTION","features":[64,62]},{"name":"SENSOR_PROPERTY_SERIAL_NUMBER","features":[64,62]},{"name":"SENSOR_PROPERTY_STATE","features":[64,62]},{"name":"SENSOR_PROPERTY_TEST_GUID","features":[64]},{"name":"SENSOR_PROPERTY_TURN_ON_OFF_NMEA","features":[64,62]},{"name":"SENSOR_PROPERTY_TYPE","features":[64,62]},{"name":"SENSOR_STATE","features":[64]},{"name":"SENSOR_STATE_ACCESS_DENIED","features":[64]},{"name":"SENSOR_STATE_ERROR","features":[64]},{"name":"SENSOR_STATE_INITIALIZING","features":[64]},{"name":"SENSOR_STATE_MAX","features":[64]},{"name":"SENSOR_STATE_MIN","features":[64]},{"name":"SENSOR_STATE_NOT_AVAILABLE","features":[64]},{"name":"SENSOR_STATE_NO_DATA","features":[64]},{"name":"SENSOR_STATE_READY","features":[64]},{"name":"SENSOR_TYPE_ACCELEROMETER_1D","features":[64]},{"name":"SENSOR_TYPE_ACCELEROMETER_2D","features":[64]},{"name":"SENSOR_TYPE_ACCELEROMETER_3D","features":[64]},{"name":"SENSOR_TYPE_AGGREGATED_DEVICE_ORIENTATION","features":[64]},{"name":"SENSOR_TYPE_AGGREGATED_QUADRANT_ORIENTATION","features":[64]},{"name":"SENSOR_TYPE_AGGREGATED_SIMPLE_DEVICE_ORIENTATION","features":[64]},{"name":"SENSOR_TYPE_AMBIENT_LIGHT","features":[64]},{"name":"SENSOR_TYPE_BARCODE_SCANNER","features":[64]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH","features":[64]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH_ARRAY","features":[64]},{"name":"SENSOR_TYPE_CAPACITANCE","features":[64]},{"name":"SENSOR_TYPE_COMPASS_1D","features":[64]},{"name":"SENSOR_TYPE_COMPASS_2D","features":[64]},{"name":"SENSOR_TYPE_COMPASS_3D","features":[64]},{"name":"SENSOR_TYPE_CURRENT","features":[64]},{"name":"SENSOR_TYPE_CUSTOM","features":[64]},{"name":"SENSOR_TYPE_DISTANCE_1D","features":[64]},{"name":"SENSOR_TYPE_DISTANCE_2D","features":[64]},{"name":"SENSOR_TYPE_DISTANCE_3D","features":[64]},{"name":"SENSOR_TYPE_ELECTRICAL_POWER","features":[64]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_ATMOSPHERIC_PRESSURE","features":[64]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_HUMIDITY","features":[64]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_TEMPERATURE","features":[64]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_DIRECTION","features":[64]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_SPEED","features":[64]},{"name":"SENSOR_TYPE_FORCE","features":[64]},{"name":"SENSOR_TYPE_FREQUENCY","features":[64]},{"name":"SENSOR_TYPE_GYROMETER_1D","features":[64]},{"name":"SENSOR_TYPE_GYROMETER_2D","features":[64]},{"name":"SENSOR_TYPE_GYROMETER_3D","features":[64]},{"name":"SENSOR_TYPE_HUMAN_PRESENCE","features":[64]},{"name":"SENSOR_TYPE_HUMAN_PROXIMITY","features":[64]},{"name":"SENSOR_TYPE_INCLINOMETER_1D","features":[64]},{"name":"SENSOR_TYPE_INCLINOMETER_2D","features":[64]},{"name":"SENSOR_TYPE_INCLINOMETER_3D","features":[64]},{"name":"SENSOR_TYPE_INDUCTANCE","features":[64]},{"name":"SENSOR_TYPE_LOCATION_BROADCAST","features":[64]},{"name":"SENSOR_TYPE_LOCATION_DEAD_RECKONING","features":[64]},{"name":"SENSOR_TYPE_LOCATION_GPS","features":[64]},{"name":"SENSOR_TYPE_LOCATION_LOOKUP","features":[64]},{"name":"SENSOR_TYPE_LOCATION_OTHER","features":[64]},{"name":"SENSOR_TYPE_LOCATION_STATIC","features":[64]},{"name":"SENSOR_TYPE_LOCATION_TRIANGULATION","features":[64]},{"name":"SENSOR_TYPE_MOTION_DETECTOR","features":[64]},{"name":"SENSOR_TYPE_MULTIVALUE_SWITCH","features":[64]},{"name":"SENSOR_TYPE_POTENTIOMETER","features":[64]},{"name":"SENSOR_TYPE_PRESSURE","features":[64]},{"name":"SENSOR_TYPE_RESISTANCE","features":[64]},{"name":"SENSOR_TYPE_RFID_SCANNER","features":[64]},{"name":"SENSOR_TYPE_SCALE","features":[64]},{"name":"SENSOR_TYPE_SPEEDOMETER","features":[64]},{"name":"SENSOR_TYPE_STRAIN","features":[64]},{"name":"SENSOR_TYPE_TOUCH","features":[64]},{"name":"SENSOR_TYPE_UNKNOWN","features":[64]},{"name":"SENSOR_TYPE_VOLTAGE","features":[64]},{"name":"SENSOR_VALUE_PAIR","features":[64,3,65,44,62]},{"name":"SIMPLE_DEVICE_ORIENTATION","features":[64]},{"name":"SIMPLE_DEVICE_ORIENTATION_NOT_ROTATED","features":[64]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_180","features":[64]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_270","features":[64]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_90","features":[64]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_DOWN","features":[64]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_UP","features":[64]},{"name":"Sensor","features":[64]},{"name":"SensorCollection","features":[64]},{"name":"SensorCollectionGetAt","features":[64,3,65,44,62]},{"name":"SensorConnectionType","features":[64]},{"name":"SensorConnectionType_Attached","features":[64]},{"name":"SensorConnectionType_External","features":[64]},{"name":"SensorConnectionType_Integrated","features":[64]},{"name":"SensorDataReport","features":[64]},{"name":"SensorManager","features":[64]},{"name":"SensorState","features":[64]},{"name":"SensorState_Active","features":[64]},{"name":"SensorState_Error","features":[64]},{"name":"SensorState_Idle","features":[64]},{"name":"SensorState_Initializing","features":[64]},{"name":"SerializationBufferAllocate","features":[64,3]},{"name":"SerializationBufferFree","features":[64]},{"name":"SimpleDeviceOrientation","features":[64]},{"name":"SimpleDeviceOrientation_Facedown","features":[64]},{"name":"SimpleDeviceOrientation_Faceup","features":[64]},{"name":"SimpleDeviceOrientation_NotRotated","features":[64]},{"name":"SimpleDeviceOrientation_Rotated180DegreesCounterclockwise","features":[64]},{"name":"SimpleDeviceOrientation_Rotated270DegreesCounterclockwise","features":[64]},{"name":"SimpleDeviceOrientation_Rotated90DegreesCounterclockwise","features":[64]},{"name":"VEC3D","features":[64]}],"387":[{"name":"CDB_REPORT_BITS","features":[66]},{"name":"CDB_REPORT_BYTES","features":[66]},{"name":"COMDB_MAX_PORTS_ARBITRATED","features":[66]},{"name":"COMDB_MIN_PORTS_ARBITRATED","features":[66]},{"name":"ComDBClaimNextFreePort","features":[66]},{"name":"ComDBClaimPort","features":[66,3]},{"name":"ComDBClose","features":[66]},{"name":"ComDBGetCurrentPortUsage","features":[66]},{"name":"ComDBOpen","features":[66]},{"name":"ComDBReleasePort","features":[66]},{"name":"ComDBResizeDatabase","features":[66]},{"name":"DEVPKEY_DeviceInterface_Serial_PortName","features":[1,66]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbProductId","features":[1,66]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbVendorId","features":[1,66]},{"name":"EVEN_PARITY","features":[66]},{"name":"HCOMDB","features":[66]},{"name":"IOCTL_INTERNAL_SERENUM_REMOVE_SELF","features":[66]},{"name":"IOCTL_SERIAL_APPLY_DEFAULT_CONFIGURATION","features":[66]},{"name":"IOCTL_SERIAL_CLEAR_STATS","features":[66]},{"name":"IOCTL_SERIAL_CLR_DTR","features":[66]},{"name":"IOCTL_SERIAL_CLR_RTS","features":[66]},{"name":"IOCTL_SERIAL_CONFIG_SIZE","features":[66]},{"name":"IOCTL_SERIAL_GET_BAUD_RATE","features":[66]},{"name":"IOCTL_SERIAL_GET_CHARS","features":[66]},{"name":"IOCTL_SERIAL_GET_COMMCONFIG","features":[66]},{"name":"IOCTL_SERIAL_GET_COMMSTATUS","features":[66]},{"name":"IOCTL_SERIAL_GET_DTRRTS","features":[66]},{"name":"IOCTL_SERIAL_GET_HANDFLOW","features":[66]},{"name":"IOCTL_SERIAL_GET_LINE_CONTROL","features":[66]},{"name":"IOCTL_SERIAL_GET_MODEMSTATUS","features":[66]},{"name":"IOCTL_SERIAL_GET_MODEM_CONTROL","features":[66]},{"name":"IOCTL_SERIAL_GET_PROPERTIES","features":[66]},{"name":"IOCTL_SERIAL_GET_STATS","features":[66]},{"name":"IOCTL_SERIAL_GET_TIMEOUTS","features":[66]},{"name":"IOCTL_SERIAL_GET_WAIT_MASK","features":[66]},{"name":"IOCTL_SERIAL_IMMEDIATE_CHAR","features":[66]},{"name":"IOCTL_SERIAL_INTERNAL_BASIC_SETTINGS","features":[66]},{"name":"IOCTL_SERIAL_INTERNAL_CANCEL_WAIT_WAKE","features":[66]},{"name":"IOCTL_SERIAL_INTERNAL_DO_WAIT_WAKE","features":[66]},{"name":"IOCTL_SERIAL_INTERNAL_RESTORE_SETTINGS","features":[66]},{"name":"IOCTL_SERIAL_PURGE","features":[66]},{"name":"IOCTL_SERIAL_RESET_DEVICE","features":[66]},{"name":"IOCTL_SERIAL_SET_BAUD_RATE","features":[66]},{"name":"IOCTL_SERIAL_SET_BREAK_OFF","features":[66]},{"name":"IOCTL_SERIAL_SET_BREAK_ON","features":[66]},{"name":"IOCTL_SERIAL_SET_CHARS","features":[66]},{"name":"IOCTL_SERIAL_SET_COMMCONFIG","features":[66]},{"name":"IOCTL_SERIAL_SET_DTR","features":[66]},{"name":"IOCTL_SERIAL_SET_FIFO_CONTROL","features":[66]},{"name":"IOCTL_SERIAL_SET_HANDFLOW","features":[66]},{"name":"IOCTL_SERIAL_SET_INTERVAL_TIMER_RESOLUTION","features":[66]},{"name":"IOCTL_SERIAL_SET_LINE_CONTROL","features":[66]},{"name":"IOCTL_SERIAL_SET_MODEM_CONTROL","features":[66]},{"name":"IOCTL_SERIAL_SET_QUEUE_SIZE","features":[66]},{"name":"IOCTL_SERIAL_SET_RTS","features":[66]},{"name":"IOCTL_SERIAL_SET_TIMEOUTS","features":[66]},{"name":"IOCTL_SERIAL_SET_WAIT_MASK","features":[66]},{"name":"IOCTL_SERIAL_SET_XOFF","features":[66]},{"name":"IOCTL_SERIAL_SET_XON","features":[66]},{"name":"IOCTL_SERIAL_WAIT_ON_MASK","features":[66]},{"name":"IOCTL_SERIAL_XOFF_COUNTER","features":[66]},{"name":"MARK_PARITY","features":[66]},{"name":"NO_PARITY","features":[66]},{"name":"ODD_PARITY","features":[66]},{"name":"PSERENUM_READPORT","features":[66]},{"name":"PSERENUM_WRITEPORT","features":[66]},{"name":"SERENUM_PORTION","features":[66]},{"name":"SERENUM_PORT_DESC","features":[66]},{"name":"SERENUM_PORT_PARAMETERS","features":[66]},{"name":"SERIALCONFIG","features":[66]},{"name":"SERIALPERF_STATS","features":[66]},{"name":"SERIAL_BASIC_SETTINGS","features":[66]},{"name":"SERIAL_BAUD_RATE","features":[66]},{"name":"SERIAL_CHARS","features":[66]},{"name":"SERIAL_COMMPROP","features":[66]},{"name":"SERIAL_EV_BREAK","features":[66]},{"name":"SERIAL_EV_CTS","features":[66]},{"name":"SERIAL_EV_DSR","features":[66]},{"name":"SERIAL_EV_ERR","features":[66]},{"name":"SERIAL_EV_EVENT1","features":[66]},{"name":"SERIAL_EV_EVENT2","features":[66]},{"name":"SERIAL_EV_PERR","features":[66]},{"name":"SERIAL_EV_RING","features":[66]},{"name":"SERIAL_EV_RLSD","features":[66]},{"name":"SERIAL_EV_RX80FULL","features":[66]},{"name":"SERIAL_EV_RXCHAR","features":[66]},{"name":"SERIAL_EV_RXFLAG","features":[66]},{"name":"SERIAL_EV_TXEMPTY","features":[66]},{"name":"SERIAL_HANDFLOW","features":[66]},{"name":"SERIAL_LINE_CONTROL","features":[66]},{"name":"SERIAL_LSRMST_ESCAPE","features":[66]},{"name":"SERIAL_LSRMST_LSR_DATA","features":[66]},{"name":"SERIAL_LSRMST_LSR_NODATA","features":[66]},{"name":"SERIAL_LSRMST_MST","features":[66]},{"name":"SERIAL_PURGE_RXABORT","features":[66]},{"name":"SERIAL_PURGE_RXCLEAR","features":[66]},{"name":"SERIAL_PURGE_TXABORT","features":[66]},{"name":"SERIAL_PURGE_TXCLEAR","features":[66]},{"name":"SERIAL_QUEUE_SIZE","features":[66]},{"name":"SERIAL_STATUS","features":[66,3]},{"name":"SERIAL_TIMEOUTS","features":[66]},{"name":"SERIAL_XOFF_COUNTER","features":[66]},{"name":"SPACE_PARITY","features":[66]},{"name":"STOP_BITS_1_5","features":[66]},{"name":"STOP_BITS_2","features":[66]},{"name":"STOP_BIT_1","features":[66]},{"name":"SerenumFirstHalf","features":[66]},{"name":"SerenumSecondHalf","features":[66]},{"name":"SerenumWhole","features":[66]}],"388":[{"name":"ACDGE_GROUP_REMOVED","features":[67]},{"name":"ACDGE_NEW_GROUP","features":[67]},{"name":"ACDGROUP_EVENT","features":[67]},{"name":"ACDQE_NEW_QUEUE","features":[67]},{"name":"ACDQE_QUEUE_REMOVED","features":[67]},{"name":"ACDQUEUE_EVENT","features":[67]},{"name":"ACS_ADDRESSDEVICESPECIFIC","features":[67]},{"name":"ACS_LINEDEVICESPECIFIC","features":[67]},{"name":"ACS_PERMANENTDEVICEGUID","features":[67]},{"name":"ACS_PROTOCOL","features":[67]},{"name":"ACS_PROVIDERSPECIFIC","features":[67]},{"name":"ACS_SWITCHSPECIFIC","features":[67]},{"name":"AC_ADDRESSCAPFLAGS","features":[67]},{"name":"AC_ADDRESSFEATURES","features":[67]},{"name":"AC_ADDRESSID","features":[67]},{"name":"AC_ADDRESSTYPES","features":[67]},{"name":"AC_ANSWERMODES","features":[67]},{"name":"AC_BEARERMODES","features":[67]},{"name":"AC_CALLCOMPLETIONCONDITIONS","features":[67]},{"name":"AC_CALLCOMPLETIONMODES","features":[67]},{"name":"AC_CALLEDIDSUPPORT","features":[67]},{"name":"AC_CALLERIDSUPPORT","features":[67]},{"name":"AC_CALLFEATURES1","features":[67]},{"name":"AC_CALLFEATURES2","features":[67]},{"name":"AC_CONNECTEDIDSUPPORT","features":[67]},{"name":"AC_DEVCAPFLAGS","features":[67]},{"name":"AC_FORWARDMODES","features":[67]},{"name":"AC_GATHERDIGITSMAXTIMEOUT","features":[67]},{"name":"AC_GATHERDIGITSMINTIMEOUT","features":[67]},{"name":"AC_GENERATEDIGITDEFAULTDURATION","features":[67]},{"name":"AC_GENERATEDIGITMAXDURATION","features":[67]},{"name":"AC_GENERATEDIGITMINDURATION","features":[67]},{"name":"AC_GENERATEDIGITSUPPORT","features":[67]},{"name":"AC_GENERATETONEMAXNUMFREQ","features":[67]},{"name":"AC_GENERATETONEMODES","features":[67]},{"name":"AC_LINEFEATURES","features":[67]},{"name":"AC_LINEID","features":[67]},{"name":"AC_MAXACTIVECALLS","features":[67]},{"name":"AC_MAXCALLCOMPLETIONS","features":[67]},{"name":"AC_MAXCALLDATASIZE","features":[67]},{"name":"AC_MAXFORWARDENTRIES","features":[67]},{"name":"AC_MAXFWDNUMRINGS","features":[67]},{"name":"AC_MAXNUMCONFERENCE","features":[67]},{"name":"AC_MAXNUMTRANSCONF","features":[67]},{"name":"AC_MAXONHOLDCALLS","features":[67]},{"name":"AC_MAXONHOLDPENDINGCALLS","features":[67]},{"name":"AC_MAXSPECIFICENTRIES","features":[67]},{"name":"AC_MINFWDNUMRINGS","features":[67]},{"name":"AC_MONITORDIGITSUPPORT","features":[67]},{"name":"AC_MONITORTONEMAXNUMENTRIES","features":[67]},{"name":"AC_MONITORTONEMAXNUMFREQ","features":[67]},{"name":"AC_PARKSUPPORT","features":[67]},{"name":"AC_PERMANENTDEVICEID","features":[67]},{"name":"AC_PREDICTIVEAUTOTRANSFERSTATES","features":[67]},{"name":"AC_REDIRECTINGIDSUPPORT","features":[67]},{"name":"AC_REDIRECTIONIDSUPPORT","features":[67]},{"name":"AC_REMOVEFROMCONFCAPS","features":[67]},{"name":"AC_REMOVEFROMCONFSTATE","features":[67]},{"name":"AC_SETTABLEDEVSTATUS","features":[67]},{"name":"AC_TRANSFERMODES","features":[67]},{"name":"ADDRALIAS","features":[67]},{"name":"ADDRESS_CAPABILITY","features":[67]},{"name":"ADDRESS_CAPABILITY_STRING","features":[67]},{"name":"ADDRESS_EVENT","features":[67]},{"name":"ADDRESS_STATE","features":[67]},{"name":"ADDRESS_TERMINAL_AVAILABLE","features":[67]},{"name":"ADDRESS_TERMINAL_UNAVAILABLE","features":[67]},{"name":"AE_BUSY_ACD","features":[67]},{"name":"AE_BUSY_INCOMING","features":[67]},{"name":"AE_BUSY_OUTGOING","features":[67]},{"name":"AE_CAPSCHANGE","features":[67]},{"name":"AE_CONFIGCHANGE","features":[67]},{"name":"AE_FORWARD","features":[67]},{"name":"AE_LASTITEM","features":[67]},{"name":"AE_MSGWAITOFF","features":[67]},{"name":"AE_MSGWAITON","features":[67]},{"name":"AE_NEWTERMINAL","features":[67]},{"name":"AE_NOT_READY","features":[67]},{"name":"AE_READY","features":[67]},{"name":"AE_REMOVETERMINAL","features":[67]},{"name":"AE_RINGING","features":[67]},{"name":"AE_STATE","features":[67]},{"name":"AE_UNKNOWN","features":[67]},{"name":"AGENTHANDLER_EVENT","features":[67]},{"name":"AGENT_EVENT","features":[67]},{"name":"AGENT_SESSION_EVENT","features":[67]},{"name":"AGENT_SESSION_STATE","features":[67]},{"name":"AGENT_STATE","features":[67]},{"name":"AHE_AGENTHANDLER_REMOVED","features":[67]},{"name":"AHE_NEW_AGENTHANDLER","features":[67]},{"name":"ASE_BUSY","features":[67]},{"name":"ASE_END","features":[67]},{"name":"ASE_NEW_SESSION","features":[67]},{"name":"ASE_NOT_READY","features":[67]},{"name":"ASE_READY","features":[67]},{"name":"ASE_WRAPUP","features":[67]},{"name":"ASST_BUSY_ON_CALL","features":[67]},{"name":"ASST_BUSY_WRAPUP","features":[67]},{"name":"ASST_NOT_READY","features":[67]},{"name":"ASST_READY","features":[67]},{"name":"ASST_SESSION_ENDED","features":[67]},{"name":"ASYNC_COMPLETION","features":[67]},{"name":"AS_BUSY_ACD","features":[67]},{"name":"AS_BUSY_INCOMING","features":[67]},{"name":"AS_BUSY_OUTGOING","features":[67]},{"name":"AS_INSERVICE","features":[67]},{"name":"AS_NOT_READY","features":[67]},{"name":"AS_OUTOFSERVICE","features":[67]},{"name":"AS_READY","features":[67]},{"name":"AS_UNKNOWN","features":[67]},{"name":"CALLHUB_EVENT","features":[67]},{"name":"CALLHUB_STATE","features":[67]},{"name":"CALLINFOCHANGE_CAUSE","features":[67]},{"name":"CALLINFO_BUFFER","features":[67]},{"name":"CALLINFO_LONG","features":[67]},{"name":"CALLINFO_STRING","features":[67]},{"name":"CALL_CAUSE_BAD_DEVICE","features":[67]},{"name":"CALL_CAUSE_CONNECT_FAIL","features":[67]},{"name":"CALL_CAUSE_LOCAL_REQUEST","features":[67]},{"name":"CALL_CAUSE_MEDIA_RECOVERED","features":[67]},{"name":"CALL_CAUSE_MEDIA_TIMEOUT","features":[67]},{"name":"CALL_CAUSE_QUALITY_OF_SERVICE","features":[67]},{"name":"CALL_CAUSE_REMOTE_REQUEST","features":[67]},{"name":"CALL_CAUSE_UNKNOWN","features":[67]},{"name":"CALL_MEDIA_EVENT","features":[67]},{"name":"CALL_MEDIA_EVENT_CAUSE","features":[67]},{"name":"CALL_NEW_STREAM","features":[67]},{"name":"CALL_NOTIFICATION_EVENT","features":[67]},{"name":"CALL_PRIVILEGE","features":[67]},{"name":"CALL_STATE","features":[67]},{"name":"CALL_STATE_EVENT_CAUSE","features":[67]},{"name":"CALL_STREAM_ACTIVE","features":[67]},{"name":"CALL_STREAM_FAIL","features":[67]},{"name":"CALL_STREAM_INACTIVE","features":[67]},{"name":"CALL_STREAM_NOT_USED","features":[67]},{"name":"CALL_TERMINAL_FAIL","features":[67]},{"name":"CEC_DISCONNECT_BADADDRESS","features":[67]},{"name":"CEC_DISCONNECT_BLOCKED","features":[67]},{"name":"CEC_DISCONNECT_BUSY","features":[67]},{"name":"CEC_DISCONNECT_CANCELLED","features":[67]},{"name":"CEC_DISCONNECT_FAILED","features":[67]},{"name":"CEC_DISCONNECT_NOANSWER","features":[67]},{"name":"CEC_DISCONNECT_NORMAL","features":[67]},{"name":"CEC_DISCONNECT_REJECTED","features":[67]},{"name":"CEC_NONE","features":[67]},{"name":"CHE_CALLHUBIDLE","features":[67]},{"name":"CHE_CALLHUBNEW","features":[67]},{"name":"CHE_CALLJOIN","features":[67]},{"name":"CHE_CALLLEAVE","features":[67]},{"name":"CHE_LASTITEM","features":[67]},{"name":"CHS_ACTIVE","features":[67]},{"name":"CHS_IDLE","features":[67]},{"name":"CIB_CALLDATABUFFER","features":[67]},{"name":"CIB_CHARGINGINFOBUFFER","features":[67]},{"name":"CIB_DEVSPECIFICBUFFER","features":[67]},{"name":"CIB_HIGHLEVELCOMPATIBILITYBUFFER","features":[67]},{"name":"CIB_LOWLEVELCOMPATIBILITYBUFFER","features":[67]},{"name":"CIB_USERUSERINFO","features":[67]},{"name":"CIC_APPSPECIFIC","features":[67]},{"name":"CIC_BEARERMODE","features":[67]},{"name":"CIC_CALLDATA","features":[67]},{"name":"CIC_CALLEDID","features":[67]},{"name":"CIC_CALLERID","features":[67]},{"name":"CIC_CALLID","features":[67]},{"name":"CIC_CHARGINGINFO","features":[67]},{"name":"CIC_COMPLETIONID","features":[67]},{"name":"CIC_CONNECTEDID","features":[67]},{"name":"CIC_DEVSPECIFIC","features":[67]},{"name":"CIC_HIGHLEVELCOMP","features":[67]},{"name":"CIC_LASTITEM","features":[67]},{"name":"CIC_LOWLEVELCOMP","features":[67]},{"name":"CIC_MEDIATYPE","features":[67]},{"name":"CIC_NUMMONITORS","features":[67]},{"name":"CIC_NUMOWNERDECR","features":[67]},{"name":"CIC_NUMOWNERINCR","features":[67]},{"name":"CIC_ORIGIN","features":[67]},{"name":"CIC_OTHER","features":[67]},{"name":"CIC_PRIVILEGE","features":[67]},{"name":"CIC_RATE","features":[67]},{"name":"CIC_REASON","features":[67]},{"name":"CIC_REDIRECTINGID","features":[67]},{"name":"CIC_REDIRECTIONID","features":[67]},{"name":"CIC_RELATEDCALLID","features":[67]},{"name":"CIC_TREATMENT","features":[67]},{"name":"CIC_TRUNK","features":[67]},{"name":"CIC_USERUSERINFO","features":[67]},{"name":"CIL_APPSPECIFIC","features":[67]},{"name":"CIL_BEARERMODE","features":[67]},{"name":"CIL_CALLEDIDADDRESSTYPE","features":[67]},{"name":"CIL_CALLERIDADDRESSTYPE","features":[67]},{"name":"CIL_CALLID","features":[67]},{"name":"CIL_CALLPARAMSFLAGS","features":[67]},{"name":"CIL_CALLTREATMENT","features":[67]},{"name":"CIL_COMPLETIONID","features":[67]},{"name":"CIL_CONNECTEDIDADDRESSTYPE","features":[67]},{"name":"CIL_COUNTRYCODE","features":[67]},{"name":"CIL_GENERATEDIGITDURATION","features":[67]},{"name":"CIL_MAXRATE","features":[67]},{"name":"CIL_MEDIATYPESAVAILABLE","features":[67]},{"name":"CIL_MINRATE","features":[67]},{"name":"CIL_MONITORDIGITMODES","features":[67]},{"name":"CIL_MONITORMEDIAMODES","features":[67]},{"name":"CIL_NUMBEROFMONITORS","features":[67]},{"name":"CIL_NUMBEROFOWNERS","features":[67]},{"name":"CIL_ORIGIN","features":[67]},{"name":"CIL_RATE","features":[67]},{"name":"CIL_REASON","features":[67]},{"name":"CIL_REDIRECTINGIDADDRESSTYPE","features":[67]},{"name":"CIL_REDIRECTIONIDADDRESSTYPE","features":[67]},{"name":"CIL_RELATEDCALLID","features":[67]},{"name":"CIL_TRUNK","features":[67]},{"name":"CIS_CALLEDIDNAME","features":[67]},{"name":"CIS_CALLEDIDNUMBER","features":[67]},{"name":"CIS_CALLEDPARTYFRIENDLYNAME","features":[67]},{"name":"CIS_CALLERIDNAME","features":[67]},{"name":"CIS_CALLERIDNUMBER","features":[67]},{"name":"CIS_CALLINGPARTYID","features":[67]},{"name":"CIS_COMMENT","features":[67]},{"name":"CIS_CONNECTEDIDNAME","features":[67]},{"name":"CIS_CONNECTEDIDNUMBER","features":[67]},{"name":"CIS_DISPLAYABLEADDRESS","features":[67]},{"name":"CIS_REDIRECTINGIDNAME","features":[67]},{"name":"CIS_REDIRECTINGIDNUMBER","features":[67]},{"name":"CIS_REDIRECTIONIDNAME","features":[67]},{"name":"CIS_REDIRECTIONIDNUMBER","features":[67]},{"name":"CMC_BAD_DEVICE","features":[67]},{"name":"CMC_CONNECT_FAIL","features":[67]},{"name":"CMC_LOCAL_REQUEST","features":[67]},{"name":"CMC_MEDIA_RECOVERED","features":[67]},{"name":"CMC_MEDIA_TIMEOUT","features":[67]},{"name":"CMC_QUALITY_OF_SERVICE","features":[67]},{"name":"CMC_REMOTE_REQUEST","features":[67]},{"name":"CMC_UNKNOWN","features":[67]},{"name":"CME_LASTITEM","features":[67]},{"name":"CME_NEW_STREAM","features":[67]},{"name":"CME_STREAM_ACTIVE","features":[67]},{"name":"CME_STREAM_FAIL","features":[67]},{"name":"CME_STREAM_INACTIVE","features":[67]},{"name":"CME_STREAM_NOT_USED","features":[67]},{"name":"CME_TERMINAL_FAIL","features":[67]},{"name":"CNE_LASTITEM","features":[67]},{"name":"CNE_MONITOR","features":[67]},{"name":"CNE_OWNER","features":[67]},{"name":"CP_MONITOR","features":[67]},{"name":"CP_OWNER","features":[67]},{"name":"CS_CONNECTED","features":[67]},{"name":"CS_DISCONNECTED","features":[67]},{"name":"CS_HOLD","features":[67]},{"name":"CS_IDLE","features":[67]},{"name":"CS_INPROGRESS","features":[67]},{"name":"CS_LASTITEM","features":[67]},{"name":"CS_OFFERING","features":[67]},{"name":"CS_QUEUED","features":[67]},{"name":"DC_NOANSWER","features":[67]},{"name":"DC_NORMAL","features":[67]},{"name":"DC_REJECTED","features":[67]},{"name":"DIRECTORY_OBJECT_TYPE","features":[67]},{"name":"DIRECTORY_TYPE","features":[67]},{"name":"DISCONNECT_CODE","features":[67]},{"name":"DISPIDMASK","features":[67]},{"name":"DTR","features":[67]},{"name":"DT_ILS","features":[67]},{"name":"DT_NTDS","features":[67]},{"name":"DispatchMapper","features":[67]},{"name":"FDS_NOTSUPPORTED","features":[67]},{"name":"FDS_SUPPORTED","features":[67]},{"name":"FDS_UNKNOWN","features":[67]},{"name":"FINISH_MODE","features":[67]},{"name":"FM_ASCONFERENCE","features":[67]},{"name":"FM_ASTRANSFER","features":[67]},{"name":"FTEC_END_OF_FILE","features":[67]},{"name":"FTEC_NORMAL","features":[67]},{"name":"FTEC_READ_ERROR","features":[67]},{"name":"FTEC_WRITE_ERROR","features":[67]},{"name":"FT_STATE_EVENT_CAUSE","features":[67]},{"name":"FULLDUPLEX_SUPPORT","features":[67]},{"name":"GETTNEFSTREAMCODEPAGE","features":[67]},{"name":"GetTnefStreamCodepage","features":[67]},{"name":"HDRVCALL","features":[67]},{"name":"HDRVDIALOGINSTANCE","features":[67]},{"name":"HDRVLINE","features":[67]},{"name":"HDRVMSPLINE","features":[67]},{"name":"HDRVPHONE","features":[67]},{"name":"HPROVIDER","features":[67]},{"name":"HTAPICALL","features":[67]},{"name":"HTAPILINE","features":[67]},{"name":"HTAPIPHONE","features":[67]},{"name":"IDISPADDRESS","features":[67]},{"name":"IDISPADDRESSCAPABILITIES","features":[67]},{"name":"IDISPADDRESSTRANSLATION","features":[67]},{"name":"IDISPAGGREGATEDMSPADDRESSOBJ","features":[67]},{"name":"IDISPAGGREGATEDMSPCALLOBJ","features":[67]},{"name":"IDISPAPC","features":[67]},{"name":"IDISPBASICCALLCONTROL","features":[67]},{"name":"IDISPCALLINFO","features":[67]},{"name":"IDISPDIRECTORY","features":[67]},{"name":"IDISPDIROBJCONFERENCE","features":[67]},{"name":"IDISPDIROBJECT","features":[67]},{"name":"IDISPDIROBJUSER","features":[67]},{"name":"IDISPFILETRACK","features":[67]},{"name":"IDISPILSCONFIG","features":[67]},{"name":"IDISPLEGACYADDRESSMEDIACONTROL","features":[67]},{"name":"IDISPLEGACYCALLMEDIACONTROL","features":[67]},{"name":"IDISPMEDIACONTROL","features":[67]},{"name":"IDISPMEDIAPLAYBACK","features":[67]},{"name":"IDISPMEDIARECORD","features":[67]},{"name":"IDISPMEDIASUPPORT","features":[67]},{"name":"IDISPMULTITRACK","features":[67]},{"name":"IDISPPHONE","features":[67]},{"name":"IDISPTAPI","features":[67]},{"name":"IDISPTAPICALLCENTER","features":[67]},{"name":"IEnumACDGroup","features":[67]},{"name":"IEnumAddress","features":[67]},{"name":"IEnumAgent","features":[67]},{"name":"IEnumAgentHandler","features":[67]},{"name":"IEnumAgentSession","features":[67]},{"name":"IEnumBstr","features":[67]},{"name":"IEnumCall","features":[67]},{"name":"IEnumCallHub","features":[67]},{"name":"IEnumCallingCard","features":[67]},{"name":"IEnumDialableAddrs","features":[67]},{"name":"IEnumDirectory","features":[67]},{"name":"IEnumDirectoryObject","features":[67]},{"name":"IEnumLocation","features":[67]},{"name":"IEnumMcastScope","features":[67]},{"name":"IEnumPhone","features":[67]},{"name":"IEnumPluggableSuperclassInfo","features":[67]},{"name":"IEnumPluggableTerminalClassInfo","features":[67]},{"name":"IEnumQueue","features":[67]},{"name":"IEnumStream","features":[67]},{"name":"IEnumSubStream","features":[67]},{"name":"IEnumTerminal","features":[67]},{"name":"IEnumTerminalClass","features":[67]},{"name":"IMcastAddressAllocation","features":[67]},{"name":"IMcastLeaseInfo","features":[67]},{"name":"IMcastScope","features":[67]},{"name":"INITIALIZE_NEGOTIATION","features":[67]},{"name":"INTERFACEMASK","features":[67]},{"name":"ITACDGroup","features":[67]},{"name":"ITACDGroupEvent","features":[67]},{"name":"ITAMMediaFormat","features":[67]},{"name":"ITASRTerminalEvent","features":[67]},{"name":"ITAddress","features":[67]},{"name":"ITAddress2","features":[67]},{"name":"ITAddressCapabilities","features":[67]},{"name":"ITAddressDeviceSpecificEvent","features":[67]},{"name":"ITAddressEvent","features":[67]},{"name":"ITAddressTranslation","features":[67]},{"name":"ITAddressTranslationInfo","features":[67]},{"name":"ITAgent","features":[67]},{"name":"ITAgentEvent","features":[67]},{"name":"ITAgentHandler","features":[67]},{"name":"ITAgentHandlerEvent","features":[67]},{"name":"ITAgentSession","features":[67]},{"name":"ITAgentSessionEvent","features":[67]},{"name":"ITAllocatorProperties","features":[67]},{"name":"ITAutomatedPhoneControl","features":[67]},{"name":"ITBasicAudioTerminal","features":[67]},{"name":"ITBasicCallControl","features":[67]},{"name":"ITBasicCallControl2","features":[67]},{"name":"ITCallHub","features":[67]},{"name":"ITCallHubEvent","features":[67]},{"name":"ITCallInfo","features":[67]},{"name":"ITCallInfo2","features":[67]},{"name":"ITCallInfoChangeEvent","features":[67]},{"name":"ITCallMediaEvent","features":[67]},{"name":"ITCallNotificationEvent","features":[67]},{"name":"ITCallStateEvent","features":[67]},{"name":"ITCallingCard","features":[67]},{"name":"ITCollection","features":[67]},{"name":"ITCollection2","features":[67]},{"name":"ITCustomTone","features":[67]},{"name":"ITDetectTone","features":[67]},{"name":"ITDigitDetectionEvent","features":[67]},{"name":"ITDigitGenerationEvent","features":[67]},{"name":"ITDigitsGatheredEvent","features":[67]},{"name":"ITDirectory","features":[67]},{"name":"ITDirectoryObject","features":[67]},{"name":"ITDirectoryObjectConference","features":[67]},{"name":"ITDirectoryObjectUser","features":[67]},{"name":"ITDispatchMapper","features":[67]},{"name":"ITFileTerminalEvent","features":[67]},{"name":"ITFileTrack","features":[67]},{"name":"ITForwardInformation","features":[67]},{"name":"ITForwardInformation2","features":[67]},{"name":"ITILSConfig","features":[67]},{"name":"ITLegacyAddressMediaControl","features":[67]},{"name":"ITLegacyAddressMediaControl2","features":[67]},{"name":"ITLegacyCallMediaControl","features":[67]},{"name":"ITLegacyCallMediaControl2","features":[67]},{"name":"ITLegacyWaveSupport","features":[67]},{"name":"ITLocationInfo","features":[67]},{"name":"ITMSPAddress","features":[67]},{"name":"ITMediaControl","features":[67]},{"name":"ITMediaPlayback","features":[67]},{"name":"ITMediaRecord","features":[67]},{"name":"ITMediaSupport","features":[67]},{"name":"ITMultiTrackTerminal","features":[67]},{"name":"ITPhone","features":[67]},{"name":"ITPhoneDeviceSpecificEvent","features":[67]},{"name":"ITPhoneEvent","features":[67]},{"name":"ITPluggableTerminalClassInfo","features":[67]},{"name":"ITPluggableTerminalEventSink","features":[67]},{"name":"ITPluggableTerminalEventSinkRegistration","features":[67]},{"name":"ITPluggableTerminalSuperclassInfo","features":[67]},{"name":"ITPrivateEvent","features":[67]},{"name":"ITQOSEvent","features":[67]},{"name":"ITQueue","features":[67]},{"name":"ITQueueEvent","features":[67]},{"name":"ITRendezvous","features":[67]},{"name":"ITRequest","features":[67]},{"name":"ITRequestEvent","features":[67]},{"name":"ITScriptableAudioFormat","features":[67]},{"name":"ITStaticAudioTerminal","features":[67]},{"name":"ITStream","features":[67]},{"name":"ITStreamControl","features":[67]},{"name":"ITSubStream","features":[67]},{"name":"ITSubStreamControl","features":[67]},{"name":"ITTAPI","features":[67]},{"name":"ITTAPI2","features":[67]},{"name":"ITTAPICallCenter","features":[67]},{"name":"ITTAPIDispatchEventNotification","features":[67]},{"name":"ITTAPIEventNotification","features":[67]},{"name":"ITTAPIObjectEvent","features":[67]},{"name":"ITTAPIObjectEvent2","features":[67]},{"name":"ITTTSTerminalEvent","features":[67]},{"name":"ITTerminal","features":[67]},{"name":"ITTerminalSupport","features":[67]},{"name":"ITTerminalSupport2","features":[67]},{"name":"ITToneDetectionEvent","features":[67]},{"name":"ITToneTerminalEvent","features":[67]},{"name":"ITnef","features":[67]},{"name":"LAST_LINEMEDIAMODE","features":[67]},{"name":"LAST_LINEREQUESTMODE","features":[67]},{"name":"LINEADDRCAPFLAGS_ACCEPTTOALERT","features":[67]},{"name":"LINEADDRCAPFLAGS_ACDGROUP","features":[67]},{"name":"LINEADDRCAPFLAGS_AUTORECONNECT","features":[67]},{"name":"LINEADDRCAPFLAGS_BLOCKIDDEFAULT","features":[67]},{"name":"LINEADDRCAPFLAGS_BLOCKIDOVERRIDE","features":[67]},{"name":"LINEADDRCAPFLAGS_COMPLETIONID","features":[67]},{"name":"LINEADDRCAPFLAGS_CONFDROP","features":[67]},{"name":"LINEADDRCAPFLAGS_CONFERENCEHELD","features":[67]},{"name":"LINEADDRCAPFLAGS_CONFERENCEMAKE","features":[67]},{"name":"LINEADDRCAPFLAGS_DESTOFFHOOK","features":[67]},{"name":"LINEADDRCAPFLAGS_DIALED","features":[67]},{"name":"LINEADDRCAPFLAGS_FWDBUSYNAADDR","features":[67]},{"name":"LINEADDRCAPFLAGS_FWDCONSULT","features":[67]},{"name":"LINEADDRCAPFLAGS_FWDINTEXTADDR","features":[67]},{"name":"LINEADDRCAPFLAGS_FWDNUMRINGS","features":[67]},{"name":"LINEADDRCAPFLAGS_FWDSTATUSVALID","features":[67]},{"name":"LINEADDRCAPFLAGS_HOLDMAKESNEW","features":[67]},{"name":"LINEADDRCAPFLAGS_NOEXTERNALCALLS","features":[67]},{"name":"LINEADDRCAPFLAGS_NOINTERNALCALLS","features":[67]},{"name":"LINEADDRCAPFLAGS_NOPSTNADDRESSTRANSLATION","features":[67]},{"name":"LINEADDRCAPFLAGS_ORIGOFFHOOK","features":[67]},{"name":"LINEADDRCAPFLAGS_PARTIALDIAL","features":[67]},{"name":"LINEADDRCAPFLAGS_PICKUPCALLWAIT","features":[67]},{"name":"LINEADDRCAPFLAGS_PICKUPGROUPID","features":[67]},{"name":"LINEADDRCAPFLAGS_PREDICTIVEDIALER","features":[67]},{"name":"LINEADDRCAPFLAGS_QUEUE","features":[67]},{"name":"LINEADDRCAPFLAGS_ROUTEPOINT","features":[67]},{"name":"LINEADDRCAPFLAGS_SECURE","features":[67]},{"name":"LINEADDRCAPFLAGS_SETCALLINGID","features":[67]},{"name":"LINEADDRCAPFLAGS_SETUPCONFNULL","features":[67]},{"name":"LINEADDRCAPFLAGS_TRANSFERHELD","features":[67]},{"name":"LINEADDRCAPFLAGS_TRANSFERMAKE","features":[67]},{"name":"LINEADDRESSCAPS","features":[67]},{"name":"LINEADDRESSMODE_ADDRESSID","features":[67]},{"name":"LINEADDRESSMODE_DIALABLEADDR","features":[67]},{"name":"LINEADDRESSSHARING_BRIDGEDEXCL","features":[67]},{"name":"LINEADDRESSSHARING_BRIDGEDNEW","features":[67]},{"name":"LINEADDRESSSHARING_BRIDGEDSHARED","features":[67]},{"name":"LINEADDRESSSHARING_MONITORED","features":[67]},{"name":"LINEADDRESSSHARING_PRIVATE","features":[67]},{"name":"LINEADDRESSSTATE_CAPSCHANGE","features":[67]},{"name":"LINEADDRESSSTATE_DEVSPECIFIC","features":[67]},{"name":"LINEADDRESSSTATE_FORWARD","features":[67]},{"name":"LINEADDRESSSTATE_INUSEMANY","features":[67]},{"name":"LINEADDRESSSTATE_INUSEONE","features":[67]},{"name":"LINEADDRESSSTATE_INUSEZERO","features":[67]},{"name":"LINEADDRESSSTATE_NUMCALLS","features":[67]},{"name":"LINEADDRESSSTATE_OTHER","features":[67]},{"name":"LINEADDRESSSTATE_TERMINALS","features":[67]},{"name":"LINEADDRESSSTATUS","features":[67]},{"name":"LINEADDRESSTYPE_DOMAINNAME","features":[67]},{"name":"LINEADDRESSTYPE_EMAILNAME","features":[67]},{"name":"LINEADDRESSTYPE_IPADDRESS","features":[67]},{"name":"LINEADDRESSTYPE_PHONENUMBER","features":[67]},{"name":"LINEADDRESSTYPE_SDP","features":[67]},{"name":"LINEADDRFEATURE_FORWARD","features":[67]},{"name":"LINEADDRFEATURE_FORWARDDND","features":[67]},{"name":"LINEADDRFEATURE_FORWARDFWD","features":[67]},{"name":"LINEADDRFEATURE_MAKECALL","features":[67]},{"name":"LINEADDRFEATURE_PICKUP","features":[67]},{"name":"LINEADDRFEATURE_PICKUPDIRECT","features":[67]},{"name":"LINEADDRFEATURE_PICKUPGROUP","features":[67]},{"name":"LINEADDRFEATURE_PICKUPHELD","features":[67]},{"name":"LINEADDRFEATURE_PICKUPWAITING","features":[67]},{"name":"LINEADDRFEATURE_SETMEDIACONTROL","features":[67]},{"name":"LINEADDRFEATURE_SETTERMINAL","features":[67]},{"name":"LINEADDRFEATURE_SETUPCONF","features":[67]},{"name":"LINEADDRFEATURE_UNCOMPLETECALL","features":[67]},{"name":"LINEADDRFEATURE_UNPARK","features":[67]},{"name":"LINEAGENTACTIVITYENTRY","features":[67]},{"name":"LINEAGENTACTIVITYLIST","features":[67]},{"name":"LINEAGENTCAPS","features":[67]},{"name":"LINEAGENTENTRY","features":[67]},{"name":"LINEAGENTFEATURE_AGENTSPECIFIC","features":[67]},{"name":"LINEAGENTFEATURE_GETAGENTACTIVITYLIST","features":[67]},{"name":"LINEAGENTFEATURE_GETAGENTGROUP","features":[67]},{"name":"LINEAGENTFEATURE_SETAGENTACTIVITY","features":[67]},{"name":"LINEAGENTFEATURE_SETAGENTGROUP","features":[67]},{"name":"LINEAGENTFEATURE_SETAGENTSTATE","features":[67]},{"name":"LINEAGENTGROUPENTRY","features":[67]},{"name":"LINEAGENTGROUPLIST","features":[67]},{"name":"LINEAGENTINFO","features":[67,43]},{"name":"LINEAGENTLIST","features":[67]},{"name":"LINEAGENTSESSIONENTRY","features":[67]},{"name":"LINEAGENTSESSIONINFO","features":[67,43]},{"name":"LINEAGENTSESSIONLIST","features":[67]},{"name":"LINEAGENTSESSIONSTATE_BUSYONCALL","features":[67]},{"name":"LINEAGENTSESSIONSTATE_BUSYWRAPUP","features":[67]},{"name":"LINEAGENTSESSIONSTATE_ENDED","features":[67]},{"name":"LINEAGENTSESSIONSTATE_NOTREADY","features":[67]},{"name":"LINEAGENTSESSIONSTATE_READY","features":[67]},{"name":"LINEAGENTSESSIONSTATE_RELEASED","features":[67]},{"name":"LINEAGENTSESSIONSTATUS_NEWSESSION","features":[67]},{"name":"LINEAGENTSESSIONSTATUS_STATE","features":[67]},{"name":"LINEAGENTSESSIONSTATUS_UPDATEINFO","features":[67]},{"name":"LINEAGENTSTATEEX_BUSYACD","features":[67]},{"name":"LINEAGENTSTATEEX_BUSYINCOMING","features":[67]},{"name":"LINEAGENTSTATEEX_BUSYOUTGOING","features":[67]},{"name":"LINEAGENTSTATEEX_NOTREADY","features":[67]},{"name":"LINEAGENTSTATEEX_READY","features":[67]},{"name":"LINEAGENTSTATEEX_RELEASED","features":[67]},{"name":"LINEAGENTSTATEEX_UNKNOWN","features":[67]},{"name":"LINEAGENTSTATE_BUSYACD","features":[67]},{"name":"LINEAGENTSTATE_BUSYINCOMING","features":[67]},{"name":"LINEAGENTSTATE_BUSYOTHER","features":[67]},{"name":"LINEAGENTSTATE_BUSYOUTBOUND","features":[67]},{"name":"LINEAGENTSTATE_LOGGEDOFF","features":[67]},{"name":"LINEAGENTSTATE_NOTREADY","features":[67]},{"name":"LINEAGENTSTATE_READY","features":[67]},{"name":"LINEAGENTSTATE_UNAVAIL","features":[67]},{"name":"LINEAGENTSTATE_UNKNOWN","features":[67]},{"name":"LINEAGENTSTATE_WORKINGAFTERCALL","features":[67]},{"name":"LINEAGENTSTATUS","features":[67]},{"name":"LINEAGENTSTATUSEX_NEWAGENT","features":[67]},{"name":"LINEAGENTSTATUSEX_STATE","features":[67]},{"name":"LINEAGENTSTATUSEX_UPDATEINFO","features":[67]},{"name":"LINEAGENTSTATUS_ACTIVITY","features":[67]},{"name":"LINEAGENTSTATUS_ACTIVITYLIST","features":[67]},{"name":"LINEAGENTSTATUS_CAPSCHANGE","features":[67]},{"name":"LINEAGENTSTATUS_GROUP","features":[67]},{"name":"LINEAGENTSTATUS_GROUPLIST","features":[67]},{"name":"LINEAGENTSTATUS_NEXTSTATE","features":[67]},{"name":"LINEAGENTSTATUS_STATE","features":[67]},{"name":"LINEAGENTSTATUS_VALIDNEXTSTATES","features":[67]},{"name":"LINEAGENTSTATUS_VALIDSTATES","features":[67]},{"name":"LINEANSWERMODE_DROP","features":[67]},{"name":"LINEANSWERMODE_HOLD","features":[67]},{"name":"LINEANSWERMODE_NONE","features":[67]},{"name":"LINEAPPINFO","features":[67]},{"name":"LINEBEARERMODE_ALTSPEECHDATA","features":[67]},{"name":"LINEBEARERMODE_DATA","features":[67]},{"name":"LINEBEARERMODE_MULTIUSE","features":[67]},{"name":"LINEBEARERMODE_NONCALLSIGNALING","features":[67]},{"name":"LINEBEARERMODE_PASSTHROUGH","features":[67]},{"name":"LINEBEARERMODE_RESTRICTEDDATA","features":[67]},{"name":"LINEBEARERMODE_SPEECH","features":[67]},{"name":"LINEBEARERMODE_VOICE","features":[67]},{"name":"LINEBUSYMODE_STATION","features":[67]},{"name":"LINEBUSYMODE_TRUNK","features":[67]},{"name":"LINEBUSYMODE_UNAVAIL","features":[67]},{"name":"LINEBUSYMODE_UNKNOWN","features":[67]},{"name":"LINECALLBACK","features":[67]},{"name":"LINECALLCOMPLCOND_BUSY","features":[67]},{"name":"LINECALLCOMPLCOND_NOANSWER","features":[67]},{"name":"LINECALLCOMPLMODE_CALLBACK","features":[67]},{"name":"LINECALLCOMPLMODE_CAMPON","features":[67]},{"name":"LINECALLCOMPLMODE_INTRUDE","features":[67]},{"name":"LINECALLCOMPLMODE_MESSAGE","features":[67]},{"name":"LINECALLFEATURE2_COMPLCALLBACK","features":[67]},{"name":"LINECALLFEATURE2_COMPLCAMPON","features":[67]},{"name":"LINECALLFEATURE2_COMPLINTRUDE","features":[67]},{"name":"LINECALLFEATURE2_COMPLMESSAGE","features":[67]},{"name":"LINECALLFEATURE2_NOHOLDCONFERENCE","features":[67]},{"name":"LINECALLFEATURE2_ONESTEPTRANSFER","features":[67]},{"name":"LINECALLFEATURE2_PARKDIRECT","features":[67]},{"name":"LINECALLFEATURE2_PARKNONDIRECT","features":[67]},{"name":"LINECALLFEATURE2_TRANSFERCONF","features":[67]},{"name":"LINECALLFEATURE2_TRANSFERNORM","features":[67]},{"name":"LINECALLFEATURE_ACCEPT","features":[67]},{"name":"LINECALLFEATURE_ADDTOCONF","features":[67]},{"name":"LINECALLFEATURE_ANSWER","features":[67]},{"name":"LINECALLFEATURE_BLINDTRANSFER","features":[67]},{"name":"LINECALLFEATURE_COMPLETECALL","features":[67]},{"name":"LINECALLFEATURE_COMPLETETRANSF","features":[67]},{"name":"LINECALLFEATURE_DIAL","features":[67]},{"name":"LINECALLFEATURE_DROP","features":[67]},{"name":"LINECALLFEATURE_GATHERDIGITS","features":[67]},{"name":"LINECALLFEATURE_GENERATEDIGITS","features":[67]},{"name":"LINECALLFEATURE_GENERATETONE","features":[67]},{"name":"LINECALLFEATURE_HOLD","features":[67]},{"name":"LINECALLFEATURE_MONITORDIGITS","features":[67]},{"name":"LINECALLFEATURE_MONITORMEDIA","features":[67]},{"name":"LINECALLFEATURE_MONITORTONES","features":[67]},{"name":"LINECALLFEATURE_PARK","features":[67]},{"name":"LINECALLFEATURE_PREPAREADDCONF","features":[67]},{"name":"LINECALLFEATURE_REDIRECT","features":[67]},{"name":"LINECALLFEATURE_RELEASEUSERUSERINFO","features":[67]},{"name":"LINECALLFEATURE_REMOVEFROMCONF","features":[67]},{"name":"LINECALLFEATURE_SECURECALL","features":[67]},{"name":"LINECALLFEATURE_SENDUSERUSER","features":[67]},{"name":"LINECALLFEATURE_SETCALLDATA","features":[67]},{"name":"LINECALLFEATURE_SETCALLPARAMS","features":[67]},{"name":"LINECALLFEATURE_SETMEDIACONTROL","features":[67]},{"name":"LINECALLFEATURE_SETQOS","features":[67]},{"name":"LINECALLFEATURE_SETTERMINAL","features":[67]},{"name":"LINECALLFEATURE_SETTREATMENT","features":[67]},{"name":"LINECALLFEATURE_SETUPCONF","features":[67]},{"name":"LINECALLFEATURE_SETUPTRANSFER","features":[67]},{"name":"LINECALLFEATURE_SWAPHOLD","features":[67]},{"name":"LINECALLFEATURE_UNHOLD","features":[67]},{"name":"LINECALLHUBTRACKING_ALLCALLS","features":[67]},{"name":"LINECALLHUBTRACKING_NONE","features":[67]},{"name":"LINECALLHUBTRACKING_PROVIDERLEVEL","features":[67]},{"name":"LINECALLINFO","features":[67]},{"name":"LINECALLINFOSTATE_APPSPECIFIC","features":[67]},{"name":"LINECALLINFOSTATE_BEARERMODE","features":[67]},{"name":"LINECALLINFOSTATE_CALLDATA","features":[67]},{"name":"LINECALLINFOSTATE_CALLEDID","features":[67]},{"name":"LINECALLINFOSTATE_CALLERID","features":[67]},{"name":"LINECALLINFOSTATE_CALLID","features":[67]},{"name":"LINECALLINFOSTATE_CHARGINGINFO","features":[67]},{"name":"LINECALLINFOSTATE_COMPLETIONID","features":[67]},{"name":"LINECALLINFOSTATE_CONNECTEDID","features":[67]},{"name":"LINECALLINFOSTATE_DEVSPECIFIC","features":[67]},{"name":"LINECALLINFOSTATE_DIALPARAMS","features":[67]},{"name":"LINECALLINFOSTATE_DISPLAY","features":[67]},{"name":"LINECALLINFOSTATE_HIGHLEVELCOMP","features":[67]},{"name":"LINECALLINFOSTATE_LOWLEVELCOMP","features":[67]},{"name":"LINECALLINFOSTATE_MEDIAMODE","features":[67]},{"name":"LINECALLINFOSTATE_MONITORMODES","features":[67]},{"name":"LINECALLINFOSTATE_NUMMONITORS","features":[67]},{"name":"LINECALLINFOSTATE_NUMOWNERDECR","features":[67]},{"name":"LINECALLINFOSTATE_NUMOWNERINCR","features":[67]},{"name":"LINECALLINFOSTATE_ORIGIN","features":[67]},{"name":"LINECALLINFOSTATE_OTHER","features":[67]},{"name":"LINECALLINFOSTATE_QOS","features":[67]},{"name":"LINECALLINFOSTATE_RATE","features":[67]},{"name":"LINECALLINFOSTATE_REASON","features":[67]},{"name":"LINECALLINFOSTATE_REDIRECTINGID","features":[67]},{"name":"LINECALLINFOSTATE_REDIRECTIONID","features":[67]},{"name":"LINECALLINFOSTATE_RELATEDCALLID","features":[67]},{"name":"LINECALLINFOSTATE_TERMINAL","features":[67]},{"name":"LINECALLINFOSTATE_TREATMENT","features":[67]},{"name":"LINECALLINFOSTATE_TRUNK","features":[67]},{"name":"LINECALLINFOSTATE_USERUSERINFO","features":[67]},{"name":"LINECALLLIST","features":[67]},{"name":"LINECALLORIGIN_CONFERENCE","features":[67]},{"name":"LINECALLORIGIN_EXTERNAL","features":[67]},{"name":"LINECALLORIGIN_INBOUND","features":[67]},{"name":"LINECALLORIGIN_INTERNAL","features":[67]},{"name":"LINECALLORIGIN_OUTBOUND","features":[67]},{"name":"LINECALLORIGIN_UNAVAIL","features":[67]},{"name":"LINECALLORIGIN_UNKNOWN","features":[67]},{"name":"LINECALLPARAMFLAGS_BLOCKID","features":[67]},{"name":"LINECALLPARAMFLAGS_DESTOFFHOOK","features":[67]},{"name":"LINECALLPARAMFLAGS_IDLE","features":[67]},{"name":"LINECALLPARAMFLAGS_NOHOLDCONFERENCE","features":[67]},{"name":"LINECALLPARAMFLAGS_ONESTEPTRANSFER","features":[67]},{"name":"LINECALLPARAMFLAGS_ORIGOFFHOOK","features":[67]},{"name":"LINECALLPARAMFLAGS_PREDICTIVEDIAL","features":[67]},{"name":"LINECALLPARAMFLAGS_SECURE","features":[67]},{"name":"LINECALLPARAMS","features":[67]},{"name":"LINECALLPARTYID_ADDRESS","features":[67]},{"name":"LINECALLPARTYID_BLOCKED","features":[67]},{"name":"LINECALLPARTYID_NAME","features":[67]},{"name":"LINECALLPARTYID_OUTOFAREA","features":[67]},{"name":"LINECALLPARTYID_PARTIAL","features":[67]},{"name":"LINECALLPARTYID_UNAVAIL","features":[67]},{"name":"LINECALLPARTYID_UNKNOWN","features":[67]},{"name":"LINECALLPRIVILEGE_MONITOR","features":[67]},{"name":"LINECALLPRIVILEGE_NONE","features":[67]},{"name":"LINECALLPRIVILEGE_OWNER","features":[67]},{"name":"LINECALLREASON_CALLCOMPLETION","features":[67]},{"name":"LINECALLREASON_CAMPEDON","features":[67]},{"name":"LINECALLREASON_DIRECT","features":[67]},{"name":"LINECALLREASON_FWDBUSY","features":[67]},{"name":"LINECALLREASON_FWDNOANSWER","features":[67]},{"name":"LINECALLREASON_FWDUNCOND","features":[67]},{"name":"LINECALLREASON_INTRUDE","features":[67]},{"name":"LINECALLREASON_PARKED","features":[67]},{"name":"LINECALLREASON_PICKUP","features":[67]},{"name":"LINECALLREASON_REDIRECT","features":[67]},{"name":"LINECALLREASON_REMINDER","features":[67]},{"name":"LINECALLREASON_ROUTEREQUEST","features":[67]},{"name":"LINECALLREASON_TRANSFER","features":[67]},{"name":"LINECALLREASON_UNAVAIL","features":[67]},{"name":"LINECALLREASON_UNKNOWN","features":[67]},{"name":"LINECALLREASON_UNPARK","features":[67]},{"name":"LINECALLSELECT_ADDRESS","features":[67]},{"name":"LINECALLSELECT_CALL","features":[67]},{"name":"LINECALLSELECT_CALLID","features":[67]},{"name":"LINECALLSELECT_DEVICEID","features":[67]},{"name":"LINECALLSELECT_LINE","features":[67]},{"name":"LINECALLSTATE_ACCEPTED","features":[67]},{"name":"LINECALLSTATE_BUSY","features":[67]},{"name":"LINECALLSTATE_CONFERENCED","features":[67]},{"name":"LINECALLSTATE_CONNECTED","features":[67]},{"name":"LINECALLSTATE_DIALING","features":[67]},{"name":"LINECALLSTATE_DIALTONE","features":[67]},{"name":"LINECALLSTATE_DISCONNECTED","features":[67]},{"name":"LINECALLSTATE_IDLE","features":[67]},{"name":"LINECALLSTATE_OFFERING","features":[67]},{"name":"LINECALLSTATE_ONHOLD","features":[67]},{"name":"LINECALLSTATE_ONHOLDPENDCONF","features":[67]},{"name":"LINECALLSTATE_ONHOLDPENDTRANSFER","features":[67]},{"name":"LINECALLSTATE_PROCEEDING","features":[67]},{"name":"LINECALLSTATE_RINGBACK","features":[67]},{"name":"LINECALLSTATE_SPECIALINFO","features":[67]},{"name":"LINECALLSTATE_UNKNOWN","features":[67]},{"name":"LINECALLSTATUS","features":[67,3]},{"name":"LINECALLTREATMENTENTRY","features":[67]},{"name":"LINECALLTREATMENT_BUSY","features":[67]},{"name":"LINECALLTREATMENT_MUSIC","features":[67]},{"name":"LINECALLTREATMENT_RINGBACK","features":[67]},{"name":"LINECALLTREATMENT_SILENCE","features":[67]},{"name":"LINECARDENTRY","features":[67]},{"name":"LINECARDOPTION_HIDDEN","features":[67]},{"name":"LINECARDOPTION_PREDEFINED","features":[67]},{"name":"LINECONNECTEDMODE_ACTIVE","features":[67]},{"name":"LINECONNECTEDMODE_ACTIVEHELD","features":[67]},{"name":"LINECONNECTEDMODE_CONFIRMED","features":[67]},{"name":"LINECONNECTEDMODE_INACTIVE","features":[67]},{"name":"LINECONNECTEDMODE_INACTIVEHELD","features":[67]},{"name":"LINECOUNTRYENTRY","features":[67]},{"name":"LINECOUNTRYLIST","features":[67]},{"name":"LINEDEVCAPFLAGS_CALLHUB","features":[67]},{"name":"LINEDEVCAPFLAGS_CALLHUBTRACKING","features":[67]},{"name":"LINEDEVCAPFLAGS_CLOSEDROP","features":[67]},{"name":"LINEDEVCAPFLAGS_CROSSADDRCONF","features":[67]},{"name":"LINEDEVCAPFLAGS_DIALBILLING","features":[67]},{"name":"LINEDEVCAPFLAGS_DIALDIALTONE","features":[67]},{"name":"LINEDEVCAPFLAGS_DIALQUIET","features":[67]},{"name":"LINEDEVCAPFLAGS_HIGHLEVCOMP","features":[67]},{"name":"LINEDEVCAPFLAGS_LOCAL","features":[67]},{"name":"LINEDEVCAPFLAGS_LOWLEVCOMP","features":[67]},{"name":"LINEDEVCAPFLAGS_MEDIACONTROL","features":[67]},{"name":"LINEDEVCAPFLAGS_MSP","features":[67]},{"name":"LINEDEVCAPFLAGS_MULTIPLEADDR","features":[67]},{"name":"LINEDEVCAPFLAGS_PRIVATEOBJECTS","features":[67]},{"name":"LINEDEVCAPS","features":[67]},{"name":"LINEDEVSTATE_BATTERY","features":[67]},{"name":"LINEDEVSTATE_CAPSCHANGE","features":[67]},{"name":"LINEDEVSTATE_CLOSE","features":[67]},{"name":"LINEDEVSTATE_COMPLCANCEL","features":[67]},{"name":"LINEDEVSTATE_CONFIGCHANGE","features":[67]},{"name":"LINEDEVSTATE_CONNECTED","features":[67]},{"name":"LINEDEVSTATE_DEVSPECIFIC","features":[67]},{"name":"LINEDEVSTATE_DISCONNECTED","features":[67]},{"name":"LINEDEVSTATE_INSERVICE","features":[67]},{"name":"LINEDEVSTATE_LOCK","features":[67]},{"name":"LINEDEVSTATE_MAINTENANCE","features":[67]},{"name":"LINEDEVSTATE_MSGWAITOFF","features":[67]},{"name":"LINEDEVSTATE_MSGWAITON","features":[67]},{"name":"LINEDEVSTATE_NUMCALLS","features":[67]},{"name":"LINEDEVSTATE_NUMCOMPLETIONS","features":[67]},{"name":"LINEDEVSTATE_OPEN","features":[67]},{"name":"LINEDEVSTATE_OTHER","features":[67]},{"name":"LINEDEVSTATE_OUTOFSERVICE","features":[67]},{"name":"LINEDEVSTATE_REINIT","features":[67]},{"name":"LINEDEVSTATE_REMOVED","features":[67]},{"name":"LINEDEVSTATE_RINGING","features":[67]},{"name":"LINEDEVSTATE_ROAMMODE","features":[67]},{"name":"LINEDEVSTATE_SIGNAL","features":[67]},{"name":"LINEDEVSTATE_TERMINALS","features":[67]},{"name":"LINEDEVSTATE_TRANSLATECHANGE","features":[67]},{"name":"LINEDEVSTATUS","features":[67]},{"name":"LINEDEVSTATUSFLAGS_CONNECTED","features":[67]},{"name":"LINEDEVSTATUSFLAGS_INSERVICE","features":[67]},{"name":"LINEDEVSTATUSFLAGS_LOCKED","features":[67]},{"name":"LINEDEVSTATUSFLAGS_MSGWAIT","features":[67]},{"name":"LINEDIALPARAMS","features":[67]},{"name":"LINEDIALTONEMODE_EXTERNAL","features":[67]},{"name":"LINEDIALTONEMODE_INTERNAL","features":[67]},{"name":"LINEDIALTONEMODE_NORMAL","features":[67]},{"name":"LINEDIALTONEMODE_SPECIAL","features":[67]},{"name":"LINEDIALTONEMODE_UNAVAIL","features":[67]},{"name":"LINEDIALTONEMODE_UNKNOWN","features":[67]},{"name":"LINEDIGITMODE_DTMF","features":[67]},{"name":"LINEDIGITMODE_DTMFEND","features":[67]},{"name":"LINEDIGITMODE_PULSE","features":[67]},{"name":"LINEDISCONNECTMODE_BADADDRESS","features":[67]},{"name":"LINEDISCONNECTMODE_BLOCKED","features":[67]},{"name":"LINEDISCONNECTMODE_BUSY","features":[67]},{"name":"LINEDISCONNECTMODE_CANCELLED","features":[67]},{"name":"LINEDISCONNECTMODE_CONGESTION","features":[67]},{"name":"LINEDISCONNECTMODE_DESTINATIONBARRED","features":[67]},{"name":"LINEDISCONNECTMODE_DONOTDISTURB","features":[67]},{"name":"LINEDISCONNECTMODE_FDNRESTRICT","features":[67]},{"name":"LINEDISCONNECTMODE_FORWARDED","features":[67]},{"name":"LINEDISCONNECTMODE_INCOMPATIBLE","features":[67]},{"name":"LINEDISCONNECTMODE_NOANSWER","features":[67]},{"name":"LINEDISCONNECTMODE_NODIALTONE","features":[67]},{"name":"LINEDISCONNECTMODE_NORMAL","features":[67]},{"name":"LINEDISCONNECTMODE_NUMBERCHANGED","features":[67]},{"name":"LINEDISCONNECTMODE_OUTOFORDER","features":[67]},{"name":"LINEDISCONNECTMODE_PICKUP","features":[67]},{"name":"LINEDISCONNECTMODE_QOSUNAVAIL","features":[67]},{"name":"LINEDISCONNECTMODE_REJECT","features":[67]},{"name":"LINEDISCONNECTMODE_TEMPFAILURE","features":[67]},{"name":"LINEDISCONNECTMODE_UNAVAIL","features":[67]},{"name":"LINEDISCONNECTMODE_UNKNOWN","features":[67]},{"name":"LINEDISCONNECTMODE_UNREACHABLE","features":[67]},{"name":"LINEEQOSINFO_ADMISSIONFAILURE","features":[67]},{"name":"LINEEQOSINFO_GENERICERROR","features":[67]},{"name":"LINEEQOSINFO_NOQOS","features":[67]},{"name":"LINEEQOSINFO_POLICYFAILURE","features":[67]},{"name":"LINEERR_ADDRESSBLOCKED","features":[67]},{"name":"LINEERR_ALLOCATED","features":[67]},{"name":"LINEERR_BADDEVICEID","features":[67]},{"name":"LINEERR_BEARERMODEUNAVAIL","features":[67]},{"name":"LINEERR_BILLINGREJECTED","features":[67]},{"name":"LINEERR_CALLUNAVAIL","features":[67]},{"name":"LINEERR_COMPLETIONOVERRUN","features":[67]},{"name":"LINEERR_CONFERENCEFULL","features":[67]},{"name":"LINEERR_DIALBILLING","features":[67]},{"name":"LINEERR_DIALDIALTONE","features":[67]},{"name":"LINEERR_DIALPROMPT","features":[67]},{"name":"LINEERR_DIALQUIET","features":[67]},{"name":"LINEERR_DIALVOICEDETECT","features":[67]},{"name":"LINEERR_DISCONNECTED","features":[67]},{"name":"LINEERR_INCOMPATIBLEAPIVERSION","features":[67]},{"name":"LINEERR_INCOMPATIBLEEXTVERSION","features":[67]},{"name":"LINEERR_INIFILECORRUPT","features":[67]},{"name":"LINEERR_INUSE","features":[67]},{"name":"LINEERR_INVALADDRESS","features":[67]},{"name":"LINEERR_INVALADDRESSID","features":[67]},{"name":"LINEERR_INVALADDRESSMODE","features":[67]},{"name":"LINEERR_INVALADDRESSSTATE","features":[67]},{"name":"LINEERR_INVALADDRESSTYPE","features":[67]},{"name":"LINEERR_INVALAGENTACTIVITY","features":[67]},{"name":"LINEERR_INVALAGENTGROUP","features":[67]},{"name":"LINEERR_INVALAGENTID","features":[67]},{"name":"LINEERR_INVALAGENTSESSIONSTATE","features":[67]},{"name":"LINEERR_INVALAGENTSTATE","features":[67]},{"name":"LINEERR_INVALAPPHANDLE","features":[67]},{"name":"LINEERR_INVALAPPNAME","features":[67]},{"name":"LINEERR_INVALBEARERMODE","features":[67]},{"name":"LINEERR_INVALCALLCOMPLMODE","features":[67]},{"name":"LINEERR_INVALCALLHANDLE","features":[67]},{"name":"LINEERR_INVALCALLPARAMS","features":[67]},{"name":"LINEERR_INVALCALLPRIVILEGE","features":[67]},{"name":"LINEERR_INVALCALLSELECT","features":[67]},{"name":"LINEERR_INVALCALLSTATE","features":[67]},{"name":"LINEERR_INVALCALLSTATELIST","features":[67]},{"name":"LINEERR_INVALCARD","features":[67]},{"name":"LINEERR_INVALCOMPLETIONID","features":[67]},{"name":"LINEERR_INVALCONFCALLHANDLE","features":[67]},{"name":"LINEERR_INVALCONSULTCALLHANDLE","features":[67]},{"name":"LINEERR_INVALCOUNTRYCODE","features":[67]},{"name":"LINEERR_INVALDEVICECLASS","features":[67]},{"name":"LINEERR_INVALDEVICEHANDLE","features":[67]},{"name":"LINEERR_INVALDIALPARAMS","features":[67]},{"name":"LINEERR_INVALDIGITLIST","features":[67]},{"name":"LINEERR_INVALDIGITMODE","features":[67]},{"name":"LINEERR_INVALDIGITS","features":[67]},{"name":"LINEERR_INVALEXTVERSION","features":[67]},{"name":"LINEERR_INVALFEATURE","features":[67]},{"name":"LINEERR_INVALGROUPID","features":[67]},{"name":"LINEERR_INVALLINEHANDLE","features":[67]},{"name":"LINEERR_INVALLINESTATE","features":[67]},{"name":"LINEERR_INVALLOCATION","features":[67]},{"name":"LINEERR_INVALMEDIALIST","features":[67]},{"name":"LINEERR_INVALMEDIAMODE","features":[67]},{"name":"LINEERR_INVALMESSAGEID","features":[67]},{"name":"LINEERR_INVALPARAM","features":[67]},{"name":"LINEERR_INVALPARKID","features":[67]},{"name":"LINEERR_INVALPARKMODE","features":[67]},{"name":"LINEERR_INVALPASSWORD","features":[67]},{"name":"LINEERR_INVALPOINTER","features":[67]},{"name":"LINEERR_INVALPRIVSELECT","features":[67]},{"name":"LINEERR_INVALRATE","features":[67]},{"name":"LINEERR_INVALREQUESTMODE","features":[67]},{"name":"LINEERR_INVALTERMINALID","features":[67]},{"name":"LINEERR_INVALTERMINALMODE","features":[67]},{"name":"LINEERR_INVALTIMEOUT","features":[67]},{"name":"LINEERR_INVALTONE","features":[67]},{"name":"LINEERR_INVALTONELIST","features":[67]},{"name":"LINEERR_INVALTONEMODE","features":[67]},{"name":"LINEERR_INVALTRANSFERMODE","features":[67]},{"name":"LINEERR_LINEMAPPERFAILED","features":[67]},{"name":"LINEERR_NOCONFERENCE","features":[67]},{"name":"LINEERR_NODEVICE","features":[67]},{"name":"LINEERR_NODRIVER","features":[67]},{"name":"LINEERR_NOMEM","features":[67]},{"name":"LINEERR_NOMULTIPLEINSTANCE","features":[67]},{"name":"LINEERR_NOREQUEST","features":[67]},{"name":"LINEERR_NOTOWNER","features":[67]},{"name":"LINEERR_NOTREGISTERED","features":[67]},{"name":"LINEERR_OPERATIONFAILED","features":[67]},{"name":"LINEERR_OPERATIONUNAVAIL","features":[67]},{"name":"LINEERR_RATEUNAVAIL","features":[67]},{"name":"LINEERR_REINIT","features":[67]},{"name":"LINEERR_REQUESTOVERRUN","features":[67]},{"name":"LINEERR_RESOURCEUNAVAIL","features":[67]},{"name":"LINEERR_SERVICE_NOT_RUNNING","features":[67]},{"name":"LINEERR_STRUCTURETOOSMALL","features":[67]},{"name":"LINEERR_TARGETNOTFOUND","features":[67]},{"name":"LINEERR_TARGETSELF","features":[67]},{"name":"LINEERR_UNINITIALIZED","features":[67]},{"name":"LINEERR_USERCANCELLED","features":[67]},{"name":"LINEERR_USERUSERINFOTOOBIG","features":[67]},{"name":"LINEEVENT","features":[67]},{"name":"LINEEXTENSIONID","features":[67]},{"name":"LINEFEATURE_DEVSPECIFIC","features":[67]},{"name":"LINEFEATURE_DEVSPECIFICFEAT","features":[67]},{"name":"LINEFEATURE_FORWARD","features":[67]},{"name":"LINEFEATURE_FORWARDDND","features":[67]},{"name":"LINEFEATURE_FORWARDFWD","features":[67]},{"name":"LINEFEATURE_MAKECALL","features":[67]},{"name":"LINEFEATURE_SETDEVSTATUS","features":[67]},{"name":"LINEFEATURE_SETMEDIACONTROL","features":[67]},{"name":"LINEFEATURE_SETTERMINAL","features":[67]},{"name":"LINEFORWARD","features":[67]},{"name":"LINEFORWARDLIST","features":[67]},{"name":"LINEFORWARDMODE_BUSY","features":[67]},{"name":"LINEFORWARDMODE_BUSYEXTERNAL","features":[67]},{"name":"LINEFORWARDMODE_BUSYINTERNAL","features":[67]},{"name":"LINEFORWARDMODE_BUSYNA","features":[67]},{"name":"LINEFORWARDMODE_BUSYNAEXTERNAL","features":[67]},{"name":"LINEFORWARDMODE_BUSYNAINTERNAL","features":[67]},{"name":"LINEFORWARDMODE_BUSYNASPECIFIC","features":[67]},{"name":"LINEFORWARDMODE_BUSYSPECIFIC","features":[67]},{"name":"LINEFORWARDMODE_NOANSW","features":[67]},{"name":"LINEFORWARDMODE_NOANSWEXTERNAL","features":[67]},{"name":"LINEFORWARDMODE_NOANSWINTERNAL","features":[67]},{"name":"LINEFORWARDMODE_NOANSWSPECIFIC","features":[67]},{"name":"LINEFORWARDMODE_UNAVAIL","features":[67]},{"name":"LINEFORWARDMODE_UNCOND","features":[67]},{"name":"LINEFORWARDMODE_UNCONDEXTERNAL","features":[67]},{"name":"LINEFORWARDMODE_UNCONDINTERNAL","features":[67]},{"name":"LINEFORWARDMODE_UNCONDSPECIFIC","features":[67]},{"name":"LINEFORWARDMODE_UNKNOWN","features":[67]},{"name":"LINEGATHERTERM_BUFFERFULL","features":[67]},{"name":"LINEGATHERTERM_CANCEL","features":[67]},{"name":"LINEGATHERTERM_FIRSTTIMEOUT","features":[67]},{"name":"LINEGATHERTERM_INTERTIMEOUT","features":[67]},{"name":"LINEGATHERTERM_TERMDIGIT","features":[67]},{"name":"LINEGENERATETERM_CANCEL","features":[67]},{"name":"LINEGENERATETERM_DONE","features":[67]},{"name":"LINEGENERATETONE","features":[67]},{"name":"LINEGROUPSTATUS_GROUPREMOVED","features":[67]},{"name":"LINEGROUPSTATUS_NEWGROUP","features":[67]},{"name":"LINEINITIALIZEEXOPTION_CALLHUBTRACKING","features":[67]},{"name":"LINEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[67]},{"name":"LINEINITIALIZEEXOPTION_USEEVENT","features":[67]},{"name":"LINEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[67]},{"name":"LINEINITIALIZEEXPARAMS","features":[67,3]},{"name":"LINELOCATIONENTRY","features":[67]},{"name":"LINELOCATIONOPTION_PULSEDIAL","features":[67]},{"name":"LINEMAPPER","features":[67]},{"name":"LINEMEDIACONTROLCALLSTATE","features":[67]},{"name":"LINEMEDIACONTROLDIGIT","features":[67]},{"name":"LINEMEDIACONTROLMEDIA","features":[67]},{"name":"LINEMEDIACONTROLTONE","features":[67]},{"name":"LINEMEDIACONTROL_NONE","features":[67]},{"name":"LINEMEDIACONTROL_PAUSE","features":[67]},{"name":"LINEMEDIACONTROL_RATEDOWN","features":[67]},{"name":"LINEMEDIACONTROL_RATENORMAL","features":[67]},{"name":"LINEMEDIACONTROL_RATEUP","features":[67]},{"name":"LINEMEDIACONTROL_RESET","features":[67]},{"name":"LINEMEDIACONTROL_RESUME","features":[67]},{"name":"LINEMEDIACONTROL_START","features":[67]},{"name":"LINEMEDIACONTROL_VOLUMEDOWN","features":[67]},{"name":"LINEMEDIACONTROL_VOLUMENORMAL","features":[67]},{"name":"LINEMEDIACONTROL_VOLUMEUP","features":[67]},{"name":"LINEMEDIAMODE_ADSI","features":[67]},{"name":"LINEMEDIAMODE_AUTOMATEDVOICE","features":[67]},{"name":"LINEMEDIAMODE_DATAMODEM","features":[67]},{"name":"LINEMEDIAMODE_DIGITALDATA","features":[67]},{"name":"LINEMEDIAMODE_G3FAX","features":[67]},{"name":"LINEMEDIAMODE_G4FAX","features":[67]},{"name":"LINEMEDIAMODE_INTERACTIVEVOICE","features":[67]},{"name":"LINEMEDIAMODE_MIXED","features":[67]},{"name":"LINEMEDIAMODE_TDD","features":[67]},{"name":"LINEMEDIAMODE_TELETEX","features":[67]},{"name":"LINEMEDIAMODE_TELEX","features":[67]},{"name":"LINEMEDIAMODE_UNKNOWN","features":[67]},{"name":"LINEMEDIAMODE_VIDEO","features":[67]},{"name":"LINEMEDIAMODE_VIDEOTEX","features":[67]},{"name":"LINEMEDIAMODE_VOICEVIEW","features":[67]},{"name":"LINEMESSAGE","features":[67]},{"name":"LINEMONITORTONE","features":[67]},{"name":"LINEOFFERINGMODE_ACTIVE","features":[67]},{"name":"LINEOFFERINGMODE_INACTIVE","features":[67]},{"name":"LINEOPENOPTION_PROXY","features":[67]},{"name":"LINEOPENOPTION_SINGLEADDRESS","features":[67]},{"name":"LINEPARKMODE_DIRECTED","features":[67]},{"name":"LINEPARKMODE_NONDIRECTED","features":[67]},{"name":"LINEPROVIDERENTRY","features":[67]},{"name":"LINEPROVIDERLIST","features":[67]},{"name":"LINEPROXYREQUEST","features":[67,43]},{"name":"LINEPROXYREQUESTLIST","features":[67]},{"name":"LINEPROXYREQUEST_AGENTSPECIFIC","features":[67]},{"name":"LINEPROXYREQUEST_CREATEAGENT","features":[67]},{"name":"LINEPROXYREQUEST_CREATEAGENTSESSION","features":[67]},{"name":"LINEPROXYREQUEST_GETAGENTACTIVITYLIST","features":[67]},{"name":"LINEPROXYREQUEST_GETAGENTCAPS","features":[67]},{"name":"LINEPROXYREQUEST_GETAGENTGROUPLIST","features":[67]},{"name":"LINEPROXYREQUEST_GETAGENTINFO","features":[67]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONINFO","features":[67]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONLIST","features":[67]},{"name":"LINEPROXYREQUEST_GETAGENTSTATUS","features":[67]},{"name":"LINEPROXYREQUEST_GETGROUPLIST","features":[67]},{"name":"LINEPROXYREQUEST_GETQUEUEINFO","features":[67]},{"name":"LINEPROXYREQUEST_GETQUEUELIST","features":[67]},{"name":"LINEPROXYREQUEST_SETAGENTACTIVITY","features":[67]},{"name":"LINEPROXYREQUEST_SETAGENTGROUP","features":[67]},{"name":"LINEPROXYREQUEST_SETAGENTMEASUREMENTPERIOD","features":[67]},{"name":"LINEPROXYREQUEST_SETAGENTSESSIONSTATE","features":[67]},{"name":"LINEPROXYREQUEST_SETAGENTSTATE","features":[67]},{"name":"LINEPROXYREQUEST_SETAGENTSTATEEX","features":[67]},{"name":"LINEPROXYREQUEST_SETQUEUEMEASUREMENTPERIOD","features":[67]},{"name":"LINEPROXYSTATUS_ALLOPENFORACD","features":[67]},{"name":"LINEPROXYSTATUS_CLOSE","features":[67]},{"name":"LINEPROXYSTATUS_OPEN","features":[67]},{"name":"LINEQOSREQUESTTYPE_SERVICELEVEL","features":[67]},{"name":"LINEQOSSERVICELEVEL_BESTEFFORT","features":[67]},{"name":"LINEQOSSERVICELEVEL_IFAVAILABLE","features":[67]},{"name":"LINEQOSSERVICELEVEL_NEEDED","features":[67]},{"name":"LINEQUEUEENTRY","features":[67]},{"name":"LINEQUEUEINFO","features":[67]},{"name":"LINEQUEUELIST","features":[67]},{"name":"LINEQUEUESTATUS_NEWQUEUE","features":[67]},{"name":"LINEQUEUESTATUS_QUEUEREMOVED","features":[67]},{"name":"LINEQUEUESTATUS_UPDATEINFO","features":[67]},{"name":"LINEREMOVEFROMCONF_ANY","features":[67]},{"name":"LINEREMOVEFROMCONF_LAST","features":[67]},{"name":"LINEREMOVEFROMCONF_NONE","features":[67]},{"name":"LINEREQMAKECALL","features":[67]},{"name":"LINEREQMAKECALLW","features":[67]},{"name":"LINEREQMEDIACALL","features":[67,3]},{"name":"LINEREQMEDIACALLW","features":[67,3]},{"name":"LINEREQUESTMODE_DROP","features":[67]},{"name":"LINEREQUESTMODE_MAKECALL","features":[67]},{"name":"LINEREQUESTMODE_MEDIACALL","features":[67]},{"name":"LINEROAMMODE_HOME","features":[67]},{"name":"LINEROAMMODE_ROAMA","features":[67]},{"name":"LINEROAMMODE_ROAMB","features":[67]},{"name":"LINEROAMMODE_UNAVAIL","features":[67]},{"name":"LINEROAMMODE_UNKNOWN","features":[67]},{"name":"LINESPECIALINFO_CUSTIRREG","features":[67]},{"name":"LINESPECIALINFO_NOCIRCUIT","features":[67]},{"name":"LINESPECIALINFO_REORDER","features":[67]},{"name":"LINESPECIALINFO_UNAVAIL","features":[67]},{"name":"LINESPECIALINFO_UNKNOWN","features":[67]},{"name":"LINETERMCAPS","features":[67]},{"name":"LINETERMDEV_HEADSET","features":[67]},{"name":"LINETERMDEV_PHONE","features":[67]},{"name":"LINETERMDEV_SPEAKER","features":[67]},{"name":"LINETERMMODE_BUTTONS","features":[67]},{"name":"LINETERMMODE_DISPLAY","features":[67]},{"name":"LINETERMMODE_HOOKSWITCH","features":[67]},{"name":"LINETERMMODE_LAMPS","features":[67]},{"name":"LINETERMMODE_MEDIABIDIRECT","features":[67]},{"name":"LINETERMMODE_MEDIAFROMLINE","features":[67]},{"name":"LINETERMMODE_MEDIATOLINE","features":[67]},{"name":"LINETERMMODE_RINGER","features":[67]},{"name":"LINETERMSHARING_PRIVATE","features":[67]},{"name":"LINETERMSHARING_SHAREDCONF","features":[67]},{"name":"LINETERMSHARING_SHAREDEXCL","features":[67]},{"name":"LINETOLLLISTOPTION_ADD","features":[67]},{"name":"LINETOLLLISTOPTION_REMOVE","features":[67]},{"name":"LINETONEMODE_BEEP","features":[67]},{"name":"LINETONEMODE_BILLING","features":[67]},{"name":"LINETONEMODE_BUSY","features":[67]},{"name":"LINETONEMODE_CUSTOM","features":[67]},{"name":"LINETONEMODE_RINGBACK","features":[67]},{"name":"LINETRANSFERMODE_CONFERENCE","features":[67]},{"name":"LINETRANSFERMODE_TRANSFER","features":[67]},{"name":"LINETRANSLATECAPS","features":[67]},{"name":"LINETRANSLATEOPTION_CANCELCALLWAITING","features":[67]},{"name":"LINETRANSLATEOPTION_CARDOVERRIDE","features":[67]},{"name":"LINETRANSLATEOPTION_FORCELD","features":[67]},{"name":"LINETRANSLATEOPTION_FORCELOCAL","features":[67]},{"name":"LINETRANSLATEOUTPUT","features":[67]},{"name":"LINETRANSLATERESULT_CANONICAL","features":[67]},{"name":"LINETRANSLATERESULT_DIALBILLING","features":[67]},{"name":"LINETRANSLATERESULT_DIALDIALTONE","features":[67]},{"name":"LINETRANSLATERESULT_DIALPROMPT","features":[67]},{"name":"LINETRANSLATERESULT_DIALQUIET","features":[67]},{"name":"LINETRANSLATERESULT_INTERNATIONAL","features":[67]},{"name":"LINETRANSLATERESULT_INTOLLLIST","features":[67]},{"name":"LINETRANSLATERESULT_LOCAL","features":[67]},{"name":"LINETRANSLATERESULT_LONGDISTANCE","features":[67]},{"name":"LINETRANSLATERESULT_NOTINTOLLLIST","features":[67]},{"name":"LINETRANSLATERESULT_NOTRANSLATION","features":[67]},{"name":"LINETRANSLATERESULT_VOICEDETECT","features":[67]},{"name":"LINETSPIOPTION_NONREENTRANT","features":[67]},{"name":"LINE_ADDRESSSTATE","features":[67]},{"name":"LINE_AGENTSESSIONSTATUS","features":[67]},{"name":"LINE_AGENTSPECIFIC","features":[67]},{"name":"LINE_AGENTSTATUS","features":[67]},{"name":"LINE_AGENTSTATUSEX","features":[67]},{"name":"LINE_APPNEWCALL","features":[67]},{"name":"LINE_APPNEWCALLHUB","features":[67]},{"name":"LINE_CALLHUBCLOSE","features":[67]},{"name":"LINE_CALLINFO","features":[67]},{"name":"LINE_CALLSTATE","features":[67]},{"name":"LINE_CLOSE","features":[67]},{"name":"LINE_CREATE","features":[67]},{"name":"LINE_DEVSPECIFIC","features":[67]},{"name":"LINE_DEVSPECIFICEX","features":[67]},{"name":"LINE_DEVSPECIFICFEATURE","features":[67]},{"name":"LINE_GATHERDIGITS","features":[67]},{"name":"LINE_GENERATE","features":[67]},{"name":"LINE_GROUPSTATUS","features":[67]},{"name":"LINE_LINEDEVSTATE","features":[67]},{"name":"LINE_MONITORDIGITS","features":[67]},{"name":"LINE_MONITORMEDIA","features":[67]},{"name":"LINE_MONITORTONE","features":[67]},{"name":"LINE_PROXYREQUEST","features":[67]},{"name":"LINE_PROXYSTATUS","features":[67]},{"name":"LINE_QUEUESTATUS","features":[67]},{"name":"LINE_REMOVE","features":[67]},{"name":"LINE_REPLY","features":[67]},{"name":"LINE_REQUEST","features":[67]},{"name":"LM_BROKENFLUTTER","features":[67]},{"name":"LM_DUMMY","features":[67]},{"name":"LM_FLASH","features":[67]},{"name":"LM_FLUTTER","features":[67]},{"name":"LM_OFF","features":[67]},{"name":"LM_STEADY","features":[67]},{"name":"LM_UNKNOWN","features":[67]},{"name":"LM_WINK","features":[67]},{"name":"LPGETTNEFSTREAMCODEPAGE","features":[67]},{"name":"LPOPENTNEFSTREAM","features":[67]},{"name":"LPOPENTNEFSTREAMEX","features":[67]},{"name":"ME_ADDRESS_EVENT","features":[67]},{"name":"ME_ASR_TERMINAL_EVENT","features":[67]},{"name":"ME_CALL_EVENT","features":[67]},{"name":"ME_FILE_TERMINAL_EVENT","features":[67]},{"name":"ME_PRIVATE_EVENT","features":[67]},{"name":"ME_TONE_TERMINAL_EVENT","features":[67]},{"name":"ME_TSP_DATA","features":[67]},{"name":"ME_TTS_TERMINAL_EVENT","features":[67]},{"name":"MSP_ADDRESS_EVENT","features":[67]},{"name":"MSP_CALL_EVENT","features":[67]},{"name":"MSP_CALL_EVENT_CAUSE","features":[67]},{"name":"MSP_EVENT","features":[67]},{"name":"MSP_EVENT_INFO","features":[67]},{"name":"McastAddressAllocation","features":[67]},{"name":"NSID","features":[67]},{"name":"OPENTNEFSTREAM","features":[67]},{"name":"OPENTNEFSTREAMEX","features":[67]},{"name":"OT_CONFERENCE","features":[67]},{"name":"OT_USER","features":[67]},{"name":"OpenTnefStream","features":[67]},{"name":"OpenTnefStreamEx","features":[67]},{"name":"PBF_ABBREVDIAL","features":[67]},{"name":"PBF_BRIDGEDAPP","features":[67]},{"name":"PBF_BUSY","features":[67]},{"name":"PBF_CALLAPP","features":[67]},{"name":"PBF_CALLID","features":[67]},{"name":"PBF_CAMPON","features":[67]},{"name":"PBF_CONFERENCE","features":[67]},{"name":"PBF_CONNECT","features":[67]},{"name":"PBF_COVER","features":[67]},{"name":"PBF_DATAOFF","features":[67]},{"name":"PBF_DATAON","features":[67]},{"name":"PBF_DATETIME","features":[67]},{"name":"PBF_DIRECTORY","features":[67]},{"name":"PBF_DISCONNECT","features":[67]},{"name":"PBF_DONOTDISTURB","features":[67]},{"name":"PBF_DROP","features":[67]},{"name":"PBF_FLASH","features":[67]},{"name":"PBF_FORWARD","features":[67]},{"name":"PBF_HOLD","features":[67]},{"name":"PBF_INTERCOM","features":[67]},{"name":"PBF_LASTNUM","features":[67]},{"name":"PBF_MSGINDICATOR","features":[67]},{"name":"PBF_MSGWAITOFF","features":[67]},{"name":"PBF_MSGWAITON","features":[67]},{"name":"PBF_MUTE","features":[67]},{"name":"PBF_NIGHTSRV","features":[67]},{"name":"PBF_NONE","features":[67]},{"name":"PBF_PARK","features":[67]},{"name":"PBF_PICKUP","features":[67]},{"name":"PBF_QUEUECALL","features":[67]},{"name":"PBF_RECALL","features":[67]},{"name":"PBF_REDIRECT","features":[67]},{"name":"PBF_REJECT","features":[67]},{"name":"PBF_REPDIAL","features":[67]},{"name":"PBF_RINGAGAIN","features":[67]},{"name":"PBF_SAVEREPEAT","features":[67]},{"name":"PBF_SELECTRING","features":[67]},{"name":"PBF_SEND","features":[67]},{"name":"PBF_SENDCALLS","features":[67]},{"name":"PBF_SETREPDIAL","features":[67]},{"name":"PBF_SPEAKEROFF","features":[67]},{"name":"PBF_SPEAKERON","features":[67]},{"name":"PBF_STATIONSPEED","features":[67]},{"name":"PBF_SYSTEMSPEED","features":[67]},{"name":"PBF_TRANSFER","features":[67]},{"name":"PBF_UNKNOWN","features":[67]},{"name":"PBF_VOLUMEDOWN","features":[67]},{"name":"PBF_VOLUMEUP","features":[67]},{"name":"PBM_CALL","features":[67]},{"name":"PBM_DISPLAY","features":[67]},{"name":"PBM_DUMMY","features":[67]},{"name":"PBM_FEATURE","features":[67]},{"name":"PBM_KEYPAD","features":[67]},{"name":"PBM_LOCAL","features":[67]},{"name":"PBS_DOWN","features":[67]},{"name":"PBS_UNAVAIL","features":[67]},{"name":"PBS_UNKNOWN","features":[67]},{"name":"PBS_UP","features":[67]},{"name":"PCB_DEVSPECIFICBUFFER","features":[67]},{"name":"PCL_DISPLAYNUMCOLUMNS","features":[67]},{"name":"PCL_DISPLAYNUMROWS","features":[67]},{"name":"PCL_GENERICPHONE","features":[67]},{"name":"PCL_HANDSETHOOKSWITCHMODES","features":[67]},{"name":"PCL_HEADSETHOOKSWITCHMODES","features":[67]},{"name":"PCL_HOOKSWITCHES","features":[67]},{"name":"PCL_NUMBUTTONLAMPS","features":[67]},{"name":"PCL_NUMRINGMODES","features":[67]},{"name":"PCL_SPEAKERPHONEHOOKSWITCHMODES","features":[67]},{"name":"PCS_PHONEINFO","features":[67]},{"name":"PCS_PHONENAME","features":[67]},{"name":"PCS_PROVIDERINFO","features":[67]},{"name":"PE_ANSWER","features":[67]},{"name":"PE_BUTTON","features":[67]},{"name":"PE_CAPSCHANGE","features":[67]},{"name":"PE_CLOSE","features":[67]},{"name":"PE_DIALING","features":[67]},{"name":"PE_DISCONNECT","features":[67]},{"name":"PE_DISPLAY","features":[67]},{"name":"PE_HOOKSWITCH","features":[67]},{"name":"PE_LAMPMODE","features":[67]},{"name":"PE_LASTITEM","features":[67]},{"name":"PE_NUMBERGATHERED","features":[67]},{"name":"PE_RINGMODE","features":[67]},{"name":"PE_RINGVOLUME","features":[67]},{"name":"PHONEBUTTONFUNCTION_ABBREVDIAL","features":[67]},{"name":"PHONEBUTTONFUNCTION_BRIDGEDAPP","features":[67]},{"name":"PHONEBUTTONFUNCTION_BUSY","features":[67]},{"name":"PHONEBUTTONFUNCTION_CALLAPP","features":[67]},{"name":"PHONEBUTTONFUNCTION_CALLID","features":[67]},{"name":"PHONEBUTTONFUNCTION_CAMPON","features":[67]},{"name":"PHONEBUTTONFUNCTION_CONFERENCE","features":[67]},{"name":"PHONEBUTTONFUNCTION_CONNECT","features":[67]},{"name":"PHONEBUTTONFUNCTION_COVER","features":[67]},{"name":"PHONEBUTTONFUNCTION_DATAOFF","features":[67]},{"name":"PHONEBUTTONFUNCTION_DATAON","features":[67]},{"name":"PHONEBUTTONFUNCTION_DATETIME","features":[67]},{"name":"PHONEBUTTONFUNCTION_DIRECTORY","features":[67]},{"name":"PHONEBUTTONFUNCTION_DISCONNECT","features":[67]},{"name":"PHONEBUTTONFUNCTION_DONOTDISTURB","features":[67]},{"name":"PHONEBUTTONFUNCTION_DROP","features":[67]},{"name":"PHONEBUTTONFUNCTION_FLASH","features":[67]},{"name":"PHONEBUTTONFUNCTION_FORWARD","features":[67]},{"name":"PHONEBUTTONFUNCTION_HOLD","features":[67]},{"name":"PHONEBUTTONFUNCTION_INTERCOM","features":[67]},{"name":"PHONEBUTTONFUNCTION_LASTNUM","features":[67]},{"name":"PHONEBUTTONFUNCTION_MSGINDICATOR","features":[67]},{"name":"PHONEBUTTONFUNCTION_MSGWAITOFF","features":[67]},{"name":"PHONEBUTTONFUNCTION_MSGWAITON","features":[67]},{"name":"PHONEBUTTONFUNCTION_MUTE","features":[67]},{"name":"PHONEBUTTONFUNCTION_NIGHTSRV","features":[67]},{"name":"PHONEBUTTONFUNCTION_NONE","features":[67]},{"name":"PHONEBUTTONFUNCTION_PARK","features":[67]},{"name":"PHONEBUTTONFUNCTION_PICKUP","features":[67]},{"name":"PHONEBUTTONFUNCTION_QUEUECALL","features":[67]},{"name":"PHONEBUTTONFUNCTION_RECALL","features":[67]},{"name":"PHONEBUTTONFUNCTION_REDIRECT","features":[67]},{"name":"PHONEBUTTONFUNCTION_REJECT","features":[67]},{"name":"PHONEBUTTONFUNCTION_REPDIAL","features":[67]},{"name":"PHONEBUTTONFUNCTION_RINGAGAIN","features":[67]},{"name":"PHONEBUTTONFUNCTION_SAVEREPEAT","features":[67]},{"name":"PHONEBUTTONFUNCTION_SELECTRING","features":[67]},{"name":"PHONEBUTTONFUNCTION_SEND","features":[67]},{"name":"PHONEBUTTONFUNCTION_SENDCALLS","features":[67]},{"name":"PHONEBUTTONFUNCTION_SETREPDIAL","features":[67]},{"name":"PHONEBUTTONFUNCTION_SPEAKEROFF","features":[67]},{"name":"PHONEBUTTONFUNCTION_SPEAKERON","features":[67]},{"name":"PHONEBUTTONFUNCTION_STATIONSPEED","features":[67]},{"name":"PHONEBUTTONFUNCTION_SYSTEMSPEED","features":[67]},{"name":"PHONEBUTTONFUNCTION_TRANSFER","features":[67]},{"name":"PHONEBUTTONFUNCTION_UNKNOWN","features":[67]},{"name":"PHONEBUTTONFUNCTION_VOLUMEDOWN","features":[67]},{"name":"PHONEBUTTONFUNCTION_VOLUMEUP","features":[67]},{"name":"PHONEBUTTONINFO","features":[67]},{"name":"PHONEBUTTONMODE_CALL","features":[67]},{"name":"PHONEBUTTONMODE_DISPLAY","features":[67]},{"name":"PHONEBUTTONMODE_DUMMY","features":[67]},{"name":"PHONEBUTTONMODE_FEATURE","features":[67]},{"name":"PHONEBUTTONMODE_KEYPAD","features":[67]},{"name":"PHONEBUTTONMODE_LOCAL","features":[67]},{"name":"PHONEBUTTONSTATE_DOWN","features":[67]},{"name":"PHONEBUTTONSTATE_UNAVAIL","features":[67]},{"name":"PHONEBUTTONSTATE_UNKNOWN","features":[67]},{"name":"PHONEBUTTONSTATE_UP","features":[67]},{"name":"PHONECALLBACK","features":[67]},{"name":"PHONECAPS","features":[67]},{"name":"PHONECAPS_BUFFER","features":[67]},{"name":"PHONECAPS_LONG","features":[67]},{"name":"PHONECAPS_STRING","features":[67]},{"name":"PHONEERR_ALLOCATED","features":[67]},{"name":"PHONEERR_BADDEVICEID","features":[67]},{"name":"PHONEERR_DISCONNECTED","features":[67]},{"name":"PHONEERR_INCOMPATIBLEAPIVERSION","features":[67]},{"name":"PHONEERR_INCOMPATIBLEEXTVERSION","features":[67]},{"name":"PHONEERR_INIFILECORRUPT","features":[67]},{"name":"PHONEERR_INUSE","features":[67]},{"name":"PHONEERR_INVALAPPHANDLE","features":[67]},{"name":"PHONEERR_INVALAPPNAME","features":[67]},{"name":"PHONEERR_INVALBUTTONLAMPID","features":[67]},{"name":"PHONEERR_INVALBUTTONMODE","features":[67]},{"name":"PHONEERR_INVALBUTTONSTATE","features":[67]},{"name":"PHONEERR_INVALDATAID","features":[67]},{"name":"PHONEERR_INVALDEVICECLASS","features":[67]},{"name":"PHONEERR_INVALEXTVERSION","features":[67]},{"name":"PHONEERR_INVALHOOKSWITCHDEV","features":[67]},{"name":"PHONEERR_INVALHOOKSWITCHMODE","features":[67]},{"name":"PHONEERR_INVALLAMPMODE","features":[67]},{"name":"PHONEERR_INVALPARAM","features":[67]},{"name":"PHONEERR_INVALPHONEHANDLE","features":[67]},{"name":"PHONEERR_INVALPHONESTATE","features":[67]},{"name":"PHONEERR_INVALPOINTER","features":[67]},{"name":"PHONEERR_INVALPRIVILEGE","features":[67]},{"name":"PHONEERR_INVALRINGMODE","features":[67]},{"name":"PHONEERR_NODEVICE","features":[67]},{"name":"PHONEERR_NODRIVER","features":[67]},{"name":"PHONEERR_NOMEM","features":[67]},{"name":"PHONEERR_NOTOWNER","features":[67]},{"name":"PHONEERR_OPERATIONFAILED","features":[67]},{"name":"PHONEERR_OPERATIONUNAVAIL","features":[67]},{"name":"PHONEERR_REINIT","features":[67]},{"name":"PHONEERR_REQUESTOVERRUN","features":[67]},{"name":"PHONEERR_RESOURCEUNAVAIL","features":[67]},{"name":"PHONEERR_SERVICE_NOT_RUNNING","features":[67]},{"name":"PHONEERR_STRUCTURETOOSMALL","features":[67]},{"name":"PHONEERR_UNINITIALIZED","features":[67]},{"name":"PHONEEVENT","features":[67]},{"name":"PHONEEXTENSIONID","features":[67]},{"name":"PHONEFEATURE_GENERICPHONE","features":[67]},{"name":"PHONEFEATURE_GETBUTTONINFO","features":[67]},{"name":"PHONEFEATURE_GETDATA","features":[67]},{"name":"PHONEFEATURE_GETDISPLAY","features":[67]},{"name":"PHONEFEATURE_GETGAINHANDSET","features":[67]},{"name":"PHONEFEATURE_GETGAINHEADSET","features":[67]},{"name":"PHONEFEATURE_GETGAINSPEAKER","features":[67]},{"name":"PHONEFEATURE_GETHOOKSWITCHHANDSET","features":[67]},{"name":"PHONEFEATURE_GETHOOKSWITCHHEADSET","features":[67]},{"name":"PHONEFEATURE_GETHOOKSWITCHSPEAKER","features":[67]},{"name":"PHONEFEATURE_GETLAMP","features":[67]},{"name":"PHONEFEATURE_GETRING","features":[67]},{"name":"PHONEFEATURE_GETVOLUMEHANDSET","features":[67]},{"name":"PHONEFEATURE_GETVOLUMEHEADSET","features":[67]},{"name":"PHONEFEATURE_GETVOLUMESPEAKER","features":[67]},{"name":"PHONEFEATURE_SETBUTTONINFO","features":[67]},{"name":"PHONEFEATURE_SETDATA","features":[67]},{"name":"PHONEFEATURE_SETDISPLAY","features":[67]},{"name":"PHONEFEATURE_SETGAINHANDSET","features":[67]},{"name":"PHONEFEATURE_SETGAINHEADSET","features":[67]},{"name":"PHONEFEATURE_SETGAINSPEAKER","features":[67]},{"name":"PHONEFEATURE_SETHOOKSWITCHHANDSET","features":[67]},{"name":"PHONEFEATURE_SETHOOKSWITCHHEADSET","features":[67]},{"name":"PHONEFEATURE_SETHOOKSWITCHSPEAKER","features":[67]},{"name":"PHONEFEATURE_SETLAMP","features":[67]},{"name":"PHONEFEATURE_SETRING","features":[67]},{"name":"PHONEFEATURE_SETVOLUMEHANDSET","features":[67]},{"name":"PHONEFEATURE_SETVOLUMEHEADSET","features":[67]},{"name":"PHONEFEATURE_SETVOLUMESPEAKER","features":[67]},{"name":"PHONEHOOKSWITCHDEV_HANDSET","features":[67]},{"name":"PHONEHOOKSWITCHDEV_HEADSET","features":[67]},{"name":"PHONEHOOKSWITCHDEV_SPEAKER","features":[67]},{"name":"PHONEHOOKSWITCHMODE_MIC","features":[67]},{"name":"PHONEHOOKSWITCHMODE_MICSPEAKER","features":[67]},{"name":"PHONEHOOKSWITCHMODE_ONHOOK","features":[67]},{"name":"PHONEHOOKSWITCHMODE_SPEAKER","features":[67]},{"name":"PHONEHOOKSWITCHMODE_UNKNOWN","features":[67]},{"name":"PHONEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[67]},{"name":"PHONEINITIALIZEEXOPTION_USEEVENT","features":[67]},{"name":"PHONEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[67]},{"name":"PHONEINITIALIZEEXPARAMS","features":[67,3]},{"name":"PHONELAMPMODE_BROKENFLUTTER","features":[67]},{"name":"PHONELAMPMODE_DUMMY","features":[67]},{"name":"PHONELAMPMODE_FLASH","features":[67]},{"name":"PHONELAMPMODE_FLUTTER","features":[67]},{"name":"PHONELAMPMODE_OFF","features":[67]},{"name":"PHONELAMPMODE_STEADY","features":[67]},{"name":"PHONELAMPMODE_UNKNOWN","features":[67]},{"name":"PHONELAMPMODE_WINK","features":[67]},{"name":"PHONEMESSAGE","features":[67]},{"name":"PHONEPRIVILEGE_MONITOR","features":[67]},{"name":"PHONEPRIVILEGE_OWNER","features":[67]},{"name":"PHONESTATE_CAPSCHANGE","features":[67]},{"name":"PHONESTATE_CONNECTED","features":[67]},{"name":"PHONESTATE_DEVSPECIFIC","features":[67]},{"name":"PHONESTATE_DISCONNECTED","features":[67]},{"name":"PHONESTATE_DISPLAY","features":[67]},{"name":"PHONESTATE_HANDSETGAIN","features":[67]},{"name":"PHONESTATE_HANDSETHOOKSWITCH","features":[67]},{"name":"PHONESTATE_HANDSETVOLUME","features":[67]},{"name":"PHONESTATE_HEADSETGAIN","features":[67]},{"name":"PHONESTATE_HEADSETHOOKSWITCH","features":[67]},{"name":"PHONESTATE_HEADSETVOLUME","features":[67]},{"name":"PHONESTATE_LAMP","features":[67]},{"name":"PHONESTATE_MONITORS","features":[67]},{"name":"PHONESTATE_OTHER","features":[67]},{"name":"PHONESTATE_OWNER","features":[67]},{"name":"PHONESTATE_REINIT","features":[67]},{"name":"PHONESTATE_REMOVED","features":[67]},{"name":"PHONESTATE_RESUME","features":[67]},{"name":"PHONESTATE_RINGMODE","features":[67]},{"name":"PHONESTATE_RINGVOLUME","features":[67]},{"name":"PHONESTATE_SPEAKERGAIN","features":[67]},{"name":"PHONESTATE_SPEAKERHOOKSWITCH","features":[67]},{"name":"PHONESTATE_SPEAKERVOLUME","features":[67]},{"name":"PHONESTATE_SUSPEND","features":[67]},{"name":"PHONESTATUS","features":[67]},{"name":"PHONESTATUSFLAGS_CONNECTED","features":[67]},{"name":"PHONESTATUSFLAGS_SUSPENDED","features":[67]},{"name":"PHONE_BUTTON","features":[67]},{"name":"PHONE_BUTTON_FUNCTION","features":[67]},{"name":"PHONE_BUTTON_MODE","features":[67]},{"name":"PHONE_BUTTON_STATE","features":[67]},{"name":"PHONE_CLOSE","features":[67]},{"name":"PHONE_CREATE","features":[67]},{"name":"PHONE_DEVSPECIFIC","features":[67]},{"name":"PHONE_EVENT","features":[67]},{"name":"PHONE_HOOK_SWITCH_DEVICE","features":[67]},{"name":"PHONE_HOOK_SWITCH_STATE","features":[67]},{"name":"PHONE_LAMP_MODE","features":[67]},{"name":"PHONE_PRIVILEGE","features":[67]},{"name":"PHONE_REMOVE","features":[67]},{"name":"PHONE_REPLY","features":[67]},{"name":"PHONE_STATE","features":[67]},{"name":"PHONE_TONE","features":[67]},{"name":"PHSD_HANDSET","features":[67]},{"name":"PHSD_HEADSET","features":[67]},{"name":"PHSD_SPEAKERPHONE","features":[67]},{"name":"PHSS_OFFHOOK","features":[67]},{"name":"PHSS_OFFHOOK_MIC_ONLY","features":[67]},{"name":"PHSS_OFFHOOK_SPEAKER_ONLY","features":[67]},{"name":"PHSS_ONHOOK","features":[67]},{"name":"PP_MONITOR","features":[67]},{"name":"PP_OWNER","features":[67]},{"name":"PRIVATEOBJECT_ADDRESS","features":[67]},{"name":"PRIVATEOBJECT_CALL","features":[67]},{"name":"PRIVATEOBJECT_CALLID","features":[67]},{"name":"PRIVATEOBJECT_LINE","features":[67]},{"name":"PRIVATEOBJECT_NONE","features":[67]},{"name":"PRIVATEOBJECT_PHONE","features":[67]},{"name":"PT_BUSY","features":[67]},{"name":"PT_ERRORTONE","features":[67]},{"name":"PT_EXTERNALDIALTONE","features":[67]},{"name":"PT_KEYPADA","features":[67]},{"name":"PT_KEYPADB","features":[67]},{"name":"PT_KEYPADC","features":[67]},{"name":"PT_KEYPADD","features":[67]},{"name":"PT_KEYPADEIGHT","features":[67]},{"name":"PT_KEYPADFIVE","features":[67]},{"name":"PT_KEYPADFOUR","features":[67]},{"name":"PT_KEYPADNINE","features":[67]},{"name":"PT_KEYPADONE","features":[67]},{"name":"PT_KEYPADPOUND","features":[67]},{"name":"PT_KEYPADSEVEN","features":[67]},{"name":"PT_KEYPADSIX","features":[67]},{"name":"PT_KEYPADSTAR","features":[67]},{"name":"PT_KEYPADTHREE","features":[67]},{"name":"PT_KEYPADTWO","features":[67]},{"name":"PT_KEYPADZERO","features":[67]},{"name":"PT_NORMALDIALTONE","features":[67]},{"name":"PT_RINGBACK","features":[67]},{"name":"PT_SILENCE","features":[67]},{"name":"QE_ADMISSIONFAILURE","features":[67]},{"name":"QE_GENERICERROR","features":[67]},{"name":"QE_LASTITEM","features":[67]},{"name":"QE_NOQOS","features":[67]},{"name":"QE_POLICYFAILURE","features":[67]},{"name":"QOS_EVENT","features":[67]},{"name":"QOS_SERVICE_LEVEL","features":[67]},{"name":"QSL_BEST_EFFORT","features":[67]},{"name":"QSL_IF_AVAILABLE","features":[67]},{"name":"QSL_NEEDED","features":[67]},{"name":"RAS_LOCAL","features":[67]},{"name":"RAS_REGION","features":[67]},{"name":"RAS_SITE","features":[67]},{"name":"RAS_WORLD","features":[67]},{"name":"RENDBIND_AUTHENTICATE","features":[67]},{"name":"RENDBIND_DEFAULTCREDENTIALS","features":[67]},{"name":"RENDBIND_DEFAULTDOMAINNAME","features":[67]},{"name":"RENDBIND_DEFAULTPASSWORD","features":[67]},{"name":"RENDBIND_DEFAULTUSERNAME","features":[67]},{"name":"RENDDATA","features":[67]},{"name":"RND_ADVERTISING_SCOPE","features":[67]},{"name":"Rendezvous","features":[67]},{"name":"RequestMakeCall","features":[67]},{"name":"STRINGFORMAT_ASCII","features":[67]},{"name":"STRINGFORMAT_BINARY","features":[67]},{"name":"STRINGFORMAT_DBCS","features":[67]},{"name":"STRINGFORMAT_UNICODE","features":[67]},{"name":"STRM_CONFIGURED","features":[67]},{"name":"STRM_INITIAL","features":[67]},{"name":"STRM_PAUSED","features":[67]},{"name":"STRM_RUNNING","features":[67]},{"name":"STRM_STOPPED","features":[67]},{"name":"STRM_TERMINALSELECTED","features":[67]},{"name":"STnefProblem","features":[67]},{"name":"STnefProblemArray","features":[67]},{"name":"TAPI","features":[67]},{"name":"TAPIERR_CONNECTED","features":[67]},{"name":"TAPIERR_DESTBUSY","features":[67]},{"name":"TAPIERR_DESTNOANSWER","features":[67]},{"name":"TAPIERR_DESTUNAVAIL","features":[67]},{"name":"TAPIERR_DEVICECLASSUNAVAIL","features":[67]},{"name":"TAPIERR_DEVICEIDUNAVAIL","features":[67]},{"name":"TAPIERR_DEVICEINUSE","features":[67]},{"name":"TAPIERR_DROPPED","features":[67]},{"name":"TAPIERR_INVALDESTADDRESS","features":[67]},{"name":"TAPIERR_INVALDEVICECLASS","features":[67]},{"name":"TAPIERR_INVALDEVICEID","features":[67]},{"name":"TAPIERR_INVALPOINTER","features":[67]},{"name":"TAPIERR_INVALWINDOWHANDLE","features":[67]},{"name":"TAPIERR_MMCWRITELOCKED","features":[67]},{"name":"TAPIERR_NOREQUESTRECIPIENT","features":[67]},{"name":"TAPIERR_NOTADMIN","features":[67]},{"name":"TAPIERR_PROVIDERALREADYINSTALLED","features":[67]},{"name":"TAPIERR_REQUESTCANCELLED","features":[67]},{"name":"TAPIERR_REQUESTFAILED","features":[67]},{"name":"TAPIERR_REQUESTQUEUEFULL","features":[67]},{"name":"TAPIERR_SCP_ALREADY_EXISTS","features":[67]},{"name":"TAPIERR_SCP_DOES_NOT_EXIST","features":[67]},{"name":"TAPIERR_UNKNOWNREQUESTID","features":[67]},{"name":"TAPIERR_UNKNOWNWINHANDLE","features":[67]},{"name":"TAPIMAXAPPNAMESIZE","features":[67]},{"name":"TAPIMAXCALLEDPARTYSIZE","features":[67]},{"name":"TAPIMAXCOMMENTSIZE","features":[67]},{"name":"TAPIMAXDESTADDRESSSIZE","features":[67]},{"name":"TAPIMAXDEVICECLASSSIZE","features":[67]},{"name":"TAPIMAXDEVICEIDSIZE","features":[67]},{"name":"TAPIMEDIATYPE_AUDIO","features":[67]},{"name":"TAPIMEDIATYPE_DATAMODEM","features":[67]},{"name":"TAPIMEDIATYPE_G3FAX","features":[67]},{"name":"TAPIMEDIATYPE_MULTITRACK","features":[67]},{"name":"TAPIMEDIATYPE_VIDEO","features":[67]},{"name":"TAPIOBJECT_EVENT","features":[67]},{"name":"TAPI_CURRENT_VERSION","features":[67]},{"name":"TAPI_CUSTOMTONE","features":[67]},{"name":"TAPI_DETECTTONE","features":[67]},{"name":"TAPI_EVENT","features":[67]},{"name":"TAPI_E_ADDRESSBLOCKED","features":[67]},{"name":"TAPI_E_ALLOCATED","features":[67]},{"name":"TAPI_E_BILLINGREJECTED","features":[67]},{"name":"TAPI_E_CALLCENTER_GROUP_REMOVED","features":[67]},{"name":"TAPI_E_CALLCENTER_INVALAGENTACTIVITY","features":[67]},{"name":"TAPI_E_CALLCENTER_INVALAGENTGROUP","features":[67]},{"name":"TAPI_E_CALLCENTER_INVALAGENTID","features":[67]},{"name":"TAPI_E_CALLCENTER_INVALAGENTSTATE","features":[67]},{"name":"TAPI_E_CALLCENTER_INVALPASSWORD","features":[67]},{"name":"TAPI_E_CALLCENTER_NO_AGENT_ID","features":[67]},{"name":"TAPI_E_CALLCENTER_QUEUE_REMOVED","features":[67]},{"name":"TAPI_E_CALLNOTSELECTED","features":[67]},{"name":"TAPI_E_CALLUNAVAIL","features":[67]},{"name":"TAPI_E_COMPLETIONOVERRUN","features":[67]},{"name":"TAPI_E_CONFERENCEFULL","features":[67]},{"name":"TAPI_E_DESTBUSY","features":[67]},{"name":"TAPI_E_DESTNOANSWER","features":[67]},{"name":"TAPI_E_DESTUNAVAIL","features":[67]},{"name":"TAPI_E_DIALMODIFIERNOTSUPPORTED","features":[67]},{"name":"TAPI_E_DROPPED","features":[67]},{"name":"TAPI_E_INUSE","features":[67]},{"name":"TAPI_E_INVALADDRESS","features":[67]},{"name":"TAPI_E_INVALADDRESSSTATE","features":[67]},{"name":"TAPI_E_INVALADDRESSTYPE","features":[67]},{"name":"TAPI_E_INVALBUTTONLAMPID","features":[67]},{"name":"TAPI_E_INVALBUTTONSTATE","features":[67]},{"name":"TAPI_E_INVALCALLPARAMS","features":[67]},{"name":"TAPI_E_INVALCALLPRIVILEGE","features":[67]},{"name":"TAPI_E_INVALCALLSTATE","features":[67]},{"name":"TAPI_E_INVALCARD","features":[67]},{"name":"TAPI_E_INVALCOMPLETIONID","features":[67]},{"name":"TAPI_E_INVALCOUNTRYCODE","features":[67]},{"name":"TAPI_E_INVALDATAID","features":[67]},{"name":"TAPI_E_INVALDEVICECLASS","features":[67]},{"name":"TAPI_E_INVALDIALPARAMS","features":[67]},{"name":"TAPI_E_INVALDIGITS","features":[67]},{"name":"TAPI_E_INVALFEATURE","features":[67]},{"name":"TAPI_E_INVALGROUPID","features":[67]},{"name":"TAPI_E_INVALHOOKSWITCHDEV","features":[67]},{"name":"TAPI_E_INVALIDDIRECTION","features":[67]},{"name":"TAPI_E_INVALIDMEDIATYPE","features":[67]},{"name":"TAPI_E_INVALIDSTREAM","features":[67]},{"name":"TAPI_E_INVALIDSTREAMSTATE","features":[67]},{"name":"TAPI_E_INVALIDTERMINAL","features":[67]},{"name":"TAPI_E_INVALIDTERMINALCLASS","features":[67]},{"name":"TAPI_E_INVALLIST","features":[67]},{"name":"TAPI_E_INVALLOCATION","features":[67]},{"name":"TAPI_E_INVALMESSAGEID","features":[67]},{"name":"TAPI_E_INVALMODE","features":[67]},{"name":"TAPI_E_INVALPARKID","features":[67]},{"name":"TAPI_E_INVALPRIVILEGE","features":[67]},{"name":"TAPI_E_INVALRATE","features":[67]},{"name":"TAPI_E_INVALTIMEOUT","features":[67]},{"name":"TAPI_E_INVALTONE","features":[67]},{"name":"TAPI_E_MAXSTREAMS","features":[67]},{"name":"TAPI_E_MAXTERMINALS","features":[67]},{"name":"TAPI_E_NOCONFERENCE","features":[67]},{"name":"TAPI_E_NODEVICE","features":[67]},{"name":"TAPI_E_NODRIVER","features":[67]},{"name":"TAPI_E_NOEVENT","features":[67]},{"name":"TAPI_E_NOFORMAT","features":[67]},{"name":"TAPI_E_NOITEMS","features":[67]},{"name":"TAPI_E_NOREQUEST","features":[67]},{"name":"TAPI_E_NOREQUESTRECIPIENT","features":[67]},{"name":"TAPI_E_NOTENOUGHMEMORY","features":[67]},{"name":"TAPI_E_NOTERMINALSELECTED","features":[67]},{"name":"TAPI_E_NOTOWNER","features":[67]},{"name":"TAPI_E_NOTREGISTERED","features":[67]},{"name":"TAPI_E_NOTSTOPPED","features":[67]},{"name":"TAPI_E_NOTSUPPORTED","features":[67]},{"name":"TAPI_E_NOT_INITIALIZED","features":[67]},{"name":"TAPI_E_OPERATIONFAILED","features":[67]},{"name":"TAPI_E_PEER_NOT_SET","features":[67]},{"name":"TAPI_E_PHONENOTOPEN","features":[67]},{"name":"TAPI_E_REGISTRY_SETTING_CORRUPT","features":[67]},{"name":"TAPI_E_REINIT","features":[67]},{"name":"TAPI_E_REQUESTCANCELLED","features":[67]},{"name":"TAPI_E_REQUESTFAILED","features":[67]},{"name":"TAPI_E_REQUESTOVERRUN","features":[67]},{"name":"TAPI_E_REQUESTQUEUEFULL","features":[67]},{"name":"TAPI_E_RESOURCEUNAVAIL","features":[67]},{"name":"TAPI_E_SERVICE_NOT_RUNNING","features":[67]},{"name":"TAPI_E_TARGETNOTFOUND","features":[67]},{"name":"TAPI_E_TARGETSELF","features":[67]},{"name":"TAPI_E_TERMINALINUSE","features":[67]},{"name":"TAPI_E_TERMINAL_PEER","features":[67]},{"name":"TAPI_E_TIMEOUT","features":[67]},{"name":"TAPI_E_USERUSERINFOTOOBIG","features":[67]},{"name":"TAPI_E_WRONGEVENT","features":[67]},{"name":"TAPI_E_WRONG_STATE","features":[67]},{"name":"TAPI_GATHERTERM","features":[67]},{"name":"TAPI_OBJECT_TYPE","features":[67]},{"name":"TAPI_REPLY","features":[67]},{"name":"TAPI_TONEMODE","features":[67]},{"name":"TD_BIDIRECTIONAL","features":[67]},{"name":"TD_CAPTURE","features":[67]},{"name":"TD_MULTITRACK_MIXED","features":[67]},{"name":"TD_NONE","features":[67]},{"name":"TD_RENDER","features":[67]},{"name":"TERMINAL_DIRECTION","features":[67]},{"name":"TERMINAL_MEDIA_STATE","features":[67]},{"name":"TERMINAL_STATE","features":[67]},{"name":"TERMINAL_TYPE","features":[67]},{"name":"TE_ACDGROUP","features":[67]},{"name":"TE_ADDRESS","features":[67]},{"name":"TE_ADDRESSCLOSE","features":[67]},{"name":"TE_ADDRESSCREATE","features":[67]},{"name":"TE_ADDRESSDEVSPECIFIC","features":[67]},{"name":"TE_ADDRESSREMOVE","features":[67]},{"name":"TE_AGENT","features":[67]},{"name":"TE_AGENTHANDLER","features":[67]},{"name":"TE_AGENTSESSION","features":[67]},{"name":"TE_ASRTERMINAL","features":[67]},{"name":"TE_CALLHUB","features":[67]},{"name":"TE_CALLINFOCHANGE","features":[67]},{"name":"TE_CALLMEDIA","features":[67]},{"name":"TE_CALLNOTIFICATION","features":[67]},{"name":"TE_CALLSTATE","features":[67]},{"name":"TE_DIGITEVENT","features":[67]},{"name":"TE_FILETERMINAL","features":[67]},{"name":"TE_GATHERDIGITS","features":[67]},{"name":"TE_GENERATEEVENT","features":[67]},{"name":"TE_PHONECREATE","features":[67]},{"name":"TE_PHONEDEVSPECIFIC","features":[67]},{"name":"TE_PHONEEVENT","features":[67]},{"name":"TE_PHONEREMOVE","features":[67]},{"name":"TE_PRIVATE","features":[67]},{"name":"TE_QOSEVENT","features":[67]},{"name":"TE_QUEUE","features":[67]},{"name":"TE_REINIT","features":[67]},{"name":"TE_REQUEST","features":[67]},{"name":"TE_TAPIOBJECT","features":[67]},{"name":"TE_TONEEVENT","features":[67]},{"name":"TE_TONETERMINAL","features":[67]},{"name":"TE_TRANSLATECHANGE","features":[67]},{"name":"TE_TTSTERMINAL","features":[67]},{"name":"TGT_BUFFERFULL","features":[67]},{"name":"TGT_CANCEL","features":[67]},{"name":"TGT_FIRSTTIMEOUT","features":[67]},{"name":"TGT_INTERTIMEOUT","features":[67]},{"name":"TGT_TERMDIGIT","features":[67]},{"name":"TMS_ACTIVE","features":[67]},{"name":"TMS_IDLE","features":[67]},{"name":"TMS_LASTITEM","features":[67]},{"name":"TMS_PAUSED","features":[67]},{"name":"TOT_ADDRESS","features":[67]},{"name":"TOT_CALL","features":[67]},{"name":"TOT_CALLHUB","features":[67]},{"name":"TOT_NONE","features":[67]},{"name":"TOT_PHONE","features":[67]},{"name":"TOT_TAPI","features":[67]},{"name":"TOT_TERMINAL","features":[67]},{"name":"TRP","features":[67]},{"name":"TSPI_LINEACCEPT","features":[67]},{"name":"TSPI_LINEADDTOCONFERENCE","features":[67]},{"name":"TSPI_LINEANSWER","features":[67]},{"name":"TSPI_LINEBLINDTRANSFER","features":[67]},{"name":"TSPI_LINECLOSE","features":[67]},{"name":"TSPI_LINECLOSECALL","features":[67]},{"name":"TSPI_LINECLOSEMSPINSTANCE","features":[67]},{"name":"TSPI_LINECOMPLETECALL","features":[67]},{"name":"TSPI_LINECOMPLETETRANSFER","features":[67]},{"name":"TSPI_LINECONDITIONALMEDIADETECTION","features":[67]},{"name":"TSPI_LINECONFIGDIALOG","features":[67]},{"name":"TSPI_LINECONFIGDIALOGEDIT","features":[67]},{"name":"TSPI_LINECREATEMSPINSTANCE","features":[67]},{"name":"TSPI_LINEDEVSPECIFIC","features":[67]},{"name":"TSPI_LINEDEVSPECIFICFEATURE","features":[67]},{"name":"TSPI_LINEDIAL","features":[67]},{"name":"TSPI_LINEDROP","features":[67]},{"name":"TSPI_LINEDROPNOOWNER","features":[67]},{"name":"TSPI_LINEDROPONCLOSE","features":[67]},{"name":"TSPI_LINEFORWARD","features":[67]},{"name":"TSPI_LINEGATHERDIGITS","features":[67]},{"name":"TSPI_LINEGENERATEDIGITS","features":[67]},{"name":"TSPI_LINEGENERATETONE","features":[67]},{"name":"TSPI_LINEGETADDRESSCAPS","features":[67]},{"name":"TSPI_LINEGETADDRESSID","features":[67]},{"name":"TSPI_LINEGETADDRESSSTATUS","features":[67]},{"name":"TSPI_LINEGETCALLADDRESSID","features":[67]},{"name":"TSPI_LINEGETCALLHUBTRACKING","features":[67]},{"name":"TSPI_LINEGETCALLID","features":[67]},{"name":"TSPI_LINEGETCALLINFO","features":[67]},{"name":"TSPI_LINEGETCALLSTATUS","features":[67]},{"name":"TSPI_LINEGETDEVCAPS","features":[67]},{"name":"TSPI_LINEGETDEVCONFIG","features":[67]},{"name":"TSPI_LINEGETEXTENSIONID","features":[67]},{"name":"TSPI_LINEGETICON","features":[67]},{"name":"TSPI_LINEGETID","features":[67]},{"name":"TSPI_LINEGETLINEDEVSTATUS","features":[67]},{"name":"TSPI_LINEGETNUMADDRESSIDS","features":[67]},{"name":"TSPI_LINEHOLD","features":[67]},{"name":"TSPI_LINEMAKECALL","features":[67]},{"name":"TSPI_LINEMONITORDIGITS","features":[67]},{"name":"TSPI_LINEMONITORMEDIA","features":[67]},{"name":"TSPI_LINEMONITORTONES","features":[67]},{"name":"TSPI_LINEMSPIDENTIFY","features":[67]},{"name":"TSPI_LINENEGOTIATEEXTVERSION","features":[67]},{"name":"TSPI_LINENEGOTIATETSPIVERSION","features":[67]},{"name":"TSPI_LINEOPEN","features":[67]},{"name":"TSPI_LINEPARK","features":[67]},{"name":"TSPI_LINEPICKUP","features":[67]},{"name":"TSPI_LINEPREPAREADDTOCONFERENCE","features":[67]},{"name":"TSPI_LINERECEIVEMSPDATA","features":[67]},{"name":"TSPI_LINEREDIRECT","features":[67]},{"name":"TSPI_LINERELEASEUSERUSERINFO","features":[67]},{"name":"TSPI_LINEREMOVEFROMCONFERENCE","features":[67]},{"name":"TSPI_LINESECURECALL","features":[67]},{"name":"TSPI_LINESELECTEXTVERSION","features":[67]},{"name":"TSPI_LINESENDUSERUSERINFO","features":[67]},{"name":"TSPI_LINESETAPPSPECIFIC","features":[67]},{"name":"TSPI_LINESETCALLHUBTRACKING","features":[67]},{"name":"TSPI_LINESETCALLPARAMS","features":[67]},{"name":"TSPI_LINESETCURRENTLOCATION","features":[67]},{"name":"TSPI_LINESETDEFAULTMEDIADETECTION","features":[67]},{"name":"TSPI_LINESETDEVCONFIG","features":[67]},{"name":"TSPI_LINESETMEDIACONTROL","features":[67]},{"name":"TSPI_LINESETMEDIAMODE","features":[67]},{"name":"TSPI_LINESETSTATUSMESSAGES","features":[67]},{"name":"TSPI_LINESETTERMINAL","features":[67]},{"name":"TSPI_LINESETUPCONFERENCE","features":[67]},{"name":"TSPI_LINESETUPTRANSFER","features":[67]},{"name":"TSPI_LINESWAPHOLD","features":[67]},{"name":"TSPI_LINEUNCOMPLETECALL","features":[67]},{"name":"TSPI_LINEUNHOLD","features":[67]},{"name":"TSPI_LINEUNPARK","features":[67]},{"name":"TSPI_MESSAGE_BASE","features":[67]},{"name":"TSPI_PHONECLOSE","features":[67]},{"name":"TSPI_PHONECONFIGDIALOG","features":[67]},{"name":"TSPI_PHONEDEVSPECIFIC","features":[67]},{"name":"TSPI_PHONEGETBUTTONINFO","features":[67]},{"name":"TSPI_PHONEGETDATA","features":[67]},{"name":"TSPI_PHONEGETDEVCAPS","features":[67]},{"name":"TSPI_PHONEGETDISPLAY","features":[67]},{"name":"TSPI_PHONEGETEXTENSIONID","features":[67]},{"name":"TSPI_PHONEGETGAIN","features":[67]},{"name":"TSPI_PHONEGETHOOKSWITCH","features":[67]},{"name":"TSPI_PHONEGETICON","features":[67]},{"name":"TSPI_PHONEGETID","features":[67]},{"name":"TSPI_PHONEGETLAMP","features":[67]},{"name":"TSPI_PHONEGETRING","features":[67]},{"name":"TSPI_PHONEGETSTATUS","features":[67]},{"name":"TSPI_PHONEGETVOLUME","features":[67]},{"name":"TSPI_PHONENEGOTIATEEXTVERSION","features":[67]},{"name":"TSPI_PHONENEGOTIATETSPIVERSION","features":[67]},{"name":"TSPI_PHONEOPEN","features":[67]},{"name":"TSPI_PHONESELECTEXTVERSION","features":[67]},{"name":"TSPI_PHONESETBUTTONINFO","features":[67]},{"name":"TSPI_PHONESETDATA","features":[67]},{"name":"TSPI_PHONESETDISPLAY","features":[67]},{"name":"TSPI_PHONESETGAIN","features":[67]},{"name":"TSPI_PHONESETHOOKSWITCH","features":[67]},{"name":"TSPI_PHONESETLAMP","features":[67]},{"name":"TSPI_PHONESETRING","features":[67]},{"name":"TSPI_PHONESETSTATUSMESSAGES","features":[67]},{"name":"TSPI_PHONESETVOLUME","features":[67]},{"name":"TSPI_PROC_BASE","features":[67]},{"name":"TSPI_PROVIDERCONFIG","features":[67]},{"name":"TSPI_PROVIDERCREATELINEDEVICE","features":[67]},{"name":"TSPI_PROVIDERCREATEPHONEDEVICE","features":[67]},{"name":"TSPI_PROVIDERENUMDEVICES","features":[67]},{"name":"TSPI_PROVIDERINIT","features":[67]},{"name":"TSPI_PROVIDERINSTALL","features":[67]},{"name":"TSPI_PROVIDERREMOVE","features":[67]},{"name":"TSPI_PROVIDERSHUTDOWN","features":[67]},{"name":"TS_INUSE","features":[67]},{"name":"TS_NOTINUSE","features":[67]},{"name":"TTM_BEEP","features":[67]},{"name":"TTM_BILLING","features":[67]},{"name":"TTM_BUSY","features":[67]},{"name":"TTM_RINGBACK","features":[67]},{"name":"TT_DYNAMIC","features":[67]},{"name":"TT_STATIC","features":[67]},{"name":"TUISPICREATEDIALOGINSTANCEPARAMS","features":[67]},{"name":"TUISPIDLLCALLBACK","features":[67]},{"name":"TUISPIDLL_OBJECT_DIALOGINSTANCE","features":[67]},{"name":"TUISPIDLL_OBJECT_LINEID","features":[67]},{"name":"TUISPIDLL_OBJECT_PHONEID","features":[67]},{"name":"TUISPIDLL_OBJECT_PROVIDERID","features":[67]},{"name":"VARSTRING","features":[67]},{"name":"atypFile","features":[67]},{"name":"atypMax","features":[67]},{"name":"atypNull","features":[67]},{"name":"atypOle","features":[67]},{"name":"atypPicture","features":[67]},{"name":"cbDisplayName","features":[67]},{"name":"cbEmailName","features":[67]},{"name":"cbMaxIdData","features":[67]},{"name":"cbSeverName","features":[67]},{"name":"cbTYPE","features":[67]},{"name":"lineAccept","features":[67]},{"name":"lineAddProvider","features":[67,3]},{"name":"lineAddProviderA","features":[67,3]},{"name":"lineAddProviderW","features":[67,3]},{"name":"lineAddToConference","features":[67]},{"name":"lineAgentSpecific","features":[67]},{"name":"lineAnswer","features":[67]},{"name":"lineBlindTransfer","features":[67]},{"name":"lineBlindTransferA","features":[67]},{"name":"lineBlindTransferW","features":[67]},{"name":"lineClose","features":[67]},{"name":"lineCompleteCall","features":[67]},{"name":"lineCompleteTransfer","features":[67]},{"name":"lineConfigDialog","features":[67,3]},{"name":"lineConfigDialogA","features":[67,3]},{"name":"lineConfigDialogEdit","features":[67,3]},{"name":"lineConfigDialogEditA","features":[67,3]},{"name":"lineConfigDialogEditW","features":[67,3]},{"name":"lineConfigDialogW","features":[67,3]},{"name":"lineConfigProvider","features":[67,3]},{"name":"lineCreateAgentA","features":[67]},{"name":"lineCreateAgentSessionA","features":[67]},{"name":"lineCreateAgentSessionW","features":[67]},{"name":"lineCreateAgentW","features":[67]},{"name":"lineDeallocateCall","features":[67]},{"name":"lineDevSpecific","features":[67]},{"name":"lineDevSpecificFeature","features":[67]},{"name":"lineDial","features":[67]},{"name":"lineDialA","features":[67]},{"name":"lineDialW","features":[67]},{"name":"lineDrop","features":[67]},{"name":"lineForward","features":[67]},{"name":"lineForwardA","features":[67]},{"name":"lineForwardW","features":[67]},{"name":"lineGatherDigits","features":[67]},{"name":"lineGatherDigitsA","features":[67]},{"name":"lineGatherDigitsW","features":[67]},{"name":"lineGenerateDigits","features":[67]},{"name":"lineGenerateDigitsA","features":[67]},{"name":"lineGenerateDigitsW","features":[67]},{"name":"lineGenerateTone","features":[67]},{"name":"lineGetAddressCaps","features":[67]},{"name":"lineGetAddressCapsA","features":[67]},{"name":"lineGetAddressCapsW","features":[67]},{"name":"lineGetAddressID","features":[67]},{"name":"lineGetAddressIDA","features":[67]},{"name":"lineGetAddressIDW","features":[67]},{"name":"lineGetAddressStatus","features":[67]},{"name":"lineGetAddressStatusA","features":[67]},{"name":"lineGetAddressStatusW","features":[67]},{"name":"lineGetAgentActivityListA","features":[67]},{"name":"lineGetAgentActivityListW","features":[67]},{"name":"lineGetAgentCapsA","features":[67]},{"name":"lineGetAgentCapsW","features":[67]},{"name":"lineGetAgentGroupListA","features":[67]},{"name":"lineGetAgentGroupListW","features":[67]},{"name":"lineGetAgentInfo","features":[67,43]},{"name":"lineGetAgentSessionInfo","features":[67,43]},{"name":"lineGetAgentSessionList","features":[67]},{"name":"lineGetAgentStatusA","features":[67]},{"name":"lineGetAgentStatusW","features":[67]},{"name":"lineGetAppPriority","features":[67]},{"name":"lineGetAppPriorityA","features":[67]},{"name":"lineGetAppPriorityW","features":[67]},{"name":"lineGetCallInfo","features":[67]},{"name":"lineGetCallInfoA","features":[67]},{"name":"lineGetCallInfoW","features":[67]},{"name":"lineGetCallStatus","features":[67,3]},{"name":"lineGetConfRelatedCalls","features":[67]},{"name":"lineGetCountry","features":[67]},{"name":"lineGetCountryA","features":[67]},{"name":"lineGetCountryW","features":[67]},{"name":"lineGetDevCaps","features":[67]},{"name":"lineGetDevCapsA","features":[67]},{"name":"lineGetDevCapsW","features":[67]},{"name":"lineGetDevConfig","features":[67]},{"name":"lineGetDevConfigA","features":[67]},{"name":"lineGetDevConfigW","features":[67]},{"name":"lineGetGroupListA","features":[67]},{"name":"lineGetGroupListW","features":[67]},{"name":"lineGetID","features":[67]},{"name":"lineGetIDA","features":[67]},{"name":"lineGetIDW","features":[67]},{"name":"lineGetIcon","features":[67,52]},{"name":"lineGetIconA","features":[67,52]},{"name":"lineGetIconW","features":[67,52]},{"name":"lineGetLineDevStatus","features":[67]},{"name":"lineGetLineDevStatusA","features":[67]},{"name":"lineGetLineDevStatusW","features":[67]},{"name":"lineGetMessage","features":[67]},{"name":"lineGetNewCalls","features":[67]},{"name":"lineGetNumRings","features":[67]},{"name":"lineGetProviderList","features":[67]},{"name":"lineGetProviderListA","features":[67]},{"name":"lineGetProviderListW","features":[67]},{"name":"lineGetProxyStatus","features":[67]},{"name":"lineGetQueueInfo","features":[67]},{"name":"lineGetQueueListA","features":[67]},{"name":"lineGetQueueListW","features":[67]},{"name":"lineGetRequest","features":[67]},{"name":"lineGetRequestA","features":[67]},{"name":"lineGetRequestW","features":[67]},{"name":"lineGetStatusMessages","features":[67]},{"name":"lineGetTranslateCaps","features":[67]},{"name":"lineGetTranslateCapsA","features":[67]},{"name":"lineGetTranslateCapsW","features":[67]},{"name":"lineHandoff","features":[67]},{"name":"lineHandoffA","features":[67]},{"name":"lineHandoffW","features":[67]},{"name":"lineHold","features":[67]},{"name":"lineInitialize","features":[67,3]},{"name":"lineInitializeExA","features":[67,3]},{"name":"lineInitializeExW","features":[67,3]},{"name":"lineMakeCall","features":[67]},{"name":"lineMakeCallA","features":[67]},{"name":"lineMakeCallW","features":[67]},{"name":"lineMonitorDigits","features":[67]},{"name":"lineMonitorMedia","features":[67]},{"name":"lineMonitorTones","features":[67]},{"name":"lineNegotiateAPIVersion","features":[67]},{"name":"lineNegotiateExtVersion","features":[67]},{"name":"lineOpen","features":[67]},{"name":"lineOpenA","features":[67]},{"name":"lineOpenW","features":[67]},{"name":"linePark","features":[67]},{"name":"lineParkA","features":[67]},{"name":"lineParkW","features":[67]},{"name":"linePickup","features":[67]},{"name":"linePickupA","features":[67]},{"name":"linePickupW","features":[67]},{"name":"linePrepareAddToConference","features":[67]},{"name":"linePrepareAddToConferenceA","features":[67]},{"name":"linePrepareAddToConferenceW","features":[67]},{"name":"lineProxyMessage","features":[67]},{"name":"lineProxyResponse","features":[67,43]},{"name":"lineRedirect","features":[67]},{"name":"lineRedirectA","features":[67]},{"name":"lineRedirectW","features":[67]},{"name":"lineRegisterRequestRecipient","features":[67]},{"name":"lineReleaseUserUserInfo","features":[67]},{"name":"lineRemoveFromConference","features":[67]},{"name":"lineRemoveProvider","features":[67,3]},{"name":"lineSecureCall","features":[67]},{"name":"lineSendUserUserInfo","features":[67]},{"name":"lineSetAgentActivity","features":[67]},{"name":"lineSetAgentGroup","features":[67]},{"name":"lineSetAgentMeasurementPeriod","features":[67]},{"name":"lineSetAgentSessionState","features":[67]},{"name":"lineSetAgentState","features":[67]},{"name":"lineSetAgentStateEx","features":[67]},{"name":"lineSetAppPriority","features":[67]},{"name":"lineSetAppPriorityA","features":[67]},{"name":"lineSetAppPriorityW","features":[67]},{"name":"lineSetAppSpecific","features":[67]},{"name":"lineSetCallData","features":[67]},{"name":"lineSetCallParams","features":[67]},{"name":"lineSetCallPrivilege","features":[67]},{"name":"lineSetCallQualityOfService","features":[67]},{"name":"lineSetCallTreatment","features":[67]},{"name":"lineSetCurrentLocation","features":[67]},{"name":"lineSetDevConfig","features":[67]},{"name":"lineSetDevConfigA","features":[67]},{"name":"lineSetDevConfigW","features":[67]},{"name":"lineSetLineDevStatus","features":[67]},{"name":"lineSetMediaControl","features":[67]},{"name":"lineSetMediaMode","features":[67]},{"name":"lineSetNumRings","features":[67]},{"name":"lineSetQueueMeasurementPeriod","features":[67]},{"name":"lineSetStatusMessages","features":[67]},{"name":"lineSetTerminal","features":[67]},{"name":"lineSetTollList","features":[67]},{"name":"lineSetTollListA","features":[67]},{"name":"lineSetTollListW","features":[67]},{"name":"lineSetupConference","features":[67]},{"name":"lineSetupConferenceA","features":[67]},{"name":"lineSetupConferenceW","features":[67]},{"name":"lineSetupTransfer","features":[67]},{"name":"lineSetupTransferA","features":[67]},{"name":"lineSetupTransferW","features":[67]},{"name":"lineShutdown","features":[67]},{"name":"lineSwapHold","features":[67]},{"name":"lineTranslateAddress","features":[67]},{"name":"lineTranslateAddressA","features":[67]},{"name":"lineTranslateAddressW","features":[67]},{"name":"lineTranslateDialog","features":[67,3]},{"name":"lineTranslateDialogA","features":[67,3]},{"name":"lineTranslateDialogW","features":[67,3]},{"name":"lineUncompleteCall","features":[67]},{"name":"lineUnhold","features":[67]},{"name":"lineUnpark","features":[67]},{"name":"lineUnparkA","features":[67]},{"name":"lineUnparkW","features":[67]},{"name":"phoneClose","features":[67]},{"name":"phoneConfigDialog","features":[67,3]},{"name":"phoneConfigDialogA","features":[67,3]},{"name":"phoneConfigDialogW","features":[67,3]},{"name":"phoneDevSpecific","features":[67]},{"name":"phoneGetButtonInfo","features":[67]},{"name":"phoneGetButtonInfoA","features":[67]},{"name":"phoneGetButtonInfoW","features":[67]},{"name":"phoneGetData","features":[67]},{"name":"phoneGetDevCaps","features":[67]},{"name":"phoneGetDevCapsA","features":[67]},{"name":"phoneGetDevCapsW","features":[67]},{"name":"phoneGetDisplay","features":[67]},{"name":"phoneGetGain","features":[67]},{"name":"phoneGetHookSwitch","features":[67]},{"name":"phoneGetID","features":[67]},{"name":"phoneGetIDA","features":[67]},{"name":"phoneGetIDW","features":[67]},{"name":"phoneGetIcon","features":[67,52]},{"name":"phoneGetIconA","features":[67,52]},{"name":"phoneGetIconW","features":[67,52]},{"name":"phoneGetLamp","features":[67]},{"name":"phoneGetMessage","features":[67]},{"name":"phoneGetRing","features":[67]},{"name":"phoneGetStatus","features":[67]},{"name":"phoneGetStatusA","features":[67]},{"name":"phoneGetStatusMessages","features":[67]},{"name":"phoneGetStatusW","features":[67]},{"name":"phoneGetVolume","features":[67]},{"name":"phoneInitialize","features":[67,3]},{"name":"phoneInitializeExA","features":[67,3]},{"name":"phoneInitializeExW","features":[67,3]},{"name":"phoneNegotiateAPIVersion","features":[67]},{"name":"phoneNegotiateExtVersion","features":[67]},{"name":"phoneOpen","features":[67]},{"name":"phoneSetButtonInfo","features":[67]},{"name":"phoneSetButtonInfoA","features":[67]},{"name":"phoneSetButtonInfoW","features":[67]},{"name":"phoneSetData","features":[67]},{"name":"phoneSetDisplay","features":[67]},{"name":"phoneSetGain","features":[67]},{"name":"phoneSetHookSwitch","features":[67]},{"name":"phoneSetLamp","features":[67]},{"name":"phoneSetRing","features":[67]},{"name":"phoneSetStatusMessages","features":[67]},{"name":"phoneSetVolume","features":[67]},{"name":"phoneShutdown","features":[67]},{"name":"prioHigh","features":[67]},{"name":"prioLow","features":[67]},{"name":"prioNorm","features":[67]},{"name":"tapiGetLocationInfo","features":[67]},{"name":"tapiGetLocationInfoA","features":[67]},{"name":"tapiGetLocationInfoW","features":[67]},{"name":"tapiRequestDrop","features":[67,3]},{"name":"tapiRequestMakeCall","features":[67]},{"name":"tapiRequestMakeCallA","features":[67]},{"name":"tapiRequestMakeCallW","features":[67]},{"name":"tapiRequestMediaCall","features":[67,3]},{"name":"tapiRequestMediaCallA","features":[67,3]},{"name":"tapiRequestMediaCallW","features":[67,3]}],"389":[{"name":"ALLOW_PARTIAL_READS","features":[68]},{"name":"ALL_PIPE","features":[68]},{"name":"ALTERNATE_INTERFACE","features":[68]},{"name":"AUTO_CLEAR_STALL","features":[68]},{"name":"AUTO_FLUSH","features":[68]},{"name":"AUTO_SUSPEND","features":[68]},{"name":"AcquireBusInfo","features":[68]},{"name":"AcquireControllerName","features":[68]},{"name":"AcquireHubName","features":[68]},{"name":"BMREQUEST_CLASS","features":[68]},{"name":"BMREQUEST_DEVICE_TO_HOST","features":[68]},{"name":"BMREQUEST_HOST_TO_DEVICE","features":[68]},{"name":"BMREQUEST_STANDARD","features":[68]},{"name":"BMREQUEST_TO_DEVICE","features":[68]},{"name":"BMREQUEST_TO_ENDPOINT","features":[68]},{"name":"BMREQUEST_TO_INTERFACE","features":[68]},{"name":"BMREQUEST_TO_OTHER","features":[68]},{"name":"BMREQUEST_VENDOR","features":[68]},{"name":"BM_REQUEST_TYPE","features":[68]},{"name":"BULKIN_FLAG","features":[68]},{"name":"CHANNEL_INFO","features":[68]},{"name":"CompositeDevice","features":[68]},{"name":"DEVICE_DESCRIPTOR","features":[68]},{"name":"DEVICE_SPEED","features":[68]},{"name":"DRV_VERSION","features":[68]},{"name":"DeviceCausedOvercurrent","features":[68]},{"name":"DeviceConnected","features":[68]},{"name":"DeviceEnumerating","features":[68]},{"name":"DeviceFailedEnumeration","features":[68]},{"name":"DeviceGeneralFailure","features":[68]},{"name":"DeviceHubNestedTooDeeply","features":[68]},{"name":"DeviceInLegacyHub","features":[68]},{"name":"DeviceNotEnoughBandwidth","features":[68]},{"name":"DeviceNotEnoughPower","features":[68]},{"name":"DeviceReset","features":[68]},{"name":"EHCI_Generic","features":[68]},{"name":"EHCI_Intel_Medfield","features":[68]},{"name":"EHCI_Lucent","features":[68]},{"name":"EHCI_NEC","features":[68]},{"name":"EHCI_NVIDIA_Tegra2","features":[68]},{"name":"EHCI_NVIDIA_Tegra3","features":[68]},{"name":"EVENT_PIPE","features":[68]},{"name":"EnumerationFailure","features":[68]},{"name":"FILE_DEVICE_USB","features":[68]},{"name":"FILE_DEVICE_USB_SCAN","features":[68]},{"name":"FullSpeed","features":[68]},{"name":"GUID_DEVINTERFACE_USB_BILLBOARD","features":[68]},{"name":"GUID_DEVINTERFACE_USB_DEVICE","features":[68]},{"name":"GUID_DEVINTERFACE_USB_HOST_CONTROLLER","features":[68]},{"name":"GUID_DEVINTERFACE_USB_HUB","features":[68]},{"name":"GUID_USB_MSOS20_PLATFORM_CAPABILITY_ID","features":[68]},{"name":"GUID_USB_PERFORMANCE_TRACING","features":[68]},{"name":"GUID_USB_TRANSFER_TRACING","features":[68]},{"name":"GUID_USB_WMI_DEVICE_PERF_INFO","features":[68]},{"name":"GUID_USB_WMI_NODE_INFO","features":[68]},{"name":"GUID_USB_WMI_STD_DATA","features":[68]},{"name":"GUID_USB_WMI_STD_NOTIFICATION","features":[68]},{"name":"GUID_USB_WMI_SURPRISE_REMOVAL_NOTIFICATION","features":[68]},{"name":"GUID_USB_WMI_TRACING","features":[68]},{"name":"HCD_DIAGNOSTIC_MODE_OFF","features":[68]},{"name":"HCD_DIAGNOSTIC_MODE_ON","features":[68]},{"name":"HCD_DISABLE_PORT","features":[68]},{"name":"HCD_ENABLE_PORT","features":[68]},{"name":"HCD_GET_DRIVERKEY_NAME","features":[68]},{"name":"HCD_GET_ROOT_HUB_NAME","features":[68]},{"name":"HCD_GET_STATS_1","features":[68]},{"name":"HCD_GET_STATS_2","features":[68]},{"name":"HCD_ISO_STAT_COUNTERS","features":[68]},{"name":"HCD_STAT_COUNTERS","features":[68]},{"name":"HCD_STAT_INFORMATION_1","features":[68]},{"name":"HCD_STAT_INFORMATION_2","features":[68]},{"name":"HCD_TRACE_READ_REQUEST","features":[68]},{"name":"HCD_USER_REQUEST","features":[68]},{"name":"HUB_DEVICE_CONFIG_INFO","features":[68]},{"name":"HighSpeed","features":[68]},{"name":"HubDevice","features":[68]},{"name":"HubNestedTooDeeply","features":[68]},{"name":"HubOvercurrent","features":[68]},{"name":"HubPowerChange","features":[68]},{"name":"IGNORE_SHORT_PACKETS","features":[68]},{"name":"IOCTL_ABORT_PIPE","features":[68]},{"name":"IOCTL_CANCEL_IO","features":[68]},{"name":"IOCTL_GENERICUSBFN_ACTIVATE_USB_BUS","features":[68]},{"name":"IOCTL_GENERICUSBFN_BUS_EVENT_NOTIFICATION","features":[68]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_IN","features":[68]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_OUT","features":[68]},{"name":"IOCTL_GENERICUSBFN_DEACTIVATE_USB_BUS","features":[68]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO","features":[68]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO_EX","features":[68]},{"name":"IOCTL_GENERICUSBFN_GET_INTERFACE_DESCRIPTOR_SET","features":[68]},{"name":"IOCTL_GENERICUSBFN_GET_PIPE_STATE","features":[68]},{"name":"IOCTL_GENERICUSBFN_REGISTER_USB_STRING","features":[68]},{"name":"IOCTL_GENERICUSBFN_SET_PIPE_STATE","features":[68]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN","features":[68]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN_APPEND_ZERO_PKT","features":[68]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_OUT","features":[68]},{"name":"IOCTL_GET_CHANNEL_ALIGN_RQST","features":[68]},{"name":"IOCTL_GET_DEVICE_DESCRIPTOR","features":[68]},{"name":"IOCTL_GET_HCD_DRIVERKEY_NAME","features":[68]},{"name":"IOCTL_GET_PIPE_CONFIGURATION","features":[68]},{"name":"IOCTL_GET_USB_DESCRIPTOR","features":[68]},{"name":"IOCTL_GET_VERSION","features":[68]},{"name":"IOCTL_INDEX","features":[68]},{"name":"IOCTL_INTERNAL_USB_CYCLE_PORT","features":[68]},{"name":"IOCTL_INTERNAL_USB_ENABLE_PORT","features":[68]},{"name":"IOCTL_INTERNAL_USB_FAIL_GET_STATUS_FROM_DEVICE","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_BUSGUID_INFO","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_BUS_INFO","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_CONTROLLER_NAME","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_CONFIG_INFO","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE_EX","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_COUNT","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_NAME","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_PARENT_HUB_INFO","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_PORT_STATUS","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_ROOTHUB_PDO","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_TOPOLOGY_ADDRESS","features":[68]},{"name":"IOCTL_INTERNAL_USB_GET_TT_DEVICE_HANDLE","features":[68]},{"name":"IOCTL_INTERNAL_USB_NOTIFY_IDLE_READY","features":[68]},{"name":"IOCTL_INTERNAL_USB_RECORD_FAILURE","features":[68]},{"name":"IOCTL_INTERNAL_USB_REGISTER_COMPOSITE_DEVICE","features":[68]},{"name":"IOCTL_INTERNAL_USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[68]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_RESUME","features":[68]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_SUSPEND","features":[68]},{"name":"IOCTL_INTERNAL_USB_RESET_PORT","features":[68]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_IDLE_NOTIFICATION","features":[68]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_URB","features":[68]},{"name":"IOCTL_INTERNAL_USB_UNREGISTER_COMPOSITE_DEVICE","features":[68]},{"name":"IOCTL_READ_REGISTERS","features":[68]},{"name":"IOCTL_RESET_PIPE","features":[68]},{"name":"IOCTL_SEND_USB_REQUEST","features":[68]},{"name":"IOCTL_SET_TIMEOUT","features":[68]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_OFF","features":[68]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_ON","features":[68]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_OFF","features":[68]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_ON","features":[68]},{"name":"IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[68]},{"name":"IOCTL_USB_GET_DEVICE_CHARACTERISTICS","features":[68]},{"name":"IOCTL_USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[68]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES","features":[68]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES_EX","features":[68]},{"name":"IOCTL_USB_GET_HUB_INFORMATION_EX","features":[68]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[68]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[68]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION","features":[68]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[68]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[68]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_NAME","features":[68]},{"name":"IOCTL_USB_GET_NODE_INFORMATION","features":[68]},{"name":"IOCTL_USB_GET_PORT_CONNECTOR_PROPERTIES","features":[68]},{"name":"IOCTL_USB_GET_ROOT_HUB_NAME","features":[68]},{"name":"IOCTL_USB_GET_TRANSPORT_CHARACTERISTICS","features":[68]},{"name":"IOCTL_USB_HCD_DISABLE_PORT","features":[68]},{"name":"IOCTL_USB_HCD_ENABLE_PORT","features":[68]},{"name":"IOCTL_USB_HCD_GET_STATS_1","features":[68]},{"name":"IOCTL_USB_HCD_GET_STATS_2","features":[68]},{"name":"IOCTL_USB_HUB_CYCLE_PORT","features":[68]},{"name":"IOCTL_USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[68]},{"name":"IOCTL_USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[68]},{"name":"IOCTL_USB_RESET_HUB","features":[68]},{"name":"IOCTL_USB_START_TRACKING_FOR_TIME_SYNC","features":[68]},{"name":"IOCTL_USB_STOP_TRACKING_FOR_TIME_SYNC","features":[68]},{"name":"IOCTL_USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[68]},{"name":"IOCTL_WAIT_ON_DEVICE_EVENT","features":[68]},{"name":"IOCTL_WRITE_REGISTERS","features":[68]},{"name":"IO_BLOCK","features":[68]},{"name":"IO_BLOCK_EX","features":[68]},{"name":"InsufficentBandwidth","features":[68]},{"name":"InsufficentPower","features":[68]},{"name":"KREGMANUSBFNENUMPATH","features":[68]},{"name":"KREGUSBFNENUMPATH","features":[68]},{"name":"LowSpeed","features":[68]},{"name":"MAXIMUM_TRANSFER_SIZE","features":[68]},{"name":"MAXIMUM_USB_STRING_LENGTH","features":[68]},{"name":"MAX_ALTERNATE_NAME_LENGTH","features":[68]},{"name":"MAX_ASSOCIATION_NAME_LENGTH","features":[68]},{"name":"MAX_CONFIGURATION_NAME_LENGTH","features":[68]},{"name":"MAX_INTERFACE_NAME_LENGTH","features":[68]},{"name":"MAX_NUM_PIPES","features":[68]},{"name":"MAX_NUM_USBFN_ENDPOINTS","features":[68]},{"name":"MAX_SUPPORTED_CONFIGURATIONS","features":[68]},{"name":"MAX_USB_STRING_LENGTH","features":[68]},{"name":"MS_GENRE_DESCRIPTOR_INDEX","features":[68]},{"name":"MS_OS_FLAGS_CONTAINERID","features":[68]},{"name":"MS_OS_STRING_SIGNATURE","features":[68]},{"name":"MS_POWER_DESCRIPTOR_INDEX","features":[68]},{"name":"ModernDeviceInLegacyHub","features":[68]},{"name":"NoDeviceConnected","features":[68]},{"name":"OHCI_Generic","features":[68]},{"name":"OHCI_Hydra","features":[68]},{"name":"OHCI_NEC","features":[68]},{"name":"OS_STRING","features":[68]},{"name":"OS_STRING_DESCRIPTOR_INDEX","features":[68]},{"name":"OverCurrent","features":[68]},{"name":"PACKET_PARAMETERS","features":[68]},{"name":"PIPE_TRANSFER_TIMEOUT","features":[68]},{"name":"PIPE_TYPE","features":[68]},{"name":"PORT_LINK_STATE_COMPLIANCE_MODE","features":[68]},{"name":"PORT_LINK_STATE_DISABLED","features":[68]},{"name":"PORT_LINK_STATE_HOT_RESET","features":[68]},{"name":"PORT_LINK_STATE_INACTIVE","features":[68]},{"name":"PORT_LINK_STATE_LOOPBACK","features":[68]},{"name":"PORT_LINK_STATE_POLLING","features":[68]},{"name":"PORT_LINK_STATE_RECOVERY","features":[68]},{"name":"PORT_LINK_STATE_RX_DETECT","features":[68]},{"name":"PORT_LINK_STATE_TEST_MODE","features":[68]},{"name":"PORT_LINK_STATE_U0","features":[68]},{"name":"PORT_LINK_STATE_U1","features":[68]},{"name":"PORT_LINK_STATE_U2","features":[68]},{"name":"PORT_LINK_STATE_U3","features":[68]},{"name":"RAW_IO","features":[68]},{"name":"RAW_PIPE_TYPE","features":[68]},{"name":"RAW_RESET_PORT_PARAMETERS","features":[68]},{"name":"RAW_ROOTPORT_FEATURE","features":[68]},{"name":"RAW_ROOTPORT_PARAMETERS","features":[68]},{"name":"READ_DATA_PIPE","features":[68]},{"name":"RESET_PIPE_ON_RESUME","features":[68]},{"name":"ResetOvercurrent","features":[68]},{"name":"SHORT_PACKET_TERMINATE","features":[68]},{"name":"SUSPEND_DELAY","features":[68]},{"name":"UHCI_Generic","features":[68]},{"name":"UHCI_Ich1","features":[68]},{"name":"UHCI_Ich2","features":[68]},{"name":"UHCI_Ich3m","features":[68]},{"name":"UHCI_Ich4","features":[68]},{"name":"UHCI_Ich5","features":[68]},{"name":"UHCI_Ich6","features":[68]},{"name":"UHCI_Intel","features":[68]},{"name":"UHCI_Piix3","features":[68]},{"name":"UHCI_Piix4","features":[68]},{"name":"UHCI_Reserved204","features":[68]},{"name":"UHCI_VIA","features":[68]},{"name":"UHCI_VIA_x01","features":[68]},{"name":"UHCI_VIA_x02","features":[68]},{"name":"UHCI_VIA_x03","features":[68]},{"name":"UHCI_VIA_x04","features":[68]},{"name":"UHCI_VIA_x0E_FIFO","features":[68]},{"name":"URB","features":[68]},{"name":"URB_FUNCTION_ABORT_PIPE","features":[68]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER","features":[68]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER_USING_CHAINED_MDL","features":[68]},{"name":"URB_FUNCTION_CLASS_DEVICE","features":[68]},{"name":"URB_FUNCTION_CLASS_ENDPOINT","features":[68]},{"name":"URB_FUNCTION_CLASS_INTERFACE","features":[68]},{"name":"URB_FUNCTION_CLASS_OTHER","features":[68]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_DEVICE","features":[68]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_ENDPOINT","features":[68]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_INTERFACE","features":[68]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_OTHER","features":[68]},{"name":"URB_FUNCTION_CLOSE_STATIC_STREAMS","features":[68]},{"name":"URB_FUNCTION_CONTROL_TRANSFER","features":[68]},{"name":"URB_FUNCTION_CONTROL_TRANSFER_EX","features":[68]},{"name":"URB_FUNCTION_GET_CONFIGURATION","features":[68]},{"name":"URB_FUNCTION_GET_CURRENT_FRAME_NUMBER","features":[68]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE","features":[68]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_ENDPOINT","features":[68]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_INTERFACE","features":[68]},{"name":"URB_FUNCTION_GET_FRAME_LENGTH","features":[68]},{"name":"URB_FUNCTION_GET_INTERFACE","features":[68]},{"name":"URB_FUNCTION_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[68]},{"name":"URB_FUNCTION_GET_MS_FEATURE_DESCRIPTOR","features":[68]},{"name":"URB_FUNCTION_GET_STATUS_FROM_DEVICE","features":[68]},{"name":"URB_FUNCTION_GET_STATUS_FROM_ENDPOINT","features":[68]},{"name":"URB_FUNCTION_GET_STATUS_FROM_INTERFACE","features":[68]},{"name":"URB_FUNCTION_GET_STATUS_FROM_OTHER","features":[68]},{"name":"URB_FUNCTION_ISOCH_TRANSFER","features":[68]},{"name":"URB_FUNCTION_ISOCH_TRANSFER_USING_CHAINED_MDL","features":[68]},{"name":"URB_FUNCTION_OPEN_STATIC_STREAMS","features":[68]},{"name":"URB_FUNCTION_RELEASE_FRAME_LENGTH_CONTROL","features":[68]},{"name":"URB_FUNCTION_RESERVED_0X0016","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X001D","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X002B","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X002C","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X002D","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X002E","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X002F","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X0033","features":[68]},{"name":"URB_FUNCTION_RESERVE_0X0034","features":[68]},{"name":"URB_FUNCTION_RESET_PIPE","features":[68]},{"name":"URB_FUNCTION_SELECT_CONFIGURATION","features":[68]},{"name":"URB_FUNCTION_SELECT_INTERFACE","features":[68]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_DEVICE","features":[68]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_ENDPOINT","features":[68]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_INTERFACE","features":[68]},{"name":"URB_FUNCTION_SET_FEATURE_TO_DEVICE","features":[68]},{"name":"URB_FUNCTION_SET_FEATURE_TO_ENDPOINT","features":[68]},{"name":"URB_FUNCTION_SET_FEATURE_TO_INTERFACE","features":[68]},{"name":"URB_FUNCTION_SET_FEATURE_TO_OTHER","features":[68]},{"name":"URB_FUNCTION_SET_FRAME_LENGTH","features":[68]},{"name":"URB_FUNCTION_SYNC_CLEAR_STALL","features":[68]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE","features":[68]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL","features":[68]},{"name":"URB_FUNCTION_TAKE_FRAME_LENGTH_CONTROL","features":[68]},{"name":"URB_FUNCTION_VENDOR_DEVICE","features":[68]},{"name":"URB_FUNCTION_VENDOR_ENDPOINT","features":[68]},{"name":"URB_FUNCTION_VENDOR_INTERFACE","features":[68]},{"name":"URB_FUNCTION_VENDOR_OTHER","features":[68]},{"name":"URB_OPEN_STATIC_STREAMS_VERSION_100","features":[68]},{"name":"UREGMANUSBFNENUMPATH","features":[68]},{"name":"UREGUSBFNENUMPATH","features":[68]},{"name":"USBDI_VERSION","features":[68]},{"name":"USBD_DEFAULT_MAXIMUM_TRANSFER_SIZE","features":[68]},{"name":"USBD_DEFAULT_PIPE_TRANSFER","features":[68]},{"name":"USBD_DEVICE_INFORMATION","features":[68]},{"name":"USBD_ENDPOINT_OFFLOAD_INFORMATION","features":[68]},{"name":"USBD_ENDPOINT_OFFLOAD_MODE","features":[68]},{"name":"USBD_INTERFACE_INFORMATION","features":[68]},{"name":"USBD_ISO_PACKET_DESCRIPTOR","features":[68]},{"name":"USBD_ISO_START_FRAME_RANGE","features":[68]},{"name":"USBD_PF_CHANGE_MAX_PACKET","features":[68]},{"name":"USBD_PF_ENABLE_RT_THREAD_ACCESS","features":[68]},{"name":"USBD_PF_HANDLES_SSP_HIGH_BANDWIDTH_ISOCH","features":[68]},{"name":"USBD_PF_INTERACTIVE_PRIORITY","features":[68]},{"name":"USBD_PF_MAP_ADD_TRANSFERS","features":[68]},{"name":"USBD_PF_PRIORITY_MASK","features":[68]},{"name":"USBD_PF_SHORT_PACKET_OPT","features":[68]},{"name":"USBD_PF_SSP_HIGH_BANDWIDTH_ISOCH","features":[68]},{"name":"USBD_PF_VIDEO_PRIORITY","features":[68]},{"name":"USBD_PF_VOICE_PRIORITY","features":[68]},{"name":"USBD_PIPE_INFORMATION","features":[68]},{"name":"USBD_PIPE_TYPE","features":[68]},{"name":"USBD_PORT_CONNECTED","features":[68]},{"name":"USBD_PORT_ENABLED","features":[68]},{"name":"USBD_SHORT_TRANSFER_OK","features":[68]},{"name":"USBD_START_ISO_TRANSFER_ASAP","features":[68]},{"name":"USBD_STREAM_INFORMATION","features":[68]},{"name":"USBD_TRANSFER_DIRECTION","features":[68]},{"name":"USBD_TRANSFER_DIRECTION_IN","features":[68]},{"name":"USBD_TRANSFER_DIRECTION_OUT","features":[68]},{"name":"USBD_VERSION_INFORMATION","features":[68]},{"name":"USBFN_BUS_CONFIGURATION_INFO","features":[68,3]},{"name":"USBFN_BUS_SPEED","features":[68]},{"name":"USBFN_CLASS_INFORMATION_PACKET","features":[68,3]},{"name":"USBFN_CLASS_INFORMATION_PACKET_EX","features":[68,3]},{"name":"USBFN_CLASS_INTERFACE","features":[68]},{"name":"USBFN_CLASS_INTERFACE_EX","features":[68]},{"name":"USBFN_DEVICE_STATE","features":[68]},{"name":"USBFN_DIRECTION","features":[68]},{"name":"USBFN_EVENT","features":[68]},{"name":"USBFN_INTERFACE_INFO","features":[68]},{"name":"USBFN_INTERRUPT_ENDPOINT_SIZE_NOT_UPDATEABLE_MASK","features":[68]},{"name":"USBFN_NOTIFICATION","features":[68]},{"name":"USBFN_PIPE_INFORMATION","features":[68]},{"name":"USBFN_PORT_TYPE","features":[68]},{"name":"USBFN_USB_STRING","features":[68]},{"name":"USBSCAN_GET_DESCRIPTOR","features":[68]},{"name":"USBSCAN_PIPE_BULK","features":[68]},{"name":"USBSCAN_PIPE_CONFIGURATION","features":[68]},{"name":"USBSCAN_PIPE_CONTROL","features":[68]},{"name":"USBSCAN_PIPE_INFORMATION","features":[68]},{"name":"USBSCAN_PIPE_INTERRUPT","features":[68]},{"name":"USBSCAN_PIPE_ISOCHRONOUS","features":[68]},{"name":"USBSCAN_TIMEOUT","features":[68]},{"name":"USBUSER_BANDWIDTH_INFO_REQUEST","features":[68]},{"name":"USBUSER_BUS_STATISTICS_0_REQUEST","features":[68,3]},{"name":"USBUSER_CLEAR_ROOTPORT_FEATURE","features":[68]},{"name":"USBUSER_CLOSE_RAW_DEVICE","features":[68]},{"name":"USBUSER_CONTROLLER_INFO_0","features":[68]},{"name":"USBUSER_CONTROLLER_UNICODE_NAME","features":[68]},{"name":"USBUSER_GET_BANDWIDTH_INFORMATION","features":[68]},{"name":"USBUSER_GET_BUS_STATISTICS_0","features":[68]},{"name":"USBUSER_GET_CONTROLLER_DRIVER_KEY","features":[68]},{"name":"USBUSER_GET_CONTROLLER_INFO_0","features":[68]},{"name":"USBUSER_GET_DRIVER_VERSION","features":[68,3]},{"name":"USBUSER_GET_POWER_STATE_MAP","features":[68]},{"name":"USBUSER_GET_ROOTHUB_SYMBOLIC_NAME","features":[68]},{"name":"USBUSER_GET_ROOTPORT_STATUS","features":[68]},{"name":"USBUSER_GET_USB2HW_VERSION","features":[68]},{"name":"USBUSER_GET_USB2_HW_VERSION","features":[68]},{"name":"USBUSER_GET_USB_DRIVER_VERSION","features":[68]},{"name":"USBUSER_INVALID_REQUEST","features":[68]},{"name":"USBUSER_OPEN_RAW_DEVICE","features":[68]},{"name":"USBUSER_OP_CLOSE_RAW_DEVICE","features":[68]},{"name":"USBUSER_OP_MASK_DEVONLY_API","features":[68]},{"name":"USBUSER_OP_MASK_HCTEST_API","features":[68]},{"name":"USBUSER_OP_OPEN_RAW_DEVICE","features":[68]},{"name":"USBUSER_OP_RAW_RESET_PORT","features":[68]},{"name":"USBUSER_OP_SEND_ONE_PACKET","features":[68]},{"name":"USBUSER_OP_SEND_RAW_COMMAND","features":[68]},{"name":"USBUSER_PASS_THRU","features":[68]},{"name":"USBUSER_PASS_THRU_REQUEST","features":[68]},{"name":"USBUSER_POWER_INFO_REQUEST","features":[68,3]},{"name":"USBUSER_RAW_RESET_ROOT_PORT","features":[68]},{"name":"USBUSER_REFRESH_HCT_REG","features":[68]},{"name":"USBUSER_REQUEST_HEADER","features":[68]},{"name":"USBUSER_ROOTPORT_FEATURE_REQUEST","features":[68]},{"name":"USBUSER_ROOTPORT_PARAMETERS","features":[68]},{"name":"USBUSER_SEND_ONE_PACKET","features":[68]},{"name":"USBUSER_SEND_RAW_COMMAND","features":[68]},{"name":"USBUSER_SET_ROOTPORT_FEATURE","features":[68]},{"name":"USBUSER_USB_REFRESH_HCT_REG","features":[68]},{"name":"USBUSER_VERSION","features":[68]},{"name":"USB_20_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[68]},{"name":"USB_20_HUB_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_20_PORT_CHANGE","features":[68]},{"name":"USB_20_PORT_STATUS","features":[68]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[68]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_MASK","features":[68]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_NOTIFICATION","features":[68]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_PERIODIC","features":[68]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED10","features":[68]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED11","features":[68]},{"name":"USB_30_HUB_DESCRIPTOR","features":[68]},{"name":"USB_30_HUB_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_30_PORT_CHANGE","features":[68]},{"name":"USB_30_PORT_STATUS","features":[68]},{"name":"USB_ACQUIRE_INFO","features":[68]},{"name":"USB_ALLOW_FIRMWARE_UPDATE","features":[68]},{"name":"USB_BANDWIDTH_INFO","features":[68]},{"name":"USB_BOS_DESCRIPTOR","features":[68]},{"name":"USB_BOS_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_BUS_NOTIFICATION","features":[68]},{"name":"USB_BUS_STATISTICS_0","features":[68,3]},{"name":"USB_CHANGE_REGISTRATION_HANDLE","features":[68]},{"name":"USB_CHARGING_POLICY_DEFAULT","features":[68]},{"name":"USB_CHARGING_POLICY_ICCHPF","features":[68]},{"name":"USB_CHARGING_POLICY_ICCLPF","features":[68]},{"name":"USB_CHARGING_POLICY_NO_POWER","features":[68]},{"name":"USB_CLOSE_RAW_DEVICE_PARAMETERS","features":[68]},{"name":"USB_COMMON_DESCRIPTOR","features":[68]},{"name":"USB_COMPOSITE_DEVICE_INFO","features":[68,3]},{"name":"USB_COMPOSITE_FUNCTION_INFO","features":[68,3]},{"name":"USB_CONFIGURATION_DESCRIPTOR","features":[68]},{"name":"USB_CONFIGURATION_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_CONFIGURATION_POWER_DESCRIPTOR","features":[68]},{"name":"USB_CONFIG_BUS_POWERED","features":[68]},{"name":"USB_CONFIG_POWERED_MASK","features":[68]},{"name":"USB_CONFIG_POWER_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_CONFIG_REMOTE_WAKEUP","features":[68]},{"name":"USB_CONFIG_RESERVED","features":[68]},{"name":"USB_CONFIG_SELF_POWERED","features":[68]},{"name":"USB_CONNECTION_NOTIFICATION","features":[68]},{"name":"USB_CONNECTION_STATUS","features":[68]},{"name":"USB_CONTROLLER_DEVICE_INFO","features":[68]},{"name":"USB_CONTROLLER_FLAVOR","features":[68]},{"name":"USB_CONTROLLER_INFO_0","features":[68]},{"name":"USB_CYCLE_PORT","features":[68]},{"name":"USB_CYCLE_PORT_PARAMS","features":[68]},{"name":"USB_DEBUG_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_DEFAULT_DEVICE_ADDRESS","features":[68]},{"name":"USB_DEFAULT_ENDPOINT_ADDRESS","features":[68]},{"name":"USB_DEFAULT_MAX_PACKET","features":[68]},{"name":"USB_DEFAULT_PIPE_SETUP_PACKET","features":[68]},{"name":"USB_DESCRIPTOR_REQUEST","features":[68]},{"name":"USB_DEVICE_CAPABILITY_BATTERY_INFO","features":[68]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD","features":[68]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID","features":[68]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS","features":[68]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_MAX_U1_LATENCY","features":[68]},{"name":"USB_DEVICE_CAPABILITY_MAX_U2_LATENCY","features":[68]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT","features":[68]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_PD_PROVIDER_PORT","features":[68]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM","features":[68]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY","features":[68]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_PRECISION_TIME_MEASUREMENT","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_RX","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_TX","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_BPS","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_GBPS","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_KBPS","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_MBPS","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_ASYMMETRIC","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_SYMMETRIC","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SS","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SSP","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_LTM_CAPABLE","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_RESERVED_MASK","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_FULL","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_HIGH","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_LOW","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_RESERVED_MASK","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_SUPER","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U1_DEVICE_EXIT_MAX_VALUE","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U2_DEVICE_EXIT_MAX_VALUE","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB","features":[68]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION","features":[68]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_BMATTRIBUTES_RESERVED_MASK","features":[68]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_CAPABILITY_WIRELESS_USB","features":[68]},{"name":"USB_DEVICE_CHARACTERISTICS","features":[68]},{"name":"USB_DEVICE_CHARACTERISTICS_MAXIMUM_PATH_DELAYS_AVAILABLE","features":[68]},{"name":"USB_DEVICE_CHARACTERISTICS_VERSION_1","features":[68]},{"name":"USB_DEVICE_CLASS_APPLICATION_SPECIFIC","features":[68]},{"name":"USB_DEVICE_CLASS_AUDIO","features":[68]},{"name":"USB_DEVICE_CLASS_AUDIO_VIDEO","features":[68]},{"name":"USB_DEVICE_CLASS_BILLBOARD","features":[68]},{"name":"USB_DEVICE_CLASS_CDC_DATA","features":[68]},{"name":"USB_DEVICE_CLASS_COMMUNICATIONS","features":[68]},{"name":"USB_DEVICE_CLASS_CONTENT_SECURITY","features":[68]},{"name":"USB_DEVICE_CLASS_DIAGNOSTIC_DEVICE","features":[68]},{"name":"USB_DEVICE_CLASS_HUB","features":[68]},{"name":"USB_DEVICE_CLASS_HUMAN_INTERFACE","features":[68]},{"name":"USB_DEVICE_CLASS_IMAGE","features":[68]},{"name":"USB_DEVICE_CLASS_MISCELLANEOUS","features":[68]},{"name":"USB_DEVICE_CLASS_MONITOR","features":[68]},{"name":"USB_DEVICE_CLASS_PERSONAL_HEALTHCARE","features":[68]},{"name":"USB_DEVICE_CLASS_PHYSICAL_INTERFACE","features":[68]},{"name":"USB_DEVICE_CLASS_POWER","features":[68]},{"name":"USB_DEVICE_CLASS_PRINTER","features":[68]},{"name":"USB_DEVICE_CLASS_RESERVED","features":[68]},{"name":"USB_DEVICE_CLASS_SMART_CARD","features":[68]},{"name":"USB_DEVICE_CLASS_STORAGE","features":[68]},{"name":"USB_DEVICE_CLASS_VENDOR_SPECIFIC","features":[68]},{"name":"USB_DEVICE_CLASS_VIDEO","features":[68]},{"name":"USB_DEVICE_CLASS_WIRELESS_CONTROLLER","features":[68]},{"name":"USB_DEVICE_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_DEVICE_FIRMWARE_HASH_LENGTH","features":[68]},{"name":"USB_DEVICE_INFO","features":[68]},{"name":"USB_DEVICE_NODE_INFO","features":[68,3]},{"name":"USB_DEVICE_PERFORMANCE_INFO","features":[68]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR","features":[68]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_DEVICE_SPEED","features":[68]},{"name":"USB_DEVICE_STATE","features":[68]},{"name":"USB_DEVICE_STATUS","features":[68]},{"name":"USB_DEVICE_TYPE","features":[68]},{"name":"USB_DIAG_IGNORE_HUBS_OFF","features":[68]},{"name":"USB_DIAG_IGNORE_HUBS_ON","features":[68]},{"name":"USB_DISALLOW_FIRMWARE_UPDATE","features":[68]},{"name":"USB_DRIVER_VERSION_PARAMETERS","features":[68,3]},{"name":"USB_ENABLE_PORT","features":[68]},{"name":"USB_ENDPOINT_ADDRESS_MASK","features":[68]},{"name":"USB_ENDPOINT_DESCRIPTOR","features":[68]},{"name":"USB_ENDPOINT_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_ENDPOINT_DIRECTION_MASK","features":[68]},{"name":"USB_ENDPOINT_STATUS","features":[68]},{"name":"USB_ENDPOINT_SUPERSPEED_BULK_MAX_PACKET_SIZE","features":[68]},{"name":"USB_ENDPOINT_SUPERSPEED_CONTROL_MAX_PACKET_SIZE","features":[68]},{"name":"USB_ENDPOINT_SUPERSPEED_INTERRUPT_MAX_PACKET_SIZE","features":[68]},{"name":"USB_ENDPOINT_SUPERSPEED_ISO_MAX_PACKET_SIZE","features":[68]},{"name":"USB_ENDPOINT_TYPE_BULK","features":[68]},{"name":"USB_ENDPOINT_TYPE_BULK_RESERVED_MASK","features":[68]},{"name":"USB_ENDPOINT_TYPE_CONTROL","features":[68]},{"name":"USB_ENDPOINT_TYPE_CONTROL_RESERVED_MASK","features":[68]},{"name":"USB_ENDPOINT_TYPE_INTERRUPT","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_RESERVED_MASK","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ADAPTIVE","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ASYNCHRONOUS","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_MASK","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_NO_SYNCHRONIZATION","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_SYNCHRONOUS","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_DATA_ENDOINT","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_FEEDBACK_ENDPOINT","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_IMPLICIT_FEEDBACK_DATA_ENDPOINT","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_MASK","features":[68]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_RESERVED","features":[68]},{"name":"USB_ENDPOINT_TYPE_MASK","features":[68]},{"name":"USB_FAIL_GET_STATUS","features":[68]},{"name":"USB_FEATURE_BATTERY_WAKE_MASK","features":[68]},{"name":"USB_FEATURE_CHARGING_POLICY","features":[68]},{"name":"USB_FEATURE_ENDPOINT_STALL","features":[68]},{"name":"USB_FEATURE_FUNCTION_SUSPEND","features":[68]},{"name":"USB_FEATURE_INTERFACE_POWER_D0","features":[68]},{"name":"USB_FEATURE_INTERFACE_POWER_D1","features":[68]},{"name":"USB_FEATURE_INTERFACE_POWER_D2","features":[68]},{"name":"USB_FEATURE_INTERFACE_POWER_D3","features":[68]},{"name":"USB_FEATURE_LDM_ENABLE","features":[68]},{"name":"USB_FEATURE_LTM_ENABLE","features":[68]},{"name":"USB_FEATURE_OS_IS_PD_AWARE","features":[68]},{"name":"USB_FEATURE_POLICY_MODE","features":[68]},{"name":"USB_FEATURE_REMOTE_WAKEUP","features":[68]},{"name":"USB_FEATURE_TEST_MODE","features":[68]},{"name":"USB_FEATURE_U1_ENABLE","features":[68]},{"name":"USB_FEATURE_U2_ENABLE","features":[68]},{"name":"USB_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC_INFORMATION","features":[68,3]},{"name":"USB_FUNCTION_SUSPEND_OPTIONS","features":[68]},{"name":"USB_GETSTATUS_LTM_ENABLE","features":[68]},{"name":"USB_GETSTATUS_REMOTE_WAKEUP_ENABLED","features":[68]},{"name":"USB_GETSTATUS_SELF_POWERED","features":[68]},{"name":"USB_GETSTATUS_U1_ENABLE","features":[68]},{"name":"USB_GETSTATUS_U2_ENABLE","features":[68]},{"name":"USB_GET_BUSGUID_INFO","features":[68]},{"name":"USB_GET_BUS_INFO","features":[68]},{"name":"USB_GET_CONTROLLER_NAME","features":[68]},{"name":"USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[68]},{"name":"USB_GET_DEVICE_CHARACTERISTICS","features":[68]},{"name":"USB_GET_DEVICE_HANDLE","features":[68]},{"name":"USB_GET_DEVICE_HANDLE_EX","features":[68]},{"name":"USB_GET_FIRMWARE_ALLOWED_OR_DISALLOWED_STATE","features":[68]},{"name":"USB_GET_FIRMWARE_HASH","features":[68]},{"name":"USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[68]},{"name":"USB_GET_HUB_CAPABILITIES","features":[68]},{"name":"USB_GET_HUB_CAPABILITIES_EX","features":[68]},{"name":"USB_GET_HUB_CONFIG_INFO","features":[68]},{"name":"USB_GET_HUB_COUNT","features":[68]},{"name":"USB_GET_HUB_INFORMATION_EX","features":[68]},{"name":"USB_GET_HUB_NAME","features":[68]},{"name":"USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[68]},{"name":"USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[68]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION","features":[68]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[68]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[68]},{"name":"USB_GET_NODE_CONNECTION_NAME","features":[68]},{"name":"USB_GET_NODE_INFORMATION","features":[68]},{"name":"USB_GET_PARENT_HUB_INFO","features":[68]},{"name":"USB_GET_PORT_CONNECTOR_PROPERTIES","features":[68]},{"name":"USB_GET_PORT_STATUS","features":[68]},{"name":"USB_GET_ROOTHUB_PDO","features":[68]},{"name":"USB_GET_TOPOLOGY_ADDRESS","features":[68]},{"name":"USB_GET_TRANSPORT_CHARACTERISTICS","features":[68]},{"name":"USB_GET_TT_DEVICE_HANDLE","features":[68]},{"name":"USB_HCD_DRIVERKEY_NAME","features":[68]},{"name":"USB_HC_FEATURE_FLAG_PORT_POWER_SWITCHING","features":[68]},{"name":"USB_HC_FEATURE_FLAG_SEL_SUSPEND","features":[68]},{"name":"USB_HC_FEATURE_LEGACY_BIOS","features":[68]},{"name":"USB_HC_FEATURE_TIME_SYNC_API","features":[68]},{"name":"USB_HIGH_SPEED_MAXPACKET","features":[68]},{"name":"USB_HUB_30_PORT_REMOTE_WAKE_MASK","features":[68]},{"name":"USB_HUB_CAPABILITIES","features":[68]},{"name":"USB_HUB_CAPABILITIES_EX","features":[68]},{"name":"USB_HUB_CAP_FLAGS","features":[68]},{"name":"USB_HUB_CHANGE","features":[68]},{"name":"USB_HUB_CYCLE_PORT","features":[68]},{"name":"USB_HUB_DESCRIPTOR","features":[68]},{"name":"USB_HUB_DEVICE_INFO","features":[68,3]},{"name":"USB_HUB_DEVICE_UXD_SETTINGS","features":[68]},{"name":"USB_HUB_INFORMATION","features":[68,3]},{"name":"USB_HUB_INFORMATION_EX","features":[68]},{"name":"USB_HUB_NAME","features":[68]},{"name":"USB_HUB_NODE","features":[68]},{"name":"USB_HUB_PORT_INFORMATION","features":[68]},{"name":"USB_HUB_STATUS","features":[68]},{"name":"USB_HUB_STATUS_AND_CHANGE","features":[68]},{"name":"USB_HUB_TYPE","features":[68]},{"name":"USB_HcGeneric","features":[68]},{"name":"USB_IDLE_CALLBACK","features":[68]},{"name":"USB_IDLE_CALLBACK_INFO","features":[68]},{"name":"USB_IDLE_NOTIFICATION","features":[68]},{"name":"USB_IDLE_NOTIFICATION_EX","features":[68]},{"name":"USB_ID_STRING","features":[68]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR","features":[68]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_INTERFACE_DESCRIPTOR","features":[68]},{"name":"USB_INTERFACE_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR","features":[68]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_INTERFACE_STATUS","features":[68]},{"name":"USB_MI_PARENT_INFORMATION","features":[68]},{"name":"USB_NODE_CONNECTION_ATTRIBUTES","features":[68]},{"name":"USB_NODE_CONNECTION_DRIVERKEY_NAME","features":[68]},{"name":"USB_NODE_CONNECTION_INFORMATION","features":[68,3]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX","features":[68,3]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2","features":[68]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2_FLAGS","features":[68]},{"name":"USB_NODE_CONNECTION_NAME","features":[68]},{"name":"USB_NODE_INFORMATION","features":[68,3]},{"name":"USB_NOTIFICATION","features":[68]},{"name":"USB_NOTIFICATION_TYPE","features":[68]},{"name":"USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[68]},{"name":"USB_OPEN_RAW_DEVICE_PARAMETERS","features":[68]},{"name":"USB_OTG_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_OTHER_SPEED_CONFIGURATION_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_PACKETFLAG_ASYNC_IN","features":[68]},{"name":"USB_PACKETFLAG_ASYNC_OUT","features":[68]},{"name":"USB_PACKETFLAG_FULL_SPEED","features":[68]},{"name":"USB_PACKETFLAG_HIGH_SPEED","features":[68]},{"name":"USB_PACKETFLAG_ISO_IN","features":[68]},{"name":"USB_PACKETFLAG_ISO_OUT","features":[68]},{"name":"USB_PACKETFLAG_LOW_SPEED","features":[68]},{"name":"USB_PACKETFLAG_SETUP","features":[68]},{"name":"USB_PACKETFLAG_TOGGLE0","features":[68]},{"name":"USB_PACKETFLAG_TOGGLE1","features":[68]},{"name":"USB_PASS_THRU_PARAMETERS","features":[68]},{"name":"USB_PIPE_INFO","features":[68]},{"name":"USB_PORTATTR_MINI_CONNECTOR","features":[68]},{"name":"USB_PORTATTR_NO_CONNECTOR","features":[68]},{"name":"USB_PORTATTR_NO_OVERCURRENT_UI","features":[68]},{"name":"USB_PORTATTR_OEM_CONNECTOR","features":[68]},{"name":"USB_PORTATTR_OWNED_BY_CC","features":[68]},{"name":"USB_PORTATTR_SHARED_USB2","features":[68]},{"name":"USB_PORT_CHANGE","features":[68]},{"name":"USB_PORT_CONNECTOR_PROPERTIES","features":[68]},{"name":"USB_PORT_EXT_STATUS","features":[68]},{"name":"USB_PORT_EXT_STATUS_AND_CHANGE","features":[68]},{"name":"USB_PORT_PROPERTIES","features":[68]},{"name":"USB_PORT_STATUS","features":[68]},{"name":"USB_PORT_STATUS_AND_CHANGE","features":[68]},{"name":"USB_PORT_STATUS_CONNECT","features":[68]},{"name":"USB_PORT_STATUS_ENABLE","features":[68]},{"name":"USB_PORT_STATUS_HIGH_SPEED","features":[68]},{"name":"USB_PORT_STATUS_LOW_SPEED","features":[68]},{"name":"USB_PORT_STATUS_OVER_CURRENT","features":[68]},{"name":"USB_PORT_STATUS_POWER","features":[68]},{"name":"USB_PORT_STATUS_RESET","features":[68]},{"name":"USB_PORT_STATUS_SUSPEND","features":[68]},{"name":"USB_POWER_INFO","features":[68,3]},{"name":"USB_PROTOCOLS","features":[68]},{"name":"USB_RECORD_FAILURE","features":[68]},{"name":"USB_REGISTER_COMPOSITE_DEVICE","features":[68]},{"name":"USB_REGISTER_FOR_TRANSPORT_BANDWIDTH_CHANGE","features":[68]},{"name":"USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[68]},{"name":"USB_REGISTER_FOR_TRANSPORT_LATENCY_CHANGE","features":[68]},{"name":"USB_REQUEST_CLEAR_FEATURE","features":[68]},{"name":"USB_REQUEST_CLEAR_TT_BUFFER","features":[68]},{"name":"USB_REQUEST_GET_CONFIGURATION","features":[68]},{"name":"USB_REQUEST_GET_DESCRIPTOR","features":[68]},{"name":"USB_REQUEST_GET_FIRMWARE_STATUS","features":[68]},{"name":"USB_REQUEST_GET_INTERFACE","features":[68]},{"name":"USB_REQUEST_GET_PORT_ERR_COUNT","features":[68]},{"name":"USB_REQUEST_GET_STATE","features":[68]},{"name":"USB_REQUEST_GET_STATUS","features":[68]},{"name":"USB_REQUEST_GET_TT_STATE","features":[68]},{"name":"USB_REQUEST_ISOCH_DELAY","features":[68]},{"name":"USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[68]},{"name":"USB_REQUEST_RESET_TT","features":[68]},{"name":"USB_REQUEST_SET_ADDRESS","features":[68]},{"name":"USB_REQUEST_SET_CONFIGURATION","features":[68]},{"name":"USB_REQUEST_SET_DESCRIPTOR","features":[68]},{"name":"USB_REQUEST_SET_FEATURE","features":[68]},{"name":"USB_REQUEST_SET_FIRMWARE_STATUS","features":[68]},{"name":"USB_REQUEST_SET_HUB_DEPTH","features":[68]},{"name":"USB_REQUEST_SET_INTERFACE","features":[68]},{"name":"USB_REQUEST_SET_SEL","features":[68]},{"name":"USB_REQUEST_STOP_TT","features":[68]},{"name":"USB_REQUEST_SYNC_FRAME","features":[68]},{"name":"USB_REQ_GLOBAL_RESUME","features":[68]},{"name":"USB_REQ_GLOBAL_SUSPEND","features":[68]},{"name":"USB_RESERVED_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_RESERVED_USER_BASE","features":[68]},{"name":"USB_RESET_HUB","features":[68]},{"name":"USB_RESET_PORT","features":[68]},{"name":"USB_ROOT_HUB_NAME","features":[68]},{"name":"USB_SEND_RAW_COMMAND_PARAMETERS","features":[68]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC","features":[68]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[68,3]},{"name":"USB_STATUS_EXT_PORT_STATUS","features":[68]},{"name":"USB_STATUS_PD_STATUS","features":[68]},{"name":"USB_STATUS_PORT_STATUS","features":[68]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC","features":[68]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[68,3]},{"name":"USB_STRING_DESCRIPTOR","features":[68]},{"name":"USB_STRING_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_SUBMIT_URB","features":[68]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MAX_BYTESPERINTERVAL","features":[68]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MIN_BYTESPERINTERVAL","features":[68]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR","features":[68]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR","features":[68]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[68]},{"name":"USB_SUPERSPEED_ISOCHRONOUS_MAX_MULTIPLIER","features":[68]},{"name":"USB_SUPPORT_D0_COMMAND","features":[68]},{"name":"USB_SUPPORT_D1_COMMAND","features":[68]},{"name":"USB_SUPPORT_D1_WAKEUP","features":[68]},{"name":"USB_SUPPORT_D2_COMMAND","features":[68]},{"name":"USB_SUPPORT_D2_WAKEUP","features":[68]},{"name":"USB_SUPPORT_D3_COMMAND","features":[68]},{"name":"USB_TEST_MODE_TEST_FORCE_ENABLE","features":[68]},{"name":"USB_TEST_MODE_TEST_J","features":[68]},{"name":"USB_TEST_MODE_TEST_K","features":[68]},{"name":"USB_TEST_MODE_TEST_PACKET","features":[68]},{"name":"USB_TEST_MODE_TEST_SE0_NAK","features":[68]},{"name":"USB_TOPOLOGY_ADDRESS","features":[68]},{"name":"USB_TRANSPORT_CHARACTERISTICS","features":[68]},{"name":"USB_TRANSPORT_CHARACTERISTICS_BANDWIDTH_AVAILABLE","features":[68]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_NOTIFICATION","features":[68]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_REGISTRATION","features":[68]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_UNREGISTRATION","features":[68]},{"name":"USB_TRANSPORT_CHARACTERISTICS_LATENCY_AVAILABLE","features":[68]},{"name":"USB_TRANSPORT_CHARACTERISTICS_VERSION_1","features":[68]},{"name":"USB_UNICODE_NAME","features":[68]},{"name":"USB_UNREGISTER_COMPOSITE_DEVICE","features":[68]},{"name":"USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[68]},{"name":"USB_USB2HW_VERSION_PARAMETERS","features":[68]},{"name":"USB_USER_ERROR_CODE","features":[68]},{"name":"USB_WMI_DEVICE_NODE_TYPE","features":[68]},{"name":"Usb11Device","features":[68]},{"name":"Usb20Device","features":[68]},{"name":"Usb20Hub","features":[68]},{"name":"Usb30Hub","features":[68]},{"name":"UsbController","features":[68]},{"name":"UsbDevice","features":[68]},{"name":"UsbFullSpeed","features":[68]},{"name":"UsbHighSpeed","features":[68]},{"name":"UsbHub","features":[68]},{"name":"UsbLowSpeed","features":[68]},{"name":"UsbMIParent","features":[68]},{"name":"UsbRootHub","features":[68]},{"name":"UsbSuperSpeed","features":[68]},{"name":"UsbUserBufferTooSmall","features":[68]},{"name":"UsbUserDeviceNotStarted","features":[68]},{"name":"UsbUserErrorNotMapped","features":[68]},{"name":"UsbUserFeatureDisabled","features":[68]},{"name":"UsbUserInvalidHeaderParameter","features":[68]},{"name":"UsbUserInvalidParameter","features":[68]},{"name":"UsbUserInvalidRequestCode","features":[68]},{"name":"UsbUserMiniportError","features":[68]},{"name":"UsbUserNoDeviceConnected","features":[68]},{"name":"UsbUserNotSupported","features":[68]},{"name":"UsbUserSuccess","features":[68]},{"name":"UsbdEndpointOffloadHardwareAssisted","features":[68]},{"name":"UsbdEndpointOffloadModeNotSupported","features":[68]},{"name":"UsbdEndpointOffloadSoftwareAssisted","features":[68]},{"name":"UsbdPipeTypeBulk","features":[68]},{"name":"UsbdPipeTypeControl","features":[68]},{"name":"UsbdPipeTypeInterrupt","features":[68]},{"name":"UsbdPipeTypeIsochronous","features":[68]},{"name":"UsbfnBusSpeedFull","features":[68]},{"name":"UsbfnBusSpeedHigh","features":[68]},{"name":"UsbfnBusSpeedLow","features":[68]},{"name":"UsbfnBusSpeedMaximum","features":[68]},{"name":"UsbfnBusSpeedSuper","features":[68]},{"name":"UsbfnChargingDownstreamPort","features":[68]},{"name":"UsbfnDedicatedChargingPort","features":[68]},{"name":"UsbfnDeviceStateAddressed","features":[68]},{"name":"UsbfnDeviceStateAttached","features":[68]},{"name":"UsbfnDeviceStateConfigured","features":[68]},{"name":"UsbfnDeviceStateDefault","features":[68]},{"name":"UsbfnDeviceStateDetached","features":[68]},{"name":"UsbfnDeviceStateMinimum","features":[68]},{"name":"UsbfnDeviceStateStateMaximum","features":[68]},{"name":"UsbfnDeviceStateSuspended","features":[68]},{"name":"UsbfnDirectionIn","features":[68]},{"name":"UsbfnDirectionMaximum","features":[68]},{"name":"UsbfnDirectionMinimum","features":[68]},{"name":"UsbfnDirectionOut","features":[68]},{"name":"UsbfnDirectionRx","features":[68]},{"name":"UsbfnDirectionTx","features":[68]},{"name":"UsbfnEventAttach","features":[68]},{"name":"UsbfnEventBusTearDown","features":[68]},{"name":"UsbfnEventConfigured","features":[68]},{"name":"UsbfnEventDetach","features":[68]},{"name":"UsbfnEventMaximum","features":[68]},{"name":"UsbfnEventMinimum","features":[68]},{"name":"UsbfnEventPortType","features":[68]},{"name":"UsbfnEventReset","features":[68]},{"name":"UsbfnEventResume","features":[68]},{"name":"UsbfnEventSetInterface","features":[68]},{"name":"UsbfnEventSetupPacket","features":[68]},{"name":"UsbfnEventSuspend","features":[68]},{"name":"UsbfnEventUnConfigured","features":[68]},{"name":"UsbfnInvalidDedicatedChargingPort","features":[68]},{"name":"UsbfnPortTypeMaximum","features":[68]},{"name":"UsbfnProprietaryDedicatedChargingPort","features":[68]},{"name":"UsbfnStandardDownstreamPort","features":[68]},{"name":"UsbfnUnknownPort","features":[68]},{"name":"WDMUSB_POWER_STATE","features":[68]},{"name":"WINUSB_INTERFACE_HANDLE","features":[68]},{"name":"WINUSB_PIPE_INFORMATION","features":[68]},{"name":"WINUSB_PIPE_INFORMATION_EX","features":[68]},{"name":"WINUSB_PIPE_POLICY","features":[68]},{"name":"WINUSB_POWER_POLICY","features":[68]},{"name":"WINUSB_SETUP_PACKET","features":[68]},{"name":"WMI_USB_DEVICE_NODE_INFORMATION","features":[68]},{"name":"WMI_USB_DRIVER_INFORMATION","features":[68]},{"name":"WMI_USB_DRIVER_NOTIFICATION","features":[68]},{"name":"WMI_USB_HUB_NODE_INFORMATION","features":[68]},{"name":"WMI_USB_PERFORMANCE_INFORMATION","features":[68]},{"name":"WMI_USB_POWER_DEVICE_ENABLE","features":[68]},{"name":"WRITE_DATA_PIPE","features":[68]},{"name":"WdmUsbPowerDeviceD0","features":[68]},{"name":"WdmUsbPowerDeviceD1","features":[68]},{"name":"WdmUsbPowerDeviceD2","features":[68]},{"name":"WdmUsbPowerDeviceD3","features":[68]},{"name":"WdmUsbPowerDeviceUnspecified","features":[68]},{"name":"WdmUsbPowerNotMapped","features":[68]},{"name":"WdmUsbPowerSystemHibernate","features":[68]},{"name":"WdmUsbPowerSystemShutdown","features":[68]},{"name":"WdmUsbPowerSystemSleeping1","features":[68]},{"name":"WdmUsbPowerSystemSleeping2","features":[68]},{"name":"WdmUsbPowerSystemSleeping3","features":[68]},{"name":"WdmUsbPowerSystemUnspecified","features":[68]},{"name":"WdmUsbPowerSystemWorking","features":[68]},{"name":"WinUSB_TestGuid","features":[68]},{"name":"WinUsb_AbortPipe","features":[68,3]},{"name":"WinUsb_ControlTransfer","features":[68,3,8]},{"name":"WinUsb_FlushPipe","features":[68,3]},{"name":"WinUsb_Free","features":[68,3]},{"name":"WinUsb_GetAdjustedFrameNumber","features":[68,3]},{"name":"WinUsb_GetAssociatedInterface","features":[68,3]},{"name":"WinUsb_GetCurrentAlternateSetting","features":[68,3]},{"name":"WinUsb_GetCurrentFrameNumber","features":[68,3]},{"name":"WinUsb_GetCurrentFrameNumberAndQpc","features":[68,3]},{"name":"WinUsb_GetDescriptor","features":[68,3]},{"name":"WinUsb_GetOverlappedResult","features":[68,3,8]},{"name":"WinUsb_GetPipePolicy","features":[68,3]},{"name":"WinUsb_GetPowerPolicy","features":[68,3]},{"name":"WinUsb_Initialize","features":[68,3]},{"name":"WinUsb_ParseConfigurationDescriptor","features":[68]},{"name":"WinUsb_ParseDescriptors","features":[68]},{"name":"WinUsb_QueryDeviceInformation","features":[68,3]},{"name":"WinUsb_QueryInterfaceSettings","features":[68,3]},{"name":"WinUsb_QueryPipe","features":[68,3]},{"name":"WinUsb_QueryPipeEx","features":[68,3]},{"name":"WinUsb_ReadIsochPipe","features":[68,3,8]},{"name":"WinUsb_ReadIsochPipeAsap","features":[68,3,8]},{"name":"WinUsb_ReadPipe","features":[68,3,8]},{"name":"WinUsb_RegisterIsochBuffer","features":[68,3]},{"name":"WinUsb_ResetPipe","features":[68,3]},{"name":"WinUsb_SetCurrentAlternateSetting","features":[68,3]},{"name":"WinUsb_SetPipePolicy","features":[68,3]},{"name":"WinUsb_SetPowerPolicy","features":[68,3]},{"name":"WinUsb_StartTrackingForTimeSync","features":[68,3]},{"name":"WinUsb_StopTrackingForTimeSync","features":[68,3]},{"name":"WinUsb_UnregisterIsochBuffer","features":[68,3]},{"name":"WinUsb_WriteIsochPipe","features":[68,3,8]},{"name":"WinUsb_WriteIsochPipeAsap","features":[68,3,8]},{"name":"WinUsb_WritePipe","features":[68,3,8]},{"name":"_URB_BULK_OR_INTERRUPT_TRANSFER","features":[68]},{"name":"_URB_CONTROL_DESCRIPTOR_REQUEST","features":[68]},{"name":"_URB_CONTROL_FEATURE_REQUEST","features":[68]},{"name":"_URB_CONTROL_GET_CONFIGURATION_REQUEST","features":[68]},{"name":"_URB_CONTROL_GET_INTERFACE_REQUEST","features":[68]},{"name":"_URB_CONTROL_GET_STATUS_REQUEST","features":[68]},{"name":"_URB_CONTROL_TRANSFER","features":[68]},{"name":"_URB_CONTROL_TRANSFER_EX","features":[68]},{"name":"_URB_CONTROL_VENDOR_OR_CLASS_REQUEST","features":[68]},{"name":"_URB_FRAME_LENGTH_CONTROL","features":[68]},{"name":"_URB_GET_CURRENT_FRAME_NUMBER","features":[68]},{"name":"_URB_GET_FRAME_LENGTH","features":[68]},{"name":"_URB_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[68]},{"name":"_URB_HCD_AREA","features":[68]},{"name":"_URB_HEADER","features":[68]},{"name":"_URB_ISOCH_TRANSFER","features":[68]},{"name":"_URB_OPEN_STATIC_STREAMS","features":[68]},{"name":"_URB_OS_FEATURE_DESCRIPTOR_REQUEST","features":[68]},{"name":"_URB_PIPE_REQUEST","features":[68]},{"name":"_URB_SELECT_CONFIGURATION","features":[68]},{"name":"_URB_SELECT_INTERFACE","features":[68]},{"name":"_URB_SET_FRAME_LENGTH","features":[68]}],"390":[{"name":"DeviceDiscoveryMechanism","features":[69]},{"name":"DirectedDiscovery","features":[69]},{"name":"IWSDAddress","features":[69]},{"name":"IWSDAsyncCallback","features":[69]},{"name":"IWSDAsyncResult","features":[69]},{"name":"IWSDAttachment","features":[69]},{"name":"IWSDDeviceHost","features":[69]},{"name":"IWSDDeviceHostNotify","features":[69]},{"name":"IWSDDeviceProxy","features":[69]},{"name":"IWSDEndpointProxy","features":[69]},{"name":"IWSDEventingStatus","features":[69]},{"name":"IWSDHttpAddress","features":[69]},{"name":"IWSDHttpAuthParameters","features":[69]},{"name":"IWSDHttpMessageParameters","features":[69]},{"name":"IWSDInboundAttachment","features":[69]},{"name":"IWSDMessageParameters","features":[69]},{"name":"IWSDMetadataExchange","features":[69]},{"name":"IWSDOutboundAttachment","features":[69]},{"name":"IWSDSSLClientCertificate","features":[69]},{"name":"IWSDScopeMatchingRule","features":[69]},{"name":"IWSDServiceMessaging","features":[69]},{"name":"IWSDServiceProxy","features":[69]},{"name":"IWSDServiceProxyEventing","features":[69]},{"name":"IWSDSignatureProperty","features":[69]},{"name":"IWSDTransportAddress","features":[69]},{"name":"IWSDUdpAddress","features":[69]},{"name":"IWSDUdpMessageParameters","features":[69]},{"name":"IWSDXMLContext","features":[69]},{"name":"IWSDiscoveredService","features":[69]},{"name":"IWSDiscoveryProvider","features":[69]},{"name":"IWSDiscoveryProviderNotify","features":[69]},{"name":"IWSDiscoveryPublisher","features":[69]},{"name":"IWSDiscoveryPublisherNotify","features":[69]},{"name":"MulticastDiscovery","features":[69]},{"name":"ONE_WAY","features":[69]},{"name":"OpAnyElement","features":[69]},{"name":"OpAnyElements","features":[69]},{"name":"OpAnyNumber","features":[69]},{"name":"OpAnyText","features":[69]},{"name":"OpAnything","features":[69]},{"name":"OpAttribute_","features":[69]},{"name":"OpBeginAll","features":[69]},{"name":"OpBeginAnyElement","features":[69]},{"name":"OpBeginChoice","features":[69]},{"name":"OpBeginElement_","features":[69]},{"name":"OpBeginSequence","features":[69]},{"name":"OpElement_","features":[69]},{"name":"OpEndAll","features":[69]},{"name":"OpEndChoice","features":[69]},{"name":"OpEndElement","features":[69]},{"name":"OpEndOfTable","features":[69]},{"name":"OpEndSequence","features":[69]},{"name":"OpFormatBool_","features":[69]},{"name":"OpFormatDateTime_","features":[69]},{"name":"OpFormatDom_","features":[69]},{"name":"OpFormatDouble_","features":[69]},{"name":"OpFormatDuration_","features":[69]},{"name":"OpFormatDynamicType_","features":[69]},{"name":"OpFormatFloat_","features":[69]},{"name":"OpFormatInt16_","features":[69]},{"name":"OpFormatInt32_","features":[69]},{"name":"OpFormatInt64_","features":[69]},{"name":"OpFormatInt8_","features":[69]},{"name":"OpFormatListInsertTail_","features":[69]},{"name":"OpFormatLookupType_","features":[69]},{"name":"OpFormatMax","features":[69]},{"name":"OpFormatName_","features":[69]},{"name":"OpFormatStruct_","features":[69]},{"name":"OpFormatType_","features":[69]},{"name":"OpFormatUInt16_","features":[69]},{"name":"OpFormatUInt32_","features":[69]},{"name":"OpFormatUInt64_","features":[69]},{"name":"OpFormatUInt8_","features":[69]},{"name":"OpFormatUnicodeString_","features":[69]},{"name":"OpFormatUri_","features":[69]},{"name":"OpFormatUuidUri_","features":[69]},{"name":"OpFormatXMLDeclaration_","features":[69]},{"name":"OpNone","features":[69]},{"name":"OpOneOrMore","features":[69]},{"name":"OpOptional","features":[69]},{"name":"OpProcess_","features":[69]},{"name":"OpQualifiedAttribute_","features":[69]},{"name":"PWSD_SOAP_MESSAGE_HANDLER","features":[69]},{"name":"REQUESTBODY_GetStatus","features":[69]},{"name":"REQUESTBODY_Renew","features":[69,3]},{"name":"REQUESTBODY_Subscribe","features":[69,3]},{"name":"REQUESTBODY_Unsubscribe","features":[69]},{"name":"RESPONSEBODY_GetMetadata","features":[69]},{"name":"RESPONSEBODY_GetStatus","features":[69,3]},{"name":"RESPONSEBODY_Renew","features":[69,3]},{"name":"RESPONSEBODY_Subscribe","features":[69,3]},{"name":"RESPONSEBODY_SubscriptionEnd","features":[69]},{"name":"SecureDirectedDiscovery","features":[69]},{"name":"TWO_WAY","features":[69]},{"name":"WSDAPI_ADDRESSFAMILY_IPV4","features":[69]},{"name":"WSDAPI_ADDRESSFAMILY_IPV6","features":[69]},{"name":"WSDAPI_COMPACTSIG_ACCEPT_ALL_MESSAGES","features":[69]},{"name":"WSDAPI_OPTION_MAX_INBOUND_MESSAGE_SIZE","features":[69]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_DEBUGGER","features":[69]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_FILE","features":[69]},{"name":"WSDAPI_SSL_CERT_APPLY_DEFAULT_CHECKS","features":[69]},{"name":"WSDAPI_SSL_CERT_IGNORE_EXPIRY","features":[69]},{"name":"WSDAPI_SSL_CERT_IGNORE_INVALID_CN","features":[69]},{"name":"WSDAPI_SSL_CERT_IGNORE_REVOCATION","features":[69]},{"name":"WSDAPI_SSL_CERT_IGNORE_UNKNOWN_CA","features":[69]},{"name":"WSDAPI_SSL_CERT_IGNORE_WRONG_USAGE","features":[69]},{"name":"WSDAllocateLinkedMemory","features":[69]},{"name":"WSDAttachLinkedMemory","features":[69]},{"name":"WSDCreateDeviceHost","features":[69]},{"name":"WSDCreateDeviceHost2","features":[69]},{"name":"WSDCreateDeviceHostAdvanced","features":[69]},{"name":"WSDCreateDeviceProxy","features":[69]},{"name":"WSDCreateDeviceProxy2","features":[69]},{"name":"WSDCreateDeviceProxyAdvanced","features":[69]},{"name":"WSDCreateDiscoveryProvider","features":[69]},{"name":"WSDCreateDiscoveryProvider2","features":[69]},{"name":"WSDCreateDiscoveryPublisher","features":[69]},{"name":"WSDCreateDiscoveryPublisher2","features":[69]},{"name":"WSDCreateHttpAddress","features":[69]},{"name":"WSDCreateHttpMessageParameters","features":[69]},{"name":"WSDCreateOutboundAttachment","features":[69]},{"name":"WSDCreateUdpAddress","features":[69]},{"name":"WSDCreateUdpMessageParameters","features":[69]},{"name":"WSDDetachLinkedMemory","features":[69]},{"name":"WSDET_INCOMING_FAULT","features":[69]},{"name":"WSDET_INCOMING_MESSAGE","features":[69]},{"name":"WSDET_NONE","features":[69]},{"name":"WSDET_RESPONSE_TIMEOUT","features":[69]},{"name":"WSDET_TRANSMISSION_FAILURE","features":[69]},{"name":"WSDEventType","features":[69]},{"name":"WSDFreeLinkedMemory","features":[69]},{"name":"WSDGenerateFault","features":[69]},{"name":"WSDGenerateFaultEx","features":[69]},{"name":"WSDGetConfigurationOption","features":[69]},{"name":"WSDSetConfigurationOption","features":[69]},{"name":"WSDUdpMessageType","features":[69]},{"name":"WSDUdpRetransmitParams","features":[69]},{"name":"WSDUriDecode","features":[69]},{"name":"WSDUriEncode","features":[69]},{"name":"WSDXMLAddChild","features":[69]},{"name":"WSDXMLAddSibling","features":[69]},{"name":"WSDXMLBuildAnyForSingleElement","features":[69]},{"name":"WSDXMLCleanupElement","features":[69]},{"name":"WSDXMLCreateContext","features":[69]},{"name":"WSDXMLGetNameFromBuiltinNamespace","features":[69]},{"name":"WSDXMLGetValueFromAny","features":[69]},{"name":"WSDXML_ATTRIBUTE","features":[69]},{"name":"WSDXML_ELEMENT","features":[69]},{"name":"WSDXML_ELEMENT_LIST","features":[69]},{"name":"WSDXML_NAME","features":[69]},{"name":"WSDXML_NAMESPACE","features":[69]},{"name":"WSDXML_NODE","features":[69]},{"name":"WSDXML_OP","features":[69]},{"name":"WSDXML_PREFIX_MAPPING","features":[69]},{"name":"WSDXML_TEXT","features":[69]},{"name":"WSDXML_TYPE","features":[69]},{"name":"WSD_APP_SEQUENCE","features":[69]},{"name":"WSD_BYE","features":[69]},{"name":"WSD_CONFIG_ADDRESSES","features":[69]},{"name":"WSD_CONFIG_DEVICE_ADDRESSES","features":[69]},{"name":"WSD_CONFIG_HOSTING_ADDRESSES","features":[69]},{"name":"WSD_CONFIG_MAX_INBOUND_MESSAGE_SIZE","features":[69]},{"name":"WSD_CONFIG_MAX_OUTBOUND_MESSAGE_SIZE","features":[69]},{"name":"WSD_CONFIG_PARAM","features":[69]},{"name":"WSD_CONFIG_PARAM_TYPE","features":[69]},{"name":"WSD_DATETIME","features":[69,3]},{"name":"WSD_DEFAULT_EVENTING_ADDRESS","features":[69]},{"name":"WSD_DEFAULT_HOSTING_ADDRESS","features":[69]},{"name":"WSD_DEFAULT_SECURE_HOSTING_ADDRESS","features":[69]},{"name":"WSD_DURATION","features":[69,3]},{"name":"WSD_ENDPOINT_REFERENCE","features":[69]},{"name":"WSD_ENDPOINT_REFERENCE_LIST","features":[69]},{"name":"WSD_EVENT","features":[69]},{"name":"WSD_EVENTING_DELIVERY_MODE","features":[69]},{"name":"WSD_EVENTING_DELIVERY_MODE_PUSH","features":[69]},{"name":"WSD_EVENTING_EXPIRES","features":[69,3]},{"name":"WSD_EVENTING_FILTER","features":[69]},{"name":"WSD_EVENTING_FILTER_ACTION","features":[69]},{"name":"WSD_HANDLER_CONTEXT","features":[69]},{"name":"WSD_HEADER_RELATESTO","features":[69]},{"name":"WSD_HELLO","features":[69]},{"name":"WSD_HOST_METADATA","features":[69]},{"name":"WSD_LOCALIZED_STRING","features":[69]},{"name":"WSD_LOCALIZED_STRING_LIST","features":[69]},{"name":"WSD_METADATA_SECTION","features":[69]},{"name":"WSD_METADATA_SECTION_LIST","features":[69]},{"name":"WSD_NAME_LIST","features":[69]},{"name":"WSD_OPERATION","features":[69]},{"name":"WSD_PORT_TYPE","features":[69]},{"name":"WSD_PROBE","features":[69]},{"name":"WSD_PROBE_MATCH","features":[69]},{"name":"WSD_PROBE_MATCHES","features":[69]},{"name":"WSD_PROBE_MATCH_LIST","features":[69]},{"name":"WSD_PROTOCOL_TYPE","features":[69]},{"name":"WSD_PT_ALL","features":[69]},{"name":"WSD_PT_HTTP","features":[69]},{"name":"WSD_PT_HTTPS","features":[69]},{"name":"WSD_PT_NONE","features":[69]},{"name":"WSD_PT_UDP","features":[69]},{"name":"WSD_REFERENCE_PARAMETERS","features":[69]},{"name":"WSD_REFERENCE_PROPERTIES","features":[69]},{"name":"WSD_RELATIONSHIP_METADATA","features":[69]},{"name":"WSD_RESOLVE","features":[69]},{"name":"WSD_RESOLVE_MATCH","features":[69]},{"name":"WSD_RESOLVE_MATCHES","features":[69]},{"name":"WSD_SCOPES","features":[69]},{"name":"WSD_SECURITY_CERT_VALIDATION","features":[69,3,70]},{"name":"WSD_SECURITY_CERT_VALIDATION_V1","features":[69,3,70]},{"name":"WSD_SECURITY_COMPACTSIG_SIGNING_CERT","features":[69]},{"name":"WSD_SECURITY_COMPACTSIG_VALIDATION","features":[69]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NEGOTIATE","features":[69]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NTLM","features":[69]},{"name":"WSD_SECURITY_REQUIRE_CLIENT_CERT_OR_HTTP_CLIENT_AUTH","features":[69]},{"name":"WSD_SECURITY_REQUIRE_HTTP_CLIENT_AUTH","features":[69]},{"name":"WSD_SECURITY_SIGNATURE_VALIDATION","features":[69,3,70]},{"name":"WSD_SECURITY_SSL_CERT_FOR_CLIENT_AUTH","features":[69]},{"name":"WSD_SECURITY_SSL_CLIENT_CERT_VALIDATION","features":[69]},{"name":"WSD_SECURITY_SSL_NEGOTIATE_CLIENT_CERT","features":[69]},{"name":"WSD_SECURITY_SSL_SERVER_CERT_VALIDATION","features":[69]},{"name":"WSD_SECURITY_USE_HTTP_CLIENT_AUTH","features":[69]},{"name":"WSD_SERVICE_METADATA","features":[69]},{"name":"WSD_SERVICE_METADATA_LIST","features":[69]},{"name":"WSD_SOAP_FAULT","features":[69]},{"name":"WSD_SOAP_FAULT_CODE","features":[69]},{"name":"WSD_SOAP_FAULT_REASON","features":[69]},{"name":"WSD_SOAP_FAULT_SUBCODE","features":[69]},{"name":"WSD_SOAP_HEADER","features":[69]},{"name":"WSD_SOAP_MESSAGE","features":[69]},{"name":"WSD_STUB_FUNCTION","features":[69]},{"name":"WSD_SYNCHRONOUS_RESPONSE_CONTEXT","features":[69,3]},{"name":"WSD_THIS_DEVICE_METADATA","features":[69]},{"name":"WSD_THIS_MODEL_METADATA","features":[69]},{"name":"WSD_UNKNOWN_LOOKUP","features":[69]},{"name":"WSD_URI_LIST","features":[69]}],"391":[{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID","features":[3]},{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED","features":[3]},{"name":"APPMODEL_ERROR_NO_APPLICATION","features":[3]},{"name":"APPMODEL_ERROR_NO_MUTABLE_DIRECTORY","features":[3]},{"name":"APPMODEL_ERROR_NO_PACKAGE","features":[3]},{"name":"APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT","features":[3]},{"name":"APPMODEL_ERROR_PACKAGE_NOT_AVAILABLE","features":[3]},{"name":"APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT","features":[3]},{"name":"APPX_E_BLOCK_HASH_INVALID","features":[3]},{"name":"APPX_E_CORRUPT_CONTENT","features":[3]},{"name":"APPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED","features":[3]},{"name":"APPX_E_DELTA_BASELINE_VERSION_MISMATCH","features":[3]},{"name":"APPX_E_DELTA_PACKAGE_MISSING_FILE","features":[3]},{"name":"APPX_E_DIGEST_MISMATCH","features":[3]},{"name":"APPX_E_FILE_COMPRESSION_MISMATCH","features":[3]},{"name":"APPX_E_INTERLEAVING_NOT_ALLOWED","features":[3]},{"name":"APPX_E_INVALID_APPINSTALLER","features":[3]},{"name":"APPX_E_INVALID_BLOCKMAP","features":[3]},{"name":"APPX_E_INVALID_CONTENTGROUPMAP","features":[3]},{"name":"APPX_E_INVALID_DELTA_PACKAGE","features":[3]},{"name":"APPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST","features":[3]},{"name":"APPX_E_INVALID_KEY_INFO","features":[3]},{"name":"APPX_E_INVALID_MANIFEST","features":[3]},{"name":"APPX_E_INVALID_PACKAGESIGNCONFIG","features":[3]},{"name":"APPX_E_INVALID_PACKAGE_FOLDER_ACLS","features":[3]},{"name":"APPX_E_INVALID_PACKAGING_LAYOUT","features":[3]},{"name":"APPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION","features":[3]},{"name":"APPX_E_INVALID_PUBLISHER_BRIDGING","features":[3]},{"name":"APPX_E_INVALID_SIP_CLIENT_DATA","features":[3]},{"name":"APPX_E_MISSING_REQUIRED_FILE","features":[3]},{"name":"APPX_E_PACKAGING_INTERNAL","features":[3]},{"name":"APPX_E_RELATIONSHIPS_NOT_ALLOWED","features":[3]},{"name":"APPX_E_REQUESTED_RANGE_TOO_LARGE","features":[3]},{"name":"APPX_E_RESOURCESPRI_NOT_ALLOWED","features":[3]},{"name":"APP_LOCAL_DEVICE_ID","features":[3]},{"name":"APP_LOCAL_DEVICE_ID_SIZE","features":[3]},{"name":"BOOL","features":[3]},{"name":"BOOLEAN","features":[3]},{"name":"BSTR","features":[3]},{"name":"BT_E_SPURIOUS_ACTIVATION","features":[3]},{"name":"CACHE_E_FIRST","features":[3]},{"name":"CACHE_E_LAST","features":[3]},{"name":"CACHE_E_NOCACHE_UPDATED","features":[3]},{"name":"CACHE_S_FIRST","features":[3]},{"name":"CACHE_S_FORMATETC_NOTSUPPORTED","features":[3]},{"name":"CACHE_S_LAST","features":[3]},{"name":"CACHE_S_SAMECACHE","features":[3]},{"name":"CACHE_S_SOMECACHES_NOTUPDATED","features":[3]},{"name":"CAT_E_CATIDNOEXIST","features":[3]},{"name":"CAT_E_FIRST","features":[3]},{"name":"CAT_E_LAST","features":[3]},{"name":"CAT_E_NODESCRIPTION","features":[3]},{"name":"CERTSRV_E_ADMIN_DENIED_REQUEST","features":[3]},{"name":"CERTSRV_E_ALIGNMENT_FAULT","features":[3]},{"name":"CERTSRV_E_ARCHIVED_KEY_REQUIRED","features":[3]},{"name":"CERTSRV_E_ARCHIVED_KEY_UNEXPECTED","features":[3]},{"name":"CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE","features":[3]},{"name":"CERTSRV_E_BAD_RENEWAL_SUBJECT","features":[3]},{"name":"CERTSRV_E_BAD_REQUESTSTATUS","features":[3]},{"name":"CERTSRV_E_BAD_REQUESTSUBJECT","features":[3]},{"name":"CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL","features":[3]},{"name":"CERTSRV_E_BAD_TEMPLATE_VERSION","features":[3]},{"name":"CERTSRV_E_CERT_TYPE_OVERLAP","features":[3]},{"name":"CERTSRV_E_CORRUPT_KEY_ATTESTATION","features":[3]},{"name":"CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE","features":[3]},{"name":"CERTSRV_E_ENCODING_LENGTH","features":[3]},{"name":"CERTSRV_E_ENCRYPTION_CERT_REQUIRED","features":[3]},{"name":"CERTSRV_E_ENROLL_DENIED","features":[3]},{"name":"CERTSRV_E_EXPIRED_CHALLENGE","features":[3]},{"name":"CERTSRV_E_INVALID_ATTESTATION","features":[3]},{"name":"CERTSRV_E_INVALID_CA_CERTIFICATE","features":[3]},{"name":"CERTSRV_E_INVALID_EK","features":[3]},{"name":"CERTSRV_E_INVALID_IDBINDING","features":[3]},{"name":"CERTSRV_E_INVALID_REQUESTID","features":[3]},{"name":"CERTSRV_E_INVALID_RESPONSE","features":[3]},{"name":"CERTSRV_E_ISSUANCE_POLICY_REQUIRED","features":[3]},{"name":"CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED","features":[3]},{"name":"CERTSRV_E_KEY_ATTESTATION","features":[3]},{"name":"CERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED","features":[3]},{"name":"CERTSRV_E_KEY_LENGTH","features":[3]},{"name":"CERTSRV_E_NO_CAADMIN_DEFINED","features":[3]},{"name":"CERTSRV_E_NO_CERT_TYPE","features":[3]},{"name":"CERTSRV_E_NO_DB_SESSIONS","features":[3]},{"name":"CERTSRV_E_NO_POLICY_SERVER","features":[3]},{"name":"CERTSRV_E_NO_REQUEST","features":[3]},{"name":"CERTSRV_E_NO_VALID_KRA","features":[3]},{"name":"CERTSRV_E_PENDING_CLIENT_RESPONSE","features":[3]},{"name":"CERTSRV_E_PROPERTY_EMPTY","features":[3]},{"name":"CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY","features":[3]},{"name":"CERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH","features":[3]},{"name":"CERTSRV_E_RESTRICTEDOFFICER","features":[3]},{"name":"CERTSRV_E_ROLECONFLICT","features":[3]},{"name":"CERTSRV_E_SEC_EXT_DIRECTORY_SID_REQUIRED","features":[3]},{"name":"CERTSRV_E_SERVER_SUSPENDED","features":[3]},{"name":"CERTSRV_E_SIGNATURE_COUNT","features":[3]},{"name":"CERTSRV_E_SIGNATURE_POLICY_REQUIRED","features":[3]},{"name":"CERTSRV_E_SIGNATURE_REJECTED","features":[3]},{"name":"CERTSRV_E_SMIME_REQUIRED","features":[3]},{"name":"CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED","features":[3]},{"name":"CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED","features":[3]},{"name":"CERTSRV_E_SUBJECT_DNS_REQUIRED","features":[3]},{"name":"CERTSRV_E_SUBJECT_EMAIL_REQUIRED","features":[3]},{"name":"CERTSRV_E_SUBJECT_UPN_REQUIRED","features":[3]},{"name":"CERTSRV_E_TEMPLATE_CONFLICT","features":[3]},{"name":"CERTSRV_E_TEMPLATE_DENIED","features":[3]},{"name":"CERTSRV_E_TEMPLATE_POLICY_REQUIRED","features":[3]},{"name":"CERTSRV_E_TOO_MANY_SIGNATURES","features":[3]},{"name":"CERTSRV_E_UNKNOWN_CERT_TYPE","features":[3]},{"name":"CERTSRV_E_UNSUPPORTED_CERT_TYPE","features":[3]},{"name":"CERTSRV_E_WEAK_SIGNATURE_OR_KEY","features":[3]},{"name":"CERT_E_CHAINING","features":[3]},{"name":"CERT_E_CN_NO_MATCH","features":[3]},{"name":"CERT_E_CRITICAL","features":[3]},{"name":"CERT_E_EXPIRED","features":[3]},{"name":"CERT_E_INVALID_NAME","features":[3]},{"name":"CERT_E_INVALID_POLICY","features":[3]},{"name":"CERT_E_ISSUERCHAINING","features":[3]},{"name":"CERT_E_MALFORMED","features":[3]},{"name":"CERT_E_PATHLENCONST","features":[3]},{"name":"CERT_E_PURPOSE","features":[3]},{"name":"CERT_E_REVOCATION_FAILURE","features":[3]},{"name":"CERT_E_REVOKED","features":[3]},{"name":"CERT_E_ROLE","features":[3]},{"name":"CERT_E_UNTRUSTEDCA","features":[3]},{"name":"CERT_E_UNTRUSTEDROOT","features":[3]},{"name":"CERT_E_UNTRUSTEDTESTROOT","features":[3]},{"name":"CERT_E_VALIDITYPERIODNESTING","features":[3]},{"name":"CERT_E_WRONG_USAGE","features":[3]},{"name":"CHAR","features":[3]},{"name":"CI_CORRUPT_CATALOG","features":[3]},{"name":"CI_CORRUPT_DATABASE","features":[3]},{"name":"CI_CORRUPT_FILTER_BUFFER","features":[3]},{"name":"CI_E_ALREADY_INITIALIZED","features":[3]},{"name":"CI_E_BUFFERTOOSMALL","features":[3]},{"name":"CI_E_CARDINALITY_MISMATCH","features":[3]},{"name":"CI_E_CLIENT_FILTER_ABORT","features":[3]},{"name":"CI_E_CONFIG_DISK_FULL","features":[3]},{"name":"CI_E_DISK_FULL","features":[3]},{"name":"CI_E_DISTRIBUTED_GROUPBY_UNSUPPORTED","features":[3]},{"name":"CI_E_DUPLICATE_NOTIFICATION","features":[3]},{"name":"CI_E_ENUMERATION_STARTED","features":[3]},{"name":"CI_E_FILTERING_DISABLED","features":[3]},{"name":"CI_E_INVALID_FLAGS_COMBINATION","features":[3]},{"name":"CI_E_INVALID_STATE","features":[3]},{"name":"CI_E_LOGON_FAILURE","features":[3]},{"name":"CI_E_NOT_FOUND","features":[3]},{"name":"CI_E_NOT_INITIALIZED","features":[3]},{"name":"CI_E_NOT_RUNNING","features":[3]},{"name":"CI_E_NO_CATALOG","features":[3]},{"name":"CI_E_OUTOFSEQ_INCREMENT_DATA","features":[3]},{"name":"CI_E_PROPERTY_NOT_CACHED","features":[3]},{"name":"CI_E_PROPERTY_TOOLARGE","features":[3]},{"name":"CI_E_SHARING_VIOLATION","features":[3]},{"name":"CI_E_SHUTDOWN","features":[3]},{"name":"CI_E_STRANGE_PAGEORSECTOR_SIZE","features":[3]},{"name":"CI_E_TIMEOUT","features":[3]},{"name":"CI_E_UPDATES_DISABLED","features":[3]},{"name":"CI_E_USE_DEFAULT_PID","features":[3]},{"name":"CI_E_WORKID_NOTVALID","features":[3]},{"name":"CI_INCORRECT_VERSION","features":[3]},{"name":"CI_INVALID_INDEX","features":[3]},{"name":"CI_INVALID_PARTITION","features":[3]},{"name":"CI_INVALID_PRIORITY","features":[3]},{"name":"CI_NO_CATALOG","features":[3]},{"name":"CI_NO_STARTING_KEY","features":[3]},{"name":"CI_OUT_OF_INDEX_IDS","features":[3]},{"name":"CI_PROPSTORE_INCONSISTENCY","features":[3]},{"name":"CI_S_CAT_STOPPED","features":[3]},{"name":"CI_S_END_OF_ENUMERATION","features":[3]},{"name":"CI_S_NO_DOCSTORE","features":[3]},{"name":"CI_S_WORKID_DELETED","features":[3]},{"name":"CLASSFACTORY_E_FIRST","features":[3]},{"name":"CLASSFACTORY_E_LAST","features":[3]},{"name":"CLASSFACTORY_S_FIRST","features":[3]},{"name":"CLASSFACTORY_S_LAST","features":[3]},{"name":"CLASS_E_CLASSNOTAVAILABLE","features":[3]},{"name":"CLASS_E_NOAGGREGATION","features":[3]},{"name":"CLASS_E_NOTLICENSED","features":[3]},{"name":"CLIENTSITE_E_FIRST","features":[3]},{"name":"CLIENTSITE_E_LAST","features":[3]},{"name":"CLIENTSITE_S_FIRST","features":[3]},{"name":"CLIENTSITE_S_LAST","features":[3]},{"name":"CLIPBRD_E_BAD_DATA","features":[3]},{"name":"CLIPBRD_E_CANT_CLOSE","features":[3]},{"name":"CLIPBRD_E_CANT_EMPTY","features":[3]},{"name":"CLIPBRD_E_CANT_OPEN","features":[3]},{"name":"CLIPBRD_E_CANT_SET","features":[3]},{"name":"CLIPBRD_E_FIRST","features":[3]},{"name":"CLIPBRD_E_LAST","features":[3]},{"name":"CLIPBRD_S_FIRST","features":[3]},{"name":"CLIPBRD_S_LAST","features":[3]},{"name":"COLORREF","features":[3]},{"name":"COMADMIN_E_ALREADYINSTALLED","features":[3]},{"name":"COMADMIN_E_AMBIGUOUS_APPLICATION_NAME","features":[3]},{"name":"COMADMIN_E_AMBIGUOUS_PARTITION_NAME","features":[3]},{"name":"COMADMIN_E_APPDIRNOTFOUND","features":[3]},{"name":"COMADMIN_E_APPLICATIONEXISTS","features":[3]},{"name":"COMADMIN_E_APPLID_MATCHES_CLSID","features":[3]},{"name":"COMADMIN_E_APP_FILE_READFAIL","features":[3]},{"name":"COMADMIN_E_APP_FILE_VERSION","features":[3]},{"name":"COMADMIN_E_APP_FILE_WRITEFAIL","features":[3]},{"name":"COMADMIN_E_APP_NOT_RUNNING","features":[3]},{"name":"COMADMIN_E_AUTHENTICATIONLEVEL","features":[3]},{"name":"COMADMIN_E_BADPATH","features":[3]},{"name":"COMADMIN_E_BADREGISTRYLIBID","features":[3]},{"name":"COMADMIN_E_BADREGISTRYPROGID","features":[3]},{"name":"COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET","features":[3]},{"name":"COMADMIN_E_BASE_PARTITION_ONLY","features":[3]},{"name":"COMADMIN_E_CANNOT_ALIAS_EVENTCLASS","features":[3]},{"name":"COMADMIN_E_CANTCOPYFILE","features":[3]},{"name":"COMADMIN_E_CANTMAKEINPROCSERVICE","features":[3]},{"name":"COMADMIN_E_CANTRECYCLELIBRARYAPPS","features":[3]},{"name":"COMADMIN_E_CANTRECYCLESERVICEAPPS","features":[3]},{"name":"COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT","features":[3]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY","features":[3]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_SYS_APP","features":[3]},{"name":"COMADMIN_E_CAN_NOT_START_APP","features":[3]},{"name":"COMADMIN_E_CAT_BITNESSMISMATCH","features":[3]},{"name":"COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME","features":[3]},{"name":"COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED","features":[3]},{"name":"COMADMIN_E_CAT_INVALID_PARTITION_NAME","features":[3]},{"name":"COMADMIN_E_CAT_PARTITION_IN_USE","features":[3]},{"name":"COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED","features":[3]},{"name":"COMADMIN_E_CAT_SERVERFAULT","features":[3]},{"name":"COMADMIN_E_CAT_UNACCEPTABLEBITNESS","features":[3]},{"name":"COMADMIN_E_CAT_WRONGAPPBITNESS","features":[3]},{"name":"COMADMIN_E_CLSIDORIIDMISMATCH","features":[3]},{"name":"COMADMIN_E_COMPFILE_BADTLB","features":[3]},{"name":"COMADMIN_E_COMPFILE_CLASSNOTAVAIL","features":[3]},{"name":"COMADMIN_E_COMPFILE_DOESNOTEXIST","features":[3]},{"name":"COMADMIN_E_COMPFILE_GETCLASSOBJ","features":[3]},{"name":"COMADMIN_E_COMPFILE_LOADDLLFAIL","features":[3]},{"name":"COMADMIN_E_COMPFILE_NOREGISTRAR","features":[3]},{"name":"COMADMIN_E_COMPFILE_NOTINSTALLABLE","features":[3]},{"name":"COMADMIN_E_COMPONENTEXISTS","features":[3]},{"name":"COMADMIN_E_COMP_MOVE_BAD_DEST","features":[3]},{"name":"COMADMIN_E_COMP_MOVE_DEST","features":[3]},{"name":"COMADMIN_E_COMP_MOVE_LOCKED","features":[3]},{"name":"COMADMIN_E_COMP_MOVE_PRIVATE","features":[3]},{"name":"COMADMIN_E_COMP_MOVE_SOURCE","features":[3]},{"name":"COMADMIN_E_COREQCOMPINSTALLED","features":[3]},{"name":"COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET","features":[3]},{"name":"COMADMIN_E_DLLLOADFAILED","features":[3]},{"name":"COMADMIN_E_DLLREGISTERSERVER","features":[3]},{"name":"COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER","features":[3]},{"name":"COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES","features":[3]},{"name":"COMADMIN_E_INVALIDUSERIDS","features":[3]},{"name":"COMADMIN_E_INVALID_PARTITION","features":[3]},{"name":"COMADMIN_E_KEYMISSING","features":[3]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT","features":[3]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS","features":[3]},{"name":"COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE","features":[3]},{"name":"COMADMIN_E_MIG_SCHEMANOTFOUND","features":[3]},{"name":"COMADMIN_E_MIG_VERSIONNOTSUPPORTED","features":[3]},{"name":"COMADMIN_E_NOREGISTRYCLSID","features":[3]},{"name":"COMADMIN_E_NOSERVERSHARE","features":[3]},{"name":"COMADMIN_E_NOTCHANGEABLE","features":[3]},{"name":"COMADMIN_E_NOTDELETEABLE","features":[3]},{"name":"COMADMIN_E_NOTINREGISTRY","features":[3]},{"name":"COMADMIN_E_NOUSER","features":[3]},{"name":"COMADMIN_E_OBJECTERRORS","features":[3]},{"name":"COMADMIN_E_OBJECTEXISTS","features":[3]},{"name":"COMADMIN_E_OBJECTINVALID","features":[3]},{"name":"COMADMIN_E_OBJECTNOTPOOLABLE","features":[3]},{"name":"COMADMIN_E_OBJECT_DOES_NOT_EXIST","features":[3]},{"name":"COMADMIN_E_OBJECT_PARENT_MISSING","features":[3]},{"name":"COMADMIN_E_PARTITIONS_DISABLED","features":[3]},{"name":"COMADMIN_E_PARTITION_ACCESSDENIED","features":[3]},{"name":"COMADMIN_E_PARTITION_MSI_ONLY","features":[3]},{"name":"COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED","features":[3]},{"name":"COMADMIN_E_PRIVATE_ACCESSDENIED","features":[3]},{"name":"COMADMIN_E_PROCESSALREADYRECYCLED","features":[3]},{"name":"COMADMIN_E_PROGIDINUSEBYCLSID","features":[3]},{"name":"COMADMIN_E_PROPERTYSAVEFAILED","features":[3]},{"name":"COMADMIN_E_PROPERTY_OVERFLOW","features":[3]},{"name":"COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED","features":[3]},{"name":"COMADMIN_E_REGDB_ALREADYRUNNING","features":[3]},{"name":"COMADMIN_E_REGDB_NOTINITIALIZED","features":[3]},{"name":"COMADMIN_E_REGDB_NOTOPEN","features":[3]},{"name":"COMADMIN_E_REGDB_SYSTEMERR","features":[3]},{"name":"COMADMIN_E_REGFILE_CORRUPT","features":[3]},{"name":"COMADMIN_E_REGISTERTLB","features":[3]},{"name":"COMADMIN_E_REGISTRARFAILED","features":[3]},{"name":"COMADMIN_E_REGISTRY_ACCESSDENIED","features":[3]},{"name":"COMADMIN_E_REMOTEINTERFACE","features":[3]},{"name":"COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM","features":[3]},{"name":"COMADMIN_E_ROLEEXISTS","features":[3]},{"name":"COMADMIN_E_ROLE_DOES_NOT_EXIST","features":[3]},{"name":"COMADMIN_E_SAFERINVALID","features":[3]},{"name":"COMADMIN_E_SERVICENOTINSTALLED","features":[3]},{"name":"COMADMIN_E_SESSION","features":[3]},{"name":"COMADMIN_E_START_APP_DISABLED","features":[3]},{"name":"COMADMIN_E_START_APP_NEEDS_COMPONENTS","features":[3]},{"name":"COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE","features":[3]},{"name":"COMADMIN_E_SYSTEMAPP","features":[3]},{"name":"COMADMIN_E_USERPASSWDNOTVALID","features":[3]},{"name":"COMADMIN_E_USER_IN_SET","features":[3]},{"name":"COMQC_E_APPLICATION_NOT_QUEUED","features":[3]},{"name":"COMQC_E_BAD_MESSAGE","features":[3]},{"name":"COMQC_E_NO_IPERSISTSTREAM","features":[3]},{"name":"COMQC_E_NO_QUEUEABLE_INTERFACES","features":[3]},{"name":"COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE","features":[3]},{"name":"COMQC_E_UNAUTHENTICATED","features":[3]},{"name":"COMQC_E_UNTRUSTED_ENQUEUER","features":[3]},{"name":"CONTEXT_E_ABORTED","features":[3]},{"name":"CONTEXT_E_ABORTING","features":[3]},{"name":"CONTEXT_E_FIRST","features":[3]},{"name":"CONTEXT_E_LAST","features":[3]},{"name":"CONTEXT_E_NOCONTEXT","features":[3]},{"name":"CONTEXT_E_NOJIT","features":[3]},{"name":"CONTEXT_E_NOTRANSACTION","features":[3]},{"name":"CONTEXT_E_OLDREF","features":[3]},{"name":"CONTEXT_E_ROLENOTFOUND","features":[3]},{"name":"CONTEXT_E_SYNCH_TIMEOUT","features":[3]},{"name":"CONTEXT_E_TMNOTAVAILABLE","features":[3]},{"name":"CONTEXT_E_WOULD_DEADLOCK","features":[3]},{"name":"CONTEXT_S_FIRST","features":[3]},{"name":"CONTEXT_S_LAST","features":[3]},{"name":"CONTROL_C_EXIT","features":[3]},{"name":"CONVERT10_E_FIRST","features":[3]},{"name":"CONVERT10_E_LAST","features":[3]},{"name":"CONVERT10_E_OLELINK_DISABLED","features":[3]},{"name":"CONVERT10_E_OLESTREAM_BITMAP_TO_DIB","features":[3]},{"name":"CONVERT10_E_OLESTREAM_FMT","features":[3]},{"name":"CONVERT10_E_OLESTREAM_GET","features":[3]},{"name":"CONVERT10_E_OLESTREAM_PUT","features":[3]},{"name":"CONVERT10_E_STG_DIB_TO_BITMAP","features":[3]},{"name":"CONVERT10_E_STG_FMT","features":[3]},{"name":"CONVERT10_E_STG_NO_STD_STREAM","features":[3]},{"name":"CONVERT10_S_FIRST","features":[3]},{"name":"CONVERT10_S_LAST","features":[3]},{"name":"CONVERT10_S_NO_PRESENTATION","features":[3]},{"name":"CO_E_ACCESSCHECKFAILED","features":[3]},{"name":"CO_E_ACESINWRONGORDER","features":[3]},{"name":"CO_E_ACNOTINITIALIZED","features":[3]},{"name":"CO_E_ACTIVATIONFAILED","features":[3]},{"name":"CO_E_ACTIVATIONFAILED_CATALOGERROR","features":[3]},{"name":"CO_E_ACTIVATIONFAILED_EVENTLOGGED","features":[3]},{"name":"CO_E_ACTIVATIONFAILED_TIMEOUT","features":[3]},{"name":"CO_E_ALREADYINITIALIZED","features":[3]},{"name":"CO_E_APPDIDNTREG","features":[3]},{"name":"CO_E_APPNOTFOUND","features":[3]},{"name":"CO_E_APPSINGLEUSE","features":[3]},{"name":"CO_E_ASYNC_WORK_REJECTED","features":[3]},{"name":"CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT","features":[3]},{"name":"CO_E_BAD_PATH","features":[3]},{"name":"CO_E_BAD_SERVER_NAME","features":[3]},{"name":"CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED","features":[3]},{"name":"CO_E_CANCEL_DISABLED","features":[3]},{"name":"CO_E_CANTDETERMINECLASS","features":[3]},{"name":"CO_E_CANT_REMOTE","features":[3]},{"name":"CO_E_CLASSSTRING","features":[3]},{"name":"CO_E_CLASS_CREATE_FAILED","features":[3]},{"name":"CO_E_CLASS_DISABLED","features":[3]},{"name":"CO_E_CLRNOTAVAILABLE","features":[3]},{"name":"CO_E_CLSREG_INCONSISTENT","features":[3]},{"name":"CO_E_CONVERSIONFAILED","features":[3]},{"name":"CO_E_CREATEPROCESS_FAILURE","features":[3]},{"name":"CO_E_DBERROR","features":[3]},{"name":"CO_E_DECODEFAILED","features":[3]},{"name":"CO_E_DLLNOTFOUND","features":[3]},{"name":"CO_E_ELEVATION_DISABLED","features":[3]},{"name":"CO_E_ERRORINAPP","features":[3]},{"name":"CO_E_ERRORINDLL","features":[3]},{"name":"CO_E_EXCEEDSYSACLLIMIT","features":[3]},{"name":"CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED","features":[3]},{"name":"CO_E_FAILEDTOCLOSEHANDLE","features":[3]},{"name":"CO_E_FAILEDTOCREATEFILE","features":[3]},{"name":"CO_E_FAILEDTOGENUUID","features":[3]},{"name":"CO_E_FAILEDTOGETSECCTX","features":[3]},{"name":"CO_E_FAILEDTOGETTOKENINFO","features":[3]},{"name":"CO_E_FAILEDTOGETWINDIR","features":[3]},{"name":"CO_E_FAILEDTOIMPERSONATE","features":[3]},{"name":"CO_E_FAILEDTOOPENPROCESSTOKEN","features":[3]},{"name":"CO_E_FAILEDTOOPENTHREADTOKEN","features":[3]},{"name":"CO_E_FAILEDTOQUERYCLIENTBLANKET","features":[3]},{"name":"CO_E_FAILEDTOSETDACL","features":[3]},{"name":"CO_E_FIRST","features":[3]},{"name":"CO_E_IIDREG_INCONSISTENT","features":[3]},{"name":"CO_E_IIDSTRING","features":[3]},{"name":"CO_E_INCOMPATIBLESTREAMVERSION","features":[3]},{"name":"CO_E_INITIALIZATIONFAILED","features":[3]},{"name":"CO_E_INIT_CLASS_CACHE","features":[3]},{"name":"CO_E_INIT_MEMORY_ALLOCATOR","features":[3]},{"name":"CO_E_INIT_ONLY_SINGLE_THREADED","features":[3]},{"name":"CO_E_INIT_RPC_CHANNEL","features":[3]},{"name":"CO_E_INIT_SCM_EXEC_FAILURE","features":[3]},{"name":"CO_E_INIT_SCM_FILE_MAPPING_EXISTS","features":[3]},{"name":"CO_E_INIT_SCM_MAP_VIEW_OF_FILE","features":[3]},{"name":"CO_E_INIT_SCM_MUTEX_EXISTS","features":[3]},{"name":"CO_E_INIT_SHARED_ALLOCATOR","features":[3]},{"name":"CO_E_INIT_TLS","features":[3]},{"name":"CO_E_INIT_TLS_CHANNEL_CONTROL","features":[3]},{"name":"CO_E_INIT_TLS_SET_CHANNEL_CONTROL","features":[3]},{"name":"CO_E_INIT_UNACCEPTED_USER_ALLOCATOR","features":[3]},{"name":"CO_E_INVALIDSID","features":[3]},{"name":"CO_E_ISOLEVELMISMATCH","features":[3]},{"name":"CO_E_LAST","features":[3]},{"name":"CO_E_LAUNCH_PERMSSION_DENIED","features":[3]},{"name":"CO_E_LOOKUPACCNAMEFAILED","features":[3]},{"name":"CO_E_LOOKUPACCSIDFAILED","features":[3]},{"name":"CO_E_MALFORMED_SPN","features":[3]},{"name":"CO_E_MISSING_DISPLAYNAME","features":[3]},{"name":"CO_E_MSI_ERROR","features":[3]},{"name":"CO_E_NETACCESSAPIFAILED","features":[3]},{"name":"CO_E_NOCOOKIES","features":[3]},{"name":"CO_E_NOIISINTRINSICS","features":[3]},{"name":"CO_E_NOMATCHINGNAMEFOUND","features":[3]},{"name":"CO_E_NOMATCHINGSIDFOUND","features":[3]},{"name":"CO_E_NOSYNCHRONIZATION","features":[3]},{"name":"CO_E_NOTCONSTRUCTED","features":[3]},{"name":"CO_E_NOTINITIALIZED","features":[3]},{"name":"CO_E_NOTPOOLED","features":[3]},{"name":"CO_E_NOT_SUPPORTED","features":[3]},{"name":"CO_E_NO_SECCTX_IN_ACTIVATE","features":[3]},{"name":"CO_E_OBJISREG","features":[3]},{"name":"CO_E_OBJNOTCONNECTED","features":[3]},{"name":"CO_E_OBJNOTREG","features":[3]},{"name":"CO_E_OBJSRV_RPC_FAILURE","features":[3]},{"name":"CO_E_OLE1DDE_DISABLED","features":[3]},{"name":"CO_E_PATHTOOLONG","features":[3]},{"name":"CO_E_PREMATURE_STUB_RUNDOWN","features":[3]},{"name":"CO_E_RELEASED","features":[3]},{"name":"CO_E_RELOAD_DLL","features":[3]},{"name":"CO_E_REMOTE_COMMUNICATION_FAILURE","features":[3]},{"name":"CO_E_RUNAS_CREATEPROCESS_FAILURE","features":[3]},{"name":"CO_E_RUNAS_LOGON_FAILURE","features":[3]},{"name":"CO_E_RUNAS_SYNTAX","features":[3]},{"name":"CO_E_RUNAS_VALUE_MUST_BE_AAA","features":[3]},{"name":"CO_E_SCM_ERROR","features":[3]},{"name":"CO_E_SCM_RPC_FAILURE","features":[3]},{"name":"CO_E_SERVER_EXEC_FAILURE","features":[3]},{"name":"CO_E_SERVER_INIT_TIMEOUT","features":[3]},{"name":"CO_E_SERVER_NOT_PAUSED","features":[3]},{"name":"CO_E_SERVER_PAUSED","features":[3]},{"name":"CO_E_SERVER_START_TIMEOUT","features":[3]},{"name":"CO_E_SERVER_STOPPING","features":[3]},{"name":"CO_E_SETSERLHNDLFAILED","features":[3]},{"name":"CO_E_START_SERVICE_FAILURE","features":[3]},{"name":"CO_E_SXS_CONFIG","features":[3]},{"name":"CO_E_THREADINGMODEL_CHANGED","features":[3]},{"name":"CO_E_THREADPOOL_CONFIG","features":[3]},{"name":"CO_E_TRACKER_CONFIG","features":[3]},{"name":"CO_E_TRUSTEEDOESNTMATCHCLIENT","features":[3]},{"name":"CO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN","features":[3]},{"name":"CO_E_WRONGOSFORAPP","features":[3]},{"name":"CO_E_WRONGTRUSTEENAMESYNTAX","features":[3]},{"name":"CO_E_WRONG_SERVER_IDENTITY","features":[3]},{"name":"CO_S_FIRST","features":[3]},{"name":"CO_S_LAST","features":[3]},{"name":"CO_S_MACHINENAMENOTFOUND","features":[3]},{"name":"CO_S_NOTALLINTERFACES","features":[3]},{"name":"CRYPT_E_ALREADY_DECRYPTED","features":[3]},{"name":"CRYPT_E_ASN1_BADARGS","features":[3]},{"name":"CRYPT_E_ASN1_BADPDU","features":[3]},{"name":"CRYPT_E_ASN1_BADREAL","features":[3]},{"name":"CRYPT_E_ASN1_BADTAG","features":[3]},{"name":"CRYPT_E_ASN1_CHOICE","features":[3]},{"name":"CRYPT_E_ASN1_CONSTRAINT","features":[3]},{"name":"CRYPT_E_ASN1_CORRUPT","features":[3]},{"name":"CRYPT_E_ASN1_EOD","features":[3]},{"name":"CRYPT_E_ASN1_ERROR","features":[3]},{"name":"CRYPT_E_ASN1_EXTENDED","features":[3]},{"name":"CRYPT_E_ASN1_INTERNAL","features":[3]},{"name":"CRYPT_E_ASN1_LARGE","features":[3]},{"name":"CRYPT_E_ASN1_MEMORY","features":[3]},{"name":"CRYPT_E_ASN1_NOEOD","features":[3]},{"name":"CRYPT_E_ASN1_NYI","features":[3]},{"name":"CRYPT_E_ASN1_OVERFLOW","features":[3]},{"name":"CRYPT_E_ASN1_PDU_TYPE","features":[3]},{"name":"CRYPT_E_ASN1_RULE","features":[3]},{"name":"CRYPT_E_ASN1_UTF8","features":[3]},{"name":"CRYPT_E_ATTRIBUTES_MISSING","features":[3]},{"name":"CRYPT_E_AUTH_ATTR_MISSING","features":[3]},{"name":"CRYPT_E_BAD_ENCODE","features":[3]},{"name":"CRYPT_E_BAD_LEN","features":[3]},{"name":"CRYPT_E_BAD_MSG","features":[3]},{"name":"CRYPT_E_CONTROL_TYPE","features":[3]},{"name":"CRYPT_E_DELETED_PREV","features":[3]},{"name":"CRYPT_E_EXISTS","features":[3]},{"name":"CRYPT_E_FILERESIZED","features":[3]},{"name":"CRYPT_E_FILE_ERROR","features":[3]},{"name":"CRYPT_E_HASH_VALUE","features":[3]},{"name":"CRYPT_E_INVALID_IA5_STRING","features":[3]},{"name":"CRYPT_E_INVALID_INDEX","features":[3]},{"name":"CRYPT_E_INVALID_MSG_TYPE","features":[3]},{"name":"CRYPT_E_INVALID_NUMERIC_STRING","features":[3]},{"name":"CRYPT_E_INVALID_PRINTABLE_STRING","features":[3]},{"name":"CRYPT_E_INVALID_X500_STRING","features":[3]},{"name":"CRYPT_E_ISSUER_SERIALNUMBER","features":[3]},{"name":"CRYPT_E_MISSING_PUBKEY_PARA","features":[3]},{"name":"CRYPT_E_MSG_ERROR","features":[3]},{"name":"CRYPT_E_NOT_CHAR_STRING","features":[3]},{"name":"CRYPT_E_NOT_DECRYPTED","features":[3]},{"name":"CRYPT_E_NOT_FOUND","features":[3]},{"name":"CRYPT_E_NOT_IN_CTL","features":[3]},{"name":"CRYPT_E_NOT_IN_REVOCATION_DATABASE","features":[3]},{"name":"CRYPT_E_NO_DECRYPT_CERT","features":[3]},{"name":"CRYPT_E_NO_KEY_PROPERTY","features":[3]},{"name":"CRYPT_E_NO_MATCH","features":[3]},{"name":"CRYPT_E_NO_PROVIDER","features":[3]},{"name":"CRYPT_E_NO_REVOCATION_CHECK","features":[3]},{"name":"CRYPT_E_NO_REVOCATION_DLL","features":[3]},{"name":"CRYPT_E_NO_SIGNER","features":[3]},{"name":"CRYPT_E_NO_TRUSTED_SIGNER","features":[3]},{"name":"CRYPT_E_NO_VERIFY_USAGE_CHECK","features":[3]},{"name":"CRYPT_E_NO_VERIFY_USAGE_DLL","features":[3]},{"name":"CRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND","features":[3]},{"name":"CRYPT_E_OID_FORMAT","features":[3]},{"name":"CRYPT_E_OSS_ERROR","features":[3]},{"name":"CRYPT_E_PENDING_CLOSE","features":[3]},{"name":"CRYPT_E_RECIPIENT_NOT_FOUND","features":[3]},{"name":"CRYPT_E_REVOCATION_OFFLINE","features":[3]},{"name":"CRYPT_E_REVOKED","features":[3]},{"name":"CRYPT_E_SECURITY_SETTINGS","features":[3]},{"name":"CRYPT_E_SELF_SIGNED","features":[3]},{"name":"CRYPT_E_SIGNER_NOT_FOUND","features":[3]},{"name":"CRYPT_E_STREAM_INSUFFICIENT_DATA","features":[3]},{"name":"CRYPT_E_STREAM_MSG_NOT_READY","features":[3]},{"name":"CRYPT_E_UNEXPECTED_ENCODING","features":[3]},{"name":"CRYPT_E_UNEXPECTED_MSG_TYPE","features":[3]},{"name":"CRYPT_E_UNKNOWN_ALGO","features":[3]},{"name":"CRYPT_E_VERIFY_USAGE_OFFLINE","features":[3]},{"name":"CRYPT_I_NEW_PROTECTION_REQUIRED","features":[3]},{"name":"CS_E_ADMIN_LIMIT_EXCEEDED","features":[3]},{"name":"CS_E_CLASS_NOTFOUND","features":[3]},{"name":"CS_E_FIRST","features":[3]},{"name":"CS_E_INTERNAL_ERROR","features":[3]},{"name":"CS_E_INVALID_PATH","features":[3]},{"name":"CS_E_INVALID_VERSION","features":[3]},{"name":"CS_E_LAST","features":[3]},{"name":"CS_E_NETWORK_ERROR","features":[3]},{"name":"CS_E_NOT_DELETABLE","features":[3]},{"name":"CS_E_NO_CLASSSTORE","features":[3]},{"name":"CS_E_OBJECT_ALREADY_EXISTS","features":[3]},{"name":"CS_E_OBJECT_NOTFOUND","features":[3]},{"name":"CS_E_PACKAGE_NOTFOUND","features":[3]},{"name":"CS_E_SCHEMA_MISMATCH","features":[3]},{"name":"CloseHandle","features":[3]},{"name":"CompareObjectHandles","features":[3]},{"name":"D2DERR_BAD_NUMBER","features":[3]},{"name":"D2DERR_BITMAP_BOUND_AS_TARGET","features":[3]},{"name":"D2DERR_BITMAP_CANNOT_DRAW","features":[3]},{"name":"D2DERR_CYCLIC_GRAPH","features":[3]},{"name":"D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED","features":[3]},{"name":"D2DERR_DISPLAY_STATE_INVALID","features":[3]},{"name":"D2DERR_EFFECT_IS_NOT_REGISTERED","features":[3]},{"name":"D2DERR_EXCEEDS_MAX_BITMAP_SIZE","features":[3]},{"name":"D2DERR_INCOMPATIBLE_BRUSH_TYPES","features":[3]},{"name":"D2DERR_INSUFFICIENT_DEVICE_CAPABILITIES","features":[3]},{"name":"D2DERR_INTERMEDIATE_TOO_LARGE","features":[3]},{"name":"D2DERR_INTERNAL_ERROR","features":[3]},{"name":"D2DERR_INVALID_CALL","features":[3]},{"name":"D2DERR_INVALID_GLYPH_IMAGE","features":[3]},{"name":"D2DERR_INVALID_GRAPH_CONFIGURATION","features":[3]},{"name":"D2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION","features":[3]},{"name":"D2DERR_INVALID_PROPERTY","features":[3]},{"name":"D2DERR_INVALID_TARGET","features":[3]},{"name":"D2DERR_LAYER_ALREADY_IN_USE","features":[3]},{"name":"D2DERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[3]},{"name":"D2DERR_NOT_INITIALIZED","features":[3]},{"name":"D2DERR_NO_HARDWARE_DEVICE","features":[3]},{"name":"D2DERR_NO_SUBPROPERTIES","features":[3]},{"name":"D2DERR_ORIGINAL_TARGET_NOT_BOUND","features":[3]},{"name":"D2DERR_OUTSTANDING_BITMAP_REFERENCES","features":[3]},{"name":"D2DERR_POP_CALL_DID_NOT_MATCH_PUSH","features":[3]},{"name":"D2DERR_PRINT_FORMAT_NOT_SUPPORTED","features":[3]},{"name":"D2DERR_PRINT_JOB_CLOSED","features":[3]},{"name":"D2DERR_PUSH_POP_UNBALANCED","features":[3]},{"name":"D2DERR_RECREATE_TARGET","features":[3]},{"name":"D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT","features":[3]},{"name":"D2DERR_SCANNER_FAILED","features":[3]},{"name":"D2DERR_SCREEN_ACCESS_DENIED","features":[3]},{"name":"D2DERR_SHADER_COMPILE_FAILED","features":[3]},{"name":"D2DERR_TARGET_NOT_GDI_COMPATIBLE","features":[3]},{"name":"D2DERR_TEXT_EFFECT_IS_WRONG_TYPE","features":[3]},{"name":"D2DERR_TEXT_RENDERER_NOT_RELEASED","features":[3]},{"name":"D2DERR_TOO_MANY_SHADER_ELEMENTS","features":[3]},{"name":"D2DERR_TOO_MANY_TRANSFORM_INPUTS","features":[3]},{"name":"D2DERR_UNSUPPORTED_OPERATION","features":[3]},{"name":"D2DERR_UNSUPPORTED_VERSION","features":[3]},{"name":"D2DERR_WIN32_ERROR","features":[3]},{"name":"D2DERR_WRONG_FACTORY","features":[3]},{"name":"D2DERR_WRONG_RESOURCE_DOMAIN","features":[3]},{"name":"D2DERR_WRONG_STATE","features":[3]},{"name":"D2DERR_ZERO_VECTOR","features":[3]},{"name":"D3D10_ERROR_FILE_NOT_FOUND","features":[3]},{"name":"D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[3]},{"name":"D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD","features":[3]},{"name":"D3D11_ERROR_FILE_NOT_FOUND","features":[3]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[3]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS","features":[3]},{"name":"D3D12_ERROR_ADAPTER_NOT_FOUND","features":[3]},{"name":"D3D12_ERROR_DRIVER_VERSION_MISMATCH","features":[3]},{"name":"D3D12_ERROR_INVALID_REDIST","features":[3]},{"name":"DATA_E_FIRST","features":[3]},{"name":"DATA_E_LAST","features":[3]},{"name":"DATA_S_FIRST","features":[3]},{"name":"DATA_S_LAST","features":[3]},{"name":"DATA_S_SAMEFORMATETC","features":[3]},{"name":"DBG_APP_NOT_IDLE","features":[3]},{"name":"DBG_COMMAND_EXCEPTION","features":[3]},{"name":"DBG_CONTINUE","features":[3]},{"name":"DBG_CONTROL_BREAK","features":[3]},{"name":"DBG_CONTROL_C","features":[3]},{"name":"DBG_EXCEPTION_HANDLED","features":[3]},{"name":"DBG_EXCEPTION_NOT_HANDLED","features":[3]},{"name":"DBG_NO_STATE_CHANGE","features":[3]},{"name":"DBG_PRINTEXCEPTION_C","features":[3]},{"name":"DBG_PRINTEXCEPTION_WIDE_C","features":[3]},{"name":"DBG_REPLY_LATER","features":[3]},{"name":"DBG_RIPEXCEPTION","features":[3]},{"name":"DBG_TERMINATE_PROCESS","features":[3]},{"name":"DBG_TERMINATE_THREAD","features":[3]},{"name":"DBG_UNABLE_TO_PROVIDE_HANDLE","features":[3]},{"name":"DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED","features":[3]},{"name":"DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED","features":[3]},{"name":"DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED","features":[3]},{"name":"DECIMAL","features":[3]},{"name":"DIGSIG_E_CRYPTO","features":[3]},{"name":"DIGSIG_E_DECODE","features":[3]},{"name":"DIGSIG_E_ENCODE","features":[3]},{"name":"DIGSIG_E_EXTENSIBILITY","features":[3]},{"name":"DISP_E_ARRAYISLOCKED","features":[3]},{"name":"DISP_E_BADCALLEE","features":[3]},{"name":"DISP_E_BADINDEX","features":[3]},{"name":"DISP_E_BADPARAMCOUNT","features":[3]},{"name":"DISP_E_BADVARTYPE","features":[3]},{"name":"DISP_E_BUFFERTOOSMALL","features":[3]},{"name":"DISP_E_DIVBYZERO","features":[3]},{"name":"DISP_E_EXCEPTION","features":[3]},{"name":"DISP_E_MEMBERNOTFOUND","features":[3]},{"name":"DISP_E_NONAMEDARGS","features":[3]},{"name":"DISP_E_NOTACOLLECTION","features":[3]},{"name":"DISP_E_OVERFLOW","features":[3]},{"name":"DISP_E_PARAMNOTFOUND","features":[3]},{"name":"DISP_E_PARAMNOTOPTIONAL","features":[3]},{"name":"DISP_E_TYPEMISMATCH","features":[3]},{"name":"DISP_E_UNKNOWNINTERFACE","features":[3]},{"name":"DISP_E_UNKNOWNLCID","features":[3]},{"name":"DISP_E_UNKNOWNNAME","features":[3]},{"name":"DNS_ERROR_ADDRESS_REQUIRED","features":[3]},{"name":"DNS_ERROR_ALIAS_LOOP","features":[3]},{"name":"DNS_ERROR_AUTOZONE_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_AXFR","features":[3]},{"name":"DNS_ERROR_BACKGROUND_LOADING","features":[3]},{"name":"DNS_ERROR_BAD_KEYMASTER","features":[3]},{"name":"DNS_ERROR_BAD_PACKET","features":[3]},{"name":"DNS_ERROR_CANNOT_FIND_ROOT_HINTS","features":[3]},{"name":"DNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_CLIENT_SUBNET_IS_ACCESSED","features":[3]},{"name":"DNS_ERROR_CNAME_COLLISION","features":[3]},{"name":"DNS_ERROR_CNAME_LOOP","features":[3]},{"name":"DNS_ERROR_DATABASE_BASE","features":[3]},{"name":"DNS_ERROR_DATAFILE_BASE","features":[3]},{"name":"DNS_ERROR_DATAFILE_OPEN_FAILURE","features":[3]},{"name":"DNS_ERROR_DATAFILE_PARSING","features":[3]},{"name":"DNS_ERROR_DEFAULT_SCOPE","features":[3]},{"name":"DNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE","features":[3]},{"name":"DNS_ERROR_DEFAULT_ZONESCOPE","features":[3]},{"name":"DNS_ERROR_DELEGATION_REQUIRED","features":[3]},{"name":"DNS_ERROR_DNAME_COLLISION","features":[3]},{"name":"DNS_ERROR_DNSSEC_BASE","features":[3]},{"name":"DNS_ERROR_DNSSEC_IS_DISABLED","features":[3]},{"name":"DNS_ERROR_DP_ALREADY_ENLISTED","features":[3]},{"name":"DNS_ERROR_DP_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_DP_BASE","features":[3]},{"name":"DNS_ERROR_DP_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_DP_FSMO_ERROR","features":[3]},{"name":"DNS_ERROR_DP_NOT_AVAILABLE","features":[3]},{"name":"DNS_ERROR_DP_NOT_ENLISTED","features":[3]},{"name":"DNS_ERROR_DS_UNAVAILABLE","features":[3]},{"name":"DNS_ERROR_DS_ZONE_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_LARGE","features":[3]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_SMALL","features":[3]},{"name":"DNS_ERROR_FILE_WRITEBACK_FAILED","features":[3]},{"name":"DNS_ERROR_FORWARDER_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_GENERAL_API_BASE","features":[3]},{"name":"DNS_ERROR_INCONSISTENT_ROOT_HINTS","features":[3]},{"name":"DNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME","features":[3]},{"name":"DNS_ERROR_INVALID_CLIENT_SUBNET_NAME","features":[3]},{"name":"DNS_ERROR_INVALID_DATA","features":[3]},{"name":"DNS_ERROR_INVALID_DATAFILE_NAME","features":[3]},{"name":"DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET","features":[3]},{"name":"DNS_ERROR_INVALID_IP_ADDRESS","features":[3]},{"name":"DNS_ERROR_INVALID_KEY_SIZE","features":[3]},{"name":"DNS_ERROR_INVALID_NAME","features":[3]},{"name":"DNS_ERROR_INVALID_NAME_CHAR","features":[3]},{"name":"DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT","features":[3]},{"name":"DNS_ERROR_INVALID_POLICY_TABLE","features":[3]},{"name":"DNS_ERROR_INVALID_PROPERTY","features":[3]},{"name":"DNS_ERROR_INVALID_ROLLOVER_PERIOD","features":[3]},{"name":"DNS_ERROR_INVALID_SCOPE_NAME","features":[3]},{"name":"DNS_ERROR_INVALID_SCOPE_OPERATION","features":[3]},{"name":"DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD","features":[3]},{"name":"DNS_ERROR_INVALID_TYPE","features":[3]},{"name":"DNS_ERROR_INVALID_XML","features":[3]},{"name":"DNS_ERROR_INVALID_ZONESCOPE_NAME","features":[3]},{"name":"DNS_ERROR_INVALID_ZONE_OPERATION","features":[3]},{"name":"DNS_ERROR_INVALID_ZONE_TYPE","features":[3]},{"name":"DNS_ERROR_KEYMASTER_REQUIRED","features":[3]},{"name":"DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION","features":[3]},{"name":"DNS_ERROR_KSP_NOT_ACCESSIBLE","features":[3]},{"name":"DNS_ERROR_LOAD_ZONESCOPE_FAILED","features":[3]},{"name":"DNS_ERROR_MASK","features":[3]},{"name":"DNS_ERROR_NAME_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_NAME_NOT_IN_ZONE","features":[3]},{"name":"DNS_ERROR_NBSTAT_INIT_FAILED","features":[3]},{"name":"DNS_ERROR_NEED_SECONDARY_ADDRESSES","features":[3]},{"name":"DNS_ERROR_NEED_WINS_SERVERS","features":[3]},{"name":"DNS_ERROR_NODE_CREATION_FAILED","features":[3]},{"name":"DNS_ERROR_NODE_IS_CNAME","features":[3]},{"name":"DNS_ERROR_NODE_IS_DNAME","features":[3]},{"name":"DNS_ERROR_NON_RFC_NAME","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_RODC","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ZSK","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DNAME","features":[3]},{"name":"DNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES","features":[3]},{"name":"DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS","features":[3]},{"name":"DNS_ERROR_NOT_UNIQUE","features":[3]},{"name":"DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE","features":[3]},{"name":"DNS_ERROR_NO_CREATE_CACHE_DATA","features":[3]},{"name":"DNS_ERROR_NO_DNS_SERVERS","features":[3]},{"name":"DNS_ERROR_NO_MEMORY","features":[3]},{"name":"DNS_ERROR_NO_PACKET","features":[3]},{"name":"DNS_ERROR_NO_TCPIP","features":[3]},{"name":"DNS_ERROR_NO_VALID_TRUST_ANCHORS","features":[3]},{"name":"DNS_ERROR_NO_ZONE_INFO","features":[3]},{"name":"DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1","features":[3]},{"name":"DNS_ERROR_NSEC3_NAME_COLLISION","features":[3]},{"name":"DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1","features":[3]},{"name":"DNS_ERROR_NUMERIC_NAME","features":[3]},{"name":"DNS_ERROR_OPERATION_BASE","features":[3]},{"name":"DNS_ERROR_PACKET_FMT_BASE","features":[3]},{"name":"DNS_ERROR_POLICY_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_POLICY_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_FQDN","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_NAME","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_SETTINGS","features":[3]},{"name":"DNS_ERROR_POLICY_INVALID_WEIGHT","features":[3]},{"name":"DNS_ERROR_POLICY_LOCKED","features":[3]},{"name":"DNS_ERROR_POLICY_MISSING_CRITERIA","features":[3]},{"name":"DNS_ERROR_POLICY_PROCESSING_ORDER_INVALID","features":[3]},{"name":"DNS_ERROR_POLICY_SCOPE_MISSING","features":[3]},{"name":"DNS_ERROR_POLICY_SCOPE_NOT_ALLOWED","features":[3]},{"name":"DNS_ERROR_PRIMARY_REQUIRES_DATAFILE","features":[3]},{"name":"DNS_ERROR_RCODE","features":[3]},{"name":"DNS_ERROR_RCODE_BADKEY","features":[3]},{"name":"DNS_ERROR_RCODE_BADSIG","features":[3]},{"name":"DNS_ERROR_RCODE_BADTIME","features":[3]},{"name":"DNS_ERROR_RCODE_FORMAT_ERROR","features":[3]},{"name":"DNS_ERROR_RCODE_LAST","features":[3]},{"name":"DNS_ERROR_RCODE_NAME_ERROR","features":[3]},{"name":"DNS_ERROR_RCODE_NOTAUTH","features":[3]},{"name":"DNS_ERROR_RCODE_NOTZONE","features":[3]},{"name":"DNS_ERROR_RCODE_NOT_IMPLEMENTED","features":[3]},{"name":"DNS_ERROR_RCODE_NO_ERROR","features":[3]},{"name":"DNS_ERROR_RCODE_NXRRSET","features":[3]},{"name":"DNS_ERROR_RCODE_REFUSED","features":[3]},{"name":"DNS_ERROR_RCODE_SERVER_FAILURE","features":[3]},{"name":"DNS_ERROR_RCODE_YXDOMAIN","features":[3]},{"name":"DNS_ERROR_RCODE_YXRRSET","features":[3]},{"name":"DNS_ERROR_RECORD_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_RECORD_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_RECORD_FORMAT","features":[3]},{"name":"DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT","features":[3]},{"name":"DNS_ERROR_RECORD_TIMED_OUT","features":[3]},{"name":"DNS_ERROR_RESPONSE_CODES_BASE","features":[3]},{"name":"DNS_ERROR_ROLLOVER_ALREADY_QUEUED","features":[3]},{"name":"DNS_ERROR_ROLLOVER_IN_PROGRESS","features":[3]},{"name":"DNS_ERROR_ROLLOVER_NOT_POKEABLE","features":[3]},{"name":"DNS_ERROR_RRL_INVALID_IPV4_PREFIX","features":[3]},{"name":"DNS_ERROR_RRL_INVALID_IPV6_PREFIX","features":[3]},{"name":"DNS_ERROR_RRL_INVALID_LEAK_RATE","features":[3]},{"name":"DNS_ERROR_RRL_INVALID_TC_RATE","features":[3]},{"name":"DNS_ERROR_RRL_INVALID_WINDOW_SIZE","features":[3]},{"name":"DNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE","features":[3]},{"name":"DNS_ERROR_RRL_NOT_ENABLED","features":[3]},{"name":"DNS_ERROR_SCOPE_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_SCOPE_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_SCOPE_LOCKED","features":[3]},{"name":"DNS_ERROR_SECONDARY_DATA","features":[3]},{"name":"DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP","features":[3]},{"name":"DNS_ERROR_SECURE_BASE","features":[3]},{"name":"DNS_ERROR_SERVERSCOPE_IS_REFERENCED","features":[3]},{"name":"DNS_ERROR_SETUP_BASE","features":[3]},{"name":"DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE","features":[3]},{"name":"DNS_ERROR_SOA_DELETE_INVALID","features":[3]},{"name":"DNS_ERROR_STANDBY_KEY_NOT_PRESENT","features":[3]},{"name":"DNS_ERROR_SUBNET_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_SUBNET_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_TOO_MANY_SKDS","features":[3]},{"name":"DNS_ERROR_TRY_AGAIN_LATER","features":[3]},{"name":"DNS_ERROR_UNEXPECTED_CNG_ERROR","features":[3]},{"name":"DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR","features":[3]},{"name":"DNS_ERROR_UNKNOWN_RECORD_TYPE","features":[3]},{"name":"DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION","features":[3]},{"name":"DNS_ERROR_UNSECURE_PACKET","features":[3]},{"name":"DNS_ERROR_UNSUPPORTED_ALGORITHM","features":[3]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_VIRTUALIZATION_TREE_LOCKED","features":[3]},{"name":"DNS_ERROR_WINS_INIT_FAILED","features":[3]},{"name":"DNS_ERROR_ZONESCOPE_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_ZONESCOPE_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED","features":[3]},{"name":"DNS_ERROR_ZONESCOPE_IS_REFERENCED","features":[3]},{"name":"DNS_ERROR_ZONE_ALREADY_EXISTS","features":[3]},{"name":"DNS_ERROR_ZONE_BASE","features":[3]},{"name":"DNS_ERROR_ZONE_CONFIGURATION_ERROR","features":[3]},{"name":"DNS_ERROR_ZONE_CREATION_FAILED","features":[3]},{"name":"DNS_ERROR_ZONE_DOES_NOT_EXIST","features":[3]},{"name":"DNS_ERROR_ZONE_HAS_NO_NS_RECORDS","features":[3]},{"name":"DNS_ERROR_ZONE_HAS_NO_SOA_RECORD","features":[3]},{"name":"DNS_ERROR_ZONE_IS_SHUTDOWN","features":[3]},{"name":"DNS_ERROR_ZONE_LOCKED","features":[3]},{"name":"DNS_ERROR_ZONE_LOCKED_FOR_SIGNING","features":[3]},{"name":"DNS_ERROR_ZONE_NOT_SECONDARY","features":[3]},{"name":"DNS_ERROR_ZONE_REQUIRES_MASTER_IP","features":[3]},{"name":"DNS_INFO_ADDED_LOCAL_WINS","features":[3]},{"name":"DNS_INFO_AXFR_COMPLETE","features":[3]},{"name":"DNS_INFO_NO_RECORDS","features":[3]},{"name":"DNS_REQUEST_PENDING","features":[3]},{"name":"DNS_STATUS_CONTINUE_NEEDED","features":[3]},{"name":"DNS_STATUS_DOTTED_NAME","features":[3]},{"name":"DNS_STATUS_FQDN","features":[3]},{"name":"DNS_STATUS_SINGLE_PART_NAME","features":[3]},{"name":"DNS_WARNING_DOMAIN_UNDELETED","features":[3]},{"name":"DNS_WARNING_PTR_CREATE_FAILED","features":[3]},{"name":"DRAGDROP_E_ALREADYREGISTERED","features":[3]},{"name":"DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED","features":[3]},{"name":"DRAGDROP_E_FIRST","features":[3]},{"name":"DRAGDROP_E_INVALIDHWND","features":[3]},{"name":"DRAGDROP_E_LAST","features":[3]},{"name":"DRAGDROP_E_NOTREGISTERED","features":[3]},{"name":"DRAGDROP_S_CANCEL","features":[3]},{"name":"DRAGDROP_S_DROP","features":[3]},{"name":"DRAGDROP_S_FIRST","features":[3]},{"name":"DRAGDROP_S_LAST","features":[3]},{"name":"DRAGDROP_S_USEDEFAULTCURSORS","features":[3]},{"name":"DUPLICATE_CLOSE_SOURCE","features":[3]},{"name":"DUPLICATE_HANDLE_OPTIONS","features":[3]},{"name":"DUPLICATE_SAME_ACCESS","features":[3]},{"name":"DV_E_CLIPFORMAT","features":[3]},{"name":"DV_E_DVASPECT","features":[3]},{"name":"DV_E_DVTARGETDEVICE","features":[3]},{"name":"DV_E_DVTARGETDEVICE_SIZE","features":[3]},{"name":"DV_E_FORMATETC","features":[3]},{"name":"DV_E_LINDEX","features":[3]},{"name":"DV_E_NOIVIEWOBJECT","features":[3]},{"name":"DV_E_STATDATA","features":[3]},{"name":"DV_E_STGMEDIUM","features":[3]},{"name":"DV_E_TYMED","features":[3]},{"name":"DWMERR_CATASTROPHIC_FAILURE","features":[3]},{"name":"DWMERR_STATE_TRANSITION_FAILED","features":[3]},{"name":"DWMERR_THEME_FAILED","features":[3]},{"name":"DWM_E_ADAPTER_NOT_FOUND","features":[3]},{"name":"DWM_E_COMPOSITIONDISABLED","features":[3]},{"name":"DWM_E_NOT_QUEUING_PRESENTS","features":[3]},{"name":"DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE","features":[3]},{"name":"DWM_E_REMOTING_NOT_SUPPORTED","features":[3]},{"name":"DWM_E_TEXTURE_TOO_LARGE","features":[3]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE","features":[3]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI","features":[3]},{"name":"DWRITE_E_ALREADYREGISTERED","features":[3]},{"name":"DWRITE_E_CACHEFORMAT","features":[3]},{"name":"DWRITE_E_CACHEVERSION","features":[3]},{"name":"DWRITE_E_FILEACCESS","features":[3]},{"name":"DWRITE_E_FILEFORMAT","features":[3]},{"name":"DWRITE_E_FILENOTFOUND","features":[3]},{"name":"DWRITE_E_FLOWDIRECTIONCONFLICTS","features":[3]},{"name":"DWRITE_E_FONTCOLLECTIONOBSOLETE","features":[3]},{"name":"DWRITE_E_NOCOLOR","features":[3]},{"name":"DWRITE_E_NOFONT","features":[3]},{"name":"DWRITE_E_TEXTRENDERERINCOMPATIBLE","features":[3]},{"name":"DWRITE_E_UNEXPECTED","features":[3]},{"name":"DWRITE_E_UNSUPPORTEDOPERATION","features":[3]},{"name":"DXCORE_ERROR_EVENT_NOT_UNREGISTERED","features":[3]},{"name":"DXGI_DDI_ERR_NONEXCLUSIVE","features":[3]},{"name":"DXGI_DDI_ERR_UNSUPPORTED","features":[3]},{"name":"DXGI_DDI_ERR_WASSTILLDRAWING","features":[3]},{"name":"DXGI_STATUS_CLIPPED","features":[3]},{"name":"DXGI_STATUS_DDA_WAS_STILL_DRAWING","features":[3]},{"name":"DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[3]},{"name":"DXGI_STATUS_MODE_CHANGED","features":[3]},{"name":"DXGI_STATUS_MODE_CHANGE_IN_PROGRESS","features":[3]},{"name":"DXGI_STATUS_NO_DESKTOP_ACCESS","features":[3]},{"name":"DXGI_STATUS_NO_REDIRECTION","features":[3]},{"name":"DXGI_STATUS_OCCLUDED","features":[3]},{"name":"DXGI_STATUS_PRESENT_REQUIRED","features":[3]},{"name":"DXGI_STATUS_UNOCCLUDED","features":[3]},{"name":"DuplicateHandle","features":[3]},{"name":"EAS_E_ADMINS_CANNOT_CHANGE_PASSWORD","features":[3]},{"name":"EAS_E_ADMINS_HAVE_BLANK_PASSWORD","features":[3]},{"name":"EAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD","features":[3]},{"name":"EAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD","features":[3]},{"name":"EAS_E_CURRENT_USER_HAS_BLANK_PASSWORD","features":[3]},{"name":"EAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD","features":[3]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS","features":[3]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER","features":[3]},{"name":"EAS_E_POLICY_COMPLIANT_WITH_ACTIONS","features":[3]},{"name":"EAS_E_POLICY_NOT_MANAGED_BY_OS","features":[3]},{"name":"EAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE","features":[3]},{"name":"EAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE","features":[3]},{"name":"EAS_E_USER_CANNOT_CHANGE_PASSWORD","features":[3]},{"name":"ENUM_E_FIRST","features":[3]},{"name":"ENUM_E_LAST","features":[3]},{"name":"ENUM_S_FIRST","features":[3]},{"name":"ENUM_S_LAST","features":[3]},{"name":"EPT_NT_CANT_CREATE","features":[3]},{"name":"EPT_NT_CANT_PERFORM_OP","features":[3]},{"name":"EPT_NT_INVALID_ENTRY","features":[3]},{"name":"EPT_NT_NOT_REGISTERED","features":[3]},{"name":"ERROR_ABANDONED_WAIT_0","features":[3]},{"name":"ERROR_ABANDONED_WAIT_63","features":[3]},{"name":"ERROR_ABANDON_HIBERFILE","features":[3]},{"name":"ERROR_ABIOS_ERROR","features":[3]},{"name":"ERROR_ACCESS_AUDIT_BY_POLICY","features":[3]},{"name":"ERROR_ACCESS_DENIED","features":[3]},{"name":"ERROR_ACCESS_DENIED_APPDATA","features":[3]},{"name":"ERROR_ACCESS_DISABLED_BY_POLICY","features":[3]},{"name":"ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[3]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE","features":[3]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER","features":[3]},{"name":"ERROR_ACCOUNT_DISABLED","features":[3]},{"name":"ERROR_ACCOUNT_EXPIRED","features":[3]},{"name":"ERROR_ACCOUNT_LOCKED_OUT","features":[3]},{"name":"ERROR_ACCOUNT_RESTRICTION","features":[3]},{"name":"ERROR_ACPI_ERROR","features":[3]},{"name":"ERROR_ACTIVATION_COUNT_EXCEEDED","features":[3]},{"name":"ERROR_ACTIVE_CONNECTIONS","features":[3]},{"name":"ERROR_ADAP_HDW_ERR","features":[3]},{"name":"ERROR_ADDRESS_ALREADY_ASSOCIATED","features":[3]},{"name":"ERROR_ADDRESS_NOT_ASSOCIATED","features":[3]},{"name":"ERROR_ADVANCED_INSTALLER_FAILED","features":[3]},{"name":"ERROR_ALERTED","features":[3]},{"name":"ERROR_ALIAS_EXISTS","features":[3]},{"name":"ERROR_ALLOCATE_BUCKET","features":[3]},{"name":"ERROR_ALLOTTED_SPACE_EXCEEDED","features":[3]},{"name":"ERROR_ALLOWED_PORT_TYPE_RESTRICTION","features":[3]},{"name":"ERROR_ALL_NODES_NOT_AVAILABLE","features":[3]},{"name":"ERROR_ALL_SIDS_FILTERED","features":[3]},{"name":"ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_ALREADY_ASSIGNED","features":[3]},{"name":"ERROR_ALREADY_CONNECTED","features":[3]},{"name":"ERROR_ALREADY_CONNECTING","features":[3]},{"name":"ERROR_ALREADY_EXISTS","features":[3]},{"name":"ERROR_ALREADY_FIBER","features":[3]},{"name":"ERROR_ALREADY_HAS_STREAM_ID","features":[3]},{"name":"ERROR_ALREADY_INITIALIZED","features":[3]},{"name":"ERROR_ALREADY_REGISTERED","features":[3]},{"name":"ERROR_ALREADY_RUNNING_LKG","features":[3]},{"name":"ERROR_ALREADY_THREAD","features":[3]},{"name":"ERROR_ALREADY_WAITING","features":[3]},{"name":"ERROR_ALREADY_WIN32","features":[3]},{"name":"ERROR_AMBIGUOUS_SYSTEM_DEVICE","features":[3]},{"name":"ERROR_API_UNAVAILABLE","features":[3]},{"name":"ERROR_APPCONTAINER_REQUIRED","features":[3]},{"name":"ERROR_APPEXEC_APP_COMPAT_BLOCK","features":[3]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT","features":[3]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[3]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[3]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[3]},{"name":"ERROR_APPEXEC_CONDITION_NOT_SATISFIED","features":[3]},{"name":"ERROR_APPEXEC_HANDLE_INVALIDATED","features":[3]},{"name":"ERROR_APPEXEC_HOST_ID_MISMATCH","features":[3]},{"name":"ERROR_APPEXEC_INVALID_HOST_GENERATION","features":[3]},{"name":"ERROR_APPEXEC_INVALID_HOST_STATE","features":[3]},{"name":"ERROR_APPEXEC_NO_DONOR","features":[3]},{"name":"ERROR_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[3]},{"name":"ERROR_APPEXEC_UNKNOWN_USER","features":[3]},{"name":"ERROR_APPHELP_BLOCK","features":[3]},{"name":"ERROR_APPINSTALLER_ACTIVATION_BLOCKED","features":[3]},{"name":"ERROR_APPINSTALLER_IS_MANAGED_BY_SYSTEM","features":[3]},{"name":"ERROR_APPINSTALLER_URI_IN_USE","features":[3]},{"name":"ERROR_APPX_FILE_NOT_ENCRYPTED","features":[3]},{"name":"ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[3]},{"name":"ERROR_APPX_RAW_DATA_WRITE_FAILED","features":[3]},{"name":"ERROR_APP_DATA_CORRUPT","features":[3]},{"name":"ERROR_APP_DATA_EXPIRED","features":[3]},{"name":"ERROR_APP_DATA_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_APP_DATA_NOT_FOUND","features":[3]},{"name":"ERROR_APP_DATA_REBOOT_REQUIRED","features":[3]},{"name":"ERROR_APP_HANG","features":[3]},{"name":"ERROR_APP_INIT_FAILURE","features":[3]},{"name":"ERROR_APP_WRONG_OS","features":[3]},{"name":"ERROR_ARBITRATION_UNHANDLED","features":[3]},{"name":"ERROR_ARENA_TRASHED","features":[3]},{"name":"ERROR_ARITHMETIC_OVERFLOW","features":[3]},{"name":"ERROR_ASSERTION_FAILURE","features":[3]},{"name":"ERROR_ATOMIC_LOCKS_NOT_SUPPORTED","features":[3]},{"name":"ERROR_ATTRIBUTE_NOT_PRESENT","features":[3]},{"name":"ERROR_AUDITING_DISABLED","features":[3]},{"name":"ERROR_AUDIT_FAILED","features":[3]},{"name":"ERROR_AUTHENTICATION_FIREWALL_FAILED","features":[3]},{"name":"ERROR_AUTHENTICATOR_MISMATCH","features":[3]},{"name":"ERROR_AUTHENTICODE_DISALLOWED","features":[3]},{"name":"ERROR_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[3]},{"name":"ERROR_AUTHENTICODE_TRUSTED_PUBLISHER","features":[3]},{"name":"ERROR_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[3]},{"name":"ERROR_AUTHIP_FAILURE","features":[3]},{"name":"ERROR_AUTH_PROTOCOL_REJECTED","features":[3]},{"name":"ERROR_AUTH_PROTOCOL_RESTRICTION","features":[3]},{"name":"ERROR_AUTH_SERVER_TIMEOUT","features":[3]},{"name":"ERROR_AUTODATASEG_EXCEEDS_64k","features":[3]},{"name":"ERROR_BACKUP_CONTROLLER","features":[3]},{"name":"ERROR_BADDB","features":[3]},{"name":"ERROR_BADKEY","features":[3]},{"name":"ERROR_BADSTARTPOSITION","features":[3]},{"name":"ERROR_BAD_ACCESSOR_FLAGS","features":[3]},{"name":"ERROR_BAD_ARGUMENTS","features":[3]},{"name":"ERROR_BAD_CLUSTERS","features":[3]},{"name":"ERROR_BAD_COMMAND","features":[3]},{"name":"ERROR_BAD_COMPRESSION_BUFFER","features":[3]},{"name":"ERROR_BAD_CONFIGURATION","features":[3]},{"name":"ERROR_BAD_CURRENT_DIRECTORY","features":[3]},{"name":"ERROR_BAD_DESCRIPTOR_FORMAT","features":[3]},{"name":"ERROR_BAD_DEVICE","features":[3]},{"name":"ERROR_BAD_DEVICE_PATH","features":[3]},{"name":"ERROR_BAD_DEV_TYPE","features":[3]},{"name":"ERROR_BAD_DLL_ENTRYPOINT","features":[3]},{"name":"ERROR_BAD_DRIVER","features":[3]},{"name":"ERROR_BAD_DRIVER_LEVEL","features":[3]},{"name":"ERROR_BAD_ENVIRONMENT","features":[3]},{"name":"ERROR_BAD_EXE_FORMAT","features":[3]},{"name":"ERROR_BAD_FILE_TYPE","features":[3]},{"name":"ERROR_BAD_FORMAT","features":[3]},{"name":"ERROR_BAD_FUNCTION_TABLE","features":[3]},{"name":"ERROR_BAD_IMPERSONATION_LEVEL","features":[3]},{"name":"ERROR_BAD_INHERITANCE_ACL","features":[3]},{"name":"ERROR_BAD_INTERFACE_INSTALLSECT","features":[3]},{"name":"ERROR_BAD_LENGTH","features":[3]},{"name":"ERROR_BAD_LOGON_SESSION_STATE","features":[3]},{"name":"ERROR_BAD_MCFG_TABLE","features":[3]},{"name":"ERROR_BAD_NETPATH","features":[3]},{"name":"ERROR_BAD_NET_NAME","features":[3]},{"name":"ERROR_BAD_NET_RESP","features":[3]},{"name":"ERROR_BAD_PATHNAME","features":[3]},{"name":"ERROR_BAD_PIPE","features":[3]},{"name":"ERROR_BAD_PROFILE","features":[3]},{"name":"ERROR_BAD_PROVIDER","features":[3]},{"name":"ERROR_BAD_QUERY_SYNTAX","features":[3]},{"name":"ERROR_BAD_RECOVERY_POLICY","features":[3]},{"name":"ERROR_BAD_REM_ADAP","features":[3]},{"name":"ERROR_BAD_SECTION_NAME_LINE","features":[3]},{"name":"ERROR_BAD_SERVICE_ENTRYPOINT","features":[3]},{"name":"ERROR_BAD_SERVICE_INSTALLSECT","features":[3]},{"name":"ERROR_BAD_STACK","features":[3]},{"name":"ERROR_BAD_THREADID_ADDR","features":[3]},{"name":"ERROR_BAD_TOKEN_TYPE","features":[3]},{"name":"ERROR_BAD_UNIT","features":[3]},{"name":"ERROR_BAD_USERNAME","features":[3]},{"name":"ERROR_BAD_USER_PROFILE","features":[3]},{"name":"ERROR_BAD_VALIDATION_CLASS","features":[3]},{"name":"ERROR_BAP_DISCONNECTED","features":[3]},{"name":"ERROR_BAP_REQUIRED","features":[3]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[3]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[3]},{"name":"ERROR_BCD_TOO_MANY_ELEMENTS","features":[3]},{"name":"ERROR_BEGINNING_OF_MEDIA","features":[3]},{"name":"ERROR_BEYOND_VDL","features":[3]},{"name":"ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[3]},{"name":"ERROR_BIZRULES_NOT_ENABLED","features":[3]},{"name":"ERROR_BLOCKED_BY_PARENTAL_CONTROLS","features":[3]},{"name":"ERROR_BLOCK_SHARED","features":[3]},{"name":"ERROR_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[3]},{"name":"ERROR_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[3]},{"name":"ERROR_BLOCK_TOO_MANY_REFERENCES","features":[3]},{"name":"ERROR_BLOCK_WEAK_REFERENCE_INVALID","features":[3]},{"name":"ERROR_BOOT_ALREADY_ACCEPTED","features":[3]},{"name":"ERROR_BROKEN_PIPE","features":[3]},{"name":"ERROR_BUFFER_ALL_ZEROS","features":[3]},{"name":"ERROR_BUFFER_OVERFLOW","features":[3]},{"name":"ERROR_BUSY","features":[3]},{"name":"ERROR_BUSY_DRIVE","features":[3]},{"name":"ERROR_BUS_RESET","features":[3]},{"name":"ERROR_BYPASSIO_FLT_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CACHE_PAGE_LOCKED","features":[3]},{"name":"ERROR_CALLBACK_INVOKE_INLINE","features":[3]},{"name":"ERROR_CALLBACK_POP_STACK","features":[3]},{"name":"ERROR_CALLBACK_SUPPLIED_INVALID_DATA","features":[3]},{"name":"ERROR_CALL_NOT_IMPLEMENTED","features":[3]},{"name":"ERROR_CANCELLED","features":[3]},{"name":"ERROR_CANCEL_VIOLATION","features":[3]},{"name":"ERROR_CANNOT_ABORT_TRANSACTIONS","features":[3]},{"name":"ERROR_CANNOT_ACCEPT_TRANSACTED_WORK","features":[3]},{"name":"ERROR_CANNOT_BREAK_OPLOCK","features":[3]},{"name":"ERROR_CANNOT_COPY","features":[3]},{"name":"ERROR_CANNOT_DETECT_DRIVER_FAILURE","features":[3]},{"name":"ERROR_CANNOT_DETECT_PROCESS_ABORT","features":[3]},{"name":"ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[3]},{"name":"ERROR_CANNOT_FIND_WND_CLASS","features":[3]},{"name":"ERROR_CANNOT_GRANT_REQUESTED_OPLOCK","features":[3]},{"name":"ERROR_CANNOT_IMPERSONATE","features":[3]},{"name":"ERROR_CANNOT_LOAD_REGISTRY_FILE","features":[3]},{"name":"ERROR_CANNOT_MAKE","features":[3]},{"name":"ERROR_CANNOT_OPEN_PROFILE","features":[3]},{"name":"ERROR_CANNOT_SWITCH_RUNLEVEL","features":[3]},{"name":"ERROR_CANTFETCHBACKWARDS","features":[3]},{"name":"ERROR_CANTOPEN","features":[3]},{"name":"ERROR_CANTREAD","features":[3]},{"name":"ERROR_CANTSCROLLBACKWARDS","features":[3]},{"name":"ERROR_CANTWRITE","features":[3]},{"name":"ERROR_CANT_ACCESS_DOMAIN_INFO","features":[3]},{"name":"ERROR_CANT_ACCESS_FILE","features":[3]},{"name":"ERROR_CANT_ATTACH_TO_DEV_VOLUME","features":[3]},{"name":"ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[3]},{"name":"ERROR_CANT_CLEAR_ENCRYPTION_FLAG","features":[3]},{"name":"ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[3]},{"name":"ERROR_CANT_CROSS_RM_BOUNDARY","features":[3]},{"name":"ERROR_CANT_DELETE_LAST_ITEM","features":[3]},{"name":"ERROR_CANT_DISABLE_MANDATORY","features":[3]},{"name":"ERROR_CANT_ENABLE_DENY_ONLY","features":[3]},{"name":"ERROR_CANT_EVICT_ACTIVE_NODE","features":[3]},{"name":"ERROR_CANT_LOAD_CLASS_ICON","features":[3]},{"name":"ERROR_CANT_OPEN_ANONYMOUS","features":[3]},{"name":"ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[3]},{"name":"ERROR_CANT_RECOVER_WITH_HANDLE_OPEN","features":[3]},{"name":"ERROR_CANT_REMOVE_DEVINST","features":[3]},{"name":"ERROR_CANT_RESOLVE_FILENAME","features":[3]},{"name":"ERROR_CANT_TERMINATE_SELF","features":[3]},{"name":"ERROR_CANT_WAIT","features":[3]},{"name":"ERROR_CAN_NOT_COMPLETE","features":[3]},{"name":"ERROR_CAN_NOT_DEL_LOCAL_WINS","features":[3]},{"name":"ERROR_CAPAUTHZ_CHANGE_TYPE","features":[3]},{"name":"ERROR_CAPAUTHZ_DB_CORRUPTED","features":[3]},{"name":"ERROR_CAPAUTHZ_NOT_AUTHORIZED","features":[3]},{"name":"ERROR_CAPAUTHZ_NOT_DEVUNLOCKED","features":[3]},{"name":"ERROR_CAPAUTHZ_NOT_PROVISIONED","features":[3]},{"name":"ERROR_CAPAUTHZ_NO_POLICY","features":[3]},{"name":"ERROR_CAPAUTHZ_SCCD_DEV_MODE_REQUIRED","features":[3]},{"name":"ERROR_CAPAUTHZ_SCCD_INVALID_CATALOG","features":[3]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_AUTH_ENTITY","features":[3]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH","features":[3]},{"name":"ERROR_CAPAUTHZ_SCCD_PARSE_ERROR","features":[3]},{"name":"ERROR_CARDBUS_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CASE_DIFFERING_NAMES_IN_DIR","features":[3]},{"name":"ERROR_CASE_SENSITIVE_PATH","features":[3]},{"name":"ERROR_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[3]},{"name":"ERROR_CHECKING_FILE_SYSTEM","features":[3]},{"name":"ERROR_CHECKOUT_REQUIRED","features":[3]},{"name":"ERROR_CHILD_MUST_BE_VOLATILE","features":[3]},{"name":"ERROR_CHILD_NOT_COMPLETE","features":[3]},{"name":"ERROR_CHILD_PROCESS_BLOCKED","features":[3]},{"name":"ERROR_CHILD_WINDOW_MENU","features":[3]},{"name":"ERROR_CIMFS_IMAGE_CORRUPT","features":[3]},{"name":"ERROR_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CIRCULAR_DEPENDENCY","features":[3]},{"name":"ERROR_CLASSIC_COMPAT_MODE_NOT_ALLOWED","features":[3]},{"name":"ERROR_CLASS_ALREADY_EXISTS","features":[3]},{"name":"ERROR_CLASS_DOES_NOT_EXIST","features":[3]},{"name":"ERROR_CLASS_HAS_WINDOWS","features":[3]},{"name":"ERROR_CLASS_MISMATCH","features":[3]},{"name":"ERROR_CLEANER_CARTRIDGE_INSTALLED","features":[3]},{"name":"ERROR_CLEANER_CARTRIDGE_SPENT","features":[3]},{"name":"ERROR_CLEANER_SLOT_NOT_SET","features":[3]},{"name":"ERROR_CLEANER_SLOT_SET","features":[3]},{"name":"ERROR_CLIENT_INTERFACE_ALREADY_EXISTS","features":[3]},{"name":"ERROR_CLIENT_SERVER_PARAMETERS_INVALID","features":[3]},{"name":"ERROR_CLIPBOARD_NOT_OPEN","features":[3]},{"name":"ERROR_CLIPPING_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CLIP_DEVICE_LICENSE_MISSING","features":[3]},{"name":"ERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[3]},{"name":"ERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[3]},{"name":"ERROR_CLIP_LICENSE_EXPIRED","features":[3]},{"name":"ERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[3]},{"name":"ERROR_CLIP_LICENSE_INVALID_SIGNATURE","features":[3]},{"name":"ERROR_CLIP_LICENSE_NOT_FOUND","features":[3]},{"name":"ERROR_CLIP_LICENSE_NOT_SIGNED","features":[3]},{"name":"ERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[3]},{"name":"ERROR_CLOUD_FILE_ACCESS_DENIED","features":[3]},{"name":"ERROR_CLOUD_FILE_ALREADY_CONNECTED","features":[3]},{"name":"ERROR_CLOUD_FILE_AUTHENTICATION_FAILED","features":[3]},{"name":"ERROR_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[3]},{"name":"ERROR_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[3]},{"name":"ERROR_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[3]},{"name":"ERROR_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[3]},{"name":"ERROR_CLOUD_FILE_INVALID_REQUEST","features":[3]},{"name":"ERROR_CLOUD_FILE_IN_USE","features":[3]},{"name":"ERROR_CLOUD_FILE_METADATA_CORRUPT","features":[3]},{"name":"ERROR_CLOUD_FILE_METADATA_TOO_LARGE","features":[3]},{"name":"ERROR_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[3]},{"name":"ERROR_CLOUD_FILE_NOT_IN_SYNC","features":[3]},{"name":"ERROR_CLOUD_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[3]},{"name":"ERROR_CLOUD_FILE_PINNED","features":[3]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[3]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[3]},{"name":"ERROR_CLOUD_FILE_PROPERTY_CORRUPT","features":[3]},{"name":"ERROR_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[3]},{"name":"ERROR_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[3]},{"name":"ERROR_CLOUD_FILE_PROVIDER_TERMINATED","features":[3]},{"name":"ERROR_CLOUD_FILE_READ_ONLY_VOLUME","features":[3]},{"name":"ERROR_CLOUD_FILE_REQUEST_ABORTED","features":[3]},{"name":"ERROR_CLOUD_FILE_REQUEST_CANCELED","features":[3]},{"name":"ERROR_CLOUD_FILE_REQUEST_TIMEOUT","features":[3]},{"name":"ERROR_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[3]},{"name":"ERROR_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[3]},{"name":"ERROR_CLOUD_FILE_UNSUCCESSFUL","features":[3]},{"name":"ERROR_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[3]},{"name":"ERROR_CLOUD_FILE_VALIDATION_FAILED","features":[3]},{"name":"ERROR_CLUSCFG_ALREADY_COMMITTED","features":[3]},{"name":"ERROR_CLUSCFG_ROLLBACK_FAILED","features":[3]},{"name":"ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT","features":[3]},{"name":"ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTERLOG_CORRUPT","features":[3]},{"name":"ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE","features":[3]},{"name":"ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE","features":[3]},{"name":"ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE","features":[3]},{"name":"ERROR_CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE","features":[3]},{"name":"ERROR_CLUSTER_AFFINITY_CONFLICT","features":[3]},{"name":"ERROR_CLUSTER_BACKUP_IN_PROGRESS","features":[3]},{"name":"ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES","features":[3]},{"name":"ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME","features":[3]},{"name":"ERROR_CLUSTER_CANT_DESERIALIZE_DATA","features":[3]},{"name":"ERROR_CLUSTER_CSV_INVALID_HANDLE","features":[3]},{"name":"ERROR_CLUSTER_CSV_IO_PAUSE_TIMEOUT","features":[3]},{"name":"ERROR_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[3]},{"name":"ERROR_CLUSTER_DATABASE_SEQMISMATCH","features":[3]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS","features":[3]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS","features":[3]},{"name":"ERROR_CLUSTER_DATABASE_UPDATE_CONDITION_FAILED","features":[3]},{"name":"ERROR_CLUSTER_DISK_NOT_CONNECTED","features":[3]},{"name":"ERROR_CLUSTER_EVICT_INVALID_REQUEST","features":[3]},{"name":"ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP","features":[3]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION","features":[3]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY","features":[3]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS","features":[3]},{"name":"ERROR_CLUSTER_GROUP_BUSY","features":[3]},{"name":"ERROR_CLUSTER_GROUP_MOVING","features":[3]},{"name":"ERROR_CLUSTER_GROUP_QUEUED","features":[3]},{"name":"ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE","features":[3]},{"name":"ERROR_CLUSTER_GUM_NOT_LOCKER","features":[3]},{"name":"ERROR_CLUSTER_INCOMPATIBLE_VERSIONS","features":[3]},{"name":"ERROR_CLUSTER_INSTANCE_ID_MISMATCH","features":[3]},{"name":"ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION","features":[3]},{"name":"ERROR_CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME","features":[3]},{"name":"ERROR_CLUSTER_INVALID_IPV6_NETWORK","features":[3]},{"name":"ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK","features":[3]},{"name":"ERROR_CLUSTER_INVALID_NETWORK","features":[3]},{"name":"ERROR_CLUSTER_INVALID_NETWORK_PROVIDER","features":[3]},{"name":"ERROR_CLUSTER_INVALID_NODE","features":[3]},{"name":"ERROR_CLUSTER_INVALID_NODE_WEIGHT","features":[3]},{"name":"ERROR_CLUSTER_INVALID_REQUEST","features":[3]},{"name":"ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR","features":[3]},{"name":"ERROR_CLUSTER_INVALID_STRING_FORMAT","features":[3]},{"name":"ERROR_CLUSTER_INVALID_STRING_TERMINATION","features":[3]},{"name":"ERROR_CLUSTER_IPADDR_IN_USE","features":[3]},{"name":"ERROR_CLUSTER_JOIN_ABORTED","features":[3]},{"name":"ERROR_CLUSTER_JOIN_IN_PROGRESS","features":[3]},{"name":"ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[3]},{"name":"ERROR_CLUSTER_LAST_INTERNAL_NETWORK","features":[3]},{"name":"ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED","features":[3]},{"name":"ERROR_CLUSTER_MAX_NODES_IN_CLUSTER","features":[3]},{"name":"ERROR_CLUSTER_MEMBERSHIP_HALT","features":[3]},{"name":"ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE","features":[3]},{"name":"ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME","features":[3]},{"name":"ERROR_CLUSTER_NETINTERFACE_EXISTS","features":[3]},{"name":"ERROR_CLUSTER_NETINTERFACE_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[3]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_ONLINE","features":[3]},{"name":"ERROR_CLUSTER_NETWORK_EXISTS","features":[3]},{"name":"ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS","features":[3]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP","features":[3]},{"name":"ERROR_CLUSTER_NETWORK_NOT_INTERNAL","features":[3]},{"name":"ERROR_CLUSTER_NODE_ALREADY_DOWN","features":[3]},{"name":"ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT","features":[3]},{"name":"ERROR_CLUSTER_NODE_ALREADY_MEMBER","features":[3]},{"name":"ERROR_CLUSTER_NODE_ALREADY_UP","features":[3]},{"name":"ERROR_CLUSTER_NODE_DOWN","features":[3]},{"name":"ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS","features":[3]},{"name":"ERROR_CLUSTER_NODE_EXISTS","features":[3]},{"name":"ERROR_CLUSTER_NODE_IN_GRACE_PERIOD","features":[3]},{"name":"ERROR_CLUSTER_NODE_ISOLATED","features":[3]},{"name":"ERROR_CLUSTER_NODE_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_NODE_NOT_MEMBER","features":[3]},{"name":"ERROR_CLUSTER_NODE_NOT_PAUSED","features":[3]},{"name":"ERROR_CLUSTER_NODE_NOT_READY","features":[3]},{"name":"ERROR_CLUSTER_NODE_PAUSED","features":[3]},{"name":"ERROR_CLUSTER_NODE_QUARANTINED","features":[3]},{"name":"ERROR_CLUSTER_NODE_SHUTTING_DOWN","features":[3]},{"name":"ERROR_CLUSTER_NODE_UNREACHABLE","features":[3]},{"name":"ERROR_CLUSTER_NODE_UP","features":[3]},{"name":"ERROR_CLUSTER_NOT_INSTALLED","features":[3]},{"name":"ERROR_CLUSTER_NOT_SHARED_VOLUME","features":[3]},{"name":"ERROR_CLUSTER_NO_NET_ADAPTERS","features":[3]},{"name":"ERROR_CLUSTER_NO_QUORUM","features":[3]},{"name":"ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED","features":[3]},{"name":"ERROR_CLUSTER_NO_SECURITY_CONTEXT","features":[3]},{"name":"ERROR_CLUSTER_NULL_DATA","features":[3]},{"name":"ERROR_CLUSTER_OBJECT_ALREADY_USED","features":[3]},{"name":"ERROR_CLUSTER_OBJECT_IS_CLUSTER_SET_VM","features":[3]},{"name":"ERROR_CLUSTER_OLD_VERSION","features":[3]},{"name":"ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST","features":[3]},{"name":"ERROR_CLUSTER_PARAMETER_MISMATCH","features":[3]},{"name":"ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS","features":[3]},{"name":"ERROR_CLUSTER_PARTIAL_READ","features":[3]},{"name":"ERROR_CLUSTER_PARTIAL_SEND","features":[3]},{"name":"ERROR_CLUSTER_PARTIAL_WRITE","features":[3]},{"name":"ERROR_CLUSTER_POISONED","features":[3]},{"name":"ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH","features":[3]},{"name":"ERROR_CLUSTER_QUORUMLOG_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION","features":[3]},{"name":"ERROR_CLUSTER_RESNAME_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICATED","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_LOCKED_STATUS","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_NOT_MONITORED","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_BUSY","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_CALL","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION","features":[3]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE","features":[3]},{"name":"ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CLUSTER_RHS_FAILED_INITIALIZATION","features":[3]},{"name":"ERROR_CLUSTER_SHARED_VOLUMES_IN_USE","features":[3]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED","features":[3]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED","features":[3]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED","features":[3]},{"name":"ERROR_CLUSTER_SHUTTING_DOWN","features":[3]},{"name":"ERROR_CLUSTER_SINGLETON_RESOURCE","features":[3]},{"name":"ERROR_CLUSTER_SPACE_DEGRADED","features":[3]},{"name":"ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED","features":[3]},{"name":"ERROR_CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CLUSTER_TOO_MANY_NODES","features":[3]},{"name":"ERROR_CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED","features":[3]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS","features":[3]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPLETE","features":[3]},{"name":"ERROR_CLUSTER_UPGRADE_IN_PROGRESS","features":[3]},{"name":"ERROR_CLUSTER_UPGRADE_RESTART_REQUIRED","features":[3]},{"name":"ERROR_CLUSTER_USE_SHARED_VOLUMES_API","features":[3]},{"name":"ERROR_CLUSTER_WATCHDOG_TERMINATING","features":[3]},{"name":"ERROR_CLUSTER_WRONG_OS_VERSION","features":[3]},{"name":"ERROR_COLORSPACE_MISMATCH","features":[3]},{"name":"ERROR_COMMITMENT_LIMIT","features":[3]},{"name":"ERROR_COMMITMENT_MINIMUM","features":[3]},{"name":"ERROR_COMPRESSED_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_COMPRESSION_DISABLED","features":[3]},{"name":"ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[3]},{"name":"ERROR_COMPRESSION_NOT_BENEFICIAL","features":[3]},{"name":"ERROR_COM_TASK_STOP_PENDING","features":[3]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD","features":[3]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT","features":[3]},{"name":"ERROR_CONNECTION_ABORTED","features":[3]},{"name":"ERROR_CONNECTION_ACTIVE","features":[3]},{"name":"ERROR_CONNECTION_COUNT_LIMIT","features":[3]},{"name":"ERROR_CONNECTION_INVALID","features":[3]},{"name":"ERROR_CONNECTION_REFUSED","features":[3]},{"name":"ERROR_CONNECTION_UNAVAIL","features":[3]},{"name":"ERROR_CONTAINER_ASSIGNED","features":[3]},{"name":"ERROR_CONTENT_BLOCKED","features":[3]},{"name":"ERROR_CONTEXT_EXPIRED","features":[3]},{"name":"ERROR_CONTINUE","features":[3]},{"name":"ERROR_CONTROLLING_IEPORT","features":[3]},{"name":"ERROR_CONTROL_C_EXIT","features":[3]},{"name":"ERROR_CONTROL_ID_NOT_FOUND","features":[3]},{"name":"ERROR_CONVERT_TO_LARGE","features":[3]},{"name":"ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND","features":[3]},{"name":"ERROR_CORE_RESOURCE","features":[3]},{"name":"ERROR_CORRUPT_LOG_CLEARED","features":[3]},{"name":"ERROR_CORRUPT_LOG_CORRUPTED","features":[3]},{"name":"ERROR_CORRUPT_LOG_DELETED_FULL","features":[3]},{"name":"ERROR_CORRUPT_LOG_OVERFULL","features":[3]},{"name":"ERROR_CORRUPT_LOG_UNAVAILABLE","features":[3]},{"name":"ERROR_CORRUPT_SYSTEM_FILE","features":[3]},{"name":"ERROR_COULD_NOT_INTERPRET","features":[3]},{"name":"ERROR_COULD_NOT_RESIZE_LOG","features":[3]},{"name":"ERROR_COUNTER_TIMEOUT","features":[3]},{"name":"ERROR_CPU_SET_INVALID","features":[3]},{"name":"ERROR_CRASH_DUMP","features":[3]},{"name":"ERROR_CRC","features":[3]},{"name":"ERROR_CREATE_FAILED","features":[3]},{"name":"ERROR_CRED_REQUIRES_CONFIRMATION","features":[3]},{"name":"ERROR_CRM_PROTOCOL_ALREADY_EXISTS","features":[3]},{"name":"ERROR_CRM_PROTOCOL_NOT_FOUND","features":[3]},{"name":"ERROR_CROSS_PARTITION_VIOLATION","features":[3]},{"name":"ERROR_CSCSHARE_OFFLINE","features":[3]},{"name":"ERROR_CSV_VOLUME_NOT_LOCAL","features":[3]},{"name":"ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[3]},{"name":"ERROR_CS_ENCRYPTION_FILE_NOT_CSE","features":[3]},{"name":"ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[3]},{"name":"ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[3]},{"name":"ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[3]},{"name":"ERROR_CTLOG_INCONSISTENT_TRACKING_FILE","features":[3]},{"name":"ERROR_CTLOG_INVALID_TRACKING_STATE","features":[3]},{"name":"ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[3]},{"name":"ERROR_CTLOG_TRACKING_NOT_INITIALIZED","features":[3]},{"name":"ERROR_CTLOG_VHD_CHANGED_OFFLINE","features":[3]},{"name":"ERROR_CTX_ACCOUNT_RESTRICTION","features":[3]},{"name":"ERROR_CTX_BAD_VIDEO_MODE","features":[3]},{"name":"ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY","features":[3]},{"name":"ERROR_CTX_CDM_CONNECT","features":[3]},{"name":"ERROR_CTX_CDM_DISCONNECT","features":[3]},{"name":"ERROR_CTX_CLIENT_LICENSE_IN_USE","features":[3]},{"name":"ERROR_CTX_CLIENT_LICENSE_NOT_SET","features":[3]},{"name":"ERROR_CTX_CLIENT_QUERY_TIMEOUT","features":[3]},{"name":"ERROR_CTX_CLOSE_PENDING","features":[3]},{"name":"ERROR_CTX_CONSOLE_CONNECT","features":[3]},{"name":"ERROR_CTX_CONSOLE_DISCONNECT","features":[3]},{"name":"ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED","features":[3]},{"name":"ERROR_CTX_GRAPHICS_INVALID","features":[3]},{"name":"ERROR_CTX_INVALID_MODEMNAME","features":[3]},{"name":"ERROR_CTX_INVALID_PD","features":[3]},{"name":"ERROR_CTX_INVALID_WD","features":[3]},{"name":"ERROR_CTX_LICENSE_CLIENT_INVALID","features":[3]},{"name":"ERROR_CTX_LICENSE_EXPIRED","features":[3]},{"name":"ERROR_CTX_LICENSE_NOT_AVAILABLE","features":[3]},{"name":"ERROR_CTX_LOGON_DISABLED","features":[3]},{"name":"ERROR_CTX_MODEM_INF_NOT_FOUND","features":[3]},{"name":"ERROR_CTX_MODEM_RESPONSE_BUSY","features":[3]},{"name":"ERROR_CTX_MODEM_RESPONSE_ERROR","features":[3]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_CARRIER","features":[3]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[3]},{"name":"ERROR_CTX_MODEM_RESPONSE_TIMEOUT","features":[3]},{"name":"ERROR_CTX_MODEM_RESPONSE_VOICE","features":[3]},{"name":"ERROR_CTX_NOT_CONSOLE","features":[3]},{"name":"ERROR_CTX_NO_FORCE_LOGOFF","features":[3]},{"name":"ERROR_CTX_NO_OUTBUF","features":[3]},{"name":"ERROR_CTX_PD_NOT_FOUND","features":[3]},{"name":"ERROR_CTX_SECURITY_LAYER_ERROR","features":[3]},{"name":"ERROR_CTX_SERVICE_NAME_COLLISION","features":[3]},{"name":"ERROR_CTX_SESSION_IN_USE","features":[3]},{"name":"ERROR_CTX_SHADOW_DENIED","features":[3]},{"name":"ERROR_CTX_SHADOW_DISABLED","features":[3]},{"name":"ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[3]},{"name":"ERROR_CTX_SHADOW_INVALID","features":[3]},{"name":"ERROR_CTX_SHADOW_NOT_RUNNING","features":[3]},{"name":"ERROR_CTX_TD_ERROR","features":[3]},{"name":"ERROR_CTX_WD_NOT_FOUND","features":[3]},{"name":"ERROR_CTX_WINSTATIONS_DISABLED","features":[3]},{"name":"ERROR_CTX_WINSTATION_ACCESS_DENIED","features":[3]},{"name":"ERROR_CTX_WINSTATION_ALREADY_EXISTS","features":[3]},{"name":"ERROR_CTX_WINSTATION_BUSY","features":[3]},{"name":"ERROR_CTX_WINSTATION_NAME_INVALID","features":[3]},{"name":"ERROR_CTX_WINSTATION_NOT_FOUND","features":[3]},{"name":"ERROR_CURRENT_DIRECTORY","features":[3]},{"name":"ERROR_CURRENT_DOMAIN_NOT_ALLOWED","features":[3]},{"name":"ERROR_CURRENT_TRANSACTION_NOT_VALID","features":[3]},{"name":"ERROR_DATABASE_BACKUP_CORRUPT","features":[3]},{"name":"ERROR_DATABASE_DOES_NOT_EXIST","features":[3]},{"name":"ERROR_DATABASE_FAILURE","features":[3]},{"name":"ERROR_DATABASE_FULL","features":[3]},{"name":"ERROR_DATATYPE_MISMATCH","features":[3]},{"name":"ERROR_DATA_CHECKSUM_ERROR","features":[3]},{"name":"ERROR_DATA_LOST_REPAIR","features":[3]},{"name":"ERROR_DATA_NOT_ACCEPTED","features":[3]},{"name":"ERROR_DAX_MAPPING_EXISTS","features":[3]},{"name":"ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN","features":[3]},{"name":"ERROR_DBG_COMMAND_EXCEPTION","features":[3]},{"name":"ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN","features":[3]},{"name":"ERROR_DBG_CONTINUE","features":[3]},{"name":"ERROR_DBG_CONTROL_BREAK","features":[3]},{"name":"ERROR_DBG_CONTROL_C","features":[3]},{"name":"ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN","features":[3]},{"name":"ERROR_DBG_EXCEPTION_HANDLED","features":[3]},{"name":"ERROR_DBG_EXCEPTION_NOT_HANDLED","features":[3]},{"name":"ERROR_DBG_PRINTEXCEPTION_C","features":[3]},{"name":"ERROR_DBG_REPLY_LATER","features":[3]},{"name":"ERROR_DBG_RIPEXCEPTION","features":[3]},{"name":"ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN","features":[3]},{"name":"ERROR_DBG_TERMINATE_PROCESS","features":[3]},{"name":"ERROR_DBG_TERMINATE_THREAD","features":[3]},{"name":"ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE","features":[3]},{"name":"ERROR_DC_NOT_FOUND","features":[3]},{"name":"ERROR_DDE_FAIL","features":[3]},{"name":"ERROR_DDM_NOT_RUNNING","features":[3]},{"name":"ERROR_DEBUGGER_INACTIVE","features":[3]},{"name":"ERROR_DEBUG_ATTACH_FAILED","features":[3]},{"name":"ERROR_DECRYPTION_FAILED","features":[3]},{"name":"ERROR_DELAY_LOAD_FAILED","features":[3]},{"name":"ERROR_DELETE_PENDING","features":[3]},{"name":"ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED","features":[3]},{"name":"ERROR_DELETING_ICM_XFORM","features":[3]},{"name":"ERROR_DEPENDENCY_ALREADY_EXISTS","features":[3]},{"name":"ERROR_DEPENDENCY_NOT_ALLOWED","features":[3]},{"name":"ERROR_DEPENDENCY_NOT_FOUND","features":[3]},{"name":"ERROR_DEPENDENCY_TREE_TOO_COMPLEX","features":[3]},{"name":"ERROR_DEPENDENT_RESOURCE_EXISTS","features":[3]},{"name":"ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT","features":[3]},{"name":"ERROR_DEPENDENT_SERVICES_RUNNING","features":[3]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_POLICY","features":[3]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY","features":[3]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF","features":[3]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE","features":[3]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE","features":[3]},{"name":"ERROR_DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY","features":[3]},{"name":"ERROR_DEPLOYMENT_OPTION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_DESTINATION_ELEMENT_FULL","features":[3]},{"name":"ERROR_DESTROY_OBJECT_OF_OTHER_THREAD","features":[3]},{"name":"ERROR_DEVICE_ALREADY_ATTACHED","features":[3]},{"name":"ERROR_DEVICE_ALREADY_REMEMBERED","features":[3]},{"name":"ERROR_DEVICE_DOOR_OPEN","features":[3]},{"name":"ERROR_DEVICE_ENUMERATION_ERROR","features":[3]},{"name":"ERROR_DEVICE_FEATURE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_DEVICE_HARDWARE_ERROR","features":[3]},{"name":"ERROR_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[3]},{"name":"ERROR_DEVICE_INSTALLER_NOT_READY","features":[3]},{"name":"ERROR_DEVICE_INSTALL_BLOCKED","features":[3]},{"name":"ERROR_DEVICE_INTERFACE_ACTIVE","features":[3]},{"name":"ERROR_DEVICE_INTERFACE_REMOVED","features":[3]},{"name":"ERROR_DEVICE_IN_MAINTENANCE","features":[3]},{"name":"ERROR_DEVICE_IN_USE","features":[3]},{"name":"ERROR_DEVICE_NOT_AVAILABLE","features":[3]},{"name":"ERROR_DEVICE_NOT_CONNECTED","features":[3]},{"name":"ERROR_DEVICE_NOT_PARTITIONED","features":[3]},{"name":"ERROR_DEVICE_NO_RESOURCES","features":[3]},{"name":"ERROR_DEVICE_REINITIALIZATION_NEEDED","features":[3]},{"name":"ERROR_DEVICE_REMOVED","features":[3]},{"name":"ERROR_DEVICE_REQUIRES_CLEANING","features":[3]},{"name":"ERROR_DEVICE_RESET_REQUIRED","features":[3]},{"name":"ERROR_DEVICE_SUPPORT_IN_PROGRESS","features":[3]},{"name":"ERROR_DEVICE_UNREACHABLE","features":[3]},{"name":"ERROR_DEVINFO_DATA_LOCKED","features":[3]},{"name":"ERROR_DEVINFO_LIST_LOCKED","features":[3]},{"name":"ERROR_DEVINFO_NOT_REGISTERED","features":[3]},{"name":"ERROR_DEVINSTALL_QUEUE_NONNATIVE","features":[3]},{"name":"ERROR_DEVINST_ALREADY_EXISTS","features":[3]},{"name":"ERROR_DEV_NOT_EXIST","features":[3]},{"name":"ERROR_DEV_SIDELOAD_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DHCP_ADDRESS_CONFLICT","features":[3]},{"name":"ERROR_DIALIN_HOURS_RESTRICTION","features":[3]},{"name":"ERROR_DIALOUT_HOURS_RESTRICTION","features":[3]},{"name":"ERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST","features":[3]},{"name":"ERROR_DIFFERENT_SERVICE_ACCOUNT","features":[3]},{"name":"ERROR_DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED","features":[3]},{"name":"ERROR_DIF_BINDING_API_NOT_FOUND","features":[3]},{"name":"ERROR_DIF_IOCALLBACK_NOT_REPLACED","features":[3]},{"name":"ERROR_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[3]},{"name":"ERROR_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[3]},{"name":"ERROR_DIF_VOLATILE_INVALID_INFO","features":[3]},{"name":"ERROR_DIF_VOLATILE_NOT_ALLOWED","features":[3]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[3]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[3]},{"name":"ERROR_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[3]},{"name":"ERROR_DIRECTORY","features":[3]},{"name":"ERROR_DIRECTORY_NOT_RM","features":[3]},{"name":"ERROR_DIRECTORY_NOT_SUPPORTED","features":[3]},{"name":"ERROR_DIRECT_ACCESS_HANDLE","features":[3]},{"name":"ERROR_DIR_EFS_DISALLOWED","features":[3]},{"name":"ERROR_DIR_NOT_EMPTY","features":[3]},{"name":"ERROR_DIR_NOT_ROOT","features":[3]},{"name":"ERROR_DISCARDED","features":[3]},{"name":"ERROR_DISK_CHANGE","features":[3]},{"name":"ERROR_DISK_CORRUPT","features":[3]},{"name":"ERROR_DISK_FULL","features":[3]},{"name":"ERROR_DISK_NOT_CSV_CAPABLE","features":[3]},{"name":"ERROR_DISK_OPERATION_FAILED","features":[3]},{"name":"ERROR_DISK_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_DISK_RECALIBRATE_FAILED","features":[3]},{"name":"ERROR_DISK_REPAIR_DISABLED","features":[3]},{"name":"ERROR_DISK_REPAIR_REDIRECTED","features":[3]},{"name":"ERROR_DISK_REPAIR_UNSUCCESSFUL","features":[3]},{"name":"ERROR_DISK_RESET_FAILED","features":[3]},{"name":"ERROR_DISK_RESOURCES_EXHAUSTED","features":[3]},{"name":"ERROR_DISK_TOO_FRAGMENTED","features":[3]},{"name":"ERROR_DI_BAD_PATH","features":[3]},{"name":"ERROR_DI_DONT_INSTALL","features":[3]},{"name":"ERROR_DI_DO_DEFAULT","features":[3]},{"name":"ERROR_DI_FUNCTION_OBSOLETE","features":[3]},{"name":"ERROR_DI_NOFILECOPY","features":[3]},{"name":"ERROR_DI_POSTPROCESSING_REQUIRED","features":[3]},{"name":"ERROR_DLL_INIT_FAILED","features":[3]},{"name":"ERROR_DLL_INIT_FAILED_LOGOFF","features":[3]},{"name":"ERROR_DLL_MIGHT_BE_INCOMPATIBLE","features":[3]},{"name":"ERROR_DLL_MIGHT_BE_INSECURE","features":[3]},{"name":"ERROR_DLL_NOT_FOUND","features":[3]},{"name":"ERROR_DLP_POLICY_DENIES_OPERATION","features":[3]},{"name":"ERROR_DLP_POLICY_SILENTLY_FAIL","features":[3]},{"name":"ERROR_DLP_POLICY_WARNS_AGAINST_OPERATION","features":[3]},{"name":"ERROR_DM_OPERATION_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DOMAIN_CONTROLLER_EXISTS","features":[3]},{"name":"ERROR_DOMAIN_CONTROLLER_NOT_FOUND","features":[3]},{"name":"ERROR_DOMAIN_CTRLR_CONFIG_ERROR","features":[3]},{"name":"ERROR_DOMAIN_EXISTS","features":[3]},{"name":"ERROR_DOMAIN_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION","features":[3]},{"name":"ERROR_DOMAIN_TRUST_INCONSISTENT","features":[3]},{"name":"ERROR_DOWNGRADE_DETECTED","features":[3]},{"name":"ERROR_DPL_NOT_SUPPORTED_FOR_USER","features":[3]},{"name":"ERROR_DRIVERS_LEAKING_LOCKED_PAGES","features":[3]},{"name":"ERROR_DRIVER_BLOCKED","features":[3]},{"name":"ERROR_DRIVER_CANCEL_TIMEOUT","features":[3]},{"name":"ERROR_DRIVER_DATABASE_ERROR","features":[3]},{"name":"ERROR_DRIVER_FAILED_PRIOR_UNLOAD","features":[3]},{"name":"ERROR_DRIVER_FAILED_SLEEP","features":[3]},{"name":"ERROR_DRIVER_INSTALL_BLOCKED","features":[3]},{"name":"ERROR_DRIVER_NONNATIVE","features":[3]},{"name":"ERROR_DRIVER_PROCESS_TERMINATED","features":[3]},{"name":"ERROR_DRIVER_STORE_ADD_FAILED","features":[3]},{"name":"ERROR_DRIVER_STORE_DELETE_FAILED","features":[3]},{"name":"ERROR_DRIVE_LOCKED","features":[3]},{"name":"ERROR_DRIVE_MEDIA_MISMATCH","features":[3]},{"name":"ERROR_DS_ADD_REPLICA_INHIBITED","features":[3]},{"name":"ERROR_DS_ADMIN_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DS_AFFECTS_MULTIPLE_DSAS","features":[3]},{"name":"ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[3]},{"name":"ERROR_DS_ALIASED_OBJ_MISSING","features":[3]},{"name":"ERROR_DS_ALIAS_DEREF_PROBLEM","features":[3]},{"name":"ERROR_DS_ALIAS_POINTS_TO_ALIAS","features":[3]},{"name":"ERROR_DS_ALIAS_PROBLEM","features":[3]},{"name":"ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[3]},{"name":"ERROR_DS_ATTRIBUTE_OWNED_BY_SAM","features":[3]},{"name":"ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[3]},{"name":"ERROR_DS_ATT_ALREADY_EXISTS","features":[3]},{"name":"ERROR_DS_ATT_IS_NOT_ON_OBJ","features":[3]},{"name":"ERROR_DS_ATT_NOT_DEF_FOR_CLASS","features":[3]},{"name":"ERROR_DS_ATT_NOT_DEF_IN_SCHEMA","features":[3]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_ID","features":[3]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_SYNTAX","features":[3]},{"name":"ERROR_DS_ATT_VAL_ALREADY_EXISTS","features":[3]},{"name":"ERROR_DS_AUDIT_FAILURE","features":[3]},{"name":"ERROR_DS_AUTHORIZATION_FAILED","features":[3]},{"name":"ERROR_DS_AUTH_METHOD_NOT_SUPPORTED","features":[3]},{"name":"ERROR_DS_AUTH_UNKNOWN","features":[3]},{"name":"ERROR_DS_AUX_CLS_TEST_FAIL","features":[3]},{"name":"ERROR_DS_BACKLINK_WITHOUT_LINK","features":[3]},{"name":"ERROR_DS_BAD_ATT_SCHEMA_SYNTAX","features":[3]},{"name":"ERROR_DS_BAD_HIERARCHY_FILE","features":[3]},{"name":"ERROR_DS_BAD_INSTANCE_TYPE","features":[3]},{"name":"ERROR_DS_BAD_NAME_SYNTAX","features":[3]},{"name":"ERROR_DS_BAD_RDN_ATT_ID_SYNTAX","features":[3]},{"name":"ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED","features":[3]},{"name":"ERROR_DS_BUSY","features":[3]},{"name":"ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD","features":[3]},{"name":"ERROR_DS_CANT_ADD_ATT_VALUES","features":[3]},{"name":"ERROR_DS_CANT_ADD_SYSTEM_ONLY","features":[3]},{"name":"ERROR_DS_CANT_ADD_TO_GC","features":[3]},{"name":"ERROR_DS_CANT_CACHE_ATT","features":[3]},{"name":"ERROR_DS_CANT_CACHE_CLASS","features":[3]},{"name":"ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC","features":[3]},{"name":"ERROR_DS_CANT_CREATE_UNDER_SCHEMA","features":[3]},{"name":"ERROR_DS_CANT_DELETE","features":[3]},{"name":"ERROR_DS_CANT_DELETE_DSA_OBJ","features":[3]},{"name":"ERROR_DS_CANT_DEL_MASTER_CROSSREF","features":[3]},{"name":"ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC","features":[3]},{"name":"ERROR_DS_CANT_DEREF_ALIAS","features":[3]},{"name":"ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN","features":[3]},{"name":"ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF","features":[3]},{"name":"ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN","features":[3]},{"name":"ERROR_DS_CANT_FIND_DSA_OBJ","features":[3]},{"name":"ERROR_DS_CANT_FIND_EXPECTED_NC","features":[3]},{"name":"ERROR_DS_CANT_FIND_NC_IN_CACHE","features":[3]},{"name":"ERROR_DS_CANT_MIX_MASTER_AND_REPS","features":[3]},{"name":"ERROR_DS_CANT_MOD_OBJ_CLASS","features":[3]},{"name":"ERROR_DS_CANT_MOD_PRIMARYGROUPID","features":[3]},{"name":"ERROR_DS_CANT_MOD_SYSTEM_ONLY","features":[3]},{"name":"ERROR_DS_CANT_MOVE_ACCOUNT_GROUP","features":[3]},{"name":"ERROR_DS_CANT_MOVE_APP_BASIC_GROUP","features":[3]},{"name":"ERROR_DS_CANT_MOVE_APP_QUERY_GROUP","features":[3]},{"name":"ERROR_DS_CANT_MOVE_DELETED_OBJECT","features":[3]},{"name":"ERROR_DS_CANT_MOVE_RESOURCE_GROUP","features":[3]},{"name":"ERROR_DS_CANT_ON_NON_LEAF","features":[3]},{"name":"ERROR_DS_CANT_ON_RDN","features":[3]},{"name":"ERROR_DS_CANT_REMOVE_ATT_CACHE","features":[3]},{"name":"ERROR_DS_CANT_REMOVE_CLASS_CACHE","features":[3]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT","features":[3]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT_VAL","features":[3]},{"name":"ERROR_DS_CANT_REPLACE_HIDDEN_REC","features":[3]},{"name":"ERROR_DS_CANT_RETRIEVE_ATTS","features":[3]},{"name":"ERROR_DS_CANT_RETRIEVE_CHILD","features":[3]},{"name":"ERROR_DS_CANT_RETRIEVE_DN","features":[3]},{"name":"ERROR_DS_CANT_RETRIEVE_INSTANCE","features":[3]},{"name":"ERROR_DS_CANT_RETRIEVE_SD","features":[3]},{"name":"ERROR_DS_CANT_START","features":[3]},{"name":"ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ","features":[3]},{"name":"ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS","features":[3]},{"name":"ERROR_DS_CHILDREN_EXIST","features":[3]},{"name":"ERROR_DS_CLASS_MUST_BE_CONCRETE","features":[3]},{"name":"ERROR_DS_CLASS_NOT_DSA","features":[3]},{"name":"ERROR_DS_CLIENT_LOOP","features":[3]},{"name":"ERROR_DS_CODE_INCONSISTENCY","features":[3]},{"name":"ERROR_DS_COMPARE_FALSE","features":[3]},{"name":"ERROR_DS_COMPARE_TRUE","features":[3]},{"name":"ERROR_DS_CONFIDENTIALITY_REQUIRED","features":[3]},{"name":"ERROR_DS_CONFIG_PARAM_MISSING","features":[3]},{"name":"ERROR_DS_CONSTRAINT_VIOLATION","features":[3]},{"name":"ERROR_DS_CONSTRUCTED_ATT_MOD","features":[3]},{"name":"ERROR_DS_CONTROL_NOT_FOUND","features":[3]},{"name":"ERROR_DS_COULDNT_CONTACT_FSMO","features":[3]},{"name":"ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE","features":[3]},{"name":"ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE","features":[3]},{"name":"ERROR_DS_COULDNT_UPDATE_SPNS","features":[3]},{"name":"ERROR_DS_COUNTING_AB_INDICES_FAILED","features":[3]},{"name":"ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD","features":[3]},{"name":"ERROR_DS_CROSS_DOM_MOVE_ERROR","features":[3]},{"name":"ERROR_DS_CROSS_NC_DN_RENAME","features":[3]},{"name":"ERROR_DS_CROSS_REF_BUSY","features":[3]},{"name":"ERROR_DS_CROSS_REF_EXISTS","features":[3]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE","features":[3]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2","features":[3]},{"name":"ERROR_DS_DATABASE_ERROR","features":[3]},{"name":"ERROR_DS_DECODING_ERROR","features":[3]},{"name":"ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED","features":[3]},{"name":"ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST","features":[3]},{"name":"ERROR_DS_DIFFERENT_REPL_EPOCHS","features":[3]},{"name":"ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER","features":[3]},{"name":"ERROR_DS_DISALLOWED_NC_REDIRECT","features":[3]},{"name":"ERROR_DS_DNS_LOOKUP_FAILURE","features":[3]},{"name":"ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[3]},{"name":"ERROR_DS_DOMAIN_RENAME_IN_PROGRESS","features":[3]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_HIGH","features":[3]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_LOW","features":[3]},{"name":"ERROR_DS_DRA_ABANDON_SYNC","features":[3]},{"name":"ERROR_DS_DRA_ACCESS_DENIED","features":[3]},{"name":"ERROR_DS_DRA_BAD_DN","features":[3]},{"name":"ERROR_DS_DRA_BAD_INSTANCE_TYPE","features":[3]},{"name":"ERROR_DS_DRA_BAD_NC","features":[3]},{"name":"ERROR_DS_DRA_BUSY","features":[3]},{"name":"ERROR_DS_DRA_CONNECTION_FAILED","features":[3]},{"name":"ERROR_DS_DRA_CORRUPT_UTD_VECTOR","features":[3]},{"name":"ERROR_DS_DRA_DB_ERROR","features":[3]},{"name":"ERROR_DS_DRA_DN_EXISTS","features":[3]},{"name":"ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT","features":[3]},{"name":"ERROR_DS_DRA_EXTN_CONNECTION_FAILED","features":[3]},{"name":"ERROR_DS_DRA_GENERIC","features":[3]},{"name":"ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET","features":[3]},{"name":"ERROR_DS_DRA_INCONSISTENT_DIT","features":[3]},{"name":"ERROR_DS_DRA_INTERNAL_ERROR","features":[3]},{"name":"ERROR_DS_DRA_INVALID_PARAMETER","features":[3]},{"name":"ERROR_DS_DRA_MAIL_PROBLEM","features":[3]},{"name":"ERROR_DS_DRA_MISSING_KRBTGT_SECRET","features":[3]},{"name":"ERROR_DS_DRA_MISSING_PARENT","features":[3]},{"name":"ERROR_DS_DRA_NAME_COLLISION","features":[3]},{"name":"ERROR_DS_DRA_NOT_SUPPORTED","features":[3]},{"name":"ERROR_DS_DRA_NO_REPLICA","features":[3]},{"name":"ERROR_DS_DRA_OBJ_IS_REP_SOURCE","features":[3]},{"name":"ERROR_DS_DRA_OBJ_NC_MISMATCH","features":[3]},{"name":"ERROR_DS_DRA_OUT_OF_MEM","features":[3]},{"name":"ERROR_DS_DRA_OUT_SCHEDULE_WINDOW","features":[3]},{"name":"ERROR_DS_DRA_PREEMPTED","features":[3]},{"name":"ERROR_DS_DRA_RECYCLED_TARGET","features":[3]},{"name":"ERROR_DS_DRA_REF_ALREADY_EXISTS","features":[3]},{"name":"ERROR_DS_DRA_REF_NOT_FOUND","features":[3]},{"name":"ERROR_DS_DRA_REPL_PENDING","features":[3]},{"name":"ERROR_DS_DRA_RPC_CANCELLED","features":[3]},{"name":"ERROR_DS_DRA_SCHEMA_CONFLICT","features":[3]},{"name":"ERROR_DS_DRA_SCHEMA_INFO_SHIP","features":[3]},{"name":"ERROR_DS_DRA_SCHEMA_MISMATCH","features":[3]},{"name":"ERROR_DS_DRA_SECRETS_DENIED","features":[3]},{"name":"ERROR_DS_DRA_SHUTDOWN","features":[3]},{"name":"ERROR_DS_DRA_SINK_DISABLED","features":[3]},{"name":"ERROR_DS_DRA_SOURCE_DISABLED","features":[3]},{"name":"ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA","features":[3]},{"name":"ERROR_DS_DRA_SOURCE_REINSTALLED","features":[3]},{"name":"ERROR_DS_DRS_EXTENSIONS_CHANGED","features":[3]},{"name":"ERROR_DS_DSA_MUST_BE_INT_MASTER","features":[3]},{"name":"ERROR_DS_DST_DOMAIN_NOT_NATIVE","features":[3]},{"name":"ERROR_DS_DST_NC_MISMATCH","features":[3]},{"name":"ERROR_DS_DS_REQUIRED","features":[3]},{"name":"ERROR_DS_DUPLICATE_ID_FOUND","features":[3]},{"name":"ERROR_DS_DUP_LDAP_DISPLAY_NAME","features":[3]},{"name":"ERROR_DS_DUP_LINK_ID","features":[3]},{"name":"ERROR_DS_DUP_MAPI_ID","features":[3]},{"name":"ERROR_DS_DUP_MSDS_INTID","features":[3]},{"name":"ERROR_DS_DUP_OID","features":[3]},{"name":"ERROR_DS_DUP_RDN","features":[3]},{"name":"ERROR_DS_DUP_SCHEMA_ID_GUID","features":[3]},{"name":"ERROR_DS_ENCODING_ERROR","features":[3]},{"name":"ERROR_DS_EPOCH_MISMATCH","features":[3]},{"name":"ERROR_DS_EXISTING_AD_CHILD_NC","features":[3]},{"name":"ERROR_DS_EXISTS_IN_AUX_CLS","features":[3]},{"name":"ERROR_DS_EXISTS_IN_MAY_HAVE","features":[3]},{"name":"ERROR_DS_EXISTS_IN_MUST_HAVE","features":[3]},{"name":"ERROR_DS_EXISTS_IN_POSS_SUP","features":[3]},{"name":"ERROR_DS_EXISTS_IN_RDNATTID","features":[3]},{"name":"ERROR_DS_EXISTS_IN_SUB_CLS","features":[3]},{"name":"ERROR_DS_FILTER_UNKNOWN","features":[3]},{"name":"ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS","features":[3]},{"name":"ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[3]},{"name":"ERROR_DS_FOREST_VERSION_TOO_HIGH","features":[3]},{"name":"ERROR_DS_FOREST_VERSION_TOO_LOW","features":[3]},{"name":"ERROR_DS_GCVERIFY_ERROR","features":[3]},{"name":"ERROR_DS_GC_NOT_AVAILABLE","features":[3]},{"name":"ERROR_DS_GC_REQUIRED","features":[3]},{"name":"ERROR_DS_GENERIC_ERROR","features":[3]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[3]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[3]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[3]},{"name":"ERROR_DS_GOVERNSID_MISSING","features":[3]},{"name":"ERROR_DS_GROUP_CONVERSION_ERROR","features":[3]},{"name":"ERROR_DS_HAVE_PRIMARY_MEMBERS","features":[3]},{"name":"ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED","features":[3]},{"name":"ERROR_DS_HIERARCHY_TABLE_TOO_DEEP","features":[3]},{"name":"ERROR_DS_HIGH_ADLDS_FFL","features":[3]},{"name":"ERROR_DS_HIGH_DSA_VERSION","features":[3]},{"name":"ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD","features":[3]},{"name":"ERROR_DS_ILLEGAL_MOD_OPERATION","features":[3]},{"name":"ERROR_DS_ILLEGAL_SUPERIOR","features":[3]},{"name":"ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION","features":[3]},{"name":"ERROR_DS_INAPPROPRIATE_AUTH","features":[3]},{"name":"ERROR_DS_INAPPROPRIATE_MATCHING","features":[3]},{"name":"ERROR_DS_INCOMPATIBLE_CONTROLS_USED","features":[3]},{"name":"ERROR_DS_INCOMPATIBLE_VERSION","features":[3]},{"name":"ERROR_DS_INCORRECT_ROLE_OWNER","features":[3]},{"name":"ERROR_DS_INIT_FAILURE","features":[3]},{"name":"ERROR_DS_INIT_FAILURE_CONSOLE","features":[3]},{"name":"ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE","features":[3]},{"name":"ERROR_DS_INSTALL_NO_SRC_SCH_VERSION","features":[3]},{"name":"ERROR_DS_INSTALL_SCHEMA_MISMATCH","features":[3]},{"name":"ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT","features":[3]},{"name":"ERROR_DS_INSUFF_ACCESS_RIGHTS","features":[3]},{"name":"ERROR_DS_INTERNAL_FAILURE","features":[3]},{"name":"ERROR_DS_INVALID_ATTRIBUTE_SYNTAX","features":[3]},{"name":"ERROR_DS_INVALID_DMD","features":[3]},{"name":"ERROR_DS_INVALID_DN_SYNTAX","features":[3]},{"name":"ERROR_DS_INVALID_GROUP_TYPE","features":[3]},{"name":"ERROR_DS_INVALID_LDAP_DISPLAY_NAME","features":[3]},{"name":"ERROR_DS_INVALID_NAME_FOR_SPN","features":[3]},{"name":"ERROR_DS_INVALID_ROLE_OWNER","features":[3]},{"name":"ERROR_DS_INVALID_SCRIPT","features":[3]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG","features":[3]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE","features":[3]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_TUPLE","features":[3]},{"name":"ERROR_DS_IS_LEAF","features":[3]},{"name":"ERROR_DS_KEY_NOT_UNIQUE","features":[3]},{"name":"ERROR_DS_LDAP_SEND_QUEUE_FULL","features":[3]},{"name":"ERROR_DS_LINK_ID_NOT_AVAILABLE","features":[3]},{"name":"ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[3]},{"name":"ERROR_DS_LOCAL_ERROR","features":[3]},{"name":"ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[3]},{"name":"ERROR_DS_LOOP_DETECT","features":[3]},{"name":"ERROR_DS_LOW_ADLDS_FFL","features":[3]},{"name":"ERROR_DS_LOW_DSA_VERSION","features":[3]},{"name":"ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4","features":[3]},{"name":"ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_DS_MAPI_ID_NOT_AVAILABLE","features":[3]},{"name":"ERROR_DS_MASTERDSA_REQUIRED","features":[3]},{"name":"ERROR_DS_MAX_OBJ_SIZE_EXCEEDED","features":[3]},{"name":"ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[3]},{"name":"ERROR_DS_MISSING_EXPECTED_ATT","features":[3]},{"name":"ERROR_DS_MISSING_FOREST_TRUST","features":[3]},{"name":"ERROR_DS_MISSING_FSMO_SETTINGS","features":[3]},{"name":"ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER","features":[3]},{"name":"ERROR_DS_MISSING_REQUIRED_ATT","features":[3]},{"name":"ERROR_DS_MISSING_SUPREF","features":[3]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG","features":[3]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE","features":[3]},{"name":"ERROR_DS_MODIFYDN_WRONG_GRANDPARENT","features":[3]},{"name":"ERROR_DS_MUST_BE_RUN_ON_DST_DC","features":[3]},{"name":"ERROR_DS_NAME_ERROR_DOMAIN_ONLY","features":[3]},{"name":"ERROR_DS_NAME_ERROR_NOT_FOUND","features":[3]},{"name":"ERROR_DS_NAME_ERROR_NOT_UNIQUE","features":[3]},{"name":"ERROR_DS_NAME_ERROR_NO_MAPPING","features":[3]},{"name":"ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[3]},{"name":"ERROR_DS_NAME_ERROR_RESOLVING","features":[3]},{"name":"ERROR_DS_NAME_ERROR_TRUST_REFERRAL","features":[3]},{"name":"ERROR_DS_NAME_NOT_UNIQUE","features":[3]},{"name":"ERROR_DS_NAME_REFERENCE_INVALID","features":[3]},{"name":"ERROR_DS_NAME_TOO_LONG","features":[3]},{"name":"ERROR_DS_NAME_TOO_MANY_PARTS","features":[3]},{"name":"ERROR_DS_NAME_TYPE_UNKNOWN","features":[3]},{"name":"ERROR_DS_NAME_UNPARSEABLE","features":[3]},{"name":"ERROR_DS_NAME_VALUE_TOO_LONG","features":[3]},{"name":"ERROR_DS_NAMING_MASTER_GC","features":[3]},{"name":"ERROR_DS_NAMING_VIOLATION","features":[3]},{"name":"ERROR_DS_NCNAME_MISSING_CR_REF","features":[3]},{"name":"ERROR_DS_NCNAME_MUST_BE_NC","features":[3]},{"name":"ERROR_DS_NC_MUST_HAVE_NC_PARENT","features":[3]},{"name":"ERROR_DS_NC_STILL_HAS_DSAS","features":[3]},{"name":"ERROR_DS_NONEXISTENT_MAY_HAVE","features":[3]},{"name":"ERROR_DS_NONEXISTENT_MUST_HAVE","features":[3]},{"name":"ERROR_DS_NONEXISTENT_POSS_SUP","features":[3]},{"name":"ERROR_DS_NONSAFE_SCHEMA_CHANGE","features":[3]},{"name":"ERROR_DS_NON_ASQ_SEARCH","features":[3]},{"name":"ERROR_DS_NON_BASE_SEARCH","features":[3]},{"name":"ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX","features":[3]},{"name":"ERROR_DS_NOT_AN_OBJECT","features":[3]},{"name":"ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC","features":[3]},{"name":"ERROR_DS_NOT_CLOSEST","features":[3]},{"name":"ERROR_DS_NOT_INSTALLED","features":[3]},{"name":"ERROR_DS_NOT_ON_BACKLINK","features":[3]},{"name":"ERROR_DS_NOT_SUPPORTED","features":[3]},{"name":"ERROR_DS_NOT_SUPPORTED_SORT_ORDER","features":[3]},{"name":"ERROR_DS_NO_ATTRIBUTE_OR_VALUE","features":[3]},{"name":"ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN","features":[3]},{"name":"ERROR_DS_NO_CHAINED_EVAL","features":[3]},{"name":"ERROR_DS_NO_CHAINING","features":[3]},{"name":"ERROR_DS_NO_CHECKPOINT_WITH_PDC","features":[3]},{"name":"ERROR_DS_NO_CROSSREF_FOR_NC","features":[3]},{"name":"ERROR_DS_NO_DELETED_NAME","features":[3]},{"name":"ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[3]},{"name":"ERROR_DS_NO_MORE_RIDS","features":[3]},{"name":"ERROR_DS_NO_MSDS_INTID","features":[3]},{"name":"ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[3]},{"name":"ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[3]},{"name":"ERROR_DS_NO_NTDSA_OBJECT","features":[3]},{"name":"ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC","features":[3]},{"name":"ERROR_DS_NO_PARENT_OBJECT","features":[3]},{"name":"ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION","features":[3]},{"name":"ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA","features":[3]},{"name":"ERROR_DS_NO_REF_DOMAIN","features":[3]},{"name":"ERROR_DS_NO_REQUESTED_ATTS_FOUND","features":[3]},{"name":"ERROR_DS_NO_RESULTS_RETURNED","features":[3]},{"name":"ERROR_DS_NO_RIDS_ALLOCATED","features":[3]},{"name":"ERROR_DS_NO_SERVER_OBJECT","features":[3]},{"name":"ERROR_DS_NO_SUCH_OBJECT","features":[3]},{"name":"ERROR_DS_NO_TREE_DELETE_ABOVE_NC","features":[3]},{"name":"ERROR_DS_NTDSCRIPT_PROCESS_ERROR","features":[3]},{"name":"ERROR_DS_NTDSCRIPT_SYNTAX_ERROR","features":[3]},{"name":"ERROR_DS_OBJECT_BEING_REMOVED","features":[3]},{"name":"ERROR_DS_OBJECT_CLASS_REQUIRED","features":[3]},{"name":"ERROR_DS_OBJECT_RESULTS_TOO_LARGE","features":[3]},{"name":"ERROR_DS_OBJ_CLASS_NOT_DEFINED","features":[3]},{"name":"ERROR_DS_OBJ_CLASS_NOT_SUBCLASS","features":[3]},{"name":"ERROR_DS_OBJ_CLASS_VIOLATION","features":[3]},{"name":"ERROR_DS_OBJ_GUID_EXISTS","features":[3]},{"name":"ERROR_DS_OBJ_NOT_FOUND","features":[3]},{"name":"ERROR_DS_OBJ_STRING_NAME_EXISTS","features":[3]},{"name":"ERROR_DS_OBJ_TOO_LARGE","features":[3]},{"name":"ERROR_DS_OFFSET_RANGE_ERROR","features":[3]},{"name":"ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[3]},{"name":"ERROR_DS_OID_NOT_FOUND","features":[3]},{"name":"ERROR_DS_OPERATIONS_ERROR","features":[3]},{"name":"ERROR_DS_OUT_OF_SCOPE","features":[3]},{"name":"ERROR_DS_OUT_OF_VERSION_STORE","features":[3]},{"name":"ERROR_DS_PARAM_ERROR","features":[3]},{"name":"ERROR_DS_PARENT_IS_AN_ALIAS","features":[3]},{"name":"ERROR_DS_PDC_OPERATION_IN_PROGRESS","features":[3]},{"name":"ERROR_DS_PER_ATTRIBUTE_AUTHZ_FAILED_DURING_ADD","features":[3]},{"name":"ERROR_DS_POLICY_NOT_KNOWN","features":[3]},{"name":"ERROR_DS_PROTOCOL_ERROR","features":[3]},{"name":"ERROR_DS_RANGE_CONSTRAINT","features":[3]},{"name":"ERROR_DS_RDN_DOESNT_MATCH_SCHEMA","features":[3]},{"name":"ERROR_DS_RECALCSCHEMA_FAILED","features":[3]},{"name":"ERROR_DS_REFERRAL","features":[3]},{"name":"ERROR_DS_REFERRAL_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DS_REFUSING_FSMO_ROLES","features":[3]},{"name":"ERROR_DS_REMOTE_CROSSREF_OP_FAILED","features":[3]},{"name":"ERROR_DS_REPLICATOR_ONLY","features":[3]},{"name":"ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR","features":[3]},{"name":"ERROR_DS_REPL_LIFETIME_EXCEEDED","features":[3]},{"name":"ERROR_DS_RESERVED_LINK_ID","features":[3]},{"name":"ERROR_DS_RESERVED_MAPI_ID","features":[3]},{"name":"ERROR_DS_RIDMGR_DISABLED","features":[3]},{"name":"ERROR_DS_RIDMGR_INIT_ERROR","features":[3]},{"name":"ERROR_DS_ROLE_NOT_VERIFIED","features":[3]},{"name":"ERROR_DS_ROOT_CANT_BE_SUBREF","features":[3]},{"name":"ERROR_DS_ROOT_MUST_BE_NC","features":[3]},{"name":"ERROR_DS_ROOT_REQUIRES_CLASS_TOP","features":[3]},{"name":"ERROR_DS_SAM_INIT_FAILURE","features":[3]},{"name":"ERROR_DS_SAM_INIT_FAILURE_CONSOLE","features":[3]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY","features":[3]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD","features":[3]},{"name":"ERROR_DS_SCHEMA_ALLOC_FAILED","features":[3]},{"name":"ERROR_DS_SCHEMA_NOT_LOADED","features":[3]},{"name":"ERROR_DS_SCHEMA_UPDATE_DISALLOWED","features":[3]},{"name":"ERROR_DS_SECURITY_CHECKING_ERROR","features":[3]},{"name":"ERROR_DS_SECURITY_ILLEGAL_MODIFY","features":[3]},{"name":"ERROR_DS_SEC_DESC_INVALID","features":[3]},{"name":"ERROR_DS_SEC_DESC_TOO_SHORT","features":[3]},{"name":"ERROR_DS_SEMANTIC_ATT_TEST","features":[3]},{"name":"ERROR_DS_SENSITIVE_GROUP_VIOLATION","features":[3]},{"name":"ERROR_DS_SERVER_DOWN","features":[3]},{"name":"ERROR_DS_SHUTTING_DOWN","features":[3]},{"name":"ERROR_DS_SINGLE_USER_MODE_FAILED","features":[3]},{"name":"ERROR_DS_SINGLE_VALUE_CONSTRAINT","features":[3]},{"name":"ERROR_DS_SIZELIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DS_SORT_CONTROL_MISSING","features":[3]},{"name":"ERROR_DS_SOURCE_AUDITING_NOT_ENABLED","features":[3]},{"name":"ERROR_DS_SOURCE_DOMAIN_IN_FOREST","features":[3]},{"name":"ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[3]},{"name":"ERROR_DS_SRC_AND_DST_NC_IDENTICAL","features":[3]},{"name":"ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH","features":[3]},{"name":"ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER","features":[3]},{"name":"ERROR_DS_SRC_GUID_MISMATCH","features":[3]},{"name":"ERROR_DS_SRC_NAME_MISMATCH","features":[3]},{"name":"ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER","features":[3]},{"name":"ERROR_DS_SRC_SID_EXISTS_IN_FOREST","features":[3]},{"name":"ERROR_DS_STRING_SD_CONVERSION_FAILED","features":[3]},{"name":"ERROR_DS_STRONG_AUTH_REQUIRED","features":[3]},{"name":"ERROR_DS_SUBREF_MUST_HAVE_PARENT","features":[3]},{"name":"ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD","features":[3]},{"name":"ERROR_DS_SUB_CLS_TEST_FAIL","features":[3]},{"name":"ERROR_DS_SYNTAX_MISMATCH","features":[3]},{"name":"ERROR_DS_THREAD_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DS_TIMELIMIT_EXCEEDED","features":[3]},{"name":"ERROR_DS_TREE_DELETE_NOT_FINISHED","features":[3]},{"name":"ERROR_DS_UNABLE_TO_SURRENDER_ROLES","features":[3]},{"name":"ERROR_DS_UNAVAILABLE","features":[3]},{"name":"ERROR_DS_UNAVAILABLE_CRIT_EXTENSION","features":[3]},{"name":"ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED","features":[3]},{"name":"ERROR_DS_UNICODEPWD_NOT_IN_QUOTES","features":[3]},{"name":"ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[3]},{"name":"ERROR_DS_UNKNOWN_ERROR","features":[3]},{"name":"ERROR_DS_UNKNOWN_OPERATION","features":[3]},{"name":"ERROR_DS_UNWILLING_TO_PERFORM","features":[3]},{"name":"ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[3]},{"name":"ERROR_DS_USER_BUFFER_TO_SMALL","features":[3]},{"name":"ERROR_DS_VALUE_KEY_NOT_UNIQUE","features":[3]},{"name":"ERROR_DS_VERSION_CHECK_FAILURE","features":[3]},{"name":"ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL","features":[3]},{"name":"ERROR_DS_WRONG_LINKED_ATT_SYNTAX","features":[3]},{"name":"ERROR_DS_WRONG_OM_OBJ_CLASS","features":[3]},{"name":"ERROR_DUPLICATE_FOUND","features":[3]},{"name":"ERROR_DUPLICATE_PRIVILEGES","features":[3]},{"name":"ERROR_DUPLICATE_SERVICE_NAME","features":[3]},{"name":"ERROR_DUPLICATE_TAG","features":[3]},{"name":"ERROR_DUP_DOMAINNAME","features":[3]},{"name":"ERROR_DUP_NAME","features":[3]},{"name":"ERROR_DYNAMIC_CODE_BLOCKED","features":[3]},{"name":"ERROR_DYNLINK_FROM_INVALID_RING","features":[3]},{"name":"ERROR_EAS_DIDNT_FIT","features":[3]},{"name":"ERROR_EAS_NOT_SUPPORTED","features":[3]},{"name":"ERROR_EA_ACCESS_DENIED","features":[3]},{"name":"ERROR_EA_FILE_CORRUPT","features":[3]},{"name":"ERROR_EA_LIST_INCONSISTENT","features":[3]},{"name":"ERROR_EA_TABLE_FULL","features":[3]},{"name":"ERROR_EC_CIRCULAR_FORWARDING","features":[3]},{"name":"ERROR_EC_CREDSTORE_FULL","features":[3]},{"name":"ERROR_EC_CRED_NOT_FOUND","features":[3]},{"name":"ERROR_EC_LOG_DISABLED","features":[3]},{"name":"ERROR_EC_NO_ACTIVE_CHANNEL","features":[3]},{"name":"ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE","features":[3]},{"name":"ERROR_EDP_DPL_POLICY_CANT_BE_SATISFIED","features":[3]},{"name":"ERROR_EDP_POLICY_DENIES_OPERATION","features":[3]},{"name":"ERROR_EFS_ALG_BLOB_TOO_BIG","features":[3]},{"name":"ERROR_EFS_DISABLED","features":[3]},{"name":"ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[3]},{"name":"ERROR_EFS_SERVER_NOT_TRUSTED","features":[3]},{"name":"ERROR_EFS_VERSION_NOT_SUPPORT","features":[3]},{"name":"ERROR_ELEVATION_REQUIRED","features":[3]},{"name":"ERROR_EMPTY","features":[3]},{"name":"ERROR_ENCLAVE_FAILURE","features":[3]},{"name":"ERROR_ENCLAVE_NOT_TERMINATED","features":[3]},{"name":"ERROR_ENCLAVE_VIOLATION","features":[3]},{"name":"ERROR_ENCRYPTED_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_ENCRYPTED_IO_NOT_POSSIBLE","features":[3]},{"name":"ERROR_ENCRYPTING_METADATA_DISALLOWED","features":[3]},{"name":"ERROR_ENCRYPTION_DISABLED","features":[3]},{"name":"ERROR_ENCRYPTION_FAILED","features":[3]},{"name":"ERROR_ENCRYPTION_POLICY_DENIES_OPERATION","features":[3]},{"name":"ERROR_END_OF_MEDIA","features":[3]},{"name":"ERROR_ENLISTMENT_NOT_FOUND","features":[3]},{"name":"ERROR_ENLISTMENT_NOT_SUPERIOR","features":[3]},{"name":"ERROR_ENVVAR_NOT_FOUND","features":[3]},{"name":"ERROR_EOM_OVERFLOW","features":[3]},{"name":"ERROR_ERRORS_ENCOUNTERED","features":[3]},{"name":"ERROR_EVALUATION_EXPIRATION","features":[3]},{"name":"ERROR_EVENTLOG_CANT_START","features":[3]},{"name":"ERROR_EVENTLOG_FILE_CHANGED","features":[3]},{"name":"ERROR_EVENTLOG_FILE_CORRUPT","features":[3]},{"name":"ERROR_EVENT_DONE","features":[3]},{"name":"ERROR_EVENT_PENDING","features":[3]},{"name":"ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY","features":[3]},{"name":"ERROR_EVT_CHANNEL_CANNOT_ACTIVATE","features":[3]},{"name":"ERROR_EVT_CHANNEL_NOT_FOUND","features":[3]},{"name":"ERROR_EVT_CONFIGURATION_ERROR","features":[3]},{"name":"ERROR_EVT_EVENT_DEFINITION_NOT_FOUND","features":[3]},{"name":"ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND","features":[3]},{"name":"ERROR_EVT_FILTER_ALREADYSCOPED","features":[3]},{"name":"ERROR_EVT_FILTER_INVARG","features":[3]},{"name":"ERROR_EVT_FILTER_INVTEST","features":[3]},{"name":"ERROR_EVT_FILTER_INVTYPE","features":[3]},{"name":"ERROR_EVT_FILTER_NOTELTSET","features":[3]},{"name":"ERROR_EVT_FILTER_OUT_OF_RANGE","features":[3]},{"name":"ERROR_EVT_FILTER_PARSEERR","features":[3]},{"name":"ERROR_EVT_FILTER_TOO_COMPLEX","features":[3]},{"name":"ERROR_EVT_FILTER_UNEXPECTEDTOKEN","features":[3]},{"name":"ERROR_EVT_FILTER_UNSUPPORTEDOP","features":[3]},{"name":"ERROR_EVT_INVALID_CHANNEL_PATH","features":[3]},{"name":"ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE","features":[3]},{"name":"ERROR_EVT_INVALID_EVENT_DATA","features":[3]},{"name":"ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL","features":[3]},{"name":"ERROR_EVT_INVALID_PUBLISHER_NAME","features":[3]},{"name":"ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE","features":[3]},{"name":"ERROR_EVT_INVALID_QUERY","features":[3]},{"name":"ERROR_EVT_MALFORMED_XML_TEXT","features":[3]},{"name":"ERROR_EVT_MAX_INSERTS_REACHED","features":[3]},{"name":"ERROR_EVT_MESSAGE_ID_NOT_FOUND","features":[3]},{"name":"ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND","features":[3]},{"name":"ERROR_EVT_MESSAGE_NOT_FOUND","features":[3]},{"name":"ERROR_EVT_NON_VALIDATING_MSXML","features":[3]},{"name":"ERROR_EVT_PUBLISHER_DISABLED","features":[3]},{"name":"ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND","features":[3]},{"name":"ERROR_EVT_QUERY_RESULT_INVALID_POSITION","features":[3]},{"name":"ERROR_EVT_QUERY_RESULT_STALE","features":[3]},{"name":"ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL","features":[3]},{"name":"ERROR_EVT_UNRESOLVED_PARAMETER_INSERT","features":[3]},{"name":"ERROR_EVT_UNRESOLVED_VALUE_INSERT","features":[3]},{"name":"ERROR_EVT_VERSION_TOO_NEW","features":[3]},{"name":"ERROR_EVT_VERSION_TOO_OLD","features":[3]},{"name":"ERROR_EXCEPTION_IN_RESOURCE_CALL","features":[3]},{"name":"ERROR_EXCEPTION_IN_SERVICE","features":[3]},{"name":"ERROR_EXCL_SEM_ALREADY_OWNED","features":[3]},{"name":"ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY","features":[3]},{"name":"ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY","features":[3]},{"name":"ERROR_EXE_MACHINE_TYPE_MISMATCH","features":[3]},{"name":"ERROR_EXE_MARKED_INVALID","features":[3]},{"name":"ERROR_EXPECTED_SECTION_NAME","features":[3]},{"name":"ERROR_EXPIRED_HANDLE","features":[3]},{"name":"ERROR_EXTENDED_ERROR","features":[3]},{"name":"ERROR_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[3]},{"name":"ERROR_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[3]},{"name":"ERROR_EXTRANEOUS_INFORMATION","features":[3]},{"name":"ERROR_FAILED_DRIVER_ENTRY","features":[3]},{"name":"ERROR_FAILED_SERVICE_CONTROLLER_CONNECT","features":[3]},{"name":"ERROR_FAIL_FAST_EXCEPTION","features":[3]},{"name":"ERROR_FAIL_I24","features":[3]},{"name":"ERROR_FAIL_NOACTION_REBOOT","features":[3]},{"name":"ERROR_FAIL_REBOOT_INITIATED","features":[3]},{"name":"ERROR_FAIL_REBOOT_REQUIRED","features":[3]},{"name":"ERROR_FAIL_RESTART","features":[3]},{"name":"ERROR_FAIL_SHUTDOWN","features":[3]},{"name":"ERROR_FATAL_APP_EXIT","features":[3]},{"name":"ERROR_FILEMARK_DETECTED","features":[3]},{"name":"ERROR_FILENAME_EXCED_RANGE","features":[3]},{"name":"ERROR_FILEQUEUE_LOCKED","features":[3]},{"name":"ERROR_FILE_CHECKED_OUT","features":[3]},{"name":"ERROR_FILE_CORRUPT","features":[3]},{"name":"ERROR_FILE_ENCRYPTED","features":[3]},{"name":"ERROR_FILE_EXISTS","features":[3]},{"name":"ERROR_FILE_HANDLE_REVOKED","features":[3]},{"name":"ERROR_FILE_HASH_NOT_IN_CATALOG","features":[3]},{"name":"ERROR_FILE_IDENTITY_NOT_PERSISTENT","features":[3]},{"name":"ERROR_FILE_INVALID","features":[3]},{"name":"ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED","features":[3]},{"name":"ERROR_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[3]},{"name":"ERROR_FILE_NOT_ENCRYPTED","features":[3]},{"name":"ERROR_FILE_NOT_FOUND","features":[3]},{"name":"ERROR_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_FILE_OFFLINE","features":[3]},{"name":"ERROR_FILE_PROTECTED_UNDER_DPL","features":[3]},{"name":"ERROR_FILE_READ_ONLY","features":[3]},{"name":"ERROR_FILE_SHARE_RESOURCE_CONFLICT","features":[3]},{"name":"ERROR_FILE_SNAP_INVALID_PARAMETER","features":[3]},{"name":"ERROR_FILE_SNAP_IN_PROGRESS","features":[3]},{"name":"ERROR_FILE_SNAP_IO_NOT_COORDINATED","features":[3]},{"name":"ERROR_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[3]},{"name":"ERROR_FILE_SNAP_UNEXPECTED_ERROR","features":[3]},{"name":"ERROR_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_FILE_SYSTEM_LIMITATION","features":[3]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[3]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[3]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[3]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[3]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[3]},{"name":"ERROR_FILE_TOO_LARGE","features":[3]},{"name":"ERROR_FIRMWARE_UPDATED","features":[3]},{"name":"ERROR_FLOATED_SECTION","features":[3]},{"name":"ERROR_FLOAT_MULTIPLE_FAULTS","features":[3]},{"name":"ERROR_FLOAT_MULTIPLE_TRAPS","features":[3]},{"name":"ERROR_FLOPPY_BAD_REGISTERS","features":[3]},{"name":"ERROR_FLOPPY_ID_MARK_NOT_FOUND","features":[3]},{"name":"ERROR_FLOPPY_UNKNOWN_ERROR","features":[3]},{"name":"ERROR_FLOPPY_VOLUME","features":[3]},{"name":"ERROR_FLOPPY_WRONG_CYLINDER","features":[3]},{"name":"ERROR_FLT_ALREADY_ENLISTED","features":[3]},{"name":"ERROR_FLT_CBDQ_DISABLED","features":[3]},{"name":"ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[3]},{"name":"ERROR_FLT_CONTEXT_ALREADY_DEFINED","features":[3]},{"name":"ERROR_FLT_CONTEXT_ALREADY_LINKED","features":[3]},{"name":"ERROR_FLT_DELETING_OBJECT","features":[3]},{"name":"ERROR_FLT_DISALLOW_FAST_IO","features":[3]},{"name":"ERROR_FLT_DO_NOT_ATTACH","features":[3]},{"name":"ERROR_FLT_DO_NOT_DETACH","features":[3]},{"name":"ERROR_FLT_DUPLICATE_ENTRY","features":[3]},{"name":"ERROR_FLT_FILTER_NOT_FOUND","features":[3]},{"name":"ERROR_FLT_FILTER_NOT_READY","features":[3]},{"name":"ERROR_FLT_INSTANCE_ALTITUDE_COLLISION","features":[3]},{"name":"ERROR_FLT_INSTANCE_NAME_COLLISION","features":[3]},{"name":"ERROR_FLT_INSTANCE_NOT_FOUND","features":[3]},{"name":"ERROR_FLT_INTERNAL_ERROR","features":[3]},{"name":"ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[3]},{"name":"ERROR_FLT_INVALID_CONTEXT_REGISTRATION","features":[3]},{"name":"ERROR_FLT_INVALID_NAME_REQUEST","features":[3]},{"name":"ERROR_FLT_IO_COMPLETE","features":[3]},{"name":"ERROR_FLT_MUST_BE_NONPAGED_POOL","features":[3]},{"name":"ERROR_FLT_NAME_CACHE_MISS","features":[3]},{"name":"ERROR_FLT_NOT_INITIALIZED","features":[3]},{"name":"ERROR_FLT_NOT_SAFE_TO_POST_OPERATION","features":[3]},{"name":"ERROR_FLT_NO_DEVICE_OBJECT","features":[3]},{"name":"ERROR_FLT_NO_HANDLER_DEFINED","features":[3]},{"name":"ERROR_FLT_NO_WAITER_FOR_REPLY","features":[3]},{"name":"ERROR_FLT_POST_OPERATION_CLEANUP","features":[3]},{"name":"ERROR_FLT_REGISTRATION_BUSY","features":[3]},{"name":"ERROR_FLT_VOLUME_ALREADY_MOUNTED","features":[3]},{"name":"ERROR_FLT_VOLUME_NOT_FOUND","features":[3]},{"name":"ERROR_FLT_WCOS_NOT_SUPPORTED","features":[3]},{"name":"ERROR_FORMS_AUTH_REQUIRED","features":[3]},{"name":"ERROR_FOUND_OUT_OF_SCOPE","features":[3]},{"name":"ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[3]},{"name":"ERROR_FS_DRIVER_REQUIRED","features":[3]},{"name":"ERROR_FS_GUID_MISMATCH","features":[3]},{"name":"ERROR_FS_METADATA_INCONSISTENT","features":[3]},{"name":"ERROR_FT_DI_SCAN_REQUIRED","features":[3]},{"name":"ERROR_FT_READ_FAILURE","features":[3]},{"name":"ERROR_FT_READ_FROM_COPY_FAILURE","features":[3]},{"name":"ERROR_FT_READ_RECOVERY_FROM_BACKUP","features":[3]},{"name":"ERROR_FT_WRITE_FAILURE","features":[3]},{"name":"ERROR_FT_WRITE_RECOVERY","features":[3]},{"name":"ERROR_FULLSCREEN_MODE","features":[3]},{"name":"ERROR_FULL_BACKUP","features":[3]},{"name":"ERROR_FUNCTION_FAILED","features":[3]},{"name":"ERROR_FUNCTION_NOT_CALLED","features":[3]},{"name":"ERROR_GDI_HANDLE_LEAK","features":[3]},{"name":"ERROR_GENERAL_SYNTAX","features":[3]},{"name":"ERROR_GENERIC_COMMAND_FAILED","features":[3]},{"name":"ERROR_GENERIC_NOT_MAPPED","features":[3]},{"name":"ERROR_GEN_FAILURE","features":[3]},{"name":"ERROR_GLOBAL_ONLY_HOOK","features":[3]},{"name":"ERROR_GPIO_CLIENT_INFORMATION_INVALID","features":[3]},{"name":"ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[3]},{"name":"ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[3]},{"name":"ERROR_GPIO_INVALID_REGISTRATION_PACKET","features":[3]},{"name":"ERROR_GPIO_OPERATION_DENIED","features":[3]},{"name":"ERROR_GPIO_VERSION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRACEFUL_DISCONNECT","features":[3]},{"name":"ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[3]},{"name":"ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[3]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[3]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[3]},{"name":"ERROR_GRAPHICS_ADAPTER_WAS_RESET","features":[3]},{"name":"ERROR_GRAPHICS_ALLOCATION_BUSY","features":[3]},{"name":"ERROR_GRAPHICS_ALLOCATION_CLOSED","features":[3]},{"name":"ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[3]},{"name":"ERROR_GRAPHICS_ALLOCATION_INVALID","features":[3]},{"name":"ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[3]},{"name":"ERROR_GRAPHICS_CANNOTCOLORCONVERT","features":[3]},{"name":"ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[3]},{"name":"ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[3]},{"name":"ERROR_GRAPHICS_CANT_LOCK_MEMORY","features":[3]},{"name":"ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[3]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[3]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[3]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[3]},{"name":"ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[3]},{"name":"ERROR_GRAPHICS_COPP_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_DATASET_IS_EMPTY","features":[3]},{"name":"ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE","features":[3]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_DATA","features":[3]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[3]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[3]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[3]},{"name":"ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[3]},{"name":"ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[3]},{"name":"ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[3]},{"name":"ERROR_GRAPHICS_DRIVER_MISMATCH","features":[3]},{"name":"ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[3]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[3]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[3]},{"name":"ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[3]},{"name":"ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[3]},{"name":"ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[3]},{"name":"ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[3]},{"name":"ERROR_GRAPHICS_I2C_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[3]},{"name":"ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[3]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[3]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[3]},{"name":"ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[3]},{"name":"ERROR_GRAPHICS_INTERNAL_ERROR","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_ACTIVE_REGION","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_CLIENT_TYPE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_COLORBASIS","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_DRIVER_MODEL","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_FREQUENCY","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_GAMMA_RAMP","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_PIXELFORMAT","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_POINTER","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_STRIDE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_TOTAL_REGION","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[3]},{"name":"ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[3]},{"name":"ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[3]},{"name":"ERROR_GRAPHICS_LEADLINK_START_DEFERRED","features":[3]},{"name":"ERROR_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[3]},{"name":"ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[3]},{"name":"ERROR_GRAPHICS_MCA_INTERNAL_ERROR","features":[3]},{"name":"ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING","features":[3]},{"name":"ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[3]},{"name":"ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION","features":[3]},{"name":"ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH","features":[3]},{"name":"ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[3]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[3]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION","features":[3]},{"name":"ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[3]},{"name":"ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[3]},{"name":"ERROR_GRAPHICS_MODE_NOT_IN_MODESET","features":[3]},{"name":"ERROR_GRAPHICS_MODE_NOT_PINNED","features":[3]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[3]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[3]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[3]},{"name":"ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[3]},{"name":"ERROR_GRAPHICS_MONITOR_NOT_CONNECTED","features":[3]},{"name":"ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[3]},{"name":"ERROR_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[3]},{"name":"ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[3]},{"name":"ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[3]},{"name":"ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[3]},{"name":"ERROR_GRAPHICS_NO_ACTIVE_VIDPN","features":[3]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[3]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[3]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[3]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[3]},{"name":"ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[3]},{"name":"ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[3]},{"name":"ERROR_GRAPHICS_NO_PREFERRED_MODE","features":[3]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[3]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[3]},{"name":"ERROR_GRAPHICS_NO_VIDEO_MEMORY","features":[3]},{"name":"ERROR_GRAPHICS_NO_VIDPNMGR","features":[3]},{"name":"ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[3]},{"name":"ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[3]},{"name":"ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[3]},{"name":"ERROR_GRAPHICS_OPM_INTERNAL_ERROR","features":[3]},{"name":"ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[3]},{"name":"ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[3]},{"name":"ERROR_GRAPHICS_OPM_INVALID_HANDLE","features":[3]},{"name":"ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[3]},{"name":"ERROR_GRAPHICS_OPM_INVALID_SRM","features":[3]},{"name":"ERROR_GRAPHICS_OPM_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST","features":[3]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[3]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[3]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[3]},{"name":"ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[3]},{"name":"ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[3]},{"name":"ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[3]},{"name":"ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[3]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[3]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[3]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS","features":[3]},{"name":"ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[3]},{"name":"ERROR_GRAPHICS_PARTIAL_DATA_POPULATED","features":[3]},{"name":"ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[3]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[3]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[3]},{"name":"ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[3]},{"name":"ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[3]},{"name":"ERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[3]},{"name":"ERROR_GRAPHICS_PRESENT_DENIED","features":[3]},{"name":"ERROR_GRAPHICS_PRESENT_INVALID_WINDOW","features":[3]},{"name":"ERROR_GRAPHICS_PRESENT_MODE_CHANGED","features":[3]},{"name":"ERROR_GRAPHICS_PRESENT_OCCLUDED","features":[3]},{"name":"ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[3]},{"name":"ERROR_GRAPHICS_PRESENT_UNOCCLUDED","features":[3]},{"name":"ERROR_GRAPHICS_PVP_HFS_FAILED","features":[3]},{"name":"ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[3]},{"name":"ERROR_GRAPHICS_RESOURCES_NOT_RELATED","features":[3]},{"name":"ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[3]},{"name":"ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[3]},{"name":"ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[3]},{"name":"ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[3]},{"name":"ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[3]},{"name":"ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[3]},{"name":"ERROR_GRAPHICS_STALE_MODESET","features":[3]},{"name":"ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[3]},{"name":"ERROR_GRAPHICS_START_DEFERRED","features":[3]},{"name":"ERROR_GRAPHICS_TARGET_ALREADY_IN_SET","features":[3]},{"name":"ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[3]},{"name":"ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[3]},{"name":"ERROR_GRAPHICS_TOO_MANY_REFERENCES","features":[3]},{"name":"ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[3]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_LATER","features":[3]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_NOW","features":[3]},{"name":"ERROR_GRAPHICS_UAB_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[3]},{"name":"ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[3]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[3]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_COMPOSITION_WINDOW_DPI_MESSAGE","features":[3]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_CREATE_SUPERWETINK_MESSAGE","features":[3]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_DESTROY_SUPERWETINK_MESSAGE","features":[3]},{"name":"ERROR_GRAPHICS_VAIL_STATE_CHANGED","features":[3]},{"name":"ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[3]},{"name":"ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[3]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[3]},{"name":"ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[3]},{"name":"ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[3]},{"name":"ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[3]},{"name":"ERROR_GROUPSET_CANT_PROVIDE","features":[3]},{"name":"ERROR_GROUPSET_NOT_AVAILABLE","features":[3]},{"name":"ERROR_GROUPSET_NOT_FOUND","features":[3]},{"name":"ERROR_GROUP_EXISTS","features":[3]},{"name":"ERROR_GROUP_NOT_AVAILABLE","features":[3]},{"name":"ERROR_GROUP_NOT_FOUND","features":[3]},{"name":"ERROR_GROUP_NOT_ONLINE","features":[3]},{"name":"ERROR_GUID_SUBSTITUTION_MADE","features":[3]},{"name":"ERROR_HANDLES_CLOSED","features":[3]},{"name":"ERROR_HANDLE_DISK_FULL","features":[3]},{"name":"ERROR_HANDLE_EOF","features":[3]},{"name":"ERROR_HANDLE_NO_LONGER_VALID","features":[3]},{"name":"ERROR_HANDLE_REVOKED","features":[3]},{"name":"ERROR_HASH_NOT_PRESENT","features":[3]},{"name":"ERROR_HASH_NOT_SUPPORTED","features":[3]},{"name":"ERROR_HAS_SYSTEM_CRITICAL_FILES","features":[3]},{"name":"ERROR_HEURISTIC_DAMAGE_POSSIBLE","features":[3]},{"name":"ERROR_HIBERNATED","features":[3]},{"name":"ERROR_HIBERNATION_FAILURE","features":[3]},{"name":"ERROR_HOOK_NEEDS_HMOD","features":[3]},{"name":"ERROR_HOOK_NOT_INSTALLED","features":[3]},{"name":"ERROR_HOOK_TYPE_NOT_ALLOWED","features":[3]},{"name":"ERROR_HOST_DOWN","features":[3]},{"name":"ERROR_HOST_NODE_NOT_AVAILABLE","features":[3]},{"name":"ERROR_HOST_NODE_NOT_GROUP_OWNER","features":[3]},{"name":"ERROR_HOST_NODE_NOT_RESOURCE_OWNER","features":[3]},{"name":"ERROR_HOST_UNREACHABLE","features":[3]},{"name":"ERROR_HOTKEY_ALREADY_REGISTERED","features":[3]},{"name":"ERROR_HOTKEY_NOT_REGISTERED","features":[3]},{"name":"ERROR_HUNG_DISPLAY_DRIVER_THREAD","features":[3]},{"name":"ERROR_HV_ACCESS_DENIED","features":[3]},{"name":"ERROR_HV_ACKNOWLEDGED","features":[3]},{"name":"ERROR_HV_CPUID_FEATURE_VALIDATION","features":[3]},{"name":"ERROR_HV_CPUID_XSAVE_FEATURE_VALIDATION","features":[3]},{"name":"ERROR_HV_DEVICE_NOT_IN_DOMAIN","features":[3]},{"name":"ERROR_HV_EVENT_BUFFER_ALREADY_FREED","features":[3]},{"name":"ERROR_HV_FEATURE_UNAVAILABLE","features":[3]},{"name":"ERROR_HV_INACTIVE","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_BUFFER","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_BUFFERS","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY","features":[3]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[3]},{"name":"ERROR_HV_INVALID_ALIGNMENT","features":[3]},{"name":"ERROR_HV_INVALID_CONNECTION_ID","features":[3]},{"name":"ERROR_HV_INVALID_CPU_GROUP_ID","features":[3]},{"name":"ERROR_HV_INVALID_CPU_GROUP_STATE","features":[3]},{"name":"ERROR_HV_INVALID_DEVICE_ID","features":[3]},{"name":"ERROR_HV_INVALID_DEVICE_STATE","features":[3]},{"name":"ERROR_HV_INVALID_HYPERCALL_CODE","features":[3]},{"name":"ERROR_HV_INVALID_HYPERCALL_INPUT","features":[3]},{"name":"ERROR_HV_INVALID_LP_INDEX","features":[3]},{"name":"ERROR_HV_INVALID_PARAMETER","features":[3]},{"name":"ERROR_HV_INVALID_PARTITION_ID","features":[3]},{"name":"ERROR_HV_INVALID_PARTITION_STATE","features":[3]},{"name":"ERROR_HV_INVALID_PORT_ID","features":[3]},{"name":"ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[3]},{"name":"ERROR_HV_INVALID_REGISTER_VALUE","features":[3]},{"name":"ERROR_HV_INVALID_SAVE_RESTORE_STATE","features":[3]},{"name":"ERROR_HV_INVALID_SYNIC_STATE","features":[3]},{"name":"ERROR_HV_INVALID_VP_INDEX","features":[3]},{"name":"ERROR_HV_INVALID_VP_STATE","features":[3]},{"name":"ERROR_HV_INVALID_VTL_STATE","features":[3]},{"name":"ERROR_HV_MSR_ACCESS_FAILED","features":[3]},{"name":"ERROR_HV_NESTED_VM_EXIT","features":[3]},{"name":"ERROR_HV_NOT_ACKNOWLEDGED","features":[3]},{"name":"ERROR_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[3]},{"name":"ERROR_HV_NOT_PRESENT","features":[3]},{"name":"ERROR_HV_NO_DATA","features":[3]},{"name":"ERROR_HV_NO_RESOURCES","features":[3]},{"name":"ERROR_HV_NX_NOT_DETECTED","features":[3]},{"name":"ERROR_HV_OBJECT_IN_USE","features":[3]},{"name":"ERROR_HV_OPERATION_DENIED","features":[3]},{"name":"ERROR_HV_OPERATION_FAILED","features":[3]},{"name":"ERROR_HV_PAGE_REQUEST_INVALID","features":[3]},{"name":"ERROR_HV_PARTITION_TOO_DEEP","features":[3]},{"name":"ERROR_HV_PENDING_PAGE_REQUESTS","features":[3]},{"name":"ERROR_HV_PROCESSOR_STARTUP_TIMEOUT","features":[3]},{"name":"ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[3]},{"name":"ERROR_HV_SMX_ENABLED","features":[3]},{"name":"ERROR_HV_UNKNOWN_PROPERTY","features":[3]},{"name":"ERROR_HWNDS_HAVE_DIFF_PARENT","features":[3]},{"name":"ERROR_ICM_NOT_ENABLED","features":[3]},{"name":"ERROR_IDLE_DISCONNECTED","features":[3]},{"name":"ERROR_IEPORT_FULL","features":[3]},{"name":"ERROR_ILLEGAL_CHARACTER","features":[3]},{"name":"ERROR_ILLEGAL_DLL_RELOCATION","features":[3]},{"name":"ERROR_ILLEGAL_ELEMENT_ADDRESS","features":[3]},{"name":"ERROR_ILLEGAL_FLOAT_CONTEXT","features":[3]},{"name":"ERROR_ILL_FORMED_PASSWORD","features":[3]},{"name":"ERROR_IMAGE_AT_DIFFERENT_BASE","features":[3]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH","features":[3]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[3]},{"name":"ERROR_IMAGE_NOT_AT_BASE","features":[3]},{"name":"ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[3]},{"name":"ERROR_IMPLEMENTATION_LIMIT","features":[3]},{"name":"ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE","features":[3]},{"name":"ERROR_INCOMPATIBLE_SERVICE_SID_TYPE","features":[3]},{"name":"ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[3]},{"name":"ERROR_INCORRECT_ACCOUNT_TYPE","features":[3]},{"name":"ERROR_INCORRECT_ADDRESS","features":[3]},{"name":"ERROR_INCORRECT_SIZE","features":[3]},{"name":"ERROR_INC_BACKUP","features":[3]},{"name":"ERROR_INDEX_ABSENT","features":[3]},{"name":"ERROR_INDEX_OUT_OF_BOUNDS","features":[3]},{"name":"ERROR_INDIGENOUS_TYPE","features":[3]},{"name":"ERROR_INDOUBT_TRANSACTIONS_EXIST","features":[3]},{"name":"ERROR_INFLOOP_IN_RELOC_CHAIN","features":[3]},{"name":"ERROR_INF_IN_USE_BY_DEVICES","features":[3]},{"name":"ERROR_INSTALL_ALREADY_RUNNING","features":[3]},{"name":"ERROR_INSTALL_CANCEL","features":[3]},{"name":"ERROR_INSTALL_DEREGISTRATION_FAILURE","features":[3]},{"name":"ERROR_INSTALL_FAILED","features":[3]},{"name":"ERROR_INSTALL_FAILURE","features":[3]},{"name":"ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING","features":[3]},{"name":"ERROR_INSTALL_FULLTRUST_HOSTRUNTIME_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[3]},{"name":"ERROR_INSTALL_INVALID_PACKAGE","features":[3]},{"name":"ERROR_INSTALL_INVALID_RELATED_SET_UPDATE","features":[3]},{"name":"ERROR_INSTALL_LANGUAGE_UNSUPPORTED","features":[3]},{"name":"ERROR_INSTALL_LOG_FAILURE","features":[3]},{"name":"ERROR_INSTALL_NETWORK_FAILURE","features":[3]},{"name":"ERROR_INSTALL_NOTUSED","features":[3]},{"name":"ERROR_INSTALL_OPEN_PACKAGE_FAILED","features":[3]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE","features":[3]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE","features":[3]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[3]},{"name":"ERROR_INSTALL_OUT_OF_DISK_SPACE","features":[3]},{"name":"ERROR_INSTALL_PACKAGE_DOWNGRADE","features":[3]},{"name":"ERROR_INSTALL_PACKAGE_INVALID","features":[3]},{"name":"ERROR_INSTALL_PACKAGE_NOT_FOUND","features":[3]},{"name":"ERROR_INSTALL_PACKAGE_OPEN_FAILED","features":[3]},{"name":"ERROR_INSTALL_PACKAGE_REJECTED","features":[3]},{"name":"ERROR_INSTALL_PACKAGE_VERSION","features":[3]},{"name":"ERROR_INSTALL_PLATFORM_UNSUPPORTED","features":[3]},{"name":"ERROR_INSTALL_POLICY_FAILURE","features":[3]},{"name":"ERROR_INSTALL_PREREQUISITE_FAILED","features":[3]},{"name":"ERROR_INSTALL_REGISTRATION_FAILURE","features":[3]},{"name":"ERROR_INSTALL_REJECTED","features":[3]},{"name":"ERROR_INSTALL_REMOTE_DISALLOWED","features":[3]},{"name":"ERROR_INSTALL_REMOTE_PROHIBITED","features":[3]},{"name":"ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED","features":[3]},{"name":"ERROR_INSTALL_RESOLVE_HOSTRUNTIME_DEPENDENCY_FAILED","features":[3]},{"name":"ERROR_INSTALL_SERVICE_FAILURE","features":[3]},{"name":"ERROR_INSTALL_SERVICE_SAFEBOOT","features":[3]},{"name":"ERROR_INSTALL_SOURCE_ABSENT","features":[3]},{"name":"ERROR_INSTALL_SUSPEND","features":[3]},{"name":"ERROR_INSTALL_TEMP_UNWRITABLE","features":[3]},{"name":"ERROR_INSTALL_TRANSFORM_FAILURE","features":[3]},{"name":"ERROR_INSTALL_TRANSFORM_REJECTED","features":[3]},{"name":"ERROR_INSTALL_UI_FAILURE","features":[3]},{"name":"ERROR_INSTALL_USEREXIT","features":[3]},{"name":"ERROR_INSTALL_VOLUME_CORRUPT","features":[3]},{"name":"ERROR_INSTALL_VOLUME_NOT_EMPTY","features":[3]},{"name":"ERROR_INSTALL_VOLUME_OFFLINE","features":[3]},{"name":"ERROR_INSTALL_WRONG_PROCESSOR_ARCHITECTURE","features":[3]},{"name":"ERROR_INSTRUCTION_MISALIGNMENT","features":[3]},{"name":"ERROR_INSUFFICIENT_BUFFER","features":[3]},{"name":"ERROR_INSUFFICIENT_LOGON_INFO","features":[3]},{"name":"ERROR_INSUFFICIENT_POWER","features":[3]},{"name":"ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[3]},{"name":"ERROR_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[3]},{"name":"ERROR_INTERFACE_ALREADY_EXISTS","features":[3]},{"name":"ERROR_INTERFACE_CONFIGURATION","features":[3]},{"name":"ERROR_INTERFACE_CONNECTED","features":[3]},{"name":"ERROR_INTERFACE_DEVICE_ACTIVE","features":[3]},{"name":"ERROR_INTERFACE_DEVICE_REMOVED","features":[3]},{"name":"ERROR_INTERFACE_DISABLED","features":[3]},{"name":"ERROR_INTERFACE_DISCONNECTED","features":[3]},{"name":"ERROR_INTERFACE_HAS_NO_DEVICES","features":[3]},{"name":"ERROR_INTERFACE_NOT_CONNECTED","features":[3]},{"name":"ERROR_INTERFACE_UNREACHABLE","features":[3]},{"name":"ERROR_INTERMIXED_KERNEL_EA_OPERATION","features":[3]},{"name":"ERROR_INTERNAL_DB_CORRUPTION","features":[3]},{"name":"ERROR_INTERNAL_DB_ERROR","features":[3]},{"name":"ERROR_INTERNAL_ERROR","features":[3]},{"name":"ERROR_INTERRUPT_STILL_CONNECTED","features":[3]},{"name":"ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[3]},{"name":"ERROR_INVALID_ACCEL_HANDLE","features":[3]},{"name":"ERROR_INVALID_ACCESS","features":[3]},{"name":"ERROR_INVALID_ACCOUNT_NAME","features":[3]},{"name":"ERROR_INVALID_ACE_CONDITION","features":[3]},{"name":"ERROR_INVALID_ACL","features":[3]},{"name":"ERROR_INVALID_ADDRESS","features":[3]},{"name":"ERROR_INVALID_ATTRIBUTE_LENGTH","features":[3]},{"name":"ERROR_INVALID_AT_INTERRUPT_TIME","features":[3]},{"name":"ERROR_INVALID_BLOCK","features":[3]},{"name":"ERROR_INVALID_BLOCK_LENGTH","features":[3]},{"name":"ERROR_INVALID_CAP","features":[3]},{"name":"ERROR_INVALID_CATEGORY","features":[3]},{"name":"ERROR_INVALID_CLASS","features":[3]},{"name":"ERROR_INVALID_CLASS_INSTALLER","features":[3]},{"name":"ERROR_INVALID_CLEANER","features":[3]},{"name":"ERROR_INVALID_CLUSTER_IPV6_ADDRESS","features":[3]},{"name":"ERROR_INVALID_CMM","features":[3]},{"name":"ERROR_INVALID_COINSTALLER","features":[3]},{"name":"ERROR_INVALID_COLORINDEX","features":[3]},{"name":"ERROR_INVALID_COLORSPACE","features":[3]},{"name":"ERROR_INVALID_COMBOBOX_MESSAGE","features":[3]},{"name":"ERROR_INVALID_COMMAND_LINE","features":[3]},{"name":"ERROR_INVALID_COMPUTERNAME","features":[3]},{"name":"ERROR_INVALID_CONFIG_VALUE","features":[3]},{"name":"ERROR_INVALID_CRUNTIME_PARAMETER","features":[3]},{"name":"ERROR_INVALID_CURSOR_HANDLE","features":[3]},{"name":"ERROR_INVALID_DATA","features":[3]},{"name":"ERROR_INVALID_DATATYPE","features":[3]},{"name":"ERROR_INVALID_DEVICE_OBJECT_PARAMETER","features":[3]},{"name":"ERROR_INVALID_DEVINST_NAME","features":[3]},{"name":"ERROR_INVALID_DLL","features":[3]},{"name":"ERROR_INVALID_DOMAINNAME","features":[3]},{"name":"ERROR_INVALID_DOMAIN_ROLE","features":[3]},{"name":"ERROR_INVALID_DOMAIN_STATE","features":[3]},{"name":"ERROR_INVALID_DRIVE","features":[3]},{"name":"ERROR_INVALID_DRIVE_OBJECT","features":[3]},{"name":"ERROR_INVALID_DWP_HANDLE","features":[3]},{"name":"ERROR_INVALID_EA_HANDLE","features":[3]},{"name":"ERROR_INVALID_EA_NAME","features":[3]},{"name":"ERROR_INVALID_EDIT_HEIGHT","features":[3]},{"name":"ERROR_INVALID_ENVIRONMENT","features":[3]},{"name":"ERROR_INVALID_EVENTNAME","features":[3]},{"name":"ERROR_INVALID_EVENT_COUNT","features":[3]},{"name":"ERROR_INVALID_EXCEPTION_HANDLER","features":[3]},{"name":"ERROR_INVALID_EXE_SIGNATURE","features":[3]},{"name":"ERROR_INVALID_FIELD","features":[3]},{"name":"ERROR_INVALID_FIELD_IN_PARAMETER_LIST","features":[3]},{"name":"ERROR_INVALID_FILTER_DRIVER","features":[3]},{"name":"ERROR_INVALID_FILTER_PROC","features":[3]},{"name":"ERROR_INVALID_FLAGS","features":[3]},{"name":"ERROR_INVALID_FLAG_NUMBER","features":[3]},{"name":"ERROR_INVALID_FORM_NAME","features":[3]},{"name":"ERROR_INVALID_FORM_SIZE","features":[3]},{"name":"ERROR_INVALID_FUNCTION","features":[3]},{"name":"ERROR_INVALID_GROUPNAME","features":[3]},{"name":"ERROR_INVALID_GROUP_ATTRIBUTES","features":[3]},{"name":"ERROR_INVALID_GW_COMMAND","features":[3]},{"name":"ERROR_INVALID_HANDLE","features":[3]},{"name":"ERROR_INVALID_HANDLE_STATE","features":[3]},{"name":"ERROR_INVALID_HOOK_FILTER","features":[3]},{"name":"ERROR_INVALID_HOOK_HANDLE","features":[3]},{"name":"ERROR_INVALID_HWPROFILE","features":[3]},{"name":"ERROR_INVALID_HW_PROFILE","features":[3]},{"name":"ERROR_INVALID_ICON_HANDLE","features":[3]},{"name":"ERROR_INVALID_ID_AUTHORITY","features":[3]},{"name":"ERROR_INVALID_IMAGE_HASH","features":[3]},{"name":"ERROR_INVALID_IMPORT_OF_NON_DLL","features":[3]},{"name":"ERROR_INVALID_INDEX","features":[3]},{"name":"ERROR_INVALID_INF_LOGCONFIG","features":[3]},{"name":"ERROR_INVALID_KERNEL_INFO_VERSION","features":[3]},{"name":"ERROR_INVALID_KEYBOARD_HANDLE","features":[3]},{"name":"ERROR_INVALID_LABEL","features":[3]},{"name":"ERROR_INVALID_LB_MESSAGE","features":[3]},{"name":"ERROR_INVALID_LDT_DESCRIPTOR","features":[3]},{"name":"ERROR_INVALID_LDT_OFFSET","features":[3]},{"name":"ERROR_INVALID_LDT_SIZE","features":[3]},{"name":"ERROR_INVALID_LEVEL","features":[3]},{"name":"ERROR_INVALID_LIBRARY","features":[3]},{"name":"ERROR_INVALID_LIST_FORMAT","features":[3]},{"name":"ERROR_INVALID_LOCK_RANGE","features":[3]},{"name":"ERROR_INVALID_LOGON_HOURS","features":[3]},{"name":"ERROR_INVALID_LOGON_TYPE","features":[3]},{"name":"ERROR_INVALID_MACHINENAME","features":[3]},{"name":"ERROR_INVALID_MEDIA","features":[3]},{"name":"ERROR_INVALID_MEDIA_POOL","features":[3]},{"name":"ERROR_INVALID_MEMBER","features":[3]},{"name":"ERROR_INVALID_MENU_HANDLE","features":[3]},{"name":"ERROR_INVALID_MESSAGE","features":[3]},{"name":"ERROR_INVALID_MESSAGEDEST","features":[3]},{"name":"ERROR_INVALID_MESSAGENAME","features":[3]},{"name":"ERROR_INVALID_MINALLOCSIZE","features":[3]},{"name":"ERROR_INVALID_MODULETYPE","features":[3]},{"name":"ERROR_INVALID_MONITOR_HANDLE","features":[3]},{"name":"ERROR_INVALID_MSGBOX_STYLE","features":[3]},{"name":"ERROR_INVALID_NAME","features":[3]},{"name":"ERROR_INVALID_NETNAME","features":[3]},{"name":"ERROR_INVALID_OPERATION","features":[3]},{"name":"ERROR_INVALID_OPERATION_ON_QUORUM","features":[3]},{"name":"ERROR_INVALID_OPLOCK_PROTOCOL","features":[3]},{"name":"ERROR_INVALID_ORDINAL","features":[3]},{"name":"ERROR_INVALID_OWNER","features":[3]},{"name":"ERROR_INVALID_PACKAGE_SID_LENGTH","features":[3]},{"name":"ERROR_INVALID_PACKET","features":[3]},{"name":"ERROR_INVALID_PACKET_LENGTH_OR_ID","features":[3]},{"name":"ERROR_INVALID_PARAMETER","features":[3]},{"name":"ERROR_INVALID_PASSWORD","features":[3]},{"name":"ERROR_INVALID_PASSWORDNAME","features":[3]},{"name":"ERROR_INVALID_PATCH_XML","features":[3]},{"name":"ERROR_INVALID_PEP_INFO_VERSION","features":[3]},{"name":"ERROR_INVALID_PIXEL_FORMAT","features":[3]},{"name":"ERROR_INVALID_PLUGPLAY_DEVICE_PATH","features":[3]},{"name":"ERROR_INVALID_PORT_ATTRIBUTES","features":[3]},{"name":"ERROR_INVALID_PRIMARY_GROUP","features":[3]},{"name":"ERROR_INVALID_PRINTER_COMMAND","features":[3]},{"name":"ERROR_INVALID_PRINTER_DRIVER_MANIFEST","features":[3]},{"name":"ERROR_INVALID_PRINTER_NAME","features":[3]},{"name":"ERROR_INVALID_PRINTER_STATE","features":[3]},{"name":"ERROR_INVALID_PRINT_MONITOR","features":[3]},{"name":"ERROR_INVALID_PRIORITY","features":[3]},{"name":"ERROR_INVALID_PROFILE","features":[3]},{"name":"ERROR_INVALID_PROPPAGE_PROVIDER","features":[3]},{"name":"ERROR_INVALID_QUOTA_LOWER","features":[3]},{"name":"ERROR_INVALID_RADIUS_RESPONSE","features":[3]},{"name":"ERROR_INVALID_REFERENCE_STRING","features":[3]},{"name":"ERROR_INVALID_REG_PROPERTY","features":[3]},{"name":"ERROR_INVALID_REPARSE_DATA","features":[3]},{"name":"ERROR_INVALID_RUNLEVEL_SETTING","features":[3]},{"name":"ERROR_INVALID_SCROLLBAR_RANGE","features":[3]},{"name":"ERROR_INVALID_SECURITY_DESCR","features":[3]},{"name":"ERROR_INVALID_SEGDPL","features":[3]},{"name":"ERROR_INVALID_SEGMENT_NUMBER","features":[3]},{"name":"ERROR_INVALID_SEPARATOR_FILE","features":[3]},{"name":"ERROR_INVALID_SERVER_STATE","features":[3]},{"name":"ERROR_INVALID_SERVICENAME","features":[3]},{"name":"ERROR_INVALID_SERVICE_ACCOUNT","features":[3]},{"name":"ERROR_INVALID_SERVICE_CONTROL","features":[3]},{"name":"ERROR_INVALID_SERVICE_LOCK","features":[3]},{"name":"ERROR_INVALID_SHARENAME","features":[3]},{"name":"ERROR_INVALID_SHOWWIN_COMMAND","features":[3]},{"name":"ERROR_INVALID_SID","features":[3]},{"name":"ERROR_INVALID_SIGNAL_NUMBER","features":[3]},{"name":"ERROR_INVALID_SIGNATURE","features":[3]},{"name":"ERROR_INVALID_SIGNATURE_LENGTH","features":[3]},{"name":"ERROR_INVALID_SPI_VALUE","features":[3]},{"name":"ERROR_INVALID_STACKSEG","features":[3]},{"name":"ERROR_INVALID_STAGED_SIGNATURE","features":[3]},{"name":"ERROR_INVALID_STARTING_CODESEG","features":[3]},{"name":"ERROR_INVALID_STATE","features":[3]},{"name":"ERROR_INVALID_SUB_AUTHORITY","features":[3]},{"name":"ERROR_INVALID_TABLE","features":[3]},{"name":"ERROR_INVALID_TARGET","features":[3]},{"name":"ERROR_INVALID_TARGET_HANDLE","features":[3]},{"name":"ERROR_INVALID_TASK_INDEX","features":[3]},{"name":"ERROR_INVALID_TASK_NAME","features":[3]},{"name":"ERROR_INVALID_THREAD_ID","features":[3]},{"name":"ERROR_INVALID_TIME","features":[3]},{"name":"ERROR_INVALID_TOKEN","features":[3]},{"name":"ERROR_INVALID_TRANSACTION","features":[3]},{"name":"ERROR_INVALID_TRANSFORM","features":[3]},{"name":"ERROR_INVALID_UNWIND_TARGET","features":[3]},{"name":"ERROR_INVALID_USER_BUFFER","features":[3]},{"name":"ERROR_INVALID_USER_PRINCIPAL_NAME","features":[3]},{"name":"ERROR_INVALID_VARIANT","features":[3]},{"name":"ERROR_INVALID_VERIFY_SWITCH","features":[3]},{"name":"ERROR_INVALID_WINDOW_HANDLE","features":[3]},{"name":"ERROR_INVALID_WINDOW_STYLE","features":[3]},{"name":"ERROR_INVALID_WORKSTATION","features":[3]},{"name":"ERROR_IN_WOW64","features":[3]},{"name":"ERROR_IOPL_NOT_ENABLED","features":[3]},{"name":"ERROR_IO_DEVICE","features":[3]},{"name":"ERROR_IO_INCOMPLETE","features":[3]},{"name":"ERROR_IO_PENDING","features":[3]},{"name":"ERROR_IO_PREEMPTED","features":[3]},{"name":"ERROR_IO_PRIVILEGE_FAILED","features":[3]},{"name":"ERROR_IO_REISSUE_AS_CACHED","features":[3]},{"name":"ERROR_IPSEC_AUTH_FIREWALL_DROP","features":[3]},{"name":"ERROR_IPSEC_BAD_SPI","features":[3]},{"name":"ERROR_IPSEC_CLEAR_TEXT_DROP","features":[3]},{"name":"ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_DOSP_BLOCK","features":[3]},{"name":"ERROR_IPSEC_DOSP_INVALID_PACKET","features":[3]},{"name":"ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[3]},{"name":"ERROR_IPSEC_DOSP_MAX_ENTRIES","features":[3]},{"name":"ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[3]},{"name":"ERROR_IPSEC_DOSP_NOT_INSTALLED","features":[3]},{"name":"ERROR_IPSEC_DOSP_RECEIVED_MULTICAST","features":[3]},{"name":"ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[3]},{"name":"ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED","features":[3]},{"name":"ERROR_IPSEC_IKE_ATTRIB_FAIL","features":[3]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE","features":[3]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY","features":[3]},{"name":"ERROR_IPSEC_IKE_AUTH_FAIL","features":[3]},{"name":"ERROR_IPSEC_IKE_BENIGN_REINIT","features":[3]},{"name":"ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH","features":[3]},{"name":"ERROR_IPSEC_IKE_CGA_AUTH_FAILED","features":[3]},{"name":"ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS","features":[3]},{"name":"ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED","features":[3]},{"name":"ERROR_IPSEC_IKE_CRL_FAILED","features":[3]},{"name":"ERROR_IPSEC_IKE_DECRYPT","features":[3]},{"name":"ERROR_IPSEC_IKE_DH_FAIL","features":[3]},{"name":"ERROR_IPSEC_IKE_DH_FAILURE","features":[3]},{"name":"ERROR_IPSEC_IKE_DOS_COOKIE_SENT","features":[3]},{"name":"ERROR_IPSEC_IKE_DROP_NO_RESPONSE","features":[3]},{"name":"ERROR_IPSEC_IKE_ENCRYPT","features":[3]},{"name":"ERROR_IPSEC_IKE_ERROR","features":[3]},{"name":"ERROR_IPSEC_IKE_FAILQUERYSSP","features":[3]},{"name":"ERROR_IPSEC_IKE_FAILSSPINIT","features":[3]},{"name":"ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR","features":[3]},{"name":"ERROR_IPSEC_IKE_GETSPIFAIL","features":[3]},{"name":"ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_ALG","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_TYPE","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_COOKIE","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_FILTER","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_GROUP","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_ALG","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_SIZE","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_HEADER","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_KEY_USAGE","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_MM_FOR_QM","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_PAYLOAD","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_POLICY","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_SIG","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_SIGNATURE","features":[3]},{"name":"ERROR_IPSEC_IKE_INVALID_SITUATION","features":[3]},{"name":"ERROR_IPSEC_IKE_KERBEROS_ERROR","features":[3]},{"name":"ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL","features":[3]},{"name":"ERROR_IPSEC_IKE_LOAD_FAILED","features":[3]},{"name":"ERROR_IPSEC_IKE_LOAD_SOFT_SA","features":[3]},{"name":"ERROR_IPSEC_IKE_MM_ACQUIRE_DROP","features":[3]},{"name":"ERROR_IPSEC_IKE_MM_DELAY_DROP","features":[3]},{"name":"ERROR_IPSEC_IKE_MM_EXPIRED","features":[3]},{"name":"ERROR_IPSEC_IKE_MM_LIMIT","features":[3]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_DISABLED","features":[3]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_PENDING","features":[3]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_BEGIN","features":[3]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_END","features":[3]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END","features":[3]},{"name":"ERROR_IPSEC_IKE_NOTCBPRIV","features":[3]},{"name":"ERROR_IPSEC_IKE_NO_CERT","features":[3]},{"name":"ERROR_IPSEC_IKE_NO_MM_POLICY","features":[3]},{"name":"ERROR_IPSEC_IKE_NO_PEER_CERT","features":[3]},{"name":"ERROR_IPSEC_IKE_NO_POLICY","features":[3]},{"name":"ERROR_IPSEC_IKE_NO_PRIVATE_KEY","features":[3]},{"name":"ERROR_IPSEC_IKE_NO_PUBLIC_KEY","features":[3]},{"name":"ERROR_IPSEC_IKE_OUT_OF_MEMORY","features":[3]},{"name":"ERROR_IPSEC_IKE_PEER_CRL_FAILED","features":[3]},{"name":"ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE","features":[3]},{"name":"ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID","features":[3]},{"name":"ERROR_IPSEC_IKE_POLICY_CHANGE","features":[3]},{"name":"ERROR_IPSEC_IKE_POLICY_MATCH","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_DELETE","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_HASH","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_ID","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_KE","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NATOA","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NONCE","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_PROP","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SA","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SIG","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_TRANS","features":[3]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR","features":[3]},{"name":"ERROR_IPSEC_IKE_QM_ACQUIRE_DROP","features":[3]},{"name":"ERROR_IPSEC_IKE_QM_DELAY_DROP","features":[3]},{"name":"ERROR_IPSEC_IKE_QM_EXPIRED","features":[3]},{"name":"ERROR_IPSEC_IKE_QM_LIMIT","features":[3]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_MM","features":[3]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM","features":[3]},{"name":"ERROR_IPSEC_IKE_RATELIMIT_DROP","features":[3]},{"name":"ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING","features":[3]},{"name":"ERROR_IPSEC_IKE_RPC_DELETE","features":[3]},{"name":"ERROR_IPSEC_IKE_SA_DELETED","features":[3]},{"name":"ERROR_IPSEC_IKE_SA_REAPED","features":[3]},{"name":"ERROR_IPSEC_IKE_SECLOADFAIL","features":[3]},{"name":"ERROR_IPSEC_IKE_SHUTTING_DOWN","features":[3]},{"name":"ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY","features":[3]},{"name":"ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN","features":[3]},{"name":"ERROR_IPSEC_IKE_SRVACQFAIL","features":[3]},{"name":"ERROR_IPSEC_IKE_SRVQUERYCRED","features":[3]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE","features":[3]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE","features":[3]},{"name":"ERROR_IPSEC_IKE_TIMED_OUT","features":[3]},{"name":"ERROR_IPSEC_IKE_TOO_MANY_FILTERS","features":[3]},{"name":"ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID","features":[3]},{"name":"ERROR_IPSEC_IKE_UNKNOWN_DOI","features":[3]},{"name":"ERROR_IPSEC_IKE_UNSUPPORTED_ID","features":[3]},{"name":"ERROR_IPSEC_INTEGRITY_CHECK_FAILED","features":[3]},{"name":"ERROR_IPSEC_INVALID_PACKET","features":[3]},{"name":"ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING","features":[3]},{"name":"ERROR_IPSEC_MM_AUTH_EXISTS","features":[3]},{"name":"ERROR_IPSEC_MM_AUTH_IN_USE","features":[3]},{"name":"ERROR_IPSEC_MM_AUTH_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_MM_AUTH_PENDING_DELETION","features":[3]},{"name":"ERROR_IPSEC_MM_FILTER_EXISTS","features":[3]},{"name":"ERROR_IPSEC_MM_FILTER_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_MM_FILTER_PENDING_DELETION","features":[3]},{"name":"ERROR_IPSEC_MM_POLICY_EXISTS","features":[3]},{"name":"ERROR_IPSEC_MM_POLICY_IN_USE","features":[3]},{"name":"ERROR_IPSEC_MM_POLICY_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_MM_POLICY_PENDING_DELETION","features":[3]},{"name":"ERROR_IPSEC_QM_POLICY_EXISTS","features":[3]},{"name":"ERROR_IPSEC_QM_POLICY_IN_USE","features":[3]},{"name":"ERROR_IPSEC_QM_POLICY_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_QM_POLICY_PENDING_DELETION","features":[3]},{"name":"ERROR_IPSEC_REPLAY_CHECK_FAILED","features":[3]},{"name":"ERROR_IPSEC_SA_LIFETIME_EXPIRED","features":[3]},{"name":"ERROR_IPSEC_THROTTLE_DROP","features":[3]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_EXISTS","features":[3]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION","features":[3]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_EXISTS","features":[3]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND","features":[3]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION","features":[3]},{"name":"ERROR_IPSEC_WRONG_SA","features":[3]},{"name":"ERROR_IP_ADDRESS_CONFLICT1","features":[3]},{"name":"ERROR_IP_ADDRESS_CONFLICT2","features":[3]},{"name":"ERROR_IRQ_BUSY","features":[3]},{"name":"ERROR_IS_JOINED","features":[3]},{"name":"ERROR_IS_JOIN_PATH","features":[3]},{"name":"ERROR_IS_JOIN_TARGET","features":[3]},{"name":"ERROR_IS_SUBSTED","features":[3]},{"name":"ERROR_IS_SUBST_PATH","features":[3]},{"name":"ERROR_IS_SUBST_TARGET","features":[3]},{"name":"ERROR_ITERATED_DATA_EXCEEDS_64k","features":[3]},{"name":"ERROR_JOB_NO_CONTAINER","features":[3]},{"name":"ERROR_JOIN_TO_JOIN","features":[3]},{"name":"ERROR_JOIN_TO_SUBST","features":[3]},{"name":"ERROR_JOURNAL_DELETE_IN_PROGRESS","features":[3]},{"name":"ERROR_JOURNAL_ENTRY_DELETED","features":[3]},{"name":"ERROR_JOURNAL_HOOK_SET","features":[3]},{"name":"ERROR_JOURNAL_NOT_ACTIVE","features":[3]},{"name":"ERROR_KERNEL_APC","features":[3]},{"name":"ERROR_KEY_DELETED","features":[3]},{"name":"ERROR_KEY_DOES_NOT_EXIST","features":[3]},{"name":"ERROR_KEY_HAS_CHILDREN","features":[3]},{"name":"ERROR_KM_DRIVER_BLOCKED","features":[3]},{"name":"ERROR_LABEL_TOO_LONG","features":[3]},{"name":"ERROR_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[3]},{"name":"ERROR_LAPS_LEGACY_SCHEMA_MISSING","features":[3]},{"name":"ERROR_LAPS_SCHEMA_MISSING","features":[3]},{"name":"ERROR_LAST_ADMIN","features":[3]},{"name":"ERROR_LB_WITHOUT_TABSTOPS","features":[3]},{"name":"ERROR_LIBRARY_FULL","features":[3]},{"name":"ERROR_LIBRARY_OFFLINE","features":[3]},{"name":"ERROR_LICENSE_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_LINE_NOT_FOUND","features":[3]},{"name":"ERROR_LINUX_SUBSYSTEM_NOT_PRESENT","features":[3]},{"name":"ERROR_LINUX_SUBSYSTEM_UPDATE_REQUIRED","features":[3]},{"name":"ERROR_LISTBOX_ID_NOT_FOUND","features":[3]},{"name":"ERROR_LM_CROSS_ENCRYPTION_REQUIRED","features":[3]},{"name":"ERROR_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[3]},{"name":"ERROR_LOCAL_USER_SESSION_KEY","features":[3]},{"name":"ERROR_LOCKED","features":[3]},{"name":"ERROR_LOCK_FAILED","features":[3]},{"name":"ERROR_LOCK_VIOLATION","features":[3]},{"name":"ERROR_LOGIN_TIME_RESTRICTION","features":[3]},{"name":"ERROR_LOGIN_WKSTA_RESTRICTION","features":[3]},{"name":"ERROR_LOGON_FAILURE","features":[3]},{"name":"ERROR_LOGON_NOT_GRANTED","features":[3]},{"name":"ERROR_LOGON_SERVER_CONFLICT","features":[3]},{"name":"ERROR_LOGON_SESSION_COLLISION","features":[3]},{"name":"ERROR_LOGON_SESSION_EXISTS","features":[3]},{"name":"ERROR_LOGON_TYPE_NOT_GRANTED","features":[3]},{"name":"ERROR_LOG_APPENDED_FLUSH_FAILED","features":[3]},{"name":"ERROR_LOG_ARCHIVE_IN_PROGRESS","features":[3]},{"name":"ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[3]},{"name":"ERROR_LOG_BLOCKS_EXHAUSTED","features":[3]},{"name":"ERROR_LOG_BLOCK_INCOMPLETE","features":[3]},{"name":"ERROR_LOG_BLOCK_INVALID","features":[3]},{"name":"ERROR_LOG_BLOCK_VERSION","features":[3]},{"name":"ERROR_LOG_CANT_DELETE","features":[3]},{"name":"ERROR_LOG_CLIENT_ALREADY_REGISTERED","features":[3]},{"name":"ERROR_LOG_CLIENT_NOT_REGISTERED","features":[3]},{"name":"ERROR_LOG_CONTAINER_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_LOG_CONTAINER_OPEN_FAILED","features":[3]},{"name":"ERROR_LOG_CONTAINER_READ_FAILED","features":[3]},{"name":"ERROR_LOG_CONTAINER_STATE_INVALID","features":[3]},{"name":"ERROR_LOG_CONTAINER_WRITE_FAILED","features":[3]},{"name":"ERROR_LOG_CORRUPTION_DETECTED","features":[3]},{"name":"ERROR_LOG_DEDICATED","features":[3]},{"name":"ERROR_LOG_EPHEMERAL","features":[3]},{"name":"ERROR_LOG_FILE_FULL","features":[3]},{"name":"ERROR_LOG_FULL","features":[3]},{"name":"ERROR_LOG_FULL_HANDLER_IN_PROGRESS","features":[3]},{"name":"ERROR_LOG_GROWTH_FAILED","features":[3]},{"name":"ERROR_LOG_HARD_ERROR","features":[3]},{"name":"ERROR_LOG_INCONSISTENT_SECURITY","features":[3]},{"name":"ERROR_LOG_INVALID_RANGE","features":[3]},{"name":"ERROR_LOG_METADATA_CORRUPT","features":[3]},{"name":"ERROR_LOG_METADATA_FLUSH_FAILED","features":[3]},{"name":"ERROR_LOG_METADATA_INCONSISTENT","features":[3]},{"name":"ERROR_LOG_METADATA_INVALID","features":[3]},{"name":"ERROR_LOG_MULTIPLEXED","features":[3]},{"name":"ERROR_LOG_NOT_ENOUGH_CONTAINERS","features":[3]},{"name":"ERROR_LOG_NO_RESTART","features":[3]},{"name":"ERROR_LOG_PINNED","features":[3]},{"name":"ERROR_LOG_PINNED_ARCHIVE_TAIL","features":[3]},{"name":"ERROR_LOG_PINNED_RESERVATION","features":[3]},{"name":"ERROR_LOG_POLICY_ALREADY_INSTALLED","features":[3]},{"name":"ERROR_LOG_POLICY_CONFLICT","features":[3]},{"name":"ERROR_LOG_POLICY_INVALID","features":[3]},{"name":"ERROR_LOG_POLICY_NOT_INSTALLED","features":[3]},{"name":"ERROR_LOG_READ_CONTEXT_INVALID","features":[3]},{"name":"ERROR_LOG_READ_MODE_INVALID","features":[3]},{"name":"ERROR_LOG_RECORDS_RESERVED_INVALID","features":[3]},{"name":"ERROR_LOG_RECORD_NONEXISTENT","features":[3]},{"name":"ERROR_LOG_RESERVATION_INVALID","features":[3]},{"name":"ERROR_LOG_RESIZE_INVALID_SIZE","features":[3]},{"name":"ERROR_LOG_RESTART_INVALID","features":[3]},{"name":"ERROR_LOG_SECTOR_INVALID","features":[3]},{"name":"ERROR_LOG_SECTOR_PARITY_INVALID","features":[3]},{"name":"ERROR_LOG_SECTOR_REMAPPED","features":[3]},{"name":"ERROR_LOG_SPACE_RESERVED_INVALID","features":[3]},{"name":"ERROR_LOG_START_OF_LOG","features":[3]},{"name":"ERROR_LOG_STATE_INVALID","features":[3]},{"name":"ERROR_LOG_TAIL_INVALID","features":[3]},{"name":"ERROR_LONGJUMP","features":[3]},{"name":"ERROR_LOST_MODE_LOGON_RESTRICTION","features":[3]},{"name":"ERROR_LOST_WRITEBEHIND_DATA","features":[3]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[3]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[3]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[3]},{"name":"ERROR_LUIDS_EXHAUSTED","features":[3]},{"name":"ERROR_MACHINE_LOCKED","features":[3]},{"name":"ERROR_MACHINE_SCOPE_NOT_ALLOWED","features":[3]},{"name":"ERROR_MACHINE_UNAVAILABLE","features":[3]},{"name":"ERROR_MAGAZINE_NOT_PRESENT","features":[3]},{"name":"ERROR_MALFORMED_SUBSTITUTION_STRING","features":[3]},{"name":"ERROR_MAPPED_ALIGNMENT","features":[3]},{"name":"ERROR_MARKED_TO_DISALLOW_WRITES","features":[3]},{"name":"ERROR_MARSHALL_OVERFLOW","features":[3]},{"name":"ERROR_MAX_CLIENT_INTERFACE_LIMIT","features":[3]},{"name":"ERROR_MAX_LAN_INTERFACE_LIMIT","features":[3]},{"name":"ERROR_MAX_SESSIONS_REACHED","features":[3]},{"name":"ERROR_MAX_THRDS_REACHED","features":[3]},{"name":"ERROR_MAX_WAN_INTERFACE_LIMIT","features":[3]},{"name":"ERROR_MCA_EXCEPTION","features":[3]},{"name":"ERROR_MCA_INTERNAL_ERROR","features":[3]},{"name":"ERROR_MCA_INVALID_CAPABILITIES_STRING","features":[3]},{"name":"ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[3]},{"name":"ERROR_MCA_INVALID_VCP_VERSION","features":[3]},{"name":"ERROR_MCA_MCCS_VERSION_MISMATCH","features":[3]},{"name":"ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[3]},{"name":"ERROR_MCA_OCCURED","features":[3]},{"name":"ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[3]},{"name":"ERROR_MCA_UNSUPPORTED_MCCS_VERSION","features":[3]},{"name":"ERROR_MEDIA_CHANGED","features":[3]},{"name":"ERROR_MEDIA_CHECK","features":[3]},{"name":"ERROR_MEDIA_INCOMPATIBLE","features":[3]},{"name":"ERROR_MEDIA_NOT_AVAILABLE","features":[3]},{"name":"ERROR_MEDIA_OFFLINE","features":[3]},{"name":"ERROR_MEDIA_UNAVAILABLE","features":[3]},{"name":"ERROR_MEDIUM_NOT_ACCESSIBLE","features":[3]},{"name":"ERROR_MEMBERS_PRIMARY_GROUP","features":[3]},{"name":"ERROR_MEMBER_IN_ALIAS","features":[3]},{"name":"ERROR_MEMBER_IN_GROUP","features":[3]},{"name":"ERROR_MEMBER_NOT_IN_ALIAS","features":[3]},{"name":"ERROR_MEMBER_NOT_IN_GROUP","features":[3]},{"name":"ERROR_MEMORY_HARDWARE","features":[3]},{"name":"ERROR_MENU_ITEM_NOT_FOUND","features":[3]},{"name":"ERROR_MESSAGE_EXCEEDS_MAX_SIZE","features":[3]},{"name":"ERROR_MESSAGE_SYNC_ONLY","features":[3]},{"name":"ERROR_METAFILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_META_EXPANSION_TOO_LONG","features":[3]},{"name":"ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[3]},{"name":"ERROR_MISSING_SYSTEMFILE","features":[3]},{"name":"ERROR_MOD_NOT_FOUND","features":[3]},{"name":"ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[3]},{"name":"ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[3]},{"name":"ERROR_MONITOR_INVALID_MANUFACTURE_DATE","features":[3]},{"name":"ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[3]},{"name":"ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[3]},{"name":"ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[3]},{"name":"ERROR_MONITOR_NO_DESCRIPTOR","features":[3]},{"name":"ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[3]},{"name":"ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[3]},{"name":"ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[3]},{"name":"ERROR_MORE_DATA","features":[3]},{"name":"ERROR_MORE_WRITES","features":[3]},{"name":"ERROR_MOUNT_POINT_NOT_RESOLVED","features":[3]},{"name":"ERROR_MP_PROCESSOR_MISMATCH","features":[3]},{"name":"ERROR_MRM_AUTOMERGE_ENABLED","features":[3]},{"name":"ERROR_MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE","features":[3]},{"name":"ERROR_MRM_DUPLICATE_ENTRY","features":[3]},{"name":"ERROR_MRM_DUPLICATE_MAP_NAME","features":[3]},{"name":"ERROR_MRM_FILEPATH_TOO_LONG","features":[3]},{"name":"ERROR_MRM_GENERATION_COUNT_MISMATCH","features":[3]},{"name":"ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE","features":[3]},{"name":"ERROR_MRM_INVALID_FILE_TYPE","features":[3]},{"name":"ERROR_MRM_INVALID_PRICONFIG","features":[3]},{"name":"ERROR_MRM_INVALID_PRI_FILE","features":[3]},{"name":"ERROR_MRM_INVALID_QUALIFIER_OPERATOR","features":[3]},{"name":"ERROR_MRM_INVALID_QUALIFIER_VALUE","features":[3]},{"name":"ERROR_MRM_INVALID_RESOURCE_IDENTIFIER","features":[3]},{"name":"ERROR_MRM_MAP_NOT_FOUND","features":[3]},{"name":"ERROR_MRM_MISSING_DEFAULT_LANGUAGE","features":[3]},{"name":"ERROR_MRM_NAMED_RESOURCE_NOT_FOUND","features":[3]},{"name":"ERROR_MRM_NO_CANDIDATE","features":[3]},{"name":"ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD","features":[3]},{"name":"ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE","features":[3]},{"name":"ERROR_MRM_PACKAGE_NOT_FOUND","features":[3]},{"name":"ERROR_MRM_RESOURCE_TYPE_MISMATCH","features":[3]},{"name":"ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE","features":[3]},{"name":"ERROR_MRM_SCOPE_ITEM_CONFLICT","features":[3]},{"name":"ERROR_MRM_TOO_MANY_RESOURCES","features":[3]},{"name":"ERROR_MRM_UNKNOWN_QUALIFIER","features":[3]},{"name":"ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE","features":[3]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE","features":[3]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE","features":[3]},{"name":"ERROR_MRM_UNSUPPORTED_PROFILE_TYPE","features":[3]},{"name":"ERROR_MR_MID_NOT_FOUND","features":[3]},{"name":"ERROR_MUI_FILE_NOT_FOUND","features":[3]},{"name":"ERROR_MUI_FILE_NOT_LOADED","features":[3]},{"name":"ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME","features":[3]},{"name":"ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED","features":[3]},{"name":"ERROR_MUI_INVALID_FILE","features":[3]},{"name":"ERROR_MUI_INVALID_LOCALE_NAME","features":[3]},{"name":"ERROR_MUI_INVALID_RC_CONFIG","features":[3]},{"name":"ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[3]},{"name":"ERROR_MULTIPLE_FAULT_VIOLATION","features":[3]},{"name":"ERROR_MUTANT_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_MUTUAL_AUTH_FAILED","features":[3]},{"name":"ERROR_NDIS_ADAPTER_NOT_FOUND","features":[3]},{"name":"ERROR_NDIS_ADAPTER_NOT_READY","features":[3]},{"name":"ERROR_NDIS_ADAPTER_REMOVED","features":[3]},{"name":"ERROR_NDIS_ALREADY_MAPPED","features":[3]},{"name":"ERROR_NDIS_BAD_CHARACTERISTICS","features":[3]},{"name":"ERROR_NDIS_BAD_VERSION","features":[3]},{"name":"ERROR_NDIS_BUFFER_TOO_SHORT","features":[3]},{"name":"ERROR_NDIS_DEVICE_FAILED","features":[3]},{"name":"ERROR_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[3]},{"name":"ERROR_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[3]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[3]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[3]},{"name":"ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[3]},{"name":"ERROR_NDIS_DOT11_MEDIA_IN_USE","features":[3]},{"name":"ERROR_NDIS_DOT11_POWER_STATE_INVALID","features":[3]},{"name":"ERROR_NDIS_ERROR_READING_FILE","features":[3]},{"name":"ERROR_NDIS_FILE_NOT_FOUND","features":[3]},{"name":"ERROR_NDIS_GROUP_ADDRESS_IN_USE","features":[3]},{"name":"ERROR_NDIS_INDICATION_REQUIRED","features":[3]},{"name":"ERROR_NDIS_INTERFACE_CLOSING","features":[3]},{"name":"ERROR_NDIS_INTERFACE_NOT_FOUND","features":[3]},{"name":"ERROR_NDIS_INVALID_ADDRESS","features":[3]},{"name":"ERROR_NDIS_INVALID_DATA","features":[3]},{"name":"ERROR_NDIS_INVALID_DEVICE_REQUEST","features":[3]},{"name":"ERROR_NDIS_INVALID_LENGTH","features":[3]},{"name":"ERROR_NDIS_INVALID_OID","features":[3]},{"name":"ERROR_NDIS_INVALID_PACKET","features":[3]},{"name":"ERROR_NDIS_INVALID_PORT","features":[3]},{"name":"ERROR_NDIS_INVALID_PORT_STATE","features":[3]},{"name":"ERROR_NDIS_LOW_POWER_STATE","features":[3]},{"name":"ERROR_NDIS_MEDIA_DISCONNECTED","features":[3]},{"name":"ERROR_NDIS_MULTICAST_EXISTS","features":[3]},{"name":"ERROR_NDIS_MULTICAST_FULL","features":[3]},{"name":"ERROR_NDIS_MULTICAST_NOT_FOUND","features":[3]},{"name":"ERROR_NDIS_NOT_SUPPORTED","features":[3]},{"name":"ERROR_NDIS_NO_QUEUES","features":[3]},{"name":"ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[3]},{"name":"ERROR_NDIS_OFFLOAD_PATH_REJECTED","features":[3]},{"name":"ERROR_NDIS_OFFLOAD_POLICY","features":[3]},{"name":"ERROR_NDIS_OPEN_FAILED","features":[3]},{"name":"ERROR_NDIS_PAUSED","features":[3]},{"name":"ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[3]},{"name":"ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[3]},{"name":"ERROR_NDIS_REINIT_REQUIRED","features":[3]},{"name":"ERROR_NDIS_REQUEST_ABORTED","features":[3]},{"name":"ERROR_NDIS_RESET_IN_PROGRESS","features":[3]},{"name":"ERROR_NDIS_RESOURCE_CONFLICT","features":[3]},{"name":"ERROR_NDIS_UNSUPPORTED_MEDIA","features":[3]},{"name":"ERROR_NDIS_UNSUPPORTED_REVISION","features":[3]},{"name":"ERROR_NEEDS_REGISTRATION","features":[3]},{"name":"ERROR_NEEDS_REMEDIATION","features":[3]},{"name":"ERROR_NEGATIVE_SEEK","features":[3]},{"name":"ERROR_NESTING_NOT_ALLOWED","features":[3]},{"name":"ERROR_NETLOGON_NOT_STARTED","features":[3]},{"name":"ERROR_NETNAME_DELETED","features":[3]},{"name":"ERROR_NETWORK_ACCESS_DENIED","features":[3]},{"name":"ERROR_NETWORK_ACCESS_DENIED_EDP","features":[3]},{"name":"ERROR_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[3]},{"name":"ERROR_NETWORK_BUSY","features":[3]},{"name":"ERROR_NETWORK_NOT_AVAILABLE","features":[3]},{"name":"ERROR_NETWORK_UNREACHABLE","features":[3]},{"name":"ERROR_NET_OPEN_FAILED","features":[3]},{"name":"ERROR_NET_WRITE_FAULT","features":[3]},{"name":"ERROR_NOACCESS","features":[3]},{"name":"ERROR_NODE_CANNOT_BE_CLUSTERED","features":[3]},{"name":"ERROR_NODE_CANT_HOST_RESOURCE","features":[3]},{"name":"ERROR_NODE_NOT_ACTIVE_CLUSTER_MEMBER","features":[3]},{"name":"ERROR_NODE_NOT_AVAILABLE","features":[3]},{"name":"ERROR_NOINTERFACE","features":[3]},{"name":"ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[3]},{"name":"ERROR_NOLOGON_SERVER_TRUST_ACCOUNT","features":[3]},{"name":"ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[3]},{"name":"ERROR_NONCORE_GROUPS_FOUND","features":[3]},{"name":"ERROR_NONE_MAPPED","features":[3]},{"name":"ERROR_NONPAGED_SYSTEM_RESOURCES","features":[3]},{"name":"ERROR_NON_ACCOUNT_SID","features":[3]},{"name":"ERROR_NON_CSV_PATH","features":[3]},{"name":"ERROR_NON_DOMAIN_SID","features":[3]},{"name":"ERROR_NON_MDICHILD_WINDOW","features":[3]},{"name":"ERROR_NON_WINDOWS_DRIVER","features":[3]},{"name":"ERROR_NON_WINDOWS_NT_DRIVER","features":[3]},{"name":"ERROR_NOTHING_TO_TERMINATE","features":[3]},{"name":"ERROR_NOTIFICATION_GUID_ALREADY_DEFINED","features":[3]},{"name":"ERROR_NOTIFY_CLEANUP","features":[3]},{"name":"ERROR_NOTIFY_ENUM_DIR","features":[3]},{"name":"ERROR_NOT_ALLOWED_ON_SYSTEM_FILE","features":[3]},{"name":"ERROR_NOT_ALL_ASSIGNED","features":[3]},{"name":"ERROR_NOT_AN_INSTALLED_OEM_INF","features":[3]},{"name":"ERROR_NOT_APPCONTAINER","features":[3]},{"name":"ERROR_NOT_AUTHENTICATED","features":[3]},{"name":"ERROR_NOT_A_CLOUD_FILE","features":[3]},{"name":"ERROR_NOT_A_CLOUD_SYNC_ROOT","features":[3]},{"name":"ERROR_NOT_A_DAX_VOLUME","features":[3]},{"name":"ERROR_NOT_A_DEV_VOLUME","features":[3]},{"name":"ERROR_NOT_A_REPARSE_POINT","features":[3]},{"name":"ERROR_NOT_A_TIERED_VOLUME","features":[3]},{"name":"ERROR_NOT_CAPABLE","features":[3]},{"name":"ERROR_NOT_CHILD_WINDOW","features":[3]},{"name":"ERROR_NOT_CLIENT_PORT","features":[3]},{"name":"ERROR_NOT_CONNECTED","features":[3]},{"name":"ERROR_NOT_CONTAINER","features":[3]},{"name":"ERROR_NOT_DAX_MAPPABLE","features":[3]},{"name":"ERROR_NOT_DISABLEABLE","features":[3]},{"name":"ERROR_NOT_DOS_DISK","features":[3]},{"name":"ERROR_NOT_EMPTY","features":[3]},{"name":"ERROR_NOT_ENOUGH_MEMORY","features":[3]},{"name":"ERROR_NOT_ENOUGH_QUOTA","features":[3]},{"name":"ERROR_NOT_ENOUGH_SERVER_MEMORY","features":[3]},{"name":"ERROR_NOT_EXPORT_FORMAT","features":[3]},{"name":"ERROR_NOT_FOUND","features":[3]},{"name":"ERROR_NOT_GUI_PROCESS","features":[3]},{"name":"ERROR_NOT_INSTALLED","features":[3]},{"name":"ERROR_NOT_JOINED","features":[3]},{"name":"ERROR_NOT_LOCKED","features":[3]},{"name":"ERROR_NOT_LOGGED_ON","features":[3]},{"name":"ERROR_NOT_LOGON_PROCESS","features":[3]},{"name":"ERROR_NOT_OWNER","features":[3]},{"name":"ERROR_NOT_QUORUM_CAPABLE","features":[3]},{"name":"ERROR_NOT_QUORUM_CLASS","features":[3]},{"name":"ERROR_NOT_READY","features":[3]},{"name":"ERROR_NOT_READ_FROM_COPY","features":[3]},{"name":"ERROR_NOT_REDUNDANT_STORAGE","features":[3]},{"name":"ERROR_NOT_REGISTRY_FILE","features":[3]},{"name":"ERROR_NOT_ROUTER_PORT","features":[3]},{"name":"ERROR_NOT_SAFEBOOT_SERVICE","features":[3]},{"name":"ERROR_NOT_SAFE_MODE_DRIVER","features":[3]},{"name":"ERROR_NOT_SAME_DEVICE","features":[3]},{"name":"ERROR_NOT_SAME_OBJECT","features":[3]},{"name":"ERROR_NOT_SNAPSHOT_VOLUME","features":[3]},{"name":"ERROR_NOT_SUBSTED","features":[3]},{"name":"ERROR_NOT_SUPPORTED","features":[3]},{"name":"ERROR_NOT_SUPPORTED_IN_APPCONTAINER","features":[3]},{"name":"ERROR_NOT_SUPPORTED_ON_DAX","features":[3]},{"name":"ERROR_NOT_SUPPORTED_ON_SBS","features":[3]},{"name":"ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_AUDITING","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_BTT","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_BYPASSIO","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_COMPRESSION","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_ENCRYPTION","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_MONITORING","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_REPLICATION","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_SNAPSHOT","features":[3]},{"name":"ERROR_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[3]},{"name":"ERROR_NOT_TINY_STREAM","features":[3]},{"name":"ERROR_NO_ACE_CONDITION","features":[3]},{"name":"ERROR_NO_ADMIN_ACCESS_POINT","features":[3]},{"name":"ERROR_NO_APPLICABLE_APP_LICENSES_FOUND","features":[3]},{"name":"ERROR_NO_ASSOCIATED_CLASS","features":[3]},{"name":"ERROR_NO_ASSOCIATED_SERVICE","features":[3]},{"name":"ERROR_NO_ASSOCIATION","features":[3]},{"name":"ERROR_NO_AUTHENTICODE_CATALOG","features":[3]},{"name":"ERROR_NO_AUTH_PROTOCOL_AVAILABLE","features":[3]},{"name":"ERROR_NO_BACKUP","features":[3]},{"name":"ERROR_NO_BROWSER_SERVERS_FOUND","features":[3]},{"name":"ERROR_NO_BYPASSIO_DRIVER_SUPPORT","features":[3]},{"name":"ERROR_NO_CALLBACK_ACTIVE","features":[3]},{"name":"ERROR_NO_CATALOG_FOR_OEM_INF","features":[3]},{"name":"ERROR_NO_CLASSINSTALL_PARAMS","features":[3]},{"name":"ERROR_NO_CLASS_DRIVER_LIST","features":[3]},{"name":"ERROR_NO_COMPAT_DRIVERS","features":[3]},{"name":"ERROR_NO_CONFIGMGR_SERVICES","features":[3]},{"name":"ERROR_NO_DATA","features":[3]},{"name":"ERROR_NO_DATA_DETECTED","features":[3]},{"name":"ERROR_NO_DEFAULT_DEVICE_INTERFACE","features":[3]},{"name":"ERROR_NO_DEFAULT_INTERFACE_DEVICE","features":[3]},{"name":"ERROR_NO_DEVICE_ICON","features":[3]},{"name":"ERROR_NO_DEVICE_SELECTED","features":[3]},{"name":"ERROR_NO_DRIVER_SELECTED","features":[3]},{"name":"ERROR_NO_EFS","features":[3]},{"name":"ERROR_NO_EVENT_PAIR","features":[3]},{"name":"ERROR_NO_GUID_TRANSLATION","features":[3]},{"name":"ERROR_NO_IMPERSONATION_TOKEN","features":[3]},{"name":"ERROR_NO_INF","features":[3]},{"name":"ERROR_NO_INHERITANCE","features":[3]},{"name":"ERROR_NO_INTERFACE_CREDENTIALS_SET","features":[3]},{"name":"ERROR_NO_LINK_TRACKING_IN_TRANSACTION","features":[3]},{"name":"ERROR_NO_LOGON_SERVERS","features":[3]},{"name":"ERROR_NO_LOG_SPACE","features":[3]},{"name":"ERROR_NO_MATCH","features":[3]},{"name":"ERROR_NO_MEDIA_IN_DRIVE","features":[3]},{"name":"ERROR_NO_MORE_DEVICES","features":[3]},{"name":"ERROR_NO_MORE_FILES","features":[3]},{"name":"ERROR_NO_MORE_ITEMS","features":[3]},{"name":"ERROR_NO_MORE_MATCHES","features":[3]},{"name":"ERROR_NO_MORE_SEARCH_HANDLES","features":[3]},{"name":"ERROR_NO_MORE_USER_HANDLES","features":[3]},{"name":"ERROR_NO_NETWORK","features":[3]},{"name":"ERROR_NO_NET_OR_BAD_PATH","features":[3]},{"name":"ERROR_NO_NVRAM_RESOURCES","features":[3]},{"name":"ERROR_NO_PAGEFILE","features":[3]},{"name":"ERROR_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[3]},{"name":"ERROR_NO_PROC_SLOTS","features":[3]},{"name":"ERROR_NO_PROMOTION_ACTIVE","features":[3]},{"name":"ERROR_NO_QUOTAS_FOR_ACCOUNT","features":[3]},{"name":"ERROR_NO_RADIUS_SERVERS","features":[3]},{"name":"ERROR_NO_RANGES_PROCESSED","features":[3]},{"name":"ERROR_NO_RECOVERY_POLICY","features":[3]},{"name":"ERROR_NO_RECOVERY_PROGRAM","features":[3]},{"name":"ERROR_NO_SAVEPOINT_WITH_OPEN_FILES","features":[3]},{"name":"ERROR_NO_SCROLLBARS","features":[3]},{"name":"ERROR_NO_SECRETS","features":[3]},{"name":"ERROR_NO_SECURITY_ON_OBJECT","features":[3]},{"name":"ERROR_NO_SHUTDOWN_IN_PROGRESS","features":[3]},{"name":"ERROR_NO_SIGNAL_SENT","features":[3]},{"name":"ERROR_NO_SIGNATURE","features":[3]},{"name":"ERROR_NO_SITENAME","features":[3]},{"name":"ERROR_NO_SITE_SETTINGS_OBJECT","features":[3]},{"name":"ERROR_NO_SPOOL_SPACE","features":[3]},{"name":"ERROR_NO_SUCH_ALIAS","features":[3]},{"name":"ERROR_NO_SUCH_DEVICE","features":[3]},{"name":"ERROR_NO_SUCH_DEVICE_INTERFACE","features":[3]},{"name":"ERROR_NO_SUCH_DEVINST","features":[3]},{"name":"ERROR_NO_SUCH_DOMAIN","features":[3]},{"name":"ERROR_NO_SUCH_GROUP","features":[3]},{"name":"ERROR_NO_SUCH_INTERFACE","features":[3]},{"name":"ERROR_NO_SUCH_INTERFACE_CLASS","features":[3]},{"name":"ERROR_NO_SUCH_INTERFACE_DEVICE","features":[3]},{"name":"ERROR_NO_SUCH_LOGON_SESSION","features":[3]},{"name":"ERROR_NO_SUCH_MEMBER","features":[3]},{"name":"ERROR_NO_SUCH_PACKAGE","features":[3]},{"name":"ERROR_NO_SUCH_PRIVILEGE","features":[3]},{"name":"ERROR_NO_SUCH_SITE","features":[3]},{"name":"ERROR_NO_SUCH_USER","features":[3]},{"name":"ERROR_NO_SUPPORTING_DRIVES","features":[3]},{"name":"ERROR_NO_SYSTEM_MENU","features":[3]},{"name":"ERROR_NO_SYSTEM_RESOURCES","features":[3]},{"name":"ERROR_NO_TASK_QUEUE","features":[3]},{"name":"ERROR_NO_TOKEN","features":[3]},{"name":"ERROR_NO_TRACKING_SERVICE","features":[3]},{"name":"ERROR_NO_TRUST_LSA_SECRET","features":[3]},{"name":"ERROR_NO_TRUST_SAM_ACCOUNT","features":[3]},{"name":"ERROR_NO_TXF_METADATA","features":[3]},{"name":"ERROR_NO_UNICODE_TRANSLATION","features":[3]},{"name":"ERROR_NO_USER_KEYS","features":[3]},{"name":"ERROR_NO_USER_SESSION_KEY","features":[3]},{"name":"ERROR_NO_VOLUME_ID","features":[3]},{"name":"ERROR_NO_VOLUME_LABEL","features":[3]},{"name":"ERROR_NO_WILDCARD_CHARACTERS","features":[3]},{"name":"ERROR_NO_WORK_DONE","features":[3]},{"name":"ERROR_NO_WRITABLE_DC_FOUND","features":[3]},{"name":"ERROR_NO_YIELD_PERFORMED","features":[3]},{"name":"ERROR_NTLM_BLOCKED","features":[3]},{"name":"ERROR_NT_CROSS_ENCRYPTION_REQUIRED","features":[3]},{"name":"ERROR_NULL_LM_PASSWORD","features":[3]},{"name":"ERROR_OBJECT_ALREADY_EXISTS","features":[3]},{"name":"ERROR_OBJECT_IN_LIST","features":[3]},{"name":"ERROR_OBJECT_IS_IMMUTABLE","features":[3]},{"name":"ERROR_OBJECT_NAME_EXISTS","features":[3]},{"name":"ERROR_OBJECT_NOT_EXTERNALLY_BACKED","features":[3]},{"name":"ERROR_OBJECT_NOT_FOUND","features":[3]},{"name":"ERROR_OBJECT_NO_LONGER_EXISTS","features":[3]},{"name":"ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[3]},{"name":"ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[3]},{"name":"ERROR_OFFSET_ALIGNMENT_VIOLATION","features":[3]},{"name":"ERROR_OLD_WIN_VERSION","features":[3]},{"name":"ERROR_ONLY_IF_CONNECTED","features":[3]},{"name":"ERROR_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[3]},{"name":"ERROR_OPEN_FAILED","features":[3]},{"name":"ERROR_OPEN_FILES","features":[3]},{"name":"ERROR_OPERATION_ABORTED","features":[3]},{"name":"ERROR_OPERATION_IN_PROGRESS","features":[3]},{"name":"ERROR_OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT","features":[3]},{"name":"ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[3]},{"name":"ERROR_OPLOCK_BREAK_IN_PROGRESS","features":[3]},{"name":"ERROR_OPLOCK_HANDLE_CLOSED","features":[3]},{"name":"ERROR_OPLOCK_NOT_GRANTED","features":[3]},{"name":"ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[3]},{"name":"ERROR_ORPHAN_NAME_EXHAUSTED","features":[3]},{"name":"ERROR_OUTOFMEMORY","features":[3]},{"name":"ERROR_OUT_OF_PAPER","features":[3]},{"name":"ERROR_OUT_OF_STRUCTURES","features":[3]},{"name":"ERROR_OVERRIDE_NOCHANGES","features":[3]},{"name":"ERROR_PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES","features":[3]},{"name":"ERROR_PACKAGES_IN_USE","features":[3]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_FAILED","features":[3]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_TIMEDOUT","features":[3]},{"name":"ERROR_PACKAGE_ALREADY_EXISTS","features":[3]},{"name":"ERROR_PACKAGE_EXTERNAL_LOCATION_NOT_ALLOWED","features":[3]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_FOR_MANDATORY_STARTUPTASKS","features":[3]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_TO_DEPLOY_ON_HOST","features":[3]},{"name":"ERROR_PACKAGE_MOVE_BLOCKED_BY_STREAMING","features":[3]},{"name":"ERROR_PACKAGE_MOVE_FAILED","features":[3]},{"name":"ERROR_PACKAGE_NAME_MISMATCH","features":[3]},{"name":"ERROR_PACKAGE_NOT_REGISTERED_FOR_USER","features":[3]},{"name":"ERROR_PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM","features":[3]},{"name":"ERROR_PACKAGE_REPOSITORY_CORRUPTED","features":[3]},{"name":"ERROR_PACKAGE_STAGING_ONHOLD","features":[3]},{"name":"ERROR_PACKAGE_UPDATING","features":[3]},{"name":"ERROR_PAGED_SYSTEM_RESOURCES","features":[3]},{"name":"ERROR_PAGEFILE_CREATE_FAILED","features":[3]},{"name":"ERROR_PAGEFILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_PAGEFILE_QUOTA","features":[3]},{"name":"ERROR_PAGEFILE_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_PAGE_FAULT_COPY_ON_WRITE","features":[3]},{"name":"ERROR_PAGE_FAULT_DEMAND_ZERO","features":[3]},{"name":"ERROR_PAGE_FAULT_GUARD_PAGE","features":[3]},{"name":"ERROR_PAGE_FAULT_PAGING_FILE","features":[3]},{"name":"ERROR_PAGE_FAULT_TRANSITION","features":[3]},{"name":"ERROR_PARAMETER_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_PARTIAL_COPY","features":[3]},{"name":"ERROR_PARTITION_FAILURE","features":[3]},{"name":"ERROR_PARTITION_TERMINATING","features":[3]},{"name":"ERROR_PASSWORD_CHANGE_REQUIRED","features":[3]},{"name":"ERROR_PASSWORD_EXPIRED","features":[3]},{"name":"ERROR_PASSWORD_MUST_CHANGE","features":[3]},{"name":"ERROR_PASSWORD_RESTRICTION","features":[3]},{"name":"ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT","features":[3]},{"name":"ERROR_PATCH_NO_SEQUENCE","features":[3]},{"name":"ERROR_PATCH_PACKAGE_INVALID","features":[3]},{"name":"ERROR_PATCH_PACKAGE_OPEN_FAILED","features":[3]},{"name":"ERROR_PATCH_PACKAGE_REJECTED","features":[3]},{"name":"ERROR_PATCH_PACKAGE_UNSUPPORTED","features":[3]},{"name":"ERROR_PATCH_REMOVAL_DISALLOWED","features":[3]},{"name":"ERROR_PATCH_REMOVAL_UNSUPPORTED","features":[3]},{"name":"ERROR_PATCH_TARGET_NOT_FOUND","features":[3]},{"name":"ERROR_PATH_BUSY","features":[3]},{"name":"ERROR_PATH_NOT_FOUND","features":[3]},{"name":"ERROR_PEER_REFUSED_AUTH","features":[3]},{"name":"ERROR_PER_USER_TRUST_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_PIPE_BUSY","features":[3]},{"name":"ERROR_PIPE_CONNECTED","features":[3]},{"name":"ERROR_PIPE_LISTENING","features":[3]},{"name":"ERROR_PIPE_LOCAL","features":[3]},{"name":"ERROR_PIPE_NOT_CONNECTED","features":[3]},{"name":"ERROR_PKINIT_FAILURE","features":[3]},{"name":"ERROR_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[3]},{"name":"ERROR_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[3]},{"name":"ERROR_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[3]},{"name":"ERROR_PLATFORM_MANIFEST_INVALID","features":[3]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_ACTIVE","features":[3]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[3]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_SIGNED","features":[3]},{"name":"ERROR_PLUGPLAY_QUERY_VETOED","features":[3]},{"name":"ERROR_PNP_BAD_MPS_TABLE","features":[3]},{"name":"ERROR_PNP_INVALID_ID","features":[3]},{"name":"ERROR_PNP_IRQ_TRANSLATION_FAILED","features":[3]},{"name":"ERROR_PNP_QUERY_REMOVE_DEVICE_TIMEOUT","features":[3]},{"name":"ERROR_PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT","features":[3]},{"name":"ERROR_PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT","features":[3]},{"name":"ERROR_PNP_REBOOT_REQUIRED","features":[3]},{"name":"ERROR_PNP_REGISTRY_ERROR","features":[3]},{"name":"ERROR_PNP_RESTART_ENUMERATION","features":[3]},{"name":"ERROR_PNP_TRANSLATION_FAILED","features":[3]},{"name":"ERROR_POINT_NOT_FOUND","features":[3]},{"name":"ERROR_POLICY_CONTROLLED_ACCOUNT","features":[3]},{"name":"ERROR_POLICY_OBJECT_NOT_FOUND","features":[3]},{"name":"ERROR_POLICY_ONLY_IN_DS","features":[3]},{"name":"ERROR_POPUP_ALREADY_ACTIVE","features":[3]},{"name":"ERROR_PORT_LIMIT_REACHED","features":[3]},{"name":"ERROR_PORT_MESSAGE_TOO_LONG","features":[3]},{"name":"ERROR_PORT_NOT_SET","features":[3]},{"name":"ERROR_PORT_UNREACHABLE","features":[3]},{"name":"ERROR_POSSIBLE_DEADLOCK","features":[3]},{"name":"ERROR_POTENTIAL_FILE_FOUND","features":[3]},{"name":"ERROR_PPP_SESSION_TIMEOUT","features":[3]},{"name":"ERROR_PREDEFINED_HANDLE","features":[3]},{"name":"ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[3]},{"name":"ERROR_PRINTER_ALREADY_EXISTS","features":[3]},{"name":"ERROR_PRINTER_DELETED","features":[3]},{"name":"ERROR_PRINTER_DRIVER_ALREADY_INSTALLED","features":[3]},{"name":"ERROR_PRINTER_DRIVER_BLOCKED","features":[3]},{"name":"ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED","features":[3]},{"name":"ERROR_PRINTER_DRIVER_IN_USE","features":[3]},{"name":"ERROR_PRINTER_DRIVER_PACKAGE_IN_USE","features":[3]},{"name":"ERROR_PRINTER_DRIVER_WARNED","features":[3]},{"name":"ERROR_PRINTER_HAS_JOBS_QUEUED","features":[3]},{"name":"ERROR_PRINTER_NOT_FOUND","features":[3]},{"name":"ERROR_PRINTER_NOT_SHAREABLE","features":[3]},{"name":"ERROR_PRINTQ_FULL","features":[3]},{"name":"ERROR_PRINT_CANCELLED","features":[3]},{"name":"ERROR_PRINT_JOB_RESTART_REQUIRED","features":[3]},{"name":"ERROR_PRINT_MONITOR_ALREADY_INSTALLED","features":[3]},{"name":"ERROR_PRINT_MONITOR_IN_USE","features":[3]},{"name":"ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED","features":[3]},{"name":"ERROR_PRIVATE_DIALOG_INDEX","features":[3]},{"name":"ERROR_PRIVILEGE_NOT_HELD","features":[3]},{"name":"ERROR_PRI_MERGE_ADD_FILE_FAILED","features":[3]},{"name":"ERROR_PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED","features":[3]},{"name":"ERROR_PRI_MERGE_INVALID_FILE_NAME","features":[3]},{"name":"ERROR_PRI_MERGE_LOAD_FILE_FAILED","features":[3]},{"name":"ERROR_PRI_MERGE_MAIN_PACKAGE_REQUIRED","features":[3]},{"name":"ERROR_PRI_MERGE_MISSING_SCHEMA","features":[3]},{"name":"ERROR_PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED","features":[3]},{"name":"ERROR_PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED","features":[3]},{"name":"ERROR_PRI_MERGE_RESOURCE_PACKAGE_REQUIRED","features":[3]},{"name":"ERROR_PRI_MERGE_VERSION_MISMATCH","features":[3]},{"name":"ERROR_PRI_MERGE_WRITE_FILE_FAILED","features":[3]},{"name":"ERROR_PROCESS_ABORTED","features":[3]},{"name":"ERROR_PROCESS_IN_JOB","features":[3]},{"name":"ERROR_PROCESS_IS_PROTECTED","features":[3]},{"name":"ERROR_PROCESS_MODE_ALREADY_BACKGROUND","features":[3]},{"name":"ERROR_PROCESS_MODE_NOT_BACKGROUND","features":[3]},{"name":"ERROR_PROCESS_NOT_IN_JOB","features":[3]},{"name":"ERROR_PROC_NOT_FOUND","features":[3]},{"name":"ERROR_PRODUCT_UNINSTALLED","features":[3]},{"name":"ERROR_PRODUCT_VERSION","features":[3]},{"name":"ERROR_PROFILE_DOES_NOT_MATCH_DEVICE","features":[3]},{"name":"ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE","features":[3]},{"name":"ERROR_PROFILE_NOT_FOUND","features":[3]},{"name":"ERROR_PROFILING_AT_LIMIT","features":[3]},{"name":"ERROR_PROFILING_NOT_STARTED","features":[3]},{"name":"ERROR_PROFILING_NOT_STOPPED","features":[3]},{"name":"ERROR_PROMOTION_ACTIVE","features":[3]},{"name":"ERROR_PROTOCOL_ALREADY_INSTALLED","features":[3]},{"name":"ERROR_PROTOCOL_STOP_PENDING","features":[3]},{"name":"ERROR_PROTOCOL_UNREACHABLE","features":[3]},{"name":"ERROR_PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED","features":[3]},{"name":"ERROR_PWD_HISTORY_CONFLICT","features":[3]},{"name":"ERROR_PWD_TOO_LONG","features":[3]},{"name":"ERROR_PWD_TOO_RECENT","features":[3]},{"name":"ERROR_PWD_TOO_SHORT","features":[3]},{"name":"ERROR_QUERY_STORAGE_ERROR","features":[3]},{"name":"ERROR_QUIC_ALPN_NEG_FAILURE","features":[3]},{"name":"ERROR_QUIC_CONNECTION_IDLE","features":[3]},{"name":"ERROR_QUIC_CONNECTION_TIMEOUT","features":[3]},{"name":"ERROR_QUIC_HANDSHAKE_FAILURE","features":[3]},{"name":"ERROR_QUIC_INTERNAL_ERROR","features":[3]},{"name":"ERROR_QUIC_PROTOCOL_VIOLATION","features":[3]},{"name":"ERROR_QUIC_USER_CANCELED","features":[3]},{"name":"ERROR_QUIC_VER_NEG_FAILURE","features":[3]},{"name":"ERROR_QUORUMLOG_OPEN_FAILED","features":[3]},{"name":"ERROR_QUORUM_DISK_NOT_FOUND","features":[3]},{"name":"ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP","features":[3]},{"name":"ERROR_QUORUM_OWNER_ALIVE","features":[3]},{"name":"ERROR_QUORUM_RESOURCE","features":[3]},{"name":"ERROR_QUORUM_RESOURCE_ONLINE_FAILED","features":[3]},{"name":"ERROR_QUOTA_ACTIVITY","features":[3]},{"name":"ERROR_QUOTA_LIST_INCONSISTENT","features":[3]},{"name":"ERROR_RANGE_LIST_CONFLICT","features":[3]},{"name":"ERROR_RANGE_NOT_FOUND","features":[3]},{"name":"ERROR_RDP_PROTOCOL_ERROR","features":[3]},{"name":"ERROR_READ_FAULT","features":[3]},{"name":"ERROR_RECEIVE_EXPEDITED","features":[3]},{"name":"ERROR_RECEIVE_PARTIAL","features":[3]},{"name":"ERROR_RECEIVE_PARTIAL_EXPEDITED","features":[3]},{"name":"ERROR_RECOVERY_FAILURE","features":[3]},{"name":"ERROR_RECOVERY_FILE_CORRUPT","features":[3]},{"name":"ERROR_RECOVERY_NOT_NEEDED","features":[3]},{"name":"ERROR_REC_NON_EXISTENT","features":[3]},{"name":"ERROR_REDIRECTION_TO_DEFAULT_ACCOUNT_NOT_ALLOWED","features":[3]},{"name":"ERROR_REDIRECTOR_HAS_OPEN_HANDLES","features":[3]},{"name":"ERROR_REDIR_PAUSED","features":[3]},{"name":"ERROR_REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_REGISTRY_CORRUPT","features":[3]},{"name":"ERROR_REGISTRY_HIVE_RECOVERED","features":[3]},{"name":"ERROR_REGISTRY_IO_FAILED","features":[3]},{"name":"ERROR_REGISTRY_QUOTA_LIMIT","features":[3]},{"name":"ERROR_REGISTRY_RECOVERED","features":[3]},{"name":"ERROR_REG_NAT_CONSUMPTION","features":[3]},{"name":"ERROR_RELOC_CHAIN_XEEDS_SEGLIM","features":[3]},{"name":"ERROR_REMOTEACCESS_NOT_CONFIGURED","features":[3]},{"name":"ERROR_REMOTE_ACCT_DISABLED","features":[3]},{"name":"ERROR_REMOTE_AUTHENTICATION_FAILURE","features":[3]},{"name":"ERROR_REMOTE_COMM_FAILURE","features":[3]},{"name":"ERROR_REMOTE_FILE_VERSION_MISMATCH","features":[3]},{"name":"ERROR_REMOTE_NO_DIALIN_PERMISSION","features":[3]},{"name":"ERROR_REMOTE_PASSWD_EXPIRED","features":[3]},{"name":"ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED","features":[3]},{"name":"ERROR_REMOTE_REQUEST_UNSUPPORTED","features":[3]},{"name":"ERROR_REMOTE_RESTRICTED_LOGON_HOURS","features":[3]},{"name":"ERROR_REMOTE_SESSION_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_REMOTE_STORAGE_MEDIA_ERROR","features":[3]},{"name":"ERROR_REMOTE_STORAGE_NOT_ACTIVE","features":[3]},{"name":"ERROR_REMOVE_FAILED","features":[3]},{"name":"ERROR_REM_NOT_LIST","features":[3]},{"name":"ERROR_REPARSE","features":[3]},{"name":"ERROR_REPARSE_ATTRIBUTE_CONFLICT","features":[3]},{"name":"ERROR_REPARSE_OBJECT","features":[3]},{"name":"ERROR_REPARSE_POINT_ENCOUNTERED","features":[3]},{"name":"ERROR_REPARSE_TAG_INVALID","features":[3]},{"name":"ERROR_REPARSE_TAG_MISMATCH","features":[3]},{"name":"ERROR_REPLY_MESSAGE_MISMATCH","features":[3]},{"name":"ERROR_REQUEST_ABORTED","features":[3]},{"name":"ERROR_REQUEST_OUT_OF_SEQUENCE","features":[3]},{"name":"ERROR_REQUEST_PAUSED","features":[3]},{"name":"ERROR_REQUEST_REFUSED","features":[3]},{"name":"ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION","features":[3]},{"name":"ERROR_REQ_NOT_ACCEP","features":[3]},{"name":"ERROR_RESIDENT_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_RESILIENCY_FILE_CORRUPT","features":[3]},{"name":"ERROR_RESMON_CREATE_FAILED","features":[3]},{"name":"ERROR_RESMON_INVALID_STATE","features":[3]},{"name":"ERROR_RESMON_ONLINE_FAILED","features":[3]},{"name":"ERROR_RESMON_SYSTEM_RESOURCES_LACKING","features":[3]},{"name":"ERROR_RESOURCEMANAGER_NOT_FOUND","features":[3]},{"name":"ERROR_RESOURCEMANAGER_READ_ONLY","features":[3]},{"name":"ERROR_RESOURCE_CALL_TIMED_OUT","features":[3]},{"name":"ERROR_RESOURCE_DATA_NOT_FOUND","features":[3]},{"name":"ERROR_RESOURCE_DISABLED","features":[3]},{"name":"ERROR_RESOURCE_ENUM_USER_STOP","features":[3]},{"name":"ERROR_RESOURCE_FAILED","features":[3]},{"name":"ERROR_RESOURCE_LANG_NOT_FOUND","features":[3]},{"name":"ERROR_RESOURCE_NAME_NOT_FOUND","features":[3]},{"name":"ERROR_RESOURCE_NOT_AVAILABLE","features":[3]},{"name":"ERROR_RESOURCE_NOT_FOUND","features":[3]},{"name":"ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE","features":[3]},{"name":"ERROR_RESOURCE_NOT_ONLINE","features":[3]},{"name":"ERROR_RESOURCE_NOT_PRESENT","features":[3]},{"name":"ERROR_RESOURCE_ONLINE","features":[3]},{"name":"ERROR_RESOURCE_PROPERTIES_STORED","features":[3]},{"name":"ERROR_RESOURCE_PROPERTY_UNCHANGEABLE","features":[3]},{"name":"ERROR_RESOURCE_REQUIREMENTS_CHANGED","features":[3]},{"name":"ERROR_RESOURCE_TYPE_NOT_FOUND","features":[3]},{"name":"ERROR_RESTART_APPLICATION","features":[3]},{"name":"ERROR_RESUME_HIBERNATION","features":[3]},{"name":"ERROR_RETRY","features":[3]},{"name":"ERROR_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[3]},{"name":"ERROR_REVISION_MISMATCH","features":[3]},{"name":"ERROR_RING2SEG_MUST_BE_MOVABLE","features":[3]},{"name":"ERROR_RING2_STACK_IN_USE","features":[3]},{"name":"ERROR_RMODE_APP","features":[3]},{"name":"ERROR_RM_ALREADY_STARTED","features":[3]},{"name":"ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[3]},{"name":"ERROR_RM_DISCONNECTED","features":[3]},{"name":"ERROR_RM_METADATA_CORRUPT","features":[3]},{"name":"ERROR_RM_NOT_ACTIVE","features":[3]},{"name":"ERROR_ROLLBACK_TIMER_EXPIRED","features":[3]},{"name":"ERROR_ROUTER_CONFIG_INCOMPATIBLE","features":[3]},{"name":"ERROR_ROUTER_STOPPED","features":[3]},{"name":"ERROR_ROWSNOTRELEASED","features":[3]},{"name":"ERROR_RPL_NOT_ALLOWED","features":[3]},{"name":"ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[3]},{"name":"ERROR_RUNLEVEL_SWITCH_IN_PROGRESS","features":[3]},{"name":"ERROR_RUNLEVEL_SWITCH_TIMEOUT","features":[3]},{"name":"ERROR_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[3]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[3]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[3]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[3]},{"name":"ERROR_RXACT_COMMITTED","features":[3]},{"name":"ERROR_RXACT_COMMIT_FAILURE","features":[3]},{"name":"ERROR_RXACT_COMMIT_NECESSARY","features":[3]},{"name":"ERROR_RXACT_INVALID_STATE","features":[3]},{"name":"ERROR_RXACT_STATE_CREATED","features":[3]},{"name":"ERROR_SAME_DRIVE","features":[3]},{"name":"ERROR_SAM_INIT_FAILURE","features":[3]},{"name":"ERROR_SCE_DISABLED","features":[3]},{"name":"ERROR_SCOPE_NOT_FOUND","features":[3]},{"name":"ERROR_SCREEN_ALREADY_LOCKED","features":[3]},{"name":"ERROR_SCRUB_DATA_DISABLED","features":[3]},{"name":"ERROR_SECCORE_INVALID_COMMAND","features":[3]},{"name":"ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[3]},{"name":"ERROR_SECRET_TOO_LONG","features":[3]},{"name":"ERROR_SECTION_DIRECT_MAP_ONLY","features":[3]},{"name":"ERROR_SECTION_NAME_TOO_LONG","features":[3]},{"name":"ERROR_SECTION_NOT_FOUND","features":[3]},{"name":"ERROR_SECTOR_NOT_FOUND","features":[3]},{"name":"ERROR_SECUREBOOT_FILE_REPLACED","features":[3]},{"name":"ERROR_SECUREBOOT_INVALID_POLICY","features":[3]},{"name":"ERROR_SECUREBOOT_NOT_BASE_POLICY","features":[3]},{"name":"ERROR_SECUREBOOT_NOT_ENABLED","features":[3]},{"name":"ERROR_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[3]},{"name":"ERROR_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_SIGNED","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_UNKNOWN","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[3]},{"name":"ERROR_SECUREBOOT_POLICY_VIOLATION","features":[3]},{"name":"ERROR_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[3]},{"name":"ERROR_SECUREBOOT_ROLLBACK_DETECTED","features":[3]},{"name":"ERROR_SECURITY_DENIES_OPERATION","features":[3]},{"name":"ERROR_SECURITY_STREAM_IS_INCONSISTENT","features":[3]},{"name":"ERROR_SEEK","features":[3]},{"name":"ERROR_SEEK_ON_DEVICE","features":[3]},{"name":"ERROR_SEGMENT_NOTIFICATION","features":[3]},{"name":"ERROR_SEM_IS_SET","features":[3]},{"name":"ERROR_SEM_NOT_FOUND","features":[3]},{"name":"ERROR_SEM_OWNER_DIED","features":[3]},{"name":"ERROR_SEM_TIMEOUT","features":[3]},{"name":"ERROR_SEM_USER_LIMIT","features":[3]},{"name":"ERROR_SERIAL_NO_DEVICE","features":[3]},{"name":"ERROR_SERVER_DISABLED","features":[3]},{"name":"ERROR_SERVER_HAS_OPEN_HANDLES","features":[3]},{"name":"ERROR_SERVER_NOT_DISABLED","features":[3]},{"name":"ERROR_SERVER_SERVICE_CALL_REQUIRES_SMB1","features":[3]},{"name":"ERROR_SERVER_SHUTDOWN_IN_PROGRESS","features":[3]},{"name":"ERROR_SERVER_SID_MISMATCH","features":[3]},{"name":"ERROR_SERVER_TRANSPORT_CONFLICT","features":[3]},{"name":"ERROR_SERVICES_FAILED_AUTOSTART","features":[3]},{"name":"ERROR_SERVICE_ALREADY_RUNNING","features":[3]},{"name":"ERROR_SERVICE_CANNOT_ACCEPT_CTRL","features":[3]},{"name":"ERROR_SERVICE_DATABASE_LOCKED","features":[3]},{"name":"ERROR_SERVICE_DEPENDENCY_DELETED","features":[3]},{"name":"ERROR_SERVICE_DEPENDENCY_FAIL","features":[3]},{"name":"ERROR_SERVICE_DISABLED","features":[3]},{"name":"ERROR_SERVICE_DOES_NOT_EXIST","features":[3]},{"name":"ERROR_SERVICE_EXISTS","features":[3]},{"name":"ERROR_SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE","features":[3]},{"name":"ERROR_SERVICE_IS_PAUSED","features":[3]},{"name":"ERROR_SERVICE_LOGON_FAILED","features":[3]},{"name":"ERROR_SERVICE_MARKED_FOR_DELETE","features":[3]},{"name":"ERROR_SERVICE_NEVER_STARTED","features":[3]},{"name":"ERROR_SERVICE_NOTIFICATION","features":[3]},{"name":"ERROR_SERVICE_NOTIFY_CLIENT_LAGGING","features":[3]},{"name":"ERROR_SERVICE_NOT_ACTIVE","features":[3]},{"name":"ERROR_SERVICE_NOT_FOUND","features":[3]},{"name":"ERROR_SERVICE_NOT_IN_EXE","features":[3]},{"name":"ERROR_SERVICE_NO_THREAD","features":[3]},{"name":"ERROR_SERVICE_REQUEST_TIMEOUT","features":[3]},{"name":"ERROR_SERVICE_SPECIFIC_ERROR","features":[3]},{"name":"ERROR_SERVICE_START_HANG","features":[3]},{"name":"ERROR_SESSION_CREDENTIAL_CONFLICT","features":[3]},{"name":"ERROR_SESSION_KEY_TOO_SHORT","features":[3]},{"name":"ERROR_SETCOUNT_ON_BAD_LB","features":[3]},{"name":"ERROR_SETMARK_DETECTED","features":[3]},{"name":"ERROR_SET_CONTEXT_DENIED","features":[3]},{"name":"ERROR_SET_NOT_FOUND","features":[3]},{"name":"ERROR_SET_POWER_STATE_FAILED","features":[3]},{"name":"ERROR_SET_POWER_STATE_VETOED","features":[3]},{"name":"ERROR_SET_SYSTEM_RESTORE_POINT","features":[3]},{"name":"ERROR_SHARED_POLICY","features":[3]},{"name":"ERROR_SHARING_BUFFER_EXCEEDED","features":[3]},{"name":"ERROR_SHARING_PAUSED","features":[3]},{"name":"ERROR_SHARING_VIOLATION","features":[3]},{"name":"ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[3]},{"name":"ERROR_SHUTDOWN_CLUSTER","features":[3]},{"name":"ERROR_SHUTDOWN_DISKS_NOT_IN_MAINTENANCE_MODE","features":[3]},{"name":"ERROR_SHUTDOWN_IN_PROGRESS","features":[3]},{"name":"ERROR_SHUTDOWN_IS_SCHEDULED","features":[3]},{"name":"ERROR_SHUTDOWN_USERS_LOGGED_ON","features":[3]},{"name":"ERROR_SIGNAL_PENDING","features":[3]},{"name":"ERROR_SIGNAL_REFUSED","features":[3]},{"name":"ERROR_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[3]},{"name":"ERROR_SIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[3]},{"name":"ERROR_SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER","features":[3]},{"name":"ERROR_SINGLE_INSTANCE_APP","features":[3]},{"name":"ERROR_SMARTCARD_SUBSYSTEM_FAILURE","features":[3]},{"name":"ERROR_SMB1_NOT_AVAILABLE","features":[3]},{"name":"ERROR_SMB_BAD_CLUSTER_DIALECT","features":[3]},{"name":"ERROR_SMB_GUEST_LOGON_BLOCKED","features":[3]},{"name":"ERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[3]},{"name":"ERROR_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[3]},{"name":"ERROR_SMI_PRIMITIVE_INSTALLER_FAILED","features":[3]},{"name":"ERROR_SMR_GARBAGE_COLLECTION_REQUIRED","features":[3]},{"name":"ERROR_SOME_NOT_MAPPED","features":[3]},{"name":"ERROR_SOURCE_ELEMENT_EMPTY","features":[3]},{"name":"ERROR_SPACES_ALLOCATION_SIZE_INVALID","features":[3]},{"name":"ERROR_SPACES_CACHE_FULL","features":[3]},{"name":"ERROR_SPACES_CORRUPT_METADATA","features":[3]},{"name":"ERROR_SPACES_DRIVE_LOST_DATA","features":[3]},{"name":"ERROR_SPACES_DRIVE_NOT_READY","features":[3]},{"name":"ERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[3]},{"name":"ERROR_SPACES_DRIVE_REDUNDANCY_INVALID","features":[3]},{"name":"ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[3]},{"name":"ERROR_SPACES_DRIVE_SPLIT","features":[3]},{"name":"ERROR_SPACES_DRT_FULL","features":[3]},{"name":"ERROR_SPACES_ENCLOSURE_AWARE_INVALID","features":[3]},{"name":"ERROR_SPACES_ENTRY_INCOMPLETE","features":[3]},{"name":"ERROR_SPACES_ENTRY_INVALID","features":[3]},{"name":"ERROR_SPACES_EXTENDED_ERROR","features":[3]},{"name":"ERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[3]},{"name":"ERROR_SPACES_FLUSH_METADATA","features":[3]},{"name":"ERROR_SPACES_INCONSISTENCY","features":[3]},{"name":"ERROR_SPACES_INTERLEAVE_LENGTH_INVALID","features":[3]},{"name":"ERROR_SPACES_INTERNAL_ERROR","features":[3]},{"name":"ERROR_SPACES_LOG_NOT_READY","features":[3]},{"name":"ERROR_SPACES_MAP_REQUIRED","features":[3]},{"name":"ERROR_SPACES_MARK_DIRTY","features":[3]},{"name":"ERROR_SPACES_NOT_ENOUGH_DRIVES","features":[3]},{"name":"ERROR_SPACES_NO_REDUNDANCY","features":[3]},{"name":"ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[3]},{"name":"ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[3]},{"name":"ERROR_SPACES_NUMBER_OF_GROUPS_INVALID","features":[3]},{"name":"ERROR_SPACES_PARITY_LAYOUT_INVALID","features":[3]},{"name":"ERROR_SPACES_POOL_WAS_DELETED","features":[3]},{"name":"ERROR_SPACES_PROVISIONING_TYPE_INVALID","features":[3]},{"name":"ERROR_SPACES_REPAIR_IN_PROGRESS","features":[3]},{"name":"ERROR_SPACES_RESILIENCY_TYPE_INVALID","features":[3]},{"name":"ERROR_SPACES_UNSUPPORTED_VERSION","features":[3]},{"name":"ERROR_SPACES_UPDATE_COLUMN_STATE","features":[3]},{"name":"ERROR_SPACES_WRITE_CACHE_SIZE_INVALID","features":[3]},{"name":"ERROR_SPARSE_FILE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[3]},{"name":"ERROR_SPECIAL_ACCOUNT","features":[3]},{"name":"ERROR_SPECIAL_GROUP","features":[3]},{"name":"ERROR_SPECIAL_USER","features":[3]},{"name":"ERROR_SPL_NO_ADDJOB","features":[3]},{"name":"ERROR_SPL_NO_STARTDOC","features":[3]},{"name":"ERROR_SPOOL_FILE_NOT_FOUND","features":[3]},{"name":"ERROR_SRC_SRV_DLL_LOAD_FAILED","features":[3]},{"name":"ERROR_STACK_BUFFER_OVERRUN","features":[3]},{"name":"ERROR_STACK_OVERFLOW","features":[3]},{"name":"ERROR_STACK_OVERFLOW_READ","features":[3]},{"name":"ERROR_STAGEFROMUPDATEAGENT_PACKAGE_NOT_APPLICABLE","features":[3]},{"name":"ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_STATE_CREATE_CONTAINER_FAILED","features":[3]},{"name":"ERROR_STATE_DELETE_CONTAINER_FAILED","features":[3]},{"name":"ERROR_STATE_DELETE_SETTING_FAILED","features":[3]},{"name":"ERROR_STATE_ENUMERATE_CONTAINER_FAILED","features":[3]},{"name":"ERROR_STATE_ENUMERATE_SETTINGS_FAILED","features":[3]},{"name":"ERROR_STATE_GET_VERSION_FAILED","features":[3]},{"name":"ERROR_STATE_LOAD_STORE_FAILED","features":[3]},{"name":"ERROR_STATE_OPEN_CONTAINER_FAILED","features":[3]},{"name":"ERROR_STATE_QUERY_SETTING_FAILED","features":[3]},{"name":"ERROR_STATE_READ_COMPOSITE_SETTING_FAILED","features":[3]},{"name":"ERROR_STATE_READ_SETTING_FAILED","features":[3]},{"name":"ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_STATE_SET_VERSION_FAILED","features":[3]},{"name":"ERROR_STATE_STRUCTURED_RESET_FAILED","features":[3]},{"name":"ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED","features":[3]},{"name":"ERROR_STATE_WRITE_SETTING_FAILED","features":[3]},{"name":"ERROR_STATIC_INIT","features":[3]},{"name":"ERROR_STOPPED_ON_SYMLINK","features":[3]},{"name":"ERROR_STORAGE_LOST_DATA_PERSISTENCE","features":[3]},{"name":"ERROR_STORAGE_RESERVE_ALREADY_EXISTS","features":[3]},{"name":"ERROR_STORAGE_RESERVE_DOES_NOT_EXIST","features":[3]},{"name":"ERROR_STORAGE_RESERVE_ID_INVALID","features":[3]},{"name":"ERROR_STORAGE_RESERVE_NOT_EMPTY","features":[3]},{"name":"ERROR_STORAGE_STACK_ACCESS_DENIED","features":[3]},{"name":"ERROR_STORAGE_TOPOLOGY_ID_MISMATCH","features":[3]},{"name":"ERROR_STREAM_MINIVERSION_NOT_FOUND","features":[3]},{"name":"ERROR_STREAM_MINIVERSION_NOT_VALID","features":[3]},{"name":"ERROR_STRICT_CFG_VIOLATION","features":[3]},{"name":"ERROR_SUBST_TO_JOIN","features":[3]},{"name":"ERROR_SUBST_TO_SUBST","features":[3]},{"name":"ERROR_SUCCESS","features":[3]},{"name":"ERROR_SUCCESS_REBOOT_INITIATED","features":[3]},{"name":"ERROR_SUCCESS_REBOOT_REQUIRED","features":[3]},{"name":"ERROR_SUCCESS_RESTART_REQUIRED","features":[3]},{"name":"ERROR_SVHDX_ERROR_NOT_AVAILABLE","features":[3]},{"name":"ERROR_SVHDX_ERROR_STORED","features":[3]},{"name":"ERROR_SVHDX_NO_INITIATOR","features":[3]},{"name":"ERROR_SVHDX_RESERVATION_CONFLICT","features":[3]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[3]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[3]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[3]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[3]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[3]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[3]},{"name":"ERROR_SVHDX_VERSION_MISMATCH","features":[3]},{"name":"ERROR_SVHDX_WRONG_FILE_TYPE","features":[3]},{"name":"ERROR_SWAPERROR","features":[3]},{"name":"ERROR_SXS_ACTIVATION_CONTEXT_DISABLED","features":[3]},{"name":"ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[3]},{"name":"ERROR_SXS_ASSEMBLY_MISSING","features":[3]},{"name":"ERROR_SXS_ASSEMBLY_NOT_FOUND","features":[3]},{"name":"ERROR_SXS_ASSEMBLY_NOT_LOCKED","features":[3]},{"name":"ERROR_SXS_CANT_GEN_ACTCTX","features":[3]},{"name":"ERROR_SXS_COMPONENT_STORE_CORRUPT","features":[3]},{"name":"ERROR_SXS_CORRUPTION","features":[3]},{"name":"ERROR_SXS_CORRUPT_ACTIVATION_STACK","features":[3]},{"name":"ERROR_SXS_DUPLICATE_ACTIVATABLE_CLASS","features":[3]},{"name":"ERROR_SXS_DUPLICATE_ASSEMBLY_NAME","features":[3]},{"name":"ERROR_SXS_DUPLICATE_CLSID","features":[3]},{"name":"ERROR_SXS_DUPLICATE_DLL_NAME","features":[3]},{"name":"ERROR_SXS_DUPLICATE_IID","features":[3]},{"name":"ERROR_SXS_DUPLICATE_PROGID","features":[3]},{"name":"ERROR_SXS_DUPLICATE_TLBID","features":[3]},{"name":"ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME","features":[3]},{"name":"ERROR_SXS_EARLY_DEACTIVATION","features":[3]},{"name":"ERROR_SXS_FILE_HASH_MISMATCH","features":[3]},{"name":"ERROR_SXS_FILE_HASH_MISSING","features":[3]},{"name":"ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[3]},{"name":"ERROR_SXS_IDENTITIES_DIFFERENT","features":[3]},{"name":"ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[3]},{"name":"ERROR_SXS_IDENTITY_PARSE_ERROR","features":[3]},{"name":"ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN","features":[3]},{"name":"ERROR_SXS_INVALID_ACTCTXDATA_FORMAT","features":[3]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[3]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME","features":[3]},{"name":"ERROR_SXS_INVALID_DEACTIVATION","features":[3]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[3]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[3]},{"name":"ERROR_SXS_INVALID_XML_NAMESPACE_URI","features":[3]},{"name":"ERROR_SXS_KEY_NOT_FOUND","features":[3]},{"name":"ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[3]},{"name":"ERROR_SXS_MANIFEST_FORMAT_ERROR","features":[3]},{"name":"ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[3]},{"name":"ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE","features":[3]},{"name":"ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE","features":[3]},{"name":"ERROR_SXS_MANIFEST_PARSE_ERROR","features":[3]},{"name":"ERROR_SXS_MANIFEST_TOO_BIG","features":[3]},{"name":"ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[3]},{"name":"ERROR_SXS_MULTIPLE_DEACTIVATION","features":[3]},{"name":"ERROR_SXS_POLICY_PARSE_ERROR","features":[3]},{"name":"ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT","features":[3]},{"name":"ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[3]},{"name":"ERROR_SXS_PROCESS_TERMINATION_REQUESTED","features":[3]},{"name":"ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING","features":[3]},{"name":"ERROR_SXS_PROTECTION_CATALOG_NOT_VALID","features":[3]},{"name":"ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT","features":[3]},{"name":"ERROR_SXS_PROTECTION_RECOVERY_FAILED","features":[3]},{"name":"ERROR_SXS_RELEASE_ACTIVATION_CONTEXT","features":[3]},{"name":"ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[3]},{"name":"ERROR_SXS_SECTION_NOT_FOUND","features":[3]},{"name":"ERROR_SXS_SETTING_NOT_REGISTERED","features":[3]},{"name":"ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[3]},{"name":"ERROR_SXS_THREAD_QUERIES_DISABLED","features":[3]},{"name":"ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[3]},{"name":"ERROR_SXS_UNKNOWN_ENCODING","features":[3]},{"name":"ERROR_SXS_UNKNOWN_ENCODING_GROUP","features":[3]},{"name":"ERROR_SXS_UNTRANSLATABLE_HRESULT","features":[3]},{"name":"ERROR_SXS_VERSION_CONFLICT","features":[3]},{"name":"ERROR_SXS_WRONG_SECTION_TYPE","features":[3]},{"name":"ERROR_SXS_XML_E_BADCHARDATA","features":[3]},{"name":"ERROR_SXS_XML_E_BADCHARINSTRING","features":[3]},{"name":"ERROR_SXS_XML_E_BADNAMECHAR","features":[3]},{"name":"ERROR_SXS_XML_E_BADPEREFINSUBSET","features":[3]},{"name":"ERROR_SXS_XML_E_BADSTARTNAMECHAR","features":[3]},{"name":"ERROR_SXS_XML_E_BADXMLCASE","features":[3]},{"name":"ERROR_SXS_XML_E_BADXMLDECL","features":[3]},{"name":"ERROR_SXS_XML_E_COMMENTSYNTAX","features":[3]},{"name":"ERROR_SXS_XML_E_DUPLICATEATTRIBUTE","features":[3]},{"name":"ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE","features":[3]},{"name":"ERROR_SXS_XML_E_EXPECTINGTAGEND","features":[3]},{"name":"ERROR_SXS_XML_E_INCOMPLETE_ENCODING","features":[3]},{"name":"ERROR_SXS_XML_E_INTERNALERROR","features":[3]},{"name":"ERROR_SXS_XML_E_INVALIDATROOTLEVEL","features":[3]},{"name":"ERROR_SXS_XML_E_INVALIDENCODING","features":[3]},{"name":"ERROR_SXS_XML_E_INVALIDSWITCH","features":[3]},{"name":"ERROR_SXS_XML_E_INVALID_DECIMAL","features":[3]},{"name":"ERROR_SXS_XML_E_INVALID_HEXIDECIMAL","features":[3]},{"name":"ERROR_SXS_XML_E_INVALID_STANDALONE","features":[3]},{"name":"ERROR_SXS_XML_E_INVALID_UNICODE","features":[3]},{"name":"ERROR_SXS_XML_E_INVALID_VERSION","features":[3]},{"name":"ERROR_SXS_XML_E_MISSINGEQUALS","features":[3]},{"name":"ERROR_SXS_XML_E_MISSINGQUOTE","features":[3]},{"name":"ERROR_SXS_XML_E_MISSINGROOT","features":[3]},{"name":"ERROR_SXS_XML_E_MISSINGSEMICOLON","features":[3]},{"name":"ERROR_SXS_XML_E_MISSINGWHITESPACE","features":[3]},{"name":"ERROR_SXS_XML_E_MISSING_PAREN","features":[3]},{"name":"ERROR_SXS_XML_E_MULTIPLEROOTS","features":[3]},{"name":"ERROR_SXS_XML_E_MULTIPLE_COLONS","features":[3]},{"name":"ERROR_SXS_XML_E_RESERVEDNAMESPACE","features":[3]},{"name":"ERROR_SXS_XML_E_UNBALANCEDPAREN","features":[3]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCDATA","features":[3]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCOMMENT","features":[3]},{"name":"ERROR_SXS_XML_E_UNCLOSEDDECL","features":[3]},{"name":"ERROR_SXS_XML_E_UNCLOSEDENDTAG","features":[3]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTARTTAG","features":[3]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTRING","features":[3]},{"name":"ERROR_SXS_XML_E_UNCLOSEDTAG","features":[3]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDENDTAG","features":[3]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDEOF","features":[3]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_STANDALONE","features":[3]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE","features":[3]},{"name":"ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK","features":[3]},{"name":"ERROR_SXS_XML_E_XMLDECLSYNTAX","features":[3]},{"name":"ERROR_SYMLINK_CLASS_DISABLED","features":[3]},{"name":"ERROR_SYMLINK_NOT_SUPPORTED","features":[3]},{"name":"ERROR_SYNCHRONIZATION_REQUIRED","features":[3]},{"name":"ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED","features":[3]},{"name":"ERROR_SYSTEM_DEVICE_NOT_FOUND","features":[3]},{"name":"ERROR_SYSTEM_HIVE_TOO_LARGE","features":[3]},{"name":"ERROR_SYSTEM_IMAGE_BAD_SIGNATURE","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_INVALID_POLICY","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[3]},{"name":"ERROR_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[3]},{"name":"ERROR_SYSTEM_NEEDS_REMEDIATION","features":[3]},{"name":"ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[3]},{"name":"ERROR_SYSTEM_POWERSTATE_TRANSITION","features":[3]},{"name":"ERROR_SYSTEM_PROCESS_TERMINATED","features":[3]},{"name":"ERROR_SYSTEM_SHUTDOWN","features":[3]},{"name":"ERROR_SYSTEM_TRACE","features":[3]},{"name":"ERROR_TAG_NOT_FOUND","features":[3]},{"name":"ERROR_TAG_NOT_PRESENT","features":[3]},{"name":"ERROR_THREAD_1_INACTIVE","features":[3]},{"name":"ERROR_THREAD_ALREADY_IN_TASK","features":[3]},{"name":"ERROR_THREAD_MODE_ALREADY_BACKGROUND","features":[3]},{"name":"ERROR_THREAD_MODE_NOT_BACKGROUND","features":[3]},{"name":"ERROR_THREAD_NOT_IN_PROCESS","features":[3]},{"name":"ERROR_THREAD_WAS_SUSPENDED","features":[3]},{"name":"ERROR_TIERING_ALREADY_PROCESSING","features":[3]},{"name":"ERROR_TIERING_CANNOT_PIN_OBJECT","features":[3]},{"name":"ERROR_TIERING_FILE_IS_NOT_PINNED","features":[3]},{"name":"ERROR_TIERING_INVALID_FILE_ID","features":[3]},{"name":"ERROR_TIERING_NOT_SUPPORTED_ON_VOLUME","features":[3]},{"name":"ERROR_TIERING_STORAGE_TIER_NOT_FOUND","features":[3]},{"name":"ERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS","features":[3]},{"name":"ERROR_TIERING_WRONG_CLUSTER_NODE","features":[3]},{"name":"ERROR_TIMEOUT","features":[3]},{"name":"ERROR_TIMER_NOT_CANCELED","features":[3]},{"name":"ERROR_TIMER_RESOLUTION_NOT_SET","features":[3]},{"name":"ERROR_TIMER_RESUME_IGNORED","features":[3]},{"name":"ERROR_TIME_SENSITIVE_THREAD","features":[3]},{"name":"ERROR_TIME_SKEW","features":[3]},{"name":"ERROR_TLW_WITH_WSCHILD","features":[3]},{"name":"ERROR_TM_IDENTITY_MISMATCH","features":[3]},{"name":"ERROR_TM_INITIALIZATION_FAILED","features":[3]},{"name":"ERROR_TM_VOLATILE","features":[3]},{"name":"ERROR_TOKEN_ALREADY_IN_USE","features":[3]},{"name":"ERROR_TOO_MANY_CMDS","features":[3]},{"name":"ERROR_TOO_MANY_CONTEXT_IDS","features":[3]},{"name":"ERROR_TOO_MANY_DESCRIPTORS","features":[3]},{"name":"ERROR_TOO_MANY_LINKS","features":[3]},{"name":"ERROR_TOO_MANY_LUIDS_REQUESTED","features":[3]},{"name":"ERROR_TOO_MANY_MODULES","features":[3]},{"name":"ERROR_TOO_MANY_MUXWAITERS","features":[3]},{"name":"ERROR_TOO_MANY_NAMES","features":[3]},{"name":"ERROR_TOO_MANY_OPEN_FILES","features":[3]},{"name":"ERROR_TOO_MANY_POSTS","features":[3]},{"name":"ERROR_TOO_MANY_SECRETS","features":[3]},{"name":"ERROR_TOO_MANY_SEMAPHORES","features":[3]},{"name":"ERROR_TOO_MANY_SEM_REQUESTS","features":[3]},{"name":"ERROR_TOO_MANY_SESS","features":[3]},{"name":"ERROR_TOO_MANY_SIDS","features":[3]},{"name":"ERROR_TOO_MANY_TCBS","features":[3]},{"name":"ERROR_TOO_MANY_THREADS","features":[3]},{"name":"ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[3]},{"name":"ERROR_TRANSACTIONAL_CONFLICT","features":[3]},{"name":"ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[3]},{"name":"ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[3]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_FOUND","features":[3]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_ONLINE","features":[3]},{"name":"ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[3]},{"name":"ERROR_TRANSACTIONS_NOT_FROZEN","features":[3]},{"name":"ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[3]},{"name":"ERROR_TRANSACTION_ALREADY_ABORTED","features":[3]},{"name":"ERROR_TRANSACTION_ALREADY_COMMITTED","features":[3]},{"name":"ERROR_TRANSACTION_FREEZE_IN_PROGRESS","features":[3]},{"name":"ERROR_TRANSACTION_INTEGRITY_VIOLATED","features":[3]},{"name":"ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[3]},{"name":"ERROR_TRANSACTION_MUST_WRITETHROUGH","features":[3]},{"name":"ERROR_TRANSACTION_NOT_ACTIVE","features":[3]},{"name":"ERROR_TRANSACTION_NOT_ENLISTED","features":[3]},{"name":"ERROR_TRANSACTION_NOT_FOUND","features":[3]},{"name":"ERROR_TRANSACTION_NOT_JOINED","features":[3]},{"name":"ERROR_TRANSACTION_NOT_REQUESTED","features":[3]},{"name":"ERROR_TRANSACTION_NOT_ROOT","features":[3]},{"name":"ERROR_TRANSACTION_NO_SUPERIOR","features":[3]},{"name":"ERROR_TRANSACTION_OBJECT_EXPIRED","features":[3]},{"name":"ERROR_TRANSACTION_PROPAGATION_FAILED","features":[3]},{"name":"ERROR_TRANSACTION_RECORD_TOO_LONG","features":[3]},{"name":"ERROR_TRANSACTION_REQUEST_NOT_VALID","features":[3]},{"name":"ERROR_TRANSACTION_REQUIRED_PROMOTION","features":[3]},{"name":"ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[3]},{"name":"ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[3]},{"name":"ERROR_TRANSACTION_SUPERIOR_EXISTS","features":[3]},{"name":"ERROR_TRANSFORM_NOT_SUPPORTED","features":[3]},{"name":"ERROR_TRANSLATION_COMPLETE","features":[3]},{"name":"ERROR_TRANSPORT_FULL","features":[3]},{"name":"ERROR_TRUSTED_DOMAIN_FAILURE","features":[3]},{"name":"ERROR_TRUSTED_RELATIONSHIP_FAILURE","features":[3]},{"name":"ERROR_TRUST_FAILURE","features":[3]},{"name":"ERROR_TS_INCOMPATIBLE_SESSIONS","features":[3]},{"name":"ERROR_TS_VIDEO_SUBSYSTEM_ERROR","features":[3]},{"name":"ERROR_TXF_ATTRIBUTE_CORRUPT","features":[3]},{"name":"ERROR_TXF_DIR_NOT_EMPTY","features":[3]},{"name":"ERROR_TXF_METADATA_ALREADY_PRESENT","features":[3]},{"name":"ERROR_UNABLE_TO_CLEAN","features":[3]},{"name":"ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA","features":[3]},{"name":"ERROR_UNABLE_TO_INVENTORY_DRIVE","features":[3]},{"name":"ERROR_UNABLE_TO_INVENTORY_SLOT","features":[3]},{"name":"ERROR_UNABLE_TO_INVENTORY_TRANSPORT","features":[3]},{"name":"ERROR_UNABLE_TO_LOAD_MEDIUM","features":[3]},{"name":"ERROR_UNABLE_TO_LOCK_MEDIA","features":[3]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT","features":[3]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT_2","features":[3]},{"name":"ERROR_UNABLE_TO_REMOVE_REPLACED","features":[3]},{"name":"ERROR_UNABLE_TO_UNLOAD_MEDIA","features":[3]},{"name":"ERROR_UNDEFINED_CHARACTER","features":[3]},{"name":"ERROR_UNDEFINED_SCOPE","features":[3]},{"name":"ERROR_UNEXPECTED_MM_CREATE_ERR","features":[3]},{"name":"ERROR_UNEXPECTED_MM_EXTEND_ERR","features":[3]},{"name":"ERROR_UNEXPECTED_MM_MAP_ERROR","features":[3]},{"name":"ERROR_UNEXPECTED_NTCACHEMANAGER_ERROR","features":[3]},{"name":"ERROR_UNEXPECTED_OMID","features":[3]},{"name":"ERROR_UNEXP_NET_ERR","features":[3]},{"name":"ERROR_UNHANDLED_EXCEPTION","features":[3]},{"name":"ERROR_UNIDENTIFIED_ERROR","features":[3]},{"name":"ERROR_UNKNOWN_COMPONENT","features":[3]},{"name":"ERROR_UNKNOWN_EXCEPTION","features":[3]},{"name":"ERROR_UNKNOWN_FEATURE","features":[3]},{"name":"ERROR_UNKNOWN_PATCH","features":[3]},{"name":"ERROR_UNKNOWN_PORT","features":[3]},{"name":"ERROR_UNKNOWN_PRINTER_DRIVER","features":[3]},{"name":"ERROR_UNKNOWN_PRINTPROCESSOR","features":[3]},{"name":"ERROR_UNKNOWN_PRINT_MONITOR","features":[3]},{"name":"ERROR_UNKNOWN_PRODUCT","features":[3]},{"name":"ERROR_UNKNOWN_PROPERTY","features":[3]},{"name":"ERROR_UNKNOWN_PROTOCOL_ID","features":[3]},{"name":"ERROR_UNKNOWN_REVISION","features":[3]},{"name":"ERROR_UNMAPPED_SUBSTITUTION_STRING","features":[3]},{"name":"ERROR_UNRECOGNIZED_MEDIA","features":[3]},{"name":"ERROR_UNRECOGNIZED_VOLUME","features":[3]},{"name":"ERROR_UNRECOVERABLE_STACK_OVERFLOW","features":[3]},{"name":"ERROR_UNSATISFIED_DEPENDENCIES","features":[3]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_CONTENT","features":[3]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[3]},{"name":"ERROR_UNSUPPORTED_COMPRESSION","features":[3]},{"name":"ERROR_UNSUPPORTED_TYPE","features":[3]},{"name":"ERROR_UNTRUSTED_MOUNT_POINT","features":[3]},{"name":"ERROR_UNWIND","features":[3]},{"name":"ERROR_UNWIND_CONSOLIDATE","features":[3]},{"name":"ERROR_UPDATE_IN_PROGRESS","features":[3]},{"name":"ERROR_USER_APC","features":[3]},{"name":"ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[3]},{"name":"ERROR_USER_EXISTS","features":[3]},{"name":"ERROR_USER_LIMIT","features":[3]},{"name":"ERROR_USER_MAPPED_FILE","features":[3]},{"name":"ERROR_USER_PROFILE_LOAD","features":[3]},{"name":"ERROR_VALIDATE_CONTINUE","features":[3]},{"name":"ERROR_VC_DISCONNECTED","features":[3]},{"name":"ERROR_VDM_DISALLOWED","features":[3]},{"name":"ERROR_VDM_HARD_ERROR","features":[3]},{"name":"ERROR_VERIFIER_STOP","features":[3]},{"name":"ERROR_VERSION_PARSE_ERROR","features":[3]},{"name":"ERROR_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[3]},{"name":"ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[3]},{"name":"ERROR_VHD_BITMAP_MISMATCH","features":[3]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_FAILURE","features":[3]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[3]},{"name":"ERROR_VHD_CHANGE_TRACKING_DISABLED","features":[3]},{"name":"ERROR_VHD_CHILD_PARENT_ID_MISMATCH","features":[3]},{"name":"ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[3]},{"name":"ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[3]},{"name":"ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[3]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[3]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[3]},{"name":"ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[3]},{"name":"ERROR_VHD_DRIVE_FOOTER_CORRUPT","features":[3]},{"name":"ERROR_VHD_DRIVE_FOOTER_MISSING","features":[3]},{"name":"ERROR_VHD_FORMAT_UNKNOWN","features":[3]},{"name":"ERROR_VHD_FORMAT_UNSUPPORTED_VERSION","features":[3]},{"name":"ERROR_VHD_INVALID_BLOCK_SIZE","features":[3]},{"name":"ERROR_VHD_INVALID_CHANGE_TRACKING_ID","features":[3]},{"name":"ERROR_VHD_INVALID_FILE_SIZE","features":[3]},{"name":"ERROR_VHD_INVALID_SIZE","features":[3]},{"name":"ERROR_VHD_INVALID_STATE","features":[3]},{"name":"ERROR_VHD_INVALID_TYPE","features":[3]},{"name":"ERROR_VHD_METADATA_FULL","features":[3]},{"name":"ERROR_VHD_METADATA_READ_FAILURE","features":[3]},{"name":"ERROR_VHD_METADATA_WRITE_FAILURE","features":[3]},{"name":"ERROR_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[3]},{"name":"ERROR_VHD_PARENT_VHD_ACCESS_DENIED","features":[3]},{"name":"ERROR_VHD_PARENT_VHD_NOT_FOUND","features":[3]},{"name":"ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[3]},{"name":"ERROR_VHD_SHARED","features":[3]},{"name":"ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[3]},{"name":"ERROR_VHD_SPARSE_HEADER_CORRUPT","features":[3]},{"name":"ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[3]},{"name":"ERROR_VHD_UNEXPECTED_ID","features":[3]},{"name":"ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[3]},{"name":"ERROR_VID_DUPLICATE_HANDLER","features":[3]},{"name":"ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[3]},{"name":"ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[3]},{"name":"ERROR_VID_HANDLER_NOT_PRESENT","features":[3]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[3]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[3]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[3]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[3]},{"name":"ERROR_VID_INVALID_CHILD_GPA_PAGE_SET","features":[3]},{"name":"ERROR_VID_INVALID_GPA_RANGE_HANDLE","features":[3]},{"name":"ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[3]},{"name":"ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[3]},{"name":"ERROR_VID_INVALID_NUMA_NODE_INDEX","features":[3]},{"name":"ERROR_VID_INVALID_NUMA_SETTINGS","features":[3]},{"name":"ERROR_VID_INVALID_OBJECT_NAME","features":[3]},{"name":"ERROR_VID_INVALID_PPM_HANDLE","features":[3]},{"name":"ERROR_VID_INVALID_PROCESSOR_STATE","features":[3]},{"name":"ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[3]},{"name":"ERROR_VID_MBPS_ARE_LOCKED","features":[3]},{"name":"ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[3]},{"name":"ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[3]},{"name":"ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[3]},{"name":"ERROR_VID_MB_STILL_REFERENCED","features":[3]},{"name":"ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[3]},{"name":"ERROR_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[3]},{"name":"ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[3]},{"name":"ERROR_VID_MESSAGE_QUEUE_CLOSED","features":[3]},{"name":"ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[3]},{"name":"ERROR_VID_MMIO_RANGE_DESTROYED","features":[3]},{"name":"ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[3]},{"name":"ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[3]},{"name":"ERROR_VID_PAGE_RANGE_OVERFLOW","features":[3]},{"name":"ERROR_VID_PARTITION_ALREADY_EXISTS","features":[3]},{"name":"ERROR_VID_PARTITION_DOES_NOT_EXIST","features":[3]},{"name":"ERROR_VID_PARTITION_NAME_NOT_FOUND","features":[3]},{"name":"ERROR_VID_PARTITION_NAME_TOO_LONG","features":[3]},{"name":"ERROR_VID_PROCESS_ALREADY_SET","features":[3]},{"name":"ERROR_VID_QUEUE_FULL","features":[3]},{"name":"ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[3]},{"name":"ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[3]},{"name":"ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[3]},{"name":"ERROR_VID_SAVED_STATE_CORRUPT","features":[3]},{"name":"ERROR_VID_SAVED_STATE_INCOMPATIBLE","features":[3]},{"name":"ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[3]},{"name":"ERROR_VID_STOP_PENDING","features":[3]},{"name":"ERROR_VID_TOO_MANY_HANDLERS","features":[3]},{"name":"ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[3]},{"name":"ERROR_VID_VTL_ACCESS_DENIED","features":[3]},{"name":"ERROR_VIRTDISK_DISK_ALREADY_OWNED","features":[3]},{"name":"ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[3]},{"name":"ERROR_VIRTDISK_NOT_VIRTUAL_DISK","features":[3]},{"name":"ERROR_VIRTDISK_PROVIDER_NOT_FOUND","features":[3]},{"name":"ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[3]},{"name":"ERROR_VIRTUAL_DISK_LIMITATION","features":[3]},{"name":"ERROR_VIRUS_DELETED","features":[3]},{"name":"ERROR_VIRUS_INFECTED","features":[3]},{"name":"ERROR_VMCOMPUTE_CONNECTION_CLOSED","features":[3]},{"name":"ERROR_VMCOMPUTE_CONNECT_FAILED","features":[3]},{"name":"ERROR_VMCOMPUTE_HYPERV_NOT_INSTALLED","features":[3]},{"name":"ERROR_VMCOMPUTE_IMAGE_MISMATCH","features":[3]},{"name":"ERROR_VMCOMPUTE_INVALID_JSON","features":[3]},{"name":"ERROR_VMCOMPUTE_INVALID_LAYER","features":[3]},{"name":"ERROR_VMCOMPUTE_INVALID_STATE","features":[3]},{"name":"ERROR_VMCOMPUTE_OPERATION_PENDING","features":[3]},{"name":"ERROR_VMCOMPUTE_PROTOCOL_ERROR","features":[3]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_EXISTS","features":[3]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED","features":[3]},{"name":"ERROR_VMCOMPUTE_SYSTEM_NOT_FOUND","features":[3]},{"name":"ERROR_VMCOMPUTE_TERMINATED","features":[3]},{"name":"ERROR_VMCOMPUTE_TERMINATED_DURING_START","features":[3]},{"name":"ERROR_VMCOMPUTE_TIMEOUT","features":[3]},{"name":"ERROR_VMCOMPUTE_TOO_MANY_NOTIFICATIONS","features":[3]},{"name":"ERROR_VMCOMPUTE_UNEXPECTED_EXIT","features":[3]},{"name":"ERROR_VMCOMPUTE_UNKNOWN_MESSAGE","features":[3]},{"name":"ERROR_VMCOMPUTE_UNSUPPORTED_PROTOCOL_VERSION","features":[3]},{"name":"ERROR_VMCOMPUTE_WINDOWS_INSIDER_REQUIRED","features":[3]},{"name":"ERROR_VNET_VIRTUAL_SWITCH_NAME_NOT_FOUND","features":[3]},{"name":"ERROR_VOLMGR_ALL_DISKS_FAILED","features":[3]},{"name":"ERROR_VOLMGR_BAD_BOOT_DISK","features":[3]},{"name":"ERROR_VOLMGR_DATABASE_FULL","features":[3]},{"name":"ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[3]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[3]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[3]},{"name":"ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[3]},{"name":"ERROR_VOLMGR_DISK_DUPLICATE","features":[3]},{"name":"ERROR_VOLMGR_DISK_DYNAMIC","features":[3]},{"name":"ERROR_VOLMGR_DISK_ID_INVALID","features":[3]},{"name":"ERROR_VOLMGR_DISK_INVALID","features":[3]},{"name":"ERROR_VOLMGR_DISK_LAST_VOTER","features":[3]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_INVALID","features":[3]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[3]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[3]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[3]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[3]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[3]},{"name":"ERROR_VOLMGR_DISK_MISSING","features":[3]},{"name":"ERROR_VOLMGR_DISK_NOT_EMPTY","features":[3]},{"name":"ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[3]},{"name":"ERROR_VOLMGR_DISK_REVECTORING_FAILED","features":[3]},{"name":"ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[3]},{"name":"ERROR_VOLMGR_DISK_SET_NOT_CONTAINED","features":[3]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[3]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[3]},{"name":"ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[3]},{"name":"ERROR_VOLMGR_EXTENT_ALREADY_USED","features":[3]},{"name":"ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[3]},{"name":"ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[3]},{"name":"ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[3]},{"name":"ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[3]},{"name":"ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[3]},{"name":"ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[3]},{"name":"ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[3]},{"name":"ERROR_VOLMGR_INCOMPLETE_REGENERATION","features":[3]},{"name":"ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[3]},{"name":"ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[3]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[3]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_INVALID","features":[3]},{"name":"ERROR_VOLMGR_MEMBER_IN_SYNC","features":[3]},{"name":"ERROR_VOLMGR_MEMBER_MISSING","features":[3]},{"name":"ERROR_VOLMGR_MEMBER_NOT_DETACHED","features":[3]},{"name":"ERROR_VOLMGR_MEMBER_REGENERATING","features":[3]},{"name":"ERROR_VOLMGR_MIRROR_NOT_SUPPORTED","features":[3]},{"name":"ERROR_VOLMGR_NOTIFICATION_RESET","features":[3]},{"name":"ERROR_VOLMGR_NOT_PRIMARY_PACK","features":[3]},{"name":"ERROR_VOLMGR_NO_REGISTERED_USERS","features":[3]},{"name":"ERROR_VOLMGR_NO_SUCH_USER","features":[3]},{"name":"ERROR_VOLMGR_NO_VALID_LOG_COPIES","features":[3]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[3]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[3]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[3]},{"name":"ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[3]},{"name":"ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[3]},{"name":"ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[3]},{"name":"ERROR_VOLMGR_PACK_CONFIG_OFFLINE","features":[3]},{"name":"ERROR_VOLMGR_PACK_CONFIG_ONLINE","features":[3]},{"name":"ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[3]},{"name":"ERROR_VOLMGR_PACK_DUPLICATE","features":[3]},{"name":"ERROR_VOLMGR_PACK_HAS_QUORUM","features":[3]},{"name":"ERROR_VOLMGR_PACK_ID_INVALID","features":[3]},{"name":"ERROR_VOLMGR_PACK_INVALID","features":[3]},{"name":"ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[3]},{"name":"ERROR_VOLMGR_PACK_NAME_INVALID","features":[3]},{"name":"ERROR_VOLMGR_PACK_OFFLINE","features":[3]},{"name":"ERROR_VOLMGR_PACK_WITHOUT_QUORUM","features":[3]},{"name":"ERROR_VOLMGR_PARTITION_STYLE_INVALID","features":[3]},{"name":"ERROR_VOLMGR_PARTITION_UPDATE_FAILED","features":[3]},{"name":"ERROR_VOLMGR_PLEX_INDEX_DUPLICATE","features":[3]},{"name":"ERROR_VOLMGR_PLEX_INDEX_INVALID","features":[3]},{"name":"ERROR_VOLMGR_PLEX_IN_SYNC","features":[3]},{"name":"ERROR_VOLMGR_PLEX_LAST_ACTIVE","features":[3]},{"name":"ERROR_VOLMGR_PLEX_MISSING","features":[3]},{"name":"ERROR_VOLMGR_PLEX_NOT_RAID5","features":[3]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE","features":[3]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[3]},{"name":"ERROR_VOLMGR_PLEX_REGENERATING","features":[3]},{"name":"ERROR_VOLMGR_PLEX_TYPE_INVALID","features":[3]},{"name":"ERROR_VOLMGR_PRIMARY_PACK_PRESENT","features":[3]},{"name":"ERROR_VOLMGR_RAID5_NOT_SUPPORTED","features":[3]},{"name":"ERROR_VOLMGR_STRUCTURE_SIZE_INVALID","features":[3]},{"name":"ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[3]},{"name":"ERROR_VOLMGR_TRANSACTION_IN_PROGRESS","features":[3]},{"name":"ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_ID_INVALID","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_INVALID","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_MIRRORED","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_NOT_MIRRORED","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_NOT_RETAINED","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_OFFLINE","features":[3]},{"name":"ERROR_VOLMGR_VOLUME_RETAINED","features":[3]},{"name":"ERROR_VOLSNAP_ACTIVATION_TIMEOUT","features":[3]},{"name":"ERROR_VOLSNAP_BOOTFILE_NOT_VALID","features":[3]},{"name":"ERROR_VOLSNAP_HIBERNATE_READY","features":[3]},{"name":"ERROR_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[3]},{"name":"ERROR_VOLSNAP_PREPARE_HIBERNATE","features":[3]},{"name":"ERROR_VOLUME_CONTAINS_SYS_FILES","features":[3]},{"name":"ERROR_VOLUME_DIRTY","features":[3]},{"name":"ERROR_VOLUME_MOUNTED","features":[3]},{"name":"ERROR_VOLUME_NOT_CLUSTER_ALIGNED","features":[3]},{"name":"ERROR_VOLUME_NOT_SIS_ENABLED","features":[3]},{"name":"ERROR_VOLUME_NOT_SUPPORTED","features":[3]},{"name":"ERROR_VOLUME_NOT_SUPPORT_EFS","features":[3]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED","features":[3]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[3]},{"name":"ERROR_VOLUME_UPGRADE_NOT_NEEDED","features":[3]},{"name":"ERROR_VOLUME_UPGRADE_PENDING","features":[3]},{"name":"ERROR_VOLUME_WRITE_ACCESS_DENIED","features":[3]},{"name":"ERROR_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[3]},{"name":"ERROR_VRF_VOLATILE_NMI_REGISTERED","features":[3]},{"name":"ERROR_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[3]},{"name":"ERROR_VRF_VOLATILE_NOT_STOPPABLE","features":[3]},{"name":"ERROR_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[3]},{"name":"ERROR_VRF_VOLATILE_PROTECTED_DRIVER","features":[3]},{"name":"ERROR_VRF_VOLATILE_SAFE_MODE","features":[3]},{"name":"ERROR_VRF_VOLATILE_SETTINGS_CONFLICT","features":[3]},{"name":"ERROR_VSMB_SAVED_STATE_CORRUPT","features":[3]},{"name":"ERROR_VSMB_SAVED_STATE_FILE_NOT_FOUND","features":[3]},{"name":"ERROR_VSM_DMA_PROTECTION_NOT_IN_USE","features":[3]},{"name":"ERROR_VSM_NOT_INITIALIZED","features":[3]},{"name":"ERROR_WAIT_1","features":[3]},{"name":"ERROR_WAIT_2","features":[3]},{"name":"ERROR_WAIT_3","features":[3]},{"name":"ERROR_WAIT_63","features":[3]},{"name":"ERROR_WAIT_FOR_OPLOCK","features":[3]},{"name":"ERROR_WAIT_NO_CHILDREN","features":[3]},{"name":"ERROR_WAKE_SYSTEM","features":[3]},{"name":"ERROR_WAKE_SYSTEM_DEBUGGER","features":[3]},{"name":"ERROR_WAS_LOCKED","features":[3]},{"name":"ERROR_WAS_UNLOCKED","features":[3]},{"name":"ERROR_WEAK_WHFBKEY_BLOCKED","features":[3]},{"name":"ERROR_WINDOW_NOT_COMBOBOX","features":[3]},{"name":"ERROR_WINDOW_NOT_DIALOG","features":[3]},{"name":"ERROR_WINDOW_OF_OTHER_THREAD","features":[3]},{"name":"ERROR_WINS_INTERNAL","features":[3]},{"name":"ERROR_WIP_ENCRYPTION_FAILED","features":[3]},{"name":"ERROR_WMI_ALREADY_DISABLED","features":[3]},{"name":"ERROR_WMI_ALREADY_ENABLED","features":[3]},{"name":"ERROR_WMI_DP_FAILED","features":[3]},{"name":"ERROR_WMI_DP_NOT_FOUND","features":[3]},{"name":"ERROR_WMI_GUID_DISCONNECTED","features":[3]},{"name":"ERROR_WMI_GUID_NOT_FOUND","features":[3]},{"name":"ERROR_WMI_INSTANCE_NOT_FOUND","features":[3]},{"name":"ERROR_WMI_INVALID_MOF","features":[3]},{"name":"ERROR_WMI_INVALID_REGINFO","features":[3]},{"name":"ERROR_WMI_ITEMID_NOT_FOUND","features":[3]},{"name":"ERROR_WMI_READ_ONLY","features":[3]},{"name":"ERROR_WMI_SERVER_UNAVAILABLE","features":[3]},{"name":"ERROR_WMI_SET_FAILURE","features":[3]},{"name":"ERROR_WMI_TRY_AGAIN","features":[3]},{"name":"ERROR_WMI_UNRESOLVED_INSTANCE_REF","features":[3]},{"name":"ERROR_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[3]},{"name":"ERROR_WOF_WIM_HEADER_CORRUPT","features":[3]},{"name":"ERROR_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[3]},{"name":"ERROR_WORKING_SET_QUOTA","features":[3]},{"name":"ERROR_WOW_ASSERTION","features":[3]},{"name":"ERROR_WRITE_FAULT","features":[3]},{"name":"ERROR_WRITE_PROTECT","features":[3]},{"name":"ERROR_WRONG_COMPARTMENT","features":[3]},{"name":"ERROR_WRONG_DISK","features":[3]},{"name":"ERROR_WRONG_EFS","features":[3]},{"name":"ERROR_WRONG_INF_STYLE","features":[3]},{"name":"ERROR_WRONG_INF_TYPE","features":[3]},{"name":"ERROR_WRONG_PASSWORD","features":[3]},{"name":"ERROR_WRONG_TARGET_NAME","features":[3]},{"name":"ERROR_WX86_ERROR","features":[3]},{"name":"ERROR_WX86_WARNING","features":[3]},{"name":"ERROR_XMLDSIG_ERROR","features":[3]},{"name":"ERROR_XML_ENCODING_MISMATCH","features":[3]},{"name":"ERROR_XML_PARSE_ERROR","features":[3]},{"name":"EVENT_E_ALL_SUBSCRIBERS_FAILED","features":[3]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT","features":[3]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT","features":[3]},{"name":"EVENT_E_COMPLUS_NOT_INSTALLED","features":[3]},{"name":"EVENT_E_FIRST","features":[3]},{"name":"EVENT_E_INTERNALERROR","features":[3]},{"name":"EVENT_E_INTERNALEXCEPTION","features":[3]},{"name":"EVENT_E_INVALID_EVENT_CLASS_PARTITION","features":[3]},{"name":"EVENT_E_INVALID_PER_USER_SID","features":[3]},{"name":"EVENT_E_LAST","features":[3]},{"name":"EVENT_E_MISSING_EVENTCLASS","features":[3]},{"name":"EVENT_E_NOT_ALL_REMOVED","features":[3]},{"name":"EVENT_E_PER_USER_SID_NOT_LOGGED_ON","features":[3]},{"name":"EVENT_E_QUERYFIELD","features":[3]},{"name":"EVENT_E_QUERYSYNTAX","features":[3]},{"name":"EVENT_E_TOO_MANY_METHODS","features":[3]},{"name":"EVENT_E_USER_EXCEPTION","features":[3]},{"name":"EVENT_S_FIRST","features":[3]},{"name":"EVENT_S_LAST","features":[3]},{"name":"EVENT_S_NOSUBSCRIBERS","features":[3]},{"name":"EVENT_S_SOME_SUBSCRIBERS_FAILED","features":[3]},{"name":"EXCEPTION_ACCESS_VIOLATION","features":[3]},{"name":"EXCEPTION_ARRAY_BOUNDS_EXCEEDED","features":[3]},{"name":"EXCEPTION_BREAKPOINT","features":[3]},{"name":"EXCEPTION_DATATYPE_MISALIGNMENT","features":[3]},{"name":"EXCEPTION_FLT_DENORMAL_OPERAND","features":[3]},{"name":"EXCEPTION_FLT_DIVIDE_BY_ZERO","features":[3]},{"name":"EXCEPTION_FLT_INEXACT_RESULT","features":[3]},{"name":"EXCEPTION_FLT_INVALID_OPERATION","features":[3]},{"name":"EXCEPTION_FLT_OVERFLOW","features":[3]},{"name":"EXCEPTION_FLT_STACK_CHECK","features":[3]},{"name":"EXCEPTION_FLT_UNDERFLOW","features":[3]},{"name":"EXCEPTION_GUARD_PAGE","features":[3]},{"name":"EXCEPTION_ILLEGAL_INSTRUCTION","features":[3]},{"name":"EXCEPTION_INT_DIVIDE_BY_ZERO","features":[3]},{"name":"EXCEPTION_INT_OVERFLOW","features":[3]},{"name":"EXCEPTION_INVALID_DISPOSITION","features":[3]},{"name":"EXCEPTION_INVALID_HANDLE","features":[3]},{"name":"EXCEPTION_IN_PAGE_ERROR","features":[3]},{"name":"EXCEPTION_NONCONTINUABLE_EXCEPTION","features":[3]},{"name":"EXCEPTION_POSSIBLE_DEADLOCK","features":[3]},{"name":"EXCEPTION_PRIV_INSTRUCTION","features":[3]},{"name":"EXCEPTION_SINGLE_STEP","features":[3]},{"name":"EXCEPTION_SPAPI_UNRECOVERABLE_STACK_OVERFLOW","features":[3]},{"name":"EXCEPTION_STACK_OVERFLOW","features":[3]},{"name":"E_ABORT","features":[3]},{"name":"E_ACCESSDENIED","features":[3]},{"name":"E_APPLICATION_ACTIVATION_EXEC_FAILURE","features":[3]},{"name":"E_APPLICATION_ACTIVATION_TIMED_OUT","features":[3]},{"name":"E_APPLICATION_EXITING","features":[3]},{"name":"E_APPLICATION_MANAGER_NOT_RUNNING","features":[3]},{"name":"E_APPLICATION_NOT_REGISTERED","features":[3]},{"name":"E_APPLICATION_TEMPORARY_LICENSE_ERROR","features":[3]},{"name":"E_APPLICATION_TRIAL_LICENSE_EXPIRED","features":[3]},{"name":"E_APPLICATION_VIEW_EXITING","features":[3]},{"name":"E_ASYNC_OPERATION_NOT_STARTED","features":[3]},{"name":"E_AUDIO_ENGINE_NODE_NOT_FOUND","features":[3]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND","features":[3]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG","features":[3]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[3]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[3]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION","features":[3]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[3]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES","features":[3]},{"name":"E_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[3]},{"name":"E_BLUETOOTH_ATT_INVALID_HANDLE","features":[3]},{"name":"E_BLUETOOTH_ATT_INVALID_OFFSET","features":[3]},{"name":"E_BLUETOOTH_ATT_INVALID_PDU","features":[3]},{"name":"E_BLUETOOTH_ATT_PREPARE_QUEUE_FULL","features":[3]},{"name":"E_BLUETOOTH_ATT_READ_NOT_PERMITTED","features":[3]},{"name":"E_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED","features":[3]},{"name":"E_BLUETOOTH_ATT_UNKNOWN_ERROR","features":[3]},{"name":"E_BLUETOOTH_ATT_UNLIKELY","features":[3]},{"name":"E_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[3]},{"name":"E_BLUETOOTH_ATT_WRITE_NOT_PERMITTED","features":[3]},{"name":"E_BOUNDS","features":[3]},{"name":"E_CHANGED_STATE","features":[3]},{"name":"E_ELEVATED_ACTIVATION_NOT_SUPPORTED","features":[3]},{"name":"E_FAIL","features":[3]},{"name":"E_FULL_ADMIN_NOT_SUPPORTED","features":[3]},{"name":"E_HANDLE","features":[3]},{"name":"E_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[3]},{"name":"E_HDAUDIO_EMPTY_CONNECTION_LIST","features":[3]},{"name":"E_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[3]},{"name":"E_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[3]},{"name":"E_ILLEGAL_DELEGATE_ASSIGNMENT","features":[3]},{"name":"E_ILLEGAL_METHOD_CALL","features":[3]},{"name":"E_ILLEGAL_STATE_CHANGE","features":[3]},{"name":"E_INVALIDARG","features":[3]},{"name":"E_INVALID_PROTOCOL_FORMAT","features":[3]},{"name":"E_INVALID_PROTOCOL_OPERATION","features":[3]},{"name":"E_MBN_BAD_SIM","features":[3]},{"name":"E_MBN_CONTEXT_NOT_ACTIVATED","features":[3]},{"name":"E_MBN_DATA_CLASS_NOT_AVAILABLE","features":[3]},{"name":"E_MBN_DEFAULT_PROFILE_EXIST","features":[3]},{"name":"E_MBN_FAILURE","features":[3]},{"name":"E_MBN_INVALID_ACCESS_STRING","features":[3]},{"name":"E_MBN_INVALID_CACHE","features":[3]},{"name":"E_MBN_INVALID_PROFILE","features":[3]},{"name":"E_MBN_MAX_ACTIVATED_CONTEXTS","features":[3]},{"name":"E_MBN_NOT_REGISTERED","features":[3]},{"name":"E_MBN_PACKET_SVC_DETACHED","features":[3]},{"name":"E_MBN_PIN_DISABLED","features":[3]},{"name":"E_MBN_PIN_NOT_SUPPORTED","features":[3]},{"name":"E_MBN_PIN_REQUIRED","features":[3]},{"name":"E_MBN_PROVIDERS_NOT_FOUND","features":[3]},{"name":"E_MBN_PROVIDER_NOT_VISIBLE","features":[3]},{"name":"E_MBN_RADIO_POWER_OFF","features":[3]},{"name":"E_MBN_SERVICE_NOT_ACTIVATED","features":[3]},{"name":"E_MBN_SIM_NOT_INSERTED","features":[3]},{"name":"E_MBN_SMS_ENCODING_NOT_SUPPORTED","features":[3]},{"name":"E_MBN_SMS_FILTER_NOT_SUPPORTED","features":[3]},{"name":"E_MBN_SMS_FORMAT_NOT_SUPPORTED","features":[3]},{"name":"E_MBN_SMS_INVALID_MEMORY_INDEX","features":[3]},{"name":"E_MBN_SMS_LANG_NOT_SUPPORTED","features":[3]},{"name":"E_MBN_SMS_MEMORY_FAILURE","features":[3]},{"name":"E_MBN_SMS_MEMORY_FULL","features":[3]},{"name":"E_MBN_SMS_NETWORK_TIMEOUT","features":[3]},{"name":"E_MBN_SMS_OPERATION_NOT_ALLOWED","features":[3]},{"name":"E_MBN_SMS_UNKNOWN_SMSC_ADDRESS","features":[3]},{"name":"E_MBN_VOICE_CALL_IN_PROGRESS","features":[3]},{"name":"E_MONITOR_RESOLUTION_TOO_LOW","features":[3]},{"name":"E_MULTIPLE_EXTENSIONS_FOR_APPLICATION","features":[3]},{"name":"E_MULTIPLE_PACKAGES_FOR_FAMILY","features":[3]},{"name":"E_NOINTERFACE","features":[3]},{"name":"E_NOTIMPL","features":[3]},{"name":"E_OUTOFMEMORY","features":[3]},{"name":"E_POINTER","features":[3]},{"name":"E_PROTOCOL_EXTENSIONS_NOT_SUPPORTED","features":[3]},{"name":"E_PROTOCOL_VERSION_NOT_SUPPORTED","features":[3]},{"name":"E_SKYDRIVE_FILE_NOT_UPLOADED","features":[3]},{"name":"E_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX","features":[3]},{"name":"E_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED","features":[3]},{"name":"E_SKYDRIVE_ROOT_TARGET_OVERLAP","features":[3]},{"name":"E_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED","features":[3]},{"name":"E_SKYDRIVE_UPDATE_AVAILABILITY_FAIL","features":[3]},{"name":"E_STRING_NOT_NULL_TERMINATED","features":[3]},{"name":"E_SUBPROTOCOL_NOT_SUPPORTED","features":[3]},{"name":"E_SYNCENGINE_CLIENT_UPDATE_NEEDED","features":[3]},{"name":"E_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN","features":[3]},{"name":"E_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA","features":[3]},{"name":"E_SYNCENGINE_FILE_SIZE_OVER_LIMIT","features":[3]},{"name":"E_SYNCENGINE_FILE_SYNC_PARTNER_ERROR","features":[3]},{"name":"E_SYNCENGINE_FOLDER_INACCESSIBLE","features":[3]},{"name":"E_SYNCENGINE_FOLDER_IN_REDIRECTION","features":[3]},{"name":"E_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED","features":[3]},{"name":"E_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED","features":[3]},{"name":"E_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED","features":[3]},{"name":"E_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED","features":[3]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE","features":[3]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR","features":[3]},{"name":"E_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED","features":[3]},{"name":"E_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE","features":[3]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_BLOCKED","features":[3]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED","features":[3]},{"name":"E_SYNCENGINE_SYNC_PAUSED_BY_SERVICE","features":[3]},{"name":"E_SYNCENGINE_UNKNOWN_SERVICE_ERROR","features":[3]},{"name":"E_SYNCENGINE_UNSUPPORTED_FILE_NAME","features":[3]},{"name":"E_SYNCENGINE_UNSUPPORTED_FOLDER_NAME","features":[3]},{"name":"E_SYNCENGINE_UNSUPPORTED_MARKET","features":[3]},{"name":"E_SYNCENGINE_UNSUPPORTED_REPARSE_POINT","features":[3]},{"name":"E_UAC_DISABLED","features":[3]},{"name":"E_UNEXPECTED","features":[3]},{"name":"FACILITY_ACPI_ERROR_CODE","features":[3]},{"name":"FACILITY_APP_EXEC","features":[3]},{"name":"FACILITY_AUDIO_KERNEL","features":[3]},{"name":"FACILITY_BCD_ERROR_CODE","features":[3]},{"name":"FACILITY_BTH_ATT","features":[3]},{"name":"FACILITY_CLUSTER_ERROR_CODE","features":[3]},{"name":"FACILITY_CODCLASS_ERROR_CODE","features":[3]},{"name":"FACILITY_COMMONLOG","features":[3]},{"name":"FACILITY_DEBUGGER","features":[3]},{"name":"FACILITY_DRIVER_FRAMEWORK","features":[3]},{"name":"FACILITY_FILTER_MANAGER","features":[3]},{"name":"FACILITY_FIREWIRE_ERROR_CODE","features":[3]},{"name":"FACILITY_FVE_ERROR_CODE","features":[3]},{"name":"FACILITY_FWP_ERROR_CODE","features":[3]},{"name":"FACILITY_GRAPHICS_KERNEL","features":[3]},{"name":"FACILITY_HID_ERROR_CODE","features":[3]},{"name":"FACILITY_HYPERVISOR","features":[3]},{"name":"FACILITY_INTERIX","features":[3]},{"name":"FACILITY_IO_ERROR_CODE","features":[3]},{"name":"FACILITY_IPSEC","features":[3]},{"name":"FACILITY_LICENSING","features":[3]},{"name":"FACILITY_MAXIMUM_VALUE","features":[3]},{"name":"FACILITY_MCA_ERROR_CODE","features":[3]},{"name":"FACILITY_MONITOR","features":[3]},{"name":"FACILITY_NDIS_ERROR_CODE","features":[3]},{"name":"FACILITY_NTCERT","features":[3]},{"name":"FACILITY_NTSSPI","features":[3]},{"name":"FACILITY_NTWIN32","features":[3]},{"name":"FACILITY_NT_IORING","features":[3]},{"name":"FACILITY_PLATFORM_MANIFEST","features":[3]},{"name":"FACILITY_QUIC_ERROR_CODE","features":[3]},{"name":"FACILITY_RDBSS","features":[3]},{"name":"FACILITY_RESUME_KEY_FILTER","features":[3]},{"name":"FACILITY_RPC_RUNTIME","features":[3]},{"name":"FACILITY_RPC_STUBS","features":[3]},{"name":"FACILITY_RTPM","features":[3]},{"name":"FACILITY_SDBUS","features":[3]},{"name":"FACILITY_SECUREBOOT","features":[3]},{"name":"FACILITY_SECURITY_CORE","features":[3]},{"name":"FACILITY_SHARED_VHDX","features":[3]},{"name":"FACILITY_SMB","features":[3]},{"name":"FACILITY_SPACES","features":[3]},{"name":"FACILITY_SXS_ERROR_CODE","features":[3]},{"name":"FACILITY_SYSTEM_INTEGRITY","features":[3]},{"name":"FACILITY_TERMINAL_SERVER","features":[3]},{"name":"FACILITY_TPM","features":[3]},{"name":"FACILITY_TRANSACTION","features":[3]},{"name":"FACILITY_USB_ERROR_CODE","features":[3]},{"name":"FACILITY_VIDEO","features":[3]},{"name":"FACILITY_VIRTUALIZATION","features":[3]},{"name":"FACILITY_VOLMGR","features":[3]},{"name":"FACILITY_VOLSNAP","features":[3]},{"name":"FACILITY_VSM","features":[3]},{"name":"FACILITY_WIN32K_NTGDI","features":[3]},{"name":"FACILITY_WIN32K_NTUSER","features":[3]},{"name":"FACILITY_XVS","features":[3]},{"name":"FACILTIY_MUI_ERROR_CODE","features":[3]},{"name":"FALSE","features":[3]},{"name":"FARPROC","features":[3]},{"name":"FA_E_HOMEGROUP_NOT_AVAILABLE","features":[3]},{"name":"FA_E_MAX_PERSISTED_ITEMS_REACHED","features":[3]},{"name":"FDAEMON_E_CHANGEUPDATEFAILED","features":[3]},{"name":"FDAEMON_E_FATALERROR","features":[3]},{"name":"FDAEMON_E_LOWRESOURCE","features":[3]},{"name":"FDAEMON_E_NOWORDLIST","features":[3]},{"name":"FDAEMON_E_PARTITIONDELETED","features":[3]},{"name":"FDAEMON_E_TOOMANYFILTEREDBLOCKS","features":[3]},{"name":"FDAEMON_E_WORDLISTCOMMITFAILED","features":[3]},{"name":"FDAEMON_W_EMPTYWORDLIST","features":[3]},{"name":"FDAEMON_W_WORDLISTFULL","features":[3]},{"name":"FILETIME","features":[3]},{"name":"FILTER_E_ALREADY_OPEN","features":[3]},{"name":"FILTER_E_CONTENTINDEXCORRUPT","features":[3]},{"name":"FILTER_E_IN_USE","features":[3]},{"name":"FILTER_E_NOT_OPEN","features":[3]},{"name":"FILTER_E_NO_SUCH_PROPERTY","features":[3]},{"name":"FILTER_E_OFFLINE","features":[3]},{"name":"FILTER_E_PARTIALLY_FILTERED","features":[3]},{"name":"FILTER_E_TOO_BIG","features":[3]},{"name":"FILTER_E_UNREACHABLE","features":[3]},{"name":"FILTER_S_CONTENTSCAN_DELAYED","features":[3]},{"name":"FILTER_S_DISK_FULL","features":[3]},{"name":"FILTER_S_FULL_CONTENTSCAN_IMMEDIATE","features":[3]},{"name":"FILTER_S_NO_PROPSETS","features":[3]},{"name":"FILTER_S_NO_SECURITY_DESCRIPTOR","features":[3]},{"name":"FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE","features":[3]},{"name":"FLOAT128","features":[3]},{"name":"FRS_ERR_AUTHENTICATION","features":[3]},{"name":"FRS_ERR_CHILD_TO_PARENT_COMM","features":[3]},{"name":"FRS_ERR_INSUFFICIENT_PRIV","features":[3]},{"name":"FRS_ERR_INTERNAL","features":[3]},{"name":"FRS_ERR_INTERNAL_API","features":[3]},{"name":"FRS_ERR_INVALID_API_SEQUENCE","features":[3]},{"name":"FRS_ERR_INVALID_SERVICE_PARAMETER","features":[3]},{"name":"FRS_ERR_PARENT_AUTHENTICATION","features":[3]},{"name":"FRS_ERR_PARENT_INSUFFICIENT_PRIV","features":[3]},{"name":"FRS_ERR_PARENT_TO_CHILD_COMM","features":[3]},{"name":"FRS_ERR_SERVICE_COMM","features":[3]},{"name":"FRS_ERR_STARTING_SERVICE","features":[3]},{"name":"FRS_ERR_STOPPING_SERVICE","features":[3]},{"name":"FRS_ERR_SYSVOL_DEMOTE","features":[3]},{"name":"FRS_ERR_SYSVOL_IS_BUSY","features":[3]},{"name":"FRS_ERR_SYSVOL_POPULATE","features":[3]},{"name":"FRS_ERR_SYSVOL_POPULATE_TIMEOUT","features":[3]},{"name":"FVE_E_AAD_ENDPOINT_BUSY","features":[3]},{"name":"FVE_E_AAD_SERVER_FAIL_BACKOFF","features":[3]},{"name":"FVE_E_AAD_SERVER_FAIL_RETRY_AFTER","features":[3]},{"name":"FVE_E_ACTION_NOT_ALLOWED","features":[3]},{"name":"FVE_E_ADBACKUP_NOT_ENABLED","features":[3]},{"name":"FVE_E_AD_ATTR_NOT_SET","features":[3]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_FIXED_DRIVE","features":[3]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_OS_DRIVE","features":[3]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_REMOVABLE_DRIVE","features":[3]},{"name":"FVE_E_AD_GUID_NOT_FOUND","features":[3]},{"name":"FVE_E_AD_INSUFFICIENT_BUFFER","features":[3]},{"name":"FVE_E_AD_INVALID_DATASIZE","features":[3]},{"name":"FVE_E_AD_INVALID_DATATYPE","features":[3]},{"name":"FVE_E_AD_NO_VALUES","features":[3]},{"name":"FVE_E_AD_SCHEMA_NOT_INSTALLED","features":[3]},{"name":"FVE_E_AUTH_INVALID_APPLICATION","features":[3]},{"name":"FVE_E_AUTH_INVALID_CONFIG","features":[3]},{"name":"FVE_E_AUTOUNLOCK_ENABLED","features":[3]},{"name":"FVE_E_BAD_DATA","features":[3]},{"name":"FVE_E_BAD_INFORMATION","features":[3]},{"name":"FVE_E_BAD_PARTITION_SIZE","features":[3]},{"name":"FVE_E_BCD_APPLICATIONS_PATH_INCORRECT","features":[3]},{"name":"FVE_E_BOOTABLE_CDDVD","features":[3]},{"name":"FVE_E_BUFFER_TOO_LARGE","features":[3]},{"name":"FVE_E_CANNOT_ENCRYPT_NO_KEY","features":[3]},{"name":"FVE_E_CANNOT_SET_FVEK_ENCRYPTED","features":[3]},{"name":"FVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME","features":[3]},{"name":"FVE_E_CLUSTERING_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_CONV_READ","features":[3]},{"name":"FVE_E_CONV_RECOVERY_FAILED","features":[3]},{"name":"FVE_E_CONV_WRITE","features":[3]},{"name":"FVE_E_DATASET_FULL","features":[3]},{"name":"FVE_E_DEBUGGER_ENABLED","features":[3]},{"name":"FVE_E_DEVICELOCKOUT_COUNTER_MISMATCH","features":[3]},{"name":"FVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE","features":[3]},{"name":"FVE_E_DEVICE_NOT_JOINED","features":[3]},{"name":"FVE_E_DE_DEVICE_LOCKEDOUT","features":[3]},{"name":"FVE_E_DE_FIXED_DATA_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_DE_HARDWARE_NOT_COMPLIANT","features":[3]},{"name":"FVE_E_DE_OS_VOLUME_NOT_PROTECTED","features":[3]},{"name":"FVE_E_DE_PREVENTED_FOR_OS","features":[3]},{"name":"FVE_E_DE_PROTECTION_NOT_YET_ENABLED","features":[3]},{"name":"FVE_E_DE_PROTECTION_SUSPENDED","features":[3]},{"name":"FVE_E_DE_VOLUME_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_DE_VOLUME_OPTED_OUT","features":[3]},{"name":"FVE_E_DE_WINRE_NOT_CONFIGURED","features":[3]},{"name":"FVE_E_DRY_RUN_FAILED","features":[3]},{"name":"FVE_E_DV_NOT_ALLOWED_BY_GP","features":[3]},{"name":"FVE_E_DV_NOT_SUPPORTED_ON_FS","features":[3]},{"name":"FVE_E_EDRIVE_BAND_ENUMERATION_FAILED","features":[3]},{"name":"FVE_E_EDRIVE_BAND_IN_USE","features":[3]},{"name":"FVE_E_EDRIVE_DISALLOWED_BY_GP","features":[3]},{"name":"FVE_E_EDRIVE_DRY_RUN_FAILED","features":[3]},{"name":"FVE_E_EDRIVE_DV_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE","features":[3]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_VOLUME","features":[3]},{"name":"FVE_E_EDRIVE_NO_FAILOVER_TO_SW","features":[3]},{"name":"FVE_E_EFI_ONLY","features":[3]},{"name":"FVE_E_ENH_PIN_INVALID","features":[3]},{"name":"FVE_E_EOW_NOT_SUPPORTED_IN_VERSION","features":[3]},{"name":"FVE_E_EXECUTE_REQUEST_SENT_TOO_SOON","features":[3]},{"name":"FVE_E_FAILED_AUTHENTICATION","features":[3]},{"name":"FVE_E_FAILED_SECTOR_SIZE","features":[3]},{"name":"FVE_E_FAILED_WRONG_FS","features":[3]},{"name":"FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED","features":[3]},{"name":"FVE_E_FIPS_HASH_KDF_NOT_ALLOWED","features":[3]},{"name":"FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT","features":[3]},{"name":"FVE_E_FIPS_PREVENTS_PASSPHRASE","features":[3]},{"name":"FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD","features":[3]},{"name":"FVE_E_FIPS_RNG_CHECK_FAILED","features":[3]},{"name":"FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_FOREIGN_VOLUME","features":[3]},{"name":"FVE_E_FS_MOUNTED","features":[3]},{"name":"FVE_E_FS_NOT_EXTENDED","features":[3]},{"name":"FVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[3]},{"name":"FVE_E_HIDDEN_VOLUME","features":[3]},{"name":"FVE_E_INVALID_BITLOCKER_OID","features":[3]},{"name":"FVE_E_INVALID_DATUM_TYPE","features":[3]},{"name":"FVE_E_INVALID_KEY_FORMAT","features":[3]},{"name":"FVE_E_INVALID_NBP_CERT","features":[3]},{"name":"FVE_E_INVALID_NKP_CERT","features":[3]},{"name":"FVE_E_INVALID_PASSWORD_FORMAT","features":[3]},{"name":"FVE_E_INVALID_PIN_CHARS","features":[3]},{"name":"FVE_E_INVALID_PIN_CHARS_DETAILED","features":[3]},{"name":"FVE_E_INVALID_PROTECTOR_TYPE","features":[3]},{"name":"FVE_E_INVALID_STARTUP_OPTIONS","features":[3]},{"name":"FVE_E_KEYFILE_INVALID","features":[3]},{"name":"FVE_E_KEYFILE_NOT_FOUND","features":[3]},{"name":"FVE_E_KEYFILE_NO_VMK","features":[3]},{"name":"FVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE","features":[3]},{"name":"FVE_E_KEY_PROTECTOR_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_KEY_REQUIRED","features":[3]},{"name":"FVE_E_KEY_ROTATION_NOT_ENABLED","features":[3]},{"name":"FVE_E_KEY_ROTATION_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_LIVEID_ACCOUNT_BLOCKED","features":[3]},{"name":"FVE_E_LIVEID_ACCOUNT_SUSPENDED","features":[3]},{"name":"FVE_E_LOCKED_VOLUME","features":[3]},{"name":"FVE_E_METADATA_FULL","features":[3]},{"name":"FVE_E_MOR_FAILED","features":[3]},{"name":"FVE_E_MULTIPLE_NKP_CERTS","features":[3]},{"name":"FVE_E_NON_BITLOCKER_KU","features":[3]},{"name":"FVE_E_NON_BITLOCKER_OID","features":[3]},{"name":"FVE_E_NOT_ACTIVATED","features":[3]},{"name":"FVE_E_NOT_ALLOWED_IN_SAFE_MODE","features":[3]},{"name":"FVE_E_NOT_ALLOWED_IN_VERSION","features":[3]},{"name":"FVE_E_NOT_ALLOWED_ON_CLUSTER","features":[3]},{"name":"FVE_E_NOT_ALLOWED_ON_CSV_STACK","features":[3]},{"name":"FVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[3]},{"name":"FVE_E_NOT_DATA_VOLUME","features":[3]},{"name":"FVE_E_NOT_DECRYPTED","features":[3]},{"name":"FVE_E_NOT_DE_VOLUME","features":[3]},{"name":"FVE_E_NOT_ENCRYPTED","features":[3]},{"name":"FVE_E_NOT_ON_STACK","features":[3]},{"name":"FVE_E_NOT_OS_VOLUME","features":[3]},{"name":"FVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[3]},{"name":"FVE_E_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_NO_AUTOUNLOCK_MASTER_KEY","features":[3]},{"name":"FVE_E_NO_BOOTMGR_METRIC","features":[3]},{"name":"FVE_E_NO_BOOTSECTOR_METRIC","features":[3]},{"name":"FVE_E_NO_EXISTING_PASSPHRASE","features":[3]},{"name":"FVE_E_NO_EXISTING_PIN","features":[3]},{"name":"FVE_E_NO_FEATURE_LICENSE","features":[3]},{"name":"FVE_E_NO_LICENSE","features":[3]},{"name":"FVE_E_NO_MBR_METRIC","features":[3]},{"name":"FVE_E_NO_PASSPHRASE_WITH_TPM","features":[3]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_DETECTED","features":[3]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED","features":[3]},{"name":"FVE_E_NO_PROTECTORS_TO_TEST","features":[3]},{"name":"FVE_E_NO_SUCH_CAPABILITY_ON_TARGET","features":[3]},{"name":"FVE_E_NO_TPM_BIOS","features":[3]},{"name":"FVE_E_NO_TPM_WITH_PASSPHRASE","features":[3]},{"name":"FVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME","features":[3]},{"name":"FVE_E_OSV_KSR_NOT_ALLOWED","features":[3]},{"name":"FVE_E_OS_NOT_PROTECTED","features":[3]},{"name":"FVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED","features":[3]},{"name":"FVE_E_OVERLAPPED_UPDATE","features":[3]},{"name":"FVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[3]},{"name":"FVE_E_PASSPHRASE_TOO_LONG","features":[3]},{"name":"FVE_E_PIN_INVALID","features":[3]},{"name":"FVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[3]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON","features":[3]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON","features":[3]},{"name":"FVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON","features":[3]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON","features":[3]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON","features":[3]},{"name":"FVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS","features":[3]},{"name":"FVE_E_POLICY_INVALID_PASSPHRASE_LENGTH","features":[3]},{"name":"FVE_E_POLICY_INVALID_PIN_LENGTH","features":[3]},{"name":"FVE_E_POLICY_ON_RDV_EXCLUSION_LIST","features":[3]},{"name":"FVE_E_POLICY_PASSPHRASE_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII","features":[3]},{"name":"FVE_E_POLICY_PASSPHRASE_TOO_SIMPLE","features":[3]},{"name":"FVE_E_POLICY_PASSWORD_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_PROHIBITS_SELFSIGNED","features":[3]},{"name":"FVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_RECOVERY_KEY_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE","features":[3]},{"name":"FVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE","features":[3]},{"name":"FVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_STARTUP_KEY_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_STARTUP_PIN_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_STARTUP_TPM_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_REQUIRED","features":[3]},{"name":"FVE_E_POLICY_USER_CERT_MUST_BE_HW","features":[3]},{"name":"FVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[3]},{"name":"FVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED","features":[3]},{"name":"FVE_E_PREDICTED_TPM_PROTECTOR_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_PRIVATEKEY_AUTH_FAILED","features":[3]},{"name":"FVE_E_PROTECTION_CANNOT_BE_DISABLED","features":[3]},{"name":"FVE_E_PROTECTION_DISABLED","features":[3]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED","features":[3]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED","features":[3]},{"name":"FVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH","features":[3]},{"name":"FVE_E_PROTECTOR_CHANGE_PIN_MISMATCH","features":[3]},{"name":"FVE_E_PROTECTOR_EXISTS","features":[3]},{"name":"FVE_E_PROTECTOR_NOT_FOUND","features":[3]},{"name":"FVE_E_PUBKEY_NOT_ALLOWED","features":[3]},{"name":"FVE_E_RAW_ACCESS","features":[3]},{"name":"FVE_E_RAW_BLOCKED","features":[3]},{"name":"FVE_E_REBOOT_REQUIRED","features":[3]},{"name":"FVE_E_RECOVERY_KEY_REQUIRED","features":[3]},{"name":"FVE_E_RECOVERY_PARTITION","features":[3]},{"name":"FVE_E_RELATIVE_PATH","features":[3]},{"name":"FVE_E_REMOVAL_OF_DRA_FAILED","features":[3]},{"name":"FVE_E_REMOVAL_OF_NKP_FAILED","features":[3]},{"name":"FVE_E_SECUREBOOT_CONFIGURATION_INVALID","features":[3]},{"name":"FVE_E_SECUREBOOT_DISABLED","features":[3]},{"name":"FVE_E_SECURE_KEY_REQUIRED","features":[3]},{"name":"FVE_E_SETUP_TPM_CALLBACK_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_SHADOW_COPY_PRESENT","features":[3]},{"name":"FVE_E_SYSTEM_VOLUME","features":[3]},{"name":"FVE_E_TOKEN_NOT_IMPERSONATED","features":[3]},{"name":"FVE_E_TOO_SMALL","features":[3]},{"name":"FVE_E_TPM_CONTEXT_SETUP_NOT_SUPPORTED","features":[3]},{"name":"FVE_E_TPM_DISABLED","features":[3]},{"name":"FVE_E_TPM_INVALID_PCR","features":[3]},{"name":"FVE_E_TPM_NOT_OWNED","features":[3]},{"name":"FVE_E_TPM_NO_VMK","features":[3]},{"name":"FVE_E_TPM_SRK_AUTH_NOT_ZERO","features":[3]},{"name":"FVE_E_TRANSIENT_STATE","features":[3]},{"name":"FVE_E_UPDATE_INVALID_CONFIG","features":[3]},{"name":"FVE_E_VIRTUALIZED_SPACE_TOO_BIG","features":[3]},{"name":"FVE_E_VOLUME_BOUND_ALREADY","features":[3]},{"name":"FVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[3]},{"name":"FVE_E_VOLUME_HANDLE_OPEN","features":[3]},{"name":"FVE_E_VOLUME_NOT_BOUND","features":[3]},{"name":"FVE_E_VOLUME_TOO_SMALL","features":[3]},{"name":"FVE_E_WIPE_CANCEL_NOT_APPLICABLE","features":[3]},{"name":"FVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[3]},{"name":"FVE_E_WRONG_BOOTMGR","features":[3]},{"name":"FVE_E_WRONG_BOOTSECTOR","features":[3]},{"name":"FVE_E_WRONG_SYSTEM_FS","features":[3]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER","features":[3]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[3]},{"name":"FWP_E_ALREADY_EXISTS","features":[3]},{"name":"FWP_E_BUILTIN_OBJECT","features":[3]},{"name":"FWP_E_CALLOUT_NOTIFICATION_FAILED","features":[3]},{"name":"FWP_E_CALLOUT_NOT_FOUND","features":[3]},{"name":"FWP_E_CONDITION_NOT_FOUND","features":[3]},{"name":"FWP_E_CONNECTIONS_DISABLED","features":[3]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[3]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[3]},{"name":"FWP_E_DROP_NOICMP","features":[3]},{"name":"FWP_E_DUPLICATE_AUTH_METHOD","features":[3]},{"name":"FWP_E_DUPLICATE_CONDITION","features":[3]},{"name":"FWP_E_DUPLICATE_KEYMOD","features":[3]},{"name":"FWP_E_DYNAMIC_SESSION_IN_PROGRESS","features":[3]},{"name":"FWP_E_EM_NOT_SUPPORTED","features":[3]},{"name":"FWP_E_FILTER_NOT_FOUND","features":[3]},{"name":"FWP_E_IKEEXT_NOT_RUNNING","features":[3]},{"name":"FWP_E_INCOMPATIBLE_AUTH_METHOD","features":[3]},{"name":"FWP_E_INCOMPATIBLE_CIPHER_TRANSFORM","features":[3]},{"name":"FWP_E_INCOMPATIBLE_DH_GROUP","features":[3]},{"name":"FWP_E_INCOMPATIBLE_LAYER","features":[3]},{"name":"FWP_E_INCOMPATIBLE_SA_STATE","features":[3]},{"name":"FWP_E_INCOMPATIBLE_TXN","features":[3]},{"name":"FWP_E_INVALID_ACTION_TYPE","features":[3]},{"name":"FWP_E_INVALID_AUTH_TRANSFORM","features":[3]},{"name":"FWP_E_INVALID_CIPHER_TRANSFORM","features":[3]},{"name":"FWP_E_INVALID_DNS_NAME","features":[3]},{"name":"FWP_E_INVALID_ENUMERATOR","features":[3]},{"name":"FWP_E_INVALID_FLAGS","features":[3]},{"name":"FWP_E_INVALID_INTERVAL","features":[3]},{"name":"FWP_E_INVALID_NET_MASK","features":[3]},{"name":"FWP_E_INVALID_PARAMETER","features":[3]},{"name":"FWP_E_INVALID_RANGE","features":[3]},{"name":"FWP_E_INVALID_TRANSFORM_COMBINATION","features":[3]},{"name":"FWP_E_INVALID_TUNNEL_ENDPOINT","features":[3]},{"name":"FWP_E_INVALID_WEIGHT","features":[3]},{"name":"FWP_E_IN_USE","features":[3]},{"name":"FWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[3]},{"name":"FWP_E_KEY_DICTATOR_ALREADY_REGISTERED","features":[3]},{"name":"FWP_E_KM_CLIENTS_ONLY","features":[3]},{"name":"FWP_E_L2_DRIVER_NOT_READY","features":[3]},{"name":"FWP_E_LAYER_NOT_FOUND","features":[3]},{"name":"FWP_E_LIFETIME_MISMATCH","features":[3]},{"name":"FWP_E_MATCH_TYPE_MISMATCH","features":[3]},{"name":"FWP_E_NET_EVENTS_DISABLED","features":[3]},{"name":"FWP_E_NEVER_MATCH","features":[3]},{"name":"FWP_E_NOTIFICATION_DROPPED","features":[3]},{"name":"FWP_E_NOT_FOUND","features":[3]},{"name":"FWP_E_NO_TXN_IN_PROGRESS","features":[3]},{"name":"FWP_E_NULL_DISPLAY_NAME","features":[3]},{"name":"FWP_E_NULL_POINTER","features":[3]},{"name":"FWP_E_OUT_OF_BOUNDS","features":[3]},{"name":"FWP_E_PROVIDER_CONTEXT_MISMATCH","features":[3]},{"name":"FWP_E_PROVIDER_CONTEXT_NOT_FOUND","features":[3]},{"name":"FWP_E_PROVIDER_NOT_FOUND","features":[3]},{"name":"FWP_E_RESERVED","features":[3]},{"name":"FWP_E_SESSION_ABORTED","features":[3]},{"name":"FWP_E_STILL_ON","features":[3]},{"name":"FWP_E_SUBLAYER_NOT_FOUND","features":[3]},{"name":"FWP_E_TIMEOUT","features":[3]},{"name":"FWP_E_TOO_MANY_CALLOUTS","features":[3]},{"name":"FWP_E_TOO_MANY_SUBLAYERS","features":[3]},{"name":"FWP_E_TRAFFIC_MISMATCH","features":[3]},{"name":"FWP_E_TXN_ABORTED","features":[3]},{"name":"FWP_E_TXN_IN_PROGRESS","features":[3]},{"name":"FWP_E_TYPE_MISMATCH","features":[3]},{"name":"FWP_E_WRONG_SESSION","features":[3]},{"name":"FWP_E_ZERO_LENGTH_ARRAY","features":[3]},{"name":"FreeLibrary","features":[3]},{"name":"GCN_E_DEFAULTNAMESPACE_EXISTS","features":[3]},{"name":"GCN_E_MODULE_NOT_FOUND","features":[3]},{"name":"GCN_E_NETADAPTER_NOT_FOUND","features":[3]},{"name":"GCN_E_NETADAPTER_TIMEOUT","features":[3]},{"name":"GCN_E_NETCOMPARTMENT_NOT_FOUND","features":[3]},{"name":"GCN_E_NETINTERFACE_NOT_FOUND","features":[3]},{"name":"GCN_E_NO_REQUEST_HANDLERS","features":[3]},{"name":"GCN_E_REQUEST_UNSUPPORTED","features":[3]},{"name":"GCN_E_RUNTIMEKEYS_FAILED","features":[3]},{"name":"GENERIC_ACCESS_RIGHTS","features":[3]},{"name":"GENERIC_ALL","features":[3]},{"name":"GENERIC_EXECUTE","features":[3]},{"name":"GENERIC_READ","features":[3]},{"name":"GENERIC_WRITE","features":[3]},{"name":"GetHandleInformation","features":[3]},{"name":"GetLastError","features":[3]},{"name":"GlobalFree","features":[3]},{"name":"HANDLE","features":[3]},{"name":"HANDLE_FLAGS","features":[3]},{"name":"HANDLE_FLAG_INHERIT","features":[3]},{"name":"HANDLE_FLAG_PROTECT_FROM_CLOSE","features":[3]},{"name":"HANDLE_PTR","features":[3]},{"name":"HCN_E_ADAPTER_NOT_FOUND","features":[3]},{"name":"HCN_E_ADDR_INVALID_OR_RESERVED","features":[3]},{"name":"HCN_E_DEGRADED_OPERATION","features":[3]},{"name":"HCN_E_ENDPOINT_ALREADY_ATTACHED","features":[3]},{"name":"HCN_E_ENDPOINT_NAMESPACE_ALREADY_EXISTS","features":[3]},{"name":"HCN_E_ENDPOINT_NOT_ATTACHED","features":[3]},{"name":"HCN_E_ENDPOINT_NOT_FOUND","features":[3]},{"name":"HCN_E_ENDPOINT_NOT_LOCAL","features":[3]},{"name":"HCN_E_ENDPOINT_SHARING_DISABLED","features":[3]},{"name":"HCN_E_ENTITY_HAS_REFERENCES","features":[3]},{"name":"HCN_E_GUID_CONVERSION_FAILURE","features":[3]},{"name":"HCN_E_ICS_DISABLED","features":[3]},{"name":"HCN_E_INVALID_ENDPOINT","features":[3]},{"name":"HCN_E_INVALID_INTERNAL_PORT","features":[3]},{"name":"HCN_E_INVALID_IP","features":[3]},{"name":"HCN_E_INVALID_IP_SUBNET","features":[3]},{"name":"HCN_E_INVALID_JSON","features":[3]},{"name":"HCN_E_INVALID_JSON_REFERENCE","features":[3]},{"name":"HCN_E_INVALID_NETWORK","features":[3]},{"name":"HCN_E_INVALID_NETWORK_TYPE","features":[3]},{"name":"HCN_E_INVALID_POLICY","features":[3]},{"name":"HCN_E_INVALID_POLICY_TYPE","features":[3]},{"name":"HCN_E_INVALID_PREFIX","features":[3]},{"name":"HCN_E_INVALID_REMOTE_ENDPOINT_OPERATION","features":[3]},{"name":"HCN_E_INVALID_SUBNET","features":[3]},{"name":"HCN_E_LAYER_ALREADY_EXISTS","features":[3]},{"name":"HCN_E_LAYER_NOT_FOUND","features":[3]},{"name":"HCN_E_MANAGER_STOPPED","features":[3]},{"name":"HCN_E_MAPPING_NOT_SUPPORTED","features":[3]},{"name":"HCN_E_NAMESPACE_ATTACH_FAILED","features":[3]},{"name":"HCN_E_NETWORK_ALREADY_EXISTS","features":[3]},{"name":"HCN_E_NETWORK_NOT_FOUND","features":[3]},{"name":"HCN_E_OBJECT_USED_AFTER_UNLOAD","features":[3]},{"name":"HCN_E_POLICY_ALREADY_EXISTS","features":[3]},{"name":"HCN_E_POLICY_NOT_FOUND","features":[3]},{"name":"HCN_E_PORT_ALREADY_EXISTS","features":[3]},{"name":"HCN_E_PORT_NOT_FOUND","features":[3]},{"name":"HCN_E_REGKEY_FAILURE","features":[3]},{"name":"HCN_E_REQUEST_UNSUPPORTED","features":[3]},{"name":"HCN_E_SHARED_SWITCH_MODIFICATION","features":[3]},{"name":"HCN_E_SUBNET_NOT_FOUND","features":[3]},{"name":"HCN_E_SWITCH_EXTENSION_NOT_FOUND","features":[3]},{"name":"HCN_E_SWITCH_NOT_FOUND","features":[3]},{"name":"HCN_E_VFP_NOT_ALLOWED","features":[3]},{"name":"HCN_E_VFP_PORTSETTING_NOT_FOUND","features":[3]},{"name":"HCN_INTERFACEPARAMETERS_ALREADY_APPLIED","features":[3]},{"name":"HCS_E_ACCESS_DENIED","features":[3]},{"name":"HCS_E_CONNECTION_CLOSED","features":[3]},{"name":"HCS_E_CONNECTION_TIMEOUT","features":[3]},{"name":"HCS_E_CONNECT_FAILED","features":[3]},{"name":"HCS_E_GUEST_CRITICAL_ERROR","features":[3]},{"name":"HCS_E_HYPERV_NOT_INSTALLED","features":[3]},{"name":"HCS_E_IMAGE_MISMATCH","features":[3]},{"name":"HCS_E_INVALID_JSON","features":[3]},{"name":"HCS_E_INVALID_LAYER","features":[3]},{"name":"HCS_E_INVALID_STATE","features":[3]},{"name":"HCS_E_OPERATION_ALREADY_CANCELLED","features":[3]},{"name":"HCS_E_OPERATION_ALREADY_STARTED","features":[3]},{"name":"HCS_E_OPERATION_NOT_STARTED","features":[3]},{"name":"HCS_E_OPERATION_PENDING","features":[3]},{"name":"HCS_E_OPERATION_RESULT_ALLOCATION_FAILED","features":[3]},{"name":"HCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET","features":[3]},{"name":"HCS_E_OPERATION_TIMEOUT","features":[3]},{"name":"HCS_E_PROCESS_ALREADY_STOPPED","features":[3]},{"name":"HCS_E_PROCESS_INFO_NOT_AVAILABLE","features":[3]},{"name":"HCS_E_PROTOCOL_ERROR","features":[3]},{"name":"HCS_E_SERVICE_DISCONNECT","features":[3]},{"name":"HCS_E_SERVICE_NOT_AVAILABLE","features":[3]},{"name":"HCS_E_SYSTEM_ALREADY_EXISTS","features":[3]},{"name":"HCS_E_SYSTEM_ALREADY_STOPPED","features":[3]},{"name":"HCS_E_SYSTEM_NOT_CONFIGURED_FOR_OPERATION","features":[3]},{"name":"HCS_E_SYSTEM_NOT_FOUND","features":[3]},{"name":"HCS_E_TERMINATED","features":[3]},{"name":"HCS_E_TERMINATED_DURING_START","features":[3]},{"name":"HCS_E_UNEXPECTED_EXIT","features":[3]},{"name":"HCS_E_UNKNOWN_MESSAGE","features":[3]},{"name":"HCS_E_UNSUPPORTED_PROTOCOL_VERSION","features":[3]},{"name":"HCS_E_WINDOWS_INSIDER_REQUIRED","features":[3]},{"name":"HGLOBAL","features":[3]},{"name":"HINSTANCE","features":[3]},{"name":"HLOCAL","features":[3]},{"name":"HLSURF","features":[3]},{"name":"HMODULE","features":[3]},{"name":"HRESULT","features":[3]},{"name":"HRSRC","features":[3]},{"name":"HSPRITE","features":[3]},{"name":"HSP_BASE_ERROR_MASK","features":[3]},{"name":"HSP_BASE_INTERNAL_ERROR","features":[3]},{"name":"HSP_BS_ERROR_MASK","features":[3]},{"name":"HSP_BS_INTERNAL_ERROR","features":[3]},{"name":"HSP_DRV_ERROR_MASK","features":[3]},{"name":"HSP_DRV_INTERNAL_ERROR","features":[3]},{"name":"HSP_E_ERROR_MASK","features":[3]},{"name":"HSP_E_INTERNAL_ERROR","features":[3]},{"name":"HSP_KSP_ALGORITHM_NOT_SUPPORTED","features":[3]},{"name":"HSP_KSP_BUFFER_TOO_SMALL","features":[3]},{"name":"HSP_KSP_DEVICE_NOT_READY","features":[3]},{"name":"HSP_KSP_ERROR_MASK","features":[3]},{"name":"HSP_KSP_INTERNAL_ERROR","features":[3]},{"name":"HSP_KSP_INVALID_DATA","features":[3]},{"name":"HSP_KSP_INVALID_FLAGS","features":[3]},{"name":"HSP_KSP_INVALID_KEY_HANDLE","features":[3]},{"name":"HSP_KSP_INVALID_KEY_TYPE","features":[3]},{"name":"HSP_KSP_INVALID_PARAMETER","features":[3]},{"name":"HSP_KSP_INVALID_PROVIDER_HANDLE","features":[3]},{"name":"HSP_KSP_KEY_ALREADY_FINALIZED","features":[3]},{"name":"HSP_KSP_KEY_EXISTS","features":[3]},{"name":"HSP_KSP_KEY_LOAD_FAIL","features":[3]},{"name":"HSP_KSP_KEY_MISSING","features":[3]},{"name":"HSP_KSP_KEY_NOT_FINALIZED","features":[3]},{"name":"HSP_KSP_NOT_SUPPORTED","features":[3]},{"name":"HSP_KSP_NO_MEMORY","features":[3]},{"name":"HSP_KSP_NO_MORE_ITEMS","features":[3]},{"name":"HSP_KSP_PARAMETER_NOT_SET","features":[3]},{"name":"HSTR","features":[3]},{"name":"HTTP_E_STATUS_AMBIGUOUS","features":[3]},{"name":"HTTP_E_STATUS_BAD_GATEWAY","features":[3]},{"name":"HTTP_E_STATUS_BAD_METHOD","features":[3]},{"name":"HTTP_E_STATUS_BAD_REQUEST","features":[3]},{"name":"HTTP_E_STATUS_CONFLICT","features":[3]},{"name":"HTTP_E_STATUS_DENIED","features":[3]},{"name":"HTTP_E_STATUS_EXPECTATION_FAILED","features":[3]},{"name":"HTTP_E_STATUS_FORBIDDEN","features":[3]},{"name":"HTTP_E_STATUS_GATEWAY_TIMEOUT","features":[3]},{"name":"HTTP_E_STATUS_GONE","features":[3]},{"name":"HTTP_E_STATUS_LENGTH_REQUIRED","features":[3]},{"name":"HTTP_E_STATUS_MOVED","features":[3]},{"name":"HTTP_E_STATUS_NONE_ACCEPTABLE","features":[3]},{"name":"HTTP_E_STATUS_NOT_FOUND","features":[3]},{"name":"HTTP_E_STATUS_NOT_MODIFIED","features":[3]},{"name":"HTTP_E_STATUS_NOT_SUPPORTED","features":[3]},{"name":"HTTP_E_STATUS_PAYMENT_REQ","features":[3]},{"name":"HTTP_E_STATUS_PRECOND_FAILED","features":[3]},{"name":"HTTP_E_STATUS_PROXY_AUTH_REQ","features":[3]},{"name":"HTTP_E_STATUS_RANGE_NOT_SATISFIABLE","features":[3]},{"name":"HTTP_E_STATUS_REDIRECT","features":[3]},{"name":"HTTP_E_STATUS_REDIRECT_KEEP_VERB","features":[3]},{"name":"HTTP_E_STATUS_REDIRECT_METHOD","features":[3]},{"name":"HTTP_E_STATUS_REQUEST_TIMEOUT","features":[3]},{"name":"HTTP_E_STATUS_REQUEST_TOO_LARGE","features":[3]},{"name":"HTTP_E_STATUS_SERVER_ERROR","features":[3]},{"name":"HTTP_E_STATUS_SERVICE_UNAVAIL","features":[3]},{"name":"HTTP_E_STATUS_UNEXPECTED","features":[3]},{"name":"HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR","features":[3]},{"name":"HTTP_E_STATUS_UNEXPECTED_REDIRECTION","features":[3]},{"name":"HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR","features":[3]},{"name":"HTTP_E_STATUS_UNSUPPORTED_MEDIA","features":[3]},{"name":"HTTP_E_STATUS_URI_TOO_LONG","features":[3]},{"name":"HTTP_E_STATUS_USE_PROXY","features":[3]},{"name":"HTTP_E_STATUS_VERSION_NOT_SUP","features":[3]},{"name":"HUMPD","features":[3]},{"name":"HWND","features":[3]},{"name":"INPLACE_E_FIRST","features":[3]},{"name":"INPLACE_E_LAST","features":[3]},{"name":"INPLACE_E_NOTOOLSPACE","features":[3]},{"name":"INPLACE_E_NOTUNDOABLE","features":[3]},{"name":"INPLACE_S_FIRST","features":[3]},{"name":"INPLACE_S_LAST","features":[3]},{"name":"INPLACE_S_TRUNCATED","features":[3]},{"name":"INPUT_E_DEVICE_INFO","features":[3]},{"name":"INPUT_E_DEVICE_PROPERTY","features":[3]},{"name":"INPUT_E_FRAME","features":[3]},{"name":"INPUT_E_HISTORY","features":[3]},{"name":"INPUT_E_MULTIMODAL","features":[3]},{"name":"INPUT_E_OUT_OF_ORDER","features":[3]},{"name":"INPUT_E_PACKET","features":[3]},{"name":"INPUT_E_REENTRANCY","features":[3]},{"name":"INPUT_E_TRANSFORM","features":[3]},{"name":"INVALID_HANDLE_VALUE","features":[3]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_BIG","features":[3]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_FULL","features":[3]},{"name":"IORING_E_CORRUPT","features":[3]},{"name":"IORING_E_REQUIRED_FLAG_NOT_SUPPORTED","features":[3]},{"name":"IORING_E_SUBMISSION_QUEUE_FULL","features":[3]},{"name":"IORING_E_SUBMISSION_QUEUE_TOO_BIG","features":[3]},{"name":"IORING_E_SUBMIT_IN_PROGRESS","features":[3]},{"name":"IORING_E_VERSION_NOT_SUPPORTED","features":[3]},{"name":"IO_BAD_BLOCK_WITH_NAME","features":[3]},{"name":"IO_CDROM_EXCLUSIVE_LOCK","features":[3]},{"name":"IO_DRIVER_CANCEL_TIMEOUT","features":[3]},{"name":"IO_DUMP_CALLBACK_EXCEPTION","features":[3]},{"name":"IO_DUMP_CREATION_SUCCESS","features":[3]},{"name":"IO_DUMP_DIRECT_CONFIG_FAILED","features":[3]},{"name":"IO_DUMP_DRIVER_LOAD_FAILURE","features":[3]},{"name":"IO_DUMP_DUMPFILE_CONFLICT","features":[3]},{"name":"IO_DUMP_INITIALIZATION_FAILURE","features":[3]},{"name":"IO_DUMP_INIT_DEDICATED_DUMP_FAILURE","features":[3]},{"name":"IO_DUMP_PAGE_CONFIG_FAILED","features":[3]},{"name":"IO_DUMP_POINTER_FAILURE","features":[3]},{"name":"IO_ERROR_DISK_RESOURCES_EXHAUSTED","features":[3]},{"name":"IO_ERROR_DUMP_CREATION_ERROR","features":[3]},{"name":"IO_ERROR_IO_HARDWARE_ERROR","features":[3]},{"name":"IO_ERR_BAD_BLOCK","features":[3]},{"name":"IO_ERR_BAD_FIRMWARE","features":[3]},{"name":"IO_ERR_CONFIGURATION_ERROR","features":[3]},{"name":"IO_ERR_CONTROLLER_ERROR","features":[3]},{"name":"IO_ERR_DMA_CONFLICT_DETECTED","features":[3]},{"name":"IO_ERR_DMA_RESOURCE_CONFLICT","features":[3]},{"name":"IO_ERR_DRIVER_ERROR","features":[3]},{"name":"IO_ERR_INCORRECT_IRQL","features":[3]},{"name":"IO_ERR_INSUFFICIENT_RESOURCES","features":[3]},{"name":"IO_ERR_INTERNAL_ERROR","features":[3]},{"name":"IO_ERR_INTERRUPT_RESOURCE_CONFLICT","features":[3]},{"name":"IO_ERR_INVALID_IOBASE","features":[3]},{"name":"IO_ERR_INVALID_REQUEST","features":[3]},{"name":"IO_ERR_IRQ_CONFLICT_DETECTED","features":[3]},{"name":"IO_ERR_LAYERED_FAILURE","features":[3]},{"name":"IO_ERR_MEMORY_CONFLICT_DETECTED","features":[3]},{"name":"IO_ERR_MEMORY_RESOURCE_CONFLICT","features":[3]},{"name":"IO_ERR_NOT_READY","features":[3]},{"name":"IO_ERR_OVERRUN_ERROR","features":[3]},{"name":"IO_ERR_PARITY","features":[3]},{"name":"IO_ERR_PORT_CONFLICT_DETECTED","features":[3]},{"name":"IO_ERR_PORT_RESOURCE_CONFLICT","features":[3]},{"name":"IO_ERR_PORT_TIMEOUT","features":[3]},{"name":"IO_ERR_PROTOCOL","features":[3]},{"name":"IO_ERR_RESET","features":[3]},{"name":"IO_ERR_RETRY_SUCCEEDED","features":[3]},{"name":"IO_ERR_SEEK_ERROR","features":[3]},{"name":"IO_ERR_SEQUENCE","features":[3]},{"name":"IO_ERR_THREAD_STUCK_IN_DEVICE_DRIVER","features":[3]},{"name":"IO_ERR_TIMEOUT","features":[3]},{"name":"IO_ERR_VERSION","features":[3]},{"name":"IO_FILE_QUOTA_CORRUPT","features":[3]},{"name":"IO_FILE_QUOTA_FAILED","features":[3]},{"name":"IO_FILE_QUOTA_LIMIT","features":[3]},{"name":"IO_FILE_QUOTA_STARTED","features":[3]},{"name":"IO_FILE_QUOTA_SUCCEEDED","features":[3]},{"name":"IO_FILE_QUOTA_THRESHOLD","features":[3]},{"name":"IO_FILE_SYSTEM_CORRUPT","features":[3]},{"name":"IO_FILE_SYSTEM_CORRUPT_WITH_NAME","features":[3]},{"name":"IO_INFO_THROTTLE_COMPLETE","features":[3]},{"name":"IO_LOST_DELAYED_WRITE","features":[3]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_DISCONNECTED","features":[3]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_LOCAL_DISK_ERROR","features":[3]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_SERVER_ERROR","features":[3]},{"name":"IO_RECOVERED_VIA_ECC","features":[3]},{"name":"IO_SYSTEM_SLEEP_FAILED","features":[3]},{"name":"IO_WARNING_ADAPTER_FIRMWARE_UPDATED","features":[3]},{"name":"IO_WARNING_ALLOCATION_FAILED","features":[3]},{"name":"IO_WARNING_BUS_RESET","features":[3]},{"name":"IO_WARNING_COMPLETION_TIME","features":[3]},{"name":"IO_WARNING_DEVICE_HAS_INTERNAL_DUMP","features":[3]},{"name":"IO_WARNING_DISK_CAPACITY_CHANGED","features":[3]},{"name":"IO_WARNING_DISK_FIRMWARE_UPDATED","features":[3]},{"name":"IO_WARNING_DISK_PROVISIONING_TYPE_CHANGED","features":[3]},{"name":"IO_WARNING_DISK_SURPRISE_REMOVED","features":[3]},{"name":"IO_WARNING_DUMP_DISABLED_DEVICE_GONE","features":[3]},{"name":"IO_WARNING_DUPLICATE_PATH","features":[3]},{"name":"IO_WARNING_DUPLICATE_SIGNATURE","features":[3]},{"name":"IO_WARNING_INTERRUPT_STILL_PENDING","features":[3]},{"name":"IO_WARNING_IO_OPERATION_RETRIED","features":[3]},{"name":"IO_WARNING_LOG_FLUSH_FAILED","features":[3]},{"name":"IO_WARNING_PAGING_FAILURE","features":[3]},{"name":"IO_WARNING_REPEATED_DISK_GUID","features":[3]},{"name":"IO_WARNING_RESET","features":[3]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED","features":[3]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX","features":[3]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_LUN","features":[3]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_POOL","features":[3]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_LUN","features":[3]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_POOL","features":[3]},{"name":"IO_WARNING_VOLUME_LOST_DISK_EXTENT","features":[3]},{"name":"IO_WARNING_WRITE_FUA_PROBLEM","features":[3]},{"name":"IO_WRITE_CACHE_DISABLED","features":[3]},{"name":"IO_WRITE_CACHE_ENABLED","features":[3]},{"name":"IO_WRN_BAD_FIRMWARE","features":[3]},{"name":"IO_WRN_FAILURE_PREDICTED","features":[3]},{"name":"JSCRIPT_E_CANTEXECUTE","features":[3]},{"name":"LANGUAGE_E_DATABASE_NOT_FOUND","features":[3]},{"name":"LANGUAGE_S_LARGE_WORD","features":[3]},{"name":"LPARAM","features":[3]},{"name":"LRESULT","features":[3]},{"name":"LUID","features":[3]},{"name":"LocalFree","features":[3]},{"name":"MARSHAL_E_FIRST","features":[3]},{"name":"MARSHAL_E_LAST","features":[3]},{"name":"MARSHAL_S_FIRST","features":[3]},{"name":"MARSHAL_S_LAST","features":[3]},{"name":"MAX_PATH","features":[3]},{"name":"MCA_BUS_ERROR","features":[3]},{"name":"MCA_BUS_TIMEOUT_ERROR","features":[3]},{"name":"MCA_ERROR_CACHE","features":[3]},{"name":"MCA_ERROR_CPU","features":[3]},{"name":"MCA_ERROR_CPU_BUS","features":[3]},{"name":"MCA_ERROR_MAS","features":[3]},{"name":"MCA_ERROR_MEM_1_2","features":[3]},{"name":"MCA_ERROR_MEM_1_2_5","features":[3]},{"name":"MCA_ERROR_MEM_1_2_5_4","features":[3]},{"name":"MCA_ERROR_MEM_UNKNOWN","features":[3]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT","features":[3]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT_NO_INFO","features":[3]},{"name":"MCA_ERROR_PCI_BUS_PARITY","features":[3]},{"name":"MCA_ERROR_PCI_BUS_PARITY_NO_INFO","features":[3]},{"name":"MCA_ERROR_PCI_BUS_SERR","features":[3]},{"name":"MCA_ERROR_PCI_BUS_SERR_NO_INFO","features":[3]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT","features":[3]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT_NO_INFO","features":[3]},{"name":"MCA_ERROR_PCI_BUS_UNKNOWN","features":[3]},{"name":"MCA_ERROR_PCI_DEVICE","features":[3]},{"name":"MCA_ERROR_PLATFORM_SPECIFIC","features":[3]},{"name":"MCA_ERROR_REGISTER_FILE","features":[3]},{"name":"MCA_ERROR_SMBIOS","features":[3]},{"name":"MCA_ERROR_SYSTEM_EVENT","features":[3]},{"name":"MCA_ERROR_TLB","features":[3]},{"name":"MCA_ERROR_UNKNOWN","features":[3]},{"name":"MCA_ERROR_UNKNOWN_NO_CPU","features":[3]},{"name":"MCA_EXTERNAL_ERROR","features":[3]},{"name":"MCA_FRC_ERROR","features":[3]},{"name":"MCA_INFO_CPU_THERMAL_THROTTLING_REMOVED","features":[3]},{"name":"MCA_INFO_MEMORY_PAGE_MARKED_BAD","features":[3]},{"name":"MCA_INFO_NO_MORE_CORRECTED_ERROR_LOGS","features":[3]},{"name":"MCA_INTERNALTIMER_ERROR","features":[3]},{"name":"MCA_MEMORYHIERARCHY_ERROR","features":[3]},{"name":"MCA_MICROCODE_ROM_PARITY_ERROR","features":[3]},{"name":"MCA_TLB_ERROR","features":[3]},{"name":"MCA_WARNING_CACHE","features":[3]},{"name":"MCA_WARNING_CMC_THRESHOLD_EXCEEDED","features":[3]},{"name":"MCA_WARNING_CPE_THRESHOLD_EXCEEDED","features":[3]},{"name":"MCA_WARNING_CPU","features":[3]},{"name":"MCA_WARNING_CPU_BUS","features":[3]},{"name":"MCA_WARNING_CPU_THERMAL_THROTTLED","features":[3]},{"name":"MCA_WARNING_MAS","features":[3]},{"name":"MCA_WARNING_MEM_1_2","features":[3]},{"name":"MCA_WARNING_MEM_1_2_5","features":[3]},{"name":"MCA_WARNING_MEM_1_2_5_4","features":[3]},{"name":"MCA_WARNING_MEM_UNKNOWN","features":[3]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT","features":[3]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT_NO_INFO","features":[3]},{"name":"MCA_WARNING_PCI_BUS_PARITY","features":[3]},{"name":"MCA_WARNING_PCI_BUS_PARITY_NO_INFO","features":[3]},{"name":"MCA_WARNING_PCI_BUS_SERR","features":[3]},{"name":"MCA_WARNING_PCI_BUS_SERR_NO_INFO","features":[3]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT","features":[3]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT_NO_INFO","features":[3]},{"name":"MCA_WARNING_PCI_BUS_UNKNOWN","features":[3]},{"name":"MCA_WARNING_PCI_DEVICE","features":[3]},{"name":"MCA_WARNING_PLATFORM_SPECIFIC","features":[3]},{"name":"MCA_WARNING_REGISTER_FILE","features":[3]},{"name":"MCA_WARNING_SMBIOS","features":[3]},{"name":"MCA_WARNING_SYSTEM_EVENT","features":[3]},{"name":"MCA_WARNING_TLB","features":[3]},{"name":"MCA_WARNING_UNKNOWN","features":[3]},{"name":"MCA_WARNING_UNKNOWN_NO_CPU","features":[3]},{"name":"MEM_E_INVALID_LINK","features":[3]},{"name":"MEM_E_INVALID_ROOT","features":[3]},{"name":"MEM_E_INVALID_SIZE","features":[3]},{"name":"MENROLL_S_ENROLLMENT_SUSPENDED","features":[3]},{"name":"MILAVERR_INSUFFICIENTVIDEORESOURCES","features":[3]},{"name":"MILAVERR_INVALIDWMPVERSION","features":[3]},{"name":"MILAVERR_MEDIAPLAYERCLOSED","features":[3]},{"name":"MILAVERR_MODULENOTLOADED","features":[3]},{"name":"MILAVERR_NOCLOCK","features":[3]},{"name":"MILAVERR_NOMEDIATYPE","features":[3]},{"name":"MILAVERR_NOREADYFRAMES","features":[3]},{"name":"MILAVERR_NOVIDEOMIXER","features":[3]},{"name":"MILAVERR_NOVIDEOPRESENTER","features":[3]},{"name":"MILAVERR_REQUESTEDTEXTURETOOBIG","features":[3]},{"name":"MILAVERR_SEEKFAILED","features":[3]},{"name":"MILAVERR_UNEXPECTEDWMPFAILURE","features":[3]},{"name":"MILAVERR_UNKNOWNHARDWAREERROR","features":[3]},{"name":"MILAVERR_VIDEOACCELERATIONNOTAVAILABLE","features":[3]},{"name":"MILAVERR_WMPFACTORYNOTREGISTERED","features":[3]},{"name":"MILEFFECTSERR_ALREADYATTACHEDTOLISTENER","features":[3]},{"name":"MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT","features":[3]},{"name":"MILEFFECTSERR_CONNECTORNOTCONNECTED","features":[3]},{"name":"MILEFFECTSERR_CYCLEDETECTED","features":[3]},{"name":"MILEFFECTSERR_EFFECTALREADYINAGRAPH","features":[3]},{"name":"MILEFFECTSERR_EFFECTHASNOCHILDREN","features":[3]},{"name":"MILEFFECTSERR_EFFECTINMORETHANONEGRAPH","features":[3]},{"name":"MILEFFECTSERR_EFFECTNOTPARTOFGROUP","features":[3]},{"name":"MILEFFECTSERR_EMPTYBOUNDS","features":[3]},{"name":"MILEFFECTSERR_NOINPUTSOURCEATTACHED","features":[3]},{"name":"MILEFFECTSERR_NOTAFFINETRANSFORM","features":[3]},{"name":"MILEFFECTSERR_OUTPUTSIZETOOLARGE","features":[3]},{"name":"MILEFFECTSERR_RESERVED","features":[3]},{"name":"MILEFFECTSERR_UNKNOWNPROPERTY","features":[3]},{"name":"MILERR_ADAPTER_NOT_FOUND","features":[3]},{"name":"MILERR_ALREADYLOCKED","features":[3]},{"name":"MILERR_ALREADY_INITIALIZED","features":[3]},{"name":"MILERR_BADNUMBER","features":[3]},{"name":"MILERR_COLORSPACE_NOT_SUPPORTED","features":[3]},{"name":"MILERR_DEVICECANNOTRENDERTEXT","features":[3]},{"name":"MILERR_DISPLAYFORMATNOTSUPPORTED","features":[3]},{"name":"MILERR_DISPLAYID_ACCESS_DENIED","features":[3]},{"name":"MILERR_DISPLAYSTATEINVALID","features":[3]},{"name":"MILERR_DXGI_ENUMERATION_OUT_OF_SYNC","features":[3]},{"name":"MILERR_GENERIC_IGNORE","features":[3]},{"name":"MILERR_GLYPHBITMAPMISSED","features":[3]},{"name":"MILERR_INSUFFICIENTBUFFER","features":[3]},{"name":"MILERR_INTERNALERROR","features":[3]},{"name":"MILERR_INVALIDCALL","features":[3]},{"name":"MILERR_MALFORMEDGLYPHCACHE","features":[3]},{"name":"MILERR_MALFORMED_GUIDELINE_DATA","features":[3]},{"name":"MILERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[3]},{"name":"MILERR_MISMATCHED_SIZE","features":[3]},{"name":"MILERR_MROW_READLOCK_FAILED","features":[3]},{"name":"MILERR_MROW_UPDATE_FAILED","features":[3]},{"name":"MILERR_NEED_RECREATE_AND_PRESENT","features":[3]},{"name":"MILERR_NONINVERTIBLEMATRIX","features":[3]},{"name":"MILERR_NOTLOCKED","features":[3]},{"name":"MILERR_NOT_QUEUING_PRESENTS","features":[3]},{"name":"MILERR_NO_HARDWARE_DEVICE","features":[3]},{"name":"MILERR_NO_REDIRECTION_SURFACE_AVAILABLE","features":[3]},{"name":"MILERR_NO_REDIRECTION_SURFACE_RETRY_LATER","features":[3]},{"name":"MILERR_OBJECTBUSY","features":[3]},{"name":"MILERR_PREFILTER_NOT_SUPPORTED","features":[3]},{"name":"MILERR_QPC_TIME_WENT_BACKWARD","features":[3]},{"name":"MILERR_QUEUED_PRESENT_NOT_SUPPORTED","features":[3]},{"name":"MILERR_REMOTING_NOT_SUPPORTED","features":[3]},{"name":"MILERR_SCANNER_FAILED","features":[3]},{"name":"MILERR_SCREENACCESSDENIED","features":[3]},{"name":"MILERR_SHADER_COMPILE_FAILED","features":[3]},{"name":"MILERR_TERMINATED","features":[3]},{"name":"MILERR_TOOMANYSHADERELEMNTS","features":[3]},{"name":"MILERR_WIN32ERROR","features":[3]},{"name":"MILERR_ZEROVECTOR","features":[3]},{"name":"MK_E_CANTOPENFILE","features":[3]},{"name":"MK_E_CONNECTMANUALLY","features":[3]},{"name":"MK_E_ENUMERATION_FAILED","features":[3]},{"name":"MK_E_EXCEEDEDDEADLINE","features":[3]},{"name":"MK_E_FIRST","features":[3]},{"name":"MK_E_INTERMEDIATEINTERFACENOTSUPPORTED","features":[3]},{"name":"MK_E_INVALIDEXTENSION","features":[3]},{"name":"MK_E_LAST","features":[3]},{"name":"MK_E_MUSTBOTHERUSER","features":[3]},{"name":"MK_E_NEEDGENERIC","features":[3]},{"name":"MK_E_NOINVERSE","features":[3]},{"name":"MK_E_NOOBJECT","features":[3]},{"name":"MK_E_NOPREFIX","features":[3]},{"name":"MK_E_NOSTORAGE","features":[3]},{"name":"MK_E_NOTBINDABLE","features":[3]},{"name":"MK_E_NOTBOUND","features":[3]},{"name":"MK_E_NO_NORMALIZED","features":[3]},{"name":"MK_E_SYNTAX","features":[3]},{"name":"MK_E_UNAVAILABLE","features":[3]},{"name":"MK_S_FIRST","features":[3]},{"name":"MK_S_HIM","features":[3]},{"name":"MK_S_LAST","features":[3]},{"name":"MK_S_ME","features":[3]},{"name":"MK_S_MONIKERALREADYREGISTERED","features":[3]},{"name":"MK_S_REDUCED_TO_SELF","features":[3]},{"name":"MK_S_US","features":[3]},{"name":"MSDTC_E_DUPLICATE_RESOURCE","features":[3]},{"name":"MSSIPOTF_E_BADVERSION","features":[3]},{"name":"MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT","features":[3]},{"name":"MSSIPOTF_E_BAD_MAGICNUMBER","features":[3]},{"name":"MSSIPOTF_E_BAD_OFFSET_TABLE","features":[3]},{"name":"MSSIPOTF_E_CANTGETOBJECT","features":[3]},{"name":"MSSIPOTF_E_CRYPT","features":[3]},{"name":"MSSIPOTF_E_DSIG_STRUCTURE","features":[3]},{"name":"MSSIPOTF_E_FAILED_HINTS_CHECK","features":[3]},{"name":"MSSIPOTF_E_FAILED_POLICY","features":[3]},{"name":"MSSIPOTF_E_FILE","features":[3]},{"name":"MSSIPOTF_E_FILETOOSMALL","features":[3]},{"name":"MSSIPOTF_E_FILE_CHECKSUM","features":[3]},{"name":"MSSIPOTF_E_NOHEADTABLE","features":[3]},{"name":"MSSIPOTF_E_NOT_OPENTYPE","features":[3]},{"name":"MSSIPOTF_E_OUTOFMEMRANGE","features":[3]},{"name":"MSSIPOTF_E_PCONST_CHECK","features":[3]},{"name":"MSSIPOTF_E_STRUCTURE","features":[3]},{"name":"MSSIPOTF_E_TABLES_OVERLAP","features":[3]},{"name":"MSSIPOTF_E_TABLE_CHECKSUM","features":[3]},{"name":"MSSIPOTF_E_TABLE_LONGWORD","features":[3]},{"name":"MSSIPOTF_E_TABLE_PADBYTES","features":[3]},{"name":"MSSIPOTF_E_TABLE_TAGORDER","features":[3]},{"name":"NAP_E_CONFLICTING_ID","features":[3]},{"name":"NAP_E_ENTITY_DISABLED","features":[3]},{"name":"NAP_E_ID_NOT_FOUND","features":[3]},{"name":"NAP_E_INVALID_PACKET","features":[3]},{"name":"NAP_E_MAXSIZE_TOO_SMALL","features":[3]},{"name":"NAP_E_MISMATCHED_ID","features":[3]},{"name":"NAP_E_MISSING_SOH","features":[3]},{"name":"NAP_E_NETSH_GROUPPOLICY_ERROR","features":[3]},{"name":"NAP_E_NOT_INITIALIZED","features":[3]},{"name":"NAP_E_NOT_PENDING","features":[3]},{"name":"NAP_E_NOT_REGISTERED","features":[3]},{"name":"NAP_E_NO_CACHED_SOH","features":[3]},{"name":"NAP_E_SERVICE_NOT_RUNNING","features":[3]},{"name":"NAP_E_SHV_CONFIG_EXISTED","features":[3]},{"name":"NAP_E_SHV_CONFIG_NOT_FOUND","features":[3]},{"name":"NAP_E_SHV_TIMEOUT","features":[3]},{"name":"NAP_E_STILL_BOUND","features":[3]},{"name":"NAP_E_TOO_MANY_CALLS","features":[3]},{"name":"NAP_S_CERT_ALREADY_PRESENT","features":[3]},{"name":"NEARPROC","features":[3]},{"name":"NOERROR","features":[3]},{"name":"NOT_AN_ERROR1","features":[3]},{"name":"NO_ERROR","features":[3]},{"name":"NTDDI_MAXVER","features":[3]},{"name":"NTE_AUTHENTICATION_IGNORED","features":[3]},{"name":"NTE_BAD_ALGID","features":[3]},{"name":"NTE_BAD_DATA","features":[3]},{"name":"NTE_BAD_FLAGS","features":[3]},{"name":"NTE_BAD_HASH","features":[3]},{"name":"NTE_BAD_HASH_STATE","features":[3]},{"name":"NTE_BAD_KEY","features":[3]},{"name":"NTE_BAD_KEYSET","features":[3]},{"name":"NTE_BAD_KEYSET_PARAM","features":[3]},{"name":"NTE_BAD_KEY_STATE","features":[3]},{"name":"NTE_BAD_LEN","features":[3]},{"name":"NTE_BAD_PROVIDER","features":[3]},{"name":"NTE_BAD_PROV_TYPE","features":[3]},{"name":"NTE_BAD_PUBLIC_KEY","features":[3]},{"name":"NTE_BAD_SIGNATURE","features":[3]},{"name":"NTE_BAD_TYPE","features":[3]},{"name":"NTE_BAD_UID","features":[3]},{"name":"NTE_BAD_VER","features":[3]},{"name":"NTE_BUFFERS_OVERLAP","features":[3]},{"name":"NTE_BUFFER_TOO_SMALL","features":[3]},{"name":"NTE_DECRYPTION_FAILURE","features":[3]},{"name":"NTE_DEVICE_NOT_FOUND","features":[3]},{"name":"NTE_DEVICE_NOT_READY","features":[3]},{"name":"NTE_DOUBLE_ENCRYPT","features":[3]},{"name":"NTE_ENCRYPTION_FAILURE","features":[3]},{"name":"NTE_EXISTS","features":[3]},{"name":"NTE_FAIL","features":[3]},{"name":"NTE_FIXEDPARAMETER","features":[3]},{"name":"NTE_HMAC_NOT_SUPPORTED","features":[3]},{"name":"NTE_INCORRECT_PASSWORD","features":[3]},{"name":"NTE_INTERNAL_ERROR","features":[3]},{"name":"NTE_INVALID_HANDLE","features":[3]},{"name":"NTE_INVALID_PARAMETER","features":[3]},{"name":"NTE_KEYSET_ENTRY_BAD","features":[3]},{"name":"NTE_KEYSET_NOT_DEF","features":[3]},{"name":"NTE_NOT_ACTIVE_CONSOLE","features":[3]},{"name":"NTE_NOT_FOUND","features":[3]},{"name":"NTE_NOT_SUPPORTED","features":[3]},{"name":"NTE_NO_KEY","features":[3]},{"name":"NTE_NO_MEMORY","features":[3]},{"name":"NTE_NO_MORE_ITEMS","features":[3]},{"name":"NTE_OP_OK","features":[3]},{"name":"NTE_PASSWORD_CHANGE_REQUIRED","features":[3]},{"name":"NTE_PERM","features":[3]},{"name":"NTE_PROVIDER_DLL_FAIL","features":[3]},{"name":"NTE_PROV_DLL_NOT_FOUND","features":[3]},{"name":"NTE_PROV_TYPE_ENTRY_BAD","features":[3]},{"name":"NTE_PROV_TYPE_NOT_DEF","features":[3]},{"name":"NTE_PROV_TYPE_NO_MATCH","features":[3]},{"name":"NTE_SIGNATURE_FILE_BAD","features":[3]},{"name":"NTE_SILENT_CONTEXT","features":[3]},{"name":"NTE_SYS_ERR","features":[3]},{"name":"NTE_TEMPORARY_PROFILE","features":[3]},{"name":"NTE_TOKEN_KEYSET_STORAGE_FULL","features":[3]},{"name":"NTE_UI_REQUIRED","features":[3]},{"name":"NTE_USER_CANCELLED","features":[3]},{"name":"NTE_VALIDATION_FAILED","features":[3]},{"name":"NTSTATUS","features":[3]},{"name":"NTSTATUS_FACILITY_CODE","features":[3]},{"name":"NTSTATUS_SEVERITY_CODE","features":[3]},{"name":"OLEOBJ_E_FIRST","features":[3]},{"name":"OLEOBJ_E_INVALIDVERB","features":[3]},{"name":"OLEOBJ_E_LAST","features":[3]},{"name":"OLEOBJ_E_NOVERBS","features":[3]},{"name":"OLEOBJ_S_CANNOT_DOVERB_NOW","features":[3]},{"name":"OLEOBJ_S_FIRST","features":[3]},{"name":"OLEOBJ_S_INVALIDHWND","features":[3]},{"name":"OLEOBJ_S_INVALIDVERB","features":[3]},{"name":"OLEOBJ_S_LAST","features":[3]},{"name":"OLE_E_ADVF","features":[3]},{"name":"OLE_E_ADVISENOTSUPPORTED","features":[3]},{"name":"OLE_E_BLANK","features":[3]},{"name":"OLE_E_CANTCONVERT","features":[3]},{"name":"OLE_E_CANT_BINDTOSOURCE","features":[3]},{"name":"OLE_E_CANT_GETMONIKER","features":[3]},{"name":"OLE_E_CLASSDIFF","features":[3]},{"name":"OLE_E_ENUM_NOMORE","features":[3]},{"name":"OLE_E_FIRST","features":[3]},{"name":"OLE_E_INVALIDHWND","features":[3]},{"name":"OLE_E_INVALIDRECT","features":[3]},{"name":"OLE_E_LAST","features":[3]},{"name":"OLE_E_NOCACHE","features":[3]},{"name":"OLE_E_NOCONNECTION","features":[3]},{"name":"OLE_E_NOSTORAGE","features":[3]},{"name":"OLE_E_NOTRUNNING","features":[3]},{"name":"OLE_E_NOT_INPLACEACTIVE","features":[3]},{"name":"OLE_E_OLEVERB","features":[3]},{"name":"OLE_E_PROMPTSAVECANCELLED","features":[3]},{"name":"OLE_E_STATIC","features":[3]},{"name":"OLE_E_WRONGCOMPOBJ","features":[3]},{"name":"OLE_S_FIRST","features":[3]},{"name":"OLE_S_LAST","features":[3]},{"name":"OLE_S_MAC_CLIPFORMAT","features":[3]},{"name":"OLE_S_STATIC","features":[3]},{"name":"OLE_S_USEREG","features":[3]},{"name":"ONL_CONNECTION_COUNT_LIMIT","features":[3]},{"name":"ONL_E_ACCESS_DENIED_BY_TOU","features":[3]},{"name":"ONL_E_ACCOUNT_LOCKED","features":[3]},{"name":"ONL_E_ACCOUNT_SUSPENDED_ABUSE","features":[3]},{"name":"ONL_E_ACCOUNT_SUSPENDED_COMPROIMISE","features":[3]},{"name":"ONL_E_ACCOUNT_UPDATE_REQUIRED","features":[3]},{"name":"ONL_E_ACTION_REQUIRED","features":[3]},{"name":"ONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT","features":[3]},{"name":"ONL_E_EMAIL_VERIFICATION_REQUIRED","features":[3]},{"name":"ONL_E_FORCESIGNIN","features":[3]},{"name":"ONL_E_INVALID_APPLICATION","features":[3]},{"name":"ONL_E_INVALID_AUTHENTICATION_TARGET","features":[3]},{"name":"ONL_E_PARENTAL_CONSENT_REQUIRED","features":[3]},{"name":"ONL_E_PASSWORD_UPDATE_REQUIRED","features":[3]},{"name":"ONL_E_REQUEST_THROTTLED","features":[3]},{"name":"ONL_E_USER_AUTHENTICATION_REQUIRED","features":[3]},{"name":"OR_INVALID_OID","features":[3]},{"name":"OR_INVALID_OXID","features":[3]},{"name":"OR_INVALID_SET","features":[3]},{"name":"OSS_ACCESS_SERIALIZATION_ERROR","features":[3]},{"name":"OSS_API_DLL_NOT_LINKED","features":[3]},{"name":"OSS_BAD_ARG","features":[3]},{"name":"OSS_BAD_ENCRULES","features":[3]},{"name":"OSS_BAD_PTR","features":[3]},{"name":"OSS_BAD_TABLE","features":[3]},{"name":"OSS_BAD_TIME","features":[3]},{"name":"OSS_BAD_VERSION","features":[3]},{"name":"OSS_BERDER_DLL_NOT_LINKED","features":[3]},{"name":"OSS_CANT_CLOSE_TRACE_FILE","features":[3]},{"name":"OSS_CANT_OPEN_TRACE_FILE","features":[3]},{"name":"OSS_CANT_OPEN_TRACE_WINDOW","features":[3]},{"name":"OSS_COMPARATOR_CODE_NOT_LINKED","features":[3]},{"name":"OSS_COMPARATOR_DLL_NOT_LINKED","features":[3]},{"name":"OSS_CONSTRAINT_DLL_NOT_LINKED","features":[3]},{"name":"OSS_CONSTRAINT_VIOLATED","features":[3]},{"name":"OSS_COPIER_DLL_NOT_LINKED","features":[3]},{"name":"OSS_DATA_ERROR","features":[3]},{"name":"OSS_FATAL_ERROR","features":[3]},{"name":"OSS_INDEFINITE_NOT_SUPPORTED","features":[3]},{"name":"OSS_LIMITED","features":[3]},{"name":"OSS_MEM_ERROR","features":[3]},{"name":"OSS_MEM_MGR_DLL_NOT_LINKED","features":[3]},{"name":"OSS_MORE_BUF","features":[3]},{"name":"OSS_MORE_INPUT","features":[3]},{"name":"OSS_MUTEX_NOT_CREATED","features":[3]},{"name":"OSS_NEGATIVE_UINTEGER","features":[3]},{"name":"OSS_NULL_FCN","features":[3]},{"name":"OSS_NULL_TBL","features":[3]},{"name":"OSS_OID_DLL_NOT_LINKED","features":[3]},{"name":"OSS_OPEN_TYPE_ERROR","features":[3]},{"name":"OSS_OUT_MEMORY","features":[3]},{"name":"OSS_OUT_OF_RANGE","features":[3]},{"name":"OSS_PDU_MISMATCH","features":[3]},{"name":"OSS_PDU_RANGE","features":[3]},{"name":"OSS_PDV_CODE_NOT_LINKED","features":[3]},{"name":"OSS_PDV_DLL_NOT_LINKED","features":[3]},{"name":"OSS_PER_DLL_NOT_LINKED","features":[3]},{"name":"OSS_REAL_CODE_NOT_LINKED","features":[3]},{"name":"OSS_REAL_DLL_NOT_LINKED","features":[3]},{"name":"OSS_TABLE_MISMATCH","features":[3]},{"name":"OSS_TOO_LONG","features":[3]},{"name":"OSS_TRACE_FILE_ALREADY_OPEN","features":[3]},{"name":"OSS_TYPE_NOT_SUPPORTED","features":[3]},{"name":"OSS_UNAVAIL_ENCRULES","features":[3]},{"name":"OSS_UNIMPLEMENTED","features":[3]},{"name":"PAPCFUNC","features":[3]},{"name":"PEERDIST_ERROR_ALREADY_COMPLETED","features":[3]},{"name":"PEERDIST_ERROR_ALREADY_EXISTS","features":[3]},{"name":"PEERDIST_ERROR_ALREADY_INITIALIZED","features":[3]},{"name":"PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO","features":[3]},{"name":"PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED","features":[3]},{"name":"PEERDIST_ERROR_INVALIDATED","features":[3]},{"name":"PEERDIST_ERROR_INVALID_CONFIGURATION","features":[3]},{"name":"PEERDIST_ERROR_MISSING_DATA","features":[3]},{"name":"PEERDIST_ERROR_NOT_INITIALIZED","features":[3]},{"name":"PEERDIST_ERROR_NOT_LICENSED","features":[3]},{"name":"PEERDIST_ERROR_NO_MORE","features":[3]},{"name":"PEERDIST_ERROR_OPERATION_NOTFOUND","features":[3]},{"name":"PEERDIST_ERROR_OUT_OF_BOUNDS","features":[3]},{"name":"PEERDIST_ERROR_SERVICE_UNAVAILABLE","features":[3]},{"name":"PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS","features":[3]},{"name":"PEERDIST_ERROR_TRUST_FAILURE","features":[3]},{"name":"PEERDIST_ERROR_VERSION_UNSUPPORTED","features":[3]},{"name":"PEER_E_ALREADY_LISTENING","features":[3]},{"name":"PEER_E_CANNOT_CONVERT_PEER_NAME","features":[3]},{"name":"PEER_E_CANNOT_START_SERVICE","features":[3]},{"name":"PEER_E_CERT_STORE_CORRUPTED","features":[3]},{"name":"PEER_E_CHAIN_TOO_LONG","features":[3]},{"name":"PEER_E_CIRCULAR_CHAIN_DETECTED","features":[3]},{"name":"PEER_E_CLASSIFIER_TOO_LONG","features":[3]},{"name":"PEER_E_CLOUD_NAME_AMBIGUOUS","features":[3]},{"name":"PEER_E_CONNECTION_FAILED","features":[3]},{"name":"PEER_E_CONNECTION_NOT_AUTHENTICATED","features":[3]},{"name":"PEER_E_CONNECTION_NOT_FOUND","features":[3]},{"name":"PEER_E_CONNECTION_REFUSED","features":[3]},{"name":"PEER_E_CONNECT_SELF","features":[3]},{"name":"PEER_E_CONTACT_NOT_FOUND","features":[3]},{"name":"PEER_E_DATABASE_ACCESSDENIED","features":[3]},{"name":"PEER_E_DATABASE_ALREADY_PRESENT","features":[3]},{"name":"PEER_E_DATABASE_NOT_PRESENT","features":[3]},{"name":"PEER_E_DBINITIALIZATION_FAILED","features":[3]},{"name":"PEER_E_DBNAME_CHANGED","features":[3]},{"name":"PEER_E_DEFERRED_VALIDATION","features":[3]},{"name":"PEER_E_DUPLICATE_GRAPH","features":[3]},{"name":"PEER_E_EVENT_HANDLE_NOT_FOUND","features":[3]},{"name":"PEER_E_FW_BLOCKED_BY_POLICY","features":[3]},{"name":"PEER_E_FW_BLOCKED_BY_SHIELDS_UP","features":[3]},{"name":"PEER_E_FW_DECLINED","features":[3]},{"name":"PEER_E_FW_EXCEPTION_DISABLED","features":[3]},{"name":"PEER_E_GRAPH_IN_USE","features":[3]},{"name":"PEER_E_GRAPH_NOT_READY","features":[3]},{"name":"PEER_E_GRAPH_SHUTTING_DOWN","features":[3]},{"name":"PEER_E_GROUPS_EXIST","features":[3]},{"name":"PEER_E_GROUP_IN_USE","features":[3]},{"name":"PEER_E_GROUP_NOT_READY","features":[3]},{"name":"PEER_E_IDENTITY_DELETED","features":[3]},{"name":"PEER_E_IDENTITY_NOT_FOUND","features":[3]},{"name":"PEER_E_INVALID_ADDRESS","features":[3]},{"name":"PEER_E_INVALID_ATTRIBUTES","features":[3]},{"name":"PEER_E_INVALID_CLASSIFIER","features":[3]},{"name":"PEER_E_INVALID_CLASSIFIER_PROPERTY","features":[3]},{"name":"PEER_E_INVALID_CREDENTIAL","features":[3]},{"name":"PEER_E_INVALID_CREDENTIAL_INFO","features":[3]},{"name":"PEER_E_INVALID_DATABASE","features":[3]},{"name":"PEER_E_INVALID_FRIENDLY_NAME","features":[3]},{"name":"PEER_E_INVALID_GRAPH","features":[3]},{"name":"PEER_E_INVALID_GROUP","features":[3]},{"name":"PEER_E_INVALID_GROUP_PROPERTIES","features":[3]},{"name":"PEER_E_INVALID_PEER_HOST_NAME","features":[3]},{"name":"PEER_E_INVALID_PEER_NAME","features":[3]},{"name":"PEER_E_INVALID_RECORD","features":[3]},{"name":"PEER_E_INVALID_RECORD_EXPIRATION","features":[3]},{"name":"PEER_E_INVALID_RECORD_SIZE","features":[3]},{"name":"PEER_E_INVALID_ROLE_PROPERTY","features":[3]},{"name":"PEER_E_INVALID_SEARCH","features":[3]},{"name":"PEER_E_INVALID_TIME_PERIOD","features":[3]},{"name":"PEER_E_INVITATION_NOT_TRUSTED","features":[3]},{"name":"PEER_E_INVITE_CANCELLED","features":[3]},{"name":"PEER_E_INVITE_RESPONSE_NOT_AVAILABLE","features":[3]},{"name":"PEER_E_IPV6_NOT_INSTALLED","features":[3]},{"name":"PEER_E_MAX_RECORD_SIZE_EXCEEDED","features":[3]},{"name":"PEER_E_NODE_NOT_FOUND","features":[3]},{"name":"PEER_E_NOT_AUTHORIZED","features":[3]},{"name":"PEER_E_NOT_INITIALIZED","features":[3]},{"name":"PEER_E_NOT_LICENSED","features":[3]},{"name":"PEER_E_NOT_SIGNED_IN","features":[3]},{"name":"PEER_E_NO_CLOUD","features":[3]},{"name":"PEER_E_NO_KEY_ACCESS","features":[3]},{"name":"PEER_E_NO_MEMBERS_FOUND","features":[3]},{"name":"PEER_E_NO_MEMBER_CONNECTIONS","features":[3]},{"name":"PEER_E_NO_MORE","features":[3]},{"name":"PEER_E_PASSWORD_DOES_NOT_MEET_POLICY","features":[3]},{"name":"PEER_E_PNRP_DUPLICATE_PEER_NAME","features":[3]},{"name":"PEER_E_PRIVACY_DECLINED","features":[3]},{"name":"PEER_E_RECORD_NOT_FOUND","features":[3]},{"name":"PEER_E_SERVICE_NOT_AVAILABLE","features":[3]},{"name":"PEER_E_TIMEOUT","features":[3]},{"name":"PEER_E_TOO_MANY_ATTRIBUTES","features":[3]},{"name":"PEER_E_TOO_MANY_IDENTITIES","features":[3]},{"name":"PEER_E_UNABLE_TO_LISTEN","features":[3]},{"name":"PEER_E_UNSUPPORTED_VERSION","features":[3]},{"name":"PEER_S_ALREADY_A_MEMBER","features":[3]},{"name":"PEER_S_ALREADY_CONNECTED","features":[3]},{"name":"PEER_S_GRAPH_DATA_CREATED","features":[3]},{"name":"PEER_S_NO_CONNECTIVITY","features":[3]},{"name":"PEER_S_NO_EVENT_DATA","features":[3]},{"name":"PEER_S_SUBSCRIPTION_EXISTS","features":[3]},{"name":"PERSIST_E_NOTSELFSIZING","features":[3]},{"name":"PERSIST_E_SIZEDEFINITE","features":[3]},{"name":"PERSIST_E_SIZEINDEFINITE","features":[3]},{"name":"PLA_E_CABAPI_FAILURE","features":[3]},{"name":"PLA_E_CONFLICT_INCL_EXCL_API","features":[3]},{"name":"PLA_E_CREDENTIALS_REQUIRED","features":[3]},{"name":"PLA_E_DCS_ALREADY_EXISTS","features":[3]},{"name":"PLA_E_DCS_IN_USE","features":[3]},{"name":"PLA_E_DCS_NOT_FOUND","features":[3]},{"name":"PLA_E_DCS_NOT_RUNNING","features":[3]},{"name":"PLA_E_DCS_SINGLETON_REQUIRED","features":[3]},{"name":"PLA_E_DCS_START_WAIT_TIMEOUT","features":[3]},{"name":"PLA_E_DC_ALREADY_EXISTS","features":[3]},{"name":"PLA_E_DC_START_WAIT_TIMEOUT","features":[3]},{"name":"PLA_E_EXE_ALREADY_CONFIGURED","features":[3]},{"name":"PLA_E_EXE_FULL_PATH_REQUIRED","features":[3]},{"name":"PLA_E_EXE_PATH_NOT_VALID","features":[3]},{"name":"PLA_E_INVALID_SESSION_NAME","features":[3]},{"name":"PLA_E_NETWORK_EXE_NOT_VALID","features":[3]},{"name":"PLA_E_NO_DUPLICATES","features":[3]},{"name":"PLA_E_NO_MIN_DISK","features":[3]},{"name":"PLA_E_PLA_CHANNEL_NOT_ENABLED","features":[3]},{"name":"PLA_E_PROPERTY_CONFLICT","features":[3]},{"name":"PLA_E_REPORT_WAIT_TIMEOUT","features":[3]},{"name":"PLA_E_RULES_MANAGER_FAILED","features":[3]},{"name":"PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED","features":[3]},{"name":"PLA_E_TOO_MANY_FOLDERS","features":[3]},{"name":"PLA_S_PROPERTY_IGNORED","features":[3]},{"name":"POINT","features":[3]},{"name":"POINTL","features":[3]},{"name":"POINTS","features":[3]},{"name":"PRESENTATION_ERROR_LOST","features":[3]},{"name":"PROC","features":[3]},{"name":"PSINK_E_INDEX_ONLY","features":[3]},{"name":"PSINK_E_LARGE_ATTACHMENT","features":[3]},{"name":"PSINK_E_QUERY_ONLY","features":[3]},{"name":"PSINK_S_LARGE_WORD","features":[3]},{"name":"PSTR","features":[3]},{"name":"PWSTR","features":[3]},{"name":"QPARSE_E_EXPECTING_BRACE","features":[3]},{"name":"QPARSE_E_EXPECTING_COMMA","features":[3]},{"name":"QPARSE_E_EXPECTING_CURRENCY","features":[3]},{"name":"QPARSE_E_EXPECTING_DATE","features":[3]},{"name":"QPARSE_E_EXPECTING_EOS","features":[3]},{"name":"QPARSE_E_EXPECTING_GUID","features":[3]},{"name":"QPARSE_E_EXPECTING_INTEGER","features":[3]},{"name":"QPARSE_E_EXPECTING_PAREN","features":[3]},{"name":"QPARSE_E_EXPECTING_PHRASE","features":[3]},{"name":"QPARSE_E_EXPECTING_PROPERTY","features":[3]},{"name":"QPARSE_E_EXPECTING_REAL","features":[3]},{"name":"QPARSE_E_EXPECTING_REGEX","features":[3]},{"name":"QPARSE_E_EXPECTING_REGEX_PROPERTY","features":[3]},{"name":"QPARSE_E_INVALID_GROUPING","features":[3]},{"name":"QPARSE_E_INVALID_LITERAL","features":[3]},{"name":"QPARSE_E_INVALID_QUERY","features":[3]},{"name":"QPARSE_E_INVALID_RANKMETHOD","features":[3]},{"name":"QPARSE_E_INVALID_SORT_ORDER","features":[3]},{"name":"QPARSE_E_NOT_YET_IMPLEMENTED","features":[3]},{"name":"QPARSE_E_NO_SUCH_PROPERTY","features":[3]},{"name":"QPARSE_E_NO_SUCH_SORT_PROPERTY","features":[3]},{"name":"QPARSE_E_UNEXPECTED_EOS","features":[3]},{"name":"QPARSE_E_UNEXPECTED_NOT","features":[3]},{"name":"QPARSE_E_UNSUPPORTED_PROPERTY_TYPE","features":[3]},{"name":"QPARSE_E_WEIGHT_OUT_OF_RANGE","features":[3]},{"name":"QPLIST_E_BAD_GUID","features":[3]},{"name":"QPLIST_E_BYREF_USED_WITHOUT_PTRTYPE","features":[3]},{"name":"QPLIST_E_CANT_OPEN_FILE","features":[3]},{"name":"QPLIST_E_CANT_SET_PROPERTY","features":[3]},{"name":"QPLIST_E_DUPLICATE","features":[3]},{"name":"QPLIST_E_EXPECTING_CLOSE_PAREN","features":[3]},{"name":"QPLIST_E_EXPECTING_GUID","features":[3]},{"name":"QPLIST_E_EXPECTING_INTEGER","features":[3]},{"name":"QPLIST_E_EXPECTING_NAME","features":[3]},{"name":"QPLIST_E_EXPECTING_PROP_SPEC","features":[3]},{"name":"QPLIST_E_EXPECTING_TYPE","features":[3]},{"name":"QPLIST_E_READ_ERROR","features":[3]},{"name":"QPLIST_E_UNRECOGNIZED_TYPE","features":[3]},{"name":"QPLIST_E_VECTORBYREF_USED_ALONE","features":[3]},{"name":"QPLIST_S_DUPLICATE","features":[3]},{"name":"QUERY_E_ALLNOISE","features":[3]},{"name":"QUERY_E_DIR_ON_REMOVABLE_DRIVE","features":[3]},{"name":"QUERY_E_DUPLICATE_OUTPUT_COLUMN","features":[3]},{"name":"QUERY_E_FAILED","features":[3]},{"name":"QUERY_E_INVALIDCATEGORIZE","features":[3]},{"name":"QUERY_E_INVALIDQUERY","features":[3]},{"name":"QUERY_E_INVALIDRESTRICTION","features":[3]},{"name":"QUERY_E_INVALIDSORT","features":[3]},{"name":"QUERY_E_INVALID_DIRECTORY","features":[3]},{"name":"QUERY_E_INVALID_OUTPUT_COLUMN","features":[3]},{"name":"QUERY_E_TIMEDOUT","features":[3]},{"name":"QUERY_E_TOOCOMPLEX","features":[3]},{"name":"QUERY_S_NO_QUERY","features":[3]},{"name":"QUTIL_E_CANT_CONVERT_VROOT","features":[3]},{"name":"QUTIL_E_INVALID_CODEPAGE","features":[3]},{"name":"RECT","features":[3]},{"name":"RECTL","features":[3]},{"name":"REGDB_E_BADTHREADINGMODEL","features":[3]},{"name":"REGDB_E_CLASSNOTREG","features":[3]},{"name":"REGDB_E_FIRST","features":[3]},{"name":"REGDB_E_IIDNOTREG","features":[3]},{"name":"REGDB_E_INVALIDVALUE","features":[3]},{"name":"REGDB_E_KEYMISSING","features":[3]},{"name":"REGDB_E_LAST","features":[3]},{"name":"REGDB_E_PACKAGEPOLICYVIOLATION","features":[3]},{"name":"REGDB_E_READREGDB","features":[3]},{"name":"REGDB_E_WRITEREGDB","features":[3]},{"name":"REGDB_S_FIRST","features":[3]},{"name":"REGDB_S_LAST","features":[3]},{"name":"ROUTEBASE","features":[3]},{"name":"ROUTEBASEEND","features":[3]},{"name":"RO_E_BLOCKED_CROSS_ASTA_CALL","features":[3]},{"name":"RO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER","features":[3]},{"name":"RO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER","features":[3]},{"name":"RO_E_CHANGE_NOTIFICATION_IN_PROGRESS","features":[3]},{"name":"RO_E_CLOSED","features":[3]},{"name":"RO_E_COMMITTED","features":[3]},{"name":"RO_E_ERROR_STRING_NOT_FOUND","features":[3]},{"name":"RO_E_EXCLUSIVE_WRITE","features":[3]},{"name":"RO_E_INVALID_METADATA_FILE","features":[3]},{"name":"RO_E_METADATA_INVALID_TYPE_FORMAT","features":[3]},{"name":"RO_E_METADATA_NAME_IS_NAMESPACE","features":[3]},{"name":"RO_E_METADATA_NAME_NOT_FOUND","features":[3]},{"name":"RO_E_MUST_BE_AGILE","features":[3]},{"name":"RO_E_UNSUPPORTED_FROM_MTA","features":[3]},{"name":"RPC_E_ACCESS_DENIED","features":[3]},{"name":"RPC_E_ATTEMPTED_MULTITHREAD","features":[3]},{"name":"RPC_E_CALL_CANCELED","features":[3]},{"name":"RPC_E_CALL_COMPLETE","features":[3]},{"name":"RPC_E_CALL_REJECTED","features":[3]},{"name":"RPC_E_CANTCALLOUT_AGAIN","features":[3]},{"name":"RPC_E_CANTCALLOUT_INASYNCCALL","features":[3]},{"name":"RPC_E_CANTCALLOUT_INEXTERNALCALL","features":[3]},{"name":"RPC_E_CANTCALLOUT_ININPUTSYNCCALL","features":[3]},{"name":"RPC_E_CANTPOST_INSENDCALL","features":[3]},{"name":"RPC_E_CANTTRANSMIT_CALL","features":[3]},{"name":"RPC_E_CHANGED_MODE","features":[3]},{"name":"RPC_E_CLIENT_CANTMARSHAL_DATA","features":[3]},{"name":"RPC_E_CLIENT_CANTUNMARSHAL_DATA","features":[3]},{"name":"RPC_E_CLIENT_DIED","features":[3]},{"name":"RPC_E_CONNECTION_TERMINATED","features":[3]},{"name":"RPC_E_DISCONNECTED","features":[3]},{"name":"RPC_E_FAULT","features":[3]},{"name":"RPC_E_FULLSIC_REQUIRED","features":[3]},{"name":"RPC_E_INVALIDMETHOD","features":[3]},{"name":"RPC_E_INVALID_CALLDATA","features":[3]},{"name":"RPC_E_INVALID_DATA","features":[3]},{"name":"RPC_E_INVALID_DATAPACKET","features":[3]},{"name":"RPC_E_INVALID_EXTENSION","features":[3]},{"name":"RPC_E_INVALID_HEADER","features":[3]},{"name":"RPC_E_INVALID_IPID","features":[3]},{"name":"RPC_E_INVALID_OBJECT","features":[3]},{"name":"RPC_E_INVALID_OBJREF","features":[3]},{"name":"RPC_E_INVALID_PARAMETER","features":[3]},{"name":"RPC_E_INVALID_STD_NAME","features":[3]},{"name":"RPC_E_NOT_REGISTERED","features":[3]},{"name":"RPC_E_NO_CONTEXT","features":[3]},{"name":"RPC_E_NO_GOOD_SECURITY_PACKAGES","features":[3]},{"name":"RPC_E_NO_SYNC","features":[3]},{"name":"RPC_E_OUT_OF_RESOURCES","features":[3]},{"name":"RPC_E_REMOTE_DISABLED","features":[3]},{"name":"RPC_E_RETRY","features":[3]},{"name":"RPC_E_SERVERCALL_REJECTED","features":[3]},{"name":"RPC_E_SERVERCALL_RETRYLATER","features":[3]},{"name":"RPC_E_SERVERFAULT","features":[3]},{"name":"RPC_E_SERVER_CANTMARSHAL_DATA","features":[3]},{"name":"RPC_E_SERVER_CANTUNMARSHAL_DATA","features":[3]},{"name":"RPC_E_SERVER_DIED","features":[3]},{"name":"RPC_E_SERVER_DIED_DNE","features":[3]},{"name":"RPC_E_SYS_CALL_FAILED","features":[3]},{"name":"RPC_E_THREAD_NOT_INIT","features":[3]},{"name":"RPC_E_TIMEOUT","features":[3]},{"name":"RPC_E_TOO_LATE","features":[3]},{"name":"RPC_E_UNEXPECTED","features":[3]},{"name":"RPC_E_UNSECURE_CALL","features":[3]},{"name":"RPC_E_VERSION_MISMATCH","features":[3]},{"name":"RPC_E_WRONG_THREAD","features":[3]},{"name":"RPC_NT_ADDRESS_ERROR","features":[3]},{"name":"RPC_NT_ALREADY_LISTENING","features":[3]},{"name":"RPC_NT_ALREADY_REGISTERED","features":[3]},{"name":"RPC_NT_BAD_STUB_DATA","features":[3]},{"name":"RPC_NT_BINDING_HAS_NO_AUTH","features":[3]},{"name":"RPC_NT_BINDING_INCOMPLETE","features":[3]},{"name":"RPC_NT_BYTE_COUNT_TOO_SMALL","features":[3]},{"name":"RPC_NT_CALL_CANCELLED","features":[3]},{"name":"RPC_NT_CALL_FAILED","features":[3]},{"name":"RPC_NT_CALL_FAILED_DNE","features":[3]},{"name":"RPC_NT_CALL_IN_PROGRESS","features":[3]},{"name":"RPC_NT_CANNOT_SUPPORT","features":[3]},{"name":"RPC_NT_CANT_CREATE_ENDPOINT","features":[3]},{"name":"RPC_NT_COMM_FAILURE","features":[3]},{"name":"RPC_NT_COOKIE_AUTH_FAILED","features":[3]},{"name":"RPC_NT_DUPLICATE_ENDPOINT","features":[3]},{"name":"RPC_NT_ENTRY_ALREADY_EXISTS","features":[3]},{"name":"RPC_NT_ENTRY_NOT_FOUND","features":[3]},{"name":"RPC_NT_ENUM_VALUE_OUT_OF_RANGE","features":[3]},{"name":"RPC_NT_FP_DIV_ZERO","features":[3]},{"name":"RPC_NT_FP_OVERFLOW","features":[3]},{"name":"RPC_NT_FP_UNDERFLOW","features":[3]},{"name":"RPC_NT_GROUP_MEMBER_NOT_FOUND","features":[3]},{"name":"RPC_NT_INCOMPLETE_NAME","features":[3]},{"name":"RPC_NT_INTERFACE_NOT_FOUND","features":[3]},{"name":"RPC_NT_INTERNAL_ERROR","features":[3]},{"name":"RPC_NT_INVALID_ASYNC_CALL","features":[3]},{"name":"RPC_NT_INVALID_ASYNC_HANDLE","features":[3]},{"name":"RPC_NT_INVALID_AUTH_IDENTITY","features":[3]},{"name":"RPC_NT_INVALID_BINDING","features":[3]},{"name":"RPC_NT_INVALID_BOUND","features":[3]},{"name":"RPC_NT_INVALID_ENDPOINT_FORMAT","features":[3]},{"name":"RPC_NT_INVALID_ES_ACTION","features":[3]},{"name":"RPC_NT_INVALID_NAF_ID","features":[3]},{"name":"RPC_NT_INVALID_NAME_SYNTAX","features":[3]},{"name":"RPC_NT_INVALID_NETWORK_OPTIONS","features":[3]},{"name":"RPC_NT_INVALID_NET_ADDR","features":[3]},{"name":"RPC_NT_INVALID_OBJECT","features":[3]},{"name":"RPC_NT_INVALID_PIPE_OBJECT","features":[3]},{"name":"RPC_NT_INVALID_PIPE_OPERATION","features":[3]},{"name":"RPC_NT_INVALID_RPC_PROTSEQ","features":[3]},{"name":"RPC_NT_INVALID_STRING_BINDING","features":[3]},{"name":"RPC_NT_INVALID_STRING_UUID","features":[3]},{"name":"RPC_NT_INVALID_TAG","features":[3]},{"name":"RPC_NT_INVALID_TIMEOUT","features":[3]},{"name":"RPC_NT_INVALID_VERS_OPTION","features":[3]},{"name":"RPC_NT_MAX_CALLS_TOO_SMALL","features":[3]},{"name":"RPC_NT_NAME_SERVICE_UNAVAILABLE","features":[3]},{"name":"RPC_NT_NOTHING_TO_EXPORT","features":[3]},{"name":"RPC_NT_NOT_ALL_OBJS_UNEXPORTED","features":[3]},{"name":"RPC_NT_NOT_CANCELLED","features":[3]},{"name":"RPC_NT_NOT_LISTENING","features":[3]},{"name":"RPC_NT_NOT_RPC_ERROR","features":[3]},{"name":"RPC_NT_NO_BINDINGS","features":[3]},{"name":"RPC_NT_NO_CALL_ACTIVE","features":[3]},{"name":"RPC_NT_NO_CONTEXT_AVAILABLE","features":[3]},{"name":"RPC_NT_NO_ENDPOINT_FOUND","features":[3]},{"name":"RPC_NT_NO_ENTRY_NAME","features":[3]},{"name":"RPC_NT_NO_INTERFACES","features":[3]},{"name":"RPC_NT_NO_MORE_BINDINGS","features":[3]},{"name":"RPC_NT_NO_MORE_ENTRIES","features":[3]},{"name":"RPC_NT_NO_MORE_MEMBERS","features":[3]},{"name":"RPC_NT_NO_PRINC_NAME","features":[3]},{"name":"RPC_NT_NO_PROTSEQS","features":[3]},{"name":"RPC_NT_NO_PROTSEQS_REGISTERED","features":[3]},{"name":"RPC_NT_NULL_REF_POINTER","features":[3]},{"name":"RPC_NT_OBJECT_NOT_FOUND","features":[3]},{"name":"RPC_NT_OUT_OF_RESOURCES","features":[3]},{"name":"RPC_NT_PIPE_CLOSED","features":[3]},{"name":"RPC_NT_PIPE_DISCIPLINE_ERROR","features":[3]},{"name":"RPC_NT_PIPE_EMPTY","features":[3]},{"name":"RPC_NT_PROCNUM_OUT_OF_RANGE","features":[3]},{"name":"RPC_NT_PROTOCOL_ERROR","features":[3]},{"name":"RPC_NT_PROTSEQ_NOT_FOUND","features":[3]},{"name":"RPC_NT_PROTSEQ_NOT_SUPPORTED","features":[3]},{"name":"RPC_NT_PROXY_ACCESS_DENIED","features":[3]},{"name":"RPC_NT_SEC_PKG_ERROR","features":[3]},{"name":"RPC_NT_SEND_INCOMPLETE","features":[3]},{"name":"RPC_NT_SERVER_TOO_BUSY","features":[3]},{"name":"RPC_NT_SERVER_UNAVAILABLE","features":[3]},{"name":"RPC_NT_SS_CANNOT_GET_CALL_HANDLE","features":[3]},{"name":"RPC_NT_SS_CHAR_TRANS_OPEN_FAIL","features":[3]},{"name":"RPC_NT_SS_CHAR_TRANS_SHORT_FILE","features":[3]},{"name":"RPC_NT_SS_CONTEXT_DAMAGED","features":[3]},{"name":"RPC_NT_SS_CONTEXT_MISMATCH","features":[3]},{"name":"RPC_NT_SS_HANDLES_MISMATCH","features":[3]},{"name":"RPC_NT_SS_IN_NULL_CONTEXT","features":[3]},{"name":"RPC_NT_STRING_TOO_LONG","features":[3]},{"name":"RPC_NT_TYPE_ALREADY_REGISTERED","features":[3]},{"name":"RPC_NT_UNKNOWN_AUTHN_LEVEL","features":[3]},{"name":"RPC_NT_UNKNOWN_AUTHN_SERVICE","features":[3]},{"name":"RPC_NT_UNKNOWN_AUTHN_TYPE","features":[3]},{"name":"RPC_NT_UNKNOWN_AUTHZ_SERVICE","features":[3]},{"name":"RPC_NT_UNKNOWN_IF","features":[3]},{"name":"RPC_NT_UNKNOWN_MGR_TYPE","features":[3]},{"name":"RPC_NT_UNSUPPORTED_AUTHN_LEVEL","features":[3]},{"name":"RPC_NT_UNSUPPORTED_NAME_SYNTAX","features":[3]},{"name":"RPC_NT_UNSUPPORTED_TRANS_SYN","features":[3]},{"name":"RPC_NT_UNSUPPORTED_TYPE","features":[3]},{"name":"RPC_NT_UUID_LOCAL_ONLY","features":[3]},{"name":"RPC_NT_UUID_NO_ADDRESS","features":[3]},{"name":"RPC_NT_WRONG_ES_VERSION","features":[3]},{"name":"RPC_NT_WRONG_KIND_OF_BINDING","features":[3]},{"name":"RPC_NT_WRONG_PIPE_VERSION","features":[3]},{"name":"RPC_NT_WRONG_STUB_VERSION","features":[3]},{"name":"RPC_NT_ZERO_DIVIDE","features":[3]},{"name":"RPC_S_CALLPENDING","features":[3]},{"name":"RPC_S_WAITONTIMER","features":[3]},{"name":"RPC_X_BAD_STUB_DATA","features":[3]},{"name":"RPC_X_BYTE_COUNT_TOO_SMALL","features":[3]},{"name":"RPC_X_ENUM_VALUE_OUT_OF_RANGE","features":[3]},{"name":"RPC_X_ENUM_VALUE_TOO_LARGE","features":[3]},{"name":"RPC_X_INVALID_BOUND","features":[3]},{"name":"RPC_X_INVALID_BUFFER","features":[3]},{"name":"RPC_X_INVALID_ES_ACTION","features":[3]},{"name":"RPC_X_INVALID_PIPE_OBJECT","features":[3]},{"name":"RPC_X_INVALID_PIPE_OPERATION","features":[3]},{"name":"RPC_X_INVALID_TAG","features":[3]},{"name":"RPC_X_NO_MEMORY","features":[3]},{"name":"RPC_X_NO_MORE_ENTRIES","features":[3]},{"name":"RPC_X_NULL_REF_POINTER","features":[3]},{"name":"RPC_X_PIPE_APP_MEMORY","features":[3]},{"name":"RPC_X_PIPE_CLOSED","features":[3]},{"name":"RPC_X_PIPE_DISCIPLINE_ERROR","features":[3]},{"name":"RPC_X_PIPE_EMPTY","features":[3]},{"name":"RPC_X_SS_CANNOT_GET_CALL_HANDLE","features":[3]},{"name":"RPC_X_SS_CHAR_TRANS_OPEN_FAIL","features":[3]},{"name":"RPC_X_SS_CHAR_TRANS_SHORT_FILE","features":[3]},{"name":"RPC_X_SS_CONTEXT_DAMAGED","features":[3]},{"name":"RPC_X_SS_CONTEXT_MISMATCH","features":[3]},{"name":"RPC_X_SS_HANDLES_MISMATCH","features":[3]},{"name":"RPC_X_SS_IN_NULL_CONTEXT","features":[3]},{"name":"RPC_X_WRONG_ES_VERSION","features":[3]},{"name":"RPC_X_WRONG_PIPE_ORDER","features":[3]},{"name":"RPC_X_WRONG_PIPE_VERSION","features":[3]},{"name":"RPC_X_WRONG_STUB_VERSION","features":[3]},{"name":"RtlNtStatusToDosError","features":[3]},{"name":"SCARD_E_BAD_SEEK","features":[3]},{"name":"SCARD_E_CANCELLED","features":[3]},{"name":"SCARD_E_CANT_DISPOSE","features":[3]},{"name":"SCARD_E_CARD_UNSUPPORTED","features":[3]},{"name":"SCARD_E_CERTIFICATE_UNAVAILABLE","features":[3]},{"name":"SCARD_E_COMM_DATA_LOST","features":[3]},{"name":"SCARD_E_DIR_NOT_FOUND","features":[3]},{"name":"SCARD_E_DUPLICATE_READER","features":[3]},{"name":"SCARD_E_FILE_NOT_FOUND","features":[3]},{"name":"SCARD_E_ICC_CREATEORDER","features":[3]},{"name":"SCARD_E_ICC_INSTALLATION","features":[3]},{"name":"SCARD_E_INSUFFICIENT_BUFFER","features":[3]},{"name":"SCARD_E_INVALID_ATR","features":[3]},{"name":"SCARD_E_INVALID_CHV","features":[3]},{"name":"SCARD_E_INVALID_HANDLE","features":[3]},{"name":"SCARD_E_INVALID_PARAMETER","features":[3]},{"name":"SCARD_E_INVALID_TARGET","features":[3]},{"name":"SCARD_E_INVALID_VALUE","features":[3]},{"name":"SCARD_E_NOT_READY","features":[3]},{"name":"SCARD_E_NOT_TRANSACTED","features":[3]},{"name":"SCARD_E_NO_ACCESS","features":[3]},{"name":"SCARD_E_NO_DIR","features":[3]},{"name":"SCARD_E_NO_FILE","features":[3]},{"name":"SCARD_E_NO_KEY_CONTAINER","features":[3]},{"name":"SCARD_E_NO_MEMORY","features":[3]},{"name":"SCARD_E_NO_PIN_CACHE","features":[3]},{"name":"SCARD_E_NO_READERS_AVAILABLE","features":[3]},{"name":"SCARD_E_NO_SERVICE","features":[3]},{"name":"SCARD_E_NO_SMARTCARD","features":[3]},{"name":"SCARD_E_NO_SUCH_CERTIFICATE","features":[3]},{"name":"SCARD_E_PCI_TOO_SMALL","features":[3]},{"name":"SCARD_E_PIN_CACHE_EXPIRED","features":[3]},{"name":"SCARD_E_PROTO_MISMATCH","features":[3]},{"name":"SCARD_E_READER_UNAVAILABLE","features":[3]},{"name":"SCARD_E_READER_UNSUPPORTED","features":[3]},{"name":"SCARD_E_READ_ONLY_CARD","features":[3]},{"name":"SCARD_E_SERVER_TOO_BUSY","features":[3]},{"name":"SCARD_E_SERVICE_STOPPED","features":[3]},{"name":"SCARD_E_SHARING_VIOLATION","features":[3]},{"name":"SCARD_E_SYSTEM_CANCELLED","features":[3]},{"name":"SCARD_E_TIMEOUT","features":[3]},{"name":"SCARD_E_UNEXPECTED","features":[3]},{"name":"SCARD_E_UNKNOWN_CARD","features":[3]},{"name":"SCARD_E_UNKNOWN_READER","features":[3]},{"name":"SCARD_E_UNKNOWN_RES_MNG","features":[3]},{"name":"SCARD_E_UNSUPPORTED_FEATURE","features":[3]},{"name":"SCARD_E_WRITE_TOO_MANY","features":[3]},{"name":"SCARD_F_COMM_ERROR","features":[3]},{"name":"SCARD_F_INTERNAL_ERROR","features":[3]},{"name":"SCARD_F_UNKNOWN_ERROR","features":[3]},{"name":"SCARD_F_WAITED_TOO_LONG","features":[3]},{"name":"SCARD_P_SHUTDOWN","features":[3]},{"name":"SCARD_W_CACHE_ITEM_NOT_FOUND","features":[3]},{"name":"SCARD_W_CACHE_ITEM_STALE","features":[3]},{"name":"SCARD_W_CACHE_ITEM_TOO_BIG","features":[3]},{"name":"SCARD_W_CANCELLED_BY_USER","features":[3]},{"name":"SCARD_W_CARD_NOT_AUTHENTICATED","features":[3]},{"name":"SCARD_W_CHV_BLOCKED","features":[3]},{"name":"SCARD_W_EOF","features":[3]},{"name":"SCARD_W_REMOVED_CARD","features":[3]},{"name":"SCARD_W_RESET_CARD","features":[3]},{"name":"SCARD_W_SECURITY_VIOLATION","features":[3]},{"name":"SCARD_W_UNPOWERED_CARD","features":[3]},{"name":"SCARD_W_UNRESPONSIVE_CARD","features":[3]},{"name":"SCARD_W_UNSUPPORTED_CARD","features":[3]},{"name":"SCARD_W_WRONG_CHV","features":[3]},{"name":"SCHED_E_ACCOUNT_DBASE_CORRUPT","features":[3]},{"name":"SCHED_E_ACCOUNT_INFORMATION_NOT_SET","features":[3]},{"name":"SCHED_E_ACCOUNT_NAME_NOT_FOUND","features":[3]},{"name":"SCHED_E_ALREADY_RUNNING","features":[3]},{"name":"SCHED_E_CANNOT_OPEN_TASK","features":[3]},{"name":"SCHED_E_DEPRECATED_FEATURE_USED","features":[3]},{"name":"SCHED_E_INVALIDVALUE","features":[3]},{"name":"SCHED_E_INVALID_TASK","features":[3]},{"name":"SCHED_E_INVALID_TASK_HASH","features":[3]},{"name":"SCHED_E_MALFORMEDXML","features":[3]},{"name":"SCHED_E_MISSINGNODE","features":[3]},{"name":"SCHED_E_NAMESPACE","features":[3]},{"name":"SCHED_E_NO_SECURITY_SERVICES","features":[3]},{"name":"SCHED_E_PAST_END_BOUNDARY","features":[3]},{"name":"SCHED_E_SERVICE_NOT_AVAILABLE","features":[3]},{"name":"SCHED_E_SERVICE_NOT_INSTALLED","features":[3]},{"name":"SCHED_E_SERVICE_NOT_LOCALSYSTEM","features":[3]},{"name":"SCHED_E_SERVICE_NOT_RUNNING","features":[3]},{"name":"SCHED_E_SERVICE_TOO_BUSY","features":[3]},{"name":"SCHED_E_START_ON_DEMAND","features":[3]},{"name":"SCHED_E_TASK_ATTEMPTED","features":[3]},{"name":"SCHED_E_TASK_DISABLED","features":[3]},{"name":"SCHED_E_TASK_NOT_READY","features":[3]},{"name":"SCHED_E_TASK_NOT_RUNNING","features":[3]},{"name":"SCHED_E_TASK_NOT_UBPM_COMPAT","features":[3]},{"name":"SCHED_E_TASK_NOT_V1_COMPAT","features":[3]},{"name":"SCHED_E_TOO_MANY_NODES","features":[3]},{"name":"SCHED_E_TRIGGER_NOT_FOUND","features":[3]},{"name":"SCHED_E_UNEXPECTEDNODE","features":[3]},{"name":"SCHED_E_UNKNOWN_OBJECT_VERSION","features":[3]},{"name":"SCHED_E_UNSUPPORTED_ACCOUNT_OPTION","features":[3]},{"name":"SCHED_E_USER_NOT_LOGGED_ON","features":[3]},{"name":"SCHED_S_BATCH_LOGON_PROBLEM","features":[3]},{"name":"SCHED_S_EVENT_TRIGGER","features":[3]},{"name":"SCHED_S_SOME_TRIGGERS_FAILED","features":[3]},{"name":"SCHED_S_TASK_DISABLED","features":[3]},{"name":"SCHED_S_TASK_HAS_NOT_RUN","features":[3]},{"name":"SCHED_S_TASK_NOT_SCHEDULED","features":[3]},{"name":"SCHED_S_TASK_NO_MORE_RUNS","features":[3]},{"name":"SCHED_S_TASK_NO_VALID_TRIGGERS","features":[3]},{"name":"SCHED_S_TASK_QUEUED","features":[3]},{"name":"SCHED_S_TASK_READY","features":[3]},{"name":"SCHED_S_TASK_RUNNING","features":[3]},{"name":"SCHED_S_TASK_TERMINATED","features":[3]},{"name":"SDIAG_E_CANCELLED","features":[3]},{"name":"SDIAG_E_CANNOTRUN","features":[3]},{"name":"SDIAG_E_DISABLED","features":[3]},{"name":"SDIAG_E_MANAGEDHOST","features":[3]},{"name":"SDIAG_E_NOVERIFIER","features":[3]},{"name":"SDIAG_E_POWERSHELL","features":[3]},{"name":"SDIAG_E_RESOURCE","features":[3]},{"name":"SDIAG_E_ROOTCAUSE","features":[3]},{"name":"SDIAG_E_SCRIPT","features":[3]},{"name":"SDIAG_E_TRUST","features":[3]},{"name":"SDIAG_E_VERSION","features":[3]},{"name":"SDIAG_S_CANNOTRUN","features":[3]},{"name":"SEARCH_E_NOMONIKER","features":[3]},{"name":"SEARCH_E_NOREGION","features":[3]},{"name":"SEARCH_S_NOMOREHITS","features":[3]},{"name":"SEC_E_ALGORITHM_MISMATCH","features":[3]},{"name":"SEC_E_APPLICATION_PROTOCOL_MISMATCH","features":[3]},{"name":"SEC_E_BAD_BINDINGS","features":[3]},{"name":"SEC_E_BAD_PKGID","features":[3]},{"name":"SEC_E_BUFFER_TOO_SMALL","features":[3]},{"name":"SEC_E_CANNOT_INSTALL","features":[3]},{"name":"SEC_E_CANNOT_PACK","features":[3]},{"name":"SEC_E_CERT_EXPIRED","features":[3]},{"name":"SEC_E_CERT_UNKNOWN","features":[3]},{"name":"SEC_E_CERT_WRONG_USAGE","features":[3]},{"name":"SEC_E_CONTEXT_EXPIRED","features":[3]},{"name":"SEC_E_CROSSREALM_DELEGATION_FAILURE","features":[3]},{"name":"SEC_E_CRYPTO_SYSTEM_INVALID","features":[3]},{"name":"SEC_E_DECRYPT_FAILURE","features":[3]},{"name":"SEC_E_DELEGATION_POLICY","features":[3]},{"name":"SEC_E_DELEGATION_REQUIRED","features":[3]},{"name":"SEC_E_DOWNGRADE_DETECTED","features":[3]},{"name":"SEC_E_ENCRYPT_FAILURE","features":[3]},{"name":"SEC_E_EXT_BUFFER_TOO_SMALL","features":[3]},{"name":"SEC_E_ILLEGAL_MESSAGE","features":[3]},{"name":"SEC_E_INCOMPLETE_CREDENTIALS","features":[3]},{"name":"SEC_E_INCOMPLETE_MESSAGE","features":[3]},{"name":"SEC_E_INSUFFICIENT_BUFFERS","features":[3]},{"name":"SEC_E_INSUFFICIENT_MEMORY","features":[3]},{"name":"SEC_E_INTERNAL_ERROR","features":[3]},{"name":"SEC_E_INVALID_HANDLE","features":[3]},{"name":"SEC_E_INVALID_PARAMETER","features":[3]},{"name":"SEC_E_INVALID_TOKEN","features":[3]},{"name":"SEC_E_INVALID_UPN_NAME","features":[3]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED","features":[3]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED_KDC","features":[3]},{"name":"SEC_E_KDC_CERT_EXPIRED","features":[3]},{"name":"SEC_E_KDC_CERT_REVOKED","features":[3]},{"name":"SEC_E_KDC_INVALID_REQUEST","features":[3]},{"name":"SEC_E_KDC_UNABLE_TO_REFER","features":[3]},{"name":"SEC_E_KDC_UNKNOWN_ETYPE","features":[3]},{"name":"SEC_E_LOGON_DENIED","features":[3]},{"name":"SEC_E_MAX_REFERRALS_EXCEEDED","features":[3]},{"name":"SEC_E_MESSAGE_ALTERED","features":[3]},{"name":"SEC_E_MULTIPLE_ACCOUNTS","features":[3]},{"name":"SEC_E_MUST_BE_KDC","features":[3]},{"name":"SEC_E_MUTUAL_AUTH_FAILED","features":[3]},{"name":"SEC_E_NOT_OWNER","features":[3]},{"name":"SEC_E_NOT_SUPPORTED","features":[3]},{"name":"SEC_E_NO_AUTHENTICATING_AUTHORITY","features":[3]},{"name":"SEC_E_NO_CONTEXT","features":[3]},{"name":"SEC_E_NO_CREDENTIALS","features":[3]},{"name":"SEC_E_NO_IMPERSONATION","features":[3]},{"name":"SEC_E_NO_IP_ADDRESSES","features":[3]},{"name":"SEC_E_NO_KERB_KEY","features":[3]},{"name":"SEC_E_NO_PA_DATA","features":[3]},{"name":"SEC_E_NO_S4U_PROT_SUPPORT","features":[3]},{"name":"SEC_E_NO_SPM","features":[3]},{"name":"SEC_E_NO_TGT_REPLY","features":[3]},{"name":"SEC_E_OK","features":[3]},{"name":"SEC_E_ONLY_HTTPS_ALLOWED","features":[3]},{"name":"SEC_E_OUT_OF_SEQUENCE","features":[3]},{"name":"SEC_E_PKINIT_CLIENT_FAILURE","features":[3]},{"name":"SEC_E_PKINIT_NAME_MISMATCH","features":[3]},{"name":"SEC_E_PKU2U_CERT_FAILURE","features":[3]},{"name":"SEC_E_POLICY_NLTM_ONLY","features":[3]},{"name":"SEC_E_QOP_NOT_SUPPORTED","features":[3]},{"name":"SEC_E_REVOCATION_OFFLINE_C","features":[3]},{"name":"SEC_E_REVOCATION_OFFLINE_KDC","features":[3]},{"name":"SEC_E_SECPKG_NOT_FOUND","features":[3]},{"name":"SEC_E_SECURITY_QOS_FAILED","features":[3]},{"name":"SEC_E_SHUTDOWN_IN_PROGRESS","features":[3]},{"name":"SEC_E_SMARTCARD_CERT_EXPIRED","features":[3]},{"name":"SEC_E_SMARTCARD_CERT_REVOKED","features":[3]},{"name":"SEC_E_SMARTCARD_LOGON_REQUIRED","features":[3]},{"name":"SEC_E_STRONG_CRYPTO_NOT_SUPPORTED","features":[3]},{"name":"SEC_E_TARGET_UNKNOWN","features":[3]},{"name":"SEC_E_TIME_SKEW","features":[3]},{"name":"SEC_E_TOO_MANY_PRINCIPALS","features":[3]},{"name":"SEC_E_UNFINISHED_CONTEXT_DELETED","features":[3]},{"name":"SEC_E_UNKNOWN_CREDENTIALS","features":[3]},{"name":"SEC_E_UNSUPPORTED_FUNCTION","features":[3]},{"name":"SEC_E_UNSUPPORTED_PREAUTH","features":[3]},{"name":"SEC_E_UNTRUSTED_ROOT","features":[3]},{"name":"SEC_E_WRONG_CREDENTIAL_HANDLE","features":[3]},{"name":"SEC_E_WRONG_PRINCIPAL","features":[3]},{"name":"SEC_I_ASYNC_CALL_PENDING","features":[3]},{"name":"SEC_I_COMPLETE_AND_CONTINUE","features":[3]},{"name":"SEC_I_COMPLETE_NEEDED","features":[3]},{"name":"SEC_I_CONTEXT_EXPIRED","features":[3]},{"name":"SEC_I_CONTINUE_NEEDED","features":[3]},{"name":"SEC_I_CONTINUE_NEEDED_MESSAGE_OK","features":[3]},{"name":"SEC_I_GENERIC_EXTENSION_RECEIVED","features":[3]},{"name":"SEC_I_INCOMPLETE_CREDENTIALS","features":[3]},{"name":"SEC_I_LOCAL_LOGON","features":[3]},{"name":"SEC_I_MESSAGE_FRAGMENT","features":[3]},{"name":"SEC_I_NO_LSA_CONTEXT","features":[3]},{"name":"SEC_I_NO_RENEGOTIATION","features":[3]},{"name":"SEC_I_RENEGOTIATE","features":[3]},{"name":"SEC_I_SIGNATURE_NEEDED","features":[3]},{"name":"SEVERITY_ERROR","features":[3]},{"name":"SEVERITY_SUCCESS","features":[3]},{"name":"SHANDLE_PTR","features":[3]},{"name":"SIZE","features":[3]},{"name":"SPAPI_E_AUTHENTICODE_DISALLOWED","features":[3]},{"name":"SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[3]},{"name":"SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER","features":[3]},{"name":"SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[3]},{"name":"SPAPI_E_BAD_INTERFACE_INSTALLSECT","features":[3]},{"name":"SPAPI_E_BAD_SECTION_NAME_LINE","features":[3]},{"name":"SPAPI_E_BAD_SERVICE_INSTALLSECT","features":[3]},{"name":"SPAPI_E_CANT_LOAD_CLASS_ICON","features":[3]},{"name":"SPAPI_E_CANT_REMOVE_DEVINST","features":[3]},{"name":"SPAPI_E_CLASS_MISMATCH","features":[3]},{"name":"SPAPI_E_DEVICE_INSTALLER_NOT_READY","features":[3]},{"name":"SPAPI_E_DEVICE_INSTALL_BLOCKED","features":[3]},{"name":"SPAPI_E_DEVICE_INTERFACE_ACTIVE","features":[3]},{"name":"SPAPI_E_DEVICE_INTERFACE_REMOVED","features":[3]},{"name":"SPAPI_E_DEVINFO_DATA_LOCKED","features":[3]},{"name":"SPAPI_E_DEVINFO_LIST_LOCKED","features":[3]},{"name":"SPAPI_E_DEVINFO_NOT_REGISTERED","features":[3]},{"name":"SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE","features":[3]},{"name":"SPAPI_E_DEVINST_ALREADY_EXISTS","features":[3]},{"name":"SPAPI_E_DI_BAD_PATH","features":[3]},{"name":"SPAPI_E_DI_DONT_INSTALL","features":[3]},{"name":"SPAPI_E_DI_DO_DEFAULT","features":[3]},{"name":"SPAPI_E_DI_FUNCTION_OBSOLETE","features":[3]},{"name":"SPAPI_E_DI_NOFILECOPY","features":[3]},{"name":"SPAPI_E_DI_POSTPROCESSING_REQUIRED","features":[3]},{"name":"SPAPI_E_DRIVER_INSTALL_BLOCKED","features":[3]},{"name":"SPAPI_E_DRIVER_NONNATIVE","features":[3]},{"name":"SPAPI_E_DRIVER_STORE_ADD_FAILED","features":[3]},{"name":"SPAPI_E_DRIVER_STORE_DELETE_FAILED","features":[3]},{"name":"SPAPI_E_DUPLICATE_FOUND","features":[3]},{"name":"SPAPI_E_ERROR_NOT_INSTALLED","features":[3]},{"name":"SPAPI_E_EXPECTED_SECTION_NAME","features":[3]},{"name":"SPAPI_E_FILEQUEUE_LOCKED","features":[3]},{"name":"SPAPI_E_FILE_HASH_NOT_IN_CATALOG","features":[3]},{"name":"SPAPI_E_GENERAL_SYNTAX","features":[3]},{"name":"SPAPI_E_INCORRECTLY_COPIED_INF","features":[3]},{"name":"SPAPI_E_INF_IN_USE_BY_DEVICES","features":[3]},{"name":"SPAPI_E_INVALID_CLASS","features":[3]},{"name":"SPAPI_E_INVALID_CLASS_INSTALLER","features":[3]},{"name":"SPAPI_E_INVALID_COINSTALLER","features":[3]},{"name":"SPAPI_E_INVALID_DEVINST_NAME","features":[3]},{"name":"SPAPI_E_INVALID_FILTER_DRIVER","features":[3]},{"name":"SPAPI_E_INVALID_HWPROFILE","features":[3]},{"name":"SPAPI_E_INVALID_INF_LOGCONFIG","features":[3]},{"name":"SPAPI_E_INVALID_MACHINENAME","features":[3]},{"name":"SPAPI_E_INVALID_PROPPAGE_PROVIDER","features":[3]},{"name":"SPAPI_E_INVALID_REFERENCE_STRING","features":[3]},{"name":"SPAPI_E_INVALID_REG_PROPERTY","features":[3]},{"name":"SPAPI_E_INVALID_TARGET","features":[3]},{"name":"SPAPI_E_IN_WOW64","features":[3]},{"name":"SPAPI_E_KEY_DOES_NOT_EXIST","features":[3]},{"name":"SPAPI_E_LINE_NOT_FOUND","features":[3]},{"name":"SPAPI_E_MACHINE_UNAVAILABLE","features":[3]},{"name":"SPAPI_E_NON_WINDOWS_DRIVER","features":[3]},{"name":"SPAPI_E_NON_WINDOWS_NT_DRIVER","features":[3]},{"name":"SPAPI_E_NOT_AN_INSTALLED_OEM_INF","features":[3]},{"name":"SPAPI_E_NOT_DISABLEABLE","features":[3]},{"name":"SPAPI_E_NO_ASSOCIATED_CLASS","features":[3]},{"name":"SPAPI_E_NO_ASSOCIATED_SERVICE","features":[3]},{"name":"SPAPI_E_NO_AUTHENTICODE_CATALOG","features":[3]},{"name":"SPAPI_E_NO_BACKUP","features":[3]},{"name":"SPAPI_E_NO_CATALOG_FOR_OEM_INF","features":[3]},{"name":"SPAPI_E_NO_CLASSINSTALL_PARAMS","features":[3]},{"name":"SPAPI_E_NO_CLASS_DRIVER_LIST","features":[3]},{"name":"SPAPI_E_NO_COMPAT_DRIVERS","features":[3]},{"name":"SPAPI_E_NO_CONFIGMGR_SERVICES","features":[3]},{"name":"SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE","features":[3]},{"name":"SPAPI_E_NO_DEVICE_ICON","features":[3]},{"name":"SPAPI_E_NO_DEVICE_SELECTED","features":[3]},{"name":"SPAPI_E_NO_DRIVER_SELECTED","features":[3]},{"name":"SPAPI_E_NO_INF","features":[3]},{"name":"SPAPI_E_NO_SUCH_DEVICE_INTERFACE","features":[3]},{"name":"SPAPI_E_NO_SUCH_DEVINST","features":[3]},{"name":"SPAPI_E_NO_SUCH_INTERFACE_CLASS","features":[3]},{"name":"SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[3]},{"name":"SPAPI_E_PNP_REGISTRY_ERROR","features":[3]},{"name":"SPAPI_E_REMOTE_COMM_FAILURE","features":[3]},{"name":"SPAPI_E_REMOTE_REQUEST_UNSUPPORTED","features":[3]},{"name":"SPAPI_E_SCE_DISABLED","features":[3]},{"name":"SPAPI_E_SECTION_NAME_TOO_LONG","features":[3]},{"name":"SPAPI_E_SECTION_NOT_FOUND","features":[3]},{"name":"SPAPI_E_SET_SYSTEM_RESTORE_POINT","features":[3]},{"name":"SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[3]},{"name":"SPAPI_E_UNKNOWN_EXCEPTION","features":[3]},{"name":"SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW","features":[3]},{"name":"SPAPI_E_WRONG_INF_STYLE","features":[3]},{"name":"SPAPI_E_WRONG_INF_TYPE","features":[3]},{"name":"SQLITE_E_ABORT","features":[3]},{"name":"SQLITE_E_ABORT_ROLLBACK","features":[3]},{"name":"SQLITE_E_AUTH","features":[3]},{"name":"SQLITE_E_BUSY","features":[3]},{"name":"SQLITE_E_BUSY_RECOVERY","features":[3]},{"name":"SQLITE_E_BUSY_SNAPSHOT","features":[3]},{"name":"SQLITE_E_CANTOPEN","features":[3]},{"name":"SQLITE_E_CANTOPEN_CONVPATH","features":[3]},{"name":"SQLITE_E_CANTOPEN_FULLPATH","features":[3]},{"name":"SQLITE_E_CANTOPEN_ISDIR","features":[3]},{"name":"SQLITE_E_CANTOPEN_NOTEMPDIR","features":[3]},{"name":"SQLITE_E_CONSTRAINT","features":[3]},{"name":"SQLITE_E_CONSTRAINT_CHECK","features":[3]},{"name":"SQLITE_E_CONSTRAINT_COMMITHOOK","features":[3]},{"name":"SQLITE_E_CONSTRAINT_FOREIGNKEY","features":[3]},{"name":"SQLITE_E_CONSTRAINT_FUNCTION","features":[3]},{"name":"SQLITE_E_CONSTRAINT_NOTNULL","features":[3]},{"name":"SQLITE_E_CONSTRAINT_PRIMARYKEY","features":[3]},{"name":"SQLITE_E_CONSTRAINT_ROWID","features":[3]},{"name":"SQLITE_E_CONSTRAINT_TRIGGER","features":[3]},{"name":"SQLITE_E_CONSTRAINT_UNIQUE","features":[3]},{"name":"SQLITE_E_CONSTRAINT_VTAB","features":[3]},{"name":"SQLITE_E_CORRUPT","features":[3]},{"name":"SQLITE_E_CORRUPT_VTAB","features":[3]},{"name":"SQLITE_E_DONE","features":[3]},{"name":"SQLITE_E_EMPTY","features":[3]},{"name":"SQLITE_E_ERROR","features":[3]},{"name":"SQLITE_E_FORMAT","features":[3]},{"name":"SQLITE_E_FULL","features":[3]},{"name":"SQLITE_E_INTERNAL","features":[3]},{"name":"SQLITE_E_INTERRUPT","features":[3]},{"name":"SQLITE_E_IOERR","features":[3]},{"name":"SQLITE_E_IOERR_ACCESS","features":[3]},{"name":"SQLITE_E_IOERR_AUTH","features":[3]},{"name":"SQLITE_E_IOERR_BLOCKED","features":[3]},{"name":"SQLITE_E_IOERR_CHECKRESERVEDLOCK","features":[3]},{"name":"SQLITE_E_IOERR_CLOSE","features":[3]},{"name":"SQLITE_E_IOERR_CONVPATH","features":[3]},{"name":"SQLITE_E_IOERR_DELETE","features":[3]},{"name":"SQLITE_E_IOERR_DELETE_NOENT","features":[3]},{"name":"SQLITE_E_IOERR_DIR_CLOSE","features":[3]},{"name":"SQLITE_E_IOERR_DIR_FSYNC","features":[3]},{"name":"SQLITE_E_IOERR_FSTAT","features":[3]},{"name":"SQLITE_E_IOERR_FSYNC","features":[3]},{"name":"SQLITE_E_IOERR_GETTEMPPATH","features":[3]},{"name":"SQLITE_E_IOERR_LOCK","features":[3]},{"name":"SQLITE_E_IOERR_MMAP","features":[3]},{"name":"SQLITE_E_IOERR_NOMEM","features":[3]},{"name":"SQLITE_E_IOERR_RDLOCK","features":[3]},{"name":"SQLITE_E_IOERR_READ","features":[3]},{"name":"SQLITE_E_IOERR_SEEK","features":[3]},{"name":"SQLITE_E_IOERR_SHMLOCK","features":[3]},{"name":"SQLITE_E_IOERR_SHMMAP","features":[3]},{"name":"SQLITE_E_IOERR_SHMOPEN","features":[3]},{"name":"SQLITE_E_IOERR_SHMSIZE","features":[3]},{"name":"SQLITE_E_IOERR_SHORT_READ","features":[3]},{"name":"SQLITE_E_IOERR_TRUNCATE","features":[3]},{"name":"SQLITE_E_IOERR_UNLOCK","features":[3]},{"name":"SQLITE_E_IOERR_VNODE","features":[3]},{"name":"SQLITE_E_IOERR_WRITE","features":[3]},{"name":"SQLITE_E_LOCKED","features":[3]},{"name":"SQLITE_E_LOCKED_SHAREDCACHE","features":[3]},{"name":"SQLITE_E_MISMATCH","features":[3]},{"name":"SQLITE_E_MISUSE","features":[3]},{"name":"SQLITE_E_NOLFS","features":[3]},{"name":"SQLITE_E_NOMEM","features":[3]},{"name":"SQLITE_E_NOTADB","features":[3]},{"name":"SQLITE_E_NOTFOUND","features":[3]},{"name":"SQLITE_E_NOTICE","features":[3]},{"name":"SQLITE_E_NOTICE_RECOVER_ROLLBACK","features":[3]},{"name":"SQLITE_E_NOTICE_RECOVER_WAL","features":[3]},{"name":"SQLITE_E_PERM","features":[3]},{"name":"SQLITE_E_PROTOCOL","features":[3]},{"name":"SQLITE_E_RANGE","features":[3]},{"name":"SQLITE_E_READONLY","features":[3]},{"name":"SQLITE_E_READONLY_CANTLOCK","features":[3]},{"name":"SQLITE_E_READONLY_DBMOVED","features":[3]},{"name":"SQLITE_E_READONLY_RECOVERY","features":[3]},{"name":"SQLITE_E_READONLY_ROLLBACK","features":[3]},{"name":"SQLITE_E_ROW","features":[3]},{"name":"SQLITE_E_SCHEMA","features":[3]},{"name":"SQLITE_E_TOOBIG","features":[3]},{"name":"SQLITE_E_WARNING","features":[3]},{"name":"SQLITE_E_WARNING_AUTOINDEX","features":[3]},{"name":"STATEREPOSITORY_ERROR_CACHE_CORRUPTED","features":[3]},{"name":"STATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED","features":[3]},{"name":"STATEREPOSITORY_E_BLOCKED","features":[3]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_RETRY","features":[3]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED","features":[3]},{"name":"STATEREPOSITORY_E_BUSY_RETRY","features":[3]},{"name":"STATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED","features":[3]},{"name":"STATEREPOSITORY_E_CACHE_NOT_INIITALIZED","features":[3]},{"name":"STATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE","features":[3]},{"name":"STATEREPOSITORY_E_CONFIGURATION_INVALID","features":[3]},{"name":"STATEREPOSITORY_E_DEPENDENCY_NOT_RESOLVED","features":[3]},{"name":"STATEREPOSITORY_E_LOCKED_RETRY","features":[3]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY","features":[3]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED","features":[3]},{"name":"STATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED","features":[3]},{"name":"STATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS","features":[3]},{"name":"STATEREPOSITORY_E_STATEMENT_INPROGRESS","features":[3]},{"name":"STATEREPOSITORY_E_TRANSACTION_REQUIRED","features":[3]},{"name":"STATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION","features":[3]},{"name":"STATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED","features":[3]},{"name":"STATEREPOSITORY_TRANSACTION_IN_PROGRESS","features":[3]},{"name":"STATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_ABANDONED","features":[3]},{"name":"STATUS_ABANDONED_WAIT_0","features":[3]},{"name":"STATUS_ABANDONED_WAIT_63","features":[3]},{"name":"STATUS_ABANDON_HIBERFILE","features":[3]},{"name":"STATUS_ABIOS_INVALID_COMMAND","features":[3]},{"name":"STATUS_ABIOS_INVALID_LID","features":[3]},{"name":"STATUS_ABIOS_INVALID_SELECTOR","features":[3]},{"name":"STATUS_ABIOS_LID_ALREADY_OWNED","features":[3]},{"name":"STATUS_ABIOS_LID_NOT_EXIST","features":[3]},{"name":"STATUS_ABIOS_NOT_LID_OWNER","features":[3]},{"name":"STATUS_ABIOS_NOT_PRESENT","features":[3]},{"name":"STATUS_ABIOS_SELECTOR_NOT_AVAILABLE","features":[3]},{"name":"STATUS_ACCESS_AUDIT_BY_POLICY","features":[3]},{"name":"STATUS_ACCESS_DENIED","features":[3]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT","features":[3]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_OTHER","features":[3]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PATH","features":[3]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER","features":[3]},{"name":"STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[3]},{"name":"STATUS_ACCESS_VIOLATION","features":[3]},{"name":"STATUS_ACPI_ACQUIRE_GLOBAL_LOCK","features":[3]},{"name":"STATUS_ACPI_ADDRESS_NOT_MAPPED","features":[3]},{"name":"STATUS_ACPI_ALREADY_INITIALIZED","features":[3]},{"name":"STATUS_ACPI_ASSERT_FAILED","features":[3]},{"name":"STATUS_ACPI_FATAL","features":[3]},{"name":"STATUS_ACPI_HANDLER_COLLISION","features":[3]},{"name":"STATUS_ACPI_INCORRECT_ARGUMENT_COUNT","features":[3]},{"name":"STATUS_ACPI_INVALID_ACCESS_SIZE","features":[3]},{"name":"STATUS_ACPI_INVALID_ARGTYPE","features":[3]},{"name":"STATUS_ACPI_INVALID_ARGUMENT","features":[3]},{"name":"STATUS_ACPI_INVALID_DATA","features":[3]},{"name":"STATUS_ACPI_INVALID_EVENTTYPE","features":[3]},{"name":"STATUS_ACPI_INVALID_INDEX","features":[3]},{"name":"STATUS_ACPI_INVALID_MUTEX_LEVEL","features":[3]},{"name":"STATUS_ACPI_INVALID_OBJTYPE","features":[3]},{"name":"STATUS_ACPI_INVALID_OPCODE","features":[3]},{"name":"STATUS_ACPI_INVALID_REGION","features":[3]},{"name":"STATUS_ACPI_INVALID_SUPERNAME","features":[3]},{"name":"STATUS_ACPI_INVALID_TABLE","features":[3]},{"name":"STATUS_ACPI_INVALID_TARGETTYPE","features":[3]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNED","features":[3]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNER","features":[3]},{"name":"STATUS_ACPI_NOT_INITIALIZED","features":[3]},{"name":"STATUS_ACPI_POWER_REQUEST_FAILED","features":[3]},{"name":"STATUS_ACPI_REG_HANDLER_FAILED","features":[3]},{"name":"STATUS_ACPI_RS_ACCESS","features":[3]},{"name":"STATUS_ACPI_STACK_OVERFLOW","features":[3]},{"name":"STATUS_ADAPTER_HARDWARE_ERROR","features":[3]},{"name":"STATUS_ADDRESS_ALREADY_ASSOCIATED","features":[3]},{"name":"STATUS_ADDRESS_ALREADY_EXISTS","features":[3]},{"name":"STATUS_ADDRESS_CLOSED","features":[3]},{"name":"STATUS_ADDRESS_NOT_ASSOCIATED","features":[3]},{"name":"STATUS_ADMINLESS_ACCESS_DENIED","features":[3]},{"name":"STATUS_ADVANCED_INSTALLER_FAILED","features":[3]},{"name":"STATUS_AGENTS_EXHAUSTED","features":[3]},{"name":"STATUS_ALERTED","features":[3]},{"name":"STATUS_ALIAS_EXISTS","features":[3]},{"name":"STATUS_ALLOCATE_BUCKET","features":[3]},{"name":"STATUS_ALLOTTED_SPACE_EXCEEDED","features":[3]},{"name":"STATUS_ALL_SIDS_FILTERED","features":[3]},{"name":"STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_ALPC_CHECK_COMPLETION_LIST","features":[3]},{"name":"STATUS_ALREADY_COMMITTED","features":[3]},{"name":"STATUS_ALREADY_COMPLETE","features":[3]},{"name":"STATUS_ALREADY_DISCONNECTED","features":[3]},{"name":"STATUS_ALREADY_HAS_STREAM_ID","features":[3]},{"name":"STATUS_ALREADY_INITIALIZED","features":[3]},{"name":"STATUS_ALREADY_REGISTERED","features":[3]},{"name":"STATUS_ALREADY_WIN32","features":[3]},{"name":"STATUS_AMBIGUOUS_SYSTEM_DEVICE","features":[3]},{"name":"STATUS_APC_RETURNED_WHILE_IMPERSONATING","features":[3]},{"name":"STATUS_APISET_NOT_HOSTED","features":[3]},{"name":"STATUS_APISET_NOT_PRESENT","features":[3]},{"name":"STATUS_APPEXEC_APP_COMPAT_BLOCK","features":[3]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT","features":[3]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[3]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[3]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[3]},{"name":"STATUS_APPEXEC_CONDITION_NOT_SATISFIED","features":[3]},{"name":"STATUS_APPEXEC_HANDLE_INVALIDATED","features":[3]},{"name":"STATUS_APPEXEC_HOST_ID_MISMATCH","features":[3]},{"name":"STATUS_APPEXEC_INVALID_HOST_GENERATION","features":[3]},{"name":"STATUS_APPEXEC_INVALID_HOST_STATE","features":[3]},{"name":"STATUS_APPEXEC_NO_DONOR","features":[3]},{"name":"STATUS_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[3]},{"name":"STATUS_APPEXEC_UNKNOWN_USER","features":[3]},{"name":"STATUS_APPHELP_BLOCK","features":[3]},{"name":"STATUS_APPX_FILE_NOT_ENCRYPTED","features":[3]},{"name":"STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[3]},{"name":"STATUS_APP_DATA_CORRUPT","features":[3]},{"name":"STATUS_APP_DATA_EXPIRED","features":[3]},{"name":"STATUS_APP_DATA_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_APP_DATA_NOT_FOUND","features":[3]},{"name":"STATUS_APP_DATA_REBOOT_REQUIRED","features":[3]},{"name":"STATUS_APP_INIT_FAILURE","features":[3]},{"name":"STATUS_ARBITRATION_UNHANDLED","features":[3]},{"name":"STATUS_ARRAY_BOUNDS_EXCEEDED","features":[3]},{"name":"STATUS_ASSERTION_FAILURE","features":[3]},{"name":"STATUS_ATTACHED_EXECUTABLE_MEMORY_WRITE","features":[3]},{"name":"STATUS_ATTRIBUTE_NOT_PRESENT","features":[3]},{"name":"STATUS_AUDIO_ENGINE_NODE_NOT_FOUND","features":[3]},{"name":"STATUS_AUDITING_DISABLED","features":[3]},{"name":"STATUS_AUDIT_FAILED","features":[3]},{"name":"STATUS_AUTHIP_FAILURE","features":[3]},{"name":"STATUS_AUTH_TAG_MISMATCH","features":[3]},{"name":"STATUS_BACKUP_CONTROLLER","features":[3]},{"name":"STATUS_BAD_BINDINGS","features":[3]},{"name":"STATUS_BAD_CLUSTERS","features":[3]},{"name":"STATUS_BAD_COMPRESSION_BUFFER","features":[3]},{"name":"STATUS_BAD_CURRENT_DIRECTORY","features":[3]},{"name":"STATUS_BAD_DATA","features":[3]},{"name":"STATUS_BAD_DESCRIPTOR_FORMAT","features":[3]},{"name":"STATUS_BAD_DEVICE_TYPE","features":[3]},{"name":"STATUS_BAD_DLL_ENTRYPOINT","features":[3]},{"name":"STATUS_BAD_FILE_TYPE","features":[3]},{"name":"STATUS_BAD_FUNCTION_TABLE","features":[3]},{"name":"STATUS_BAD_IMPERSONATION_LEVEL","features":[3]},{"name":"STATUS_BAD_INHERITANCE_ACL","features":[3]},{"name":"STATUS_BAD_INITIAL_PC","features":[3]},{"name":"STATUS_BAD_INITIAL_STACK","features":[3]},{"name":"STATUS_BAD_KEY","features":[3]},{"name":"STATUS_BAD_LOGON_SESSION_STATE","features":[3]},{"name":"STATUS_BAD_MASTER_BOOT_RECORD","features":[3]},{"name":"STATUS_BAD_MCFG_TABLE","features":[3]},{"name":"STATUS_BAD_NETWORK_NAME","features":[3]},{"name":"STATUS_BAD_NETWORK_PATH","features":[3]},{"name":"STATUS_BAD_REMOTE_ADAPTER","features":[3]},{"name":"STATUS_BAD_SERVICE_ENTRYPOINT","features":[3]},{"name":"STATUS_BAD_STACK","features":[3]},{"name":"STATUS_BAD_TOKEN_TYPE","features":[3]},{"name":"STATUS_BAD_VALIDATION_CLASS","features":[3]},{"name":"STATUS_BAD_WORKING_SET_LIMIT","features":[3]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[3]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[3]},{"name":"STATUS_BCD_TOO_MANY_ELEMENTS","features":[3]},{"name":"STATUS_BEGINNING_OF_MEDIA","features":[3]},{"name":"STATUS_BEYOND_VDL","features":[3]},{"name":"STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[3]},{"name":"STATUS_BIZRULES_NOT_ENABLED","features":[3]},{"name":"STATUS_BLOCKED_BY_PARENTAL_CONTROLS","features":[3]},{"name":"STATUS_BLOCK_SHARED","features":[3]},{"name":"STATUS_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[3]},{"name":"STATUS_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[3]},{"name":"STATUS_BLOCK_TOO_MANY_REFERENCES","features":[3]},{"name":"STATUS_BLOCK_WEAK_REFERENCE_INVALID","features":[3]},{"name":"STATUS_BREAKPOINT","features":[3]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND","features":[3]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG","features":[3]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[3]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[3]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION","features":[3]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[3]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_RESOURCES","features":[3]},{"name":"STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[3]},{"name":"STATUS_BTH_ATT_INVALID_HANDLE","features":[3]},{"name":"STATUS_BTH_ATT_INVALID_OFFSET","features":[3]},{"name":"STATUS_BTH_ATT_INVALID_PDU","features":[3]},{"name":"STATUS_BTH_ATT_PREPARE_QUEUE_FULL","features":[3]},{"name":"STATUS_BTH_ATT_READ_NOT_PERMITTED","features":[3]},{"name":"STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED","features":[3]},{"name":"STATUS_BTH_ATT_UNKNOWN_ERROR","features":[3]},{"name":"STATUS_BTH_ATT_UNLIKELY","features":[3]},{"name":"STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[3]},{"name":"STATUS_BTH_ATT_WRITE_NOT_PERMITTED","features":[3]},{"name":"STATUS_BUFFER_ALL_ZEROS","features":[3]},{"name":"STATUS_BUFFER_OVERFLOW","features":[3]},{"name":"STATUS_BUFFER_TOO_SMALL","features":[3]},{"name":"STATUS_BUS_RESET","features":[3]},{"name":"STATUS_BYPASSIO_FLT_NOT_SUPPORTED","features":[3]},{"name":"STATUS_CACHE_PAGE_LOCKED","features":[3]},{"name":"STATUS_CALLBACK_BYPASS","features":[3]},{"name":"STATUS_CALLBACK_INVOKE_INLINE","features":[3]},{"name":"STATUS_CALLBACK_POP_STACK","features":[3]},{"name":"STATUS_CALLBACK_RETURNED_LANG","features":[3]},{"name":"STATUS_CALLBACK_RETURNED_LDR_LOCK","features":[3]},{"name":"STATUS_CALLBACK_RETURNED_PRI_BACK","features":[3]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_AFFINITY","features":[3]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_PRIORITY","features":[3]},{"name":"STATUS_CALLBACK_RETURNED_TRANSACTION","features":[3]},{"name":"STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING","features":[3]},{"name":"STATUS_CANCELLED","features":[3]},{"name":"STATUS_CANNOT_ABORT_TRANSACTIONS","features":[3]},{"name":"STATUS_CANNOT_ACCEPT_TRANSACTED_WORK","features":[3]},{"name":"STATUS_CANNOT_BREAK_OPLOCK","features":[3]},{"name":"STATUS_CANNOT_DELETE","features":[3]},{"name":"STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[3]},{"name":"STATUS_CANNOT_GRANT_REQUESTED_OPLOCK","features":[3]},{"name":"STATUS_CANNOT_IMPERSONATE","features":[3]},{"name":"STATUS_CANNOT_LOAD_REGISTRY_FILE","features":[3]},{"name":"STATUS_CANNOT_MAKE","features":[3]},{"name":"STATUS_CANNOT_SWITCH_RUNLEVEL","features":[3]},{"name":"STATUS_CANT_ACCESS_DOMAIN_INFO","features":[3]},{"name":"STATUS_CANT_ATTACH_TO_DEV_VOLUME","features":[3]},{"name":"STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[3]},{"name":"STATUS_CANT_CLEAR_ENCRYPTION_FLAG","features":[3]},{"name":"STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[3]},{"name":"STATUS_CANT_CROSS_RM_BOUNDARY","features":[3]},{"name":"STATUS_CANT_DISABLE_MANDATORY","features":[3]},{"name":"STATUS_CANT_ENABLE_DENY_ONLY","features":[3]},{"name":"STATUS_CANT_OPEN_ANONYMOUS","features":[3]},{"name":"STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[3]},{"name":"STATUS_CANT_RECOVER_WITH_HANDLE_OPEN","features":[3]},{"name":"STATUS_CANT_TERMINATE_SELF","features":[3]},{"name":"STATUS_CANT_WAIT","features":[3]},{"name":"STATUS_CARDBUS_NOT_SUPPORTED","features":[3]},{"name":"STATUS_CASE_DIFFERING_NAMES_IN_DIR","features":[3]},{"name":"STATUS_CASE_SENSITIVE_PATH","features":[3]},{"name":"STATUS_CC_NEEDS_CALLBACK_SECTION_DRAIN","features":[3]},{"name":"STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE","features":[3]},{"name":"STATUS_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[3]},{"name":"STATUS_CHECKING_FILE_SYSTEM","features":[3]},{"name":"STATUS_CHECKOUT_REQUIRED","features":[3]},{"name":"STATUS_CHILD_MUST_BE_VOLATILE","features":[3]},{"name":"STATUS_CHILD_PROCESS_BLOCKED","features":[3]},{"name":"STATUS_CIMFS_IMAGE_CORRUPT","features":[3]},{"name":"STATUS_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_CLEANER_CARTRIDGE_INSTALLED","features":[3]},{"name":"STATUS_CLIENT_SERVER_PARAMETERS_INVALID","features":[3]},{"name":"STATUS_CLIP_DEVICE_LICENSE_MISSING","features":[3]},{"name":"STATUS_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[3]},{"name":"STATUS_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[3]},{"name":"STATUS_CLIP_LICENSE_EXPIRED","features":[3]},{"name":"STATUS_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[3]},{"name":"STATUS_CLIP_LICENSE_INVALID_SIGNATURE","features":[3]},{"name":"STATUS_CLIP_LICENSE_NOT_FOUND","features":[3]},{"name":"STATUS_CLIP_LICENSE_NOT_SIGNED","features":[3]},{"name":"STATUS_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[3]},{"name":"STATUS_CLOUD_FILE_ACCESS_DENIED","features":[3]},{"name":"STATUS_CLOUD_FILE_ALREADY_CONNECTED","features":[3]},{"name":"STATUS_CLOUD_FILE_AUTHENTICATION_FAILED","features":[3]},{"name":"STATUS_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[3]},{"name":"STATUS_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[3]},{"name":"STATUS_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[3]},{"name":"STATUS_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[3]},{"name":"STATUS_CLOUD_FILE_INVALID_REQUEST","features":[3]},{"name":"STATUS_CLOUD_FILE_IN_USE","features":[3]},{"name":"STATUS_CLOUD_FILE_METADATA_CORRUPT","features":[3]},{"name":"STATUS_CLOUD_FILE_METADATA_TOO_LARGE","features":[3]},{"name":"STATUS_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[3]},{"name":"STATUS_CLOUD_FILE_NOT_IN_SYNC","features":[3]},{"name":"STATUS_CLOUD_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[3]},{"name":"STATUS_CLOUD_FILE_PINNED","features":[3]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[3]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[3]},{"name":"STATUS_CLOUD_FILE_PROPERTY_CORRUPT","features":[3]},{"name":"STATUS_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[3]},{"name":"STATUS_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[3]},{"name":"STATUS_CLOUD_FILE_PROVIDER_TERMINATED","features":[3]},{"name":"STATUS_CLOUD_FILE_READ_ONLY_VOLUME","features":[3]},{"name":"STATUS_CLOUD_FILE_REQUEST_ABORTED","features":[3]},{"name":"STATUS_CLOUD_FILE_REQUEST_CANCELED","features":[3]},{"name":"STATUS_CLOUD_FILE_REQUEST_TIMEOUT","features":[3]},{"name":"STATUS_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[3]},{"name":"STATUS_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[3]},{"name":"STATUS_CLOUD_FILE_UNSUCCESSFUL","features":[3]},{"name":"STATUS_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[3]},{"name":"STATUS_CLOUD_FILE_VALIDATION_FAILED","features":[3]},{"name":"STATUS_CLUSTER_CAM_TICKET_REPLAY_DETECTED","features":[3]},{"name":"STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR","features":[3]},{"name":"STATUS_CLUSTER_CSV_INVALID_HANDLE","features":[3]},{"name":"STATUS_CLUSTER_CSV_NOT_REDIRECTED","features":[3]},{"name":"STATUS_CLUSTER_CSV_NO_SNAPSHOTS","features":[3]},{"name":"STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS","features":[3]},{"name":"STATUS_CLUSTER_CSV_REDIRECTED","features":[3]},{"name":"STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS","features":[3]},{"name":"STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[3]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING","features":[3]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL","features":[3]},{"name":"STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL","features":[3]},{"name":"STATUS_CLUSTER_INVALID_NETWORK","features":[3]},{"name":"STATUS_CLUSTER_INVALID_NETWORK_PROVIDER","features":[3]},{"name":"STATUS_CLUSTER_INVALID_NODE","features":[3]},{"name":"STATUS_CLUSTER_INVALID_REQUEST","features":[3]},{"name":"STATUS_CLUSTER_JOIN_IN_PROGRESS","features":[3]},{"name":"STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[3]},{"name":"STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[3]},{"name":"STATUS_CLUSTER_NETINTERFACE_EXISTS","features":[3]},{"name":"STATUS_CLUSTER_NETINTERFACE_NOT_FOUND","features":[3]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[3]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_ONLINE","features":[3]},{"name":"STATUS_CLUSTER_NETWORK_EXISTS","features":[3]},{"name":"STATUS_CLUSTER_NETWORK_NOT_FOUND","features":[3]},{"name":"STATUS_CLUSTER_NETWORK_NOT_INTERNAL","features":[3]},{"name":"STATUS_CLUSTER_NODE_ALREADY_DOWN","features":[3]},{"name":"STATUS_CLUSTER_NODE_ALREADY_MEMBER","features":[3]},{"name":"STATUS_CLUSTER_NODE_ALREADY_UP","features":[3]},{"name":"STATUS_CLUSTER_NODE_DOWN","features":[3]},{"name":"STATUS_CLUSTER_NODE_EXISTS","features":[3]},{"name":"STATUS_CLUSTER_NODE_NOT_FOUND","features":[3]},{"name":"STATUS_CLUSTER_NODE_NOT_MEMBER","features":[3]},{"name":"STATUS_CLUSTER_NODE_NOT_PAUSED","features":[3]},{"name":"STATUS_CLUSTER_NODE_PAUSED","features":[3]},{"name":"STATUS_CLUSTER_NODE_UNREACHABLE","features":[3]},{"name":"STATUS_CLUSTER_NODE_UP","features":[3]},{"name":"STATUS_CLUSTER_NON_CSV_PATH","features":[3]},{"name":"STATUS_CLUSTER_NO_NET_ADAPTERS","features":[3]},{"name":"STATUS_CLUSTER_NO_SECURITY_CONTEXT","features":[3]},{"name":"STATUS_CLUSTER_POISONED","features":[3]},{"name":"STATUS_COMMITMENT_LIMIT","features":[3]},{"name":"STATUS_COMMITMENT_MINIMUM","features":[3]},{"name":"STATUS_COMPRESSED_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_COMPRESSION_DISABLED","features":[3]},{"name":"STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[3]},{"name":"STATUS_COMPRESSION_NOT_BENEFICIAL","features":[3]},{"name":"STATUS_CONFLICTING_ADDRESSES","features":[3]},{"name":"STATUS_CONNECTION_ABORTED","features":[3]},{"name":"STATUS_CONNECTION_ACTIVE","features":[3]},{"name":"STATUS_CONNECTION_COUNT_LIMIT","features":[3]},{"name":"STATUS_CONNECTION_DISCONNECTED","features":[3]},{"name":"STATUS_CONNECTION_INVALID","features":[3]},{"name":"STATUS_CONNECTION_IN_USE","features":[3]},{"name":"STATUS_CONNECTION_REFUSED","features":[3]},{"name":"STATUS_CONNECTION_RESET","features":[3]},{"name":"STATUS_CONTAINER_ASSIGNED","features":[3]},{"name":"STATUS_CONTENT_BLOCKED","features":[3]},{"name":"STATUS_CONTEXT_MISMATCH","features":[3]},{"name":"STATUS_CONTEXT_STOWED_EXCEPTION","features":[3]},{"name":"STATUS_CONTROL_C_EXIT","features":[3]},{"name":"STATUS_CONTROL_STACK_VIOLATION","features":[3]},{"name":"STATUS_CONVERT_TO_LARGE","features":[3]},{"name":"STATUS_COPY_PROTECTION_FAILURE","features":[3]},{"name":"STATUS_CORRUPT_LOG_CLEARED","features":[3]},{"name":"STATUS_CORRUPT_LOG_CORRUPTED","features":[3]},{"name":"STATUS_CORRUPT_LOG_DELETED_FULL","features":[3]},{"name":"STATUS_CORRUPT_LOG_OVERFULL","features":[3]},{"name":"STATUS_CORRUPT_LOG_UNAVAILABLE","features":[3]},{"name":"STATUS_CORRUPT_LOG_UPLEVEL_RECORDS","features":[3]},{"name":"STATUS_CORRUPT_SYSTEM_FILE","features":[3]},{"name":"STATUS_COULD_NOT_INTERPRET","features":[3]},{"name":"STATUS_COULD_NOT_RESIZE_LOG","features":[3]},{"name":"STATUS_CPU_SET_INVALID","features":[3]},{"name":"STATUS_CRASH_DUMP","features":[3]},{"name":"STATUS_CRC_ERROR","features":[3]},{"name":"STATUS_CRED_REQUIRES_CONFIRMATION","features":[3]},{"name":"STATUS_CRM_PROTOCOL_ALREADY_EXISTS","features":[3]},{"name":"STATUS_CRM_PROTOCOL_NOT_FOUND","features":[3]},{"name":"STATUS_CROSSREALM_DELEGATION_FAILURE","features":[3]},{"name":"STATUS_CROSS_PARTITION_VIOLATION","features":[3]},{"name":"STATUS_CRYPTO_SYSTEM_INVALID","features":[3]},{"name":"STATUS_CSS_AUTHENTICATION_FAILURE","features":[3]},{"name":"STATUS_CSS_KEY_NOT_ESTABLISHED","features":[3]},{"name":"STATUS_CSS_KEY_NOT_PRESENT","features":[3]},{"name":"STATUS_CSS_REGION_MISMATCH","features":[3]},{"name":"STATUS_CSS_RESETS_EXHAUSTED","features":[3]},{"name":"STATUS_CSS_SCRAMBLED_SECTOR","features":[3]},{"name":"STATUS_CSV_IO_PAUSE_TIMEOUT","features":[3]},{"name":"STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[3]},{"name":"STATUS_CS_ENCRYPTION_FILE_NOT_CSE","features":[3]},{"name":"STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[3]},{"name":"STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[3]},{"name":"STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[3]},{"name":"STATUS_CTLOG_INCONSISTENT_TRACKING_FILE","features":[3]},{"name":"STATUS_CTLOG_INVALID_TRACKING_STATE","features":[3]},{"name":"STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[3]},{"name":"STATUS_CTLOG_TRACKING_NOT_INITIALIZED","features":[3]},{"name":"STATUS_CTLOG_VHD_CHANGED_OFFLINE","features":[3]},{"name":"STATUS_CTL_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_CTX_BAD_VIDEO_MODE","features":[3]},{"name":"STATUS_CTX_CDM_CONNECT","features":[3]},{"name":"STATUS_CTX_CDM_DISCONNECT","features":[3]},{"name":"STATUS_CTX_CLIENT_LICENSE_IN_USE","features":[3]},{"name":"STATUS_CTX_CLIENT_LICENSE_NOT_SET","features":[3]},{"name":"STATUS_CTX_CLIENT_QUERY_TIMEOUT","features":[3]},{"name":"STATUS_CTX_CLOSE_PENDING","features":[3]},{"name":"STATUS_CTX_CONSOLE_CONNECT","features":[3]},{"name":"STATUS_CTX_CONSOLE_DISCONNECT","features":[3]},{"name":"STATUS_CTX_GRAPHICS_INVALID","features":[3]},{"name":"STATUS_CTX_INVALID_MODEMNAME","features":[3]},{"name":"STATUS_CTX_INVALID_PD","features":[3]},{"name":"STATUS_CTX_INVALID_WD","features":[3]},{"name":"STATUS_CTX_LICENSE_CLIENT_INVALID","features":[3]},{"name":"STATUS_CTX_LICENSE_EXPIRED","features":[3]},{"name":"STATUS_CTX_LICENSE_NOT_AVAILABLE","features":[3]},{"name":"STATUS_CTX_LOGON_DISABLED","features":[3]},{"name":"STATUS_CTX_MODEM_INF_NOT_FOUND","features":[3]},{"name":"STATUS_CTX_MODEM_RESPONSE_BUSY","features":[3]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_CARRIER","features":[3]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[3]},{"name":"STATUS_CTX_MODEM_RESPONSE_TIMEOUT","features":[3]},{"name":"STATUS_CTX_MODEM_RESPONSE_VOICE","features":[3]},{"name":"STATUS_CTX_NOT_CONSOLE","features":[3]},{"name":"STATUS_CTX_NO_OUTBUF","features":[3]},{"name":"STATUS_CTX_PD_NOT_FOUND","features":[3]},{"name":"STATUS_CTX_RESPONSE_ERROR","features":[3]},{"name":"STATUS_CTX_SECURITY_LAYER_ERROR","features":[3]},{"name":"STATUS_CTX_SHADOW_DENIED","features":[3]},{"name":"STATUS_CTX_SHADOW_DISABLED","features":[3]},{"name":"STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[3]},{"name":"STATUS_CTX_SHADOW_INVALID","features":[3]},{"name":"STATUS_CTX_SHADOW_NOT_RUNNING","features":[3]},{"name":"STATUS_CTX_TD_ERROR","features":[3]},{"name":"STATUS_CTX_WD_NOT_FOUND","features":[3]},{"name":"STATUS_CTX_WINSTATION_ACCESS_DENIED","features":[3]},{"name":"STATUS_CTX_WINSTATION_BUSY","features":[3]},{"name":"STATUS_CTX_WINSTATION_NAME_COLLISION","features":[3]},{"name":"STATUS_CTX_WINSTATION_NAME_INVALID","features":[3]},{"name":"STATUS_CTX_WINSTATION_NOT_FOUND","features":[3]},{"name":"STATUS_CURRENT_DOMAIN_NOT_ALLOWED","features":[3]},{"name":"STATUS_CURRENT_TRANSACTION_NOT_VALID","features":[3]},{"name":"STATUS_DATATYPE_MISALIGNMENT","features":[3]},{"name":"STATUS_DATATYPE_MISALIGNMENT_ERROR","features":[3]},{"name":"STATUS_DATA_CHECKSUM_ERROR","features":[3]},{"name":"STATUS_DATA_ERROR","features":[3]},{"name":"STATUS_DATA_LATE_ERROR","features":[3]},{"name":"STATUS_DATA_LOST_REPAIR","features":[3]},{"name":"STATUS_DATA_NOT_ACCEPTED","features":[3]},{"name":"STATUS_DATA_OVERRUN","features":[3]},{"name":"STATUS_DATA_OVERWRITTEN","features":[3]},{"name":"STATUS_DAX_MAPPING_EXISTS","features":[3]},{"name":"STATUS_DEBUGGER_INACTIVE","features":[3]},{"name":"STATUS_DEBUG_ATTACH_FAILED","features":[3]},{"name":"STATUS_DECRYPTION_FAILED","features":[3]},{"name":"STATUS_DELAY_LOAD_FAILED","features":[3]},{"name":"STATUS_DELETE_PENDING","features":[3]},{"name":"STATUS_DESTINATION_ELEMENT_FULL","features":[3]},{"name":"STATUS_DEVICE_ALREADY_ATTACHED","features":[3]},{"name":"STATUS_DEVICE_BUSY","features":[3]},{"name":"STATUS_DEVICE_CONFIGURATION_ERROR","features":[3]},{"name":"STATUS_DEVICE_DATA_ERROR","features":[3]},{"name":"STATUS_DEVICE_DOES_NOT_EXIST","features":[3]},{"name":"STATUS_DEVICE_DOOR_OPEN","features":[3]},{"name":"STATUS_DEVICE_ENUMERATION_ERROR","features":[3]},{"name":"STATUS_DEVICE_FEATURE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_DEVICE_HARDWARE_ERROR","features":[3]},{"name":"STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[3]},{"name":"STATUS_DEVICE_HUNG","features":[3]},{"name":"STATUS_DEVICE_INSUFFICIENT_RESOURCES","features":[3]},{"name":"STATUS_DEVICE_IN_MAINTENANCE","features":[3]},{"name":"STATUS_DEVICE_NOT_CONNECTED","features":[3]},{"name":"STATUS_DEVICE_NOT_PARTITIONED","features":[3]},{"name":"STATUS_DEVICE_NOT_READY","features":[3]},{"name":"STATUS_DEVICE_OFF_LINE","features":[3]},{"name":"STATUS_DEVICE_PAPER_EMPTY","features":[3]},{"name":"STATUS_DEVICE_POWERED_OFF","features":[3]},{"name":"STATUS_DEVICE_POWER_CYCLE_REQUIRED","features":[3]},{"name":"STATUS_DEVICE_POWER_FAILURE","features":[3]},{"name":"STATUS_DEVICE_PROTOCOL_ERROR","features":[3]},{"name":"STATUS_DEVICE_REMOVED","features":[3]},{"name":"STATUS_DEVICE_REQUIRES_CLEANING","features":[3]},{"name":"STATUS_DEVICE_RESET_REQUIRED","features":[3]},{"name":"STATUS_DEVICE_SUPPORT_IN_PROGRESS","features":[3]},{"name":"STATUS_DEVICE_UNREACHABLE","features":[3]},{"name":"STATUS_DEVICE_UNRESPONSIVE","features":[3]},{"name":"STATUS_DFS_EXIT_PATH_FOUND","features":[3]},{"name":"STATUS_DFS_UNAVAILABLE","features":[3]},{"name":"STATUS_DIF_BINDING_API_NOT_FOUND","features":[3]},{"name":"STATUS_DIF_IOCALLBACK_NOT_REPLACED","features":[3]},{"name":"STATUS_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[3]},{"name":"STATUS_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[3]},{"name":"STATUS_DIF_VOLATILE_INVALID_INFO","features":[3]},{"name":"STATUS_DIF_VOLATILE_NOT_ALLOWED","features":[3]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[3]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[3]},{"name":"STATUS_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[3]},{"name":"STATUS_DIRECTORY_IS_A_REPARSE_POINT","features":[3]},{"name":"STATUS_DIRECTORY_NOT_EMPTY","features":[3]},{"name":"STATUS_DIRECTORY_NOT_RM","features":[3]},{"name":"STATUS_DIRECTORY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_DIRECTORY_SERVICE_REQUIRED","features":[3]},{"name":"STATUS_DISK_CORRUPT_ERROR","features":[3]},{"name":"STATUS_DISK_FULL","features":[3]},{"name":"STATUS_DISK_OPERATION_FAILED","features":[3]},{"name":"STATUS_DISK_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_DISK_RECALIBRATE_FAILED","features":[3]},{"name":"STATUS_DISK_REPAIR_DISABLED","features":[3]},{"name":"STATUS_DISK_REPAIR_REDIRECTED","features":[3]},{"name":"STATUS_DISK_REPAIR_UNSUCCESSFUL","features":[3]},{"name":"STATUS_DISK_RESET_FAILED","features":[3]},{"name":"STATUS_DISK_RESOURCES_EXHAUSTED","features":[3]},{"name":"STATUS_DLL_INIT_FAILED","features":[3]},{"name":"STATUS_DLL_INIT_FAILED_LOGOFF","features":[3]},{"name":"STATUS_DLL_MIGHT_BE_INCOMPATIBLE","features":[3]},{"name":"STATUS_DLL_MIGHT_BE_INSECURE","features":[3]},{"name":"STATUS_DLL_NOT_FOUND","features":[3]},{"name":"STATUS_DM_OPERATION_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_DOMAIN_CONTROLLER_NOT_FOUND","features":[3]},{"name":"STATUS_DOMAIN_CTRLR_CONFIG_ERROR","features":[3]},{"name":"STATUS_DOMAIN_EXISTS","features":[3]},{"name":"STATUS_DOMAIN_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_DOMAIN_TRUST_INCONSISTENT","features":[3]},{"name":"STATUS_DRIVERS_LEAKING_LOCKED_PAGES","features":[3]},{"name":"STATUS_DRIVER_BLOCKED","features":[3]},{"name":"STATUS_DRIVER_BLOCKED_CRITICAL","features":[3]},{"name":"STATUS_DRIVER_CANCEL_TIMEOUT","features":[3]},{"name":"STATUS_DRIVER_DATABASE_ERROR","features":[3]},{"name":"STATUS_DRIVER_ENTRYPOINT_NOT_FOUND","features":[3]},{"name":"STATUS_DRIVER_FAILED_PRIOR_UNLOAD","features":[3]},{"name":"STATUS_DRIVER_FAILED_SLEEP","features":[3]},{"name":"STATUS_DRIVER_INTERNAL_ERROR","features":[3]},{"name":"STATUS_DRIVER_ORDINAL_NOT_FOUND","features":[3]},{"name":"STATUS_DRIVER_PROCESS_TERMINATED","features":[3]},{"name":"STATUS_DRIVER_UNABLE_TO_LOAD","features":[3]},{"name":"STATUS_DS_ADMIN_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[3]},{"name":"STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[3]},{"name":"STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[3]},{"name":"STATUS_DS_BUSY","features":[3]},{"name":"STATUS_DS_CANT_MOD_OBJ_CLASS","features":[3]},{"name":"STATUS_DS_CANT_MOD_PRIMARYGROUPID","features":[3]},{"name":"STATUS_DS_CANT_ON_NON_LEAF","features":[3]},{"name":"STATUS_DS_CANT_ON_RDN","features":[3]},{"name":"STATUS_DS_CANT_START","features":[3]},{"name":"STATUS_DS_CROSS_DOM_MOVE_FAILED","features":[3]},{"name":"STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[3]},{"name":"STATUS_DS_DOMAIN_RENAME_IN_PROGRESS","features":[3]},{"name":"STATUS_DS_DUPLICATE_ID_FOUND","features":[3]},{"name":"STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[3]},{"name":"STATUS_DS_GC_NOT_AVAILABLE","features":[3]},{"name":"STATUS_DS_GC_REQUIRED","features":[3]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[3]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[3]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[3]},{"name":"STATUS_DS_GROUP_CONVERSION_ERROR","features":[3]},{"name":"STATUS_DS_HAVE_PRIMARY_MEMBERS","features":[3]},{"name":"STATUS_DS_INCORRECT_ROLE_OWNER","features":[3]},{"name":"STATUS_DS_INIT_FAILURE","features":[3]},{"name":"STATUS_DS_INIT_FAILURE_CONSOLE","features":[3]},{"name":"STATUS_DS_INVALID_ATTRIBUTE_SYNTAX","features":[3]},{"name":"STATUS_DS_INVALID_GROUP_TYPE","features":[3]},{"name":"STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[3]},{"name":"STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[3]},{"name":"STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[3]},{"name":"STATUS_DS_NAME_NOT_UNIQUE","features":[3]},{"name":"STATUS_DS_NO_ATTRIBUTE_OR_VALUE","features":[3]},{"name":"STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[3]},{"name":"STATUS_DS_NO_MORE_RIDS","features":[3]},{"name":"STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[3]},{"name":"STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[3]},{"name":"STATUS_DS_NO_RIDS_ALLOCATED","features":[3]},{"name":"STATUS_DS_OBJ_CLASS_VIOLATION","features":[3]},{"name":"STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[3]},{"name":"STATUS_DS_OID_NOT_FOUND","features":[3]},{"name":"STATUS_DS_RIDMGR_DISABLED","features":[3]},{"name":"STATUS_DS_RIDMGR_INIT_ERROR","features":[3]},{"name":"STATUS_DS_SAM_INIT_FAILURE","features":[3]},{"name":"STATUS_DS_SAM_INIT_FAILURE_CONSOLE","features":[3]},{"name":"STATUS_DS_SENSITIVE_GROUP_VIOLATION","features":[3]},{"name":"STATUS_DS_SHUTTING_DOWN","features":[3]},{"name":"STATUS_DS_SRC_SID_EXISTS_IN_FOREST","features":[3]},{"name":"STATUS_DS_UNAVAILABLE","features":[3]},{"name":"STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[3]},{"name":"STATUS_DS_VERSION_CHECK_FAILURE","features":[3]},{"name":"STATUS_DUPLICATE_NAME","features":[3]},{"name":"STATUS_DUPLICATE_OBJECTID","features":[3]},{"name":"STATUS_DUPLICATE_PRIVILEGES","features":[3]},{"name":"STATUS_DYNAMIC_CODE_BLOCKED","features":[3]},{"name":"STATUS_EAS_NOT_SUPPORTED","features":[3]},{"name":"STATUS_EA_CORRUPT_ERROR","features":[3]},{"name":"STATUS_EA_LIST_INCONSISTENT","features":[3]},{"name":"STATUS_EA_TOO_LARGE","features":[3]},{"name":"STATUS_EFS_ALG_BLOB_TOO_BIG","features":[3]},{"name":"STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[3]},{"name":"STATUS_ELEVATION_REQUIRED","features":[3]},{"name":"STATUS_EMULATION_BREAKPOINT","features":[3]},{"name":"STATUS_EMULATION_SYSCALL","features":[3]},{"name":"STATUS_ENCLAVE_FAILURE","features":[3]},{"name":"STATUS_ENCLAVE_IS_TERMINATING","features":[3]},{"name":"STATUS_ENCLAVE_NOT_TERMINATED","features":[3]},{"name":"STATUS_ENCLAVE_VIOLATION","features":[3]},{"name":"STATUS_ENCOUNTERED_WRITE_IN_PROGRESS","features":[3]},{"name":"STATUS_ENCRYPTED_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_ENCRYPTED_IO_NOT_POSSIBLE","features":[3]},{"name":"STATUS_ENCRYPTING_METADATA_DISALLOWED","features":[3]},{"name":"STATUS_ENCRYPTION_DISABLED","features":[3]},{"name":"STATUS_ENCRYPTION_FAILED","features":[3]},{"name":"STATUS_END_OF_FILE","features":[3]},{"name":"STATUS_END_OF_MEDIA","features":[3]},{"name":"STATUS_ENLISTMENT_NOT_FOUND","features":[3]},{"name":"STATUS_ENLISTMENT_NOT_SUPERIOR","features":[3]},{"name":"STATUS_ENTRYPOINT_NOT_FOUND","features":[3]},{"name":"STATUS_EOF_ON_GHOSTED_RANGE","features":[3]},{"name":"STATUS_EOM_OVERFLOW","features":[3]},{"name":"STATUS_ERROR_PROCESS_NOT_IN_JOB","features":[3]},{"name":"STATUS_EVALUATION_EXPIRATION","features":[3]},{"name":"STATUS_EVENTLOG_CANT_START","features":[3]},{"name":"STATUS_EVENTLOG_FILE_CHANGED","features":[3]},{"name":"STATUS_EVENTLOG_FILE_CORRUPT","features":[3]},{"name":"STATUS_EVENT_DONE","features":[3]},{"name":"STATUS_EVENT_PENDING","features":[3]},{"name":"STATUS_EXECUTABLE_MEMORY_WRITE","features":[3]},{"name":"STATUS_EXPIRED_HANDLE","features":[3]},{"name":"STATUS_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[3]},{"name":"STATUS_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_EXTRANEOUS_INFORMATION","features":[3]},{"name":"STATUS_FAILED_DRIVER_ENTRY","features":[3]},{"name":"STATUS_FAILED_STACK_SWITCH","features":[3]},{"name":"STATUS_FAIL_CHECK","features":[3]},{"name":"STATUS_FAIL_FAST_EXCEPTION","features":[3]},{"name":"STATUS_FASTPATH_REJECTED","features":[3]},{"name":"STATUS_FATAL_APP_EXIT","features":[3]},{"name":"STATUS_FATAL_MEMORY_EXHAUSTION","features":[3]},{"name":"STATUS_FATAL_USER_CALLBACK_EXCEPTION","features":[3]},{"name":"STATUS_FILEMARK_DETECTED","features":[3]},{"name":"STATUS_FILES_OPEN","features":[3]},{"name":"STATUS_FILE_CHECKED_OUT","features":[3]},{"name":"STATUS_FILE_CLOSED","features":[3]},{"name":"STATUS_FILE_CORRUPT_ERROR","features":[3]},{"name":"STATUS_FILE_DELETED","features":[3]},{"name":"STATUS_FILE_ENCRYPTED","features":[3]},{"name":"STATUS_FILE_FORCED_CLOSED","features":[3]},{"name":"STATUS_FILE_HANDLE_REVOKED","features":[3]},{"name":"STATUS_FILE_IDENTITY_NOT_PERSISTENT","features":[3]},{"name":"STATUS_FILE_INVALID","features":[3]},{"name":"STATUS_FILE_IS_A_DIRECTORY","features":[3]},{"name":"STATUS_FILE_IS_OFFLINE","features":[3]},{"name":"STATUS_FILE_LOCKED_WITH_ONLY_READERS","features":[3]},{"name":"STATUS_FILE_LOCKED_WITH_WRITERS","features":[3]},{"name":"STATUS_FILE_LOCK_CONFLICT","features":[3]},{"name":"STATUS_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[3]},{"name":"STATUS_FILE_NOT_AVAILABLE","features":[3]},{"name":"STATUS_FILE_NOT_ENCRYPTED","features":[3]},{"name":"STATUS_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_FILE_PROTECTED_UNDER_DPL","features":[3]},{"name":"STATUS_FILE_RENAMED","features":[3]},{"name":"STATUS_FILE_SNAP_INVALID_PARAMETER","features":[3]},{"name":"STATUS_FILE_SNAP_IN_PROGRESS","features":[3]},{"name":"STATUS_FILE_SNAP_IO_NOT_COORDINATED","features":[3]},{"name":"STATUS_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_FILE_SNAP_UNEXPECTED_ERROR","features":[3]},{"name":"STATUS_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_FILE_SYSTEM_LIMITATION","features":[3]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[3]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[3]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[3]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[3]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[3]},{"name":"STATUS_FILE_TOO_LARGE","features":[3]},{"name":"STATUS_FIRMWARE_IMAGE_INVALID","features":[3]},{"name":"STATUS_FIRMWARE_SLOT_INVALID","features":[3]},{"name":"STATUS_FIRMWARE_UPDATED","features":[3]},{"name":"STATUS_FLOATED_SECTION","features":[3]},{"name":"STATUS_FLOAT_DENORMAL_OPERAND","features":[3]},{"name":"STATUS_FLOAT_DIVIDE_BY_ZERO","features":[3]},{"name":"STATUS_FLOAT_INEXACT_RESULT","features":[3]},{"name":"STATUS_FLOAT_INVALID_OPERATION","features":[3]},{"name":"STATUS_FLOAT_MULTIPLE_FAULTS","features":[3]},{"name":"STATUS_FLOAT_MULTIPLE_TRAPS","features":[3]},{"name":"STATUS_FLOAT_OVERFLOW","features":[3]},{"name":"STATUS_FLOAT_STACK_CHECK","features":[3]},{"name":"STATUS_FLOAT_UNDERFLOW","features":[3]},{"name":"STATUS_FLOPPY_BAD_REGISTERS","features":[3]},{"name":"STATUS_FLOPPY_ID_MARK_NOT_FOUND","features":[3]},{"name":"STATUS_FLOPPY_UNKNOWN_ERROR","features":[3]},{"name":"STATUS_FLOPPY_VOLUME","features":[3]},{"name":"STATUS_FLOPPY_WRONG_CYLINDER","features":[3]},{"name":"STATUS_FLT_ALREADY_ENLISTED","features":[3]},{"name":"STATUS_FLT_BUFFER_TOO_SMALL","features":[3]},{"name":"STATUS_FLT_CBDQ_DISABLED","features":[3]},{"name":"STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[3]},{"name":"STATUS_FLT_CONTEXT_ALREADY_DEFINED","features":[3]},{"name":"STATUS_FLT_CONTEXT_ALREADY_LINKED","features":[3]},{"name":"STATUS_FLT_DELETING_OBJECT","features":[3]},{"name":"STATUS_FLT_DISALLOW_FAST_IO","features":[3]},{"name":"STATUS_FLT_DISALLOW_FSFILTER_IO","features":[3]},{"name":"STATUS_FLT_DO_NOT_ATTACH","features":[3]},{"name":"STATUS_FLT_DO_NOT_DETACH","features":[3]},{"name":"STATUS_FLT_DUPLICATE_ENTRY","features":[3]},{"name":"STATUS_FLT_FILTER_NOT_FOUND","features":[3]},{"name":"STATUS_FLT_FILTER_NOT_READY","features":[3]},{"name":"STATUS_FLT_INSTANCE_ALTITUDE_COLLISION","features":[3]},{"name":"STATUS_FLT_INSTANCE_NAME_COLLISION","features":[3]},{"name":"STATUS_FLT_INSTANCE_NOT_FOUND","features":[3]},{"name":"STATUS_FLT_INTERNAL_ERROR","features":[3]},{"name":"STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[3]},{"name":"STATUS_FLT_INVALID_CONTEXT_REGISTRATION","features":[3]},{"name":"STATUS_FLT_INVALID_NAME_REQUEST","features":[3]},{"name":"STATUS_FLT_IO_COMPLETE","features":[3]},{"name":"STATUS_FLT_MUST_BE_NONPAGED_POOL","features":[3]},{"name":"STATUS_FLT_NAME_CACHE_MISS","features":[3]},{"name":"STATUS_FLT_NOT_INITIALIZED","features":[3]},{"name":"STATUS_FLT_NOT_SAFE_TO_POST_OPERATION","features":[3]},{"name":"STATUS_FLT_NO_DEVICE_OBJECT","features":[3]},{"name":"STATUS_FLT_NO_HANDLER_DEFINED","features":[3]},{"name":"STATUS_FLT_NO_WAITER_FOR_REPLY","features":[3]},{"name":"STATUS_FLT_POST_OPERATION_CLEANUP","features":[3]},{"name":"STATUS_FLT_REGISTRATION_BUSY","features":[3]},{"name":"STATUS_FLT_VOLUME_ALREADY_MOUNTED","features":[3]},{"name":"STATUS_FLT_VOLUME_NOT_FOUND","features":[3]},{"name":"STATUS_FLT_WCOS_NOT_SUPPORTED","features":[3]},{"name":"STATUS_FORMS_AUTH_REQUIRED","features":[3]},{"name":"STATUS_FOUND_OUT_OF_SCOPE","features":[3]},{"name":"STATUS_FREE_SPACE_TOO_FRAGMENTED","features":[3]},{"name":"STATUS_FREE_VM_NOT_AT_BASE","features":[3]},{"name":"STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[3]},{"name":"STATUS_FS_DRIVER_REQUIRED","features":[3]},{"name":"STATUS_FS_GUID_MISMATCH","features":[3]},{"name":"STATUS_FS_METADATA_INCONSISTENT","features":[3]},{"name":"STATUS_FT_DI_SCAN_REQUIRED","features":[3]},{"name":"STATUS_FT_MISSING_MEMBER","features":[3]},{"name":"STATUS_FT_ORPHANING","features":[3]},{"name":"STATUS_FT_READ_FAILURE","features":[3]},{"name":"STATUS_FT_READ_FROM_COPY","features":[3]},{"name":"STATUS_FT_READ_FROM_COPY_FAILURE","features":[3]},{"name":"STATUS_FT_READ_RECOVERY_FROM_BACKUP","features":[3]},{"name":"STATUS_FT_WRITE_FAILURE","features":[3]},{"name":"STATUS_FT_WRITE_RECOVERY","features":[3]},{"name":"STATUS_FULLSCREEN_MODE","features":[3]},{"name":"STATUS_FVE_ACTION_NOT_ALLOWED","features":[3]},{"name":"STATUS_FVE_AUTH_INVALID_APPLICATION","features":[3]},{"name":"STATUS_FVE_AUTH_INVALID_CONFIG","features":[3]},{"name":"STATUS_FVE_BAD_DATA","features":[3]},{"name":"STATUS_FVE_BAD_INFORMATION","features":[3]},{"name":"STATUS_FVE_BAD_METADATA_POINTER","features":[3]},{"name":"STATUS_FVE_BAD_PARTITION_SIZE","features":[3]},{"name":"STATUS_FVE_CONV_READ_ERROR","features":[3]},{"name":"STATUS_FVE_CONV_RECOVERY_FAILED","features":[3]},{"name":"STATUS_FVE_CONV_WRITE_ERROR","features":[3]},{"name":"STATUS_FVE_DATASET_FULL","features":[3]},{"name":"STATUS_FVE_DEBUGGER_ENABLED","features":[3]},{"name":"STATUS_FVE_DEVICE_LOCKEDOUT","features":[3]},{"name":"STATUS_FVE_DRY_RUN_FAILED","features":[3]},{"name":"STATUS_FVE_EDRIVE_BAND_ENUMERATION_FAILED","features":[3]},{"name":"STATUS_FVE_EDRIVE_DRY_RUN_FAILED","features":[3]},{"name":"STATUS_FVE_ENH_PIN_INVALID","features":[3]},{"name":"STATUS_FVE_FAILED_AUTHENTICATION","features":[3]},{"name":"STATUS_FVE_FAILED_SECTOR_SIZE","features":[3]},{"name":"STATUS_FVE_FAILED_WRONG_FS","features":[3]},{"name":"STATUS_FVE_FS_MOUNTED","features":[3]},{"name":"STATUS_FVE_FS_NOT_EXTENDED","features":[3]},{"name":"STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[3]},{"name":"STATUS_FVE_INVALID_DATUM_TYPE","features":[3]},{"name":"STATUS_FVE_KEYFILE_INVALID","features":[3]},{"name":"STATUS_FVE_KEYFILE_NOT_FOUND","features":[3]},{"name":"STATUS_FVE_KEYFILE_NO_VMK","features":[3]},{"name":"STATUS_FVE_LOCKED_VOLUME","features":[3]},{"name":"STATUS_FVE_METADATA_FULL","features":[3]},{"name":"STATUS_FVE_MOR_FAILED","features":[3]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CLUSTER","features":[3]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK","features":[3]},{"name":"STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[3]},{"name":"STATUS_FVE_NOT_DATA_VOLUME","features":[3]},{"name":"STATUS_FVE_NOT_DE_VOLUME","features":[3]},{"name":"STATUS_FVE_NOT_ENCRYPTED","features":[3]},{"name":"STATUS_FVE_NOT_OS_VOLUME","features":[3]},{"name":"STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY","features":[3]},{"name":"STATUS_FVE_NO_FEATURE_LICENSE","features":[3]},{"name":"STATUS_FVE_NO_LICENSE","features":[3]},{"name":"STATUS_FVE_OLD_METADATA_COPY","features":[3]},{"name":"STATUS_FVE_OSV_KSR_NOT_ALLOWED","features":[3]},{"name":"STATUS_FVE_OVERLAPPED_UPDATE","features":[3]},{"name":"STATUS_FVE_PARTIAL_METADATA","features":[3]},{"name":"STATUS_FVE_PIN_INVALID","features":[3]},{"name":"STATUS_FVE_POLICY_ON_RDV_EXCLUSION_LIST","features":[3]},{"name":"STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[3]},{"name":"STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED","features":[3]},{"name":"STATUS_FVE_PROTECTION_DISABLED","features":[3]},{"name":"STATUS_FVE_RAW_ACCESS","features":[3]},{"name":"STATUS_FVE_RAW_BLOCKED","features":[3]},{"name":"STATUS_FVE_REBOOT_REQUIRED","features":[3]},{"name":"STATUS_FVE_SECUREBOOT_CONFIG_CHANGE","features":[3]},{"name":"STATUS_FVE_SECUREBOOT_DISABLED","features":[3]},{"name":"STATUS_FVE_TOO_SMALL","features":[3]},{"name":"STATUS_FVE_TPM_DISABLED","features":[3]},{"name":"STATUS_FVE_TPM_INVALID_PCR","features":[3]},{"name":"STATUS_FVE_TPM_NO_VMK","features":[3]},{"name":"STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO","features":[3]},{"name":"STATUS_FVE_TRANSIENT_STATE","features":[3]},{"name":"STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG","features":[3]},{"name":"STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[3]},{"name":"STATUS_FVE_VOLUME_NOT_BOUND","features":[3]},{"name":"STATUS_FVE_VOLUME_TOO_SMALL","features":[3]},{"name":"STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE","features":[3]},{"name":"STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[3]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER","features":[3]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[3]},{"name":"STATUS_FWP_ALREADY_EXISTS","features":[3]},{"name":"STATUS_FWP_BUILTIN_OBJECT","features":[3]},{"name":"STATUS_FWP_CALLOUT_NOTIFICATION_FAILED","features":[3]},{"name":"STATUS_FWP_CALLOUT_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_CANNOT_PEND","features":[3]},{"name":"STATUS_FWP_CONDITION_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_CONNECTIONS_DISABLED","features":[3]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[3]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[3]},{"name":"STATUS_FWP_DROP_NOICMP","features":[3]},{"name":"STATUS_FWP_DUPLICATE_AUTH_METHOD","features":[3]},{"name":"STATUS_FWP_DUPLICATE_CONDITION","features":[3]},{"name":"STATUS_FWP_DUPLICATE_KEYMOD","features":[3]},{"name":"STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS","features":[3]},{"name":"STATUS_FWP_EM_NOT_SUPPORTED","features":[3]},{"name":"STATUS_FWP_FILTER_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_IKEEXT_NOT_RUNNING","features":[3]},{"name":"STATUS_FWP_INCOMPATIBLE_AUTH_METHOD","features":[3]},{"name":"STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM","features":[3]},{"name":"STATUS_FWP_INCOMPATIBLE_DH_GROUP","features":[3]},{"name":"STATUS_FWP_INCOMPATIBLE_LAYER","features":[3]},{"name":"STATUS_FWP_INCOMPATIBLE_SA_STATE","features":[3]},{"name":"STATUS_FWP_INCOMPATIBLE_TXN","features":[3]},{"name":"STATUS_FWP_INJECT_HANDLE_CLOSING","features":[3]},{"name":"STATUS_FWP_INJECT_HANDLE_STALE","features":[3]},{"name":"STATUS_FWP_INVALID_ACTION_TYPE","features":[3]},{"name":"STATUS_FWP_INVALID_AUTH_TRANSFORM","features":[3]},{"name":"STATUS_FWP_INVALID_CIPHER_TRANSFORM","features":[3]},{"name":"STATUS_FWP_INVALID_DNS_NAME","features":[3]},{"name":"STATUS_FWP_INVALID_ENUMERATOR","features":[3]},{"name":"STATUS_FWP_INVALID_FLAGS","features":[3]},{"name":"STATUS_FWP_INVALID_INTERVAL","features":[3]},{"name":"STATUS_FWP_INVALID_NET_MASK","features":[3]},{"name":"STATUS_FWP_INVALID_PARAMETER","features":[3]},{"name":"STATUS_FWP_INVALID_RANGE","features":[3]},{"name":"STATUS_FWP_INVALID_TRANSFORM_COMBINATION","features":[3]},{"name":"STATUS_FWP_INVALID_TUNNEL_ENDPOINT","features":[3]},{"name":"STATUS_FWP_INVALID_WEIGHT","features":[3]},{"name":"STATUS_FWP_IN_USE","features":[3]},{"name":"STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[3]},{"name":"STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED","features":[3]},{"name":"STATUS_FWP_KM_CLIENTS_ONLY","features":[3]},{"name":"STATUS_FWP_L2_DRIVER_NOT_READY","features":[3]},{"name":"STATUS_FWP_LAYER_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_LIFETIME_MISMATCH","features":[3]},{"name":"STATUS_FWP_MATCH_TYPE_MISMATCH","features":[3]},{"name":"STATUS_FWP_NET_EVENTS_DISABLED","features":[3]},{"name":"STATUS_FWP_NEVER_MATCH","features":[3]},{"name":"STATUS_FWP_NOTIFICATION_DROPPED","features":[3]},{"name":"STATUS_FWP_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_NO_TXN_IN_PROGRESS","features":[3]},{"name":"STATUS_FWP_NULL_DISPLAY_NAME","features":[3]},{"name":"STATUS_FWP_NULL_POINTER","features":[3]},{"name":"STATUS_FWP_OUT_OF_BOUNDS","features":[3]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_MISMATCH","features":[3]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_PROVIDER_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_RESERVED","features":[3]},{"name":"STATUS_FWP_SESSION_ABORTED","features":[3]},{"name":"STATUS_FWP_STILL_ON","features":[3]},{"name":"STATUS_FWP_SUBLAYER_NOT_FOUND","features":[3]},{"name":"STATUS_FWP_TCPIP_NOT_READY","features":[3]},{"name":"STATUS_FWP_TIMEOUT","features":[3]},{"name":"STATUS_FWP_TOO_MANY_CALLOUTS","features":[3]},{"name":"STATUS_FWP_TOO_MANY_SUBLAYERS","features":[3]},{"name":"STATUS_FWP_TRAFFIC_MISMATCH","features":[3]},{"name":"STATUS_FWP_TXN_ABORTED","features":[3]},{"name":"STATUS_FWP_TXN_IN_PROGRESS","features":[3]},{"name":"STATUS_FWP_TYPE_MISMATCH","features":[3]},{"name":"STATUS_FWP_WRONG_SESSION","features":[3]},{"name":"STATUS_FWP_ZERO_LENGTH_ARRAY","features":[3]},{"name":"STATUS_GDI_HANDLE_LEAK","features":[3]},{"name":"STATUS_GENERIC_COMMAND_FAILED","features":[3]},{"name":"STATUS_GENERIC_NOT_MAPPED","features":[3]},{"name":"STATUS_GHOSTED","features":[3]},{"name":"STATUS_GPIO_CLIENT_INFORMATION_INVALID","features":[3]},{"name":"STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[3]},{"name":"STATUS_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[3]},{"name":"STATUS_GPIO_INVALID_REGISTRATION_PACKET","features":[3]},{"name":"STATUS_GPIO_OPERATION_DENIED","features":[3]},{"name":"STATUS_GPIO_VERSION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRACEFUL_DISCONNECT","features":[3]},{"name":"STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[3]},{"name":"STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[3]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[3]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[3]},{"name":"STATUS_GRAPHICS_ADAPTER_WAS_RESET","features":[3]},{"name":"STATUS_GRAPHICS_ALLOCATION_BUSY","features":[3]},{"name":"STATUS_GRAPHICS_ALLOCATION_CLOSED","features":[3]},{"name":"STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[3]},{"name":"STATUS_GRAPHICS_ALLOCATION_INVALID","features":[3]},{"name":"STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[3]},{"name":"STATUS_GRAPHICS_CANNOTCOLORCONVERT","features":[3]},{"name":"STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[3]},{"name":"STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[3]},{"name":"STATUS_GRAPHICS_CANT_LOCK_MEMORY","features":[3]},{"name":"STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[3]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[3]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[3]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[3]},{"name":"STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[3]},{"name":"STATUS_GRAPHICS_COPP_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_DATASET_IS_EMPTY","features":[3]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING","features":[3]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_DATA","features":[3]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[3]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[3]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[3]},{"name":"STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[3]},{"name":"STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[3]},{"name":"STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[3]},{"name":"STATUS_GRAPHICS_DRIVER_MISMATCH","features":[3]},{"name":"STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[3]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[3]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[3]},{"name":"STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[3]},{"name":"STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[3]},{"name":"STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[3]},{"name":"STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[3]},{"name":"STATUS_GRAPHICS_I2C_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[3]},{"name":"STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[3]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[3]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[3]},{"name":"STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[3]},{"name":"STATUS_GRAPHICS_INTERNAL_ERROR","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_ACTIVE_REGION","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_CLIENT_TYPE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_COLORBASIS","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_DRIVER_MODEL","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_FREQUENCY","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_GAMMA_RAMP","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_PIXELFORMAT","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_POINTER","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_STRIDE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_TOTAL_REGION","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[3]},{"name":"STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[3]},{"name":"STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[3]},{"name":"STATUS_GRAPHICS_LEADLINK_START_DEFERRED","features":[3]},{"name":"STATUS_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[3]},{"name":"STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[3]},{"name":"STATUS_GRAPHICS_MCA_INTERNAL_ERROR","features":[3]},{"name":"STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[3]},{"name":"STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[3]},{"name":"STATUS_GRAPHICS_MODE_NOT_IN_MODESET","features":[3]},{"name":"STATUS_GRAPHICS_MODE_NOT_PINNED","features":[3]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[3]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[3]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[3]},{"name":"STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[3]},{"name":"STATUS_GRAPHICS_MONITOR_NOT_CONNECTED","features":[3]},{"name":"STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[3]},{"name":"STATUS_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[3]},{"name":"STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[3]},{"name":"STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[3]},{"name":"STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[3]},{"name":"STATUS_GRAPHICS_NO_ACTIVE_VIDPN","features":[3]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[3]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[3]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[3]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[3]},{"name":"STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[3]},{"name":"STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[3]},{"name":"STATUS_GRAPHICS_NO_PREFERRED_MODE","features":[3]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[3]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[3]},{"name":"STATUS_GRAPHICS_NO_VIDEO_MEMORY","features":[3]},{"name":"STATUS_GRAPHICS_NO_VIDPNMGR","features":[3]},{"name":"STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[3]},{"name":"STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[3]},{"name":"STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[3]},{"name":"STATUS_GRAPHICS_OPM_INTERNAL_ERROR","features":[3]},{"name":"STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[3]},{"name":"STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[3]},{"name":"STATUS_GRAPHICS_OPM_INVALID_HANDLE","features":[3]},{"name":"STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[3]},{"name":"STATUS_GRAPHICS_OPM_INVALID_SRM","features":[3]},{"name":"STATUS_GRAPHICS_OPM_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST","features":[3]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[3]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[3]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[3]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[3]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[3]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS","features":[3]},{"name":"STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[3]},{"name":"STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[3]},{"name":"STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[3]},{"name":"STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[3]},{"name":"STATUS_GRAPHICS_PARTIAL_DATA_POPULATED","features":[3]},{"name":"STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[3]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[3]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[3]},{"name":"STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[3]},{"name":"STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[3]},{"name":"STATUS_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[3]},{"name":"STATUS_GRAPHICS_PRESENT_DENIED","features":[3]},{"name":"STATUS_GRAPHICS_PRESENT_INVALID_WINDOW","features":[3]},{"name":"STATUS_GRAPHICS_PRESENT_MODE_CHANGED","features":[3]},{"name":"STATUS_GRAPHICS_PRESENT_OCCLUDED","features":[3]},{"name":"STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[3]},{"name":"STATUS_GRAPHICS_PRESENT_UNOCCLUDED","features":[3]},{"name":"STATUS_GRAPHICS_PVP_HFS_FAILED","features":[3]},{"name":"STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[3]},{"name":"STATUS_GRAPHICS_RESOURCES_NOT_RELATED","features":[3]},{"name":"STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[3]},{"name":"STATUS_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[3]},{"name":"STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[3]},{"name":"STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[3]},{"name":"STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[3]},{"name":"STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[3]},{"name":"STATUS_GRAPHICS_STALE_MODESET","features":[3]},{"name":"STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[3]},{"name":"STATUS_GRAPHICS_START_DEFERRED","features":[3]},{"name":"STATUS_GRAPHICS_TARGET_ALREADY_IN_SET","features":[3]},{"name":"STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[3]},{"name":"STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[3]},{"name":"STATUS_GRAPHICS_TOO_MANY_REFERENCES","features":[3]},{"name":"STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[3]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_LATER","features":[3]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_NOW","features":[3]},{"name":"STATUS_GRAPHICS_UAB_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[3]},{"name":"STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[3]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[3]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_VAIL_STATE_CHANGED","features":[3]},{"name":"STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[3]},{"name":"STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[3]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[3]},{"name":"STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[3]},{"name":"STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[3]},{"name":"STATUS_GROUP_EXISTS","features":[3]},{"name":"STATUS_GUARD_PAGE_VIOLATION","features":[3]},{"name":"STATUS_GUIDS_EXHAUSTED","features":[3]},{"name":"STATUS_GUID_SUBSTITUTION_MADE","features":[3]},{"name":"STATUS_HANDLES_CLOSED","features":[3]},{"name":"STATUS_HANDLE_NOT_CLOSABLE","features":[3]},{"name":"STATUS_HANDLE_NO_LONGER_VALID","features":[3]},{"name":"STATUS_HANDLE_REVOKED","features":[3]},{"name":"STATUS_HARDWARE_MEMORY_ERROR","features":[3]},{"name":"STATUS_HASH_NOT_PRESENT","features":[3]},{"name":"STATUS_HASH_NOT_SUPPORTED","features":[3]},{"name":"STATUS_HAS_SYSTEM_CRITICAL_FILES","features":[3]},{"name":"STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[3]},{"name":"STATUS_HDAUDIO_EMPTY_CONNECTION_LIST","features":[3]},{"name":"STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[3]},{"name":"STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[3]},{"name":"STATUS_HEAP_CORRUPTION","features":[3]},{"name":"STATUS_HEURISTIC_DAMAGE_POSSIBLE","features":[3]},{"name":"STATUS_HIBERNATED","features":[3]},{"name":"STATUS_HIBERNATION_FAILURE","features":[3]},{"name":"STATUS_HIVE_UNLOADED","features":[3]},{"name":"STATUS_HMAC_NOT_SUPPORTED","features":[3]},{"name":"STATUS_HOPLIMIT_EXCEEDED","features":[3]},{"name":"STATUS_HOST_DOWN","features":[3]},{"name":"STATUS_HOST_UNREACHABLE","features":[3]},{"name":"STATUS_HUNG_DISPLAY_DRIVER_THREAD","features":[3]},{"name":"STATUS_HV_ACCESS_DENIED","features":[3]},{"name":"STATUS_HV_ACKNOWLEDGED","features":[3]},{"name":"STATUS_HV_CALL_PENDING","features":[3]},{"name":"STATUS_HV_CPUID_FEATURE_VALIDATION_ERROR","features":[3]},{"name":"STATUS_HV_CPUID_XSAVE_FEATURE_VALIDATION_ERROR","features":[3]},{"name":"STATUS_HV_DEVICE_NOT_IN_DOMAIN","features":[3]},{"name":"STATUS_HV_EVENT_BUFFER_ALREADY_FREED","features":[3]},{"name":"STATUS_HV_FEATURE_UNAVAILABLE","features":[3]},{"name":"STATUS_HV_INACTIVE","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_BUFFER","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_BUFFERS","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY","features":[3]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[3]},{"name":"STATUS_HV_INVALID_ALIGNMENT","features":[3]},{"name":"STATUS_HV_INVALID_CONNECTION_ID","features":[3]},{"name":"STATUS_HV_INVALID_CPU_GROUP_ID","features":[3]},{"name":"STATUS_HV_INVALID_CPU_GROUP_STATE","features":[3]},{"name":"STATUS_HV_INVALID_DEVICE_ID","features":[3]},{"name":"STATUS_HV_INVALID_DEVICE_STATE","features":[3]},{"name":"STATUS_HV_INVALID_HYPERCALL_CODE","features":[3]},{"name":"STATUS_HV_INVALID_HYPERCALL_INPUT","features":[3]},{"name":"STATUS_HV_INVALID_LP_INDEX","features":[3]},{"name":"STATUS_HV_INVALID_PARAMETER","features":[3]},{"name":"STATUS_HV_INVALID_PARTITION_ID","features":[3]},{"name":"STATUS_HV_INVALID_PARTITION_STATE","features":[3]},{"name":"STATUS_HV_INVALID_PORT_ID","features":[3]},{"name":"STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[3]},{"name":"STATUS_HV_INVALID_REGISTER_VALUE","features":[3]},{"name":"STATUS_HV_INVALID_SAVE_RESTORE_STATE","features":[3]},{"name":"STATUS_HV_INVALID_SYNIC_STATE","features":[3]},{"name":"STATUS_HV_INVALID_VP_INDEX","features":[3]},{"name":"STATUS_HV_INVALID_VP_STATE","features":[3]},{"name":"STATUS_HV_INVALID_VTL_STATE","features":[3]},{"name":"STATUS_HV_MSR_ACCESS_FAILED","features":[3]},{"name":"STATUS_HV_NESTED_VM_EXIT","features":[3]},{"name":"STATUS_HV_NOT_ACKNOWLEDGED","features":[3]},{"name":"STATUS_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[3]},{"name":"STATUS_HV_NOT_PRESENT","features":[3]},{"name":"STATUS_HV_NO_DATA","features":[3]},{"name":"STATUS_HV_NO_RESOURCES","features":[3]},{"name":"STATUS_HV_NX_NOT_DETECTED","features":[3]},{"name":"STATUS_HV_OBJECT_IN_USE","features":[3]},{"name":"STATUS_HV_OPERATION_DENIED","features":[3]},{"name":"STATUS_HV_OPERATION_FAILED","features":[3]},{"name":"STATUS_HV_PAGE_REQUEST_INVALID","features":[3]},{"name":"STATUS_HV_PARTITION_TOO_DEEP","features":[3]},{"name":"STATUS_HV_PENDING_PAGE_REQUESTS","features":[3]},{"name":"STATUS_HV_PROCESSOR_STARTUP_TIMEOUT","features":[3]},{"name":"STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[3]},{"name":"STATUS_HV_SMX_ENABLED","features":[3]},{"name":"STATUS_HV_UNKNOWN_PROPERTY","features":[3]},{"name":"STATUS_ILLEGAL_CHARACTER","features":[3]},{"name":"STATUS_ILLEGAL_DLL_RELOCATION","features":[3]},{"name":"STATUS_ILLEGAL_ELEMENT_ADDRESS","features":[3]},{"name":"STATUS_ILLEGAL_FLOAT_CONTEXT","features":[3]},{"name":"STATUS_ILLEGAL_FUNCTION","features":[3]},{"name":"STATUS_ILLEGAL_INSTRUCTION","features":[3]},{"name":"STATUS_ILL_FORMED_PASSWORD","features":[3]},{"name":"STATUS_ILL_FORMED_SERVICE_ENTRY","features":[3]},{"name":"STATUS_IMAGE_ALREADY_LOADED","features":[3]},{"name":"STATUS_IMAGE_ALREADY_LOADED_AS_DLL","features":[3]},{"name":"STATUS_IMAGE_AT_DIFFERENT_BASE","features":[3]},{"name":"STATUS_IMAGE_CERT_EXPIRED","features":[3]},{"name":"STATUS_IMAGE_CERT_REVOKED","features":[3]},{"name":"STATUS_IMAGE_CHECKSUM_MISMATCH","features":[3]},{"name":"STATUS_IMAGE_LOADED_AS_PATCH_IMAGE","features":[3]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH","features":[3]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[3]},{"name":"STATUS_IMAGE_MP_UP_MISMATCH","features":[3]},{"name":"STATUS_IMAGE_NOT_AT_BASE","features":[3]},{"name":"STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[3]},{"name":"STATUS_IMPLEMENTATION_LIMIT","features":[3]},{"name":"STATUS_INCOMPATIBLE_DRIVER_BLOCKED","features":[3]},{"name":"STATUS_INCOMPATIBLE_FILE_MAP","features":[3]},{"name":"STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[3]},{"name":"STATUS_INCORRECT_ACCOUNT_TYPE","features":[3]},{"name":"STATUS_INDEX_OUT_OF_BOUNDS","features":[3]},{"name":"STATUS_INDOUBT_TRANSACTIONS_EXIST","features":[3]},{"name":"STATUS_INFO_LENGTH_MISMATCH","features":[3]},{"name":"STATUS_INSTANCE_NOT_AVAILABLE","features":[3]},{"name":"STATUS_INSTRUCTION_MISALIGNMENT","features":[3]},{"name":"STATUS_INSUFFICIENT_LOGON_INFO","features":[3]},{"name":"STATUS_INSUFFICIENT_NVRAM_RESOURCES","features":[3]},{"name":"STATUS_INSUFFICIENT_POWER","features":[3]},{"name":"STATUS_INSUFFICIENT_RESOURCES","features":[3]},{"name":"STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[3]},{"name":"STATUS_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[3]},{"name":"STATUS_INSUFF_SERVER_RESOURCES","features":[3]},{"name":"STATUS_INTEGER_DIVIDE_BY_ZERO","features":[3]},{"name":"STATUS_INTEGER_OVERFLOW","features":[3]},{"name":"STATUS_INTERMIXED_KERNEL_EA_OPERATION","features":[3]},{"name":"STATUS_INTERNAL_DB_CORRUPTION","features":[3]},{"name":"STATUS_INTERNAL_DB_ERROR","features":[3]},{"name":"STATUS_INTERNAL_ERROR","features":[3]},{"name":"STATUS_INTERRUPTED","features":[3]},{"name":"STATUS_INTERRUPT_STILL_CONNECTED","features":[3]},{"name":"STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[3]},{"name":"STATUS_INVALID_ACCOUNT_NAME","features":[3]},{"name":"STATUS_INVALID_ACE_CONDITION","features":[3]},{"name":"STATUS_INVALID_ACL","features":[3]},{"name":"STATUS_INVALID_ADDRESS","features":[3]},{"name":"STATUS_INVALID_ADDRESS_COMPONENT","features":[3]},{"name":"STATUS_INVALID_ADDRESS_WILDCARD","features":[3]},{"name":"STATUS_INVALID_BLOCK_LENGTH","features":[3]},{"name":"STATUS_INVALID_BUFFER_SIZE","features":[3]},{"name":"STATUS_INVALID_CAP","features":[3]},{"name":"STATUS_INVALID_CID","features":[3]},{"name":"STATUS_INVALID_COMPUTER_NAME","features":[3]},{"name":"STATUS_INVALID_CONFIG_VALUE","features":[3]},{"name":"STATUS_INVALID_CONNECTION","features":[3]},{"name":"STATUS_INVALID_CRUNTIME_PARAMETER","features":[3]},{"name":"STATUS_INVALID_DEVICE_OBJECT_PARAMETER","features":[3]},{"name":"STATUS_INVALID_DEVICE_REQUEST","features":[3]},{"name":"STATUS_INVALID_DEVICE_STATE","features":[3]},{"name":"STATUS_INVALID_DISPOSITION","features":[3]},{"name":"STATUS_INVALID_DOMAIN_ROLE","features":[3]},{"name":"STATUS_INVALID_DOMAIN_STATE","features":[3]},{"name":"STATUS_INVALID_EA_FLAG","features":[3]},{"name":"STATUS_INVALID_EA_NAME","features":[3]},{"name":"STATUS_INVALID_EXCEPTION_HANDLER","features":[3]},{"name":"STATUS_INVALID_FIELD_IN_PARAMETER_LIST","features":[3]},{"name":"STATUS_INVALID_FILE_FOR_SECTION","features":[3]},{"name":"STATUS_INVALID_GROUP_ATTRIBUTES","features":[3]},{"name":"STATUS_INVALID_HANDLE","features":[3]},{"name":"STATUS_INVALID_HW_PROFILE","features":[3]},{"name":"STATUS_INVALID_IDN_NORMALIZATION","features":[3]},{"name":"STATUS_INVALID_ID_AUTHORITY","features":[3]},{"name":"STATUS_INVALID_IMAGE_FORMAT","features":[3]},{"name":"STATUS_INVALID_IMAGE_HASH","features":[3]},{"name":"STATUS_INVALID_IMAGE_LE_FORMAT","features":[3]},{"name":"STATUS_INVALID_IMAGE_NE_FORMAT","features":[3]},{"name":"STATUS_INVALID_IMAGE_NOT_MZ","features":[3]},{"name":"STATUS_INVALID_IMAGE_PROTECT","features":[3]},{"name":"STATUS_INVALID_IMAGE_WIN_16","features":[3]},{"name":"STATUS_INVALID_IMAGE_WIN_32","features":[3]},{"name":"STATUS_INVALID_IMAGE_WIN_64","features":[3]},{"name":"STATUS_INVALID_IMPORT_OF_NON_DLL","features":[3]},{"name":"STATUS_INVALID_INFO_CLASS","features":[3]},{"name":"STATUS_INVALID_INITIATOR_TARGET_PATH","features":[3]},{"name":"STATUS_INVALID_KERNEL_INFO_VERSION","features":[3]},{"name":"STATUS_INVALID_LABEL","features":[3]},{"name":"STATUS_INVALID_LDT_DESCRIPTOR","features":[3]},{"name":"STATUS_INVALID_LDT_OFFSET","features":[3]},{"name":"STATUS_INVALID_LDT_SIZE","features":[3]},{"name":"STATUS_INVALID_LEVEL","features":[3]},{"name":"STATUS_INVALID_LOCK_RANGE","features":[3]},{"name":"STATUS_INVALID_LOCK_SEQUENCE","features":[3]},{"name":"STATUS_INVALID_LOGON_HOURS","features":[3]},{"name":"STATUS_INVALID_LOGON_TYPE","features":[3]},{"name":"STATUS_INVALID_MEMBER","features":[3]},{"name":"STATUS_INVALID_MESSAGE","features":[3]},{"name":"STATUS_INVALID_NETWORK_RESPONSE","features":[3]},{"name":"STATUS_INVALID_OFFSET_ALIGNMENT","features":[3]},{"name":"STATUS_INVALID_OPLOCK_PROTOCOL","features":[3]},{"name":"STATUS_INVALID_OWNER","features":[3]},{"name":"STATUS_INVALID_PACKAGE_SID_LENGTH","features":[3]},{"name":"STATUS_INVALID_PAGE_PROTECTION","features":[3]},{"name":"STATUS_INVALID_PARAMETER","features":[3]},{"name":"STATUS_INVALID_PARAMETER_1","features":[3]},{"name":"STATUS_INVALID_PARAMETER_10","features":[3]},{"name":"STATUS_INVALID_PARAMETER_11","features":[3]},{"name":"STATUS_INVALID_PARAMETER_12","features":[3]},{"name":"STATUS_INVALID_PARAMETER_2","features":[3]},{"name":"STATUS_INVALID_PARAMETER_3","features":[3]},{"name":"STATUS_INVALID_PARAMETER_4","features":[3]},{"name":"STATUS_INVALID_PARAMETER_5","features":[3]},{"name":"STATUS_INVALID_PARAMETER_6","features":[3]},{"name":"STATUS_INVALID_PARAMETER_7","features":[3]},{"name":"STATUS_INVALID_PARAMETER_8","features":[3]},{"name":"STATUS_INVALID_PARAMETER_9","features":[3]},{"name":"STATUS_INVALID_PARAMETER_MIX","features":[3]},{"name":"STATUS_INVALID_PEP_INFO_VERSION","features":[3]},{"name":"STATUS_INVALID_PIPE_STATE","features":[3]},{"name":"STATUS_INVALID_PLUGPLAY_DEVICE_PATH","features":[3]},{"name":"STATUS_INVALID_PORT_ATTRIBUTES","features":[3]},{"name":"STATUS_INVALID_PORT_HANDLE","features":[3]},{"name":"STATUS_INVALID_PRIMARY_GROUP","features":[3]},{"name":"STATUS_INVALID_QUOTA_LOWER","features":[3]},{"name":"STATUS_INVALID_READ_MODE","features":[3]},{"name":"STATUS_INVALID_RUNLEVEL_SETTING","features":[3]},{"name":"STATUS_INVALID_SECURITY_DESCR","features":[3]},{"name":"STATUS_INVALID_SERVER_STATE","features":[3]},{"name":"STATUS_INVALID_SESSION","features":[3]},{"name":"STATUS_INVALID_SID","features":[3]},{"name":"STATUS_INVALID_SIGNATURE","features":[3]},{"name":"STATUS_INVALID_STATE_TRANSITION","features":[3]},{"name":"STATUS_INVALID_SUB_AUTHORITY","features":[3]},{"name":"STATUS_INVALID_SYSTEM_SERVICE","features":[3]},{"name":"STATUS_INVALID_TASK_INDEX","features":[3]},{"name":"STATUS_INVALID_TASK_NAME","features":[3]},{"name":"STATUS_INVALID_THREAD","features":[3]},{"name":"STATUS_INVALID_TOKEN","features":[3]},{"name":"STATUS_INVALID_TRANSACTION","features":[3]},{"name":"STATUS_INVALID_UNWIND_TARGET","features":[3]},{"name":"STATUS_INVALID_USER_BUFFER","features":[3]},{"name":"STATUS_INVALID_USER_PRINCIPAL_NAME","features":[3]},{"name":"STATUS_INVALID_VARIANT","features":[3]},{"name":"STATUS_INVALID_VIEW_SIZE","features":[3]},{"name":"STATUS_INVALID_VOLUME_LABEL","features":[3]},{"name":"STATUS_INVALID_WEIGHT","features":[3]},{"name":"STATUS_INVALID_WORKSTATION","features":[3]},{"name":"STATUS_IN_PAGE_ERROR","features":[3]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_BIG","features":[3]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_FULL","features":[3]},{"name":"STATUS_IORING_CORRUPT","features":[3]},{"name":"STATUS_IORING_REQUIRED_FLAG_NOT_SUPPORTED","features":[3]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_FULL","features":[3]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_TOO_BIG","features":[3]},{"name":"STATUS_IORING_SUBMIT_IN_PROGRESS","features":[3]},{"name":"STATUS_IORING_VERSION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_IO_DEVICE_ERROR","features":[3]},{"name":"STATUS_IO_DEVICE_INVALID_DATA","features":[3]},{"name":"STATUS_IO_OPERATION_TIMEOUT","features":[3]},{"name":"STATUS_IO_PREEMPTED","features":[3]},{"name":"STATUS_IO_PRIVILEGE_FAILED","features":[3]},{"name":"STATUS_IO_REISSUE_AS_CACHED","features":[3]},{"name":"STATUS_IO_REPARSE_DATA_INVALID","features":[3]},{"name":"STATUS_IO_REPARSE_TAG_INVALID","features":[3]},{"name":"STATUS_IO_REPARSE_TAG_MISMATCH","features":[3]},{"name":"STATUS_IO_REPARSE_TAG_NOT_HANDLED","features":[3]},{"name":"STATUS_IO_TIMEOUT","features":[3]},{"name":"STATUS_IO_UNALIGNED_WRITE","features":[3]},{"name":"STATUS_IPSEC_AUTH_FIREWALL_DROP","features":[3]},{"name":"STATUS_IPSEC_BAD_SPI","features":[3]},{"name":"STATUS_IPSEC_CLEAR_TEXT_DROP","features":[3]},{"name":"STATUS_IPSEC_DOSP_BLOCK","features":[3]},{"name":"STATUS_IPSEC_DOSP_INVALID_PACKET","features":[3]},{"name":"STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[3]},{"name":"STATUS_IPSEC_DOSP_MAX_ENTRIES","features":[3]},{"name":"STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[3]},{"name":"STATUS_IPSEC_DOSP_RECEIVED_MULTICAST","features":[3]},{"name":"STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[3]},{"name":"STATUS_IPSEC_INTEGRITY_CHECK_FAILED","features":[3]},{"name":"STATUS_IPSEC_INVALID_PACKET","features":[3]},{"name":"STATUS_IPSEC_QUEUE_OVERFLOW","features":[3]},{"name":"STATUS_IPSEC_REPLAY_CHECK_FAILED","features":[3]},{"name":"STATUS_IPSEC_SA_LIFETIME_EXPIRED","features":[3]},{"name":"STATUS_IPSEC_THROTTLE_DROP","features":[3]},{"name":"STATUS_IPSEC_WRONG_SA","features":[3]},{"name":"STATUS_IP_ADDRESS_CONFLICT1","features":[3]},{"name":"STATUS_IP_ADDRESS_CONFLICT2","features":[3]},{"name":"STATUS_ISSUING_CA_UNTRUSTED","features":[3]},{"name":"STATUS_ISSUING_CA_UNTRUSTED_KDC","features":[3]},{"name":"STATUS_JOB_NOT_EMPTY","features":[3]},{"name":"STATUS_JOB_NO_CONTAINER","features":[3]},{"name":"STATUS_JOURNAL_DELETE_IN_PROGRESS","features":[3]},{"name":"STATUS_JOURNAL_ENTRY_DELETED","features":[3]},{"name":"STATUS_JOURNAL_NOT_ACTIVE","features":[3]},{"name":"STATUS_KDC_CERT_EXPIRED","features":[3]},{"name":"STATUS_KDC_CERT_REVOKED","features":[3]},{"name":"STATUS_KDC_INVALID_REQUEST","features":[3]},{"name":"STATUS_KDC_UNABLE_TO_REFER","features":[3]},{"name":"STATUS_KDC_UNKNOWN_ETYPE","features":[3]},{"name":"STATUS_KERNEL_APC","features":[3]},{"name":"STATUS_KERNEL_EXECUTABLE_MEMORY_WRITE","features":[3]},{"name":"STATUS_KEY_DELETED","features":[3]},{"name":"STATUS_KEY_HAS_CHILDREN","features":[3]},{"name":"STATUS_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[3]},{"name":"STATUS_LAPS_LEGACY_SCHEMA_MISSING","features":[3]},{"name":"STATUS_LAPS_SCHEMA_MISSING","features":[3]},{"name":"STATUS_LAST_ADMIN","features":[3]},{"name":"STATUS_LICENSE_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_LICENSE_VIOLATION","features":[3]},{"name":"STATUS_LINK_FAILED","features":[3]},{"name":"STATUS_LINK_TIMEOUT","features":[3]},{"name":"STATUS_LM_CROSS_ENCRYPTION_REQUIRED","features":[3]},{"name":"STATUS_LOCAL_DISCONNECT","features":[3]},{"name":"STATUS_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_LOCAL_USER_SESSION_KEY","features":[3]},{"name":"STATUS_LOCK_NOT_GRANTED","features":[3]},{"name":"STATUS_LOGIN_TIME_RESTRICTION","features":[3]},{"name":"STATUS_LOGIN_WKSTA_RESTRICTION","features":[3]},{"name":"STATUS_LOGON_NOT_GRANTED","features":[3]},{"name":"STATUS_LOGON_SERVER_CONFLICT","features":[3]},{"name":"STATUS_LOGON_SESSION_COLLISION","features":[3]},{"name":"STATUS_LOGON_SESSION_EXISTS","features":[3]},{"name":"STATUS_LOG_APPENDED_FLUSH_FAILED","features":[3]},{"name":"STATUS_LOG_ARCHIVE_IN_PROGRESS","features":[3]},{"name":"STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[3]},{"name":"STATUS_LOG_BLOCKS_EXHAUSTED","features":[3]},{"name":"STATUS_LOG_BLOCK_INCOMPLETE","features":[3]},{"name":"STATUS_LOG_BLOCK_INVALID","features":[3]},{"name":"STATUS_LOG_BLOCK_VERSION","features":[3]},{"name":"STATUS_LOG_CANT_DELETE","features":[3]},{"name":"STATUS_LOG_CLIENT_ALREADY_REGISTERED","features":[3]},{"name":"STATUS_LOG_CLIENT_NOT_REGISTERED","features":[3]},{"name":"STATUS_LOG_CONTAINER_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_LOG_CONTAINER_OPEN_FAILED","features":[3]},{"name":"STATUS_LOG_CONTAINER_READ_FAILED","features":[3]},{"name":"STATUS_LOG_CONTAINER_STATE_INVALID","features":[3]},{"name":"STATUS_LOG_CONTAINER_WRITE_FAILED","features":[3]},{"name":"STATUS_LOG_CORRUPTION_DETECTED","features":[3]},{"name":"STATUS_LOG_DEDICATED","features":[3]},{"name":"STATUS_LOG_EPHEMERAL","features":[3]},{"name":"STATUS_LOG_FILE_FULL","features":[3]},{"name":"STATUS_LOG_FULL","features":[3]},{"name":"STATUS_LOG_FULL_HANDLER_IN_PROGRESS","features":[3]},{"name":"STATUS_LOG_GROWTH_FAILED","features":[3]},{"name":"STATUS_LOG_HARD_ERROR","features":[3]},{"name":"STATUS_LOG_INCONSISTENT_SECURITY","features":[3]},{"name":"STATUS_LOG_INVALID_RANGE","features":[3]},{"name":"STATUS_LOG_METADATA_CORRUPT","features":[3]},{"name":"STATUS_LOG_METADATA_FLUSH_FAILED","features":[3]},{"name":"STATUS_LOG_METADATA_INCONSISTENT","features":[3]},{"name":"STATUS_LOG_METADATA_INVALID","features":[3]},{"name":"STATUS_LOG_MULTIPLEXED","features":[3]},{"name":"STATUS_LOG_NOT_ENOUGH_CONTAINERS","features":[3]},{"name":"STATUS_LOG_NO_RESTART","features":[3]},{"name":"STATUS_LOG_PINNED","features":[3]},{"name":"STATUS_LOG_PINNED_ARCHIVE_TAIL","features":[3]},{"name":"STATUS_LOG_PINNED_RESERVATION","features":[3]},{"name":"STATUS_LOG_POLICY_ALREADY_INSTALLED","features":[3]},{"name":"STATUS_LOG_POLICY_CONFLICT","features":[3]},{"name":"STATUS_LOG_POLICY_INVALID","features":[3]},{"name":"STATUS_LOG_POLICY_NOT_INSTALLED","features":[3]},{"name":"STATUS_LOG_READ_CONTEXT_INVALID","features":[3]},{"name":"STATUS_LOG_READ_MODE_INVALID","features":[3]},{"name":"STATUS_LOG_RECORDS_RESERVED_INVALID","features":[3]},{"name":"STATUS_LOG_RECORD_NONEXISTENT","features":[3]},{"name":"STATUS_LOG_RESERVATION_INVALID","features":[3]},{"name":"STATUS_LOG_RESIZE_INVALID_SIZE","features":[3]},{"name":"STATUS_LOG_RESTART_INVALID","features":[3]},{"name":"STATUS_LOG_SECTOR_INVALID","features":[3]},{"name":"STATUS_LOG_SECTOR_PARITY_INVALID","features":[3]},{"name":"STATUS_LOG_SECTOR_REMAPPED","features":[3]},{"name":"STATUS_LOG_SPACE_RESERVED_INVALID","features":[3]},{"name":"STATUS_LOG_START_OF_LOG","features":[3]},{"name":"STATUS_LOG_STATE_INVALID","features":[3]},{"name":"STATUS_LOG_TAIL_INVALID","features":[3]},{"name":"STATUS_LONGJUMP","features":[3]},{"name":"STATUS_LOST_MODE_LOGON_RESTRICTION","features":[3]},{"name":"STATUS_LOST_WRITEBEHIND_DATA","features":[3]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[3]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[3]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[3]},{"name":"STATUS_LPAC_ACCESS_DENIED","features":[3]},{"name":"STATUS_LPC_HANDLE_COUNT_EXCEEDED","features":[3]},{"name":"STATUS_LPC_INVALID_CONNECTION_USAGE","features":[3]},{"name":"STATUS_LPC_RECEIVE_BUFFER_EXPECTED","features":[3]},{"name":"STATUS_LPC_REPLY_LOST","features":[3]},{"name":"STATUS_LPC_REQUESTS_NOT_ALLOWED","features":[3]},{"name":"STATUS_LUIDS_EXHAUSTED","features":[3]},{"name":"STATUS_MAGAZINE_NOT_PRESENT","features":[3]},{"name":"STATUS_MAPPED_ALIGNMENT","features":[3]},{"name":"STATUS_MAPPED_FILE_SIZE_ZERO","features":[3]},{"name":"STATUS_MARKED_TO_DISALLOW_WRITES","features":[3]},{"name":"STATUS_MARSHALL_OVERFLOW","features":[3]},{"name":"STATUS_MAX_REFERRALS_EXCEEDED","features":[3]},{"name":"STATUS_MCA_EXCEPTION","features":[3]},{"name":"STATUS_MCA_OCCURED","features":[3]},{"name":"STATUS_MEDIA_CHANGED","features":[3]},{"name":"STATUS_MEDIA_CHECK","features":[3]},{"name":"STATUS_MEDIA_WRITE_PROTECTED","features":[3]},{"name":"STATUS_MEMBERS_PRIMARY_GROUP","features":[3]},{"name":"STATUS_MEMBER_IN_ALIAS","features":[3]},{"name":"STATUS_MEMBER_IN_GROUP","features":[3]},{"name":"STATUS_MEMBER_NOT_IN_ALIAS","features":[3]},{"name":"STATUS_MEMBER_NOT_IN_GROUP","features":[3]},{"name":"STATUS_MEMORY_NOT_ALLOCATED","features":[3]},{"name":"STATUS_MESSAGE_LOST","features":[3]},{"name":"STATUS_MESSAGE_NOT_FOUND","features":[3]},{"name":"STATUS_MESSAGE_RETRIEVED","features":[3]},{"name":"STATUS_MFT_TOO_FRAGMENTED","features":[3]},{"name":"STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[3]},{"name":"STATUS_MISSING_SYSTEMFILE","features":[3]},{"name":"STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[3]},{"name":"STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[3]},{"name":"STATUS_MONITOR_INVALID_MANUFACTURE_DATE","features":[3]},{"name":"STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[3]},{"name":"STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[3]},{"name":"STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[3]},{"name":"STATUS_MONITOR_NO_DESCRIPTOR","features":[3]},{"name":"STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[3]},{"name":"STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[3]},{"name":"STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[3]},{"name":"STATUS_MORE_ENTRIES","features":[3]},{"name":"STATUS_MORE_PROCESSING_REQUIRED","features":[3]},{"name":"STATUS_MOUNT_POINT_NOT_RESOLVED","features":[3]},{"name":"STATUS_MP_PROCESSOR_MISMATCH","features":[3]},{"name":"STATUS_MUI_FILE_NOT_FOUND","features":[3]},{"name":"STATUS_MUI_FILE_NOT_LOADED","features":[3]},{"name":"STATUS_MUI_INVALID_FILE","features":[3]},{"name":"STATUS_MUI_INVALID_LOCALE_NAME","features":[3]},{"name":"STATUS_MUI_INVALID_RC_CONFIG","features":[3]},{"name":"STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[3]},{"name":"STATUS_MULTIPLE_FAULT_VIOLATION","features":[3]},{"name":"STATUS_MUST_BE_KDC","features":[3]},{"name":"STATUS_MUTANT_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_MUTANT_NOT_OWNED","features":[3]},{"name":"STATUS_MUTUAL_AUTHENTICATION_FAILED","features":[3]},{"name":"STATUS_NAME_TOO_LONG","features":[3]},{"name":"STATUS_NDIS_ADAPTER_NOT_FOUND","features":[3]},{"name":"STATUS_NDIS_ADAPTER_NOT_READY","features":[3]},{"name":"STATUS_NDIS_ADAPTER_REMOVED","features":[3]},{"name":"STATUS_NDIS_ALREADY_MAPPED","features":[3]},{"name":"STATUS_NDIS_BAD_CHARACTERISTICS","features":[3]},{"name":"STATUS_NDIS_BAD_VERSION","features":[3]},{"name":"STATUS_NDIS_BUFFER_TOO_SHORT","features":[3]},{"name":"STATUS_NDIS_CLOSING","features":[3]},{"name":"STATUS_NDIS_DEVICE_FAILED","features":[3]},{"name":"STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[3]},{"name":"STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[3]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[3]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[3]},{"name":"STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[3]},{"name":"STATUS_NDIS_DOT11_MEDIA_IN_USE","features":[3]},{"name":"STATUS_NDIS_DOT11_POWER_STATE_INVALID","features":[3]},{"name":"STATUS_NDIS_ERROR_READING_FILE","features":[3]},{"name":"STATUS_NDIS_FILE_NOT_FOUND","features":[3]},{"name":"STATUS_NDIS_GROUP_ADDRESS_IN_USE","features":[3]},{"name":"STATUS_NDIS_INDICATION_REQUIRED","features":[3]},{"name":"STATUS_NDIS_INTERFACE_NOT_FOUND","features":[3]},{"name":"STATUS_NDIS_INVALID_ADDRESS","features":[3]},{"name":"STATUS_NDIS_INVALID_DATA","features":[3]},{"name":"STATUS_NDIS_INVALID_DEVICE_REQUEST","features":[3]},{"name":"STATUS_NDIS_INVALID_LENGTH","features":[3]},{"name":"STATUS_NDIS_INVALID_OID","features":[3]},{"name":"STATUS_NDIS_INVALID_PACKET","features":[3]},{"name":"STATUS_NDIS_INVALID_PORT","features":[3]},{"name":"STATUS_NDIS_INVALID_PORT_STATE","features":[3]},{"name":"STATUS_NDIS_LOW_POWER_STATE","features":[3]},{"name":"STATUS_NDIS_MEDIA_DISCONNECTED","features":[3]},{"name":"STATUS_NDIS_MULTICAST_EXISTS","features":[3]},{"name":"STATUS_NDIS_MULTICAST_FULL","features":[3]},{"name":"STATUS_NDIS_MULTICAST_NOT_FOUND","features":[3]},{"name":"STATUS_NDIS_NOT_SUPPORTED","features":[3]},{"name":"STATUS_NDIS_NO_QUEUES","features":[3]},{"name":"STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[3]},{"name":"STATUS_NDIS_OFFLOAD_PATH_REJECTED","features":[3]},{"name":"STATUS_NDIS_OFFLOAD_POLICY","features":[3]},{"name":"STATUS_NDIS_OPEN_FAILED","features":[3]},{"name":"STATUS_NDIS_PAUSED","features":[3]},{"name":"STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[3]},{"name":"STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[3]},{"name":"STATUS_NDIS_REINIT_REQUIRED","features":[3]},{"name":"STATUS_NDIS_REQUEST_ABORTED","features":[3]},{"name":"STATUS_NDIS_RESET_IN_PROGRESS","features":[3]},{"name":"STATUS_NDIS_RESOURCE_CONFLICT","features":[3]},{"name":"STATUS_NDIS_UNSUPPORTED_MEDIA","features":[3]},{"name":"STATUS_NDIS_UNSUPPORTED_REVISION","features":[3]},{"name":"STATUS_ND_QUEUE_OVERFLOW","features":[3]},{"name":"STATUS_NEEDS_REGISTRATION","features":[3]},{"name":"STATUS_NEEDS_REMEDIATION","features":[3]},{"name":"STATUS_NETLOGON_NOT_STARTED","features":[3]},{"name":"STATUS_NETWORK_ACCESS_DENIED","features":[3]},{"name":"STATUS_NETWORK_ACCESS_DENIED_EDP","features":[3]},{"name":"STATUS_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[3]},{"name":"STATUS_NETWORK_BUSY","features":[3]},{"name":"STATUS_NETWORK_CREDENTIAL_CONFLICT","features":[3]},{"name":"STATUS_NETWORK_NAME_DELETED","features":[3]},{"name":"STATUS_NETWORK_OPEN_RESTRICTION","features":[3]},{"name":"STATUS_NETWORK_SESSION_EXPIRED","features":[3]},{"name":"STATUS_NETWORK_UNREACHABLE","features":[3]},{"name":"STATUS_NET_WRITE_FAULT","features":[3]},{"name":"STATUS_NOINTERFACE","features":[3]},{"name":"STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[3]},{"name":"STATUS_NOLOGON_SERVER_TRUST_ACCOUNT","features":[3]},{"name":"STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[3]},{"name":"STATUS_NONCONTINUABLE_EXCEPTION","features":[3]},{"name":"STATUS_NONEXISTENT_EA_ENTRY","features":[3]},{"name":"STATUS_NONEXISTENT_SECTOR","features":[3]},{"name":"STATUS_NONE_MAPPED","features":[3]},{"name":"STATUS_NOTHING_TO_TERMINATE","features":[3]},{"name":"STATUS_NOTIFICATION_GUID_ALREADY_DEFINED","features":[3]},{"name":"STATUS_NOTIFY_CLEANUP","features":[3]},{"name":"STATUS_NOTIFY_ENUM_DIR","features":[3]},{"name":"STATUS_NOT_ALLOWED_ON_SYSTEM_FILE","features":[3]},{"name":"STATUS_NOT_ALL_ASSIGNED","features":[3]},{"name":"STATUS_NOT_APPCONTAINER","features":[3]},{"name":"STATUS_NOT_A_CLOUD_FILE","features":[3]},{"name":"STATUS_NOT_A_CLOUD_SYNC_ROOT","features":[3]},{"name":"STATUS_NOT_A_DAX_VOLUME","features":[3]},{"name":"STATUS_NOT_A_DEV_VOLUME","features":[3]},{"name":"STATUS_NOT_A_DIRECTORY","features":[3]},{"name":"STATUS_NOT_A_REPARSE_POINT","features":[3]},{"name":"STATUS_NOT_A_TIERED_VOLUME","features":[3]},{"name":"STATUS_NOT_CAPABLE","features":[3]},{"name":"STATUS_NOT_CLIENT_SESSION","features":[3]},{"name":"STATUS_NOT_COMMITTED","features":[3]},{"name":"STATUS_NOT_DAX_MAPPABLE","features":[3]},{"name":"STATUS_NOT_EXPORT_FORMAT","features":[3]},{"name":"STATUS_NOT_FOUND","features":[3]},{"name":"STATUS_NOT_GUI_PROCESS","features":[3]},{"name":"STATUS_NOT_IMPLEMENTED","features":[3]},{"name":"STATUS_NOT_LOCKED","features":[3]},{"name":"STATUS_NOT_LOGON_PROCESS","features":[3]},{"name":"STATUS_NOT_MAPPED_DATA","features":[3]},{"name":"STATUS_NOT_MAPPED_VIEW","features":[3]},{"name":"STATUS_NOT_READ_FROM_COPY","features":[3]},{"name":"STATUS_NOT_REDUNDANT_STORAGE","features":[3]},{"name":"STATUS_NOT_REGISTRY_FILE","features":[3]},{"name":"STATUS_NOT_SAFE_MODE_DRIVER","features":[3]},{"name":"STATUS_NOT_SAME_DEVICE","features":[3]},{"name":"STATUS_NOT_SAME_OBJECT","features":[3]},{"name":"STATUS_NOT_SERVER_SESSION","features":[3]},{"name":"STATUS_NOT_SNAPSHOT_VOLUME","features":[3]},{"name":"STATUS_NOT_SUPPORTED","features":[3]},{"name":"STATUS_NOT_SUPPORTED_IN_APPCONTAINER","features":[3]},{"name":"STATUS_NOT_SUPPORTED_ON_DAX","features":[3]},{"name":"STATUS_NOT_SUPPORTED_ON_SBS","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_AUDITING","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_BTT","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_BYPASSIO","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_COMPRESSION","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_ENCRYPTION","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_MONITORING","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_REPLICATION","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_SNAPSHOT","features":[3]},{"name":"STATUS_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[3]},{"name":"STATUS_NOT_TINY_STREAM","features":[3]},{"name":"STATUS_NO_ACE_CONDITION","features":[3]},{"name":"STATUS_NO_APPLICABLE_APP_LICENSES_FOUND","features":[3]},{"name":"STATUS_NO_APPLICATION_PACKAGE","features":[3]},{"name":"STATUS_NO_BROWSER_SERVERS_FOUND","features":[3]},{"name":"STATUS_NO_BYPASSIO_DRIVER_SUPPORT","features":[3]},{"name":"STATUS_NO_CALLBACK_ACTIVE","features":[3]},{"name":"STATUS_NO_DATA_DETECTED","features":[3]},{"name":"STATUS_NO_EAS_ON_FILE","features":[3]},{"name":"STATUS_NO_EFS","features":[3]},{"name":"STATUS_NO_EVENT_PAIR","features":[3]},{"name":"STATUS_NO_GUID_TRANSLATION","features":[3]},{"name":"STATUS_NO_IMPERSONATION_TOKEN","features":[3]},{"name":"STATUS_NO_INHERITANCE","features":[3]},{"name":"STATUS_NO_IP_ADDRESSES","features":[3]},{"name":"STATUS_NO_KERB_KEY","features":[3]},{"name":"STATUS_NO_KEY","features":[3]},{"name":"STATUS_NO_LDT","features":[3]},{"name":"STATUS_NO_LINK_TRACKING_IN_TRANSACTION","features":[3]},{"name":"STATUS_NO_LOGON_SERVERS","features":[3]},{"name":"STATUS_NO_LOG_SPACE","features":[3]},{"name":"STATUS_NO_MATCH","features":[3]},{"name":"STATUS_NO_MEDIA","features":[3]},{"name":"STATUS_NO_MEDIA_IN_DEVICE","features":[3]},{"name":"STATUS_NO_MEMORY","features":[3]},{"name":"STATUS_NO_MORE_EAS","features":[3]},{"name":"STATUS_NO_MORE_ENTRIES","features":[3]},{"name":"STATUS_NO_MORE_FILES","features":[3]},{"name":"STATUS_NO_MORE_MATCHES","features":[3]},{"name":"STATUS_NO_PAGEFILE","features":[3]},{"name":"STATUS_NO_PA_DATA","features":[3]},{"name":"STATUS_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[3]},{"name":"STATUS_NO_QUOTAS_FOR_ACCOUNT","features":[3]},{"name":"STATUS_NO_RANGES_PROCESSED","features":[3]},{"name":"STATUS_NO_RECOVERY_POLICY","features":[3]},{"name":"STATUS_NO_S4U_PROT_SUPPORT","features":[3]},{"name":"STATUS_NO_SAVEPOINT_WITH_OPEN_FILES","features":[3]},{"name":"STATUS_NO_SECRETS","features":[3]},{"name":"STATUS_NO_SECURITY_CONTEXT","features":[3]},{"name":"STATUS_NO_SECURITY_ON_OBJECT","features":[3]},{"name":"STATUS_NO_SPOOL_SPACE","features":[3]},{"name":"STATUS_NO_SUCH_ALIAS","features":[3]},{"name":"STATUS_NO_SUCH_DEVICE","features":[3]},{"name":"STATUS_NO_SUCH_DOMAIN","features":[3]},{"name":"STATUS_NO_SUCH_FILE","features":[3]},{"name":"STATUS_NO_SUCH_GROUP","features":[3]},{"name":"STATUS_NO_SUCH_MEMBER","features":[3]},{"name":"STATUS_NO_SUCH_PACKAGE","features":[3]},{"name":"STATUS_NO_SUCH_PRIVILEGE","features":[3]},{"name":"STATUS_NO_TGT_REPLY","features":[3]},{"name":"STATUS_NO_TOKEN","features":[3]},{"name":"STATUS_NO_TRACKING_SERVICE","features":[3]},{"name":"STATUS_NO_TRUST_LSA_SECRET","features":[3]},{"name":"STATUS_NO_TRUST_SAM_ACCOUNT","features":[3]},{"name":"STATUS_NO_TXF_METADATA","features":[3]},{"name":"STATUS_NO_UNICODE_TRANSLATION","features":[3]},{"name":"STATUS_NO_USER_KEYS","features":[3]},{"name":"STATUS_NO_USER_SESSION_KEY","features":[3]},{"name":"STATUS_NO_WORK_DONE","features":[3]},{"name":"STATUS_NO_YIELD_PERFORMED","features":[3]},{"name":"STATUS_NTLM_BLOCKED","features":[3]},{"name":"STATUS_NT_CROSS_ENCRYPTION_REQUIRED","features":[3]},{"name":"STATUS_NULL_LM_PASSWORD","features":[3]},{"name":"STATUS_OBJECTID_EXISTS","features":[3]},{"name":"STATUS_OBJECTID_NOT_FOUND","features":[3]},{"name":"STATUS_OBJECT_IS_IMMUTABLE","features":[3]},{"name":"STATUS_OBJECT_NAME_COLLISION","features":[3]},{"name":"STATUS_OBJECT_NAME_EXISTS","features":[3]},{"name":"STATUS_OBJECT_NAME_INVALID","features":[3]},{"name":"STATUS_OBJECT_NAME_NOT_FOUND","features":[3]},{"name":"STATUS_OBJECT_NOT_EXTERNALLY_BACKED","features":[3]},{"name":"STATUS_OBJECT_NO_LONGER_EXISTS","features":[3]},{"name":"STATUS_OBJECT_PATH_INVALID","features":[3]},{"name":"STATUS_OBJECT_PATH_NOT_FOUND","features":[3]},{"name":"STATUS_OBJECT_PATH_SYNTAX_BAD","features":[3]},{"name":"STATUS_OBJECT_TYPE_MISMATCH","features":[3]},{"name":"STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[3]},{"name":"STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[3]},{"name":"STATUS_ONLY_IF_CONNECTED","features":[3]},{"name":"STATUS_OPEN_FAILED","features":[3]},{"name":"STATUS_OPERATION_IN_PROGRESS","features":[3]},{"name":"STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[3]},{"name":"STATUS_OPLOCK_BREAK_IN_PROGRESS","features":[3]},{"name":"STATUS_OPLOCK_HANDLE_CLOSED","features":[3]},{"name":"STATUS_OPLOCK_NOT_GRANTED","features":[3]},{"name":"STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[3]},{"name":"STATUS_ORDINAL_NOT_FOUND","features":[3]},{"name":"STATUS_ORPHAN_NAME_EXHAUSTED","features":[3]},{"name":"STATUS_PACKAGE_NOT_AVAILABLE","features":[3]},{"name":"STATUS_PACKAGE_UPDATING","features":[3]},{"name":"STATUS_PAGEFILE_CREATE_FAILED","features":[3]},{"name":"STATUS_PAGEFILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PAGEFILE_QUOTA","features":[3]},{"name":"STATUS_PAGEFILE_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_PAGE_FAULT_COPY_ON_WRITE","features":[3]},{"name":"STATUS_PAGE_FAULT_DEMAND_ZERO","features":[3]},{"name":"STATUS_PAGE_FAULT_GUARD_PAGE","features":[3]},{"name":"STATUS_PAGE_FAULT_PAGING_FILE","features":[3]},{"name":"STATUS_PAGE_FAULT_RETRY","features":[3]},{"name":"STATUS_PAGE_FAULT_TRANSITION","features":[3]},{"name":"STATUS_PARAMETER_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_PARITY_ERROR","features":[3]},{"name":"STATUS_PARTIAL_COPY","features":[3]},{"name":"STATUS_PARTITION_FAILURE","features":[3]},{"name":"STATUS_PARTITION_TERMINATING","features":[3]},{"name":"STATUS_PASSWORD_CHANGE_REQUIRED","features":[3]},{"name":"STATUS_PASSWORD_RESTRICTION","features":[3]},{"name":"STATUS_PATCH_CONFLICT","features":[3]},{"name":"STATUS_PATCH_DEFERRED","features":[3]},{"name":"STATUS_PATCH_NOT_REGISTERED","features":[3]},{"name":"STATUS_PATH_NOT_COVERED","features":[3]},{"name":"STATUS_PCP_ATTESTATION_CHALLENGE_NOT_SET","features":[3]},{"name":"STATUS_PCP_AUTHENTICATION_FAILED","features":[3]},{"name":"STATUS_PCP_AUTHENTICATION_IGNORED","features":[3]},{"name":"STATUS_PCP_BUFFER_LENGTH_MISMATCH","features":[3]},{"name":"STATUS_PCP_BUFFER_TOO_SMALL","features":[3]},{"name":"STATUS_PCP_CLAIM_TYPE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PCP_DEVICE_NOT_FOUND","features":[3]},{"name":"STATUS_PCP_DEVICE_NOT_READY","features":[3]},{"name":"STATUS_PCP_ERROR_MASK","features":[3]},{"name":"STATUS_PCP_FLAG_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[3]},{"name":"STATUS_PCP_INTERNAL_ERROR","features":[3]},{"name":"STATUS_PCP_INVALID_HANDLE","features":[3]},{"name":"STATUS_PCP_INVALID_PARAMETER","features":[3]},{"name":"STATUS_PCP_KEY_ALREADY_FINALIZED","features":[3]},{"name":"STATUS_PCP_KEY_HANDLE_INVALIDATED","features":[3]},{"name":"STATUS_PCP_KEY_NOT_AIK","features":[3]},{"name":"STATUS_PCP_KEY_NOT_AUTHENTICATED","features":[3]},{"name":"STATUS_PCP_KEY_NOT_FINALIZED","features":[3]},{"name":"STATUS_PCP_KEY_NOT_LOADED","features":[3]},{"name":"STATUS_PCP_KEY_NOT_SIGNING_KEY","features":[3]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_INVALID","features":[3]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PCP_LOCKED_OUT","features":[3]},{"name":"STATUS_PCP_NOT_PCR_BOUND","features":[3]},{"name":"STATUS_PCP_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PCP_NO_KEY_CERTIFICATION","features":[3]},{"name":"STATUS_PCP_POLICY_NOT_FOUND","features":[3]},{"name":"STATUS_PCP_PROFILE_NOT_FOUND","features":[3]},{"name":"STATUS_PCP_RAW_POLICY_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PCP_SOFT_KEY_ERROR","features":[3]},{"name":"STATUS_PCP_TICKET_MISSING","features":[3]},{"name":"STATUS_PCP_TPM_VERSION_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PCP_UNSUPPORTED_PSS_SALT","features":[3]},{"name":"STATUS_PCP_VALIDATION_FAILED","features":[3]},{"name":"STATUS_PCP_WRONG_PARENT","features":[3]},{"name":"STATUS_PENDING","features":[3]},{"name":"STATUS_PER_USER_TRUST_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_PIPE_BROKEN","features":[3]},{"name":"STATUS_PIPE_BUSY","features":[3]},{"name":"STATUS_PIPE_CLOSING","features":[3]},{"name":"STATUS_PIPE_CONNECTED","features":[3]},{"name":"STATUS_PIPE_DISCONNECTED","features":[3]},{"name":"STATUS_PIPE_EMPTY","features":[3]},{"name":"STATUS_PIPE_LISTENING","features":[3]},{"name":"STATUS_PIPE_NOT_AVAILABLE","features":[3]},{"name":"STATUS_PKINIT_CLIENT_FAILURE","features":[3]},{"name":"STATUS_PKINIT_FAILURE","features":[3]},{"name":"STATUS_PKINIT_NAME_MISMATCH","features":[3]},{"name":"STATUS_PKU2U_CERT_FAILURE","features":[3]},{"name":"STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[3]},{"name":"STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[3]},{"name":"STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[3]},{"name":"STATUS_PLATFORM_MANIFEST_INVALID","features":[3]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_ACTIVE","features":[3]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[3]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_SIGNED","features":[3]},{"name":"STATUS_PLUGPLAY_NO_DEVICE","features":[3]},{"name":"STATUS_PLUGPLAY_QUERY_VETOED","features":[3]},{"name":"STATUS_PNP_BAD_MPS_TABLE","features":[3]},{"name":"STATUS_PNP_DEVICE_CONFIGURATION_PENDING","features":[3]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE","features":[3]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND","features":[3]},{"name":"STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND","features":[3]},{"name":"STATUS_PNP_FUNCTION_DRIVER_REQUIRED","features":[3]},{"name":"STATUS_PNP_INVALID_ID","features":[3]},{"name":"STATUS_PNP_IRQ_TRANSLATION_FAILED","features":[3]},{"name":"STATUS_PNP_NO_COMPAT_DRIVERS","features":[3]},{"name":"STATUS_PNP_REBOOT_REQUIRED","features":[3]},{"name":"STATUS_PNP_RESTART_ENUMERATION","features":[3]},{"name":"STATUS_PNP_TRANSLATION_FAILED","features":[3]},{"name":"STATUS_POLICY_CONTROLLED_ACCOUNT","features":[3]},{"name":"STATUS_POLICY_OBJECT_NOT_FOUND","features":[3]},{"name":"STATUS_POLICY_ONLY_IN_DS","features":[3]},{"name":"STATUS_PORT_ALREADY_HAS_COMPLETION_LIST","features":[3]},{"name":"STATUS_PORT_ALREADY_SET","features":[3]},{"name":"STATUS_PORT_CLOSED","features":[3]},{"name":"STATUS_PORT_CONNECTION_REFUSED","features":[3]},{"name":"STATUS_PORT_DISCONNECTED","features":[3]},{"name":"STATUS_PORT_DO_NOT_DISTURB","features":[3]},{"name":"STATUS_PORT_MESSAGE_TOO_LONG","features":[3]},{"name":"STATUS_PORT_NOT_SET","features":[3]},{"name":"STATUS_PORT_UNREACHABLE","features":[3]},{"name":"STATUS_POSSIBLE_DEADLOCK","features":[3]},{"name":"STATUS_POWER_STATE_INVALID","features":[3]},{"name":"STATUS_PREDEFINED_HANDLE","features":[3]},{"name":"STATUS_PRENT4_MACHINE_ACCOUNT","features":[3]},{"name":"STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[3]},{"name":"STATUS_PRINT_CANCELLED","features":[3]},{"name":"STATUS_PRINT_QUEUE_FULL","features":[3]},{"name":"STATUS_PRIVILEGED_INSTRUCTION","features":[3]},{"name":"STATUS_PRIVILEGE_NOT_HELD","features":[3]},{"name":"STATUS_PROACTIVE_SCAN_IN_PROGRESS","features":[3]},{"name":"STATUS_PROCEDURE_NOT_FOUND","features":[3]},{"name":"STATUS_PROCESS_CLONED","features":[3]},{"name":"STATUS_PROCESS_IN_JOB","features":[3]},{"name":"STATUS_PROCESS_IS_PROTECTED","features":[3]},{"name":"STATUS_PROCESS_IS_TERMINATING","features":[3]},{"name":"STATUS_PROCESS_NOT_IN_JOB","features":[3]},{"name":"STATUS_PROFILING_AT_LIMIT","features":[3]},{"name":"STATUS_PROFILING_NOT_STARTED","features":[3]},{"name":"STATUS_PROFILING_NOT_STOPPED","features":[3]},{"name":"STATUS_PROPSET_NOT_FOUND","features":[3]},{"name":"STATUS_PROTOCOL_NOT_SUPPORTED","features":[3]},{"name":"STATUS_PROTOCOL_UNREACHABLE","features":[3]},{"name":"STATUS_PTE_CHANGED","features":[3]},{"name":"STATUS_PURGE_FAILED","features":[3]},{"name":"STATUS_PWD_HISTORY_CONFLICT","features":[3]},{"name":"STATUS_PWD_TOO_LONG","features":[3]},{"name":"STATUS_PWD_TOO_RECENT","features":[3]},{"name":"STATUS_PWD_TOO_SHORT","features":[3]},{"name":"STATUS_QUERY_STORAGE_ERROR","features":[3]},{"name":"STATUS_QUIC_ALPN_NEG_FAILURE","features":[3]},{"name":"STATUS_QUIC_CONNECTION_IDLE","features":[3]},{"name":"STATUS_QUIC_CONNECTION_TIMEOUT","features":[3]},{"name":"STATUS_QUIC_HANDSHAKE_FAILURE","features":[3]},{"name":"STATUS_QUIC_INTERNAL_ERROR","features":[3]},{"name":"STATUS_QUIC_PROTOCOL_VIOLATION","features":[3]},{"name":"STATUS_QUIC_USER_CANCELED","features":[3]},{"name":"STATUS_QUIC_VER_NEG_FAILURE","features":[3]},{"name":"STATUS_QUOTA_ACTIVITY","features":[3]},{"name":"STATUS_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_QUOTA_LIST_INCONSISTENT","features":[3]},{"name":"STATUS_QUOTA_NOT_ENABLED","features":[3]},{"name":"STATUS_RANGE_LIST_CONFLICT","features":[3]},{"name":"STATUS_RANGE_NOT_FOUND","features":[3]},{"name":"STATUS_RANGE_NOT_LOCKED","features":[3]},{"name":"STATUS_RDBSS_CONTINUE_OPERATION","features":[3]},{"name":"STATUS_RDBSS_POST_OPERATION","features":[3]},{"name":"STATUS_RDBSS_RESTART_OPERATION","features":[3]},{"name":"STATUS_RDBSS_RETRY_LOOKUP","features":[3]},{"name":"STATUS_RDP_PROTOCOL_ERROR","features":[3]},{"name":"STATUS_RECEIVE_EXPEDITED","features":[3]},{"name":"STATUS_RECEIVE_PARTIAL","features":[3]},{"name":"STATUS_RECEIVE_PARTIAL_EXPEDITED","features":[3]},{"name":"STATUS_RECOVERABLE_BUGCHECK","features":[3]},{"name":"STATUS_RECOVERY_FAILURE","features":[3]},{"name":"STATUS_RECOVERY_NOT_NEEDED","features":[3]},{"name":"STATUS_RECURSIVE_DISPATCH","features":[3]},{"name":"STATUS_REDIRECTOR_HAS_OPEN_HANDLES","features":[3]},{"name":"STATUS_REDIRECTOR_NOT_STARTED","features":[3]},{"name":"STATUS_REDIRECTOR_PAUSED","features":[3]},{"name":"STATUS_REDIRECTOR_STARTED","features":[3]},{"name":"STATUS_REGISTRY_CORRUPT","features":[3]},{"name":"STATUS_REGISTRY_HIVE_RECOVERED","features":[3]},{"name":"STATUS_REGISTRY_IO_FAILED","features":[3]},{"name":"STATUS_REGISTRY_QUOTA_LIMIT","features":[3]},{"name":"STATUS_REGISTRY_RECOVERED","features":[3]},{"name":"STATUS_REG_NAT_CONSUMPTION","features":[3]},{"name":"STATUS_REINITIALIZATION_NEEDED","features":[3]},{"name":"STATUS_REMOTE_DISCONNECT","features":[3]},{"name":"STATUS_REMOTE_FILE_VERSION_MISMATCH","features":[3]},{"name":"STATUS_REMOTE_NOT_LISTENING","features":[3]},{"name":"STATUS_REMOTE_RESOURCES","features":[3]},{"name":"STATUS_REMOTE_SESSION_LIMIT","features":[3]},{"name":"STATUS_REMOTE_STORAGE_MEDIA_ERROR","features":[3]},{"name":"STATUS_REMOTE_STORAGE_NOT_ACTIVE","features":[3]},{"name":"STATUS_REPAIR_NEEDED","features":[3]},{"name":"STATUS_REPARSE","features":[3]},{"name":"STATUS_REPARSE_ATTRIBUTE_CONFLICT","features":[3]},{"name":"STATUS_REPARSE_GLOBAL","features":[3]},{"name":"STATUS_REPARSE_OBJECT","features":[3]},{"name":"STATUS_REPARSE_POINT_ENCOUNTERED","features":[3]},{"name":"STATUS_REPARSE_POINT_NOT_RESOLVED","features":[3]},{"name":"STATUS_REPLY_MESSAGE_MISMATCH","features":[3]},{"name":"STATUS_REQUEST_ABORTED","features":[3]},{"name":"STATUS_REQUEST_CANCELED","features":[3]},{"name":"STATUS_REQUEST_NOT_ACCEPTED","features":[3]},{"name":"STATUS_REQUEST_OUT_OF_SEQUENCE","features":[3]},{"name":"STATUS_REQUEST_PAUSED","features":[3]},{"name":"STATUS_RESIDENT_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_RESOURCEMANAGER_NOT_FOUND","features":[3]},{"name":"STATUS_RESOURCEMANAGER_READ_ONLY","features":[3]},{"name":"STATUS_RESOURCE_DATA_NOT_FOUND","features":[3]},{"name":"STATUS_RESOURCE_ENUM_USER_STOP","features":[3]},{"name":"STATUS_RESOURCE_IN_USE","features":[3]},{"name":"STATUS_RESOURCE_LANG_NOT_FOUND","features":[3]},{"name":"STATUS_RESOURCE_NAME_NOT_FOUND","features":[3]},{"name":"STATUS_RESOURCE_NOT_OWNED","features":[3]},{"name":"STATUS_RESOURCE_REQUIREMENTS_CHANGED","features":[3]},{"name":"STATUS_RESOURCE_TYPE_NOT_FOUND","features":[3]},{"name":"STATUS_RESTART_BOOT_APPLICATION","features":[3]},{"name":"STATUS_RESUME_HIBERNATION","features":[3]},{"name":"STATUS_RETRY","features":[3]},{"name":"STATUS_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[3]},{"name":"STATUS_REVISION_MISMATCH","features":[3]},{"name":"STATUS_REVOCATION_OFFLINE_C","features":[3]},{"name":"STATUS_REVOCATION_OFFLINE_KDC","features":[3]},{"name":"STATUS_RING_NEWLY_EMPTY","features":[3]},{"name":"STATUS_RING_PREVIOUSLY_ABOVE_QUOTA","features":[3]},{"name":"STATUS_RING_PREVIOUSLY_EMPTY","features":[3]},{"name":"STATUS_RING_PREVIOUSLY_FULL","features":[3]},{"name":"STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT","features":[3]},{"name":"STATUS_RKF_ACTIVE_KEY","features":[3]},{"name":"STATUS_RKF_BLOB_FULL","features":[3]},{"name":"STATUS_RKF_DUPLICATE_KEY","features":[3]},{"name":"STATUS_RKF_FILE_BLOCKED","features":[3]},{"name":"STATUS_RKF_KEY_NOT_FOUND","features":[3]},{"name":"STATUS_RKF_STORE_FULL","features":[3]},{"name":"STATUS_RM_ALREADY_STARTED","features":[3]},{"name":"STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[3]},{"name":"STATUS_RM_DISCONNECTED","features":[3]},{"name":"STATUS_RM_METADATA_CORRUPT","features":[3]},{"name":"STATUS_RM_NOT_ACTIVE","features":[3]},{"name":"STATUS_ROLLBACK_TIMER_EXPIRED","features":[3]},{"name":"STATUS_RTPM_CONTEXT_COMPLETE","features":[3]},{"name":"STATUS_RTPM_CONTEXT_CONTINUE","features":[3]},{"name":"STATUS_RTPM_INVALID_CONTEXT","features":[3]},{"name":"STATUS_RTPM_NO_RESULT","features":[3]},{"name":"STATUS_RTPM_PCR_READ_INCOMPLETE","features":[3]},{"name":"STATUS_RTPM_UNSUPPORTED_CMD","features":[3]},{"name":"STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[3]},{"name":"STATUS_RUNLEVEL_SWITCH_IN_PROGRESS","features":[3]},{"name":"STATUS_RUNLEVEL_SWITCH_TIMEOUT","features":[3]},{"name":"STATUS_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[3]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[3]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[3]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[3]},{"name":"STATUS_RXACT_COMMITTED","features":[3]},{"name":"STATUS_RXACT_COMMIT_FAILURE","features":[3]},{"name":"STATUS_RXACT_COMMIT_NECESSARY","features":[3]},{"name":"STATUS_RXACT_INVALID_STATE","features":[3]},{"name":"STATUS_RXACT_STATE_CREATED","features":[3]},{"name":"STATUS_SAM_INIT_FAILURE","features":[3]},{"name":"STATUS_SAM_NEED_BOOTKEY_FLOPPY","features":[3]},{"name":"STATUS_SAM_NEED_BOOTKEY_PASSWORD","features":[3]},{"name":"STATUS_SCRUB_DATA_DISABLED","features":[3]},{"name":"STATUS_SECCORE_INVALID_COMMAND","features":[3]},{"name":"STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[3]},{"name":"STATUS_SECRET_TOO_LONG","features":[3]},{"name":"STATUS_SECTION_DIRECT_MAP_ONLY","features":[3]},{"name":"STATUS_SECTION_NOT_EXTENDED","features":[3]},{"name":"STATUS_SECTION_NOT_IMAGE","features":[3]},{"name":"STATUS_SECTION_PROTECTION","features":[3]},{"name":"STATUS_SECTION_TOO_BIG","features":[3]},{"name":"STATUS_SECUREBOOT_FILE_REPLACED","features":[3]},{"name":"STATUS_SECUREBOOT_INVALID_POLICY","features":[3]},{"name":"STATUS_SECUREBOOT_NOT_BASE_POLICY","features":[3]},{"name":"STATUS_SECUREBOOT_NOT_ENABLED","features":[3]},{"name":"STATUS_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[3]},{"name":"STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_SIGNED","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_UNKNOWN","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[3]},{"name":"STATUS_SECUREBOOT_POLICY_VIOLATION","features":[3]},{"name":"STATUS_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[3]},{"name":"STATUS_SECUREBOOT_ROLLBACK_DETECTED","features":[3]},{"name":"STATUS_SECURITY_STREAM_IS_INCONSISTENT","features":[3]},{"name":"STATUS_SEGMENT_NOTIFICATION","features":[3]},{"name":"STATUS_SEMAPHORE_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_SERIAL_COUNTER_TIMEOUT","features":[3]},{"name":"STATUS_SERIAL_MORE_WRITES","features":[3]},{"name":"STATUS_SERIAL_NO_DEVICE_INITED","features":[3]},{"name":"STATUS_SERVER_DISABLED","features":[3]},{"name":"STATUS_SERVER_HAS_OPEN_HANDLES","features":[3]},{"name":"STATUS_SERVER_NOT_DISABLED","features":[3]},{"name":"STATUS_SERVER_SHUTDOWN_IN_PROGRESS","features":[3]},{"name":"STATUS_SERVER_SID_MISMATCH","features":[3]},{"name":"STATUS_SERVER_TRANSPORT_CONFLICT","features":[3]},{"name":"STATUS_SERVER_UNAVAILABLE","features":[3]},{"name":"STATUS_SERVICES_FAILED_AUTOSTART","features":[3]},{"name":"STATUS_SERVICE_NOTIFICATION","features":[3]},{"name":"STATUS_SESSION_KEY_TOO_SHORT","features":[3]},{"name":"STATUS_SETMARK_DETECTED","features":[3]},{"name":"STATUS_SET_CONTEXT_DENIED","features":[3]},{"name":"STATUS_SEVERITY_COERROR","features":[3]},{"name":"STATUS_SEVERITY_COFAIL","features":[3]},{"name":"STATUS_SEVERITY_ERROR","features":[3]},{"name":"STATUS_SEVERITY_INFORMATIONAL","features":[3]},{"name":"STATUS_SEVERITY_SUCCESS","features":[3]},{"name":"STATUS_SEVERITY_WARNING","features":[3]},{"name":"STATUS_SHARED_IRQ_BUSY","features":[3]},{"name":"STATUS_SHARED_POLICY","features":[3]},{"name":"STATUS_SHARE_UNAVAILABLE","features":[3]},{"name":"STATUS_SHARING_PAUSED","features":[3]},{"name":"STATUS_SHARING_VIOLATION","features":[3]},{"name":"STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[3]},{"name":"STATUS_SHUTDOWN_IN_PROGRESS","features":[3]},{"name":"STATUS_SINGLE_STEP","features":[3]},{"name":"STATUS_SMARTCARD_CARD_BLOCKED","features":[3]},{"name":"STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED","features":[3]},{"name":"STATUS_SMARTCARD_CERT_EXPIRED","features":[3]},{"name":"STATUS_SMARTCARD_CERT_REVOKED","features":[3]},{"name":"STATUS_SMARTCARD_IO_ERROR","features":[3]},{"name":"STATUS_SMARTCARD_LOGON_REQUIRED","features":[3]},{"name":"STATUS_SMARTCARD_NO_CARD","features":[3]},{"name":"STATUS_SMARTCARD_NO_CERTIFICATE","features":[3]},{"name":"STATUS_SMARTCARD_NO_KEYSET","features":[3]},{"name":"STATUS_SMARTCARD_NO_KEY_CONTAINER","features":[3]},{"name":"STATUS_SMARTCARD_SILENT_CONTEXT","features":[3]},{"name":"STATUS_SMARTCARD_SUBSYSTEM_FAILURE","features":[3]},{"name":"STATUS_SMARTCARD_WRONG_PIN","features":[3]},{"name":"STATUS_SMB1_NOT_AVAILABLE","features":[3]},{"name":"STATUS_SMB_BAD_CLUSTER_DIALECT","features":[3]},{"name":"STATUS_SMB_GUEST_LOGON_BLOCKED","features":[3]},{"name":"STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[3]},{"name":"STATUS_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[3]},{"name":"STATUS_SMI_PRIMITIVE_INSTALLER_FAILED","features":[3]},{"name":"STATUS_SMR_GARBAGE_COLLECTION_REQUIRED","features":[3]},{"name":"STATUS_SOME_NOT_MAPPED","features":[3]},{"name":"STATUS_SOURCE_ELEMENT_EMPTY","features":[3]},{"name":"STATUS_SPACES_ALLOCATION_SIZE_INVALID","features":[3]},{"name":"STATUS_SPACES_CACHE_FULL","features":[3]},{"name":"STATUS_SPACES_COMPLETE","features":[3]},{"name":"STATUS_SPACES_CORRUPT_METADATA","features":[3]},{"name":"STATUS_SPACES_DRIVE_LOST_DATA","features":[3]},{"name":"STATUS_SPACES_DRIVE_NOT_READY","features":[3]},{"name":"STATUS_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[3]},{"name":"STATUS_SPACES_DRIVE_REDUNDANCY_INVALID","features":[3]},{"name":"STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[3]},{"name":"STATUS_SPACES_DRIVE_SPLIT","features":[3]},{"name":"STATUS_SPACES_DRT_FULL","features":[3]},{"name":"STATUS_SPACES_ENCLOSURE_AWARE_INVALID","features":[3]},{"name":"STATUS_SPACES_ENTRY_INCOMPLETE","features":[3]},{"name":"STATUS_SPACES_ENTRY_INVALID","features":[3]},{"name":"STATUS_SPACES_EXTENDED_ERROR","features":[3]},{"name":"STATUS_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[3]},{"name":"STATUS_SPACES_FLUSH_METADATA","features":[3]},{"name":"STATUS_SPACES_INCONSISTENCY","features":[3]},{"name":"STATUS_SPACES_INTERLEAVE_LENGTH_INVALID","features":[3]},{"name":"STATUS_SPACES_LOG_NOT_READY","features":[3]},{"name":"STATUS_SPACES_MAP_REQUIRED","features":[3]},{"name":"STATUS_SPACES_MARK_DIRTY","features":[3]},{"name":"STATUS_SPACES_NOT_ENOUGH_DRIVES","features":[3]},{"name":"STATUS_SPACES_NO_REDUNDANCY","features":[3]},{"name":"STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[3]},{"name":"STATUS_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[3]},{"name":"STATUS_SPACES_NUMBER_OF_GROUPS_INVALID","features":[3]},{"name":"STATUS_SPACES_PAUSE","features":[3]},{"name":"STATUS_SPACES_PD_INVALID_DATA","features":[3]},{"name":"STATUS_SPACES_PD_LENGTH_MISMATCH","features":[3]},{"name":"STATUS_SPACES_PD_NOT_FOUND","features":[3]},{"name":"STATUS_SPACES_PD_UNSUPPORTED_VERSION","features":[3]},{"name":"STATUS_SPACES_PROVISIONING_TYPE_INVALID","features":[3]},{"name":"STATUS_SPACES_REDIRECT","features":[3]},{"name":"STATUS_SPACES_REPAIRED","features":[3]},{"name":"STATUS_SPACES_REPAIR_IN_PROGRESS","features":[3]},{"name":"STATUS_SPACES_RESILIENCY_TYPE_INVALID","features":[3]},{"name":"STATUS_SPACES_UNSUPPORTED_VERSION","features":[3]},{"name":"STATUS_SPACES_UPDATE_COLUMN_STATE","features":[3]},{"name":"STATUS_SPACES_WRITE_CACHE_SIZE_INVALID","features":[3]},{"name":"STATUS_SPARSE_FILE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[3]},{"name":"STATUS_SPECIAL_ACCOUNT","features":[3]},{"name":"STATUS_SPECIAL_GROUP","features":[3]},{"name":"STATUS_SPECIAL_USER","features":[3]},{"name":"STATUS_STACK_BUFFER_OVERRUN","features":[3]},{"name":"STATUS_STACK_OVERFLOW","features":[3]},{"name":"STATUS_STACK_OVERFLOW_READ","features":[3]},{"name":"STATUS_STOPPED_ON_SYMLINK","features":[3]},{"name":"STATUS_STORAGE_LOST_DATA_PERSISTENCE","features":[3]},{"name":"STATUS_STORAGE_RESERVE_ALREADY_EXISTS","features":[3]},{"name":"STATUS_STORAGE_RESERVE_DOES_NOT_EXIST","features":[3]},{"name":"STATUS_STORAGE_RESERVE_ID_INVALID","features":[3]},{"name":"STATUS_STORAGE_RESERVE_NOT_EMPTY","features":[3]},{"name":"STATUS_STORAGE_STACK_ACCESS_DENIED","features":[3]},{"name":"STATUS_STORAGE_TOPOLOGY_ID_MISMATCH","features":[3]},{"name":"STATUS_STOWED_EXCEPTION","features":[3]},{"name":"STATUS_STREAM_MINIVERSION_NOT_FOUND","features":[3]},{"name":"STATUS_STREAM_MINIVERSION_NOT_VALID","features":[3]},{"name":"STATUS_STRICT_CFG_VIOLATION","features":[3]},{"name":"STATUS_STRONG_CRYPTO_NOT_SUPPORTED","features":[3]},{"name":"STATUS_SUCCESS","features":[3]},{"name":"STATUS_SUSPEND_COUNT_EXCEEDED","features":[3]},{"name":"STATUS_SVHDX_ERROR_NOT_AVAILABLE","features":[3]},{"name":"STATUS_SVHDX_ERROR_STORED","features":[3]},{"name":"STATUS_SVHDX_NO_INITIATOR","features":[3]},{"name":"STATUS_SVHDX_RESERVATION_CONFLICT","features":[3]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[3]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[3]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[3]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[3]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[3]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[3]},{"name":"STATUS_SVHDX_VERSION_MISMATCH","features":[3]},{"name":"STATUS_SVHDX_WRONG_FILE_TYPE","features":[3]},{"name":"STATUS_SXS_ACTIVATION_CONTEXT_DISABLED","features":[3]},{"name":"STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[3]},{"name":"STATUS_SXS_ASSEMBLY_MISSING","features":[3]},{"name":"STATUS_SXS_ASSEMBLY_NOT_FOUND","features":[3]},{"name":"STATUS_SXS_CANT_GEN_ACTCTX","features":[3]},{"name":"STATUS_SXS_COMPONENT_STORE_CORRUPT","features":[3]},{"name":"STATUS_SXS_CORRUPTION","features":[3]},{"name":"STATUS_SXS_CORRUPT_ACTIVATION_STACK","features":[3]},{"name":"STATUS_SXS_EARLY_DEACTIVATION","features":[3]},{"name":"STATUS_SXS_FILE_HASH_MISMATCH","features":[3]},{"name":"STATUS_SXS_FILE_HASH_MISSING","features":[3]},{"name":"STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[3]},{"name":"STATUS_SXS_IDENTITIES_DIFFERENT","features":[3]},{"name":"STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[3]},{"name":"STATUS_SXS_IDENTITY_PARSE_ERROR","features":[3]},{"name":"STATUS_SXS_INVALID_ACTCTXDATA_FORMAT","features":[3]},{"name":"STATUS_SXS_INVALID_DEACTIVATION","features":[3]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[3]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[3]},{"name":"STATUS_SXS_KEY_NOT_FOUND","features":[3]},{"name":"STATUS_SXS_MANIFEST_FORMAT_ERROR","features":[3]},{"name":"STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[3]},{"name":"STATUS_SXS_MANIFEST_PARSE_ERROR","features":[3]},{"name":"STATUS_SXS_MANIFEST_TOO_BIG","features":[3]},{"name":"STATUS_SXS_MULTIPLE_DEACTIVATION","features":[3]},{"name":"STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[3]},{"name":"STATUS_SXS_PROCESS_TERMINATION_REQUESTED","features":[3]},{"name":"STATUS_SXS_RELEASE_ACTIVATION_CONTEXT","features":[3]},{"name":"STATUS_SXS_SECTION_NOT_FOUND","features":[3]},{"name":"STATUS_SXS_SETTING_NOT_REGISTERED","features":[3]},{"name":"STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[3]},{"name":"STATUS_SXS_THREAD_QUERIES_DISABLED","features":[3]},{"name":"STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[3]},{"name":"STATUS_SXS_VERSION_CONFLICT","features":[3]},{"name":"STATUS_SXS_WRONG_SECTION_TYPE","features":[3]},{"name":"STATUS_SYMLINK_CLASS_DISABLED","features":[3]},{"name":"STATUS_SYNCHRONIZATION_REQUIRED","features":[3]},{"name":"STATUS_SYSTEM_DEVICE_NOT_FOUND","features":[3]},{"name":"STATUS_SYSTEM_HIVE_TOO_LARGE","features":[3]},{"name":"STATUS_SYSTEM_IMAGE_BAD_SIGNATURE","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_INVALID_POLICY","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[3]},{"name":"STATUS_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[3]},{"name":"STATUS_SYSTEM_NEEDS_REMEDIATION","features":[3]},{"name":"STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[3]},{"name":"STATUS_SYSTEM_POWERSTATE_TRANSITION","features":[3]},{"name":"STATUS_SYSTEM_PROCESS_TERMINATED","features":[3]},{"name":"STATUS_SYSTEM_SHUTDOWN","features":[3]},{"name":"STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED","features":[3]},{"name":"STATUS_THREADPOOL_HANDLE_EXCEPTION","features":[3]},{"name":"STATUS_THREADPOOL_RELEASED_DURING_OPERATION","features":[3]},{"name":"STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED","features":[3]},{"name":"STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED","features":[3]},{"name":"STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED","features":[3]},{"name":"STATUS_THREAD_ALREADY_IN_SESSION","features":[3]},{"name":"STATUS_THREAD_ALREADY_IN_TASK","features":[3]},{"name":"STATUS_THREAD_IS_TERMINATING","features":[3]},{"name":"STATUS_THREAD_NOT_IN_PROCESS","features":[3]},{"name":"STATUS_THREAD_NOT_IN_SESSION","features":[3]},{"name":"STATUS_THREAD_NOT_RUNNING","features":[3]},{"name":"STATUS_THREAD_WAS_SUSPENDED","features":[3]},{"name":"STATUS_TIMEOUT","features":[3]},{"name":"STATUS_TIMER_NOT_CANCELED","features":[3]},{"name":"STATUS_TIMER_RESOLUTION_NOT_SET","features":[3]},{"name":"STATUS_TIMER_RESUME_IGNORED","features":[3]},{"name":"STATUS_TIME_DIFFERENCE_AT_DC","features":[3]},{"name":"STATUS_TM_IDENTITY_MISMATCH","features":[3]},{"name":"STATUS_TM_INITIALIZATION_FAILED","features":[3]},{"name":"STATUS_TM_VOLATILE","features":[3]},{"name":"STATUS_TOKEN_ALREADY_IN_USE","features":[3]},{"name":"STATUS_TOO_LATE","features":[3]},{"name":"STATUS_TOO_MANY_ADDRESSES","features":[3]},{"name":"STATUS_TOO_MANY_COMMANDS","features":[3]},{"name":"STATUS_TOO_MANY_CONTEXT_IDS","features":[3]},{"name":"STATUS_TOO_MANY_GUIDS_REQUESTED","features":[3]},{"name":"STATUS_TOO_MANY_LINKS","features":[3]},{"name":"STATUS_TOO_MANY_LUIDS_REQUESTED","features":[3]},{"name":"STATUS_TOO_MANY_NAMES","features":[3]},{"name":"STATUS_TOO_MANY_NODES","features":[3]},{"name":"STATUS_TOO_MANY_OPENED_FILES","features":[3]},{"name":"STATUS_TOO_MANY_PAGING_FILES","features":[3]},{"name":"STATUS_TOO_MANY_PRINCIPALS","features":[3]},{"name":"STATUS_TOO_MANY_SECRETS","features":[3]},{"name":"STATUS_TOO_MANY_SEGMENT_DESCRIPTORS","features":[3]},{"name":"STATUS_TOO_MANY_SESSIONS","features":[3]},{"name":"STATUS_TOO_MANY_SIDS","features":[3]},{"name":"STATUS_TOO_MANY_THREADS","features":[3]},{"name":"STATUS_TPM_20_E_ASYMMETRIC","features":[3]},{"name":"STATUS_TPM_20_E_ATTRIBUTES","features":[3]},{"name":"STATUS_TPM_20_E_AUTHSIZE","features":[3]},{"name":"STATUS_TPM_20_E_AUTH_CONTEXT","features":[3]},{"name":"STATUS_TPM_20_E_AUTH_FAIL","features":[3]},{"name":"STATUS_TPM_20_E_AUTH_MISSING","features":[3]},{"name":"STATUS_TPM_20_E_AUTH_TYPE","features":[3]},{"name":"STATUS_TPM_20_E_AUTH_UNAVAILABLE","features":[3]},{"name":"STATUS_TPM_20_E_BAD_AUTH","features":[3]},{"name":"STATUS_TPM_20_E_BAD_CONTEXT","features":[3]},{"name":"STATUS_TPM_20_E_BINDING","features":[3]},{"name":"STATUS_TPM_20_E_COMMAND_CODE","features":[3]},{"name":"STATUS_TPM_20_E_COMMAND_SIZE","features":[3]},{"name":"STATUS_TPM_20_E_CPHASH","features":[3]},{"name":"STATUS_TPM_20_E_CURVE","features":[3]},{"name":"STATUS_TPM_20_E_DISABLED","features":[3]},{"name":"STATUS_TPM_20_E_ECC_CURVE","features":[3]},{"name":"STATUS_TPM_20_E_ECC_POINT","features":[3]},{"name":"STATUS_TPM_20_E_EXCLUSIVE","features":[3]},{"name":"STATUS_TPM_20_E_EXPIRED","features":[3]},{"name":"STATUS_TPM_20_E_FAILURE","features":[3]},{"name":"STATUS_TPM_20_E_HANDLE","features":[3]},{"name":"STATUS_TPM_20_E_HASH","features":[3]},{"name":"STATUS_TPM_20_E_HIERARCHY","features":[3]},{"name":"STATUS_TPM_20_E_HMAC","features":[3]},{"name":"STATUS_TPM_20_E_INITIALIZE","features":[3]},{"name":"STATUS_TPM_20_E_INSUFFICIENT","features":[3]},{"name":"STATUS_TPM_20_E_INTEGRITY","features":[3]},{"name":"STATUS_TPM_20_E_KDF","features":[3]},{"name":"STATUS_TPM_20_E_KEY","features":[3]},{"name":"STATUS_TPM_20_E_KEY_SIZE","features":[3]},{"name":"STATUS_TPM_20_E_MGF","features":[3]},{"name":"STATUS_TPM_20_E_MODE","features":[3]},{"name":"STATUS_TPM_20_E_NEEDS_TEST","features":[3]},{"name":"STATUS_TPM_20_E_NONCE","features":[3]},{"name":"STATUS_TPM_20_E_NO_RESULT","features":[3]},{"name":"STATUS_TPM_20_E_NV_AUTHORIZATION","features":[3]},{"name":"STATUS_TPM_20_E_NV_DEFINED","features":[3]},{"name":"STATUS_TPM_20_E_NV_LOCKED","features":[3]},{"name":"STATUS_TPM_20_E_NV_RANGE","features":[3]},{"name":"STATUS_TPM_20_E_NV_SIZE","features":[3]},{"name":"STATUS_TPM_20_E_NV_SPACE","features":[3]},{"name":"STATUS_TPM_20_E_NV_UNINITIALIZED","features":[3]},{"name":"STATUS_TPM_20_E_PARENT","features":[3]},{"name":"STATUS_TPM_20_E_PCR","features":[3]},{"name":"STATUS_TPM_20_E_PCR_CHANGED","features":[3]},{"name":"STATUS_TPM_20_E_POLICY","features":[3]},{"name":"STATUS_TPM_20_E_POLICY_CC","features":[3]},{"name":"STATUS_TPM_20_E_POLICY_FAIL","features":[3]},{"name":"STATUS_TPM_20_E_PP","features":[3]},{"name":"STATUS_TPM_20_E_PRIVATE","features":[3]},{"name":"STATUS_TPM_20_E_RANGE","features":[3]},{"name":"STATUS_TPM_20_E_REBOOT","features":[3]},{"name":"STATUS_TPM_20_E_RESERVED_BITS","features":[3]},{"name":"STATUS_TPM_20_E_SCHEME","features":[3]},{"name":"STATUS_TPM_20_E_SELECTOR","features":[3]},{"name":"STATUS_TPM_20_E_SENSITIVE","features":[3]},{"name":"STATUS_TPM_20_E_SEQUENCE","features":[3]},{"name":"STATUS_TPM_20_E_SIGNATURE","features":[3]},{"name":"STATUS_TPM_20_E_SIZE","features":[3]},{"name":"STATUS_TPM_20_E_SYMMETRIC","features":[3]},{"name":"STATUS_TPM_20_E_TAG","features":[3]},{"name":"STATUS_TPM_20_E_TICKET","features":[3]},{"name":"STATUS_TPM_20_E_TOO_MANY_CONTEXTS","features":[3]},{"name":"STATUS_TPM_20_E_TYPE","features":[3]},{"name":"STATUS_TPM_20_E_UNBALANCED","features":[3]},{"name":"STATUS_TPM_20_E_UPGRADE","features":[3]},{"name":"STATUS_TPM_20_E_VALUE","features":[3]},{"name":"STATUS_TPM_ACCESS_DENIED","features":[3]},{"name":"STATUS_TPM_AREA_LOCKED","features":[3]},{"name":"STATUS_TPM_AUDITFAILURE","features":[3]},{"name":"STATUS_TPM_AUDITFAIL_SUCCESSFUL","features":[3]},{"name":"STATUS_TPM_AUDITFAIL_UNSUCCESSFUL","features":[3]},{"name":"STATUS_TPM_AUTH2FAIL","features":[3]},{"name":"STATUS_TPM_AUTHFAIL","features":[3]},{"name":"STATUS_TPM_AUTH_CONFLICT","features":[3]},{"name":"STATUS_TPM_BADCONTEXT","features":[3]},{"name":"STATUS_TPM_BADINDEX","features":[3]},{"name":"STATUS_TPM_BADTAG","features":[3]},{"name":"STATUS_TPM_BAD_ATTRIBUTES","features":[3]},{"name":"STATUS_TPM_BAD_COUNTER","features":[3]},{"name":"STATUS_TPM_BAD_DATASIZE","features":[3]},{"name":"STATUS_TPM_BAD_DELEGATE","features":[3]},{"name":"STATUS_TPM_BAD_HANDLE","features":[3]},{"name":"STATUS_TPM_BAD_KEY_PROPERTY","features":[3]},{"name":"STATUS_TPM_BAD_LOCALITY","features":[3]},{"name":"STATUS_TPM_BAD_MIGRATION","features":[3]},{"name":"STATUS_TPM_BAD_MODE","features":[3]},{"name":"STATUS_TPM_BAD_ORDINAL","features":[3]},{"name":"STATUS_TPM_BAD_PARAMETER","features":[3]},{"name":"STATUS_TPM_BAD_PARAM_SIZE","features":[3]},{"name":"STATUS_TPM_BAD_PRESENCE","features":[3]},{"name":"STATUS_TPM_BAD_SCHEME","features":[3]},{"name":"STATUS_TPM_BAD_SIGNATURE","features":[3]},{"name":"STATUS_TPM_BAD_TYPE","features":[3]},{"name":"STATUS_TPM_BAD_VERSION","features":[3]},{"name":"STATUS_TPM_CLEAR_DISABLED","features":[3]},{"name":"STATUS_TPM_COMMAND_BLOCKED","features":[3]},{"name":"STATUS_TPM_COMMAND_CANCELED","features":[3]},{"name":"STATUS_TPM_CONTEXT_GAP","features":[3]},{"name":"STATUS_TPM_DAA_INPUT_DATA0","features":[3]},{"name":"STATUS_TPM_DAA_INPUT_DATA1","features":[3]},{"name":"STATUS_TPM_DAA_ISSUER_SETTINGS","features":[3]},{"name":"STATUS_TPM_DAA_ISSUER_VALIDITY","features":[3]},{"name":"STATUS_TPM_DAA_RESOURCES","features":[3]},{"name":"STATUS_TPM_DAA_STAGE","features":[3]},{"name":"STATUS_TPM_DAA_TPM_SETTINGS","features":[3]},{"name":"STATUS_TPM_DAA_WRONG_W","features":[3]},{"name":"STATUS_TPM_DEACTIVATED","features":[3]},{"name":"STATUS_TPM_DECRYPT_ERROR","features":[3]},{"name":"STATUS_TPM_DEFEND_LOCK_RUNNING","features":[3]},{"name":"STATUS_TPM_DELEGATE_ADMIN","features":[3]},{"name":"STATUS_TPM_DELEGATE_FAMILY","features":[3]},{"name":"STATUS_TPM_DELEGATE_LOCK","features":[3]},{"name":"STATUS_TPM_DISABLED","features":[3]},{"name":"STATUS_TPM_DISABLED_CMD","features":[3]},{"name":"STATUS_TPM_DOING_SELFTEST","features":[3]},{"name":"STATUS_TPM_DUPLICATE_VHANDLE","features":[3]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_BLOCKED","features":[3]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED","features":[3]},{"name":"STATUS_TPM_ENCRYPT_ERROR","features":[3]},{"name":"STATUS_TPM_ERROR_MASK","features":[3]},{"name":"STATUS_TPM_FAIL","features":[3]},{"name":"STATUS_TPM_FAILEDSELFTEST","features":[3]},{"name":"STATUS_TPM_FAMILYCOUNT","features":[3]},{"name":"STATUS_TPM_INAPPROPRIATE_ENC","features":[3]},{"name":"STATUS_TPM_INAPPROPRIATE_SIG","features":[3]},{"name":"STATUS_TPM_INSTALL_DISABLED","features":[3]},{"name":"STATUS_TPM_INSUFFICIENT_BUFFER","features":[3]},{"name":"STATUS_TPM_INVALID_AUTHHANDLE","features":[3]},{"name":"STATUS_TPM_INVALID_FAMILY","features":[3]},{"name":"STATUS_TPM_INVALID_HANDLE","features":[3]},{"name":"STATUS_TPM_INVALID_KEYHANDLE","features":[3]},{"name":"STATUS_TPM_INVALID_KEYUSAGE","features":[3]},{"name":"STATUS_TPM_INVALID_PCR_INFO","features":[3]},{"name":"STATUS_TPM_INVALID_POSTINIT","features":[3]},{"name":"STATUS_TPM_INVALID_RESOURCE","features":[3]},{"name":"STATUS_TPM_INVALID_STRUCTURE","features":[3]},{"name":"STATUS_TPM_IOERROR","features":[3]},{"name":"STATUS_TPM_KEYNOTFOUND","features":[3]},{"name":"STATUS_TPM_KEY_NOTSUPPORTED","features":[3]},{"name":"STATUS_TPM_KEY_OWNER_CONTROL","features":[3]},{"name":"STATUS_TPM_MAXNVWRITES","features":[3]},{"name":"STATUS_TPM_MA_AUTHORITY","features":[3]},{"name":"STATUS_TPM_MA_DESTINATION","features":[3]},{"name":"STATUS_TPM_MA_SOURCE","features":[3]},{"name":"STATUS_TPM_MA_TICKET_SIGNATURE","features":[3]},{"name":"STATUS_TPM_MIGRATEFAIL","features":[3]},{"name":"STATUS_TPM_NEEDS_SELFTEST","features":[3]},{"name":"STATUS_TPM_NOCONTEXTSPACE","features":[3]},{"name":"STATUS_TPM_NOOPERATOR","features":[3]},{"name":"STATUS_TPM_NOSPACE","features":[3]},{"name":"STATUS_TPM_NOSRK","features":[3]},{"name":"STATUS_TPM_NOTFIPS","features":[3]},{"name":"STATUS_TPM_NOTLOCAL","features":[3]},{"name":"STATUS_TPM_NOTRESETABLE","features":[3]},{"name":"STATUS_TPM_NOTSEALED_BLOB","features":[3]},{"name":"STATUS_TPM_NOT_FOUND","features":[3]},{"name":"STATUS_TPM_NOT_FULLWRITE","features":[3]},{"name":"STATUS_TPM_NO_ENDORSEMENT","features":[3]},{"name":"STATUS_TPM_NO_NV_PERMISSION","features":[3]},{"name":"STATUS_TPM_NO_WRAP_TRANSPORT","features":[3]},{"name":"STATUS_TPM_OWNER_CONTROL","features":[3]},{"name":"STATUS_TPM_OWNER_SET","features":[3]},{"name":"STATUS_TPM_PERMANENTEK","features":[3]},{"name":"STATUS_TPM_PER_NOWRITE","features":[3]},{"name":"STATUS_TPM_PPI_FUNCTION_UNSUPPORTED","features":[3]},{"name":"STATUS_TPM_READ_ONLY","features":[3]},{"name":"STATUS_TPM_REQUIRES_SIGN","features":[3]},{"name":"STATUS_TPM_RESOURCEMISSING","features":[3]},{"name":"STATUS_TPM_RESOURCES","features":[3]},{"name":"STATUS_TPM_RETRY","features":[3]},{"name":"STATUS_TPM_SHA_ERROR","features":[3]},{"name":"STATUS_TPM_SHA_THREAD","features":[3]},{"name":"STATUS_TPM_SHORTRANDOM","features":[3]},{"name":"STATUS_TPM_SIZE","features":[3]},{"name":"STATUS_TPM_TOOMANYCONTEXTS","features":[3]},{"name":"STATUS_TPM_TOO_MANY_CONTEXTS","features":[3]},{"name":"STATUS_TPM_TRANSPORT_NOTEXCLUSIVE","features":[3]},{"name":"STATUS_TPM_WRITE_LOCKED","features":[3]},{"name":"STATUS_TPM_WRONGPCRVAL","features":[3]},{"name":"STATUS_TPM_WRONG_ENTITYTYPE","features":[3]},{"name":"STATUS_TPM_ZERO_EXHAUST_ENABLED","features":[3]},{"name":"STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[3]},{"name":"STATUS_TRANSACTIONAL_CONFLICT","features":[3]},{"name":"STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[3]},{"name":"STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[3]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_FOUND","features":[3]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_ONLINE","features":[3]},{"name":"STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[3]},{"name":"STATUS_TRANSACTIONS_NOT_FROZEN","features":[3]},{"name":"STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[3]},{"name":"STATUS_TRANSACTION_ABORTED","features":[3]},{"name":"STATUS_TRANSACTION_ALREADY_ABORTED","features":[3]},{"name":"STATUS_TRANSACTION_ALREADY_COMMITTED","features":[3]},{"name":"STATUS_TRANSACTION_FREEZE_IN_PROGRESS","features":[3]},{"name":"STATUS_TRANSACTION_INTEGRITY_VIOLATED","features":[3]},{"name":"STATUS_TRANSACTION_INVALID_ID","features":[3]},{"name":"STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[3]},{"name":"STATUS_TRANSACTION_INVALID_TYPE","features":[3]},{"name":"STATUS_TRANSACTION_MUST_WRITETHROUGH","features":[3]},{"name":"STATUS_TRANSACTION_NOT_ACTIVE","features":[3]},{"name":"STATUS_TRANSACTION_NOT_ENLISTED","features":[3]},{"name":"STATUS_TRANSACTION_NOT_FOUND","features":[3]},{"name":"STATUS_TRANSACTION_NOT_JOINED","features":[3]},{"name":"STATUS_TRANSACTION_NOT_REQUESTED","features":[3]},{"name":"STATUS_TRANSACTION_NOT_ROOT","features":[3]},{"name":"STATUS_TRANSACTION_NO_MATCH","features":[3]},{"name":"STATUS_TRANSACTION_NO_RELEASE","features":[3]},{"name":"STATUS_TRANSACTION_NO_SUPERIOR","features":[3]},{"name":"STATUS_TRANSACTION_OBJECT_EXPIRED","features":[3]},{"name":"STATUS_TRANSACTION_PROPAGATION_FAILED","features":[3]},{"name":"STATUS_TRANSACTION_RECORD_TOO_LONG","features":[3]},{"name":"STATUS_TRANSACTION_REQUEST_NOT_VALID","features":[3]},{"name":"STATUS_TRANSACTION_REQUIRED_PROMOTION","features":[3]},{"name":"STATUS_TRANSACTION_RESPONDED","features":[3]},{"name":"STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[3]},{"name":"STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[3]},{"name":"STATUS_TRANSACTION_SUPERIOR_EXISTS","features":[3]},{"name":"STATUS_TRANSACTION_TIMED_OUT","features":[3]},{"name":"STATUS_TRANSLATION_COMPLETE","features":[3]},{"name":"STATUS_TRANSPORT_FULL","features":[3]},{"name":"STATUS_TRIGGERED_EXECUTABLE_MEMORY_WRITE","features":[3]},{"name":"STATUS_TRIM_READ_ZERO_NOT_SUPPORTED","features":[3]},{"name":"STATUS_TRUSTED_DOMAIN_FAILURE","features":[3]},{"name":"STATUS_TRUSTED_RELATIONSHIP_FAILURE","features":[3]},{"name":"STATUS_TRUST_FAILURE","features":[3]},{"name":"STATUS_TS_INCOMPATIBLE_SESSIONS","features":[3]},{"name":"STATUS_TS_VIDEO_SUBSYSTEM_ERROR","features":[3]},{"name":"STATUS_TXF_ATTRIBUTE_CORRUPT","features":[3]},{"name":"STATUS_TXF_DIR_NOT_EMPTY","features":[3]},{"name":"STATUS_TXF_METADATA_ALREADY_PRESENT","features":[3]},{"name":"STATUS_UNABLE_TO_DECOMMIT_VM","features":[3]},{"name":"STATUS_UNABLE_TO_DELETE_SECTION","features":[3]},{"name":"STATUS_UNABLE_TO_FREE_VM","features":[3]},{"name":"STATUS_UNABLE_TO_LOCK_MEDIA","features":[3]},{"name":"STATUS_UNABLE_TO_UNLOAD_MEDIA","features":[3]},{"name":"STATUS_UNDEFINED_CHARACTER","features":[3]},{"name":"STATUS_UNDEFINED_SCOPE","features":[3]},{"name":"STATUS_UNEXPECTED_IO_ERROR","features":[3]},{"name":"STATUS_UNEXPECTED_MM_CREATE_ERR","features":[3]},{"name":"STATUS_UNEXPECTED_MM_EXTEND_ERR","features":[3]},{"name":"STATUS_UNEXPECTED_MM_MAP_ERROR","features":[3]},{"name":"STATUS_UNEXPECTED_NETWORK_ERROR","features":[3]},{"name":"STATUS_UNFINISHED_CONTEXT_DELETED","features":[3]},{"name":"STATUS_UNHANDLED_EXCEPTION","features":[3]},{"name":"STATUS_UNKNOWN_REVISION","features":[3]},{"name":"STATUS_UNMAPPABLE_CHARACTER","features":[3]},{"name":"STATUS_UNRECOGNIZED_MEDIA","features":[3]},{"name":"STATUS_UNRECOGNIZED_VOLUME","features":[3]},{"name":"STATUS_UNSATISFIED_DEPENDENCIES","features":[3]},{"name":"STATUS_UNSUCCESSFUL","features":[3]},{"name":"STATUS_UNSUPPORTED_COMPRESSION","features":[3]},{"name":"STATUS_UNSUPPORTED_PAGING_MODE","features":[3]},{"name":"STATUS_UNSUPPORTED_PREAUTH","features":[3]},{"name":"STATUS_UNTRUSTED_MOUNT_POINT","features":[3]},{"name":"STATUS_UNWIND","features":[3]},{"name":"STATUS_UNWIND_CONSOLIDATE","features":[3]},{"name":"STATUS_USER2USER_REQUIRED","features":[3]},{"name":"STATUS_USER_APC","features":[3]},{"name":"STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[3]},{"name":"STATUS_USER_EXISTS","features":[3]},{"name":"STATUS_USER_MAPPED_FILE","features":[3]},{"name":"STATUS_USER_SESSION_DELETED","features":[3]},{"name":"STATUS_VALIDATE_CONTINUE","features":[3]},{"name":"STATUS_VALID_CATALOG_HASH","features":[3]},{"name":"STATUS_VALID_IMAGE_HASH","features":[3]},{"name":"STATUS_VALID_STRONG_CODE_HASH","features":[3]},{"name":"STATUS_VARIABLE_NOT_FOUND","features":[3]},{"name":"STATUS_VDM_DISALLOWED","features":[3]},{"name":"STATUS_VDM_HARD_ERROR","features":[3]},{"name":"STATUS_VERIFIER_STOP","features":[3]},{"name":"STATUS_VERIFY_REQUIRED","features":[3]},{"name":"STATUS_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[3]},{"name":"STATUS_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[3]},{"name":"STATUS_VHD_BITMAP_MISMATCH","features":[3]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_FAILURE","features":[3]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[3]},{"name":"STATUS_VHD_CHANGE_TRACKING_DISABLED","features":[3]},{"name":"STATUS_VHD_CHILD_PARENT_ID_MISMATCH","features":[3]},{"name":"STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[3]},{"name":"STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[3]},{"name":"STATUS_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[3]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[3]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[3]},{"name":"STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[3]},{"name":"STATUS_VHD_DRIVE_FOOTER_CORRUPT","features":[3]},{"name":"STATUS_VHD_DRIVE_FOOTER_MISSING","features":[3]},{"name":"STATUS_VHD_FORMAT_UNKNOWN","features":[3]},{"name":"STATUS_VHD_FORMAT_UNSUPPORTED_VERSION","features":[3]},{"name":"STATUS_VHD_INVALID_BLOCK_SIZE","features":[3]},{"name":"STATUS_VHD_INVALID_CHANGE_TRACKING_ID","features":[3]},{"name":"STATUS_VHD_INVALID_FILE_SIZE","features":[3]},{"name":"STATUS_VHD_INVALID_SIZE","features":[3]},{"name":"STATUS_VHD_INVALID_STATE","features":[3]},{"name":"STATUS_VHD_INVALID_TYPE","features":[3]},{"name":"STATUS_VHD_METADATA_FULL","features":[3]},{"name":"STATUS_VHD_METADATA_READ_FAILURE","features":[3]},{"name":"STATUS_VHD_METADATA_WRITE_FAILURE","features":[3]},{"name":"STATUS_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[3]},{"name":"STATUS_VHD_PARENT_VHD_ACCESS_DENIED","features":[3]},{"name":"STATUS_VHD_PARENT_VHD_NOT_FOUND","features":[3]},{"name":"STATUS_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[3]},{"name":"STATUS_VHD_SHARED","features":[3]},{"name":"STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[3]},{"name":"STATUS_VHD_SPARSE_HEADER_CORRUPT","features":[3]},{"name":"STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[3]},{"name":"STATUS_VHD_UNEXPECTED_ID","features":[3]},{"name":"STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[3]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD","features":[3]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED","features":[3]},{"name":"STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[3]},{"name":"STATUS_VID_DUPLICATE_HANDLER","features":[3]},{"name":"STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[3]},{"name":"STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[3]},{"name":"STATUS_VID_HANDLER_NOT_PRESENT","features":[3]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[3]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[3]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[3]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[3]},{"name":"STATUS_VID_INVALID_CHILD_GPA_PAGE_SET","features":[3]},{"name":"STATUS_VID_INVALID_GPA_RANGE_HANDLE","features":[3]},{"name":"STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[3]},{"name":"STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[3]},{"name":"STATUS_VID_INVALID_NUMA_NODE_INDEX","features":[3]},{"name":"STATUS_VID_INVALID_NUMA_SETTINGS","features":[3]},{"name":"STATUS_VID_INVALID_OBJECT_NAME","features":[3]},{"name":"STATUS_VID_INVALID_PPM_HANDLE","features":[3]},{"name":"STATUS_VID_INVALID_PROCESSOR_STATE","features":[3]},{"name":"STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[3]},{"name":"STATUS_VID_MBPS_ARE_LOCKED","features":[3]},{"name":"STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[3]},{"name":"STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[3]},{"name":"STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[3]},{"name":"STATUS_VID_MB_STILL_REFERENCED","features":[3]},{"name":"STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[3]},{"name":"STATUS_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[3]},{"name":"STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[3]},{"name":"STATUS_VID_MESSAGE_QUEUE_CLOSED","features":[3]},{"name":"STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[3]},{"name":"STATUS_VID_MMIO_RANGE_DESTROYED","features":[3]},{"name":"STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[3]},{"name":"STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[3]},{"name":"STATUS_VID_PAGE_RANGE_OVERFLOW","features":[3]},{"name":"STATUS_VID_PARTITION_ALREADY_EXISTS","features":[3]},{"name":"STATUS_VID_PARTITION_DOES_NOT_EXIST","features":[3]},{"name":"STATUS_VID_PARTITION_NAME_NOT_FOUND","features":[3]},{"name":"STATUS_VID_PARTITION_NAME_TOO_LONG","features":[3]},{"name":"STATUS_VID_PROCESS_ALREADY_SET","features":[3]},{"name":"STATUS_VID_QUEUE_FULL","features":[3]},{"name":"STATUS_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[3]},{"name":"STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[3]},{"name":"STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[3]},{"name":"STATUS_VID_SAVED_STATE_CORRUPT","features":[3]},{"name":"STATUS_VID_SAVED_STATE_INCOMPATIBLE","features":[3]},{"name":"STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[3]},{"name":"STATUS_VID_STOP_PENDING","features":[3]},{"name":"STATUS_VID_TOO_MANY_HANDLERS","features":[3]},{"name":"STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[3]},{"name":"STATUS_VID_VTL_ACCESS_DENIED","features":[3]},{"name":"STATUS_VIRTDISK_DISK_ALREADY_OWNED","features":[3]},{"name":"STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[3]},{"name":"STATUS_VIRTDISK_NOT_VIRTUAL_DISK","features":[3]},{"name":"STATUS_VIRTDISK_PROVIDER_NOT_FOUND","features":[3]},{"name":"STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[3]},{"name":"STATUS_VIRTUAL_CIRCUIT_CLOSED","features":[3]},{"name":"STATUS_VIRTUAL_DISK_LIMITATION","features":[3]},{"name":"STATUS_VIRUS_DELETED","features":[3]},{"name":"STATUS_VIRUS_INFECTED","features":[3]},{"name":"STATUS_VOLMGR_ALL_DISKS_FAILED","features":[3]},{"name":"STATUS_VOLMGR_BAD_BOOT_DISK","features":[3]},{"name":"STATUS_VOLMGR_DATABASE_FULL","features":[3]},{"name":"STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[3]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[3]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[3]},{"name":"STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[3]},{"name":"STATUS_VOLMGR_DISK_DUPLICATE","features":[3]},{"name":"STATUS_VOLMGR_DISK_DYNAMIC","features":[3]},{"name":"STATUS_VOLMGR_DISK_ID_INVALID","features":[3]},{"name":"STATUS_VOLMGR_DISK_INVALID","features":[3]},{"name":"STATUS_VOLMGR_DISK_LAST_VOTER","features":[3]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_INVALID","features":[3]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[3]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[3]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[3]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[3]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[3]},{"name":"STATUS_VOLMGR_DISK_MISSING","features":[3]},{"name":"STATUS_VOLMGR_DISK_NOT_EMPTY","features":[3]},{"name":"STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[3]},{"name":"STATUS_VOLMGR_DISK_REVECTORING_FAILED","features":[3]},{"name":"STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[3]},{"name":"STATUS_VOLMGR_DISK_SET_NOT_CONTAINED","features":[3]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[3]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[3]},{"name":"STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[3]},{"name":"STATUS_VOLMGR_EXTENT_ALREADY_USED","features":[3]},{"name":"STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[3]},{"name":"STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[3]},{"name":"STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[3]},{"name":"STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[3]},{"name":"STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[3]},{"name":"STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[3]},{"name":"STATUS_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[3]},{"name":"STATUS_VOLMGR_INCOMPLETE_REGENERATION","features":[3]},{"name":"STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[3]},{"name":"STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[3]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[3]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_INVALID","features":[3]},{"name":"STATUS_VOLMGR_MEMBER_IN_SYNC","features":[3]},{"name":"STATUS_VOLMGR_MEMBER_MISSING","features":[3]},{"name":"STATUS_VOLMGR_MEMBER_NOT_DETACHED","features":[3]},{"name":"STATUS_VOLMGR_MEMBER_REGENERATING","features":[3]},{"name":"STATUS_VOLMGR_MIRROR_NOT_SUPPORTED","features":[3]},{"name":"STATUS_VOLMGR_NOTIFICATION_RESET","features":[3]},{"name":"STATUS_VOLMGR_NOT_PRIMARY_PACK","features":[3]},{"name":"STATUS_VOLMGR_NO_REGISTERED_USERS","features":[3]},{"name":"STATUS_VOLMGR_NO_SUCH_USER","features":[3]},{"name":"STATUS_VOLMGR_NO_VALID_LOG_COPIES","features":[3]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[3]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[3]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[3]},{"name":"STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[3]},{"name":"STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[3]},{"name":"STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[3]},{"name":"STATUS_VOLMGR_PACK_CONFIG_OFFLINE","features":[3]},{"name":"STATUS_VOLMGR_PACK_CONFIG_ONLINE","features":[3]},{"name":"STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[3]},{"name":"STATUS_VOLMGR_PACK_DUPLICATE","features":[3]},{"name":"STATUS_VOLMGR_PACK_HAS_QUORUM","features":[3]},{"name":"STATUS_VOLMGR_PACK_ID_INVALID","features":[3]},{"name":"STATUS_VOLMGR_PACK_INVALID","features":[3]},{"name":"STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[3]},{"name":"STATUS_VOLMGR_PACK_NAME_INVALID","features":[3]},{"name":"STATUS_VOLMGR_PACK_OFFLINE","features":[3]},{"name":"STATUS_VOLMGR_PACK_WITHOUT_QUORUM","features":[3]},{"name":"STATUS_VOLMGR_PARTITION_STYLE_INVALID","features":[3]},{"name":"STATUS_VOLMGR_PARTITION_UPDATE_FAILED","features":[3]},{"name":"STATUS_VOLMGR_PLEX_INDEX_DUPLICATE","features":[3]},{"name":"STATUS_VOLMGR_PLEX_INDEX_INVALID","features":[3]},{"name":"STATUS_VOLMGR_PLEX_IN_SYNC","features":[3]},{"name":"STATUS_VOLMGR_PLEX_LAST_ACTIVE","features":[3]},{"name":"STATUS_VOLMGR_PLEX_MISSING","features":[3]},{"name":"STATUS_VOLMGR_PLEX_NOT_RAID5","features":[3]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE","features":[3]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[3]},{"name":"STATUS_VOLMGR_PLEX_REGENERATING","features":[3]},{"name":"STATUS_VOLMGR_PLEX_TYPE_INVALID","features":[3]},{"name":"STATUS_VOLMGR_PRIMARY_PACK_PRESENT","features":[3]},{"name":"STATUS_VOLMGR_RAID5_NOT_SUPPORTED","features":[3]},{"name":"STATUS_VOLMGR_STRUCTURE_SIZE_INVALID","features":[3]},{"name":"STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[3]},{"name":"STATUS_VOLMGR_TRANSACTION_IN_PROGRESS","features":[3]},{"name":"STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_ID_INVALID","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_INVALID","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_MIRRORED","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_NOT_MIRRORED","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_NOT_RETAINED","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_OFFLINE","features":[3]},{"name":"STATUS_VOLMGR_VOLUME_RETAINED","features":[3]},{"name":"STATUS_VOLSNAP_ACTIVATION_TIMEOUT","features":[3]},{"name":"STATUS_VOLSNAP_BOOTFILE_NOT_VALID","features":[3]},{"name":"STATUS_VOLSNAP_HIBERNATE_READY","features":[3]},{"name":"STATUS_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[3]},{"name":"STATUS_VOLSNAP_PREPARE_HIBERNATE","features":[3]},{"name":"STATUS_VOLUME_DIRTY","features":[3]},{"name":"STATUS_VOLUME_DISMOUNTED","features":[3]},{"name":"STATUS_VOLUME_MOUNTED","features":[3]},{"name":"STATUS_VOLUME_NOT_CLUSTER_ALIGNED","features":[3]},{"name":"STATUS_VOLUME_NOT_SUPPORTED","features":[3]},{"name":"STATUS_VOLUME_NOT_UPGRADED","features":[3]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED","features":[3]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[3]},{"name":"STATUS_VOLUME_UPGRADE_NOT_NEEDED","features":[3]},{"name":"STATUS_VOLUME_UPGRADE_PENDING","features":[3]},{"name":"STATUS_VOLUME_WRITE_ACCESS_DENIED","features":[3]},{"name":"STATUS_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[3]},{"name":"STATUS_VRF_VOLATILE_NMI_REGISTERED","features":[3]},{"name":"STATUS_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[3]},{"name":"STATUS_VRF_VOLATILE_NOT_STOPPABLE","features":[3]},{"name":"STATUS_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[3]},{"name":"STATUS_VRF_VOLATILE_PROTECTED_DRIVER","features":[3]},{"name":"STATUS_VRF_VOLATILE_SAFE_MODE","features":[3]},{"name":"STATUS_VRF_VOLATILE_SETTINGS_CONFLICT","features":[3]},{"name":"STATUS_VSM_DMA_PROTECTION_NOT_IN_USE","features":[3]},{"name":"STATUS_VSM_NOT_INITIALIZED","features":[3]},{"name":"STATUS_WAIT_0","features":[3]},{"name":"STATUS_WAIT_1","features":[3]},{"name":"STATUS_WAIT_2","features":[3]},{"name":"STATUS_WAIT_3","features":[3]},{"name":"STATUS_WAIT_63","features":[3]},{"name":"STATUS_WAIT_FOR_OPLOCK","features":[3]},{"name":"STATUS_WAKE_SYSTEM","features":[3]},{"name":"STATUS_WAKE_SYSTEM_DEBUGGER","features":[3]},{"name":"STATUS_WAS_LOCKED","features":[3]},{"name":"STATUS_WAS_UNLOCKED","features":[3]},{"name":"STATUS_WEAK_WHFBKEY_BLOCKED","features":[3]},{"name":"STATUS_WIM_NOT_BOOTABLE","features":[3]},{"name":"STATUS_WMI_ALREADY_DISABLED","features":[3]},{"name":"STATUS_WMI_ALREADY_ENABLED","features":[3]},{"name":"STATUS_WMI_GUID_DISCONNECTED","features":[3]},{"name":"STATUS_WMI_GUID_NOT_FOUND","features":[3]},{"name":"STATUS_WMI_INSTANCE_NOT_FOUND","features":[3]},{"name":"STATUS_WMI_ITEMID_NOT_FOUND","features":[3]},{"name":"STATUS_WMI_NOT_SUPPORTED","features":[3]},{"name":"STATUS_WMI_READ_ONLY","features":[3]},{"name":"STATUS_WMI_SET_FAILURE","features":[3]},{"name":"STATUS_WMI_TRY_AGAIN","features":[3]},{"name":"STATUS_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[3]},{"name":"STATUS_WOF_WIM_HEADER_CORRUPT","features":[3]},{"name":"STATUS_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[3]},{"name":"STATUS_WORKING_SET_LIMIT_RANGE","features":[3]},{"name":"STATUS_WORKING_SET_QUOTA","features":[3]},{"name":"STATUS_WOW_ASSERTION","features":[3]},{"name":"STATUS_WRONG_COMPARTMENT","features":[3]},{"name":"STATUS_WRONG_CREDENTIAL_HANDLE","features":[3]},{"name":"STATUS_WRONG_EFS","features":[3]},{"name":"STATUS_WRONG_PASSWORD_CORE","features":[3]},{"name":"STATUS_WRONG_VOLUME","features":[3]},{"name":"STATUS_WX86_BREAKPOINT","features":[3]},{"name":"STATUS_WX86_CONTINUE","features":[3]},{"name":"STATUS_WX86_CREATEWX86TIB","features":[3]},{"name":"STATUS_WX86_EXCEPTION_CHAIN","features":[3]},{"name":"STATUS_WX86_EXCEPTION_CONTINUE","features":[3]},{"name":"STATUS_WX86_EXCEPTION_LASTCHANCE","features":[3]},{"name":"STATUS_WX86_FLOAT_STACK_CHECK","features":[3]},{"name":"STATUS_WX86_INTERNAL_ERROR","features":[3]},{"name":"STATUS_WX86_SINGLE_STEP","features":[3]},{"name":"STATUS_WX86_UNSIMULATE","features":[3]},{"name":"STATUS_XMLDSIG_ERROR","features":[3]},{"name":"STATUS_XML_ENCODING_MISMATCH","features":[3]},{"name":"STATUS_XML_PARSE_ERROR","features":[3]},{"name":"STG_E_ABNORMALAPIEXIT","features":[3]},{"name":"STG_E_ACCESSDENIED","features":[3]},{"name":"STG_E_BADBASEADDRESS","features":[3]},{"name":"STG_E_CANTSAVE","features":[3]},{"name":"STG_E_CSS_AUTHENTICATION_FAILURE","features":[3]},{"name":"STG_E_CSS_KEY_NOT_ESTABLISHED","features":[3]},{"name":"STG_E_CSS_KEY_NOT_PRESENT","features":[3]},{"name":"STG_E_CSS_REGION_MISMATCH","features":[3]},{"name":"STG_E_CSS_SCRAMBLED_SECTOR","features":[3]},{"name":"STG_E_DEVICE_UNRESPONSIVE","features":[3]},{"name":"STG_E_DISKISWRITEPROTECTED","features":[3]},{"name":"STG_E_DOCFILECORRUPT","features":[3]},{"name":"STG_E_DOCFILETOOLARGE","features":[3]},{"name":"STG_E_EXTANTMARSHALLINGS","features":[3]},{"name":"STG_E_FILEALREADYEXISTS","features":[3]},{"name":"STG_E_FILENOTFOUND","features":[3]},{"name":"STG_E_FIRMWARE_IMAGE_INVALID","features":[3]},{"name":"STG_E_FIRMWARE_SLOT_INVALID","features":[3]},{"name":"STG_E_INCOMPLETE","features":[3]},{"name":"STG_E_INSUFFICIENTMEMORY","features":[3]},{"name":"STG_E_INUSE","features":[3]},{"name":"STG_E_INVALIDFLAG","features":[3]},{"name":"STG_E_INVALIDFUNCTION","features":[3]},{"name":"STG_E_INVALIDHANDLE","features":[3]},{"name":"STG_E_INVALIDHEADER","features":[3]},{"name":"STG_E_INVALIDNAME","features":[3]},{"name":"STG_E_INVALIDPARAMETER","features":[3]},{"name":"STG_E_INVALIDPOINTER","features":[3]},{"name":"STG_E_LOCKVIOLATION","features":[3]},{"name":"STG_E_MEDIUMFULL","features":[3]},{"name":"STG_E_NOMOREFILES","features":[3]},{"name":"STG_E_NOTCURRENT","features":[3]},{"name":"STG_E_NOTFILEBASEDSTORAGE","features":[3]},{"name":"STG_E_NOTSIMPLEFORMAT","features":[3]},{"name":"STG_E_OLDDLL","features":[3]},{"name":"STG_E_OLDFORMAT","features":[3]},{"name":"STG_E_PATHNOTFOUND","features":[3]},{"name":"STG_E_PROPSETMISMATCHED","features":[3]},{"name":"STG_E_READFAULT","features":[3]},{"name":"STG_E_RESETS_EXHAUSTED","features":[3]},{"name":"STG_E_REVERTED","features":[3]},{"name":"STG_E_SEEKERROR","features":[3]},{"name":"STG_E_SHAREREQUIRED","features":[3]},{"name":"STG_E_SHAREVIOLATION","features":[3]},{"name":"STG_E_STATUS_COPY_PROTECTION_FAILURE","features":[3]},{"name":"STG_E_TERMINATED","features":[3]},{"name":"STG_E_TOOMANYOPENFILES","features":[3]},{"name":"STG_E_UNIMPLEMENTEDFUNCTION","features":[3]},{"name":"STG_E_UNKNOWN","features":[3]},{"name":"STG_E_WRITEFAULT","features":[3]},{"name":"STG_S_BLOCK","features":[3]},{"name":"STG_S_CANNOTCONSOLIDATE","features":[3]},{"name":"STG_S_CONSOLIDATIONFAILED","features":[3]},{"name":"STG_S_CONVERTED","features":[3]},{"name":"STG_S_MONITORING","features":[3]},{"name":"STG_S_MULTIPLEOPENS","features":[3]},{"name":"STG_S_POWER_CYCLE_REQUIRED","features":[3]},{"name":"STG_S_RETRYNOW","features":[3]},{"name":"STILL_ACTIVE","features":[3]},{"name":"STORE_ERROR_LICENSE_REVOKED","features":[3]},{"name":"STORE_ERROR_PENDING_COM_TRANSACTION","features":[3]},{"name":"STORE_ERROR_UNLICENSED","features":[3]},{"name":"STORE_ERROR_UNLICENSED_USER","features":[3]},{"name":"STRICT","features":[3]},{"name":"SUCCESS","features":[3]},{"name":"SYSTEMTIME","features":[3]},{"name":"S_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG","features":[3]},{"name":"S_FALSE","features":[3]},{"name":"S_OK","features":[3]},{"name":"S_STORE_LAUNCHED_FOR_REMEDIATION","features":[3]},{"name":"SetHandleInformation","features":[3]},{"name":"SetLastError","features":[3]},{"name":"SetLastErrorEx","features":[3]},{"name":"SysAddRefString","features":[3]},{"name":"SysAllocString","features":[3]},{"name":"SysAllocStringByteLen","features":[3]},{"name":"SysAllocStringLen","features":[3]},{"name":"SysFreeString","features":[3]},{"name":"SysReAllocString","features":[3]},{"name":"SysReAllocStringLen","features":[3]},{"name":"SysReleaseString","features":[3]},{"name":"SysStringByteLen","features":[3]},{"name":"SysStringLen","features":[3]},{"name":"TBSIMP_E_BUFFER_TOO_SMALL","features":[3]},{"name":"TBSIMP_E_CLEANUP_FAILED","features":[3]},{"name":"TBSIMP_E_COMMAND_CANCELED","features":[3]},{"name":"TBSIMP_E_COMMAND_FAILED","features":[3]},{"name":"TBSIMP_E_DUPLICATE_VHANDLE","features":[3]},{"name":"TBSIMP_E_HASH_BAD_KEY","features":[3]},{"name":"TBSIMP_E_HASH_TABLE_FULL","features":[3]},{"name":"TBSIMP_E_INVALID_CONTEXT_HANDLE","features":[3]},{"name":"TBSIMP_E_INVALID_CONTEXT_PARAM","features":[3]},{"name":"TBSIMP_E_INVALID_OUTPUT_POINTER","features":[3]},{"name":"TBSIMP_E_INVALID_PARAMETER","features":[3]},{"name":"TBSIMP_E_INVALID_RESOURCE","features":[3]},{"name":"TBSIMP_E_LIST_NOT_FOUND","features":[3]},{"name":"TBSIMP_E_LIST_NO_MORE_ITEMS","features":[3]},{"name":"TBSIMP_E_NOTHING_TO_UNLOAD","features":[3]},{"name":"TBSIMP_E_NOT_ENOUGH_SPACE","features":[3]},{"name":"TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS","features":[3]},{"name":"TBSIMP_E_NO_EVENT_LOG","features":[3]},{"name":"TBSIMP_E_OUT_OF_MEMORY","features":[3]},{"name":"TBSIMP_E_PPI_NOT_SUPPORTED","features":[3]},{"name":"TBSIMP_E_RESOURCE_EXPIRED","features":[3]},{"name":"TBSIMP_E_RPC_INIT_FAILED","features":[3]},{"name":"TBSIMP_E_SCHEDULER_NOT_RUNNING","features":[3]},{"name":"TBSIMP_E_TOO_MANY_RESOURCES","features":[3]},{"name":"TBSIMP_E_TOO_MANY_TBS_CONTEXTS","features":[3]},{"name":"TBSIMP_E_TPM_ERROR","features":[3]},{"name":"TBSIMP_E_TPM_INCOMPATIBLE","features":[3]},{"name":"TBSIMP_E_UNKNOWN_ORDINAL","features":[3]},{"name":"TBS_E_ACCESS_DENIED","features":[3]},{"name":"TBS_E_BAD_PARAMETER","features":[3]},{"name":"TBS_E_BUFFER_TOO_LARGE","features":[3]},{"name":"TBS_E_COMMAND_CANCELED","features":[3]},{"name":"TBS_E_INSUFFICIENT_BUFFER","features":[3]},{"name":"TBS_E_INTERNAL_ERROR","features":[3]},{"name":"TBS_E_INVALID_CONTEXT","features":[3]},{"name":"TBS_E_INVALID_CONTEXT_PARAM","features":[3]},{"name":"TBS_E_INVALID_OUTPUT_POINTER","features":[3]},{"name":"TBS_E_IOERROR","features":[3]},{"name":"TBS_E_NO_EVENT_LOG","features":[3]},{"name":"TBS_E_OWNERAUTH_NOT_FOUND","features":[3]},{"name":"TBS_E_PPI_FUNCTION_UNSUPPORTED","features":[3]},{"name":"TBS_E_PPI_NOT_SUPPORTED","features":[3]},{"name":"TBS_E_PROVISIONING_INCOMPLETE","features":[3]},{"name":"TBS_E_PROVISIONING_NOT_ALLOWED","features":[3]},{"name":"TBS_E_SERVICE_DISABLED","features":[3]},{"name":"TBS_E_SERVICE_NOT_RUNNING","features":[3]},{"name":"TBS_E_SERVICE_START_PENDING","features":[3]},{"name":"TBS_E_TOO_MANY_RESOURCES","features":[3]},{"name":"TBS_E_TOO_MANY_TBS_CONTEXTS","features":[3]},{"name":"TBS_E_TPM_NOT_FOUND","features":[3]},{"name":"TPC_E_INITIALIZE_FAIL","features":[3]},{"name":"TPC_E_INVALID_CONFIGURATION","features":[3]},{"name":"TPC_E_INVALID_DATA_FROM_RECOGNIZER","features":[3]},{"name":"TPC_E_INVALID_INPUT_RECT","features":[3]},{"name":"TPC_E_INVALID_PACKET_DESCRIPTION","features":[3]},{"name":"TPC_E_INVALID_PROPERTY","features":[3]},{"name":"TPC_E_INVALID_RIGHTS","features":[3]},{"name":"TPC_E_INVALID_STROKE","features":[3]},{"name":"TPC_E_NOT_RELEVANT","features":[3]},{"name":"TPC_E_NO_DEFAULT_TABLET","features":[3]},{"name":"TPC_E_OUT_OF_ORDER_CALL","features":[3]},{"name":"TPC_E_QUEUE_FULL","features":[3]},{"name":"TPC_E_RECOGNIZER_NOT_REGISTERED","features":[3]},{"name":"TPC_E_UNKNOWN_PROPERTY","features":[3]},{"name":"TPC_S_INTERRUPTED","features":[3]},{"name":"TPC_S_NO_DATA_TO_PROCESS","features":[3]},{"name":"TPC_S_TRUNCATED","features":[3]},{"name":"TPMAPI_E_ACCESS_DENIED","features":[3]},{"name":"TPMAPI_E_AUTHORIZATION_FAILED","features":[3]},{"name":"TPMAPI_E_AUTHORIZATION_REVOKED","features":[3]},{"name":"TPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED","features":[3]},{"name":"TPMAPI_E_BUFFER_TOO_SMALL","features":[3]},{"name":"TPMAPI_E_EMPTY_TCG_LOG","features":[3]},{"name":"TPMAPI_E_ENCRYPTION_FAILED","features":[3]},{"name":"TPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL","features":[3]},{"name":"TPMAPI_E_FIPS_RNG_CHECK_FAILED","features":[3]},{"name":"TPMAPI_E_INTERNAL_ERROR","features":[3]},{"name":"TPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE","features":[3]},{"name":"TPMAPI_E_INVALID_CONTEXT_HANDLE","features":[3]},{"name":"TPMAPI_E_INVALID_CONTEXT_PARAMS","features":[3]},{"name":"TPMAPI_E_INVALID_DELEGATE_BLOB","features":[3]},{"name":"TPMAPI_E_INVALID_ENCODING","features":[3]},{"name":"TPMAPI_E_INVALID_KEY_BLOB","features":[3]},{"name":"TPMAPI_E_INVALID_KEY_PARAMS","features":[3]},{"name":"TPMAPI_E_INVALID_KEY_SIZE","features":[3]},{"name":"TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB","features":[3]},{"name":"TPMAPI_E_INVALID_OUTPUT_POINTER","features":[3]},{"name":"TPMAPI_E_INVALID_OWNER_AUTH","features":[3]},{"name":"TPMAPI_E_INVALID_PARAMETER","features":[3]},{"name":"TPMAPI_E_INVALID_PCR_DATA","features":[3]},{"name":"TPMAPI_E_INVALID_PCR_INDEX","features":[3]},{"name":"TPMAPI_E_INVALID_POLICYAUTH_BLOB_TYPE","features":[3]},{"name":"TPMAPI_E_INVALID_STATE","features":[3]},{"name":"TPMAPI_E_INVALID_TCG_LOG_ENTRY","features":[3]},{"name":"TPMAPI_E_INVALID_TPM_VERSION","features":[3]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_KEY","features":[3]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_OTHER","features":[3]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_POLICY","features":[3]},{"name":"TPMAPI_E_MESSAGE_TOO_LARGE","features":[3]},{"name":"TPMAPI_E_NOT_ENOUGH_DATA","features":[3]},{"name":"TPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND","features":[3]},{"name":"TPMAPI_E_NV_BITS_NOT_DEFINED","features":[3]},{"name":"TPMAPI_E_NV_BITS_NOT_READY","features":[3]},{"name":"TPMAPI_E_OUT_OF_MEMORY","features":[3]},{"name":"TPMAPI_E_OWNER_AUTH_NOT_NULL","features":[3]},{"name":"TPMAPI_E_POLICY_DENIES_OPERATION","features":[3]},{"name":"TPMAPI_E_SEALING_KEY_CHANGED","features":[3]},{"name":"TPMAPI_E_SEALING_KEY_NOT_AVAILABLE","features":[3]},{"name":"TPMAPI_E_SVN_COUNTER_NOT_AVAILABLE","features":[3]},{"name":"TPMAPI_E_TBS_COMMUNICATION_ERROR","features":[3]},{"name":"TPMAPI_E_TCG_INVALID_DIGEST_ENTRY","features":[3]},{"name":"TPMAPI_E_TCG_SEPARATOR_ABSENT","features":[3]},{"name":"TPMAPI_E_TOO_MUCH_DATA","features":[3]},{"name":"TPMAPI_E_TPM_COMMAND_ERROR","features":[3]},{"name":"TPM_20_E_ASYMMETRIC","features":[3]},{"name":"TPM_20_E_ATTRIBUTES","features":[3]},{"name":"TPM_20_E_AUTHSIZE","features":[3]},{"name":"TPM_20_E_AUTH_CONTEXT","features":[3]},{"name":"TPM_20_E_AUTH_FAIL","features":[3]},{"name":"TPM_20_E_AUTH_MISSING","features":[3]},{"name":"TPM_20_E_AUTH_TYPE","features":[3]},{"name":"TPM_20_E_AUTH_UNAVAILABLE","features":[3]},{"name":"TPM_20_E_BAD_AUTH","features":[3]},{"name":"TPM_20_E_BAD_CONTEXT","features":[3]},{"name":"TPM_20_E_BINDING","features":[3]},{"name":"TPM_20_E_CANCELED","features":[3]},{"name":"TPM_20_E_COMMAND_CODE","features":[3]},{"name":"TPM_20_E_COMMAND_SIZE","features":[3]},{"name":"TPM_20_E_CONTEXT_GAP","features":[3]},{"name":"TPM_20_E_CPHASH","features":[3]},{"name":"TPM_20_E_CURVE","features":[3]},{"name":"TPM_20_E_DISABLED","features":[3]},{"name":"TPM_20_E_ECC_CURVE","features":[3]},{"name":"TPM_20_E_ECC_POINT","features":[3]},{"name":"TPM_20_E_EXCLUSIVE","features":[3]},{"name":"TPM_20_E_EXPIRED","features":[3]},{"name":"TPM_20_E_FAILURE","features":[3]},{"name":"TPM_20_E_HANDLE","features":[3]},{"name":"TPM_20_E_HASH","features":[3]},{"name":"TPM_20_E_HIERARCHY","features":[3]},{"name":"TPM_20_E_HMAC","features":[3]},{"name":"TPM_20_E_INITIALIZE","features":[3]},{"name":"TPM_20_E_INSUFFICIENT","features":[3]},{"name":"TPM_20_E_INTEGRITY","features":[3]},{"name":"TPM_20_E_KDF","features":[3]},{"name":"TPM_20_E_KEY","features":[3]},{"name":"TPM_20_E_KEY_SIZE","features":[3]},{"name":"TPM_20_E_LOCALITY","features":[3]},{"name":"TPM_20_E_LOCKOUT","features":[3]},{"name":"TPM_20_E_MEMORY","features":[3]},{"name":"TPM_20_E_MGF","features":[3]},{"name":"TPM_20_E_MODE","features":[3]},{"name":"TPM_20_E_NEEDS_TEST","features":[3]},{"name":"TPM_20_E_NONCE","features":[3]},{"name":"TPM_20_E_NO_RESULT","features":[3]},{"name":"TPM_20_E_NV_AUTHORIZATION","features":[3]},{"name":"TPM_20_E_NV_DEFINED","features":[3]},{"name":"TPM_20_E_NV_LOCKED","features":[3]},{"name":"TPM_20_E_NV_RANGE","features":[3]},{"name":"TPM_20_E_NV_RATE","features":[3]},{"name":"TPM_20_E_NV_SIZE","features":[3]},{"name":"TPM_20_E_NV_SPACE","features":[3]},{"name":"TPM_20_E_NV_UNAVAILABLE","features":[3]},{"name":"TPM_20_E_NV_UNINITIALIZED","features":[3]},{"name":"TPM_20_E_OBJECT_HANDLES","features":[3]},{"name":"TPM_20_E_OBJECT_MEMORY","features":[3]},{"name":"TPM_20_E_PARENT","features":[3]},{"name":"TPM_20_E_PCR","features":[3]},{"name":"TPM_20_E_PCR_CHANGED","features":[3]},{"name":"TPM_20_E_POLICY","features":[3]},{"name":"TPM_20_E_POLICY_CC","features":[3]},{"name":"TPM_20_E_POLICY_FAIL","features":[3]},{"name":"TPM_20_E_PP","features":[3]},{"name":"TPM_20_E_PRIVATE","features":[3]},{"name":"TPM_20_E_RANGE","features":[3]},{"name":"TPM_20_E_REBOOT","features":[3]},{"name":"TPM_20_E_RESERVED_BITS","features":[3]},{"name":"TPM_20_E_RETRY","features":[3]},{"name":"TPM_20_E_SCHEME","features":[3]},{"name":"TPM_20_E_SELECTOR","features":[3]},{"name":"TPM_20_E_SENSITIVE","features":[3]},{"name":"TPM_20_E_SEQUENCE","features":[3]},{"name":"TPM_20_E_SESSION_HANDLES","features":[3]},{"name":"TPM_20_E_SESSION_MEMORY","features":[3]},{"name":"TPM_20_E_SIGNATURE","features":[3]},{"name":"TPM_20_E_SIZE","features":[3]},{"name":"TPM_20_E_SYMMETRIC","features":[3]},{"name":"TPM_20_E_TAG","features":[3]},{"name":"TPM_20_E_TESTING","features":[3]},{"name":"TPM_20_E_TICKET","features":[3]},{"name":"TPM_20_E_TOO_MANY_CONTEXTS","features":[3]},{"name":"TPM_20_E_TYPE","features":[3]},{"name":"TPM_20_E_UNBALANCED","features":[3]},{"name":"TPM_20_E_UPGRADE","features":[3]},{"name":"TPM_20_E_VALUE","features":[3]},{"name":"TPM_20_E_YIELDED","features":[3]},{"name":"TPM_E_AREA_LOCKED","features":[3]},{"name":"TPM_E_ATTESTATION_CHALLENGE_NOT_SET","features":[3]},{"name":"TPM_E_AUDITFAILURE","features":[3]},{"name":"TPM_E_AUDITFAIL_SUCCESSFUL","features":[3]},{"name":"TPM_E_AUDITFAIL_UNSUCCESSFUL","features":[3]},{"name":"TPM_E_AUTH2FAIL","features":[3]},{"name":"TPM_E_AUTHFAIL","features":[3]},{"name":"TPM_E_AUTH_CONFLICT","features":[3]},{"name":"TPM_E_BADCONTEXT","features":[3]},{"name":"TPM_E_BADINDEX","features":[3]},{"name":"TPM_E_BADTAG","features":[3]},{"name":"TPM_E_BAD_ATTRIBUTES","features":[3]},{"name":"TPM_E_BAD_COUNTER","features":[3]},{"name":"TPM_E_BAD_DATASIZE","features":[3]},{"name":"TPM_E_BAD_DELEGATE","features":[3]},{"name":"TPM_E_BAD_HANDLE","features":[3]},{"name":"TPM_E_BAD_KEY_PROPERTY","features":[3]},{"name":"TPM_E_BAD_LOCALITY","features":[3]},{"name":"TPM_E_BAD_MIGRATION","features":[3]},{"name":"TPM_E_BAD_MODE","features":[3]},{"name":"TPM_E_BAD_ORDINAL","features":[3]},{"name":"TPM_E_BAD_PARAMETER","features":[3]},{"name":"TPM_E_BAD_PARAM_SIZE","features":[3]},{"name":"TPM_E_BAD_PRESENCE","features":[3]},{"name":"TPM_E_BAD_SCHEME","features":[3]},{"name":"TPM_E_BAD_SIGNATURE","features":[3]},{"name":"TPM_E_BAD_TYPE","features":[3]},{"name":"TPM_E_BAD_VERSION","features":[3]},{"name":"TPM_E_BUFFER_LENGTH_MISMATCH","features":[3]},{"name":"TPM_E_CLAIM_TYPE_NOT_SUPPORTED","features":[3]},{"name":"TPM_E_CLEAR_DISABLED","features":[3]},{"name":"TPM_E_COMMAND_BLOCKED","features":[3]},{"name":"TPM_E_CONTEXT_GAP","features":[3]},{"name":"TPM_E_DAA_INPUT_DATA0","features":[3]},{"name":"TPM_E_DAA_INPUT_DATA1","features":[3]},{"name":"TPM_E_DAA_ISSUER_SETTINGS","features":[3]},{"name":"TPM_E_DAA_ISSUER_VALIDITY","features":[3]},{"name":"TPM_E_DAA_RESOURCES","features":[3]},{"name":"TPM_E_DAA_STAGE","features":[3]},{"name":"TPM_E_DAA_TPM_SETTINGS","features":[3]},{"name":"TPM_E_DAA_WRONG_W","features":[3]},{"name":"TPM_E_DEACTIVATED","features":[3]},{"name":"TPM_E_DECRYPT_ERROR","features":[3]},{"name":"TPM_E_DEFEND_LOCK_RUNNING","features":[3]},{"name":"TPM_E_DELEGATE_ADMIN","features":[3]},{"name":"TPM_E_DELEGATE_FAMILY","features":[3]},{"name":"TPM_E_DELEGATE_LOCK","features":[3]},{"name":"TPM_E_DISABLED","features":[3]},{"name":"TPM_E_DISABLED_CMD","features":[3]},{"name":"TPM_E_DOING_SELFTEST","features":[3]},{"name":"TPM_E_DUPLICATE_VHANDLE","features":[3]},{"name":"TPM_E_EMBEDDED_COMMAND_BLOCKED","features":[3]},{"name":"TPM_E_EMBEDDED_COMMAND_UNSUPPORTED","features":[3]},{"name":"TPM_E_ENCRYPT_ERROR","features":[3]},{"name":"TPM_E_ERROR_MASK","features":[3]},{"name":"TPM_E_FAIL","features":[3]},{"name":"TPM_E_FAILEDSELFTEST","features":[3]},{"name":"TPM_E_FAMILYCOUNT","features":[3]},{"name":"TPM_E_INAPPROPRIATE_ENC","features":[3]},{"name":"TPM_E_INAPPROPRIATE_SIG","features":[3]},{"name":"TPM_E_INSTALL_DISABLED","features":[3]},{"name":"TPM_E_INVALID_AUTHHANDLE","features":[3]},{"name":"TPM_E_INVALID_FAMILY","features":[3]},{"name":"TPM_E_INVALID_HANDLE","features":[3]},{"name":"TPM_E_INVALID_KEYHANDLE","features":[3]},{"name":"TPM_E_INVALID_KEYUSAGE","features":[3]},{"name":"TPM_E_INVALID_OWNER_AUTH","features":[3]},{"name":"TPM_E_INVALID_PCR_INFO","features":[3]},{"name":"TPM_E_INVALID_POSTINIT","features":[3]},{"name":"TPM_E_INVALID_RESOURCE","features":[3]},{"name":"TPM_E_INVALID_STRUCTURE","features":[3]},{"name":"TPM_E_IOERROR","features":[3]},{"name":"TPM_E_KEYNOTFOUND","features":[3]},{"name":"TPM_E_KEY_ALREADY_FINALIZED","features":[3]},{"name":"TPM_E_KEY_NOTSUPPORTED","features":[3]},{"name":"TPM_E_KEY_NOT_AUTHENTICATED","features":[3]},{"name":"TPM_E_KEY_NOT_FINALIZED","features":[3]},{"name":"TPM_E_KEY_NOT_LOADED","features":[3]},{"name":"TPM_E_KEY_NOT_SIGNING_KEY","features":[3]},{"name":"TPM_E_KEY_OWNER_CONTROL","features":[3]},{"name":"TPM_E_KEY_USAGE_POLICY_INVALID","features":[3]},{"name":"TPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[3]},{"name":"TPM_E_LOCKED_OUT","features":[3]},{"name":"TPM_E_MAXNVWRITES","features":[3]},{"name":"TPM_E_MA_AUTHORITY","features":[3]},{"name":"TPM_E_MA_DESTINATION","features":[3]},{"name":"TPM_E_MA_SOURCE","features":[3]},{"name":"TPM_E_MA_TICKET_SIGNATURE","features":[3]},{"name":"TPM_E_MIGRATEFAIL","features":[3]},{"name":"TPM_E_NEEDS_SELFTEST","features":[3]},{"name":"TPM_E_NOCONTEXTSPACE","features":[3]},{"name":"TPM_E_NOOPERATOR","features":[3]},{"name":"TPM_E_NOSPACE","features":[3]},{"name":"TPM_E_NOSRK","features":[3]},{"name":"TPM_E_NOTFIPS","features":[3]},{"name":"TPM_E_NOTLOCAL","features":[3]},{"name":"TPM_E_NOTRESETABLE","features":[3]},{"name":"TPM_E_NOTSEALED_BLOB","features":[3]},{"name":"TPM_E_NOT_FULLWRITE","features":[3]},{"name":"TPM_E_NOT_PCR_BOUND","features":[3]},{"name":"TPM_E_NO_ENDORSEMENT","features":[3]},{"name":"TPM_E_NO_KEY_CERTIFICATION","features":[3]},{"name":"TPM_E_NO_NV_PERMISSION","features":[3]},{"name":"TPM_E_NO_WRAP_TRANSPORT","features":[3]},{"name":"TPM_E_OWNER_CONTROL","features":[3]},{"name":"TPM_E_OWNER_SET","features":[3]},{"name":"TPM_E_PCP_AUTHENTICATION_FAILED","features":[3]},{"name":"TPM_E_PCP_AUTHENTICATION_IGNORED","features":[3]},{"name":"TPM_E_PCP_BUFFER_TOO_SMALL","features":[3]},{"name":"TPM_E_PCP_DEVICE_NOT_READY","features":[3]},{"name":"TPM_E_PCP_ERROR_MASK","features":[3]},{"name":"TPM_E_PCP_FLAG_NOT_SUPPORTED","features":[3]},{"name":"TPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[3]},{"name":"TPM_E_PCP_INTERNAL_ERROR","features":[3]},{"name":"TPM_E_PCP_INVALID_HANDLE","features":[3]},{"name":"TPM_E_PCP_INVALID_PARAMETER","features":[3]},{"name":"TPM_E_PCP_KEY_HANDLE_INVALIDATED","features":[3]},{"name":"TPM_E_PCP_KEY_NOT_AIK","features":[3]},{"name":"TPM_E_PCP_NOT_SUPPORTED","features":[3]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_MAY_BE_OUTDATED","features":[3]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_OUTDATED","features":[3]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_REBOOT","features":[3]},{"name":"TPM_E_PCP_POLICY_NOT_FOUND","features":[3]},{"name":"TPM_E_PCP_PROFILE_NOT_FOUND","features":[3]},{"name":"TPM_E_PCP_RAW_POLICY_NOT_SUPPORTED","features":[3]},{"name":"TPM_E_PCP_TICKET_MISSING","features":[3]},{"name":"TPM_E_PCP_UNSUPPORTED_PSS_SALT","features":[3]},{"name":"TPM_E_PCP_VALIDATION_FAILED","features":[3]},{"name":"TPM_E_PCP_WRONG_PARENT","features":[3]},{"name":"TPM_E_PERMANENTEK","features":[3]},{"name":"TPM_E_PER_NOWRITE","features":[3]},{"name":"TPM_E_PPI_ACPI_FAILURE","features":[3]},{"name":"TPM_E_PPI_BIOS_FAILURE","features":[3]},{"name":"TPM_E_PPI_BLOCKED_IN_BIOS","features":[3]},{"name":"TPM_E_PPI_NOT_SUPPORTED","features":[3]},{"name":"TPM_E_PPI_USER_ABORT","features":[3]},{"name":"TPM_E_PROVISIONING_INCOMPLETE","features":[3]},{"name":"TPM_E_READ_ONLY","features":[3]},{"name":"TPM_E_REQUIRES_SIGN","features":[3]},{"name":"TPM_E_RESOURCEMISSING","features":[3]},{"name":"TPM_E_RESOURCES","features":[3]},{"name":"TPM_E_RETRY","features":[3]},{"name":"TPM_E_SHA_ERROR","features":[3]},{"name":"TPM_E_SHA_THREAD","features":[3]},{"name":"TPM_E_SHORTRANDOM","features":[3]},{"name":"TPM_E_SIZE","features":[3]},{"name":"TPM_E_SOFT_KEY_ERROR","features":[3]},{"name":"TPM_E_TOOMANYCONTEXTS","features":[3]},{"name":"TPM_E_TOO_MUCH_DATA","features":[3]},{"name":"TPM_E_TPM_GENERATED_EPS","features":[3]},{"name":"TPM_E_TRANSPORT_NOTEXCLUSIVE","features":[3]},{"name":"TPM_E_VERSION_NOT_SUPPORTED","features":[3]},{"name":"TPM_E_WRITE_LOCKED","features":[3]},{"name":"TPM_E_WRONGPCRVAL","features":[3]},{"name":"TPM_E_WRONG_ENTITYTYPE","features":[3]},{"name":"TPM_E_ZERO_EXHAUST_ENABLED","features":[3]},{"name":"TRUE","features":[3]},{"name":"TRUST_E_ACTION_UNKNOWN","features":[3]},{"name":"TRUST_E_BAD_DIGEST","features":[3]},{"name":"TRUST_E_BASIC_CONSTRAINTS","features":[3]},{"name":"TRUST_E_CERT_SIGNATURE","features":[3]},{"name":"TRUST_E_COUNTER_SIGNER","features":[3]},{"name":"TRUST_E_EXPLICIT_DISTRUST","features":[3]},{"name":"TRUST_E_FAIL","features":[3]},{"name":"TRUST_E_FINANCIAL_CRITERIA","features":[3]},{"name":"TRUST_E_MALFORMED_SIGNATURE","features":[3]},{"name":"TRUST_E_NOSIGNATURE","features":[3]},{"name":"TRUST_E_NO_SIGNER_CERT","features":[3]},{"name":"TRUST_E_PROVIDER_UNKNOWN","features":[3]},{"name":"TRUST_E_SUBJECT_FORM_UNKNOWN","features":[3]},{"name":"TRUST_E_SUBJECT_NOT_TRUSTED","features":[3]},{"name":"TRUST_E_SYSTEM_ERROR","features":[3]},{"name":"TRUST_E_TIME_STAMP","features":[3]},{"name":"TYPE_E_AMBIGUOUSNAME","features":[3]},{"name":"TYPE_E_BADMODULEKIND","features":[3]},{"name":"TYPE_E_BUFFERTOOSMALL","features":[3]},{"name":"TYPE_E_CANTCREATETMPFILE","features":[3]},{"name":"TYPE_E_CANTLOADLIBRARY","features":[3]},{"name":"TYPE_E_CIRCULARTYPE","features":[3]},{"name":"TYPE_E_DLLFUNCTIONNOTFOUND","features":[3]},{"name":"TYPE_E_DUPLICATEID","features":[3]},{"name":"TYPE_E_ELEMENTNOTFOUND","features":[3]},{"name":"TYPE_E_FIELDNOTFOUND","features":[3]},{"name":"TYPE_E_INCONSISTENTPROPFUNCS","features":[3]},{"name":"TYPE_E_INVALIDID","features":[3]},{"name":"TYPE_E_INVALIDSTATE","features":[3]},{"name":"TYPE_E_INVDATAREAD","features":[3]},{"name":"TYPE_E_IOERROR","features":[3]},{"name":"TYPE_E_LIBNOTREGISTERED","features":[3]},{"name":"TYPE_E_NAMECONFLICT","features":[3]},{"name":"TYPE_E_OUTOFBOUNDS","features":[3]},{"name":"TYPE_E_QUALIFIEDNAMEDISALLOWED","features":[3]},{"name":"TYPE_E_REGISTRYACCESS","features":[3]},{"name":"TYPE_E_SIZETOOBIG","features":[3]},{"name":"TYPE_E_TYPEMISMATCH","features":[3]},{"name":"TYPE_E_UNDEFINEDTYPE","features":[3]},{"name":"TYPE_E_UNKNOWNLCID","features":[3]},{"name":"TYPE_E_UNSUPFORMAT","features":[3]},{"name":"TYPE_E_WRONGTYPEKIND","features":[3]},{"name":"UCEERR_BLOCKSFULL","features":[3]},{"name":"UCEERR_CHANNELSYNCABANDONED","features":[3]},{"name":"UCEERR_CHANNELSYNCTIMEDOUT","features":[3]},{"name":"UCEERR_COMMANDTRANSPORTDENIED","features":[3]},{"name":"UCEERR_CONNECTIONIDLOOKUPFAILED","features":[3]},{"name":"UCEERR_CTXSTACKFRSTTARGETNULL","features":[3]},{"name":"UCEERR_FEEDBACK_UNSUPPORTED","features":[3]},{"name":"UCEERR_GRAPHICSSTREAMALREADYOPEN","features":[3]},{"name":"UCEERR_GRAPHICSSTREAMUNAVAILABLE","features":[3]},{"name":"UCEERR_HANDLELOOKUPFAILED","features":[3]},{"name":"UCEERR_ILLEGALHANDLE","features":[3]},{"name":"UCEERR_ILLEGALPACKET","features":[3]},{"name":"UCEERR_ILLEGALRECORDTYPE","features":[3]},{"name":"UCEERR_INVALIDPACKETHEADER","features":[3]},{"name":"UCEERR_MALFORMEDPACKET","features":[3]},{"name":"UCEERR_MEMORYFAILURE","features":[3]},{"name":"UCEERR_MISSINGBEGINCOMMAND","features":[3]},{"name":"UCEERR_MISSINGENDCOMMAND","features":[3]},{"name":"UCEERR_NO_MULTIPLE_WORKER_THREADS","features":[3]},{"name":"UCEERR_OUTOFHANDLES","features":[3]},{"name":"UCEERR_PACKETRECORDOUTOFRANGE","features":[3]},{"name":"UCEERR_PARTITION_ZOMBIED","features":[3]},{"name":"UCEERR_REMOTINGNOTSUPPORTED","features":[3]},{"name":"UCEERR_RENDERTHREADFAILURE","features":[3]},{"name":"UCEERR_TRANSPORTDISCONNECTED","features":[3]},{"name":"UCEERR_TRANSPORTOVERLOADED","features":[3]},{"name":"UCEERR_TRANSPORTUNAVAILABLE","features":[3]},{"name":"UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED","features":[3]},{"name":"UCEERR_UNKNOWNPACKET","features":[3]},{"name":"UCEERR_UNSUPPORTEDTRANSPORTVERSION","features":[3]},{"name":"UI_E_AMBIGUOUS_MATCH","features":[3]},{"name":"UI_E_BOOLEAN_EXPECTED","features":[3]},{"name":"UI_E_CREATE_FAILED","features":[3]},{"name":"UI_E_DIFFERENT_OWNER","features":[3]},{"name":"UI_E_END_KEYFRAME_NOT_DETERMINED","features":[3]},{"name":"UI_E_FP_OVERFLOW","features":[3]},{"name":"UI_E_ILLEGAL_REENTRANCY","features":[3]},{"name":"UI_E_INVALID_DIMENSION","features":[3]},{"name":"UI_E_INVALID_OUTPUT","features":[3]},{"name":"UI_E_LOOPS_OVERLAP","features":[3]},{"name":"UI_E_OBJECT_SEALED","features":[3]},{"name":"UI_E_PRIMITIVE_OUT_OF_BOUNDS","features":[3]},{"name":"UI_E_SHUTDOWN_CALLED","features":[3]},{"name":"UI_E_START_KEYFRAME_AFTER_END","features":[3]},{"name":"UI_E_STORYBOARD_ACTIVE","features":[3]},{"name":"UI_E_STORYBOARD_NOT_PLAYING","features":[3]},{"name":"UI_E_TIMER_CLIENT_ALREADY_CONNECTED","features":[3]},{"name":"UI_E_TIME_BEFORE_LAST_UPDATE","features":[3]},{"name":"UI_E_TRANSITION_ALREADY_USED","features":[3]},{"name":"UI_E_TRANSITION_ECLIPSED","features":[3]},{"name":"UI_E_TRANSITION_NOT_IN_STORYBOARD","features":[3]},{"name":"UI_E_VALUE_NOT_DETERMINED","features":[3]},{"name":"UI_E_VALUE_NOT_SET","features":[3]},{"name":"UI_E_WINDOW_CLOSED","features":[3]},{"name":"UI_E_WRONG_THREAD","features":[3]},{"name":"UNICODE_STRING","features":[3]},{"name":"UTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION","features":[3]},{"name":"UTC_E_AGENT_DIAGNOSTICS_TOO_LARGE","features":[3]},{"name":"UTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT","features":[3]},{"name":"UTC_E_AOT_NOT_RUNNING","features":[3]},{"name":"UTC_E_API_BUSY","features":[3]},{"name":"UTC_E_API_NOT_SUPPORTED","features":[3]},{"name":"UTC_E_API_RESULT_UNAVAILABLE","features":[3]},{"name":"UTC_E_BINARY_MISSING","features":[3]},{"name":"UTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML","features":[3]},{"name":"UTC_E_CERT_REV_FAILED","features":[3]},{"name":"UTC_E_CHILD_PROCESS_FAILED","features":[3]},{"name":"UTC_E_COMMAND_LINE_NOT_AUTHORIZED","features":[3]},{"name":"UTC_E_DELAY_TERMINATED","features":[3]},{"name":"UTC_E_DEVICE_TICKET_ERROR","features":[3]},{"name":"UTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH","features":[3]},{"name":"UTC_E_ESCALATION_ALREADY_RUNNING","features":[3]},{"name":"UTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN","features":[3]},{"name":"UTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS","features":[3]},{"name":"UTC_E_ESCALATION_NOT_AUTHORIZED","features":[3]},{"name":"UTC_E_ESCALATION_TIMED_OUT","features":[3]},{"name":"UTC_E_EVENTLOG_ENTRY_MALFORMED","features":[3]},{"name":"UTC_E_EXCLUSIVITY_NOT_AVAILABLE","features":[3]},{"name":"UTC_E_EXE_TERMINATED","features":[3]},{"name":"UTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS","features":[3]},{"name":"UTC_E_FAILED_TO_RESOLVE_CONTAINER_ID","features":[3]},{"name":"UTC_E_FAILED_TO_START_NDISCAP","features":[3]},{"name":"UTC_E_FILTER_FUNCTION_RESTRICTED","features":[3]},{"name":"UTC_E_FILTER_ILLEGAL_EVAL","features":[3]},{"name":"UTC_E_FILTER_INVALID_COMMAND","features":[3]},{"name":"UTC_E_FILTER_INVALID_FUNCTION","features":[3]},{"name":"UTC_E_FILTER_INVALID_FUNCTION_PARAMS","features":[3]},{"name":"UTC_E_FILTER_INVALID_TYPE","features":[3]},{"name":"UTC_E_FILTER_MISSING_ATTRIBUTE","features":[3]},{"name":"UTC_E_FILTER_VARIABLE_NOT_FOUND","features":[3]},{"name":"UTC_E_FILTER_VERSION_MISMATCH","features":[3]},{"name":"UTC_E_FORWARDER_ALREADY_DISABLED","features":[3]},{"name":"UTC_E_FORWARDER_ALREADY_ENABLED","features":[3]},{"name":"UTC_E_FORWARDER_PRODUCER_MISMATCH","features":[3]},{"name":"UTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED","features":[3]},{"name":"UTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED","features":[3]},{"name":"UTC_E_GETFILE_FILE_PATH_NOT_APPROVED","features":[3]},{"name":"UTC_E_INSUFFICIENT_SPACE_TO_START_TRACE","features":[3]},{"name":"UTC_E_INTENTIONAL_SCRIPT_FAILURE","features":[3]},{"name":"UTC_E_INVALID_AGGREGATION_STRUCT","features":[3]},{"name":"UTC_E_INVALID_CUSTOM_FILTER","features":[3]},{"name":"UTC_E_INVALID_FILTER","features":[3]},{"name":"UTC_E_KERNELDUMP_LIMIT_REACHED","features":[3]},{"name":"UTC_E_MISSING_AGGREGATE_EVENT_TAG","features":[3]},{"name":"UTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE","features":[3]},{"name":"UTC_E_NO_WER_LOGGER_SUPPORTED","features":[3]},{"name":"UTC_E_PERFTRACK_ALREADY_TRACING","features":[3]},{"name":"UTC_E_REACHED_MAX_ESCALATIONS","features":[3]},{"name":"UTC_E_REESCALATED_TOO_QUICKLY","features":[3]},{"name":"UTC_E_RPC_TIMEOUT","features":[3]},{"name":"UTC_E_RPC_WAIT_FAILED","features":[3]},{"name":"UTC_E_SCENARIODEF_NOT_FOUND","features":[3]},{"name":"UTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH","features":[3]},{"name":"UTC_E_SCENARIO_HAS_NO_ACTIONS","features":[3]},{"name":"UTC_E_SCENARIO_THROTTLED","features":[3]},{"name":"UTC_E_SCRIPT_MISSING","features":[3]},{"name":"UTC_E_SCRIPT_TERMINATED","features":[3]},{"name":"UTC_E_SCRIPT_TYPE_INVALID","features":[3]},{"name":"UTC_E_SETREGKEYACTION_TYPE_NOT_APPROVED","features":[3]},{"name":"UTC_E_SETUP_NOT_AUTHORIZED","features":[3]},{"name":"UTC_E_SETUP_TIMED_OUT","features":[3]},{"name":"UTC_E_SIF_NOT_SUPPORTED","features":[3]},{"name":"UTC_E_SQM_INIT_FAILED","features":[3]},{"name":"UTC_E_THROTTLED","features":[3]},{"name":"UTC_E_TIME_TRIGGER_INVALID_TIME_RANGE","features":[3]},{"name":"UTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION","features":[3]},{"name":"UTC_E_TIME_TRIGGER_ON_START_INVALID","features":[3]},{"name":"UTC_E_TOGGLE_TRACE_STARTED","features":[3]},{"name":"UTC_E_TRACEPROFILE_NOT_FOUND","features":[3]},{"name":"UTC_E_TRACERS_DONT_EXIST","features":[3]},{"name":"UTC_E_TRACE_BUFFER_LIMIT_EXCEEDED","features":[3]},{"name":"UTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET","features":[3]},{"name":"UTC_E_TRACE_NOT_RUNNING","features":[3]},{"name":"UTC_E_TRACE_THROTTLED","features":[3]},{"name":"UTC_E_TRIGGER_MISMATCH","features":[3]},{"name":"UTC_E_TRIGGER_NOT_FOUND","features":[3]},{"name":"UTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED","features":[3]},{"name":"UTC_E_TTTRACER_RETURNED_ERROR","features":[3]},{"name":"UTC_E_TTTRACER_STORAGE_FULL","features":[3]},{"name":"UTC_E_UNABLE_TO_RESOLVE_SESSION","features":[3]},{"name":"UTC_E_UNAPPROVED_SCRIPT","features":[3]},{"name":"UTC_E_WINRT_INIT_FAILED","features":[3]},{"name":"VARIANT_BOOL","features":[3]},{"name":"VARIANT_FALSE","features":[3]},{"name":"VARIANT_TRUE","features":[3]},{"name":"VIEW_E_DRAW","features":[3]},{"name":"VIEW_E_FIRST","features":[3]},{"name":"VIEW_E_LAST","features":[3]},{"name":"VIEW_S_ALREADY_FROZEN","features":[3]},{"name":"VIEW_S_FIRST","features":[3]},{"name":"VIEW_S_LAST","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_GUEST_MEMORY_NOT_FOUND","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_INVALID_VP_STATE","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_NESTED_VIRTUALIZATION_NOT_SUPPORTED","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_NO_VP_FOUND_IN_PARTITION_STATE","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_PARTITION_STATE_NOT_FOUND","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_VA_NOT_MAPPED","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_VP_VTL_NOT_ENABLED","features":[3]},{"name":"VM_SAVED_STATE_DUMP_E_WINDOWS_KERNEL_IMAGE_NOT_FOUND","features":[3]},{"name":"VOLMGR_KSR_BYPASS","features":[3]},{"name":"VOLMGR_KSR_ERROR","features":[3]},{"name":"VOLMGR_KSR_READ_ERROR","features":[3]},{"name":"WAIT_ABANDONED","features":[3]},{"name":"WAIT_ABANDONED_0","features":[3]},{"name":"WAIT_EVENT","features":[3]},{"name":"WAIT_FAILED","features":[3]},{"name":"WAIT_IO_COMPLETION","features":[3]},{"name":"WAIT_OBJECT_0","features":[3]},{"name":"WAIT_TIMEOUT","features":[3]},{"name":"WARNING_IPSEC_MM_POLICY_PRUNED","features":[3]},{"name":"WARNING_IPSEC_QM_POLICY_PRUNED","features":[3]},{"name":"WARNING_NO_MD5_MIGRATION","features":[3]},{"name":"WBREAK_E_BUFFER_TOO_SMALL","features":[3]},{"name":"WBREAK_E_END_OF_TEXT","features":[3]},{"name":"WBREAK_E_INIT_FAILED","features":[3]},{"name":"WBREAK_E_QUERY_ONLY","features":[3]},{"name":"WEB_E_INVALID_JSON_NUMBER","features":[3]},{"name":"WEB_E_INVALID_JSON_STRING","features":[3]},{"name":"WEB_E_INVALID_XML","features":[3]},{"name":"WEB_E_JSON_VALUE_NOT_FOUND","features":[3]},{"name":"WEB_E_MISSING_REQUIRED_ATTRIBUTE","features":[3]},{"name":"WEB_E_MISSING_REQUIRED_ELEMENT","features":[3]},{"name":"WEB_E_RESOURCE_TOO_LARGE","features":[3]},{"name":"WEB_E_UNEXPECTED_CONTENT","features":[3]},{"name":"WEB_E_UNSUPPORTED_FORMAT","features":[3]},{"name":"WEP_E_BUFFER_TOO_LARGE","features":[3]},{"name":"WEP_E_FIXED_DATA_NOT_SUPPORTED","features":[3]},{"name":"WEP_E_HARDWARE_NOT_COMPLIANT","features":[3]},{"name":"WEP_E_LOCK_NOT_CONFIGURED","features":[3]},{"name":"WEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[3]},{"name":"WEP_E_NO_LICENSE","features":[3]},{"name":"WEP_E_OS_NOT_PROTECTED","features":[3]},{"name":"WEP_E_PROTECTION_SUSPENDED","features":[3]},{"name":"WEP_E_UNEXPECTED_FAIL","features":[3]},{"name":"WER_E_ALREADY_REPORTING","features":[3]},{"name":"WER_E_CANCELED","features":[3]},{"name":"WER_E_CRASH_FAILURE","features":[3]},{"name":"WER_E_DUMP_THROTTLED","features":[3]},{"name":"WER_E_INSUFFICIENT_CONSENT","features":[3]},{"name":"WER_E_NETWORK_FAILURE","features":[3]},{"name":"WER_E_NOT_INITIALIZED","features":[3]},{"name":"WER_E_TOO_HEAVY","features":[3]},{"name":"WER_S_ASSERT_CONTINUE","features":[3]},{"name":"WER_S_DISABLED","features":[3]},{"name":"WER_S_DISABLED_ARCHIVE","features":[3]},{"name":"WER_S_DISABLED_QUEUE","features":[3]},{"name":"WER_S_IGNORE_ALL_ASSERTS","features":[3]},{"name":"WER_S_IGNORE_ASSERT_INSTANCE","features":[3]},{"name":"WER_S_REPORT_ASYNC","features":[3]},{"name":"WER_S_REPORT_DEBUG","features":[3]},{"name":"WER_S_REPORT_QUEUED","features":[3]},{"name":"WER_S_REPORT_UPLOADED","features":[3]},{"name":"WER_S_REPORT_UPLOADED_CAB","features":[3]},{"name":"WER_S_SUSPENDED_UPLOAD","features":[3]},{"name":"WER_S_THROTTLED","features":[3]},{"name":"WHV_E_GPA_RANGE_NOT_FOUND","features":[3]},{"name":"WHV_E_INSUFFICIENT_BUFFER","features":[3]},{"name":"WHV_E_INVALID_PARTITION_CONFIG","features":[3]},{"name":"WHV_E_INVALID_VP_REGISTER_NAME","features":[3]},{"name":"WHV_E_INVALID_VP_STATE","features":[3]},{"name":"WHV_E_UNKNOWN_CAPABILITY","features":[3]},{"name":"WHV_E_UNKNOWN_PROPERTY","features":[3]},{"name":"WHV_E_UNSUPPORTED_HYPERVISOR_CONFIG","features":[3]},{"name":"WHV_E_UNSUPPORTED_PROCESSOR_CONFIG","features":[3]},{"name":"WHV_E_VP_ALREADY_EXISTS","features":[3]},{"name":"WHV_E_VP_DOES_NOT_EXIST","features":[3]},{"name":"WIN32_ERROR","features":[3]},{"name":"WINCODEC_ERR_ALREADYLOCKED","features":[3]},{"name":"WINCODEC_ERR_BADHEADER","features":[3]},{"name":"WINCODEC_ERR_BADIMAGE","features":[3]},{"name":"WINCODEC_ERR_BADMETADATAHEADER","features":[3]},{"name":"WINCODEC_ERR_BADSTREAMDATA","features":[3]},{"name":"WINCODEC_ERR_CODECNOTHUMBNAIL","features":[3]},{"name":"WINCODEC_ERR_CODECPRESENT","features":[3]},{"name":"WINCODEC_ERR_CODECTOOMANYSCANLINES","features":[3]},{"name":"WINCODEC_ERR_COMPONENTINITIALIZEFAILURE","features":[3]},{"name":"WINCODEC_ERR_COMPONENTNOTFOUND","features":[3]},{"name":"WINCODEC_ERR_DUPLICATEMETADATAPRESENT","features":[3]},{"name":"WINCODEC_ERR_FRAMEMISSING","features":[3]},{"name":"WINCODEC_ERR_IMAGESIZEOUTOFRANGE","features":[3]},{"name":"WINCODEC_ERR_INSUFFICIENTBUFFER","features":[3]},{"name":"WINCODEC_ERR_INTERNALERROR","features":[3]},{"name":"WINCODEC_ERR_INVALIDJPEGSCANINDEX","features":[3]},{"name":"WINCODEC_ERR_INVALIDPROGRESSIVELEVEL","features":[3]},{"name":"WINCODEC_ERR_INVALIDQUERYCHARACTER","features":[3]},{"name":"WINCODEC_ERR_INVALIDQUERYREQUEST","features":[3]},{"name":"WINCODEC_ERR_INVALIDREGISTRATION","features":[3]},{"name":"WINCODEC_ERR_NOTINITIALIZED","features":[3]},{"name":"WINCODEC_ERR_PALETTEUNAVAILABLE","features":[3]},{"name":"WINCODEC_ERR_PROPERTYNOTFOUND","features":[3]},{"name":"WINCODEC_ERR_PROPERTYNOTSUPPORTED","features":[3]},{"name":"WINCODEC_ERR_PROPERTYSIZE","features":[3]},{"name":"WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE","features":[3]},{"name":"WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT","features":[3]},{"name":"WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS","features":[3]},{"name":"WINCODEC_ERR_STREAMNOTAVAILABLE","features":[3]},{"name":"WINCODEC_ERR_STREAMREAD","features":[3]},{"name":"WINCODEC_ERR_STREAMWRITE","features":[3]},{"name":"WINCODEC_ERR_TOOMUCHMETADATA","features":[3]},{"name":"WINCODEC_ERR_UNEXPECTEDMETADATATYPE","features":[3]},{"name":"WINCODEC_ERR_UNEXPECTEDSIZE","features":[3]},{"name":"WINCODEC_ERR_UNKNOWNIMAGEFORMAT","features":[3]},{"name":"WINCODEC_ERR_UNSUPPORTEDOPERATION","features":[3]},{"name":"WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT","features":[3]},{"name":"WINCODEC_ERR_UNSUPPORTEDVERSION","features":[3]},{"name":"WINCODEC_ERR_VALUEOUTOFRANGE","features":[3]},{"name":"WINCODEC_ERR_WIN32ERROR","features":[3]},{"name":"WINCODEC_ERR_WRONGSTATE","features":[3]},{"name":"WININET_E_ASYNC_THREAD_FAILED","features":[3]},{"name":"WININET_E_BAD_AUTO_PROXY_SCRIPT","features":[3]},{"name":"WININET_E_BAD_OPTION_LENGTH","features":[3]},{"name":"WININET_E_BAD_REGISTRY_PARAMETER","features":[3]},{"name":"WININET_E_CANNOT_CONNECT","features":[3]},{"name":"WININET_E_CHG_POST_IS_NON_SECURE","features":[3]},{"name":"WININET_E_CLIENT_AUTH_CERT_NEEDED","features":[3]},{"name":"WININET_E_CLIENT_AUTH_NOT_SETUP","features":[3]},{"name":"WININET_E_CONNECTION_ABORTED","features":[3]},{"name":"WININET_E_CONNECTION_RESET","features":[3]},{"name":"WININET_E_COOKIE_DECLINED","features":[3]},{"name":"WININET_E_COOKIE_NEEDS_CONFIRMATION","features":[3]},{"name":"WININET_E_DECODING_FAILED","features":[3]},{"name":"WININET_E_DIALOG_PENDING","features":[3]},{"name":"WININET_E_DISCONNECTED","features":[3]},{"name":"WININET_E_DOWNLEVEL_SERVER","features":[3]},{"name":"WININET_E_EXTENDED_ERROR","features":[3]},{"name":"WININET_E_FAILED_DUETOSECURITYCHECK","features":[3]},{"name":"WININET_E_FORCE_RETRY","features":[3]},{"name":"WININET_E_HANDLE_EXISTS","features":[3]},{"name":"WININET_E_HEADER_ALREADY_EXISTS","features":[3]},{"name":"WININET_E_HEADER_NOT_FOUND","features":[3]},{"name":"WININET_E_HTTPS_HTTP_SUBMIT_REDIR","features":[3]},{"name":"WININET_E_HTTPS_TO_HTTP_ON_REDIR","features":[3]},{"name":"WININET_E_HTTP_TO_HTTPS_ON_REDIR","features":[3]},{"name":"WININET_E_INCORRECT_FORMAT","features":[3]},{"name":"WININET_E_INCORRECT_HANDLE_STATE","features":[3]},{"name":"WININET_E_INCORRECT_HANDLE_TYPE","features":[3]},{"name":"WININET_E_INCORRECT_PASSWORD","features":[3]},{"name":"WININET_E_INCORRECT_USER_NAME","features":[3]},{"name":"WININET_E_INTERNAL_ERROR","features":[3]},{"name":"WININET_E_INVALID_CA","features":[3]},{"name":"WININET_E_INVALID_HEADER","features":[3]},{"name":"WININET_E_INVALID_OPERATION","features":[3]},{"name":"WININET_E_INVALID_OPTION","features":[3]},{"name":"WININET_E_INVALID_PROXY_REQUEST","features":[3]},{"name":"WININET_E_INVALID_QUERY_REQUEST","features":[3]},{"name":"WININET_E_INVALID_SERVER_RESPONSE","features":[3]},{"name":"WININET_E_INVALID_URL","features":[3]},{"name":"WININET_E_ITEM_NOT_FOUND","features":[3]},{"name":"WININET_E_LOGIN_FAILURE","features":[3]},{"name":"WININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[3]},{"name":"WININET_E_MIXED_SECURITY","features":[3]},{"name":"WININET_E_NAME_NOT_RESOLVED","features":[3]},{"name":"WININET_E_NEED_UI","features":[3]},{"name":"WININET_E_NOT_INITIALIZED","features":[3]},{"name":"WININET_E_NOT_PROXY_REQUEST","features":[3]},{"name":"WININET_E_NOT_REDIRECTED","features":[3]},{"name":"WININET_E_NO_CALLBACK","features":[3]},{"name":"WININET_E_NO_CONTEXT","features":[3]},{"name":"WININET_E_NO_DIRECT_ACCESS","features":[3]},{"name":"WININET_E_NO_NEW_CONTAINERS","features":[3]},{"name":"WININET_E_OPERATION_CANCELLED","features":[3]},{"name":"WININET_E_OPTION_NOT_SETTABLE","features":[3]},{"name":"WININET_E_OUT_OF_HANDLES","features":[3]},{"name":"WININET_E_POST_IS_NON_SECURE","features":[3]},{"name":"WININET_E_PROTOCOL_NOT_FOUND","features":[3]},{"name":"WININET_E_PROXY_SERVER_UNREACHABLE","features":[3]},{"name":"WININET_E_REDIRECT_FAILED","features":[3]},{"name":"WININET_E_REDIRECT_NEEDS_CONFIRMATION","features":[3]},{"name":"WININET_E_REDIRECT_SCHEME_CHANGE","features":[3]},{"name":"WININET_E_REGISTRY_VALUE_NOT_FOUND","features":[3]},{"name":"WININET_E_REQUEST_PENDING","features":[3]},{"name":"WININET_E_RETRY_DIALOG","features":[3]},{"name":"WININET_E_SECURITY_CHANNEL_ERROR","features":[3]},{"name":"WININET_E_SEC_CERT_CN_INVALID","features":[3]},{"name":"WININET_E_SEC_CERT_DATE_INVALID","features":[3]},{"name":"WININET_E_SEC_CERT_ERRORS","features":[3]},{"name":"WININET_E_SEC_CERT_REVOKED","features":[3]},{"name":"WININET_E_SEC_CERT_REV_FAILED","features":[3]},{"name":"WININET_E_SEC_INVALID_CERT","features":[3]},{"name":"WININET_E_SERVER_UNREACHABLE","features":[3]},{"name":"WININET_E_SHUTDOWN","features":[3]},{"name":"WININET_E_TCPIP_NOT_INSTALLED","features":[3]},{"name":"WININET_E_TIMEOUT","features":[3]},{"name":"WININET_E_UNABLE_TO_CACHE_FILE","features":[3]},{"name":"WININET_E_UNABLE_TO_DOWNLOAD_SCRIPT","features":[3]},{"name":"WININET_E_UNRECOGNIZED_SCHEME","features":[3]},{"name":"WINML_ERR_INVALID_BINDING","features":[3]},{"name":"WINML_ERR_INVALID_DEVICE","features":[3]},{"name":"WINML_ERR_SIZE_MISMATCH","features":[3]},{"name":"WINML_ERR_VALUE_NOTFOUND","features":[3]},{"name":"WINVER","features":[3]},{"name":"WINVER_MAXVER","features":[3]},{"name":"WPARAM","features":[3]},{"name":"WPN_E_ACCESS_DENIED","features":[3]},{"name":"WPN_E_ALL_URL_NOT_COMPLETED","features":[3]},{"name":"WPN_E_CALLBACK_ALREADY_REGISTERED","features":[3]},{"name":"WPN_E_CHANNEL_CLOSED","features":[3]},{"name":"WPN_E_CHANNEL_REQUEST_NOT_COMPLETE","features":[3]},{"name":"WPN_E_CLOUD_AUTH_UNAVAILABLE","features":[3]},{"name":"WPN_E_CLOUD_DISABLED","features":[3]},{"name":"WPN_E_CLOUD_DISABLED_FOR_APP","features":[3]},{"name":"WPN_E_CLOUD_INCAPABLE","features":[3]},{"name":"WPN_E_CLOUD_SERVICE_UNAVAILABLE","features":[3]},{"name":"WPN_E_DEV_ID_SIZE","features":[3]},{"name":"WPN_E_DUPLICATE_CHANNEL","features":[3]},{"name":"WPN_E_DUPLICATE_REGISTRATION","features":[3]},{"name":"WPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION","features":[3]},{"name":"WPN_E_GROUP_ALPHANUMERIC","features":[3]},{"name":"WPN_E_GROUP_SIZE","features":[3]},{"name":"WPN_E_IMAGE_NOT_FOUND_IN_CACHE","features":[3]},{"name":"WPN_E_INTERNET_INCAPABLE","features":[3]},{"name":"WPN_E_INVALID_APP","features":[3]},{"name":"WPN_E_INVALID_CLOUD_IMAGE","features":[3]},{"name":"WPN_E_INVALID_HTTP_STATUS_CODE","features":[3]},{"name":"WPN_E_NOTIFICATION_DISABLED","features":[3]},{"name":"WPN_E_NOTIFICATION_HIDDEN","features":[3]},{"name":"WPN_E_NOTIFICATION_ID_MATCHED","features":[3]},{"name":"WPN_E_NOTIFICATION_INCAPABLE","features":[3]},{"name":"WPN_E_NOTIFICATION_NOT_POSTED","features":[3]},{"name":"WPN_E_NOTIFICATION_POSTED","features":[3]},{"name":"WPN_E_NOTIFICATION_SIZE","features":[3]},{"name":"WPN_E_NOTIFICATION_TYPE_DISABLED","features":[3]},{"name":"WPN_E_OUTSTANDING_CHANNEL_REQUEST","features":[3]},{"name":"WPN_E_OUT_OF_SESSION","features":[3]},{"name":"WPN_E_PLATFORM_UNAVAILABLE","features":[3]},{"name":"WPN_E_POWER_SAVE","features":[3]},{"name":"WPN_E_PUSH_NOTIFICATION_INCAPABLE","features":[3]},{"name":"WPN_E_STORAGE_LOCKED","features":[3]},{"name":"WPN_E_TAG_ALPHANUMERIC","features":[3]},{"name":"WPN_E_TAG_SIZE","features":[3]},{"name":"WPN_E_TOAST_NOTIFICATION_DROPPED","features":[3]},{"name":"WS_E_ADDRESS_IN_USE","features":[3]},{"name":"WS_E_ADDRESS_NOT_AVAILABLE","features":[3]},{"name":"WS_E_ENDPOINT_ACCESS_DENIED","features":[3]},{"name":"WS_E_ENDPOINT_ACTION_NOT_SUPPORTED","features":[3]},{"name":"WS_E_ENDPOINT_DISCONNECTED","features":[3]},{"name":"WS_E_ENDPOINT_FAILURE","features":[3]},{"name":"WS_E_ENDPOINT_FAULT_RECEIVED","features":[3]},{"name":"WS_E_ENDPOINT_NOT_AVAILABLE","features":[3]},{"name":"WS_E_ENDPOINT_NOT_FOUND","features":[3]},{"name":"WS_E_ENDPOINT_TOO_BUSY","features":[3]},{"name":"WS_E_ENDPOINT_UNREACHABLE","features":[3]},{"name":"WS_E_INVALID_ENDPOINT_URL","features":[3]},{"name":"WS_E_INVALID_FORMAT","features":[3]},{"name":"WS_E_INVALID_OPERATION","features":[3]},{"name":"WS_E_NOT_SUPPORTED","features":[3]},{"name":"WS_E_NO_TRANSLATION_AVAILABLE","features":[3]},{"name":"WS_E_NUMERIC_OVERFLOW","features":[3]},{"name":"WS_E_OBJECT_FAULTED","features":[3]},{"name":"WS_E_OPERATION_ABANDONED","features":[3]},{"name":"WS_E_OPERATION_ABORTED","features":[3]},{"name":"WS_E_OPERATION_TIMED_OUT","features":[3]},{"name":"WS_E_OTHER","features":[3]},{"name":"WS_E_PROXY_ACCESS_DENIED","features":[3]},{"name":"WS_E_PROXY_FAILURE","features":[3]},{"name":"WS_E_PROXY_REQUIRES_BASIC_AUTH","features":[3]},{"name":"WS_E_PROXY_REQUIRES_DIGEST_AUTH","features":[3]},{"name":"WS_E_PROXY_REQUIRES_NEGOTIATE_AUTH","features":[3]},{"name":"WS_E_PROXY_REQUIRES_NTLM_AUTH","features":[3]},{"name":"WS_E_QUOTA_EXCEEDED","features":[3]},{"name":"WS_E_SECURITY_SYSTEM_FAILURE","features":[3]},{"name":"WS_E_SECURITY_TOKEN_EXPIRED","features":[3]},{"name":"WS_E_SECURITY_VERIFICATION_FAILURE","features":[3]},{"name":"WS_E_SERVER_REQUIRES_BASIC_AUTH","features":[3]},{"name":"WS_E_SERVER_REQUIRES_DIGEST_AUTH","features":[3]},{"name":"WS_E_SERVER_REQUIRES_NEGOTIATE_AUTH","features":[3]},{"name":"WS_E_SERVER_REQUIRES_NTLM_AUTH","features":[3]},{"name":"WS_S_ASYNC","features":[3]},{"name":"WS_S_END","features":[3]},{"name":"XACT_E_ABORTED","features":[3]},{"name":"XACT_E_ABORTING","features":[3]},{"name":"XACT_E_ALREADYINPROGRESS","features":[3]},{"name":"XACT_E_ALREADYOTHERSINGLEPHASE","features":[3]},{"name":"XACT_E_CANTRETAIN","features":[3]},{"name":"XACT_E_CLERKEXISTS","features":[3]},{"name":"XACT_E_CLERKNOTFOUND","features":[3]},{"name":"XACT_E_COMMITFAILED","features":[3]},{"name":"XACT_E_COMMITPREVENTED","features":[3]},{"name":"XACT_E_CONNECTION_DENIED","features":[3]},{"name":"XACT_E_CONNECTION_DOWN","features":[3]},{"name":"XACT_E_DEST_TMNOTAVAILABLE","features":[3]},{"name":"XACT_E_FIRST","features":[3]},{"name":"XACT_E_HEURISTICABORT","features":[3]},{"name":"XACT_E_HEURISTICCOMMIT","features":[3]},{"name":"XACT_E_HEURISTICDAMAGE","features":[3]},{"name":"XACT_E_HEURISTICDANGER","features":[3]},{"name":"XACT_E_INDOUBT","features":[3]},{"name":"XACT_E_INVALIDCOOKIE","features":[3]},{"name":"XACT_E_INVALIDLSN","features":[3]},{"name":"XACT_E_ISOLATIONLEVEL","features":[3]},{"name":"XACT_E_LAST","features":[3]},{"name":"XACT_E_LOGFULL","features":[3]},{"name":"XACT_E_LU_TX_DISABLED","features":[3]},{"name":"XACT_E_NETWORK_TX_DISABLED","features":[3]},{"name":"XACT_E_NOASYNC","features":[3]},{"name":"XACT_E_NOENLIST","features":[3]},{"name":"XACT_E_NOIMPORTOBJECT","features":[3]},{"name":"XACT_E_NOISORETAIN","features":[3]},{"name":"XACT_E_NORESOURCE","features":[3]},{"name":"XACT_E_NOTCURRENT","features":[3]},{"name":"XACT_E_NOTIMEOUT","features":[3]},{"name":"XACT_E_NOTRANSACTION","features":[3]},{"name":"XACT_E_NOTSUPPORTED","features":[3]},{"name":"XACT_E_PARTNER_NETWORK_TX_DISABLED","features":[3]},{"name":"XACT_E_PULL_COMM_FAILURE","features":[3]},{"name":"XACT_E_PUSH_COMM_FAILURE","features":[3]},{"name":"XACT_E_RECOVERYINPROGRESS","features":[3]},{"name":"XACT_E_REENLISTTIMEOUT","features":[3]},{"name":"XACT_E_REPLAYREQUEST","features":[3]},{"name":"XACT_E_TIP_CONNECT_FAILED","features":[3]},{"name":"XACT_E_TIP_DISABLED","features":[3]},{"name":"XACT_E_TIP_PROTOCOL_ERROR","features":[3]},{"name":"XACT_E_TIP_PULL_FAILED","features":[3]},{"name":"XACT_E_TMNOTAVAILABLE","features":[3]},{"name":"XACT_E_TRANSACTIONCLOSED","features":[3]},{"name":"XACT_E_UNABLE_TO_LOAD_DTC_PROXY","features":[3]},{"name":"XACT_E_UNABLE_TO_READ_DTC_CONFIG","features":[3]},{"name":"XACT_E_UNKNOWNRMGRID","features":[3]},{"name":"XACT_E_WRONGSTATE","features":[3]},{"name":"XACT_E_WRONGUOW","features":[3]},{"name":"XACT_E_XA_TX_DISABLED","features":[3]},{"name":"XACT_E_XTIONEXISTS","features":[3]},{"name":"XACT_S_ABORTING","features":[3]},{"name":"XACT_S_ALLNORETAIN","features":[3]},{"name":"XACT_S_ASYNC","features":[3]},{"name":"XACT_S_DEFECT","features":[3]},{"name":"XACT_S_FIRST","features":[3]},{"name":"XACT_S_LAST","features":[3]},{"name":"XACT_S_LASTRESOURCEMANAGER","features":[3]},{"name":"XACT_S_LOCALLY_OK","features":[3]},{"name":"XACT_S_MADECHANGESCONTENT","features":[3]},{"name":"XACT_S_MADECHANGESINFORM","features":[3]},{"name":"XACT_S_OKINFORM","features":[3]},{"name":"XACT_S_READONLY","features":[3]},{"name":"XACT_S_SINGLEPHASE","features":[3]},{"name":"XACT_S_SOMENORETAIN","features":[3]},{"name":"XENROLL_E_CANNOT_ADD_ROOT_CERT","features":[3]},{"name":"XENROLL_E_KEYSPEC_SMIME_MISMATCH","features":[3]},{"name":"XENROLL_E_KEY_NOT_EXPORTABLE","features":[3]},{"name":"XENROLL_E_RESPONSE_KA_HASH_MISMATCH","features":[3]},{"name":"XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND","features":[3]},{"name":"XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH","features":[3]},{"name":"_WIN32_IE_MAXVER","features":[3]},{"name":"_WIN32_MAXVER","features":[3]},{"name":"_WIN32_WINDOWS_MAXVER","features":[3]},{"name":"_WIN32_WINNT_MAXVER","features":[3]}],"393":[{"name":"CheckGamingPrivilegeSilently","features":[3,71]},{"name":"CheckGamingPrivilegeSilentlyForUser","features":[3,71]},{"name":"CheckGamingPrivilegeWithUI","features":[71]},{"name":"CheckGamingPrivilegeWithUIForUser","features":[71]},{"name":"GAMESTATS_OPEN_CREATED","features":[71]},{"name":"GAMESTATS_OPEN_OPENED","features":[71]},{"name":"GAMESTATS_OPEN_OPENONLY","features":[71]},{"name":"GAMESTATS_OPEN_OPENORCREATE","features":[71]},{"name":"GAMESTATS_OPEN_RESULT","features":[71]},{"name":"GAMESTATS_OPEN_TYPE","features":[71]},{"name":"GAME_INSTALL_SCOPE","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_NONE","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_S","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X_DEVKIT","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_S","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X","features":[71]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X_DEVKIT","features":[71]},{"name":"GAMING_DEVICE_MODEL_INFORMATION","features":[71]},{"name":"GAMING_DEVICE_VENDOR_ID","features":[71]},{"name":"GAMING_DEVICE_VENDOR_ID_MICROSOFT","features":[71]},{"name":"GAMING_DEVICE_VENDOR_ID_NONE","features":[71]},{"name":"GIS_ALL_USERS","features":[71]},{"name":"GIS_CURRENT_USER","features":[71]},{"name":"GIS_NOT_INSTALLED","features":[71]},{"name":"GameExplorer","features":[71]},{"name":"GameStatistics","features":[71]},{"name":"GameUICompletionRoutine","features":[71]},{"name":"GetExpandedResourceExclusiveCpuCount","features":[71]},{"name":"GetGamingDeviceModelInformation","features":[71]},{"name":"HasExpandedResources","features":[3,71]},{"name":"ID_GDF_THUMBNAIL_STR","features":[71]},{"name":"ID_GDF_XML_STR","features":[71]},{"name":"IGameExplorer","features":[71]},{"name":"IGameExplorer2","features":[71]},{"name":"IGameStatistics","features":[71]},{"name":"IGameStatisticsMgr","features":[71]},{"name":"IXblIdpAuthManager","features":[71]},{"name":"IXblIdpAuthManager2","features":[71]},{"name":"IXblIdpAuthTokenResult","features":[71]},{"name":"IXblIdpAuthTokenResult2","features":[71]},{"name":"KnownGamingPrivileges","features":[71]},{"name":"PlayerPickerUICompletionRoutine","features":[71]},{"name":"ProcessPendingGameUI","features":[3,71]},{"name":"ReleaseExclusiveCpuSets","features":[71]},{"name":"ShowChangeFriendRelationshipUI","features":[71]},{"name":"ShowChangeFriendRelationshipUIForUser","features":[71]},{"name":"ShowCustomizeUserProfileUI","features":[71]},{"name":"ShowCustomizeUserProfileUIForUser","features":[71]},{"name":"ShowFindFriendsUI","features":[71]},{"name":"ShowFindFriendsUIForUser","features":[71]},{"name":"ShowGameInfoUI","features":[71]},{"name":"ShowGameInfoUIForUser","features":[71]},{"name":"ShowGameInviteUI","features":[71]},{"name":"ShowGameInviteUIForUser","features":[71]},{"name":"ShowGameInviteUIWithContext","features":[71]},{"name":"ShowGameInviteUIWithContextForUser","features":[71]},{"name":"ShowPlayerPickerUI","features":[71]},{"name":"ShowPlayerPickerUIForUser","features":[71]},{"name":"ShowProfileCardUI","features":[71]},{"name":"ShowProfileCardUIForUser","features":[71]},{"name":"ShowTitleAchievementsUI","features":[71]},{"name":"ShowTitleAchievementsUIForUser","features":[71]},{"name":"ShowUserSettingsUI","features":[71]},{"name":"ShowUserSettingsUIForUser","features":[71]},{"name":"TryCancelPendingGameUI","features":[3,71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_LOAD_MSA_ACCOUNT_FAILED","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_MSA_INTERRUPT","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_NO_ACCOUNT_SET","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_NO_CONSENT","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_SUCCESS","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_SUCCESS","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_UNKNOWN","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_VIEW_NOT_SET","features":[71]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_XBOX_VETO","features":[71]},{"name":"XPRIVILEGE_ADD_FRIEND","features":[71]},{"name":"XPRIVILEGE_BROADCAST","features":[71]},{"name":"XPRIVILEGE_CLOUD_GAMING_JOIN_SESSION","features":[71]},{"name":"XPRIVILEGE_CLOUD_GAMING_MANAGE_SESSION","features":[71]},{"name":"XPRIVILEGE_CLOUD_SAVED_GAMES","features":[71]},{"name":"XPRIVILEGE_COMMUNICATIONS","features":[71]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_INGAME","features":[71]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_SKYPE","features":[71]},{"name":"XPRIVILEGE_GAME_DVR","features":[71]},{"name":"XPRIVILEGE_MULTIPLAYER_PARTIES","features":[71]},{"name":"XPRIVILEGE_MULTIPLAYER_SESSIONS","features":[71]},{"name":"XPRIVILEGE_PREMIUM_CONTENT","features":[71]},{"name":"XPRIVILEGE_PREMIUM_VIDEO","features":[71]},{"name":"XPRIVILEGE_PROFILE_VIEWING","features":[71]},{"name":"XPRIVILEGE_PURCHASE_CONTENT","features":[71]},{"name":"XPRIVILEGE_SHARE_CONTENT","features":[71]},{"name":"XPRIVILEGE_SHARE_KINECT_CONTENT","features":[71]},{"name":"XPRIVILEGE_SOCIAL_NETWORK_SHARING","features":[71]},{"name":"XPRIVILEGE_SUBSCRIPTION_CONTENT","features":[71]},{"name":"XPRIVILEGE_USER_CREATED_CONTENT","features":[71]},{"name":"XPRIVILEGE_VIDEO_COMMUNICATIONS","features":[71]},{"name":"XPRIVILEGE_VIEW_FRIENDS_LIST","features":[71]},{"name":"XblIdpAuthManager","features":[71]},{"name":"XblIdpAuthTokenResult","features":[71]}],"394":[{"name":"ALL_SERVICES","features":[72]},{"name":"ALL_SERVICE_TYPES","features":[72]},{"name":"AdjustCalendarDate","features":[3,72]},{"name":"C1_ALPHA","features":[72]},{"name":"C1_BLANK","features":[72]},{"name":"C1_CNTRL","features":[72]},{"name":"C1_DEFINED","features":[72]},{"name":"C1_DIGIT","features":[72]},{"name":"C1_LOWER","features":[72]},{"name":"C1_PUNCT","features":[72]},{"name":"C1_SPACE","features":[72]},{"name":"C1_UPPER","features":[72]},{"name":"C1_XDIGIT","features":[72]},{"name":"C2_ARABICNUMBER","features":[72]},{"name":"C2_BLOCKSEPARATOR","features":[72]},{"name":"C2_COMMONSEPARATOR","features":[72]},{"name":"C2_EUROPENUMBER","features":[72]},{"name":"C2_EUROPESEPARATOR","features":[72]},{"name":"C2_EUROPETERMINATOR","features":[72]},{"name":"C2_LEFTTORIGHT","features":[72]},{"name":"C2_NOTAPPLICABLE","features":[72]},{"name":"C2_OTHERNEUTRAL","features":[72]},{"name":"C2_RIGHTTOLEFT","features":[72]},{"name":"C2_SEGMENTSEPARATOR","features":[72]},{"name":"C2_WHITESPACE","features":[72]},{"name":"C3_ALPHA","features":[72]},{"name":"C3_DIACRITIC","features":[72]},{"name":"C3_FULLWIDTH","features":[72]},{"name":"C3_HALFWIDTH","features":[72]},{"name":"C3_HIGHSURROGATE","features":[72]},{"name":"C3_HIRAGANA","features":[72]},{"name":"C3_IDEOGRAPH","features":[72]},{"name":"C3_KASHIDA","features":[72]},{"name":"C3_KATAKANA","features":[72]},{"name":"C3_LEXICAL","features":[72]},{"name":"C3_LOWSURROGATE","features":[72]},{"name":"C3_NONSPACING","features":[72]},{"name":"C3_NOTAPPLICABLE","features":[72]},{"name":"C3_SYMBOL","features":[72]},{"name":"C3_VOWELMARK","features":[72]},{"name":"CALDATETIME","features":[72]},{"name":"CALDATETIME_DATEUNIT","features":[72]},{"name":"CALINFO_ENUMPROCA","features":[3,72]},{"name":"CALINFO_ENUMPROCEXA","features":[3,72]},{"name":"CALINFO_ENUMPROCEXEX","features":[3,72]},{"name":"CALINFO_ENUMPROCEXW","features":[3,72]},{"name":"CALINFO_ENUMPROCW","features":[3,72]},{"name":"CAL_GREGORIAN","features":[72]},{"name":"CAL_GREGORIAN_ARABIC","features":[72]},{"name":"CAL_GREGORIAN_ME_FRENCH","features":[72]},{"name":"CAL_GREGORIAN_US","features":[72]},{"name":"CAL_GREGORIAN_XLIT_ENGLISH","features":[72]},{"name":"CAL_GREGORIAN_XLIT_FRENCH","features":[72]},{"name":"CAL_HEBREW","features":[72]},{"name":"CAL_HIJRI","features":[72]},{"name":"CAL_ICALINTVALUE","features":[72]},{"name":"CAL_ITWODIGITYEARMAX","features":[72]},{"name":"CAL_IYEAROFFSETRANGE","features":[72]},{"name":"CAL_JAPAN","features":[72]},{"name":"CAL_KOREA","features":[72]},{"name":"CAL_NOUSEROVERRIDE","features":[72]},{"name":"CAL_PERSIAN","features":[72]},{"name":"CAL_RETURN_GENITIVE_NAMES","features":[72]},{"name":"CAL_RETURN_NUMBER","features":[72]},{"name":"CAL_SABBREVDAYNAME1","features":[72]},{"name":"CAL_SABBREVDAYNAME2","features":[72]},{"name":"CAL_SABBREVDAYNAME3","features":[72]},{"name":"CAL_SABBREVDAYNAME4","features":[72]},{"name":"CAL_SABBREVDAYNAME5","features":[72]},{"name":"CAL_SABBREVDAYNAME6","features":[72]},{"name":"CAL_SABBREVDAYNAME7","features":[72]},{"name":"CAL_SABBREVERASTRING","features":[72]},{"name":"CAL_SABBREVMONTHNAME1","features":[72]},{"name":"CAL_SABBREVMONTHNAME10","features":[72]},{"name":"CAL_SABBREVMONTHNAME11","features":[72]},{"name":"CAL_SABBREVMONTHNAME12","features":[72]},{"name":"CAL_SABBREVMONTHNAME13","features":[72]},{"name":"CAL_SABBREVMONTHNAME2","features":[72]},{"name":"CAL_SABBREVMONTHNAME3","features":[72]},{"name":"CAL_SABBREVMONTHNAME4","features":[72]},{"name":"CAL_SABBREVMONTHNAME5","features":[72]},{"name":"CAL_SABBREVMONTHNAME6","features":[72]},{"name":"CAL_SABBREVMONTHNAME7","features":[72]},{"name":"CAL_SABBREVMONTHNAME8","features":[72]},{"name":"CAL_SABBREVMONTHNAME9","features":[72]},{"name":"CAL_SCALNAME","features":[72]},{"name":"CAL_SDAYNAME1","features":[72]},{"name":"CAL_SDAYNAME2","features":[72]},{"name":"CAL_SDAYNAME3","features":[72]},{"name":"CAL_SDAYNAME4","features":[72]},{"name":"CAL_SDAYNAME5","features":[72]},{"name":"CAL_SDAYNAME6","features":[72]},{"name":"CAL_SDAYNAME7","features":[72]},{"name":"CAL_SENGLISHABBREVERANAME","features":[72]},{"name":"CAL_SENGLISHERANAME","features":[72]},{"name":"CAL_SERASTRING","features":[72]},{"name":"CAL_SJAPANESEERAFIRSTYEAR","features":[72]},{"name":"CAL_SLONGDATE","features":[72]},{"name":"CAL_SMONTHDAY","features":[72]},{"name":"CAL_SMONTHNAME1","features":[72]},{"name":"CAL_SMONTHNAME10","features":[72]},{"name":"CAL_SMONTHNAME11","features":[72]},{"name":"CAL_SMONTHNAME12","features":[72]},{"name":"CAL_SMONTHNAME13","features":[72]},{"name":"CAL_SMONTHNAME2","features":[72]},{"name":"CAL_SMONTHNAME3","features":[72]},{"name":"CAL_SMONTHNAME4","features":[72]},{"name":"CAL_SMONTHNAME5","features":[72]},{"name":"CAL_SMONTHNAME6","features":[72]},{"name":"CAL_SMONTHNAME7","features":[72]},{"name":"CAL_SMONTHNAME8","features":[72]},{"name":"CAL_SMONTHNAME9","features":[72]},{"name":"CAL_SRELATIVELONGDATE","features":[72]},{"name":"CAL_SSHORTDATE","features":[72]},{"name":"CAL_SSHORTESTDAYNAME1","features":[72]},{"name":"CAL_SSHORTESTDAYNAME2","features":[72]},{"name":"CAL_SSHORTESTDAYNAME3","features":[72]},{"name":"CAL_SSHORTESTDAYNAME4","features":[72]},{"name":"CAL_SSHORTESTDAYNAME5","features":[72]},{"name":"CAL_SSHORTESTDAYNAME6","features":[72]},{"name":"CAL_SSHORTESTDAYNAME7","features":[72]},{"name":"CAL_SYEARMONTH","features":[72]},{"name":"CAL_TAIWAN","features":[72]},{"name":"CAL_THAI","features":[72]},{"name":"CAL_UMALQURA","features":[72]},{"name":"CAL_USE_CP_ACP","features":[72]},{"name":"CANITER_SKIP_ZEROES","features":[72]},{"name":"CHARSETINFO","features":[72]},{"name":"CMLangConvertCharset","features":[72]},{"name":"CMLangString","features":[72]},{"name":"CMultiLanguage","features":[72]},{"name":"CODEPAGE_ENUMPROCA","features":[3,72]},{"name":"CODEPAGE_ENUMPROCW","features":[3,72]},{"name":"COMPARESTRING_RESULT","features":[72]},{"name":"COMPARE_STRING","features":[72]},{"name":"COMPARE_STRING_FLAGS","features":[72]},{"name":"CORRECTIVE_ACTION","features":[72]},{"name":"CORRECTIVE_ACTION_DELETE","features":[72]},{"name":"CORRECTIVE_ACTION_GET_SUGGESTIONS","features":[72]},{"name":"CORRECTIVE_ACTION_NONE","features":[72]},{"name":"CORRECTIVE_ACTION_REPLACE","features":[72]},{"name":"CPINFO","features":[72]},{"name":"CPINFOEXA","features":[72]},{"name":"CPINFOEXW","features":[72]},{"name":"CPIOD_FORCE_PROMPT","features":[72]},{"name":"CPIOD_PEEK","features":[72]},{"name":"CP_ACP","features":[72]},{"name":"CP_INSTALLED","features":[72]},{"name":"CP_MACCP","features":[72]},{"name":"CP_OEMCP","features":[72]},{"name":"CP_SUPPORTED","features":[72]},{"name":"CP_SYMBOL","features":[72]},{"name":"CP_THREAD_ACP","features":[72]},{"name":"CP_UTF7","features":[72]},{"name":"CP_UTF8","features":[72]},{"name":"CSTR_EQUAL","features":[72]},{"name":"CSTR_GREATER_THAN","features":[72]},{"name":"CSTR_LESS_THAN","features":[72]},{"name":"CTRY_ALBANIA","features":[72]},{"name":"CTRY_ALGERIA","features":[72]},{"name":"CTRY_ARGENTINA","features":[72]},{"name":"CTRY_ARMENIA","features":[72]},{"name":"CTRY_AUSTRALIA","features":[72]},{"name":"CTRY_AUSTRIA","features":[72]},{"name":"CTRY_AZERBAIJAN","features":[72]},{"name":"CTRY_BAHRAIN","features":[72]},{"name":"CTRY_BELARUS","features":[72]},{"name":"CTRY_BELGIUM","features":[72]},{"name":"CTRY_BELIZE","features":[72]},{"name":"CTRY_BOLIVIA","features":[72]},{"name":"CTRY_BRAZIL","features":[72]},{"name":"CTRY_BRUNEI_DARUSSALAM","features":[72]},{"name":"CTRY_BULGARIA","features":[72]},{"name":"CTRY_CANADA","features":[72]},{"name":"CTRY_CARIBBEAN","features":[72]},{"name":"CTRY_CHILE","features":[72]},{"name":"CTRY_COLOMBIA","features":[72]},{"name":"CTRY_COSTA_RICA","features":[72]},{"name":"CTRY_CROATIA","features":[72]},{"name":"CTRY_CZECH","features":[72]},{"name":"CTRY_DEFAULT","features":[72]},{"name":"CTRY_DENMARK","features":[72]},{"name":"CTRY_DOMINICAN_REPUBLIC","features":[72]},{"name":"CTRY_ECUADOR","features":[72]},{"name":"CTRY_EGYPT","features":[72]},{"name":"CTRY_EL_SALVADOR","features":[72]},{"name":"CTRY_ESTONIA","features":[72]},{"name":"CTRY_FAEROE_ISLANDS","features":[72]},{"name":"CTRY_FINLAND","features":[72]},{"name":"CTRY_FRANCE","features":[72]},{"name":"CTRY_GEORGIA","features":[72]},{"name":"CTRY_GERMANY","features":[72]},{"name":"CTRY_GREECE","features":[72]},{"name":"CTRY_GUATEMALA","features":[72]},{"name":"CTRY_HONDURAS","features":[72]},{"name":"CTRY_HONG_KONG","features":[72]},{"name":"CTRY_HUNGARY","features":[72]},{"name":"CTRY_ICELAND","features":[72]},{"name":"CTRY_INDIA","features":[72]},{"name":"CTRY_INDONESIA","features":[72]},{"name":"CTRY_IRAN","features":[72]},{"name":"CTRY_IRAQ","features":[72]},{"name":"CTRY_IRELAND","features":[72]},{"name":"CTRY_ISRAEL","features":[72]},{"name":"CTRY_ITALY","features":[72]},{"name":"CTRY_JAMAICA","features":[72]},{"name":"CTRY_JAPAN","features":[72]},{"name":"CTRY_JORDAN","features":[72]},{"name":"CTRY_KAZAKSTAN","features":[72]},{"name":"CTRY_KENYA","features":[72]},{"name":"CTRY_KUWAIT","features":[72]},{"name":"CTRY_KYRGYZSTAN","features":[72]},{"name":"CTRY_LATVIA","features":[72]},{"name":"CTRY_LEBANON","features":[72]},{"name":"CTRY_LIBYA","features":[72]},{"name":"CTRY_LIECHTENSTEIN","features":[72]},{"name":"CTRY_LITHUANIA","features":[72]},{"name":"CTRY_LUXEMBOURG","features":[72]},{"name":"CTRY_MACAU","features":[72]},{"name":"CTRY_MACEDONIA","features":[72]},{"name":"CTRY_MALAYSIA","features":[72]},{"name":"CTRY_MALDIVES","features":[72]},{"name":"CTRY_MEXICO","features":[72]},{"name":"CTRY_MONACO","features":[72]},{"name":"CTRY_MONGOLIA","features":[72]},{"name":"CTRY_MOROCCO","features":[72]},{"name":"CTRY_NETHERLANDS","features":[72]},{"name":"CTRY_NEW_ZEALAND","features":[72]},{"name":"CTRY_NICARAGUA","features":[72]},{"name":"CTRY_NORWAY","features":[72]},{"name":"CTRY_OMAN","features":[72]},{"name":"CTRY_PAKISTAN","features":[72]},{"name":"CTRY_PANAMA","features":[72]},{"name":"CTRY_PARAGUAY","features":[72]},{"name":"CTRY_PERU","features":[72]},{"name":"CTRY_PHILIPPINES","features":[72]},{"name":"CTRY_POLAND","features":[72]},{"name":"CTRY_PORTUGAL","features":[72]},{"name":"CTRY_PRCHINA","features":[72]},{"name":"CTRY_PUERTO_RICO","features":[72]},{"name":"CTRY_QATAR","features":[72]},{"name":"CTRY_ROMANIA","features":[72]},{"name":"CTRY_RUSSIA","features":[72]},{"name":"CTRY_SAUDI_ARABIA","features":[72]},{"name":"CTRY_SERBIA","features":[72]},{"name":"CTRY_SINGAPORE","features":[72]},{"name":"CTRY_SLOVAK","features":[72]},{"name":"CTRY_SLOVENIA","features":[72]},{"name":"CTRY_SOUTH_AFRICA","features":[72]},{"name":"CTRY_SOUTH_KOREA","features":[72]},{"name":"CTRY_SPAIN","features":[72]},{"name":"CTRY_SWEDEN","features":[72]},{"name":"CTRY_SWITZERLAND","features":[72]},{"name":"CTRY_SYRIA","features":[72]},{"name":"CTRY_TAIWAN","features":[72]},{"name":"CTRY_TATARSTAN","features":[72]},{"name":"CTRY_THAILAND","features":[72]},{"name":"CTRY_TRINIDAD_Y_TOBAGO","features":[72]},{"name":"CTRY_TUNISIA","features":[72]},{"name":"CTRY_TURKEY","features":[72]},{"name":"CTRY_UAE","features":[72]},{"name":"CTRY_UKRAINE","features":[72]},{"name":"CTRY_UNITED_KINGDOM","features":[72]},{"name":"CTRY_UNITED_STATES","features":[72]},{"name":"CTRY_URUGUAY","features":[72]},{"name":"CTRY_UZBEKISTAN","features":[72]},{"name":"CTRY_VENEZUELA","features":[72]},{"name":"CTRY_VIET_NAM","features":[72]},{"name":"CTRY_YEMEN","features":[72]},{"name":"CTRY_ZIMBABWE","features":[72]},{"name":"CT_CTYPE1","features":[72]},{"name":"CT_CTYPE2","features":[72]},{"name":"CT_CTYPE3","features":[72]},{"name":"CURRENCYFMTA","features":[72]},{"name":"CURRENCYFMTW","features":[72]},{"name":"CompareStringA","features":[72]},{"name":"CompareStringEx","features":[3,72]},{"name":"CompareStringOrdinal","features":[3,72]},{"name":"CompareStringW","features":[72]},{"name":"ConvertCalDateTimeToSystemTime","features":[3,72]},{"name":"ConvertDefaultLocale","features":[72]},{"name":"ConvertSystemTimeToCalDateTime","features":[3,72]},{"name":"DATEFMT_ENUMPROCA","features":[3,72]},{"name":"DATEFMT_ENUMPROCEXA","features":[3,72]},{"name":"DATEFMT_ENUMPROCEXEX","features":[3,72]},{"name":"DATEFMT_ENUMPROCEXW","features":[3,72]},{"name":"DATEFMT_ENUMPROCW","features":[3,72]},{"name":"DATE_AUTOLAYOUT","features":[72]},{"name":"DATE_LONGDATE","features":[72]},{"name":"DATE_LTRREADING","features":[72]},{"name":"DATE_MONTHDAY","features":[72]},{"name":"DATE_RTLREADING","features":[72]},{"name":"DATE_SHORTDATE","features":[72]},{"name":"DATE_USE_ALT_CALENDAR","features":[72]},{"name":"DATE_YEARMONTH","features":[72]},{"name":"DayUnit","features":[72]},{"name":"DetectEncodingInfo","features":[72]},{"name":"ELS_GUID_LANGUAGE_DETECTION","features":[72]},{"name":"ELS_GUID_SCRIPT_DETECTION","features":[72]},{"name":"ELS_GUID_TRANSLITERATION_BENGALI_TO_LATIN","features":[72]},{"name":"ELS_GUID_TRANSLITERATION_CYRILLIC_TO_LATIN","features":[72]},{"name":"ELS_GUID_TRANSLITERATION_DEVANAGARI_TO_LATIN","features":[72]},{"name":"ELS_GUID_TRANSLITERATION_HANGUL_DECOMPOSITION","features":[72]},{"name":"ELS_GUID_TRANSLITERATION_HANS_TO_HANT","features":[72]},{"name":"ELS_GUID_TRANSLITERATION_HANT_TO_HANS","features":[72]},{"name":"ELS_GUID_TRANSLITERATION_MALAYALAM_TO_LATIN","features":[72]},{"name":"ENUMTEXTMETRICA","features":[72,14]},{"name":"ENUMTEXTMETRICW","features":[72,14]},{"name":"ENUM_ALL_CALENDARS","features":[72]},{"name":"ENUM_DATE_FORMATS_FLAGS","features":[72]},{"name":"ENUM_SYSTEM_CODE_PAGES_FLAGS","features":[72]},{"name":"ENUM_SYSTEM_LANGUAGE_GROUPS_FLAGS","features":[72]},{"name":"EnumCalendarInfoA","features":[3,72]},{"name":"EnumCalendarInfoExA","features":[3,72]},{"name":"EnumCalendarInfoExEx","features":[3,72]},{"name":"EnumCalendarInfoExW","features":[3,72]},{"name":"EnumCalendarInfoW","features":[3,72]},{"name":"EnumDateFormatsA","features":[3,72]},{"name":"EnumDateFormatsExA","features":[3,72]},{"name":"EnumDateFormatsExEx","features":[3,72]},{"name":"EnumDateFormatsExW","features":[3,72]},{"name":"EnumDateFormatsW","features":[3,72]},{"name":"EnumLanguageGroupLocalesA","features":[3,72]},{"name":"EnumLanguageGroupLocalesW","features":[3,72]},{"name":"EnumSystemCodePagesA","features":[3,72]},{"name":"EnumSystemCodePagesW","features":[3,72]},{"name":"EnumSystemGeoID","features":[3,72]},{"name":"EnumSystemGeoNames","features":[3,72]},{"name":"EnumSystemLanguageGroupsA","features":[3,72]},{"name":"EnumSystemLanguageGroupsW","features":[3,72]},{"name":"EnumSystemLocalesA","features":[3,72]},{"name":"EnumSystemLocalesEx","features":[3,72]},{"name":"EnumSystemLocalesW","features":[3,72]},{"name":"EnumTimeFormatsA","features":[3,72]},{"name":"EnumTimeFormatsEx","features":[3,72]},{"name":"EnumTimeFormatsW","features":[3,72]},{"name":"EnumUILanguagesA","features":[3,72]},{"name":"EnumUILanguagesW","features":[3,72]},{"name":"EraUnit","features":[72]},{"name":"FILEMUIINFO","features":[72]},{"name":"FIND_ENDSWITH","features":[72]},{"name":"FIND_FROMEND","features":[72]},{"name":"FIND_FROMSTART","features":[72]},{"name":"FIND_STARTSWITH","features":[72]},{"name":"FOLD_STRING_MAP_FLAGS","features":[72]},{"name":"FONTSIGNATURE","features":[72]},{"name":"FindNLSString","features":[72]},{"name":"FindNLSStringEx","features":[3,72]},{"name":"FindStringOrdinal","features":[3,72]},{"name":"FoldStringA","features":[72]},{"name":"FoldStringW","features":[72]},{"name":"GEOCLASS_ALL","features":[72]},{"name":"GEOCLASS_NATION","features":[72]},{"name":"GEOCLASS_REGION","features":[72]},{"name":"GEOID_NOT_AVAILABLE","features":[72]},{"name":"GEO_CURRENCYCODE","features":[72]},{"name":"GEO_CURRENCYSYMBOL","features":[72]},{"name":"GEO_DIALINGCODE","features":[72]},{"name":"GEO_ENUMNAMEPROC","features":[3,72]},{"name":"GEO_ENUMPROC","features":[3,72]},{"name":"GEO_FRIENDLYNAME","features":[72]},{"name":"GEO_ID","features":[72]},{"name":"GEO_ISO2","features":[72]},{"name":"GEO_ISO3","features":[72]},{"name":"GEO_ISO_UN_NUMBER","features":[72]},{"name":"GEO_LATITUDE","features":[72]},{"name":"GEO_LCID","features":[72]},{"name":"GEO_LONGITUDE","features":[72]},{"name":"GEO_NAME","features":[72]},{"name":"GEO_NATION","features":[72]},{"name":"GEO_OFFICIALLANGUAGES","features":[72]},{"name":"GEO_OFFICIALNAME","features":[72]},{"name":"GEO_PARENT","features":[72]},{"name":"GEO_RFC1766","features":[72]},{"name":"GEO_TIMEZONES","features":[72]},{"name":"GOFFSET","features":[72]},{"name":"GSS_ALLOW_INHERITED_COMMON","features":[72]},{"name":"GetACP","features":[72]},{"name":"GetCPInfo","features":[3,72]},{"name":"GetCPInfoExA","features":[3,72]},{"name":"GetCPInfoExW","features":[3,72]},{"name":"GetCalendarDateFormatEx","features":[3,72]},{"name":"GetCalendarInfoA","features":[72]},{"name":"GetCalendarInfoEx","features":[72]},{"name":"GetCalendarInfoW","features":[72]},{"name":"GetCalendarSupportedDateRange","features":[3,72]},{"name":"GetCurrencyFormatA","features":[72]},{"name":"GetCurrencyFormatEx","features":[72]},{"name":"GetCurrencyFormatW","features":[72]},{"name":"GetDateFormatA","features":[3,72]},{"name":"GetDateFormatEx","features":[3,72]},{"name":"GetDateFormatW","features":[3,72]},{"name":"GetDistanceOfClosestLanguageInList","features":[72]},{"name":"GetDurationFormat","features":[3,72]},{"name":"GetDurationFormatEx","features":[3,72]},{"name":"GetFileMUIInfo","features":[3,72]},{"name":"GetFileMUIPath","features":[3,72]},{"name":"GetGeoInfoA","features":[72]},{"name":"GetGeoInfoEx","features":[72]},{"name":"GetGeoInfoW","features":[72]},{"name":"GetLocaleInfoA","features":[72]},{"name":"GetLocaleInfoEx","features":[72]},{"name":"GetLocaleInfoW","features":[72]},{"name":"GetNLSVersion","features":[3,72]},{"name":"GetNLSVersionEx","features":[3,72]},{"name":"GetNumberFormatA","features":[72]},{"name":"GetNumberFormatEx","features":[72]},{"name":"GetNumberFormatW","features":[72]},{"name":"GetOEMCP","features":[72]},{"name":"GetProcessPreferredUILanguages","features":[3,72]},{"name":"GetStringScripts","features":[72]},{"name":"GetStringTypeA","features":[3,72]},{"name":"GetStringTypeExA","features":[3,72]},{"name":"GetStringTypeExW","features":[3,72]},{"name":"GetStringTypeW","features":[3,72]},{"name":"GetSystemDefaultLCID","features":[72]},{"name":"GetSystemDefaultLangID","features":[72]},{"name":"GetSystemDefaultLocaleName","features":[72]},{"name":"GetSystemDefaultUILanguage","features":[72]},{"name":"GetSystemPreferredUILanguages","features":[3,72]},{"name":"GetTextCharset","features":[72,14]},{"name":"GetTextCharsetInfo","features":[72,14]},{"name":"GetThreadLocale","features":[72]},{"name":"GetThreadPreferredUILanguages","features":[3,72]},{"name":"GetThreadUILanguage","features":[72]},{"name":"GetTimeFormatA","features":[3,72]},{"name":"GetTimeFormatEx","features":[3,72]},{"name":"GetTimeFormatW","features":[3,72]},{"name":"GetUILanguageInfo","features":[3,72]},{"name":"GetUserDefaultGeoName","features":[72]},{"name":"GetUserDefaultLCID","features":[72]},{"name":"GetUserDefaultLangID","features":[72]},{"name":"GetUserDefaultLocaleName","features":[72]},{"name":"GetUserDefaultUILanguage","features":[72]},{"name":"GetUserGeoID","features":[72]},{"name":"GetUserPreferredUILanguages","features":[3,72]},{"name":"HIGHLEVEL_SERVICE_TYPES","features":[72]},{"name":"HIGH_SURROGATE_END","features":[72]},{"name":"HIGH_SURROGATE_START","features":[72]},{"name":"HSAVEDUILANGUAGES","features":[72]},{"name":"HourUnit","features":[72]},{"name":"IComprehensiveSpellCheckProvider","features":[72]},{"name":"IDN_ALLOW_UNASSIGNED","features":[72]},{"name":"IDN_EMAIL_ADDRESS","features":[72]},{"name":"IDN_RAW_PUNYCODE","features":[72]},{"name":"IDN_USE_STD3_ASCII_RULES","features":[72]},{"name":"IEnumCodePage","features":[72]},{"name":"IEnumRfc1766","features":[72]},{"name":"IEnumScript","features":[72]},{"name":"IEnumSpellingError","features":[72]},{"name":"IMLangCodePages","features":[72]},{"name":"IMLangConvertCharset","features":[72]},{"name":"IMLangFontLink","features":[72]},{"name":"IMLangFontLink2","features":[72]},{"name":"IMLangLineBreakConsole","features":[72]},{"name":"IMLangString","features":[72]},{"name":"IMLangStringAStr","features":[72]},{"name":"IMLangStringBufA","features":[72]},{"name":"IMLangStringBufW","features":[72]},{"name":"IMLangStringWStr","features":[72]},{"name":"IMultiLanguage","features":[72]},{"name":"IMultiLanguage2","features":[72]},{"name":"IMultiLanguage3","features":[72]},{"name":"IOptionDescription","features":[72]},{"name":"IS_TEXT_UNICODE_ASCII16","features":[72]},{"name":"IS_TEXT_UNICODE_CONTROLS","features":[72]},{"name":"IS_TEXT_UNICODE_ILLEGAL_CHARS","features":[72]},{"name":"IS_TEXT_UNICODE_NOT_ASCII_MASK","features":[72]},{"name":"IS_TEXT_UNICODE_NOT_UNICODE_MASK","features":[72]},{"name":"IS_TEXT_UNICODE_NULL_BYTES","features":[72]},{"name":"IS_TEXT_UNICODE_ODD_LENGTH","features":[72]},{"name":"IS_TEXT_UNICODE_RESULT","features":[72]},{"name":"IS_TEXT_UNICODE_REVERSE_ASCII16","features":[72]},{"name":"IS_TEXT_UNICODE_REVERSE_CONTROLS","features":[72]},{"name":"IS_TEXT_UNICODE_REVERSE_MASK","features":[72]},{"name":"IS_TEXT_UNICODE_REVERSE_SIGNATURE","features":[72]},{"name":"IS_TEXT_UNICODE_REVERSE_STATISTICS","features":[72]},{"name":"IS_TEXT_UNICODE_SIGNATURE","features":[72]},{"name":"IS_TEXT_UNICODE_STATISTICS","features":[72]},{"name":"IS_TEXT_UNICODE_UNICODE_MASK","features":[72]},{"name":"IS_VALID_LOCALE_FLAGS","features":[72]},{"name":"ISpellCheckProvider","features":[72]},{"name":"ISpellCheckProviderFactory","features":[72]},{"name":"ISpellChecker","features":[72]},{"name":"ISpellChecker2","features":[72]},{"name":"ISpellCheckerChangedEventHandler","features":[72]},{"name":"ISpellCheckerFactory","features":[72]},{"name":"ISpellingError","features":[72]},{"name":"IUserDictionariesRegistrar","features":[72]},{"name":"IdnToAscii","features":[72]},{"name":"IdnToNameprepUnicode","features":[72]},{"name":"IdnToUnicode","features":[72]},{"name":"IsCalendarLeapYear","features":[3,72]},{"name":"IsDBCSLeadByte","features":[3,72]},{"name":"IsDBCSLeadByteEx","features":[3,72]},{"name":"IsNLSDefinedString","features":[3,72]},{"name":"IsNormalizedString","features":[3,72]},{"name":"IsTextUnicode","features":[3,72]},{"name":"IsValidCodePage","features":[3,72]},{"name":"IsValidLanguageGroup","features":[3,72]},{"name":"IsValidLocale","features":[3,72]},{"name":"IsValidLocaleName","features":[3,72]},{"name":"IsValidNLSVersion","features":[72]},{"name":"IsWellFormedTag","features":[72]},{"name":"LANGGROUPLOCALE_ENUMPROCA","features":[3,72]},{"name":"LANGGROUPLOCALE_ENUMPROCW","features":[3,72]},{"name":"LANGUAGEGROUP_ENUMPROCA","features":[3,72]},{"name":"LANGUAGEGROUP_ENUMPROCW","features":[3,72]},{"name":"LANG_SYSTEM_DEFAULT","features":[72]},{"name":"LANG_USER_DEFAULT","features":[72]},{"name":"LCIDToLocaleName","features":[72]},{"name":"LCID_ALTERNATE_SORTS","features":[72]},{"name":"LCID_INSTALLED","features":[72]},{"name":"LCID_SUPPORTED","features":[72]},{"name":"LCMAP_BYTEREV","features":[72]},{"name":"LCMAP_FULLWIDTH","features":[72]},{"name":"LCMAP_HALFWIDTH","features":[72]},{"name":"LCMAP_HASH","features":[72]},{"name":"LCMAP_HIRAGANA","features":[72]},{"name":"LCMAP_KATAKANA","features":[72]},{"name":"LCMAP_LINGUISTIC_CASING","features":[72]},{"name":"LCMAP_LOWERCASE","features":[72]},{"name":"LCMAP_SIMPLIFIED_CHINESE","features":[72]},{"name":"LCMAP_SORTHANDLE","features":[72]},{"name":"LCMAP_SORTKEY","features":[72]},{"name":"LCMAP_TITLECASE","features":[72]},{"name":"LCMAP_TRADITIONAL_CHINESE","features":[72]},{"name":"LCMAP_UPPERCASE","features":[72]},{"name":"LCMapStringA","features":[72]},{"name":"LCMapStringEx","features":[3,72]},{"name":"LCMapStringW","features":[72]},{"name":"LGRPID_ARABIC","features":[72]},{"name":"LGRPID_ARMENIAN","features":[72]},{"name":"LGRPID_BALTIC","features":[72]},{"name":"LGRPID_CENTRAL_EUROPE","features":[72]},{"name":"LGRPID_CYRILLIC","features":[72]},{"name":"LGRPID_GEORGIAN","features":[72]},{"name":"LGRPID_GREEK","features":[72]},{"name":"LGRPID_HEBREW","features":[72]},{"name":"LGRPID_INDIC","features":[72]},{"name":"LGRPID_INSTALLED","features":[72]},{"name":"LGRPID_JAPANESE","features":[72]},{"name":"LGRPID_KOREAN","features":[72]},{"name":"LGRPID_SIMPLIFIED_CHINESE","features":[72]},{"name":"LGRPID_SUPPORTED","features":[72]},{"name":"LGRPID_THAI","features":[72]},{"name":"LGRPID_TRADITIONAL_CHINESE","features":[72]},{"name":"LGRPID_TURKIC","features":[72]},{"name":"LGRPID_TURKISH","features":[72]},{"name":"LGRPID_VIETNAMESE","features":[72]},{"name":"LGRPID_WESTERN_EUROPE","features":[72]},{"name":"LINGUISTIC_IGNORECASE","features":[72]},{"name":"LINGUISTIC_IGNOREDIACRITIC","features":[72]},{"name":"LOCALESIGNATURE","features":[72]},{"name":"LOCALE_ALL","features":[72]},{"name":"LOCALE_ALLOW_NEUTRAL_NAMES","features":[72]},{"name":"LOCALE_ALTERNATE_SORTS","features":[72]},{"name":"LOCALE_ENUMPROCA","features":[3,72]},{"name":"LOCALE_ENUMPROCEX","features":[3,72]},{"name":"LOCALE_ENUMPROCW","features":[3,72]},{"name":"LOCALE_FONTSIGNATURE","features":[72]},{"name":"LOCALE_ICALENDARTYPE","features":[72]},{"name":"LOCALE_ICENTURY","features":[72]},{"name":"LOCALE_ICONSTRUCTEDLOCALE","features":[72]},{"name":"LOCALE_ICOUNTRY","features":[72]},{"name":"LOCALE_ICURRDIGITS","features":[72]},{"name":"LOCALE_ICURRENCY","features":[72]},{"name":"LOCALE_IDATE","features":[72]},{"name":"LOCALE_IDAYLZERO","features":[72]},{"name":"LOCALE_IDEFAULTANSICODEPAGE","features":[72]},{"name":"LOCALE_IDEFAULTCODEPAGE","features":[72]},{"name":"LOCALE_IDEFAULTCOUNTRY","features":[72]},{"name":"LOCALE_IDEFAULTEBCDICCODEPAGE","features":[72]},{"name":"LOCALE_IDEFAULTLANGUAGE","features":[72]},{"name":"LOCALE_IDEFAULTMACCODEPAGE","features":[72]},{"name":"LOCALE_IDIALINGCODE","features":[72]},{"name":"LOCALE_IDIGITS","features":[72]},{"name":"LOCALE_IDIGITSUBSTITUTION","features":[72]},{"name":"LOCALE_IFIRSTDAYOFWEEK","features":[72]},{"name":"LOCALE_IFIRSTWEEKOFYEAR","features":[72]},{"name":"LOCALE_IGEOID","features":[72]},{"name":"LOCALE_IINTLCURRDIGITS","features":[72]},{"name":"LOCALE_ILANGUAGE","features":[72]},{"name":"LOCALE_ILDATE","features":[72]},{"name":"LOCALE_ILZERO","features":[72]},{"name":"LOCALE_IMEASURE","features":[72]},{"name":"LOCALE_IMONLZERO","features":[72]},{"name":"LOCALE_INEGATIVEPERCENT","features":[72]},{"name":"LOCALE_INEGCURR","features":[72]},{"name":"LOCALE_INEGNUMBER","features":[72]},{"name":"LOCALE_INEGSEPBYSPACE","features":[72]},{"name":"LOCALE_INEGSIGNPOSN","features":[72]},{"name":"LOCALE_INEGSYMPRECEDES","features":[72]},{"name":"LOCALE_INEUTRAL","features":[72]},{"name":"LOCALE_IOPTIONALCALENDAR","features":[72]},{"name":"LOCALE_IPAPERSIZE","features":[72]},{"name":"LOCALE_IPOSITIVEPERCENT","features":[72]},{"name":"LOCALE_IPOSSEPBYSPACE","features":[72]},{"name":"LOCALE_IPOSSIGNPOSN","features":[72]},{"name":"LOCALE_IPOSSYMPRECEDES","features":[72]},{"name":"LOCALE_IREADINGLAYOUT","features":[72]},{"name":"LOCALE_ITIME","features":[72]},{"name":"LOCALE_ITIMEMARKPOSN","features":[72]},{"name":"LOCALE_ITLZERO","features":[72]},{"name":"LOCALE_IUSEUTF8LEGACYACP","features":[72]},{"name":"LOCALE_IUSEUTF8LEGACYOEMCP","features":[72]},{"name":"LOCALE_NAME_INVARIANT","features":[72]},{"name":"LOCALE_NAME_SYSTEM_DEFAULT","features":[72]},{"name":"LOCALE_NEUTRALDATA","features":[72]},{"name":"LOCALE_NOUSEROVERRIDE","features":[72]},{"name":"LOCALE_REPLACEMENT","features":[72]},{"name":"LOCALE_RETURN_GENITIVE_NAMES","features":[72]},{"name":"LOCALE_RETURN_NUMBER","features":[72]},{"name":"LOCALE_S1159","features":[72]},{"name":"LOCALE_S2359","features":[72]},{"name":"LOCALE_SABBREVCTRYNAME","features":[72]},{"name":"LOCALE_SABBREVDAYNAME1","features":[72]},{"name":"LOCALE_SABBREVDAYNAME2","features":[72]},{"name":"LOCALE_SABBREVDAYNAME3","features":[72]},{"name":"LOCALE_SABBREVDAYNAME4","features":[72]},{"name":"LOCALE_SABBREVDAYNAME5","features":[72]},{"name":"LOCALE_SABBREVDAYNAME6","features":[72]},{"name":"LOCALE_SABBREVDAYNAME7","features":[72]},{"name":"LOCALE_SABBREVLANGNAME","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME1","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME10","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME11","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME12","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME13","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME2","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME3","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME4","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME5","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME6","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME7","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME8","features":[72]},{"name":"LOCALE_SABBREVMONTHNAME9","features":[72]},{"name":"LOCALE_SAM","features":[72]},{"name":"LOCALE_SCONSOLEFALLBACKNAME","features":[72]},{"name":"LOCALE_SCOUNTRY","features":[72]},{"name":"LOCALE_SCURRENCY","features":[72]},{"name":"LOCALE_SDATE","features":[72]},{"name":"LOCALE_SDAYNAME1","features":[72]},{"name":"LOCALE_SDAYNAME2","features":[72]},{"name":"LOCALE_SDAYNAME3","features":[72]},{"name":"LOCALE_SDAYNAME4","features":[72]},{"name":"LOCALE_SDAYNAME5","features":[72]},{"name":"LOCALE_SDAYNAME6","features":[72]},{"name":"LOCALE_SDAYNAME7","features":[72]},{"name":"LOCALE_SDECIMAL","features":[72]},{"name":"LOCALE_SDURATION","features":[72]},{"name":"LOCALE_SENGCOUNTRY","features":[72]},{"name":"LOCALE_SENGCURRNAME","features":[72]},{"name":"LOCALE_SENGLANGUAGE","features":[72]},{"name":"LOCALE_SENGLISHCOUNTRYNAME","features":[72]},{"name":"LOCALE_SENGLISHDISPLAYNAME","features":[72]},{"name":"LOCALE_SENGLISHLANGUAGENAME","features":[72]},{"name":"LOCALE_SGROUPING","features":[72]},{"name":"LOCALE_SINTLSYMBOL","features":[72]},{"name":"LOCALE_SISO3166CTRYNAME","features":[72]},{"name":"LOCALE_SISO3166CTRYNAME2","features":[72]},{"name":"LOCALE_SISO639LANGNAME","features":[72]},{"name":"LOCALE_SISO639LANGNAME2","features":[72]},{"name":"LOCALE_SKEYBOARDSTOINSTALL","features":[72]},{"name":"LOCALE_SLANGDISPLAYNAME","features":[72]},{"name":"LOCALE_SLANGUAGE","features":[72]},{"name":"LOCALE_SLIST","features":[72]},{"name":"LOCALE_SLOCALIZEDCOUNTRYNAME","features":[72]},{"name":"LOCALE_SLOCALIZEDDISPLAYNAME","features":[72]},{"name":"LOCALE_SLOCALIZEDLANGUAGENAME","features":[72]},{"name":"LOCALE_SLONGDATE","features":[72]},{"name":"LOCALE_SMONDECIMALSEP","features":[72]},{"name":"LOCALE_SMONGROUPING","features":[72]},{"name":"LOCALE_SMONTHDAY","features":[72]},{"name":"LOCALE_SMONTHNAME1","features":[72]},{"name":"LOCALE_SMONTHNAME10","features":[72]},{"name":"LOCALE_SMONTHNAME11","features":[72]},{"name":"LOCALE_SMONTHNAME12","features":[72]},{"name":"LOCALE_SMONTHNAME13","features":[72]},{"name":"LOCALE_SMONTHNAME2","features":[72]},{"name":"LOCALE_SMONTHNAME3","features":[72]},{"name":"LOCALE_SMONTHNAME4","features":[72]},{"name":"LOCALE_SMONTHNAME5","features":[72]},{"name":"LOCALE_SMONTHNAME6","features":[72]},{"name":"LOCALE_SMONTHNAME7","features":[72]},{"name":"LOCALE_SMONTHNAME8","features":[72]},{"name":"LOCALE_SMONTHNAME9","features":[72]},{"name":"LOCALE_SMONTHOUSANDSEP","features":[72]},{"name":"LOCALE_SNAME","features":[72]},{"name":"LOCALE_SNAN","features":[72]},{"name":"LOCALE_SNATIVECOUNTRYNAME","features":[72]},{"name":"LOCALE_SNATIVECTRYNAME","features":[72]},{"name":"LOCALE_SNATIVECURRNAME","features":[72]},{"name":"LOCALE_SNATIVEDIGITS","features":[72]},{"name":"LOCALE_SNATIVEDISPLAYNAME","features":[72]},{"name":"LOCALE_SNATIVELANGNAME","features":[72]},{"name":"LOCALE_SNATIVELANGUAGENAME","features":[72]},{"name":"LOCALE_SNEGATIVESIGN","features":[72]},{"name":"LOCALE_SNEGINFINITY","features":[72]},{"name":"LOCALE_SOPENTYPELANGUAGETAG","features":[72]},{"name":"LOCALE_SPARENT","features":[72]},{"name":"LOCALE_SPECIFICDATA","features":[72]},{"name":"LOCALE_SPERCENT","features":[72]},{"name":"LOCALE_SPERMILLE","features":[72]},{"name":"LOCALE_SPM","features":[72]},{"name":"LOCALE_SPOSINFINITY","features":[72]},{"name":"LOCALE_SPOSITIVESIGN","features":[72]},{"name":"LOCALE_SRELATIVELONGDATE","features":[72]},{"name":"LOCALE_SSCRIPTS","features":[72]},{"name":"LOCALE_SSHORTDATE","features":[72]},{"name":"LOCALE_SSHORTESTAM","features":[72]},{"name":"LOCALE_SSHORTESTDAYNAME1","features":[72]},{"name":"LOCALE_SSHORTESTDAYNAME2","features":[72]},{"name":"LOCALE_SSHORTESTDAYNAME3","features":[72]},{"name":"LOCALE_SSHORTESTDAYNAME4","features":[72]},{"name":"LOCALE_SSHORTESTDAYNAME5","features":[72]},{"name":"LOCALE_SSHORTESTDAYNAME6","features":[72]},{"name":"LOCALE_SSHORTESTDAYNAME7","features":[72]},{"name":"LOCALE_SSHORTESTPM","features":[72]},{"name":"LOCALE_SSHORTTIME","features":[72]},{"name":"LOCALE_SSORTLOCALE","features":[72]},{"name":"LOCALE_SSORTNAME","features":[72]},{"name":"LOCALE_STHOUSAND","features":[72]},{"name":"LOCALE_STIME","features":[72]},{"name":"LOCALE_STIMEFORMAT","features":[72]},{"name":"LOCALE_SUPPLEMENTAL","features":[72]},{"name":"LOCALE_SYEARMONTH","features":[72]},{"name":"LOCALE_SYSTEM_DEFAULT","features":[72]},{"name":"LOCALE_USER_DEFAULT","features":[72]},{"name":"LOCALE_USE_CP_ACP","features":[72]},{"name":"LOCALE_WINDOWS","features":[72]},{"name":"LOWLEVEL_SERVICE_TYPES","features":[72]},{"name":"LOW_SURROGATE_END","features":[72]},{"name":"LOW_SURROGATE_START","features":[72]},{"name":"LocaleNameToLCID","features":[72]},{"name":"MAPPING_DATA_RANGE","features":[72]},{"name":"MAPPING_ENUM_OPTIONS","features":[72]},{"name":"MAPPING_OPTIONS","features":[72]},{"name":"MAPPING_PROPERTY_BAG","features":[72]},{"name":"MAPPING_SERVICE_INFO","features":[72]},{"name":"MAP_COMPOSITE","features":[72]},{"name":"MAP_EXPAND_LIGATURES","features":[72]},{"name":"MAP_FOLDCZONE","features":[72]},{"name":"MAP_FOLDDIGITS","features":[72]},{"name":"MAP_PRECOMPOSED","features":[72]},{"name":"MAX_DEFAULTCHAR","features":[72]},{"name":"MAX_LEADBYTES","features":[72]},{"name":"MAX_LOCALE_NAME","features":[72]},{"name":"MAX_MIMECP_NAME","features":[72]},{"name":"MAX_MIMECSET_NAME","features":[72]},{"name":"MAX_MIMEFACE_NAME","features":[72]},{"name":"MAX_RFC1766_NAME","features":[72]},{"name":"MAX_SCRIPT_NAME","features":[72]},{"name":"MB_COMPOSITE","features":[72]},{"name":"MB_ERR_INVALID_CHARS","features":[72]},{"name":"MB_PRECOMPOSED","features":[72]},{"name":"MB_USEGLYPHCHARS","features":[72]},{"name":"MIMECONTF","features":[72]},{"name":"MIMECONTF_BROWSER","features":[72]},{"name":"MIMECONTF_EXPORT","features":[72]},{"name":"MIMECONTF_IMPORT","features":[72]},{"name":"MIMECONTF_MAILNEWS","features":[72]},{"name":"MIMECONTF_MIME_IE4","features":[72]},{"name":"MIMECONTF_MIME_LATEST","features":[72]},{"name":"MIMECONTF_MIME_REGISTRY","features":[72]},{"name":"MIMECONTF_MINIMAL","features":[72]},{"name":"MIMECONTF_PRIVCONVERTER","features":[72]},{"name":"MIMECONTF_SAVABLE_BROWSER","features":[72]},{"name":"MIMECONTF_SAVABLE_MAILNEWS","features":[72]},{"name":"MIMECONTF_VALID","features":[72]},{"name":"MIMECONTF_VALID_NLS","features":[72]},{"name":"MIMECPINFO","features":[72]},{"name":"MIMECSETINFO","features":[72]},{"name":"MIN_SPELLING_NTDDI","features":[72]},{"name":"MLCONVCHAR","features":[72]},{"name":"MLCONVCHARF_AUTODETECT","features":[72]},{"name":"MLCONVCHARF_DETECTJPN","features":[72]},{"name":"MLCONVCHARF_ENTITIZE","features":[72]},{"name":"MLCONVCHARF_NAME_ENTITIZE","features":[72]},{"name":"MLCONVCHARF_NCR_ENTITIZE","features":[72]},{"name":"MLCONVCHARF_NOBESTFITCHARS","features":[72]},{"name":"MLCONVCHARF_USEDEFCHAR","features":[72]},{"name":"MLCP","features":[72]},{"name":"MLDETECTCP","features":[72]},{"name":"MLDETECTCP_7BIT","features":[72]},{"name":"MLDETECTCP_8BIT","features":[72]},{"name":"MLDETECTCP_DBCS","features":[72]},{"name":"MLDETECTCP_HTML","features":[72]},{"name":"MLDETECTCP_NONE","features":[72]},{"name":"MLDETECTCP_NUMBER","features":[72]},{"name":"MLDETECTF_BROWSER","features":[72]},{"name":"MLDETECTF_EURO_UTF8","features":[72]},{"name":"MLDETECTF_FILTER_SPECIALCHAR","features":[72]},{"name":"MLDETECTF_MAILNEWS","features":[72]},{"name":"MLDETECTF_PREFERRED_ONLY","features":[72]},{"name":"MLDETECTF_PRESERVE_ORDER","features":[72]},{"name":"MLDETECTF_VALID","features":[72]},{"name":"MLDETECTF_VALID_NLS","features":[72]},{"name":"MLSTR_FLAGS","features":[72]},{"name":"MLSTR_READ","features":[72]},{"name":"MLSTR_WRITE","features":[72]},{"name":"MUI_COMPLEX_SCRIPT_FILTER","features":[72]},{"name":"MUI_CONSOLE_FILTER","features":[72]},{"name":"MUI_FILEINFO_VERSION","features":[72]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MAIN","features":[72]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MUI","features":[72]},{"name":"MUI_FILETYPE_NOT_LANGUAGE_NEUTRAL","features":[72]},{"name":"MUI_FORMAT_INF_COMPAT","features":[72]},{"name":"MUI_FORMAT_REG_COMPAT","features":[72]},{"name":"MUI_FULL_LANGUAGE","features":[72]},{"name":"MUI_IMMUTABLE_LOOKUP","features":[72]},{"name":"MUI_LANGUAGE_EXACT","features":[72]},{"name":"MUI_LANGUAGE_ID","features":[72]},{"name":"MUI_LANGUAGE_INSTALLED","features":[72]},{"name":"MUI_LANGUAGE_LICENSED","features":[72]},{"name":"MUI_LANGUAGE_NAME","features":[72]},{"name":"MUI_LANG_NEUTRAL_PE_FILE","features":[72]},{"name":"MUI_LIP_LANGUAGE","features":[72]},{"name":"MUI_MACHINE_LANGUAGE_SETTINGS","features":[72]},{"name":"MUI_MERGE_SYSTEM_FALLBACK","features":[72]},{"name":"MUI_MERGE_USER_FALLBACK","features":[72]},{"name":"MUI_NON_LANG_NEUTRAL_FILE","features":[72]},{"name":"MUI_PARTIAL_LANGUAGE","features":[72]},{"name":"MUI_QUERY_CHECKSUM","features":[72]},{"name":"MUI_QUERY_LANGUAGE_NAME","features":[72]},{"name":"MUI_QUERY_RESOURCE_TYPES","features":[72]},{"name":"MUI_QUERY_TYPE","features":[72]},{"name":"MUI_RESET_FILTERS","features":[72]},{"name":"MUI_SKIP_STRING_CACHE","features":[72]},{"name":"MUI_THREAD_LANGUAGES","features":[72]},{"name":"MUI_USER_PREFERRED_UI_LANGUAGES","features":[72]},{"name":"MUI_USE_INSTALLED_LANGUAGES","features":[72]},{"name":"MUI_USE_SEARCH_ALL_LANGUAGES","features":[72]},{"name":"MUI_VERIFY_FILE_EXISTS","features":[72]},{"name":"MULTI_BYTE_TO_WIDE_CHAR_FLAGS","features":[72]},{"name":"MappingDoAction","features":[72]},{"name":"MappingFreePropertyBag","features":[72]},{"name":"MappingFreeServices","features":[72]},{"name":"MappingGetServices","features":[72]},{"name":"MappingRecognizeText","features":[72]},{"name":"MinuteUnit","features":[72]},{"name":"MonthUnit","features":[72]},{"name":"MultiByteToWideChar","features":[72]},{"name":"NEWTEXTMETRICEXA","features":[72,14]},{"name":"NEWTEXTMETRICEXW","features":[72,14]},{"name":"NLSVERSIONINFO","features":[72]},{"name":"NLSVERSIONINFOEX","features":[72]},{"name":"NLS_CP_CPINFO","features":[72]},{"name":"NLS_CP_MBTOWC","features":[72]},{"name":"NLS_CP_WCTOMB","features":[72]},{"name":"NORM_FORM","features":[72]},{"name":"NORM_IGNORECASE","features":[72]},{"name":"NORM_IGNOREKANATYPE","features":[72]},{"name":"NORM_IGNORENONSPACE","features":[72]},{"name":"NORM_IGNORESYMBOLS","features":[72]},{"name":"NORM_IGNOREWIDTH","features":[72]},{"name":"NORM_LINGUISTIC_CASING","features":[72]},{"name":"NUMBERFMTA","features":[72]},{"name":"NUMBERFMTW","features":[72]},{"name":"NUMSYS_NAME_CAPACITY","features":[72]},{"name":"NormalizationC","features":[72]},{"name":"NormalizationD","features":[72]},{"name":"NormalizationKC","features":[72]},{"name":"NormalizationKD","features":[72]},{"name":"NormalizationOther","features":[72]},{"name":"NormalizeString","features":[72]},{"name":"NotifyUILanguageChange","features":[3,72]},{"name":"OFFLINE_SERVICES","features":[72]},{"name":"ONLINE_SERVICES","features":[72]},{"name":"OPENTYPE_FEATURE_RECORD","features":[72]},{"name":"PFN_MAPPINGCALLBACKPROC","features":[72]},{"name":"RFC1766INFO","features":[72]},{"name":"ResolveLocaleName","features":[72]},{"name":"RestoreThreadPreferredUILanguages","features":[72]},{"name":"SCRIPTCONTF","features":[72]},{"name":"SCRIPTCONTF_FIXED_FONT","features":[72]},{"name":"SCRIPTCONTF_PROPORTIONAL_FONT","features":[72]},{"name":"SCRIPTCONTF_SCRIPT_HIDE","features":[72]},{"name":"SCRIPTCONTF_SCRIPT_SYSTEM","features":[72]},{"name":"SCRIPTCONTF_SCRIPT_USER","features":[72]},{"name":"SCRIPTFONTCONTF","features":[72]},{"name":"SCRIPTFONTINFO","features":[72]},{"name":"SCRIPTINFO","features":[72]},{"name":"SCRIPT_ANALYSIS","features":[72]},{"name":"SCRIPT_CHARPROP","features":[72]},{"name":"SCRIPT_CONTROL","features":[72]},{"name":"SCRIPT_DIGITSUBSTITUTE","features":[72]},{"name":"SCRIPT_DIGITSUBSTITUTE_CONTEXT","features":[72]},{"name":"SCRIPT_DIGITSUBSTITUTE_NATIONAL","features":[72]},{"name":"SCRIPT_DIGITSUBSTITUTE_NONE","features":[72]},{"name":"SCRIPT_DIGITSUBSTITUTE_TRADITIONAL","features":[72]},{"name":"SCRIPT_FONTPROPERTIES","features":[72]},{"name":"SCRIPT_GLYPHPROP","features":[72]},{"name":"SCRIPT_IS_COMPLEX_FLAGS","features":[72]},{"name":"SCRIPT_ITEM","features":[72]},{"name":"SCRIPT_JUSTIFY","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_ALEF","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_BA","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_BARA","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_BLANK","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_HA","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_KASHIDA","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_NORMAL","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_RA","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN","features":[72]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN_M","features":[72]},{"name":"SCRIPT_JUSTIFY_BLANK","features":[72]},{"name":"SCRIPT_JUSTIFY_CHARACTER","features":[72]},{"name":"SCRIPT_JUSTIFY_NONE","features":[72]},{"name":"SCRIPT_JUSTIFY_RESERVED1","features":[72]},{"name":"SCRIPT_JUSTIFY_RESERVED2","features":[72]},{"name":"SCRIPT_JUSTIFY_RESERVED3","features":[72]},{"name":"SCRIPT_LOGATTR","features":[72]},{"name":"SCRIPT_PROPERTIES","features":[72]},{"name":"SCRIPT_STATE","features":[72]},{"name":"SCRIPT_TABDEF","features":[72]},{"name":"SCRIPT_TAG_UNKNOWN","features":[72]},{"name":"SCRIPT_UNDEFINED","features":[72]},{"name":"SCRIPT_VISATTR","features":[72]},{"name":"SGCM_RTL","features":[72]},{"name":"SIC_ASCIIDIGIT","features":[72]},{"name":"SIC_COMPLEX","features":[72]},{"name":"SIC_NEUTRAL","features":[72]},{"name":"SORTING_PARADIGM_ICU","features":[72]},{"name":"SORTING_PARADIGM_NLS","features":[72]},{"name":"SORT_DIGITSASNUMBERS","features":[72]},{"name":"SORT_STRINGSORT","features":[72]},{"name":"SSA_BREAK","features":[72]},{"name":"SSA_CLIP","features":[72]},{"name":"SSA_DONTGLYPH","features":[72]},{"name":"SSA_DZWG","features":[72]},{"name":"SSA_FALLBACK","features":[72]},{"name":"SSA_FIT","features":[72]},{"name":"SSA_FULLMEASURE","features":[72]},{"name":"SSA_GCP","features":[72]},{"name":"SSA_GLYPHS","features":[72]},{"name":"SSA_HIDEHOTKEY","features":[72]},{"name":"SSA_HOTKEY","features":[72]},{"name":"SSA_HOTKEYONLY","features":[72]},{"name":"SSA_LAYOUTRTL","features":[72]},{"name":"SSA_LINK","features":[72]},{"name":"SSA_LPKANSIFALLBACK","features":[72]},{"name":"SSA_METAFILE","features":[72]},{"name":"SSA_NOKASHIDA","features":[72]},{"name":"SSA_PASSWORD","features":[72]},{"name":"SSA_PIDX","features":[72]},{"name":"SSA_RTL","features":[72]},{"name":"SSA_TAB","features":[72]},{"name":"SYSGEOCLASS","features":[72]},{"name":"SYSGEOTYPE","features":[72]},{"name":"SYSNLS_FUNCTION","features":[72]},{"name":"ScriptApplyDigitSubstitution","features":[72]},{"name":"ScriptApplyLogicalWidth","features":[72,14]},{"name":"ScriptBreak","features":[72]},{"name":"ScriptCPtoX","features":[3,72]},{"name":"ScriptCacheGetHeight","features":[72,14]},{"name":"ScriptFreeCache","features":[72]},{"name":"ScriptGetCMap","features":[72,14]},{"name":"ScriptGetFontAlternateGlyphs","features":[72,14]},{"name":"ScriptGetFontFeatureTags","features":[72,14]},{"name":"ScriptGetFontLanguageTags","features":[72,14]},{"name":"ScriptGetFontProperties","features":[72,14]},{"name":"ScriptGetFontScriptTags","features":[72,14]},{"name":"ScriptGetGlyphABCWidth","features":[72,14]},{"name":"ScriptGetLogicalWidths","features":[72]},{"name":"ScriptGetProperties","features":[72]},{"name":"ScriptIsComplex","features":[72]},{"name":"ScriptItemize","features":[72]},{"name":"ScriptItemizeOpenType","features":[72]},{"name":"ScriptJustify","features":[72]},{"name":"ScriptLayout","features":[72]},{"name":"ScriptPlace","features":[72,14]},{"name":"ScriptPlaceOpenType","features":[72,14]},{"name":"ScriptPositionSingleGlyph","features":[72,14]},{"name":"ScriptRecordDigitSubstitution","features":[72]},{"name":"ScriptShape","features":[72,14]},{"name":"ScriptShapeOpenType","features":[72,14]},{"name":"ScriptStringAnalyse","features":[72,14]},{"name":"ScriptStringCPtoX","features":[3,72]},{"name":"ScriptStringFree","features":[72]},{"name":"ScriptStringGetLogicalWidths","features":[72]},{"name":"ScriptStringGetOrder","features":[72]},{"name":"ScriptStringOut","features":[3,72,14]},{"name":"ScriptStringValidate","features":[72]},{"name":"ScriptStringXtoCP","features":[72]},{"name":"ScriptString_pLogAttr","features":[72]},{"name":"ScriptString_pSize","features":[3,72]},{"name":"ScriptString_pcOutChars","features":[72]},{"name":"ScriptSubstituteSingleGlyph","features":[72,14]},{"name":"ScriptTextOut","features":[3,72,14]},{"name":"ScriptXtoCP","features":[72]},{"name":"SecondUnit","features":[72]},{"name":"SetCalendarInfoA","features":[3,72]},{"name":"SetCalendarInfoW","features":[3,72]},{"name":"SetLocaleInfoA","features":[3,72]},{"name":"SetLocaleInfoW","features":[3,72]},{"name":"SetProcessPreferredUILanguages","features":[3,72]},{"name":"SetThreadLocale","features":[3,72]},{"name":"SetThreadPreferredUILanguages","features":[3,72]},{"name":"SetThreadPreferredUILanguages2","features":[3,72]},{"name":"SetThreadUILanguage","features":[72]},{"name":"SetUserGeoID","features":[3,72]},{"name":"SetUserGeoName","features":[3,72]},{"name":"SpellCheckerFactory","features":[72]},{"name":"TCI_SRCCHARSET","features":[72]},{"name":"TCI_SRCCODEPAGE","features":[72]},{"name":"TCI_SRCFONTSIG","features":[72]},{"name":"TCI_SRCLOCALE","features":[72]},{"name":"TEXTRANGE_PROPERTIES","features":[72]},{"name":"TIMEFMT_ENUMPROCA","features":[3,72]},{"name":"TIMEFMT_ENUMPROCEX","features":[3,72]},{"name":"TIMEFMT_ENUMPROCW","features":[3,72]},{"name":"TIME_FORCE24HOURFORMAT","features":[72]},{"name":"TIME_FORMAT_FLAGS","features":[72]},{"name":"TIME_NOMINUTESORSECONDS","features":[72]},{"name":"TIME_NOSECONDS","features":[72]},{"name":"TIME_NOTIMEMARKER","features":[72]},{"name":"TRANSLATE_CHARSET_INFO_FLAGS","features":[72]},{"name":"TickUnit","features":[72]},{"name":"TranslateCharsetInfo","features":[3,72]},{"name":"U16_MAX_LENGTH","features":[72]},{"name":"U8_LEAD3_T1_BITS","features":[72]},{"name":"U8_LEAD4_T1_BITS","features":[72]},{"name":"U8_MAX_LENGTH","features":[72]},{"name":"UAcceptResult","features":[72]},{"name":"UAlphabeticIndexLabelType","features":[72]},{"name":"UBIDI_DEFAULT_LTR","features":[72]},{"name":"UBIDI_DEFAULT_RTL","features":[72]},{"name":"UBIDI_DO_MIRRORING","features":[72]},{"name":"UBIDI_INSERT_LRM_FOR_NUMERIC","features":[72]},{"name":"UBIDI_KEEP_BASE_COMBINING","features":[72]},{"name":"UBIDI_LEVEL_OVERRIDE","features":[72]},{"name":"UBIDI_LOGICAL","features":[72]},{"name":"UBIDI_LTR","features":[72]},{"name":"UBIDI_MAP_NOWHERE","features":[72]},{"name":"UBIDI_MAX_EXPLICIT_LEVEL","features":[72]},{"name":"UBIDI_MIRRORING_OFF","features":[72]},{"name":"UBIDI_MIRRORING_ON","features":[72]},{"name":"UBIDI_MIXED","features":[72]},{"name":"UBIDI_NEUTRAL","features":[72]},{"name":"UBIDI_OPTION_DEFAULT","features":[72]},{"name":"UBIDI_OPTION_INSERT_MARKS","features":[72]},{"name":"UBIDI_OPTION_REMOVE_CONTROLS","features":[72]},{"name":"UBIDI_OPTION_STREAMING","features":[72]},{"name":"UBIDI_OUTPUT_REVERSE","features":[72]},{"name":"UBIDI_REMOVE_BIDI_CONTROLS","features":[72]},{"name":"UBIDI_REORDER_DEFAULT","features":[72]},{"name":"UBIDI_REORDER_GROUP_NUMBERS_WITH_R","features":[72]},{"name":"UBIDI_REORDER_INVERSE_FOR_NUMBERS_SPECIAL","features":[72]},{"name":"UBIDI_REORDER_INVERSE_LIKE_DIRECT","features":[72]},{"name":"UBIDI_REORDER_INVERSE_NUMBERS_AS_L","features":[72]},{"name":"UBIDI_REORDER_NUMBERS_SPECIAL","features":[72]},{"name":"UBIDI_REORDER_RUNS_ONLY","features":[72]},{"name":"UBIDI_RTL","features":[72]},{"name":"UBIDI_VISUAL","features":[72]},{"name":"UBLOCK_ADLAM","features":[72]},{"name":"UBLOCK_AEGEAN_NUMBERS","features":[72]},{"name":"UBLOCK_AHOM","features":[72]},{"name":"UBLOCK_ALCHEMICAL_SYMBOLS","features":[72]},{"name":"UBLOCK_ALPHABETIC_PRESENTATION_FORMS","features":[72]},{"name":"UBLOCK_ANATOLIAN_HIEROGLYPHS","features":[72]},{"name":"UBLOCK_ANCIENT_GREEK_MUSICAL_NOTATION","features":[72]},{"name":"UBLOCK_ANCIENT_GREEK_NUMBERS","features":[72]},{"name":"UBLOCK_ANCIENT_SYMBOLS","features":[72]},{"name":"UBLOCK_ARABIC","features":[72]},{"name":"UBLOCK_ARABIC_EXTENDED_A","features":[72]},{"name":"UBLOCK_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS","features":[72]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_A","features":[72]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_B","features":[72]},{"name":"UBLOCK_ARABIC_SUPPLEMENT","features":[72]},{"name":"UBLOCK_ARMENIAN","features":[72]},{"name":"UBLOCK_ARROWS","features":[72]},{"name":"UBLOCK_AVESTAN","features":[72]},{"name":"UBLOCK_BALINESE","features":[72]},{"name":"UBLOCK_BAMUM","features":[72]},{"name":"UBLOCK_BAMUM_SUPPLEMENT","features":[72]},{"name":"UBLOCK_BASIC_LATIN","features":[72]},{"name":"UBLOCK_BASSA_VAH","features":[72]},{"name":"UBLOCK_BATAK","features":[72]},{"name":"UBLOCK_BENGALI","features":[72]},{"name":"UBLOCK_BHAIKSUKI","features":[72]},{"name":"UBLOCK_BLOCK_ELEMENTS","features":[72]},{"name":"UBLOCK_BOPOMOFO","features":[72]},{"name":"UBLOCK_BOPOMOFO_EXTENDED","features":[72]},{"name":"UBLOCK_BOX_DRAWING","features":[72]},{"name":"UBLOCK_BRAHMI","features":[72]},{"name":"UBLOCK_BRAILLE_PATTERNS","features":[72]},{"name":"UBLOCK_BUGINESE","features":[72]},{"name":"UBLOCK_BUHID","features":[72]},{"name":"UBLOCK_BYZANTINE_MUSICAL_SYMBOLS","features":[72]},{"name":"UBLOCK_CARIAN","features":[72]},{"name":"UBLOCK_CAUCASIAN_ALBANIAN","features":[72]},{"name":"UBLOCK_CHAKMA","features":[72]},{"name":"UBLOCK_CHAM","features":[72]},{"name":"UBLOCK_CHEROKEE","features":[72]},{"name":"UBLOCK_CHEROKEE_SUPPLEMENT","features":[72]},{"name":"UBLOCK_CHESS_SYMBOLS","features":[72]},{"name":"UBLOCK_CHORASMIAN","features":[72]},{"name":"UBLOCK_CJK_COMPATIBILITY","features":[72]},{"name":"UBLOCK_CJK_COMPATIBILITY_FORMS","features":[72]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS","features":[72]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT","features":[72]},{"name":"UBLOCK_CJK_RADICALS_SUPPLEMENT","features":[72]},{"name":"UBLOCK_CJK_STROKES","features":[72]},{"name":"UBLOCK_CJK_SYMBOLS_AND_PUNCTUATION","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F","features":[72]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_G","features":[72]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS","features":[72]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_EXTENDED","features":[72]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_SUPPLEMENT","features":[72]},{"name":"UBLOCK_COMBINING_HALF_MARKS","features":[72]},{"name":"UBLOCK_COMBINING_MARKS_FOR_SYMBOLS","features":[72]},{"name":"UBLOCK_COMMON_INDIC_NUMBER_FORMS","features":[72]},{"name":"UBLOCK_CONTROL_PICTURES","features":[72]},{"name":"UBLOCK_COPTIC","features":[72]},{"name":"UBLOCK_COPTIC_EPACT_NUMBERS","features":[72]},{"name":"UBLOCK_COUNTING_ROD_NUMERALS","features":[72]},{"name":"UBLOCK_CUNEIFORM","features":[72]},{"name":"UBLOCK_CUNEIFORM_NUMBERS_AND_PUNCTUATION","features":[72]},{"name":"UBLOCK_CURRENCY_SYMBOLS","features":[72]},{"name":"UBLOCK_CYPRIOT_SYLLABARY","features":[72]},{"name":"UBLOCK_CYRILLIC","features":[72]},{"name":"UBLOCK_CYRILLIC_EXTENDED_A","features":[72]},{"name":"UBLOCK_CYRILLIC_EXTENDED_B","features":[72]},{"name":"UBLOCK_CYRILLIC_EXTENDED_C","features":[72]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENT","features":[72]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENTARY","features":[72]},{"name":"UBLOCK_DESERET","features":[72]},{"name":"UBLOCK_DEVANAGARI","features":[72]},{"name":"UBLOCK_DEVANAGARI_EXTENDED","features":[72]},{"name":"UBLOCK_DINGBATS","features":[72]},{"name":"UBLOCK_DIVES_AKURU","features":[72]},{"name":"UBLOCK_DOGRA","features":[72]},{"name":"UBLOCK_DOMINO_TILES","features":[72]},{"name":"UBLOCK_DUPLOYAN","features":[72]},{"name":"UBLOCK_EARLY_DYNASTIC_CUNEIFORM","features":[72]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPHS","features":[72]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPH_FORMAT_CONTROLS","features":[72]},{"name":"UBLOCK_ELBASAN","features":[72]},{"name":"UBLOCK_ELYMAIC","features":[72]},{"name":"UBLOCK_EMOTICONS","features":[72]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERICS","features":[72]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERIC_SUPPLEMENT","features":[72]},{"name":"UBLOCK_ENCLOSED_CJK_LETTERS_AND_MONTHS","features":[72]},{"name":"UBLOCK_ENCLOSED_IDEOGRAPHIC_SUPPLEMENT","features":[72]},{"name":"UBLOCK_ETHIOPIC","features":[72]},{"name":"UBLOCK_ETHIOPIC_EXTENDED","features":[72]},{"name":"UBLOCK_ETHIOPIC_EXTENDED_A","features":[72]},{"name":"UBLOCK_ETHIOPIC_SUPPLEMENT","features":[72]},{"name":"UBLOCK_GENERAL_PUNCTUATION","features":[72]},{"name":"UBLOCK_GEOMETRIC_SHAPES","features":[72]},{"name":"UBLOCK_GEOMETRIC_SHAPES_EXTENDED","features":[72]},{"name":"UBLOCK_GEORGIAN","features":[72]},{"name":"UBLOCK_GEORGIAN_EXTENDED","features":[72]},{"name":"UBLOCK_GEORGIAN_SUPPLEMENT","features":[72]},{"name":"UBLOCK_GLAGOLITIC","features":[72]},{"name":"UBLOCK_GLAGOLITIC_SUPPLEMENT","features":[72]},{"name":"UBLOCK_GOTHIC","features":[72]},{"name":"UBLOCK_GRANTHA","features":[72]},{"name":"UBLOCK_GREEK","features":[72]},{"name":"UBLOCK_GREEK_EXTENDED","features":[72]},{"name":"UBLOCK_GUJARATI","features":[72]},{"name":"UBLOCK_GUNJALA_GONDI","features":[72]},{"name":"UBLOCK_GURMUKHI","features":[72]},{"name":"UBLOCK_HALFWIDTH_AND_FULLWIDTH_FORMS","features":[72]},{"name":"UBLOCK_HANGUL_COMPATIBILITY_JAMO","features":[72]},{"name":"UBLOCK_HANGUL_JAMO","features":[72]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_A","features":[72]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_B","features":[72]},{"name":"UBLOCK_HANGUL_SYLLABLES","features":[72]},{"name":"UBLOCK_HANIFI_ROHINGYA","features":[72]},{"name":"UBLOCK_HANUNOO","features":[72]},{"name":"UBLOCK_HATRAN","features":[72]},{"name":"UBLOCK_HEBREW","features":[72]},{"name":"UBLOCK_HIGH_PRIVATE_USE_SURROGATES","features":[72]},{"name":"UBLOCK_HIGH_SURROGATES","features":[72]},{"name":"UBLOCK_HIRAGANA","features":[72]},{"name":"UBLOCK_IDEOGRAPHIC_DESCRIPTION_CHARACTERS","features":[72]},{"name":"UBLOCK_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION","features":[72]},{"name":"UBLOCK_IMPERIAL_ARAMAIC","features":[72]},{"name":"UBLOCK_INDIC_SIYAQ_NUMBERS","features":[72]},{"name":"UBLOCK_INSCRIPTIONAL_PAHLAVI","features":[72]},{"name":"UBLOCK_INSCRIPTIONAL_PARTHIAN","features":[72]},{"name":"UBLOCK_INVALID_CODE","features":[72]},{"name":"UBLOCK_IPA_EXTENSIONS","features":[72]},{"name":"UBLOCK_JAVANESE","features":[72]},{"name":"UBLOCK_KAITHI","features":[72]},{"name":"UBLOCK_KANA_EXTENDED_A","features":[72]},{"name":"UBLOCK_KANA_SUPPLEMENT","features":[72]},{"name":"UBLOCK_KANBUN","features":[72]},{"name":"UBLOCK_KANGXI_RADICALS","features":[72]},{"name":"UBLOCK_KANNADA","features":[72]},{"name":"UBLOCK_KATAKANA","features":[72]},{"name":"UBLOCK_KATAKANA_PHONETIC_EXTENSIONS","features":[72]},{"name":"UBLOCK_KAYAH_LI","features":[72]},{"name":"UBLOCK_KHAROSHTHI","features":[72]},{"name":"UBLOCK_KHITAN_SMALL_SCRIPT","features":[72]},{"name":"UBLOCK_KHMER","features":[72]},{"name":"UBLOCK_KHMER_SYMBOLS","features":[72]},{"name":"UBLOCK_KHOJKI","features":[72]},{"name":"UBLOCK_KHUDAWADI","features":[72]},{"name":"UBLOCK_LAO","features":[72]},{"name":"UBLOCK_LATIN_1_SUPPLEMENT","features":[72]},{"name":"UBLOCK_LATIN_EXTENDED_A","features":[72]},{"name":"UBLOCK_LATIN_EXTENDED_ADDITIONAL","features":[72]},{"name":"UBLOCK_LATIN_EXTENDED_B","features":[72]},{"name":"UBLOCK_LATIN_EXTENDED_C","features":[72]},{"name":"UBLOCK_LATIN_EXTENDED_D","features":[72]},{"name":"UBLOCK_LATIN_EXTENDED_E","features":[72]},{"name":"UBLOCK_LEPCHA","features":[72]},{"name":"UBLOCK_LETTERLIKE_SYMBOLS","features":[72]},{"name":"UBLOCK_LIMBU","features":[72]},{"name":"UBLOCK_LINEAR_A","features":[72]},{"name":"UBLOCK_LINEAR_B_IDEOGRAMS","features":[72]},{"name":"UBLOCK_LINEAR_B_SYLLABARY","features":[72]},{"name":"UBLOCK_LISU","features":[72]},{"name":"UBLOCK_LISU_SUPPLEMENT","features":[72]},{"name":"UBLOCK_LOW_SURROGATES","features":[72]},{"name":"UBLOCK_LYCIAN","features":[72]},{"name":"UBLOCK_LYDIAN","features":[72]},{"name":"UBLOCK_MAHAJANI","features":[72]},{"name":"UBLOCK_MAHJONG_TILES","features":[72]},{"name":"UBLOCK_MAKASAR","features":[72]},{"name":"UBLOCK_MALAYALAM","features":[72]},{"name":"UBLOCK_MANDAIC","features":[72]},{"name":"UBLOCK_MANICHAEAN","features":[72]},{"name":"UBLOCK_MARCHEN","features":[72]},{"name":"UBLOCK_MASARAM_GONDI","features":[72]},{"name":"UBLOCK_MATHEMATICAL_ALPHANUMERIC_SYMBOLS","features":[72]},{"name":"UBLOCK_MATHEMATICAL_OPERATORS","features":[72]},{"name":"UBLOCK_MAYAN_NUMERALS","features":[72]},{"name":"UBLOCK_MEDEFAIDRIN","features":[72]},{"name":"UBLOCK_MEETEI_MAYEK","features":[72]},{"name":"UBLOCK_MEETEI_MAYEK_EXTENSIONS","features":[72]},{"name":"UBLOCK_MENDE_KIKAKUI","features":[72]},{"name":"UBLOCK_MEROITIC_CURSIVE","features":[72]},{"name":"UBLOCK_MEROITIC_HIEROGLYPHS","features":[72]},{"name":"UBLOCK_MIAO","features":[72]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A","features":[72]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B","features":[72]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS","features":[72]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_ARROWS","features":[72]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS","features":[72]},{"name":"UBLOCK_MISCELLANEOUS_TECHNICAL","features":[72]},{"name":"UBLOCK_MODI","features":[72]},{"name":"UBLOCK_MODIFIER_TONE_LETTERS","features":[72]},{"name":"UBLOCK_MONGOLIAN","features":[72]},{"name":"UBLOCK_MONGOLIAN_SUPPLEMENT","features":[72]},{"name":"UBLOCK_MRO","features":[72]},{"name":"UBLOCK_MULTANI","features":[72]},{"name":"UBLOCK_MUSICAL_SYMBOLS","features":[72]},{"name":"UBLOCK_MYANMAR","features":[72]},{"name":"UBLOCK_MYANMAR_EXTENDED_A","features":[72]},{"name":"UBLOCK_MYANMAR_EXTENDED_B","features":[72]},{"name":"UBLOCK_NABATAEAN","features":[72]},{"name":"UBLOCK_NANDINAGARI","features":[72]},{"name":"UBLOCK_NEWA","features":[72]},{"name":"UBLOCK_NEW_TAI_LUE","features":[72]},{"name":"UBLOCK_NKO","features":[72]},{"name":"UBLOCK_NO_BLOCK","features":[72]},{"name":"UBLOCK_NUMBER_FORMS","features":[72]},{"name":"UBLOCK_NUSHU","features":[72]},{"name":"UBLOCK_NYIAKENG_PUACHUE_HMONG","features":[72]},{"name":"UBLOCK_OGHAM","features":[72]},{"name":"UBLOCK_OLD_HUNGARIAN","features":[72]},{"name":"UBLOCK_OLD_ITALIC","features":[72]},{"name":"UBLOCK_OLD_NORTH_ARABIAN","features":[72]},{"name":"UBLOCK_OLD_PERMIC","features":[72]},{"name":"UBLOCK_OLD_PERSIAN","features":[72]},{"name":"UBLOCK_OLD_SOGDIAN","features":[72]},{"name":"UBLOCK_OLD_SOUTH_ARABIAN","features":[72]},{"name":"UBLOCK_OLD_TURKIC","features":[72]},{"name":"UBLOCK_OL_CHIKI","features":[72]},{"name":"UBLOCK_OPTICAL_CHARACTER_RECOGNITION","features":[72]},{"name":"UBLOCK_ORIYA","features":[72]},{"name":"UBLOCK_ORNAMENTAL_DINGBATS","features":[72]},{"name":"UBLOCK_OSAGE","features":[72]},{"name":"UBLOCK_OSMANYA","features":[72]},{"name":"UBLOCK_OTTOMAN_SIYAQ_NUMBERS","features":[72]},{"name":"UBLOCK_PAHAWH_HMONG","features":[72]},{"name":"UBLOCK_PALMYRENE","features":[72]},{"name":"UBLOCK_PAU_CIN_HAU","features":[72]},{"name":"UBLOCK_PHAGS_PA","features":[72]},{"name":"UBLOCK_PHAISTOS_DISC","features":[72]},{"name":"UBLOCK_PHOENICIAN","features":[72]},{"name":"UBLOCK_PHONETIC_EXTENSIONS","features":[72]},{"name":"UBLOCK_PHONETIC_EXTENSIONS_SUPPLEMENT","features":[72]},{"name":"UBLOCK_PLAYING_CARDS","features":[72]},{"name":"UBLOCK_PRIVATE_USE","features":[72]},{"name":"UBLOCK_PRIVATE_USE_AREA","features":[72]},{"name":"UBLOCK_PSALTER_PAHLAVI","features":[72]},{"name":"UBLOCK_REJANG","features":[72]},{"name":"UBLOCK_RUMI_NUMERAL_SYMBOLS","features":[72]},{"name":"UBLOCK_RUNIC","features":[72]},{"name":"UBLOCK_SAMARITAN","features":[72]},{"name":"UBLOCK_SAURASHTRA","features":[72]},{"name":"UBLOCK_SHARADA","features":[72]},{"name":"UBLOCK_SHAVIAN","features":[72]},{"name":"UBLOCK_SHORTHAND_FORMAT_CONTROLS","features":[72]},{"name":"UBLOCK_SIDDHAM","features":[72]},{"name":"UBLOCK_SINHALA","features":[72]},{"name":"UBLOCK_SINHALA_ARCHAIC_NUMBERS","features":[72]},{"name":"UBLOCK_SMALL_FORM_VARIANTS","features":[72]},{"name":"UBLOCK_SMALL_KANA_EXTENSION","features":[72]},{"name":"UBLOCK_SOGDIAN","features":[72]},{"name":"UBLOCK_SORA_SOMPENG","features":[72]},{"name":"UBLOCK_SOYOMBO","features":[72]},{"name":"UBLOCK_SPACING_MODIFIER_LETTERS","features":[72]},{"name":"UBLOCK_SPECIALS","features":[72]},{"name":"UBLOCK_SUNDANESE","features":[72]},{"name":"UBLOCK_SUNDANESE_SUPPLEMENT","features":[72]},{"name":"UBLOCK_SUPERSCRIPTS_AND_SUBSCRIPTS","features":[72]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_A","features":[72]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_B","features":[72]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_C","features":[72]},{"name":"UBLOCK_SUPPLEMENTAL_MATHEMATICAL_OPERATORS","features":[72]},{"name":"UBLOCK_SUPPLEMENTAL_PUNCTUATION","features":[72]},{"name":"UBLOCK_SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS","features":[72]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_A","features":[72]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_B","features":[72]},{"name":"UBLOCK_SUTTON_SIGNWRITING","features":[72]},{"name":"UBLOCK_SYLOTI_NAGRI","features":[72]},{"name":"UBLOCK_SYMBOLS_AND_PICTOGRAPHS_EXTENDED_A","features":[72]},{"name":"UBLOCK_SYMBOLS_FOR_LEGACY_COMPUTING","features":[72]},{"name":"UBLOCK_SYRIAC","features":[72]},{"name":"UBLOCK_SYRIAC_SUPPLEMENT","features":[72]},{"name":"UBLOCK_TAGALOG","features":[72]},{"name":"UBLOCK_TAGBANWA","features":[72]},{"name":"UBLOCK_TAGS","features":[72]},{"name":"UBLOCK_TAI_LE","features":[72]},{"name":"UBLOCK_TAI_THAM","features":[72]},{"name":"UBLOCK_TAI_VIET","features":[72]},{"name":"UBLOCK_TAI_XUAN_JING_SYMBOLS","features":[72]},{"name":"UBLOCK_TAKRI","features":[72]},{"name":"UBLOCK_TAMIL","features":[72]},{"name":"UBLOCK_TAMIL_SUPPLEMENT","features":[72]},{"name":"UBLOCK_TANGUT","features":[72]},{"name":"UBLOCK_TANGUT_COMPONENTS","features":[72]},{"name":"UBLOCK_TANGUT_SUPPLEMENT","features":[72]},{"name":"UBLOCK_TELUGU","features":[72]},{"name":"UBLOCK_THAANA","features":[72]},{"name":"UBLOCK_THAI","features":[72]},{"name":"UBLOCK_TIBETAN","features":[72]},{"name":"UBLOCK_TIFINAGH","features":[72]},{"name":"UBLOCK_TIRHUTA","features":[72]},{"name":"UBLOCK_TRANSPORT_AND_MAP_SYMBOLS","features":[72]},{"name":"UBLOCK_UGARITIC","features":[72]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS","features":[72]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED","features":[72]},{"name":"UBLOCK_VAI","features":[72]},{"name":"UBLOCK_VARIATION_SELECTORS","features":[72]},{"name":"UBLOCK_VARIATION_SELECTORS_SUPPLEMENT","features":[72]},{"name":"UBLOCK_VEDIC_EXTENSIONS","features":[72]},{"name":"UBLOCK_VERTICAL_FORMS","features":[72]},{"name":"UBLOCK_WANCHO","features":[72]},{"name":"UBLOCK_WARANG_CITI","features":[72]},{"name":"UBLOCK_YEZIDI","features":[72]},{"name":"UBLOCK_YIJING_HEXAGRAM_SYMBOLS","features":[72]},{"name":"UBLOCK_YI_RADICALS","features":[72]},{"name":"UBLOCK_YI_SYLLABLES","features":[72]},{"name":"UBLOCK_ZANABAZAR_SQUARE","features":[72]},{"name":"UBRK_CHARACTER","features":[72]},{"name":"UBRK_LINE","features":[72]},{"name":"UBRK_LINE_HARD","features":[72]},{"name":"UBRK_LINE_HARD_LIMIT","features":[72]},{"name":"UBRK_LINE_SOFT","features":[72]},{"name":"UBRK_LINE_SOFT_LIMIT","features":[72]},{"name":"UBRK_SENTENCE","features":[72]},{"name":"UBRK_SENTENCE_SEP","features":[72]},{"name":"UBRK_SENTENCE_SEP_LIMIT","features":[72]},{"name":"UBRK_SENTENCE_TERM","features":[72]},{"name":"UBRK_SENTENCE_TERM_LIMIT","features":[72]},{"name":"UBRK_WORD","features":[72]},{"name":"UBRK_WORD_IDEO","features":[72]},{"name":"UBRK_WORD_IDEO_LIMIT","features":[72]},{"name":"UBRK_WORD_KANA","features":[72]},{"name":"UBRK_WORD_KANA_LIMIT","features":[72]},{"name":"UBRK_WORD_LETTER","features":[72]},{"name":"UBRK_WORD_LETTER_LIMIT","features":[72]},{"name":"UBRK_WORD_NONE","features":[72]},{"name":"UBRK_WORD_NONE_LIMIT","features":[72]},{"name":"UBRK_WORD_NUMBER","features":[72]},{"name":"UBRK_WORD_NUMBER_LIMIT","features":[72]},{"name":"UBiDi","features":[72]},{"name":"UBiDiClassCallback","features":[72]},{"name":"UBiDiDirection","features":[72]},{"name":"UBiDiMirroring","features":[72]},{"name":"UBiDiOrder","features":[72]},{"name":"UBiDiReorderingMode","features":[72]},{"name":"UBiDiReorderingOption","features":[72]},{"name":"UBiDiTransform","features":[72]},{"name":"UBidiPairedBracketType","features":[72]},{"name":"UBlockCode","features":[72]},{"name":"UBreakIterator","features":[72]},{"name":"UBreakIteratorType","features":[72]},{"name":"UCAL_ACTUAL_MAXIMUM","features":[72]},{"name":"UCAL_ACTUAL_MINIMUM","features":[72]},{"name":"UCAL_AM","features":[72]},{"name":"UCAL_AM_PM","features":[72]},{"name":"UCAL_APRIL","features":[72]},{"name":"UCAL_AUGUST","features":[72]},{"name":"UCAL_DATE","features":[72]},{"name":"UCAL_DAY_OF_MONTH","features":[72]},{"name":"UCAL_DAY_OF_WEEK","features":[72]},{"name":"UCAL_DAY_OF_WEEK_IN_MONTH","features":[72]},{"name":"UCAL_DAY_OF_YEAR","features":[72]},{"name":"UCAL_DECEMBER","features":[72]},{"name":"UCAL_DEFAULT","features":[72]},{"name":"UCAL_DOW_LOCAL","features":[72]},{"name":"UCAL_DST","features":[72]},{"name":"UCAL_DST_OFFSET","features":[72]},{"name":"UCAL_ERA","features":[72]},{"name":"UCAL_EXTENDED_YEAR","features":[72]},{"name":"UCAL_FEBRUARY","features":[72]},{"name":"UCAL_FIELD_COUNT","features":[72]},{"name":"UCAL_FIRST_DAY_OF_WEEK","features":[72]},{"name":"UCAL_FRIDAY","features":[72]},{"name":"UCAL_GREATEST_MINIMUM","features":[72]},{"name":"UCAL_GREGORIAN","features":[72]},{"name":"UCAL_HOUR","features":[72]},{"name":"UCAL_HOUR_OF_DAY","features":[72]},{"name":"UCAL_IS_LEAP_MONTH","features":[72]},{"name":"UCAL_JANUARY","features":[72]},{"name":"UCAL_JULIAN_DAY","features":[72]},{"name":"UCAL_JULY","features":[72]},{"name":"UCAL_JUNE","features":[72]},{"name":"UCAL_LEAST_MAXIMUM","features":[72]},{"name":"UCAL_LENIENT","features":[72]},{"name":"UCAL_MARCH","features":[72]},{"name":"UCAL_MAXIMUM","features":[72]},{"name":"UCAL_MAY","features":[72]},{"name":"UCAL_MILLISECOND","features":[72]},{"name":"UCAL_MILLISECONDS_IN_DAY","features":[72]},{"name":"UCAL_MINIMAL_DAYS_IN_FIRST_WEEK","features":[72]},{"name":"UCAL_MINIMUM","features":[72]},{"name":"UCAL_MINUTE","features":[72]},{"name":"UCAL_MONDAY","features":[72]},{"name":"UCAL_MONTH","features":[72]},{"name":"UCAL_NOVEMBER","features":[72]},{"name":"UCAL_OCTOBER","features":[72]},{"name":"UCAL_PM","features":[72]},{"name":"UCAL_REPEATED_WALL_TIME","features":[72]},{"name":"UCAL_SATURDAY","features":[72]},{"name":"UCAL_SECOND","features":[72]},{"name":"UCAL_SEPTEMBER","features":[72]},{"name":"UCAL_SHORT_DST","features":[72]},{"name":"UCAL_SHORT_STANDARD","features":[72]},{"name":"UCAL_SKIPPED_WALL_TIME","features":[72]},{"name":"UCAL_STANDARD","features":[72]},{"name":"UCAL_SUNDAY","features":[72]},{"name":"UCAL_THURSDAY","features":[72]},{"name":"UCAL_TRADITIONAL","features":[72]},{"name":"UCAL_TUESDAY","features":[72]},{"name":"UCAL_TZ_TRANSITION_NEXT","features":[72]},{"name":"UCAL_TZ_TRANSITION_NEXT_INCLUSIVE","features":[72]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS","features":[72]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS_INCLUSIVE","features":[72]},{"name":"UCAL_UNDECIMBER","features":[72]},{"name":"UCAL_UNKNOWN_ZONE_ID","features":[72]},{"name":"UCAL_WALLTIME_FIRST","features":[72]},{"name":"UCAL_WALLTIME_LAST","features":[72]},{"name":"UCAL_WALLTIME_NEXT_VALID","features":[72]},{"name":"UCAL_WEDNESDAY","features":[72]},{"name":"UCAL_WEEKDAY","features":[72]},{"name":"UCAL_WEEKEND","features":[72]},{"name":"UCAL_WEEKEND_CEASE","features":[72]},{"name":"UCAL_WEEKEND_ONSET","features":[72]},{"name":"UCAL_WEEK_OF_MONTH","features":[72]},{"name":"UCAL_WEEK_OF_YEAR","features":[72]},{"name":"UCAL_YEAR","features":[72]},{"name":"UCAL_YEAR_WOY","features":[72]},{"name":"UCAL_ZONE_OFFSET","features":[72]},{"name":"UCAL_ZONE_TYPE_ANY","features":[72]},{"name":"UCAL_ZONE_TYPE_CANONICAL","features":[72]},{"name":"UCAL_ZONE_TYPE_CANONICAL_LOCATION","features":[72]},{"name":"UCHAR_AGE","features":[72]},{"name":"UCHAR_ALPHABETIC","features":[72]},{"name":"UCHAR_ASCII_HEX_DIGIT","features":[72]},{"name":"UCHAR_BIDI_CLASS","features":[72]},{"name":"UCHAR_BIDI_CONTROL","features":[72]},{"name":"UCHAR_BIDI_MIRRORED","features":[72]},{"name":"UCHAR_BIDI_MIRRORING_GLYPH","features":[72]},{"name":"UCHAR_BIDI_PAIRED_BRACKET","features":[72]},{"name":"UCHAR_BIDI_PAIRED_BRACKET_TYPE","features":[72]},{"name":"UCHAR_BINARY_START","features":[72]},{"name":"UCHAR_BLOCK","features":[72]},{"name":"UCHAR_CANONICAL_COMBINING_CLASS","features":[72]},{"name":"UCHAR_CASED","features":[72]},{"name":"UCHAR_CASE_FOLDING","features":[72]},{"name":"UCHAR_CASE_IGNORABLE","features":[72]},{"name":"UCHAR_CASE_SENSITIVE","features":[72]},{"name":"UCHAR_CHANGES_WHEN_CASEFOLDED","features":[72]},{"name":"UCHAR_CHANGES_WHEN_CASEMAPPED","features":[72]},{"name":"UCHAR_CHANGES_WHEN_LOWERCASED","features":[72]},{"name":"UCHAR_CHANGES_WHEN_NFKC_CASEFOLDED","features":[72]},{"name":"UCHAR_CHANGES_WHEN_TITLECASED","features":[72]},{"name":"UCHAR_CHANGES_WHEN_UPPERCASED","features":[72]},{"name":"UCHAR_DASH","features":[72]},{"name":"UCHAR_DECOMPOSITION_TYPE","features":[72]},{"name":"UCHAR_DEFAULT_IGNORABLE_CODE_POINT","features":[72]},{"name":"UCHAR_DEPRECATED","features":[72]},{"name":"UCHAR_DIACRITIC","features":[72]},{"name":"UCHAR_DOUBLE_START","features":[72]},{"name":"UCHAR_EAST_ASIAN_WIDTH","features":[72]},{"name":"UCHAR_EMOJI","features":[72]},{"name":"UCHAR_EMOJI_COMPONENT","features":[72]},{"name":"UCHAR_EMOJI_MODIFIER","features":[72]},{"name":"UCHAR_EMOJI_MODIFIER_BASE","features":[72]},{"name":"UCHAR_EMOJI_PRESENTATION","features":[72]},{"name":"UCHAR_EXTENDED_PICTOGRAPHIC","features":[72]},{"name":"UCHAR_EXTENDER","features":[72]},{"name":"UCHAR_FULL_COMPOSITION_EXCLUSION","features":[72]},{"name":"UCHAR_GENERAL_CATEGORY","features":[72]},{"name":"UCHAR_GENERAL_CATEGORY_MASK","features":[72]},{"name":"UCHAR_GRAPHEME_BASE","features":[72]},{"name":"UCHAR_GRAPHEME_CLUSTER_BREAK","features":[72]},{"name":"UCHAR_GRAPHEME_EXTEND","features":[72]},{"name":"UCHAR_GRAPHEME_LINK","features":[72]},{"name":"UCHAR_HANGUL_SYLLABLE_TYPE","features":[72]},{"name":"UCHAR_HEX_DIGIT","features":[72]},{"name":"UCHAR_HYPHEN","features":[72]},{"name":"UCHAR_IDEOGRAPHIC","features":[72]},{"name":"UCHAR_IDS_BINARY_OPERATOR","features":[72]},{"name":"UCHAR_IDS_TRINARY_OPERATOR","features":[72]},{"name":"UCHAR_ID_CONTINUE","features":[72]},{"name":"UCHAR_ID_START","features":[72]},{"name":"UCHAR_INDIC_POSITIONAL_CATEGORY","features":[72]},{"name":"UCHAR_INDIC_SYLLABIC_CATEGORY","features":[72]},{"name":"UCHAR_INT_START","features":[72]},{"name":"UCHAR_INVALID_CODE","features":[72]},{"name":"UCHAR_JOINING_GROUP","features":[72]},{"name":"UCHAR_JOINING_TYPE","features":[72]},{"name":"UCHAR_JOIN_CONTROL","features":[72]},{"name":"UCHAR_LEAD_CANONICAL_COMBINING_CLASS","features":[72]},{"name":"UCHAR_LINE_BREAK","features":[72]},{"name":"UCHAR_LOGICAL_ORDER_EXCEPTION","features":[72]},{"name":"UCHAR_LOWERCASE","features":[72]},{"name":"UCHAR_LOWERCASE_MAPPING","features":[72]},{"name":"UCHAR_MASK_START","features":[72]},{"name":"UCHAR_MATH","features":[72]},{"name":"UCHAR_MAX_VALUE","features":[72]},{"name":"UCHAR_MIN_VALUE","features":[72]},{"name":"UCHAR_NAME","features":[72]},{"name":"UCHAR_NFC_INERT","features":[72]},{"name":"UCHAR_NFC_QUICK_CHECK","features":[72]},{"name":"UCHAR_NFD_INERT","features":[72]},{"name":"UCHAR_NFD_QUICK_CHECK","features":[72]},{"name":"UCHAR_NFKC_INERT","features":[72]},{"name":"UCHAR_NFKC_QUICK_CHECK","features":[72]},{"name":"UCHAR_NFKD_INERT","features":[72]},{"name":"UCHAR_NFKD_QUICK_CHECK","features":[72]},{"name":"UCHAR_NONCHARACTER_CODE_POINT","features":[72]},{"name":"UCHAR_NUMERIC_TYPE","features":[72]},{"name":"UCHAR_NUMERIC_VALUE","features":[72]},{"name":"UCHAR_OTHER_PROPERTY_START","features":[72]},{"name":"UCHAR_PATTERN_SYNTAX","features":[72]},{"name":"UCHAR_PATTERN_WHITE_SPACE","features":[72]},{"name":"UCHAR_POSIX_ALNUM","features":[72]},{"name":"UCHAR_POSIX_BLANK","features":[72]},{"name":"UCHAR_POSIX_GRAPH","features":[72]},{"name":"UCHAR_POSIX_PRINT","features":[72]},{"name":"UCHAR_POSIX_XDIGIT","features":[72]},{"name":"UCHAR_PREPENDED_CONCATENATION_MARK","features":[72]},{"name":"UCHAR_QUOTATION_MARK","features":[72]},{"name":"UCHAR_RADICAL","features":[72]},{"name":"UCHAR_REGIONAL_INDICATOR","features":[72]},{"name":"UCHAR_SCRIPT","features":[72]},{"name":"UCHAR_SCRIPT_EXTENSIONS","features":[72]},{"name":"UCHAR_SEGMENT_STARTER","features":[72]},{"name":"UCHAR_SENTENCE_BREAK","features":[72]},{"name":"UCHAR_SIMPLE_CASE_FOLDING","features":[72]},{"name":"UCHAR_SIMPLE_LOWERCASE_MAPPING","features":[72]},{"name":"UCHAR_SIMPLE_TITLECASE_MAPPING","features":[72]},{"name":"UCHAR_SIMPLE_UPPERCASE_MAPPING","features":[72]},{"name":"UCHAR_SOFT_DOTTED","features":[72]},{"name":"UCHAR_STRING_START","features":[72]},{"name":"UCHAR_S_TERM","features":[72]},{"name":"UCHAR_TERMINAL_PUNCTUATION","features":[72]},{"name":"UCHAR_TITLECASE_MAPPING","features":[72]},{"name":"UCHAR_TRAIL_CANONICAL_COMBINING_CLASS","features":[72]},{"name":"UCHAR_UNIFIED_IDEOGRAPH","features":[72]},{"name":"UCHAR_UPPERCASE","features":[72]},{"name":"UCHAR_UPPERCASE_MAPPING","features":[72]},{"name":"UCHAR_VARIATION_SELECTOR","features":[72]},{"name":"UCHAR_VERTICAL_ORIENTATION","features":[72]},{"name":"UCHAR_WHITE_SPACE","features":[72]},{"name":"UCHAR_WORD_BREAK","features":[72]},{"name":"UCHAR_XID_CONTINUE","features":[72]},{"name":"UCHAR_XID_START","features":[72]},{"name":"UCLN_NO_AUTO_CLEANUP","features":[72]},{"name":"UCNV_BOCU1","features":[72]},{"name":"UCNV_CESU8","features":[72]},{"name":"UCNV_CLONE","features":[72]},{"name":"UCNV_CLOSE","features":[72]},{"name":"UCNV_COMPOUND_TEXT","features":[72]},{"name":"UCNV_DBCS","features":[72]},{"name":"UCNV_EBCDIC_STATEFUL","features":[72]},{"name":"UCNV_ESCAPE_C","features":[72]},{"name":"UCNV_ESCAPE_CSS2","features":[72]},{"name":"UCNV_ESCAPE_JAVA","features":[72]},{"name":"UCNV_ESCAPE_UNICODE","features":[72]},{"name":"UCNV_ESCAPE_XML_DEC","features":[72]},{"name":"UCNV_ESCAPE_XML_HEX","features":[72]},{"name":"UCNV_FROM_U_CALLBACK_ESCAPE","features":[72]},{"name":"UCNV_FROM_U_CALLBACK_SKIP","features":[72]},{"name":"UCNV_FROM_U_CALLBACK_STOP","features":[72]},{"name":"UCNV_FROM_U_CALLBACK_SUBSTITUTE","features":[72]},{"name":"UCNV_HZ","features":[72]},{"name":"UCNV_IBM","features":[72]},{"name":"UCNV_ILLEGAL","features":[72]},{"name":"UCNV_IMAP_MAILBOX","features":[72]},{"name":"UCNV_IRREGULAR","features":[72]},{"name":"UCNV_ISCII","features":[72]},{"name":"UCNV_ISO_2022","features":[72]},{"name":"UCNV_LATIN_1","features":[72]},{"name":"UCNV_LMBCS_1","features":[72]},{"name":"UCNV_LMBCS_11","features":[72]},{"name":"UCNV_LMBCS_16","features":[72]},{"name":"UCNV_LMBCS_17","features":[72]},{"name":"UCNV_LMBCS_18","features":[72]},{"name":"UCNV_LMBCS_19","features":[72]},{"name":"UCNV_LMBCS_2","features":[72]},{"name":"UCNV_LMBCS_3","features":[72]},{"name":"UCNV_LMBCS_4","features":[72]},{"name":"UCNV_LMBCS_5","features":[72]},{"name":"UCNV_LMBCS_6","features":[72]},{"name":"UCNV_LMBCS_8","features":[72]},{"name":"UCNV_LMBCS_LAST","features":[72]},{"name":"UCNV_LOCALE_OPTION_STRING","features":[72]},{"name":"UCNV_MAX_CONVERTER_NAME_LENGTH","features":[72]},{"name":"UCNV_MBCS","features":[72]},{"name":"UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES","features":[72]},{"name":"UCNV_OPTION_SEP_STRING","features":[72]},{"name":"UCNV_RESET","features":[72]},{"name":"UCNV_ROUNDTRIP_AND_FALLBACK_SET","features":[72]},{"name":"UCNV_ROUNDTRIP_SET","features":[72]},{"name":"UCNV_SBCS","features":[72]},{"name":"UCNV_SCSU","features":[72]},{"name":"UCNV_SI","features":[72]},{"name":"UCNV_SKIP_STOP_ON_ILLEGAL","features":[72]},{"name":"UCNV_SO","features":[72]},{"name":"UCNV_SUB_STOP_ON_ILLEGAL","features":[72]},{"name":"UCNV_SWAP_LFNL_OPTION_STRING","features":[72]},{"name":"UCNV_TO_U_CALLBACK_ESCAPE","features":[72]},{"name":"UCNV_TO_U_CALLBACK_SKIP","features":[72]},{"name":"UCNV_TO_U_CALLBACK_STOP","features":[72]},{"name":"UCNV_TO_U_CALLBACK_SUBSTITUTE","features":[72]},{"name":"UCNV_UNASSIGNED","features":[72]},{"name":"UCNV_UNKNOWN","features":[72]},{"name":"UCNV_UNSUPPORTED_CONVERTER","features":[72]},{"name":"UCNV_US_ASCII","features":[72]},{"name":"UCNV_UTF16","features":[72]},{"name":"UCNV_UTF16_BigEndian","features":[72]},{"name":"UCNV_UTF16_LittleEndian","features":[72]},{"name":"UCNV_UTF32","features":[72]},{"name":"UCNV_UTF32_BigEndian","features":[72]},{"name":"UCNV_UTF32_LittleEndian","features":[72]},{"name":"UCNV_UTF7","features":[72]},{"name":"UCNV_UTF8","features":[72]},{"name":"UCNV_VALUE_SEP_STRING","features":[72]},{"name":"UCNV_VERSION_OPTION_STRING","features":[72]},{"name":"UCOL_ALTERNATE_HANDLING","features":[72]},{"name":"UCOL_ATTRIBUTE_COUNT","features":[72]},{"name":"UCOL_BOUND_LOWER","features":[72]},{"name":"UCOL_BOUND_UPPER","features":[72]},{"name":"UCOL_BOUND_UPPER_LONG","features":[72]},{"name":"UCOL_CASE_FIRST","features":[72]},{"name":"UCOL_CASE_LEVEL","features":[72]},{"name":"UCOL_CE_STRENGTH_LIMIT","features":[72]},{"name":"UCOL_DECOMPOSITION_MODE","features":[72]},{"name":"UCOL_DEFAULT","features":[72]},{"name":"UCOL_DEFAULT_STRENGTH","features":[72]},{"name":"UCOL_EQUAL","features":[72]},{"name":"UCOL_FRENCH_COLLATION","features":[72]},{"name":"UCOL_FULL_RULES","features":[72]},{"name":"UCOL_GREATER","features":[72]},{"name":"UCOL_IDENTICAL","features":[72]},{"name":"UCOL_LESS","features":[72]},{"name":"UCOL_LOWER_FIRST","features":[72]},{"name":"UCOL_NON_IGNORABLE","features":[72]},{"name":"UCOL_NORMALIZATION_MODE","features":[72]},{"name":"UCOL_NUMERIC_COLLATION","features":[72]},{"name":"UCOL_OFF","features":[72]},{"name":"UCOL_ON","features":[72]},{"name":"UCOL_PRIMARY","features":[72]},{"name":"UCOL_QUATERNARY","features":[72]},{"name":"UCOL_REORDER_CODE_CURRENCY","features":[72]},{"name":"UCOL_REORDER_CODE_DEFAULT","features":[72]},{"name":"UCOL_REORDER_CODE_DIGIT","features":[72]},{"name":"UCOL_REORDER_CODE_FIRST","features":[72]},{"name":"UCOL_REORDER_CODE_NONE","features":[72]},{"name":"UCOL_REORDER_CODE_OTHERS","features":[72]},{"name":"UCOL_REORDER_CODE_PUNCTUATION","features":[72]},{"name":"UCOL_REORDER_CODE_SPACE","features":[72]},{"name":"UCOL_REORDER_CODE_SYMBOL","features":[72]},{"name":"UCOL_SECONDARY","features":[72]},{"name":"UCOL_SHIFTED","features":[72]},{"name":"UCOL_STRENGTH","features":[72]},{"name":"UCOL_STRENGTH_LIMIT","features":[72]},{"name":"UCOL_TAILORING_ONLY","features":[72]},{"name":"UCOL_TERTIARY","features":[72]},{"name":"UCOL_UPPER_FIRST","features":[72]},{"name":"UCONFIG_ENABLE_PLUGINS","features":[72]},{"name":"UCONFIG_FORMAT_FASTPATHS_49","features":[72]},{"name":"UCONFIG_HAVE_PARSEALLINPUT","features":[72]},{"name":"UCONFIG_NO_BREAK_ITERATION","features":[72]},{"name":"UCONFIG_NO_COLLATION","features":[72]},{"name":"UCONFIG_NO_CONVERSION","features":[72]},{"name":"UCONFIG_NO_FILE_IO","features":[72]},{"name":"UCONFIG_NO_FILTERED_BREAK_ITERATION","features":[72]},{"name":"UCONFIG_NO_FORMATTING","features":[72]},{"name":"UCONFIG_NO_IDNA","features":[72]},{"name":"UCONFIG_NO_LEGACY_CONVERSION","features":[72]},{"name":"UCONFIG_NO_NORMALIZATION","features":[72]},{"name":"UCONFIG_NO_REGULAR_EXPRESSIONS","features":[72]},{"name":"UCONFIG_NO_SERVICE","features":[72]},{"name":"UCONFIG_NO_TRANSLITERATION","features":[72]},{"name":"UCONFIG_ONLY_COLLATION","features":[72]},{"name":"UCONFIG_ONLY_HTML_CONVERSION","features":[72]},{"name":"UCPMAP_RANGE_FIXED_ALL_SURROGATES","features":[72]},{"name":"UCPMAP_RANGE_FIXED_LEAD_SURROGATES","features":[72]},{"name":"UCPMAP_RANGE_NORMAL","features":[72]},{"name":"UCPMap","features":[72]},{"name":"UCPMapRangeOption","features":[72]},{"name":"UCPMapValueFilter","features":[72]},{"name":"UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET","features":[72]},{"name":"UCPTRIE_FAST_DATA_BLOCK_LENGTH","features":[72]},{"name":"UCPTRIE_FAST_DATA_MASK","features":[72]},{"name":"UCPTRIE_FAST_SHIFT","features":[72]},{"name":"UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET","features":[72]},{"name":"UCPTRIE_SMALL_MAX","features":[72]},{"name":"UCPTRIE_TYPE_ANY","features":[72]},{"name":"UCPTRIE_TYPE_FAST","features":[72]},{"name":"UCPTRIE_TYPE_SMALL","features":[72]},{"name":"UCPTRIE_VALUE_BITS_16","features":[72]},{"name":"UCPTRIE_VALUE_BITS_32","features":[72]},{"name":"UCPTRIE_VALUE_BITS_8","features":[72]},{"name":"UCPTRIE_VALUE_BITS_ANY","features":[72]},{"name":"UCPTrie","features":[72]},{"name":"UCPTrieData","features":[72]},{"name":"UCPTrieType","features":[72]},{"name":"UCPTrieValueWidth","features":[72]},{"name":"UCURR_ALL","features":[72]},{"name":"UCURR_COMMON","features":[72]},{"name":"UCURR_DEPRECATED","features":[72]},{"name":"UCURR_LONG_NAME","features":[72]},{"name":"UCURR_NARROW_SYMBOL_NAME","features":[72]},{"name":"UCURR_NON_DEPRECATED","features":[72]},{"name":"UCURR_SYMBOL_NAME","features":[72]},{"name":"UCURR_UNCOMMON","features":[72]},{"name":"UCURR_USAGE_CASH","features":[72]},{"name":"UCURR_USAGE_STANDARD","features":[72]},{"name":"UCalendarAMPMs","features":[72]},{"name":"UCalendarAttribute","features":[72]},{"name":"UCalendarDateFields","features":[72]},{"name":"UCalendarDaysOfWeek","features":[72]},{"name":"UCalendarDisplayNameType","features":[72]},{"name":"UCalendarLimitType","features":[72]},{"name":"UCalendarMonths","features":[72]},{"name":"UCalendarType","features":[72]},{"name":"UCalendarWallTimeOption","features":[72]},{"name":"UCalendarWeekdayType","features":[72]},{"name":"UCaseMap","features":[72]},{"name":"UCharCategory","features":[72]},{"name":"UCharDirection","features":[72]},{"name":"UCharEnumTypeRange","features":[72]},{"name":"UCharIterator","features":[72]},{"name":"UCharIteratorCurrent","features":[72]},{"name":"UCharIteratorGetIndex","features":[72]},{"name":"UCharIteratorGetState","features":[72]},{"name":"UCharIteratorHasNext","features":[72]},{"name":"UCharIteratorHasPrevious","features":[72]},{"name":"UCharIteratorMove","features":[72]},{"name":"UCharIteratorNext","features":[72]},{"name":"UCharIteratorOrigin","features":[72]},{"name":"UCharIteratorPrevious","features":[72]},{"name":"UCharIteratorReserved","features":[72]},{"name":"UCharIteratorSetState","features":[72]},{"name":"UCharNameChoice","features":[72]},{"name":"UCharsetDetector","features":[72]},{"name":"UCharsetMatch","features":[72]},{"name":"UColAttribute","features":[72]},{"name":"UColAttributeValue","features":[72]},{"name":"UColBoundMode","features":[72]},{"name":"UColReorderCode","features":[72]},{"name":"UColRuleOption","features":[72]},{"name":"UCollationElements","features":[72]},{"name":"UCollationResult","features":[72]},{"name":"UCollator","features":[72]},{"name":"UConstrainedFieldPosition","features":[72]},{"name":"UConverter","features":[72]},{"name":"UConverterCallbackReason","features":[72]},{"name":"UConverterFromUCallback","features":[72]},{"name":"UConverterFromUnicodeArgs","features":[72]},{"name":"UConverterPlatform","features":[72]},{"name":"UConverterSelector","features":[72]},{"name":"UConverterToUCallback","features":[72]},{"name":"UConverterToUnicodeArgs","features":[72]},{"name":"UConverterType","features":[72]},{"name":"UConverterUnicodeSet","features":[72]},{"name":"UCurrCurrencyType","features":[72]},{"name":"UCurrNameStyle","features":[72]},{"name":"UCurrencySpacing","features":[72]},{"name":"UCurrencyUsage","features":[72]},{"name":"UDATPG_ABBREVIATED","features":[72]},{"name":"UDATPG_BASE_CONFLICT","features":[72]},{"name":"UDATPG_CONFLICT","features":[72]},{"name":"UDATPG_DAYPERIOD_FIELD","features":[72]},{"name":"UDATPG_DAY_FIELD","features":[72]},{"name":"UDATPG_DAY_OF_WEEK_IN_MONTH_FIELD","features":[72]},{"name":"UDATPG_DAY_OF_YEAR_FIELD","features":[72]},{"name":"UDATPG_ERA_FIELD","features":[72]},{"name":"UDATPG_FIELD_COUNT","features":[72]},{"name":"UDATPG_FRACTIONAL_SECOND_FIELD","features":[72]},{"name":"UDATPG_HOUR_FIELD","features":[72]},{"name":"UDATPG_MATCH_ALL_FIELDS_LENGTH","features":[72]},{"name":"UDATPG_MATCH_HOUR_FIELD_LENGTH","features":[72]},{"name":"UDATPG_MATCH_NO_OPTIONS","features":[72]},{"name":"UDATPG_MINUTE_FIELD","features":[72]},{"name":"UDATPG_MONTH_FIELD","features":[72]},{"name":"UDATPG_NARROW","features":[72]},{"name":"UDATPG_NO_CONFLICT","features":[72]},{"name":"UDATPG_QUARTER_FIELD","features":[72]},{"name":"UDATPG_SECOND_FIELD","features":[72]},{"name":"UDATPG_WEEKDAY_FIELD","features":[72]},{"name":"UDATPG_WEEK_OF_MONTH_FIELD","features":[72]},{"name":"UDATPG_WEEK_OF_YEAR_FIELD","features":[72]},{"name":"UDATPG_WIDE","features":[72]},{"name":"UDATPG_YEAR_FIELD","features":[72]},{"name":"UDATPG_ZONE_FIELD","features":[72]},{"name":"UDAT_ABBR_GENERIC_TZ","features":[72]},{"name":"UDAT_ABBR_MONTH","features":[72]},{"name":"UDAT_ABBR_MONTH_DAY","features":[72]},{"name":"UDAT_ABBR_MONTH_WEEKDAY_DAY","features":[72]},{"name":"UDAT_ABBR_QUARTER","features":[72]},{"name":"UDAT_ABBR_SPECIFIC_TZ","features":[72]},{"name":"UDAT_ABBR_UTC_TZ","features":[72]},{"name":"UDAT_ABBR_WEEKDAY","features":[72]},{"name":"UDAT_ABSOLUTE_DAY","features":[72]},{"name":"UDAT_ABSOLUTE_FRIDAY","features":[72]},{"name":"UDAT_ABSOLUTE_MONDAY","features":[72]},{"name":"UDAT_ABSOLUTE_MONTH","features":[72]},{"name":"UDAT_ABSOLUTE_NOW","features":[72]},{"name":"UDAT_ABSOLUTE_SATURDAY","features":[72]},{"name":"UDAT_ABSOLUTE_SUNDAY","features":[72]},{"name":"UDAT_ABSOLUTE_THURSDAY","features":[72]},{"name":"UDAT_ABSOLUTE_TUESDAY","features":[72]},{"name":"UDAT_ABSOLUTE_UNIT_COUNT","features":[72]},{"name":"UDAT_ABSOLUTE_WEDNESDAY","features":[72]},{"name":"UDAT_ABSOLUTE_WEEK","features":[72]},{"name":"UDAT_ABSOLUTE_YEAR","features":[72]},{"name":"UDAT_AM_PMS","features":[72]},{"name":"UDAT_AM_PM_FIELD","features":[72]},{"name":"UDAT_AM_PM_MIDNIGHT_NOON_FIELD","features":[72]},{"name":"UDAT_BOOLEAN_ATTRIBUTE_COUNT","features":[72]},{"name":"UDAT_CYCLIC_YEARS_ABBREVIATED","features":[72]},{"name":"UDAT_CYCLIC_YEARS_NARROW","features":[72]},{"name":"UDAT_CYCLIC_YEARS_WIDE","features":[72]},{"name":"UDAT_DATE_FIELD","features":[72]},{"name":"UDAT_DAY","features":[72]},{"name":"UDAT_DAY_OF_WEEK_FIELD","features":[72]},{"name":"UDAT_DAY_OF_WEEK_IN_MONTH_FIELD","features":[72]},{"name":"UDAT_DAY_OF_YEAR_FIELD","features":[72]},{"name":"UDAT_DEFAULT","features":[72]},{"name":"UDAT_DIRECTION_COUNT","features":[72]},{"name":"UDAT_DIRECTION_LAST","features":[72]},{"name":"UDAT_DIRECTION_LAST_2","features":[72]},{"name":"UDAT_DIRECTION_NEXT","features":[72]},{"name":"UDAT_DIRECTION_NEXT_2","features":[72]},{"name":"UDAT_DIRECTION_PLAIN","features":[72]},{"name":"UDAT_DIRECTION_THIS","features":[72]},{"name":"UDAT_DOW_LOCAL_FIELD","features":[72]},{"name":"UDAT_ERAS","features":[72]},{"name":"UDAT_ERA_FIELD","features":[72]},{"name":"UDAT_ERA_NAMES","features":[72]},{"name":"UDAT_EXTENDED_YEAR_FIELD","features":[72]},{"name":"UDAT_FLEXIBLE_DAY_PERIOD_FIELD","features":[72]},{"name":"UDAT_FRACTIONAL_SECOND_FIELD","features":[72]},{"name":"UDAT_FULL","features":[72]},{"name":"UDAT_FULL_RELATIVE","features":[72]},{"name":"UDAT_GENERIC_TZ","features":[72]},{"name":"UDAT_HOUR","features":[72]},{"name":"UDAT_HOUR0_FIELD","features":[72]},{"name":"UDAT_HOUR1_FIELD","features":[72]},{"name":"UDAT_HOUR24","features":[72]},{"name":"UDAT_HOUR24_MINUTE","features":[72]},{"name":"UDAT_HOUR24_MINUTE_SECOND","features":[72]},{"name":"UDAT_HOUR_MINUTE","features":[72]},{"name":"UDAT_HOUR_MINUTE_SECOND","features":[72]},{"name":"UDAT_HOUR_OF_DAY0_FIELD","features":[72]},{"name":"UDAT_HOUR_OF_DAY1_FIELD","features":[72]},{"name":"UDAT_JULIAN_DAY_FIELD","features":[72]},{"name":"UDAT_LOCALIZED_CHARS","features":[72]},{"name":"UDAT_LOCATION_TZ","features":[72]},{"name":"UDAT_LONG","features":[72]},{"name":"UDAT_LONG_RELATIVE","features":[72]},{"name":"UDAT_MEDIUM","features":[72]},{"name":"UDAT_MEDIUM_RELATIVE","features":[72]},{"name":"UDAT_MILLISECONDS_IN_DAY_FIELD","features":[72]},{"name":"UDAT_MINUTE","features":[72]},{"name":"UDAT_MINUTE_FIELD","features":[72]},{"name":"UDAT_MINUTE_SECOND","features":[72]},{"name":"UDAT_MONTH","features":[72]},{"name":"UDAT_MONTHS","features":[72]},{"name":"UDAT_MONTH_DAY","features":[72]},{"name":"UDAT_MONTH_FIELD","features":[72]},{"name":"UDAT_MONTH_WEEKDAY_DAY","features":[72]},{"name":"UDAT_NARROW_MONTHS","features":[72]},{"name":"UDAT_NARROW_WEEKDAYS","features":[72]},{"name":"UDAT_NONE","features":[72]},{"name":"UDAT_NUM_MONTH","features":[72]},{"name":"UDAT_NUM_MONTH_DAY","features":[72]},{"name":"UDAT_NUM_MONTH_WEEKDAY_DAY","features":[72]},{"name":"UDAT_PARSE_ALLOW_NUMERIC","features":[72]},{"name":"UDAT_PARSE_ALLOW_WHITESPACE","features":[72]},{"name":"UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH","features":[72]},{"name":"UDAT_PARSE_PARTIAL_LITERAL_MATCH","features":[72]},{"name":"UDAT_PATTERN","features":[72]},{"name":"UDAT_QUARTER","features":[72]},{"name":"UDAT_QUARTERS","features":[72]},{"name":"UDAT_QUARTER_FIELD","features":[72]},{"name":"UDAT_RELATIVE","features":[72]},{"name":"UDAT_RELATIVE_DAYS","features":[72]},{"name":"UDAT_RELATIVE_HOURS","features":[72]},{"name":"UDAT_RELATIVE_MINUTES","features":[72]},{"name":"UDAT_RELATIVE_MONTHS","features":[72]},{"name":"UDAT_RELATIVE_SECONDS","features":[72]},{"name":"UDAT_RELATIVE_UNIT_COUNT","features":[72]},{"name":"UDAT_RELATIVE_WEEKS","features":[72]},{"name":"UDAT_RELATIVE_YEARS","features":[72]},{"name":"UDAT_REL_LITERAL_FIELD","features":[72]},{"name":"UDAT_REL_NUMERIC_FIELD","features":[72]},{"name":"UDAT_REL_UNIT_DAY","features":[72]},{"name":"UDAT_REL_UNIT_FRIDAY","features":[72]},{"name":"UDAT_REL_UNIT_HOUR","features":[72]},{"name":"UDAT_REL_UNIT_MINUTE","features":[72]},{"name":"UDAT_REL_UNIT_MONDAY","features":[72]},{"name":"UDAT_REL_UNIT_MONTH","features":[72]},{"name":"UDAT_REL_UNIT_QUARTER","features":[72]},{"name":"UDAT_REL_UNIT_SATURDAY","features":[72]},{"name":"UDAT_REL_UNIT_SECOND","features":[72]},{"name":"UDAT_REL_UNIT_SUNDAY","features":[72]},{"name":"UDAT_REL_UNIT_THURSDAY","features":[72]},{"name":"UDAT_REL_UNIT_TUESDAY","features":[72]},{"name":"UDAT_REL_UNIT_WEDNESDAY","features":[72]},{"name":"UDAT_REL_UNIT_WEEK","features":[72]},{"name":"UDAT_REL_UNIT_YEAR","features":[72]},{"name":"UDAT_SECOND","features":[72]},{"name":"UDAT_SECOND_FIELD","features":[72]},{"name":"UDAT_SHORT","features":[72]},{"name":"UDAT_SHORTER_WEEKDAYS","features":[72]},{"name":"UDAT_SHORT_MONTHS","features":[72]},{"name":"UDAT_SHORT_QUARTERS","features":[72]},{"name":"UDAT_SHORT_RELATIVE","features":[72]},{"name":"UDAT_SHORT_WEEKDAYS","features":[72]},{"name":"UDAT_SPECIFIC_TZ","features":[72]},{"name":"UDAT_STANDALONE_DAY_FIELD","features":[72]},{"name":"UDAT_STANDALONE_MONTHS","features":[72]},{"name":"UDAT_STANDALONE_MONTH_FIELD","features":[72]},{"name":"UDAT_STANDALONE_NARROW_MONTHS","features":[72]},{"name":"UDAT_STANDALONE_NARROW_WEEKDAYS","features":[72]},{"name":"UDAT_STANDALONE_QUARTERS","features":[72]},{"name":"UDAT_STANDALONE_QUARTER_FIELD","features":[72]},{"name":"UDAT_STANDALONE_SHORTER_WEEKDAYS","features":[72]},{"name":"UDAT_STANDALONE_SHORT_MONTHS","features":[72]},{"name":"UDAT_STANDALONE_SHORT_QUARTERS","features":[72]},{"name":"UDAT_STANDALONE_SHORT_WEEKDAYS","features":[72]},{"name":"UDAT_STANDALONE_WEEKDAYS","features":[72]},{"name":"UDAT_STYLE_LONG","features":[72]},{"name":"UDAT_STYLE_NARROW","features":[72]},{"name":"UDAT_STYLE_SHORT","features":[72]},{"name":"UDAT_TIMEZONE_FIELD","features":[72]},{"name":"UDAT_TIMEZONE_GENERIC_FIELD","features":[72]},{"name":"UDAT_TIMEZONE_ISO_FIELD","features":[72]},{"name":"UDAT_TIMEZONE_ISO_LOCAL_FIELD","features":[72]},{"name":"UDAT_TIMEZONE_LOCALIZED_GMT_OFFSET_FIELD","features":[72]},{"name":"UDAT_TIMEZONE_RFC_FIELD","features":[72]},{"name":"UDAT_TIMEZONE_SPECIAL_FIELD","features":[72]},{"name":"UDAT_WEEKDAY","features":[72]},{"name":"UDAT_WEEKDAYS","features":[72]},{"name":"UDAT_WEEK_OF_MONTH_FIELD","features":[72]},{"name":"UDAT_WEEK_OF_YEAR_FIELD","features":[72]},{"name":"UDAT_YEAR","features":[72]},{"name":"UDAT_YEAR_ABBR_MONTH","features":[72]},{"name":"UDAT_YEAR_ABBR_MONTH_DAY","features":[72]},{"name":"UDAT_YEAR_ABBR_MONTH_WEEKDAY_DAY","features":[72]},{"name":"UDAT_YEAR_ABBR_QUARTER","features":[72]},{"name":"UDAT_YEAR_FIELD","features":[72]},{"name":"UDAT_YEAR_MONTH","features":[72]},{"name":"UDAT_YEAR_MONTH_DAY","features":[72]},{"name":"UDAT_YEAR_MONTH_WEEKDAY_DAY","features":[72]},{"name":"UDAT_YEAR_NAME_FIELD","features":[72]},{"name":"UDAT_YEAR_NUM_MONTH","features":[72]},{"name":"UDAT_YEAR_NUM_MONTH_DAY","features":[72]},{"name":"UDAT_YEAR_NUM_MONTH_WEEKDAY_DAY","features":[72]},{"name":"UDAT_YEAR_QUARTER","features":[72]},{"name":"UDAT_YEAR_WOY_FIELD","features":[72]},{"name":"UDAT_ZODIAC_NAMES_ABBREVIATED","features":[72]},{"name":"UDAT_ZODIAC_NAMES_NARROW","features":[72]},{"name":"UDAT_ZODIAC_NAMES_WIDE","features":[72]},{"name":"UDISPCTX_CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE","features":[72]},{"name":"UDISPCTX_CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE","features":[72]},{"name":"UDISPCTX_CAPITALIZATION_FOR_STANDALONE","features":[72]},{"name":"UDISPCTX_CAPITALIZATION_FOR_UI_LIST_OR_MENU","features":[72]},{"name":"UDISPCTX_CAPITALIZATION_NONE","features":[72]},{"name":"UDISPCTX_DIALECT_NAMES","features":[72]},{"name":"UDISPCTX_LENGTH_FULL","features":[72]},{"name":"UDISPCTX_LENGTH_SHORT","features":[72]},{"name":"UDISPCTX_NO_SUBSTITUTE","features":[72]},{"name":"UDISPCTX_STANDARD_NAMES","features":[72]},{"name":"UDISPCTX_SUBSTITUTE","features":[72]},{"name":"UDISPCTX_TYPE_CAPITALIZATION","features":[72]},{"name":"UDISPCTX_TYPE_DIALECT_HANDLING","features":[72]},{"name":"UDISPCTX_TYPE_DISPLAY_LENGTH","features":[72]},{"name":"UDISPCTX_TYPE_SUBSTITUTE_HANDLING","features":[72]},{"name":"UDTS_DB2_TIME","features":[72]},{"name":"UDTS_DOTNET_DATE_TIME","features":[72]},{"name":"UDTS_EXCEL_TIME","features":[72]},{"name":"UDTS_ICU4C_TIME","features":[72]},{"name":"UDTS_JAVA_TIME","features":[72]},{"name":"UDTS_MAC_OLD_TIME","features":[72]},{"name":"UDTS_MAC_TIME","features":[72]},{"name":"UDTS_UNIX_MICROSECONDS_TIME","features":[72]},{"name":"UDTS_UNIX_TIME","features":[72]},{"name":"UDTS_WINDOWS_FILE_TIME","features":[72]},{"name":"UDateAbsoluteUnit","features":[72]},{"name":"UDateDirection","features":[72]},{"name":"UDateFormatBooleanAttribute","features":[72]},{"name":"UDateFormatField","features":[72]},{"name":"UDateFormatStyle","features":[72]},{"name":"UDateFormatSymbolType","features":[72]},{"name":"UDateFormatSymbols","features":[72]},{"name":"UDateIntervalFormat","features":[72]},{"name":"UDateRelativeDateTimeFormatterStyle","features":[72]},{"name":"UDateRelativeUnit","features":[72]},{"name":"UDateTimePGDisplayWidth","features":[72]},{"name":"UDateTimePatternConflict","features":[72]},{"name":"UDateTimePatternField","features":[72]},{"name":"UDateTimePatternMatchOptions","features":[72]},{"name":"UDateTimeScale","features":[72]},{"name":"UDecompositionType","features":[72]},{"name":"UDialectHandling","features":[72]},{"name":"UDisplayContext","features":[72]},{"name":"UDisplayContextType","features":[72]},{"name":"UEastAsianWidth","features":[72]},{"name":"UEnumCharNamesFn","features":[72]},{"name":"UEnumeration","features":[72]},{"name":"UErrorCode","features":[72]},{"name":"UFIELD_CATEGORY_DATE","features":[72]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL","features":[72]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL_SPAN","features":[72]},{"name":"UFIELD_CATEGORY_LIST","features":[72]},{"name":"UFIELD_CATEGORY_LIST_SPAN","features":[72]},{"name":"UFIELD_CATEGORY_NUMBER","features":[72]},{"name":"UFIELD_CATEGORY_RELATIVE_DATETIME","features":[72]},{"name":"UFIELD_CATEGORY_UNDEFINED","features":[72]},{"name":"UFMT_ARRAY","features":[72]},{"name":"UFMT_DATE","features":[72]},{"name":"UFMT_DOUBLE","features":[72]},{"name":"UFMT_INT64","features":[72]},{"name":"UFMT_LONG","features":[72]},{"name":"UFMT_OBJECT","features":[72]},{"name":"UFMT_STRING","features":[72]},{"name":"UFieldCategory","features":[72]},{"name":"UFieldPosition","features":[72]},{"name":"UFieldPositionIterator","features":[72]},{"name":"UFormattableType","features":[72]},{"name":"UFormattedDateInterval","features":[72]},{"name":"UFormattedList","features":[72]},{"name":"UFormattedNumber","features":[72]},{"name":"UFormattedNumberRange","features":[72]},{"name":"UFormattedRelativeDateTime","features":[72]},{"name":"UFormattedValue","features":[72]},{"name":"UGENDER_FEMALE","features":[72]},{"name":"UGENDER_MALE","features":[72]},{"name":"UGENDER_OTHER","features":[72]},{"name":"UGender","features":[72]},{"name":"UGenderInfo","features":[72]},{"name":"UGraphemeClusterBreak","features":[72]},{"name":"UHangulSyllableType","features":[72]},{"name":"UHashtable","features":[72]},{"name":"UIDNA","features":[72]},{"name":"UIDNAInfo","features":[72]},{"name":"UIDNA_CHECK_BIDI","features":[72]},{"name":"UIDNA_CHECK_CONTEXTJ","features":[72]},{"name":"UIDNA_CHECK_CONTEXTO","features":[72]},{"name":"UIDNA_DEFAULT","features":[72]},{"name":"UIDNA_ERROR_BIDI","features":[72]},{"name":"UIDNA_ERROR_CONTEXTJ","features":[72]},{"name":"UIDNA_ERROR_CONTEXTO_DIGITS","features":[72]},{"name":"UIDNA_ERROR_CONTEXTO_PUNCTUATION","features":[72]},{"name":"UIDNA_ERROR_DISALLOWED","features":[72]},{"name":"UIDNA_ERROR_DOMAIN_NAME_TOO_LONG","features":[72]},{"name":"UIDNA_ERROR_EMPTY_LABEL","features":[72]},{"name":"UIDNA_ERROR_HYPHEN_3_4","features":[72]},{"name":"UIDNA_ERROR_INVALID_ACE_LABEL","features":[72]},{"name":"UIDNA_ERROR_LABEL_HAS_DOT","features":[72]},{"name":"UIDNA_ERROR_LABEL_TOO_LONG","features":[72]},{"name":"UIDNA_ERROR_LEADING_COMBINING_MARK","features":[72]},{"name":"UIDNA_ERROR_LEADING_HYPHEN","features":[72]},{"name":"UIDNA_ERROR_PUNYCODE","features":[72]},{"name":"UIDNA_ERROR_TRAILING_HYPHEN","features":[72]},{"name":"UIDNA_NONTRANSITIONAL_TO_ASCII","features":[72]},{"name":"UIDNA_NONTRANSITIONAL_TO_UNICODE","features":[72]},{"name":"UIDNA_USE_STD3_RULES","features":[72]},{"name":"UILANGUAGE_ENUMPROCA","features":[3,72]},{"name":"UILANGUAGE_ENUMPROCW","features":[3,72]},{"name":"UITER_CURRENT","features":[72]},{"name":"UITER_LENGTH","features":[72]},{"name":"UITER_LIMIT","features":[72]},{"name":"UITER_START","features":[72]},{"name":"UITER_UNKNOWN_INDEX","features":[72]},{"name":"UITER_ZERO","features":[72]},{"name":"UIndicPositionalCategory","features":[72]},{"name":"UIndicSyllabicCategory","features":[72]},{"name":"UJoiningGroup","features":[72]},{"name":"UJoiningType","features":[72]},{"name":"ULDN_DIALECT_NAMES","features":[72]},{"name":"ULDN_STANDARD_NAMES","features":[72]},{"name":"ULISTFMT_ELEMENT_FIELD","features":[72]},{"name":"ULISTFMT_LITERAL_FIELD","features":[72]},{"name":"ULISTFMT_TYPE_AND","features":[72]},{"name":"ULISTFMT_TYPE_OR","features":[72]},{"name":"ULISTFMT_TYPE_UNITS","features":[72]},{"name":"ULISTFMT_WIDTH_NARROW","features":[72]},{"name":"ULISTFMT_WIDTH_SHORT","features":[72]},{"name":"ULISTFMT_WIDTH_WIDE","features":[72]},{"name":"ULOCDATA_ALT_QUOTATION_END","features":[72]},{"name":"ULOCDATA_ALT_QUOTATION_START","features":[72]},{"name":"ULOCDATA_ES_AUXILIARY","features":[72]},{"name":"ULOCDATA_ES_INDEX","features":[72]},{"name":"ULOCDATA_ES_PUNCTUATION","features":[72]},{"name":"ULOCDATA_ES_STANDARD","features":[72]},{"name":"ULOCDATA_QUOTATION_END","features":[72]},{"name":"ULOCDATA_QUOTATION_START","features":[72]},{"name":"ULOC_ACCEPT_FAILED","features":[72]},{"name":"ULOC_ACCEPT_FALLBACK","features":[72]},{"name":"ULOC_ACCEPT_VALID","features":[72]},{"name":"ULOC_ACTUAL_LOCALE","features":[72]},{"name":"ULOC_AVAILABLE_DEFAULT","features":[72]},{"name":"ULOC_AVAILABLE_ONLY_LEGACY_ALIASES","features":[72]},{"name":"ULOC_AVAILABLE_WITH_LEGACY_ALIASES","features":[72]},{"name":"ULOC_CANADA","features":[72]},{"name":"ULOC_CANADA_FRENCH","features":[72]},{"name":"ULOC_CHINA","features":[72]},{"name":"ULOC_CHINESE","features":[72]},{"name":"ULOC_COUNTRY_CAPACITY","features":[72]},{"name":"ULOC_ENGLISH","features":[72]},{"name":"ULOC_FRANCE","features":[72]},{"name":"ULOC_FRENCH","features":[72]},{"name":"ULOC_FULLNAME_CAPACITY","features":[72]},{"name":"ULOC_GERMAN","features":[72]},{"name":"ULOC_GERMANY","features":[72]},{"name":"ULOC_ITALIAN","features":[72]},{"name":"ULOC_ITALY","features":[72]},{"name":"ULOC_JAPAN","features":[72]},{"name":"ULOC_JAPANESE","features":[72]},{"name":"ULOC_KEYWORDS_CAPACITY","features":[72]},{"name":"ULOC_KEYWORD_AND_VALUES_CAPACITY","features":[72]},{"name":"ULOC_KEYWORD_ASSIGN_UNICODE","features":[72]},{"name":"ULOC_KEYWORD_ITEM_SEPARATOR_UNICODE","features":[72]},{"name":"ULOC_KEYWORD_SEPARATOR_UNICODE","features":[72]},{"name":"ULOC_KOREA","features":[72]},{"name":"ULOC_KOREAN","features":[72]},{"name":"ULOC_LANG_CAPACITY","features":[72]},{"name":"ULOC_LAYOUT_BTT","features":[72]},{"name":"ULOC_LAYOUT_LTR","features":[72]},{"name":"ULOC_LAYOUT_RTL","features":[72]},{"name":"ULOC_LAYOUT_TTB","features":[72]},{"name":"ULOC_LAYOUT_UNKNOWN","features":[72]},{"name":"ULOC_PRC","features":[72]},{"name":"ULOC_SCRIPT_CAPACITY","features":[72]},{"name":"ULOC_SIMPLIFIED_CHINESE","features":[72]},{"name":"ULOC_TAIWAN","features":[72]},{"name":"ULOC_TRADITIONAL_CHINESE","features":[72]},{"name":"ULOC_UK","features":[72]},{"name":"ULOC_US","features":[72]},{"name":"ULOC_VALID_LOCALE","features":[72]},{"name":"ULayoutType","features":[72]},{"name":"ULineBreak","features":[72]},{"name":"ULineBreakTag","features":[72]},{"name":"UListFormatter","features":[72]},{"name":"UListFormatterField","features":[72]},{"name":"UListFormatterType","features":[72]},{"name":"UListFormatterWidth","features":[72]},{"name":"ULocAvailableType","features":[72]},{"name":"ULocDataLocaleType","features":[72]},{"name":"ULocaleData","features":[72]},{"name":"ULocaleDataDelimiterType","features":[72]},{"name":"ULocaleDataExemplarSetType","features":[72]},{"name":"ULocaleDisplayNames","features":[72]},{"name":"UMEASFMT_WIDTH_COUNT","features":[72]},{"name":"UMEASFMT_WIDTH_NARROW","features":[72]},{"name":"UMEASFMT_WIDTH_NUMERIC","features":[72]},{"name":"UMEASFMT_WIDTH_SHORT","features":[72]},{"name":"UMEASFMT_WIDTH_WIDE","features":[72]},{"name":"UMSGPAT_APOS_DOUBLE_OPTIONAL","features":[72]},{"name":"UMSGPAT_APOS_DOUBLE_REQUIRED","features":[72]},{"name":"UMSGPAT_ARG_NAME_NOT_NUMBER","features":[72]},{"name":"UMSGPAT_ARG_NAME_NOT_VALID","features":[72]},{"name":"UMSGPAT_ARG_TYPE_CHOICE","features":[72]},{"name":"UMSGPAT_ARG_TYPE_NONE","features":[72]},{"name":"UMSGPAT_ARG_TYPE_PLURAL","features":[72]},{"name":"UMSGPAT_ARG_TYPE_SELECT","features":[72]},{"name":"UMSGPAT_ARG_TYPE_SELECTORDINAL","features":[72]},{"name":"UMSGPAT_ARG_TYPE_SIMPLE","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_DOUBLE","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_INT","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_LIMIT","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_NAME","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_NUMBER","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_SELECTOR","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_START","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_STYLE","features":[72]},{"name":"UMSGPAT_PART_TYPE_ARG_TYPE","features":[72]},{"name":"UMSGPAT_PART_TYPE_INSERT_CHAR","features":[72]},{"name":"UMSGPAT_PART_TYPE_MSG_LIMIT","features":[72]},{"name":"UMSGPAT_PART_TYPE_MSG_START","features":[72]},{"name":"UMSGPAT_PART_TYPE_REPLACE_NUMBER","features":[72]},{"name":"UMSGPAT_PART_TYPE_SKIP_SYNTAX","features":[72]},{"name":"UMS_SI","features":[72]},{"name":"UMS_UK","features":[72]},{"name":"UMS_US","features":[72]},{"name":"UMeasureFormatWidth","features":[72]},{"name":"UMeasurementSystem","features":[72]},{"name":"UMemAllocFn","features":[72]},{"name":"UMemFreeFn","features":[72]},{"name":"UMemReallocFn","features":[72]},{"name":"UMessagePatternApostropheMode","features":[72]},{"name":"UMessagePatternArgType","features":[72]},{"name":"UMessagePatternPartType","features":[72]},{"name":"UMutableCPTrie","features":[72]},{"name":"UNESCAPE_CHAR_AT","features":[72]},{"name":"UNICODERANGE","features":[72]},{"name":"UNISCRIBE_OPENTYPE","features":[72]},{"name":"UNORM2_COMPOSE","features":[72]},{"name":"UNORM2_COMPOSE_CONTIGUOUS","features":[72]},{"name":"UNORM2_DECOMPOSE","features":[72]},{"name":"UNORM2_FCD","features":[72]},{"name":"UNORM_DEFAULT","features":[72]},{"name":"UNORM_FCD","features":[72]},{"name":"UNORM_INPUT_IS_FCD","features":[72]},{"name":"UNORM_MAYBE","features":[72]},{"name":"UNORM_MODE_COUNT","features":[72]},{"name":"UNORM_NFC","features":[72]},{"name":"UNORM_NFD","features":[72]},{"name":"UNORM_NFKC","features":[72]},{"name":"UNORM_NFKD","features":[72]},{"name":"UNORM_NO","features":[72]},{"name":"UNORM_NONE","features":[72]},{"name":"UNORM_YES","features":[72]},{"name":"UNUM_CASH_CURRENCY","features":[72]},{"name":"UNUM_COMPACT_FIELD","features":[72]},{"name":"UNUM_CURRENCY","features":[72]},{"name":"UNUM_CURRENCY_ACCOUNTING","features":[72]},{"name":"UNUM_CURRENCY_CODE","features":[72]},{"name":"UNUM_CURRENCY_FIELD","features":[72]},{"name":"UNUM_CURRENCY_INSERT","features":[72]},{"name":"UNUM_CURRENCY_ISO","features":[72]},{"name":"UNUM_CURRENCY_MATCH","features":[72]},{"name":"UNUM_CURRENCY_PLURAL","features":[72]},{"name":"UNUM_CURRENCY_SPACING_COUNT","features":[72]},{"name":"UNUM_CURRENCY_STANDARD","features":[72]},{"name":"UNUM_CURRENCY_SURROUNDING_MATCH","features":[72]},{"name":"UNUM_CURRENCY_SYMBOL","features":[72]},{"name":"UNUM_CURRENCY_USAGE","features":[72]},{"name":"UNUM_DECIMAL","features":[72]},{"name":"UNUM_DECIMAL_ALWAYS_SHOWN","features":[72]},{"name":"UNUM_DECIMAL_COMPACT_LONG","features":[72]},{"name":"UNUM_DECIMAL_COMPACT_SHORT","features":[72]},{"name":"UNUM_DECIMAL_SEPARATOR_ALWAYS","features":[72]},{"name":"UNUM_DECIMAL_SEPARATOR_AUTO","features":[72]},{"name":"UNUM_DECIMAL_SEPARATOR_COUNT","features":[72]},{"name":"UNUM_DECIMAL_SEPARATOR_FIELD","features":[72]},{"name":"UNUM_DECIMAL_SEPARATOR_SYMBOL","features":[72]},{"name":"UNUM_DEFAULT","features":[72]},{"name":"UNUM_DEFAULT_RULESET","features":[72]},{"name":"UNUM_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_DURATION","features":[72]},{"name":"UNUM_EIGHT_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_EXPONENTIAL_SYMBOL","features":[72]},{"name":"UNUM_EXPONENT_FIELD","features":[72]},{"name":"UNUM_EXPONENT_MULTIPLICATION_SYMBOL","features":[72]},{"name":"UNUM_EXPONENT_SIGN_FIELD","features":[72]},{"name":"UNUM_EXPONENT_SYMBOL_FIELD","features":[72]},{"name":"UNUM_FIVE_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_FORMAT_ATTRIBUTE_VALUE_HIDDEN","features":[72]},{"name":"UNUM_FORMAT_FAIL_IF_MORE_THAN_MAX_DIGITS","features":[72]},{"name":"UNUM_FORMAT_WIDTH","features":[72]},{"name":"UNUM_FOUR_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_FRACTION_DIGITS","features":[72]},{"name":"UNUM_FRACTION_FIELD","features":[72]},{"name":"UNUM_GROUPING_AUTO","features":[72]},{"name":"UNUM_GROUPING_MIN2","features":[72]},{"name":"UNUM_GROUPING_OFF","features":[72]},{"name":"UNUM_GROUPING_ON_ALIGNED","features":[72]},{"name":"UNUM_GROUPING_SEPARATOR_FIELD","features":[72]},{"name":"UNUM_GROUPING_SEPARATOR_SYMBOL","features":[72]},{"name":"UNUM_GROUPING_SIZE","features":[72]},{"name":"UNUM_GROUPING_THOUSANDS","features":[72]},{"name":"UNUM_GROUPING_USED","features":[72]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY","features":[72]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY_OR_SINGLE_VALUE","features":[72]},{"name":"UNUM_IDENTITY_FALLBACK_RANGE","features":[72]},{"name":"UNUM_IDENTITY_FALLBACK_SINGLE_VALUE","features":[72]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_AFTER_ROUNDING","features":[72]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_BEFORE_ROUNDING","features":[72]},{"name":"UNUM_IDENTITY_RESULT_NOT_EQUAL","features":[72]},{"name":"UNUM_IGNORE","features":[72]},{"name":"UNUM_INFINITY_SYMBOL","features":[72]},{"name":"UNUM_INTEGER_DIGITS","features":[72]},{"name":"UNUM_INTEGER_FIELD","features":[72]},{"name":"UNUM_INTL_CURRENCY_SYMBOL","features":[72]},{"name":"UNUM_LENIENT_PARSE","features":[72]},{"name":"UNUM_LONG","features":[72]},{"name":"UNUM_MAX_FRACTION_DIGITS","features":[72]},{"name":"UNUM_MAX_INTEGER_DIGITS","features":[72]},{"name":"UNUM_MAX_SIGNIFICANT_DIGITS","features":[72]},{"name":"UNUM_MEASURE_UNIT_FIELD","features":[72]},{"name":"UNUM_MINIMUM_GROUPING_DIGITS","features":[72]},{"name":"UNUM_MINUS_SIGN_SYMBOL","features":[72]},{"name":"UNUM_MIN_FRACTION_DIGITS","features":[72]},{"name":"UNUM_MIN_INTEGER_DIGITS","features":[72]},{"name":"UNUM_MIN_SIGNIFICANT_DIGITS","features":[72]},{"name":"UNUM_MONETARY_GROUPING_SEPARATOR_SYMBOL","features":[72]},{"name":"UNUM_MONETARY_SEPARATOR_SYMBOL","features":[72]},{"name":"UNUM_MULTIPLIER","features":[72]},{"name":"UNUM_NAN_SYMBOL","features":[72]},{"name":"UNUM_NEGATIVE_PREFIX","features":[72]},{"name":"UNUM_NEGATIVE_SUFFIX","features":[72]},{"name":"UNUM_NINE_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_NUMBERING_SYSTEM","features":[72]},{"name":"UNUM_ONE_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_ORDINAL","features":[72]},{"name":"UNUM_PADDING_CHARACTER","features":[72]},{"name":"UNUM_PADDING_POSITION","features":[72]},{"name":"UNUM_PAD_AFTER_PREFIX","features":[72]},{"name":"UNUM_PAD_AFTER_SUFFIX","features":[72]},{"name":"UNUM_PAD_BEFORE_PREFIX","features":[72]},{"name":"UNUM_PAD_BEFORE_SUFFIX","features":[72]},{"name":"UNUM_PAD_ESCAPE_SYMBOL","features":[72]},{"name":"UNUM_PARSE_ALL_INPUT","features":[72]},{"name":"UNUM_PARSE_CASE_SENSITIVE","features":[72]},{"name":"UNUM_PARSE_DECIMAL_MARK_REQUIRED","features":[72]},{"name":"UNUM_PARSE_INT_ONLY","features":[72]},{"name":"UNUM_PARSE_NO_EXPONENT","features":[72]},{"name":"UNUM_PATTERN_DECIMAL","features":[72]},{"name":"UNUM_PATTERN_RULEBASED","features":[72]},{"name":"UNUM_PATTERN_SEPARATOR_SYMBOL","features":[72]},{"name":"UNUM_PERCENT","features":[72]},{"name":"UNUM_PERCENT_FIELD","features":[72]},{"name":"UNUM_PERCENT_SYMBOL","features":[72]},{"name":"UNUM_PERMILL_FIELD","features":[72]},{"name":"UNUM_PERMILL_SYMBOL","features":[72]},{"name":"UNUM_PLUS_SIGN_SYMBOL","features":[72]},{"name":"UNUM_POSITIVE_PREFIX","features":[72]},{"name":"UNUM_POSITIVE_SUFFIX","features":[72]},{"name":"UNUM_PUBLIC_RULESETS","features":[72]},{"name":"UNUM_RANGE_COLLAPSE_ALL","features":[72]},{"name":"UNUM_RANGE_COLLAPSE_AUTO","features":[72]},{"name":"UNUM_RANGE_COLLAPSE_NONE","features":[72]},{"name":"UNUM_RANGE_COLLAPSE_UNIT","features":[72]},{"name":"UNUM_ROUNDING_INCREMENT","features":[72]},{"name":"UNUM_ROUNDING_MODE","features":[72]},{"name":"UNUM_ROUND_CEILING","features":[72]},{"name":"UNUM_ROUND_DOWN","features":[72]},{"name":"UNUM_ROUND_FLOOR","features":[72]},{"name":"UNUM_ROUND_HALFDOWN","features":[72]},{"name":"UNUM_ROUND_HALFEVEN","features":[72]},{"name":"UNUM_ROUND_HALFUP","features":[72]},{"name":"UNUM_ROUND_UNNECESSARY","features":[72]},{"name":"UNUM_ROUND_UP","features":[72]},{"name":"UNUM_SCALE","features":[72]},{"name":"UNUM_SCIENTIFIC","features":[72]},{"name":"UNUM_SECONDARY_GROUPING_SIZE","features":[72]},{"name":"UNUM_SEVEN_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_SHORT","features":[72]},{"name":"UNUM_SIGNIFICANT_DIGITS_USED","features":[72]},{"name":"UNUM_SIGNIFICANT_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_SIGN_ACCOUNTING","features":[72]},{"name":"UNUM_SIGN_ACCOUNTING_ALWAYS","features":[72]},{"name":"UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO","features":[72]},{"name":"UNUM_SIGN_ALWAYS","features":[72]},{"name":"UNUM_SIGN_ALWAYS_SHOWN","features":[72]},{"name":"UNUM_SIGN_AUTO","features":[72]},{"name":"UNUM_SIGN_COUNT","features":[72]},{"name":"UNUM_SIGN_EXCEPT_ZERO","features":[72]},{"name":"UNUM_SIGN_FIELD","features":[72]},{"name":"UNUM_SIGN_NEVER","features":[72]},{"name":"UNUM_SIX_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_SPELLOUT","features":[72]},{"name":"UNUM_THREE_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_TWO_DIGIT_SYMBOL","features":[72]},{"name":"UNUM_UNIT_WIDTH_COUNT","features":[72]},{"name":"UNUM_UNIT_WIDTH_FULL_NAME","features":[72]},{"name":"UNUM_UNIT_WIDTH_HIDDEN","features":[72]},{"name":"UNUM_UNIT_WIDTH_ISO_CODE","features":[72]},{"name":"UNUM_UNIT_WIDTH_NARROW","features":[72]},{"name":"UNUM_UNIT_WIDTH_SHORT","features":[72]},{"name":"UNUM_ZERO_DIGIT_SYMBOL","features":[72]},{"name":"UNormalization2Mode","features":[72]},{"name":"UNormalizationCheckResult","features":[72]},{"name":"UNormalizationMode","features":[72]},{"name":"UNormalizer2","features":[72]},{"name":"UNumberCompactStyle","features":[72]},{"name":"UNumberDecimalSeparatorDisplay","features":[72]},{"name":"UNumberFormatAttribute","features":[72]},{"name":"UNumberFormatAttributeValue","features":[72]},{"name":"UNumberFormatFields","features":[72]},{"name":"UNumberFormatPadPosition","features":[72]},{"name":"UNumberFormatRoundingMode","features":[72]},{"name":"UNumberFormatStyle","features":[72]},{"name":"UNumberFormatSymbol","features":[72]},{"name":"UNumberFormatTextAttribute","features":[72]},{"name":"UNumberFormatter","features":[72]},{"name":"UNumberGroupingStrategy","features":[72]},{"name":"UNumberRangeCollapse","features":[72]},{"name":"UNumberRangeIdentityFallback","features":[72]},{"name":"UNumberRangeIdentityResult","features":[72]},{"name":"UNumberSignDisplay","features":[72]},{"name":"UNumberUnitWidth","features":[72]},{"name":"UNumberingSystem","features":[72]},{"name":"UNumericType","features":[72]},{"name":"UPLURAL_TYPE_CARDINAL","features":[72]},{"name":"UPLURAL_TYPE_ORDINAL","features":[72]},{"name":"UParseError","features":[72]},{"name":"UPluralRules","features":[72]},{"name":"UPluralType","features":[72]},{"name":"UProperty","features":[72]},{"name":"UPropertyNameChoice","features":[72]},{"name":"UREGEX_CASE_INSENSITIVE","features":[72]},{"name":"UREGEX_COMMENTS","features":[72]},{"name":"UREGEX_DOTALL","features":[72]},{"name":"UREGEX_ERROR_ON_UNKNOWN_ESCAPES","features":[72]},{"name":"UREGEX_LITERAL","features":[72]},{"name":"UREGEX_MULTILINE","features":[72]},{"name":"UREGEX_UNIX_LINES","features":[72]},{"name":"UREGEX_UWORD","features":[72]},{"name":"URES_ALIAS","features":[72]},{"name":"URES_ARRAY","features":[72]},{"name":"URES_BINARY","features":[72]},{"name":"URES_INT","features":[72]},{"name":"URES_INT_VECTOR","features":[72]},{"name":"URES_NONE","features":[72]},{"name":"URES_STRING","features":[72]},{"name":"URES_TABLE","features":[72]},{"name":"URGN_CONTINENT","features":[72]},{"name":"URGN_DEPRECATED","features":[72]},{"name":"URGN_GROUPING","features":[72]},{"name":"URGN_SUBCONTINENT","features":[72]},{"name":"URGN_TERRITORY","features":[72]},{"name":"URGN_UNKNOWN","features":[72]},{"name":"URGN_WORLD","features":[72]},{"name":"URegexFindProgressCallback","features":[72]},{"name":"URegexMatchCallback","features":[72]},{"name":"URegexpFlag","features":[72]},{"name":"URegion","features":[72]},{"name":"URegionType","features":[72]},{"name":"URegularExpression","features":[72]},{"name":"URelativeDateTimeFormatter","features":[72]},{"name":"URelativeDateTimeFormatterField","features":[72]},{"name":"URelativeDateTimeUnit","features":[72]},{"name":"UReplaceableCallbacks","features":[72]},{"name":"UResType","features":[72]},{"name":"UResourceBundle","features":[72]},{"name":"URestrictionLevel","features":[72]},{"name":"USCRIPT_ADLAM","features":[72]},{"name":"USCRIPT_AFAKA","features":[72]},{"name":"USCRIPT_AHOM","features":[72]},{"name":"USCRIPT_ANATOLIAN_HIEROGLYPHS","features":[72]},{"name":"USCRIPT_ARABIC","features":[72]},{"name":"USCRIPT_ARMENIAN","features":[72]},{"name":"USCRIPT_AVESTAN","features":[72]},{"name":"USCRIPT_BALINESE","features":[72]},{"name":"USCRIPT_BAMUM","features":[72]},{"name":"USCRIPT_BASSA_VAH","features":[72]},{"name":"USCRIPT_BATAK","features":[72]},{"name":"USCRIPT_BENGALI","features":[72]},{"name":"USCRIPT_BHAIKSUKI","features":[72]},{"name":"USCRIPT_BLISSYMBOLS","features":[72]},{"name":"USCRIPT_BOOK_PAHLAVI","features":[72]},{"name":"USCRIPT_BOPOMOFO","features":[72]},{"name":"USCRIPT_BRAHMI","features":[72]},{"name":"USCRIPT_BRAILLE","features":[72]},{"name":"USCRIPT_BUGINESE","features":[72]},{"name":"USCRIPT_BUHID","features":[72]},{"name":"USCRIPT_CANADIAN_ABORIGINAL","features":[72]},{"name":"USCRIPT_CARIAN","features":[72]},{"name":"USCRIPT_CAUCASIAN_ALBANIAN","features":[72]},{"name":"USCRIPT_CHAKMA","features":[72]},{"name":"USCRIPT_CHAM","features":[72]},{"name":"USCRIPT_CHEROKEE","features":[72]},{"name":"USCRIPT_CHORASMIAN","features":[72]},{"name":"USCRIPT_CIRTH","features":[72]},{"name":"USCRIPT_COMMON","features":[72]},{"name":"USCRIPT_COPTIC","features":[72]},{"name":"USCRIPT_CUNEIFORM","features":[72]},{"name":"USCRIPT_CYPRIOT","features":[72]},{"name":"USCRIPT_CYRILLIC","features":[72]},{"name":"USCRIPT_DEMOTIC_EGYPTIAN","features":[72]},{"name":"USCRIPT_DESERET","features":[72]},{"name":"USCRIPT_DEVANAGARI","features":[72]},{"name":"USCRIPT_DIVES_AKURU","features":[72]},{"name":"USCRIPT_DOGRA","features":[72]},{"name":"USCRIPT_DUPLOYAN","features":[72]},{"name":"USCRIPT_EASTERN_SYRIAC","features":[72]},{"name":"USCRIPT_EGYPTIAN_HIEROGLYPHS","features":[72]},{"name":"USCRIPT_ELBASAN","features":[72]},{"name":"USCRIPT_ELYMAIC","features":[72]},{"name":"USCRIPT_ESTRANGELO_SYRIAC","features":[72]},{"name":"USCRIPT_ETHIOPIC","features":[72]},{"name":"USCRIPT_GEORGIAN","features":[72]},{"name":"USCRIPT_GLAGOLITIC","features":[72]},{"name":"USCRIPT_GOTHIC","features":[72]},{"name":"USCRIPT_GRANTHA","features":[72]},{"name":"USCRIPT_GREEK","features":[72]},{"name":"USCRIPT_GUJARATI","features":[72]},{"name":"USCRIPT_GUNJALA_GONDI","features":[72]},{"name":"USCRIPT_GURMUKHI","features":[72]},{"name":"USCRIPT_HAN","features":[72]},{"name":"USCRIPT_HANGUL","features":[72]},{"name":"USCRIPT_HANIFI_ROHINGYA","features":[72]},{"name":"USCRIPT_HANUNOO","features":[72]},{"name":"USCRIPT_HAN_WITH_BOPOMOFO","features":[72]},{"name":"USCRIPT_HARAPPAN_INDUS","features":[72]},{"name":"USCRIPT_HATRAN","features":[72]},{"name":"USCRIPT_HEBREW","features":[72]},{"name":"USCRIPT_HIERATIC_EGYPTIAN","features":[72]},{"name":"USCRIPT_HIRAGANA","features":[72]},{"name":"USCRIPT_IMPERIAL_ARAMAIC","features":[72]},{"name":"USCRIPT_INHERITED","features":[72]},{"name":"USCRIPT_INSCRIPTIONAL_PAHLAVI","features":[72]},{"name":"USCRIPT_INSCRIPTIONAL_PARTHIAN","features":[72]},{"name":"USCRIPT_INVALID_CODE","features":[72]},{"name":"USCRIPT_JAMO","features":[72]},{"name":"USCRIPT_JAPANESE","features":[72]},{"name":"USCRIPT_JAVANESE","features":[72]},{"name":"USCRIPT_JURCHEN","features":[72]},{"name":"USCRIPT_KAITHI","features":[72]},{"name":"USCRIPT_KANNADA","features":[72]},{"name":"USCRIPT_KATAKANA","features":[72]},{"name":"USCRIPT_KATAKANA_OR_HIRAGANA","features":[72]},{"name":"USCRIPT_KAYAH_LI","features":[72]},{"name":"USCRIPT_KHAROSHTHI","features":[72]},{"name":"USCRIPT_KHITAN_SMALL_SCRIPT","features":[72]},{"name":"USCRIPT_KHMER","features":[72]},{"name":"USCRIPT_KHOJKI","features":[72]},{"name":"USCRIPT_KHUDAWADI","features":[72]},{"name":"USCRIPT_KHUTSURI","features":[72]},{"name":"USCRIPT_KOREAN","features":[72]},{"name":"USCRIPT_KPELLE","features":[72]},{"name":"USCRIPT_LANNA","features":[72]},{"name":"USCRIPT_LAO","features":[72]},{"name":"USCRIPT_LATIN","features":[72]},{"name":"USCRIPT_LATIN_FRAKTUR","features":[72]},{"name":"USCRIPT_LATIN_GAELIC","features":[72]},{"name":"USCRIPT_LEPCHA","features":[72]},{"name":"USCRIPT_LIMBU","features":[72]},{"name":"USCRIPT_LINEAR_A","features":[72]},{"name":"USCRIPT_LINEAR_B","features":[72]},{"name":"USCRIPT_LISU","features":[72]},{"name":"USCRIPT_LOMA","features":[72]},{"name":"USCRIPT_LYCIAN","features":[72]},{"name":"USCRIPT_LYDIAN","features":[72]},{"name":"USCRIPT_MAHAJANI","features":[72]},{"name":"USCRIPT_MAKASAR","features":[72]},{"name":"USCRIPT_MALAYALAM","features":[72]},{"name":"USCRIPT_MANDAEAN","features":[72]},{"name":"USCRIPT_MANDAIC","features":[72]},{"name":"USCRIPT_MANICHAEAN","features":[72]},{"name":"USCRIPT_MARCHEN","features":[72]},{"name":"USCRIPT_MASARAM_GONDI","features":[72]},{"name":"USCRIPT_MATHEMATICAL_NOTATION","features":[72]},{"name":"USCRIPT_MAYAN_HIEROGLYPHS","features":[72]},{"name":"USCRIPT_MEDEFAIDRIN","features":[72]},{"name":"USCRIPT_MEITEI_MAYEK","features":[72]},{"name":"USCRIPT_MENDE","features":[72]},{"name":"USCRIPT_MEROITIC","features":[72]},{"name":"USCRIPT_MEROITIC_CURSIVE","features":[72]},{"name":"USCRIPT_MEROITIC_HIEROGLYPHS","features":[72]},{"name":"USCRIPT_MIAO","features":[72]},{"name":"USCRIPT_MODI","features":[72]},{"name":"USCRIPT_MONGOLIAN","features":[72]},{"name":"USCRIPT_MOON","features":[72]},{"name":"USCRIPT_MRO","features":[72]},{"name":"USCRIPT_MULTANI","features":[72]},{"name":"USCRIPT_MYANMAR","features":[72]},{"name":"USCRIPT_NABATAEAN","features":[72]},{"name":"USCRIPT_NAKHI_GEBA","features":[72]},{"name":"USCRIPT_NANDINAGARI","features":[72]},{"name":"USCRIPT_NEWA","features":[72]},{"name":"USCRIPT_NEW_TAI_LUE","features":[72]},{"name":"USCRIPT_NKO","features":[72]},{"name":"USCRIPT_NUSHU","features":[72]},{"name":"USCRIPT_NYIAKENG_PUACHUE_HMONG","features":[72]},{"name":"USCRIPT_OGHAM","features":[72]},{"name":"USCRIPT_OLD_CHURCH_SLAVONIC_CYRILLIC","features":[72]},{"name":"USCRIPT_OLD_HUNGARIAN","features":[72]},{"name":"USCRIPT_OLD_ITALIC","features":[72]},{"name":"USCRIPT_OLD_NORTH_ARABIAN","features":[72]},{"name":"USCRIPT_OLD_PERMIC","features":[72]},{"name":"USCRIPT_OLD_PERSIAN","features":[72]},{"name":"USCRIPT_OLD_SOGDIAN","features":[72]},{"name":"USCRIPT_OLD_SOUTH_ARABIAN","features":[72]},{"name":"USCRIPT_OL_CHIKI","features":[72]},{"name":"USCRIPT_ORIYA","features":[72]},{"name":"USCRIPT_ORKHON","features":[72]},{"name":"USCRIPT_OSAGE","features":[72]},{"name":"USCRIPT_OSMANYA","features":[72]},{"name":"USCRIPT_PAHAWH_HMONG","features":[72]},{"name":"USCRIPT_PALMYRENE","features":[72]},{"name":"USCRIPT_PAU_CIN_HAU","features":[72]},{"name":"USCRIPT_PHAGS_PA","features":[72]},{"name":"USCRIPT_PHOENICIAN","features":[72]},{"name":"USCRIPT_PHONETIC_POLLARD","features":[72]},{"name":"USCRIPT_PSALTER_PAHLAVI","features":[72]},{"name":"USCRIPT_REJANG","features":[72]},{"name":"USCRIPT_RONGORONGO","features":[72]},{"name":"USCRIPT_RUNIC","features":[72]},{"name":"USCRIPT_SAMARITAN","features":[72]},{"name":"USCRIPT_SARATI","features":[72]},{"name":"USCRIPT_SAURASHTRA","features":[72]},{"name":"USCRIPT_SHARADA","features":[72]},{"name":"USCRIPT_SHAVIAN","features":[72]},{"name":"USCRIPT_SIDDHAM","features":[72]},{"name":"USCRIPT_SIGN_WRITING","features":[72]},{"name":"USCRIPT_SIMPLIFIED_HAN","features":[72]},{"name":"USCRIPT_SINDHI","features":[72]},{"name":"USCRIPT_SINHALA","features":[72]},{"name":"USCRIPT_SOGDIAN","features":[72]},{"name":"USCRIPT_SORA_SOMPENG","features":[72]},{"name":"USCRIPT_SOYOMBO","features":[72]},{"name":"USCRIPT_SUNDANESE","features":[72]},{"name":"USCRIPT_SYLOTI_NAGRI","features":[72]},{"name":"USCRIPT_SYMBOLS","features":[72]},{"name":"USCRIPT_SYMBOLS_EMOJI","features":[72]},{"name":"USCRIPT_SYRIAC","features":[72]},{"name":"USCRIPT_TAGALOG","features":[72]},{"name":"USCRIPT_TAGBANWA","features":[72]},{"name":"USCRIPT_TAI_LE","features":[72]},{"name":"USCRIPT_TAI_VIET","features":[72]},{"name":"USCRIPT_TAKRI","features":[72]},{"name":"USCRIPT_TAMIL","features":[72]},{"name":"USCRIPT_TANGUT","features":[72]},{"name":"USCRIPT_TELUGU","features":[72]},{"name":"USCRIPT_TENGWAR","features":[72]},{"name":"USCRIPT_THAANA","features":[72]},{"name":"USCRIPT_THAI","features":[72]},{"name":"USCRIPT_TIBETAN","features":[72]},{"name":"USCRIPT_TIFINAGH","features":[72]},{"name":"USCRIPT_TIRHUTA","features":[72]},{"name":"USCRIPT_TRADITIONAL_HAN","features":[72]},{"name":"USCRIPT_UCAS","features":[72]},{"name":"USCRIPT_UGARITIC","features":[72]},{"name":"USCRIPT_UNKNOWN","features":[72]},{"name":"USCRIPT_UNWRITTEN_LANGUAGES","features":[72]},{"name":"USCRIPT_USAGE_ASPIRATIONAL","features":[72]},{"name":"USCRIPT_USAGE_EXCLUDED","features":[72]},{"name":"USCRIPT_USAGE_LIMITED_USE","features":[72]},{"name":"USCRIPT_USAGE_NOT_ENCODED","features":[72]},{"name":"USCRIPT_USAGE_RECOMMENDED","features":[72]},{"name":"USCRIPT_USAGE_UNKNOWN","features":[72]},{"name":"USCRIPT_VAI","features":[72]},{"name":"USCRIPT_VISIBLE_SPEECH","features":[72]},{"name":"USCRIPT_WANCHO","features":[72]},{"name":"USCRIPT_WARANG_CITI","features":[72]},{"name":"USCRIPT_WESTERN_SYRIAC","features":[72]},{"name":"USCRIPT_WOLEAI","features":[72]},{"name":"USCRIPT_YEZIDI","features":[72]},{"name":"USCRIPT_YI","features":[72]},{"name":"USCRIPT_ZANABAZAR_SQUARE","features":[72]},{"name":"USEARCH_ANY_BASE_WEIGHT_IS_WILDCARD","features":[72]},{"name":"USEARCH_DEFAULT","features":[72]},{"name":"USEARCH_DONE","features":[72]},{"name":"USEARCH_ELEMENT_COMPARISON","features":[72]},{"name":"USEARCH_OFF","features":[72]},{"name":"USEARCH_ON","features":[72]},{"name":"USEARCH_OVERLAP","features":[72]},{"name":"USEARCH_PATTERN_BASE_WEIGHT_IS_WILDCARD","features":[72]},{"name":"USEARCH_STANDARD_ELEMENT_COMPARISON","features":[72]},{"name":"USET_ADD_CASE_MAPPINGS","features":[72]},{"name":"USET_CASE_INSENSITIVE","features":[72]},{"name":"USET_IGNORE_SPACE","features":[72]},{"name":"USET_SERIALIZED_STATIC_ARRAY_CAPACITY","features":[72]},{"name":"USET_SPAN_CONTAINED","features":[72]},{"name":"USET_SPAN_NOT_CONTAINED","features":[72]},{"name":"USET_SPAN_SIMPLE","features":[72]},{"name":"USPOOF_ALL_CHECKS","features":[72]},{"name":"USPOOF_ASCII","features":[72]},{"name":"USPOOF_AUX_INFO","features":[72]},{"name":"USPOOF_CHAR_LIMIT","features":[72]},{"name":"USPOOF_CONFUSABLE","features":[72]},{"name":"USPOOF_HIDDEN_OVERLAY","features":[72]},{"name":"USPOOF_HIGHLY_RESTRICTIVE","features":[72]},{"name":"USPOOF_INVISIBLE","features":[72]},{"name":"USPOOF_MINIMALLY_RESTRICTIVE","features":[72]},{"name":"USPOOF_MIXED_NUMBERS","features":[72]},{"name":"USPOOF_MIXED_SCRIPT_CONFUSABLE","features":[72]},{"name":"USPOOF_MODERATELY_RESTRICTIVE","features":[72]},{"name":"USPOOF_RESTRICTION_LEVEL","features":[72]},{"name":"USPOOF_RESTRICTION_LEVEL_MASK","features":[72]},{"name":"USPOOF_SINGLE_SCRIPT_CONFUSABLE","features":[72]},{"name":"USPOOF_SINGLE_SCRIPT_RESTRICTIVE","features":[72]},{"name":"USPOOF_UNRESTRICTIVE","features":[72]},{"name":"USPOOF_WHOLE_SCRIPT_CONFUSABLE","features":[72]},{"name":"USPREP_ALLOW_UNASSIGNED","features":[72]},{"name":"USPREP_DEFAULT","features":[72]},{"name":"USPREP_RFC3491_NAMEPREP","features":[72]},{"name":"USPREP_RFC3530_NFS4_CIS_PREP","features":[72]},{"name":"USPREP_RFC3530_NFS4_CS_PREP","features":[72]},{"name":"USPREP_RFC3530_NFS4_CS_PREP_CI","features":[72]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_PREFIX","features":[72]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_SUFFIX","features":[72]},{"name":"USPREP_RFC3722_ISCSI","features":[72]},{"name":"USPREP_RFC3920_NODEPREP","features":[72]},{"name":"USPREP_RFC3920_RESOURCEPREP","features":[72]},{"name":"USPREP_RFC4011_MIB","features":[72]},{"name":"USPREP_RFC4013_SASLPREP","features":[72]},{"name":"USPREP_RFC4505_TRACE","features":[72]},{"name":"USPREP_RFC4518_LDAP","features":[72]},{"name":"USPREP_RFC4518_LDAP_CI","features":[72]},{"name":"USP_E_SCRIPT_NOT_IN_FONT","features":[72]},{"name":"USTRINGTRIE_BUILD_FAST","features":[72]},{"name":"USTRINGTRIE_BUILD_SMALL","features":[72]},{"name":"USTRINGTRIE_FINAL_VALUE","features":[72]},{"name":"USTRINGTRIE_INTERMEDIATE_VALUE","features":[72]},{"name":"USTRINGTRIE_NO_MATCH","features":[72]},{"name":"USTRINGTRIE_NO_VALUE","features":[72]},{"name":"UScriptCode","features":[72]},{"name":"UScriptUsage","features":[72]},{"name":"USearch","features":[72]},{"name":"USearchAttribute","features":[72]},{"name":"USearchAttributeValue","features":[72]},{"name":"USentenceBreak","features":[72]},{"name":"USentenceBreakTag","features":[72]},{"name":"USerializedSet","features":[72]},{"name":"USet","features":[72]},{"name":"USetSpanCondition","features":[72]},{"name":"USpoofCheckResult","features":[72]},{"name":"USpoofChecker","features":[72]},{"name":"USpoofChecks","features":[72]},{"name":"UStringCaseMapper","features":[72]},{"name":"UStringPrepProfile","features":[72]},{"name":"UStringPrepProfileType","features":[72]},{"name":"UStringSearch","features":[72]},{"name":"UStringTrieBuildOption","features":[72]},{"name":"UStringTrieResult","features":[72]},{"name":"USystemTimeZoneType","features":[72]},{"name":"UTEXT_MAGIC","features":[72]},{"name":"UTEXT_PROVIDER_HAS_META_DATA","features":[72]},{"name":"UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE","features":[72]},{"name":"UTEXT_PROVIDER_OWNS_TEXT","features":[72]},{"name":"UTEXT_PROVIDER_STABLE_CHUNKS","features":[72]},{"name":"UTEXT_PROVIDER_WRITABLE","features":[72]},{"name":"UTF16_MAX_CHAR_LENGTH","features":[72]},{"name":"UTF32_MAX_CHAR_LENGTH","features":[72]},{"name":"UTF8_ERROR_VALUE_1","features":[72]},{"name":"UTF8_ERROR_VALUE_2","features":[72]},{"name":"UTF8_MAX_CHAR_LENGTH","features":[72]},{"name":"UTF_ERROR_VALUE","features":[72]},{"name":"UTF_MAX_CHAR_LENGTH","features":[72]},{"name":"UTF_SIZE","features":[72]},{"name":"UTRACE_COLLATION_START","features":[72]},{"name":"UTRACE_CONVERSION_START","features":[72]},{"name":"UTRACE_ERROR","features":[72]},{"name":"UTRACE_FUNCTION_START","features":[72]},{"name":"UTRACE_INFO","features":[72]},{"name":"UTRACE_OFF","features":[72]},{"name":"UTRACE_OPEN_CLOSE","features":[72]},{"name":"UTRACE_UCNV_CLONE","features":[72]},{"name":"UTRACE_UCNV_CLOSE","features":[72]},{"name":"UTRACE_UCNV_FLUSH_CACHE","features":[72]},{"name":"UTRACE_UCNV_LOAD","features":[72]},{"name":"UTRACE_UCNV_OPEN","features":[72]},{"name":"UTRACE_UCNV_OPEN_ALGORITHMIC","features":[72]},{"name":"UTRACE_UCNV_OPEN_PACKAGE","features":[72]},{"name":"UTRACE_UCNV_UNLOAD","features":[72]},{"name":"UTRACE_UCOL_CLOSE","features":[72]},{"name":"UTRACE_UCOL_GETLOCALE","features":[72]},{"name":"UTRACE_UCOL_GET_SORTKEY","features":[72]},{"name":"UTRACE_UCOL_NEXTSORTKEYPART","features":[72]},{"name":"UTRACE_UCOL_OPEN","features":[72]},{"name":"UTRACE_UCOL_OPEN_FROM_SHORT_STRING","features":[72]},{"name":"UTRACE_UCOL_STRCOLL","features":[72]},{"name":"UTRACE_UCOL_STRCOLLITER","features":[72]},{"name":"UTRACE_UCOL_STRCOLLUTF8","features":[72]},{"name":"UTRACE_UDATA_BUNDLE","features":[72]},{"name":"UTRACE_UDATA_DATA_FILE","features":[72]},{"name":"UTRACE_UDATA_RESOURCE","features":[72]},{"name":"UTRACE_UDATA_RES_FILE","features":[72]},{"name":"UTRACE_UDATA_START","features":[72]},{"name":"UTRACE_U_CLEANUP","features":[72]},{"name":"UTRACE_U_INIT","features":[72]},{"name":"UTRACE_VERBOSE","features":[72]},{"name":"UTRACE_WARNING","features":[72]},{"name":"UTRANS_FORWARD","features":[72]},{"name":"UTRANS_REVERSE","features":[72]},{"name":"UTSV_EPOCH_OFFSET_VALUE","features":[72]},{"name":"UTSV_FROM_MAX_VALUE","features":[72]},{"name":"UTSV_FROM_MIN_VALUE","features":[72]},{"name":"UTSV_TO_MAX_VALUE","features":[72]},{"name":"UTSV_TO_MIN_VALUE","features":[72]},{"name":"UTSV_UNITS_VALUE","features":[72]},{"name":"UTZFMT_PARSE_OPTION_ALL_STYLES","features":[72]},{"name":"UTZFMT_PARSE_OPTION_NONE","features":[72]},{"name":"UTZFMT_PARSE_OPTION_TZ_DATABASE_ABBREVIATIONS","features":[72]},{"name":"UTZFMT_PAT_COUNT","features":[72]},{"name":"UTZFMT_PAT_NEGATIVE_H","features":[72]},{"name":"UTZFMT_PAT_NEGATIVE_HM","features":[72]},{"name":"UTZFMT_PAT_NEGATIVE_HMS","features":[72]},{"name":"UTZFMT_PAT_POSITIVE_H","features":[72]},{"name":"UTZFMT_PAT_POSITIVE_HM","features":[72]},{"name":"UTZFMT_PAT_POSITIVE_HMS","features":[72]},{"name":"UTZFMT_STYLE_EXEMPLAR_LOCATION","features":[72]},{"name":"UTZFMT_STYLE_GENERIC_LOCATION","features":[72]},{"name":"UTZFMT_STYLE_GENERIC_LONG","features":[72]},{"name":"UTZFMT_STYLE_GENERIC_SHORT","features":[72]},{"name":"UTZFMT_STYLE_ISO_BASIC_FIXED","features":[72]},{"name":"UTZFMT_STYLE_ISO_BASIC_FULL","features":[72]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FIXED","features":[72]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FULL","features":[72]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_SHORT","features":[72]},{"name":"UTZFMT_STYLE_ISO_BASIC_SHORT","features":[72]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FIXED","features":[72]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FULL","features":[72]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FIXED","features":[72]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FULL","features":[72]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT","features":[72]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT_SHORT","features":[72]},{"name":"UTZFMT_STYLE_SPECIFIC_LONG","features":[72]},{"name":"UTZFMT_STYLE_SPECIFIC_SHORT","features":[72]},{"name":"UTZFMT_STYLE_ZONE_ID","features":[72]},{"name":"UTZFMT_STYLE_ZONE_ID_SHORT","features":[72]},{"name":"UTZFMT_TIME_TYPE_DAYLIGHT","features":[72]},{"name":"UTZFMT_TIME_TYPE_STANDARD","features":[72]},{"name":"UTZFMT_TIME_TYPE_UNKNOWN","features":[72]},{"name":"UTZNM_EXEMPLAR_LOCATION","features":[72]},{"name":"UTZNM_LONG_DAYLIGHT","features":[72]},{"name":"UTZNM_LONG_GENERIC","features":[72]},{"name":"UTZNM_LONG_STANDARD","features":[72]},{"name":"UTZNM_SHORT_DAYLIGHT","features":[72]},{"name":"UTZNM_SHORT_GENERIC","features":[72]},{"name":"UTZNM_SHORT_STANDARD","features":[72]},{"name":"UTZNM_UNKNOWN","features":[72]},{"name":"UText","features":[72]},{"name":"UTextAccess","features":[72]},{"name":"UTextClone","features":[72]},{"name":"UTextClose","features":[72]},{"name":"UTextCopy","features":[72]},{"name":"UTextExtract","features":[72]},{"name":"UTextFuncs","features":[72]},{"name":"UTextMapNativeIndexToUTF16","features":[72]},{"name":"UTextMapOffsetToNative","features":[72]},{"name":"UTextNativeLength","features":[72]},{"name":"UTextReplace","features":[72]},{"name":"UTimeScaleValue","features":[72]},{"name":"UTimeZoneFormatGMTOffsetPatternType","features":[72]},{"name":"UTimeZoneFormatParseOption","features":[72]},{"name":"UTimeZoneFormatStyle","features":[72]},{"name":"UTimeZoneFormatTimeType","features":[72]},{"name":"UTimeZoneNameType","features":[72]},{"name":"UTimeZoneTransitionType","features":[72]},{"name":"UTraceData","features":[72]},{"name":"UTraceEntry","features":[72]},{"name":"UTraceExit","features":[72]},{"name":"UTraceFunctionNumber","features":[72]},{"name":"UTraceLevel","features":[72]},{"name":"UTransDirection","features":[72]},{"name":"UTransPosition","features":[72]},{"name":"UVerticalOrientation","features":[72]},{"name":"UWordBreak","features":[72]},{"name":"UWordBreakValues","features":[72]},{"name":"U_ALPHAINDEX_INFLOW","features":[72]},{"name":"U_ALPHAINDEX_NORMAL","features":[72]},{"name":"U_ALPHAINDEX_OVERFLOW","features":[72]},{"name":"U_ALPHAINDEX_UNDERFLOW","features":[72]},{"name":"U_AMBIGUOUS_ALIAS_WARNING","features":[72]},{"name":"U_ARABIC_NUMBER","features":[72]},{"name":"U_ARGUMENT_TYPE_MISMATCH","features":[72]},{"name":"U_ASCII_FAMILY","features":[72]},{"name":"U_BAD_VARIABLE_DEFINITION","features":[72]},{"name":"U_BLOCK_SEPARATOR","features":[72]},{"name":"U_BOUNDARY_NEUTRAL","features":[72]},{"name":"U_BPT_CLOSE","features":[72]},{"name":"U_BPT_NONE","features":[72]},{"name":"U_BPT_OPEN","features":[72]},{"name":"U_BRK_ASSIGN_ERROR","features":[72]},{"name":"U_BRK_ERROR_START","features":[72]},{"name":"U_BRK_HEX_DIGITS_EXPECTED","features":[72]},{"name":"U_BRK_INIT_ERROR","features":[72]},{"name":"U_BRK_INTERNAL_ERROR","features":[72]},{"name":"U_BRK_MALFORMED_RULE_TAG","features":[72]},{"name":"U_BRK_MISMATCHED_PAREN","features":[72]},{"name":"U_BRK_NEW_LINE_IN_QUOTED_STRING","features":[72]},{"name":"U_BRK_RULE_EMPTY_SET","features":[72]},{"name":"U_BRK_RULE_SYNTAX","features":[72]},{"name":"U_BRK_SEMICOLON_EXPECTED","features":[72]},{"name":"U_BRK_UNCLOSED_SET","features":[72]},{"name":"U_BRK_UNDEFINED_VARIABLE","features":[72]},{"name":"U_BRK_UNRECOGNIZED_OPTION","features":[72]},{"name":"U_BRK_VARIABLE_REDFINITION","features":[72]},{"name":"U_BUFFER_OVERFLOW_ERROR","features":[72]},{"name":"U_CE_NOT_FOUND_ERROR","features":[72]},{"name":"U_CHAR16_IS_TYPEDEF","features":[72]},{"name":"U_CHARSET_FAMILY","features":[72]},{"name":"U_CHARSET_IS_UTF8","features":[72]},{"name":"U_CHAR_CATEGORY_COUNT","features":[72]},{"name":"U_CHAR_NAME_ALIAS","features":[72]},{"name":"U_CHECK_DYLOAD","features":[72]},{"name":"U_COLLATOR_VERSION_MISMATCH","features":[72]},{"name":"U_COMBINED_IMPLEMENTATION","features":[72]},{"name":"U_COMBINING_SPACING_MARK","features":[72]},{"name":"U_COMMON_NUMBER_SEPARATOR","features":[72]},{"name":"U_COMPARE_CODE_POINT_ORDER","features":[72]},{"name":"U_COMPARE_IGNORE_CASE","features":[72]},{"name":"U_CONNECTOR_PUNCTUATION","features":[72]},{"name":"U_CONTROL_CHAR","features":[72]},{"name":"U_COPYRIGHT_STRING_LENGTH","features":[72]},{"name":"U_CPLUSPLUS_VERSION","features":[72]},{"name":"U_CURRENCY_SYMBOL","features":[72]},{"name":"U_DASH_PUNCTUATION","features":[72]},{"name":"U_DEBUG","features":[72]},{"name":"U_DECIMAL_DIGIT_NUMBER","features":[72]},{"name":"U_DECIMAL_NUMBER_SYNTAX_ERROR","features":[72]},{"name":"U_DEFAULT_KEYWORD_MISSING","features":[72]},{"name":"U_DEFAULT_SHOW_DRAFT","features":[72]},{"name":"U_DEFINE_FALSE_AND_TRUE","features":[72]},{"name":"U_DIFFERENT_UCA_VERSION","features":[72]},{"name":"U_DIR_NON_SPACING_MARK","features":[72]},{"name":"U_DISABLE_RENAMING","features":[72]},{"name":"U_DT_CANONICAL","features":[72]},{"name":"U_DT_CIRCLE","features":[72]},{"name":"U_DT_COMPAT","features":[72]},{"name":"U_DT_FINAL","features":[72]},{"name":"U_DT_FONT","features":[72]},{"name":"U_DT_FRACTION","features":[72]},{"name":"U_DT_INITIAL","features":[72]},{"name":"U_DT_ISOLATED","features":[72]},{"name":"U_DT_MEDIAL","features":[72]},{"name":"U_DT_NARROW","features":[72]},{"name":"U_DT_NOBREAK","features":[72]},{"name":"U_DT_NONE","features":[72]},{"name":"U_DT_SMALL","features":[72]},{"name":"U_DT_SQUARE","features":[72]},{"name":"U_DT_SUB","features":[72]},{"name":"U_DT_SUPER","features":[72]},{"name":"U_DT_VERTICAL","features":[72]},{"name":"U_DT_WIDE","features":[72]},{"name":"U_DUPLICATE_KEYWORD","features":[72]},{"name":"U_EA_AMBIGUOUS","features":[72]},{"name":"U_EA_FULLWIDTH","features":[72]},{"name":"U_EA_HALFWIDTH","features":[72]},{"name":"U_EA_NARROW","features":[72]},{"name":"U_EA_NEUTRAL","features":[72]},{"name":"U_EA_WIDE","features":[72]},{"name":"U_EBCDIC_FAMILY","features":[72]},{"name":"U_EDITS_NO_RESET","features":[72]},{"name":"U_ENABLE_DYLOAD","features":[72]},{"name":"U_ENABLE_TRACING","features":[72]},{"name":"U_ENCLOSING_MARK","features":[72]},{"name":"U_END_PUNCTUATION","features":[72]},{"name":"U_ENUM_OUT_OF_SYNC_ERROR","features":[72]},{"name":"U_ERROR_WARNING_START","features":[72]},{"name":"U_EUROPEAN_NUMBER","features":[72]},{"name":"U_EUROPEAN_NUMBER_SEPARATOR","features":[72]},{"name":"U_EUROPEAN_NUMBER_TERMINATOR","features":[72]},{"name":"U_EXTENDED_CHAR_NAME","features":[72]},{"name":"U_FILE_ACCESS_ERROR","features":[72]},{"name":"U_FINAL_PUNCTUATION","features":[72]},{"name":"U_FIRST_STRONG_ISOLATE","features":[72]},{"name":"U_FMT_PARSE_ERROR_START","features":[72]},{"name":"U_FOLD_CASE_DEFAULT","features":[72]},{"name":"U_FOLD_CASE_EXCLUDE_SPECIAL_I","features":[72]},{"name":"U_FORMAT_CHAR","features":[72]},{"name":"U_FORMAT_INEXACT_ERROR","features":[72]},{"name":"U_GCB_CONTROL","features":[72]},{"name":"U_GCB_CR","features":[72]},{"name":"U_GCB_EXTEND","features":[72]},{"name":"U_GCB_E_BASE","features":[72]},{"name":"U_GCB_E_BASE_GAZ","features":[72]},{"name":"U_GCB_E_MODIFIER","features":[72]},{"name":"U_GCB_GLUE_AFTER_ZWJ","features":[72]},{"name":"U_GCB_L","features":[72]},{"name":"U_GCB_LF","features":[72]},{"name":"U_GCB_LV","features":[72]},{"name":"U_GCB_LVT","features":[72]},{"name":"U_GCB_OTHER","features":[72]},{"name":"U_GCB_PREPEND","features":[72]},{"name":"U_GCB_REGIONAL_INDICATOR","features":[72]},{"name":"U_GCB_SPACING_MARK","features":[72]},{"name":"U_GCB_T","features":[72]},{"name":"U_GCB_V","features":[72]},{"name":"U_GCB_ZWJ","features":[72]},{"name":"U_GCC_MAJOR_MINOR","features":[72]},{"name":"U_GENERAL_OTHER_TYPES","features":[72]},{"name":"U_HAVE_CHAR16_T","features":[72]},{"name":"U_HAVE_DEBUG_LOCATION_NEW","features":[72]},{"name":"U_HAVE_INTTYPES_H","features":[72]},{"name":"U_HAVE_LIB_SUFFIX","features":[72]},{"name":"U_HAVE_PLACEMENT_NEW","features":[72]},{"name":"U_HAVE_RBNF","features":[72]},{"name":"U_HAVE_RVALUE_REFERENCES","features":[72]},{"name":"U_HAVE_STDINT_H","features":[72]},{"name":"U_HAVE_STD_STRING","features":[72]},{"name":"U_HAVE_WCHAR_H","features":[72]},{"name":"U_HAVE_WCSCPY","features":[72]},{"name":"U_HIDE_DEPRECATED_API","features":[72]},{"name":"U_HIDE_DRAFT_API","features":[72]},{"name":"U_HIDE_INTERNAL_API","features":[72]},{"name":"U_HIDE_OBSOLETE_API","features":[72]},{"name":"U_HIDE_OBSOLETE_UTF_OLD_H","features":[72]},{"name":"U_HST_LEADING_JAMO","features":[72]},{"name":"U_HST_LVT_SYLLABLE","features":[72]},{"name":"U_HST_LV_SYLLABLE","features":[72]},{"name":"U_HST_NOT_APPLICABLE","features":[72]},{"name":"U_HST_TRAILING_JAMO","features":[72]},{"name":"U_HST_VOWEL_JAMO","features":[72]},{"name":"U_ICUDATA_TYPE_LETTER","features":[72]},{"name":"U_ICU_DATA_KEY","features":[72]},{"name":"U_ICU_VERSION_BUNDLE","features":[72]},{"name":"U_IDNA_ACE_PREFIX_ERROR","features":[72]},{"name":"U_IDNA_CHECK_BIDI_ERROR","features":[72]},{"name":"U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR","features":[72]},{"name":"U_IDNA_ERROR_START","features":[72]},{"name":"U_IDNA_LABEL_TOO_LONG_ERROR","features":[72]},{"name":"U_IDNA_PROHIBITED_ERROR","features":[72]},{"name":"U_IDNA_STD3_ASCII_RULES_ERROR","features":[72]},{"name":"U_IDNA_UNASSIGNED_ERROR","features":[72]},{"name":"U_IDNA_VERIFICATION_ERROR","features":[72]},{"name":"U_IDNA_ZERO_LENGTH_LABEL_ERROR","features":[72]},{"name":"U_ILLEGAL_ARGUMENT_ERROR","features":[72]},{"name":"U_ILLEGAL_CHARACTER","features":[72]},{"name":"U_ILLEGAL_CHAR_FOUND","features":[72]},{"name":"U_ILLEGAL_CHAR_IN_SEGMENT","features":[72]},{"name":"U_ILLEGAL_ESCAPE_SEQUENCE","features":[72]},{"name":"U_ILLEGAL_PAD_POSITION","features":[72]},{"name":"U_INDEX_OUTOFBOUNDS_ERROR","features":[72]},{"name":"U_INITIAL_PUNCTUATION","features":[72]},{"name":"U_INPC_BOTTOM","features":[72]},{"name":"U_INPC_BOTTOM_AND_LEFT","features":[72]},{"name":"U_INPC_BOTTOM_AND_RIGHT","features":[72]},{"name":"U_INPC_LEFT","features":[72]},{"name":"U_INPC_LEFT_AND_RIGHT","features":[72]},{"name":"U_INPC_NA","features":[72]},{"name":"U_INPC_OVERSTRUCK","features":[72]},{"name":"U_INPC_RIGHT","features":[72]},{"name":"U_INPC_TOP","features":[72]},{"name":"U_INPC_TOP_AND_BOTTOM","features":[72]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_LEFT","features":[72]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_RIGHT","features":[72]},{"name":"U_INPC_TOP_AND_LEFT","features":[72]},{"name":"U_INPC_TOP_AND_LEFT_AND_RIGHT","features":[72]},{"name":"U_INPC_TOP_AND_RIGHT","features":[72]},{"name":"U_INPC_VISUAL_ORDER_LEFT","features":[72]},{"name":"U_INSC_AVAGRAHA","features":[72]},{"name":"U_INSC_BINDU","features":[72]},{"name":"U_INSC_BRAHMI_JOINING_NUMBER","features":[72]},{"name":"U_INSC_CANTILLATION_MARK","features":[72]},{"name":"U_INSC_CONSONANT","features":[72]},{"name":"U_INSC_CONSONANT_DEAD","features":[72]},{"name":"U_INSC_CONSONANT_FINAL","features":[72]},{"name":"U_INSC_CONSONANT_HEAD_LETTER","features":[72]},{"name":"U_INSC_CONSONANT_INITIAL_POSTFIXED","features":[72]},{"name":"U_INSC_CONSONANT_KILLER","features":[72]},{"name":"U_INSC_CONSONANT_MEDIAL","features":[72]},{"name":"U_INSC_CONSONANT_PLACEHOLDER","features":[72]},{"name":"U_INSC_CONSONANT_PRECEDING_REPHA","features":[72]},{"name":"U_INSC_CONSONANT_PREFIXED","features":[72]},{"name":"U_INSC_CONSONANT_SUBJOINED","features":[72]},{"name":"U_INSC_CONSONANT_SUCCEEDING_REPHA","features":[72]},{"name":"U_INSC_CONSONANT_WITH_STACKER","features":[72]},{"name":"U_INSC_GEMINATION_MARK","features":[72]},{"name":"U_INSC_INVISIBLE_STACKER","features":[72]},{"name":"U_INSC_JOINER","features":[72]},{"name":"U_INSC_MODIFYING_LETTER","features":[72]},{"name":"U_INSC_NON_JOINER","features":[72]},{"name":"U_INSC_NUKTA","features":[72]},{"name":"U_INSC_NUMBER","features":[72]},{"name":"U_INSC_NUMBER_JOINER","features":[72]},{"name":"U_INSC_OTHER","features":[72]},{"name":"U_INSC_PURE_KILLER","features":[72]},{"name":"U_INSC_REGISTER_SHIFTER","features":[72]},{"name":"U_INSC_SYLLABLE_MODIFIER","features":[72]},{"name":"U_INSC_TONE_LETTER","features":[72]},{"name":"U_INSC_TONE_MARK","features":[72]},{"name":"U_INSC_VIRAMA","features":[72]},{"name":"U_INSC_VISARGA","features":[72]},{"name":"U_INSC_VOWEL","features":[72]},{"name":"U_INSC_VOWEL_DEPENDENT","features":[72]},{"name":"U_INSC_VOWEL_INDEPENDENT","features":[72]},{"name":"U_INTERNAL_PROGRAM_ERROR","features":[72]},{"name":"U_INTERNAL_TRANSLITERATOR_ERROR","features":[72]},{"name":"U_INVALID_CHAR_FOUND","features":[72]},{"name":"U_INVALID_FORMAT_ERROR","features":[72]},{"name":"U_INVALID_FUNCTION","features":[72]},{"name":"U_INVALID_ID","features":[72]},{"name":"U_INVALID_PROPERTY_PATTERN","features":[72]},{"name":"U_INVALID_RBT_SYNTAX","features":[72]},{"name":"U_INVALID_STATE_ERROR","features":[72]},{"name":"U_INVALID_TABLE_FILE","features":[72]},{"name":"U_INVALID_TABLE_FORMAT","features":[72]},{"name":"U_INVARIANT_CONVERSION_ERROR","features":[72]},{"name":"U_IOSTREAM_SOURCE","features":[72]},{"name":"U_IS_BIG_ENDIAN","features":[72]},{"name":"U_JG_AFRICAN_FEH","features":[72]},{"name":"U_JG_AFRICAN_NOON","features":[72]},{"name":"U_JG_AFRICAN_QAF","features":[72]},{"name":"U_JG_AIN","features":[72]},{"name":"U_JG_ALAPH","features":[72]},{"name":"U_JG_ALEF","features":[72]},{"name":"U_JG_BEH","features":[72]},{"name":"U_JG_BETH","features":[72]},{"name":"U_JG_BURUSHASKI_YEH_BARREE","features":[72]},{"name":"U_JG_DAL","features":[72]},{"name":"U_JG_DALATH_RISH","features":[72]},{"name":"U_JG_E","features":[72]},{"name":"U_JG_FARSI_YEH","features":[72]},{"name":"U_JG_FE","features":[72]},{"name":"U_JG_FEH","features":[72]},{"name":"U_JG_FINAL_SEMKATH","features":[72]},{"name":"U_JG_GAF","features":[72]},{"name":"U_JG_GAMAL","features":[72]},{"name":"U_JG_HAH","features":[72]},{"name":"U_JG_HAMZA_ON_HEH_GOAL","features":[72]},{"name":"U_JG_HANIFI_ROHINGYA_KINNA_YA","features":[72]},{"name":"U_JG_HANIFI_ROHINGYA_PA","features":[72]},{"name":"U_JG_HE","features":[72]},{"name":"U_JG_HEH","features":[72]},{"name":"U_JG_HEH_GOAL","features":[72]},{"name":"U_JG_HETH","features":[72]},{"name":"U_JG_KAF","features":[72]},{"name":"U_JG_KAPH","features":[72]},{"name":"U_JG_KHAPH","features":[72]},{"name":"U_JG_KNOTTED_HEH","features":[72]},{"name":"U_JG_LAM","features":[72]},{"name":"U_JG_LAMADH","features":[72]},{"name":"U_JG_MALAYALAM_BHA","features":[72]},{"name":"U_JG_MALAYALAM_JA","features":[72]},{"name":"U_JG_MALAYALAM_LLA","features":[72]},{"name":"U_JG_MALAYALAM_LLLA","features":[72]},{"name":"U_JG_MALAYALAM_NGA","features":[72]},{"name":"U_JG_MALAYALAM_NNA","features":[72]},{"name":"U_JG_MALAYALAM_NNNA","features":[72]},{"name":"U_JG_MALAYALAM_NYA","features":[72]},{"name":"U_JG_MALAYALAM_RA","features":[72]},{"name":"U_JG_MALAYALAM_SSA","features":[72]},{"name":"U_JG_MALAYALAM_TTA","features":[72]},{"name":"U_JG_MANICHAEAN_ALEPH","features":[72]},{"name":"U_JG_MANICHAEAN_AYIN","features":[72]},{"name":"U_JG_MANICHAEAN_BETH","features":[72]},{"name":"U_JG_MANICHAEAN_DALETH","features":[72]},{"name":"U_JG_MANICHAEAN_DHAMEDH","features":[72]},{"name":"U_JG_MANICHAEAN_FIVE","features":[72]},{"name":"U_JG_MANICHAEAN_GIMEL","features":[72]},{"name":"U_JG_MANICHAEAN_HETH","features":[72]},{"name":"U_JG_MANICHAEAN_HUNDRED","features":[72]},{"name":"U_JG_MANICHAEAN_KAPH","features":[72]},{"name":"U_JG_MANICHAEAN_LAMEDH","features":[72]},{"name":"U_JG_MANICHAEAN_MEM","features":[72]},{"name":"U_JG_MANICHAEAN_NUN","features":[72]},{"name":"U_JG_MANICHAEAN_ONE","features":[72]},{"name":"U_JG_MANICHAEAN_PE","features":[72]},{"name":"U_JG_MANICHAEAN_QOPH","features":[72]},{"name":"U_JG_MANICHAEAN_RESH","features":[72]},{"name":"U_JG_MANICHAEAN_SADHE","features":[72]},{"name":"U_JG_MANICHAEAN_SAMEKH","features":[72]},{"name":"U_JG_MANICHAEAN_TAW","features":[72]},{"name":"U_JG_MANICHAEAN_TEN","features":[72]},{"name":"U_JG_MANICHAEAN_TETH","features":[72]},{"name":"U_JG_MANICHAEAN_THAMEDH","features":[72]},{"name":"U_JG_MANICHAEAN_TWENTY","features":[72]},{"name":"U_JG_MANICHAEAN_WAW","features":[72]},{"name":"U_JG_MANICHAEAN_YODH","features":[72]},{"name":"U_JG_MANICHAEAN_ZAYIN","features":[72]},{"name":"U_JG_MEEM","features":[72]},{"name":"U_JG_MIM","features":[72]},{"name":"U_JG_NOON","features":[72]},{"name":"U_JG_NO_JOINING_GROUP","features":[72]},{"name":"U_JG_NUN","features":[72]},{"name":"U_JG_NYA","features":[72]},{"name":"U_JG_PE","features":[72]},{"name":"U_JG_QAF","features":[72]},{"name":"U_JG_QAPH","features":[72]},{"name":"U_JG_REH","features":[72]},{"name":"U_JG_REVERSED_PE","features":[72]},{"name":"U_JG_ROHINGYA_YEH","features":[72]},{"name":"U_JG_SAD","features":[72]},{"name":"U_JG_SADHE","features":[72]},{"name":"U_JG_SEEN","features":[72]},{"name":"U_JG_SEMKATH","features":[72]},{"name":"U_JG_SHIN","features":[72]},{"name":"U_JG_STRAIGHT_WAW","features":[72]},{"name":"U_JG_SWASH_KAF","features":[72]},{"name":"U_JG_SYRIAC_WAW","features":[72]},{"name":"U_JG_TAH","features":[72]},{"name":"U_JG_TAW","features":[72]},{"name":"U_JG_TEH_MARBUTA","features":[72]},{"name":"U_JG_TEH_MARBUTA_GOAL","features":[72]},{"name":"U_JG_TETH","features":[72]},{"name":"U_JG_WAW","features":[72]},{"name":"U_JG_YEH","features":[72]},{"name":"U_JG_YEH_BARREE","features":[72]},{"name":"U_JG_YEH_WITH_TAIL","features":[72]},{"name":"U_JG_YUDH","features":[72]},{"name":"U_JG_YUDH_HE","features":[72]},{"name":"U_JG_ZAIN","features":[72]},{"name":"U_JG_ZHAIN","features":[72]},{"name":"U_JT_DUAL_JOINING","features":[72]},{"name":"U_JT_JOIN_CAUSING","features":[72]},{"name":"U_JT_LEFT_JOINING","features":[72]},{"name":"U_JT_NON_JOINING","features":[72]},{"name":"U_JT_RIGHT_JOINING","features":[72]},{"name":"U_JT_TRANSPARENT","features":[72]},{"name":"U_LB_ALPHABETIC","features":[72]},{"name":"U_LB_AMBIGUOUS","features":[72]},{"name":"U_LB_BREAK_AFTER","features":[72]},{"name":"U_LB_BREAK_BEFORE","features":[72]},{"name":"U_LB_BREAK_BOTH","features":[72]},{"name":"U_LB_BREAK_SYMBOLS","features":[72]},{"name":"U_LB_CARRIAGE_RETURN","features":[72]},{"name":"U_LB_CLOSE_PARENTHESIS","features":[72]},{"name":"U_LB_CLOSE_PUNCTUATION","features":[72]},{"name":"U_LB_COMBINING_MARK","features":[72]},{"name":"U_LB_COMPLEX_CONTEXT","features":[72]},{"name":"U_LB_CONDITIONAL_JAPANESE_STARTER","features":[72]},{"name":"U_LB_CONTINGENT_BREAK","features":[72]},{"name":"U_LB_EXCLAMATION","features":[72]},{"name":"U_LB_E_BASE","features":[72]},{"name":"U_LB_E_MODIFIER","features":[72]},{"name":"U_LB_GLUE","features":[72]},{"name":"U_LB_H2","features":[72]},{"name":"U_LB_H3","features":[72]},{"name":"U_LB_HEBREW_LETTER","features":[72]},{"name":"U_LB_HYPHEN","features":[72]},{"name":"U_LB_IDEOGRAPHIC","features":[72]},{"name":"U_LB_INFIX_NUMERIC","features":[72]},{"name":"U_LB_INSEPARABLE","features":[72]},{"name":"U_LB_INSEPERABLE","features":[72]},{"name":"U_LB_JL","features":[72]},{"name":"U_LB_JT","features":[72]},{"name":"U_LB_JV","features":[72]},{"name":"U_LB_LINE_FEED","features":[72]},{"name":"U_LB_MANDATORY_BREAK","features":[72]},{"name":"U_LB_NEXT_LINE","features":[72]},{"name":"U_LB_NONSTARTER","features":[72]},{"name":"U_LB_NUMERIC","features":[72]},{"name":"U_LB_OPEN_PUNCTUATION","features":[72]},{"name":"U_LB_POSTFIX_NUMERIC","features":[72]},{"name":"U_LB_PREFIX_NUMERIC","features":[72]},{"name":"U_LB_QUOTATION","features":[72]},{"name":"U_LB_REGIONAL_INDICATOR","features":[72]},{"name":"U_LB_SPACE","features":[72]},{"name":"U_LB_SURROGATE","features":[72]},{"name":"U_LB_UNKNOWN","features":[72]},{"name":"U_LB_WORD_JOINER","features":[72]},{"name":"U_LB_ZWJ","features":[72]},{"name":"U_LB_ZWSPACE","features":[72]},{"name":"U_LEFT_TO_RIGHT","features":[72]},{"name":"U_LEFT_TO_RIGHT_EMBEDDING","features":[72]},{"name":"U_LEFT_TO_RIGHT_ISOLATE","features":[72]},{"name":"U_LEFT_TO_RIGHT_OVERRIDE","features":[72]},{"name":"U_LETTER_NUMBER","features":[72]},{"name":"U_LIB_SUFFIX_C_NAME_STRING","features":[72]},{"name":"U_LINE_SEPARATOR","features":[72]},{"name":"U_LONG_PROPERTY_NAME","features":[72]},{"name":"U_LOWERCASE_LETTER","features":[72]},{"name":"U_MALFORMED_EXPONENTIAL_PATTERN","features":[72]},{"name":"U_MALFORMED_PRAGMA","features":[72]},{"name":"U_MALFORMED_RULE","features":[72]},{"name":"U_MALFORMED_SET","features":[72]},{"name":"U_MALFORMED_SYMBOL_REFERENCE","features":[72]},{"name":"U_MALFORMED_UNICODE_ESCAPE","features":[72]},{"name":"U_MALFORMED_VARIABLE_DEFINITION","features":[72]},{"name":"U_MALFORMED_VARIABLE_REFERENCE","features":[72]},{"name":"U_MATH_SYMBOL","features":[72]},{"name":"U_MAX_VERSION_LENGTH","features":[72]},{"name":"U_MAX_VERSION_STRING_LENGTH","features":[72]},{"name":"U_MEMORY_ALLOCATION_ERROR","features":[72]},{"name":"U_MESSAGE_PARSE_ERROR","features":[72]},{"name":"U_MILLIS_PER_DAY","features":[72]},{"name":"U_MILLIS_PER_HOUR","features":[72]},{"name":"U_MILLIS_PER_MINUTE","features":[72]},{"name":"U_MILLIS_PER_SECOND","features":[72]},{"name":"U_MISMATCHED_SEGMENT_DELIMITERS","features":[72]},{"name":"U_MISPLACED_ANCHOR_START","features":[72]},{"name":"U_MISPLACED_COMPOUND_FILTER","features":[72]},{"name":"U_MISPLACED_CURSOR_OFFSET","features":[72]},{"name":"U_MISPLACED_QUANTIFIER","features":[72]},{"name":"U_MISSING_OPERATOR","features":[72]},{"name":"U_MISSING_RESOURCE_ERROR","features":[72]},{"name":"U_MISSING_SEGMENT_CLOSE","features":[72]},{"name":"U_MODIFIER_LETTER","features":[72]},{"name":"U_MODIFIER_SYMBOL","features":[72]},{"name":"U_MULTIPLE_ANTE_CONTEXTS","features":[72]},{"name":"U_MULTIPLE_COMPOUND_FILTERS","features":[72]},{"name":"U_MULTIPLE_CURSORS","features":[72]},{"name":"U_MULTIPLE_DECIMAL_SEPARATORS","features":[72]},{"name":"U_MULTIPLE_DECIMAL_SEPERATORS","features":[72]},{"name":"U_MULTIPLE_EXPONENTIAL_SYMBOLS","features":[72]},{"name":"U_MULTIPLE_PAD_SPECIFIERS","features":[72]},{"name":"U_MULTIPLE_PERCENT_SYMBOLS","features":[72]},{"name":"U_MULTIPLE_PERMILL_SYMBOLS","features":[72]},{"name":"U_MULTIPLE_POST_CONTEXTS","features":[72]},{"name":"U_NON_SPACING_MARK","features":[72]},{"name":"U_NO_DEFAULT_INCLUDE_UTF_HEADERS","features":[72]},{"name":"U_NO_SPACE_AVAILABLE","features":[72]},{"name":"U_NO_WRITE_PERMISSION","features":[72]},{"name":"U_NT_DECIMAL","features":[72]},{"name":"U_NT_DIGIT","features":[72]},{"name":"U_NT_NONE","features":[72]},{"name":"U_NT_NUMERIC","features":[72]},{"name":"U_NUMBER_ARG_OUTOFBOUNDS_ERROR","features":[72]},{"name":"U_NUMBER_SKELETON_SYNTAX_ERROR","features":[72]},{"name":"U_OMIT_UNCHANGED_TEXT","features":[72]},{"name":"U_OTHER_LETTER","features":[72]},{"name":"U_OTHER_NEUTRAL","features":[72]},{"name":"U_OTHER_NUMBER","features":[72]},{"name":"U_OTHER_PUNCTUATION","features":[72]},{"name":"U_OTHER_SYMBOL","features":[72]},{"name":"U_OVERRIDE_CXX_ALLOCATION","features":[72]},{"name":"U_PARAGRAPH_SEPARATOR","features":[72]},{"name":"U_PARSE_CONTEXT_LEN","features":[72]},{"name":"U_PARSE_ERROR","features":[72]},{"name":"U_PARSE_ERROR_START","features":[72]},{"name":"U_PATTERN_SYNTAX_ERROR","features":[72]},{"name":"U_PF_AIX","features":[72]},{"name":"U_PF_ANDROID","features":[72]},{"name":"U_PF_BROWSER_NATIVE_CLIENT","features":[72]},{"name":"U_PF_BSD","features":[72]},{"name":"U_PF_CYGWIN","features":[72]},{"name":"U_PF_DARWIN","features":[72]},{"name":"U_PF_EMSCRIPTEN","features":[72]},{"name":"U_PF_FUCHSIA","features":[72]},{"name":"U_PF_HPUX","features":[72]},{"name":"U_PF_IPHONE","features":[72]},{"name":"U_PF_IRIX","features":[72]},{"name":"U_PF_LINUX","features":[72]},{"name":"U_PF_MINGW","features":[72]},{"name":"U_PF_OS390","features":[72]},{"name":"U_PF_OS400","features":[72]},{"name":"U_PF_QNX","features":[72]},{"name":"U_PF_SOLARIS","features":[72]},{"name":"U_PF_UNKNOWN","features":[72]},{"name":"U_PF_WINDOWS","features":[72]},{"name":"U_PLATFORM","features":[72]},{"name":"U_PLATFORM_HAS_WIN32_API","features":[72]},{"name":"U_PLATFORM_HAS_WINUWP_API","features":[72]},{"name":"U_PLATFORM_IMPLEMENTS_POSIX","features":[72]},{"name":"U_PLATFORM_IS_DARWIN_BASED","features":[72]},{"name":"U_PLATFORM_IS_LINUX_BASED","features":[72]},{"name":"U_PLATFORM_USES_ONLY_WIN32_API","features":[72]},{"name":"U_PLUGIN_CHANGED_LEVEL_WARNING","features":[72]},{"name":"U_PLUGIN_DIDNT_SET_LEVEL","features":[72]},{"name":"U_PLUGIN_ERROR_START","features":[72]},{"name":"U_PLUGIN_TOO_HIGH","features":[72]},{"name":"U_POP_DIRECTIONAL_FORMAT","features":[72]},{"name":"U_POP_DIRECTIONAL_ISOLATE","features":[72]},{"name":"U_PRIMARY_TOO_LONG_ERROR","features":[72]},{"name":"U_PRIVATE_USE_CHAR","features":[72]},{"name":"U_REGEX_BAD_ESCAPE_SEQUENCE","features":[72]},{"name":"U_REGEX_BAD_INTERVAL","features":[72]},{"name":"U_REGEX_ERROR_START","features":[72]},{"name":"U_REGEX_INTERNAL_ERROR","features":[72]},{"name":"U_REGEX_INVALID_BACK_REF","features":[72]},{"name":"U_REGEX_INVALID_CAPTURE_GROUP_NAME","features":[72]},{"name":"U_REGEX_INVALID_FLAG","features":[72]},{"name":"U_REGEX_INVALID_RANGE","features":[72]},{"name":"U_REGEX_INVALID_STATE","features":[72]},{"name":"U_REGEX_LOOK_BEHIND_LIMIT","features":[72]},{"name":"U_REGEX_MAX_LT_MIN","features":[72]},{"name":"U_REGEX_MISMATCHED_PAREN","features":[72]},{"name":"U_REGEX_MISSING_CLOSE_BRACKET","features":[72]},{"name":"U_REGEX_NUMBER_TOO_BIG","features":[72]},{"name":"U_REGEX_PATTERN_TOO_BIG","features":[72]},{"name":"U_REGEX_PROPERTY_SYNTAX","features":[72]},{"name":"U_REGEX_RULE_SYNTAX","features":[72]},{"name":"U_REGEX_SET_CONTAINS_STRING","features":[72]},{"name":"U_REGEX_STACK_OVERFLOW","features":[72]},{"name":"U_REGEX_STOPPED_BY_CALLER","features":[72]},{"name":"U_REGEX_TIME_OUT","features":[72]},{"name":"U_REGEX_UNIMPLEMENTED","features":[72]},{"name":"U_RESOURCE_TYPE_MISMATCH","features":[72]},{"name":"U_RIGHT_TO_LEFT","features":[72]},{"name":"U_RIGHT_TO_LEFT_ARABIC","features":[72]},{"name":"U_RIGHT_TO_LEFT_EMBEDDING","features":[72]},{"name":"U_RIGHT_TO_LEFT_ISOLATE","features":[72]},{"name":"U_RIGHT_TO_LEFT_OVERRIDE","features":[72]},{"name":"U_RULE_MASK_ERROR","features":[72]},{"name":"U_SAFECLONE_ALLOCATED_WARNING","features":[72]},{"name":"U_SB_ATERM","features":[72]},{"name":"U_SB_CLOSE","features":[72]},{"name":"U_SB_CR","features":[72]},{"name":"U_SB_EXTEND","features":[72]},{"name":"U_SB_FORMAT","features":[72]},{"name":"U_SB_LF","features":[72]},{"name":"U_SB_LOWER","features":[72]},{"name":"U_SB_NUMERIC","features":[72]},{"name":"U_SB_OLETTER","features":[72]},{"name":"U_SB_OTHER","features":[72]},{"name":"U_SB_SCONTINUE","features":[72]},{"name":"U_SB_SEP","features":[72]},{"name":"U_SB_SP","features":[72]},{"name":"U_SB_STERM","features":[72]},{"name":"U_SB_UPPER","features":[72]},{"name":"U_SEGMENT_SEPARATOR","features":[72]},{"name":"U_SENTINEL","features":[72]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL","features":[72]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_MASK","features":[72]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_NOOP","features":[72]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_AL","features":[72]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_LR","features":[72]},{"name":"U_SHAPE_DIGITS_AN2EN","features":[72]},{"name":"U_SHAPE_DIGITS_EN2AN","features":[72]},{"name":"U_SHAPE_DIGITS_MASK","features":[72]},{"name":"U_SHAPE_DIGITS_NOOP","features":[72]},{"name":"U_SHAPE_DIGITS_RESERVED","features":[72]},{"name":"U_SHAPE_DIGIT_TYPE_AN","features":[72]},{"name":"U_SHAPE_DIGIT_TYPE_AN_EXTENDED","features":[72]},{"name":"U_SHAPE_DIGIT_TYPE_MASK","features":[72]},{"name":"U_SHAPE_DIGIT_TYPE_RESERVED","features":[72]},{"name":"U_SHAPE_LAMALEF_AUTO","features":[72]},{"name":"U_SHAPE_LAMALEF_BEGIN","features":[72]},{"name":"U_SHAPE_LAMALEF_END","features":[72]},{"name":"U_SHAPE_LAMALEF_MASK","features":[72]},{"name":"U_SHAPE_LAMALEF_NEAR","features":[72]},{"name":"U_SHAPE_LAMALEF_RESIZE","features":[72]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_BEGINNING","features":[72]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_END","features":[72]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_NEAR","features":[72]},{"name":"U_SHAPE_LENGTH_GROW_SHRINK","features":[72]},{"name":"U_SHAPE_LENGTH_MASK","features":[72]},{"name":"U_SHAPE_LETTERS_MASK","features":[72]},{"name":"U_SHAPE_LETTERS_NOOP","features":[72]},{"name":"U_SHAPE_LETTERS_SHAPE","features":[72]},{"name":"U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED","features":[72]},{"name":"U_SHAPE_LETTERS_UNSHAPE","features":[72]},{"name":"U_SHAPE_PRESERVE_PRESENTATION","features":[72]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_MASK","features":[72]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_NOOP","features":[72]},{"name":"U_SHAPE_SEEN_MASK","features":[72]},{"name":"U_SHAPE_SEEN_TWOCELL_NEAR","features":[72]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_BEGIN_END","features":[72]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_MASK","features":[72]},{"name":"U_SHAPE_TAIL_NEW_UNICODE","features":[72]},{"name":"U_SHAPE_TAIL_TYPE_MASK","features":[72]},{"name":"U_SHAPE_TASHKEEL_BEGIN","features":[72]},{"name":"U_SHAPE_TASHKEEL_END","features":[72]},{"name":"U_SHAPE_TASHKEEL_MASK","features":[72]},{"name":"U_SHAPE_TASHKEEL_REPLACE_BY_TATWEEL","features":[72]},{"name":"U_SHAPE_TASHKEEL_RESIZE","features":[72]},{"name":"U_SHAPE_TEXT_DIRECTION_LOGICAL","features":[72]},{"name":"U_SHAPE_TEXT_DIRECTION_MASK","features":[72]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_LTR","features":[72]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_RTL","features":[72]},{"name":"U_SHAPE_YEHHAMZA_MASK","features":[72]},{"name":"U_SHAPE_YEHHAMZA_TWOCELL_NEAR","features":[72]},{"name":"U_SHORT_PROPERTY_NAME","features":[72]},{"name":"U_SHOW_CPLUSPLUS_API","features":[72]},{"name":"U_SIZEOF_UCHAR","features":[72]},{"name":"U_SIZEOF_WCHAR_T","features":[72]},{"name":"U_SORT_KEY_TOO_SHORT_WARNING","features":[72]},{"name":"U_SPACE_SEPARATOR","features":[72]},{"name":"U_START_PUNCTUATION","features":[72]},{"name":"U_STATE_OLD_WARNING","features":[72]},{"name":"U_STATE_TOO_OLD_ERROR","features":[72]},{"name":"U_STRINGPREP_CHECK_BIDI_ERROR","features":[72]},{"name":"U_STRINGPREP_PROHIBITED_ERROR","features":[72]},{"name":"U_STRINGPREP_UNASSIGNED_ERROR","features":[72]},{"name":"U_STRING_NOT_TERMINATED_WARNING","features":[72]},{"name":"U_SURROGATE","features":[72]},{"name":"U_TITLECASE_ADJUST_TO_CASED","features":[72]},{"name":"U_TITLECASE_LETTER","features":[72]},{"name":"U_TITLECASE_NO_BREAK_ADJUSTMENT","features":[72]},{"name":"U_TITLECASE_NO_LOWERCASE","features":[72]},{"name":"U_TITLECASE_SENTENCES","features":[72]},{"name":"U_TITLECASE_WHOLE_STRING","features":[72]},{"name":"U_TOO_MANY_ALIASES_ERROR","features":[72]},{"name":"U_TRAILING_BACKSLASH","features":[72]},{"name":"U_TRUNCATED_CHAR_FOUND","features":[72]},{"name":"U_UNASSIGNED","features":[72]},{"name":"U_UNCLOSED_SEGMENT","features":[72]},{"name":"U_UNDEFINED_KEYWORD","features":[72]},{"name":"U_UNDEFINED_SEGMENT_REFERENCE","features":[72]},{"name":"U_UNDEFINED_VARIABLE","features":[72]},{"name":"U_UNEXPECTED_TOKEN","features":[72]},{"name":"U_UNICODE_CHAR_NAME","features":[72]},{"name":"U_UNICODE_VERSION","features":[72]},{"name":"U_UNMATCHED_BRACES","features":[72]},{"name":"U_UNQUOTED_SPECIAL","features":[72]},{"name":"U_UNSUPPORTED_ATTRIBUTE","features":[72]},{"name":"U_UNSUPPORTED_ERROR","features":[72]},{"name":"U_UNSUPPORTED_ESCAPE_SEQUENCE","features":[72]},{"name":"U_UNSUPPORTED_PROPERTY","features":[72]},{"name":"U_UNTERMINATED_QUOTE","features":[72]},{"name":"U_UPPERCASE_LETTER","features":[72]},{"name":"U_USELESS_COLLATOR_ERROR","features":[72]},{"name":"U_USING_DEFAULT_WARNING","features":[72]},{"name":"U_USING_FALLBACK_WARNING","features":[72]},{"name":"U_USING_ICU_NAMESPACE","features":[72]},{"name":"U_VARIABLE_RANGE_EXHAUSTED","features":[72]},{"name":"U_VARIABLE_RANGE_OVERLAP","features":[72]},{"name":"U_VO_ROTATED","features":[72]},{"name":"U_VO_TRANSFORMED_ROTATED","features":[72]},{"name":"U_VO_TRANSFORMED_UPRIGHT","features":[72]},{"name":"U_VO_UPRIGHT","features":[72]},{"name":"U_WB_ALETTER","features":[72]},{"name":"U_WB_CR","features":[72]},{"name":"U_WB_DOUBLE_QUOTE","features":[72]},{"name":"U_WB_EXTEND","features":[72]},{"name":"U_WB_EXTENDNUMLET","features":[72]},{"name":"U_WB_E_BASE","features":[72]},{"name":"U_WB_E_BASE_GAZ","features":[72]},{"name":"U_WB_E_MODIFIER","features":[72]},{"name":"U_WB_FORMAT","features":[72]},{"name":"U_WB_GLUE_AFTER_ZWJ","features":[72]},{"name":"U_WB_HEBREW_LETTER","features":[72]},{"name":"U_WB_KATAKANA","features":[72]},{"name":"U_WB_LF","features":[72]},{"name":"U_WB_MIDLETTER","features":[72]},{"name":"U_WB_MIDNUM","features":[72]},{"name":"U_WB_MIDNUMLET","features":[72]},{"name":"U_WB_NEWLINE","features":[72]},{"name":"U_WB_NUMERIC","features":[72]},{"name":"U_WB_OTHER","features":[72]},{"name":"U_WB_REGIONAL_INDICATOR","features":[72]},{"name":"U_WB_SINGLE_QUOTE","features":[72]},{"name":"U_WB_WSEGSPACE","features":[72]},{"name":"U_WB_ZWJ","features":[72]},{"name":"U_WHITE_SPACE_NEUTRAL","features":[72]},{"name":"U_ZERO_ERROR","features":[72]},{"name":"UpdateCalendarDayOfWeek","features":[3,72]},{"name":"VS_ALLOW_LATIN","features":[72]},{"name":"VerifyScripts","features":[3,72]},{"name":"WC_COMPOSITECHECK","features":[72]},{"name":"WC_DEFAULTCHAR","features":[72]},{"name":"WC_DISCARDNS","features":[72]},{"name":"WC_ERR_INVALID_CHARS","features":[72]},{"name":"WC_NO_BEST_FIT_CHARS","features":[72]},{"name":"WC_SEPCHARS","features":[72]},{"name":"WORDLIST_TYPE","features":[72]},{"name":"WORDLIST_TYPE_ADD","features":[72]},{"name":"WORDLIST_TYPE_AUTOCORRECT","features":[72]},{"name":"WORDLIST_TYPE_EXCLUDE","features":[72]},{"name":"WORDLIST_TYPE_IGNORE","features":[72]},{"name":"WeekUnit","features":[72]},{"name":"WideCharToMultiByte","features":[3,72]},{"name":"YearUnit","features":[72]},{"name":"lstrcatA","features":[72]},{"name":"lstrcatW","features":[72]},{"name":"lstrcmpA","features":[72]},{"name":"lstrcmpW","features":[72]},{"name":"lstrcmpiA","features":[72]},{"name":"lstrcmpiW","features":[72]},{"name":"lstrcpyA","features":[72]},{"name":"lstrcpyW","features":[72]},{"name":"lstrcpynA","features":[72]},{"name":"lstrcpynW","features":[72]},{"name":"lstrlenA","features":[72]},{"name":"lstrlenW","features":[72]},{"name":"sidArabic","features":[72]},{"name":"sidArmenian","features":[72]},{"name":"sidAsciiLatin","features":[72]},{"name":"sidAsciiSym","features":[72]},{"name":"sidBengali","features":[72]},{"name":"sidBopomofo","features":[72]},{"name":"sidBraille","features":[72]},{"name":"sidBurmese","features":[72]},{"name":"sidCanSyllabic","features":[72]},{"name":"sidCherokee","features":[72]},{"name":"sidCyrillic","features":[72]},{"name":"sidDefault","features":[72]},{"name":"sidDevanagari","features":[72]},{"name":"sidEthiopic","features":[72]},{"name":"sidFEFirst","features":[72]},{"name":"sidFELast","features":[72]},{"name":"sidGeorgian","features":[72]},{"name":"sidGreek","features":[72]},{"name":"sidGujarati","features":[72]},{"name":"sidGurmukhi","features":[72]},{"name":"sidHan","features":[72]},{"name":"sidHangul","features":[72]},{"name":"sidHebrew","features":[72]},{"name":"sidKana","features":[72]},{"name":"sidKannada","features":[72]},{"name":"sidKhmer","features":[72]},{"name":"sidLao","features":[72]},{"name":"sidLatin","features":[72]},{"name":"sidLim","features":[72]},{"name":"sidMalayalam","features":[72]},{"name":"sidMerge","features":[72]},{"name":"sidMongolian","features":[72]},{"name":"sidOgham","features":[72]},{"name":"sidOriya","features":[72]},{"name":"sidRunic","features":[72]},{"name":"sidSinhala","features":[72]},{"name":"sidSyriac","features":[72]},{"name":"sidTamil","features":[72]},{"name":"sidTelugu","features":[72]},{"name":"sidThaana","features":[72]},{"name":"sidThai","features":[72]},{"name":"sidTibetan","features":[72]},{"name":"sidUserDefined","features":[72]},{"name":"sidYi","features":[72]},{"name":"u_UCharsToChars","features":[72]},{"name":"u_austrcpy","features":[72]},{"name":"u_austrncpy","features":[72]},{"name":"u_catclose","features":[72]},{"name":"u_catgets","features":[72]},{"name":"u_catopen","features":[72]},{"name":"u_charAge","features":[72]},{"name":"u_charDigitValue","features":[72]},{"name":"u_charDirection","features":[72]},{"name":"u_charFromName","features":[72]},{"name":"u_charMirror","features":[72]},{"name":"u_charName","features":[72]},{"name":"u_charType","features":[72]},{"name":"u_charsToUChars","features":[72]},{"name":"u_cleanup","features":[72]},{"name":"u_countChar32","features":[72]},{"name":"u_digit","features":[72]},{"name":"u_enumCharNames","features":[72]},{"name":"u_enumCharTypes","features":[72]},{"name":"u_errorName","features":[72]},{"name":"u_foldCase","features":[72]},{"name":"u_forDigit","features":[72]},{"name":"u_formatMessage","features":[72]},{"name":"u_formatMessageWithError","features":[72]},{"name":"u_getBidiPairedBracket","features":[72]},{"name":"u_getBinaryPropertySet","features":[72]},{"name":"u_getCombiningClass","features":[72]},{"name":"u_getDataVersion","features":[72]},{"name":"u_getFC_NFKC_Closure","features":[72]},{"name":"u_getIntPropertyMap","features":[72]},{"name":"u_getIntPropertyMaxValue","features":[72]},{"name":"u_getIntPropertyMinValue","features":[72]},{"name":"u_getIntPropertyValue","features":[72]},{"name":"u_getNumericValue","features":[72]},{"name":"u_getPropertyEnum","features":[72]},{"name":"u_getPropertyName","features":[72]},{"name":"u_getPropertyValueEnum","features":[72]},{"name":"u_getPropertyValueName","features":[72]},{"name":"u_getUnicodeVersion","features":[72]},{"name":"u_getVersion","features":[72]},{"name":"u_hasBinaryProperty","features":[72]},{"name":"u_init","features":[72]},{"name":"u_isIDIgnorable","features":[72]},{"name":"u_isIDPart","features":[72]},{"name":"u_isIDStart","features":[72]},{"name":"u_isISOControl","features":[72]},{"name":"u_isJavaIDPart","features":[72]},{"name":"u_isJavaIDStart","features":[72]},{"name":"u_isJavaSpaceChar","features":[72]},{"name":"u_isMirrored","features":[72]},{"name":"u_isUAlphabetic","features":[72]},{"name":"u_isULowercase","features":[72]},{"name":"u_isUUppercase","features":[72]},{"name":"u_isUWhiteSpace","features":[72]},{"name":"u_isWhitespace","features":[72]},{"name":"u_isalnum","features":[72]},{"name":"u_isalpha","features":[72]},{"name":"u_isbase","features":[72]},{"name":"u_isblank","features":[72]},{"name":"u_iscntrl","features":[72]},{"name":"u_isdefined","features":[72]},{"name":"u_isdigit","features":[72]},{"name":"u_isgraph","features":[72]},{"name":"u_islower","features":[72]},{"name":"u_isprint","features":[72]},{"name":"u_ispunct","features":[72]},{"name":"u_isspace","features":[72]},{"name":"u_istitle","features":[72]},{"name":"u_isupper","features":[72]},{"name":"u_isxdigit","features":[72]},{"name":"u_memcasecmp","features":[72]},{"name":"u_memchr","features":[72]},{"name":"u_memchr32","features":[72]},{"name":"u_memcmp","features":[72]},{"name":"u_memcmpCodePointOrder","features":[72]},{"name":"u_memcpy","features":[72]},{"name":"u_memmove","features":[72]},{"name":"u_memrchr","features":[72]},{"name":"u_memrchr32","features":[72]},{"name":"u_memset","features":[72]},{"name":"u_parseMessage","features":[72]},{"name":"u_parseMessageWithError","features":[72]},{"name":"u_setMemoryFunctions","features":[72]},{"name":"u_shapeArabic","features":[72]},{"name":"u_strCaseCompare","features":[72]},{"name":"u_strCompare","features":[72]},{"name":"u_strCompareIter","features":[72]},{"name":"u_strFindFirst","features":[72]},{"name":"u_strFindLast","features":[72]},{"name":"u_strFoldCase","features":[72]},{"name":"u_strFromJavaModifiedUTF8WithSub","features":[72]},{"name":"u_strFromUTF32","features":[72]},{"name":"u_strFromUTF32WithSub","features":[72]},{"name":"u_strFromUTF8","features":[72]},{"name":"u_strFromUTF8Lenient","features":[72]},{"name":"u_strFromUTF8WithSub","features":[72]},{"name":"u_strFromWCS","features":[72]},{"name":"u_strHasMoreChar32Than","features":[72]},{"name":"u_strToJavaModifiedUTF8","features":[72]},{"name":"u_strToLower","features":[72]},{"name":"u_strToTitle","features":[72]},{"name":"u_strToUTF32","features":[72]},{"name":"u_strToUTF32WithSub","features":[72]},{"name":"u_strToUTF8","features":[72]},{"name":"u_strToUTF8WithSub","features":[72]},{"name":"u_strToUpper","features":[72]},{"name":"u_strToWCS","features":[72]},{"name":"u_strcasecmp","features":[72]},{"name":"u_strcat","features":[72]},{"name":"u_strchr","features":[72]},{"name":"u_strchr32","features":[72]},{"name":"u_strcmp","features":[72]},{"name":"u_strcmpCodePointOrder","features":[72]},{"name":"u_strcpy","features":[72]},{"name":"u_strcspn","features":[72]},{"name":"u_strlen","features":[72]},{"name":"u_strncasecmp","features":[72]},{"name":"u_strncat","features":[72]},{"name":"u_strncmp","features":[72]},{"name":"u_strncmpCodePointOrder","features":[72]},{"name":"u_strncpy","features":[72]},{"name":"u_strpbrk","features":[72]},{"name":"u_strrchr","features":[72]},{"name":"u_strrchr32","features":[72]},{"name":"u_strrstr","features":[72]},{"name":"u_strspn","features":[72]},{"name":"u_strstr","features":[72]},{"name":"u_strtok_r","features":[72]},{"name":"u_tolower","features":[72]},{"name":"u_totitle","features":[72]},{"name":"u_toupper","features":[72]},{"name":"u_uastrcpy","features":[72]},{"name":"u_uastrncpy","features":[72]},{"name":"u_unescape","features":[72]},{"name":"u_unescapeAt","features":[72]},{"name":"u_versionFromString","features":[72]},{"name":"u_versionFromUString","features":[72]},{"name":"u_versionToString","features":[72]},{"name":"u_vformatMessage","features":[72]},{"name":"u_vformatMessageWithError","features":[72]},{"name":"u_vparseMessage","features":[72]},{"name":"u_vparseMessageWithError","features":[72]},{"name":"ubidi_close","features":[72]},{"name":"ubidi_countParagraphs","features":[72]},{"name":"ubidi_countRuns","features":[72]},{"name":"ubidi_getBaseDirection","features":[72]},{"name":"ubidi_getClassCallback","features":[72]},{"name":"ubidi_getCustomizedClass","features":[72]},{"name":"ubidi_getDirection","features":[72]},{"name":"ubidi_getLength","features":[72]},{"name":"ubidi_getLevelAt","features":[72]},{"name":"ubidi_getLevels","features":[72]},{"name":"ubidi_getLogicalIndex","features":[72]},{"name":"ubidi_getLogicalMap","features":[72]},{"name":"ubidi_getLogicalRun","features":[72]},{"name":"ubidi_getParaLevel","features":[72]},{"name":"ubidi_getParagraph","features":[72]},{"name":"ubidi_getParagraphByIndex","features":[72]},{"name":"ubidi_getProcessedLength","features":[72]},{"name":"ubidi_getReorderingMode","features":[72]},{"name":"ubidi_getReorderingOptions","features":[72]},{"name":"ubidi_getResultLength","features":[72]},{"name":"ubidi_getText","features":[72]},{"name":"ubidi_getVisualIndex","features":[72]},{"name":"ubidi_getVisualMap","features":[72]},{"name":"ubidi_getVisualRun","features":[72]},{"name":"ubidi_invertMap","features":[72]},{"name":"ubidi_isInverse","features":[72]},{"name":"ubidi_isOrderParagraphsLTR","features":[72]},{"name":"ubidi_open","features":[72]},{"name":"ubidi_openSized","features":[72]},{"name":"ubidi_orderParagraphsLTR","features":[72]},{"name":"ubidi_reorderLogical","features":[72]},{"name":"ubidi_reorderVisual","features":[72]},{"name":"ubidi_setClassCallback","features":[72]},{"name":"ubidi_setContext","features":[72]},{"name":"ubidi_setInverse","features":[72]},{"name":"ubidi_setLine","features":[72]},{"name":"ubidi_setPara","features":[72]},{"name":"ubidi_setReorderingMode","features":[72]},{"name":"ubidi_setReorderingOptions","features":[72]},{"name":"ubidi_writeReordered","features":[72]},{"name":"ubidi_writeReverse","features":[72]},{"name":"ubiditransform_close","features":[72]},{"name":"ubiditransform_open","features":[72]},{"name":"ubiditransform_transform","features":[72]},{"name":"ublock_getCode","features":[72]},{"name":"ubrk_close","features":[72]},{"name":"ubrk_countAvailable","features":[72]},{"name":"ubrk_current","features":[72]},{"name":"ubrk_first","features":[72]},{"name":"ubrk_following","features":[72]},{"name":"ubrk_getAvailable","features":[72]},{"name":"ubrk_getBinaryRules","features":[72]},{"name":"ubrk_getLocaleByType","features":[72]},{"name":"ubrk_getRuleStatus","features":[72]},{"name":"ubrk_getRuleStatusVec","features":[72]},{"name":"ubrk_isBoundary","features":[72]},{"name":"ubrk_last","features":[72]},{"name":"ubrk_next","features":[72]},{"name":"ubrk_open","features":[72]},{"name":"ubrk_openBinaryRules","features":[72]},{"name":"ubrk_openRules","features":[72]},{"name":"ubrk_preceding","features":[72]},{"name":"ubrk_previous","features":[72]},{"name":"ubrk_refreshUText","features":[72]},{"name":"ubrk_safeClone","features":[72]},{"name":"ubrk_setText","features":[72]},{"name":"ubrk_setUText","features":[72]},{"name":"ucal_add","features":[72]},{"name":"ucal_clear","features":[72]},{"name":"ucal_clearField","features":[72]},{"name":"ucal_clone","features":[72]},{"name":"ucal_close","features":[72]},{"name":"ucal_countAvailable","features":[72]},{"name":"ucal_equivalentTo","features":[72]},{"name":"ucal_get","features":[72]},{"name":"ucal_getAttribute","features":[72]},{"name":"ucal_getAvailable","features":[72]},{"name":"ucal_getCanonicalTimeZoneID","features":[72]},{"name":"ucal_getDSTSavings","features":[72]},{"name":"ucal_getDayOfWeekType","features":[72]},{"name":"ucal_getDefaultTimeZone","features":[72]},{"name":"ucal_getFieldDifference","features":[72]},{"name":"ucal_getGregorianChange","features":[72]},{"name":"ucal_getHostTimeZone","features":[72]},{"name":"ucal_getKeywordValuesForLocale","features":[72]},{"name":"ucal_getLimit","features":[72]},{"name":"ucal_getLocaleByType","features":[72]},{"name":"ucal_getMillis","features":[72]},{"name":"ucal_getNow","features":[72]},{"name":"ucal_getTZDataVersion","features":[72]},{"name":"ucal_getTimeZoneDisplayName","features":[72]},{"name":"ucal_getTimeZoneID","features":[72]},{"name":"ucal_getTimeZoneIDForWindowsID","features":[72]},{"name":"ucal_getTimeZoneTransitionDate","features":[72]},{"name":"ucal_getType","features":[72]},{"name":"ucal_getWeekendTransition","features":[72]},{"name":"ucal_getWindowsTimeZoneID","features":[72]},{"name":"ucal_inDaylightTime","features":[72]},{"name":"ucal_isSet","features":[72]},{"name":"ucal_isWeekend","features":[72]},{"name":"ucal_open","features":[72]},{"name":"ucal_openCountryTimeZones","features":[72]},{"name":"ucal_openTimeZoneIDEnumeration","features":[72]},{"name":"ucal_openTimeZones","features":[72]},{"name":"ucal_roll","features":[72]},{"name":"ucal_set","features":[72]},{"name":"ucal_setAttribute","features":[72]},{"name":"ucal_setDate","features":[72]},{"name":"ucal_setDateTime","features":[72]},{"name":"ucal_setDefaultTimeZone","features":[72]},{"name":"ucal_setGregorianChange","features":[72]},{"name":"ucal_setMillis","features":[72]},{"name":"ucal_setTimeZone","features":[72]},{"name":"ucasemap_close","features":[72]},{"name":"ucasemap_getBreakIterator","features":[72]},{"name":"ucasemap_getLocale","features":[72]},{"name":"ucasemap_getOptions","features":[72]},{"name":"ucasemap_open","features":[72]},{"name":"ucasemap_setBreakIterator","features":[72]},{"name":"ucasemap_setLocale","features":[72]},{"name":"ucasemap_setOptions","features":[72]},{"name":"ucasemap_toTitle","features":[72]},{"name":"ucasemap_utf8FoldCase","features":[72]},{"name":"ucasemap_utf8ToLower","features":[72]},{"name":"ucasemap_utf8ToTitle","features":[72]},{"name":"ucasemap_utf8ToUpper","features":[72]},{"name":"ucfpos_close","features":[72]},{"name":"ucfpos_constrainCategory","features":[72]},{"name":"ucfpos_constrainField","features":[72]},{"name":"ucfpos_getCategory","features":[72]},{"name":"ucfpos_getField","features":[72]},{"name":"ucfpos_getIndexes","features":[72]},{"name":"ucfpos_getInt64IterationContext","features":[72]},{"name":"ucfpos_matchesField","features":[72]},{"name":"ucfpos_open","features":[72]},{"name":"ucfpos_reset","features":[72]},{"name":"ucfpos_setInt64IterationContext","features":[72]},{"name":"ucfpos_setState","features":[72]},{"name":"ucnv_cbFromUWriteBytes","features":[72]},{"name":"ucnv_cbFromUWriteSub","features":[72]},{"name":"ucnv_cbFromUWriteUChars","features":[72]},{"name":"ucnv_cbToUWriteSub","features":[72]},{"name":"ucnv_cbToUWriteUChars","features":[72]},{"name":"ucnv_close","features":[72]},{"name":"ucnv_compareNames","features":[72]},{"name":"ucnv_convert","features":[72]},{"name":"ucnv_convertEx","features":[72]},{"name":"ucnv_countAliases","features":[72]},{"name":"ucnv_countAvailable","features":[72]},{"name":"ucnv_countStandards","features":[72]},{"name":"ucnv_detectUnicodeSignature","features":[72]},{"name":"ucnv_fixFileSeparator","features":[72]},{"name":"ucnv_flushCache","features":[72]},{"name":"ucnv_fromAlgorithmic","features":[72]},{"name":"ucnv_fromUChars","features":[72]},{"name":"ucnv_fromUCountPending","features":[72]},{"name":"ucnv_fromUnicode","features":[72]},{"name":"ucnv_getAlias","features":[72]},{"name":"ucnv_getAliases","features":[72]},{"name":"ucnv_getAvailableName","features":[72]},{"name":"ucnv_getCCSID","features":[72]},{"name":"ucnv_getCanonicalName","features":[72]},{"name":"ucnv_getDefaultName","features":[72]},{"name":"ucnv_getDisplayName","features":[72]},{"name":"ucnv_getFromUCallBack","features":[72]},{"name":"ucnv_getInvalidChars","features":[72]},{"name":"ucnv_getInvalidUChars","features":[72]},{"name":"ucnv_getMaxCharSize","features":[72]},{"name":"ucnv_getMinCharSize","features":[72]},{"name":"ucnv_getName","features":[72]},{"name":"ucnv_getNextUChar","features":[72]},{"name":"ucnv_getPlatform","features":[72]},{"name":"ucnv_getStandard","features":[72]},{"name":"ucnv_getStandardName","features":[72]},{"name":"ucnv_getStarters","features":[72]},{"name":"ucnv_getSubstChars","features":[72]},{"name":"ucnv_getToUCallBack","features":[72]},{"name":"ucnv_getType","features":[72]},{"name":"ucnv_getUnicodeSet","features":[72]},{"name":"ucnv_isAmbiguous","features":[72]},{"name":"ucnv_isFixedWidth","features":[72]},{"name":"ucnv_open","features":[72]},{"name":"ucnv_openAllNames","features":[72]},{"name":"ucnv_openCCSID","features":[72]},{"name":"ucnv_openPackage","features":[72]},{"name":"ucnv_openStandardNames","features":[72]},{"name":"ucnv_openU","features":[72]},{"name":"ucnv_reset","features":[72]},{"name":"ucnv_resetFromUnicode","features":[72]},{"name":"ucnv_resetToUnicode","features":[72]},{"name":"ucnv_safeClone","features":[72]},{"name":"ucnv_setDefaultName","features":[72]},{"name":"ucnv_setFallback","features":[72]},{"name":"ucnv_setFromUCallBack","features":[72]},{"name":"ucnv_setSubstChars","features":[72]},{"name":"ucnv_setSubstString","features":[72]},{"name":"ucnv_setToUCallBack","features":[72]},{"name":"ucnv_toAlgorithmic","features":[72]},{"name":"ucnv_toUChars","features":[72]},{"name":"ucnv_toUCountPending","features":[72]},{"name":"ucnv_toUnicode","features":[72]},{"name":"ucnv_usesFallback","features":[72]},{"name":"ucnvsel_close","features":[72]},{"name":"ucnvsel_open","features":[72]},{"name":"ucnvsel_openFromSerialized","features":[72]},{"name":"ucnvsel_selectForString","features":[72]},{"name":"ucnvsel_selectForUTF8","features":[72]},{"name":"ucnvsel_serialize","features":[72]},{"name":"ucol_cloneBinary","features":[72]},{"name":"ucol_close","features":[72]},{"name":"ucol_closeElements","features":[72]},{"name":"ucol_countAvailable","features":[72]},{"name":"ucol_equal","features":[72]},{"name":"ucol_getAttribute","features":[72]},{"name":"ucol_getAvailable","features":[72]},{"name":"ucol_getBound","features":[72]},{"name":"ucol_getContractionsAndExpansions","features":[72]},{"name":"ucol_getDisplayName","features":[72]},{"name":"ucol_getEquivalentReorderCodes","features":[72]},{"name":"ucol_getFunctionalEquivalent","features":[72]},{"name":"ucol_getKeywordValues","features":[72]},{"name":"ucol_getKeywordValuesForLocale","features":[72]},{"name":"ucol_getKeywords","features":[72]},{"name":"ucol_getLocaleByType","features":[72]},{"name":"ucol_getMaxExpansion","features":[72]},{"name":"ucol_getMaxVariable","features":[72]},{"name":"ucol_getOffset","features":[72]},{"name":"ucol_getReorderCodes","features":[72]},{"name":"ucol_getRules","features":[72]},{"name":"ucol_getRulesEx","features":[72]},{"name":"ucol_getSortKey","features":[72]},{"name":"ucol_getStrength","features":[72]},{"name":"ucol_getTailoredSet","features":[72]},{"name":"ucol_getUCAVersion","features":[72]},{"name":"ucol_getVariableTop","features":[72]},{"name":"ucol_getVersion","features":[72]},{"name":"ucol_greater","features":[72]},{"name":"ucol_greaterOrEqual","features":[72]},{"name":"ucol_keyHashCode","features":[72]},{"name":"ucol_mergeSortkeys","features":[72]},{"name":"ucol_next","features":[72]},{"name":"ucol_nextSortKeyPart","features":[72]},{"name":"ucol_open","features":[72]},{"name":"ucol_openAvailableLocales","features":[72]},{"name":"ucol_openBinary","features":[72]},{"name":"ucol_openElements","features":[72]},{"name":"ucol_openRules","features":[72]},{"name":"ucol_previous","features":[72]},{"name":"ucol_primaryOrder","features":[72]},{"name":"ucol_reset","features":[72]},{"name":"ucol_safeClone","features":[72]},{"name":"ucol_secondaryOrder","features":[72]},{"name":"ucol_setAttribute","features":[72]},{"name":"ucol_setMaxVariable","features":[72]},{"name":"ucol_setOffset","features":[72]},{"name":"ucol_setReorderCodes","features":[72]},{"name":"ucol_setStrength","features":[72]},{"name":"ucol_setText","features":[72]},{"name":"ucol_strcoll","features":[72]},{"name":"ucol_strcollIter","features":[72]},{"name":"ucol_strcollUTF8","features":[72]},{"name":"ucol_tertiaryOrder","features":[72]},{"name":"ucpmap_get","features":[72]},{"name":"ucpmap_getRange","features":[72]},{"name":"ucptrie_close","features":[72]},{"name":"ucptrie_get","features":[72]},{"name":"ucptrie_getRange","features":[72]},{"name":"ucptrie_getType","features":[72]},{"name":"ucptrie_getValueWidth","features":[72]},{"name":"ucptrie_internalSmallIndex","features":[72]},{"name":"ucptrie_internalSmallU8Index","features":[72]},{"name":"ucptrie_internalU8PrevIndex","features":[72]},{"name":"ucptrie_openFromBinary","features":[72]},{"name":"ucptrie_toBinary","features":[72]},{"name":"ucsdet_close","features":[72]},{"name":"ucsdet_detect","features":[72]},{"name":"ucsdet_detectAll","features":[72]},{"name":"ucsdet_enableInputFilter","features":[72]},{"name":"ucsdet_getAllDetectableCharsets","features":[72]},{"name":"ucsdet_getConfidence","features":[72]},{"name":"ucsdet_getLanguage","features":[72]},{"name":"ucsdet_getName","features":[72]},{"name":"ucsdet_getUChars","features":[72]},{"name":"ucsdet_isInputFilterEnabled","features":[72]},{"name":"ucsdet_open","features":[72]},{"name":"ucsdet_setDeclaredEncoding","features":[72]},{"name":"ucsdet_setText","features":[72]},{"name":"ucurr_countCurrencies","features":[72]},{"name":"ucurr_forLocale","features":[72]},{"name":"ucurr_forLocaleAndDate","features":[72]},{"name":"ucurr_getDefaultFractionDigits","features":[72]},{"name":"ucurr_getDefaultFractionDigitsForUsage","features":[72]},{"name":"ucurr_getKeywordValuesForLocale","features":[72]},{"name":"ucurr_getName","features":[72]},{"name":"ucurr_getNumericCode","features":[72]},{"name":"ucurr_getPluralName","features":[72]},{"name":"ucurr_getRoundingIncrement","features":[72]},{"name":"ucurr_getRoundingIncrementForUsage","features":[72]},{"name":"ucurr_isAvailable","features":[72]},{"name":"ucurr_openISOCurrencies","features":[72]},{"name":"ucurr_register","features":[72]},{"name":"ucurr_unregister","features":[72]},{"name":"udat_adoptNumberFormat","features":[72]},{"name":"udat_adoptNumberFormatForFields","features":[72]},{"name":"udat_applyPattern","features":[72]},{"name":"udat_clone","features":[72]},{"name":"udat_close","features":[72]},{"name":"udat_countAvailable","features":[72]},{"name":"udat_countSymbols","features":[72]},{"name":"udat_format","features":[72]},{"name":"udat_formatCalendar","features":[72]},{"name":"udat_formatCalendarForFields","features":[72]},{"name":"udat_formatForFields","features":[72]},{"name":"udat_get2DigitYearStart","features":[72]},{"name":"udat_getAvailable","features":[72]},{"name":"udat_getBooleanAttribute","features":[72]},{"name":"udat_getCalendar","features":[72]},{"name":"udat_getContext","features":[72]},{"name":"udat_getLocaleByType","features":[72]},{"name":"udat_getNumberFormat","features":[72]},{"name":"udat_getNumberFormatForField","features":[72]},{"name":"udat_getSymbols","features":[72]},{"name":"udat_isLenient","features":[72]},{"name":"udat_open","features":[72]},{"name":"udat_parse","features":[72]},{"name":"udat_parseCalendar","features":[72]},{"name":"udat_set2DigitYearStart","features":[72]},{"name":"udat_setBooleanAttribute","features":[72]},{"name":"udat_setCalendar","features":[72]},{"name":"udat_setContext","features":[72]},{"name":"udat_setLenient","features":[72]},{"name":"udat_setNumberFormat","features":[72]},{"name":"udat_setSymbols","features":[72]},{"name":"udat_toCalendarDateField","features":[72]},{"name":"udat_toPattern","features":[72]},{"name":"udatpg_addPattern","features":[72]},{"name":"udatpg_clone","features":[72]},{"name":"udatpg_close","features":[72]},{"name":"udatpg_getAppendItemFormat","features":[72]},{"name":"udatpg_getAppendItemName","features":[72]},{"name":"udatpg_getBaseSkeleton","features":[72]},{"name":"udatpg_getBestPattern","features":[72]},{"name":"udatpg_getBestPatternWithOptions","features":[72]},{"name":"udatpg_getDateTimeFormat","features":[72]},{"name":"udatpg_getDecimal","features":[72]},{"name":"udatpg_getFieldDisplayName","features":[72]},{"name":"udatpg_getPatternForSkeleton","features":[72]},{"name":"udatpg_getSkeleton","features":[72]},{"name":"udatpg_open","features":[72]},{"name":"udatpg_openBaseSkeletons","features":[72]},{"name":"udatpg_openEmpty","features":[72]},{"name":"udatpg_openSkeletons","features":[72]},{"name":"udatpg_replaceFieldTypes","features":[72]},{"name":"udatpg_replaceFieldTypesWithOptions","features":[72]},{"name":"udatpg_setAppendItemFormat","features":[72]},{"name":"udatpg_setAppendItemName","features":[72]},{"name":"udatpg_setDateTimeFormat","features":[72]},{"name":"udatpg_setDecimal","features":[72]},{"name":"udtitvfmt_close","features":[72]},{"name":"udtitvfmt_closeResult","features":[72]},{"name":"udtitvfmt_format","features":[72]},{"name":"udtitvfmt_open","features":[72]},{"name":"udtitvfmt_openResult","features":[72]},{"name":"udtitvfmt_resultAsValue","features":[72]},{"name":"uenum_close","features":[72]},{"name":"uenum_count","features":[72]},{"name":"uenum_next","features":[72]},{"name":"uenum_openCharStringsEnumeration","features":[72]},{"name":"uenum_openUCharStringsEnumeration","features":[72]},{"name":"uenum_reset","features":[72]},{"name":"uenum_unext","features":[72]},{"name":"ufieldpositer_close","features":[72]},{"name":"ufieldpositer_next","features":[72]},{"name":"ufieldpositer_open","features":[72]},{"name":"ufmt_close","features":[72]},{"name":"ufmt_getArrayItemByIndex","features":[72]},{"name":"ufmt_getArrayLength","features":[72]},{"name":"ufmt_getDate","features":[72]},{"name":"ufmt_getDecNumChars","features":[72]},{"name":"ufmt_getDouble","features":[72]},{"name":"ufmt_getInt64","features":[72]},{"name":"ufmt_getLong","features":[72]},{"name":"ufmt_getObject","features":[72]},{"name":"ufmt_getType","features":[72]},{"name":"ufmt_getUChars","features":[72]},{"name":"ufmt_isNumeric","features":[72]},{"name":"ufmt_open","features":[72]},{"name":"ufmtval_getString","features":[72]},{"name":"ufmtval_nextPosition","features":[72]},{"name":"ugender_getInstance","features":[72]},{"name":"ugender_getListGender","features":[72]},{"name":"uidna_close","features":[72]},{"name":"uidna_labelToASCII","features":[72]},{"name":"uidna_labelToASCII_UTF8","features":[72]},{"name":"uidna_labelToUnicode","features":[72]},{"name":"uidna_labelToUnicodeUTF8","features":[72]},{"name":"uidna_nameToASCII","features":[72]},{"name":"uidna_nameToASCII_UTF8","features":[72]},{"name":"uidna_nameToUnicode","features":[72]},{"name":"uidna_nameToUnicodeUTF8","features":[72]},{"name":"uidna_openUTS46","features":[72]},{"name":"uiter_current32","features":[72]},{"name":"uiter_getState","features":[72]},{"name":"uiter_next32","features":[72]},{"name":"uiter_previous32","features":[72]},{"name":"uiter_setState","features":[72]},{"name":"uiter_setString","features":[72]},{"name":"uiter_setUTF16BE","features":[72]},{"name":"uiter_setUTF8","features":[72]},{"name":"uldn_close","features":[72]},{"name":"uldn_getContext","features":[72]},{"name":"uldn_getDialectHandling","features":[72]},{"name":"uldn_getLocale","features":[72]},{"name":"uldn_keyDisplayName","features":[72]},{"name":"uldn_keyValueDisplayName","features":[72]},{"name":"uldn_languageDisplayName","features":[72]},{"name":"uldn_localeDisplayName","features":[72]},{"name":"uldn_open","features":[72]},{"name":"uldn_openForContext","features":[72]},{"name":"uldn_regionDisplayName","features":[72]},{"name":"uldn_scriptCodeDisplayName","features":[72]},{"name":"uldn_scriptDisplayName","features":[72]},{"name":"uldn_variantDisplayName","features":[72]},{"name":"ulistfmt_close","features":[72]},{"name":"ulistfmt_closeResult","features":[72]},{"name":"ulistfmt_format","features":[72]},{"name":"ulistfmt_formatStringsToResult","features":[72]},{"name":"ulistfmt_open","features":[72]},{"name":"ulistfmt_openForType","features":[72]},{"name":"ulistfmt_openResult","features":[72]},{"name":"ulistfmt_resultAsValue","features":[72]},{"name":"uloc_acceptLanguage","features":[72]},{"name":"uloc_acceptLanguageFromHTTP","features":[72]},{"name":"uloc_addLikelySubtags","features":[72]},{"name":"uloc_canonicalize","features":[72]},{"name":"uloc_countAvailable","features":[72]},{"name":"uloc_forLanguageTag","features":[72]},{"name":"uloc_getAvailable","features":[72]},{"name":"uloc_getBaseName","features":[72]},{"name":"uloc_getCharacterOrientation","features":[72]},{"name":"uloc_getCountry","features":[72]},{"name":"uloc_getDefault","features":[72]},{"name":"uloc_getDisplayCountry","features":[72]},{"name":"uloc_getDisplayKeyword","features":[72]},{"name":"uloc_getDisplayKeywordValue","features":[72]},{"name":"uloc_getDisplayLanguage","features":[72]},{"name":"uloc_getDisplayName","features":[72]},{"name":"uloc_getDisplayScript","features":[72]},{"name":"uloc_getDisplayVariant","features":[72]},{"name":"uloc_getISO3Country","features":[72]},{"name":"uloc_getISO3Language","features":[72]},{"name":"uloc_getISOCountries","features":[72]},{"name":"uloc_getISOLanguages","features":[72]},{"name":"uloc_getKeywordValue","features":[72]},{"name":"uloc_getLCID","features":[72]},{"name":"uloc_getLanguage","features":[72]},{"name":"uloc_getLineOrientation","features":[72]},{"name":"uloc_getLocaleForLCID","features":[72]},{"name":"uloc_getName","features":[72]},{"name":"uloc_getParent","features":[72]},{"name":"uloc_getScript","features":[72]},{"name":"uloc_getVariant","features":[72]},{"name":"uloc_isRightToLeft","features":[72]},{"name":"uloc_minimizeSubtags","features":[72]},{"name":"uloc_openAvailableByType","features":[72]},{"name":"uloc_openKeywords","features":[72]},{"name":"uloc_setDefault","features":[72]},{"name":"uloc_setKeywordValue","features":[72]},{"name":"uloc_toLanguageTag","features":[72]},{"name":"uloc_toLegacyKey","features":[72]},{"name":"uloc_toLegacyType","features":[72]},{"name":"uloc_toUnicodeLocaleKey","features":[72]},{"name":"uloc_toUnicodeLocaleType","features":[72]},{"name":"ulocdata_close","features":[72]},{"name":"ulocdata_getCLDRVersion","features":[72]},{"name":"ulocdata_getDelimiter","features":[72]},{"name":"ulocdata_getExemplarSet","features":[72]},{"name":"ulocdata_getLocaleDisplayPattern","features":[72]},{"name":"ulocdata_getLocaleSeparator","features":[72]},{"name":"ulocdata_getMeasurementSystem","features":[72]},{"name":"ulocdata_getNoSubstitute","features":[72]},{"name":"ulocdata_getPaperSize","features":[72]},{"name":"ulocdata_open","features":[72]},{"name":"ulocdata_setNoSubstitute","features":[72]},{"name":"umsg_applyPattern","features":[72]},{"name":"umsg_autoQuoteApostrophe","features":[72]},{"name":"umsg_clone","features":[72]},{"name":"umsg_close","features":[72]},{"name":"umsg_format","features":[72]},{"name":"umsg_getLocale","features":[72]},{"name":"umsg_open","features":[72]},{"name":"umsg_parse","features":[72]},{"name":"umsg_setLocale","features":[72]},{"name":"umsg_toPattern","features":[72]},{"name":"umsg_vformat","features":[72]},{"name":"umsg_vparse","features":[72]},{"name":"umutablecptrie_buildImmutable","features":[72]},{"name":"umutablecptrie_clone","features":[72]},{"name":"umutablecptrie_close","features":[72]},{"name":"umutablecptrie_fromUCPMap","features":[72]},{"name":"umutablecptrie_fromUCPTrie","features":[72]},{"name":"umutablecptrie_get","features":[72]},{"name":"umutablecptrie_getRange","features":[72]},{"name":"umutablecptrie_open","features":[72]},{"name":"umutablecptrie_set","features":[72]},{"name":"umutablecptrie_setRange","features":[72]},{"name":"unorm2_append","features":[72]},{"name":"unorm2_close","features":[72]},{"name":"unorm2_composePair","features":[72]},{"name":"unorm2_getCombiningClass","features":[72]},{"name":"unorm2_getDecomposition","features":[72]},{"name":"unorm2_getInstance","features":[72]},{"name":"unorm2_getNFCInstance","features":[72]},{"name":"unorm2_getNFDInstance","features":[72]},{"name":"unorm2_getNFKCCasefoldInstance","features":[72]},{"name":"unorm2_getNFKCInstance","features":[72]},{"name":"unorm2_getNFKDInstance","features":[72]},{"name":"unorm2_getRawDecomposition","features":[72]},{"name":"unorm2_hasBoundaryAfter","features":[72]},{"name":"unorm2_hasBoundaryBefore","features":[72]},{"name":"unorm2_isInert","features":[72]},{"name":"unorm2_isNormalized","features":[72]},{"name":"unorm2_normalize","features":[72]},{"name":"unorm2_normalizeSecondAndAppend","features":[72]},{"name":"unorm2_openFiltered","features":[72]},{"name":"unorm2_quickCheck","features":[72]},{"name":"unorm2_spanQuickCheckYes","features":[72]},{"name":"unorm_compare","features":[72]},{"name":"unum_applyPattern","features":[72]},{"name":"unum_clone","features":[72]},{"name":"unum_close","features":[72]},{"name":"unum_countAvailable","features":[72]},{"name":"unum_format","features":[72]},{"name":"unum_formatDecimal","features":[72]},{"name":"unum_formatDouble","features":[72]},{"name":"unum_formatDoubleCurrency","features":[72]},{"name":"unum_formatDoubleForFields","features":[72]},{"name":"unum_formatInt64","features":[72]},{"name":"unum_formatUFormattable","features":[72]},{"name":"unum_getAttribute","features":[72]},{"name":"unum_getAvailable","features":[72]},{"name":"unum_getContext","features":[72]},{"name":"unum_getDoubleAttribute","features":[72]},{"name":"unum_getLocaleByType","features":[72]},{"name":"unum_getSymbol","features":[72]},{"name":"unum_getTextAttribute","features":[72]},{"name":"unum_open","features":[72]},{"name":"unum_parse","features":[72]},{"name":"unum_parseDecimal","features":[72]},{"name":"unum_parseDouble","features":[72]},{"name":"unum_parseDoubleCurrency","features":[72]},{"name":"unum_parseInt64","features":[72]},{"name":"unum_parseToUFormattable","features":[72]},{"name":"unum_setAttribute","features":[72]},{"name":"unum_setContext","features":[72]},{"name":"unum_setDoubleAttribute","features":[72]},{"name":"unum_setSymbol","features":[72]},{"name":"unum_setTextAttribute","features":[72]},{"name":"unum_toPattern","features":[72]},{"name":"unumf_close","features":[72]},{"name":"unumf_closeResult","features":[72]},{"name":"unumf_formatDecimal","features":[72]},{"name":"unumf_formatDouble","features":[72]},{"name":"unumf_formatInt","features":[72]},{"name":"unumf_openForSkeletonAndLocale","features":[72]},{"name":"unumf_openForSkeletonAndLocaleWithError","features":[72]},{"name":"unumf_openResult","features":[72]},{"name":"unumf_resultAsValue","features":[72]},{"name":"unumf_resultGetAllFieldPositions","features":[72]},{"name":"unumf_resultNextFieldPosition","features":[72]},{"name":"unumf_resultToString","features":[72]},{"name":"unumsys_close","features":[72]},{"name":"unumsys_getDescription","features":[72]},{"name":"unumsys_getName","features":[72]},{"name":"unumsys_getRadix","features":[72]},{"name":"unumsys_isAlgorithmic","features":[72]},{"name":"unumsys_open","features":[72]},{"name":"unumsys_openAvailableNames","features":[72]},{"name":"unumsys_openByName","features":[72]},{"name":"uplrules_close","features":[72]},{"name":"uplrules_getKeywords","features":[72]},{"name":"uplrules_open","features":[72]},{"name":"uplrules_openForType","features":[72]},{"name":"uplrules_select","features":[72]},{"name":"uplrules_selectFormatted","features":[72]},{"name":"uregex_appendReplacement","features":[72]},{"name":"uregex_appendReplacementUText","features":[72]},{"name":"uregex_appendTail","features":[72]},{"name":"uregex_appendTailUText","features":[72]},{"name":"uregex_clone","features":[72]},{"name":"uregex_close","features":[72]},{"name":"uregex_end","features":[72]},{"name":"uregex_end64","features":[72]},{"name":"uregex_find","features":[72]},{"name":"uregex_find64","features":[72]},{"name":"uregex_findNext","features":[72]},{"name":"uregex_flags","features":[72]},{"name":"uregex_getFindProgressCallback","features":[72]},{"name":"uregex_getMatchCallback","features":[72]},{"name":"uregex_getStackLimit","features":[72]},{"name":"uregex_getText","features":[72]},{"name":"uregex_getTimeLimit","features":[72]},{"name":"uregex_getUText","features":[72]},{"name":"uregex_group","features":[72]},{"name":"uregex_groupCount","features":[72]},{"name":"uregex_groupNumberFromCName","features":[72]},{"name":"uregex_groupNumberFromName","features":[72]},{"name":"uregex_groupUText","features":[72]},{"name":"uregex_hasAnchoringBounds","features":[72]},{"name":"uregex_hasTransparentBounds","features":[72]},{"name":"uregex_hitEnd","features":[72]},{"name":"uregex_lookingAt","features":[72]},{"name":"uregex_lookingAt64","features":[72]},{"name":"uregex_matches","features":[72]},{"name":"uregex_matches64","features":[72]},{"name":"uregex_open","features":[72]},{"name":"uregex_openC","features":[72]},{"name":"uregex_openUText","features":[72]},{"name":"uregex_pattern","features":[72]},{"name":"uregex_patternUText","features":[72]},{"name":"uregex_refreshUText","features":[72]},{"name":"uregex_regionEnd","features":[72]},{"name":"uregex_regionEnd64","features":[72]},{"name":"uregex_regionStart","features":[72]},{"name":"uregex_regionStart64","features":[72]},{"name":"uregex_replaceAll","features":[72]},{"name":"uregex_replaceAllUText","features":[72]},{"name":"uregex_replaceFirst","features":[72]},{"name":"uregex_replaceFirstUText","features":[72]},{"name":"uregex_requireEnd","features":[72]},{"name":"uregex_reset","features":[72]},{"name":"uregex_reset64","features":[72]},{"name":"uregex_setFindProgressCallback","features":[72]},{"name":"uregex_setMatchCallback","features":[72]},{"name":"uregex_setRegion","features":[72]},{"name":"uregex_setRegion64","features":[72]},{"name":"uregex_setRegionAndStart","features":[72]},{"name":"uregex_setStackLimit","features":[72]},{"name":"uregex_setText","features":[72]},{"name":"uregex_setTimeLimit","features":[72]},{"name":"uregex_setUText","features":[72]},{"name":"uregex_split","features":[72]},{"name":"uregex_splitUText","features":[72]},{"name":"uregex_start","features":[72]},{"name":"uregex_start64","features":[72]},{"name":"uregex_useAnchoringBounds","features":[72]},{"name":"uregex_useTransparentBounds","features":[72]},{"name":"uregion_areEqual","features":[72]},{"name":"uregion_contains","features":[72]},{"name":"uregion_getAvailable","features":[72]},{"name":"uregion_getContainedRegions","features":[72]},{"name":"uregion_getContainedRegionsOfType","features":[72]},{"name":"uregion_getContainingRegion","features":[72]},{"name":"uregion_getContainingRegionOfType","features":[72]},{"name":"uregion_getNumericCode","features":[72]},{"name":"uregion_getPreferredValues","features":[72]},{"name":"uregion_getRegionCode","features":[72]},{"name":"uregion_getRegionFromCode","features":[72]},{"name":"uregion_getRegionFromNumericCode","features":[72]},{"name":"uregion_getType","features":[72]},{"name":"ureldatefmt_close","features":[72]},{"name":"ureldatefmt_closeResult","features":[72]},{"name":"ureldatefmt_combineDateAndTime","features":[72]},{"name":"ureldatefmt_format","features":[72]},{"name":"ureldatefmt_formatNumeric","features":[72]},{"name":"ureldatefmt_formatNumericToResult","features":[72]},{"name":"ureldatefmt_formatToResult","features":[72]},{"name":"ureldatefmt_open","features":[72]},{"name":"ureldatefmt_openResult","features":[72]},{"name":"ureldatefmt_resultAsValue","features":[72]},{"name":"ures_close","features":[72]},{"name":"ures_getBinary","features":[72]},{"name":"ures_getByIndex","features":[72]},{"name":"ures_getByKey","features":[72]},{"name":"ures_getInt","features":[72]},{"name":"ures_getIntVector","features":[72]},{"name":"ures_getKey","features":[72]},{"name":"ures_getLocaleByType","features":[72]},{"name":"ures_getNextResource","features":[72]},{"name":"ures_getNextString","features":[72]},{"name":"ures_getSize","features":[72]},{"name":"ures_getString","features":[72]},{"name":"ures_getStringByIndex","features":[72]},{"name":"ures_getStringByKey","features":[72]},{"name":"ures_getType","features":[72]},{"name":"ures_getUInt","features":[72]},{"name":"ures_getUTF8String","features":[72]},{"name":"ures_getUTF8StringByIndex","features":[72]},{"name":"ures_getUTF8StringByKey","features":[72]},{"name":"ures_getVersion","features":[72]},{"name":"ures_hasNext","features":[72]},{"name":"ures_open","features":[72]},{"name":"ures_openAvailableLocales","features":[72]},{"name":"ures_openDirect","features":[72]},{"name":"ures_openU","features":[72]},{"name":"ures_resetIterator","features":[72]},{"name":"uscript_breaksBetweenLetters","features":[72]},{"name":"uscript_getCode","features":[72]},{"name":"uscript_getName","features":[72]},{"name":"uscript_getSampleString","features":[72]},{"name":"uscript_getScript","features":[72]},{"name":"uscript_getScriptExtensions","features":[72]},{"name":"uscript_getShortName","features":[72]},{"name":"uscript_getUsage","features":[72]},{"name":"uscript_hasScript","features":[72]},{"name":"uscript_isCased","features":[72]},{"name":"uscript_isRightToLeft","features":[72]},{"name":"usearch_close","features":[72]},{"name":"usearch_first","features":[72]},{"name":"usearch_following","features":[72]},{"name":"usearch_getAttribute","features":[72]},{"name":"usearch_getBreakIterator","features":[72]},{"name":"usearch_getCollator","features":[72]},{"name":"usearch_getMatchedLength","features":[72]},{"name":"usearch_getMatchedStart","features":[72]},{"name":"usearch_getMatchedText","features":[72]},{"name":"usearch_getOffset","features":[72]},{"name":"usearch_getPattern","features":[72]},{"name":"usearch_getText","features":[72]},{"name":"usearch_last","features":[72]},{"name":"usearch_next","features":[72]},{"name":"usearch_open","features":[72]},{"name":"usearch_openFromCollator","features":[72]},{"name":"usearch_preceding","features":[72]},{"name":"usearch_previous","features":[72]},{"name":"usearch_reset","features":[72]},{"name":"usearch_setAttribute","features":[72]},{"name":"usearch_setBreakIterator","features":[72]},{"name":"usearch_setCollator","features":[72]},{"name":"usearch_setOffset","features":[72]},{"name":"usearch_setPattern","features":[72]},{"name":"usearch_setText","features":[72]},{"name":"uset_add","features":[72]},{"name":"uset_addAll","features":[72]},{"name":"uset_addAllCodePoints","features":[72]},{"name":"uset_addRange","features":[72]},{"name":"uset_addString","features":[72]},{"name":"uset_applyIntPropertyValue","features":[72]},{"name":"uset_applyPattern","features":[72]},{"name":"uset_applyPropertyAlias","features":[72]},{"name":"uset_charAt","features":[72]},{"name":"uset_clear","features":[72]},{"name":"uset_clone","features":[72]},{"name":"uset_cloneAsThawed","features":[72]},{"name":"uset_close","features":[72]},{"name":"uset_closeOver","features":[72]},{"name":"uset_compact","features":[72]},{"name":"uset_complement","features":[72]},{"name":"uset_complementAll","features":[72]},{"name":"uset_contains","features":[72]},{"name":"uset_containsAll","features":[72]},{"name":"uset_containsAllCodePoints","features":[72]},{"name":"uset_containsNone","features":[72]},{"name":"uset_containsRange","features":[72]},{"name":"uset_containsSome","features":[72]},{"name":"uset_containsString","features":[72]},{"name":"uset_equals","features":[72]},{"name":"uset_freeze","features":[72]},{"name":"uset_getItem","features":[72]},{"name":"uset_getItemCount","features":[72]},{"name":"uset_getSerializedRange","features":[72]},{"name":"uset_getSerializedRangeCount","features":[72]},{"name":"uset_getSerializedSet","features":[72]},{"name":"uset_indexOf","features":[72]},{"name":"uset_isEmpty","features":[72]},{"name":"uset_isFrozen","features":[72]},{"name":"uset_open","features":[72]},{"name":"uset_openEmpty","features":[72]},{"name":"uset_openPattern","features":[72]},{"name":"uset_openPatternOptions","features":[72]},{"name":"uset_remove","features":[72]},{"name":"uset_removeAll","features":[72]},{"name":"uset_removeAllStrings","features":[72]},{"name":"uset_removeRange","features":[72]},{"name":"uset_removeString","features":[72]},{"name":"uset_resemblesPattern","features":[72]},{"name":"uset_retain","features":[72]},{"name":"uset_retainAll","features":[72]},{"name":"uset_serialize","features":[72]},{"name":"uset_serializedContains","features":[72]},{"name":"uset_set","features":[72]},{"name":"uset_setSerializedToOne","features":[72]},{"name":"uset_size","features":[72]},{"name":"uset_span","features":[72]},{"name":"uset_spanBack","features":[72]},{"name":"uset_spanBackUTF8","features":[72]},{"name":"uset_spanUTF8","features":[72]},{"name":"uset_toPattern","features":[72]},{"name":"uspoof_areConfusable","features":[72]},{"name":"uspoof_areConfusableUTF8","features":[72]},{"name":"uspoof_check","features":[72]},{"name":"uspoof_check2","features":[72]},{"name":"uspoof_check2UTF8","features":[72]},{"name":"uspoof_checkUTF8","features":[72]},{"name":"uspoof_clone","features":[72]},{"name":"uspoof_close","features":[72]},{"name":"uspoof_closeCheckResult","features":[72]},{"name":"uspoof_getAllowedChars","features":[72]},{"name":"uspoof_getAllowedLocales","features":[72]},{"name":"uspoof_getCheckResultChecks","features":[72]},{"name":"uspoof_getCheckResultNumerics","features":[72]},{"name":"uspoof_getCheckResultRestrictionLevel","features":[72]},{"name":"uspoof_getChecks","features":[72]},{"name":"uspoof_getInclusionSet","features":[72]},{"name":"uspoof_getRecommendedSet","features":[72]},{"name":"uspoof_getRestrictionLevel","features":[72]},{"name":"uspoof_getSkeleton","features":[72]},{"name":"uspoof_getSkeletonUTF8","features":[72]},{"name":"uspoof_open","features":[72]},{"name":"uspoof_openCheckResult","features":[72]},{"name":"uspoof_openFromSerialized","features":[72]},{"name":"uspoof_openFromSource","features":[72]},{"name":"uspoof_serialize","features":[72]},{"name":"uspoof_setAllowedChars","features":[72]},{"name":"uspoof_setAllowedLocales","features":[72]},{"name":"uspoof_setChecks","features":[72]},{"name":"uspoof_setRestrictionLevel","features":[72]},{"name":"usprep_close","features":[72]},{"name":"usprep_open","features":[72]},{"name":"usprep_openByType","features":[72]},{"name":"usprep_prepare","features":[72]},{"name":"utext_char32At","features":[72]},{"name":"utext_clone","features":[72]},{"name":"utext_close","features":[72]},{"name":"utext_copy","features":[72]},{"name":"utext_current32","features":[72]},{"name":"utext_equals","features":[72]},{"name":"utext_extract","features":[72]},{"name":"utext_freeze","features":[72]},{"name":"utext_getNativeIndex","features":[72]},{"name":"utext_getPreviousNativeIndex","features":[72]},{"name":"utext_hasMetaData","features":[72]},{"name":"utext_isLengthExpensive","features":[72]},{"name":"utext_isWritable","features":[72]},{"name":"utext_moveIndex32","features":[72]},{"name":"utext_nativeLength","features":[72]},{"name":"utext_next32","features":[72]},{"name":"utext_next32From","features":[72]},{"name":"utext_openUChars","features":[72]},{"name":"utext_openUTF8","features":[72]},{"name":"utext_previous32","features":[72]},{"name":"utext_previous32From","features":[72]},{"name":"utext_replace","features":[72]},{"name":"utext_setNativeIndex","features":[72]},{"name":"utext_setup","features":[72]},{"name":"utf8_appendCharSafeBody","features":[72]},{"name":"utf8_back1SafeBody","features":[72]},{"name":"utf8_nextCharSafeBody","features":[72]},{"name":"utf8_prevCharSafeBody","features":[72]},{"name":"utmscale_fromInt64","features":[72]},{"name":"utmscale_getTimeScaleValue","features":[72]},{"name":"utmscale_toInt64","features":[72]},{"name":"utrace_format","features":[72]},{"name":"utrace_functionName","features":[72]},{"name":"utrace_getFunctions","features":[72]},{"name":"utrace_getLevel","features":[72]},{"name":"utrace_setFunctions","features":[72]},{"name":"utrace_setLevel","features":[72]},{"name":"utrace_vformat","features":[72]},{"name":"utrans_clone","features":[72]},{"name":"utrans_close","features":[72]},{"name":"utrans_countAvailableIDs","features":[72]},{"name":"utrans_getSourceSet","features":[72]},{"name":"utrans_getUnicodeID","features":[72]},{"name":"utrans_openIDs","features":[72]},{"name":"utrans_openInverse","features":[72]},{"name":"utrans_openU","features":[72]},{"name":"utrans_register","features":[72]},{"name":"utrans_setFilter","features":[72]},{"name":"utrans_toRules","features":[72]},{"name":"utrans_trans","features":[72]},{"name":"utrans_transIncremental","features":[72]},{"name":"utrans_transIncrementalUChars","features":[72]},{"name":"utrans_transUChars","features":[72]},{"name":"utrans_unregisterID","features":[72]}],"412":[{"name":"DWMFLIP3DWINDOWPOLICY","features":[73]},{"name":"DWMFLIP3D_DEFAULT","features":[73]},{"name":"DWMFLIP3D_EXCLUDEABOVE","features":[73]},{"name":"DWMFLIP3D_EXCLUDEBELOW","features":[73]},{"name":"DWMFLIP3D_LAST","features":[73]},{"name":"DWMNCRENDERINGPOLICY","features":[73]},{"name":"DWMNCRP_DISABLED","features":[73]},{"name":"DWMNCRP_ENABLED","features":[73]},{"name":"DWMNCRP_LAST","features":[73]},{"name":"DWMNCRP_USEWINDOWSTYLE","features":[73]},{"name":"DWMSBT_AUTO","features":[73]},{"name":"DWMSBT_MAINWINDOW","features":[73]},{"name":"DWMSBT_NONE","features":[73]},{"name":"DWMSBT_TABBEDWINDOW","features":[73]},{"name":"DWMSBT_TRANSIENTWINDOW","features":[73]},{"name":"DWMSC_ALL","features":[73]},{"name":"DWMSC_DOWN","features":[73]},{"name":"DWMSC_DRAG","features":[73]},{"name":"DWMSC_HOLD","features":[73]},{"name":"DWMSC_NONE","features":[73]},{"name":"DWMSC_PENBARREL","features":[73]},{"name":"DWMSC_UP","features":[73]},{"name":"DWMTRANSITION_OWNEDWINDOW_NULL","features":[73]},{"name":"DWMTRANSITION_OWNEDWINDOW_REPOSITION","features":[73]},{"name":"DWMTRANSITION_OWNEDWINDOW_TARGET","features":[73]},{"name":"DWMTWR_APP_COMPAT","features":[73]},{"name":"DWMTWR_GROUP_POLICY","features":[73]},{"name":"DWMTWR_IMPLEMENTED_BY_SYSTEM","features":[73]},{"name":"DWMTWR_NONE","features":[73]},{"name":"DWMTWR_TABBING_ENABLED","features":[73]},{"name":"DWMTWR_USER_POLICY","features":[73]},{"name":"DWMTWR_WINDOW_DWM_ATTRIBUTES","features":[73]},{"name":"DWMTWR_WINDOW_MARGINS","features":[73]},{"name":"DWMTWR_WINDOW_REGION","features":[73]},{"name":"DWMTWR_WINDOW_RELATIONSHIP","features":[73]},{"name":"DWMTWR_WINDOW_STYLES","features":[73]},{"name":"DWMWA_ALLOW_NCPAINT","features":[73]},{"name":"DWMWA_BORDER_COLOR","features":[73]},{"name":"DWMWA_CAPTION_BUTTON_BOUNDS","features":[73]},{"name":"DWMWA_CAPTION_COLOR","features":[73]},{"name":"DWMWA_CLOAK","features":[73]},{"name":"DWMWA_CLOAKED","features":[73]},{"name":"DWMWA_COLOR_DEFAULT","features":[73]},{"name":"DWMWA_COLOR_NONE","features":[73]},{"name":"DWMWA_DISALLOW_PEEK","features":[73]},{"name":"DWMWA_EXCLUDED_FROM_PEEK","features":[73]},{"name":"DWMWA_EXTENDED_FRAME_BOUNDS","features":[73]},{"name":"DWMWA_FLIP3D_POLICY","features":[73]},{"name":"DWMWA_FORCE_ICONIC_REPRESENTATION","features":[73]},{"name":"DWMWA_FREEZE_REPRESENTATION","features":[73]},{"name":"DWMWA_HAS_ICONIC_BITMAP","features":[73]},{"name":"DWMWA_LAST","features":[73]},{"name":"DWMWA_NCRENDERING_ENABLED","features":[73]},{"name":"DWMWA_NCRENDERING_POLICY","features":[73]},{"name":"DWMWA_NONCLIENT_RTL_LAYOUT","features":[73]},{"name":"DWMWA_PASSIVE_UPDATE_MODE","features":[73]},{"name":"DWMWA_SYSTEMBACKDROP_TYPE","features":[73]},{"name":"DWMWA_TEXT_COLOR","features":[73]},{"name":"DWMWA_TRANSITIONS_FORCEDISABLED","features":[73]},{"name":"DWMWA_USE_HOSTBACKDROPBRUSH","features":[73]},{"name":"DWMWA_USE_IMMERSIVE_DARK_MODE","features":[73]},{"name":"DWMWA_VISIBLE_FRAME_BORDER_THICKNESS","features":[73]},{"name":"DWMWA_WINDOW_CORNER_PREFERENCE","features":[73]},{"name":"DWMWCP_DEFAULT","features":[73]},{"name":"DWMWCP_DONOTROUND","features":[73]},{"name":"DWMWCP_ROUND","features":[73]},{"name":"DWMWCP_ROUNDSMALL","features":[73]},{"name":"DWMWINDOWATTRIBUTE","features":[73]},{"name":"DWM_BB_BLURREGION","features":[73]},{"name":"DWM_BB_ENABLE","features":[73]},{"name":"DWM_BB_TRANSITIONONMAXIMIZED","features":[73]},{"name":"DWM_BLURBEHIND","features":[3,73,14]},{"name":"DWM_CLOAKED_APP","features":[73]},{"name":"DWM_CLOAKED_INHERITED","features":[73]},{"name":"DWM_CLOAKED_SHELL","features":[73]},{"name":"DWM_EC_DISABLECOMPOSITION","features":[73]},{"name":"DWM_EC_ENABLECOMPOSITION","features":[73]},{"name":"DWM_FRAME_DURATION_DEFAULT","features":[73]},{"name":"DWM_PRESENT_PARAMETERS","features":[3,73]},{"name":"DWM_SHOWCONTACT","features":[73]},{"name":"DWM_SIT_DISPLAYFRAME","features":[73]},{"name":"DWM_SOURCE_FRAME_SAMPLING","features":[73]},{"name":"DWM_SOURCE_FRAME_SAMPLING_COVERAGE","features":[73]},{"name":"DWM_SOURCE_FRAME_SAMPLING_LAST","features":[73]},{"name":"DWM_SOURCE_FRAME_SAMPLING_POINT","features":[73]},{"name":"DWM_SYSTEMBACKDROP_TYPE","features":[73]},{"name":"DWM_TAB_WINDOW_REQUIREMENTS","features":[73]},{"name":"DWM_THUMBNAIL_PROPERTIES","features":[3,73]},{"name":"DWM_TIMING_INFO","features":[73]},{"name":"DWM_TNP_OPACITY","features":[73]},{"name":"DWM_TNP_RECTDESTINATION","features":[73]},{"name":"DWM_TNP_RECTSOURCE","features":[73]},{"name":"DWM_TNP_SOURCECLIENTAREAONLY","features":[73]},{"name":"DWM_TNP_VISIBLE","features":[73]},{"name":"DWM_WINDOW_CORNER_PREFERENCE","features":[73]},{"name":"DwmAttachMilContent","features":[3,73]},{"name":"DwmDefWindowProc","features":[3,73]},{"name":"DwmDetachMilContent","features":[3,73]},{"name":"DwmEnableBlurBehindWindow","features":[3,73,14]},{"name":"DwmEnableComposition","features":[73]},{"name":"DwmEnableMMCSS","features":[3,73]},{"name":"DwmExtendFrameIntoClientArea","features":[3,73,42]},{"name":"DwmFlush","features":[73]},{"name":"DwmGetColorizationColor","features":[3,73]},{"name":"DwmGetCompositionTimingInfo","features":[3,73]},{"name":"DwmGetGraphicsStreamClient","features":[73]},{"name":"DwmGetGraphicsStreamTransformHint","features":[73]},{"name":"DwmGetTransportAttributes","features":[3,73]},{"name":"DwmGetUnmetTabRequirements","features":[3,73]},{"name":"DwmGetWindowAttribute","features":[3,73]},{"name":"DwmInvalidateIconicBitmaps","features":[3,73]},{"name":"DwmIsCompositionEnabled","features":[3,73]},{"name":"DwmModifyPreviousDxFrameDuration","features":[3,73]},{"name":"DwmQueryThumbnailSourceSize","features":[3,73]},{"name":"DwmRegisterThumbnail","features":[3,73]},{"name":"DwmRenderGesture","features":[3,73]},{"name":"DwmSetDxFrameDuration","features":[3,73]},{"name":"DwmSetIconicLivePreviewBitmap","features":[3,73,14]},{"name":"DwmSetIconicThumbnail","features":[3,73,14]},{"name":"DwmSetPresentParameters","features":[3,73]},{"name":"DwmSetWindowAttribute","features":[3,73]},{"name":"DwmShowContact","features":[73]},{"name":"DwmTetherContact","features":[3,73]},{"name":"DwmTransitionOwnedWindow","features":[3,73]},{"name":"DwmUnregisterThumbnail","features":[73]},{"name":"DwmUpdateThumbnailProperties","features":[3,73]},{"name":"GESTURE_TYPE","features":[73]},{"name":"GT_PEN_DOUBLETAP","features":[73]},{"name":"GT_PEN_PRESSANDHOLD","features":[73]},{"name":"GT_PEN_PRESSANDHOLDABORT","features":[73]},{"name":"GT_PEN_RIGHTTAP","features":[73]},{"name":"GT_PEN_TAP","features":[73]},{"name":"GT_TOUCH_DOUBLETAP","features":[73]},{"name":"GT_TOUCH_PRESSANDHOLD","features":[73]},{"name":"GT_TOUCH_PRESSANDHOLDABORT","features":[73]},{"name":"GT_TOUCH_PRESSANDTAP","features":[73]},{"name":"GT_TOUCH_RIGHTTAP","features":[73]},{"name":"GT_TOUCH_TAP","features":[73]},{"name":"MilMatrix3x2D","features":[73]},{"name":"UNSIGNED_RATIO","features":[73]},{"name":"c_DwmMaxAdapters","features":[73]},{"name":"c_DwmMaxMonitors","features":[73]},{"name":"c_DwmMaxQueuedBuffers","features":[73]}],"415":[{"name":"ABC","features":[14]},{"name":"ABCFLOAT","features":[14]},{"name":"ABORTDOC","features":[14]},{"name":"ABORTPATH","features":[14]},{"name":"ABSOLUTE","features":[14]},{"name":"AC_SRC_ALPHA","features":[14]},{"name":"AC_SRC_OVER","features":[14]},{"name":"AD_CLOCKWISE","features":[14]},{"name":"AD_COUNTERCLOCKWISE","features":[14]},{"name":"ALTERNATE","features":[14]},{"name":"ANSI_CHARSET","features":[14]},{"name":"ANSI_FIXED_FONT","features":[14]},{"name":"ANSI_VAR_FONT","features":[14]},{"name":"ANTIALIASED_QUALITY","features":[14]},{"name":"ARABIC_CHARSET","features":[14]},{"name":"ARC_DIRECTION","features":[14]},{"name":"ASPECTX","features":[14]},{"name":"ASPECTXY","features":[14]},{"name":"ASPECTY","features":[14]},{"name":"ASPECT_FILTERING","features":[14]},{"name":"AXESLISTA","features":[14]},{"name":"AXESLISTW","features":[14]},{"name":"AXISINFOA","features":[14]},{"name":"AXISINFOW","features":[14]},{"name":"AbortPath","features":[3,14]},{"name":"AddFontMemResourceEx","features":[3,14]},{"name":"AddFontResourceA","features":[14]},{"name":"AddFontResourceExA","features":[14]},{"name":"AddFontResourceExW","features":[14]},{"name":"AddFontResourceW","features":[14]},{"name":"AlphaBlend","features":[3,14]},{"name":"AngleArc","features":[3,14]},{"name":"AnimatePalette","features":[3,14]},{"name":"Arc","features":[3,14]},{"name":"ArcTo","features":[3,14]},{"name":"BACKGROUND_MODE","features":[14]},{"name":"BALTIC_CHARSET","features":[14]},{"name":"BANDINFO","features":[14]},{"name":"BDR_INNER","features":[14]},{"name":"BDR_OUTER","features":[14]},{"name":"BDR_RAISED","features":[14]},{"name":"BDR_RAISEDINNER","features":[14]},{"name":"BDR_RAISEDOUTER","features":[14]},{"name":"BDR_SUNKEN","features":[14]},{"name":"BDR_SUNKENINNER","features":[14]},{"name":"BDR_SUNKENOUTER","features":[14]},{"name":"BEGIN_PATH","features":[14]},{"name":"BF_ADJUST","features":[14]},{"name":"BF_BOTTOM","features":[14]},{"name":"BF_BOTTOMLEFT","features":[14]},{"name":"BF_BOTTOMRIGHT","features":[14]},{"name":"BF_DIAGONAL","features":[14]},{"name":"BF_DIAGONAL_ENDBOTTOMLEFT","features":[14]},{"name":"BF_DIAGONAL_ENDBOTTOMRIGHT","features":[14]},{"name":"BF_DIAGONAL_ENDTOPLEFT","features":[14]},{"name":"BF_DIAGONAL_ENDTOPRIGHT","features":[14]},{"name":"BF_FLAT","features":[14]},{"name":"BF_LEFT","features":[14]},{"name":"BF_MIDDLE","features":[14]},{"name":"BF_MONO","features":[14]},{"name":"BF_RECT","features":[14]},{"name":"BF_RIGHT","features":[14]},{"name":"BF_SOFT","features":[14]},{"name":"BF_TOP","features":[14]},{"name":"BF_TOPLEFT","features":[14]},{"name":"BF_TOPRIGHT","features":[14]},{"name":"BITMAP","features":[14]},{"name":"BITMAPCOREHEADER","features":[14]},{"name":"BITMAPCOREINFO","features":[14]},{"name":"BITMAPFILEHEADER","features":[14]},{"name":"BITMAPINFO","features":[14]},{"name":"BITMAPINFOHEADER","features":[14]},{"name":"BITMAPV4HEADER","features":[14]},{"name":"BITMAPV5HEADER","features":[14]},{"name":"BITSPIXEL","features":[14]},{"name":"BI_BITFIELDS","features":[14]},{"name":"BI_COMPRESSION","features":[14]},{"name":"BI_JPEG","features":[14]},{"name":"BI_PNG","features":[14]},{"name":"BI_RGB","features":[14]},{"name":"BI_RLE4","features":[14]},{"name":"BI_RLE8","features":[14]},{"name":"BKMODE_LAST","features":[14]},{"name":"BLACKNESS","features":[14]},{"name":"BLACKONWHITE","features":[14]},{"name":"BLACK_BRUSH","features":[14]},{"name":"BLACK_PEN","features":[14]},{"name":"BLENDFUNCTION","features":[14]},{"name":"BLTALIGNMENT","features":[14]},{"name":"BRUSH_STYLE","features":[14]},{"name":"BS_DIBPATTERN","features":[14]},{"name":"BS_DIBPATTERN8X8","features":[14]},{"name":"BS_DIBPATTERNPT","features":[14]},{"name":"BS_HATCHED","features":[14]},{"name":"BS_HOLLOW","features":[14]},{"name":"BS_INDEXED","features":[14]},{"name":"BS_MONOPATTERN","features":[14]},{"name":"BS_NULL","features":[14]},{"name":"BS_PATTERN","features":[14]},{"name":"BS_PATTERN8X8","features":[14]},{"name":"BS_SOLID","features":[14]},{"name":"BeginPaint","features":[3,14]},{"name":"BeginPath","features":[3,14]},{"name":"BitBlt","features":[3,14]},{"name":"CAPTUREBLT","features":[14]},{"name":"CA_LOG_FILTER","features":[14]},{"name":"CA_NEGATIVE","features":[14]},{"name":"CBM_INIT","features":[14]},{"name":"CCHFORMNAME","features":[14]},{"name":"CC_CHORD","features":[14]},{"name":"CC_CIRCLES","features":[14]},{"name":"CC_ELLIPSES","features":[14]},{"name":"CC_INTERIORS","features":[14]},{"name":"CC_NONE","features":[14]},{"name":"CC_PIE","features":[14]},{"name":"CC_ROUNDRECT","features":[14]},{"name":"CC_STYLED","features":[14]},{"name":"CC_WIDE","features":[14]},{"name":"CC_WIDESTYLED","features":[14]},{"name":"CDS_DISABLE_UNSAFE_MODES","features":[14]},{"name":"CDS_ENABLE_UNSAFE_MODES","features":[14]},{"name":"CDS_FULLSCREEN","features":[14]},{"name":"CDS_GLOBAL","features":[14]},{"name":"CDS_NORESET","features":[14]},{"name":"CDS_RESET","features":[14]},{"name":"CDS_RESET_EX","features":[14]},{"name":"CDS_SET_PRIMARY","features":[14]},{"name":"CDS_TEST","features":[14]},{"name":"CDS_TYPE","features":[14]},{"name":"CDS_UPDATEREGISTRY","features":[14]},{"name":"CDS_VIDEOPARAMETERS","features":[14]},{"name":"CFP_ALLOCPROC","features":[14]},{"name":"CFP_FREEPROC","features":[14]},{"name":"CFP_REALLOCPROC","features":[14]},{"name":"CHARSET_DEFAULT","features":[14]},{"name":"CHARSET_GLYPHIDX","features":[14]},{"name":"CHARSET_SYMBOL","features":[14]},{"name":"CHARSET_UNICODE","features":[14]},{"name":"CHECKJPEGFORMAT","features":[14]},{"name":"CHECKPNGFORMAT","features":[14]},{"name":"CHINESEBIG5_CHARSET","features":[14]},{"name":"CIEXYZ","features":[14]},{"name":"CIEXYZTRIPLE","features":[14]},{"name":"CLEARTYPE_NATURAL_QUALITY","features":[14]},{"name":"CLEARTYPE_QUALITY","features":[14]},{"name":"CLIPCAPS","features":[14]},{"name":"CLIP_CHARACTER_PRECIS","features":[14]},{"name":"CLIP_DEFAULT_PRECIS","features":[14]},{"name":"CLIP_DFA_DISABLE","features":[14]},{"name":"CLIP_DFA_OVERRIDE","features":[14]},{"name":"CLIP_EMBEDDED","features":[14]},{"name":"CLIP_LH_ANGLES","features":[14]},{"name":"CLIP_MASK","features":[14]},{"name":"CLIP_STROKE_PRECIS","features":[14]},{"name":"CLIP_TO_PATH","features":[14]},{"name":"CLIP_TT_ALWAYS","features":[14]},{"name":"CLOSECHANNEL","features":[14]},{"name":"CLR_INVALID","features":[14]},{"name":"CM_CMYK_COLOR","features":[14]},{"name":"CM_DEVICE_ICM","features":[14]},{"name":"CM_GAMMA_RAMP","features":[14]},{"name":"CM_IN_GAMUT","features":[14]},{"name":"CM_NONE","features":[14]},{"name":"CM_OUT_OF_GAMUT","features":[14]},{"name":"COLORADJUSTMENT","features":[14]},{"name":"COLORMATCHTOTARGET_EMBEDED","features":[14]},{"name":"COLORMGMTCAPS","features":[14]},{"name":"COLORONCOLOR","features":[14]},{"name":"COLORRES","features":[14]},{"name":"COLOR_3DDKSHADOW","features":[14]},{"name":"COLOR_3DFACE","features":[14]},{"name":"COLOR_3DHIGHLIGHT","features":[14]},{"name":"COLOR_3DHILIGHT","features":[14]},{"name":"COLOR_3DLIGHT","features":[14]},{"name":"COLOR_3DSHADOW","features":[14]},{"name":"COLOR_ACTIVEBORDER","features":[14]},{"name":"COLOR_ACTIVECAPTION","features":[14]},{"name":"COLOR_APPWORKSPACE","features":[14]},{"name":"COLOR_BACKGROUND","features":[14]},{"name":"COLOR_BTNFACE","features":[14]},{"name":"COLOR_BTNHIGHLIGHT","features":[14]},{"name":"COLOR_BTNHILIGHT","features":[14]},{"name":"COLOR_BTNSHADOW","features":[14]},{"name":"COLOR_BTNTEXT","features":[14]},{"name":"COLOR_CAPTIONTEXT","features":[14]},{"name":"COLOR_DESKTOP","features":[14]},{"name":"COLOR_GRADIENTACTIVECAPTION","features":[14]},{"name":"COLOR_GRADIENTINACTIVECAPTION","features":[14]},{"name":"COLOR_GRAYTEXT","features":[14]},{"name":"COLOR_HIGHLIGHT","features":[14]},{"name":"COLOR_HIGHLIGHTTEXT","features":[14]},{"name":"COLOR_HOTLIGHT","features":[14]},{"name":"COLOR_INACTIVEBORDER","features":[14]},{"name":"COLOR_INACTIVECAPTION","features":[14]},{"name":"COLOR_INACTIVECAPTIONTEXT","features":[14]},{"name":"COLOR_INFOBK","features":[14]},{"name":"COLOR_INFOTEXT","features":[14]},{"name":"COLOR_MENU","features":[14]},{"name":"COLOR_MENUBAR","features":[14]},{"name":"COLOR_MENUHILIGHT","features":[14]},{"name":"COLOR_MENUTEXT","features":[14]},{"name":"COLOR_SCROLLBAR","features":[14]},{"name":"COLOR_WINDOW","features":[14]},{"name":"COLOR_WINDOWFRAME","features":[14]},{"name":"COLOR_WINDOWTEXT","features":[14]},{"name":"COMPLEXREGION","features":[14]},{"name":"CP_NONE","features":[14]},{"name":"CP_RECTANGLE","features":[14]},{"name":"CP_REGION","features":[14]},{"name":"CREATECOLORSPACE_EMBEDED","features":[14]},{"name":"CREATE_FONT_PACKAGE_SUBSET_ENCODING","features":[14]},{"name":"CREATE_FONT_PACKAGE_SUBSET_PLATFORM","features":[14]},{"name":"CREATE_POLYGON_RGN_MODE","features":[14]},{"name":"CURVECAPS","features":[14]},{"name":"CancelDC","features":[3,14]},{"name":"ChangeDisplaySettingsA","features":[3,14]},{"name":"ChangeDisplaySettingsExA","features":[3,14]},{"name":"ChangeDisplaySettingsExW","features":[3,14]},{"name":"ChangeDisplaySettingsW","features":[3,14]},{"name":"Chord","features":[3,14]},{"name":"ClientToScreen","features":[3,14]},{"name":"CloseEnhMetaFile","features":[14]},{"name":"CloseFigure","features":[3,14]},{"name":"CloseMetaFile","features":[14]},{"name":"CombineRgn","features":[14]},{"name":"CombineTransform","features":[3,14]},{"name":"CopyEnhMetaFileA","features":[14]},{"name":"CopyEnhMetaFileW","features":[14]},{"name":"CopyMetaFileA","features":[14]},{"name":"CopyMetaFileW","features":[14]},{"name":"CopyRect","features":[3,14]},{"name":"CreateBitmap","features":[14]},{"name":"CreateBitmapIndirect","features":[14]},{"name":"CreateBrushIndirect","features":[3,14]},{"name":"CreateCompatibleBitmap","features":[14]},{"name":"CreateCompatibleDC","features":[14]},{"name":"CreateDCA","features":[3,14]},{"name":"CreateDCW","features":[3,14]},{"name":"CreateDIBPatternBrush","features":[3,14]},{"name":"CreateDIBPatternBrushPt","features":[14]},{"name":"CreateDIBSection","features":[3,14]},{"name":"CreateDIBitmap","features":[14]},{"name":"CreateDiscardableBitmap","features":[14]},{"name":"CreateEllipticRgn","features":[14]},{"name":"CreateEllipticRgnIndirect","features":[3,14]},{"name":"CreateEnhMetaFileA","features":[3,14]},{"name":"CreateEnhMetaFileW","features":[3,14]},{"name":"CreateFontA","features":[14]},{"name":"CreateFontIndirectA","features":[14]},{"name":"CreateFontIndirectExA","features":[14]},{"name":"CreateFontIndirectExW","features":[14]},{"name":"CreateFontIndirectW","features":[14]},{"name":"CreateFontPackage","features":[14]},{"name":"CreateFontW","features":[14]},{"name":"CreateHalftonePalette","features":[14]},{"name":"CreateHatchBrush","features":[3,14]},{"name":"CreateICA","features":[3,14]},{"name":"CreateICW","features":[3,14]},{"name":"CreateMetaFileA","features":[14]},{"name":"CreateMetaFileW","features":[14]},{"name":"CreatePalette","features":[14]},{"name":"CreatePatternBrush","features":[14]},{"name":"CreatePen","features":[3,14]},{"name":"CreatePenIndirect","features":[3,14]},{"name":"CreatePolyPolygonRgn","features":[3,14]},{"name":"CreatePolygonRgn","features":[3,14]},{"name":"CreateRectRgn","features":[14]},{"name":"CreateRectRgnIndirect","features":[3,14]},{"name":"CreateRoundRectRgn","features":[14]},{"name":"CreateScalableFontResourceA","features":[3,14]},{"name":"CreateScalableFontResourceW","features":[3,14]},{"name":"CreateSolidBrush","features":[3,14]},{"name":"DCBA_FACEDOWNCENTER","features":[14]},{"name":"DCBA_FACEDOWNLEFT","features":[14]},{"name":"DCBA_FACEDOWNNONE","features":[14]},{"name":"DCBA_FACEDOWNRIGHT","features":[14]},{"name":"DCBA_FACEUPCENTER","features":[14]},{"name":"DCBA_FACEUPLEFT","features":[14]},{"name":"DCBA_FACEUPNONE","features":[14]},{"name":"DCBA_FACEUPRIGHT","features":[14]},{"name":"DCB_ACCUMULATE","features":[14]},{"name":"DCB_DISABLE","features":[14]},{"name":"DCB_ENABLE","features":[14]},{"name":"DCB_RESET","features":[14]},{"name":"DCTT_BITMAP","features":[14]},{"name":"DCTT_DOWNLOAD","features":[14]},{"name":"DCTT_DOWNLOAD_OUTLINE","features":[14]},{"name":"DCTT_SUBDEV","features":[14]},{"name":"DCX_CACHE","features":[14]},{"name":"DCX_CLIPCHILDREN","features":[14]},{"name":"DCX_CLIPSIBLINGS","features":[14]},{"name":"DCX_EXCLUDERGN","features":[14]},{"name":"DCX_INTERSECTRGN","features":[14]},{"name":"DCX_INTERSECTUPDATE","features":[14]},{"name":"DCX_LOCKWINDOWUPDATE","features":[14]},{"name":"DCX_NORESETATTRS","features":[14]},{"name":"DCX_PARENTCLIP","features":[14]},{"name":"DCX_VALIDATE","features":[14]},{"name":"DCX_WINDOW","features":[14]},{"name":"DC_ACTIVE","features":[14]},{"name":"DC_BINADJUST","features":[14]},{"name":"DC_BRUSH","features":[14]},{"name":"DC_BUTTONS","features":[14]},{"name":"DC_DATATYPE_PRODUCED","features":[14]},{"name":"DC_EMF_COMPLIANT","features":[14]},{"name":"DC_GRADIENT","features":[14]},{"name":"DC_ICON","features":[14]},{"name":"DC_INBUTTON","features":[14]},{"name":"DC_LAYOUT","features":[14]},{"name":"DC_MANUFACTURER","features":[14]},{"name":"DC_MODEL","features":[14]},{"name":"DC_PEN","features":[14]},{"name":"DC_SMALLCAP","features":[14]},{"name":"DC_TEXT","features":[14]},{"name":"DEFAULT_CHARSET","features":[14]},{"name":"DEFAULT_GUI_FONT","features":[14]},{"name":"DEFAULT_PALETTE","features":[14]},{"name":"DEFAULT_PITCH","features":[14]},{"name":"DEFAULT_QUALITY","features":[14]},{"name":"DESIGNVECTOR","features":[14]},{"name":"DESKTOPHORZRES","features":[14]},{"name":"DESKTOPVERTRES","features":[14]},{"name":"DEVICEDATA","features":[14]},{"name":"DEVICE_DEFAULT_FONT","features":[14]},{"name":"DEVICE_FONTTYPE","features":[14]},{"name":"DEVMODEA","features":[3,14]},{"name":"DEVMODEW","features":[3,14]},{"name":"DEVMODE_COLLATE","features":[14]},{"name":"DEVMODE_COLOR","features":[14]},{"name":"DEVMODE_DISPLAY_FIXED_OUTPUT","features":[14]},{"name":"DEVMODE_DISPLAY_ORIENTATION","features":[14]},{"name":"DEVMODE_DUPLEX","features":[14]},{"name":"DEVMODE_FIELD_FLAGS","features":[14]},{"name":"DEVMODE_TRUETYPE_OPTION","features":[14]},{"name":"DFCS_ADJUSTRECT","features":[14]},{"name":"DFCS_BUTTON3STATE","features":[14]},{"name":"DFCS_BUTTONCHECK","features":[14]},{"name":"DFCS_BUTTONPUSH","features":[14]},{"name":"DFCS_BUTTONRADIO","features":[14]},{"name":"DFCS_BUTTONRADIOIMAGE","features":[14]},{"name":"DFCS_BUTTONRADIOMASK","features":[14]},{"name":"DFCS_CAPTIONCLOSE","features":[14]},{"name":"DFCS_CAPTIONHELP","features":[14]},{"name":"DFCS_CAPTIONMAX","features":[14]},{"name":"DFCS_CAPTIONMIN","features":[14]},{"name":"DFCS_CAPTIONRESTORE","features":[14]},{"name":"DFCS_CHECKED","features":[14]},{"name":"DFCS_FLAT","features":[14]},{"name":"DFCS_HOT","features":[14]},{"name":"DFCS_INACTIVE","features":[14]},{"name":"DFCS_MENUARROW","features":[14]},{"name":"DFCS_MENUARROWRIGHT","features":[14]},{"name":"DFCS_MENUBULLET","features":[14]},{"name":"DFCS_MENUCHECK","features":[14]},{"name":"DFCS_MONO","features":[14]},{"name":"DFCS_PUSHED","features":[14]},{"name":"DFCS_SCROLLCOMBOBOX","features":[14]},{"name":"DFCS_SCROLLDOWN","features":[14]},{"name":"DFCS_SCROLLLEFT","features":[14]},{"name":"DFCS_SCROLLRIGHT","features":[14]},{"name":"DFCS_SCROLLSIZEGRIP","features":[14]},{"name":"DFCS_SCROLLSIZEGRIPRIGHT","features":[14]},{"name":"DFCS_SCROLLUP","features":[14]},{"name":"DFCS_STATE","features":[14]},{"name":"DFCS_TRANSPARENT","features":[14]},{"name":"DFC_BUTTON","features":[14]},{"name":"DFC_CAPTION","features":[14]},{"name":"DFC_MENU","features":[14]},{"name":"DFC_POPUPMENU","features":[14]},{"name":"DFC_SCROLL","features":[14]},{"name":"DFC_TYPE","features":[14]},{"name":"DIBSECTION","features":[3,14]},{"name":"DIB_PAL_COLORS","features":[14]},{"name":"DIB_RGB_COLORS","features":[14]},{"name":"DIB_USAGE","features":[14]},{"name":"DISPLAYCONFIG_COLOR_ENCODING","features":[14]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_INTENSITY","features":[14]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_RGB","features":[14]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR420","features":[14]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR422","features":[14]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR444","features":[14]},{"name":"DISPLAYCONFIG_MAXPATH","features":[14]},{"name":"DISPLAYCONFIG_PATH_ACTIVE","features":[14]},{"name":"DISPLAYCONFIG_PATH_CLONE_GROUP_INVALID","features":[14]},{"name":"DISPLAYCONFIG_PATH_DESKTOP_IMAGE_IDX_INVALID","features":[14]},{"name":"DISPLAYCONFIG_PATH_MODE_IDX_INVALID","features":[14]},{"name":"DISPLAYCONFIG_PATH_PREFERRED_UNSCALED","features":[14]},{"name":"DISPLAYCONFIG_PATH_SOURCE_MODE_IDX_INVALID","features":[14]},{"name":"DISPLAYCONFIG_PATH_SUPPORT_VIRTUAL_MODE","features":[14]},{"name":"DISPLAYCONFIG_PATH_TARGET_MODE_IDX_INVALID","features":[14]},{"name":"DISPLAYCONFIG_PATH_VALID_FLAGS","features":[14]},{"name":"DISPLAYCONFIG_SOURCE_IN_USE","features":[14]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_BOOT","features":[14]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_PATH","features":[14]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_SYSTEM","features":[14]},{"name":"DISPLAYCONFIG_TARGET_FORCIBLE","features":[14]},{"name":"DISPLAYCONFIG_TARGET_IN_USE","features":[14]},{"name":"DISPLAYCONFIG_TARGET_IS_HMD","features":[14]},{"name":"DISPLAY_DEVICEA","features":[14]},{"name":"DISPLAY_DEVICEW","features":[14]},{"name":"DISPLAY_DEVICE_ACC_DRIVER","features":[14]},{"name":"DISPLAY_DEVICE_ACTIVE","features":[14]},{"name":"DISPLAY_DEVICE_ATTACHED","features":[14]},{"name":"DISPLAY_DEVICE_ATTACHED_TO_DESKTOP","features":[14]},{"name":"DISPLAY_DEVICE_DISCONNECT","features":[14]},{"name":"DISPLAY_DEVICE_MIRRORING_DRIVER","features":[14]},{"name":"DISPLAY_DEVICE_MODESPRUNED","features":[14]},{"name":"DISPLAY_DEVICE_MULTI_DRIVER","features":[14]},{"name":"DISPLAY_DEVICE_PRIMARY_DEVICE","features":[14]},{"name":"DISPLAY_DEVICE_RDPUDD","features":[14]},{"name":"DISPLAY_DEVICE_REMOTE","features":[14]},{"name":"DISPLAY_DEVICE_REMOVABLE","features":[14]},{"name":"DISPLAY_DEVICE_TS_COMPATIBLE","features":[14]},{"name":"DISPLAY_DEVICE_UNSAFE_MODES_ON","features":[14]},{"name":"DISPLAY_DEVICE_VGA_COMPATIBLE","features":[14]},{"name":"DISP_CHANGE","features":[14]},{"name":"DISP_CHANGE_BADDUALVIEW","features":[14]},{"name":"DISP_CHANGE_BADFLAGS","features":[14]},{"name":"DISP_CHANGE_BADMODE","features":[14]},{"name":"DISP_CHANGE_BADPARAM","features":[14]},{"name":"DISP_CHANGE_FAILED","features":[14]},{"name":"DISP_CHANGE_NOTUPDATED","features":[14]},{"name":"DISP_CHANGE_RESTART","features":[14]},{"name":"DISP_CHANGE_SUCCESSFUL","features":[14]},{"name":"DI_APPBANDING","features":[14]},{"name":"DI_ROPS_READ_DESTINATION","features":[14]},{"name":"DKGRAY_BRUSH","features":[14]},{"name":"DMBIN_AUTO","features":[14]},{"name":"DMBIN_CASSETTE","features":[14]},{"name":"DMBIN_ENVELOPE","features":[14]},{"name":"DMBIN_ENVMANUAL","features":[14]},{"name":"DMBIN_FORMSOURCE","features":[14]},{"name":"DMBIN_LARGECAPACITY","features":[14]},{"name":"DMBIN_LARGEFMT","features":[14]},{"name":"DMBIN_LAST","features":[14]},{"name":"DMBIN_LOWER","features":[14]},{"name":"DMBIN_MANUAL","features":[14]},{"name":"DMBIN_MIDDLE","features":[14]},{"name":"DMBIN_ONLYONE","features":[14]},{"name":"DMBIN_SMALLFMT","features":[14]},{"name":"DMBIN_TRACTOR","features":[14]},{"name":"DMBIN_UPPER","features":[14]},{"name":"DMBIN_USER","features":[14]},{"name":"DMCOLLATE_FALSE","features":[14]},{"name":"DMCOLLATE_TRUE","features":[14]},{"name":"DMCOLOR_COLOR","features":[14]},{"name":"DMCOLOR_MONOCHROME","features":[14]},{"name":"DMDFO_CENTER","features":[14]},{"name":"DMDFO_DEFAULT","features":[14]},{"name":"DMDFO_STRETCH","features":[14]},{"name":"DMDISPLAYFLAGS_TEXTMODE","features":[14]},{"name":"DMDITHER_COARSE","features":[14]},{"name":"DMDITHER_ERRORDIFFUSION","features":[14]},{"name":"DMDITHER_FINE","features":[14]},{"name":"DMDITHER_GRAYSCALE","features":[14]},{"name":"DMDITHER_LINEART","features":[14]},{"name":"DMDITHER_NONE","features":[14]},{"name":"DMDITHER_RESERVED6","features":[14]},{"name":"DMDITHER_RESERVED7","features":[14]},{"name":"DMDITHER_RESERVED8","features":[14]},{"name":"DMDITHER_RESERVED9","features":[14]},{"name":"DMDITHER_USER","features":[14]},{"name":"DMDO_180","features":[14]},{"name":"DMDO_270","features":[14]},{"name":"DMDO_90","features":[14]},{"name":"DMDO_DEFAULT","features":[14]},{"name":"DMDUP_HORIZONTAL","features":[14]},{"name":"DMDUP_SIMPLEX","features":[14]},{"name":"DMDUP_VERTICAL","features":[14]},{"name":"DMICMMETHOD_DEVICE","features":[14]},{"name":"DMICMMETHOD_DRIVER","features":[14]},{"name":"DMICMMETHOD_NONE","features":[14]},{"name":"DMICMMETHOD_SYSTEM","features":[14]},{"name":"DMICMMETHOD_USER","features":[14]},{"name":"DMICM_ABS_COLORIMETRIC","features":[14]},{"name":"DMICM_COLORIMETRIC","features":[14]},{"name":"DMICM_CONTRAST","features":[14]},{"name":"DMICM_SATURATE","features":[14]},{"name":"DMICM_USER","features":[14]},{"name":"DMMEDIA_GLOSSY","features":[14]},{"name":"DMMEDIA_STANDARD","features":[14]},{"name":"DMMEDIA_TRANSPARENCY","features":[14]},{"name":"DMMEDIA_USER","features":[14]},{"name":"DMNUP_ONEUP","features":[14]},{"name":"DMNUP_SYSTEM","features":[14]},{"name":"DMORIENT_LANDSCAPE","features":[14]},{"name":"DMORIENT_PORTRAIT","features":[14]},{"name":"DMPAPER_10X11","features":[14]},{"name":"DMPAPER_10X14","features":[14]},{"name":"DMPAPER_11X17","features":[14]},{"name":"DMPAPER_12X11","features":[14]},{"name":"DMPAPER_15X11","features":[14]},{"name":"DMPAPER_9X11","features":[14]},{"name":"DMPAPER_A2","features":[14]},{"name":"DMPAPER_A3","features":[14]},{"name":"DMPAPER_A3_EXTRA","features":[14]},{"name":"DMPAPER_A3_EXTRA_TRANSVERSE","features":[14]},{"name":"DMPAPER_A3_ROTATED","features":[14]},{"name":"DMPAPER_A3_TRANSVERSE","features":[14]},{"name":"DMPAPER_A4","features":[14]},{"name":"DMPAPER_A4SMALL","features":[14]},{"name":"DMPAPER_A4_EXTRA","features":[14]},{"name":"DMPAPER_A4_PLUS","features":[14]},{"name":"DMPAPER_A4_ROTATED","features":[14]},{"name":"DMPAPER_A4_TRANSVERSE","features":[14]},{"name":"DMPAPER_A5","features":[14]},{"name":"DMPAPER_A5_EXTRA","features":[14]},{"name":"DMPAPER_A5_ROTATED","features":[14]},{"name":"DMPAPER_A5_TRANSVERSE","features":[14]},{"name":"DMPAPER_A6","features":[14]},{"name":"DMPAPER_A6_ROTATED","features":[14]},{"name":"DMPAPER_A_PLUS","features":[14]},{"name":"DMPAPER_B4","features":[14]},{"name":"DMPAPER_B4_JIS_ROTATED","features":[14]},{"name":"DMPAPER_B5","features":[14]},{"name":"DMPAPER_B5_EXTRA","features":[14]},{"name":"DMPAPER_B5_JIS_ROTATED","features":[14]},{"name":"DMPAPER_B5_TRANSVERSE","features":[14]},{"name":"DMPAPER_B6_JIS","features":[14]},{"name":"DMPAPER_B6_JIS_ROTATED","features":[14]},{"name":"DMPAPER_B_PLUS","features":[14]},{"name":"DMPAPER_CSHEET","features":[14]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD","features":[14]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED","features":[14]},{"name":"DMPAPER_DSHEET","features":[14]},{"name":"DMPAPER_ENV_10","features":[14]},{"name":"DMPAPER_ENV_11","features":[14]},{"name":"DMPAPER_ENV_12","features":[14]},{"name":"DMPAPER_ENV_14","features":[14]},{"name":"DMPAPER_ENV_9","features":[14]},{"name":"DMPAPER_ENV_B4","features":[14]},{"name":"DMPAPER_ENV_B5","features":[14]},{"name":"DMPAPER_ENV_B6","features":[14]},{"name":"DMPAPER_ENV_C3","features":[14]},{"name":"DMPAPER_ENV_C4","features":[14]},{"name":"DMPAPER_ENV_C5","features":[14]},{"name":"DMPAPER_ENV_C6","features":[14]},{"name":"DMPAPER_ENV_C65","features":[14]},{"name":"DMPAPER_ENV_DL","features":[14]},{"name":"DMPAPER_ENV_INVITE","features":[14]},{"name":"DMPAPER_ENV_ITALY","features":[14]},{"name":"DMPAPER_ENV_MONARCH","features":[14]},{"name":"DMPAPER_ENV_PERSONAL","features":[14]},{"name":"DMPAPER_ESHEET","features":[14]},{"name":"DMPAPER_EXECUTIVE","features":[14]},{"name":"DMPAPER_FANFOLD_LGL_GERMAN","features":[14]},{"name":"DMPAPER_FANFOLD_STD_GERMAN","features":[14]},{"name":"DMPAPER_FANFOLD_US","features":[14]},{"name":"DMPAPER_FOLIO","features":[14]},{"name":"DMPAPER_ISO_B4","features":[14]},{"name":"DMPAPER_JAPANESE_POSTCARD","features":[14]},{"name":"DMPAPER_JAPANESE_POSTCARD_ROTATED","features":[14]},{"name":"DMPAPER_JENV_CHOU3","features":[14]},{"name":"DMPAPER_JENV_CHOU3_ROTATED","features":[14]},{"name":"DMPAPER_JENV_CHOU4","features":[14]},{"name":"DMPAPER_JENV_CHOU4_ROTATED","features":[14]},{"name":"DMPAPER_JENV_KAKU2","features":[14]},{"name":"DMPAPER_JENV_KAKU2_ROTATED","features":[14]},{"name":"DMPAPER_JENV_KAKU3","features":[14]},{"name":"DMPAPER_JENV_KAKU3_ROTATED","features":[14]},{"name":"DMPAPER_JENV_YOU4","features":[14]},{"name":"DMPAPER_JENV_YOU4_ROTATED","features":[14]},{"name":"DMPAPER_LAST","features":[14]},{"name":"DMPAPER_LEDGER","features":[14]},{"name":"DMPAPER_LEGAL","features":[14]},{"name":"DMPAPER_LEGAL_EXTRA","features":[14]},{"name":"DMPAPER_LETTER","features":[14]},{"name":"DMPAPER_LETTERSMALL","features":[14]},{"name":"DMPAPER_LETTER_EXTRA","features":[14]},{"name":"DMPAPER_LETTER_EXTRA_TRANSVERSE","features":[14]},{"name":"DMPAPER_LETTER_PLUS","features":[14]},{"name":"DMPAPER_LETTER_ROTATED","features":[14]},{"name":"DMPAPER_LETTER_TRANSVERSE","features":[14]},{"name":"DMPAPER_NOTE","features":[14]},{"name":"DMPAPER_P16K","features":[14]},{"name":"DMPAPER_P16K_ROTATED","features":[14]},{"name":"DMPAPER_P32K","features":[14]},{"name":"DMPAPER_P32KBIG","features":[14]},{"name":"DMPAPER_P32KBIG_ROTATED","features":[14]},{"name":"DMPAPER_P32K_ROTATED","features":[14]},{"name":"DMPAPER_PENV_1","features":[14]},{"name":"DMPAPER_PENV_10","features":[14]},{"name":"DMPAPER_PENV_10_ROTATED","features":[14]},{"name":"DMPAPER_PENV_1_ROTATED","features":[14]},{"name":"DMPAPER_PENV_2","features":[14]},{"name":"DMPAPER_PENV_2_ROTATED","features":[14]},{"name":"DMPAPER_PENV_3","features":[14]},{"name":"DMPAPER_PENV_3_ROTATED","features":[14]},{"name":"DMPAPER_PENV_4","features":[14]},{"name":"DMPAPER_PENV_4_ROTATED","features":[14]},{"name":"DMPAPER_PENV_5","features":[14]},{"name":"DMPAPER_PENV_5_ROTATED","features":[14]},{"name":"DMPAPER_PENV_6","features":[14]},{"name":"DMPAPER_PENV_6_ROTATED","features":[14]},{"name":"DMPAPER_PENV_7","features":[14]},{"name":"DMPAPER_PENV_7_ROTATED","features":[14]},{"name":"DMPAPER_PENV_8","features":[14]},{"name":"DMPAPER_PENV_8_ROTATED","features":[14]},{"name":"DMPAPER_PENV_9","features":[14]},{"name":"DMPAPER_PENV_9_ROTATED","features":[14]},{"name":"DMPAPER_QUARTO","features":[14]},{"name":"DMPAPER_RESERVED_48","features":[14]},{"name":"DMPAPER_RESERVED_49","features":[14]},{"name":"DMPAPER_STATEMENT","features":[14]},{"name":"DMPAPER_TABLOID","features":[14]},{"name":"DMPAPER_TABLOID_EXTRA","features":[14]},{"name":"DMPAPER_USER","features":[14]},{"name":"DMRES_DRAFT","features":[14]},{"name":"DMRES_HIGH","features":[14]},{"name":"DMRES_LOW","features":[14]},{"name":"DMRES_MEDIUM","features":[14]},{"name":"DMTT_BITMAP","features":[14]},{"name":"DMTT_DOWNLOAD","features":[14]},{"name":"DMTT_DOWNLOAD_OUTLINE","features":[14]},{"name":"DMTT_SUBDEV","features":[14]},{"name":"DM_BITSPERPEL","features":[14]},{"name":"DM_COLLATE","features":[14]},{"name":"DM_COLOR","features":[14]},{"name":"DM_COPIES","features":[14]},{"name":"DM_COPY","features":[14]},{"name":"DM_DEFAULTSOURCE","features":[14]},{"name":"DM_DISPLAYFIXEDOUTPUT","features":[14]},{"name":"DM_DISPLAYFLAGS","features":[14]},{"name":"DM_DISPLAYFREQUENCY","features":[14]},{"name":"DM_DISPLAYORIENTATION","features":[14]},{"name":"DM_DITHERTYPE","features":[14]},{"name":"DM_DUPLEX","features":[14]},{"name":"DM_FORMNAME","features":[14]},{"name":"DM_ICMINTENT","features":[14]},{"name":"DM_ICMMETHOD","features":[14]},{"name":"DM_INTERLACED","features":[14]},{"name":"DM_IN_BUFFER","features":[14]},{"name":"DM_IN_PROMPT","features":[14]},{"name":"DM_LOGPIXELS","features":[14]},{"name":"DM_MEDIATYPE","features":[14]},{"name":"DM_MODIFY","features":[14]},{"name":"DM_NUP","features":[14]},{"name":"DM_ORIENTATION","features":[14]},{"name":"DM_OUT_BUFFER","features":[14]},{"name":"DM_OUT_DEFAULT","features":[14]},{"name":"DM_PANNINGHEIGHT","features":[14]},{"name":"DM_PANNINGWIDTH","features":[14]},{"name":"DM_PAPERLENGTH","features":[14]},{"name":"DM_PAPERSIZE","features":[14]},{"name":"DM_PAPERWIDTH","features":[14]},{"name":"DM_PELSHEIGHT","features":[14]},{"name":"DM_PELSWIDTH","features":[14]},{"name":"DM_POSITION","features":[14]},{"name":"DM_PRINTQUALITY","features":[14]},{"name":"DM_PROMPT","features":[14]},{"name":"DM_SCALE","features":[14]},{"name":"DM_SPECVERSION","features":[14]},{"name":"DM_TTOPTION","features":[14]},{"name":"DM_UPDATE","features":[14]},{"name":"DM_YRESOLUTION","features":[14]},{"name":"DOWNLOADFACE","features":[14]},{"name":"DOWNLOADHEADER","features":[14]},{"name":"DPtoLP","features":[3,14]},{"name":"DRAFTMODE","features":[14]},{"name":"DRAFT_QUALITY","features":[14]},{"name":"DRAWEDGE_FLAGS","features":[14]},{"name":"DRAWPATTERNRECT","features":[14]},{"name":"DRAWSTATEPROC","features":[3,14]},{"name":"DRAWSTATE_FLAGS","features":[14]},{"name":"DRAWTEXTPARAMS","features":[14]},{"name":"DRAW_CAPTION_FLAGS","features":[14]},{"name":"DRAW_EDGE_FLAGS","features":[14]},{"name":"DRAW_TEXT_FORMAT","features":[14]},{"name":"DRIVERVERSION","features":[14]},{"name":"DSS_DISABLED","features":[14]},{"name":"DSS_HIDEPREFIX","features":[14]},{"name":"DSS_MONO","features":[14]},{"name":"DSS_NORMAL","features":[14]},{"name":"DSS_PREFIXONLY","features":[14]},{"name":"DSS_RIGHT","features":[14]},{"name":"DSS_UNION","features":[14]},{"name":"DSTINVERT","features":[14]},{"name":"DST_BITMAP","features":[14]},{"name":"DST_COMPLEX","features":[14]},{"name":"DST_ICON","features":[14]},{"name":"DST_PREFIXTEXT","features":[14]},{"name":"DST_TEXT","features":[14]},{"name":"DT_BOTTOM","features":[14]},{"name":"DT_CALCRECT","features":[14]},{"name":"DT_CENTER","features":[14]},{"name":"DT_CHARSTREAM","features":[14]},{"name":"DT_DISPFILE","features":[14]},{"name":"DT_EDITCONTROL","features":[14]},{"name":"DT_END_ELLIPSIS","features":[14]},{"name":"DT_EXPANDTABS","features":[14]},{"name":"DT_EXTERNALLEADING","features":[14]},{"name":"DT_HIDEPREFIX","features":[14]},{"name":"DT_INTERNAL","features":[14]},{"name":"DT_LEFT","features":[14]},{"name":"DT_METAFILE","features":[14]},{"name":"DT_MODIFYSTRING","features":[14]},{"name":"DT_NOCLIP","features":[14]},{"name":"DT_NOFULLWIDTHCHARBREAK","features":[14]},{"name":"DT_NOPREFIX","features":[14]},{"name":"DT_PATH_ELLIPSIS","features":[14]},{"name":"DT_PLOTTER","features":[14]},{"name":"DT_PREFIXONLY","features":[14]},{"name":"DT_RASCAMERA","features":[14]},{"name":"DT_RASDISPLAY","features":[14]},{"name":"DT_RASPRINTER","features":[14]},{"name":"DT_RIGHT","features":[14]},{"name":"DT_RTLREADING","features":[14]},{"name":"DT_SINGLELINE","features":[14]},{"name":"DT_TABSTOP","features":[14]},{"name":"DT_TOP","features":[14]},{"name":"DT_VCENTER","features":[14]},{"name":"DT_WORDBREAK","features":[14]},{"name":"DT_WORD_ELLIPSIS","features":[14]},{"name":"DeleteDC","features":[3,14]},{"name":"DeleteEnhMetaFile","features":[3,14]},{"name":"DeleteMetaFile","features":[3,14]},{"name":"DeleteObject","features":[3,14]},{"name":"DrawAnimatedRects","features":[3,14]},{"name":"DrawCaption","features":[3,14]},{"name":"DrawEdge","features":[3,14]},{"name":"DrawEscape","features":[14]},{"name":"DrawFocusRect","features":[3,14]},{"name":"DrawFrameControl","features":[3,14]},{"name":"DrawStateA","features":[3,14]},{"name":"DrawStateW","features":[3,14]},{"name":"DrawTextA","features":[3,14]},{"name":"DrawTextExA","features":[3,14]},{"name":"DrawTextExW","features":[3,14]},{"name":"DrawTextW","features":[3,14]},{"name":"EASTEUROPE_CHARSET","features":[14]},{"name":"EDGE_BUMP","features":[14]},{"name":"EDGE_ETCHED","features":[14]},{"name":"EDGE_RAISED","features":[14]},{"name":"EDGE_SUNKEN","features":[14]},{"name":"EDS_RAWMODE","features":[14]},{"name":"EDS_ROTATEDMODE","features":[14]},{"name":"ELF_CULTURE_LATIN","features":[14]},{"name":"ELF_VENDOR_SIZE","features":[14]},{"name":"ELF_VERSION","features":[14]},{"name":"EMBEDDED_FONT_PRIV_STATUS","features":[14]},{"name":"EMBED_EDITABLE","features":[14]},{"name":"EMBED_FONT_CHARSET","features":[14]},{"name":"EMBED_INSTALLABLE","features":[14]},{"name":"EMBED_NOEMBEDDING","features":[14]},{"name":"EMBED_PREVIEWPRINT","features":[14]},{"name":"EMR","features":[14]},{"name":"EMRALPHABLEND","features":[3,14]},{"name":"EMRANGLEARC","features":[3,14]},{"name":"EMRARC","features":[3,14]},{"name":"EMRBITBLT","features":[3,14]},{"name":"EMRCOLORCORRECTPALETTE","features":[14]},{"name":"EMRCOLORMATCHTOTARGET","features":[14]},{"name":"EMRCREATEBRUSHINDIRECT","features":[3,14]},{"name":"EMRCREATEDIBPATTERNBRUSHPT","features":[14]},{"name":"EMRCREATEMONOBRUSH","features":[14]},{"name":"EMRCREATEPALETTE","features":[14]},{"name":"EMRCREATEPEN","features":[3,14]},{"name":"EMRELLIPSE","features":[3,14]},{"name":"EMREOF","features":[14]},{"name":"EMREXCLUDECLIPRECT","features":[3,14]},{"name":"EMREXTCREATEFONTINDIRECTW","features":[14]},{"name":"EMREXTCREATEPEN","features":[3,14]},{"name":"EMREXTESCAPE","features":[14]},{"name":"EMREXTFLOODFILL","features":[3,14]},{"name":"EMREXTSELECTCLIPRGN","features":[14]},{"name":"EMREXTTEXTOUTA","features":[3,14]},{"name":"EMRFILLPATH","features":[3,14]},{"name":"EMRFILLRGN","features":[3,14]},{"name":"EMRFORMAT","features":[14]},{"name":"EMRFRAMERGN","features":[3,14]},{"name":"EMRGDICOMMENT","features":[14]},{"name":"EMRGLSBOUNDEDRECORD","features":[3,14]},{"name":"EMRGLSRECORD","features":[14]},{"name":"EMRGRADIENTFILL","features":[3,14]},{"name":"EMRINVERTRGN","features":[3,14]},{"name":"EMRLINETO","features":[3,14]},{"name":"EMRMASKBLT","features":[3,14]},{"name":"EMRMODIFYWORLDTRANSFORM","features":[14]},{"name":"EMRNAMEDESCAPE","features":[14]},{"name":"EMROFFSETCLIPRGN","features":[3,14]},{"name":"EMRPLGBLT","features":[3,14]},{"name":"EMRPOLYDRAW","features":[3,14]},{"name":"EMRPOLYDRAW16","features":[3,14]},{"name":"EMRPOLYLINE","features":[3,14]},{"name":"EMRPOLYLINE16","features":[3,14]},{"name":"EMRPOLYPOLYLINE","features":[3,14]},{"name":"EMRPOLYPOLYLINE16","features":[3,14]},{"name":"EMRPOLYTEXTOUTA","features":[3,14]},{"name":"EMRRESIZEPALETTE","features":[14]},{"name":"EMRRESTOREDC","features":[14]},{"name":"EMRROUNDRECT","features":[3,14]},{"name":"EMRSCALEVIEWPORTEXTEX","features":[14]},{"name":"EMRSELECTCLIPPATH","features":[14]},{"name":"EMRSELECTOBJECT","features":[14]},{"name":"EMRSELECTPALETTE","features":[14]},{"name":"EMRSETARCDIRECTION","features":[14]},{"name":"EMRSETCOLORADJUSTMENT","features":[14]},{"name":"EMRSETCOLORSPACE","features":[14]},{"name":"EMRSETDIBITSTODEVICE","features":[3,14]},{"name":"EMRSETICMPROFILE","features":[14]},{"name":"EMRSETMAPPERFLAGS","features":[14]},{"name":"EMRSETMITERLIMIT","features":[14]},{"name":"EMRSETPALETTEENTRIES","features":[14]},{"name":"EMRSETPIXELV","features":[3,14]},{"name":"EMRSETTEXTCOLOR","features":[3,14]},{"name":"EMRSETVIEWPORTEXTEX","features":[3,14]},{"name":"EMRSETVIEWPORTORGEX","features":[3,14]},{"name":"EMRSETWORLDTRANSFORM","features":[14]},{"name":"EMRSTRETCHBLT","features":[3,14]},{"name":"EMRSTRETCHDIBITS","features":[3,14]},{"name":"EMRTEXT","features":[3,14]},{"name":"EMRTRANSPARENTBLT","features":[3,14]},{"name":"EMR_ABORTPATH","features":[14]},{"name":"EMR_ALPHABLEND","features":[14]},{"name":"EMR_ANGLEARC","features":[14]},{"name":"EMR_ARC","features":[14]},{"name":"EMR_ARCTO","features":[14]},{"name":"EMR_BEGINPATH","features":[14]},{"name":"EMR_BITBLT","features":[14]},{"name":"EMR_CHORD","features":[14]},{"name":"EMR_CLOSEFIGURE","features":[14]},{"name":"EMR_COLORCORRECTPALETTE","features":[14]},{"name":"EMR_COLORMATCHTOTARGETW","features":[14]},{"name":"EMR_CREATEBRUSHINDIRECT","features":[14]},{"name":"EMR_CREATECOLORSPACE","features":[14]},{"name":"EMR_CREATECOLORSPACEW","features":[14]},{"name":"EMR_CREATEDIBPATTERNBRUSHPT","features":[14]},{"name":"EMR_CREATEMONOBRUSH","features":[14]},{"name":"EMR_CREATEPALETTE","features":[14]},{"name":"EMR_CREATEPEN","features":[14]},{"name":"EMR_DELETECOLORSPACE","features":[14]},{"name":"EMR_DELETEOBJECT","features":[14]},{"name":"EMR_ELLIPSE","features":[14]},{"name":"EMR_ENDPATH","features":[14]},{"name":"EMR_EOF","features":[14]},{"name":"EMR_EXCLUDECLIPRECT","features":[14]},{"name":"EMR_EXTCREATEFONTINDIRECTW","features":[14]},{"name":"EMR_EXTCREATEPEN","features":[14]},{"name":"EMR_EXTFLOODFILL","features":[14]},{"name":"EMR_EXTSELECTCLIPRGN","features":[14]},{"name":"EMR_EXTTEXTOUTA","features":[14]},{"name":"EMR_EXTTEXTOUTW","features":[14]},{"name":"EMR_FILLPATH","features":[14]},{"name":"EMR_FILLRGN","features":[14]},{"name":"EMR_FLATTENPATH","features":[14]},{"name":"EMR_FRAMERGN","features":[14]},{"name":"EMR_GDICOMMENT","features":[14]},{"name":"EMR_GLSBOUNDEDRECORD","features":[14]},{"name":"EMR_GLSRECORD","features":[14]},{"name":"EMR_GRADIENTFILL","features":[14]},{"name":"EMR_HEADER","features":[14]},{"name":"EMR_INTERSECTCLIPRECT","features":[14]},{"name":"EMR_INVERTRGN","features":[14]},{"name":"EMR_LINETO","features":[14]},{"name":"EMR_MASKBLT","features":[14]},{"name":"EMR_MAX","features":[14]},{"name":"EMR_MIN","features":[14]},{"name":"EMR_MODIFYWORLDTRANSFORM","features":[14]},{"name":"EMR_MOVETOEX","features":[14]},{"name":"EMR_OFFSETCLIPRGN","features":[14]},{"name":"EMR_PAINTRGN","features":[14]},{"name":"EMR_PIE","features":[14]},{"name":"EMR_PIXELFORMAT","features":[14]},{"name":"EMR_PLGBLT","features":[14]},{"name":"EMR_POLYBEZIER","features":[14]},{"name":"EMR_POLYBEZIER16","features":[14]},{"name":"EMR_POLYBEZIERTO","features":[14]},{"name":"EMR_POLYBEZIERTO16","features":[14]},{"name":"EMR_POLYDRAW","features":[14]},{"name":"EMR_POLYDRAW16","features":[14]},{"name":"EMR_POLYGON","features":[14]},{"name":"EMR_POLYGON16","features":[14]},{"name":"EMR_POLYLINE","features":[14]},{"name":"EMR_POLYLINE16","features":[14]},{"name":"EMR_POLYLINETO","features":[14]},{"name":"EMR_POLYLINETO16","features":[14]},{"name":"EMR_POLYPOLYGON","features":[14]},{"name":"EMR_POLYPOLYGON16","features":[14]},{"name":"EMR_POLYPOLYLINE","features":[14]},{"name":"EMR_POLYPOLYLINE16","features":[14]},{"name":"EMR_POLYTEXTOUTA","features":[14]},{"name":"EMR_POLYTEXTOUTW","features":[14]},{"name":"EMR_REALIZEPALETTE","features":[14]},{"name":"EMR_RECTANGLE","features":[14]},{"name":"EMR_RESERVED_105","features":[14]},{"name":"EMR_RESERVED_106","features":[14]},{"name":"EMR_RESERVED_107","features":[14]},{"name":"EMR_RESERVED_108","features":[14]},{"name":"EMR_RESERVED_109","features":[14]},{"name":"EMR_RESERVED_110","features":[14]},{"name":"EMR_RESERVED_117","features":[14]},{"name":"EMR_RESERVED_119","features":[14]},{"name":"EMR_RESERVED_120","features":[14]},{"name":"EMR_RESIZEPALETTE","features":[14]},{"name":"EMR_RESTOREDC","features":[14]},{"name":"EMR_ROUNDRECT","features":[14]},{"name":"EMR_SAVEDC","features":[14]},{"name":"EMR_SCALEVIEWPORTEXTEX","features":[14]},{"name":"EMR_SCALEWINDOWEXTEX","features":[14]},{"name":"EMR_SELECTCLIPPATH","features":[14]},{"name":"EMR_SELECTOBJECT","features":[14]},{"name":"EMR_SELECTPALETTE","features":[14]},{"name":"EMR_SETARCDIRECTION","features":[14]},{"name":"EMR_SETBKCOLOR","features":[14]},{"name":"EMR_SETBKMODE","features":[14]},{"name":"EMR_SETBRUSHORGEX","features":[14]},{"name":"EMR_SETCOLORADJUSTMENT","features":[14]},{"name":"EMR_SETCOLORSPACE","features":[14]},{"name":"EMR_SETDIBITSTODEVICE","features":[14]},{"name":"EMR_SETICMMODE","features":[14]},{"name":"EMR_SETICMPROFILEA","features":[14]},{"name":"EMR_SETICMPROFILEW","features":[14]},{"name":"EMR_SETLAYOUT","features":[14]},{"name":"EMR_SETMAPMODE","features":[14]},{"name":"EMR_SETMAPPERFLAGS","features":[14]},{"name":"EMR_SETMETARGN","features":[14]},{"name":"EMR_SETMITERLIMIT","features":[14]},{"name":"EMR_SETPALETTEENTRIES","features":[14]},{"name":"EMR_SETPIXELV","features":[14]},{"name":"EMR_SETPOLYFILLMODE","features":[14]},{"name":"EMR_SETROP2","features":[14]},{"name":"EMR_SETSTRETCHBLTMODE","features":[14]},{"name":"EMR_SETTEXTALIGN","features":[14]},{"name":"EMR_SETTEXTCOLOR","features":[14]},{"name":"EMR_SETVIEWPORTEXTEX","features":[14]},{"name":"EMR_SETVIEWPORTORGEX","features":[14]},{"name":"EMR_SETWINDOWEXTEX","features":[14]},{"name":"EMR_SETWINDOWORGEX","features":[14]},{"name":"EMR_SETWORLDTRANSFORM","features":[14]},{"name":"EMR_STRETCHBLT","features":[14]},{"name":"EMR_STRETCHDIBITS","features":[14]},{"name":"EMR_STROKEANDFILLPATH","features":[14]},{"name":"EMR_STROKEPATH","features":[14]},{"name":"EMR_TRANSPARENTBLT","features":[14]},{"name":"EMR_WIDENPATH","features":[14]},{"name":"ENABLEDUPLEX","features":[14]},{"name":"ENABLEPAIRKERNING","features":[14]},{"name":"ENABLERELATIVEWIDTHS","features":[14]},{"name":"ENCAPSULATED_POSTSCRIPT","features":[14]},{"name":"ENDDOC","features":[14]},{"name":"END_PATH","features":[14]},{"name":"ENHANCED_METAFILE_RECORD_TYPE","features":[14]},{"name":"ENHMETAHEADER","features":[3,14]},{"name":"ENHMETARECORD","features":[14]},{"name":"ENHMETA_SIGNATURE","features":[14]},{"name":"ENHMETA_STOCK_OBJECT","features":[14]},{"name":"ENHMFENUMPROC","features":[3,14]},{"name":"ENUMLOGFONTA","features":[14]},{"name":"ENUMLOGFONTEXA","features":[14]},{"name":"ENUMLOGFONTEXDVA","features":[14]},{"name":"ENUMLOGFONTEXDVW","features":[14]},{"name":"ENUMLOGFONTEXW","features":[14]},{"name":"ENUMLOGFONTW","features":[14]},{"name":"ENUMPAPERBINS","features":[14]},{"name":"ENUMPAPERMETRICS","features":[14]},{"name":"ENUM_CURRENT_SETTINGS","features":[14]},{"name":"ENUM_DISPLAY_SETTINGS_FLAGS","features":[14]},{"name":"ENUM_DISPLAY_SETTINGS_MODE","features":[14]},{"name":"ENUM_REGISTRY_SETTINGS","features":[14]},{"name":"EPSPRINTING","features":[14]},{"name":"EPS_SIGNATURE","features":[14]},{"name":"ERROR","features":[14]},{"name":"ERR_FORMAT","features":[14]},{"name":"ERR_GENERIC","features":[14]},{"name":"ERR_INVALID_BASE","features":[14]},{"name":"ERR_INVALID_CMAP","features":[14]},{"name":"ERR_INVALID_DELTA_FORMAT","features":[14]},{"name":"ERR_INVALID_EBLC","features":[14]},{"name":"ERR_INVALID_GDEF","features":[14]},{"name":"ERR_INVALID_GLYF","features":[14]},{"name":"ERR_INVALID_GPOS","features":[14]},{"name":"ERR_INVALID_GSUB","features":[14]},{"name":"ERR_INVALID_HDMX","features":[14]},{"name":"ERR_INVALID_HEAD","features":[14]},{"name":"ERR_INVALID_HHEA","features":[14]},{"name":"ERR_INVALID_HHEA_OR_VHEA","features":[14]},{"name":"ERR_INVALID_HMTX","features":[14]},{"name":"ERR_INVALID_HMTX_OR_VMTX","features":[14]},{"name":"ERR_INVALID_JSTF","features":[14]},{"name":"ERR_INVALID_LOCA","features":[14]},{"name":"ERR_INVALID_LTSH","features":[14]},{"name":"ERR_INVALID_MAXP","features":[14]},{"name":"ERR_INVALID_MERGE_CHECKSUMS","features":[14]},{"name":"ERR_INVALID_MERGE_FORMATS","features":[14]},{"name":"ERR_INVALID_MERGE_NUMGLYPHS","features":[14]},{"name":"ERR_INVALID_NAME","features":[14]},{"name":"ERR_INVALID_OS2","features":[14]},{"name":"ERR_INVALID_POST","features":[14]},{"name":"ERR_INVALID_TTC_INDEX","features":[14]},{"name":"ERR_INVALID_TTO","features":[14]},{"name":"ERR_INVALID_VDMX","features":[14]},{"name":"ERR_INVALID_VHEA","features":[14]},{"name":"ERR_INVALID_VMTX","features":[14]},{"name":"ERR_MEM","features":[14]},{"name":"ERR_MISSING_CMAP","features":[14]},{"name":"ERR_MISSING_EBDT","features":[14]},{"name":"ERR_MISSING_GLYF","features":[14]},{"name":"ERR_MISSING_HEAD","features":[14]},{"name":"ERR_MISSING_HHEA","features":[14]},{"name":"ERR_MISSING_HHEA_OR_VHEA","features":[14]},{"name":"ERR_MISSING_HMTX","features":[14]},{"name":"ERR_MISSING_HMTX_OR_VMTX","features":[14]},{"name":"ERR_MISSING_LOCA","features":[14]},{"name":"ERR_MISSING_MAXP","features":[14]},{"name":"ERR_MISSING_NAME","features":[14]},{"name":"ERR_MISSING_OS2","features":[14]},{"name":"ERR_MISSING_POST","features":[14]},{"name":"ERR_MISSING_VHEA","features":[14]},{"name":"ERR_MISSING_VMTX","features":[14]},{"name":"ERR_NOT_TTC","features":[14]},{"name":"ERR_NO_GLYPHS","features":[14]},{"name":"ERR_PARAMETER0","features":[14]},{"name":"ERR_PARAMETER1","features":[14]},{"name":"ERR_PARAMETER10","features":[14]},{"name":"ERR_PARAMETER11","features":[14]},{"name":"ERR_PARAMETER12","features":[14]},{"name":"ERR_PARAMETER13","features":[14]},{"name":"ERR_PARAMETER14","features":[14]},{"name":"ERR_PARAMETER15","features":[14]},{"name":"ERR_PARAMETER16","features":[14]},{"name":"ERR_PARAMETER2","features":[14]},{"name":"ERR_PARAMETER3","features":[14]},{"name":"ERR_PARAMETER4","features":[14]},{"name":"ERR_PARAMETER5","features":[14]},{"name":"ERR_PARAMETER6","features":[14]},{"name":"ERR_PARAMETER7","features":[14]},{"name":"ERR_PARAMETER8","features":[14]},{"name":"ERR_PARAMETER9","features":[14]},{"name":"ERR_READCONTROL","features":[14]},{"name":"ERR_READOUTOFBOUNDS","features":[14]},{"name":"ERR_VERSION","features":[14]},{"name":"ERR_WOULD_GROW","features":[14]},{"name":"ERR_WRITECONTROL","features":[14]},{"name":"ERR_WRITEOUTOFBOUNDS","features":[14]},{"name":"ETO_CLIPPED","features":[14]},{"name":"ETO_GLYPH_INDEX","features":[14]},{"name":"ETO_IGNORELANGUAGE","features":[14]},{"name":"ETO_NUMERICSLATIN","features":[14]},{"name":"ETO_NUMERICSLOCAL","features":[14]},{"name":"ETO_OPAQUE","features":[14]},{"name":"ETO_OPTIONS","features":[14]},{"name":"ETO_PDY","features":[14]},{"name":"ETO_REVERSE_INDEX_MAP","features":[14]},{"name":"ETO_RTLREADING","features":[14]},{"name":"EXTLOGFONTA","features":[14]},{"name":"EXTLOGFONTW","features":[14]},{"name":"EXTLOGPEN","features":[3,14]},{"name":"EXTLOGPEN32","features":[3,14]},{"name":"EXTTEXTOUT","features":[14]},{"name":"EXT_DEVICE_CAPS","features":[14]},{"name":"EXT_FLOOD_FILL_TYPE","features":[14]},{"name":"E_ADDFONTFAILED","features":[14]},{"name":"E_API_NOTIMPL","features":[14]},{"name":"E_CHARCODECOUNTINVALID","features":[14]},{"name":"E_CHARCODESETINVALID","features":[14]},{"name":"E_CHARSETINVALID","features":[14]},{"name":"E_COULDNTCREATETEMPFILE","features":[14]},{"name":"E_DEVICETRUETYPEFONT","features":[14]},{"name":"E_ERRORACCESSINGEXCLUDELIST","features":[14]},{"name":"E_ERRORACCESSINGFACENAME","features":[14]},{"name":"E_ERRORACCESSINGFONTDATA","features":[14]},{"name":"E_ERRORCOMPRESSINGFONTDATA","features":[14]},{"name":"E_ERRORCONVERTINGCHARS","features":[14]},{"name":"E_ERRORCREATINGFONTFILE","features":[14]},{"name":"E_ERRORDECOMPRESSINGFONTDATA","features":[14]},{"name":"E_ERROREXPANDINGFONTDATA","features":[14]},{"name":"E_ERRORGETTINGDC","features":[14]},{"name":"E_ERRORREADINGFONTDATA","features":[14]},{"name":"E_ERRORUNICODECONVERSION","features":[14]},{"name":"E_EXCEPTION","features":[14]},{"name":"E_EXCEPTIONINCOMPRESSION","features":[14]},{"name":"E_EXCEPTIONINDECOMPRESSION","features":[14]},{"name":"E_FACENAMEINVALID","features":[14]},{"name":"E_FILE_NOT_FOUND","features":[14]},{"name":"E_FLAGSINVALID","features":[14]},{"name":"E_FONTALREADYEXISTS","features":[14]},{"name":"E_FONTDATAINVALID","features":[14]},{"name":"E_FONTFAMILYNAMENOTINFULL","features":[14]},{"name":"E_FONTFILECREATEFAILED","features":[14]},{"name":"E_FONTFILENOTFOUND","features":[14]},{"name":"E_FONTINSTALLFAILED","features":[14]},{"name":"E_FONTNAMEALREADYEXISTS","features":[14]},{"name":"E_FONTNOTEMBEDDABLE","features":[14]},{"name":"E_FONTREFERENCEINVALID","features":[14]},{"name":"E_FONTVARIATIONSIMULATED","features":[14]},{"name":"E_HDCINVALID","features":[14]},{"name":"E_INPUTPARAMINVALID","features":[14]},{"name":"E_NAMECHANGEFAILED","features":[14]},{"name":"E_NOFREEMEMORY","features":[14]},{"name":"E_NONE","features":[14]},{"name":"E_NOOS2","features":[14]},{"name":"E_NOTATRUETYPEFONT","features":[14]},{"name":"E_PBENABLEDINVALID","features":[14]},{"name":"E_PERMISSIONSINVALID","features":[14]},{"name":"E_PRIVSINVALID","features":[14]},{"name":"E_PRIVSTATUSINVALID","features":[14]},{"name":"E_READFROMSTREAMFAILED","features":[14]},{"name":"E_RESERVEDPARAMNOTNULL","features":[14]},{"name":"E_RESOURCEFILECREATEFAILED","features":[14]},{"name":"E_SAVETOSTREAMFAILED","features":[14]},{"name":"E_STATUSINVALID","features":[14]},{"name":"E_STREAMINVALID","features":[14]},{"name":"E_SUBSETTINGEXCEPTION","features":[14]},{"name":"E_SUBSETTINGFAILED","features":[14]},{"name":"E_SUBSTRING_TEST_FAIL","features":[14]},{"name":"E_T2NOFREEMEMORY","features":[14]},{"name":"E_TTC_INDEX_OUT_OF_RANGE","features":[14]},{"name":"E_WINDOWSAPI","features":[14]},{"name":"Ellipse","features":[3,14]},{"name":"EndPaint","features":[3,14]},{"name":"EndPath","features":[3,14]},{"name":"EnumDisplayDevicesA","features":[3,14]},{"name":"EnumDisplayDevicesW","features":[3,14]},{"name":"EnumDisplayMonitors","features":[3,14]},{"name":"EnumDisplaySettingsA","features":[3,14]},{"name":"EnumDisplaySettingsExA","features":[3,14]},{"name":"EnumDisplaySettingsExW","features":[3,14]},{"name":"EnumDisplaySettingsW","features":[3,14]},{"name":"EnumEnhMetaFile","features":[3,14]},{"name":"EnumFontFamiliesA","features":[3,14]},{"name":"EnumFontFamiliesExA","features":[3,14]},{"name":"EnumFontFamiliesExW","features":[3,14]},{"name":"EnumFontFamiliesW","features":[3,14]},{"name":"EnumFontsA","features":[3,14]},{"name":"EnumFontsW","features":[3,14]},{"name":"EnumMetaFile","features":[3,14]},{"name":"EnumObjects","features":[3,14]},{"name":"EqualRect","features":[3,14]},{"name":"EqualRgn","features":[3,14]},{"name":"ExcludeClipRect","features":[14]},{"name":"ExcludeUpdateRgn","features":[3,14]},{"name":"ExtCreatePen","features":[3,14]},{"name":"ExtCreateRegion","features":[3,14]},{"name":"ExtFloodFill","features":[3,14]},{"name":"ExtSelectClipRgn","features":[14]},{"name":"ExtTextOutA","features":[3,14]},{"name":"ExtTextOutW","features":[3,14]},{"name":"FEATURESETTING_CUSTPAPER","features":[14]},{"name":"FEATURESETTING_MIRROR","features":[14]},{"name":"FEATURESETTING_NEGATIVE","features":[14]},{"name":"FEATURESETTING_NUP","features":[14]},{"name":"FEATURESETTING_OUTPUT","features":[14]},{"name":"FEATURESETTING_PRIVATE_BEGIN","features":[14]},{"name":"FEATURESETTING_PRIVATE_END","features":[14]},{"name":"FEATURESETTING_PROTOCOL","features":[14]},{"name":"FEATURESETTING_PSLEVEL","features":[14]},{"name":"FF_DECORATIVE","features":[14]},{"name":"FF_DONTCARE","features":[14]},{"name":"FF_MODERN","features":[14]},{"name":"FF_ROMAN","features":[14]},{"name":"FF_SCRIPT","features":[14]},{"name":"FF_SWISS","features":[14]},{"name":"FIXED","features":[14]},{"name":"FIXED_PITCH","features":[14]},{"name":"FLI_GLYPHS","features":[14]},{"name":"FLI_MASK","features":[14]},{"name":"FLOODFILLBORDER","features":[14]},{"name":"FLOODFILLSURFACE","features":[14]},{"name":"FLUSHOUTPUT","features":[14]},{"name":"FONTENUMPROCA","features":[3,14]},{"name":"FONTENUMPROCW","features":[3,14]},{"name":"FONTMAPPER_MAX","features":[14]},{"name":"FONT_CHARSET","features":[14]},{"name":"FONT_CLIP_PRECISION","features":[14]},{"name":"FONT_FAMILY","features":[14]},{"name":"FONT_LICENSE_PRIVS","features":[14]},{"name":"FONT_OUTPUT_PRECISION","features":[14]},{"name":"FONT_PITCH","features":[14]},{"name":"FONT_QUALITY","features":[14]},{"name":"FONT_RESOURCE_CHARACTERISTICS","features":[14]},{"name":"FONT_WEIGHT","features":[14]},{"name":"FR_NOT_ENUM","features":[14]},{"name":"FR_PRIVATE","features":[14]},{"name":"FS_ARABIC","features":[14]},{"name":"FS_BALTIC","features":[14]},{"name":"FS_CHINESESIMP","features":[14]},{"name":"FS_CHINESETRAD","features":[14]},{"name":"FS_CYRILLIC","features":[14]},{"name":"FS_GREEK","features":[14]},{"name":"FS_HEBREW","features":[14]},{"name":"FS_JISJAPAN","features":[14]},{"name":"FS_JOHAB","features":[14]},{"name":"FS_LATIN1","features":[14]},{"name":"FS_LATIN2","features":[14]},{"name":"FS_SYMBOL","features":[14]},{"name":"FS_THAI","features":[14]},{"name":"FS_TURKISH","features":[14]},{"name":"FS_VIETNAMESE","features":[14]},{"name":"FS_WANSUNG","features":[14]},{"name":"FW_BLACK","features":[14]},{"name":"FW_BOLD","features":[14]},{"name":"FW_DEMIBOLD","features":[14]},{"name":"FW_DONTCARE","features":[14]},{"name":"FW_EXTRABOLD","features":[14]},{"name":"FW_EXTRALIGHT","features":[14]},{"name":"FW_HEAVY","features":[14]},{"name":"FW_LIGHT","features":[14]},{"name":"FW_MEDIUM","features":[14]},{"name":"FW_NORMAL","features":[14]},{"name":"FW_REGULAR","features":[14]},{"name":"FW_SEMIBOLD","features":[14]},{"name":"FW_THIN","features":[14]},{"name":"FW_ULTRABOLD","features":[14]},{"name":"FW_ULTRALIGHT","features":[14]},{"name":"FillPath","features":[3,14]},{"name":"FillRect","features":[3,14]},{"name":"FillRgn","features":[3,14]},{"name":"FixBrushOrgEx","features":[3,14]},{"name":"FlattenPath","features":[3,14]},{"name":"FloodFill","features":[3,14]},{"name":"FrameRect","features":[3,14]},{"name":"FrameRgn","features":[3,14]},{"name":"GB2312_CHARSET","features":[14]},{"name":"GCPCLASS_ARABIC","features":[14]},{"name":"GCPCLASS_HEBREW","features":[14]},{"name":"GCPCLASS_LATIN","features":[14]},{"name":"GCPCLASS_LATINNUMBER","features":[14]},{"name":"GCPCLASS_LATINNUMERICSEPARATOR","features":[14]},{"name":"GCPCLASS_LATINNUMERICTERMINATOR","features":[14]},{"name":"GCPCLASS_LOCALNUMBER","features":[14]},{"name":"GCPCLASS_NEUTRAL","features":[14]},{"name":"GCPCLASS_NUMERICSEPARATOR","features":[14]},{"name":"GCPCLASS_POSTBOUNDLTR","features":[14]},{"name":"GCPCLASS_POSTBOUNDRTL","features":[14]},{"name":"GCPCLASS_PREBOUNDLTR","features":[14]},{"name":"GCPCLASS_PREBOUNDRTL","features":[14]},{"name":"GCPGLYPH_LINKAFTER","features":[14]},{"name":"GCPGLYPH_LINKBEFORE","features":[14]},{"name":"GCP_CLASSIN","features":[14]},{"name":"GCP_DBCS","features":[14]},{"name":"GCP_DIACRITIC","features":[14]},{"name":"GCP_DISPLAYZWG","features":[14]},{"name":"GCP_ERROR","features":[14]},{"name":"GCP_GLYPHSHAPE","features":[14]},{"name":"GCP_JUSTIFY","features":[14]},{"name":"GCP_JUSTIFYIN","features":[14]},{"name":"GCP_KASHIDA","features":[14]},{"name":"GCP_LIGATE","features":[14]},{"name":"GCP_MAXEXTENT","features":[14]},{"name":"GCP_NEUTRALOVERRIDE","features":[14]},{"name":"GCP_NUMERICOVERRIDE","features":[14]},{"name":"GCP_NUMERICSLATIN","features":[14]},{"name":"GCP_NUMERICSLOCAL","features":[14]},{"name":"GCP_REORDER","features":[14]},{"name":"GCP_RESULTSA","features":[14]},{"name":"GCP_RESULTSW","features":[14]},{"name":"GCP_SYMSWAPOFF","features":[14]},{"name":"GCP_USEKERNING","features":[14]},{"name":"GDICOMMENT_BEGINGROUP","features":[14]},{"name":"GDICOMMENT_ENDGROUP","features":[14]},{"name":"GDICOMMENT_IDENTIFIER","features":[14]},{"name":"GDICOMMENT_MULTIFORMATS","features":[14]},{"name":"GDICOMMENT_UNICODE_END","features":[14]},{"name":"GDICOMMENT_UNICODE_STRING","features":[14]},{"name":"GDICOMMENT_WINDOWS_METAFILE","features":[14]},{"name":"GDIPLUS_TS_QUERYVER","features":[14]},{"name":"GDIPLUS_TS_RECORD","features":[14]},{"name":"GDIREGISTERDDRAWPACKETVERSION","features":[14]},{"name":"GDI_ERROR","features":[14]},{"name":"GDI_REGION_TYPE","features":[14]},{"name":"GETCOLORTABLE","features":[14]},{"name":"GETDEVICEUNITS","features":[14]},{"name":"GETEXTENDEDTEXTMETRICS","features":[14]},{"name":"GETEXTENTTABLE","features":[14]},{"name":"GETFACENAME","features":[14]},{"name":"GETPAIRKERNTABLE","features":[14]},{"name":"GETPENWIDTH","features":[14]},{"name":"GETPHYSPAGESIZE","features":[14]},{"name":"GETPRINTINGOFFSET","features":[14]},{"name":"GETSCALINGFACTOR","features":[14]},{"name":"GETSETPAPERBINS","features":[14]},{"name":"GETSETPAPERMETRICS","features":[14]},{"name":"GETSETPRINTORIENT","features":[14]},{"name":"GETSETSCREENPARAMS","features":[14]},{"name":"GETTECHNOLGY","features":[14]},{"name":"GETTECHNOLOGY","features":[14]},{"name":"GETTRACKKERNTABLE","features":[14]},{"name":"GETVECTORBRUSHSIZE","features":[14]},{"name":"GETVECTORPENSIZE","features":[14]},{"name":"GET_CHARACTER_PLACEMENT_FLAGS","features":[14]},{"name":"GET_DCX_FLAGS","features":[14]},{"name":"GET_DEVICE_CAPS_INDEX","features":[14]},{"name":"GET_GLYPH_OUTLINE_FORMAT","features":[14]},{"name":"GET_PS_FEATURESETTING","features":[14]},{"name":"GET_STOCK_OBJECT_FLAGS","features":[14]},{"name":"GGI_MARK_NONEXISTING_GLYPHS","features":[14]},{"name":"GGO_BEZIER","features":[14]},{"name":"GGO_BITMAP","features":[14]},{"name":"GGO_GLYPH_INDEX","features":[14]},{"name":"GGO_GRAY2_BITMAP","features":[14]},{"name":"GGO_GRAY4_BITMAP","features":[14]},{"name":"GGO_GRAY8_BITMAP","features":[14]},{"name":"GGO_METRICS","features":[14]},{"name":"GGO_NATIVE","features":[14]},{"name":"GGO_UNHINTED","features":[14]},{"name":"GLYPHMETRICS","features":[3,14]},{"name":"GLYPHSET","features":[14]},{"name":"GM_ADVANCED","features":[14]},{"name":"GM_COMPATIBLE","features":[14]},{"name":"GM_LAST","features":[14]},{"name":"GOBJENUMPROC","features":[3,14]},{"name":"GRADIENT_FILL","features":[14]},{"name":"GRADIENT_FILL_OP_FLAG","features":[14]},{"name":"GRADIENT_FILL_RECT_H","features":[14]},{"name":"GRADIENT_FILL_RECT_V","features":[14]},{"name":"GRADIENT_FILL_TRIANGLE","features":[14]},{"name":"GRADIENT_RECT","features":[14]},{"name":"GRADIENT_TRIANGLE","features":[14]},{"name":"GRAPHICS_MODE","features":[14]},{"name":"GRAYSTRINGPROC","features":[3,14]},{"name":"GRAY_BRUSH","features":[14]},{"name":"GREEK_CHARSET","features":[14]},{"name":"GS_8BIT_INDICES","features":[14]},{"name":"GdiAlphaBlend","features":[3,14]},{"name":"GdiComment","features":[3,14]},{"name":"GdiFlush","features":[3,14]},{"name":"GdiGetBatchLimit","features":[14]},{"name":"GdiGradientFill","features":[3,14]},{"name":"GdiSetBatchLimit","features":[14]},{"name":"GdiTransparentBlt","features":[3,14]},{"name":"GetArcDirection","features":[14]},{"name":"GetAspectRatioFilterEx","features":[3,14]},{"name":"GetBitmapBits","features":[14]},{"name":"GetBitmapDimensionEx","features":[3,14]},{"name":"GetBkColor","features":[3,14]},{"name":"GetBkMode","features":[14]},{"name":"GetBoundsRect","features":[3,14]},{"name":"GetBrushOrgEx","features":[3,14]},{"name":"GetCharABCWidthsA","features":[3,14]},{"name":"GetCharABCWidthsFloatA","features":[3,14]},{"name":"GetCharABCWidthsFloatW","features":[3,14]},{"name":"GetCharABCWidthsI","features":[3,14]},{"name":"GetCharABCWidthsW","features":[3,14]},{"name":"GetCharWidth32A","features":[3,14]},{"name":"GetCharWidth32W","features":[3,14]},{"name":"GetCharWidthA","features":[3,14]},{"name":"GetCharWidthFloatA","features":[3,14]},{"name":"GetCharWidthFloatW","features":[3,14]},{"name":"GetCharWidthI","features":[3,14]},{"name":"GetCharWidthW","features":[3,14]},{"name":"GetCharacterPlacementA","features":[14]},{"name":"GetCharacterPlacementW","features":[14]},{"name":"GetClipBox","features":[3,14]},{"name":"GetClipRgn","features":[14]},{"name":"GetColorAdjustment","features":[3,14]},{"name":"GetCurrentObject","features":[14]},{"name":"GetCurrentPositionEx","features":[3,14]},{"name":"GetDC","features":[3,14]},{"name":"GetDCBrushColor","features":[3,14]},{"name":"GetDCEx","features":[3,14]},{"name":"GetDCOrgEx","features":[3,14]},{"name":"GetDCPenColor","features":[3,14]},{"name":"GetDIBColorTable","features":[14]},{"name":"GetDIBits","features":[14]},{"name":"GetDeviceCaps","features":[14]},{"name":"GetEnhMetaFileA","features":[14]},{"name":"GetEnhMetaFileBits","features":[14]},{"name":"GetEnhMetaFileDescriptionA","features":[14]},{"name":"GetEnhMetaFileDescriptionW","features":[14]},{"name":"GetEnhMetaFileHeader","features":[3,14]},{"name":"GetEnhMetaFilePaletteEntries","features":[14]},{"name":"GetEnhMetaFileW","features":[14]},{"name":"GetFontData","features":[14]},{"name":"GetFontLanguageInfo","features":[14]},{"name":"GetFontUnicodeRanges","features":[14]},{"name":"GetGlyphIndicesA","features":[14]},{"name":"GetGlyphIndicesW","features":[14]},{"name":"GetGlyphOutlineA","features":[3,14]},{"name":"GetGlyphOutlineW","features":[3,14]},{"name":"GetGraphicsMode","features":[14]},{"name":"GetKerningPairsA","features":[14]},{"name":"GetKerningPairsW","features":[14]},{"name":"GetLayout","features":[14]},{"name":"GetMapMode","features":[14]},{"name":"GetMetaFileA","features":[14]},{"name":"GetMetaFileBitsEx","features":[14]},{"name":"GetMetaFileW","features":[14]},{"name":"GetMetaRgn","features":[14]},{"name":"GetMiterLimit","features":[3,14]},{"name":"GetMonitorInfoA","features":[3,14]},{"name":"GetMonitorInfoW","features":[3,14]},{"name":"GetNearestColor","features":[3,14]},{"name":"GetNearestPaletteIndex","features":[3,14]},{"name":"GetObjectA","features":[14]},{"name":"GetObjectType","features":[14]},{"name":"GetObjectW","features":[14]},{"name":"GetOutlineTextMetricsA","features":[3,14]},{"name":"GetOutlineTextMetricsW","features":[3,14]},{"name":"GetPaletteEntries","features":[14]},{"name":"GetPath","features":[3,14]},{"name":"GetPixel","features":[3,14]},{"name":"GetPolyFillMode","features":[14]},{"name":"GetROP2","features":[14]},{"name":"GetRandomRgn","features":[14]},{"name":"GetRasterizerCaps","features":[3,14]},{"name":"GetRegionData","features":[3,14]},{"name":"GetRgnBox","features":[3,14]},{"name":"GetStockObject","features":[14]},{"name":"GetStretchBltMode","features":[14]},{"name":"GetSysColor","features":[14]},{"name":"GetSysColorBrush","features":[14]},{"name":"GetSystemPaletteEntries","features":[14]},{"name":"GetSystemPaletteUse","features":[14]},{"name":"GetTabbedTextExtentA","features":[14]},{"name":"GetTabbedTextExtentW","features":[14]},{"name":"GetTextAlign","features":[14]},{"name":"GetTextCharacterExtra","features":[14]},{"name":"GetTextColor","features":[3,14]},{"name":"GetTextExtentExPointA","features":[3,14]},{"name":"GetTextExtentExPointI","features":[3,14]},{"name":"GetTextExtentExPointW","features":[3,14]},{"name":"GetTextExtentPoint32A","features":[3,14]},{"name":"GetTextExtentPoint32W","features":[3,14]},{"name":"GetTextExtentPointA","features":[3,14]},{"name":"GetTextExtentPointI","features":[3,14]},{"name":"GetTextExtentPointW","features":[3,14]},{"name":"GetTextFaceA","features":[14]},{"name":"GetTextFaceW","features":[14]},{"name":"GetTextMetricsA","features":[3,14]},{"name":"GetTextMetricsW","features":[3,14]},{"name":"GetUpdateRect","features":[3,14]},{"name":"GetUpdateRgn","features":[3,14]},{"name":"GetViewportExtEx","features":[3,14]},{"name":"GetViewportOrgEx","features":[3,14]},{"name":"GetWinMetaFileBits","features":[14]},{"name":"GetWindowDC","features":[3,14]},{"name":"GetWindowExtEx","features":[3,14]},{"name":"GetWindowOrgEx","features":[3,14]},{"name":"GetWindowRgn","features":[3,14]},{"name":"GetWindowRgnBox","features":[3,14]},{"name":"GetWorldTransform","features":[3,14]},{"name":"GradientFill","features":[3,14]},{"name":"GrayStringA","features":[3,14]},{"name":"GrayStringW","features":[3,14]},{"name":"HALFTONE","features":[14]},{"name":"HANDLETABLE","features":[14]},{"name":"HANGEUL_CHARSET","features":[14]},{"name":"HANGUL_CHARSET","features":[14]},{"name":"HATCH_BRUSH_STYLE","features":[14]},{"name":"HBITMAP","features":[14]},{"name":"HBRUSH","features":[14]},{"name":"HDC","features":[14]},{"name":"HDC_MAP_MODE","features":[14]},{"name":"HEBREW_CHARSET","features":[14]},{"name":"HENHMETAFILE","features":[14]},{"name":"HFONT","features":[14]},{"name":"HGDIOBJ","features":[14]},{"name":"HMETAFILE","features":[14]},{"name":"HMONITOR","features":[14]},{"name":"HOLLOW_BRUSH","features":[14]},{"name":"HORZRES","features":[14]},{"name":"HORZSIZE","features":[14]},{"name":"HPALETTE","features":[14]},{"name":"HPEN","features":[14]},{"name":"HRGN","features":[14]},{"name":"HS_API_MAX","features":[14]},{"name":"HS_BDIAGONAL","features":[14]},{"name":"HS_CROSS","features":[14]},{"name":"HS_DIAGCROSS","features":[14]},{"name":"HS_FDIAGONAL","features":[14]},{"name":"HS_HORIZONTAL","features":[14]},{"name":"HS_VERTICAL","features":[14]},{"name":"ILLUMINANT_A","features":[14]},{"name":"ILLUMINANT_B","features":[14]},{"name":"ILLUMINANT_C","features":[14]},{"name":"ILLUMINANT_D50","features":[14]},{"name":"ILLUMINANT_D55","features":[14]},{"name":"ILLUMINANT_D65","features":[14]},{"name":"ILLUMINANT_D75","features":[14]},{"name":"ILLUMINANT_DAYLIGHT","features":[14]},{"name":"ILLUMINANT_DEVICE_DEFAULT","features":[14]},{"name":"ILLUMINANT_F2","features":[14]},{"name":"ILLUMINANT_FLUORESCENT","features":[14]},{"name":"ILLUMINANT_MAX_INDEX","features":[14]},{"name":"ILLUMINANT_NTSC","features":[14]},{"name":"ILLUMINANT_TUNGSTEN","features":[14]},{"name":"InflateRect","features":[3,14]},{"name":"IntersectClipRect","features":[14]},{"name":"IntersectRect","features":[3,14]},{"name":"InvalidateRect","features":[3,14]},{"name":"InvalidateRgn","features":[3,14]},{"name":"InvertRect","features":[3,14]},{"name":"InvertRgn","features":[3,14]},{"name":"IsRectEmpty","features":[3,14]},{"name":"JOHAB_CHARSET","features":[14]},{"name":"KERNINGPAIR","features":[14]},{"name":"LAYOUT_BITMAPORIENTATIONPRESERVED","features":[14]},{"name":"LAYOUT_BTT","features":[14]},{"name":"LAYOUT_RTL","features":[14]},{"name":"LAYOUT_VBH","features":[14]},{"name":"LCS_GM_ABS_COLORIMETRIC","features":[14]},{"name":"LCS_GM_BUSINESS","features":[14]},{"name":"LCS_GM_GRAPHICS","features":[14]},{"name":"LCS_GM_IMAGES","features":[14]},{"name":"LC_INTERIORS","features":[14]},{"name":"LC_MARKER","features":[14]},{"name":"LC_NONE","features":[14]},{"name":"LC_POLYLINE","features":[14]},{"name":"LC_POLYMARKER","features":[14]},{"name":"LC_STYLED","features":[14]},{"name":"LC_WIDE","features":[14]},{"name":"LC_WIDESTYLED","features":[14]},{"name":"LF_FACESIZE","features":[14]},{"name":"LF_FULLFACESIZE","features":[14]},{"name":"LICENSE_DEFAULT","features":[14]},{"name":"LICENSE_EDITABLE","features":[14]},{"name":"LICENSE_INSTALLABLE","features":[14]},{"name":"LICENSE_NOEMBEDDING","features":[14]},{"name":"LICENSE_PREVIEWPRINT","features":[14]},{"name":"LINECAPS","features":[14]},{"name":"LINEDDAPROC","features":[3,14]},{"name":"LOGBRUSH","features":[3,14]},{"name":"LOGBRUSH32","features":[3,14]},{"name":"LOGFONTA","features":[14]},{"name":"LOGFONTW","features":[14]},{"name":"LOGPALETTE","features":[14]},{"name":"LOGPEN","features":[3,14]},{"name":"LOGPIXELSX","features":[14]},{"name":"LOGPIXELSY","features":[14]},{"name":"LPD_DOUBLEBUFFER","features":[14]},{"name":"LPD_SHARE_ACCUM","features":[14]},{"name":"LPD_SHARE_DEPTH","features":[14]},{"name":"LPD_SHARE_STENCIL","features":[14]},{"name":"LPD_STEREO","features":[14]},{"name":"LPD_SUPPORT_GDI","features":[14]},{"name":"LPD_SUPPORT_OPENGL","features":[14]},{"name":"LPD_SWAP_COPY","features":[14]},{"name":"LPD_SWAP_EXCHANGE","features":[14]},{"name":"LPD_TRANSPARENT","features":[14]},{"name":"LPD_TYPE_COLORINDEX","features":[14]},{"name":"LPD_TYPE_RGBA","features":[14]},{"name":"LPFNDEVCAPS","features":[3,14]},{"name":"LPFNDEVMODE","features":[3,14]},{"name":"LPtoDP","features":[3,14]},{"name":"LTGRAY_BRUSH","features":[14]},{"name":"LineDDA","features":[3,14]},{"name":"LineTo","features":[3,14]},{"name":"LoadBitmapA","features":[3,14]},{"name":"LoadBitmapW","features":[3,14]},{"name":"LockWindowUpdate","features":[3,14]},{"name":"MAC_CHARSET","features":[14]},{"name":"MAT2","features":[14]},{"name":"MAXSTRETCHBLTMODE","features":[14]},{"name":"MERGECOPY","features":[14]},{"name":"MERGEPAINT","features":[14]},{"name":"METAFILE_DRIVER","features":[14]},{"name":"METAHEADER","features":[14]},{"name":"METARECORD","features":[14]},{"name":"META_ANIMATEPALETTE","features":[14]},{"name":"META_ARC","features":[14]},{"name":"META_BITBLT","features":[14]},{"name":"META_CHORD","features":[14]},{"name":"META_CREATEBRUSHINDIRECT","features":[14]},{"name":"META_CREATEFONTINDIRECT","features":[14]},{"name":"META_CREATEPALETTE","features":[14]},{"name":"META_CREATEPATTERNBRUSH","features":[14]},{"name":"META_CREATEPENINDIRECT","features":[14]},{"name":"META_CREATEREGION","features":[14]},{"name":"META_DELETEOBJECT","features":[14]},{"name":"META_DIBBITBLT","features":[14]},{"name":"META_DIBCREATEPATTERNBRUSH","features":[14]},{"name":"META_DIBSTRETCHBLT","features":[14]},{"name":"META_ELLIPSE","features":[14]},{"name":"META_ESCAPE","features":[14]},{"name":"META_EXCLUDECLIPRECT","features":[14]},{"name":"META_EXTFLOODFILL","features":[14]},{"name":"META_EXTTEXTOUT","features":[14]},{"name":"META_FILLREGION","features":[14]},{"name":"META_FLOODFILL","features":[14]},{"name":"META_FRAMEREGION","features":[14]},{"name":"META_INTERSECTCLIPRECT","features":[14]},{"name":"META_INVERTREGION","features":[14]},{"name":"META_LINETO","features":[14]},{"name":"META_MOVETO","features":[14]},{"name":"META_OFFSETCLIPRGN","features":[14]},{"name":"META_OFFSETVIEWPORTORG","features":[14]},{"name":"META_OFFSETWINDOWORG","features":[14]},{"name":"META_PAINTREGION","features":[14]},{"name":"META_PATBLT","features":[14]},{"name":"META_PIE","features":[14]},{"name":"META_POLYGON","features":[14]},{"name":"META_POLYLINE","features":[14]},{"name":"META_POLYPOLYGON","features":[14]},{"name":"META_REALIZEPALETTE","features":[14]},{"name":"META_RECTANGLE","features":[14]},{"name":"META_RESIZEPALETTE","features":[14]},{"name":"META_RESTOREDC","features":[14]},{"name":"META_ROUNDRECT","features":[14]},{"name":"META_SAVEDC","features":[14]},{"name":"META_SCALEVIEWPORTEXT","features":[14]},{"name":"META_SCALEWINDOWEXT","features":[14]},{"name":"META_SELECTCLIPREGION","features":[14]},{"name":"META_SELECTOBJECT","features":[14]},{"name":"META_SELECTPALETTE","features":[14]},{"name":"META_SETBKCOLOR","features":[14]},{"name":"META_SETBKMODE","features":[14]},{"name":"META_SETDIBTODEV","features":[14]},{"name":"META_SETLAYOUT","features":[14]},{"name":"META_SETMAPMODE","features":[14]},{"name":"META_SETMAPPERFLAGS","features":[14]},{"name":"META_SETPALENTRIES","features":[14]},{"name":"META_SETPIXEL","features":[14]},{"name":"META_SETPOLYFILLMODE","features":[14]},{"name":"META_SETRELABS","features":[14]},{"name":"META_SETROP2","features":[14]},{"name":"META_SETSTRETCHBLTMODE","features":[14]},{"name":"META_SETTEXTALIGN","features":[14]},{"name":"META_SETTEXTCHAREXTRA","features":[14]},{"name":"META_SETTEXTCOLOR","features":[14]},{"name":"META_SETTEXTJUSTIFICATION","features":[14]},{"name":"META_SETVIEWPORTEXT","features":[14]},{"name":"META_SETVIEWPORTORG","features":[14]},{"name":"META_SETWINDOWEXT","features":[14]},{"name":"META_SETWINDOWORG","features":[14]},{"name":"META_STRETCHBLT","features":[14]},{"name":"META_STRETCHDIB","features":[14]},{"name":"META_TEXTOUT","features":[14]},{"name":"MFCOMMENT","features":[14]},{"name":"MFENUMPROC","features":[3,14]},{"name":"MILCORE_TS_QUERYVER_RESULT_FALSE","features":[14]},{"name":"MILCORE_TS_QUERYVER_RESULT_TRUE","features":[14]},{"name":"MM_ANISOTROPIC","features":[14]},{"name":"MM_HIENGLISH","features":[14]},{"name":"MM_HIMETRIC","features":[14]},{"name":"MM_ISOTROPIC","features":[14]},{"name":"MM_LOENGLISH","features":[14]},{"name":"MM_LOMETRIC","features":[14]},{"name":"MM_MAX_AXES_NAMELEN","features":[14]},{"name":"MM_MAX_NUMAXES","features":[14]},{"name":"MM_TEXT","features":[14]},{"name":"MM_TWIPS","features":[14]},{"name":"MODIFY_WORLD_TRANSFORM_MODE","features":[14]},{"name":"MONITORENUMPROC","features":[3,14]},{"name":"MONITORINFO","features":[3,14]},{"name":"MONITORINFOEXA","features":[3,14]},{"name":"MONITORINFOEXW","features":[3,14]},{"name":"MONITOR_DEFAULTTONEAREST","features":[14]},{"name":"MONITOR_DEFAULTTONULL","features":[14]},{"name":"MONITOR_DEFAULTTOPRIMARY","features":[14]},{"name":"MONITOR_FROM_FLAGS","features":[14]},{"name":"MONO_FONT","features":[14]},{"name":"MOUSETRAILS","features":[14]},{"name":"MWT_IDENTITY","features":[14]},{"name":"MWT_LEFTMULTIPLY","features":[14]},{"name":"MWT_RIGHTMULTIPLY","features":[14]},{"name":"MapWindowPoints","features":[3,14]},{"name":"MaskBlt","features":[3,14]},{"name":"MergeFontPackage","features":[14]},{"name":"ModifyWorldTransform","features":[3,14]},{"name":"MonitorFromPoint","features":[3,14]},{"name":"MonitorFromRect","features":[3,14]},{"name":"MonitorFromWindow","features":[3,14]},{"name":"MoveToEx","features":[3,14]},{"name":"NEWFRAME","features":[14]},{"name":"NEWTEXTMETRICA","features":[14]},{"name":"NEWTEXTMETRICW","features":[14]},{"name":"NEWTRANSPARENT","features":[14]},{"name":"NEXTBAND","features":[14]},{"name":"NOMIRRORBITMAP","features":[14]},{"name":"NONANTIALIASED_QUALITY","features":[14]},{"name":"NOTSRCCOPY","features":[14]},{"name":"NOTSRCERASE","features":[14]},{"name":"NTM_BOLD","features":[14]},{"name":"NTM_DSIG","features":[14]},{"name":"NTM_ITALIC","features":[14]},{"name":"NTM_MULTIPLEMASTER","features":[14]},{"name":"NTM_NONNEGATIVE_AC","features":[14]},{"name":"NTM_PS_OPENTYPE","features":[14]},{"name":"NTM_REGULAR","features":[14]},{"name":"NTM_TT_OPENTYPE","features":[14]},{"name":"NTM_TYPE1","features":[14]},{"name":"NULLREGION","features":[14]},{"name":"NULL_BRUSH","features":[14]},{"name":"NULL_PEN","features":[14]},{"name":"NUMBRUSHES","features":[14]},{"name":"NUMCOLORS","features":[14]},{"name":"NUMFONTS","features":[14]},{"name":"NUMMARKERS","features":[14]},{"name":"NUMPENS","features":[14]},{"name":"NUMRESERVED","features":[14]},{"name":"OBJ_BITMAP","features":[14]},{"name":"OBJ_BRUSH","features":[14]},{"name":"OBJ_COLORSPACE","features":[14]},{"name":"OBJ_DC","features":[14]},{"name":"OBJ_ENHMETADC","features":[14]},{"name":"OBJ_ENHMETAFILE","features":[14]},{"name":"OBJ_EXTPEN","features":[14]},{"name":"OBJ_FONT","features":[14]},{"name":"OBJ_MEMDC","features":[14]},{"name":"OBJ_METADC","features":[14]},{"name":"OBJ_METAFILE","features":[14]},{"name":"OBJ_PAL","features":[14]},{"name":"OBJ_PEN","features":[14]},{"name":"OBJ_REGION","features":[14]},{"name":"OBJ_TYPE","features":[14]},{"name":"OEM_CHARSET","features":[14]},{"name":"OEM_FIXED_FONT","features":[14]},{"name":"OPAQUE","features":[14]},{"name":"OPENCHANNEL","features":[14]},{"name":"OUTLINETEXTMETRICA","features":[3,14]},{"name":"OUTLINETEXTMETRICW","features":[3,14]},{"name":"OUT_CHARACTER_PRECIS","features":[14]},{"name":"OUT_DEFAULT_PRECIS","features":[14]},{"name":"OUT_DEVICE_PRECIS","features":[14]},{"name":"OUT_OUTLINE_PRECIS","features":[14]},{"name":"OUT_PS_ONLY_PRECIS","features":[14]},{"name":"OUT_RASTER_PRECIS","features":[14]},{"name":"OUT_SCREEN_OUTLINE_PRECIS","features":[14]},{"name":"OUT_STRING_PRECIS","features":[14]},{"name":"OUT_STROKE_PRECIS","features":[14]},{"name":"OUT_TT_ONLY_PRECIS","features":[14]},{"name":"OUT_TT_PRECIS","features":[14]},{"name":"OffsetClipRgn","features":[14]},{"name":"OffsetRect","features":[3,14]},{"name":"OffsetRgn","features":[14]},{"name":"OffsetViewportOrgEx","features":[3,14]},{"name":"OffsetWindowOrgEx","features":[3,14]},{"name":"PAINTSTRUCT","features":[3,14]},{"name":"PALETTEENTRY","features":[14]},{"name":"PANOSE","features":[14]},{"name":"PANOSE_COUNT","features":[14]},{"name":"PAN_ANY","features":[14]},{"name":"PAN_ARMSTYLE_INDEX","features":[14]},{"name":"PAN_ARM_ANY","features":[14]},{"name":"PAN_ARM_NO_FIT","features":[14]},{"name":"PAN_ARM_STYLE","features":[14]},{"name":"PAN_BENT_ARMS_DOUBLE_SERIF","features":[14]},{"name":"PAN_BENT_ARMS_HORZ","features":[14]},{"name":"PAN_BENT_ARMS_SINGLE_SERIF","features":[14]},{"name":"PAN_BENT_ARMS_VERT","features":[14]},{"name":"PAN_BENT_ARMS_WEDGE","features":[14]},{"name":"PAN_CONTRAST","features":[14]},{"name":"PAN_CONTRAST_ANY","features":[14]},{"name":"PAN_CONTRAST_HIGH","features":[14]},{"name":"PAN_CONTRAST_INDEX","features":[14]},{"name":"PAN_CONTRAST_LOW","features":[14]},{"name":"PAN_CONTRAST_MEDIUM","features":[14]},{"name":"PAN_CONTRAST_MEDIUM_HIGH","features":[14]},{"name":"PAN_CONTRAST_MEDIUM_LOW","features":[14]},{"name":"PAN_CONTRAST_NONE","features":[14]},{"name":"PAN_CONTRAST_NO_FIT","features":[14]},{"name":"PAN_CONTRAST_VERY_HIGH","features":[14]},{"name":"PAN_CONTRAST_VERY_LOW","features":[14]},{"name":"PAN_CULTURE_LATIN","features":[14]},{"name":"PAN_FAMILYTYPE_INDEX","features":[14]},{"name":"PAN_FAMILY_ANY","features":[14]},{"name":"PAN_FAMILY_DECORATIVE","features":[14]},{"name":"PAN_FAMILY_NO_FIT","features":[14]},{"name":"PAN_FAMILY_PICTORIAL","features":[14]},{"name":"PAN_FAMILY_SCRIPT","features":[14]},{"name":"PAN_FAMILY_TEXT_DISPLAY","features":[14]},{"name":"PAN_FAMILY_TYPE","features":[14]},{"name":"PAN_LETTERFORM_INDEX","features":[14]},{"name":"PAN_LETT_FORM","features":[14]},{"name":"PAN_LETT_FORM_ANY","features":[14]},{"name":"PAN_LETT_FORM_NO_FIT","features":[14]},{"name":"PAN_LETT_NORMAL_BOXED","features":[14]},{"name":"PAN_LETT_NORMAL_CONTACT","features":[14]},{"name":"PAN_LETT_NORMAL_FLATTENED","features":[14]},{"name":"PAN_LETT_NORMAL_OFF_CENTER","features":[14]},{"name":"PAN_LETT_NORMAL_ROUNDED","features":[14]},{"name":"PAN_LETT_NORMAL_SQUARE","features":[14]},{"name":"PAN_LETT_NORMAL_WEIGHTED","features":[14]},{"name":"PAN_LETT_OBLIQUE_BOXED","features":[14]},{"name":"PAN_LETT_OBLIQUE_CONTACT","features":[14]},{"name":"PAN_LETT_OBLIQUE_FLATTENED","features":[14]},{"name":"PAN_LETT_OBLIQUE_OFF_CENTER","features":[14]},{"name":"PAN_LETT_OBLIQUE_ROUNDED","features":[14]},{"name":"PAN_LETT_OBLIQUE_SQUARE","features":[14]},{"name":"PAN_LETT_OBLIQUE_WEIGHTED","features":[14]},{"name":"PAN_MIDLINE","features":[14]},{"name":"PAN_MIDLINE_ANY","features":[14]},{"name":"PAN_MIDLINE_CONSTANT_POINTED","features":[14]},{"name":"PAN_MIDLINE_CONSTANT_SERIFED","features":[14]},{"name":"PAN_MIDLINE_CONSTANT_TRIMMED","features":[14]},{"name":"PAN_MIDLINE_HIGH_POINTED","features":[14]},{"name":"PAN_MIDLINE_HIGH_SERIFED","features":[14]},{"name":"PAN_MIDLINE_HIGH_TRIMMED","features":[14]},{"name":"PAN_MIDLINE_INDEX","features":[14]},{"name":"PAN_MIDLINE_LOW_POINTED","features":[14]},{"name":"PAN_MIDLINE_LOW_SERIFED","features":[14]},{"name":"PAN_MIDLINE_LOW_TRIMMED","features":[14]},{"name":"PAN_MIDLINE_NO_FIT","features":[14]},{"name":"PAN_MIDLINE_STANDARD_POINTED","features":[14]},{"name":"PAN_MIDLINE_STANDARD_SERIFED","features":[14]},{"name":"PAN_MIDLINE_STANDARD_TRIMMED","features":[14]},{"name":"PAN_NO_FIT","features":[14]},{"name":"PAN_PROPORTION","features":[14]},{"name":"PAN_PROPORTION_INDEX","features":[14]},{"name":"PAN_PROP_ANY","features":[14]},{"name":"PAN_PROP_CONDENSED","features":[14]},{"name":"PAN_PROP_EVEN_WIDTH","features":[14]},{"name":"PAN_PROP_EXPANDED","features":[14]},{"name":"PAN_PROP_MODERN","features":[14]},{"name":"PAN_PROP_MONOSPACED","features":[14]},{"name":"PAN_PROP_NO_FIT","features":[14]},{"name":"PAN_PROP_OLD_STYLE","features":[14]},{"name":"PAN_PROP_VERY_CONDENSED","features":[14]},{"name":"PAN_PROP_VERY_EXPANDED","features":[14]},{"name":"PAN_SERIFSTYLE_INDEX","features":[14]},{"name":"PAN_SERIF_ANY","features":[14]},{"name":"PAN_SERIF_BONE","features":[14]},{"name":"PAN_SERIF_COVE","features":[14]},{"name":"PAN_SERIF_EXAGGERATED","features":[14]},{"name":"PAN_SERIF_FLARED","features":[14]},{"name":"PAN_SERIF_NORMAL_SANS","features":[14]},{"name":"PAN_SERIF_NO_FIT","features":[14]},{"name":"PAN_SERIF_OBTUSE_COVE","features":[14]},{"name":"PAN_SERIF_OBTUSE_SANS","features":[14]},{"name":"PAN_SERIF_OBTUSE_SQUARE_COVE","features":[14]},{"name":"PAN_SERIF_PERP_SANS","features":[14]},{"name":"PAN_SERIF_ROUNDED","features":[14]},{"name":"PAN_SERIF_SQUARE","features":[14]},{"name":"PAN_SERIF_SQUARE_COVE","features":[14]},{"name":"PAN_SERIF_STYLE","features":[14]},{"name":"PAN_SERIF_THIN","features":[14]},{"name":"PAN_SERIF_TRIANGLE","features":[14]},{"name":"PAN_STRAIGHT_ARMS_DOUBLE_SERIF","features":[14]},{"name":"PAN_STRAIGHT_ARMS_HORZ","features":[14]},{"name":"PAN_STRAIGHT_ARMS_SINGLE_SERIF","features":[14]},{"name":"PAN_STRAIGHT_ARMS_VERT","features":[14]},{"name":"PAN_STRAIGHT_ARMS_WEDGE","features":[14]},{"name":"PAN_STROKEVARIATION_INDEX","features":[14]},{"name":"PAN_STROKE_ANY","features":[14]},{"name":"PAN_STROKE_GRADUAL_DIAG","features":[14]},{"name":"PAN_STROKE_GRADUAL_HORZ","features":[14]},{"name":"PAN_STROKE_GRADUAL_TRAN","features":[14]},{"name":"PAN_STROKE_GRADUAL_VERT","features":[14]},{"name":"PAN_STROKE_INSTANT_VERT","features":[14]},{"name":"PAN_STROKE_NO_FIT","features":[14]},{"name":"PAN_STROKE_RAPID_HORZ","features":[14]},{"name":"PAN_STROKE_RAPID_VERT","features":[14]},{"name":"PAN_STROKE_VARIATION","features":[14]},{"name":"PAN_WEIGHT","features":[14]},{"name":"PAN_WEIGHT_ANY","features":[14]},{"name":"PAN_WEIGHT_BLACK","features":[14]},{"name":"PAN_WEIGHT_BOLD","features":[14]},{"name":"PAN_WEIGHT_BOOK","features":[14]},{"name":"PAN_WEIGHT_DEMI","features":[14]},{"name":"PAN_WEIGHT_HEAVY","features":[14]},{"name":"PAN_WEIGHT_INDEX","features":[14]},{"name":"PAN_WEIGHT_LIGHT","features":[14]},{"name":"PAN_WEIGHT_MEDIUM","features":[14]},{"name":"PAN_WEIGHT_NORD","features":[14]},{"name":"PAN_WEIGHT_NO_FIT","features":[14]},{"name":"PAN_WEIGHT_THIN","features":[14]},{"name":"PAN_WEIGHT_VERY_LIGHT","features":[14]},{"name":"PAN_XHEIGHT","features":[14]},{"name":"PAN_XHEIGHT_ANY","features":[14]},{"name":"PAN_XHEIGHT_CONSTANT_LARGE","features":[14]},{"name":"PAN_XHEIGHT_CONSTANT_SMALL","features":[14]},{"name":"PAN_XHEIGHT_CONSTANT_STD","features":[14]},{"name":"PAN_XHEIGHT_DUCKING_LARGE","features":[14]},{"name":"PAN_XHEIGHT_DUCKING_SMALL","features":[14]},{"name":"PAN_XHEIGHT_DUCKING_STD","features":[14]},{"name":"PAN_XHEIGHT_INDEX","features":[14]},{"name":"PAN_XHEIGHT_NO_FIT","features":[14]},{"name":"PASSTHROUGH","features":[14]},{"name":"PATCOPY","features":[14]},{"name":"PATINVERT","features":[14]},{"name":"PATPAINT","features":[14]},{"name":"PC_EXPLICIT","features":[14]},{"name":"PC_INTERIORS","features":[14]},{"name":"PC_NOCOLLAPSE","features":[14]},{"name":"PC_NONE","features":[14]},{"name":"PC_PATHS","features":[14]},{"name":"PC_POLYGON","features":[14]},{"name":"PC_POLYPOLYGON","features":[14]},{"name":"PC_RECTANGLE","features":[14]},{"name":"PC_RESERVED","features":[14]},{"name":"PC_SCANLINE","features":[14]},{"name":"PC_STYLED","features":[14]},{"name":"PC_TRAPEZOID","features":[14]},{"name":"PC_WIDE","features":[14]},{"name":"PC_WIDESTYLED","features":[14]},{"name":"PC_WINDPOLYGON","features":[14]},{"name":"PDEVICESIZE","features":[14]},{"name":"PELARRAY","features":[14]},{"name":"PEN_STYLE","features":[14]},{"name":"PHYSICALHEIGHT","features":[14]},{"name":"PHYSICALOFFSETX","features":[14]},{"name":"PHYSICALOFFSETY","features":[14]},{"name":"PHYSICALWIDTH","features":[14]},{"name":"PLANES","features":[14]},{"name":"POINTFX","features":[14]},{"name":"POLYFILL_LAST","features":[14]},{"name":"POLYGONALCAPS","features":[14]},{"name":"POLYTEXTA","features":[3,14]},{"name":"POLYTEXTW","features":[3,14]},{"name":"POSTSCRIPT_DATA","features":[14]},{"name":"POSTSCRIPT_IDENTIFY","features":[14]},{"name":"POSTSCRIPT_IGNORE","features":[14]},{"name":"POSTSCRIPT_INJECTION","features":[14]},{"name":"POSTSCRIPT_PASSTHROUGH","features":[14]},{"name":"PRINTRATEUNIT_CPS","features":[14]},{"name":"PRINTRATEUNIT_IPM","features":[14]},{"name":"PRINTRATEUNIT_LPM","features":[14]},{"name":"PRINTRATEUNIT_PPM","features":[14]},{"name":"PROOF_QUALITY","features":[14]},{"name":"PR_JOBSTATUS","features":[14]},{"name":"PSIDENT_GDICENTRIC","features":[14]},{"name":"PSIDENT_PSCENTRIC","features":[14]},{"name":"PSINJECT_DLFONT","features":[14]},{"name":"PSPROTOCOL_ASCII","features":[14]},{"name":"PSPROTOCOL_BCP","features":[14]},{"name":"PSPROTOCOL_BINARY","features":[14]},{"name":"PSPROTOCOL_TBCP","features":[14]},{"name":"PS_ALTERNATE","features":[14]},{"name":"PS_COSMETIC","features":[14]},{"name":"PS_DASH","features":[14]},{"name":"PS_DASHDOT","features":[14]},{"name":"PS_DASHDOTDOT","features":[14]},{"name":"PS_DOT","features":[14]},{"name":"PS_ENDCAP_FLAT","features":[14]},{"name":"PS_ENDCAP_MASK","features":[14]},{"name":"PS_ENDCAP_ROUND","features":[14]},{"name":"PS_ENDCAP_SQUARE","features":[14]},{"name":"PS_GEOMETRIC","features":[14]},{"name":"PS_INSIDEFRAME","features":[14]},{"name":"PS_JOIN_BEVEL","features":[14]},{"name":"PS_JOIN_MASK","features":[14]},{"name":"PS_JOIN_MITER","features":[14]},{"name":"PS_JOIN_ROUND","features":[14]},{"name":"PS_NULL","features":[14]},{"name":"PS_SOLID","features":[14]},{"name":"PS_STYLE_MASK","features":[14]},{"name":"PS_TYPE_MASK","features":[14]},{"name":"PS_USERSTYLE","features":[14]},{"name":"PT_BEZIERTO","features":[14]},{"name":"PT_CLOSEFIGURE","features":[14]},{"name":"PT_LINETO","features":[14]},{"name":"PT_MOVETO","features":[14]},{"name":"PaintDesktop","features":[3,14]},{"name":"PaintRgn","features":[3,14]},{"name":"PatBlt","features":[3,14]},{"name":"PathToRegion","features":[14]},{"name":"Pie","features":[3,14]},{"name":"PlayEnhMetaFile","features":[3,14]},{"name":"PlayEnhMetaFileRecord","features":[3,14]},{"name":"PlayMetaFile","features":[3,14]},{"name":"PlayMetaFileRecord","features":[3,14]},{"name":"PlgBlt","features":[3,14]},{"name":"PolyBezier","features":[3,14]},{"name":"PolyBezierTo","features":[3,14]},{"name":"PolyDraw","features":[3,14]},{"name":"PolyPolygon","features":[3,14]},{"name":"PolyPolyline","features":[3,14]},{"name":"PolyTextOutA","features":[3,14]},{"name":"PolyTextOutW","features":[3,14]},{"name":"Polygon","features":[3,14]},{"name":"Polyline","features":[3,14]},{"name":"PolylineTo","features":[3,14]},{"name":"PtInRect","features":[3,14]},{"name":"PtInRegion","features":[3,14]},{"name":"PtVisible","features":[3,14]},{"name":"QDI_DIBTOSCREEN","features":[14]},{"name":"QDI_GETDIBITS","features":[14]},{"name":"QDI_SETDIBITS","features":[14]},{"name":"QDI_STRETCHDIB","features":[14]},{"name":"QUERYDIBSUPPORT","features":[14]},{"name":"QUERYESCSUPPORT","features":[14]},{"name":"QUERYROPSUPPORT","features":[14]},{"name":"R2_BLACK","features":[14]},{"name":"R2_COPYPEN","features":[14]},{"name":"R2_LAST","features":[14]},{"name":"R2_MASKNOTPEN","features":[14]},{"name":"R2_MASKPEN","features":[14]},{"name":"R2_MASKPENNOT","features":[14]},{"name":"R2_MERGENOTPEN","features":[14]},{"name":"R2_MERGEPEN","features":[14]},{"name":"R2_MERGEPENNOT","features":[14]},{"name":"R2_MODE","features":[14]},{"name":"R2_NOP","features":[14]},{"name":"R2_NOT","features":[14]},{"name":"R2_NOTCOPYPEN","features":[14]},{"name":"R2_NOTMASKPEN","features":[14]},{"name":"R2_NOTMERGEPEN","features":[14]},{"name":"R2_NOTXORPEN","features":[14]},{"name":"R2_WHITE","features":[14]},{"name":"R2_XORPEN","features":[14]},{"name":"RASTERCAPS","features":[14]},{"name":"RASTERIZER_STATUS","features":[14]},{"name":"RASTER_FONTTYPE","features":[14]},{"name":"RC_BANDING","features":[14]},{"name":"RC_BIGFONT","features":[14]},{"name":"RC_BITBLT","features":[14]},{"name":"RC_BITMAP64","features":[14]},{"name":"RC_DEVBITS","features":[14]},{"name":"RC_DIBTODEV","features":[14]},{"name":"RC_DI_BITMAP","features":[14]},{"name":"RC_FLOODFILL","features":[14]},{"name":"RC_GDI20_OUTPUT","features":[14]},{"name":"RC_GDI20_STATE","features":[14]},{"name":"RC_OP_DX_OUTPUT","features":[14]},{"name":"RC_PALETTE","features":[14]},{"name":"RC_SAVEBITMAP","features":[14]},{"name":"RC_SCALING","features":[14]},{"name":"RC_STRETCHBLT","features":[14]},{"name":"RC_STRETCHDIB","features":[14]},{"name":"RDH_RECTANGLES","features":[14]},{"name":"RDW_ALLCHILDREN","features":[14]},{"name":"RDW_ERASE","features":[14]},{"name":"RDW_ERASENOW","features":[14]},{"name":"RDW_FRAME","features":[14]},{"name":"RDW_INTERNALPAINT","features":[14]},{"name":"RDW_INVALIDATE","features":[14]},{"name":"RDW_NOCHILDREN","features":[14]},{"name":"RDW_NOERASE","features":[14]},{"name":"RDW_NOFRAME","features":[14]},{"name":"RDW_NOINTERNALPAINT","features":[14]},{"name":"RDW_UPDATENOW","features":[14]},{"name":"RDW_VALIDATE","features":[14]},{"name":"READEMBEDPROC","features":[14]},{"name":"REDRAW_WINDOW_FLAGS","features":[14]},{"name":"RELATIVE","features":[14]},{"name":"RESTORE_CTM","features":[14]},{"name":"RGBQUAD","features":[14]},{"name":"RGBTRIPLE","features":[14]},{"name":"RGNDATA","features":[3,14]},{"name":"RGNDATAHEADER","features":[3,14]},{"name":"RGN_AND","features":[14]},{"name":"RGN_COMBINE_MODE","features":[14]},{"name":"RGN_COPY","features":[14]},{"name":"RGN_DIFF","features":[14]},{"name":"RGN_ERROR","features":[14]},{"name":"RGN_MAX","features":[14]},{"name":"RGN_MIN","features":[14]},{"name":"RGN_OR","features":[14]},{"name":"RGN_XOR","features":[14]},{"name":"ROP_CODE","features":[14]},{"name":"RUSSIAN_CHARSET","features":[14]},{"name":"RealizePalette","features":[14]},{"name":"RectInRegion","features":[3,14]},{"name":"RectVisible","features":[3,14]},{"name":"Rectangle","features":[3,14]},{"name":"RedrawWindow","features":[3,14]},{"name":"ReleaseDC","features":[3,14]},{"name":"RemoveFontMemResourceEx","features":[3,14]},{"name":"RemoveFontResourceA","features":[3,14]},{"name":"RemoveFontResourceExA","features":[3,14]},{"name":"RemoveFontResourceExW","features":[3,14]},{"name":"RemoveFontResourceW","features":[3,14]},{"name":"ResetDCA","features":[3,14]},{"name":"ResetDCW","features":[3,14]},{"name":"ResizePalette","features":[3,14]},{"name":"RestoreDC","features":[3,14]},{"name":"RoundRect","features":[3,14]},{"name":"SAVE_CTM","features":[14]},{"name":"SB_CONST_ALPHA","features":[14]},{"name":"SB_GRAD_RECT","features":[14]},{"name":"SB_GRAD_TRI","features":[14]},{"name":"SB_NONE","features":[14]},{"name":"SB_PIXEL_ALPHA","features":[14]},{"name":"SB_PREMULT_ALPHA","features":[14]},{"name":"SCALINGFACTORX","features":[14]},{"name":"SCALINGFACTORY","features":[14]},{"name":"SC_SCREENSAVE","features":[14]},{"name":"SELECTDIB","features":[14]},{"name":"SELECTPAPERSOURCE","features":[14]},{"name":"SETABORTPROC","features":[14]},{"name":"SETALLJUSTVALUES","features":[14]},{"name":"SETCHARSET","features":[14]},{"name":"SETCOLORTABLE","features":[14]},{"name":"SETCOPYCOUNT","features":[14]},{"name":"SETDIBSCALING","features":[14]},{"name":"SETICMPROFILE_EMBEDED","features":[14]},{"name":"SETKERNTRACK","features":[14]},{"name":"SETLINECAP","features":[14]},{"name":"SETLINEJOIN","features":[14]},{"name":"SETMITERLIMIT","features":[14]},{"name":"SET_ARC_DIRECTION","features":[14]},{"name":"SET_BACKGROUND_COLOR","features":[14]},{"name":"SET_BOUNDS","features":[14]},{"name":"SET_BOUNDS_RECT_FLAGS","features":[14]},{"name":"SET_CLIP_BOX","features":[14]},{"name":"SET_MIRROR_MODE","features":[14]},{"name":"SET_POLY_MODE","features":[14]},{"name":"SET_SCREEN_ANGLE","features":[14]},{"name":"SET_SPREAD","features":[14]},{"name":"SHADEBLENDCAPS","features":[14]},{"name":"SHIFTJIS_CHARSET","features":[14]},{"name":"SIMPLEREGION","features":[14]},{"name":"SIZEPALETTE","features":[14]},{"name":"SPCLPASSTHROUGH2","features":[14]},{"name":"SP_APPABORT","features":[14]},{"name":"SP_ERROR","features":[14]},{"name":"SP_NOTREPORTED","features":[14]},{"name":"SP_OUTOFDISK","features":[14]},{"name":"SP_OUTOFMEMORY","features":[14]},{"name":"SP_USERABORT","features":[14]},{"name":"SRCAND","features":[14]},{"name":"SRCCOPY","features":[14]},{"name":"SRCERASE","features":[14]},{"name":"SRCINVERT","features":[14]},{"name":"SRCPAINT","features":[14]},{"name":"STARTDOC","features":[14]},{"name":"STOCK_LAST","features":[14]},{"name":"STRETCHBLT","features":[14]},{"name":"STRETCH_ANDSCANS","features":[14]},{"name":"STRETCH_BLT_MODE","features":[14]},{"name":"STRETCH_DELETESCANS","features":[14]},{"name":"STRETCH_HALFTONE","features":[14]},{"name":"STRETCH_ORSCANS","features":[14]},{"name":"SYMBOL_CHARSET","features":[14]},{"name":"SYSPAL_ERROR","features":[14]},{"name":"SYSPAL_NOSTATIC","features":[14]},{"name":"SYSPAL_NOSTATIC256","features":[14]},{"name":"SYSPAL_STATIC","features":[14]},{"name":"SYSRGN","features":[14]},{"name":"SYSTEM_FIXED_FONT","features":[14]},{"name":"SYSTEM_FONT","features":[14]},{"name":"SYSTEM_PALETTE_USE","features":[14]},{"name":"SYS_COLOR_INDEX","features":[14]},{"name":"SaveDC","features":[14]},{"name":"ScaleViewportExtEx","features":[3,14]},{"name":"ScaleWindowExtEx","features":[3,14]},{"name":"ScreenToClient","features":[3,14]},{"name":"SelectClipPath","features":[3,14]},{"name":"SelectClipRgn","features":[14]},{"name":"SelectObject","features":[14]},{"name":"SelectPalette","features":[3,14]},{"name":"SetArcDirection","features":[14]},{"name":"SetBitmapBits","features":[14]},{"name":"SetBitmapDimensionEx","features":[3,14]},{"name":"SetBkColor","features":[3,14]},{"name":"SetBkMode","features":[14]},{"name":"SetBoundsRect","features":[3,14]},{"name":"SetBrushOrgEx","features":[3,14]},{"name":"SetColorAdjustment","features":[3,14]},{"name":"SetDCBrushColor","features":[3,14]},{"name":"SetDCPenColor","features":[3,14]},{"name":"SetDIBColorTable","features":[14]},{"name":"SetDIBits","features":[14]},{"name":"SetDIBitsToDevice","features":[14]},{"name":"SetEnhMetaFileBits","features":[14]},{"name":"SetGraphicsMode","features":[14]},{"name":"SetLayout","features":[14]},{"name":"SetMapMode","features":[14]},{"name":"SetMapperFlags","features":[14]},{"name":"SetMetaFileBitsEx","features":[14]},{"name":"SetMetaRgn","features":[14]},{"name":"SetMiterLimit","features":[3,14]},{"name":"SetPaletteEntries","features":[14]},{"name":"SetPixel","features":[3,14]},{"name":"SetPixelV","features":[3,14]},{"name":"SetPolyFillMode","features":[14]},{"name":"SetROP2","features":[14]},{"name":"SetRect","features":[3,14]},{"name":"SetRectEmpty","features":[3,14]},{"name":"SetRectRgn","features":[3,14]},{"name":"SetStretchBltMode","features":[14]},{"name":"SetSysColors","features":[3,14]},{"name":"SetSystemPaletteUse","features":[14]},{"name":"SetTextAlign","features":[14]},{"name":"SetTextCharacterExtra","features":[14]},{"name":"SetTextColor","features":[3,14]},{"name":"SetTextJustification","features":[3,14]},{"name":"SetViewportExtEx","features":[3,14]},{"name":"SetViewportOrgEx","features":[3,14]},{"name":"SetWindowExtEx","features":[3,14]},{"name":"SetWindowOrgEx","features":[3,14]},{"name":"SetWindowRgn","features":[3,14]},{"name":"SetWorldTransform","features":[3,14]},{"name":"StretchBlt","features":[3,14]},{"name":"StretchDIBits","features":[14]},{"name":"StrokeAndFillPath","features":[3,14]},{"name":"StrokePath","features":[3,14]},{"name":"SubtractRect","features":[3,14]},{"name":"TA_BASELINE","features":[14]},{"name":"TA_BOTTOM","features":[14]},{"name":"TA_CENTER","features":[14]},{"name":"TA_LEFT","features":[14]},{"name":"TA_MASK","features":[14]},{"name":"TA_NOUPDATECP","features":[14]},{"name":"TA_RIGHT","features":[14]},{"name":"TA_RTLREADING","features":[14]},{"name":"TA_TOP","features":[14]},{"name":"TA_UPDATECP","features":[14]},{"name":"TC_CP_STROKE","features":[14]},{"name":"TC_CR_90","features":[14]},{"name":"TC_CR_ANY","features":[14]},{"name":"TC_EA_DOUBLE","features":[14]},{"name":"TC_IA_ABLE","features":[14]},{"name":"TC_OP_CHARACTER","features":[14]},{"name":"TC_OP_STROKE","features":[14]},{"name":"TC_RA_ABLE","features":[14]},{"name":"TC_RESERVED","features":[14]},{"name":"TC_SA_CONTIN","features":[14]},{"name":"TC_SA_DOUBLE","features":[14]},{"name":"TC_SA_INTEGER","features":[14]},{"name":"TC_SCROLLBLT","features":[14]},{"name":"TC_SF_X_YINDEP","features":[14]},{"name":"TC_SO_ABLE","features":[14]},{"name":"TC_UA_ABLE","features":[14]},{"name":"TC_VA_ABLE","features":[14]},{"name":"TECHNOLOGY","features":[14]},{"name":"TEXTCAPS","features":[14]},{"name":"TEXTMETRICA","features":[14]},{"name":"TEXTMETRICW","features":[14]},{"name":"TEXT_ALIGN_OPTIONS","features":[14]},{"name":"THAI_CHARSET","features":[14]},{"name":"TMPF_DEVICE","features":[14]},{"name":"TMPF_FIXED_PITCH","features":[14]},{"name":"TMPF_FLAGS","features":[14]},{"name":"TMPF_TRUETYPE","features":[14]},{"name":"TMPF_VECTOR","features":[14]},{"name":"TRANSFORM_CTM","features":[14]},{"name":"TRANSPARENT","features":[14]},{"name":"TRIVERTEX","features":[14]},{"name":"TRUETYPE_FONTTYPE","features":[14]},{"name":"TTCharToUnicode","features":[14]},{"name":"TTDELETE_DONTREMOVEFONT","features":[14]},{"name":"TTDeleteEmbeddedFont","features":[3,14]},{"name":"TTEMBEDINFO","features":[14]},{"name":"TTEMBED_EMBEDEUDC","features":[14]},{"name":"TTEMBED_EUDCEMBEDDED","features":[14]},{"name":"TTEMBED_FAILIFVARIATIONSIMULATED","features":[14]},{"name":"TTEMBED_FLAGS","features":[14]},{"name":"TTEMBED_RAW","features":[14]},{"name":"TTEMBED_SUBSET","features":[14]},{"name":"TTEMBED_SUBSETCANCEL","features":[14]},{"name":"TTEMBED_TTCOMPRESSED","features":[14]},{"name":"TTEMBED_VARIATIONSIMULATED","features":[14]},{"name":"TTEMBED_WEBOBJECT","features":[14]},{"name":"TTEMBED_XORENCRYPTDATA","features":[14]},{"name":"TTEmbedFont","features":[14]},{"name":"TTEmbedFontEx","features":[14]},{"name":"TTEmbedFontFromFileA","features":[14]},{"name":"TTEnableEmbeddingForFacename","features":[3,14]},{"name":"TTFCFP_APPLE_PLATFORMID","features":[14]},{"name":"TTFCFP_DELTA","features":[14]},{"name":"TTFCFP_DONT_CARE","features":[14]},{"name":"TTFCFP_FLAGS_COMPRESS","features":[14]},{"name":"TTFCFP_FLAGS_GLYPHLIST","features":[14]},{"name":"TTFCFP_FLAGS_SUBSET","features":[14]},{"name":"TTFCFP_FLAGS_TTC","features":[14]},{"name":"TTFCFP_ISO_PLATFORMID","features":[14]},{"name":"TTFCFP_LANG_KEEP_ALL","features":[14]},{"name":"TTFCFP_MS_PLATFORMID","features":[14]},{"name":"TTFCFP_STD_MAC_CHAR_SET","features":[14]},{"name":"TTFCFP_SUBSET","features":[14]},{"name":"TTFCFP_SUBSET1","features":[14]},{"name":"TTFCFP_SYMBOL_CHAR_SET","features":[14]},{"name":"TTFCFP_UNICODE_CHAR_SET","features":[14]},{"name":"TTFCFP_UNICODE_PLATFORMID","features":[14]},{"name":"TTFMFP_DELTA","features":[14]},{"name":"TTFMFP_SUBSET","features":[14]},{"name":"TTFMFP_SUBSET1","features":[14]},{"name":"TTGetEmbeddedFontInfo","features":[14]},{"name":"TTGetEmbeddingType","features":[14]},{"name":"TTGetNewFontName","features":[3,14]},{"name":"TTIsEmbeddingEnabled","features":[3,14]},{"name":"TTIsEmbeddingEnabledForFacename","features":[3,14]},{"name":"TTLOADINFO","features":[14]},{"name":"TTLOAD_EMBEDDED_FONT_STATUS","features":[14]},{"name":"TTLOAD_EUDC_OVERWRITE","features":[14]},{"name":"TTLOAD_EUDC_SET","features":[14]},{"name":"TTLOAD_FONT_IN_SYSSTARTUP","features":[14]},{"name":"TTLOAD_FONT_SUBSETTED","features":[14]},{"name":"TTLOAD_PRIVATE","features":[14]},{"name":"TTLoadEmbeddedFont","features":[3,14]},{"name":"TTPOLYCURVE","features":[14]},{"name":"TTPOLYGONHEADER","features":[14]},{"name":"TTRunValidationTests","features":[14]},{"name":"TTRunValidationTestsEx","features":[14]},{"name":"TTVALIDATIONTESTSPARAMS","features":[14]},{"name":"TTVALIDATIONTESTSPARAMSEX","features":[14]},{"name":"TT_AVAILABLE","features":[14]},{"name":"TT_ENABLED","features":[14]},{"name":"TT_POLYGON_TYPE","features":[14]},{"name":"TT_PRIM_CSPLINE","features":[14]},{"name":"TT_PRIM_LINE","features":[14]},{"name":"TT_PRIM_QSPLINE","features":[14]},{"name":"TURKISH_CHARSET","features":[14]},{"name":"TabbedTextOutA","features":[14]},{"name":"TabbedTextOutW","features":[14]},{"name":"TextOutA","features":[3,14]},{"name":"TextOutW","features":[3,14]},{"name":"TransparentBlt","features":[3,14]},{"name":"UnionRect","features":[3,14]},{"name":"UnrealizeObject","features":[3,14]},{"name":"UpdateColors","features":[3,14]},{"name":"UpdateWindow","features":[3,14]},{"name":"VARIABLE_PITCH","features":[14]},{"name":"VERTRES","features":[14]},{"name":"VERTSIZE","features":[14]},{"name":"VIETNAMESE_CHARSET","features":[14]},{"name":"VREFRESH","features":[14]},{"name":"VTA_BASELINE","features":[14]},{"name":"VTA_BOTTOM","features":[14]},{"name":"VTA_CENTER","features":[14]},{"name":"VTA_LEFT","features":[14]},{"name":"VTA_RIGHT","features":[14]},{"name":"VTA_TOP","features":[14]},{"name":"ValidateRect","features":[3,14]},{"name":"ValidateRgn","features":[3,14]},{"name":"WCRANGE","features":[14]},{"name":"WGLSWAP","features":[14]},{"name":"WGL_FONT_LINES","features":[14]},{"name":"WGL_FONT_POLYGONS","features":[14]},{"name":"WGL_SWAPMULTIPLE_MAX","features":[14]},{"name":"WGL_SWAP_MAIN_PLANE","features":[14]},{"name":"WGL_SWAP_OVERLAY1","features":[14]},{"name":"WGL_SWAP_OVERLAY10","features":[14]},{"name":"WGL_SWAP_OVERLAY11","features":[14]},{"name":"WGL_SWAP_OVERLAY12","features":[14]},{"name":"WGL_SWAP_OVERLAY13","features":[14]},{"name":"WGL_SWAP_OVERLAY14","features":[14]},{"name":"WGL_SWAP_OVERLAY15","features":[14]},{"name":"WGL_SWAP_OVERLAY2","features":[14]},{"name":"WGL_SWAP_OVERLAY3","features":[14]},{"name":"WGL_SWAP_OVERLAY4","features":[14]},{"name":"WGL_SWAP_OVERLAY5","features":[14]},{"name":"WGL_SWAP_OVERLAY6","features":[14]},{"name":"WGL_SWAP_OVERLAY7","features":[14]},{"name":"WGL_SWAP_OVERLAY8","features":[14]},{"name":"WGL_SWAP_OVERLAY9","features":[14]},{"name":"WGL_SWAP_UNDERLAY1","features":[14]},{"name":"WGL_SWAP_UNDERLAY10","features":[14]},{"name":"WGL_SWAP_UNDERLAY11","features":[14]},{"name":"WGL_SWAP_UNDERLAY12","features":[14]},{"name":"WGL_SWAP_UNDERLAY13","features":[14]},{"name":"WGL_SWAP_UNDERLAY14","features":[14]},{"name":"WGL_SWAP_UNDERLAY15","features":[14]},{"name":"WGL_SWAP_UNDERLAY2","features":[14]},{"name":"WGL_SWAP_UNDERLAY3","features":[14]},{"name":"WGL_SWAP_UNDERLAY4","features":[14]},{"name":"WGL_SWAP_UNDERLAY5","features":[14]},{"name":"WGL_SWAP_UNDERLAY6","features":[14]},{"name":"WGL_SWAP_UNDERLAY7","features":[14]},{"name":"WGL_SWAP_UNDERLAY8","features":[14]},{"name":"WGL_SWAP_UNDERLAY9","features":[14]},{"name":"WHITENESS","features":[14]},{"name":"WHITEONBLACK","features":[14]},{"name":"WHITE_BRUSH","features":[14]},{"name":"WHITE_PEN","features":[14]},{"name":"WINDING","features":[14]},{"name":"WRITEEMBEDPROC","features":[14]},{"name":"WidenPath","features":[3,14]},{"name":"WindowFromDC","features":[3,14]},{"name":"XFORM","features":[14]},{"name":"wglSwapMultipleBuffers","features":[14]}],"416":[{"name":"ALPHA_SHIFT","features":[74]},{"name":"Aborted","features":[74]},{"name":"AccessDenied","features":[74]},{"name":"AdjustBlackSaturation","features":[74]},{"name":"AdjustContrast","features":[74]},{"name":"AdjustDensity","features":[74]},{"name":"AdjustExposure","features":[74]},{"name":"AdjustHighlight","features":[74]},{"name":"AdjustMidtone","features":[74]},{"name":"AdjustShadow","features":[74]},{"name":"AdjustWhiteSaturation","features":[74]},{"name":"BLUE_SHIFT","features":[74]},{"name":"Bitmap","features":[74]},{"name":"BitmapData","features":[74]},{"name":"Blur","features":[3,74]},{"name":"BlurEffectGuid","features":[74]},{"name":"BlurParams","features":[3,74]},{"name":"BrightnessContrast","features":[3,74]},{"name":"BrightnessContrastEffectGuid","features":[74]},{"name":"BrightnessContrastParams","features":[74]},{"name":"BrushType","features":[74]},{"name":"BrushTypeHatchFill","features":[74]},{"name":"BrushTypeLinearGradient","features":[74]},{"name":"BrushTypePathGradient","features":[74]},{"name":"BrushTypeSolidColor","features":[74]},{"name":"BrushTypeTextureFill","features":[74]},{"name":"CGpEffect","features":[74]},{"name":"CachedBitmap","features":[74]},{"name":"CharacterRange","features":[74]},{"name":"CodecIImageBytes","features":[74]},{"name":"Color","features":[74]},{"name":"ColorAdjustType","features":[74]},{"name":"ColorAdjustTypeAny","features":[74]},{"name":"ColorAdjustTypeBitmap","features":[74]},{"name":"ColorAdjustTypeBrush","features":[74]},{"name":"ColorAdjustTypeCount","features":[74]},{"name":"ColorAdjustTypeDefault","features":[74]},{"name":"ColorAdjustTypePen","features":[74]},{"name":"ColorAdjustTypeText","features":[74]},{"name":"ColorBalance","features":[3,74]},{"name":"ColorBalanceEffectGuid","features":[74]},{"name":"ColorBalanceParams","features":[74]},{"name":"ColorChannelFlags","features":[74]},{"name":"ColorChannelFlagsC","features":[74]},{"name":"ColorChannelFlagsK","features":[74]},{"name":"ColorChannelFlagsLast","features":[74]},{"name":"ColorChannelFlagsM","features":[74]},{"name":"ColorChannelFlagsY","features":[74]},{"name":"ColorCurve","features":[3,74]},{"name":"ColorCurveEffectGuid","features":[74]},{"name":"ColorCurveParams","features":[74]},{"name":"ColorLUT","features":[3,74]},{"name":"ColorLUTEffectGuid","features":[74]},{"name":"ColorLUTParams","features":[74]},{"name":"ColorMap","features":[74]},{"name":"ColorMatrix","features":[74]},{"name":"ColorMatrixEffect","features":[3,74]},{"name":"ColorMatrixEffectGuid","features":[74]},{"name":"ColorMatrixFlags","features":[74]},{"name":"ColorMatrixFlagsAltGray","features":[74]},{"name":"ColorMatrixFlagsDefault","features":[74]},{"name":"ColorMatrixFlagsSkipGrays","features":[74]},{"name":"ColorMode","features":[74]},{"name":"ColorModeARGB32","features":[74]},{"name":"ColorModeARGB64","features":[74]},{"name":"ColorPalette","features":[74]},{"name":"CombineMode","features":[74]},{"name":"CombineModeComplement","features":[74]},{"name":"CombineModeExclude","features":[74]},{"name":"CombineModeIntersect","features":[74]},{"name":"CombineModeReplace","features":[74]},{"name":"CombineModeUnion","features":[74]},{"name":"CombineModeXor","features":[74]},{"name":"CompositingMode","features":[74]},{"name":"CompositingModeSourceCopy","features":[74]},{"name":"CompositingModeSourceOver","features":[74]},{"name":"CompositingQuality","features":[74]},{"name":"CompositingQualityAssumeLinear","features":[74]},{"name":"CompositingQualityDefault","features":[74]},{"name":"CompositingQualityGammaCorrected","features":[74]},{"name":"CompositingQualityHighQuality","features":[74]},{"name":"CompositingQualityHighSpeed","features":[74]},{"name":"CompositingQualityInvalid","features":[74]},{"name":"ConvertToEmfPlusFlags","features":[74]},{"name":"ConvertToEmfPlusFlagsDefault","features":[74]},{"name":"ConvertToEmfPlusFlagsInvalidRecord","features":[74]},{"name":"ConvertToEmfPlusFlagsRopUsed","features":[74]},{"name":"ConvertToEmfPlusFlagsText","features":[74]},{"name":"CoordinateSpace","features":[74]},{"name":"CoordinateSpaceDevice","features":[74]},{"name":"CoordinateSpacePage","features":[74]},{"name":"CoordinateSpaceWorld","features":[74]},{"name":"CurveAdjustments","features":[74]},{"name":"CurveChannel","features":[74]},{"name":"CurveChannelAll","features":[74]},{"name":"CurveChannelBlue","features":[74]},{"name":"CurveChannelGreen","features":[74]},{"name":"CurveChannelRed","features":[74]},{"name":"CustomLineCap","features":[74]},{"name":"CustomLineCapType","features":[74]},{"name":"CustomLineCapTypeAdjustableArrow","features":[74]},{"name":"CustomLineCapTypeDefault","features":[74]},{"name":"DashCap","features":[74]},{"name":"DashCapFlat","features":[74]},{"name":"DashCapRound","features":[74]},{"name":"DashCapTriangle","features":[74]},{"name":"DashStyle","features":[74]},{"name":"DashStyleCustom","features":[74]},{"name":"DashStyleDash","features":[74]},{"name":"DashStyleDashDot","features":[74]},{"name":"DashStyleDashDotDot","features":[74]},{"name":"DashStyleDot","features":[74]},{"name":"DashStyleSolid","features":[74]},{"name":"DebugEventLevel","features":[74]},{"name":"DebugEventLevelFatal","features":[74]},{"name":"DebugEventLevelWarning","features":[74]},{"name":"DebugEventProc","features":[74]},{"name":"DitherType","features":[74]},{"name":"DitherTypeDualSpiral4x4","features":[74]},{"name":"DitherTypeDualSpiral8x8","features":[74]},{"name":"DitherTypeErrorDiffusion","features":[74]},{"name":"DitherTypeMax","features":[74]},{"name":"DitherTypeNone","features":[74]},{"name":"DitherTypeOrdered16x16","features":[74]},{"name":"DitherTypeOrdered4x4","features":[74]},{"name":"DitherTypeOrdered8x8","features":[74]},{"name":"DitherTypeSolid","features":[74]},{"name":"DitherTypeSpiral4x4","features":[74]},{"name":"DitherTypeSpiral8x8","features":[74]},{"name":"DrawImageAbort","features":[3,74]},{"name":"DriverStringOptions","features":[74]},{"name":"DriverStringOptionsCmapLookup","features":[74]},{"name":"DriverStringOptionsLimitSubpixel","features":[74]},{"name":"DriverStringOptionsRealizedAdvance","features":[74]},{"name":"DriverStringOptionsVertical","features":[74]},{"name":"ENHMETAHEADER3","features":[3,74]},{"name":"Effect","features":[3,74]},{"name":"EmfPlusRecordTotal","features":[74]},{"name":"EmfPlusRecordType","features":[74]},{"name":"EmfPlusRecordTypeBeginContainer","features":[74]},{"name":"EmfPlusRecordTypeBeginContainerNoParams","features":[74]},{"name":"EmfPlusRecordTypeClear","features":[74]},{"name":"EmfPlusRecordTypeComment","features":[74]},{"name":"EmfPlusRecordTypeDrawArc","features":[74]},{"name":"EmfPlusRecordTypeDrawBeziers","features":[74]},{"name":"EmfPlusRecordTypeDrawClosedCurve","features":[74]},{"name":"EmfPlusRecordTypeDrawCurve","features":[74]},{"name":"EmfPlusRecordTypeDrawDriverString","features":[74]},{"name":"EmfPlusRecordTypeDrawEllipse","features":[74]},{"name":"EmfPlusRecordTypeDrawImage","features":[74]},{"name":"EmfPlusRecordTypeDrawImagePoints","features":[74]},{"name":"EmfPlusRecordTypeDrawLines","features":[74]},{"name":"EmfPlusRecordTypeDrawPath","features":[74]},{"name":"EmfPlusRecordTypeDrawPie","features":[74]},{"name":"EmfPlusRecordTypeDrawRects","features":[74]},{"name":"EmfPlusRecordTypeDrawString","features":[74]},{"name":"EmfPlusRecordTypeEndContainer","features":[74]},{"name":"EmfPlusRecordTypeEndOfFile","features":[74]},{"name":"EmfPlusRecordTypeFillClosedCurve","features":[74]},{"name":"EmfPlusRecordTypeFillEllipse","features":[74]},{"name":"EmfPlusRecordTypeFillPath","features":[74]},{"name":"EmfPlusRecordTypeFillPie","features":[74]},{"name":"EmfPlusRecordTypeFillPolygon","features":[74]},{"name":"EmfPlusRecordTypeFillRects","features":[74]},{"name":"EmfPlusRecordTypeFillRegion","features":[74]},{"name":"EmfPlusRecordTypeGetDC","features":[74]},{"name":"EmfPlusRecordTypeHeader","features":[74]},{"name":"EmfPlusRecordTypeInvalid","features":[74]},{"name":"EmfPlusRecordTypeMax","features":[74]},{"name":"EmfPlusRecordTypeMin","features":[74]},{"name":"EmfPlusRecordTypeMultiFormatEnd","features":[74]},{"name":"EmfPlusRecordTypeMultiFormatSection","features":[74]},{"name":"EmfPlusRecordTypeMultiFormatStart","features":[74]},{"name":"EmfPlusRecordTypeMultiplyWorldTransform","features":[74]},{"name":"EmfPlusRecordTypeObject","features":[74]},{"name":"EmfPlusRecordTypeOffsetClip","features":[74]},{"name":"EmfPlusRecordTypeResetClip","features":[74]},{"name":"EmfPlusRecordTypeResetWorldTransform","features":[74]},{"name":"EmfPlusRecordTypeRestore","features":[74]},{"name":"EmfPlusRecordTypeRotateWorldTransform","features":[74]},{"name":"EmfPlusRecordTypeSave","features":[74]},{"name":"EmfPlusRecordTypeScaleWorldTransform","features":[74]},{"name":"EmfPlusRecordTypeSerializableObject","features":[74]},{"name":"EmfPlusRecordTypeSetAntiAliasMode","features":[74]},{"name":"EmfPlusRecordTypeSetClipPath","features":[74]},{"name":"EmfPlusRecordTypeSetClipRect","features":[74]},{"name":"EmfPlusRecordTypeSetClipRegion","features":[74]},{"name":"EmfPlusRecordTypeSetCompositingMode","features":[74]},{"name":"EmfPlusRecordTypeSetCompositingQuality","features":[74]},{"name":"EmfPlusRecordTypeSetInterpolationMode","features":[74]},{"name":"EmfPlusRecordTypeSetPageTransform","features":[74]},{"name":"EmfPlusRecordTypeSetPixelOffsetMode","features":[74]},{"name":"EmfPlusRecordTypeSetRenderingOrigin","features":[74]},{"name":"EmfPlusRecordTypeSetTSClip","features":[74]},{"name":"EmfPlusRecordTypeSetTSGraphics","features":[74]},{"name":"EmfPlusRecordTypeSetTextContrast","features":[74]},{"name":"EmfPlusRecordTypeSetTextRenderingHint","features":[74]},{"name":"EmfPlusRecordTypeSetWorldTransform","features":[74]},{"name":"EmfPlusRecordTypeStrokeFillPath","features":[74]},{"name":"EmfPlusRecordTypeTranslateWorldTransform","features":[74]},{"name":"EmfRecordTypeAbortPath","features":[74]},{"name":"EmfRecordTypeAlphaBlend","features":[74]},{"name":"EmfRecordTypeAngleArc","features":[74]},{"name":"EmfRecordTypeArc","features":[74]},{"name":"EmfRecordTypeArcTo","features":[74]},{"name":"EmfRecordTypeBeginPath","features":[74]},{"name":"EmfRecordTypeBitBlt","features":[74]},{"name":"EmfRecordTypeChord","features":[74]},{"name":"EmfRecordTypeCloseFigure","features":[74]},{"name":"EmfRecordTypeColorCorrectPalette","features":[74]},{"name":"EmfRecordTypeColorMatchToTargetW","features":[74]},{"name":"EmfRecordTypeCreateBrushIndirect","features":[74]},{"name":"EmfRecordTypeCreateColorSpace","features":[74]},{"name":"EmfRecordTypeCreateColorSpaceW","features":[74]},{"name":"EmfRecordTypeCreateDIBPatternBrushPt","features":[74]},{"name":"EmfRecordTypeCreateMonoBrush","features":[74]},{"name":"EmfRecordTypeCreatePalette","features":[74]},{"name":"EmfRecordTypeCreatePen","features":[74]},{"name":"EmfRecordTypeDeleteColorSpace","features":[74]},{"name":"EmfRecordTypeDeleteObject","features":[74]},{"name":"EmfRecordTypeDrawEscape","features":[74]},{"name":"EmfRecordTypeEOF","features":[74]},{"name":"EmfRecordTypeEllipse","features":[74]},{"name":"EmfRecordTypeEndPath","features":[74]},{"name":"EmfRecordTypeExcludeClipRect","features":[74]},{"name":"EmfRecordTypeExtCreateFontIndirect","features":[74]},{"name":"EmfRecordTypeExtCreatePen","features":[74]},{"name":"EmfRecordTypeExtEscape","features":[74]},{"name":"EmfRecordTypeExtFloodFill","features":[74]},{"name":"EmfRecordTypeExtSelectClipRgn","features":[74]},{"name":"EmfRecordTypeExtTextOutA","features":[74]},{"name":"EmfRecordTypeExtTextOutW","features":[74]},{"name":"EmfRecordTypeFillPath","features":[74]},{"name":"EmfRecordTypeFillRgn","features":[74]},{"name":"EmfRecordTypeFlattenPath","features":[74]},{"name":"EmfRecordTypeForceUFIMapping","features":[74]},{"name":"EmfRecordTypeFrameRgn","features":[74]},{"name":"EmfRecordTypeGLSBoundedRecord","features":[74]},{"name":"EmfRecordTypeGLSRecord","features":[74]},{"name":"EmfRecordTypeGdiComment","features":[74]},{"name":"EmfRecordTypeGradientFill","features":[74]},{"name":"EmfRecordTypeHeader","features":[74]},{"name":"EmfRecordTypeIntersectClipRect","features":[74]},{"name":"EmfRecordTypeInvertRgn","features":[74]},{"name":"EmfRecordTypeLineTo","features":[74]},{"name":"EmfRecordTypeMaskBlt","features":[74]},{"name":"EmfRecordTypeMax","features":[74]},{"name":"EmfRecordTypeMin","features":[74]},{"name":"EmfRecordTypeModifyWorldTransform","features":[74]},{"name":"EmfRecordTypeMoveToEx","features":[74]},{"name":"EmfRecordTypeNamedEscape","features":[74]},{"name":"EmfRecordTypeOffsetClipRgn","features":[74]},{"name":"EmfRecordTypePaintRgn","features":[74]},{"name":"EmfRecordTypePie","features":[74]},{"name":"EmfRecordTypePixelFormat","features":[74]},{"name":"EmfRecordTypePlgBlt","features":[74]},{"name":"EmfRecordTypePolyBezier","features":[74]},{"name":"EmfRecordTypePolyBezier16","features":[74]},{"name":"EmfRecordTypePolyBezierTo","features":[74]},{"name":"EmfRecordTypePolyBezierTo16","features":[74]},{"name":"EmfRecordTypePolyDraw","features":[74]},{"name":"EmfRecordTypePolyDraw16","features":[74]},{"name":"EmfRecordTypePolyLineTo","features":[74]},{"name":"EmfRecordTypePolyPolygon","features":[74]},{"name":"EmfRecordTypePolyPolygon16","features":[74]},{"name":"EmfRecordTypePolyPolyline","features":[74]},{"name":"EmfRecordTypePolyPolyline16","features":[74]},{"name":"EmfRecordTypePolyTextOutA","features":[74]},{"name":"EmfRecordTypePolyTextOutW","features":[74]},{"name":"EmfRecordTypePolygon","features":[74]},{"name":"EmfRecordTypePolygon16","features":[74]},{"name":"EmfRecordTypePolyline","features":[74]},{"name":"EmfRecordTypePolyline16","features":[74]},{"name":"EmfRecordTypePolylineTo16","features":[74]},{"name":"EmfRecordTypeRealizePalette","features":[74]},{"name":"EmfRecordTypeRectangle","features":[74]},{"name":"EmfRecordTypeReserved_069","features":[74]},{"name":"EmfRecordTypeReserved_117","features":[74]},{"name":"EmfRecordTypeResizePalette","features":[74]},{"name":"EmfRecordTypeRestoreDC","features":[74]},{"name":"EmfRecordTypeRoundRect","features":[74]},{"name":"EmfRecordTypeSaveDC","features":[74]},{"name":"EmfRecordTypeScaleViewportExtEx","features":[74]},{"name":"EmfRecordTypeScaleWindowExtEx","features":[74]},{"name":"EmfRecordTypeSelectClipPath","features":[74]},{"name":"EmfRecordTypeSelectObject","features":[74]},{"name":"EmfRecordTypeSelectPalette","features":[74]},{"name":"EmfRecordTypeSetArcDirection","features":[74]},{"name":"EmfRecordTypeSetBkColor","features":[74]},{"name":"EmfRecordTypeSetBkMode","features":[74]},{"name":"EmfRecordTypeSetBrushOrgEx","features":[74]},{"name":"EmfRecordTypeSetColorAdjustment","features":[74]},{"name":"EmfRecordTypeSetColorSpace","features":[74]},{"name":"EmfRecordTypeSetDIBitsToDevice","features":[74]},{"name":"EmfRecordTypeSetICMMode","features":[74]},{"name":"EmfRecordTypeSetICMProfileA","features":[74]},{"name":"EmfRecordTypeSetICMProfileW","features":[74]},{"name":"EmfRecordTypeSetLayout","features":[74]},{"name":"EmfRecordTypeSetLinkedUFIs","features":[74]},{"name":"EmfRecordTypeSetMapMode","features":[74]},{"name":"EmfRecordTypeSetMapperFlags","features":[74]},{"name":"EmfRecordTypeSetMetaRgn","features":[74]},{"name":"EmfRecordTypeSetMiterLimit","features":[74]},{"name":"EmfRecordTypeSetPaletteEntries","features":[74]},{"name":"EmfRecordTypeSetPixelV","features":[74]},{"name":"EmfRecordTypeSetPolyFillMode","features":[74]},{"name":"EmfRecordTypeSetROP2","features":[74]},{"name":"EmfRecordTypeSetStretchBltMode","features":[74]},{"name":"EmfRecordTypeSetTextAlign","features":[74]},{"name":"EmfRecordTypeSetTextColor","features":[74]},{"name":"EmfRecordTypeSetTextJustification","features":[74]},{"name":"EmfRecordTypeSetViewportExtEx","features":[74]},{"name":"EmfRecordTypeSetViewportOrgEx","features":[74]},{"name":"EmfRecordTypeSetWindowExtEx","features":[74]},{"name":"EmfRecordTypeSetWindowOrgEx","features":[74]},{"name":"EmfRecordTypeSetWorldTransform","features":[74]},{"name":"EmfRecordTypeSmallTextOut","features":[74]},{"name":"EmfRecordTypeStartDoc","features":[74]},{"name":"EmfRecordTypeStretchBlt","features":[74]},{"name":"EmfRecordTypeStretchDIBits","features":[74]},{"name":"EmfRecordTypeStrokeAndFillPath","features":[74]},{"name":"EmfRecordTypeStrokePath","features":[74]},{"name":"EmfRecordTypeTransparentBlt","features":[74]},{"name":"EmfRecordTypeWidenPath","features":[74]},{"name":"EmfToWmfBitsFlags","features":[74]},{"name":"EmfToWmfBitsFlagsDefault","features":[74]},{"name":"EmfToWmfBitsFlagsEmbedEmf","features":[74]},{"name":"EmfToWmfBitsFlagsIncludePlaceable","features":[74]},{"name":"EmfToWmfBitsFlagsNoXORClip","features":[74]},{"name":"EmfType","features":[74]},{"name":"EmfTypeEmfOnly","features":[74]},{"name":"EmfTypeEmfPlusDual","features":[74]},{"name":"EmfTypeEmfPlusOnly","features":[74]},{"name":"EncoderChrominanceTable","features":[74]},{"name":"EncoderColorDepth","features":[74]},{"name":"EncoderColorSpace","features":[74]},{"name":"EncoderCompression","features":[74]},{"name":"EncoderImageItems","features":[74]},{"name":"EncoderLuminanceTable","features":[74]},{"name":"EncoderParameter","features":[74]},{"name":"EncoderParameterValueType","features":[74]},{"name":"EncoderParameterValueTypeASCII","features":[74]},{"name":"EncoderParameterValueTypeByte","features":[74]},{"name":"EncoderParameterValueTypeLong","features":[74]},{"name":"EncoderParameterValueTypeLongRange","features":[74]},{"name":"EncoderParameterValueTypePointer","features":[74]},{"name":"EncoderParameterValueTypeRational","features":[74]},{"name":"EncoderParameterValueTypeRationalRange","features":[74]},{"name":"EncoderParameterValueTypeShort","features":[74]},{"name":"EncoderParameterValueTypeUndefined","features":[74]},{"name":"EncoderParameters","features":[74]},{"name":"EncoderQuality","features":[74]},{"name":"EncoderRenderMethod","features":[74]},{"name":"EncoderSaveAsCMYK","features":[74]},{"name":"EncoderSaveFlag","features":[74]},{"name":"EncoderScanMethod","features":[74]},{"name":"EncoderTransformation","features":[74]},{"name":"EncoderValue","features":[74]},{"name":"EncoderValueColorTypeCMYK","features":[74]},{"name":"EncoderValueColorTypeGray","features":[74]},{"name":"EncoderValueColorTypeRGB","features":[74]},{"name":"EncoderValueColorTypeYCCK","features":[74]},{"name":"EncoderValueCompressionCCITT3","features":[74]},{"name":"EncoderValueCompressionCCITT4","features":[74]},{"name":"EncoderValueCompressionLZW","features":[74]},{"name":"EncoderValueCompressionNone","features":[74]},{"name":"EncoderValueCompressionRle","features":[74]},{"name":"EncoderValueFlush","features":[74]},{"name":"EncoderValueFrameDimensionPage","features":[74]},{"name":"EncoderValueFrameDimensionResolution","features":[74]},{"name":"EncoderValueFrameDimensionTime","features":[74]},{"name":"EncoderValueLastFrame","features":[74]},{"name":"EncoderValueMultiFrame","features":[74]},{"name":"EncoderValueRenderNonProgressive","features":[74]},{"name":"EncoderValueRenderProgressive","features":[74]},{"name":"EncoderValueScanMethodInterlaced","features":[74]},{"name":"EncoderValueScanMethodNonInterlaced","features":[74]},{"name":"EncoderValueTransformFlipHorizontal","features":[74]},{"name":"EncoderValueTransformFlipVertical","features":[74]},{"name":"EncoderValueTransformRotate180","features":[74]},{"name":"EncoderValueTransformRotate270","features":[74]},{"name":"EncoderValueTransformRotate90","features":[74]},{"name":"EncoderValueVersionGif87","features":[74]},{"name":"EncoderValueVersionGif89","features":[74]},{"name":"EncoderVersion","features":[74]},{"name":"EnumerateMetafileProc","features":[3,74]},{"name":"FileNotFound","features":[74]},{"name":"FillMode","features":[74]},{"name":"FillModeAlternate","features":[74]},{"name":"FillModeWinding","features":[74]},{"name":"FlatnessDefault","features":[74]},{"name":"FlushIntention","features":[74]},{"name":"FlushIntentionFlush","features":[74]},{"name":"FlushIntentionSync","features":[74]},{"name":"Font","features":[74]},{"name":"FontCollection","features":[74]},{"name":"FontFamily","features":[74]},{"name":"FontFamilyNotFound","features":[74]},{"name":"FontStyle","features":[74]},{"name":"FontStyleBold","features":[74]},{"name":"FontStyleBoldItalic","features":[74]},{"name":"FontStyleItalic","features":[74]},{"name":"FontStyleNotFound","features":[74]},{"name":"FontStyleRegular","features":[74]},{"name":"FontStyleStrikeout","features":[74]},{"name":"FontStyleUnderline","features":[74]},{"name":"FormatIDImageInformation","features":[74]},{"name":"FormatIDJpegAppHeaders","features":[74]},{"name":"FrameDimensionPage","features":[74]},{"name":"FrameDimensionResolution","features":[74]},{"name":"FrameDimensionTime","features":[74]},{"name":"GDIP_EMFPLUSFLAGS_DISPLAY","features":[74]},{"name":"GDIP_EMFPLUS_RECORD_BASE","features":[74]},{"name":"GDIP_WMF_RECORD_BASE","features":[74]},{"name":"GREEN_SHIFT","features":[74]},{"name":"GdipAddPathArc","features":[74]},{"name":"GdipAddPathArcI","features":[74]},{"name":"GdipAddPathBezier","features":[74]},{"name":"GdipAddPathBezierI","features":[74]},{"name":"GdipAddPathBeziers","features":[74]},{"name":"GdipAddPathBeziersI","features":[74]},{"name":"GdipAddPathClosedCurve","features":[74]},{"name":"GdipAddPathClosedCurve2","features":[74]},{"name":"GdipAddPathClosedCurve2I","features":[74]},{"name":"GdipAddPathClosedCurveI","features":[74]},{"name":"GdipAddPathCurve","features":[74]},{"name":"GdipAddPathCurve2","features":[74]},{"name":"GdipAddPathCurve2I","features":[74]},{"name":"GdipAddPathCurve3","features":[74]},{"name":"GdipAddPathCurve3I","features":[74]},{"name":"GdipAddPathCurveI","features":[74]},{"name":"GdipAddPathEllipse","features":[74]},{"name":"GdipAddPathEllipseI","features":[74]},{"name":"GdipAddPathLine","features":[74]},{"name":"GdipAddPathLine2","features":[74]},{"name":"GdipAddPathLine2I","features":[74]},{"name":"GdipAddPathLineI","features":[74]},{"name":"GdipAddPathPath","features":[3,74]},{"name":"GdipAddPathPie","features":[74]},{"name":"GdipAddPathPieI","features":[74]},{"name":"GdipAddPathPolygon","features":[74]},{"name":"GdipAddPathPolygonI","features":[74]},{"name":"GdipAddPathRectangle","features":[74]},{"name":"GdipAddPathRectangleI","features":[74]},{"name":"GdipAddPathRectangles","features":[74]},{"name":"GdipAddPathRectanglesI","features":[74]},{"name":"GdipAddPathString","features":[74]},{"name":"GdipAddPathStringI","features":[74]},{"name":"GdipAlloc","features":[74]},{"name":"GdipBeginContainer","features":[74]},{"name":"GdipBeginContainer2","features":[74]},{"name":"GdipBeginContainerI","features":[74]},{"name":"GdipBitmapApplyEffect","features":[3,74]},{"name":"GdipBitmapConvertFormat","features":[74]},{"name":"GdipBitmapCreateApplyEffect","features":[3,74]},{"name":"GdipBitmapGetHistogram","features":[74]},{"name":"GdipBitmapGetHistogramSize","features":[74]},{"name":"GdipBitmapGetPixel","features":[74]},{"name":"GdipBitmapLockBits","features":[74]},{"name":"GdipBitmapSetPixel","features":[74]},{"name":"GdipBitmapSetResolution","features":[74]},{"name":"GdipBitmapUnlockBits","features":[74]},{"name":"GdipClearPathMarkers","features":[74]},{"name":"GdipCloneBitmapArea","features":[74]},{"name":"GdipCloneBitmapAreaI","features":[74]},{"name":"GdipCloneBrush","features":[74]},{"name":"GdipCloneCustomLineCap","features":[74]},{"name":"GdipCloneFont","features":[74]},{"name":"GdipCloneFontFamily","features":[74]},{"name":"GdipCloneImage","features":[74]},{"name":"GdipCloneImageAttributes","features":[74]},{"name":"GdipCloneMatrix","features":[74]},{"name":"GdipClonePath","features":[74]},{"name":"GdipClonePen","features":[74]},{"name":"GdipCloneRegion","features":[74]},{"name":"GdipCloneStringFormat","features":[74]},{"name":"GdipClosePathFigure","features":[74]},{"name":"GdipClosePathFigures","features":[74]},{"name":"GdipCombineRegionPath","features":[74]},{"name":"GdipCombineRegionRect","features":[74]},{"name":"GdipCombineRegionRectI","features":[74]},{"name":"GdipCombineRegionRegion","features":[74]},{"name":"GdipComment","features":[74]},{"name":"GdipConvertToEmfPlus","features":[74]},{"name":"GdipConvertToEmfPlusToFile","features":[74]},{"name":"GdipConvertToEmfPlusToStream","features":[74]},{"name":"GdipCreateAdjustableArrowCap","features":[3,74]},{"name":"GdipCreateBitmapFromDirectDrawSurface","features":[74]},{"name":"GdipCreateBitmapFromFile","features":[74]},{"name":"GdipCreateBitmapFromFileICM","features":[74]},{"name":"GdipCreateBitmapFromGdiDib","features":[14,74]},{"name":"GdipCreateBitmapFromGraphics","features":[74]},{"name":"GdipCreateBitmapFromHBITMAP","features":[14,74]},{"name":"GdipCreateBitmapFromHICON","features":[74,52]},{"name":"GdipCreateBitmapFromResource","features":[3,74]},{"name":"GdipCreateBitmapFromScan0","features":[74]},{"name":"GdipCreateBitmapFromStream","features":[74]},{"name":"GdipCreateBitmapFromStreamICM","features":[74]},{"name":"GdipCreateCachedBitmap","features":[74]},{"name":"GdipCreateCustomLineCap","features":[74]},{"name":"GdipCreateEffect","features":[74]},{"name":"GdipCreateFont","features":[74]},{"name":"GdipCreateFontFamilyFromName","features":[74]},{"name":"GdipCreateFontFromDC","features":[14,74]},{"name":"GdipCreateFontFromLogfontA","features":[14,74]},{"name":"GdipCreateFontFromLogfontW","features":[14,74]},{"name":"GdipCreateFromHDC","features":[14,74]},{"name":"GdipCreateFromHDC2","features":[3,14,74]},{"name":"GdipCreateFromHWND","features":[3,74]},{"name":"GdipCreateFromHWNDICM","features":[3,74]},{"name":"GdipCreateHBITMAPFromBitmap","features":[14,74]},{"name":"GdipCreateHICONFromBitmap","features":[74,52]},{"name":"GdipCreateHalftonePalette","features":[14,74]},{"name":"GdipCreateHatchBrush","features":[74]},{"name":"GdipCreateImageAttributes","features":[74]},{"name":"GdipCreateLineBrush","features":[74]},{"name":"GdipCreateLineBrushFromRect","features":[74]},{"name":"GdipCreateLineBrushFromRectI","features":[74]},{"name":"GdipCreateLineBrushFromRectWithAngle","features":[3,74]},{"name":"GdipCreateLineBrushFromRectWithAngleI","features":[3,74]},{"name":"GdipCreateLineBrushI","features":[74]},{"name":"GdipCreateMatrix","features":[74]},{"name":"GdipCreateMatrix2","features":[74]},{"name":"GdipCreateMatrix3","features":[74]},{"name":"GdipCreateMatrix3I","features":[74]},{"name":"GdipCreateMetafileFromEmf","features":[3,14,74]},{"name":"GdipCreateMetafileFromFile","features":[74]},{"name":"GdipCreateMetafileFromStream","features":[74]},{"name":"GdipCreateMetafileFromWmf","features":[3,14,74]},{"name":"GdipCreateMetafileFromWmfFile","features":[74]},{"name":"GdipCreatePath","features":[74]},{"name":"GdipCreatePath2","features":[74]},{"name":"GdipCreatePath2I","features":[74]},{"name":"GdipCreatePathGradient","features":[74]},{"name":"GdipCreatePathGradientFromPath","features":[74]},{"name":"GdipCreatePathGradientI","features":[74]},{"name":"GdipCreatePathIter","features":[74]},{"name":"GdipCreatePen1","features":[74]},{"name":"GdipCreatePen2","features":[74]},{"name":"GdipCreateRegion","features":[74]},{"name":"GdipCreateRegionHrgn","features":[14,74]},{"name":"GdipCreateRegionPath","features":[74]},{"name":"GdipCreateRegionRect","features":[74]},{"name":"GdipCreateRegionRectI","features":[74]},{"name":"GdipCreateRegionRgnData","features":[74]},{"name":"GdipCreateSolidFill","features":[74]},{"name":"GdipCreateStreamOnFile","features":[74]},{"name":"GdipCreateStringFormat","features":[74]},{"name":"GdipCreateTexture","features":[74]},{"name":"GdipCreateTexture2","features":[74]},{"name":"GdipCreateTexture2I","features":[74]},{"name":"GdipCreateTextureIA","features":[74]},{"name":"GdipCreateTextureIAI","features":[74]},{"name":"GdipDeleteBrush","features":[74]},{"name":"GdipDeleteCachedBitmap","features":[74]},{"name":"GdipDeleteCustomLineCap","features":[74]},{"name":"GdipDeleteEffect","features":[74]},{"name":"GdipDeleteFont","features":[74]},{"name":"GdipDeleteFontFamily","features":[74]},{"name":"GdipDeleteGraphics","features":[74]},{"name":"GdipDeleteMatrix","features":[74]},{"name":"GdipDeletePath","features":[74]},{"name":"GdipDeletePathIter","features":[74]},{"name":"GdipDeletePen","features":[74]},{"name":"GdipDeletePrivateFontCollection","features":[74]},{"name":"GdipDeleteRegion","features":[74]},{"name":"GdipDeleteStringFormat","features":[74]},{"name":"GdipDisposeImage","features":[74]},{"name":"GdipDisposeImageAttributes","features":[74]},{"name":"GdipDrawArc","features":[74]},{"name":"GdipDrawArcI","features":[74]},{"name":"GdipDrawBezier","features":[74]},{"name":"GdipDrawBezierI","features":[74]},{"name":"GdipDrawBeziers","features":[74]},{"name":"GdipDrawBeziersI","features":[74]},{"name":"GdipDrawCachedBitmap","features":[74]},{"name":"GdipDrawClosedCurve","features":[74]},{"name":"GdipDrawClosedCurve2","features":[74]},{"name":"GdipDrawClosedCurve2I","features":[74]},{"name":"GdipDrawClosedCurveI","features":[74]},{"name":"GdipDrawCurve","features":[74]},{"name":"GdipDrawCurve2","features":[74]},{"name":"GdipDrawCurve2I","features":[74]},{"name":"GdipDrawCurve3","features":[74]},{"name":"GdipDrawCurve3I","features":[74]},{"name":"GdipDrawCurveI","features":[74]},{"name":"GdipDrawDriverString","features":[74]},{"name":"GdipDrawEllipse","features":[74]},{"name":"GdipDrawEllipseI","features":[74]},{"name":"GdipDrawImage","features":[74]},{"name":"GdipDrawImageFX","features":[74]},{"name":"GdipDrawImageI","features":[74]},{"name":"GdipDrawImagePointRect","features":[74]},{"name":"GdipDrawImagePointRectI","features":[74]},{"name":"GdipDrawImagePoints","features":[74]},{"name":"GdipDrawImagePointsI","features":[74]},{"name":"GdipDrawImagePointsRect","features":[74]},{"name":"GdipDrawImagePointsRectI","features":[74]},{"name":"GdipDrawImageRect","features":[74]},{"name":"GdipDrawImageRectI","features":[74]},{"name":"GdipDrawImageRectRect","features":[74]},{"name":"GdipDrawImageRectRectI","features":[74]},{"name":"GdipDrawLine","features":[74]},{"name":"GdipDrawLineI","features":[74]},{"name":"GdipDrawLines","features":[74]},{"name":"GdipDrawLinesI","features":[74]},{"name":"GdipDrawPath","features":[74]},{"name":"GdipDrawPie","features":[74]},{"name":"GdipDrawPieI","features":[74]},{"name":"GdipDrawPolygon","features":[74]},{"name":"GdipDrawPolygonI","features":[74]},{"name":"GdipDrawRectangle","features":[74]},{"name":"GdipDrawRectangleI","features":[74]},{"name":"GdipDrawRectangles","features":[74]},{"name":"GdipDrawRectanglesI","features":[74]},{"name":"GdipDrawString","features":[74]},{"name":"GdipEmfToWmfBits","features":[14,74]},{"name":"GdipEndContainer","features":[74]},{"name":"GdipEnumerateMetafileDestPoint","features":[74]},{"name":"GdipEnumerateMetafileDestPointI","features":[74]},{"name":"GdipEnumerateMetafileDestPoints","features":[74]},{"name":"GdipEnumerateMetafileDestPointsI","features":[74]},{"name":"GdipEnumerateMetafileDestRect","features":[74]},{"name":"GdipEnumerateMetafileDestRectI","features":[74]},{"name":"GdipEnumerateMetafileSrcRectDestPoint","features":[74]},{"name":"GdipEnumerateMetafileSrcRectDestPointI","features":[74]},{"name":"GdipEnumerateMetafileSrcRectDestPoints","features":[74]},{"name":"GdipEnumerateMetafileSrcRectDestPointsI","features":[74]},{"name":"GdipEnumerateMetafileSrcRectDestRect","features":[74]},{"name":"GdipEnumerateMetafileSrcRectDestRectI","features":[74]},{"name":"GdipFillClosedCurve","features":[74]},{"name":"GdipFillClosedCurve2","features":[74]},{"name":"GdipFillClosedCurve2I","features":[74]},{"name":"GdipFillClosedCurveI","features":[74]},{"name":"GdipFillEllipse","features":[74]},{"name":"GdipFillEllipseI","features":[74]},{"name":"GdipFillPath","features":[74]},{"name":"GdipFillPie","features":[74]},{"name":"GdipFillPieI","features":[74]},{"name":"GdipFillPolygon","features":[74]},{"name":"GdipFillPolygon2","features":[74]},{"name":"GdipFillPolygon2I","features":[74]},{"name":"GdipFillPolygonI","features":[74]},{"name":"GdipFillRectangle","features":[74]},{"name":"GdipFillRectangleI","features":[74]},{"name":"GdipFillRectangles","features":[74]},{"name":"GdipFillRectanglesI","features":[74]},{"name":"GdipFillRegion","features":[74]},{"name":"GdipFindFirstImageItem","features":[74]},{"name":"GdipFindNextImageItem","features":[74]},{"name":"GdipFlattenPath","features":[74]},{"name":"GdipFlush","features":[74]},{"name":"GdipFree","features":[74]},{"name":"GdipGetAdjustableArrowCapFillState","features":[3,74]},{"name":"GdipGetAdjustableArrowCapHeight","features":[74]},{"name":"GdipGetAdjustableArrowCapMiddleInset","features":[74]},{"name":"GdipGetAdjustableArrowCapWidth","features":[74]},{"name":"GdipGetAllPropertyItems","features":[74]},{"name":"GdipGetBrushType","features":[74]},{"name":"GdipGetCellAscent","features":[74]},{"name":"GdipGetCellDescent","features":[74]},{"name":"GdipGetClip","features":[74]},{"name":"GdipGetClipBounds","features":[74]},{"name":"GdipGetClipBoundsI","features":[74]},{"name":"GdipGetCompositingMode","features":[74]},{"name":"GdipGetCompositingQuality","features":[74]},{"name":"GdipGetCustomLineCapBaseCap","features":[74]},{"name":"GdipGetCustomLineCapBaseInset","features":[74]},{"name":"GdipGetCustomLineCapStrokeCaps","features":[74]},{"name":"GdipGetCustomLineCapStrokeJoin","features":[74]},{"name":"GdipGetCustomLineCapType","features":[74]},{"name":"GdipGetCustomLineCapWidthScale","features":[74]},{"name":"GdipGetDC","features":[14,74]},{"name":"GdipGetDpiX","features":[74]},{"name":"GdipGetDpiY","features":[74]},{"name":"GdipGetEffectParameterSize","features":[74]},{"name":"GdipGetEffectParameters","features":[74]},{"name":"GdipGetEmHeight","features":[74]},{"name":"GdipGetEncoderParameterList","features":[74]},{"name":"GdipGetEncoderParameterListSize","features":[74]},{"name":"GdipGetFamily","features":[74]},{"name":"GdipGetFamilyName","features":[74]},{"name":"GdipGetFontCollectionFamilyCount","features":[74]},{"name":"GdipGetFontCollectionFamilyList","features":[74]},{"name":"GdipGetFontHeight","features":[74]},{"name":"GdipGetFontHeightGivenDPI","features":[74]},{"name":"GdipGetFontSize","features":[74]},{"name":"GdipGetFontStyle","features":[74]},{"name":"GdipGetFontUnit","features":[74]},{"name":"GdipGetGenericFontFamilyMonospace","features":[74]},{"name":"GdipGetGenericFontFamilySansSerif","features":[74]},{"name":"GdipGetGenericFontFamilySerif","features":[74]},{"name":"GdipGetHatchBackgroundColor","features":[74]},{"name":"GdipGetHatchForegroundColor","features":[74]},{"name":"GdipGetHatchStyle","features":[74]},{"name":"GdipGetHemfFromMetafile","features":[14,74]},{"name":"GdipGetImageAttributesAdjustedPalette","features":[74]},{"name":"GdipGetImageBounds","features":[74]},{"name":"GdipGetImageDecoders","features":[74]},{"name":"GdipGetImageDecodersSize","features":[74]},{"name":"GdipGetImageDimension","features":[74]},{"name":"GdipGetImageEncoders","features":[74]},{"name":"GdipGetImageEncodersSize","features":[74]},{"name":"GdipGetImageFlags","features":[74]},{"name":"GdipGetImageGraphicsContext","features":[74]},{"name":"GdipGetImageHeight","features":[74]},{"name":"GdipGetImageHorizontalResolution","features":[74]},{"name":"GdipGetImageItemData","features":[74]},{"name":"GdipGetImagePalette","features":[74]},{"name":"GdipGetImagePaletteSize","features":[74]},{"name":"GdipGetImagePixelFormat","features":[74]},{"name":"GdipGetImageRawFormat","features":[74]},{"name":"GdipGetImageThumbnail","features":[74]},{"name":"GdipGetImageType","features":[74]},{"name":"GdipGetImageVerticalResolution","features":[74]},{"name":"GdipGetImageWidth","features":[74]},{"name":"GdipGetInterpolationMode","features":[74]},{"name":"GdipGetLineBlend","features":[74]},{"name":"GdipGetLineBlendCount","features":[74]},{"name":"GdipGetLineColors","features":[74]},{"name":"GdipGetLineGammaCorrection","features":[3,74]},{"name":"GdipGetLinePresetBlend","features":[74]},{"name":"GdipGetLinePresetBlendCount","features":[74]},{"name":"GdipGetLineRect","features":[74]},{"name":"GdipGetLineRectI","features":[74]},{"name":"GdipGetLineSpacing","features":[74]},{"name":"GdipGetLineTransform","features":[74]},{"name":"GdipGetLineWrapMode","features":[74]},{"name":"GdipGetLogFontA","features":[14,74]},{"name":"GdipGetLogFontW","features":[14,74]},{"name":"GdipGetMatrixElements","features":[74]},{"name":"GdipGetMetafileDownLevelRasterizationLimit","features":[74]},{"name":"GdipGetMetafileHeaderFromEmf","features":[3,14,74]},{"name":"GdipGetMetafileHeaderFromFile","features":[3,14,74]},{"name":"GdipGetMetafileHeaderFromMetafile","features":[3,14,74]},{"name":"GdipGetMetafileHeaderFromStream","features":[3,14,74]},{"name":"GdipGetMetafileHeaderFromWmf","features":[3,14,74]},{"name":"GdipGetNearestColor","features":[74]},{"name":"GdipGetPageScale","features":[74]},{"name":"GdipGetPageUnit","features":[74]},{"name":"GdipGetPathData","features":[74]},{"name":"GdipGetPathFillMode","features":[74]},{"name":"GdipGetPathGradientBlend","features":[74]},{"name":"GdipGetPathGradientBlendCount","features":[74]},{"name":"GdipGetPathGradientCenterColor","features":[74]},{"name":"GdipGetPathGradientCenterPoint","features":[74]},{"name":"GdipGetPathGradientCenterPointI","features":[74]},{"name":"GdipGetPathGradientFocusScales","features":[74]},{"name":"GdipGetPathGradientGammaCorrection","features":[3,74]},{"name":"GdipGetPathGradientPath","features":[74]},{"name":"GdipGetPathGradientPointCount","features":[74]},{"name":"GdipGetPathGradientPresetBlend","features":[74]},{"name":"GdipGetPathGradientPresetBlendCount","features":[74]},{"name":"GdipGetPathGradientRect","features":[74]},{"name":"GdipGetPathGradientRectI","features":[74]},{"name":"GdipGetPathGradientSurroundColorCount","features":[74]},{"name":"GdipGetPathGradientSurroundColorsWithCount","features":[74]},{"name":"GdipGetPathGradientTransform","features":[74]},{"name":"GdipGetPathGradientWrapMode","features":[74]},{"name":"GdipGetPathLastPoint","features":[74]},{"name":"GdipGetPathPoints","features":[74]},{"name":"GdipGetPathPointsI","features":[74]},{"name":"GdipGetPathTypes","features":[74]},{"name":"GdipGetPathWorldBounds","features":[74]},{"name":"GdipGetPathWorldBoundsI","features":[74]},{"name":"GdipGetPenBrushFill","features":[74]},{"name":"GdipGetPenColor","features":[74]},{"name":"GdipGetPenCompoundArray","features":[74]},{"name":"GdipGetPenCompoundCount","features":[74]},{"name":"GdipGetPenCustomEndCap","features":[74]},{"name":"GdipGetPenCustomStartCap","features":[74]},{"name":"GdipGetPenDashArray","features":[74]},{"name":"GdipGetPenDashCap197819","features":[74]},{"name":"GdipGetPenDashCount","features":[74]},{"name":"GdipGetPenDashOffset","features":[74]},{"name":"GdipGetPenDashStyle","features":[74]},{"name":"GdipGetPenEndCap","features":[74]},{"name":"GdipGetPenFillType","features":[74]},{"name":"GdipGetPenLineJoin","features":[74]},{"name":"GdipGetPenMiterLimit","features":[74]},{"name":"GdipGetPenMode","features":[74]},{"name":"GdipGetPenStartCap","features":[74]},{"name":"GdipGetPenTransform","features":[74]},{"name":"GdipGetPenUnit","features":[74]},{"name":"GdipGetPenWidth","features":[74]},{"name":"GdipGetPixelOffsetMode","features":[74]},{"name":"GdipGetPointCount","features":[74]},{"name":"GdipGetPropertyCount","features":[74]},{"name":"GdipGetPropertyIdList","features":[74]},{"name":"GdipGetPropertyItem","features":[74]},{"name":"GdipGetPropertyItemSize","features":[74]},{"name":"GdipGetPropertySize","features":[74]},{"name":"GdipGetRegionBounds","features":[74]},{"name":"GdipGetRegionBoundsI","features":[74]},{"name":"GdipGetRegionData","features":[74]},{"name":"GdipGetRegionDataSize","features":[74]},{"name":"GdipGetRegionHRgn","features":[14,74]},{"name":"GdipGetRegionScans","features":[74]},{"name":"GdipGetRegionScansCount","features":[74]},{"name":"GdipGetRegionScansI","features":[74]},{"name":"GdipGetRenderingOrigin","features":[74]},{"name":"GdipGetSmoothingMode","features":[74]},{"name":"GdipGetSolidFillColor","features":[74]},{"name":"GdipGetStringFormatAlign","features":[74]},{"name":"GdipGetStringFormatDigitSubstitution","features":[74]},{"name":"GdipGetStringFormatFlags","features":[74]},{"name":"GdipGetStringFormatHotkeyPrefix","features":[74]},{"name":"GdipGetStringFormatLineAlign","features":[74]},{"name":"GdipGetStringFormatMeasurableCharacterRangeCount","features":[74]},{"name":"GdipGetStringFormatTabStopCount","features":[74]},{"name":"GdipGetStringFormatTabStops","features":[74]},{"name":"GdipGetStringFormatTrimming","features":[74]},{"name":"GdipGetTextContrast","features":[74]},{"name":"GdipGetTextRenderingHint","features":[74]},{"name":"GdipGetTextureImage","features":[74]},{"name":"GdipGetTextureTransform","features":[74]},{"name":"GdipGetTextureWrapMode","features":[74]},{"name":"GdipGetVisibleClipBounds","features":[74]},{"name":"GdipGetVisibleClipBoundsI","features":[74]},{"name":"GdipGetWorldTransform","features":[74]},{"name":"GdipGraphicsClear","features":[74]},{"name":"GdipGraphicsSetAbort","features":[74]},{"name":"GdipImageForceValidation","features":[74]},{"name":"GdipImageGetFrameCount","features":[74]},{"name":"GdipImageGetFrameDimensionsCount","features":[74]},{"name":"GdipImageGetFrameDimensionsList","features":[74]},{"name":"GdipImageRotateFlip","features":[74]},{"name":"GdipImageSelectActiveFrame","features":[74]},{"name":"GdipImageSetAbort","features":[74]},{"name":"GdipInitializePalette","features":[3,74]},{"name":"GdipInvertMatrix","features":[74]},{"name":"GdipIsClipEmpty","features":[3,74]},{"name":"GdipIsEmptyRegion","features":[3,74]},{"name":"GdipIsEqualRegion","features":[3,74]},{"name":"GdipIsInfiniteRegion","features":[3,74]},{"name":"GdipIsMatrixEqual","features":[3,74]},{"name":"GdipIsMatrixIdentity","features":[3,74]},{"name":"GdipIsMatrixInvertible","features":[3,74]},{"name":"GdipIsOutlineVisiblePathPoint","features":[3,74]},{"name":"GdipIsOutlineVisiblePathPointI","features":[3,74]},{"name":"GdipIsStyleAvailable","features":[3,74]},{"name":"GdipIsVisibleClipEmpty","features":[3,74]},{"name":"GdipIsVisiblePathPoint","features":[3,74]},{"name":"GdipIsVisiblePathPointI","features":[3,74]},{"name":"GdipIsVisiblePoint","features":[3,74]},{"name":"GdipIsVisiblePointI","features":[3,74]},{"name":"GdipIsVisibleRect","features":[3,74]},{"name":"GdipIsVisibleRectI","features":[3,74]},{"name":"GdipIsVisibleRegionPoint","features":[3,74]},{"name":"GdipIsVisibleRegionPointI","features":[3,74]},{"name":"GdipIsVisibleRegionRect","features":[3,74]},{"name":"GdipIsVisibleRegionRectI","features":[3,74]},{"name":"GdipLoadImageFromFile","features":[74]},{"name":"GdipLoadImageFromFileICM","features":[74]},{"name":"GdipLoadImageFromStream","features":[74]},{"name":"GdipLoadImageFromStreamICM","features":[74]},{"name":"GdipMeasureCharacterRanges","features":[74]},{"name":"GdipMeasureDriverString","features":[74]},{"name":"GdipMeasureString","features":[74]},{"name":"GdipMultiplyLineTransform","features":[74]},{"name":"GdipMultiplyMatrix","features":[74]},{"name":"GdipMultiplyPathGradientTransform","features":[74]},{"name":"GdipMultiplyPenTransform","features":[74]},{"name":"GdipMultiplyTextureTransform","features":[74]},{"name":"GdipMultiplyWorldTransform","features":[74]},{"name":"GdipNewInstalledFontCollection","features":[74]},{"name":"GdipNewPrivateFontCollection","features":[74]},{"name":"GdipPathIterCopyData","features":[74]},{"name":"GdipPathIterEnumerate","features":[74]},{"name":"GdipPathIterGetCount","features":[74]},{"name":"GdipPathIterGetSubpathCount","features":[74]},{"name":"GdipPathIterHasCurve","features":[3,74]},{"name":"GdipPathIterIsValid","features":[3,74]},{"name":"GdipPathIterNextMarker","features":[74]},{"name":"GdipPathIterNextMarkerPath","features":[74]},{"name":"GdipPathIterNextPathType","features":[74]},{"name":"GdipPathIterNextSubpath","features":[3,74]},{"name":"GdipPathIterNextSubpathPath","features":[3,74]},{"name":"GdipPathIterRewind","features":[74]},{"name":"GdipPlayMetafileRecord","features":[74]},{"name":"GdipPrivateAddFontFile","features":[74]},{"name":"GdipPrivateAddMemoryFont","features":[74]},{"name":"GdipRecordMetafile","features":[14,74]},{"name":"GdipRecordMetafileFileName","features":[14,74]},{"name":"GdipRecordMetafileFileNameI","features":[14,74]},{"name":"GdipRecordMetafileI","features":[14,74]},{"name":"GdipRecordMetafileStream","features":[14,74]},{"name":"GdipRecordMetafileStreamI","features":[14,74]},{"name":"GdipReleaseDC","features":[14,74]},{"name":"GdipRemovePropertyItem","features":[74]},{"name":"GdipResetClip","features":[74]},{"name":"GdipResetImageAttributes","features":[74]},{"name":"GdipResetLineTransform","features":[74]},{"name":"GdipResetPageTransform","features":[74]},{"name":"GdipResetPath","features":[74]},{"name":"GdipResetPathGradientTransform","features":[74]},{"name":"GdipResetPenTransform","features":[74]},{"name":"GdipResetTextureTransform","features":[74]},{"name":"GdipResetWorldTransform","features":[74]},{"name":"GdipRestoreGraphics","features":[74]},{"name":"GdipReversePath","features":[74]},{"name":"GdipRotateLineTransform","features":[74]},{"name":"GdipRotateMatrix","features":[74]},{"name":"GdipRotatePathGradientTransform","features":[74]},{"name":"GdipRotatePenTransform","features":[74]},{"name":"GdipRotateTextureTransform","features":[74]},{"name":"GdipRotateWorldTransform","features":[74]},{"name":"GdipSaveAdd","features":[74]},{"name":"GdipSaveAddImage","features":[74]},{"name":"GdipSaveGraphics","features":[74]},{"name":"GdipSaveImageToFile","features":[74]},{"name":"GdipSaveImageToStream","features":[74]},{"name":"GdipScaleLineTransform","features":[74]},{"name":"GdipScaleMatrix","features":[74]},{"name":"GdipScalePathGradientTransform","features":[74]},{"name":"GdipScalePenTransform","features":[74]},{"name":"GdipScaleTextureTransform","features":[74]},{"name":"GdipScaleWorldTransform","features":[74]},{"name":"GdipSetAdjustableArrowCapFillState","features":[3,74]},{"name":"GdipSetAdjustableArrowCapHeight","features":[74]},{"name":"GdipSetAdjustableArrowCapMiddleInset","features":[74]},{"name":"GdipSetAdjustableArrowCapWidth","features":[74]},{"name":"GdipSetClipGraphics","features":[74]},{"name":"GdipSetClipHrgn","features":[14,74]},{"name":"GdipSetClipPath","features":[74]},{"name":"GdipSetClipRect","features":[74]},{"name":"GdipSetClipRectI","features":[74]},{"name":"GdipSetClipRegion","features":[74]},{"name":"GdipSetCompositingMode","features":[74]},{"name":"GdipSetCompositingQuality","features":[74]},{"name":"GdipSetCustomLineCapBaseCap","features":[74]},{"name":"GdipSetCustomLineCapBaseInset","features":[74]},{"name":"GdipSetCustomLineCapStrokeCaps","features":[74]},{"name":"GdipSetCustomLineCapStrokeJoin","features":[74]},{"name":"GdipSetCustomLineCapWidthScale","features":[74]},{"name":"GdipSetEffectParameters","features":[74]},{"name":"GdipSetEmpty","features":[74]},{"name":"GdipSetImageAttributesCachedBackground","features":[3,74]},{"name":"GdipSetImageAttributesColorKeys","features":[3,74]},{"name":"GdipSetImageAttributesColorMatrix","features":[3,74]},{"name":"GdipSetImageAttributesGamma","features":[3,74]},{"name":"GdipSetImageAttributesNoOp","features":[3,74]},{"name":"GdipSetImageAttributesOutputChannel","features":[3,74]},{"name":"GdipSetImageAttributesOutputChannelColorProfile","features":[3,74]},{"name":"GdipSetImageAttributesRemapTable","features":[3,74]},{"name":"GdipSetImageAttributesThreshold","features":[3,74]},{"name":"GdipSetImageAttributesToIdentity","features":[74]},{"name":"GdipSetImageAttributesWrapMode","features":[3,74]},{"name":"GdipSetImagePalette","features":[74]},{"name":"GdipSetInfinite","features":[74]},{"name":"GdipSetInterpolationMode","features":[74]},{"name":"GdipSetLineBlend","features":[74]},{"name":"GdipSetLineColors","features":[74]},{"name":"GdipSetLineGammaCorrection","features":[3,74]},{"name":"GdipSetLineLinearBlend","features":[74]},{"name":"GdipSetLinePresetBlend","features":[74]},{"name":"GdipSetLineSigmaBlend","features":[74]},{"name":"GdipSetLineTransform","features":[74]},{"name":"GdipSetLineWrapMode","features":[74]},{"name":"GdipSetMatrixElements","features":[74]},{"name":"GdipSetMetafileDownLevelRasterizationLimit","features":[74]},{"name":"GdipSetPageScale","features":[74]},{"name":"GdipSetPageUnit","features":[74]},{"name":"GdipSetPathFillMode","features":[74]},{"name":"GdipSetPathGradientBlend","features":[74]},{"name":"GdipSetPathGradientCenterColor","features":[74]},{"name":"GdipSetPathGradientCenterPoint","features":[74]},{"name":"GdipSetPathGradientCenterPointI","features":[74]},{"name":"GdipSetPathGradientFocusScales","features":[74]},{"name":"GdipSetPathGradientGammaCorrection","features":[3,74]},{"name":"GdipSetPathGradientLinearBlend","features":[74]},{"name":"GdipSetPathGradientPath","features":[74]},{"name":"GdipSetPathGradientPresetBlend","features":[74]},{"name":"GdipSetPathGradientSigmaBlend","features":[74]},{"name":"GdipSetPathGradientSurroundColorsWithCount","features":[74]},{"name":"GdipSetPathGradientTransform","features":[74]},{"name":"GdipSetPathGradientWrapMode","features":[74]},{"name":"GdipSetPathMarker","features":[74]},{"name":"GdipSetPenBrushFill","features":[74]},{"name":"GdipSetPenColor","features":[74]},{"name":"GdipSetPenCompoundArray","features":[74]},{"name":"GdipSetPenCustomEndCap","features":[74]},{"name":"GdipSetPenCustomStartCap","features":[74]},{"name":"GdipSetPenDashArray","features":[74]},{"name":"GdipSetPenDashCap197819","features":[74]},{"name":"GdipSetPenDashOffset","features":[74]},{"name":"GdipSetPenDashStyle","features":[74]},{"name":"GdipSetPenEndCap","features":[74]},{"name":"GdipSetPenLineCap197819","features":[74]},{"name":"GdipSetPenLineJoin","features":[74]},{"name":"GdipSetPenMiterLimit","features":[74]},{"name":"GdipSetPenMode","features":[74]},{"name":"GdipSetPenStartCap","features":[74]},{"name":"GdipSetPenTransform","features":[74]},{"name":"GdipSetPenUnit","features":[74]},{"name":"GdipSetPenWidth","features":[74]},{"name":"GdipSetPixelOffsetMode","features":[74]},{"name":"GdipSetPropertyItem","features":[74]},{"name":"GdipSetRenderingOrigin","features":[74]},{"name":"GdipSetSmoothingMode","features":[74]},{"name":"GdipSetSolidFillColor","features":[74]},{"name":"GdipSetStringFormatAlign","features":[74]},{"name":"GdipSetStringFormatDigitSubstitution","features":[74]},{"name":"GdipSetStringFormatFlags","features":[74]},{"name":"GdipSetStringFormatHotkeyPrefix","features":[74]},{"name":"GdipSetStringFormatLineAlign","features":[74]},{"name":"GdipSetStringFormatMeasurableCharacterRanges","features":[74]},{"name":"GdipSetStringFormatTabStops","features":[74]},{"name":"GdipSetStringFormatTrimming","features":[74]},{"name":"GdipSetTextContrast","features":[74]},{"name":"GdipSetTextRenderingHint","features":[74]},{"name":"GdipSetTextureTransform","features":[74]},{"name":"GdipSetTextureWrapMode","features":[74]},{"name":"GdipSetWorldTransform","features":[74]},{"name":"GdipShearMatrix","features":[74]},{"name":"GdipStartPathFigure","features":[74]},{"name":"GdipStringFormatGetGenericDefault","features":[74]},{"name":"GdipStringFormatGetGenericTypographic","features":[74]},{"name":"GdipTestControl","features":[74]},{"name":"GdipTransformMatrixPoints","features":[74]},{"name":"GdipTransformMatrixPointsI","features":[74]},{"name":"GdipTransformPath","features":[74]},{"name":"GdipTransformPoints","features":[74]},{"name":"GdipTransformPointsI","features":[74]},{"name":"GdipTransformRegion","features":[74]},{"name":"GdipTranslateClip","features":[74]},{"name":"GdipTranslateClipI","features":[74]},{"name":"GdipTranslateLineTransform","features":[74]},{"name":"GdipTranslateMatrix","features":[74]},{"name":"GdipTranslatePathGradientTransform","features":[74]},{"name":"GdipTranslatePenTransform","features":[74]},{"name":"GdipTranslateRegion","features":[74]},{"name":"GdipTranslateRegionI","features":[74]},{"name":"GdipTranslateTextureTransform","features":[74]},{"name":"GdipTranslateWorldTransform","features":[74]},{"name":"GdipVectorTransformMatrixPoints","features":[74]},{"name":"GdipVectorTransformMatrixPointsI","features":[74]},{"name":"GdipWarpPath","features":[74]},{"name":"GdipWidenPath","features":[74]},{"name":"GdipWindingModeOutline","features":[74]},{"name":"GdiplusAbort","features":[74]},{"name":"GdiplusNotInitialized","features":[74]},{"name":"GdiplusNotificationHook","features":[74]},{"name":"GdiplusNotificationUnhook","features":[74]},{"name":"GdiplusShutdown","features":[74]},{"name":"GdiplusStartup","features":[3,74]},{"name":"GdiplusStartupDefault","features":[74]},{"name":"GdiplusStartupInput","features":[3,74]},{"name":"GdiplusStartupInputEx","features":[3,74]},{"name":"GdiplusStartupNoSetRound","features":[74]},{"name":"GdiplusStartupOutput","features":[74]},{"name":"GdiplusStartupParams","features":[74]},{"name":"GdiplusStartupSetPSValue","features":[74]},{"name":"GdiplusStartupTransparencyMask","features":[74]},{"name":"GenericError","features":[74]},{"name":"GenericFontFamily","features":[74]},{"name":"GenericFontFamilyMonospace","features":[74]},{"name":"GenericFontFamilySansSerif","features":[74]},{"name":"GenericFontFamilySerif","features":[74]},{"name":"GetThumbnailImageAbort","features":[3,74]},{"name":"GpAdjustableArrowCap","features":[74]},{"name":"GpBitmap","features":[74]},{"name":"GpBrush","features":[74]},{"name":"GpCachedBitmap","features":[74]},{"name":"GpCustomLineCap","features":[74]},{"name":"GpFont","features":[74]},{"name":"GpFontCollection","features":[74]},{"name":"GpFontFamily","features":[74]},{"name":"GpGraphics","features":[74]},{"name":"GpHatch","features":[74]},{"name":"GpImage","features":[74]},{"name":"GpImageAttributes","features":[74]},{"name":"GpInstalledFontCollection","features":[74]},{"name":"GpLineGradient","features":[74]},{"name":"GpMetafile","features":[74]},{"name":"GpPath","features":[74]},{"name":"GpPathGradient","features":[74]},{"name":"GpPathIterator","features":[74]},{"name":"GpPen","features":[74]},{"name":"GpPrivateFontCollection","features":[74]},{"name":"GpRegion","features":[74]},{"name":"GpSolidFill","features":[74]},{"name":"GpStringFormat","features":[74]},{"name":"GpTestControlEnum","features":[74]},{"name":"GpTexture","features":[74]},{"name":"HatchStyle","features":[74]},{"name":"HatchStyle05Percent","features":[74]},{"name":"HatchStyle10Percent","features":[74]},{"name":"HatchStyle20Percent","features":[74]},{"name":"HatchStyle25Percent","features":[74]},{"name":"HatchStyle30Percent","features":[74]},{"name":"HatchStyle40Percent","features":[74]},{"name":"HatchStyle50Percent","features":[74]},{"name":"HatchStyle60Percent","features":[74]},{"name":"HatchStyle70Percent","features":[74]},{"name":"HatchStyle75Percent","features":[74]},{"name":"HatchStyle80Percent","features":[74]},{"name":"HatchStyle90Percent","features":[74]},{"name":"HatchStyleBackwardDiagonal","features":[74]},{"name":"HatchStyleCross","features":[74]},{"name":"HatchStyleDarkDownwardDiagonal","features":[74]},{"name":"HatchStyleDarkHorizontal","features":[74]},{"name":"HatchStyleDarkUpwardDiagonal","features":[74]},{"name":"HatchStyleDarkVertical","features":[74]},{"name":"HatchStyleDashedDownwardDiagonal","features":[74]},{"name":"HatchStyleDashedHorizontal","features":[74]},{"name":"HatchStyleDashedUpwardDiagonal","features":[74]},{"name":"HatchStyleDashedVertical","features":[74]},{"name":"HatchStyleDiagonalBrick","features":[74]},{"name":"HatchStyleDiagonalCross","features":[74]},{"name":"HatchStyleDivot","features":[74]},{"name":"HatchStyleDottedDiamond","features":[74]},{"name":"HatchStyleDottedGrid","features":[74]},{"name":"HatchStyleForwardDiagonal","features":[74]},{"name":"HatchStyleHorizontal","features":[74]},{"name":"HatchStyleHorizontalBrick","features":[74]},{"name":"HatchStyleLargeCheckerBoard","features":[74]},{"name":"HatchStyleLargeConfetti","features":[74]},{"name":"HatchStyleLargeGrid","features":[74]},{"name":"HatchStyleLightDownwardDiagonal","features":[74]},{"name":"HatchStyleLightHorizontal","features":[74]},{"name":"HatchStyleLightUpwardDiagonal","features":[74]},{"name":"HatchStyleLightVertical","features":[74]},{"name":"HatchStyleMax","features":[74]},{"name":"HatchStyleMin","features":[74]},{"name":"HatchStyleNarrowHorizontal","features":[74]},{"name":"HatchStyleNarrowVertical","features":[74]},{"name":"HatchStyleOutlinedDiamond","features":[74]},{"name":"HatchStylePlaid","features":[74]},{"name":"HatchStyleShingle","features":[74]},{"name":"HatchStyleSmallCheckerBoard","features":[74]},{"name":"HatchStyleSmallConfetti","features":[74]},{"name":"HatchStyleSmallGrid","features":[74]},{"name":"HatchStyleSolidDiamond","features":[74]},{"name":"HatchStyleSphere","features":[74]},{"name":"HatchStyleTotal","features":[74]},{"name":"HatchStyleTrellis","features":[74]},{"name":"HatchStyleVertical","features":[74]},{"name":"HatchStyleWave","features":[74]},{"name":"HatchStyleWeave","features":[74]},{"name":"HatchStyleWideDownwardDiagonal","features":[74]},{"name":"HatchStyleWideUpwardDiagonal","features":[74]},{"name":"HatchStyleZigZag","features":[74]},{"name":"HistogramFormat","features":[74]},{"name":"HistogramFormatA","features":[74]},{"name":"HistogramFormatARGB","features":[74]},{"name":"HistogramFormatB","features":[74]},{"name":"HistogramFormatG","features":[74]},{"name":"HistogramFormatGray","features":[74]},{"name":"HistogramFormatPARGB","features":[74]},{"name":"HistogramFormatR","features":[74]},{"name":"HistogramFormatRGB","features":[74]},{"name":"HotkeyPrefix","features":[74]},{"name":"HotkeyPrefixHide","features":[74]},{"name":"HotkeyPrefixNone","features":[74]},{"name":"HotkeyPrefixShow","features":[74]},{"name":"HueSaturationLightness","features":[3,74]},{"name":"HueSaturationLightnessEffectGuid","features":[74]},{"name":"HueSaturationLightnessParams","features":[74]},{"name":"IImageBytes","features":[74]},{"name":"Image","features":[74]},{"name":"ImageAbort","features":[3,74]},{"name":"ImageCodecFlags","features":[74]},{"name":"ImageCodecFlagsBlockingDecode","features":[74]},{"name":"ImageCodecFlagsBuiltin","features":[74]},{"name":"ImageCodecFlagsDecoder","features":[74]},{"name":"ImageCodecFlagsEncoder","features":[74]},{"name":"ImageCodecFlagsSeekableEncode","features":[74]},{"name":"ImageCodecFlagsSupportBitmap","features":[74]},{"name":"ImageCodecFlagsSupportVector","features":[74]},{"name":"ImageCodecFlagsSystem","features":[74]},{"name":"ImageCodecFlagsUser","features":[74]},{"name":"ImageCodecInfo","features":[74]},{"name":"ImageFlags","features":[74]},{"name":"ImageFlagsCaching","features":[74]},{"name":"ImageFlagsColorSpaceCMYK","features":[74]},{"name":"ImageFlagsColorSpaceGRAY","features":[74]},{"name":"ImageFlagsColorSpaceRGB","features":[74]},{"name":"ImageFlagsColorSpaceYCBCR","features":[74]},{"name":"ImageFlagsColorSpaceYCCK","features":[74]},{"name":"ImageFlagsHasAlpha","features":[74]},{"name":"ImageFlagsHasRealDPI","features":[74]},{"name":"ImageFlagsHasRealPixelSize","features":[74]},{"name":"ImageFlagsHasTranslucent","features":[74]},{"name":"ImageFlagsNone","features":[74]},{"name":"ImageFlagsPartiallyScalable","features":[74]},{"name":"ImageFlagsReadOnly","features":[74]},{"name":"ImageFlagsScalable","features":[74]},{"name":"ImageFormatBMP","features":[74]},{"name":"ImageFormatEMF","features":[74]},{"name":"ImageFormatEXIF","features":[74]},{"name":"ImageFormatGIF","features":[74]},{"name":"ImageFormatHEIF","features":[74]},{"name":"ImageFormatIcon","features":[74]},{"name":"ImageFormatJPEG","features":[74]},{"name":"ImageFormatMemoryBMP","features":[74]},{"name":"ImageFormatPNG","features":[74]},{"name":"ImageFormatTIFF","features":[74]},{"name":"ImageFormatUndefined","features":[74]},{"name":"ImageFormatWEBP","features":[74]},{"name":"ImageFormatWMF","features":[74]},{"name":"ImageItemData","features":[74]},{"name":"ImageLockMode","features":[74]},{"name":"ImageLockModeRead","features":[74]},{"name":"ImageLockModeUserInputBuf","features":[74]},{"name":"ImageLockModeWrite","features":[74]},{"name":"ImageType","features":[74]},{"name":"ImageTypeBitmap","features":[74]},{"name":"ImageTypeMetafile","features":[74]},{"name":"ImageTypeUnknown","features":[74]},{"name":"InstalledFontCollection","features":[74]},{"name":"InsufficientBuffer","features":[74]},{"name":"InterpolationMode","features":[74]},{"name":"InterpolationModeBicubic","features":[74]},{"name":"InterpolationModeBilinear","features":[74]},{"name":"InterpolationModeDefault","features":[74]},{"name":"InterpolationModeHighQuality","features":[74]},{"name":"InterpolationModeHighQualityBicubic","features":[74]},{"name":"InterpolationModeHighQualityBilinear","features":[74]},{"name":"InterpolationModeInvalid","features":[74]},{"name":"InterpolationModeLowQuality","features":[74]},{"name":"InterpolationModeNearestNeighbor","features":[74]},{"name":"InvalidParameter","features":[74]},{"name":"ItemDataPosition","features":[74]},{"name":"ItemDataPositionAfterBits","features":[74]},{"name":"ItemDataPositionAfterHeader","features":[74]},{"name":"ItemDataPositionAfterPalette","features":[74]},{"name":"Levels","features":[3,74]},{"name":"LevelsEffectGuid","features":[74]},{"name":"LevelsParams","features":[74]},{"name":"LineCap","features":[74]},{"name":"LineCapAnchorMask","features":[74]},{"name":"LineCapArrowAnchor","features":[74]},{"name":"LineCapCustom","features":[74]},{"name":"LineCapDiamondAnchor","features":[74]},{"name":"LineCapFlat","features":[74]},{"name":"LineCapNoAnchor","features":[74]},{"name":"LineCapRound","features":[74]},{"name":"LineCapRoundAnchor","features":[74]},{"name":"LineCapSquare","features":[74]},{"name":"LineCapSquareAnchor","features":[74]},{"name":"LineCapTriangle","features":[74]},{"name":"LineJoin","features":[74]},{"name":"LineJoinBevel","features":[74]},{"name":"LineJoinMiter","features":[74]},{"name":"LineJoinMiterClipped","features":[74]},{"name":"LineJoinRound","features":[74]},{"name":"LinearGradientMode","features":[74]},{"name":"LinearGradientModeBackwardDiagonal","features":[74]},{"name":"LinearGradientModeForwardDiagonal","features":[74]},{"name":"LinearGradientModeHorizontal","features":[74]},{"name":"LinearGradientModeVertical","features":[74]},{"name":"Matrix","features":[74]},{"name":"MatrixOrder","features":[74]},{"name":"MatrixOrderAppend","features":[74]},{"name":"MatrixOrderPrepend","features":[74]},{"name":"Metafile","features":[74]},{"name":"MetafileFrameUnit","features":[74]},{"name":"MetafileFrameUnitDocument","features":[74]},{"name":"MetafileFrameUnitGdi","features":[74]},{"name":"MetafileFrameUnitInch","features":[74]},{"name":"MetafileFrameUnitMillimeter","features":[74]},{"name":"MetafileFrameUnitPixel","features":[74]},{"name":"MetafileFrameUnitPoint","features":[74]},{"name":"MetafileHeader","features":[3,14,74]},{"name":"MetafileType","features":[74]},{"name":"MetafileTypeEmf","features":[74]},{"name":"MetafileTypeEmfPlusDual","features":[74]},{"name":"MetafileTypeEmfPlusOnly","features":[74]},{"name":"MetafileTypeInvalid","features":[74]},{"name":"MetafileTypeWmf","features":[74]},{"name":"MetafileTypeWmfPlaceable","features":[74]},{"name":"NotImplemented","features":[74]},{"name":"NotTrueTypeFont","features":[74]},{"name":"NotificationHookProc","features":[74]},{"name":"NotificationUnhookProc","features":[74]},{"name":"ObjectBusy","features":[74]},{"name":"ObjectType","features":[74]},{"name":"ObjectTypeBrush","features":[74]},{"name":"ObjectTypeCustomLineCap","features":[74]},{"name":"ObjectTypeFont","features":[74]},{"name":"ObjectTypeGraphics","features":[74]},{"name":"ObjectTypeImage","features":[74]},{"name":"ObjectTypeImageAttributes","features":[74]},{"name":"ObjectTypeInvalid","features":[74]},{"name":"ObjectTypeMax","features":[74]},{"name":"ObjectTypeMin","features":[74]},{"name":"ObjectTypePath","features":[74]},{"name":"ObjectTypePen","features":[74]},{"name":"ObjectTypeRegion","features":[74]},{"name":"ObjectTypeStringFormat","features":[74]},{"name":"Ok","features":[74]},{"name":"OutOfMemory","features":[74]},{"name":"PWMFRect16","features":[74]},{"name":"PaletteFlags","features":[74]},{"name":"PaletteFlagsGrayScale","features":[74]},{"name":"PaletteFlagsHalftone","features":[74]},{"name":"PaletteFlagsHasAlpha","features":[74]},{"name":"PaletteType","features":[74]},{"name":"PaletteTypeCustom","features":[74]},{"name":"PaletteTypeFixedBW","features":[74]},{"name":"PaletteTypeFixedHalftone125","features":[74]},{"name":"PaletteTypeFixedHalftone216","features":[74]},{"name":"PaletteTypeFixedHalftone252","features":[74]},{"name":"PaletteTypeFixedHalftone256","features":[74]},{"name":"PaletteTypeFixedHalftone27","features":[74]},{"name":"PaletteTypeFixedHalftone64","features":[74]},{"name":"PaletteTypeFixedHalftone8","features":[74]},{"name":"PaletteTypeOptimal","features":[74]},{"name":"PathData","features":[74]},{"name":"PathPointType","features":[74]},{"name":"PathPointTypeBezier","features":[74]},{"name":"PathPointTypeBezier3","features":[74]},{"name":"PathPointTypeCloseSubpath","features":[74]},{"name":"PathPointTypeDashMode","features":[74]},{"name":"PathPointTypeLine","features":[74]},{"name":"PathPointTypePathMarker","features":[74]},{"name":"PathPointTypePathTypeMask","features":[74]},{"name":"PathPointTypeStart","features":[74]},{"name":"PenAlignment","features":[74]},{"name":"PenAlignmentCenter","features":[74]},{"name":"PenAlignmentInset","features":[74]},{"name":"PenType","features":[74]},{"name":"PenTypeHatchFill","features":[74]},{"name":"PenTypeLinearGradient","features":[74]},{"name":"PenTypePathGradient","features":[74]},{"name":"PenTypeSolidColor","features":[74]},{"name":"PenTypeTextureFill","features":[74]},{"name":"PenTypeUnknown","features":[74]},{"name":"PixelFormatAlpha","features":[74]},{"name":"PixelFormatCanonical","features":[74]},{"name":"PixelFormatDontCare","features":[74]},{"name":"PixelFormatExtended","features":[74]},{"name":"PixelFormatGDI","features":[74]},{"name":"PixelFormatIndexed","features":[74]},{"name":"PixelFormatMax","features":[74]},{"name":"PixelFormatPAlpha","features":[74]},{"name":"PixelFormatUndefined","features":[74]},{"name":"PixelOffsetMode","features":[74]},{"name":"PixelOffsetModeDefault","features":[74]},{"name":"PixelOffsetModeHalf","features":[74]},{"name":"PixelOffsetModeHighQuality","features":[74]},{"name":"PixelOffsetModeHighSpeed","features":[74]},{"name":"PixelOffsetModeInvalid","features":[74]},{"name":"PixelOffsetModeNone","features":[74]},{"name":"Point","features":[74]},{"name":"PointF","features":[74]},{"name":"PrivateFontCollection","features":[74]},{"name":"ProfileNotFound","features":[74]},{"name":"PropertyItem","features":[74]},{"name":"PropertyNotFound","features":[74]},{"name":"PropertyNotSupported","features":[74]},{"name":"PropertyTagArtist","features":[74]},{"name":"PropertyTagBitsPerSample","features":[74]},{"name":"PropertyTagCellHeight","features":[74]},{"name":"PropertyTagCellWidth","features":[74]},{"name":"PropertyTagChrominanceTable","features":[74]},{"name":"PropertyTagColorMap","features":[74]},{"name":"PropertyTagColorTransferFunction","features":[74]},{"name":"PropertyTagCompression","features":[74]},{"name":"PropertyTagCopyright","features":[74]},{"name":"PropertyTagDateTime","features":[74]},{"name":"PropertyTagDocumentName","features":[74]},{"name":"PropertyTagDotRange","features":[74]},{"name":"PropertyTagEquipMake","features":[74]},{"name":"PropertyTagEquipModel","features":[74]},{"name":"PropertyTagExifAperture","features":[74]},{"name":"PropertyTagExifBrightness","features":[74]},{"name":"PropertyTagExifCfaPattern","features":[74]},{"name":"PropertyTagExifColorSpace","features":[74]},{"name":"PropertyTagExifCompBPP","features":[74]},{"name":"PropertyTagExifCompConfig","features":[74]},{"name":"PropertyTagExifContrast","features":[74]},{"name":"PropertyTagExifCustomRendered","features":[74]},{"name":"PropertyTagExifDTDigSS","features":[74]},{"name":"PropertyTagExifDTDigitized","features":[74]},{"name":"PropertyTagExifDTOrig","features":[74]},{"name":"PropertyTagExifDTOrigSS","features":[74]},{"name":"PropertyTagExifDTSubsec","features":[74]},{"name":"PropertyTagExifDeviceSettingDesc","features":[74]},{"name":"PropertyTagExifDigitalZoomRatio","features":[74]},{"name":"PropertyTagExifExposureBias","features":[74]},{"name":"PropertyTagExifExposureIndex","features":[74]},{"name":"PropertyTagExifExposureMode","features":[74]},{"name":"PropertyTagExifExposureProg","features":[74]},{"name":"PropertyTagExifExposureTime","features":[74]},{"name":"PropertyTagExifFNumber","features":[74]},{"name":"PropertyTagExifFPXVer","features":[74]},{"name":"PropertyTagExifFileSource","features":[74]},{"name":"PropertyTagExifFlash","features":[74]},{"name":"PropertyTagExifFlashEnergy","features":[74]},{"name":"PropertyTagExifFocalLength","features":[74]},{"name":"PropertyTagExifFocalLengthIn35mmFilm","features":[74]},{"name":"PropertyTagExifFocalResUnit","features":[74]},{"name":"PropertyTagExifFocalXRes","features":[74]},{"name":"PropertyTagExifFocalYRes","features":[74]},{"name":"PropertyTagExifGainControl","features":[74]},{"name":"PropertyTagExifIFD","features":[74]},{"name":"PropertyTagExifISOSpeed","features":[74]},{"name":"PropertyTagExifInterop","features":[74]},{"name":"PropertyTagExifLightSource","features":[74]},{"name":"PropertyTagExifMakerNote","features":[74]},{"name":"PropertyTagExifMaxAperture","features":[74]},{"name":"PropertyTagExifMeteringMode","features":[74]},{"name":"PropertyTagExifOECF","features":[74]},{"name":"PropertyTagExifPixXDim","features":[74]},{"name":"PropertyTagExifPixYDim","features":[74]},{"name":"PropertyTagExifRelatedWav","features":[74]},{"name":"PropertyTagExifSaturation","features":[74]},{"name":"PropertyTagExifSceneCaptureType","features":[74]},{"name":"PropertyTagExifSceneType","features":[74]},{"name":"PropertyTagExifSensingMethod","features":[74]},{"name":"PropertyTagExifSharpness","features":[74]},{"name":"PropertyTagExifShutterSpeed","features":[74]},{"name":"PropertyTagExifSpatialFR","features":[74]},{"name":"PropertyTagExifSpectralSense","features":[74]},{"name":"PropertyTagExifSubjectArea","features":[74]},{"name":"PropertyTagExifSubjectDist","features":[74]},{"name":"PropertyTagExifSubjectDistanceRange","features":[74]},{"name":"PropertyTagExifSubjectLoc","features":[74]},{"name":"PropertyTagExifUniqueImageID","features":[74]},{"name":"PropertyTagExifUserComment","features":[74]},{"name":"PropertyTagExifVer","features":[74]},{"name":"PropertyTagExifWhiteBalance","features":[74]},{"name":"PropertyTagExtraSamples","features":[74]},{"name":"PropertyTagFillOrder","features":[74]},{"name":"PropertyTagFrameDelay","features":[74]},{"name":"PropertyTagFreeByteCounts","features":[74]},{"name":"PropertyTagFreeOffset","features":[74]},{"name":"PropertyTagGamma","features":[74]},{"name":"PropertyTagGlobalPalette","features":[74]},{"name":"PropertyTagGpsAltitude","features":[74]},{"name":"PropertyTagGpsAltitudeRef","features":[74]},{"name":"PropertyTagGpsAreaInformation","features":[74]},{"name":"PropertyTagGpsDate","features":[74]},{"name":"PropertyTagGpsDestBear","features":[74]},{"name":"PropertyTagGpsDestBearRef","features":[74]},{"name":"PropertyTagGpsDestDist","features":[74]},{"name":"PropertyTagGpsDestDistRef","features":[74]},{"name":"PropertyTagGpsDestLat","features":[74]},{"name":"PropertyTagGpsDestLatRef","features":[74]},{"name":"PropertyTagGpsDestLong","features":[74]},{"name":"PropertyTagGpsDestLongRef","features":[74]},{"name":"PropertyTagGpsDifferential","features":[74]},{"name":"PropertyTagGpsGpsDop","features":[74]},{"name":"PropertyTagGpsGpsMeasureMode","features":[74]},{"name":"PropertyTagGpsGpsSatellites","features":[74]},{"name":"PropertyTagGpsGpsStatus","features":[74]},{"name":"PropertyTagGpsGpsTime","features":[74]},{"name":"PropertyTagGpsIFD","features":[74]},{"name":"PropertyTagGpsImgDir","features":[74]},{"name":"PropertyTagGpsImgDirRef","features":[74]},{"name":"PropertyTagGpsLatitude","features":[74]},{"name":"PropertyTagGpsLatitudeRef","features":[74]},{"name":"PropertyTagGpsLongitude","features":[74]},{"name":"PropertyTagGpsLongitudeRef","features":[74]},{"name":"PropertyTagGpsMapDatum","features":[74]},{"name":"PropertyTagGpsProcessingMethod","features":[74]},{"name":"PropertyTagGpsSpeed","features":[74]},{"name":"PropertyTagGpsSpeedRef","features":[74]},{"name":"PropertyTagGpsTrack","features":[74]},{"name":"PropertyTagGpsTrackRef","features":[74]},{"name":"PropertyTagGpsVer","features":[74]},{"name":"PropertyTagGrayResponseCurve","features":[74]},{"name":"PropertyTagGrayResponseUnit","features":[74]},{"name":"PropertyTagGridSize","features":[74]},{"name":"PropertyTagHalftoneDegree","features":[74]},{"name":"PropertyTagHalftoneHints","features":[74]},{"name":"PropertyTagHalftoneLPI","features":[74]},{"name":"PropertyTagHalftoneLPIUnit","features":[74]},{"name":"PropertyTagHalftoneMisc","features":[74]},{"name":"PropertyTagHalftoneScreen","features":[74]},{"name":"PropertyTagHalftoneShape","features":[74]},{"name":"PropertyTagHostComputer","features":[74]},{"name":"PropertyTagICCProfile","features":[74]},{"name":"PropertyTagICCProfileDescriptor","features":[74]},{"name":"PropertyTagImageDescription","features":[74]},{"name":"PropertyTagImageHeight","features":[74]},{"name":"PropertyTagImageTitle","features":[74]},{"name":"PropertyTagImageWidth","features":[74]},{"name":"PropertyTagIndexBackground","features":[74]},{"name":"PropertyTagIndexTransparent","features":[74]},{"name":"PropertyTagInkNames","features":[74]},{"name":"PropertyTagInkSet","features":[74]},{"name":"PropertyTagJPEGACTables","features":[74]},{"name":"PropertyTagJPEGDCTables","features":[74]},{"name":"PropertyTagJPEGInterFormat","features":[74]},{"name":"PropertyTagJPEGInterLength","features":[74]},{"name":"PropertyTagJPEGLosslessPredictors","features":[74]},{"name":"PropertyTagJPEGPointTransforms","features":[74]},{"name":"PropertyTagJPEGProc","features":[74]},{"name":"PropertyTagJPEGQTables","features":[74]},{"name":"PropertyTagJPEGQuality","features":[74]},{"name":"PropertyTagJPEGRestartInterval","features":[74]},{"name":"PropertyTagLoopCount","features":[74]},{"name":"PropertyTagLuminanceTable","features":[74]},{"name":"PropertyTagMaxSampleValue","features":[74]},{"name":"PropertyTagMinSampleValue","features":[74]},{"name":"PropertyTagNewSubfileType","features":[74]},{"name":"PropertyTagNumberOfInks","features":[74]},{"name":"PropertyTagOrientation","features":[74]},{"name":"PropertyTagPageName","features":[74]},{"name":"PropertyTagPageNumber","features":[74]},{"name":"PropertyTagPaletteHistogram","features":[74]},{"name":"PropertyTagPhotometricInterp","features":[74]},{"name":"PropertyTagPixelPerUnitX","features":[74]},{"name":"PropertyTagPixelPerUnitY","features":[74]},{"name":"PropertyTagPixelUnit","features":[74]},{"name":"PropertyTagPlanarConfig","features":[74]},{"name":"PropertyTagPredictor","features":[74]},{"name":"PropertyTagPrimaryChromaticities","features":[74]},{"name":"PropertyTagPrintFlags","features":[74]},{"name":"PropertyTagPrintFlagsBleedWidth","features":[74]},{"name":"PropertyTagPrintFlagsBleedWidthScale","features":[74]},{"name":"PropertyTagPrintFlagsCrop","features":[74]},{"name":"PropertyTagPrintFlagsVersion","features":[74]},{"name":"PropertyTagREFBlackWhite","features":[74]},{"name":"PropertyTagResolutionUnit","features":[74]},{"name":"PropertyTagResolutionXLengthUnit","features":[74]},{"name":"PropertyTagResolutionXUnit","features":[74]},{"name":"PropertyTagResolutionYLengthUnit","features":[74]},{"name":"PropertyTagResolutionYUnit","features":[74]},{"name":"PropertyTagRowsPerStrip","features":[74]},{"name":"PropertyTagSMaxSampleValue","features":[74]},{"name":"PropertyTagSMinSampleValue","features":[74]},{"name":"PropertyTagSRGBRenderingIntent","features":[74]},{"name":"PropertyTagSampleFormat","features":[74]},{"name":"PropertyTagSamplesPerPixel","features":[74]},{"name":"PropertyTagSoftwareUsed","features":[74]},{"name":"PropertyTagStripBytesCount","features":[74]},{"name":"PropertyTagStripOffsets","features":[74]},{"name":"PropertyTagSubfileType","features":[74]},{"name":"PropertyTagT4Option","features":[74]},{"name":"PropertyTagT6Option","features":[74]},{"name":"PropertyTagTargetPrinter","features":[74]},{"name":"PropertyTagThreshHolding","features":[74]},{"name":"PropertyTagThumbnailArtist","features":[74]},{"name":"PropertyTagThumbnailBitsPerSample","features":[74]},{"name":"PropertyTagThumbnailColorDepth","features":[74]},{"name":"PropertyTagThumbnailCompressedSize","features":[74]},{"name":"PropertyTagThumbnailCompression","features":[74]},{"name":"PropertyTagThumbnailCopyRight","features":[74]},{"name":"PropertyTagThumbnailData","features":[74]},{"name":"PropertyTagThumbnailDateTime","features":[74]},{"name":"PropertyTagThumbnailEquipMake","features":[74]},{"name":"PropertyTagThumbnailEquipModel","features":[74]},{"name":"PropertyTagThumbnailFormat","features":[74]},{"name":"PropertyTagThumbnailHeight","features":[74]},{"name":"PropertyTagThumbnailImageDescription","features":[74]},{"name":"PropertyTagThumbnailImageHeight","features":[74]},{"name":"PropertyTagThumbnailImageWidth","features":[74]},{"name":"PropertyTagThumbnailOrientation","features":[74]},{"name":"PropertyTagThumbnailPhotometricInterp","features":[74]},{"name":"PropertyTagThumbnailPlanarConfig","features":[74]},{"name":"PropertyTagThumbnailPlanes","features":[74]},{"name":"PropertyTagThumbnailPrimaryChromaticities","features":[74]},{"name":"PropertyTagThumbnailRawBytes","features":[74]},{"name":"PropertyTagThumbnailRefBlackWhite","features":[74]},{"name":"PropertyTagThumbnailResolutionUnit","features":[74]},{"name":"PropertyTagThumbnailResolutionX","features":[74]},{"name":"PropertyTagThumbnailResolutionY","features":[74]},{"name":"PropertyTagThumbnailRowsPerStrip","features":[74]},{"name":"PropertyTagThumbnailSamplesPerPixel","features":[74]},{"name":"PropertyTagThumbnailSize","features":[74]},{"name":"PropertyTagThumbnailSoftwareUsed","features":[74]},{"name":"PropertyTagThumbnailStripBytesCount","features":[74]},{"name":"PropertyTagThumbnailStripOffsets","features":[74]},{"name":"PropertyTagThumbnailTransferFunction","features":[74]},{"name":"PropertyTagThumbnailWhitePoint","features":[74]},{"name":"PropertyTagThumbnailWidth","features":[74]},{"name":"PropertyTagThumbnailYCbCrCoefficients","features":[74]},{"name":"PropertyTagThumbnailYCbCrPositioning","features":[74]},{"name":"PropertyTagThumbnailYCbCrSubsampling","features":[74]},{"name":"PropertyTagTileByteCounts","features":[74]},{"name":"PropertyTagTileLength","features":[74]},{"name":"PropertyTagTileOffset","features":[74]},{"name":"PropertyTagTileWidth","features":[74]},{"name":"PropertyTagTransferFuncition","features":[74]},{"name":"PropertyTagTransferRange","features":[74]},{"name":"PropertyTagTypeASCII","features":[74]},{"name":"PropertyTagTypeByte","features":[74]},{"name":"PropertyTagTypeLong","features":[74]},{"name":"PropertyTagTypeRational","features":[74]},{"name":"PropertyTagTypeSLONG","features":[74]},{"name":"PropertyTagTypeSRational","features":[74]},{"name":"PropertyTagTypeShort","features":[74]},{"name":"PropertyTagTypeUndefined","features":[74]},{"name":"PropertyTagWhitePoint","features":[74]},{"name":"PropertyTagXPosition","features":[74]},{"name":"PropertyTagXResolution","features":[74]},{"name":"PropertyTagYCbCrCoefficients","features":[74]},{"name":"PropertyTagYCbCrPositioning","features":[74]},{"name":"PropertyTagYCbCrSubsampling","features":[74]},{"name":"PropertyTagYPosition","features":[74]},{"name":"PropertyTagYResolution","features":[74]},{"name":"QualityMode","features":[74]},{"name":"QualityModeDefault","features":[74]},{"name":"QualityModeHigh","features":[74]},{"name":"QualityModeInvalid","features":[74]},{"name":"QualityModeLow","features":[74]},{"name":"RED_SHIFT","features":[74]},{"name":"Rect","features":[74]},{"name":"RectF","features":[74]},{"name":"RedEyeCorrection","features":[3,74]},{"name":"RedEyeCorrectionEffectGuid","features":[74]},{"name":"RedEyeCorrectionParams","features":[3,74]},{"name":"Region","features":[74]},{"name":"Rotate180FlipNone","features":[74]},{"name":"Rotate180FlipX","features":[74]},{"name":"Rotate180FlipXY","features":[74]},{"name":"Rotate180FlipY","features":[74]},{"name":"Rotate270FlipNone","features":[74]},{"name":"Rotate270FlipX","features":[74]},{"name":"Rotate270FlipXY","features":[74]},{"name":"Rotate270FlipY","features":[74]},{"name":"Rotate90FlipNone","features":[74]},{"name":"Rotate90FlipX","features":[74]},{"name":"Rotate90FlipXY","features":[74]},{"name":"Rotate90FlipY","features":[74]},{"name":"RotateFlipType","features":[74]},{"name":"RotateNoneFlipNone","features":[74]},{"name":"RotateNoneFlipX","features":[74]},{"name":"RotateNoneFlipXY","features":[74]},{"name":"RotateNoneFlipY","features":[74]},{"name":"Sharpen","features":[3,74]},{"name":"SharpenEffectGuid","features":[74]},{"name":"SharpenParams","features":[74]},{"name":"Size","features":[74]},{"name":"SizeF","features":[74]},{"name":"SmoothingMode","features":[74]},{"name":"SmoothingModeAntiAlias","features":[74]},{"name":"SmoothingModeAntiAlias8x4","features":[74]},{"name":"SmoothingModeAntiAlias8x8","features":[74]},{"name":"SmoothingModeDefault","features":[74]},{"name":"SmoothingModeHighQuality","features":[74]},{"name":"SmoothingModeHighSpeed","features":[74]},{"name":"SmoothingModeInvalid","features":[74]},{"name":"SmoothingModeNone","features":[74]},{"name":"Status","features":[74]},{"name":"StringAlignment","features":[74]},{"name":"StringAlignmentCenter","features":[74]},{"name":"StringAlignmentFar","features":[74]},{"name":"StringAlignmentNear","features":[74]},{"name":"StringDigitSubstitute","features":[74]},{"name":"StringDigitSubstituteNational","features":[74]},{"name":"StringDigitSubstituteNone","features":[74]},{"name":"StringDigitSubstituteTraditional","features":[74]},{"name":"StringDigitSubstituteUser","features":[74]},{"name":"StringFormatFlags","features":[74]},{"name":"StringFormatFlagsBypassGDI","features":[74]},{"name":"StringFormatFlagsDirectionRightToLeft","features":[74]},{"name":"StringFormatFlagsDirectionVertical","features":[74]},{"name":"StringFormatFlagsDisplayFormatControl","features":[74]},{"name":"StringFormatFlagsLineLimit","features":[74]},{"name":"StringFormatFlagsMeasureTrailingSpaces","features":[74]},{"name":"StringFormatFlagsNoClip","features":[74]},{"name":"StringFormatFlagsNoFitBlackBox","features":[74]},{"name":"StringFormatFlagsNoFontFallback","features":[74]},{"name":"StringFormatFlagsNoWrap","features":[74]},{"name":"StringTrimming","features":[74]},{"name":"StringTrimmingCharacter","features":[74]},{"name":"StringTrimmingEllipsisCharacter","features":[74]},{"name":"StringTrimmingEllipsisPath","features":[74]},{"name":"StringTrimmingEllipsisWord","features":[74]},{"name":"StringTrimmingNone","features":[74]},{"name":"StringTrimmingWord","features":[74]},{"name":"TestControlForceBilinear","features":[74]},{"name":"TestControlGetBuildNumber","features":[74]},{"name":"TestControlNoICM","features":[74]},{"name":"TextRenderingHint","features":[74]},{"name":"TextRenderingHintAntiAlias","features":[74]},{"name":"TextRenderingHintAntiAliasGridFit","features":[74]},{"name":"TextRenderingHintClearTypeGridFit","features":[74]},{"name":"TextRenderingHintSingleBitPerPixel","features":[74]},{"name":"TextRenderingHintSingleBitPerPixelGridFit","features":[74]},{"name":"TextRenderingHintSystemDefault","features":[74]},{"name":"Tint","features":[3,74]},{"name":"TintEffectGuid","features":[74]},{"name":"TintParams","features":[74]},{"name":"Unit","features":[74]},{"name":"UnitDisplay","features":[74]},{"name":"UnitDocument","features":[74]},{"name":"UnitInch","features":[74]},{"name":"UnitMillimeter","features":[74]},{"name":"UnitPixel","features":[74]},{"name":"UnitPoint","features":[74]},{"name":"UnitWorld","features":[74]},{"name":"UnknownImageFormat","features":[74]},{"name":"UnsupportedGdiplusVersion","features":[74]},{"name":"ValueOverflow","features":[74]},{"name":"WarpMode","features":[74]},{"name":"WarpModeBilinear","features":[74]},{"name":"WarpModePerspective","features":[74]},{"name":"Win32Error","features":[74]},{"name":"WmfPlaceableFileHeader","features":[74]},{"name":"WmfRecordTypeAbortDoc","features":[74]},{"name":"WmfRecordTypeAnimatePalette","features":[74]},{"name":"WmfRecordTypeArc","features":[74]},{"name":"WmfRecordTypeBitBlt","features":[74]},{"name":"WmfRecordTypeChord","features":[74]},{"name":"WmfRecordTypeCreateBitmap","features":[74]},{"name":"WmfRecordTypeCreateBitmapIndirect","features":[74]},{"name":"WmfRecordTypeCreateBrush","features":[74]},{"name":"WmfRecordTypeCreateBrushIndirect","features":[74]},{"name":"WmfRecordTypeCreateFontIndirect","features":[74]},{"name":"WmfRecordTypeCreatePalette","features":[74]},{"name":"WmfRecordTypeCreatePatternBrush","features":[74]},{"name":"WmfRecordTypeCreatePenIndirect","features":[74]},{"name":"WmfRecordTypeCreateRegion","features":[74]},{"name":"WmfRecordTypeDIBBitBlt","features":[74]},{"name":"WmfRecordTypeDIBCreatePatternBrush","features":[74]},{"name":"WmfRecordTypeDIBStretchBlt","features":[74]},{"name":"WmfRecordTypeDeleteObject","features":[74]},{"name":"WmfRecordTypeDrawText","features":[74]},{"name":"WmfRecordTypeEllipse","features":[74]},{"name":"WmfRecordTypeEndDoc","features":[74]},{"name":"WmfRecordTypeEndPage","features":[74]},{"name":"WmfRecordTypeEscape","features":[74]},{"name":"WmfRecordTypeExcludeClipRect","features":[74]},{"name":"WmfRecordTypeExtFloodFill","features":[74]},{"name":"WmfRecordTypeExtTextOut","features":[74]},{"name":"WmfRecordTypeFillRegion","features":[74]},{"name":"WmfRecordTypeFloodFill","features":[74]},{"name":"WmfRecordTypeFrameRegion","features":[74]},{"name":"WmfRecordTypeIntersectClipRect","features":[74]},{"name":"WmfRecordTypeInvertRegion","features":[74]},{"name":"WmfRecordTypeLineTo","features":[74]},{"name":"WmfRecordTypeMoveTo","features":[74]},{"name":"WmfRecordTypeOffsetClipRgn","features":[74]},{"name":"WmfRecordTypeOffsetViewportOrg","features":[74]},{"name":"WmfRecordTypeOffsetWindowOrg","features":[74]},{"name":"WmfRecordTypePaintRegion","features":[74]},{"name":"WmfRecordTypePatBlt","features":[74]},{"name":"WmfRecordTypePie","features":[74]},{"name":"WmfRecordTypePolyPolygon","features":[74]},{"name":"WmfRecordTypePolygon","features":[74]},{"name":"WmfRecordTypePolyline","features":[74]},{"name":"WmfRecordTypeRealizePalette","features":[74]},{"name":"WmfRecordTypeRectangle","features":[74]},{"name":"WmfRecordTypeResetDC","features":[74]},{"name":"WmfRecordTypeResizePalette","features":[74]},{"name":"WmfRecordTypeRestoreDC","features":[74]},{"name":"WmfRecordTypeRoundRect","features":[74]},{"name":"WmfRecordTypeSaveDC","features":[74]},{"name":"WmfRecordTypeScaleViewportExt","features":[74]},{"name":"WmfRecordTypeScaleWindowExt","features":[74]},{"name":"WmfRecordTypeSelectClipRegion","features":[74]},{"name":"WmfRecordTypeSelectObject","features":[74]},{"name":"WmfRecordTypeSelectPalette","features":[74]},{"name":"WmfRecordTypeSetBkColor","features":[74]},{"name":"WmfRecordTypeSetBkMode","features":[74]},{"name":"WmfRecordTypeSetDIBToDev","features":[74]},{"name":"WmfRecordTypeSetLayout","features":[74]},{"name":"WmfRecordTypeSetMapMode","features":[74]},{"name":"WmfRecordTypeSetMapperFlags","features":[74]},{"name":"WmfRecordTypeSetPalEntries","features":[74]},{"name":"WmfRecordTypeSetPixel","features":[74]},{"name":"WmfRecordTypeSetPolyFillMode","features":[74]},{"name":"WmfRecordTypeSetROP2","features":[74]},{"name":"WmfRecordTypeSetRelAbs","features":[74]},{"name":"WmfRecordTypeSetStretchBltMode","features":[74]},{"name":"WmfRecordTypeSetTextAlign","features":[74]},{"name":"WmfRecordTypeSetTextCharExtra","features":[74]},{"name":"WmfRecordTypeSetTextColor","features":[74]},{"name":"WmfRecordTypeSetTextJustification","features":[74]},{"name":"WmfRecordTypeSetViewportExt","features":[74]},{"name":"WmfRecordTypeSetViewportOrg","features":[74]},{"name":"WmfRecordTypeSetWindowExt","features":[74]},{"name":"WmfRecordTypeSetWindowOrg","features":[74]},{"name":"WmfRecordTypeStartDoc","features":[74]},{"name":"WmfRecordTypeStartPage","features":[74]},{"name":"WmfRecordTypeStretchBlt","features":[74]},{"name":"WmfRecordTypeStretchDIB","features":[74]},{"name":"WmfRecordTypeTextOut","features":[74]},{"name":"WrapMode","features":[74]},{"name":"WrapModeClamp","features":[74]},{"name":"WrapModeTile","features":[74]},{"name":"WrapModeTileFlipX","features":[74]},{"name":"WrapModeTileFlipXY","features":[74]},{"name":"WrapModeTileFlipY","features":[74]},{"name":"WrongState","features":[74]}],"417":[{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL2","features":[75]},{"name":"D3D_COMPILE_STANDARD_FILE_INCLUDE","features":[75]}],"420":[{"name":"ChoosePixelFormat","features":[14,56]},{"name":"DescribePixelFormat","features":[14,56]},{"name":"EMRPIXELFORMAT","features":[14,56]},{"name":"GLU_AUTO_LOAD_MATRIX","features":[56]},{"name":"GLU_BEGIN","features":[56]},{"name":"GLU_CCW","features":[56]},{"name":"GLU_CULLING","features":[56]},{"name":"GLU_CW","features":[56]},{"name":"GLU_DISPLAY_MODE","features":[56]},{"name":"GLU_DOMAIN_DISTANCE","features":[56]},{"name":"GLU_EDGE_FLAG","features":[56]},{"name":"GLU_END","features":[56]},{"name":"GLU_ERROR","features":[56]},{"name":"GLU_EXTENSIONS","features":[56]},{"name":"GLU_EXTERIOR","features":[56]},{"name":"GLU_FALSE","features":[56]},{"name":"GLU_FILL","features":[56]},{"name":"GLU_FLAT","features":[56]},{"name":"GLU_INCOMPATIBLE_GL_VERSION","features":[56]},{"name":"GLU_INSIDE","features":[56]},{"name":"GLU_INTERIOR","features":[56]},{"name":"GLU_INVALID_ENUM","features":[56]},{"name":"GLU_INVALID_VALUE","features":[56]},{"name":"GLU_LINE","features":[56]},{"name":"GLU_MAP1_TRIM_2","features":[56]},{"name":"GLU_MAP1_TRIM_3","features":[56]},{"name":"GLU_NONE","features":[56]},{"name":"GLU_NURBS_ERROR1","features":[56]},{"name":"GLU_NURBS_ERROR10","features":[56]},{"name":"GLU_NURBS_ERROR11","features":[56]},{"name":"GLU_NURBS_ERROR12","features":[56]},{"name":"GLU_NURBS_ERROR13","features":[56]},{"name":"GLU_NURBS_ERROR14","features":[56]},{"name":"GLU_NURBS_ERROR15","features":[56]},{"name":"GLU_NURBS_ERROR16","features":[56]},{"name":"GLU_NURBS_ERROR17","features":[56]},{"name":"GLU_NURBS_ERROR18","features":[56]},{"name":"GLU_NURBS_ERROR19","features":[56]},{"name":"GLU_NURBS_ERROR2","features":[56]},{"name":"GLU_NURBS_ERROR20","features":[56]},{"name":"GLU_NURBS_ERROR21","features":[56]},{"name":"GLU_NURBS_ERROR22","features":[56]},{"name":"GLU_NURBS_ERROR23","features":[56]},{"name":"GLU_NURBS_ERROR24","features":[56]},{"name":"GLU_NURBS_ERROR25","features":[56]},{"name":"GLU_NURBS_ERROR26","features":[56]},{"name":"GLU_NURBS_ERROR27","features":[56]},{"name":"GLU_NURBS_ERROR28","features":[56]},{"name":"GLU_NURBS_ERROR29","features":[56]},{"name":"GLU_NURBS_ERROR3","features":[56]},{"name":"GLU_NURBS_ERROR30","features":[56]},{"name":"GLU_NURBS_ERROR31","features":[56]},{"name":"GLU_NURBS_ERROR32","features":[56]},{"name":"GLU_NURBS_ERROR33","features":[56]},{"name":"GLU_NURBS_ERROR34","features":[56]},{"name":"GLU_NURBS_ERROR35","features":[56]},{"name":"GLU_NURBS_ERROR36","features":[56]},{"name":"GLU_NURBS_ERROR37","features":[56]},{"name":"GLU_NURBS_ERROR4","features":[56]},{"name":"GLU_NURBS_ERROR5","features":[56]},{"name":"GLU_NURBS_ERROR6","features":[56]},{"name":"GLU_NURBS_ERROR7","features":[56]},{"name":"GLU_NURBS_ERROR8","features":[56]},{"name":"GLU_NURBS_ERROR9","features":[56]},{"name":"GLU_OUTLINE_PATCH","features":[56]},{"name":"GLU_OUTLINE_POLYGON","features":[56]},{"name":"GLU_OUTSIDE","features":[56]},{"name":"GLU_OUT_OF_MEMORY","features":[56]},{"name":"GLU_PARAMETRIC_ERROR","features":[56]},{"name":"GLU_PARAMETRIC_TOLERANCE","features":[56]},{"name":"GLU_PATH_LENGTH","features":[56]},{"name":"GLU_POINT","features":[56]},{"name":"GLU_SAMPLING_METHOD","features":[56]},{"name":"GLU_SAMPLING_TOLERANCE","features":[56]},{"name":"GLU_SILHOUETTE","features":[56]},{"name":"GLU_SMOOTH","features":[56]},{"name":"GLU_TESS_BEGIN","features":[56]},{"name":"GLU_TESS_BEGIN_DATA","features":[56]},{"name":"GLU_TESS_BOUNDARY_ONLY","features":[56]},{"name":"GLU_TESS_COMBINE","features":[56]},{"name":"GLU_TESS_COMBINE_DATA","features":[56]},{"name":"GLU_TESS_COORD_TOO_LARGE","features":[56]},{"name":"GLU_TESS_EDGE_FLAG","features":[56]},{"name":"GLU_TESS_EDGE_FLAG_DATA","features":[56]},{"name":"GLU_TESS_END","features":[56]},{"name":"GLU_TESS_END_DATA","features":[56]},{"name":"GLU_TESS_ERROR","features":[56]},{"name":"GLU_TESS_ERROR1","features":[56]},{"name":"GLU_TESS_ERROR2","features":[56]},{"name":"GLU_TESS_ERROR3","features":[56]},{"name":"GLU_TESS_ERROR4","features":[56]},{"name":"GLU_TESS_ERROR5","features":[56]},{"name":"GLU_TESS_ERROR6","features":[56]},{"name":"GLU_TESS_ERROR7","features":[56]},{"name":"GLU_TESS_ERROR8","features":[56]},{"name":"GLU_TESS_ERROR_DATA","features":[56]},{"name":"GLU_TESS_MISSING_BEGIN_CONTOUR","features":[56]},{"name":"GLU_TESS_MISSING_BEGIN_POLYGON","features":[56]},{"name":"GLU_TESS_MISSING_END_CONTOUR","features":[56]},{"name":"GLU_TESS_MISSING_END_POLYGON","features":[56]},{"name":"GLU_TESS_NEED_COMBINE_CALLBACK","features":[56]},{"name":"GLU_TESS_TOLERANCE","features":[56]},{"name":"GLU_TESS_VERTEX","features":[56]},{"name":"GLU_TESS_VERTEX_DATA","features":[56]},{"name":"GLU_TESS_WINDING_ABS_GEQ_TWO","features":[56]},{"name":"GLU_TESS_WINDING_NEGATIVE","features":[56]},{"name":"GLU_TESS_WINDING_NONZERO","features":[56]},{"name":"GLU_TESS_WINDING_ODD","features":[56]},{"name":"GLU_TESS_WINDING_POSITIVE","features":[56]},{"name":"GLU_TESS_WINDING_RULE","features":[56]},{"name":"GLU_TRUE","features":[56]},{"name":"GLU_UNKNOWN","features":[56]},{"name":"GLU_U_STEP","features":[56]},{"name":"GLU_VERSION","features":[56]},{"name":"GLU_VERSION_1_1","features":[56]},{"name":"GLU_VERSION_1_2","features":[56]},{"name":"GLU_VERTEX","features":[56]},{"name":"GLU_V_STEP","features":[56]},{"name":"GLUnurbs","features":[56]},{"name":"GLUnurbsErrorProc","features":[56]},{"name":"GLUquadric","features":[56]},{"name":"GLUquadricErrorProc","features":[56]},{"name":"GLUtessBeginDataProc","features":[56]},{"name":"GLUtessBeginProc","features":[56]},{"name":"GLUtessCombineDataProc","features":[56]},{"name":"GLUtessCombineProc","features":[56]},{"name":"GLUtessEdgeFlagDataProc","features":[56]},{"name":"GLUtessEdgeFlagProc","features":[56]},{"name":"GLUtessEndDataProc","features":[56]},{"name":"GLUtessEndProc","features":[56]},{"name":"GLUtessErrorDataProc","features":[56]},{"name":"GLUtessErrorProc","features":[56]},{"name":"GLUtessVertexDataProc","features":[56]},{"name":"GLUtessVertexProc","features":[56]},{"name":"GLUtesselator","features":[56]},{"name":"GLYPHMETRICSFLOAT","features":[56]},{"name":"GL_2D","features":[56]},{"name":"GL_2_BYTES","features":[56]},{"name":"GL_3D","features":[56]},{"name":"GL_3D_COLOR","features":[56]},{"name":"GL_3D_COLOR_TEXTURE","features":[56]},{"name":"GL_3_BYTES","features":[56]},{"name":"GL_4D_COLOR_TEXTURE","features":[56]},{"name":"GL_4_BYTES","features":[56]},{"name":"GL_ACCUM","features":[56]},{"name":"GL_ACCUM_ALPHA_BITS","features":[56]},{"name":"GL_ACCUM_BLUE_BITS","features":[56]},{"name":"GL_ACCUM_BUFFER_BIT","features":[56]},{"name":"GL_ACCUM_CLEAR_VALUE","features":[56]},{"name":"GL_ACCUM_GREEN_BITS","features":[56]},{"name":"GL_ACCUM_RED_BITS","features":[56]},{"name":"GL_ADD","features":[56]},{"name":"GL_ALL_ATTRIB_BITS","features":[56]},{"name":"GL_ALPHA","features":[56]},{"name":"GL_ALPHA12","features":[56]},{"name":"GL_ALPHA16","features":[56]},{"name":"GL_ALPHA4","features":[56]},{"name":"GL_ALPHA8","features":[56]},{"name":"GL_ALPHA_BIAS","features":[56]},{"name":"GL_ALPHA_BITS","features":[56]},{"name":"GL_ALPHA_SCALE","features":[56]},{"name":"GL_ALPHA_TEST","features":[56]},{"name":"GL_ALPHA_TEST_FUNC","features":[56]},{"name":"GL_ALPHA_TEST_REF","features":[56]},{"name":"GL_ALWAYS","features":[56]},{"name":"GL_AMBIENT","features":[56]},{"name":"GL_AMBIENT_AND_DIFFUSE","features":[56]},{"name":"GL_AND","features":[56]},{"name":"GL_AND_INVERTED","features":[56]},{"name":"GL_AND_REVERSE","features":[56]},{"name":"GL_ATTRIB_STACK_DEPTH","features":[56]},{"name":"GL_AUTO_NORMAL","features":[56]},{"name":"GL_AUX0","features":[56]},{"name":"GL_AUX1","features":[56]},{"name":"GL_AUX2","features":[56]},{"name":"GL_AUX3","features":[56]},{"name":"GL_AUX_BUFFERS","features":[56]},{"name":"GL_BACK","features":[56]},{"name":"GL_BACK_LEFT","features":[56]},{"name":"GL_BACK_RIGHT","features":[56]},{"name":"GL_BGRA_EXT","features":[56]},{"name":"GL_BGR_EXT","features":[56]},{"name":"GL_BITMAP","features":[56]},{"name":"GL_BITMAP_TOKEN","features":[56]},{"name":"GL_BLEND","features":[56]},{"name":"GL_BLEND_DST","features":[56]},{"name":"GL_BLEND_SRC","features":[56]},{"name":"GL_BLUE","features":[56]},{"name":"GL_BLUE_BIAS","features":[56]},{"name":"GL_BLUE_BITS","features":[56]},{"name":"GL_BLUE_SCALE","features":[56]},{"name":"GL_BYTE","features":[56]},{"name":"GL_C3F_V3F","features":[56]},{"name":"GL_C4F_N3F_V3F","features":[56]},{"name":"GL_C4UB_V2F","features":[56]},{"name":"GL_C4UB_V3F","features":[56]},{"name":"GL_CCW","features":[56]},{"name":"GL_CLAMP","features":[56]},{"name":"GL_CLEAR","features":[56]},{"name":"GL_CLIENT_ALL_ATTRIB_BITS","features":[56]},{"name":"GL_CLIENT_ATTRIB_STACK_DEPTH","features":[56]},{"name":"GL_CLIENT_PIXEL_STORE_BIT","features":[56]},{"name":"GL_CLIENT_VERTEX_ARRAY_BIT","features":[56]},{"name":"GL_CLIP_PLANE0","features":[56]},{"name":"GL_CLIP_PLANE1","features":[56]},{"name":"GL_CLIP_PLANE2","features":[56]},{"name":"GL_CLIP_PLANE3","features":[56]},{"name":"GL_CLIP_PLANE4","features":[56]},{"name":"GL_CLIP_PLANE5","features":[56]},{"name":"GL_COEFF","features":[56]},{"name":"GL_COLOR","features":[56]},{"name":"GL_COLOR_ARRAY","features":[56]},{"name":"GL_COLOR_ARRAY_COUNT_EXT","features":[56]},{"name":"GL_COLOR_ARRAY_EXT","features":[56]},{"name":"GL_COLOR_ARRAY_POINTER","features":[56]},{"name":"GL_COLOR_ARRAY_POINTER_EXT","features":[56]},{"name":"GL_COLOR_ARRAY_SIZE","features":[56]},{"name":"GL_COLOR_ARRAY_SIZE_EXT","features":[56]},{"name":"GL_COLOR_ARRAY_STRIDE","features":[56]},{"name":"GL_COLOR_ARRAY_STRIDE_EXT","features":[56]},{"name":"GL_COLOR_ARRAY_TYPE","features":[56]},{"name":"GL_COLOR_ARRAY_TYPE_EXT","features":[56]},{"name":"GL_COLOR_BUFFER_BIT","features":[56]},{"name":"GL_COLOR_CLEAR_VALUE","features":[56]},{"name":"GL_COLOR_INDEX","features":[56]},{"name":"GL_COLOR_INDEX12_EXT","features":[56]},{"name":"GL_COLOR_INDEX16_EXT","features":[56]},{"name":"GL_COLOR_INDEX1_EXT","features":[56]},{"name":"GL_COLOR_INDEX2_EXT","features":[56]},{"name":"GL_COLOR_INDEX4_EXT","features":[56]},{"name":"GL_COLOR_INDEX8_EXT","features":[56]},{"name":"GL_COLOR_INDEXES","features":[56]},{"name":"GL_COLOR_LOGIC_OP","features":[56]},{"name":"GL_COLOR_MATERIAL","features":[56]},{"name":"GL_COLOR_MATERIAL_FACE","features":[56]},{"name":"GL_COLOR_MATERIAL_PARAMETER","features":[56]},{"name":"GL_COLOR_TABLE_ALPHA_SIZE_EXT","features":[56]},{"name":"GL_COLOR_TABLE_BLUE_SIZE_EXT","features":[56]},{"name":"GL_COLOR_TABLE_FORMAT_EXT","features":[56]},{"name":"GL_COLOR_TABLE_GREEN_SIZE_EXT","features":[56]},{"name":"GL_COLOR_TABLE_INTENSITY_SIZE_EXT","features":[56]},{"name":"GL_COLOR_TABLE_LUMINANCE_SIZE_EXT","features":[56]},{"name":"GL_COLOR_TABLE_RED_SIZE_EXT","features":[56]},{"name":"GL_COLOR_TABLE_WIDTH_EXT","features":[56]},{"name":"GL_COLOR_WRITEMASK","features":[56]},{"name":"GL_COMPILE","features":[56]},{"name":"GL_COMPILE_AND_EXECUTE","features":[56]},{"name":"GL_CONSTANT_ATTENUATION","features":[56]},{"name":"GL_COPY","features":[56]},{"name":"GL_COPY_INVERTED","features":[56]},{"name":"GL_COPY_PIXEL_TOKEN","features":[56]},{"name":"GL_CULL_FACE","features":[56]},{"name":"GL_CULL_FACE_MODE","features":[56]},{"name":"GL_CURRENT_BIT","features":[56]},{"name":"GL_CURRENT_COLOR","features":[56]},{"name":"GL_CURRENT_INDEX","features":[56]},{"name":"GL_CURRENT_NORMAL","features":[56]},{"name":"GL_CURRENT_RASTER_COLOR","features":[56]},{"name":"GL_CURRENT_RASTER_DISTANCE","features":[56]},{"name":"GL_CURRENT_RASTER_INDEX","features":[56]},{"name":"GL_CURRENT_RASTER_POSITION","features":[56]},{"name":"GL_CURRENT_RASTER_POSITION_VALID","features":[56]},{"name":"GL_CURRENT_RASTER_TEXTURE_COORDS","features":[56]},{"name":"GL_CURRENT_TEXTURE_COORDS","features":[56]},{"name":"GL_CW","features":[56]},{"name":"GL_DECAL","features":[56]},{"name":"GL_DECR","features":[56]},{"name":"GL_DEPTH","features":[56]},{"name":"GL_DEPTH_BIAS","features":[56]},{"name":"GL_DEPTH_BITS","features":[56]},{"name":"GL_DEPTH_BUFFER_BIT","features":[56]},{"name":"GL_DEPTH_CLEAR_VALUE","features":[56]},{"name":"GL_DEPTH_COMPONENT","features":[56]},{"name":"GL_DEPTH_FUNC","features":[56]},{"name":"GL_DEPTH_RANGE","features":[56]},{"name":"GL_DEPTH_SCALE","features":[56]},{"name":"GL_DEPTH_TEST","features":[56]},{"name":"GL_DEPTH_WRITEMASK","features":[56]},{"name":"GL_DIFFUSE","features":[56]},{"name":"GL_DITHER","features":[56]},{"name":"GL_DOMAIN","features":[56]},{"name":"GL_DONT_CARE","features":[56]},{"name":"GL_DOUBLE","features":[56]},{"name":"GL_DOUBLEBUFFER","features":[56]},{"name":"GL_DOUBLE_EXT","features":[56]},{"name":"GL_DRAW_BUFFER","features":[56]},{"name":"GL_DRAW_PIXEL_TOKEN","features":[56]},{"name":"GL_DST_ALPHA","features":[56]},{"name":"GL_DST_COLOR","features":[56]},{"name":"GL_EDGE_FLAG","features":[56]},{"name":"GL_EDGE_FLAG_ARRAY","features":[56]},{"name":"GL_EDGE_FLAG_ARRAY_COUNT_EXT","features":[56]},{"name":"GL_EDGE_FLAG_ARRAY_EXT","features":[56]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER","features":[56]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER_EXT","features":[56]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE","features":[56]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE_EXT","features":[56]},{"name":"GL_EMISSION","features":[56]},{"name":"GL_ENABLE_BIT","features":[56]},{"name":"GL_EQUAL","features":[56]},{"name":"GL_EQUIV","features":[56]},{"name":"GL_EVAL_BIT","features":[56]},{"name":"GL_EXP","features":[56]},{"name":"GL_EXP2","features":[56]},{"name":"GL_EXTENSIONS","features":[56]},{"name":"GL_EXT_bgra","features":[56]},{"name":"GL_EXT_paletted_texture","features":[56]},{"name":"GL_EXT_vertex_array","features":[56]},{"name":"GL_EYE_LINEAR","features":[56]},{"name":"GL_EYE_PLANE","features":[56]},{"name":"GL_FALSE","features":[56]},{"name":"GL_FASTEST","features":[56]},{"name":"GL_FEEDBACK","features":[56]},{"name":"GL_FEEDBACK_BUFFER_POINTER","features":[56]},{"name":"GL_FEEDBACK_BUFFER_SIZE","features":[56]},{"name":"GL_FEEDBACK_BUFFER_TYPE","features":[56]},{"name":"GL_FILL","features":[56]},{"name":"GL_FLAT","features":[56]},{"name":"GL_FLOAT","features":[56]},{"name":"GL_FOG","features":[56]},{"name":"GL_FOG_BIT","features":[56]},{"name":"GL_FOG_COLOR","features":[56]},{"name":"GL_FOG_DENSITY","features":[56]},{"name":"GL_FOG_END","features":[56]},{"name":"GL_FOG_HINT","features":[56]},{"name":"GL_FOG_INDEX","features":[56]},{"name":"GL_FOG_MODE","features":[56]},{"name":"GL_FOG_SPECULAR_TEXTURE_WIN","features":[56]},{"name":"GL_FOG_START","features":[56]},{"name":"GL_FRONT","features":[56]},{"name":"GL_FRONT_AND_BACK","features":[56]},{"name":"GL_FRONT_FACE","features":[56]},{"name":"GL_FRONT_LEFT","features":[56]},{"name":"GL_FRONT_RIGHT","features":[56]},{"name":"GL_GEQUAL","features":[56]},{"name":"GL_GREATER","features":[56]},{"name":"GL_GREEN","features":[56]},{"name":"GL_GREEN_BIAS","features":[56]},{"name":"GL_GREEN_BITS","features":[56]},{"name":"GL_GREEN_SCALE","features":[56]},{"name":"GL_HINT_BIT","features":[56]},{"name":"GL_INCR","features":[56]},{"name":"GL_INDEX_ARRAY","features":[56]},{"name":"GL_INDEX_ARRAY_COUNT_EXT","features":[56]},{"name":"GL_INDEX_ARRAY_EXT","features":[56]},{"name":"GL_INDEX_ARRAY_POINTER","features":[56]},{"name":"GL_INDEX_ARRAY_POINTER_EXT","features":[56]},{"name":"GL_INDEX_ARRAY_STRIDE","features":[56]},{"name":"GL_INDEX_ARRAY_STRIDE_EXT","features":[56]},{"name":"GL_INDEX_ARRAY_TYPE","features":[56]},{"name":"GL_INDEX_ARRAY_TYPE_EXT","features":[56]},{"name":"GL_INDEX_BITS","features":[56]},{"name":"GL_INDEX_CLEAR_VALUE","features":[56]},{"name":"GL_INDEX_LOGIC_OP","features":[56]},{"name":"GL_INDEX_MODE","features":[56]},{"name":"GL_INDEX_OFFSET","features":[56]},{"name":"GL_INDEX_SHIFT","features":[56]},{"name":"GL_INDEX_WRITEMASK","features":[56]},{"name":"GL_INT","features":[56]},{"name":"GL_INTENSITY","features":[56]},{"name":"GL_INTENSITY12","features":[56]},{"name":"GL_INTENSITY16","features":[56]},{"name":"GL_INTENSITY4","features":[56]},{"name":"GL_INTENSITY8","features":[56]},{"name":"GL_INVALID_ENUM","features":[56]},{"name":"GL_INVALID_OPERATION","features":[56]},{"name":"GL_INVALID_VALUE","features":[56]},{"name":"GL_INVERT","features":[56]},{"name":"GL_KEEP","features":[56]},{"name":"GL_LEFT","features":[56]},{"name":"GL_LEQUAL","features":[56]},{"name":"GL_LESS","features":[56]},{"name":"GL_LIGHT0","features":[56]},{"name":"GL_LIGHT1","features":[56]},{"name":"GL_LIGHT2","features":[56]},{"name":"GL_LIGHT3","features":[56]},{"name":"GL_LIGHT4","features":[56]},{"name":"GL_LIGHT5","features":[56]},{"name":"GL_LIGHT6","features":[56]},{"name":"GL_LIGHT7","features":[56]},{"name":"GL_LIGHTING","features":[56]},{"name":"GL_LIGHTING_BIT","features":[56]},{"name":"GL_LIGHT_MODEL_AMBIENT","features":[56]},{"name":"GL_LIGHT_MODEL_LOCAL_VIEWER","features":[56]},{"name":"GL_LIGHT_MODEL_TWO_SIDE","features":[56]},{"name":"GL_LINE","features":[56]},{"name":"GL_LINEAR","features":[56]},{"name":"GL_LINEAR_ATTENUATION","features":[56]},{"name":"GL_LINEAR_MIPMAP_LINEAR","features":[56]},{"name":"GL_LINEAR_MIPMAP_NEAREST","features":[56]},{"name":"GL_LINES","features":[56]},{"name":"GL_LINE_BIT","features":[56]},{"name":"GL_LINE_LOOP","features":[56]},{"name":"GL_LINE_RESET_TOKEN","features":[56]},{"name":"GL_LINE_SMOOTH","features":[56]},{"name":"GL_LINE_SMOOTH_HINT","features":[56]},{"name":"GL_LINE_STIPPLE","features":[56]},{"name":"GL_LINE_STIPPLE_PATTERN","features":[56]},{"name":"GL_LINE_STIPPLE_REPEAT","features":[56]},{"name":"GL_LINE_STRIP","features":[56]},{"name":"GL_LINE_TOKEN","features":[56]},{"name":"GL_LINE_WIDTH","features":[56]},{"name":"GL_LINE_WIDTH_GRANULARITY","features":[56]},{"name":"GL_LINE_WIDTH_RANGE","features":[56]},{"name":"GL_LIST_BASE","features":[56]},{"name":"GL_LIST_BIT","features":[56]},{"name":"GL_LIST_INDEX","features":[56]},{"name":"GL_LIST_MODE","features":[56]},{"name":"GL_LOAD","features":[56]},{"name":"GL_LOGIC_OP","features":[56]},{"name":"GL_LOGIC_OP_MODE","features":[56]},{"name":"GL_LUMINANCE","features":[56]},{"name":"GL_LUMINANCE12","features":[56]},{"name":"GL_LUMINANCE12_ALPHA12","features":[56]},{"name":"GL_LUMINANCE12_ALPHA4","features":[56]},{"name":"GL_LUMINANCE16","features":[56]},{"name":"GL_LUMINANCE16_ALPHA16","features":[56]},{"name":"GL_LUMINANCE4","features":[56]},{"name":"GL_LUMINANCE4_ALPHA4","features":[56]},{"name":"GL_LUMINANCE6_ALPHA2","features":[56]},{"name":"GL_LUMINANCE8","features":[56]},{"name":"GL_LUMINANCE8_ALPHA8","features":[56]},{"name":"GL_LUMINANCE_ALPHA","features":[56]},{"name":"GL_MAP1_COLOR_4","features":[56]},{"name":"GL_MAP1_GRID_DOMAIN","features":[56]},{"name":"GL_MAP1_GRID_SEGMENTS","features":[56]},{"name":"GL_MAP1_INDEX","features":[56]},{"name":"GL_MAP1_NORMAL","features":[56]},{"name":"GL_MAP1_TEXTURE_COORD_1","features":[56]},{"name":"GL_MAP1_TEXTURE_COORD_2","features":[56]},{"name":"GL_MAP1_TEXTURE_COORD_3","features":[56]},{"name":"GL_MAP1_TEXTURE_COORD_4","features":[56]},{"name":"GL_MAP1_VERTEX_3","features":[56]},{"name":"GL_MAP1_VERTEX_4","features":[56]},{"name":"GL_MAP2_COLOR_4","features":[56]},{"name":"GL_MAP2_GRID_DOMAIN","features":[56]},{"name":"GL_MAP2_GRID_SEGMENTS","features":[56]},{"name":"GL_MAP2_INDEX","features":[56]},{"name":"GL_MAP2_NORMAL","features":[56]},{"name":"GL_MAP2_TEXTURE_COORD_1","features":[56]},{"name":"GL_MAP2_TEXTURE_COORD_2","features":[56]},{"name":"GL_MAP2_TEXTURE_COORD_3","features":[56]},{"name":"GL_MAP2_TEXTURE_COORD_4","features":[56]},{"name":"GL_MAP2_VERTEX_3","features":[56]},{"name":"GL_MAP2_VERTEX_4","features":[56]},{"name":"GL_MAP_COLOR","features":[56]},{"name":"GL_MAP_STENCIL","features":[56]},{"name":"GL_MATRIX_MODE","features":[56]},{"name":"GL_MAX_ATTRIB_STACK_DEPTH","features":[56]},{"name":"GL_MAX_CLIENT_ATTRIB_STACK_DEPTH","features":[56]},{"name":"GL_MAX_CLIP_PLANES","features":[56]},{"name":"GL_MAX_ELEMENTS_INDICES_WIN","features":[56]},{"name":"GL_MAX_ELEMENTS_VERTICES_WIN","features":[56]},{"name":"GL_MAX_EVAL_ORDER","features":[56]},{"name":"GL_MAX_LIGHTS","features":[56]},{"name":"GL_MAX_LIST_NESTING","features":[56]},{"name":"GL_MAX_MODELVIEW_STACK_DEPTH","features":[56]},{"name":"GL_MAX_NAME_STACK_DEPTH","features":[56]},{"name":"GL_MAX_PIXEL_MAP_TABLE","features":[56]},{"name":"GL_MAX_PROJECTION_STACK_DEPTH","features":[56]},{"name":"GL_MAX_TEXTURE_SIZE","features":[56]},{"name":"GL_MAX_TEXTURE_STACK_DEPTH","features":[56]},{"name":"GL_MAX_VIEWPORT_DIMS","features":[56]},{"name":"GL_MODELVIEW","features":[56]},{"name":"GL_MODELVIEW_MATRIX","features":[56]},{"name":"GL_MODELVIEW_STACK_DEPTH","features":[56]},{"name":"GL_MODULATE","features":[56]},{"name":"GL_MULT","features":[56]},{"name":"GL_N3F_V3F","features":[56]},{"name":"GL_NAME_STACK_DEPTH","features":[56]},{"name":"GL_NAND","features":[56]},{"name":"GL_NEAREST","features":[56]},{"name":"GL_NEAREST_MIPMAP_LINEAR","features":[56]},{"name":"GL_NEAREST_MIPMAP_NEAREST","features":[56]},{"name":"GL_NEVER","features":[56]},{"name":"GL_NICEST","features":[56]},{"name":"GL_NONE","features":[56]},{"name":"GL_NOOP","features":[56]},{"name":"GL_NOR","features":[56]},{"name":"GL_NORMALIZE","features":[56]},{"name":"GL_NORMAL_ARRAY","features":[56]},{"name":"GL_NORMAL_ARRAY_COUNT_EXT","features":[56]},{"name":"GL_NORMAL_ARRAY_EXT","features":[56]},{"name":"GL_NORMAL_ARRAY_POINTER","features":[56]},{"name":"GL_NORMAL_ARRAY_POINTER_EXT","features":[56]},{"name":"GL_NORMAL_ARRAY_STRIDE","features":[56]},{"name":"GL_NORMAL_ARRAY_STRIDE_EXT","features":[56]},{"name":"GL_NORMAL_ARRAY_TYPE","features":[56]},{"name":"GL_NORMAL_ARRAY_TYPE_EXT","features":[56]},{"name":"GL_NOTEQUAL","features":[56]},{"name":"GL_NO_ERROR","features":[56]},{"name":"GL_OBJECT_LINEAR","features":[56]},{"name":"GL_OBJECT_PLANE","features":[56]},{"name":"GL_ONE","features":[56]},{"name":"GL_ONE_MINUS_DST_ALPHA","features":[56]},{"name":"GL_ONE_MINUS_DST_COLOR","features":[56]},{"name":"GL_ONE_MINUS_SRC_ALPHA","features":[56]},{"name":"GL_ONE_MINUS_SRC_COLOR","features":[56]},{"name":"GL_OR","features":[56]},{"name":"GL_ORDER","features":[56]},{"name":"GL_OR_INVERTED","features":[56]},{"name":"GL_OR_REVERSE","features":[56]},{"name":"GL_OUT_OF_MEMORY","features":[56]},{"name":"GL_PACK_ALIGNMENT","features":[56]},{"name":"GL_PACK_LSB_FIRST","features":[56]},{"name":"GL_PACK_ROW_LENGTH","features":[56]},{"name":"GL_PACK_SKIP_PIXELS","features":[56]},{"name":"GL_PACK_SKIP_ROWS","features":[56]},{"name":"GL_PACK_SWAP_BYTES","features":[56]},{"name":"GL_PASS_THROUGH_TOKEN","features":[56]},{"name":"GL_PERSPECTIVE_CORRECTION_HINT","features":[56]},{"name":"GL_PHONG_HINT_WIN","features":[56]},{"name":"GL_PHONG_WIN","features":[56]},{"name":"GL_PIXEL_MAP_A_TO_A","features":[56]},{"name":"GL_PIXEL_MAP_A_TO_A_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_B_TO_B","features":[56]},{"name":"GL_PIXEL_MAP_B_TO_B_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_G_TO_G","features":[56]},{"name":"GL_PIXEL_MAP_G_TO_G_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_A","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_A_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_B","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_B_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_G","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_G_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_I","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_I_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_R","features":[56]},{"name":"GL_PIXEL_MAP_I_TO_R_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_R_TO_R","features":[56]},{"name":"GL_PIXEL_MAP_R_TO_R_SIZE","features":[56]},{"name":"GL_PIXEL_MAP_S_TO_S","features":[56]},{"name":"GL_PIXEL_MAP_S_TO_S_SIZE","features":[56]},{"name":"GL_PIXEL_MODE_BIT","features":[56]},{"name":"GL_POINT","features":[56]},{"name":"GL_POINTS","features":[56]},{"name":"GL_POINT_BIT","features":[56]},{"name":"GL_POINT_SIZE","features":[56]},{"name":"GL_POINT_SIZE_GRANULARITY","features":[56]},{"name":"GL_POINT_SIZE_RANGE","features":[56]},{"name":"GL_POINT_SMOOTH","features":[56]},{"name":"GL_POINT_SMOOTH_HINT","features":[56]},{"name":"GL_POINT_TOKEN","features":[56]},{"name":"GL_POLYGON","features":[56]},{"name":"GL_POLYGON_BIT","features":[56]},{"name":"GL_POLYGON_MODE","features":[56]},{"name":"GL_POLYGON_OFFSET_FACTOR","features":[56]},{"name":"GL_POLYGON_OFFSET_FILL","features":[56]},{"name":"GL_POLYGON_OFFSET_LINE","features":[56]},{"name":"GL_POLYGON_OFFSET_POINT","features":[56]},{"name":"GL_POLYGON_OFFSET_UNITS","features":[56]},{"name":"GL_POLYGON_SMOOTH","features":[56]},{"name":"GL_POLYGON_SMOOTH_HINT","features":[56]},{"name":"GL_POLYGON_STIPPLE","features":[56]},{"name":"GL_POLYGON_STIPPLE_BIT","features":[56]},{"name":"GL_POLYGON_TOKEN","features":[56]},{"name":"GL_POSITION","features":[56]},{"name":"GL_PROJECTION","features":[56]},{"name":"GL_PROJECTION_MATRIX","features":[56]},{"name":"GL_PROJECTION_STACK_DEPTH","features":[56]},{"name":"GL_PROXY_TEXTURE_1D","features":[56]},{"name":"GL_PROXY_TEXTURE_2D","features":[56]},{"name":"GL_Q","features":[56]},{"name":"GL_QUADRATIC_ATTENUATION","features":[56]},{"name":"GL_QUADS","features":[56]},{"name":"GL_QUAD_STRIP","features":[56]},{"name":"GL_R","features":[56]},{"name":"GL_R3_G3_B2","features":[56]},{"name":"GL_READ_BUFFER","features":[56]},{"name":"GL_RED","features":[56]},{"name":"GL_RED_BIAS","features":[56]},{"name":"GL_RED_BITS","features":[56]},{"name":"GL_RED_SCALE","features":[56]},{"name":"GL_RENDER","features":[56]},{"name":"GL_RENDERER","features":[56]},{"name":"GL_RENDER_MODE","features":[56]},{"name":"GL_REPEAT","features":[56]},{"name":"GL_REPLACE","features":[56]},{"name":"GL_RETURN","features":[56]},{"name":"GL_RGB","features":[56]},{"name":"GL_RGB10","features":[56]},{"name":"GL_RGB10_A2","features":[56]},{"name":"GL_RGB12","features":[56]},{"name":"GL_RGB16","features":[56]},{"name":"GL_RGB4","features":[56]},{"name":"GL_RGB5","features":[56]},{"name":"GL_RGB5_A1","features":[56]},{"name":"GL_RGB8","features":[56]},{"name":"GL_RGBA","features":[56]},{"name":"GL_RGBA12","features":[56]},{"name":"GL_RGBA16","features":[56]},{"name":"GL_RGBA2","features":[56]},{"name":"GL_RGBA4","features":[56]},{"name":"GL_RGBA8","features":[56]},{"name":"GL_RGBA_MODE","features":[56]},{"name":"GL_RIGHT","features":[56]},{"name":"GL_S","features":[56]},{"name":"GL_SCISSOR_BIT","features":[56]},{"name":"GL_SCISSOR_BOX","features":[56]},{"name":"GL_SCISSOR_TEST","features":[56]},{"name":"GL_SELECT","features":[56]},{"name":"GL_SELECTION_BUFFER_POINTER","features":[56]},{"name":"GL_SELECTION_BUFFER_SIZE","features":[56]},{"name":"GL_SET","features":[56]},{"name":"GL_SHADE_MODEL","features":[56]},{"name":"GL_SHININESS","features":[56]},{"name":"GL_SHORT","features":[56]},{"name":"GL_SMOOTH","features":[56]},{"name":"GL_SPECULAR","features":[56]},{"name":"GL_SPHERE_MAP","features":[56]},{"name":"GL_SPOT_CUTOFF","features":[56]},{"name":"GL_SPOT_DIRECTION","features":[56]},{"name":"GL_SPOT_EXPONENT","features":[56]},{"name":"GL_SRC_ALPHA","features":[56]},{"name":"GL_SRC_ALPHA_SATURATE","features":[56]},{"name":"GL_SRC_COLOR","features":[56]},{"name":"GL_STACK_OVERFLOW","features":[56]},{"name":"GL_STACK_UNDERFLOW","features":[56]},{"name":"GL_STENCIL","features":[56]},{"name":"GL_STENCIL_BITS","features":[56]},{"name":"GL_STENCIL_BUFFER_BIT","features":[56]},{"name":"GL_STENCIL_CLEAR_VALUE","features":[56]},{"name":"GL_STENCIL_FAIL","features":[56]},{"name":"GL_STENCIL_FUNC","features":[56]},{"name":"GL_STENCIL_INDEX","features":[56]},{"name":"GL_STENCIL_PASS_DEPTH_FAIL","features":[56]},{"name":"GL_STENCIL_PASS_DEPTH_PASS","features":[56]},{"name":"GL_STENCIL_REF","features":[56]},{"name":"GL_STENCIL_TEST","features":[56]},{"name":"GL_STENCIL_VALUE_MASK","features":[56]},{"name":"GL_STENCIL_WRITEMASK","features":[56]},{"name":"GL_STEREO","features":[56]},{"name":"GL_SUBPIXEL_BITS","features":[56]},{"name":"GL_T","features":[56]},{"name":"GL_T2F_C3F_V3F","features":[56]},{"name":"GL_T2F_C4F_N3F_V3F","features":[56]},{"name":"GL_T2F_C4UB_V3F","features":[56]},{"name":"GL_T2F_N3F_V3F","features":[56]},{"name":"GL_T2F_V3F","features":[56]},{"name":"GL_T4F_C4F_N3F_V4F","features":[56]},{"name":"GL_T4F_V4F","features":[56]},{"name":"GL_TEXTURE","features":[56]},{"name":"GL_TEXTURE_1D","features":[56]},{"name":"GL_TEXTURE_2D","features":[56]},{"name":"GL_TEXTURE_ALPHA_SIZE","features":[56]},{"name":"GL_TEXTURE_BINDING_1D","features":[56]},{"name":"GL_TEXTURE_BINDING_2D","features":[56]},{"name":"GL_TEXTURE_BIT","features":[56]},{"name":"GL_TEXTURE_BLUE_SIZE","features":[56]},{"name":"GL_TEXTURE_BORDER","features":[56]},{"name":"GL_TEXTURE_BORDER_COLOR","features":[56]},{"name":"GL_TEXTURE_COMPONENTS","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_COUNT_EXT","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_EXT","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER_EXT","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE_EXT","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE_EXT","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE","features":[56]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE_EXT","features":[56]},{"name":"GL_TEXTURE_ENV","features":[56]},{"name":"GL_TEXTURE_ENV_COLOR","features":[56]},{"name":"GL_TEXTURE_ENV_MODE","features":[56]},{"name":"GL_TEXTURE_GEN_MODE","features":[56]},{"name":"GL_TEXTURE_GEN_Q","features":[56]},{"name":"GL_TEXTURE_GEN_R","features":[56]},{"name":"GL_TEXTURE_GEN_S","features":[56]},{"name":"GL_TEXTURE_GEN_T","features":[56]},{"name":"GL_TEXTURE_GREEN_SIZE","features":[56]},{"name":"GL_TEXTURE_HEIGHT","features":[56]},{"name":"GL_TEXTURE_INTENSITY_SIZE","features":[56]},{"name":"GL_TEXTURE_INTERNAL_FORMAT","features":[56]},{"name":"GL_TEXTURE_LUMINANCE_SIZE","features":[56]},{"name":"GL_TEXTURE_MAG_FILTER","features":[56]},{"name":"GL_TEXTURE_MATRIX","features":[56]},{"name":"GL_TEXTURE_MIN_FILTER","features":[56]},{"name":"GL_TEXTURE_PRIORITY","features":[56]},{"name":"GL_TEXTURE_RED_SIZE","features":[56]},{"name":"GL_TEXTURE_RESIDENT","features":[56]},{"name":"GL_TEXTURE_STACK_DEPTH","features":[56]},{"name":"GL_TEXTURE_WIDTH","features":[56]},{"name":"GL_TEXTURE_WRAP_S","features":[56]},{"name":"GL_TEXTURE_WRAP_T","features":[56]},{"name":"GL_TRANSFORM_BIT","features":[56]},{"name":"GL_TRIANGLES","features":[56]},{"name":"GL_TRIANGLE_FAN","features":[56]},{"name":"GL_TRIANGLE_STRIP","features":[56]},{"name":"GL_TRUE","features":[56]},{"name":"GL_UNPACK_ALIGNMENT","features":[56]},{"name":"GL_UNPACK_LSB_FIRST","features":[56]},{"name":"GL_UNPACK_ROW_LENGTH","features":[56]},{"name":"GL_UNPACK_SKIP_PIXELS","features":[56]},{"name":"GL_UNPACK_SKIP_ROWS","features":[56]},{"name":"GL_UNPACK_SWAP_BYTES","features":[56]},{"name":"GL_UNSIGNED_BYTE","features":[56]},{"name":"GL_UNSIGNED_INT","features":[56]},{"name":"GL_UNSIGNED_SHORT","features":[56]},{"name":"GL_V2F","features":[56]},{"name":"GL_V3F","features":[56]},{"name":"GL_VENDOR","features":[56]},{"name":"GL_VERSION","features":[56]},{"name":"GL_VERSION_1_1","features":[56]},{"name":"GL_VERTEX_ARRAY","features":[56]},{"name":"GL_VERTEX_ARRAY_COUNT_EXT","features":[56]},{"name":"GL_VERTEX_ARRAY_EXT","features":[56]},{"name":"GL_VERTEX_ARRAY_POINTER","features":[56]},{"name":"GL_VERTEX_ARRAY_POINTER_EXT","features":[56]},{"name":"GL_VERTEX_ARRAY_SIZE","features":[56]},{"name":"GL_VERTEX_ARRAY_SIZE_EXT","features":[56]},{"name":"GL_VERTEX_ARRAY_STRIDE","features":[56]},{"name":"GL_VERTEX_ARRAY_STRIDE_EXT","features":[56]},{"name":"GL_VERTEX_ARRAY_TYPE","features":[56]},{"name":"GL_VERTEX_ARRAY_TYPE_EXT","features":[56]},{"name":"GL_VIEWPORT","features":[56]},{"name":"GL_VIEWPORT_BIT","features":[56]},{"name":"GL_WIN_draw_range_elements","features":[56]},{"name":"GL_WIN_swap_hint","features":[56]},{"name":"GL_XOR","features":[56]},{"name":"GL_ZERO","features":[56]},{"name":"GL_ZOOM_X","features":[56]},{"name":"GL_ZOOM_Y","features":[56]},{"name":"GetEnhMetaFilePixelFormat","features":[14,56]},{"name":"GetPixelFormat","features":[14,56]},{"name":"HGLRC","features":[56]},{"name":"LAYERPLANEDESCRIPTOR","features":[3,56]},{"name":"PFD_DEPTH_DONTCARE","features":[56]},{"name":"PFD_DIRECT3D_ACCELERATED","features":[56]},{"name":"PFD_DOUBLEBUFFER","features":[56]},{"name":"PFD_DOUBLEBUFFER_DONTCARE","features":[56]},{"name":"PFD_DRAW_TO_BITMAP","features":[56]},{"name":"PFD_DRAW_TO_WINDOW","features":[56]},{"name":"PFD_FLAGS","features":[56]},{"name":"PFD_GENERIC_ACCELERATED","features":[56]},{"name":"PFD_GENERIC_FORMAT","features":[56]},{"name":"PFD_LAYER_TYPE","features":[56]},{"name":"PFD_MAIN_PLANE","features":[56]},{"name":"PFD_NEED_PALETTE","features":[56]},{"name":"PFD_NEED_SYSTEM_PALETTE","features":[56]},{"name":"PFD_OVERLAY_PLANE","features":[56]},{"name":"PFD_PIXEL_TYPE","features":[56]},{"name":"PFD_STEREO","features":[56]},{"name":"PFD_STEREO_DONTCARE","features":[56]},{"name":"PFD_SUPPORT_COMPOSITION","features":[56]},{"name":"PFD_SUPPORT_DIRECTDRAW","features":[56]},{"name":"PFD_SUPPORT_GDI","features":[56]},{"name":"PFD_SUPPORT_OPENGL","features":[56]},{"name":"PFD_SWAP_COPY","features":[56]},{"name":"PFD_SWAP_EXCHANGE","features":[56]},{"name":"PFD_SWAP_LAYER_BUFFERS","features":[56]},{"name":"PFD_TYPE_COLORINDEX","features":[56]},{"name":"PFD_TYPE_RGBA","features":[56]},{"name":"PFD_UNDERLAY_PLANE","features":[56]},{"name":"PFNGLADDSWAPHINTRECTWINPROC","features":[56]},{"name":"PFNGLARRAYELEMENTARRAYEXTPROC","features":[56]},{"name":"PFNGLARRAYELEMENTEXTPROC","features":[56]},{"name":"PFNGLCOLORPOINTEREXTPROC","features":[56]},{"name":"PFNGLCOLORSUBTABLEEXTPROC","features":[56]},{"name":"PFNGLCOLORTABLEEXTPROC","features":[56]},{"name":"PFNGLDRAWARRAYSEXTPROC","features":[56]},{"name":"PFNGLDRAWRANGEELEMENTSWINPROC","features":[56]},{"name":"PFNGLEDGEFLAGPOINTEREXTPROC","features":[56]},{"name":"PFNGLGETCOLORTABLEEXTPROC","features":[56]},{"name":"PFNGLGETCOLORTABLEPARAMETERFVEXTPROC","features":[56]},{"name":"PFNGLGETCOLORTABLEPARAMETERIVEXTPROC","features":[56]},{"name":"PFNGLGETPOINTERVEXTPROC","features":[56]},{"name":"PFNGLINDEXPOINTEREXTPROC","features":[56]},{"name":"PFNGLNORMALPOINTEREXTPROC","features":[56]},{"name":"PFNGLTEXCOORDPOINTEREXTPROC","features":[56]},{"name":"PFNGLVERTEXPOINTEREXTPROC","features":[56]},{"name":"PIXELFORMATDESCRIPTOR","features":[56]},{"name":"POINTFLOAT","features":[56]},{"name":"SetPixelFormat","features":[3,14,56]},{"name":"SwapBuffers","features":[3,14,56]},{"name":"glAccum","features":[56]},{"name":"glAlphaFunc","features":[56]},{"name":"glAreTexturesResident","features":[56]},{"name":"glArrayElement","features":[56]},{"name":"glBegin","features":[56]},{"name":"glBindTexture","features":[56]},{"name":"glBitmap","features":[56]},{"name":"glBlendFunc","features":[56]},{"name":"glCallList","features":[56]},{"name":"glCallLists","features":[56]},{"name":"glClear","features":[56]},{"name":"glClearAccum","features":[56]},{"name":"glClearColor","features":[56]},{"name":"glClearDepth","features":[56]},{"name":"glClearIndex","features":[56]},{"name":"glClearStencil","features":[56]},{"name":"glClipPlane","features":[56]},{"name":"glColor3b","features":[56]},{"name":"glColor3bv","features":[56]},{"name":"glColor3d","features":[56]},{"name":"glColor3dv","features":[56]},{"name":"glColor3f","features":[56]},{"name":"glColor3fv","features":[56]},{"name":"glColor3i","features":[56]},{"name":"glColor3iv","features":[56]},{"name":"glColor3s","features":[56]},{"name":"glColor3sv","features":[56]},{"name":"glColor3ub","features":[56]},{"name":"glColor3ubv","features":[56]},{"name":"glColor3ui","features":[56]},{"name":"glColor3uiv","features":[56]},{"name":"glColor3us","features":[56]},{"name":"glColor3usv","features":[56]},{"name":"glColor4b","features":[56]},{"name":"glColor4bv","features":[56]},{"name":"glColor4d","features":[56]},{"name":"glColor4dv","features":[56]},{"name":"glColor4f","features":[56]},{"name":"glColor4fv","features":[56]},{"name":"glColor4i","features":[56]},{"name":"glColor4iv","features":[56]},{"name":"glColor4s","features":[56]},{"name":"glColor4sv","features":[56]},{"name":"glColor4ub","features":[56]},{"name":"glColor4ubv","features":[56]},{"name":"glColor4ui","features":[56]},{"name":"glColor4uiv","features":[56]},{"name":"glColor4us","features":[56]},{"name":"glColor4usv","features":[56]},{"name":"glColorMask","features":[56]},{"name":"glColorMaterial","features":[56]},{"name":"glColorPointer","features":[56]},{"name":"glCopyPixels","features":[56]},{"name":"glCopyTexImage1D","features":[56]},{"name":"glCopyTexImage2D","features":[56]},{"name":"glCopyTexSubImage1D","features":[56]},{"name":"glCopyTexSubImage2D","features":[56]},{"name":"glCullFace","features":[56]},{"name":"glDeleteLists","features":[56]},{"name":"glDeleteTextures","features":[56]},{"name":"glDepthFunc","features":[56]},{"name":"glDepthMask","features":[56]},{"name":"glDepthRange","features":[56]},{"name":"glDisable","features":[56]},{"name":"glDisableClientState","features":[56]},{"name":"glDrawArrays","features":[56]},{"name":"glDrawBuffer","features":[56]},{"name":"glDrawElements","features":[56]},{"name":"glDrawPixels","features":[56]},{"name":"glEdgeFlag","features":[56]},{"name":"glEdgeFlagPointer","features":[56]},{"name":"glEdgeFlagv","features":[56]},{"name":"glEnable","features":[56]},{"name":"glEnableClientState","features":[56]},{"name":"glEnd","features":[56]},{"name":"glEndList","features":[56]},{"name":"glEvalCoord1d","features":[56]},{"name":"glEvalCoord1dv","features":[56]},{"name":"glEvalCoord1f","features":[56]},{"name":"glEvalCoord1fv","features":[56]},{"name":"glEvalCoord2d","features":[56]},{"name":"glEvalCoord2dv","features":[56]},{"name":"glEvalCoord2f","features":[56]},{"name":"glEvalCoord2fv","features":[56]},{"name":"glEvalMesh1","features":[56]},{"name":"glEvalMesh2","features":[56]},{"name":"glEvalPoint1","features":[56]},{"name":"glEvalPoint2","features":[56]},{"name":"glFeedbackBuffer","features":[56]},{"name":"glFinish","features":[56]},{"name":"glFlush","features":[56]},{"name":"glFogf","features":[56]},{"name":"glFogfv","features":[56]},{"name":"glFogi","features":[56]},{"name":"glFogiv","features":[56]},{"name":"glFrontFace","features":[56]},{"name":"glFrustum","features":[56]},{"name":"glGenLists","features":[56]},{"name":"glGenTextures","features":[56]},{"name":"glGetBooleanv","features":[56]},{"name":"glGetClipPlane","features":[56]},{"name":"glGetDoublev","features":[56]},{"name":"glGetError","features":[56]},{"name":"glGetFloatv","features":[56]},{"name":"glGetIntegerv","features":[56]},{"name":"glGetLightfv","features":[56]},{"name":"glGetLightiv","features":[56]},{"name":"glGetMapdv","features":[56]},{"name":"glGetMapfv","features":[56]},{"name":"glGetMapiv","features":[56]},{"name":"glGetMaterialfv","features":[56]},{"name":"glGetMaterialiv","features":[56]},{"name":"glGetPixelMapfv","features":[56]},{"name":"glGetPixelMapuiv","features":[56]},{"name":"glGetPixelMapusv","features":[56]},{"name":"glGetPointerv","features":[56]},{"name":"glGetPolygonStipple","features":[56]},{"name":"glGetString","features":[56]},{"name":"glGetTexEnvfv","features":[56]},{"name":"glGetTexEnviv","features":[56]},{"name":"glGetTexGendv","features":[56]},{"name":"glGetTexGenfv","features":[56]},{"name":"glGetTexGeniv","features":[56]},{"name":"glGetTexImage","features":[56]},{"name":"glGetTexLevelParameterfv","features":[56]},{"name":"glGetTexLevelParameteriv","features":[56]},{"name":"glGetTexParameterfv","features":[56]},{"name":"glGetTexParameteriv","features":[56]},{"name":"glHint","features":[56]},{"name":"glIndexMask","features":[56]},{"name":"glIndexPointer","features":[56]},{"name":"glIndexd","features":[56]},{"name":"glIndexdv","features":[56]},{"name":"glIndexf","features":[56]},{"name":"glIndexfv","features":[56]},{"name":"glIndexi","features":[56]},{"name":"glIndexiv","features":[56]},{"name":"glIndexs","features":[56]},{"name":"glIndexsv","features":[56]},{"name":"glIndexub","features":[56]},{"name":"glIndexubv","features":[56]},{"name":"glInitNames","features":[56]},{"name":"glInterleavedArrays","features":[56]},{"name":"glIsEnabled","features":[56]},{"name":"glIsList","features":[56]},{"name":"glIsTexture","features":[56]},{"name":"glLightModelf","features":[56]},{"name":"glLightModelfv","features":[56]},{"name":"glLightModeli","features":[56]},{"name":"glLightModeliv","features":[56]},{"name":"glLightf","features":[56]},{"name":"glLightfv","features":[56]},{"name":"glLighti","features":[56]},{"name":"glLightiv","features":[56]},{"name":"glLineStipple","features":[56]},{"name":"glLineWidth","features":[56]},{"name":"glListBase","features":[56]},{"name":"glLoadIdentity","features":[56]},{"name":"glLoadMatrixd","features":[56]},{"name":"glLoadMatrixf","features":[56]},{"name":"glLoadName","features":[56]},{"name":"glLogicOp","features":[56]},{"name":"glMap1d","features":[56]},{"name":"glMap1f","features":[56]},{"name":"glMap2d","features":[56]},{"name":"glMap2f","features":[56]},{"name":"glMapGrid1d","features":[56]},{"name":"glMapGrid1f","features":[56]},{"name":"glMapGrid2d","features":[56]},{"name":"glMapGrid2f","features":[56]},{"name":"glMaterialf","features":[56]},{"name":"glMaterialfv","features":[56]},{"name":"glMateriali","features":[56]},{"name":"glMaterialiv","features":[56]},{"name":"glMatrixMode","features":[56]},{"name":"glMultMatrixd","features":[56]},{"name":"glMultMatrixf","features":[56]},{"name":"glNewList","features":[56]},{"name":"glNormal3b","features":[56]},{"name":"glNormal3bv","features":[56]},{"name":"glNormal3d","features":[56]},{"name":"glNormal3dv","features":[56]},{"name":"glNormal3f","features":[56]},{"name":"glNormal3fv","features":[56]},{"name":"glNormal3i","features":[56]},{"name":"glNormal3iv","features":[56]},{"name":"glNormal3s","features":[56]},{"name":"glNormal3sv","features":[56]},{"name":"glNormalPointer","features":[56]},{"name":"glOrtho","features":[56]},{"name":"glPassThrough","features":[56]},{"name":"glPixelMapfv","features":[56]},{"name":"glPixelMapuiv","features":[56]},{"name":"glPixelMapusv","features":[56]},{"name":"glPixelStoref","features":[56]},{"name":"glPixelStorei","features":[56]},{"name":"glPixelTransferf","features":[56]},{"name":"glPixelTransferi","features":[56]},{"name":"glPixelZoom","features":[56]},{"name":"glPointSize","features":[56]},{"name":"glPolygonMode","features":[56]},{"name":"glPolygonOffset","features":[56]},{"name":"glPolygonStipple","features":[56]},{"name":"glPopAttrib","features":[56]},{"name":"glPopClientAttrib","features":[56]},{"name":"glPopMatrix","features":[56]},{"name":"glPopName","features":[56]},{"name":"glPrioritizeTextures","features":[56]},{"name":"glPushAttrib","features":[56]},{"name":"glPushClientAttrib","features":[56]},{"name":"glPushMatrix","features":[56]},{"name":"glPushName","features":[56]},{"name":"glRasterPos2d","features":[56]},{"name":"glRasterPos2dv","features":[56]},{"name":"glRasterPos2f","features":[56]},{"name":"glRasterPos2fv","features":[56]},{"name":"glRasterPos2i","features":[56]},{"name":"glRasterPos2iv","features":[56]},{"name":"glRasterPos2s","features":[56]},{"name":"glRasterPos2sv","features":[56]},{"name":"glRasterPos3d","features":[56]},{"name":"glRasterPos3dv","features":[56]},{"name":"glRasterPos3f","features":[56]},{"name":"glRasterPos3fv","features":[56]},{"name":"glRasterPos3i","features":[56]},{"name":"glRasterPos3iv","features":[56]},{"name":"glRasterPos3s","features":[56]},{"name":"glRasterPos3sv","features":[56]},{"name":"glRasterPos4d","features":[56]},{"name":"glRasterPos4dv","features":[56]},{"name":"glRasterPos4f","features":[56]},{"name":"glRasterPos4fv","features":[56]},{"name":"glRasterPos4i","features":[56]},{"name":"glRasterPos4iv","features":[56]},{"name":"glRasterPos4s","features":[56]},{"name":"glRasterPos4sv","features":[56]},{"name":"glReadBuffer","features":[56]},{"name":"glReadPixels","features":[56]},{"name":"glRectd","features":[56]},{"name":"glRectdv","features":[56]},{"name":"glRectf","features":[56]},{"name":"glRectfv","features":[56]},{"name":"glRecti","features":[56]},{"name":"glRectiv","features":[56]},{"name":"glRects","features":[56]},{"name":"glRectsv","features":[56]},{"name":"glRenderMode","features":[56]},{"name":"glRotated","features":[56]},{"name":"glRotatef","features":[56]},{"name":"glScaled","features":[56]},{"name":"glScalef","features":[56]},{"name":"glScissor","features":[56]},{"name":"glSelectBuffer","features":[56]},{"name":"glShadeModel","features":[56]},{"name":"glStencilFunc","features":[56]},{"name":"glStencilMask","features":[56]},{"name":"glStencilOp","features":[56]},{"name":"glTexCoord1d","features":[56]},{"name":"glTexCoord1dv","features":[56]},{"name":"glTexCoord1f","features":[56]},{"name":"glTexCoord1fv","features":[56]},{"name":"glTexCoord1i","features":[56]},{"name":"glTexCoord1iv","features":[56]},{"name":"glTexCoord1s","features":[56]},{"name":"glTexCoord1sv","features":[56]},{"name":"glTexCoord2d","features":[56]},{"name":"glTexCoord2dv","features":[56]},{"name":"glTexCoord2f","features":[56]},{"name":"glTexCoord2fv","features":[56]},{"name":"glTexCoord2i","features":[56]},{"name":"glTexCoord2iv","features":[56]},{"name":"glTexCoord2s","features":[56]},{"name":"glTexCoord2sv","features":[56]},{"name":"glTexCoord3d","features":[56]},{"name":"glTexCoord3dv","features":[56]},{"name":"glTexCoord3f","features":[56]},{"name":"glTexCoord3fv","features":[56]},{"name":"glTexCoord3i","features":[56]},{"name":"glTexCoord3iv","features":[56]},{"name":"glTexCoord3s","features":[56]},{"name":"glTexCoord3sv","features":[56]},{"name":"glTexCoord4d","features":[56]},{"name":"glTexCoord4dv","features":[56]},{"name":"glTexCoord4f","features":[56]},{"name":"glTexCoord4fv","features":[56]},{"name":"glTexCoord4i","features":[56]},{"name":"glTexCoord4iv","features":[56]},{"name":"glTexCoord4s","features":[56]},{"name":"glTexCoord4sv","features":[56]},{"name":"glTexCoordPointer","features":[56]},{"name":"glTexEnvf","features":[56]},{"name":"glTexEnvfv","features":[56]},{"name":"glTexEnvi","features":[56]},{"name":"glTexEnviv","features":[56]},{"name":"glTexGend","features":[56]},{"name":"glTexGendv","features":[56]},{"name":"glTexGenf","features":[56]},{"name":"glTexGenfv","features":[56]},{"name":"glTexGeni","features":[56]},{"name":"glTexGeniv","features":[56]},{"name":"glTexImage1D","features":[56]},{"name":"glTexImage2D","features":[56]},{"name":"glTexParameterf","features":[56]},{"name":"glTexParameterfv","features":[56]},{"name":"glTexParameteri","features":[56]},{"name":"glTexParameteriv","features":[56]},{"name":"glTexSubImage1D","features":[56]},{"name":"glTexSubImage2D","features":[56]},{"name":"glTranslated","features":[56]},{"name":"glTranslatef","features":[56]},{"name":"glVertex2d","features":[56]},{"name":"glVertex2dv","features":[56]},{"name":"glVertex2f","features":[56]},{"name":"glVertex2fv","features":[56]},{"name":"glVertex2i","features":[56]},{"name":"glVertex2iv","features":[56]},{"name":"glVertex2s","features":[56]},{"name":"glVertex2sv","features":[56]},{"name":"glVertex3d","features":[56]},{"name":"glVertex3dv","features":[56]},{"name":"glVertex3f","features":[56]},{"name":"glVertex3fv","features":[56]},{"name":"glVertex3i","features":[56]},{"name":"glVertex3iv","features":[56]},{"name":"glVertex3s","features":[56]},{"name":"glVertex3sv","features":[56]},{"name":"glVertex4d","features":[56]},{"name":"glVertex4dv","features":[56]},{"name":"glVertex4f","features":[56]},{"name":"glVertex4fv","features":[56]},{"name":"glVertex4i","features":[56]},{"name":"glVertex4iv","features":[56]},{"name":"glVertex4s","features":[56]},{"name":"glVertex4sv","features":[56]},{"name":"glVertexPointer","features":[56]},{"name":"glViewport","features":[56]},{"name":"gluBeginCurve","features":[56]},{"name":"gluBeginPolygon","features":[56]},{"name":"gluBeginSurface","features":[56]},{"name":"gluBeginTrim","features":[56]},{"name":"gluBuild1DMipmaps","features":[56]},{"name":"gluBuild2DMipmaps","features":[56]},{"name":"gluCylinder","features":[56]},{"name":"gluDeleteNurbsRenderer","features":[56]},{"name":"gluDeleteQuadric","features":[56]},{"name":"gluDeleteTess","features":[56]},{"name":"gluDisk","features":[56]},{"name":"gluEndCurve","features":[56]},{"name":"gluEndPolygon","features":[56]},{"name":"gluEndSurface","features":[56]},{"name":"gluEndTrim","features":[56]},{"name":"gluErrorString","features":[56]},{"name":"gluErrorUnicodeStringEXT","features":[56]},{"name":"gluGetNurbsProperty","features":[56]},{"name":"gluGetString","features":[56]},{"name":"gluGetTessProperty","features":[56]},{"name":"gluLoadSamplingMatrices","features":[56]},{"name":"gluLookAt","features":[56]},{"name":"gluNewNurbsRenderer","features":[56]},{"name":"gluNewQuadric","features":[56]},{"name":"gluNewTess","features":[56]},{"name":"gluNextContour","features":[56]},{"name":"gluNurbsCallback","features":[56]},{"name":"gluNurbsCurve","features":[56]},{"name":"gluNurbsProperty","features":[56]},{"name":"gluNurbsSurface","features":[56]},{"name":"gluOrtho2D","features":[56]},{"name":"gluPartialDisk","features":[56]},{"name":"gluPerspective","features":[56]},{"name":"gluPickMatrix","features":[56]},{"name":"gluProject","features":[56]},{"name":"gluPwlCurve","features":[56]},{"name":"gluQuadricCallback","features":[56]},{"name":"gluQuadricDrawStyle","features":[56]},{"name":"gluQuadricNormals","features":[56]},{"name":"gluQuadricOrientation","features":[56]},{"name":"gluQuadricTexture","features":[56]},{"name":"gluScaleImage","features":[56]},{"name":"gluSphere","features":[56]},{"name":"gluTessBeginContour","features":[56]},{"name":"gluTessBeginPolygon","features":[56]},{"name":"gluTessCallback","features":[56]},{"name":"gluTessEndContour","features":[56]},{"name":"gluTessEndPolygon","features":[56]},{"name":"gluTessNormal","features":[56]},{"name":"gluTessProperty","features":[56]},{"name":"gluTessVertex","features":[56]},{"name":"gluUnProject","features":[56]},{"name":"wglCopyContext","features":[3,56]},{"name":"wglCreateContext","features":[14,56]},{"name":"wglCreateLayerContext","features":[14,56]},{"name":"wglDeleteContext","features":[3,56]},{"name":"wglDescribeLayerPlane","features":[3,14,56]},{"name":"wglGetCurrentContext","features":[56]},{"name":"wglGetCurrentDC","features":[14,56]},{"name":"wglGetLayerPaletteEntries","features":[3,14,56]},{"name":"wglGetProcAddress","features":[3,56]},{"name":"wglMakeCurrent","features":[3,14,56]},{"name":"wglRealizeLayerPalette","features":[3,14,56]},{"name":"wglSetLayerPaletteEntries","features":[3,14,56]},{"name":"wglShareLists","features":[3,56]},{"name":"wglSwapLayerBuffers","features":[3,14,56]},{"name":"wglUseFontBitmapsA","features":[3,14,56]},{"name":"wglUseFontBitmapsW","features":[3,14,56]},{"name":"wglUseFontOutlinesA","features":[3,14,56]},{"name":"wglUseFontOutlinesW","features":[3,14,56]}],"421":[{"name":"ADDJOB_INFO_1A","features":[76]},{"name":"ADDJOB_INFO_1W","features":[76]},{"name":"ALREADY_REGISTERED","features":[76]},{"name":"ALREADY_UNREGISTERED","features":[76]},{"name":"APD_COPY_ALL_FILES","features":[76]},{"name":"APD_COPY_FROM_DIRECTORY","features":[76]},{"name":"APD_COPY_NEW_FILES","features":[76]},{"name":"APD_STRICT_DOWNGRADE","features":[76]},{"name":"APD_STRICT_UPGRADE","features":[76]},{"name":"APPLYCPSUI_NO_NEWDEF","features":[76]},{"name":"APPLYCPSUI_OK_CANCEL_BUTTON","features":[76]},{"name":"ASYNC_CALL_ALREADY_PARKED","features":[76]},{"name":"ASYNC_CALL_IN_PROGRESS","features":[76]},{"name":"ASYNC_NOTIFICATION_FAILURE","features":[76]},{"name":"ATTRIBUTE_INFO_1","features":[76]},{"name":"ATTRIBUTE_INFO_2","features":[76]},{"name":"ATTRIBUTE_INFO_3","features":[76]},{"name":"ATTRIBUTE_INFO_4","features":[76]},{"name":"AbortPrinter","features":[3,76]},{"name":"AddFormA","features":[3,76]},{"name":"AddFormW","features":[3,76]},{"name":"AddJobA","features":[3,76]},{"name":"AddJobW","features":[3,76]},{"name":"AddMonitorA","features":[3,76]},{"name":"AddMonitorW","features":[3,76]},{"name":"AddPortA","features":[3,76]},{"name":"AddPortW","features":[3,76]},{"name":"AddPrintDeviceObject","features":[3,76]},{"name":"AddPrintProcessorA","features":[3,76]},{"name":"AddPrintProcessorW","features":[3,76]},{"name":"AddPrintProvidorA","features":[3,76]},{"name":"AddPrintProvidorW","features":[3,76]},{"name":"AddPrinterA","features":[3,76]},{"name":"AddPrinterConnection2A","features":[3,76]},{"name":"AddPrinterConnection2W","features":[3,76]},{"name":"AddPrinterConnectionA","features":[3,76]},{"name":"AddPrinterConnectionW","features":[3,76]},{"name":"AddPrinterDriverA","features":[3,76]},{"name":"AddPrinterDriverExA","features":[3,76]},{"name":"AddPrinterDriverExW","features":[3,76]},{"name":"AddPrinterDriverW","features":[3,76]},{"name":"AddPrinterW","features":[3,76]},{"name":"AdvancedDocumentPropertiesA","features":[3,14,76]},{"name":"AdvancedDocumentPropertiesW","features":[3,14,76]},{"name":"AppendPrinterNotifyInfoData","features":[3,76]},{"name":"BIDI_ACCESS_ADMINISTRATOR","features":[76]},{"name":"BIDI_ACCESS_USER","features":[76]},{"name":"BIDI_ACTION_ENUM_SCHEMA","features":[76]},{"name":"BIDI_ACTION_GET","features":[76]},{"name":"BIDI_ACTION_GET_ALL","features":[76]},{"name":"BIDI_ACTION_GET_WITH_ARGUMENT","features":[76]},{"name":"BIDI_ACTION_SET","features":[76]},{"name":"BIDI_BLOB","features":[76]},{"name":"BIDI_BOOL","features":[76]},{"name":"BIDI_DATA","features":[3,76]},{"name":"BIDI_ENUM","features":[76]},{"name":"BIDI_FLOAT","features":[76]},{"name":"BIDI_INT","features":[76]},{"name":"BIDI_NULL","features":[76]},{"name":"BIDI_REQUEST_CONTAINER","features":[3,76]},{"name":"BIDI_REQUEST_DATA","features":[3,76]},{"name":"BIDI_RESPONSE_CONTAINER","features":[3,76]},{"name":"BIDI_RESPONSE_DATA","features":[3,76]},{"name":"BIDI_STRING","features":[76]},{"name":"BIDI_TEXT","features":[76]},{"name":"BIDI_TYPE","features":[76]},{"name":"BINARY_CONTAINER","features":[76]},{"name":"BOOKLET_EDGE_LEFT","features":[76]},{"name":"BOOKLET_EDGE_RIGHT","features":[76]},{"name":"BOOKLET_PRINT","features":[76]},{"name":"BORDER_PRINT","features":[76]},{"name":"BidiRequest","features":[76]},{"name":"BidiRequestContainer","features":[76]},{"name":"BidiSpl","features":[76]},{"name":"BranchOfficeJobData","features":[76]},{"name":"BranchOfficeJobDataContainer","features":[76]},{"name":"BranchOfficeJobDataError","features":[76]},{"name":"BranchOfficeJobDataPipelineFailed","features":[76]},{"name":"BranchOfficeJobDataPrinted","features":[76]},{"name":"BranchOfficeJobDataRendered","features":[76]},{"name":"BranchOfficeLogOfflineFileFull","features":[76]},{"name":"CC_BIG5","features":[76]},{"name":"CC_CP437","features":[76]},{"name":"CC_CP850","features":[76]},{"name":"CC_CP863","features":[76]},{"name":"CC_DEFAULT","features":[76]},{"name":"CC_GB2312","features":[76]},{"name":"CC_ISC","features":[76]},{"name":"CC_JIS","features":[76]},{"name":"CC_JIS_ANK","features":[76]},{"name":"CC_NOPRECNV","features":[76]},{"name":"CC_NS86","features":[76]},{"name":"CC_SJIS","features":[76]},{"name":"CC_TCA","features":[76]},{"name":"CC_WANSUNG","features":[76]},{"name":"CDM_CONVERT","features":[76]},{"name":"CDM_CONVERT351","features":[76]},{"name":"CDM_DRIVER_DEFAULT","features":[76]},{"name":"CHANNEL_ACQUIRED","features":[76]},{"name":"CHANNEL_ALREADY_CLOSED","features":[76]},{"name":"CHANNEL_ALREADY_OPENED","features":[76]},{"name":"CHANNEL_CLOSED_BY_ANOTHER_LISTENER","features":[76]},{"name":"CHANNEL_CLOSED_BY_SAME_LISTENER","features":[76]},{"name":"CHANNEL_CLOSED_BY_SERVER","features":[76]},{"name":"CHANNEL_NOT_OPENED","features":[76]},{"name":"CHANNEL_RELEASED_BY_LISTENER","features":[76]},{"name":"CHANNEL_WAITING_FOR_CLIENT_NOTIFICATION","features":[76]},{"name":"CHKBOXS_FALSE_PDATA","features":[76]},{"name":"CHKBOXS_FALSE_TRUE","features":[76]},{"name":"CHKBOXS_NONE_PDATA","features":[76]},{"name":"CHKBOXS_NO_PDATA","features":[76]},{"name":"CHKBOXS_NO_YES","features":[76]},{"name":"CHKBOXS_OFF_ON","features":[76]},{"name":"CHKBOXS_OFF_PDATA","features":[76]},{"name":"CLSID_OEMPTPROVIDER","features":[76]},{"name":"CLSID_OEMRENDER","features":[76]},{"name":"CLSID_OEMUI","features":[76]},{"name":"CLSID_OEMUIMXDC","features":[76]},{"name":"CLSID_PTPROVIDER","features":[76]},{"name":"CLSID_XPSRASTERIZER_FACTORY","features":[76]},{"name":"COLOR_OPTIMIZATION","features":[76]},{"name":"COMPROPSHEETUI","features":[3,76,52]},{"name":"CONFIG_INFO_DATA_1","features":[76]},{"name":"COPYFILE_EVENT_ADD_PRINTER_CONNECTION","features":[76]},{"name":"COPYFILE_EVENT_DELETE_PRINTER","features":[76]},{"name":"COPYFILE_EVENT_DELETE_PRINTER_CONNECTION","features":[76]},{"name":"COPYFILE_EVENT_FILES_CHANGED","features":[76]},{"name":"COPYFILE_EVENT_SET_PRINTER_DATAEX","features":[76]},{"name":"COPYFILE_FLAG_CLIENT_SPOOLER","features":[76]},{"name":"COPYFILE_FLAG_SERVER_SPOOLER","features":[76]},{"name":"CORE_PRINTER_DRIVERA","features":[3,76]},{"name":"CORE_PRINTER_DRIVERW","features":[3,76]},{"name":"CPSFUNC_ADD_HPROPSHEETPAGE","features":[76]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUI","features":[76]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIA","features":[76]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIW","features":[76]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUI","features":[76]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIA","features":[76]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIW","features":[76]},{"name":"CPSFUNC_ADD_PROPSHEETPAGE","features":[76]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEA","features":[76]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEW","features":[76]},{"name":"CPSFUNC_DELETE_HCOMPROPSHEET","features":[76]},{"name":"CPSFUNC_DO_APPLY_CPSUI","features":[76]},{"name":"CPSFUNC_GET_HPSUIPAGES","features":[76]},{"name":"CPSFUNC_GET_PAGECOUNT","features":[76]},{"name":"CPSFUNC_GET_PFNPROPSHEETUI_ICON","features":[76]},{"name":"CPSFUNC_IGNORE_CPSUI_PSN_APPLY","features":[76]},{"name":"CPSFUNC_INSERT_PSUIPAGE","features":[76]},{"name":"CPSFUNC_INSERT_PSUIPAGEA","features":[76]},{"name":"CPSFUNC_INSERT_PSUIPAGEW","features":[76]},{"name":"CPSFUNC_LOAD_CPSUI_ICON","features":[76]},{"name":"CPSFUNC_LOAD_CPSUI_STRING","features":[76]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGA","features":[76]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGW","features":[76]},{"name":"CPSFUNC_QUERY_DATABLOCK","features":[76]},{"name":"CPSFUNC_SET_DATABLOCK","features":[76]},{"name":"CPSFUNC_SET_DMPUB_HIDEBITS","features":[76]},{"name":"CPSFUNC_SET_FUSION_CONTEXT","features":[76]},{"name":"CPSFUNC_SET_HSTARTPAGE","features":[76]},{"name":"CPSFUNC_SET_PSUIPAGE_ICON","features":[76]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLE","features":[76]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEA","features":[76]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEW","features":[76]},{"name":"CPSFUNC_SET_RESULT","features":[76]},{"name":"CPSUICBPARAM","features":[3,76,52]},{"name":"CPSUICB_ACTION_ITEMS_APPLIED","features":[76]},{"name":"CPSUICB_ACTION_NONE","features":[76]},{"name":"CPSUICB_ACTION_NO_APPLY_EXIT","features":[76]},{"name":"CPSUICB_ACTION_OPTIF_CHANGED","features":[76]},{"name":"CPSUICB_ACTION_REINIT_ITEMS","features":[76]},{"name":"CPSUICB_REASON_ABOUT","features":[76]},{"name":"CPSUICB_REASON_APPLYNOW","features":[76]},{"name":"CPSUICB_REASON_DLGPROC","features":[76]},{"name":"CPSUICB_REASON_ECB_CHANGED","features":[76]},{"name":"CPSUICB_REASON_EXTPUSH","features":[76]},{"name":"CPSUICB_REASON_ITEMS_REVERTED","features":[76]},{"name":"CPSUICB_REASON_KILLACTIVE","features":[76]},{"name":"CPSUICB_REASON_OPTITEM_SETFOCUS","features":[76]},{"name":"CPSUICB_REASON_PUSHBUTTON","features":[76]},{"name":"CPSUICB_REASON_SEL_CHANGED","features":[76]},{"name":"CPSUICB_REASON_SETACTIVE","features":[76]},{"name":"CPSUICB_REASON_UNDO_CHANGES","features":[76]},{"name":"CPSUIDATABLOCK","features":[76]},{"name":"CPSUIF_ABOUT_CALLBACK","features":[76]},{"name":"CPSUIF_ICONID_AS_HICON","features":[76]},{"name":"CPSUIF_UPDATE_PERMISSION","features":[76]},{"name":"CPSUI_CANCEL","features":[76]},{"name":"CPSUI_OK","features":[76]},{"name":"CPSUI_REBOOTSYSTEM","features":[76]},{"name":"CPSUI_RESTARTWINDOWS","features":[76]},{"name":"CUSTOMPARAM_HEIGHT","features":[76]},{"name":"CUSTOMPARAM_HEIGHTOFFSET","features":[76]},{"name":"CUSTOMPARAM_MAX","features":[76]},{"name":"CUSTOMPARAM_ORIENTATION","features":[76]},{"name":"CUSTOMPARAM_WIDTH","features":[76]},{"name":"CUSTOMPARAM_WIDTHOFFSET","features":[76]},{"name":"CUSTOMSIZEPARAM","features":[76]},{"name":"CallRouterFindFirstPrinterChangeNotification","features":[3,76]},{"name":"ClosePrinter","features":[3,76]},{"name":"CloseSpoolFileHandle","features":[3,76]},{"name":"CommitSpoolData","features":[3,76]},{"name":"CommonPropertySheetUIA","features":[3,76]},{"name":"CommonPropertySheetUIW","features":[3,76]},{"name":"Compression_Fast","features":[76]},{"name":"Compression_Normal","features":[76]},{"name":"Compression_NotCompressed","features":[76]},{"name":"Compression_Small","features":[76]},{"name":"ConfigurePortA","features":[3,76]},{"name":"ConfigurePortW","features":[3,76]},{"name":"ConnectToPrinterDlg","features":[3,76]},{"name":"CorePrinterDriverInstalledA","features":[3,76]},{"name":"CorePrinterDriverInstalledW","features":[3,76]},{"name":"CreatePrintAsyncNotifyChannel","features":[76]},{"name":"CreatePrinterIC","features":[3,14,76]},{"name":"DATATYPES_INFO_1A","features":[76]},{"name":"DATATYPES_INFO_1W","features":[76]},{"name":"DATA_HEADER","features":[76]},{"name":"DEF_PRIORITY","features":[76]},{"name":"DELETE_PORT_DATA_1","features":[76]},{"name":"DEVICEPROPERTYHEADER","features":[3,76]},{"name":"DEVQUERYPRINT_INFO","features":[3,14,76]},{"name":"DF_BKSP_OK","features":[76]},{"name":"DF_NOITALIC","features":[76]},{"name":"DF_NOUNDER","features":[76]},{"name":"DF_NO_BOLD","features":[76]},{"name":"DF_NO_DOUBLE_UNDERLINE","features":[76]},{"name":"DF_NO_STRIKETHRU","features":[76]},{"name":"DF_TYPE_CAPSL","features":[76]},{"name":"DF_TYPE_HPINTELLIFONT","features":[76]},{"name":"DF_TYPE_OEM1","features":[76]},{"name":"DF_TYPE_OEM2","features":[76]},{"name":"DF_TYPE_PST1","features":[76]},{"name":"DF_TYPE_TRUETYPE","features":[76]},{"name":"DF_XM_CR","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_COUNT","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_GETAT","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_DRIVERPROPERTIES","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTERQUEUE","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTSCHEMATICKET","features":[76]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_USERPROPERTIES","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENT","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_BIDINOTIFICATION","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_DETAILEDREASONID","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REASONID","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REQUEST","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_SOURCEAPPLICATION","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWMODAL","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWPARENT","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONDRIVEREVENT","features":[76]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONPRINTERQUEUESENUMERATED","features":[76]},{"name":"DISPID_PRINTEREXTENSION_REQUEST","features":[76]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_CANCEL","features":[76]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_COMPLETE","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBOOL","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBYTES","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_GETINT32","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_GETREADSTREAM","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_GETSTRING","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_GETWRITESTREAM","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBOOL","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBYTES","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_SETINT32","features":[76]},{"name":"DISPID_PRINTERPROPERTYBAG_SETSTRING","features":[76]},{"name":"DISPID_PRINTERQUEUE","features":[76]},{"name":"DISPID_PRINTERQUEUEEVENT","features":[76]},{"name":"DISPID_PRINTERQUEUEEVENT_ONBIDIRESPONSERECEIVED","features":[76]},{"name":"DISPID_PRINTERQUEUEVIEW","features":[76]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT","features":[76]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT_ONCHANGED","features":[76]},{"name":"DISPID_PRINTERQUEUEVIEW_SETVIEWRANGE","features":[76]},{"name":"DISPID_PRINTERQUEUE_GETPRINTERQUEUEVIEW","features":[76]},{"name":"DISPID_PRINTERQUEUE_GETPROPERTIES","features":[76]},{"name":"DISPID_PRINTERQUEUE_HANDLE","features":[76]},{"name":"DISPID_PRINTERQUEUE_NAME","features":[76]},{"name":"DISPID_PRINTERQUEUE_SENDBIDIQUERY","features":[76]},{"name":"DISPID_PRINTERQUEUE_SENDBIDISETREQUESTASYNC","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBOOL","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBYTES","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETINT32","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETREADSTREAM","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTREAMASXML","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTRING","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETWRITESTREAM","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBOOL","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBYTES","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETINT32","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETSTRING","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_READ","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_WRITE","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_COMMIT","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SEEK","features":[76]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SETSIZE","features":[76]},{"name":"DISPID_PRINTERSCRIPTCONTEXT","features":[76]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_DRIVERPROPERTIES","features":[76]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_QUEUEPROPERTIES","features":[76]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_USERPROPERTIES","features":[76]},{"name":"DISPID_PRINTJOBCOLLECTION","features":[76]},{"name":"DISPID_PRINTJOBCOLLECTION_COUNT","features":[76]},{"name":"DISPID_PRINTJOBCOLLECTION_GETAT","features":[76]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION","features":[76]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT","features":[76]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT_COMPLETED","features":[76]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_CANCEL","features":[76]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_START","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE_KEYNAME","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETOPTIONS","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETPARAMETERDEFINITION","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETSELECTEDOPTION","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMAXVALUE","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMINVALUE","features":[76]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_PAGEIMAGEABLESIZE","features":[76]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT","features":[76]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT_DISPLAYNAME","features":[76]},{"name":"DISPID_PRINTSCHEMA_ELEMENT","features":[76]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAME","features":[76]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAMESPACEURI","features":[76]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_XMLNODE","features":[76]},{"name":"DISPID_PRINTSCHEMA_FEATURE","features":[76]},{"name":"DISPID_PRINTSCHEMA_FEATURE_DISPLAYUI","features":[76]},{"name":"DISPID_PRINTSCHEMA_FEATURE_GETOPTION","features":[76]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTEDOPTION","features":[76]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTIONTYPE","features":[76]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION","features":[76]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION_PAGESPERSHEET","features":[76]},{"name":"DISPID_PRINTSCHEMA_OPTION","features":[76]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION","features":[76]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_COUNT","features":[76]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_GETAT","features":[76]},{"name":"DISPID_PRINTSCHEMA_OPTION_CONSTRAINED","features":[76]},{"name":"DISPID_PRINTSCHEMA_OPTION_GETPROPERTYVALUE","features":[76]},{"name":"DISPID_PRINTSCHEMA_OPTION_SELECTED","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_HEIGHT","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_WIDTH","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_HEIGHT","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_WIDTH","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_HEIGHT","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_WIDTH","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_HEIGHT","features":[76]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_WIDTH","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_DATATYPE","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMAX","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMIN","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_UNITTYPE","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_USERINPUTREQUIRED","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER","features":[76]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER_VALUE","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_COMMITASYNC","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETCAPABILITIES","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE_KEYNAME","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETPARAMETERINITIALIZER","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_JOBCOPIESALLDOCUMENTS","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_NOTIFYXMLCHANGED","features":[76]},{"name":"DISPID_PRINTSCHEMA_TICKET_VALIDATEASYNC","features":[76]},{"name":"DI_CHANNEL","features":[76]},{"name":"DI_MEMORYMAP_WRITE","features":[76]},{"name":"DI_READ_SPOOL_JOB","features":[76]},{"name":"DLGPAGE","features":[3,76,52]},{"name":"DMPUB_BOOKLET_EDGE","features":[76]},{"name":"DMPUB_COLOR","features":[76]},{"name":"DMPUB_COPIES_COLLATE","features":[76]},{"name":"DMPUB_DEFSOURCE","features":[76]},{"name":"DMPUB_DITHERTYPE","features":[76]},{"name":"DMPUB_DUPLEX","features":[76]},{"name":"DMPUB_FIRST","features":[76]},{"name":"DMPUB_FORMNAME","features":[76]},{"name":"DMPUB_ICMINTENT","features":[76]},{"name":"DMPUB_ICMMETHOD","features":[76]},{"name":"DMPUB_LAST","features":[76]},{"name":"DMPUB_MANUAL_DUPLEX","features":[76]},{"name":"DMPUB_MEDIATYPE","features":[76]},{"name":"DMPUB_NONE","features":[76]},{"name":"DMPUB_NUP","features":[76]},{"name":"DMPUB_NUP_DIRECTION","features":[76]},{"name":"DMPUB_OEM_GRAPHIC_ITEM","features":[76]},{"name":"DMPUB_OEM_PAPER_ITEM","features":[76]},{"name":"DMPUB_OEM_ROOT_ITEM","features":[76]},{"name":"DMPUB_ORIENTATION","features":[76]},{"name":"DMPUB_OUTPUTBIN","features":[76]},{"name":"DMPUB_PAGEORDER","features":[76]},{"name":"DMPUB_PRINTQUALITY","features":[76]},{"name":"DMPUB_QUALITY","features":[76]},{"name":"DMPUB_SCALE","features":[76]},{"name":"DMPUB_STAPLE","features":[76]},{"name":"DMPUB_TTOPTION","features":[76]},{"name":"DMPUB_USER","features":[76]},{"name":"DM_ADVANCED","features":[76]},{"name":"DM_INVALIDATE_DRIVER_CACHE","features":[76]},{"name":"DM_NOPERMISSION","features":[76]},{"name":"DM_PROMPT_NON_MODAL","features":[76]},{"name":"DM_RESERVED","features":[76]},{"name":"DM_USER_DEFAULT","features":[76]},{"name":"DOCEVENT_CREATEDCPRE","features":[3,14,76]},{"name":"DOCEVENT_ESCAPE","features":[76]},{"name":"DOCEVENT_FILTER","features":[76]},{"name":"DOCUMENTEVENT_ABORTDOC","features":[76]},{"name":"DOCUMENTEVENT_CREATEDCPOST","features":[76]},{"name":"DOCUMENTEVENT_CREATEDCPRE","features":[76]},{"name":"DOCUMENTEVENT_DELETEDC","features":[76]},{"name":"DOCUMENTEVENT_ENDDOC","features":[76]},{"name":"DOCUMENTEVENT_ENDDOCPOST","features":[76]},{"name":"DOCUMENTEVENT_ENDDOCPRE","features":[76]},{"name":"DOCUMENTEVENT_ENDPAGE","features":[76]},{"name":"DOCUMENTEVENT_ESCAPE","features":[76]},{"name":"DOCUMENTEVENT_FAILURE","features":[76]},{"name":"DOCUMENTEVENT_FIRST","features":[76]},{"name":"DOCUMENTEVENT_LAST","features":[76]},{"name":"DOCUMENTEVENT_QUERYFILTER","features":[76]},{"name":"DOCUMENTEVENT_RESETDCPOST","features":[76]},{"name":"DOCUMENTEVENT_RESETDCPRE","features":[76]},{"name":"DOCUMENTEVENT_SPOOLED","features":[76]},{"name":"DOCUMENTEVENT_STARTDOC","features":[76]},{"name":"DOCUMENTEVENT_STARTDOCPOST","features":[76]},{"name":"DOCUMENTEVENT_STARTDOCPRE","features":[76]},{"name":"DOCUMENTEVENT_STARTPAGE","features":[76]},{"name":"DOCUMENTEVENT_SUCCESS","features":[76]},{"name":"DOCUMENTEVENT_UNSUPPORTED","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPOST","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRE","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPOST","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPRE","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPOST","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRE","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPOST","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPRE","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEEPRE","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPOST","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPOST","features":[76]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPRE","features":[76]},{"name":"DOCUMENTEVENT_XPS_CANCELJOB","features":[76]},{"name":"DOCUMENTPROPERTYHEADER","features":[3,14,76]},{"name":"DOC_INFO_1A","features":[76]},{"name":"DOC_INFO_1W","features":[76]},{"name":"DOC_INFO_2A","features":[76]},{"name":"DOC_INFO_2W","features":[76]},{"name":"DOC_INFO_3A","features":[76]},{"name":"DOC_INFO_3W","features":[76]},{"name":"DOC_INFO_INTERNAL","features":[3,76]},{"name":"DOC_INFO_INTERNAL_LEVEL","features":[76]},{"name":"DPD_DELETE_ALL_FILES","features":[76]},{"name":"DPD_DELETE_SPECIFIC_VERSION","features":[76]},{"name":"DPD_DELETE_UNUSED_FILES","features":[76]},{"name":"DPF_ICONID_AS_HICON","features":[76]},{"name":"DPF_USE_HDLGTEMPLATE","features":[76]},{"name":"DPS_NOPERMISSION","features":[76]},{"name":"DP_STD_DOCPROPPAGE1","features":[76]},{"name":"DP_STD_DOCPROPPAGE2","features":[76]},{"name":"DP_STD_RESERVED_START","features":[76]},{"name":"DP_STD_TREEVIEWPAGE","features":[76]},{"name":"DRIVER_EVENT_DELETE","features":[76]},{"name":"DRIVER_EVENT_INITIALIZE","features":[76]},{"name":"DRIVER_INFO_1A","features":[76]},{"name":"DRIVER_INFO_1W","features":[76]},{"name":"DRIVER_INFO_2A","features":[76]},{"name":"DRIVER_INFO_2W","features":[76]},{"name":"DRIVER_INFO_3A","features":[76]},{"name":"DRIVER_INFO_3W","features":[76]},{"name":"DRIVER_INFO_4A","features":[76]},{"name":"DRIVER_INFO_4W","features":[76]},{"name":"DRIVER_INFO_5A","features":[76]},{"name":"DRIVER_INFO_5W","features":[76]},{"name":"DRIVER_INFO_6A","features":[3,76]},{"name":"DRIVER_INFO_6W","features":[3,76]},{"name":"DRIVER_INFO_8A","features":[3,76]},{"name":"DRIVER_INFO_8W","features":[3,76]},{"name":"DRIVER_KERNELMODE","features":[76]},{"name":"DRIVER_UPGRADE_INFO_1","features":[76]},{"name":"DRIVER_UPGRADE_INFO_2","features":[76]},{"name":"DRIVER_USERMODE","features":[76]},{"name":"DSPRINT_PENDING","features":[76]},{"name":"DSPRINT_PUBLISH","features":[76]},{"name":"DSPRINT_REPUBLISH","features":[76]},{"name":"DSPRINT_UNPUBLISH","features":[76]},{"name":"DSPRINT_UPDATE","features":[76]},{"name":"DeleteFormA","features":[3,76]},{"name":"DeleteFormW","features":[3,76]},{"name":"DeleteJobNamedProperty","features":[3,76]},{"name":"DeleteMonitorA","features":[3,76]},{"name":"DeleteMonitorW","features":[3,76]},{"name":"DeletePortA","features":[3,76]},{"name":"DeletePortW","features":[3,76]},{"name":"DeletePrintProcessorA","features":[3,76]},{"name":"DeletePrintProcessorW","features":[3,76]},{"name":"DeletePrintProvidorA","features":[3,76]},{"name":"DeletePrintProvidorW","features":[3,76]},{"name":"DeletePrinter","features":[3,76]},{"name":"DeletePrinterConnectionA","features":[3,76]},{"name":"DeletePrinterConnectionW","features":[3,76]},{"name":"DeletePrinterDataA","features":[3,76]},{"name":"DeletePrinterDataExA","features":[3,76]},{"name":"DeletePrinterDataExW","features":[3,76]},{"name":"DeletePrinterDataW","features":[3,76]},{"name":"DeletePrinterDriverA","features":[3,76]},{"name":"DeletePrinterDriverExA","features":[3,76]},{"name":"DeletePrinterDriverExW","features":[3,76]},{"name":"DeletePrinterDriverPackageA","features":[76]},{"name":"DeletePrinterDriverPackageW","features":[76]},{"name":"DeletePrinterDriverW","features":[3,76]},{"name":"DeletePrinterIC","features":[3,76]},{"name":"DeletePrinterKeyA","features":[3,76]},{"name":"DeletePrinterKeyW","features":[3,76]},{"name":"DevQueryPrint","features":[3,14,76]},{"name":"DevQueryPrintEx","features":[3,14,76]},{"name":"DocumentPropertiesA","features":[3,14,76]},{"name":"DocumentPropertiesW","features":[3,14,76]},{"name":"EATTRIBUTE_DATATYPE","features":[76]},{"name":"EBranchOfficeJobEventType","features":[76]},{"name":"ECBF_CHECKNAME_AT_FRONT","features":[76]},{"name":"ECBF_CHECKNAME_ONLY","features":[76]},{"name":"ECBF_CHECKNAME_ONLY_ENABLED","features":[76]},{"name":"ECBF_ICONID_AS_HICON","features":[76]},{"name":"ECBF_MASK","features":[76]},{"name":"ECBF_OVERLAY_ECBICON_IF_CHECKED","features":[76]},{"name":"ECBF_OVERLAY_NO_ICON","features":[76]},{"name":"ECBF_OVERLAY_STOP_ICON","features":[76]},{"name":"ECBF_OVERLAY_WARNING_ICON","features":[76]},{"name":"EMFPLAYPROC","features":[3,14,76]},{"name":"EMF_PP_COLOR_OPTIMIZATION","features":[76]},{"name":"EPF_ICONID_AS_HICON","features":[76]},{"name":"EPF_INCL_SETUP_TITLE","features":[76]},{"name":"EPF_MASK","features":[76]},{"name":"EPF_NO_DOT_DOT_DOT","features":[76]},{"name":"EPF_OVERLAY_NO_ICON","features":[76]},{"name":"EPF_OVERLAY_STOP_ICON","features":[76]},{"name":"EPF_OVERLAY_WARNING_ICON","features":[76]},{"name":"EPF_PUSH_TYPE_DLGPROC","features":[76]},{"name":"EPF_USE_HDLGTEMPLATE","features":[76]},{"name":"EPrintPropertyType","features":[76]},{"name":"EPrintXPSJobOperation","features":[76]},{"name":"EPrintXPSJobProgress","features":[76]},{"name":"ERROR_BIDI_DEVICE_CONFIG_UNCHANGED","features":[76]},{"name":"ERROR_BIDI_DEVICE_OFFLINE","features":[76]},{"name":"ERROR_BIDI_ERROR_BASE","features":[76]},{"name":"ERROR_BIDI_GET_ARGUMENT_NOT_SUPPORTED","features":[76]},{"name":"ERROR_BIDI_GET_MISSING_ARGUMENT","features":[76]},{"name":"ERROR_BIDI_GET_REQUIRES_ARGUMENT","features":[76]},{"name":"ERROR_BIDI_NO_BIDI_SCHEMA_EXTENSIONS","features":[76]},{"name":"ERROR_BIDI_NO_LOCALIZED_RESOURCES","features":[76]},{"name":"ERROR_BIDI_SCHEMA_NOT_SUPPORTED","features":[76]},{"name":"ERROR_BIDI_SCHEMA_READ_ONLY","features":[76]},{"name":"ERROR_BIDI_SCHEMA_WRITE_ONLY","features":[76]},{"name":"ERROR_BIDI_SERVER_OFFLINE","features":[76]},{"name":"ERROR_BIDI_SET_DIFFERENT_TYPE","features":[76]},{"name":"ERROR_BIDI_SET_INVALID_SCHEMAPATH","features":[76]},{"name":"ERROR_BIDI_SET_MULTIPLE_SCHEMAPATH","features":[76]},{"name":"ERROR_BIDI_SET_UNKNOWN_FAILURE","features":[76]},{"name":"ERROR_BIDI_STATUS_OK","features":[76]},{"name":"ERROR_BIDI_STATUS_WARNING","features":[76]},{"name":"ERROR_BIDI_UNSUPPORTED_CLIENT_LANGUAGE","features":[76]},{"name":"ERROR_BIDI_UNSUPPORTED_RESOURCE_FORMAT","features":[76]},{"name":"ERR_CPSUI_ALLOCMEM_FAILED","features":[76]},{"name":"ERR_CPSUI_CREATEPROPPAGE_FAILED","features":[76]},{"name":"ERR_CPSUI_CREATE_IMAGELIST_FAILED","features":[76]},{"name":"ERR_CPSUI_CREATE_TRACKBAR_FAILED","features":[76]},{"name":"ERR_CPSUI_CREATE_UDARROW_FAILED","features":[76]},{"name":"ERR_CPSUI_DMCOPIES_USE_EXTPUSH","features":[76]},{"name":"ERR_CPSUI_FUNCTION_NOT_IMPLEMENTED","features":[76]},{"name":"ERR_CPSUI_GETLASTERROR","features":[76]},{"name":"ERR_CPSUI_INTERNAL_ERROR","features":[76]},{"name":"ERR_CPSUI_INVALID_DLGPAGEIDX","features":[76]},{"name":"ERR_CPSUI_INVALID_DLGPAGE_CBSIZE","features":[76]},{"name":"ERR_CPSUI_INVALID_DMPUBID","features":[76]},{"name":"ERR_CPSUI_INVALID_DMPUB_TVOT","features":[76]},{"name":"ERR_CPSUI_INVALID_ECB_CBSIZE","features":[76]},{"name":"ERR_CPSUI_INVALID_EDITBOX_BUF_SIZE","features":[76]},{"name":"ERR_CPSUI_INVALID_EDITBOX_PSEL","features":[76]},{"name":"ERR_CPSUI_INVALID_EXTPUSH_CBSIZE","features":[76]},{"name":"ERR_CPSUI_INVALID_LBCB_TYPE","features":[76]},{"name":"ERR_CPSUI_INVALID_LPARAM","features":[76]},{"name":"ERR_CPSUI_INVALID_OPTITEM_CBSIZE","features":[76]},{"name":"ERR_CPSUI_INVALID_OPTPARAM_CBSIZE","features":[76]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_CBSIZE","features":[76]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_COUNT","features":[76]},{"name":"ERR_CPSUI_INVALID_PDATA","features":[76]},{"name":"ERR_CPSUI_INVALID_PDLGPAGE","features":[76]},{"name":"ERR_CPSUI_INVALID_PUSHBUTTON_TYPE","features":[76]},{"name":"ERR_CPSUI_INVALID_TVOT_TYPE","features":[76]},{"name":"ERR_CPSUI_MORE_THAN_ONE_STDPAGE","features":[76]},{"name":"ERR_CPSUI_MORE_THAN_ONE_TVPAGE","features":[76]},{"name":"ERR_CPSUI_NO_EXTPUSH_DLGTEMPLATEID","features":[76]},{"name":"ERR_CPSUI_NO_PROPSHEETPAGE","features":[76]},{"name":"ERR_CPSUI_NULL_CALLERNAME","features":[76]},{"name":"ERR_CPSUI_NULL_ECB_PCHECKEDNAME","features":[76]},{"name":"ERR_CPSUI_NULL_ECB_PTITLE","features":[76]},{"name":"ERR_CPSUI_NULL_EXTPUSH_CALLBACK","features":[76]},{"name":"ERR_CPSUI_NULL_EXTPUSH_DLGPROC","features":[76]},{"name":"ERR_CPSUI_NULL_HINST","features":[76]},{"name":"ERR_CPSUI_NULL_OPTITEMNAME","features":[76]},{"name":"ERR_CPSUI_NULL_POPTITEM","features":[76]},{"name":"ERR_CPSUI_NULL_POPTPARAM","features":[76]},{"name":"ERR_CPSUI_SUBITEM_DIFF_DLGPAGEIDX","features":[76]},{"name":"ERR_CPSUI_SUBITEM_DIFF_OPTIF_HIDE","features":[76]},{"name":"ERR_CPSUI_TOO_MANY_DLGPAGES","features":[76]},{"name":"ERR_CPSUI_TOO_MANY_PROPSHEETPAGES","features":[76]},{"name":"ERR_CPSUI_ZERO_OPTITEM","features":[76]},{"name":"EXTCHKBOX","features":[76]},{"name":"EXTPUSH","features":[3,76,52]},{"name":"EXTTEXTMETRIC","features":[76]},{"name":"EXpsCompressionOptions","features":[76]},{"name":"EXpsFontOptions","features":[76]},{"name":"EXpsFontRestriction","features":[76]},{"name":"EXpsJobConsumption","features":[76]},{"name":"E_VERSION_NOT_SUPPORTED","features":[76]},{"name":"EndDocPrinter","features":[3,76]},{"name":"EndPagePrinter","features":[3,76]},{"name":"EnumFormsA","features":[3,76]},{"name":"EnumFormsW","features":[3,76]},{"name":"EnumJobNamedProperties","features":[3,76]},{"name":"EnumJobsA","features":[3,76]},{"name":"EnumJobsW","features":[3,76]},{"name":"EnumMonitorsA","features":[3,76]},{"name":"EnumMonitorsW","features":[3,76]},{"name":"EnumPortsA","features":[3,76]},{"name":"EnumPortsW","features":[3,76]},{"name":"EnumPrintProcessorDatatypesA","features":[3,76]},{"name":"EnumPrintProcessorDatatypesW","features":[3,76]},{"name":"EnumPrintProcessorsA","features":[3,76]},{"name":"EnumPrintProcessorsW","features":[3,76]},{"name":"EnumPrinterDataA","features":[3,76]},{"name":"EnumPrinterDataExA","features":[3,76]},{"name":"EnumPrinterDataExW","features":[3,76]},{"name":"EnumPrinterDataW","features":[3,76]},{"name":"EnumPrinterDriversA","features":[3,76]},{"name":"EnumPrinterDriversW","features":[3,76]},{"name":"EnumPrinterKeyA","features":[3,76]},{"name":"EnumPrinterKeyW","features":[3,76]},{"name":"EnumPrintersA","features":[3,76]},{"name":"EnumPrintersW","features":[3,76]},{"name":"ExtDeviceMode","features":[3,14,76]},{"name":"FG_CANCHANGE","features":[76]},{"name":"FILL_WITH_DEFAULTS","features":[76]},{"name":"FMTID_PrinterPropertyBag","features":[76]},{"name":"FNT_INFO_CURRENTFONTID","features":[76]},{"name":"FNT_INFO_FONTBOLD","features":[76]},{"name":"FNT_INFO_FONTHEIGHT","features":[76]},{"name":"FNT_INFO_FONTITALIC","features":[76]},{"name":"FNT_INFO_FONTMAXWIDTH","features":[76]},{"name":"FNT_INFO_FONTSTRIKETHRU","features":[76]},{"name":"FNT_INFO_FONTUNDERLINE","features":[76]},{"name":"FNT_INFO_FONTWIDTH","features":[76]},{"name":"FNT_INFO_GRAYPERCENTAGE","features":[76]},{"name":"FNT_INFO_MAX","features":[76]},{"name":"FNT_INFO_NEXTFONTID","features":[76]},{"name":"FNT_INFO_NEXTGLYPH","features":[76]},{"name":"FNT_INFO_PRINTDIRINCCDEGREES","features":[76]},{"name":"FNT_INFO_TEXTXRES","features":[76]},{"name":"FNT_INFO_TEXTYRES","features":[76]},{"name":"FONT_DIR_SORTED","features":[76]},{"name":"FONT_FL_DEVICEFONT","features":[76]},{"name":"FONT_FL_GLYPHSET_GTT","features":[76]},{"name":"FONT_FL_GLYPHSET_RLE","features":[76]},{"name":"FONT_FL_IFI","features":[76]},{"name":"FONT_FL_PERMANENT_SF","features":[76]},{"name":"FONT_FL_RESERVED","features":[76]},{"name":"FONT_FL_SOFTFONT","features":[76]},{"name":"FONT_FL_UFM","features":[76]},{"name":"FORM_BUILTIN","features":[76]},{"name":"FORM_INFO_1A","features":[3,76]},{"name":"FORM_INFO_1W","features":[3,76]},{"name":"FORM_INFO_2A","features":[3,76]},{"name":"FORM_INFO_2W","features":[3,76]},{"name":"FORM_PRINTER","features":[76]},{"name":"FORM_USER","features":[76]},{"name":"FinalPageCount","features":[76]},{"name":"FindClosePrinterChangeNotification","features":[3,76]},{"name":"FindFirstPrinterChangeNotification","features":[3,76]},{"name":"FindNextPrinterChangeNotification","features":[3,76]},{"name":"FlushPrinter","features":[3,76]},{"name":"Font_Normal","features":[76]},{"name":"Font_Obfusticate","features":[76]},{"name":"FreePrintNamedPropertyArray","features":[76]},{"name":"FreePrintPropertyValue","features":[76]},{"name":"FreePrinterNotifyInfo","features":[3,76]},{"name":"GLYPHRUN","features":[76]},{"name":"GPD_OEMCUSTOMDATA","features":[76]},{"name":"GUID_DEVINTERFACE_IPPUSB_PRINT","features":[76]},{"name":"GUID_DEVINTERFACE_USBPRINT","features":[76]},{"name":"GdiDeleteSpoolFileHandle","features":[3,76]},{"name":"GdiEndDocEMF","features":[3,76]},{"name":"GdiEndPageEMF","features":[3,76]},{"name":"GdiGetDC","features":[3,14,76]},{"name":"GdiGetDevmodeForPage","features":[3,14,76]},{"name":"GdiGetPageCount","features":[3,76]},{"name":"GdiGetPageHandle","features":[3,76]},{"name":"GdiGetSpoolFileHandle","features":[3,14,76]},{"name":"GdiPlayPageEMF","features":[3,76]},{"name":"GdiResetDCEMF","features":[3,14,76]},{"name":"GdiStartDocEMF","features":[3,76,77]},{"name":"GdiStartPageEMF","features":[3,76]},{"name":"GenerateCopyFilePaths","features":[76]},{"name":"GetCPSUIUserData","features":[3,76]},{"name":"GetCorePrinterDriversA","features":[3,76]},{"name":"GetCorePrinterDriversW","features":[3,76]},{"name":"GetDefaultPrinterA","features":[3,76]},{"name":"GetDefaultPrinterW","features":[3,76]},{"name":"GetFormA","features":[3,76]},{"name":"GetFormW","features":[3,76]},{"name":"GetJobA","features":[3,76]},{"name":"GetJobAttributes","features":[3,14,76]},{"name":"GetJobAttributesEx","features":[3,14,76]},{"name":"GetJobNamedPropertyValue","features":[3,76]},{"name":"GetJobW","features":[3,76]},{"name":"GetPrintExecutionData","features":[3,76]},{"name":"GetPrintOutputInfo","features":[3,76]},{"name":"GetPrintProcessorDirectoryA","features":[3,76]},{"name":"GetPrintProcessorDirectoryW","features":[3,76]},{"name":"GetPrinterA","features":[3,76]},{"name":"GetPrinterDataA","features":[3,76]},{"name":"GetPrinterDataExA","features":[3,76]},{"name":"GetPrinterDataExW","features":[3,76]},{"name":"GetPrinterDataW","features":[3,76]},{"name":"GetPrinterDriver2A","features":[3,76]},{"name":"GetPrinterDriver2W","features":[3,76]},{"name":"GetPrinterDriverA","features":[3,76]},{"name":"GetPrinterDriverDirectoryA","features":[3,76]},{"name":"GetPrinterDriverDirectoryW","features":[3,76]},{"name":"GetPrinterDriverPackagePathA","features":[76]},{"name":"GetPrinterDriverPackagePathW","features":[76]},{"name":"GetPrinterDriverW","features":[3,76]},{"name":"GetPrinterW","features":[3,76]},{"name":"GetSpoolFileHandle","features":[3,76]},{"name":"IAsyncGetSendNotificationCookie","features":[76]},{"name":"IAsyncGetSrvReferralCookie","features":[76]},{"name":"IBidiAsyncNotifyChannel","features":[76]},{"name":"IBidiRequest","features":[76]},{"name":"IBidiRequestContainer","features":[76]},{"name":"IBidiSpl","features":[76]},{"name":"IBidiSpl2","features":[76]},{"name":"IDI_CPSUI_ADVANCE","features":[76]},{"name":"IDI_CPSUI_AUTOSEL","features":[76]},{"name":"IDI_CPSUI_COLLATE","features":[76]},{"name":"IDI_CPSUI_COLOR","features":[76]},{"name":"IDI_CPSUI_COPY","features":[76]},{"name":"IDI_CPSUI_DEVICE","features":[76]},{"name":"IDI_CPSUI_DEVICE2","features":[76]},{"name":"IDI_CPSUI_DEVICE_FEATURE","features":[76]},{"name":"IDI_CPSUI_DITHER_COARSE","features":[76]},{"name":"IDI_CPSUI_DITHER_FINE","features":[76]},{"name":"IDI_CPSUI_DITHER_LINEART","features":[76]},{"name":"IDI_CPSUI_DITHER_NONE","features":[76]},{"name":"IDI_CPSUI_DOCUMENT","features":[76]},{"name":"IDI_CPSUI_DUPLEX_HORZ","features":[76]},{"name":"IDI_CPSUI_DUPLEX_HORZ_L","features":[76]},{"name":"IDI_CPSUI_DUPLEX_NONE","features":[76]},{"name":"IDI_CPSUI_DUPLEX_NONE_L","features":[76]},{"name":"IDI_CPSUI_DUPLEX_VERT","features":[76]},{"name":"IDI_CPSUI_DUPLEX_VERT_L","features":[76]},{"name":"IDI_CPSUI_EMPTY","features":[76]},{"name":"IDI_CPSUI_ENVELOPE","features":[76]},{"name":"IDI_CPSUI_ENVELOPE_FEED","features":[76]},{"name":"IDI_CPSUI_ERROR","features":[76]},{"name":"IDI_CPSUI_FALSE","features":[76]},{"name":"IDI_CPSUI_FAX","features":[76]},{"name":"IDI_CPSUI_FONTCART","features":[76]},{"name":"IDI_CPSUI_FONTCARTHDR","features":[76]},{"name":"IDI_CPSUI_FONTCART_SLOT","features":[76]},{"name":"IDI_CPSUI_FONTSUB","features":[76]},{"name":"IDI_CPSUI_FORMTRAYASSIGN","features":[76]},{"name":"IDI_CPSUI_GENERIC_ITEM","features":[76]},{"name":"IDI_CPSUI_GENERIC_OPTION","features":[76]},{"name":"IDI_CPSUI_GRAPHIC","features":[76]},{"name":"IDI_CPSUI_HALFTONE_SETUP","features":[76]},{"name":"IDI_CPSUI_HTCLRADJ","features":[76]},{"name":"IDI_CPSUI_HT_DEVICE","features":[76]},{"name":"IDI_CPSUI_HT_HOST","features":[76]},{"name":"IDI_CPSUI_ICM_INTENT","features":[76]},{"name":"IDI_CPSUI_ICM_METHOD","features":[76]},{"name":"IDI_CPSUI_ICM_OPTION","features":[76]},{"name":"IDI_CPSUI_ICONID_FIRST","features":[76]},{"name":"IDI_CPSUI_ICONID_LAST","features":[76]},{"name":"IDI_CPSUI_INSTALLABLE_OPTION","features":[76]},{"name":"IDI_CPSUI_LANDSCAPE","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWL","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWLR","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWS","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL_NB","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP_NB","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_PORTRAIT","features":[76]},{"name":"IDI_CPSUI_LAYOUT_BMP_ROT_PORT","features":[76]},{"name":"IDI_CPSUI_LF_PEN_PLOTTER","features":[76]},{"name":"IDI_CPSUI_LF_RASTER_PLOTTER","features":[76]},{"name":"IDI_CPSUI_MANUAL_FEED","features":[76]},{"name":"IDI_CPSUI_MEM","features":[76]},{"name":"IDI_CPSUI_MONO","features":[76]},{"name":"IDI_CPSUI_NO","features":[76]},{"name":"IDI_CPSUI_NOTINSTALLED","features":[76]},{"name":"IDI_CPSUI_NUP_BORDER","features":[76]},{"name":"IDI_CPSUI_OFF","features":[76]},{"name":"IDI_CPSUI_ON","features":[76]},{"name":"IDI_CPSUI_OPTION","features":[76]},{"name":"IDI_CPSUI_OPTION2","features":[76]},{"name":"IDI_CPSUI_OUTBIN","features":[76]},{"name":"IDI_CPSUI_OUTPUT","features":[76]},{"name":"IDI_CPSUI_PAGE_PROTECT","features":[76]},{"name":"IDI_CPSUI_PAPER_OUTPUT","features":[76]},{"name":"IDI_CPSUI_PAPER_TRAY","features":[76]},{"name":"IDI_CPSUI_PAPER_TRAY2","features":[76]},{"name":"IDI_CPSUI_PAPER_TRAY3","features":[76]},{"name":"IDI_CPSUI_PEN_CARROUSEL","features":[76]},{"name":"IDI_CPSUI_PLOTTER_PEN","features":[76]},{"name":"IDI_CPSUI_PORTRAIT","features":[76]},{"name":"IDI_CPSUI_POSTSCRIPT","features":[76]},{"name":"IDI_CPSUI_PRINTER","features":[76]},{"name":"IDI_CPSUI_PRINTER2","features":[76]},{"name":"IDI_CPSUI_PRINTER3","features":[76]},{"name":"IDI_CPSUI_PRINTER4","features":[76]},{"name":"IDI_CPSUI_PRINTER_FEATURE","features":[76]},{"name":"IDI_CPSUI_PRINTER_FOLDER","features":[76]},{"name":"IDI_CPSUI_QUESTION","features":[76]},{"name":"IDI_CPSUI_RES_DRAFT","features":[76]},{"name":"IDI_CPSUI_RES_HIGH","features":[76]},{"name":"IDI_CPSUI_RES_LOW","features":[76]},{"name":"IDI_CPSUI_RES_MEDIUM","features":[76]},{"name":"IDI_CPSUI_RES_PRESENTATION","features":[76]},{"name":"IDI_CPSUI_ROLL_PAPER","features":[76]},{"name":"IDI_CPSUI_ROT_LAND","features":[76]},{"name":"IDI_CPSUI_ROT_PORT","features":[76]},{"name":"IDI_CPSUI_RUN_DIALOG","features":[76]},{"name":"IDI_CPSUI_SCALING","features":[76]},{"name":"IDI_CPSUI_SEL_NONE","features":[76]},{"name":"IDI_CPSUI_SF_PEN_PLOTTER","features":[76]},{"name":"IDI_CPSUI_SF_RASTER_PLOTTER","features":[76]},{"name":"IDI_CPSUI_STAPLER_OFF","features":[76]},{"name":"IDI_CPSUI_STAPLER_ON","features":[76]},{"name":"IDI_CPSUI_STD_FORM","features":[76]},{"name":"IDI_CPSUI_STOP","features":[76]},{"name":"IDI_CPSUI_STOP_WARNING_OVERLAY","features":[76]},{"name":"IDI_CPSUI_TELEPHONE","features":[76]},{"name":"IDI_CPSUI_TRANSPARENT","features":[76]},{"name":"IDI_CPSUI_TRUE","features":[76]},{"name":"IDI_CPSUI_TT_DOWNLOADSOFT","features":[76]},{"name":"IDI_CPSUI_TT_DOWNLOADVECT","features":[76]},{"name":"IDI_CPSUI_TT_PRINTASGRAPHIC","features":[76]},{"name":"IDI_CPSUI_TT_SUBDEV","features":[76]},{"name":"IDI_CPSUI_WARNING","features":[76]},{"name":"IDI_CPSUI_WARNING_OVERLAY","features":[76]},{"name":"IDI_CPSUI_WATERMARK","features":[76]},{"name":"IDI_CPSUI_YES","features":[76]},{"name":"IDS_CPSUI_ABOUT","features":[76]},{"name":"IDS_CPSUI_ADVANCED","features":[76]},{"name":"IDS_CPSUI_ADVANCEDOCUMENT","features":[76]},{"name":"IDS_CPSUI_ALL","features":[76]},{"name":"IDS_CPSUI_AUTOSELECT","features":[76]},{"name":"IDS_CPSUI_BACKTOFRONT","features":[76]},{"name":"IDS_CPSUI_BOND","features":[76]},{"name":"IDS_CPSUI_BOOKLET","features":[76]},{"name":"IDS_CPSUI_BOOKLET_EDGE","features":[76]},{"name":"IDS_CPSUI_BOOKLET_EDGE_LEFT","features":[76]},{"name":"IDS_CPSUI_BOOKLET_EDGE_RIGHT","features":[76]},{"name":"IDS_CPSUI_CASSETTE_TRAY","features":[76]},{"name":"IDS_CPSUI_CHANGE","features":[76]},{"name":"IDS_CPSUI_CHANGED","features":[76]},{"name":"IDS_CPSUI_CHANGES","features":[76]},{"name":"IDS_CPSUI_COARSE","features":[76]},{"name":"IDS_CPSUI_COLLATE","features":[76]},{"name":"IDS_CPSUI_COLLATED","features":[76]},{"name":"IDS_CPSUI_COLON_SEP","features":[76]},{"name":"IDS_CPSUI_COLOR","features":[76]},{"name":"IDS_CPSUI_COLOR_APPERANCE","features":[76]},{"name":"IDS_CPSUI_COPIES","features":[76]},{"name":"IDS_CPSUI_COPY","features":[76]},{"name":"IDS_CPSUI_DEFAULT","features":[76]},{"name":"IDS_CPSUI_DEFAULTDOCUMENT","features":[76]},{"name":"IDS_CPSUI_DEFAULT_TRAY","features":[76]},{"name":"IDS_CPSUI_DEVICE","features":[76]},{"name":"IDS_CPSUI_DEVICEOPTIONS","features":[76]},{"name":"IDS_CPSUI_DEVICE_SETTINGS","features":[76]},{"name":"IDS_CPSUI_DITHERING","features":[76]},{"name":"IDS_CPSUI_DOCUMENT","features":[76]},{"name":"IDS_CPSUI_DOWN_THEN_LEFT","features":[76]},{"name":"IDS_CPSUI_DOWN_THEN_RIGHT","features":[76]},{"name":"IDS_CPSUI_DRAFT","features":[76]},{"name":"IDS_CPSUI_DUPLEX","features":[76]},{"name":"IDS_CPSUI_ENVELOPE_TRAY","features":[76]},{"name":"IDS_CPSUI_ENVMANUAL_TRAY","features":[76]},{"name":"IDS_CPSUI_ERRDIFFUSE","features":[76]},{"name":"IDS_CPSUI_ERROR","features":[76]},{"name":"IDS_CPSUI_EXIST","features":[76]},{"name":"IDS_CPSUI_FALSE","features":[76]},{"name":"IDS_CPSUI_FAST","features":[76]},{"name":"IDS_CPSUI_FAX","features":[76]},{"name":"IDS_CPSUI_FINE","features":[76]},{"name":"IDS_CPSUI_FORMNAME","features":[76]},{"name":"IDS_CPSUI_FORMSOURCE","features":[76]},{"name":"IDS_CPSUI_FORMTRAYASSIGN","features":[76]},{"name":"IDS_CPSUI_FRONTTOBACK","features":[76]},{"name":"IDS_CPSUI_GLOSSY","features":[76]},{"name":"IDS_CPSUI_GRAPHIC","features":[76]},{"name":"IDS_CPSUI_GRAYSCALE","features":[76]},{"name":"IDS_CPSUI_HALFTONE","features":[76]},{"name":"IDS_CPSUI_HALFTONE_SETUP","features":[76]},{"name":"IDS_CPSUI_HIGH","features":[76]},{"name":"IDS_CPSUI_HORIZONTAL","features":[76]},{"name":"IDS_CPSUI_HTCLRADJ","features":[76]},{"name":"IDS_CPSUI_ICM","features":[76]},{"name":"IDS_CPSUI_ICMINTENT","features":[76]},{"name":"IDS_CPSUI_ICMMETHOD","features":[76]},{"name":"IDS_CPSUI_ICM_BLACKWHITE","features":[76]},{"name":"IDS_CPSUI_ICM_COLORMETRIC","features":[76]},{"name":"IDS_CPSUI_ICM_CONTRAST","features":[76]},{"name":"IDS_CPSUI_ICM_NO","features":[76]},{"name":"IDS_CPSUI_ICM_SATURATION","features":[76]},{"name":"IDS_CPSUI_ICM_YES","features":[76]},{"name":"IDS_CPSUI_INSTFONTCART","features":[76]},{"name":"IDS_CPSUI_LANDSCAPE","features":[76]},{"name":"IDS_CPSUI_LARGECAP_TRAY","features":[76]},{"name":"IDS_CPSUI_LARGEFMT_TRAY","features":[76]},{"name":"IDS_CPSUI_LBCB_NOSEL","features":[76]},{"name":"IDS_CPSUI_LEFT_ANGLE","features":[76]},{"name":"IDS_CPSUI_LEFT_SLOT","features":[76]},{"name":"IDS_CPSUI_LEFT_THEN_DOWN","features":[76]},{"name":"IDS_CPSUI_LINEART","features":[76]},{"name":"IDS_CPSUI_LONG_SIDE","features":[76]},{"name":"IDS_CPSUI_LOW","features":[76]},{"name":"IDS_CPSUI_LOWER_TRAY","features":[76]},{"name":"IDS_CPSUI_MAILBOX","features":[76]},{"name":"IDS_CPSUI_MAKE","features":[76]},{"name":"IDS_CPSUI_MANUALFEED","features":[76]},{"name":"IDS_CPSUI_MANUAL_DUPLEX","features":[76]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_OFF","features":[76]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_ON","features":[76]},{"name":"IDS_CPSUI_MANUAL_TRAY","features":[76]},{"name":"IDS_CPSUI_MEDIA","features":[76]},{"name":"IDS_CPSUI_MEDIUM","features":[76]},{"name":"IDS_CPSUI_MIDDLE_TRAY","features":[76]},{"name":"IDS_CPSUI_MONOCHROME","features":[76]},{"name":"IDS_CPSUI_MORE","features":[76]},{"name":"IDS_CPSUI_NO","features":[76]},{"name":"IDS_CPSUI_NONE","features":[76]},{"name":"IDS_CPSUI_NOT","features":[76]},{"name":"IDS_CPSUI_NOTINSTALLED","features":[76]},{"name":"IDS_CPSUI_NO_NAME","features":[76]},{"name":"IDS_CPSUI_NUM_OF_COPIES","features":[76]},{"name":"IDS_CPSUI_NUP","features":[76]},{"name":"IDS_CPSUI_NUP_BORDER","features":[76]},{"name":"IDS_CPSUI_NUP_BORDERED","features":[76]},{"name":"IDS_CPSUI_NUP_DIRECTION","features":[76]},{"name":"IDS_CPSUI_NUP_FOURUP","features":[76]},{"name":"IDS_CPSUI_NUP_NINEUP","features":[76]},{"name":"IDS_CPSUI_NUP_NORMAL","features":[76]},{"name":"IDS_CPSUI_NUP_SIXTEENUP","features":[76]},{"name":"IDS_CPSUI_NUP_SIXUP","features":[76]},{"name":"IDS_CPSUI_NUP_TWOUP","features":[76]},{"name":"IDS_CPSUI_OF","features":[76]},{"name":"IDS_CPSUI_OFF","features":[76]},{"name":"IDS_CPSUI_ON","features":[76]},{"name":"IDS_CPSUI_ONLYONE","features":[76]},{"name":"IDS_CPSUI_OPTION","features":[76]},{"name":"IDS_CPSUI_OPTIONS","features":[76]},{"name":"IDS_CPSUI_ORIENTATION","features":[76]},{"name":"IDS_CPSUI_OUTBINASSIGN","features":[76]},{"name":"IDS_CPSUI_OUTPUTBIN","features":[76]},{"name":"IDS_CPSUI_PAGEORDER","features":[76]},{"name":"IDS_CPSUI_PAGEPROTECT","features":[76]},{"name":"IDS_CPSUI_PAPER_OUTPUT","features":[76]},{"name":"IDS_CPSUI_PERCENT","features":[76]},{"name":"IDS_CPSUI_PLOT","features":[76]},{"name":"IDS_CPSUI_PORTRAIT","features":[76]},{"name":"IDS_CPSUI_POSTER","features":[76]},{"name":"IDS_CPSUI_POSTER_2x2","features":[76]},{"name":"IDS_CPSUI_POSTER_3x3","features":[76]},{"name":"IDS_CPSUI_POSTER_4x4","features":[76]},{"name":"IDS_CPSUI_PRESENTATION","features":[76]},{"name":"IDS_CPSUI_PRINT","features":[76]},{"name":"IDS_CPSUI_PRINTER","features":[76]},{"name":"IDS_CPSUI_PRINTERMEM_KB","features":[76]},{"name":"IDS_CPSUI_PRINTERMEM_MB","features":[76]},{"name":"IDS_CPSUI_PRINTFLDSETTING","features":[76]},{"name":"IDS_CPSUI_PRINTQUALITY","features":[76]},{"name":"IDS_CPSUI_PROPERTIES","features":[76]},{"name":"IDS_CPSUI_QUALITY_BEST","features":[76]},{"name":"IDS_CPSUI_QUALITY_BETTER","features":[76]},{"name":"IDS_CPSUI_QUALITY_CUSTOM","features":[76]},{"name":"IDS_CPSUI_QUALITY_DRAFT","features":[76]},{"name":"IDS_CPSUI_QUALITY_SETTINGS","features":[76]},{"name":"IDS_CPSUI_RANGE_FROM","features":[76]},{"name":"IDS_CPSUI_REGULAR","features":[76]},{"name":"IDS_CPSUI_RESET","features":[76]},{"name":"IDS_CPSUI_RESOLUTION","features":[76]},{"name":"IDS_CPSUI_REVERT","features":[76]},{"name":"IDS_CPSUI_RIGHT_ANGLE","features":[76]},{"name":"IDS_CPSUI_RIGHT_SLOT","features":[76]},{"name":"IDS_CPSUI_RIGHT_THEN_DOWN","features":[76]},{"name":"IDS_CPSUI_ROTATED","features":[76]},{"name":"IDS_CPSUI_ROT_LAND","features":[76]},{"name":"IDS_CPSUI_ROT_PORT","features":[76]},{"name":"IDS_CPSUI_SCALING","features":[76]},{"name":"IDS_CPSUI_SETTING","features":[76]},{"name":"IDS_CPSUI_SETTINGS","features":[76]},{"name":"IDS_CPSUI_SETUP","features":[76]},{"name":"IDS_CPSUI_SHORT_SIDE","features":[76]},{"name":"IDS_CPSUI_SIDE1","features":[76]},{"name":"IDS_CPSUI_SIDE2","features":[76]},{"name":"IDS_CPSUI_SIMPLEX","features":[76]},{"name":"IDS_CPSUI_SLASH_SEP","features":[76]},{"name":"IDS_CPSUI_SLOT1","features":[76]},{"name":"IDS_CPSUI_SLOT2","features":[76]},{"name":"IDS_CPSUI_SLOT3","features":[76]},{"name":"IDS_CPSUI_SLOT4","features":[76]},{"name":"IDS_CPSUI_SLOW","features":[76]},{"name":"IDS_CPSUI_SMALLFMT_TRAY","features":[76]},{"name":"IDS_CPSUI_SOURCE","features":[76]},{"name":"IDS_CPSUI_STACKER","features":[76]},{"name":"IDS_CPSUI_STANDARD","features":[76]},{"name":"IDS_CPSUI_STAPLE","features":[76]},{"name":"IDS_CPSUI_STAPLER","features":[76]},{"name":"IDS_CPSUI_STAPLER_OFF","features":[76]},{"name":"IDS_CPSUI_STAPLER_ON","features":[76]},{"name":"IDS_CPSUI_STDDOCPROPTAB","features":[76]},{"name":"IDS_CPSUI_STDDOCPROPTAB1","features":[76]},{"name":"IDS_CPSUI_STDDOCPROPTAB2","features":[76]},{"name":"IDS_CPSUI_STDDOCPROPTVTAB","features":[76]},{"name":"IDS_CPSUI_STRID_FIRST","features":[76]},{"name":"IDS_CPSUI_STRID_LAST","features":[76]},{"name":"IDS_CPSUI_TO","features":[76]},{"name":"IDS_CPSUI_TOTAL","features":[76]},{"name":"IDS_CPSUI_TRACTOR_TRAY","features":[76]},{"name":"IDS_CPSUI_TRANSPARENCY","features":[76]},{"name":"IDS_CPSUI_TRUE","features":[76]},{"name":"IDS_CPSUI_TTOPTION","features":[76]},{"name":"IDS_CPSUI_TT_DOWNLOADSOFT","features":[76]},{"name":"IDS_CPSUI_TT_DOWNLOADVECT","features":[76]},{"name":"IDS_CPSUI_TT_PRINTASGRAPHIC","features":[76]},{"name":"IDS_CPSUI_TT_SUBDEV","features":[76]},{"name":"IDS_CPSUI_UPPER_TRAY","features":[76]},{"name":"IDS_CPSUI_USE_DEVICE_HT","features":[76]},{"name":"IDS_CPSUI_USE_HOST_HT","features":[76]},{"name":"IDS_CPSUI_USE_PRINTER_HT","features":[76]},{"name":"IDS_CPSUI_VERSION","features":[76]},{"name":"IDS_CPSUI_VERTICAL","features":[76]},{"name":"IDS_CPSUI_WARNING","features":[76]},{"name":"IDS_CPSUI_WATERMARK","features":[76]},{"name":"IDS_CPSUI_YES","features":[76]},{"name":"IFixedDocument","features":[76]},{"name":"IFixedDocumentSequence","features":[76]},{"name":"IFixedPage","features":[76]},{"name":"IImgCreateErrorInfo","features":[76]},{"name":"IImgErrorInfo","features":[76]},{"name":"IInterFilterCommunicator","features":[76]},{"name":"INSERTPSUIPAGE_INFO","features":[76]},{"name":"INSPSUIPAGE_MODE_AFTER","features":[76]},{"name":"INSPSUIPAGE_MODE_BEFORE","features":[76]},{"name":"INSPSUIPAGE_MODE_FIRST_CHILD","features":[76]},{"name":"INSPSUIPAGE_MODE_INDEX","features":[76]},{"name":"INSPSUIPAGE_MODE_LAST_CHILD","features":[76]},{"name":"INTERNAL_NOTIFICATION_QUEUE_IS_FULL","features":[76]},{"name":"INVALID_NOTIFICATION_TYPE","features":[76]},{"name":"INVOC","features":[76]},{"name":"IOCTL_USBPRINT_ADD_CHILD_DEVICE","features":[76]},{"name":"IOCTL_USBPRINT_ADD_MSIPP_COMPAT_ID","features":[76]},{"name":"IOCTL_USBPRINT_CYCLE_PORT","features":[76]},{"name":"IOCTL_USBPRINT_GET_1284_ID","features":[76]},{"name":"IOCTL_USBPRINT_GET_INTERFACE_TYPE","features":[76]},{"name":"IOCTL_USBPRINT_GET_LPT_STATUS","features":[76]},{"name":"IOCTL_USBPRINT_GET_PROTOCOL","features":[76]},{"name":"IOCTL_USBPRINT_SET_DEVICE_ID","features":[76]},{"name":"IOCTL_USBPRINT_SET_PORT_NUMBER","features":[76]},{"name":"IOCTL_USBPRINT_SET_PROTOCOL","features":[76]},{"name":"IOCTL_USBPRINT_SOFT_RESET","features":[76]},{"name":"IOCTL_USBPRINT_VENDOR_GET_COMMAND","features":[76]},{"name":"IOCTL_USBPRINT_VENDOR_SET_COMMAND","features":[76]},{"name":"IPDFP_COPY_ALL_FILES","features":[76]},{"name":"IPartBase","features":[76]},{"name":"IPartColorProfile","features":[76]},{"name":"IPartDiscardControl","features":[76]},{"name":"IPartFont","features":[76]},{"name":"IPartFont2","features":[76]},{"name":"IPartImage","features":[76]},{"name":"IPartPrintTicket","features":[76]},{"name":"IPartResourceDictionary","features":[76]},{"name":"IPartThumbnail","features":[76]},{"name":"IPrintAsyncCookie","features":[76]},{"name":"IPrintAsyncNewChannelCookie","features":[76]},{"name":"IPrintAsyncNotify","features":[76]},{"name":"IPrintAsyncNotifyCallback","features":[76]},{"name":"IPrintAsyncNotifyChannel","features":[76]},{"name":"IPrintAsyncNotifyDataObject","features":[76]},{"name":"IPrintAsyncNotifyRegistration","features":[76]},{"name":"IPrintAsyncNotifyServerReferral","features":[76]},{"name":"IPrintBidiAsyncNotifyRegistration","features":[76]},{"name":"IPrintClassObjectFactory","features":[76]},{"name":"IPrintCoreHelper","features":[76]},{"name":"IPrintCoreHelperPS","features":[76]},{"name":"IPrintCoreHelperUni","features":[76]},{"name":"IPrintCoreHelperUni2","features":[76]},{"name":"IPrintCoreUI2","features":[76]},{"name":"IPrintJob","features":[76]},{"name":"IPrintJobCollection","features":[76]},{"name":"IPrintOemCommon","features":[76]},{"name":"IPrintOemDriverUI","features":[76]},{"name":"IPrintOemUI","features":[76]},{"name":"IPrintOemUI2","features":[76]},{"name":"IPrintOemUIMXDC","features":[76]},{"name":"IPrintPipelineFilter","features":[76]},{"name":"IPrintPipelineManagerControl","features":[76]},{"name":"IPrintPipelineProgressReport","features":[76]},{"name":"IPrintPipelinePropertyBag","features":[76]},{"name":"IPrintPreviewDxgiPackageTarget","features":[76]},{"name":"IPrintReadStream","features":[76]},{"name":"IPrintReadStreamFactory","features":[76]},{"name":"IPrintSchemaAsyncOperation","features":[76]},{"name":"IPrintSchemaAsyncOperationEvent","features":[76]},{"name":"IPrintSchemaCapabilities","features":[76]},{"name":"IPrintSchemaCapabilities2","features":[76]},{"name":"IPrintSchemaDisplayableElement","features":[76]},{"name":"IPrintSchemaElement","features":[76]},{"name":"IPrintSchemaFeature","features":[76]},{"name":"IPrintSchemaNUpOption","features":[76]},{"name":"IPrintSchemaOption","features":[76]},{"name":"IPrintSchemaOptionCollection","features":[76]},{"name":"IPrintSchemaPageImageableSize","features":[76]},{"name":"IPrintSchemaPageMediaSizeOption","features":[76]},{"name":"IPrintSchemaParameterDefinition","features":[76]},{"name":"IPrintSchemaParameterInitializer","features":[76]},{"name":"IPrintSchemaTicket","features":[76]},{"name":"IPrintSchemaTicket2","features":[76]},{"name":"IPrintTicketProvider","features":[76]},{"name":"IPrintTicketProvider2","features":[76]},{"name":"IPrintUnidiAsyncNotifyRegistration","features":[76]},{"name":"IPrintWriteStream","features":[76]},{"name":"IPrintWriteStreamFlush","features":[76]},{"name":"IPrinterBidiSetRequestCallback","features":[76]},{"name":"IPrinterExtensionAsyncOperation","features":[76]},{"name":"IPrinterExtensionContext","features":[76]},{"name":"IPrinterExtensionContextCollection","features":[76]},{"name":"IPrinterExtensionEvent","features":[76]},{"name":"IPrinterExtensionEventArgs","features":[76]},{"name":"IPrinterExtensionManager","features":[76]},{"name":"IPrinterExtensionRequest","features":[76]},{"name":"IPrinterPropertyBag","features":[76]},{"name":"IPrinterQueue","features":[76]},{"name":"IPrinterQueue2","features":[76]},{"name":"IPrinterQueueEvent","features":[76]},{"name":"IPrinterQueueView","features":[76]},{"name":"IPrinterQueueViewEvent","features":[76]},{"name":"IPrinterScriptContext","features":[76]},{"name":"IPrinterScriptablePropertyBag","features":[76]},{"name":"IPrinterScriptablePropertyBag2","features":[76]},{"name":"IPrinterScriptableSequentialStream","features":[76]},{"name":"IPrinterScriptableStream","features":[76]},{"name":"IXpsDocument","features":[76]},{"name":"IXpsDocumentConsumer","features":[76]},{"name":"IXpsDocumentProvider","features":[76]},{"name":"IXpsPartIterator","features":[76]},{"name":"IXpsRasterizationFactory","features":[76]},{"name":"IXpsRasterizationFactory1","features":[76]},{"name":"IXpsRasterizationFactory2","features":[76]},{"name":"IXpsRasterizer","features":[76]},{"name":"IXpsRasterizerNotificationCallback","features":[76]},{"name":"ImgErrorInfo","features":[76]},{"name":"ImpersonatePrinterClient","features":[3,76]},{"name":"InstallPrinterDriverFromPackageA","features":[76]},{"name":"InstallPrinterDriverFromPackageW","features":[76]},{"name":"IntermediatePageCount","features":[76]},{"name":"IsValidDevmodeA","features":[3,14,76]},{"name":"IsValidDevmodeW","features":[3,14,76]},{"name":"JOB_ACCESS_ADMINISTER","features":[76]},{"name":"JOB_ACCESS_READ","features":[76]},{"name":"JOB_CONTROL_CANCEL","features":[76]},{"name":"JOB_CONTROL_DELETE","features":[76]},{"name":"JOB_CONTROL_LAST_PAGE_EJECTED","features":[76]},{"name":"JOB_CONTROL_PAUSE","features":[76]},{"name":"JOB_CONTROL_RELEASE","features":[76]},{"name":"JOB_CONTROL_RESTART","features":[76]},{"name":"JOB_CONTROL_RESUME","features":[76]},{"name":"JOB_CONTROL_RETAIN","features":[76]},{"name":"JOB_CONTROL_SEND_TOAST","features":[76]},{"name":"JOB_CONTROL_SENT_TO_PRINTER","features":[76]},{"name":"JOB_INFO_1A","features":[3,76]},{"name":"JOB_INFO_1W","features":[3,76]},{"name":"JOB_INFO_2A","features":[3,14,76,6]},{"name":"JOB_INFO_2W","features":[3,14,76,6]},{"name":"JOB_INFO_3","features":[76]},{"name":"JOB_INFO_4A","features":[3,14,76,6]},{"name":"JOB_INFO_4W","features":[3,14,76,6]},{"name":"JOB_NOTIFY_FIELD_BYTES_PRINTED","features":[76]},{"name":"JOB_NOTIFY_FIELD_DATATYPE","features":[76]},{"name":"JOB_NOTIFY_FIELD_DEVMODE","features":[76]},{"name":"JOB_NOTIFY_FIELD_DOCUMENT","features":[76]},{"name":"JOB_NOTIFY_FIELD_DRIVER_NAME","features":[76]},{"name":"JOB_NOTIFY_FIELD_MACHINE_NAME","features":[76]},{"name":"JOB_NOTIFY_FIELD_NOTIFY_NAME","features":[76]},{"name":"JOB_NOTIFY_FIELD_PAGES_PRINTED","features":[76]},{"name":"JOB_NOTIFY_FIELD_PARAMETERS","features":[76]},{"name":"JOB_NOTIFY_FIELD_PORT_NAME","features":[76]},{"name":"JOB_NOTIFY_FIELD_POSITION","features":[76]},{"name":"JOB_NOTIFY_FIELD_PRINTER_NAME","features":[76]},{"name":"JOB_NOTIFY_FIELD_PRINT_PROCESSOR","features":[76]},{"name":"JOB_NOTIFY_FIELD_PRIORITY","features":[76]},{"name":"JOB_NOTIFY_FIELD_REMOTE_JOB_ID","features":[76]},{"name":"JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[76]},{"name":"JOB_NOTIFY_FIELD_START_TIME","features":[76]},{"name":"JOB_NOTIFY_FIELD_STATUS","features":[76]},{"name":"JOB_NOTIFY_FIELD_STATUS_STRING","features":[76]},{"name":"JOB_NOTIFY_FIELD_SUBMITTED","features":[76]},{"name":"JOB_NOTIFY_FIELD_TIME","features":[76]},{"name":"JOB_NOTIFY_FIELD_TOTAL_BYTES","features":[76]},{"name":"JOB_NOTIFY_FIELD_TOTAL_PAGES","features":[76]},{"name":"JOB_NOTIFY_FIELD_UNTIL_TIME","features":[76]},{"name":"JOB_NOTIFY_FIELD_USER_NAME","features":[76]},{"name":"JOB_NOTIFY_TYPE","features":[76]},{"name":"JOB_POSITION_UNSPECIFIED","features":[76]},{"name":"JOB_STATUS_BLOCKED_DEVQ","features":[76]},{"name":"JOB_STATUS_COMPLETE","features":[76]},{"name":"JOB_STATUS_DELETED","features":[76]},{"name":"JOB_STATUS_DELETING","features":[76]},{"name":"JOB_STATUS_ERROR","features":[76]},{"name":"JOB_STATUS_OFFLINE","features":[76]},{"name":"JOB_STATUS_PAPEROUT","features":[76]},{"name":"JOB_STATUS_PAUSED","features":[76]},{"name":"JOB_STATUS_PRINTED","features":[76]},{"name":"JOB_STATUS_PRINTING","features":[76]},{"name":"JOB_STATUS_RENDERING_LOCALLY","features":[76]},{"name":"JOB_STATUS_RESTART","features":[76]},{"name":"JOB_STATUS_RETAINED","features":[76]},{"name":"JOB_STATUS_SPOOLING","features":[76]},{"name":"JOB_STATUS_USER_INTERVENTION","features":[76]},{"name":"KERNDATA","features":[54,76]},{"name":"LOCAL_ONLY_REGISTRATION","features":[76]},{"name":"LPR","features":[76]},{"name":"MAPTABLE","features":[76]},{"name":"MAX_ADDRESS_STR_LEN","features":[76]},{"name":"MAX_CHANNEL_COUNT_EXCEEDED","features":[76]},{"name":"MAX_CPSFUNC_INDEX","features":[76]},{"name":"MAX_DEVICEDESCRIPTION_STR_LEN","features":[76]},{"name":"MAX_DLGPAGE_COUNT","features":[76]},{"name":"MAX_FORM_KEYWORD_LENGTH","features":[76]},{"name":"MAX_IPADDR_STR_LEN","features":[76]},{"name":"MAX_NETWORKNAME2_LEN","features":[76]},{"name":"MAX_NETWORKNAME_LEN","features":[76]},{"name":"MAX_NOTIFICATION_SIZE_EXCEEDED","features":[76]},{"name":"MAX_PORTNAME_LEN","features":[76]},{"name":"MAX_PRIORITY","features":[76]},{"name":"MAX_PROPSHEETUI_REASON_INDEX","features":[76]},{"name":"MAX_PSUIPAGEINSERT_INDEX","features":[76]},{"name":"MAX_QUEUENAME_LEN","features":[76]},{"name":"MAX_REGISTRATION_COUNT_EXCEEDED","features":[76]},{"name":"MAX_RES_STR_CHARS","features":[76]},{"name":"MAX_SNMP_COMMUNITY_STR_LEN","features":[76]},{"name":"MESSAGEBOX_PARAMS","features":[3,76]},{"name":"MIN_PRIORITY","features":[76]},{"name":"MONITOR","features":[49,3,76,10]},{"name":"MONITOR2","features":[49,3,76,10]},{"name":"MONITOREX","features":[49,3,76,10]},{"name":"MONITORINIT","features":[3,76,51]},{"name":"MONITORREG","features":[76]},{"name":"MONITORUI","features":[76]},{"name":"MONITOR_INFO_1A","features":[76]},{"name":"MONITOR_INFO_1W","features":[76]},{"name":"MONITOR_INFO_2A","features":[76]},{"name":"MONITOR_INFO_2W","features":[76]},{"name":"MS_PRINT_JOB_OUTPUT_FILE","features":[76]},{"name":"MTYPE_ADD","features":[76]},{"name":"MTYPE_COMPOSE","features":[76]},{"name":"MTYPE_DIRECT","features":[76]},{"name":"MTYPE_DISABLE","features":[76]},{"name":"MTYPE_DOUBLE","features":[76]},{"name":"MTYPE_DOUBLEBYTECHAR_MASK","features":[76]},{"name":"MTYPE_FORMAT_MASK","features":[76]},{"name":"MTYPE_PAIRED","features":[76]},{"name":"MTYPE_PREDEFIN_MASK","features":[76]},{"name":"MTYPE_REPLACE","features":[76]},{"name":"MTYPE_SINGLE","features":[76]},{"name":"MV_GRAPHICS","features":[76]},{"name":"MV_PHYSICAL","features":[76]},{"name":"MV_RELATIVE","features":[76]},{"name":"MV_SENDXMOVECMD","features":[76]},{"name":"MV_SENDYMOVECMD","features":[76]},{"name":"MV_UPDATE","features":[76]},{"name":"MXDCOP_GET_FILENAME","features":[76]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC","features":[76]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC_SEQ","features":[76]},{"name":"MXDCOP_PRINTTICKET_FIXED_PAGE","features":[76]},{"name":"MXDCOP_SET_S0PAGE","features":[76]},{"name":"MXDCOP_SET_S0PAGE_RESOURCE","features":[76]},{"name":"MXDCOP_SET_XPSPASSTHRU_MODE","features":[76]},{"name":"MXDC_ESCAPE","features":[76]},{"name":"MXDC_ESCAPE_HEADER_T","features":[76]},{"name":"MXDC_GET_FILENAME_DATA_T","features":[76]},{"name":"MXDC_IMAGETYPE_JPEGHIGH_COMPRESSION","features":[76]},{"name":"MXDC_IMAGETYPE_JPEGLOW_COMPRESSION","features":[76]},{"name":"MXDC_IMAGETYPE_JPEGMEDIUM_COMPRESSION","features":[76]},{"name":"MXDC_IMAGETYPE_PNG","features":[76]},{"name":"MXDC_IMAGE_TYPE_ENUMS","features":[76]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_270_DEGREES","features":[76]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_90_DEGREES","features":[76]},{"name":"MXDC_LANDSCAPE_ROTATE_NONE","features":[76]},{"name":"MXDC_LANDSCAPE_ROTATION_ENUMS","features":[76]},{"name":"MXDC_PRINTTICKET_DATA_T","features":[76]},{"name":"MXDC_PRINTTICKET_ESCAPE_T","features":[76]},{"name":"MXDC_RESOURCE_DICTIONARY","features":[76]},{"name":"MXDC_RESOURCE_ICC_PROFILE","features":[76]},{"name":"MXDC_RESOURCE_JPEG","features":[76]},{"name":"MXDC_RESOURCE_JPEG_THUMBNAIL","features":[76]},{"name":"MXDC_RESOURCE_MAX","features":[76]},{"name":"MXDC_RESOURCE_PNG","features":[76]},{"name":"MXDC_RESOURCE_PNG_THUMBNAIL","features":[76]},{"name":"MXDC_RESOURCE_TIFF","features":[76]},{"name":"MXDC_RESOURCE_TTF","features":[76]},{"name":"MXDC_RESOURCE_WDP","features":[76]},{"name":"MXDC_S0PAGE_DATA_T","features":[76]},{"name":"MXDC_S0PAGE_PASSTHROUGH_ESCAPE_T","features":[76]},{"name":"MXDC_S0PAGE_RESOURCE_ESCAPE_T","features":[76]},{"name":"MXDC_S0_PAGE_ENUMS","features":[76]},{"name":"MXDC_XPS_S0PAGE_RESOURCE_T","features":[76]},{"name":"NORMAL_PRINT","features":[76]},{"name":"NOTIFICATION_CALLBACK_COMMANDS","features":[76]},{"name":"NOTIFICATION_COMMAND_CONTEXT_ACQUIRE","features":[76]},{"name":"NOTIFICATION_COMMAND_CONTEXT_RELEASE","features":[76]},{"name":"NOTIFICATION_COMMAND_NOTIFY","features":[76]},{"name":"NOTIFICATION_CONFIG_1","features":[3,76]},{"name":"NOTIFICATION_CONFIG_ASYNC_CHANNEL","features":[76]},{"name":"NOTIFICATION_CONFIG_CREATE_EVENT","features":[76]},{"name":"NOTIFICATION_CONFIG_EVENT_TRIGGER","features":[76]},{"name":"NOTIFICATION_CONFIG_FLAGS","features":[76]},{"name":"NOTIFICATION_CONFIG_REGISTER_CALLBACK","features":[76]},{"name":"NOTIFICATION_RELEASE","features":[76]},{"name":"NOT_REGISTERED","features":[76]},{"name":"NO_BORDER_PRINT","features":[76]},{"name":"NO_COLOR_OPTIMIZATION","features":[76]},{"name":"NO_LISTENERS","features":[76]},{"name":"NO_PRIORITY","features":[76]},{"name":"OEMCUIPCALLBACK","features":[3,14,76,52]},{"name":"OEMCUIPPARAM","features":[3,14,76,52]},{"name":"OEMCUIP_DOCPROP","features":[76]},{"name":"OEMCUIP_PRNPROP","features":[76]},{"name":"OEMDMPARAM","features":[3,14,76]},{"name":"OEMDM_CONVERT","features":[76]},{"name":"OEMDM_DEFAULT","features":[76]},{"name":"OEMDM_MERGE","features":[76]},{"name":"OEMDM_SIZE","features":[76]},{"name":"OEMFONTINSTPARAM","features":[3,76]},{"name":"OEMGDS_FREEMEM","features":[76]},{"name":"OEMGDS_JOBTIMEOUT","features":[76]},{"name":"OEMGDS_MAX","features":[76]},{"name":"OEMGDS_MAXBITMAP","features":[76]},{"name":"OEMGDS_MINOUTLINE","features":[76]},{"name":"OEMGDS_MIN_DOCSTICKY","features":[76]},{"name":"OEMGDS_MIN_PRINTERSTICKY","features":[76]},{"name":"OEMGDS_PRINTFLAGS","features":[76]},{"name":"OEMGDS_PROTOCOL","features":[76]},{"name":"OEMGDS_PSDM_CUSTOMSIZE","features":[76]},{"name":"OEMGDS_PSDM_DIALECT","features":[76]},{"name":"OEMGDS_PSDM_FLAGS","features":[76]},{"name":"OEMGDS_PSDM_NUP","features":[76]},{"name":"OEMGDS_PSDM_PSLEVEL","features":[76]},{"name":"OEMGDS_PSDM_TTDLFMT","features":[76]},{"name":"OEMGDS_UNIDM_FLAGS","features":[76]},{"name":"OEMGDS_UNIDM_GPDVER","features":[76]},{"name":"OEMGDS_WAITTIMEOUT","features":[76]},{"name":"OEMGI_GETINTERFACEVERSION","features":[76]},{"name":"OEMGI_GETPUBLISHERINFO","features":[76]},{"name":"OEMGI_GETREQUESTEDHELPERINTERFACES","features":[76]},{"name":"OEMGI_GETSIGNATURE","features":[76]},{"name":"OEMGI_GETVERSION","features":[76]},{"name":"OEMPUBLISH_DEFAULT","features":[76]},{"name":"OEMPUBLISH_IPRINTCOREHELPER","features":[76]},{"name":"OEMTTY_INFO_CODEPAGE","features":[76]},{"name":"OEMTTY_INFO_MARGINS","features":[76]},{"name":"OEMTTY_INFO_NUM_UFMS","features":[76]},{"name":"OEMTTY_INFO_UFM_IDS","features":[76]},{"name":"OEMUIOBJ","features":[3,76]},{"name":"OEMUIPROCS","features":[3,76]},{"name":"OEMUIPSPARAM","features":[3,14,76]},{"name":"OEM_DMEXTRAHEADER","features":[76]},{"name":"OEM_MODE_PUBLISHER","features":[76]},{"name":"OIEXT","features":[3,76]},{"name":"OIEXTF_ANSI_STRING","features":[76]},{"name":"OPTCF_HIDE","features":[76]},{"name":"OPTCF_MASK","features":[76]},{"name":"OPTCOMBO","features":[3,76]},{"name":"OPTIF_CALLBACK","features":[76]},{"name":"OPTIF_CHANGED","features":[76]},{"name":"OPTIF_CHANGEONCE","features":[76]},{"name":"OPTIF_COLLAPSE","features":[76]},{"name":"OPTIF_DISABLED","features":[76]},{"name":"OPTIF_ECB_CHECKED","features":[76]},{"name":"OPTIF_EXT_DISABLED","features":[76]},{"name":"OPTIF_EXT_HIDE","features":[76]},{"name":"OPTIF_EXT_IS_EXTPUSH","features":[76]},{"name":"OPTIF_HAS_POIEXT","features":[76]},{"name":"OPTIF_HIDE","features":[76]},{"name":"OPTIF_INITIAL_TVITEM","features":[76]},{"name":"OPTIF_MASK","features":[76]},{"name":"OPTIF_NO_GROUPBOX_NAME","features":[76]},{"name":"OPTIF_OVERLAY_NO_ICON","features":[76]},{"name":"OPTIF_OVERLAY_STOP_ICON","features":[76]},{"name":"OPTIF_OVERLAY_WARNING_ICON","features":[76]},{"name":"OPTIF_SEL_AS_HICON","features":[76]},{"name":"OPTITEM","features":[3,76,52]},{"name":"OPTPARAM","features":[3,76]},{"name":"OPTPF_DISABLED","features":[76]},{"name":"OPTPF_HIDE","features":[76]},{"name":"OPTPF_ICONID_AS_HICON","features":[76]},{"name":"OPTPF_MASK","features":[76]},{"name":"OPTPF_OVERLAY_NO_ICON","features":[76]},{"name":"OPTPF_OVERLAY_STOP_ICON","features":[76]},{"name":"OPTPF_OVERLAY_WARNING_ICON","features":[76]},{"name":"OPTPF_USE_HDLGTEMPLATE","features":[76]},{"name":"OPTTF_MASK","features":[76]},{"name":"OPTTF_NOSPACE_BEFORE_POSTFIX","features":[76]},{"name":"OPTTF_TYPE_DISABLED","features":[76]},{"name":"OPTTYPE","features":[3,76]},{"name":"OTS_LBCB_INCL_ITEM_NONE","features":[76]},{"name":"OTS_LBCB_NO_ICON16_IN_ITEM","features":[76]},{"name":"OTS_LBCB_PROPPAGE_CBUSELB","features":[76]},{"name":"OTS_LBCB_PROPPAGE_LBUSECB","features":[76]},{"name":"OTS_LBCB_SORT","features":[76]},{"name":"OTS_MASK","features":[76]},{"name":"OTS_PUSH_ENABLE_ALWAYS","features":[76]},{"name":"OTS_PUSH_INCL_SETUP_TITLE","features":[76]},{"name":"OTS_PUSH_NO_DOT_DOT_DOT","features":[76]},{"name":"OpenPrinter2A","features":[3,14,76]},{"name":"OpenPrinter2W","features":[3,14,76]},{"name":"OpenPrinterA","features":[3,14,76]},{"name":"OpenPrinterW","features":[3,14,76]},{"name":"PDEV_ADJUST_PAPER_MARGIN_TYPE","features":[76]},{"name":"PDEV_HOSTFONT_ENABLED_TYPE","features":[76]},{"name":"PDEV_USE_TRUE_COLOR_TYPE","features":[76]},{"name":"PFNCOMPROPSHEET","features":[3,76]},{"name":"PFNPROPSHEETUI","features":[3,76]},{"name":"PFN_DrvGetDriverSetting","features":[3,76]},{"name":"PFN_DrvUpdateUISetting","features":[3,76]},{"name":"PFN_DrvUpgradeRegistrySetting","features":[3,76]},{"name":"PFN_PRINTING_ADDPORT","features":[3,76]},{"name":"PFN_PRINTING_ADDPORT2","features":[3,76]},{"name":"PFN_PRINTING_ADDPORTEX","features":[3,76]},{"name":"PFN_PRINTING_ADDPORTEX2","features":[3,76]},{"name":"PFN_PRINTING_CLOSEPORT","features":[3,76]},{"name":"PFN_PRINTING_CLOSEPORT2","features":[3,76]},{"name":"PFN_PRINTING_CONFIGUREPORT","features":[3,76]},{"name":"PFN_PRINTING_CONFIGUREPORT2","features":[3,76]},{"name":"PFN_PRINTING_DELETEPORT","features":[3,76]},{"name":"PFN_PRINTING_DELETEPORT2","features":[3,76]},{"name":"PFN_PRINTING_ENDDOCPORT","features":[3,76]},{"name":"PFN_PRINTING_ENDDOCPORT2","features":[3,76]},{"name":"PFN_PRINTING_ENUMPORTS","features":[3,76]},{"name":"PFN_PRINTING_ENUMPORTS2","features":[3,76]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT","features":[3,76]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT2","features":[3,76]},{"name":"PFN_PRINTING_NOTIFYUNUSEDPORTS2","features":[3,76]},{"name":"PFN_PRINTING_NOTIFYUSEDPORTS2","features":[3,76]},{"name":"PFN_PRINTING_OPENPORT","features":[3,76]},{"name":"PFN_PRINTING_OPENPORT2","features":[3,76]},{"name":"PFN_PRINTING_OPENPORTEX","features":[49,3,76,10]},{"name":"PFN_PRINTING_OPENPORTEX2","features":[49,3,76,10]},{"name":"PFN_PRINTING_POWEREVENT2","features":[3,76,10]},{"name":"PFN_PRINTING_READPORT","features":[3,76]},{"name":"PFN_PRINTING_READPORT2","features":[3,76]},{"name":"PFN_PRINTING_SENDRECVBIDIDATAFROMPORT2","features":[3,76]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS","features":[49,3,76]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS2","features":[49,3,76]},{"name":"PFN_PRINTING_SHUTDOWN2","features":[3,76]},{"name":"PFN_PRINTING_STARTDOCPORT","features":[3,76]},{"name":"PFN_PRINTING_STARTDOCPORT2","features":[3,76]},{"name":"PFN_PRINTING_WRITEPORT","features":[3,76]},{"name":"PFN_PRINTING_WRITEPORT2","features":[3,76]},{"name":"PFN_PRINTING_XCVCLOSEPORT","features":[3,76]},{"name":"PFN_PRINTING_XCVCLOSEPORT2","features":[3,76]},{"name":"PFN_PRINTING_XCVDATAPORT","features":[3,76]},{"name":"PFN_PRINTING_XCVDATAPORT2","features":[3,76]},{"name":"PFN_PRINTING_XCVOPENPORT","features":[3,76]},{"name":"PFN_PRINTING_XCVOPENPORT2","features":[3,76]},{"name":"PORT_DATA_1","features":[76]},{"name":"PORT_DATA_2","features":[76]},{"name":"PORT_DATA_LIST_1","features":[76]},{"name":"PORT_INFO_1A","features":[76]},{"name":"PORT_INFO_1W","features":[76]},{"name":"PORT_INFO_2A","features":[76]},{"name":"PORT_INFO_2W","features":[76]},{"name":"PORT_INFO_3A","features":[76]},{"name":"PORT_INFO_3W","features":[76]},{"name":"PORT_STATUS_DOOR_OPEN","features":[76]},{"name":"PORT_STATUS_NO_TONER","features":[76]},{"name":"PORT_STATUS_OFFLINE","features":[76]},{"name":"PORT_STATUS_OUTPUT_BIN_FULL","features":[76]},{"name":"PORT_STATUS_OUT_OF_MEMORY","features":[76]},{"name":"PORT_STATUS_PAPER_JAM","features":[76]},{"name":"PORT_STATUS_PAPER_OUT","features":[76]},{"name":"PORT_STATUS_PAPER_PROBLEM","features":[76]},{"name":"PORT_STATUS_POWER_SAVE","features":[76]},{"name":"PORT_STATUS_TONER_LOW","features":[76]},{"name":"PORT_STATUS_TYPE_ERROR","features":[76]},{"name":"PORT_STATUS_TYPE_INFO","features":[76]},{"name":"PORT_STATUS_TYPE_WARNING","features":[76]},{"name":"PORT_STATUS_USER_INTERVENTION","features":[76]},{"name":"PORT_STATUS_WARMING_UP","features":[76]},{"name":"PORT_TYPE_NET_ATTACHED","features":[76]},{"name":"PORT_TYPE_READ","features":[76]},{"name":"PORT_TYPE_REDIRECTED","features":[76]},{"name":"PORT_TYPE_WRITE","features":[76]},{"name":"PPCAPS_BOOKLET_EDGE","features":[76]},{"name":"PPCAPS_BORDER_PRINT","features":[76]},{"name":"PPCAPS_REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[76]},{"name":"PPCAPS_RIGHT_THEN_DOWN","features":[76]},{"name":"PPCAPS_SQUARE_SCALING","features":[76]},{"name":"PRINTER_ACCESS_ADMINISTER","features":[76]},{"name":"PRINTER_ACCESS_MANAGE_LIMITED","features":[76]},{"name":"PRINTER_ACCESS_RIGHTS","features":[76]},{"name":"PRINTER_ACCESS_USE","features":[76]},{"name":"PRINTER_ALL_ACCESS","features":[76]},{"name":"PRINTER_ATTRIBUTE_DEFAULT","features":[76]},{"name":"PRINTER_ATTRIBUTE_DIRECT","features":[76]},{"name":"PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST","features":[76]},{"name":"PRINTER_ATTRIBUTE_ENABLE_BIDI","features":[76]},{"name":"PRINTER_ATTRIBUTE_ENABLE_DEVQ","features":[76]},{"name":"PRINTER_ATTRIBUTE_ENTERPRISE_CLOUD","features":[76]},{"name":"PRINTER_ATTRIBUTE_FAX","features":[76]},{"name":"PRINTER_ATTRIBUTE_FRIENDLY_NAME","features":[76]},{"name":"PRINTER_ATTRIBUTE_HIDDEN","features":[76]},{"name":"PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS","features":[76]},{"name":"PRINTER_ATTRIBUTE_LOCAL","features":[76]},{"name":"PRINTER_ATTRIBUTE_MACHINE","features":[76]},{"name":"PRINTER_ATTRIBUTE_NETWORK","features":[76]},{"name":"PRINTER_ATTRIBUTE_PER_USER","features":[76]},{"name":"PRINTER_ATTRIBUTE_PUBLISHED","features":[76]},{"name":"PRINTER_ATTRIBUTE_PUSHED_MACHINE","features":[76]},{"name":"PRINTER_ATTRIBUTE_PUSHED_USER","features":[76]},{"name":"PRINTER_ATTRIBUTE_QUEUED","features":[76]},{"name":"PRINTER_ATTRIBUTE_RAW_ONLY","features":[76]},{"name":"PRINTER_ATTRIBUTE_SHARED","features":[76]},{"name":"PRINTER_ATTRIBUTE_TS","features":[76]},{"name":"PRINTER_ATTRIBUTE_TS_GENERIC_DRIVER","features":[76]},{"name":"PRINTER_ATTRIBUTE_WORK_OFFLINE","features":[76]},{"name":"PRINTER_CHANGE_ADD_FORM","features":[76]},{"name":"PRINTER_CHANGE_ADD_JOB","features":[76]},{"name":"PRINTER_CHANGE_ADD_PORT","features":[76]},{"name":"PRINTER_CHANGE_ADD_PRINTER","features":[76]},{"name":"PRINTER_CHANGE_ADD_PRINTER_DRIVER","features":[76]},{"name":"PRINTER_CHANGE_ADD_PRINT_PROCESSOR","features":[76]},{"name":"PRINTER_CHANGE_ALL","features":[76]},{"name":"PRINTER_CHANGE_CONFIGURE_PORT","features":[76]},{"name":"PRINTER_CHANGE_DELETE_FORM","features":[76]},{"name":"PRINTER_CHANGE_DELETE_JOB","features":[76]},{"name":"PRINTER_CHANGE_DELETE_PORT","features":[76]},{"name":"PRINTER_CHANGE_DELETE_PRINTER","features":[76]},{"name":"PRINTER_CHANGE_DELETE_PRINTER_DRIVER","features":[76]},{"name":"PRINTER_CHANGE_DELETE_PRINT_PROCESSOR","features":[76]},{"name":"PRINTER_CHANGE_FAILED_CONNECTION_PRINTER","features":[76]},{"name":"PRINTER_CHANGE_FORM","features":[76]},{"name":"PRINTER_CHANGE_JOB","features":[76]},{"name":"PRINTER_CHANGE_PORT","features":[76]},{"name":"PRINTER_CHANGE_PRINTER","features":[76]},{"name":"PRINTER_CHANGE_PRINTER_DRIVER","features":[76]},{"name":"PRINTER_CHANGE_PRINT_PROCESSOR","features":[76]},{"name":"PRINTER_CHANGE_SERVER","features":[76]},{"name":"PRINTER_CHANGE_SET_FORM","features":[76]},{"name":"PRINTER_CHANGE_SET_JOB","features":[76]},{"name":"PRINTER_CHANGE_SET_PRINTER","features":[76]},{"name":"PRINTER_CHANGE_SET_PRINTER_DRIVER","features":[76]},{"name":"PRINTER_CHANGE_TIMEOUT","features":[76]},{"name":"PRINTER_CHANGE_WRITE_JOB","features":[76]},{"name":"PRINTER_CONNECTION_INFO_1A","features":[76]},{"name":"PRINTER_CONNECTION_INFO_1W","features":[76]},{"name":"PRINTER_CONNECTION_MISMATCH","features":[76]},{"name":"PRINTER_CONNECTION_NO_UI","features":[76]},{"name":"PRINTER_CONTROL_PAUSE","features":[76]},{"name":"PRINTER_CONTROL_PURGE","features":[76]},{"name":"PRINTER_CONTROL_RESUME","features":[76]},{"name":"PRINTER_CONTROL_SET_STATUS","features":[76]},{"name":"PRINTER_DEFAULTSA","features":[3,14,76]},{"name":"PRINTER_DEFAULTSW","features":[3,14,76]},{"name":"PRINTER_DELETE","features":[76]},{"name":"PRINTER_DRIVER_CATEGORY_3D","features":[76]},{"name":"PRINTER_DRIVER_CATEGORY_CLOUD","features":[76]},{"name":"PRINTER_DRIVER_CATEGORY_FAX","features":[76]},{"name":"PRINTER_DRIVER_CATEGORY_FILE","features":[76]},{"name":"PRINTER_DRIVER_CATEGORY_SERVICE","features":[76]},{"name":"PRINTER_DRIVER_CATEGORY_VIRTUAL","features":[76]},{"name":"PRINTER_DRIVER_CLASS","features":[76]},{"name":"PRINTER_DRIVER_DERIVED","features":[76]},{"name":"PRINTER_DRIVER_NOT_SHAREABLE","features":[76]},{"name":"PRINTER_DRIVER_PACKAGE_AWARE","features":[76]},{"name":"PRINTER_DRIVER_SANDBOX_DISABLED","features":[76]},{"name":"PRINTER_DRIVER_SANDBOX_ENABLED","features":[76]},{"name":"PRINTER_DRIVER_SOFT_RESET_REQUIRED","features":[76]},{"name":"PRINTER_DRIVER_XPS","features":[76]},{"name":"PRINTER_ENUM_CATEGORY_3D","features":[76]},{"name":"PRINTER_ENUM_CATEGORY_ALL","features":[76]},{"name":"PRINTER_ENUM_CONNECTIONS","features":[76]},{"name":"PRINTER_ENUM_CONTAINER","features":[76]},{"name":"PRINTER_ENUM_DEFAULT","features":[76]},{"name":"PRINTER_ENUM_EXPAND","features":[76]},{"name":"PRINTER_ENUM_FAVORITE","features":[76]},{"name":"PRINTER_ENUM_HIDE","features":[76]},{"name":"PRINTER_ENUM_ICON1","features":[76]},{"name":"PRINTER_ENUM_ICON2","features":[76]},{"name":"PRINTER_ENUM_ICON3","features":[76]},{"name":"PRINTER_ENUM_ICON4","features":[76]},{"name":"PRINTER_ENUM_ICON5","features":[76]},{"name":"PRINTER_ENUM_ICON6","features":[76]},{"name":"PRINTER_ENUM_ICON7","features":[76]},{"name":"PRINTER_ENUM_ICON8","features":[76]},{"name":"PRINTER_ENUM_ICONMASK","features":[76]},{"name":"PRINTER_ENUM_LOCAL","features":[76]},{"name":"PRINTER_ENUM_NAME","features":[76]},{"name":"PRINTER_ENUM_NETWORK","features":[76]},{"name":"PRINTER_ENUM_REMOTE","features":[76]},{"name":"PRINTER_ENUM_SHARED","features":[76]},{"name":"PRINTER_ENUM_VALUESA","features":[76]},{"name":"PRINTER_ENUM_VALUESW","features":[76]},{"name":"PRINTER_ERROR_INFORMATION","features":[76]},{"name":"PRINTER_ERROR_JAM","features":[76]},{"name":"PRINTER_ERROR_OUTOFPAPER","features":[76]},{"name":"PRINTER_ERROR_OUTOFTONER","features":[76]},{"name":"PRINTER_ERROR_SEVERE","features":[76]},{"name":"PRINTER_ERROR_WARNING","features":[76]},{"name":"PRINTER_EVENT_ADD_CONNECTION","features":[76]},{"name":"PRINTER_EVENT_ADD_CONNECTION_NO_UI","features":[76]},{"name":"PRINTER_EVENT_ATTRIBUTES_CHANGED","features":[76]},{"name":"PRINTER_EVENT_ATTRIBUTES_INFO","features":[76]},{"name":"PRINTER_EVENT_CACHE_DELETE","features":[76]},{"name":"PRINTER_EVENT_CACHE_REFRESH","features":[76]},{"name":"PRINTER_EVENT_CONFIGURATION_CHANGE","features":[76]},{"name":"PRINTER_EVENT_CONFIGURATION_UPDATE","features":[76]},{"name":"PRINTER_EVENT_DELETE","features":[76]},{"name":"PRINTER_EVENT_DELETE_CONNECTION","features":[76]},{"name":"PRINTER_EVENT_DELETE_CONNECTION_NO_UI","features":[76]},{"name":"PRINTER_EVENT_FLAG_NO_UI","features":[76]},{"name":"PRINTER_EVENT_INITIALIZE","features":[76]},{"name":"PRINTER_EXECUTE","features":[76]},{"name":"PRINTER_EXTENSION_DETAILEDREASON_PRINTER_STATUS","features":[76]},{"name":"PRINTER_EXTENSION_REASON_DRIVER_EVENT","features":[76]},{"name":"PRINTER_EXTENSION_REASON_PRINT_PREFERENCES","features":[76]},{"name":"PRINTER_INFO_1A","features":[76]},{"name":"PRINTER_INFO_1W","features":[76]},{"name":"PRINTER_INFO_2A","features":[3,14,76,6]},{"name":"PRINTER_INFO_2W","features":[3,14,76,6]},{"name":"PRINTER_INFO_3","features":[76,6]},{"name":"PRINTER_INFO_4A","features":[76]},{"name":"PRINTER_INFO_4W","features":[76]},{"name":"PRINTER_INFO_5A","features":[76]},{"name":"PRINTER_INFO_5W","features":[76]},{"name":"PRINTER_INFO_6","features":[76]},{"name":"PRINTER_INFO_7A","features":[76]},{"name":"PRINTER_INFO_7W","features":[76]},{"name":"PRINTER_INFO_8A","features":[3,14,76]},{"name":"PRINTER_INFO_8W","features":[3,14,76]},{"name":"PRINTER_INFO_9A","features":[3,14,76]},{"name":"PRINTER_INFO_9W","features":[3,14,76]},{"name":"PRINTER_NOTIFY_CATEGORY_3D","features":[76]},{"name":"PRINTER_NOTIFY_CATEGORY_ALL","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_ATTRIBUTES","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_AVERAGE_PPM","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_BRANCH_OFFICE_PRINTING","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_BYTES_PRINTED","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_CJOBS","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_COMMENT","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_DATATYPE","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_DEVMODE","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_DRIVER_NAME","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_FRIENDLY_NAME","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_LOCATION","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_OBJECT_GUID","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_PAGES_PRINTED","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_PARAMETERS","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_PORT_NAME","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_PRINTER_NAME","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_PRIORITY","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_SEPFILE","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_SERVER_NAME","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_SHARE_NAME","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_START_TIME","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_STATUS","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_STATUS_STRING","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_BYTES","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_PAGES","features":[76]},{"name":"PRINTER_NOTIFY_FIELD_UNTIL_TIME","features":[76]},{"name":"PRINTER_NOTIFY_INFO","features":[76]},{"name":"PRINTER_NOTIFY_INFO_DATA","features":[76]},{"name":"PRINTER_NOTIFY_INFO_DATA_COMPACT","features":[76]},{"name":"PRINTER_NOTIFY_INFO_DISCARDED","features":[76]},{"name":"PRINTER_NOTIFY_INIT","features":[76]},{"name":"PRINTER_NOTIFY_OPTIONS","features":[76]},{"name":"PRINTER_NOTIFY_OPTIONS_REFRESH","features":[76]},{"name":"PRINTER_NOTIFY_OPTIONS_TYPE","features":[76]},{"name":"PRINTER_NOTIFY_STATUS_ENDPOINT","features":[76]},{"name":"PRINTER_NOTIFY_STATUS_INFO","features":[76]},{"name":"PRINTER_NOTIFY_STATUS_POLL","features":[76]},{"name":"PRINTER_NOTIFY_TYPE","features":[76]},{"name":"PRINTER_OEMINTF_VERSION","features":[76]},{"name":"PRINTER_OPTIONSA","features":[76]},{"name":"PRINTER_OPTIONSW","features":[76]},{"name":"PRINTER_OPTION_CACHE","features":[76]},{"name":"PRINTER_OPTION_CLIENT_CHANGE","features":[76]},{"name":"PRINTER_OPTION_FLAGS","features":[76]},{"name":"PRINTER_OPTION_NO_CACHE","features":[76]},{"name":"PRINTER_OPTION_NO_CLIENT_DATA","features":[76]},{"name":"PRINTER_READ","features":[76]},{"name":"PRINTER_READ_CONTROL","features":[76]},{"name":"PRINTER_STANDARD_RIGHTS_EXECUTE","features":[76]},{"name":"PRINTER_STANDARD_RIGHTS_READ","features":[76]},{"name":"PRINTER_STANDARD_RIGHTS_REQUIRED","features":[76]},{"name":"PRINTER_STANDARD_RIGHTS_WRITE","features":[76]},{"name":"PRINTER_STATUS_BUSY","features":[76]},{"name":"PRINTER_STATUS_DOOR_OPEN","features":[76]},{"name":"PRINTER_STATUS_DRIVER_UPDATE_NEEDED","features":[76]},{"name":"PRINTER_STATUS_ERROR","features":[76]},{"name":"PRINTER_STATUS_INITIALIZING","features":[76]},{"name":"PRINTER_STATUS_IO_ACTIVE","features":[76]},{"name":"PRINTER_STATUS_MANUAL_FEED","features":[76]},{"name":"PRINTER_STATUS_NOT_AVAILABLE","features":[76]},{"name":"PRINTER_STATUS_NO_TONER","features":[76]},{"name":"PRINTER_STATUS_OFFLINE","features":[76]},{"name":"PRINTER_STATUS_OUTPUT_BIN_FULL","features":[76]},{"name":"PRINTER_STATUS_OUT_OF_MEMORY","features":[76]},{"name":"PRINTER_STATUS_PAGE_PUNT","features":[76]},{"name":"PRINTER_STATUS_PAPER_JAM","features":[76]},{"name":"PRINTER_STATUS_PAPER_OUT","features":[76]},{"name":"PRINTER_STATUS_PAPER_PROBLEM","features":[76]},{"name":"PRINTER_STATUS_PAUSED","features":[76]},{"name":"PRINTER_STATUS_PENDING_DELETION","features":[76]},{"name":"PRINTER_STATUS_POWER_SAVE","features":[76]},{"name":"PRINTER_STATUS_PRINTING","features":[76]},{"name":"PRINTER_STATUS_PROCESSING","features":[76]},{"name":"PRINTER_STATUS_SERVER_OFFLINE","features":[76]},{"name":"PRINTER_STATUS_SERVER_UNKNOWN","features":[76]},{"name":"PRINTER_STATUS_TONER_LOW","features":[76]},{"name":"PRINTER_STATUS_USER_INTERVENTION","features":[76]},{"name":"PRINTER_STATUS_WAITING","features":[76]},{"name":"PRINTER_STATUS_WARMING_UP","features":[76]},{"name":"PRINTER_SYNCHRONIZE","features":[76]},{"name":"PRINTER_WRITE","features":[76]},{"name":"PRINTER_WRITE_DAC","features":[76]},{"name":"PRINTER_WRITE_OWNER","features":[76]},{"name":"PRINTIFI32","features":[3,14,76]},{"name":"PRINTPROCESSOROPENDATA","features":[3,14,76]},{"name":"PRINTPROCESSOR_CAPS_1","features":[76]},{"name":"PRINTPROCESSOR_CAPS_2","features":[76]},{"name":"PRINTPROCESSOR_INFO_1A","features":[76]},{"name":"PRINTPROCESSOR_INFO_1W","features":[76]},{"name":"PRINTPROVIDOR","features":[76]},{"name":"PRINT_APP_BIDI_NOTIFY_CHANNEL","features":[76]},{"name":"PRINT_EXECUTION_CONTEXT","features":[76]},{"name":"PRINT_EXECUTION_CONTEXT_APPLICATION","features":[76]},{"name":"PRINT_EXECUTION_CONTEXT_FILTER_PIPELINE","features":[76]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_ISOLATION_HOST","features":[76]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_SERVICE","features":[76]},{"name":"PRINT_EXECUTION_CONTEXT_WOW64","features":[76]},{"name":"PRINT_EXECUTION_DATA","features":[76]},{"name":"PRINT_FEATURE_OPTION","features":[76]},{"name":"PRINT_PORT_MONITOR_NOTIFY_CHANNEL","features":[76]},{"name":"PROPSHEETUI_GETICON_INFO","features":[76,52]},{"name":"PROPSHEETUI_INFO","features":[3,76]},{"name":"PROPSHEETUI_INFO_HEADER","features":[3,76,52]},{"name":"PROPSHEETUI_INFO_VERSION","features":[76]},{"name":"PROPSHEETUI_REASON_BEFORE_INIT","features":[76]},{"name":"PROPSHEETUI_REASON_DESTROY","features":[76]},{"name":"PROPSHEETUI_REASON_GET_ICON","features":[76]},{"name":"PROPSHEETUI_REASON_GET_INFO_HEADER","features":[76]},{"name":"PROPSHEETUI_REASON_INIT","features":[76]},{"name":"PROPSHEETUI_REASON_SET_RESULT","features":[76]},{"name":"PROTOCOL_LPR_TYPE","features":[76]},{"name":"PROTOCOL_RAWTCP_TYPE","features":[76]},{"name":"PROTOCOL_UNKNOWN_TYPE","features":[76]},{"name":"PROVIDOR_INFO_1A","features":[76]},{"name":"PROVIDOR_INFO_1W","features":[76]},{"name":"PROVIDOR_INFO_2A","features":[76]},{"name":"PROVIDOR_INFO_2W","features":[76]},{"name":"PSCRIPT5_PRIVATE_DEVMODE","features":[76]},{"name":"PSPINFO","features":[3,76]},{"name":"PSUIHDRF_DEFTITLE","features":[76]},{"name":"PSUIHDRF_EXACT_PTITLE","features":[76]},{"name":"PSUIHDRF_NOAPPLYNOW","features":[76]},{"name":"PSUIHDRF_OBSOLETE","features":[76]},{"name":"PSUIHDRF_PROPTITLE","features":[76]},{"name":"PSUIHDRF_USEHICON","features":[76]},{"name":"PSUIINFO_UNICODE","features":[76]},{"name":"PSUIPAGEINSERT_DLL","features":[76]},{"name":"PSUIPAGEINSERT_GROUP_PARENT","features":[76]},{"name":"PSUIPAGEINSERT_HPROPSHEETPAGE","features":[76]},{"name":"PSUIPAGEINSERT_PCOMPROPSHEETUI","features":[76]},{"name":"PSUIPAGEINSERT_PFNPROPSHEETUI","features":[76]},{"name":"PSUIPAGEINSERT_PROPSHEETPAGE","features":[76]},{"name":"PTSHIM_DEFAULT","features":[76]},{"name":"PTSHIM_NOSNAPSHOT","features":[76]},{"name":"PUBLISHERINFO","features":[76]},{"name":"PUSHBUTTON_TYPE_CALLBACK","features":[76]},{"name":"PUSHBUTTON_TYPE_DLGPROC","features":[76]},{"name":"PUSHBUTTON_TYPE_HTCLRADJ","features":[76]},{"name":"PUSHBUTTON_TYPE_HTSETUP","features":[76]},{"name":"PageCountType","features":[76]},{"name":"PartialReplyPrinterChangeNotification","features":[3,76]},{"name":"PlayGdiScriptOnPrinterIC","features":[3,76]},{"name":"PrintAsyncNotifyConversationStyle","features":[76]},{"name":"PrintAsyncNotifyError","features":[76]},{"name":"PrintAsyncNotifyUserFilter","features":[76]},{"name":"PrintJobStatus","features":[76]},{"name":"PrintJobStatus_BlockedDeviceQueue","features":[76]},{"name":"PrintJobStatus_Complete","features":[76]},{"name":"PrintJobStatus_Deleted","features":[76]},{"name":"PrintJobStatus_Deleting","features":[76]},{"name":"PrintJobStatus_Error","features":[76]},{"name":"PrintJobStatus_Offline","features":[76]},{"name":"PrintJobStatus_PaperOut","features":[76]},{"name":"PrintJobStatus_Paused","features":[76]},{"name":"PrintJobStatus_Printed","features":[76]},{"name":"PrintJobStatus_Printing","features":[76]},{"name":"PrintJobStatus_Restarted","features":[76]},{"name":"PrintJobStatus_Retained","features":[76]},{"name":"PrintJobStatus_Spooling","features":[76]},{"name":"PrintJobStatus_UserIntervention","features":[76]},{"name":"PrintNamedProperty","features":[76]},{"name":"PrintPropertiesCollection","features":[76]},{"name":"PrintPropertyValue","features":[76]},{"name":"PrintSchemaAsyncOperation","features":[76]},{"name":"PrintSchemaConstrainedSetting","features":[76]},{"name":"PrintSchemaConstrainedSetting_Admin","features":[76]},{"name":"PrintSchemaConstrainedSetting_Device","features":[76]},{"name":"PrintSchemaConstrainedSetting_None","features":[76]},{"name":"PrintSchemaConstrainedSetting_PrintTicket","features":[76]},{"name":"PrintSchemaParameterDataType","features":[76]},{"name":"PrintSchemaParameterDataType_Integer","features":[76]},{"name":"PrintSchemaParameterDataType_NumericString","features":[76]},{"name":"PrintSchemaParameterDataType_String","features":[76]},{"name":"PrintSchemaSelectionType","features":[76]},{"name":"PrintSchemaSelectionType_PickMany","features":[76]},{"name":"PrintSchemaSelectionType_PickOne","features":[76]},{"name":"PrinterExtensionManager","features":[76]},{"name":"PrinterMessageBoxA","features":[3,76]},{"name":"PrinterMessageBoxW","features":[3,76]},{"name":"PrinterProperties","features":[3,76]},{"name":"PrinterQueue","features":[76]},{"name":"PrinterQueueView","features":[76]},{"name":"ProvidorFindClosePrinterChangeNotification","features":[3,76]},{"name":"ProvidorFindFirstPrinterChangeNotification","features":[3,76]},{"name":"QCP_DEVICEPROFILE","features":[76]},{"name":"QCP_PROFILEDISK","features":[76]},{"name":"QCP_PROFILEMEMORY","features":[76]},{"name":"QCP_SOURCEPROFILE","features":[76]},{"name":"RAWTCP","features":[76]},{"name":"REMOTE_ONLY_REGISTRATION","features":[76]},{"name":"REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[76]},{"name":"REVERSE_PRINT","features":[76]},{"name":"RIGHT_THEN_DOWN","features":[76]},{"name":"ROUTER_NOTIFY_CALLBACK","features":[3,76]},{"name":"ROUTER_STOP_ROUTING","features":[76]},{"name":"ROUTER_SUCCESS","features":[76]},{"name":"ROUTER_UNKNOWN","features":[76]},{"name":"ReadPrinter","features":[3,76]},{"name":"RegisterForPrintAsyncNotifications","features":[3,76]},{"name":"RemovePrintDeviceObject","features":[3,76]},{"name":"ReplyPrinterChangeNotification","features":[3,76]},{"name":"ReplyPrinterChangeNotificationEx","features":[3,76]},{"name":"ReportJobProcessingProgress","features":[3,76]},{"name":"ResetPrinterA","features":[3,14,76]},{"name":"ResetPrinterW","features":[3,14,76]},{"name":"RevertToPrinterSelf","features":[3,76]},{"name":"RouterAllocBidiMem","features":[76]},{"name":"RouterAllocBidiResponseContainer","features":[3,76]},{"name":"RouterAllocPrinterNotifyInfo","features":[76]},{"name":"RouterFreeBidiMem","features":[76]},{"name":"RouterFreeBidiResponseContainer","features":[3,76]},{"name":"RouterFreePrinterNotifyInfo","features":[3,76]},{"name":"SERVER_ACCESS_ADMINISTER","features":[76]},{"name":"SERVER_ACCESS_ENUMERATE","features":[76]},{"name":"SERVER_ALL_ACCESS","features":[76]},{"name":"SERVER_EXECUTE","features":[76]},{"name":"SERVER_NOTIFY_FIELD_PRINT_DRIVER_ISOLATION_GROUP","features":[76]},{"name":"SERVER_NOTIFY_TYPE","features":[76]},{"name":"SERVER_READ","features":[76]},{"name":"SERVER_WRITE","features":[76]},{"name":"SETOPTIONS_FLAG_KEEP_CONFLICT","features":[76]},{"name":"SETOPTIONS_FLAG_RESOLVE_CONFLICT","features":[76]},{"name":"SETOPTIONS_RESULT_CONFLICT_REMAINED","features":[76]},{"name":"SETOPTIONS_RESULT_CONFLICT_RESOLVED","features":[76]},{"name":"SETOPTIONS_RESULT_NO_CONFLICT","features":[76]},{"name":"SETRESULT_INFO","features":[3,76]},{"name":"SHIMOPTS","features":[76]},{"name":"SHOWUIPARAMS","features":[3,76]},{"name":"SIMULATE_CAPS_1","features":[76]},{"name":"SPLCLIENT_INFO_1","features":[76]},{"name":"SPLCLIENT_INFO_2_W2K","features":[76]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[76]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[76]},{"name":"SPLCLIENT_INFO_3_VISTA","features":[76]},{"name":"SPLCLIENT_INFO_INTERNAL","features":[76]},{"name":"SPLCLIENT_INFO_INTERNAL_LEVEL","features":[76]},{"name":"SPLDS_ASSET_NUMBER","features":[76]},{"name":"SPLDS_BYTES_PER_MINUTE","features":[76]},{"name":"SPLDS_DESCRIPTION","features":[76]},{"name":"SPLDS_DRIVER_KEY","features":[76]},{"name":"SPLDS_DRIVER_NAME","features":[76]},{"name":"SPLDS_DRIVER_VERSION","features":[76]},{"name":"SPLDS_FLAGS","features":[76]},{"name":"SPLDS_LOCATION","features":[76]},{"name":"SPLDS_PORT_NAME","features":[76]},{"name":"SPLDS_PRINTER_CLASS","features":[76]},{"name":"SPLDS_PRINTER_LOCATIONS","features":[76]},{"name":"SPLDS_PRINTER_MODEL","features":[76]},{"name":"SPLDS_PRINTER_NAME","features":[76]},{"name":"SPLDS_PRINTER_NAME_ALIASES","features":[76]},{"name":"SPLDS_PRINT_ATTRIBUTES","features":[76]},{"name":"SPLDS_PRINT_BIN_NAMES","features":[76]},{"name":"SPLDS_PRINT_COLLATE","features":[76]},{"name":"SPLDS_PRINT_COLOR","features":[76]},{"name":"SPLDS_PRINT_DUPLEX_SUPPORTED","features":[76]},{"name":"SPLDS_PRINT_END_TIME","features":[76]},{"name":"SPLDS_PRINT_KEEP_PRINTED_JOBS","features":[76]},{"name":"SPLDS_PRINT_LANGUAGE","features":[76]},{"name":"SPLDS_PRINT_MAC_ADDRESS","features":[76]},{"name":"SPLDS_PRINT_MAX_RESOLUTION_SUPPORTED","features":[76]},{"name":"SPLDS_PRINT_MAX_X_EXTENT","features":[76]},{"name":"SPLDS_PRINT_MAX_Y_EXTENT","features":[76]},{"name":"SPLDS_PRINT_MEDIA_READY","features":[76]},{"name":"SPLDS_PRINT_MEDIA_SUPPORTED","features":[76]},{"name":"SPLDS_PRINT_MEMORY","features":[76]},{"name":"SPLDS_PRINT_MIN_X_EXTENT","features":[76]},{"name":"SPLDS_PRINT_MIN_Y_EXTENT","features":[76]},{"name":"SPLDS_PRINT_NETWORK_ADDRESS","features":[76]},{"name":"SPLDS_PRINT_NOTIFY","features":[76]},{"name":"SPLDS_PRINT_NUMBER_UP","features":[76]},{"name":"SPLDS_PRINT_ORIENTATIONS_SUPPORTED","features":[76]},{"name":"SPLDS_PRINT_OWNER","features":[76]},{"name":"SPLDS_PRINT_PAGES_PER_MINUTE","features":[76]},{"name":"SPLDS_PRINT_RATE","features":[76]},{"name":"SPLDS_PRINT_RATE_UNIT","features":[76]},{"name":"SPLDS_PRINT_SEPARATOR_FILE","features":[76]},{"name":"SPLDS_PRINT_SHARE_NAME","features":[76]},{"name":"SPLDS_PRINT_SPOOLING","features":[76]},{"name":"SPLDS_PRINT_STAPLING_SUPPORTED","features":[76]},{"name":"SPLDS_PRINT_START_TIME","features":[76]},{"name":"SPLDS_PRINT_STATUS","features":[76]},{"name":"SPLDS_PRIORITY","features":[76]},{"name":"SPLDS_SERVER_NAME","features":[76]},{"name":"SPLDS_SHORT_SERVER_NAME","features":[76]},{"name":"SPLDS_SPOOLER_KEY","features":[76]},{"name":"SPLDS_UNC_NAME","features":[76]},{"name":"SPLDS_URL","features":[76]},{"name":"SPLDS_USER_KEY","features":[76]},{"name":"SPLDS_VERSION_NUMBER","features":[76]},{"name":"SPLPRINTER_USER_MODE_PRINTER_DRIVER","features":[76]},{"name":"SPLREG_ALLOW_USER_MANAGEFORMS","features":[76]},{"name":"SPLREG_ARCHITECTURE","features":[76]},{"name":"SPLREG_BEEP_ENABLED","features":[76]},{"name":"SPLREG_DEFAULT_SPOOL_DIRECTORY","features":[76]},{"name":"SPLREG_DNS_MACHINE_NAME","features":[76]},{"name":"SPLREG_DS_PRESENT","features":[76]},{"name":"SPLREG_DS_PRESENT_FOR_USER","features":[76]},{"name":"SPLREG_EVENT_LOG","features":[76]},{"name":"SPLREG_MAJOR_VERSION","features":[76]},{"name":"SPLREG_MINOR_VERSION","features":[76]},{"name":"SPLREG_NET_POPUP","features":[76]},{"name":"SPLREG_NET_POPUP_TO_COMPUTER","features":[76]},{"name":"SPLREG_OS_VERSION","features":[76]},{"name":"SPLREG_OS_VERSIONEX","features":[76]},{"name":"SPLREG_PORT_THREAD_PRIORITY","features":[76]},{"name":"SPLREG_PORT_THREAD_PRIORITY_DEFAULT","features":[76]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_EXECUTION_POLICY","features":[76]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_GROUPS","features":[76]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_IDLE_TIMEOUT","features":[76]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_MAX_OBJECTS_BEFORE_RECYCLE","features":[76]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_OVERRIDE_POLICY","features":[76]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_TIME_BEFORE_RECYCLE","features":[76]},{"name":"SPLREG_PRINT_QUEUE_V4_DRIVER_DIRECTORY","features":[76]},{"name":"SPLREG_REMOTE_FAX","features":[76]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ENABLED","features":[76]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ERROR","features":[76]},{"name":"SPLREG_RETRY_POPUP","features":[76]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY","features":[76]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY_DEFAULT","features":[76]},{"name":"SPLREG_WEBSHAREMGMT","features":[76]},{"name":"SPOOL_FILE_PERSISTENT","features":[76]},{"name":"SPOOL_FILE_TEMPORARY","features":[76]},{"name":"SR_OWNER","features":[76]},{"name":"SR_OWNER_PARENT","features":[76]},{"name":"SSP_STDPAGE1","features":[76]},{"name":"SSP_STDPAGE2","features":[76]},{"name":"SSP_TVPAGE","features":[76]},{"name":"STRING_LANGPAIR","features":[76]},{"name":"STRING_MUIDLL","features":[76]},{"name":"STRING_NONE","features":[76]},{"name":"S_CONFLICT_RESOLVED","features":[76]},{"name":"S_DEVCAP_OUTPUT_FULL_REPLACEMENT","features":[76]},{"name":"S_NO_CONFLICT","features":[76]},{"name":"ScheduleJob","features":[3,76]},{"name":"SetCPSUIUserData","features":[3,76]},{"name":"SetDefaultPrinterA","features":[3,76]},{"name":"SetDefaultPrinterW","features":[3,76]},{"name":"SetFormA","features":[3,76]},{"name":"SetFormW","features":[3,76]},{"name":"SetJobA","features":[3,76]},{"name":"SetJobNamedProperty","features":[3,76]},{"name":"SetJobW","features":[3,76]},{"name":"SetPortA","features":[3,76]},{"name":"SetPortW","features":[3,76]},{"name":"SetPrinterA","features":[3,76]},{"name":"SetPrinterDataA","features":[3,76]},{"name":"SetPrinterDataExA","features":[3,76]},{"name":"SetPrinterDataExW","features":[3,76]},{"name":"SetPrinterDataW","features":[3,76]},{"name":"SetPrinterW","features":[3,76]},{"name":"SplIsSessionZero","features":[3,76]},{"name":"SplPromptUIInUsersSession","features":[3,76]},{"name":"SpoolerCopyFileEvent","features":[3,76]},{"name":"SpoolerFindClosePrinterChangeNotification","features":[3,76]},{"name":"SpoolerFindFirstPrinterChangeNotification","features":[3,76]},{"name":"SpoolerFindNextPrinterChangeNotification","features":[3,76]},{"name":"SpoolerFreePrinterNotifyInfo","features":[76]},{"name":"SpoolerRefreshPrinterChangeNotification","features":[3,76]},{"name":"StartDocPrinterA","features":[3,76]},{"name":"StartDocPrinterW","features":[3,76]},{"name":"StartPagePrinter","features":[3,76]},{"name":"TRANSDATA","features":[76]},{"name":"TTDOWNLOAD_BITMAP","features":[76]},{"name":"TTDOWNLOAD_DONTCARE","features":[76]},{"name":"TTDOWNLOAD_GRAPHICS","features":[76]},{"name":"TTDOWNLOAD_TTOUTLINE","features":[76]},{"name":"TVOT_2STATES","features":[76]},{"name":"TVOT_3STATES","features":[76]},{"name":"TVOT_CHKBOX","features":[76]},{"name":"TVOT_COMBOBOX","features":[76]},{"name":"TVOT_EDITBOX","features":[76]},{"name":"TVOT_LISTBOX","features":[76]},{"name":"TVOT_NSTATES_EX","features":[76]},{"name":"TVOT_PUSHBUTTON","features":[76]},{"name":"TVOT_SCROLLBAR","features":[76]},{"name":"TVOT_TRACKBAR","features":[76]},{"name":"TVOT_UDARROW","features":[76]},{"name":"TYPE_GLYPHHANDLE","features":[76]},{"name":"TYPE_GLYPHID","features":[76]},{"name":"TYPE_TRANSDATA","features":[76]},{"name":"TYPE_UNICODE","features":[76]},{"name":"UFF_FILEHEADER","features":[76]},{"name":"UFF_FONTDIRECTORY","features":[76]},{"name":"UFF_VERSION_NUMBER","features":[76]},{"name":"UFM_CART","features":[76]},{"name":"UFM_SCALABLE","features":[76]},{"name":"UFM_SOFT","features":[76]},{"name":"UFOFLAG_TTDOWNLOAD_BITMAP","features":[76]},{"name":"UFOFLAG_TTDOWNLOAD_TTOUTLINE","features":[76]},{"name":"UFOFLAG_TTFONT","features":[76]},{"name":"UFOFLAG_TTOUTLINE_BOLD_SIM","features":[76]},{"name":"UFOFLAG_TTOUTLINE_ITALIC_SIM","features":[76]},{"name":"UFOFLAG_TTOUTLINE_VERTICAL","features":[76]},{"name":"UFOFLAG_TTSUBSTITUTED","features":[76]},{"name":"UFO_GETINFO_FONTOBJ","features":[76]},{"name":"UFO_GETINFO_GLYPHBITMAP","features":[76]},{"name":"UFO_GETINFO_GLYPHSTRING","features":[76]},{"name":"UFO_GETINFO_GLYPHWIDTH","features":[76]},{"name":"UFO_GETINFO_MEMORY","features":[76]},{"name":"UFO_GETINFO_STDVARIABLE","features":[76]},{"name":"UI_TYPE","features":[76]},{"name":"UNIDRVINFO","features":[76]},{"name":"UNIDRV_PRIVATE_DEVMODE","features":[76]},{"name":"UNIFM_HDR","features":[76]},{"name":"UNIFM_VERSION_1_0","features":[76]},{"name":"UNIRECTIONAL_NOTIFICATION_LOST","features":[76]},{"name":"UNI_CODEPAGEINFO","features":[76]},{"name":"UNI_GLYPHSETDATA","features":[76]},{"name":"UNI_GLYPHSETDATA_VERSION_1_0","features":[76]},{"name":"UNKNOWN_PROTOCOL","features":[76]},{"name":"UPDP_CHECK_DRIVERSTORE","features":[76]},{"name":"UPDP_SILENT_UPLOAD","features":[76]},{"name":"UPDP_UPLOAD_ALWAYS","features":[76]},{"name":"USBPRINT_IOCTL_INDEX","features":[76]},{"name":"USB_PRINTER_INTERFACE_CLASSIC","features":[76]},{"name":"USB_PRINTER_INTERFACE_DUAL","features":[76]},{"name":"USB_PRINTER_INTERFACE_IPP","features":[76]},{"name":"USERDATA","features":[76]},{"name":"UnRegisterForPrintAsyncNotifications","features":[3,76]},{"name":"UpdatePrintDeviceObject","features":[3,76]},{"name":"UploadPrinterDriverPackageA","features":[3,76]},{"name":"UploadPrinterDriverPackageW","features":[3,76]},{"name":"WIDTHRUN","features":[76]},{"name":"WIDTHTABLE","features":[76]},{"name":"WM_FI_FILENAME","features":[76]},{"name":"WaitForPrinterChange","features":[3,76]},{"name":"WritePrinter","features":[3,76]},{"name":"XPSRAS_BACKGROUND_COLOR","features":[76]},{"name":"XPSRAS_BACKGROUND_COLOR_OPAQUE","features":[76]},{"name":"XPSRAS_BACKGROUND_COLOR_TRANSPARENT","features":[76]},{"name":"XPSRAS_PIXEL_FORMAT","features":[76]},{"name":"XPSRAS_PIXEL_FORMAT_128BPP_PRGBA_FLOAT_SCRGB","features":[76]},{"name":"XPSRAS_PIXEL_FORMAT_32BPP_PBGRA_UINT_SRGB","features":[76]},{"name":"XPSRAS_PIXEL_FORMAT_64BPP_PRGBA_HALF_SCRGB","features":[76]},{"name":"XPSRAS_RENDERING_MODE","features":[76]},{"name":"XPSRAS_RENDERING_MODE_ALIASED","features":[76]},{"name":"XPSRAS_RENDERING_MODE_ANTIALIASED","features":[76]},{"name":"XPS_FP_DRIVER_PROPERTY_BAG","features":[76]},{"name":"XPS_FP_JOB_ID","features":[76]},{"name":"XPS_FP_JOB_LEVEL_PRINTTICKET","features":[76]},{"name":"XPS_FP_MERGED_DATAFILE_PATH","features":[76]},{"name":"XPS_FP_MS_CONTENT_TYPE","features":[76]},{"name":"XPS_FP_MS_CONTENT_TYPE_OPENXPS","features":[76]},{"name":"XPS_FP_MS_CONTENT_TYPE_XPS","features":[76]},{"name":"XPS_FP_OUTPUT_FILE","features":[76]},{"name":"XPS_FP_PRINTDEVICECAPABILITIES","features":[76]},{"name":"XPS_FP_PRINTER_HANDLE","features":[76]},{"name":"XPS_FP_PRINTER_NAME","features":[76]},{"name":"XPS_FP_PRINT_CLASS_FACTORY","features":[76]},{"name":"XPS_FP_PROGRESS_REPORT","features":[76]},{"name":"XPS_FP_QUEUE_PROPERTY_BAG","features":[76]},{"name":"XPS_FP_RESOURCE_DLL_PATHS","features":[76]},{"name":"XPS_FP_USER_PRINT_TICKET","features":[76]},{"name":"XPS_FP_USER_TOKEN","features":[76]},{"name":"XcvDataW","features":[3,76]},{"name":"XpsJob_DocumentSequenceAdded","features":[76]},{"name":"XpsJob_FixedDocumentAdded","features":[76]},{"name":"XpsJob_FixedPageAdded","features":[76]},{"name":"Xps_Restricted_Font_Editable","features":[76]},{"name":"Xps_Restricted_Font_Installable","features":[76]},{"name":"Xps_Restricted_Font_NoEmbedding","features":[76]},{"name":"Xps_Restricted_Font_PreviewPrint","features":[76]},{"name":"_CPSUICALLBACK","features":[3,76,52]},{"name":"_SPLCLIENT_INFO_2_V3","features":[76]},{"name":"kADT_ASCII","features":[76]},{"name":"kADT_BINARY","features":[76]},{"name":"kADT_BOOL","features":[76]},{"name":"kADT_CUSTOMSIZEPARAMS","features":[76]},{"name":"kADT_DWORD","features":[76]},{"name":"kADT_INT","features":[76]},{"name":"kADT_LONG","features":[76]},{"name":"kADT_RECT","features":[76]},{"name":"kADT_SIZE","features":[76]},{"name":"kADT_UNICODE","features":[76]},{"name":"kADT_UNKNOWN","features":[76]},{"name":"kAddingDocumentSequence","features":[76]},{"name":"kAddingFixedDocument","features":[76]},{"name":"kAddingFixedPage","features":[76]},{"name":"kAllUsers","features":[76]},{"name":"kBiDirectional","features":[76]},{"name":"kDocumentSequenceAdded","features":[76]},{"name":"kFixedDocumentAdded","features":[76]},{"name":"kFixedPageAdded","features":[76]},{"name":"kFontAdded","features":[76]},{"name":"kImageAdded","features":[76]},{"name":"kInvalidJobState","features":[76]},{"name":"kJobConsumption","features":[76]},{"name":"kJobProduction","features":[76]},{"name":"kLogJobError","features":[76]},{"name":"kLogJobPipelineError","features":[76]},{"name":"kLogJobPrinted","features":[76]},{"name":"kLogJobRendered","features":[76]},{"name":"kLogOfflineFileFull","features":[76]},{"name":"kMessageBox","features":[76]},{"name":"kPerUser","features":[76]},{"name":"kPropertyTypeBuffer","features":[76]},{"name":"kPropertyTypeByte","features":[76]},{"name":"kPropertyTypeDevMode","features":[76]},{"name":"kPropertyTypeInt32","features":[76]},{"name":"kPropertyTypeInt64","features":[76]},{"name":"kPropertyTypeNotificationOptions","features":[76]},{"name":"kPropertyTypeNotificationReply","features":[76]},{"name":"kPropertyTypeSD","features":[76]},{"name":"kPropertyTypeString","features":[76]},{"name":"kPropertyTypeTime","features":[76]},{"name":"kResourceAdded","features":[76]},{"name":"kUniDirectional","features":[76]},{"name":"kXpsDocumentCommitted","features":[76]}],"422":[{"name":"EDefaultDevmodeType","features":[78]},{"name":"EPrintTicketScope","features":[78]},{"name":"E_DELTA_PRINTTICKET_FORMAT","features":[78]},{"name":"E_PRINTCAPABILITIES_FORMAT","features":[78]},{"name":"E_PRINTDEVICECAPABILITIES_FORMAT","features":[78]},{"name":"E_PRINTTICKET_FORMAT","features":[78]},{"name":"HPTPROVIDER","features":[78]},{"name":"PRINTTICKET_ISTREAM_APIS","features":[78]},{"name":"PTCloseProvider","features":[78]},{"name":"PTConvertDevModeToPrintTicket","features":[3,14,78]},{"name":"PTConvertPrintTicketToDevMode","features":[3,14,78]},{"name":"PTGetPrintCapabilities","features":[78]},{"name":"PTGetPrintDeviceCapabilities","features":[78]},{"name":"PTGetPrintDeviceResources","features":[78]},{"name":"PTMergeAndValidatePrintTicket","features":[78]},{"name":"PTOpenProvider","features":[78]},{"name":"PTOpenProviderEx","features":[78]},{"name":"PTQuerySchemaVersionSupport","features":[78]},{"name":"PTReleaseMemory","features":[78]},{"name":"S_PT_CONFLICT_RESOLVED","features":[78]},{"name":"S_PT_NO_CONFLICT","features":[78]},{"name":"kPTDocumentScope","features":[78]},{"name":"kPTJobScope","features":[78]},{"name":"kPTPageScope","features":[78]},{"name":"kPrinterDefaultDevmode","features":[78]},{"name":"kUserDefaultDevmode","features":[78]}],"423":[{"name":"ApplyLocalManagementSyncML","features":[79]},{"name":"DEVICEREGISTRATIONTYPE_MAM","features":[79]},{"name":"DEVICEREGISTRATIONTYPE_MDM_DEVICEWIDE_WITH_AAD","features":[79]},{"name":"DEVICEREGISTRATIONTYPE_MDM_ONLY","features":[79]},{"name":"DEVICEREGISTRATIONTYPE_MDM_USERSPECIFIC_WITH_AAD","features":[79]},{"name":"DEVICE_ENROLLER_FACILITY_CODE","features":[79]},{"name":"DeviceRegistrationBasicInfo","features":[79]},{"name":"DiscoverManagementService","features":[79]},{"name":"DiscoverManagementServiceEx","features":[79]},{"name":"GetDeviceManagementConfigInfo","features":[79]},{"name":"GetDeviceRegistrationInfo","features":[79]},{"name":"GetManagementAppHyperlink","features":[79]},{"name":"IsDeviceRegisteredWithManagement","features":[3,79]},{"name":"IsManagementRegistrationAllowed","features":[3,79]},{"name":"IsMdmUxWithoutAadAllowed","features":[3,79]},{"name":"MANAGEMENT_REGISTRATION_INFO","features":[3,79]},{"name":"MANAGEMENT_SERVICE_INFO","features":[79]},{"name":"MDM_REGISTRATION_FACILITY_CODE","features":[79]},{"name":"MENROLL_E_CERTAUTH_FAILED_TO_FIND_CERT","features":[79]},{"name":"MENROLL_E_CERTPOLICY_PRIVATEKEYCREATION_FAILED","features":[79]},{"name":"MENROLL_E_CONNECTIVITY","features":[79]},{"name":"MENROLL_E_CUSTOMSERVERERROR","features":[79]},{"name":"MENROLL_E_DEVICECAPREACHED","features":[79]},{"name":"MENROLL_E_DEVICENOTSUPPORTED","features":[79]},{"name":"MENROLL_E_DEVICE_ALREADY_ENROLLED","features":[79]},{"name":"MENROLL_E_DEVICE_AUTHENTICATION_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_AUTHORIZATION_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_CERTIFICATEREQUEST_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_INTERNALSERVICE_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_INVALIDSECURITY_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_MANAGEMENT_BLOCKED","features":[79]},{"name":"MENROLL_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[79]},{"name":"MENROLL_E_DEVICE_NOT_ENROLLED","features":[79]},{"name":"MENROLL_E_DEVICE_UNKNOWN_ERROR","features":[79]},{"name":"MENROLL_E_DISCOVERY_SEC_CERT_DATE_INVALID","features":[79]},{"name":"MENROLL_E_EMPTY_MESSAGE","features":[79]},{"name":"MENROLL_E_ENROLLMENTDATAINVALID","features":[79]},{"name":"MENROLL_E_ENROLLMENT_IN_PROGRESS","features":[79]},{"name":"MENROLL_E_INMAINTENANCE","features":[79]},{"name":"MENROLL_E_INSECUREREDIRECT","features":[79]},{"name":"MENROLL_E_INVALIDSSLCERT","features":[79]},{"name":"MENROLL_E_MDM_NOT_CONFIGURED","features":[79]},{"name":"MENROLL_E_NOTELIGIBLETORENEW","features":[79]},{"name":"MENROLL_E_NOTSUPPORTED","features":[79]},{"name":"MENROLL_E_NOT_SUPPORTED","features":[79]},{"name":"MENROLL_E_PASSWORD_NEEDED","features":[79]},{"name":"MENROLL_E_PLATFORM_LICENSE_ERROR","features":[79]},{"name":"MENROLL_E_PLATFORM_UNKNOWN_ERROR","features":[79]},{"name":"MENROLL_E_PLATFORM_WRONG_STATE","features":[79]},{"name":"MENROLL_E_PROV_CSP_APPMGMT","features":[79]},{"name":"MENROLL_E_PROV_CSP_CERTSTORE","features":[79]},{"name":"MENROLL_E_PROV_CSP_DMCLIENT","features":[79]},{"name":"MENROLL_E_PROV_CSP_MISC","features":[79]},{"name":"MENROLL_E_PROV_CSP_PFW","features":[79]},{"name":"MENROLL_E_PROV_CSP_W7","features":[79]},{"name":"MENROLL_E_PROV_SSLCERTNOTFOUND","features":[79]},{"name":"MENROLL_E_PROV_UNKNOWN","features":[79]},{"name":"MENROLL_E_USERLICENSE","features":[79]},{"name":"MENROLL_E_USER_CANCELED","features":[79]},{"name":"MENROLL_E_USER_CANCELLED","features":[79]},{"name":"MENROLL_E_USER_LICENSE","features":[79]},{"name":"MENROLL_E_WAB_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_ALREADY_REGISTERED","features":[79]},{"name":"MREGISTER_E_DEVICE_AUTHENTICATION_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_AUTHORIZATION_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_INTERNALSERVICE_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_INVALIDSECURITY_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_NOT_AD_REGISTERED_ERROR","features":[79]},{"name":"MREGISTER_E_DEVICE_NOT_REGISTERED","features":[79]},{"name":"MREGISTER_E_DEVICE_UNKNOWN_ERROR","features":[79]},{"name":"MREGISTER_E_DISCOVERY_FAILED","features":[79]},{"name":"MREGISTER_E_DISCOVERY_REDIRECTED","features":[79]},{"name":"MREGISTER_E_REGISTRATION_IN_PROGRESS","features":[79]},{"name":"MaxDeviceInfoClass","features":[79]},{"name":"REGISTRATION_INFORMATION_CLASS","features":[79]},{"name":"RegisterDeviceWithLocalManagement","features":[3,79]},{"name":"RegisterDeviceWithManagement","features":[79]},{"name":"RegisterDeviceWithManagementUsingAADCredentials","features":[3,79]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials","features":[79]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials2","features":[79]},{"name":"SetDeviceManagementConfigInfo","features":[79]},{"name":"SetManagedExternally","features":[3,79]},{"name":"UnregisterDeviceWithLocalManagement","features":[79]},{"name":"UnregisterDeviceWithManagement","features":[79]}],"424":[{"name":"ED_DEVCAP_ATN_READ","features":[80]},{"name":"ED_DEVCAP_RTC_READ","features":[80]},{"name":"ED_DEVCAP_TIMECODE_READ","features":[80]},{"name":"HTASK","features":[80]},{"name":"IReferenceClock","features":[80]},{"name":"IReferenceClock2","features":[80]},{"name":"IReferenceClockTimerControl","features":[80]},{"name":"JOYERR_BASE","features":[80]},{"name":"LPDRVCALLBACK","features":[81]},{"name":"LPTIMECALLBACK","features":[80]},{"name":"MAXERRORLENGTH","features":[80]},{"name":"MAXPNAMELEN","features":[80]},{"name":"MCIERR_BASE","features":[80]},{"name":"MCI_CD_OFFSET","features":[80]},{"name":"MCI_SEQ_OFFSET","features":[80]},{"name":"MCI_STRING_OFFSET","features":[80]},{"name":"MCI_VD_OFFSET","features":[80]},{"name":"MCI_WAVE_OFFSET","features":[80]},{"name":"MIDIERR_BASE","features":[80]},{"name":"MIXERR_BASE","features":[80]},{"name":"MMSYSERR_ALLOCATED","features":[80]},{"name":"MMSYSERR_BADDB","features":[80]},{"name":"MMSYSERR_BADDEVICEID","features":[80]},{"name":"MMSYSERR_BADERRNUM","features":[80]},{"name":"MMSYSERR_BASE","features":[80]},{"name":"MMSYSERR_DELETEERROR","features":[80]},{"name":"MMSYSERR_ERROR","features":[80]},{"name":"MMSYSERR_HANDLEBUSY","features":[80]},{"name":"MMSYSERR_INVALFLAG","features":[80]},{"name":"MMSYSERR_INVALHANDLE","features":[80]},{"name":"MMSYSERR_INVALIDALIAS","features":[80]},{"name":"MMSYSERR_INVALPARAM","features":[80]},{"name":"MMSYSERR_KEYNOTFOUND","features":[80]},{"name":"MMSYSERR_LASTERROR","features":[80]},{"name":"MMSYSERR_MOREDATA","features":[80]},{"name":"MMSYSERR_NODRIVER","features":[80]},{"name":"MMSYSERR_NODRIVERCB","features":[80]},{"name":"MMSYSERR_NOERROR","features":[80]},{"name":"MMSYSERR_NOMEM","features":[80]},{"name":"MMSYSERR_NOTENABLED","features":[80]},{"name":"MMSYSERR_NOTSUPPORTED","features":[80]},{"name":"MMSYSERR_READERROR","features":[80]},{"name":"MMSYSERR_VALNOTFOUND","features":[80]},{"name":"MMSYSERR_WRITEERROR","features":[80]},{"name":"MMTIME","features":[80]},{"name":"MM_ADLIB","features":[80]},{"name":"MM_DRVM_CLOSE","features":[80]},{"name":"MM_DRVM_DATA","features":[80]},{"name":"MM_DRVM_ERROR","features":[80]},{"name":"MM_DRVM_OPEN","features":[80]},{"name":"MM_JOY1BUTTONDOWN","features":[80]},{"name":"MM_JOY1BUTTONUP","features":[80]},{"name":"MM_JOY1MOVE","features":[80]},{"name":"MM_JOY1ZMOVE","features":[80]},{"name":"MM_JOY2BUTTONDOWN","features":[80]},{"name":"MM_JOY2BUTTONUP","features":[80]},{"name":"MM_JOY2MOVE","features":[80]},{"name":"MM_JOY2ZMOVE","features":[80]},{"name":"MM_MCINOTIFY","features":[80]},{"name":"MM_MCISIGNAL","features":[80]},{"name":"MM_MICROSOFT","features":[80]},{"name":"MM_MIDI_MAPPER","features":[80]},{"name":"MM_MIM_CLOSE","features":[80]},{"name":"MM_MIM_DATA","features":[80]},{"name":"MM_MIM_ERROR","features":[80]},{"name":"MM_MIM_LONGDATA","features":[80]},{"name":"MM_MIM_LONGERROR","features":[80]},{"name":"MM_MIM_MOREDATA","features":[80]},{"name":"MM_MIM_OPEN","features":[80]},{"name":"MM_MIXM_CONTROL_CHANGE","features":[80]},{"name":"MM_MIXM_LINE_CHANGE","features":[80]},{"name":"MM_MOM_CLOSE","features":[80]},{"name":"MM_MOM_DONE","features":[80]},{"name":"MM_MOM_OPEN","features":[80]},{"name":"MM_MOM_POSITIONCB","features":[80]},{"name":"MM_MPU401_MIDIIN","features":[80]},{"name":"MM_MPU401_MIDIOUT","features":[80]},{"name":"MM_PC_JOYSTICK","features":[80]},{"name":"MM_SNDBLST_MIDIIN","features":[80]},{"name":"MM_SNDBLST_MIDIOUT","features":[80]},{"name":"MM_SNDBLST_SYNTH","features":[80]},{"name":"MM_SNDBLST_WAVEIN","features":[80]},{"name":"MM_SNDBLST_WAVEOUT","features":[80]},{"name":"MM_STREAM_CLOSE","features":[80]},{"name":"MM_STREAM_DONE","features":[80]},{"name":"MM_STREAM_ERROR","features":[80]},{"name":"MM_STREAM_OPEN","features":[80]},{"name":"MM_WAVE_MAPPER","features":[80]},{"name":"MM_WIM_CLOSE","features":[80]},{"name":"MM_WIM_DATA","features":[80]},{"name":"MM_WIM_OPEN","features":[80]},{"name":"MM_WOM_CLOSE","features":[80]},{"name":"MM_WOM_DONE","features":[80]},{"name":"MM_WOM_OPEN","features":[80]},{"name":"TIMECAPS","features":[80]},{"name":"TIMECODE","features":[80]},{"name":"TIMECODE_SAMPLE","features":[80]},{"name":"TIMECODE_SAMPLE_FLAGS","features":[80]},{"name":"TIMERR_BASE","features":[80]},{"name":"TIMERR_NOCANDO","features":[80]},{"name":"TIMERR_NOERROR","features":[80]},{"name":"TIMERR_STRUCT","features":[80]},{"name":"TIME_BYTES","features":[80]},{"name":"TIME_CALLBACK_EVENT_PULSE","features":[80]},{"name":"TIME_CALLBACK_EVENT_SET","features":[80]},{"name":"TIME_CALLBACK_FUNCTION","features":[80]},{"name":"TIME_KILL_SYNCHRONOUS","features":[80]},{"name":"TIME_MIDI","features":[80]},{"name":"TIME_MS","features":[80]},{"name":"TIME_ONESHOT","features":[80]},{"name":"TIME_PERIODIC","features":[80]},{"name":"TIME_SAMPLES","features":[80]},{"name":"TIME_SMPTE","features":[80]},{"name":"TIME_TICKS","features":[80]},{"name":"WAVERR_BASE","features":[80]},{"name":"timeBeginPeriod","features":[80]},{"name":"timeEndPeriod","features":[80]},{"name":"timeGetDevCaps","features":[80]},{"name":"timeGetSystemTime","features":[80]},{"name":"timeGetTime","features":[80]},{"name":"timeKillEvent","features":[80]},{"name":"timeSetEvent","features":[80]}],"425":[{"name":"ACMDM_DRIVER_ABOUT","features":[82]},{"name":"ACMDM_DRIVER_DETAILS","features":[82]},{"name":"ACMDM_DRIVER_NOTIFY","features":[82]},{"name":"ACMDM_FILTERTAG_DETAILS","features":[82]},{"name":"ACMDM_FILTER_DETAILS","features":[82]},{"name":"ACMDM_FORMATTAG_DETAILS","features":[82]},{"name":"ACMDM_FORMAT_DETAILS","features":[82]},{"name":"ACMDM_FORMAT_SUGGEST","features":[82]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_INPUT","features":[82]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_OUTPUT","features":[82]},{"name":"ACMDM_RESERVED_HIGH","features":[82]},{"name":"ACMDM_RESERVED_LOW","features":[82]},{"name":"ACMDM_STREAM_CLOSE","features":[82]},{"name":"ACMDM_STREAM_CONVERT","features":[82]},{"name":"ACMDM_STREAM_OPEN","features":[82]},{"name":"ACMDM_STREAM_PREPARE","features":[82]},{"name":"ACMDM_STREAM_RESET","features":[82]},{"name":"ACMDM_STREAM_SIZE","features":[82]},{"name":"ACMDM_STREAM_UNPREPARE","features":[82]},{"name":"ACMDM_STREAM_UPDATE","features":[82]},{"name":"ACMDM_USER","features":[82]},{"name":"ACMDRIVERDETAILSA","features":[82,52]},{"name":"ACMDRIVERDETAILSW","features":[82,52]},{"name":"ACMDRIVERDETAILS_COPYRIGHT_CHARS","features":[82]},{"name":"ACMDRIVERDETAILS_FEATURES_CHARS","features":[82]},{"name":"ACMDRIVERDETAILS_LICENSING_CHARS","features":[82]},{"name":"ACMDRIVERDETAILS_LONGNAME_CHARS","features":[82]},{"name":"ACMDRIVERDETAILS_SHORTNAME_CHARS","features":[82]},{"name":"ACMDRIVERDETAILS_SUPPORTF_ASYNC","features":[82]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CODEC","features":[82]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CONVERTER","features":[82]},{"name":"ACMDRIVERDETAILS_SUPPORTF_DISABLED","features":[82]},{"name":"ACMDRIVERDETAILS_SUPPORTF_FILTER","features":[82]},{"name":"ACMDRIVERDETAILS_SUPPORTF_HARDWARE","features":[82]},{"name":"ACMDRIVERDETAILS_SUPPORTF_LOCAL","features":[82]},{"name":"ACMDRIVERENUMCB","features":[3,82]},{"name":"ACMDRVFORMATSUGGEST","features":[82]},{"name":"ACMDRVOPENDESCA","features":[82]},{"name":"ACMDRVOPENDESCW","features":[82]},{"name":"ACMDRVSTREAMHEADER","features":[82]},{"name":"ACMDRVSTREAMINSTANCE","features":[82]},{"name":"ACMDRVSTREAMSIZE","features":[82]},{"name":"ACMERR_BASE","features":[82]},{"name":"ACMERR_BUSY","features":[82]},{"name":"ACMERR_CANCELED","features":[82]},{"name":"ACMERR_NOTPOSSIBLE","features":[82]},{"name":"ACMERR_UNPREPARED","features":[82]},{"name":"ACMFILTERCHOOSEA","features":[3,82]},{"name":"ACMFILTERCHOOSEHOOKPROCA","features":[3,82]},{"name":"ACMFILTERCHOOSEHOOKPROCW","features":[3,82]},{"name":"ACMFILTERCHOOSEW","features":[3,82]},{"name":"ACMFILTERCHOOSE_STYLEF_CONTEXTHELP","features":[82]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLEHOOK","features":[82]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATE","features":[82]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[82]},{"name":"ACMFILTERCHOOSE_STYLEF_INITTOFILTERSTRUCT","features":[82]},{"name":"ACMFILTERCHOOSE_STYLEF_SHOWHELP","features":[82]},{"name":"ACMFILTERDETAILSA","features":[82]},{"name":"ACMFILTERDETAILSW","features":[82]},{"name":"ACMFILTERDETAILS_FILTER_CHARS","features":[82]},{"name":"ACMFILTERENUMCBA","features":[3,82]},{"name":"ACMFILTERENUMCBW","features":[3,82]},{"name":"ACMFILTERTAGDETAILSA","features":[82]},{"name":"ACMFILTERTAGDETAILSW","features":[82]},{"name":"ACMFILTERTAGDETAILS_FILTERTAG_CHARS","features":[82]},{"name":"ACMFILTERTAGENUMCBA","features":[3,82]},{"name":"ACMFILTERTAGENUMCBW","features":[3,82]},{"name":"ACMFORMATCHOOSEA","features":[3,82]},{"name":"ACMFORMATCHOOSEHOOKPROCA","features":[3,82]},{"name":"ACMFORMATCHOOSEHOOKPROCW","features":[3,82]},{"name":"ACMFORMATCHOOSEW","features":[3,82]},{"name":"ACMFORMATCHOOSE_STYLEF_CONTEXTHELP","features":[82]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLEHOOK","features":[82]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATE","features":[82]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[82]},{"name":"ACMFORMATCHOOSE_STYLEF_INITTOWFXSTRUCT","features":[82]},{"name":"ACMFORMATCHOOSE_STYLEF_SHOWHELP","features":[82]},{"name":"ACMFORMATDETAILSA","features":[82]},{"name":"ACMFORMATDETAILS_FORMAT_CHARS","features":[82]},{"name":"ACMFORMATENUMCBA","features":[3,82]},{"name":"ACMFORMATENUMCBW","features":[3,82]},{"name":"ACMFORMATTAGDETAILSA","features":[82]},{"name":"ACMFORMATTAGDETAILSW","features":[82]},{"name":"ACMFORMATTAGDETAILS_FORMATTAG_CHARS","features":[82]},{"name":"ACMFORMATTAGENUMCBA","features":[3,82]},{"name":"ACMFORMATTAGENUMCBW","features":[3,82]},{"name":"ACMHELPMSGCONTEXTHELP","features":[82]},{"name":"ACMHELPMSGCONTEXTHELPA","features":[82]},{"name":"ACMHELPMSGCONTEXTHELPW","features":[82]},{"name":"ACMHELPMSGCONTEXTMENU","features":[82]},{"name":"ACMHELPMSGCONTEXTMENUA","features":[82]},{"name":"ACMHELPMSGCONTEXTMENUW","features":[82]},{"name":"ACMHELPMSGSTRING","features":[82]},{"name":"ACMHELPMSGSTRINGA","features":[82]},{"name":"ACMHELPMSGSTRINGW","features":[82]},{"name":"ACMSTREAMHEADER","features":[82]},{"name":"ACMSTREAMHEADER","features":[82]},{"name":"ACMSTREAMHEADER_STATUSF_DONE","features":[82]},{"name":"ACMSTREAMHEADER_STATUSF_INQUEUE","features":[82]},{"name":"ACMSTREAMHEADER_STATUSF_PREPARED","features":[82]},{"name":"ACM_DRIVERADDF_FUNCTION","features":[82]},{"name":"ACM_DRIVERADDF_GLOBAL","features":[82]},{"name":"ACM_DRIVERADDF_LOCAL","features":[82]},{"name":"ACM_DRIVERADDF_NAME","features":[82]},{"name":"ACM_DRIVERADDF_NOTIFYHWND","features":[82]},{"name":"ACM_DRIVERADDF_TYPEMASK","features":[82]},{"name":"ACM_DRIVERENUMF_DISABLED","features":[82]},{"name":"ACM_DRIVERENUMF_NOLOCAL","features":[82]},{"name":"ACM_DRIVERPRIORITYF_ABLEMASK","features":[82]},{"name":"ACM_DRIVERPRIORITYF_BEGIN","features":[82]},{"name":"ACM_DRIVERPRIORITYF_DEFERMASK","features":[82]},{"name":"ACM_DRIVERPRIORITYF_DISABLE","features":[82]},{"name":"ACM_DRIVERPRIORITYF_ENABLE","features":[82]},{"name":"ACM_DRIVERPRIORITYF_END","features":[82]},{"name":"ACM_FILTERDETAILSF_FILTER","features":[82]},{"name":"ACM_FILTERDETAILSF_INDEX","features":[82]},{"name":"ACM_FILTERDETAILSF_QUERYMASK","features":[82]},{"name":"ACM_FILTERENUMF_DWFILTERTAG","features":[82]},{"name":"ACM_FILTERTAGDETAILSF_FILTERTAG","features":[82]},{"name":"ACM_FILTERTAGDETAILSF_INDEX","features":[82]},{"name":"ACM_FILTERTAGDETAILSF_LARGESTSIZE","features":[82]},{"name":"ACM_FILTERTAGDETAILSF_QUERYMASK","features":[82]},{"name":"ACM_FORMATDETAILSF_FORMAT","features":[82]},{"name":"ACM_FORMATDETAILSF_INDEX","features":[82]},{"name":"ACM_FORMATDETAILSF_QUERYMASK","features":[82]},{"name":"ACM_FORMATENUMF_CONVERT","features":[82]},{"name":"ACM_FORMATENUMF_HARDWARE","features":[82]},{"name":"ACM_FORMATENUMF_INPUT","features":[82]},{"name":"ACM_FORMATENUMF_NCHANNELS","features":[82]},{"name":"ACM_FORMATENUMF_NSAMPLESPERSEC","features":[82]},{"name":"ACM_FORMATENUMF_OUTPUT","features":[82]},{"name":"ACM_FORMATENUMF_SUGGEST","features":[82]},{"name":"ACM_FORMATENUMF_WBITSPERSAMPLE","features":[82]},{"name":"ACM_FORMATENUMF_WFORMATTAG","features":[82]},{"name":"ACM_FORMATSUGGESTF_NCHANNELS","features":[82]},{"name":"ACM_FORMATSUGGESTF_NSAMPLESPERSEC","features":[82]},{"name":"ACM_FORMATSUGGESTF_TYPEMASK","features":[82]},{"name":"ACM_FORMATSUGGESTF_WBITSPERSAMPLE","features":[82]},{"name":"ACM_FORMATSUGGESTF_WFORMATTAG","features":[82]},{"name":"ACM_FORMATTAGDETAILSF_FORMATTAG","features":[82]},{"name":"ACM_FORMATTAGDETAILSF_INDEX","features":[82]},{"name":"ACM_FORMATTAGDETAILSF_LARGESTSIZE","features":[82]},{"name":"ACM_FORMATTAGDETAILSF_QUERYMASK","features":[82]},{"name":"ACM_METRIC_COUNT_CODECS","features":[82]},{"name":"ACM_METRIC_COUNT_CONVERTERS","features":[82]},{"name":"ACM_METRIC_COUNT_DISABLED","features":[82]},{"name":"ACM_METRIC_COUNT_DRIVERS","features":[82]},{"name":"ACM_METRIC_COUNT_FILTERS","features":[82]},{"name":"ACM_METRIC_COUNT_HARDWARE","features":[82]},{"name":"ACM_METRIC_COUNT_LOCAL_CODECS","features":[82]},{"name":"ACM_METRIC_COUNT_LOCAL_CONVERTERS","features":[82]},{"name":"ACM_METRIC_COUNT_LOCAL_DISABLED","features":[82]},{"name":"ACM_METRIC_COUNT_LOCAL_DRIVERS","features":[82]},{"name":"ACM_METRIC_COUNT_LOCAL_FILTERS","features":[82]},{"name":"ACM_METRIC_DRIVER_PRIORITY","features":[82]},{"name":"ACM_METRIC_DRIVER_SUPPORT","features":[82]},{"name":"ACM_METRIC_HARDWARE_WAVE_INPUT","features":[82]},{"name":"ACM_METRIC_HARDWARE_WAVE_OUTPUT","features":[82]},{"name":"ACM_METRIC_MAX_SIZE_FILTER","features":[82]},{"name":"ACM_METRIC_MAX_SIZE_FORMAT","features":[82]},{"name":"ACM_STREAMCONVERTF_BLOCKALIGN","features":[82]},{"name":"ACM_STREAMCONVERTF_END","features":[82]},{"name":"ACM_STREAMCONVERTF_START","features":[82]},{"name":"ACM_STREAMOPENF_ASYNC","features":[82]},{"name":"ACM_STREAMOPENF_NONREALTIME","features":[82]},{"name":"ACM_STREAMOPENF_QUERY","features":[82]},{"name":"ACM_STREAMSIZEF_DESTINATION","features":[82]},{"name":"ACM_STREAMSIZEF_QUERYMASK","features":[82]},{"name":"ACM_STREAMSIZEF_SOURCE","features":[82]},{"name":"AMBISONICS_CHANNEL_ORDERING","features":[82]},{"name":"AMBISONICS_CHANNEL_ORDERING_ACN","features":[82]},{"name":"AMBISONICS_NORMALIZATION","features":[82]},{"name":"AMBISONICS_NORMALIZATION_N3D","features":[82]},{"name":"AMBISONICS_NORMALIZATION_SN3D","features":[82]},{"name":"AMBISONICS_PARAMS","features":[82]},{"name":"AMBISONICS_PARAM_VERSION_1","features":[82]},{"name":"AMBISONICS_TYPE","features":[82]},{"name":"AMBISONICS_TYPE_FULL3D","features":[82]},{"name":"AUDCLNT_BUFFERFLAGS_DATA_DISCONTINUITY","features":[82]},{"name":"AUDCLNT_BUFFERFLAGS_SILENT","features":[82]},{"name":"AUDCLNT_BUFFERFLAGS_TIMESTAMP_ERROR","features":[82]},{"name":"AUDCLNT_E_ALREADY_INITIALIZED","features":[82]},{"name":"AUDCLNT_E_BUFDURATION_PERIOD_NOT_EQUAL","features":[82]},{"name":"AUDCLNT_E_BUFFER_ERROR","features":[82]},{"name":"AUDCLNT_E_BUFFER_OPERATION_PENDING","features":[82]},{"name":"AUDCLNT_E_BUFFER_SIZE_ERROR","features":[82]},{"name":"AUDCLNT_E_BUFFER_SIZE_NOT_ALIGNED","features":[82]},{"name":"AUDCLNT_E_BUFFER_TOO_LARGE","features":[82]},{"name":"AUDCLNT_E_CPUUSAGE_EXCEEDED","features":[82]},{"name":"AUDCLNT_E_DEVICE_INVALIDATED","features":[82]},{"name":"AUDCLNT_E_DEVICE_IN_USE","features":[82]},{"name":"AUDCLNT_E_EFFECT_NOT_AVAILABLE","features":[82]},{"name":"AUDCLNT_E_EFFECT_STATE_READ_ONLY","features":[82]},{"name":"AUDCLNT_E_ENDPOINT_CREATE_FAILED","features":[82]},{"name":"AUDCLNT_E_ENDPOINT_OFFLOAD_NOT_CAPABLE","features":[82]},{"name":"AUDCLNT_E_ENGINE_FORMAT_LOCKED","features":[82]},{"name":"AUDCLNT_E_ENGINE_PERIODICITY_LOCKED","features":[82]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_EXPECTED","features":[82]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_SET","features":[82]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED","features":[82]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_ONLY","features":[82]},{"name":"AUDCLNT_E_HEADTRACKING_ENABLED","features":[82]},{"name":"AUDCLNT_E_HEADTRACKING_UNSUPPORTED","features":[82]},{"name":"AUDCLNT_E_INCORRECT_BUFFER_SIZE","features":[82]},{"name":"AUDCLNT_E_INVALID_DEVICE_PERIOD","features":[82]},{"name":"AUDCLNT_E_INVALID_SIZE","features":[82]},{"name":"AUDCLNT_E_INVALID_STREAM_FLAG","features":[82]},{"name":"AUDCLNT_E_NONOFFLOAD_MODE_ONLY","features":[82]},{"name":"AUDCLNT_E_NOT_INITIALIZED","features":[82]},{"name":"AUDCLNT_E_NOT_STOPPED","features":[82]},{"name":"AUDCLNT_E_OFFLOAD_MODE_ONLY","features":[82]},{"name":"AUDCLNT_E_OUT_OF_OFFLOAD_RESOURCES","features":[82]},{"name":"AUDCLNT_E_OUT_OF_ORDER","features":[82]},{"name":"AUDCLNT_E_RAW_MODE_UNSUPPORTED","features":[82]},{"name":"AUDCLNT_E_RESOURCES_INVALIDATED","features":[82]},{"name":"AUDCLNT_E_SERVICE_NOT_RUNNING","features":[82]},{"name":"AUDCLNT_E_THREAD_NOT_REGISTERED","features":[82]},{"name":"AUDCLNT_E_UNSUPPORTED_FORMAT","features":[82]},{"name":"AUDCLNT_E_WRONG_ENDPOINT_TYPE","features":[82]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDE","features":[82]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDEWHENEXPIRED","features":[82]},{"name":"AUDCLNT_SESSIONFLAGS_EXPIREWHENUNOWNED","features":[82]},{"name":"AUDCLNT_SHAREMODE","features":[82]},{"name":"AUDCLNT_SHAREMODE_EXCLUSIVE","features":[82]},{"name":"AUDCLNT_SHAREMODE_SHARED","features":[82]},{"name":"AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM","features":[82]},{"name":"AUDCLNT_STREAMFLAGS_CROSSPROCESS","features":[82]},{"name":"AUDCLNT_STREAMFLAGS_EVENTCALLBACK","features":[82]},{"name":"AUDCLNT_STREAMFLAGS_LOOPBACK","features":[82]},{"name":"AUDCLNT_STREAMFLAGS_NOPERSIST","features":[82]},{"name":"AUDCLNT_STREAMFLAGS_RATEADJUST","features":[82]},{"name":"AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY","features":[82]},{"name":"AUDCLNT_STREAMOPTIONS","features":[82]},{"name":"AUDCLNT_STREAMOPTIONS_AMBISONICS","features":[82]},{"name":"AUDCLNT_STREAMOPTIONS_MATCH_FORMAT","features":[82]},{"name":"AUDCLNT_STREAMOPTIONS_NONE","features":[82]},{"name":"AUDCLNT_STREAMOPTIONS_RAW","features":[82]},{"name":"AUDCLNT_S_BUFFER_EMPTY","features":[82]},{"name":"AUDCLNT_S_POSITION_STALLED","features":[82]},{"name":"AUDCLNT_S_THREAD_ALREADY_REGISTERED","features":[82]},{"name":"AUDIOCLIENT_ACTIVATION_PARAMS","features":[82]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE","features":[82]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_DEFAULT","features":[82]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_PROCESS_LOOPBACK","features":[82]},{"name":"AUDIOCLIENT_PROCESS_LOOPBACK_PARAMS","features":[82]},{"name":"AUDIOCLOCK_CHARACTERISTIC_FIXED_FREQ","features":[82]},{"name":"AUDIO_DUCKING_OPTIONS","features":[82]},{"name":"AUDIO_DUCKING_OPTIONS_DEFAULT","features":[82]},{"name":"AUDIO_DUCKING_OPTIONS_DO_NOT_DUCK_OTHER_STREAMS","features":[82]},{"name":"AUDIO_EFFECT","features":[3,82]},{"name":"AUDIO_EFFECT_STATE","features":[82]},{"name":"AUDIO_EFFECT_STATE_OFF","features":[82]},{"name":"AUDIO_EFFECT_STATE_ON","features":[82]},{"name":"AUDIO_STREAM_CATEGORY","features":[82]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE","features":[82]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_DEFAULT","features":[82]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_ENUM_COUNT","features":[82]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_USER","features":[82]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_VOLATILE","features":[82]},{"name":"AUDIO_VOLUME_NOTIFICATION_DATA","features":[3,82]},{"name":"AUXCAPS2A","features":[82]},{"name":"AUXCAPS2W","features":[82]},{"name":"AUXCAPSA","features":[82]},{"name":"AUXCAPSW","features":[82]},{"name":"AUXCAPS_AUXIN","features":[82]},{"name":"AUXCAPS_CDAUDIO","features":[82]},{"name":"AUXCAPS_LRVOLUME","features":[82]},{"name":"AUXCAPS_VOLUME","features":[82]},{"name":"ActivateAudioInterfaceAsync","features":[3,82,65,44]},{"name":"AudioCategory_Alerts","features":[82]},{"name":"AudioCategory_Communications","features":[82]},{"name":"AudioCategory_FarFieldSpeech","features":[82]},{"name":"AudioCategory_ForegroundOnlyMedia","features":[82]},{"name":"AudioCategory_GameChat","features":[82]},{"name":"AudioCategory_GameEffects","features":[82]},{"name":"AudioCategory_GameMedia","features":[82]},{"name":"AudioCategory_Media","features":[82]},{"name":"AudioCategory_Movie","features":[82]},{"name":"AudioCategory_Other","features":[82]},{"name":"AudioCategory_SoundEffects","features":[82]},{"name":"AudioCategory_Speech","features":[82]},{"name":"AudioCategory_UniformSpeech","features":[82]},{"name":"AudioCategory_VoiceTyping","features":[82]},{"name":"AudioClient3ActivationParams","features":[82]},{"name":"AudioClientProperties","features":[3,82]},{"name":"AudioExtensionParams","features":[3,82]},{"name":"AudioObjectType","features":[82]},{"name":"AudioObjectType_BackCenter","features":[82]},{"name":"AudioObjectType_BackLeft","features":[82]},{"name":"AudioObjectType_BackRight","features":[82]},{"name":"AudioObjectType_BottomBackLeft","features":[82]},{"name":"AudioObjectType_BottomBackRight","features":[82]},{"name":"AudioObjectType_BottomFrontLeft","features":[82]},{"name":"AudioObjectType_BottomFrontRight","features":[82]},{"name":"AudioObjectType_Dynamic","features":[82]},{"name":"AudioObjectType_FrontCenter","features":[82]},{"name":"AudioObjectType_FrontLeft","features":[82]},{"name":"AudioObjectType_FrontRight","features":[82]},{"name":"AudioObjectType_LowFrequency","features":[82]},{"name":"AudioObjectType_None","features":[82]},{"name":"AudioObjectType_SideLeft","features":[82]},{"name":"AudioObjectType_SideRight","features":[82]},{"name":"AudioObjectType_TopBackLeft","features":[82]},{"name":"AudioObjectType_TopBackRight","features":[82]},{"name":"AudioObjectType_TopFrontLeft","features":[82]},{"name":"AudioObjectType_TopFrontRight","features":[82]},{"name":"AudioSessionDisconnectReason","features":[82]},{"name":"AudioSessionState","features":[82]},{"name":"AudioSessionStateActive","features":[82]},{"name":"AudioSessionStateExpired","features":[82]},{"name":"AudioSessionStateInactive","features":[82]},{"name":"AudioStateMonitorSoundLevel","features":[82]},{"name":"CALLBACK_EVENT","features":[82]},{"name":"CALLBACK_FUNCTION","features":[82]},{"name":"CALLBACK_NULL","features":[82]},{"name":"CALLBACK_TASK","features":[82]},{"name":"CALLBACK_THREAD","features":[82]},{"name":"CALLBACK_TYPEMASK","features":[82]},{"name":"CALLBACK_WINDOW","features":[82]},{"name":"CoRegisterMessageFilter","features":[82]},{"name":"Connector","features":[82]},{"name":"ConnectorType","features":[82]},{"name":"CreateCaptureAudioStateMonitor","features":[82]},{"name":"CreateCaptureAudioStateMonitorForCategory","features":[82]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceId","features":[82]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceRole","features":[82]},{"name":"CreateRenderAudioStateMonitor","features":[82]},{"name":"CreateRenderAudioStateMonitorForCategory","features":[82]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceId","features":[82]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceRole","features":[82]},{"name":"DEVICE_STATE","features":[82]},{"name":"DEVICE_STATEMASK_ALL","features":[82]},{"name":"DEVICE_STATE_ACTIVE","features":[82]},{"name":"DEVICE_STATE_DISABLED","features":[82]},{"name":"DEVICE_STATE_NOTPRESENT","features":[82]},{"name":"DEVICE_STATE_UNPLUGGED","features":[82]},{"name":"DEVINTERFACE_AUDIO_CAPTURE","features":[82]},{"name":"DEVINTERFACE_AUDIO_RENDER","features":[82]},{"name":"DEVINTERFACE_MIDI_INPUT","features":[82]},{"name":"DEVINTERFACE_MIDI_OUTPUT","features":[82]},{"name":"DIRECTX_AUDIO_ACTIVATION_PARAMS","features":[82]},{"name":"DRVM_MAPPER","features":[82]},{"name":"DRVM_MAPPER_STATUS","features":[82]},{"name":"DRV_MAPPER_PREFERRED_INPUT_GET","features":[82]},{"name":"DRV_MAPPER_PREFERRED_OUTPUT_GET","features":[82]},{"name":"DataFlow","features":[82]},{"name":"DeviceTopology","features":[82]},{"name":"DigitalAudioDisplayDevice","features":[82]},{"name":"DisconnectReasonDeviceRemoval","features":[82]},{"name":"DisconnectReasonExclusiveModeOverride","features":[82]},{"name":"DisconnectReasonFormatChanged","features":[82]},{"name":"DisconnectReasonServerShutdown","features":[82]},{"name":"DisconnectReasonSessionDisconnected","features":[82]},{"name":"DisconnectReasonSessionLogoff","features":[82]},{"name":"ECHOWAVEFILTER","features":[82]},{"name":"EDataFlow","features":[82]},{"name":"EDataFlow_enum_count","features":[82]},{"name":"ENDPOINT_FORMAT_RESET_MIX_ONLY","features":[82]},{"name":"ENDPOINT_HARDWARE_SUPPORT_METER","features":[82]},{"name":"ENDPOINT_HARDWARE_SUPPORT_MUTE","features":[82]},{"name":"ENDPOINT_HARDWARE_SUPPORT_VOLUME","features":[82]},{"name":"ENDPOINT_SYSFX_DISABLED","features":[82]},{"name":"ENDPOINT_SYSFX_ENABLED","features":[82]},{"name":"ERole","features":[82]},{"name":"ERole_enum_count","features":[82]},{"name":"EVENTCONTEXT_VOLUMESLIDER","features":[82]},{"name":"EndpointFormFactor","features":[82]},{"name":"EndpointFormFactor_enum_count","features":[82]},{"name":"FILTERCHOOSE_CUSTOM_VERIFY","features":[82]},{"name":"FILTERCHOOSE_FILTERTAG_VERIFY","features":[82]},{"name":"FILTERCHOOSE_FILTER_VERIFY","features":[82]},{"name":"FILTERCHOOSE_MESSAGE","features":[82]},{"name":"FORMATCHOOSE_CUSTOM_VERIFY","features":[82]},{"name":"FORMATCHOOSE_FORMATTAG_VERIFY","features":[82]},{"name":"FORMATCHOOSE_FORMAT_VERIFY","features":[82]},{"name":"FORMATCHOOSE_MESSAGE","features":[82]},{"name":"Full","features":[82]},{"name":"HACMDRIVER","features":[82]},{"name":"HACMDRIVERID","features":[82]},{"name":"HACMOBJ","features":[82]},{"name":"HACMSTREAM","features":[82]},{"name":"HMIDI","features":[82]},{"name":"HMIDIIN","features":[82]},{"name":"HMIDIOUT","features":[82]},{"name":"HMIDISTRM","features":[82]},{"name":"HMIXER","features":[82]},{"name":"HMIXEROBJ","features":[82]},{"name":"HWAVE","features":[82]},{"name":"HWAVEIN","features":[82]},{"name":"HWAVEOUT","features":[82]},{"name":"Handset","features":[82]},{"name":"Headphones","features":[82]},{"name":"Headset","features":[82]},{"name":"IAcousticEchoCancellationControl","features":[82]},{"name":"IActivateAudioInterfaceAsyncOperation","features":[82]},{"name":"IActivateAudioInterfaceCompletionHandler","features":[82]},{"name":"IAudioAmbisonicsControl","features":[82]},{"name":"IAudioAutoGainControl","features":[82]},{"name":"IAudioBass","features":[82]},{"name":"IAudioCaptureClient","features":[82]},{"name":"IAudioChannelConfig","features":[82]},{"name":"IAudioClient","features":[82]},{"name":"IAudioClient2","features":[82]},{"name":"IAudioClient3","features":[82]},{"name":"IAudioClientDuckingControl","features":[82]},{"name":"IAudioClock","features":[82]},{"name":"IAudioClock2","features":[82]},{"name":"IAudioClockAdjustment","features":[82]},{"name":"IAudioEffectsChangedNotificationClient","features":[82]},{"name":"IAudioEffectsManager","features":[82]},{"name":"IAudioFormatEnumerator","features":[82]},{"name":"IAudioInputSelector","features":[82]},{"name":"IAudioLoudness","features":[82]},{"name":"IAudioMidrange","features":[82]},{"name":"IAudioMute","features":[82]},{"name":"IAudioOutputSelector","features":[82]},{"name":"IAudioPeakMeter","features":[82]},{"name":"IAudioRenderClient","features":[82]},{"name":"IAudioSessionControl","features":[82]},{"name":"IAudioSessionControl2","features":[82]},{"name":"IAudioSessionEnumerator","features":[82]},{"name":"IAudioSessionEvents","features":[82]},{"name":"IAudioSessionManager","features":[82]},{"name":"IAudioSessionManager2","features":[82]},{"name":"IAudioSessionNotification","features":[82]},{"name":"IAudioStateMonitor","features":[82]},{"name":"IAudioStreamVolume","features":[82]},{"name":"IAudioSystemEffectsPropertyChangeNotificationClient","features":[82]},{"name":"IAudioSystemEffectsPropertyStore","features":[82]},{"name":"IAudioTreble","features":[82]},{"name":"IAudioViewManagerService","features":[82]},{"name":"IAudioVolumeDuckNotification","features":[82]},{"name":"IAudioVolumeLevel","features":[82]},{"name":"IChannelAudioVolume","features":[82]},{"name":"IConnector","features":[82]},{"name":"IControlChangeNotify","features":[82]},{"name":"IControlInterface","features":[82]},{"name":"IDeviceSpecificProperty","features":[82]},{"name":"IDeviceTopology","features":[82]},{"name":"IMMDevice","features":[82]},{"name":"IMMDeviceActivator","features":[82]},{"name":"IMMDeviceCollection","features":[82]},{"name":"IMMDeviceEnumerator","features":[82]},{"name":"IMMEndpoint","features":[82]},{"name":"IMMNotificationClient","features":[82]},{"name":"IMessageFilter","features":[82]},{"name":"IPart","features":[82]},{"name":"IPartsList","features":[82]},{"name":"IPerChannelDbLevel","features":[82]},{"name":"ISimpleAudioVolume","features":[82]},{"name":"ISpatialAudioClient","features":[82]},{"name":"ISpatialAudioClient2","features":[82]},{"name":"ISpatialAudioMetadataClient","features":[82]},{"name":"ISpatialAudioMetadataCopier","features":[82]},{"name":"ISpatialAudioMetadataItems","features":[82]},{"name":"ISpatialAudioMetadataItemsBuffer","features":[82]},{"name":"ISpatialAudioMetadataReader","features":[82]},{"name":"ISpatialAudioMetadataWriter","features":[82]},{"name":"ISpatialAudioObject","features":[82]},{"name":"ISpatialAudioObjectBase","features":[82]},{"name":"ISpatialAudioObjectForHrtf","features":[82]},{"name":"ISpatialAudioObjectForMetadataCommands","features":[82]},{"name":"ISpatialAudioObjectForMetadataItems","features":[82]},{"name":"ISpatialAudioObjectRenderStream","features":[82]},{"name":"ISpatialAudioObjectRenderStreamBase","features":[82]},{"name":"ISpatialAudioObjectRenderStreamForHrtf","features":[82]},{"name":"ISpatialAudioObjectRenderStreamForMetadata","features":[82]},{"name":"ISpatialAudioObjectRenderStreamNotify","features":[82]},{"name":"ISubunit","features":[82]},{"name":"In","features":[82]},{"name":"LPACMDRIVERPROC","features":[3,82]},{"name":"LPMIDICALLBACK","features":[82,81]},{"name":"LPWAVECALLBACK","features":[82,81]},{"name":"LineLevel","features":[82]},{"name":"Low","features":[82]},{"name":"MEVT_COMMENT","features":[82]},{"name":"MEVT_F_CALLBACK","features":[82]},{"name":"MEVT_F_LONG","features":[82]},{"name":"MEVT_F_SHORT","features":[82]},{"name":"MEVT_LONGMSG","features":[82]},{"name":"MEVT_NOP","features":[82]},{"name":"MEVT_SHORTMSG","features":[82]},{"name":"MEVT_TEMPO","features":[82]},{"name":"MEVT_VERSION","features":[82]},{"name":"MHDR_DONE","features":[82]},{"name":"MHDR_INQUEUE","features":[82]},{"name":"MHDR_ISSTRM","features":[82]},{"name":"MHDR_PREPARED","features":[82]},{"name":"MIDICAPS_CACHE","features":[82]},{"name":"MIDICAPS_LRVOLUME","features":[82]},{"name":"MIDICAPS_STREAM","features":[82]},{"name":"MIDICAPS_VOLUME","features":[82]},{"name":"MIDIERR_BADOPENMODE","features":[82]},{"name":"MIDIERR_DONT_CONTINUE","features":[82]},{"name":"MIDIERR_INVALIDSETUP","features":[82]},{"name":"MIDIERR_LASTERROR","features":[82]},{"name":"MIDIERR_NODEVICE","features":[82]},{"name":"MIDIERR_NOMAP","features":[82]},{"name":"MIDIERR_NOTREADY","features":[82]},{"name":"MIDIERR_STILLPLAYING","features":[82]},{"name":"MIDIERR_UNPREPARED","features":[82]},{"name":"MIDIEVENT","features":[82]},{"name":"MIDIHDR","features":[82]},{"name":"MIDIINCAPS2A","features":[82]},{"name":"MIDIINCAPS2W","features":[82]},{"name":"MIDIINCAPSA","features":[82]},{"name":"MIDIINCAPSW","features":[82]},{"name":"MIDIOUTCAPS2A","features":[82]},{"name":"MIDIOUTCAPS2W","features":[82]},{"name":"MIDIOUTCAPSA","features":[82]},{"name":"MIDIOUTCAPSW","features":[82]},{"name":"MIDIPATCHSIZE","features":[82]},{"name":"MIDIPROPTEMPO","features":[82]},{"name":"MIDIPROPTIMEDIV","features":[82]},{"name":"MIDIPROP_GET","features":[82]},{"name":"MIDIPROP_SET","features":[82]},{"name":"MIDIPROP_TEMPO","features":[82]},{"name":"MIDIPROP_TIMEDIV","features":[82]},{"name":"MIDISTRMBUFFVER","features":[82]},{"name":"MIDISTRM_ERROR","features":[82]},{"name":"MIDI_CACHE_ALL","features":[82]},{"name":"MIDI_CACHE_BESTFIT","features":[82]},{"name":"MIDI_CACHE_QUERY","features":[82]},{"name":"MIDI_IO_STATUS","features":[82]},{"name":"MIDI_UNCACHE","features":[82]},{"name":"MIDI_WAVE_OPEN_TYPE","features":[82]},{"name":"MIXERCAPS2A","features":[82]},{"name":"MIXERCAPS2W","features":[82]},{"name":"MIXERCAPSA","features":[82]},{"name":"MIXERCAPSW","features":[82]},{"name":"MIXERCONTROLA","features":[82]},{"name":"MIXERCONTROLDETAILS","features":[3,82]},{"name":"MIXERCONTROLDETAILS_BOOLEAN","features":[82]},{"name":"MIXERCONTROLDETAILS_LISTTEXTA","features":[82]},{"name":"MIXERCONTROLDETAILS_LISTTEXTW","features":[82]},{"name":"MIXERCONTROLDETAILS_SIGNED","features":[82]},{"name":"MIXERCONTROLDETAILS_UNSIGNED","features":[82]},{"name":"MIXERCONTROLW","features":[82]},{"name":"MIXERCONTROL_CONTROLF_DISABLED","features":[82]},{"name":"MIXERCONTROL_CONTROLF_MULTIPLE","features":[82]},{"name":"MIXERCONTROL_CONTROLF_UNIFORM","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS_BOOST","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEAN","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEANMETER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_BUTTON","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_CUSTOM","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_DECIBELS","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_EQUALIZER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_FADER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_LOUDNESS","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_MICROTIME","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_MILLITIME","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_MIXER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_MONO","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_MUTE","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_MUX","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_ONOFF","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_PAN","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_PEAKMETER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_PERCENT","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_QSOUNDPAN","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNED","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNEDMETER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_SINGLESELECT","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_SLIDER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_STEREOENH","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_TREBLE","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNED","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER","features":[82]},{"name":"MIXERCONTROL_CONTROLTYPE_VOLUME","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_CUSTOM","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_FADER","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_LIST","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_MASK","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_METER","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_NUMBER","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_SLIDER","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_SWITCH","features":[82]},{"name":"MIXERCONTROL_CT_CLASS_TIME","features":[82]},{"name":"MIXERCONTROL_CT_SC_LIST_MULTIPLE","features":[82]},{"name":"MIXERCONTROL_CT_SC_LIST_SINGLE","features":[82]},{"name":"MIXERCONTROL_CT_SC_METER_POLLED","features":[82]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BOOLEAN","features":[82]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BUTTON","features":[82]},{"name":"MIXERCONTROL_CT_SC_TIME_MICROSECS","features":[82]},{"name":"MIXERCONTROL_CT_SC_TIME_MILLISECS","features":[82]},{"name":"MIXERCONTROL_CT_SUBCLASS_MASK","features":[82]},{"name":"MIXERCONTROL_CT_UNITS_BOOLEAN","features":[82]},{"name":"MIXERCONTROL_CT_UNITS_CUSTOM","features":[82]},{"name":"MIXERCONTROL_CT_UNITS_DECIBELS","features":[82]},{"name":"MIXERCONTROL_CT_UNITS_MASK","features":[82]},{"name":"MIXERCONTROL_CT_UNITS_PERCENT","features":[82]},{"name":"MIXERCONTROL_CT_UNITS_SIGNED","features":[82]},{"name":"MIXERCONTROL_CT_UNITS_UNSIGNED","features":[82]},{"name":"MIXERLINEA","features":[82]},{"name":"MIXERLINECONTROLSA","features":[82]},{"name":"MIXERLINECONTROLSW","features":[82]},{"name":"MIXERLINEW","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_DIGITAL","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_FIRST","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_HEADPHONES","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LAST","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LINE","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_MONITOR","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_SPEAKERS","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_TELEPHONE","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_UNDEFINED","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_VOICEIN","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_DST_WAVEIN","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_ANALOG","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_DIGITAL","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_FIRST","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LAST","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LINE","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED","features":[82]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT","features":[82]},{"name":"MIXERLINE_LINEF_ACTIVE","features":[82]},{"name":"MIXERLINE_LINEF_DISCONNECTED","features":[82]},{"name":"MIXERLINE_LINEF_SOURCE","features":[82]},{"name":"MIXERLINE_TARGETTYPE_AUX","features":[82]},{"name":"MIXERLINE_TARGETTYPE_MIDIIN","features":[82]},{"name":"MIXERLINE_TARGETTYPE_MIDIOUT","features":[82]},{"name":"MIXERLINE_TARGETTYPE_UNDEFINED","features":[82]},{"name":"MIXERLINE_TARGETTYPE_WAVEIN","features":[82]},{"name":"MIXERLINE_TARGETTYPE_WAVEOUT","features":[82]},{"name":"MIXERR_INVALCONTROL","features":[82]},{"name":"MIXERR_INVALLINE","features":[82]},{"name":"MIXERR_INVALVALUE","features":[82]},{"name":"MIXERR_LASTERROR","features":[82]},{"name":"MIXER_GETCONTROLDETAILSF_LISTTEXT","features":[82]},{"name":"MIXER_GETCONTROLDETAILSF_QUERYMASK","features":[82]},{"name":"MIXER_GETCONTROLDETAILSF_VALUE","features":[82]},{"name":"MIXER_GETLINECONTROLSF_ALL","features":[82]},{"name":"MIXER_GETLINECONTROLSF_ONEBYID","features":[82]},{"name":"MIXER_GETLINECONTROLSF_ONEBYTYPE","features":[82]},{"name":"MIXER_GETLINECONTROLSF_QUERYMASK","features":[82]},{"name":"MIXER_GETLINEINFOF_COMPONENTTYPE","features":[82]},{"name":"MIXER_GETLINEINFOF_DESTINATION","features":[82]},{"name":"MIXER_GETLINEINFOF_LINEID","features":[82]},{"name":"MIXER_GETLINEINFOF_QUERYMASK","features":[82]},{"name":"MIXER_GETLINEINFOF_SOURCE","features":[82]},{"name":"MIXER_GETLINEINFOF_TARGETTYPE","features":[82]},{"name":"MIXER_LONG_NAME_CHARS","features":[82]},{"name":"MIXER_OBJECTF_AUX","features":[82]},{"name":"MIXER_OBJECTF_HANDLE","features":[82]},{"name":"MIXER_OBJECTF_MIDIIN","features":[82]},{"name":"MIXER_OBJECTF_MIDIOUT","features":[82]},{"name":"MIXER_OBJECTF_MIXER","features":[82]},{"name":"MIXER_OBJECTF_WAVEIN","features":[82]},{"name":"MIXER_OBJECTF_WAVEOUT","features":[82]},{"name":"MIXER_SETCONTROLDETAILSF_CUSTOM","features":[82]},{"name":"MIXER_SETCONTROLDETAILSF_QUERYMASK","features":[82]},{"name":"MIXER_SETCONTROLDETAILSF_VALUE","features":[82]},{"name":"MIXER_SHORT_NAME_CHARS","features":[82]},{"name":"MMDeviceEnumerator","features":[82]},{"name":"MM_ACM_FILTERCHOOSE","features":[82]},{"name":"MM_ACM_FORMATCHOOSE","features":[82]},{"name":"MOD_FMSYNTH","features":[82]},{"name":"MOD_MAPPER","features":[82]},{"name":"MOD_MIDIPORT","features":[82]},{"name":"MOD_SQSYNTH","features":[82]},{"name":"MOD_SWSYNTH","features":[82]},{"name":"MOD_SYNTH","features":[82]},{"name":"MOD_WAVETABLE","features":[82]},{"name":"Microphone","features":[82]},{"name":"Muted","features":[82]},{"name":"Out","features":[82]},{"name":"PAudioStateMonitorCallback","features":[82]},{"name":"PCMWAVEFORMAT","features":[82]},{"name":"PKEY_AudioEndpointLogo_IconEffects","features":[82,62]},{"name":"PKEY_AudioEndpointLogo_IconPath","features":[82,62]},{"name":"PKEY_AudioEndpointSettings_LaunchContract","features":[82,62]},{"name":"PKEY_AudioEndpointSettings_MenuText","features":[82,62]},{"name":"PKEY_AudioEndpoint_Association","features":[82,62]},{"name":"PKEY_AudioEndpoint_ControlPanelPageProvider","features":[82,62]},{"name":"PKEY_AudioEndpoint_Default_VolumeInDb","features":[82,62]},{"name":"PKEY_AudioEndpoint_Disable_SysFx","features":[82,62]},{"name":"PKEY_AudioEndpoint_FormFactor","features":[82,62]},{"name":"PKEY_AudioEndpoint_FullRangeSpeakers","features":[82,62]},{"name":"PKEY_AudioEndpoint_GUID","features":[82,62]},{"name":"PKEY_AudioEndpoint_JackSubType","features":[82,62]},{"name":"PKEY_AudioEndpoint_PhysicalSpeakers","features":[82,62]},{"name":"PKEY_AudioEndpoint_Supports_EventDriven_Mode","features":[82,62]},{"name":"PKEY_AudioEngine_DeviceFormat","features":[82,62]},{"name":"PKEY_AudioEngine_OEMFormat","features":[82,62]},{"name":"PROCESS_LOOPBACK_MODE","features":[82]},{"name":"PROCESS_LOOPBACK_MODE_EXCLUDE_TARGET_PROCESS_TREE","features":[82]},{"name":"PROCESS_LOOPBACK_MODE_INCLUDE_TARGET_PROCESS_TREE","features":[82]},{"name":"PartType","features":[82]},{"name":"PlaySoundA","features":[3,82]},{"name":"PlaySoundW","features":[3,82]},{"name":"RemoteNetworkDevice","features":[82]},{"name":"SND_ALIAS","features":[82]},{"name":"SND_ALIAS_ID","features":[82]},{"name":"SND_ALIAS_START","features":[82]},{"name":"SND_APPLICATION","features":[82]},{"name":"SND_ASYNC","features":[82]},{"name":"SND_FILENAME","features":[82]},{"name":"SND_FLAGS","features":[82]},{"name":"SND_LOOP","features":[82]},{"name":"SND_MEMORY","features":[82]},{"name":"SND_NODEFAULT","features":[82]},{"name":"SND_NOSTOP","features":[82]},{"name":"SND_NOWAIT","features":[82]},{"name":"SND_PURGE","features":[82]},{"name":"SND_RESOURCE","features":[82]},{"name":"SND_RING","features":[82]},{"name":"SND_SENTRY","features":[82]},{"name":"SND_SYNC","features":[82]},{"name":"SND_SYSTEM","features":[82]},{"name":"SPATIAL_AUDIO_POSITION","features":[82]},{"name":"SPATIAL_AUDIO_STANDARD_COMMANDS_START","features":[82]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS","features":[82]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_NONE","features":[82]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_OFFLOAD","features":[82]},{"name":"SPDIF","features":[82]},{"name":"SPTLAUDCLNT_E_DESTROYED","features":[82]},{"name":"SPTLAUDCLNT_E_ERRORS_IN_OBJECT_CALLS","features":[82]},{"name":"SPTLAUDCLNT_E_INTERNAL","features":[82]},{"name":"SPTLAUDCLNT_E_INVALID_LICENSE","features":[82]},{"name":"SPTLAUDCLNT_E_METADATA_FORMAT_NOT_SUPPORTED","features":[82]},{"name":"SPTLAUDCLNT_E_NO_MORE_OBJECTS","features":[82]},{"name":"SPTLAUDCLNT_E_OBJECT_ALREADY_ACTIVE","features":[82]},{"name":"SPTLAUDCLNT_E_OUT_OF_ORDER","features":[82]},{"name":"SPTLAUDCLNT_E_PROPERTY_NOT_SUPPORTED","features":[82]},{"name":"SPTLAUDCLNT_E_RESOURCES_INVALIDATED","features":[82]},{"name":"SPTLAUDCLNT_E_STATIC_OBJECT_NOT_AVAILABLE","features":[82]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_AVAILABLE","features":[82]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_STOPPED","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_ATTACH_FAILED_INTERNAL_BUFFER","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_ALREADY_ATTACHED","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_NOT_ATTACHED","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_STILL_ATTACHED","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_ALREADY_WRITTEN","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_NOT_FOUND","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_DETACH_FAILED_INTERNAL_BUFFER","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_FORMAT_MISMATCH","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_FRAMECOUNT_OUT_OF_RANGE","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_FRAMEOFFSET_OUT_OF_RANGE","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_INVALID_ARGS","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_ALREADY_OPEN","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_LOCKED_FOR_WRITING","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_COPY_OVERFLOW","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_MUST_HAVE_COMMANDS","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_MEMORY_BOUNDS","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_METADATA_FORMAT_NOT_FOUND","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_NO_BUFFER_ATTACHED","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMOFFSET_WRITTEN","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_FOUND","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_OPEN","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_WRITTEN","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_COMMANDS","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_ITEMS","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_OBJECT_NOT_INITIALIZED","features":[82]},{"name":"SPTLAUD_MD_CLNT_E_VALUE_BUFFER_INCORRECT_SIZE","features":[82]},{"name":"SpatialAudioClientActivationParams","features":[82]},{"name":"SpatialAudioHrtfActivationParams","features":[3,82]},{"name":"SpatialAudioHrtfActivationParams2","features":[3,82]},{"name":"SpatialAudioHrtfDirectivity","features":[82]},{"name":"SpatialAudioHrtfDirectivityCardioid","features":[82]},{"name":"SpatialAudioHrtfDirectivityCone","features":[82]},{"name":"SpatialAudioHrtfDirectivityType","features":[82]},{"name":"SpatialAudioHrtfDirectivityUnion","features":[82]},{"name":"SpatialAudioHrtfDirectivity_Cardioid","features":[82]},{"name":"SpatialAudioHrtfDirectivity_Cone","features":[82]},{"name":"SpatialAudioHrtfDirectivity_OmniDirectional","features":[82]},{"name":"SpatialAudioHrtfDistanceDecay","features":[82]},{"name":"SpatialAudioHrtfDistanceDecayType","features":[82]},{"name":"SpatialAudioHrtfDistanceDecay_CustomDecay","features":[82]},{"name":"SpatialAudioHrtfDistanceDecay_NaturalDecay","features":[82]},{"name":"SpatialAudioHrtfEnvironmentType","features":[82]},{"name":"SpatialAudioHrtfEnvironment_Average","features":[82]},{"name":"SpatialAudioHrtfEnvironment_Large","features":[82]},{"name":"SpatialAudioHrtfEnvironment_Medium","features":[82]},{"name":"SpatialAudioHrtfEnvironment_Outdoors","features":[82]},{"name":"SpatialAudioHrtfEnvironment_Small","features":[82]},{"name":"SpatialAudioMetadataCopyMode","features":[82]},{"name":"SpatialAudioMetadataCopy_Append","features":[82]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithFirst","features":[82]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithLast","features":[82]},{"name":"SpatialAudioMetadataCopy_Overwrite","features":[82]},{"name":"SpatialAudioMetadataItemsInfo","features":[82]},{"name":"SpatialAudioMetadataWriterOverflowMode","features":[82]},{"name":"SpatialAudioMetadataWriterOverflow_Fail","features":[82]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithLast","features":[82]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithNew","features":[82]},{"name":"SpatialAudioObjectRenderStreamActivationParams","features":[3,82]},{"name":"SpatialAudioObjectRenderStreamActivationParams2","features":[3,82]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams","features":[3,82,65,44]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams2","features":[3,82,65,44]},{"name":"Speakers","features":[82]},{"name":"Subunit","features":[82]},{"name":"UnknownDigitalPassthrough","features":[82]},{"name":"UnknownFormFactor","features":[82]},{"name":"VIRTUAL_AUDIO_DEVICE_PROCESS_LOOPBACK","features":[82]},{"name":"VOLUMEWAVEFILTER","features":[82]},{"name":"WAVECAPS_LRVOLUME","features":[82]},{"name":"WAVECAPS_PITCH","features":[82]},{"name":"WAVECAPS_PLAYBACKRATE","features":[82]},{"name":"WAVECAPS_SAMPLEACCURATE","features":[82]},{"name":"WAVECAPS_SYNC","features":[82]},{"name":"WAVECAPS_VOLUME","features":[82]},{"name":"WAVEFILTER","features":[82]},{"name":"WAVEFORMAT","features":[82]},{"name":"WAVEFORMATEX","features":[82]},{"name":"WAVEFORMATEXTENSIBLE","features":[82]},{"name":"WAVEHDR","features":[82]},{"name":"WAVEINCAPS2A","features":[82]},{"name":"WAVEINCAPS2W","features":[82]},{"name":"WAVEINCAPSA","features":[82]},{"name":"WAVEINCAPSW","features":[82]},{"name":"WAVEIN_MAPPER_STATUS_DEVICE","features":[82]},{"name":"WAVEIN_MAPPER_STATUS_FORMAT","features":[82]},{"name":"WAVEIN_MAPPER_STATUS_MAPPED","features":[82]},{"name":"WAVEOUTCAPS2A","features":[82]},{"name":"WAVEOUTCAPS2W","features":[82]},{"name":"WAVEOUTCAPSA","features":[82]},{"name":"WAVEOUTCAPSW","features":[82]},{"name":"WAVEOUT_MAPPER_STATUS_DEVICE","features":[82]},{"name":"WAVEOUT_MAPPER_STATUS_FORMAT","features":[82]},{"name":"WAVEOUT_MAPPER_STATUS_MAPPED","features":[82]},{"name":"WAVERR_BADFORMAT","features":[82]},{"name":"WAVERR_LASTERROR","features":[82]},{"name":"WAVERR_STILLPLAYING","features":[82]},{"name":"WAVERR_SYNC","features":[82]},{"name":"WAVERR_UNPREPARED","features":[82]},{"name":"WAVE_ALLOWSYNC","features":[82]},{"name":"WAVE_FORMAT_1M08","features":[82]},{"name":"WAVE_FORMAT_1M16","features":[82]},{"name":"WAVE_FORMAT_1S08","features":[82]},{"name":"WAVE_FORMAT_1S16","features":[82]},{"name":"WAVE_FORMAT_2M08","features":[82]},{"name":"WAVE_FORMAT_2M16","features":[82]},{"name":"WAVE_FORMAT_2S08","features":[82]},{"name":"WAVE_FORMAT_2S16","features":[82]},{"name":"WAVE_FORMAT_44M08","features":[82]},{"name":"WAVE_FORMAT_44M16","features":[82]},{"name":"WAVE_FORMAT_44S08","features":[82]},{"name":"WAVE_FORMAT_44S16","features":[82]},{"name":"WAVE_FORMAT_48M08","features":[82]},{"name":"WAVE_FORMAT_48M16","features":[82]},{"name":"WAVE_FORMAT_48S08","features":[82]},{"name":"WAVE_FORMAT_48S16","features":[82]},{"name":"WAVE_FORMAT_4M08","features":[82]},{"name":"WAVE_FORMAT_4M16","features":[82]},{"name":"WAVE_FORMAT_4S08","features":[82]},{"name":"WAVE_FORMAT_4S16","features":[82]},{"name":"WAVE_FORMAT_96M08","features":[82]},{"name":"WAVE_FORMAT_96M16","features":[82]},{"name":"WAVE_FORMAT_96S08","features":[82]},{"name":"WAVE_FORMAT_96S16","features":[82]},{"name":"WAVE_FORMAT_DIRECT","features":[82]},{"name":"WAVE_FORMAT_DIRECT_QUERY","features":[82]},{"name":"WAVE_FORMAT_PCM","features":[82]},{"name":"WAVE_FORMAT_QUERY","features":[82]},{"name":"WAVE_INVALIDFORMAT","features":[82]},{"name":"WAVE_MAPPED","features":[82]},{"name":"WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE","features":[82]},{"name":"WAVE_MAPPER","features":[82]},{"name":"WHDR_BEGINLOOP","features":[82]},{"name":"WHDR_DONE","features":[82]},{"name":"WHDR_ENDLOOP","features":[82]},{"name":"WHDR_INQUEUE","features":[82]},{"name":"WHDR_PREPARED","features":[82]},{"name":"WIDM_MAPPER_STATUS","features":[82]},{"name":"WODM_MAPPER_STATUS","features":[82]},{"name":"_AUDCLNT_BUFFERFLAGS","features":[82]},{"name":"acmDriverAddA","features":[3,82]},{"name":"acmDriverAddW","features":[3,82]},{"name":"acmDriverClose","features":[82]},{"name":"acmDriverDetailsA","features":[82,52]},{"name":"acmDriverDetailsW","features":[82,52]},{"name":"acmDriverEnum","features":[3,82]},{"name":"acmDriverID","features":[82]},{"name":"acmDriverMessage","features":[3,82]},{"name":"acmDriverOpen","features":[82]},{"name":"acmDriverPriority","features":[82]},{"name":"acmDriverRemove","features":[82]},{"name":"acmFilterChooseA","features":[3,82]},{"name":"acmFilterChooseW","features":[3,82]},{"name":"acmFilterDetailsA","features":[82]},{"name":"acmFilterDetailsW","features":[82]},{"name":"acmFilterEnumA","features":[3,82]},{"name":"acmFilterEnumW","features":[3,82]},{"name":"acmFilterTagDetailsA","features":[82]},{"name":"acmFilterTagDetailsW","features":[82]},{"name":"acmFilterTagEnumA","features":[3,82]},{"name":"acmFilterTagEnumW","features":[3,82]},{"name":"acmFormatChooseA","features":[3,82]},{"name":"acmFormatChooseW","features":[3,82]},{"name":"acmFormatDetailsA","features":[82]},{"name":"acmFormatDetailsW","features":[82]},{"name":"acmFormatEnumA","features":[3,82]},{"name":"acmFormatEnumW","features":[3,82]},{"name":"acmFormatSuggest","features":[82]},{"name":"acmFormatTagDetailsA","features":[82]},{"name":"acmFormatTagDetailsW","features":[82]},{"name":"acmFormatTagEnumA","features":[3,82]},{"name":"acmFormatTagEnumW","features":[3,82]},{"name":"acmGetVersion","features":[82]},{"name":"acmMetrics","features":[82]},{"name":"acmStreamClose","features":[82]},{"name":"acmStreamConvert","features":[82]},{"name":"acmStreamMessage","features":[3,82]},{"name":"acmStreamOpen","features":[82]},{"name":"acmStreamPrepareHeader","features":[82]},{"name":"acmStreamReset","features":[82]},{"name":"acmStreamSize","features":[82]},{"name":"acmStreamUnprepareHeader","features":[82]},{"name":"auxGetDevCapsA","features":[82]},{"name":"auxGetDevCapsW","features":[82]},{"name":"auxGetNumDevs","features":[82]},{"name":"auxGetVolume","features":[82]},{"name":"auxOutMessage","features":[82]},{"name":"auxSetVolume","features":[82]},{"name":"eAll","features":[82]},{"name":"eCapture","features":[82]},{"name":"eCommunications","features":[82]},{"name":"eConsole","features":[82]},{"name":"eMultimedia","features":[82]},{"name":"eRender","features":[82]},{"name":"midiConnect","features":[82]},{"name":"midiDisconnect","features":[82]},{"name":"midiInAddBuffer","features":[82]},{"name":"midiInClose","features":[82]},{"name":"midiInGetDevCapsA","features":[82]},{"name":"midiInGetDevCapsW","features":[82]},{"name":"midiInGetErrorTextA","features":[82]},{"name":"midiInGetErrorTextW","features":[82]},{"name":"midiInGetID","features":[82]},{"name":"midiInGetNumDevs","features":[82]},{"name":"midiInMessage","features":[82]},{"name":"midiInOpen","features":[82]},{"name":"midiInPrepareHeader","features":[82]},{"name":"midiInReset","features":[82]},{"name":"midiInStart","features":[82]},{"name":"midiInStop","features":[82]},{"name":"midiInUnprepareHeader","features":[82]},{"name":"midiOutCacheDrumPatches","features":[82]},{"name":"midiOutCachePatches","features":[82]},{"name":"midiOutClose","features":[82]},{"name":"midiOutGetDevCapsA","features":[82]},{"name":"midiOutGetDevCapsW","features":[82]},{"name":"midiOutGetErrorTextA","features":[82]},{"name":"midiOutGetErrorTextW","features":[82]},{"name":"midiOutGetID","features":[82]},{"name":"midiOutGetNumDevs","features":[82]},{"name":"midiOutGetVolume","features":[82]},{"name":"midiOutLongMsg","features":[82]},{"name":"midiOutMessage","features":[82]},{"name":"midiOutOpen","features":[82]},{"name":"midiOutPrepareHeader","features":[82]},{"name":"midiOutReset","features":[82]},{"name":"midiOutSetVolume","features":[82]},{"name":"midiOutShortMsg","features":[82]},{"name":"midiOutUnprepareHeader","features":[82]},{"name":"midiStreamClose","features":[82]},{"name":"midiStreamOpen","features":[82]},{"name":"midiStreamOut","features":[82]},{"name":"midiStreamPause","features":[82]},{"name":"midiStreamPosition","features":[82]},{"name":"midiStreamProperty","features":[82]},{"name":"midiStreamRestart","features":[82]},{"name":"midiStreamStop","features":[82]},{"name":"mixerClose","features":[82]},{"name":"mixerGetControlDetailsA","features":[3,82]},{"name":"mixerGetControlDetailsW","features":[3,82]},{"name":"mixerGetDevCapsA","features":[82]},{"name":"mixerGetDevCapsW","features":[82]},{"name":"mixerGetID","features":[82]},{"name":"mixerGetLineControlsA","features":[82]},{"name":"mixerGetLineControlsW","features":[82]},{"name":"mixerGetLineInfoA","features":[82]},{"name":"mixerGetLineInfoW","features":[82]},{"name":"mixerGetNumDevs","features":[82]},{"name":"mixerMessage","features":[82]},{"name":"mixerOpen","features":[82]},{"name":"mixerSetControlDetails","features":[3,82]},{"name":"sndPlaySoundA","features":[3,82]},{"name":"sndPlaySoundW","features":[3,82]},{"name":"tACMFORMATDETAILSW","features":[82]},{"name":"waveInAddBuffer","features":[82]},{"name":"waveInClose","features":[82]},{"name":"waveInGetDevCapsA","features":[82]},{"name":"waveInGetDevCapsW","features":[82]},{"name":"waveInGetErrorTextA","features":[82]},{"name":"waveInGetErrorTextW","features":[82]},{"name":"waveInGetID","features":[82]},{"name":"waveInGetNumDevs","features":[82]},{"name":"waveInGetPosition","features":[82]},{"name":"waveInMessage","features":[82]},{"name":"waveInOpen","features":[82]},{"name":"waveInPrepareHeader","features":[82]},{"name":"waveInReset","features":[82]},{"name":"waveInStart","features":[82]},{"name":"waveInStop","features":[82]},{"name":"waveInUnprepareHeader","features":[82]},{"name":"waveOutBreakLoop","features":[82]},{"name":"waveOutClose","features":[82]},{"name":"waveOutGetDevCapsA","features":[82]},{"name":"waveOutGetDevCapsW","features":[82]},{"name":"waveOutGetErrorTextA","features":[82]},{"name":"waveOutGetErrorTextW","features":[82]},{"name":"waveOutGetID","features":[82]},{"name":"waveOutGetNumDevs","features":[82]},{"name":"waveOutGetPitch","features":[82]},{"name":"waveOutGetPlaybackRate","features":[82]},{"name":"waveOutGetPosition","features":[82]},{"name":"waveOutGetVolume","features":[82]},{"name":"waveOutMessage","features":[82]},{"name":"waveOutOpen","features":[82]},{"name":"waveOutPause","features":[82]},{"name":"waveOutPrepareHeader","features":[82]},{"name":"waveOutReset","features":[82]},{"name":"waveOutRestart","features":[82]},{"name":"waveOutSetPitch","features":[82]},{"name":"waveOutSetPlaybackRate","features":[82]},{"name":"waveOutSetVolume","features":[82]},{"name":"waveOutUnprepareHeader","features":[82]},{"name":"waveOutWrite","features":[82]}],"435":[{"name":"DMOCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[83]},{"name":"DMOCATEGORY_AGC","features":[83]},{"name":"DMOCATEGORY_AUDIO_CAPTURE_EFFECT","features":[83]},{"name":"DMOCATEGORY_AUDIO_DECODER","features":[83]},{"name":"DMOCATEGORY_AUDIO_EFFECT","features":[83]},{"name":"DMOCATEGORY_AUDIO_ENCODER","features":[83]},{"name":"DMOCATEGORY_AUDIO_NOISE_SUPPRESS","features":[83]},{"name":"DMOCATEGORY_VIDEO_DECODER","features":[83]},{"name":"DMOCATEGORY_VIDEO_EFFECT","features":[83]},{"name":"DMOCATEGORY_VIDEO_ENCODER","features":[83]},{"name":"DMOEnum","features":[83]},{"name":"DMOGetName","features":[83]},{"name":"DMOGetTypes","features":[83]},{"name":"DMORegister","features":[83]},{"name":"DMOUnregister","features":[83]},{"name":"DMO_ENUMF_INCLUDE_KEYED","features":[83]},{"name":"DMO_ENUM_FLAGS","features":[83]},{"name":"DMO_E_INVALIDSTREAMINDEX","features":[83]},{"name":"DMO_E_INVALIDTYPE","features":[83]},{"name":"DMO_E_NOTACCEPTING","features":[83]},{"name":"DMO_E_NO_MORE_ITEMS","features":[83]},{"name":"DMO_E_TYPE_NOT_ACCEPTED","features":[83]},{"name":"DMO_E_TYPE_NOT_SET","features":[83]},{"name":"DMO_INPLACE_NORMAL","features":[83]},{"name":"DMO_INPLACE_ZERO","features":[83]},{"name":"DMO_INPUT_DATA_BUFFERF_DISCONTINUITY","features":[83]},{"name":"DMO_INPUT_DATA_BUFFERF_SYNCPOINT","features":[83]},{"name":"DMO_INPUT_DATA_BUFFERF_TIME","features":[83]},{"name":"DMO_INPUT_DATA_BUFFERF_TIMELENGTH","features":[83]},{"name":"DMO_INPUT_STATUSF_ACCEPT_DATA","features":[83]},{"name":"DMO_INPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[83]},{"name":"DMO_INPUT_STREAMF_HOLDS_BUFFERS","features":[83]},{"name":"DMO_INPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[83]},{"name":"DMO_INPUT_STREAMF_WHOLE_SAMPLES","features":[83]},{"name":"DMO_MEDIA_TYPE","features":[3,83]},{"name":"DMO_OUTPUT_DATA_BUFFER","features":[83]},{"name":"DMO_OUTPUT_DATA_BUFFERF_DISCONTINUITY","features":[83]},{"name":"DMO_OUTPUT_DATA_BUFFERF_INCOMPLETE","features":[83]},{"name":"DMO_OUTPUT_DATA_BUFFERF_SYNCPOINT","features":[83]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIME","features":[83]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIMELENGTH","features":[83]},{"name":"DMO_OUTPUT_STREAMF_DISCARDABLE","features":[83]},{"name":"DMO_OUTPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[83]},{"name":"DMO_OUTPUT_STREAMF_OPTIONAL","features":[83]},{"name":"DMO_OUTPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[83]},{"name":"DMO_OUTPUT_STREAMF_WHOLE_SAMPLES","features":[83]},{"name":"DMO_PARTIAL_MEDIATYPE","features":[83]},{"name":"DMO_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER","features":[83]},{"name":"DMO_QUALITY_STATUS_ENABLED","features":[83]},{"name":"DMO_REGISTERF_IS_KEYED","features":[83]},{"name":"DMO_REGISTER_FLAGS","features":[83]},{"name":"DMO_SET_TYPEF_CLEAR","features":[83]},{"name":"DMO_SET_TYPEF_TEST_ONLY","features":[83]},{"name":"DMO_VOSF_NEEDS_PREVIOUS_SAMPLE","features":[83]},{"name":"IDMOQualityControl","features":[83]},{"name":"IDMOVideoOutputOptimizations","features":[83]},{"name":"IEnumDMO","features":[83]},{"name":"IMediaBuffer","features":[83]},{"name":"IMediaObject","features":[83]},{"name":"IMediaObjectInPlace","features":[83]},{"name":"MoCopyMediaType","features":[3,83]},{"name":"MoCreateMediaType","features":[3,83]},{"name":"MoDeleteMediaType","features":[3,83]},{"name":"MoDuplicateMediaType","features":[3,83]},{"name":"MoFreeMediaType","features":[3,83]},{"name":"MoInitMediaType","features":[3,83]},{"name":"_DMO_INPLACE_PROCESS_FLAGS","features":[83]},{"name":"_DMO_INPUT_DATA_BUFFER_FLAGS","features":[83]},{"name":"_DMO_INPUT_STATUS_FLAGS","features":[83]},{"name":"_DMO_INPUT_STREAM_INFO_FLAGS","features":[83]},{"name":"_DMO_OUTPUT_DATA_BUFFER_FLAGS","features":[83]},{"name":"_DMO_OUTPUT_STREAM_INFO_FLAGS","features":[83]},{"name":"_DMO_PROCESS_OUTPUT_FLAGS","features":[83]},{"name":"_DMO_QUALITY_STATUS_FLAGS","features":[83]},{"name":"_DMO_SET_TYPE_FLAGS","features":[83]},{"name":"_DMO_VIDEO_OUTPUT_STREAM_FLAGS","features":[83]}],"436":[{"name":"AEC_MODE_FULL_DUPLEX","features":[84]},{"name":"AEC_MODE_HALF_DUPLEX","features":[84]},{"name":"AEC_MODE_PASS_THROUGH","features":[84]},{"name":"AEC_STATUS_FD_CURRENTLY_CONVERGED","features":[84]},{"name":"AEC_STATUS_FD_HISTORY_CONTINUOUSLY_CONVERGED","features":[84]},{"name":"AEC_STATUS_FD_HISTORY_PREVIOUSLY_DIVERGED","features":[84]},{"name":"AEC_STATUS_FD_HISTORY_UNINITIALIZED","features":[84]},{"name":"ALLOCATOR_PROPERTIES_EX","features":[84]},{"name":"APO_CLASS_UUID","features":[84]},{"name":"AUDIOENDPOINT_CLASS_UUID","features":[84]},{"name":"AUDIOMODULE_MAX_DATA_SIZE","features":[84]},{"name":"AUDIOMODULE_MAX_NAME_CCH_SIZE","features":[84]},{"name":"AUDIOPOSTURE_ORIENTATION","features":[84]},{"name":"AUDIOPOSTURE_ORIENTATION_NOTROTATED","features":[84]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED180DEGREESCOUNTERCLOCKWISE","features":[84]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED270DEGREESCOUNTERCLOCKWISE","features":[84]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED90DEGREESCOUNTERCLOCKWISE","features":[84]},{"name":"AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[3,84]},{"name":"AUDIO_CURVE_TYPE","features":[84]},{"name":"AUDIO_CURVE_TYPE_NONE","features":[84]},{"name":"AUDIO_CURVE_TYPE_WINDOWS_FADE","features":[84]},{"name":"AUDIO_EFFECT_TYPE_ACOUSTIC_ECHO_CANCELLATION","features":[84]},{"name":"AUDIO_EFFECT_TYPE_AUTOMATIC_GAIN_CONTROL","features":[84]},{"name":"AUDIO_EFFECT_TYPE_BASS_BOOST","features":[84]},{"name":"AUDIO_EFFECT_TYPE_BASS_MANAGEMENT","features":[84]},{"name":"AUDIO_EFFECT_TYPE_BEAMFORMING","features":[84]},{"name":"AUDIO_EFFECT_TYPE_CONSTANT_TONE_REMOVAL","features":[84]},{"name":"AUDIO_EFFECT_TYPE_DEEP_NOISE_SUPPRESSION","features":[84]},{"name":"AUDIO_EFFECT_TYPE_DYNAMIC_RANGE_COMPRESSION","features":[84]},{"name":"AUDIO_EFFECT_TYPE_ENVIRONMENTAL_EFFECTS","features":[84]},{"name":"AUDIO_EFFECT_TYPE_EQUALIZER","features":[84]},{"name":"AUDIO_EFFECT_TYPE_FAR_FIELD_BEAMFORMING","features":[84]},{"name":"AUDIO_EFFECT_TYPE_LOUDNESS_EQUALIZER","features":[84]},{"name":"AUDIO_EFFECT_TYPE_NOISE_SUPPRESSION","features":[84]},{"name":"AUDIO_EFFECT_TYPE_ROOM_CORRECTION","features":[84]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_COMPENSATION","features":[84]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_FILL","features":[84]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_PROTECTION","features":[84]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_HEADPHONES","features":[84]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_SURROUND","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_COMMUNICATIONS","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_DEFAULT","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_FAR_FIELD_SPEECH","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MEDIA","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MOVIE","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_NOTIFICATION","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_RAW","features":[84]},{"name":"AUDIO_SIGNALPROCESSINGMODE_SPEECH","features":[84]},{"name":"AllocatorStrategy_DontCare","features":[84]},{"name":"AllocatorStrategy_MaximizeSpeed","features":[84]},{"name":"AllocatorStrategy_MinimizeFrameSize","features":[84]},{"name":"AllocatorStrategy_MinimizeNumberOfAllocators","features":[84]},{"name":"AllocatorStrategy_MinimizeNumberOfFrames","features":[84]},{"name":"BLUETOOTHLE_MIDI_SERVICE_UUID","features":[84]},{"name":"BLUETOOTH_MIDI_DATAIO_CHARACTERISTIC","features":[84]},{"name":"BUS_INTERFACE_REFERENCE_VERSION","features":[84]},{"name":"CAPTURE_MEMORY_ALLOCATION_FLAGS","features":[84]},{"name":"CASCADE_FORM","features":[84]},{"name":"CC_BYTE_PAIR","features":[84]},{"name":"CC_HW_FIELD","features":[84]},{"name":"CC_MAX_HW_DECODE_LINES","features":[84]},{"name":"CLSID_KsIBasicAudioInterfaceHandler","features":[84]},{"name":"CLSID_Proxy","features":[84]},{"name":"CONSTRICTOR_OPTION","features":[84]},{"name":"CONSTRICTOR_OPTION_DISABLE","features":[84]},{"name":"CONSTRICTOR_OPTION_MUTE","features":[84]},{"name":"DEVCAPS","features":[84]},{"name":"DEVPKEY_KsAudio_Controller_DeviceInterface_Path","features":[1,84]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints","features":[1,84]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints2","features":[1,84]},{"name":"DIRECT_FORM","features":[84]},{"name":"DS3DVECTOR","features":[84]},{"name":"DS3D_HRTF_VERSION_1","features":[84]},{"name":"EDeviceControlUseType","features":[84]},{"name":"EPcxConnectionType","features":[84]},{"name":"EPcxGenLocation","features":[84]},{"name":"EPcxGenLocation_enum_count","features":[84]},{"name":"EPcxGeoLocation","features":[84]},{"name":"EPcxGeoLocation_enum_count","features":[84]},{"name":"EPxcPortConnection","features":[84]},{"name":"EVENTSETID_CROSSBAR","features":[84]},{"name":"EVENTSETID_TUNER","features":[84]},{"name":"EVENTSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[84]},{"name":"EVENTSETID_VIDEODECODER","features":[84]},{"name":"FLOAT_COEFF","features":[84]},{"name":"FRAMING_CACHE_OPS","features":[84]},{"name":"FRAMING_PROP","features":[84]},{"name":"FULL_FILTER","features":[84]},{"name":"FramingProp_Ex","features":[84]},{"name":"FramingProp_None","features":[84]},{"name":"FramingProp_Old","features":[84]},{"name":"FramingProp_Uninitialized","features":[84]},{"name":"Framing_Cache_ReadLast","features":[84]},{"name":"Framing_Cache_ReadOrig","features":[84]},{"name":"Framing_Cache_Update","features":[84]},{"name":"Framing_Cache_Write","features":[84]},{"name":"GUID_NULL","features":[84]},{"name":"IKsAggregateControl","features":[84]},{"name":"IKsAllocator","features":[84]},{"name":"IKsAllocatorEx","features":[84]},{"name":"IKsClockPropertySet","features":[84]},{"name":"IKsControl","features":[84]},{"name":"IKsDataTypeCompletion","features":[84]},{"name":"IKsDataTypeHandler","features":[84]},{"name":"IKsFormatSupport","features":[84]},{"name":"IKsInterfaceHandler","features":[84]},{"name":"IKsJackContainerId","features":[84]},{"name":"IKsJackDescription","features":[84]},{"name":"IKsJackDescription2","features":[84]},{"name":"IKsJackDescription3","features":[84]},{"name":"IKsJackSinkInformation","features":[84]},{"name":"IKsNodeControl","features":[84]},{"name":"IKsNotifyEvent","features":[84]},{"name":"IKsObject","features":[84]},{"name":"IKsPin","features":[84]},{"name":"IKsPinEx","features":[84]},{"name":"IKsPinFactory","features":[84]},{"name":"IKsPinPipe","features":[84]},{"name":"IKsPropertySet","features":[84]},{"name":"IKsQualityForwarder","features":[84]},{"name":"IKsTopology","features":[84]},{"name":"IKsTopologyInfo","features":[84]},{"name":"INTERLEAVED_AUDIO_FORMAT_INFORMATION","features":[84]},{"name":"IOCTL_KS_DISABLE_EVENT","features":[84]},{"name":"IOCTL_KS_ENABLE_EVENT","features":[84]},{"name":"IOCTL_KS_HANDSHAKE","features":[84]},{"name":"IOCTL_KS_METHOD","features":[84]},{"name":"IOCTL_KS_PROPERTY","features":[84]},{"name":"IOCTL_KS_READ_STREAM","features":[84]},{"name":"IOCTL_KS_RESET_STATE","features":[84]},{"name":"IOCTL_KS_WRITE_STREAM","features":[84]},{"name":"JACKDESC2_DYNAMIC_FORMAT_CHANGE_CAPABILITY","features":[84]},{"name":"JACKDESC2_PRESENCE_DETECT_CAPABILITY","features":[84]},{"name":"KSAC3_ALTERNATE_AUDIO","features":[3,84]},{"name":"KSAC3_ALTERNATE_AUDIO_1","features":[84]},{"name":"KSAC3_ALTERNATE_AUDIO_2","features":[84]},{"name":"KSAC3_ALTERNATE_AUDIO_BOTH","features":[84]},{"name":"KSAC3_BIT_STREAM_MODE","features":[84]},{"name":"KSAC3_DIALOGUE_LEVEL","features":[84]},{"name":"KSAC3_DOWNMIX","features":[3,84]},{"name":"KSAC3_ERROR_CONCEALMENT","features":[3,84]},{"name":"KSAC3_ROOM_TYPE","features":[3,84]},{"name":"KSAC3_SERVICE_COMMENTARY","features":[84]},{"name":"KSAC3_SERVICE_DIALOG_ONLY","features":[84]},{"name":"KSAC3_SERVICE_EMERGENCY_FLASH","features":[84]},{"name":"KSAC3_SERVICE_HEARING_IMPAIRED","features":[84]},{"name":"KSAC3_SERVICE_MAIN_AUDIO","features":[84]},{"name":"KSAC3_SERVICE_NO_DIALOG","features":[84]},{"name":"KSAC3_SERVICE_VISUALLY_IMPAIRED","features":[84]},{"name":"KSAC3_SERVICE_VOICE_OVER","features":[84]},{"name":"KSALGORITHMINSTANCE_SYSTEM_ACOUSTIC_ECHO_CANCEL","features":[84]},{"name":"KSALGORITHMINSTANCE_SYSTEM_AGC","features":[84]},{"name":"KSALGORITHMINSTANCE_SYSTEM_MICROPHONE_ARRAY_PROCESSOR","features":[84]},{"name":"KSALGORITHMINSTANCE_SYSTEM_NOISE_SUPPRESS","features":[84]},{"name":"KSALLOCATORMODE","features":[84]},{"name":"KSALLOCATOR_FLAG_2D_BUFFER_REQUIRED","features":[84]},{"name":"KSALLOCATOR_FLAG_ALLOCATOR_EXISTS","features":[84]},{"name":"KSALLOCATOR_FLAG_ATTENTION_STEPPING","features":[84]},{"name":"KSALLOCATOR_FLAG_CAN_ALLOCATE","features":[84]},{"name":"KSALLOCATOR_FLAG_CYCLE","features":[84]},{"name":"KSALLOCATOR_FLAG_DEVICE_SPECIFIC","features":[84]},{"name":"KSALLOCATOR_FLAG_ENABLE_CACHED_MDL","features":[84]},{"name":"KSALLOCATOR_FLAG_INDEPENDENT_RANGES","features":[84]},{"name":"KSALLOCATOR_FLAG_INSIST_ON_FRAMESIZE_RATIO","features":[84]},{"name":"KSALLOCATOR_FLAG_MULTIPLE_OUTPUT","features":[84]},{"name":"KSALLOCATOR_FLAG_NO_FRAME_INTEGRITY","features":[84]},{"name":"KSALLOCATOR_FLAG_PARTIAL_READ_SUPPORT","features":[84]},{"name":"KSALLOCATOR_FRAMING","features":[84]},{"name":"KSALLOCATOR_FRAMING_EX","features":[84]},{"name":"KSALLOCATOR_OPTIONF_COMPATIBLE","features":[84]},{"name":"KSALLOCATOR_OPTIONF_SYSTEM_MEMORY","features":[84]},{"name":"KSALLOCATOR_OPTIONF_VALID","features":[84]},{"name":"KSALLOCATOR_REQUIREMENTF_FRAME_INTEGRITY","features":[84]},{"name":"KSALLOCATOR_REQUIREMENTF_INPLACE_MODIFIER","features":[84]},{"name":"KSALLOCATOR_REQUIREMENTF_MUST_ALLOCATE","features":[84]},{"name":"KSALLOCATOR_REQUIREMENTF_PREFERENCES_ONLY","features":[84]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY","features":[84]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY_CUSTOM_ALLOCATION","features":[84]},{"name":"KSATTRIBUTE","features":[84]},{"name":"KSATTRIBUTEID_AUDIOSIGNALPROCESSING_MODE","features":[84]},{"name":"KSATTRIBUTE_AUDIOSIGNALPROCESSING_MODE","features":[84]},{"name":"KSATTRIBUTE_REQUIRED","features":[84]},{"name":"KSAUDDECOUTMODE_PCM_51","features":[84]},{"name":"KSAUDDECOUTMODE_SPDIFF","features":[84]},{"name":"KSAUDDECOUTMODE_STEREO_ANALOG","features":[84]},{"name":"KSAUDFNAME_3D_CENTER","features":[84]},{"name":"KSAUDFNAME_3D_DEPTH","features":[84]},{"name":"KSAUDFNAME_3D_STEREO","features":[84]},{"name":"KSAUDFNAME_ALTERNATE_MICROPHONE","features":[84]},{"name":"KSAUDFNAME_AUX","features":[84]},{"name":"KSAUDFNAME_AUX_MUTE","features":[84]},{"name":"KSAUDFNAME_AUX_VOLUME","features":[84]},{"name":"KSAUDFNAME_BASS","features":[84]},{"name":"KSAUDFNAME_CD_AUDIO","features":[84]},{"name":"KSAUDFNAME_CD_IN_VOLUME","features":[84]},{"name":"KSAUDFNAME_CD_MUTE","features":[84]},{"name":"KSAUDFNAME_CD_VOLUME","features":[84]},{"name":"KSAUDFNAME_LINE_IN","features":[84]},{"name":"KSAUDFNAME_LINE_IN_VOLUME","features":[84]},{"name":"KSAUDFNAME_LINE_MUTE","features":[84]},{"name":"KSAUDFNAME_LINE_VOLUME","features":[84]},{"name":"KSAUDFNAME_MASTER_MUTE","features":[84]},{"name":"KSAUDFNAME_MASTER_VOLUME","features":[84]},{"name":"KSAUDFNAME_MICROPHONE_BOOST","features":[84]},{"name":"KSAUDFNAME_MIC_IN_VOLUME","features":[84]},{"name":"KSAUDFNAME_MIC_MUTE","features":[84]},{"name":"KSAUDFNAME_MIC_VOLUME","features":[84]},{"name":"KSAUDFNAME_MIDI","features":[84]},{"name":"KSAUDFNAME_MIDI_IN_VOLUME","features":[84]},{"name":"KSAUDFNAME_MIDI_MUTE","features":[84]},{"name":"KSAUDFNAME_MIDI_VOLUME","features":[84]},{"name":"KSAUDFNAME_MIDRANGE","features":[84]},{"name":"KSAUDFNAME_MONO_MIX","features":[84]},{"name":"KSAUDFNAME_MONO_MIX_MUTE","features":[84]},{"name":"KSAUDFNAME_MONO_MIX_VOLUME","features":[84]},{"name":"KSAUDFNAME_MONO_OUT","features":[84]},{"name":"KSAUDFNAME_MONO_OUT_MUTE","features":[84]},{"name":"KSAUDFNAME_MONO_OUT_VOLUME","features":[84]},{"name":"KSAUDFNAME_PC_SPEAKER","features":[84]},{"name":"KSAUDFNAME_PC_SPEAKER_MUTE","features":[84]},{"name":"KSAUDFNAME_PC_SPEAKER_VOLUME","features":[84]},{"name":"KSAUDFNAME_PEAKMETER","features":[84]},{"name":"KSAUDFNAME_RECORDING_CONTROL","features":[84]},{"name":"KSAUDFNAME_RECORDING_SOURCE","features":[84]},{"name":"KSAUDFNAME_STEREO_MIX","features":[84]},{"name":"KSAUDFNAME_STEREO_MIX_MUTE","features":[84]},{"name":"KSAUDFNAME_STEREO_MIX_VOLUME","features":[84]},{"name":"KSAUDFNAME_TREBLE","features":[84]},{"name":"KSAUDFNAME_VIDEO","features":[84]},{"name":"KSAUDFNAME_VIDEO_MUTE","features":[84]},{"name":"KSAUDFNAME_VIDEO_VOLUME","features":[84]},{"name":"KSAUDFNAME_VOLUME_CONTROL","features":[84]},{"name":"KSAUDFNAME_WAVE_IN_VOLUME","features":[84]},{"name":"KSAUDFNAME_WAVE_MUTE","features":[84]},{"name":"KSAUDFNAME_WAVE_OUT_MIX","features":[84]},{"name":"KSAUDFNAME_WAVE_VOLUME","features":[84]},{"name":"KSAUDIOENGINE_BUFFER_SIZE_RANGE","features":[84]},{"name":"KSAUDIOENGINE_DESCRIPTOR","features":[84]},{"name":"KSAUDIOENGINE_DEVICECONTROLS","features":[84]},{"name":"KSAUDIOENGINE_VOLUMELEVEL","features":[84]},{"name":"KSAUDIOMODULE_DESCRIPTOR","features":[84]},{"name":"KSAUDIOMODULE_NOTIFICATION","features":[84]},{"name":"KSAUDIOMODULE_PROPERTY","features":[84]},{"name":"KSAUDIO_CHANNEL_CONFIG","features":[84]},{"name":"KSAUDIO_COPY_PROTECTION","features":[3,84]},{"name":"KSAUDIO_CPU_RESOURCES_HOST_CPU","features":[84]},{"name":"KSAUDIO_CPU_RESOURCES_NOT_HOST_CPU","features":[84]},{"name":"KSAUDIO_DYNAMIC_RANGE","features":[84]},{"name":"KSAUDIO_MICROPHONE_COORDINATES","features":[84]},{"name":"KSAUDIO_MIC_ARRAY_GEOMETRY","features":[84]},{"name":"KSAUDIO_MIXCAP_TABLE","features":[3,84]},{"name":"KSAUDIO_MIXLEVEL","features":[3,84]},{"name":"KSAUDIO_MIX_CAPS","features":[3,84]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS","features":[84]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS2","features":[84]},{"name":"KSAUDIO_PACKETSIZE_PROCESSINGMODE_CONSTRAINT","features":[84]},{"name":"KSAUDIO_POSITION","features":[84]},{"name":"KSAUDIO_POSITIONEX","features":[84]},{"name":"KSAUDIO_PRESENTATION_POSITION","features":[84]},{"name":"KSAUDIO_QUALITY_ADVANCED","features":[84]},{"name":"KSAUDIO_QUALITY_BASIC","features":[84]},{"name":"KSAUDIO_QUALITY_PC","features":[84]},{"name":"KSAUDIO_QUALITY_WORST","features":[84]},{"name":"KSAUDIO_SPEAKER_DIRECTOUT","features":[84]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_CENTER","features":[84]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_LEFT","features":[84]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_RIGHT","features":[84]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_LEFT","features":[84]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_RIGHT","features":[84]},{"name":"KSAUDIO_SPEAKER_MONO","features":[84]},{"name":"KSAUDIO_SPEAKER_SUPER_WOOFER","features":[84]},{"name":"KSAUDIO_SPEAKER_TOP_MIDDLE","features":[84]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_HEADPHONE","features":[84]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MAX","features":[84]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MIN","features":[84]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_NARROW","features":[84]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_WIDE","features":[84]},{"name":"KSCAMERAPROFILE_BalancedVideoAndPhoto","features":[84]},{"name":"KSCAMERAPROFILE_CompressedCamera","features":[84]},{"name":"KSCAMERAPROFILE_FLAGS_FACEDETECTION","features":[84]},{"name":"KSCAMERAPROFILE_FLAGS_PHOTOHDR","features":[84]},{"name":"KSCAMERAPROFILE_FLAGS_PREVIEW_RES_MUSTMATCH","features":[84]},{"name":"KSCAMERAPROFILE_FLAGS_VARIABLEPHOTOSEQUENCE","features":[84]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOHDR","features":[84]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOSTABLIZATION","features":[84]},{"name":"KSCAMERAPROFILE_FaceAuth_Mode","features":[84]},{"name":"KSCAMERAPROFILE_HDRWithWCGPhoto","features":[84]},{"name":"KSCAMERAPROFILE_HDRWithWCGVideo","features":[84]},{"name":"KSCAMERAPROFILE_HighFrameRate","features":[84]},{"name":"KSCAMERAPROFILE_HighQualityPhoto","features":[84]},{"name":"KSCAMERAPROFILE_Legacy","features":[84]},{"name":"KSCAMERAPROFILE_PhotoSequence","features":[84]},{"name":"KSCAMERAPROFILE_VariablePhotoSequence","features":[84]},{"name":"KSCAMERAPROFILE_VideoConferencing","features":[84]},{"name":"KSCAMERAPROFILE_VideoHDR8","features":[84]},{"name":"KSCAMERAPROFILE_VideoRecording","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_FNF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_HDR","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_ULTRALOWLIGHT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_BLUR","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_CONFIGCAPS","features":[3,84]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_MASK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_SHALLOWFOCUS","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_CAMERAOFFSET","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_ASYNCCONTROL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_CANCELLABLE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_MASK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_RESERVED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_AUTOFACEFRAMING","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPS","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPSHEADER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_MANUAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_SETTING","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMPENSATION","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_FULLSTEP","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_HALFSTEP","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_QUARTERSTEP","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_SIXTHSTEP","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_THIRDSTEP","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_STARE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_ALTERNATIVE_FRAME_ILLUMINATION","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_BACKGROUND_SUBTRACTION","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_DISABLED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_BLINK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PHOTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PREVIEW","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_SMILE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_VIDEO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FIELDOFVIEW","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FILTERSCOPE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_CANCELOPERATION","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_MASK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO_ADJUSTABLEPOWER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_MULTIFLASHSUPPORTED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON_ADJUSTABLEPOWER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_REDEYEREDUCTION","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_SINGLEFLASH","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FAILED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FOCUSED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_LOST","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_SEARCHING","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_UNINITIALIZED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUS","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUSLOCK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_HYPERFOCAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_INFINITY","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_NEAREST","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DRIVERFALLBACK_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_FULLRANGE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_HYPERFOCAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_INFINITY","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_MACRO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_NORMAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_REGIONBASED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_UNLOCK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_HEADER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALTERNATING_FRAME_ILLUMINATION","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALWAYS_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_100","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_12800","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_1600","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_200","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_25600","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_3200","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_400","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_50","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_6400","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_80","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_800","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_MANUAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_METADATAINFO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_ALIGNMENTREQUIRED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_MEMORYTYPE_MASK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_SYSTEMMEMORY","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_1024","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_128","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_16","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_2048","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_256","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_32","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_4096","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_512","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_64","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_8192","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_DEFAULT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_LATENCY","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_PHOTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_POWER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_QUALITY","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_VIDEO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_NORMAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_NONE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_VARIABLE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_16X","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_2X","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_4X","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_8X","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_DISABLE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_PROFILE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_DYNAMIC","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_FACE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_UNKNOWN","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPS","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPSHEADER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_EXPOSURE","features":[3,84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_FOCUS","features":[3,84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_INFO","features":[3,84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROLHEADER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_WHITEBALANCE","features":[3,84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BACKLIT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BEACH","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_CANDLELIGHT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_LANDSCAPE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MACRO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MANUAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHTPORTRAIT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_PORTRAIT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SNOW","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SPORT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SUNSET","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_DISABLED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_ENABLED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VALUE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_LOCK","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_MANUAL","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCSETTING","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_AUTO","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_OFF","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON_ADJUSTABLEPOWER","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_DISABLED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_ENABLED","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CANDLELIGHT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CLOUDY","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_DAYLIGHT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLASH","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLUORESCENT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_TUNGSTEN","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_MODE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_PRESET","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_TEMPERATURE","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DEFAULT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DIRECT","features":[84]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_SMOOTH","features":[84]},{"name":"KSCAMERA_MAXVIDEOFPS_FORPHOTORES","features":[84]},{"name":"KSCAMERA_METADATA_BACKGROUNDSEGMENTATIONMASK","features":[3,84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURECOMPENSATION","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURETIME","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASH","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASHPOWER","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FOCUSSTATE","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ISOSPEED","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_LENSPOSITION","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SCENEMODE","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SENSORFRAMERATE","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_WHITEBALANCE","features":[84]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ZOOMFACTOR","features":[84]},{"name":"KSCAMERA_METADATA_DIGITALWINDOW","features":[84]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION","features":[84]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION_FLAG_ON","features":[84]},{"name":"KSCAMERA_METADATA_ITEMHEADER","features":[84]},{"name":"KSCAMERA_METADATA_PHOTOCONFIRMATION","features":[84]},{"name":"KSCAMERA_MetadataId","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_AUTO","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_HEADER","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_ITEM_HEADER","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_CUSTOM_ITEM","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_FRAME_HEADER","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_HEADER","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_CUSTOM","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_COMPENSATION","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_TIME","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FLASH","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FOCUS","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_HEADER","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_ISO","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_PHOTOCONFIRMATION","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_TYPE","features":[84]},{"name":"KSCAMERA_PERFRAMESETTING_MANUAL","features":[84]},{"name":"KSCAMERA_PROFILE_CONCURRENCYINFO","features":[84]},{"name":"KSCAMERA_PROFILE_INFO","features":[84]},{"name":"KSCAMERA_PROFILE_MEDIAINFO","features":[84]},{"name":"KSCAMERA_PROFILE_PININFO","features":[84]},{"name":"KSCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[84]},{"name":"KSCATEGORY_AUDIO","features":[84]},{"name":"KSCATEGORY_BRIDGE","features":[84]},{"name":"KSCATEGORY_CAPTURE","features":[84]},{"name":"KSCATEGORY_CLOCK","features":[84]},{"name":"KSCATEGORY_COMMUNICATIONSTRANSFORM","features":[84]},{"name":"KSCATEGORY_CROSSBAR","features":[84]},{"name":"KSCATEGORY_DATACOMPRESSOR","features":[84]},{"name":"KSCATEGORY_DATADECOMPRESSOR","features":[84]},{"name":"KSCATEGORY_DATATRANSFORM","features":[84]},{"name":"KSCATEGORY_ENCODER","features":[84]},{"name":"KSCATEGORY_ESCALANTE_PLATFORM_DRIVER","features":[84]},{"name":"KSCATEGORY_FILESYSTEM","features":[84]},{"name":"KSCATEGORY_INTERFACETRANSFORM","features":[84]},{"name":"KSCATEGORY_MEDIUMTRANSFORM","features":[84]},{"name":"KSCATEGORY_MICROPHONE_ARRAY_PROCESSOR","features":[84]},{"name":"KSCATEGORY_MIXER","features":[84]},{"name":"KSCATEGORY_MULTIPLEXER","features":[84]},{"name":"KSCATEGORY_NETWORK","features":[84]},{"name":"KSCATEGORY_NETWORK_CAMERA","features":[84]},{"name":"KSCATEGORY_PROXY","features":[84]},{"name":"KSCATEGORY_QUALITY","features":[84]},{"name":"KSCATEGORY_REALTIME","features":[84]},{"name":"KSCATEGORY_RENDER","features":[84]},{"name":"KSCATEGORY_SENSOR_CAMERA","features":[84]},{"name":"KSCATEGORY_SENSOR_GROUP","features":[84]},{"name":"KSCATEGORY_SPLITTER","features":[84]},{"name":"KSCATEGORY_TEXT","features":[84]},{"name":"KSCATEGORY_TOPOLOGY","features":[84]},{"name":"KSCATEGORY_TVAUDIO","features":[84]},{"name":"KSCATEGORY_TVTUNER","features":[84]},{"name":"KSCATEGORY_VBICODEC","features":[84]},{"name":"KSCATEGORY_VIDEO","features":[84]},{"name":"KSCATEGORY_VIDEO_CAMERA","features":[84]},{"name":"KSCATEGORY_VIRTUAL","features":[84]},{"name":"KSCATEGORY_VPMUX","features":[84]},{"name":"KSCATEGORY_WDMAUD_USE_PIN_NAME","features":[84]},{"name":"KSCLOCK_CREATE","features":[84]},{"name":"KSCOMPONENTID","features":[84]},{"name":"KSCOMPONENTID_USBAUDIO","features":[84]},{"name":"KSCORRELATED_TIME","features":[84]},{"name":"KSCREATE_ITEM_FREEONSTOP","features":[84]},{"name":"KSCREATE_ITEM_NOPARAMETERS","features":[84]},{"name":"KSCREATE_ITEM_SECURITYCHANGED","features":[84]},{"name":"KSCREATE_ITEM_WILDCARD","features":[84]},{"name":"KSCameraProfileSensorType_Custom","features":[84]},{"name":"KSCameraProfileSensorType_Depth","features":[84]},{"name":"KSCameraProfileSensorType_ImageSegmentation","features":[84]},{"name":"KSCameraProfileSensorType_Infrared","features":[84]},{"name":"KSCameraProfileSensorType_PoseTracking","features":[84]},{"name":"KSCameraProfileSensorType_RGB","features":[84]},{"name":"KSDATAFORMAT","features":[84]},{"name":"KSDATAFORMAT_BIT_ATTRIBUTES","features":[84]},{"name":"KSDATAFORMAT_BIT_TEMPORAL_COMPRESSION","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_AC3_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_ANALOGVIDEO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_AC3_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_DSOUND","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_FILEHANDLE","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_FILENAME","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_H264_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_IMAGE","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_JPEG_IMAGE","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_LPCM_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG1_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_NONE","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_VBI","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_VC_ID","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO2","features":[84]},{"name":"KSDATAFORMAT_SPECIFIER_WAVEFORMATEX","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_AC3_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_ANALOG","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_CC","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_D16","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_DTS_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_AAC","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ATRAC","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS_ATMOS","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT20","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT21","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MLP","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DST","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E1","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E2","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS_HD","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG1","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG2","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG3","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ONE_BIT_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_WMA_PRO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_IMAGE_RGB32","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_JPEG","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_L16","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_L16_CUSTOM","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_L16_IR","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_L8","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_L8_CUSTOM","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_L8_IR","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_LPCM_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_BytePair","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_GOPPacket","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI_BUS","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_CUSTOM","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_DEPTH","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_IR","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Packet","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Payload","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Video","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MPEGLAYER3","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG_HEAAC","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS_FEC","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_NONE","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_OVERLAY","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_PCM","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_RAW8","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_RIFF","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFMIDI","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFWAVE","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_SDDS_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_AC3_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_AUDIO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_VIDEO","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_SUBPICTURE","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_TELETEXT","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_VPVBI","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_VPVideo","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_WAVEFORMATEX","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO2","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO3","features":[84]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO_LOSSLESS","features":[84]},{"name":"KSDATAFORMAT_TYPE_ANALOGAUDIO","features":[84]},{"name":"KSDATAFORMAT_TYPE_ANALOGVIDEO","features":[84]},{"name":"KSDATAFORMAT_TYPE_AUDIO","features":[84]},{"name":"KSDATAFORMAT_TYPE_AUXLine21Data","features":[84]},{"name":"KSDATAFORMAT_TYPE_DVD_ENCRYPTED_PACK","features":[84]},{"name":"KSDATAFORMAT_TYPE_IMAGE","features":[84]},{"name":"KSDATAFORMAT_TYPE_MIDI","features":[84]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PES","features":[84]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PROGRAM","features":[84]},{"name":"KSDATAFORMAT_TYPE_MPEG2_TRANSPORT","features":[84]},{"name":"KSDATAFORMAT_TYPE_MUSIC","features":[84]},{"name":"KSDATAFORMAT_TYPE_NABTS","features":[84]},{"name":"KSDATAFORMAT_TYPE_STANDARD_ELEMENTARY_STREAM","features":[84]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PACK_HEADER","features":[84]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PES_PACKET","features":[84]},{"name":"KSDATAFORMAT_TYPE_STREAM","features":[84]},{"name":"KSDATAFORMAT_TYPE_TEXT","features":[84]},{"name":"KSDATAFORMAT_TYPE_VBI","features":[84]},{"name":"KSDATAFORMAT_TYPE_VIDEO","features":[84]},{"name":"KSDATARANGE_AUDIO","features":[84]},{"name":"KSDATARANGE_BIT_ATTRIBUTES","features":[84]},{"name":"KSDATARANGE_BIT_REQUIRED_ATTRIBUTES","features":[84]},{"name":"KSDATARANGE_MUSIC","features":[84]},{"name":"KSDEGRADESETID_Standard","features":[84]},{"name":"KSDEGRADE_STANDARD","features":[84]},{"name":"KSDEGRADE_STANDARD_COMPUTATION","features":[84]},{"name":"KSDEGRADE_STANDARD_QUALITY","features":[84]},{"name":"KSDEGRADE_STANDARD_SAMPLE","features":[84]},{"name":"KSDEGRADE_STANDARD_SKIP","features":[84]},{"name":"KSDEVICE_DESCRIPTOR_VERSION","features":[84]},{"name":"KSDEVICE_DESCRIPTOR_VERSION_2","features":[84]},{"name":"KSDEVICE_FLAG_ENABLE_QUERYINTERFACE","features":[84]},{"name":"KSDEVICE_FLAG_ENABLE_REMOTE_WAKEUP","features":[84]},{"name":"KSDEVICE_FLAG_LOWPOWER_PASSTHROUGH","features":[84]},{"name":"KSDEVICE_PROFILE_INFO","features":[84]},{"name":"KSDEVICE_PROFILE_TYPE_CAMERA","features":[84]},{"name":"KSDEVICE_PROFILE_TYPE_UNKNOWN","features":[84]},{"name":"KSDEVICE_THERMAL_STATE","features":[84]},{"name":"KSDEVICE_THERMAL_STATE_HIGH","features":[84]},{"name":"KSDEVICE_THERMAL_STATE_LOW","features":[84]},{"name":"KSDISPATCH_FASTIO","features":[84]},{"name":"KSDISPLAYCHANGE","features":[84]},{"name":"KSDS3D_BUFFER_ALL","features":[84]},{"name":"KSDS3D_BUFFER_CONE_ANGLES","features":[84]},{"name":"KSDS3D_COEFF_COUNT","features":[84]},{"name":"KSDS3D_FILTER_METHOD_COUNT","features":[84]},{"name":"KSDS3D_FILTER_QUALITY_COUNT","features":[84]},{"name":"KSDS3D_HRTF_COEFF_FORMAT","features":[84]},{"name":"KSDS3D_HRTF_FILTER_FORMAT_MSG","features":[84]},{"name":"KSDS3D_HRTF_FILTER_METHOD","features":[84]},{"name":"KSDS3D_HRTF_FILTER_QUALITY","features":[84]},{"name":"KSDS3D_HRTF_FILTER_VERSION","features":[84]},{"name":"KSDS3D_HRTF_INIT_MSG","features":[84]},{"name":"KSDS3D_HRTF_PARAMS_MSG","features":[3,84]},{"name":"KSDS3D_ITD_PARAMS","features":[84]},{"name":"KSDS3D_ITD_PARAMS_MSG","features":[84]},{"name":"KSDS3D_LISTENER_ALL","features":[84]},{"name":"KSDS3D_LISTENER_ORIENTATION","features":[84]},{"name":"KSDSOUND_3D_MODE_DISABLE","features":[84]},{"name":"KSDSOUND_3D_MODE_HEADRELATIVE","features":[84]},{"name":"KSDSOUND_3D_MODE_NORMAL","features":[84]},{"name":"KSDSOUND_BUFFER_CTRL_3D","features":[84]},{"name":"KSDSOUND_BUFFER_CTRL_FREQUENCY","features":[84]},{"name":"KSDSOUND_BUFFER_CTRL_HRTF_3D","features":[84]},{"name":"KSDSOUND_BUFFER_CTRL_PAN","features":[84]},{"name":"KSDSOUND_BUFFER_CTRL_POSITIONNOTIFY","features":[84]},{"name":"KSDSOUND_BUFFER_CTRL_VOLUME","features":[84]},{"name":"KSDSOUND_BUFFER_LOCHARDWARE","features":[84]},{"name":"KSDSOUND_BUFFER_LOCSOFTWARE","features":[84]},{"name":"KSDSOUND_BUFFER_PRIMARY","features":[84]},{"name":"KSDSOUND_BUFFER_STATIC","features":[84]},{"name":"KSERROR","features":[84]},{"name":"KSEVENTDATA","features":[3,84]},{"name":"KSEVENTF_DPC","features":[84]},{"name":"KSEVENTF_EVENT_HANDLE","features":[84]},{"name":"KSEVENTF_EVENT_OBJECT","features":[84]},{"name":"KSEVENTF_KSWORKITEM","features":[84]},{"name":"KSEVENTF_SEMAPHORE_HANDLE","features":[84]},{"name":"KSEVENTF_SEMAPHORE_OBJECT","features":[84]},{"name":"KSEVENTF_WORKITEM","features":[84]},{"name":"KSEVENTSETID_AudioControlChange","features":[84]},{"name":"KSEVENTSETID_CameraAsyncControl","features":[84]},{"name":"KSEVENTSETID_CameraEvent","features":[84]},{"name":"KSEVENTSETID_Clock","features":[84]},{"name":"KSEVENTSETID_Connection","features":[84]},{"name":"KSEVENTSETID_Device","features":[84]},{"name":"KSEVENTSETID_DynamicFormatChange","features":[84]},{"name":"KSEVENTSETID_EXTDEV_Command","features":[84]},{"name":"KSEVENTSETID_ExtendedCameraControl","features":[84]},{"name":"KSEVENTSETID_LoopedStreaming","features":[84]},{"name":"KSEVENTSETID_PinCapsChange","features":[84]},{"name":"KSEVENTSETID_SoundDetector","features":[84]},{"name":"KSEVENTSETID_StreamAllocator","features":[84]},{"name":"KSEVENTSETID_Telephony","features":[84]},{"name":"KSEVENTSETID_VIDCAPTOSTI","features":[84]},{"name":"KSEVENTSETID_VIDCAP_TVAUDIO","features":[84]},{"name":"KSEVENTSETID_VPNotify","features":[84]},{"name":"KSEVENTSETID_VPVBINotify","features":[84]},{"name":"KSEVENTSETID_VolumeLimit","features":[84]},{"name":"KSEVENT_AUDIO_CONTROL_CHANGE","features":[84]},{"name":"KSEVENT_CAMERACONTROL","features":[84]},{"name":"KSEVENT_CAMERACONTROL_FOCUS","features":[84]},{"name":"KSEVENT_CAMERACONTROL_ZOOM","features":[84]},{"name":"KSEVENT_CAMERAEVENT","features":[84]},{"name":"KSEVENT_CLOCK_INTERVAL_MARK","features":[84]},{"name":"KSEVENT_CLOCK_POSITION","features":[84]},{"name":"KSEVENT_CLOCK_POSITION_MARK","features":[84]},{"name":"KSEVENT_CONNECTION","features":[84]},{"name":"KSEVENT_CONNECTION_DATADISCONTINUITY","features":[84]},{"name":"KSEVENT_CONNECTION_ENDOFSTREAM","features":[84]},{"name":"KSEVENT_CONNECTION_POSITIONUPDATE","features":[84]},{"name":"KSEVENT_CONNECTION_PRIORITY","features":[84]},{"name":"KSEVENT_CONNECTION_TIMEDISCONTINUITY","features":[84]},{"name":"KSEVENT_CONTROL_CHANGE","features":[84]},{"name":"KSEVENT_CROSSBAR","features":[84]},{"name":"KSEVENT_CROSSBAR_CHANGED","features":[84]},{"name":"KSEVENT_DEVCMD","features":[84]},{"name":"KSEVENT_DEVICE","features":[84]},{"name":"KSEVENT_DEVICE_LOST","features":[84]},{"name":"KSEVENT_DEVICE_PREEMPTED","features":[84]},{"name":"KSEVENT_DEVICE_THERMAL_HIGH","features":[84]},{"name":"KSEVENT_DEVICE_THERMAL_LOW","features":[84]},{"name":"KSEVENT_DYNAMICFORMATCHANGE","features":[84]},{"name":"KSEVENT_DYNAMIC_FORMAT_CHANGE","features":[84]},{"name":"KSEVENT_ENTRY_BUFFERED","features":[84]},{"name":"KSEVENT_ENTRY_DELETED","features":[84]},{"name":"KSEVENT_ENTRY_ONESHOT","features":[84]},{"name":"KSEVENT_EXTDEV_COMMAND_BUSRESET","features":[84]},{"name":"KSEVENT_EXTDEV_COMMAND_CONTROL_INTERIM_READY","features":[84]},{"name":"KSEVENT_EXTDEV_COMMAND_NOTIFY_INTERIM_READY","features":[84]},{"name":"KSEVENT_EXTDEV_NOTIFY_MEDIUM_CHANGE","features":[84]},{"name":"KSEVENT_EXTDEV_NOTIFY_REMOVAL","features":[84]},{"name":"KSEVENT_EXTDEV_OPERATION_MODE_UPDATE","features":[84]},{"name":"KSEVENT_EXTDEV_TIMECODE_UPDATE","features":[84]},{"name":"KSEVENT_EXTDEV_TRANSPORT_STATE_UPDATE","features":[84]},{"name":"KSEVENT_LOOPEDSTREAMING","features":[84]},{"name":"KSEVENT_LOOPEDSTREAMING_POSITION","features":[84]},{"name":"KSEVENT_PHOTO_SAMPLE_SCANNED","features":[84]},{"name":"KSEVENT_PINCAPS_CHANGENOTIFICATIONS","features":[84]},{"name":"KSEVENT_PINCAPS_FORMATCHANGE","features":[84]},{"name":"KSEVENT_PINCAPS_JACKINFOCHANGE","features":[84]},{"name":"KSEVENT_SOUNDDETECTOR","features":[84]},{"name":"KSEVENT_SOUNDDETECTOR_MATCHDETECTED","features":[84]},{"name":"KSEVENT_STREAMALLOCATOR","features":[84]},{"name":"KSEVENT_STREAMALLOCATOR_FREEFRAME","features":[84]},{"name":"KSEVENT_STREAMALLOCATOR_INTERNAL_FREEFRAME","features":[84]},{"name":"KSEVENT_TELEPHONY","features":[84]},{"name":"KSEVENT_TELEPHONY_ENDPOINTPAIRS_CHANGED","features":[84]},{"name":"KSEVENT_TIME_INTERVAL","features":[3,84]},{"name":"KSEVENT_TIME_MARK","features":[3,84]},{"name":"KSEVENT_TUNER","features":[84]},{"name":"KSEVENT_TUNER_CHANGED","features":[84]},{"name":"KSEVENT_TUNER_INITIATE_SCAN","features":[84]},{"name":"KSEVENT_TUNER_INITIATE_SCAN_S","features":[3,84]},{"name":"KSEVENT_TVAUDIO","features":[84]},{"name":"KSEVENT_TVAUDIO_CHANGED","features":[84]},{"name":"KSEVENT_TYPE_BASICSUPPORT","features":[84]},{"name":"KSEVENT_TYPE_ENABLE","features":[84]},{"name":"KSEVENT_TYPE_ENABLEBUFFERED","features":[84]},{"name":"KSEVENT_TYPE_ONESHOT","features":[84]},{"name":"KSEVENT_TYPE_QUERYBUFFER","features":[84]},{"name":"KSEVENT_TYPE_SETSUPPORT","features":[84]},{"name":"KSEVENT_TYPE_TOPOLOGY","features":[84]},{"name":"KSEVENT_VIDCAPTOSTI","features":[84]},{"name":"KSEVENT_VIDCAPTOSTI_EXT_TRIGGER","features":[84]},{"name":"KSEVENT_VIDCAP_AUTO_UPDATE","features":[84]},{"name":"KSEVENT_VIDCAP_SEARCH","features":[84]},{"name":"KSEVENT_VIDEODECODER","features":[84]},{"name":"KSEVENT_VIDEODECODER_CHANGED","features":[84]},{"name":"KSEVENT_VOLUMELIMIT","features":[84]},{"name":"KSEVENT_VOLUMELIMIT_CHANGED","features":[84]},{"name":"KSEVENT_VPNOTIFY","features":[84]},{"name":"KSEVENT_VPNOTIFY_FORMATCHANGE","features":[84]},{"name":"KSEVENT_VPVBINOTIFY","features":[84]},{"name":"KSEVENT_VPVBINOTIFY_FORMATCHANGE","features":[84]},{"name":"KSE_NODE","features":[84]},{"name":"KSE_PIN","features":[84]},{"name":"KSFILTER_FLAG_CRITICAL_PROCESSING","features":[84]},{"name":"KSFILTER_FLAG_DENY_USERMODE_ACCESS","features":[84]},{"name":"KSFILTER_FLAG_DISPATCH_LEVEL_PROCESSING","features":[84]},{"name":"KSFILTER_FLAG_HYPERCRITICAL_PROCESSING","features":[84]},{"name":"KSFILTER_FLAG_PRIORITIZE_REFERENCEGUID","features":[84]},{"name":"KSFILTER_FLAG_RECEIVE_ZERO_LENGTH_SAMPLES","features":[84]},{"name":"KSFRAMETIME","features":[84]},{"name":"KSFRAMETIME_VARIABLESIZE","features":[84]},{"name":"KSGOP_USERDATA","features":[84]},{"name":"KSIDENTIFIER","features":[84]},{"name":"KSINTERFACESETID_FileIo","features":[84]},{"name":"KSINTERFACESETID_Media","features":[84]},{"name":"KSINTERFACESETID_Standard","features":[84]},{"name":"KSINTERFACE_FILEIO","features":[84]},{"name":"KSINTERFACE_FILEIO_STREAMING","features":[84]},{"name":"KSINTERFACE_MEDIA","features":[84]},{"name":"KSINTERFACE_MEDIA_MUSIC","features":[84]},{"name":"KSINTERFACE_MEDIA_WAVE_BUFFERED","features":[84]},{"name":"KSINTERFACE_MEDIA_WAVE_QUEUED","features":[84]},{"name":"KSINTERFACE_STANDARD","features":[84]},{"name":"KSINTERFACE_STANDARD_CONTROL","features":[84]},{"name":"KSINTERFACE_STANDARD_LOOPED_STREAMING","features":[84]},{"name":"KSINTERFACE_STANDARD_STREAMING","features":[84]},{"name":"KSINTERVAL","features":[84]},{"name":"KSIOOPERATION","features":[84]},{"name":"KSJACK_DESCRIPTION","features":[3,84]},{"name":"KSJACK_DESCRIPTION2","features":[84]},{"name":"KSJACK_DESCRIPTION3","features":[84]},{"name":"KSJACK_SINK_CONNECTIONTYPE","features":[84]},{"name":"KSJACK_SINK_CONNECTIONTYPE_DISPLAYPORT","features":[84]},{"name":"KSJACK_SINK_CONNECTIONTYPE_HDMI","features":[84]},{"name":"KSJACK_SINK_INFORMATION","features":[3,84]},{"name":"KSMEDIUMSETID_MidiBus","features":[84]},{"name":"KSMEDIUMSETID_Standard","features":[84]},{"name":"KSMEDIUMSETID_VPBus","features":[84]},{"name":"KSMEDIUM_STANDARD_DEVIO","features":[84]},{"name":"KSMEDIUM_TYPE_ANYINSTANCE","features":[84]},{"name":"KSMEMORY_TYPE_DEVICE_UNKNOWN","features":[84]},{"name":"KSMEMORY_TYPE_KERNEL_NONPAGED","features":[84]},{"name":"KSMEMORY_TYPE_KERNEL_PAGED","features":[84]},{"name":"KSMEMORY_TYPE_SYSTEM","features":[84]},{"name":"KSMEMORY_TYPE_USER","features":[84]},{"name":"KSMETHODSETID_StreamAllocator","features":[84]},{"name":"KSMETHODSETID_StreamIo","features":[84]},{"name":"KSMETHODSETID_Wavetable","features":[84]},{"name":"KSMETHOD_STREAMALLOCATOR","features":[84]},{"name":"KSMETHOD_STREAMALLOCATOR_ALLOC","features":[84]},{"name":"KSMETHOD_STREAMALLOCATOR_FREE","features":[84]},{"name":"KSMETHOD_STREAMIO","features":[84]},{"name":"KSMETHOD_STREAMIO_READ","features":[84]},{"name":"KSMETHOD_STREAMIO_WRITE","features":[84]},{"name":"KSMETHOD_TYPE_BASICSUPPORT","features":[84]},{"name":"KSMETHOD_TYPE_MODIFY","features":[84]},{"name":"KSMETHOD_TYPE_NONE","features":[84]},{"name":"KSMETHOD_TYPE_READ","features":[84]},{"name":"KSMETHOD_TYPE_SEND","features":[84]},{"name":"KSMETHOD_TYPE_SETSUPPORT","features":[84]},{"name":"KSMETHOD_TYPE_SOURCE","features":[84]},{"name":"KSMETHOD_TYPE_TOPOLOGY","features":[84]},{"name":"KSMETHOD_TYPE_WRITE","features":[84]},{"name":"KSMETHOD_WAVETABLE","features":[84]},{"name":"KSMETHOD_WAVETABLE_WAVE_ALLOC","features":[84]},{"name":"KSMETHOD_WAVETABLE_WAVE_FIND","features":[84]},{"name":"KSMETHOD_WAVETABLE_WAVE_FREE","features":[84]},{"name":"KSMETHOD_WAVETABLE_WAVE_WRITE","features":[84]},{"name":"KSMETHOD_WAVE_QUEUED_BREAKLOOP","features":[84]},{"name":"KSMFT_CATEGORY_AUDIO_DECODER","features":[84]},{"name":"KSMFT_CATEGORY_AUDIO_EFFECT","features":[84]},{"name":"KSMFT_CATEGORY_AUDIO_ENCODER","features":[84]},{"name":"KSMFT_CATEGORY_DEMULTIPLEXER","features":[84]},{"name":"KSMFT_CATEGORY_MULTIPLEXER","features":[84]},{"name":"KSMFT_CATEGORY_OTHER","features":[84]},{"name":"KSMFT_CATEGORY_VIDEO_DECODER","features":[84]},{"name":"KSMFT_CATEGORY_VIDEO_EFFECT","features":[84]},{"name":"KSMFT_CATEGORY_VIDEO_ENCODER","features":[84]},{"name":"KSMFT_CATEGORY_VIDEO_PROCESSOR","features":[84]},{"name":"KSMICARRAY_MICARRAYTYPE","features":[84]},{"name":"KSMICARRAY_MICARRAYTYPE_3D","features":[84]},{"name":"KSMICARRAY_MICARRAYTYPE_LINEAR","features":[84]},{"name":"KSMICARRAY_MICARRAYTYPE_PLANAR","features":[84]},{"name":"KSMICARRAY_MICTYPE","features":[84]},{"name":"KSMICARRAY_MICTYPE_8SHAPED","features":[84]},{"name":"KSMICARRAY_MICTYPE_CARDIOID","features":[84]},{"name":"KSMICARRAY_MICTYPE_HYPERCARDIOID","features":[84]},{"name":"KSMICARRAY_MICTYPE_OMNIDIRECTIONAL","features":[84]},{"name":"KSMICARRAY_MICTYPE_SUBCARDIOID","features":[84]},{"name":"KSMICARRAY_MICTYPE_SUPERCARDIOID","features":[84]},{"name":"KSMICARRAY_MICTYPE_VENDORDEFINED","features":[84]},{"name":"KSMPEGVIDMODE_LTRBOX","features":[84]},{"name":"KSMPEGVIDMODE_PANSCAN","features":[84]},{"name":"KSMPEGVIDMODE_SCALE","features":[84]},{"name":"KSMPEGVID_RECT","features":[84]},{"name":"KSMULTIPLE_DATA_PROP","features":[84]},{"name":"KSMULTIPLE_ITEM","features":[84]},{"name":"KSMUSICFORMAT","features":[84]},{"name":"KSMUSIC_TECHNOLOGY_FMSYNTH","features":[84]},{"name":"KSMUSIC_TECHNOLOGY_PORT","features":[84]},{"name":"KSMUSIC_TECHNOLOGY_SQSYNTH","features":[84]},{"name":"KSMUSIC_TECHNOLOGY_SWSYNTH","features":[84]},{"name":"KSMUSIC_TECHNOLOGY_WAVETABLE","features":[84]},{"name":"KSM_NODE","features":[84]},{"name":"KSNAME_Allocator","features":[84]},{"name":"KSNAME_Clock","features":[84]},{"name":"KSNAME_Filter","features":[84]},{"name":"KSNAME_Pin","features":[84]},{"name":"KSNAME_TopologyNode","features":[84]},{"name":"KSNODEPIN_AEC_CAPTURE_IN","features":[84]},{"name":"KSNODEPIN_AEC_CAPTURE_OUT","features":[84]},{"name":"KSNODEPIN_AEC_RENDER_IN","features":[84]},{"name":"KSNODEPIN_AEC_RENDER_OUT","features":[84]},{"name":"KSNODEPIN_DEMUX_IN","features":[84]},{"name":"KSNODEPIN_DEMUX_OUT","features":[84]},{"name":"KSNODEPIN_STANDARD_IN","features":[84]},{"name":"KSNODEPIN_STANDARD_OUT","features":[84]},{"name":"KSNODEPIN_SUM_MUX_IN","features":[84]},{"name":"KSNODEPIN_SUM_MUX_OUT","features":[84]},{"name":"KSNODEPROPERTY","features":[84]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[84]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[84]},{"name":"KSNODEPROPERTY_AUDIO_CHANNEL","features":[84]},{"name":"KSNODEPROPERTY_AUDIO_DEV_SPECIFIC","features":[84]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[84]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[84]},{"name":"KSNODETYPE_1394_DA_STREAM","features":[84]},{"name":"KSNODETYPE_1394_DV_STREAM_SOUNDTRACK","features":[84]},{"name":"KSNODETYPE_3D_EFFECTS","features":[84]},{"name":"KSNODETYPE_ADC","features":[84]},{"name":"KSNODETYPE_AGC","features":[84]},{"name":"KSNODETYPE_ANALOG_CONNECTOR","features":[84]},{"name":"KSNODETYPE_ANALOG_TAPE","features":[84]},{"name":"KSNODETYPE_AUDIO_ENGINE","features":[84]},{"name":"KSNODETYPE_AUDIO_KEYWORDDETECTOR","features":[84]},{"name":"KSNODETYPE_AUDIO_LOOPBACK","features":[84]},{"name":"KSNODETYPE_AUDIO_MODULE","features":[84]},{"name":"KSNODETYPE_BIDIRECTIONAL_UNDEFINED","features":[84]},{"name":"KSNODETYPE_CABLE_TUNER_AUDIO","features":[84]},{"name":"KSNODETYPE_CD_PLAYER","features":[84]},{"name":"KSNODETYPE_CHORUS","features":[84]},{"name":"KSNODETYPE_COMMUNICATION_SPEAKER","features":[84]},{"name":"KSNODETYPE_DAC","features":[84]},{"name":"KSNODETYPE_DAT_IO_DIGITAL_AUDIO_TAPE","features":[84]},{"name":"KSNODETYPE_DCC_IO_DIGITAL_COMPACT_CASSETTE","features":[84]},{"name":"KSNODETYPE_DELAY","features":[84]},{"name":"KSNODETYPE_DEMUX","features":[84]},{"name":"KSNODETYPE_DESKTOP_MICROPHONE","features":[84]},{"name":"KSNODETYPE_DESKTOP_SPEAKER","features":[84]},{"name":"KSNODETYPE_DEV_SPECIFIC","features":[84]},{"name":"KSNODETYPE_DIGITAL_AUDIO_INTERFACE","features":[84]},{"name":"KSNODETYPE_DISPLAYPORT_INTERFACE","features":[84]},{"name":"KSNODETYPE_DOWN_LINE_PHONE","features":[84]},{"name":"KSNODETYPE_DRM_DESCRAMBLE","features":[84]},{"name":"KSNODETYPE_DSS_AUDIO","features":[84]},{"name":"KSNODETYPE_DVD_AUDIO","features":[84]},{"name":"KSNODETYPE_DYN_RANGE_COMPRESSOR","features":[84]},{"name":"KSNODETYPE_ECHO_CANCELING_SPEAKERPHONE","features":[84]},{"name":"KSNODETYPE_ECHO_SUPPRESSING_SPEAKERPHONE","features":[84]},{"name":"KSNODETYPE_EMBEDDED_UNDEFINED","features":[84]},{"name":"KSNODETYPE_EQUALIZATION_NOISE","features":[84]},{"name":"KSNODETYPE_EQUALIZER","features":[84]},{"name":"KSNODETYPE_EXTERNAL_UNDEFINED","features":[84]},{"name":"KSNODETYPE_FM_RX","features":[84]},{"name":"KSNODETYPE_HANDSET","features":[84]},{"name":"KSNODETYPE_HDMI_INTERFACE","features":[84]},{"name":"KSNODETYPE_HEADPHONES","features":[84]},{"name":"KSNODETYPE_HEADSET","features":[84]},{"name":"KSNODETYPE_HEAD_MOUNTED_DISPLAY_AUDIO","features":[84]},{"name":"KSNODETYPE_INPUT_UNDEFINED","features":[84]},{"name":"KSNODETYPE_LEGACY_AUDIO_CONNECTOR","features":[84]},{"name":"KSNODETYPE_LEVEL_CALIBRATION_NOISE_SOURCE","features":[84]},{"name":"KSNODETYPE_LINE_CONNECTOR","features":[84]},{"name":"KSNODETYPE_LOUDNESS","features":[84]},{"name":"KSNODETYPE_LOW_FREQUENCY_EFFECTS_SPEAKER","features":[84]},{"name":"KSNODETYPE_MICROPHONE","features":[84]},{"name":"KSNODETYPE_MICROPHONE_ARRAY","features":[84]},{"name":"KSNODETYPE_MIDI_ELEMENT","features":[84]},{"name":"KSNODETYPE_MIDI_JACK","features":[84]},{"name":"KSNODETYPE_MINIDISK","features":[84]},{"name":"KSNODETYPE_MULTITRACK_RECORDER","features":[84]},{"name":"KSNODETYPE_MUTE","features":[84]},{"name":"KSNODETYPE_MUX","features":[84]},{"name":"KSNODETYPE_NOISE_SUPPRESS","features":[84]},{"name":"KSNODETYPE_OMNI_DIRECTIONAL_MICROPHONE","features":[84]},{"name":"KSNODETYPE_OUTPUT_UNDEFINED","features":[84]},{"name":"KSNODETYPE_PARAMETRIC_EQUALIZER","features":[84]},{"name":"KSNODETYPE_PEAKMETER","features":[84]},{"name":"KSNODETYPE_PERSONAL_MICROPHONE","features":[84]},{"name":"KSNODETYPE_PHONE_LINE","features":[84]},{"name":"KSNODETYPE_PHONOGRAPH","features":[84]},{"name":"KSNODETYPE_PROCESSING_MICROPHONE_ARRAY","features":[84]},{"name":"KSNODETYPE_PROLOGIC_DECODER","features":[84]},{"name":"KSNODETYPE_PROLOGIC_ENCODER","features":[84]},{"name":"KSNODETYPE_RADIO_RECEIVER","features":[84]},{"name":"KSNODETYPE_RADIO_TRANSMITTER","features":[84]},{"name":"KSNODETYPE_REVERB","features":[84]},{"name":"KSNODETYPE_ROOM_SPEAKER","features":[84]},{"name":"KSNODETYPE_SATELLITE_RECEIVER_AUDIO","features":[84]},{"name":"KSNODETYPE_SPDIF_INTERFACE","features":[84]},{"name":"KSNODETYPE_SPEAKER","features":[84]},{"name":"KSNODETYPE_SPEAKERPHONE_NO_ECHO_REDUCTION","features":[84]},{"name":"KSNODETYPE_SPEAKERS_STATIC_JACK","features":[84]},{"name":"KSNODETYPE_SRC","features":[84]},{"name":"KSNODETYPE_STEREO_WIDE","features":[84]},{"name":"KSNODETYPE_SUM","features":[84]},{"name":"KSNODETYPE_SUPERMIX","features":[84]},{"name":"KSNODETYPE_SYNTHESIZER","features":[84]},{"name":"KSNODETYPE_TELEPHONE","features":[84]},{"name":"KSNODETYPE_TELEPHONY_BIDI","features":[84]},{"name":"KSNODETYPE_TELEPHONY_UNDEFINED","features":[84]},{"name":"KSNODETYPE_TONE","features":[84]},{"name":"KSNODETYPE_TV_TUNER_AUDIO","features":[84]},{"name":"KSNODETYPE_UPDOWN_MIX","features":[84]},{"name":"KSNODETYPE_VCR_AUDIO","features":[84]},{"name":"KSNODETYPE_VIDEO_CAMERA_TERMINAL","features":[84]},{"name":"KSNODETYPE_VIDEO_DISC_AUDIO","features":[84]},{"name":"KSNODETYPE_VIDEO_INPUT_MTT","features":[84]},{"name":"KSNODETYPE_VIDEO_INPUT_TERMINAL","features":[84]},{"name":"KSNODETYPE_VIDEO_OUTPUT_MTT","features":[84]},{"name":"KSNODETYPE_VIDEO_OUTPUT_TERMINAL","features":[84]},{"name":"KSNODETYPE_VIDEO_PROCESSING","features":[84]},{"name":"KSNODETYPE_VIDEO_SELECTOR","features":[84]},{"name":"KSNODETYPE_VIDEO_STREAMING","features":[84]},{"name":"KSNODETYPE_VOLUME","features":[84]},{"name":"KSNODE_CREATE","features":[84]},{"name":"KSNOTIFICATIONID_AudioModule","features":[84]},{"name":"KSNOTIFICATIONID_SoundDetector","features":[84]},{"name":"KSPEEKOPERATION","features":[84]},{"name":"KSPIN_CINSTANCES","features":[84]},{"name":"KSPIN_COMMUNICATION","features":[84]},{"name":"KSPIN_COMMUNICATION_BOTH","features":[84]},{"name":"KSPIN_COMMUNICATION_BRIDGE","features":[84]},{"name":"KSPIN_COMMUNICATION_NONE","features":[84]},{"name":"KSPIN_COMMUNICATION_SINK","features":[84]},{"name":"KSPIN_COMMUNICATION_SOURCE","features":[84]},{"name":"KSPIN_CONNECT","features":[3,84]},{"name":"KSPIN_DATAFLOW","features":[84]},{"name":"KSPIN_DATAFLOW_IN","features":[84]},{"name":"KSPIN_DATAFLOW_OUT","features":[84]},{"name":"KSPIN_FLAG_ASYNCHRONOUS_PROCESSING","features":[84]},{"name":"KSPIN_FLAG_CRITICAL_PROCESSING","features":[84]},{"name":"KSPIN_FLAG_DENY_USERMODE_ACCESS","features":[84]},{"name":"KSPIN_FLAG_DISPATCH_LEVEL_PROCESSING","features":[84]},{"name":"KSPIN_FLAG_DISTINCT_TRAILING_EDGE","features":[84]},{"name":"KSPIN_FLAG_DO_NOT_INITIATE_PROCESSING","features":[84]},{"name":"KSPIN_FLAG_DO_NOT_USE_STANDARD_TRANSPORT","features":[84]},{"name":"KSPIN_FLAG_ENFORCE_FIFO","features":[84]},{"name":"KSPIN_FLAG_FIXED_FORMAT","features":[84]},{"name":"KSPIN_FLAG_FRAMES_NOT_REQUIRED_FOR_PROCESSING","features":[84]},{"name":"KSPIN_FLAG_GENERATE_EOS_EVENTS","features":[84]},{"name":"KSPIN_FLAG_GENERATE_MAPPINGS","features":[84]},{"name":"KSPIN_FLAG_HYPERCRITICAL_PROCESSING","features":[84]},{"name":"KSPIN_FLAG_IMPLEMENT_CLOCK","features":[84]},{"name":"KSPIN_FLAG_INITIATE_PROCESSING_ON_EVERY_ARRIVAL","features":[84]},{"name":"KSPIN_FLAG_PROCESS_IF_ANY_IN_RUN_STATE","features":[84]},{"name":"KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY","features":[84]},{"name":"KSPIN_FLAG_SOME_FRAMES_REQUIRED_FOR_PROCESSING","features":[84]},{"name":"KSPIN_FLAG_SPLITTER","features":[84]},{"name":"KSPIN_FLAG_USE_STANDARD_TRANSPORT","features":[84]},{"name":"KSPIN_MDL_CACHING_EVENT","features":[84]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION","features":[84]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION32","features":[84]},{"name":"KSPIN_MDL_CACHING_NOTIFY_ADDSAMPLE","features":[84]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_NOWAIT","features":[84]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_WAIT","features":[84]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANUP","features":[84]},{"name":"KSPIN_PHYSICALCONNECTION","features":[84]},{"name":"KSPPROPERTY_ALLOCATOR_MDLCACHING","features":[84]},{"name":"KSPRIORITY","features":[84]},{"name":"KSPRIORITY_EXCLUSIVE","features":[84]},{"name":"KSPRIORITY_HIGH","features":[84]},{"name":"KSPRIORITY_LOW","features":[84]},{"name":"KSPRIORITY_NORMAL","features":[84]},{"name":"KSPROBE_ALLOCATEMDL","features":[84]},{"name":"KSPROBE_ALLOWFORMATCHANGE","features":[84]},{"name":"KSPROBE_MODIFY","features":[84]},{"name":"KSPROBE_PROBEANDLOCK","features":[84]},{"name":"KSPROBE_STREAMREAD","features":[84]},{"name":"KSPROBE_STREAMWRITE","features":[84]},{"name":"KSPROBE_SYSTEMADDRESS","features":[84]},{"name":"KSPROPERTYSETID_ExtendedCameraControl","features":[84]},{"name":"KSPROPERTYSETID_NetworkCameraControl","features":[84]},{"name":"KSPROPERTYSETID_PerFrameSettingControl","features":[84]},{"name":"KSPROPERTY_AC3","features":[84]},{"name":"KSPROPERTY_AC3_ALTERNATE_AUDIO","features":[84]},{"name":"KSPROPERTY_AC3_BIT_STREAM_MODE","features":[84]},{"name":"KSPROPERTY_AC3_DIALOGUE_LEVEL","features":[84]},{"name":"KSPROPERTY_AC3_DOWNMIX","features":[84]},{"name":"KSPROPERTY_AC3_ERROR_CONCEALMENT","features":[84]},{"name":"KSPROPERTY_AC3_LANGUAGE_CODE","features":[84]},{"name":"KSPROPERTY_AC3_ROOM_TYPE","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CLEANUP_CACHEDMDLPAGES","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS_S","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE_S","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_HONOR_COUNT","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE","features":[84]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE_S","features":[84]},{"name":"KSPROPERTY_ATN_READER","features":[84]},{"name":"KSPROPERTY_AUDDECOUT","features":[84]},{"name":"KSPROPERTY_AUDDECOUT_CUR_MODE","features":[84]},{"name":"KSPROPERTY_AUDDECOUT_MODES","features":[84]},{"name":"KSPROPERTY_AUDIO","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_BUFFER_SIZE_RANGE","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_DESCRIPTOR","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICECONTROLS","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICEFORMAT","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_GFXENABLE","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_LFXENABLE","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_LOOPBACK_PROTECTION","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_MIXFORMAT","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_SUPPORTEDDEVICEFORMATS","features":[84]},{"name":"KSPROPERTY_AUDIOENGINE_VOLUMELEVEL","features":[84]},{"name":"KSPROPERTY_AUDIOMODULE","features":[84]},{"name":"KSPROPERTY_AUDIOMODULE_COMMAND","features":[84]},{"name":"KSPROPERTY_AUDIOMODULE_DESCRIPTORS","features":[84]},{"name":"KSPROPERTY_AUDIOMODULE_NOTIFICATION_DEVICE_ID","features":[84]},{"name":"KSPROPERTY_AUDIOPOSTURE","features":[84]},{"name":"KSPROPERTY_AUDIOPOSTURE_ORIENTATION","features":[84]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT","features":[84]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[84]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING","features":[84]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING_MODES","features":[84]},{"name":"KSPROPERTY_AUDIO_3D_INTERFACE","features":[84]},{"name":"KSPROPERTY_AUDIO_AGC","features":[84]},{"name":"KSPROPERTY_AUDIO_ALGORITHM_INSTANCE","features":[84]},{"name":"KSPROPERTY_AUDIO_BASS","features":[84]},{"name":"KSPROPERTY_AUDIO_BASS_BOOST","features":[84]},{"name":"KSPROPERTY_AUDIO_BUFFER_DURATION","features":[84]},{"name":"KSPROPERTY_AUDIO_CHANNEL_CONFIG","features":[84]},{"name":"KSPROPERTY_AUDIO_CHORUS_LEVEL","features":[84]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_DEPTH","features":[84]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_RATE","features":[84]},{"name":"KSPROPERTY_AUDIO_COPY_PROTECTION","features":[84]},{"name":"KSPROPERTY_AUDIO_CPU_RESOURCES","features":[84]},{"name":"KSPROPERTY_AUDIO_DELAY","features":[84]},{"name":"KSPROPERTY_AUDIO_DEMUX_DEST","features":[84]},{"name":"KSPROPERTY_AUDIO_DEV_SPECIFIC","features":[84]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_RANGE","features":[84]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_SAMPLING_RATE","features":[84]},{"name":"KSPROPERTY_AUDIO_EQ_BANDS","features":[84]},{"name":"KSPROPERTY_AUDIO_EQ_LEVEL","features":[84]},{"name":"KSPROPERTY_AUDIO_FILTER_STATE","features":[84]},{"name":"KSPROPERTY_AUDIO_LATENCY","features":[84]},{"name":"KSPROPERTY_AUDIO_LINEAR_BUFFER_POSITION","features":[84]},{"name":"KSPROPERTY_AUDIO_LOUDNESS","features":[84]},{"name":"KSPROPERTY_AUDIO_MANUFACTURE_GUID","features":[84]},{"name":"KSPROPERTY_AUDIO_MIC_ARRAY_GEOMETRY","features":[84]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY","features":[84]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY2","features":[84]},{"name":"KSPROPERTY_AUDIO_MIC_SNR","features":[84]},{"name":"KSPROPERTY_AUDIO_MID","features":[84]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_CAPS","features":[84]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_TABLE","features":[84]},{"name":"KSPROPERTY_AUDIO_MUTE","features":[84]},{"name":"KSPROPERTY_AUDIO_MUX_SOURCE","features":[84]},{"name":"KSPROPERTY_AUDIO_NUM_EQ_BANDS","features":[84]},{"name":"KSPROPERTY_AUDIO_PEAKMETER","features":[84]},{"name":"KSPROPERTY_AUDIO_PEAKMETER2","features":[84]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_CENTER_FREQ","features":[84]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_LEVEL","features":[84]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_Q_FACTOR","features":[84]},{"name":"KSPROPERTY_AUDIO_PEQ_MAX_BANDS","features":[84]},{"name":"KSPROPERTY_AUDIO_PEQ_NUM_BANDS","features":[84]},{"name":"KSPROPERTY_AUDIO_POSITION","features":[84]},{"name":"KSPROPERTY_AUDIO_POSITIONEX","features":[84]},{"name":"KSPROPERTY_AUDIO_PREFERRED_STATUS","features":[84]},{"name":"KSPROPERTY_AUDIO_PRESENTATION_POSITION","features":[84]},{"name":"KSPROPERTY_AUDIO_PRODUCT_GUID","features":[84]},{"name":"KSPROPERTY_AUDIO_QUALITY","features":[84]},{"name":"KSPROPERTY_AUDIO_REVERB_DELAY_FEEDBACK","features":[84]},{"name":"KSPROPERTY_AUDIO_REVERB_LEVEL","features":[84]},{"name":"KSPROPERTY_AUDIO_REVERB_TIME","features":[84]},{"name":"KSPROPERTY_AUDIO_SAMPLING_RATE","features":[84]},{"name":"KSPROPERTY_AUDIO_STEREO_ENHANCE","features":[84]},{"name":"KSPROPERTY_AUDIO_STEREO_SPEAKER_GEOMETRY","features":[84]},{"name":"KSPROPERTY_AUDIO_SURROUND_ENCODE","features":[84]},{"name":"KSPROPERTY_AUDIO_TREBLE","features":[84]},{"name":"KSPROPERTY_AUDIO_VOLUMELEVEL","features":[84]},{"name":"KSPROPERTY_AUDIO_VOLUMELIMIT_ENGAGED","features":[84]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_LASTBUFFER_POSITION","features":[84]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_POSITION","features":[84]},{"name":"KSPROPERTY_AUDIO_WIDENESS","features":[84]},{"name":"KSPROPERTY_AUDIO_WIDE_MODE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYGEOGRAPHIC","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYPERSONALNAME","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYRELATED","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTITLE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTOPICALTERM","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYUNIFORMTITLE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDFORMAVAILABLE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_AWARDS","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_BIBLIOGRAPHYNOTE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CATALOGINGSOURCE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CITATION","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CONTENTSNOTE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CREATIONCREDIT","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_GENERALNOTE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMCURRICULUM","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMGENRE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISBN","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISSN","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LCCN","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LEADER","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINCORPORATEBODY","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINMEETINGNAME","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINPERSONALNAME","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINUNIFORMTITLE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PARTICIPANT","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PHYSICALDESCRIPTION","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PUBLICATION","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENT","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTPERSONALNAME","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTUNIFORMTITLE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SUMMARY","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SYSTEMDETAILS","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TARGETAUDIENCE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TITLESTATEMENT","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_UNIFORMTITLE","features":[84]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_VARYINGFORMTITLE","features":[84]},{"name":"KSPROPERTY_BOUNDS_LONG","features":[84]},{"name":"KSPROPERTY_BOUNDS_LONGLONG","features":[84]},{"name":"KSPROPERTY_BTAUDIO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_AUTO_EXPOSURE_PRIORITY","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ADVANCEDPHOTO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_BACKGROUNDSEGMENTATION","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_CAMERAANGLEOFFSET","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW_CONFIGCAPS","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END2","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EVCOMPENSATION","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EXPOSUREMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EYEGAZECORRECTION","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEAUTH_MODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEDETECTION","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FIELDOFVIEW","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FLASHMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSPRIORITY","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSSTATE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_HISTOGRAM","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_IRTORCHMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO_ADVANCED","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MAXVIDFPS_PHOTORES","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MCC","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_METADATA","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OIS","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OPTIMIZATIONHINT","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOCONFIRMATION","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOFRAMERATE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMAXFRAMERATE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTHUMBNAIL","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTRIGGERTIME","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROFILE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROPERTY","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_RELATIVEPANELOPTIMIZATION","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_CONFIGCAPS","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_ISPCONTROL","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SCENEMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SECURE_MODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_TORCHMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VFR","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOHDR","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOSTABILIZATION","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOTEMPORALDENOISING","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WARMSTART","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WHITEBALANCEMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ZOOM","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ABSOLUTE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ASYNCHRONOUS","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_AUTO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_MANUAL","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_AUTO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_AUTO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_MANUAL","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_OFF","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_ON","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_PROPERTY_ID","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_S","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH_S","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_EXCLUSIVE_WITH_RECORD","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_PROPERTY_ID","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_S","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_SEQUENCE_EXCLUSIVE_WITH_RECORD","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_FOCAL_LENGTH_S","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S2","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PAN","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PAN_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CAPABILITY","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CLEAR","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_PROPERTY","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_SET","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_PRIVACY","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_EXPOSURE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_FOCUS","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_WB","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONVERGEMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_ASYNC","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_AUTO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_MANUAL","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_PROPERTY_ID","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_S","features":[3,84]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_S","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_S2","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_SCANMODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_S_EX","features":[3,84]},{"name":"KSPROPERTY_CAMERACONTROL_TILT","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_TILT_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_AUTO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_AUTO","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_MANUAL","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_HIGH","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_LOW","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_MEDIUM","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_OFF","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_S","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE_PROPERTY_ID","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM","features":[84]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM_RELATIVE","features":[84]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_CLEAR","features":[84]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_FLAGS","features":[84]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_SET","features":[84]},{"name":"KSPROPERTY_CLOCK","features":[84]},{"name":"KSPROPERTY_CLOCK_CORRELATEDPHYSICALTIME","features":[84]},{"name":"KSPROPERTY_CLOCK_CORRELATEDTIME","features":[84]},{"name":"KSPROPERTY_CLOCK_PHYSICALTIME","features":[84]},{"name":"KSPROPERTY_CLOCK_RESOLUTION","features":[84]},{"name":"KSPROPERTY_CLOCK_STATE","features":[84]},{"name":"KSPROPERTY_CLOCK_TIME","features":[84]},{"name":"KSPROPERTY_CONNECTION","features":[84]},{"name":"KSPROPERTY_CONNECTION_ACQUIREORDERING","features":[84]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING","features":[84]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING_EX","features":[84]},{"name":"KSPROPERTY_CONNECTION_DATAFORMAT","features":[84]},{"name":"KSPROPERTY_CONNECTION_PRIORITY","features":[84]},{"name":"KSPROPERTY_CONNECTION_PROPOSEDATAFORMAT","features":[84]},{"name":"KSPROPERTY_CONNECTION_STARTAT","features":[84]},{"name":"KSPROPERTY_CONNECTION_STATE","features":[84]},{"name":"KSPROPERTY_COPYPROT","features":[84]},{"name":"KSPROPERTY_COPY_MACROVISION","features":[84]},{"name":"KSPROPERTY_CROSSBAR_ACTIVE_S","features":[84]},{"name":"KSPROPERTY_CROSSBAR_CAN_ROUTE","features":[84]},{"name":"KSPROPERTY_CROSSBAR_CAPS","features":[84]},{"name":"KSPROPERTY_CROSSBAR_CAPS_S","features":[84]},{"name":"KSPROPERTY_CROSSBAR_INPUT_ACTIVE","features":[84]},{"name":"KSPROPERTY_CROSSBAR_PININFO","features":[84]},{"name":"KSPROPERTY_CROSSBAR_PININFO_S","features":[84]},{"name":"KSPROPERTY_CROSSBAR_ROUTE","features":[84]},{"name":"KSPROPERTY_CROSSBAR_ROUTE_S","features":[84]},{"name":"KSPROPERTY_CURRENT_CAPTURE_SURFACE","features":[84]},{"name":"KSPROPERTY_CYCLIC","features":[84]},{"name":"KSPROPERTY_CYCLIC_POSITION","features":[84]},{"name":"KSPROPERTY_DESCRIPTION","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_ALL","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEANGLES","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEORIENTATION","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEOUTSIDEVOLUME","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MAXDISTANCE","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MINDISTANCE","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MODE","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_POSITION","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_VELOCITY","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALL","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALLOCATION","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_BATCH","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DISTANCEFACTOR","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DOPPLERFACTOR","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ORIENTATION","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_POSITION","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ROLLOFFFACTOR","features":[84]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_VELOCITY","features":[84]},{"name":"KSPROPERTY_DISPLAY_ADAPTER_GUID","features":[84]},{"name":"KSPROPERTY_DRMAUDIOSTREAM","features":[84]},{"name":"KSPROPERTY_DRMAUDIOSTREAM_CONTENTID","features":[84]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT","features":[84]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT_S","features":[84]},{"name":"KSPROPERTY_DVDCOPY_CHLG_KEY","features":[84]},{"name":"KSPROPERTY_DVDCOPY_DEC_KEY2","features":[84]},{"name":"KSPROPERTY_DVDCOPY_DISC_KEY","features":[84]},{"name":"KSPROPERTY_DVDCOPY_DVD_KEY1","features":[84]},{"name":"KSPROPERTY_DVDCOPY_REGION","features":[84]},{"name":"KSPROPERTY_DVDCOPY_SET_COPY_STATE","features":[84]},{"name":"KSPROPERTY_DVDCOPY_TITLE_KEY","features":[84]},{"name":"KSPROPERTY_DVDSUBPIC","features":[84]},{"name":"KSPROPERTY_DVDSUBPIC_COMPOSIT_ON","features":[84]},{"name":"KSPROPERTY_DVDSUBPIC_HLI","features":[84]},{"name":"KSPROPERTY_DVDSUBPIC_PALETTE","features":[84]},{"name":"KSPROPERTY_EXTDEVICE","features":[84]},{"name":"KSPROPERTY_EXTDEVICE_CAPABILITIES","features":[84]},{"name":"KSPROPERTY_EXTDEVICE_ID","features":[84]},{"name":"KSPROPERTY_EXTDEVICE_PORT","features":[84]},{"name":"KSPROPERTY_EXTDEVICE_POWER_STATE","features":[84]},{"name":"KSPROPERTY_EXTDEVICE_S","features":[84]},{"name":"KSPROPERTY_EXTDEVICE_VERSION","features":[84]},{"name":"KSPROPERTY_EXTENSION_UNIT","features":[84]},{"name":"KSPROPERTY_EXTENSION_UNIT_CONTROL","features":[84]},{"name":"KSPROPERTY_EXTENSION_UNIT_INFO","features":[84]},{"name":"KSPROPERTY_EXTENSION_UNIT_PASS_THROUGH","features":[84]},{"name":"KSPROPERTY_EXTXPORT","features":[84]},{"name":"KSPROPERTY_EXTXPORT_ATN_SEARCH","features":[84]},{"name":"KSPROPERTY_EXTXPORT_CAPABILITIES","features":[84]},{"name":"KSPROPERTY_EXTXPORT_INPUT_SIGNAL_MODE","features":[84]},{"name":"KSPROPERTY_EXTXPORT_LOAD_MEDIUM","features":[84]},{"name":"KSPROPERTY_EXTXPORT_MEDIUM_INFO","features":[84]},{"name":"KSPROPERTY_EXTXPORT_NODE_S","features":[3,84]},{"name":"KSPROPERTY_EXTXPORT_OUTPUT_SIGNAL_MODE","features":[84]},{"name":"KSPROPERTY_EXTXPORT_RTC_SEARCH","features":[84]},{"name":"KSPROPERTY_EXTXPORT_S","features":[3,84]},{"name":"KSPROPERTY_EXTXPORT_STATE","features":[84]},{"name":"KSPROPERTY_EXTXPORT_STATE_NOTIFY","features":[84]},{"name":"KSPROPERTY_EXTXPORT_TIMECODE_SEARCH","features":[84]},{"name":"KSPROPERTY_FMRX_ANTENNAENDPOINTID","features":[84]},{"name":"KSPROPERTY_FMRX_CONTROL","features":[84]},{"name":"KSPROPERTY_FMRX_ENDPOINTID","features":[84]},{"name":"KSPROPERTY_FMRX_STATE","features":[84]},{"name":"KSPROPERTY_FMRX_TOPOLOGY","features":[84]},{"name":"KSPROPERTY_FMRX_VOLUME","features":[84]},{"name":"KSPROPERTY_GENERAL","features":[84]},{"name":"KSPROPERTY_GENERAL_COMPONENTID","features":[84]},{"name":"KSPROPERTY_HRTF3D","features":[84]},{"name":"KSPROPERTY_HRTF3D_FILTER_FORMAT","features":[84]},{"name":"KSPROPERTY_HRTF3D_INITIALIZE","features":[84]},{"name":"KSPROPERTY_HRTF3D_PARAMS","features":[84]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO","features":[84]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO_FORMATINFORMATION","features":[84]},{"name":"KSPROPERTY_ITD3D","features":[84]},{"name":"KSPROPERTY_ITD3D_PARAMS","features":[84]},{"name":"KSPROPERTY_JACK","features":[84]},{"name":"KSPROPERTY_JACK_CONTAINERID","features":[84]},{"name":"KSPROPERTY_JACK_DESCRIPTION","features":[84]},{"name":"KSPROPERTY_JACK_DESCRIPTION2","features":[84]},{"name":"KSPROPERTY_JACK_DESCRIPTION3","features":[84]},{"name":"KSPROPERTY_JACK_SINK_INFO","features":[84]},{"name":"KSPROPERTY_MAP_CAPTURE_HANDLE_TO_VRAM_ADDRESS","features":[84]},{"name":"KSPROPERTY_MEDIAAVAILABLE","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_AVAILABLE","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_CAPABILITIES","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_CONVERTTIMEFORMAT","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_DURATION","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_FORMATS","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_POSITION","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_POSITIONS","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_PREROLL","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_STOPPOSITION","features":[84]},{"name":"KSPROPERTY_MEDIASEEKING_TIMEFORMAT","features":[84]},{"name":"KSPROPERTY_MEMBERSHEADER","features":[84]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_MULTICHANNEL","features":[84]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_UNIFORM","features":[84]},{"name":"KSPROPERTY_MEMBER_FLAG_DEFAULT","features":[84]},{"name":"KSPROPERTY_MEMBER_RANGES","features":[84]},{"name":"KSPROPERTY_MEMBER_STEPPEDRANGES","features":[84]},{"name":"KSPROPERTY_MEMBER_VALUES","features":[84]},{"name":"KSPROPERTY_MEMORY_TRANSPORT","features":[84]},{"name":"KSPROPERTY_MPEG2VID","features":[84]},{"name":"KSPROPERTY_MPEG2VID_16_9_PANSCAN","features":[84]},{"name":"KSPROPERTY_MPEG2VID_16_9_RECT","features":[84]},{"name":"KSPROPERTY_MPEG2VID_4_3_RECT","features":[84]},{"name":"KSPROPERTY_MPEG2VID_CUR_MODE","features":[84]},{"name":"KSPROPERTY_MPEG2VID_MODES","features":[84]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_ATTRIBUTES","features":[84]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_SD_BOX","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENTTOPICS_XML","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENT_INFO","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_INFO","features":[3,84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE_EVENTSINFO","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTP","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_HEADER","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_CUSTOM","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_DISABLE","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_HOSTNTP","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_PROPERTY","features":[84]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_URI","features":[84]},{"name":"KSPROPERTY_ONESHOT_DISCONNECT","features":[84]},{"name":"KSPROPERTY_ONESHOT_RECONNECT","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE_CLIPLIST","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORKEY","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORREF","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE_DISPLAYCHANGE","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE_INTERESTS","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE_PALETTE","features":[84]},{"name":"KSPROPERTY_OVERLAYUPDATE_VIDEOPOSITION","features":[84]},{"name":"KSPROPERTY_PIN","features":[84]},{"name":"KSPROPERTY_PIN_CATEGORY","features":[84]},{"name":"KSPROPERTY_PIN_CINSTANCES","features":[84]},{"name":"KSPROPERTY_PIN_COMMUNICATION","features":[84]},{"name":"KSPROPERTY_PIN_CONSTRAINEDDATARANGES","features":[84]},{"name":"KSPROPERTY_PIN_CTYPES","features":[84]},{"name":"KSPROPERTY_PIN_DATAFLOW","features":[84]},{"name":"KSPROPERTY_PIN_DATAINTERSECTION","features":[84]},{"name":"KSPROPERTY_PIN_DATARANGES","features":[84]},{"name":"KSPROPERTY_PIN_FLAGS_ATTRIBUTE_RANGE_AWARE","features":[84]},{"name":"KSPROPERTY_PIN_FLAGS_MASK","features":[84]},{"name":"KSPROPERTY_PIN_GLOBALCINSTANCES","features":[84]},{"name":"KSPROPERTY_PIN_INTERFACES","features":[84]},{"name":"KSPROPERTY_PIN_MEDIUMS","features":[84]},{"name":"KSPROPERTY_PIN_MODEDATAFORMATS","features":[84]},{"name":"KSPROPERTY_PIN_NAME","features":[84]},{"name":"KSPROPERTY_PIN_NECESSARYINSTANCES","features":[84]},{"name":"KSPROPERTY_PIN_PHYSICALCONNECTION","features":[84]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT","features":[84]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT2","features":[84]},{"name":"KSPROPERTY_POSITIONS","features":[84]},{"name":"KSPROPERTY_PREFERRED_CAPTURE_SURFACE","features":[84]},{"name":"KSPROPERTY_QUALITY","features":[84]},{"name":"KSPROPERTY_QUALITY_ERROR","features":[84]},{"name":"KSPROPERTY_QUALITY_REPORT","features":[84]},{"name":"KSPROPERTY_RAW_AVC_CMD","features":[84]},{"name":"KSPROPERTY_RTAUDIO","features":[84]},{"name":"KSPROPERTY_RTAUDIO_BUFFER","features":[84]},{"name":"KSPROPERTY_RTAUDIO_BUFFER_WITH_NOTIFICATION","features":[84]},{"name":"KSPROPERTY_RTAUDIO_CLOCKREGISTER","features":[84]},{"name":"KSPROPERTY_RTAUDIO_GETPOSITIONFUNCTION","features":[84]},{"name":"KSPROPERTY_RTAUDIO_GETREADPACKET","features":[84]},{"name":"KSPROPERTY_RTAUDIO_HWLATENCY","features":[84]},{"name":"KSPROPERTY_RTAUDIO_PACKETCOUNT","features":[84]},{"name":"KSPROPERTY_RTAUDIO_PACKETVREGISTER","features":[84]},{"name":"KSPROPERTY_RTAUDIO_POSITIONREGISTER","features":[84]},{"name":"KSPROPERTY_RTAUDIO_PRESENTATION_POSITION","features":[84]},{"name":"KSPROPERTY_RTAUDIO_QUERY_NOTIFICATION_SUPPORT","features":[84]},{"name":"KSPROPERTY_RTAUDIO_REGISTER_NOTIFICATION_EVENT","features":[84]},{"name":"KSPROPERTY_RTAUDIO_SETWRITEPACKET","features":[84]},{"name":"KSPROPERTY_RTAUDIO_UNREGISTER_NOTIFICATION_EVENT","features":[84]},{"name":"KSPROPERTY_RTC_READER","features":[84]},{"name":"KSPROPERTY_SELECTOR_NODE_S","features":[84]},{"name":"KSPROPERTY_SELECTOR_NUM_SOURCES","features":[84]},{"name":"KSPROPERTY_SELECTOR_S","features":[84]},{"name":"KSPROPERTY_SELECTOR_SOURCE_NODE_ID","features":[84]},{"name":"KSPROPERTY_SERIAL","features":[84]},{"name":"KSPROPERTY_SERIALHDR","features":[84]},{"name":"KSPROPERTY_SOUNDDETECTOR","features":[84]},{"name":"KSPROPERTY_SOUNDDETECTOR_ARMED","features":[84]},{"name":"KSPROPERTY_SOUNDDETECTOR_MATCHRESULT","features":[84]},{"name":"KSPROPERTY_SOUNDDETECTOR_PATTERNS","features":[84]},{"name":"KSPROPERTY_SOUNDDETECTOR_RESET","features":[84]},{"name":"KSPROPERTY_SOUNDDETECTOR_STREAMINGSUPPORT","features":[84]},{"name":"KSPROPERTY_SOUNDDETECTOR_SUPPORTEDPATTERNS","features":[84]},{"name":"KSPROPERTY_SPHLI","features":[84]},{"name":"KSPROPERTY_SPPAL","features":[84]},{"name":"KSPROPERTY_STEPPING_LONG","features":[84]},{"name":"KSPROPERTY_STEPPING_LONGLONG","features":[84]},{"name":"KSPROPERTY_STREAM","features":[84]},{"name":"KSPROPERTY_STREAMINTERFACE","features":[84]},{"name":"KSPROPERTY_STREAMINTERFACE_HEADERSIZE","features":[84]},{"name":"KSPROPERTY_STREAM_ALLOCATOR","features":[84]},{"name":"KSPROPERTY_STREAM_DEGRADATION","features":[84]},{"name":"KSPROPERTY_STREAM_FRAMETIME","features":[84]},{"name":"KSPROPERTY_STREAM_MASTERCLOCK","features":[84]},{"name":"KSPROPERTY_STREAM_PIPE_ID","features":[84]},{"name":"KSPROPERTY_STREAM_PRESENTATIONEXTENT","features":[84]},{"name":"KSPROPERTY_STREAM_PRESENTATIONTIME","features":[84]},{"name":"KSPROPERTY_STREAM_QUALITY","features":[84]},{"name":"KSPROPERTY_STREAM_RATE","features":[84]},{"name":"KSPROPERTY_STREAM_RATECAPABILITY","features":[84]},{"name":"KSPROPERTY_STREAM_TIMEFORMAT","features":[84]},{"name":"KSPROPERTY_TELEPHONY_CALLCONTROL","features":[84]},{"name":"KSPROPERTY_TELEPHONY_CALLHOLD","features":[84]},{"name":"KSPROPERTY_TELEPHONY_CALLINFO","features":[84]},{"name":"KSPROPERTY_TELEPHONY_CONTROL","features":[84]},{"name":"KSPROPERTY_TELEPHONY_ENDPOINTIDPAIR","features":[84]},{"name":"KSPROPERTY_TELEPHONY_MUTE_TX","features":[84]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERCHANGE","features":[84]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERID","features":[84]},{"name":"KSPROPERTY_TELEPHONY_TOPOLOGY","features":[84]},{"name":"KSPROPERTY_TELEPHONY_VOLUME","features":[84]},{"name":"KSPROPERTY_TIMECODE","features":[84]},{"name":"KSPROPERTY_TIMECODE_NODE_S","features":[84]},{"name":"KSPROPERTY_TIMECODE_READER","features":[84]},{"name":"KSPROPERTY_TIMECODE_S","features":[84]},{"name":"KSPROPERTY_TOPOLOGY","features":[84]},{"name":"KSPROPERTY_TOPOLOGYNODE","features":[84]},{"name":"KSPROPERTY_TOPOLOGYNODE_ENABLE","features":[84]},{"name":"KSPROPERTY_TOPOLOGYNODE_RESET","features":[84]},{"name":"KSPROPERTY_TOPOLOGY_CATEGORIES","features":[84]},{"name":"KSPROPERTY_TOPOLOGY_CONNECTIONS","features":[84]},{"name":"KSPROPERTY_TOPOLOGY_NAME","features":[84]},{"name":"KSPROPERTY_TOPOLOGY_NODES","features":[84]},{"name":"KSPROPERTY_TUNER","features":[84]},{"name":"KSPROPERTY_TUNER_CAPS","features":[84]},{"name":"KSPROPERTY_TUNER_CAPS_S","features":[84]},{"name":"KSPROPERTY_TUNER_FREQUENCY","features":[84]},{"name":"KSPROPERTY_TUNER_FREQUENCY_S","features":[84]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM","features":[84]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM_S","features":[84]},{"name":"KSPROPERTY_TUNER_INPUT","features":[84]},{"name":"KSPROPERTY_TUNER_INPUT_S","features":[84]},{"name":"KSPROPERTY_TUNER_MODE","features":[84]},{"name":"KSPROPERTY_TUNER_MODES","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_AM_RADIO","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_ATSC","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_CAPS","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_CAPS_S","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_DSS","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_FM_RADIO","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_S","features":[84]},{"name":"KSPROPERTY_TUNER_MODE_TV","features":[84]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS","features":[84]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS_S","features":[84]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS","features":[84]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS_S","features":[3,84]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS","features":[84]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS_S","features":[84]},{"name":"KSPROPERTY_TUNER_STANDARD","features":[84]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE","features":[84]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE_S","features":[3,84]},{"name":"KSPROPERTY_TUNER_STANDARD_S","features":[84]},{"name":"KSPROPERTY_TUNER_STATUS","features":[84]},{"name":"KSPROPERTY_TUNER_STATUS_S","features":[84]},{"name":"KSPROPERTY_TVAUDIO_CAPS","features":[84]},{"name":"KSPROPERTY_TVAUDIO_CAPS_S","features":[84]},{"name":"KSPROPERTY_TVAUDIO_CURRENTLY_AVAILABLE_MODES","features":[84]},{"name":"KSPROPERTY_TVAUDIO_MODE","features":[84]},{"name":"KSPROPERTY_TVAUDIO_S","features":[84]},{"name":"KSPROPERTY_TYPE_BASICSUPPORT","features":[84]},{"name":"KSPROPERTY_TYPE_COPYPAYLOAD","features":[84]},{"name":"KSPROPERTY_TYPE_DEFAULTVALUES","features":[84]},{"name":"KSPROPERTY_TYPE_FSFILTERSCOPE","features":[84]},{"name":"KSPROPERTY_TYPE_GET","features":[84]},{"name":"KSPROPERTY_TYPE_GETPAYLOADSIZE","features":[84]},{"name":"KSPROPERTY_TYPE_HIGHPRIORITY","features":[84]},{"name":"KSPROPERTY_TYPE_RELATIONS","features":[84]},{"name":"KSPROPERTY_TYPE_SERIALIZERAW","features":[84]},{"name":"KSPROPERTY_TYPE_SERIALIZESET","features":[84]},{"name":"KSPROPERTY_TYPE_SERIALIZESIZE","features":[84]},{"name":"KSPROPERTY_TYPE_SET","features":[84]},{"name":"KSPROPERTY_TYPE_SETSUPPORT","features":[84]},{"name":"KSPROPERTY_TYPE_TOPOLOGY","features":[84]},{"name":"KSPROPERTY_TYPE_UNSERIALIZERAW","features":[84]},{"name":"KSPROPERTY_TYPE_UNSERIALIZESET","features":[84]},{"name":"KSPROPERTY_VBICAP","features":[84]},{"name":"KSPROPERTY_VBICAP_PROPERTIES_PROTECTION","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_CC_SUBSTREAMS_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_NABTS_SUBSTREAMS_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_DISCOVERED_BIT_ARRAY","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_REQUESTED_BIT_ARRAY","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_PIN_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_PIN_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_PIN_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_S","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_DISCOVERED_BIT_ARRAY","features":[84]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_REQUESTED_BIT_ARRAY","features":[84]},{"name":"KSPROPERTY_VIDCAP_CAMERACONTROL","features":[84]},{"name":"KSPROPERTY_VIDCAP_CROSSBAR","features":[84]},{"name":"KSPROPERTY_VIDCAP_DROPPEDFRAMES","features":[84]},{"name":"KSPROPERTY_VIDCAP_SELECTOR","features":[84]},{"name":"KSPROPERTY_VIDCAP_TVAUDIO","features":[84]},{"name":"KSPROPERTY_VIDCAP_VIDEOCOMPRESSION","features":[84]},{"name":"KSPROPERTY_VIDCAP_VIDEOCONTROL","features":[84]},{"name":"KSPROPERTY_VIDCAP_VIDEODECODER","features":[84]},{"name":"KSPROPERTY_VIDCAP_VIDEOENCODER","features":[84]},{"name":"KSPROPERTY_VIDCAP_VIDEOPROCAMP","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO_S","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_KEYFRAME_RATE","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_FRAME_SIZE","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_KEYFRAME","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_PFRAMES_PER_KEYFRAME","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_QUALITY","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S1","features":[84]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_WINDOWSIZE","features":[84]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE","features":[84]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE_S","features":[3,84]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS","features":[84]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS_S","features":[84]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES","features":[84]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES_S","features":[3,84]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE","features":[84]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE_S","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_CAPS","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_CAPS_S","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_OUTPUT_ENABLE","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_S","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_STANDARD","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_STATUS","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2_S","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_STATUS_S","features":[84]},{"name":"KSPROPERTY_VIDEODECODER_VCR_TIMING","features":[84]},{"name":"KSPROPERTY_VIDEOENCODER_CAPS","features":[84]},{"name":"KSPROPERTY_VIDEOENCODER_CC_ENABLE","features":[84]},{"name":"KSPROPERTY_VIDEOENCODER_COPYPROTECTION","features":[84]},{"name":"KSPROPERTY_VIDEOENCODER_S","features":[84]},{"name":"KSPROPERTY_VIDEOENCODER_STANDARD","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_BACKLIGHT_COMPENSATION","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_BRIGHTNESS","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_COLORENABLE","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_CONTRAST","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER_LIMIT","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_AUTO","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_MANUAL","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAIN","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAMMA","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_HUE","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S2","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_POWERLINE_FREQUENCY","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_S","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_S2","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_SATURATION","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_SHARPNESS","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE","features":[84]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE_COMPONENT","features":[84]},{"name":"KSPROPERTY_VIDMEM_TRANSPORT","features":[84]},{"name":"KSPROPERTY_VPCONFIG","features":[84]},{"name":"KSPROPERTY_VPCONFIG_DDRAWHANDLE","features":[84]},{"name":"KSPROPERTY_VPCONFIG_DDRAWSURFACEHANDLE","features":[84]},{"name":"KSPROPERTY_VPCONFIG_DECIMATIONCAPABILITY","features":[84]},{"name":"KSPROPERTY_VPCONFIG_GETCONNECTINFO","features":[84]},{"name":"KSPROPERTY_VPCONFIG_GETVIDEOFORMAT","features":[84]},{"name":"KSPROPERTY_VPCONFIG_INFORMVPINPUT","features":[84]},{"name":"KSPROPERTY_VPCONFIG_INVERTPOLARITY","features":[84]},{"name":"KSPROPERTY_VPCONFIG_MAXPIXELRATE","features":[84]},{"name":"KSPROPERTY_VPCONFIG_NUMCONNECTINFO","features":[84]},{"name":"KSPROPERTY_VPCONFIG_NUMVIDEOFORMAT","features":[84]},{"name":"KSPROPERTY_VPCONFIG_SCALEFACTOR","features":[84]},{"name":"KSPROPERTY_VPCONFIG_SETCONNECTINFO","features":[84]},{"name":"KSPROPERTY_VPCONFIG_SETVIDEOFORMAT","features":[84]},{"name":"KSPROPERTY_VPCONFIG_SURFACEPARAMS","features":[84]},{"name":"KSPROPERTY_VPCONFIG_VIDEOPORTID","features":[84]},{"name":"KSPROPERTY_VPCONFIG_VPDATAINFO","features":[84]},{"name":"KSPROPERTY_WAVE","features":[84]},{"name":"KSPROPERTY_WAVE_BUFFER","features":[84]},{"name":"KSPROPERTY_WAVE_COMPATIBLE_CAPABILITIES","features":[84]},{"name":"KSPROPERTY_WAVE_FREQUENCY","features":[84]},{"name":"KSPROPERTY_WAVE_INPUT_CAPABILITIES","features":[84]},{"name":"KSPROPERTY_WAVE_OUTPUT_CAPABILITIES","features":[84]},{"name":"KSPROPERTY_WAVE_PAN","features":[84]},{"name":"KSPROPERTY_WAVE_QUEUED_POSITION","features":[84]},{"name":"KSPROPERTY_WAVE_VOLUME","features":[84]},{"name":"KSPROPSETID_AC3","features":[84]},{"name":"KSPROPSETID_Audio","features":[84]},{"name":"KSPROPSETID_AudioBufferDuration","features":[84]},{"name":"KSPROPSETID_AudioDecoderOut","features":[84]},{"name":"KSPROPSETID_AudioEngine","features":[84]},{"name":"KSPROPSETID_AudioModule","features":[84]},{"name":"KSPROPSETID_AudioPosture","features":[84]},{"name":"KSPROPSETID_AudioResourceManagement","features":[84]},{"name":"KSPROPSETID_AudioSignalProcessing","features":[84]},{"name":"KSPROPSETID_Bibliographic","features":[84]},{"name":"KSPROPSETID_BtAudio","features":[84]},{"name":"KSPROPSETID_Clock","features":[84]},{"name":"KSPROPSETID_Connection","features":[84]},{"name":"KSPROPSETID_CopyProt","features":[84]},{"name":"KSPROPSETID_Cyclic","features":[84]},{"name":"KSPROPSETID_DirectSound3DBuffer","features":[84]},{"name":"KSPROPSETID_DirectSound3DListener","features":[84]},{"name":"KSPROPSETID_DrmAudioStream","features":[84]},{"name":"KSPROPSETID_DvdSubPic","features":[84]},{"name":"KSPROPSETID_FMRXControl","features":[84]},{"name":"KSPROPSETID_FMRXTopology","features":[84]},{"name":"KSPROPSETID_General","features":[84]},{"name":"KSPROPSETID_Hrtf3d","features":[84]},{"name":"KSPROPSETID_InterleavedAudio","features":[84]},{"name":"KSPROPSETID_Itd3d","features":[84]},{"name":"KSPROPSETID_Jack","features":[84]},{"name":"KSPROPSETID_MPEG4_MediaType_Attributes","features":[84]},{"name":"KSPROPSETID_MediaSeeking","features":[84]},{"name":"KSPROPSETID_MemoryTransport","features":[84]},{"name":"KSPROPSETID_Mpeg2Vid","features":[84]},{"name":"KSPROPSETID_OverlayUpdate","features":[84]},{"name":"KSPROPSETID_Pin","features":[84]},{"name":"KSPROPSETID_PinMDLCacheClearProp","features":[84]},{"name":"KSPROPSETID_Quality","features":[84]},{"name":"KSPROPSETID_RtAudio","features":[84]},{"name":"KSPROPSETID_SoundDetector","features":[84]},{"name":"KSPROPSETID_SoundDetector2","features":[84]},{"name":"KSPROPSETID_Stream","features":[84]},{"name":"KSPROPSETID_StreamAllocator","features":[84]},{"name":"KSPROPSETID_StreamInterface","features":[84]},{"name":"KSPROPSETID_TSRateChange","features":[84]},{"name":"KSPROPSETID_TelephonyControl","features":[84]},{"name":"KSPROPSETID_TelephonyTopology","features":[84]},{"name":"KSPROPSETID_Topology","features":[84]},{"name":"KSPROPSETID_TopologyNode","features":[84]},{"name":"KSPROPSETID_VBICAP_PROPERTIES","features":[84]},{"name":"KSPROPSETID_VBICodecFiltering","features":[84]},{"name":"KSPROPSETID_VPConfig","features":[84]},{"name":"KSPROPSETID_VPVBIConfig","features":[84]},{"name":"KSPROPSETID_VramCapture","features":[84]},{"name":"KSPROPSETID_Wave","features":[84]},{"name":"KSPROPTYPESETID_General","features":[84]},{"name":"KSP_NODE","features":[84]},{"name":"KSP_PIN","features":[84]},{"name":"KSP_TIMEFORMAT","features":[84]},{"name":"KSQUALITY","features":[84]},{"name":"KSQUALITY_MANAGER","features":[3,84]},{"name":"KSQUERYBUFFER","features":[3,84]},{"name":"KSRATE","features":[84]},{"name":"KSRATE_CAPABILITY","features":[84]},{"name":"KSRATE_NOPRESENTATIONDURATION","features":[84]},{"name":"KSRATE_NOPRESENTATIONSTART","features":[84]},{"name":"KSRELATIVEEVENT","features":[3,84]},{"name":"KSRELATIVEEVENT_FLAG_HANDLE","features":[84]},{"name":"KSRELATIVEEVENT_FLAG_POINTER","features":[84]},{"name":"KSRESET","features":[84]},{"name":"KSRESET_BEGIN","features":[84]},{"name":"KSRESET_END","features":[84]},{"name":"KSRESOLUTION","features":[84]},{"name":"KSRTAUDIO_BUFFER","features":[3,84]},{"name":"KSRTAUDIO_BUFFER32","features":[3,84]},{"name":"KSRTAUDIO_BUFFER_PROPERTY","features":[84]},{"name":"KSRTAUDIO_BUFFER_PROPERTY32","features":[84]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION","features":[84]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION32","features":[84]},{"name":"KSRTAUDIO_GETREADPACKET_INFO","features":[3,84]},{"name":"KSRTAUDIO_HWLATENCY","features":[84]},{"name":"KSRTAUDIO_HWREGISTER","features":[84]},{"name":"KSRTAUDIO_HWREGISTER32","features":[84]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY","features":[84]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY32","features":[84]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY","features":[3,84]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY32","features":[84]},{"name":"KSRTAUDIO_PACKETVREGISTER","features":[84]},{"name":"KSRTAUDIO_PACKETVREGISTER_PROPERTY","features":[84]},{"name":"KSRTAUDIO_SETWRITEPACKET_INFO","features":[84]},{"name":"KSSOUNDDETECTORPROPERTY","features":[84]},{"name":"KSSTATE","features":[84]},{"name":"KSSTATE_ACQUIRE","features":[84]},{"name":"KSSTATE_PAUSE","features":[84]},{"name":"KSSTATE_RUN","features":[84]},{"name":"KSSTATE_STOP","features":[84]},{"name":"KSSTREAMALLOCATOR_STATUS","features":[84]},{"name":"KSSTREAMALLOCATOR_STATUS_EX","features":[84]},{"name":"KSSTREAM_FAILUREEXCEPTION","features":[84]},{"name":"KSSTREAM_HEADER","features":[84]},{"name":"KSSTREAM_HEADER","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_BUFFEREDTRANSFER","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_DATADISCONTINUITY","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_DURATIONVALID","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFPHOTOSEQUENCE","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFSTREAM","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_FLUSHONPAUSE","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_FRAMEINFO","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_LOOPEDDATA","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_METADATA","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_PERSIST_SAMPLE","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_PREROLL","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_SAMPLE_PERSISTED","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_SECUREBUFFERTRANSFER","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_SPLICEPOINT","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEDISCONTINUITY","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEVALID","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_TYPECHANGED","features":[84]},{"name":"KSSTREAM_HEADER_OPTIONSF_VRAM_DATA_TRANSFER","features":[84]},{"name":"KSSTREAM_HEADER_TRACK_COMPLETION_NUMBERS","features":[84]},{"name":"KSSTREAM_METADATA_INFO","features":[84]},{"name":"KSSTREAM_NONPAGED_DATA","features":[84]},{"name":"KSSTREAM_PAGED_DATA","features":[84]},{"name":"KSSTREAM_READ","features":[84]},{"name":"KSSTREAM_SEGMENT","features":[3,84]},{"name":"KSSTREAM_SYNCHRONOUS","features":[84]},{"name":"KSSTREAM_UVC_METADATA","features":[84]},{"name":"KSSTREAM_UVC_METADATATYPE_TIMESTAMP","features":[84]},{"name":"KSSTREAM_UVC_SECURE_ATTRIBUTE_SIZE","features":[84]},{"name":"KSSTREAM_WRITE","features":[84]},{"name":"KSSTRING_Allocator","features":[84]},{"name":"KSSTRING_AllocatorEx","features":[84]},{"name":"KSSTRING_Clock","features":[84]},{"name":"KSSTRING_Filter","features":[84]},{"name":"KSSTRING_Pin","features":[84]},{"name":"KSSTRING_TopologyNode","features":[84]},{"name":"KSTELEPHONY_CALLCONTROL","features":[84]},{"name":"KSTELEPHONY_CALLINFO","features":[84]},{"name":"KSTELEPHONY_PROVIDERCHANGE","features":[84]},{"name":"KSTIME","features":[84]},{"name":"KSTIME_FORMAT_BYTE","features":[84]},{"name":"KSTIME_FORMAT_FIELD","features":[84]},{"name":"KSTIME_FORMAT_FRAME","features":[84]},{"name":"KSTIME_FORMAT_MEDIA_TIME","features":[84]},{"name":"KSTIME_FORMAT_SAMPLE","features":[84]},{"name":"KSTOPOLOGY","features":[84]},{"name":"KSTOPOLOGY_CONNECTION","features":[84]},{"name":"KSTOPOLOGY_ENDPOINTID","features":[84]},{"name":"KSTOPOLOGY_ENDPOINTIDPAIR","features":[84]},{"name":"KSVPMAXPIXELRATE","features":[84]},{"name":"KSVPSIZE_PROP","features":[84]},{"name":"KSVPSURFACEPARAMS","features":[84]},{"name":"KSWAVETABLE_WAVE_DESC","features":[3,84]},{"name":"KSWAVE_BUFFER","features":[84]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_LOOPING","features":[84]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_STATIC","features":[84]},{"name":"KSWAVE_COMPATCAPS","features":[84]},{"name":"KSWAVE_COMPATCAPS_INPUT","features":[84]},{"name":"KSWAVE_COMPATCAPS_OUTPUT","features":[84]},{"name":"KSWAVE_INPUT_CAPABILITIES","features":[84]},{"name":"KSWAVE_OUTPUT_CAPABILITIES","features":[84]},{"name":"KSWAVE_VOLUME","features":[84]},{"name":"KS_AMCONTROL_COLORINFO_PRESENT","features":[84]},{"name":"KS_AMCONTROL_PAD_TO_16x9","features":[84]},{"name":"KS_AMCONTROL_PAD_TO_4x3","features":[84]},{"name":"KS_AMCONTROL_USED","features":[84]},{"name":"KS_AMPixAspectRatio","features":[84]},{"name":"KS_AMVPDATAINFO","features":[3,84]},{"name":"KS_AMVPDIMINFO","features":[3,84]},{"name":"KS_AMVPSIZE","features":[84]},{"name":"KS_AMVP_BEST_BANDWIDTH","features":[84]},{"name":"KS_AMVP_DO_NOT_CARE","features":[84]},{"name":"KS_AMVP_INPUT_SAME_AS_OUTPUT","features":[84]},{"name":"KS_AMVP_MODE","features":[84]},{"name":"KS_AMVP_MODE_BOBINTERLEAVED","features":[84]},{"name":"KS_AMVP_MODE_BOBNONINTERLEAVED","features":[84]},{"name":"KS_AMVP_MODE_SKIPEVEN","features":[84]},{"name":"KS_AMVP_MODE_SKIPODD","features":[84]},{"name":"KS_AMVP_MODE_WEAVE","features":[84]},{"name":"KS_AMVP_SELECTFORMATBY","features":[84]},{"name":"KS_AM_ExactRateChange","features":[84]},{"name":"KS_AM_PROPERTY_TS_RATE_CHANGE","features":[84]},{"name":"KS_AM_RATE_ExactRateChange","features":[84]},{"name":"KS_AM_RATE_MaxFullDataRate","features":[84]},{"name":"KS_AM_RATE_SimpleRateChange","features":[84]},{"name":"KS_AM_RATE_Step","features":[84]},{"name":"KS_AM_SimpleRateChange","features":[84]},{"name":"KS_AM_UseNewCSSKey","features":[84]},{"name":"KS_ANALOGVIDEOINFO","features":[3,84]},{"name":"KS_AnalogVideoStandard","features":[84]},{"name":"KS_AnalogVideo_NTSC_433","features":[84]},{"name":"KS_AnalogVideo_NTSC_M","features":[84]},{"name":"KS_AnalogVideo_NTSC_M_J","features":[84]},{"name":"KS_AnalogVideo_NTSC_Mask","features":[84]},{"name":"KS_AnalogVideo_None","features":[84]},{"name":"KS_AnalogVideo_PAL_60","features":[84]},{"name":"KS_AnalogVideo_PAL_B","features":[84]},{"name":"KS_AnalogVideo_PAL_D","features":[84]},{"name":"KS_AnalogVideo_PAL_G","features":[84]},{"name":"KS_AnalogVideo_PAL_H","features":[84]},{"name":"KS_AnalogVideo_PAL_I","features":[84]},{"name":"KS_AnalogVideo_PAL_M","features":[84]},{"name":"KS_AnalogVideo_PAL_Mask","features":[84]},{"name":"KS_AnalogVideo_PAL_N","features":[84]},{"name":"KS_AnalogVideo_PAL_N_COMBO","features":[84]},{"name":"KS_AnalogVideo_SECAM_B","features":[84]},{"name":"KS_AnalogVideo_SECAM_D","features":[84]},{"name":"KS_AnalogVideo_SECAM_G","features":[84]},{"name":"KS_AnalogVideo_SECAM_H","features":[84]},{"name":"KS_AnalogVideo_SECAM_K","features":[84]},{"name":"KS_AnalogVideo_SECAM_K1","features":[84]},{"name":"KS_AnalogVideo_SECAM_L","features":[84]},{"name":"KS_AnalogVideo_SECAM_L1","features":[84]},{"name":"KS_AnalogVideo_SECAM_Mask","features":[84]},{"name":"KS_BITMAPINFOHEADER","features":[84]},{"name":"KS_BI_BITFIELDS","features":[84]},{"name":"KS_BI_JPEG","features":[84]},{"name":"KS_BI_RGB","features":[84]},{"name":"KS_BI_RLE4","features":[84]},{"name":"KS_BI_RLE8","features":[84]},{"name":"KS_CAMERACONTROL_ASYNC_RESET","features":[84]},{"name":"KS_CAMERACONTROL_ASYNC_START","features":[84]},{"name":"KS_CAMERACONTROL_ASYNC_STOP","features":[84]},{"name":"KS_CAPTURE_ALLOC_INVALID","features":[84]},{"name":"KS_CAPTURE_ALLOC_SECURE_BUFFER","features":[84]},{"name":"KS_CAPTURE_ALLOC_SYSTEM","features":[84]},{"name":"KS_CAPTURE_ALLOC_SYSTEM_AGP","features":[84]},{"name":"KS_CAPTURE_ALLOC_VRAM","features":[84]},{"name":"KS_CAPTURE_ALLOC_VRAM_MAPPED","features":[84]},{"name":"KS_CC_SUBSTREAM_EVEN","features":[84]},{"name":"KS_CC_SUBSTREAM_FIELD1_MASK","features":[84]},{"name":"KS_CC_SUBSTREAM_FIELD2_MASK","features":[84]},{"name":"KS_CC_SUBSTREAM_ODD","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC1","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC2","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC3","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC4","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_T1","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_T2","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_T3","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_T4","features":[84]},{"name":"KS_CC_SUBSTREAM_SERVICE_XDS","features":[84]},{"name":"KS_COLCON","features":[84]},{"name":"KS_COMPRESSION","features":[84]},{"name":"KS_COPYPROTECT_RestrictDuplication","features":[84]},{"name":"KS_COPY_MACROVISION","features":[84]},{"name":"KS_COPY_MACROVISION_LEVEL","features":[84]},{"name":"KS_CameraControlAsyncOperation","features":[84]},{"name":"KS_CompressionCaps","features":[84]},{"name":"KS_CompressionCaps_CanBFrame","features":[84]},{"name":"KS_CompressionCaps_CanCrunch","features":[84]},{"name":"KS_CompressionCaps_CanKeyFrame","features":[84]},{"name":"KS_CompressionCaps_CanQuality","features":[84]},{"name":"KS_CompressionCaps_CanWindow","features":[84]},{"name":"KS_DATAFORMAT_H264VIDEOINFO","features":[84]},{"name":"KS_DATAFORMAT_IMAGEINFO","features":[84]},{"name":"KS_DATAFORMAT_MPEGVIDEOINFO2","features":[3,84]},{"name":"KS_DATAFORMAT_VBIINFOHEADER","features":[84]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER","features":[3,84]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER2","features":[3,84]},{"name":"KS_DATAFORMAT_VIDEOINFO_PALETTE","features":[3,84]},{"name":"KS_DATARANGE_ANALOGVIDEO","features":[3,84]},{"name":"KS_DATARANGE_H264_VIDEO","features":[3,84]},{"name":"KS_DATARANGE_IMAGE","features":[3,84]},{"name":"KS_DATARANGE_MPEG1_VIDEO","features":[3,84]},{"name":"KS_DATARANGE_MPEG2_VIDEO","features":[3,84]},{"name":"KS_DATARANGE_VIDEO","features":[3,84]},{"name":"KS_DATARANGE_VIDEO2","features":[3,84]},{"name":"KS_DATARANGE_VIDEO_PALETTE","features":[3,84]},{"name":"KS_DATARANGE_VIDEO_VBI","features":[3,84]},{"name":"KS_DVDCOPYSTATE","features":[84]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_NOT_REQUIRED","features":[84]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_REQUIRED","features":[84]},{"name":"KS_DVDCOPYSTATE_DONE","features":[84]},{"name":"KS_DVDCOPYSTATE_INITIALIZE","features":[84]},{"name":"KS_DVDCOPYSTATE_INITIALIZE_TITLE","features":[84]},{"name":"KS_DVDCOPY_BUSKEY","features":[84]},{"name":"KS_DVDCOPY_CHLGKEY","features":[84]},{"name":"KS_DVDCOPY_DISCKEY","features":[84]},{"name":"KS_DVDCOPY_REGION","features":[84]},{"name":"KS_DVDCOPY_SET_COPY_STATE","features":[84]},{"name":"KS_DVDCOPY_TITLEKEY","features":[84]},{"name":"KS_DVD_CGMS_COPY_ONCE","features":[84]},{"name":"KS_DVD_CGMS_COPY_PERMITTED","features":[84]},{"name":"KS_DVD_CGMS_COPY_PROTECT_MASK","features":[84]},{"name":"KS_DVD_CGMS_NO_COPY","features":[84]},{"name":"KS_DVD_CGMS_RESERVED_MASK","features":[84]},{"name":"KS_DVD_COPYRIGHTED","features":[84]},{"name":"KS_DVD_COPYRIGHT_MASK","features":[84]},{"name":"KS_DVD_NOT_COPYRIGHTED","features":[84]},{"name":"KS_DVD_SECTOR_NOT_PROTECTED","features":[84]},{"name":"KS_DVD_SECTOR_PROTECTED","features":[84]},{"name":"KS_DVD_SECTOR_PROTECT_MASK","features":[84]},{"name":"KS_DVD_YCrCb","features":[84]},{"name":"KS_DVD_YUV","features":[84]},{"name":"KS_FRAME_INFO","features":[3,84]},{"name":"KS_FRAMING_ITEM","features":[84]},{"name":"KS_FRAMING_RANGE","features":[84]},{"name":"KS_FRAMING_RANGE_WEIGHTED","features":[84]},{"name":"KS_H264VIDEOINFO","features":[84]},{"name":"KS_INTERLACE_1FieldPerSample","features":[84]},{"name":"KS_INTERLACE_DisplayModeBobOnly","features":[84]},{"name":"KS_INTERLACE_DisplayModeBobOrWeave","features":[84]},{"name":"KS_INTERLACE_DisplayModeMask","features":[84]},{"name":"KS_INTERLACE_DisplayModeWeaveOnly","features":[84]},{"name":"KS_INTERLACE_Field1First","features":[84]},{"name":"KS_INTERLACE_FieldPatBothIrregular","features":[84]},{"name":"KS_INTERLACE_FieldPatBothRegular","features":[84]},{"name":"KS_INTERLACE_FieldPatField1Only","features":[84]},{"name":"KS_INTERLACE_FieldPatField2Only","features":[84]},{"name":"KS_INTERLACE_FieldPatternMask","features":[84]},{"name":"KS_INTERLACE_IsInterlaced","features":[84]},{"name":"KS_INTERLACE_UNUSED","features":[84]},{"name":"KS_LogicalMemoryType","features":[84]},{"name":"KS_MACROVISION_DISABLED","features":[84]},{"name":"KS_MACROVISION_LEVEL1","features":[84]},{"name":"KS_MACROVISION_LEVEL2","features":[84]},{"name":"KS_MACROVISION_LEVEL3","features":[84]},{"name":"KS_MAX_SIZE_MPEG1_SEQUENCE_INFO","features":[84]},{"name":"KS_MPEG1VIDEOINFO","features":[3,84]},{"name":"KS_MPEG2Level","features":[84]},{"name":"KS_MPEG2Level_High","features":[84]},{"name":"KS_MPEG2Level_High1440","features":[84]},{"name":"KS_MPEG2Level_Low","features":[84]},{"name":"KS_MPEG2Level_Main","features":[84]},{"name":"KS_MPEG2Profile","features":[84]},{"name":"KS_MPEG2Profile_High","features":[84]},{"name":"KS_MPEG2Profile_Main","features":[84]},{"name":"KS_MPEG2Profile_SNRScalable","features":[84]},{"name":"KS_MPEG2Profile_Simple","features":[84]},{"name":"KS_MPEG2Profile_SpatiallyScalable","features":[84]},{"name":"KS_MPEG2_27MhzTimebase","features":[84]},{"name":"KS_MPEG2_DSS_UserData","features":[84]},{"name":"KS_MPEG2_DVB_UserData","features":[84]},{"name":"KS_MPEG2_DVDLine21Field1","features":[84]},{"name":"KS_MPEG2_DVDLine21Field2","features":[84]},{"name":"KS_MPEG2_DoPanScan","features":[84]},{"name":"KS_MPEG2_FilmCameraMode","features":[84]},{"name":"KS_MPEG2_LetterboxAnalogOut","features":[84]},{"name":"KS_MPEG2_SourceIsLetterboxed","features":[84]},{"name":"KS_MPEG2_WidescreenAnalogOut","features":[84]},{"name":"KS_MPEGAUDIOINFO","features":[84]},{"name":"KS_MPEGAUDIOINFO_27MhzTimebase","features":[84]},{"name":"KS_MPEGVIDEOINFO2","features":[3,84]},{"name":"KS_MemoryTypeAnyHost","features":[84]},{"name":"KS_MemoryTypeDeviceHostMapped","features":[84]},{"name":"KS_MemoryTypeDeviceSpecific","features":[84]},{"name":"KS_MemoryTypeDontCare","features":[84]},{"name":"KS_MemoryTypeKernelNonPaged","features":[84]},{"name":"KS_MemoryTypeKernelPaged","features":[84]},{"name":"KS_MemoryTypeUser","features":[84]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_ADVERTISER_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_CONTENT_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_MICROSOFT_RESERVED_TEST_DATA_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_ADVERTISER_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_CONTENT_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_ADVERTISER_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_ADVERTISER_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_CONTENT_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_ADVERTISER_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_CONTENT_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_ADVERTISER_BASE","features":[84]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_CONTENT_BASE","features":[84]},{"name":"KS_Obsolete_VideoControlFlag_ExternalTriggerEnable","features":[84]},{"name":"KS_Obsolete_VideoControlFlag_Trigger","features":[84]},{"name":"KS_PhysConn_Audio_1394","features":[84]},{"name":"KS_PhysConn_Audio_AESDigital","features":[84]},{"name":"KS_PhysConn_Audio_AUX","features":[84]},{"name":"KS_PhysConn_Audio_AudioDecoder","features":[84]},{"name":"KS_PhysConn_Audio_Line","features":[84]},{"name":"KS_PhysConn_Audio_Mic","features":[84]},{"name":"KS_PhysConn_Audio_SCSI","features":[84]},{"name":"KS_PhysConn_Audio_SPDIFDigital","features":[84]},{"name":"KS_PhysConn_Audio_Tuner","features":[84]},{"name":"KS_PhysConn_Audio_USB","features":[84]},{"name":"KS_PhysConn_Video_1394","features":[84]},{"name":"KS_PhysConn_Video_AUX","features":[84]},{"name":"KS_PhysConn_Video_Composite","features":[84]},{"name":"KS_PhysConn_Video_ParallelDigital","features":[84]},{"name":"KS_PhysConn_Video_RGB","features":[84]},{"name":"KS_PhysConn_Video_SCART","features":[84]},{"name":"KS_PhysConn_Video_SCSI","features":[84]},{"name":"KS_PhysConn_Video_SVideo","features":[84]},{"name":"KS_PhysConn_Video_SerialDigital","features":[84]},{"name":"KS_PhysConn_Video_Tuner","features":[84]},{"name":"KS_PhysConn_Video_USB","features":[84]},{"name":"KS_PhysConn_Video_VideoDecoder","features":[84]},{"name":"KS_PhysConn_Video_VideoEncoder","features":[84]},{"name":"KS_PhysConn_Video_YRYBY","features":[84]},{"name":"KS_PhysicalConnectorType","features":[84]},{"name":"KS_PixAspectRatio_NTSC16x9","features":[84]},{"name":"KS_PixAspectRatio_NTSC4x3","features":[84]},{"name":"KS_PixAspectRatio_PAL16x9","features":[84]},{"name":"KS_PixAspectRatio_PAL4x3","features":[84]},{"name":"KS_RGBQUAD","features":[84]},{"name":"KS_SECURE_CAMERA_SCENARIO_ID","features":[84]},{"name":"KS_SEEKING_AbsolutePositioning","features":[84]},{"name":"KS_SEEKING_CAPABILITIES","features":[84]},{"name":"KS_SEEKING_CanGetCurrentPos","features":[84]},{"name":"KS_SEEKING_CanGetDuration","features":[84]},{"name":"KS_SEEKING_CanGetStopPos","features":[84]},{"name":"KS_SEEKING_CanPlayBackwards","features":[84]},{"name":"KS_SEEKING_CanSeekAbsolute","features":[84]},{"name":"KS_SEEKING_CanSeekBackwards","features":[84]},{"name":"KS_SEEKING_CanSeekForwards","features":[84]},{"name":"KS_SEEKING_FLAGS","features":[84]},{"name":"KS_SEEKING_IncrementalPositioning","features":[84]},{"name":"KS_SEEKING_NoPositioning","features":[84]},{"name":"KS_SEEKING_PositioningBitsMask","features":[84]},{"name":"KS_SEEKING_RelativePositioning","features":[84]},{"name":"KS_SEEKING_ReturnTime","features":[84]},{"name":"KS_SEEKING_SeekToKeyFrame","features":[84]},{"name":"KS_StreamingHint_CompQuality","features":[84]},{"name":"KS_StreamingHint_CompWindowSize","features":[84]},{"name":"KS_StreamingHint_FrameInterval","features":[84]},{"name":"KS_StreamingHint_KeyFrameRate","features":[84]},{"name":"KS_StreamingHint_PFrameRate","features":[84]},{"name":"KS_TRUECOLORINFO","features":[84]},{"name":"KS_TUNER_STRATEGY","features":[84]},{"name":"KS_TUNER_STRATEGY_DRIVER_TUNES","features":[84]},{"name":"KS_TUNER_STRATEGY_PLL","features":[84]},{"name":"KS_TUNER_STRATEGY_SIGNAL_STRENGTH","features":[84]},{"name":"KS_TUNER_TUNING_COARSE","features":[84]},{"name":"KS_TUNER_TUNING_EXACT","features":[84]},{"name":"KS_TUNER_TUNING_FINE","features":[84]},{"name":"KS_TUNER_TUNING_FLAGS","features":[84]},{"name":"KS_TVAUDIO_MODE_LANG_A","features":[84]},{"name":"KS_TVAUDIO_MODE_LANG_B","features":[84]},{"name":"KS_TVAUDIO_MODE_LANG_C","features":[84]},{"name":"KS_TVAUDIO_MODE_MONO","features":[84]},{"name":"KS_TVAUDIO_MODE_STEREO","features":[84]},{"name":"KS_TVAUDIO_PRESET_LANG_A","features":[84]},{"name":"KS_TVAUDIO_PRESET_LANG_B","features":[84]},{"name":"KS_TVAUDIO_PRESET_LANG_C","features":[84]},{"name":"KS_TVAUDIO_PRESET_STEREO","features":[84]},{"name":"KS_TVTUNER_CHANGE_BEGIN_TUNE","features":[84]},{"name":"KS_TVTUNER_CHANGE_END_TUNE","features":[84]},{"name":"KS_TVTUNER_CHANGE_INFO","features":[84]},{"name":"KS_VBICAP_PROTECTION_MV_DETECTED","features":[84]},{"name":"KS_VBICAP_PROTECTION_MV_HARDWARE","features":[84]},{"name":"KS_VBICAP_PROTECTION_MV_PRESENT","features":[84]},{"name":"KS_VBIDATARATE_CC","features":[84]},{"name":"KS_VBIDATARATE_NABTS","features":[84]},{"name":"KS_VBIINFOHEADER","features":[84]},{"name":"KS_VBI_FLAG_FIELD1","features":[84]},{"name":"KS_VBI_FLAG_FIELD2","features":[84]},{"name":"KS_VBI_FLAG_FRAME","features":[84]},{"name":"KS_VBI_FLAG_MV_DETECTED","features":[84]},{"name":"KS_VBI_FLAG_MV_HARDWARE","features":[84]},{"name":"KS_VBI_FLAG_MV_PRESENT","features":[84]},{"name":"KS_VBI_FLAG_TVTUNER_CHANGE","features":[84]},{"name":"KS_VBI_FLAG_VBIINFOHEADER_CHANGE","features":[84]},{"name":"KS_VBI_FRAME_INFO","features":[84]},{"name":"KS_VIDEODECODER_FLAGS","features":[84]},{"name":"KS_VIDEODECODER_FLAGS_CAN_DISABLE_OUTPUT","features":[84]},{"name":"KS_VIDEODECODER_FLAGS_CAN_INDICATE_LOCKED","features":[84]},{"name":"KS_VIDEODECODER_FLAGS_CAN_USE_VCR_LOCKING","features":[84]},{"name":"KS_VIDEOINFO","features":[3,84]},{"name":"KS_VIDEOINFOHEADER","features":[3,84]},{"name":"KS_VIDEOINFOHEADER2","features":[3,84]},{"name":"KS_VIDEOSTREAM_CAPTURE","features":[84]},{"name":"KS_VIDEOSTREAM_CC","features":[84]},{"name":"KS_VIDEOSTREAM_EDS","features":[84]},{"name":"KS_VIDEOSTREAM_IS_VPE","features":[84]},{"name":"KS_VIDEOSTREAM_NABTS","features":[84]},{"name":"KS_VIDEOSTREAM_PREVIEW","features":[84]},{"name":"KS_VIDEOSTREAM_STILL","features":[84]},{"name":"KS_VIDEOSTREAM_TELETEXT","features":[84]},{"name":"KS_VIDEOSTREAM_VBI","features":[84]},{"name":"KS_VIDEO_ALLOC_VPE_AGP","features":[84]},{"name":"KS_VIDEO_ALLOC_VPE_DISPLAY","features":[84]},{"name":"KS_VIDEO_ALLOC_VPE_SYSTEM","features":[84]},{"name":"KS_VIDEO_FLAG_B_FRAME","features":[84]},{"name":"KS_VIDEO_FLAG_FIELD1","features":[84]},{"name":"KS_VIDEO_FLAG_FIELD1FIRST","features":[84]},{"name":"KS_VIDEO_FLAG_FIELD2","features":[84]},{"name":"KS_VIDEO_FLAG_FIELD_MASK","features":[84]},{"name":"KS_VIDEO_FLAG_FRAME","features":[84]},{"name":"KS_VIDEO_FLAG_IPB_MASK","features":[84]},{"name":"KS_VIDEO_FLAG_I_FRAME","features":[84]},{"name":"KS_VIDEO_FLAG_P_FRAME","features":[84]},{"name":"KS_VIDEO_FLAG_REPEAT_FIELD","features":[84]},{"name":"KS_VIDEO_FLAG_WEAVE","features":[84]},{"name":"KS_VIDEO_STREAM_CONFIG_CAPS","features":[3,84]},{"name":"KS_VideoControlFlag_ExternalTriggerEnable","features":[84]},{"name":"KS_VideoControlFlag_FlipHorizontal","features":[84]},{"name":"KS_VideoControlFlag_FlipVertical","features":[84]},{"name":"KS_VideoControlFlag_IndependentImagePin","features":[84]},{"name":"KS_VideoControlFlag_StartPhotoSequenceCapture","features":[84]},{"name":"KS_VideoControlFlag_StillCapturePreviewFrame","features":[84]},{"name":"KS_VideoControlFlag_StopPhotoSequenceCapture","features":[84]},{"name":"KS_VideoControlFlag_Trigger","features":[84]},{"name":"KS_VideoControlFlags","features":[84]},{"name":"KS_VideoStreamingHints","features":[84]},{"name":"KS_iBLUE","features":[84]},{"name":"KS_iEGA_COLORS","features":[84]},{"name":"KS_iGREEN","features":[84]},{"name":"KS_iMASK_COLORS","features":[84]},{"name":"KS_iMAXBITS","features":[84]},{"name":"KS_iPALETTE","features":[84]},{"name":"KS_iPALETTE_COLORS","features":[84]},{"name":"KS_iRED","features":[84]},{"name":"KS_iTRUECOLOR","features":[84]},{"name":"KsAllocatorMode_Kernel","features":[84]},{"name":"KsAllocatorMode_User","features":[84]},{"name":"KsCreateAllocator","features":[3,84]},{"name":"KsCreateAllocator2","features":[3,84]},{"name":"KsCreateClock","features":[3,84]},{"name":"KsCreateClock2","features":[3,84]},{"name":"KsCreatePin","features":[3,84]},{"name":"KsCreatePin2","features":[3,84]},{"name":"KsCreateTopologyNode","features":[3,84]},{"name":"KsCreateTopologyNode2","features":[3,84]},{"name":"KsGetMediaType","features":[3,84,85]},{"name":"KsGetMediaTypeCount","features":[3,84]},{"name":"KsGetMultiplePinFactoryItems","features":[3,84]},{"name":"KsIoOperation_Read","features":[84]},{"name":"KsIoOperation_Write","features":[84]},{"name":"KsOpenDefaultDevice","features":[3,84]},{"name":"KsPeekOperation_AddRef","features":[84]},{"name":"KsPeekOperation_PeekOnly","features":[84]},{"name":"KsResolveRequiredAttributes","features":[84]},{"name":"KsSynchronousDeviceControl","features":[3,84]},{"name":"LIGHT_FILTER","features":[84]},{"name":"LOOPEDSTREAMING_POSITION_EVENT_DATA","features":[3,84]},{"name":"MAX_NABTS_VBI_LINES_PER_FIELD","features":[84]},{"name":"MAX_RESOURCEGROUPID_LENGTH","features":[84]},{"name":"MAX_SINK_DESCRIPTION_NAME_LENGTH","features":[84]},{"name":"MAX_WST_VBI_LINES_PER_FIELD","features":[84]},{"name":"MEDIUM_INFO","features":[3,84]},{"name":"MF_MDL_SHARED_PAYLOAD_KEY","features":[84]},{"name":"MIN_DEV_VER_FOR_FLAGS","features":[84]},{"name":"MIN_DEV_VER_FOR_QI","features":[84]},{"name":"MetadataId_BackgroundSegmentationMask","features":[84]},{"name":"MetadataId_CameraExtrinsics","features":[84]},{"name":"MetadataId_CameraIntrinsics","features":[84]},{"name":"MetadataId_CaptureStats","features":[84]},{"name":"MetadataId_Custom_Start","features":[84]},{"name":"MetadataId_DigitalWindow","features":[84]},{"name":"MetadataId_FrameIllumination","features":[84]},{"name":"MetadataId_PhotoConfirmation","features":[84]},{"name":"MetadataId_Standard_End","features":[84]},{"name":"MetadataId_Standard_Start","features":[84]},{"name":"MetadataId_UsbVideoHeader","features":[84]},{"name":"NABTSFEC_BUFFER","features":[84]},{"name":"NABTS_BUFFER","features":[84]},{"name":"NABTS_BUFFER_LINE","features":[84]},{"name":"NABTS_BUFFER_PICTURENUMBER_SUPPORT","features":[84]},{"name":"NABTS_BYTES_PER_LINE","features":[84]},{"name":"NABTS_LINES_PER_BUNDLE","features":[84]},{"name":"NABTS_PAYLOAD_PER_LINE","features":[84]},{"name":"NANOSECONDS","features":[84]},{"name":"OPTIMAL_WEIGHT_TOTALS","features":[84]},{"name":"PINNAME_DISPLAYPORT_OUT","features":[84]},{"name":"PINNAME_HDMI_OUT","features":[84]},{"name":"PINNAME_IMAGE","features":[84]},{"name":"PINNAME_SPDIF_IN","features":[84]},{"name":"PINNAME_SPDIF_OUT","features":[84]},{"name":"PINNAME_VIDEO_ANALOGVIDEOIN","features":[84]},{"name":"PINNAME_VIDEO_CAPTURE","features":[84]},{"name":"PINNAME_VIDEO_CC","features":[84]},{"name":"PINNAME_VIDEO_CC_CAPTURE","features":[84]},{"name":"PINNAME_VIDEO_EDS","features":[84]},{"name":"PINNAME_VIDEO_NABTS","features":[84]},{"name":"PINNAME_VIDEO_NABTS_CAPTURE","features":[84]},{"name":"PINNAME_VIDEO_PREVIEW","features":[84]},{"name":"PINNAME_VIDEO_STILL","features":[84]},{"name":"PINNAME_VIDEO_TELETEXT","features":[84]},{"name":"PINNAME_VIDEO_TIMECODE","features":[84]},{"name":"PINNAME_VIDEO_VBI","features":[84]},{"name":"PINNAME_VIDEO_VIDEOPORT","features":[84]},{"name":"PINNAME_VIDEO_VIDEOPORT_VBI","features":[84]},{"name":"PIPE_ALLOCATOR_PLACE","features":[84]},{"name":"PIPE_DIMENSIONS","features":[84]},{"name":"PIPE_STATE","features":[84]},{"name":"PIPE_TERMINATION","features":[84]},{"name":"PROPSETID_ALLOCATOR_CONTROL","features":[84]},{"name":"PROPSETID_EXT_DEVICE","features":[84]},{"name":"PROPSETID_EXT_TRANSPORT","features":[84]},{"name":"PROPSETID_TIMECODE_READER","features":[84]},{"name":"PROPSETID_TUNER","features":[84]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL","features":[84]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_FLASH","features":[84]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[84]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[84]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_VIDEO_STABILIZATION","features":[84]},{"name":"PROPSETID_VIDCAP_CROSSBAR","features":[84]},{"name":"PROPSETID_VIDCAP_DROPPEDFRAMES","features":[84]},{"name":"PROPSETID_VIDCAP_SELECTOR","features":[84]},{"name":"PROPSETID_VIDCAP_TVAUDIO","features":[84]},{"name":"PROPSETID_VIDCAP_VIDEOCOMPRESSION","features":[84]},{"name":"PROPSETID_VIDCAP_VIDEOCONTROL","features":[84]},{"name":"PROPSETID_VIDCAP_VIDEODECODER","features":[84]},{"name":"PROPSETID_VIDCAP_VIDEOENCODER","features":[84]},{"name":"PROPSETID_VIDCAP_VIDEOPROCAMP","features":[84]},{"name":"PipeFactor_Align","features":[84]},{"name":"PipeFactor_Buffers","features":[84]},{"name":"PipeFactor_FixedCompression","features":[84]},{"name":"PipeFactor_Flags","features":[84]},{"name":"PipeFactor_LogicalEnd","features":[84]},{"name":"PipeFactor_MemoryTypes","features":[84]},{"name":"PipeFactor_None","features":[84]},{"name":"PipeFactor_OptimalRanges","features":[84]},{"name":"PipeFactor_PhysicalEnd","features":[84]},{"name":"PipeFactor_PhysicalRanges","features":[84]},{"name":"PipeFactor_UnknownCompression","features":[84]},{"name":"PipeFactor_UserModeDownstream","features":[84]},{"name":"PipeFactor_UserModeUpstream","features":[84]},{"name":"PipeState_CompressionUnknown","features":[84]},{"name":"PipeState_DontCare","features":[84]},{"name":"PipeState_Finalized","features":[84]},{"name":"PipeState_RangeFixed","features":[84]},{"name":"PipeState_RangeNotFixed","features":[84]},{"name":"Pipe_Allocator_FirstPin","features":[84]},{"name":"Pipe_Allocator_LastPin","features":[84]},{"name":"Pipe_Allocator_MiddlePin","features":[84]},{"name":"Pipe_Allocator_None","features":[84]},{"name":"RT_RCDATA","features":[84]},{"name":"RT_STRING","features":[84]},{"name":"SECURE_BUFFER_INFO","features":[84]},{"name":"SHORT_COEFF","features":[84]},{"name":"SOUNDDETECTOR_PATTERNHEADER","features":[84]},{"name":"SPEAKER_ALL","features":[84]},{"name":"SPEAKER_BACK_CENTER","features":[84]},{"name":"SPEAKER_BACK_LEFT","features":[84]},{"name":"SPEAKER_BACK_RIGHT","features":[84]},{"name":"SPEAKER_FRONT_CENTER","features":[84]},{"name":"SPEAKER_FRONT_LEFT","features":[84]},{"name":"SPEAKER_FRONT_LEFT_OF_CENTER","features":[84]},{"name":"SPEAKER_FRONT_RIGHT","features":[84]},{"name":"SPEAKER_FRONT_RIGHT_OF_CENTER","features":[84]},{"name":"SPEAKER_LOW_FREQUENCY","features":[84]},{"name":"SPEAKER_RESERVED","features":[84]},{"name":"SPEAKER_SIDE_LEFT","features":[84]},{"name":"SPEAKER_SIDE_RIGHT","features":[84]},{"name":"SPEAKER_TOP_BACK_CENTER","features":[84]},{"name":"SPEAKER_TOP_BACK_LEFT","features":[84]},{"name":"SPEAKER_TOP_BACK_RIGHT","features":[84]},{"name":"SPEAKER_TOP_CENTER","features":[84]},{"name":"SPEAKER_TOP_FRONT_CENTER","features":[84]},{"name":"SPEAKER_TOP_FRONT_LEFT","features":[84]},{"name":"SPEAKER_TOP_FRONT_RIGHT","features":[84]},{"name":"SYSAUDIO_FLAGS_CLEAR_PREFERRED","features":[84]},{"name":"SYSAUDIO_FLAGS_DONT_COMBINE_PINS","features":[84]},{"name":"TELEPHONY_CALLCONTROLOP","features":[84]},{"name":"TELEPHONY_CALLCONTROLOP_DISABLE","features":[84]},{"name":"TELEPHONY_CALLCONTROLOP_ENABLE","features":[84]},{"name":"TELEPHONY_CALLSTATE","features":[84]},{"name":"TELEPHONY_CALLSTATE_DISABLED","features":[84]},{"name":"TELEPHONY_CALLSTATE_ENABLED","features":[84]},{"name":"TELEPHONY_CALLSTATE_HOLD","features":[84]},{"name":"TELEPHONY_CALLSTATE_PROVIDERTRANSITION","features":[84]},{"name":"TELEPHONY_CALLTYPE","features":[84]},{"name":"TELEPHONY_CALLTYPE_CIRCUITSWITCHED","features":[84]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_LTE","features":[84]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_WLAN","features":[84]},{"name":"TELEPHONY_PROVIDERCHANGEOP","features":[84]},{"name":"TELEPHONY_PROVIDERCHANGEOP_BEGIN","features":[84]},{"name":"TELEPHONY_PROVIDERCHANGEOP_CANCEL","features":[84]},{"name":"TELEPHONY_PROVIDERCHANGEOP_END","features":[84]},{"name":"TRANSPORTAUDIOPARMS","features":[84]},{"name":"TRANSPORTBASICPARMS","features":[84]},{"name":"TRANSPORTSTATUS","features":[84]},{"name":"TRANSPORTVIDEOPARMS","features":[84]},{"name":"TRANSPORT_STATE","features":[84]},{"name":"TUNER_ANALOG_CAPS_S","features":[84]},{"name":"TunerLockType","features":[84]},{"name":"Tuner_LockType_Locked","features":[84]},{"name":"Tuner_LockType_None","features":[84]},{"name":"Tuner_LockType_Within_Scan_Sensing_Range","features":[84]},{"name":"VBICAP_PROPERTIES_PROTECTION_S","features":[84]},{"name":"VBICODECFILTERING_CC_SUBSTREAMS","features":[84]},{"name":"VBICODECFILTERING_NABTS_SUBSTREAMS","features":[84]},{"name":"VBICODECFILTERING_SCANLINES","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_CC","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_CC_PIN","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_COMMON","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_COMMON_PIN","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_NABTS","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_NABTS_PIN","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT","features":[84]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT_PIN","features":[84]},{"name":"VRAM_SURFACE_INFO","features":[84]},{"name":"VRAM_SURFACE_INFO_PROPERTY_S","features":[84]},{"name":"WAVE_FORMAT_EXTENSIBLE","features":[84]},{"name":"WNF_KSCAMERA_STREAMSTATE_INFO","features":[84]},{"name":"WST_BUFFER","features":[84]},{"name":"WST_BUFFER_LINE","features":[84]},{"name":"WST_BYTES_PER_LINE","features":[84]},{"name":"WST_TVTUNER_CHANGE_BEGIN_TUNE","features":[84]},{"name":"WST_TVTUNER_CHANGE_END_TUNE","features":[84]},{"name":"eConnType3Point5mm","features":[84]},{"name":"eConnTypeAtapiInternal","features":[84]},{"name":"eConnTypeCombination","features":[84]},{"name":"eConnTypeMultichannelAnalogDIN","features":[84]},{"name":"eConnTypeOptical","features":[84]},{"name":"eConnTypeOtherAnalog","features":[84]},{"name":"eConnTypeOtherDigital","features":[84]},{"name":"eConnTypeQuarter","features":[84]},{"name":"eConnTypeRCA","features":[84]},{"name":"eConnTypeRJ11Modem","features":[84]},{"name":"eConnTypeUnknown","features":[84]},{"name":"eConnTypeXlrProfessional","features":[84]},{"name":"eDeviceControlUseMissing","features":[84]},{"name":"eDeviceControlUsePrimary","features":[84]},{"name":"eDeviceControlUseSecondary","features":[84]},{"name":"eGenLocInternal","features":[84]},{"name":"eGenLocOther","features":[84]},{"name":"eGenLocPrimaryBox","features":[84]},{"name":"eGenLocSeparate","features":[84]},{"name":"eGeoLocATAPI","features":[84]},{"name":"eGeoLocBottom","features":[84]},{"name":"eGeoLocDrivebay","features":[84]},{"name":"eGeoLocFront","features":[84]},{"name":"eGeoLocHDMI","features":[84]},{"name":"eGeoLocInsideMobileLid","features":[84]},{"name":"eGeoLocLeft","features":[84]},{"name":"eGeoLocNotApplicable","features":[84]},{"name":"eGeoLocOutsideMobileLid","features":[84]},{"name":"eGeoLocRear","features":[84]},{"name":"eGeoLocRearPanel","features":[84]},{"name":"eGeoLocReserved6","features":[84]},{"name":"eGeoLocRight","features":[84]},{"name":"eGeoLocRiser","features":[84]},{"name":"eGeoLocTop","features":[84]},{"name":"ePortConnBothIntegratedAndJack","features":[84]},{"name":"ePortConnIntegratedDevice","features":[84]},{"name":"ePortConnJack","features":[84]},{"name":"ePortConnUnknown","features":[84]}],"440":[{"name":"ACMDM_BASE","features":[81]},{"name":"ACM_MPEG_COPYRIGHT","features":[81]},{"name":"ACM_MPEG_DUALCHANNEL","features":[81]},{"name":"ACM_MPEG_ID_MPEG1","features":[81]},{"name":"ACM_MPEG_JOINTSTEREO","features":[81]},{"name":"ACM_MPEG_LAYER1","features":[81]},{"name":"ACM_MPEG_LAYER2","features":[81]},{"name":"ACM_MPEG_LAYER3","features":[81]},{"name":"ACM_MPEG_ORIGINALHOME","features":[81]},{"name":"ACM_MPEG_PRIVATEBIT","features":[81]},{"name":"ACM_MPEG_PROTECTIONBIT","features":[81]},{"name":"ACM_MPEG_SINGLECHANNEL","features":[81]},{"name":"ACM_MPEG_STEREO","features":[81]},{"name":"ADPCMCOEFSET","features":[81]},{"name":"ADPCMEWAVEFORMAT","features":[82,81]},{"name":"ADPCMWAVEFORMAT","features":[82,81]},{"name":"APTXWAVEFORMAT","features":[82,81]},{"name":"AUDIOFILE_AF10WAVEFORMAT","features":[82,81]},{"name":"AUDIOFILE_AF36WAVEFORMAT","features":[82,81]},{"name":"AUXDM_GETDEVCAPS","features":[81]},{"name":"AUXDM_GETNUMDEVS","features":[81]},{"name":"AUXDM_GETVOLUME","features":[81]},{"name":"AUXDM_SETVOLUME","features":[81]},{"name":"AUXM_INIT","features":[81]},{"name":"AUXM_INIT_EX","features":[81]},{"name":"AVIBuildFilterA","features":[3,81]},{"name":"AVIBuildFilterW","features":[3,81]},{"name":"AVICOMPRESSF_DATARATE","features":[81]},{"name":"AVICOMPRESSF_INTERLEAVE","features":[81]},{"name":"AVICOMPRESSF_KEYFRAMES","features":[81]},{"name":"AVICOMPRESSF_VALID","features":[81]},{"name":"AVICOMPRESSOPTIONS","features":[81]},{"name":"AVIClearClipboard","features":[81]},{"name":"AVIERR_OK","features":[81]},{"name":"AVIFILECAPS_ALLKEYFRAMES","features":[81]},{"name":"AVIFILECAPS_CANREAD","features":[81]},{"name":"AVIFILECAPS_CANWRITE","features":[81]},{"name":"AVIFILECAPS_NOCOMPRESSION","features":[81]},{"name":"AVIFILEHANDLER_CANACCEPTNONRGB","features":[81]},{"name":"AVIFILEHANDLER_CANREAD","features":[81]},{"name":"AVIFILEHANDLER_CANWRITE","features":[81]},{"name":"AVIFILEINFOA","features":[81]},{"name":"AVIFILEINFOW","features":[81]},{"name":"AVIFILEINFO_COPYRIGHTED","features":[81]},{"name":"AVIFILEINFO_HASINDEX","features":[81]},{"name":"AVIFILEINFO_ISINTERLEAVED","features":[81]},{"name":"AVIFILEINFO_MUSTUSEINDEX","features":[81]},{"name":"AVIFILEINFO_WASCAPTUREFILE","features":[81]},{"name":"AVIFileAddRef","features":[81]},{"name":"AVIFileCreateStreamA","features":[3,81]},{"name":"AVIFileCreateStreamW","features":[3,81]},{"name":"AVIFileEndRecord","features":[81]},{"name":"AVIFileExit","features":[81]},{"name":"AVIFileGetStream","features":[81]},{"name":"AVIFileInfoA","features":[81]},{"name":"AVIFileInfoW","features":[81]},{"name":"AVIFileInit","features":[81]},{"name":"AVIFileOpenA","features":[81]},{"name":"AVIFileOpenW","features":[81]},{"name":"AVIFileReadData","features":[81]},{"name":"AVIFileRelease","features":[81]},{"name":"AVIFileWriteData","features":[81]},{"name":"AVIGETFRAMEF_BESTDISPLAYFMT","features":[81]},{"name":"AVIGetFromClipboard","features":[81]},{"name":"AVIIF_CONTROLFRAME","features":[81]},{"name":"AVIIF_TWOCC","features":[81]},{"name":"AVIMakeCompressedStream","features":[81]},{"name":"AVIMakeFileFromStreams","features":[81]},{"name":"AVIMakeStreamFromClipboard","features":[3,81]},{"name":"AVIPutFileOnClipboard","features":[81]},{"name":"AVISAVECALLBACK","features":[3,81]},{"name":"AVISTREAMINFOA","features":[3,81]},{"name":"AVISTREAMINFOW","features":[3,81]},{"name":"AVISTREAMINFO_DISABLED","features":[81]},{"name":"AVISTREAMINFO_FORMATCHANGES","features":[81]},{"name":"AVISTREAMREAD_CONVENIENT","features":[81]},{"name":"AVISaveA","features":[3,81]},{"name":"AVISaveOptions","features":[3,81]},{"name":"AVISaveOptionsFree","features":[81]},{"name":"AVISaveVA","features":[3,81]},{"name":"AVISaveVW","features":[3,81]},{"name":"AVISaveW","features":[3,81]},{"name":"AVIStreamAddRef","features":[81]},{"name":"AVIStreamBeginStreaming","features":[81]},{"name":"AVIStreamCreate","features":[81]},{"name":"AVIStreamEndStreaming","features":[81]},{"name":"AVIStreamFindSample","features":[81]},{"name":"AVIStreamGetFrame","features":[81]},{"name":"AVIStreamGetFrameClose","features":[81]},{"name":"AVIStreamGetFrameOpen","features":[14,81]},{"name":"AVIStreamInfoA","features":[3,81]},{"name":"AVIStreamInfoW","features":[3,81]},{"name":"AVIStreamLength","features":[81]},{"name":"AVIStreamOpenFromFileA","features":[81]},{"name":"AVIStreamOpenFromFileW","features":[81]},{"name":"AVIStreamRead","features":[81]},{"name":"AVIStreamReadData","features":[81]},{"name":"AVIStreamReadFormat","features":[81]},{"name":"AVIStreamRelease","features":[81]},{"name":"AVIStreamSampleToTime","features":[81]},{"name":"AVIStreamSetFormat","features":[81]},{"name":"AVIStreamStart","features":[81]},{"name":"AVIStreamTimeToSample","features":[81]},{"name":"AVIStreamWrite","features":[81]},{"name":"AVIStreamWriteData","features":[81]},{"name":"AVSTREAMMASTER_AUDIO","features":[81]},{"name":"AVSTREAMMASTER_NONE","features":[81]},{"name":"BI_1632","features":[81]},{"name":"CAPCONTROLCALLBACK","features":[3,81]},{"name":"CAPDRIVERCAPS","features":[3,81]},{"name":"CAPERRORCALLBACKA","features":[3,81]},{"name":"CAPERRORCALLBACKW","features":[3,81]},{"name":"CAPINFOCHUNK","features":[81]},{"name":"CAPSTATUS","features":[3,14,81]},{"name":"CAPSTATUSCALLBACKA","features":[3,81]},{"name":"CAPSTATUSCALLBACKW","features":[3,81]},{"name":"CAPTUREPARMS","features":[3,81]},{"name":"CAPVIDEOCALLBACK","features":[3,81]},{"name":"CAPWAVECALLBACK","features":[3,82,81]},{"name":"CAPYIELDCALLBACK","features":[3,81]},{"name":"CHANNEL_CAPS","features":[81]},{"name":"CLSID_AVIFile","features":[81]},{"name":"CLSID_AVISimpleUnMarshal","features":[81]},{"name":"COMPVARS","features":[14,81]},{"name":"CONTRESCR10WAVEFORMAT","features":[82,81]},{"name":"CONTRESVQLPCWAVEFORMAT","features":[82,81]},{"name":"CONTROLCALLBACK_CAPTURING","features":[81]},{"name":"CONTROLCALLBACK_PREROLL","features":[81]},{"name":"CREATIVEADPCMWAVEFORMAT","features":[82,81]},{"name":"CREATIVEFASTSPEECH10WAVEFORMAT","features":[82,81]},{"name":"CREATIVEFASTSPEECH8WAVEFORMAT","features":[82,81]},{"name":"CRYSTAL_NET_SFM_CODEC","features":[81]},{"name":"CSIMAADPCMWAVEFORMAT","features":[82,81]},{"name":"CloseDriver","features":[3,81]},{"name":"CreateEditableStream","features":[81]},{"name":"DCB_EVENT","features":[81]},{"name":"DCB_FUNCTION","features":[81]},{"name":"DCB_NOSWITCH","features":[81]},{"name":"DCB_NULL","features":[81]},{"name":"DCB_TASK","features":[81]},{"name":"DCB_TYPEMASK","features":[81]},{"name":"DCB_WINDOW","features":[81]},{"name":"DDF_0001","features":[81]},{"name":"DDF_2000","features":[81]},{"name":"DDF_ANIMATE","features":[81]},{"name":"DDF_BACKGROUNDPAL","features":[81]},{"name":"DDF_BUFFER","features":[81]},{"name":"DDF_DONTDRAW","features":[81]},{"name":"DDF_FULLSCREEN","features":[81]},{"name":"DDF_HALFTONE","features":[81]},{"name":"DDF_HURRYUP","features":[81]},{"name":"DDF_JUSTDRAWIT","features":[81]},{"name":"DDF_NOTKEYFRAME","features":[81]},{"name":"DDF_PREROLL","features":[81]},{"name":"DDF_SAME_DIB","features":[81]},{"name":"DDF_SAME_DRAW","features":[81]},{"name":"DDF_SAME_HDC","features":[81]},{"name":"DDF_SAME_SIZE","features":[81]},{"name":"DDF_UPDATE","features":[81]},{"name":"DIALOGICOKIADPCMWAVEFORMAT","features":[82,81]},{"name":"DIGIADPCMWAVEFORMAT","features":[82,81]},{"name":"DIGIFIXWAVEFORMAT","features":[82,81]},{"name":"DIGIREALWAVEFORMAT","features":[82,81]},{"name":"DIGISTDWAVEFORMAT","features":[82,81]},{"name":"DLG_ACMFILTERCHOOSE_ID","features":[81]},{"name":"DLG_ACMFORMATCHOOSE_ID","features":[81]},{"name":"DOLBYAC2WAVEFORMAT","features":[82,81]},{"name":"DRAWDIBTIME","features":[81]},{"name":"DRIVERMSGPROC","features":[81]},{"name":"DRIVERPROC","features":[3,81]},{"name":"DRIVERS_SECTION","features":[81]},{"name":"DRMWAVEFORMAT","features":[82,81]},{"name":"DRVCNF_CANCEL","features":[81]},{"name":"DRVCNF_OK","features":[81]},{"name":"DRVCNF_RESTART","features":[81]},{"name":"DRVCONFIGINFO","features":[81]},{"name":"DRVCONFIGINFOEX","features":[81]},{"name":"DRVM_ADD_THRU","features":[81]},{"name":"DRVM_DISABLE","features":[81]},{"name":"DRVM_ENABLE","features":[81]},{"name":"DRVM_EXIT","features":[81]},{"name":"DRVM_INIT","features":[81]},{"name":"DRVM_INIT_EX","features":[81]},{"name":"DRVM_IOCTL","features":[81]},{"name":"DRVM_IOCTL_CMD_SYSTEM","features":[81]},{"name":"DRVM_IOCTL_CMD_USER","features":[81]},{"name":"DRVM_IOCTL_DATA","features":[81]},{"name":"DRVM_IOCTL_LAST","features":[81]},{"name":"DRVM_MAPPER_CONSOLEVOICECOM_GET","features":[81]},{"name":"DRVM_MAPPER_PREFERRED_FLAGS_PREFERREDONLY","features":[81]},{"name":"DRVM_MAPPER_PREFERRED_GET","features":[81]},{"name":"DRVM_MAPPER_RECONFIGURE","features":[81]},{"name":"DRVM_REMOVE_THRU","features":[81]},{"name":"DRVM_USER","features":[81]},{"name":"DRV_CANCEL","features":[81]},{"name":"DRV_CLOSE","features":[81]},{"name":"DRV_CONFIGURE","features":[81]},{"name":"DRV_DISABLE","features":[81]},{"name":"DRV_ENABLE","features":[81]},{"name":"DRV_EXITSESSION","features":[81]},{"name":"DRV_FREE","features":[81]},{"name":"DRV_INSTALL","features":[81]},{"name":"DRV_LOAD","features":[81]},{"name":"DRV_MCI_FIRST","features":[81]},{"name":"DRV_MCI_LAST","features":[81]},{"name":"DRV_OK","features":[81]},{"name":"DRV_OPEN","features":[81]},{"name":"DRV_PNPINSTALL","features":[81]},{"name":"DRV_POWER","features":[81]},{"name":"DRV_QUERYCONFIGURE","features":[81]},{"name":"DRV_QUERYDEVICEINTERFACE","features":[81]},{"name":"DRV_QUERYDEVICEINTERFACESIZE","features":[81]},{"name":"DRV_QUERYDEVNODE","features":[81]},{"name":"DRV_QUERYFUNCTIONINSTANCEID","features":[81]},{"name":"DRV_QUERYFUNCTIONINSTANCEIDSIZE","features":[81]},{"name":"DRV_QUERYIDFROMSTRINGID","features":[81]},{"name":"DRV_QUERYMAPPABLE","features":[81]},{"name":"DRV_QUERYMODULE","features":[81]},{"name":"DRV_QUERYSTRINGID","features":[81]},{"name":"DRV_QUERYSTRINGIDSIZE","features":[81]},{"name":"DRV_REMOVE","features":[81]},{"name":"DRV_RESERVED","features":[81]},{"name":"DRV_RESTART","features":[81]},{"name":"DRV_USER","features":[81]},{"name":"DVIADPCMWAVEFORMAT","features":[82,81]},{"name":"DVM_CONFIGURE_END","features":[81]},{"name":"DVM_CONFIGURE_START","features":[81]},{"name":"DVM_DST_RECT","features":[81]},{"name":"DVM_FORMAT","features":[81]},{"name":"DVM_PALETTE","features":[81]},{"name":"DVM_PALETTERGB555","features":[81]},{"name":"DVM_SRC_RECT","features":[81]},{"name":"DVM_USER","features":[81]},{"name":"DV_ERR_13","features":[81]},{"name":"DV_ERR_ALLOCATED","features":[81]},{"name":"DV_ERR_BADDEVICEID","features":[81]},{"name":"DV_ERR_BADERRNUM","features":[81]},{"name":"DV_ERR_BADFORMAT","features":[81]},{"name":"DV_ERR_BADINSTALL","features":[81]},{"name":"DV_ERR_BASE","features":[81]},{"name":"DV_ERR_CONFIG1","features":[81]},{"name":"DV_ERR_CONFIG2","features":[81]},{"name":"DV_ERR_CREATEPALETTE","features":[81]},{"name":"DV_ERR_DMA_CONFLICT","features":[81]},{"name":"DV_ERR_FLAGS","features":[81]},{"name":"DV_ERR_INT_CONFLICT","features":[81]},{"name":"DV_ERR_INVALHANDLE","features":[81]},{"name":"DV_ERR_IO_CONFLICT","features":[81]},{"name":"DV_ERR_LASTERROR","features":[81]},{"name":"DV_ERR_MEM_CONFLICT","features":[81]},{"name":"DV_ERR_NOMEM","features":[81]},{"name":"DV_ERR_NONSPECIFIC","features":[81]},{"name":"DV_ERR_NOTDETECTED","features":[81]},{"name":"DV_ERR_NOTSUPPORTED","features":[81]},{"name":"DV_ERR_NO_BUFFERS","features":[81]},{"name":"DV_ERR_OK","features":[81]},{"name":"DV_ERR_PARAM1","features":[81]},{"name":"DV_ERR_PARAM2","features":[81]},{"name":"DV_ERR_PROTECT_ONLY","features":[81]},{"name":"DV_ERR_SIZEFIELD","features":[81]},{"name":"DV_ERR_STILLPLAYING","features":[81]},{"name":"DV_ERR_SYNC","features":[81]},{"name":"DV_ERR_TOOMANYCHANNELS","features":[81]},{"name":"DV_ERR_UNPREPARED","features":[81]},{"name":"DV_ERR_USER_MSG","features":[81]},{"name":"DV_VM_CLOSE","features":[81]},{"name":"DV_VM_DATA","features":[81]},{"name":"DV_VM_ERROR","features":[81]},{"name":"DV_VM_OPEN","features":[81]},{"name":"DefDriverProc","features":[3,81]},{"name":"DrawDibBegin","features":[3,14,81]},{"name":"DrawDibChangePalette","features":[3,14,81]},{"name":"DrawDibClose","features":[3,81]},{"name":"DrawDibDraw","features":[3,14,81]},{"name":"DrawDibEnd","features":[3,81]},{"name":"DrawDibGetBuffer","features":[14,81]},{"name":"DrawDibGetPalette","features":[14,81]},{"name":"DrawDibOpen","features":[81]},{"name":"DrawDibProfileDisplay","features":[3,14,81]},{"name":"DrawDibRealize","features":[3,14,81]},{"name":"DrawDibSetPalette","features":[3,14,81]},{"name":"DrawDibStart","features":[3,81]},{"name":"DrawDibStop","features":[3,81]},{"name":"DrawDibTime","features":[3,81]},{"name":"DriverCallback","features":[3,81]},{"name":"DrvGetModuleHandle","features":[3,81]},{"name":"ECHOSC1WAVEFORMAT","features":[82,81]},{"name":"EXBMINFOHEADER","features":[14,81]},{"name":"EditStreamClone","features":[81]},{"name":"EditStreamCopy","features":[81]},{"name":"EditStreamCut","features":[81]},{"name":"EditStreamPaste","features":[81]},{"name":"EditStreamSetInfoA","features":[3,81]},{"name":"EditStreamSetInfoW","features":[3,81]},{"name":"EditStreamSetNameA","features":[81]},{"name":"EditStreamSetNameW","features":[81]},{"name":"FACILITY_NS","features":[81]},{"name":"FACILITY_NS_WIN32","features":[81]},{"name":"FIND_ANY","features":[81]},{"name":"FIND_DIR","features":[81]},{"name":"FIND_FORMAT","features":[81]},{"name":"FIND_FROM_START","features":[81]},{"name":"FIND_INDEX","features":[81]},{"name":"FIND_KEY","features":[81]},{"name":"FIND_LENGTH","features":[81]},{"name":"FIND_NEXT","features":[81]},{"name":"FIND_OFFSET","features":[81]},{"name":"FIND_POS","features":[81]},{"name":"FIND_PREV","features":[81]},{"name":"FIND_RET","features":[81]},{"name":"FIND_SIZE","features":[81]},{"name":"FIND_TYPE","features":[81]},{"name":"FMTOWNS_SND_WAVEFORMAT","features":[82,81]},{"name":"G721_ADPCMWAVEFORMAT","features":[82,81]},{"name":"G723_ADPCMWAVEFORMAT","features":[82,81]},{"name":"GSM610WAVEFORMAT","features":[82,81]},{"name":"GetDriverModuleHandle","features":[3,81]},{"name":"GetOpenFileNamePreviewA","features":[3,81,86]},{"name":"GetOpenFileNamePreviewW","features":[3,81,86]},{"name":"GetSaveFileNamePreviewA","features":[3,81,86]},{"name":"GetSaveFileNamePreviewW","features":[3,81,86]},{"name":"HDRVR","features":[81]},{"name":"HIC","features":[81]},{"name":"HMMIO","features":[81]},{"name":"HVIDEO","features":[81]},{"name":"IAVIEditStream","features":[81]},{"name":"IAVIFile","features":[81]},{"name":"IAVIPersistFile","features":[81]},{"name":"IAVIStream","features":[81]},{"name":"IAVIStreaming","features":[81]},{"name":"ICCOMPRESS","features":[14,81]},{"name":"ICCOMPRESSFRAMES","features":[3,14,81]},{"name":"ICCOMPRESSFRAMES_PADDING","features":[81]},{"name":"ICCOMPRESS_KEYFRAME","features":[81]},{"name":"ICClose","features":[3,81]},{"name":"ICCompress","features":[14,81]},{"name":"ICCompressorChoose","features":[3,14,81]},{"name":"ICCompressorFree","features":[14,81]},{"name":"ICDECOMPRESS","features":[14,81]},{"name":"ICDECOMPRESSEX","features":[14,81]},{"name":"ICDECOMPRESS_HURRYUP","features":[81]},{"name":"ICDECOMPRESS_NOTKEYFRAME","features":[81]},{"name":"ICDECOMPRESS_NULLFRAME","features":[81]},{"name":"ICDECOMPRESS_PREROLL","features":[81]},{"name":"ICDECOMPRESS_UPDATE","features":[81]},{"name":"ICDRAW","features":[81]},{"name":"ICDRAWBEGIN","features":[3,14,81]},{"name":"ICDRAWSUGGEST","features":[14,81]},{"name":"ICDRAW_ANIMATE","features":[81]},{"name":"ICDRAW_BUFFER","features":[81]},{"name":"ICDRAW_CONTINUE","features":[81]},{"name":"ICDRAW_FULLSCREEN","features":[81]},{"name":"ICDRAW_HDC","features":[81]},{"name":"ICDRAW_HURRYUP","features":[81]},{"name":"ICDRAW_MEMORYDC","features":[81]},{"name":"ICDRAW_NOTKEYFRAME","features":[81]},{"name":"ICDRAW_NULLFRAME","features":[81]},{"name":"ICDRAW_PREROLL","features":[81]},{"name":"ICDRAW_QUERY","features":[81]},{"name":"ICDRAW_RENDER","features":[81]},{"name":"ICDRAW_UPDATE","features":[81]},{"name":"ICDRAW_UPDATING","features":[81]},{"name":"ICDecompress","features":[14,81]},{"name":"ICDraw","features":[81]},{"name":"ICDrawBegin","features":[3,14,81]},{"name":"ICERR_ABORT","features":[81]},{"name":"ICERR_BADBITDEPTH","features":[81]},{"name":"ICERR_BADFLAGS","features":[81]},{"name":"ICERR_BADFORMAT","features":[81]},{"name":"ICERR_BADHANDLE","features":[81]},{"name":"ICERR_BADIMAGESIZE","features":[81]},{"name":"ICERR_BADPARAM","features":[81]},{"name":"ICERR_BADSIZE","features":[81]},{"name":"ICERR_CANTUPDATE","features":[81]},{"name":"ICERR_CUSTOM","features":[81]},{"name":"ICERR_DONTDRAW","features":[81]},{"name":"ICERR_ERROR","features":[81]},{"name":"ICERR_GOTOKEYFRAME","features":[81]},{"name":"ICERR_INTERNAL","features":[81]},{"name":"ICERR_MEMORY","features":[81]},{"name":"ICERR_NEWPALETTE","features":[81]},{"name":"ICERR_OK","features":[81]},{"name":"ICERR_STOPDRAWING","features":[81]},{"name":"ICERR_UNSUPPORTED","features":[81]},{"name":"ICGetDisplayFormat","features":[14,81]},{"name":"ICGetInfo","features":[3,81]},{"name":"ICINFO","features":[81]},{"name":"ICINSTALL_DRIVER","features":[81]},{"name":"ICINSTALL_DRIVERW","features":[81]},{"name":"ICINSTALL_FUNCTION","features":[81]},{"name":"ICINSTALL_HDRV","features":[81]},{"name":"ICINSTALL_UNICODE","features":[81]},{"name":"ICImageCompress","features":[3,14,81]},{"name":"ICImageDecompress","features":[3,14,81]},{"name":"ICInfo","features":[3,81]},{"name":"ICInstall","features":[3,81]},{"name":"ICLocate","features":[14,81]},{"name":"ICMF_ABOUT_QUERY","features":[81]},{"name":"ICMF_CHOOSE_ALLCOMPRESSORS","features":[81]},{"name":"ICMF_CHOOSE_DATARATE","features":[81]},{"name":"ICMF_CHOOSE_KEYFRAME","features":[81]},{"name":"ICMF_CHOOSE_PREVIEW","features":[81]},{"name":"ICMF_COMPVARS_VALID","features":[81]},{"name":"ICMF_CONFIGURE_QUERY","features":[81]},{"name":"ICMODE_COMPRESS","features":[81]},{"name":"ICMODE_DECOMPRESS","features":[81]},{"name":"ICMODE_DRAW","features":[81]},{"name":"ICMODE_FASTCOMPRESS","features":[81]},{"name":"ICMODE_FASTDECOMPRESS","features":[81]},{"name":"ICMODE_INTERNALF_FUNCTION32","features":[81]},{"name":"ICMODE_INTERNALF_MASK","features":[81]},{"name":"ICMODE_QUERY","features":[81]},{"name":"ICM_ABOUT","features":[81]},{"name":"ICM_COMPRESS","features":[81]},{"name":"ICM_COMPRESS_BEGIN","features":[81]},{"name":"ICM_COMPRESS_END","features":[81]},{"name":"ICM_COMPRESS_FRAMES","features":[81]},{"name":"ICM_COMPRESS_FRAMES_INFO","features":[81]},{"name":"ICM_COMPRESS_GET_FORMAT","features":[81]},{"name":"ICM_COMPRESS_GET_SIZE","features":[81]},{"name":"ICM_COMPRESS_QUERY","features":[81]},{"name":"ICM_CONFIGURE","features":[81]},{"name":"ICM_DECOMPRESS","features":[81]},{"name":"ICM_DECOMPRESSEX","features":[81]},{"name":"ICM_DECOMPRESSEX_BEGIN","features":[81]},{"name":"ICM_DECOMPRESSEX_END","features":[81]},{"name":"ICM_DECOMPRESSEX_QUERY","features":[81]},{"name":"ICM_DECOMPRESS_BEGIN","features":[81]},{"name":"ICM_DECOMPRESS_END","features":[81]},{"name":"ICM_DECOMPRESS_GET_FORMAT","features":[81]},{"name":"ICM_DECOMPRESS_GET_PALETTE","features":[81]},{"name":"ICM_DECOMPRESS_QUERY","features":[81]},{"name":"ICM_DECOMPRESS_SET_PALETTE","features":[81]},{"name":"ICM_DRAW","features":[81]},{"name":"ICM_DRAW_BEGIN","features":[81]},{"name":"ICM_DRAW_BITS","features":[81]},{"name":"ICM_DRAW_CHANGEPALETTE","features":[81]},{"name":"ICM_DRAW_END","features":[81]},{"name":"ICM_DRAW_FLUSH","features":[81]},{"name":"ICM_DRAW_GETTIME","features":[81]},{"name":"ICM_DRAW_GET_PALETTE","features":[81]},{"name":"ICM_DRAW_IDLE","features":[81]},{"name":"ICM_DRAW_QUERY","features":[81]},{"name":"ICM_DRAW_REALIZE","features":[81]},{"name":"ICM_DRAW_RENDERBUFFER","features":[81]},{"name":"ICM_DRAW_SETTIME","features":[81]},{"name":"ICM_DRAW_START","features":[81]},{"name":"ICM_DRAW_START_PLAY","features":[81]},{"name":"ICM_DRAW_STOP","features":[81]},{"name":"ICM_DRAW_STOP_PLAY","features":[81]},{"name":"ICM_DRAW_SUGGESTFORMAT","features":[81]},{"name":"ICM_DRAW_UPDATE","features":[81]},{"name":"ICM_DRAW_WINDOW","features":[81]},{"name":"ICM_ENUMFORMATS","features":[81]},{"name":"ICM_GET","features":[81]},{"name":"ICM_GETBUFFERSWANTED","features":[81]},{"name":"ICM_GETDEFAULTKEYFRAMERATE","features":[81]},{"name":"ICM_GETDEFAULTQUALITY","features":[81]},{"name":"ICM_GETERRORTEXT","features":[81]},{"name":"ICM_GETFORMATNAME","features":[81]},{"name":"ICM_GETINFO","features":[81]},{"name":"ICM_GETQUALITY","features":[81]},{"name":"ICM_GETSTATE","features":[81]},{"name":"ICM_RESERVED","features":[81]},{"name":"ICM_RESERVED_HIGH","features":[81]},{"name":"ICM_RESERVED_LOW","features":[81]},{"name":"ICM_SET","features":[81]},{"name":"ICM_SETQUALITY","features":[81]},{"name":"ICM_SETSTATE","features":[81]},{"name":"ICM_SET_STATUS_PROC","features":[81]},{"name":"ICM_USER","features":[81]},{"name":"ICOPEN","features":[3,81]},{"name":"ICOpen","features":[81]},{"name":"ICOpenFunction","features":[3,81]},{"name":"ICPALETTE","features":[14,81]},{"name":"ICQUALITY_DEFAULT","features":[81]},{"name":"ICQUALITY_HIGH","features":[81]},{"name":"ICQUALITY_LOW","features":[81]},{"name":"ICRemove","features":[3,81]},{"name":"ICSETSTATUSPROC","features":[3,81]},{"name":"ICSTATUS_END","features":[81]},{"name":"ICSTATUS_ERROR","features":[81]},{"name":"ICSTATUS_START","features":[81]},{"name":"ICSTATUS_STATUS","features":[81]},{"name":"ICSTATUS_YIELD","features":[81]},{"name":"ICSendMessage","features":[3,81]},{"name":"ICSeqCompressFrame","features":[3,14,81]},{"name":"ICSeqCompressFrameEnd","features":[14,81]},{"name":"ICSeqCompressFrameStart","features":[3,14,81]},{"name":"ICVERSION","features":[81]},{"name":"IDD_ACMFILTERCHOOSE_BTN_DELNAME","features":[81]},{"name":"IDD_ACMFILTERCHOOSE_BTN_HELP","features":[81]},{"name":"IDD_ACMFILTERCHOOSE_BTN_SETNAME","features":[81]},{"name":"IDD_ACMFILTERCHOOSE_CMB_CUSTOM","features":[81]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTER","features":[81]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTERTAG","features":[81]},{"name":"IDD_ACMFORMATCHOOSE_BTN_DELNAME","features":[81]},{"name":"IDD_ACMFORMATCHOOSE_BTN_HELP","features":[81]},{"name":"IDD_ACMFORMATCHOOSE_BTN_SETNAME","features":[81]},{"name":"IDD_ACMFORMATCHOOSE_CMB_CUSTOM","features":[81]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMAT","features":[81]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMATTAG","features":[81]},{"name":"IDS_CAP_AUDIO_DROP_COMPERROR","features":[81]},{"name":"IDS_CAP_AUDIO_DROP_ERROR","features":[81]},{"name":"IDS_CAP_AVI_DRAWDIB_ERROR","features":[81]},{"name":"IDS_CAP_AVI_INIT_ERROR","features":[81]},{"name":"IDS_CAP_BEGIN","features":[81]},{"name":"IDS_CAP_CANTOPEN","features":[81]},{"name":"IDS_CAP_COMPRESSOR_ERROR","features":[81]},{"name":"IDS_CAP_DEFAVIEXT","features":[81]},{"name":"IDS_CAP_DEFPALEXT","features":[81]},{"name":"IDS_CAP_DRIVER_ERROR","features":[81]},{"name":"IDS_CAP_END","features":[81]},{"name":"IDS_CAP_ERRORDIBSAVE","features":[81]},{"name":"IDS_CAP_ERRORPALOPEN","features":[81]},{"name":"IDS_CAP_ERRORPALSAVE","features":[81]},{"name":"IDS_CAP_FILEEXISTS","features":[81]},{"name":"IDS_CAP_FILE_OPEN_ERROR","features":[81]},{"name":"IDS_CAP_FILE_WRITE_ERROR","features":[81]},{"name":"IDS_CAP_INFO","features":[81]},{"name":"IDS_CAP_MCI_CANT_STEP_ERROR","features":[81]},{"name":"IDS_CAP_MCI_CONTROL_ERROR","features":[81]},{"name":"IDS_CAP_NODISKSPACE","features":[81]},{"name":"IDS_CAP_NO_AUDIO_CAP_ERROR","features":[81]},{"name":"IDS_CAP_NO_FRAME_CAP_ERROR","features":[81]},{"name":"IDS_CAP_NO_PALETTE_WARN","features":[81]},{"name":"IDS_CAP_OUTOFMEM","features":[81]},{"name":"IDS_CAP_READONLYFILE","features":[81]},{"name":"IDS_CAP_RECORDING_ERROR","features":[81]},{"name":"IDS_CAP_RECORDING_ERROR2","features":[81]},{"name":"IDS_CAP_SAVEASPERCENT","features":[81]},{"name":"IDS_CAP_SEQ_MSGSTART","features":[81]},{"name":"IDS_CAP_SEQ_MSGSTOP","features":[81]},{"name":"IDS_CAP_SETFILESIZE","features":[81]},{"name":"IDS_CAP_STAT_CAP_AUDIO","features":[81]},{"name":"IDS_CAP_STAT_CAP_FINI","features":[81]},{"name":"IDS_CAP_STAT_CAP_INIT","features":[81]},{"name":"IDS_CAP_STAT_CAP_L_FRAMES","features":[81]},{"name":"IDS_CAP_STAT_FRAMESDROPPED","features":[81]},{"name":"IDS_CAP_STAT_I_FRAMES","features":[81]},{"name":"IDS_CAP_STAT_LIVE_MODE","features":[81]},{"name":"IDS_CAP_STAT_L_FRAMES","features":[81]},{"name":"IDS_CAP_STAT_OPTPAL_BUILD","features":[81]},{"name":"IDS_CAP_STAT_OVERLAY_MODE","features":[81]},{"name":"IDS_CAP_STAT_PALETTE_BUILD","features":[81]},{"name":"IDS_CAP_STAT_VIDEOAUDIO","features":[81]},{"name":"IDS_CAP_STAT_VIDEOCURRENT","features":[81]},{"name":"IDS_CAP_STAT_VIDEOONLY","features":[81]},{"name":"IDS_CAP_VIDEDITERR","features":[81]},{"name":"IDS_CAP_VIDEO_ADD_ERROR","features":[81]},{"name":"IDS_CAP_VIDEO_ALLOC_ERROR","features":[81]},{"name":"IDS_CAP_VIDEO_OPEN_ERROR","features":[81]},{"name":"IDS_CAP_VIDEO_PREPARE_ERROR","features":[81]},{"name":"IDS_CAP_VIDEO_SIZE_ERROR","features":[81]},{"name":"IDS_CAP_WAVE_ADD_ERROR","features":[81]},{"name":"IDS_CAP_WAVE_ALLOC_ERROR","features":[81]},{"name":"IDS_CAP_WAVE_OPEN_ERROR","features":[81]},{"name":"IDS_CAP_WAVE_PREPARE_ERROR","features":[81]},{"name":"IDS_CAP_WAVE_SIZE_ERROR","features":[81]},{"name":"IDS_CAP_WRITEERROR","features":[81]},{"name":"IGetFrame","features":[81]},{"name":"IMAADPCMWAVEFORMAT","features":[82,81]},{"name":"JDD_CONFIGCHANGED","features":[81]},{"name":"JDD_GETDEVCAPS","features":[81]},{"name":"JDD_GETNUMDEVS","features":[81]},{"name":"JDD_GETPOS","features":[81]},{"name":"JDD_GETPOSEX","features":[81]},{"name":"JDD_SETCALIBRATION","features":[81]},{"name":"JIFMK_00","features":[81]},{"name":"JIFMK_APP0","features":[81]},{"name":"JIFMK_APP1","features":[81]},{"name":"JIFMK_APP2","features":[81]},{"name":"JIFMK_APP3","features":[81]},{"name":"JIFMK_APP4","features":[81]},{"name":"JIFMK_APP5","features":[81]},{"name":"JIFMK_APP6","features":[81]},{"name":"JIFMK_APP7","features":[81]},{"name":"JIFMK_COM","features":[81]},{"name":"JIFMK_DAC","features":[81]},{"name":"JIFMK_DHP","features":[81]},{"name":"JIFMK_DHT","features":[81]},{"name":"JIFMK_DNL","features":[81]},{"name":"JIFMK_DQT","features":[81]},{"name":"JIFMK_DRI","features":[81]},{"name":"JIFMK_EOI","features":[81]},{"name":"JIFMK_EXP","features":[81]},{"name":"JIFMK_FF","features":[81]},{"name":"JIFMK_JPG","features":[81]},{"name":"JIFMK_JPG0","features":[81]},{"name":"JIFMK_JPG1","features":[81]},{"name":"JIFMK_JPG10","features":[81]},{"name":"JIFMK_JPG11","features":[81]},{"name":"JIFMK_JPG12","features":[81]},{"name":"JIFMK_JPG13","features":[81]},{"name":"JIFMK_JPG2","features":[81]},{"name":"JIFMK_JPG3","features":[81]},{"name":"JIFMK_JPG4","features":[81]},{"name":"JIFMK_JPG5","features":[81]},{"name":"JIFMK_JPG6","features":[81]},{"name":"JIFMK_JPG7","features":[81]},{"name":"JIFMK_JPG8","features":[81]},{"name":"JIFMK_JPG9","features":[81]},{"name":"JIFMK_RES","features":[81]},{"name":"JIFMK_RST0","features":[81]},{"name":"JIFMK_RST1","features":[81]},{"name":"JIFMK_RST2","features":[81]},{"name":"JIFMK_RST3","features":[81]},{"name":"JIFMK_RST4","features":[81]},{"name":"JIFMK_RST5","features":[81]},{"name":"JIFMK_RST6","features":[81]},{"name":"JIFMK_RST7","features":[81]},{"name":"JIFMK_SOF0","features":[81]},{"name":"JIFMK_SOF1","features":[81]},{"name":"JIFMK_SOF10","features":[81]},{"name":"JIFMK_SOF11","features":[81]},{"name":"JIFMK_SOF13","features":[81]},{"name":"JIFMK_SOF14","features":[81]},{"name":"JIFMK_SOF15","features":[81]},{"name":"JIFMK_SOF2","features":[81]},{"name":"JIFMK_SOF3","features":[81]},{"name":"JIFMK_SOF5","features":[81]},{"name":"JIFMK_SOF6","features":[81]},{"name":"JIFMK_SOF7","features":[81]},{"name":"JIFMK_SOF9","features":[81]},{"name":"JIFMK_SOI","features":[81]},{"name":"JIFMK_SOS","features":[81]},{"name":"JIFMK_TEM","features":[81]},{"name":"JOYCAPS2A","features":[81]},{"name":"JOYCAPS2W","features":[81]},{"name":"JOYCAPSA","features":[81]},{"name":"JOYCAPSW","features":[81]},{"name":"JOYCAPS_HASPOV","features":[81]},{"name":"JOYCAPS_HASR","features":[81]},{"name":"JOYCAPS_HASU","features":[81]},{"name":"JOYCAPS_HASV","features":[81]},{"name":"JOYCAPS_HASZ","features":[81]},{"name":"JOYCAPS_POV4DIR","features":[81]},{"name":"JOYCAPS_POVCTS","features":[81]},{"name":"JOYERR_NOCANDO","features":[81]},{"name":"JOYERR_NOERROR","features":[81]},{"name":"JOYERR_PARMS","features":[81]},{"name":"JOYERR_UNPLUGGED","features":[81]},{"name":"JOYINFO","features":[81]},{"name":"JOYINFOEX","features":[81]},{"name":"JOYSTICKID1","features":[81]},{"name":"JOYSTICKID2","features":[81]},{"name":"JOY_BUTTON1","features":[81]},{"name":"JOY_BUTTON10","features":[81]},{"name":"JOY_BUTTON11","features":[81]},{"name":"JOY_BUTTON12","features":[81]},{"name":"JOY_BUTTON13","features":[81]},{"name":"JOY_BUTTON14","features":[81]},{"name":"JOY_BUTTON15","features":[81]},{"name":"JOY_BUTTON16","features":[81]},{"name":"JOY_BUTTON17","features":[81]},{"name":"JOY_BUTTON18","features":[81]},{"name":"JOY_BUTTON19","features":[81]},{"name":"JOY_BUTTON1CHG","features":[81]},{"name":"JOY_BUTTON2","features":[81]},{"name":"JOY_BUTTON20","features":[81]},{"name":"JOY_BUTTON21","features":[81]},{"name":"JOY_BUTTON22","features":[81]},{"name":"JOY_BUTTON23","features":[81]},{"name":"JOY_BUTTON24","features":[81]},{"name":"JOY_BUTTON25","features":[81]},{"name":"JOY_BUTTON26","features":[81]},{"name":"JOY_BUTTON27","features":[81]},{"name":"JOY_BUTTON28","features":[81]},{"name":"JOY_BUTTON29","features":[81]},{"name":"JOY_BUTTON2CHG","features":[81]},{"name":"JOY_BUTTON3","features":[81]},{"name":"JOY_BUTTON30","features":[81]},{"name":"JOY_BUTTON31","features":[81]},{"name":"JOY_BUTTON32","features":[81]},{"name":"JOY_BUTTON3CHG","features":[81]},{"name":"JOY_BUTTON4","features":[81]},{"name":"JOY_BUTTON4CHG","features":[81]},{"name":"JOY_BUTTON5","features":[81]},{"name":"JOY_BUTTON6","features":[81]},{"name":"JOY_BUTTON7","features":[81]},{"name":"JOY_BUTTON8","features":[81]},{"name":"JOY_BUTTON9","features":[81]},{"name":"JOY_CAL_READ3","features":[81]},{"name":"JOY_CAL_READ4","features":[81]},{"name":"JOY_CAL_READ5","features":[81]},{"name":"JOY_CAL_READ6","features":[81]},{"name":"JOY_CAL_READALWAYS","features":[81]},{"name":"JOY_CAL_READRONLY","features":[81]},{"name":"JOY_CAL_READUONLY","features":[81]},{"name":"JOY_CAL_READVONLY","features":[81]},{"name":"JOY_CAL_READXONLY","features":[81]},{"name":"JOY_CAL_READXYONLY","features":[81]},{"name":"JOY_CAL_READYONLY","features":[81]},{"name":"JOY_CAL_READZONLY","features":[81]},{"name":"JOY_CONFIGCHANGED_MSGSTRING","features":[81]},{"name":"JOY_POVBACKWARD","features":[81]},{"name":"JOY_POVFORWARD","features":[81]},{"name":"JOY_POVLEFT","features":[81]},{"name":"JOY_POVRIGHT","features":[81]},{"name":"JOY_RETURNBUTTONS","features":[81]},{"name":"JOY_RETURNCENTERED","features":[81]},{"name":"JOY_RETURNPOV","features":[81]},{"name":"JOY_RETURNPOVCTS","features":[81]},{"name":"JOY_RETURNR","features":[81]},{"name":"JOY_RETURNRAWDATA","features":[81]},{"name":"JOY_RETURNU","features":[81]},{"name":"JOY_RETURNV","features":[81]},{"name":"JOY_RETURNX","features":[81]},{"name":"JOY_RETURNY","features":[81]},{"name":"JOY_RETURNZ","features":[81]},{"name":"JOY_USEDEADZONE","features":[81]},{"name":"JPEGINFOHEADER","features":[81]},{"name":"JPEG_PROCESS_BASELINE","features":[81]},{"name":"JPEG_RGB","features":[81]},{"name":"JPEG_Y","features":[81]},{"name":"JPEG_YCbCr","features":[81]},{"name":"KSDATAFORMAT_SUBTYPE_IEEE_FLOAT","features":[81]},{"name":"LPFNEXTDEVIO","features":[3,81,8]},{"name":"LPMMIOPROC","features":[3,81]},{"name":"LPTASKCALLBACK","features":[81]},{"name":"MCIERR_AVI_AUDIOERROR","features":[81]},{"name":"MCIERR_AVI_BADPALETTE","features":[81]},{"name":"MCIERR_AVI_CANTPLAYFULLSCREEN","features":[81]},{"name":"MCIERR_AVI_DISPLAYERROR","features":[81]},{"name":"MCIERR_AVI_NOCOMPRESSOR","features":[81]},{"name":"MCIERR_AVI_NODISPDIB","features":[81]},{"name":"MCIERR_AVI_NOTINTERLEAVED","features":[81]},{"name":"MCIERR_AVI_OLDAVIFORMAT","features":[81]},{"name":"MCIERR_AVI_TOOBIGFORVGA","features":[81]},{"name":"MCIERR_BAD_CONSTANT","features":[81]},{"name":"MCIERR_BAD_INTEGER","features":[81]},{"name":"MCIERR_BAD_TIME_FORMAT","features":[81]},{"name":"MCIERR_CANNOT_LOAD_DRIVER","features":[81]},{"name":"MCIERR_CANNOT_USE_ALL","features":[81]},{"name":"MCIERR_CREATEWINDOW","features":[81]},{"name":"MCIERR_CUSTOM_DRIVER_BASE","features":[81]},{"name":"MCIERR_DEVICE_LENGTH","features":[81]},{"name":"MCIERR_DEVICE_LOCKED","features":[81]},{"name":"MCIERR_DEVICE_NOT_INSTALLED","features":[81]},{"name":"MCIERR_DEVICE_NOT_READY","features":[81]},{"name":"MCIERR_DEVICE_OPEN","features":[81]},{"name":"MCIERR_DEVICE_ORD_LENGTH","features":[81]},{"name":"MCIERR_DEVICE_TYPE_REQUIRED","features":[81]},{"name":"MCIERR_DGV_BAD_CLIPBOARD_RANGE","features":[81]},{"name":"MCIERR_DGV_DEVICE_LIMIT","features":[81]},{"name":"MCIERR_DGV_DEVICE_MEMORY_FULL","features":[81]},{"name":"MCIERR_DGV_DISK_FULL","features":[81]},{"name":"MCIERR_DGV_IOERR","features":[81]},{"name":"MCIERR_DGV_WORKSPACE_EMPTY","features":[81]},{"name":"MCIERR_DRIVER","features":[81]},{"name":"MCIERR_DRIVER_INTERNAL","features":[81]},{"name":"MCIERR_DUPLICATE_ALIAS","features":[81]},{"name":"MCIERR_DUPLICATE_FLAGS","features":[81]},{"name":"MCIERR_EXTENSION_NOT_FOUND","features":[81]},{"name":"MCIERR_EXTRA_CHARACTERS","features":[81]},{"name":"MCIERR_FILENAME_REQUIRED","features":[81]},{"name":"MCIERR_FILE_NOT_FOUND","features":[81]},{"name":"MCIERR_FILE_NOT_SAVED","features":[81]},{"name":"MCIERR_FILE_READ","features":[81]},{"name":"MCIERR_FILE_WRITE","features":[81]},{"name":"MCIERR_FLAGS_NOT_COMPATIBLE","features":[81]},{"name":"MCIERR_GET_CD","features":[81]},{"name":"MCIERR_HARDWARE","features":[81]},{"name":"MCIERR_ILLEGAL_FOR_AUTO_OPEN","features":[81]},{"name":"MCIERR_INTERNAL","features":[81]},{"name":"MCIERR_INVALID_DEVICE_ID","features":[81]},{"name":"MCIERR_INVALID_DEVICE_NAME","features":[81]},{"name":"MCIERR_INVALID_FILE","features":[81]},{"name":"MCIERR_MISSING_COMMAND_STRING","features":[81]},{"name":"MCIERR_MISSING_DEVICE_NAME","features":[81]},{"name":"MCIERR_MISSING_PARAMETER","features":[81]},{"name":"MCIERR_MISSING_STRING_ARGUMENT","features":[81]},{"name":"MCIERR_MULTIPLE","features":[81]},{"name":"MCIERR_MUST_USE_SHAREABLE","features":[81]},{"name":"MCIERR_NEW_REQUIRES_ALIAS","features":[81]},{"name":"MCIERR_NONAPPLICABLE_FUNCTION","features":[81]},{"name":"MCIERR_NOTIFY_ON_AUTO_OPEN","features":[81]},{"name":"MCIERR_NO_CLOSING_QUOTE","features":[81]},{"name":"MCIERR_NO_ELEMENT_ALLOWED","features":[81]},{"name":"MCIERR_NO_IDENTITY","features":[81]},{"name":"MCIERR_NO_INTEGER","features":[81]},{"name":"MCIERR_NO_WINDOW","features":[81]},{"name":"MCIERR_NULL_PARAMETER_BLOCK","features":[81]},{"name":"MCIERR_OUTOFRANGE","features":[81]},{"name":"MCIERR_OUT_OF_MEMORY","features":[81]},{"name":"MCIERR_PARAM_OVERFLOW","features":[81]},{"name":"MCIERR_PARSER_INTERNAL","features":[81]},{"name":"MCIERR_SEQ_DIV_INCOMPATIBLE","features":[81]},{"name":"MCIERR_SEQ_NOMIDIPRESENT","features":[81]},{"name":"MCIERR_SEQ_PORTUNSPECIFIED","features":[81]},{"name":"MCIERR_SEQ_PORT_INUSE","features":[81]},{"name":"MCIERR_SEQ_PORT_MAPNODEVICE","features":[81]},{"name":"MCIERR_SEQ_PORT_MISCERROR","features":[81]},{"name":"MCIERR_SEQ_PORT_NONEXISTENT","features":[81]},{"name":"MCIERR_SEQ_TIMER","features":[81]},{"name":"MCIERR_SET_CD","features":[81]},{"name":"MCIERR_SET_DRIVE","features":[81]},{"name":"MCIERR_UNNAMED_RESOURCE","features":[81]},{"name":"MCIERR_UNRECOGNIZED_COMMAND","features":[81]},{"name":"MCIERR_UNRECOGNIZED_KEYWORD","features":[81]},{"name":"MCIERR_UNSUPPORTED_FUNCTION","features":[81]},{"name":"MCIERR_WAVE_INPUTSINUSE","features":[81]},{"name":"MCIERR_WAVE_INPUTSUNSUITABLE","features":[81]},{"name":"MCIERR_WAVE_INPUTUNSPECIFIED","features":[81]},{"name":"MCIERR_WAVE_OUTPUTSINUSE","features":[81]},{"name":"MCIERR_WAVE_OUTPUTSUNSUITABLE","features":[81]},{"name":"MCIERR_WAVE_OUTPUTUNSPECIFIED","features":[81]},{"name":"MCIERR_WAVE_SETINPUTINUSE","features":[81]},{"name":"MCIERR_WAVE_SETINPUTUNSUITABLE","features":[81]},{"name":"MCIERR_WAVE_SETOUTPUTINUSE","features":[81]},{"name":"MCIERR_WAVE_SETOUTPUTUNSUITABLE","features":[81]},{"name":"MCIWNDF_NOAUTOSIZEMOVIE","features":[81]},{"name":"MCIWNDF_NOAUTOSIZEWINDOW","features":[81]},{"name":"MCIWNDF_NOERRORDLG","features":[81]},{"name":"MCIWNDF_NOMENU","features":[81]},{"name":"MCIWNDF_NOOPEN","features":[81]},{"name":"MCIWNDF_NOPLAYBAR","features":[81]},{"name":"MCIWNDF_NOTIFYALL","features":[81]},{"name":"MCIWNDF_NOTIFYANSI","features":[81]},{"name":"MCIWNDF_NOTIFYERROR","features":[81]},{"name":"MCIWNDF_NOTIFYMEDIA","features":[81]},{"name":"MCIWNDF_NOTIFYMEDIAA","features":[81]},{"name":"MCIWNDF_NOTIFYMEDIAW","features":[81]},{"name":"MCIWNDF_NOTIFYMODE","features":[81]},{"name":"MCIWNDF_NOTIFYPOS","features":[81]},{"name":"MCIWNDF_NOTIFYSIZE","features":[81]},{"name":"MCIWNDF_RECORD","features":[81]},{"name":"MCIWNDF_SHOWALL","features":[81]},{"name":"MCIWNDF_SHOWMODE","features":[81]},{"name":"MCIWNDF_SHOWNAME","features":[81]},{"name":"MCIWNDF_SHOWPOS","features":[81]},{"name":"MCIWNDM_CAN_CONFIG","features":[81]},{"name":"MCIWNDM_CAN_EJECT","features":[81]},{"name":"MCIWNDM_CAN_PLAY","features":[81]},{"name":"MCIWNDM_CAN_RECORD","features":[81]},{"name":"MCIWNDM_CAN_SAVE","features":[81]},{"name":"MCIWNDM_CAN_WINDOW","features":[81]},{"name":"MCIWNDM_CHANGESTYLES","features":[81]},{"name":"MCIWNDM_EJECT","features":[81]},{"name":"MCIWNDM_GETACTIVETIMER","features":[81]},{"name":"MCIWNDM_GETALIAS","features":[81]},{"name":"MCIWNDM_GETDEVICE","features":[81]},{"name":"MCIWNDM_GETDEVICEA","features":[81]},{"name":"MCIWNDM_GETDEVICEID","features":[81]},{"name":"MCIWNDM_GETDEVICEW","features":[81]},{"name":"MCIWNDM_GETEND","features":[81]},{"name":"MCIWNDM_GETERROR","features":[81]},{"name":"MCIWNDM_GETERRORA","features":[81]},{"name":"MCIWNDM_GETERRORW","features":[81]},{"name":"MCIWNDM_GETFILENAME","features":[81]},{"name":"MCIWNDM_GETFILENAMEA","features":[81]},{"name":"MCIWNDM_GETFILENAMEW","features":[81]},{"name":"MCIWNDM_GETINACTIVETIMER","features":[81]},{"name":"MCIWNDM_GETLENGTH","features":[81]},{"name":"MCIWNDM_GETMODE","features":[81]},{"name":"MCIWNDM_GETMODEA","features":[81]},{"name":"MCIWNDM_GETMODEW","features":[81]},{"name":"MCIWNDM_GETPALETTE","features":[81]},{"name":"MCIWNDM_GETPOSITION","features":[81]},{"name":"MCIWNDM_GETPOSITIONA","features":[81]},{"name":"MCIWNDM_GETPOSITIONW","features":[81]},{"name":"MCIWNDM_GETREPEAT","features":[81]},{"name":"MCIWNDM_GETSPEED","features":[81]},{"name":"MCIWNDM_GETSTART","features":[81]},{"name":"MCIWNDM_GETSTYLES","features":[81]},{"name":"MCIWNDM_GETTIMEFORMAT","features":[81]},{"name":"MCIWNDM_GETTIMEFORMATA","features":[81]},{"name":"MCIWNDM_GETTIMEFORMATW","features":[81]},{"name":"MCIWNDM_GETVOLUME","features":[81]},{"name":"MCIWNDM_GETZOOM","features":[81]},{"name":"MCIWNDM_GET_DEST","features":[81]},{"name":"MCIWNDM_GET_SOURCE","features":[81]},{"name":"MCIWNDM_NEW","features":[81]},{"name":"MCIWNDM_NEWA","features":[81]},{"name":"MCIWNDM_NEWW","features":[81]},{"name":"MCIWNDM_NOTIFYERROR","features":[81]},{"name":"MCIWNDM_NOTIFYMEDIA","features":[81]},{"name":"MCIWNDM_NOTIFYMODE","features":[81]},{"name":"MCIWNDM_NOTIFYPOS","features":[81]},{"name":"MCIWNDM_NOTIFYSIZE","features":[81]},{"name":"MCIWNDM_OPEN","features":[81]},{"name":"MCIWNDM_OPENA","features":[81]},{"name":"MCIWNDM_OPENINTERFACE","features":[81]},{"name":"MCIWNDM_OPENW","features":[81]},{"name":"MCIWNDM_PALETTEKICK","features":[81]},{"name":"MCIWNDM_PLAYFROM","features":[81]},{"name":"MCIWNDM_PLAYREVERSE","features":[81]},{"name":"MCIWNDM_PLAYTO","features":[81]},{"name":"MCIWNDM_PUT_DEST","features":[81]},{"name":"MCIWNDM_PUT_SOURCE","features":[81]},{"name":"MCIWNDM_REALIZE","features":[81]},{"name":"MCIWNDM_RETURNSTRING","features":[81]},{"name":"MCIWNDM_RETURNSTRINGA","features":[81]},{"name":"MCIWNDM_RETURNSTRINGW","features":[81]},{"name":"MCIWNDM_SENDSTRING","features":[81]},{"name":"MCIWNDM_SENDSTRINGA","features":[81]},{"name":"MCIWNDM_SENDSTRINGW","features":[81]},{"name":"MCIWNDM_SETACTIVETIMER","features":[81]},{"name":"MCIWNDM_SETINACTIVETIMER","features":[81]},{"name":"MCIWNDM_SETOWNER","features":[81]},{"name":"MCIWNDM_SETPALETTE","features":[81]},{"name":"MCIWNDM_SETREPEAT","features":[81]},{"name":"MCIWNDM_SETSPEED","features":[81]},{"name":"MCIWNDM_SETTIMEFORMAT","features":[81]},{"name":"MCIWNDM_SETTIMEFORMATA","features":[81]},{"name":"MCIWNDM_SETTIMEFORMATW","features":[81]},{"name":"MCIWNDM_SETTIMERS","features":[81]},{"name":"MCIWNDM_SETVOLUME","features":[81]},{"name":"MCIWNDM_SETZOOM","features":[81]},{"name":"MCIWNDM_VALIDATEMEDIA","features":[81]},{"name":"MCIWNDOPENF_NEW","features":[81]},{"name":"MCIWND_END","features":[81]},{"name":"MCIWND_START","features":[81]},{"name":"MCIWND_WINDOW_CLASS","features":[81]},{"name":"MCIWndCreateA","features":[3,81]},{"name":"MCIWndCreateW","features":[3,81]},{"name":"MCIWndRegisterClass","features":[3,81]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_REVERSE","features":[81]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_STRETCH","features":[81]},{"name":"MCI_ANIM_GETDEVCAPS_FAST_RATE","features":[81]},{"name":"MCI_ANIM_GETDEVCAPS_MAX_WINDOWS","features":[81]},{"name":"MCI_ANIM_GETDEVCAPS_NORMAL_RATE","features":[81]},{"name":"MCI_ANIM_GETDEVCAPS_PALETTES","features":[81]},{"name":"MCI_ANIM_GETDEVCAPS_SLOW_RATE","features":[81]},{"name":"MCI_ANIM_INFO_TEXT","features":[81]},{"name":"MCI_ANIM_OPEN_NOSTATIC","features":[81]},{"name":"MCI_ANIM_OPEN_PARENT","features":[81]},{"name":"MCI_ANIM_OPEN_PARMSA","features":[3,81]},{"name":"MCI_ANIM_OPEN_PARMSW","features":[3,81]},{"name":"MCI_ANIM_OPEN_WS","features":[81]},{"name":"MCI_ANIM_PLAY_FAST","features":[81]},{"name":"MCI_ANIM_PLAY_PARMS","features":[81]},{"name":"MCI_ANIM_PLAY_REVERSE","features":[81]},{"name":"MCI_ANIM_PLAY_SCAN","features":[81]},{"name":"MCI_ANIM_PLAY_SLOW","features":[81]},{"name":"MCI_ANIM_PLAY_SPEED","features":[81]},{"name":"MCI_ANIM_PUT_DESTINATION","features":[81]},{"name":"MCI_ANIM_PUT_SOURCE","features":[81]},{"name":"MCI_ANIM_REALIZE_BKGD","features":[81]},{"name":"MCI_ANIM_REALIZE_NORM","features":[81]},{"name":"MCI_ANIM_RECT","features":[81]},{"name":"MCI_ANIM_RECT_PARMS","features":[3,81]},{"name":"MCI_ANIM_STATUS_FORWARD","features":[81]},{"name":"MCI_ANIM_STATUS_HPAL","features":[81]},{"name":"MCI_ANIM_STATUS_HWND","features":[81]},{"name":"MCI_ANIM_STATUS_SPEED","features":[81]},{"name":"MCI_ANIM_STATUS_STRETCH","features":[81]},{"name":"MCI_ANIM_STEP_FRAMES","features":[81]},{"name":"MCI_ANIM_STEP_PARMS","features":[81]},{"name":"MCI_ANIM_STEP_REVERSE","features":[81]},{"name":"MCI_ANIM_UPDATE_HDC","features":[81]},{"name":"MCI_ANIM_UPDATE_PARMS","features":[3,14,81]},{"name":"MCI_ANIM_WHERE_DESTINATION","features":[81]},{"name":"MCI_ANIM_WHERE_SOURCE","features":[81]},{"name":"MCI_ANIM_WINDOW_DEFAULT","features":[81]},{"name":"MCI_ANIM_WINDOW_DISABLE_STRETCH","features":[81]},{"name":"MCI_ANIM_WINDOW_ENABLE_STRETCH","features":[81]},{"name":"MCI_ANIM_WINDOW_HWND","features":[81]},{"name":"MCI_ANIM_WINDOW_PARMSA","features":[3,81]},{"name":"MCI_ANIM_WINDOW_PARMSW","features":[3,81]},{"name":"MCI_ANIM_WINDOW_STATE","features":[81]},{"name":"MCI_ANIM_WINDOW_TEXT","features":[81]},{"name":"MCI_AVI_SETVIDEO_DRAW_PROCEDURE","features":[81]},{"name":"MCI_AVI_SETVIDEO_PALETTE_COLOR","features":[81]},{"name":"MCI_AVI_SETVIDEO_PALETTE_HALFTONE","features":[81]},{"name":"MCI_AVI_STATUS_AUDIO_BREAKS","features":[81]},{"name":"MCI_AVI_STATUS_FRAMES_SKIPPED","features":[81]},{"name":"MCI_AVI_STATUS_LAST_PLAY_SPEED","features":[81]},{"name":"MCI_BREAK","features":[81]},{"name":"MCI_BREAK_HWND","features":[81]},{"name":"MCI_BREAK_KEY","features":[81]},{"name":"MCI_BREAK_OFF","features":[81]},{"name":"MCI_BREAK_PARMS","features":[3,81]},{"name":"MCI_CAPTURE","features":[81]},{"name":"MCI_CDA_STATUS_TYPE_TRACK","features":[81]},{"name":"MCI_CDA_TRACK_AUDIO","features":[81]},{"name":"MCI_CDA_TRACK_OTHER","features":[81]},{"name":"MCI_CLOSE","features":[81]},{"name":"MCI_CLOSE_DRIVER","features":[81]},{"name":"MCI_COLONIZED3_RETURN","features":[81]},{"name":"MCI_COLONIZED4_RETURN","features":[81]},{"name":"MCI_COMMAND_HEAD","features":[81]},{"name":"MCI_CONFIGURE","features":[81]},{"name":"MCI_CONSTANT","features":[81]},{"name":"MCI_COPY","features":[81]},{"name":"MCI_CUE","features":[81]},{"name":"MCI_CUT","features":[81]},{"name":"MCI_DELETE","features":[81]},{"name":"MCI_DEVTYPE_ANIMATION","features":[81]},{"name":"MCI_DEVTYPE_CD_AUDIO","features":[81]},{"name":"MCI_DEVTYPE_DAT","features":[81]},{"name":"MCI_DEVTYPE_DIGITAL_VIDEO","features":[81]},{"name":"MCI_DEVTYPE_FIRST","features":[81]},{"name":"MCI_DEVTYPE_FIRST_USER","features":[81]},{"name":"MCI_DEVTYPE_LAST","features":[81]},{"name":"MCI_DEVTYPE_OTHER","features":[81]},{"name":"MCI_DEVTYPE_OVERLAY","features":[81]},{"name":"MCI_DEVTYPE_SCANNER","features":[81]},{"name":"MCI_DEVTYPE_SEQUENCER","features":[81]},{"name":"MCI_DEVTYPE_VCR","features":[81]},{"name":"MCI_DEVTYPE_VIDEODISC","features":[81]},{"name":"MCI_DEVTYPE_WAVEFORM_AUDIO","features":[81]},{"name":"MCI_DGV_CAPTURE_AS","features":[81]},{"name":"MCI_DGV_CAPTURE_AT","features":[81]},{"name":"MCI_DGV_CAPTURE_PARMSA","features":[3,81]},{"name":"MCI_DGV_CAPTURE_PARMSW","features":[3,81]},{"name":"MCI_DGV_COPY_AT","features":[81]},{"name":"MCI_DGV_COPY_AUDIO_STREAM","features":[81]},{"name":"MCI_DGV_COPY_PARMS","features":[3,81]},{"name":"MCI_DGV_COPY_VIDEO_STREAM","features":[81]},{"name":"MCI_DGV_CUE_INPUT","features":[81]},{"name":"MCI_DGV_CUE_NOSHOW","features":[81]},{"name":"MCI_DGV_CUE_OUTPUT","features":[81]},{"name":"MCI_DGV_CUE_PARMS","features":[81]},{"name":"MCI_DGV_CUT_AT","features":[81]},{"name":"MCI_DGV_CUT_AUDIO_STREAM","features":[81]},{"name":"MCI_DGV_CUT_PARMS","features":[3,81]},{"name":"MCI_DGV_CUT_VIDEO_STREAM","features":[81]},{"name":"MCI_DGV_DELETE_AT","features":[81]},{"name":"MCI_DGV_DELETE_AUDIO_STREAM","features":[81]},{"name":"MCI_DGV_DELETE_PARMS","features":[3,81]},{"name":"MCI_DGV_DELETE_VIDEO_STREAM","features":[81]},{"name":"MCI_DGV_FF_AVI","features":[81]},{"name":"MCI_DGV_FF_AVSS","features":[81]},{"name":"MCI_DGV_FF_DIB","features":[81]},{"name":"MCI_DGV_FF_JFIF","features":[81]},{"name":"MCI_DGV_FF_JPEG","features":[81]},{"name":"MCI_DGV_FF_MPEG","features":[81]},{"name":"MCI_DGV_FF_RDIB","features":[81]},{"name":"MCI_DGV_FF_RJPEG","features":[81]},{"name":"MCI_DGV_FILE_MODE_EDITING","features":[81]},{"name":"MCI_DGV_FILE_MODE_EDITING_S","features":[81]},{"name":"MCI_DGV_FILE_MODE_IDLE","features":[81]},{"name":"MCI_DGV_FILE_MODE_IDLE_S","features":[81]},{"name":"MCI_DGV_FILE_MODE_LOADING","features":[81]},{"name":"MCI_DGV_FILE_MODE_LOADING_S","features":[81]},{"name":"MCI_DGV_FILE_MODE_SAVING","features":[81]},{"name":"MCI_DGV_FILE_MODE_SAVING_S","features":[81]},{"name":"MCI_DGV_FILE_S","features":[81]},{"name":"MCI_DGV_FREEZE_AT","features":[81]},{"name":"MCI_DGV_FREEZE_OUTSIDE","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_CAN_FREEZE","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_CAN_LOCK","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_CAN_REVERSE","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STRETCH","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STR_IN","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_CAN_TEST","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_HAS_STILL","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_MAXIMUM_RATE","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_MAX_WINDOWS","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_MINIMUM_RATE","features":[81]},{"name":"MCI_DGV_GETDEVCAPS_PALETTES","features":[81]},{"name":"MCI_DGV_INFO_AUDIO_ALG","features":[81]},{"name":"MCI_DGV_INFO_AUDIO_QUALITY","features":[81]},{"name":"MCI_DGV_INFO_ITEM","features":[81]},{"name":"MCI_DGV_INFO_PARMSA","features":[81]},{"name":"MCI_DGV_INFO_PARMSW","features":[81]},{"name":"MCI_DGV_INFO_STILL_ALG","features":[81]},{"name":"MCI_DGV_INFO_STILL_QUALITY","features":[81]},{"name":"MCI_DGV_INFO_TEXT","features":[81]},{"name":"MCI_DGV_INFO_USAGE","features":[81]},{"name":"MCI_DGV_INFO_VIDEO_ALG","features":[81]},{"name":"MCI_DGV_INFO_VIDEO_QUALITY","features":[81]},{"name":"MCI_DGV_INPUT_S","features":[81]},{"name":"MCI_DGV_LIST_ALG","features":[81]},{"name":"MCI_DGV_LIST_AUDIO_ALG","features":[81]},{"name":"MCI_DGV_LIST_AUDIO_QUALITY","features":[81]},{"name":"MCI_DGV_LIST_AUDIO_STREAM","features":[81]},{"name":"MCI_DGV_LIST_COUNT","features":[81]},{"name":"MCI_DGV_LIST_ITEM","features":[81]},{"name":"MCI_DGV_LIST_NUMBER","features":[81]},{"name":"MCI_DGV_LIST_PARMSA","features":[81]},{"name":"MCI_DGV_LIST_PARMSW","features":[81]},{"name":"MCI_DGV_LIST_STILL_ALG","features":[81]},{"name":"MCI_DGV_LIST_STILL_QUALITY","features":[81]},{"name":"MCI_DGV_LIST_VIDEO_ALG","features":[81]},{"name":"MCI_DGV_LIST_VIDEO_QUALITY","features":[81]},{"name":"MCI_DGV_LIST_VIDEO_SOURCE","features":[81]},{"name":"MCI_DGV_LIST_VIDEO_STREAM","features":[81]},{"name":"MCI_DGV_METHOD_DIRECT","features":[81]},{"name":"MCI_DGV_METHOD_POST","features":[81]},{"name":"MCI_DGV_METHOD_PRE","features":[81]},{"name":"MCI_DGV_MONITOR_FILE","features":[81]},{"name":"MCI_DGV_MONITOR_INPUT","features":[81]},{"name":"MCI_DGV_MONITOR_METHOD","features":[81]},{"name":"MCI_DGV_MONITOR_PARMS","features":[81]},{"name":"MCI_DGV_MONITOR_SOURCE","features":[81]},{"name":"MCI_DGV_OPEN_16BIT","features":[81]},{"name":"MCI_DGV_OPEN_32BIT","features":[81]},{"name":"MCI_DGV_OPEN_NOSTATIC","features":[81]},{"name":"MCI_DGV_OPEN_PARENT","features":[81]},{"name":"MCI_DGV_OPEN_PARMSA","features":[3,81]},{"name":"MCI_DGV_OPEN_PARMSW","features":[3,81]},{"name":"MCI_DGV_OPEN_WS","features":[81]},{"name":"MCI_DGV_PASTE_AT","features":[81]},{"name":"MCI_DGV_PASTE_AUDIO_STREAM","features":[81]},{"name":"MCI_DGV_PASTE_INSERT","features":[81]},{"name":"MCI_DGV_PASTE_OVERWRITE","features":[81]},{"name":"MCI_DGV_PASTE_PARMS","features":[3,81]},{"name":"MCI_DGV_PASTE_VIDEO_STREAM","features":[81]},{"name":"MCI_DGV_PLAY_REPEAT","features":[81]},{"name":"MCI_DGV_PLAY_REVERSE","features":[81]},{"name":"MCI_DGV_PUT_CLIENT","features":[81]},{"name":"MCI_DGV_PUT_DESTINATION","features":[81]},{"name":"MCI_DGV_PUT_FRAME","features":[81]},{"name":"MCI_DGV_PUT_SOURCE","features":[81]},{"name":"MCI_DGV_PUT_VIDEO","features":[81]},{"name":"MCI_DGV_PUT_WINDOW","features":[81]},{"name":"MCI_DGV_QUALITY_PARMSA","features":[81]},{"name":"MCI_DGV_QUALITY_PARMSW","features":[81]},{"name":"MCI_DGV_REALIZE_BKGD","features":[81]},{"name":"MCI_DGV_REALIZE_NORM","features":[81]},{"name":"MCI_DGV_RECORD_AUDIO_STREAM","features":[81]},{"name":"MCI_DGV_RECORD_HOLD","features":[81]},{"name":"MCI_DGV_RECORD_PARMS","features":[3,81]},{"name":"MCI_DGV_RECORD_VIDEO_STREAM","features":[81]},{"name":"MCI_DGV_RECT","features":[81]},{"name":"MCI_DGV_RECT_PARMS","features":[3,81]},{"name":"MCI_DGV_RESERVE_IN","features":[81]},{"name":"MCI_DGV_RESERVE_PARMSA","features":[81]},{"name":"MCI_DGV_RESERVE_PARMSW","features":[81]},{"name":"MCI_DGV_RESERVE_SIZE","features":[81]},{"name":"MCI_DGV_RESTORE_AT","features":[81]},{"name":"MCI_DGV_RESTORE_FROM","features":[81]},{"name":"MCI_DGV_RESTORE_PARMSA","features":[3,81]},{"name":"MCI_DGV_RESTORE_PARMSW","features":[3,81]},{"name":"MCI_DGV_SAVE_ABORT","features":[81]},{"name":"MCI_DGV_SAVE_KEEPRESERVE","features":[81]},{"name":"MCI_DGV_SAVE_PARMSA","features":[3,81]},{"name":"MCI_DGV_SAVE_PARMSW","features":[3,81]},{"name":"MCI_DGV_SETAUDIO_ALG","features":[81]},{"name":"MCI_DGV_SETAUDIO_AVGBYTESPERSEC","features":[81]},{"name":"MCI_DGV_SETAUDIO_BASS","features":[81]},{"name":"MCI_DGV_SETAUDIO_BITSPERSAMPLE","features":[81]},{"name":"MCI_DGV_SETAUDIO_BLOCKALIGN","features":[81]},{"name":"MCI_DGV_SETAUDIO_CLOCKTIME","features":[81]},{"name":"MCI_DGV_SETAUDIO_INPUT","features":[81]},{"name":"MCI_DGV_SETAUDIO_ITEM","features":[81]},{"name":"MCI_DGV_SETAUDIO_LEFT","features":[81]},{"name":"MCI_DGV_SETAUDIO_OUTPUT","features":[81]},{"name":"MCI_DGV_SETAUDIO_OVER","features":[81]},{"name":"MCI_DGV_SETAUDIO_PARMSA","features":[81]},{"name":"MCI_DGV_SETAUDIO_PARMSW","features":[81]},{"name":"MCI_DGV_SETAUDIO_QUALITY","features":[81]},{"name":"MCI_DGV_SETAUDIO_RECORD","features":[81]},{"name":"MCI_DGV_SETAUDIO_RIGHT","features":[81]},{"name":"MCI_DGV_SETAUDIO_SAMPLESPERSEC","features":[81]},{"name":"MCI_DGV_SETAUDIO_SOURCE","features":[81]},{"name":"MCI_DGV_SETAUDIO_SOURCE_AVERAGE","features":[81]},{"name":"MCI_DGV_SETAUDIO_SOURCE_LEFT","features":[81]},{"name":"MCI_DGV_SETAUDIO_SOURCE_RIGHT","features":[81]},{"name":"MCI_DGV_SETAUDIO_SOURCE_STEREO","features":[81]},{"name":"MCI_DGV_SETAUDIO_SRC_AVERAGE_S","features":[81]},{"name":"MCI_DGV_SETAUDIO_SRC_LEFT_S","features":[81]},{"name":"MCI_DGV_SETAUDIO_SRC_RIGHT_S","features":[81]},{"name":"MCI_DGV_SETAUDIO_SRC_STEREO_S","features":[81]},{"name":"MCI_DGV_SETAUDIO_STREAM","features":[81]},{"name":"MCI_DGV_SETAUDIO_TREBLE","features":[81]},{"name":"MCI_DGV_SETAUDIO_VALUE","features":[81]},{"name":"MCI_DGV_SETAUDIO_VOLUME","features":[81]},{"name":"MCI_DGV_SETVIDEO_ALG","features":[81]},{"name":"MCI_DGV_SETVIDEO_BITSPERPEL","features":[81]},{"name":"MCI_DGV_SETVIDEO_BRIGHTNESS","features":[81]},{"name":"MCI_DGV_SETVIDEO_CLOCKTIME","features":[81]},{"name":"MCI_DGV_SETVIDEO_COLOR","features":[81]},{"name":"MCI_DGV_SETVIDEO_CONTRAST","features":[81]},{"name":"MCI_DGV_SETVIDEO_FRAME_RATE","features":[81]},{"name":"MCI_DGV_SETVIDEO_GAMMA","features":[81]},{"name":"MCI_DGV_SETVIDEO_INPUT","features":[81]},{"name":"MCI_DGV_SETVIDEO_ITEM","features":[81]},{"name":"MCI_DGV_SETVIDEO_KEY_COLOR","features":[81]},{"name":"MCI_DGV_SETVIDEO_KEY_INDEX","features":[81]},{"name":"MCI_DGV_SETVIDEO_OUTPUT","features":[81]},{"name":"MCI_DGV_SETVIDEO_OVER","features":[81]},{"name":"MCI_DGV_SETVIDEO_PALHANDLE","features":[81]},{"name":"MCI_DGV_SETVIDEO_PARMSA","features":[81]},{"name":"MCI_DGV_SETVIDEO_PARMSW","features":[81]},{"name":"MCI_DGV_SETVIDEO_QUALITY","features":[81]},{"name":"MCI_DGV_SETVIDEO_RECORD","features":[81]},{"name":"MCI_DGV_SETVIDEO_SHARPNESS","features":[81]},{"name":"MCI_DGV_SETVIDEO_SOURCE","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC_S","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC_S","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_NUMBER","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL_S","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB_S","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM_S","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO","features":[81]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO_S","features":[81]},{"name":"MCI_DGV_SETVIDEO_STILL","features":[81]},{"name":"MCI_DGV_SETVIDEO_STREAM","features":[81]},{"name":"MCI_DGV_SETVIDEO_TINT","features":[81]},{"name":"MCI_DGV_SETVIDEO_VALUE","features":[81]},{"name":"MCI_DGV_SET_FILEFORMAT","features":[81]},{"name":"MCI_DGV_SET_PARMS","features":[81]},{"name":"MCI_DGV_SET_SEEK_EXACTLY","features":[81]},{"name":"MCI_DGV_SET_SPEED","features":[81]},{"name":"MCI_DGV_SET_STILL","features":[81]},{"name":"MCI_DGV_SIGNAL_AT","features":[81]},{"name":"MCI_DGV_SIGNAL_CANCEL","features":[81]},{"name":"MCI_DGV_SIGNAL_EVERY","features":[81]},{"name":"MCI_DGV_SIGNAL_PARMS","features":[81]},{"name":"MCI_DGV_SIGNAL_POSITION","features":[81]},{"name":"MCI_DGV_SIGNAL_USERVAL","features":[81]},{"name":"MCI_DGV_STATUS_AUDIO","features":[81]},{"name":"MCI_DGV_STATUS_AUDIO_INPUT","features":[81]},{"name":"MCI_DGV_STATUS_AUDIO_RECORD","features":[81]},{"name":"MCI_DGV_STATUS_AUDIO_SOURCE","features":[81]},{"name":"MCI_DGV_STATUS_AUDIO_STREAM","features":[81]},{"name":"MCI_DGV_STATUS_AVGBYTESPERSEC","features":[81]},{"name":"MCI_DGV_STATUS_BASS","features":[81]},{"name":"MCI_DGV_STATUS_BITSPERPEL","features":[81]},{"name":"MCI_DGV_STATUS_BITSPERSAMPLE","features":[81]},{"name":"MCI_DGV_STATUS_BLOCKALIGN","features":[81]},{"name":"MCI_DGV_STATUS_BRIGHTNESS","features":[81]},{"name":"MCI_DGV_STATUS_COLOR","features":[81]},{"name":"MCI_DGV_STATUS_CONTRAST","features":[81]},{"name":"MCI_DGV_STATUS_DISKSPACE","features":[81]},{"name":"MCI_DGV_STATUS_FILEFORMAT","features":[81]},{"name":"MCI_DGV_STATUS_FILE_COMPLETION","features":[81]},{"name":"MCI_DGV_STATUS_FILE_MODE","features":[81]},{"name":"MCI_DGV_STATUS_FORWARD","features":[81]},{"name":"MCI_DGV_STATUS_FRAME_RATE","features":[81]},{"name":"MCI_DGV_STATUS_GAMMA","features":[81]},{"name":"MCI_DGV_STATUS_HPAL","features":[81]},{"name":"MCI_DGV_STATUS_HWND","features":[81]},{"name":"MCI_DGV_STATUS_INPUT","features":[81]},{"name":"MCI_DGV_STATUS_KEY_COLOR","features":[81]},{"name":"MCI_DGV_STATUS_KEY_INDEX","features":[81]},{"name":"MCI_DGV_STATUS_LEFT","features":[81]},{"name":"MCI_DGV_STATUS_MONITOR","features":[81]},{"name":"MCI_DGV_STATUS_MONITOR_METHOD","features":[81]},{"name":"MCI_DGV_STATUS_NOMINAL","features":[81]},{"name":"MCI_DGV_STATUS_OUTPUT","features":[81]},{"name":"MCI_DGV_STATUS_PARMSA","features":[81]},{"name":"MCI_DGV_STATUS_PARMSW","features":[81]},{"name":"MCI_DGV_STATUS_PAUSE_MODE","features":[81]},{"name":"MCI_DGV_STATUS_RECORD","features":[81]},{"name":"MCI_DGV_STATUS_REFERENCE","features":[81]},{"name":"MCI_DGV_STATUS_RIGHT","features":[81]},{"name":"MCI_DGV_STATUS_SAMPLESPERSEC","features":[81]},{"name":"MCI_DGV_STATUS_SEEK_EXACTLY","features":[81]},{"name":"MCI_DGV_STATUS_SHARPNESS","features":[81]},{"name":"MCI_DGV_STATUS_SIZE","features":[81]},{"name":"MCI_DGV_STATUS_SMPTE","features":[81]},{"name":"MCI_DGV_STATUS_SPEED","features":[81]},{"name":"MCI_DGV_STATUS_STILL_FILEFORMAT","features":[81]},{"name":"MCI_DGV_STATUS_TINT","features":[81]},{"name":"MCI_DGV_STATUS_TREBLE","features":[81]},{"name":"MCI_DGV_STATUS_UNSAVED","features":[81]},{"name":"MCI_DGV_STATUS_VIDEO","features":[81]},{"name":"MCI_DGV_STATUS_VIDEO_RECORD","features":[81]},{"name":"MCI_DGV_STATUS_VIDEO_SOURCE","features":[81]},{"name":"MCI_DGV_STATUS_VIDEO_SRC_NUM","features":[81]},{"name":"MCI_DGV_STATUS_VIDEO_STREAM","features":[81]},{"name":"MCI_DGV_STATUS_VOLUME","features":[81]},{"name":"MCI_DGV_STATUS_WINDOW_MAXIMIZED","features":[81]},{"name":"MCI_DGV_STATUS_WINDOW_MINIMIZED","features":[81]},{"name":"MCI_DGV_STATUS_WINDOW_VISIBLE","features":[81]},{"name":"MCI_DGV_STEP_FRAMES","features":[81]},{"name":"MCI_DGV_STEP_PARMS","features":[81]},{"name":"MCI_DGV_STEP_REVERSE","features":[81]},{"name":"MCI_DGV_STOP_HOLD","features":[81]},{"name":"MCI_DGV_UPDATE_HDC","features":[81]},{"name":"MCI_DGV_UPDATE_PAINT","features":[81]},{"name":"MCI_DGV_UPDATE_PARMS","features":[3,14,81]},{"name":"MCI_DGV_WHERE_DESTINATION","features":[81]},{"name":"MCI_DGV_WHERE_FRAME","features":[81]},{"name":"MCI_DGV_WHERE_MAX","features":[81]},{"name":"MCI_DGV_WHERE_SOURCE","features":[81]},{"name":"MCI_DGV_WHERE_VIDEO","features":[81]},{"name":"MCI_DGV_WHERE_WINDOW","features":[81]},{"name":"MCI_DGV_WINDOW_DEFAULT","features":[81]},{"name":"MCI_DGV_WINDOW_HWND","features":[81]},{"name":"MCI_DGV_WINDOW_PARMSA","features":[3,81]},{"name":"MCI_DGV_WINDOW_PARMSW","features":[3,81]},{"name":"MCI_DGV_WINDOW_STATE","features":[81]},{"name":"MCI_DGV_WINDOW_TEXT","features":[81]},{"name":"MCI_END_COMMAND","features":[81]},{"name":"MCI_END_COMMAND_LIST","features":[81]},{"name":"MCI_END_CONSTANT","features":[81]},{"name":"MCI_ESCAPE","features":[81]},{"name":"MCI_FALSE","features":[81]},{"name":"MCI_FIRST","features":[81]},{"name":"MCI_FLAG","features":[81]},{"name":"MCI_FORMAT_BYTES","features":[81]},{"name":"MCI_FORMAT_BYTES_S","features":[81]},{"name":"MCI_FORMAT_FRAMES","features":[81]},{"name":"MCI_FORMAT_FRAMES_S","features":[81]},{"name":"MCI_FORMAT_HMS","features":[81]},{"name":"MCI_FORMAT_HMS_S","features":[81]},{"name":"MCI_FORMAT_MILLISECONDS","features":[81]},{"name":"MCI_FORMAT_MILLISECONDS_S","features":[81]},{"name":"MCI_FORMAT_MSF","features":[81]},{"name":"MCI_FORMAT_MSF_S","features":[81]},{"name":"MCI_FORMAT_SAMPLES","features":[81]},{"name":"MCI_FORMAT_SAMPLES_S","features":[81]},{"name":"MCI_FORMAT_SMPTE_24","features":[81]},{"name":"MCI_FORMAT_SMPTE_24_S","features":[81]},{"name":"MCI_FORMAT_SMPTE_25","features":[81]},{"name":"MCI_FORMAT_SMPTE_25_S","features":[81]},{"name":"MCI_FORMAT_SMPTE_30","features":[81]},{"name":"MCI_FORMAT_SMPTE_30DROP","features":[81]},{"name":"MCI_FORMAT_SMPTE_30DROP_S","features":[81]},{"name":"MCI_FORMAT_SMPTE_30_S","features":[81]},{"name":"MCI_FORMAT_TMSF","features":[81]},{"name":"MCI_FORMAT_TMSF_S","features":[81]},{"name":"MCI_FREEZE","features":[81]},{"name":"MCI_FROM","features":[81]},{"name":"MCI_GENERIC_PARMS","features":[81]},{"name":"MCI_GETDEVCAPS","features":[81]},{"name":"MCI_GETDEVCAPS_CAN_EJECT","features":[81]},{"name":"MCI_GETDEVCAPS_CAN_PLAY","features":[81]},{"name":"MCI_GETDEVCAPS_CAN_RECORD","features":[81]},{"name":"MCI_GETDEVCAPS_CAN_SAVE","features":[81]},{"name":"MCI_GETDEVCAPS_COMPOUND_DEVICE","features":[81]},{"name":"MCI_GETDEVCAPS_DEVICE_TYPE","features":[81]},{"name":"MCI_GETDEVCAPS_HAS_AUDIO","features":[81]},{"name":"MCI_GETDEVCAPS_HAS_VIDEO","features":[81]},{"name":"MCI_GETDEVCAPS_ITEM","features":[81]},{"name":"MCI_GETDEVCAPS_PARMS","features":[81]},{"name":"MCI_GETDEVCAPS_USES_FILES","features":[81]},{"name":"MCI_HDC","features":[81]},{"name":"MCI_HPAL","features":[81]},{"name":"MCI_HWND","features":[81]},{"name":"MCI_INFO","features":[81]},{"name":"MCI_INFO_COPYRIGHT","features":[81]},{"name":"MCI_INFO_FILE","features":[81]},{"name":"MCI_INFO_MEDIA_IDENTITY","features":[81]},{"name":"MCI_INFO_MEDIA_UPC","features":[81]},{"name":"MCI_INFO_NAME","features":[81]},{"name":"MCI_INFO_PARMSA","features":[81]},{"name":"MCI_INFO_PARMSW","features":[81]},{"name":"MCI_INFO_PRODUCT","features":[81]},{"name":"MCI_INFO_VERSION","features":[81]},{"name":"MCI_INTEGER","features":[81]},{"name":"MCI_INTEGER64","features":[81]},{"name":"MCI_INTEGER_RETURNED","features":[81]},{"name":"MCI_LAST","features":[81]},{"name":"MCI_LIST","features":[81]},{"name":"MCI_LOAD","features":[81]},{"name":"MCI_LOAD_FILE","features":[81]},{"name":"MCI_LOAD_PARMSA","features":[81]},{"name":"MCI_LOAD_PARMSW","features":[81]},{"name":"MCI_MAX_DEVICE_TYPE_LENGTH","features":[81]},{"name":"MCI_MCIAVI_PLAY_FULLBY2","features":[81]},{"name":"MCI_MCIAVI_PLAY_FULLSCREEN","features":[81]},{"name":"MCI_MCIAVI_PLAY_WINDOW","features":[81]},{"name":"MCI_MODE_NOT_READY","features":[81]},{"name":"MCI_MODE_OPEN","features":[81]},{"name":"MCI_MODE_PAUSE","features":[81]},{"name":"MCI_MODE_PLAY","features":[81]},{"name":"MCI_MODE_RECORD","features":[81]},{"name":"MCI_MODE_SEEK","features":[81]},{"name":"MCI_MODE_STOP","features":[81]},{"name":"MCI_MONITOR","features":[81]},{"name":"MCI_NOTIFY","features":[81]},{"name":"MCI_NOTIFY_ABORTED","features":[81]},{"name":"MCI_NOTIFY_FAILURE","features":[81]},{"name":"MCI_NOTIFY_SUCCESSFUL","features":[81]},{"name":"MCI_NOTIFY_SUPERSEDED","features":[81]},{"name":"MCI_OFF","features":[81]},{"name":"MCI_OFF_S","features":[81]},{"name":"MCI_ON","features":[81]},{"name":"MCI_ON_S","features":[81]},{"name":"MCI_OPEN","features":[81]},{"name":"MCI_OPEN_ALIAS","features":[81]},{"name":"MCI_OPEN_DRIVER","features":[81]},{"name":"MCI_OPEN_DRIVER_PARMS","features":[81]},{"name":"MCI_OPEN_ELEMENT","features":[81]},{"name":"MCI_OPEN_ELEMENT_ID","features":[81]},{"name":"MCI_OPEN_PARMSA","features":[81]},{"name":"MCI_OPEN_PARMSW","features":[81]},{"name":"MCI_OPEN_SHAREABLE","features":[81]},{"name":"MCI_OPEN_TYPE","features":[81]},{"name":"MCI_OPEN_TYPE_ID","features":[81]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_FREEZE","features":[81]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_STRETCH","features":[81]},{"name":"MCI_OVLY_GETDEVCAPS_MAX_WINDOWS","features":[81]},{"name":"MCI_OVLY_INFO_TEXT","features":[81]},{"name":"MCI_OVLY_LOAD_PARMSA","features":[3,81]},{"name":"MCI_OVLY_LOAD_PARMSW","features":[3,81]},{"name":"MCI_OVLY_OPEN_PARENT","features":[81]},{"name":"MCI_OVLY_OPEN_PARMSA","features":[3,81]},{"name":"MCI_OVLY_OPEN_PARMSW","features":[3,81]},{"name":"MCI_OVLY_OPEN_WS","features":[81]},{"name":"MCI_OVLY_PUT_DESTINATION","features":[81]},{"name":"MCI_OVLY_PUT_FRAME","features":[81]},{"name":"MCI_OVLY_PUT_SOURCE","features":[81]},{"name":"MCI_OVLY_PUT_VIDEO","features":[81]},{"name":"MCI_OVLY_RECT","features":[81]},{"name":"MCI_OVLY_RECT_PARMS","features":[3,81]},{"name":"MCI_OVLY_SAVE_PARMSA","features":[3,81]},{"name":"MCI_OVLY_SAVE_PARMSW","features":[3,81]},{"name":"MCI_OVLY_STATUS_HWND","features":[81]},{"name":"MCI_OVLY_STATUS_STRETCH","features":[81]},{"name":"MCI_OVLY_WHERE_DESTINATION","features":[81]},{"name":"MCI_OVLY_WHERE_FRAME","features":[81]},{"name":"MCI_OVLY_WHERE_SOURCE","features":[81]},{"name":"MCI_OVLY_WHERE_VIDEO","features":[81]},{"name":"MCI_OVLY_WINDOW_DEFAULT","features":[81]},{"name":"MCI_OVLY_WINDOW_DISABLE_STRETCH","features":[81]},{"name":"MCI_OVLY_WINDOW_ENABLE_STRETCH","features":[81]},{"name":"MCI_OVLY_WINDOW_HWND","features":[81]},{"name":"MCI_OVLY_WINDOW_PARMSA","features":[3,81]},{"name":"MCI_OVLY_WINDOW_PARMSW","features":[3,81]},{"name":"MCI_OVLY_WINDOW_STATE","features":[81]},{"name":"MCI_OVLY_WINDOW_TEXT","features":[81]},{"name":"MCI_PASTE","features":[81]},{"name":"MCI_PAUSE","features":[81]},{"name":"MCI_PLAY","features":[81]},{"name":"MCI_PLAY_PARMS","features":[81]},{"name":"MCI_PUT","features":[81]},{"name":"MCI_QUALITY","features":[81]},{"name":"MCI_QUALITY_ALG","features":[81]},{"name":"MCI_QUALITY_DIALOG","features":[81]},{"name":"MCI_QUALITY_HANDLE","features":[81]},{"name":"MCI_QUALITY_ITEM","features":[81]},{"name":"MCI_QUALITY_ITEM_AUDIO","features":[81]},{"name":"MCI_QUALITY_ITEM_STILL","features":[81]},{"name":"MCI_QUALITY_ITEM_VIDEO","features":[81]},{"name":"MCI_QUALITY_NAME","features":[81]},{"name":"MCI_REALIZE","features":[81]},{"name":"MCI_RECORD","features":[81]},{"name":"MCI_RECORD_INSERT","features":[81]},{"name":"MCI_RECORD_OVERWRITE","features":[81]},{"name":"MCI_RECORD_PARMS","features":[81]},{"name":"MCI_RECT","features":[81]},{"name":"MCI_RESERVE","features":[81]},{"name":"MCI_RESOURCE_DRIVER","features":[81]},{"name":"MCI_RESOURCE_RETURNED","features":[81]},{"name":"MCI_RESTORE","features":[81]},{"name":"MCI_RESUME","features":[81]},{"name":"MCI_RETURN","features":[81]},{"name":"MCI_SAVE","features":[81]},{"name":"MCI_SAVE_FILE","features":[81]},{"name":"MCI_SAVE_PARMSA","features":[81]},{"name":"MCI_SAVE_PARMSW","features":[81]},{"name":"MCI_SECTION","features":[81]},{"name":"MCI_SEEK","features":[81]},{"name":"MCI_SEEK_PARMS","features":[81]},{"name":"MCI_SEEK_TO_END","features":[81]},{"name":"MCI_SEEK_TO_START","features":[81]},{"name":"MCI_SEQ_FILE","features":[81]},{"name":"MCI_SEQ_FILE_S","features":[81]},{"name":"MCI_SEQ_FORMAT_SONGPTR","features":[81]},{"name":"MCI_SEQ_FORMAT_SONGPTR_S","features":[81]},{"name":"MCI_SEQ_MAPPER","features":[81]},{"name":"MCI_SEQ_MAPPER_S","features":[81]},{"name":"MCI_SEQ_MIDI","features":[81]},{"name":"MCI_SEQ_MIDI_S","features":[81]},{"name":"MCI_SEQ_NONE","features":[81]},{"name":"MCI_SEQ_NONE_S","features":[81]},{"name":"MCI_SEQ_SET_MASTER","features":[81]},{"name":"MCI_SEQ_SET_OFFSET","features":[81]},{"name":"MCI_SEQ_SET_PARMS","features":[81]},{"name":"MCI_SEQ_SET_PORT","features":[81]},{"name":"MCI_SEQ_SET_SLAVE","features":[81]},{"name":"MCI_SEQ_SET_TEMPO","features":[81]},{"name":"MCI_SEQ_SMPTE","features":[81]},{"name":"MCI_SEQ_SMPTE_S","features":[81]},{"name":"MCI_SEQ_STATUS_COPYRIGHT","features":[81]},{"name":"MCI_SEQ_STATUS_DIVTYPE","features":[81]},{"name":"MCI_SEQ_STATUS_MASTER","features":[81]},{"name":"MCI_SEQ_STATUS_NAME","features":[81]},{"name":"MCI_SEQ_STATUS_OFFSET","features":[81]},{"name":"MCI_SEQ_STATUS_PORT","features":[81]},{"name":"MCI_SEQ_STATUS_SLAVE","features":[81]},{"name":"MCI_SEQ_STATUS_TEMPO","features":[81]},{"name":"MCI_SET","features":[81]},{"name":"MCI_SETAUDIO","features":[81]},{"name":"MCI_SETVIDEO","features":[81]},{"name":"MCI_SET_AUDIO","features":[81]},{"name":"MCI_SET_AUDIO_ALL","features":[81]},{"name":"MCI_SET_AUDIO_LEFT","features":[81]},{"name":"MCI_SET_AUDIO_RIGHT","features":[81]},{"name":"MCI_SET_DOOR_CLOSED","features":[81]},{"name":"MCI_SET_DOOR_OPEN","features":[81]},{"name":"MCI_SET_OFF","features":[81]},{"name":"MCI_SET_ON","features":[81]},{"name":"MCI_SET_PARMS","features":[81]},{"name":"MCI_SET_TIME_FORMAT","features":[81]},{"name":"MCI_SET_VIDEO","features":[81]},{"name":"MCI_SIGNAL","features":[81]},{"name":"MCI_SPIN","features":[81]},{"name":"MCI_STATUS","features":[81]},{"name":"MCI_STATUS_CURRENT_TRACK","features":[81]},{"name":"MCI_STATUS_ITEM","features":[81]},{"name":"MCI_STATUS_LENGTH","features":[81]},{"name":"MCI_STATUS_MEDIA_PRESENT","features":[81]},{"name":"MCI_STATUS_MODE","features":[81]},{"name":"MCI_STATUS_NUMBER_OF_TRACKS","features":[81]},{"name":"MCI_STATUS_PARMS","features":[81]},{"name":"MCI_STATUS_POSITION","features":[81]},{"name":"MCI_STATUS_READY","features":[81]},{"name":"MCI_STATUS_START","features":[81]},{"name":"MCI_STATUS_TIME_FORMAT","features":[81]},{"name":"MCI_STEP","features":[81]},{"name":"MCI_STOP","features":[81]},{"name":"MCI_STRING","features":[81]},{"name":"MCI_SYSINFO","features":[81]},{"name":"MCI_SYSINFO_INSTALLNAME","features":[81]},{"name":"MCI_SYSINFO_NAME","features":[81]},{"name":"MCI_SYSINFO_OPEN","features":[81]},{"name":"MCI_SYSINFO_PARMSA","features":[81]},{"name":"MCI_SYSINFO_PARMSW","features":[81]},{"name":"MCI_SYSINFO_QUANTITY","features":[81]},{"name":"MCI_TEST","features":[81]},{"name":"MCI_TO","features":[81]},{"name":"MCI_TRACK","features":[81]},{"name":"MCI_TRUE","features":[81]},{"name":"MCI_UNDO","features":[81]},{"name":"MCI_UNFREEZE","features":[81]},{"name":"MCI_UPDATE","features":[81]},{"name":"MCI_USER_MESSAGES","features":[81]},{"name":"MCI_VD_ESCAPE_PARMSA","features":[81]},{"name":"MCI_VD_ESCAPE_PARMSW","features":[81]},{"name":"MCI_VD_ESCAPE_STRING","features":[81]},{"name":"MCI_VD_FORMAT_TRACK","features":[81]},{"name":"MCI_VD_FORMAT_TRACK_S","features":[81]},{"name":"MCI_VD_GETDEVCAPS_CAN_REVERSE","features":[81]},{"name":"MCI_VD_GETDEVCAPS_CAV","features":[81]},{"name":"MCI_VD_GETDEVCAPS_CLV","features":[81]},{"name":"MCI_VD_GETDEVCAPS_FAST_RATE","features":[81]},{"name":"MCI_VD_GETDEVCAPS_NORMAL_RATE","features":[81]},{"name":"MCI_VD_GETDEVCAPS_SLOW_RATE","features":[81]},{"name":"MCI_VD_MEDIA_CAV","features":[81]},{"name":"MCI_VD_MEDIA_CLV","features":[81]},{"name":"MCI_VD_MEDIA_OTHER","features":[81]},{"name":"MCI_VD_MODE_PARK","features":[81]},{"name":"MCI_VD_PLAY_FAST","features":[81]},{"name":"MCI_VD_PLAY_PARMS","features":[81]},{"name":"MCI_VD_PLAY_REVERSE","features":[81]},{"name":"MCI_VD_PLAY_SCAN","features":[81]},{"name":"MCI_VD_PLAY_SLOW","features":[81]},{"name":"MCI_VD_PLAY_SPEED","features":[81]},{"name":"MCI_VD_SEEK_REVERSE","features":[81]},{"name":"MCI_VD_SPIN_DOWN","features":[81]},{"name":"MCI_VD_SPIN_UP","features":[81]},{"name":"MCI_VD_STATUS_DISC_SIZE","features":[81]},{"name":"MCI_VD_STATUS_FORWARD","features":[81]},{"name":"MCI_VD_STATUS_MEDIA_TYPE","features":[81]},{"name":"MCI_VD_STATUS_SIDE","features":[81]},{"name":"MCI_VD_STATUS_SPEED","features":[81]},{"name":"MCI_VD_STEP_FRAMES","features":[81]},{"name":"MCI_VD_STEP_PARMS","features":[81]},{"name":"MCI_VD_STEP_REVERSE","features":[81]},{"name":"MCI_WAIT","features":[81]},{"name":"MCI_WAVE_DELETE_PARMS","features":[81]},{"name":"MCI_WAVE_GETDEVCAPS_INPUTS","features":[81]},{"name":"MCI_WAVE_GETDEVCAPS_OUTPUTS","features":[81]},{"name":"MCI_WAVE_INPUT","features":[81]},{"name":"MCI_WAVE_MAPPER","features":[81]},{"name":"MCI_WAVE_OPEN_BUFFER","features":[81]},{"name":"MCI_WAVE_OPEN_PARMSA","features":[81]},{"name":"MCI_WAVE_OPEN_PARMSW","features":[81]},{"name":"MCI_WAVE_OUTPUT","features":[81]},{"name":"MCI_WAVE_PCM","features":[81]},{"name":"MCI_WAVE_SET_ANYINPUT","features":[81]},{"name":"MCI_WAVE_SET_ANYOUTPUT","features":[81]},{"name":"MCI_WAVE_SET_AVGBYTESPERSEC","features":[81]},{"name":"MCI_WAVE_SET_BITSPERSAMPLE","features":[81]},{"name":"MCI_WAVE_SET_BLOCKALIGN","features":[81]},{"name":"MCI_WAVE_SET_CHANNELS","features":[81]},{"name":"MCI_WAVE_SET_FORMATTAG","features":[81]},{"name":"MCI_WAVE_SET_PARMS","features":[81]},{"name":"MCI_WAVE_SET_SAMPLESPERSEC","features":[81]},{"name":"MCI_WAVE_STATUS_AVGBYTESPERSEC","features":[81]},{"name":"MCI_WAVE_STATUS_BITSPERSAMPLE","features":[81]},{"name":"MCI_WAVE_STATUS_BLOCKALIGN","features":[81]},{"name":"MCI_WAVE_STATUS_CHANNELS","features":[81]},{"name":"MCI_WAVE_STATUS_FORMATTAG","features":[81]},{"name":"MCI_WAVE_STATUS_LEVEL","features":[81]},{"name":"MCI_WAVE_STATUS_SAMPLESPERSEC","features":[81]},{"name":"MCI_WHERE","features":[81]},{"name":"MCI_WINDOW","features":[81]},{"name":"MCMADM_E_REGKEY_NOT_FOUND","features":[81]},{"name":"MCMADM_I_NO_EVENTS","features":[81]},{"name":"MEDIASPACEADPCMWAVEFORMAT","features":[82,81]},{"name":"MIDIMAPPER_S","features":[81]},{"name":"MIDIOPENSTRMID","features":[81]},{"name":"MIDI_IO_COOKED","features":[81]},{"name":"MIDI_IO_PACKED","features":[81]},{"name":"MIDM_ADDBUFFER","features":[81]},{"name":"MIDM_CLOSE","features":[81]},{"name":"MIDM_GETDEVCAPS","features":[81]},{"name":"MIDM_GETNUMDEVS","features":[81]},{"name":"MIDM_INIT","features":[81]},{"name":"MIDM_INIT_EX","features":[81]},{"name":"MIDM_MAPPER","features":[81]},{"name":"MIDM_OPEN","features":[81]},{"name":"MIDM_PREPARE","features":[81]},{"name":"MIDM_RESET","features":[81]},{"name":"MIDM_START","features":[81]},{"name":"MIDM_STOP","features":[81]},{"name":"MIDM_UNPREPARE","features":[81]},{"name":"MIDM_USER","features":[81]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_MTS","features":[81]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_ONOFF","features":[81]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_SYNTHSELECT","features":[81]},{"name":"MIXEROPENDESC","features":[82,81]},{"name":"MMCKINFO","features":[81]},{"name":"MMIOERR_ACCESSDENIED","features":[81]},{"name":"MMIOERR_BASE","features":[81]},{"name":"MMIOERR_CANNOTCLOSE","features":[81]},{"name":"MMIOERR_CANNOTEXPAND","features":[81]},{"name":"MMIOERR_CANNOTOPEN","features":[81]},{"name":"MMIOERR_CANNOTREAD","features":[81]},{"name":"MMIOERR_CANNOTSEEK","features":[81]},{"name":"MMIOERR_CANNOTWRITE","features":[81]},{"name":"MMIOERR_CHUNKNOTFOUND","features":[81]},{"name":"MMIOERR_FILENOTFOUND","features":[81]},{"name":"MMIOERR_INVALIDFILE","features":[81]},{"name":"MMIOERR_NETWORKERROR","features":[81]},{"name":"MMIOERR_OUTOFMEMORY","features":[81]},{"name":"MMIOERR_PATHNOTFOUND","features":[81]},{"name":"MMIOERR_SHARINGVIOLATION","features":[81]},{"name":"MMIOERR_TOOMANYOPENFILES","features":[81]},{"name":"MMIOERR_UNBUFFERED","features":[81]},{"name":"MMIOINFO","features":[3,81]},{"name":"MMIOM_CLOSE","features":[81]},{"name":"MMIOM_OPEN","features":[81]},{"name":"MMIOM_READ","features":[81]},{"name":"MMIOM_RENAME","features":[81]},{"name":"MMIOM_SEEK","features":[81]},{"name":"MMIOM_USER","features":[81]},{"name":"MMIOM_WRITE","features":[81]},{"name":"MMIOM_WRITEFLUSH","features":[81]},{"name":"MMIO_ALLOCBUF","features":[81]},{"name":"MMIO_COMPAT","features":[81]},{"name":"MMIO_CREATE","features":[81]},{"name":"MMIO_CREATELIST","features":[81]},{"name":"MMIO_CREATERIFF","features":[81]},{"name":"MMIO_DEFAULTBUFFER","features":[81]},{"name":"MMIO_DELETE","features":[81]},{"name":"MMIO_DENYNONE","features":[81]},{"name":"MMIO_DENYREAD","features":[81]},{"name":"MMIO_DENYWRITE","features":[81]},{"name":"MMIO_DIRTY","features":[81]},{"name":"MMIO_EMPTYBUF","features":[81]},{"name":"MMIO_EXCLUSIVE","features":[81]},{"name":"MMIO_EXIST","features":[81]},{"name":"MMIO_FHOPEN","features":[81]},{"name":"MMIO_FINDCHUNK","features":[81]},{"name":"MMIO_FINDLIST","features":[81]},{"name":"MMIO_FINDPROC","features":[81]},{"name":"MMIO_FINDRIFF","features":[81]},{"name":"MMIO_GETTEMP","features":[81]},{"name":"MMIO_GLOBALPROC","features":[81]},{"name":"MMIO_INSTALLPROC","features":[81]},{"name":"MMIO_PARSE","features":[81]},{"name":"MMIO_READ","features":[81]},{"name":"MMIO_READWRITE","features":[81]},{"name":"MMIO_REMOVEPROC","features":[81]},{"name":"MMIO_RWMODE","features":[81]},{"name":"MMIO_SHAREMODE","features":[81]},{"name":"MMIO_TOUPPER","features":[81]},{"name":"MMIO_UNICODEPROC","features":[81]},{"name":"MMIO_WRITE","features":[81]},{"name":"MM_3COM","features":[81]},{"name":"MM_3COM_CB_MIXER","features":[81]},{"name":"MM_3COM_CB_WAVEIN","features":[81]},{"name":"MM_3COM_CB_WAVEOUT","features":[81]},{"name":"MM_3DFX","features":[81]},{"name":"MM_AARDVARK","features":[81]},{"name":"MM_AARDVARK_STUDIO12_WAVEIN","features":[81]},{"name":"MM_AARDVARK_STUDIO12_WAVEOUT","features":[81]},{"name":"MM_AARDVARK_STUDIO88_WAVEIN","features":[81]},{"name":"MM_AARDVARK_STUDIO88_WAVEOUT","features":[81]},{"name":"MM_ACTIVEVOICE","features":[81]},{"name":"MM_ACTIVEVOICE_ACM_VOXADPCM","features":[81]},{"name":"MM_ACULAB","features":[81]},{"name":"MM_ADDX","features":[81]},{"name":"MM_ADDX_PCTV_AUX_CD","features":[81]},{"name":"MM_ADDX_PCTV_AUX_LINE","features":[81]},{"name":"MM_ADDX_PCTV_DIGITALMIX","features":[81]},{"name":"MM_ADDX_PCTV_MIXER","features":[81]},{"name":"MM_ADDX_PCTV_WAVEIN","features":[81]},{"name":"MM_ADDX_PCTV_WAVEOUT","features":[81]},{"name":"MM_ADLACC","features":[81]},{"name":"MM_ADMOS","features":[81]},{"name":"MM_ADMOS_FM_SYNTH","features":[81]},{"name":"MM_ADMOS_QS3AMIDIIN","features":[81]},{"name":"MM_ADMOS_QS3AMIDIOUT","features":[81]},{"name":"MM_ADMOS_QS3AWAVEIN","features":[81]},{"name":"MM_ADMOS_QS3AWAVEOUT","features":[81]},{"name":"MM_AHEAD","features":[81]},{"name":"MM_AHEAD_GENERIC","features":[81]},{"name":"MM_AHEAD_MULTISOUND","features":[81]},{"name":"MM_AHEAD_PROAUDIO","features":[81]},{"name":"MM_AHEAD_SOUNDBLASTER","features":[81]},{"name":"MM_ALARIS","features":[81]},{"name":"MM_ALDIGITAL","features":[81]},{"name":"MM_ALESIS","features":[81]},{"name":"MM_ALGOVISION","features":[81]},{"name":"MM_ALGOVISION_VB80AUX","features":[81]},{"name":"MM_ALGOVISION_VB80AUX2","features":[81]},{"name":"MM_ALGOVISION_VB80MIXER","features":[81]},{"name":"MM_ALGOVISION_VB80WAVEIN","features":[81]},{"name":"MM_ALGOVISION_VB80WAVEOUT","features":[81]},{"name":"MM_AMD","features":[81]},{"name":"MM_AMD_INTERWAVE_AUX1","features":[81]},{"name":"MM_AMD_INTERWAVE_AUX2","features":[81]},{"name":"MM_AMD_INTERWAVE_AUX_CD","features":[81]},{"name":"MM_AMD_INTERWAVE_AUX_MIC","features":[81]},{"name":"MM_AMD_INTERWAVE_EX_CD","features":[81]},{"name":"MM_AMD_INTERWAVE_EX_TELEPHONY","features":[81]},{"name":"MM_AMD_INTERWAVE_JOYSTICK","features":[81]},{"name":"MM_AMD_INTERWAVE_MIDIIN","features":[81]},{"name":"MM_AMD_INTERWAVE_MIDIOUT","features":[81]},{"name":"MM_AMD_INTERWAVE_MIXER1","features":[81]},{"name":"MM_AMD_INTERWAVE_MIXER2","features":[81]},{"name":"MM_AMD_INTERWAVE_MONO_IN","features":[81]},{"name":"MM_AMD_INTERWAVE_MONO_OUT","features":[81]},{"name":"MM_AMD_INTERWAVE_STEREO_ENHANCED","features":[81]},{"name":"MM_AMD_INTERWAVE_SYNTH","features":[81]},{"name":"MM_AMD_INTERWAVE_WAVEIN","features":[81]},{"name":"MM_AMD_INTERWAVE_WAVEOUT","features":[81]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_BASE","features":[81]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_TREBLE","features":[81]},{"name":"MM_ANALOGDEVICES","features":[81]},{"name":"MM_ANTEX","features":[81]},{"name":"MM_ANTEX_AUDIOPORT22_FEEDTHRU","features":[81]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEIN","features":[81]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEOUT","features":[81]},{"name":"MM_ANTEX_SX12_WAVEIN","features":[81]},{"name":"MM_ANTEX_SX12_WAVEOUT","features":[81]},{"name":"MM_ANTEX_SX15_WAVEIN","features":[81]},{"name":"MM_ANTEX_SX15_WAVEOUT","features":[81]},{"name":"MM_ANTEX_VP625_WAVEIN","features":[81]},{"name":"MM_ANTEX_VP625_WAVEOUT","features":[81]},{"name":"MM_APICOM","features":[81]},{"name":"MM_APPLE","features":[81]},{"name":"MM_APPS","features":[81]},{"name":"MM_APT","features":[81]},{"name":"MM_APT_ACE100CD","features":[81]},{"name":"MM_ARRAY","features":[81]},{"name":"MM_ARTISOFT","features":[81]},{"name":"MM_ARTISOFT_SBWAVEIN","features":[81]},{"name":"MM_ARTISOFT_SBWAVEOUT","features":[81]},{"name":"MM_AST","features":[81]},{"name":"MM_AST_MODEMWAVE_WAVEIN","features":[81]},{"name":"MM_AST_MODEMWAVE_WAVEOUT","features":[81]},{"name":"MM_ATI","features":[81]},{"name":"MM_ATT","features":[81]},{"name":"MM_ATT_G729A","features":[81]},{"name":"MM_ATT_MICROELECTRONICS","features":[81]},{"name":"MM_AU8820_AUX","features":[81]},{"name":"MM_AU8820_MIDIIN","features":[81]},{"name":"MM_AU8820_MIDIOUT","features":[81]},{"name":"MM_AU8820_MIXER","features":[81]},{"name":"MM_AU8820_SYNTH","features":[81]},{"name":"MM_AU8820_WAVEIN","features":[81]},{"name":"MM_AU8820_WAVEOUT","features":[81]},{"name":"MM_AU8830_AUX","features":[81]},{"name":"MM_AU8830_MIDIIN","features":[81]},{"name":"MM_AU8830_MIDIOUT","features":[81]},{"name":"MM_AU8830_MIXER","features":[81]},{"name":"MM_AU8830_SYNTH","features":[81]},{"name":"MM_AU8830_WAVEIN","features":[81]},{"name":"MM_AU8830_WAVEOUT","features":[81]},{"name":"MM_AUDIOFILE","features":[81]},{"name":"MM_AUDIOPT","features":[81]},{"name":"MM_AUDIOSCIENCE","features":[81]},{"name":"MM_AURAVISION","features":[81]},{"name":"MM_AUREAL","features":[81]},{"name":"MM_AUREAL_AU8820","features":[81]},{"name":"MM_AUREAL_AU8830","features":[81]},{"name":"MM_AZTECH","features":[81]},{"name":"MM_AZTECH_AUX","features":[81]},{"name":"MM_AZTECH_AUX_CD","features":[81]},{"name":"MM_AZTECH_AUX_LINE","features":[81]},{"name":"MM_AZTECH_AUX_MIC","features":[81]},{"name":"MM_AZTECH_DSP16_FMSYNTH","features":[81]},{"name":"MM_AZTECH_DSP16_WAVEIN","features":[81]},{"name":"MM_AZTECH_DSP16_WAVEOUT","features":[81]},{"name":"MM_AZTECH_DSP16_WAVESYNTH","features":[81]},{"name":"MM_AZTECH_FMSYNTH","features":[81]},{"name":"MM_AZTECH_MIDIIN","features":[81]},{"name":"MM_AZTECH_MIDIOUT","features":[81]},{"name":"MM_AZTECH_MIXER","features":[81]},{"name":"MM_AZTECH_NOVA16_MIXER","features":[81]},{"name":"MM_AZTECH_NOVA16_WAVEIN","features":[81]},{"name":"MM_AZTECH_NOVA16_WAVEOUT","features":[81]},{"name":"MM_AZTECH_PRO16_FMSYNTH","features":[81]},{"name":"MM_AZTECH_PRO16_WAVEIN","features":[81]},{"name":"MM_AZTECH_PRO16_WAVEOUT","features":[81]},{"name":"MM_AZTECH_WASH16_MIXER","features":[81]},{"name":"MM_AZTECH_WASH16_WAVEIN","features":[81]},{"name":"MM_AZTECH_WASH16_WAVEOUT","features":[81]},{"name":"MM_AZTECH_WAVEIN","features":[81]},{"name":"MM_AZTECH_WAVEOUT","features":[81]},{"name":"MM_BCB","features":[81]},{"name":"MM_BCB_NETBOARD_10","features":[81]},{"name":"MM_BCB_TT75_10","features":[81]},{"name":"MM_BECUBED","features":[81]},{"name":"MM_BERCOS","features":[81]},{"name":"MM_BERCOS_MIXER","features":[81]},{"name":"MM_BERCOS_WAVEIN","features":[81]},{"name":"MM_BERCOS_WAVEOUT","features":[81]},{"name":"MM_BERKOM","features":[81]},{"name":"MM_BINTEC","features":[81]},{"name":"MM_BINTEC_TAPI_WAVE","features":[81]},{"name":"MM_BROOKTREE","features":[81]},{"name":"MM_BTV_AUX_CD","features":[81]},{"name":"MM_BTV_AUX_LINE","features":[81]},{"name":"MM_BTV_AUX_MIC","features":[81]},{"name":"MM_BTV_DIGITALIN","features":[81]},{"name":"MM_BTV_DIGITALOUT","features":[81]},{"name":"MM_BTV_MIDIIN","features":[81]},{"name":"MM_BTV_MIDIOUT","features":[81]},{"name":"MM_BTV_MIDISYNTH","features":[81]},{"name":"MM_BTV_MIDIWAVESTREAM","features":[81]},{"name":"MM_BTV_MIXER","features":[81]},{"name":"MM_BTV_WAVEIN","features":[81]},{"name":"MM_BTV_WAVEOUT","features":[81]},{"name":"MM_CANAM","features":[81]},{"name":"MM_CANAM_CBXWAVEIN","features":[81]},{"name":"MM_CANAM_CBXWAVEOUT","features":[81]},{"name":"MM_CANOPUS","features":[81]},{"name":"MM_CANOPUS_ACM_DVREX","features":[81]},{"name":"MM_CASIO","features":[81]},{"name":"MM_CASIO_LSG_MIDIOUT","features":[81]},{"name":"MM_CASIO_WP150_MIDIIN","features":[81]},{"name":"MM_CASIO_WP150_MIDIOUT","features":[81]},{"name":"MM_CAT","features":[81]},{"name":"MM_CAT_WAVEOUT","features":[81]},{"name":"MM_CDPC_AUX","features":[81]},{"name":"MM_CDPC_MIDIIN","features":[81]},{"name":"MM_CDPC_MIDIOUT","features":[81]},{"name":"MM_CDPC_MIXER","features":[81]},{"name":"MM_CDPC_SYNTH","features":[81]},{"name":"MM_CDPC_WAVEIN","features":[81]},{"name":"MM_CDPC_WAVEOUT","features":[81]},{"name":"MM_CHROMATIC","features":[81]},{"name":"MM_CHROMATIC_M1","features":[81]},{"name":"MM_CHROMATIC_M1_AUX","features":[81]},{"name":"MM_CHROMATIC_M1_AUX_CD","features":[81]},{"name":"MM_CHROMATIC_M1_FMSYNTH","features":[81]},{"name":"MM_CHROMATIC_M1_MIDIIN","features":[81]},{"name":"MM_CHROMATIC_M1_MIDIOUT","features":[81]},{"name":"MM_CHROMATIC_M1_MIXER","features":[81]},{"name":"MM_CHROMATIC_M1_MPEGWAVEIN","features":[81]},{"name":"MM_CHROMATIC_M1_MPEGWAVEOUT","features":[81]},{"name":"MM_CHROMATIC_M1_WAVEIN","features":[81]},{"name":"MM_CHROMATIC_M1_WAVEOUT","features":[81]},{"name":"MM_CHROMATIC_M1_WTSYNTH","features":[81]},{"name":"MM_CHROMATIC_M2","features":[81]},{"name":"MM_CHROMATIC_M2_AUX","features":[81]},{"name":"MM_CHROMATIC_M2_AUX_CD","features":[81]},{"name":"MM_CHROMATIC_M2_FMSYNTH","features":[81]},{"name":"MM_CHROMATIC_M2_MIDIIN","features":[81]},{"name":"MM_CHROMATIC_M2_MIDIOUT","features":[81]},{"name":"MM_CHROMATIC_M2_MIXER","features":[81]},{"name":"MM_CHROMATIC_M2_MPEGWAVEIN","features":[81]},{"name":"MM_CHROMATIC_M2_MPEGWAVEOUT","features":[81]},{"name":"MM_CHROMATIC_M2_WAVEIN","features":[81]},{"name":"MM_CHROMATIC_M2_WAVEOUT","features":[81]},{"name":"MM_CHROMATIC_M2_WTSYNTH","features":[81]},{"name":"MM_CIRRUSLOGIC","features":[81]},{"name":"MM_COLORGRAPH","features":[81]},{"name":"MM_COMPAQ","features":[81]},{"name":"MM_COMPAQ_BB_WAVEAUX","features":[81]},{"name":"MM_COMPAQ_BB_WAVEIN","features":[81]},{"name":"MM_COMPAQ_BB_WAVEOUT","features":[81]},{"name":"MM_COMPUSIC","features":[81]},{"name":"MM_COMPUTER_FRIENDS","features":[81]},{"name":"MM_CONCEPTS","features":[81]},{"name":"MM_CONNECTIX","features":[81]},{"name":"MM_CONNECTIX_VIDEC_CODEC","features":[81]},{"name":"MM_CONTROLRES","features":[81]},{"name":"MM_COREDYNAMICS","features":[81]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_VGA","features":[81]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_IN","features":[81]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_OUT","features":[81]},{"name":"MM_COREDYNAMICS_DYNAMIXHR","features":[81]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_IN","features":[81]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_OUT","features":[81]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_IN","features":[81]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_OUT","features":[81]},{"name":"MM_COREDYNAMICS_DYNASONIX_SYNTH","features":[81]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_IN","features":[81]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_OUT","features":[81]},{"name":"MM_CREATIVE","features":[81]},{"name":"MM_CREATIVE_AUX_CD","features":[81]},{"name":"MM_CREATIVE_AUX_LINE","features":[81]},{"name":"MM_CREATIVE_AUX_MASTER","features":[81]},{"name":"MM_CREATIVE_AUX_MIC","features":[81]},{"name":"MM_CREATIVE_AUX_MIDI","features":[81]},{"name":"MM_CREATIVE_AUX_PCSPK","features":[81]},{"name":"MM_CREATIVE_AUX_WAVE","features":[81]},{"name":"MM_CREATIVE_FMSYNTH_MONO","features":[81]},{"name":"MM_CREATIVE_FMSYNTH_STEREO","features":[81]},{"name":"MM_CREATIVE_MIDIIN","features":[81]},{"name":"MM_CREATIVE_MIDIOUT","features":[81]},{"name":"MM_CREATIVE_MIDI_AWE32","features":[81]},{"name":"MM_CREATIVE_PHNBLST_WAVEIN","features":[81]},{"name":"MM_CREATIVE_PHNBLST_WAVEOUT","features":[81]},{"name":"MM_CREATIVE_SB15_WAVEIN","features":[81]},{"name":"MM_CREATIVE_SB15_WAVEOUT","features":[81]},{"name":"MM_CREATIVE_SB16_MIXER","features":[81]},{"name":"MM_CREATIVE_SB20_WAVEIN","features":[81]},{"name":"MM_CREATIVE_SB20_WAVEOUT","features":[81]},{"name":"MM_CREATIVE_SBP16_WAVEIN","features":[81]},{"name":"MM_CREATIVE_SBP16_WAVEOUT","features":[81]},{"name":"MM_CREATIVE_SBPRO_MIXER","features":[81]},{"name":"MM_CREATIVE_SBPRO_WAVEIN","features":[81]},{"name":"MM_CREATIVE_SBPRO_WAVEOUT","features":[81]},{"name":"MM_CRYSTAL","features":[81]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_AUX1","features":[81]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_LOOP","features":[81]},{"name":"MM_CRYSTAL_CS4232_MIDIIN","features":[81]},{"name":"MM_CRYSTAL_CS4232_MIDIOUT","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX1","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX2","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_LINE","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MASTER","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MONO","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEIN","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEMIXER","features":[81]},{"name":"MM_CRYSTAL_CS4232_WAVEOUT","features":[81]},{"name":"MM_CRYSTAL_NET","features":[81]},{"name":"MM_CRYSTAL_SOUND_FUSION_JOYSTICK","features":[81]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIIN","features":[81]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIOUT","features":[81]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIXER","features":[81]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEIN","features":[81]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEOUT","features":[81]},{"name":"MM_CS","features":[81]},{"name":"MM_CYRIX","features":[81]},{"name":"MM_CYRIX_XAAUX","features":[81]},{"name":"MM_CYRIX_XAMIDIIN","features":[81]},{"name":"MM_CYRIX_XAMIDIOUT","features":[81]},{"name":"MM_CYRIX_XAMIXER","features":[81]},{"name":"MM_CYRIX_XASYNTH","features":[81]},{"name":"MM_CYRIX_XAWAVEIN","features":[81]},{"name":"MM_CYRIX_XAWAVEOUT","features":[81]},{"name":"MM_DATAFUSION","features":[81]},{"name":"MM_DATARAN","features":[81]},{"name":"MM_DDD","features":[81]},{"name":"MM_DDD_MIDILINK_MIDIIN","features":[81]},{"name":"MM_DDD_MIDILINK_MIDIOUT","features":[81]},{"name":"MM_DF_ACM_G726","features":[81]},{"name":"MM_DF_ACM_GSM610","features":[81]},{"name":"MM_DIACOUSTICS","features":[81]},{"name":"MM_DIACOUSTICS_DRUM_ACTION","features":[81]},{"name":"MM_DIALOGIC","features":[81]},{"name":"MM_DIAMONDMM","features":[81]},{"name":"MM_DICTAPHONE","features":[81]},{"name":"MM_DICTAPHONE_G726","features":[81]},{"name":"MM_DIGIGRAM","features":[81]},{"name":"MM_DIGITAL","features":[81]},{"name":"MM_DIGITAL_ACM_G723","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS_CDLX","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS_CPRO","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS_CTDIF","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS_DOC","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS_TC","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS_V8","features":[81]},{"name":"MM_DIGITAL_AUDIO_LABS_VP","features":[81]},{"name":"MM_DIGITAL_AV320_WAVEIN","features":[81]},{"name":"MM_DIGITAL_AV320_WAVEOUT","features":[81]},{"name":"MM_DIGITAL_ICM_H261","features":[81]},{"name":"MM_DIGITAL_ICM_H263","features":[81]},{"name":"MM_DIMD_AUX_LINE","features":[81]},{"name":"MM_DIMD_DIRSOUND","features":[81]},{"name":"MM_DIMD_MIDIIN","features":[81]},{"name":"MM_DIMD_MIDIOUT","features":[81]},{"name":"MM_DIMD_MIXER","features":[81]},{"name":"MM_DIMD_PLATFORM","features":[81]},{"name":"MM_DIMD_VIRTJOY","features":[81]},{"name":"MM_DIMD_VIRTMPU","features":[81]},{"name":"MM_DIMD_VIRTSB","features":[81]},{"name":"MM_DIMD_WAVEIN","features":[81]},{"name":"MM_DIMD_WAVEOUT","features":[81]},{"name":"MM_DIMD_WSS_AUX","features":[81]},{"name":"MM_DIMD_WSS_MIXER","features":[81]},{"name":"MM_DIMD_WSS_SYNTH","features":[81]},{"name":"MM_DIMD_WSS_WAVEIN","features":[81]},{"name":"MM_DIMD_WSS_WAVEOUT","features":[81]},{"name":"MM_DOLBY","features":[81]},{"name":"MM_DPSINC","features":[81]},{"name":"MM_DSP_GROUP","features":[81]},{"name":"MM_DSP_GROUP_TRUESPEECH","features":[81]},{"name":"MM_DSP_SOLUTIONS","features":[81]},{"name":"MM_DSP_SOLUTIONS_AUX","features":[81]},{"name":"MM_DSP_SOLUTIONS_SYNTH","features":[81]},{"name":"MM_DSP_SOLUTIONS_WAVEIN","features":[81]},{"name":"MM_DSP_SOLUTIONS_WAVEOUT","features":[81]},{"name":"MM_DTS","features":[81]},{"name":"MM_DTS_DS","features":[81]},{"name":"MM_DUCK","features":[81]},{"name":"MM_DVISION","features":[81]},{"name":"MM_ECHO","features":[81]},{"name":"MM_ECHO_AUX","features":[81]},{"name":"MM_ECHO_MIDIIN","features":[81]},{"name":"MM_ECHO_MIDIOUT","features":[81]},{"name":"MM_ECHO_SYNTH","features":[81]},{"name":"MM_ECHO_WAVEIN","features":[81]},{"name":"MM_ECHO_WAVEOUT","features":[81]},{"name":"MM_ECS","features":[81]},{"name":"MM_ECS_AADF_MIDI_IN","features":[81]},{"name":"MM_ECS_AADF_MIDI_OUT","features":[81]},{"name":"MM_ECS_AADF_WAVE2MIDI_IN","features":[81]},{"name":"MM_EES","features":[81]},{"name":"MM_EES_PCMIDI14","features":[81]},{"name":"MM_EES_PCMIDI14_IN","features":[81]},{"name":"MM_EES_PCMIDI14_OUT1","features":[81]},{"name":"MM_EES_PCMIDI14_OUT2","features":[81]},{"name":"MM_EES_PCMIDI14_OUT3","features":[81]},{"name":"MM_EES_PCMIDI14_OUT4","features":[81]},{"name":"MM_EMAGIC","features":[81]},{"name":"MM_EMAGIC_UNITOR8","features":[81]},{"name":"MM_EMU","features":[81]},{"name":"MM_EMU_APSMIDIIN","features":[81]},{"name":"MM_EMU_APSMIDIOUT","features":[81]},{"name":"MM_EMU_APSSYNTH","features":[81]},{"name":"MM_EMU_APSWAVEIN","features":[81]},{"name":"MM_EMU_APSWAVEOUT","features":[81]},{"name":"MM_ENET","features":[81]},{"name":"MM_ENET_T2000_HANDSETIN","features":[81]},{"name":"MM_ENET_T2000_HANDSETOUT","features":[81]},{"name":"MM_ENET_T2000_LINEIN","features":[81]},{"name":"MM_ENET_T2000_LINEOUT","features":[81]},{"name":"MM_ENSONIQ","features":[81]},{"name":"MM_ENSONIQ_SOUNDSCAPE","features":[81]},{"name":"MM_EPSON","features":[81]},{"name":"MM_EPS_FMSND","features":[81]},{"name":"MM_ESS","features":[81]},{"name":"MM_ESS_AMAUX","features":[81]},{"name":"MM_ESS_AMMIDIIN","features":[81]},{"name":"MM_ESS_AMMIDIOUT","features":[81]},{"name":"MM_ESS_AMSYNTH","features":[81]},{"name":"MM_ESS_AMWAVEIN","features":[81]},{"name":"MM_ESS_AMWAVEOUT","features":[81]},{"name":"MM_ESS_AUX_CD","features":[81]},{"name":"MM_ESS_ES1488_MIXER","features":[81]},{"name":"MM_ESS_ES1488_WAVEIN","features":[81]},{"name":"MM_ESS_ES1488_WAVEOUT","features":[81]},{"name":"MM_ESS_ES1688_MIXER","features":[81]},{"name":"MM_ESS_ES1688_WAVEIN","features":[81]},{"name":"MM_ESS_ES1688_WAVEOUT","features":[81]},{"name":"MM_ESS_ES1788_MIXER","features":[81]},{"name":"MM_ESS_ES1788_WAVEIN","features":[81]},{"name":"MM_ESS_ES1788_WAVEOUT","features":[81]},{"name":"MM_ESS_ES1868_MIXER","features":[81]},{"name":"MM_ESS_ES1868_WAVEIN","features":[81]},{"name":"MM_ESS_ES1868_WAVEOUT","features":[81]},{"name":"MM_ESS_ES1878_MIXER","features":[81]},{"name":"MM_ESS_ES1878_WAVEIN","features":[81]},{"name":"MM_ESS_ES1878_WAVEOUT","features":[81]},{"name":"MM_ESS_ES1888_MIXER","features":[81]},{"name":"MM_ESS_ES1888_WAVEIN","features":[81]},{"name":"MM_ESS_ES1888_WAVEOUT","features":[81]},{"name":"MM_ESS_ES488_MIXER","features":[81]},{"name":"MM_ESS_ES488_WAVEIN","features":[81]},{"name":"MM_ESS_ES488_WAVEOUT","features":[81]},{"name":"MM_ESS_ES688_MIXER","features":[81]},{"name":"MM_ESS_ES688_WAVEIN","features":[81]},{"name":"MM_ESS_ES688_WAVEOUT","features":[81]},{"name":"MM_ESS_MIXER","features":[81]},{"name":"MM_ESS_MPU401_MIDIIN","features":[81]},{"name":"MM_ESS_MPU401_MIDIOUT","features":[81]},{"name":"MM_ETEK","features":[81]},{"name":"MM_ETEK_KWIKMIDI_MIDIIN","features":[81]},{"name":"MM_ETEK_KWIKMIDI_MIDIOUT","features":[81]},{"name":"MM_EUPHONICS","features":[81]},{"name":"MM_EUPHONICS_AUX_CD","features":[81]},{"name":"MM_EUPHONICS_AUX_LINE","features":[81]},{"name":"MM_EUPHONICS_AUX_MASTER","features":[81]},{"name":"MM_EUPHONICS_AUX_MIC","features":[81]},{"name":"MM_EUPHONICS_AUX_MIDI","features":[81]},{"name":"MM_EUPHONICS_AUX_WAVE","features":[81]},{"name":"MM_EUPHONICS_EUSYNTH","features":[81]},{"name":"MM_EUPHONICS_FMSYNTH_MONO","features":[81]},{"name":"MM_EUPHONICS_FMSYNTH_STEREO","features":[81]},{"name":"MM_EUPHONICS_MIDIIN","features":[81]},{"name":"MM_EUPHONICS_MIDIOUT","features":[81]},{"name":"MM_EUPHONICS_MIXER","features":[81]},{"name":"MM_EUPHONICS_WAVEIN","features":[81]},{"name":"MM_EUPHONICS_WAVEOUT","features":[81]},{"name":"MM_EVEREX","features":[81]},{"name":"MM_EVEREX_CARRIER","features":[81]},{"name":"MM_EXAN","features":[81]},{"name":"MM_FAITH","features":[81]},{"name":"MM_FAST","features":[81]},{"name":"MM_FHGIIS_MPEGLAYER3","features":[81]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCED","features":[81]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCEDPLUS","features":[81]},{"name":"MM_FHGIIS_MPEGLAYER3_BASIC","features":[81]},{"name":"MM_FHGIIS_MPEGLAYER3_DECODE","features":[81]},{"name":"MM_FHGIIS_MPEGLAYER3_LITE","features":[81]},{"name":"MM_FHGIIS_MPEGLAYER3_PROFESSIONAL","features":[81]},{"name":"MM_FLEXION","features":[81]},{"name":"MM_FLEXION_X300_WAVEIN","features":[81]},{"name":"MM_FLEXION_X300_WAVEOUT","features":[81]},{"name":"MM_FORTEMEDIA","features":[81]},{"name":"MM_FORTEMEDIA_AUX","features":[81]},{"name":"MM_FORTEMEDIA_FMSYNC","features":[81]},{"name":"MM_FORTEMEDIA_MIXER","features":[81]},{"name":"MM_FORTEMEDIA_WAVEIN","features":[81]},{"name":"MM_FORTEMEDIA_WAVEOUT","features":[81]},{"name":"MM_FRAUNHOFER_IIS","features":[81]},{"name":"MM_FRONTIER","features":[81]},{"name":"MM_FRONTIER_WAVECENTER_MIDIIN","features":[81]},{"name":"MM_FRONTIER_WAVECENTER_MIDIOUT","features":[81]},{"name":"MM_FRONTIER_WAVECENTER_WAVEIN","features":[81]},{"name":"MM_FRONTIER_WAVECENTER_WAVEOUT","features":[81]},{"name":"MM_FTR","features":[81]},{"name":"MM_FTR_ACM","features":[81]},{"name":"MM_FTR_ENCODER_WAVEIN","features":[81]},{"name":"MM_FUJITSU","features":[81]},{"name":"MM_GADGETLABS","features":[81]},{"name":"MM_GADGETLABS_WAVE42_WAVEIN","features":[81]},{"name":"MM_GADGETLABS_WAVE42_WAVEOUT","features":[81]},{"name":"MM_GADGETLABS_WAVE44_WAVEIN","features":[81]},{"name":"MM_GADGETLABS_WAVE44_WAVEOUT","features":[81]},{"name":"MM_GADGETLABS_WAVE4_MIDIIN","features":[81]},{"name":"MM_GADGETLABS_WAVE4_MIDIOUT","features":[81]},{"name":"MM_GRANDE","features":[81]},{"name":"MM_GRAVIS","features":[81]},{"name":"MM_GUILLEMOT","features":[81]},{"name":"MM_GULBRANSEN","features":[81]},{"name":"MM_HAFTMANN","features":[81]},{"name":"MM_HAFTMANN_LPTDAC2","features":[81]},{"name":"MM_HEADSPACE","features":[81]},{"name":"MM_HEADSPACE_HAEMIXER","features":[81]},{"name":"MM_HEADSPACE_HAESYNTH","features":[81]},{"name":"MM_HEADSPACE_HAEWAVEIN","features":[81]},{"name":"MM_HEADSPACE_HAEWAVEOUT","features":[81]},{"name":"MM_HEWLETT_PACKARD","features":[81]},{"name":"MM_HEWLETT_PACKARD_CU_CODEC","features":[81]},{"name":"MM_HORIZONS","features":[81]},{"name":"MM_HP","features":[81]},{"name":"MM_HP_WAVEIN","features":[81]},{"name":"MM_HP_WAVEOUT","features":[81]},{"name":"MM_HYPERACTIVE","features":[81]},{"name":"MM_IBM","features":[81]},{"name":"MM_IBM_MWAVE_AUX","features":[81]},{"name":"MM_IBM_MWAVE_MIDIIN","features":[81]},{"name":"MM_IBM_MWAVE_MIDIOUT","features":[81]},{"name":"MM_IBM_MWAVE_MIXER","features":[81]},{"name":"MM_IBM_MWAVE_WAVEIN","features":[81]},{"name":"MM_IBM_MWAVE_WAVEOUT","features":[81]},{"name":"MM_IBM_PCMCIA_AUX","features":[81]},{"name":"MM_IBM_PCMCIA_MIDIIN","features":[81]},{"name":"MM_IBM_PCMCIA_MIDIOUT","features":[81]},{"name":"MM_IBM_PCMCIA_SYNTH","features":[81]},{"name":"MM_IBM_PCMCIA_WAVEIN","features":[81]},{"name":"MM_IBM_PCMCIA_WAVEOUT","features":[81]},{"name":"MM_IBM_THINKPAD200","features":[81]},{"name":"MM_IBM_WC_MIDIOUT","features":[81]},{"name":"MM_IBM_WC_MIXEROUT","features":[81]},{"name":"MM_IBM_WC_WAVEOUT","features":[81]},{"name":"MM_ICCC","features":[81]},{"name":"MM_ICCC_UNA3_AUX","features":[81]},{"name":"MM_ICCC_UNA3_MIXER","features":[81]},{"name":"MM_ICCC_UNA3_WAVEIN","features":[81]},{"name":"MM_ICCC_UNA3_WAVEOUT","features":[81]},{"name":"MM_ICE","features":[81]},{"name":"MM_ICE_AUX","features":[81]},{"name":"MM_ICE_MIDIIN1","features":[81]},{"name":"MM_ICE_MIDIIN2","features":[81]},{"name":"MM_ICE_MIDIOUT1","features":[81]},{"name":"MM_ICE_MIDIOUT2","features":[81]},{"name":"MM_ICE_MIXER","features":[81]},{"name":"MM_ICE_MTWAVEIN","features":[81]},{"name":"MM_ICE_MTWAVEOUT","features":[81]},{"name":"MM_ICE_SYNTH","features":[81]},{"name":"MM_ICE_WAVEIN","features":[81]},{"name":"MM_ICE_WAVEOUT","features":[81]},{"name":"MM_ICL_PS","features":[81]},{"name":"MM_ICOM_AUX","features":[81]},{"name":"MM_ICOM_LINE","features":[81]},{"name":"MM_ICOM_MIXER","features":[81]},{"name":"MM_ICOM_WAVEIN","features":[81]},{"name":"MM_ICOM_WAVEOUT","features":[81]},{"name":"MM_ICS","features":[81]},{"name":"MM_ICS_2115_LITE_MIDIOUT","features":[81]},{"name":"MM_ICS_2120_LITE_MIDIOUT","features":[81]},{"name":"MM_ICS_WAVEDECK_AUX","features":[81]},{"name":"MM_ICS_WAVEDECK_MIXER","features":[81]},{"name":"MM_ICS_WAVEDECK_SYNTH","features":[81]},{"name":"MM_ICS_WAVEDECK_WAVEIN","features":[81]},{"name":"MM_ICS_WAVEDECK_WAVEOUT","features":[81]},{"name":"MM_ICS_WAVEDEC_SB_AUX","features":[81]},{"name":"MM_ICS_WAVEDEC_SB_FM_MIDIOUT","features":[81]},{"name":"MM_ICS_WAVEDEC_SB_MIXER","features":[81]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIIN","features":[81]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIOUT","features":[81]},{"name":"MM_ICS_WAVEDEC_SB_WAVEIN","features":[81]},{"name":"MM_ICS_WAVEDEC_SB_WAVEOUT","features":[81]},{"name":"MM_INSOFT","features":[81]},{"name":"MM_INTEL","features":[81]},{"name":"MM_INTELOPD_AUX","features":[81]},{"name":"MM_INTELOPD_WAVEIN","features":[81]},{"name":"MM_INTELOPD_WAVEOUT","features":[81]},{"name":"MM_INTEL_NSPMODEMLINEIN","features":[81]},{"name":"MM_INTEL_NSPMODEMLINEOUT","features":[81]},{"name":"MM_INTERACTIVE","features":[81]},{"name":"MM_INTERACTIVE_WAVEIN","features":[81]},{"name":"MM_INTERACTIVE_WAVEOUT","features":[81]},{"name":"MM_INTERNET","features":[81]},{"name":"MM_INTERNET_SSW_MIDIIN","features":[81]},{"name":"MM_INTERNET_SSW_MIDIOUT","features":[81]},{"name":"MM_INTERNET_SSW_WAVEIN","features":[81]},{"name":"MM_INTERNET_SSW_WAVEOUT","features":[81]},{"name":"MM_INVISION","features":[81]},{"name":"MM_IODD","features":[81]},{"name":"MM_IOMAGIC","features":[81]},{"name":"MM_IOMAGIC_TEMPO_AUXOUT","features":[81]},{"name":"MM_IOMAGIC_TEMPO_MIDIOUT","features":[81]},{"name":"MM_IOMAGIC_TEMPO_MXDOUT","features":[81]},{"name":"MM_IOMAGIC_TEMPO_SYNTH","features":[81]},{"name":"MM_IOMAGIC_TEMPO_WAVEIN","features":[81]},{"name":"MM_IOMAGIC_TEMPO_WAVEOUT","features":[81]},{"name":"MM_IPI","features":[81]},{"name":"MM_IPI_ACM_HSX","features":[81]},{"name":"MM_IPI_ACM_RPELP","features":[81]},{"name":"MM_IPI_AT_MIXER","features":[81]},{"name":"MM_IPI_AT_WAVEIN","features":[81]},{"name":"MM_IPI_AT_WAVEOUT","features":[81]},{"name":"MM_IPI_WF_ASSS","features":[81]},{"name":"MM_ISOLUTION","features":[81]},{"name":"MM_ISOLUTION_PASCAL","features":[81]},{"name":"MM_ITERATEDSYS","features":[81]},{"name":"MM_ITERATEDSYS_FUFCODEC","features":[81]},{"name":"MM_I_LINK","features":[81]},{"name":"MM_I_LINK_VOICE_CODER","features":[81]},{"name":"MM_KAY_ELEMETRICS","features":[81]},{"name":"MM_KAY_ELEMETRICS_CSL","features":[81]},{"name":"MM_KAY_ELEMETRICS_CSL_4CHANNEL","features":[81]},{"name":"MM_KAY_ELEMETRICS_CSL_DAT","features":[81]},{"name":"MM_KORG","features":[81]},{"name":"MM_KORG_1212IO_MSWAVEIN","features":[81]},{"name":"MM_KORG_1212IO_MSWAVEOUT","features":[81]},{"name":"MM_KORG_PCIF_MIDIIN","features":[81]},{"name":"MM_KORG_PCIF_MIDIOUT","features":[81]},{"name":"MM_LERNOUT_ANDHAUSPIE_LHCODECACM","features":[81]},{"name":"MM_LERNOUT_AND_HAUSPIE","features":[81]},{"name":"MM_LEXICON","features":[81]},{"name":"MM_LEXICON_STUDIO_WAVE_IN","features":[81]},{"name":"MM_LEXICON_STUDIO_WAVE_OUT","features":[81]},{"name":"MM_LOGITECH","features":[81]},{"name":"MM_LUCENT","features":[81]},{"name":"MM_LUCENT_ACM_G723","features":[81]},{"name":"MM_LUCID","features":[81]},{"name":"MM_LUCID_PCI24WAVEIN","features":[81]},{"name":"MM_LUCID_PCI24WAVEOUT","features":[81]},{"name":"MM_LUMINOSITI","features":[81]},{"name":"MM_LUMINOSITI_SCWAVEIN","features":[81]},{"name":"MM_LUMINOSITI_SCWAVEMIX","features":[81]},{"name":"MM_LUMINOSITI_SCWAVEOUT","features":[81]},{"name":"MM_LYNX","features":[81]},{"name":"MM_LYRRUS","features":[81]},{"name":"MM_LYRRUS_BRIDGE_GUITAR","features":[81]},{"name":"MM_MALDEN","features":[81]},{"name":"MM_MARIAN","features":[81]},{"name":"MM_MARIAN_ARC44WAVEIN","features":[81]},{"name":"MM_MARIAN_ARC44WAVEOUT","features":[81]},{"name":"MM_MARIAN_ARC88WAVEIN","features":[81]},{"name":"MM_MARIAN_ARC88WAVEOUT","features":[81]},{"name":"MM_MARIAN_PRODIF24WAVEIN","features":[81]},{"name":"MM_MARIAN_PRODIF24WAVEOUT","features":[81]},{"name":"MM_MATROX_DIV","features":[81]},{"name":"MM_MATSUSHITA","features":[81]},{"name":"MM_MATSUSHITA_AUX","features":[81]},{"name":"MM_MATSUSHITA_FMSYNTH_STEREO","features":[81]},{"name":"MM_MATSUSHITA_MIXER","features":[81]},{"name":"MM_MATSUSHITA_WAVEIN","features":[81]},{"name":"MM_MATSUSHITA_WAVEOUT","features":[81]},{"name":"MM_MEDIASONIC","features":[81]},{"name":"MM_MEDIASONIC_ACM_G723","features":[81]},{"name":"MM_MEDIASONIC_ICOM","features":[81]},{"name":"MM_MEDIATRIX","features":[81]},{"name":"MM_MEDIAVISION","features":[81]},{"name":"MM_MEDIAVISION_CDPC","features":[81]},{"name":"MM_MEDIAVISION_OPUS1208","features":[81]},{"name":"MM_MEDIAVISION_OPUS1216","features":[81]},{"name":"MM_MEDIAVISION_PROAUDIO","features":[81]},{"name":"MM_MEDIAVISION_PROAUDIO_16","features":[81]},{"name":"MM_MEDIAVISION_PROAUDIO_PLUS","features":[81]},{"name":"MM_MEDIAVISION_PROSTUDIO_16","features":[81]},{"name":"MM_MEDIAVISION_THUNDER","features":[81]},{"name":"MM_MEDIAVISION_TPORT","features":[81]},{"name":"MM_MELABS","features":[81]},{"name":"MM_MELABS_MIDI2GO","features":[81]},{"name":"MM_MERGING_MPEGL3","features":[81]},{"name":"MM_MERGING_TECHNOLOGIES","features":[81]},{"name":"MM_METHEUS","features":[81]},{"name":"MM_METHEUS_ZIPPER","features":[81]},{"name":"MM_MICRONAS","features":[81]},{"name":"MM_MICRONAS_CLP833","features":[81]},{"name":"MM_MICRONAS_SC4","features":[81]},{"name":"MM_MINDMAKER","features":[81]},{"name":"MM_MINDMAKER_GC_MIXER","features":[81]},{"name":"MM_MINDMAKER_GC_WAVEIN","features":[81]},{"name":"MM_MINDMAKER_GC_WAVEOUT","features":[81]},{"name":"MM_MIRO","features":[81]},{"name":"MM_MIRO_DC30_MIX","features":[81]},{"name":"MM_MIRO_DC30_WAVEIN","features":[81]},{"name":"MM_MIRO_DC30_WAVEOUT","features":[81]},{"name":"MM_MIRO_MOVIEPRO","features":[81]},{"name":"MM_MIRO_VIDEOD1","features":[81]},{"name":"MM_MIRO_VIDEODC1TV","features":[81]},{"name":"MM_MIRO_VIDEOTD","features":[81]},{"name":"MM_MITEL","features":[81]},{"name":"MM_MITEL_MEDIAPATH_WAVEIN","features":[81]},{"name":"MM_MITEL_MEDIAPATH_WAVEOUT","features":[81]},{"name":"MM_MITEL_MPA_HANDSET_WAVEIN","features":[81]},{"name":"MM_MITEL_MPA_HANDSET_WAVEOUT","features":[81]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEIN","features":[81]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEOUT","features":[81]},{"name":"MM_MITEL_MPA_LINE1_WAVEIN","features":[81]},{"name":"MM_MITEL_MPA_LINE1_WAVEOUT","features":[81]},{"name":"MM_MITEL_MPA_LINE2_WAVEIN","features":[81]},{"name":"MM_MITEL_MPA_LINE2_WAVEOUT","features":[81]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEIN","features":[81]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEOUT","features":[81]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEIN","features":[81]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEOUT","features":[81]},{"name":"MM_MITEL_TALKTO_LINE_WAVEIN","features":[81]},{"name":"MM_MITEL_TALKTO_LINE_WAVEOUT","features":[81]},{"name":"MM_MMOTION_WAVEAUX","features":[81]},{"name":"MM_MMOTION_WAVEIN","features":[81]},{"name":"MM_MMOTION_WAVEOUT","features":[81]},{"name":"MM_MOSCOM","features":[81]},{"name":"MM_MOSCOM_VPC2400_IN","features":[81]},{"name":"MM_MOSCOM_VPC2400_OUT","features":[81]},{"name":"MM_MOTIONPIXELS","features":[81]},{"name":"MM_MOTIONPIXELS_MVI2","features":[81]},{"name":"MM_MOTOROLA","features":[81]},{"name":"MM_MOTU","features":[81]},{"name":"MM_MOTU_DTX_MIDI_IN_A","features":[81]},{"name":"MM_MOTU_DTX_MIDI_IN_B","features":[81]},{"name":"MM_MOTU_DTX_MIDI_IN_SYNC","features":[81]},{"name":"MM_MOTU_DTX_MIDI_OUT_A","features":[81]},{"name":"MM_MOTU_DTX_MIDI_OUT_B","features":[81]},{"name":"MM_MOTU_FLYER_MIDI_IN_A","features":[81]},{"name":"MM_MOTU_FLYER_MIDI_IN_B","features":[81]},{"name":"MM_MOTU_FLYER_MIDI_IN_SYNC","features":[81]},{"name":"MM_MOTU_FLYER_MIDI_OUT_A","features":[81]},{"name":"MM_MOTU_FLYER_MIDI_OUT_B","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_7","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_8","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_ADAT","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIIN_SYNC","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_7","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_8","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ADAT","features":[81]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ALL","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_7","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_8","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_7","features":[81]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_8","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_7","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_8","features":[81]},{"name":"MM_MOTU_MTPII_MIDIIN_SYNC","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_7","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_8","features":[81]},{"name":"MM_MOTU_MTPII_MIDIOUT_ALL","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_7","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_8","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_7","features":[81]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_8","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_7","features":[81]},{"name":"MM_MOTU_MTP_MIDIIN_8","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_7","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_8","features":[81]},{"name":"MM_MOTU_MTP_MIDIOUT_ALL","features":[81]},{"name":"MM_MOTU_MXN_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MXN_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MXN_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MXN_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MXN_MIDIIN_SYNC","features":[81]},{"name":"MM_MOTU_MXN_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MXN_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MXN_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MXN_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MXN_MIDIOUT_ALL","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIIN_SYNC","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_ALL","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_7","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_8","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIIN_SYNC","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_7","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_8","features":[81]},{"name":"MM_MOTU_MXPXT_MIDIOUT_ALL","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_1","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_2","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_3","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_4","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_5","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_6","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_1","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_2","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_3","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_4","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_5","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_6","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_ALL","features":[81]},{"name":"MM_MOTU_MXP_MIDIIN_SYNC","features":[81]},{"name":"MM_MOTU_PKX_MIDI_IN_A","features":[81]},{"name":"MM_MOTU_PKX_MIDI_IN_B","features":[81]},{"name":"MM_MOTU_PKX_MIDI_IN_SYNC","features":[81]},{"name":"MM_MOTU_PKX_MIDI_OUT_A","features":[81]},{"name":"MM_MOTU_PKX_MIDI_OUT_B","features":[81]},{"name":"MM_MPTUS","features":[81]},{"name":"MM_MPTUS_SPWAVEOUT","features":[81]},{"name":"MM_MSFT_ACM_G711","features":[81]},{"name":"MM_MSFT_ACM_GSM610","features":[81]},{"name":"MM_MSFT_ACM_IMAADPCM","features":[81]},{"name":"MM_MSFT_ACM_MSADPCM","features":[81]},{"name":"MM_MSFT_ACM_MSAUDIO1","features":[81]},{"name":"MM_MSFT_ACM_MSFILTER","features":[81]},{"name":"MM_MSFT_ACM_MSG723","features":[81]},{"name":"MM_MSFT_ACM_MSNAUDIO","features":[81]},{"name":"MM_MSFT_ACM_MSRT24","features":[81]},{"name":"MM_MSFT_ACM_PCM","features":[81]},{"name":"MM_MSFT_ACM_WMAUDIO","features":[81]},{"name":"MM_MSFT_ACM_WMAUDIO2","features":[81]},{"name":"MM_MSFT_GENERIC_AUX_CD","features":[81]},{"name":"MM_MSFT_GENERIC_AUX_LINE","features":[81]},{"name":"MM_MSFT_GENERIC_AUX_MIC","features":[81]},{"name":"MM_MSFT_GENERIC_MIDIIN","features":[81]},{"name":"MM_MSFT_GENERIC_MIDIOUT","features":[81]},{"name":"MM_MSFT_GENERIC_MIDISYNTH","features":[81]},{"name":"MM_MSFT_GENERIC_WAVEIN","features":[81]},{"name":"MM_MSFT_GENERIC_WAVEOUT","features":[81]},{"name":"MM_MSFT_MSACM","features":[81]},{"name":"MM_MSFT_MSOPL_SYNTH","features":[81]},{"name":"MM_MSFT_SB16_AUX_CD","features":[81]},{"name":"MM_MSFT_SB16_AUX_LINE","features":[81]},{"name":"MM_MSFT_SB16_MIDIIN","features":[81]},{"name":"MM_MSFT_SB16_MIDIOUT","features":[81]},{"name":"MM_MSFT_SB16_MIXER","features":[81]},{"name":"MM_MSFT_SB16_SYNTH","features":[81]},{"name":"MM_MSFT_SB16_WAVEIN","features":[81]},{"name":"MM_MSFT_SB16_WAVEOUT","features":[81]},{"name":"MM_MSFT_SBPRO_AUX_CD","features":[81]},{"name":"MM_MSFT_SBPRO_AUX_LINE","features":[81]},{"name":"MM_MSFT_SBPRO_MIDIIN","features":[81]},{"name":"MM_MSFT_SBPRO_MIDIOUT","features":[81]},{"name":"MM_MSFT_SBPRO_MIXER","features":[81]},{"name":"MM_MSFT_SBPRO_SYNTH","features":[81]},{"name":"MM_MSFT_SBPRO_WAVEIN","features":[81]},{"name":"MM_MSFT_SBPRO_WAVEOUT","features":[81]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEIN","features":[81]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEOUT","features":[81]},{"name":"MM_MSFT_VMDMS_LINE_WAVEIN","features":[81]},{"name":"MM_MSFT_VMDMS_LINE_WAVEOUT","features":[81]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEIN","features":[81]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEOUT","features":[81]},{"name":"MM_MSFT_VMDMW_LINE_WAVEIN","features":[81]},{"name":"MM_MSFT_VMDMW_LINE_WAVEOUT","features":[81]},{"name":"MM_MSFT_VMDMW_MIXER","features":[81]},{"name":"MM_MSFT_VMDM_GAME_WAVEIN","features":[81]},{"name":"MM_MSFT_VMDM_GAME_WAVEOUT","features":[81]},{"name":"MM_MSFT_WDMAUDIO_AUX","features":[81]},{"name":"MM_MSFT_WDMAUDIO_MIDIIN","features":[81]},{"name":"MM_MSFT_WDMAUDIO_MIDIOUT","features":[81]},{"name":"MM_MSFT_WDMAUDIO_MIXER","features":[81]},{"name":"MM_MSFT_WDMAUDIO_WAVEIN","features":[81]},{"name":"MM_MSFT_WDMAUDIO_WAVEOUT","features":[81]},{"name":"MM_MSFT_WSS_AUX","features":[81]},{"name":"MM_MSFT_WSS_FMSYNTH_STEREO","features":[81]},{"name":"MM_MSFT_WSS_MIXER","features":[81]},{"name":"MM_MSFT_WSS_NT_AUX","features":[81]},{"name":"MM_MSFT_WSS_NT_FMSYNTH_STEREO","features":[81]},{"name":"MM_MSFT_WSS_NT_MIXER","features":[81]},{"name":"MM_MSFT_WSS_NT_WAVEIN","features":[81]},{"name":"MM_MSFT_WSS_NT_WAVEOUT","features":[81]},{"name":"MM_MSFT_WSS_OEM_AUX","features":[81]},{"name":"MM_MSFT_WSS_OEM_FMSYNTH_STEREO","features":[81]},{"name":"MM_MSFT_WSS_OEM_MIXER","features":[81]},{"name":"MM_MSFT_WSS_OEM_WAVEIN","features":[81]},{"name":"MM_MSFT_WSS_OEM_WAVEOUT","features":[81]},{"name":"MM_MSFT_WSS_WAVEIN","features":[81]},{"name":"MM_MSFT_WSS_WAVEOUT","features":[81]},{"name":"MM_MWM","features":[81]},{"name":"MM_NCR","features":[81]},{"name":"MM_NCR_BA_AUX","features":[81]},{"name":"MM_NCR_BA_MIXER","features":[81]},{"name":"MM_NCR_BA_SYNTH","features":[81]},{"name":"MM_NCR_BA_WAVEIN","features":[81]},{"name":"MM_NCR_BA_WAVEOUT","features":[81]},{"name":"MM_NEC","features":[81]},{"name":"MM_NEC_26_SYNTH","features":[81]},{"name":"MM_NEC_73_86_SYNTH","features":[81]},{"name":"MM_NEC_73_86_WAVEIN","features":[81]},{"name":"MM_NEC_73_86_WAVEOUT","features":[81]},{"name":"MM_NEC_JOYSTICK","features":[81]},{"name":"MM_NEC_MPU401_MIDIIN","features":[81]},{"name":"MM_NEC_MPU401_MIDIOUT","features":[81]},{"name":"MM_NEOMAGIC","features":[81]},{"name":"MM_NEOMAGIC_AUX","features":[81]},{"name":"MM_NEOMAGIC_MIDIIN","features":[81]},{"name":"MM_NEOMAGIC_MIDIOUT","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_AUX","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_FMSYNTH","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_GMSYNTH","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_MIDIIN","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_MIDIOUT","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_MIXER","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_WAVEIN","features":[81]},{"name":"MM_NEOMAGIC_MW3DX_WAVEOUT","features":[81]},{"name":"MM_NEOMAGIC_MWAVE_AUX","features":[81]},{"name":"MM_NEOMAGIC_MWAVE_MIDIIN","features":[81]},{"name":"MM_NEOMAGIC_MWAVE_MIDIOUT","features":[81]},{"name":"MM_NEOMAGIC_MWAVE_MIXER","features":[81]},{"name":"MM_NEOMAGIC_MWAVE_WAVEIN","features":[81]},{"name":"MM_NEOMAGIC_MWAVE_WAVEOUT","features":[81]},{"name":"MM_NEOMAGIC_SYNTH","features":[81]},{"name":"MM_NEOMAGIC_WAVEIN","features":[81]},{"name":"MM_NEOMAGIC_WAVEOUT","features":[81]},{"name":"MM_NETSCAPE","features":[81]},{"name":"MM_NETXL","features":[81]},{"name":"MM_NETXL_XLVIDEO","features":[81]},{"name":"MM_NEWMEDIA","features":[81]},{"name":"MM_NEWMEDIA_WAVJAMMER","features":[81]},{"name":"MM_NMP","features":[81]},{"name":"MM_NMP_ACM_AMR","features":[81]},{"name":"MM_NMP_CCP_WAVEIN","features":[81]},{"name":"MM_NMP_CCP_WAVEOUT","features":[81]},{"name":"MM_NMS","features":[81]},{"name":"MM_NOGATECH","features":[81]},{"name":"MM_NORRIS","features":[81]},{"name":"MM_NORRIS_VOICELINK","features":[81]},{"name":"MM_NORTEL_MPXAC_WAVEIN","features":[81]},{"name":"MM_NORTEL_MPXAC_WAVEOUT","features":[81]},{"name":"MM_NORTHERN_TELECOM","features":[81]},{"name":"MM_NVIDIA","features":[81]},{"name":"MM_NVIDIA_AUX","features":[81]},{"name":"MM_NVIDIA_GAMEPORT","features":[81]},{"name":"MM_NVIDIA_MIDIIN","features":[81]},{"name":"MM_NVIDIA_MIDIOUT","features":[81]},{"name":"MM_NVIDIA_MIXER","features":[81]},{"name":"MM_NVIDIA_WAVEIN","features":[81]},{"name":"MM_NVIDIA_WAVEOUT","features":[81]},{"name":"MM_OKI","features":[81]},{"name":"MM_OKSORI","features":[81]},{"name":"MM_OKSORI_BASE","features":[81]},{"name":"MM_OKSORI_EXT_MIC1","features":[81]},{"name":"MM_OKSORI_EXT_MIC2","features":[81]},{"name":"MM_OKSORI_FM_OPL4","features":[81]},{"name":"MM_OKSORI_MIDIIN","features":[81]},{"name":"MM_OKSORI_MIDIOUT","features":[81]},{"name":"MM_OKSORI_MIX_AUX1","features":[81]},{"name":"MM_OKSORI_MIX_CD","features":[81]},{"name":"MM_OKSORI_MIX_ECHO","features":[81]},{"name":"MM_OKSORI_MIX_FM","features":[81]},{"name":"MM_OKSORI_MIX_LINE","features":[81]},{"name":"MM_OKSORI_MIX_LINE1","features":[81]},{"name":"MM_OKSORI_MIX_MASTER","features":[81]},{"name":"MM_OKSORI_MIX_MIC","features":[81]},{"name":"MM_OKSORI_MIX_WAVE","features":[81]},{"name":"MM_OKSORI_MPEG_CDVISION","features":[81]},{"name":"MM_OKSORI_OSR16_WAVEIN","features":[81]},{"name":"MM_OKSORI_OSR16_WAVEOUT","features":[81]},{"name":"MM_OKSORI_OSR8_WAVEIN","features":[81]},{"name":"MM_OKSORI_OSR8_WAVEOUT","features":[81]},{"name":"MM_OLIVETTI","features":[81]},{"name":"MM_OLIVETTI_ACM_ADPCM","features":[81]},{"name":"MM_OLIVETTI_ACM_CELP","features":[81]},{"name":"MM_OLIVETTI_ACM_GSM","features":[81]},{"name":"MM_OLIVETTI_ACM_OPR","features":[81]},{"name":"MM_OLIVETTI_ACM_SBC","features":[81]},{"name":"MM_OLIVETTI_AUX","features":[81]},{"name":"MM_OLIVETTI_JOYSTICK","features":[81]},{"name":"MM_OLIVETTI_MIDIIN","features":[81]},{"name":"MM_OLIVETTI_MIDIOUT","features":[81]},{"name":"MM_OLIVETTI_MIXER","features":[81]},{"name":"MM_OLIVETTI_SYNTH","features":[81]},{"name":"MM_OLIVETTI_WAVEIN","features":[81]},{"name":"MM_OLIVETTI_WAVEOUT","features":[81]},{"name":"MM_ONLIVE","features":[81]},{"name":"MM_ONLIVE_MPCODEC","features":[81]},{"name":"MM_OPCODE","features":[81]},{"name":"MM_OPTI","features":[81]},{"name":"MM_OPTI_M16_AUX","features":[81]},{"name":"MM_OPTI_M16_FMSYNTH_STEREO","features":[81]},{"name":"MM_OPTI_M16_MIDIIN","features":[81]},{"name":"MM_OPTI_M16_MIDIOUT","features":[81]},{"name":"MM_OPTI_M16_MIXER","features":[81]},{"name":"MM_OPTI_M16_WAVEIN","features":[81]},{"name":"MM_OPTI_M16_WAVEOUT","features":[81]},{"name":"MM_OPTI_M32_AUX","features":[81]},{"name":"MM_OPTI_M32_MIDIIN","features":[81]},{"name":"MM_OPTI_M32_MIDIOUT","features":[81]},{"name":"MM_OPTI_M32_MIXER","features":[81]},{"name":"MM_OPTI_M32_SYNTH_STEREO","features":[81]},{"name":"MM_OPTI_M32_WAVEIN","features":[81]},{"name":"MM_OPTI_M32_WAVEOUT","features":[81]},{"name":"MM_OPTI_P16_AUX","features":[81]},{"name":"MM_OPTI_P16_FMSYNTH_STEREO","features":[81]},{"name":"MM_OPTI_P16_MIDIIN","features":[81]},{"name":"MM_OPTI_P16_MIDIOUT","features":[81]},{"name":"MM_OPTI_P16_MIXER","features":[81]},{"name":"MM_OPTI_P16_WAVEIN","features":[81]},{"name":"MM_OPTI_P16_WAVEOUT","features":[81]},{"name":"MM_OPUS1208_AUX","features":[81]},{"name":"MM_OPUS1208_MIXER","features":[81]},{"name":"MM_OPUS1208_SYNTH","features":[81]},{"name":"MM_OPUS1208_WAVEIN","features":[81]},{"name":"MM_OPUS1208_WAVEOUT","features":[81]},{"name":"MM_OPUS1216_AUX","features":[81]},{"name":"MM_OPUS1216_MIDIIN","features":[81]},{"name":"MM_OPUS1216_MIDIOUT","features":[81]},{"name":"MM_OPUS1216_MIXER","features":[81]},{"name":"MM_OPUS1216_SYNTH","features":[81]},{"name":"MM_OPUS1216_WAVEIN","features":[81]},{"name":"MM_OPUS1216_WAVEOUT","features":[81]},{"name":"MM_OPUS401_MIDIIN","features":[81]},{"name":"MM_OPUS401_MIDIOUT","features":[81]},{"name":"MM_OSITECH","features":[81]},{"name":"MM_OSITECH_TRUMPCARD","features":[81]},{"name":"MM_OSPREY","features":[81]},{"name":"MM_OSPREY_1000WAVEIN","features":[81]},{"name":"MM_OSPREY_1000WAVEOUT","features":[81]},{"name":"MM_OTI","features":[81]},{"name":"MM_OTI_611MIDIN","features":[81]},{"name":"MM_OTI_611MIDIOUT","features":[81]},{"name":"MM_OTI_611MIXER","features":[81]},{"name":"MM_OTI_611WAVEIN","features":[81]},{"name":"MM_OTI_611WAVEOUT","features":[81]},{"name":"MM_PACIFICRESEARCH","features":[81]},{"name":"MM_PCSPEAKER_WAVEOUT","features":[81]},{"name":"MM_PHILIPS_ACM_LPCBB","features":[81]},{"name":"MM_PHILIPS_SPEECH_PROCESSING","features":[81]},{"name":"MM_PHONET","features":[81]},{"name":"MM_PHONET_PP_MIXER","features":[81]},{"name":"MM_PHONET_PP_WAVEIN","features":[81]},{"name":"MM_PHONET_PP_WAVEOUT","features":[81]},{"name":"MM_PICTURETEL","features":[81]},{"name":"MM_PID_UNMAPPED","features":[81]},{"name":"MM_PINNACLE","features":[81]},{"name":"MM_PRAGMATRAX","features":[81]},{"name":"MM_PRECEPT","features":[81]},{"name":"MM_PROAUD_16_AUX","features":[81]},{"name":"MM_PROAUD_16_MIDIIN","features":[81]},{"name":"MM_PROAUD_16_MIDIOUT","features":[81]},{"name":"MM_PROAUD_16_MIXER","features":[81]},{"name":"MM_PROAUD_16_SYNTH","features":[81]},{"name":"MM_PROAUD_16_WAVEIN","features":[81]},{"name":"MM_PROAUD_16_WAVEOUT","features":[81]},{"name":"MM_PROAUD_AUX","features":[81]},{"name":"MM_PROAUD_MIDIIN","features":[81]},{"name":"MM_PROAUD_MIDIOUT","features":[81]},{"name":"MM_PROAUD_MIXER","features":[81]},{"name":"MM_PROAUD_PLUS_AUX","features":[81]},{"name":"MM_PROAUD_PLUS_MIDIIN","features":[81]},{"name":"MM_PROAUD_PLUS_MIDIOUT","features":[81]},{"name":"MM_PROAUD_PLUS_MIXER","features":[81]},{"name":"MM_PROAUD_PLUS_SYNTH","features":[81]},{"name":"MM_PROAUD_PLUS_WAVEIN","features":[81]},{"name":"MM_PROAUD_PLUS_WAVEOUT","features":[81]},{"name":"MM_PROAUD_SYNTH","features":[81]},{"name":"MM_PROAUD_WAVEIN","features":[81]},{"name":"MM_PROAUD_WAVEOUT","features":[81]},{"name":"MM_QCIAR","features":[81]},{"name":"MM_QDESIGN","features":[81]},{"name":"MM_QDESIGN_ACM_MPEG","features":[81]},{"name":"MM_QDESIGN_ACM_QDESIGN_MUSIC","features":[81]},{"name":"MM_QTEAM","features":[81]},{"name":"MM_QUALCOMM","features":[81]},{"name":"MM_QUANTUM3D","features":[81]},{"name":"MM_QUARTERDECK","features":[81]},{"name":"MM_QUARTERDECK_LHWAVEIN","features":[81]},{"name":"MM_QUARTERDECK_LHWAVEOUT","features":[81]},{"name":"MM_QUICKAUDIO","features":[81]},{"name":"MM_QUICKAUDIO_MAXIMIDI","features":[81]},{"name":"MM_QUICKAUDIO_MINIMIDI","features":[81]},{"name":"MM_QUICKNET","features":[81]},{"name":"MM_QUICKNET_PJWAVEIN","features":[81]},{"name":"MM_QUICKNET_PJWAVEOUT","features":[81]},{"name":"MM_RADIUS","features":[81]},{"name":"MM_RHETOREX","features":[81]},{"name":"MM_RHETOREX_WAVEIN","features":[81]},{"name":"MM_RHETOREX_WAVEOUT","features":[81]},{"name":"MM_RICHMOND","features":[81]},{"name":"MM_ROCKWELL","features":[81]},{"name":"MM_ROLAND","features":[81]},{"name":"MM_ROLAND_MPU401_MIDIIN","features":[81]},{"name":"MM_ROLAND_MPU401_MIDIOUT","features":[81]},{"name":"MM_ROLAND_RAP10_MIDIIN","features":[81]},{"name":"MM_ROLAND_RAP10_MIDIOUT","features":[81]},{"name":"MM_ROLAND_RAP10_SYNTH","features":[81]},{"name":"MM_ROLAND_RAP10_WAVEIN","features":[81]},{"name":"MM_ROLAND_RAP10_WAVEOUT","features":[81]},{"name":"MM_ROLAND_SC7_MIDIIN","features":[81]},{"name":"MM_ROLAND_SC7_MIDIOUT","features":[81]},{"name":"MM_ROLAND_SCP_AUX","features":[81]},{"name":"MM_ROLAND_SCP_MIDIIN","features":[81]},{"name":"MM_ROLAND_SCP_MIDIOUT","features":[81]},{"name":"MM_ROLAND_SCP_MIXER","features":[81]},{"name":"MM_ROLAND_SCP_WAVEIN","features":[81]},{"name":"MM_ROLAND_SCP_WAVEOUT","features":[81]},{"name":"MM_ROLAND_SERIAL_MIDIIN","features":[81]},{"name":"MM_ROLAND_SERIAL_MIDIOUT","features":[81]},{"name":"MM_ROLAND_SMPU_MIDIINA","features":[81]},{"name":"MM_ROLAND_SMPU_MIDIINB","features":[81]},{"name":"MM_ROLAND_SMPU_MIDIOUTA","features":[81]},{"name":"MM_ROLAND_SMPU_MIDIOUTB","features":[81]},{"name":"MM_RZS","features":[81]},{"name":"MM_RZS_ACM_TUBGSM","features":[81]},{"name":"MM_S3","features":[81]},{"name":"MM_S3_AUX","features":[81]},{"name":"MM_S3_FMSYNTH","features":[81]},{"name":"MM_S3_MIDIIN","features":[81]},{"name":"MM_S3_MIDIOUT","features":[81]},{"name":"MM_S3_MIXER","features":[81]},{"name":"MM_S3_WAVEIN","features":[81]},{"name":"MM_S3_WAVEOUT","features":[81]},{"name":"MM_SANYO","features":[81]},{"name":"MM_SANYO_ACM_LD_ADPCM","features":[81]},{"name":"MM_SCALACS","features":[81]},{"name":"MM_SEERSYS","features":[81]},{"name":"MM_SEERSYS_REALITY","features":[81]},{"name":"MM_SEERSYS_SEERMIX","features":[81]},{"name":"MM_SEERSYS_SEERSYNTH","features":[81]},{"name":"MM_SEERSYS_SEERWAVE","features":[81]},{"name":"MM_SEERSYS_WAVESYNTH","features":[81]},{"name":"MM_SEERSYS_WAVESYNTH_WG","features":[81]},{"name":"MM_SELSIUS_SYSTEMS","features":[81]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEIN","features":[81]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEOUT","features":[81]},{"name":"MM_SGI","features":[81]},{"name":"MM_SGI_320_MIXER","features":[81]},{"name":"MM_SGI_320_WAVEIN","features":[81]},{"name":"MM_SGI_320_WAVEOUT","features":[81]},{"name":"MM_SGI_540_MIXER","features":[81]},{"name":"MM_SGI_540_WAVEIN","features":[81]},{"name":"MM_SGI_540_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO32_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO34_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_AESMONO1_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_AESMONO1_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_AESMONO2_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_AESMONO2_WAVEOUT","features":[81]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEIN","features":[81]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEOUT","features":[81]},{"name":"MM_SHARP","features":[81]},{"name":"MM_SHARP_MDC_AUX","features":[81]},{"name":"MM_SHARP_MDC_AUX_BASS","features":[81]},{"name":"MM_SHARP_MDC_AUX_CHR","features":[81]},{"name":"MM_SHARP_MDC_AUX_MASTER","features":[81]},{"name":"MM_SHARP_MDC_AUX_MIDI_VOL","features":[81]},{"name":"MM_SHARP_MDC_AUX_RVB","features":[81]},{"name":"MM_SHARP_MDC_AUX_TREBLE","features":[81]},{"name":"MM_SHARP_MDC_AUX_VOL","features":[81]},{"name":"MM_SHARP_MDC_AUX_WAVE_CHR","features":[81]},{"name":"MM_SHARP_MDC_AUX_WAVE_RVB","features":[81]},{"name":"MM_SHARP_MDC_AUX_WAVE_VOL","features":[81]},{"name":"MM_SHARP_MDC_MIDI_IN","features":[81]},{"name":"MM_SHARP_MDC_MIDI_OUT","features":[81]},{"name":"MM_SHARP_MDC_MIDI_SYNTH","features":[81]},{"name":"MM_SHARP_MDC_MIXER","features":[81]},{"name":"MM_SHARP_MDC_WAVE_IN","features":[81]},{"name":"MM_SHARP_MDC_WAVE_OUT","features":[81]},{"name":"MM_SICRESOURCE","features":[81]},{"name":"MM_SICRESOURCE_SSO3D","features":[81]},{"name":"MM_SICRESOURCE_SSOW3DI","features":[81]},{"name":"MM_SIEMENS_SBC","features":[81]},{"name":"MM_SIERRA","features":[81]},{"name":"MM_SIERRA_ARIA_AUX","features":[81]},{"name":"MM_SIERRA_ARIA_AUX2","features":[81]},{"name":"MM_SIERRA_ARIA_MIDIIN","features":[81]},{"name":"MM_SIERRA_ARIA_MIDIOUT","features":[81]},{"name":"MM_SIERRA_ARIA_SYNTH","features":[81]},{"name":"MM_SIERRA_ARIA_WAVEIN","features":[81]},{"name":"MM_SIERRA_ARIA_WAVEOUT","features":[81]},{"name":"MM_SIERRA_QUARTET_AUX_CD","features":[81]},{"name":"MM_SIERRA_QUARTET_AUX_LINE","features":[81]},{"name":"MM_SIERRA_QUARTET_AUX_MODEM","features":[81]},{"name":"MM_SIERRA_QUARTET_MIDIIN","features":[81]},{"name":"MM_SIERRA_QUARTET_MIDIOUT","features":[81]},{"name":"MM_SIERRA_QUARTET_MIXER","features":[81]},{"name":"MM_SIERRA_QUARTET_SYNTH","features":[81]},{"name":"MM_SIERRA_QUARTET_WAVEIN","features":[81]},{"name":"MM_SIERRA_QUARTET_WAVEOUT","features":[81]},{"name":"MM_SILICONSOFT","features":[81]},{"name":"MM_SILICONSOFT_SC1_WAVEIN","features":[81]},{"name":"MM_SILICONSOFT_SC1_WAVEOUT","features":[81]},{"name":"MM_SILICONSOFT_SC2_WAVEIN","features":[81]},{"name":"MM_SILICONSOFT_SC2_WAVEOUT","features":[81]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEIN","features":[81]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEOUT","features":[81]},{"name":"MM_SILICONSOFT_SOUNDJR2_WAVEOUT","features":[81]},{"name":"MM_SILICONSOFT_SOUNDJR3_WAVEOUT","features":[81]},{"name":"MM_SIPROLAB","features":[81]},{"name":"MM_SIPROLAB_ACELPNET","features":[81]},{"name":"MM_SNI","features":[81]},{"name":"MM_SNI_ACM_G721","features":[81]},{"name":"MM_SOFTLAB_NSK","features":[81]},{"name":"MM_SOFTLAB_NSK_FRW_AUX","features":[81]},{"name":"MM_SOFTLAB_NSK_FRW_MIXER","features":[81]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEIN","features":[81]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEOUT","features":[81]},{"name":"MM_SOFTSOUND","features":[81]},{"name":"MM_SOFTSOUND_CODEC","features":[81]},{"name":"MM_SONICFOUNDRY","features":[81]},{"name":"MM_SONORUS","features":[81]},{"name":"MM_SONORUS_STUDIO","features":[81]},{"name":"MM_SONY","features":[81]},{"name":"MM_SONY_ACM_SCX","features":[81]},{"name":"MM_SORVIS","features":[81]},{"name":"MM_SOUNDESIGNS","features":[81]},{"name":"MM_SOUNDESIGNS_WAVEIN","features":[81]},{"name":"MM_SOUNDESIGNS_WAVEOUT","features":[81]},{"name":"MM_SOUNDSCAPE_AUX","features":[81]},{"name":"MM_SOUNDSCAPE_MIDIIN","features":[81]},{"name":"MM_SOUNDSCAPE_MIDIOUT","features":[81]},{"name":"MM_SOUNDSCAPE_MIXER","features":[81]},{"name":"MM_SOUNDSCAPE_SYNTH","features":[81]},{"name":"MM_SOUNDSCAPE_WAVEIN","features":[81]},{"name":"MM_SOUNDSCAPE_WAVEOUT","features":[81]},{"name":"MM_SOUNDSCAPE_WAVEOUT_AUX","features":[81]},{"name":"MM_SOUNDSPACE","features":[81]},{"name":"MM_SPECTRUM_PRODUCTIONS","features":[81]},{"name":"MM_SPECTRUM_SIGNAL_PROCESSING","features":[81]},{"name":"MM_SPEECHCOMP","features":[81]},{"name":"MM_SPLASH_STUDIOS","features":[81]},{"name":"MM_SSP_SNDFESAUX","features":[81]},{"name":"MM_SSP_SNDFESMIDIIN","features":[81]},{"name":"MM_SSP_SNDFESMIDIOUT","features":[81]},{"name":"MM_SSP_SNDFESMIX","features":[81]},{"name":"MM_SSP_SNDFESSYNTH","features":[81]},{"name":"MM_SSP_SNDFESWAVEIN","features":[81]},{"name":"MM_SSP_SNDFESWAVEOUT","features":[81]},{"name":"MM_STUDER","features":[81]},{"name":"MM_STUDIO_16_AUX","features":[81]},{"name":"MM_STUDIO_16_MIDIIN","features":[81]},{"name":"MM_STUDIO_16_MIDIOUT","features":[81]},{"name":"MM_STUDIO_16_MIXER","features":[81]},{"name":"MM_STUDIO_16_SYNTH","features":[81]},{"name":"MM_STUDIO_16_WAVEIN","features":[81]},{"name":"MM_STUDIO_16_WAVEOUT","features":[81]},{"name":"MM_ST_MICROELECTRONICS","features":[81]},{"name":"MM_SUNCOM","features":[81]},{"name":"MM_SUPERMAC","features":[81]},{"name":"MM_SYDEC_NV","features":[81]},{"name":"MM_SYDEC_NV_WAVEIN","features":[81]},{"name":"MM_SYDEC_NV_WAVEOUT","features":[81]},{"name":"MM_TANDY","features":[81]},{"name":"MM_TANDY_PSSJWAVEIN","features":[81]},{"name":"MM_TANDY_PSSJWAVEOUT","features":[81]},{"name":"MM_TANDY_SENS_MMAMIDIIN","features":[81]},{"name":"MM_TANDY_SENS_MMAMIDIOUT","features":[81]},{"name":"MM_TANDY_SENS_MMAWAVEIN","features":[81]},{"name":"MM_TANDY_SENS_MMAWAVEOUT","features":[81]},{"name":"MM_TANDY_SENS_VISWAVEOUT","features":[81]},{"name":"MM_TANDY_VISBIOSSYNTH","features":[81]},{"name":"MM_TANDY_VISWAVEIN","features":[81]},{"name":"MM_TANDY_VISWAVEOUT","features":[81]},{"name":"MM_TBS_TROPEZ_AUX1","features":[81]},{"name":"MM_TBS_TROPEZ_AUX2","features":[81]},{"name":"MM_TBS_TROPEZ_LINE","features":[81]},{"name":"MM_TBS_TROPEZ_WAVEIN","features":[81]},{"name":"MM_TBS_TROPEZ_WAVEOUT","features":[81]},{"name":"MM_TDK","features":[81]},{"name":"MM_TDK_MW_AUX","features":[81]},{"name":"MM_TDK_MW_AUX_BASS","features":[81]},{"name":"MM_TDK_MW_AUX_CHR","features":[81]},{"name":"MM_TDK_MW_AUX_MASTER","features":[81]},{"name":"MM_TDK_MW_AUX_MIDI_VOL","features":[81]},{"name":"MM_TDK_MW_AUX_RVB","features":[81]},{"name":"MM_TDK_MW_AUX_TREBLE","features":[81]},{"name":"MM_TDK_MW_AUX_VOL","features":[81]},{"name":"MM_TDK_MW_AUX_WAVE_CHR","features":[81]},{"name":"MM_TDK_MW_AUX_WAVE_RVB","features":[81]},{"name":"MM_TDK_MW_AUX_WAVE_VOL","features":[81]},{"name":"MM_TDK_MW_MIDI_IN","features":[81]},{"name":"MM_TDK_MW_MIDI_OUT","features":[81]},{"name":"MM_TDK_MW_MIDI_SYNTH","features":[81]},{"name":"MM_TDK_MW_MIXER","features":[81]},{"name":"MM_TDK_MW_WAVE_IN","features":[81]},{"name":"MM_TDK_MW_WAVE_OUT","features":[81]},{"name":"MM_TELEKOL","features":[81]},{"name":"MM_TELEKOL_WAVEIN","features":[81]},{"name":"MM_TELEKOL_WAVEOUT","features":[81]},{"name":"MM_TERALOGIC","features":[81]},{"name":"MM_TERRATEC","features":[81]},{"name":"MM_THUNDER_AUX","features":[81]},{"name":"MM_THUNDER_SYNTH","features":[81]},{"name":"MM_THUNDER_WAVEIN","features":[81]},{"name":"MM_THUNDER_WAVEOUT","features":[81]},{"name":"MM_TPORT_SYNTH","features":[81]},{"name":"MM_TPORT_WAVEIN","features":[81]},{"name":"MM_TPORT_WAVEOUT","features":[81]},{"name":"MM_TRUEVISION","features":[81]},{"name":"MM_TRUEVISION_WAVEIN1","features":[81]},{"name":"MM_TRUEVISION_WAVEOUT1","features":[81]},{"name":"MM_TTEWS_AUX","features":[81]},{"name":"MM_TTEWS_MIDIIN","features":[81]},{"name":"MM_TTEWS_MIDIMONITOR","features":[81]},{"name":"MM_TTEWS_MIDIOUT","features":[81]},{"name":"MM_TTEWS_MIDISYNTH","features":[81]},{"name":"MM_TTEWS_MIXER","features":[81]},{"name":"MM_TTEWS_VMIDIIN","features":[81]},{"name":"MM_TTEWS_VMIDIOUT","features":[81]},{"name":"MM_TTEWS_WAVEIN","features":[81]},{"name":"MM_TTEWS_WAVEOUT","features":[81]},{"name":"MM_TURTLE_BEACH","features":[81]},{"name":"MM_UHER_INFORMATIC","features":[81]},{"name":"MM_UH_ACM_ADPCM","features":[81]},{"name":"MM_UNISYS","features":[81]},{"name":"MM_UNISYS_ACM_NAP","features":[81]},{"name":"MM_UNMAPPED","features":[81]},{"name":"MM_VAL","features":[81]},{"name":"MM_VAL_MICROKEY_AP_WAVEIN","features":[81]},{"name":"MM_VAL_MICROKEY_AP_WAVEOUT","features":[81]},{"name":"MM_VANKOEVERING","features":[81]},{"name":"MM_VIA","features":[81]},{"name":"MM_VIA_AUX","features":[81]},{"name":"MM_VIA_MIXER","features":[81]},{"name":"MM_VIA_MPU401_MIDIIN","features":[81]},{"name":"MM_VIA_MPU401_MIDIOUT","features":[81]},{"name":"MM_VIA_SWFM_SYNTH","features":[81]},{"name":"MM_VIA_WAVEIN","features":[81]},{"name":"MM_VIA_WAVEOUT","features":[81]},{"name":"MM_VIA_WDM_MIXER","features":[81]},{"name":"MM_VIA_WDM_MPU401_MIDIIN","features":[81]},{"name":"MM_VIA_WDM_MPU401_MIDIOUT","features":[81]},{"name":"MM_VIA_WDM_WAVEIN","features":[81]},{"name":"MM_VIA_WDM_WAVEOUT","features":[81]},{"name":"MM_VIDEOLOGIC","features":[81]},{"name":"MM_VIDEOLOGIC_MSWAVEIN","features":[81]},{"name":"MM_VIDEOLOGIC_MSWAVEOUT","features":[81]},{"name":"MM_VIENNASYS","features":[81]},{"name":"MM_VIENNASYS_TSP_WAVE_DRIVER","features":[81]},{"name":"MM_VIONA","features":[81]},{"name":"MM_VIONAQVINPCI_WAVEOUT","features":[81]},{"name":"MM_VIONA_BUSTER_MIXER","features":[81]},{"name":"MM_VIONA_CINEMASTER_MIXER","features":[81]},{"name":"MM_VIONA_CONCERTO_MIXER","features":[81]},{"name":"MM_VIONA_QVINPCI_MIXER","features":[81]},{"name":"MM_VIONA_QVINPCI_WAVEIN","features":[81]},{"name":"MM_VIRTUALMUSIC","features":[81]},{"name":"MM_VITEC","features":[81]},{"name":"MM_VITEC_VMAKER","features":[81]},{"name":"MM_VITEC_VMPRO","features":[81]},{"name":"MM_VIVO","features":[81]},{"name":"MM_VIVO_AUDIO_CODEC","features":[81]},{"name":"MM_VKC_MPU401_MIDIIN","features":[81]},{"name":"MM_VKC_MPU401_MIDIOUT","features":[81]},{"name":"MM_VKC_SERIAL_MIDIIN","features":[81]},{"name":"MM_VKC_SERIAL_MIDIOUT","features":[81]},{"name":"MM_VOCALTEC","features":[81]},{"name":"MM_VOCALTEC_WAVEIN","features":[81]},{"name":"MM_VOCALTEC_WAVEOUT","features":[81]},{"name":"MM_VOICEINFO","features":[81]},{"name":"MM_VOICEMIXER","features":[81]},{"name":"MM_VOXWARE","features":[81]},{"name":"MM_VOXWARE_CODEC","features":[81]},{"name":"MM_VOYETRA","features":[81]},{"name":"MM_VQST","features":[81]},{"name":"MM_VQST_VQC1","features":[81]},{"name":"MM_VQST_VQC2","features":[81]},{"name":"MM_VTG","features":[81]},{"name":"MM_WANGLABS","features":[81]},{"name":"MM_WANGLABS_WAVEIN1","features":[81]},{"name":"MM_WANGLABS_WAVEOUT1","features":[81]},{"name":"MM_WEITEK","features":[81]},{"name":"MM_WILDCAT","features":[81]},{"name":"MM_WILDCAT_AUTOSCOREMIDIIN","features":[81]},{"name":"MM_WILLOPOND_SNDCOMM_WAVEIN","features":[81]},{"name":"MM_WILLOWPOND","features":[81]},{"name":"MM_WILLOWPOND_FMSYNTH_STEREO","features":[81]},{"name":"MM_WILLOWPOND_GENERIC_AUX","features":[81]},{"name":"MM_WILLOWPOND_GENERIC_MIXER","features":[81]},{"name":"MM_WILLOWPOND_GENERIC_WAVEIN","features":[81]},{"name":"MM_WILLOWPOND_GENERIC_WAVEOUT","features":[81]},{"name":"MM_WILLOWPOND_MPU401","features":[81]},{"name":"MM_WILLOWPOND_PH_AUX","features":[81]},{"name":"MM_WILLOWPOND_PH_MIXER","features":[81]},{"name":"MM_WILLOWPOND_PH_WAVEIN","features":[81]},{"name":"MM_WILLOWPOND_PH_WAVEOUT","features":[81]},{"name":"MM_WILLOWPOND_SNDCOMM_AUX","features":[81]},{"name":"MM_WILLOWPOND_SNDCOMM_MIXER","features":[81]},{"name":"MM_WILLOWPOND_SNDCOMM_WAVEOUT","features":[81]},{"name":"MM_WILLOWPOND_SNDPORT_AUX","features":[81]},{"name":"MM_WILLOWPOND_SNDPORT_MIXER","features":[81]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEIN","features":[81]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEOUT","features":[81]},{"name":"MM_WINBOND","features":[81]},{"name":"MM_WINNOV","features":[81]},{"name":"MM_WINNOV_CAVIAR_CHAMPAGNE","features":[81]},{"name":"MM_WINNOV_CAVIAR_VIDC","features":[81]},{"name":"MM_WINNOV_CAVIAR_WAVEIN","features":[81]},{"name":"MM_WINNOV_CAVIAR_WAVEOUT","features":[81]},{"name":"MM_WINNOV_CAVIAR_YUV8","features":[81]},{"name":"MM_WORKBIT","features":[81]},{"name":"MM_WORKBIT_AUX","features":[81]},{"name":"MM_WORKBIT_FMSYNTH","features":[81]},{"name":"MM_WORKBIT_JOYSTICK","features":[81]},{"name":"MM_WORKBIT_MIDIIN","features":[81]},{"name":"MM_WORKBIT_MIDIOUT","features":[81]},{"name":"MM_WORKBIT_MIXER","features":[81]},{"name":"MM_WORKBIT_WAVEIN","features":[81]},{"name":"MM_WORKBIT_WAVEOUT","features":[81]},{"name":"MM_WSS_SB16_AUX_CD","features":[81]},{"name":"MM_WSS_SB16_AUX_LINE","features":[81]},{"name":"MM_WSS_SB16_MIDIIN","features":[81]},{"name":"MM_WSS_SB16_MIDIOUT","features":[81]},{"name":"MM_WSS_SB16_MIXER","features":[81]},{"name":"MM_WSS_SB16_SYNTH","features":[81]},{"name":"MM_WSS_SB16_WAVEIN","features":[81]},{"name":"MM_WSS_SB16_WAVEOUT","features":[81]},{"name":"MM_WSS_SBPRO_AUX_CD","features":[81]},{"name":"MM_WSS_SBPRO_AUX_LINE","features":[81]},{"name":"MM_WSS_SBPRO_MIDIIN","features":[81]},{"name":"MM_WSS_SBPRO_MIDIOUT","features":[81]},{"name":"MM_WSS_SBPRO_MIXER","features":[81]},{"name":"MM_WSS_SBPRO_SYNTH","features":[81]},{"name":"MM_WSS_SBPRO_WAVEIN","features":[81]},{"name":"MM_WSS_SBPRO_WAVEOUT","features":[81]},{"name":"MM_XEBEC","features":[81]},{"name":"MM_XIRLINK","features":[81]},{"name":"MM_XIRLINK_VISIONLINK","features":[81]},{"name":"MM_XYZ","features":[81]},{"name":"MM_YAMAHA","features":[81]},{"name":"MM_YAMAHA_ACXG_AUX","features":[81]},{"name":"MM_YAMAHA_ACXG_MIDIOUT","features":[81]},{"name":"MM_YAMAHA_ACXG_MIXER","features":[81]},{"name":"MM_YAMAHA_ACXG_WAVEIN","features":[81]},{"name":"MM_YAMAHA_ACXG_WAVEOUT","features":[81]},{"name":"MM_YAMAHA_GSS_AUX","features":[81]},{"name":"MM_YAMAHA_GSS_MIDIIN","features":[81]},{"name":"MM_YAMAHA_GSS_MIDIOUT","features":[81]},{"name":"MM_YAMAHA_GSS_SYNTH","features":[81]},{"name":"MM_YAMAHA_GSS_WAVEIN","features":[81]},{"name":"MM_YAMAHA_GSS_WAVEOUT","features":[81]},{"name":"MM_YAMAHA_OPL3SA_FMSYNTH","features":[81]},{"name":"MM_YAMAHA_OPL3SA_JOYSTICK","features":[81]},{"name":"MM_YAMAHA_OPL3SA_MIDIIN","features":[81]},{"name":"MM_YAMAHA_OPL3SA_MIDIOUT","features":[81]},{"name":"MM_YAMAHA_OPL3SA_MIXER","features":[81]},{"name":"MM_YAMAHA_OPL3SA_WAVEIN","features":[81]},{"name":"MM_YAMAHA_OPL3SA_WAVEOUT","features":[81]},{"name":"MM_YAMAHA_OPL3SA_YSYNTH","features":[81]},{"name":"MM_YAMAHA_SERIAL_MIDIIN","features":[81]},{"name":"MM_YAMAHA_SERIAL_MIDIOUT","features":[81]},{"name":"MM_YAMAHA_SXG_MIDIOUT","features":[81]},{"name":"MM_YAMAHA_SXG_MIXER","features":[81]},{"name":"MM_YAMAHA_SXG_WAVEOUT","features":[81]},{"name":"MM_YAMAHA_YMF724LEG_FMSYNTH","features":[81]},{"name":"MM_YAMAHA_YMF724LEG_MIDIIN","features":[81]},{"name":"MM_YAMAHA_YMF724LEG_MIDIOUT","features":[81]},{"name":"MM_YAMAHA_YMF724LEG_MIXER","features":[81]},{"name":"MM_YAMAHA_YMF724_AUX","features":[81]},{"name":"MM_YAMAHA_YMF724_MIDIOUT","features":[81]},{"name":"MM_YAMAHA_YMF724_MIXER","features":[81]},{"name":"MM_YAMAHA_YMF724_WAVEIN","features":[81]},{"name":"MM_YAMAHA_YMF724_WAVEOUT","features":[81]},{"name":"MM_YOUCOM","features":[81]},{"name":"MM_ZEFIRO","features":[81]},{"name":"MM_ZEFIRO_ZA2","features":[81]},{"name":"MM_ZYXEL","features":[81]},{"name":"MM_ZYXEL_ACM_ADPCM","features":[81]},{"name":"MODM_CACHEDRUMPATCHES","features":[81]},{"name":"MODM_CACHEPATCHES","features":[81]},{"name":"MODM_CLOSE","features":[81]},{"name":"MODM_DATA","features":[81]},{"name":"MODM_GETDEVCAPS","features":[81]},{"name":"MODM_GETNUMDEVS","features":[81]},{"name":"MODM_GETPOS","features":[81]},{"name":"MODM_GETVOLUME","features":[81]},{"name":"MODM_INIT","features":[81]},{"name":"MODM_INIT_EX","features":[81]},{"name":"MODM_LONGDATA","features":[81]},{"name":"MODM_MAPPER","features":[81]},{"name":"MODM_OPEN","features":[81]},{"name":"MODM_PAUSE","features":[81]},{"name":"MODM_PREFERRED","features":[81]},{"name":"MODM_PREPARE","features":[81]},{"name":"MODM_PROPERTIES","features":[81]},{"name":"MODM_RECONFIGURE","features":[81]},{"name":"MODM_RESET","features":[81]},{"name":"MODM_RESTART","features":[81]},{"name":"MODM_SETVOLUME","features":[81]},{"name":"MODM_STOP","features":[81]},{"name":"MODM_STRMDATA","features":[81]},{"name":"MODM_UNPREPARE","features":[81]},{"name":"MODM_USER","features":[81]},{"name":"MPEGLAYER3_ID_CONSTANTFRAMESIZE","features":[81]},{"name":"MPEGLAYER3_ID_MPEG","features":[81]},{"name":"MPEGLAYER3_ID_UNKNOWN","features":[81]},{"name":"MPEGLAYER3_WFX_EXTRA_BYTES","features":[81]},{"name":"MSAUDIO1WAVEFORMAT","features":[82,81]},{"name":"MSAUDIO1_BITS_PER_SAMPLE","features":[81]},{"name":"MSAUDIO1_MAX_CHANNELS","features":[81]},{"name":"MXDM_BASE","features":[81]},{"name":"MXDM_CLOSE","features":[81]},{"name":"MXDM_GETCONTROLDETAILS","features":[81]},{"name":"MXDM_GETDEVCAPS","features":[81]},{"name":"MXDM_GETLINECONTROLS","features":[81]},{"name":"MXDM_GETLINEINFO","features":[81]},{"name":"MXDM_GETNUMDEVS","features":[81]},{"name":"MXDM_INIT","features":[81]},{"name":"MXDM_INIT_EX","features":[81]},{"name":"MXDM_OPEN","features":[81]},{"name":"MXDM_SETCONTROLDETAILS","features":[81]},{"name":"MXDM_USER","features":[81]},{"name":"NMS_VBXADPCMWAVEFORMAT","features":[82,81]},{"name":"NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS","features":[81]},{"name":"NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE","features":[81]},{"name":"NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH","features":[81]},{"name":"NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID","features":[81]},{"name":"NS_E_8BIT_WAVE_UNSUPPORTED","features":[81]},{"name":"NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED","features":[81]},{"name":"NS_E_ACTIVE_SG_DEVICE_DISCONNECTED","features":[81]},{"name":"NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES","features":[81]},{"name":"NS_E_ALLOCATE_FILE_FAIL","features":[81]},{"name":"NS_E_ALL_PROTOCOLS_DISABLED","features":[81]},{"name":"NS_E_ALREADY_CONNECTED","features":[81]},{"name":"NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[81]},{"name":"NS_E_ARCHIVE_ABORT_DUE_TO_BCAST","features":[81]},{"name":"NS_E_ARCHIVE_FILENAME_NOTSET","features":[81]},{"name":"NS_E_ARCHIVE_GAP_DETECTED","features":[81]},{"name":"NS_E_ARCHIVE_REACH_QUOTA","features":[81]},{"name":"NS_E_ARCHIVE_SAME_AS_INPUT","features":[81]},{"name":"NS_E_ASSERT","features":[81]},{"name":"NS_E_ASX_INVALIDFORMAT","features":[81]},{"name":"NS_E_ASX_INVALIDVERSION","features":[81]},{"name":"NS_E_ASX_INVALID_REPEAT_BLOCK","features":[81]},{"name":"NS_E_ASX_NOTHING_TO_WRITE","features":[81]},{"name":"NS_E_ATTRIBUTE_NOT_ALLOWED","features":[81]},{"name":"NS_E_ATTRIBUTE_READ_ONLY","features":[81]},{"name":"NS_E_AUDIENCE_CONTENTTYPE_MISMATCH","features":[81]},{"name":"NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH","features":[81]},{"name":"NS_E_AUDIODEVICE_BADFORMAT","features":[81]},{"name":"NS_E_AUDIODEVICE_BUSY","features":[81]},{"name":"NS_E_AUDIODEVICE_UNEXPECTED","features":[81]},{"name":"NS_E_AUDIO_BITRATE_STEPDOWN","features":[81]},{"name":"NS_E_AUDIO_CODEC_ERROR","features":[81]},{"name":"NS_E_AUDIO_CODEC_NOT_INSTALLED","features":[81]},{"name":"NS_E_AUTHORIZATION_FILE_NOT_FOUND","features":[81]},{"name":"NS_E_BACKUP_RESTORE_BAD_DATA","features":[81]},{"name":"NS_E_BACKUP_RESTORE_BAD_REQUEST_ID","features":[81]},{"name":"NS_E_BACKUP_RESTORE_FAILURE","features":[81]},{"name":"NS_E_BACKUP_RESTORE_TOO_MANY_RESETS","features":[81]},{"name":"NS_E_BAD_ADAPTER_ADDRESS","features":[81]},{"name":"NS_E_BAD_ADAPTER_NAME","features":[81]},{"name":"NS_E_BAD_BLOCK0_VERSION","features":[81]},{"name":"NS_E_BAD_CONTENTEDL","features":[81]},{"name":"NS_E_BAD_CONTROL_DATA","features":[81]},{"name":"NS_E_BAD_CUB_UID","features":[81]},{"name":"NS_E_BAD_DELIVERY_MODE","features":[81]},{"name":"NS_E_BAD_DISK_UID","features":[81]},{"name":"NS_E_BAD_FSMAJOR_VERSION","features":[81]},{"name":"NS_E_BAD_MARKIN","features":[81]},{"name":"NS_E_BAD_MARKOUT","features":[81]},{"name":"NS_E_BAD_MULTICAST_ADDRESS","features":[81]},{"name":"NS_E_BAD_REQUEST","features":[81]},{"name":"NS_E_BAD_STAMPNUMBER","features":[81]},{"name":"NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE","features":[81]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCENDED","features":[81]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCFAILED","features":[81]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT","features":[81]},{"name":"NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB","features":[81]},{"name":"NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB","features":[81]},{"name":"NS_E_BKGDOWNLOAD_FAILEDINITIALIZE","features":[81]},{"name":"NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE","features":[81]},{"name":"NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE","features":[81]},{"name":"NS_E_BKGDOWNLOAD_INVALID_FILE_NAME","features":[81]},{"name":"NS_E_BKGDOWNLOAD_NOJOBPOINTER","features":[81]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE","features":[81]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE","features":[81]},{"name":"NS_E_BKGDOWNLOAD_WMDUNPACKFAILED","features":[81]},{"name":"NS_E_BKGDOWNLOAD_WRONG_NO_FILES","features":[81]},{"name":"NS_E_BUSY","features":[81]},{"name":"NS_E_CACHE_ARCHIVE_CONFLICT","features":[81]},{"name":"NS_E_CACHE_CANNOT_BE_CACHED","features":[81]},{"name":"NS_E_CACHE_NOT_BROADCAST","features":[81]},{"name":"NS_E_CACHE_NOT_MODIFIED","features":[81]},{"name":"NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND","features":[81]},{"name":"NS_E_CACHE_ORIGIN_SERVER_TIMEOUT","features":[81]},{"name":"NS_E_CANNOTCONNECT","features":[81]},{"name":"NS_E_CANNOTCONNECTEVENTS","features":[81]},{"name":"NS_E_CANNOTDESTROYTITLE","features":[81]},{"name":"NS_E_CANNOTOFFLINEDISK","features":[81]},{"name":"NS_E_CANNOTONLINEDISK","features":[81]},{"name":"NS_E_CANNOTRENAMETITLE","features":[81]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT","features":[81]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES","features":[81]},{"name":"NS_E_CANNOT_CONNECT_TO_PROXY","features":[81]},{"name":"NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP","features":[81]},{"name":"NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR","features":[81]},{"name":"NS_E_CANNOT_PAUSE_LIVEBROADCAST","features":[81]},{"name":"NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER","features":[81]},{"name":"NS_E_CANNOT_REMOVE_PLUGIN","features":[81]},{"name":"NS_E_CANNOT_REMOVE_PUBLISHING_POINT","features":[81]},{"name":"NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE","features":[81]},{"name":"NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING","features":[81]},{"name":"NS_E_CANT_READ_DIGITAL","features":[81]},{"name":"NS_E_CCLINK_DOWN","features":[81]},{"name":"NS_E_CD_COPYTO_CD","features":[81]},{"name":"NS_E_CD_DRIVER_PROBLEM","features":[81]},{"name":"NS_E_CD_EMPTY_TRACK_QUEUE","features":[81]},{"name":"NS_E_CD_ISRC_INVALID","features":[81]},{"name":"NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID","features":[81]},{"name":"NS_E_CD_NO_BUFFERS_READ","features":[81]},{"name":"NS_E_CD_NO_READER","features":[81]},{"name":"NS_E_CD_QUEUEING_DISABLED","features":[81]},{"name":"NS_E_CD_READ_ERROR","features":[81]},{"name":"NS_E_CD_READ_ERROR_NO_CORRECTION","features":[81]},{"name":"NS_E_CD_REFRESH","features":[81]},{"name":"NS_E_CD_SLOW_COPY","features":[81]},{"name":"NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS","features":[81]},{"name":"NS_E_CHANGING_PROXYBYPASS","features":[81]},{"name":"NS_E_CHANGING_PROXY_EXCEPTIONLIST","features":[81]},{"name":"NS_E_CHANGING_PROXY_NAME","features":[81]},{"name":"NS_E_CHANGING_PROXY_PORT","features":[81]},{"name":"NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND","features":[81]},{"name":"NS_E_CLOSED_ON_SUSPEND","features":[81]},{"name":"NS_E_CODEC_DMO_ERROR","features":[81]},{"name":"NS_E_CODEC_UNAVAILABLE","features":[81]},{"name":"NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[81]},{"name":"NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[81]},{"name":"NS_E_CONNECTION_FAILURE","features":[81]},{"name":"NS_E_CONNECT_TIMEOUT","features":[81]},{"name":"NS_E_CONTENT_PARTNER_STILL_INITIALIZING","features":[81]},{"name":"NS_E_CORECD_NOTAMEDIACD","features":[81]},{"name":"NS_E_CRITICAL_ERROR","features":[81]},{"name":"NS_E_CUB_FAIL","features":[81]},{"name":"NS_E_CUB_FAIL_LINK","features":[81]},{"name":"NS_E_CURLHELPER_NOTADIRECTORY","features":[81]},{"name":"NS_E_CURLHELPER_NOTAFILE","features":[81]},{"name":"NS_E_CURLHELPER_NOTRELATIVE","features":[81]},{"name":"NS_E_CURL_CANTDECODE","features":[81]},{"name":"NS_E_CURL_CANTWALK","features":[81]},{"name":"NS_E_CURL_INVALIDBUFFERSIZE","features":[81]},{"name":"NS_E_CURL_INVALIDCHAR","features":[81]},{"name":"NS_E_CURL_INVALIDHOSTNAME","features":[81]},{"name":"NS_E_CURL_INVALIDPATH","features":[81]},{"name":"NS_E_CURL_INVALIDPORT","features":[81]},{"name":"NS_E_CURL_INVALIDSCHEME","features":[81]},{"name":"NS_E_CURL_INVALIDURL","features":[81]},{"name":"NS_E_CURL_NOTSAFE","features":[81]},{"name":"NS_E_DAMAGED_FILE","features":[81]},{"name":"NS_E_DATAPATH_NO_SINK","features":[81]},{"name":"NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED","features":[81]},{"name":"NS_E_DATA_UNIT_EXTENSION_TOO_LARGE","features":[81]},{"name":"NS_E_DDRAW_GENERIC","features":[81]},{"name":"NS_E_DEVCONTROL_FAILED_SEEK","features":[81]},{"name":"NS_E_DEVICECONTROL_UNSTABLE","features":[81]},{"name":"NS_E_DEVICE_DISCONNECTED","features":[81]},{"name":"NS_E_DEVICE_IS_NOT_READY","features":[81]},{"name":"NS_E_DEVICE_NOT_READY","features":[81]},{"name":"NS_E_DEVICE_NOT_SUPPORT_FORMAT","features":[81]},{"name":"NS_E_DEVICE_NOT_WMDRM_DEVICE","features":[81]},{"name":"NS_E_DISK_FAIL","features":[81]},{"name":"NS_E_DISK_READ","features":[81]},{"name":"NS_E_DISK_WRITE","features":[81]},{"name":"NS_E_DISPLAY_MODE_CHANGE_FAILED","features":[81]},{"name":"NS_E_DRMPROFILE_NOTFOUND","features":[81]},{"name":"NS_E_DRM_ACQUIRING_LICENSE","features":[81]},{"name":"NS_E_DRM_ACTION_NOT_QUERIED","features":[81]},{"name":"NS_E_DRM_ALREADY_INDIVIDUALIZED","features":[81]},{"name":"NS_E_DRM_APPCERT_REVOKED","features":[81]},{"name":"NS_E_DRM_ATTRIBUTE_TOO_LONG","features":[81]},{"name":"NS_E_DRM_BACKUPRESTORE_BUSY","features":[81]},{"name":"NS_E_DRM_BACKUP_CORRUPT","features":[81]},{"name":"NS_E_DRM_BACKUP_EXISTS","features":[81]},{"name":"NS_E_DRM_BAD_REQUEST","features":[81]},{"name":"NS_E_DRM_BB_UNABLE_TO_INITIALIZE","features":[81]},{"name":"NS_E_DRM_BUFFER_TOO_SMALL","features":[81]},{"name":"NS_E_DRM_BUSY","features":[81]},{"name":"NS_E_DRM_CACHED_CONTENT_ERROR","features":[81]},{"name":"NS_E_DRM_CERTIFICATE_REVOKED","features":[81]},{"name":"NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE","features":[81]},{"name":"NS_E_DRM_CHAIN_TOO_LONG","features":[81]},{"name":"NS_E_DRM_CHECKPOINT_CORRUPT","features":[81]},{"name":"NS_E_DRM_CHECKPOINT_FAILED","features":[81]},{"name":"NS_E_DRM_CHECKPOINT_MISMATCH","features":[81]},{"name":"NS_E_DRM_CLIENT_CODE_EXPIRED","features":[81]},{"name":"NS_E_DRM_DATASTORE_CORRUPT","features":[81]},{"name":"NS_E_DRM_DEBUGGING_NOT_ALLOWED","features":[81]},{"name":"NS_E_DRM_DECRYPT_ERROR","features":[81]},{"name":"NS_E_DRM_DEVICE_ACTIVATION_CANCELED","features":[81]},{"name":"NS_E_DRM_DEVICE_ALREADY_REGISTERED","features":[81]},{"name":"NS_E_DRM_DEVICE_LIMIT_REACHED","features":[81]},{"name":"NS_E_DRM_DEVICE_NOT_OPEN","features":[81]},{"name":"NS_E_DRM_DEVICE_NOT_REGISTERED","features":[81]},{"name":"NS_E_DRM_DRIVER_AUTH_FAILURE","features":[81]},{"name":"NS_E_DRM_DRIVER_DIGIOUT_FAILURE","features":[81]},{"name":"NS_E_DRM_DRMV2CLT_REVOKED","features":[81]},{"name":"NS_E_DRM_ENCRYPT_ERROR","features":[81]},{"name":"NS_E_DRM_ENUM_LICENSE_FAILED","features":[81]},{"name":"NS_E_DRM_ERROR_BAD_NET_RESP","features":[81]},{"name":"NS_E_DRM_EXPIRED_LICENSEBLOB","features":[81]},{"name":"NS_E_DRM_GET_CONTENTSTRING_ERROR","features":[81]},{"name":"NS_E_DRM_GET_LICENSESTRING_ERROR","features":[81]},{"name":"NS_E_DRM_GET_LICENSE_ERROR","features":[81]},{"name":"NS_E_DRM_HARDWAREID_MISMATCH","features":[81]},{"name":"NS_E_DRM_HARDWARE_INCONSISTENT","features":[81]},{"name":"NS_E_DRM_INCLUSION_LIST_REQUIRED","features":[81]},{"name":"NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE","features":[81]},{"name":"NS_E_DRM_INDIVIDUALIZE_ERROR","features":[81]},{"name":"NS_E_DRM_INDIVIDUALIZING","features":[81]},{"name":"NS_E_DRM_INDIV_FRAUD","features":[81]},{"name":"NS_E_DRM_INDIV_NO_CABS","features":[81]},{"name":"NS_E_DRM_INDIV_SERVICE_UNAVAILABLE","features":[81]},{"name":"NS_E_DRM_INVALID_APPCERT","features":[81]},{"name":"NS_E_DRM_INVALID_APPDATA","features":[81]},{"name":"NS_E_DRM_INVALID_APPDATA_VERSION","features":[81]},{"name":"NS_E_DRM_INVALID_APPLICATION","features":[81]},{"name":"NS_E_DRM_INVALID_CERTIFICATE","features":[81]},{"name":"NS_E_DRM_INVALID_CONTENT","features":[81]},{"name":"NS_E_DRM_INVALID_CRL","features":[81]},{"name":"NS_E_DRM_INVALID_DATA","features":[81]},{"name":"NS_E_DRM_INVALID_KID","features":[81]},{"name":"NS_E_DRM_INVALID_LICENSE","features":[81]},{"name":"NS_E_DRM_INVALID_LICENSEBLOB","features":[81]},{"name":"NS_E_DRM_INVALID_LICENSE_ACQUIRED","features":[81]},{"name":"NS_E_DRM_INVALID_LICENSE_REQUEST","features":[81]},{"name":"NS_E_DRM_INVALID_MACHINE","features":[81]},{"name":"NS_E_DRM_INVALID_MIGRATION_IMAGE","features":[81]},{"name":"NS_E_DRM_INVALID_PROPERTY","features":[81]},{"name":"NS_E_DRM_INVALID_PROXIMITY_RESPONSE","features":[81]},{"name":"NS_E_DRM_INVALID_SECURESTORE_PASSWORD","features":[81]},{"name":"NS_E_DRM_INVALID_SESSION","features":[81]},{"name":"NS_E_DRM_KEY_ERROR","features":[81]},{"name":"NS_E_DRM_LICENSE_APPSECLOW","features":[81]},{"name":"NS_E_DRM_LICENSE_APP_NOTALLOWED","features":[81]},{"name":"NS_E_DRM_LICENSE_CERT_EXPIRED","features":[81]},{"name":"NS_E_DRM_LICENSE_CLOSE_ERROR","features":[81]},{"name":"NS_E_DRM_LICENSE_CONTENT_REVOKED","features":[81]},{"name":"NS_E_DRM_LICENSE_DELETION_ERROR","features":[81]},{"name":"NS_E_DRM_LICENSE_EXPIRED","features":[81]},{"name":"NS_E_DRM_LICENSE_INITIALIZATION_ERROR","features":[81]},{"name":"NS_E_DRM_LICENSE_INVALID_XML","features":[81]},{"name":"NS_E_DRM_LICENSE_NOSAP","features":[81]},{"name":"NS_E_DRM_LICENSE_NOSVP","features":[81]},{"name":"NS_E_DRM_LICENSE_NOTACQUIRED","features":[81]},{"name":"NS_E_DRM_LICENSE_NOTENABLED","features":[81]},{"name":"NS_E_DRM_LICENSE_NOTRUSTEDCODEC","features":[81]},{"name":"NS_E_DRM_LICENSE_NOWDM","features":[81]},{"name":"NS_E_DRM_LICENSE_OPEN_ERROR","features":[81]},{"name":"NS_E_DRM_LICENSE_SECLOW","features":[81]},{"name":"NS_E_DRM_LICENSE_SERVER_INFO_MISSING","features":[81]},{"name":"NS_E_DRM_LICENSE_STORE_ERROR","features":[81]},{"name":"NS_E_DRM_LICENSE_STORE_SAVE_ERROR","features":[81]},{"name":"NS_E_DRM_LICENSE_UNAVAILABLE","features":[81]},{"name":"NS_E_DRM_LICENSE_UNUSABLE","features":[81]},{"name":"NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET","features":[81]},{"name":"NS_E_DRM_MALFORMED_CONTENT_HEADER","features":[81]},{"name":"NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE","features":[81]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA","features":[81]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD","features":[81]},{"name":"NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS","features":[81]},{"name":"NS_E_DRM_MIGRATION_NOT_SUPPORTED","features":[81]},{"name":"NS_E_DRM_MIGRATION_OBJECT_IN_USE","features":[81]},{"name":"NS_E_DRM_MIGRATION_OPERATION_CANCELLED","features":[81]},{"name":"NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE","features":[81]},{"name":"NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED","features":[81]},{"name":"NS_E_DRM_MONITOR_ERROR","features":[81]},{"name":"NS_E_DRM_MUST_APPROVE","features":[81]},{"name":"NS_E_DRM_MUST_REGISTER","features":[81]},{"name":"NS_E_DRM_MUST_REVALIDATE","features":[81]},{"name":"NS_E_DRM_NEEDS_INDIVIDUALIZATION","features":[81]},{"name":"NS_E_DRM_NEEDS_UPGRADE_TEMPFILE","features":[81]},{"name":"NS_E_DRM_NEED_UPGRADE_MSSAP","features":[81]},{"name":"NS_E_DRM_NEED_UPGRADE_PD","features":[81]},{"name":"NS_E_DRM_NOT_CONFIGURED","features":[81]},{"name":"NS_E_DRM_NO_RIGHTS","features":[81]},{"name":"NS_E_DRM_NO_UPLINK_LICENSE","features":[81]},{"name":"NS_E_DRM_OPERATION_CANCELED","features":[81]},{"name":"NS_E_DRM_PARAMETERS_MISMATCHED","features":[81]},{"name":"NS_E_DRM_PASSWORD_TOO_LONG","features":[81]},{"name":"NS_E_DRM_PD_TOO_MANY_DEVICES","features":[81]},{"name":"NS_E_DRM_POLICY_DISABLE_ONLINE","features":[81]},{"name":"NS_E_DRM_POLICY_METERING_DISABLED","features":[81]},{"name":"NS_E_DRM_PROFILE_NOT_SET","features":[81]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE","features":[81]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION","features":[81]},{"name":"NS_E_DRM_QUERY_ERROR","features":[81]},{"name":"NS_E_DRM_REOPEN_CONTENT","features":[81]},{"name":"NS_E_DRM_REPORT_ERROR","features":[81]},{"name":"NS_E_DRM_RESTORE_FRAUD","features":[81]},{"name":"NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE","features":[81]},{"name":"NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED","features":[81]},{"name":"NS_E_DRM_RIV_TOO_SMALL","features":[81]},{"name":"NS_E_DRM_SDK_VERSIONMISMATCH","features":[81]},{"name":"NS_E_DRM_SDMI_NOMORECOPIES","features":[81]},{"name":"NS_E_DRM_SDMI_TRIGGER","features":[81]},{"name":"NS_E_DRM_SECURE_STORE_ERROR","features":[81]},{"name":"NS_E_DRM_SECURE_STORE_NOT_FOUND","features":[81]},{"name":"NS_E_DRM_SECURE_STORE_UNLOCK_ERROR","features":[81]},{"name":"NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID","features":[81]},{"name":"NS_E_DRM_SIGNATURE_FAILURE","features":[81]},{"name":"NS_E_DRM_SOURCEID_NOT_SUPPORTED","features":[81]},{"name":"NS_E_DRM_STORE_NEEDINDI","features":[81]},{"name":"NS_E_DRM_STORE_NOTALLOWED","features":[81]},{"name":"NS_E_DRM_STORE_NOTALLSTORED","features":[81]},{"name":"NS_E_DRM_STUBLIB_REQUIRED","features":[81]},{"name":"NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION","features":[81]},{"name":"NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION","features":[81]},{"name":"NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_INITIALIZE","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_LICENSE","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_PORT","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_SET_PARAMETER","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK","features":[81]},{"name":"NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY","features":[81]},{"name":"NS_E_DRM_UNSUPPORTED_ACTION","features":[81]},{"name":"NS_E_DRM_UNSUPPORTED_ALGORITHM","features":[81]},{"name":"NS_E_DRM_UNSUPPORTED_PROPERTY","features":[81]},{"name":"NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION","features":[81]},{"name":"NS_E_DUPLICATE_ADDRESS","features":[81]},{"name":"NS_E_DUPLICATE_DRMPROFILE","features":[81]},{"name":"NS_E_DUPLICATE_NAME","features":[81]},{"name":"NS_E_DUPLICATE_PACKET","features":[81]},{"name":"NS_E_DVD_AUTHORING_PROBLEM","features":[81]},{"name":"NS_E_DVD_CANNOT_COPY_PROTECTED","features":[81]},{"name":"NS_E_DVD_CANNOT_JUMP","features":[81]},{"name":"NS_E_DVD_COMPATIBLE_VIDEO_CARD","features":[81]},{"name":"NS_E_DVD_COPY_PROTECT","features":[81]},{"name":"NS_E_DVD_DEVICE_CONTENTION","features":[81]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED","features":[81]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS","features":[81]},{"name":"NS_E_DVD_DISC_DECODER_REGION","features":[81]},{"name":"NS_E_DVD_GRAPH_BUILDING","features":[81]},{"name":"NS_E_DVD_INVALID_DISC_REGION","features":[81]},{"name":"NS_E_DVD_INVALID_TITLE_CHAPTER","features":[81]},{"name":"NS_E_DVD_MACROVISION","features":[81]},{"name":"NS_E_DVD_NO_AUDIO_STREAM","features":[81]},{"name":"NS_E_DVD_NO_DECODER","features":[81]},{"name":"NS_E_DVD_NO_SUBPICTURE_STREAM","features":[81]},{"name":"NS_E_DVD_NO_VIDEO_MEMORY","features":[81]},{"name":"NS_E_DVD_NO_VIDEO_STREAM","features":[81]},{"name":"NS_E_DVD_PARENTAL","features":[81]},{"name":"NS_E_DVD_REQUIRED_PROPERTY_NOT_SET","features":[81]},{"name":"NS_E_DVD_SYSTEM_DECODER_REGION","features":[81]},{"name":"NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS","features":[81]},{"name":"NS_E_EMPTY_PLAYLIST","features":[81]},{"name":"NS_E_EMPTY_PROGRAM_NAME","features":[81]},{"name":"NS_E_ENACTPLAN_GIVEUP","features":[81]},{"name":"NS_E_END_OF_PLAYLIST","features":[81]},{"name":"NS_E_END_OF_TAPE","features":[81]},{"name":"NS_E_ERROR_FROM_PROXY","features":[81]},{"name":"NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT","features":[81]},{"name":"NS_E_EXPECT_MONO_WAV_INPUT","features":[81]},{"name":"NS_E_FAILED_DOWNLOAD_ABORT_BURN","features":[81]},{"name":"NS_E_FAIL_LAUNCH_ROXIO_PLUGIN","features":[81]},{"name":"NS_E_FEATURE_DISABLED_BY_GROUP_POLICY","features":[81]},{"name":"NS_E_FEATURE_DISABLED_IN_SKU","features":[81]},{"name":"NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER","features":[81]},{"name":"NS_E_FILE_ALLOCATION_FAILED","features":[81]},{"name":"NS_E_FILE_BANDWIDTH_LIMIT","features":[81]},{"name":"NS_E_FILE_EXISTS","features":[81]},{"name":"NS_E_FILE_FAILED_CHECKS","features":[81]},{"name":"NS_E_FILE_INIT_FAILED","features":[81]},{"name":"NS_E_FILE_NOT_FOUND","features":[81]},{"name":"NS_E_FILE_OPEN_FAILED","features":[81]},{"name":"NS_E_FILE_PLAY_FAILED","features":[81]},{"name":"NS_E_FILE_READ","features":[81]},{"name":"NS_E_FILE_WRITE","features":[81]},{"name":"NS_E_FIREWALL","features":[81]},{"name":"NS_E_FLASH_PLAYBACK_NOT_ALLOWED","features":[81]},{"name":"NS_E_GLITCH_MODE","features":[81]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGE","features":[81]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGESELECTED","features":[81]},{"name":"NS_E_HDS_KEY_MISMATCH","features":[81]},{"name":"NS_E_HEADER_MISMATCH","features":[81]},{"name":"NS_E_HTTP_DISABLED","features":[81]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE","features":[81]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED","features":[81]},{"name":"NS_E_ICMQUERYFORMAT","features":[81]},{"name":"NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[81]},{"name":"NS_E_IMAGE_DOWNLOAD_FAILED","features":[81]},{"name":"NS_E_IMAPI_LOSSOFSTREAMING","features":[81]},{"name":"NS_E_IMAPI_MEDIUM_INVALIDTYPE","features":[81]},{"name":"NS_E_INCOMPATIBLE_FORMAT","features":[81]},{"name":"NS_E_INCOMPATIBLE_PUSH_SERVER","features":[81]},{"name":"NS_E_INCOMPATIBLE_SERVER","features":[81]},{"name":"NS_E_INCOMPATIBLE_VERSION","features":[81]},{"name":"NS_E_INCOMPLETE_PLAYLIST","features":[81]},{"name":"NS_E_INCORRECTCLIPSETTINGS","features":[81]},{"name":"NS_E_INDUCED","features":[81]},{"name":"NS_E_INPUTSOURCE_PROBLEM","features":[81]},{"name":"NS_E_INPUT_DOESNOT_SUPPORT_SMPTE","features":[81]},{"name":"NS_E_INPUT_WAVFORMAT_MISMATCH","features":[81]},{"name":"NS_E_INSUFFICIENT_BANDWIDTH","features":[81]},{"name":"NS_E_INSUFFICIENT_DATA","features":[81]},{"name":"NS_E_INTERFACE_NOT_REGISTERED_IN_GIT","features":[81]},{"name":"NS_E_INTERLACEMODE_MISMATCH","features":[81]},{"name":"NS_E_INTERLACE_REQUIRE_SAMESIZE","features":[81]},{"name":"NS_E_INTERNAL","features":[81]},{"name":"NS_E_INTERNAL_SERVER_ERROR","features":[81]},{"name":"NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING","features":[81]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING","features":[81]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED","features":[81]},{"name":"NS_E_INVALIDINPUTFPS","features":[81]},{"name":"NS_E_INVALIDPACKETSIZE","features":[81]},{"name":"NS_E_INVALIDPROFILE","features":[81]},{"name":"NS_E_INVALID_ARCHIVE","features":[81]},{"name":"NS_E_INVALID_AUDIO_BUFFERMAX","features":[81]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE","features":[81]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE_2","features":[81]},{"name":"NS_E_INVALID_BLACKHOLE_ADDRESS","features":[81]},{"name":"NS_E_INVALID_CHANNEL","features":[81]},{"name":"NS_E_INVALID_CLIENT","features":[81]},{"name":"NS_E_INVALID_DATA","features":[81]},{"name":"NS_E_INVALID_DEVICE","features":[81]},{"name":"NS_E_INVALID_DRMV2CLT_STUBLIB","features":[81]},{"name":"NS_E_INVALID_EDL","features":[81]},{"name":"NS_E_INVALID_FILE_BITRATE","features":[81]},{"name":"NS_E_INVALID_FOLDDOWN_COEFFICIENTS","features":[81]},{"name":"NS_E_INVALID_INDEX","features":[81]},{"name":"NS_E_INVALID_INDEX2","features":[81]},{"name":"NS_E_INVALID_INPUT_AUDIENCE_INDEX","features":[81]},{"name":"NS_E_INVALID_INPUT_FORMAT","features":[81]},{"name":"NS_E_INVALID_INPUT_LANGUAGE","features":[81]},{"name":"NS_E_INVALID_INPUT_STREAM","features":[81]},{"name":"NS_E_INVALID_INTERLACEMODE","features":[81]},{"name":"NS_E_INVALID_INTERLACE_COMPAT","features":[81]},{"name":"NS_E_INVALID_KEY","features":[81]},{"name":"NS_E_INVALID_LOG_URL","features":[81]},{"name":"NS_E_INVALID_MTU_RANGE","features":[81]},{"name":"NS_E_INVALID_NAME","features":[81]},{"name":"NS_E_INVALID_NONSQUAREPIXEL_COMPAT","features":[81]},{"name":"NS_E_INVALID_NUM_PASSES","features":[81]},{"name":"NS_E_INVALID_OPERATING_SYSTEM_VERSION","features":[81]},{"name":"NS_E_INVALID_OUTPUT_FORMAT","features":[81]},{"name":"NS_E_INVALID_PIXEL_ASPECT_RATIO","features":[81]},{"name":"NS_E_INVALID_PLAY_STATISTICS","features":[81]},{"name":"NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION","features":[81]},{"name":"NS_E_INVALID_PORT","features":[81]},{"name":"NS_E_INVALID_PROFILE_CONTENTTYPE","features":[81]},{"name":"NS_E_INVALID_PUBLISHING_POINT_NAME","features":[81]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT","features":[81]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST","features":[81]},{"name":"NS_E_INVALID_PUSH_TEMPLATE","features":[81]},{"name":"NS_E_INVALID_QUERY_OPERATOR","features":[81]},{"name":"NS_E_INVALID_QUERY_PROPERTY","features":[81]},{"name":"NS_E_INVALID_REDIRECT","features":[81]},{"name":"NS_E_INVALID_REQUEST","features":[81]},{"name":"NS_E_INVALID_SAMPLING_RATE","features":[81]},{"name":"NS_E_INVALID_SCRIPT_BITRATE","features":[81]},{"name":"NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL","features":[81]},{"name":"NS_E_INVALID_STREAM","features":[81]},{"name":"NS_E_INVALID_TIMECODE","features":[81]},{"name":"NS_E_INVALID_TTL","features":[81]},{"name":"NS_E_INVALID_VBR_COMPAT","features":[81]},{"name":"NS_E_INVALID_VBR_WITH_UNCOMP","features":[81]},{"name":"NS_E_INVALID_VIDEO_BITRATE","features":[81]},{"name":"NS_E_INVALID_VIDEO_BUFFER","features":[81]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX","features":[81]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX_2","features":[81]},{"name":"NS_E_INVALID_VIDEO_CQUALITY","features":[81]},{"name":"NS_E_INVALID_VIDEO_FPS","features":[81]},{"name":"NS_E_INVALID_VIDEO_HEIGHT","features":[81]},{"name":"NS_E_INVALID_VIDEO_HEIGHT_ALIGN","features":[81]},{"name":"NS_E_INVALID_VIDEO_IQUALITY","features":[81]},{"name":"NS_E_INVALID_VIDEO_KEYFRAME","features":[81]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE","features":[81]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE_2","features":[81]},{"name":"NS_E_INVALID_VIDEO_WIDTH","features":[81]},{"name":"NS_E_INVALID_VIDEO_WIDTH_ALIGN","features":[81]},{"name":"NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING","features":[81]},{"name":"NS_E_LANGUAGE_MISMATCH","features":[81]},{"name":"NS_E_LATE_OPERATION","features":[81]},{"name":"NS_E_LATE_PACKET","features":[81]},{"name":"NS_E_LICENSE_EXPIRED","features":[81]},{"name":"NS_E_LICENSE_HEADER_MISSING_URL","features":[81]},{"name":"NS_E_LICENSE_INCORRECT_RIGHTS","features":[81]},{"name":"NS_E_LICENSE_OUTOFDATE","features":[81]},{"name":"NS_E_LICENSE_REQUIRED","features":[81]},{"name":"NS_E_LOGFILEPERIOD","features":[81]},{"name":"NS_E_LOG_FILE_SIZE","features":[81]},{"name":"NS_E_LOG_NEED_TO_BE_SKIPPED","features":[81]},{"name":"NS_E_MARKIN_UNSUPPORTED","features":[81]},{"name":"NS_E_MAX_BITRATE","features":[81]},{"name":"NS_E_MAX_CLIENTS","features":[81]},{"name":"NS_E_MAX_FILERATE","features":[81]},{"name":"NS_E_MAX_FUNNELS_ALERT","features":[81]},{"name":"NS_E_MAX_PACKET_SIZE_TOO_SMALL","features":[81]},{"name":"NS_E_MEDIACD_READ_ERROR","features":[81]},{"name":"NS_E_MEDIA_LIBRARY_FAILED","features":[81]},{"name":"NS_E_MEDIA_PARSER_INVALID_FORMAT","features":[81]},{"name":"NS_E_MEMSTORAGE_BAD_DATA","features":[81]},{"name":"NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE","features":[81]},{"name":"NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE","features":[81]},{"name":"NS_E_METADATA_CANNOT_SET_LOCALE","features":[81]},{"name":"NS_E_METADATA_FORMAT_NOT_SUPPORTED","features":[81]},{"name":"NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE","features":[81]},{"name":"NS_E_METADATA_INVALID_DOCUMENT_TYPE","features":[81]},{"name":"NS_E_METADATA_LANGUAGE_NOT_SUPORTED","features":[81]},{"name":"NS_E_METADATA_NOT_AVAILABLE","features":[81]},{"name":"NS_E_METADATA_NO_EDITING_CAPABILITY","features":[81]},{"name":"NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE","features":[81]},{"name":"NS_E_MISMATCHED_MEDIACONTENT","features":[81]},{"name":"NS_E_MISSING_AUDIENCE","features":[81]},{"name":"NS_E_MISSING_CHANNEL","features":[81]},{"name":"NS_E_MISSING_SOURCE_INDEX","features":[81]},{"name":"NS_E_MIXER_INVALID_CONTROL","features":[81]},{"name":"NS_E_MIXER_INVALID_LINE","features":[81]},{"name":"NS_E_MIXER_INVALID_VALUE","features":[81]},{"name":"NS_E_MIXER_NODRIVER","features":[81]},{"name":"NS_E_MIXER_UNKNOWN_MMRESULT","features":[81]},{"name":"NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED","features":[81]},{"name":"NS_E_MMSAUTOSERVER_CANTFINDWALKER","features":[81]},{"name":"NS_E_MMS_NOT_SUPPORTED","features":[81]},{"name":"NS_E_MONITOR_GIVEUP","features":[81]},{"name":"NS_E_MP3_FORMAT_NOT_FOUND","features":[81]},{"name":"NS_E_MPDB_GENERIC","features":[81]},{"name":"NS_E_MSAUDIO_NOT_INSTALLED","features":[81]},{"name":"NS_E_MSBD_NO_LONGER_SUPPORTED","features":[81]},{"name":"NS_E_MULTICAST_DISABLED","features":[81]},{"name":"NS_E_MULTICAST_PLUGIN_NOT_ENABLED","features":[81]},{"name":"NS_E_MULTIPLE_AUDIO_CODECS","features":[81]},{"name":"NS_E_MULTIPLE_AUDIO_FORMATS","features":[81]},{"name":"NS_E_MULTIPLE_FILE_BITRATES","features":[81]},{"name":"NS_E_MULTIPLE_SCRIPT_BITRATES","features":[81]},{"name":"NS_E_MULTIPLE_VBR_AUDIENCES","features":[81]},{"name":"NS_E_MULTIPLE_VIDEO_CODECS","features":[81]},{"name":"NS_E_MULTIPLE_VIDEO_SIZES","features":[81]},{"name":"NS_E_NAMESPACE_BAD_NAME","features":[81]},{"name":"NS_E_NAMESPACE_BUFFER_TOO_SMALL","features":[81]},{"name":"NS_E_NAMESPACE_CALLBACK_NOT_FOUND","features":[81]},{"name":"NS_E_NAMESPACE_DUPLICATE_CALLBACK","features":[81]},{"name":"NS_E_NAMESPACE_DUPLICATE_NAME","features":[81]},{"name":"NS_E_NAMESPACE_EMPTY_NAME","features":[81]},{"name":"NS_E_NAMESPACE_INDEX_TOO_LARGE","features":[81]},{"name":"NS_E_NAMESPACE_NAME_TOO_LONG","features":[81]},{"name":"NS_E_NAMESPACE_NODE_CONFLICT","features":[81]},{"name":"NS_E_NAMESPACE_NODE_NOT_FOUND","features":[81]},{"name":"NS_E_NAMESPACE_TOO_MANY_CALLBACKS","features":[81]},{"name":"NS_E_NAMESPACE_WRONG_PERSIST","features":[81]},{"name":"NS_E_NAMESPACE_WRONG_SECURITY","features":[81]},{"name":"NS_E_NAMESPACE_WRONG_TYPE","features":[81]},{"name":"NS_E_NEED_CORE_REFERENCE","features":[81]},{"name":"NS_E_NEED_TO_ASK_USER","features":[81]},{"name":"NS_E_NETWORK_BUSY","features":[81]},{"name":"NS_E_NETWORK_RESOURCE_FAILURE","features":[81]},{"name":"NS_E_NETWORK_SERVICE_FAILURE","features":[81]},{"name":"NS_E_NETWORK_SINK_WRITE","features":[81]},{"name":"NS_E_NET_READ","features":[81]},{"name":"NS_E_NET_WRITE","features":[81]},{"name":"NS_E_NOCONNECTION","features":[81]},{"name":"NS_E_NOFUNNEL","features":[81]},{"name":"NS_E_NOMATCHING_ELEMENT","features":[81]},{"name":"NS_E_NOMATCHING_MEDIASOURCE","features":[81]},{"name":"NS_E_NONSQUAREPIXELMODE_MISMATCH","features":[81]},{"name":"NS_E_NOREGISTEREDWALKER","features":[81]},{"name":"NS_E_NOSOURCEGROUPS","features":[81]},{"name":"NS_E_NOSTATSAVAILABLE","features":[81]},{"name":"NS_E_NOTARCHIVING","features":[81]},{"name":"NS_E_NOTHING_TO_DO","features":[81]},{"name":"NS_E_NOTITLES","features":[81]},{"name":"NS_E_NOT_CONFIGURED","features":[81]},{"name":"NS_E_NOT_CONNECTED","features":[81]},{"name":"NS_E_NOT_CONTENT_PARTNER_TRACK","features":[81]},{"name":"NS_E_NOT_LICENSED","features":[81]},{"name":"NS_E_NOT_REBUILDING","features":[81]},{"name":"NS_E_NO_ACTIVE_SOURCEGROUP","features":[81]},{"name":"NS_E_NO_AUDIENCES","features":[81]},{"name":"NS_E_NO_AUDIODATA","features":[81]},{"name":"NS_E_NO_AUDIO_COMPAT","features":[81]},{"name":"NS_E_NO_AUDIO_TIMECOMPRESSION","features":[81]},{"name":"NS_E_NO_CD","features":[81]},{"name":"NS_E_NO_CD_BURNER","features":[81]},{"name":"NS_E_NO_CHANNELS","features":[81]},{"name":"NS_E_NO_DATAVIEW_SUPPORT","features":[81]},{"name":"NS_E_NO_DEVICE","features":[81]},{"name":"NS_E_NO_ERROR_STRING_FOUND","features":[81]},{"name":"NS_E_NO_EXISTING_PACKETIZER","features":[81]},{"name":"NS_E_NO_FORMATS","features":[81]},{"name":"NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER","features":[81]},{"name":"NS_E_NO_LOCALPLAY","features":[81]},{"name":"NS_E_NO_MBR_WITH_TIMECODE","features":[81]},{"name":"NS_E_NO_MEDIAFORMAT_IN_SOURCE","features":[81]},{"name":"NS_E_NO_MEDIA_IN_AUDIENCE","features":[81]},{"name":"NS_E_NO_MEDIA_PROTOCOL","features":[81]},{"name":"NS_E_NO_MORE_SAMPLES","features":[81]},{"name":"NS_E_NO_MULTICAST","features":[81]},{"name":"NS_E_NO_MULTIPASS_FOR_LIVEDEVICE","features":[81]},{"name":"NS_E_NO_NEW_CONNECTIONS","features":[81]},{"name":"NS_E_NO_PAL_INVERSE_TELECINE","features":[81]},{"name":"NS_E_NO_PDA","features":[81]},{"name":"NS_E_NO_PROFILE_IN_SOURCEGROUP","features":[81]},{"name":"NS_E_NO_PROFILE_NAME","features":[81]},{"name":"NS_E_NO_REALTIME_PREPROCESS","features":[81]},{"name":"NS_E_NO_REALTIME_TIMECOMPRESSION","features":[81]},{"name":"NS_E_NO_REFERENCES","features":[81]},{"name":"NS_E_NO_REPEAT_PREPROCESS","features":[81]},{"name":"NS_E_NO_SCRIPT_ENGINE","features":[81]},{"name":"NS_E_NO_SCRIPT_STREAM","features":[81]},{"name":"NS_E_NO_SERVER_CONTACT","features":[81]},{"name":"NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS","features":[81]},{"name":"NS_E_NO_SPECIFIED_DEVICE","features":[81]},{"name":"NS_E_NO_STREAM","features":[81]},{"name":"NS_E_NO_TWOPASS_TIMECOMPRESSION","features":[81]},{"name":"NS_E_NO_VALID_OUTPUT_STREAM","features":[81]},{"name":"NS_E_NO_VALID_SOURCE_PLUGIN","features":[81]},{"name":"NS_E_NUM_LANGUAGE_MISMATCH","features":[81]},{"name":"NS_E_OFFLINE_MODE","features":[81]},{"name":"NS_E_OPEN_CONTAINING_FOLDER_FAILED","features":[81]},{"name":"NS_E_OPEN_FILE_LIMIT","features":[81]},{"name":"NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED","features":[81]},{"name":"NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED","features":[81]},{"name":"NS_E_PACKETSINK_UNKNOWN_FEC_STREAM","features":[81]},{"name":"NS_E_PAGING_ERROR","features":[81]},{"name":"NS_E_PARTIALLY_REBUILT_DISK","features":[81]},{"name":"NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP","features":[81]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_INTERNET","features":[81]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_LOCATION","features":[81]},{"name":"NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST","features":[81]},{"name":"NS_E_PDA_CANNOT_TRANSCODE","features":[81]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO","features":[81]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE","features":[81]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO","features":[81]},{"name":"NS_E_PDA_CEWMDM_DRM_ERROR","features":[81]},{"name":"NS_E_PDA_DELETE_FAILED","features":[81]},{"name":"NS_E_PDA_DEVICESUPPORTDISABLED","features":[81]},{"name":"NS_E_PDA_DEVICE_FULL","features":[81]},{"name":"NS_E_PDA_DEVICE_FULL_IN_SESSION","features":[81]},{"name":"NS_E_PDA_DEVICE_NOT_RESPONDING","features":[81]},{"name":"NS_E_PDA_ENCODER_NOT_RESPONDING","features":[81]},{"name":"NS_E_PDA_FAILED_TO_BURN","features":[81]},{"name":"NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE","features":[81]},{"name":"NS_E_PDA_FAILED_TO_RETRIEVE_FILE","features":[81]},{"name":"NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE","features":[81]},{"name":"NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO","features":[81]},{"name":"NS_E_PDA_FAIL_READ_WAVE_FILE","features":[81]},{"name":"NS_E_PDA_FAIL_SELECT_DEVICE","features":[81]},{"name":"NS_E_PDA_INITIALIZINGDEVICES","features":[81]},{"name":"NS_E_PDA_MANUALDEVICE","features":[81]},{"name":"NS_E_PDA_NO_LONGER_AVAILABLE","features":[81]},{"name":"NS_E_PDA_NO_TRANSCODE_OF_DRM","features":[81]},{"name":"NS_E_PDA_OBSOLETE_SP","features":[81]},{"name":"NS_E_PDA_PARTNERSHIPNOTEXIST","features":[81]},{"name":"NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG","features":[81]},{"name":"NS_E_PDA_SYNC_FAILED","features":[81]},{"name":"NS_E_PDA_SYNC_LOGIN_ERROR","features":[81]},{"name":"NS_E_PDA_SYNC_RUNNING","features":[81]},{"name":"NS_E_PDA_TITLE_COLLISION","features":[81]},{"name":"NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY","features":[81]},{"name":"NS_E_PDA_TOO_MANY_FILE_COLLISIONS","features":[81]},{"name":"NS_E_PDA_TRANSCODECACHEFULL","features":[81]},{"name":"NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND","features":[81]},{"name":"NS_E_PDA_TRANSCODE_NOT_PERMITTED","features":[81]},{"name":"NS_E_PDA_UNSPECIFIED_ERROR","features":[81]},{"name":"NS_E_PDA_UNSUPPORTED_FORMAT","features":[81]},{"name":"NS_E_PLAYLIST_CONTAINS_ERRORS","features":[81]},{"name":"NS_E_PLAYLIST_END_RECEDING","features":[81]},{"name":"NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING","features":[81]},{"name":"NS_E_PLAYLIST_ENTRY_HAS_CHANGED","features":[81]},{"name":"NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST","features":[81]},{"name":"NS_E_PLAYLIST_ENTRY_SEEK","features":[81]},{"name":"NS_E_PLAYLIST_PARSE_FAILURE","features":[81]},{"name":"NS_E_PLAYLIST_PLUGIN_NOT_FOUND","features":[81]},{"name":"NS_E_PLAYLIST_RECURSIVE_PLAYLISTS","features":[81]},{"name":"NS_E_PLAYLIST_SHUTDOWN","features":[81]},{"name":"NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS","features":[81]},{"name":"NS_E_PLAYLIST_UNSUPPORTED_ENTRY","features":[81]},{"name":"NS_E_PLUGIN_CLSID_INVALID","features":[81]},{"name":"NS_E_PLUGIN_ERROR_REPORTED","features":[81]},{"name":"NS_E_PLUGIN_NOTSHUTDOWN","features":[81]},{"name":"NS_E_PORT_IN_USE","features":[81]},{"name":"NS_E_PORT_IN_USE_HTTP","features":[81]},{"name":"NS_E_PROCESSINGSHOWSYNCWIZARD","features":[81]},{"name":"NS_E_PROFILE_MISMATCH","features":[81]},{"name":"NS_E_PROPERTY_NOT_FOUND","features":[81]},{"name":"NS_E_PROPERTY_NOT_SUPPORTED","features":[81]},{"name":"NS_E_PROPERTY_READ_ONLY","features":[81]},{"name":"NS_E_PROTECTED_CONTENT","features":[81]},{"name":"NS_E_PROTOCOL_MISMATCH","features":[81]},{"name":"NS_E_PROXY_ACCESSDENIED","features":[81]},{"name":"NS_E_PROXY_CONNECT_TIMEOUT","features":[81]},{"name":"NS_E_PROXY_DNS_TIMEOUT","features":[81]},{"name":"NS_E_PROXY_NOT_FOUND","features":[81]},{"name":"NS_E_PROXY_SOURCE_ACCESSDENIED","features":[81]},{"name":"NS_E_PROXY_TIMEOUT","features":[81]},{"name":"NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED","features":[81]},{"name":"NS_E_PUBLISHING_POINT_REMOVED","features":[81]},{"name":"NS_E_PUBLISHING_POINT_STOPPED","features":[81]},{"name":"NS_E_PUSH_CANNOTCONNECT","features":[81]},{"name":"NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME","features":[81]},{"name":"NS_E_REBOOT_RECOMMENDED","features":[81]},{"name":"NS_E_REBOOT_REQUIRED","features":[81]},{"name":"NS_E_RECORDQ_DISK_FULL","features":[81]},{"name":"NS_E_REDBOOK_ENABLED_WHILE_COPYING","features":[81]},{"name":"NS_E_REDIRECT","features":[81]},{"name":"NS_E_REDIRECT_TO_PROXY","features":[81]},{"name":"NS_E_REFUSED_BY_SERVER","features":[81]},{"name":"NS_E_REG_FLUSH_FAILURE","features":[81]},{"name":"NS_E_REMIRRORED_DISK","features":[81]},{"name":"NS_E_REQUIRE_STREAMING_CLIENT","features":[81]},{"name":"NS_E_RESET_SOCKET_CONNECTION","features":[81]},{"name":"NS_E_RESOURCE_GONE","features":[81]},{"name":"NS_E_SAME_AS_INPUT_COMBINATION","features":[81]},{"name":"NS_E_SCHEMA_CLASSIFY_FAILURE","features":[81]},{"name":"NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED","features":[81]},{"name":"NS_E_SDK_BUFFERTOOSMALL","features":[81]},{"name":"NS_E_SERVER_ACCESSDENIED","features":[81]},{"name":"NS_E_SERVER_DNS_TIMEOUT","features":[81]},{"name":"NS_E_SERVER_NOT_FOUND","features":[81]},{"name":"NS_E_SERVER_UNAVAILABLE","features":[81]},{"name":"NS_E_SESSION_INVALID","features":[81]},{"name":"NS_E_SESSION_NOT_FOUND","features":[81]},{"name":"NS_E_SETUP_BLOCKED","features":[81]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED","features":[81]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE","features":[81]},{"name":"NS_E_SETUP_IGNORABLE_FAILURE","features":[81]},{"name":"NS_E_SETUP_INCOMPLETE","features":[81]},{"name":"NS_E_SET_DISK_UID_FAILED","features":[81]},{"name":"NS_E_SHARING_STATE_OUT_OF_SYNC","features":[81]},{"name":"NS_E_SHARING_VIOLATION","features":[81]},{"name":"NS_E_SHUTDOWN","features":[81]},{"name":"NS_E_SLOW_READ_DIGITAL","features":[81]},{"name":"NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION","features":[81]},{"name":"NS_E_SMPTEMODE_MISMATCH","features":[81]},{"name":"NS_E_SOURCEGROUP_NOTPREPARED","features":[81]},{"name":"NS_E_SOURCE_CANNOT_LOOP","features":[81]},{"name":"NS_E_SOURCE_NOTSPECIFIED","features":[81]},{"name":"NS_E_SOURCE_PLUGIN_NOT_FOUND","features":[81]},{"name":"NS_E_SPEECHEDL_ON_NON_MIXEDMODE","features":[81]},{"name":"NS_E_STALE_PRESENTATION","features":[81]},{"name":"NS_E_STREAM_END","features":[81]},{"name":"NS_E_STRIDE_REFUSED","features":[81]},{"name":"NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT","features":[81]},{"name":"NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED","features":[81]},{"name":"NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED","features":[81]},{"name":"NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS","features":[81]},{"name":"NS_E_SYNCWIZ_DEVICE_FULL","features":[81]},{"name":"NS_E_TABLE_KEY_NOT_FOUND","features":[81]},{"name":"NS_E_TAMPERED_CONTENT","features":[81]},{"name":"NS_E_TCP_DISABLED","features":[81]},{"name":"NS_E_TIGER_FAIL","features":[81]},{"name":"NS_E_TIMECODE_REQUIRES_VIDEOSTREAM","features":[81]},{"name":"NS_E_TIMEOUT","features":[81]},{"name":"NS_E_TITLE_BITRATE","features":[81]},{"name":"NS_E_TITLE_SIZE_EXCEEDED","features":[81]},{"name":"NS_E_TOO_MANY_AUDIO","features":[81]},{"name":"NS_E_TOO_MANY_DEVICECONTROL","features":[81]},{"name":"NS_E_TOO_MANY_HOPS","features":[81]},{"name":"NS_E_TOO_MANY_MULTICAST_SINKS","features":[81]},{"name":"NS_E_TOO_MANY_SESS","features":[81]},{"name":"NS_E_TOO_MANY_TITLES","features":[81]},{"name":"NS_E_TOO_MANY_VIDEO","features":[81]},{"name":"NS_E_TOO_MUCH_DATA","features":[81]},{"name":"NS_E_TOO_MUCH_DATA_FROM_SERVER","features":[81]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE","features":[81]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE","features":[81]},{"name":"NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED","features":[81]},{"name":"NS_E_TRANSCODE_DELETECACHEERROR","features":[81]},{"name":"NS_E_TRANSFORM_PLUGIN_INVALID","features":[81]},{"name":"NS_E_TRANSFORM_PLUGIN_NOT_FOUND","features":[81]},{"name":"NS_E_UDP_DISABLED","features":[81]},{"name":"NS_E_UNABLE_TO_CREATE_RIP_LOCATION","features":[81]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[81]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[81]},{"name":"NS_E_UNCOMP_COMP_COMBINATION","features":[81]},{"name":"NS_E_UNEXPECTED_DISPLAY_SETTINGS","features":[81]},{"name":"NS_E_UNEXPECTED_MSAUDIO_ERROR","features":[81]},{"name":"NS_E_UNKNOWN_PROTOCOL","features":[81]},{"name":"NS_E_UNRECOGNIZED_STREAM_TYPE","features":[81]},{"name":"NS_E_UNSUPPORTED_ARCHIVEOPERATION","features":[81]},{"name":"NS_E_UNSUPPORTED_ARCHIVETYPE","features":[81]},{"name":"NS_E_UNSUPPORTED_ENCODER_DEVICE","features":[81]},{"name":"NS_E_UNSUPPORTED_LANGUAGE","features":[81]},{"name":"NS_E_UNSUPPORTED_LOAD_TYPE","features":[81]},{"name":"NS_E_UNSUPPORTED_PROPERTY","features":[81]},{"name":"NS_E_UNSUPPORTED_SOURCETYPE","features":[81]},{"name":"NS_E_URLLIST_INVALIDFORMAT","features":[81]},{"name":"NS_E_USER_STOP","features":[81]},{"name":"NS_E_USE_FILE_SOURCE","features":[81]},{"name":"NS_E_VBRMODE_MISMATCH","features":[81]},{"name":"NS_E_VIDCAPCREATEWINDOW","features":[81]},{"name":"NS_E_VIDCAPDRVINUSE","features":[81]},{"name":"NS_E_VIDCAPSTARTFAILED","features":[81]},{"name":"NS_E_VIDEODEVICE_BUSY","features":[81]},{"name":"NS_E_VIDEODEVICE_UNEXPECTED","features":[81]},{"name":"NS_E_VIDEODRIVER_UNSTABLE","features":[81]},{"name":"NS_E_VIDEO_BITRATE_STEPDOWN","features":[81]},{"name":"NS_E_VIDEO_CODEC_ERROR","features":[81]},{"name":"NS_E_VIDEO_CODEC_NOT_INSTALLED","features":[81]},{"name":"NS_E_VIDSOURCECOMPRESSION","features":[81]},{"name":"NS_E_VIDSOURCESIZE","features":[81]},{"name":"NS_E_WALKER_SERVER","features":[81]},{"name":"NS_E_WALKER_UNKNOWN","features":[81]},{"name":"NS_E_WALKER_USAGE","features":[81]},{"name":"NS_E_WAVE_OPEN","features":[81]},{"name":"NS_E_WINSOCK_ERROR_STRING","features":[81]},{"name":"NS_E_WIZARD_RUNNING","features":[81]},{"name":"NS_E_WMDM_REVOKED","features":[81]},{"name":"NS_E_WMDRM_DEPRECATED","features":[81]},{"name":"NS_E_WME_VERSION_MISMATCH","features":[81]},{"name":"NS_E_WMG_CANNOTQUEUE","features":[81]},{"name":"NS_E_WMG_COPP_SECURITY_INVALID","features":[81]},{"name":"NS_E_WMG_COPP_UNSUPPORTED","features":[81]},{"name":"NS_E_WMG_FILETRANSFERNOTALLOWED","features":[81]},{"name":"NS_E_WMG_INVALIDSTATE","features":[81]},{"name":"NS_E_WMG_INVALID_COPP_CERTIFICATE","features":[81]},{"name":"NS_E_WMG_LICENSE_TAMPERED","features":[81]},{"name":"NS_E_WMG_NOSDKINTERFACE","features":[81]},{"name":"NS_E_WMG_NOTALLOUTPUTSRENDERED","features":[81]},{"name":"NS_E_WMG_PLUGINUNAVAILABLE","features":[81]},{"name":"NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED","features":[81]},{"name":"NS_E_WMG_RATEUNAVAILABLE","features":[81]},{"name":"NS_E_WMG_SINKALREADYEXISTS","features":[81]},{"name":"NS_E_WMG_UNEXPECTEDPREROLLSTATUS","features":[81]},{"name":"NS_E_WMPBR_BACKUPCANCEL","features":[81]},{"name":"NS_E_WMPBR_BACKUPRESTOREFAILED","features":[81]},{"name":"NS_E_WMPBR_DRIVE_INVALID","features":[81]},{"name":"NS_E_WMPBR_ERRORWITHURL","features":[81]},{"name":"NS_E_WMPBR_NAMECOLLISION","features":[81]},{"name":"NS_E_WMPBR_NOLISTENER","features":[81]},{"name":"NS_E_WMPBR_RESTORECANCEL","features":[81]},{"name":"NS_E_WMPCORE_BUFFERTOOSMALL","features":[81]},{"name":"NS_E_WMPCORE_BUSY","features":[81]},{"name":"NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT","features":[81]},{"name":"NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED","features":[81]},{"name":"NS_E_WMPCORE_CODEC_NOT_FOUND","features":[81]},{"name":"NS_E_WMPCORE_CODEC_NOT_TRUSTED","features":[81]},{"name":"NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE","features":[81]},{"name":"NS_E_WMPCORE_DEVICE_DRIVERS_MISSING","features":[81]},{"name":"NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE","features":[81]},{"name":"NS_E_WMPCORE_ERRORSINKNOTREGISTERED","features":[81]},{"name":"NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST","features":[81]},{"name":"NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE","features":[81]},{"name":"NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST","features":[81]},{"name":"NS_E_WMPCORE_FILE_NOT_FOUND","features":[81]},{"name":"NS_E_WMPCORE_GRAPH_NOT_IN_LIST","features":[81]},{"name":"NS_E_WMPCORE_INVALIDPLAYLISTMODE","features":[81]},{"name":"NS_E_WMPCORE_INVALID_PLAYLIST_URL","features":[81]},{"name":"NS_E_WMPCORE_ITEMNOTINPLAYLIST","features":[81]},{"name":"NS_E_WMPCORE_LIST_ENTRY_NO_REF","features":[81]},{"name":"NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY","features":[81]},{"name":"NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE","features":[81]},{"name":"NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED","features":[81]},{"name":"NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST","features":[81]},{"name":"NS_E_WMPCORE_MEDIA_UNAVAILABLE","features":[81]},{"name":"NS_E_WMPCORE_MEDIA_URL_TOO_LONG","features":[81]},{"name":"NS_E_WMPCORE_MISMATCHED_RUNTIME","features":[81]},{"name":"NS_E_WMPCORE_MISNAMED_FILE","features":[81]},{"name":"NS_E_WMPCORE_NOBROWSER","features":[81]},{"name":"NS_E_WMPCORE_NOSOURCEURLSTRING","features":[81]},{"name":"NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST","features":[81]},{"name":"NS_E_WMPCORE_NO_REF_IN_ENTRY","features":[81]},{"name":"NS_E_WMPCORE_PLAYLISTEMPTY","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE","features":[81]},{"name":"NS_E_WMPCORE_PLAYLIST_STACK_EMPTY","features":[81]},{"name":"NS_E_WMPCORE_SOME_CODECS_MISSING","features":[81]},{"name":"NS_E_WMPCORE_TEMP_FILE_NOT_FOUND","features":[81]},{"name":"NS_E_WMPCORE_UNAVAILABLE","features":[81]},{"name":"NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL","features":[81]},{"name":"NS_E_WMPCORE_USER_CANCEL","features":[81]},{"name":"NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION","features":[81]},{"name":"NS_E_WMPCORE_WEBHELPFAILED","features":[81]},{"name":"NS_E_WMPCORE_WMX_ENTRYREF_NO_REF","features":[81]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY","features":[81]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL","features":[81]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY","features":[81]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL","features":[81]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY","features":[81]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL","features":[81]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY","features":[81]},{"name":"NS_E_WMPFLASH_CANT_FIND_COM_SERVER","features":[81]},{"name":"NS_E_WMPFLASH_INCOMPATIBLEVERSION","features":[81]},{"name":"NS_E_WMPIM_DIALUPFAILED","features":[81]},{"name":"NS_E_WMPIM_USERCANCELED","features":[81]},{"name":"NS_E_WMPIM_USEROFFLINE","features":[81]},{"name":"NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[81]},{"name":"NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE","features":[81]},{"name":"NS_E_WMPOCX_NOT_RUNNING_REMOTELY","features":[81]},{"name":"NS_E_WMPOCX_NO_ACTIVE_CORE","features":[81]},{"name":"NS_E_WMPOCX_NO_REMOTE_CORE","features":[81]},{"name":"NS_E_WMPOCX_NO_REMOTE_WINDOW","features":[81]},{"name":"NS_E_WMPOCX_PLAYER_NOT_DOCKED","features":[81]},{"name":"NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING","features":[81]},{"name":"NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN","features":[81]},{"name":"NS_E_WMPXML_ATTRIBUTENOTFOUND","features":[81]},{"name":"NS_E_WMPXML_EMPTYDOC","features":[81]},{"name":"NS_E_WMPXML_ENDOFDATA","features":[81]},{"name":"NS_E_WMPXML_NOERROR","features":[81]},{"name":"NS_E_WMPXML_PARSEERROR","features":[81]},{"name":"NS_E_WMPXML_PINOTFOUND","features":[81]},{"name":"NS_E_WMPZIP_CORRUPT","features":[81]},{"name":"NS_E_WMPZIP_FILENOTFOUND","features":[81]},{"name":"NS_E_WMPZIP_NOTAZIPFILE","features":[81]},{"name":"NS_E_WMP_ACCESS_DENIED","features":[81]},{"name":"NS_E_WMP_ADDTOLIBRARY_FAILED","features":[81]},{"name":"NS_E_WMP_ALREADY_IN_USE","features":[81]},{"name":"NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED","features":[81]},{"name":"NS_E_WMP_AUDIO_DEVICE_LOST","features":[81]},{"name":"NS_E_WMP_AUDIO_HW_PROBLEM","features":[81]},{"name":"NS_E_WMP_AUTOPLAY_INVALID_STATE","features":[81]},{"name":"NS_E_WMP_BAD_DRIVER","features":[81]},{"name":"NS_E_WMP_BMP_BITMAP_NOT_CREATED","features":[81]},{"name":"NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED","features":[81]},{"name":"NS_E_WMP_BMP_INVALID_BITMASK","features":[81]},{"name":"NS_E_WMP_BMP_INVALID_FORMAT","features":[81]},{"name":"NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED","features":[81]},{"name":"NS_E_WMP_BSTR_TOO_LONG","features":[81]},{"name":"NS_E_WMP_BURN_DISC_OVERFLOW","features":[81]},{"name":"NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE","features":[81]},{"name":"NS_E_WMP_CANNOT_FIND_FILE","features":[81]},{"name":"NS_E_WMP_CANNOT_FIND_FOLDER","features":[81]},{"name":"NS_E_WMP_CANT_PLAY_PROTECTED","features":[81]},{"name":"NS_E_WMP_CD_ANOTHER_USER","features":[81]},{"name":"NS_E_WMP_CD_STASH_NO_SPACE","features":[81]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_4CC","features":[81]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG","features":[81]},{"name":"NS_E_WMP_COMPONENT_REVOKED","features":[81]},{"name":"NS_E_WMP_CONNECT_TIMEOUT","features":[81]},{"name":"NS_E_WMP_CONVERT_FILE_CORRUPT","features":[81]},{"name":"NS_E_WMP_CONVERT_FILE_FAILED","features":[81]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL","features":[81]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL","features":[81]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL","features":[81]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL","features":[81]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER","features":[81]},{"name":"NS_E_WMP_CS_JPGPOSITIONIMAGE","features":[81]},{"name":"NS_E_WMP_CS_NOTEVENLYDIVISIBLE","features":[81]},{"name":"NS_E_WMP_DAI_SONGTOOSHORT","features":[81]},{"name":"NS_E_WMP_DRM_ACQUIRING_LICENSE","features":[81]},{"name":"NS_E_WMP_DRM_CANNOT_RESTORE","features":[81]},{"name":"NS_E_WMP_DRM_COMPONENT_FAILURE","features":[81]},{"name":"NS_E_WMP_DRM_CORRUPT_BACKUP","features":[81]},{"name":"NS_E_WMP_DRM_DRIVER_AUTH_FAILURE","features":[81]},{"name":"NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE","features":[81]},{"name":"NS_E_WMP_DRM_INDIV_FAILED","features":[81]},{"name":"NS_E_WMP_DRM_INVALID_SIG","features":[81]},{"name":"NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED","features":[81]},{"name":"NS_E_WMP_DRM_LICENSE_EXPIRED","features":[81]},{"name":"NS_E_WMP_DRM_LICENSE_NOSAP","features":[81]},{"name":"NS_E_WMP_DRM_LICENSE_NOTACQUIRED","features":[81]},{"name":"NS_E_WMP_DRM_LICENSE_NOTENABLED","features":[81]},{"name":"NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE","features":[81]},{"name":"NS_E_WMP_DRM_LICENSE_UNUSABLE","features":[81]},{"name":"NS_E_WMP_DRM_NEEDS_AUTHORIZATION","features":[81]},{"name":"NS_E_WMP_DRM_NEW_HARDWARE","features":[81]},{"name":"NS_E_WMP_DRM_NOT_ACQUIRING","features":[81]},{"name":"NS_E_WMP_DRM_NO_DEVICE_CERT","features":[81]},{"name":"NS_E_WMP_DRM_NO_RIGHTS","features":[81]},{"name":"NS_E_WMP_DRM_NO_SECURE_CLOCK","features":[81]},{"name":"NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[81]},{"name":"NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT","features":[81]},{"name":"NS_E_WMP_ERASE_FAILED","features":[81]},{"name":"NS_E_WMP_EXTERNAL_NOTREADY","features":[81]},{"name":"NS_E_WMP_FAILED_TO_OPEN_IMAGE","features":[81]},{"name":"NS_E_WMP_FAILED_TO_OPEN_WMD","features":[81]},{"name":"NS_E_WMP_FAILED_TO_RIP_TRACK","features":[81]},{"name":"NS_E_WMP_FAILED_TO_SAVE_FILE","features":[81]},{"name":"NS_E_WMP_FAILED_TO_SAVE_PLAYLIST","features":[81]},{"name":"NS_E_WMP_FILESCANALREADYSTARTED","features":[81]},{"name":"NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD","features":[81]},{"name":"NS_E_WMP_FILE_NO_DURATION","features":[81]},{"name":"NS_E_WMP_FILE_OPEN_FAILED","features":[81]},{"name":"NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD","features":[81]},{"name":"NS_E_WMP_FORMAT_FAILED","features":[81]},{"name":"NS_E_WMP_GIF_BAD_VERSION_NUMBER","features":[81]},{"name":"NS_E_WMP_GIF_INVALID_FORMAT","features":[81]},{"name":"NS_E_WMP_GIF_NO_IMAGE_IN_FILE","features":[81]},{"name":"NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE","features":[81]},{"name":"NS_E_WMP_GOFULLSCREEN_FAILED","features":[81]},{"name":"NS_E_WMP_HME_INVALIDOBJECTID","features":[81]},{"name":"NS_E_WMP_HME_NOTSEARCHABLEFORITEMS","features":[81]},{"name":"NS_E_WMP_HME_STALEREQUEST","features":[81]},{"name":"NS_E_WMP_HWND_NOTFOUND","features":[81]},{"name":"NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED","features":[81]},{"name":"NS_E_WMP_IMAGE_INVALID_FORMAT","features":[81]},{"name":"NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY","features":[81]},{"name":"NS_E_WMP_IMAPI2_ERASE_FAIL","features":[81]},{"name":"NS_E_WMP_IMAPI_DEVICE_BUSY","features":[81]},{"name":"NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE","features":[81]},{"name":"NS_E_WMP_IMAPI_DEVICE_NOTPRESENT","features":[81]},{"name":"NS_E_WMP_IMAPI_FAILURE","features":[81]},{"name":"NS_E_WMP_IMAPI_GENERIC","features":[81]},{"name":"NS_E_WMP_IMAPI_LOSS_OF_STREAMING","features":[81]},{"name":"NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE","features":[81]},{"name":"NS_E_WMP_INVALID_ASX","features":[81]},{"name":"NS_E_WMP_INVALID_KEY","features":[81]},{"name":"NS_E_WMP_INVALID_LIBRARY_ADD","features":[81]},{"name":"NS_E_WMP_INVALID_MAX_VAL","features":[81]},{"name":"NS_E_WMP_INVALID_MIN_VAL","features":[81]},{"name":"NS_E_WMP_INVALID_PROTOCOL","features":[81]},{"name":"NS_E_WMP_INVALID_REQUEST","features":[81]},{"name":"NS_E_WMP_INVALID_SKIN","features":[81]},{"name":"NS_E_WMP_JPGTRANSPARENCY","features":[81]},{"name":"NS_E_WMP_JPG_BAD_DCTSIZE","features":[81]},{"name":"NS_E_WMP_JPG_BAD_PRECISION","features":[81]},{"name":"NS_E_WMP_JPG_BAD_VERSION_NUMBER","features":[81]},{"name":"NS_E_WMP_JPG_CCIR601_NOTIMPL","features":[81]},{"name":"NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL","features":[81]},{"name":"NS_E_WMP_JPG_IMAGE_TOO_BIG","features":[81]},{"name":"NS_E_WMP_JPG_INVALID_FORMAT","features":[81]},{"name":"NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL","features":[81]},{"name":"NS_E_WMP_JPG_NO_IMAGE_IN_FILE","features":[81]},{"name":"NS_E_WMP_JPG_READ_ERROR","features":[81]},{"name":"NS_E_WMP_JPG_SOF_UNSUPPORTED","features":[81]},{"name":"NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE","features":[81]},{"name":"NS_E_WMP_JPG_UNKNOWN_MARKER","features":[81]},{"name":"NS_E_WMP_LICENSE_REQUIRED","features":[81]},{"name":"NS_E_WMP_LICENSE_RESTRICTS","features":[81]},{"name":"NS_E_WMP_LOCKEDINSKINMODE","features":[81]},{"name":"NS_E_WMP_LOGON_FAILURE","features":[81]},{"name":"NS_E_WMP_MF_CODE_EXPIRED","features":[81]},{"name":"NS_E_WMP_MLS_STALE_DATA","features":[81]},{"name":"NS_E_WMP_MMS_NOT_SUPPORTED","features":[81]},{"name":"NS_E_WMP_MSSAP_NOT_AVAILABLE","features":[81]},{"name":"NS_E_WMP_MULTICAST_DISABLED","features":[81]},{"name":"NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST","features":[81]},{"name":"NS_E_WMP_NEED_UPGRADE","features":[81]},{"name":"NS_E_WMP_NETWORK_ERROR","features":[81]},{"name":"NS_E_WMP_NETWORK_FIREWALL","features":[81]},{"name":"NS_E_WMP_NETWORK_RESOURCE_FAILURE","features":[81]},{"name":"NS_E_WMP_NONMEDIA_FILES","features":[81]},{"name":"NS_E_WMP_NO_DISK_SPACE","features":[81]},{"name":"NS_E_WMP_NO_PROTOCOLS_SELECTED","features":[81]},{"name":"NS_E_WMP_NO_REMOVABLE_MEDIA","features":[81]},{"name":"NS_E_WMP_OUTOFMEMORY","features":[81]},{"name":"NS_E_WMP_PATH_ALREADY_IN_LIBRARY","features":[81]},{"name":"NS_E_WMP_PLAYLIST_EXISTS","features":[81]},{"name":"NS_E_WMP_PLUGINDLL_NOTFOUND","features":[81]},{"name":"NS_E_WMP_PNG_INVALIDFORMAT","features":[81]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC","features":[81]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH","features":[81]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION","features":[81]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_FILTER","features":[81]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_INTERLACE","features":[81]},{"name":"NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED","features":[81]},{"name":"NS_E_WMP_PROTECTED_CONTENT","features":[81]},{"name":"NS_E_WMP_PROTOCOL_PROBLEM","features":[81]},{"name":"NS_E_WMP_PROXY_CONNECT_TIMEOUT","features":[81]},{"name":"NS_E_WMP_PROXY_NOT_FOUND","features":[81]},{"name":"NS_E_WMP_RBC_JPGMAPPINGIMAGE","features":[81]},{"name":"NS_E_WMP_RECORDING_NOT_ALLOWED","features":[81]},{"name":"NS_E_WMP_RIP_FAILED","features":[81]},{"name":"NS_E_WMP_SAVEAS_READONLY","features":[81]},{"name":"NS_E_WMP_SENDMAILFAILED","features":[81]},{"name":"NS_E_WMP_SERVER_DNS_TIMEOUT","features":[81]},{"name":"NS_E_WMP_SERVER_INACCESSIBLE","features":[81]},{"name":"NS_E_WMP_SERVER_NONEWCONNECTIONS","features":[81]},{"name":"NS_E_WMP_SERVER_NOT_RESPONDING","features":[81]},{"name":"NS_E_WMP_SERVER_SECURITY_ERROR","features":[81]},{"name":"NS_E_WMP_SERVER_UNAVAILABLE","features":[81]},{"name":"NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED","features":[81]},{"name":"NS_E_WMP_TAMPERED_CONTENT","features":[81]},{"name":"NS_E_WMP_UDRM_NOUSERLIST","features":[81]},{"name":"NS_E_WMP_UI_NOSKININZIP","features":[81]},{"name":"NS_E_WMP_UI_NOTATHEMEFILE","features":[81]},{"name":"NS_E_WMP_UI_OBJECTNOTFOUND","features":[81]},{"name":"NS_E_WMP_UI_PASSTHROUGH","features":[81]},{"name":"NS_E_WMP_UI_SECONDHANDLER","features":[81]},{"name":"NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED","features":[81]},{"name":"NS_E_WMP_UI_SUBELEMENTNOTFOUND","features":[81]},{"name":"NS_E_WMP_UI_VERSIONMISMATCH","features":[81]},{"name":"NS_E_WMP_UI_VERSIONPARSE","features":[81]},{"name":"NS_E_WMP_UI_VIEWIDNOTFOUND","features":[81]},{"name":"NS_E_WMP_UNKNOWN_ERROR","features":[81]},{"name":"NS_E_WMP_UNSUPPORTED_FORMAT","features":[81]},{"name":"NS_E_WMP_UPGRADE_APPLICATION","features":[81]},{"name":"NS_E_WMP_URLDOWNLOADFAILED","features":[81]},{"name":"NS_E_WMP_VERIFY_ONLINE","features":[81]},{"name":"NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED","features":[81]},{"name":"NS_E_WMP_WINDOWSAPIFAILURE","features":[81]},{"name":"NS_E_WMP_WMDM_BUSY","features":[81]},{"name":"NS_E_WMP_WMDM_FAILURE","features":[81]},{"name":"NS_E_WMP_WMDM_INCORRECT_RIGHTS","features":[81]},{"name":"NS_E_WMP_WMDM_INTERFACEDEAD","features":[81]},{"name":"NS_E_WMP_WMDM_LICENSE_EXPIRED","features":[81]},{"name":"NS_E_WMP_WMDM_LICENSE_NOTEXIST","features":[81]},{"name":"NS_E_WMP_WMDM_NORIGHTS","features":[81]},{"name":"NS_E_WMP_WMDM_NOTCERTIFIED","features":[81]},{"name":"NS_E_WMR_CANNOT_RENDER_BINARY_STREAM","features":[81]},{"name":"NS_E_WMR_NOCALLBACKAVAILABLE","features":[81]},{"name":"NS_E_WMR_NOSOURCEFILTER","features":[81]},{"name":"NS_E_WMR_PINNOTFOUND","features":[81]},{"name":"NS_E_WMR_PINTYPENOMATCH","features":[81]},{"name":"NS_E_WMR_SAMPLEPROPERTYNOTSET","features":[81]},{"name":"NS_E_WMR_UNSUPPORTEDSTREAM","features":[81]},{"name":"NS_E_WMR_WAITINGONFORMATSWITCH","features":[81]},{"name":"NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM","features":[81]},{"name":"NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS","features":[81]},{"name":"NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST","features":[81]},{"name":"NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE","features":[81]},{"name":"NS_E_WMX_INVALID_FORMAT_OVER_NESTING","features":[81]},{"name":"NS_E_WMX_ITEM_DOES_NOT_EXIST","features":[81]},{"name":"NS_E_WMX_ITEM_TYPE_ILLEGAL","features":[81]},{"name":"NS_E_WMX_ITEM_UNSETTABLE","features":[81]},{"name":"NS_E_WMX_PLAYLIST_EMPTY","features":[81]},{"name":"NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT","features":[81]},{"name":"NS_E_WONT_DO_DIGITAL","features":[81]},{"name":"NS_E_WRONG_OS_VERSION","features":[81]},{"name":"NS_E_WRONG_PUBLISHING_POINT_TYPE","features":[81]},{"name":"NS_E_WSX_INVALID_VERSION","features":[81]},{"name":"NS_I_CATATONIC_AUTO_UNFAIL","features":[81]},{"name":"NS_I_CATATONIC_FAILURE","features":[81]},{"name":"NS_I_CUB_RUNNING","features":[81]},{"name":"NS_I_CUB_START","features":[81]},{"name":"NS_I_CUB_UNFAIL_LINK","features":[81]},{"name":"NS_I_DISK_REBUILD_ABORTED","features":[81]},{"name":"NS_I_DISK_REBUILD_FINISHED","features":[81]},{"name":"NS_I_DISK_REBUILD_STARTED","features":[81]},{"name":"NS_I_DISK_START","features":[81]},{"name":"NS_I_DISK_STOP","features":[81]},{"name":"NS_I_EXISTING_PACKETIZER","features":[81]},{"name":"NS_I_KILL_CONNECTION","features":[81]},{"name":"NS_I_KILL_USERSESSION","features":[81]},{"name":"NS_I_LIMIT_BANDWIDTH","features":[81]},{"name":"NS_I_LIMIT_FUNNELS","features":[81]},{"name":"NS_I_LOGGING_FAILED","features":[81]},{"name":"NS_I_MANUAL_PROXY","features":[81]},{"name":"NS_I_NOLOG_STOP","features":[81]},{"name":"NS_I_PLAYLIST_CHANGE_RECEDING","features":[81]},{"name":"NS_I_REBUILD_DISK","features":[81]},{"name":"NS_I_RECONNECTED","features":[81]},{"name":"NS_I_RESTRIPE_CUB_OUT","features":[81]},{"name":"NS_I_RESTRIPE_DISK_OUT","features":[81]},{"name":"NS_I_RESTRIPE_DONE","features":[81]},{"name":"NS_I_RESTRIPE_START","features":[81]},{"name":"NS_I_START_DISK","features":[81]},{"name":"NS_I_STOP_CUB","features":[81]},{"name":"NS_I_STOP_DISK","features":[81]},{"name":"NS_I_TIGER_START","features":[81]},{"name":"NS_S_CALLABORTED","features":[81]},{"name":"NS_S_CALLPENDING","features":[81]},{"name":"NS_S_CHANGENOTICE","features":[81]},{"name":"NS_S_DEGRADING_QUALITY","features":[81]},{"name":"NS_S_DRM_ACQUIRE_CANCELLED","features":[81]},{"name":"NS_S_DRM_BURNABLE_TRACK","features":[81]},{"name":"NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION","features":[81]},{"name":"NS_S_DRM_INDIVIDUALIZED","features":[81]},{"name":"NS_S_DRM_LICENSE_ACQUIRED","features":[81]},{"name":"NS_S_DRM_MONITOR_CANCELLED","features":[81]},{"name":"NS_S_DRM_NEEDS_INDIVIDUALIZATION","features":[81]},{"name":"NS_S_EOSRECEDING","features":[81]},{"name":"NS_S_NAVIGATION_COMPLETE_WITH_ERRORS","features":[81]},{"name":"NS_S_NEED_TO_BUY_BURN_RIGHTS","features":[81]},{"name":"NS_S_OPERATION_PENDING","features":[81]},{"name":"NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS","features":[81]},{"name":"NS_S_REBOOT_RECOMMENDED","features":[81]},{"name":"NS_S_REBOOT_REQUIRED","features":[81]},{"name":"NS_S_REBUFFERING","features":[81]},{"name":"NS_S_STREAM_TRUNCATED","features":[81]},{"name":"NS_S_TRACK_ALREADY_DOWNLOADED","features":[81]},{"name":"NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE","features":[81]},{"name":"NS_S_TRANSCRYPTOR_EOF","features":[81]},{"name":"NS_S_WMG_ADVISE_DROP_FRAME","features":[81]},{"name":"NS_S_WMG_ADVISE_DROP_TO_KEYFRAME","features":[81]},{"name":"NS_S_WMG_FORCE_DROP_FRAME","features":[81]},{"name":"NS_S_WMPBR_PARTIALSUCCESS","features":[81]},{"name":"NS_S_WMPBR_SUCCESS","features":[81]},{"name":"NS_S_WMPCORE_COMMAND_NOT_AVAILABLE","features":[81]},{"name":"NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING","features":[81]},{"name":"NS_S_WMPCORE_MEDIA_VALIDATION_PENDING","features":[81]},{"name":"NS_S_WMPCORE_MORE_NODES_AVAIABLE","features":[81]},{"name":"NS_S_WMPCORE_PLAYLISTCLEARABORT","features":[81]},{"name":"NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT","features":[81]},{"name":"NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA","features":[81]},{"name":"NS_S_WMPCORE_PLAYLIST_CREATION_PENDING","features":[81]},{"name":"NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS","features":[81]},{"name":"NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED","features":[81]},{"name":"NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED","features":[81]},{"name":"NS_S_WMPEFFECT_OPAQUE","features":[81]},{"name":"NS_S_WMPEFFECT_TRANSPARENT","features":[81]},{"name":"NS_S_WMP_EXCEPTION","features":[81]},{"name":"NS_S_WMP_LOADED_BMP_IMAGE","features":[81]},{"name":"NS_S_WMP_LOADED_GIF_IMAGE","features":[81]},{"name":"NS_S_WMP_LOADED_JPG_IMAGE","features":[81]},{"name":"NS_S_WMP_LOADED_PNG_IMAGE","features":[81]},{"name":"NS_S_WMP_UI_VERSIONMISMATCH","features":[81]},{"name":"NS_S_WMR_ALREADYRENDERED","features":[81]},{"name":"NS_S_WMR_PINTYPEFULLMATCH","features":[81]},{"name":"NS_S_WMR_PINTYPEPARTIALMATCH","features":[81]},{"name":"NS_W_FILE_BANDWIDTH_LIMIT","features":[81]},{"name":"NS_W_SERVER_BANDWIDTH_LIMIT","features":[81]},{"name":"NS_W_UNKNOWN_EVENT","features":[81]},{"name":"OLIADPCMWAVEFORMAT","features":[82,81]},{"name":"OLICELPWAVEFORMAT","features":[82,81]},{"name":"OLIGSMWAVEFORMAT","features":[82,81]},{"name":"OLIOPRWAVEFORMAT","features":[82,81]},{"name":"OLISBCWAVEFORMAT","features":[82,81]},{"name":"OpenDriver","features":[3,81]},{"name":"PD_CAN_DRAW_DIB","features":[81]},{"name":"PD_CAN_STRETCHDIB","features":[81]},{"name":"PD_STRETCHDIB_1_1_OK","features":[81]},{"name":"PD_STRETCHDIB_1_2_OK","features":[81]},{"name":"PD_STRETCHDIB_1_N_OK","features":[81]},{"name":"ROCKWELL_WA1_MIXER","features":[81]},{"name":"ROCKWELL_WA1_MPU401_IN","features":[81]},{"name":"ROCKWELL_WA1_MPU401_OUT","features":[81]},{"name":"ROCKWELL_WA1_SYNTH","features":[81]},{"name":"ROCKWELL_WA1_WAVEIN","features":[81]},{"name":"ROCKWELL_WA1_WAVEOUT","features":[81]},{"name":"ROCKWELL_WA2_MIXER","features":[81]},{"name":"ROCKWELL_WA2_MPU401_IN","features":[81]},{"name":"ROCKWELL_WA2_MPU401_OUT","features":[81]},{"name":"ROCKWELL_WA2_SYNTH","features":[81]},{"name":"ROCKWELL_WA2_WAVEIN","features":[81]},{"name":"ROCKWELL_WA2_WAVEOUT","features":[81]},{"name":"SEARCH_ANY","features":[81]},{"name":"SEARCH_BACKWARD","features":[81]},{"name":"SEARCH_FORWARD","features":[81]},{"name":"SEARCH_KEY","features":[81]},{"name":"SEARCH_NEAREST","features":[81]},{"name":"SEEK_CUR","features":[81]},{"name":"SEEK_END","features":[81]},{"name":"SEEK_SET","features":[81]},{"name":"SIERRAADPCMWAVEFORMAT","features":[82,81]},{"name":"SONARCWAVEFORMAT","features":[82,81]},{"name":"SendDriverMessage","features":[3,81]},{"name":"TARGET_DEVICE_FRIENDLY_NAME","features":[81]},{"name":"TARGET_DEVICE_OPEN_EXCLUSIVELY","features":[81]},{"name":"TASKERR_NOTASKSUPPORT","features":[81]},{"name":"TASKERR_OUTOFMEMORY","features":[81]},{"name":"TDD_BEGINMINPERIOD","features":[81]},{"name":"TDD_ENDMINPERIOD","features":[81]},{"name":"TDD_GETDEVCAPS","features":[81]},{"name":"TDD_GETSYSTEMTIME","features":[81]},{"name":"TDD_KILLTIMEREVENT","features":[81]},{"name":"TDD_SETTIMEREVENT","features":[81]},{"name":"TIMEREVENT","features":[81]},{"name":"TRUESPEECHWAVEFORMAT","features":[82,81]},{"name":"VADMAD_Device_ID","features":[81]},{"name":"VCAPS_CAN_SCALE","features":[81]},{"name":"VCAPS_DST_CAN_CLIP","features":[81]},{"name":"VCAPS_OVERLAY","features":[81]},{"name":"VCAPS_SRC_CAN_CLIP","features":[81]},{"name":"VFWWDMExtensionProc","features":[3,81,42]},{"name":"VFW_HIDE_CAMERACONTROL_PAGE","features":[81]},{"name":"VFW_HIDE_SETTINGS_PAGE","features":[81]},{"name":"VFW_HIDE_VIDEOSRC_PAGE","features":[81]},{"name":"VFW_OEM_ADD_PAGE","features":[81]},{"name":"VFW_QUERY_DEV_CHANGED","features":[81]},{"name":"VFW_USE_DEVICE_HANDLE","features":[81]},{"name":"VFW_USE_STREAM_HANDLE","features":[81]},{"name":"VHDR_DONE","features":[81]},{"name":"VHDR_INQUEUE","features":[81]},{"name":"VHDR_KEYFRAME","features":[81]},{"name":"VHDR_PREPARED","features":[81]},{"name":"VHDR_VALID","features":[81]},{"name":"VIDCF_COMPRESSFRAMES","features":[81]},{"name":"VIDCF_CRUNCH","features":[81]},{"name":"VIDCF_DRAW","features":[81]},{"name":"VIDCF_FASTTEMPORALC","features":[81]},{"name":"VIDCF_FASTTEMPORALD","features":[81]},{"name":"VIDCF_QUALITY","features":[81]},{"name":"VIDCF_TEMPORAL","features":[81]},{"name":"VIDEOHDR","features":[81]},{"name":"VIDEO_CONFIGURE_CURRENT","features":[81]},{"name":"VIDEO_CONFIGURE_GET","features":[81]},{"name":"VIDEO_CONFIGURE_MAX","features":[81]},{"name":"VIDEO_CONFIGURE_MIN","features":[81]},{"name":"VIDEO_CONFIGURE_NOMINAL","features":[81]},{"name":"VIDEO_CONFIGURE_QUERY","features":[81]},{"name":"VIDEO_CONFIGURE_QUERYSIZE","features":[81]},{"name":"VIDEO_CONFIGURE_SET","features":[81]},{"name":"VIDEO_DLG_QUERY","features":[81]},{"name":"VIDEO_EXTERNALIN","features":[81]},{"name":"VIDEO_EXTERNALOUT","features":[81]},{"name":"VIDEO_IN","features":[81]},{"name":"VIDEO_OUT","features":[81]},{"name":"VP_COMMAND_GET","features":[81]},{"name":"VP_COMMAND_SET","features":[81]},{"name":"VP_CP_CMD_ACTIVATE","features":[81]},{"name":"VP_CP_CMD_CHANGE","features":[81]},{"name":"VP_CP_CMD_DEACTIVATE","features":[81]},{"name":"VP_CP_TYPE_APS_TRIGGER","features":[81]},{"name":"VP_CP_TYPE_MACROVISION","features":[81]},{"name":"VP_FLAGS_BRIGHTNESS","features":[81]},{"name":"VP_FLAGS_CONTRAST","features":[81]},{"name":"VP_FLAGS_COPYPROTECT","features":[81]},{"name":"VP_FLAGS_FLICKER","features":[81]},{"name":"VP_FLAGS_MAX_UNSCALED","features":[81]},{"name":"VP_FLAGS_OVERSCAN","features":[81]},{"name":"VP_FLAGS_POSITION","features":[81]},{"name":"VP_FLAGS_TV_MODE","features":[81]},{"name":"VP_FLAGS_TV_STANDARD","features":[81]},{"name":"VP_MODE_TV_PLAYBACK","features":[81]},{"name":"VP_MODE_WIN_GRAPHICS","features":[81]},{"name":"VP_TV_STANDARD_NTSC_433","features":[81]},{"name":"VP_TV_STANDARD_NTSC_M","features":[81]},{"name":"VP_TV_STANDARD_NTSC_M_J","features":[81]},{"name":"VP_TV_STANDARD_PAL_60","features":[81]},{"name":"VP_TV_STANDARD_PAL_B","features":[81]},{"name":"VP_TV_STANDARD_PAL_D","features":[81]},{"name":"VP_TV_STANDARD_PAL_G","features":[81]},{"name":"VP_TV_STANDARD_PAL_H","features":[81]},{"name":"VP_TV_STANDARD_PAL_I","features":[81]},{"name":"VP_TV_STANDARD_PAL_M","features":[81]},{"name":"VP_TV_STANDARD_PAL_N","features":[81]},{"name":"VP_TV_STANDARD_SECAM_B","features":[81]},{"name":"VP_TV_STANDARD_SECAM_D","features":[81]},{"name":"VP_TV_STANDARD_SECAM_G","features":[81]},{"name":"VP_TV_STANDARD_SECAM_H","features":[81]},{"name":"VP_TV_STANDARD_SECAM_K","features":[81]},{"name":"VP_TV_STANDARD_SECAM_K1","features":[81]},{"name":"VP_TV_STANDARD_SECAM_L","features":[81]},{"name":"VP_TV_STANDARD_SECAM_L1","features":[81]},{"name":"VP_TV_STANDARD_WIN_VGA","features":[81]},{"name":"VideoForWindowsVersion","features":[81]},{"name":"WAVEOPENDESC","features":[82,81]},{"name":"WAVE_FILTER_DEVELOPMENT","features":[81]},{"name":"WAVE_FILTER_ECHO","features":[81]},{"name":"WAVE_FILTER_UNKNOWN","features":[81]},{"name":"WAVE_FILTER_VOLUME","features":[81]},{"name":"WAVE_FORMAT_3COM_NBX","features":[81]},{"name":"WAVE_FORMAT_ADPCM","features":[81]},{"name":"WAVE_FORMAT_ALAC","features":[81]},{"name":"WAVE_FORMAT_ALAW","features":[81]},{"name":"WAVE_FORMAT_AMR_NB","features":[81]},{"name":"WAVE_FORMAT_AMR_WB","features":[81]},{"name":"WAVE_FORMAT_AMR_WP","features":[81]},{"name":"WAVE_FORMAT_ANTEX_ADPCME","features":[81]},{"name":"WAVE_FORMAT_APTX","features":[81]},{"name":"WAVE_FORMAT_AUDIOFILE_AF10","features":[81]},{"name":"WAVE_FORMAT_AUDIOFILE_AF36","features":[81]},{"name":"WAVE_FORMAT_BTV_DIGITAL","features":[81]},{"name":"WAVE_FORMAT_CANOPUS_ATRAC","features":[81]},{"name":"WAVE_FORMAT_CIRRUS","features":[81]},{"name":"WAVE_FORMAT_CODIAN","features":[81]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_AVQSBC","features":[81]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_G723_1","features":[81]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_SBC","features":[81]},{"name":"WAVE_FORMAT_CONGRUENCY","features":[81]},{"name":"WAVE_FORMAT_CONTROL_RES_CR10","features":[81]},{"name":"WAVE_FORMAT_CONTROL_RES_VQLPC","features":[81]},{"name":"WAVE_FORMAT_CONVEDIA_G729","features":[81]},{"name":"WAVE_FORMAT_CREATIVE_ADPCM","features":[81]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH10","features":[81]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH8","features":[81]},{"name":"WAVE_FORMAT_CS2","features":[81]},{"name":"WAVE_FORMAT_CS_IMAADPCM","features":[81]},{"name":"WAVE_FORMAT_CUSEEME","features":[81]},{"name":"WAVE_FORMAT_CU_CODEC","features":[81]},{"name":"WAVE_FORMAT_DEVELOPMENT","features":[81]},{"name":"WAVE_FORMAT_DF_G726","features":[81]},{"name":"WAVE_FORMAT_DF_GSM610","features":[81]},{"name":"WAVE_FORMAT_DIALOGIC_OKI_ADPCM","features":[81]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP54","features":[81]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP68","features":[81]},{"name":"WAVE_FORMAT_DIGIADPCM","features":[81]},{"name":"WAVE_FORMAT_DIGIFIX","features":[81]},{"name":"WAVE_FORMAT_DIGIREAL","features":[81]},{"name":"WAVE_FORMAT_DIGISTD","features":[81]},{"name":"WAVE_FORMAT_DIGITAL_G723","features":[81]},{"name":"WAVE_FORMAT_DIVIO_G726","features":[81]},{"name":"WAVE_FORMAT_DIVIO_MPEG4_AAC","features":[81]},{"name":"WAVE_FORMAT_DOLBY_AC2","features":[81]},{"name":"WAVE_FORMAT_DOLBY_AC3_SPDIF","features":[81]},{"name":"WAVE_FORMAT_DOLBY_AC4","features":[81]},{"name":"WAVE_FORMAT_DRM","features":[81]},{"name":"WAVE_FORMAT_DSAT","features":[81]},{"name":"WAVE_FORMAT_DSAT_DISPLAY","features":[81]},{"name":"WAVE_FORMAT_DSPGROUP_TRUESPEECH","features":[81]},{"name":"WAVE_FORMAT_DTS","features":[81]},{"name":"WAVE_FORMAT_DTS2","features":[81]},{"name":"WAVE_FORMAT_DTS_DS","features":[81]},{"name":"WAVE_FORMAT_DVI_ADPCM","features":[81]},{"name":"WAVE_FORMAT_DVM","features":[81]},{"name":"WAVE_FORMAT_ECHOSC1","features":[81]},{"name":"WAVE_FORMAT_ECHOSC3","features":[81]},{"name":"WAVE_FORMAT_ENCORE_G726","features":[81]},{"name":"WAVE_FORMAT_ESPCM","features":[81]},{"name":"WAVE_FORMAT_ESST_AC3","features":[81]},{"name":"WAVE_FORMAT_FAAD_AAC","features":[81]},{"name":"WAVE_FORMAT_FLAC","features":[81]},{"name":"WAVE_FORMAT_FM_TOWNS_SND","features":[81]},{"name":"WAVE_FORMAT_FRACE_TELECOM_G729","features":[81]},{"name":"WAVE_FORMAT_FRAUNHOFER_IIS_MPEG2_AAC","features":[81]},{"name":"WAVE_FORMAT_G721_ADPCM","features":[81]},{"name":"WAVE_FORMAT_G722_ADPCM","features":[81]},{"name":"WAVE_FORMAT_G723_ADPCM","features":[81]},{"name":"WAVE_FORMAT_G726ADPCM","features":[81]},{"name":"WAVE_FORMAT_G726_ADPCM","features":[81]},{"name":"WAVE_FORMAT_G728_CELP","features":[81]},{"name":"WAVE_FORMAT_G729A","features":[81]},{"name":"WAVE_FORMAT_GENERIC_PASSTHRU","features":[81]},{"name":"WAVE_FORMAT_GLOBAL_IP_ILBC","features":[81]},{"name":"WAVE_FORMAT_GSM610","features":[81]},{"name":"WAVE_FORMAT_GSM_610","features":[81]},{"name":"WAVE_FORMAT_GSM_620","features":[81]},{"name":"WAVE_FORMAT_GSM_660","features":[81]},{"name":"WAVE_FORMAT_GSM_690","features":[81]},{"name":"WAVE_FORMAT_GSM_ADAPTIVE_MULTIRATE_WB","features":[81]},{"name":"WAVE_FORMAT_GSM_AMR_CBR","features":[81]},{"name":"WAVE_FORMAT_GSM_AMR_VBR_SID","features":[81]},{"name":"WAVE_FORMAT_HP_DYN_VOICE","features":[81]},{"name":"WAVE_FORMAT_IBM_CVSD","features":[81]},{"name":"WAVE_FORMAT_IEEE_FLOAT","features":[81]},{"name":"WAVE_FORMAT_ILINK_VC","features":[81]},{"name":"WAVE_FORMAT_IMA_ADPCM","features":[81]},{"name":"WAVE_FORMAT_INDEO_AUDIO","features":[81]},{"name":"WAVE_FORMAT_INFOCOM_ITS_G721_ADPCM","features":[81]},{"name":"WAVE_FORMAT_INGENIENT_G726","features":[81]},{"name":"WAVE_FORMAT_INNINGS_TELECOM_ADPCM","features":[81]},{"name":"WAVE_FORMAT_INTEL_G723_1","features":[81]},{"name":"WAVE_FORMAT_INTEL_G729","features":[81]},{"name":"WAVE_FORMAT_INTEL_MUSIC_CODER","features":[81]},{"name":"WAVE_FORMAT_IPI_HSX","features":[81]},{"name":"WAVE_FORMAT_IPI_RPELP","features":[81]},{"name":"WAVE_FORMAT_IRAT","features":[81]},{"name":"WAVE_FORMAT_ISIAUDIO","features":[81]},{"name":"WAVE_FORMAT_ISIAUDIO_2","features":[81]},{"name":"WAVE_FORMAT_KNOWLEDGE_ADVENTURE_ADPCM","features":[81]},{"name":"WAVE_FORMAT_LEAD_SPEECH","features":[81]},{"name":"WAVE_FORMAT_LEAD_VORBIS","features":[81]},{"name":"WAVE_FORMAT_LH_CODEC","features":[81]},{"name":"WAVE_FORMAT_LH_CODEC_CELP","features":[81]},{"name":"WAVE_FORMAT_LH_CODEC_SBC12","features":[81]},{"name":"WAVE_FORMAT_LH_CODEC_SBC16","features":[81]},{"name":"WAVE_FORMAT_LH_CODEC_SBC8","features":[81]},{"name":"WAVE_FORMAT_LIGHTWAVE_LOSSLESS","features":[81]},{"name":"WAVE_FORMAT_LRC","features":[81]},{"name":"WAVE_FORMAT_LUCENT_G723","features":[81]},{"name":"WAVE_FORMAT_LUCENT_SX5363S","features":[81]},{"name":"WAVE_FORMAT_LUCENT_SX8300P","features":[81]},{"name":"WAVE_FORMAT_MAKEAVIS","features":[81]},{"name":"WAVE_FORMAT_MALDEN_PHONYTALK","features":[81]},{"name":"WAVE_FORMAT_MEDIASONIC_G723","features":[81]},{"name":"WAVE_FORMAT_MEDIASPACE_ADPCM","features":[81]},{"name":"WAVE_FORMAT_MEDIAVISION_ADPCM","features":[81]},{"name":"WAVE_FORMAT_MICRONAS","features":[81]},{"name":"WAVE_FORMAT_MICRONAS_CELP833","features":[81]},{"name":"WAVE_FORMAT_MPEG","features":[81]},{"name":"WAVE_FORMAT_MPEG4_AAC","features":[81]},{"name":"WAVE_FORMAT_MPEGLAYER3","features":[81]},{"name":"WAVE_FORMAT_MPEG_ADTS_AAC","features":[81]},{"name":"WAVE_FORMAT_MPEG_HEAAC","features":[81]},{"name":"WAVE_FORMAT_MPEG_LOAS","features":[81]},{"name":"WAVE_FORMAT_MPEG_RAW_AAC","features":[81]},{"name":"WAVE_FORMAT_MSAUDIO1","features":[81]},{"name":"WAVE_FORMAT_MSG723","features":[81]},{"name":"WAVE_FORMAT_MSNAUDIO","features":[81]},{"name":"WAVE_FORMAT_MSRT24","features":[81]},{"name":"WAVE_FORMAT_MULAW","features":[81]},{"name":"WAVE_FORMAT_MULTITUDE_FT_SX20","features":[81]},{"name":"WAVE_FORMAT_MVI_MVI2","features":[81]},{"name":"WAVE_FORMAT_NEC_AAC","features":[81]},{"name":"WAVE_FORMAT_NICE_ACA","features":[81]},{"name":"WAVE_FORMAT_NICE_ADPCM","features":[81]},{"name":"WAVE_FORMAT_NICE_G728","features":[81]},{"name":"WAVE_FORMAT_NMS_VBXADPCM","features":[81]},{"name":"WAVE_FORMAT_NOKIA_ADAPTIVE_MULTIRATE","features":[81]},{"name":"WAVE_FORMAT_NOKIA_MPEG_ADTS_AAC","features":[81]},{"name":"WAVE_FORMAT_NOKIA_MPEG_RAW_AAC","features":[81]},{"name":"WAVE_FORMAT_NORCOM_VOICE_SYSTEMS_ADPCM","features":[81]},{"name":"WAVE_FORMAT_NORRIS","features":[81]},{"name":"WAVE_FORMAT_NTCSOFT_ALF2CM_ACM","features":[81]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1","features":[81]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1_PLUS","features":[81]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2","features":[81]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2_PLUS","features":[81]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3","features":[81]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3_PLUS","features":[81]},{"name":"WAVE_FORMAT_OKI_ADPCM","features":[81]},{"name":"WAVE_FORMAT_OLIADPCM","features":[81]},{"name":"WAVE_FORMAT_OLICELP","features":[81]},{"name":"WAVE_FORMAT_OLIGSM","features":[81]},{"name":"WAVE_FORMAT_OLIOPR","features":[81]},{"name":"WAVE_FORMAT_OLISBC","features":[81]},{"name":"WAVE_FORMAT_ON2_VP6_AUDIO","features":[81]},{"name":"WAVE_FORMAT_ON2_VP7_AUDIO","features":[81]},{"name":"WAVE_FORMAT_ONLIVE","features":[81]},{"name":"WAVE_FORMAT_OPUS","features":[81]},{"name":"WAVE_FORMAT_PAC","features":[81]},{"name":"WAVE_FORMAT_PACKED","features":[81]},{"name":"WAVE_FORMAT_PCM_S","features":[81]},{"name":"WAVE_FORMAT_PHILIPS_CELP","features":[81]},{"name":"WAVE_FORMAT_PHILIPS_GRUNDIG","features":[81]},{"name":"WAVE_FORMAT_PHILIPS_LPCBB","features":[81]},{"name":"WAVE_FORMAT_POLYCOM_G722","features":[81]},{"name":"WAVE_FORMAT_POLYCOM_G728","features":[81]},{"name":"WAVE_FORMAT_POLYCOM_G729_A","features":[81]},{"name":"WAVE_FORMAT_POLYCOM_SIREN","features":[81]},{"name":"WAVE_FORMAT_PROSODY_1612","features":[81]},{"name":"WAVE_FORMAT_PROSODY_8KBPS","features":[81]},{"name":"WAVE_FORMAT_QDESIGN_MUSIC","features":[81]},{"name":"WAVE_FORMAT_QUALCOMM_HALFRATE","features":[81]},{"name":"WAVE_FORMAT_QUALCOMM_PUREVOICE","features":[81]},{"name":"WAVE_FORMAT_QUARTERDECK","features":[81]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G720_A","features":[81]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G723_1","features":[81]},{"name":"WAVE_FORMAT_RACAL_RECORDER_GSM","features":[81]},{"name":"WAVE_FORMAT_RACAL_RECORDER_TETRA_ACELP","features":[81]},{"name":"WAVE_FORMAT_RADIOTIME_TIME_SHIFT_RADIO","features":[81]},{"name":"WAVE_FORMAT_RAW_AAC1","features":[81]},{"name":"WAVE_FORMAT_RAW_SPORT","features":[81]},{"name":"WAVE_FORMAT_RHETOREX_ADPCM","features":[81]},{"name":"WAVE_FORMAT_ROCKWELL_ADPCM","features":[81]},{"name":"WAVE_FORMAT_ROCKWELL_DIGITALK","features":[81]},{"name":"WAVE_FORMAT_RT24","features":[81]},{"name":"WAVE_FORMAT_SANYO_LD_ADPCM","features":[81]},{"name":"WAVE_FORMAT_SBC24","features":[81]},{"name":"WAVE_FORMAT_SHARP_G726","features":[81]},{"name":"WAVE_FORMAT_SIERRA_ADPCM","features":[81]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP4800","features":[81]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP8V3","features":[81]},{"name":"WAVE_FORMAT_SIPROLAB_ACEPLNET","features":[81]},{"name":"WAVE_FORMAT_SIPROLAB_G729","features":[81]},{"name":"WAVE_FORMAT_SIPROLAB_G729A","features":[81]},{"name":"WAVE_FORMAT_SIPROLAB_KELVIN","features":[81]},{"name":"WAVE_FORMAT_SOFTSOUND","features":[81]},{"name":"WAVE_FORMAT_SONARC","features":[81]},{"name":"WAVE_FORMAT_SONICFOUNDRY_LOSSLESS","features":[81]},{"name":"WAVE_FORMAT_SONY_ATRAC3","features":[81]},{"name":"WAVE_FORMAT_SONY_SCX","features":[81]},{"name":"WAVE_FORMAT_SONY_SCY","features":[81]},{"name":"WAVE_FORMAT_SONY_SPC","features":[81]},{"name":"WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS","features":[81]},{"name":"WAVE_FORMAT_SPEEX_VOICE","features":[81]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC008","features":[81]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP54","features":[81]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP68","features":[81]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_G726L","features":[81]},{"name":"WAVE_FORMAT_SYMBOL_G729_A","features":[81]},{"name":"WAVE_FORMAT_TELUM_AUDIO","features":[81]},{"name":"WAVE_FORMAT_TELUM_IA_AUDIO","features":[81]},{"name":"WAVE_FORMAT_TPC","features":[81]},{"name":"WAVE_FORMAT_TUBGSM","features":[81]},{"name":"WAVE_FORMAT_UHER_ADPCM","features":[81]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO","features":[81]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO_1","features":[81]},{"name":"WAVE_FORMAT_UNISYS_NAP_16K","features":[81]},{"name":"WAVE_FORMAT_UNISYS_NAP_ADPCM","features":[81]},{"name":"WAVE_FORMAT_UNISYS_NAP_ALAW","features":[81]},{"name":"WAVE_FORMAT_UNISYS_NAP_ULAW","features":[81]},{"name":"WAVE_FORMAT_UNKNOWN","features":[81]},{"name":"WAVE_FORMAT_VIANIX_MASC","features":[81]},{"name":"WAVE_FORMAT_VIVO_G723","features":[81]},{"name":"WAVE_FORMAT_VIVO_SIREN","features":[81]},{"name":"WAVE_FORMAT_VME_VMPCM","features":[81]},{"name":"WAVE_FORMAT_VOCORD_G721","features":[81]},{"name":"WAVE_FORMAT_VOCORD_G722_1","features":[81]},{"name":"WAVE_FORMAT_VOCORD_G723_1","features":[81]},{"name":"WAVE_FORMAT_VOCORD_G726","features":[81]},{"name":"WAVE_FORMAT_VOCORD_G728","features":[81]},{"name":"WAVE_FORMAT_VOCORD_G729","features":[81]},{"name":"WAVE_FORMAT_VOCORD_G729_A","features":[81]},{"name":"WAVE_FORMAT_VOCORD_LBC","features":[81]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_ADTS_AAC","features":[81]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_RAW_AAC","features":[81]},{"name":"WAVE_FORMAT_VOICEAGE_AMR","features":[81]},{"name":"WAVE_FORMAT_VOICEAGE_AMR_WB","features":[81]},{"name":"WAVE_FORMAT_VOXWARE","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_AC10","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_AC16","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_AC20","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_AC8","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_BYTE_ALIGNED","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_RT24","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_RT24_SPEECH","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_RT29","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_RT29HW","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_SC3","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_SC3_1","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_TQ40","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_TQ60","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_VR12","features":[81]},{"name":"WAVE_FORMAT_VOXWARE_VR18","features":[81]},{"name":"WAVE_FORMAT_VSELP","features":[81]},{"name":"WAVE_FORMAT_WAVPACK_AUDIO","features":[81]},{"name":"WAVE_FORMAT_WM9_SPECTRUM_ANALYZER","features":[81]},{"name":"WAVE_FORMAT_WMASPDIF","features":[81]},{"name":"WAVE_FORMAT_WMAUDIO2","features":[81]},{"name":"WAVE_FORMAT_WMAUDIO3","features":[81]},{"name":"WAVE_FORMAT_WMAUDIO_LOSSLESS","features":[81]},{"name":"WAVE_FORMAT_WMAVOICE10","features":[81]},{"name":"WAVE_FORMAT_WMAVOICE9","features":[81]},{"name":"WAVE_FORMAT_WMF_SPECTRUM_ANAYZER","features":[81]},{"name":"WAVE_FORMAT_XEBEC","features":[81]},{"name":"WAVE_FORMAT_YAMAHA_ADPCM","features":[81]},{"name":"WAVE_FORMAT_ZOLL_ASAO","features":[81]},{"name":"WAVE_FORMAT_ZYXEL_ADPCM","features":[81]},{"name":"WAVE_MAPPER_S","features":[81]},{"name":"WIDM_ADDBUFFER","features":[81]},{"name":"WIDM_CLOSE","features":[81]},{"name":"WIDM_GETDEVCAPS","features":[81]},{"name":"WIDM_GETNUMDEVS","features":[81]},{"name":"WIDM_GETPOS","features":[81]},{"name":"WIDM_INIT","features":[81]},{"name":"WIDM_INIT_EX","features":[81]},{"name":"WIDM_OPEN","features":[81]},{"name":"WIDM_PREFERRED","features":[81]},{"name":"WIDM_PREPARE","features":[81]},{"name":"WIDM_RESET","features":[81]},{"name":"WIDM_START","features":[81]},{"name":"WIDM_STOP","features":[81]},{"name":"WIDM_UNPREPARE","features":[81]},{"name":"WMAUDIO2WAVEFORMAT","features":[82,81]},{"name":"WMAUDIO2_BITS_PER_SAMPLE","features":[81]},{"name":"WMAUDIO2_MAX_CHANNELS","features":[81]},{"name":"WMAUDIO3WAVEFORMAT","features":[82,81]},{"name":"WMAUDIO_BITS_PER_SAMPLE","features":[81]},{"name":"WMAUDIO_MAX_CHANNELS","features":[81]},{"name":"WM_CAP_ABORT","features":[81]},{"name":"WM_CAP_DLG_VIDEOCOMPRESSION","features":[81]},{"name":"WM_CAP_DLG_VIDEODISPLAY","features":[81]},{"name":"WM_CAP_DLG_VIDEOFORMAT","features":[81]},{"name":"WM_CAP_DLG_VIDEOSOURCE","features":[81]},{"name":"WM_CAP_DRIVER_CONNECT","features":[81]},{"name":"WM_CAP_DRIVER_DISCONNECT","features":[81]},{"name":"WM_CAP_DRIVER_GET_CAPS","features":[81]},{"name":"WM_CAP_DRIVER_GET_NAME","features":[81]},{"name":"WM_CAP_DRIVER_GET_NAMEA","features":[81]},{"name":"WM_CAP_DRIVER_GET_NAMEW","features":[81]},{"name":"WM_CAP_DRIVER_GET_VERSION","features":[81]},{"name":"WM_CAP_DRIVER_GET_VERSIONA","features":[81]},{"name":"WM_CAP_DRIVER_GET_VERSIONW","features":[81]},{"name":"WM_CAP_EDIT_COPY","features":[81]},{"name":"WM_CAP_END","features":[81]},{"name":"WM_CAP_FILE_ALLOCATE","features":[81]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILE","features":[81]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEA","features":[81]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEW","features":[81]},{"name":"WM_CAP_FILE_SAVEAS","features":[81]},{"name":"WM_CAP_FILE_SAVEASA","features":[81]},{"name":"WM_CAP_FILE_SAVEASW","features":[81]},{"name":"WM_CAP_FILE_SAVEDIB","features":[81]},{"name":"WM_CAP_FILE_SAVEDIBA","features":[81]},{"name":"WM_CAP_FILE_SAVEDIBW","features":[81]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILE","features":[81]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEA","features":[81]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEW","features":[81]},{"name":"WM_CAP_FILE_SET_INFOCHUNK","features":[81]},{"name":"WM_CAP_GET_AUDIOFORMAT","features":[81]},{"name":"WM_CAP_GET_CAPSTREAMPTR","features":[81]},{"name":"WM_CAP_GET_MCI_DEVICE","features":[81]},{"name":"WM_CAP_GET_MCI_DEVICEA","features":[81]},{"name":"WM_CAP_GET_MCI_DEVICEW","features":[81]},{"name":"WM_CAP_GET_SEQUENCE_SETUP","features":[81]},{"name":"WM_CAP_GET_STATUS","features":[81]},{"name":"WM_CAP_GET_USER_DATA","features":[81]},{"name":"WM_CAP_GET_VIDEOFORMAT","features":[81]},{"name":"WM_CAP_GRAB_FRAME","features":[81]},{"name":"WM_CAP_GRAB_FRAME_NOSTOP","features":[81]},{"name":"WM_CAP_PAL_AUTOCREATE","features":[81]},{"name":"WM_CAP_PAL_MANUALCREATE","features":[81]},{"name":"WM_CAP_PAL_OPEN","features":[81]},{"name":"WM_CAP_PAL_OPENA","features":[81]},{"name":"WM_CAP_PAL_OPENW","features":[81]},{"name":"WM_CAP_PAL_PASTE","features":[81]},{"name":"WM_CAP_PAL_SAVE","features":[81]},{"name":"WM_CAP_PAL_SAVEA","features":[81]},{"name":"WM_CAP_PAL_SAVEW","features":[81]},{"name":"WM_CAP_SEQUENCE","features":[81]},{"name":"WM_CAP_SEQUENCE_NOFILE","features":[81]},{"name":"WM_CAP_SET_AUDIOFORMAT","features":[81]},{"name":"WM_CAP_SET_CALLBACK_CAPCONTROL","features":[81]},{"name":"WM_CAP_SET_CALLBACK_ERROR","features":[81]},{"name":"WM_CAP_SET_CALLBACK_ERRORA","features":[81]},{"name":"WM_CAP_SET_CALLBACK_ERRORW","features":[81]},{"name":"WM_CAP_SET_CALLBACK_FRAME","features":[81]},{"name":"WM_CAP_SET_CALLBACK_STATUS","features":[81]},{"name":"WM_CAP_SET_CALLBACK_STATUSA","features":[81]},{"name":"WM_CAP_SET_CALLBACK_STATUSW","features":[81]},{"name":"WM_CAP_SET_CALLBACK_VIDEOSTREAM","features":[81]},{"name":"WM_CAP_SET_CALLBACK_WAVESTREAM","features":[81]},{"name":"WM_CAP_SET_CALLBACK_YIELD","features":[81]},{"name":"WM_CAP_SET_MCI_DEVICE","features":[81]},{"name":"WM_CAP_SET_MCI_DEVICEA","features":[81]},{"name":"WM_CAP_SET_MCI_DEVICEW","features":[81]},{"name":"WM_CAP_SET_OVERLAY","features":[81]},{"name":"WM_CAP_SET_PREVIEW","features":[81]},{"name":"WM_CAP_SET_PREVIEWRATE","features":[81]},{"name":"WM_CAP_SET_SCALE","features":[81]},{"name":"WM_CAP_SET_SCROLL","features":[81]},{"name":"WM_CAP_SET_SEQUENCE_SETUP","features":[81]},{"name":"WM_CAP_SET_USER_DATA","features":[81]},{"name":"WM_CAP_SET_VIDEOFORMAT","features":[81]},{"name":"WM_CAP_SINGLE_FRAME","features":[81]},{"name":"WM_CAP_SINGLE_FRAME_CLOSE","features":[81]},{"name":"WM_CAP_SINGLE_FRAME_OPEN","features":[81]},{"name":"WM_CAP_START","features":[81]},{"name":"WM_CAP_STOP","features":[81]},{"name":"WM_CAP_UNICODE_END","features":[81]},{"name":"WM_CAP_UNICODE_START","features":[81]},{"name":"WODM_BREAKLOOP","features":[81]},{"name":"WODM_BUSY","features":[81]},{"name":"WODM_CLOSE","features":[81]},{"name":"WODM_GETDEVCAPS","features":[81]},{"name":"WODM_GETNUMDEVS","features":[81]},{"name":"WODM_GETPITCH","features":[81]},{"name":"WODM_GETPLAYBACKRATE","features":[81]},{"name":"WODM_GETPOS","features":[81]},{"name":"WODM_GETVOLUME","features":[81]},{"name":"WODM_INIT","features":[81]},{"name":"WODM_INIT_EX","features":[81]},{"name":"WODM_OPEN","features":[81]},{"name":"WODM_PAUSE","features":[81]},{"name":"WODM_PREFERRED","features":[81]},{"name":"WODM_PREPARE","features":[81]},{"name":"WODM_RESET","features":[81]},{"name":"WODM_RESTART","features":[81]},{"name":"WODM_SETPITCH","features":[81]},{"name":"WODM_SETPLAYBACKRATE","features":[81]},{"name":"WODM_SETVOLUME","features":[81]},{"name":"WODM_UNPREPARE","features":[81]},{"name":"WODM_WRITE","features":[81]},{"name":"YAMAHA_ADPCMWAVEFORMAT","features":[82,81]},{"name":"YIELDPROC","features":[81]},{"name":"capCreateCaptureWindowA","features":[3,81]},{"name":"capCreateCaptureWindowW","features":[3,81]},{"name":"capGetDriverDescriptionA","features":[3,81]},{"name":"capGetDriverDescriptionW","features":[3,81]},{"name":"joyGetDevCapsA","features":[81]},{"name":"joyGetDevCapsW","features":[81]},{"name":"joyGetNumDevs","features":[81]},{"name":"joyGetPos","features":[81]},{"name":"joyGetPosEx","features":[81]},{"name":"joyGetThreshold","features":[81]},{"name":"joyReleaseCapture","features":[81]},{"name":"joySetCapture","features":[3,81]},{"name":"joySetThreshold","features":[81]},{"name":"mciDriverNotify","features":[3,81]},{"name":"mciDriverYield","features":[81]},{"name":"mciFreeCommandResource","features":[3,81]},{"name":"mciGetCreatorTask","features":[81]},{"name":"mciGetDeviceIDA","features":[81]},{"name":"mciGetDeviceIDFromElementIDA","features":[81]},{"name":"mciGetDeviceIDFromElementIDW","features":[81]},{"name":"mciGetDeviceIDW","features":[81]},{"name":"mciGetDriverData","features":[81]},{"name":"mciGetErrorStringA","features":[3,81]},{"name":"mciGetErrorStringW","features":[3,81]},{"name":"mciGetYieldProc","features":[81]},{"name":"mciLoadCommandResource","features":[3,81]},{"name":"mciSendCommandA","features":[81]},{"name":"mciSendCommandW","features":[81]},{"name":"mciSendStringA","features":[3,81]},{"name":"mciSendStringW","features":[3,81]},{"name":"mciSetDriverData","features":[3,81]},{"name":"mciSetYieldProc","features":[3,81]},{"name":"mmDrvInstall","features":[81]},{"name":"mmGetCurrentTask","features":[81]},{"name":"mmTaskBlock","features":[81]},{"name":"mmTaskCreate","features":[3,81]},{"name":"mmTaskSignal","features":[3,81]},{"name":"mmTaskYield","features":[81]},{"name":"mmioAdvance","features":[3,81]},{"name":"mmioAscend","features":[81]},{"name":"mmioClose","features":[81]},{"name":"mmioCreateChunk","features":[81]},{"name":"mmioDescend","features":[81]},{"name":"mmioFlush","features":[81]},{"name":"mmioGetInfo","features":[3,81]},{"name":"mmioInstallIOProcA","features":[3,81]},{"name":"mmioInstallIOProcW","features":[3,81]},{"name":"mmioOpenA","features":[3,81]},{"name":"mmioOpenW","features":[3,81]},{"name":"mmioRead","features":[81]},{"name":"mmioRenameA","features":[3,81]},{"name":"mmioRenameW","features":[3,81]},{"name":"mmioSeek","features":[81]},{"name":"mmioSendMessage","features":[3,81]},{"name":"mmioSetBuffer","features":[81]},{"name":"mmioSetInfo","features":[3,81]},{"name":"mmioStringToFOURCCA","features":[81]},{"name":"mmioStringToFOURCCW","features":[81]},{"name":"mmioWrite","features":[81]},{"name":"s_RIFFWAVE_inst","features":[81]},{"name":"sndOpenSound","features":[3,81]}],"443":[{"name":"CapturedMetadataExposureCompensation","features":[87]},{"name":"CapturedMetadataISOGains","features":[87]},{"name":"CapturedMetadataWhiteBalanceGains","features":[87]},{"name":"DEVPKEY_Device_DLNACAP","features":[1,87]},{"name":"DEVPKEY_Device_DLNADOC","features":[1,87]},{"name":"DEVPKEY_Device_MaxVolume","features":[1,87]},{"name":"DEVPKEY_Device_PacketWakeSupported","features":[1,87]},{"name":"DEVPKEY_Device_SendPacketWakeSupported","features":[1,87]},{"name":"DEVPKEY_Device_SinkProtocolInfo","features":[1,87]},{"name":"DEVPKEY_Device_SupportsAudio","features":[1,87]},{"name":"DEVPKEY_Device_SupportsImages","features":[1,87]},{"name":"DEVPKEY_Device_SupportsMute","features":[1,87]},{"name":"DEVPKEY_Device_SupportsSearch","features":[1,87]},{"name":"DEVPKEY_Device_SupportsSetNextAVT","features":[1,87]},{"name":"DEVPKEY_Device_SupportsVideo","features":[1,87]},{"name":"DEVPKEY_Device_UDN","features":[1,87]},{"name":"FaceCharacterization","features":[87]},{"name":"FaceCharacterizationBlobHeader","features":[87]},{"name":"FaceRectInfo","features":[3,87]},{"name":"FaceRectInfoBlobHeader","features":[87]},{"name":"GUID_DEVINTERFACE_DMP","features":[87]},{"name":"GUID_DEVINTERFACE_DMR","features":[87]},{"name":"GUID_DEVINTERFACE_DMS","features":[87]},{"name":"HistogramBlobHeader","features":[87]},{"name":"HistogramDataHeader","features":[87]},{"name":"HistogramGrid","features":[3,87]},{"name":"HistogramHeader","features":[3,87]},{"name":"MF_MEDIASOURCE_STATUS_INFO","features":[87]},{"name":"MF_MEDIASOURCE_STATUS_INFO_FULLYSUPPORTED","features":[87]},{"name":"MF_MEDIASOURCE_STATUS_INFO_UNKNOWN","features":[87]},{"name":"MF_TRANSFER_VIDEO_FRAME_DEFAULT","features":[87]},{"name":"MF_TRANSFER_VIDEO_FRAME_FLAGS","features":[87]},{"name":"MF_TRANSFER_VIDEO_FRAME_IGNORE_PAR","features":[87]},{"name":"MF_TRANSFER_VIDEO_FRAME_STRETCH","features":[87]},{"name":"MetadataTimeStamps","features":[87]}],"444":[{"name":"AM_CONFIGASFWRITER_PARAM_AUTOINDEX","features":[88]},{"name":"AM_CONFIGASFWRITER_PARAM_DONTCOMPRESS","features":[88]},{"name":"AM_CONFIGASFWRITER_PARAM_MULTIPASS","features":[88]},{"name":"AM_WMT_EVENT_DATA","features":[88]},{"name":"CLSID_ClientNetManager","features":[88]},{"name":"CLSID_WMBandwidthSharing_Exclusive","features":[88]},{"name":"CLSID_WMBandwidthSharing_Partial","features":[88]},{"name":"CLSID_WMMUTEX_Bitrate","features":[88]},{"name":"CLSID_WMMUTEX_Language","features":[88]},{"name":"CLSID_WMMUTEX_Presentation","features":[88]},{"name":"CLSID_WMMUTEX_Unknown","features":[88]},{"name":"DRM_COPY_OPL","features":[88]},{"name":"DRM_MINIMUM_OUTPUT_PROTECTION_LEVELS","features":[88]},{"name":"DRM_OPL_OUTPUT_IDS","features":[88]},{"name":"DRM_OPL_TYPES","features":[88]},{"name":"DRM_OUTPUT_PROTECTION","features":[88]},{"name":"DRM_PLAY_OPL","features":[88]},{"name":"DRM_VAL16","features":[88]},{"name":"DRM_VIDEO_OUTPUT_PROTECTION_IDS","features":[88]},{"name":"INSNetSourceCreator","features":[88]},{"name":"INSSBuffer","features":[88]},{"name":"INSSBuffer2","features":[88]},{"name":"INSSBuffer3","features":[88]},{"name":"INSSBuffer4","features":[88]},{"name":"IWMAddressAccess","features":[88]},{"name":"IWMAddressAccess2","features":[88]},{"name":"IWMAuthorizer","features":[88]},{"name":"IWMBackupRestoreProps","features":[88]},{"name":"IWMBandwidthSharing","features":[88]},{"name":"IWMClientConnections","features":[88]},{"name":"IWMClientConnections2","features":[88]},{"name":"IWMCodecInfo","features":[88]},{"name":"IWMCodecInfo2","features":[88]},{"name":"IWMCodecInfo3","features":[88]},{"name":"IWMCredentialCallback","features":[88]},{"name":"IWMDRMEditor","features":[88]},{"name":"IWMDRMMessageParser","features":[88]},{"name":"IWMDRMReader","features":[88]},{"name":"IWMDRMReader2","features":[88]},{"name":"IWMDRMReader3","features":[88]},{"name":"IWMDRMTranscryptionManager","features":[88]},{"name":"IWMDRMTranscryptor","features":[88]},{"name":"IWMDRMTranscryptor2","features":[88]},{"name":"IWMDRMWriter","features":[88]},{"name":"IWMDRMWriter2","features":[88]},{"name":"IWMDRMWriter3","features":[88]},{"name":"IWMDeviceRegistration","features":[88]},{"name":"IWMGetSecureChannel","features":[88]},{"name":"IWMHeaderInfo","features":[88]},{"name":"IWMHeaderInfo2","features":[88]},{"name":"IWMHeaderInfo3","features":[88]},{"name":"IWMIStreamProps","features":[88]},{"name":"IWMImageInfo","features":[88]},{"name":"IWMIndexer","features":[88]},{"name":"IWMIndexer2","features":[88]},{"name":"IWMInputMediaProps","features":[88]},{"name":"IWMLanguageList","features":[88]},{"name":"IWMLicenseBackup","features":[88]},{"name":"IWMLicenseRestore","features":[88]},{"name":"IWMLicenseRevocationAgent","features":[88]},{"name":"IWMMediaProps","features":[88]},{"name":"IWMMetadataEditor","features":[88]},{"name":"IWMMetadataEditor2","features":[88]},{"name":"IWMMutualExclusion","features":[88]},{"name":"IWMMutualExclusion2","features":[88]},{"name":"IWMOutputMediaProps","features":[88]},{"name":"IWMPacketSize","features":[88]},{"name":"IWMPacketSize2","features":[88]},{"name":"IWMPlayerHook","features":[88]},{"name":"IWMPlayerTimestampHook","features":[88]},{"name":"IWMProfile","features":[88]},{"name":"IWMProfile2","features":[88]},{"name":"IWMProfile3","features":[88]},{"name":"IWMProfileManager","features":[88]},{"name":"IWMProfileManager2","features":[88]},{"name":"IWMProfileManagerLanguage","features":[88]},{"name":"IWMPropertyVault","features":[88]},{"name":"IWMProximityDetection","features":[88]},{"name":"IWMReader","features":[88]},{"name":"IWMReaderAccelerator","features":[88]},{"name":"IWMReaderAdvanced","features":[88]},{"name":"IWMReaderAdvanced2","features":[88]},{"name":"IWMReaderAdvanced3","features":[88]},{"name":"IWMReaderAdvanced4","features":[88]},{"name":"IWMReaderAdvanced5","features":[88]},{"name":"IWMReaderAdvanced6","features":[88]},{"name":"IWMReaderAllocatorEx","features":[88]},{"name":"IWMReaderCallback","features":[88]},{"name":"IWMReaderCallbackAdvanced","features":[88]},{"name":"IWMReaderNetworkConfig","features":[88]},{"name":"IWMReaderNetworkConfig2","features":[88]},{"name":"IWMReaderPlaylistBurn","features":[88]},{"name":"IWMReaderStreamClock","features":[88]},{"name":"IWMReaderTimecode","features":[88]},{"name":"IWMReaderTypeNegotiation","features":[88]},{"name":"IWMRegisterCallback","features":[88]},{"name":"IWMRegisteredDevice","features":[88]},{"name":"IWMSBufferAllocator","features":[88]},{"name":"IWMSInternalAdminNetSource","features":[88]},{"name":"IWMSInternalAdminNetSource2","features":[88]},{"name":"IWMSInternalAdminNetSource3","features":[88]},{"name":"IWMSecureChannel","features":[88]},{"name":"IWMStatusCallback","features":[88]},{"name":"IWMStreamConfig","features":[88]},{"name":"IWMStreamConfig2","features":[88]},{"name":"IWMStreamConfig3","features":[88]},{"name":"IWMStreamList","features":[88]},{"name":"IWMStreamPrioritization","features":[88]},{"name":"IWMSyncReader","features":[88]},{"name":"IWMSyncReader2","features":[88]},{"name":"IWMVideoMediaProps","features":[88]},{"name":"IWMWatermarkInfo","features":[88]},{"name":"IWMWriter","features":[88]},{"name":"IWMWriterAdvanced","features":[88]},{"name":"IWMWriterAdvanced2","features":[88]},{"name":"IWMWriterAdvanced3","features":[88]},{"name":"IWMWriterFileSink","features":[88]},{"name":"IWMWriterFileSink2","features":[88]},{"name":"IWMWriterFileSink3","features":[88]},{"name":"IWMWriterNetworkSink","features":[88]},{"name":"IWMWriterPostView","features":[88]},{"name":"IWMWriterPostViewCallback","features":[88]},{"name":"IWMWriterPreprocess","features":[88]},{"name":"IWMWriterPushSink","features":[88]},{"name":"IWMWriterSink","features":[88]},{"name":"NETSOURCE_URLCREDPOLICY_SETTINGS","features":[88]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_ANONYMOUSONLY","features":[88]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_MUSTPROMPTUSER","features":[88]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_SILENTLOGONOK","features":[88]},{"name":"WEBSTREAM_SAMPLE_TYPE","features":[88]},{"name":"WEBSTREAM_SAMPLE_TYPE_FILE","features":[88]},{"name":"WEBSTREAM_SAMPLE_TYPE_RENDER","features":[88]},{"name":"WMCreateBackupRestorer","features":[88]},{"name":"WMCreateEditor","features":[88]},{"name":"WMCreateIndexer","features":[88]},{"name":"WMCreateProfileManager","features":[88]},{"name":"WMCreateReader","features":[88]},{"name":"WMCreateSyncReader","features":[88]},{"name":"WMCreateWriter","features":[88]},{"name":"WMCreateWriterFileSink","features":[88]},{"name":"WMCreateWriterNetworkSink","features":[88]},{"name":"WMCreateWriterPushSink","features":[88]},{"name":"WMDRM_IMPORT_INIT_STRUCT","features":[88]},{"name":"WMDRM_IMPORT_INIT_STRUCT_DEFINED","features":[88]},{"name":"WMFORMAT_MPEG2Video","features":[88]},{"name":"WMFORMAT_Script","features":[88]},{"name":"WMFORMAT_VideoInfo","features":[88]},{"name":"WMFORMAT_WaveFormatEx","features":[88]},{"name":"WMFORMAT_WebStream","features":[88]},{"name":"WMIsContentProtected","features":[3,88]},{"name":"WMMEDIASUBTYPE_ACELPnet","features":[88]},{"name":"WMMEDIASUBTYPE_Base","features":[88]},{"name":"WMMEDIASUBTYPE_DRM","features":[88]},{"name":"WMMEDIASUBTYPE_I420","features":[88]},{"name":"WMMEDIASUBTYPE_IYUV","features":[88]},{"name":"WMMEDIASUBTYPE_M4S2","features":[88]},{"name":"WMMEDIASUBTYPE_MP3","features":[88]},{"name":"WMMEDIASUBTYPE_MP43","features":[88]},{"name":"WMMEDIASUBTYPE_MP4S","features":[88]},{"name":"WMMEDIASUBTYPE_MPEG2_VIDEO","features":[88]},{"name":"WMMEDIASUBTYPE_MSS1","features":[88]},{"name":"WMMEDIASUBTYPE_MSS2","features":[88]},{"name":"WMMEDIASUBTYPE_P422","features":[88]},{"name":"WMMEDIASUBTYPE_PCM","features":[88]},{"name":"WMMEDIASUBTYPE_RGB1","features":[88]},{"name":"WMMEDIASUBTYPE_RGB24","features":[88]},{"name":"WMMEDIASUBTYPE_RGB32","features":[88]},{"name":"WMMEDIASUBTYPE_RGB4","features":[88]},{"name":"WMMEDIASUBTYPE_RGB555","features":[88]},{"name":"WMMEDIASUBTYPE_RGB565","features":[88]},{"name":"WMMEDIASUBTYPE_RGB8","features":[88]},{"name":"WMMEDIASUBTYPE_UYVY","features":[88]},{"name":"WMMEDIASUBTYPE_VIDEOIMAGE","features":[88]},{"name":"WMMEDIASUBTYPE_WMAudioV2","features":[88]},{"name":"WMMEDIASUBTYPE_WMAudioV7","features":[88]},{"name":"WMMEDIASUBTYPE_WMAudioV8","features":[88]},{"name":"WMMEDIASUBTYPE_WMAudioV9","features":[88]},{"name":"WMMEDIASUBTYPE_WMAudio_Lossless","features":[88]},{"name":"WMMEDIASUBTYPE_WMSP1","features":[88]},{"name":"WMMEDIASUBTYPE_WMSP2","features":[88]},{"name":"WMMEDIASUBTYPE_WMV1","features":[88]},{"name":"WMMEDIASUBTYPE_WMV2","features":[88]},{"name":"WMMEDIASUBTYPE_WMV3","features":[88]},{"name":"WMMEDIASUBTYPE_WMVA","features":[88]},{"name":"WMMEDIASUBTYPE_WMVP","features":[88]},{"name":"WMMEDIASUBTYPE_WVC1","features":[88]},{"name":"WMMEDIASUBTYPE_WVP2","features":[88]},{"name":"WMMEDIASUBTYPE_WebStream","features":[88]},{"name":"WMMEDIASUBTYPE_YUY2","features":[88]},{"name":"WMMEDIASUBTYPE_YV12","features":[88]},{"name":"WMMEDIASUBTYPE_YVU9","features":[88]},{"name":"WMMEDIASUBTYPE_YVYU","features":[88]},{"name":"WMMEDIATYPE_Audio","features":[88]},{"name":"WMMEDIATYPE_FileTransfer","features":[88]},{"name":"WMMEDIATYPE_Image","features":[88]},{"name":"WMMEDIATYPE_Script","features":[88]},{"name":"WMMEDIATYPE_Text","features":[88]},{"name":"WMMEDIATYPE_Video","features":[88]},{"name":"WMMPEG2VIDEOINFO","features":[3,14,88]},{"name":"WMSCRIPTFORMAT","features":[88]},{"name":"WMSCRIPTTYPE_TwoStrings","features":[88]},{"name":"WMT_ACQUIRE_LICENSE","features":[88]},{"name":"WMT_ATTR_DATATYPE","features":[88]},{"name":"WMT_ATTR_IMAGETYPE","features":[88]},{"name":"WMT_BACKUPRESTORE_BEGIN","features":[88]},{"name":"WMT_BACKUPRESTORE_CONNECTING","features":[88]},{"name":"WMT_BACKUPRESTORE_DISCONNECTING","features":[88]},{"name":"WMT_BACKUPRESTORE_END","features":[88]},{"name":"WMT_BUFFERING_START","features":[88]},{"name":"WMT_BUFFERING_STOP","features":[88]},{"name":"WMT_BUFFER_SEGMENT","features":[88]},{"name":"WMT_CLEANPOINT_ONLY","features":[88]},{"name":"WMT_CLIENT_CONNECT","features":[88]},{"name":"WMT_CLIENT_CONNECT_EX","features":[88]},{"name":"WMT_CLIENT_DISCONNECT","features":[88]},{"name":"WMT_CLIENT_DISCONNECT_EX","features":[88]},{"name":"WMT_CLIENT_PROPERTIES","features":[88]},{"name":"WMT_CLOSED","features":[88]},{"name":"WMT_CODECINFO_AUDIO","features":[88]},{"name":"WMT_CODECINFO_UNKNOWN","features":[88]},{"name":"WMT_CODECINFO_VIDEO","features":[88]},{"name":"WMT_CODEC_INFO_TYPE","features":[88]},{"name":"WMT_COLORSPACEINFO_EXTENSION_DATA","features":[88]},{"name":"WMT_CONNECTING","features":[88]},{"name":"WMT_CONTENT_ENABLER","features":[88]},{"name":"WMT_CREDENTIAL_CLEAR_TEXT","features":[88]},{"name":"WMT_CREDENTIAL_DONT_CACHE","features":[88]},{"name":"WMT_CREDENTIAL_ENCRYPT","features":[88]},{"name":"WMT_CREDENTIAL_FLAGS","features":[88]},{"name":"WMT_CREDENTIAL_PROXY","features":[88]},{"name":"WMT_CREDENTIAL_SAVE","features":[88]},{"name":"WMT_DMOCATEGORY_AUDIO_WATERMARK","features":[88]},{"name":"WMT_DMOCATEGORY_VIDEO_WATERMARK","features":[88]},{"name":"WMT_DRMLA_TAMPERED","features":[88]},{"name":"WMT_DRMLA_TRUST","features":[88]},{"name":"WMT_DRMLA_TRUSTED","features":[88]},{"name":"WMT_DRMLA_UNTRUSTED","features":[88]},{"name":"WMT_END_OF_FILE","features":[88]},{"name":"WMT_END_OF_SEGMENT","features":[88]},{"name":"WMT_END_OF_STREAMING","features":[88]},{"name":"WMT_EOF","features":[88]},{"name":"WMT_ERROR","features":[88]},{"name":"WMT_ERROR_WITHURL","features":[88]},{"name":"WMT_FILESINK_DATA_UNIT","features":[88]},{"name":"WMT_FILESINK_MODE","features":[88]},{"name":"WMT_FM_FILESINK_DATA_UNITS","features":[88]},{"name":"WMT_FM_FILESINK_UNBUFFERED","features":[88]},{"name":"WMT_FM_SINGLE_BUFFERS","features":[88]},{"name":"WMT_IMAGETYPE_BITMAP","features":[88]},{"name":"WMT_IMAGETYPE_GIF","features":[88]},{"name":"WMT_IMAGETYPE_JPEG","features":[88]},{"name":"WMT_IMAGE_TYPE","features":[88]},{"name":"WMT_INDEXER_TYPE","features":[88]},{"name":"WMT_INDEX_PROGRESS","features":[88]},{"name":"WMT_INDEX_TYPE","features":[88]},{"name":"WMT_INDIVIDUALIZE","features":[88]},{"name":"WMT_INIT_PLAYLIST_BURN","features":[88]},{"name":"WMT_IT_BITMAP","features":[88]},{"name":"WMT_IT_FRAME_NUMBERS","features":[88]},{"name":"WMT_IT_GIF","features":[88]},{"name":"WMT_IT_JPEG","features":[88]},{"name":"WMT_IT_NEAREST_CLEAN_POINT","features":[88]},{"name":"WMT_IT_NEAREST_DATA_UNIT","features":[88]},{"name":"WMT_IT_NEAREST_OBJECT","features":[88]},{"name":"WMT_IT_NONE","features":[88]},{"name":"WMT_IT_PRESENTATION_TIME","features":[88]},{"name":"WMT_IT_TIMECODE","features":[88]},{"name":"WMT_LICENSEURL_SIGNATURE_STATE","features":[88]},{"name":"WMT_LOCATING","features":[88]},{"name":"WMT_MISSING_CODEC","features":[88]},{"name":"WMT_MS_CLASS_MIXED","features":[88]},{"name":"WMT_MS_CLASS_MUSIC","features":[88]},{"name":"WMT_MS_CLASS_SPEECH","features":[88]},{"name":"WMT_MUSICSPEECH_CLASS_MODE","features":[88]},{"name":"WMT_NATIVE_OUTPUT_PROPS_CHANGED","features":[88]},{"name":"WMT_NEEDS_INDIVIDUALIZATION","features":[88]},{"name":"WMT_NET_PROTOCOL","features":[88]},{"name":"WMT_NEW_METADATA","features":[88]},{"name":"WMT_NEW_SOURCEFLAGS","features":[88]},{"name":"WMT_NO_RIGHTS","features":[88]},{"name":"WMT_NO_RIGHTS_EX","features":[88]},{"name":"WMT_OFF","features":[88]},{"name":"WMT_OFFSET_FORMAT","features":[88]},{"name":"WMT_OFFSET_FORMAT_100NS","features":[88]},{"name":"WMT_OFFSET_FORMAT_100NS_APPROXIMATE","features":[88]},{"name":"WMT_OFFSET_FORMAT_FRAME_NUMBERS","features":[88]},{"name":"WMT_OFFSET_FORMAT_PLAYLIST_OFFSET","features":[88]},{"name":"WMT_OFFSET_FORMAT_TIMECODE","features":[88]},{"name":"WMT_ON","features":[88]},{"name":"WMT_OPENED","features":[88]},{"name":"WMT_PAYLOAD_FRAGMENT","features":[88]},{"name":"WMT_PLAY_MODE","features":[88]},{"name":"WMT_PLAY_MODE_AUTOSELECT","features":[88]},{"name":"WMT_PLAY_MODE_DOWNLOAD","features":[88]},{"name":"WMT_PLAY_MODE_LOCAL","features":[88]},{"name":"WMT_PLAY_MODE_STREAMING","features":[88]},{"name":"WMT_PREROLL_COMPLETE","features":[88]},{"name":"WMT_PREROLL_READY","features":[88]},{"name":"WMT_PROTOCOL_HTTP","features":[88]},{"name":"WMT_PROXIMITY_COMPLETED","features":[88]},{"name":"WMT_PROXIMITY_RESULT","features":[88]},{"name":"WMT_PROXY_SETTINGS","features":[88]},{"name":"WMT_PROXY_SETTING_AUTO","features":[88]},{"name":"WMT_PROXY_SETTING_BROWSER","features":[88]},{"name":"WMT_PROXY_SETTING_MANUAL","features":[88]},{"name":"WMT_PROXY_SETTING_MAX","features":[88]},{"name":"WMT_PROXY_SETTING_NONE","features":[88]},{"name":"WMT_RECONNECT_END","features":[88]},{"name":"WMT_RECONNECT_START","features":[88]},{"name":"WMT_RESTRICTED_LICENSE","features":[88]},{"name":"WMT_RIGHTS","features":[88]},{"name":"WMT_RIGHT_COLLABORATIVE_PLAY","features":[88]},{"name":"WMT_RIGHT_COPY","features":[88]},{"name":"WMT_RIGHT_COPY_TO_CD","features":[88]},{"name":"WMT_RIGHT_COPY_TO_NON_SDMI_DEVICE","features":[88]},{"name":"WMT_RIGHT_COPY_TO_SDMI_DEVICE","features":[88]},{"name":"WMT_RIGHT_ONE_TIME","features":[88]},{"name":"WMT_RIGHT_PLAYBACK","features":[88]},{"name":"WMT_RIGHT_SAVE_STREAM_PROTECTED","features":[88]},{"name":"WMT_RIGHT_SDMI_NOMORECOPIES","features":[88]},{"name":"WMT_RIGHT_SDMI_TRIGGER","features":[88]},{"name":"WMT_SAVEAS_START","features":[88]},{"name":"WMT_SAVEAS_STOP","features":[88]},{"name":"WMT_SET_FEC_SPAN","features":[88]},{"name":"WMT_SOURCE_SWITCH","features":[88]},{"name":"WMT_STARTED","features":[88]},{"name":"WMT_STATUS","features":[88]},{"name":"WMT_STOPPED","features":[88]},{"name":"WMT_STORAGE_FORMAT","features":[88]},{"name":"WMT_STREAM_SELECTION","features":[88]},{"name":"WMT_STRIDING","features":[88]},{"name":"WMT_Storage_Format_MP3","features":[88]},{"name":"WMT_Storage_Format_V1","features":[88]},{"name":"WMT_TIMECODE_EXTENSION_DATA","features":[88]},{"name":"WMT_TIMECODE_FRAMERATE","features":[88]},{"name":"WMT_TIMECODE_FRAMERATE_24","features":[88]},{"name":"WMT_TIMECODE_FRAMERATE_25","features":[88]},{"name":"WMT_TIMECODE_FRAMERATE_30","features":[88]},{"name":"WMT_TIMECODE_FRAMERATE_30DROP","features":[88]},{"name":"WMT_TIMER","features":[88]},{"name":"WMT_TRANSCRYPTOR_CLOSED","features":[88]},{"name":"WMT_TRANSCRYPTOR_INIT","features":[88]},{"name":"WMT_TRANSCRYPTOR_READ","features":[88]},{"name":"WMT_TRANSCRYPTOR_SEEKED","features":[88]},{"name":"WMT_TRANSPORT_TYPE","features":[88]},{"name":"WMT_TYPE_BINARY","features":[88]},{"name":"WMT_TYPE_BOOL","features":[88]},{"name":"WMT_TYPE_DWORD","features":[88]},{"name":"WMT_TYPE_GUID","features":[88]},{"name":"WMT_TYPE_QWORD","features":[88]},{"name":"WMT_TYPE_STRING","features":[88]},{"name":"WMT_TYPE_WORD","features":[88]},{"name":"WMT_Transport_Type_Reliable","features":[88]},{"name":"WMT_Transport_Type_Unreliable","features":[88]},{"name":"WMT_VERSION","features":[88]},{"name":"WMT_VER_4_0","features":[88]},{"name":"WMT_VER_7_0","features":[88]},{"name":"WMT_VER_8_0","features":[88]},{"name":"WMT_VER_9_0","features":[88]},{"name":"WMT_VIDEOIMAGE_INTEGER_DENOMINATOR","features":[88]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER","features":[88]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER_2","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE2","features":[3,88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ADV_BLENDING","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_BLENDING","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_INPUT_FRAME","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_MOTION","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_OUTPUT_FRAME","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ROTATION","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_CURRENT_INPUT_FRAME","features":[88]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_PREVIOUS_INPUT_FRAME","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_BOW_TIE","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CIRCLE","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CROSS_FADE","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAGONAL","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAMOND","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FADE_TO_COLOR","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FILLED_V","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FLIP","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_INSET","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_IRIS","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_PAGE_ROLL","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_RECTANGLE","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_REVEAL","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SLIDE","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SPLIT","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_STAR","features":[88]},{"name":"WMT_VIDEOIMAGE_TRANSITION_WHEEL","features":[88]},{"name":"WMT_WATERMARK_ENTRY","features":[88]},{"name":"WMT_WATERMARK_ENTRY_TYPE","features":[88]},{"name":"WMT_WEBSTREAM_FORMAT","features":[88]},{"name":"WMT_WEBSTREAM_SAMPLE_HEADER","features":[88]},{"name":"WMT_WMETYPE_AUDIO","features":[88]},{"name":"WMT_WMETYPE_VIDEO","features":[88]},{"name":"WMVIDEOINFOHEADER","features":[3,14,88]},{"name":"WMVIDEOINFOHEADER2","features":[3,14,88]},{"name":"WM_ADDRESS_ACCESSENTRY","features":[88]},{"name":"WM_AETYPE","features":[88]},{"name":"WM_AETYPE_EXCLUDE","features":[88]},{"name":"WM_AETYPE_INCLUDE","features":[88]},{"name":"WM_CLIENT_PROPERTIES","features":[88]},{"name":"WM_CLIENT_PROPERTIES_EX","features":[88]},{"name":"WM_CL_INTERLACED420","features":[88]},{"name":"WM_CL_PROGRESSIVE420","features":[88]},{"name":"WM_CT_BOTTOM_FIELD_FIRST","features":[88]},{"name":"WM_CT_INTERLACED","features":[88]},{"name":"WM_CT_REPEAT_FIRST_FIELD","features":[88]},{"name":"WM_CT_TOP_FIELD_FIRST","features":[88]},{"name":"WM_DM_DEINTERLACE_HALFSIZE","features":[88]},{"name":"WM_DM_DEINTERLACE_HALFSIZEDOUBLERATE","features":[88]},{"name":"WM_DM_DEINTERLACE_INVERSETELECINE","features":[88]},{"name":"WM_DM_DEINTERLACE_NORMAL","features":[88]},{"name":"WM_DM_DEINTERLACE_VERTICALHALFSIZEDOUBLERATE","features":[88]},{"name":"WM_DM_INTERLACED_TYPE","features":[88]},{"name":"WM_DM_IT_DISABLE_COHERENT_MODE","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_COHERENCY","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_BOTTOM","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_TOP","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_BOTTOM","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_TOP","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_BOTTOM","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_TOP","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_BOTTOM","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_TOP","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_BOTTOM","features":[88]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_TOP","features":[88]},{"name":"WM_DM_NOTINTERLACED","features":[88]},{"name":"WM_LEAKY_BUCKET_PAIR","features":[88]},{"name":"WM_MAX_STREAMS","features":[88]},{"name":"WM_MAX_VIDEO_STREAMS","features":[88]},{"name":"WM_MEDIA_TYPE","features":[3,88]},{"name":"WM_PICTURE","features":[88]},{"name":"WM_PLAYBACK_DRC_HIGH","features":[88]},{"name":"WM_PLAYBACK_DRC_LEVEL","features":[88]},{"name":"WM_PLAYBACK_DRC_LOW","features":[88]},{"name":"WM_PLAYBACK_DRC_MEDIUM","features":[88]},{"name":"WM_PORT_NUMBER_RANGE","features":[88]},{"name":"WM_READER_CLIENTINFO","features":[3,88]},{"name":"WM_READER_STATISTICS","features":[88]},{"name":"WM_SFEX_DATALOSS","features":[88]},{"name":"WM_SFEX_NOTASYNCPOINT","features":[88]},{"name":"WM_SFEX_TYPE","features":[88]},{"name":"WM_SF_CLEANPOINT","features":[88]},{"name":"WM_SF_DATALOSS","features":[88]},{"name":"WM_SF_DISCONTINUITY","features":[88]},{"name":"WM_SF_TYPE","features":[88]},{"name":"WM_STREAM_PRIORITY_RECORD","features":[3,88]},{"name":"WM_STREAM_TYPE_INFO","features":[88]},{"name":"WM_SYNCHRONISED_LYRICS","features":[88]},{"name":"WM_SampleExtensionGUID_ChromaLocation","features":[88]},{"name":"WM_SampleExtensionGUID_ColorSpaceInfo","features":[88]},{"name":"WM_SampleExtensionGUID_ContentType","features":[88]},{"name":"WM_SampleExtensionGUID_FileName","features":[88]},{"name":"WM_SampleExtensionGUID_OutputCleanPoint","features":[88]},{"name":"WM_SampleExtensionGUID_PixelAspectRatio","features":[88]},{"name":"WM_SampleExtensionGUID_SampleDuration","features":[88]},{"name":"WM_SampleExtensionGUID_SampleProtectionSalt","features":[88]},{"name":"WM_SampleExtensionGUID_Timecode","features":[88]},{"name":"WM_SampleExtensionGUID_UserDataInfo","features":[88]},{"name":"WM_SampleExtension_ChromaLocation_Size","features":[88]},{"name":"WM_SampleExtension_ColorSpaceInfo_Size","features":[88]},{"name":"WM_SampleExtension_ContentType_Size","features":[88]},{"name":"WM_SampleExtension_PixelAspectRatio_Size","features":[88]},{"name":"WM_SampleExtension_SampleDuration_Size","features":[88]},{"name":"WM_SampleExtension_Timecode_Size","features":[88]},{"name":"WM_USER_TEXT","features":[88]},{"name":"WM_USER_WEB_URL","features":[88]},{"name":"WM_WRITER_STATISTICS","features":[88]},{"name":"WM_WRITER_STATISTICS_EX","features":[88]},{"name":"_AM_ASFWRITERCONFIG_PARAM","features":[88]},{"name":"g_dwWMContentAttributes","features":[88]},{"name":"g_dwWMNSCAttributes","features":[88]},{"name":"g_dwWMSpecialAttributes","features":[88]},{"name":"g_wszASFLeakyBucketPairs","features":[88]},{"name":"g_wszAllowInterlacedOutput","features":[88]},{"name":"g_wszAverageLevel","features":[88]},{"name":"g_wszBufferAverage","features":[88]},{"name":"g_wszComplexity","features":[88]},{"name":"g_wszComplexityLive","features":[88]},{"name":"g_wszComplexityMax","features":[88]},{"name":"g_wszComplexityOffline","features":[88]},{"name":"g_wszDecoderComplexityRequested","features":[88]},{"name":"g_wszDedicatedDeliveryThread","features":[88]},{"name":"g_wszDeinterlaceMode","features":[88]},{"name":"g_wszDeliverOnReceive","features":[88]},{"name":"g_wszDeviceConformanceTemplate","features":[88]},{"name":"g_wszDynamicRangeControl","features":[88]},{"name":"g_wszEDL","features":[88]},{"name":"g_wszEarlyDataDelivery","features":[88]},{"name":"g_wszEnableDiscreteOutput","features":[88]},{"name":"g_wszEnableFrameInterpolation","features":[88]},{"name":"g_wszEnableWMAProSPDIFOutput","features":[88]},{"name":"g_wszFailSeekOnError","features":[88]},{"name":"g_wszFixedFrameRate","features":[88]},{"name":"g_wszFold6To2Channels3","features":[88]},{"name":"g_wszFoldToChannelsTemplate","features":[88]},{"name":"g_wszInitialPatternForInverseTelecine","features":[88]},{"name":"g_wszInterlacedCoding","features":[88]},{"name":"g_wszIsVBRSupported","features":[88]},{"name":"g_wszJPEGCompressionQuality","features":[88]},{"name":"g_wszJustInTimeDecode","features":[88]},{"name":"g_wszMixedClassMode","features":[88]},{"name":"g_wszMusicClassMode","features":[88]},{"name":"g_wszMusicSpeechClassMode","features":[88]},{"name":"g_wszNeedsPreviousSample","features":[88]},{"name":"g_wszNumPasses","features":[88]},{"name":"g_wszOriginalSourceFormatTag","features":[88]},{"name":"g_wszOriginalWaveFormat","features":[88]},{"name":"g_wszPeakValue","features":[88]},{"name":"g_wszPermitSeeksBeyondEndOfStream","features":[88]},{"name":"g_wszReloadIndexOnSeek","features":[88]},{"name":"g_wszScrambledAudio","features":[88]},{"name":"g_wszSingleOutputBuffer","features":[88]},{"name":"g_wszSoftwareScaling","features":[88]},{"name":"g_wszSourceBufferTime","features":[88]},{"name":"g_wszSourceMaxBytesAtOnce","features":[88]},{"name":"g_wszSpeakerConfig","features":[88]},{"name":"g_wszSpeechCaps","features":[88]},{"name":"g_wszSpeechClassMode","features":[88]},{"name":"g_wszStreamLanguage","features":[88]},{"name":"g_wszStreamNumIndexObjects","features":[88]},{"name":"g_wszUsePacketAtSeekPoint","features":[88]},{"name":"g_wszVBRBitrateMax","features":[88]},{"name":"g_wszVBRBufferWindowMax","features":[88]},{"name":"g_wszVBREnabled","features":[88]},{"name":"g_wszVBRPeak","features":[88]},{"name":"g_wszVBRQuality","features":[88]},{"name":"g_wszVideoSampleDurations","features":[88]},{"name":"g_wszWMADID","features":[88]},{"name":"g_wszWMASFPacketCount","features":[88]},{"name":"g_wszWMASFSecurityObjectsSize","features":[88]},{"name":"g_wszWMAlbumArtist","features":[88]},{"name":"g_wszWMAlbumArtistSort","features":[88]},{"name":"g_wszWMAlbumCoverURL","features":[88]},{"name":"g_wszWMAlbumTitle","features":[88]},{"name":"g_wszWMAlbumTitleSort","features":[88]},{"name":"g_wszWMAspectRatioX","features":[88]},{"name":"g_wszWMAspectRatioY","features":[88]},{"name":"g_wszWMAudioFileURL","features":[88]},{"name":"g_wszWMAudioSourceURL","features":[88]},{"name":"g_wszWMAuthor","features":[88]},{"name":"g_wszWMAuthorSort","features":[88]},{"name":"g_wszWMAuthorURL","features":[88]},{"name":"g_wszWMBannerImageData","features":[88]},{"name":"g_wszWMBannerImageType","features":[88]},{"name":"g_wszWMBannerImageURL","features":[88]},{"name":"g_wszWMBeatsPerMinute","features":[88]},{"name":"g_wszWMBitrate","features":[88]},{"name":"g_wszWMBroadcast","features":[88]},{"name":"g_wszWMCategory","features":[88]},{"name":"g_wszWMCodec","features":[88]},{"name":"g_wszWMComposer","features":[88]},{"name":"g_wszWMComposerSort","features":[88]},{"name":"g_wszWMConductor","features":[88]},{"name":"g_wszWMContainerFormat","features":[88]},{"name":"g_wszWMContentDistributor","features":[88]},{"name":"g_wszWMContentGroupDescription","features":[88]},{"name":"g_wszWMCopyright","features":[88]},{"name":"g_wszWMCopyrightURL","features":[88]},{"name":"g_wszWMCurrentBitrate","features":[88]},{"name":"g_wszWMDRM","features":[88]},{"name":"g_wszWMDRM_ContentID","features":[88]},{"name":"g_wszWMDRM_Flags","features":[88]},{"name":"g_wszWMDRM_HeaderSignPrivKey","features":[88]},{"name":"g_wszWMDRM_IndividualizedVersion","features":[88]},{"name":"g_wszWMDRM_KeyID","features":[88]},{"name":"g_wszWMDRM_KeySeed","features":[88]},{"name":"g_wszWMDRM_LASignatureCert","features":[88]},{"name":"g_wszWMDRM_LASignatureLicSrvCert","features":[88]},{"name":"g_wszWMDRM_LASignaturePrivKey","features":[88]},{"name":"g_wszWMDRM_LASignatureRootCert","features":[88]},{"name":"g_wszWMDRM_Level","features":[88]},{"name":"g_wszWMDRM_LicenseAcqURL","features":[88]},{"name":"g_wszWMDRM_SourceID","features":[88]},{"name":"g_wszWMDRM_V1LicenseAcqURL","features":[88]},{"name":"g_wszWMDVDID","features":[88]},{"name":"g_wszWMDescription","features":[88]},{"name":"g_wszWMDirector","features":[88]},{"name":"g_wszWMDuration","features":[88]},{"name":"g_wszWMEncodedBy","features":[88]},{"name":"g_wszWMEncodingSettings","features":[88]},{"name":"g_wszWMEncodingTime","features":[88]},{"name":"g_wszWMEpisodeNumber","features":[88]},{"name":"g_wszWMFileSize","features":[88]},{"name":"g_wszWMGenre","features":[88]},{"name":"g_wszWMGenreID","features":[88]},{"name":"g_wszWMHasArbitraryDataStream","features":[88]},{"name":"g_wszWMHasAttachedImages","features":[88]},{"name":"g_wszWMHasAudio","features":[88]},{"name":"g_wszWMHasFileTransferStream","features":[88]},{"name":"g_wszWMHasImage","features":[88]},{"name":"g_wszWMHasScript","features":[88]},{"name":"g_wszWMHasVideo","features":[88]},{"name":"g_wszWMISAN","features":[88]},{"name":"g_wszWMISRC","features":[88]},{"name":"g_wszWMInitialKey","features":[88]},{"name":"g_wszWMIsCompilation","features":[88]},{"name":"g_wszWMIsVBR","features":[88]},{"name":"g_wszWMLanguage","features":[88]},{"name":"g_wszWMLyrics","features":[88]},{"name":"g_wszWMLyrics_Synchronised","features":[88]},{"name":"g_wszWMMCDI","features":[88]},{"name":"g_wszWMMediaClassPrimaryID","features":[88]},{"name":"g_wszWMMediaClassSecondaryID","features":[88]},{"name":"g_wszWMMediaCredits","features":[88]},{"name":"g_wszWMMediaIsDelay","features":[88]},{"name":"g_wszWMMediaIsFinale","features":[88]},{"name":"g_wszWMMediaIsLive","features":[88]},{"name":"g_wszWMMediaIsPremiere","features":[88]},{"name":"g_wszWMMediaIsRepeat","features":[88]},{"name":"g_wszWMMediaIsSAP","features":[88]},{"name":"g_wszWMMediaIsStereo","features":[88]},{"name":"g_wszWMMediaIsSubtitled","features":[88]},{"name":"g_wszWMMediaIsTape","features":[88]},{"name":"g_wszWMMediaNetworkAffiliation","features":[88]},{"name":"g_wszWMMediaOriginalBroadcastDateTime","features":[88]},{"name":"g_wszWMMediaOriginalChannel","features":[88]},{"name":"g_wszWMMediaStationCallSign","features":[88]},{"name":"g_wszWMMediaStationName","features":[88]},{"name":"g_wszWMModifiedBy","features":[88]},{"name":"g_wszWMMood","features":[88]},{"name":"g_wszWMNSCAddress","features":[88]},{"name":"g_wszWMNSCDescription","features":[88]},{"name":"g_wszWMNSCEmail","features":[88]},{"name":"g_wszWMNSCName","features":[88]},{"name":"g_wszWMNSCPhone","features":[88]},{"name":"g_wszWMNumberOfFrames","features":[88]},{"name":"g_wszWMOptimalBitrate","features":[88]},{"name":"g_wszWMOriginalAlbumTitle","features":[88]},{"name":"g_wszWMOriginalArtist","features":[88]},{"name":"g_wszWMOriginalFilename","features":[88]},{"name":"g_wszWMOriginalLyricist","features":[88]},{"name":"g_wszWMOriginalReleaseTime","features":[88]},{"name":"g_wszWMOriginalReleaseYear","features":[88]},{"name":"g_wszWMParentalRating","features":[88]},{"name":"g_wszWMParentalRatingReason","features":[88]},{"name":"g_wszWMPartOfSet","features":[88]},{"name":"g_wszWMPeakBitrate","features":[88]},{"name":"g_wszWMPeriod","features":[88]},{"name":"g_wszWMPicture","features":[88]},{"name":"g_wszWMPlaylistDelay","features":[88]},{"name":"g_wszWMProducer","features":[88]},{"name":"g_wszWMPromotionURL","features":[88]},{"name":"g_wszWMProtected","features":[88]},{"name":"g_wszWMProtectionType","features":[88]},{"name":"g_wszWMProvider","features":[88]},{"name":"g_wszWMProviderCopyright","features":[88]},{"name":"g_wszWMProviderRating","features":[88]},{"name":"g_wszWMProviderStyle","features":[88]},{"name":"g_wszWMPublisher","features":[88]},{"name":"g_wszWMRadioStationName","features":[88]},{"name":"g_wszWMRadioStationOwner","features":[88]},{"name":"g_wszWMRating","features":[88]},{"name":"g_wszWMSeasonNumber","features":[88]},{"name":"g_wszWMSeekable","features":[88]},{"name":"g_wszWMSharedUserRating","features":[88]},{"name":"g_wszWMSignature_Name","features":[88]},{"name":"g_wszWMSkipBackward","features":[88]},{"name":"g_wszWMSkipForward","features":[88]},{"name":"g_wszWMStreamTypeInfo","features":[88]},{"name":"g_wszWMStridable","features":[88]},{"name":"g_wszWMSubTitle","features":[88]},{"name":"g_wszWMSubTitleDescription","features":[88]},{"name":"g_wszWMSubscriptionContentID","features":[88]},{"name":"g_wszWMText","features":[88]},{"name":"g_wszWMTitle","features":[88]},{"name":"g_wszWMTitleSort","features":[88]},{"name":"g_wszWMToolName","features":[88]},{"name":"g_wszWMToolVersion","features":[88]},{"name":"g_wszWMTrack","features":[88]},{"name":"g_wszWMTrackNumber","features":[88]},{"name":"g_wszWMTrusted","features":[88]},{"name":"g_wszWMUniqueFileIdentifier","features":[88]},{"name":"g_wszWMUse_Advanced_DRM","features":[88]},{"name":"g_wszWMUse_DRM","features":[88]},{"name":"g_wszWMUserWebURL","features":[88]},{"name":"g_wszWMVideoClosedCaptioning","features":[88]},{"name":"g_wszWMVideoFrameRate","features":[88]},{"name":"g_wszWMVideoHeight","features":[88]},{"name":"g_wszWMVideoWidth","features":[88]},{"name":"g_wszWMWMADRCAverageReference","features":[88]},{"name":"g_wszWMWMADRCAverageTarget","features":[88]},{"name":"g_wszWMWMADRCPeakReference","features":[88]},{"name":"g_wszWMWMADRCPeakTarget","features":[88]},{"name":"g_wszWMWMCPDistributor","features":[88]},{"name":"g_wszWMWMCPDistributorID","features":[88]},{"name":"g_wszWMWMCollectionGroupID","features":[88]},{"name":"g_wszWMWMCollectionID","features":[88]},{"name":"g_wszWMWMContentID","features":[88]},{"name":"g_wszWMWMShadowFileSourceDRMType","features":[88]},{"name":"g_wszWMWMShadowFileSourceFileType","features":[88]},{"name":"g_wszWMWriter","features":[88]},{"name":"g_wszWMYear","features":[88]},{"name":"g_wszWatermarkCLSID","features":[88]},{"name":"g_wszWatermarkConfig","features":[88]}],"445":[{"name":"ADDRESS_TYPE_IANA","features":[89]},{"name":"ADDRESS_TYPE_IATA","features":[89]},{"name":"Allow","features":[89]},{"name":"CHANGESTATE","features":[89]},{"name":"CLIENT_TYPE_BOOTP","features":[89]},{"name":"CLIENT_TYPE_DHCP","features":[89]},{"name":"CLIENT_TYPE_NONE","features":[89]},{"name":"CLIENT_TYPE_RESERVATION_FLAG","features":[89]},{"name":"CLIENT_TYPE_UNSPECIFIED","features":[89]},{"name":"COMMUNICATION_INT","features":[89]},{"name":"CONFLICT_DONE","features":[89]},{"name":"DATE_TIME","features":[89]},{"name":"DEFAULTQUARSETTING","features":[89]},{"name":"DHCPAPI_PARAMS","features":[3,89]},{"name":"DHCPCAPI_CLASSID","features":[89]},{"name":"DHCPCAPI_DEREGISTER_HANDLE_EVENT","features":[89]},{"name":"DHCPCAPI_PARAMS_ARRAY","features":[3,89]},{"name":"DHCPCAPI_REGISTER_HANDLE_EVENT","features":[89]},{"name":"DHCPCAPI_REQUEST_ASYNCHRONOUS","features":[89]},{"name":"DHCPCAPI_REQUEST_CANCEL","features":[89]},{"name":"DHCPCAPI_REQUEST_MASK","features":[89]},{"name":"DHCPCAPI_REQUEST_PERSISTENT","features":[89]},{"name":"DHCPCAPI_REQUEST_SYNCHRONOUS","features":[89]},{"name":"DHCPDS_SERVER","features":[89]},{"name":"DHCPDS_SERVERS","features":[89]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO","features":[3,89]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_ARRAY","features":[3,89]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_EX","features":[3,89]},{"name":"DHCPV6CAPI_CLASSID","features":[89]},{"name":"DHCPV6CAPI_PARAMS","features":[3,89]},{"name":"DHCPV6CAPI_PARAMS_ARRAY","features":[3,89]},{"name":"DHCPV6Prefix","features":[89]},{"name":"DHCPV6PrefixLeaseInformation","features":[89]},{"name":"DHCPV6_BIND_ELEMENT","features":[3,89]},{"name":"DHCPV6_BIND_ELEMENT_ARRAY","features":[3,89]},{"name":"DHCPV6_IP_ARRAY","features":[89]},{"name":"DHCPV6_OPTION_CLIENTID","features":[89]},{"name":"DHCPV6_OPTION_DNS_SERVERS","features":[89]},{"name":"DHCPV6_OPTION_DOMAIN_LIST","features":[89]},{"name":"DHCPV6_OPTION_IA_NA","features":[89]},{"name":"DHCPV6_OPTION_IA_PD","features":[89]},{"name":"DHCPV6_OPTION_IA_TA","features":[89]},{"name":"DHCPV6_OPTION_NISP_DOMAIN_NAME","features":[89]},{"name":"DHCPV6_OPTION_NISP_SERVERS","features":[89]},{"name":"DHCPV6_OPTION_NIS_DOMAIN_NAME","features":[89]},{"name":"DHCPV6_OPTION_NIS_SERVERS","features":[89]},{"name":"DHCPV6_OPTION_ORO","features":[89]},{"name":"DHCPV6_OPTION_PREFERENCE","features":[89]},{"name":"DHCPV6_OPTION_RAPID_COMMIT","features":[89]},{"name":"DHCPV6_OPTION_RECONF_MSG","features":[89]},{"name":"DHCPV6_OPTION_SERVERID","features":[89]},{"name":"DHCPV6_OPTION_SIP_SERVERS_ADDRS","features":[89]},{"name":"DHCPV6_OPTION_SIP_SERVERS_NAMES","features":[89]},{"name":"DHCPV6_OPTION_UNICAST","features":[89]},{"name":"DHCPV6_OPTION_USER_CLASS","features":[89]},{"name":"DHCPV6_OPTION_VENDOR_CLASS","features":[89]},{"name":"DHCPV6_OPTION_VENDOR_OPTS","features":[89]},{"name":"DHCPV6_STATELESS_PARAMS","features":[3,89]},{"name":"DHCPV6_STATELESS_PARAM_TYPE","features":[89]},{"name":"DHCPV6_STATELESS_SCOPE_STATS","features":[89]},{"name":"DHCPV6_STATELESS_STATS","features":[89]},{"name":"DHCP_ADDR_PATTERN","features":[3,89]},{"name":"DHCP_ALL_OPTIONS","features":[89]},{"name":"DHCP_ALL_OPTION_VALUES","features":[3,89]},{"name":"DHCP_ALL_OPTION_VALUES_PB","features":[3,89]},{"name":"DHCP_ATTRIB","features":[3,89]},{"name":"DHCP_ATTRIB_ARRAY","features":[3,89]},{"name":"DHCP_ATTRIB_BOOL_IS_ADMIN","features":[89]},{"name":"DHCP_ATTRIB_BOOL_IS_BINDING_AWARE","features":[89]},{"name":"DHCP_ATTRIB_BOOL_IS_DYNBOOTP","features":[89]},{"name":"DHCP_ATTRIB_BOOL_IS_PART_OF_DSDC","features":[89]},{"name":"DHCP_ATTRIB_BOOL_IS_ROGUE","features":[89]},{"name":"DHCP_ATTRIB_TYPE_BOOL","features":[89]},{"name":"DHCP_ATTRIB_TYPE_ULONG","features":[89]},{"name":"DHCP_ATTRIB_ULONG_RESTORE_STATUS","features":[89]},{"name":"DHCP_BINARY_DATA","features":[89]},{"name":"DHCP_BIND_ELEMENT","features":[3,89]},{"name":"DHCP_BIND_ELEMENT_ARRAY","features":[3,89]},{"name":"DHCP_BOOTP_IP_RANGE","features":[89]},{"name":"DHCP_CALLOUT_ENTRY_POINT","features":[89]},{"name":"DHCP_CALLOUT_LIST_KEY","features":[89]},{"name":"DHCP_CALLOUT_LIST_VALUE","features":[89]},{"name":"DHCP_CALLOUT_TABLE","features":[3,89]},{"name":"DHCP_CLASS_INFO","features":[3,89]},{"name":"DHCP_CLASS_INFO_ARRAY","features":[3,89]},{"name":"DHCP_CLASS_INFO_ARRAY_V6","features":[3,89]},{"name":"DHCP_CLASS_INFO_V6","features":[3,89]},{"name":"DHCP_CLIENT_BOOTP","features":[89]},{"name":"DHCP_CLIENT_DHCP","features":[89]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO","features":[3,89]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY","features":[3,89]},{"name":"DHCP_CLIENT_INFO","features":[89]},{"name":"DHCP_CLIENT_INFO_ARRAY","features":[89]},{"name":"DHCP_CLIENT_INFO_ARRAY_V4","features":[89]},{"name":"DHCP_CLIENT_INFO_ARRAY_V5","features":[89]},{"name":"DHCP_CLIENT_INFO_ARRAY_V6","features":[89]},{"name":"DHCP_CLIENT_INFO_ARRAY_VQ","features":[3,89]},{"name":"DHCP_CLIENT_INFO_EX","features":[3,89]},{"name":"DHCP_CLIENT_INFO_EX_ARRAY","features":[3,89]},{"name":"DHCP_CLIENT_INFO_PB","features":[3,89]},{"name":"DHCP_CLIENT_INFO_PB_ARRAY","features":[3,89]},{"name":"DHCP_CLIENT_INFO_V4","features":[89]},{"name":"DHCP_CLIENT_INFO_V5","features":[89]},{"name":"DHCP_CLIENT_INFO_V6","features":[89]},{"name":"DHCP_CLIENT_INFO_VQ","features":[3,89]},{"name":"DHCP_CONTROL_CONTINUE","features":[89]},{"name":"DHCP_CONTROL_PAUSE","features":[89]},{"name":"DHCP_CONTROL_START","features":[89]},{"name":"DHCP_CONTROL_STOP","features":[89]},{"name":"DHCP_DROP_DUPLICATE","features":[89]},{"name":"DHCP_DROP_GEN_FAILURE","features":[89]},{"name":"DHCP_DROP_INTERNAL_ERROR","features":[89]},{"name":"DHCP_DROP_INVALID","features":[89]},{"name":"DHCP_DROP_NOADDRESS","features":[89]},{"name":"DHCP_DROP_NOMEM","features":[89]},{"name":"DHCP_DROP_NO_SUBNETS","features":[89]},{"name":"DHCP_DROP_PAUSED","features":[89]},{"name":"DHCP_DROP_PROCESSED","features":[89]},{"name":"DHCP_DROP_TIMEOUT","features":[89]},{"name":"DHCP_DROP_UNAUTH","features":[89]},{"name":"DHCP_DROP_WRONG_SERVER","features":[89]},{"name":"DHCP_ENDPOINT_FLAG_CANT_MODIFY","features":[89]},{"name":"DHCP_FAILOVER_DELETE_SCOPES","features":[89]},{"name":"DHCP_FAILOVER_MAX_NUM_ADD_SCOPES","features":[89]},{"name":"DHCP_FAILOVER_MAX_NUM_REL","features":[89]},{"name":"DHCP_FAILOVER_MODE","features":[89]},{"name":"DHCP_FAILOVER_RELATIONSHIP","features":[89]},{"name":"DHCP_FAILOVER_RELATIONSHIP_ARRAY","features":[89]},{"name":"DHCP_FAILOVER_SERVER","features":[89]},{"name":"DHCP_FAILOVER_STATISTICS","features":[89]},{"name":"DHCP_FILTER_ADD_INFO","features":[3,89]},{"name":"DHCP_FILTER_ENUM_INFO","features":[3,89]},{"name":"DHCP_FILTER_GLOBAL_INFO","features":[3,89]},{"name":"DHCP_FILTER_LIST_TYPE","features":[89]},{"name":"DHCP_FILTER_RECORD","features":[3,89]},{"name":"DHCP_FLAGS_DONT_ACCESS_DS","features":[89]},{"name":"DHCP_FLAGS_DONT_DO_RPC","features":[89]},{"name":"DHCP_FLAGS_OPTION_IS_VENDOR","features":[89]},{"name":"DHCP_FORCE_FLAG","features":[89]},{"name":"DHCP_GIVE_ADDRESS_NEW","features":[89]},{"name":"DHCP_GIVE_ADDRESS_OLD","features":[89]},{"name":"DHCP_HOST_INFO","features":[89]},{"name":"DHCP_HOST_INFO_V6","features":[89]},{"name":"DHCP_IPV6_ADDRESS","features":[89]},{"name":"DHCP_IP_ARRAY","features":[89]},{"name":"DHCP_IP_CLUSTER","features":[89]},{"name":"DHCP_IP_RANGE","features":[89]},{"name":"DHCP_IP_RANGE_ARRAY","features":[89]},{"name":"DHCP_IP_RANGE_V6","features":[89]},{"name":"DHCP_IP_RESERVATION","features":[89]},{"name":"DHCP_IP_RESERVATION_INFO","features":[89]},{"name":"DHCP_IP_RESERVATION_V4","features":[89]},{"name":"DHCP_IP_RESERVATION_V6","features":[89]},{"name":"DHCP_MAX_DELAY","features":[89]},{"name":"DHCP_MIB_INFO","features":[89]},{"name":"DHCP_MIB_INFO_V5","features":[89]},{"name":"DHCP_MIB_INFO_V6","features":[89]},{"name":"DHCP_MIB_INFO_VQ","features":[89]},{"name":"DHCP_MIN_DELAY","features":[89]},{"name":"DHCP_OPTION","features":[89]},{"name":"DHCP_OPTION_ARRAY","features":[89]},{"name":"DHCP_OPTION_DATA","features":[89]},{"name":"DHCP_OPTION_DATA_ELEMENT","features":[89]},{"name":"DHCP_OPTION_DATA_TYPE","features":[89]},{"name":"DHCP_OPTION_LIST","features":[89]},{"name":"DHCP_OPTION_SCOPE_INFO","features":[89]},{"name":"DHCP_OPTION_SCOPE_INFO6","features":[89]},{"name":"DHCP_OPTION_SCOPE_TYPE","features":[89]},{"name":"DHCP_OPTION_SCOPE_TYPE6","features":[89]},{"name":"DHCP_OPTION_TYPE","features":[89]},{"name":"DHCP_OPTION_VALUE","features":[89]},{"name":"DHCP_OPTION_VALUE_ARRAY","features":[89]},{"name":"DHCP_OPT_ENUM_IGNORE_VENDOR","features":[89]},{"name":"DHCP_OPT_ENUM_USE_CLASSNAME","features":[89]},{"name":"DHCP_PERF_STATS","features":[89]},{"name":"DHCP_POLICY","features":[3,89]},{"name":"DHCP_POLICY_ARRAY","features":[3,89]},{"name":"DHCP_POLICY_EX","features":[3,89]},{"name":"DHCP_POLICY_EX_ARRAY","features":[3,89]},{"name":"DHCP_POLICY_FIELDS_TO_UPDATE","features":[89]},{"name":"DHCP_POL_ATTR_TYPE","features":[89]},{"name":"DHCP_POL_COMPARATOR","features":[89]},{"name":"DHCP_POL_COND","features":[89]},{"name":"DHCP_POL_COND_ARRAY","features":[89]},{"name":"DHCP_POL_EXPR","features":[89]},{"name":"DHCP_POL_EXPR_ARRAY","features":[89]},{"name":"DHCP_POL_LOGIC_OPER","features":[89]},{"name":"DHCP_PROB_CONFLICT","features":[89]},{"name":"DHCP_PROB_DECLINE","features":[89]},{"name":"DHCP_PROB_NACKED","features":[89]},{"name":"DHCP_PROB_RELEASE","features":[89]},{"name":"DHCP_PROPERTY","features":[89]},{"name":"DHCP_PROPERTY_ARRAY","features":[89]},{"name":"DHCP_PROPERTY_ID","features":[89]},{"name":"DHCP_PROPERTY_TYPE","features":[89]},{"name":"DHCP_RESERVATION_INFO_ARRAY","features":[89]},{"name":"DHCP_RESERVED_SCOPE","features":[89]},{"name":"DHCP_RESERVED_SCOPE6","features":[89]},{"name":"DHCP_SCAN_FLAG","features":[89]},{"name":"DHCP_SCAN_ITEM","features":[89]},{"name":"DHCP_SCAN_LIST","features":[89]},{"name":"DHCP_SEARCH_INFO","features":[89]},{"name":"DHCP_SEARCH_INFO_TYPE","features":[89]},{"name":"DHCP_SEARCH_INFO_TYPE_V6","features":[89]},{"name":"DHCP_SEARCH_INFO_V6","features":[89]},{"name":"DHCP_SEND_PACKET","features":[89]},{"name":"DHCP_SERVER_CONFIG_INFO","features":[89]},{"name":"DHCP_SERVER_CONFIG_INFO_V4","features":[3,89]},{"name":"DHCP_SERVER_CONFIG_INFO_V6","features":[3,89]},{"name":"DHCP_SERVER_CONFIG_INFO_VQ","features":[3,89]},{"name":"DHCP_SERVER_OPTIONS","features":[3,89]},{"name":"DHCP_SERVER_SPECIFIC_STRINGS","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_DATA","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V4","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V5","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V6","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V4","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V5","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V6","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_TYPE","features":[89]},{"name":"DHCP_SUBNET_ELEMENT_TYPE_V6","features":[89]},{"name":"DHCP_SUBNET_INFO","features":[89]},{"name":"DHCP_SUBNET_INFO_V6","features":[89]},{"name":"DHCP_SUBNET_INFO_VQ","features":[89]},{"name":"DHCP_SUBNET_INFO_VQ_FLAG_QUARANTINE","features":[89]},{"name":"DHCP_SUBNET_STATE","features":[89]},{"name":"DHCP_SUPER_SCOPE_TABLE","features":[89]},{"name":"DHCP_SUPER_SCOPE_TABLE_ENTRY","features":[89]},{"name":"DNS_FLAG_CLEANUP_EXPIRED","features":[89]},{"name":"DNS_FLAG_DISABLE_PTR_UPDATE","features":[89]},{"name":"DNS_FLAG_ENABLED","features":[89]},{"name":"DNS_FLAG_HAS_DNS_SUFFIX","features":[89]},{"name":"DNS_FLAG_UPDATE_BOTH_ALWAYS","features":[89]},{"name":"DNS_FLAG_UPDATE_DHCID","features":[89]},{"name":"DNS_FLAG_UPDATE_DOWNLEVEL","features":[89]},{"name":"DROPPACKET","features":[89]},{"name":"DWORD_DWORD","features":[89]},{"name":"Deny","features":[89]},{"name":"DhcpAddFilterV4","features":[3,89]},{"name":"DhcpAddSecurityGroup","features":[89]},{"name":"DhcpAddServer","features":[89]},{"name":"DhcpAddSubnetElement","features":[89]},{"name":"DhcpAddSubnetElementV4","features":[89]},{"name":"DhcpAddSubnetElementV5","features":[89]},{"name":"DhcpAddSubnetElementV6","features":[89]},{"name":"DhcpArrayTypeOption","features":[89]},{"name":"DhcpAttrFqdn","features":[89]},{"name":"DhcpAttrFqdnSingleLabel","features":[89]},{"name":"DhcpAttrHWAddr","features":[89]},{"name":"DhcpAttrOption","features":[89]},{"name":"DhcpAttrSubOption","features":[89]},{"name":"DhcpAuditLogGetParams","features":[89]},{"name":"DhcpAuditLogSetParams","features":[89]},{"name":"DhcpBinaryDataOption","features":[89]},{"name":"DhcpByteOption","features":[89]},{"name":"DhcpCApiCleanup","features":[89]},{"name":"DhcpCApiInitialize","features":[89]},{"name":"DhcpClientHardwareAddress","features":[89]},{"name":"DhcpClientIpAddress","features":[89]},{"name":"DhcpClientName","features":[89]},{"name":"DhcpCompBeginsWith","features":[89]},{"name":"DhcpCompEndsWith","features":[89]},{"name":"DhcpCompEqual","features":[89]},{"name":"DhcpCompNotBeginWith","features":[89]},{"name":"DhcpCompNotEndWith","features":[89]},{"name":"DhcpCompNotEqual","features":[89]},{"name":"DhcpCreateClass","features":[3,89]},{"name":"DhcpCreateClassV6","features":[3,89]},{"name":"DhcpCreateClientInfo","features":[89]},{"name":"DhcpCreateClientInfoV4","features":[89]},{"name":"DhcpCreateClientInfoVQ","features":[3,89]},{"name":"DhcpCreateOption","features":[89]},{"name":"DhcpCreateOptionV5","features":[89]},{"name":"DhcpCreateOptionV6","features":[89]},{"name":"DhcpCreateSubnet","features":[89]},{"name":"DhcpCreateSubnetV6","features":[89]},{"name":"DhcpCreateSubnetVQ","features":[89]},{"name":"DhcpDWordDWordOption","features":[89]},{"name":"DhcpDWordOption","features":[89]},{"name":"DhcpDatabaseFix","features":[89]},{"name":"DhcpDeRegisterParamChange","features":[89]},{"name":"DhcpDefaultOptions","features":[89]},{"name":"DhcpDefaultOptions6","features":[89]},{"name":"DhcpDeleteClass","features":[89]},{"name":"DhcpDeleteClassV6","features":[89]},{"name":"DhcpDeleteClientInfo","features":[89]},{"name":"DhcpDeleteClientInfoV6","features":[89]},{"name":"DhcpDeleteFilterV4","features":[3,89]},{"name":"DhcpDeleteServer","features":[89]},{"name":"DhcpDeleteSubnet","features":[89]},{"name":"DhcpDeleteSubnetV6","features":[89]},{"name":"DhcpDeleteSuperScopeV4","features":[89]},{"name":"DhcpDsCleanup","features":[89]},{"name":"DhcpDsInit","features":[89]},{"name":"DhcpEncapsulatedDataOption","features":[89]},{"name":"DhcpEnumClasses","features":[3,89]},{"name":"DhcpEnumClassesV6","features":[3,89]},{"name":"DhcpEnumFilterV4","features":[3,89]},{"name":"DhcpEnumOptionValues","features":[89]},{"name":"DhcpEnumOptionValuesV5","features":[89]},{"name":"DhcpEnumOptionValuesV6","features":[89]},{"name":"DhcpEnumOptions","features":[89]},{"name":"DhcpEnumOptionsV5","features":[89]},{"name":"DhcpEnumOptionsV6","features":[89]},{"name":"DhcpEnumServers","features":[89]},{"name":"DhcpEnumSubnetClients","features":[89]},{"name":"DhcpEnumSubnetClientsFilterStatusInfo","features":[3,89]},{"name":"DhcpEnumSubnetClientsV4","features":[89]},{"name":"DhcpEnumSubnetClientsV5","features":[89]},{"name":"DhcpEnumSubnetClientsV6","features":[89]},{"name":"DhcpEnumSubnetClientsVQ","features":[3,89]},{"name":"DhcpEnumSubnetElements","features":[89]},{"name":"DhcpEnumSubnetElementsV4","features":[89]},{"name":"DhcpEnumSubnetElementsV5","features":[89]},{"name":"DhcpEnumSubnetElementsV6","features":[89]},{"name":"DhcpEnumSubnets","features":[89]},{"name":"DhcpEnumSubnetsV6","features":[89]},{"name":"DhcpExcludedIpRanges","features":[89]},{"name":"DhcpFailoverForce","features":[89]},{"name":"DhcpFullForce","features":[89]},{"name":"DhcpGetAllOptionValues","features":[3,89]},{"name":"DhcpGetAllOptionValuesV6","features":[3,89]},{"name":"DhcpGetAllOptions","features":[89]},{"name":"DhcpGetAllOptionsV6","features":[89]},{"name":"DhcpGetClassInfo","features":[3,89]},{"name":"DhcpGetClientInfo","features":[89]},{"name":"DhcpGetClientInfoV4","features":[89]},{"name":"DhcpGetClientInfoV6","features":[89]},{"name":"DhcpGetClientInfoVQ","features":[3,89]},{"name":"DhcpGetClientOptions","features":[89]},{"name":"DhcpGetFilterV4","features":[3,89]},{"name":"DhcpGetMibInfo","features":[89]},{"name":"DhcpGetMibInfoV5","features":[89]},{"name":"DhcpGetMibInfoV6","features":[89]},{"name":"DhcpGetOptionInfo","features":[89]},{"name":"DhcpGetOptionInfoV5","features":[89]},{"name":"DhcpGetOptionInfoV6","features":[89]},{"name":"DhcpGetOptionValue","features":[89]},{"name":"DhcpGetOptionValueV5","features":[89]},{"name":"DhcpGetOptionValueV6","features":[89]},{"name":"DhcpGetOriginalSubnetMask","features":[89]},{"name":"DhcpGetServerBindingInfo","features":[3,89]},{"name":"DhcpGetServerBindingInfoV6","features":[3,89]},{"name":"DhcpGetServerSpecificStrings","features":[89]},{"name":"DhcpGetSubnetDelayOffer","features":[89]},{"name":"DhcpGetSubnetInfo","features":[89]},{"name":"DhcpGetSubnetInfoV6","features":[89]},{"name":"DhcpGetSubnetInfoVQ","features":[89]},{"name":"DhcpGetSuperScopeInfoV4","features":[89]},{"name":"DhcpGetThreadOptions","features":[89]},{"name":"DhcpGetVersion","features":[89]},{"name":"DhcpGlobalOptions","features":[89]},{"name":"DhcpGlobalOptions6","features":[89]},{"name":"DhcpHlprAddV4PolicyCondition","features":[3,89]},{"name":"DhcpHlprAddV4PolicyExpr","features":[3,89]},{"name":"DhcpHlprAddV4PolicyRange","features":[3,89]},{"name":"DhcpHlprCreateV4Policy","features":[3,89]},{"name":"DhcpHlprCreateV4PolicyEx","features":[3,89]},{"name":"DhcpHlprFindV4DhcpProperty","features":[89]},{"name":"DhcpHlprFreeV4DhcpProperty","features":[89]},{"name":"DhcpHlprFreeV4DhcpPropertyArray","features":[89]},{"name":"DhcpHlprFreeV4Policy","features":[3,89]},{"name":"DhcpHlprFreeV4PolicyArray","features":[3,89]},{"name":"DhcpHlprFreeV4PolicyEx","features":[3,89]},{"name":"DhcpHlprFreeV4PolicyExArray","features":[3,89]},{"name":"DhcpHlprIsV4PolicySingleUC","features":[3,89]},{"name":"DhcpHlprIsV4PolicyValid","features":[3,89]},{"name":"DhcpHlprIsV4PolicyWellFormed","features":[3,89]},{"name":"DhcpHlprModifyV4PolicyExpr","features":[3,89]},{"name":"DhcpHlprResetV4PolicyExpr","features":[3,89]},{"name":"DhcpIpAddressOption","features":[89]},{"name":"DhcpIpRanges","features":[89]},{"name":"DhcpIpRangesBootpOnly","features":[89]},{"name":"DhcpIpRangesDhcpBootp","features":[89]},{"name":"DhcpIpRangesDhcpOnly","features":[89]},{"name":"DhcpIpUsedClusters","features":[89]},{"name":"DhcpIpv6AddressOption","features":[89]},{"name":"DhcpLogicalAnd","features":[89]},{"name":"DhcpLogicalOr","features":[89]},{"name":"DhcpMScopeOptions","features":[89]},{"name":"DhcpModifyClass","features":[3,89]},{"name":"DhcpModifyClassV6","features":[3,89]},{"name":"DhcpNoForce","features":[89]},{"name":"DhcpPropIdClientAddressStateEx","features":[89]},{"name":"DhcpPropIdPolicyDnsSuffix","features":[89]},{"name":"DhcpPropTypeBinary","features":[89]},{"name":"DhcpPropTypeByte","features":[89]},{"name":"DhcpPropTypeDword","features":[89]},{"name":"DhcpPropTypeString","features":[89]},{"name":"DhcpPropTypeWord","features":[89]},{"name":"DhcpRegisterParamChange","features":[3,89]},{"name":"DhcpRegistryFix","features":[89]},{"name":"DhcpRemoveDNSRegistrations","features":[89]},{"name":"DhcpRemoveOption","features":[89]},{"name":"DhcpRemoveOptionV5","features":[89]},{"name":"DhcpRemoveOptionV6","features":[89]},{"name":"DhcpRemoveOptionValue","features":[89]},{"name":"DhcpRemoveOptionValueV5","features":[89]},{"name":"DhcpRemoveOptionValueV6","features":[89]},{"name":"DhcpRemoveSubnetElement","features":[89]},{"name":"DhcpRemoveSubnetElementV4","features":[89]},{"name":"DhcpRemoveSubnetElementV5","features":[89]},{"name":"DhcpRemoveSubnetElementV6","features":[89]},{"name":"DhcpRequestParams","features":[3,89]},{"name":"DhcpReservedIps","features":[89]},{"name":"DhcpReservedOptions","features":[89]},{"name":"DhcpReservedOptions6","features":[89]},{"name":"DhcpRpcFreeMemory","features":[89]},{"name":"DhcpScanDatabase","features":[89]},{"name":"DhcpScopeOptions6","features":[89]},{"name":"DhcpSecondaryHosts","features":[89]},{"name":"DhcpServerAuditlogParamsFree","features":[3,89]},{"name":"DhcpServerBackupDatabase","features":[89]},{"name":"DhcpServerGetConfig","features":[89]},{"name":"DhcpServerGetConfigV4","features":[3,89]},{"name":"DhcpServerGetConfigV6","features":[3,89]},{"name":"DhcpServerGetConfigVQ","features":[3,89]},{"name":"DhcpServerQueryAttribute","features":[3,89]},{"name":"DhcpServerQueryAttributes","features":[3,89]},{"name":"DhcpServerQueryDnsRegCredentials","features":[89]},{"name":"DhcpServerRedoAuthorization","features":[89]},{"name":"DhcpServerRestoreDatabase","features":[89]},{"name":"DhcpServerSetConfig","features":[89]},{"name":"DhcpServerSetConfigV4","features":[3,89]},{"name":"DhcpServerSetConfigV6","features":[3,89]},{"name":"DhcpServerSetConfigVQ","features":[3,89]},{"name":"DhcpServerSetDnsRegCredentials","features":[89]},{"name":"DhcpServerSetDnsRegCredentialsV5","features":[89]},{"name":"DhcpSetClientInfo","features":[89]},{"name":"DhcpSetClientInfoV4","features":[89]},{"name":"DhcpSetClientInfoV6","features":[89]},{"name":"DhcpSetClientInfoVQ","features":[3,89]},{"name":"DhcpSetFilterV4","features":[3,89]},{"name":"DhcpSetOptionInfo","features":[89]},{"name":"DhcpSetOptionInfoV5","features":[89]},{"name":"DhcpSetOptionInfoV6","features":[89]},{"name":"DhcpSetOptionValue","features":[89]},{"name":"DhcpSetOptionValueV5","features":[89]},{"name":"DhcpSetOptionValueV6","features":[89]},{"name":"DhcpSetOptionValues","features":[89]},{"name":"DhcpSetOptionValuesV5","features":[89]},{"name":"DhcpSetServerBindingInfo","features":[3,89]},{"name":"DhcpSetServerBindingInfoV6","features":[3,89]},{"name":"DhcpSetSubnetDelayOffer","features":[89]},{"name":"DhcpSetSubnetInfo","features":[89]},{"name":"DhcpSetSubnetInfoV6","features":[89]},{"name":"DhcpSetSubnetInfoVQ","features":[89]},{"name":"DhcpSetSuperScopeV4","features":[3,89]},{"name":"DhcpSetThreadOptions","features":[89]},{"name":"DhcpStatelessPurgeInterval","features":[89]},{"name":"DhcpStatelessStatus","features":[89]},{"name":"DhcpStringDataOption","features":[89]},{"name":"DhcpSubnetDisabled","features":[89]},{"name":"DhcpSubnetDisabledSwitched","features":[89]},{"name":"DhcpSubnetEnabled","features":[89]},{"name":"DhcpSubnetEnabledSwitched","features":[89]},{"name":"DhcpSubnetInvalidState","features":[89]},{"name":"DhcpSubnetOptions","features":[89]},{"name":"DhcpUnaryElementTypeOption","features":[89]},{"name":"DhcpUndoRequestParams","features":[89]},{"name":"DhcpUpdatePolicyDescr","features":[89]},{"name":"DhcpUpdatePolicyDnsSuffix","features":[89]},{"name":"DhcpUpdatePolicyExpr","features":[89]},{"name":"DhcpUpdatePolicyName","features":[89]},{"name":"DhcpUpdatePolicyOrder","features":[89]},{"name":"DhcpUpdatePolicyRanges","features":[89]},{"name":"DhcpUpdatePolicyStatus","features":[89]},{"name":"DhcpV4AddPolicyRange","features":[89]},{"name":"DhcpV4CreateClientInfo","features":[3,89]},{"name":"DhcpV4CreateClientInfoEx","features":[3,89]},{"name":"DhcpV4CreatePolicy","features":[3,89]},{"name":"DhcpV4CreatePolicyEx","features":[3,89]},{"name":"DhcpV4DeletePolicy","features":[3,89]},{"name":"DhcpV4EnumPolicies","features":[3,89]},{"name":"DhcpV4EnumPoliciesEx","features":[3,89]},{"name":"DhcpV4EnumSubnetClients","features":[3,89]},{"name":"DhcpV4EnumSubnetClientsEx","features":[3,89]},{"name":"DhcpV4EnumSubnetReservations","features":[89]},{"name":"DhcpV4FailoverAddScopeToRelationship","features":[89]},{"name":"DhcpV4FailoverCreateRelationship","features":[89]},{"name":"DhcpV4FailoverDeleteRelationship","features":[89]},{"name":"DhcpV4FailoverDeleteScopeFromRelationship","features":[89]},{"name":"DhcpV4FailoverEnumRelationship","features":[89]},{"name":"DhcpV4FailoverGetAddressStatus","features":[89]},{"name":"DhcpV4FailoverGetClientInfo","features":[3,89]},{"name":"DhcpV4FailoverGetRelationship","features":[89]},{"name":"DhcpV4FailoverGetScopeRelationship","features":[89]},{"name":"DhcpV4FailoverGetScopeStatistics","features":[89]},{"name":"DhcpV4FailoverGetSystemTime","features":[89]},{"name":"DhcpV4FailoverSetRelationship","features":[89]},{"name":"DhcpV4FailoverTriggerAddrAllocation","features":[89]},{"name":"DhcpV4GetAllOptionValues","features":[3,89]},{"name":"DhcpV4GetClientInfo","features":[3,89]},{"name":"DhcpV4GetClientInfoEx","features":[3,89]},{"name":"DhcpV4GetFreeIPAddress","features":[89]},{"name":"DhcpV4GetOptionValue","features":[89]},{"name":"DhcpV4GetPolicy","features":[3,89]},{"name":"DhcpV4GetPolicyEx","features":[3,89]},{"name":"DhcpV4QueryPolicyEnforcement","features":[3,89]},{"name":"DhcpV4RemoveOptionValue","features":[89]},{"name":"DhcpV4RemovePolicyRange","features":[89]},{"name":"DhcpV4SetOptionValue","features":[89]},{"name":"DhcpV4SetOptionValues","features":[89]},{"name":"DhcpV4SetPolicy","features":[3,89]},{"name":"DhcpV4SetPolicyEnforcement","features":[3,89]},{"name":"DhcpV4SetPolicyEx","features":[3,89]},{"name":"DhcpV6CreateClientInfo","features":[89]},{"name":"DhcpV6GetFreeIPAddress","features":[89]},{"name":"DhcpV6GetStatelessStatistics","features":[89]},{"name":"DhcpV6GetStatelessStoreParams","features":[3,89]},{"name":"DhcpV6SetStatelessStoreParams","features":[3,89]},{"name":"DhcpWordOption","features":[89]},{"name":"Dhcpv6CApiCleanup","features":[89]},{"name":"Dhcpv6CApiInitialize","features":[89]},{"name":"Dhcpv6ClientDUID","features":[89]},{"name":"Dhcpv6ClientIpAddress","features":[89]},{"name":"Dhcpv6ClientName","features":[89]},{"name":"Dhcpv6ExcludedIpRanges","features":[89]},{"name":"Dhcpv6IpRanges","features":[89]},{"name":"Dhcpv6ReleasePrefix","features":[89]},{"name":"Dhcpv6RenewPrefix","features":[89]},{"name":"Dhcpv6RequestParams","features":[3,89]},{"name":"Dhcpv6RequestPrefix","features":[89]},{"name":"Dhcpv6ReservedIps","features":[89]},{"name":"ERROR_DDS_CLASS_DOES_NOT_EXIST","features":[89]},{"name":"ERROR_DDS_CLASS_EXISTS","features":[89]},{"name":"ERROR_DDS_DHCP_SERVER_NOT_FOUND","features":[89]},{"name":"ERROR_DDS_NO_DHCP_ROOT","features":[89]},{"name":"ERROR_DDS_NO_DS_AVAILABLE","features":[89]},{"name":"ERROR_DDS_OPTION_ALREADY_EXISTS","features":[89]},{"name":"ERROR_DDS_OPTION_DOES_NOT_EXIST","features":[89]},{"name":"ERROR_DDS_POSSIBLE_RANGE_CONFLICT","features":[89]},{"name":"ERROR_DDS_RANGE_DOES_NOT_EXIST","features":[89]},{"name":"ERROR_DDS_RESERVATION_CONFLICT","features":[89]},{"name":"ERROR_DDS_RESERVATION_NOT_PRESENT","features":[89]},{"name":"ERROR_DDS_SERVER_ADDRESS_MISMATCH","features":[89]},{"name":"ERROR_DDS_SERVER_ALREADY_EXISTS","features":[89]},{"name":"ERROR_DDS_SERVER_DOES_NOT_EXIST","features":[89]},{"name":"ERROR_DDS_SUBNET_EXISTS","features":[89]},{"name":"ERROR_DDS_SUBNET_HAS_DIFF_SSCOPE","features":[89]},{"name":"ERROR_DDS_SUBNET_NOT_PRESENT","features":[89]},{"name":"ERROR_DDS_TOO_MANY_ERRORS","features":[89]},{"name":"ERROR_DDS_UNEXPECTED_ERROR","features":[89]},{"name":"ERROR_DHCP_ADDRESS_NOT_AVAILABLE","features":[89]},{"name":"ERROR_DHCP_CANNOT_MODIFY_BINDINGS","features":[89]},{"name":"ERROR_DHCP_CANT_CHANGE_ATTRIBUTE","features":[89]},{"name":"ERROR_DHCP_CLASS_ALREADY_EXISTS","features":[89]},{"name":"ERROR_DHCP_CLASS_NOT_FOUND","features":[89]},{"name":"ERROR_DHCP_CLIENT_EXISTS","features":[89]},{"name":"ERROR_DHCP_DATABASE_INIT_FAILED","features":[89]},{"name":"ERROR_DHCP_DEFAULT_SCOPE_EXITS","features":[89]},{"name":"ERROR_DHCP_DELETE_BUILTIN_CLASS","features":[89]},{"name":"ERROR_DHCP_ELEMENT_CANT_REMOVE","features":[89]},{"name":"ERROR_DHCP_EXEMPTION_EXISTS","features":[89]},{"name":"ERROR_DHCP_EXEMPTION_NOT_PRESENT","features":[89]},{"name":"ERROR_DHCP_FO_ADDSCOPE_LEASES_NOT_SYNCED","features":[89]},{"name":"ERROR_DHCP_FO_BOOT_NOT_SUPPORTED","features":[89]},{"name":"ERROR_DHCP_FO_FEATURE_NOT_SUPPORTED","features":[89]},{"name":"ERROR_DHCP_FO_IPRANGE_TYPE_CONV_ILLEGAL","features":[89]},{"name":"ERROR_DHCP_FO_MAX_ADD_SCOPES","features":[89]},{"name":"ERROR_DHCP_FO_MAX_RELATIONSHIPS","features":[89]},{"name":"ERROR_DHCP_FO_NOT_SUPPORTED","features":[89]},{"name":"ERROR_DHCP_FO_RANGE_PART_OF_REL","features":[89]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_DOES_NOT_EXIST","features":[89]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_EXISTS","features":[89]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_NAME_TOO_LONG","features":[89]},{"name":"ERROR_DHCP_FO_RELATION_IS_SECONDARY","features":[89]},{"name":"ERROR_DHCP_FO_SCOPE_ALREADY_IN_RELATIONSHIP","features":[89]},{"name":"ERROR_DHCP_FO_SCOPE_NOT_IN_RELATIONSHIP","features":[89]},{"name":"ERROR_DHCP_FO_SCOPE_SYNC_IN_PROGRESS","features":[89]},{"name":"ERROR_DHCP_FO_STATE_NOT_NORMAL","features":[89]},{"name":"ERROR_DHCP_FO_TIME_OUT_OF_SYNC","features":[89]},{"name":"ERROR_DHCP_HARDWARE_ADDRESS_TYPE_ALREADY_EXEMPT","features":[89]},{"name":"ERROR_DHCP_INVALID_DELAY","features":[89]},{"name":"ERROR_DHCP_INVALID_DHCP_CLIENT","features":[89]},{"name":"ERROR_DHCP_INVALID_DHCP_MESSAGE","features":[89]},{"name":"ERROR_DHCP_INVALID_PARAMETER_OPTION32","features":[89]},{"name":"ERROR_DHCP_INVALID_POLICY_EXPRESSION","features":[89]},{"name":"ERROR_DHCP_INVALID_PROCESSING_ORDER","features":[89]},{"name":"ERROR_DHCP_INVALID_RANGE","features":[89]},{"name":"ERROR_DHCP_INVALID_SUBNET_PREFIX","features":[89]},{"name":"ERROR_DHCP_IPRANGE_CONV_ILLEGAL","features":[89]},{"name":"ERROR_DHCP_IPRANGE_EXITS","features":[89]},{"name":"ERROR_DHCP_IP_ADDRESS_IN_USE","features":[89]},{"name":"ERROR_DHCP_JET97_CONV_REQUIRED","features":[89]},{"name":"ERROR_DHCP_JET_CONV_REQUIRED","features":[89]},{"name":"ERROR_DHCP_JET_ERROR","features":[89]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_DOES_NOT_EXIST","features":[89]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_EXISTS","features":[89]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_RESERVATION_EXISTS","features":[89]},{"name":"ERROR_DHCP_LOG_FILE_PATH_TOO_LONG","features":[89]},{"name":"ERROR_DHCP_MSCOPE_EXISTS","features":[89]},{"name":"ERROR_DHCP_NAP_NOT_SUPPORTED","features":[89]},{"name":"ERROR_DHCP_NETWORK_CHANGED","features":[89]},{"name":"ERROR_DHCP_NETWORK_INIT_FAILED","features":[89]},{"name":"ERROR_DHCP_NOT_RESERVED_CLIENT","features":[89]},{"name":"ERROR_DHCP_NO_ADMIN_PERMISSION","features":[89]},{"name":"ERROR_DHCP_OPTION_EXITS","features":[89]},{"name":"ERROR_DHCP_OPTION_NOT_PRESENT","features":[89]},{"name":"ERROR_DHCP_OPTION_TYPE_MISMATCH","features":[89]},{"name":"ERROR_DHCP_POLICY_BAD_PARENT_EXPR","features":[89]},{"name":"ERROR_DHCP_POLICY_EDIT_FQDN_UNSUPPORTED","features":[89]},{"name":"ERROR_DHCP_POLICY_EXISTS","features":[89]},{"name":"ERROR_DHCP_POLICY_FQDN_OPTION_UNSUPPORTED","features":[89]},{"name":"ERROR_DHCP_POLICY_FQDN_RANGE_UNSUPPORTED","features":[89]},{"name":"ERROR_DHCP_POLICY_NOT_FOUND","features":[89]},{"name":"ERROR_DHCP_POLICY_RANGE_BAD","features":[89]},{"name":"ERROR_DHCP_POLICY_RANGE_EXISTS","features":[89]},{"name":"ERROR_DHCP_PRIMARY_NOT_FOUND","features":[89]},{"name":"ERROR_DHCP_RANGE_EXTENDED","features":[89]},{"name":"ERROR_DHCP_RANGE_FULL","features":[89]},{"name":"ERROR_DHCP_RANGE_INVALID_IN_SERVER_POLICY","features":[89]},{"name":"ERROR_DHCP_RANGE_TOO_SMALL","features":[89]},{"name":"ERROR_DHCP_REACHED_END_OF_SELECTION","features":[89]},{"name":"ERROR_DHCP_REGISTRY_INIT_FAILED","features":[89]},{"name":"ERROR_DHCP_RESERVEDIP_EXITS","features":[89]},{"name":"ERROR_DHCP_RESERVED_CLIENT","features":[89]},{"name":"ERROR_DHCP_ROGUE_DS_CONFLICT","features":[89]},{"name":"ERROR_DHCP_ROGUE_DS_UNREACHABLE","features":[89]},{"name":"ERROR_DHCP_ROGUE_INIT_FAILED","features":[89]},{"name":"ERROR_DHCP_ROGUE_NOT_AUTHORIZED","features":[89]},{"name":"ERROR_DHCP_ROGUE_NOT_OUR_ENTERPRISE","features":[89]},{"name":"ERROR_DHCP_ROGUE_SAMSHUTDOWN","features":[89]},{"name":"ERROR_DHCP_ROGUE_STANDALONE_IN_DS","features":[89]},{"name":"ERROR_DHCP_RPC_INIT_FAILED","features":[89]},{"name":"ERROR_DHCP_SCOPE_NAME_TOO_LONG","features":[89]},{"name":"ERROR_DHCP_SERVER_NAME_NOT_RESOLVED","features":[89]},{"name":"ERROR_DHCP_SERVER_NOT_REACHABLE","features":[89]},{"name":"ERROR_DHCP_SERVER_NOT_RUNNING","features":[89]},{"name":"ERROR_DHCP_SERVICE_PAUSED","features":[89]},{"name":"ERROR_DHCP_SUBNET_EXISTS","features":[89]},{"name":"ERROR_DHCP_SUBNET_EXITS","features":[89]},{"name":"ERROR_DHCP_SUBNET_NOT_PRESENT","features":[89]},{"name":"ERROR_DHCP_SUPER_SCOPE_NAME_TOO_LONG","features":[89]},{"name":"ERROR_DHCP_UNDEFINED_HARDWARE_ADDRESS_TYPE","features":[89]},{"name":"ERROR_DHCP_UNSUPPORTED_CLIENT","features":[89]},{"name":"ERROR_EXTEND_TOO_SMALL","features":[89]},{"name":"ERROR_LAST_DHCP_SERVER_ERROR","features":[89]},{"name":"ERROR_MSCOPE_RANGE_TOO_SMALL","features":[89]},{"name":"ERROR_SCOPE_RANGE_POLICY_RANGE_CONFLICT","features":[89]},{"name":"ERROR_SERVER_INVALID_BOOT_FILE_TABLE","features":[89]},{"name":"ERROR_SERVER_UNKNOWN_BOOT_FILE_NAME","features":[89]},{"name":"EXEMPT","features":[89]},{"name":"FILTER_STATUS_FULL_MATCH_IN_ALLOW_LIST","features":[89]},{"name":"FILTER_STATUS_FULL_MATCH_IN_DENY_LIST","features":[89]},{"name":"FILTER_STATUS_NONE","features":[89]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_ALLOW_LIST","features":[89]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_DENY_LIST","features":[89]},{"name":"FSM_STATE","features":[89]},{"name":"HWTYPE_ETHERNET_10MB","features":[89]},{"name":"HotStandby","features":[89]},{"name":"INIT","features":[89]},{"name":"LPDHCP_CONTROL","features":[89]},{"name":"LPDHCP_DELETE_CLIENT","features":[89]},{"name":"LPDHCP_DROP_SEND","features":[89]},{"name":"LPDHCP_ENTRY_POINT_FUNC","features":[3,89]},{"name":"LPDHCP_GIVE_ADDRESS","features":[89]},{"name":"LPDHCP_HANDLE_OPTIONS","features":[3,89]},{"name":"LPDHCP_NEWPKT","features":[3,89]},{"name":"LPDHCP_PROB","features":[89]},{"name":"LoadBalance","features":[89]},{"name":"MAC_ADDRESS_LENGTH","features":[89]},{"name":"MAX_PATTERN_LENGTH","features":[89]},{"name":"MCLT","features":[89]},{"name":"MODE","features":[89]},{"name":"NOQUARANTINE","features":[89]},{"name":"NOQUARINFO","features":[89]},{"name":"NORMAL","features":[89]},{"name":"NO_STATE","features":[89]},{"name":"OPTION_ALL_SUBNETS_MTU","features":[89]},{"name":"OPTION_ARP_CACHE_TIMEOUT","features":[89]},{"name":"OPTION_BE_A_MASK_SUPPLIER","features":[89]},{"name":"OPTION_BE_A_ROUTER","features":[89]},{"name":"OPTION_BOOTFILE_NAME","features":[89]},{"name":"OPTION_BOOT_FILE_SIZE","features":[89]},{"name":"OPTION_BROADCAST_ADDRESS","features":[89]},{"name":"OPTION_CLIENT_CLASS_INFO","features":[89]},{"name":"OPTION_CLIENT_ID","features":[89]},{"name":"OPTION_COOKIE_SERVERS","features":[89]},{"name":"OPTION_DEFAULT_TTL","features":[89]},{"name":"OPTION_DOMAIN_NAME","features":[89]},{"name":"OPTION_DOMAIN_NAME_SERVERS","features":[89]},{"name":"OPTION_END","features":[89]},{"name":"OPTION_ETHERNET_ENCAPSULATION","features":[89]},{"name":"OPTION_EXTENSIONS_PATH","features":[89]},{"name":"OPTION_HOST_NAME","features":[89]},{"name":"OPTION_IEN116_NAME_SERVERS","features":[89]},{"name":"OPTION_IMPRESS_SERVERS","features":[89]},{"name":"OPTION_KEEP_ALIVE_DATA_SIZE","features":[89]},{"name":"OPTION_KEEP_ALIVE_INTERVAL","features":[89]},{"name":"OPTION_LEASE_TIME","features":[89]},{"name":"OPTION_LOG_SERVERS","features":[89]},{"name":"OPTION_LPR_SERVERS","features":[89]},{"name":"OPTION_MAX_REASSEMBLY_SIZE","features":[89]},{"name":"OPTION_MERIT_DUMP_FILE","features":[89]},{"name":"OPTION_MESSAGE","features":[89]},{"name":"OPTION_MESSAGE_LENGTH","features":[89]},{"name":"OPTION_MESSAGE_TYPE","features":[89]},{"name":"OPTION_MSFT_IE_PROXY","features":[89]},{"name":"OPTION_MTU","features":[89]},{"name":"OPTION_NETBIOS_DATAGRAM_SERVER","features":[89]},{"name":"OPTION_NETBIOS_NAME_SERVER","features":[89]},{"name":"OPTION_NETBIOS_NODE_TYPE","features":[89]},{"name":"OPTION_NETBIOS_SCOPE_OPTION","features":[89]},{"name":"OPTION_NETWORK_INFO_SERVERS","features":[89]},{"name":"OPTION_NETWORK_INFO_SERVICE_DOM","features":[89]},{"name":"OPTION_NETWORK_TIME_SERVERS","features":[89]},{"name":"OPTION_NON_LOCAL_SOURCE_ROUTING","features":[89]},{"name":"OPTION_OK_TO_OVERLAY","features":[89]},{"name":"OPTION_PAD","features":[89]},{"name":"OPTION_PARAMETER_REQUEST_LIST","features":[89]},{"name":"OPTION_PERFORM_MASK_DISCOVERY","features":[89]},{"name":"OPTION_PERFORM_ROUTER_DISCOVERY","features":[89]},{"name":"OPTION_PMTU_AGING_TIMEOUT","features":[89]},{"name":"OPTION_PMTU_PLATEAU_TABLE","features":[89]},{"name":"OPTION_POLICY_FILTER_FOR_NLSR","features":[89]},{"name":"OPTION_REBIND_TIME","features":[89]},{"name":"OPTION_RENEWAL_TIME","features":[89]},{"name":"OPTION_REQUESTED_ADDRESS","features":[89]},{"name":"OPTION_RLP_SERVERS","features":[89]},{"name":"OPTION_ROOT_DISK","features":[89]},{"name":"OPTION_ROUTER_ADDRESS","features":[89]},{"name":"OPTION_ROUTER_SOLICITATION_ADDR","features":[89]},{"name":"OPTION_SERVER_IDENTIFIER","features":[89]},{"name":"OPTION_STATIC_ROUTES","features":[89]},{"name":"OPTION_SUBNET_MASK","features":[89]},{"name":"OPTION_SWAP_SERVER","features":[89]},{"name":"OPTION_TFTP_SERVER_NAME","features":[89]},{"name":"OPTION_TIME_OFFSET","features":[89]},{"name":"OPTION_TIME_SERVERS","features":[89]},{"name":"OPTION_TRAILERS","features":[89]},{"name":"OPTION_TTL","features":[89]},{"name":"OPTION_VENDOR_SPEC_INFO","features":[89]},{"name":"OPTION_XWINDOW_DISPLAY_MANAGER","features":[89]},{"name":"OPTION_XWINDOW_FONT_SERVER","features":[89]},{"name":"PARTNER_DOWN","features":[89]},{"name":"PAUSED","features":[89]},{"name":"PERCENTAGE","features":[89]},{"name":"POTENTIAL_CONFLICT","features":[89]},{"name":"PREVSTATE","features":[89]},{"name":"PROBATION","features":[89]},{"name":"PrimaryServer","features":[89]},{"name":"QUARANTINE_CONFIG_OPTION","features":[89]},{"name":"QUARANTINE_SCOPE_QUARPROFILE_OPTION","features":[89]},{"name":"QUARANTIN_OPTION_BASE","features":[89]},{"name":"QuarantineStatus","features":[89]},{"name":"RECOVER","features":[89]},{"name":"RECOVER_DONE","features":[89]},{"name":"RECOVER_WAIT","features":[89]},{"name":"RESOLUTION_INT","features":[89]},{"name":"RESTRICTEDACCESS","features":[89]},{"name":"SAFEPERIOD","features":[89]},{"name":"SCOPE_MIB_INFO","features":[89]},{"name":"SCOPE_MIB_INFO_V5","features":[89]},{"name":"SCOPE_MIB_INFO_V6","features":[89]},{"name":"SCOPE_MIB_INFO_VQ","features":[89]},{"name":"SHAREDSECRET","features":[89]},{"name":"SHUTDOWN","features":[89]},{"name":"STARTUP","features":[89]},{"name":"STATUS_NOPREFIX_AVAIL","features":[89]},{"name":"STATUS_NO_BINDING","features":[89]},{"name":"STATUS_NO_ERROR","features":[89]},{"name":"STATUS_UNSPECIFIED_FAILURE","features":[89]},{"name":"SecondaryServer","features":[89]},{"name":"Set_APIProtocolSupport","features":[89]},{"name":"Set_AuditLogState","features":[89]},{"name":"Set_BackupInterval","features":[89]},{"name":"Set_BackupPath","features":[89]},{"name":"Set_BootFileTable","features":[89]},{"name":"Set_DatabaseCleanupInterval","features":[89]},{"name":"Set_DatabaseLoggingFlag","features":[89]},{"name":"Set_DatabaseName","features":[89]},{"name":"Set_DatabasePath","features":[89]},{"name":"Set_DebugFlag","features":[89]},{"name":"Set_PingRetries","features":[89]},{"name":"Set_PreferredLifetime","features":[89]},{"name":"Set_PreferredLifetimeIATA","features":[89]},{"name":"Set_QuarantineDefFail","features":[89]},{"name":"Set_QuarantineON","features":[89]},{"name":"Set_RapidCommitFlag","features":[89]},{"name":"Set_RestoreFlag","features":[89]},{"name":"Set_T1","features":[89]},{"name":"Set_T2","features":[89]},{"name":"Set_UnicastFlag","features":[89]},{"name":"Set_ValidLifetime","features":[89]},{"name":"Set_ValidLifetimeIATA","features":[89]},{"name":"StatusCode","features":[89]},{"name":"V5_ADDRESS_BIT_BOTH_REC","features":[89]},{"name":"V5_ADDRESS_BIT_DELETED","features":[89]},{"name":"V5_ADDRESS_BIT_UNREGISTERED","features":[89]},{"name":"V5_ADDRESS_EX_BIT_DISABLE_PTR_RR","features":[89]},{"name":"V5_ADDRESS_STATE_ACTIVE","features":[89]},{"name":"V5_ADDRESS_STATE_DECLINED","features":[89]},{"name":"V5_ADDRESS_STATE_DOOM","features":[89]},{"name":"V5_ADDRESS_STATE_OFFERED","features":[89]},{"name":"WARNING_EXTENDED_LESS","features":[89]}],"446":[{"name":"DDR_MAX_IP_HINTS","features":[90]},{"name":"DNSREC_ADDITIONAL","features":[90]},{"name":"DNSREC_ANSWER","features":[90]},{"name":"DNSREC_AUTHORITY","features":[90]},{"name":"DNSREC_DELETE","features":[90]},{"name":"DNSREC_NOEXIST","features":[90]},{"name":"DNSREC_PREREQ","features":[90]},{"name":"DNSREC_QUESTION","features":[90]},{"name":"DNSREC_SECTION","features":[90]},{"name":"DNSREC_UPDATE","features":[90]},{"name":"DNSREC_ZONE","features":[90]},{"name":"DNSSEC_ALGORITHM_ECDSAP256_SHA256","features":[90]},{"name":"DNSSEC_ALGORITHM_ECDSAP384_SHA384","features":[90]},{"name":"DNSSEC_ALGORITHM_NULL","features":[90]},{"name":"DNSSEC_ALGORITHM_PRIVATE","features":[90]},{"name":"DNSSEC_ALGORITHM_RSAMD5","features":[90]},{"name":"DNSSEC_ALGORITHM_RSASHA1","features":[90]},{"name":"DNSSEC_ALGORITHM_RSASHA1_NSEC3","features":[90]},{"name":"DNSSEC_ALGORITHM_RSASHA256","features":[90]},{"name":"DNSSEC_ALGORITHM_RSASHA512","features":[90]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA1","features":[90]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA256","features":[90]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA384","features":[90]},{"name":"DNSSEC_KEY_FLAG_EXTEND","features":[90]},{"name":"DNSSEC_KEY_FLAG_FLAG10","features":[90]},{"name":"DNSSEC_KEY_FLAG_FLAG11","features":[90]},{"name":"DNSSEC_KEY_FLAG_FLAG2","features":[90]},{"name":"DNSSEC_KEY_FLAG_FLAG4","features":[90]},{"name":"DNSSEC_KEY_FLAG_FLAG5","features":[90]},{"name":"DNSSEC_KEY_FLAG_FLAG8","features":[90]},{"name":"DNSSEC_KEY_FLAG_FLAG9","features":[90]},{"name":"DNSSEC_KEY_FLAG_HOST","features":[90]},{"name":"DNSSEC_KEY_FLAG_NOAUTH","features":[90]},{"name":"DNSSEC_KEY_FLAG_NOCONF","features":[90]},{"name":"DNSSEC_KEY_FLAG_NTPE3","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG0","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG1","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG10","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG11","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG12","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG13","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG14","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG15","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG2","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG3","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG4","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG5","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG6","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG7","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG8","features":[90]},{"name":"DNSSEC_KEY_FLAG_SIG9","features":[90]},{"name":"DNSSEC_KEY_FLAG_USER","features":[90]},{"name":"DNSSEC_KEY_FLAG_ZONE","features":[90]},{"name":"DNSSEC_PROTOCOL_DNSSEC","features":[90]},{"name":"DNSSEC_PROTOCOL_EMAIL","features":[90]},{"name":"DNSSEC_PROTOCOL_IPSEC","features":[90]},{"name":"DNSSEC_PROTOCOL_NONE","features":[90]},{"name":"DNSSEC_PROTOCOL_TLS","features":[90]},{"name":"DNS_AAAA_DATA","features":[90]},{"name":"DNS_ADDR","features":[90]},{"name":"DNS_ADDRESS_STRING_LENGTH","features":[90]},{"name":"DNS_ADDR_ARRAY","features":[90]},{"name":"DNS_ADDR_MAX_SOCKADDR_LENGTH","features":[90]},{"name":"DNS_APPLICATION_SETTINGS","features":[90]},{"name":"DNS_APP_SETTINGS_EXCLUSIVE_SERVERS","features":[90]},{"name":"DNS_APP_SETTINGS_VERSION1","features":[90]},{"name":"DNS_ATMA_AESA_ADDR_LENGTH","features":[90]},{"name":"DNS_ATMA_DATA","features":[90]},{"name":"DNS_ATMA_FORMAT_AESA","features":[90]},{"name":"DNS_ATMA_FORMAT_E164","features":[90]},{"name":"DNS_ATMA_MAX_ADDR_LENGTH","features":[90]},{"name":"DNS_ATMA_MAX_RECORD_LENGTH","features":[90]},{"name":"DNS_A_DATA","features":[90]},{"name":"DNS_CHARSET","features":[90]},{"name":"DNS_CLASS_ALL","features":[90]},{"name":"DNS_CLASS_ANY","features":[90]},{"name":"DNS_CLASS_CHAOS","features":[90]},{"name":"DNS_CLASS_CSNET","features":[90]},{"name":"DNS_CLASS_HESIOD","features":[90]},{"name":"DNS_CLASS_INTERNET","features":[90]},{"name":"DNS_CLASS_NONE","features":[90]},{"name":"DNS_CLASS_UNICAST_RESPONSE","features":[90]},{"name":"DNS_COMPRESSED_QUESTION_NAME","features":[90]},{"name":"DNS_CONFIG_FLAG_ALLOC","features":[90]},{"name":"DNS_CONFIG_TYPE","features":[90]},{"name":"DNS_CONNECTION_IFINDEX_ENTRY","features":[90]},{"name":"DNS_CONNECTION_IFINDEX_LIST","features":[90]},{"name":"DNS_CONNECTION_NAME","features":[90]},{"name":"DNS_CONNECTION_NAME_LIST","features":[90]},{"name":"DNS_CONNECTION_NAME_MAX_LENGTH","features":[90]},{"name":"DNS_CONNECTION_POLICY_ENTRY","features":[90]},{"name":"DNS_CONNECTION_POLICY_ENTRY_LIST","features":[90]},{"name":"DNS_CONNECTION_POLICY_ENTRY_ONDEMAND","features":[90]},{"name":"DNS_CONNECTION_POLICY_TAG","features":[90]},{"name":"DNS_CONNECTION_PROXY_ELEMENT","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_CURRENT_VERSION","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_EX","features":[3,90]},{"name":"DNS_CONNECTION_PROXY_INFO_EXCEPTION_MAX_LENGTH","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_EXTRA_INFO_MAX_LENGTH","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_BYPASSLOCAL","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_DISABLED","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_FRIENDLY_NAME_MAX_LENGTH","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_PASSWORD_MAX_LENGTH","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_SERVER_MAX_LENGTH","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_CONFIG","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_SCRIPT","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_WPAD","features":[90]},{"name":"DNS_CONNECTION_PROXY_INFO_USERNAME_MAX_LENGTH","features":[90]},{"name":"DNS_CONNECTION_PROXY_LIST","features":[90]},{"name":"DNS_CONNECTION_PROXY_TYPE","features":[90]},{"name":"DNS_CONNECTION_PROXY_TYPE_HTTP","features":[90]},{"name":"DNS_CONNECTION_PROXY_TYPE_NULL","features":[90]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS4","features":[90]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS5","features":[90]},{"name":"DNS_CONNECTION_PROXY_TYPE_WAP","features":[90]},{"name":"DNS_CUSTOM_SERVER","features":[90]},{"name":"DNS_CUSTOM_SERVER_TYPE_DOH","features":[90]},{"name":"DNS_CUSTOM_SERVER_TYPE_UDP","features":[90]},{"name":"DNS_CUSTOM_SERVER_UDP_FALLBACK","features":[90]},{"name":"DNS_DHCID_DATA","features":[90]},{"name":"DNS_DS_DATA","features":[90]},{"name":"DNS_FREE_TYPE","features":[90]},{"name":"DNS_HEADER","features":[90]},{"name":"DNS_HEADER_EXT","features":[90]},{"name":"DNS_KEY_DATA","features":[90]},{"name":"DNS_LOC_DATA","features":[90]},{"name":"DNS_MAX_IP4_REVERSE_NAME_BUFFER_LENGTH","features":[90]},{"name":"DNS_MAX_IP4_REVERSE_NAME_LENGTH","features":[90]},{"name":"DNS_MAX_IP6_REVERSE_NAME_BUFFER_LENGTH","features":[90]},{"name":"DNS_MAX_IP6_REVERSE_NAME_LENGTH","features":[90]},{"name":"DNS_MAX_LABEL_BUFFER_LENGTH","features":[90]},{"name":"DNS_MAX_LABEL_LENGTH","features":[90]},{"name":"DNS_MAX_NAME_BUFFER_LENGTH","features":[90]},{"name":"DNS_MAX_NAME_LENGTH","features":[90]},{"name":"DNS_MAX_REVERSE_NAME_BUFFER_LENGTH","features":[90]},{"name":"DNS_MAX_REVERSE_NAME_LENGTH","features":[90]},{"name":"DNS_MAX_TEXT_STRING_LENGTH","features":[90]},{"name":"DNS_MESSAGE_BUFFER","features":[90]},{"name":"DNS_MINFO_DATAA","features":[90]},{"name":"DNS_MINFO_DATAW","features":[90]},{"name":"DNS_MX_DATAA","features":[90]},{"name":"DNS_MX_DATAW","features":[90]},{"name":"DNS_NAME_FORMAT","features":[90]},{"name":"DNS_NAPTR_DATAA","features":[90]},{"name":"DNS_NAPTR_DATAW","features":[90]},{"name":"DNS_NSEC3PARAM_DATA","features":[90]},{"name":"DNS_NSEC3_DATA","features":[90]},{"name":"DNS_NSEC_DATAA","features":[90]},{"name":"DNS_NSEC_DATAW","features":[90]},{"name":"DNS_NULL_DATA","features":[90]},{"name":"DNS_NXT_DATAA","features":[90]},{"name":"DNS_NXT_DATAW","features":[90]},{"name":"DNS_OPCODE_IQUERY","features":[90]},{"name":"DNS_OPCODE_NOTIFY","features":[90]},{"name":"DNS_OPCODE_QUERY","features":[90]},{"name":"DNS_OPCODE_SERVER_STATUS","features":[90]},{"name":"DNS_OPCODE_UNKNOWN","features":[90]},{"name":"DNS_OPCODE_UPDATE","features":[90]},{"name":"DNS_OPT_DATA","features":[90]},{"name":"DNS_PORT_HOST_ORDER","features":[90]},{"name":"DNS_PORT_NET_ORDER","features":[90]},{"name":"DNS_PROTOCOL_DOH","features":[90]},{"name":"DNS_PROTOCOL_NO_WIRE","features":[90]},{"name":"DNS_PROTOCOL_TCP","features":[90]},{"name":"DNS_PROTOCOL_UDP","features":[90]},{"name":"DNS_PROTOCOL_UNSPECIFIED","features":[90]},{"name":"DNS_PROXY_COMPLETION_ROUTINE","features":[90]},{"name":"DNS_PROXY_INFORMATION","features":[90]},{"name":"DNS_PROXY_INFORMATION_DEFAULT_SETTINGS","features":[90]},{"name":"DNS_PROXY_INFORMATION_DIRECT","features":[90]},{"name":"DNS_PROXY_INFORMATION_DOES_NOT_EXIST","features":[90]},{"name":"DNS_PROXY_INFORMATION_PROXY_NAME","features":[90]},{"name":"DNS_PROXY_INFORMATION_TYPE","features":[90]},{"name":"DNS_PTR_DATAA","features":[90]},{"name":"DNS_PTR_DATAW","features":[90]},{"name":"DNS_QUERY_ACCEPT_TRUNCATED_RESPONSE","features":[90]},{"name":"DNS_QUERY_ADDRCONFIG","features":[90]},{"name":"DNS_QUERY_APPEND_MULTILABEL","features":[90]},{"name":"DNS_QUERY_BYPASS_CACHE","features":[90]},{"name":"DNS_QUERY_CACHE_ONLY","features":[90]},{"name":"DNS_QUERY_CANCEL","features":[90]},{"name":"DNS_QUERY_DISABLE_IDN_ENCODING","features":[90]},{"name":"DNS_QUERY_DNSSEC_CHECKING_DISABLED","features":[90]},{"name":"DNS_QUERY_DNSSEC_OK","features":[90]},{"name":"DNS_QUERY_DONT_RESET_TTL_VALUES","features":[90]},{"name":"DNS_QUERY_DUAL_ADDR","features":[90]},{"name":"DNS_QUERY_MULTICAST_ONLY","features":[90]},{"name":"DNS_QUERY_NO_HOSTS_FILE","features":[90]},{"name":"DNS_QUERY_NO_LOCAL_NAME","features":[90]},{"name":"DNS_QUERY_NO_MULTICAST","features":[90]},{"name":"DNS_QUERY_NO_NETBT","features":[90]},{"name":"DNS_QUERY_NO_RECURSION","features":[90]},{"name":"DNS_QUERY_NO_WIRE_QUERY","features":[90]},{"name":"DNS_QUERY_OPTIONS","features":[90]},{"name":"DNS_QUERY_RAW_CANCEL","features":[90]},{"name":"DNS_QUERY_RAW_COMPLETION_ROUTINE","features":[3,90]},{"name":"DNS_QUERY_RAW_OPTION_BEST_EFFORT_PARSE","features":[90]},{"name":"DNS_QUERY_RAW_REQUEST","features":[3,90]},{"name":"DNS_QUERY_RAW_REQUEST_VERSION1","features":[90]},{"name":"DNS_QUERY_RAW_RESULT","features":[3,90]},{"name":"DNS_QUERY_RAW_RESULTS_VERSION1","features":[90]},{"name":"DNS_QUERY_REQUEST","features":[3,90]},{"name":"DNS_QUERY_REQUEST3","features":[3,90]},{"name":"DNS_QUERY_REQUEST_VERSION1","features":[90]},{"name":"DNS_QUERY_REQUEST_VERSION2","features":[90]},{"name":"DNS_QUERY_REQUEST_VERSION3","features":[90]},{"name":"DNS_QUERY_RESERVED","features":[90]},{"name":"DNS_QUERY_RESULT","features":[3,90]},{"name":"DNS_QUERY_RESULTS_VERSION1","features":[90]},{"name":"DNS_QUERY_RETURN_MESSAGE","features":[90]},{"name":"DNS_QUERY_STANDARD","features":[90]},{"name":"DNS_QUERY_TREAT_AS_FQDN","features":[90]},{"name":"DNS_QUERY_USE_TCP_ONLY","features":[90]},{"name":"DNS_QUERY_WIRE_ONLY","features":[90]},{"name":"DNS_RCLASS_ALL","features":[90]},{"name":"DNS_RCLASS_ANY","features":[90]},{"name":"DNS_RCLASS_CHAOS","features":[90]},{"name":"DNS_RCLASS_CSNET","features":[90]},{"name":"DNS_RCLASS_HESIOD","features":[90]},{"name":"DNS_RCLASS_INTERNET","features":[90]},{"name":"DNS_RCLASS_MDNS_CACHE_FLUSH","features":[90]},{"name":"DNS_RCLASS_NONE","features":[90]},{"name":"DNS_RCLASS_UNICAST_RESPONSE","features":[90]},{"name":"DNS_RCODE_BADKEY","features":[90]},{"name":"DNS_RCODE_BADSIG","features":[90]},{"name":"DNS_RCODE_BADTIME","features":[90]},{"name":"DNS_RCODE_BADVERS","features":[90]},{"name":"DNS_RCODE_FORMAT_ERROR","features":[90]},{"name":"DNS_RCODE_FORMERR","features":[90]},{"name":"DNS_RCODE_MAX","features":[90]},{"name":"DNS_RCODE_NAME_ERROR","features":[90]},{"name":"DNS_RCODE_NOERROR","features":[90]},{"name":"DNS_RCODE_NOTAUTH","features":[90]},{"name":"DNS_RCODE_NOTIMPL","features":[90]},{"name":"DNS_RCODE_NOTZONE","features":[90]},{"name":"DNS_RCODE_NOT_IMPLEMENTED","features":[90]},{"name":"DNS_RCODE_NO_ERROR","features":[90]},{"name":"DNS_RCODE_NXDOMAIN","features":[90]},{"name":"DNS_RCODE_NXRRSET","features":[90]},{"name":"DNS_RCODE_REFUSED","features":[90]},{"name":"DNS_RCODE_SERVER_FAILURE","features":[90]},{"name":"DNS_RCODE_SERVFAIL","features":[90]},{"name":"DNS_RCODE_YXDOMAIN","features":[90]},{"name":"DNS_RCODE_YXRRSET","features":[90]},{"name":"DNS_RECORDA","features":[3,90]},{"name":"DNS_RECORDW","features":[3,90]},{"name":"DNS_RECORD_FLAGS","features":[90]},{"name":"DNS_RECORD_OPTW","features":[3,90]},{"name":"DNS_RFC_MAX_UDP_PACKET_LENGTH","features":[90]},{"name":"DNS_RRSET","features":[3,90]},{"name":"DNS_RTYPE_A","features":[90]},{"name":"DNS_RTYPE_A6","features":[90]},{"name":"DNS_RTYPE_AAAA","features":[90]},{"name":"DNS_RTYPE_AFSDB","features":[90]},{"name":"DNS_RTYPE_ALL","features":[90]},{"name":"DNS_RTYPE_ANY","features":[90]},{"name":"DNS_RTYPE_ATMA","features":[90]},{"name":"DNS_RTYPE_AXFR","features":[90]},{"name":"DNS_RTYPE_CERT","features":[90]},{"name":"DNS_RTYPE_CNAME","features":[90]},{"name":"DNS_RTYPE_DHCID","features":[90]},{"name":"DNS_RTYPE_DNAME","features":[90]},{"name":"DNS_RTYPE_DNSKEY","features":[90]},{"name":"DNS_RTYPE_DS","features":[90]},{"name":"DNS_RTYPE_EID","features":[90]},{"name":"DNS_RTYPE_GID","features":[90]},{"name":"DNS_RTYPE_GPOS","features":[90]},{"name":"DNS_RTYPE_HINFO","features":[90]},{"name":"DNS_RTYPE_ISDN","features":[90]},{"name":"DNS_RTYPE_IXFR","features":[90]},{"name":"DNS_RTYPE_KEY","features":[90]},{"name":"DNS_RTYPE_KX","features":[90]},{"name":"DNS_RTYPE_LOC","features":[90]},{"name":"DNS_RTYPE_MAILA","features":[90]},{"name":"DNS_RTYPE_MAILB","features":[90]},{"name":"DNS_RTYPE_MB","features":[90]},{"name":"DNS_RTYPE_MD","features":[90]},{"name":"DNS_RTYPE_MF","features":[90]},{"name":"DNS_RTYPE_MG","features":[90]},{"name":"DNS_RTYPE_MINFO","features":[90]},{"name":"DNS_RTYPE_MR","features":[90]},{"name":"DNS_RTYPE_MX","features":[90]},{"name":"DNS_RTYPE_NAPTR","features":[90]},{"name":"DNS_RTYPE_NIMLOC","features":[90]},{"name":"DNS_RTYPE_NS","features":[90]},{"name":"DNS_RTYPE_NSAP","features":[90]},{"name":"DNS_RTYPE_NSAPPTR","features":[90]},{"name":"DNS_RTYPE_NSEC","features":[90]},{"name":"DNS_RTYPE_NSEC3","features":[90]},{"name":"DNS_RTYPE_NSEC3PARAM","features":[90]},{"name":"DNS_RTYPE_NULL","features":[90]},{"name":"DNS_RTYPE_NXT","features":[90]},{"name":"DNS_RTYPE_OPT","features":[90]},{"name":"DNS_RTYPE_PTR","features":[90]},{"name":"DNS_RTYPE_PX","features":[90]},{"name":"DNS_RTYPE_RP","features":[90]},{"name":"DNS_RTYPE_RRSIG","features":[90]},{"name":"DNS_RTYPE_RT","features":[90]},{"name":"DNS_RTYPE_SIG","features":[90]},{"name":"DNS_RTYPE_SINK","features":[90]},{"name":"DNS_RTYPE_SOA","features":[90]},{"name":"DNS_RTYPE_SRV","features":[90]},{"name":"DNS_RTYPE_TEXT","features":[90]},{"name":"DNS_RTYPE_TKEY","features":[90]},{"name":"DNS_RTYPE_TLSA","features":[90]},{"name":"DNS_RTYPE_TSIG","features":[90]},{"name":"DNS_RTYPE_UID","features":[90]},{"name":"DNS_RTYPE_UINFO","features":[90]},{"name":"DNS_RTYPE_UNSPEC","features":[90]},{"name":"DNS_RTYPE_WINS","features":[90]},{"name":"DNS_RTYPE_WINSR","features":[90]},{"name":"DNS_RTYPE_WKS","features":[90]},{"name":"DNS_RTYPE_X25","features":[90]},{"name":"DNS_SECTION","features":[90]},{"name":"DNS_SERVICE_BROWSE_REQUEST","features":[3,90]},{"name":"DNS_SERVICE_CANCEL","features":[90]},{"name":"DNS_SERVICE_INSTANCE","features":[90]},{"name":"DNS_SERVICE_REGISTER_REQUEST","features":[3,90]},{"name":"DNS_SERVICE_RESOLVE_REQUEST","features":[90]},{"name":"DNS_SIG_DATAA","features":[90]},{"name":"DNS_SIG_DATAW","features":[90]},{"name":"DNS_SOA_DATAA","features":[90]},{"name":"DNS_SOA_DATAW","features":[90]},{"name":"DNS_SRV_DATAA","features":[90]},{"name":"DNS_SRV_DATAW","features":[90]},{"name":"DNS_SVCB_DATA","features":[90]},{"name":"DNS_SVCB_PARAM","features":[90]},{"name":"DNS_SVCB_PARAM_ALPN","features":[90]},{"name":"DNS_SVCB_PARAM_ALPN_ID","features":[90]},{"name":"DNS_SVCB_PARAM_IPV4","features":[90]},{"name":"DNS_SVCB_PARAM_IPV6","features":[90]},{"name":"DNS_SVCB_PARAM_MANDATORY","features":[90]},{"name":"DNS_SVCB_PARAM_TYPE","features":[90]},{"name":"DNS_SVCB_PARAM_UNKNOWN","features":[90]},{"name":"DNS_TKEY_DATAA","features":[3,90]},{"name":"DNS_TKEY_DATAW","features":[3,90]},{"name":"DNS_TKEY_MODE_DIFFIE_HELLMAN","features":[90]},{"name":"DNS_TKEY_MODE_GSS","features":[90]},{"name":"DNS_TKEY_MODE_RESOLVER_ASSIGN","features":[90]},{"name":"DNS_TKEY_MODE_SERVER_ASSIGN","features":[90]},{"name":"DNS_TLSA_DATA","features":[90]},{"name":"DNS_TSIG_DATAA","features":[3,90]},{"name":"DNS_TSIG_DATAW","features":[3,90]},{"name":"DNS_TXT_DATAA","features":[90]},{"name":"DNS_TXT_DATAW","features":[90]},{"name":"DNS_TYPE","features":[90]},{"name":"DNS_TYPE_A","features":[90]},{"name":"DNS_TYPE_A6","features":[90]},{"name":"DNS_TYPE_AAAA","features":[90]},{"name":"DNS_TYPE_ADDRS","features":[90]},{"name":"DNS_TYPE_AFSDB","features":[90]},{"name":"DNS_TYPE_ALL","features":[90]},{"name":"DNS_TYPE_ANY","features":[90]},{"name":"DNS_TYPE_ATMA","features":[90]},{"name":"DNS_TYPE_AXFR","features":[90]},{"name":"DNS_TYPE_CERT","features":[90]},{"name":"DNS_TYPE_CNAME","features":[90]},{"name":"DNS_TYPE_DHCID","features":[90]},{"name":"DNS_TYPE_DNAME","features":[90]},{"name":"DNS_TYPE_DNSKEY","features":[90]},{"name":"DNS_TYPE_DS","features":[90]},{"name":"DNS_TYPE_EID","features":[90]},{"name":"DNS_TYPE_GID","features":[90]},{"name":"DNS_TYPE_GPOS","features":[90]},{"name":"DNS_TYPE_HINFO","features":[90]},{"name":"DNS_TYPE_HTTPS","features":[90]},{"name":"DNS_TYPE_ISDN","features":[90]},{"name":"DNS_TYPE_IXFR","features":[90]},{"name":"DNS_TYPE_KEY","features":[90]},{"name":"DNS_TYPE_KX","features":[90]},{"name":"DNS_TYPE_LOC","features":[90]},{"name":"DNS_TYPE_MAILA","features":[90]},{"name":"DNS_TYPE_MAILB","features":[90]},{"name":"DNS_TYPE_MB","features":[90]},{"name":"DNS_TYPE_MD","features":[90]},{"name":"DNS_TYPE_MF","features":[90]},{"name":"DNS_TYPE_MG","features":[90]},{"name":"DNS_TYPE_MINFO","features":[90]},{"name":"DNS_TYPE_MR","features":[90]},{"name":"DNS_TYPE_MX","features":[90]},{"name":"DNS_TYPE_NAPTR","features":[90]},{"name":"DNS_TYPE_NBSTAT","features":[90]},{"name":"DNS_TYPE_NIMLOC","features":[90]},{"name":"DNS_TYPE_NS","features":[90]},{"name":"DNS_TYPE_NSAP","features":[90]},{"name":"DNS_TYPE_NSAPPTR","features":[90]},{"name":"DNS_TYPE_NSEC","features":[90]},{"name":"DNS_TYPE_NSEC3","features":[90]},{"name":"DNS_TYPE_NSEC3PARAM","features":[90]},{"name":"DNS_TYPE_NULL","features":[90]},{"name":"DNS_TYPE_NXT","features":[90]},{"name":"DNS_TYPE_OPT","features":[90]},{"name":"DNS_TYPE_PTR","features":[90]},{"name":"DNS_TYPE_PX","features":[90]},{"name":"DNS_TYPE_RP","features":[90]},{"name":"DNS_TYPE_RRSIG","features":[90]},{"name":"DNS_TYPE_RT","features":[90]},{"name":"DNS_TYPE_SIG","features":[90]},{"name":"DNS_TYPE_SINK","features":[90]},{"name":"DNS_TYPE_SOA","features":[90]},{"name":"DNS_TYPE_SRV","features":[90]},{"name":"DNS_TYPE_SVCB","features":[90]},{"name":"DNS_TYPE_TEXT","features":[90]},{"name":"DNS_TYPE_TKEY","features":[90]},{"name":"DNS_TYPE_TLSA","features":[90]},{"name":"DNS_TYPE_TSIG","features":[90]},{"name":"DNS_TYPE_UID","features":[90]},{"name":"DNS_TYPE_UINFO","features":[90]},{"name":"DNS_TYPE_UNSPEC","features":[90]},{"name":"DNS_TYPE_WINS","features":[90]},{"name":"DNS_TYPE_WINSR","features":[90]},{"name":"DNS_TYPE_WKS","features":[90]},{"name":"DNS_TYPE_X25","features":[90]},{"name":"DNS_TYPE_ZERO","features":[90]},{"name":"DNS_UNKNOWN_DATA","features":[90]},{"name":"DNS_UPDATE_CACHE_SECURITY_CONTEXT","features":[90]},{"name":"DNS_UPDATE_FORCE_SECURITY_NEGO","features":[90]},{"name":"DNS_UPDATE_REMOTE_SERVER","features":[90]},{"name":"DNS_UPDATE_RESERVED","features":[90]},{"name":"DNS_UPDATE_SECURITY_OFF","features":[90]},{"name":"DNS_UPDATE_SECURITY_ON","features":[90]},{"name":"DNS_UPDATE_SECURITY_ONLY","features":[90]},{"name":"DNS_UPDATE_SECURITY_USE_DEFAULT","features":[90]},{"name":"DNS_UPDATE_SKIP_NO_UPDATE_ADAPTERS","features":[90]},{"name":"DNS_UPDATE_TEST_USE_LOCAL_SYS_ACCT","features":[90]},{"name":"DNS_UPDATE_TRY_ALL_MASTER_SERVERS","features":[90]},{"name":"DNS_VALSVR_ERROR_INVALID_ADDR","features":[90]},{"name":"DNS_VALSVR_ERROR_INVALID_NAME","features":[90]},{"name":"DNS_VALSVR_ERROR_NO_AUTH","features":[90]},{"name":"DNS_VALSVR_ERROR_NO_RESPONSE","features":[90]},{"name":"DNS_VALSVR_ERROR_NO_TCP","features":[90]},{"name":"DNS_VALSVR_ERROR_REFUSED","features":[90]},{"name":"DNS_VALSVR_ERROR_UNKNOWN","features":[90]},{"name":"DNS_VALSVR_ERROR_UNREACHABLE","features":[90]},{"name":"DNS_WINSR_DATAA","features":[90]},{"name":"DNS_WINSR_DATAW","features":[90]},{"name":"DNS_WINS_DATA","features":[90]},{"name":"DNS_WINS_FLAG_LOCAL","features":[90]},{"name":"DNS_WINS_FLAG_SCOPE","features":[90]},{"name":"DNS_WIRE_QUESTION","features":[90]},{"name":"DNS_WIRE_RECORD","features":[90]},{"name":"DNS_WKS_DATA","features":[90]},{"name":"DnsAcquireContextHandle_A","features":[3,90]},{"name":"DnsAcquireContextHandle_W","features":[3,90]},{"name":"DnsCancelQuery","features":[90]},{"name":"DnsCancelQueryRaw","features":[90]},{"name":"DnsCharSetAnsi","features":[90]},{"name":"DnsCharSetUnicode","features":[90]},{"name":"DnsCharSetUnknown","features":[90]},{"name":"DnsCharSetUtf8","features":[90]},{"name":"DnsConfigAdapterDomainName_A","features":[90]},{"name":"DnsConfigAdapterDomainName_UTF8","features":[90]},{"name":"DnsConfigAdapterDomainName_W","features":[90]},{"name":"DnsConfigAdapterHostNameRegistrationEnabled","features":[90]},{"name":"DnsConfigAdapterInfo","features":[90]},{"name":"DnsConfigAddressRegistrationMaxCount","features":[90]},{"name":"DnsConfigDnsServerList","features":[90]},{"name":"DnsConfigFullHostName_A","features":[90]},{"name":"DnsConfigFullHostName_UTF8","features":[90]},{"name":"DnsConfigFullHostName_W","features":[90]},{"name":"DnsConfigHostName_A","features":[90]},{"name":"DnsConfigHostName_UTF8","features":[90]},{"name":"DnsConfigHostName_W","features":[90]},{"name":"DnsConfigNameServer","features":[90]},{"name":"DnsConfigPrimaryDomainName_A","features":[90]},{"name":"DnsConfigPrimaryDomainName_UTF8","features":[90]},{"name":"DnsConfigPrimaryDomainName_W","features":[90]},{"name":"DnsConfigPrimaryHostNameRegistrationEnabled","features":[90]},{"name":"DnsConfigSearchList","features":[90]},{"name":"DnsConnectionDeletePolicyEntries","features":[90]},{"name":"DnsConnectionDeleteProxyInfo","features":[90]},{"name":"DnsConnectionFreeNameList","features":[90]},{"name":"DnsConnectionFreeProxyInfo","features":[90]},{"name":"DnsConnectionFreeProxyInfoEx","features":[3,90]},{"name":"DnsConnectionFreeProxyList","features":[90]},{"name":"DnsConnectionGetNameList","features":[90]},{"name":"DnsConnectionGetProxyInfo","features":[90]},{"name":"DnsConnectionGetProxyInfoForHostUrl","features":[3,90]},{"name":"DnsConnectionGetProxyInfoForHostUrlEx","features":[3,90]},{"name":"DnsConnectionGetProxyList","features":[90]},{"name":"DnsConnectionSetPolicyEntries","features":[90]},{"name":"DnsConnectionSetProxyInfo","features":[90]},{"name":"DnsConnectionUpdateIfIndexTable","features":[90]},{"name":"DnsExtractRecordsFromMessage_UTF8","features":[3,90]},{"name":"DnsExtractRecordsFromMessage_W","features":[3,90]},{"name":"DnsFree","features":[90]},{"name":"DnsFreeCustomServers","features":[90]},{"name":"DnsFreeFlat","features":[90]},{"name":"DnsFreeParsedMessageFields","features":[90]},{"name":"DnsFreeProxyName","features":[90]},{"name":"DnsFreeRecordList","features":[90]},{"name":"DnsGetApplicationSettings","features":[90]},{"name":"DnsGetProxyInformation","features":[90]},{"name":"DnsModifyRecordsInSet_A","features":[3,90]},{"name":"DnsModifyRecordsInSet_UTF8","features":[3,90]},{"name":"DnsModifyRecordsInSet_W","features":[3,90]},{"name":"DnsNameCompare_A","features":[3,90]},{"name":"DnsNameCompare_W","features":[3,90]},{"name":"DnsNameDomain","features":[90]},{"name":"DnsNameDomainLabel","features":[90]},{"name":"DnsNameHostnameFull","features":[90]},{"name":"DnsNameHostnameLabel","features":[90]},{"name":"DnsNameSrvRecord","features":[90]},{"name":"DnsNameValidateTld","features":[90]},{"name":"DnsNameWildcard","features":[90]},{"name":"DnsQueryConfig","features":[90]},{"name":"DnsQueryEx","features":[3,90]},{"name":"DnsQueryRaw","features":[3,90]},{"name":"DnsQueryRawResultFree","features":[3,90]},{"name":"DnsQuery_A","features":[3,90]},{"name":"DnsQuery_UTF8","features":[3,90]},{"name":"DnsQuery_W","features":[3,90]},{"name":"DnsRecordCompare","features":[3,90]},{"name":"DnsRecordCopyEx","features":[3,90]},{"name":"DnsRecordSetCompare","features":[3,90]},{"name":"DnsRecordSetCopyEx","features":[3,90]},{"name":"DnsRecordSetDetach","features":[3,90]},{"name":"DnsReleaseContextHandle","features":[3,90]},{"name":"DnsReplaceRecordSetA","features":[3,90]},{"name":"DnsReplaceRecordSetUTF8","features":[3,90]},{"name":"DnsReplaceRecordSetW","features":[3,90]},{"name":"DnsSectionAddtional","features":[90]},{"name":"DnsSectionAnswer","features":[90]},{"name":"DnsSectionAuthority","features":[90]},{"name":"DnsSectionQuestion","features":[90]},{"name":"DnsServiceBrowse","features":[3,90]},{"name":"DnsServiceBrowseCancel","features":[90]},{"name":"DnsServiceConstructInstance","features":[90]},{"name":"DnsServiceCopyInstance","features":[90]},{"name":"DnsServiceDeRegister","features":[3,90]},{"name":"DnsServiceFreeInstance","features":[90]},{"name":"DnsServiceRegister","features":[3,90]},{"name":"DnsServiceRegisterCancel","features":[90]},{"name":"DnsServiceResolve","features":[90]},{"name":"DnsServiceResolveCancel","features":[90]},{"name":"DnsSetApplicationSettings","features":[90]},{"name":"DnsStartMulticastQuery","features":[3,90]},{"name":"DnsStopMulticastQuery","features":[90]},{"name":"DnsSvcbParamAlpn","features":[90]},{"name":"DnsSvcbParamDohPath","features":[90]},{"name":"DnsSvcbParamDohPathOpenDns","features":[90]},{"name":"DnsSvcbParamDohPathQuad9","features":[90]},{"name":"DnsSvcbParamEch","features":[90]},{"name":"DnsSvcbParamIpv4Hint","features":[90]},{"name":"DnsSvcbParamIpv6Hint","features":[90]},{"name":"DnsSvcbParamMandatory","features":[90]},{"name":"DnsSvcbParamNoDefaultAlpn","features":[90]},{"name":"DnsSvcbParamPort","features":[90]},{"name":"DnsValidateName_A","features":[90]},{"name":"DnsValidateName_UTF8","features":[90]},{"name":"DnsValidateName_W","features":[90]},{"name":"DnsWriteQuestionToBuffer_UTF8","features":[3,90]},{"name":"DnsWriteQuestionToBuffer_W","features":[3,90]},{"name":"IP4_ADDRESS_STRING_BUFFER_LENGTH","features":[90]},{"name":"IP4_ADDRESS_STRING_LENGTH","features":[90]},{"name":"IP4_ARRAY","features":[90]},{"name":"IP6_ADDRESS","features":[90]},{"name":"IP6_ADDRESS","features":[90]},{"name":"IP6_ADDRESS_STRING_BUFFER_LENGTH","features":[90]},{"name":"IP6_ADDRESS_STRING_LENGTH","features":[90]},{"name":"MDNS_QUERY_HANDLE","features":[90]},{"name":"MDNS_QUERY_REQUEST","features":[3,90]},{"name":"PDNS_QUERY_COMPLETION_ROUTINE","features":[3,90]},{"name":"PDNS_SERVICE_BROWSE_CALLBACK","features":[3,90]},{"name":"PDNS_SERVICE_REGISTER_COMPLETE","features":[90]},{"name":"PDNS_SERVICE_RESOLVE_COMPLETE","features":[90]},{"name":"PMDNS_QUERY_CALLBACK","features":[3,90]},{"name":"SIZEOF_IP4_ADDRESS","features":[90]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_CONNECTION_MANAGER","features":[90]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_DEFAULT","features":[90]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_WWWPT","features":[90]},{"name":"_DnsRecordOptA","features":[3,90]}],"447":[{"name":"ICW_ALREADYRUN","features":[91]},{"name":"ICW_CHECKSTATUS","features":[91]},{"name":"ICW_FULLPRESENT","features":[91]},{"name":"ICW_FULL_SMARTSTART","features":[91]},{"name":"ICW_LAUNCHEDFULL","features":[91]},{"name":"ICW_LAUNCHEDMANUAL","features":[91]},{"name":"ICW_LAUNCHFULL","features":[91]},{"name":"ICW_LAUNCHMANUAL","features":[91]},{"name":"ICW_MANUALPRESENT","features":[91]},{"name":"ICW_MAX_ACCTNAME","features":[91]},{"name":"ICW_MAX_EMAILADDR","features":[91]},{"name":"ICW_MAX_EMAILNAME","features":[91]},{"name":"ICW_MAX_LOGONNAME","features":[91]},{"name":"ICW_MAX_PASSWORD","features":[91]},{"name":"ICW_MAX_RASNAME","features":[91]},{"name":"ICW_MAX_SERVERNAME","features":[91]},{"name":"ICW_REGKEYCOMPLETED","features":[91]},{"name":"ICW_REGPATHSETTINGS","features":[91]},{"name":"ICW_USEDEFAULTS","features":[91]},{"name":"ICW_USE_SHELLNEXT","features":[91]},{"name":"PFNCHECKCONNECTIONWIZARD","features":[91]},{"name":"PFNSETSHELLNEXT","features":[91]}],"448":[{"name":"ANY_SIZE","features":[92]},{"name":"ARP_SEND_REPLY","features":[92]},{"name":"AddIPAddress","features":[92]},{"name":"BEST_IF","features":[92]},{"name":"BEST_ROUTE","features":[92]},{"name":"BROADCAST_NODETYPE","features":[92]},{"name":"CancelIPChangeNotify","features":[3,92,8]},{"name":"CancelIfTimestampConfigChange","features":[92]},{"name":"CancelMibChangeNotify2","features":[3,92]},{"name":"CaptureInterfaceHardwareCrossTimestamp","features":[92,18]},{"name":"ConvertCompartmentGuidToId","features":[3,92]},{"name":"ConvertCompartmentIdToGuid","features":[3,92]},{"name":"ConvertInterfaceAliasToLuid","features":[3,92,18]},{"name":"ConvertInterfaceGuidToLuid","features":[3,92,18]},{"name":"ConvertInterfaceIndexToLuid","features":[3,92,18]},{"name":"ConvertInterfaceLuidToAlias","features":[3,92,18]},{"name":"ConvertInterfaceLuidToGuid","features":[3,92,18]},{"name":"ConvertInterfaceLuidToIndex","features":[3,92,18]},{"name":"ConvertInterfaceLuidToNameA","features":[3,92,18]},{"name":"ConvertInterfaceLuidToNameW","features":[3,92,18]},{"name":"ConvertInterfaceNameToLuidA","features":[3,92,18]},{"name":"ConvertInterfaceNameToLuidW","features":[3,92,18]},{"name":"ConvertIpv4MaskToLength","features":[3,92]},{"name":"ConvertLengthToIpv4Mask","features":[3,92]},{"name":"CreateAnycastIpAddressEntry","features":[3,92,18,17]},{"name":"CreateIpForwardEntry","features":[92,17]},{"name":"CreateIpForwardEntry2","features":[3,92,18,17]},{"name":"CreateIpNetEntry","features":[92]},{"name":"CreateIpNetEntry2","features":[3,92,18,17]},{"name":"CreatePersistentTcpPortReservation","features":[92]},{"name":"CreatePersistentUdpPortReservation","features":[92]},{"name":"CreateProxyArpEntry","features":[92]},{"name":"CreateSortedAddressPairs","features":[3,92,17]},{"name":"CreateUnicastIpAddressEntry","features":[3,92,18,17]},{"name":"DEFAULT_MINIMUM_ENTITIES","features":[92]},{"name":"DEST_LONGER","features":[92]},{"name":"DEST_MATCHING","features":[92]},{"name":"DEST_SHORTER","features":[92]},{"name":"DNS_DDR_ADAPTER_ENABLE_DOH","features":[92]},{"name":"DNS_DDR_ADAPTER_ENABLE_UDP_FALLBACK","features":[92]},{"name":"DNS_DOH_AUTO_UPGRADE_SERVER","features":[92]},{"name":"DNS_DOH_POLICY_AUTO","features":[92]},{"name":"DNS_DOH_POLICY_DISABLE","features":[92]},{"name":"DNS_DOH_POLICY_NOT_CONFIGURED","features":[92]},{"name":"DNS_DOH_POLICY_REQUIRED","features":[92]},{"name":"DNS_DOH_SERVER_SETTINGS","features":[92]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE","features":[92]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_AUTO","features":[92]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_DDR","features":[92]},{"name":"DNS_DOH_SERVER_SETTINGS_FALLBACK_TO_UDP","features":[92]},{"name":"DNS_ENABLE_DDR","features":[92]},{"name":"DNS_ENABLE_DOH","features":[92]},{"name":"DNS_INTERFACE_SETTINGS","features":[92]},{"name":"DNS_INTERFACE_SETTINGS3","features":[92]},{"name":"DNS_INTERFACE_SETTINGS4","features":[92]},{"name":"DNS_INTERFACE_SETTINGS_EX","features":[92]},{"name":"DNS_INTERFACE_SETTINGS_VERSION1","features":[92]},{"name":"DNS_INTERFACE_SETTINGS_VERSION2","features":[92]},{"name":"DNS_INTERFACE_SETTINGS_VERSION3","features":[92]},{"name":"DNS_INTERFACE_SETTINGS_VERSION4","features":[92]},{"name":"DNS_SERVER_PROPERTY","features":[92]},{"name":"DNS_SERVER_PROPERTY_TYPE","features":[92]},{"name":"DNS_SERVER_PROPERTY_TYPES","features":[92]},{"name":"DNS_SERVER_PROPERTY_VERSION1","features":[92]},{"name":"DNS_SETTINGS","features":[92]},{"name":"DNS_SETTINGS2","features":[92]},{"name":"DNS_SETTINGS_ENABLE_LLMNR","features":[92]},{"name":"DNS_SETTINGS_QUERY_ADAPTER_NAME","features":[92]},{"name":"DNS_SETTINGS_VERSION1","features":[92]},{"name":"DNS_SETTINGS_VERSION2","features":[92]},{"name":"DNS_SETTING_DDR","features":[92]},{"name":"DNS_SETTING_DISABLE_UNCONSTRAINED_QUERIES","features":[92]},{"name":"DNS_SETTING_DOH","features":[92]},{"name":"DNS_SETTING_DOH_PROFILE","features":[92]},{"name":"DNS_SETTING_DOMAIN","features":[92]},{"name":"DNS_SETTING_ENCRYPTED_DNS_ADAPTER_FLAGS","features":[92]},{"name":"DNS_SETTING_HOSTNAME","features":[92]},{"name":"DNS_SETTING_IPV6","features":[92]},{"name":"DNS_SETTING_NAMESERVER","features":[92]},{"name":"DNS_SETTING_PROFILE_NAMESERVER","features":[92]},{"name":"DNS_SETTING_REGISTER_ADAPTER_NAME","features":[92]},{"name":"DNS_SETTING_REGISTRATION_ENABLED","features":[92]},{"name":"DNS_SETTING_SEARCHLIST","features":[92]},{"name":"DNS_SETTING_SUPPLEMENTAL_SEARCH_LIST","features":[92]},{"name":"DeleteAnycastIpAddressEntry","features":[3,92,18,17]},{"name":"DeleteIPAddress","features":[92]},{"name":"DeleteIpForwardEntry","features":[92,17]},{"name":"DeleteIpForwardEntry2","features":[3,92,18,17]},{"name":"DeleteIpNetEntry","features":[92]},{"name":"DeleteIpNetEntry2","features":[3,92,18,17]},{"name":"DeletePersistentTcpPortReservation","features":[92]},{"name":"DeletePersistentUdpPortReservation","features":[92]},{"name":"DeleteProxyArpEntry","features":[92]},{"name":"DeleteUnicastIpAddressEntry","features":[3,92,18,17]},{"name":"DisableMediaSense","features":[3,92,8]},{"name":"DnsServerDohProperty","features":[92]},{"name":"DnsServerInvalidProperty","features":[92]},{"name":"ERROR_BASE","features":[92]},{"name":"ERROR_IPV6_NOT_IMPLEMENTED","features":[92]},{"name":"EnableRouter","features":[3,92,8]},{"name":"FD_FLAGS_ALLFLAGS","features":[92]},{"name":"FD_FLAGS_NOSYN","features":[92]},{"name":"FILTER_ICMP_CODE_ANY","features":[92]},{"name":"FILTER_ICMP_TYPE_ANY","features":[92]},{"name":"FIXED_INFO_W2KSP1","features":[92]},{"name":"FlushIpNetTable","features":[92]},{"name":"FlushIpNetTable2","features":[3,92,17]},{"name":"FlushIpPathTable","features":[3,92,17]},{"name":"FreeDnsSettings","features":[92]},{"name":"FreeInterfaceDnsSettings","features":[92]},{"name":"FreeMibTable","features":[92]},{"name":"GAA_FLAG_INCLUDE_ALL_COMPARTMENTS","features":[92]},{"name":"GAA_FLAG_INCLUDE_ALL_INTERFACES","features":[92]},{"name":"GAA_FLAG_INCLUDE_GATEWAYS","features":[92]},{"name":"GAA_FLAG_INCLUDE_PREFIX","features":[92]},{"name":"GAA_FLAG_INCLUDE_TUNNEL_BINDINGORDER","features":[92]},{"name":"GAA_FLAG_INCLUDE_WINS_INFO","features":[92]},{"name":"GAA_FLAG_SKIP_ANYCAST","features":[92]},{"name":"GAA_FLAG_SKIP_DNS_INFO","features":[92]},{"name":"GAA_FLAG_SKIP_DNS_SERVER","features":[92]},{"name":"GAA_FLAG_SKIP_FRIENDLY_NAME","features":[92]},{"name":"GAA_FLAG_SKIP_MULTICAST","features":[92]},{"name":"GAA_FLAG_SKIP_UNICAST","features":[92]},{"name":"GET_ADAPTERS_ADDRESSES_FLAGS","features":[92]},{"name":"GF_FRAGCACHE","features":[92]},{"name":"GF_FRAGMENTS","features":[92]},{"name":"GF_STRONGHOST","features":[92]},{"name":"GLOBAL_FILTER","features":[92]},{"name":"GetAdapterIndex","features":[92]},{"name":"GetAdapterOrderMap","features":[92]},{"name":"GetAdaptersAddresses","features":[92,18,17]},{"name":"GetAdaptersInfo","features":[3,92]},{"name":"GetAnycastIpAddressEntry","features":[3,92,18,17]},{"name":"GetAnycastIpAddressTable","features":[3,92,18,17]},{"name":"GetBestInterface","features":[92]},{"name":"GetBestInterfaceEx","features":[92,17]},{"name":"GetBestRoute","features":[92,17]},{"name":"GetBestRoute2","features":[3,92,18,17]},{"name":"GetCurrentThreadCompartmentId","features":[3,92]},{"name":"GetCurrentThreadCompartmentScope","features":[92]},{"name":"GetDefaultCompartmentId","features":[3,92]},{"name":"GetDnsSettings","features":[3,92]},{"name":"GetExtendedTcpTable","features":[3,92]},{"name":"GetExtendedUdpTable","features":[3,92]},{"name":"GetFriendlyIfIndex","features":[92]},{"name":"GetIcmpStatistics","features":[92]},{"name":"GetIcmpStatisticsEx","features":[92]},{"name":"GetIfEntry","features":[92]},{"name":"GetIfEntry2","features":[3,92,18]},{"name":"GetIfEntry2Ex","features":[3,92,18]},{"name":"GetIfStackTable","features":[3,92]},{"name":"GetIfTable","features":[3,92]},{"name":"GetIfTable2","features":[3,92,18]},{"name":"GetIfTable2Ex","features":[3,92,18]},{"name":"GetInterfaceActiveTimestampCapabilities","features":[3,92,18]},{"name":"GetInterfaceCurrentTimestampCapabilities","features":[3,92,18]},{"name":"GetInterfaceDnsSettings","features":[3,92]},{"name":"GetInterfaceHardwareTimestampCapabilities","features":[3,92,18]},{"name":"GetInterfaceInfo","features":[92]},{"name":"GetInterfaceSupportedTimestampCapabilities","features":[3,92,18]},{"name":"GetInvertedIfStackTable","features":[3,92]},{"name":"GetIpAddrTable","features":[3,92]},{"name":"GetIpErrorString","features":[92]},{"name":"GetIpForwardEntry2","features":[3,92,18,17]},{"name":"GetIpForwardTable","features":[3,92,17]},{"name":"GetIpForwardTable2","features":[3,92,18,17]},{"name":"GetIpInterfaceEntry","features":[3,92,18,17]},{"name":"GetIpInterfaceTable","features":[3,92,18,17]},{"name":"GetIpNetEntry2","features":[3,92,18,17]},{"name":"GetIpNetTable","features":[3,92]},{"name":"GetIpNetTable2","features":[3,92,18,17]},{"name":"GetIpNetworkConnectionBandwidthEstimates","features":[3,92,17]},{"name":"GetIpPathEntry","features":[3,92,18,17]},{"name":"GetIpPathTable","features":[3,92,18,17]},{"name":"GetIpStatistics","features":[92]},{"name":"GetIpStatisticsEx","features":[92]},{"name":"GetJobCompartmentId","features":[3,92]},{"name":"GetMulticastIpAddressEntry","features":[3,92,18,17]},{"name":"GetMulticastIpAddressTable","features":[3,92,18,17]},{"name":"GetNetworkConnectivityHint","features":[3,92,17]},{"name":"GetNetworkConnectivityHintForInterface","features":[3,92,17]},{"name":"GetNetworkInformation","features":[3,92]},{"name":"GetNetworkParams","features":[3,92]},{"name":"GetNumberOfInterfaces","features":[92]},{"name":"GetOwnerModuleFromPidAndInfo","features":[92]},{"name":"GetOwnerModuleFromTcp6Entry","features":[92]},{"name":"GetOwnerModuleFromTcpEntry","features":[92]},{"name":"GetOwnerModuleFromUdp6Entry","features":[92]},{"name":"GetOwnerModuleFromUdpEntry","features":[92]},{"name":"GetPerAdapterInfo","features":[92]},{"name":"GetPerTcp6ConnectionEStats","features":[92,17]},{"name":"GetPerTcpConnectionEStats","features":[92]},{"name":"GetRTTAndHopCount","features":[3,92]},{"name":"GetSessionCompartmentId","features":[3,92]},{"name":"GetTcp6Table","features":[3,92,17]},{"name":"GetTcp6Table2","features":[3,92,17]},{"name":"GetTcpStatistics","features":[92]},{"name":"GetTcpStatisticsEx","features":[92]},{"name":"GetTcpStatisticsEx2","features":[92]},{"name":"GetTcpTable","features":[3,92]},{"name":"GetTcpTable2","features":[3,92]},{"name":"GetTeredoPort","features":[3,92]},{"name":"GetUdp6Table","features":[3,92,17]},{"name":"GetUdpStatistics","features":[92]},{"name":"GetUdpStatisticsEx","features":[92]},{"name":"GetUdpStatisticsEx2","features":[92]},{"name":"GetUdpTable","features":[3,92]},{"name":"GetUniDirectionalAdapterInfo","features":[92]},{"name":"GetUnicastIpAddressEntry","features":[3,92,18,17]},{"name":"GetUnicastIpAddressTable","features":[3,92,18,17]},{"name":"HIFTIMESTAMPCHANGE","features":[92]},{"name":"HYBRID_NODETYPE","features":[92]},{"name":"ICMP4_DST_UNREACH","features":[92]},{"name":"ICMP4_ECHO_REPLY","features":[92]},{"name":"ICMP4_ECHO_REQUEST","features":[92]},{"name":"ICMP4_MASK_REPLY","features":[92]},{"name":"ICMP4_MASK_REQUEST","features":[92]},{"name":"ICMP4_PARAM_PROB","features":[92]},{"name":"ICMP4_REDIRECT","features":[92]},{"name":"ICMP4_ROUTER_ADVERT","features":[92]},{"name":"ICMP4_ROUTER_SOLICIT","features":[92]},{"name":"ICMP4_SOURCE_QUENCH","features":[92]},{"name":"ICMP4_TIMESTAMP_REPLY","features":[92]},{"name":"ICMP4_TIMESTAMP_REQUEST","features":[92]},{"name":"ICMP4_TIME_EXCEEDED","features":[92]},{"name":"ICMP4_TYPE","features":[92]},{"name":"ICMP6_DST_UNREACH","features":[92]},{"name":"ICMP6_ECHO_REPLY","features":[92]},{"name":"ICMP6_ECHO_REQUEST","features":[92]},{"name":"ICMP6_INFOMSG_MASK","features":[92]},{"name":"ICMP6_MEMBERSHIP_QUERY","features":[92]},{"name":"ICMP6_MEMBERSHIP_REDUCTION","features":[92]},{"name":"ICMP6_MEMBERSHIP_REPORT","features":[92]},{"name":"ICMP6_PACKET_TOO_BIG","features":[92]},{"name":"ICMP6_PARAM_PROB","features":[92]},{"name":"ICMP6_TIME_EXCEEDED","features":[92]},{"name":"ICMP6_TYPE","features":[92]},{"name":"ICMP6_V2_MEMBERSHIP_REPORT","features":[92]},{"name":"ICMPV6_ECHO_REPLY_LH","features":[92]},{"name":"ICMP_ECHO_REPLY","features":[92]},{"name":"ICMP_ECHO_REPLY32","features":[92]},{"name":"ICMP_STATS","features":[92]},{"name":"IF_ACCESS_BROADCAST","features":[92]},{"name":"IF_ACCESS_LOOPBACK","features":[92]},{"name":"IF_ACCESS_POINTTOMULTIPOINT","features":[92]},{"name":"IF_ACCESS_POINTTOPOINT","features":[92]},{"name":"IF_ACCESS_POINT_TO_MULTI_POINT","features":[92]},{"name":"IF_ACCESS_POINT_TO_POINT","features":[92]},{"name":"IF_ACCESS_TYPE","features":[92]},{"name":"IF_ADMIN_STATUS_DOWN","features":[92]},{"name":"IF_ADMIN_STATUS_TESTING","features":[92]},{"name":"IF_ADMIN_STATUS_UP","features":[92]},{"name":"IF_CHECK_MCAST","features":[92]},{"name":"IF_CHECK_NONE","features":[92]},{"name":"IF_CHECK_SEND","features":[92]},{"name":"IF_CONNECTION_DEDICATED","features":[92]},{"name":"IF_CONNECTION_DEMAND","features":[92]},{"name":"IF_CONNECTION_PASSIVE","features":[92]},{"name":"IF_NUMBER","features":[92]},{"name":"IF_OPER_STATUS_CONNECTED","features":[92]},{"name":"IF_OPER_STATUS_CONNECTING","features":[92]},{"name":"IF_OPER_STATUS_DISCONNECTED","features":[92]},{"name":"IF_OPER_STATUS_NON_OPERATIONAL","features":[92]},{"name":"IF_OPER_STATUS_OPERATIONAL","features":[92]},{"name":"IF_OPER_STATUS_UNREACHABLE","features":[92]},{"name":"IF_ROW","features":[92]},{"name":"IF_STATUS","features":[92]},{"name":"IF_TABLE","features":[92]},{"name":"IF_TYPE_A12MPPSWITCH","features":[92]},{"name":"IF_TYPE_AAL2","features":[92]},{"name":"IF_TYPE_AAL5","features":[92]},{"name":"IF_TYPE_ADSL","features":[92]},{"name":"IF_TYPE_AFLANE_8023","features":[92]},{"name":"IF_TYPE_AFLANE_8025","features":[92]},{"name":"IF_TYPE_ARAP","features":[92]},{"name":"IF_TYPE_ARCNET","features":[92]},{"name":"IF_TYPE_ARCNET_PLUS","features":[92]},{"name":"IF_TYPE_ASYNC","features":[92]},{"name":"IF_TYPE_ATM","features":[92]},{"name":"IF_TYPE_ATM_DXI","features":[92]},{"name":"IF_TYPE_ATM_FUNI","features":[92]},{"name":"IF_TYPE_ATM_IMA","features":[92]},{"name":"IF_TYPE_ATM_LOGICAL","features":[92]},{"name":"IF_TYPE_ATM_RADIO","features":[92]},{"name":"IF_TYPE_ATM_SUBINTERFACE","features":[92]},{"name":"IF_TYPE_ATM_VCI_ENDPT","features":[92]},{"name":"IF_TYPE_ATM_VIRTUAL","features":[92]},{"name":"IF_TYPE_BASIC_ISDN","features":[92]},{"name":"IF_TYPE_BGP_POLICY_ACCOUNTING","features":[92]},{"name":"IF_TYPE_BSC","features":[92]},{"name":"IF_TYPE_CCTEMUL","features":[92]},{"name":"IF_TYPE_CES","features":[92]},{"name":"IF_TYPE_CHANNEL","features":[92]},{"name":"IF_TYPE_CNR","features":[92]},{"name":"IF_TYPE_COFFEE","features":[92]},{"name":"IF_TYPE_COMPOSITELINK","features":[92]},{"name":"IF_TYPE_DCN","features":[92]},{"name":"IF_TYPE_DDN_X25","features":[92]},{"name":"IF_TYPE_DIGITALPOWERLINE","features":[92]},{"name":"IF_TYPE_DIGITAL_WRAPPER_OVERHEAD_CHANNEL","features":[92]},{"name":"IF_TYPE_DLSW","features":[92]},{"name":"IF_TYPE_DOCSCABLE_DOWNSTREAM","features":[92]},{"name":"IF_TYPE_DOCSCABLE_MACLAYER","features":[92]},{"name":"IF_TYPE_DOCSCABLE_UPSTREAM","features":[92]},{"name":"IF_TYPE_DS0","features":[92]},{"name":"IF_TYPE_DS0_BUNDLE","features":[92]},{"name":"IF_TYPE_DS1","features":[92]},{"name":"IF_TYPE_DS1_FDL","features":[92]},{"name":"IF_TYPE_DS3","features":[92]},{"name":"IF_TYPE_DTM","features":[92]},{"name":"IF_TYPE_DVBRCC_DOWNSTREAM","features":[92]},{"name":"IF_TYPE_DVBRCC_MACLAYER","features":[92]},{"name":"IF_TYPE_DVBRCC_UPSTREAM","features":[92]},{"name":"IF_TYPE_DVB_ASI_IN","features":[92]},{"name":"IF_TYPE_DVB_ASI_OUT","features":[92]},{"name":"IF_TYPE_E1","features":[92]},{"name":"IF_TYPE_EON","features":[92]},{"name":"IF_TYPE_EPLRS","features":[92]},{"name":"IF_TYPE_ESCON","features":[92]},{"name":"IF_TYPE_ETHERNET_3MBIT","features":[92]},{"name":"IF_TYPE_ETHERNET_CSMACD","features":[92]},{"name":"IF_TYPE_FAST","features":[92]},{"name":"IF_TYPE_FASTETHER","features":[92]},{"name":"IF_TYPE_FASTETHER_FX","features":[92]},{"name":"IF_TYPE_FDDI","features":[92]},{"name":"IF_TYPE_FIBRECHANNEL","features":[92]},{"name":"IF_TYPE_FRAMERELAY","features":[92]},{"name":"IF_TYPE_FRAMERELAY_INTERCONNECT","features":[92]},{"name":"IF_TYPE_FRAMERELAY_MPI","features":[92]},{"name":"IF_TYPE_FRAMERELAY_SERVICE","features":[92]},{"name":"IF_TYPE_FRF16_MFR_BUNDLE","features":[92]},{"name":"IF_TYPE_FR_DLCI_ENDPT","features":[92]},{"name":"IF_TYPE_FR_FORWARD","features":[92]},{"name":"IF_TYPE_G703_2MB","features":[92]},{"name":"IF_TYPE_G703_64K","features":[92]},{"name":"IF_TYPE_GIGABITETHERNET","features":[92]},{"name":"IF_TYPE_GR303_IDT","features":[92]},{"name":"IF_TYPE_GR303_RDT","features":[92]},{"name":"IF_TYPE_H323_GATEKEEPER","features":[92]},{"name":"IF_TYPE_H323_PROXY","features":[92]},{"name":"IF_TYPE_HDH_1822","features":[92]},{"name":"IF_TYPE_HDLC","features":[92]},{"name":"IF_TYPE_HDSL2","features":[92]},{"name":"IF_TYPE_HIPERLAN2","features":[92]},{"name":"IF_TYPE_HIPPI","features":[92]},{"name":"IF_TYPE_HIPPIINTERFACE","features":[92]},{"name":"IF_TYPE_HOSTPAD","features":[92]},{"name":"IF_TYPE_HSSI","features":[92]},{"name":"IF_TYPE_HYPERCHANNEL","features":[92]},{"name":"IF_TYPE_IBM370PARCHAN","features":[92]},{"name":"IF_TYPE_IDSL","features":[92]},{"name":"IF_TYPE_IEEE1394","features":[92]},{"name":"IF_TYPE_IEEE80211","features":[92]},{"name":"IF_TYPE_IEEE80212","features":[92]},{"name":"IF_TYPE_IEEE802154","features":[92]},{"name":"IF_TYPE_IEEE80216_WMAN","features":[92]},{"name":"IF_TYPE_IEEE8023AD_LAG","features":[92]},{"name":"IF_TYPE_IF_GSN","features":[92]},{"name":"IF_TYPE_IMT","features":[92]},{"name":"IF_TYPE_INTERLEAVE","features":[92]},{"name":"IF_TYPE_IP","features":[92]},{"name":"IF_TYPE_IPFORWARD","features":[92]},{"name":"IF_TYPE_IPOVER_ATM","features":[92]},{"name":"IF_TYPE_IPOVER_CDLC","features":[92]},{"name":"IF_TYPE_IPOVER_CLAW","features":[92]},{"name":"IF_TYPE_IPSWITCH","features":[92]},{"name":"IF_TYPE_IS088023_CSMACD","features":[92]},{"name":"IF_TYPE_ISDN","features":[92]},{"name":"IF_TYPE_ISDN_S","features":[92]},{"name":"IF_TYPE_ISDN_U","features":[92]},{"name":"IF_TYPE_ISO88022_LLC","features":[92]},{"name":"IF_TYPE_ISO88024_TOKENBUS","features":[92]},{"name":"IF_TYPE_ISO88025R_DTR","features":[92]},{"name":"IF_TYPE_ISO88025_CRFPRINT","features":[92]},{"name":"IF_TYPE_ISO88025_FIBER","features":[92]},{"name":"IF_TYPE_ISO88025_TOKENRING","features":[92]},{"name":"IF_TYPE_ISO88026_MAN","features":[92]},{"name":"IF_TYPE_ISUP","features":[92]},{"name":"IF_TYPE_L2_VLAN","features":[92]},{"name":"IF_TYPE_L3_IPVLAN","features":[92]},{"name":"IF_TYPE_L3_IPXVLAN","features":[92]},{"name":"IF_TYPE_LAP_B","features":[92]},{"name":"IF_TYPE_LAP_D","features":[92]},{"name":"IF_TYPE_LAP_F","features":[92]},{"name":"IF_TYPE_LOCALTALK","features":[92]},{"name":"IF_TYPE_MEDIAMAILOVERIP","features":[92]},{"name":"IF_TYPE_MF_SIGLINK","features":[92]},{"name":"IF_TYPE_MIO_X25","features":[92]},{"name":"IF_TYPE_MODEM","features":[92]},{"name":"IF_TYPE_MPC","features":[92]},{"name":"IF_TYPE_MPLS","features":[92]},{"name":"IF_TYPE_MPLS_TUNNEL","features":[92]},{"name":"IF_TYPE_MSDSL","features":[92]},{"name":"IF_TYPE_MVL","features":[92]},{"name":"IF_TYPE_MYRINET","features":[92]},{"name":"IF_TYPE_NFAS","features":[92]},{"name":"IF_TYPE_NSIP","features":[92]},{"name":"IF_TYPE_OPTICAL_CHANNEL","features":[92]},{"name":"IF_TYPE_OPTICAL_TRANSPORT","features":[92]},{"name":"IF_TYPE_OTHER","features":[92]},{"name":"IF_TYPE_PARA","features":[92]},{"name":"IF_TYPE_PLC","features":[92]},{"name":"IF_TYPE_POS","features":[92]},{"name":"IF_TYPE_PPP","features":[92]},{"name":"IF_TYPE_PPPMULTILINKBUNDLE","features":[92]},{"name":"IF_TYPE_PRIMARY_ISDN","features":[92]},{"name":"IF_TYPE_PROP_BWA_P2MP","features":[92]},{"name":"IF_TYPE_PROP_CNLS","features":[92]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_DOWNSTREAM","features":[92]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_MACLAYER","features":[92]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_UPSTREAM","features":[92]},{"name":"IF_TYPE_PROP_MULTIPLEXOR","features":[92]},{"name":"IF_TYPE_PROP_POINT2POINT_SERIAL","features":[92]},{"name":"IF_TYPE_PROP_VIRTUAL","features":[92]},{"name":"IF_TYPE_PROP_WIRELESS_P2P","features":[92]},{"name":"IF_TYPE_PROTEON_10MBIT","features":[92]},{"name":"IF_TYPE_PROTEON_80MBIT","features":[92]},{"name":"IF_TYPE_QLLC","features":[92]},{"name":"IF_TYPE_RADIO_MAC","features":[92]},{"name":"IF_TYPE_RADSL","features":[92]},{"name":"IF_TYPE_REACH_DSL","features":[92]},{"name":"IF_TYPE_REGULAR_1822","features":[92]},{"name":"IF_TYPE_RFC1483","features":[92]},{"name":"IF_TYPE_RFC877_X25","features":[92]},{"name":"IF_TYPE_RS232","features":[92]},{"name":"IF_TYPE_RSRB","features":[92]},{"name":"IF_TYPE_SDLC","features":[92]},{"name":"IF_TYPE_SDSL","features":[92]},{"name":"IF_TYPE_SHDSL","features":[92]},{"name":"IF_TYPE_SIP","features":[92]},{"name":"IF_TYPE_SLIP","features":[92]},{"name":"IF_TYPE_SMDS_DXI","features":[92]},{"name":"IF_TYPE_SMDS_ICIP","features":[92]},{"name":"IF_TYPE_SOFTWARE_LOOPBACK","features":[92]},{"name":"IF_TYPE_SONET","features":[92]},{"name":"IF_TYPE_SONET_OVERHEAD_CHANNEL","features":[92]},{"name":"IF_TYPE_SONET_PATH","features":[92]},{"name":"IF_TYPE_SONET_VT","features":[92]},{"name":"IF_TYPE_SRP","features":[92]},{"name":"IF_TYPE_SS7_SIGLINK","features":[92]},{"name":"IF_TYPE_STACKTOSTACK","features":[92]},{"name":"IF_TYPE_STARLAN","features":[92]},{"name":"IF_TYPE_TDLC","features":[92]},{"name":"IF_TYPE_TERMPAD","features":[92]},{"name":"IF_TYPE_TR008","features":[92]},{"name":"IF_TYPE_TRANSPHDLC","features":[92]},{"name":"IF_TYPE_TUNNEL","features":[92]},{"name":"IF_TYPE_ULTRA","features":[92]},{"name":"IF_TYPE_USB","features":[92]},{"name":"IF_TYPE_V11","features":[92]},{"name":"IF_TYPE_V35","features":[92]},{"name":"IF_TYPE_V36","features":[92]},{"name":"IF_TYPE_V37","features":[92]},{"name":"IF_TYPE_VDSL","features":[92]},{"name":"IF_TYPE_VIRTUALIPADDRESS","features":[92]},{"name":"IF_TYPE_VOICEOVERATM","features":[92]},{"name":"IF_TYPE_VOICEOVERFRAMERELAY","features":[92]},{"name":"IF_TYPE_VOICE_EM","features":[92]},{"name":"IF_TYPE_VOICE_ENCAP","features":[92]},{"name":"IF_TYPE_VOICE_FXO","features":[92]},{"name":"IF_TYPE_VOICE_FXS","features":[92]},{"name":"IF_TYPE_VOICE_OVERIP","features":[92]},{"name":"IF_TYPE_WWANPP","features":[92]},{"name":"IF_TYPE_WWANPP2","features":[92]},{"name":"IF_TYPE_X213","features":[92]},{"name":"IF_TYPE_X25_HUNTGROUP","features":[92]},{"name":"IF_TYPE_X25_MLP","features":[92]},{"name":"IF_TYPE_X25_PLE","features":[92]},{"name":"IF_TYPE_XBOX_WIRELESS","features":[92]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP","features":[92]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP_VERSION_1","features":[92]},{"name":"INTERFACE_HARDWARE_TIMESTAMP_CAPABILITIES","features":[3,92]},{"name":"INTERFACE_SOFTWARE_TIMESTAMP_CAPABILITIES","features":[3,92]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES","features":[3,92]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES_VERSION_1","features":[92]},{"name":"INTERNAL_IF_OPER_STATUS","features":[92]},{"name":"IOCTL_ARP_SEND_REQUEST","features":[92]},{"name":"IOCTL_IP_ADDCHANGE_NOTIFY_REQUEST","features":[92]},{"name":"IOCTL_IP_GET_BEST_INTERFACE","features":[92]},{"name":"IOCTL_IP_INTERFACE_INFO","features":[92]},{"name":"IOCTL_IP_RTCHANGE_NOTIFY_REQUEST","features":[92]},{"name":"IOCTL_IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[92]},{"name":"IP6_STATS","features":[92]},{"name":"IPRTRMGR_PID","features":[92]},{"name":"IPV6_ADDRESS_EX","features":[92]},{"name":"IPV6_GLOBAL_INFO","features":[92]},{"name":"IPV6_ROUTE_INFO","features":[92]},{"name":"IP_ADAPTER_ADDRESSES_LH","features":[92,18,17]},{"name":"IP_ADAPTER_ADDRESSES_XP","features":[92,18,17]},{"name":"IP_ADAPTER_ADDRESS_DNS_ELIGIBLE","features":[92]},{"name":"IP_ADAPTER_ADDRESS_TRANSIENT","features":[92]},{"name":"IP_ADAPTER_ANYCAST_ADDRESS_XP","features":[92,17]},{"name":"IP_ADAPTER_DDNS_ENABLED","features":[92]},{"name":"IP_ADAPTER_DHCP_ENABLED","features":[92]},{"name":"IP_ADAPTER_DNS_SERVER_ADDRESS_XP","features":[92,17]},{"name":"IP_ADAPTER_DNS_SUFFIX","features":[92]},{"name":"IP_ADAPTER_GATEWAY_ADDRESS_LH","features":[92,17]},{"name":"IP_ADAPTER_INDEX_MAP","features":[92]},{"name":"IP_ADAPTER_INFO","features":[3,92]},{"name":"IP_ADAPTER_IPV4_ENABLED","features":[92]},{"name":"IP_ADAPTER_IPV6_ENABLED","features":[92]},{"name":"IP_ADAPTER_IPV6_MANAGE_ADDRESS_CONFIG","features":[92]},{"name":"IP_ADAPTER_IPV6_OTHER_STATEFUL_CONFIG","features":[92]},{"name":"IP_ADAPTER_MULTICAST_ADDRESS_XP","features":[92,17]},{"name":"IP_ADAPTER_NETBIOS_OVER_TCPIP_ENABLED","features":[92]},{"name":"IP_ADAPTER_NO_MULTICAST","features":[92]},{"name":"IP_ADAPTER_ORDER_MAP","features":[92]},{"name":"IP_ADAPTER_PREFIX_XP","features":[92,17]},{"name":"IP_ADAPTER_RECEIVE_ONLY","features":[92]},{"name":"IP_ADAPTER_REGISTER_ADAPTER_SUFFIX","features":[92]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_LH","features":[92,17]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_XP","features":[92,17]},{"name":"IP_ADAPTER_WINS_SERVER_ADDRESS_LH","features":[92,17]},{"name":"IP_ADDRESS_PREFIX","features":[92,17]},{"name":"IP_ADDRESS_STRING","features":[92]},{"name":"IP_ADDRROW","features":[92]},{"name":"IP_ADDRTABLE","features":[92]},{"name":"IP_ADDR_ADDED","features":[92]},{"name":"IP_ADDR_DELETED","features":[92]},{"name":"IP_ADDR_STRING","features":[92]},{"name":"IP_BAD_DESTINATION","features":[92]},{"name":"IP_BAD_HEADER","features":[92]},{"name":"IP_BAD_OPTION","features":[92]},{"name":"IP_BAD_REQ","features":[92]},{"name":"IP_BAD_ROUTE","features":[92]},{"name":"IP_BIND_ADAPTER","features":[92]},{"name":"IP_BUF_TOO_SMALL","features":[92]},{"name":"IP_DEMAND_DIAL_FILTER_INFO","features":[92]},{"name":"IP_DEMAND_DIAL_FILTER_INFO_V6","features":[92]},{"name":"IP_DEST_ADDR_UNREACHABLE","features":[92]},{"name":"IP_DEST_HOST_UNREACHABLE","features":[92]},{"name":"IP_DEST_NET_UNREACHABLE","features":[92]},{"name":"IP_DEST_NO_ROUTE","features":[92]},{"name":"IP_DEST_PORT_UNREACHABLE","features":[92]},{"name":"IP_DEST_PROHIBITED","features":[92]},{"name":"IP_DEST_PROT_UNREACHABLE","features":[92]},{"name":"IP_DEST_SCOPE_MISMATCH","features":[92]},{"name":"IP_DEST_UNREACHABLE","features":[92]},{"name":"IP_DEVICE_DOES_NOT_EXIST","features":[92]},{"name":"IP_DUPLICATE_ADDRESS","features":[92]},{"name":"IP_DUPLICATE_IPADD","features":[92]},{"name":"IP_EXPORT_INCLUDED","features":[92]},{"name":"IP_FILTER_ENABLE_INFO","features":[92]},{"name":"IP_FILTER_ENABLE_INFO_V6","features":[92]},{"name":"IP_FLAG_DF","features":[92]},{"name":"IP_FLAG_REVERSE","features":[92]},{"name":"IP_FORWARDNUMBER","features":[92]},{"name":"IP_FORWARDROW","features":[92]},{"name":"IP_FORWARDTABLE","features":[92]},{"name":"IP_GENERAL_FAILURE","features":[92]},{"name":"IP_GENERAL_INFO_BASE","features":[92]},{"name":"IP_GLOBAL_INFO","features":[92]},{"name":"IP_HOP_LIMIT_EXCEEDED","features":[92]},{"name":"IP_HW_ERROR","features":[92]},{"name":"IP_ICMP_ERROR","features":[92]},{"name":"IP_IFFILTER_INFO","features":[92]},{"name":"IP_IFFILTER_INFO_V6","features":[92]},{"name":"IP_INTERFACE_INFO","features":[92]},{"name":"IP_INTERFACE_METRIC_CHANGE","features":[92]},{"name":"IP_INTERFACE_NAME_INFO_W2KSP1","features":[92]},{"name":"IP_INTERFACE_STATUS_INFO","features":[92]},{"name":"IP_INTERFACE_WOL_CAPABILITY_CHANGE","features":[92]},{"name":"IP_IN_FILTER_INFO","features":[92]},{"name":"IP_IN_FILTER_INFO_V6","features":[92]},{"name":"IP_IPINIP_CFG_INFO","features":[92]},{"name":"IP_MCAST_BOUNDARY_INFO","features":[92]},{"name":"IP_MCAST_COUNTER_INFO","features":[92]},{"name":"IP_MCAST_HEARBEAT_INFO","features":[92]},{"name":"IP_MCAST_LIMIT_INFO","features":[92]},{"name":"IP_MEDIA_CONNECT","features":[92]},{"name":"IP_MEDIA_DISCONNECT","features":[92]},{"name":"IP_MTU_CHANGE","features":[92]},{"name":"IP_NEGOTIATING_IPSEC","features":[92]},{"name":"IP_NETROW","features":[92]},{"name":"IP_NETTABLE","features":[92]},{"name":"IP_NO_RESOURCES","features":[92]},{"name":"IP_OPTION_INFORMATION","features":[92]},{"name":"IP_OPTION_INFORMATION32","features":[92]},{"name":"IP_OPTION_TOO_BIG","features":[92]},{"name":"IP_OUT_FILTER_INFO","features":[92]},{"name":"IP_OUT_FILTER_INFO_V6","features":[92]},{"name":"IP_PACKET_TOO_BIG","features":[92]},{"name":"IP_PARAMETER_PROBLEM","features":[92]},{"name":"IP_PARAM_PROBLEM","features":[92]},{"name":"IP_PENDING","features":[92]},{"name":"IP_PER_ADAPTER_INFO_W2KSP1","features":[92]},{"name":"IP_PROT_PRIORITY_INFO","features":[92]},{"name":"IP_PROT_PRIORITY_INFO_EX","features":[92]},{"name":"IP_REASSEMBLY_TIME_EXCEEDED","features":[92]},{"name":"IP_RECONFIG_SECFLTR","features":[92]},{"name":"IP_REQ_TIMED_OUT","features":[92]},{"name":"IP_ROUTER_DISC_INFO","features":[92]},{"name":"IP_ROUTER_MANAGER_VERSION","features":[92]},{"name":"IP_ROUTE_INFO","features":[92]},{"name":"IP_SOURCE_QUENCH","features":[92]},{"name":"IP_SPEC_MTU_CHANGE","features":[92]},{"name":"IP_STATS","features":[92]},{"name":"IP_STATUS_BASE","features":[92]},{"name":"IP_SUCCESS","features":[92]},{"name":"IP_TIME_EXCEEDED","features":[92]},{"name":"IP_TTL_EXPIRED_REASSEM","features":[92]},{"name":"IP_TTL_EXPIRED_TRANSIT","features":[92]},{"name":"IP_UNBIND_ADAPTER","features":[92]},{"name":"IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[92]},{"name":"IP_UNLOAD","features":[92]},{"name":"IP_UNRECOGNIZED_NEXT_HEADER","features":[92]},{"name":"Icmp6CreateFile","features":[3,92]},{"name":"Icmp6ParseReplies","features":[92]},{"name":"Icmp6SendEcho2","features":[3,92,17,8]},{"name":"IcmpCloseHandle","features":[3,92]},{"name":"IcmpCreateFile","features":[3,92]},{"name":"IcmpParseReplies","features":[92]},{"name":"IcmpSendEcho","features":[3,92]},{"name":"IcmpSendEcho2","features":[3,92,8]},{"name":"IcmpSendEcho2Ex","features":[3,92,8]},{"name":"InitializeIpForwardEntry","features":[3,92,18,17]},{"name":"InitializeIpInterfaceEntry","features":[3,92,18,17]},{"name":"InitializeUnicastIpAddressEntry","features":[3,92,18,17]},{"name":"IpReleaseAddress","features":[92]},{"name":"IpRenewAddress","features":[92]},{"name":"LB_DST_ADDR_USE_DSTADDR_FLAG","features":[92]},{"name":"LB_DST_ADDR_USE_SRCADDR_FLAG","features":[92]},{"name":"LB_DST_MASK_LATE_FLAG","features":[92]},{"name":"LB_SRC_ADDR_USE_DSTADDR_FLAG","features":[92]},{"name":"LB_SRC_ADDR_USE_SRCADDR_FLAG","features":[92]},{"name":"LB_SRC_MASK_LATE_FLAG","features":[92]},{"name":"LookupPersistentTcpPortReservation","features":[92]},{"name":"LookupPersistentUdpPortReservation","features":[92]},{"name":"MAXLEN_IFDESCR","features":[92]},{"name":"MAXLEN_PHYSADDR","features":[92]},{"name":"MAX_ADAPTER_ADDRESS_LENGTH","features":[92]},{"name":"MAX_ADAPTER_DESCRIPTION_LENGTH","features":[92]},{"name":"MAX_ADAPTER_NAME","features":[92]},{"name":"MAX_ADAPTER_NAME_LENGTH","features":[92]},{"name":"MAX_DHCPV6_DUID_LENGTH","features":[92]},{"name":"MAX_DNS_SUFFIX_STRING_LENGTH","features":[92]},{"name":"MAX_DOMAIN_NAME_LEN","features":[92]},{"name":"MAX_HOSTNAME_LEN","features":[92]},{"name":"MAX_IF_TYPE","features":[92]},{"name":"MAX_INTERFACE_NAME_LEN","features":[92]},{"name":"MAX_IP_STATUS","features":[92]},{"name":"MAX_MIB_OFFSET","features":[92]},{"name":"MAX_OPT_SIZE","features":[92]},{"name":"MAX_SCOPE_ID_LEN","features":[92]},{"name":"MAX_SCOPE_NAME_LEN","features":[92]},{"name":"MCAST_BOUNDARY","features":[92]},{"name":"MCAST_GLOBAL","features":[92]},{"name":"MCAST_IF_ENTRY","features":[92]},{"name":"MCAST_MFE","features":[92]},{"name":"MCAST_MFE_STATS","features":[92]},{"name":"MCAST_MFE_STATS_EX","features":[92]},{"name":"MCAST_SCOPE","features":[92]},{"name":"MIBICMPINFO","features":[92]},{"name":"MIBICMPSTATS","features":[92]},{"name":"MIBICMPSTATS_EX_XPSP1","features":[92]},{"name":"MIB_ANYCASTIPADDRESS_ROW","features":[92,18,17]},{"name":"MIB_ANYCASTIPADDRESS_TABLE","features":[92,18,17]},{"name":"MIB_BEST_IF","features":[92]},{"name":"MIB_BOUNDARYROW","features":[92]},{"name":"MIB_ICMP","features":[92]},{"name":"MIB_ICMP_EX_XPSP1","features":[92]},{"name":"MIB_IFNUMBER","features":[92]},{"name":"MIB_IFROW","features":[92]},{"name":"MIB_IFSTACK_ROW","features":[92]},{"name":"MIB_IFSTACK_TABLE","features":[92]},{"name":"MIB_IFSTATUS","features":[3,92]},{"name":"MIB_IFTABLE","features":[92]},{"name":"MIB_IF_ADMIN_STATUS_DOWN","features":[92]},{"name":"MIB_IF_ADMIN_STATUS_TESTING","features":[92]},{"name":"MIB_IF_ADMIN_STATUS_UP","features":[92]},{"name":"MIB_IF_ENTRY_LEVEL","features":[92]},{"name":"MIB_IF_ROW2","features":[92,18]},{"name":"MIB_IF_TABLE2","features":[92,18]},{"name":"MIB_IF_TABLE_LEVEL","features":[92]},{"name":"MIB_IF_TYPE_ETHERNET","features":[92]},{"name":"MIB_IF_TYPE_FDDI","features":[92]},{"name":"MIB_IF_TYPE_LOOPBACK","features":[92]},{"name":"MIB_IF_TYPE_OTHER","features":[92]},{"name":"MIB_IF_TYPE_PPP","features":[92]},{"name":"MIB_IF_TYPE_SLIP","features":[92]},{"name":"MIB_IF_TYPE_TOKENRING","features":[92]},{"name":"MIB_INVALID_TEREDO_PORT_NUMBER","features":[92]},{"name":"MIB_INVERTEDIFSTACK_ROW","features":[92]},{"name":"MIB_INVERTEDIFSTACK_TABLE","features":[92]},{"name":"MIB_IPADDRROW_W2K","features":[92]},{"name":"MIB_IPADDRROW_XP","features":[92]},{"name":"MIB_IPADDRTABLE","features":[92]},{"name":"MIB_IPADDR_DELETED","features":[92]},{"name":"MIB_IPADDR_DISCONNECTED","features":[92]},{"name":"MIB_IPADDR_DNS_ELIGIBLE","features":[92]},{"name":"MIB_IPADDR_DYNAMIC","features":[92]},{"name":"MIB_IPADDR_PRIMARY","features":[92]},{"name":"MIB_IPADDR_TRANSIENT","features":[92]},{"name":"MIB_IPDESTROW","features":[92,17]},{"name":"MIB_IPDESTTABLE","features":[92,17]},{"name":"MIB_IPFORWARDNUMBER","features":[92]},{"name":"MIB_IPFORWARDROW","features":[92,17]},{"name":"MIB_IPFORWARDTABLE","features":[92,17]},{"name":"MIB_IPFORWARD_ROW2","features":[3,92,18,17]},{"name":"MIB_IPFORWARD_TABLE2","features":[3,92,18,17]},{"name":"MIB_IPFORWARD_TYPE","features":[92]},{"name":"MIB_IPINTERFACE_ROW","features":[3,92,18,17]},{"name":"MIB_IPINTERFACE_TABLE","features":[3,92,18,17]},{"name":"MIB_IPMCAST_BOUNDARY","features":[92]},{"name":"MIB_IPMCAST_BOUNDARY_TABLE","features":[92]},{"name":"MIB_IPMCAST_GLOBAL","features":[92]},{"name":"MIB_IPMCAST_IF_ENTRY","features":[92]},{"name":"MIB_IPMCAST_IF_TABLE","features":[92]},{"name":"MIB_IPMCAST_MFE","features":[92]},{"name":"MIB_IPMCAST_MFE_STATS","features":[92]},{"name":"MIB_IPMCAST_MFE_STATS_EX_XP","features":[92]},{"name":"MIB_IPMCAST_OIF_STATS_LH","features":[92]},{"name":"MIB_IPMCAST_OIF_STATS_W2K","features":[92]},{"name":"MIB_IPMCAST_OIF_W2K","features":[92]},{"name":"MIB_IPMCAST_OIF_XP","features":[92]},{"name":"MIB_IPMCAST_SCOPE","features":[92]},{"name":"MIB_IPNETROW_LH","features":[92]},{"name":"MIB_IPNETROW_W2K","features":[92]},{"name":"MIB_IPNETTABLE","features":[92]},{"name":"MIB_IPNET_ROW2","features":[92,18,17]},{"name":"MIB_IPNET_TABLE2","features":[92,18,17]},{"name":"MIB_IPNET_TYPE","features":[92]},{"name":"MIB_IPNET_TYPE_DYNAMIC","features":[92]},{"name":"MIB_IPNET_TYPE_INVALID","features":[92]},{"name":"MIB_IPNET_TYPE_OTHER","features":[92]},{"name":"MIB_IPNET_TYPE_STATIC","features":[92]},{"name":"MIB_IPPATH_ROW","features":[3,92,18,17]},{"name":"MIB_IPPATH_TABLE","features":[3,92,18,17]},{"name":"MIB_IPROUTE_METRIC_UNUSED","features":[92]},{"name":"MIB_IPROUTE_TYPE_DIRECT","features":[92]},{"name":"MIB_IPROUTE_TYPE_INDIRECT","features":[92]},{"name":"MIB_IPROUTE_TYPE_INVALID","features":[92]},{"name":"MIB_IPROUTE_TYPE_OTHER","features":[92]},{"name":"MIB_IPSTATS_FORWARDING","features":[92]},{"name":"MIB_IPSTATS_LH","features":[92]},{"name":"MIB_IPSTATS_W2K","features":[92]},{"name":"MIB_IP_FORWARDING","features":[92]},{"name":"MIB_IP_NETWORK_CONNECTION_BANDWIDTH_ESTIMATES","features":[3,92,17]},{"name":"MIB_IP_NOT_FORWARDING","features":[92]},{"name":"MIB_MCAST_LIMIT_ROW","features":[92]},{"name":"MIB_MFE_STATS_TABLE","features":[92]},{"name":"MIB_MFE_STATS_TABLE_EX_XP","features":[92]},{"name":"MIB_MFE_TABLE","features":[92]},{"name":"MIB_MULTICASTIPADDRESS_ROW","features":[92,18,17]},{"name":"MIB_MULTICASTIPADDRESS_TABLE","features":[92,18,17]},{"name":"MIB_NOTIFICATION_TYPE","features":[92]},{"name":"MIB_OPAQUE_INFO","features":[92]},{"name":"MIB_OPAQUE_QUERY","features":[92]},{"name":"MIB_PROXYARP","features":[92]},{"name":"MIB_ROUTESTATE","features":[3,92]},{"name":"MIB_TCP6ROW","features":[92,17]},{"name":"MIB_TCP6ROW2","features":[92,17]},{"name":"MIB_TCP6ROW_OWNER_MODULE","features":[92]},{"name":"MIB_TCP6ROW_OWNER_PID","features":[92]},{"name":"MIB_TCP6TABLE","features":[92,17]},{"name":"MIB_TCP6TABLE2","features":[92,17]},{"name":"MIB_TCP6TABLE_OWNER_MODULE","features":[92]},{"name":"MIB_TCP6TABLE_OWNER_PID","features":[92]},{"name":"MIB_TCPROW2","features":[92]},{"name":"MIB_TCPROW_LH","features":[92]},{"name":"MIB_TCPROW_OWNER_MODULE","features":[92]},{"name":"MIB_TCPROW_OWNER_PID","features":[92]},{"name":"MIB_TCPROW_W2K","features":[92]},{"name":"MIB_TCPSTATS2","features":[92]},{"name":"MIB_TCPSTATS_LH","features":[92]},{"name":"MIB_TCPSTATS_W2K","features":[92]},{"name":"MIB_TCPTABLE","features":[92]},{"name":"MIB_TCPTABLE2","features":[92]},{"name":"MIB_TCPTABLE_OWNER_MODULE","features":[92]},{"name":"MIB_TCPTABLE_OWNER_PID","features":[92]},{"name":"MIB_TCP_RTO_CONSTANT","features":[92]},{"name":"MIB_TCP_RTO_OTHER","features":[92]},{"name":"MIB_TCP_RTO_RSRE","features":[92]},{"name":"MIB_TCP_RTO_VANJ","features":[92]},{"name":"MIB_TCP_STATE","features":[92]},{"name":"MIB_TCP_STATE_CLOSED","features":[92]},{"name":"MIB_TCP_STATE_CLOSE_WAIT","features":[92]},{"name":"MIB_TCP_STATE_CLOSING","features":[92]},{"name":"MIB_TCP_STATE_DELETE_TCB","features":[92]},{"name":"MIB_TCP_STATE_ESTAB","features":[92]},{"name":"MIB_TCP_STATE_FIN_WAIT1","features":[92]},{"name":"MIB_TCP_STATE_FIN_WAIT2","features":[92]},{"name":"MIB_TCP_STATE_LAST_ACK","features":[92]},{"name":"MIB_TCP_STATE_LISTEN","features":[92]},{"name":"MIB_TCP_STATE_RESERVED","features":[92]},{"name":"MIB_TCP_STATE_SYN_RCVD","features":[92]},{"name":"MIB_TCP_STATE_SYN_SENT","features":[92]},{"name":"MIB_TCP_STATE_TIME_WAIT","features":[92]},{"name":"MIB_UDP6ROW","features":[92,17]},{"name":"MIB_UDP6ROW2","features":[92]},{"name":"MIB_UDP6ROW_OWNER_MODULE","features":[92]},{"name":"MIB_UDP6ROW_OWNER_PID","features":[92]},{"name":"MIB_UDP6TABLE","features":[92,17]},{"name":"MIB_UDP6TABLE2","features":[92]},{"name":"MIB_UDP6TABLE_OWNER_MODULE","features":[92]},{"name":"MIB_UDP6TABLE_OWNER_PID","features":[92]},{"name":"MIB_UDPROW","features":[92]},{"name":"MIB_UDPROW2","features":[92]},{"name":"MIB_UDPROW_OWNER_MODULE","features":[92]},{"name":"MIB_UDPROW_OWNER_PID","features":[92]},{"name":"MIB_UDPSTATS","features":[92]},{"name":"MIB_UDPSTATS2","features":[92]},{"name":"MIB_UDPTABLE","features":[92]},{"name":"MIB_UDPTABLE2","features":[92]},{"name":"MIB_UDPTABLE_OWNER_MODULE","features":[92]},{"name":"MIB_UDPTABLE_OWNER_PID","features":[92]},{"name":"MIB_UNICASTIPADDRESS_ROW","features":[3,92,18,17]},{"name":"MIB_UNICASTIPADDRESS_TABLE","features":[3,92,18,17]},{"name":"MIB_USE_CURRENT_FORWARDING","features":[92]},{"name":"MIB_USE_CURRENT_TTL","features":[92]},{"name":"MIN_IF_TYPE","features":[92]},{"name":"MIXED_NODETYPE","features":[92]},{"name":"MibAddInstance","features":[92]},{"name":"MibDeleteInstance","features":[92]},{"name":"MibIfEntryNormal","features":[92]},{"name":"MibIfEntryNormalWithoutStatistics","features":[92]},{"name":"MibIfTableNormal","features":[92]},{"name":"MibIfTableNormalWithoutStatistics","features":[92]},{"name":"MibIfTableRaw","features":[92]},{"name":"MibInitialNotification","features":[92]},{"name":"MibParameterNotification","features":[92]},{"name":"ND_NEIGHBOR_ADVERT","features":[92]},{"name":"ND_NEIGHBOR_SOLICIT","features":[92]},{"name":"ND_REDIRECT","features":[92]},{"name":"ND_ROUTER_ADVERT","features":[92]},{"name":"ND_ROUTER_SOLICIT","features":[92]},{"name":"NET_ADDRESS_DNS_NAME","features":[92]},{"name":"NET_ADDRESS_FORMAT","features":[92]},{"name":"NET_ADDRESS_FORMAT_UNSPECIFIED","features":[92]},{"name":"NET_ADDRESS_INFO","features":[92,17]},{"name":"NET_ADDRESS_IPV4","features":[92]},{"name":"NET_ADDRESS_IPV6","features":[92]},{"name":"NET_STRING_IPV4_ADDRESS","features":[92]},{"name":"NET_STRING_IPV4_NETWORK","features":[92]},{"name":"NET_STRING_IPV4_SERVICE","features":[92]},{"name":"NET_STRING_IPV6_ADDRESS","features":[92]},{"name":"NET_STRING_IPV6_ADDRESS_NO_SCOPE","features":[92]},{"name":"NET_STRING_IPV6_NETWORK","features":[92]},{"name":"NET_STRING_IPV6_SERVICE","features":[92]},{"name":"NET_STRING_IPV6_SERVICE_NO_SCOPE","features":[92]},{"name":"NET_STRING_NAMED_ADDRESS","features":[92]},{"name":"NET_STRING_NAMED_SERVICE","features":[92]},{"name":"NUMBER_OF_EXPORTED_VARIABLES","features":[92]},{"name":"NhpAllocateAndGetInterfaceInfoFromStack","features":[3,92]},{"name":"NotifyAddrChange","features":[3,92,8]},{"name":"NotifyIfTimestampConfigChange","features":[92]},{"name":"NotifyIpInterfaceChange","features":[3,92,18,17]},{"name":"NotifyNetworkConnectivityHintChange","features":[3,92,17]},{"name":"NotifyRouteChange","features":[3,92,8]},{"name":"NotifyRouteChange2","features":[3,92,18,17]},{"name":"NotifyStableUnicastIpAddressTable","features":[3,92,18,17]},{"name":"NotifyTeredoPortChange","features":[3,92]},{"name":"NotifyUnicastIpAddressChange","features":[3,92,18,17]},{"name":"PEER_TO_PEER_NODETYPE","features":[92]},{"name":"PFADDRESSTYPE","features":[92]},{"name":"PFERROR_BUFFER_TOO_SMALL","features":[92]},{"name":"PFERROR_NO_FILTERS_GIVEN","features":[92]},{"name":"PFERROR_NO_PF_INTERFACE","features":[92]},{"name":"PFFORWARD_ACTION","features":[92]},{"name":"PFFRAMETYPE","features":[92]},{"name":"PFFT_FILTER","features":[92]},{"name":"PFFT_FRAG","features":[92]},{"name":"PFFT_SPOOF","features":[92]},{"name":"PFLOGFRAME","features":[92]},{"name":"PF_ACTION_DROP","features":[92]},{"name":"PF_ACTION_FORWARD","features":[92]},{"name":"PF_FILTER_DESCRIPTOR","features":[92]},{"name":"PF_FILTER_STATS","features":[92]},{"name":"PF_INTERFACE_STATS","features":[92]},{"name":"PF_IPV4","features":[92]},{"name":"PF_IPV6","features":[92]},{"name":"PF_LATEBIND_INFO","features":[92]},{"name":"PINTERFACE_TIMESTAMP_CONFIG_CHANGE_CALLBACK","features":[92]},{"name":"PIPFORWARD_CHANGE_CALLBACK","features":[3,92,18,17]},{"name":"PIPINTERFACE_CHANGE_CALLBACK","features":[3,92,18,17]},{"name":"PNETWORK_CONNECTIVITY_HINT_CHANGE_CALLBACK","features":[3,92,17]},{"name":"PROXY_ARP","features":[92]},{"name":"PSTABLE_UNICAST_IPADDRESS_TABLE_CALLBACK","features":[3,92,18,17]},{"name":"PTEREDO_PORT_CHANGE_CALLBACK","features":[92]},{"name":"PUNICAST_IPADDRESS_CHANGE_CALLBACK","features":[3,92,18,17]},{"name":"ParseNetworkString","features":[92,17]},{"name":"PfAddFiltersToInterface","features":[92]},{"name":"PfAddGlobalFilterToInterface","features":[92]},{"name":"PfBindInterfaceToIPAddress","features":[92]},{"name":"PfBindInterfaceToIndex","features":[92]},{"name":"PfCreateInterface","features":[3,92]},{"name":"PfDeleteInterface","features":[92]},{"name":"PfDeleteLog","features":[92]},{"name":"PfGetInterfaceStatistics","features":[3,92]},{"name":"PfMakeLog","features":[3,92]},{"name":"PfRebindFilters","features":[92]},{"name":"PfRemoveFilterHandles","features":[92]},{"name":"PfRemoveFiltersFromInterface","features":[92]},{"name":"PfRemoveGlobalFilterFromInterface","features":[92]},{"name":"PfSetLogBuffer","features":[92]},{"name":"PfTestPacket","features":[92]},{"name":"PfUnBindInterface","features":[92]},{"name":"ROUTE_LONGER","features":[92]},{"name":"ROUTE_MATCHING","features":[92]},{"name":"ROUTE_SHORTER","features":[92]},{"name":"ROUTE_STATE","features":[92]},{"name":"RegisterInterfaceTimestampConfigChange","features":[92]},{"name":"ResolveIpNetEntry2","features":[3,92,18,17]},{"name":"ResolveNeighbor","features":[92,17]},{"name":"RestoreMediaSense","features":[3,92,8]},{"name":"SendARP","features":[92]},{"name":"SetCurrentThreadCompartmentId","features":[3,92]},{"name":"SetCurrentThreadCompartmentScope","features":[3,92]},{"name":"SetDnsSettings","features":[3,92]},{"name":"SetIfEntry","features":[92]},{"name":"SetInterfaceDnsSettings","features":[3,92]},{"name":"SetIpForwardEntry","features":[92,17]},{"name":"SetIpForwardEntry2","features":[3,92,18,17]},{"name":"SetIpInterfaceEntry","features":[3,92,18,17]},{"name":"SetIpNetEntry","features":[92]},{"name":"SetIpNetEntry2","features":[3,92,18,17]},{"name":"SetIpStatistics","features":[92]},{"name":"SetIpStatisticsEx","features":[92]},{"name":"SetIpTTL","features":[92]},{"name":"SetJobCompartmentId","features":[3,92]},{"name":"SetNetworkInformation","features":[3,92]},{"name":"SetPerTcp6ConnectionEStats","features":[92,17]},{"name":"SetPerTcpConnectionEStats","features":[92]},{"name":"SetSessionCompartmentId","features":[3,92]},{"name":"SetTcpEntry","features":[92]},{"name":"SetUnicastIpAddressEntry","features":[3,92,18,17]},{"name":"TCP6_STATS","features":[92]},{"name":"TCPIP_OWNER_MODULE_BASIC_INFO","features":[92]},{"name":"TCPIP_OWNER_MODULE_INFO_BASIC","features":[92]},{"name":"TCPIP_OWNER_MODULE_INFO_CLASS","features":[92]},{"name":"TCPIP_OWNING_MODULE_SIZE","features":[92]},{"name":"TCP_BOOLEAN_OPTIONAL","features":[92]},{"name":"TCP_CONNECTION_OFFLOAD_STATE","features":[92]},{"name":"TCP_ESTATS_BANDWIDTH_ROD_v0","features":[3,92]},{"name":"TCP_ESTATS_BANDWIDTH_RW_v0","features":[92]},{"name":"TCP_ESTATS_DATA_ROD_v0","features":[92]},{"name":"TCP_ESTATS_DATA_RW_v0","features":[3,92]},{"name":"TCP_ESTATS_FINE_RTT_ROD_v0","features":[92]},{"name":"TCP_ESTATS_FINE_RTT_RW_v0","features":[3,92]},{"name":"TCP_ESTATS_OBS_REC_ROD_v0","features":[92]},{"name":"TCP_ESTATS_OBS_REC_RW_v0","features":[3,92]},{"name":"TCP_ESTATS_PATH_ROD_v0","features":[92]},{"name":"TCP_ESTATS_PATH_RW_v0","features":[3,92]},{"name":"TCP_ESTATS_REC_ROD_v0","features":[92]},{"name":"TCP_ESTATS_REC_RW_v0","features":[3,92]},{"name":"TCP_ESTATS_SEND_BUFF_ROD_v0","features":[92]},{"name":"TCP_ESTATS_SEND_BUFF_RW_v0","features":[3,92]},{"name":"TCP_ESTATS_SND_CONG_ROD_v0","features":[92]},{"name":"TCP_ESTATS_SND_CONG_ROS_v0","features":[92]},{"name":"TCP_ESTATS_SND_CONG_RW_v0","features":[3,92]},{"name":"TCP_ESTATS_SYN_OPTS_ROS_v0","features":[3,92]},{"name":"TCP_ESTATS_TYPE","features":[92]},{"name":"TCP_RESERVE_PORT_RANGE","features":[92]},{"name":"TCP_ROW","features":[92]},{"name":"TCP_RTO_ALGORITHM","features":[92]},{"name":"TCP_SOFT_ERROR","features":[92]},{"name":"TCP_STATS","features":[92]},{"name":"TCP_TABLE","features":[92]},{"name":"TCP_TABLE_BASIC_ALL","features":[92]},{"name":"TCP_TABLE_BASIC_CONNECTIONS","features":[92]},{"name":"TCP_TABLE_BASIC_LISTENER","features":[92]},{"name":"TCP_TABLE_CLASS","features":[92]},{"name":"TCP_TABLE_OWNER_MODULE_ALL","features":[92]},{"name":"TCP_TABLE_OWNER_MODULE_CONNECTIONS","features":[92]},{"name":"TCP_TABLE_OWNER_MODULE_LISTENER","features":[92]},{"name":"TCP_TABLE_OWNER_PID_ALL","features":[92]},{"name":"TCP_TABLE_OWNER_PID_CONNECTIONS","features":[92]},{"name":"TCP_TABLE_OWNER_PID_LISTENER","features":[92]},{"name":"TcpBoolOptDisabled","features":[92]},{"name":"TcpBoolOptEnabled","features":[92]},{"name":"TcpBoolOptUnchanged","features":[92]},{"name":"TcpConnectionEstatsBandwidth","features":[92]},{"name":"TcpConnectionEstatsData","features":[92]},{"name":"TcpConnectionEstatsFineRtt","features":[92]},{"name":"TcpConnectionEstatsMaximum","features":[92]},{"name":"TcpConnectionEstatsObsRec","features":[92]},{"name":"TcpConnectionEstatsPath","features":[92]},{"name":"TcpConnectionEstatsRec","features":[92]},{"name":"TcpConnectionEstatsSendBuff","features":[92]},{"name":"TcpConnectionEstatsSndCong","features":[92]},{"name":"TcpConnectionEstatsSynOpts","features":[92]},{"name":"TcpConnectionOffloadStateInHost","features":[92]},{"name":"TcpConnectionOffloadStateMax","features":[92]},{"name":"TcpConnectionOffloadStateOffloaded","features":[92]},{"name":"TcpConnectionOffloadStateOffloading","features":[92]},{"name":"TcpConnectionOffloadStateUploading","features":[92]},{"name":"TcpErrorAboveAckWindow","features":[92]},{"name":"TcpErrorAboveDataWindow","features":[92]},{"name":"TcpErrorAboveTsWindow","features":[92]},{"name":"TcpErrorBelowAckWindow","features":[92]},{"name":"TcpErrorBelowDataWindow","features":[92]},{"name":"TcpErrorBelowTsWindow","features":[92]},{"name":"TcpErrorDataChecksumError","features":[92]},{"name":"TcpErrorDataLengthError","features":[92]},{"name":"TcpErrorMaxSoftError","features":[92]},{"name":"TcpErrorNone","features":[92]},{"name":"TcpRtoAlgorithmConstant","features":[92]},{"name":"TcpRtoAlgorithmOther","features":[92]},{"name":"TcpRtoAlgorithmRsre","features":[92]},{"name":"TcpRtoAlgorithmVanj","features":[92]},{"name":"UDP6_STATS","features":[92]},{"name":"UDP_ROW","features":[92]},{"name":"UDP_STATS","features":[92]},{"name":"UDP_TABLE","features":[92]},{"name":"UDP_TABLE_BASIC","features":[92]},{"name":"UDP_TABLE_CLASS","features":[92]},{"name":"UDP_TABLE_OWNER_MODULE","features":[92]},{"name":"UDP_TABLE_OWNER_PID","features":[92]},{"name":"UnenableRouter","features":[3,92,8]},{"name":"UnregisterInterfaceTimestampConfigChange","features":[92]},{"name":"if_indextoname","features":[92]},{"name":"if_nametoindex","features":[92]}],"450":[{"name":"IPNG_ADDRESS","features":[93]},{"name":"MCAST_API_CURRENT_VERSION","features":[93]},{"name":"MCAST_API_VERSION_0","features":[93]},{"name":"MCAST_API_VERSION_1","features":[93]},{"name":"MCAST_CLIENT_ID_LEN","features":[93]},{"name":"MCAST_CLIENT_UID","features":[93]},{"name":"MCAST_LEASE_REQUEST","features":[93]},{"name":"MCAST_LEASE_RESPONSE","features":[93]},{"name":"MCAST_SCOPE_CTX","features":[93]},{"name":"MCAST_SCOPE_ENTRY","features":[3,93]},{"name":"McastApiCleanup","features":[93]},{"name":"McastApiStartup","features":[93]},{"name":"McastEnumerateScopes","features":[3,93]},{"name":"McastGenUID","features":[93]},{"name":"McastReleaseAddress","features":[93]},{"name":"McastRenewAddress","features":[93]},{"name":"McastRequestAddress","features":[93]}],"451":[{"name":"AUTHENTICATE","features":[18]},{"name":"BSSID_INFO","features":[18]},{"name":"CLOCK_NETWORK_DERIVED","features":[18]},{"name":"CLOCK_PRECISION","features":[18]},{"name":"DD_NDIS_DEVICE_NAME","features":[18]},{"name":"DOT11_RSN_KCK_LENGTH","features":[18]},{"name":"DOT11_RSN_KEK_LENGTH","features":[18]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[18]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[18]},{"name":"ENCRYPT","features":[18]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[18]},{"name":"GEN_GET_NETCARD_TIME","features":[18]},{"name":"GEN_GET_TIME_CAPS","features":[18]},{"name":"GUID_DEVINTERFACE_NET","features":[18]},{"name":"GUID_DEVINTERFACE_NETUIO","features":[18]},{"name":"GUID_NDIS_802_11_ADD_KEY","features":[18]},{"name":"GUID_NDIS_802_11_ADD_WEP","features":[18]},{"name":"GUID_NDIS_802_11_ASSOCIATION_INFORMATION","features":[18]},{"name":"GUID_NDIS_802_11_AUTHENTICATION_MODE","features":[18]},{"name":"GUID_NDIS_802_11_BSSID","features":[18]},{"name":"GUID_NDIS_802_11_BSSID_LIST","features":[18]},{"name":"GUID_NDIS_802_11_BSSID_LIST_SCAN","features":[18]},{"name":"GUID_NDIS_802_11_CONFIGURATION","features":[18]},{"name":"GUID_NDIS_802_11_DESIRED_RATES","features":[18]},{"name":"GUID_NDIS_802_11_DISASSOCIATE","features":[18]},{"name":"GUID_NDIS_802_11_FRAGMENTATION_THRESHOLD","features":[18]},{"name":"GUID_NDIS_802_11_INFRASTRUCTURE_MODE","features":[18]},{"name":"GUID_NDIS_802_11_MEDIA_STREAM_MODE","features":[18]},{"name":"GUID_NDIS_802_11_NETWORK_TYPES_SUPPORTED","features":[18]},{"name":"GUID_NDIS_802_11_NETWORK_TYPE_IN_USE","features":[18]},{"name":"GUID_NDIS_802_11_NUMBER_OF_ANTENNAS","features":[18]},{"name":"GUID_NDIS_802_11_POWER_MODE","features":[18]},{"name":"GUID_NDIS_802_11_PRIVACY_FILTER","features":[18]},{"name":"GUID_NDIS_802_11_RELOAD_DEFAULTS","features":[18]},{"name":"GUID_NDIS_802_11_REMOVE_KEY","features":[18]},{"name":"GUID_NDIS_802_11_REMOVE_WEP","features":[18]},{"name":"GUID_NDIS_802_11_RSSI","features":[18]},{"name":"GUID_NDIS_802_11_RSSI_TRIGGER","features":[18]},{"name":"GUID_NDIS_802_11_RTS_THRESHOLD","features":[18]},{"name":"GUID_NDIS_802_11_RX_ANTENNA_SELECTED","features":[18]},{"name":"GUID_NDIS_802_11_SSID","features":[18]},{"name":"GUID_NDIS_802_11_STATISTICS","features":[18]},{"name":"GUID_NDIS_802_11_SUPPORTED_RATES","features":[18]},{"name":"GUID_NDIS_802_11_TEST","features":[18]},{"name":"GUID_NDIS_802_11_TX_ANTENNA_SELECTED","features":[18]},{"name":"GUID_NDIS_802_11_TX_POWER_LEVEL","features":[18]},{"name":"GUID_NDIS_802_11_WEP_STATUS","features":[18]},{"name":"GUID_NDIS_802_3_CURRENT_ADDRESS","features":[18]},{"name":"GUID_NDIS_802_3_MAC_OPTIONS","features":[18]},{"name":"GUID_NDIS_802_3_MAXIMUM_LIST_SIZE","features":[18]},{"name":"GUID_NDIS_802_3_MULTICAST_LIST","features":[18]},{"name":"GUID_NDIS_802_3_PERMANENT_ADDRESS","features":[18]},{"name":"GUID_NDIS_802_3_RCV_ERROR_ALIGNMENT","features":[18]},{"name":"GUID_NDIS_802_3_XMIT_MORE_COLLISIONS","features":[18]},{"name":"GUID_NDIS_802_3_XMIT_ONE_COLLISION","features":[18]},{"name":"GUID_NDIS_802_5_CURRENT_ADDRESS","features":[18]},{"name":"GUID_NDIS_802_5_CURRENT_FUNCTIONAL","features":[18]},{"name":"GUID_NDIS_802_5_CURRENT_GROUP","features":[18]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATE","features":[18]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATUS","features":[18]},{"name":"GUID_NDIS_802_5_LAST_OPEN_STATUS","features":[18]},{"name":"GUID_NDIS_802_5_LINE_ERRORS","features":[18]},{"name":"GUID_NDIS_802_5_LOST_FRAMES","features":[18]},{"name":"GUID_NDIS_802_5_PERMANENT_ADDRESS","features":[18]},{"name":"GUID_NDIS_ENUMERATE_ADAPTER","features":[18]},{"name":"GUID_NDIS_ENUMERATE_ADAPTERS_EX","features":[18]},{"name":"GUID_NDIS_ENUMERATE_VC","features":[18]},{"name":"GUID_NDIS_GEN_CO_DRIVER_VERSION","features":[18]},{"name":"GUID_NDIS_GEN_CO_HARDWARE_STATUS","features":[18]},{"name":"GUID_NDIS_GEN_CO_LINK_SPEED","features":[18]},{"name":"GUID_NDIS_GEN_CO_MAC_OPTIONS","features":[18]},{"name":"GUID_NDIS_GEN_CO_MEDIA_CONNECT_STATUS","features":[18]},{"name":"GUID_NDIS_GEN_CO_MEDIA_IN_USE","features":[18]},{"name":"GUID_NDIS_GEN_CO_MEDIA_SUPPORTED","features":[18]},{"name":"GUID_NDIS_GEN_CO_MINIMUM_LINK_SPEED","features":[18]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_ERROR","features":[18]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_NO_BUFFER","features":[18]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_OK","features":[18]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DESCRIPTION","features":[18]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DRIVER_VERSION","features":[18]},{"name":"GUID_NDIS_GEN_CO_VENDOR_ID","features":[18]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_ERROR","features":[18]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_OK","features":[18]},{"name":"GUID_NDIS_GEN_CURRENT_LOOKAHEAD","features":[18]},{"name":"GUID_NDIS_GEN_CURRENT_PACKET_FILTER","features":[18]},{"name":"GUID_NDIS_GEN_DRIVER_VERSION","features":[18]},{"name":"GUID_NDIS_GEN_ENUMERATE_PORTS","features":[18]},{"name":"GUID_NDIS_GEN_HARDWARE_STATUS","features":[18]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION","features":[18]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION_PARAMETERS","features":[18]},{"name":"GUID_NDIS_GEN_LINK_PARAMETERS","features":[18]},{"name":"GUID_NDIS_GEN_LINK_SPEED","features":[18]},{"name":"GUID_NDIS_GEN_LINK_STATE","features":[18]},{"name":"GUID_NDIS_GEN_MAC_OPTIONS","features":[18]},{"name":"GUID_NDIS_GEN_MAXIMUM_FRAME_SIZE","features":[18]},{"name":"GUID_NDIS_GEN_MAXIMUM_LOOKAHEAD","features":[18]},{"name":"GUID_NDIS_GEN_MAXIMUM_SEND_PACKETS","features":[18]},{"name":"GUID_NDIS_GEN_MAXIMUM_TOTAL_SIZE","features":[18]},{"name":"GUID_NDIS_GEN_MEDIA_CONNECT_STATUS","features":[18]},{"name":"GUID_NDIS_GEN_MEDIA_IN_USE","features":[18]},{"name":"GUID_NDIS_GEN_MEDIA_SUPPORTED","features":[18]},{"name":"GUID_NDIS_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[18]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM","features":[18]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM_EX","features":[18]},{"name":"GUID_NDIS_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[18]},{"name":"GUID_NDIS_GEN_PORT_STATE","features":[18]},{"name":"GUID_NDIS_GEN_RCV_ERROR","features":[18]},{"name":"GUID_NDIS_GEN_RCV_NO_BUFFER","features":[18]},{"name":"GUID_NDIS_GEN_RCV_OK","features":[18]},{"name":"GUID_NDIS_GEN_RECEIVE_BLOCK_SIZE","features":[18]},{"name":"GUID_NDIS_GEN_RECEIVE_BUFFER_SPACE","features":[18]},{"name":"GUID_NDIS_GEN_STATISTICS","features":[18]},{"name":"GUID_NDIS_GEN_TRANSMIT_BLOCK_SIZE","features":[18]},{"name":"GUID_NDIS_GEN_TRANSMIT_BUFFER_SPACE","features":[18]},{"name":"GUID_NDIS_GEN_VENDOR_DESCRIPTION","features":[18]},{"name":"GUID_NDIS_GEN_VENDOR_DRIVER_VERSION","features":[18]},{"name":"GUID_NDIS_GEN_VENDOR_ID","features":[18]},{"name":"GUID_NDIS_GEN_VLAN_ID","features":[18]},{"name":"GUID_NDIS_GEN_XMIT_ERROR","features":[18]},{"name":"GUID_NDIS_GEN_XMIT_OK","features":[18]},{"name":"GUID_NDIS_HD_SPLIT_CURRENT_CONFIG","features":[18]},{"name":"GUID_NDIS_HD_SPLIT_PARAMETERS","features":[18]},{"name":"GUID_NDIS_LAN_CLASS","features":[18]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_NDK_STATE","features":[18]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_ARRIVAL","features":[18]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_REMOVAL","features":[18]},{"name":"GUID_NDIS_NOTIFY_BIND","features":[18]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF","features":[18]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF_EX","features":[18]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON","features":[18]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON_EX","features":[18]},{"name":"GUID_NDIS_NOTIFY_FILTER_ARRIVAL","features":[18]},{"name":"GUID_NDIS_NOTIFY_FILTER_REMOVAL","features":[18]},{"name":"GUID_NDIS_NOTIFY_UNBIND","features":[18]},{"name":"GUID_NDIS_NOTIFY_VC_ARRIVAL","features":[18]},{"name":"GUID_NDIS_NOTIFY_VC_REMOVAL","features":[18]},{"name":"GUID_NDIS_PM_ACTIVE_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_PM_ADMIN_CONFIG","features":[18]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_FILTERS","features":[18]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_QUEUES","features":[18]},{"name":"GUID_NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[18]},{"name":"GUID_NDIS_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_RECEIVE_FILTER_PARAMETERS","features":[18]},{"name":"GUID_NDIS_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[18]},{"name":"GUID_NDIS_RECEIVE_SCALE_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_RSS_ENABLED","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_COMPLETION","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_START","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_COMPLETION","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_START","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_DISASSOCIATION","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_LINK_QUALITY","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_MPDU_MAX_LENGTH_CHANGED","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_PHY_STATE_CHANGED","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_PMKID_CANDIDATE_LIST","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_COMPLETION","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_START","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_SCAN_CONFIRM","features":[18]},{"name":"GUID_NDIS_STATUS_DOT11_TKIPMIC_FAILURE","features":[18]},{"name":"GUID_NDIS_STATUS_EXTERNAL_CONNECTIVITY_CHANGE","features":[18]},{"name":"GUID_NDIS_STATUS_HD_SPLIT_CURRENT_CONFIG","features":[18]},{"name":"GUID_NDIS_STATUS_LINK_SPEED_CHANGE","features":[18]},{"name":"GUID_NDIS_STATUS_LINK_STATE","features":[18]},{"name":"GUID_NDIS_STATUS_MEDIA_CONNECT","features":[18]},{"name":"GUID_NDIS_STATUS_MEDIA_DISCONNECT","features":[18]},{"name":"GUID_NDIS_STATUS_MEDIA_SPECIFIC_INDICATION","features":[18]},{"name":"GUID_NDIS_STATUS_NETWORK_CHANGE","features":[18]},{"name":"GUID_NDIS_STATUS_OPER_STATUS","features":[18]},{"name":"GUID_NDIS_STATUS_PACKET_FILTER","features":[18]},{"name":"GUID_NDIS_STATUS_PM_OFFLOAD_REJECTED","features":[18]},{"name":"GUID_NDIS_STATUS_PM_WAKE_REASON","features":[18]},{"name":"GUID_NDIS_STATUS_PM_WOL_PATTERN_REJECTED","features":[18]},{"name":"GUID_NDIS_STATUS_PORT_STATE","features":[18]},{"name":"GUID_NDIS_STATUS_RESET_END","features":[18]},{"name":"GUID_NDIS_STATUS_RESET_START","features":[18]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_CURRENT_CONFIG","features":[18]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_HARDWARE_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[18]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_SWITCH_MICROSOFT_VENDOR_ID","features":[18]},{"name":"GUID_NDIS_SWITCH_PORT_PROPERTY_PROFILE_ID_DEFAULT_EXTERNAL_NIC","features":[18]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[18]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_TCP_OFFLOAD_CURRENT_CONFIG","features":[18]},{"name":"GUID_NDIS_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[18]},{"name":"GUID_NDIS_TCP_OFFLOAD_PARAMETERS","features":[18]},{"name":"GUID_NDIS_TCP_RSC_STATISTICS","features":[18]},{"name":"GUID_NDIS_WAKE_ON_MAGIC_PACKET_ONLY","features":[18]},{"name":"GUID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[18]},{"name":"GUID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[18]},{"name":"GUID_PM_ADD_PROTOCOL_OFFLOAD","features":[18]},{"name":"GUID_PM_ADD_WOL_PATTERN","features":[18]},{"name":"GUID_PM_CURRENT_CAPABILITIES","features":[18]},{"name":"GUID_PM_GET_PROTOCOL_OFFLOAD","features":[18]},{"name":"GUID_PM_HARDWARE_CAPABILITIES","features":[18]},{"name":"GUID_PM_PARAMETERS","features":[18]},{"name":"GUID_PM_PROTOCOL_OFFLOAD_LIST","features":[18]},{"name":"GUID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[18]},{"name":"GUID_PM_REMOVE_WOL_PATTERN","features":[18]},{"name":"GUID_PM_WOL_PATTERN_LIST","features":[18]},{"name":"GUID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[18]},{"name":"GUID_STATUS_MEDIA_SPECIFIC_INDICATION_EX","features":[18]},{"name":"IF_ADMINISTRATIVE_DEMANDDIAL","features":[18]},{"name":"IF_ADMINISTRATIVE_DISABLED","features":[18]},{"name":"IF_ADMINISTRATIVE_ENABLED","features":[18]},{"name":"IF_ADMINISTRATIVE_STATE","features":[18]},{"name":"IF_COUNTED_STRING_LH","features":[18]},{"name":"IF_MAX_PHYS_ADDRESS_LENGTH","features":[18]},{"name":"IF_MAX_STRING_SIZE","features":[18]},{"name":"IF_OPER_STATUS","features":[18]},{"name":"IF_PHYSICAL_ADDRESS_LH","features":[18]},{"name":"IOCTL_NDIS_RESERVED5","features":[18]},{"name":"IOCTL_NDIS_RESERVED6","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[18]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[18]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[18]},{"name":"IfOperStatusDormant","features":[18]},{"name":"IfOperStatusDown","features":[18]},{"name":"IfOperStatusLowerLayerDown","features":[18]},{"name":"IfOperStatusNotPresent","features":[18]},{"name":"IfOperStatusTesting","features":[18]},{"name":"IfOperStatusUnknown","features":[18]},{"name":"IfOperStatusUp","features":[18]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[18]},{"name":"MediaConnectStateConnected","features":[18]},{"name":"MediaConnectStateDisconnected","features":[18]},{"name":"MediaConnectStateUnknown","features":[18]},{"name":"MediaDuplexStateFull","features":[18]},{"name":"MediaDuplexStateHalf","features":[18]},{"name":"MediaDuplexStateUnknown","features":[18]},{"name":"NDIS_802_11_AI_REQFI","features":[18]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[18]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[18]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[18]},{"name":"NDIS_802_11_AI_RESFI","features":[18]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[18]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[18]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[18]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[18]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[18]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[18]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[18]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[18]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[18]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[18]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[18]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[18]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[18]},{"name":"NDIS_802_11_BSSID_LIST","features":[18]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[18]},{"name":"NDIS_802_11_CAPABILITY","features":[18]},{"name":"NDIS_802_11_CONFIGURATION","features":[18]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[18]},{"name":"NDIS_802_11_FIXED_IEs","features":[18]},{"name":"NDIS_802_11_KEY","features":[18]},{"name":"NDIS_802_11_LENGTH_RATES","features":[18]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[18]},{"name":"NDIS_802_11_LENGTH_SSID","features":[18]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[18]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[18]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[18]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[18]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[18]},{"name":"NDIS_802_11_PMKID","features":[18]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[18]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[18]},{"name":"NDIS_802_11_POWER_MODE","features":[18]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[18]},{"name":"NDIS_802_11_RADIO_STATUS","features":[18]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[18]},{"name":"NDIS_802_11_REMOVE_KEY","features":[18]},{"name":"NDIS_802_11_SSID","features":[18]},{"name":"NDIS_802_11_STATISTICS","features":[18]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[18]},{"name":"NDIS_802_11_STATUS_TYPE","features":[18]},{"name":"NDIS_802_11_TEST","features":[18]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[18]},{"name":"NDIS_802_11_WEP","features":[18]},{"name":"NDIS_802_11_WEP_STATUS","features":[18]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[18]},{"name":"NDIS_802_5_RING_STATE","features":[18]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[18]},{"name":"NDIS_CO_LINK_SPEED","features":[18]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[18]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[18]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[18]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[18]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[18]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[18]},{"name":"NDIS_DEVICE_POWER_STATE","features":[18]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[18]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[18]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[18]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[18]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[18]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[18]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[18]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[18]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[18]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[18]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[18]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[18]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[18]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[18]},{"name":"NDIS_ENCAPSULATION_NULL","features":[18]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[18]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[18]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[18]},{"name":"NDIS_ETH_TYPE_802_1X","features":[18]},{"name":"NDIS_ETH_TYPE_ARP","features":[18]},{"name":"NDIS_ETH_TYPE_IPV4","features":[18]},{"name":"NDIS_ETH_TYPE_IPV6","features":[18]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[18]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[18]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[18]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[18]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[18]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[18]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[18]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[18]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[18]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[18]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[18]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[18]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[18]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[18]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[18]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[18]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[18]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[18]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[18]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[18]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[18]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[18]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[18]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[18]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[18]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[18]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[18]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[18]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[18]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[18]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[18]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[18]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[18]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[18]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[18]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[18]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[18]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[18]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[18]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[18]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[18]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[18]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[18]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[18]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[18]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[18]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[18]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[18]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[18]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[18]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[18]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[18]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[18]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[18]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[18]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[18]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[18]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[18]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[18]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[18]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[18]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[18]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[18]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[18]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[18]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[18]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[18]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[18]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[18]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[18]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[18]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[18]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[18]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[18]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[18]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[18]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[18]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[18]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[18]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[18]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[18]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[18]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[18]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[18]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[18]},{"name":"NDIS_GUID","features":[18]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[18]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[18]},{"name":"NDIS_HARDWARE_STATUS","features":[18]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[18]},{"name":"NDIS_HASH_IPV4","features":[18]},{"name":"NDIS_HASH_IPV6","features":[18]},{"name":"NDIS_HASH_IPV6_EX","features":[18]},{"name":"NDIS_HASH_TCP_IPV4","features":[18]},{"name":"NDIS_HASH_TCP_IPV6","features":[18]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[18]},{"name":"NDIS_HASH_TYPE_MASK","features":[18]},{"name":"NDIS_HASH_UDP_IPV4","features":[18]},{"name":"NDIS_HASH_UDP_IPV6","features":[18]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[18]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[18]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[18]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[18]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[18]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[18]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[18]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[18]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[18]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[18]},{"name":"NDIS_INTERFACE_INFORMATION","features":[3,18]},{"name":"NDIS_INTERRUPT_MODERATION","features":[18]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[18]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[18]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[18]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[18]},{"name":"NDIS_IP_OPER_STATE","features":[18]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[18]},{"name":"NDIS_IP_OPER_STATUS","features":[18]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[18]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[18]},{"name":"NDIS_IRDA_PACKET_INFO","features":[18]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[18]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_LINK_PARAMETERS","features":[18]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_LINK_SPEED","features":[18]},{"name":"NDIS_LINK_STATE","features":[18]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[18]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[18]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[18]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[18]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[18]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[18]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[18]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[18]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[18]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[18]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[18]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[18]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[18]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[18]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[18]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[18]},{"name":"NDIS_MAXIMUM_PORTS","features":[18]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[18]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[18]},{"name":"NDIS_MEDIA_STATE","features":[18]},{"name":"NDIS_MEDIUM","features":[18]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[18]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[18]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[18]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[18]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[18]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[18]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[18]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[18]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[18]},{"name":"NDIS_OBJECT_HEADER","features":[18]},{"name":"NDIS_OBJECT_REVISION_1","features":[18]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[18]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[18]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[18]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[18]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[18]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[18]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[18]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[18]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[18]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[18]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[18]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[18]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[18]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[18]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[18]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[18]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[18]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[18]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[18]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[18]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[18]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[18]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[18]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[18]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[18]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[18]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[18]},{"name":"NDIS_OFFLOAD","features":[18]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[18]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[18]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[18]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[18]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[18]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[18]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[18]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[18]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[18]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[18]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[18]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[18]},{"name":"NDIS_OFFLOAD_SET_ON","features":[18]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[18]},{"name":"NDIS_OPER_STATE","features":[18]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[18]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[18]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[18]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[18]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[18]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[18]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[18]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[18]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[18]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[18]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[18]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[18]},{"name":"NDIS_PACKET_TYPE_SMT","features":[18]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[18]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[18]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[18]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[18]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[18]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[18]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[18]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[18]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[18]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[18]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[18]},{"name":"NDIS_PM_PACKET_PATTERN","features":[18]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[18]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[18]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[18]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[18]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[18]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[18]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[18]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[18]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[18]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[18]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[18]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[18]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[18]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[18]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[18]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[18]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[18]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[18]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[18]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[18]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[18]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[18]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[18]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[18]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[18]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[18]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[18]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[18]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[18]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[18]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[18]},{"name":"NDIS_PNP_CAPABILITIES","features":[18]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[18]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[18]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[18]},{"name":"NDIS_PORT","features":[18]},{"name":"NDIS_PORT_ARRAY","features":[18]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[18]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[18]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[18]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[18]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[18]},{"name":"NDIS_PORT_CONTROL_STATE","features":[18]},{"name":"NDIS_PORT_STATE","features":[18]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[18]},{"name":"NDIS_PORT_TYPE","features":[18]},{"name":"NDIS_PROCESSOR_VENDOR","features":[18]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[18]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[18]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[18]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[18]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[18]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[18]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[18]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[18]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[18]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[18]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[18]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[18]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[18]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[18]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[18]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[18]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[18]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[18]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[18]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[18]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[18]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[18]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[18]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[18]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[18]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[18]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[18]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[18]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[18]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[18]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[18]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[18]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[18]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[18]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[18]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[18]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[18]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[18]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[18]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[18]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[18]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[18]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[18]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[18]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[18]},{"name":"NDIS_QOS_TSA_CBS","features":[18]},{"name":"NDIS_QOS_TSA_ETS","features":[18]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[18]},{"name":"NDIS_QOS_TSA_STRICT","features":[18]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[18]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[18]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[18]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[18]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[18]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[18]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[18]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[18]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[18]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[18]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[18]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[18]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[18]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[18]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[18]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[18]},{"name":"NDIS_REQUEST_TYPE","features":[18]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[18]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[18]},{"name":"NDIS_RING_HARD_ERROR","features":[18]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[18]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[18]},{"name":"NDIS_RING_RING_RECOVERY","features":[18]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[18]},{"name":"NDIS_RING_SINGLE_STATION","features":[18]},{"name":"NDIS_RING_SOFT_ERROR","features":[18]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[18]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[18]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[18]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[18]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[18]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[18]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[18]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[18]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[18]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[18]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[18]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[18]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[18]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[18]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[18]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[18]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[18]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[18]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[18]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[18]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[18]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[18]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[18]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[18]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[18]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[18]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[18]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[18]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[18]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[18]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[18]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[18]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[18]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[18]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[18]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[18]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[18]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[18]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[18]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[18]},{"name":"NDIS_STATISTICS_INFO","features":[18]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[18]},{"name":"NDIS_STATISTICS_VALUE","features":[18]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[18]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[18]},{"name":"NDIS_SUPPORT_NDIS6","features":[18]},{"name":"NDIS_SUPPORT_NDIS61","features":[18]},{"name":"NDIS_SUPPORT_NDIS620","features":[18]},{"name":"NDIS_SUPPORT_NDIS630","features":[18]},{"name":"NDIS_SUPPORT_NDIS640","features":[18]},{"name":"NDIS_SUPPORT_NDIS650","features":[18]},{"name":"NDIS_SUPPORT_NDIS651","features":[18]},{"name":"NDIS_SUPPORT_NDIS660","features":[18]},{"name":"NDIS_SUPPORT_NDIS670","features":[18]},{"name":"NDIS_SUPPORT_NDIS680","features":[18]},{"name":"NDIS_SUPPORT_NDIS681","features":[18]},{"name":"NDIS_SUPPORT_NDIS682","features":[18]},{"name":"NDIS_SUPPORT_NDIS683","features":[18]},{"name":"NDIS_SUPPORT_NDIS684","features":[18]},{"name":"NDIS_SUPPORT_NDIS685","features":[18]},{"name":"NDIS_SUPPORT_NDIS686","features":[18]},{"name":"NDIS_SUPPORT_NDIS687","features":[18]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[18]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[18]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[18]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[18]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[18]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[18]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[18]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[18]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[18]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[18]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[18]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[18]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[18]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[18]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[18]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[18]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[18]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[18]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[18]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[3,18]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[3,18]},{"name":"NDIS_VAR_DATA_DESC","features":[18]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[18]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[18]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[18]},{"name":"NDIS_WAN_QUALITY","features":[18]},{"name":"NDIS_WLAN_BSSID","features":[18]},{"name":"NDIS_WLAN_BSSID_EX","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[18]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[18]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[18]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[18]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[18]},{"name":"NDIS_WMI_EVENT_HEADER","features":[18]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[18]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[18]},{"name":"NDIS_WMI_METHOD_HEADER","features":[18]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[18]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[18]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[18]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[18]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[18]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[18]},{"name":"NDIS_WMI_OFFLOAD","features":[18]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[18]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[18]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[18]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[18]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[18]},{"name":"NDIS_WMI_SET_HEADER","features":[18]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[18]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[18]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[18]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[18]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[18]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[18]},{"name":"NDK_ADAPTER_FLAG_CQ_INTERRUPT_MODERATION_SUPPORTED","features":[18]},{"name":"NDK_ADAPTER_FLAG_CQ_RESIZE_SUPPORTED","features":[18]},{"name":"NDK_ADAPTER_FLAG_IN_ORDER_DMA_SUPPORTED","features":[18]},{"name":"NDK_ADAPTER_FLAG_LOOPBACK_CONNECTIONS_SUPPORTED","features":[18]},{"name":"NDK_ADAPTER_FLAG_MULTI_ENGINE_SUPPORTED","features":[18]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_LOCAL_INVALIDATE_SUPPORTED","features":[18]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_SINK_NOT_REQUIRED","features":[18]},{"name":"NDK_ADAPTER_INFO","features":[18]},{"name":"NDK_RDMA_TECHNOLOGY","features":[18]},{"name":"NDK_VERSION","features":[18]},{"name":"NETWORK_ADDRESS","features":[18]},{"name":"NETWORK_ADDRESS_IP","features":[18]},{"name":"NETWORK_ADDRESS_IP6","features":[18]},{"name":"NETWORK_ADDRESS_IPX","features":[18]},{"name":"NETWORK_ADDRESS_LIST","features":[18]},{"name":"NET_IFLUID_UNSPECIFIED","features":[18]},{"name":"NET_IF_ACCESS_BROADCAST","features":[18]},{"name":"NET_IF_ACCESS_LOOPBACK","features":[18]},{"name":"NET_IF_ACCESS_MAXIMUM","features":[18]},{"name":"NET_IF_ACCESS_POINT_TO_MULTI_POINT","features":[18]},{"name":"NET_IF_ACCESS_POINT_TO_POINT","features":[18]},{"name":"NET_IF_ACCESS_TYPE","features":[18]},{"name":"NET_IF_ADMIN_STATUS","features":[18]},{"name":"NET_IF_ADMIN_STATUS_DOWN","features":[18]},{"name":"NET_IF_ADMIN_STATUS_TESTING","features":[18]},{"name":"NET_IF_ADMIN_STATUS_UP","features":[18]},{"name":"NET_IF_ALIAS_LH","features":[18]},{"name":"NET_IF_CONNECTION_DEDICATED","features":[18]},{"name":"NET_IF_CONNECTION_DEMAND","features":[18]},{"name":"NET_IF_CONNECTION_MAXIMUM","features":[18]},{"name":"NET_IF_CONNECTION_PASSIVE","features":[18]},{"name":"NET_IF_CONNECTION_TYPE","features":[18]},{"name":"NET_IF_DIRECTION_MAXIMUM","features":[18]},{"name":"NET_IF_DIRECTION_RECEIVEONLY","features":[18]},{"name":"NET_IF_DIRECTION_SENDONLY","features":[18]},{"name":"NET_IF_DIRECTION_SENDRECEIVE","features":[18]},{"name":"NET_IF_DIRECTION_TYPE","features":[18]},{"name":"NET_IF_MEDIA_CONNECT_STATE","features":[18]},{"name":"NET_IF_MEDIA_DUPLEX_STATE","features":[18]},{"name":"NET_IF_OID_COMPARTMENT_ID","features":[18]},{"name":"NET_IF_OID_IF_ALIAS","features":[18]},{"name":"NET_IF_OID_IF_ENTRY","features":[18]},{"name":"NET_IF_OID_NETWORK_GUID","features":[18]},{"name":"NET_IF_OPER_STATUS","features":[18]},{"name":"NET_IF_OPER_STATUS_DORMANT","features":[18]},{"name":"NET_IF_OPER_STATUS_DORMANT_LOW_POWER","features":[18]},{"name":"NET_IF_OPER_STATUS_DORMANT_PAUSED","features":[18]},{"name":"NET_IF_OPER_STATUS_DOWN","features":[18]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_AUTHENTICATED","features":[18]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_MEDIA_CONNECTED","features":[18]},{"name":"NET_IF_OPER_STATUS_LOWER_LAYER_DOWN","features":[18]},{"name":"NET_IF_OPER_STATUS_NOT_PRESENT","features":[18]},{"name":"NET_IF_OPER_STATUS_TESTING","features":[18]},{"name":"NET_IF_OPER_STATUS_UNKNOWN","features":[18]},{"name":"NET_IF_OPER_STATUS_UP","features":[18]},{"name":"NET_IF_RCV_ADDRESS_LH","features":[18]},{"name":"NET_IF_RCV_ADDRESS_TYPE","features":[18]},{"name":"NET_IF_RCV_ADDRESS_TYPE_NON_VOLATILE","features":[18]},{"name":"NET_IF_RCV_ADDRESS_TYPE_OTHER","features":[18]},{"name":"NET_IF_RCV_ADDRESS_TYPE_VOLATILE","features":[18]},{"name":"NET_LUID_LH","features":[18]},{"name":"NET_PHYSICAL_LOCATION_LH","features":[18]},{"name":"NET_SITEID_MAXSYSTEM","features":[18]},{"name":"NET_SITEID_MAXUSER","features":[18]},{"name":"NET_SITEID_UNSPECIFIED","features":[18]},{"name":"NIIF_FILTER_INTERFACE","features":[18]},{"name":"NIIF_HARDWARE_INTERFACE","features":[18]},{"name":"NIIF_NDIS_ENDPOINT_INTERFACE","features":[18]},{"name":"NIIF_NDIS_ISCSI_INTERFACE","features":[18]},{"name":"NIIF_NDIS_RESERVED1","features":[18]},{"name":"NIIF_NDIS_RESERVED2","features":[18]},{"name":"NIIF_NDIS_RESERVED3","features":[18]},{"name":"NIIF_NDIS_RESERVED4","features":[18]},{"name":"NIIF_NDIS_WDM_INTERFACE","features":[18]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[18]},{"name":"Ndis802_11AuthModeMax","features":[18]},{"name":"Ndis802_11AuthModeOpen","features":[18]},{"name":"Ndis802_11AuthModeShared","features":[18]},{"name":"Ndis802_11AuthModeWPA","features":[18]},{"name":"Ndis802_11AuthModeWPA2","features":[18]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[18]},{"name":"Ndis802_11AuthModeWPA3","features":[18]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[18]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[18]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[18]},{"name":"Ndis802_11AuthModeWPANone","features":[18]},{"name":"Ndis802_11AuthModeWPAPSK","features":[18]},{"name":"Ndis802_11AutoUnknown","features":[18]},{"name":"Ndis802_11Automode","features":[18]},{"name":"Ndis802_11DS","features":[18]},{"name":"Ndis802_11Encryption1Enabled","features":[18]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[18]},{"name":"Ndis802_11Encryption2Enabled","features":[18]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[18]},{"name":"Ndis802_11Encryption3Enabled","features":[18]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[18]},{"name":"Ndis802_11EncryptionDisabled","features":[18]},{"name":"Ndis802_11EncryptionNotSupported","features":[18]},{"name":"Ndis802_11FH","features":[18]},{"name":"Ndis802_11IBSS","features":[18]},{"name":"Ndis802_11Infrastructure","features":[18]},{"name":"Ndis802_11InfrastructureMax","features":[18]},{"name":"Ndis802_11MediaStreamOff","features":[18]},{"name":"Ndis802_11MediaStreamOn","features":[18]},{"name":"Ndis802_11NetworkTypeMax","features":[18]},{"name":"Ndis802_11OFDM24","features":[18]},{"name":"Ndis802_11OFDM5","features":[18]},{"name":"Ndis802_11PowerModeCAM","features":[18]},{"name":"Ndis802_11PowerModeFast_PSP","features":[18]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[18]},{"name":"Ndis802_11PowerModeMax","features":[18]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[18]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[18]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[18]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[18]},{"name":"Ndis802_11RadioStatusMax","features":[18]},{"name":"Ndis802_11RadioStatusOn","features":[18]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[18]},{"name":"Ndis802_11ReloadWEPKeys","features":[18]},{"name":"Ndis802_11StatusTypeMax","features":[18]},{"name":"Ndis802_11StatusType_Authentication","features":[18]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[18]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[18]},{"name":"Ndis802_11WEPDisabled","features":[18]},{"name":"Ndis802_11WEPEnabled","features":[18]},{"name":"Ndis802_11WEPKeyAbsent","features":[18]},{"name":"Ndis802_11WEPNotSupported","features":[18]},{"name":"NdisDefinitelyNetworkChange","features":[18]},{"name":"NdisDeviceStateD0","features":[18]},{"name":"NdisDeviceStateD1","features":[18]},{"name":"NdisDeviceStateD2","features":[18]},{"name":"NdisDeviceStateD3","features":[18]},{"name":"NdisDeviceStateMaximum","features":[18]},{"name":"NdisDeviceStateUnspecified","features":[18]},{"name":"NdisFddiRingDetect","features":[18]},{"name":"NdisFddiRingDirected","features":[18]},{"name":"NdisFddiRingIsolated","features":[18]},{"name":"NdisFddiRingNonOperational","features":[18]},{"name":"NdisFddiRingNonOperationalDup","features":[18]},{"name":"NdisFddiRingOperational","features":[18]},{"name":"NdisFddiRingOperationalDup","features":[18]},{"name":"NdisFddiRingTrace","features":[18]},{"name":"NdisFddiStateActive","features":[18]},{"name":"NdisFddiStateBreak","features":[18]},{"name":"NdisFddiStateConnect","features":[18]},{"name":"NdisFddiStateJoin","features":[18]},{"name":"NdisFddiStateMaintenance","features":[18]},{"name":"NdisFddiStateNext","features":[18]},{"name":"NdisFddiStateOff","features":[18]},{"name":"NdisFddiStateSignal","features":[18]},{"name":"NdisFddiStateTrace","features":[18]},{"name":"NdisFddiStateVerify","features":[18]},{"name":"NdisFddiTypeCWrapA","features":[18]},{"name":"NdisFddiTypeCWrapB","features":[18]},{"name":"NdisFddiTypeCWrapS","features":[18]},{"name":"NdisFddiTypeIsolated","features":[18]},{"name":"NdisFddiTypeLocalA","features":[18]},{"name":"NdisFddiTypeLocalAB","features":[18]},{"name":"NdisFddiTypeLocalB","features":[18]},{"name":"NdisFddiTypeLocalS","features":[18]},{"name":"NdisFddiTypeThrough","features":[18]},{"name":"NdisFddiTypeWrapA","features":[18]},{"name":"NdisFddiTypeWrapAB","features":[18]},{"name":"NdisFddiTypeWrapB","features":[18]},{"name":"NdisFddiTypeWrapS","features":[18]},{"name":"NdisHardwareStatusClosing","features":[18]},{"name":"NdisHardwareStatusInitializing","features":[18]},{"name":"NdisHardwareStatusNotReady","features":[18]},{"name":"NdisHardwareStatusReady","features":[18]},{"name":"NdisHardwareStatusReset","features":[18]},{"name":"NdisHashFunctionReserved1","features":[18]},{"name":"NdisHashFunctionReserved2","features":[18]},{"name":"NdisHashFunctionReserved3","features":[18]},{"name":"NdisHashFunctionToeplitz","features":[18]},{"name":"NdisInterruptModerationDisabled","features":[18]},{"name":"NdisInterruptModerationEnabled","features":[18]},{"name":"NdisInterruptModerationNotSupported","features":[18]},{"name":"NdisInterruptModerationUnknown","features":[18]},{"name":"NdisMediaStateConnected","features":[18]},{"name":"NdisMediaStateDisconnected","features":[18]},{"name":"NdisMedium1394","features":[18]},{"name":"NdisMedium802_3","features":[18]},{"name":"NdisMedium802_5","features":[18]},{"name":"NdisMediumArcnet878_2","features":[18]},{"name":"NdisMediumArcnetRaw","features":[18]},{"name":"NdisMediumAtm","features":[18]},{"name":"NdisMediumBpc","features":[18]},{"name":"NdisMediumCoWan","features":[18]},{"name":"NdisMediumDix","features":[18]},{"name":"NdisMediumFddi","features":[18]},{"name":"NdisMediumIP","features":[18]},{"name":"NdisMediumInfiniBand","features":[18]},{"name":"NdisMediumIrda","features":[18]},{"name":"NdisMediumLocalTalk","features":[18]},{"name":"NdisMediumLoopback","features":[18]},{"name":"NdisMediumMax","features":[18]},{"name":"NdisMediumNative802_11","features":[18]},{"name":"NdisMediumTunnel","features":[18]},{"name":"NdisMediumWan","features":[18]},{"name":"NdisMediumWiMAX","features":[18]},{"name":"NdisMediumWirelessWan","features":[18]},{"name":"NdisNetworkChangeFromMediaConnect","features":[18]},{"name":"NdisNetworkChangeMax","features":[18]},{"name":"NdisPauseFunctionsReceiveOnly","features":[18]},{"name":"NdisPauseFunctionsSendAndReceive","features":[18]},{"name":"NdisPauseFunctionsSendOnly","features":[18]},{"name":"NdisPauseFunctionsUnknown","features":[18]},{"name":"NdisPauseFunctionsUnsupported","features":[18]},{"name":"NdisPhysicalMedium1394","features":[18]},{"name":"NdisPhysicalMedium802_3","features":[18]},{"name":"NdisPhysicalMedium802_5","features":[18]},{"name":"NdisPhysicalMediumBluetooth","features":[18]},{"name":"NdisPhysicalMediumCableModem","features":[18]},{"name":"NdisPhysicalMediumDSL","features":[18]},{"name":"NdisPhysicalMediumFibreChannel","features":[18]},{"name":"NdisPhysicalMediumInfiniband","features":[18]},{"name":"NdisPhysicalMediumIrda","features":[18]},{"name":"NdisPhysicalMediumMax","features":[18]},{"name":"NdisPhysicalMediumNative802_11","features":[18]},{"name":"NdisPhysicalMediumNative802_15_4","features":[18]},{"name":"NdisPhysicalMediumOther","features":[18]},{"name":"NdisPhysicalMediumPhoneLine","features":[18]},{"name":"NdisPhysicalMediumPowerLine","features":[18]},{"name":"NdisPhysicalMediumUWB","features":[18]},{"name":"NdisPhysicalMediumUnspecified","features":[18]},{"name":"NdisPhysicalMediumWiMax","features":[18]},{"name":"NdisPhysicalMediumWiredCoWan","features":[18]},{"name":"NdisPhysicalMediumWiredWAN","features":[18]},{"name":"NdisPhysicalMediumWirelessLan","features":[18]},{"name":"NdisPhysicalMediumWirelessWan","features":[18]},{"name":"NdisPortAuthorizationUnknown","features":[18]},{"name":"NdisPortAuthorized","features":[18]},{"name":"NdisPortControlStateControlled","features":[18]},{"name":"NdisPortControlStateUncontrolled","features":[18]},{"name":"NdisPortControlStateUnknown","features":[18]},{"name":"NdisPortReauthorizing","features":[18]},{"name":"NdisPortType8021xSupplicant","features":[18]},{"name":"NdisPortTypeBridge","features":[18]},{"name":"NdisPortTypeMax","features":[18]},{"name":"NdisPortTypeRasConnection","features":[18]},{"name":"NdisPortTypeUndefined","features":[18]},{"name":"NdisPortUnauthorized","features":[18]},{"name":"NdisPossibleNetworkChange","features":[18]},{"name":"NdisProcessorVendorAuthenticAMD","features":[18]},{"name":"NdisProcessorVendorGenuinIntel","features":[18]},{"name":"NdisProcessorVendorGenuineIntel","features":[18]},{"name":"NdisProcessorVendorUnknown","features":[18]},{"name":"NdisRequestClose","features":[18]},{"name":"NdisRequestGeneric1","features":[18]},{"name":"NdisRequestGeneric2","features":[18]},{"name":"NdisRequestGeneric3","features":[18]},{"name":"NdisRequestGeneric4","features":[18]},{"name":"NdisRequestOpen","features":[18]},{"name":"NdisRequestQueryInformation","features":[18]},{"name":"NdisRequestQueryStatistics","features":[18]},{"name":"NdisRequestReset","features":[18]},{"name":"NdisRequestSend","features":[18]},{"name":"NdisRequestSetInformation","features":[18]},{"name":"NdisRequestTransferData","features":[18]},{"name":"NdisRingStateClosed","features":[18]},{"name":"NdisRingStateClosing","features":[18]},{"name":"NdisRingStateOpenFailure","features":[18]},{"name":"NdisRingStateOpened","features":[18]},{"name":"NdisRingStateOpening","features":[18]},{"name":"NdisRingStateRingFailure","features":[18]},{"name":"NdisWanErrorControl","features":[18]},{"name":"NdisWanHeaderEthernet","features":[18]},{"name":"NdisWanHeaderNative","features":[18]},{"name":"NdisWanMediumAgileVPN","features":[18]},{"name":"NdisWanMediumAtm","features":[18]},{"name":"NdisWanMediumFrameRelay","features":[18]},{"name":"NdisWanMediumGre","features":[18]},{"name":"NdisWanMediumHub","features":[18]},{"name":"NdisWanMediumIrda","features":[18]},{"name":"NdisWanMediumIsdn","features":[18]},{"name":"NdisWanMediumL2TP","features":[18]},{"name":"NdisWanMediumPPTP","features":[18]},{"name":"NdisWanMediumParallel","features":[18]},{"name":"NdisWanMediumPppoe","features":[18]},{"name":"NdisWanMediumSSTP","features":[18]},{"name":"NdisWanMediumSW56K","features":[18]},{"name":"NdisWanMediumSerial","features":[18]},{"name":"NdisWanMediumSonet","features":[18]},{"name":"NdisWanMediumSubTypeMax","features":[18]},{"name":"NdisWanMediumX_25","features":[18]},{"name":"NdisWanRaw","features":[18]},{"name":"NdisWanReliable","features":[18]},{"name":"NdkInfiniBand","features":[18]},{"name":"NdkMaxTechnology","features":[18]},{"name":"NdkRoCE","features":[18]},{"name":"NdkRoCEv2","features":[18]},{"name":"NdkUndefined","features":[18]},{"name":"NdkiWarp","features":[18]},{"name":"OFFLOAD_ALGO_INFO","features":[18]},{"name":"OFFLOAD_CONF_ALGO","features":[18]},{"name":"OFFLOAD_INBOUND_SA","features":[18]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[18]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[3,18]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[3,18]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[18]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[18]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[18]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[18]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[18]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[3,18]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[3,18]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[18]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[18]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[18]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[18]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[18]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[18]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[18]},{"name":"OFFLOAD_MAX_SAS","features":[18]},{"name":"OFFLOAD_OPERATION_E","features":[18]},{"name":"OFFLOAD_OUTBOUND_SA","features":[18]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[18]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[18]},{"name":"OID_1394_VC_INFO","features":[18]},{"name":"OID_802_11_ADD_KEY","features":[18]},{"name":"OID_802_11_ADD_WEP","features":[18]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[18]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[18]},{"name":"OID_802_11_BSSID","features":[18]},{"name":"OID_802_11_BSSID_LIST","features":[18]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[18]},{"name":"OID_802_11_CAPABILITY","features":[18]},{"name":"OID_802_11_CONFIGURATION","features":[18]},{"name":"OID_802_11_DESIRED_RATES","features":[18]},{"name":"OID_802_11_DISASSOCIATE","features":[18]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[18]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[18]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[18]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[18]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[18]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[18]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[18]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[18]},{"name":"OID_802_11_PMKID","features":[18]},{"name":"OID_802_11_POWER_MODE","features":[18]},{"name":"OID_802_11_PRIVACY_FILTER","features":[18]},{"name":"OID_802_11_RADIO_STATUS","features":[18]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[18]},{"name":"OID_802_11_REMOVE_KEY","features":[18]},{"name":"OID_802_11_REMOVE_WEP","features":[18]},{"name":"OID_802_11_RSSI","features":[18]},{"name":"OID_802_11_RSSI_TRIGGER","features":[18]},{"name":"OID_802_11_RTS_THRESHOLD","features":[18]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[18]},{"name":"OID_802_11_SSID","features":[18]},{"name":"OID_802_11_STATISTICS","features":[18]},{"name":"OID_802_11_SUPPORTED_RATES","features":[18]},{"name":"OID_802_11_TEST","features":[18]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[18]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[18]},{"name":"OID_802_11_WEP_STATUS","features":[18]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[18]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[18]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[18]},{"name":"OID_802_3_MAC_OPTIONS","features":[18]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[18]},{"name":"OID_802_3_MULTICAST_LIST","features":[18]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[18]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[18]},{"name":"OID_802_3_RCV_OVERRUN","features":[18]},{"name":"OID_802_3_XMIT_DEFERRED","features":[18]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[18]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[18]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[18]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[18]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[18]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[18]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[18]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[18]},{"name":"OID_802_5_AC_ERRORS","features":[18]},{"name":"OID_802_5_BURST_ERRORS","features":[18]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[18]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[18]},{"name":"OID_802_5_CURRENT_GROUP","features":[18]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[18]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[18]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[18]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[18]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[18]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[18]},{"name":"OID_802_5_LINE_ERRORS","features":[18]},{"name":"OID_802_5_LOST_FRAMES","features":[18]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[18]},{"name":"OID_802_5_TOKEN_ERRORS","features":[18]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[18]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[18]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[18]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[18]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[18]},{"name":"OID_ATM_ASSIGNED_VPI","features":[18]},{"name":"OID_ATM_CALL_ALERTING","features":[18]},{"name":"OID_ATM_CALL_NOTIFY","features":[18]},{"name":"OID_ATM_CALL_PROCEEDING","features":[18]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[18]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[18]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[18]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[18]},{"name":"OID_ATM_ILMI_VPIVCI","features":[18]},{"name":"OID_ATM_LECS_ADDRESS","features":[18]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[18]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[18]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[18]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[18]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[18]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[18]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[18]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[18]},{"name":"OID_ATM_PARTY_ALERTING","features":[18]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[18]},{"name":"OID_ATM_RCV_CELLS_OK","features":[18]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[18]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[18]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[18]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[18]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[18]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[18]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[18]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[18]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[18]},{"name":"OID_CO_ADDRESS_CHANGE","features":[18]},{"name":"OID_CO_ADD_ADDRESS","features":[18]},{"name":"OID_CO_ADD_PVC","features":[18]},{"name":"OID_CO_AF_CLOSE","features":[18]},{"name":"OID_CO_DELETE_ADDRESS","features":[18]},{"name":"OID_CO_DELETE_PVC","features":[18]},{"name":"OID_CO_GET_ADDRESSES","features":[18]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[18]},{"name":"OID_CO_SIGNALING_DISABLED","features":[18]},{"name":"OID_CO_SIGNALING_ENABLED","features":[18]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[18]},{"name":"OID_CO_TAPI_CM_CAPS","features":[18]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[18]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[18]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[18]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[18]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[18]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[18]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[18]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[18]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[18]},{"name":"OID_FDDI_FRAMES_LOST","features":[18]},{"name":"OID_FDDI_FRAME_ERRORS","features":[18]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[18]},{"name":"OID_FDDI_IF_DESCR","features":[18]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[18]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[18]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[18]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[18]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[18]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[18]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[18]},{"name":"OID_FDDI_IF_MTU","features":[18]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[18]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[18]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[18]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[18]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[18]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[18]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[18]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[18]},{"name":"OID_FDDI_IF_SPECIFIC","features":[18]},{"name":"OID_FDDI_IF_SPEED","features":[18]},{"name":"OID_FDDI_IF_TYPE","features":[18]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[18]},{"name":"OID_FDDI_LCT_FAILURES","features":[18]},{"name":"OID_FDDI_LEM_REJECTS","features":[18]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[18]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[18]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[18]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[18]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[18]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[18]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[18]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[18]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[18]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[18]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[18]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[18]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[18]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[18]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[18]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[18]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[18]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[18]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[18]},{"name":"OID_FDDI_MAC_INDEX","features":[18]},{"name":"OID_FDDI_MAC_LATE_CT","features":[18]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[18]},{"name":"OID_FDDI_MAC_LOST_CT","features":[18]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[18]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[18]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[18]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[18]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[18]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[18]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[18]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[18]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[18]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[18]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[18]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[18]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[18]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[18]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[18]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[18]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[18]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[18]},{"name":"OID_FDDI_MAC_T_MAX","features":[18]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[18]},{"name":"OID_FDDI_MAC_T_NEG","features":[18]},{"name":"OID_FDDI_MAC_T_PRI0","features":[18]},{"name":"OID_FDDI_MAC_T_PRI1","features":[18]},{"name":"OID_FDDI_MAC_T_PRI2","features":[18]},{"name":"OID_FDDI_MAC_T_PRI3","features":[18]},{"name":"OID_FDDI_MAC_T_PRI4","features":[18]},{"name":"OID_FDDI_MAC_T_PRI5","features":[18]},{"name":"OID_FDDI_MAC_T_PRI6","features":[18]},{"name":"OID_FDDI_MAC_T_REQ","features":[18]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[18]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[18]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[18]},{"name":"OID_FDDI_PATH_INDEX","features":[18]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[18]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[18]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[18]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[18]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[18]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[18]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[18]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[18]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[18]},{"name":"OID_FDDI_PORT_ACTION","features":[18]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[18]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[18]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[18]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[18]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[18]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[18]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[18]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[18]},{"name":"OID_FDDI_PORT_INDEX","features":[18]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[18]},{"name":"OID_FDDI_PORT_LEM_CT","features":[18]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[18]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[18]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[18]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[18]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[18]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[18]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[18]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[18]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[18]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[18]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[18]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[18]},{"name":"OID_FDDI_PORT_PC_LS","features":[18]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[18]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[18]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[18]},{"name":"OID_FDDI_RING_MGT_STATE","features":[18]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[18]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[18]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[18]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[18]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[18]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[18]},{"name":"OID_FDDI_SMT_CF_STATE","features":[18]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[18]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[18]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[18]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[18]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[18]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[18]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[18]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[18]},{"name":"OID_FDDI_SMT_MAC_CT","features":[18]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[18]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[18]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[18]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[18]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[18]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[18]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[18]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[18]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[18]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[18]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[18]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[18]},{"name":"OID_FDDI_SMT_STATION_ID","features":[18]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[18]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[18]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[18]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[18]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[18]},{"name":"OID_FDDI_SMT_USER_DATA","features":[18]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[18]},{"name":"OID_FFP_ADAPTER_STATS","features":[18]},{"name":"OID_FFP_CONTROL","features":[18]},{"name":"OID_FFP_DATA","features":[18]},{"name":"OID_FFP_DRIVER_STATS","features":[18]},{"name":"OID_FFP_FLUSH","features":[18]},{"name":"OID_FFP_PARAMS","features":[18]},{"name":"OID_FFP_SUPPORT","features":[18]},{"name":"OID_GEN_ADMIN_STATUS","features":[18]},{"name":"OID_GEN_ALIAS","features":[18]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[18]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[18]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[18]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[18]},{"name":"OID_GEN_BYTES_RCV","features":[18]},{"name":"OID_GEN_BYTES_XMIT","features":[18]},{"name":"OID_GEN_CO_BYTES_RCV","features":[18]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[18]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[18]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[18]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[18]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[18]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[18]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[18]},{"name":"OID_GEN_CO_LINK_SPEED","features":[18]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[18]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[18]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[18]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[18]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[18]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[18]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[18]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[18]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[18]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[18]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[18]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[18]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[18]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[18]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[18]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[18]},{"name":"OID_GEN_CO_VENDOR_ID","features":[18]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[18]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[18]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[18]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[18]},{"name":"OID_GEN_DEVICE_PROFILE","features":[18]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[18]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[18]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[18]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[18]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[18]},{"name":"OID_GEN_DRIVER_VERSION","features":[18]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[18]},{"name":"OID_GEN_FRIENDLY_NAME","features":[18]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[18]},{"name":"OID_GEN_GET_TIME_CAPS","features":[18]},{"name":"OID_GEN_HARDWARE_STATUS","features":[18]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[18]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[18]},{"name":"OID_GEN_INIT_TIME_MS","features":[18]},{"name":"OID_GEN_INTERFACE_INFO","features":[18]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[18]},{"name":"OID_GEN_IP_OPER_STATUS","features":[18]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[18]},{"name":"OID_GEN_LAST_CHANGE","features":[18]},{"name":"OID_GEN_LINK_PARAMETERS","features":[18]},{"name":"OID_GEN_LINK_SPEED","features":[18]},{"name":"OID_GEN_LINK_SPEED_EX","features":[18]},{"name":"OID_GEN_LINK_STATE","features":[18]},{"name":"OID_GEN_MACHINE_NAME","features":[18]},{"name":"OID_GEN_MAC_ADDRESS","features":[18]},{"name":"OID_GEN_MAC_OPTIONS","features":[18]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[18]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[18]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[18]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[18]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[18]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[18]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[18]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[18]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[18]},{"name":"OID_GEN_MEDIA_IN_USE","features":[18]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[18]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[18]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[18]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[18]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[18]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[18]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[18]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[18]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[18]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[18]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[18]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[18]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[18]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[18]},{"name":"OID_GEN_NETCARD_LOAD","features":[18]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[18]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[18]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[18]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[18]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[18]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[18]},{"name":"OID_GEN_PORT_STATE","features":[18]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[18]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[18]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[18]},{"name":"OID_GEN_RCV_DISCARDS","features":[18]},{"name":"OID_GEN_RCV_ERROR","features":[18]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[18]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[18]},{"name":"OID_GEN_RCV_OK","features":[18]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[18]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[18]},{"name":"OID_GEN_RECEIVE_HASH","features":[18]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[18]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[18]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[18]},{"name":"OID_GEN_RESET_COUNTS","features":[18]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[18]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[18]},{"name":"OID_GEN_STATISTICS","features":[18]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[18]},{"name":"OID_GEN_SUPPORTED_LIST","features":[18]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[18]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[18]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[18]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[18]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[18]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[18]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[18]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[18]},{"name":"OID_GEN_VENDOR_ID","features":[18]},{"name":"OID_GEN_VLAN_ID","features":[18]},{"name":"OID_GEN_XMIT_DISCARDS","features":[18]},{"name":"OID_GEN_XMIT_ERROR","features":[18]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[18]},{"name":"OID_GEN_XMIT_OK","features":[18]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[18]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[18]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[18]},{"name":"OID_GFT_COUNTER_VALUES","features":[18]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[18]},{"name":"OID_GFT_CREATE_TABLE","features":[18]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[18]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[18]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[18]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[18]},{"name":"OID_GFT_DELETE_PROFILE","features":[18]},{"name":"OID_GFT_DELETE_TABLE","features":[18]},{"name":"OID_GFT_ENUM_COUNTERS","features":[18]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[18]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[18]},{"name":"OID_GFT_ENUM_PROFILES","features":[18]},{"name":"OID_GFT_ENUM_TABLES","features":[18]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[18]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[18]},{"name":"OID_GFT_FREE_COUNTERS","features":[18]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[18]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[18]},{"name":"OID_GFT_STATISTICS","features":[18]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[18]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[18]},{"name":"OID_IP4_OFFLOAD_STATS","features":[18]},{"name":"OID_IP6_OFFLOAD_STATS","features":[18]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[18]},{"name":"OID_IRDA_LINK_SPEED","features":[18]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[18]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[18]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[18]},{"name":"OID_IRDA_MEDIA_BUSY","features":[18]},{"name":"OID_IRDA_RATE_SNIFF","features":[18]},{"name":"OID_IRDA_RECEIVING","features":[18]},{"name":"OID_IRDA_RESERVED1","features":[18]},{"name":"OID_IRDA_RESERVED2","features":[18]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[18]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[18]},{"name":"OID_IRDA_UNICAST_LIST","features":[18]},{"name":"OID_KDNET_ADD_PF","features":[18]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[18]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[18]},{"name":"OID_KDNET_REMOVE_PF","features":[18]},{"name":"OID_LTALK_COLLISIONS","features":[18]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[18]},{"name":"OID_LTALK_DEFERS","features":[18]},{"name":"OID_LTALK_FCS_ERRORS","features":[18]},{"name":"OID_LTALK_IN_BROADCASTS","features":[18]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[18]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[18]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[18]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[18]},{"name":"OID_NDK_CONNECTIONS","features":[18]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[18]},{"name":"OID_NDK_SET_STATE","features":[18]},{"name":"OID_NDK_STATISTICS","features":[18]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[18]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[18]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[18]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[18]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[18]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[18]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[18]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[18]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[18]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[18]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[18]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[18]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[18]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[18]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[18]},{"name":"OID_PD_CLOSE_PROVIDER","features":[18]},{"name":"OID_PD_OPEN_PROVIDER","features":[18]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[18]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[18]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[18]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[18]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[18]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_PM_PARAMETERS","features":[18]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[18]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[18]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[18]},{"name":"OID_PM_RESERVED_1","features":[18]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[18]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[18]},{"name":"OID_PNP_CAPABILITIES","features":[18]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[18]},{"name":"OID_PNP_QUERY_POWER","features":[18]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[18]},{"name":"OID_PNP_SET_POWER","features":[18]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[18]},{"name":"OID_PNP_WAKE_UP_OK","features":[18]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[18]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[18]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[18]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[18]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[18]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[18]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[18]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[18]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[18]},{"name":"OID_QOS_PARAMETERS","features":[18]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[18]},{"name":"OID_QOS_RESERVED1","features":[18]},{"name":"OID_QOS_RESERVED10","features":[18]},{"name":"OID_QOS_RESERVED11","features":[18]},{"name":"OID_QOS_RESERVED12","features":[18]},{"name":"OID_QOS_RESERVED13","features":[18]},{"name":"OID_QOS_RESERVED14","features":[18]},{"name":"OID_QOS_RESERVED15","features":[18]},{"name":"OID_QOS_RESERVED16","features":[18]},{"name":"OID_QOS_RESERVED17","features":[18]},{"name":"OID_QOS_RESERVED18","features":[18]},{"name":"OID_QOS_RESERVED19","features":[18]},{"name":"OID_QOS_RESERVED2","features":[18]},{"name":"OID_QOS_RESERVED20","features":[18]},{"name":"OID_QOS_RESERVED3","features":[18]},{"name":"OID_QOS_RESERVED4","features":[18]},{"name":"OID_QOS_RESERVED5","features":[18]},{"name":"OID_QOS_RESERVED6","features":[18]},{"name":"OID_QOS_RESERVED7","features":[18]},{"name":"OID_QOS_RESERVED8","features":[18]},{"name":"OID_QOS_RESERVED9","features":[18]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[18]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[18]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[18]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[18]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[18]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[18]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[18]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[18]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[18]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[18]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[18]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[18]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[18]},{"name":"OID_SRIOV_CONFIG_STATE","features":[18]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[18]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[18]},{"name":"OID_SRIOV_PF_LUID","features":[18]},{"name":"OID_SRIOV_PROBED_BARS","features":[18]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[18]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[18]},{"name":"OID_SRIOV_RESET_VF","features":[18]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[18]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[18]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[18]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[18]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[18]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[18]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[18]},{"name":"OID_SWITCH_NIC_ARRAY","features":[18]},{"name":"OID_SWITCH_NIC_CONNECT","features":[18]},{"name":"OID_SWITCH_NIC_CREATE","features":[18]},{"name":"OID_SWITCH_NIC_DELETE","features":[18]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[18]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[18]},{"name":"OID_SWITCH_NIC_REQUEST","features":[18]},{"name":"OID_SWITCH_NIC_RESTORE","features":[18]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[18]},{"name":"OID_SWITCH_NIC_RESUME","features":[18]},{"name":"OID_SWITCH_NIC_SAVE","features":[18]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[18]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[18]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[18]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[18]},{"name":"OID_SWITCH_NIC_UPDATED","features":[18]},{"name":"OID_SWITCH_PARAMETERS","features":[18]},{"name":"OID_SWITCH_PORT_ARRAY","features":[18]},{"name":"OID_SWITCH_PORT_CREATE","features":[18]},{"name":"OID_SWITCH_PORT_DELETE","features":[18]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[18]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[18]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[18]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[18]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[18]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[18]},{"name":"OID_SWITCH_PORT_UPDATED","features":[18]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[18]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[18]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[18]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[18]},{"name":"OID_TAPI_ACCEPT","features":[18]},{"name":"OID_TAPI_ANSWER","features":[18]},{"name":"OID_TAPI_CLOSE","features":[18]},{"name":"OID_TAPI_CLOSE_CALL","features":[18]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[18]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[18]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[18]},{"name":"OID_TAPI_DIAL","features":[18]},{"name":"OID_TAPI_DROP","features":[18]},{"name":"OID_TAPI_GATHER_DIGITS","features":[18]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[18]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[18]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[18]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[18]},{"name":"OID_TAPI_GET_CALL_INFO","features":[18]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[18]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[18]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[18]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[18]},{"name":"OID_TAPI_GET_ID","features":[18]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[18]},{"name":"OID_TAPI_MAKE_CALL","features":[18]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[18]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[18]},{"name":"OID_TAPI_OPEN","features":[18]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[18]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[18]},{"name":"OID_TAPI_SECURE_CALL","features":[18]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[18]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[18]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[18]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[18]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[18]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[18]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[18]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[18]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[18]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[18]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[18]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[18]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[18]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[18]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[18]},{"name":"OID_TCP_RSC_STATISTICS","features":[18]},{"name":"OID_TCP_SAN_SUPPORT","features":[18]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[18]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[18]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[18]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[18]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[18]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[18]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[18]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[18]},{"name":"OID_TCP_TASK_OFFLOAD","features":[18]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[18]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[18]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[18]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[18]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[18]},{"name":"OID_VLAN_RESERVED1","features":[18]},{"name":"OID_VLAN_RESERVED2","features":[18]},{"name":"OID_VLAN_RESERVED3","features":[18]},{"name":"OID_VLAN_RESERVED4","features":[18]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[18]},{"name":"OID_WAN_CO_GET_INFO","features":[18]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[18]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[18]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[18]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[18]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[18]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[18]},{"name":"OID_WAN_GET_COMP_INFO","features":[18]},{"name":"OID_WAN_GET_INFO","features":[18]},{"name":"OID_WAN_GET_LINK_INFO","features":[18]},{"name":"OID_WAN_GET_STATS_INFO","features":[18]},{"name":"OID_WAN_HEADER_FORMAT","features":[18]},{"name":"OID_WAN_LINE_COUNT","features":[18]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[18]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[18]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[18]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[18]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[18]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[18]},{"name":"OID_WAN_SET_COMP_INFO","features":[18]},{"name":"OID_WAN_SET_LINK_INFO","features":[18]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[18]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[18]},{"name":"OID_WWAN_CONNECT","features":[18]},{"name":"OID_WWAN_CREATE_MAC","features":[18]},{"name":"OID_WWAN_DELETE_MAC","features":[18]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[18]},{"name":"OID_WWAN_DEVICE_CAPS","features":[18]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[18]},{"name":"OID_WWAN_DEVICE_RESET","features":[18]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[18]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[18]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[18]},{"name":"OID_WWAN_DRIVER_CAPS","features":[18]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[18]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[18]},{"name":"OID_WWAN_HOME_PROVIDER","features":[18]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[18]},{"name":"OID_WWAN_LOCATION_STATE","features":[18]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[18]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[18]},{"name":"OID_WWAN_MBIM_VERSION","features":[18]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[18]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[18]},{"name":"OID_WWAN_MPDP","features":[18]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[18]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[18]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[18]},{"name":"OID_WWAN_NITZ","features":[18]},{"name":"OID_WWAN_PACKET_SERVICE","features":[18]},{"name":"OID_WWAN_PCO","features":[18]},{"name":"OID_WWAN_PIN","features":[18]},{"name":"OID_WWAN_PIN_EX","features":[18]},{"name":"OID_WWAN_PIN_EX2","features":[18]},{"name":"OID_WWAN_PIN_LIST","features":[18]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[18]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[18]},{"name":"OID_WWAN_PRESHUTDOWN","features":[18]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[18]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[18]},{"name":"OID_WWAN_RADIO_STATE","features":[18]},{"name":"OID_WWAN_READY_INFO","features":[18]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[18]},{"name":"OID_WWAN_REGISTER_STATE","features":[18]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[18]},{"name":"OID_WWAN_SAR_CONFIG","features":[18]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[18]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[18]},{"name":"OID_WWAN_SIGNAL_STATE","features":[18]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[18]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[18]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[18]},{"name":"OID_WWAN_SMS_DELETE","features":[18]},{"name":"OID_WWAN_SMS_READ","features":[18]},{"name":"OID_WWAN_SMS_SEND","features":[18]},{"name":"OID_WWAN_SMS_STATUS","features":[18]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[18]},{"name":"OID_WWAN_SYS_CAPS","features":[18]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[18]},{"name":"OID_WWAN_UE_POLICY","features":[18]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[18]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[18]},{"name":"OID_WWAN_UICC_APDU","features":[18]},{"name":"OID_WWAN_UICC_APP_LIST","features":[18]},{"name":"OID_WWAN_UICC_ATR","features":[18]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[18]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[18]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[18]},{"name":"OID_WWAN_UICC_RESET","features":[18]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[18]},{"name":"OID_WWAN_USSD","features":[18]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[18]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[18]},{"name":"OID_XBOX_ACC_RESERVED0","features":[18]},{"name":"PMKID_CANDIDATE","features":[18]},{"name":"READABLE_LOCAL_CLOCK","features":[18]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[18]},{"name":"TIMED_SEND_CAPABLE","features":[18]},{"name":"TIME_STAMP_CAPABLE","features":[18]},{"name":"TRANSPORT_HEADER_OFFSET","features":[18]},{"name":"TUNNEL_TYPE","features":[18]},{"name":"TUNNEL_TYPE_6TO4","features":[18]},{"name":"TUNNEL_TYPE_DIRECT","features":[18]},{"name":"TUNNEL_TYPE_IPHTTPS","features":[18]},{"name":"TUNNEL_TYPE_ISATAP","features":[18]},{"name":"TUNNEL_TYPE_NONE","features":[18]},{"name":"TUNNEL_TYPE_OTHER","features":[18]},{"name":"TUNNEL_TYPE_TEREDO","features":[18]},{"name":"UDP_ENCAP_TYPE","features":[18]},{"name":"UNSPECIFIED_NETWORK_GUID","features":[18]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[18]},{"name":"fNDIS_GUID_ALLOW_READ","features":[18]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[18]},{"name":"fNDIS_GUID_ANSI_STRING","features":[18]},{"name":"fNDIS_GUID_ARRAY","features":[18]},{"name":"fNDIS_GUID_METHOD","features":[18]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[18]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[18]},{"name":"fNDIS_GUID_TO_OID","features":[18]},{"name":"fNDIS_GUID_TO_STATUS","features":[18]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[18]}],"452":[{"name":"ACTION_HEADER","features":[94]},{"name":"ADAPTER_STATUS","features":[94]},{"name":"ALL_TRANSPORTS","features":[94]},{"name":"ASYNCH","features":[94]},{"name":"CALL_PENDING","features":[94]},{"name":"DEREGISTERED","features":[94]},{"name":"DUPLICATE","features":[94]},{"name":"DUPLICATE_DEREG","features":[94]},{"name":"FIND_NAME_BUFFER","features":[94]},{"name":"FIND_NAME_HEADER","features":[94]},{"name":"GROUP_NAME","features":[94]},{"name":"HANGUP_COMPLETE","features":[94]},{"name":"HANGUP_PENDING","features":[94]},{"name":"LANA_ENUM","features":[94]},{"name":"LISTEN_OUTSTANDING","features":[94]},{"name":"MAX_LANA","features":[94]},{"name":"MS_NBF","features":[94]},{"name":"NAME_BUFFER","features":[94]},{"name":"NAME_FLAGS_MASK","features":[94]},{"name":"NCB","features":[3,94]},{"name":"NCB","features":[3,94]},{"name":"NCBACTION","features":[94]},{"name":"NCBADDGRNAME","features":[94]},{"name":"NCBADDNAME","features":[94]},{"name":"NCBASTAT","features":[94]},{"name":"NCBCALL","features":[94]},{"name":"NCBCANCEL","features":[94]},{"name":"NCBCHAINSEND","features":[94]},{"name":"NCBCHAINSENDNA","features":[94]},{"name":"NCBDELNAME","features":[94]},{"name":"NCBDGRECV","features":[94]},{"name":"NCBDGRECVBC","features":[94]},{"name":"NCBDGSEND","features":[94]},{"name":"NCBDGSENDBC","features":[94]},{"name":"NCBENUM","features":[94]},{"name":"NCBFINDNAME","features":[94]},{"name":"NCBHANGUP","features":[94]},{"name":"NCBLANSTALERT","features":[94]},{"name":"NCBLISTEN","features":[94]},{"name":"NCBNAMSZ","features":[94]},{"name":"NCBRECV","features":[94]},{"name":"NCBRECVANY","features":[94]},{"name":"NCBRESET","features":[94]},{"name":"NCBSEND","features":[94]},{"name":"NCBSENDNA","features":[94]},{"name":"NCBSSTAT","features":[94]},{"name":"NCBTRACE","features":[94]},{"name":"NCBUNLINK","features":[94]},{"name":"NRC_ACTSES","features":[94]},{"name":"NRC_BADDR","features":[94]},{"name":"NRC_BRIDGE","features":[94]},{"name":"NRC_BUFLEN","features":[94]},{"name":"NRC_CANCEL","features":[94]},{"name":"NRC_CANOCCR","features":[94]},{"name":"NRC_CMDCAN","features":[94]},{"name":"NRC_CMDTMO","features":[94]},{"name":"NRC_DUPENV","features":[94]},{"name":"NRC_DUPNAME","features":[94]},{"name":"NRC_ENVNOTDEF","features":[94]},{"name":"NRC_GOODRET","features":[94]},{"name":"NRC_IFBUSY","features":[94]},{"name":"NRC_ILLCMD","features":[94]},{"name":"NRC_ILLNN","features":[94]},{"name":"NRC_INCOMP","features":[94]},{"name":"NRC_INUSE","features":[94]},{"name":"NRC_INVADDRESS","features":[94]},{"name":"NRC_INVDDID","features":[94]},{"name":"NRC_LOCKFAIL","features":[94]},{"name":"NRC_LOCTFUL","features":[94]},{"name":"NRC_MAXAPPS","features":[94]},{"name":"NRC_NAMCONF","features":[94]},{"name":"NRC_NAMERR","features":[94]},{"name":"NRC_NAMTFUL","features":[94]},{"name":"NRC_NOCALL","features":[94]},{"name":"NRC_NORES","features":[94]},{"name":"NRC_NORESOURCES","features":[94]},{"name":"NRC_NOSAPS","features":[94]},{"name":"NRC_NOWILD","features":[94]},{"name":"NRC_OPENERR","features":[94]},{"name":"NRC_OSRESNOTAV","features":[94]},{"name":"NRC_PENDING","features":[94]},{"name":"NRC_REMTFUL","features":[94]},{"name":"NRC_SABORT","features":[94]},{"name":"NRC_SCLOSED","features":[94]},{"name":"NRC_SNUMOUT","features":[94]},{"name":"NRC_SYSTEM","features":[94]},{"name":"NRC_TOOMANY","features":[94]},{"name":"Netbios","features":[3,94]},{"name":"REGISTERED","features":[94]},{"name":"REGISTERING","features":[94]},{"name":"SESSION_ABORTED","features":[94]},{"name":"SESSION_BUFFER","features":[94]},{"name":"SESSION_ESTABLISHED","features":[94]},{"name":"SESSION_HEADER","features":[94]},{"name":"UNIQUE_NAME","features":[94]}],"453":[{"name":"AA_AUDIT_ALL","features":[95]},{"name":"AA_A_ACL","features":[95]},{"name":"AA_A_CREATE","features":[95]},{"name":"AA_A_DELETE","features":[95]},{"name":"AA_A_OPEN","features":[95]},{"name":"AA_A_OWNER","features":[95]},{"name":"AA_A_WRITE","features":[95]},{"name":"AA_CLOSE","features":[95]},{"name":"AA_F_ACL","features":[95]},{"name":"AA_F_CREATE","features":[95]},{"name":"AA_F_DELETE","features":[95]},{"name":"AA_F_OPEN","features":[95]},{"name":"AA_F_WRITE","features":[95]},{"name":"AA_S_ACL","features":[95]},{"name":"AA_S_CREATE","features":[95]},{"name":"AA_S_DELETE","features":[95]},{"name":"AA_S_OPEN","features":[95]},{"name":"AA_S_WRITE","features":[95]},{"name":"ACCESS_ACCESS_LIST_PARMNUM","features":[95]},{"name":"ACCESS_ATTR_PARMNUM","features":[95]},{"name":"ACCESS_AUDIT","features":[95]},{"name":"ACCESS_COUNT_PARMNUM","features":[95]},{"name":"ACCESS_FAIL_ACL","features":[95]},{"name":"ACCESS_FAIL_DELETE","features":[95]},{"name":"ACCESS_FAIL_MASK","features":[95]},{"name":"ACCESS_FAIL_OPEN","features":[95]},{"name":"ACCESS_FAIL_SHIFT","features":[95]},{"name":"ACCESS_FAIL_WRITE","features":[95]},{"name":"ACCESS_GROUP","features":[95]},{"name":"ACCESS_INFO_0","features":[95]},{"name":"ACCESS_INFO_1","features":[95]},{"name":"ACCESS_INFO_1002","features":[95]},{"name":"ACCESS_LETTERS","features":[95]},{"name":"ACCESS_LIST","features":[95]},{"name":"ACCESS_NONE","features":[95]},{"name":"ACCESS_RESOURCE_NAME_PARMNUM","features":[95]},{"name":"ACCESS_SUCCESS_ACL","features":[95]},{"name":"ACCESS_SUCCESS_DELETE","features":[95]},{"name":"ACCESS_SUCCESS_MASK","features":[95]},{"name":"ACCESS_SUCCESS_OPEN","features":[95]},{"name":"ACCESS_SUCCESS_WRITE","features":[95]},{"name":"ACTION_ADMINUNLOCK","features":[95]},{"name":"ACTION_LOCKOUT","features":[95]},{"name":"ADMIN_OTHER_INFO","features":[95]},{"name":"AE_ACCLIM","features":[95]},{"name":"AE_ACCLIMITEXCD","features":[95]},{"name":"AE_ACCRESTRICT","features":[95]},{"name":"AE_ACLMOD","features":[95]},{"name":"AE_ACLMOD","features":[95]},{"name":"AE_ACLMODFAIL","features":[95]},{"name":"AE_ADD","features":[95]},{"name":"AE_ADMIN","features":[95]},{"name":"AE_ADMINDIS","features":[95]},{"name":"AE_ADMINPRIVREQD","features":[95]},{"name":"AE_ADMIN_CLOSE","features":[95]},{"name":"AE_AUTODIS","features":[95]},{"name":"AE_BADPW","features":[95]},{"name":"AE_CLOSEFILE","features":[95]},{"name":"AE_CLOSEFILE","features":[95]},{"name":"AE_CONNREJ","features":[95]},{"name":"AE_CONNREJ","features":[95]},{"name":"AE_CONNSTART","features":[95]},{"name":"AE_CONNSTART","features":[95]},{"name":"AE_CONNSTOP","features":[95]},{"name":"AE_CONNSTOP","features":[95]},{"name":"AE_DELETE","features":[95]},{"name":"AE_ERROR","features":[95]},{"name":"AE_GENERAL","features":[95]},{"name":"AE_GENERIC","features":[95]},{"name":"AE_GENERIC_TYPE","features":[95]},{"name":"AE_GUEST","features":[95]},{"name":"AE_LIM_DELETED","features":[95]},{"name":"AE_LIM_DISABLED","features":[95]},{"name":"AE_LIM_EXPIRED","features":[95]},{"name":"AE_LIM_INVAL_WKSTA","features":[95]},{"name":"AE_LIM_LOGONHOURS","features":[95]},{"name":"AE_LIM_UNKNOWN","features":[95]},{"name":"AE_LOCKOUT","features":[95]},{"name":"AE_LOCKOUT","features":[95]},{"name":"AE_MOD","features":[95]},{"name":"AE_NETLOGDENIED","features":[95]},{"name":"AE_NETLOGOFF","features":[95]},{"name":"AE_NETLOGOFF","features":[95]},{"name":"AE_NETLOGON","features":[95]},{"name":"AE_NETLOGON","features":[95]},{"name":"AE_NOACCESSPERM","features":[95]},{"name":"AE_NORMAL","features":[95]},{"name":"AE_NORMAL_CLOSE","features":[95]},{"name":"AE_RESACCESS","features":[95]},{"name":"AE_RESACCESS","features":[95]},{"name":"AE_RESACCESS2","features":[95]},{"name":"AE_RESACCESSREJ","features":[95]},{"name":"AE_RESACCESSREJ","features":[95]},{"name":"AE_SERVICESTAT","features":[95]},{"name":"AE_SERVICESTAT","features":[95]},{"name":"AE_SESSDIS","features":[95]},{"name":"AE_SESSLOGOFF","features":[95]},{"name":"AE_SESSLOGOFF","features":[95]},{"name":"AE_SESSLOGON","features":[95]},{"name":"AE_SESSLOGON","features":[95]},{"name":"AE_SESSPWERR","features":[95]},{"name":"AE_SESSPWERR","features":[95]},{"name":"AE_SES_CLOSE","features":[95]},{"name":"AE_SRVCONT","features":[95]},{"name":"AE_SRVPAUSED","features":[95]},{"name":"AE_SRVSTART","features":[95]},{"name":"AE_SRVSTATUS","features":[95]},{"name":"AE_SRVSTATUS","features":[95]},{"name":"AE_SRVSTOP","features":[95]},{"name":"AE_UASMOD","features":[95]},{"name":"AE_UASMOD","features":[95]},{"name":"AE_UAS_GROUP","features":[95]},{"name":"AE_UAS_MODALS","features":[95]},{"name":"AE_UAS_USER","features":[95]},{"name":"AE_UNSHARE","features":[95]},{"name":"AE_USER","features":[95]},{"name":"AE_USERLIMIT","features":[95]},{"name":"AF_OP","features":[95]},{"name":"AF_OP_ACCOUNTS","features":[95]},{"name":"AF_OP_COMM","features":[95]},{"name":"AF_OP_PRINT","features":[95]},{"name":"AF_OP_SERVER","features":[95]},{"name":"ALERTER_MAILSLOT","features":[95]},{"name":"ALERTSZ","features":[95]},{"name":"ALERT_ADMIN_EVENT","features":[95]},{"name":"ALERT_ERRORLOG_EVENT","features":[95]},{"name":"ALERT_MESSAGE_EVENT","features":[95]},{"name":"ALERT_PRINT_EVENT","features":[95]},{"name":"ALERT_USER_EVENT","features":[95]},{"name":"ALIGN_SHIFT","features":[95]},{"name":"ALIGN_SIZE","features":[95]},{"name":"ALLOCATE_RESPONSE","features":[95]},{"name":"AT_ENUM","features":[95]},{"name":"AT_INFO","features":[95]},{"name":"AUDIT_ENTRY","features":[95]},{"name":"BACKUP_MSG_FILENAME","features":[95]},{"name":"BIND_FLAGS1","features":[95]},{"name":"CLTYPE_LEN","features":[95]},{"name":"CNLEN","features":[95]},{"name":"COMPONENT_CHARACTERISTICS","features":[95]},{"name":"CONFIG_INFO_0","features":[95]},{"name":"COULD_NOT_VERIFY_VOLUMES","features":[95]},{"name":"CREATE_BYPASS_CSC","features":[95]},{"name":"CREATE_CRED_RESET","features":[95]},{"name":"CREATE_GLOBAL_MAPPING","features":[95]},{"name":"CREATE_NO_CONNECT","features":[95]},{"name":"CREATE_PERSIST_MAPPING","features":[95]},{"name":"CREATE_REQUIRE_CONNECTION_INTEGRITY","features":[95]},{"name":"CREATE_REQUIRE_CONNECTION_PRIVACY","features":[95]},{"name":"CREATE_WRITE_THROUGH_SEMANTICS","features":[95]},{"name":"CRYPT_KEY_LEN","features":[95]},{"name":"CRYPT_TXT_LEN","features":[95]},{"name":"DEFAULT_PAGES","features":[95]},{"name":"DEF_MAX_BADPW","features":[95]},{"name":"DEF_MAX_PWHIST","features":[95]},{"name":"DEF_MIN_PWLEN","features":[95]},{"name":"DEF_PWUNIQUENESS","features":[95]},{"name":"DEVLEN","features":[95]},{"name":"DFS_CONNECTION_FAILURE","features":[95]},{"name":"DFS_ERROR_ACTIVEDIRECTORY_OFFLINE","features":[95]},{"name":"DFS_ERROR_CLUSTERINFO_FAILED","features":[95]},{"name":"DFS_ERROR_COMPUTERINFO_FAILED","features":[95]},{"name":"DFS_ERROR_CREATEEVENT_FAILED","features":[95]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_FAILURE","features":[95]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_SUCCESS","features":[95]},{"name":"DFS_ERROR_CROSS_FOREST_TRUST_INFO_FAILED","features":[95]},{"name":"DFS_ERROR_DCINFO_FAILED","features":[95]},{"name":"DFS_ERROR_DSCONNECT_FAILED","features":[95]},{"name":"DFS_ERROR_DUPLICATE_LINK","features":[95]},{"name":"DFS_ERROR_HANDLENAMESPACE_FAILED","features":[95]},{"name":"DFS_ERROR_LINKS_OVERLAP","features":[95]},{"name":"DFS_ERROR_LINK_OVERLAP","features":[95]},{"name":"DFS_ERROR_MUTLIPLE_ROOTS_NOT_SUPPORTED","features":[95]},{"name":"DFS_ERROR_NO_DFS_DATA","features":[95]},{"name":"DFS_ERROR_ON_ROOT","features":[95]},{"name":"DFS_ERROR_OVERLAPPING_DIRECTORIES","features":[95]},{"name":"DFS_ERROR_PREFIXTABLE_FAILED","features":[95]},{"name":"DFS_ERROR_REFLECTIONENGINE_FAILED","features":[95]},{"name":"DFS_ERROR_REGISTERSTORE_FAILED","features":[95]},{"name":"DFS_ERROR_REMOVE_LINK_FAILED","features":[95]},{"name":"DFS_ERROR_RESYNCHRONIZE_FAILED","features":[95]},{"name":"DFS_ERROR_ROOTSYNCINIT_FAILED","features":[95]},{"name":"DFS_ERROR_SECURITYINIT_FAILED","features":[95]},{"name":"DFS_ERROR_SITECACHEINIT_FAILED","features":[95]},{"name":"DFS_ERROR_SITESUPPOR_FAILED","features":[95]},{"name":"DFS_ERROR_TARGET_LIST_INCORRECT","features":[95]},{"name":"DFS_ERROR_THREADINIT_FAILED","features":[95]},{"name":"DFS_ERROR_TOO_MANY_ERRORS","features":[95]},{"name":"DFS_ERROR_TRUSTED_DOMAIN_INFO_FAILED","features":[95]},{"name":"DFS_ERROR_UNSUPPORTED_FILESYSTEM","features":[95]},{"name":"DFS_ERROR_WINSOCKINIT_FAILED","features":[95]},{"name":"DFS_INFO_ACTIVEDIRECTORY_ONLINE","features":[95]},{"name":"DFS_INFO_CROSS_FOREST_TRUST_INFO_SUCCESS","features":[95]},{"name":"DFS_INFO_DOMAIN_REFERRAL_MIN_OVERFLOW","features":[95]},{"name":"DFS_INFO_DS_RECONNECTED","features":[95]},{"name":"DFS_INFO_FINISH_BUILDING_NAMESPACE","features":[95]},{"name":"DFS_INFO_FINISH_INIT","features":[95]},{"name":"DFS_INFO_RECONNECT_DATA","features":[95]},{"name":"DFS_INFO_TRUSTED_DOMAIN_INFO_SUCCESS","features":[95]},{"name":"DFS_INIT_SUCCESS","features":[95]},{"name":"DFS_MAX_DNR_ATTEMPTS","features":[95]},{"name":"DFS_OPEN_FAILURE","features":[95]},{"name":"DFS_REFERRAL_FAILURE","features":[95]},{"name":"DFS_REFERRAL_REQUEST","features":[95]},{"name":"DFS_REFERRAL_SUCCESS","features":[95]},{"name":"DFS_ROOT_SHARE_ACQUIRE_FAILED","features":[95]},{"name":"DFS_ROOT_SHARE_ACQUIRE_SUCCESS","features":[95]},{"name":"DFS_SPECIAL_REFERRAL_FAILURE","features":[95]},{"name":"DFS_WARN_DOMAIN_REFERRAL_OVERFLOW","features":[95]},{"name":"DFS_WARN_INCOMPLETE_MOVE","features":[95]},{"name":"DFS_WARN_METADATA_LINK_INFO_INVALID","features":[95]},{"name":"DFS_WARN_METADATA_LINK_TYPE_INCORRECT","features":[95]},{"name":"DNLEN","features":[95]},{"name":"DPP_ADVANCED","features":[95]},{"name":"DSREG_DEVICE_JOIN","features":[95]},{"name":"DSREG_JOIN_INFO","features":[3,95,70]},{"name":"DSREG_JOIN_TYPE","features":[95]},{"name":"DSREG_UNKNOWN_JOIN","features":[95]},{"name":"DSREG_USER_INFO","features":[95]},{"name":"DSREG_WORKPLACE_JOIN","features":[95]},{"name":"EBP_ABOVE","features":[95]},{"name":"EBP_BELOW","features":[95]},{"name":"ENCRYPTED_PWLEN","features":[95]},{"name":"ENUM_BINDING_PATHS_FLAGS","features":[95]},{"name":"ERRLOG2_BASE","features":[95]},{"name":"ERRLOG_BASE","features":[95]},{"name":"ERRLOG_OTHER_INFO","features":[95]},{"name":"ERROR_LOG","features":[95]},{"name":"EVENT_BAD_ACCOUNT_NAME","features":[95]},{"name":"EVENT_BAD_SERVICE_STATE","features":[95]},{"name":"EVENT_BOOT_SYSTEM_DRIVERS_FAILED","features":[95]},{"name":"EVENT_BOWSER_CANT_READ_REGISTRY","features":[95]},{"name":"EVENT_BOWSER_ELECTION_RECEIVED","features":[95]},{"name":"EVENT_BOWSER_ELECTION_SENT_FIND_MASTER_FAILED","features":[95]},{"name":"EVENT_BOWSER_ELECTION_SENT_GETBLIST_FAILED","features":[95]},{"name":"EVENT_BOWSER_GETBROWSERLIST_THRESHOLD_EXCEEDED","features":[95]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM","features":[95]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM_THRESHOLD","features":[95]},{"name":"EVENT_BOWSER_MAILSLOT_DATAGRAM_THRESHOLD_EXCEEDED","features":[95]},{"name":"EVENT_BOWSER_NAME_CONVERSION_FAILED","features":[95]},{"name":"EVENT_BOWSER_NON_MASTER_MASTER_ANNOUNCE","features":[95]},{"name":"EVENT_BOWSER_NON_PDC_WON_ELECTION","features":[95]},{"name":"EVENT_BOWSER_OLD_BACKUP_FOUND","features":[95]},{"name":"EVENT_BOWSER_OTHER_MASTER_ON_NET","features":[95]},{"name":"EVENT_BOWSER_PDC_LOST_ELECTION","features":[95]},{"name":"EVENT_BOWSER_PROMOTED_WHILE_ALREADY_MASTER","features":[95]},{"name":"EVENT_BRIDGE_ADAPTER_BIND_FAILED","features":[95]},{"name":"EVENT_BRIDGE_ADAPTER_FILTER_FAILED","features":[95]},{"name":"EVENT_BRIDGE_ADAPTER_LINK_SPEED_QUERY_FAILED","features":[95]},{"name":"EVENT_BRIDGE_ADAPTER_MAC_ADDR_QUERY_FAILED","features":[95]},{"name":"EVENT_BRIDGE_ADAPTER_NAME_QUERY_FAILED","features":[95]},{"name":"EVENT_BRIDGE_BUFFER_POOL_CREATION_FAILED","features":[95]},{"name":"EVENT_BRIDGE_DEVICE_CREATION_FAILED","features":[95]},{"name":"EVENT_BRIDGE_ETHERNET_NOT_OFFERED","features":[95]},{"name":"EVENT_BRIDGE_INIT_MALLOC_FAILED","features":[95]},{"name":"EVENT_BRIDGE_MINIPORT_INIT_FAILED","features":[95]},{"name":"EVENT_BRIDGE_MINIPORT_REGISTER_FAILED","features":[95]},{"name":"EVENT_BRIDGE_MINIPROT_DEVNAME_MISSING","features":[95]},{"name":"EVENT_BRIDGE_NO_BRIDGE_MAC_ADDR","features":[95]},{"name":"EVENT_BRIDGE_PACKET_POOL_CREATION_FAILED","features":[95]},{"name":"EVENT_BRIDGE_PROTOCOL_REGISTER_FAILED","features":[95]},{"name":"EVENT_BRIDGE_THREAD_CREATION_FAILED","features":[95]},{"name":"EVENT_BRIDGE_THREAD_REF_FAILED","features":[95]},{"name":"EVENT_BROWSER_BACKUP_STOPPED","features":[95]},{"name":"EVENT_BROWSER_DEPENDANT_SERVICE_FAILED","features":[95]},{"name":"EVENT_BROWSER_DOMAIN_LIST_FAILED","features":[95]},{"name":"EVENT_BROWSER_DOMAIN_LIST_RETRIEVED","features":[95]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STARTED","features":[95]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STOPPED","features":[95]},{"name":"EVENT_BROWSER_ELECTION_SENT_ROLE_CHANGED","features":[95]},{"name":"EVENT_BROWSER_GETBLIST_RECEIVED_NOT_MASTER","features":[95]},{"name":"EVENT_BROWSER_ILLEGAL_CONFIG","features":[95]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED","features":[95]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_NO_MASTER","features":[95]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_STOPPING","features":[95]},{"name":"EVENT_BROWSER_NOT_STARTED_IPX_CONFIG_MISMATCH","features":[95]},{"name":"EVENT_BROWSER_OTHERDOMAIN_ADD_FAILED","features":[95]},{"name":"EVENT_BROWSER_ROLE_CHANGE_FAILED","features":[95]},{"name":"EVENT_BROWSER_SERVER_LIST_FAILED","features":[95]},{"name":"EVENT_BROWSER_SERVER_LIST_RETRIEVED","features":[95]},{"name":"EVENT_BROWSER_STATUS_BITS_UPDATE_FAILED","features":[95]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED","features":[95]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED_II","features":[95]},{"name":"EVENT_CIRCULAR_DEPENDENCY_AUTO","features":[95]},{"name":"EVENT_CIRCULAR_DEPENDENCY_DEMAND","features":[95]},{"name":"EVENT_COMMAND_NOT_INTERACTIVE","features":[95]},{"name":"EVENT_COMMAND_START_FAILED","features":[95]},{"name":"EVENT_CONNECTION_TIMEOUT","features":[95]},{"name":"EVENT_ComputerNameChange","features":[95]},{"name":"EVENT_DAV_REDIR_DELAYED_WRITE_FAILED","features":[95]},{"name":"EVENT_DCOM_ASSERTION_FAILURE","features":[95]},{"name":"EVENT_DCOM_COMPLUS_DISABLED","features":[95]},{"name":"EVENT_DCOM_INVALID_ENDPOINT_DATA","features":[95]},{"name":"EVENT_DEPEND_ON_LATER_GROUP","features":[95]},{"name":"EVENT_DEPEND_ON_LATER_SERVICE","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT","features":[95]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_NOTSUPP","features":[95]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_OTHER","features":[95]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_REFUSED","features":[95]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SECURITY","features":[95]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SERVERFAIL","features":[95]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_TIMEOUT","features":[95]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_NOTSUPP","features":[95]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_OTHER","features":[95]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_REFUSED","features":[95]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SECURITY","features":[95]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SERVERFAIL","features":[95]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_TIMEOUT","features":[95]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER","features":[95]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_REGISTERED_PTR","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT","features":[95]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[95]},{"name":"EVENT_DNSDomainNameChange","features":[95]},{"name":"EVENT_DNS_CACHE_NETWORK_PERF_WARNING","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_LOW_MEMORY","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_CONTROL","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DLL","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DONE_EVENT","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_ENTRY","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_RPC","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_SHUTDOWN_NOTIFY","features":[95]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_UPDATE","features":[95]},{"name":"EVENT_DNS_CACHE_UNABLE_TO_REACH_SERVER_WARNING","features":[95]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_SIZE_ZERO","features":[95]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_TOO_LONG","features":[95]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_REFERESH","features":[95]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_ROOT_KEY","features":[95]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_SUBKEY","features":[95]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_ROOT_KEY","features":[95]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_SUBKEY","features":[95]},{"name":"EVENT_EQOS_ERROR_PROCESSING_MACHINE_POLICY_FIELD","features":[95]},{"name":"EVENT_EQOS_ERROR_PROCESSING_USER_POLICY_FIELD","features":[95]},{"name":"EVENT_EQOS_ERROR_SETTING_APP_MARKING","features":[95]},{"name":"EVENT_EQOS_ERROR_SETTING_TCP_AUTOTUNING","features":[95]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_SIZE_ZERO","features":[95]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_TOO_LONG","features":[95]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_REFERESH","features":[95]},{"name":"EVENT_EQOS_INFO_APP_MARKING_ALLOWED","features":[95]},{"name":"EVENT_EQOS_INFO_APP_MARKING_IGNORED","features":[95]},{"name":"EVENT_EQOS_INFO_APP_MARKING_NOT_CONFIGURED","features":[95]},{"name":"EVENT_EQOS_INFO_LOCAL_SETTING_DONT_USE_NLA","features":[95]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_NO_CHANGE","features":[95]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_WITH_CHANGE","features":[95]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_HIGHLY_RESTRICTED","features":[95]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NORMAL","features":[95]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NOT_CONFIGURED","features":[95]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_OFF","features":[95]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_RESTRICTED","features":[95]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_NO_CHANGE","features":[95]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_WITH_CHANGE","features":[95]},{"name":"EVENT_EQOS_URL_QOS_APPLICATION_CONFLICT","features":[95]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_CONFLICT","features":[95]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_NO_FULLPATH_APPNAME","features":[95]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_PROFILE_NOT_SPECIFIED","features":[95]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_QUOTA_EXCEEDED","features":[95]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_VERSION","features":[95]},{"name":"EVENT_EQOS_WARNING_TEST_1","features":[95]},{"name":"EVENT_EQOS_WARNING_TEST_2","features":[95]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_CONFLICT","features":[95]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_NO_FULLPATH_APPNAME","features":[95]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_PROFILE_NOT_SPECIFIED","features":[95]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_QUOTA_EXCEEDED","features":[95]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_VERSION","features":[95]},{"name":"EVENT_EventLogProductInfo","features":[95]},{"name":"EVENT_EventlogAbnormalShutdown","features":[95]},{"name":"EVENT_EventlogStarted","features":[95]},{"name":"EVENT_EventlogStopped","features":[95]},{"name":"EVENT_EventlogUptime","features":[95]},{"name":"EVENT_FIRST_LOGON_FAILED","features":[95]},{"name":"EVENT_FIRST_LOGON_FAILED_II","features":[95]},{"name":"EVENT_FRS_ACCESS_CHECKS_DISABLED","features":[95]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_UNKNOWN","features":[95]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_USER","features":[95]},{"name":"EVENT_FRS_ASSERT","features":[95]},{"name":"EVENT_FRS_BAD_REG_DATA","features":[95]},{"name":"EVENT_FRS_CANNOT_COMMUNICATE","features":[95]},{"name":"EVENT_FRS_CANNOT_CREATE_UUID","features":[95]},{"name":"EVENT_FRS_CANNOT_START_BACKUP_RESTORE_IN_PROGRESS","features":[95]},{"name":"EVENT_FRS_CANT_OPEN_PREINSTALL","features":[95]},{"name":"EVENT_FRS_CANT_OPEN_STAGE","features":[95]},{"name":"EVENT_FRS_DATABASE_SPACE","features":[95]},{"name":"EVENT_FRS_DISK_WRITE_CACHE_ENABLED","features":[95]},{"name":"EVENT_FRS_DS_POLL_ERROR_SUMMARY","features":[95]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION","features":[95]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION_SYSVOL","features":[95]},{"name":"EVENT_FRS_ERROR","features":[95]},{"name":"EVENT_FRS_ERROR_REPLICA_SET_DELETED","features":[95]},{"name":"EVENT_FRS_HUGE_FILE","features":[95]},{"name":"EVENT_FRS_IN_ERROR_STATE","features":[95]},{"name":"EVENT_FRS_JET_1414","features":[95]},{"name":"EVENT_FRS_JOIN_FAIL_TIME_SKEW","features":[95]},{"name":"EVENT_FRS_LONG_JOIN","features":[95]},{"name":"EVENT_FRS_LONG_JOIN_DONE","features":[95]},{"name":"EVENT_FRS_MOVED_PREEXISTING","features":[95]},{"name":"EVENT_FRS_NO_DNS_ATTRIBUTE","features":[95]},{"name":"EVENT_FRS_NO_SID","features":[95]},{"name":"EVENT_FRS_OVERLAPS_LOGGING","features":[95]},{"name":"EVENT_FRS_OVERLAPS_OTHER_STAGE","features":[95]},{"name":"EVENT_FRS_OVERLAPS_ROOT","features":[95]},{"name":"EVENT_FRS_OVERLAPS_STAGE","features":[95]},{"name":"EVENT_FRS_OVERLAPS_WORKING","features":[95]},{"name":"EVENT_FRS_PREPARE_ROOT_FAILED","features":[95]},{"name":"EVENT_FRS_REPLICA_IN_JRNL_WRAP_ERROR","features":[95]},{"name":"EVENT_FRS_REPLICA_NO_ROOT_CHANGE","features":[95]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_FAIL","features":[95]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_OK","features":[95]},{"name":"EVENT_FRS_REPLICA_SET_CXTIONS","features":[95]},{"name":"EVENT_FRS_RMTCO_TIME_SKEW","features":[95]},{"name":"EVENT_FRS_ROOT_HAS_MOVED","features":[95]},{"name":"EVENT_FRS_ROOT_NOT_VALID","features":[95]},{"name":"EVENT_FRS_STAGE_NOT_VALID","features":[95]},{"name":"EVENT_FRS_STAGING_AREA_FULL","features":[95]},{"name":"EVENT_FRS_STARTING","features":[95]},{"name":"EVENT_FRS_STOPPED","features":[95]},{"name":"EVENT_FRS_STOPPED_ASSERT","features":[95]},{"name":"EVENT_FRS_STOPPED_FORCE","features":[95]},{"name":"EVENT_FRS_STOPPING","features":[95]},{"name":"EVENT_FRS_SYSVOL_NOT_READY","features":[95]},{"name":"EVENT_FRS_SYSVOL_NOT_READY_PRIMARY","features":[95]},{"name":"EVENT_FRS_SYSVOL_READY","features":[95]},{"name":"EVENT_FRS_VOLUME_NOT_SUPPORTED","features":[95]},{"name":"EVENT_INVALID_DRIVER_DEPENDENCY","features":[95]},{"name":"EVENT_IPX_CREATE_DEVICE","features":[95]},{"name":"EVENT_IPX_ILLEGAL_CONFIG","features":[95]},{"name":"EVENT_IPX_INTERNAL_NET_INVALID","features":[95]},{"name":"EVENT_IPX_NEW_DEFAULT_TYPE","features":[95]},{"name":"EVENT_IPX_NO_ADAPTERS","features":[95]},{"name":"EVENT_IPX_NO_FRAME_TYPES","features":[95]},{"name":"EVENT_IPX_SAP_ANNOUNCE","features":[95]},{"name":"EVENT_NBT_BAD_BACKUP_WINS_ADDR","features":[95]},{"name":"EVENT_NBT_BAD_PRIMARY_WINS_ADDR","features":[95]},{"name":"EVENT_NBT_CREATE_ADDRESS","features":[95]},{"name":"EVENT_NBT_CREATE_CONNECTION","features":[95]},{"name":"EVENT_NBT_CREATE_DEVICE","features":[95]},{"name":"EVENT_NBT_CREATE_DRIVER","features":[95]},{"name":"EVENT_NBT_DUPLICATE_NAME","features":[95]},{"name":"EVENT_NBT_DUPLICATE_NAME_ERROR","features":[95]},{"name":"EVENT_NBT_NAME_RELEASE","features":[95]},{"name":"EVENT_NBT_NAME_SERVER_ADDRS","features":[95]},{"name":"EVENT_NBT_NON_OS_INIT","features":[95]},{"name":"EVENT_NBT_NO_BACKUP_WINS","features":[95]},{"name":"EVENT_NBT_NO_DEVICES","features":[95]},{"name":"EVENT_NBT_NO_RESOURCES","features":[95]},{"name":"EVENT_NBT_NO_WINS","features":[95]},{"name":"EVENT_NBT_OPEN_REG_LINKAGE","features":[95]},{"name":"EVENT_NBT_OPEN_REG_NAMESERVER","features":[95]},{"name":"EVENT_NBT_OPEN_REG_PARAMS","features":[95]},{"name":"EVENT_NBT_READ_BIND","features":[95]},{"name":"EVENT_NBT_READ_EXPORT","features":[95]},{"name":"EVENT_NBT_TIMERS","features":[95]},{"name":"EVENT_NDIS_ADAPTER_CHECK_ERROR","features":[95]},{"name":"EVENT_NDIS_ADAPTER_DISABLED","features":[95]},{"name":"EVENT_NDIS_ADAPTER_NOT_FOUND","features":[95]},{"name":"EVENT_NDIS_BAD_IO_BASE_ADDRESS","features":[95]},{"name":"EVENT_NDIS_BAD_VERSION","features":[95]},{"name":"EVENT_NDIS_CABLE_DISCONNECTED_ERROR","features":[95]},{"name":"EVENT_NDIS_DMA_CONFLICT","features":[95]},{"name":"EVENT_NDIS_DRIVER_FAILURE","features":[95]},{"name":"EVENT_NDIS_HARDWARE_FAILURE","features":[95]},{"name":"EVENT_NDIS_INTERRUPT_CONFLICT","features":[95]},{"name":"EVENT_NDIS_INTERRUPT_CONNECT","features":[95]},{"name":"EVENT_NDIS_INVALID_DOWNLOAD_FILE_ERROR","features":[95]},{"name":"EVENT_NDIS_INVALID_VALUE_FROM_ADAPTER","features":[95]},{"name":"EVENT_NDIS_IO_PORT_CONFLICT","features":[95]},{"name":"EVENT_NDIS_LOBE_FAILUE_ERROR","features":[95]},{"name":"EVENT_NDIS_MAXFRAMESIZE_ERROR","features":[95]},{"name":"EVENT_NDIS_MAXINTERNALBUFS_ERROR","features":[95]},{"name":"EVENT_NDIS_MAXMULTICAST_ERROR","features":[95]},{"name":"EVENT_NDIS_MAXRECEIVES_ERROR","features":[95]},{"name":"EVENT_NDIS_MAXTRANSMITS_ERROR","features":[95]},{"name":"EVENT_NDIS_MEMORY_CONFLICT","features":[95]},{"name":"EVENT_NDIS_MISSING_CONFIGURATION_PARAMETER","features":[95]},{"name":"EVENT_NDIS_NETWORK_ADDRESS","features":[95]},{"name":"EVENT_NDIS_OUT_OF_RESOURCE","features":[95]},{"name":"EVENT_NDIS_PORT_OR_DMA_CONFLICT","features":[95]},{"name":"EVENT_NDIS_PRODUCTID_ERROR","features":[95]},{"name":"EVENT_NDIS_RECEIVE_SPACE_SMALL","features":[95]},{"name":"EVENT_NDIS_REMOVE_RECEIVED_ERROR","features":[95]},{"name":"EVENT_NDIS_RESET_FAILURE_CORRECTION","features":[95]},{"name":"EVENT_NDIS_RESET_FAILURE_ERROR","features":[95]},{"name":"EVENT_NDIS_RESOURCE_CONFLICT","features":[95]},{"name":"EVENT_NDIS_SIGNAL_LOSS_ERROR","features":[95]},{"name":"EVENT_NDIS_TIMEOUT","features":[95]},{"name":"EVENT_NDIS_TOKEN_RING_CORRECTION","features":[95]},{"name":"EVENT_NDIS_UNSUPPORTED_CONFIGURATION","features":[95]},{"name":"EVENT_PS_ADMISSIONCONTROL_OVERFLOW","features":[95]},{"name":"EVENT_PS_BAD_BESTEFFORT_LIMIT","features":[95]},{"name":"EVENT_PS_BINDING_FAILED","features":[95]},{"name":"EVENT_PS_GPC_REGISTER_FAILED","features":[95]},{"name":"EVENT_PS_INIT_DEVICE_FAILED","features":[95]},{"name":"EVENT_PS_MISSING_ADAPTER_REGISTRY_DATA","features":[95]},{"name":"EVENT_PS_NETWORK_ADDRESS_FAIL","features":[95]},{"name":"EVENT_PS_NO_RESOURCES_FOR_INIT","features":[95]},{"name":"EVENT_PS_QUERY_OID_GEN_LINK_SPEED","features":[95]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_FRAME_SIZE","features":[95]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_TOTAL_SIZE","features":[95]},{"name":"EVENT_PS_REGISTER_ADDRESS_FAMILY_FAILED","features":[95]},{"name":"EVENT_PS_REGISTER_MINIPORT_FAILED","features":[95]},{"name":"EVENT_PS_REGISTER_PROTOCOL_FAILED","features":[95]},{"name":"EVENT_PS_RESOURCE_POOL","features":[95]},{"name":"EVENT_PS_WAN_LIMITED_BESTEFFORT","features":[95]},{"name":"EVENT_PS_WMI_INSTANCE_NAME_FAILED","features":[95]},{"name":"EVENT_RDR_AT_THREAD_MAX","features":[95]},{"name":"EVENT_RDR_CANT_BIND_TRANSPORT","features":[95]},{"name":"EVENT_RDR_CANT_BUILD_SMB_HEADER","features":[95]},{"name":"EVENT_RDR_CANT_CREATE_DEVICE","features":[95]},{"name":"EVENT_RDR_CANT_CREATE_THREAD","features":[95]},{"name":"EVENT_RDR_CANT_GET_SECURITY_CONTEXT","features":[95]},{"name":"EVENT_RDR_CANT_READ_REGISTRY","features":[95]},{"name":"EVENT_RDR_CANT_REGISTER_ADDRESS","features":[95]},{"name":"EVENT_RDR_CANT_SET_THREAD","features":[95]},{"name":"EVENT_RDR_CLOSE_BEHIND","features":[95]},{"name":"EVENT_RDR_CONNECTION","features":[95]},{"name":"EVENT_RDR_CONNECTION_REFERENCE","features":[95]},{"name":"EVENT_RDR_CONTEXTS","features":[95]},{"name":"EVENT_RDR_DELAYED_SET_ATTRIBUTES_FAILED","features":[95]},{"name":"EVENT_RDR_DELETEONCLOSE_FAILED","features":[95]},{"name":"EVENT_RDR_DISPOSITION","features":[95]},{"name":"EVENT_RDR_ENCRYPT","features":[95]},{"name":"EVENT_RDR_FAILED_UNLOCK","features":[95]},{"name":"EVENT_RDR_INVALID_LOCK_REPLY","features":[95]},{"name":"EVENT_RDR_INVALID_OPLOCK","features":[95]},{"name":"EVENT_RDR_INVALID_REPLY","features":[95]},{"name":"EVENT_RDR_INVALID_SMB","features":[95]},{"name":"EVENT_RDR_MAXCMDS","features":[95]},{"name":"EVENT_RDR_OPLOCK_SMB","features":[95]},{"name":"EVENT_RDR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[95]},{"name":"EVENT_RDR_RESOURCE_SHORTAGE","features":[95]},{"name":"EVENT_RDR_SECURITY_SIGNATURE_MISMATCH","features":[95]},{"name":"EVENT_RDR_SERVER_REFERENCE","features":[95]},{"name":"EVENT_RDR_SMB_REFERENCE","features":[95]},{"name":"EVENT_RDR_TIMEOUT","features":[95]},{"name":"EVENT_RDR_TIMEZONE_BIAS_TOO_LARGE","features":[95]},{"name":"EVENT_RDR_UNEXPECTED_ERROR","features":[95]},{"name":"EVENT_RDR_WRITE_BEHIND_FLUSH_FAILED","features":[95]},{"name":"EVENT_READFILE_TIMEOUT","features":[95]},{"name":"EVENT_REVERTED_TO_LASTKNOWNGOOD","features":[95]},{"name":"EVENT_RPCSS_ACTIVATION_ERROR","features":[95]},{"name":"EVENT_RPCSS_CREATEDEBUGGERPROCESS_FAILURE","features":[95]},{"name":"EVENT_RPCSS_CREATEPROCESS_FAILURE","features":[95]},{"name":"EVENT_RPCSS_DEFAULT_LAUNCH_ACCESS_DENIED","features":[95]},{"name":"EVENT_RPCSS_LAUNCH_ACCESS_DENIED","features":[95]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR","features":[95]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR_WITH_FILE","features":[95]},{"name":"EVENT_RPCSS_REMOTE_SIDE_UNAVAILABLE","features":[95]},{"name":"EVENT_RPCSS_RUNAS_CANT_LOGIN","features":[95]},{"name":"EVENT_RPCSS_RUNAS_CREATEPROCESS_FAILURE","features":[95]},{"name":"EVENT_RPCSS_SERVER_NOT_RESPONDING","features":[95]},{"name":"EVENT_RPCSS_SERVER_START_TIMEOUT","features":[95]},{"name":"EVENT_RPCSS_START_SERVICE_FAILURE","features":[95]},{"name":"EVENT_RPCSS_STOP_SERVICE_FAILURE","features":[95]},{"name":"EVENT_RUNNING_LASTKNOWNGOOD","features":[95]},{"name":"EVENT_SCOPE_LABEL_TOO_LONG","features":[95]},{"name":"EVENT_SCOPE_TOO_LONG","features":[95]},{"name":"EVENT_SECOND_LOGON_FAILED","features":[95]},{"name":"EVENT_SERVICE_CONFIG_BACKOUT_FAILED","features":[95]},{"name":"EVENT_SERVICE_CONTROL_SUCCESS","features":[95]},{"name":"EVENT_SERVICE_CRASH","features":[95]},{"name":"EVENT_SERVICE_CRASH_NO_ACTION","features":[95]},{"name":"EVENT_SERVICE_DIFFERENT_PID_CONNECTED","features":[95]},{"name":"EVENT_SERVICE_EXIT_FAILED","features":[95]},{"name":"EVENT_SERVICE_EXIT_FAILED_SPECIFIC","features":[95]},{"name":"EVENT_SERVICE_LOGON_TYPE_NOT_GRANTED","features":[95]},{"name":"EVENT_SERVICE_NOT_INTERACTIVE","features":[95]},{"name":"EVENT_SERVICE_RECOVERY_FAILED","features":[95]},{"name":"EVENT_SERVICE_SCESRV_FAILED","features":[95]},{"name":"EVENT_SERVICE_SHUTDOWN_FAILED","features":[95]},{"name":"EVENT_SERVICE_START_AT_BOOT_FAILED","features":[95]},{"name":"EVENT_SERVICE_START_FAILED","features":[95]},{"name":"EVENT_SERVICE_START_FAILED_GROUP","features":[95]},{"name":"EVENT_SERVICE_START_FAILED_II","features":[95]},{"name":"EVENT_SERVICE_START_FAILED_NONE","features":[95]},{"name":"EVENT_SERVICE_START_HUNG","features":[95]},{"name":"EVENT_SERVICE_START_TYPE_CHANGED","features":[95]},{"name":"EVENT_SERVICE_STATUS_SUCCESS","features":[95]},{"name":"EVENT_SERVICE_STOP_SUCCESS_WITH_REASON","features":[95]},{"name":"EVENT_SEVERE_SERVICE_FAILED","features":[95]},{"name":"EVENT_SRV_CANT_BIND_DUP_NAME","features":[95]},{"name":"EVENT_SRV_CANT_BIND_TO_TRANSPORT","features":[95]},{"name":"EVENT_SRV_CANT_CHANGE_DOMAIN_NAME","features":[95]},{"name":"EVENT_SRV_CANT_CREATE_DEVICE","features":[95]},{"name":"EVENT_SRV_CANT_CREATE_PROCESS","features":[95]},{"name":"EVENT_SRV_CANT_CREATE_THREAD","features":[95]},{"name":"EVENT_SRV_CANT_GROW_TABLE","features":[95]},{"name":"EVENT_SRV_CANT_LOAD_DRIVER","features":[95]},{"name":"EVENT_SRV_CANT_MAP_ERROR","features":[95]},{"name":"EVENT_SRV_CANT_OPEN_NPFS","features":[95]},{"name":"EVENT_SRV_CANT_RECREATE_SHARE","features":[95]},{"name":"EVENT_SRV_CANT_START_SCAVENGER","features":[95]},{"name":"EVENT_SRV_CANT_UNLOAD_DRIVER","features":[95]},{"name":"EVENT_SRV_DISK_FULL","features":[95]},{"name":"EVENT_SRV_DOS_ATTACK_DETECTED","features":[95]},{"name":"EVENT_SRV_INVALID_REGISTRY_VALUE","features":[95]},{"name":"EVENT_SRV_INVALID_REQUEST","features":[95]},{"name":"EVENT_SRV_INVALID_SD","features":[95]},{"name":"EVENT_SRV_IRP_STACK_SIZE","features":[95]},{"name":"EVENT_SRV_KEY_NOT_CREATED","features":[95]},{"name":"EVENT_SRV_KEY_NOT_FOUND","features":[95]},{"name":"EVENT_SRV_NETWORK_ERROR","features":[95]},{"name":"EVENT_SRV_NONPAGED_POOL_LIMIT","features":[95]},{"name":"EVENT_SRV_NO_BLOCKING_IO","features":[95]},{"name":"EVENT_SRV_NO_FREE_CONNECTIONS","features":[95]},{"name":"EVENT_SRV_NO_FREE_RAW_WORK_ITEM","features":[95]},{"name":"EVENT_SRV_NO_NONPAGED_POOL","features":[95]},{"name":"EVENT_SRV_NO_PAGED_POOL","features":[95]},{"name":"EVENT_SRV_NO_TRANSPORTS_BOUND","features":[95]},{"name":"EVENT_SRV_NO_VIRTUAL_MEMORY","features":[95]},{"name":"EVENT_SRV_NO_WORK_ITEM","features":[95]},{"name":"EVENT_SRV_OUT_OF_WORK_ITEM_DOS","features":[95]},{"name":"EVENT_SRV_PAGED_POOL_LIMIT","features":[95]},{"name":"EVENT_SRV_RESOURCE_SHORTAGE","features":[95]},{"name":"EVENT_SRV_SERVICE_FAILED","features":[95]},{"name":"EVENT_SRV_TOO_MANY_DOS","features":[95]},{"name":"EVENT_SRV_TXF_INIT_FAILED","features":[95]},{"name":"EVENT_SRV_UNEXPECTED_DISC","features":[95]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE","features":[95]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE_CNT","features":[95]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE","features":[95]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE_CNT","features":[95]},{"name":"EVENT_STREAMS_STRLOG","features":[95]},{"name":"EVENT_TAKE_OWNERSHIP","features":[95]},{"name":"EVENT_TCPIP6_STARTED","features":[95]},{"name":"EVENT_TCPIP_ADAPTER_REG_FAILURE","features":[95]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT1","features":[95]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT2","features":[95]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ADDRESS_LIMIT_REACHED","features":[95]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ROUTE_LIMIT_REACHED","features":[95]},{"name":"EVENT_TCPIP_CREATE_DEVICE_FAILED","features":[95]},{"name":"EVENT_TCPIP_DHCP_INIT_FAILED","features":[95]},{"name":"EVENT_TCPIP_INTERFACE_BIND_FAILURE","features":[95]},{"name":"EVENT_TCPIP_INVALID_ADDRESS","features":[95]},{"name":"EVENT_TCPIP_INVALID_DEFAULT_GATEWAY","features":[95]},{"name":"EVENT_TCPIP_INVALID_MASK","features":[95]},{"name":"EVENT_TCPIP_IPV4_UNINSTALLED","features":[95]},{"name":"EVENT_TCPIP_IP_INIT_FAILED","features":[95]},{"name":"EVENT_TCPIP_MEDIA_CONNECT","features":[95]},{"name":"EVENT_TCPIP_MEDIA_DISCONNECT","features":[95]},{"name":"EVENT_TCPIP_NO_ADAPTER_RESOURCES","features":[95]},{"name":"EVENT_TCPIP_NO_ADDRESS_LIST","features":[95]},{"name":"EVENT_TCPIP_NO_BINDINGS","features":[95]},{"name":"EVENT_TCPIP_NO_MASK","features":[95]},{"name":"EVENT_TCPIP_NO_MASK_LIST","features":[95]},{"name":"EVENT_TCPIP_NO_RESOURCES_FOR_INIT","features":[95]},{"name":"EVENT_TCPIP_NTE_CONTEXT_LIST_FAILURE","features":[95]},{"name":"EVENT_TCPIP_OUT_OF_ORDER_FRAGMENTS_EXCEEDED","features":[95]},{"name":"EVENT_TCPIP_PCF_CLEAR_FILTER_FAILURE","features":[95]},{"name":"EVENT_TCPIP_PCF_MISSING_CAPABILITY","features":[95]},{"name":"EVENT_TCPIP_PCF_MULTICAST_OID_ISSUE","features":[95]},{"name":"EVENT_TCPIP_PCF_NO_ARP_FILTER","features":[95]},{"name":"EVENT_TCPIP_PCF_SET_FILTER_FAILURE","features":[95]},{"name":"EVENT_TCPIP_TCP_CONNECTIONS_PERF_IMPACTED","features":[95]},{"name":"EVENT_TCPIP_TCP_CONNECT_LIMIT_REACHED","features":[95]},{"name":"EVENT_TCPIP_TCP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[95]},{"name":"EVENT_TCPIP_TCP_INIT_FAILED","features":[95]},{"name":"EVENT_TCPIP_TCP_MPP_ATTACKS_DETECTED","features":[95]},{"name":"EVENT_TCPIP_TCP_TIME_WAIT_COLLISION","features":[95]},{"name":"EVENT_TCPIP_TCP_WSD_WS_RESTRICTED","features":[95]},{"name":"EVENT_TCPIP_TOO_MANY_GATEWAYS","features":[95]},{"name":"EVENT_TCPIP_TOO_MANY_NETS","features":[95]},{"name":"EVENT_TCPIP_UDP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[95]},{"name":"EVENT_TCPIP_UDP_LIMIT_REACHED","features":[95]},{"name":"EVENT_TRANSACT_INVALID","features":[95]},{"name":"EVENT_TRANSACT_TIMEOUT","features":[95]},{"name":"EVENT_TRANSPORT_ADAPTER_NOT_FOUND","features":[95]},{"name":"EVENT_TRANSPORT_BAD_PROTOCOL","features":[95]},{"name":"EVENT_TRANSPORT_BINDING_FAILED","features":[95]},{"name":"EVENT_TRANSPORT_QUERY_OID_FAILED","features":[95]},{"name":"EVENT_TRANSPORT_REGISTER_FAILED","features":[95]},{"name":"EVENT_TRANSPORT_RESOURCE_LIMIT","features":[95]},{"name":"EVENT_TRANSPORT_RESOURCE_POOL","features":[95]},{"name":"EVENT_TRANSPORT_RESOURCE_SPECIFIC","features":[95]},{"name":"EVENT_TRANSPORT_SET_OID_FAILED","features":[95]},{"name":"EVENT_TRANSPORT_TOO_MANY_LINKS","features":[95]},{"name":"EVENT_TRANSPORT_TRANSFER_DATA","features":[95]},{"name":"EVENT_TRK_INTERNAL_ERROR","features":[95]},{"name":"EVENT_TRK_SERVICE_CORRUPT_LOG","features":[95]},{"name":"EVENT_TRK_SERVICE_DUPLICATE_VOLIDS","features":[95]},{"name":"EVENT_TRK_SERVICE_MOVE_QUOTA_EXCEEDED","features":[95]},{"name":"EVENT_TRK_SERVICE_START_FAILURE","features":[95]},{"name":"EVENT_TRK_SERVICE_START_SUCCESS","features":[95]},{"name":"EVENT_TRK_SERVICE_VOLUME_CLAIM","features":[95]},{"name":"EVENT_TRK_SERVICE_VOLUME_CREATE","features":[95]},{"name":"EVENT_TRK_SERVICE_VOL_QUOTA_EXCEEDED","features":[95]},{"name":"EVENT_UP_DRIVER_ON_MP","features":[95]},{"name":"EVENT_WEBCLIENT_CLOSE_DELETE_FAILED","features":[95]},{"name":"EVENT_WEBCLIENT_CLOSE_PROPPATCH_FAILED","features":[95]},{"name":"EVENT_WEBCLIENT_CLOSE_PUT_FAILED","features":[95]},{"name":"EVENT_WEBCLIENT_SETINFO_PROPPATCH_FAILED","features":[95]},{"name":"EVENT_WINNAT_SESSION_LIMIT_REACHED","features":[95]},{"name":"EVENT_WINSOCK_CLOSESOCKET_STUCK","features":[95]},{"name":"EVENT_WINSOCK_TDI_FILTER_DETECTED","features":[95]},{"name":"EVENT_WSK_OWNINGTHREAD_PARAMETER_IGNORED","features":[95]},{"name":"EVLEN","features":[95]},{"name":"EXTRA_EXIT_POINT","features":[95]},{"name":"EXTRA_EXIT_POINT_DELETED","features":[95]},{"name":"EXTRA_EXIT_POINT_NOT_DELETED","features":[95]},{"name":"EXTRA_VOLUME","features":[95]},{"name":"EXTRA_VOLUME_DELETED","features":[95]},{"name":"EXTRA_VOLUME_NOT_DELETED","features":[95]},{"name":"FILTER_INTERDOMAIN_TRUST_ACCOUNT","features":[95]},{"name":"FILTER_NORMAL_ACCOUNT","features":[95]},{"name":"FILTER_SERVER_TRUST_ACCOUNT","features":[95]},{"name":"FILTER_TEMP_DUPLICATE_ACCOUNT","features":[95]},{"name":"FILTER_WORKSTATION_TRUST_ACCOUNT","features":[95]},{"name":"FLAT_STRING","features":[95]},{"name":"FORCE_LEVEL_FLAGS","features":[95]},{"name":"GNLEN","features":[95]},{"name":"GROUPIDMASK","features":[95]},{"name":"GROUP_ALL_PARMNUM","features":[95]},{"name":"GROUP_ATTRIBUTES_PARMNUM","features":[95]},{"name":"GROUP_COMMENT_PARMNUM","features":[95]},{"name":"GROUP_INFO_0","features":[95]},{"name":"GROUP_INFO_1","features":[95]},{"name":"GROUP_INFO_1002","features":[95]},{"name":"GROUP_INFO_1005","features":[95]},{"name":"GROUP_INFO_2","features":[95]},{"name":"GROUP_INFO_3","features":[95,6]},{"name":"GROUP_NAME_PARMNUM","features":[95]},{"name":"GROUP_SPECIALGRP_ADMINS","features":[95]},{"name":"GROUP_SPECIALGRP_GUESTS","features":[95]},{"name":"GROUP_SPECIALGRP_LOCAL","features":[95]},{"name":"GROUP_SPECIALGRP_USERS","features":[95]},{"name":"GROUP_USERS_INFO_0","features":[95]},{"name":"GROUP_USERS_INFO_1","features":[95]},{"name":"GetNetScheduleAccountInformation","features":[95]},{"name":"HARDWARE_ADDRESS","features":[95]},{"name":"HARDWARE_ADDRESS_LENGTH","features":[95]},{"name":"HELP_MSG_FILENAME","features":[95]},{"name":"HLOG","features":[95]},{"name":"IEnumNetCfgBindingInterface","features":[95]},{"name":"IEnumNetCfgBindingPath","features":[95]},{"name":"IEnumNetCfgComponent","features":[95]},{"name":"INTERFACE_INFO_REVISION_1","features":[95]},{"name":"INVALID_TRACEID","features":[95]},{"name":"INetCfg","features":[95]},{"name":"INetCfgBindingInterface","features":[95]},{"name":"INetCfgBindingPath","features":[95]},{"name":"INetCfgClass","features":[95]},{"name":"INetCfgClassSetup","features":[95]},{"name":"INetCfgClassSetup2","features":[95]},{"name":"INetCfgComponent","features":[95]},{"name":"INetCfgComponentBindings","features":[95]},{"name":"INetCfgComponentControl","features":[95]},{"name":"INetCfgComponentNotifyBinding","features":[95]},{"name":"INetCfgComponentNotifyGlobal","features":[95]},{"name":"INetCfgComponentPropertyUi","features":[95]},{"name":"INetCfgComponentSetup","features":[95]},{"name":"INetCfgComponentSysPrep","features":[95]},{"name":"INetCfgComponentUpperEdge","features":[95]},{"name":"INetCfgLock","features":[95]},{"name":"INetCfgPnpReconfigCallback","features":[95]},{"name":"INetCfgSysPrep","features":[95]},{"name":"INetLanConnectionUiInfo","features":[95]},{"name":"INetRasConnectionIpUiInfo","features":[95]},{"name":"IPX_PROTOCOL_BASE","features":[95]},{"name":"IPX_PROTOCOL_RIP","features":[95]},{"name":"IProvisioningDomain","features":[95]},{"name":"IProvisioningProfileWireless","features":[95]},{"name":"IR_PROMISCUOUS","features":[95]},{"name":"IR_PROMISCUOUS_MULTICAST","features":[95]},{"name":"I_NetLogonControl2","features":[95]},{"name":"JOB_ADD_CURRENT_DATE","features":[95]},{"name":"JOB_EXEC_ERROR","features":[95]},{"name":"JOB_NONINTERACTIVE","features":[95]},{"name":"JOB_RUNS_TODAY","features":[95]},{"name":"JOB_RUN_PERIODICALLY","features":[95]},{"name":"KNOWLEDGE_INCONSISTENCY_DETECTED","features":[95]},{"name":"LG_INCLUDE_INDIRECT","features":[95]},{"name":"LM20_CNLEN","features":[95]},{"name":"LM20_DEVLEN","features":[95]},{"name":"LM20_DNLEN","features":[95]},{"name":"LM20_GNLEN","features":[95]},{"name":"LM20_MAXCOMMENTSZ","features":[95]},{"name":"LM20_NNLEN","features":[95]},{"name":"LM20_PATHLEN","features":[95]},{"name":"LM20_PWLEN","features":[95]},{"name":"LM20_QNLEN","features":[95]},{"name":"LM20_SERVICE_ACTIVE","features":[95]},{"name":"LM20_SERVICE_CONTINUE_PENDING","features":[95]},{"name":"LM20_SERVICE_PAUSED","features":[95]},{"name":"LM20_SERVICE_PAUSE_PENDING","features":[95]},{"name":"LM20_SNLEN","features":[95]},{"name":"LM20_STXTLEN","features":[95]},{"name":"LM20_UNCLEN","features":[95]},{"name":"LM20_UNLEN","features":[95]},{"name":"LM_REDIR_FAILURE","features":[95]},{"name":"LOCALGROUP_COMMENT_PARMNUM","features":[95]},{"name":"LOCALGROUP_INFO_0","features":[95]},{"name":"LOCALGROUP_INFO_1","features":[95]},{"name":"LOCALGROUP_INFO_1002","features":[95]},{"name":"LOCALGROUP_MEMBERS_INFO_0","features":[95,6]},{"name":"LOCALGROUP_MEMBERS_INFO_1","features":[95,6]},{"name":"LOCALGROUP_MEMBERS_INFO_2","features":[95,6]},{"name":"LOCALGROUP_MEMBERS_INFO_3","features":[95]},{"name":"LOCALGROUP_NAME_PARMNUM","features":[95]},{"name":"LOCALGROUP_USERS_INFO_0","features":[95]},{"name":"LOGFLAGS_BACKWARD","features":[95]},{"name":"LOGFLAGS_FORWARD","features":[95]},{"name":"LOGFLAGS_SEEK","features":[95]},{"name":"LOWER_GET_HINT_MASK","features":[95]},{"name":"LOWER_HINT_MASK","features":[95]},{"name":"LogErrorA","features":[95]},{"name":"LogErrorW","features":[95]},{"name":"LogEventA","features":[95]},{"name":"LogEventW","features":[95]},{"name":"MACHINE_UNJOINED","features":[95]},{"name":"MAJOR_VERSION_MASK","features":[95]},{"name":"MAXCOMMENTSZ","features":[95]},{"name":"MAXPERMENTRIES","features":[95]},{"name":"MAX_LANMAN_MESSAGE_ID","features":[95]},{"name":"MAX_NERR","features":[95]},{"name":"MAX_PASSWD_LEN","features":[95]},{"name":"MAX_PREFERRED_LENGTH","features":[95]},{"name":"MAX_PROTOCOL_DLL_LEN","features":[95]},{"name":"MAX_PROTOCOL_NAME_LEN","features":[95]},{"name":"MESSAGE_FILENAME","features":[95]},{"name":"MFE_BOUNDARY_REACHED","features":[95]},{"name":"MFE_IIF","features":[95]},{"name":"MFE_NOT_FORWARDING","features":[95]},{"name":"MFE_NOT_LAST_HOP","features":[95]},{"name":"MFE_NO_ERROR","features":[95]},{"name":"MFE_NO_MULTICAST","features":[95]},{"name":"MFE_NO_ROUTE","features":[95]},{"name":"MFE_NO_SPACE","features":[95]},{"name":"MFE_OIF_PRUNED","features":[95]},{"name":"MFE_OLD_ROUTER","features":[95]},{"name":"MFE_PROHIBITED","features":[95]},{"name":"MFE_PRUNED_UPSTREAM","features":[95]},{"name":"MFE_REACHED_CORE","features":[95]},{"name":"MFE_WRONG_IF","features":[95]},{"name":"MIN_LANMAN_MESSAGE_ID","features":[95]},{"name":"MISSING_EXIT_POINT","features":[95]},{"name":"MISSING_EXIT_POINT_CREATED","features":[95]},{"name":"MISSING_EXIT_POINT_NOT_CREATED","features":[95]},{"name":"MISSING_VOLUME","features":[95]},{"name":"MISSING_VOLUME_CREATED","features":[95]},{"name":"MISSING_VOLUME_NOT_CREATED","features":[95]},{"name":"MODALS_DOMAIN_ID_PARMNUM","features":[95]},{"name":"MODALS_DOMAIN_NAME_PARMNUM","features":[95]},{"name":"MODALS_FORCE_LOGOFF_PARMNUM","features":[95]},{"name":"MODALS_LOCKOUT_DURATION_PARMNUM","features":[95]},{"name":"MODALS_LOCKOUT_OBSERVATION_WINDOW_PARMNUM","features":[95]},{"name":"MODALS_LOCKOUT_THRESHOLD_PARMNUM","features":[95]},{"name":"MODALS_MAX_PASSWD_AGE_PARMNUM","features":[95]},{"name":"MODALS_MIN_PASSWD_AGE_PARMNUM","features":[95]},{"name":"MODALS_MIN_PASSWD_LEN_PARMNUM","features":[95]},{"name":"MODALS_PASSWD_HIST_LEN_PARMNUM","features":[95]},{"name":"MODALS_PRIMARY_PARMNUM","features":[95]},{"name":"MODALS_ROLE_PARMNUM","features":[95]},{"name":"MPR_PROTOCOL_0","features":[95]},{"name":"MRINFO_DISABLED_FLAG","features":[95]},{"name":"MRINFO_DOWN_FLAG","features":[95]},{"name":"MRINFO_LEAF_FLAG","features":[95]},{"name":"MRINFO_PIM_FLAG","features":[95]},{"name":"MRINFO_QUERIER_FLAG","features":[95]},{"name":"MRINFO_TUNNEL_FLAG","features":[95]},{"name":"MSA_INFO_0","features":[95]},{"name":"MSA_INFO_LEVEL","features":[95]},{"name":"MSA_INFO_STATE","features":[95]},{"name":"MSGNAME_FORWARDED_FROM","features":[95]},{"name":"MSGNAME_FORWARDED_TO","features":[95]},{"name":"MSGNAME_NOT_FORWARDED","features":[95]},{"name":"MSG_INFO_0","features":[95]},{"name":"MSG_INFO_1","features":[95]},{"name":"MS_ROUTER_VERSION","features":[95]},{"name":"MprSetupProtocolEnum","features":[95]},{"name":"MprSetupProtocolFree","features":[95]},{"name":"MsaInfoCanInstall","features":[95]},{"name":"MsaInfoCannotInstall","features":[95]},{"name":"MsaInfoInstalled","features":[95]},{"name":"MsaInfoLevel0","features":[95]},{"name":"MsaInfoLevelMax","features":[95]},{"name":"MsaInfoNotExist","features":[95]},{"name":"MsaInfoNotService","features":[95]},{"name":"NCF_DONTEXPOSELOWER","features":[95]},{"name":"NCF_FILTER","features":[95]},{"name":"NCF_FIXED_BINDING","features":[95]},{"name":"NCF_HAS_UI","features":[95]},{"name":"NCF_HIDDEN","features":[95]},{"name":"NCF_HIDE_BINDING","features":[95]},{"name":"NCF_LOWER","features":[95]},{"name":"NCF_LW_FILTER","features":[95]},{"name":"NCF_MULTIPORT_INSTANCED_ADAPTER","features":[95]},{"name":"NCF_NDIS_PROTOCOL","features":[95]},{"name":"NCF_NOT_USER_REMOVABLE","features":[95]},{"name":"NCF_NO_SERVICE","features":[95]},{"name":"NCF_PHYSICAL","features":[95]},{"name":"NCF_SINGLE_INSTANCE","features":[95]},{"name":"NCF_SOFTWARE_ENUMERATED","features":[95]},{"name":"NCF_UPPER","features":[95]},{"name":"NCF_VIRTUAL","features":[95]},{"name":"NCN_ADD","features":[95]},{"name":"NCN_BINDING_PATH","features":[95]},{"name":"NCN_DISABLE","features":[95]},{"name":"NCN_ENABLE","features":[95]},{"name":"NCN_NET","features":[95]},{"name":"NCN_NETCLIENT","features":[95]},{"name":"NCN_NETSERVICE","features":[95]},{"name":"NCN_NETTRANS","features":[95]},{"name":"NCN_PROPERTYCHANGE","features":[95]},{"name":"NCN_REMOVE","features":[95]},{"name":"NCN_UPDATE","features":[95]},{"name":"NCPNP_RECONFIG_LAYER","features":[95]},{"name":"NCRL_NDIS","features":[95]},{"name":"NCRL_TDI","features":[95]},{"name":"NCRP_FLAGS","features":[95]},{"name":"NCRP_QUERY_PROPERTY_UI","features":[95]},{"name":"NCRP_SHOW_PROPERTY_UI","features":[95]},{"name":"NELOG_AT_Exec_Err","features":[95]},{"name":"NELOG_AT_cannot_read","features":[95]},{"name":"NELOG_AT_cannot_write","features":[95]},{"name":"NELOG_AT_sched_err","features":[95]},{"name":"NELOG_AT_schedule_file_created","features":[95]},{"name":"NELOG_Access_File_Bad","features":[95]},{"name":"NELOG_Build_Name","features":[95]},{"name":"NELOG_Cant_Make_Msg_File","features":[95]},{"name":"NELOG_DiskFT","features":[95]},{"name":"NELOG_DriverNotLoaded","features":[95]},{"name":"NELOG_Entries_Lost","features":[95]},{"name":"NELOG_Error_in_DLL","features":[95]},{"name":"NELOG_Exec_Netservr_NoMem","features":[95]},{"name":"NELOG_FT_ErrLog_Too_Large","features":[95]},{"name":"NELOG_FT_Update_In_Progress","features":[95]},{"name":"NELOG_FailedToGetComputerName","features":[95]},{"name":"NELOG_FailedToRegisterSC","features":[95]},{"name":"NELOG_FailedToSetServiceStatus","features":[95]},{"name":"NELOG_File_Changed","features":[95]},{"name":"NELOG_Files_Dont_Fit","features":[95]},{"name":"NELOG_HardErr_From_Server","features":[95]},{"name":"NELOG_HotFix","features":[95]},{"name":"NELOG_Init_Chardev_Err","features":[95]},{"name":"NELOG_Init_Exec_Fail","features":[95]},{"name":"NELOG_Init_OpenCreate_Err","features":[95]},{"name":"NELOG_Init_Seg_Overflow","features":[95]},{"name":"NELOG_Internal_Error","features":[95]},{"name":"NELOG_Invalid_Config_File","features":[95]},{"name":"NELOG_Invalid_Config_Line","features":[95]},{"name":"NELOG_Ioctl_Error","features":[95]},{"name":"NELOG_Joined_Domain","features":[95]},{"name":"NELOG_Joined_Workgroup","features":[95]},{"name":"NELOG_Lazy_Write_Err","features":[95]},{"name":"NELOG_LocalSecFail1","features":[95]},{"name":"NELOG_LocalSecFail2","features":[95]},{"name":"NELOG_LocalSecFail3","features":[95]},{"name":"NELOG_LocalSecGeneralFail","features":[95]},{"name":"NELOG_Mail_Slt_Err","features":[95]},{"name":"NELOG_Mailslot_err","features":[95]},{"name":"NELOG_Message_Send","features":[95]},{"name":"NELOG_Missing_Parameter","features":[95]},{"name":"NELOG_Msg_Log_Err","features":[95]},{"name":"NELOG_Msg_Sem_Shutdown","features":[95]},{"name":"NELOG_Msg_Shutdown","features":[95]},{"name":"NELOG_Msg_Unexpected_SMB_Type","features":[95]},{"name":"NELOG_Name_Expansion","features":[95]},{"name":"NELOG_Ncb_Error","features":[95]},{"name":"NELOG_Ncb_TooManyErr","features":[95]},{"name":"NELOG_NetBios","features":[95]},{"name":"NELOG_NetLogonFailedToInitializeAuthzRm","features":[95]},{"name":"NELOG_NetLogonFailedToInitializeRPCSD","features":[95]},{"name":"NELOG_NetWkSta_Internal_Error","features":[95]},{"name":"NELOG_NetWkSta_NCB_Err","features":[95]},{"name":"NELOG_NetWkSta_No_Resource","features":[95]},{"name":"NELOG_NetWkSta_Reset_Err","features":[95]},{"name":"NELOG_NetWkSta_SMB_Err","features":[95]},{"name":"NELOG_NetWkSta_Stuck_VC_Err","features":[95]},{"name":"NELOG_NetWkSta_Too_Many","features":[95]},{"name":"NELOG_NetWkSta_VC_Err","features":[95]},{"name":"NELOG_NetWkSta_Write_Behind_Err","features":[95]},{"name":"NELOG_Net_Not_Started","features":[95]},{"name":"NELOG_NetlogonAddNameFailure","features":[95]},{"name":"NELOG_NetlogonAuthDCFail","features":[95]},{"name":"NELOG_NetlogonAuthDomainDowngraded","features":[95]},{"name":"NELOG_NetlogonAuthNoDomainController","features":[95]},{"name":"NELOG_NetlogonAuthNoTrustLsaSecret","features":[95]},{"name":"NELOG_NetlogonAuthNoTrustSamAccount","features":[95]},{"name":"NELOG_NetlogonAuthNoUplevelDomainController","features":[95]},{"name":"NELOG_NetlogonBadSiteName","features":[95]},{"name":"NELOG_NetlogonBadSubnetName","features":[95]},{"name":"NELOG_NetlogonBrowserDriver","features":[95]},{"name":"NELOG_NetlogonChangeLogCorrupt","features":[95]},{"name":"NELOG_NetlogonDcOldSiteCovered","features":[95]},{"name":"NELOG_NetlogonDcSiteCovered","features":[95]},{"name":"NELOG_NetlogonDcSiteNotCovered","features":[95]},{"name":"NELOG_NetlogonDcSiteNotCoveredAuto","features":[95]},{"name":"NELOG_NetlogonDnsDeregAborted","features":[95]},{"name":"NELOG_NetlogonDnsHostNameLowerCasingFailed","features":[95]},{"name":"NELOG_NetlogonDownLevelLogoffFailed","features":[95]},{"name":"NELOG_NetlogonDownLevelLogonFailed","features":[95]},{"name":"NELOG_NetlogonDuplicateMachineAccounts","features":[95]},{"name":"NELOG_NetlogonDynamicDnsDeregisterFailure","features":[95]},{"name":"NELOG_NetlogonDynamicDnsFailure","features":[95]},{"name":"NELOG_NetlogonDynamicDnsRegisterFailure","features":[95]},{"name":"NELOG_NetlogonDynamicDnsServerFailure","features":[95]},{"name":"NELOG_NetlogonFailedAccountDelta","features":[95]},{"name":"NELOG_NetlogonFailedDnsHostNameUpdate","features":[95]},{"name":"NELOG_NetlogonFailedDomainDelta","features":[95]},{"name":"NELOG_NetlogonFailedFileCreate","features":[95]},{"name":"NELOG_NetlogonFailedGlobalGroupDelta","features":[95]},{"name":"NELOG_NetlogonFailedLocalGroupDelta","features":[95]},{"name":"NELOG_NetlogonFailedPolicyDelta","features":[95]},{"name":"NELOG_NetlogonFailedPrimary","features":[95]},{"name":"NELOG_NetlogonFailedSecretDelta","features":[95]},{"name":"NELOG_NetlogonFailedSpnUpdate","features":[95]},{"name":"NELOG_NetlogonFailedToAddAuthzRpcInterface","features":[95]},{"name":"NELOG_NetlogonFailedToAddRpcInterface","features":[95]},{"name":"NELOG_NetlogonFailedToCreateShare","features":[95]},{"name":"NELOG_NetlogonFailedToReadMailslot","features":[95]},{"name":"NELOG_NetlogonFailedToRegisterSC","features":[95]},{"name":"NELOG_NetlogonFailedToUpdateTrustList","features":[95]},{"name":"NELOG_NetlogonFailedTrustedDomainDelta","features":[95]},{"name":"NELOG_NetlogonFailedUserDelta","features":[95]},{"name":"NELOG_NetlogonFullSyncCallFailed","features":[95]},{"name":"NELOG_NetlogonFullSyncCallSuccess","features":[95]},{"name":"NELOG_NetlogonFullSyncFailed","features":[95]},{"name":"NELOG_NetlogonFullSyncSuccess","features":[95]},{"name":"NELOG_NetlogonGcOldSiteCovered","features":[95]},{"name":"NELOG_NetlogonGcSiteCovered","features":[95]},{"name":"NELOG_NetlogonGcSiteNotCovered","features":[95]},{"name":"NELOG_NetlogonGcSiteNotCoveredAuto","features":[95]},{"name":"NELOG_NetlogonGetSubnetToSite","features":[95]},{"name":"NELOG_NetlogonInvalidDwordParameterValue","features":[95]},{"name":"NELOG_NetlogonInvalidGenericParameterValue","features":[95]},{"name":"NELOG_NetlogonLanmanBdcsNotAllowed","features":[95]},{"name":"NELOG_NetlogonMachinePasswdSetSucceeded","features":[95]},{"name":"NELOG_NetlogonMsaPasswdSetSucceeded","features":[95]},{"name":"NELOG_NetlogonNTLogoffFailed","features":[95]},{"name":"NELOG_NetlogonNTLogonFailed","features":[95]},{"name":"NELOG_NetlogonNdncOldSiteCovered","features":[95]},{"name":"NELOG_NetlogonNdncSiteCovered","features":[95]},{"name":"NELOG_NetlogonNdncSiteNotCovered","features":[95]},{"name":"NELOG_NetlogonNdncSiteNotCoveredAuto","features":[95]},{"name":"NELOG_NetlogonNoAddressToSiteMapping","features":[95]},{"name":"NELOG_NetlogonNoDynamicDns","features":[95]},{"name":"NELOG_NetlogonNoDynamicDnsManual","features":[95]},{"name":"NELOG_NetlogonNoSiteForClient","features":[95]},{"name":"NELOG_NetlogonNoSiteForClients","features":[95]},{"name":"NELOG_NetlogonPartialSiteMappingForClients","features":[95]},{"name":"NELOG_NetlogonPartialSyncCallFailed","features":[95]},{"name":"NELOG_NetlogonPartialSyncCallSuccess","features":[95]},{"name":"NELOG_NetlogonPartialSyncFailed","features":[95]},{"name":"NELOG_NetlogonPartialSyncSuccess","features":[95]},{"name":"NELOG_NetlogonPasswdSetFailed","features":[95]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsDeregister","features":[95]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsRegister","features":[95]},{"name":"NELOG_NetlogonRemoteDynamicDnsDeregisterFailure","features":[95]},{"name":"NELOG_NetlogonRemoteDynamicDnsRegisterFailure","features":[95]},{"name":"NELOG_NetlogonRemoteDynamicDnsUpdateRequestFailure","features":[95]},{"name":"NELOG_NetlogonRequireSignOrSealError","features":[95]},{"name":"NELOG_NetlogonRpcCallCancelled","features":[95]},{"name":"NELOG_NetlogonRpcPortRequestFailure","features":[95]},{"name":"NELOG_NetlogonSSIInitError","features":[95]},{"name":"NELOG_NetlogonServerAuthFailed","features":[95]},{"name":"NELOG_NetlogonServerAuthFailedNoAccount","features":[95]},{"name":"NELOG_NetlogonServerAuthNoTrustSamAccount","features":[95]},{"name":"NELOG_NetlogonSessionTypeWrong","features":[95]},{"name":"NELOG_NetlogonSpnCrackNamesFailure","features":[95]},{"name":"NELOG_NetlogonSpnMultipleSamAccountNames","features":[95]},{"name":"NELOG_NetlogonSyncError","features":[95]},{"name":"NELOG_NetlogonSystemError","features":[95]},{"name":"NELOG_NetlogonTooManyGlobalGroups","features":[95]},{"name":"NELOG_NetlogonTrackingError","features":[95]},{"name":"NELOG_NetlogonUserValidationReqInitialTimeOut","features":[95]},{"name":"NELOG_NetlogonUserValidationReqRecurringTimeOut","features":[95]},{"name":"NELOG_NetlogonUserValidationReqWaitInitialWarning","features":[95]},{"name":"NELOG_NetlogonUserValidationReqWaitRecurringWarning","features":[95]},{"name":"NELOG_NoTranportLoaded","features":[95]},{"name":"NELOG_OEM_Code","features":[95]},{"name":"NELOG_ReleaseMem_Alert","features":[95]},{"name":"NELOG_Remote_API","features":[95]},{"name":"NELOG_ReplAccessDenied","features":[95]},{"name":"NELOG_ReplBadExport","features":[95]},{"name":"NELOG_ReplBadImport","features":[95]},{"name":"NELOG_ReplBadMsg","features":[95]},{"name":"NELOG_ReplCannotMasterDir","features":[95]},{"name":"NELOG_ReplLogonFailed","features":[95]},{"name":"NELOG_ReplLostMaster","features":[95]},{"name":"NELOG_ReplMaxFiles","features":[95]},{"name":"NELOG_ReplMaxTreeDepth","features":[95]},{"name":"NELOG_ReplNetErr","features":[95]},{"name":"NELOG_ReplSignalFileErr","features":[95]},{"name":"NELOG_ReplSysErr","features":[95]},{"name":"NELOG_ReplUpdateError","features":[95]},{"name":"NELOG_ReplUserCurDir","features":[95]},{"name":"NELOG_ReplUserLoged","features":[95]},{"name":"NELOG_Resource_Shortage","features":[95]},{"name":"NELOG_RplAdapterResource","features":[95]},{"name":"NELOG_RplBackupDatabase","features":[95]},{"name":"NELOG_RplCheckConfigs","features":[95]},{"name":"NELOG_RplCheckSecurity","features":[95]},{"name":"NELOG_RplCreateProfiles","features":[95]},{"name":"NELOG_RplFileCopy","features":[95]},{"name":"NELOG_RplFileDelete","features":[95]},{"name":"NELOG_RplFilePerms","features":[95]},{"name":"NELOG_RplInitDatabase","features":[95]},{"name":"NELOG_RplInitRestoredDatabase","features":[95]},{"name":"NELOG_RplMessages","features":[95]},{"name":"NELOG_RplRegistry","features":[95]},{"name":"NELOG_RplReplaceRPLDISK","features":[95]},{"name":"NELOG_RplRestoreDatabaseFailure","features":[95]},{"name":"NELOG_RplRestoreDatabaseSuccess","features":[95]},{"name":"NELOG_RplSystem","features":[95]},{"name":"NELOG_RplUpgradeDBTo40","features":[95]},{"name":"NELOG_RplWkstaBbcFile","features":[95]},{"name":"NELOG_RplWkstaFileChecksum","features":[95]},{"name":"NELOG_RplWkstaFileLineCount","features":[95]},{"name":"NELOG_RplWkstaFileOpen","features":[95]},{"name":"NELOG_RplWkstaFileRead","features":[95]},{"name":"NELOG_RplWkstaFileSize","features":[95]},{"name":"NELOG_RplWkstaInternal","features":[95]},{"name":"NELOG_RplWkstaMemory","features":[95]},{"name":"NELOG_RplWkstaNetwork","features":[95]},{"name":"NELOG_RplWkstaTimeout","features":[95]},{"name":"NELOG_RplWkstaWrongVersion","features":[95]},{"name":"NELOG_RplXnsBoot","features":[95]},{"name":"NELOG_SMB_Illegal","features":[95]},{"name":"NELOG_Server_Lock_Failure","features":[95]},{"name":"NELOG_Service_Fail","features":[95]},{"name":"NELOG_Srv_Close_Failure","features":[95]},{"name":"NELOG_Srv_No_Mem_Grow","features":[95]},{"name":"NELOG_Srv_Thread_Failure","features":[95]},{"name":"NELOG_Srvnet_NB_Open","features":[95]},{"name":"NELOG_Srvnet_Not_Started","features":[95]},{"name":"NELOG_System_Error","features":[95]},{"name":"NELOG_System_Semaphore","features":[95]},{"name":"NELOG_UPS_CannotOpenDriver","features":[95]},{"name":"NELOG_UPS_CmdFileConfig","features":[95]},{"name":"NELOG_UPS_CmdFileError","features":[95]},{"name":"NELOG_UPS_CmdFileExec","features":[95]},{"name":"NELOG_UPS_PowerBack","features":[95]},{"name":"NELOG_UPS_PowerOut","features":[95]},{"name":"NELOG_UPS_Shutdown","features":[95]},{"name":"NELOG_Unable_To_Lock_Segment","features":[95]},{"name":"NELOG_Unable_To_Unlock_Segment","features":[95]},{"name":"NELOG_Uninstall_Service","features":[95]},{"name":"NELOG_VIO_POPUP_ERR","features":[95]},{"name":"NELOG_Wksta_Bad_Mailslot_SMB","features":[95]},{"name":"NELOG_Wksta_BiosThreadFailure","features":[95]},{"name":"NELOG_Wksta_Compname","features":[95]},{"name":"NELOG_Wksta_HostTab_Full","features":[95]},{"name":"NELOG_Wksta_Infoseg","features":[95]},{"name":"NELOG_Wksta_IniSeg","features":[95]},{"name":"NELOG_Wksta_SSIRelogon","features":[95]},{"name":"NELOG_Wksta_UASInit","features":[95]},{"name":"NELOG_Wrong_DLL_Version","features":[95]},{"name":"NERR_ACFFileIOFail","features":[95]},{"name":"NERR_ACFNoParent","features":[95]},{"name":"NERR_ACFNoRoom","features":[95]},{"name":"NERR_ACFNotFound","features":[95]},{"name":"NERR_ACFNotLoaded","features":[95]},{"name":"NERR_ACFTooManyLists","features":[95]},{"name":"NERR_AccountExpired","features":[95]},{"name":"NERR_AccountLockedOut","features":[95]},{"name":"NERR_AccountReuseBlockedByPolicy","features":[95]},{"name":"NERR_AccountUndefined","features":[95]},{"name":"NERR_AcctLimitExceeded","features":[95]},{"name":"NERR_ActiveConns","features":[95]},{"name":"NERR_AddForwarded","features":[95]},{"name":"NERR_AlertExists","features":[95]},{"name":"NERR_AlreadyCloudDomainJoined","features":[95]},{"name":"NERR_AlreadyExists","features":[95]},{"name":"NERR_AlreadyForwarded","features":[95]},{"name":"NERR_AlreadyLoggedOn","features":[95]},{"name":"NERR_BASE","features":[95]},{"name":"NERR_BadAsgType","features":[95]},{"name":"NERR_BadComponent","features":[95]},{"name":"NERR_BadControlRecv","features":[95]},{"name":"NERR_BadDest","features":[95]},{"name":"NERR_BadDev","features":[95]},{"name":"NERR_BadDevString","features":[95]},{"name":"NERR_BadDomainJoinInfo","features":[95]},{"name":"NERR_BadDosFunction","features":[95]},{"name":"NERR_BadDosRetCode","features":[95]},{"name":"NERR_BadEventName","features":[95]},{"name":"NERR_BadFileCheckSum","features":[95]},{"name":"NERR_BadOfflineJoinInfo","features":[95]},{"name":"NERR_BadPassword","features":[95]},{"name":"NERR_BadPasswordCore","features":[95]},{"name":"NERR_BadQueueDevString","features":[95]},{"name":"NERR_BadQueuePriority","features":[95]},{"name":"NERR_BadReceive","features":[95]},{"name":"NERR_BadRecipient","features":[95]},{"name":"NERR_BadServiceName","features":[95]},{"name":"NERR_BadServiceProgName","features":[95]},{"name":"NERR_BadSource","features":[95]},{"name":"NERR_BadTransactConfig","features":[95]},{"name":"NERR_BadUasConfig","features":[95]},{"name":"NERR_BadUsername","features":[95]},{"name":"NERR_BrowserConfiguredToNotRun","features":[95]},{"name":"NERR_BrowserNotStarted","features":[95]},{"name":"NERR_BrowserTableIncomplete","features":[95]},{"name":"NERR_BufTooSmall","features":[95]},{"name":"NERR_CallingRplSrvr","features":[95]},{"name":"NERR_CanNotGrowSegment","features":[95]},{"name":"NERR_CanNotGrowUASFile","features":[95]},{"name":"NERR_CannotUnjoinAadDomain","features":[95]},{"name":"NERR_CannotUpdateAadHostName","features":[95]},{"name":"NERR_CantConnectRplSrvr","features":[95]},{"name":"NERR_CantCreateJoinInfo","features":[95]},{"name":"NERR_CantLoadOfflineHive","features":[95]},{"name":"NERR_CantOpenImageFile","features":[95]},{"name":"NERR_CantType","features":[95]},{"name":"NERR_CantVerifyHostname","features":[95]},{"name":"NERR_CfgCompNotFound","features":[95]},{"name":"NERR_CfgParamNotFound","features":[95]},{"name":"NERR_ClientNameNotFound","features":[95]},{"name":"NERR_CommDevInUse","features":[95]},{"name":"NERR_ComputerAccountNotFound","features":[95]},{"name":"NERR_ConnectionInsecure","features":[95]},{"name":"NERR_DCNotFound","features":[95]},{"name":"NERR_DS8DCNotFound","features":[95]},{"name":"NERR_DS8DCRequired","features":[95]},{"name":"NERR_DS9DCNotFound","features":[95]},{"name":"NERR_DataTypeInvalid","features":[95]},{"name":"NERR_DatabaseUpToDate","features":[95]},{"name":"NERR_DefaultJoinRequired","features":[95]},{"name":"NERR_DelComputerName","features":[95]},{"name":"NERR_DeleteLater","features":[95]},{"name":"NERR_DestExists","features":[95]},{"name":"NERR_DestIdle","features":[95]},{"name":"NERR_DestInvalidOp","features":[95]},{"name":"NERR_DestInvalidState","features":[95]},{"name":"NERR_DestNoRoom","features":[95]},{"name":"NERR_DestNotFound","features":[95]},{"name":"NERR_DevInUse","features":[95]},{"name":"NERR_DevInvalidOpCode","features":[95]},{"name":"NERR_DevNotFound","features":[95]},{"name":"NERR_DevNotOpen","features":[95]},{"name":"NERR_DevNotRedirected","features":[95]},{"name":"NERR_DeviceIsShared","features":[95]},{"name":"NERR_DeviceNotShared","features":[95]},{"name":"NERR_DeviceShareConflict","features":[95]},{"name":"NERR_DfsAlreadyShared","features":[95]},{"name":"NERR_DfsBadRenamePath","features":[95]},{"name":"NERR_DfsCantCreateJunctionPoint","features":[95]},{"name":"NERR_DfsCantRemoveDfsRoot","features":[95]},{"name":"NERR_DfsCantRemoveLastServerShare","features":[95]},{"name":"NERR_DfsChildOrParentInDfs","features":[95]},{"name":"NERR_DfsCyclicalName","features":[95]},{"name":"NERR_DfsDataIsIdentical","features":[95]},{"name":"NERR_DfsDuplicateService","features":[95]},{"name":"NERR_DfsInconsistent","features":[95]},{"name":"NERR_DfsInternalCorruption","features":[95]},{"name":"NERR_DfsInternalError","features":[95]},{"name":"NERR_DfsLeafVolume","features":[95]},{"name":"NERR_DfsNoSuchServer","features":[95]},{"name":"NERR_DfsNoSuchShare","features":[95]},{"name":"NERR_DfsNoSuchVolume","features":[95]},{"name":"NERR_DfsNotALeafVolume","features":[95]},{"name":"NERR_DfsNotSupportedInServerDfs","features":[95]},{"name":"NERR_DfsServerNotDfsAware","features":[95]},{"name":"NERR_DfsServerUpgraded","features":[95]},{"name":"NERR_DfsVolumeAlreadyExists","features":[95]},{"name":"NERR_DfsVolumeDataCorrupt","features":[95]},{"name":"NERR_DfsVolumeHasMultipleServers","features":[95]},{"name":"NERR_DfsVolumeIsInterDfs","features":[95]},{"name":"NERR_DfsVolumeIsOffline","features":[95]},{"name":"NERR_DifferentServers","features":[95]},{"name":"NERR_DriverNotFound","features":[95]},{"name":"NERR_DupNameReboot","features":[95]},{"name":"NERR_DuplicateHostName","features":[95]},{"name":"NERR_DuplicateName","features":[95]},{"name":"NERR_DuplicateShare","features":[95]},{"name":"NERR_ErrCommRunSrv","features":[95]},{"name":"NERR_ErrorExecingGhost","features":[95]},{"name":"NERR_ExecFailure","features":[95]},{"name":"NERR_FileIdNotFound","features":[95]},{"name":"NERR_GroupExists","features":[95]},{"name":"NERR_GroupNotFound","features":[95]},{"name":"NERR_GrpMsgProcessor","features":[95]},{"name":"NERR_HostNameTooLong","features":[95]},{"name":"NERR_ImageParamErr","features":[95]},{"name":"NERR_InUseBySpooler","features":[95]},{"name":"NERR_IncompleteDel","features":[95]},{"name":"NERR_InternalError","features":[95]},{"name":"NERR_InvalidAPI","features":[95]},{"name":"NERR_InvalidComputer","features":[95]},{"name":"NERR_InvalidDatabase","features":[95]},{"name":"NERR_InvalidDevice","features":[95]},{"name":"NERR_InvalidLana","features":[95]},{"name":"NERR_InvalidLogSeek","features":[95]},{"name":"NERR_InvalidLogonHours","features":[95]},{"name":"NERR_InvalidMachineNameForJoin","features":[95]},{"name":"NERR_InvalidMaxUsers","features":[95]},{"name":"NERR_InvalidUASOp","features":[95]},{"name":"NERR_InvalidWorkgroupName","features":[95]},{"name":"NERR_InvalidWorkstation","features":[95]},{"name":"NERR_IsDfsShare","features":[95]},{"name":"NERR_ItemNotFound","features":[95]},{"name":"NERR_JobInvalidState","features":[95]},{"name":"NERR_JobNoRoom","features":[95]},{"name":"NERR_JobNotFound","features":[95]},{"name":"NERR_JoinPerformedMustRestart","features":[95]},{"name":"NERR_LDAPCapableDCRequired","features":[95]},{"name":"NERR_LanmanIniError","features":[95]},{"name":"NERR_LastAdmin","features":[95]},{"name":"NERR_LineTooLong","features":[95]},{"name":"NERR_LocalDrive","features":[95]},{"name":"NERR_LocalForward","features":[95]},{"name":"NERR_LogFileChanged","features":[95]},{"name":"NERR_LogFileCorrupt","features":[95]},{"name":"NERR_LogOverflow","features":[95]},{"name":"NERR_LogonDomainExists","features":[95]},{"name":"NERR_LogonNoUserPath","features":[95]},{"name":"NERR_LogonScriptError","features":[95]},{"name":"NERR_LogonServerConflict","features":[95]},{"name":"NERR_LogonServerNotFound","features":[95]},{"name":"NERR_LogonTrackingError","features":[95]},{"name":"NERR_LogonsPaused","features":[95]},{"name":"NERR_MaxLenExceeded","features":[95]},{"name":"NERR_MsgAlreadyStarted","features":[95]},{"name":"NERR_MsgInitFailed","features":[95]},{"name":"NERR_MsgNotStarted","features":[95]},{"name":"NERR_MultipleNets","features":[95]},{"name":"NERR_NameInUse","features":[95]},{"name":"NERR_NameNotForwarded","features":[95]},{"name":"NERR_NameNotFound","features":[95]},{"name":"NERR_NameUsesIncompatibleCodePage","features":[95]},{"name":"NERR_NetNameNotFound","features":[95]},{"name":"NERR_NetNotStarted","features":[95]},{"name":"NERR_NetlogonNotStarted","features":[95]},{"name":"NERR_NetworkError","features":[95]},{"name":"NERR_NoAlternateServers","features":[95]},{"name":"NERR_NoCommDevs","features":[95]},{"name":"NERR_NoComputerName","features":[95]},{"name":"NERR_NoForwardName","features":[95]},{"name":"NERR_NoJoinPending","features":[95]},{"name":"NERR_NoNetworkResource","features":[95]},{"name":"NERR_NoOfflineJoinInfo","features":[95]},{"name":"NERR_NoRoom","features":[95]},{"name":"NERR_NoRplBootSystem","features":[95]},{"name":"NERR_NoSuchAlert","features":[95]},{"name":"NERR_NoSuchConnection","features":[95]},{"name":"NERR_NoSuchServer","features":[95]},{"name":"NERR_NoSuchSession","features":[95]},{"name":"NERR_NonDosFloppyUsed","features":[95]},{"name":"NERR_NonValidatedLogon","features":[95]},{"name":"NERR_NotInCache","features":[95]},{"name":"NERR_NotInDispatchTbl","features":[95]},{"name":"NERR_NotLocalDomain","features":[95]},{"name":"NERR_NotLocalName","features":[95]},{"name":"NERR_NotLoggedOn","features":[95]},{"name":"NERR_NotPrimary","features":[95]},{"name":"NERR_OpenFiles","features":[95]},{"name":"NERR_PasswordCantChange","features":[95]},{"name":"NERR_PasswordExpired","features":[95]},{"name":"NERR_PasswordFilterError","features":[95]},{"name":"NERR_PasswordHistConflict","features":[95]},{"name":"NERR_PasswordMismatch","features":[95]},{"name":"NERR_PasswordMustChange","features":[95]},{"name":"NERR_PasswordNotComplexEnough","features":[95]},{"name":"NERR_PasswordTooLong","features":[95]},{"name":"NERR_PasswordTooRecent","features":[95]},{"name":"NERR_PasswordTooShort","features":[95]},{"name":"NERR_PausedRemote","features":[95]},{"name":"NERR_PersonalSku","features":[95]},{"name":"NERR_PlainTextSecretsRequired","features":[95]},{"name":"NERR_ProcNoRespond","features":[95]},{"name":"NERR_ProcNotFound","features":[95]},{"name":"NERR_ProfileCleanup","features":[95]},{"name":"NERR_ProfileFileTooBig","features":[95]},{"name":"NERR_ProfileLoadErr","features":[95]},{"name":"NERR_ProfileOffset","features":[95]},{"name":"NERR_ProfileSaveErr","features":[95]},{"name":"NERR_ProfileUnknownCmd","features":[95]},{"name":"NERR_ProgNeedsExtraMem","features":[95]},{"name":"NERR_ProvisioningBlobUnsupported","features":[95]},{"name":"NERR_QExists","features":[95]},{"name":"NERR_QInvalidState","features":[95]},{"name":"NERR_QNoRoom","features":[95]},{"name":"NERR_QNotFound","features":[95]},{"name":"NERR_QueueNotFound","features":[95]},{"name":"NERR_RPL_CONNECTED","features":[95]},{"name":"NERR_RedirectedPath","features":[95]},{"name":"NERR_RemoteBootFailed","features":[95]},{"name":"NERR_RemoteErr","features":[95]},{"name":"NERR_RemoteFull","features":[95]},{"name":"NERR_RemoteOnly","features":[95]},{"name":"NERR_ResourceExists","features":[95]},{"name":"NERR_ResourceNotFound","features":[95]},{"name":"NERR_RplAdapterInfoCorrupted","features":[95]},{"name":"NERR_RplAdapterNameUnavailable","features":[95]},{"name":"NERR_RplAdapterNotFound","features":[95]},{"name":"NERR_RplBackupDatabase","features":[95]},{"name":"NERR_RplBadDatabase","features":[95]},{"name":"NERR_RplBadRegistry","features":[95]},{"name":"NERR_RplBootInUse","features":[95]},{"name":"NERR_RplBootInfoCorrupted","features":[95]},{"name":"NERR_RplBootNameUnavailable","features":[95]},{"name":"NERR_RplBootNotFound","features":[95]},{"name":"NERR_RplBootRestart","features":[95]},{"name":"NERR_RplBootServiceTerm","features":[95]},{"name":"NERR_RplBootStartFailed","features":[95]},{"name":"NERR_RplCannotEnum","features":[95]},{"name":"NERR_RplConfigInfoCorrupted","features":[95]},{"name":"NERR_RplConfigNameUnavailable","features":[95]},{"name":"NERR_RplConfigNotEmpty","features":[95]},{"name":"NERR_RplConfigNotFound","features":[95]},{"name":"NERR_RplIncompatibleProfile","features":[95]},{"name":"NERR_RplInternal","features":[95]},{"name":"NERR_RplLoadrDiskErr","features":[95]},{"name":"NERR_RplLoadrNetBiosErr","features":[95]},{"name":"NERR_RplNeedsRPLUSERAcct","features":[95]},{"name":"NERR_RplNoAdaptersStarted","features":[95]},{"name":"NERR_RplNotRplServer","features":[95]},{"name":"NERR_RplProfileInfoCorrupted","features":[95]},{"name":"NERR_RplProfileNameUnavailable","features":[95]},{"name":"NERR_RplProfileNotEmpty","features":[95]},{"name":"NERR_RplProfileNotFound","features":[95]},{"name":"NERR_RplRplfilesShare","features":[95]},{"name":"NERR_RplSrvrCallFailed","features":[95]},{"name":"NERR_RplVendorInfoCorrupted","features":[95]},{"name":"NERR_RplVendorNameUnavailable","features":[95]},{"name":"NERR_RplVendorNotFound","features":[95]},{"name":"NERR_RplWkstaInfoCorrupted","features":[95]},{"name":"NERR_RplWkstaNameUnavailable","features":[95]},{"name":"NERR_RplWkstaNeedsUserAcct","features":[95]},{"name":"NERR_RplWkstaNotFound","features":[95]},{"name":"NERR_RunSrvPaused","features":[95]},{"name":"NERR_SameAsComputerName","features":[95]},{"name":"NERR_ServerNotStarted","features":[95]},{"name":"NERR_ServiceCtlBusy","features":[95]},{"name":"NERR_ServiceCtlNotValid","features":[95]},{"name":"NERR_ServiceCtlTimeout","features":[95]},{"name":"NERR_ServiceEntryLocked","features":[95]},{"name":"NERR_ServiceInstalled","features":[95]},{"name":"NERR_ServiceKillProc","features":[95]},{"name":"NERR_ServiceNotCtrl","features":[95]},{"name":"NERR_ServiceNotInstalled","features":[95]},{"name":"NERR_ServiceNotStarting","features":[95]},{"name":"NERR_ServiceTableFull","features":[95]},{"name":"NERR_ServiceTableLocked","features":[95]},{"name":"NERR_SetupAlreadyJoined","features":[95]},{"name":"NERR_SetupCheckDNSConfig","features":[95]},{"name":"NERR_SetupDomainController","features":[95]},{"name":"NERR_SetupNotJoined","features":[95]},{"name":"NERR_ShareMem","features":[95]},{"name":"NERR_ShareNotFound","features":[95]},{"name":"NERR_SourceIsDir","features":[95]},{"name":"NERR_SpeGroupOp","features":[95]},{"name":"NERR_SpoolNoMemory","features":[95]},{"name":"NERR_SpoolerNotLoaded","features":[95]},{"name":"NERR_StandaloneLogon","features":[95]},{"name":"NERR_StartingRplBoot","features":[95]},{"name":"NERR_Success","features":[95]},{"name":"NERR_SyncRequired","features":[95]},{"name":"NERR_TargetVersionUnsupported","features":[95]},{"name":"NERR_TimeDiffAtDC","features":[95]},{"name":"NERR_TmpFile","features":[95]},{"name":"NERR_TooManyAlerts","features":[95]},{"name":"NERR_TooManyConnections","features":[95]},{"name":"NERR_TooManyEntries","features":[95]},{"name":"NERR_TooManyFiles","features":[95]},{"name":"NERR_TooManyHostNames","features":[95]},{"name":"NERR_TooManyImageParams","features":[95]},{"name":"NERR_TooManyItems","features":[95]},{"name":"NERR_TooManyNames","features":[95]},{"name":"NERR_TooManyServers","features":[95]},{"name":"NERR_TooManySessions","features":[95]},{"name":"NERR_TooMuchData","features":[95]},{"name":"NERR_TruncatedBroadcast","features":[95]},{"name":"NERR_TryDownLevel","features":[95]},{"name":"NERR_UPSDriverNotStarted","features":[95]},{"name":"NERR_UPSInvalidCommPort","features":[95]},{"name":"NERR_UPSInvalidConfig","features":[95]},{"name":"NERR_UPSShutdownFailed","features":[95]},{"name":"NERR_UPSSignalAsserted","features":[95]},{"name":"NERR_UnableToAddName_F","features":[95]},{"name":"NERR_UnableToAddName_W","features":[95]},{"name":"NERR_UnableToDelName_F","features":[95]},{"name":"NERR_UnableToDelName_W","features":[95]},{"name":"NERR_UnknownDevDir","features":[95]},{"name":"NERR_UnknownServer","features":[95]},{"name":"NERR_UseNotFound","features":[95]},{"name":"NERR_UserExists","features":[95]},{"name":"NERR_UserInGroup","features":[95]},{"name":"NERR_UserLogon","features":[95]},{"name":"NERR_UserNotFound","features":[95]},{"name":"NERR_UserNotInGroup","features":[95]},{"name":"NERR_ValuesNotSet","features":[95]},{"name":"NERR_WkstaInconsistentState","features":[95]},{"name":"NERR_WkstaNotStarted","features":[95]},{"name":"NERR_WriteFault","features":[95]},{"name":"NETBIOS_NAME_LEN","features":[95]},{"name":"NETCFG_CLIENT_CID_MS_MSClient","features":[95]},{"name":"NETCFG_E_ACTIVE_RAS_CONNECTIONS","features":[95]},{"name":"NETCFG_E_ADAPTER_NOT_FOUND","features":[95]},{"name":"NETCFG_E_ALREADY_INITIALIZED","features":[95]},{"name":"NETCFG_E_COMPONENT_REMOVED_PENDING_REBOOT","features":[95]},{"name":"NETCFG_E_DUPLICATE_INSTANCEID","features":[95]},{"name":"NETCFG_E_IN_USE","features":[95]},{"name":"NETCFG_E_MAX_FILTER_LIMIT","features":[95]},{"name":"NETCFG_E_NEED_REBOOT","features":[95]},{"name":"NETCFG_E_NOT_INITIALIZED","features":[95]},{"name":"NETCFG_E_NO_WRITE_LOCK","features":[95]},{"name":"NETCFG_E_VMSWITCH_ACTIVE_OVER_ADAPTER","features":[95]},{"name":"NETCFG_SERVICE_CID_MS_NETBIOS","features":[95]},{"name":"NETCFG_SERVICE_CID_MS_PSCHED","features":[95]},{"name":"NETCFG_SERVICE_CID_MS_SERVER","features":[95]},{"name":"NETCFG_SERVICE_CID_MS_WLBS","features":[95]},{"name":"NETCFG_S_CAUSED_SETUP_CHANGE","features":[95]},{"name":"NETCFG_S_COMMIT_NOW","features":[95]},{"name":"NETCFG_S_DISABLE_QUERY","features":[95]},{"name":"NETCFG_S_REBOOT","features":[95]},{"name":"NETCFG_S_STILL_REFERENCED","features":[95]},{"name":"NETCFG_TRANS_CID_MS_APPLETALK","features":[95]},{"name":"NETCFG_TRANS_CID_MS_NETBEUI","features":[95]},{"name":"NETCFG_TRANS_CID_MS_NETMON","features":[95]},{"name":"NETCFG_TRANS_CID_MS_NWIPX","features":[95]},{"name":"NETCFG_TRANS_CID_MS_NWSPX","features":[95]},{"name":"NETCFG_TRANS_CID_MS_TCPIP","features":[95]},{"name":"NETLOGON_CONTROL_BACKUP_CHANGE_LOG","features":[95]},{"name":"NETLOGON_CONTROL_BREAKPOINT","features":[95]},{"name":"NETLOGON_CONTROL_CHANGE_PASSWORD","features":[95]},{"name":"NETLOGON_CONTROL_FIND_USER","features":[95]},{"name":"NETLOGON_CONTROL_FORCE_DNS_REG","features":[95]},{"name":"NETLOGON_CONTROL_PDC_REPLICATE","features":[95]},{"name":"NETLOGON_CONTROL_QUERY","features":[95]},{"name":"NETLOGON_CONTROL_QUERY_DNS_REG","features":[95]},{"name":"NETLOGON_CONTROL_QUERY_ENC_TYPES","features":[95]},{"name":"NETLOGON_CONTROL_REDISCOVER","features":[95]},{"name":"NETLOGON_CONTROL_REPLICATE","features":[95]},{"name":"NETLOGON_CONTROL_SET_DBFLAG","features":[95]},{"name":"NETLOGON_CONTROL_SYNCHRONIZE","features":[95]},{"name":"NETLOGON_CONTROL_TC_QUERY","features":[95]},{"name":"NETLOGON_CONTROL_TC_VERIFY","features":[95]},{"name":"NETLOGON_CONTROL_TRANSPORT_NOTIFY","features":[95]},{"name":"NETLOGON_CONTROL_TRUNCATE_LOG","features":[95]},{"name":"NETLOGON_CONTROL_UNLOAD_NETLOGON_DLL","features":[95]},{"name":"NETLOGON_DNS_UPDATE_FAILURE","features":[95]},{"name":"NETLOGON_FULL_SYNC_REPLICATION","features":[95]},{"name":"NETLOGON_HAS_IP","features":[95]},{"name":"NETLOGON_HAS_TIMESERV","features":[95]},{"name":"NETLOGON_INFO_1","features":[95]},{"name":"NETLOGON_INFO_2","features":[95]},{"name":"NETLOGON_INFO_3","features":[95]},{"name":"NETLOGON_INFO_4","features":[95]},{"name":"NETLOGON_REDO_NEEDED","features":[95]},{"name":"NETLOGON_REPLICATION_IN_PROGRESS","features":[95]},{"name":"NETLOGON_REPLICATION_NEEDED","features":[95]},{"name":"NETLOGON_VERIFY_STATUS_RETURNED","features":[95]},{"name":"NETLOG_NetlogonNonWindowsSupportsSecureRpc","features":[95]},{"name":"NETLOG_NetlogonRc4Allowed","features":[95]},{"name":"NETLOG_NetlogonRc4Denied","features":[95]},{"name":"NETLOG_NetlogonRpcBacklogLimitFailure","features":[95]},{"name":"NETLOG_NetlogonRpcBacklogLimitSet","features":[95]},{"name":"NETLOG_NetlogonRpcSigningClient","features":[95]},{"name":"NETLOG_NetlogonRpcSigningTrust","features":[95]},{"name":"NETLOG_NetlogonUnsecureRpcClient","features":[95]},{"name":"NETLOG_NetlogonUnsecureRpcMachineAllowedBySsdl","features":[95]},{"name":"NETLOG_NetlogonUnsecureRpcTrust","features":[95]},{"name":"NETLOG_NetlogonUnsecureRpcTrustAllowedBySsdl","features":[95]},{"name":"NETLOG_NetlogonUnsecuredRpcMachineTemporarilyAllowed","features":[95]},{"name":"NETLOG_PassThruFilterError_Request_AdminOverride","features":[95]},{"name":"NETLOG_PassThruFilterError_Request_Blocked","features":[95]},{"name":"NETLOG_PassThruFilterError_Summary_AdminOverride","features":[95]},{"name":"NETLOG_PassThruFilterError_Summary_Blocked","features":[95]},{"name":"NETMAN_VARTYPE_HARDWARE_ADDRESS","features":[95]},{"name":"NETMAN_VARTYPE_STRING","features":[95]},{"name":"NETMAN_VARTYPE_ULONG","features":[95]},{"name":"NETSETUP_ACCT_CREATE","features":[95]},{"name":"NETSETUP_ACCT_DELETE","features":[95]},{"name":"NETSETUP_ALT_SAMACCOUNTNAME","features":[95]},{"name":"NETSETUP_AMBIGUOUS_DC","features":[95]},{"name":"NETSETUP_DEFER_SPN_SET","features":[95]},{"name":"NETSETUP_DNS_NAME_CHANGES_ONLY","features":[95]},{"name":"NETSETUP_DOMAIN_JOIN_IF_JOINED","features":[95]},{"name":"NETSETUP_DONT_CONTROL_SERVICES","features":[95]},{"name":"NETSETUP_FORCE_SPN_SET","features":[95]},{"name":"NETSETUP_IGNORE_UNSUPPORTED_FLAGS","features":[95]},{"name":"NETSETUP_INSTALL_INVOCATION","features":[95]},{"name":"NETSETUP_JOIN_DC_ACCOUNT","features":[95]},{"name":"NETSETUP_JOIN_DOMAIN","features":[95]},{"name":"NETSETUP_JOIN_READONLY","features":[95]},{"name":"NETSETUP_JOIN_STATUS","features":[95]},{"name":"NETSETUP_JOIN_UNSECURE","features":[95]},{"name":"NETSETUP_JOIN_WITH_NEW_NAME","features":[95]},{"name":"NETSETUP_MACHINE_PWD_PASSED","features":[95]},{"name":"NETSETUP_NAME_TYPE","features":[95]},{"name":"NETSETUP_NO_ACCT_REUSE","features":[95]},{"name":"NETSETUP_NO_NETLOGON_CACHE","features":[95]},{"name":"NETSETUP_PROVISION","features":[95]},{"name":"NETSETUP_PROVISIONING_PARAMS","features":[95]},{"name":"NETSETUP_PROVISIONING_PARAMS_CURRENT_VERSION","features":[95]},{"name":"NETSETUP_PROVISIONING_PARAMS_WIN8_VERSION","features":[95]},{"name":"NETSETUP_PROVISION_CHECK_PWD_ONLY","features":[95]},{"name":"NETSETUP_PROVISION_DOWNLEVEL_PRIV_SUPPORT","features":[95]},{"name":"NETSETUP_PROVISION_ONLINE_CALLER","features":[95]},{"name":"NETSETUP_PROVISION_PERSISTENTSITE","features":[95]},{"name":"NETSETUP_PROVISION_REUSE_ACCOUNT","features":[95]},{"name":"NETSETUP_PROVISION_ROOT_CA_CERTS","features":[95]},{"name":"NETSETUP_PROVISION_SKIP_ACCOUNT_SEARCH","features":[95]},{"name":"NETSETUP_PROVISION_USE_DEFAULT_PASSWORD","features":[95]},{"name":"NETSETUP_SET_MACHINE_NAME","features":[95]},{"name":"NETSETUP_WIN9X_UPGRADE","features":[95]},{"name":"NETWORK_INSTALL_TIME","features":[95]},{"name":"NETWORK_NAME","features":[95]},{"name":"NETWORK_UPGRADE_TYPE","features":[95]},{"name":"NET_COMPUTER_NAME_TYPE","features":[95]},{"name":"NET_DFS_ENUM","features":[95]},{"name":"NET_DFS_ENUMEX","features":[95]},{"name":"NET_DISPLAY_GROUP","features":[95]},{"name":"NET_DISPLAY_MACHINE","features":[95]},{"name":"NET_DISPLAY_USER","features":[95]},{"name":"NET_IGNORE_UNSUPPORTED_FLAGS","features":[95]},{"name":"NET_JOIN_DOMAIN_JOIN_OPTIONS","features":[95]},{"name":"NET_REMOTE_COMPUTER_SUPPORTS_OPTIONS","features":[95]},{"name":"NET_REQUEST_PROVISION_OPTIONS","features":[95]},{"name":"NET_SERVER_TYPE","features":[95]},{"name":"NET_USER_ENUM_FILTER_FLAGS","features":[95]},{"name":"NET_VALIDATE_AUTHENTICATION_INPUT_ARG","features":[3,95]},{"name":"NET_VALIDATE_BAD_PASSWORD_COUNT","features":[95]},{"name":"NET_VALIDATE_BAD_PASSWORD_TIME","features":[95]},{"name":"NET_VALIDATE_LOCKOUT_TIME","features":[95]},{"name":"NET_VALIDATE_OUTPUT_ARG","features":[3,95]},{"name":"NET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG","features":[3,95]},{"name":"NET_VALIDATE_PASSWORD_HASH","features":[95]},{"name":"NET_VALIDATE_PASSWORD_HISTORY","features":[95]},{"name":"NET_VALIDATE_PASSWORD_HISTORY_LENGTH","features":[95]},{"name":"NET_VALIDATE_PASSWORD_LAST_SET","features":[95]},{"name":"NET_VALIDATE_PASSWORD_RESET_INPUT_ARG","features":[3,95]},{"name":"NET_VALIDATE_PASSWORD_TYPE","features":[95]},{"name":"NET_VALIDATE_PERSISTED_FIELDS","features":[3,95]},{"name":"NON_VALIDATED_LOGON","features":[95]},{"name":"NOT_A_DFS_PATH","features":[95]},{"name":"NO_PERMISSION_REQUIRED","features":[95]},{"name":"NSF_COMPONENT_UPDATE","features":[95]},{"name":"NSF_POSTSYSINSTALL","features":[95]},{"name":"NSF_PRIMARYINSTALL","features":[95]},{"name":"NSF_WIN16_UPGRADE","features":[95]},{"name":"NSF_WIN95_UPGRADE","features":[95]},{"name":"NSF_WINNT_SBS_UPGRADE","features":[95]},{"name":"NSF_WINNT_SVR_UPGRADE","features":[95]},{"name":"NSF_WINNT_WKS_UPGRADE","features":[95]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_CONN","features":[95]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_SET","features":[95]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_CONN","features":[95]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_SET","features":[95]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_CONN","features":[95]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_SET","features":[95]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_CONN","features":[95]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_SET","features":[95]},{"name":"NTFRSPRF_REGISTRY_ERROR_CONN","features":[95]},{"name":"NTFRSPRF_REGISTRY_ERROR_SET","features":[95]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_CONN","features":[95]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_SET","features":[95]},{"name":"NULL_USERSETINFO_PASSWD","features":[95]},{"name":"NWSAP_DISPLAY_NAME","features":[95]},{"name":"NWSAP_EVENT_BADWANFILTER_VALUE","features":[95]},{"name":"NWSAP_EVENT_BIND_FAILED","features":[95]},{"name":"NWSAP_EVENT_CARDLISTEVENT_FAIL","features":[95]},{"name":"NWSAP_EVENT_CARDMALLOC_FAILED","features":[95]},{"name":"NWSAP_EVENT_CREATELPCEVENT_ERROR","features":[95]},{"name":"NWSAP_EVENT_CREATELPCPORT_ERROR","features":[95]},{"name":"NWSAP_EVENT_GETSOCKNAME_FAILED","features":[95]},{"name":"NWSAP_EVENT_HASHTABLE_MALLOC_FAILED","features":[95]},{"name":"NWSAP_EVENT_INVALID_FILTERNAME","features":[95]},{"name":"NWSAP_EVENT_KEY_NOT_FOUND","features":[95]},{"name":"NWSAP_EVENT_LPCHANDLEMEMORY_ERROR","features":[95]},{"name":"NWSAP_EVENT_LPCLISTENMEMORY_ERROR","features":[95]},{"name":"NWSAP_EVENT_NOCARDS","features":[95]},{"name":"NWSAP_EVENT_OPTBCASTINADDR_FAILED","features":[95]},{"name":"NWSAP_EVENT_OPTEXTENDEDADDR_FAILED","features":[95]},{"name":"NWSAP_EVENT_OPTMAXADAPTERNUM_ERROR","features":[95]},{"name":"NWSAP_EVENT_RECVSEM_FAIL","features":[95]},{"name":"NWSAP_EVENT_SDMDEVENT_FAIL","features":[95]},{"name":"NWSAP_EVENT_SENDEVENT_FAIL","features":[95]},{"name":"NWSAP_EVENT_SETOPTBCAST_FAILED","features":[95]},{"name":"NWSAP_EVENT_SOCKET_FAILED","features":[95]},{"name":"NWSAP_EVENT_STARTLPCWORKER_ERROR","features":[95]},{"name":"NWSAP_EVENT_STARTRECEIVE_ERROR","features":[95]},{"name":"NWSAP_EVENT_STARTWANCHECK_ERROR","features":[95]},{"name":"NWSAP_EVENT_STARTWANWORKER_ERROR","features":[95]},{"name":"NWSAP_EVENT_STARTWORKER_ERROR","features":[95]},{"name":"NWSAP_EVENT_TABLE_MALLOC_FAILED","features":[95]},{"name":"NWSAP_EVENT_THREADEVENT_FAIL","features":[95]},{"name":"NWSAP_EVENT_WANBIND_FAILED","features":[95]},{"name":"NWSAP_EVENT_WANEVENT_ERROR","features":[95]},{"name":"NWSAP_EVENT_WANHANDLEMEMORY_ERROR","features":[95]},{"name":"NWSAP_EVENT_WANSEM_FAIL","features":[95]},{"name":"NWSAP_EVENT_WANSOCKET_FAILED","features":[95]},{"name":"NWSAP_EVENT_WSASTARTUP_FAILED","features":[95]},{"name":"NetAccessAdd","features":[95]},{"name":"NetAccessDel","features":[95]},{"name":"NetAccessEnum","features":[95]},{"name":"NetAccessGetInfo","features":[95]},{"name":"NetAccessGetUserPerms","features":[95]},{"name":"NetAccessSetInfo","features":[95]},{"name":"NetAddAlternateComputerName","features":[95]},{"name":"NetAddServiceAccount","features":[3,95]},{"name":"NetAlertRaise","features":[95]},{"name":"NetAlertRaiseEx","features":[95]},{"name":"NetAllComputerNames","features":[95]},{"name":"NetAlternateComputerNames","features":[95]},{"name":"NetApiBufferAllocate","features":[95]},{"name":"NetApiBufferFree","features":[95]},{"name":"NetApiBufferReallocate","features":[95]},{"name":"NetApiBufferSize","features":[95]},{"name":"NetAuditClear","features":[95]},{"name":"NetAuditRead","features":[95]},{"name":"NetAuditWrite","features":[95]},{"name":"NetComputerNameTypeMax","features":[95]},{"name":"NetConfigGet","features":[95]},{"name":"NetConfigGetAll","features":[95]},{"name":"NetConfigSet","features":[95]},{"name":"NetCreateProvisioningPackage","features":[95]},{"name":"NetEnumerateComputerNames","features":[95]},{"name":"NetEnumerateServiceAccounts","features":[3,95]},{"name":"NetErrorLogClear","features":[95]},{"name":"NetErrorLogRead","features":[95]},{"name":"NetErrorLogWrite","features":[95]},{"name":"NetFreeAadJoinInformation","features":[3,95,70]},{"name":"NetGetAadJoinInformation","features":[3,95,70]},{"name":"NetGetAnyDCName","features":[95]},{"name":"NetGetDCName","features":[95]},{"name":"NetGetDisplayInformationIndex","features":[95]},{"name":"NetGetJoinInformation","features":[95]},{"name":"NetGetJoinableOUs","features":[95]},{"name":"NetGroupAdd","features":[95]},{"name":"NetGroupAddUser","features":[95]},{"name":"NetGroupDel","features":[95]},{"name":"NetGroupDelUser","features":[95]},{"name":"NetGroupEnum","features":[95]},{"name":"NetGroupGetInfo","features":[95]},{"name":"NetGroupGetUsers","features":[95]},{"name":"NetGroupSetInfo","features":[95]},{"name":"NetGroupSetUsers","features":[95]},{"name":"NetIsServiceAccount","features":[3,95]},{"name":"NetJoinDomain","features":[95]},{"name":"NetLocalGroupAdd","features":[95]},{"name":"NetLocalGroupAddMember","features":[95,6]},{"name":"NetLocalGroupAddMembers","features":[95]},{"name":"NetLocalGroupDel","features":[95]},{"name":"NetLocalGroupDelMember","features":[95,6]},{"name":"NetLocalGroupDelMembers","features":[95]},{"name":"NetLocalGroupEnum","features":[95]},{"name":"NetLocalGroupGetInfo","features":[95]},{"name":"NetLocalGroupGetMembers","features":[95]},{"name":"NetLocalGroupSetInfo","features":[95]},{"name":"NetLocalGroupSetMembers","features":[95]},{"name":"NetMessageBufferSend","features":[95]},{"name":"NetMessageNameAdd","features":[95]},{"name":"NetMessageNameDel","features":[95]},{"name":"NetMessageNameEnum","features":[95]},{"name":"NetMessageNameGetInfo","features":[95]},{"name":"NetPrimaryComputerName","features":[95]},{"name":"NetProvisionComputerAccount","features":[95]},{"name":"NetProvisioning","features":[95]},{"name":"NetQueryDisplayInformation","features":[95]},{"name":"NetQueryServiceAccount","features":[3,95]},{"name":"NetRemoteComputerSupports","features":[95]},{"name":"NetRemoteTOD","features":[95]},{"name":"NetRemoveAlternateComputerName","features":[95]},{"name":"NetRemoveServiceAccount","features":[3,95]},{"name":"NetRenameMachineInDomain","features":[95]},{"name":"NetReplExportDirAdd","features":[95]},{"name":"NetReplExportDirDel","features":[95]},{"name":"NetReplExportDirEnum","features":[95]},{"name":"NetReplExportDirGetInfo","features":[95]},{"name":"NetReplExportDirLock","features":[95]},{"name":"NetReplExportDirSetInfo","features":[95]},{"name":"NetReplExportDirUnlock","features":[95]},{"name":"NetReplGetInfo","features":[95]},{"name":"NetReplImportDirAdd","features":[95]},{"name":"NetReplImportDirDel","features":[95]},{"name":"NetReplImportDirEnum","features":[95]},{"name":"NetReplImportDirGetInfo","features":[95]},{"name":"NetReplImportDirLock","features":[95]},{"name":"NetReplImportDirUnlock","features":[95]},{"name":"NetReplSetInfo","features":[95]},{"name":"NetRequestOfflineDomainJoin","features":[95]},{"name":"NetRequestProvisioningPackageInstall","features":[95]},{"name":"NetScheduleJobAdd","features":[95]},{"name":"NetScheduleJobDel","features":[95]},{"name":"NetScheduleJobEnum","features":[95]},{"name":"NetScheduleJobGetInfo","features":[95]},{"name":"NetServerComputerNameAdd","features":[95]},{"name":"NetServerComputerNameDel","features":[95]},{"name":"NetServerDiskEnum","features":[95]},{"name":"NetServerEnum","features":[95]},{"name":"NetServerGetInfo","features":[95]},{"name":"NetServerSetInfo","features":[95]},{"name":"NetServerTransportAdd","features":[95]},{"name":"NetServerTransportAddEx","features":[95]},{"name":"NetServerTransportDel","features":[95]},{"name":"NetServerTransportEnum","features":[95]},{"name":"NetServiceControl","features":[95]},{"name":"NetServiceEnum","features":[95]},{"name":"NetServiceGetInfo","features":[95]},{"name":"NetServiceInstall","features":[95]},{"name":"NetSetPrimaryComputerName","features":[95]},{"name":"NetSetupDnsMachine","features":[95]},{"name":"NetSetupDomain","features":[95]},{"name":"NetSetupDomainName","features":[95]},{"name":"NetSetupMachine","features":[95]},{"name":"NetSetupNonExistentDomain","features":[95]},{"name":"NetSetupUnjoined","features":[95]},{"name":"NetSetupUnknown","features":[95]},{"name":"NetSetupUnknownStatus","features":[95]},{"name":"NetSetupWorkgroup","features":[95]},{"name":"NetSetupWorkgroupName","features":[95]},{"name":"NetUnjoinDomain","features":[95]},{"name":"NetUseAdd","features":[95]},{"name":"NetUseDel","features":[95]},{"name":"NetUseEnum","features":[95]},{"name":"NetUseGetInfo","features":[95]},{"name":"NetUserAdd","features":[95]},{"name":"NetUserChangePassword","features":[95]},{"name":"NetUserDel","features":[95]},{"name":"NetUserEnum","features":[95]},{"name":"NetUserGetGroups","features":[95]},{"name":"NetUserGetInfo","features":[95]},{"name":"NetUserGetLocalGroups","features":[95]},{"name":"NetUserModalsGet","features":[95]},{"name":"NetUserModalsSet","features":[95]},{"name":"NetUserSetGroups","features":[95]},{"name":"NetUserSetInfo","features":[95]},{"name":"NetValidateAuthentication","features":[95]},{"name":"NetValidateName","features":[95]},{"name":"NetValidatePasswordChange","features":[95]},{"name":"NetValidatePasswordPolicy","features":[95]},{"name":"NetValidatePasswordPolicyFree","features":[95]},{"name":"NetValidatePasswordReset","features":[95]},{"name":"NetWkstaGetInfo","features":[95]},{"name":"NetWkstaSetInfo","features":[95]},{"name":"NetWkstaTransportAdd","features":[95]},{"name":"NetWkstaTransportDel","features":[95]},{"name":"NetWkstaTransportEnum","features":[95]},{"name":"NetWkstaUserEnum","features":[95]},{"name":"NetWkstaUserGetInfo","features":[95]},{"name":"NetWkstaUserSetInfo","features":[95]},{"name":"OBO_COMPONENT","features":[95]},{"name":"OBO_SOFTWARE","features":[95]},{"name":"OBO_TOKEN","features":[3,95]},{"name":"OBO_TOKEN_TYPE","features":[95]},{"name":"OBO_USER","features":[95]},{"name":"OS2MSG_FILENAME","features":[95]},{"name":"PARMNUM_ALL","features":[95]},{"name":"PARMNUM_BASE_INFOLEVEL","features":[95]},{"name":"PARM_ERROR_NONE","features":[95]},{"name":"PARM_ERROR_UNKNOWN","features":[95]},{"name":"PASSWORD_EXPIRED","features":[95]},{"name":"PATHLEN","features":[95]},{"name":"PLATFORM_ID_DOS","features":[95]},{"name":"PLATFORM_ID_NT","features":[95]},{"name":"PLATFORM_ID_OS2","features":[95]},{"name":"PLATFORM_ID_OSF","features":[95]},{"name":"PLATFORM_ID_VMS","features":[95]},{"name":"PREFIX_MISMATCH","features":[95]},{"name":"PREFIX_MISMATCH_FIXED","features":[95]},{"name":"PREFIX_MISMATCH_NOT_FIXED","features":[95]},{"name":"PRINT_OTHER_INFO","features":[95]},{"name":"PRJOB_COMPLETE","features":[95]},{"name":"PRJOB_DELETED","features":[95]},{"name":"PRJOB_DESTNOPAPER","features":[95]},{"name":"PRJOB_DESTOFFLINE","features":[95]},{"name":"PRJOB_DESTPAUSED","features":[95]},{"name":"PRJOB_DEVSTATUS","features":[95]},{"name":"PRJOB_ERROR","features":[95]},{"name":"PRJOB_INTERV","features":[95]},{"name":"PRJOB_NOTIFY","features":[95]},{"name":"PRJOB_QSTATUS","features":[95]},{"name":"PRJOB_QS_PAUSED","features":[95]},{"name":"PRJOB_QS_PRINTING","features":[95]},{"name":"PRJOB_QS_QUEUED","features":[95]},{"name":"PRJOB_QS_SPOOLING","features":[95]},{"name":"PROTO_IPV6_DHCP","features":[95]},{"name":"PROTO_IP_ALG","features":[95]},{"name":"PROTO_IP_BGMP","features":[95]},{"name":"PROTO_IP_BOOTP","features":[95]},{"name":"PROTO_IP_DHCP_ALLOCATOR","features":[95]},{"name":"PROTO_IP_DIFFSERV","features":[95]},{"name":"PROTO_IP_DNS_PROXY","features":[95]},{"name":"PROTO_IP_DTP","features":[95]},{"name":"PROTO_IP_FTP","features":[95]},{"name":"PROTO_IP_H323","features":[95]},{"name":"PROTO_IP_IGMP","features":[95]},{"name":"PROTO_IP_MGM","features":[95]},{"name":"PROTO_IP_MSDP","features":[95]},{"name":"PROTO_IP_NAT","features":[95]},{"name":"PROTO_IP_VRRP","features":[95]},{"name":"PROTO_TYPE_MCAST","features":[95]},{"name":"PROTO_TYPE_MS0","features":[95]},{"name":"PROTO_TYPE_MS1","features":[95]},{"name":"PROTO_TYPE_UCAST","features":[95]},{"name":"PROTO_VENDOR_MS0","features":[95]},{"name":"PROTO_VENDOR_MS1","features":[95]},{"name":"PROTO_VENDOR_MS2","features":[95]},{"name":"PWLEN","features":[95]},{"name":"QNLEN","features":[95]},{"name":"RASCON_IPUI","features":[3,95]},{"name":"RASCON_UIINFO_FLAGS","features":[95]},{"name":"RCUIF_DEMAND_DIAL","features":[95]},{"name":"RCUIF_DISABLE_CLASS_BASED_ROUTE","features":[95]},{"name":"RCUIF_ENABLE_NBT","features":[95]},{"name":"RCUIF_NOT_ADMIN","features":[95]},{"name":"RCUIF_USE_DISABLE_REGISTER_DNS","features":[95]},{"name":"RCUIF_USE_HEADER_COMPRESSION","features":[95]},{"name":"RCUIF_USE_IPv4_EXPLICIT_METRIC","features":[95]},{"name":"RCUIF_USE_IPv4_NAME_SERVERS","features":[95]},{"name":"RCUIF_USE_IPv4_REMOTE_GATEWAY","features":[95]},{"name":"RCUIF_USE_IPv4_STATICADDRESS","features":[95]},{"name":"RCUIF_USE_IPv6_EXPLICIT_METRIC","features":[95]},{"name":"RCUIF_USE_IPv6_NAME_SERVERS","features":[95]},{"name":"RCUIF_USE_IPv6_REMOTE_GATEWAY","features":[95]},{"name":"RCUIF_USE_IPv6_STATICADDRESS","features":[95]},{"name":"RCUIF_USE_PRIVATE_DNS_SUFFIX","features":[95]},{"name":"RCUIF_VPN","features":[95]},{"name":"REGISTER_PROTOCOL_ENTRY_POINT_STRING","features":[95]},{"name":"REPL_EDIR_INFO_0","features":[95]},{"name":"REPL_EDIR_INFO_1","features":[95]},{"name":"REPL_EDIR_INFO_1000","features":[95]},{"name":"REPL_EDIR_INFO_1001","features":[95]},{"name":"REPL_EDIR_INFO_2","features":[95]},{"name":"REPL_EXPORT_EXTENT_INFOLEVEL","features":[95]},{"name":"REPL_EXPORT_INTEGRITY_INFOLEVEL","features":[95]},{"name":"REPL_EXTENT_FILE","features":[95]},{"name":"REPL_EXTENT_TREE","features":[95]},{"name":"REPL_GUARDTIME_INFOLEVEL","features":[95]},{"name":"REPL_IDIR_INFO_0","features":[95]},{"name":"REPL_IDIR_INFO_1","features":[95]},{"name":"REPL_INFO_0","features":[95]},{"name":"REPL_INFO_1000","features":[95]},{"name":"REPL_INFO_1001","features":[95]},{"name":"REPL_INFO_1002","features":[95]},{"name":"REPL_INFO_1003","features":[95]},{"name":"REPL_INTEGRITY_FILE","features":[95]},{"name":"REPL_INTEGRITY_TREE","features":[95]},{"name":"REPL_INTERVAL_INFOLEVEL","features":[95]},{"name":"REPL_PULSE_INFOLEVEL","features":[95]},{"name":"REPL_RANDOM_INFOLEVEL","features":[95]},{"name":"REPL_ROLE_BOTH","features":[95]},{"name":"REPL_ROLE_EXPORT","features":[95]},{"name":"REPL_ROLE_IMPORT","features":[95]},{"name":"REPL_STATE_NEVER_REPLICATED","features":[95]},{"name":"REPL_STATE_NO_MASTER","features":[95]},{"name":"REPL_STATE_NO_SYNC","features":[95]},{"name":"REPL_STATE_OK","features":[95]},{"name":"REPL_UNLOCK_FORCE","features":[95]},{"name":"REPL_UNLOCK_NOFORCE","features":[95]},{"name":"RF_ADD_ALL_INTERFACES","features":[95]},{"name":"RF_DEMAND_UPDATE_ROUTES","features":[95]},{"name":"RF_MULTICAST","features":[95]},{"name":"RF_POWER","features":[95]},{"name":"RF_ROUTING","features":[95]},{"name":"RF_ROUTINGV6","features":[95]},{"name":"RIS_INTERFACE_ADDRESS_CHANGE","features":[95]},{"name":"RIS_INTERFACE_DISABLED","features":[95]},{"name":"RIS_INTERFACE_ENABLED","features":[95]},{"name":"RIS_INTERFACE_MEDIA_ABSENT","features":[95]},{"name":"RIS_INTERFACE_MEDIA_PRESENT","features":[95]},{"name":"ROUTING_DOMAIN_INFO_REVISION_1","features":[95]},{"name":"RTR_INFO_BLOCK_HEADER","features":[95]},{"name":"RTR_INFO_BLOCK_VERSION","features":[95]},{"name":"RTR_TOC_ENTRY","features":[95]},{"name":"RTUTILS_MAX_PROTOCOL_DLL_LEN","features":[95]},{"name":"RTUTILS_MAX_PROTOCOL_NAME_LEN","features":[95]},{"name":"RouterAssert","features":[95]},{"name":"RouterGetErrorStringA","features":[95]},{"name":"RouterGetErrorStringW","features":[95]},{"name":"RouterLogDeregisterA","features":[3,95]},{"name":"RouterLogDeregisterW","features":[3,95]},{"name":"RouterLogEventA","features":[3,95]},{"name":"RouterLogEventDataA","features":[3,95]},{"name":"RouterLogEventDataW","features":[3,95]},{"name":"RouterLogEventExA","features":[3,95]},{"name":"RouterLogEventExW","features":[3,95]},{"name":"RouterLogEventStringA","features":[3,95]},{"name":"RouterLogEventStringW","features":[3,95]},{"name":"RouterLogEventValistExA","features":[3,95]},{"name":"RouterLogEventValistExW","features":[3,95]},{"name":"RouterLogEventW","features":[3,95]},{"name":"RouterLogRegisterA","features":[3,95]},{"name":"RouterLogRegisterW","features":[3,95]},{"name":"SERVCE_LM20_W32TIME","features":[95]},{"name":"SERVER_DISPLAY_NAME","features":[95]},{"name":"SERVER_INFO_100","features":[95]},{"name":"SERVER_INFO_1005","features":[95]},{"name":"SERVER_INFO_101","features":[95]},{"name":"SERVER_INFO_1010","features":[95]},{"name":"SERVER_INFO_1016","features":[95]},{"name":"SERVER_INFO_1017","features":[95]},{"name":"SERVER_INFO_1018","features":[95]},{"name":"SERVER_INFO_102","features":[95]},{"name":"SERVER_INFO_103","features":[3,95]},{"name":"SERVER_INFO_1107","features":[95]},{"name":"SERVER_INFO_1501","features":[95]},{"name":"SERVER_INFO_1502","features":[95]},{"name":"SERVER_INFO_1503","features":[95]},{"name":"SERVER_INFO_1506","features":[95]},{"name":"SERVER_INFO_1509","features":[95]},{"name":"SERVER_INFO_1510","features":[95]},{"name":"SERVER_INFO_1511","features":[95]},{"name":"SERVER_INFO_1512","features":[95]},{"name":"SERVER_INFO_1513","features":[95]},{"name":"SERVER_INFO_1514","features":[3,95]},{"name":"SERVER_INFO_1515","features":[3,95]},{"name":"SERVER_INFO_1516","features":[3,95]},{"name":"SERVER_INFO_1518","features":[3,95]},{"name":"SERVER_INFO_1520","features":[95]},{"name":"SERVER_INFO_1521","features":[95]},{"name":"SERVER_INFO_1522","features":[95]},{"name":"SERVER_INFO_1523","features":[95]},{"name":"SERVER_INFO_1524","features":[95]},{"name":"SERVER_INFO_1525","features":[95]},{"name":"SERVER_INFO_1528","features":[95]},{"name":"SERVER_INFO_1529","features":[95]},{"name":"SERVER_INFO_1530","features":[95]},{"name":"SERVER_INFO_1533","features":[95]},{"name":"SERVER_INFO_1534","features":[95]},{"name":"SERVER_INFO_1535","features":[95]},{"name":"SERVER_INFO_1536","features":[3,95]},{"name":"SERVER_INFO_1537","features":[3,95]},{"name":"SERVER_INFO_1538","features":[3,95]},{"name":"SERVER_INFO_1539","features":[3,95]},{"name":"SERVER_INFO_1540","features":[3,95]},{"name":"SERVER_INFO_1541","features":[3,95]},{"name":"SERVER_INFO_1542","features":[3,95]},{"name":"SERVER_INFO_1543","features":[95]},{"name":"SERVER_INFO_1544","features":[95]},{"name":"SERVER_INFO_1545","features":[95]},{"name":"SERVER_INFO_1546","features":[95]},{"name":"SERVER_INFO_1547","features":[95]},{"name":"SERVER_INFO_1548","features":[95]},{"name":"SERVER_INFO_1549","features":[95]},{"name":"SERVER_INFO_1550","features":[95]},{"name":"SERVER_INFO_1552","features":[95]},{"name":"SERVER_INFO_1553","features":[95]},{"name":"SERVER_INFO_1554","features":[95]},{"name":"SERVER_INFO_1555","features":[95]},{"name":"SERVER_INFO_1556","features":[95]},{"name":"SERVER_INFO_1557","features":[95]},{"name":"SERVER_INFO_1560","features":[95]},{"name":"SERVER_INFO_1561","features":[95]},{"name":"SERVER_INFO_1562","features":[95]},{"name":"SERVER_INFO_1563","features":[95]},{"name":"SERVER_INFO_1564","features":[95]},{"name":"SERVER_INFO_1565","features":[95]},{"name":"SERVER_INFO_1566","features":[3,95]},{"name":"SERVER_INFO_1567","features":[95]},{"name":"SERVER_INFO_1568","features":[95]},{"name":"SERVER_INFO_1569","features":[95]},{"name":"SERVER_INFO_1570","features":[95]},{"name":"SERVER_INFO_1571","features":[95]},{"name":"SERVER_INFO_1572","features":[95]},{"name":"SERVER_INFO_1573","features":[95]},{"name":"SERVER_INFO_1574","features":[95]},{"name":"SERVER_INFO_1575","features":[95]},{"name":"SERVER_INFO_1576","features":[95]},{"name":"SERVER_INFO_1577","features":[95]},{"name":"SERVER_INFO_1578","features":[95]},{"name":"SERVER_INFO_1579","features":[95]},{"name":"SERVER_INFO_1580","features":[95]},{"name":"SERVER_INFO_1581","features":[95]},{"name":"SERVER_INFO_1582","features":[95]},{"name":"SERVER_INFO_1583","features":[95]},{"name":"SERVER_INFO_1584","features":[95]},{"name":"SERVER_INFO_1585","features":[3,95]},{"name":"SERVER_INFO_1586","features":[95]},{"name":"SERVER_INFO_1587","features":[95]},{"name":"SERVER_INFO_1588","features":[95]},{"name":"SERVER_INFO_1590","features":[95]},{"name":"SERVER_INFO_1591","features":[95]},{"name":"SERVER_INFO_1592","features":[95]},{"name":"SERVER_INFO_1593","features":[95]},{"name":"SERVER_INFO_1594","features":[95]},{"name":"SERVER_INFO_1595","features":[95]},{"name":"SERVER_INFO_1596","features":[95]},{"name":"SERVER_INFO_1597","features":[95]},{"name":"SERVER_INFO_1598","features":[95]},{"name":"SERVER_INFO_1599","features":[3,95]},{"name":"SERVER_INFO_1600","features":[3,95]},{"name":"SERVER_INFO_1601","features":[95]},{"name":"SERVER_INFO_1602","features":[3,95]},{"name":"SERVER_INFO_402","features":[95]},{"name":"SERVER_INFO_403","features":[95]},{"name":"SERVER_INFO_502","features":[3,95]},{"name":"SERVER_INFO_503","features":[3,95]},{"name":"SERVER_INFO_598","features":[3,95]},{"name":"SERVER_INFO_599","features":[3,95]},{"name":"SERVER_INFO_HIDDEN","features":[95]},{"name":"SERVER_INFO_SECURITY","features":[95]},{"name":"SERVER_TRANSPORT_INFO_0","features":[95]},{"name":"SERVER_TRANSPORT_INFO_1","features":[95]},{"name":"SERVER_TRANSPORT_INFO_2","features":[95]},{"name":"SERVER_TRANSPORT_INFO_3","features":[95]},{"name":"SERVICE2_BASE","features":[95]},{"name":"SERVICE_ACCOUNT_FLAG_ADD_AGAINST_RODC","features":[95]},{"name":"SERVICE_ACCOUNT_FLAG_LINK_TO_HOST_ONLY","features":[95]},{"name":"SERVICE_ACCOUNT_FLAG_REMOVE_OFFLINE","features":[95]},{"name":"SERVICE_ACCOUNT_FLAG_UNLINK_FROM_HOST_ONLY","features":[95]},{"name":"SERVICE_ACCOUNT_PASSWORD","features":[95]},{"name":"SERVICE_ACCOUNT_SECRET_PREFIX","features":[95]},{"name":"SERVICE_ADWS","features":[95]},{"name":"SERVICE_AFP","features":[95]},{"name":"SERVICE_ALERTER","features":[95]},{"name":"SERVICE_BASE","features":[95]},{"name":"SERVICE_BROWSER","features":[95]},{"name":"SERVICE_CCP_CHKPT_NUM","features":[95]},{"name":"SERVICE_CCP_NO_HINT","features":[95]},{"name":"SERVICE_CCP_QUERY_HINT","features":[95]},{"name":"SERVICE_CCP_WAIT_TIME","features":[95]},{"name":"SERVICE_CTRL_CONTINUE","features":[95]},{"name":"SERVICE_CTRL_INTERROGATE","features":[95]},{"name":"SERVICE_CTRL_PAUSE","features":[95]},{"name":"SERVICE_CTRL_REDIR_COMM","features":[95]},{"name":"SERVICE_CTRL_REDIR_DISK","features":[95]},{"name":"SERVICE_CTRL_REDIR_PRINT","features":[95]},{"name":"SERVICE_CTRL_UNINSTALL","features":[95]},{"name":"SERVICE_DHCP","features":[95]},{"name":"SERVICE_DNS_CACHE","features":[95]},{"name":"SERVICE_DOS_ENCRYPTION","features":[95]},{"name":"SERVICE_DSROLE","features":[95]},{"name":"SERVICE_INFO_0","features":[95]},{"name":"SERVICE_INFO_1","features":[95]},{"name":"SERVICE_INFO_2","features":[95]},{"name":"SERVICE_INSTALLED","features":[95]},{"name":"SERVICE_INSTALL_PENDING","features":[95]},{"name":"SERVICE_INSTALL_STATE","features":[95]},{"name":"SERVICE_IP_CHKPT_NUM","features":[95]},{"name":"SERVICE_IP_NO_HINT","features":[95]},{"name":"SERVICE_IP_QUERY_HINT","features":[95]},{"name":"SERVICE_IP_WAITTIME_SHIFT","features":[95]},{"name":"SERVICE_IP_WAIT_TIME","features":[95]},{"name":"SERVICE_ISMSERV","features":[95]},{"name":"SERVICE_KDC","features":[95]},{"name":"SERVICE_LM20_AFP","features":[95]},{"name":"SERVICE_LM20_ALERTER","features":[95]},{"name":"SERVICE_LM20_BROWSER","features":[95]},{"name":"SERVICE_LM20_DHCP","features":[95]},{"name":"SERVICE_LM20_DSROLE","features":[95]},{"name":"SERVICE_LM20_ISMSERV","features":[95]},{"name":"SERVICE_LM20_KDC","features":[95]},{"name":"SERVICE_LM20_LMHOSTS","features":[95]},{"name":"SERVICE_LM20_MESSENGER","features":[95]},{"name":"SERVICE_LM20_NBT","features":[95]},{"name":"SERVICE_LM20_NETLOGON","features":[95]},{"name":"SERVICE_LM20_NETPOPUP","features":[95]},{"name":"SERVICE_LM20_NETRUN","features":[95]},{"name":"SERVICE_LM20_NTDS","features":[95]},{"name":"SERVICE_LM20_NTFRS","features":[95]},{"name":"SERVICE_LM20_NWSAP","features":[95]},{"name":"SERVICE_LM20_REPL","features":[95]},{"name":"SERVICE_LM20_RIPL","features":[95]},{"name":"SERVICE_LM20_RPCLOCATOR","features":[95]},{"name":"SERVICE_LM20_SCHEDULE","features":[95]},{"name":"SERVICE_LM20_SERVER","features":[95]},{"name":"SERVICE_LM20_SPOOLER","features":[95]},{"name":"SERVICE_LM20_SQLSERVER","features":[95]},{"name":"SERVICE_LM20_TCPIP","features":[95]},{"name":"SERVICE_LM20_TELNET","features":[95]},{"name":"SERVICE_LM20_TIMESOURCE","features":[95]},{"name":"SERVICE_LM20_TRKSVR","features":[95]},{"name":"SERVICE_LM20_TRKWKS","features":[95]},{"name":"SERVICE_LM20_UPS","features":[95]},{"name":"SERVICE_LM20_WORKSTATION","features":[95]},{"name":"SERVICE_LM20_XACTSRV","features":[95]},{"name":"SERVICE_LMHOSTS","features":[95]},{"name":"SERVICE_MAXTIME","features":[95]},{"name":"SERVICE_MESSENGER","features":[95]},{"name":"SERVICE_NBT","features":[95]},{"name":"SERVICE_NETLOGON","features":[95]},{"name":"SERVICE_NETPOPUP","features":[95]},{"name":"SERVICE_NETRUN","features":[95]},{"name":"SERVICE_NOT_PAUSABLE","features":[95]},{"name":"SERVICE_NOT_UNINSTALLABLE","features":[95]},{"name":"SERVICE_NTDS","features":[95]},{"name":"SERVICE_NTFRS","features":[95]},{"name":"SERVICE_NTIP_WAITTIME_SHIFT","features":[95]},{"name":"SERVICE_NTLMSSP","features":[95]},{"name":"SERVICE_NT_MAXTIME","features":[95]},{"name":"SERVICE_NWCS","features":[95]},{"name":"SERVICE_NWSAP","features":[95]},{"name":"SERVICE_PAUSABLE","features":[95]},{"name":"SERVICE_PAUSE_STATE","features":[95]},{"name":"SERVICE_REDIR_COMM_PAUSED","features":[95]},{"name":"SERVICE_REDIR_DISK_PAUSED","features":[95]},{"name":"SERVICE_REDIR_PAUSED","features":[95]},{"name":"SERVICE_REDIR_PRINT_PAUSED","features":[95]},{"name":"SERVICE_REPL","features":[95]},{"name":"SERVICE_RESRV_MASK","features":[95]},{"name":"SERVICE_RIPL","features":[95]},{"name":"SERVICE_RPCLOCATOR","features":[95]},{"name":"SERVICE_SCHEDULE","features":[95]},{"name":"SERVICE_SERVER","features":[95]},{"name":"SERVICE_SPOOLER","features":[95]},{"name":"SERVICE_SQLSERVER","features":[95]},{"name":"SERVICE_TCPIP","features":[95]},{"name":"SERVICE_TELNET","features":[95]},{"name":"SERVICE_TIMESOURCE","features":[95]},{"name":"SERVICE_TRKSVR","features":[95]},{"name":"SERVICE_TRKWKS","features":[95]},{"name":"SERVICE_UIC_AMBIGPARM","features":[95]},{"name":"SERVICE_UIC_BADPARMVAL","features":[95]},{"name":"SERVICE_UIC_CONFIG","features":[95]},{"name":"SERVICE_UIC_CONFLPARM","features":[95]},{"name":"SERVICE_UIC_DUPPARM","features":[95]},{"name":"SERVICE_UIC_EXEC","features":[95]},{"name":"SERVICE_UIC_FILE","features":[95]},{"name":"SERVICE_UIC_INTERNAL","features":[95]},{"name":"SERVICE_UIC_KILL","features":[95]},{"name":"SERVICE_UIC_MISSPARM","features":[95]},{"name":"SERVICE_UIC_M_ADDPAK","features":[95]},{"name":"SERVICE_UIC_M_ANNOUNCE","features":[95]},{"name":"SERVICE_UIC_M_DATABASE_ERROR","features":[95]},{"name":"SERVICE_UIC_M_DISK","features":[95]},{"name":"SERVICE_UIC_M_ERRLOG","features":[95]},{"name":"SERVICE_UIC_M_FILES","features":[95]},{"name":"SERVICE_UIC_M_FILE_UW","features":[95]},{"name":"SERVICE_UIC_M_LANGROUP","features":[95]},{"name":"SERVICE_UIC_M_LANROOT","features":[95]},{"name":"SERVICE_UIC_M_LAZY","features":[95]},{"name":"SERVICE_UIC_M_LOGS","features":[95]},{"name":"SERVICE_UIC_M_LSA_MACHINE_ACCT","features":[95]},{"name":"SERVICE_UIC_M_MEMORY","features":[95]},{"name":"SERVICE_UIC_M_MSGNAME","features":[95]},{"name":"SERVICE_UIC_M_NETLOGON_AUTH","features":[95]},{"name":"SERVICE_UIC_M_NETLOGON_DC_CFLCT","features":[95]},{"name":"SERVICE_UIC_M_NETLOGON_MPATH","features":[95]},{"name":"SERVICE_UIC_M_NETLOGON_NO_DC","features":[95]},{"name":"SERVICE_UIC_M_NULL","features":[95]},{"name":"SERVICE_UIC_M_PROCESSES","features":[95]},{"name":"SERVICE_UIC_M_REDIR","features":[95]},{"name":"SERVICE_UIC_M_SECURITY","features":[95]},{"name":"SERVICE_UIC_M_SEC_FILE_ERR","features":[95]},{"name":"SERVICE_UIC_M_SERVER","features":[95]},{"name":"SERVICE_UIC_M_SERVER_SEC_ERR","features":[95]},{"name":"SERVICE_UIC_M_THREADS","features":[95]},{"name":"SERVICE_UIC_M_UAS","features":[95]},{"name":"SERVICE_UIC_M_UAS_INVALID_ROLE","features":[95]},{"name":"SERVICE_UIC_M_UAS_MACHINE_ACCT","features":[95]},{"name":"SERVICE_UIC_M_UAS_PROLOG","features":[95]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NMEMB","features":[95]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NOGRP","features":[95]},{"name":"SERVICE_UIC_M_WKSTA","features":[95]},{"name":"SERVICE_UIC_NORMAL","features":[95]},{"name":"SERVICE_UIC_RESOURCE","features":[95]},{"name":"SERVICE_UIC_SUBSERV","features":[95]},{"name":"SERVICE_UIC_SYSTEM","features":[95]},{"name":"SERVICE_UIC_UNKPARM","features":[95]},{"name":"SERVICE_UNINSTALLABLE","features":[95]},{"name":"SERVICE_UNINSTALLED","features":[95]},{"name":"SERVICE_UNINSTALL_PENDING","features":[95]},{"name":"SERVICE_UPS","features":[95]},{"name":"SERVICE_W32TIME","features":[95]},{"name":"SERVICE_WORKSTATION","features":[95]},{"name":"SERVICE_XACTSRV","features":[95]},{"name":"SESSION_CRYPT_KLEN","features":[95]},{"name":"SESSION_PWLEN","features":[95]},{"name":"SHPWLEN","features":[95]},{"name":"SMB_COMPRESSION_INFO","features":[3,95]},{"name":"SMB_TREE_CONNECT_PARAMETERS","features":[95]},{"name":"SMB_USE_OPTION_COMPRESSION_PARAMETERS","features":[95]},{"name":"SNLEN","features":[95]},{"name":"SRV_HASH_GENERATION_ACTIVE","features":[95]},{"name":"SRV_SUPPORT_HASH_GENERATION","features":[95]},{"name":"STD_ALERT","features":[95]},{"name":"STXTLEN","features":[95]},{"name":"SUPPORTS_ANY","features":[95]},{"name":"SUPPORTS_BINDING_INTERFACE_FLAGS","features":[95]},{"name":"SUPPORTS_LOCAL","features":[95]},{"name":"SUPPORTS_REMOTE_ADMIN_PROTOCOL","features":[95]},{"name":"SUPPORTS_RPC","features":[95]},{"name":"SUPPORTS_SAM_PROTOCOL","features":[95]},{"name":"SUPPORTS_UNICODE","features":[95]},{"name":"SVAUD_BADNETLOGON","features":[95]},{"name":"SVAUD_BADSESSLOGON","features":[95]},{"name":"SVAUD_BADUSE","features":[95]},{"name":"SVAUD_GOODNETLOGON","features":[95]},{"name":"SVAUD_GOODSESSLOGON","features":[95]},{"name":"SVAUD_GOODUSE","features":[95]},{"name":"SVAUD_LOGONLIM","features":[95]},{"name":"SVAUD_PERMISSIONS","features":[95]},{"name":"SVAUD_RESOURCE","features":[95]},{"name":"SVAUD_SERVICE","features":[95]},{"name":"SVAUD_USERLIST","features":[95]},{"name":"SVI1_NUM_ELEMENTS","features":[95]},{"name":"SVI2_NUM_ELEMENTS","features":[95]},{"name":"SVI3_NUM_ELEMENTS","features":[95]},{"name":"SVTI2_CLUSTER_DNN_NAME","features":[95]},{"name":"SVTI2_CLUSTER_NAME","features":[95]},{"name":"SVTI2_REMAP_PIPE_NAMES","features":[95]},{"name":"SVTI2_RESERVED1","features":[95]},{"name":"SVTI2_RESERVED2","features":[95]},{"name":"SVTI2_RESERVED3","features":[95]},{"name":"SVTI2_SCOPED_NAME","features":[95]},{"name":"SVTI2_UNICODE_TRANSPORT_ADDRESS","features":[95]},{"name":"SV_ACCEPTDOWNLEVELAPIS_PARMNUM","features":[95]},{"name":"SV_ACCESSALERT_PARMNUM","features":[95]},{"name":"SV_ACTIVELOCKS_PARMNUM","features":[95]},{"name":"SV_ALERTSCHEDULE_PARMNUM","features":[95]},{"name":"SV_ALERTSCHED_PARMNUM","features":[95]},{"name":"SV_ALERTS_PARMNUM","features":[95]},{"name":"SV_ALIST_MTIME_PARMNUM","features":[95]},{"name":"SV_ANNDELTA_PARMNUM","features":[95]},{"name":"SV_ANNOUNCE_PARMNUM","features":[95]},{"name":"SV_AUTOSHARESERVER_PARMNUM","features":[95]},{"name":"SV_AUTOSHAREWKS_PARMNUM","features":[95]},{"name":"SV_BALANCECOUNT_PARMNUM","features":[95]},{"name":"SV_CACHEDDIRECTORYLIMIT_PARMNUM","features":[95]},{"name":"SV_CACHEDOPENLIMIT_PARMNUM","features":[95]},{"name":"SV_CHDEVJOBS_PARMNUM","features":[95]},{"name":"SV_CHDEVQ_PARMNUM","features":[95]},{"name":"SV_COMMENT_PARMNUM","features":[95]},{"name":"SV_CONNECTIONLESSAUTODISC_PARMNUM","features":[95]},{"name":"SV_CONNECTIONNOSESSIONSTIMEOUT_PARMNUM","features":[95]},{"name":"SV_CONNECTIONS_PARMNUM","features":[95]},{"name":"SV_CRITICALTHREADS_PARMNUM","features":[95]},{"name":"SV_DISABLEDOS_PARMNUM","features":[95]},{"name":"SV_DISABLESTRICTNAMECHECKING_PARMNUM","features":[95]},{"name":"SV_DISC_PARMNUM","features":[95]},{"name":"SV_DISKALERT_PARMNUM","features":[95]},{"name":"SV_DISKSPACETHRESHOLD_PARMNUM","features":[95]},{"name":"SV_DOMAIN_PARMNUM","features":[95]},{"name":"SV_ENABLEAUTHENTICATEUSERSHARING_PARMNUM","features":[95]},{"name":"SV_ENABLECOMPRESSION_PARMNUM","features":[95]},{"name":"SV_ENABLEFCBOPENS_PARMNUM","features":[95]},{"name":"SV_ENABLEFORCEDLOGOFF_PARMNUM","features":[95]},{"name":"SV_ENABLEOPLOCKFORCECLOSE_PARMNUM","features":[95]},{"name":"SV_ENABLEOPLOCKS_PARMNUM","features":[95]},{"name":"SV_ENABLERAW_PARMNUM","features":[95]},{"name":"SV_ENABLESECURITYSIGNATURE_PARMNUM","features":[95]},{"name":"SV_ENABLESHAREDNETDRIVES_PARMNUM","features":[95]},{"name":"SV_ENABLESOFTCOMPAT_PARMNUM","features":[95]},{"name":"SV_ENABLEW9XSECURITYSIGNATURE_PARMNUM","features":[95]},{"name":"SV_ENABLEWFW311DIRECTIPX_PARMNUM","features":[95]},{"name":"SV_ENFORCEKERBEROSREAUTHENTICATION_PARMNUM","features":[95]},{"name":"SV_ERRORALERT_PARMNUM","features":[95]},{"name":"SV_ERRORTHRESHOLD_PARMNUM","features":[95]},{"name":"SV_GLIST_MTIME_PARMNUM","features":[95]},{"name":"SV_GUESTACC_PARMNUM","features":[95]},{"name":"SV_HIDDEN","features":[95]},{"name":"SV_HIDDEN_PARMNUM","features":[95]},{"name":"SV_IDLETHREADTIMEOUT_PARMNUM","features":[95]},{"name":"SV_INITCONNTABLE_PARMNUM","features":[95]},{"name":"SV_INITFILETABLE_PARMNUM","features":[95]},{"name":"SV_INITSEARCHTABLE_PARMNUM","features":[95]},{"name":"SV_INITSESSTABLE_PARMNUM","features":[95]},{"name":"SV_INITWORKITEMS_PARMNUM","features":[95]},{"name":"SV_IRPSTACKSIZE_PARMNUM","features":[95]},{"name":"SV_LANMASK_PARMNUM","features":[95]},{"name":"SV_LINKINFOVALIDTIME_PARMNUM","features":[95]},{"name":"SV_LMANNOUNCE_PARMNUM","features":[95]},{"name":"SV_LOCKVIOLATIONDELAY_PARMNUM","features":[95]},{"name":"SV_LOCKVIOLATIONOFFSET_PARMNUM","features":[95]},{"name":"SV_LOCKVIOLATIONRETRIES_PARMNUM","features":[95]},{"name":"SV_LOGONALERT_PARMNUM","features":[95]},{"name":"SV_LOWDISKSPACEMINIMUM_PARMNUM","features":[95]},{"name":"SV_MAXAUDITSZ_PARMNUM","features":[95]},{"name":"SV_MAXCOPYLENGTH_PARMNUM","features":[95]},{"name":"SV_MAXCOPYREADLEN_PARMNUM","features":[95]},{"name":"SV_MAXCOPYWRITELEN_PARMNUM","features":[95]},{"name":"SV_MAXFREECONNECTIONS_PARMNUM","features":[95]},{"name":"SV_MAXFREELFCBS_PARMNUM","features":[95]},{"name":"SV_MAXFREEMFCBS_PARMNUM","features":[95]},{"name":"SV_MAXFREEPAGEDPOOLCHUNKS_PARMNUM","features":[95]},{"name":"SV_MAXFREERFCBS_PARMNUM","features":[95]},{"name":"SV_MAXGLOBALOPENSEARCH_PARMNUM","features":[95]},{"name":"SV_MAXKEEPCOMPLSEARCH_PARMNUM","features":[95]},{"name":"SV_MAXKEEPSEARCH_PARMNUM","features":[95]},{"name":"SV_MAXLINKDELAY_PARMNUM","features":[95]},{"name":"SV_MAXMPXCT_PARMNUM","features":[95]},{"name":"SV_MAXNONPAGEDMEMORYUSAGE_PARMNUM","features":[95]},{"name":"SV_MAXPAGEDMEMORYUSAGE_PARMNUM","features":[95]},{"name":"SV_MAXPAGEDPOOLCHUNKSIZE_PARMNUM","features":[95]},{"name":"SV_MAXRAWBUFLEN_PARMNUM","features":[95]},{"name":"SV_MAXRAWWORKITEMS_PARMNUM","features":[95]},{"name":"SV_MAXTHREADSPERQUEUE_PARMNUM","features":[95]},{"name":"SV_MAXWORKITEMIDLETIME_PARMNUM","features":[95]},{"name":"SV_MAXWORKITEMS_PARMNUM","features":[95]},{"name":"SV_MAX_CMD_LEN","features":[95]},{"name":"SV_MAX_SRV_HEUR_LEN","features":[95]},{"name":"SV_MDLREADSWITCHOVER_PARMNUM","features":[95]},{"name":"SV_MINCLIENTBUFFERSIZE_PARMNUM","features":[95]},{"name":"SV_MINFREECONNECTIONS_PARMNUM","features":[95]},{"name":"SV_MINFREEWORKITEMS_PARMNUM","features":[95]},{"name":"SV_MINKEEPCOMPLSEARCH_PARMNUM","features":[95]},{"name":"SV_MINKEEPSEARCH_PARMNUM","features":[95]},{"name":"SV_MINLINKTHROUGHPUT_PARMNUM","features":[95]},{"name":"SV_MINPAGEDPOOLCHUNKSIZE_PARMNUM","features":[95]},{"name":"SV_MINRCVQUEUE_PARMNUM","features":[95]},{"name":"SV_NAME_PARMNUM","features":[95]},{"name":"SV_NETIOALERT_PARMNUM","features":[95]},{"name":"SV_NETWORKERRORTHRESHOLD_PARMNUM","features":[95]},{"name":"SV_NODISC","features":[95]},{"name":"SV_NUMADMIN_PARMNUM","features":[95]},{"name":"SV_NUMBIGBUF_PARMNUM","features":[95]},{"name":"SV_NUMBLOCKTHREADS_PARMNUM","features":[95]},{"name":"SV_NUMFILETASKS_PARMNUM","features":[95]},{"name":"SV_NUMREQBUF_PARMNUM","features":[95]},{"name":"SV_OPENFILES_PARMNUM","features":[95]},{"name":"SV_OPENSEARCH_PARMNUM","features":[95]},{"name":"SV_OPLOCKBREAKRESPONSEWAIT_PARMNUM","features":[95]},{"name":"SV_OPLOCKBREAKWAIT_PARMNUM","features":[95]},{"name":"SV_OTHERQUEUEAFFINITY_PARMNUM","features":[95]},{"name":"SV_PLATFORM_ID_NT","features":[95]},{"name":"SV_PLATFORM_ID_OS2","features":[95]},{"name":"SV_PLATFORM_ID_PARMNUM","features":[95]},{"name":"SV_PREFERREDAFFINITY_PARMNUM","features":[95]},{"name":"SV_PRODUCTTYPE_PARMNUM","features":[95]},{"name":"SV_QUEUESAMPLESECS_PARMNUM","features":[95]},{"name":"SV_RAWWORKITEMS_PARMNUM","features":[95]},{"name":"SV_REMOVEDUPLICATESEARCHES_PARMNUM","features":[95]},{"name":"SV_REQUIRESECURITYSIGNATURE_PARMNUM","features":[95]},{"name":"SV_RESTRICTNULLSESSACCESS_PARMNUM","features":[95]},{"name":"SV_SCAVQOSINFOUPDATETIME_PARMNUM","features":[95]},{"name":"SV_SCAVTIMEOUT_PARMNUM","features":[95]},{"name":"SV_SECURITY_PARMNUM","features":[95]},{"name":"SV_SENDSFROMPREFERREDPROCESSOR_PARMNUM","features":[95]},{"name":"SV_SERVERSIZE_PARMNUM","features":[95]},{"name":"SV_SESSCONNS_PARMNUM","features":[95]},{"name":"SV_SESSOPENS_PARMNUM","features":[95]},{"name":"SV_SESSREQS_PARMNUM","features":[95]},{"name":"SV_SESSUSERS_PARMNUM","features":[95]},{"name":"SV_SESSVCS_PARMNUM","features":[95]},{"name":"SV_SHARESECURITY","features":[95]},{"name":"SV_SHARES_PARMNUM","features":[95]},{"name":"SV_SHARINGVIOLATIONDELAY_PARMNUM","features":[95]},{"name":"SV_SHARINGVIOLATIONRETRIES_PARMNUM","features":[95]},{"name":"SV_SIZREQBUF_PARMNUM","features":[95]},{"name":"SV_SRVHEURISTICS_PARMNUM","features":[95]},{"name":"SV_THREADCOUNTADD_PARMNUM","features":[95]},{"name":"SV_THREADPRIORITY_PARMNUM","features":[95]},{"name":"SV_TIMESOURCE_PARMNUM","features":[95]},{"name":"SV_TYPE_AFP","features":[95]},{"name":"SV_TYPE_ALL","features":[95]},{"name":"SV_TYPE_ALTERNATE_XPORT","features":[95]},{"name":"SV_TYPE_BACKUP_BROWSER","features":[95]},{"name":"SV_TYPE_CLUSTER_NT","features":[95]},{"name":"SV_TYPE_CLUSTER_VS_NT","features":[95]},{"name":"SV_TYPE_DCE","features":[95]},{"name":"SV_TYPE_DFS","features":[95]},{"name":"SV_TYPE_DIALIN_SERVER","features":[95]},{"name":"SV_TYPE_DOMAIN_BAKCTRL","features":[95]},{"name":"SV_TYPE_DOMAIN_CTRL","features":[95]},{"name":"SV_TYPE_DOMAIN_ENUM","features":[95]},{"name":"SV_TYPE_DOMAIN_MASTER","features":[95]},{"name":"SV_TYPE_DOMAIN_MEMBER","features":[95]},{"name":"SV_TYPE_LOCAL_LIST_ONLY","features":[95]},{"name":"SV_TYPE_MASTER_BROWSER","features":[95]},{"name":"SV_TYPE_NOVELL","features":[95]},{"name":"SV_TYPE_NT","features":[95]},{"name":"SV_TYPE_PARMNUM","features":[95]},{"name":"SV_TYPE_POTENTIAL_BROWSER","features":[95]},{"name":"SV_TYPE_PRINTQ_SERVER","features":[95]},{"name":"SV_TYPE_SERVER","features":[95]},{"name":"SV_TYPE_SERVER_MFPN","features":[95]},{"name":"SV_TYPE_SERVER_NT","features":[95]},{"name":"SV_TYPE_SERVER_OSF","features":[95]},{"name":"SV_TYPE_SERVER_UNIX","features":[95]},{"name":"SV_TYPE_SERVER_VMS","features":[95]},{"name":"SV_TYPE_SQLSERVER","features":[95]},{"name":"SV_TYPE_TERMINALSERVER","features":[95]},{"name":"SV_TYPE_TIME_SOURCE","features":[95]},{"name":"SV_TYPE_WFW","features":[95]},{"name":"SV_TYPE_WINDOWS","features":[95]},{"name":"SV_TYPE_WORKSTATION","features":[95]},{"name":"SV_TYPE_XENIX_SERVER","features":[95]},{"name":"SV_ULIST_MTIME_PARMNUM","features":[95]},{"name":"SV_USERPATH_PARMNUM","features":[95]},{"name":"SV_USERSECURITY","features":[95]},{"name":"SV_USERS_PARMNUM","features":[95]},{"name":"SV_USERS_PER_LICENSE","features":[95]},{"name":"SV_VERSION_MAJOR_PARMNUM","features":[95]},{"name":"SV_VERSION_MINOR_PARMNUM","features":[95]},{"name":"SV_VISIBLE","features":[95]},{"name":"SV_XACTMEMSIZE_PARMNUM","features":[95]},{"name":"SW_AUTOPROF_LOAD_MASK","features":[95]},{"name":"SW_AUTOPROF_SAVE_MASK","features":[95]},{"name":"ServiceAccountPasswordGUID","features":[95]},{"name":"SetNetScheduleAccountInformation","features":[95]},{"name":"TIME_OF_DAY_INFO","features":[95]},{"name":"TITLE_SC_MESSAGE_BOX","features":[95]},{"name":"TRACE_NO_STDINFO","features":[95]},{"name":"TRACE_NO_SYNCH","features":[95]},{"name":"TRACE_USE_CONSOLE","features":[95]},{"name":"TRACE_USE_DATE","features":[95]},{"name":"TRACE_USE_FILE","features":[95]},{"name":"TRACE_USE_MASK","features":[95]},{"name":"TRACE_USE_MSEC","features":[95]},{"name":"TRANSPORT_INFO","features":[3,95]},{"name":"TRANSPORT_NAME_PARMNUM","features":[95]},{"name":"TRANSPORT_QUALITYOFSERVICE_PARMNUM","features":[95]},{"name":"TRANSPORT_TYPE","features":[95]},{"name":"TraceDeregisterA","features":[95]},{"name":"TraceDeregisterExA","features":[95]},{"name":"TraceDeregisterExW","features":[95]},{"name":"TraceDeregisterW","features":[95]},{"name":"TraceDumpExA","features":[3,95]},{"name":"TraceDumpExW","features":[3,95]},{"name":"TraceGetConsoleA","features":[3,95]},{"name":"TraceGetConsoleW","features":[3,95]},{"name":"TracePrintfA","features":[95]},{"name":"TracePrintfExA","features":[95]},{"name":"TracePrintfExW","features":[95]},{"name":"TracePrintfW","features":[95]},{"name":"TracePutsExA","features":[95]},{"name":"TracePutsExW","features":[95]},{"name":"TraceRegisterExA","features":[95]},{"name":"TraceRegisterExW","features":[95]},{"name":"TraceVprintfExA","features":[95]},{"name":"TraceVprintfExW","features":[95]},{"name":"UAS_ROLE_BACKUP","features":[95]},{"name":"UAS_ROLE_MEMBER","features":[95]},{"name":"UAS_ROLE_PRIMARY","features":[95]},{"name":"UAS_ROLE_STANDALONE","features":[95]},{"name":"UF_ACCOUNTDISABLE","features":[95]},{"name":"UF_DONT_EXPIRE_PASSWD","features":[95]},{"name":"UF_DONT_REQUIRE_PREAUTH","features":[95]},{"name":"UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[95]},{"name":"UF_HOMEDIR_REQUIRED","features":[95]},{"name":"UF_INTERDOMAIN_TRUST_ACCOUNT","features":[95]},{"name":"UF_LOCKOUT","features":[95]},{"name":"UF_MNS_LOGON_ACCOUNT","features":[95]},{"name":"UF_NORMAL_ACCOUNT","features":[95]},{"name":"UF_NOT_DELEGATED","features":[95]},{"name":"UF_NO_AUTH_DATA_REQUIRED","features":[95]},{"name":"UF_PARTIAL_SECRETS_ACCOUNT","features":[95]},{"name":"UF_PASSWD_CANT_CHANGE","features":[95]},{"name":"UF_PASSWD_NOTREQD","features":[95]},{"name":"UF_PASSWORD_EXPIRED","features":[95]},{"name":"UF_SCRIPT","features":[95]},{"name":"UF_SERVER_TRUST_ACCOUNT","features":[95]},{"name":"UF_SMARTCARD_REQUIRED","features":[95]},{"name":"UF_TEMP_DUPLICATE_ACCOUNT","features":[95]},{"name":"UF_TRUSTED_FOR_DELEGATION","features":[95]},{"name":"UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[95]},{"name":"UF_USE_AES_KEYS","features":[95]},{"name":"UF_USE_DES_KEY_ONLY","features":[95]},{"name":"UF_WORKSTATION_TRUST_ACCOUNT","features":[95]},{"name":"UNCLEN","features":[95]},{"name":"UNITS_PER_DAY","features":[95]},{"name":"UNLEN","features":[95]},{"name":"UPPER_GET_HINT_MASK","features":[95]},{"name":"UPPER_HINT_MASK","features":[95]},{"name":"USER_ACCOUNT_FLAGS","features":[95]},{"name":"USER_ACCT_EXPIRES_PARMNUM","features":[95]},{"name":"USER_AUTH_FLAGS_PARMNUM","features":[95]},{"name":"USER_CODE_PAGE_PARMNUM","features":[95]},{"name":"USER_COMMENT_PARMNUM","features":[95]},{"name":"USER_COUNTRY_CODE_PARMNUM","features":[95]},{"name":"USER_FLAGS_PARMNUM","features":[95]},{"name":"USER_FULL_NAME_PARMNUM","features":[95]},{"name":"USER_HOME_DIR_DRIVE_PARMNUM","features":[95]},{"name":"USER_HOME_DIR_PARMNUM","features":[95]},{"name":"USER_INFO_0","features":[95]},{"name":"USER_INFO_1","features":[95]},{"name":"USER_INFO_10","features":[95]},{"name":"USER_INFO_1003","features":[95]},{"name":"USER_INFO_1005","features":[95]},{"name":"USER_INFO_1006","features":[95]},{"name":"USER_INFO_1007","features":[95]},{"name":"USER_INFO_1008","features":[95]},{"name":"USER_INFO_1009","features":[95]},{"name":"USER_INFO_1010","features":[95]},{"name":"USER_INFO_1011","features":[95]},{"name":"USER_INFO_1012","features":[95]},{"name":"USER_INFO_1013","features":[95]},{"name":"USER_INFO_1014","features":[95]},{"name":"USER_INFO_1017","features":[95]},{"name":"USER_INFO_1018","features":[95]},{"name":"USER_INFO_1020","features":[95]},{"name":"USER_INFO_1023","features":[95]},{"name":"USER_INFO_1024","features":[95]},{"name":"USER_INFO_1025","features":[95]},{"name":"USER_INFO_1051","features":[95]},{"name":"USER_INFO_1052","features":[95]},{"name":"USER_INFO_1053","features":[95]},{"name":"USER_INFO_11","features":[95]},{"name":"USER_INFO_2","features":[95]},{"name":"USER_INFO_20","features":[95]},{"name":"USER_INFO_21","features":[95]},{"name":"USER_INFO_22","features":[95]},{"name":"USER_INFO_23","features":[95,6]},{"name":"USER_INFO_24","features":[3,95,6]},{"name":"USER_INFO_3","features":[95]},{"name":"USER_INFO_4","features":[95,6]},{"name":"USER_LAST_LOGOFF_PARMNUM","features":[95]},{"name":"USER_LAST_LOGON_PARMNUM","features":[95]},{"name":"USER_LOGON_HOURS_PARMNUM","features":[95]},{"name":"USER_LOGON_SERVER_PARMNUM","features":[95]},{"name":"USER_MAX_STORAGE_PARMNUM","features":[95]},{"name":"USER_MODALS_INFO_0","features":[95]},{"name":"USER_MODALS_INFO_1","features":[95]},{"name":"USER_MODALS_INFO_1001","features":[95]},{"name":"USER_MODALS_INFO_1002","features":[95]},{"name":"USER_MODALS_INFO_1003","features":[95]},{"name":"USER_MODALS_INFO_1004","features":[95]},{"name":"USER_MODALS_INFO_1005","features":[95]},{"name":"USER_MODALS_INFO_1006","features":[95]},{"name":"USER_MODALS_INFO_1007","features":[95]},{"name":"USER_MODALS_INFO_2","features":[95,6]},{"name":"USER_MODALS_INFO_3","features":[95]},{"name":"USER_MODALS_ROLES","features":[95]},{"name":"USER_NAME_PARMNUM","features":[95]},{"name":"USER_NUM_LOGONS_PARMNUM","features":[95]},{"name":"USER_OTHER_INFO","features":[95]},{"name":"USER_PAD_PW_COUNT_PARMNUM","features":[95]},{"name":"USER_PARMS_PARMNUM","features":[95]},{"name":"USER_PASSWORD_AGE_PARMNUM","features":[95]},{"name":"USER_PASSWORD_PARMNUM","features":[95]},{"name":"USER_PRIMARY_GROUP_PARMNUM","features":[95]},{"name":"USER_PRIV","features":[95]},{"name":"USER_PRIV_ADMIN","features":[95]},{"name":"USER_PRIV_GUEST","features":[95]},{"name":"USER_PRIV_MASK","features":[95]},{"name":"USER_PRIV_PARMNUM","features":[95]},{"name":"USER_PRIV_USER","features":[95]},{"name":"USER_PROFILE","features":[95]},{"name":"USER_PROFILE_PARMNUM","features":[95]},{"name":"USER_SCRIPT_PATH_PARMNUM","features":[95]},{"name":"USER_UNITS_PER_WEEK_PARMNUM","features":[95]},{"name":"USER_USR_COMMENT_PARMNUM","features":[95]},{"name":"USER_WORKSTATIONS_PARMNUM","features":[95]},{"name":"USE_ASGTYPE_PARMNUM","features":[95]},{"name":"USE_AUTHIDENTITY_PARMNUM","features":[95]},{"name":"USE_CHARDEV","features":[95]},{"name":"USE_CONN","features":[95]},{"name":"USE_DEFAULT_CREDENTIALS","features":[95]},{"name":"USE_DISCONN","features":[95]},{"name":"USE_DISKDEV","features":[95]},{"name":"USE_DOMAINNAME_PARMNUM","features":[95]},{"name":"USE_FLAGS_PARMNUM","features":[95]},{"name":"USE_FLAG_GLOBAL_MAPPING","features":[95]},{"name":"USE_FORCE","features":[95]},{"name":"USE_INFO_0","features":[95]},{"name":"USE_INFO_1","features":[95]},{"name":"USE_INFO_2","features":[95]},{"name":"USE_INFO_3","features":[95]},{"name":"USE_INFO_4","features":[95]},{"name":"USE_INFO_5","features":[95]},{"name":"USE_INFO_ASG_TYPE","features":[95]},{"name":"USE_IPC","features":[95]},{"name":"USE_LOCAL_PARMNUM","features":[95]},{"name":"USE_LOTS_OF_FORCE","features":[95]},{"name":"USE_NETERR","features":[95]},{"name":"USE_NOFORCE","features":[95]},{"name":"USE_OK","features":[95]},{"name":"USE_OPTIONS_PARMNUM","features":[95]},{"name":"USE_OPTION_DEFERRED_CONNECTION_PARAMETERS","features":[95]},{"name":"USE_OPTION_GENERIC","features":[95]},{"name":"USE_OPTION_PROPERTIES","features":[95]},{"name":"USE_OPTION_TRANSPORT_PARAMETERS","features":[95]},{"name":"USE_PASSWORD_PARMNUM","features":[95]},{"name":"USE_PAUSED","features":[95]},{"name":"USE_RECONN","features":[95]},{"name":"USE_REMOTE_PARMNUM","features":[95]},{"name":"USE_SD_PARMNUM","features":[95]},{"name":"USE_SESSLOST","features":[95]},{"name":"USE_SPECIFIC_TRANSPORT","features":[95]},{"name":"USE_SPOOLDEV","features":[95]},{"name":"USE_USERNAME_PARMNUM","features":[95]},{"name":"USE_WILDCARD","features":[95]},{"name":"UseTransportType_None","features":[95]},{"name":"UseTransportType_Quic","features":[95]},{"name":"UseTransportType_Wsk","features":[95]},{"name":"VALIDATED_LOGON","features":[95]},{"name":"VALID_LOGOFF","features":[95]},{"name":"WKSTA_BUFFERNAMEDPIPES_PARMNUM","features":[95]},{"name":"WKSTA_BUFFERREADONLYFILES_PARMNUM","features":[95]},{"name":"WKSTA_BUFFILESWITHDENYWRITE_PARMNUM","features":[95]},{"name":"WKSTA_CACHEFILETIMEOUT_PARMNUM","features":[95]},{"name":"WKSTA_CHARCOUNT_PARMNUM","features":[95]},{"name":"WKSTA_CHARTIME_PARMNUM","features":[95]},{"name":"WKSTA_CHARWAIT_PARMNUM","features":[95]},{"name":"WKSTA_COMPUTERNAME_PARMNUM","features":[95]},{"name":"WKSTA_DORMANTFILELIMIT_PARMNUM","features":[95]},{"name":"WKSTA_ERRLOGSZ_PARMNUM","features":[95]},{"name":"WKSTA_FORCECORECREATEMODE_PARMNUM","features":[95]},{"name":"WKSTA_INFO_100","features":[95]},{"name":"WKSTA_INFO_101","features":[95]},{"name":"WKSTA_INFO_1010","features":[95]},{"name":"WKSTA_INFO_1011","features":[95]},{"name":"WKSTA_INFO_1012","features":[95]},{"name":"WKSTA_INFO_1013","features":[95]},{"name":"WKSTA_INFO_1018","features":[95]},{"name":"WKSTA_INFO_102","features":[95]},{"name":"WKSTA_INFO_1023","features":[95]},{"name":"WKSTA_INFO_1027","features":[95]},{"name":"WKSTA_INFO_1028","features":[95]},{"name":"WKSTA_INFO_1032","features":[95]},{"name":"WKSTA_INFO_1033","features":[95]},{"name":"WKSTA_INFO_1041","features":[95]},{"name":"WKSTA_INFO_1042","features":[95]},{"name":"WKSTA_INFO_1043","features":[95]},{"name":"WKSTA_INFO_1044","features":[95]},{"name":"WKSTA_INFO_1045","features":[95]},{"name":"WKSTA_INFO_1046","features":[95]},{"name":"WKSTA_INFO_1047","features":[95]},{"name":"WKSTA_INFO_1048","features":[3,95]},{"name":"WKSTA_INFO_1049","features":[3,95]},{"name":"WKSTA_INFO_1050","features":[3,95]},{"name":"WKSTA_INFO_1051","features":[3,95]},{"name":"WKSTA_INFO_1052","features":[3,95]},{"name":"WKSTA_INFO_1053","features":[3,95]},{"name":"WKSTA_INFO_1054","features":[3,95]},{"name":"WKSTA_INFO_1055","features":[3,95]},{"name":"WKSTA_INFO_1056","features":[3,95]},{"name":"WKSTA_INFO_1057","features":[3,95]},{"name":"WKSTA_INFO_1058","features":[3,95]},{"name":"WKSTA_INFO_1059","features":[3,95]},{"name":"WKSTA_INFO_1060","features":[3,95]},{"name":"WKSTA_INFO_1061","features":[3,95]},{"name":"WKSTA_INFO_1062","features":[95]},{"name":"WKSTA_INFO_302","features":[95]},{"name":"WKSTA_INFO_402","features":[95]},{"name":"WKSTA_INFO_502","features":[3,95]},{"name":"WKSTA_KEEPCONN_PARMNUM","features":[95]},{"name":"WKSTA_KEEPSEARCH_PARMNUM","features":[95]},{"name":"WKSTA_LANGROUP_PARMNUM","features":[95]},{"name":"WKSTA_LANROOT_PARMNUM","features":[95]},{"name":"WKSTA_LOCKINCREMENT_PARMNUM","features":[95]},{"name":"WKSTA_LOCKMAXIMUM_PARMNUM","features":[95]},{"name":"WKSTA_LOCKQUOTA_PARMNUM","features":[95]},{"name":"WKSTA_LOGGED_ON_USERS_PARMNUM","features":[95]},{"name":"WKSTA_LOGON_DOMAIN_PARMNUM","features":[95]},{"name":"WKSTA_LOGON_SERVER_PARMNUM","features":[95]},{"name":"WKSTA_MAILSLOTS_PARMNUM","features":[95]},{"name":"WKSTA_MAXCMDS_PARMNUM","features":[95]},{"name":"WKSTA_MAXTHREADS_PARMNUM","features":[95]},{"name":"WKSTA_MAXWRKCACHE_PARMNUM","features":[95]},{"name":"WKSTA_NUMALERTS_PARMNUM","features":[95]},{"name":"WKSTA_NUMCHARBUF_PARMNUM","features":[95]},{"name":"WKSTA_NUMDGRAMBUF_PARMNUM","features":[95]},{"name":"WKSTA_NUMSERVICES_PARMNUM","features":[95]},{"name":"WKSTA_NUMWORKBUF_PARMNUM","features":[95]},{"name":"WKSTA_OTH_DOMAINS_PARMNUM","features":[95]},{"name":"WKSTA_PIPEINCREMENT_PARMNUM","features":[95]},{"name":"WKSTA_PIPEMAXIMUM_PARMNUM","features":[95]},{"name":"WKSTA_PLATFORM_ID_PARMNUM","features":[95]},{"name":"WKSTA_PRINTBUFTIME_PARMNUM","features":[95]},{"name":"WKSTA_READAHEADTHRUPUT_PARMNUM","features":[95]},{"name":"WKSTA_SESSTIMEOUT_PARMNUM","features":[95]},{"name":"WKSTA_SIZCHARBUF_PARMNUM","features":[95]},{"name":"WKSTA_SIZERROR_PARMNUM","features":[95]},{"name":"WKSTA_SIZWORKBUF_PARMNUM","features":[95]},{"name":"WKSTA_TRANSPORT_INFO_0","features":[3,95]},{"name":"WKSTA_USE512BYTESMAXTRANSFER_PARMNUM","features":[95]},{"name":"WKSTA_USECLOSEBEHIND_PARMNUM","features":[95]},{"name":"WKSTA_USEENCRYPTION_PARMNUM","features":[95]},{"name":"WKSTA_USELOCKANDREADANDUNLOCK_PARMNUM","features":[95]},{"name":"WKSTA_USEOPPORTUNISTICLOCKING_PARMNUM","features":[95]},{"name":"WKSTA_USERAWREAD_PARMNUM","features":[95]},{"name":"WKSTA_USERAWWRITE_PARMNUM","features":[95]},{"name":"WKSTA_USER_INFO_0","features":[95]},{"name":"WKSTA_USER_INFO_1","features":[95]},{"name":"WKSTA_USER_INFO_1101","features":[95]},{"name":"WKSTA_USEUNLOCKBEHIND_PARMNUM","features":[95]},{"name":"WKSTA_USEWRITERAWWITHDATA_PARMNUM","features":[95]},{"name":"WKSTA_UTILIZENTCACHING_PARMNUM","features":[95]},{"name":"WKSTA_VER_MAJOR_PARMNUM","features":[95]},{"name":"WKSTA_VER_MINOR_PARMNUM","features":[95]},{"name":"WKSTA_WRKHEURISTICS_PARMNUM","features":[95]},{"name":"WORKERFUNCTION","features":[95]},{"name":"WORKSTATION_DISPLAY_NAME","features":[95]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_SCHEMA","features":[95]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_XML","features":[95]},{"name":"WZC_PROFILE_API_ERROR_INTERNAL","features":[95]},{"name":"WZC_PROFILE_API_ERROR_NOT_SUPPORTED","features":[95]},{"name":"WZC_PROFILE_API_ERROR_XML_VALIDATION_FAILED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED_KEY_REQUIRED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ENABLED_KEY_PROVIDED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_NOT_APPLICABLE","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_REQUIRED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_AUTH_FOR_CONNECTION_TYPE","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_ENCRYPTION_FOR_AUTHMODE","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_NOT_APPLICABLE","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_REQUIRED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_REQUIRED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_ENCRYPTION_NOT_SUPPORTED","features":[95]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_NOT_SUPPORTED","features":[95]},{"name":"WZC_PROFILE_SET_ERROR_DUPLICATE_NETWORK","features":[95]},{"name":"WZC_PROFILE_SET_ERROR_MEMORY_ALLOCATION","features":[95]},{"name":"WZC_PROFILE_SET_ERROR_READING_1X_CONFIG","features":[95]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_1X_CONFIG","features":[95]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_WZC_CFG","features":[95]},{"name":"WZC_PROFILE_SUCCESS","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_1X_ENABLED","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_AUTHENTICATION","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_BAD_KEY_INDEX","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_BAD_NETWORK_KEY","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_BAD_SSID","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_BAD_VERSION","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_CONNECTION_TYPE","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_EAP_METHOD","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_ENCRYPTION","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_KEY_INDEX_RANGE","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_KEY_PROVIDED_AUTOMATICALLY","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_NO_VERSION","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_SSID_NOT_FOUND","features":[95]},{"name":"WZC_PROFILE_XML_ERROR_UNSUPPORTED_VERSION","features":[95]}],"454":[{"name":"CMD_ENTRY","features":[3,96]},{"name":"CMD_FLAG_HIDDEN","features":[96]},{"name":"CMD_FLAG_INTERACTIVE","features":[96]},{"name":"CMD_FLAG_LIMIT_MASK","features":[96]},{"name":"CMD_FLAG_LOCAL","features":[96]},{"name":"CMD_FLAG_ONLINE","features":[96]},{"name":"CMD_FLAG_PRIORITY","features":[96]},{"name":"CMD_FLAG_PRIVATE","features":[96]},{"name":"CMD_GROUP_ENTRY","features":[3,96]},{"name":"DEFAULT_CONTEXT_PRIORITY","features":[96]},{"name":"ERROR_CMD_NOT_FOUND","features":[96]},{"name":"ERROR_CONTEXT_ALREADY_REGISTERED","features":[96]},{"name":"ERROR_CONTINUE_IN_PARENT_CONTEXT","features":[96]},{"name":"ERROR_DLL_LOAD_FAILED","features":[96]},{"name":"ERROR_ENTRY_PT_NOT_FOUND","features":[96]},{"name":"ERROR_HELPER_ALREADY_REGISTERED","features":[96]},{"name":"ERROR_INIT_DISPLAY","features":[96]},{"name":"ERROR_INVALID_OPTION_TAG","features":[96]},{"name":"ERROR_INVALID_OPTION_VALUE","features":[96]},{"name":"ERROR_INVALID_SYNTAX","features":[96]},{"name":"ERROR_MISSING_OPTION","features":[96]},{"name":"ERROR_NO_CHANGE","features":[96]},{"name":"ERROR_NO_ENTRIES","features":[96]},{"name":"ERROR_NO_TAG","features":[96]},{"name":"ERROR_OKAY","features":[96]},{"name":"ERROR_PARSING_FAILURE","features":[96]},{"name":"ERROR_PROTOCOL_NOT_IN_TRANSPORT","features":[96]},{"name":"ERROR_SHOW_USAGE","features":[96]},{"name":"ERROR_SUPPRESS_OUTPUT","features":[96]},{"name":"ERROR_TAG_ALREADY_PRESENT","features":[96]},{"name":"ERROR_TRANSPORT_NOT_PRESENT","features":[96]},{"name":"GET_RESOURCE_STRING_FN_NAME","features":[96]},{"name":"MAX_NAME_LEN","features":[96]},{"name":"MatchEnumTag","features":[3,96]},{"name":"MatchToken","features":[3,96]},{"name":"NETSH_ARG_DELIMITER","features":[96]},{"name":"NETSH_CMD_DELIMITER","features":[96]},{"name":"NETSH_COMMIT","features":[96]},{"name":"NETSH_COMMIT_STATE","features":[96]},{"name":"NETSH_ERROR_BASE","features":[96]},{"name":"NETSH_ERROR_END","features":[96]},{"name":"NETSH_FLUSH","features":[96]},{"name":"NETSH_MAX_CMD_TOKEN_LENGTH","features":[96]},{"name":"NETSH_MAX_TOKEN_LENGTH","features":[96]},{"name":"NETSH_SAVE","features":[96]},{"name":"NETSH_UNCOMMIT","features":[96]},{"name":"NETSH_VERSION_50","features":[96]},{"name":"NS_CMD_FLAGS","features":[96]},{"name":"NS_CONTEXT_ATTRIBUTES","features":[3,96]},{"name":"NS_EVENTS","features":[96]},{"name":"NS_EVENT_FROM_N","features":[96]},{"name":"NS_EVENT_FROM_START","features":[96]},{"name":"NS_EVENT_LAST_N","features":[96]},{"name":"NS_EVENT_LAST_SECS","features":[96]},{"name":"NS_EVENT_LOOP","features":[96]},{"name":"NS_GET_EVENT_IDS_FN_NAME","features":[96]},{"name":"NS_HELPER_ATTRIBUTES","features":[96]},{"name":"NS_MODE_CHANGE","features":[96]},{"name":"NS_REQS","features":[96]},{"name":"NS_REQ_ALLOW_MULTIPLE","features":[96]},{"name":"NS_REQ_ONE_OR_MORE","features":[96]},{"name":"NS_REQ_PRESENT","features":[96]},{"name":"NS_REQ_ZERO","features":[96]},{"name":"PFN_CUSTOM_HELP","features":[3,96]},{"name":"PFN_HANDLE_CMD","features":[3,96]},{"name":"PGET_RESOURCE_STRING_FN","features":[96]},{"name":"PNS_CONTEXT_COMMIT_FN","features":[96]},{"name":"PNS_CONTEXT_CONNECT_FN","features":[96]},{"name":"PNS_CONTEXT_DUMP_FN","features":[96]},{"name":"PNS_DLL_INIT_FN","features":[96]},{"name":"PNS_DLL_STOP_FN","features":[96]},{"name":"PNS_HELPER_START_FN","features":[96]},{"name":"PNS_HELPER_STOP_FN","features":[96]},{"name":"PNS_OSVERSIONCHECK","features":[3,96]},{"name":"PreprocessCommand","features":[3,96]},{"name":"PrintError","features":[3,96]},{"name":"PrintMessage","features":[96]},{"name":"PrintMessageFromModule","features":[3,96]},{"name":"RegisterContext","features":[3,96]},{"name":"RegisterHelper","features":[96]},{"name":"TAG_TYPE","features":[3,96]},{"name":"TOKEN_VALUE","features":[96]}],"455":[{"name":"ATTRIBUTE_TYPE","features":[97]},{"name":"AT_BOOLEAN","features":[97]},{"name":"AT_GUID","features":[97]},{"name":"AT_INT16","features":[97]},{"name":"AT_INT32","features":[97]},{"name":"AT_INT64","features":[97]},{"name":"AT_INT8","features":[97]},{"name":"AT_INVALID","features":[97]},{"name":"AT_LIFE_TIME","features":[97]},{"name":"AT_OCTET_STRING","features":[97]},{"name":"AT_SOCKADDR","features":[97]},{"name":"AT_STRING","features":[97]},{"name":"AT_UINT16","features":[97]},{"name":"AT_UINT32","features":[97]},{"name":"AT_UINT64","features":[97]},{"name":"AT_UINT8","features":[97]},{"name":"DF_IMPERSONATION","features":[97]},{"name":"DF_TRACELESS","features":[97]},{"name":"DIAGNOSIS_STATUS","features":[97]},{"name":"DIAG_SOCKADDR","features":[97]},{"name":"DS_CONFIRMED","features":[97]},{"name":"DS_DEFERRED","features":[97]},{"name":"DS_INDETERMINATE","features":[97]},{"name":"DS_NOT_IMPLEMENTED","features":[97]},{"name":"DS_PASSTHROUGH","features":[97]},{"name":"DS_REJECTED","features":[97]},{"name":"DiagnosticsInfo","features":[97]},{"name":"HELPER_ATTRIBUTE","features":[3,97]},{"name":"HYPOTHESIS","features":[3,97]},{"name":"HelperAttributeInfo","features":[97]},{"name":"HypothesisResult","features":[3,97]},{"name":"INetDiagExtensibleHelper","features":[97]},{"name":"INetDiagHelper","features":[97]},{"name":"INetDiagHelperEx","features":[97]},{"name":"INetDiagHelperInfo","features":[97]},{"name":"INetDiagHelperUtilFactory","features":[97]},{"name":"LIFE_TIME","features":[3,97]},{"name":"NDF_ADD_CAPTURE_TRACE","features":[97]},{"name":"NDF_APPLY_INCLUSION_LIST_FILTER","features":[97]},{"name":"NDF_ERROR_START","features":[97]},{"name":"NDF_E_BAD_PARAM","features":[97]},{"name":"NDF_E_CANCELLED","features":[97]},{"name":"NDF_E_DISABLED","features":[97]},{"name":"NDF_E_LENGTH_EXCEEDED","features":[97]},{"name":"NDF_E_NOHELPERCLASS","features":[97]},{"name":"NDF_E_PROBLEM_PRESENT","features":[97]},{"name":"NDF_E_UNKNOWN","features":[97]},{"name":"NDF_E_VALIDATION","features":[97]},{"name":"NDF_INBOUND_FLAG_EDGETRAVERSAL","features":[97]},{"name":"NDF_INBOUND_FLAG_HEALTHCHECK","features":[97]},{"name":"NdfCancelIncident","features":[97]},{"name":"NdfCloseIncident","features":[97]},{"name":"NdfCreateConnectivityIncident","features":[97]},{"name":"NdfCreateDNSIncident","features":[97]},{"name":"NdfCreateGroupingIncident","features":[97,17]},{"name":"NdfCreateIncident","features":[3,97]},{"name":"NdfCreateNetConnectionIncident","features":[97]},{"name":"NdfCreatePnrpIncident","features":[3,97]},{"name":"NdfCreateSharingIncident","features":[97]},{"name":"NdfCreateWebIncident","features":[97]},{"name":"NdfCreateWebIncidentEx","features":[3,97]},{"name":"NdfCreateWinSockIncident","features":[97,17,6]},{"name":"NdfDiagnoseIncident","features":[97]},{"name":"NdfExecuteDiagnosis","features":[3,97]},{"name":"NdfGetTraceFile","features":[97]},{"name":"NdfRepairIncident","features":[97]},{"name":"OCTET_STRING","features":[97]},{"name":"PROBLEM_TYPE","features":[97]},{"name":"PT_DOWN_STREAM_HEALTH","features":[97]},{"name":"PT_HIGHER_UTILIZATION","features":[97]},{"name":"PT_HIGH_UTILIZATION","features":[97]},{"name":"PT_INVALID","features":[97]},{"name":"PT_LOWER_HEALTH","features":[97]},{"name":"PT_LOW_HEALTH","features":[97]},{"name":"PT_UP_STREAM_UTILIZATION","features":[97]},{"name":"RCF_ISCONFIRMED","features":[97]},{"name":"RCF_ISLEAF","features":[97]},{"name":"RCF_ISTHIRDPARTY","features":[97]},{"name":"REPAIR_RISK","features":[97]},{"name":"REPAIR_SCOPE","features":[97]},{"name":"REPAIR_STATUS","features":[97]},{"name":"RF_CONTACT_ADMIN","features":[97]},{"name":"RF_INFORMATION_ONLY","features":[97]},{"name":"RF_REPRO","features":[97]},{"name":"RF_RESERVED","features":[97]},{"name":"RF_RESERVED_CA","features":[97]},{"name":"RF_RESERVED_LNI","features":[97]},{"name":"RF_SHOW_EVENTS","features":[97]},{"name":"RF_UI_ONLY","features":[97]},{"name":"RF_USER_ACTION","features":[97]},{"name":"RF_USER_CONFIRMATION","features":[97]},{"name":"RF_VALIDATE_HELPTOPIC","features":[97]},{"name":"RF_WORKAROUND","features":[97]},{"name":"RR_NORISK","features":[97]},{"name":"RR_NOROLLBACK","features":[97]},{"name":"RR_ROLLBACK","features":[97]},{"name":"RS_APPLICATION","features":[97]},{"name":"RS_DEFERRED","features":[97]},{"name":"RS_NOT_IMPLEMENTED","features":[97]},{"name":"RS_PROCESS","features":[97]},{"name":"RS_REPAIRED","features":[97]},{"name":"RS_SYSTEM","features":[97]},{"name":"RS_UNREPAIRED","features":[97]},{"name":"RS_USER","features":[97]},{"name":"RS_USER_ACTION","features":[97]},{"name":"RepairInfo","features":[97]},{"name":"RepairInfoEx","features":[97]},{"name":"RootCauseInfo","features":[97]},{"name":"ShellCommandInfo","features":[97]},{"name":"UIT_DUI","features":[97]},{"name":"UIT_HELP_PANE","features":[97]},{"name":"UIT_INVALID","features":[97]},{"name":"UIT_NONE","features":[97]},{"name":"UIT_SHELL_COMMAND","features":[97]},{"name":"UI_INFO_TYPE","features":[97]},{"name":"UiInfo","features":[97]}],"457":[{"name":"DRT_ACTIVE","features":[98]},{"name":"DRT_ADDRESS","features":[98,17]},{"name":"DRT_ADDRESS_FLAGS","features":[98]},{"name":"DRT_ADDRESS_FLAG_ACCEPTED","features":[98]},{"name":"DRT_ADDRESS_FLAG_BAD_VALIDATE_ID","features":[98]},{"name":"DRT_ADDRESS_FLAG_INQUIRE","features":[98]},{"name":"DRT_ADDRESS_FLAG_LOOP","features":[98]},{"name":"DRT_ADDRESS_FLAG_REJECTED","features":[98]},{"name":"DRT_ADDRESS_FLAG_SUSPECT_UNREGISTERED_ID","features":[98]},{"name":"DRT_ADDRESS_FLAG_TOO_BUSY","features":[98]},{"name":"DRT_ADDRESS_FLAG_UNREACHABLE","features":[98]},{"name":"DRT_ADDRESS_LIST","features":[98,17]},{"name":"DRT_ALONE","features":[98]},{"name":"DRT_BOOTSTRAP_PROVIDER","features":[98]},{"name":"DRT_BOOTSTRAP_RESOLVE_CALLBACK","features":[3,98,17]},{"name":"DRT_DATA","features":[98]},{"name":"DRT_EVENT_DATA","features":[98,17]},{"name":"DRT_EVENT_LEAFSET_KEY_CHANGED","features":[98]},{"name":"DRT_EVENT_REGISTRATION_STATE_CHANGED","features":[98]},{"name":"DRT_EVENT_STATUS_CHANGED","features":[98]},{"name":"DRT_EVENT_TYPE","features":[98]},{"name":"DRT_E_BOOTSTRAPPROVIDER_IN_USE","features":[98]},{"name":"DRT_E_BOOTSTRAPPROVIDER_NOT_ATTACHED","features":[98]},{"name":"DRT_E_CAPABILITY_MISMATCH","features":[98]},{"name":"DRT_E_DUPLICATE_KEY","features":[98]},{"name":"DRT_E_FAULTED","features":[98]},{"name":"DRT_E_INSUFFICIENT_BUFFER","features":[98]},{"name":"DRT_E_INVALID_ADDRESS","features":[98]},{"name":"DRT_E_INVALID_BOOTSTRAP_PROVIDER","features":[98]},{"name":"DRT_E_INVALID_CERT_CHAIN","features":[98]},{"name":"DRT_E_INVALID_INSTANCE_PREFIX","features":[98]},{"name":"DRT_E_INVALID_KEY","features":[98]},{"name":"DRT_E_INVALID_KEY_SIZE","features":[98]},{"name":"DRT_E_INVALID_MAX_ADDRESSES","features":[98]},{"name":"DRT_E_INVALID_MAX_ENDPOINTS","features":[98]},{"name":"DRT_E_INVALID_MESSAGE","features":[98]},{"name":"DRT_E_INVALID_PORT","features":[98]},{"name":"DRT_E_INVALID_SCOPE","features":[98]},{"name":"DRT_E_INVALID_SEARCH_INFO","features":[98]},{"name":"DRT_E_INVALID_SEARCH_RANGE","features":[98]},{"name":"DRT_E_INVALID_SECURITY_MODE","features":[98]},{"name":"DRT_E_INVALID_SECURITY_PROVIDER","features":[98]},{"name":"DRT_E_INVALID_SETTINGS","features":[98]},{"name":"DRT_E_INVALID_TRANSPORT_PROVIDER","features":[98]},{"name":"DRT_E_NO_ADDRESSES_AVAILABLE","features":[98]},{"name":"DRT_E_NO_MORE","features":[98]},{"name":"DRT_E_SEARCH_IN_PROGRESS","features":[98]},{"name":"DRT_E_SECURITYPROVIDER_IN_USE","features":[98]},{"name":"DRT_E_SECURITYPROVIDER_NOT_ATTACHED","features":[98]},{"name":"DRT_E_STILL_IN_USE","features":[98]},{"name":"DRT_E_TIMEOUT","features":[98]},{"name":"DRT_E_TRANSPORTPROVIDER_IN_USE","features":[98]},{"name":"DRT_E_TRANSPORTPROVIDER_NOT_ATTACHED","features":[98]},{"name":"DRT_E_TRANSPORT_ALREADY_BOUND","features":[98]},{"name":"DRT_E_TRANSPORT_ALREADY_EXISTS_FOR_SCOPE","features":[98]},{"name":"DRT_E_TRANSPORT_EXECUTING_CALLBACK","features":[98]},{"name":"DRT_E_TRANSPORT_INVALID_ARGUMENT","features":[98]},{"name":"DRT_E_TRANSPORT_NOT_BOUND","features":[98]},{"name":"DRT_E_TRANSPORT_NO_DEST_ADDRESSES","features":[98]},{"name":"DRT_E_TRANSPORT_SHUTTING_DOWN","features":[98]},{"name":"DRT_E_TRANSPORT_STILL_BOUND","features":[98]},{"name":"DRT_E_TRANSPORT_UNEXPECTED","features":[98]},{"name":"DRT_FAULTED","features":[98]},{"name":"DRT_GLOBAL_SCOPE","features":[98]},{"name":"DRT_LEAFSET_KEY_ADDED","features":[98]},{"name":"DRT_LEAFSET_KEY_CHANGE_TYPE","features":[98]},{"name":"DRT_LEAFSET_KEY_DELETED","features":[98]},{"name":"DRT_LINK_LOCAL_ISATAP_SCOPEID","features":[98]},{"name":"DRT_LINK_LOCAL_SCOPE","features":[98]},{"name":"DRT_MATCH_EXACT","features":[98]},{"name":"DRT_MATCH_INTERMEDIATE","features":[98]},{"name":"DRT_MATCH_NEAR","features":[98]},{"name":"DRT_MATCH_TYPE","features":[98]},{"name":"DRT_MAX_INSTANCE_PREFIX_LEN","features":[98]},{"name":"DRT_MAX_PAYLOAD_SIZE","features":[98]},{"name":"DRT_MAX_ROUTING_ADDRESSES","features":[98]},{"name":"DRT_MIN_ROUTING_ADDRESSES","features":[98]},{"name":"DRT_NO_NETWORK","features":[98]},{"name":"DRT_PAYLOAD_REVOKED","features":[98]},{"name":"DRT_REGISTRATION","features":[98]},{"name":"DRT_REGISTRATION_STATE","features":[98]},{"name":"DRT_REGISTRATION_STATE_UNRESOLVEABLE","features":[98]},{"name":"DRT_SCOPE","features":[98]},{"name":"DRT_SEARCH_INFO","features":[3,98]},{"name":"DRT_SEARCH_RESULT","features":[98]},{"name":"DRT_SECURE_CONFIDENTIALPAYLOAD","features":[98]},{"name":"DRT_SECURE_MEMBERSHIP","features":[98]},{"name":"DRT_SECURE_RESOLVE","features":[98]},{"name":"DRT_SECURITY_MODE","features":[98]},{"name":"DRT_SECURITY_PROVIDER","features":[98]},{"name":"DRT_SETTINGS","features":[98]},{"name":"DRT_SITE_LOCAL_SCOPE","features":[98]},{"name":"DRT_STATUS","features":[98]},{"name":"DRT_S_RETRY","features":[98]},{"name":"DrtClose","features":[98]},{"name":"DrtContinueSearch","features":[98]},{"name":"DrtCreateDerivedKey","features":[3,98,70]},{"name":"DrtCreateDerivedKeySecurityProvider","features":[3,98,70]},{"name":"DrtCreateDnsBootstrapResolver","features":[98]},{"name":"DrtCreateIpv6UdpTransport","features":[98]},{"name":"DrtCreateNullSecurityProvider","features":[98]},{"name":"DrtCreatePnrpBootstrapResolver","features":[3,98]},{"name":"DrtDeleteDerivedKeySecurityProvider","features":[98]},{"name":"DrtDeleteDnsBootstrapResolver","features":[98]},{"name":"DrtDeleteIpv6UdpTransport","features":[98]},{"name":"DrtDeleteNullSecurityProvider","features":[98]},{"name":"DrtDeletePnrpBootstrapResolver","features":[98]},{"name":"DrtEndSearch","features":[98]},{"name":"DrtGetEventData","features":[98,17]},{"name":"DrtGetEventDataSize","features":[98]},{"name":"DrtGetInstanceName","features":[98]},{"name":"DrtGetInstanceNameSize","features":[98]},{"name":"DrtGetSearchPath","features":[98,17]},{"name":"DrtGetSearchPathSize","features":[98]},{"name":"DrtGetSearchResult","features":[98]},{"name":"DrtGetSearchResultSize","features":[98]},{"name":"DrtOpen","features":[3,98]},{"name":"DrtRegisterKey","features":[98]},{"name":"DrtStartSearch","features":[3,98]},{"name":"DrtUnregisterKey","features":[98]},{"name":"DrtUpdateKey","features":[98]},{"name":"FACILITY_DRT","features":[98]},{"name":"MaximumPeerDistClientInfoByHandlesClass","features":[98]},{"name":"NS_PNRPCLOUD","features":[98]},{"name":"NS_PNRPNAME","features":[98]},{"name":"NS_PROVIDER_PNRPCLOUD","features":[98]},{"name":"NS_PROVIDER_PNRPNAME","features":[98]},{"name":"PEERDIST_CLIENT_BASIC_INFO","features":[3,98]},{"name":"PEERDIST_CLIENT_INFO_BY_HANDLE_CLASS","features":[98]},{"name":"PEERDIST_CONTENT_TAG","features":[98]},{"name":"PEERDIST_PUBLICATION_OPTIONS","features":[98]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION","features":[98]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_1","features":[98]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_2","features":[98]},{"name":"PEERDIST_READ_TIMEOUT_DEFAULT","features":[98]},{"name":"PEERDIST_READ_TIMEOUT_LOCAL_CACHE_ONLY","features":[98]},{"name":"PEERDIST_RETRIEVAL_OPTIONS","features":[98]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION","features":[98]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_1","features":[98]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_2","features":[98]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_VALUE","features":[98]},{"name":"PEERDIST_STATUS","features":[98]},{"name":"PEERDIST_STATUS_AVAILABLE","features":[98]},{"name":"PEERDIST_STATUS_DISABLED","features":[98]},{"name":"PEERDIST_STATUS_INFO","features":[98]},{"name":"PEERDIST_STATUS_UNAVAILABLE","features":[98]},{"name":"PEER_ADDRESS","features":[98,17]},{"name":"PEER_APPLICATION","features":[98]},{"name":"PEER_APPLICATION_ALL_USERS","features":[98]},{"name":"PEER_APPLICATION_CURRENT_USER","features":[98]},{"name":"PEER_APPLICATION_REGISTRATION_INFO","features":[98]},{"name":"PEER_APPLICATION_REGISTRATION_TYPE","features":[98]},{"name":"PEER_APP_LAUNCH_INFO","features":[3,98,17]},{"name":"PEER_CHANGE_ADDED","features":[98]},{"name":"PEER_CHANGE_DELETED","features":[98]},{"name":"PEER_CHANGE_TYPE","features":[98]},{"name":"PEER_CHANGE_UPDATED","features":[98]},{"name":"PEER_COLLAB_EVENT_DATA","features":[3,98,17]},{"name":"PEER_COLLAB_EVENT_REGISTRATION","features":[98]},{"name":"PEER_COLLAB_EVENT_TYPE","features":[98]},{"name":"PEER_COLLAB_OBJECTID_USER_PICTURE","features":[98]},{"name":"PEER_CONNECTED","features":[98]},{"name":"PEER_CONNECTION_DIRECT","features":[98]},{"name":"PEER_CONNECTION_FAILED","features":[98]},{"name":"PEER_CONNECTION_FLAGS","features":[98]},{"name":"PEER_CONNECTION_INFO","features":[98,17]},{"name":"PEER_CONNECTION_NEIGHBOR","features":[98]},{"name":"PEER_CONNECTION_STATUS","features":[98]},{"name":"PEER_CONTACT","features":[3,98]},{"name":"PEER_CREDENTIAL_INFO","features":[3,98,70]},{"name":"PEER_DATA","features":[98]},{"name":"PEER_DEFER_EXPIRATION","features":[98]},{"name":"PEER_DISABLE_PRESENCE","features":[98]},{"name":"PEER_DISCONNECTED","features":[98]},{"name":"PEER_ENDPOINT","features":[98,17]},{"name":"PEER_EVENT_APPLICATION_CHANGED_DATA","features":[3,98,17]},{"name":"PEER_EVENT_CONNECTION_CHANGE_DATA","features":[98]},{"name":"PEER_EVENT_ENDPOINT_APPLICATION_CHANGED","features":[98]},{"name":"PEER_EVENT_ENDPOINT_CHANGED","features":[98]},{"name":"PEER_EVENT_ENDPOINT_CHANGED_DATA","features":[3,98,17]},{"name":"PEER_EVENT_ENDPOINT_OBJECT_CHANGED","features":[98]},{"name":"PEER_EVENT_ENDPOINT_PRESENCE_CHANGED","features":[98]},{"name":"PEER_EVENT_INCOMING_DATA","features":[98]},{"name":"PEER_EVENT_MEMBER_CHANGE_DATA","features":[98]},{"name":"PEER_EVENT_MY_APPLICATION_CHANGED","features":[98]},{"name":"PEER_EVENT_MY_ENDPOINT_CHANGED","features":[98]},{"name":"PEER_EVENT_MY_OBJECT_CHANGED","features":[98]},{"name":"PEER_EVENT_MY_PRESENCE_CHANGED","features":[98]},{"name":"PEER_EVENT_NODE_CHANGE_DATA","features":[98]},{"name":"PEER_EVENT_OBJECT_CHANGED_DATA","features":[3,98,17]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED","features":[98]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED_DATA","features":[98,17]},{"name":"PEER_EVENT_PRESENCE_CHANGED_DATA","features":[3,98,17]},{"name":"PEER_EVENT_RECORD_CHANGE_DATA","features":[98]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED","features":[98]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED_DATA","features":[98,17]},{"name":"PEER_EVENT_SYNCHRONIZED_DATA","features":[98]},{"name":"PEER_EVENT_WATCHLIST_CHANGED","features":[98]},{"name":"PEER_EVENT_WATCHLIST_CHANGED_DATA","features":[3,98]},{"name":"PEER_E_ALREADY_EXISTS","features":[98]},{"name":"PEER_E_CLIENT_INVALID_COMPARTMENT_ID","features":[98]},{"name":"PEER_E_CLOUD_DISABLED","features":[98]},{"name":"PEER_E_CLOUD_IS_DEAD","features":[98]},{"name":"PEER_E_CLOUD_IS_SEARCH_ONLY","features":[98]},{"name":"PEER_E_CLOUD_NOT_FOUND","features":[98]},{"name":"PEER_E_DISK_FULL","features":[98]},{"name":"PEER_E_DUPLICATE_PEER_NAME","features":[98]},{"name":"PEER_E_INVALID_IDENTITY","features":[98]},{"name":"PEER_E_NOT_FOUND","features":[98]},{"name":"PEER_E_TOO_MUCH_LOAD","features":[98]},{"name":"PEER_GRAPH_EVENT_CONNECTION_REQUIRED","features":[98]},{"name":"PEER_GRAPH_EVENT_DATA","features":[98]},{"name":"PEER_GRAPH_EVENT_DIRECT_CONNECTION","features":[98]},{"name":"PEER_GRAPH_EVENT_INCOMING_DATA","features":[98]},{"name":"PEER_GRAPH_EVENT_NEIGHBOR_CONNECTION","features":[98]},{"name":"PEER_GRAPH_EVENT_NODE_CHANGED","features":[98]},{"name":"PEER_GRAPH_EVENT_PROPERTY_CHANGED","features":[98]},{"name":"PEER_GRAPH_EVENT_RECORD_CHANGED","features":[98]},{"name":"PEER_GRAPH_EVENT_REGISTRATION","features":[98]},{"name":"PEER_GRAPH_EVENT_STATUS_CHANGED","features":[98]},{"name":"PEER_GRAPH_EVENT_SYNCHRONIZED","features":[98]},{"name":"PEER_GRAPH_EVENT_TYPE","features":[98]},{"name":"PEER_GRAPH_PROPERTIES","features":[98]},{"name":"PEER_GRAPH_PROPERTY_DEFER_EXPIRATION","features":[98]},{"name":"PEER_GRAPH_PROPERTY_FLAGS","features":[98]},{"name":"PEER_GRAPH_PROPERTY_HEARTBEATS","features":[98]},{"name":"PEER_GRAPH_SCOPE","features":[98]},{"name":"PEER_GRAPH_SCOPE_ANY","features":[98]},{"name":"PEER_GRAPH_SCOPE_GLOBAL","features":[98]},{"name":"PEER_GRAPH_SCOPE_LINKLOCAL","features":[98]},{"name":"PEER_GRAPH_SCOPE_LOOPBACK","features":[98]},{"name":"PEER_GRAPH_SCOPE_SITELOCAL","features":[98]},{"name":"PEER_GRAPH_STATUS_FLAGS","features":[98]},{"name":"PEER_GRAPH_STATUS_HAS_CONNECTIONS","features":[98]},{"name":"PEER_GRAPH_STATUS_LISTENING","features":[98]},{"name":"PEER_GRAPH_STATUS_SYNCHRONIZED","features":[98]},{"name":"PEER_GROUP_AUTHENTICATION_SCHEME","features":[98]},{"name":"PEER_GROUP_EVENT_AUTHENTICATION_FAILED","features":[98]},{"name":"PEER_GROUP_EVENT_CONNECTION_FAILED","features":[98]},{"name":"PEER_GROUP_EVENT_DATA","features":[98]},{"name":"PEER_GROUP_EVENT_DIRECT_CONNECTION","features":[98]},{"name":"PEER_GROUP_EVENT_INCOMING_DATA","features":[98]},{"name":"PEER_GROUP_EVENT_MEMBER_CHANGED","features":[98]},{"name":"PEER_GROUP_EVENT_NEIGHBOR_CONNECTION","features":[98]},{"name":"PEER_GROUP_EVENT_PROPERTY_CHANGED","features":[98]},{"name":"PEER_GROUP_EVENT_RECORD_CHANGED","features":[98]},{"name":"PEER_GROUP_EVENT_REGISTRATION","features":[98]},{"name":"PEER_GROUP_EVENT_STATUS_CHANGED","features":[98]},{"name":"PEER_GROUP_EVENT_TYPE","features":[98]},{"name":"PEER_GROUP_GMC_AUTHENTICATION","features":[98]},{"name":"PEER_GROUP_ISSUE_CREDENTIAL_FLAGS","features":[98]},{"name":"PEER_GROUP_PASSWORD_AUTHENTICATION","features":[98]},{"name":"PEER_GROUP_PROPERTIES","features":[98]},{"name":"PEER_GROUP_PROPERTY_FLAGS","features":[98]},{"name":"PEER_GROUP_ROLE_ADMIN","features":[98]},{"name":"PEER_GROUP_ROLE_INVITING_MEMBER","features":[98]},{"name":"PEER_GROUP_ROLE_MEMBER","features":[98]},{"name":"PEER_GROUP_STATUS","features":[98]},{"name":"PEER_GROUP_STATUS_HAS_CONNECTIONS","features":[98]},{"name":"PEER_GROUP_STATUS_LISTENING","features":[98]},{"name":"PEER_GROUP_STORE_CREDENTIALS","features":[98]},{"name":"PEER_INVITATION","features":[98]},{"name":"PEER_INVITATION_INFO","features":[3,98,70]},{"name":"PEER_INVITATION_RESPONSE","features":[98]},{"name":"PEER_INVITATION_RESPONSE_ACCEPTED","features":[98]},{"name":"PEER_INVITATION_RESPONSE_DECLINED","features":[98]},{"name":"PEER_INVITATION_RESPONSE_ERROR","features":[98]},{"name":"PEER_INVITATION_RESPONSE_EXPIRED","features":[98]},{"name":"PEER_INVITATION_RESPONSE_TYPE","features":[98]},{"name":"PEER_MEMBER","features":[3,98,17,70]},{"name":"PEER_MEMBER_CHANGE_TYPE","features":[98]},{"name":"PEER_MEMBER_CONNECTED","features":[98]},{"name":"PEER_MEMBER_DATA_OPTIONAL","features":[98]},{"name":"PEER_MEMBER_DISCONNECTED","features":[98]},{"name":"PEER_MEMBER_FLAGS","features":[98]},{"name":"PEER_MEMBER_JOINED","features":[98]},{"name":"PEER_MEMBER_LEFT","features":[98]},{"name":"PEER_MEMBER_PRESENT","features":[98]},{"name":"PEER_MEMBER_UPDATED","features":[98]},{"name":"PEER_NAME_PAIR","features":[98]},{"name":"PEER_NODE_CHANGE_CONNECTED","features":[98]},{"name":"PEER_NODE_CHANGE_DISCONNECTED","features":[98]},{"name":"PEER_NODE_CHANGE_TYPE","features":[98]},{"name":"PEER_NODE_CHANGE_UPDATED","features":[98]},{"name":"PEER_NODE_INFO","features":[98,17]},{"name":"PEER_OBJECT","features":[98]},{"name":"PEER_PEOPLE_NEAR_ME","features":[98,17]},{"name":"PEER_PNRP_ALL_LINK_CLOUDS","features":[98]},{"name":"PEER_PNRP_CLOUD_INFO","features":[98]},{"name":"PEER_PNRP_ENDPOINT_INFO","features":[98,17]},{"name":"PEER_PNRP_REGISTRATION_INFO","features":[98,17]},{"name":"PEER_PRESENCE_AWAY","features":[98]},{"name":"PEER_PRESENCE_BE_RIGHT_BACK","features":[98]},{"name":"PEER_PRESENCE_BUSY","features":[98]},{"name":"PEER_PRESENCE_IDLE","features":[98]},{"name":"PEER_PRESENCE_INFO","features":[98]},{"name":"PEER_PRESENCE_OFFLINE","features":[98]},{"name":"PEER_PRESENCE_ONLINE","features":[98]},{"name":"PEER_PRESENCE_ON_THE_PHONE","features":[98]},{"name":"PEER_PRESENCE_OUT_TO_LUNCH","features":[98]},{"name":"PEER_PRESENCE_STATUS","features":[98]},{"name":"PEER_PUBLICATION_SCOPE","features":[98]},{"name":"PEER_PUBLICATION_SCOPE_ALL","features":[98]},{"name":"PEER_PUBLICATION_SCOPE_INTERNET","features":[98]},{"name":"PEER_PUBLICATION_SCOPE_NEAR_ME","features":[98]},{"name":"PEER_PUBLICATION_SCOPE_NONE","features":[98]},{"name":"PEER_RECORD","features":[3,98]},{"name":"PEER_RECORD_ADDED","features":[98]},{"name":"PEER_RECORD_CHANGE_TYPE","features":[98]},{"name":"PEER_RECORD_DELETED","features":[98]},{"name":"PEER_RECORD_EXPIRED","features":[98]},{"name":"PEER_RECORD_FLAGS","features":[98]},{"name":"PEER_RECORD_FLAG_AUTOREFRESH","features":[98]},{"name":"PEER_RECORD_FLAG_DELETED","features":[98]},{"name":"PEER_RECORD_UPDATED","features":[98]},{"name":"PEER_SECURITY_INTERFACE","features":[3,98]},{"name":"PEER_SIGNIN_ALL","features":[98]},{"name":"PEER_SIGNIN_FLAGS","features":[98]},{"name":"PEER_SIGNIN_INTERNET","features":[98]},{"name":"PEER_SIGNIN_NEAR_ME","features":[98]},{"name":"PEER_SIGNIN_NONE","features":[98]},{"name":"PEER_VERSION_DATA","features":[98]},{"name":"PEER_WATCH_ALLOWED","features":[98]},{"name":"PEER_WATCH_BLOCKED","features":[98]},{"name":"PEER_WATCH_PERMISSION","features":[98]},{"name":"PFNPEER_FREE_SECURITY_DATA","features":[98]},{"name":"PFNPEER_ON_PASSWORD_AUTH_FAILED","features":[98]},{"name":"PFNPEER_SECURE_RECORD","features":[3,98]},{"name":"PFNPEER_VALIDATE_RECORD","features":[3,98]},{"name":"PNRPCLOUDINFO","features":[98]},{"name":"PNRPINFO_HINT","features":[98]},{"name":"PNRPINFO_V1","features":[98,17]},{"name":"PNRPINFO_V2","features":[98,17,43]},{"name":"PNRP_CLOUD_FLAGS","features":[98]},{"name":"PNRP_CLOUD_FULL_PARTICIPANT","features":[98]},{"name":"PNRP_CLOUD_ID","features":[98]},{"name":"PNRP_CLOUD_NAME_LOCAL","features":[98]},{"name":"PNRP_CLOUD_NO_FLAGS","features":[98]},{"name":"PNRP_CLOUD_RESOLVE_ONLY","features":[98]},{"name":"PNRP_CLOUD_STATE","features":[98]},{"name":"PNRP_CLOUD_STATE_ACTIVE","features":[98]},{"name":"PNRP_CLOUD_STATE_ALONE","features":[98]},{"name":"PNRP_CLOUD_STATE_DEAD","features":[98]},{"name":"PNRP_CLOUD_STATE_DISABLED","features":[98]},{"name":"PNRP_CLOUD_STATE_NO_NET","features":[98]},{"name":"PNRP_CLOUD_STATE_SYNCHRONISING","features":[98]},{"name":"PNRP_CLOUD_STATE_VIRTUAL","features":[98]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE","features":[98]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_BINARY","features":[98]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_NONE","features":[98]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_STRING","features":[98]},{"name":"PNRP_GLOBAL_SCOPE","features":[98]},{"name":"PNRP_LINK_LOCAL_SCOPE","features":[98]},{"name":"PNRP_MAX_ENDPOINT_ADDRESSES","features":[98]},{"name":"PNRP_MAX_EXTENDED_PAYLOAD_BYTES","features":[98]},{"name":"PNRP_REGISTERED_ID_STATE","features":[98]},{"name":"PNRP_REGISTERED_ID_STATE_OK","features":[98]},{"name":"PNRP_REGISTERED_ID_STATE_PROBLEM","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA_ANY_PEER_NAME","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA_DEFAULT","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_NON_CURRENT_PROCESS_PEER_NAME","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_PEER_NAME","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_REMOTE_PEER_NAME","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA_NON_CURRENT_PROCESS_PEER_NAME","features":[98]},{"name":"PNRP_RESOLVE_CRITERIA_REMOTE_PEER_NAME","features":[98]},{"name":"PNRP_SCOPE","features":[98]},{"name":"PNRP_SCOPE_ANY","features":[98]},{"name":"PNRP_SITE_LOCAL_SCOPE","features":[98]},{"name":"PeerCollabAddContact","features":[3,98]},{"name":"PeerCollabAsyncInviteContact","features":[3,98,17]},{"name":"PeerCollabAsyncInviteEndpoint","features":[3,98,17]},{"name":"PeerCollabCancelInvitation","features":[3,98]},{"name":"PeerCollabCloseHandle","features":[3,98]},{"name":"PeerCollabDeleteContact","features":[98]},{"name":"PeerCollabDeleteEndpointData","features":[98,17]},{"name":"PeerCollabDeleteObject","features":[98]},{"name":"PeerCollabEnumApplicationRegistrationInfo","features":[98]},{"name":"PeerCollabEnumApplications","features":[98,17]},{"name":"PeerCollabEnumContacts","features":[98]},{"name":"PeerCollabEnumEndpoints","features":[3,98]},{"name":"PeerCollabEnumObjects","features":[98,17]},{"name":"PeerCollabEnumPeopleNearMe","features":[98]},{"name":"PeerCollabExportContact","features":[98]},{"name":"PeerCollabGetAppLaunchInfo","features":[3,98,17]},{"name":"PeerCollabGetApplicationRegistrationInfo","features":[98]},{"name":"PeerCollabGetContact","features":[3,98]},{"name":"PeerCollabGetEndpointName","features":[98]},{"name":"PeerCollabGetEventData","features":[3,98,17]},{"name":"PeerCollabGetInvitationResponse","features":[3,98]},{"name":"PeerCollabGetPresenceInfo","features":[98,17]},{"name":"PeerCollabGetSigninOptions","features":[98]},{"name":"PeerCollabInviteContact","features":[3,98,17]},{"name":"PeerCollabInviteEndpoint","features":[98,17]},{"name":"PeerCollabParseContact","features":[3,98]},{"name":"PeerCollabQueryContactData","features":[98,17]},{"name":"PeerCollabRefreshEndpointData","features":[98,17]},{"name":"PeerCollabRegisterApplication","features":[98]},{"name":"PeerCollabRegisterEvent","features":[3,98]},{"name":"PeerCollabSetEndpointName","features":[98]},{"name":"PeerCollabSetObject","features":[98]},{"name":"PeerCollabSetPresenceInfo","features":[98]},{"name":"PeerCollabShutdown","features":[98]},{"name":"PeerCollabSignin","features":[3,98]},{"name":"PeerCollabSignout","features":[98]},{"name":"PeerCollabStartup","features":[98]},{"name":"PeerCollabSubscribeEndpointData","features":[98,17]},{"name":"PeerCollabUnregisterApplication","features":[98]},{"name":"PeerCollabUnregisterEvent","features":[98]},{"name":"PeerCollabUnsubscribeEndpointData","features":[98,17]},{"name":"PeerCollabUpdateContact","features":[3,98]},{"name":"PeerCreatePeerName","features":[98]},{"name":"PeerDistClientAddContentInformation","features":[3,98,8]},{"name":"PeerDistClientAddData","features":[3,98,8]},{"name":"PeerDistClientBasicInfo","features":[98]},{"name":"PeerDistClientBlockRead","features":[3,98,8]},{"name":"PeerDistClientCancelAsyncOperation","features":[3,98,8]},{"name":"PeerDistClientCloseContent","features":[98]},{"name":"PeerDistClientCompleteContentInformation","features":[3,98,8]},{"name":"PeerDistClientFlushContent","features":[3,98,8]},{"name":"PeerDistClientGetInformationByHandle","features":[98]},{"name":"PeerDistClientOpenContent","features":[3,98]},{"name":"PeerDistClientStreamRead","features":[3,98,8]},{"name":"PeerDistGetOverlappedResult","features":[3,98,8]},{"name":"PeerDistGetStatus","features":[98]},{"name":"PeerDistGetStatusEx","features":[98]},{"name":"PeerDistRegisterForStatusChangeNotification","features":[3,98,8]},{"name":"PeerDistRegisterForStatusChangeNotificationEx","features":[3,98,8]},{"name":"PeerDistServerCancelAsyncOperation","features":[3,98,8]},{"name":"PeerDistServerCloseContentInformation","features":[98]},{"name":"PeerDistServerCloseStreamHandle","features":[98]},{"name":"PeerDistServerOpenContentInformation","features":[3,98]},{"name":"PeerDistServerOpenContentInformationEx","features":[3,98]},{"name":"PeerDistServerPublishAddToStream","features":[3,98,8]},{"name":"PeerDistServerPublishCompleteStream","features":[3,98,8]},{"name":"PeerDistServerPublishStream","features":[3,98]},{"name":"PeerDistServerRetrieveContentInformation","features":[3,98,8]},{"name":"PeerDistServerUnpublish","features":[98]},{"name":"PeerDistShutdown","features":[98]},{"name":"PeerDistStartup","features":[98]},{"name":"PeerDistUnregisterForStatusChangeNotification","features":[98]},{"name":"PeerEndEnumeration","features":[98]},{"name":"PeerEnumGroups","features":[98]},{"name":"PeerEnumIdentities","features":[98]},{"name":"PeerFreeData","features":[98]},{"name":"PeerGetItemCount","features":[98]},{"name":"PeerGetNextItem","features":[98]},{"name":"PeerGraphAddRecord","features":[3,98]},{"name":"PeerGraphClose","features":[98]},{"name":"PeerGraphCloseDirectConnection","features":[98]},{"name":"PeerGraphConnect","features":[98,17]},{"name":"PeerGraphCreate","features":[3,98]},{"name":"PeerGraphDelete","features":[98]},{"name":"PeerGraphDeleteRecord","features":[3,98]},{"name":"PeerGraphEndEnumeration","features":[98]},{"name":"PeerGraphEnumConnections","features":[98]},{"name":"PeerGraphEnumNodes","features":[98]},{"name":"PeerGraphEnumRecords","features":[98]},{"name":"PeerGraphExportDatabase","features":[98]},{"name":"PeerGraphFreeData","features":[98]},{"name":"PeerGraphGetEventData","features":[98]},{"name":"PeerGraphGetItemCount","features":[98]},{"name":"PeerGraphGetNextItem","features":[98]},{"name":"PeerGraphGetNodeInfo","features":[98,17]},{"name":"PeerGraphGetProperties","features":[98]},{"name":"PeerGraphGetRecord","features":[3,98]},{"name":"PeerGraphGetStatus","features":[98]},{"name":"PeerGraphImportDatabase","features":[98]},{"name":"PeerGraphListen","features":[98]},{"name":"PeerGraphOpen","features":[3,98]},{"name":"PeerGraphOpenDirectConnection","features":[98,17]},{"name":"PeerGraphPeerTimeToUniversalTime","features":[3,98]},{"name":"PeerGraphRegisterEvent","features":[3,98]},{"name":"PeerGraphSearchRecords","features":[98]},{"name":"PeerGraphSendData","features":[98]},{"name":"PeerGraphSetNodeAttributes","features":[98]},{"name":"PeerGraphSetPresence","features":[3,98]},{"name":"PeerGraphSetProperties","features":[98]},{"name":"PeerGraphShutdown","features":[98]},{"name":"PeerGraphStartup","features":[98]},{"name":"PeerGraphUniversalTimeToPeerTime","features":[3,98]},{"name":"PeerGraphUnregisterEvent","features":[98]},{"name":"PeerGraphUpdateRecord","features":[3,98]},{"name":"PeerGraphValidateDeferredRecords","features":[98]},{"name":"PeerGroupAddRecord","features":[3,98]},{"name":"PeerGroupClose","features":[98]},{"name":"PeerGroupCloseDirectConnection","features":[98]},{"name":"PeerGroupConnect","features":[98]},{"name":"PeerGroupConnectByAddress","features":[98,17]},{"name":"PeerGroupCreate","features":[98]},{"name":"PeerGroupCreateInvitation","features":[3,98]},{"name":"PeerGroupCreatePasswordInvitation","features":[98]},{"name":"PeerGroupDelete","features":[98]},{"name":"PeerGroupDeleteRecord","features":[98]},{"name":"PeerGroupEnumConnections","features":[98]},{"name":"PeerGroupEnumMembers","features":[98]},{"name":"PeerGroupEnumRecords","features":[98]},{"name":"PeerGroupExportConfig","features":[98]},{"name":"PeerGroupExportDatabase","features":[98]},{"name":"PeerGroupGetEventData","features":[98]},{"name":"PeerGroupGetProperties","features":[98]},{"name":"PeerGroupGetRecord","features":[3,98]},{"name":"PeerGroupGetStatus","features":[98]},{"name":"PeerGroupImportConfig","features":[3,98]},{"name":"PeerGroupImportDatabase","features":[98]},{"name":"PeerGroupIssueCredentials","features":[3,98,70]},{"name":"PeerGroupJoin","features":[98]},{"name":"PeerGroupOpen","features":[98]},{"name":"PeerGroupOpenDirectConnection","features":[98,17]},{"name":"PeerGroupParseInvitation","features":[3,98,70]},{"name":"PeerGroupPasswordJoin","features":[98]},{"name":"PeerGroupPeerTimeToUniversalTime","features":[3,98]},{"name":"PeerGroupRegisterEvent","features":[3,98]},{"name":"PeerGroupResumePasswordAuthentication","features":[98]},{"name":"PeerGroupSearchRecords","features":[98]},{"name":"PeerGroupSendData","features":[98]},{"name":"PeerGroupSetProperties","features":[98]},{"name":"PeerGroupShutdown","features":[98]},{"name":"PeerGroupStartup","features":[98]},{"name":"PeerGroupUniversalTimeToPeerTime","features":[3,98]},{"name":"PeerGroupUnregisterEvent","features":[98]},{"name":"PeerGroupUpdateRecord","features":[3,98]},{"name":"PeerHostNameToPeerName","features":[98]},{"name":"PeerIdentityCreate","features":[98]},{"name":"PeerIdentityDelete","features":[98]},{"name":"PeerIdentityExport","features":[98]},{"name":"PeerIdentityGetCryptKey","features":[98]},{"name":"PeerIdentityGetDefault","features":[98]},{"name":"PeerIdentityGetFriendlyName","features":[98]},{"name":"PeerIdentityGetXML","features":[98]},{"name":"PeerIdentityImport","features":[98]},{"name":"PeerIdentitySetFriendlyName","features":[98]},{"name":"PeerNameToPeerHostName","features":[98]},{"name":"PeerPnrpEndResolve","features":[98]},{"name":"PeerPnrpGetCloudInfo","features":[98]},{"name":"PeerPnrpGetEndpoint","features":[98,17]},{"name":"PeerPnrpRegister","features":[98,17]},{"name":"PeerPnrpResolve","features":[98,17]},{"name":"PeerPnrpShutdown","features":[98]},{"name":"PeerPnrpStartResolve","features":[3,98]},{"name":"PeerPnrpStartup","features":[98]},{"name":"PeerPnrpUnregister","features":[98]},{"name":"PeerPnrpUpdateRegistration","features":[98,17]},{"name":"SVCID_PNRPCLOUD","features":[98]},{"name":"SVCID_PNRPNAME_V1","features":[98]},{"name":"SVCID_PNRPNAME_V2","features":[98]},{"name":"WSA_PNRP_CLIENT_INVALID_COMPARTMENT_ID","features":[98]},{"name":"WSA_PNRP_CLOUD_DISABLED","features":[98]},{"name":"WSA_PNRP_CLOUD_IS_DEAD","features":[98]},{"name":"WSA_PNRP_CLOUD_IS_SEARCH_ONLY","features":[98]},{"name":"WSA_PNRP_CLOUD_NOT_FOUND","features":[98]},{"name":"WSA_PNRP_DUPLICATE_PEER_NAME","features":[98]},{"name":"WSA_PNRP_ERROR_BASE","features":[98]},{"name":"WSA_PNRP_INVALID_IDENTITY","features":[98]},{"name":"WSA_PNRP_TOO_MUCH_LOAD","features":[98]},{"name":"WSZ_SCOPE_GLOBAL","features":[98]},{"name":"WSZ_SCOPE_LINKLOCAL","features":[98]},{"name":"WSZ_SCOPE_SITELOCAL","features":[98]}],"458":[{"name":"ABLE_TO_RECV_RSVP","features":[99]},{"name":"ADDRESS_LIST_DESCRIPTOR","features":[18,99]},{"name":"ADM_CTRL_FAILED","features":[99]},{"name":"ADSPEC","features":[99]},{"name":"AD_FLAG_BREAK_BIT","features":[99]},{"name":"AD_GENERAL_PARAMS","features":[99]},{"name":"AD_GUARANTEED","features":[99]},{"name":"ALLOWED_TO_SEND_DATA","features":[99]},{"name":"ANY_DEST_ADDR","features":[99]},{"name":"CBADMITRESULT","features":[99]},{"name":"CBGETRSVPOBJECTS","features":[99]},{"name":"CONTROLLED_DELAY_SERV","features":[99]},{"name":"CONTROLLED_LOAD_SERV","features":[99]},{"name":"CONTROL_SERVICE","features":[99]},{"name":"CREDENTIAL_SUB_TYPE_ASCII_ID","features":[99]},{"name":"CREDENTIAL_SUB_TYPE_KERBEROS_TKT","features":[99]},{"name":"CREDENTIAL_SUB_TYPE_PGP_CERT","features":[99]},{"name":"CREDENTIAL_SUB_TYPE_UNICODE_ID","features":[99]},{"name":"CREDENTIAL_SUB_TYPE_X509_V3_CERT","features":[99]},{"name":"CURRENT_TCI_VERSION","features":[99]},{"name":"CtrlLoadFlowspec","features":[99]},{"name":"DD_TCP_DEVICE_NAME","features":[99]},{"name":"DUP_RESULTS","features":[99]},{"name":"END_TO_END_QOSABILITY","features":[99]},{"name":"ENUMERATION_BUFFER","features":[99,17]},{"name":"ERROR_ADDRESS_TYPE_NOT_SUPPORTED","features":[99]},{"name":"ERROR_DS_MAPPING_EXISTS","features":[99]},{"name":"ERROR_DUPLICATE_FILTER","features":[99]},{"name":"ERROR_FILTER_CONFLICT","features":[99]},{"name":"ERROR_INCOMPATABLE_QOS","features":[99]},{"name":"ERROR_INCOMPATIBLE_TCI_VERSION","features":[99]},{"name":"ERROR_INVALID_ADDRESS_TYPE","features":[99]},{"name":"ERROR_INVALID_DIFFSERV_FLOW","features":[99]},{"name":"ERROR_INVALID_DS_CLASS","features":[99]},{"name":"ERROR_INVALID_FLOW_MODE","features":[99]},{"name":"ERROR_INVALID_PEAK_RATE","features":[99]},{"name":"ERROR_INVALID_QOS_PRIORITY","features":[99]},{"name":"ERROR_INVALID_SD_MODE","features":[99]},{"name":"ERROR_INVALID_SERVICE_TYPE","features":[99]},{"name":"ERROR_INVALID_SHAPE_RATE","features":[99]},{"name":"ERROR_INVALID_TOKEN_RATE","features":[99]},{"name":"ERROR_INVALID_TRAFFIC_CLASS","features":[99]},{"name":"ERROR_NO_MORE_INFO","features":[99]},{"name":"ERROR_SPEC","features":[99,17]},{"name":"ERROR_SPECF_InPlace","features":[99]},{"name":"ERROR_SPECF_NotGuilty","features":[99]},{"name":"ERROR_TC_NOT_SUPPORTED","features":[99]},{"name":"ERROR_TC_OBJECT_LENGTH_INVALID","features":[99]},{"name":"ERROR_TC_SUPPORTED_OBJECTS_EXIST","features":[99]},{"name":"ERROR_TOO_MANY_CLIENTS","features":[99]},{"name":"ERR_FORWARD_OK","features":[99]},{"name":"ERR_Usage_globl","features":[99]},{"name":"ERR_Usage_local","features":[99]},{"name":"ERR_Usage_serv","features":[99]},{"name":"ERR_global_mask","features":[99]},{"name":"EXPIRED_CREDENTIAL","features":[99]},{"name":"Error_Spec_IPv4","features":[99,17]},{"name":"FILTERSPECV4","features":[99]},{"name":"FILTERSPECV4_GPI","features":[99]},{"name":"FILTERSPECV6","features":[99]},{"name":"FILTERSPECV6_FLOW","features":[99]},{"name":"FILTERSPECV6_GPI","features":[99]},{"name":"FILTERSPEC_END","features":[99]},{"name":"FILTER_SPEC","features":[99,17]},{"name":"FLOWDESCRIPTOR","features":[99,17]},{"name":"FLOW_DESC","features":[99,17]},{"name":"FLOW_DURATION","features":[99]},{"name":"FORCE_IMMEDIATE_REFRESH","features":[99]},{"name":"FSCTL_TCP_BASE","features":[99]},{"name":"FVEB_UNLOCK_FLAG_AUK_OSFVEINFO","features":[99]},{"name":"FVEB_UNLOCK_FLAG_CACHED","features":[99]},{"name":"FVEB_UNLOCK_FLAG_EXTERNAL","features":[99]},{"name":"FVEB_UNLOCK_FLAG_MEDIA","features":[99]},{"name":"FVEB_UNLOCK_FLAG_NBP","features":[99]},{"name":"FVEB_UNLOCK_FLAG_NONE","features":[99]},{"name":"FVEB_UNLOCK_FLAG_PASSPHRASE","features":[99]},{"name":"FVEB_UNLOCK_FLAG_PIN","features":[99]},{"name":"FVEB_UNLOCK_FLAG_RECOVERY","features":[99]},{"name":"FVEB_UNLOCK_FLAG_TPM","features":[99]},{"name":"FilterType","features":[99]},{"name":"Filter_Spec_IPv4","features":[99,17]},{"name":"Filter_Spec_IPv4GPI","features":[99,17]},{"name":"GENERAL_INFO","features":[99]},{"name":"GQOS_API","features":[99]},{"name":"GQOS_ERRORCODE_UNKNOWN","features":[99]},{"name":"GQOS_ERRORVALUE_UNKNOWN","features":[99]},{"name":"GQOS_KERNEL_TC","features":[99]},{"name":"GQOS_KERNEL_TC_SYS","features":[99]},{"name":"GQOS_NET_ADMISSION","features":[99]},{"name":"GQOS_NET_POLICY","features":[99]},{"name":"GQOS_NO_ERRORCODE","features":[99]},{"name":"GQOS_NO_ERRORVALUE","features":[99]},{"name":"GQOS_RSVP","features":[99]},{"name":"GQOS_RSVP_SYS","features":[99]},{"name":"GUARANTEED_SERV","features":[99]},{"name":"GUAR_ADSPARM_C","features":[99]},{"name":"GUAR_ADSPARM_Csum","features":[99]},{"name":"GUAR_ADSPARM_Ctot","features":[99]},{"name":"GUAR_ADSPARM_D","features":[99]},{"name":"GUAR_ADSPARM_Dsum","features":[99]},{"name":"GUAR_ADSPARM_Dtot","features":[99]},{"name":"GUID_QOS_BESTEFFORT_BANDWIDTH","features":[99]},{"name":"GUID_QOS_ENABLE_AVG_STATS","features":[99]},{"name":"GUID_QOS_ENABLE_WINDOW_ADJUSTMENT","features":[99]},{"name":"GUID_QOS_FLOW_8021P_CONFORMING","features":[99]},{"name":"GUID_QOS_FLOW_8021P_NONCONFORMING","features":[99]},{"name":"GUID_QOS_FLOW_COUNT","features":[99]},{"name":"GUID_QOS_FLOW_IP_CONFORMING","features":[99]},{"name":"GUID_QOS_FLOW_IP_NONCONFORMING","features":[99]},{"name":"GUID_QOS_FLOW_MODE","features":[99]},{"name":"GUID_QOS_ISSLOW_FLOW","features":[99]},{"name":"GUID_QOS_LATENCY","features":[99]},{"name":"GUID_QOS_MAX_OUTSTANDING_SENDS","features":[99]},{"name":"GUID_QOS_NON_BESTEFFORT_LIMIT","features":[99]},{"name":"GUID_QOS_REMAINING_BANDWIDTH","features":[99]},{"name":"GUID_QOS_STATISTICS_BUFFER","features":[99]},{"name":"GUID_QOS_TIMER_RESOLUTION","features":[99]},{"name":"Gads_parms_t","features":[99]},{"name":"GenAdspecParams","features":[99]},{"name":"GenTspec","features":[99]},{"name":"GenTspecParms","features":[99]},{"name":"GuarFlowSpec","features":[99]},{"name":"GuarRspec","features":[99]},{"name":"HIGHLY_DELAY_SENSITIVE","features":[99]},{"name":"HSP_UPGRADE_IMAGEDATA","features":[99]},{"name":"IDENTITY_CHANGED","features":[99]},{"name":"IDPE_ATTR","features":[99]},{"name":"ID_ERROR_OBJECT","features":[99]},{"name":"IF_MIB_STATS_ID","features":[99]},{"name":"INFO_NOT_AVAILABLE","features":[99]},{"name":"INSUFFICIENT_PRIVILEGES","features":[99]},{"name":"INTSERV_VERSION0","features":[99]},{"name":"INTSERV_VERS_MASK","features":[99]},{"name":"INV_LPM_HANDLE","features":[99]},{"name":"INV_REQ_HANDLE","features":[99]},{"name":"INV_RESULTS","features":[99]},{"name":"IN_ADDR_IPV4","features":[99]},{"name":"IN_ADDR_IPV6","features":[99]},{"name":"IPX_PATTERN","features":[99]},{"name":"IP_INTFC_INFO_ID","features":[99]},{"name":"IP_MIB_ADDRTABLE_ENTRY_ID","features":[99]},{"name":"IP_MIB_STATS_ID","features":[99]},{"name":"IP_PATTERN","features":[99]},{"name":"ISPH_FLG_INV","features":[99]},{"name":"ISSH_BREAK_BIT","features":[99]},{"name":"IS_ADSPEC_BODY","features":[99]},{"name":"IS_FLOWSPEC","features":[99]},{"name":"IS_GUAR_RSPEC","features":[99]},{"name":"IS_WKP_COMPOSED_MTU","features":[99]},{"name":"IS_WKP_HOP_CNT","features":[99]},{"name":"IS_WKP_MIN_LATENCY","features":[99]},{"name":"IS_WKP_PATH_BW","features":[99]},{"name":"IS_WKP_Q_TSPEC","features":[99]},{"name":"IS_WKP_TB_TSPEC","features":[99]},{"name":"IntServFlowSpec","features":[99]},{"name":"IntServMainHdr","features":[99]},{"name":"IntServParmHdr","features":[99]},{"name":"IntServServiceHdr","features":[99]},{"name":"IntServTspecBody","features":[99]},{"name":"LINE_RATE","features":[99]},{"name":"LOCAL_QOSABILITY","features":[99]},{"name":"LOCAL_TRAFFIC_CONTROL","features":[99]},{"name":"LPMIPTABLE","features":[99,17]},{"name":"LPM_API_VERSION_1","features":[99]},{"name":"LPM_HANDLE","features":[99]},{"name":"LPM_INIT_INFO","features":[99]},{"name":"LPM_OK","features":[99]},{"name":"LPM_PE_ALL_TYPES","features":[99]},{"name":"LPM_PE_APP_IDENTITY","features":[99]},{"name":"LPM_PE_USER_IDENTITY","features":[99]},{"name":"LPM_RESULT_DEFER","features":[99]},{"name":"LPM_RESULT_READY","features":[99]},{"name":"LPM_TIME_OUT","features":[99]},{"name":"LPV_DONT_CARE","features":[99]},{"name":"LPV_DROP_MSG","features":[99]},{"name":"LPV_MAX_PRIORITY","features":[99]},{"name":"LPV_MIN_PRIORITY","features":[99]},{"name":"LPV_REJECT","features":[99]},{"name":"LPV_RESERVED","features":[99]},{"name":"MAX_HSP_UPGRADE_FILENAME_LENGTH","features":[99]},{"name":"MAX_PHYSADDR_SIZE","features":[99]},{"name":"MAX_STRING_LENGTH","features":[99]},{"name":"MODERATELY_DELAY_SENSITIVE","features":[99]},{"name":"OSDEVICE_TYPE_BLOCKIO_CDROM","features":[99]},{"name":"OSDEVICE_TYPE_BLOCKIO_FILE","features":[99]},{"name":"OSDEVICE_TYPE_BLOCKIO_HARDDISK","features":[99]},{"name":"OSDEVICE_TYPE_BLOCKIO_PARTITION","features":[99]},{"name":"OSDEVICE_TYPE_BLOCKIO_RAMDISK","features":[99]},{"name":"OSDEVICE_TYPE_BLOCKIO_REMOVABLEDISK","features":[99]},{"name":"OSDEVICE_TYPE_BLOCKIO_VIRTUALHARDDISK","features":[99]},{"name":"OSDEVICE_TYPE_CIMFS","features":[99]},{"name":"OSDEVICE_TYPE_COMPOSITE","features":[99]},{"name":"OSDEVICE_TYPE_SERIAL","features":[99]},{"name":"OSDEVICE_TYPE_UDP","features":[99]},{"name":"OSDEVICE_TYPE_UNKNOWN","features":[99]},{"name":"OSDEVICE_TYPE_VMBUS","features":[99]},{"name":"Opt_Distinct","features":[99]},{"name":"Opt_Explicit","features":[99]},{"name":"Opt_Share_mask","features":[99]},{"name":"Opt_Shared","features":[99]},{"name":"Opt_SndSel_mask","features":[99]},{"name":"Opt_Wildcard","features":[99]},{"name":"PALLOCMEM","features":[99]},{"name":"PARAM_BUFFER","features":[99]},{"name":"PCM_VERSION_1","features":[99]},{"name":"PE_ATTRIB_TYPE_CREDENTIAL","features":[99]},{"name":"PE_ATTRIB_TYPE_POLICY_LOCATOR","features":[99]},{"name":"PE_TYPE_APPID","features":[99]},{"name":"PFREEMEM","features":[99]},{"name":"POLICY_DATA","features":[99]},{"name":"POLICY_DECISION","features":[99]},{"name":"POLICY_ELEMENT","features":[99]},{"name":"POLICY_ERRV_CRAZY_FLOWSPEC","features":[99]},{"name":"POLICY_ERRV_EXPIRED_CREDENTIALS","features":[99]},{"name":"POLICY_ERRV_EXPIRED_USER_TOKEN","features":[99]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_DEF_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_GRP_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_USER_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_IDENTITY_CHANGED","features":[99]},{"name":"POLICY_ERRV_INSUFFICIENT_PRIVILEGES","features":[99]},{"name":"POLICY_ERRV_NO_ACCEPTS","features":[99]},{"name":"POLICY_ERRV_NO_MEMORY","features":[99]},{"name":"POLICY_ERRV_NO_MORE_INFO","features":[99]},{"name":"POLICY_ERRV_NO_PRIVILEGES","features":[99]},{"name":"POLICY_ERRV_NO_RESOURCES","features":[99]},{"name":"POLICY_ERRV_PRE_EMPTED","features":[99]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_DEF_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_GRP_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_COUNT","features":[99]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_DURATION","features":[99]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_USER_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_FLOW_RATE","features":[99]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_PEAK_RATE","features":[99]},{"name":"POLICY_ERRV_UNKNOWN","features":[99]},{"name":"POLICY_ERRV_UNKNOWN_USER","features":[99]},{"name":"POLICY_ERRV_UNSUPPORTED_CREDENTIAL_TYPE","features":[99]},{"name":"POLICY_ERRV_USER_CHANGED","features":[99]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN","features":[99]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN_ENC","features":[99]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN","features":[99]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN_ENC","features":[99]},{"name":"POSITIVE_INFINITY_RATE","features":[99]},{"name":"PREDICTIVE_SERV","features":[99]},{"name":"QOSAddSocketToFlow","features":[3,99,17]},{"name":"QOSCancel","features":[3,99,8]},{"name":"QOSCloseHandle","features":[3,99]},{"name":"QOSCreateHandle","features":[3,99]},{"name":"QOSEnumerateFlows","features":[3,99]},{"name":"QOSFlowRateCongestion","features":[99]},{"name":"QOSFlowRateContentChange","features":[99]},{"name":"QOSFlowRateHigherContentEncoding","features":[99]},{"name":"QOSFlowRateNotApplicable","features":[99]},{"name":"QOSFlowRateUserCaused","features":[99]},{"name":"QOSNotifyAvailable","features":[99]},{"name":"QOSNotifyCongested","features":[99]},{"name":"QOSNotifyFlow","features":[3,99,8]},{"name":"QOSNotifyUncongested","features":[99]},{"name":"QOSQueryFlow","features":[3,99,8]},{"name":"QOSQueryFlowFundamentals","features":[99]},{"name":"QOSQueryOutgoingRate","features":[99]},{"name":"QOSQueryPacketPriority","features":[99]},{"name":"QOSRemoveSocketFromFlow","features":[3,99,17]},{"name":"QOSSPBASE","features":[99]},{"name":"QOSSP_ERR_BASE","features":[99]},{"name":"QOSSetFlow","features":[3,99,8]},{"name":"QOSSetOutgoingDSCPValue","features":[99]},{"name":"QOSSetOutgoingRate","features":[99]},{"name":"QOSSetTrafficType","features":[99]},{"name":"QOSShapeAndMark","features":[99]},{"name":"QOSShapeOnly","features":[99]},{"name":"QOSStartTrackingClient","features":[3,99,17]},{"name":"QOSStopTrackingClient","features":[3,99,17]},{"name":"QOSTrafficTypeAudioVideo","features":[99]},{"name":"QOSTrafficTypeBackground","features":[99]},{"name":"QOSTrafficTypeBestEffort","features":[99]},{"name":"QOSTrafficTypeControl","features":[99]},{"name":"QOSTrafficTypeExcellentEffort","features":[99]},{"name":"QOSTrafficTypeVoice","features":[99]},{"name":"QOSUseNonConformantMarkings","features":[99]},{"name":"QOS_DESTADDR","features":[99,17]},{"name":"QOS_DIFFSERV","features":[99]},{"name":"QOS_DIFFSERV_RULE","features":[99]},{"name":"QOS_DS_CLASS","features":[99]},{"name":"QOS_FLOWRATE_OUTGOING","features":[99]},{"name":"QOS_FLOWRATE_REASON","features":[99]},{"name":"QOS_FLOW_FUNDAMENTALS","features":[3,99]},{"name":"QOS_FRIENDLY_NAME","features":[99]},{"name":"QOS_GENERAL_ID_BASE","features":[99]},{"name":"QOS_MAX_OBJECT_STRING_LENGTH","features":[99]},{"name":"QOS_NON_ADAPTIVE_FLOW","features":[99]},{"name":"QOS_NOTIFY_FLOW","features":[99]},{"name":"QOS_NOT_SPECIFIED","features":[99]},{"name":"QOS_OBJECT_HDR","features":[99]},{"name":"QOS_OUTGOING_DEFAULT_MINIMUM_BANDWIDTH","features":[99]},{"name":"QOS_PACKET_PRIORITY","features":[99]},{"name":"QOS_QUERYFLOW_FRESH","features":[99]},{"name":"QOS_QUERY_FLOW","features":[99]},{"name":"QOS_SD_MODE","features":[99]},{"name":"QOS_SET_FLOW","features":[99]},{"name":"QOS_SHAPING","features":[99]},{"name":"QOS_SHAPING_RATE","features":[99]},{"name":"QOS_TCP_TRAFFIC","features":[99]},{"name":"QOS_TRAFFIC_CLASS","features":[99]},{"name":"QOS_TRAFFIC_GENERAL_ID_BASE","features":[99]},{"name":"QOS_TRAFFIC_TYPE","features":[99]},{"name":"QOS_VERSION","features":[99]},{"name":"QUALITATIVE_SERV","features":[99]},{"name":"QualAppFlowSpec","features":[99]},{"name":"QualTspec","features":[99]},{"name":"QualTspecParms","features":[99]},{"name":"RCVD_PATH_TEAR","features":[99]},{"name":"RCVD_RESV_TEAR","features":[99]},{"name":"RESOURCES_ALLOCATED","features":[99]},{"name":"RESOURCES_MODIFIED","features":[99]},{"name":"RESV_STYLE","features":[99]},{"name":"RHANDLE","features":[99]},{"name":"RSVP_ADSPEC","features":[99]},{"name":"RSVP_DEFAULT_STYLE","features":[99]},{"name":"RSVP_Err_ADMISSION","features":[99]},{"name":"RSVP_Err_AMBIG_FILTER","features":[99]},{"name":"RSVP_Err_API_ERROR","features":[99]},{"name":"RSVP_Err_BAD_DSTPORT","features":[99]},{"name":"RSVP_Err_BAD_SNDPORT","features":[99]},{"name":"RSVP_Err_BAD_STYLE","features":[99]},{"name":"RSVP_Err_NONE","features":[99]},{"name":"RSVP_Err_NO_PATH","features":[99]},{"name":"RSVP_Err_NO_SENDER","features":[99]},{"name":"RSVP_Err_POLICY","features":[99]},{"name":"RSVP_Err_PREEMPTED","features":[99]},{"name":"RSVP_Err_RSVP_SYS_ERROR","features":[99]},{"name":"RSVP_Err_TC_ERROR","features":[99]},{"name":"RSVP_Err_TC_SYS_ERROR","features":[99]},{"name":"RSVP_Err_UNKNOWN_CTYPE","features":[99]},{"name":"RSVP_Err_UNKNOWN_STYLE","features":[99]},{"name":"RSVP_Err_UNKN_OBJ_CLASS","features":[99]},{"name":"RSVP_Erv_API","features":[99]},{"name":"RSVP_Erv_Bandwidth","features":[99]},{"name":"RSVP_Erv_Bucket_szie","features":[99]},{"name":"RSVP_Erv_Conflict_Serv","features":[99]},{"name":"RSVP_Erv_Crazy_Flowspec","features":[99]},{"name":"RSVP_Erv_Crazy_Tspec","features":[99]},{"name":"RSVP_Erv_DelayBnd","features":[99]},{"name":"RSVP_Erv_Flow_Rate","features":[99]},{"name":"RSVP_Erv_MEMORY","features":[99]},{"name":"RSVP_Erv_MTU","features":[99]},{"name":"RSVP_Erv_Min_Policied_size","features":[99]},{"name":"RSVP_Erv_No_Serv","features":[99]},{"name":"RSVP_Erv_Nonev","features":[99]},{"name":"RSVP_Erv_Other","features":[99]},{"name":"RSVP_Erv_Peak_Rate","features":[99]},{"name":"RSVP_FILTERSPEC","features":[99]},{"name":"RSVP_FILTERSPEC_V4","features":[99]},{"name":"RSVP_FILTERSPEC_V4_GPI","features":[99]},{"name":"RSVP_FILTERSPEC_V6","features":[99]},{"name":"RSVP_FILTERSPEC_V6_FLOW","features":[99]},{"name":"RSVP_FILTERSPEC_V6_GPI","features":[99]},{"name":"RSVP_FIXED_FILTER_STYLE","features":[99]},{"name":"RSVP_HOP","features":[99,17]},{"name":"RSVP_MSG_OBJS","features":[99,17]},{"name":"RSVP_OBJECT_ID_BASE","features":[99]},{"name":"RSVP_PATH","features":[99]},{"name":"RSVP_PATH_ERR","features":[99]},{"name":"RSVP_PATH_TEAR","features":[99]},{"name":"RSVP_POLICY","features":[99]},{"name":"RSVP_POLICY_INFO","features":[99]},{"name":"RSVP_RESERVE_INFO","features":[99,17]},{"name":"RSVP_RESV","features":[99]},{"name":"RSVP_RESV_ERR","features":[99]},{"name":"RSVP_RESV_TEAR","features":[99]},{"name":"RSVP_SCOPE","features":[99,17]},{"name":"RSVP_SESSION","features":[99,17]},{"name":"RSVP_SHARED_EXPLICIT_STYLE","features":[99]},{"name":"RSVP_STATUS_INFO","features":[99]},{"name":"RSVP_WILDCARD_STYLE","features":[99]},{"name":"RsvpObjHdr","features":[99]},{"name":"Rsvp_Hop_IPv4","features":[99,17]},{"name":"SENDER_TSPEC","features":[99]},{"name":"SERVICETYPE_BESTEFFORT","features":[99]},{"name":"SERVICETYPE_CONTROLLEDLOAD","features":[99]},{"name":"SERVICETYPE_GENERAL_INFORMATION","features":[99]},{"name":"SERVICETYPE_GUARANTEED","features":[99]},{"name":"SERVICETYPE_NETWORK_CONTROL","features":[99]},{"name":"SERVICETYPE_NETWORK_UNAVAILABLE","features":[99]},{"name":"SERVICETYPE_NOCHANGE","features":[99]},{"name":"SERVICETYPE_NONCONFORMING","features":[99]},{"name":"SERVICETYPE_NOTRAFFIC","features":[99]},{"name":"SERVICETYPE_QUALITATIVE","features":[99]},{"name":"SERVICE_BESTEFFORT","features":[99]},{"name":"SERVICE_CONTROLLEDLOAD","features":[99]},{"name":"SERVICE_GUARANTEED","features":[99]},{"name":"SERVICE_NO_QOS_SIGNALING","features":[99]},{"name":"SERVICE_NO_TRAFFIC_CONTROL","features":[99]},{"name":"SERVICE_QUALITATIVE","features":[99]},{"name":"SESSFLG_E_Police","features":[99]},{"name":"SIPAERROR_FIRMWAREFAILURE","features":[99]},{"name":"SIPAERROR_INTERNALFAILURE","features":[99]},{"name":"SIPAEVENTTYPE_AGGREGATION","features":[99]},{"name":"SIPAEVENTTYPE_AUTHORITY","features":[99]},{"name":"SIPAEVENTTYPE_CONTAINER","features":[99]},{"name":"SIPAEVENTTYPE_DRTM","features":[99]},{"name":"SIPAEVENTTYPE_ELAM","features":[99]},{"name":"SIPAEVENTTYPE_ERROR","features":[99]},{"name":"SIPAEVENTTYPE_INFORMATION","features":[99]},{"name":"SIPAEVENTTYPE_KSR","features":[99]},{"name":"SIPAEVENTTYPE_LOADEDMODULE","features":[99]},{"name":"SIPAEVENTTYPE_NONMEASURED","features":[99]},{"name":"SIPAEVENTTYPE_OSPARAMETER","features":[99]},{"name":"SIPAEVENTTYPE_PREOSPARAMETER","features":[99]},{"name":"SIPAEVENTTYPE_TRUSTPOINT","features":[99]},{"name":"SIPAEVENTTYPE_VBS","features":[99]},{"name":"SIPAEVENT_APPLICATION_RETURN","features":[99]},{"name":"SIPAEVENT_APPLICATION_SVN","features":[99]},{"name":"SIPAEVENT_AUTHENTICODEHASH","features":[99]},{"name":"SIPAEVENT_AUTHORITYISSUER","features":[99]},{"name":"SIPAEVENT_AUTHORITYPUBKEY","features":[99]},{"name":"SIPAEVENT_AUTHORITYPUBLISHER","features":[99]},{"name":"SIPAEVENT_AUTHORITYSERIAL","features":[99]},{"name":"SIPAEVENT_AUTHORITYSHA1THUMBPRINT","features":[99]},{"name":"SIPAEVENT_BITLOCKER_UNLOCK","features":[99]},{"name":"SIPAEVENT_BOOTCOUNTER","features":[99]},{"name":"SIPAEVENT_BOOTDEBUGGING","features":[99]},{"name":"SIPAEVENT_BOOT_REVOCATION_LIST","features":[99]},{"name":"SIPAEVENT_CODEINTEGRITY","features":[99]},{"name":"SIPAEVENT_COUNTERID","features":[99]},{"name":"SIPAEVENT_DATAEXECUTIONPREVENTION","features":[99]},{"name":"SIPAEVENT_DRIVER_LOAD_POLICY","features":[99]},{"name":"SIPAEVENT_DRTM_AMD_SMM_HASH","features":[99]},{"name":"SIPAEVENT_DRTM_AMD_SMM_SIGNER_KEY","features":[99]},{"name":"SIPAEVENT_DRTM_SMM_LEVEL","features":[99]},{"name":"SIPAEVENT_DRTM_STATE_AUTH","features":[99]},{"name":"SIPAEVENT_DUMPS_DISABLED","features":[99]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_ENABLED","features":[99]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_KEY_DIGEST","features":[99]},{"name":"SIPAEVENT_ELAM_CONFIGURATION","features":[99]},{"name":"SIPAEVENT_ELAM_KEYNAME","features":[99]},{"name":"SIPAEVENT_ELAM_MEASURED","features":[99]},{"name":"SIPAEVENT_ELAM_POLICY","features":[99]},{"name":"SIPAEVENT_EVENTCOUNTER","features":[99]},{"name":"SIPAEVENT_FILEPATH","features":[99]},{"name":"SIPAEVENT_FLIGHTSIGNING","features":[99]},{"name":"SIPAEVENT_HASHALGORITHMID","features":[99]},{"name":"SIPAEVENT_HIBERNATION_DISABLED","features":[99]},{"name":"SIPAEVENT_HYPERVISOR_BOOT_DMA_PROTECTION","features":[99]},{"name":"SIPAEVENT_HYPERVISOR_DEBUG","features":[99]},{"name":"SIPAEVENT_HYPERVISOR_IOMMU_POLICY","features":[99]},{"name":"SIPAEVENT_HYPERVISOR_LAUNCH_TYPE","features":[99]},{"name":"SIPAEVENT_HYPERVISOR_MMIO_NX_POLICY","features":[99]},{"name":"SIPAEVENT_HYPERVISOR_MSR_FILTER_POLICY","features":[99]},{"name":"SIPAEVENT_HYPERVISOR_PATH","features":[99]},{"name":"SIPAEVENT_IMAGEBASE","features":[99]},{"name":"SIPAEVENT_IMAGESIZE","features":[99]},{"name":"SIPAEVENT_IMAGEVALIDATED","features":[99]},{"name":"SIPAEVENT_INFORMATION","features":[99]},{"name":"SIPAEVENT_KSR_SIGNATURE","features":[99]},{"name":"SIPAEVENT_KSR_SIGNATURE_PAYLOAD","features":[99]},{"name":"SIPAEVENT_LSAISO_CONFIG","features":[99]},{"name":"SIPAEVENT_MODULE_HSP","features":[99]},{"name":"SIPAEVENT_MODULE_SVN","features":[99]},{"name":"SIPAEVENT_MORBIT_API_STATUS","features":[99]},{"name":"SIPAEVENT_MORBIT_NOT_CANCELABLE","features":[99]},{"name":"SIPAEVENT_NOAUTHORITY","features":[99]},{"name":"SIPAEVENT_OSDEVICE","features":[99]},{"name":"SIPAEVENT_OSKERNELDEBUG","features":[99]},{"name":"SIPAEVENT_OS_REVOCATION_LIST","features":[99]},{"name":"SIPAEVENT_PAGEFILE_ENCRYPTION_ENABLED","features":[99]},{"name":"SIPAEVENT_PHYSICALADDRESSEXTENSION","features":[99]},{"name":"SIPAEVENT_REVOCATION_LIST_PAYLOAD","features":[99]},{"name":"SIPAEVENT_SAFEMODE","features":[99]},{"name":"SIPAEVENT_SBCP_INFO","features":[99]},{"name":"SIPAEVENT_SBCP_INFO_PAYLOAD_V1","features":[99]},{"name":"SIPAEVENT_SI_POLICY","features":[99]},{"name":"SIPAEVENT_SI_POLICY_PAYLOAD","features":[99]},{"name":"SIPAEVENT_SMT_STATUS","features":[99]},{"name":"SIPAEVENT_SVN_CHAIN_STATUS","features":[99]},{"name":"SIPAEVENT_SYSTEMROOT","features":[99]},{"name":"SIPAEVENT_TESTSIGNING","features":[99]},{"name":"SIPAEVENT_TRANSFER_CONTROL","features":[99]},{"name":"SIPAEVENT_VBS_DUMP_USES_AMEROOT","features":[99]},{"name":"SIPAEVENT_VBS_HVCI_POLICY","features":[99]},{"name":"SIPAEVENT_VBS_IOMMU_REQUIRED","features":[99]},{"name":"SIPAEVENT_VBS_MANDATORY_ENFORCEMENT","features":[99]},{"name":"SIPAEVENT_VBS_MICROSOFT_BOOT_CHAIN_REQUIRED","features":[99]},{"name":"SIPAEVENT_VBS_MMIO_NX_REQUIRED","features":[99]},{"name":"SIPAEVENT_VBS_MSR_FILTERING_REQUIRED","features":[99]},{"name":"SIPAEVENT_VBS_SECUREBOOT_REQUIRED","features":[99]},{"name":"SIPAEVENT_VBS_VSM_NOSECRETS_ENFORCED","features":[99]},{"name":"SIPAEVENT_VBS_VSM_REQUIRED","features":[99]},{"name":"SIPAEVENT_VSM_IDKS_INFO","features":[99]},{"name":"SIPAEVENT_VSM_IDK_INFO","features":[99]},{"name":"SIPAEVENT_VSM_IDK_INFO_PAYLOAD","features":[99]},{"name":"SIPAEVENT_VSM_IDK_RSA_INFO","features":[99]},{"name":"SIPAEVENT_VSM_LAUNCH_TYPE","features":[99]},{"name":"SIPAEVENT_WINPE","features":[99]},{"name":"SIPAEV_ACTION","features":[99]},{"name":"SIPAEV_AMD_SL_EVENT_BASE","features":[99]},{"name":"SIPAEV_AMD_SL_LOAD","features":[99]},{"name":"SIPAEV_AMD_SL_LOAD_1","features":[99]},{"name":"SIPAEV_AMD_SL_PSP_FW_SPLT","features":[99]},{"name":"SIPAEV_AMD_SL_PUB_KEY","features":[99]},{"name":"SIPAEV_AMD_SL_SEPARATOR","features":[99]},{"name":"SIPAEV_AMD_SL_SVN","features":[99]},{"name":"SIPAEV_AMD_SL_TSME_RB_FUSE","features":[99]},{"name":"SIPAEV_COMPACT_HASH","features":[99]},{"name":"SIPAEV_CPU_MICROCODE","features":[99]},{"name":"SIPAEV_EFI_ACTION","features":[99]},{"name":"SIPAEV_EFI_BOOT_SERVICES_APPLICATION","features":[99]},{"name":"SIPAEV_EFI_BOOT_SERVICES_DRIVER","features":[99]},{"name":"SIPAEV_EFI_EVENT_BASE","features":[99]},{"name":"SIPAEV_EFI_GPT_EVENT","features":[99]},{"name":"SIPAEV_EFI_HANDOFF_TABLES","features":[99]},{"name":"SIPAEV_EFI_HANDOFF_TABLES2","features":[99]},{"name":"SIPAEV_EFI_HCRTM_EVENT","features":[99]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB","features":[99]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB2","features":[99]},{"name":"SIPAEV_EFI_RUNTIME_SERVICES_DRIVER","features":[99]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_BLOB","features":[99]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_CONFIG","features":[99]},{"name":"SIPAEV_EFI_VARIABLE_AUTHORITY","features":[99]},{"name":"SIPAEV_EFI_VARIABLE_BOOT","features":[99]},{"name":"SIPAEV_EFI_VARIABLE_BOOT2","features":[99]},{"name":"SIPAEV_EFI_VARIABLE_DRIVER_CONFIG","features":[99]},{"name":"SIPAEV_EVENT_TAG","features":[99]},{"name":"SIPAEV_IPL","features":[99]},{"name":"SIPAEV_IPL_PARTITION_DATA","features":[99]},{"name":"SIPAEV_NONHOST_CODE","features":[99]},{"name":"SIPAEV_NONHOST_CONFIG","features":[99]},{"name":"SIPAEV_NONHOST_INFO","features":[99]},{"name":"SIPAEV_NO_ACTION","features":[99]},{"name":"SIPAEV_OMIT_BOOT_DEVICE_EVENTS","features":[99]},{"name":"SIPAEV_PLATFORM_CONFIG_FLAGS","features":[99]},{"name":"SIPAEV_POST_CODE","features":[99]},{"name":"SIPAEV_PREBOOT_CERT","features":[99]},{"name":"SIPAEV_SEPARATOR","features":[99]},{"name":"SIPAEV_S_CRTM_CONTENTS","features":[99]},{"name":"SIPAEV_S_CRTM_VERSION","features":[99]},{"name":"SIPAEV_TABLE_OF_DEVICES","features":[99]},{"name":"SIPAEV_TXT_BIOSAC_REG_DATA","features":[99]},{"name":"SIPAEV_TXT_BOOT_POL_HASH","features":[99]},{"name":"SIPAEV_TXT_BPM_HASH","features":[99]},{"name":"SIPAEV_TXT_BPM_INFO_HASH","features":[99]},{"name":"SIPAEV_TXT_CAP_VALUE","features":[99]},{"name":"SIPAEV_TXT_COLD_BOOT_BIOS_HASH","features":[99]},{"name":"SIPAEV_TXT_COMBINED_HASH","features":[99]},{"name":"SIPAEV_TXT_CPU_SCRTM_STAT","features":[99]},{"name":"SIPAEV_TXT_ELEMENTS_HASH","features":[99]},{"name":"SIPAEV_TXT_EVENT_BASE","features":[99]},{"name":"SIPAEV_TXT_HASH_START","features":[99]},{"name":"SIPAEV_TXT_KM_HASH","features":[99]},{"name":"SIPAEV_TXT_KM_INFO_HASH","features":[99]},{"name":"SIPAEV_TXT_LCP_AUTHORITIES_HASH","features":[99]},{"name":"SIPAEV_TXT_LCP_CONTROL_HASH","features":[99]},{"name":"SIPAEV_TXT_LCP_DETAILS_HASH","features":[99]},{"name":"SIPAEV_TXT_LCP_HASH","features":[99]},{"name":"SIPAEV_TXT_MLE_HASH","features":[99]},{"name":"SIPAEV_TXT_NV_INFO_HASH","features":[99]},{"name":"SIPAEV_TXT_OSSINITDATA_CAP_HASH","features":[99]},{"name":"SIPAEV_TXT_PCR_MAPPING","features":[99]},{"name":"SIPAEV_TXT_RANDOM_VALUE","features":[99]},{"name":"SIPAEV_TXT_SINIT_PUBKEY_HASH","features":[99]},{"name":"SIPAEV_TXT_STM_HASH","features":[99]},{"name":"SIPAEV_UNUSED","features":[99]},{"name":"SIPAHDRSIGNATURE","features":[99]},{"name":"SIPAKSRHDRSIGNATURE","features":[99]},{"name":"SIPALOGVERSION","features":[99]},{"name":"STATE_TIMEOUT","features":[99]},{"name":"Scope_list_ipv4","features":[99,17]},{"name":"Session_IPv4","features":[99,17]},{"name":"TCBASE","features":[99]},{"name":"TCG_PCClientPCREventStruct","features":[99]},{"name":"TCG_PCClientTaggedEventStruct","features":[99]},{"name":"TCI_ADD_FLOW_COMPLETE_HANDLER","features":[3,99]},{"name":"TCI_CLIENT_FUNC_LIST","features":[3,99]},{"name":"TCI_DEL_FLOW_COMPLETE_HANDLER","features":[3,99]},{"name":"TCI_MOD_FLOW_COMPLETE_HANDLER","features":[3,99]},{"name":"TCI_NOTIFY_HANDLER","features":[3,99]},{"name":"TC_GEN_FILTER","features":[99]},{"name":"TC_GEN_FLOW","features":[99,17]},{"name":"TC_IFC_DESCRIPTOR","features":[18,99]},{"name":"TC_NONCONF_BORROW","features":[99]},{"name":"TC_NONCONF_BORROW_PLUS","features":[99]},{"name":"TC_NONCONF_DISCARD","features":[99]},{"name":"TC_NONCONF_SHAPE","features":[99]},{"name":"TC_NOTIFY_FLOW_CLOSE","features":[99]},{"name":"TC_NOTIFY_IFC_CHANGE","features":[99]},{"name":"TC_NOTIFY_IFC_CLOSE","features":[99]},{"name":"TC_NOTIFY_IFC_UP","features":[99]},{"name":"TC_NOTIFY_PARAM_CHANGED","features":[99]},{"name":"TC_SUPPORTED_INFO_BUFFER","features":[18,99]},{"name":"TcAddFilter","features":[3,99]},{"name":"TcAddFlow","features":[3,99,17]},{"name":"TcCloseInterface","features":[3,99]},{"name":"TcDeleteFilter","features":[3,99]},{"name":"TcDeleteFlow","features":[3,99]},{"name":"TcDeregisterClient","features":[3,99]},{"name":"TcEnumerateFlows","features":[3,99,17]},{"name":"TcEnumerateInterfaces","features":[3,18,99]},{"name":"TcGetFlowNameA","features":[3,99]},{"name":"TcGetFlowNameW","features":[3,99]},{"name":"TcModifyFlow","features":[3,99,17]},{"name":"TcOpenInterfaceA","features":[3,99]},{"name":"TcOpenInterfaceW","features":[3,99]},{"name":"TcQueryFlowA","features":[99]},{"name":"TcQueryFlowW","features":[99]},{"name":"TcQueryInterface","features":[3,99]},{"name":"TcRegisterClient","features":[3,99]},{"name":"TcSetFlowA","features":[99]},{"name":"TcSetFlowW","features":[99]},{"name":"TcSetInterface","features":[3,99]},{"name":"UNSUPPORTED_CREDENTIAL_TYPE","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_256","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_384","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_512","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_1","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_256","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_384","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_512","features":[99]},{"name":"WBCL_DIGEST_ALG_BITMAP_SM3_256","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_256","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_384","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_512","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SHA_1","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_256","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_384","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_512","features":[99]},{"name":"WBCL_DIGEST_ALG_ID_SM3_256","features":[99]},{"name":"WBCL_HASH_LEN_SHA1","features":[99]},{"name":"WBCL_Iterator","features":[99]},{"name":"WBCL_LogHdr","features":[99]},{"name":"WBCL_MAX_HSP_UPGRADE_HASH_LEN","features":[99]},{"name":"class_ADSPEC","features":[99]},{"name":"class_CONFIRM","features":[99]},{"name":"class_ERROR_SPEC","features":[99]},{"name":"class_FILTER_SPEC","features":[99]},{"name":"class_FLOWSPEC","features":[99]},{"name":"class_INTEGRITY","features":[99]},{"name":"class_IS_FLOWSPEC","features":[99]},{"name":"class_MAX","features":[99]},{"name":"class_NULL","features":[99]},{"name":"class_POLICY_DATA","features":[99]},{"name":"class_RSVP_HOP","features":[99]},{"name":"class_SCOPE","features":[99]},{"name":"class_SENDER_TEMPLATE","features":[99]},{"name":"class_SENDER_TSPEC","features":[99]},{"name":"class_SESSION","features":[99]},{"name":"class_SESSION_GROUP","features":[99]},{"name":"class_STYLE","features":[99]},{"name":"class_TIME_VALUES","features":[99]},{"name":"ctype_ADSPEC_INTSERV","features":[99]},{"name":"ctype_ERROR_SPEC_ipv4","features":[99]},{"name":"ctype_FILTER_SPEC_ipv4","features":[99]},{"name":"ctype_FILTER_SPEC_ipv4GPI","features":[99]},{"name":"ctype_FLOWSPEC_Intserv0","features":[99]},{"name":"ctype_POLICY_DATA","features":[99]},{"name":"ctype_RSVP_HOP_ipv4","features":[99]},{"name":"ctype_SCOPE_list_ipv4","features":[99]},{"name":"ctype_SENDER_TEMPLATE_ipv4","features":[99]},{"name":"ctype_SENDER_TEMPLATE_ipv4GPI","features":[99]},{"name":"ctype_SENDER_TSPEC","features":[99]},{"name":"ctype_SESSION_ipv4","features":[99]},{"name":"ctype_SESSION_ipv4GPI","features":[99]},{"name":"ctype_STYLE","features":[99]},{"name":"int_serv_wkp","features":[99]},{"name":"ioctl_code","features":[99]},{"name":"mCOMPANY","features":[99]},{"name":"mIOC_IN","features":[99]},{"name":"mIOC_OUT","features":[99]},{"name":"mIOC_VENDOR","features":[99]}],"459":[{"name":"ALLOW_NO_AUTH","features":[100]},{"name":"ALL_SOURCES","features":[100]},{"name":"ANY_SOURCE","features":[100]},{"name":"ATADDRESSLEN","features":[100]},{"name":"AUTH_VALIDATION_EX","features":[3,100]},{"name":"DO_NOT_ALLOW_NO_AUTH","features":[100]},{"name":"ERROR_ACCESSING_TCPCFGDLL","features":[100]},{"name":"ERROR_ACCT_DISABLED","features":[100]},{"name":"ERROR_ACCT_EXPIRED","features":[100]},{"name":"ERROR_ACTION_REQUIRED","features":[100]},{"name":"ERROR_ALLOCATING_MEMORY","features":[100]},{"name":"ERROR_ALREADY_DISCONNECTING","features":[100]},{"name":"ERROR_ASYNC_REQUEST_PENDING","features":[100]},{"name":"ERROR_AUTHENTICATION_FAILURE","features":[100]},{"name":"ERROR_AUTH_INTERNAL","features":[100]},{"name":"ERROR_AUTOMATIC_VPN_FAILED","features":[100]},{"name":"ERROR_BAD_ADDRESS_SPECIFIED","features":[100]},{"name":"ERROR_BAD_CALLBACK_NUMBER","features":[100]},{"name":"ERROR_BAD_PHONE_NUMBER","features":[100]},{"name":"ERROR_BAD_STRING","features":[100]},{"name":"ERROR_BAD_USAGE_IN_INI_FILE","features":[100]},{"name":"ERROR_BIPLEX_PORT_NOT_AVAILABLE","features":[100]},{"name":"ERROR_BLOCKED","features":[100]},{"name":"ERROR_BROADBAND_ACTIVE","features":[100]},{"name":"ERROR_BROADBAND_NO_NIC","features":[100]},{"name":"ERROR_BROADBAND_TIMEOUT","features":[100]},{"name":"ERROR_BUFFER_INVALID","features":[100]},{"name":"ERROR_BUFFER_TOO_SMALL","features":[100]},{"name":"ERROR_BUNDLE_NOT_FOUND","features":[100]},{"name":"ERROR_CANNOT_DELETE","features":[100]},{"name":"ERROR_CANNOT_DO_CUSTOMDIAL","features":[100]},{"name":"ERROR_CANNOT_FIND_PHONEBOOK_ENTRY","features":[100]},{"name":"ERROR_CANNOT_GET_LANA","features":[100]},{"name":"ERROR_CANNOT_INITIATE_MOBIKE_UPDATE","features":[100]},{"name":"ERROR_CANNOT_LOAD_PHONEBOOK","features":[100]},{"name":"ERROR_CANNOT_LOAD_STRING","features":[100]},{"name":"ERROR_CANNOT_OPEN_PHONEBOOK","features":[100]},{"name":"ERROR_CANNOT_PROJECT_CLIENT","features":[100]},{"name":"ERROR_CANNOT_SET_PORT_INFO","features":[100]},{"name":"ERROR_CANNOT_SHARE_CONNECTION","features":[100]},{"name":"ERROR_CANNOT_USE_LOGON_CREDENTIALS","features":[100]},{"name":"ERROR_CANNOT_WRITE_PHONEBOOK","features":[100]},{"name":"ERROR_CERT_FOR_ENCRYPTION_NOT_FOUND","features":[100]},{"name":"ERROR_CHANGING_PASSWORD","features":[100]},{"name":"ERROR_CMD_TOO_LONG","features":[100]},{"name":"ERROR_CONGESTION","features":[100]},{"name":"ERROR_CONNECTING_DEVICE_NOT_FOUND","features":[100]},{"name":"ERROR_CONNECTION_ALREADY_SHARED","features":[100]},{"name":"ERROR_CONNECTION_REJECT","features":[100]},{"name":"ERROR_CORRUPT_PHONEBOOK","features":[100]},{"name":"ERROR_DCB_NOT_FOUND","features":[100]},{"name":"ERROR_DEFAULTOFF_MACRO_NOT_FOUND","features":[100]},{"name":"ERROR_DEVICENAME_NOT_FOUND","features":[100]},{"name":"ERROR_DEVICENAME_TOO_LONG","features":[100]},{"name":"ERROR_DEVICETYPE_DOES_NOT_EXIST","features":[100]},{"name":"ERROR_DEVICE_COMPLIANCE","features":[100]},{"name":"ERROR_DEVICE_DOES_NOT_EXIST","features":[100]},{"name":"ERROR_DEVICE_NOT_READY","features":[100]},{"name":"ERROR_DIAL_ALREADY_IN_PROGRESS","features":[100]},{"name":"ERROR_DISCONNECTION","features":[100]},{"name":"ERROR_DNSNAME_NOT_RESOLVABLE","features":[100]},{"name":"ERROR_DONOTDISTURB","features":[100]},{"name":"ERROR_EAPTLS_CACHE_CREDENTIALS_INVALID","features":[100]},{"name":"ERROR_EAPTLS_PASSWD_INVALID","features":[100]},{"name":"ERROR_EAPTLS_SCARD_CACHE_CREDENTIALS_INVALID","features":[100]},{"name":"ERROR_EAP_METHOD_DOES_NOT_SUPPORT_SSO","features":[100]},{"name":"ERROR_EAP_METHOD_NOT_INSTALLED","features":[100]},{"name":"ERROR_EAP_METHOD_OPERATION_NOT_SUPPORTED","features":[100]},{"name":"ERROR_EAP_SERVER_CERT_EXPIRED","features":[100]},{"name":"ERROR_EAP_SERVER_CERT_INVALID","features":[100]},{"name":"ERROR_EAP_SERVER_CERT_OTHER_ERROR","features":[100]},{"name":"ERROR_EAP_SERVER_CERT_REVOKED","features":[100]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_INVALID","features":[100]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NAME_REQUIRED","features":[100]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NOT_FOUND","features":[100]},{"name":"ERROR_EAP_USER_CERT_EXPIRED","features":[100]},{"name":"ERROR_EAP_USER_CERT_INVALID","features":[100]},{"name":"ERROR_EAP_USER_CERT_OTHER_ERROR","features":[100]},{"name":"ERROR_EAP_USER_CERT_REVOKED","features":[100]},{"name":"ERROR_EAP_USER_ROOT_CERT_EXPIRED","features":[100]},{"name":"ERROR_EAP_USER_ROOT_CERT_INVALID","features":[100]},{"name":"ERROR_EAP_USER_ROOT_CERT_NOT_FOUND","features":[100]},{"name":"ERROR_EMPTY_INI_FILE","features":[100]},{"name":"ERROR_EVENT_INVALID","features":[100]},{"name":"ERROR_FAILED_CP_REQUIRED","features":[100]},{"name":"ERROR_FAILED_TO_ENCRYPT","features":[100]},{"name":"ERROR_FAST_USER_SWITCH","features":[100]},{"name":"ERROR_FEATURE_DEPRECATED","features":[100]},{"name":"ERROR_FILE_COULD_NOT_BE_OPENED","features":[100]},{"name":"ERROR_FROM_DEVICE","features":[100]},{"name":"ERROR_HANGUP_FAILED","features":[100]},{"name":"ERROR_HARDWARE_FAILURE","features":[100]},{"name":"ERROR_HIBERNATION","features":[100]},{"name":"ERROR_IDLE_TIMEOUT","features":[100]},{"name":"ERROR_IKEV2_PSK_INTERFACE_ALREADY_EXISTS","features":[100]},{"name":"ERROR_INCOMPATIBLE","features":[100]},{"name":"ERROR_INTERACTIVE_MODE","features":[100]},{"name":"ERROR_INTERNAL_ADDRESS_FAILURE","features":[100]},{"name":"ERROR_INVALID_AUTH_STATE","features":[100]},{"name":"ERROR_INVALID_CALLBACK_NUMBER","features":[100]},{"name":"ERROR_INVALID_COMPRESSION_SPECIFIED","features":[100]},{"name":"ERROR_INVALID_DESTINATION_IP","features":[100]},{"name":"ERROR_INVALID_FUNCTION_FOR_ENTRY","features":[100]},{"name":"ERROR_INVALID_INTERFACE_CONFIG","features":[100]},{"name":"ERROR_INVALID_MSCHAPV2_CONFIG","features":[100]},{"name":"ERROR_INVALID_PEAP_COOKIE_ATTRIBUTES","features":[100]},{"name":"ERROR_INVALID_PEAP_COOKIE_CONFIG","features":[100]},{"name":"ERROR_INVALID_PEAP_COOKIE_USER","features":[100]},{"name":"ERROR_INVALID_PORT_HANDLE","features":[100]},{"name":"ERROR_INVALID_PREFERENCES","features":[100]},{"name":"ERROR_INVALID_SERVER_CERT","features":[100]},{"name":"ERROR_INVALID_SIZE","features":[100]},{"name":"ERROR_INVALID_SMM","features":[100]},{"name":"ERROR_INVALID_TUNNELID","features":[100]},{"name":"ERROR_INVALID_VPNSTRATEGY","features":[100]},{"name":"ERROR_IN_COMMAND","features":[100]},{"name":"ERROR_IPSEC_SERVICE_STOPPED","features":[100]},{"name":"ERROR_IPXCP_DIALOUT_ALREADY_ACTIVE","features":[100]},{"name":"ERROR_IPXCP_NET_NUMBER_CONFLICT","features":[100]},{"name":"ERROR_IPXCP_NO_DIALIN_CONFIGURED","features":[100]},{"name":"ERROR_IPXCP_NO_DIALOUT_CONFIGURED","features":[100]},{"name":"ERROR_IP_CONFIGURATION","features":[100]},{"name":"ERROR_KEY_NOT_FOUND","features":[100]},{"name":"ERROR_LINE_BUSY","features":[100]},{"name":"ERROR_LINK_FAILURE","features":[100]},{"name":"ERROR_MACRO_NOT_DEFINED","features":[100]},{"name":"ERROR_MACRO_NOT_FOUND","features":[100]},{"name":"ERROR_MESSAGE_MACRO_NOT_FOUND","features":[100]},{"name":"ERROR_MOBIKE_DISABLED","features":[100]},{"name":"ERROR_NAME_EXISTS_ON_NET","features":[100]},{"name":"ERROR_NETBIOS_ERROR","features":[100]},{"name":"ERROR_NOT_BINARY_MACRO","features":[100]},{"name":"ERROR_NOT_NAP_CAPABLE","features":[100]},{"name":"ERROR_NO_ACTIVE_ISDN_LINES","features":[100]},{"name":"ERROR_NO_ANSWER","features":[100]},{"name":"ERROR_NO_CARRIER","features":[100]},{"name":"ERROR_NO_CERTIFICATE","features":[100]},{"name":"ERROR_NO_COMMAND_FOUND","features":[100]},{"name":"ERROR_NO_CONNECTION","features":[100]},{"name":"ERROR_NO_DIALIN_PERMISSION","features":[100]},{"name":"ERROR_NO_DIALTONE","features":[100]},{"name":"ERROR_NO_DIFF_USER_AT_LOGON","features":[100]},{"name":"ERROR_NO_EAPTLS_CERTIFICATE","features":[100]},{"name":"ERROR_NO_ENDPOINTS","features":[100]},{"name":"ERROR_NO_IP_ADDRESSES","features":[100]},{"name":"ERROR_NO_IP_RAS_ADAPTER","features":[100]},{"name":"ERROR_NO_ISDN_CHANNELS_AVAILABLE","features":[100]},{"name":"ERROR_NO_LOCAL_ENCRYPTION","features":[100]},{"name":"ERROR_NO_MAC_FOR_PORT","features":[100]},{"name":"ERROR_NO_REG_CERT_AT_LOGON","features":[100]},{"name":"ERROR_NO_REMOTE_ENCRYPTION","features":[100]},{"name":"ERROR_NO_RESPONSES","features":[100]},{"name":"ERROR_NO_SMART_CARD_READER","features":[100]},{"name":"ERROR_NUMBERCHANGED","features":[100]},{"name":"ERROR_OAKLEY_ATTRIB_FAIL","features":[100]},{"name":"ERROR_OAKLEY_AUTH_FAIL","features":[100]},{"name":"ERROR_OAKLEY_ERROR","features":[100]},{"name":"ERROR_OAKLEY_GENERAL_PROCESSING","features":[100]},{"name":"ERROR_OAKLEY_NO_CERT","features":[100]},{"name":"ERROR_OAKLEY_NO_PEER_CERT","features":[100]},{"name":"ERROR_OAKLEY_NO_POLICY","features":[100]},{"name":"ERROR_OAKLEY_TIMED_OUT","features":[100]},{"name":"ERROR_OUTOFORDER","features":[100]},{"name":"ERROR_OUT_OF_BUFFERS","features":[100]},{"name":"ERROR_OVERRUN","features":[100]},{"name":"ERROR_PARTIAL_RESPONSE_LOOPING","features":[100]},{"name":"ERROR_PASSWD_EXPIRED","features":[100]},{"name":"ERROR_PEAP_CRYPTOBINDING_INVALID","features":[100]},{"name":"ERROR_PEAP_CRYPTOBINDING_NOTRECEIVED","features":[100]},{"name":"ERROR_PEAP_IDENTITY_MISMATCH","features":[100]},{"name":"ERROR_PEAP_SERVER_REJECTED_CLIENT_TLV","features":[100]},{"name":"ERROR_PHONE_NUMBER_TOO_LONG","features":[100]},{"name":"ERROR_PLUGIN_NOT_INSTALLED","features":[100]},{"name":"ERROR_PORT_ALREADY_OPEN","features":[100]},{"name":"ERROR_PORT_DISCONNECTED","features":[100]},{"name":"ERROR_PORT_NOT_AVAILABLE","features":[100]},{"name":"ERROR_PORT_NOT_CONFIGURED","features":[100]},{"name":"ERROR_PORT_NOT_CONNECTED","features":[100]},{"name":"ERROR_PORT_NOT_FOUND","features":[100]},{"name":"ERROR_PORT_NOT_OPEN","features":[100]},{"name":"ERROR_PORT_OR_DEVICE","features":[100]},{"name":"ERROR_PPP_CP_REJECTED","features":[100]},{"name":"ERROR_PPP_INVALID_PACKET","features":[100]},{"name":"ERROR_PPP_LCP_TERMINATED","features":[100]},{"name":"ERROR_PPP_LOOPBACK_DETECTED","features":[100]},{"name":"ERROR_PPP_NCP_TERMINATED","features":[100]},{"name":"ERROR_PPP_NOT_CONVERGING","features":[100]},{"name":"ERROR_PPP_NO_ADDRESS_ASSIGNED","features":[100]},{"name":"ERROR_PPP_NO_PROTOCOLS_CONFIGURED","features":[100]},{"name":"ERROR_PPP_NO_RESPONSE","features":[100]},{"name":"ERROR_PPP_REMOTE_TERMINATED","features":[100]},{"name":"ERROR_PPP_REQUIRED_ADDRESS_REJECTED","features":[100]},{"name":"ERROR_PPP_TIMEOUT","features":[100]},{"name":"ERROR_PROJECTION_NOT_COMPLETE","features":[100]},{"name":"ERROR_PROTOCOL_ENGINE_DISABLED","features":[100]},{"name":"ERROR_PROTOCOL_NOT_CONFIGURED","features":[100]},{"name":"ERROR_RASAUTO_CANNOT_INITIALIZE","features":[100]},{"name":"ERROR_RASMAN_CANNOT_INITIALIZE","features":[100]},{"name":"ERROR_RASMAN_SERVICE_STOPPED","features":[100]},{"name":"ERROR_RASQEC_CONN_DOESNOTEXIST","features":[100]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_CONNECTED","features":[100]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_ENABLED","features":[100]},{"name":"ERROR_RASQEC_RESOURCE_CREATION_FAILED","features":[100]},{"name":"ERROR_RASQEC_TIMEOUT","features":[100]},{"name":"ERROR_READING_DEFAULTOFF","features":[100]},{"name":"ERROR_READING_DEVICENAME","features":[100]},{"name":"ERROR_READING_DEVICETYPE","features":[100]},{"name":"ERROR_READING_INI_FILE","features":[100]},{"name":"ERROR_READING_MAXCARRIERBPS","features":[100]},{"name":"ERROR_READING_MAXCONNECTBPS","features":[100]},{"name":"ERROR_READING_SCARD","features":[100]},{"name":"ERROR_READING_SECTIONNAME","features":[100]},{"name":"ERROR_READING_USAGE","features":[100]},{"name":"ERROR_RECV_BUF_FULL","features":[100]},{"name":"ERROR_REMOTE_DISCONNECTION","features":[100]},{"name":"ERROR_REMOTE_REQUIRES_ENCRYPTION","features":[100]},{"name":"ERROR_REQUEST_TIMEOUT","features":[100]},{"name":"ERROR_RESTRICTED_LOGON_HOURS","features":[100]},{"name":"ERROR_ROUTE_NOT_ALLOCATED","features":[100]},{"name":"ERROR_ROUTE_NOT_AVAILABLE","features":[100]},{"name":"ERROR_SCRIPT_SYNTAX","features":[100]},{"name":"ERROR_SERVER_GENERAL_NET_FAILURE","features":[100]},{"name":"ERROR_SERVER_NOT_RESPONDING","features":[100]},{"name":"ERROR_SERVER_OUT_OF_RESOURCES","features":[100]},{"name":"ERROR_SERVER_POLICY","features":[100]},{"name":"ERROR_SHARE_CONNECTION_FAILED","features":[100]},{"name":"ERROR_SHARING_ADDRESS_EXISTS","features":[100]},{"name":"ERROR_SHARING_CHANGE_FAILED","features":[100]},{"name":"ERROR_SHARING_HOST_ADDRESS_CONFLICT","features":[100]},{"name":"ERROR_SHARING_MULTIPLE_ADDRESSES","features":[100]},{"name":"ERROR_SHARING_NO_PRIVATE_LAN","features":[100]},{"name":"ERROR_SHARING_PRIVATE_INSTALL","features":[100]},{"name":"ERROR_SHARING_ROUTER_INSTALL","features":[100]},{"name":"ERROR_SHARING_RRAS_CONFLICT","features":[100]},{"name":"ERROR_SLIP_REQUIRES_IP","features":[100]},{"name":"ERROR_SMART_CARD_REQUIRED","features":[100]},{"name":"ERROR_SMM_TIMEOUT","features":[100]},{"name":"ERROR_SMM_UNINITIALIZED","features":[100]},{"name":"ERROR_SSO_CERT_MISSING","features":[100]},{"name":"ERROR_SSTP_COOKIE_SET_FAILURE","features":[100]},{"name":"ERROR_STATE_MACHINES_ALREADY_STARTED","features":[100]},{"name":"ERROR_STATE_MACHINES_NOT_STARTED","features":[100]},{"name":"ERROR_SYSTEM_SUSPENDED","features":[100]},{"name":"ERROR_TAPI_CONFIGURATION","features":[100]},{"name":"ERROR_TEMPFAILURE","features":[100]},{"name":"ERROR_TOO_MANY_LINE_ERRORS","features":[100]},{"name":"ERROR_TS_UNACCEPTABLE","features":[100]},{"name":"ERROR_UNABLE_TO_AUTHENTICATE_SERVER","features":[100]},{"name":"ERROR_UNEXPECTED_RESPONSE","features":[100]},{"name":"ERROR_UNKNOWN","features":[100]},{"name":"ERROR_UNKNOWN_DEVICE_TYPE","features":[100]},{"name":"ERROR_UNKNOWN_FRAMED_PROTOCOL","features":[100]},{"name":"ERROR_UNKNOWN_RESPONSE_KEY","features":[100]},{"name":"ERROR_UNKNOWN_SERVICE_TYPE","features":[100]},{"name":"ERROR_UNRECOGNIZED_RESPONSE","features":[100]},{"name":"ERROR_UNSUPPORTED_BPS","features":[100]},{"name":"ERROR_UPDATECONNECTION_REQUEST_IN_PROCESS","features":[100]},{"name":"ERROR_USER_DISCONNECTION","features":[100]},{"name":"ERROR_USER_LOGOFF","features":[100]},{"name":"ERROR_VALIDATING_SERVER_CERT","features":[100]},{"name":"ERROR_VOICE_ANSWER","features":[100]},{"name":"ERROR_VPN_BAD_CERT","features":[100]},{"name":"ERROR_VPN_BAD_PSK","features":[100]},{"name":"ERROR_VPN_DISCONNECT","features":[100]},{"name":"ERROR_VPN_GRE_BLOCKED","features":[100]},{"name":"ERROR_VPN_PLUGIN_GENERIC","features":[100]},{"name":"ERROR_VPN_REFUSED","features":[100]},{"name":"ERROR_VPN_TIMEOUT","features":[100]},{"name":"ERROR_WRITING_DEFAULTOFF","features":[100]},{"name":"ERROR_WRITING_DEVICENAME","features":[100]},{"name":"ERROR_WRITING_DEVICETYPE","features":[100]},{"name":"ERROR_WRITING_INITBPS","features":[100]},{"name":"ERROR_WRITING_MAXCARRIERBPS","features":[100]},{"name":"ERROR_WRITING_MAXCONNECTBPS","features":[100]},{"name":"ERROR_WRITING_SECTIONNAME","features":[100]},{"name":"ERROR_WRITING_USAGE","features":[100]},{"name":"ERROR_WRONG_DEVICE_ATTACHED","features":[100]},{"name":"ERROR_WRONG_INFO_SPECIFIED","features":[100]},{"name":"ERROR_WRONG_KEY_SPECIFIED","features":[100]},{"name":"ERROR_WRONG_MODULE","features":[100]},{"name":"ERROR_WRONG_TUNNEL_TYPE","features":[100]},{"name":"ERROR_X25_DIAGNOSTIC","features":[100]},{"name":"ET_None","features":[100]},{"name":"ET_Optional","features":[100]},{"name":"ET_Require","features":[100]},{"name":"ET_RequireMax","features":[100]},{"name":"GRE_CONFIG_PARAMS0","features":[100]},{"name":"HRASCONN","features":[100]},{"name":"IKEV2_CONFIG_PARAMS","features":[3,100,70]},{"name":"IKEV2_ID_PAYLOAD_TYPE","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_DN","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_GN","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_FQDN","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_ID_IPV6_ADDR","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_INVALID","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_IPV4_ADDR","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_KEY_ID","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_MAX","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED1","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED2","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED3","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED4","features":[100]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RFC822_ADDR","features":[100]},{"name":"IKEV2_PROJECTION_INFO","features":[100]},{"name":"IKEV2_PROJECTION_INFO2","features":[100]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS2","features":[100,70]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS3","features":[3,100,70]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS4","features":[3,100,70]},{"name":"IPADDRESSLEN","features":[100]},{"name":"IPV6_ADDRESS_LEN_IN_BYTES","features":[100]},{"name":"IPXADDRESSLEN","features":[100]},{"name":"L2TP_CONFIG_PARAMS0","features":[100]},{"name":"L2TP_CONFIG_PARAMS1","features":[100]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS1","features":[100]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS2","features":[100]},{"name":"MAXIPADRESSLEN","features":[100]},{"name":"MAX_SSTP_HASH_SIZE","features":[100]},{"name":"METHOD_BGP4_AS_PATH","features":[100]},{"name":"METHOD_BGP4_NEXTHOP_ATTR","features":[100]},{"name":"METHOD_BGP4_PA_ORIGIN","features":[100]},{"name":"METHOD_BGP4_PEER_ID","features":[100]},{"name":"METHOD_RIP2_NEIGHBOUR_ADDR","features":[100]},{"name":"METHOD_RIP2_OUTBOUND_INTF","features":[100]},{"name":"METHOD_RIP2_ROUTE_TAG","features":[100]},{"name":"METHOD_RIP2_ROUTE_TIMESTAMP","features":[100]},{"name":"METHOD_TYPE_ALL_METHODS","features":[100]},{"name":"MGM_ENUM_TYPES","features":[100]},{"name":"MGM_FORWARD_STATE_FLAG","features":[100]},{"name":"MGM_IF_ENTRY","features":[3,100]},{"name":"MGM_JOIN_STATE_FLAG","features":[100]},{"name":"MGM_MFE_STATS_0","features":[100]},{"name":"MGM_MFE_STATS_1","features":[100]},{"name":"MPRAPI_ADMIN_DLL_CALLBACKS","features":[3,100,17]},{"name":"MPRAPI_ADMIN_DLL_VERSION_1","features":[100]},{"name":"MPRAPI_ADMIN_DLL_VERSION_2","features":[100]},{"name":"MPRAPI_IF_CUSTOM_CONFIG_FOR_IKEV2","features":[100]},{"name":"MPRAPI_IKEV2_AUTH_USING_CERT","features":[100]},{"name":"MPRAPI_IKEV2_AUTH_USING_EAP","features":[100]},{"name":"MPRAPI_IKEV2_PROJECTION_INFO_TYPE","features":[100]},{"name":"MPRAPI_IKEV2_SET_TUNNEL_CONFIG_PARAMS","features":[100]},{"name":"MPRAPI_L2TP_SET_TUNNEL_CONFIG_PARAMS","features":[100]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_1","features":[100]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_2","features":[100]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_3","features":[100]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_1","features":[100]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_2","features":[100]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_3","features":[100]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_4","features":[100]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_5","features":[100]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_1","features":[100]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_2","features":[100]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_3","features":[100]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_4","features":[100]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_5","features":[100]},{"name":"MPRAPI_OBJECT_HEADER","features":[100]},{"name":"MPRAPI_OBJECT_TYPE","features":[100]},{"name":"MPRAPI_OBJECT_TYPE_AUTH_VALIDATION_OBJECT","features":[100]},{"name":"MPRAPI_OBJECT_TYPE_IF_CUSTOM_CONFIG_OBJECT","features":[100]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_OBJECT","features":[100]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_SET_CONFIG_OBJECT","features":[100]},{"name":"MPRAPI_OBJECT_TYPE_RAS_CONNECTION_OBJECT","features":[100]},{"name":"MPRAPI_OBJECT_TYPE_UPDATE_CONNECTION_OBJECT","features":[100]},{"name":"MPRAPI_PPP_PROJECTION_INFO_TYPE","features":[100]},{"name":"MPRAPI_RAS_CONNECTION_OBJECT_REVISION_1","features":[100]},{"name":"MPRAPI_RAS_UPDATE_CONNECTION_OBJECT_REVISION_1","features":[100]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_GRE","features":[100]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_IKEV2","features":[100]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_L2TP","features":[100]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_PPTP","features":[100]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_SSTP","features":[100]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS0","features":[3,100,70]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS1","features":[3,100,70]},{"name":"MPRDM_DialAll","features":[100]},{"name":"MPRDM_DialAsNeeded","features":[100]},{"name":"MPRDM_DialFirst","features":[100]},{"name":"MPRDT_Atm","features":[100]},{"name":"MPRDT_FrameRelay","features":[100]},{"name":"MPRDT_Generic","features":[100]},{"name":"MPRDT_Irda","features":[100]},{"name":"MPRDT_Isdn","features":[100]},{"name":"MPRDT_Modem","features":[100]},{"name":"MPRDT_Pad","features":[100]},{"name":"MPRDT_Parallel","features":[100]},{"name":"MPRDT_SW56","features":[100]},{"name":"MPRDT_Serial","features":[100]},{"name":"MPRDT_Sonet","features":[100]},{"name":"MPRDT_Vpn","features":[100]},{"name":"MPRDT_X25","features":[100]},{"name":"MPRET_Direct","features":[100]},{"name":"MPRET_Phone","features":[100]},{"name":"MPRET_Vpn","features":[100]},{"name":"MPRIDS_Disabled","features":[100]},{"name":"MPRIDS_UseGlobalValue","features":[100]},{"name":"MPRIO_DisableLcpExtensions","features":[100]},{"name":"MPRIO_IpHeaderCompression","features":[100]},{"name":"MPRIO_IpSecPreSharedKey","features":[100]},{"name":"MPRIO_NetworkLogon","features":[100]},{"name":"MPRIO_PromoteAlternates","features":[100]},{"name":"MPRIO_RemoteDefaultGateway","features":[100]},{"name":"MPRIO_RequireCHAP","features":[100]},{"name":"MPRIO_RequireDataEncryption","features":[100]},{"name":"MPRIO_RequireEAP","features":[100]},{"name":"MPRIO_RequireEncryptedPw","features":[100]},{"name":"MPRIO_RequireMachineCertificates","features":[100]},{"name":"MPRIO_RequireMsCHAP","features":[100]},{"name":"MPRIO_RequireMsCHAP2","features":[100]},{"name":"MPRIO_RequireMsEncryptedPw","features":[100]},{"name":"MPRIO_RequirePAP","features":[100]},{"name":"MPRIO_RequireSPAP","features":[100]},{"name":"MPRIO_SecureLocalFiles","features":[100]},{"name":"MPRIO_SharedPhoneNumbers","features":[100]},{"name":"MPRIO_SpecificIpAddr","features":[100]},{"name":"MPRIO_SpecificNameServers","features":[100]},{"name":"MPRIO_SwCompression","features":[100]},{"name":"MPRIO_UsePreSharedKeyForIkev2Initiator","features":[100]},{"name":"MPRIO_UsePreSharedKeyForIkev2Responder","features":[100]},{"name":"MPRNP_Ip","features":[100]},{"name":"MPRNP_Ipv6","features":[100]},{"name":"MPRNP_Ipx","features":[100]},{"name":"MPR_CERT_EKU","features":[3,100]},{"name":"MPR_CREDENTIALSEX_0","features":[100]},{"name":"MPR_CREDENTIALSEX_1","features":[100]},{"name":"MPR_DEVICE_0","features":[100]},{"name":"MPR_DEVICE_1","features":[100]},{"name":"MPR_ENABLE_RAS_ON_DEVICE","features":[100]},{"name":"MPR_ENABLE_ROUTING_ON_DEVICE","features":[100]},{"name":"MPR_ET","features":[100]},{"name":"MPR_ET_None","features":[100]},{"name":"MPR_ET_Optional","features":[100]},{"name":"MPR_ET_Require","features":[100]},{"name":"MPR_ET_RequireMax","features":[100]},{"name":"MPR_FILTER_0","features":[3,100]},{"name":"MPR_IFTRANSPORT_0","features":[3,100]},{"name":"MPR_IF_CUSTOMINFOEX0","features":[100,70]},{"name":"MPR_IF_CUSTOMINFOEX1","features":[100,70]},{"name":"MPR_IF_CUSTOMINFOEX2","features":[100,17,70]},{"name":"MPR_INTERFACE_0","features":[3,100]},{"name":"MPR_INTERFACE_1","features":[3,100]},{"name":"MPR_INTERFACE_2","features":[3,100]},{"name":"MPR_INTERFACE_3","features":[3,100,17]},{"name":"MPR_INTERFACE_ADMIN_DISABLED","features":[100]},{"name":"MPR_INTERFACE_CONNECTION_FAILURE","features":[100]},{"name":"MPR_INTERFACE_DIALOUT_HOURS_RESTRICTION","features":[100]},{"name":"MPR_INTERFACE_DIAL_MODE","features":[100]},{"name":"MPR_INTERFACE_NO_DEVICE","features":[100]},{"name":"MPR_INTERFACE_NO_MEDIA_SENSE","features":[100]},{"name":"MPR_INTERFACE_OUT_OF_RESOURCES","features":[100]},{"name":"MPR_INTERFACE_SERVICE_PAUSED","features":[100]},{"name":"MPR_IPINIP_INTERFACE_0","features":[100]},{"name":"MPR_MaxAreaCode","features":[100]},{"name":"MPR_MaxCallbackNumber","features":[100]},{"name":"MPR_MaxDeviceName","features":[100]},{"name":"MPR_MaxDeviceType","features":[100]},{"name":"MPR_MaxEntryName","features":[100]},{"name":"MPR_MaxFacilities","features":[100]},{"name":"MPR_MaxIpAddress","features":[100]},{"name":"MPR_MaxIpxAddress","features":[100]},{"name":"MPR_MaxPadType","features":[100]},{"name":"MPR_MaxPhoneNumber","features":[100]},{"name":"MPR_MaxUserData","features":[100]},{"name":"MPR_MaxX25Address","features":[100]},{"name":"MPR_SERVER_0","features":[3,100]},{"name":"MPR_SERVER_1","features":[100]},{"name":"MPR_SERVER_2","features":[100]},{"name":"MPR_SERVER_EX0","features":[3,100,70]},{"name":"MPR_SERVER_EX1","features":[3,100,70]},{"name":"MPR_SERVER_SET_CONFIG_EX0","features":[3,100,70]},{"name":"MPR_SERVER_SET_CONFIG_EX1","features":[3,100,70]},{"name":"MPR_TRANSPORT_0","features":[3,100]},{"name":"MPR_VPN_TRAFFIC_SELECTOR","features":[100,17]},{"name":"MPR_VPN_TRAFFIC_SELECTORS","features":[100,17]},{"name":"MPR_VPN_TS_IPv4_ADDR_RANGE","features":[100]},{"name":"MPR_VPN_TS_IPv6_ADDR_RANGE","features":[100]},{"name":"MPR_VPN_TS_TYPE","features":[100]},{"name":"MPR_VS","features":[100]},{"name":"MPR_VS_Default","features":[100]},{"name":"MPR_VS_Ikev2First","features":[100]},{"name":"MPR_VS_Ikev2Only","features":[100]},{"name":"MPR_VS_L2tpFirst","features":[100]},{"name":"MPR_VS_L2tpOnly","features":[100]},{"name":"MPR_VS_PptpFirst","features":[100]},{"name":"MPR_VS_PptpOnly","features":[100]},{"name":"MgmAddGroupMembershipEntry","features":[3,100]},{"name":"MgmDeRegisterMProtocol","features":[3,100]},{"name":"MgmDeleteGroupMembershipEntry","features":[3,100]},{"name":"MgmGetFirstMfe","features":[100]},{"name":"MgmGetFirstMfeStats","features":[100]},{"name":"MgmGetMfe","features":[92,100]},{"name":"MgmGetMfeStats","features":[92,100]},{"name":"MgmGetNextMfe","features":[92,100]},{"name":"MgmGetNextMfeStats","features":[92,100]},{"name":"MgmGetProtocolOnInterface","features":[100]},{"name":"MgmGroupEnumerationEnd","features":[3,100]},{"name":"MgmGroupEnumerationGetNext","features":[3,100]},{"name":"MgmGroupEnumerationStart","features":[3,100]},{"name":"MgmRegisterMProtocol","features":[3,100]},{"name":"MgmReleaseInterfaceOwnership","features":[3,100]},{"name":"MgmTakeInterfaceOwnership","features":[3,100]},{"name":"MprAdminBufferFree","features":[100]},{"name":"MprAdminConnectionClearStats","features":[3,100]},{"name":"MprAdminConnectionEnum","features":[100]},{"name":"MprAdminConnectionEnumEx","features":[3,100]},{"name":"MprAdminConnectionGetInfo","features":[3,100]},{"name":"MprAdminConnectionGetInfoEx","features":[3,100]},{"name":"MprAdminConnectionRemoveQuarantine","features":[3,100]},{"name":"MprAdminDeregisterConnectionNotification","features":[3,100]},{"name":"MprAdminDeviceEnum","features":[100]},{"name":"MprAdminEstablishDomainRasServer","features":[3,100]},{"name":"MprAdminGetErrorString","features":[100]},{"name":"MprAdminGetPDCServer","features":[100]},{"name":"MprAdminInterfaceConnect","features":[3,100]},{"name":"MprAdminInterfaceCreate","features":[3,100]},{"name":"MprAdminInterfaceDelete","features":[3,100]},{"name":"MprAdminInterfaceDeviceGetInfo","features":[3,100]},{"name":"MprAdminInterfaceDeviceSetInfo","features":[3,100]},{"name":"MprAdminInterfaceDisconnect","features":[3,100]},{"name":"MprAdminInterfaceEnum","features":[100]},{"name":"MprAdminInterfaceGetCredentials","features":[100]},{"name":"MprAdminInterfaceGetCredentialsEx","features":[3,100]},{"name":"MprAdminInterfaceGetCustomInfoEx","features":[3,100,17,70]},{"name":"MprAdminInterfaceGetHandle","features":[3,100]},{"name":"MprAdminInterfaceGetInfo","features":[3,100]},{"name":"MprAdminInterfaceQueryUpdateResult","features":[3,100]},{"name":"MprAdminInterfaceSetCredentials","features":[100]},{"name":"MprAdminInterfaceSetCredentialsEx","features":[3,100]},{"name":"MprAdminInterfaceSetCustomInfoEx","features":[3,100,17,70]},{"name":"MprAdminInterfaceSetInfo","features":[3,100]},{"name":"MprAdminInterfaceTransportAdd","features":[3,100]},{"name":"MprAdminInterfaceTransportGetInfo","features":[3,100]},{"name":"MprAdminInterfaceTransportRemove","features":[3,100]},{"name":"MprAdminInterfaceTransportSetInfo","features":[3,100]},{"name":"MprAdminInterfaceUpdatePhonebookInfo","features":[3,100]},{"name":"MprAdminInterfaceUpdateRoutes","features":[3,100]},{"name":"MprAdminIsDomainRasServer","features":[3,100]},{"name":"MprAdminIsServiceInitialized","features":[3,100]},{"name":"MprAdminIsServiceRunning","features":[3,100]},{"name":"MprAdminMIBBufferFree","features":[100]},{"name":"MprAdminMIBEntryCreate","features":[100]},{"name":"MprAdminMIBEntryDelete","features":[100]},{"name":"MprAdminMIBEntryGet","features":[100]},{"name":"MprAdminMIBEntryGetFirst","features":[100]},{"name":"MprAdminMIBEntryGetNext","features":[100]},{"name":"MprAdminMIBEntrySet","features":[100]},{"name":"MprAdminMIBServerConnect","features":[100]},{"name":"MprAdminMIBServerDisconnect","features":[100]},{"name":"MprAdminPortClearStats","features":[3,100]},{"name":"MprAdminPortDisconnect","features":[3,100]},{"name":"MprAdminPortEnum","features":[3,100]},{"name":"MprAdminPortGetInfo","features":[3,100]},{"name":"MprAdminPortReset","features":[3,100]},{"name":"MprAdminRegisterConnectionNotification","features":[3,100]},{"name":"MprAdminSendUserMessage","features":[3,100]},{"name":"MprAdminServerConnect","features":[100]},{"name":"MprAdminServerDisconnect","features":[100]},{"name":"MprAdminServerGetCredentials","features":[100]},{"name":"MprAdminServerGetInfo","features":[100]},{"name":"MprAdminServerGetInfoEx","features":[3,100,70]},{"name":"MprAdminServerSetCredentials","features":[100]},{"name":"MprAdminServerSetInfo","features":[100]},{"name":"MprAdminServerSetInfoEx","features":[3,100,70]},{"name":"MprAdminTransportCreate","features":[100]},{"name":"MprAdminTransportGetInfo","features":[100]},{"name":"MprAdminTransportSetInfo","features":[100]},{"name":"MprAdminUpdateConnection","features":[3,100]},{"name":"MprAdminUserGetInfo","features":[100]},{"name":"MprAdminUserSetInfo","features":[100]},{"name":"MprConfigBufferFree","features":[100]},{"name":"MprConfigFilterGetInfo","features":[3,100]},{"name":"MprConfigFilterSetInfo","features":[3,100]},{"name":"MprConfigGetFriendlyName","features":[3,100]},{"name":"MprConfigGetGuidName","features":[3,100]},{"name":"MprConfigInterfaceCreate","features":[3,100]},{"name":"MprConfigInterfaceDelete","features":[3,100]},{"name":"MprConfigInterfaceEnum","features":[3,100]},{"name":"MprConfigInterfaceGetCustomInfoEx","features":[3,100,17,70]},{"name":"MprConfigInterfaceGetHandle","features":[3,100]},{"name":"MprConfigInterfaceGetInfo","features":[3,100]},{"name":"MprConfigInterfaceSetCustomInfoEx","features":[3,100,17,70]},{"name":"MprConfigInterfaceSetInfo","features":[3,100]},{"name":"MprConfigInterfaceTransportAdd","features":[3,100]},{"name":"MprConfigInterfaceTransportEnum","features":[3,100]},{"name":"MprConfigInterfaceTransportGetHandle","features":[3,100]},{"name":"MprConfigInterfaceTransportGetInfo","features":[3,100]},{"name":"MprConfigInterfaceTransportRemove","features":[3,100]},{"name":"MprConfigInterfaceTransportSetInfo","features":[3,100]},{"name":"MprConfigServerBackup","features":[3,100]},{"name":"MprConfigServerConnect","features":[3,100]},{"name":"MprConfigServerDisconnect","features":[3,100]},{"name":"MprConfigServerGetInfo","features":[3,100]},{"name":"MprConfigServerGetInfoEx","features":[3,100,70]},{"name":"MprConfigServerInstall","features":[100]},{"name":"MprConfigServerRefresh","features":[3,100]},{"name":"MprConfigServerRestore","features":[3,100]},{"name":"MprConfigServerSetInfo","features":[100]},{"name":"MprConfigServerSetInfoEx","features":[3,100,70]},{"name":"MprConfigTransportCreate","features":[3,100]},{"name":"MprConfigTransportDelete","features":[3,100]},{"name":"MprConfigTransportEnum","features":[3,100]},{"name":"MprConfigTransportGetHandle","features":[3,100]},{"name":"MprConfigTransportGetInfo","features":[3,100]},{"name":"MprConfigTransportSetInfo","features":[3,100]},{"name":"MprInfoBlockAdd","features":[100]},{"name":"MprInfoBlockFind","features":[100]},{"name":"MprInfoBlockQuerySize","features":[100]},{"name":"MprInfoBlockRemove","features":[100]},{"name":"MprInfoBlockSet","features":[100]},{"name":"MprInfoCreate","features":[100]},{"name":"MprInfoDelete","features":[100]},{"name":"MprInfoDuplicate","features":[100]},{"name":"MprInfoRemoveAll","features":[100]},{"name":"ORASADFUNC","features":[3,100]},{"name":"PENDING","features":[100]},{"name":"PFNRASFREEBUFFER","features":[100]},{"name":"PFNRASGETBUFFER","features":[100]},{"name":"PFNRASRECEIVEBUFFER","features":[3,100]},{"name":"PFNRASRETRIEVEBUFFER","features":[3,100]},{"name":"PFNRASSENDBUFFER","features":[3,100]},{"name":"PFNRASSETCOMMSETTINGS","features":[3,100]},{"name":"PID_ATALK","features":[100]},{"name":"PID_IP","features":[100]},{"name":"PID_IPV6","features":[100]},{"name":"PID_IPX","features":[100]},{"name":"PID_NBF","features":[100]},{"name":"PMGM_CREATION_ALERT_CALLBACK","features":[3,100]},{"name":"PMGM_DISABLE_IGMP_CALLBACK","features":[100]},{"name":"PMGM_ENABLE_IGMP_CALLBACK","features":[100]},{"name":"PMGM_JOIN_ALERT_CALLBACK","features":[3,100]},{"name":"PMGM_LOCAL_JOIN_CALLBACK","features":[100]},{"name":"PMGM_LOCAL_LEAVE_CALLBACK","features":[100]},{"name":"PMGM_PRUNE_ALERT_CALLBACK","features":[3,100]},{"name":"PMGM_RPF_CALLBACK","features":[100]},{"name":"PMGM_WRONG_IF_CALLBACK","features":[100]},{"name":"PMPRADMINACCEPTNEWCONNECTION","features":[3,100]},{"name":"PMPRADMINACCEPTNEWCONNECTION2","features":[3,100]},{"name":"PMPRADMINACCEPTNEWCONNECTION3","features":[3,100]},{"name":"PMPRADMINACCEPTNEWCONNECTIONEX","features":[3,100]},{"name":"PMPRADMINACCEPTNEWLINK","features":[3,100]},{"name":"PMPRADMINACCEPTREAUTHENTICATION","features":[3,100]},{"name":"PMPRADMINACCEPTREAUTHENTICATIONEX","features":[3,100]},{"name":"PMPRADMINACCEPTTUNNELENDPOINTCHANGEEX","features":[3,100]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION","features":[3,100]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION2","features":[3,100]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION3","features":[3,100]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATIONEX","features":[3,100]},{"name":"PMPRADMINGETIPADDRESSFORUSER","features":[3,100]},{"name":"PMPRADMINGETIPV6ADDRESSFORUSER","features":[3,100,17]},{"name":"PMPRADMINLINKHANGUPNOTIFICATION","features":[3,100]},{"name":"PMPRADMINRASVALIDATEPREAUTHENTICATEDCONNECTIONEX","features":[3,100]},{"name":"PMPRADMINRELEASEIPADRESS","features":[100]},{"name":"PMPRADMINRELEASEIPV6ADDRESSFORUSER","features":[100,17]},{"name":"PMPRADMINTERMINATEDLL","features":[100]},{"name":"PPP_ATCP_INFO","features":[100]},{"name":"PPP_CCP_COMPRESSION","features":[100]},{"name":"PPP_CCP_ENCRYPTION128BIT","features":[100]},{"name":"PPP_CCP_ENCRYPTION40BIT","features":[100]},{"name":"PPP_CCP_ENCRYPTION40BITOLD","features":[100]},{"name":"PPP_CCP_ENCRYPTION56BIT","features":[100]},{"name":"PPP_CCP_HISTORYLESS","features":[100]},{"name":"PPP_CCP_INFO","features":[100]},{"name":"PPP_INFO","features":[100]},{"name":"PPP_INFO_2","features":[100]},{"name":"PPP_INFO_3","features":[100]},{"name":"PPP_IPCP_INFO","features":[100]},{"name":"PPP_IPCP_INFO2","features":[100]},{"name":"PPP_IPCP_VJ","features":[100]},{"name":"PPP_IPV6_CP_INFO","features":[100]},{"name":"PPP_IPXCP_INFO","features":[100]},{"name":"PPP_LCP","features":[100]},{"name":"PPP_LCP_3_DES","features":[100]},{"name":"PPP_LCP_ACFC","features":[100]},{"name":"PPP_LCP_AES_128","features":[100]},{"name":"PPP_LCP_AES_192","features":[100]},{"name":"PPP_LCP_AES_256","features":[100]},{"name":"PPP_LCP_CHAP","features":[100]},{"name":"PPP_LCP_CHAP_MD5","features":[100]},{"name":"PPP_LCP_CHAP_MS","features":[100]},{"name":"PPP_LCP_CHAP_MSV2","features":[100]},{"name":"PPP_LCP_DES_56","features":[100]},{"name":"PPP_LCP_EAP","features":[100]},{"name":"PPP_LCP_GCM_AES_128","features":[100]},{"name":"PPP_LCP_GCM_AES_192","features":[100]},{"name":"PPP_LCP_GCM_AES_256","features":[100]},{"name":"PPP_LCP_INFO","features":[100]},{"name":"PPP_LCP_INFO_AUTH_DATA","features":[100]},{"name":"PPP_LCP_MULTILINK_FRAMING","features":[100]},{"name":"PPP_LCP_PAP","features":[100]},{"name":"PPP_LCP_PFC","features":[100]},{"name":"PPP_LCP_SPAP","features":[100]},{"name":"PPP_LCP_SSHF","features":[100]},{"name":"PPP_NBFCP_INFO","features":[100]},{"name":"PPP_PROJECTION_INFO","features":[100]},{"name":"PPP_PROJECTION_INFO2","features":[100]},{"name":"PPTP_CONFIG_PARAMS","features":[100]},{"name":"PROJECTION_INFO","features":[100]},{"name":"PROJECTION_INFO2","features":[100]},{"name":"PROJECTION_INFO_TYPE_IKEv2","features":[100]},{"name":"PROJECTION_INFO_TYPE_PPP","features":[100]},{"name":"RASADFLG_PositionDlg","features":[100]},{"name":"RASADFUNCA","features":[3,100]},{"name":"RASADFUNCW","features":[3,100]},{"name":"RASADPARAMS","features":[3,100]},{"name":"RASADP_ConnectionQueryTimeout","features":[100]},{"name":"RASADP_DisableConnectionQuery","features":[100]},{"name":"RASADP_FailedConnectionTimeout","features":[100]},{"name":"RASADP_LoginSessionDisable","features":[100]},{"name":"RASADP_SavedAddressesLimit","features":[100]},{"name":"RASAMBA","features":[100]},{"name":"RASAMBW","features":[100]},{"name":"RASAPIVERSION","features":[100]},{"name":"RASAPIVERSION_500","features":[100]},{"name":"RASAPIVERSION_501","features":[100]},{"name":"RASAPIVERSION_600","features":[100]},{"name":"RASAPIVERSION_601","features":[100]},{"name":"RASAUTODIALENTRYA","features":[100]},{"name":"RASAUTODIALENTRYW","features":[100]},{"name":"RASBASE","features":[100]},{"name":"RASBASEEND","features":[100]},{"name":"RASCCPCA_MPPC","features":[100]},{"name":"RASCCPCA_STAC","features":[100]},{"name":"RASCCPO_Compression","features":[100]},{"name":"RASCCPO_Encryption128bit","features":[100]},{"name":"RASCCPO_Encryption40bit","features":[100]},{"name":"RASCCPO_Encryption56bit","features":[100]},{"name":"RASCCPO_HistoryLess","features":[100]},{"name":"RASCF_AllUsers","features":[100]},{"name":"RASCF_GlobalCreds","features":[100]},{"name":"RASCF_OwnerKnown","features":[100]},{"name":"RASCF_OwnerMatch","features":[100]},{"name":"RASCM_DDMPreSharedKey","features":[100]},{"name":"RASCM_DefaultCreds","features":[100]},{"name":"RASCM_Domain","features":[100]},{"name":"RASCM_Password","features":[100]},{"name":"RASCM_PreSharedKey","features":[100]},{"name":"RASCM_ServerPreSharedKey","features":[100]},{"name":"RASCM_UserName","features":[100]},{"name":"RASCN_BandwidthAdded","features":[100]},{"name":"RASCN_BandwidthRemoved","features":[100]},{"name":"RASCN_Connection","features":[100]},{"name":"RASCN_Disconnection","features":[100]},{"name":"RASCN_Dormant","features":[100]},{"name":"RASCN_EPDGPacketArrival","features":[100]},{"name":"RASCN_ReConnection","features":[100]},{"name":"RASCOMMSETTINGS","features":[100]},{"name":"RASCONNA","features":[3,100]},{"name":"RASCONNA","features":[3,100]},{"name":"RASCONNSTATE","features":[100]},{"name":"RASCONNSTATUSA","features":[100,17]},{"name":"RASCONNSTATUSW","features":[100,17]},{"name":"RASCONNSUBSTATE","features":[100]},{"name":"RASCONNW","features":[3,100]},{"name":"RASCONNW","features":[3,100]},{"name":"RASCREDENTIALSA","features":[100]},{"name":"RASCREDENTIALSW","features":[100]},{"name":"RASCSS_DONE","features":[100]},{"name":"RASCSS_Dormant","features":[100]},{"name":"RASCSS_None","features":[100]},{"name":"RASCSS_Reconnected","features":[100]},{"name":"RASCSS_Reconnecting","features":[100]},{"name":"RASCS_AllDevicesConnected","features":[100]},{"name":"RASCS_ApplySettings","features":[100]},{"name":"RASCS_AuthAck","features":[100]},{"name":"RASCS_AuthCallback","features":[100]},{"name":"RASCS_AuthChangePassword","features":[100]},{"name":"RASCS_AuthLinkSpeed","features":[100]},{"name":"RASCS_AuthNotify","features":[100]},{"name":"RASCS_AuthProject","features":[100]},{"name":"RASCS_AuthRetry","features":[100]},{"name":"RASCS_Authenticate","features":[100]},{"name":"RASCS_Authenticated","features":[100]},{"name":"RASCS_CallbackComplete","features":[100]},{"name":"RASCS_CallbackSetByCaller","features":[100]},{"name":"RASCS_ConnectDevice","features":[100]},{"name":"RASCS_Connected","features":[100]},{"name":"RASCS_DONE","features":[100]},{"name":"RASCS_DeviceConnected","features":[100]},{"name":"RASCS_Disconnected","features":[100]},{"name":"RASCS_Interactive","features":[100]},{"name":"RASCS_InvokeEapUI","features":[100]},{"name":"RASCS_LogonNetwork","features":[100]},{"name":"RASCS_OpenPort","features":[100]},{"name":"RASCS_PAUSED","features":[100]},{"name":"RASCS_PasswordExpired","features":[100]},{"name":"RASCS_PortOpened","features":[100]},{"name":"RASCS_PrepareForCallback","features":[100]},{"name":"RASCS_Projected","features":[100]},{"name":"RASCS_ReAuthenticate","features":[100]},{"name":"RASCS_RetryAuthentication","features":[100]},{"name":"RASCS_StartAuthentication","features":[100]},{"name":"RASCS_SubEntryConnected","features":[100]},{"name":"RASCS_SubEntryDisconnected","features":[100]},{"name":"RASCS_WaitForCallback","features":[100]},{"name":"RASCS_WaitForModemReset","features":[100]},{"name":"RASCTRYINFO","features":[100]},{"name":"RASCUSTOMSCRIPTEXTENSIONS","features":[3,100]},{"name":"RASDDFLAG_AoacRedial","features":[100]},{"name":"RASDDFLAG_LinkFailure","features":[100]},{"name":"RASDDFLAG_NoPrompt","features":[100]},{"name":"RASDDFLAG_PositionDlg","features":[100]},{"name":"RASDEVINFOA","features":[100]},{"name":"RASDEVINFOW","features":[100]},{"name":"RASDEVSPECIFICINFO","features":[100]},{"name":"RASDEVSPECIFICINFO","features":[100]},{"name":"RASDIALDLG","features":[3,100]},{"name":"RASDIALEVENT","features":[100]},{"name":"RASDIALEXTENSIONS","features":[3,100]},{"name":"RASDIALFUNC","features":[100]},{"name":"RASDIALFUNC1","features":[100]},{"name":"RASDIALFUNC2","features":[100]},{"name":"RASDIALPARAMSA","features":[100]},{"name":"RASDIALPARAMSA","features":[100]},{"name":"RASDIALPARAMSW","features":[100]},{"name":"RASDIALPARAMSW","features":[100]},{"name":"RASDT_Atm","features":[100]},{"name":"RASDT_FrameRelay","features":[100]},{"name":"RASDT_Generic","features":[100]},{"name":"RASDT_Irda","features":[100]},{"name":"RASDT_Isdn","features":[100]},{"name":"RASDT_Modem","features":[100]},{"name":"RASDT_PPPoE","features":[100]},{"name":"RASDT_Pad","features":[100]},{"name":"RASDT_Parallel","features":[100]},{"name":"RASDT_SW56","features":[100]},{"name":"RASDT_Serial","features":[100]},{"name":"RASDT_Sonet","features":[100]},{"name":"RASDT_Vpn","features":[100]},{"name":"RASDT_X25","features":[100]},{"name":"RASEAPF_Logon","features":[100]},{"name":"RASEAPF_NonInteractive","features":[100]},{"name":"RASEAPF_Preview","features":[100]},{"name":"RASEAPINFO","features":[100]},{"name":"RASEAPUSERIDENTITYA","features":[100]},{"name":"RASEAPUSERIDENTITYW","features":[100]},{"name":"RASEDFLAG_CloneEntry","features":[100]},{"name":"RASEDFLAG_IncomingConnection","features":[100]},{"name":"RASEDFLAG_InternetEntry","features":[100]},{"name":"RASEDFLAG_NAT","features":[100]},{"name":"RASEDFLAG_NewBroadbandEntry","features":[100]},{"name":"RASEDFLAG_NewDirectEntry","features":[100]},{"name":"RASEDFLAG_NewEntry","features":[100]},{"name":"RASEDFLAG_NewPhoneEntry","features":[100]},{"name":"RASEDFLAG_NewTunnelEntry","features":[100]},{"name":"RASEDFLAG_NoRename","features":[100]},{"name":"RASEDFLAG_PositionDlg","features":[100]},{"name":"RASEDFLAG_ShellOwned","features":[100]},{"name":"RASEDM_DialAll","features":[100]},{"name":"RASEDM_DialAsNeeded","features":[100]},{"name":"RASENTRYA","features":[3,100,17]},{"name":"RASENTRYDLGA","features":[3,100]},{"name":"RASENTRYDLGA","features":[3,100]},{"name":"RASENTRYDLGW","features":[3,100]},{"name":"RASENTRYDLGW","features":[3,100]},{"name":"RASENTRYNAMEA","features":[100]},{"name":"RASENTRYNAMEW","features":[100]},{"name":"RASENTRYW","features":[3,100,17]},{"name":"RASENTRY_DIAL_MODE","features":[100]},{"name":"RASEO2_AuthTypeIsOtp","features":[100]},{"name":"RASEO2_AutoTriggerCapable","features":[100]},{"name":"RASEO2_CacheCredentials","features":[100]},{"name":"RASEO2_DisableClassBasedStaticRoute","features":[100]},{"name":"RASEO2_DisableIKENameEkuCheck","features":[100]},{"name":"RASEO2_DisableMobility","features":[100]},{"name":"RASEO2_DisableNbtOverIP","features":[100]},{"name":"RASEO2_DontNegotiateMultilink","features":[100]},{"name":"RASEO2_DontUseRasCredentials","features":[100]},{"name":"RASEO2_IPv4ExplicitMetric","features":[100]},{"name":"RASEO2_IPv6ExplicitMetric","features":[100]},{"name":"RASEO2_IPv6RemoteDefaultGateway","features":[100]},{"name":"RASEO2_IPv6SpecificNameServers","features":[100]},{"name":"RASEO2_Internet","features":[100]},{"name":"RASEO2_IsAlwaysOn","features":[100]},{"name":"RASEO2_IsPrivateNetwork","features":[100]},{"name":"RASEO2_IsThirdPartyProfile","features":[100]},{"name":"RASEO2_PlumbIKEv2TSAsRoutes","features":[100]},{"name":"RASEO2_ReconnectIfDropped","features":[100]},{"name":"RASEO2_RegisterIpWithDNS","features":[100]},{"name":"RASEO2_RequireMachineCertificates","features":[100]},{"name":"RASEO2_SecureClientForMSNet","features":[100]},{"name":"RASEO2_SecureFileAndPrint","features":[100]},{"name":"RASEO2_SecureRoutingCompartment","features":[100]},{"name":"RASEO2_SharePhoneNumbers","features":[100]},{"name":"RASEO2_SpecificIPv6Addr","features":[100]},{"name":"RASEO2_UseDNSSuffixForRegistration","features":[100]},{"name":"RASEO2_UseGlobalDeviceSettings","features":[100]},{"name":"RASEO2_UsePreSharedKey","features":[100]},{"name":"RASEO2_UsePreSharedKeyForIkev2Initiator","features":[100]},{"name":"RASEO2_UsePreSharedKeyForIkev2Responder","features":[100]},{"name":"RASEO2_UseTypicalSettings","features":[100]},{"name":"RASEO_Custom","features":[100]},{"name":"RASEO_CustomScript","features":[100]},{"name":"RASEO_DisableLcpExtensions","features":[100]},{"name":"RASEO_IpHeaderCompression","features":[100]},{"name":"RASEO_ModemLights","features":[100]},{"name":"RASEO_NetworkLogon","features":[100]},{"name":"RASEO_PreviewDomain","features":[100]},{"name":"RASEO_PreviewPhoneNumber","features":[100]},{"name":"RASEO_PreviewUserPw","features":[100]},{"name":"RASEO_PromoteAlternates","features":[100]},{"name":"RASEO_RemoteDefaultGateway","features":[100]},{"name":"RASEO_RequireCHAP","features":[100]},{"name":"RASEO_RequireDataEncryption","features":[100]},{"name":"RASEO_RequireEAP","features":[100]},{"name":"RASEO_RequireEncryptedPw","features":[100]},{"name":"RASEO_RequireMsCHAP","features":[100]},{"name":"RASEO_RequireMsCHAP2","features":[100]},{"name":"RASEO_RequireMsEncryptedPw","features":[100]},{"name":"RASEO_RequirePAP","features":[100]},{"name":"RASEO_RequireSPAP","features":[100]},{"name":"RASEO_RequireW95MSCHAP","features":[100]},{"name":"RASEO_SecureLocalFiles","features":[100]},{"name":"RASEO_SharedPhoneNumbers","features":[100]},{"name":"RASEO_ShowDialingProgress","features":[100]},{"name":"RASEO_SpecificIpAddr","features":[100]},{"name":"RASEO_SpecificNameServers","features":[100]},{"name":"RASEO_SwCompression","features":[100]},{"name":"RASEO_TerminalAfterDial","features":[100]},{"name":"RASEO_TerminalBeforeDial","features":[100]},{"name":"RASEO_UseCountryAndAreaCodes","features":[100]},{"name":"RASEO_UseLogonCredentials","features":[100]},{"name":"RASET_Broadband","features":[100]},{"name":"RASET_Direct","features":[100]},{"name":"RASET_Internet","features":[100]},{"name":"RASET_Phone","features":[100]},{"name":"RASET_Vpn","features":[100]},{"name":"RASFP_Ppp","features":[100]},{"name":"RASFP_Ras","features":[100]},{"name":"RASFP_Slip","features":[100]},{"name":"RASIDS_Disabled","features":[100]},{"name":"RASIDS_UseGlobalValue","features":[100]},{"name":"RASIKEV2_PROJECTION_INFO","features":[100,17]},{"name":"RASIKEV2_PROJECTION_INFO","features":[100,17]},{"name":"RASIKEV_PROJECTION_INFO_FLAGS","features":[100]},{"name":"RASIKEv2_AUTH_EAP","features":[100]},{"name":"RASIKEv2_AUTH_MACHINECERTIFICATES","features":[100]},{"name":"RASIKEv2_AUTH_PSK","features":[100]},{"name":"RASIKEv2_FLAGS_BEHIND_NAT","features":[100]},{"name":"RASIKEv2_FLAGS_MOBIKESUPPORTED","features":[100]},{"name":"RASIKEv2_FLAGS_SERVERBEHIND_NAT","features":[100]},{"name":"RASIPADDR","features":[100]},{"name":"RASIPO_VJ","features":[100]},{"name":"RASIPXW","features":[100]},{"name":"RASLCPAD_CHAP_MD5","features":[100]},{"name":"RASLCPAD_CHAP_MS","features":[100]},{"name":"RASLCPAD_CHAP_MSV2","features":[100]},{"name":"RASLCPAP_CHAP","features":[100]},{"name":"RASLCPAP_EAP","features":[100]},{"name":"RASLCPAP_PAP","features":[100]},{"name":"RASLCPAP_SPAP","features":[100]},{"name":"RASLCPO_3_DES","features":[100]},{"name":"RASLCPO_ACFC","features":[100]},{"name":"RASLCPO_AES_128","features":[100]},{"name":"RASLCPO_AES_192","features":[100]},{"name":"RASLCPO_AES_256","features":[100]},{"name":"RASLCPO_DES_56","features":[100]},{"name":"RASLCPO_GCM_AES_128","features":[100]},{"name":"RASLCPO_GCM_AES_192","features":[100]},{"name":"RASLCPO_GCM_AES_256","features":[100]},{"name":"RASLCPO_PFC","features":[100]},{"name":"RASLCPO_SSHF","features":[100]},{"name":"RASNAP_ProbationTime","features":[100]},{"name":"RASNOUSERA","features":[100]},{"name":"RASNOUSERW","features":[100]},{"name":"RASNOUSER_SmartCard","features":[100]},{"name":"RASNP_Ip","features":[100]},{"name":"RASNP_Ipv6","features":[100]},{"name":"RASNP_Ipx","features":[100]},{"name":"RASNP_NetBEUI","features":[100]},{"name":"RASPBDEVENT_AddEntry","features":[100]},{"name":"RASPBDEVENT_DialEntry","features":[100]},{"name":"RASPBDEVENT_EditEntry","features":[100]},{"name":"RASPBDEVENT_EditGlobals","features":[100]},{"name":"RASPBDEVENT_NoUser","features":[100]},{"name":"RASPBDEVENT_NoUserEdit","features":[100]},{"name":"RASPBDEVENT_RemoveEntry","features":[100]},{"name":"RASPBDFLAG_ForceCloseOnDial","features":[100]},{"name":"RASPBDFLAG_NoUser","features":[100]},{"name":"RASPBDFLAG_PositionDlg","features":[100]},{"name":"RASPBDFLAG_UpdateDefaults","features":[100]},{"name":"RASPBDLGA","features":[3,100]},{"name":"RASPBDLGA","features":[3,100]},{"name":"RASPBDLGFUNCA","features":[100]},{"name":"RASPBDLGFUNCW","features":[100]},{"name":"RASPBDLGW","features":[3,100]},{"name":"RASPBDLGW","features":[3,100]},{"name":"RASPPPCCP","features":[100]},{"name":"RASPPPIPA","features":[100]},{"name":"RASPPPIPV6","features":[100]},{"name":"RASPPPIPW","features":[100]},{"name":"RASPPPIPXA","features":[100]},{"name":"RASPPPLCPA","features":[3,100]},{"name":"RASPPPLCPW","features":[3,100]},{"name":"RASPPPNBFA","features":[100]},{"name":"RASPPPNBFW","features":[100]},{"name":"RASPPP_PROJECTION_INFO","features":[3,100,17]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_DATA","features":[100]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_PROTOCOL","features":[100]},{"name":"RASPRIV2_DialinPolicy","features":[100]},{"name":"RASPRIV_AdminSetCallback","features":[100]},{"name":"RASPRIV_CallerSetCallback","features":[100]},{"name":"RASPRIV_DialinPrivilege","features":[100]},{"name":"RASPRIV_NoCallback","features":[100]},{"name":"RASPROJECTION","features":[100]},{"name":"RASPROJECTION_INFO_TYPE","features":[100]},{"name":"RASP_Amb","features":[100]},{"name":"RASP_PppCcp","features":[100]},{"name":"RASP_PppIp","features":[100]},{"name":"RASP_PppIpv6","features":[100]},{"name":"RASP_PppIpx","features":[100]},{"name":"RASP_PppLcp","features":[100]},{"name":"RASP_PppNbf","features":[100]},{"name":"RASSECURITYPROC","features":[100]},{"name":"RASSUBENTRYA","features":[100]},{"name":"RASSUBENTRYW","features":[100]},{"name":"RASTUNNELENDPOINT","features":[100,17]},{"name":"RASTUNNELENDPOINT_IPv4","features":[100]},{"name":"RASTUNNELENDPOINT_IPv6","features":[100]},{"name":"RASTUNNELENDPOINT_UNKNOWN","features":[100]},{"name":"RASUPDATECONN","features":[100,17]},{"name":"RAS_CONNECTION_0","features":[3,100]},{"name":"RAS_CONNECTION_1","features":[3,100]},{"name":"RAS_CONNECTION_2","features":[3,100]},{"name":"RAS_CONNECTION_3","features":[3,100]},{"name":"RAS_CONNECTION_4","features":[3,100]},{"name":"RAS_CONNECTION_EX","features":[3,100]},{"name":"RAS_FLAGS","features":[100]},{"name":"RAS_FLAGS_ARAP_CONNECTION","features":[100]},{"name":"RAS_FLAGS_DORMANT","features":[100]},{"name":"RAS_FLAGS_IKEV2_CONNECTION","features":[100]},{"name":"RAS_FLAGS_MESSENGER_PRESENT","features":[100]},{"name":"RAS_FLAGS_PPP_CONNECTION","features":[100]},{"name":"RAS_FLAGS_QUARANTINE_PRESENT","features":[100]},{"name":"RAS_FLAGS_RAS_CONNECTION","features":[100]},{"name":"RAS_HARDWARE_CONDITION","features":[100]},{"name":"RAS_HARDWARE_FAILURE","features":[100]},{"name":"RAS_HARDWARE_OPERATIONAL","features":[100]},{"name":"RAS_MaxAreaCode","features":[100]},{"name":"RAS_MaxCallbackNumber","features":[100]},{"name":"RAS_MaxDeviceName","features":[100]},{"name":"RAS_MaxDeviceType","features":[100]},{"name":"RAS_MaxDnsSuffix","features":[100]},{"name":"RAS_MaxEntryName","features":[100]},{"name":"RAS_MaxFacilities","features":[100]},{"name":"RAS_MaxIDSize","features":[100]},{"name":"RAS_MaxIpAddress","features":[100]},{"name":"RAS_MaxIpxAddress","features":[100]},{"name":"RAS_MaxPadType","features":[100]},{"name":"RAS_MaxPhoneNumber","features":[100]},{"name":"RAS_MaxReplyMessage","features":[100]},{"name":"RAS_MaxUserData","features":[100]},{"name":"RAS_MaxX25Address","features":[100]},{"name":"RAS_PORT_0","features":[3,100]},{"name":"RAS_PORT_1","features":[3,100]},{"name":"RAS_PORT_2","features":[3,100]},{"name":"RAS_PORT_AUTHENTICATED","features":[100]},{"name":"RAS_PORT_AUTHENTICATING","features":[100]},{"name":"RAS_PORT_CALLING_BACK","features":[100]},{"name":"RAS_PORT_CONDITION","features":[100]},{"name":"RAS_PORT_DISCONNECTED","features":[100]},{"name":"RAS_PORT_INITIALIZING","features":[100]},{"name":"RAS_PORT_LISTENING","features":[100]},{"name":"RAS_PORT_NON_OPERATIONAL","features":[100]},{"name":"RAS_PROJECTION_INFO","features":[3,100,17]},{"name":"RAS_QUARANTINE_STATE","features":[100]},{"name":"RAS_QUAR_STATE_NORMAL","features":[100]},{"name":"RAS_QUAR_STATE_NOT_CAPABLE","features":[100]},{"name":"RAS_QUAR_STATE_PROBATION","features":[100]},{"name":"RAS_QUAR_STATE_QUARANTINE","features":[100]},{"name":"RAS_SECURITY_INFO","features":[100]},{"name":"RAS_STATS","features":[100]},{"name":"RAS_UPDATE_CONNECTION","features":[100]},{"name":"RAS_USER_0","features":[100]},{"name":"RAS_USER_1","features":[100]},{"name":"RCD_AllUsers","features":[100]},{"name":"RCD_Eap","features":[100]},{"name":"RCD_Logon","features":[100]},{"name":"RCD_SingleUser","features":[100]},{"name":"RDEOPT_CustomDial","features":[100]},{"name":"RDEOPT_DisableConnectedUI","features":[100]},{"name":"RDEOPT_DisableReconnect","features":[100]},{"name":"RDEOPT_DisableReconnectUI","features":[100]},{"name":"RDEOPT_EapInfoCryptInCapable","features":[100]},{"name":"RDEOPT_IgnoreModemSpeaker","features":[100]},{"name":"RDEOPT_IgnoreSoftwareCompression","features":[100]},{"name":"RDEOPT_InvokeAutoTriggerCredentialUI","features":[100]},{"name":"RDEOPT_NoUser","features":[100]},{"name":"RDEOPT_PauseOnScript","features":[100]},{"name":"RDEOPT_PausedStates","features":[100]},{"name":"RDEOPT_Router","features":[100]},{"name":"RDEOPT_SetModemSpeaker","features":[100]},{"name":"RDEOPT_SetSoftwareCompression","features":[100]},{"name":"RDEOPT_UseCustomScripting","features":[100]},{"name":"RDEOPT_UsePrefixSuffix","features":[100]},{"name":"REN_AllUsers","features":[100]},{"name":"REN_User","features":[100]},{"name":"ROUTER_CONNECTION_STATE","features":[100]},{"name":"ROUTER_CUSTOM_IKEv2_POLICY0","features":[100]},{"name":"ROUTER_IF_STATE_CONNECTED","features":[100]},{"name":"ROUTER_IF_STATE_CONNECTING","features":[100]},{"name":"ROUTER_IF_STATE_DISCONNECTED","features":[100]},{"name":"ROUTER_IF_STATE_UNREACHABLE","features":[100]},{"name":"ROUTER_IF_TYPE_CLIENT","features":[100]},{"name":"ROUTER_IF_TYPE_DEDICATED","features":[100]},{"name":"ROUTER_IF_TYPE_DIALOUT","features":[100]},{"name":"ROUTER_IF_TYPE_FULL_ROUTER","features":[100]},{"name":"ROUTER_IF_TYPE_HOME_ROUTER","features":[100]},{"name":"ROUTER_IF_TYPE_INTERNAL","features":[100]},{"name":"ROUTER_IF_TYPE_LOOPBACK","features":[100]},{"name":"ROUTER_IF_TYPE_MAX","features":[100]},{"name":"ROUTER_IF_TYPE_TUNNEL1","features":[100]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG0","features":[100,70]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG1","features":[100,70]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG2","features":[100,17,70]},{"name":"ROUTER_INTERFACE_TYPE","features":[100]},{"name":"ROUTING_PROTOCOL_CONFIG","features":[3,100]},{"name":"RRAS_SERVICE_NAME","features":[100]},{"name":"RTM_BLOCK_METHODS","features":[100]},{"name":"RTM_CHANGE_NOTIFICATION","features":[100]},{"name":"RTM_CHANGE_TYPE_ALL","features":[100]},{"name":"RTM_CHANGE_TYPE_BEST","features":[100]},{"name":"RTM_CHANGE_TYPE_FORWARDING","features":[100]},{"name":"RTM_DEST_FLAG_DONT_FORWARD","features":[100]},{"name":"RTM_DEST_FLAG_FWD_ENGIN_ADD","features":[100]},{"name":"RTM_DEST_FLAG_NATURAL_NET","features":[100]},{"name":"RTM_DEST_INFO","features":[3,100]},{"name":"RTM_ENTITY_DEREGISTERED","features":[100]},{"name":"RTM_ENTITY_EXPORT_METHOD","features":[100]},{"name":"RTM_ENTITY_EXPORT_METHODS","features":[100]},{"name":"RTM_ENTITY_ID","features":[100]},{"name":"RTM_ENTITY_INFO","features":[100]},{"name":"RTM_ENTITY_METHOD_INPUT","features":[100]},{"name":"RTM_ENTITY_METHOD_OUTPUT","features":[100]},{"name":"RTM_ENTITY_REGISTERED","features":[100]},{"name":"RTM_ENUM_ALL_DESTS","features":[100]},{"name":"RTM_ENUM_ALL_ROUTES","features":[100]},{"name":"RTM_ENUM_NEXT","features":[100]},{"name":"RTM_ENUM_OWN_DESTS","features":[100]},{"name":"RTM_ENUM_OWN_ROUTES","features":[100]},{"name":"RTM_ENUM_RANGE","features":[100]},{"name":"RTM_ENUM_START","features":[100]},{"name":"RTM_EVENT_CALLBACK","features":[100]},{"name":"RTM_EVENT_TYPE","features":[100]},{"name":"RTM_MATCH_FULL","features":[100]},{"name":"RTM_MATCH_INTERFACE","features":[100]},{"name":"RTM_MATCH_NEIGHBOUR","features":[100]},{"name":"RTM_MATCH_NEXTHOP","features":[100]},{"name":"RTM_MATCH_NONE","features":[100]},{"name":"RTM_MATCH_OWNER","features":[100]},{"name":"RTM_MATCH_PREF","features":[100]},{"name":"RTM_MAX_ADDRESS_SIZE","features":[100]},{"name":"RTM_MAX_VIEWS","features":[100]},{"name":"RTM_NET_ADDRESS","features":[100]},{"name":"RTM_NEXTHOP_CHANGE_NEW","features":[100]},{"name":"RTM_NEXTHOP_FLAGS_DOWN","features":[100]},{"name":"RTM_NEXTHOP_FLAGS_REMOTE","features":[100]},{"name":"RTM_NEXTHOP_INFO","features":[100]},{"name":"RTM_NEXTHOP_LIST","features":[100]},{"name":"RTM_NEXTHOP_STATE_CREATED","features":[100]},{"name":"RTM_NEXTHOP_STATE_DELETED","features":[100]},{"name":"RTM_NOTIFY_ONLY_MARKED_DESTS","features":[100]},{"name":"RTM_NUM_CHANGE_TYPES","features":[100]},{"name":"RTM_PREF_INFO","features":[100]},{"name":"RTM_REGN_PROFILE","features":[100]},{"name":"RTM_RESUME_METHODS","features":[100]},{"name":"RTM_ROUTE_CHANGE_BEST","features":[100]},{"name":"RTM_ROUTE_CHANGE_FIRST","features":[100]},{"name":"RTM_ROUTE_CHANGE_NEW","features":[100]},{"name":"RTM_ROUTE_EXPIRED","features":[100]},{"name":"RTM_ROUTE_FLAGS_BLACKHOLE","features":[100]},{"name":"RTM_ROUTE_FLAGS_DISCARD","features":[100]},{"name":"RTM_ROUTE_FLAGS_INACTIVE","features":[100]},{"name":"RTM_ROUTE_FLAGS_LIMITED_BC","features":[100]},{"name":"RTM_ROUTE_FLAGS_LOCAL","features":[100]},{"name":"RTM_ROUTE_FLAGS_LOCAL_MCAST","features":[100]},{"name":"RTM_ROUTE_FLAGS_LOOPBACK","features":[100]},{"name":"RTM_ROUTE_FLAGS_MARTIAN","features":[100]},{"name":"RTM_ROUTE_FLAGS_MCAST","features":[100]},{"name":"RTM_ROUTE_FLAGS_MYSELF","features":[100]},{"name":"RTM_ROUTE_FLAGS_ONES_NETBC","features":[100]},{"name":"RTM_ROUTE_FLAGS_ONES_SUBNETBC","features":[100]},{"name":"RTM_ROUTE_FLAGS_REMOTE","features":[100]},{"name":"RTM_ROUTE_FLAGS_ZEROS_NETBC","features":[100]},{"name":"RTM_ROUTE_FLAGS_ZEROS_SUBNETBC","features":[100]},{"name":"RTM_ROUTE_INFO","features":[100]},{"name":"RTM_ROUTE_STATE_CREATED","features":[100]},{"name":"RTM_ROUTE_STATE_DELETED","features":[100]},{"name":"RTM_ROUTE_STATE_DELETING","features":[100]},{"name":"RTM_VIEW_ID_MCAST","features":[100]},{"name":"RTM_VIEW_ID_UCAST","features":[100]},{"name":"RTM_VIEW_MASK_ALL","features":[100]},{"name":"RTM_VIEW_MASK_ANY","features":[100]},{"name":"RTM_VIEW_MASK_MCAST","features":[100]},{"name":"RTM_VIEW_MASK_NONE","features":[100]},{"name":"RTM_VIEW_MASK_SIZE","features":[100]},{"name":"RTM_VIEW_MASK_UCAST","features":[100]},{"name":"RasClearConnectionStatistics","features":[100]},{"name":"RasClearLinkStatistics","features":[100]},{"name":"RasConnectionNotificationA","features":[3,100]},{"name":"RasConnectionNotificationW","features":[3,100]},{"name":"RasCreatePhonebookEntryA","features":[3,100]},{"name":"RasCreatePhonebookEntryW","features":[3,100]},{"name":"RasCustomDeleteEntryNotifyFn","features":[100]},{"name":"RasCustomDialDlgFn","features":[3,100]},{"name":"RasCustomDialFn","features":[3,100]},{"name":"RasCustomEntryDlgFn","features":[3,100]},{"name":"RasCustomHangUpFn","features":[100]},{"name":"RasCustomScriptExecuteFn","features":[3,100]},{"name":"RasDeleteEntryA","features":[100]},{"name":"RasDeleteEntryW","features":[100]},{"name":"RasDeleteSubEntryA","features":[100]},{"name":"RasDeleteSubEntryW","features":[100]},{"name":"RasDialA","features":[3,100]},{"name":"RasDialDlgA","features":[3,100]},{"name":"RasDialDlgW","features":[3,100]},{"name":"RasDialW","features":[3,100]},{"name":"RasEditPhonebookEntryA","features":[3,100]},{"name":"RasEditPhonebookEntryW","features":[3,100]},{"name":"RasEntryDlgA","features":[3,100]},{"name":"RasEntryDlgW","features":[3,100]},{"name":"RasEnumAutodialAddressesA","features":[100]},{"name":"RasEnumAutodialAddressesW","features":[100]},{"name":"RasEnumConnectionsA","features":[3,100]},{"name":"RasEnumConnectionsW","features":[3,100]},{"name":"RasEnumDevicesA","features":[100]},{"name":"RasEnumDevicesW","features":[100]},{"name":"RasEnumEntriesA","features":[100]},{"name":"RasEnumEntriesW","features":[100]},{"name":"RasFreeEapUserIdentityA","features":[100]},{"name":"RasFreeEapUserIdentityW","features":[100]},{"name":"RasGetAutodialAddressA","features":[100]},{"name":"RasGetAutodialAddressW","features":[100]},{"name":"RasGetAutodialEnableA","features":[3,100]},{"name":"RasGetAutodialEnableW","features":[3,100]},{"name":"RasGetAutodialParamA","features":[100]},{"name":"RasGetAutodialParamW","features":[100]},{"name":"RasGetConnectStatusA","features":[100,17]},{"name":"RasGetConnectStatusW","features":[100,17]},{"name":"RasGetConnectionStatistics","features":[100]},{"name":"RasGetCountryInfoA","features":[100]},{"name":"RasGetCountryInfoW","features":[100]},{"name":"RasGetCredentialsA","features":[100]},{"name":"RasGetCredentialsW","features":[100]},{"name":"RasGetCustomAuthDataA","features":[100]},{"name":"RasGetCustomAuthDataW","features":[100]},{"name":"RasGetEapUserDataA","features":[3,100]},{"name":"RasGetEapUserDataW","features":[3,100]},{"name":"RasGetEapUserIdentityA","features":[3,100]},{"name":"RasGetEapUserIdentityW","features":[3,100]},{"name":"RasGetEntryDialParamsA","features":[3,100]},{"name":"RasGetEntryDialParamsW","features":[3,100]},{"name":"RasGetEntryPropertiesA","features":[3,100,17]},{"name":"RasGetEntryPropertiesW","features":[3,100,17]},{"name":"RasGetErrorStringA","features":[100]},{"name":"RasGetErrorStringW","features":[100]},{"name":"RasGetLinkStatistics","features":[100]},{"name":"RasGetPCscf","features":[100]},{"name":"RasGetProjectionInfoA","features":[100]},{"name":"RasGetProjectionInfoEx","features":[3,100,17]},{"name":"RasGetProjectionInfoW","features":[100]},{"name":"RasGetSubEntryHandleA","features":[100]},{"name":"RasGetSubEntryHandleW","features":[100]},{"name":"RasGetSubEntryPropertiesA","features":[100]},{"name":"RasGetSubEntryPropertiesW","features":[100]},{"name":"RasHangUpA","features":[100]},{"name":"RasHangUpW","features":[100]},{"name":"RasInvokeEapUI","features":[3,100]},{"name":"RasPhonebookDlgA","features":[3,100]},{"name":"RasPhonebookDlgW","features":[3,100]},{"name":"RasRenameEntryA","features":[100]},{"name":"RasRenameEntryW","features":[100]},{"name":"RasSetAutodialAddressA","features":[100]},{"name":"RasSetAutodialAddressW","features":[100]},{"name":"RasSetAutodialEnableA","features":[3,100]},{"name":"RasSetAutodialEnableW","features":[3,100]},{"name":"RasSetAutodialParamA","features":[100]},{"name":"RasSetAutodialParamW","features":[100]},{"name":"RasSetCredentialsA","features":[3,100]},{"name":"RasSetCredentialsW","features":[3,100]},{"name":"RasSetCustomAuthDataA","features":[100]},{"name":"RasSetCustomAuthDataW","features":[100]},{"name":"RasSetEapUserDataA","features":[3,100]},{"name":"RasSetEapUserDataW","features":[3,100]},{"name":"RasSetEntryDialParamsA","features":[3,100]},{"name":"RasSetEntryDialParamsW","features":[3,100]},{"name":"RasSetEntryPropertiesA","features":[3,100,17]},{"name":"RasSetEntryPropertiesW","features":[3,100,17]},{"name":"RasSetSubEntryPropertiesA","features":[100]},{"name":"RasSetSubEntryPropertiesW","features":[100]},{"name":"RasUpdateConnection","features":[100,17]},{"name":"RasValidateEntryNameA","features":[100]},{"name":"RasValidateEntryNameW","features":[100]},{"name":"RtmAddNextHop","features":[100]},{"name":"RtmAddRouteToDest","features":[100]},{"name":"RtmBlockMethods","features":[3,100]},{"name":"RtmConvertIpv6AddressAndLengthToNetAddress","features":[100,17]},{"name":"RtmConvertNetAddressToIpv6AddressAndLength","features":[100,17]},{"name":"RtmCreateDestEnum","features":[100]},{"name":"RtmCreateNextHopEnum","features":[100]},{"name":"RtmCreateRouteEnum","features":[100]},{"name":"RtmCreateRouteList","features":[100]},{"name":"RtmCreateRouteListEnum","features":[100]},{"name":"RtmDeleteEnumHandle","features":[100]},{"name":"RtmDeleteNextHop","features":[100]},{"name":"RtmDeleteRouteList","features":[100]},{"name":"RtmDeleteRouteToDest","features":[100]},{"name":"RtmDeregisterEntity","features":[100]},{"name":"RtmDeregisterFromChangeNotification","features":[100]},{"name":"RtmFindNextHop","features":[100]},{"name":"RtmGetChangeStatus","features":[3,100]},{"name":"RtmGetChangedDests","features":[3,100]},{"name":"RtmGetDestInfo","features":[3,100]},{"name":"RtmGetEntityInfo","features":[100]},{"name":"RtmGetEntityMethods","features":[100]},{"name":"RtmGetEnumDests","features":[3,100]},{"name":"RtmGetEnumNextHops","features":[100]},{"name":"RtmGetEnumRoutes","features":[100]},{"name":"RtmGetExactMatchDestination","features":[3,100]},{"name":"RtmGetExactMatchRoute","features":[100]},{"name":"RtmGetLessSpecificDestination","features":[3,100]},{"name":"RtmGetListEnumRoutes","features":[100]},{"name":"RtmGetMostSpecificDestination","features":[3,100]},{"name":"RtmGetNextHopInfo","features":[100]},{"name":"RtmGetNextHopPointer","features":[100]},{"name":"RtmGetOpaqueInformationPointer","features":[100]},{"name":"RtmGetRegisteredEntities","features":[100]},{"name":"RtmGetRouteInfo","features":[100]},{"name":"RtmGetRoutePointer","features":[100]},{"name":"RtmHoldDestination","features":[100]},{"name":"RtmIgnoreChangedDests","features":[100]},{"name":"RtmInsertInRouteList","features":[100]},{"name":"RtmInvokeMethod","features":[100]},{"name":"RtmIsBestRoute","features":[100]},{"name":"RtmIsMarkedForChangeNotification","features":[3,100]},{"name":"RtmLockDestination","features":[3,100]},{"name":"RtmLockNextHop","features":[3,100]},{"name":"RtmLockRoute","features":[3,100]},{"name":"RtmMarkDestForChangeNotification","features":[3,100]},{"name":"RtmReferenceHandles","features":[3,100]},{"name":"RtmRegisterEntity","features":[3,100]},{"name":"RtmRegisterForChangeNotification","features":[100]},{"name":"RtmReleaseChangedDests","features":[3,100]},{"name":"RtmReleaseDestInfo","features":[3,100]},{"name":"RtmReleaseDests","features":[3,100]},{"name":"RtmReleaseEntities","features":[100]},{"name":"RtmReleaseEntityInfo","features":[100]},{"name":"RtmReleaseNextHopInfo","features":[100]},{"name":"RtmReleaseNextHops","features":[100]},{"name":"RtmReleaseRouteInfo","features":[100]},{"name":"RtmReleaseRoutes","features":[100]},{"name":"RtmUpdateAndUnlockRoute","features":[100]},{"name":"SECURITYMSG_ERROR","features":[100]},{"name":"SECURITYMSG_FAILURE","features":[100]},{"name":"SECURITYMSG_SUCCESS","features":[100]},{"name":"SECURITY_MESSAGE","features":[100]},{"name":"SECURITY_MESSAGE_MSG_ID","features":[100]},{"name":"SOURCE_GROUP_ENTRY","features":[100]},{"name":"SSTP_CERT_INFO","features":[3,100,70]},{"name":"SSTP_CONFIG_PARAMS","features":[3,100,70]},{"name":"VPN_TS_IP_ADDRESS","features":[100,17]},{"name":"VS_Default","features":[100]},{"name":"VS_GREOnly","features":[100]},{"name":"VS_Ikev2First","features":[100]},{"name":"VS_Ikev2Only","features":[100]},{"name":"VS_Ikev2Sstp","features":[100]},{"name":"VS_L2tpFirst","features":[100]},{"name":"VS_L2tpOnly","features":[100]},{"name":"VS_L2tpSstp","features":[100]},{"name":"VS_PptpFirst","features":[100]},{"name":"VS_PptpOnly","features":[100]},{"name":"VS_PptpSstp","features":[100]},{"name":"VS_ProtocolList","features":[100]},{"name":"VS_SstpFirst","features":[100]},{"name":"VS_SstpOnly","features":[100]},{"name":"WARNING_MSG_ALIAS_NOT_ADDED","features":[100]},{"name":"WM_RASDIALEVENT","features":[100]}],"460":[{"name":"ASN_APPLICATION","features":[101]},{"name":"ASN_CONSTRUCTOR","features":[101]},{"name":"ASN_CONTEXT","features":[101]},{"name":"ASN_CONTEXTSPECIFIC","features":[101]},{"name":"ASN_PRIMATIVE","features":[101]},{"name":"ASN_PRIMITIVE","features":[101]},{"name":"ASN_PRIVATE","features":[101]},{"name":"ASN_UNIVERSAL","features":[101]},{"name":"AsnAny","features":[3,101]},{"name":"AsnObjectIdentifier","features":[101]},{"name":"AsnObjectIdentifier","features":[101]},{"name":"AsnOctetString","features":[3,101]},{"name":"AsnOctetString","features":[3,101]},{"name":"DEFAULT_SNMPTRAP_PORT_IPX","features":[101]},{"name":"DEFAULT_SNMPTRAP_PORT_UDP","features":[101]},{"name":"DEFAULT_SNMP_PORT_IPX","features":[101]},{"name":"DEFAULT_SNMP_PORT_UDP","features":[101]},{"name":"MAXOBJIDSIZE","features":[101]},{"name":"MAXOBJIDSTRSIZE","features":[101]},{"name":"MAXVENDORINFO","features":[101]},{"name":"MGMCTL_SETAGENTPORT","features":[101]},{"name":"PFNSNMPCLEANUPEX","features":[101]},{"name":"PFNSNMPEXTENSIONCLOSE","features":[101]},{"name":"PFNSNMPEXTENSIONINIT","features":[3,101]},{"name":"PFNSNMPEXTENSIONINITEX","features":[3,101]},{"name":"PFNSNMPEXTENSIONMONITOR","features":[3,101]},{"name":"PFNSNMPEXTENSIONQUERY","features":[3,101]},{"name":"PFNSNMPEXTENSIONQUERYEX","features":[3,101]},{"name":"PFNSNMPEXTENSIONTRAP","features":[3,101]},{"name":"PFNSNMPSTARTUPEX","features":[101]},{"name":"SNMPAPI_ALLOC_ERROR","features":[101]},{"name":"SNMPAPI_CALLBACK","features":[3,101]},{"name":"SNMPAPI_CONTEXT_INVALID","features":[101]},{"name":"SNMPAPI_CONTEXT_UNKNOWN","features":[101]},{"name":"SNMPAPI_ENTITY_INVALID","features":[101]},{"name":"SNMPAPI_ENTITY_UNKNOWN","features":[101]},{"name":"SNMPAPI_ERROR","features":[101]},{"name":"SNMPAPI_FAILURE","features":[101]},{"name":"SNMPAPI_HWND_INVALID","features":[101]},{"name":"SNMPAPI_INDEX_INVALID","features":[101]},{"name":"SNMPAPI_M2M_SUPPORT","features":[101]},{"name":"SNMPAPI_MESSAGE_INVALID","features":[101]},{"name":"SNMPAPI_MODE_INVALID","features":[101]},{"name":"SNMPAPI_NOERROR","features":[101]},{"name":"SNMPAPI_NOOP","features":[101]},{"name":"SNMPAPI_NOT_INITIALIZED","features":[101]},{"name":"SNMPAPI_NO_SUPPORT","features":[101]},{"name":"SNMPAPI_OFF","features":[101]},{"name":"SNMPAPI_OID_INVALID","features":[101]},{"name":"SNMPAPI_ON","features":[101]},{"name":"SNMPAPI_OPERATION_INVALID","features":[101]},{"name":"SNMPAPI_OTHER_ERROR","features":[101]},{"name":"SNMPAPI_OUTPUT_TRUNCATED","features":[101]},{"name":"SNMPAPI_PDU_INVALID","features":[101]},{"name":"SNMPAPI_SESSION_INVALID","features":[101]},{"name":"SNMPAPI_SIZE_INVALID","features":[101]},{"name":"SNMPAPI_SUCCESS","features":[101]},{"name":"SNMPAPI_SYNTAX_INVALID","features":[101]},{"name":"SNMPAPI_TL_INVALID_PARAM","features":[101]},{"name":"SNMPAPI_TL_IN_USE","features":[101]},{"name":"SNMPAPI_TL_NOT_AVAILABLE","features":[101]},{"name":"SNMPAPI_TL_NOT_INITIALIZED","features":[101]},{"name":"SNMPAPI_TL_NOT_SUPPORTED","features":[101]},{"name":"SNMPAPI_TL_OTHER","features":[101]},{"name":"SNMPAPI_TL_PDU_TOO_BIG","features":[101]},{"name":"SNMPAPI_TL_RESOURCE_ERROR","features":[101]},{"name":"SNMPAPI_TL_SRC_INVALID","features":[101]},{"name":"SNMPAPI_TL_TIMEOUT","features":[101]},{"name":"SNMPAPI_TL_UNDELIVERABLE","features":[101]},{"name":"SNMPAPI_TRANSLATED","features":[101]},{"name":"SNMPAPI_UNTRANSLATED_V1","features":[101]},{"name":"SNMPAPI_UNTRANSLATED_V2","features":[101]},{"name":"SNMPAPI_V1_SUPPORT","features":[101]},{"name":"SNMPAPI_V2_SUPPORT","features":[101]},{"name":"SNMPAPI_VBL_INVALID","features":[101]},{"name":"SNMPLISTEN_ALL_ADDR","features":[101]},{"name":"SNMPLISTEN_USEENTITY_ADDR","features":[101]},{"name":"SNMP_ACCESS_NONE","features":[101]},{"name":"SNMP_ACCESS_NOTIFY","features":[101]},{"name":"SNMP_ACCESS_READ_CREATE","features":[101]},{"name":"SNMP_ACCESS_READ_ONLY","features":[101]},{"name":"SNMP_ACCESS_READ_WRITE","features":[101]},{"name":"SNMP_API_TRANSLATE_MODE","features":[101]},{"name":"SNMP_AUTHAPI_INVALID_MSG_TYPE","features":[101]},{"name":"SNMP_AUTHAPI_INVALID_VERSION","features":[101]},{"name":"SNMP_AUTHAPI_TRIV_AUTH_FAILED","features":[101]},{"name":"SNMP_BERAPI_INVALID_LENGTH","features":[101]},{"name":"SNMP_BERAPI_INVALID_OBJELEM","features":[101]},{"name":"SNMP_BERAPI_INVALID_TAG","features":[101]},{"name":"SNMP_BERAPI_OVERFLOW","features":[101]},{"name":"SNMP_BERAPI_SHORT_BUFFER","features":[101]},{"name":"SNMP_ERROR","features":[101]},{"name":"SNMP_ERRORSTATUS_AUTHORIZATIONERROR","features":[101]},{"name":"SNMP_ERRORSTATUS_BADVALUE","features":[101]},{"name":"SNMP_ERRORSTATUS_COMMITFAILED","features":[101]},{"name":"SNMP_ERRORSTATUS_GENERR","features":[101]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTNAME","features":[101]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTVALUE","features":[101]},{"name":"SNMP_ERRORSTATUS_NOACCESS","features":[101]},{"name":"SNMP_ERRORSTATUS_NOCREATION","features":[101]},{"name":"SNMP_ERRORSTATUS_NOERROR","features":[101]},{"name":"SNMP_ERRORSTATUS_NOSUCHNAME","features":[101]},{"name":"SNMP_ERRORSTATUS_NOTWRITABLE","features":[101]},{"name":"SNMP_ERRORSTATUS_READONLY","features":[101]},{"name":"SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE","features":[101]},{"name":"SNMP_ERRORSTATUS_TOOBIG","features":[101]},{"name":"SNMP_ERRORSTATUS_UNDOFAILED","features":[101]},{"name":"SNMP_ERRORSTATUS_WRONGENCODING","features":[101]},{"name":"SNMP_ERRORSTATUS_WRONGLENGTH","features":[101]},{"name":"SNMP_ERRORSTATUS_WRONGTYPE","features":[101]},{"name":"SNMP_ERRORSTATUS_WRONGVALUE","features":[101]},{"name":"SNMP_ERROR_AUTHORIZATIONERROR","features":[101]},{"name":"SNMP_ERROR_BADVALUE","features":[101]},{"name":"SNMP_ERROR_COMMITFAILED","features":[101]},{"name":"SNMP_ERROR_GENERR","features":[101]},{"name":"SNMP_ERROR_INCONSISTENTNAME","features":[101]},{"name":"SNMP_ERROR_INCONSISTENTVALUE","features":[101]},{"name":"SNMP_ERROR_NOACCESS","features":[101]},{"name":"SNMP_ERROR_NOCREATION","features":[101]},{"name":"SNMP_ERROR_NOERROR","features":[101]},{"name":"SNMP_ERROR_NOSUCHNAME","features":[101]},{"name":"SNMP_ERROR_NOTWRITABLE","features":[101]},{"name":"SNMP_ERROR_READONLY","features":[101]},{"name":"SNMP_ERROR_RESOURCEUNAVAILABLE","features":[101]},{"name":"SNMP_ERROR_STATUS","features":[101]},{"name":"SNMP_ERROR_TOOBIG","features":[101]},{"name":"SNMP_ERROR_UNDOFAILED","features":[101]},{"name":"SNMP_ERROR_WRONGENCODING","features":[101]},{"name":"SNMP_ERROR_WRONGLENGTH","features":[101]},{"name":"SNMP_ERROR_WRONGTYPE","features":[101]},{"name":"SNMP_ERROR_WRONGVALUE","features":[101]},{"name":"SNMP_EXTENSION_GET","features":[101]},{"name":"SNMP_EXTENSION_GET_NEXT","features":[101]},{"name":"SNMP_EXTENSION_REQUEST_TYPE","features":[101]},{"name":"SNMP_EXTENSION_SET_CLEANUP","features":[101]},{"name":"SNMP_EXTENSION_SET_COMMIT","features":[101]},{"name":"SNMP_EXTENSION_SET_TEST","features":[101]},{"name":"SNMP_EXTENSION_SET_UNDO","features":[101]},{"name":"SNMP_GENERICTRAP","features":[101]},{"name":"SNMP_GENERICTRAP_AUTHFAILURE","features":[101]},{"name":"SNMP_GENERICTRAP_COLDSTART","features":[101]},{"name":"SNMP_GENERICTRAP_EGPNEIGHLOSS","features":[101]},{"name":"SNMP_GENERICTRAP_ENTERSPECIFIC","features":[101]},{"name":"SNMP_GENERICTRAP_LINKDOWN","features":[101]},{"name":"SNMP_GENERICTRAP_LINKUP","features":[101]},{"name":"SNMP_GENERICTRAP_WARMSTART","features":[101]},{"name":"SNMP_LOG","features":[101]},{"name":"SNMP_LOG_ERROR","features":[101]},{"name":"SNMP_LOG_FATAL","features":[101]},{"name":"SNMP_LOG_SILENT","features":[101]},{"name":"SNMP_LOG_TRACE","features":[101]},{"name":"SNMP_LOG_VERBOSE","features":[101]},{"name":"SNMP_LOG_WARNING","features":[101]},{"name":"SNMP_MAX_OID_LEN","features":[101]},{"name":"SNMP_MEM_ALLOC_ERROR","features":[101]},{"name":"SNMP_MGMTAPI_AGAIN","features":[101]},{"name":"SNMP_MGMTAPI_INVALID_BUFFER","features":[101]},{"name":"SNMP_MGMTAPI_INVALID_CTL","features":[101]},{"name":"SNMP_MGMTAPI_INVALID_SESSION","features":[101]},{"name":"SNMP_MGMTAPI_NOTRAPS","features":[101]},{"name":"SNMP_MGMTAPI_SELECT_FDERRORS","features":[101]},{"name":"SNMP_MGMTAPI_TIMEOUT","features":[101]},{"name":"SNMP_MGMTAPI_TRAP_DUPINIT","features":[101]},{"name":"SNMP_MGMTAPI_TRAP_ERRORS","features":[101]},{"name":"SNMP_OUTPUT_LOG_TYPE","features":[101]},{"name":"SNMP_OUTPUT_TO_CONSOLE","features":[101]},{"name":"SNMP_OUTPUT_TO_DEBUGGER","features":[101]},{"name":"SNMP_OUTPUT_TO_EVENTLOG","features":[101]},{"name":"SNMP_OUTPUT_TO_LOGFILE","features":[101]},{"name":"SNMP_PDUAPI_INVALID_ES","features":[101]},{"name":"SNMP_PDUAPI_INVALID_GT","features":[101]},{"name":"SNMP_PDUAPI_UNRECOGNIZED_PDU","features":[101]},{"name":"SNMP_PDU_GET","features":[101]},{"name":"SNMP_PDU_GETBULK","features":[101]},{"name":"SNMP_PDU_GETNEXT","features":[101]},{"name":"SNMP_PDU_RESPONSE","features":[101]},{"name":"SNMP_PDU_SET","features":[101]},{"name":"SNMP_PDU_TRAP","features":[101]},{"name":"SNMP_PDU_TYPE","features":[101]},{"name":"SNMP_STATUS","features":[101]},{"name":"SNMP_TRAP_AUTHFAIL","features":[101]},{"name":"SNMP_TRAP_COLDSTART","features":[101]},{"name":"SNMP_TRAP_EGPNEIGHBORLOSS","features":[101]},{"name":"SNMP_TRAP_ENTERPRISESPECIFIC","features":[101]},{"name":"SNMP_TRAP_LINKDOWN","features":[101]},{"name":"SNMP_TRAP_LINKUP","features":[101]},{"name":"SNMP_TRAP_WARMSTART","features":[101]},{"name":"SnmpCancelMsg","features":[101]},{"name":"SnmpCleanup","features":[101]},{"name":"SnmpCleanupEx","features":[101]},{"name":"SnmpClose","features":[101]},{"name":"SnmpContextToStr","features":[101]},{"name":"SnmpCountVbl","features":[101]},{"name":"SnmpCreatePdu","features":[101]},{"name":"SnmpCreateSession","features":[3,101]},{"name":"SnmpCreateVbl","features":[101]},{"name":"SnmpDecodeMsg","features":[101]},{"name":"SnmpDeleteVb","features":[101]},{"name":"SnmpDuplicatePdu","features":[101]},{"name":"SnmpDuplicateVbl","features":[101]},{"name":"SnmpEncodeMsg","features":[101]},{"name":"SnmpEntityToStr","features":[101]},{"name":"SnmpFreeContext","features":[101]},{"name":"SnmpFreeDescriptor","features":[101]},{"name":"SnmpFreeEntity","features":[101]},{"name":"SnmpFreePdu","features":[101]},{"name":"SnmpFreeVbl","features":[101]},{"name":"SnmpGetLastError","features":[101]},{"name":"SnmpGetPduData","features":[101]},{"name":"SnmpGetRetransmitMode","features":[101]},{"name":"SnmpGetRetry","features":[101]},{"name":"SnmpGetTimeout","features":[101]},{"name":"SnmpGetTranslateMode","features":[101]},{"name":"SnmpGetVb","features":[101]},{"name":"SnmpGetVendorInfo","features":[101]},{"name":"SnmpListen","features":[101]},{"name":"SnmpListenEx","features":[101]},{"name":"SnmpMgrClose","features":[3,101]},{"name":"SnmpMgrCtl","features":[3,101]},{"name":"SnmpMgrGetTrap","features":[3,101]},{"name":"SnmpMgrGetTrapEx","features":[3,101]},{"name":"SnmpMgrOidToStr","features":[3,101]},{"name":"SnmpMgrOpen","features":[101]},{"name":"SnmpMgrRequest","features":[3,101]},{"name":"SnmpMgrStrToOid","features":[3,101]},{"name":"SnmpMgrTrapListen","features":[3,101]},{"name":"SnmpOidCompare","features":[101]},{"name":"SnmpOidCopy","features":[101]},{"name":"SnmpOidToStr","features":[101]},{"name":"SnmpOpen","features":[3,101]},{"name":"SnmpRecvMsg","features":[101]},{"name":"SnmpRegister","features":[101]},{"name":"SnmpSendMsg","features":[101]},{"name":"SnmpSetPduData","features":[101]},{"name":"SnmpSetPort","features":[101]},{"name":"SnmpSetRetransmitMode","features":[101]},{"name":"SnmpSetRetry","features":[101]},{"name":"SnmpSetTimeout","features":[101]},{"name":"SnmpSetTranslateMode","features":[101]},{"name":"SnmpSetVb","features":[101]},{"name":"SnmpStartup","features":[101]},{"name":"SnmpStartupEx","features":[101]},{"name":"SnmpStrToContext","features":[101]},{"name":"SnmpStrToEntity","features":[101]},{"name":"SnmpStrToOid","features":[101]},{"name":"SnmpSvcGetUptime","features":[101]},{"name":"SnmpSvcSetLogLevel","features":[101]},{"name":"SnmpSvcSetLogType","features":[101]},{"name":"SnmpUtilAsnAnyCpy","features":[3,101]},{"name":"SnmpUtilAsnAnyFree","features":[3,101]},{"name":"SnmpUtilDbgPrint","features":[101]},{"name":"SnmpUtilIdsToA","features":[101]},{"name":"SnmpUtilMemAlloc","features":[101]},{"name":"SnmpUtilMemFree","features":[101]},{"name":"SnmpUtilMemReAlloc","features":[101]},{"name":"SnmpUtilOctetsCmp","features":[3,101]},{"name":"SnmpUtilOctetsCpy","features":[3,101]},{"name":"SnmpUtilOctetsFree","features":[3,101]},{"name":"SnmpUtilOctetsNCmp","features":[3,101]},{"name":"SnmpUtilOidAppend","features":[101]},{"name":"SnmpUtilOidCmp","features":[101]},{"name":"SnmpUtilOidCpy","features":[101]},{"name":"SnmpUtilOidFree","features":[101]},{"name":"SnmpUtilOidNCmp","features":[101]},{"name":"SnmpUtilOidToA","features":[101]},{"name":"SnmpUtilPrintAsnAny","features":[3,101]},{"name":"SnmpUtilPrintOid","features":[101]},{"name":"SnmpUtilVarBindCpy","features":[3,101]},{"name":"SnmpUtilVarBindFree","features":[3,101]},{"name":"SnmpUtilVarBindListCpy","features":[3,101]},{"name":"SnmpUtilVarBindListFree","features":[3,101]},{"name":"SnmpVarBind","features":[3,101]},{"name":"SnmpVarBindList","features":[3,101]},{"name":"SnmpVarBindList","features":[3,101]},{"name":"smiCNTR64","features":[101]},{"name":"smiOCTETS","features":[101]},{"name":"smiOID","features":[101]},{"name":"smiVALUE","features":[101]},{"name":"smiVENDORINFO","features":[101]}],"461":[{"name":"CONNDLG_CONN_POINT","features":[102]},{"name":"CONNDLG_HIDE_BOX","features":[102]},{"name":"CONNDLG_NOT_PERSIST","features":[102]},{"name":"CONNDLG_PERSIST","features":[102]},{"name":"CONNDLG_RO_PATH","features":[102]},{"name":"CONNDLG_USE_MRU","features":[102]},{"name":"CONNECTDLGSTRUCTA","features":[3,102]},{"name":"CONNECTDLGSTRUCTW","features":[3,102]},{"name":"CONNECTDLGSTRUCT_FLAGS","features":[102]},{"name":"CONNECT_CMD_SAVECRED","features":[102]},{"name":"CONNECT_COMMANDLINE","features":[102]},{"name":"CONNECT_CRED_RESET","features":[102]},{"name":"CONNECT_CURRENT_MEDIA","features":[102]},{"name":"CONNECT_DEFERRED","features":[102]},{"name":"CONNECT_GLOBAL_MAPPING","features":[102]},{"name":"CONNECT_INTERACTIVE","features":[102]},{"name":"CONNECT_LOCALDRIVE","features":[102]},{"name":"CONNECT_NEED_DRIVE","features":[102]},{"name":"CONNECT_PROMPT","features":[102]},{"name":"CONNECT_REDIRECT","features":[102]},{"name":"CONNECT_REFCOUNT","features":[102]},{"name":"CONNECT_REQUIRE_INTEGRITY","features":[102]},{"name":"CONNECT_REQUIRE_PRIVACY","features":[102]},{"name":"CONNECT_RESERVED","features":[102]},{"name":"CONNECT_TEMPORARY","features":[102]},{"name":"CONNECT_UPDATE_PROFILE","features":[102]},{"name":"CONNECT_UPDATE_RECENT","features":[102]},{"name":"CONNECT_WRITE_THROUGH_SEMANTICS","features":[102]},{"name":"DISCDLGSTRUCTA","features":[3,102]},{"name":"DISCDLGSTRUCTW","features":[3,102]},{"name":"DISCDLGSTRUCT_FLAGS","features":[102]},{"name":"DISC_NO_FORCE","features":[102]},{"name":"DISC_UPDATE_PROFILE","features":[102]},{"name":"MultinetGetConnectionPerformanceA","features":[102]},{"name":"MultinetGetConnectionPerformanceW","features":[102]},{"name":"NETCONNECTINFOSTRUCT","features":[102]},{"name":"NETINFOSTRUCT","features":[3,102]},{"name":"NETINFOSTRUCT_CHARACTERISTICS","features":[102]},{"name":"NETINFO_DISKRED","features":[102]},{"name":"NETINFO_DLL16","features":[102]},{"name":"NETINFO_PRINTERRED","features":[102]},{"name":"NETPROPERTY_PERSISTENT","features":[102]},{"name":"NETRESOURCEA","features":[102]},{"name":"NETRESOURCEW","features":[102]},{"name":"NETWORK_NAME_FORMAT_FLAGS","features":[102]},{"name":"NET_CONNECT_FLAGS","features":[102]},{"name":"NET_RESOURCE_SCOPE","features":[102]},{"name":"NET_RESOURCE_TYPE","features":[102]},{"name":"NOTIFYADD","features":[3,102]},{"name":"NOTIFYCANCEL","features":[3,102]},{"name":"NOTIFYINFO","features":[102]},{"name":"NOTIFY_POST","features":[102]},{"name":"NOTIFY_PRE","features":[102]},{"name":"NPAddConnection","features":[102]},{"name":"NPAddConnection3","features":[3,102]},{"name":"NPAddConnection4","features":[3,102]},{"name":"NPCancelConnection","features":[3,102]},{"name":"NPCancelConnection2","features":[3,102]},{"name":"NPCloseEnum","features":[3,102]},{"name":"NPDIRECTORY_NOTIFY_OPERATION","features":[102]},{"name":"NPEnumResource","features":[3,102]},{"name":"NPFormatNetworkName","features":[102]},{"name":"NPGetCaps","features":[102]},{"name":"NPGetConnection","features":[102]},{"name":"NPGetConnection3","features":[102]},{"name":"NPGetConnectionPerformance","features":[102]},{"name":"NPGetPersistentUseOptionsForConnection","features":[102]},{"name":"NPGetResourceInformation","features":[102]},{"name":"NPGetResourceParent","features":[102]},{"name":"NPGetUniversalName","features":[102]},{"name":"NPGetUser","features":[102]},{"name":"NPOpenEnum","features":[3,102]},{"name":"NP_PROPERTY_DIALOG_SELECTION","features":[102]},{"name":"PF_AddConnectNotify","features":[3,102]},{"name":"PF_CancelConnectNotify","features":[3,102]},{"name":"PF_NPAddConnection","features":[102]},{"name":"PF_NPAddConnection3","features":[3,102]},{"name":"PF_NPAddConnection4","features":[3,102]},{"name":"PF_NPCancelConnection","features":[3,102]},{"name":"PF_NPCancelConnection2","features":[3,102]},{"name":"PF_NPCloseEnum","features":[3,102]},{"name":"PF_NPDeviceMode","features":[3,102]},{"name":"PF_NPDirectoryNotify","features":[3,102]},{"name":"PF_NPEnumResource","features":[3,102]},{"name":"PF_NPFMXEditPerm","features":[3,102]},{"name":"PF_NPFMXGetPermCaps","features":[102]},{"name":"PF_NPFMXGetPermHelp","features":[3,102]},{"name":"PF_NPFormatNetworkName","features":[102]},{"name":"PF_NPGetCaps","features":[102]},{"name":"PF_NPGetConnection","features":[102]},{"name":"PF_NPGetConnection3","features":[102]},{"name":"PF_NPGetConnectionPerformance","features":[102]},{"name":"PF_NPGetDirectoryType","features":[3,102]},{"name":"PF_NPGetPersistentUseOptionsForConnection","features":[102]},{"name":"PF_NPGetPropertyText","features":[102]},{"name":"PF_NPGetResourceInformation","features":[102]},{"name":"PF_NPGetResourceParent","features":[102]},{"name":"PF_NPGetUniversalName","features":[102]},{"name":"PF_NPGetUser","features":[102]},{"name":"PF_NPLogonNotify","features":[3,102]},{"name":"PF_NPOpenEnum","features":[3,102]},{"name":"PF_NPPasswordChangeNotify","features":[102]},{"name":"PF_NPPropertyDialog","features":[3,102]},{"name":"PF_NPSearchDialog","features":[3,102]},{"name":"REMOTE_NAME_INFOA","features":[102]},{"name":"REMOTE_NAME_INFOW","features":[102]},{"name":"REMOTE_NAME_INFO_LEVEL","features":[102]},{"name":"RESOURCEDISPLAYTYPE_DIRECTORY","features":[102]},{"name":"RESOURCEDISPLAYTYPE_NDSCONTAINER","features":[102]},{"name":"RESOURCEDISPLAYTYPE_NETWORK","features":[102]},{"name":"RESOURCEDISPLAYTYPE_ROOT","features":[102]},{"name":"RESOURCEDISPLAYTYPE_SHAREADMIN","features":[102]},{"name":"RESOURCETYPE_ANY","features":[102]},{"name":"RESOURCETYPE_DISK","features":[102]},{"name":"RESOURCETYPE_PRINT","features":[102]},{"name":"RESOURCETYPE_RESERVED","features":[102]},{"name":"RESOURCETYPE_UNKNOWN","features":[102]},{"name":"RESOURCEUSAGE_ALL","features":[102]},{"name":"RESOURCEUSAGE_ATTACHED","features":[102]},{"name":"RESOURCEUSAGE_CONNECTABLE","features":[102]},{"name":"RESOURCEUSAGE_CONTAINER","features":[102]},{"name":"RESOURCEUSAGE_NOLOCALDEVICE","features":[102]},{"name":"RESOURCEUSAGE_NONE","features":[102]},{"name":"RESOURCEUSAGE_RESERVED","features":[102]},{"name":"RESOURCEUSAGE_SIBLING","features":[102]},{"name":"RESOURCE_CONNECTED","features":[102]},{"name":"RESOURCE_CONTEXT","features":[102]},{"name":"RESOURCE_GLOBALNET","features":[102]},{"name":"RESOURCE_RECENT","features":[102]},{"name":"RESOURCE_REMEMBERED","features":[102]},{"name":"UNC_INFO_LEVEL","features":[102]},{"name":"UNIVERSAL_NAME_INFOA","features":[102]},{"name":"UNIVERSAL_NAME_INFOW","features":[102]},{"name":"UNIVERSAL_NAME_INFO_LEVEL","features":[102]},{"name":"WNCON_DYNAMIC","features":[102]},{"name":"WNCON_FORNETCARD","features":[102]},{"name":"WNCON_NOTROUTED","features":[102]},{"name":"WNCON_SLOWLINK","features":[102]},{"name":"WNDN_MKDIR","features":[102]},{"name":"WNDN_MVDIR","features":[102]},{"name":"WNDN_RMDIR","features":[102]},{"name":"WNDT_NETWORK","features":[102]},{"name":"WNDT_NORMAL","features":[102]},{"name":"WNET_OPEN_ENUM_USAGE","features":[102]},{"name":"WNFMT_ABBREVIATED","features":[102]},{"name":"WNFMT_CONNECTION","features":[102]},{"name":"WNFMT_INENUM","features":[102]},{"name":"WNFMT_MULTILINE","features":[102]},{"name":"WNGETCON_CONNECTED","features":[102]},{"name":"WNGETCON_DISCONNECTED","features":[102]},{"name":"WNNC_ADMIN","features":[102]},{"name":"WNNC_ADM_DIRECTORYNOTIFY","features":[102]},{"name":"WNNC_ADM_GETDIRECTORYTYPE","features":[102]},{"name":"WNNC_CONNECTION","features":[102]},{"name":"WNNC_CONNECTION_FLAGS","features":[102]},{"name":"WNNC_CON_ADDCONNECTION","features":[102]},{"name":"WNNC_CON_ADDCONNECTION3","features":[102]},{"name":"WNNC_CON_ADDCONNECTION4","features":[102]},{"name":"WNNC_CON_CANCELCONNECTION","features":[102]},{"name":"WNNC_CON_CANCELCONNECTION2","features":[102]},{"name":"WNNC_CON_DEFER","features":[102]},{"name":"WNNC_CON_GETCONNECTIONS","features":[102]},{"name":"WNNC_CON_GETPERFORMANCE","features":[102]},{"name":"WNNC_DIALOG","features":[102]},{"name":"WNNC_DLG_DEVICEMODE","features":[102]},{"name":"WNNC_DLG_FORMATNETWORKNAME","features":[102]},{"name":"WNNC_DLG_GETRESOURCEINFORMATION","features":[102]},{"name":"WNNC_DLG_GETRESOURCEPARENT","features":[102]},{"name":"WNNC_DLG_PERMISSIONEDITOR","features":[102]},{"name":"WNNC_DLG_PROPERTYDIALOG","features":[102]},{"name":"WNNC_DLG_SEARCHDIALOG","features":[102]},{"name":"WNNC_DRIVER_VERSION","features":[102]},{"name":"WNNC_ENUMERATION","features":[102]},{"name":"WNNC_ENUM_CONTEXT","features":[102]},{"name":"WNNC_ENUM_GLOBAL","features":[102]},{"name":"WNNC_ENUM_LOCAL","features":[102]},{"name":"WNNC_ENUM_SHAREABLE","features":[102]},{"name":"WNNC_NET_NONE","features":[102]},{"name":"WNNC_NET_TYPE","features":[102]},{"name":"WNNC_SPEC_VERSION","features":[102]},{"name":"WNNC_SPEC_VERSION51","features":[102]},{"name":"WNNC_START","features":[102]},{"name":"WNNC_USER","features":[102]},{"name":"WNNC_USR_GETUSER","features":[102]},{"name":"WNNC_WAIT_FOR_START","features":[102]},{"name":"WNPERMC_AUDIT","features":[102]},{"name":"WNPERMC_OWNER","features":[102]},{"name":"WNPERMC_PERM","features":[102]},{"name":"WNPERM_DLG","features":[102]},{"name":"WNPERM_DLG_AUDIT","features":[102]},{"name":"WNPERM_DLG_OWNER","features":[102]},{"name":"WNPERM_DLG_PERM","features":[102]},{"name":"WNPS_DIR","features":[102]},{"name":"WNPS_FILE","features":[102]},{"name":"WNPS_MULT","features":[102]},{"name":"WNSRCH_REFRESH_FIRST_LEVEL","features":[102]},{"name":"WNTYPE_COMM","features":[102]},{"name":"WNTYPE_DRIVE","features":[102]},{"name":"WNTYPE_FILE","features":[102]},{"name":"WNTYPE_PRINTER","features":[102]},{"name":"WN_CREDENTIAL_CLASS","features":[102]},{"name":"WN_NETWORK_CLASS","features":[102]},{"name":"WN_NT_PASSWORD_CHANGED","features":[102]},{"name":"WN_PRIMARY_AUTHENT_CLASS","features":[102]},{"name":"WN_SERVICE_CLASS","features":[102]},{"name":"WN_VALID_LOGON_ACCOUNT","features":[102]},{"name":"WNetAddConnection2A","features":[3,102]},{"name":"WNetAddConnection2W","features":[3,102]},{"name":"WNetAddConnection3A","features":[3,102]},{"name":"WNetAddConnection3W","features":[3,102]},{"name":"WNetAddConnection4A","features":[3,102]},{"name":"WNetAddConnection4W","features":[3,102]},{"name":"WNetAddConnectionA","features":[3,102]},{"name":"WNetAddConnectionW","features":[3,102]},{"name":"WNetCancelConnection2A","features":[3,102]},{"name":"WNetCancelConnection2W","features":[3,102]},{"name":"WNetCancelConnectionA","features":[3,102]},{"name":"WNetCancelConnectionW","features":[3,102]},{"name":"WNetCloseEnum","features":[3,102]},{"name":"WNetConnectionDialog","features":[3,102]},{"name":"WNetConnectionDialog1A","features":[3,102]},{"name":"WNetConnectionDialog1W","features":[3,102]},{"name":"WNetDisconnectDialog","features":[3,102]},{"name":"WNetDisconnectDialog1A","features":[3,102]},{"name":"WNetDisconnectDialog1W","features":[3,102]},{"name":"WNetEnumResourceA","features":[3,102]},{"name":"WNetEnumResourceW","features":[3,102]},{"name":"WNetGetConnectionA","features":[3,102]},{"name":"WNetGetConnectionW","features":[3,102]},{"name":"WNetGetLastErrorA","features":[3,102]},{"name":"WNetGetLastErrorW","features":[3,102]},{"name":"WNetGetNetworkInformationA","features":[3,102]},{"name":"WNetGetNetworkInformationW","features":[3,102]},{"name":"WNetGetProviderNameA","features":[3,102]},{"name":"WNetGetProviderNameW","features":[3,102]},{"name":"WNetGetResourceInformationA","features":[3,102]},{"name":"WNetGetResourceInformationW","features":[3,102]},{"name":"WNetGetResourceParentA","features":[3,102]},{"name":"WNetGetResourceParentW","features":[3,102]},{"name":"WNetGetUniversalNameA","features":[3,102]},{"name":"WNetGetUniversalNameW","features":[3,102]},{"name":"WNetGetUserA","features":[3,102]},{"name":"WNetGetUserW","features":[3,102]},{"name":"WNetOpenEnumA","features":[3,102]},{"name":"WNetOpenEnumW","features":[3,102]},{"name":"WNetSetLastErrorA","features":[102]},{"name":"WNetSetLastErrorW","features":[102]},{"name":"WNetUseConnection4A","features":[3,102]},{"name":"WNetUseConnection4W","features":[3,102]},{"name":"WNetUseConnectionA","features":[3,102]},{"name":"WNetUseConnectionW","features":[3,102]}],"462":[{"name":"AUTHNEXTSTEP","features":[103]},{"name":"CancelRequest","features":[103]},{"name":"DAV_AUTHN_SCHEME_BASIC","features":[103]},{"name":"DAV_AUTHN_SCHEME_CERT","features":[103]},{"name":"DAV_AUTHN_SCHEME_DIGEST","features":[103]},{"name":"DAV_AUTHN_SCHEME_FBA","features":[103]},{"name":"DAV_AUTHN_SCHEME_NEGOTIATE","features":[103]},{"name":"DAV_AUTHN_SCHEME_NTLM","features":[103]},{"name":"DAV_AUTHN_SCHEME_PASSPORT","features":[103]},{"name":"DAV_CALLBACK_AUTH_BLOB","features":[103]},{"name":"DAV_CALLBACK_AUTH_UNP","features":[103]},{"name":"DAV_CALLBACK_CRED","features":[3,103]},{"name":"DavAddConnection","features":[3,103]},{"name":"DavCancelConnectionsToServer","features":[3,103]},{"name":"DavDeleteConnection","features":[3,103]},{"name":"DavFlushFile","features":[3,103]},{"name":"DavGetExtendedError","features":[3,103]},{"name":"DavGetHTTPFromUNCPath","features":[103]},{"name":"DavGetTheLockOwnerOfTheFile","features":[103]},{"name":"DavGetUNCFromHTTPPath","features":[103]},{"name":"DavInvalidateCache","features":[103]},{"name":"DavRegisterAuthCallback","features":[3,103]},{"name":"DavUnregisterAuthCallback","features":[103]},{"name":"DefaultBehavior","features":[103]},{"name":"PFNDAVAUTHCALLBACK","features":[3,103]},{"name":"PFNDAVAUTHCALLBACK_FREECRED","features":[103]},{"name":"RetryRequest","features":[103]}],"463":[{"name":"CH_DESCRIPTION_TYPE","features":[104]},{"name":"DEVPKEY_InfraCast_AccessPointBssid","features":[1,104]},{"name":"DEVPKEY_InfraCast_ChallengeAep","features":[1,104]},{"name":"DEVPKEY_InfraCast_DevnodeAep","features":[1,104]},{"name":"DEVPKEY_InfraCast_HostName_ResolutionMode","features":[1,104]},{"name":"DEVPKEY_InfraCast_PinSupported","features":[1,104]},{"name":"DEVPKEY_InfraCast_RtspTcpConnectionParametersSupported","features":[1,104]},{"name":"DEVPKEY_InfraCast_SinkHostName","features":[1,104]},{"name":"DEVPKEY_InfraCast_SinkIpAddress","features":[1,104]},{"name":"DEVPKEY_InfraCast_StreamSecuritySupported","features":[1,104]},{"name":"DEVPKEY_InfraCast_Supported","features":[1,104]},{"name":"DEVPKEY_PciDevice_AERCapabilityPresent","features":[1,104]},{"name":"DEVPKEY_PciDevice_AcsCapabilityRegister","features":[1,104]},{"name":"DEVPKEY_PciDevice_AcsCompatibleUpHierarchy","features":[1,104]},{"name":"DEVPKEY_PciDevice_AcsSupport","features":[1,104]},{"name":"DEVPKEY_PciDevice_AriSupport","features":[1,104]},{"name":"DEVPKEY_PciDevice_AtomicsSupported","features":[1,104]},{"name":"DEVPKEY_PciDevice_AtsSupport","features":[1,104]},{"name":"DEVPKEY_PciDevice_BarTypes","features":[1,104]},{"name":"DEVPKEY_PciDevice_BaseClass","features":[1,104]},{"name":"DEVPKEY_PciDevice_Correctable_Error_Mask","features":[1,104]},{"name":"DEVPKEY_PciDevice_CurrentLinkSpeed","features":[1,104]},{"name":"DEVPKEY_PciDevice_CurrentLinkWidth","features":[1,104]},{"name":"DEVPKEY_PciDevice_CurrentPayloadSize","features":[1,104]},{"name":"DEVPKEY_PciDevice_CurrentSpeedAndMode","features":[1,104]},{"name":"DEVPKEY_PciDevice_D3ColdSupport","features":[1,104]},{"name":"DEVPKEY_PciDevice_DeviceType","features":[1,104]},{"name":"DEVPKEY_PciDevice_ECRC_Errors","features":[1,104]},{"name":"DEVPKEY_PciDevice_Error_Reporting","features":[1,104]},{"name":"DEVPKEY_PciDevice_ExpressSpecVersion","features":[1,104]},{"name":"DEVPKEY_PciDevice_FirmwareErrorHandling","features":[1,104]},{"name":"DEVPKEY_PciDevice_InterruptMessageMaximum","features":[1,104]},{"name":"DEVPKEY_PciDevice_InterruptSupport","features":[1,104]},{"name":"DEVPKEY_PciDevice_Label_Id","features":[1,104]},{"name":"DEVPKEY_PciDevice_Label_String","features":[1,104]},{"name":"DEVPKEY_PciDevice_MaxLinkSpeed","features":[1,104]},{"name":"DEVPKEY_PciDevice_MaxLinkWidth","features":[1,104]},{"name":"DEVPKEY_PciDevice_MaxPayloadSize","features":[1,104]},{"name":"DEVPKEY_PciDevice_MaxReadRequestSize","features":[1,104]},{"name":"DEVPKEY_PciDevice_OnPostPath","features":[1,104]},{"name":"DEVPKEY_PciDevice_ParentSerialNumber","features":[1,104]},{"name":"DEVPKEY_PciDevice_ProgIf","features":[1,104]},{"name":"DEVPKEY_PciDevice_RequiresReservedMemoryRegion","features":[1,104]},{"name":"DEVPKEY_PciDevice_RootError_Reporting","features":[1,104]},{"name":"DEVPKEY_PciDevice_S0WakeupSupported","features":[1,104]},{"name":"DEVPKEY_PciDevice_SerialNumber","features":[1,104]},{"name":"DEVPKEY_PciDevice_SriovSupport","features":[1,104]},{"name":"DEVPKEY_PciDevice_SubClass","features":[1,104]},{"name":"DEVPKEY_PciDevice_SupportedLinkSubState","features":[1,104]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Mask","features":[1,104]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Severity","features":[1,104]},{"name":"DEVPKEY_PciDevice_UsbComponentRelation","features":[1,104]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortSpecificAttributes","features":[1,104]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortType","features":[1,104]},{"name":"DEVPKEY_PciDevice_UsbHostRouterName","features":[1,104]},{"name":"DEVPKEY_PciRootBus_ASPMSupport","features":[1,104]},{"name":"DEVPKEY_PciRootBus_ClockPowerManagementSupport","features":[1,104]},{"name":"DEVPKEY_PciRootBus_CurrentSpeedAndMode","features":[1,104]},{"name":"DEVPKEY_PciRootBus_DeviceIDMessagingCapable","features":[1,104]},{"name":"DEVPKEY_PciRootBus_ExtendedConfigAvailable","features":[1,104]},{"name":"DEVPKEY_PciRootBus_ExtendedPCIConfigOpRegionSupport","features":[1,104]},{"name":"DEVPKEY_PciRootBus_MSISupport","features":[1,104]},{"name":"DEVPKEY_PciRootBus_NativePciExpressControl","features":[1,104]},{"name":"DEVPKEY_PciRootBus_PCIExpressAERControl","features":[1,104]},{"name":"DEVPKEY_PciRootBus_PCIExpressCapabilityControl","features":[1,104]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativeHotPlugControl","features":[1,104]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativePMEControl","features":[1,104]},{"name":"DEVPKEY_PciRootBus_PCISegmentGroupsSupport","features":[1,104]},{"name":"DEVPKEY_PciRootBus_SHPCNativeHotPlugControl","features":[1,104]},{"name":"DEVPKEY_PciRootBus_SecondaryBusWidth","features":[1,104]},{"name":"DEVPKEY_PciRootBus_SecondaryInterface","features":[1,104]},{"name":"DEVPKEY_PciRootBus_SupportedSpeedsAndModes","features":[1,104]},{"name":"DEVPKEY_PciRootBus_SystemMsiSupport","features":[1,104]},{"name":"DEVPKEY_WiFiDirectServices_AdvertisementId","features":[1,104]},{"name":"DEVPKEY_WiFiDirectServices_RequestServiceInformation","features":[1,104]},{"name":"DEVPKEY_WiFiDirectServices_ServiceAddress","features":[1,104]},{"name":"DEVPKEY_WiFiDirectServices_ServiceConfigMethods","features":[1,104]},{"name":"DEVPKEY_WiFiDirectServices_ServiceInformation","features":[1,104]},{"name":"DEVPKEY_WiFiDirectServices_ServiceName","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_DeviceAddress","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_DeviceAddressCopy","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_FoundWsbService","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_GroupId","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_InformationElements","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_InterfaceAddress","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_InterfaceGuid","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_IsConnected","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_IsDMGCapable","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_IsLegacyDevice","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_IsMiracastLCPSupported","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_IsRecentlyAssociated","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_IsVisible","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_LinkQuality","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_MiracastVersion","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_Miracast_SessionMgmtControlPort","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_NoMiracastAutoProject","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_RtspTcpConnectionParametersSupported","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_Service_Aeps","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_Services","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_SupportedChannelList","features":[1,104]},{"name":"DEVPKEY_WiFiDirect_TransientAssociation","features":[1,104]},{"name":"DEVPKEY_WiFi_InterfaceGuid","features":[1,104]},{"name":"DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY","features":[104]},{"name":"DEVPROP_PCIDEVICE_ACSSUPPORT","features":[104]},{"name":"DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE","features":[104]},{"name":"DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE","features":[104]},{"name":"DEVPROP_PCIDEVICE_INTERRUPTTYPE","features":[104]},{"name":"DEVPROP_PCIDEVICE_SRIOVSUPPORT","features":[104]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKSPEED","features":[104]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH","features":[104]},{"name":"DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE","features":[104]},{"name":"DEVPROP_PCIEXPRESSDEVICE_SPEC_VERSION","features":[104]},{"name":"DEVPROP_PCIROOTBUS_BUSWIDTH","features":[104]},{"name":"DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE","features":[104]},{"name":"DEVPROP_PCIROOTBUS_SECONDARYINTERFACE","features":[104]},{"name":"DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES","features":[104]},{"name":"DISCOVERY_FILTER_BITMASK_ANY","features":[104]},{"name":"DISCOVERY_FILTER_BITMASK_DEVICE","features":[104]},{"name":"DISCOVERY_FILTER_BITMASK_GO","features":[104]},{"name":"DOT11EXTIHV_ADAPTER_RESET","features":[3,104]},{"name":"DOT11EXTIHV_CONTROL","features":[3,104]},{"name":"DOT11EXTIHV_CREATE_DISCOVERY_PROFILES","features":[3,104,105]},{"name":"DOT11EXTIHV_DEINIT_ADAPTER","features":[3,104]},{"name":"DOT11EXTIHV_DEINIT_SERVICE","features":[104]},{"name":"DOT11EXTIHV_GET_VERSION_INFO","features":[104]},{"name":"DOT11EXTIHV_INIT_ADAPTER","features":[3,104]},{"name":"DOT11EXTIHV_INIT_SERVICE","features":[3,18,104,105,106]},{"name":"DOT11EXTIHV_INIT_VIRTUAL_STATION","features":[3,104]},{"name":"DOT11EXTIHV_IS_UI_REQUEST_PENDING","features":[3,104]},{"name":"DOT11EXTIHV_ONEX_INDICATE_RESULT","features":[3,104,105]},{"name":"DOT11EXTIHV_PERFORM_CAPABILITY_MATCH","features":[3,104,105]},{"name":"DOT11EXTIHV_PERFORM_POST_ASSOCIATE","features":[3,18,104]},{"name":"DOT11EXTIHV_PERFORM_PRE_ASSOCIATE","features":[3,104,105]},{"name":"DOT11EXTIHV_PROCESS_SESSION_CHANGE","features":[104,106]},{"name":"DOT11EXTIHV_PROCESS_UI_RESPONSE","features":[104]},{"name":"DOT11EXTIHV_QUERY_UI_REQUEST","features":[3,104]},{"name":"DOT11EXTIHV_RECEIVE_INDICATION","features":[3,104]},{"name":"DOT11EXTIHV_RECEIVE_PACKET","features":[3,104]},{"name":"DOT11EXTIHV_SEND_PACKET_COMPLETION","features":[3,104]},{"name":"DOT11EXTIHV_STOP_POST_ASSOCIATE","features":[3,104]},{"name":"DOT11EXTIHV_VALIDATE_PROFILE","features":[3,104,105]},{"name":"DOT11EXT_ALLOCATE_BUFFER","features":[104]},{"name":"DOT11EXT_APIS","features":[3,18,104,105]},{"name":"DOT11EXT_FREE_BUFFER","features":[104]},{"name":"DOT11EXT_GET_PROFILE_CUSTOM_USER_DATA","features":[3,104]},{"name":"DOT11EXT_IHV_CONNECTION_PHASE","features":[104]},{"name":"DOT11EXT_IHV_CONNECTIVITY_PROFILE","features":[104]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE","features":[3,104]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE_LIST","features":[3,104]},{"name":"DOT11EXT_IHV_HANDLERS","features":[3,18,104,105,106]},{"name":"DOT11EXT_IHV_INDICATION_TYPE","features":[104]},{"name":"DOT11EXT_IHV_PARAMS","features":[3,104,105]},{"name":"DOT11EXT_IHV_PROFILE_PARAMS","features":[3,104,105]},{"name":"DOT11EXT_IHV_SECURITY_PROFILE","features":[3,104]},{"name":"DOT11EXT_IHV_SSID_LIST","features":[104]},{"name":"DOT11EXT_IHV_UI_REQUEST","features":[104]},{"name":"DOT11EXT_NIC_SPECIFIC_EXTENSION","features":[3,104]},{"name":"DOT11EXT_ONEX_START","features":[3,104,105]},{"name":"DOT11EXT_ONEX_STOP","features":[3,104]},{"name":"DOT11EXT_POST_ASSOCIATE_COMPLETION","features":[3,104]},{"name":"DOT11EXT_PRE_ASSOCIATE_COMPLETION","features":[3,104]},{"name":"DOT11EXT_PROCESS_ONEX_PACKET","features":[3,104]},{"name":"DOT11EXT_PSK_MAX_LENGTH","features":[104]},{"name":"DOT11EXT_QUERY_VIRTUAL_STATION_PROPERTIES","features":[3,104]},{"name":"DOT11EXT_RELEASE_VIRTUAL_STATION","features":[3,104]},{"name":"DOT11EXT_REQUEST_VIRTUAL_STATION","features":[3,104]},{"name":"DOT11EXT_SEND_NOTIFICATION","features":[3,104]},{"name":"DOT11EXT_SEND_PACKET","features":[3,104]},{"name":"DOT11EXT_SEND_UI_REQUEST","features":[3,104]},{"name":"DOT11EXT_SET_AUTH_ALGORITHM","features":[3,104]},{"name":"DOT11EXT_SET_CURRENT_PROFILE","features":[3,104]},{"name":"DOT11EXT_SET_DEFAULT_KEY","features":[3,18,104]},{"name":"DOT11EXT_SET_DEFAULT_KEY_ID","features":[3,104]},{"name":"DOT11EXT_SET_ETHERTYPE_HANDLING","features":[3,104]},{"name":"DOT11EXT_SET_EXCLUDE_UNENCRYPTED","features":[3,104]},{"name":"DOT11EXT_SET_KEY_MAPPING_KEY","features":[3,104]},{"name":"DOT11EXT_SET_MULTICAST_CIPHER_ALGORITHM","features":[3,104]},{"name":"DOT11EXT_SET_PROFILE_CUSTOM_USER_DATA","features":[3,104]},{"name":"DOT11EXT_SET_UNICAST_CIPHER_ALGORITHM","features":[3,104]},{"name":"DOT11EXT_SET_VIRTUAL_STATION_AP_PROPERTIES","features":[3,104]},{"name":"DOT11EXT_VIRTUAL_STATION_APIS","features":[3,104]},{"name":"DOT11EXT_VIRTUAL_STATION_AP_PROPERTY","features":[3,104]},{"name":"DOT11_ACCESSNETWORKOPTIONS","features":[104]},{"name":"DOT11_AC_PARAM","features":[104]},{"name":"DOT11_ADAPTER","features":[104]},{"name":"DOT11_ADDITIONAL_IE","features":[18,104]},{"name":"DOT11_ADDITIONAL_IE_REVISION_1","features":[104]},{"name":"DOT11_ADHOC_AUTH_ALGORITHM","features":[104]},{"name":"DOT11_ADHOC_AUTH_ALGO_80211_OPEN","features":[104]},{"name":"DOT11_ADHOC_AUTH_ALGO_INVALID","features":[104]},{"name":"DOT11_ADHOC_AUTH_ALGO_RSNA_PSK","features":[104]},{"name":"DOT11_ADHOC_CIPHER_ALGORITHM","features":[104]},{"name":"DOT11_ADHOC_CIPHER_ALGO_CCMP","features":[104]},{"name":"DOT11_ADHOC_CIPHER_ALGO_INVALID","features":[104]},{"name":"DOT11_ADHOC_CIPHER_ALGO_NONE","features":[104]},{"name":"DOT11_ADHOC_CIPHER_ALGO_WEP","features":[104]},{"name":"DOT11_ADHOC_CONNECT_FAIL_DOMAIN_MISMATCH","features":[104]},{"name":"DOT11_ADHOC_CONNECT_FAIL_OTHER","features":[104]},{"name":"DOT11_ADHOC_CONNECT_FAIL_PASSPHRASE_MISMATCH","features":[104]},{"name":"DOT11_ADHOC_CONNECT_FAIL_REASON","features":[104]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS","features":[104]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTED","features":[104]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTING","features":[104]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_DISCONNECTED","features":[104]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_FORMED","features":[104]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_INVALID","features":[104]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS","features":[3,18,104]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_ANQP_QUERY_RESULT","features":[104]},{"name":"DOT11_AP_JOIN_REQUEST","features":[104]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS","features":[3,18,104]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_2","features":[104]},{"name":"DOT11_ASSOCIATION_INFO_EX","features":[104]},{"name":"DOT11_ASSOCIATION_INFO_LIST","features":[18,104]},{"name":"DOT11_ASSOCIATION_INFO_LIST_REVISION_1","features":[104]},{"name":"DOT11_ASSOCIATION_PARAMS","features":[18,104]},{"name":"DOT11_ASSOCIATION_PARAMS_REVISION_1","features":[104]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS","features":[18,104]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_ASSOCIATION_STATE","features":[104]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OS","features":[104]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OTHER","features":[104]},{"name":"DOT11_ASSOC_ERROR_SOURCE_REMOTE","features":[104]},{"name":"DOT11_ASSOC_STATUS_SUCCESS","features":[104]},{"name":"DOT11_AUTH_ALGORITHM","features":[104]},{"name":"DOT11_AUTH_ALGORITHM_LIST","features":[18,104]},{"name":"DOT11_AUTH_ALGORITHM_LIST_REVISION_1","features":[104]},{"name":"DOT11_AUTH_ALGO_80211_OPEN","features":[104]},{"name":"DOT11_AUTH_ALGO_80211_SHARED_KEY","features":[104]},{"name":"DOT11_AUTH_ALGO_IHV_END","features":[104]},{"name":"DOT11_AUTH_ALGO_IHV_START","features":[104]},{"name":"DOT11_AUTH_ALGO_MICHAEL","features":[104]},{"name":"DOT11_AUTH_ALGO_OWE","features":[104]},{"name":"DOT11_AUTH_ALGO_RSNA","features":[104]},{"name":"DOT11_AUTH_ALGO_RSNA_PSK","features":[104]},{"name":"DOT11_AUTH_ALGO_WPA","features":[104]},{"name":"DOT11_AUTH_ALGO_WPA3","features":[104]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT","features":[104]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT_192","features":[104]},{"name":"DOT11_AUTH_ALGO_WPA3_SAE","features":[104]},{"name":"DOT11_AUTH_ALGO_WPA_NONE","features":[104]},{"name":"DOT11_AUTH_ALGO_WPA_PSK","features":[104]},{"name":"DOT11_AUTH_CIPHER_PAIR","features":[104]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST","features":[18,104]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST_REVISION_1","features":[104]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST","features":[18,104]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST_REVISION_1","features":[104]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST","features":[18,104]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST_REVISION_1","features":[104]},{"name":"DOT11_BAND","features":[104]},{"name":"DOT11_BSSID_CANDIDATE","features":[104]},{"name":"DOT11_BSSID_LIST","features":[18,104]},{"name":"DOT11_BSSID_LIST_REVISION_1","features":[104]},{"name":"DOT11_BSS_DESCRIPTION","features":[104]},{"name":"DOT11_BSS_ENTRY","features":[3,104]},{"name":"DOT11_BSS_ENTRY_BYTE_ARRAY_REVISION_1","features":[104]},{"name":"DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO","features":[104]},{"name":"DOT11_BSS_LIST","features":[104]},{"name":"DOT11_BSS_TYPE","features":[104]},{"name":"DOT11_BYTE_ARRAY","features":[18,104]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS","features":[18,104]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_END","features":[104]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_START","features":[104]},{"name":"DOT11_CAPABILITY_CHANNEL_AGILITY","features":[104]},{"name":"DOT11_CAPABILITY_DSSSOFDM","features":[104]},{"name":"DOT11_CAPABILITY_INFO_CF_POLLABLE","features":[104]},{"name":"DOT11_CAPABILITY_INFO_CF_POLL_REQ","features":[104]},{"name":"DOT11_CAPABILITY_INFO_ESS","features":[104]},{"name":"DOT11_CAPABILITY_INFO_IBSS","features":[104]},{"name":"DOT11_CAPABILITY_INFO_PRIVACY","features":[104]},{"name":"DOT11_CAPABILITY_PBCC","features":[104]},{"name":"DOT11_CAPABILITY_SHORT_PREAMBLE","features":[104]},{"name":"DOT11_CAPABILITY_SHORT_SLOT_TIME","features":[104]},{"name":"DOT11_CCA_MODE_CS_ONLY","features":[104]},{"name":"DOT11_CCA_MODE_CS_WITH_TIMER","features":[104]},{"name":"DOT11_CCA_MODE_ED_ONLY","features":[104]},{"name":"DOT11_CCA_MODE_ED_and_CS","features":[104]},{"name":"DOT11_CCA_MODE_HRCS_AND_ED","features":[104]},{"name":"DOT11_CHANNEL_HINT","features":[104]},{"name":"DOT11_CIPHER_ALGORITHM","features":[104]},{"name":"DOT11_CIPHER_ALGORITHM_LIST","features":[18,104]},{"name":"DOT11_CIPHER_ALGORITHM_LIST_REVISION_1","features":[104]},{"name":"DOT11_CIPHER_ALGO_BIP","features":[104]},{"name":"DOT11_CIPHER_ALGO_BIP_CMAC_256","features":[104]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_128","features":[104]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_256","features":[104]},{"name":"DOT11_CIPHER_ALGO_CCMP","features":[104]},{"name":"DOT11_CIPHER_ALGO_CCMP_256","features":[104]},{"name":"DOT11_CIPHER_ALGO_GCMP","features":[104]},{"name":"DOT11_CIPHER_ALGO_GCMP_256","features":[104]},{"name":"DOT11_CIPHER_ALGO_IHV_END","features":[104]},{"name":"DOT11_CIPHER_ALGO_IHV_START","features":[104]},{"name":"DOT11_CIPHER_ALGO_NONE","features":[104]},{"name":"DOT11_CIPHER_ALGO_RSN_USE_GROUP","features":[104]},{"name":"DOT11_CIPHER_ALGO_TKIP","features":[104]},{"name":"DOT11_CIPHER_ALGO_WEP","features":[104]},{"name":"DOT11_CIPHER_ALGO_WEP104","features":[104]},{"name":"DOT11_CIPHER_ALGO_WEP40","features":[104]},{"name":"DOT11_CIPHER_ALGO_WPA_USE_GROUP","features":[104]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE","features":[3,18,104]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE_REVISION_1","features":[104]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE","features":[3,104]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE_BYTE_ARRAY_REVISION_1","features":[104]},{"name":"DOT11_CONF_ALGO_TKIP","features":[104]},{"name":"DOT11_CONF_ALGO_WEP_RC4","features":[104]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS","features":[18,104]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_CONNECTION_START_PARAMETERS","features":[18,104]},{"name":"DOT11_CONNECTION_START_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_CONNECTION_STATUS_SUCCESS","features":[104]},{"name":"DOT11_COUNTERS_ENTRY","features":[104]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST","features":[18,104]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST_REVISION_1","features":[104]},{"name":"DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[104]},{"name":"DOT11_CURRENT_OPERATION_MODE","features":[104]},{"name":"DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[3,104]},{"name":"DOT11_DATA_RATE_MAPPING_ENTRY","features":[104]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE","features":[18,104]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE_REVISION_1","features":[104]},{"name":"DOT11_DEFAULT_WEP_OFFLOAD","features":[3,104]},{"name":"DOT11_DEFAULT_WEP_UPLOAD","features":[3,104]},{"name":"DOT11_DEVICE_ENTRY_BYTE_ARRAY_REVISION_1","features":[104]},{"name":"DOT11_DIRECTION","features":[104]},{"name":"DOT11_DIR_BOTH","features":[104]},{"name":"DOT11_DIR_INBOUND","features":[104]},{"name":"DOT11_DIR_OUTBOUND","features":[104]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST","features":[18,104]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST_REVISION_1","features":[104]},{"name":"DOT11_DISASSOCIATION_PARAMETERS","features":[18,104]},{"name":"DOT11_DISASSOCIATION_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_DIVERSITY_SELECTION_RX","features":[3,104]},{"name":"DOT11_DIVERSITY_SELECTION_RX_LIST","features":[3,104]},{"name":"DOT11_DIVERSITY_SUPPORT","features":[104]},{"name":"DOT11_DS_CHANGED","features":[104]},{"name":"DOT11_DS_INFO","features":[104]},{"name":"DOT11_DS_UNCHANGED","features":[104]},{"name":"DOT11_DS_UNKNOWN","features":[104]},{"name":"DOT11_EAP_RESULT","features":[104,105]},{"name":"DOT11_ENCAP_802_1H","features":[104]},{"name":"DOT11_ENCAP_ENTRY","features":[104]},{"name":"DOT11_ENCAP_RFC_1042","features":[104]},{"name":"DOT11_ERP_PHY_ATTRIBUTES","features":[3,104]},{"name":"DOT11_EXEMPT_ALWAYS","features":[104]},{"name":"DOT11_EXEMPT_BOTH","features":[104]},{"name":"DOT11_EXEMPT_MULTICAST","features":[104]},{"name":"DOT11_EXEMPT_NO_EXEMPTION","features":[104]},{"name":"DOT11_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE","features":[104]},{"name":"DOT11_EXEMPT_UNICAST","features":[104]},{"name":"DOT11_EXTAP_ATTRIBUTES","features":[3,18,104]},{"name":"DOT11_EXTAP_ATTRIBUTES_REVISION_1","features":[104]},{"name":"DOT11_EXTAP_RECV_CONTEXT_REVISION_1","features":[104]},{"name":"DOT11_EXTAP_SEND_CONTEXT_REVISION_1","features":[104]},{"name":"DOT11_EXTSTA_ATTRIBUTES","features":[3,18,104]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_1","features":[104]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_2","features":[104]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_3","features":[104]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_4","features":[104]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_CERTIFIED","features":[104]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_OID_SUPPORTED","features":[104]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_RESERVED","features":[104]},{"name":"DOT11_EXTSTA_CAPABILITY","features":[18,104]},{"name":"DOT11_EXTSTA_CAPABILITY_REVISION_1","features":[104]},{"name":"DOT11_EXTSTA_RECV_CONTEXT","features":[18,104]},{"name":"DOT11_EXTSTA_RECV_CONTEXT_REVISION_1","features":[104]},{"name":"DOT11_EXTSTA_SEND_CONTEXT","features":[18,104]},{"name":"DOT11_EXTSTA_SEND_CONTEXT_REVISION_1","features":[104]},{"name":"DOT11_FLAGS_80211B_CHANNEL_AGILITY","features":[104]},{"name":"DOT11_FLAGS_80211B_PBCC","features":[104]},{"name":"DOT11_FLAGS_80211B_SHORT_PREAMBLE","features":[104]},{"name":"DOT11_FLAGS_80211G_BARKER_PREAMBLE_MODE","features":[104]},{"name":"DOT11_FLAGS_80211G_DSSS_OFDM","features":[104]},{"name":"DOT11_FLAGS_80211G_NON_ERP_PRESENT","features":[104]},{"name":"DOT11_FLAGS_80211G_USE_PROTECTION","features":[104]},{"name":"DOT11_FLAGS_PS_ON","features":[104]},{"name":"DOT11_FRAGMENT_DESCRIPTOR","features":[104]},{"name":"DOT11_FREQUENCY_BANDS_LOWER","features":[104]},{"name":"DOT11_FREQUENCY_BANDS_MIDDLE","features":[104]},{"name":"DOT11_FREQUENCY_BANDS_UPPER","features":[104]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_HESSID_LENGTH","features":[104]},{"name":"DOT11_HOPPING_PATTERN_ENTRY","features":[104]},{"name":"DOT11_HOPPING_PATTERN_ENTRY_LIST","features":[104]},{"name":"DOT11_HOP_ALGO_ADOPTED","features":[104]},{"name":"DOT11_HRDSSS_PHY_ATTRIBUTES","features":[3,104]},{"name":"DOT11_HR_CCA_MODE_CS_AND_ED","features":[104]},{"name":"DOT11_HR_CCA_MODE_CS_ONLY","features":[104]},{"name":"DOT11_HR_CCA_MODE_CS_WITH_TIMER","features":[104]},{"name":"DOT11_HR_CCA_MODE_ED_ONLY","features":[104]},{"name":"DOT11_HR_CCA_MODE_HRCS_AND_ED","features":[104]},{"name":"DOT11_HW_DEFRAGMENTATION_SUPPORTED","features":[104]},{"name":"DOT11_HW_FRAGMENTATION_SUPPORTED","features":[104]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_RX","features":[104]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_TX","features":[104]},{"name":"DOT11_HW_WEP_SUPPORTED_RX","features":[104]},{"name":"DOT11_HW_WEP_SUPPORTED_TX","features":[104]},{"name":"DOT11_IBSS_PARAMS","features":[3,18,104]},{"name":"DOT11_IBSS_PARAMS_REVISION_1","features":[104]},{"name":"DOT11_IHV_VERSION_INFO","features":[104]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS","features":[3,18,104]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_INCOMING_ASSOC_DECISION","features":[3,18,104]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_1","features":[104]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_2","features":[104]},{"name":"DOT11_INCOMING_ASSOC_DECISION_V2","features":[3,18,104]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS","features":[3,18,104]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS","features":[18,104]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_INVALID_CHANNEL_NUMBER","features":[104]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_IV48_COUNTER","features":[104]},{"name":"DOT11_JOIN_REQUEST","features":[104]},{"name":"DOT11_KEY_ALGO_BIP","features":[104]},{"name":"DOT11_KEY_ALGO_BIP_GMAC_256","features":[104]},{"name":"DOT11_KEY_ALGO_CCMP","features":[104]},{"name":"DOT11_KEY_ALGO_GCMP","features":[104]},{"name":"DOT11_KEY_ALGO_GCMP_256","features":[104]},{"name":"DOT11_KEY_ALGO_TKIP_MIC","features":[104]},{"name":"DOT11_KEY_DIRECTION","features":[104]},{"name":"DOT11_LINK_QUALITY_ENTRY","features":[104]},{"name":"DOT11_LINK_QUALITY_PARAMETERS","features":[18,104]},{"name":"DOT11_LINK_QUALITY_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_MAC_ADDRESS_LIST","features":[18,104]},{"name":"DOT11_MAC_ADDRESS_LIST_REVISION_1","features":[104]},{"name":"DOT11_MAC_FRAME_STATISTICS","features":[104]},{"name":"DOT11_MAC_INFO","features":[104]},{"name":"DOT11_MAC_PARAMETERS","features":[18,104]},{"name":"DOT11_MAC_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_MANUFACTURING_CALLBACK_PARAMETERS","features":[18,104]},{"name":"DOT11_MANUFACTURING_CALLBACK_REVISION_1","features":[104]},{"name":"DOT11_MANUFACTURING_CALLBACK_TYPE","features":[104]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_QUERY_ADC","features":[104]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_RX","features":[3,104]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_TX","features":[3,104]},{"name":"DOT11_MANUFACTURING_SELF_TEST_QUERY_RESULTS","features":[3,104]},{"name":"DOT11_MANUFACTURING_SELF_TEST_SET_PARAMS","features":[104]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE","features":[104]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_BT_COEXISTENCE","features":[104]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_INTERFACE","features":[104]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_RF_INTERFACE","features":[104]},{"name":"DOT11_MANUFACTURING_TEST","features":[104]},{"name":"DOT11_MANUFACTURING_TEST_QUERY_DATA","features":[104]},{"name":"DOT11_MANUFACTURING_TEST_REVISION_1","features":[104]},{"name":"DOT11_MANUFACTURING_TEST_SET_DATA","features":[104]},{"name":"DOT11_MANUFACTURING_TEST_SLEEP","features":[104]},{"name":"DOT11_MANUFACTURING_TEST_TYPE","features":[104]},{"name":"DOT11_MAX_CHANNEL_HINTS","features":[104]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY","features":[104]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY_MFP","features":[104]},{"name":"DOT11_MAX_NUM_OF_FRAGMENTS","features":[104]},{"name":"DOT11_MAX_PDU_SIZE","features":[104]},{"name":"DOT11_MAX_REQUESTED_SERVICE_INFORMATION_LENGTH","features":[104]},{"name":"DOT11_MD_CAPABILITY_ENTRY_LIST","features":[104]},{"name":"DOT11_MIN_PDU_SIZE","features":[104]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION","features":[18,104]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION_REVISION_1","features":[104]},{"name":"DOT11_MSONEX_FAILURE","features":[104]},{"name":"DOT11_MSONEX_IN_PROGRESS","features":[104]},{"name":"DOT11_MSONEX_RESULT","features":[104]},{"name":"DOT11_MSONEX_RESULT_PARAMS","features":[104,105]},{"name":"DOT11_MSONEX_SUCCESS","features":[104]},{"name":"DOT11_MSSECURITY_SETTINGS","features":[3,104,105]},{"name":"DOT11_MULTI_DOMAIN_CAPABILITY_ENTRY","features":[104]},{"name":"DOT11_NETWORK","features":[104]},{"name":"DOT11_NETWORK_LIST","features":[104]},{"name":"DOT11_NIC_SPECIFIC_EXTENSION","features":[104]},{"name":"DOT11_NLO_FLAG_SCAN_AT_SYSTEM_RESUME","features":[104]},{"name":"DOT11_NLO_FLAG_SCAN_ON_AOAC_PLATFORM","features":[104]},{"name":"DOT11_NLO_FLAG_STOP_NLO_INDICATION","features":[104]},{"name":"DOT11_OFDM_PHY_ATTRIBUTES","features":[104]},{"name":"DOT11_OFFLOAD_CAPABILITY","features":[104]},{"name":"DOT11_OFFLOAD_NETWORK","features":[104]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_INFO","features":[18,104]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_REVISION_1","features":[104]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS","features":[18,104]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_OFFLOAD_TYPE","features":[104]},{"name":"DOT11_OI","features":[104]},{"name":"DOT11_OI_MAX_LENGTH","features":[104]},{"name":"DOT11_OI_MIN_LENGTH","features":[104]},{"name":"DOT11_OPERATION_MODE_AP","features":[104]},{"name":"DOT11_OPERATION_MODE_CAPABILITY","features":[104]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_AP","features":[104]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_STATION","features":[104]},{"name":"DOT11_OPERATION_MODE_MANUFACTURING","features":[104]},{"name":"DOT11_OPERATION_MODE_NETWORK_MONITOR","features":[104]},{"name":"DOT11_OPERATION_MODE_STATION","features":[104]},{"name":"DOT11_OPERATION_MODE_UNKNOWN","features":[104]},{"name":"DOT11_OPERATION_MODE_WFD_CLIENT","features":[104]},{"name":"DOT11_OPERATION_MODE_WFD_DEVICE","features":[104]},{"name":"DOT11_OPERATION_MODE_WFD_GROUP_OWNER","features":[104]},{"name":"DOT11_OPTIONAL_CAPABILITY","features":[3,104]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_CTRL","features":[104]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_DATA","features":[104]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_MGMT","features":[104]},{"name":"DOT11_PACKET_TYPE_BROADCAST_CTRL","features":[104]},{"name":"DOT11_PACKET_TYPE_BROADCAST_DATA","features":[104]},{"name":"DOT11_PACKET_TYPE_BROADCAST_MGMT","features":[104]},{"name":"DOT11_PACKET_TYPE_DIRECTED_CTRL","features":[104]},{"name":"DOT11_PACKET_TYPE_DIRECTED_DATA","features":[104]},{"name":"DOT11_PACKET_TYPE_DIRECTED_MGMT","features":[104]},{"name":"DOT11_PACKET_TYPE_MULTICAST_CTRL","features":[104]},{"name":"DOT11_PACKET_TYPE_MULTICAST_DATA","features":[104]},{"name":"DOT11_PACKET_TYPE_MULTICAST_MGMT","features":[104]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_CTRL","features":[104]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_DATA","features":[104]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_MGMT","features":[104]},{"name":"DOT11_PEER_INFO","features":[3,104]},{"name":"DOT11_PEER_INFO_LIST","features":[3,18,104]},{"name":"DOT11_PEER_INFO_LIST_REVISION_1","features":[104]},{"name":"DOT11_PEER_STATISTICS","features":[104]},{"name":"DOT11_PER_MSDU_COUNTERS","features":[104]},{"name":"DOT11_PHY_ATTRIBUTES","features":[3,18,104]},{"name":"DOT11_PHY_ATTRIBUTES_REVISION_1","features":[104]},{"name":"DOT11_PHY_FRAME_STATISTICS","features":[104]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS","features":[18,104]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_PHY_ID_LIST","features":[18,104]},{"name":"DOT11_PHY_ID_LIST_REVISION_1","features":[104]},{"name":"DOT11_PHY_STATE_PARAMETERS","features":[3,18,104]},{"name":"DOT11_PHY_STATE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_PHY_TYPE","features":[104]},{"name":"DOT11_PHY_TYPE_INFO","features":[3,104]},{"name":"DOT11_PHY_TYPE_LIST","features":[18,104]},{"name":"DOT11_PHY_TYPE_LIST_REVISION_1","features":[104]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS","features":[18,104]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_PMKID_ENTRY","features":[104]},{"name":"DOT11_PMKID_LIST","features":[18,104]},{"name":"DOT11_PMKID_LIST_REVISION_1","features":[104]},{"name":"DOT11_PORT_STATE","features":[3,104]},{"name":"DOT11_PORT_STATE_NOTIFICATION","features":[3,18,104]},{"name":"DOT11_PORT_STATE_NOTIFICATION_REVISION_1","features":[104]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_INFO","features":[3,18,104]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_REVISION_1","features":[104]},{"name":"DOT11_POWER_MGMT_MODE","features":[3,104]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO","features":[18,104]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO_REVISION_1","features":[104]},{"name":"DOT11_POWER_MODE","features":[104]},{"name":"DOT11_POWER_MODE_REASON","features":[104]},{"name":"DOT11_POWER_SAVE_LEVEL_FAST_PSP","features":[104]},{"name":"DOT11_POWER_SAVE_LEVEL_MAX_PSP","features":[104]},{"name":"DOT11_POWER_SAVING_FAST_PSP","features":[104]},{"name":"DOT11_POWER_SAVING_MAXIMUM_LEVEL","features":[104]},{"name":"DOT11_POWER_SAVING_MAX_PSP","features":[104]},{"name":"DOT11_POWER_SAVING_NO_POWER_SAVING","features":[104]},{"name":"DOT11_PRIORITY_CONTENTION","features":[104]},{"name":"DOT11_PRIORITY_CONTENTION_FREE","features":[104]},{"name":"DOT11_PRIVACY_EXEMPTION","features":[104]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST","features":[18,104]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST_REVISION_1","features":[104]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_PSD_IE_MAX_DATA_SIZE","features":[104]},{"name":"DOT11_PSD_IE_MAX_ENTRY_NUMBER","features":[104]},{"name":"DOT11_QOS_PARAMS","features":[18,104]},{"name":"DOT11_QOS_PARAMS_REVISION_1","features":[104]},{"name":"DOT11_QOS_TX_DURATION","features":[104]},{"name":"DOT11_QOS_TX_MEDIUM_TIME","features":[104]},{"name":"DOT11_RADIO_STATE","features":[104]},{"name":"DOT11_RATE_SET","features":[104]},{"name":"DOT11_RATE_SET_MAX_LENGTH","features":[104]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[18,104]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[18,104]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[18,104]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS","features":[18,104]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS","features":[18,104]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[18,104]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[18,104]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RECV_CONTEXT_REVISION_1","features":[104]},{"name":"DOT11_RECV_EXTENSION_INFO","features":[3,104]},{"name":"DOT11_RECV_EXTENSION_INFO_V2","features":[3,104]},{"name":"DOT11_RECV_SENSITIVITY","features":[104]},{"name":"DOT11_RECV_SENSITIVITY_LIST","features":[104]},{"name":"DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[104]},{"name":"DOT11_REG_DOMAIN_DOC","features":[104]},{"name":"DOT11_REG_DOMAIN_ETSI","features":[104]},{"name":"DOT11_REG_DOMAIN_FCC","features":[104]},{"name":"DOT11_REG_DOMAIN_FRANCE","features":[104]},{"name":"DOT11_REG_DOMAIN_MKK","features":[104]},{"name":"DOT11_REG_DOMAIN_OTHER","features":[104]},{"name":"DOT11_REG_DOMAIN_SPAIN","features":[104]},{"name":"DOT11_REG_DOMAIN_VALUE","features":[104]},{"name":"DOT11_RESET_REQUEST","features":[3,104]},{"name":"DOT11_RESET_TYPE","features":[104]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS","features":[18,104]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_ROAMING_START_PARAMETERS","features":[18,104]},{"name":"DOT11_ROAMING_START_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_RSSI_RANGE","features":[104]},{"name":"DOT11_SCAN_REQUEST","features":[3,104]},{"name":"DOT11_SCAN_REQUEST_V2","features":[3,104]},{"name":"DOT11_SCAN_TYPE","features":[104]},{"name":"DOT11_SECURITY_PACKET_HEADER","features":[104]},{"name":"DOT11_SEND_CONTEXT_REVISION_1","features":[104]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[3,18,104]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[18,104]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[3,18,104]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS","features":[3,18,104]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS","features":[3,18,104]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[3,18,104]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[18,104]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_SERVICE_CLASS_REORDERABLE_MULTICAST","features":[104]},{"name":"DOT11_SERVICE_CLASS_STRICTLY_ORDERED","features":[104]},{"name":"DOT11_SSID","features":[104]},{"name":"DOT11_SSID_LIST","features":[18,104]},{"name":"DOT11_SSID_LIST_REVISION_1","features":[104]},{"name":"DOT11_SSID_MAX_LENGTH","features":[104]},{"name":"DOT11_START_REQUEST","features":[104]},{"name":"DOT11_STATISTICS","features":[18,104]},{"name":"DOT11_STATISTICS_REVISION_1","features":[104]},{"name":"DOT11_STATUS_AP_JOIN_CONFIRM","features":[104]},{"name":"DOT11_STATUS_AUTH_FAILED","features":[104]},{"name":"DOT11_STATUS_AUTH_NOT_VERIFIED","features":[104]},{"name":"DOT11_STATUS_AUTH_VERIFIED","features":[104]},{"name":"DOT11_STATUS_ENCRYPTION_FAILED","features":[104]},{"name":"DOT11_STATUS_EXCESSIVE_DATA_LENGTH","features":[104]},{"name":"DOT11_STATUS_GENERATE_AUTH_FAILED","features":[104]},{"name":"DOT11_STATUS_ICV_VERIFIED","features":[104]},{"name":"DOT11_STATUS_INDICATION","features":[104]},{"name":"DOT11_STATUS_JOIN_CONFIRM","features":[104]},{"name":"DOT11_STATUS_MPDU_MAX_LENGTH_CHANGED","features":[104]},{"name":"DOT11_STATUS_PACKET_NOT_REASSEMBLED","features":[104]},{"name":"DOT11_STATUS_PACKET_REASSEMBLED","features":[104]},{"name":"DOT11_STATUS_PS_LIFETIME_EXPIRED","features":[104]},{"name":"DOT11_STATUS_RESET_CONFIRM","features":[104]},{"name":"DOT11_STATUS_RETRY_LIMIT_EXCEEDED","features":[104]},{"name":"DOT11_STATUS_SCAN_CONFIRM","features":[104]},{"name":"DOT11_STATUS_START_CONFIRM","features":[104]},{"name":"DOT11_STATUS_SUCCESS","features":[104]},{"name":"DOT11_STATUS_UNAVAILABLE_BSS","features":[104]},{"name":"DOT11_STATUS_UNAVAILABLE_PRIORITY","features":[104]},{"name":"DOT11_STATUS_UNAVAILABLE_SERVICE_CLASS","features":[104]},{"name":"DOT11_STATUS_UNSUPPORTED_PRIORITY","features":[104]},{"name":"DOT11_STATUS_UNSUPPORTED_SERVICE_CLASS","features":[104]},{"name":"DOT11_STATUS_WEP_KEY_UNAVAILABLE","features":[104]},{"name":"DOT11_STATUS_XMIT_MSDU_TIMER_EXPIRED","features":[104]},{"name":"DOT11_STOP_AP_PARAMETERS","features":[18,104]},{"name":"DOT11_STOP_AP_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_STOP_AP_REASON_AP_ACTIVE","features":[104]},{"name":"DOT11_STOP_AP_REASON_CHANNEL_NOT_AVAILABLE","features":[104]},{"name":"DOT11_STOP_AP_REASON_FREQUENCY_NOT_AVAILABLE","features":[104]},{"name":"DOT11_STOP_AP_REASON_IHV_END","features":[104]},{"name":"DOT11_STOP_AP_REASON_IHV_START","features":[104]},{"name":"DOT11_SUPPORTED_ANTENNA","features":[3,104]},{"name":"DOT11_SUPPORTED_ANTENNA_LIST","features":[3,104]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE","features":[104]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE_V2","features":[104]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL","features":[104]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[104]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY","features":[104]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[104]},{"name":"DOT11_SUPPORTED_PHY_TYPES","features":[104]},{"name":"DOT11_SUPPORTED_POWER_LEVELS","features":[104]},{"name":"DOT11_TEMP_TYPE","features":[104]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS","features":[3,18,104]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_UPDATE_IE","features":[104]},{"name":"DOT11_UPDATE_IE_OP","features":[104]},{"name":"DOT11_VENUEINFO","features":[104]},{"name":"DOT11_VWIFI_ATTRIBUTES","features":[18,104]},{"name":"DOT11_VWIFI_ATTRIBUTES_REVISION_1","features":[104]},{"name":"DOT11_VWIFI_COMBINATION","features":[18,104]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_1","features":[104]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_2","features":[104]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_3","features":[104]},{"name":"DOT11_VWIFI_COMBINATION_V2","features":[18,104]},{"name":"DOT11_VWIFI_COMBINATION_V3","features":[18,104]},{"name":"DOT11_WEP_OFFLOAD","features":[3,104]},{"name":"DOT11_WEP_UPLOAD","features":[3,104]},{"name":"DOT11_WFD_ADDITIONAL_IE","features":[18,104]},{"name":"DOT11_WFD_ADDITIONAL_IE_REVISION_1","features":[104]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_DESCRIPTOR","features":[104]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_LIST","features":[104]},{"name":"DOT11_WFD_ADVERTISEMENT_ID","features":[104]},{"name":"DOT11_WFD_APS2_SERVICE_TYPE_MAX_LENGTH","features":[104]},{"name":"DOT11_WFD_ASP2_INSTANCE_NAME_MAX_LENGTH","features":[104]},{"name":"DOT11_WFD_ATTRIBUTES","features":[3,18,104]},{"name":"DOT11_WFD_ATTRIBUTES_REVISION_1","features":[104]},{"name":"DOT11_WFD_CHANNEL","features":[104]},{"name":"DOT11_WFD_CONFIGURATION_TIMEOUT","features":[104]},{"name":"DOT11_WFD_DEVICE_AUTO_AVAILABILITY","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONCURRENT_OPERATION","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG","features":[3,18,104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG_REVISION_1","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_CLIENT_DISCOVERABILITY","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_DEVICE_LIMIT","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INFRASTRUCTURE_MANAGED","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INVITATION_PROCEDURE","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_6","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_7","features":[104]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_SERVICE_DISCOVERY","features":[104]},{"name":"DOT11_WFD_DEVICE_ENTRY","features":[104]},{"name":"DOT11_WFD_DEVICE_HIGH_AVAILABILITY","features":[104]},{"name":"DOT11_WFD_DEVICE_INFO","features":[18,104]},{"name":"DOT11_WFD_DEVICE_INFO_REVISION_1","features":[104]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL","features":[18,104]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL_REVISION_1","features":[104]},{"name":"DOT11_WFD_DEVICE_NOT_DISCOVERABLE","features":[104]},{"name":"DOT11_WFD_DEVICE_TYPE","features":[104]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE","features":[104]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS","features":[18,104]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_WFD_DISCOVER_DEVICE_FILTER","features":[104]},{"name":"DOT11_WFD_DISCOVER_REQUEST","features":[3,18,104]},{"name":"DOT11_WFD_DISCOVER_REQUEST_REVISION_1","features":[104]},{"name":"DOT11_WFD_DISCOVER_TYPE","features":[104]},{"name":"DOT11_WFD_GO_INTENT","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_CROSS_CONNECTION_SUPPORTED","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_EAPOL_KEY_IP_ADDRESS_ALLOCATION_SUPPORTED","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_LIMIT_REACHED","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_OWNER","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_INTRABSS_DISTRIBUTION_SUPPORTED","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_IN_GROUP_FORMATION","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_NONE","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_GROUP","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_RECONNECT_SUPPORTED","features":[104]},{"name":"DOT11_WFD_GROUP_CAPABILITY_RESERVED_7","features":[104]},{"name":"DOT11_WFD_GROUP_ID","features":[104]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS","features":[3,18,104]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG","features":[3,18,104]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_1","features":[104]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_2","features":[104]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_V2","features":[3,18,104]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS","features":[18,104]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS_REVISION_1","features":[104]},{"name":"DOT11_WFD_INVITATION_FLAGS","features":[104]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_FROM_WLAN_CROSS_CONNECTION_POLICY","features":[104]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_INFRASTRUCTURE_MANAGED_POLICY","features":[104]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_NOT_MANAGED_INFRASTRUCTURE_CAPABLE","features":[104]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_WFD_COEXISTENCE_POLICY","features":[104]},{"name":"DOT11_WFD_MINOR_REASON_SUCCESS","features":[104]},{"name":"DOT11_WFD_SCAN_TYPE","features":[104]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST","features":[18,104]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST_REVISION_1","features":[104]},{"name":"DOT11_WFD_SERVICE_HASH_LIST","features":[104]},{"name":"DOT11_WFD_SERVICE_INFORMATION_MAX_LENGTH","features":[104]},{"name":"DOT11_WFD_SERVICE_NAME_MAX_LENGTH","features":[104]},{"name":"DOT11_WFD_SESSION_ID","features":[104]},{"name":"DOT11_WFD_SESSION_INFO","features":[104]},{"name":"DOT11_WFD_SESSION_INFO_MAX_LENGTH","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PARAMETERS","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PROVISIONING_METHOD","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_INFORMATION_IS_UNAVAILABLE","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_INVALID_PARAMETERS","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_LIMIT_REACHED","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_MATCHING_MAX_INTENT","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_NO_COMMON_CHANNELS","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_PREVIOUS_PROTOCOL_ERROR","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_REJECTED_BY_USER","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_UNABLE_TO_ACCOMODATE_REQUEST","features":[104]},{"name":"DOT11_WFD_STATUS_FAILED_UNKNOWN_WFD_GROUP","features":[104]},{"name":"DOT11_WFD_STATUS_SUCCESS","features":[104]},{"name":"DOT11_WFD_STATUS_SUCCESS_ACCEPTED_BY_USER","features":[104]},{"name":"DOT11_WME_AC_PARAMETERS","features":[104]},{"name":"DOT11_WME_AC_PARAMETERS_LIST","features":[104]},{"name":"DOT11_WME_PACKET","features":[104]},{"name":"DOT11_WME_UPDATE_IE","features":[104]},{"name":"DOT11_WPA_TSC","features":[3,104]},{"name":"DOT11_WPS_CONFIG_METHOD","features":[104]},{"name":"DOT11_WPS_CONFIG_METHOD_DISPLAY","features":[104]},{"name":"DOT11_WPS_CONFIG_METHOD_KEYPAD","features":[104]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_INTERFACE","features":[104]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_TAG","features":[104]},{"name":"DOT11_WPS_CONFIG_METHOD_NULL","features":[104]},{"name":"DOT11_WPS_CONFIG_METHOD_PUSHBUTTON","features":[104]},{"name":"DOT11_WPS_CONFIG_METHOD_WFDS_DEFAULT","features":[104]},{"name":"DOT11_WPS_DEVICE_NAME","features":[104]},{"name":"DOT11_WPS_DEVICE_NAME_MAX_LENGTH","features":[104]},{"name":"DOT11_WPS_DEVICE_PASSWORD_ID","features":[104]},{"name":"DOT11_WPS_MAX_MODEL_NAME_LENGTH","features":[104]},{"name":"DOT11_WPS_MAX_MODEL_NUMBER_LENGTH","features":[104]},{"name":"DOT11_WPS_MAX_PASSKEY_LENGTH","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_DEFAULT","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_MACHINE_SPECIFIED","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_NFC_CONNECTION_HANDOVER","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MAX","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MIN","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_PUSHBUTTON","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_REGISTRAR_SPECIFIED","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_REKEY","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_USER_SPECIFIED","features":[104]},{"name":"DOT11_WPS_PASSWORD_ID_WFD_SERVICES","features":[104]},{"name":"DOT11_WPS_VERSION_1_0","features":[104]},{"name":"DOT11_WPS_VERSION_2_0","features":[104]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Enhanced","features":[104]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NoP2PSupported","features":[104]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NotSupported","features":[104]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_SingleFunctionSupported","features":[104]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Supported","features":[104]},{"name":"DevProp_PciDevice_AcsSupport_Missing","features":[104]},{"name":"DevProp_PciDevice_AcsSupport_NotNeeded","features":[104]},{"name":"DevProp_PciDevice_AcsSupport_Present","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciConventional","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciExpressDownstreamSwitchPort","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciExpressEventCollector","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciExpressRootPort","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciExpressToPciXBridge","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciExpressTreatedAsPci","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciExpressUpstreamSwitchPort","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciX","features":[104]},{"name":"DevProp_PciDevice_BridgeType_PciXToExpressBridge","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_100Mhz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_133MHZ","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_66Mhz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_100Mhz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_133Mhz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_66Mhz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_100MHz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_133MHz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_66MHz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_100MHz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_133MHz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_66MHz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode_Conventional_Pci","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_33MHz","features":[104]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_66MHz","features":[104]},{"name":"DevProp_PciDevice_DeviceType_PciConventional","features":[104]},{"name":"DevProp_PciDevice_DeviceType_PciExpressEndpoint","features":[104]},{"name":"DevProp_PciDevice_DeviceType_PciExpressLegacyEndpoint","features":[104]},{"name":"DevProp_PciDevice_DeviceType_PciExpressRootComplexIntegratedEndpoint","features":[104]},{"name":"DevProp_PciDevice_DeviceType_PciExpressTreatedAsPci","features":[104]},{"name":"DevProp_PciDevice_DeviceType_PciX","features":[104]},{"name":"DevProp_PciDevice_InterruptType_LineBased","features":[104]},{"name":"DevProp_PciDevice_InterruptType_Msi","features":[104]},{"name":"DevProp_PciDevice_InterruptType_MsiX","features":[104]},{"name":"DevProp_PciDevice_SriovSupport_DidntGetVfBarSpace","features":[104]},{"name":"DevProp_PciDevice_SriovSupport_MissingAcs","features":[104]},{"name":"DevProp_PciDevice_SriovSupport_MissingPfDriver","features":[104]},{"name":"DevProp_PciDevice_SriovSupport_NoBusResource","features":[104]},{"name":"DevProp_PciDevice_SriovSupport_Ok","features":[104]},{"name":"DevProp_PciExpressDevice_LinkSpeed_Five_Gbps","features":[104]},{"name":"DevProp_PciExpressDevice_LinkSpeed_TwoAndHalf_Gbps","features":[104]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_1","features":[104]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_12","features":[104]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_16","features":[104]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_2","features":[104]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_32","features":[104]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_4","features":[104]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_8","features":[104]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_1024Bytes","features":[104]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_128Bytes","features":[104]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_2048Bytes","features":[104]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_256Bytes","features":[104]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_4096Bytes","features":[104]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_512Bytes","features":[104]},{"name":"DevProp_PciExpressDevice_Spec_Version_10","features":[104]},{"name":"DevProp_PciExpressDevice_Spec_Version_11","features":[104]},{"name":"DevProp_PciRootBus_BusWidth_32Bits","features":[104]},{"name":"DevProp_PciRootBus_BusWidth_64Bits","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_33Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_66Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_100Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_133Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_66Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_100Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_133Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_66Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_100Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_133Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_66Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_100Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_133Mhz","features":[104]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_66Mhz","features":[104]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciConventional","features":[104]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciExpress","features":[104]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode1","features":[104]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode2","features":[104]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_33Mhz","features":[104]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_66Mhz","features":[104]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_133Mhz","features":[104]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_266Mhz","features":[104]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_533Mhz","features":[104]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_66Mhz","features":[104]},{"name":"Dot11AdHocManager","features":[104]},{"name":"GUID_AEPSERVICE_WIFIDIRECT_DEVICE","features":[104]},{"name":"GUID_DEVINTERFACE_ASP_INFRA_DEVICE","features":[104]},{"name":"GUID_DEVINTERFACE_WIFIDIRECT_DEVICE","features":[104]},{"name":"IDot11AdHocInterface","features":[104]},{"name":"IDot11AdHocInterfaceNotificationSink","features":[104]},{"name":"IDot11AdHocManager","features":[104]},{"name":"IDot11AdHocManagerNotificationSink","features":[104]},{"name":"IDot11AdHocNetwork","features":[104]},{"name":"IDot11AdHocNetworkNotificationSink","features":[104]},{"name":"IDot11AdHocSecuritySettings","features":[104]},{"name":"IEnumDot11AdHocInterfaces","features":[104]},{"name":"IEnumDot11AdHocNetworks","features":[104]},{"name":"IEnumDot11AdHocSecuritySettings","features":[104]},{"name":"IHV_INIT_FUNCTION_NAME","features":[104]},{"name":"IHV_INIT_VS_FUNCTION_NAME","features":[104]},{"name":"IHV_VERSION_FUNCTION_NAME","features":[104]},{"name":"IndicationTypeLinkQuality","features":[104]},{"name":"IndicationTypeNicSpecificNotification","features":[104]},{"name":"IndicationTypePhyStateChange","features":[104]},{"name":"IndicationTypePmkidCandidateList","features":[104]},{"name":"IndicationTypeTkipMicFailure","features":[104]},{"name":"L2_NOTIFICATION_CODE_GROUP_SIZE","features":[104]},{"name":"L2_NOTIFICATION_CODE_PUBLIC_BEGIN","features":[104]},{"name":"L2_NOTIFICATION_DATA","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_ALL","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_DOT3_AUTO_CONFIG","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_NONE","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_ONEX","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_SECURITY","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WCM","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WCM_CSP","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WFD","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_ACM","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_DEVICE_SERVICE","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_HNWK","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_IHV","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_MSM","features":[104]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_SECURITY","features":[104]},{"name":"L2_PROFILE_MAX_NAME_LENGTH","features":[104]},{"name":"L2_REASON_CODE_DOT11_AC_BASE","features":[104]},{"name":"L2_REASON_CODE_DOT11_MSM_BASE","features":[104]},{"name":"L2_REASON_CODE_DOT11_SECURITY_BASE","features":[104]},{"name":"L2_REASON_CODE_DOT3_AC_BASE","features":[104]},{"name":"L2_REASON_CODE_DOT3_MSM_BASE","features":[104]},{"name":"L2_REASON_CODE_GEN_BASE","features":[104]},{"name":"L2_REASON_CODE_GROUP_SIZE","features":[104]},{"name":"L2_REASON_CODE_IHV_BASE","features":[104]},{"name":"L2_REASON_CODE_ONEX_BASE","features":[104]},{"name":"L2_REASON_CODE_PROFILE_BASE","features":[104]},{"name":"L2_REASON_CODE_PROFILE_MISSING","features":[104]},{"name":"L2_REASON_CODE_RESERVED_BASE","features":[104]},{"name":"L2_REASON_CODE_SUCCESS","features":[104]},{"name":"L2_REASON_CODE_UNKNOWN","features":[104]},{"name":"L2_REASON_CODE_WIMAX_BASE","features":[104]},{"name":"MAX_NUM_SUPPORTED_RATES","features":[104]},{"name":"MAX_NUM_SUPPORTED_RATES_V2","features":[104]},{"name":"MS_MAX_PROFILE_NAME_LENGTH","features":[104]},{"name":"MS_PROFILE_GROUP_POLICY","features":[104]},{"name":"MS_PROFILE_USER","features":[104]},{"name":"NDIS_PACKET_TYPE_802_11_ALL_MULTICAST_DATA","features":[104]},{"name":"NDIS_PACKET_TYPE_802_11_BROADCAST_DATA","features":[104]},{"name":"NDIS_PACKET_TYPE_802_11_DIRECTED_DATA","features":[104]},{"name":"NDIS_PACKET_TYPE_802_11_MULTICAST_DATA","features":[104]},{"name":"NDIS_PACKET_TYPE_802_11_PROMISCUOUS_DATA","features":[104]},{"name":"OID_DOT11_AP_JOIN_REQUEST","features":[104]},{"name":"OID_DOT11_ATIM_WINDOW","features":[104]},{"name":"OID_DOT11_BEACON_PERIOD","features":[104]},{"name":"OID_DOT11_CCA_MODE_SUPPORTED","features":[104]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MAX","features":[104]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MIN","features":[104]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MAX","features":[104]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MIN","features":[104]},{"name":"OID_DOT11_CFP_MAX_DURATION","features":[104]},{"name":"OID_DOT11_CFP_PERIOD","features":[104]},{"name":"OID_DOT11_CF_POLLABLE","features":[104]},{"name":"OID_DOT11_CHANNEL_AGILITY_ENABLED","features":[104]},{"name":"OID_DOT11_CHANNEL_AGILITY_PRESENT","features":[104]},{"name":"OID_DOT11_COUNTERS_ENTRY","features":[104]},{"name":"OID_DOT11_COUNTRY_STRING","features":[104]},{"name":"OID_DOT11_CURRENT_ADDRESS","features":[104]},{"name":"OID_DOT11_CURRENT_CCA_MODE","features":[104]},{"name":"OID_DOT11_CURRENT_CHANNEL","features":[104]},{"name":"OID_DOT11_CURRENT_CHANNEL_NUMBER","features":[104]},{"name":"OID_DOT11_CURRENT_DWELL_TIME","features":[104]},{"name":"OID_DOT11_CURRENT_FREQUENCY","features":[104]},{"name":"OID_DOT11_CURRENT_INDEX","features":[104]},{"name":"OID_DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[104]},{"name":"OID_DOT11_CURRENT_OPERATION_MODE","features":[104]},{"name":"OID_DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[104]},{"name":"OID_DOT11_CURRENT_PACKET_FILTER","features":[104]},{"name":"OID_DOT11_CURRENT_PATTERN","features":[104]},{"name":"OID_DOT11_CURRENT_PHY_TYPE","features":[104]},{"name":"OID_DOT11_CURRENT_REG_DOMAIN","features":[104]},{"name":"OID_DOT11_CURRENT_RX_ANTENNA","features":[104]},{"name":"OID_DOT11_CURRENT_SET","features":[104]},{"name":"OID_DOT11_CURRENT_TX_ANTENNA","features":[104]},{"name":"OID_DOT11_CURRENT_TX_POWER_LEVEL","features":[104]},{"name":"OID_DOT11_DEFAULT_WEP_OFFLOAD","features":[104]},{"name":"OID_DOT11_DEFAULT_WEP_UPLOAD","features":[104]},{"name":"OID_DOT11_DIVERSITY_SELECTION_RX","features":[104]},{"name":"OID_DOT11_DIVERSITY_SUPPORT","features":[104]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_ENABLED","features":[104]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_DTIM_PERIOD","features":[104]},{"name":"OID_DOT11_ED_THRESHOLD","features":[104]},{"name":"OID_DOT11_EHCC_CAPABILITY_ENABLED","features":[104]},{"name":"OID_DOT11_EHCC_CAPABILITY_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_EHCC_NUMBER_OF_CHANNELS_FAMILY_INDEX","features":[104]},{"name":"OID_DOT11_EHCC_PRIME_RADIX","features":[104]},{"name":"OID_DOT11_ERP_PBCC_OPTION_ENABLED","features":[104]},{"name":"OID_DOT11_ERP_PBCC_OPTION_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_FRAGMENTATION_THRESHOLD","features":[104]},{"name":"OID_DOT11_FREQUENCY_BANDS_SUPPORTED","features":[104]},{"name":"OID_DOT11_HOPPING_PATTERN","features":[104]},{"name":"OID_DOT11_HOP_ALGORITHM_ADOPTED","features":[104]},{"name":"OID_DOT11_HOP_MODULUS","features":[104]},{"name":"OID_DOT11_HOP_OFFSET","features":[104]},{"name":"OID_DOT11_HOP_TIME","features":[104]},{"name":"OID_DOT11_HR_CCA_MODE_SUPPORTED","features":[104]},{"name":"OID_DOT11_JOIN_REQUEST","features":[104]},{"name":"OID_DOT11_LONG_RETRY_LIMIT","features":[104]},{"name":"OID_DOT11_MAC_ADDRESS","features":[104]},{"name":"OID_DOT11_MAXIMUM_LIST_SIZE","features":[104]},{"name":"OID_DOT11_MAX_DWELL_TIME","features":[104]},{"name":"OID_DOT11_MAX_MAC_ADDRESS_STATES","features":[104]},{"name":"OID_DOT11_MAX_RECEIVE_LIFETIME","features":[104]},{"name":"OID_DOT11_MAX_TRANSMIT_MSDU_LIFETIME","features":[104]},{"name":"OID_DOT11_MEDIUM_OCCUPANCY_LIMIT","features":[104]},{"name":"OID_DOT11_MPDU_MAX_LENGTH","features":[104]},{"name":"OID_DOT11_MULTICAST_LIST","features":[104]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY","features":[104]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_ENABLED","features":[104]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_NDIS_START","features":[104]},{"name":"OID_DOT11_NIC_POWER_STATE","features":[104]},{"name":"OID_DOT11_NIC_SPECIFIC_EXTENSION","features":[104]},{"name":"OID_DOT11_NUMBER_OF_HOPPING_SETS","features":[104]},{"name":"OID_DOT11_OFFLOAD_CAPABILITY","features":[104]},{"name":"OID_DOT11_OPERATIONAL_RATE_SET","features":[104]},{"name":"OID_DOT11_OPERATION_MODE_CAPABILITY","features":[104]},{"name":"OID_DOT11_OPTIONAL_CAPABILITY","features":[104]},{"name":"OID_DOT11_PBCC_OPTION_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_PERMANENT_ADDRESS","features":[104]},{"name":"OID_DOT11_POWER_MGMT_MODE","features":[104]},{"name":"OID_DOT11_PRIVATE_OIDS_START","features":[104]},{"name":"OID_DOT11_QOS_TX_DURATION","features":[104]},{"name":"OID_DOT11_QOS_TX_MEDIUM_TIME","features":[104]},{"name":"OID_DOT11_QOS_TX_QUEUES_SUPPORTED","features":[104]},{"name":"OID_DOT11_RANDOM_TABLE_FIELD_NUMBER","features":[104]},{"name":"OID_DOT11_RANDOM_TABLE_FLAG","features":[104]},{"name":"OID_DOT11_RECV_SENSITIVITY_LIST","features":[104]},{"name":"OID_DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[104]},{"name":"OID_DOT11_RESET_REQUEST","features":[104]},{"name":"OID_DOT11_RF_USAGE","features":[104]},{"name":"OID_DOT11_RSSI_RANGE","features":[104]},{"name":"OID_DOT11_RTS_THRESHOLD","features":[104]},{"name":"OID_DOT11_SCAN_REQUEST","features":[104]},{"name":"OID_DOT11_SHORT_PREAMBLE_OPTION_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_SHORT_RETRY_LIMIT","features":[104]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_ENABLED","features":[104]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_START_REQUEST","features":[104]},{"name":"OID_DOT11_STATION_ID","features":[104]},{"name":"OID_DOT11_SUPPORTED_DATA_RATES_VALUE","features":[104]},{"name":"OID_DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[104]},{"name":"OID_DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[104]},{"name":"OID_DOT11_SUPPORTED_PHY_TYPES","features":[104]},{"name":"OID_DOT11_SUPPORTED_POWER_LEVELS","features":[104]},{"name":"OID_DOT11_SUPPORTED_RX_ANTENNA","features":[104]},{"name":"OID_DOT11_SUPPORTED_TX_ANTENNA","features":[104]},{"name":"OID_DOT11_TEMP_TYPE","features":[104]},{"name":"OID_DOT11_TI_THRESHOLD","features":[104]},{"name":"OID_DOT11_UPDATE_IE","features":[104]},{"name":"OID_DOT11_WEP_ICV_ERROR_COUNT","features":[104]},{"name":"OID_DOT11_WEP_OFFLOAD","features":[104]},{"name":"OID_DOT11_WEP_UPLOAD","features":[104]},{"name":"OID_DOT11_WME_AC_PARAMETERS","features":[104]},{"name":"OID_DOT11_WME_ENABLED","features":[104]},{"name":"OID_DOT11_WME_IMPLEMENTED","features":[104]},{"name":"OID_DOT11_WME_UPDATE_IE","features":[104]},{"name":"OID_DOT11_WPA_TSC","features":[104]},{"name":"ONEX_AUTHENTICATOR_NO_LONGER_PRESENT","features":[104]},{"name":"ONEX_AUTH_IDENTITY","features":[104]},{"name":"ONEX_AUTH_PARAMS","features":[3,104]},{"name":"ONEX_AUTH_RESTART_REASON","features":[104]},{"name":"ONEX_AUTH_STATUS","features":[104]},{"name":"ONEX_EAP_ERROR","features":[104,105]},{"name":"ONEX_EAP_FAILURE_RECEIVED","features":[104]},{"name":"ONEX_EAP_METHOD_BACKEND_SUPPORT","features":[104]},{"name":"ONEX_IDENTITY_NOT_FOUND","features":[104]},{"name":"ONEX_NOTIFICATION_TYPE","features":[104]},{"name":"ONEX_NO_RESPONSE_TO_IDENTITY","features":[104]},{"name":"ONEX_PROFILE_DISALLOWED_EAP_TYPE","features":[104]},{"name":"ONEX_PROFILE_EXPIRED_EXPLICIT_CREDENTIALS","features":[104]},{"name":"ONEX_PROFILE_INVALID_AUTH_MODE","features":[104]},{"name":"ONEX_PROFILE_INVALID_EAP_CONNECTION_PROPERTIES","features":[104]},{"name":"ONEX_PROFILE_INVALID_EAP_TYPE_OR_FLAG","features":[104]},{"name":"ONEX_PROFILE_INVALID_EXPLICIT_CREDENTIALS","features":[104]},{"name":"ONEX_PROFILE_INVALID_LENGTH","features":[104]},{"name":"ONEX_PROFILE_INVALID_ONEX_FLAGS","features":[104]},{"name":"ONEX_PROFILE_INVALID_SUPPLICANT_MODE","features":[104]},{"name":"ONEX_PROFILE_INVALID_TIMER_VALUE","features":[104]},{"name":"ONEX_PROFILE_VERSION_NOT_SUPPORTED","features":[104]},{"name":"ONEX_REASON_CODE","features":[104]},{"name":"ONEX_REASON_CODE_SUCCESS","features":[104]},{"name":"ONEX_REASON_START","features":[104]},{"name":"ONEX_RESULT_UPDATE_DATA","features":[3,104]},{"name":"ONEX_STATUS","features":[104]},{"name":"ONEX_UI_CANCELLED","features":[104]},{"name":"ONEX_UI_DISABLED","features":[104]},{"name":"ONEX_UI_FAILURE","features":[104]},{"name":"ONEX_UI_NOT_PERMITTED","features":[104]},{"name":"ONEX_UNABLE_TO_IDENTIFY_USER","features":[104]},{"name":"ONEX_USER_INFO","features":[104]},{"name":"ONEX_VARIABLE_BLOB","features":[104]},{"name":"OneXAuthFailure","features":[104]},{"name":"OneXAuthIdentityExplicitUser","features":[104]},{"name":"OneXAuthIdentityGuest","features":[104]},{"name":"OneXAuthIdentityInvalid","features":[104]},{"name":"OneXAuthIdentityMachine","features":[104]},{"name":"OneXAuthIdentityNone","features":[104]},{"name":"OneXAuthIdentityUser","features":[104]},{"name":"OneXAuthInProgress","features":[104]},{"name":"OneXAuthInvalid","features":[104]},{"name":"OneXAuthNoAuthenticatorFound","features":[104]},{"name":"OneXAuthNotStarted","features":[104]},{"name":"OneXAuthSuccess","features":[104]},{"name":"OneXEapMethodBackendSupportUnknown","features":[104]},{"name":"OneXEapMethodBackendSupported","features":[104]},{"name":"OneXEapMethodBackendUnsupported","features":[104]},{"name":"OneXNotificationTypeAuthRestarted","features":[104]},{"name":"OneXNotificationTypeEventInvalid","features":[104]},{"name":"OneXNotificationTypeResultUpdate","features":[104]},{"name":"OneXNumNotifications","features":[104]},{"name":"OneXPublicNotificationBase","features":[104]},{"name":"OneXRestartReasonAltCredsTrial","features":[104]},{"name":"OneXRestartReasonInvalid","features":[104]},{"name":"OneXRestartReasonMsmInitiated","features":[104]},{"name":"OneXRestartReasonOneXAuthTimeout","features":[104]},{"name":"OneXRestartReasonOneXConfigurationChanged","features":[104]},{"name":"OneXRestartReasonOneXHeldStateTimeout","features":[104]},{"name":"OneXRestartReasonOneXUserChanged","features":[104]},{"name":"OneXRestartReasonPeerInitiated","features":[104]},{"name":"OneXRestartReasonQuarantineStateChanged","features":[104]},{"name":"WDIAG_IHV_WLAN_ID","features":[104]},{"name":"WDIAG_IHV_WLAN_ID_FLAG_SECURITY_ENABLED","features":[104]},{"name":"WFDCancelOpenSession","features":[3,104]},{"name":"WFDCloseHandle","features":[3,104]},{"name":"WFDCloseSession","features":[3,104]},{"name":"WFDOpenHandle","features":[3,104]},{"name":"WFDOpenLegacySession","features":[3,104]},{"name":"WFDSVC_CONNECTION_CAPABILITY","features":[3,104]},{"name":"WFDSVC_CONNECTION_CAPABILITY_CLIENT","features":[104]},{"name":"WFDSVC_CONNECTION_CAPABILITY_GO","features":[104]},{"name":"WFDSVC_CONNECTION_CAPABILITY_NEW","features":[104]},{"name":"WFDStartOpenSession","features":[3,104]},{"name":"WFDUpdateDeviceVisibility","features":[104]},{"name":"WFD_API_VERSION","features":[104]},{"name":"WFD_API_VERSION_1_0","features":[104]},{"name":"WFD_GROUP_ID","features":[104]},{"name":"WFD_OPEN_SESSION_COMPLETE_CALLBACK","features":[3,104]},{"name":"WFD_ROLE_TYPE","features":[104]},{"name":"WFD_ROLE_TYPE_CLIENT","features":[104]},{"name":"WFD_ROLE_TYPE_DEVICE","features":[104]},{"name":"WFD_ROLE_TYPE_GROUP_OWNER","features":[104]},{"name":"WFD_ROLE_TYPE_MAX","features":[104]},{"name":"WFD_ROLE_TYPE_NONE","features":[104]},{"name":"WLAN_ADHOC_NETWORK_STATE","features":[104]},{"name":"WLAN_API_VERSION","features":[104]},{"name":"WLAN_API_VERSION_1_0","features":[104]},{"name":"WLAN_API_VERSION_2_0","features":[104]},{"name":"WLAN_ASSOCIATION_ATTRIBUTES","features":[104]},{"name":"WLAN_AUTH_CIPHER_PAIR_LIST","features":[104]},{"name":"WLAN_AUTOCONF_OPCODE","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK","features":[3,104]},{"name":"WLAN_AVAILABLE_NETWORK_ANQP_SUPPORTED","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_AUTO_CONNECT_FAILED","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_CONNECTED","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_CONSOLE_USER_PROFILE","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_HAS_PROFILE","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_DOMAIN","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ENABLED","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ROAMING","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_ADHOC_PROFILES","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_MANUAL_HIDDEN_PROFILES","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_INTERWORKING_SUPPORTED","features":[104]},{"name":"WLAN_AVAILABLE_NETWORK_LIST","features":[3,104]},{"name":"WLAN_AVAILABLE_NETWORK_LIST_V2","features":[3,104]},{"name":"WLAN_AVAILABLE_NETWORK_V2","features":[3,104]},{"name":"WLAN_BSS_ENTRY","features":[3,104]},{"name":"WLAN_BSS_LIST","features":[3,104]},{"name":"WLAN_CONNECTION_ADHOC_JOIN_ONLY","features":[104]},{"name":"WLAN_CONNECTION_ATTRIBUTES","features":[3,104]},{"name":"WLAN_CONNECTION_EAPOL_PASSTHROUGH","features":[104]},{"name":"WLAN_CONNECTION_HIDDEN_NETWORK","features":[104]},{"name":"WLAN_CONNECTION_IGNORE_PRIVACY_BIT","features":[104]},{"name":"WLAN_CONNECTION_MODE","features":[104]},{"name":"WLAN_CONNECTION_NOTIFICATION_ADHOC_NETWORK_FORMED","features":[104]},{"name":"WLAN_CONNECTION_NOTIFICATION_CONSOLE_USER_PROFILE","features":[104]},{"name":"WLAN_CONNECTION_NOTIFICATION_DATA","features":[3,104]},{"name":"WLAN_CONNECTION_NOTIFICATION_FLAGS","features":[104]},{"name":"WLAN_CONNECTION_PARAMETERS","features":[18,104]},{"name":"WLAN_CONNECTION_PARAMETERS_V2","features":[18,104]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE","features":[104]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_CONNECTION_MODE_AUTO","features":[104]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_OVERWRITE_EXISTING","features":[104]},{"name":"WLAN_COUNTRY_OR_REGION_STRING_LIST","features":[104]},{"name":"WLAN_DEVICE_SERVICE_GUID_LIST","features":[104]},{"name":"WLAN_DEVICE_SERVICE_NOTIFICATION_DATA","features":[104]},{"name":"WLAN_FILTER_LIST_TYPE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_CONNECTION_SETTINGS","features":[104]},{"name":"WLAN_HOSTED_NETWORK_DATA_PEER_STATE_CHANGE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_NOTIFICATION_CODE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_OPCODE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_PEER_AUTH_STATE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_PEER_STATE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_RADIO_STATE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_REASON","features":[104]},{"name":"WLAN_HOSTED_NETWORK_SECURITY_SETTINGS","features":[104]},{"name":"WLAN_HOSTED_NETWORK_STATE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_STATE_CHANGE","features":[104]},{"name":"WLAN_HOSTED_NETWORK_STATUS","features":[104]},{"name":"WLAN_IHV_CONTROL_TYPE","features":[104]},{"name":"WLAN_INTERFACE_CAPABILITY","features":[3,104]},{"name":"WLAN_INTERFACE_INFO","features":[104]},{"name":"WLAN_INTERFACE_INFO_LIST","features":[104]},{"name":"WLAN_INTERFACE_STATE","features":[104]},{"name":"WLAN_INTERFACE_TYPE","features":[104]},{"name":"WLAN_INTF_OPCODE","features":[104]},{"name":"WLAN_MAC_FRAME_STATISTICS","features":[104]},{"name":"WLAN_MAX_NAME_LENGTH","features":[104]},{"name":"WLAN_MAX_PHY_INDEX","features":[104]},{"name":"WLAN_MAX_PHY_TYPE_NUMBER","features":[104]},{"name":"WLAN_MSM_NOTIFICATION_DATA","features":[3,104]},{"name":"WLAN_NOTIFICATION_ACM","features":[104]},{"name":"WLAN_NOTIFICATION_CALLBACK","features":[104]},{"name":"WLAN_NOTIFICATION_MSM","features":[104]},{"name":"WLAN_NOTIFICATION_SECURITY","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCES","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_ACM","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_ALL","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_DEVICE_SERVICE","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_HNWK","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_IHV","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_MSM","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_NONE","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_ONEX","features":[104]},{"name":"WLAN_NOTIFICATION_SOURCE_SECURITY","features":[104]},{"name":"WLAN_OPCODE_VALUE_TYPE","features":[104]},{"name":"WLAN_OPERATIONAL_STATE","features":[104]},{"name":"WLAN_PHY_FRAME_STATISTICS","features":[104]},{"name":"WLAN_PHY_RADIO_STATE","features":[104]},{"name":"WLAN_POWER_SETTING","features":[104]},{"name":"WLAN_PROFILE_CONNECTION_MODE_AUTO","features":[104]},{"name":"WLAN_PROFILE_CONNECTION_MODE_SET_BY_CLIENT","features":[104]},{"name":"WLAN_PROFILE_GET_PLAINTEXT_KEY","features":[104]},{"name":"WLAN_PROFILE_GROUP_POLICY","features":[104]},{"name":"WLAN_PROFILE_INFO","features":[104]},{"name":"WLAN_PROFILE_INFO_LIST","features":[104]},{"name":"WLAN_PROFILE_USER","features":[104]},{"name":"WLAN_RADIO_STATE","features":[104]},{"name":"WLAN_RATE_SET","features":[104]},{"name":"WLAN_RAW_DATA","features":[104]},{"name":"WLAN_RAW_DATA_LIST","features":[104]},{"name":"WLAN_REASON_CODE_AC_BASE","features":[104]},{"name":"WLAN_REASON_CODE_AC_CONNECT_BASE","features":[104]},{"name":"WLAN_REASON_CODE_AC_END","features":[104]},{"name":"WLAN_REASON_CODE_ADHOC_SECURITY_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED","features":[104]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED_FOR_CLIENT","features":[104]},{"name":"WLAN_REASON_CODE_AP_STARTING_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_ASSOCIATION_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_ASSOCIATION_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_AUTO_AP_PROFILE_NOT_ALLOWED","features":[104]},{"name":"WLAN_REASON_CODE_AUTO_CONNECTION_NOT_ALLOWED","features":[104]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_ADHOC","features":[104]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_MANUAL_CONNECTION","features":[104]},{"name":"WLAN_REASON_CODE_BAD_MAX_NUMBER_OF_CLIENTS_FOR_AP","features":[104]},{"name":"WLAN_REASON_CODE_BASE","features":[104]},{"name":"WLAN_REASON_CODE_BSS_TYPE_NOT_ALLOWED","features":[104]},{"name":"WLAN_REASON_CODE_BSS_TYPE_UNMATCH","features":[104]},{"name":"WLAN_REASON_CODE_CONFLICT_SECURITY","features":[104]},{"name":"WLAN_REASON_CODE_CONNECT_CALL_FAIL","features":[104]},{"name":"WLAN_REASON_CODE_DATARATE_UNMATCH","features":[104]},{"name":"WLAN_REASON_CODE_DISCONNECT_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_DRIVER_DISCONNECTED","features":[104]},{"name":"WLAN_REASON_CODE_DRIVER_OPERATION_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_GP_DENIED","features":[104]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_DENIED","features":[104]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_NOT_ALLOWED","features":[104]},{"name":"WLAN_REASON_CODE_IHV_CONNECTIVITY_NOT_SUPPORTED","features":[104]},{"name":"WLAN_REASON_CODE_IHV_NOT_AVAILABLE","features":[104]},{"name":"WLAN_REASON_CODE_IHV_NOT_RESPONDING","features":[104]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISMATCH","features":[104]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISSING","features":[104]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_NOT_SUPPORTED","features":[104]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_ONEX_MISSING","features":[104]},{"name":"WLAN_REASON_CODE_IHV_SETTINGS_MISSING","features":[104]},{"name":"WLAN_REASON_CODE_INTERNAL_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_INVALID_ADHOC_CONNECTION_MODE","features":[104]},{"name":"WLAN_REASON_CODE_INVALID_BSS_TYPE","features":[104]},{"name":"WLAN_REASON_CODE_INVALID_CHANNEL","features":[104]},{"name":"WLAN_REASON_CODE_INVALID_PHY_TYPE","features":[104]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_NAME","features":[104]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_SCHEMA","features":[104]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_TYPE","features":[104]},{"name":"WLAN_REASON_CODE_IN_BLOCKED_LIST","features":[104]},{"name":"WLAN_REASON_CODE_IN_FAILED_LIST","features":[104]},{"name":"WLAN_REASON_CODE_KEY_MISMATCH","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_START_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_SUCCESS_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_WCN_COMPLETED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_BASE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CANCELLED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_DISCOVERY","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_MFP_NW_NIC","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NETWORK","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NIC","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_AUTH","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_CIPHER","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NIC","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NW","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_CONNECT_BASE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_DOWNGRADE_DETECTED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_END","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_FORCED_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_GRP_KEY","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_KEY_DATA","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_MGMT_GRP_KEY","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_FORMAT","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_START_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_SUCCESS_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_IE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_KEY_DATA","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_GRP_KEY","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_IE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_KEY_DATA","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_MGMT_GRP_KEY","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_TOO_MANY_RSNIE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_MAX","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_MIN","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_MIXED_CELL","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_NIC_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_AUTHENTICATOR","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_PAIRWISE_KEY","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PEER_INDICATED_INSECURE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_AUTH_TIMERS_INVALID","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_DUPLICATE_AUTH_CIPHER","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_AUTH_CIPHER","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_GKEY_INTV","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_KEY_INDEX","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_MODE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_SIZE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_TTL","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_MODE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_THROTTLE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEYMATERIAL_CHAR","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_LENGTH","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_UNMAPPED_CHAR","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_NO_AUTH_CIPHER_SPECIFIED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_DISABLED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_ENABLED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PASSPHRASE_CHAR","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PREAUTH_ONLY_ENABLED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_LENGTH","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_PRESENT","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_RAWDATA_INVALID","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_SAFE_MODE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_TOO_MANY_AUTH_CIPHER_SPECIFIED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_AUTH","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_CIPHER","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_WRONG_KEYTYPE","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PR_IE_MATCHING","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_PSK_MISMATCH_SUSPECTED","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_SEC_IE_MATCHING","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_TRANSITION_NETWORK","features":[104]},{"name":"WLAN_REASON_CODE_MSMSEC_UI_REQUEST_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_MSM_BASE","features":[104]},{"name":"WLAN_REASON_CODE_MSM_CONNECT_BASE","features":[104]},{"name":"WLAN_REASON_CODE_MSM_END","features":[104]},{"name":"WLAN_REASON_CODE_MSM_SECURITY_MISSING","features":[104]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_AVAILABLE","features":[104]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_COMPATIBLE","features":[104]},{"name":"WLAN_REASON_CODE_NON_BROADCAST_SET_FOR_ADHOC","features":[104]},{"name":"WLAN_REASON_CODE_NOT_VISIBLE","features":[104]},{"name":"WLAN_REASON_CODE_NO_AUTO_CONNECTION","features":[104]},{"name":"WLAN_REASON_CODE_NO_VISIBLE_AP","features":[104]},{"name":"WLAN_REASON_CODE_OPERATION_MODE_NOT_SUPPORTED","features":[104]},{"name":"WLAN_REASON_CODE_PHY_TYPE_UNMATCH","features":[104]},{"name":"WLAN_REASON_CODE_PRE_SECURITY_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_PROFILE_BASE","features":[104]},{"name":"WLAN_REASON_CODE_PROFILE_CHANGED_OR_DELETED","features":[104]},{"name":"WLAN_REASON_CODE_PROFILE_CONNECT_BASE","features":[104]},{"name":"WLAN_REASON_CODE_PROFILE_END","features":[104]},{"name":"WLAN_REASON_CODE_PROFILE_MISSING","features":[104]},{"name":"WLAN_REASON_CODE_PROFILE_NOT_COMPATIBLE","features":[104]},{"name":"WLAN_REASON_CODE_PROFILE_SSID_INVALID","features":[104]},{"name":"WLAN_REASON_CODE_RANGE_SIZE","features":[104]},{"name":"WLAN_REASON_CODE_RESERVED_BASE","features":[104]},{"name":"WLAN_REASON_CODE_RESERVED_END","features":[104]},{"name":"WLAN_REASON_CODE_ROAMING_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_ROAMING_SECURITY_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_SCAN_CALL_FAIL","features":[104]},{"name":"WLAN_REASON_CODE_SECURITY_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_SECURITY_MISSING","features":[104]},{"name":"WLAN_REASON_CODE_SECURITY_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_SSID_LIST_TOO_LONG","features":[104]},{"name":"WLAN_REASON_CODE_START_SECURITY_FAILURE","features":[104]},{"name":"WLAN_REASON_CODE_SUCCESS","features":[104]},{"name":"WLAN_REASON_CODE_TOO_MANY_SECURITY_ATTEMPTS","features":[104]},{"name":"WLAN_REASON_CODE_TOO_MANY_SSID","features":[104]},{"name":"WLAN_REASON_CODE_UI_REQUEST_TIMEOUT","features":[104]},{"name":"WLAN_REASON_CODE_UNKNOWN","features":[104]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET","features":[104]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET_BY_OS","features":[104]},{"name":"WLAN_REASON_CODE_USER_CANCELLED","features":[104]},{"name":"WLAN_REASON_CODE_USER_DENIED","features":[104]},{"name":"WLAN_REASON_CODE_USER_NOT_RESPOND","features":[104]},{"name":"WLAN_SECURABLE_OBJECT","features":[104]},{"name":"WLAN_SECURABLE_OBJECT_COUNT","features":[104]},{"name":"WLAN_SECURITY_ATTRIBUTES","features":[3,104]},{"name":"WLAN_SET_EAPHOST_DATA_ALL_USERS","features":[104]},{"name":"WLAN_SET_EAPHOST_FLAGS","features":[104]},{"name":"WLAN_STATISTICS","features":[104]},{"name":"WLAN_UI_API_INITIAL_VERSION","features":[104]},{"name":"WLAN_UI_API_VERSION","features":[104]},{"name":"WLAdvPage","features":[104]},{"name":"WLConnectionPage","features":[104]},{"name":"WLSecurityPage","features":[104]},{"name":"WL_DISPLAY_PAGES","features":[104]},{"name":"WlanAllocateMemory","features":[104]},{"name":"WlanCloseHandle","features":[3,104]},{"name":"WlanConnect","features":[3,18,104]},{"name":"WlanConnect2","features":[3,18,104]},{"name":"WlanDeleteProfile","features":[3,104]},{"name":"WlanDeviceServiceCommand","features":[3,104]},{"name":"WlanDisconnect","features":[3,104]},{"name":"WlanEnumInterfaces","features":[3,104]},{"name":"WlanExtractPsdIEDataList","features":[3,104]},{"name":"WlanFreeMemory","features":[104]},{"name":"WlanGetAvailableNetworkList","features":[3,104]},{"name":"WlanGetAvailableNetworkList2","features":[3,104]},{"name":"WlanGetFilterList","features":[3,104]},{"name":"WlanGetInterfaceCapability","features":[3,104]},{"name":"WlanGetNetworkBssList","features":[3,104]},{"name":"WlanGetProfile","features":[3,104]},{"name":"WlanGetProfileCustomUserData","features":[3,104]},{"name":"WlanGetProfileList","features":[3,104]},{"name":"WlanGetSecuritySettings","features":[3,104]},{"name":"WlanGetSupportedDeviceServices","features":[3,104]},{"name":"WlanHostedNetworkForceStart","features":[3,104]},{"name":"WlanHostedNetworkForceStop","features":[3,104]},{"name":"WlanHostedNetworkInitSettings","features":[3,104]},{"name":"WlanHostedNetworkQueryProperty","features":[3,104]},{"name":"WlanHostedNetworkQuerySecondaryKey","features":[3,104]},{"name":"WlanHostedNetworkQueryStatus","features":[3,104]},{"name":"WlanHostedNetworkRefreshSecuritySettings","features":[3,104]},{"name":"WlanHostedNetworkSetProperty","features":[3,104]},{"name":"WlanHostedNetworkSetSecondaryKey","features":[3,104]},{"name":"WlanHostedNetworkStartUsing","features":[3,104]},{"name":"WlanHostedNetworkStopUsing","features":[3,104]},{"name":"WlanIhvControl","features":[3,104]},{"name":"WlanOpenHandle","features":[3,104]},{"name":"WlanQueryAutoConfigParameter","features":[3,104]},{"name":"WlanQueryInterface","features":[3,104]},{"name":"WlanReasonCodeToString","features":[104]},{"name":"WlanRegisterDeviceServiceNotification","features":[3,104]},{"name":"WlanRegisterNotification","features":[3,104]},{"name":"WlanRegisterVirtualStationNotification","features":[3,104]},{"name":"WlanRenameProfile","features":[3,104]},{"name":"WlanSaveTemporaryProfile","features":[3,104]},{"name":"WlanScan","features":[3,104]},{"name":"WlanSetAutoConfigParameter","features":[3,104]},{"name":"WlanSetFilterList","features":[3,104]},{"name":"WlanSetInterface","features":[3,104]},{"name":"WlanSetProfile","features":[3,104]},{"name":"WlanSetProfileCustomUserData","features":[3,104]},{"name":"WlanSetProfileEapUserData","features":[3,104,105]},{"name":"WlanSetProfileEapXmlUserData","features":[3,104]},{"name":"WlanSetProfileList","features":[3,104]},{"name":"WlanSetProfilePosition","features":[3,104]},{"name":"WlanSetPsdIEDataList","features":[3,104]},{"name":"WlanSetSecuritySettings","features":[3,104]},{"name":"WlanUIEditProfile","features":[3,104]},{"name":"ch_description_type_center_frequency","features":[104]},{"name":"ch_description_type_logical","features":[104]},{"name":"ch_description_type_phy_specific","features":[104]},{"name":"connection_phase_any","features":[104]},{"name":"connection_phase_initial_connection","features":[104]},{"name":"connection_phase_post_l3_connection","features":[104]},{"name":"dot11_AC_param_BE","features":[104]},{"name":"dot11_AC_param_BK","features":[104]},{"name":"dot11_AC_param_VI","features":[104]},{"name":"dot11_AC_param_VO","features":[104]},{"name":"dot11_AC_param_max","features":[104]},{"name":"dot11_ANQP_query_result_access_issues","features":[104]},{"name":"dot11_ANQP_query_result_advertisement_protocol_not_supported_on_remote","features":[104]},{"name":"dot11_ANQP_query_result_advertisement_server_not_responding","features":[104]},{"name":"dot11_ANQP_query_result_failure","features":[104]},{"name":"dot11_ANQP_query_result_gas_protocol_failure","features":[104]},{"name":"dot11_ANQP_query_result_resources","features":[104]},{"name":"dot11_ANQP_query_result_success","features":[104]},{"name":"dot11_ANQP_query_result_timed_out","features":[104]},{"name":"dot11_BSS_type_any","features":[104]},{"name":"dot11_BSS_type_independent","features":[104]},{"name":"dot11_BSS_type_infrastructure","features":[104]},{"name":"dot11_assoc_state_auth_assoc","features":[104]},{"name":"dot11_assoc_state_auth_unassoc","features":[104]},{"name":"dot11_assoc_state_unauth_unassoc","features":[104]},{"name":"dot11_assoc_state_zero","features":[104]},{"name":"dot11_band_2p4g","features":[104]},{"name":"dot11_band_4p9g","features":[104]},{"name":"dot11_band_5g","features":[104]},{"name":"dot11_diversity_support_dynamic","features":[104]},{"name":"dot11_diversity_support_fixedlist","features":[104]},{"name":"dot11_diversity_support_notsupported","features":[104]},{"name":"dot11_diversity_support_unknown","features":[104]},{"name":"dot11_hop_algo_current","features":[104]},{"name":"dot11_hop_algo_hcc","features":[104]},{"name":"dot11_hop_algo_hop_index","features":[104]},{"name":"dot11_key_direction_both","features":[104]},{"name":"dot11_key_direction_inbound","features":[104]},{"name":"dot11_key_direction_outbound","features":[104]},{"name":"dot11_manufacturing_callback_IHV_end","features":[104]},{"name":"dot11_manufacturing_callback_IHV_start","features":[104]},{"name":"dot11_manufacturing_callback_self_test_complete","features":[104]},{"name":"dot11_manufacturing_callback_sleep_complete","features":[104]},{"name":"dot11_manufacturing_callback_unknown","features":[104]},{"name":"dot11_manufacturing_test_IHV_end","features":[104]},{"name":"dot11_manufacturing_test_IHV_start","features":[104]},{"name":"dot11_manufacturing_test_awake","features":[104]},{"name":"dot11_manufacturing_test_query_adc","features":[104]},{"name":"dot11_manufacturing_test_query_data","features":[104]},{"name":"dot11_manufacturing_test_rx","features":[104]},{"name":"dot11_manufacturing_test_self_query_result","features":[104]},{"name":"dot11_manufacturing_test_self_start","features":[104]},{"name":"dot11_manufacturing_test_set_data","features":[104]},{"name":"dot11_manufacturing_test_sleep","features":[104]},{"name":"dot11_manufacturing_test_tx","features":[104]},{"name":"dot11_manufacturing_test_unknown","features":[104]},{"name":"dot11_offload_type_auth","features":[104]},{"name":"dot11_offload_type_wep","features":[104]},{"name":"dot11_phy_type_IHV_end","features":[104]},{"name":"dot11_phy_type_IHV_start","features":[104]},{"name":"dot11_phy_type_any","features":[104]},{"name":"dot11_phy_type_dmg","features":[104]},{"name":"dot11_phy_type_dsss","features":[104]},{"name":"dot11_phy_type_eht","features":[104]},{"name":"dot11_phy_type_erp","features":[104]},{"name":"dot11_phy_type_fhss","features":[104]},{"name":"dot11_phy_type_he","features":[104]},{"name":"dot11_phy_type_hrdsss","features":[104]},{"name":"dot11_phy_type_ht","features":[104]},{"name":"dot11_phy_type_irbaseband","features":[104]},{"name":"dot11_phy_type_ofdm","features":[104]},{"name":"dot11_phy_type_unknown","features":[104]},{"name":"dot11_phy_type_vht","features":[104]},{"name":"dot11_power_mode_active","features":[104]},{"name":"dot11_power_mode_powersave","features":[104]},{"name":"dot11_power_mode_reason_compliant_AP","features":[104]},{"name":"dot11_power_mode_reason_compliant_WFD_device","features":[104]},{"name":"dot11_power_mode_reason_legacy_WFD_device","features":[104]},{"name":"dot11_power_mode_reason_no_change","features":[104]},{"name":"dot11_power_mode_reason_noncompliant_AP","features":[104]},{"name":"dot11_power_mode_reason_others","features":[104]},{"name":"dot11_power_mode_unknown","features":[104]},{"name":"dot11_radio_state_off","features":[104]},{"name":"dot11_radio_state_on","features":[104]},{"name":"dot11_radio_state_unknown","features":[104]},{"name":"dot11_reset_type_mac","features":[104]},{"name":"dot11_reset_type_phy","features":[104]},{"name":"dot11_reset_type_phy_and_mac","features":[104]},{"name":"dot11_scan_type_active","features":[104]},{"name":"dot11_scan_type_auto","features":[104]},{"name":"dot11_scan_type_forced","features":[104]},{"name":"dot11_scan_type_passive","features":[104]},{"name":"dot11_temp_type_1","features":[104]},{"name":"dot11_temp_type_2","features":[104]},{"name":"dot11_temp_type_unknown","features":[104]},{"name":"dot11_update_ie_op_create_replace","features":[104]},{"name":"dot11_update_ie_op_delete","features":[104]},{"name":"dot11_wfd_discover_type_auto","features":[104]},{"name":"dot11_wfd_discover_type_find_only","features":[104]},{"name":"dot11_wfd_discover_type_forced","features":[104]},{"name":"dot11_wfd_discover_type_scan_only","features":[104]},{"name":"dot11_wfd_discover_type_scan_social_channels","features":[104]},{"name":"dot11_wfd_scan_type_active","features":[104]},{"name":"dot11_wfd_scan_type_auto","features":[104]},{"name":"dot11_wfd_scan_type_passive","features":[104]},{"name":"wlan_adhoc_network_state_connected","features":[104]},{"name":"wlan_adhoc_network_state_formed","features":[104]},{"name":"wlan_autoconf_opcode_allow_explicit_creds","features":[104]},{"name":"wlan_autoconf_opcode_allow_virtual_station_extensibility","features":[104]},{"name":"wlan_autoconf_opcode_block_period","features":[104]},{"name":"wlan_autoconf_opcode_end","features":[104]},{"name":"wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks","features":[104]},{"name":"wlan_autoconf_opcode_power_setting","features":[104]},{"name":"wlan_autoconf_opcode_show_denied_networks","features":[104]},{"name":"wlan_autoconf_opcode_start","features":[104]},{"name":"wlan_connection_mode_auto","features":[104]},{"name":"wlan_connection_mode_discovery_secure","features":[104]},{"name":"wlan_connection_mode_discovery_unsecure","features":[104]},{"name":"wlan_connection_mode_invalid","features":[104]},{"name":"wlan_connection_mode_profile","features":[104]},{"name":"wlan_connection_mode_temporary_profile","features":[104]},{"name":"wlan_filter_list_type_gp_deny","features":[104]},{"name":"wlan_filter_list_type_gp_permit","features":[104]},{"name":"wlan_filter_list_type_user_deny","features":[104]},{"name":"wlan_filter_list_type_user_permit","features":[104]},{"name":"wlan_hosted_network_active","features":[104]},{"name":"wlan_hosted_network_idle","features":[104]},{"name":"wlan_hosted_network_opcode_connection_settings","features":[104]},{"name":"wlan_hosted_network_opcode_enable","features":[104]},{"name":"wlan_hosted_network_opcode_security_settings","features":[104]},{"name":"wlan_hosted_network_opcode_station_profile","features":[104]},{"name":"wlan_hosted_network_peer_state_authenticated","features":[104]},{"name":"wlan_hosted_network_peer_state_change","features":[104]},{"name":"wlan_hosted_network_peer_state_invalid","features":[104]},{"name":"wlan_hosted_network_radio_state_change","features":[104]},{"name":"wlan_hosted_network_reason_ap_start_failed","features":[104]},{"name":"wlan_hosted_network_reason_bad_parameters","features":[104]},{"name":"wlan_hosted_network_reason_client_abort","features":[104]},{"name":"wlan_hosted_network_reason_crypt_error","features":[104]},{"name":"wlan_hosted_network_reason_device_change","features":[104]},{"name":"wlan_hosted_network_reason_elevation_required","features":[104]},{"name":"wlan_hosted_network_reason_gp_denied","features":[104]},{"name":"wlan_hosted_network_reason_impersonation","features":[104]},{"name":"wlan_hosted_network_reason_incompatible_connection_started","features":[104]},{"name":"wlan_hosted_network_reason_incompatible_connection_stopped","features":[104]},{"name":"wlan_hosted_network_reason_insufficient_resources","features":[104]},{"name":"wlan_hosted_network_reason_interface_available","features":[104]},{"name":"wlan_hosted_network_reason_interface_unavailable","features":[104]},{"name":"wlan_hosted_network_reason_miniport_started","features":[104]},{"name":"wlan_hosted_network_reason_miniport_stopped","features":[104]},{"name":"wlan_hosted_network_reason_peer_arrived","features":[104]},{"name":"wlan_hosted_network_reason_peer_departed","features":[104]},{"name":"wlan_hosted_network_reason_peer_timeout","features":[104]},{"name":"wlan_hosted_network_reason_persistence_failed","features":[104]},{"name":"wlan_hosted_network_reason_properties_change","features":[104]},{"name":"wlan_hosted_network_reason_read_only","features":[104]},{"name":"wlan_hosted_network_reason_service_available_on_virtual_station","features":[104]},{"name":"wlan_hosted_network_reason_service_shutting_down","features":[104]},{"name":"wlan_hosted_network_reason_service_unavailable","features":[104]},{"name":"wlan_hosted_network_reason_stop_before_start","features":[104]},{"name":"wlan_hosted_network_reason_success","features":[104]},{"name":"wlan_hosted_network_reason_unspecified","features":[104]},{"name":"wlan_hosted_network_reason_user_action","features":[104]},{"name":"wlan_hosted_network_reason_virtual_station_blocking_use","features":[104]},{"name":"wlan_hosted_network_state_change","features":[104]},{"name":"wlan_hosted_network_unavailable","features":[104]},{"name":"wlan_ihv_control_type_driver","features":[104]},{"name":"wlan_ihv_control_type_service","features":[104]},{"name":"wlan_interface_state_ad_hoc_network_formed","features":[104]},{"name":"wlan_interface_state_associating","features":[104]},{"name":"wlan_interface_state_authenticating","features":[104]},{"name":"wlan_interface_state_connected","features":[104]},{"name":"wlan_interface_state_disconnected","features":[104]},{"name":"wlan_interface_state_disconnecting","features":[104]},{"name":"wlan_interface_state_discovering","features":[104]},{"name":"wlan_interface_state_not_ready","features":[104]},{"name":"wlan_interface_type_emulated_802_11","features":[104]},{"name":"wlan_interface_type_invalid","features":[104]},{"name":"wlan_interface_type_native_802_11","features":[104]},{"name":"wlan_intf_opcode_autoconf_enabled","features":[104]},{"name":"wlan_intf_opcode_autoconf_end","features":[104]},{"name":"wlan_intf_opcode_autoconf_start","features":[104]},{"name":"wlan_intf_opcode_background_scan_enabled","features":[104]},{"name":"wlan_intf_opcode_bss_type","features":[104]},{"name":"wlan_intf_opcode_certified_safe_mode","features":[104]},{"name":"wlan_intf_opcode_channel_number","features":[104]},{"name":"wlan_intf_opcode_current_connection","features":[104]},{"name":"wlan_intf_opcode_current_operation_mode","features":[104]},{"name":"wlan_intf_opcode_hosted_network_capable","features":[104]},{"name":"wlan_intf_opcode_ihv_end","features":[104]},{"name":"wlan_intf_opcode_ihv_start","features":[104]},{"name":"wlan_intf_opcode_interface_state","features":[104]},{"name":"wlan_intf_opcode_management_frame_protection_capable","features":[104]},{"name":"wlan_intf_opcode_media_streaming_mode","features":[104]},{"name":"wlan_intf_opcode_msm_end","features":[104]},{"name":"wlan_intf_opcode_msm_start","features":[104]},{"name":"wlan_intf_opcode_radio_state","features":[104]},{"name":"wlan_intf_opcode_rssi","features":[104]},{"name":"wlan_intf_opcode_secondary_sta_interfaces","features":[104]},{"name":"wlan_intf_opcode_secondary_sta_synchronized_connections","features":[104]},{"name":"wlan_intf_opcode_security_end","features":[104]},{"name":"wlan_intf_opcode_security_start","features":[104]},{"name":"wlan_intf_opcode_statistics","features":[104]},{"name":"wlan_intf_opcode_supported_adhoc_auth_cipher_pairs","features":[104]},{"name":"wlan_intf_opcode_supported_country_or_region_string_list","features":[104]},{"name":"wlan_intf_opcode_supported_infrastructure_auth_cipher_pairs","features":[104]},{"name":"wlan_intf_opcode_supported_safe_mode","features":[104]},{"name":"wlan_notification_acm_adhoc_network_state_change","features":[104]},{"name":"wlan_notification_acm_autoconf_disabled","features":[104]},{"name":"wlan_notification_acm_autoconf_enabled","features":[104]},{"name":"wlan_notification_acm_background_scan_disabled","features":[104]},{"name":"wlan_notification_acm_background_scan_enabled","features":[104]},{"name":"wlan_notification_acm_bss_type_change","features":[104]},{"name":"wlan_notification_acm_connection_attempt_fail","features":[104]},{"name":"wlan_notification_acm_connection_complete","features":[104]},{"name":"wlan_notification_acm_connection_start","features":[104]},{"name":"wlan_notification_acm_disconnected","features":[104]},{"name":"wlan_notification_acm_disconnecting","features":[104]},{"name":"wlan_notification_acm_end","features":[104]},{"name":"wlan_notification_acm_filter_list_change","features":[104]},{"name":"wlan_notification_acm_interface_arrival","features":[104]},{"name":"wlan_notification_acm_interface_removal","features":[104]},{"name":"wlan_notification_acm_network_available","features":[104]},{"name":"wlan_notification_acm_network_not_available","features":[104]},{"name":"wlan_notification_acm_operational_state_change","features":[104]},{"name":"wlan_notification_acm_power_setting_change","features":[104]},{"name":"wlan_notification_acm_profile_blocked","features":[104]},{"name":"wlan_notification_acm_profile_change","features":[104]},{"name":"wlan_notification_acm_profile_name_change","features":[104]},{"name":"wlan_notification_acm_profile_unblocked","features":[104]},{"name":"wlan_notification_acm_profiles_exhausted","features":[104]},{"name":"wlan_notification_acm_scan_complete","features":[104]},{"name":"wlan_notification_acm_scan_fail","features":[104]},{"name":"wlan_notification_acm_scan_list_refresh","features":[104]},{"name":"wlan_notification_acm_screen_power_change","features":[104]},{"name":"wlan_notification_acm_start","features":[104]},{"name":"wlan_notification_msm_adapter_operation_mode_change","features":[104]},{"name":"wlan_notification_msm_adapter_removal","features":[104]},{"name":"wlan_notification_msm_associated","features":[104]},{"name":"wlan_notification_msm_associating","features":[104]},{"name":"wlan_notification_msm_authenticating","features":[104]},{"name":"wlan_notification_msm_connected","features":[104]},{"name":"wlan_notification_msm_disassociating","features":[104]},{"name":"wlan_notification_msm_disconnected","features":[104]},{"name":"wlan_notification_msm_end","features":[104]},{"name":"wlan_notification_msm_link_degraded","features":[104]},{"name":"wlan_notification_msm_link_improved","features":[104]},{"name":"wlan_notification_msm_peer_join","features":[104]},{"name":"wlan_notification_msm_peer_leave","features":[104]},{"name":"wlan_notification_msm_radio_state_change","features":[104]},{"name":"wlan_notification_msm_roaming_end","features":[104]},{"name":"wlan_notification_msm_roaming_start","features":[104]},{"name":"wlan_notification_msm_signal_quality_change","features":[104]},{"name":"wlan_notification_msm_start","features":[104]},{"name":"wlan_notification_security_end","features":[104]},{"name":"wlan_notification_security_start","features":[104]},{"name":"wlan_opcode_value_type_invalid","features":[104]},{"name":"wlan_opcode_value_type_query_only","features":[104]},{"name":"wlan_opcode_value_type_set_by_group_policy","features":[104]},{"name":"wlan_opcode_value_type_set_by_user","features":[104]},{"name":"wlan_operational_state_going_off","features":[104]},{"name":"wlan_operational_state_going_on","features":[104]},{"name":"wlan_operational_state_off","features":[104]},{"name":"wlan_operational_state_on","features":[104]},{"name":"wlan_operational_state_unknown","features":[104]},{"name":"wlan_power_setting_invalid","features":[104]},{"name":"wlan_power_setting_low_saving","features":[104]},{"name":"wlan_power_setting_maximum_saving","features":[104]},{"name":"wlan_power_setting_medium_saving","features":[104]},{"name":"wlan_power_setting_no_saving","features":[104]},{"name":"wlan_secure_ac_enabled","features":[104]},{"name":"wlan_secure_add_new_all_user_profiles","features":[104]},{"name":"wlan_secure_add_new_per_user_profiles","features":[104]},{"name":"wlan_secure_all_user_profiles_order","features":[104]},{"name":"wlan_secure_bc_scan_enabled","features":[104]},{"name":"wlan_secure_bss_type","features":[104]},{"name":"wlan_secure_current_operation_mode","features":[104]},{"name":"wlan_secure_deny_list","features":[104]},{"name":"wlan_secure_get_plaintext_key","features":[104]},{"name":"wlan_secure_hosted_network_elevated_access","features":[104]},{"name":"wlan_secure_ihv_control","features":[104]},{"name":"wlan_secure_interface_properties","features":[104]},{"name":"wlan_secure_media_streaming_mode_enabled","features":[104]},{"name":"wlan_secure_permit_list","features":[104]},{"name":"wlan_secure_show_denied","features":[104]},{"name":"wlan_secure_virtual_station_extensibility","features":[104]},{"name":"wlan_secure_wfd_elevated_access","features":[104]}],"465":[{"name":"FreeInterfaceContextTable","features":[3,107]},{"name":"GetInterfaceContextTableForHostName","features":[3,107]},{"name":"NET_INTERFACE_CONTEXT","features":[107]},{"name":"NET_INTERFACE_CONTEXT_TABLE","features":[3,107]},{"name":"NET_INTERFACE_FLAG_CONNECT_IF_NEEDED","features":[107]},{"name":"NET_INTERFACE_FLAG_NONE","features":[107]},{"name":"ONDEMAND_NOTIFICATION_CALLBACK","features":[107]},{"name":"OnDemandGetRoutingHint","features":[107]},{"name":"OnDemandRegisterNotification","features":[3,107]},{"name":"OnDemandUnRegisterNotification","features":[3,107]},{"name":"WCM_API_VERSION","features":[107]},{"name":"WCM_API_VERSION_1_0","features":[107]},{"name":"WCM_BILLING_CYCLE_INFO","features":[3,107]},{"name":"WCM_CONNECTION_COST","features":[107]},{"name":"WCM_CONNECTION_COST_APPROACHINGDATALIMIT","features":[107]},{"name":"WCM_CONNECTION_COST_CONGESTED","features":[107]},{"name":"WCM_CONNECTION_COST_DATA","features":[107]},{"name":"WCM_CONNECTION_COST_FIXED","features":[107]},{"name":"WCM_CONNECTION_COST_OVERDATALIMIT","features":[107]},{"name":"WCM_CONNECTION_COST_ROAMING","features":[107]},{"name":"WCM_CONNECTION_COST_SOURCE","features":[107]},{"name":"WCM_CONNECTION_COST_SOURCE_DEFAULT","features":[107]},{"name":"WCM_CONNECTION_COST_SOURCE_GP","features":[107]},{"name":"WCM_CONNECTION_COST_SOURCE_OPERATOR","features":[107]},{"name":"WCM_CONNECTION_COST_SOURCE_USER","features":[107]},{"name":"WCM_CONNECTION_COST_UNKNOWN","features":[107]},{"name":"WCM_CONNECTION_COST_UNRESTRICTED","features":[107]},{"name":"WCM_CONNECTION_COST_VARIABLE","features":[107]},{"name":"WCM_DATAPLAN_STATUS","features":[3,107]},{"name":"WCM_MAX_PROFILE_NAME","features":[107]},{"name":"WCM_MEDIA_TYPE","features":[107]},{"name":"WCM_POLICY_VALUE","features":[3,107]},{"name":"WCM_PROFILE_INFO","features":[107]},{"name":"WCM_PROFILE_INFO_LIST","features":[107]},{"name":"WCM_PROPERTY","features":[107]},{"name":"WCM_TIME_INTERVAL","features":[107]},{"name":"WCM_UNKNOWN_DATAPLAN_STATUS","features":[107]},{"name":"WCM_USAGE_DATA","features":[3,107]},{"name":"WcmFreeMemory","features":[107]},{"name":"WcmGetProfileList","features":[107]},{"name":"WcmQueryProperty","features":[107]},{"name":"WcmSetProfileList","features":[3,107]},{"name":"WcmSetProperty","features":[107]},{"name":"wcm_global_property_domain_policy","features":[107]},{"name":"wcm_global_property_minimize_policy","features":[107]},{"name":"wcm_global_property_powermanagement_policy","features":[107]},{"name":"wcm_global_property_roaming_policy","features":[107]},{"name":"wcm_intf_property_connection_cost","features":[107]},{"name":"wcm_intf_property_dataplan_status","features":[107]},{"name":"wcm_intf_property_hotspot_profile","features":[107]},{"name":"wcm_media_ethernet","features":[107]},{"name":"wcm_media_invalid","features":[107]},{"name":"wcm_media_max","features":[107]},{"name":"wcm_media_mbn","features":[107]},{"name":"wcm_media_unknown","features":[107]},{"name":"wcm_media_wlan","features":[107]}],"466":[{"name":"DL_ADDRESS_TYPE","features":[20]},{"name":"DlBroadcast","features":[20]},{"name":"DlMulticast","features":[20]},{"name":"DlUnicast","features":[20]},{"name":"FWPM_ACTION0","features":[20]},{"name":"FWPM_ACTRL_ADD","features":[20]},{"name":"FWPM_ACTRL_ADD_LINK","features":[20]},{"name":"FWPM_ACTRL_BEGIN_READ_TXN","features":[20]},{"name":"FWPM_ACTRL_BEGIN_WRITE_TXN","features":[20]},{"name":"FWPM_ACTRL_CLASSIFY","features":[20]},{"name":"FWPM_ACTRL_ENUM","features":[20]},{"name":"FWPM_ACTRL_OPEN","features":[20]},{"name":"FWPM_ACTRL_READ","features":[20]},{"name":"FWPM_ACTRL_READ_STATS","features":[20]},{"name":"FWPM_ACTRL_SUBSCRIBE","features":[20]},{"name":"FWPM_ACTRL_WRITE","features":[20]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT","features":[20]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT_SERVER","features":[20]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_PRIVATE_NETWORK","features":[20]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_TYPE","features":[20]},{"name":"FWPM_AUTO_WEIGHT_BITS","features":[20]},{"name":"FWPM_CALLOUT0","features":[20]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_1","features":[20]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_2","features":[20]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_3","features":[20]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_4","features":[20]},{"name":"FWPM_CALLOUT_CHANGE0","features":[20]},{"name":"FWPM_CALLOUT_CHANGE_CALLBACK0","features":[20]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_LISTEN_V4","features":[20]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_RESOURCE_ASSIGNMENT_V4","features":[20]},{"name":"FWPM_CALLOUT_ENUM_TEMPLATE0","features":[20]},{"name":"FWPM_CALLOUT_FLAG_PERSISTENT","features":[20]},{"name":"FWPM_CALLOUT_FLAG_REGISTERED","features":[20]},{"name":"FWPM_CALLOUT_FLAG_USES_PROVIDER_CONTEXT","features":[20]},{"name":"FWPM_CALLOUT_HTTP_TEMPLATE_SSL_HANDSHAKE","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V6","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V4","features":[20]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V6","features":[20]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_SUBSCRIPTION0","features":[20]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V4","features":[20]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V6","features":[20]},{"name":"FWPM_CALLOUT_TEREDO_ALE_LISTEN_V6","features":[20]},{"name":"FWPM_CALLOUT_TEREDO_ALE_RESOURCE_ASSIGNMENT_V6","features":[20]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V4_SILENT_DROP","features":[20]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V6_SILENT_DROP","features":[20]},{"name":"FWPM_CHANGE_ADD","features":[20]},{"name":"FWPM_CHANGE_DELETE","features":[20]},{"name":"FWPM_CHANGE_TYPE","features":[20]},{"name":"FWPM_CHANGE_TYPE_MAX","features":[20]},{"name":"FWPM_CLASSIFY_OPTION0","features":[20,6]},{"name":"FWPM_CLASSIFY_OPTIONS0","features":[20,6]},{"name":"FWPM_CLASSIFY_OPTIONS_CONTEXT","features":[20]},{"name":"FWPM_CONDITION_ALE_APP_ID","features":[20]},{"name":"FWPM_CONDITION_ALE_EFFECTIVE_NAME","features":[20]},{"name":"FWPM_CONDITION_ALE_NAP_CONTEXT","features":[20]},{"name":"FWPM_CONDITION_ALE_ORIGINAL_APP_ID","features":[20]},{"name":"FWPM_CONDITION_ALE_PACKAGE_ID","features":[20]},{"name":"FWPM_CONDITION_ALE_PROMISCUOUS_MODE","features":[20]},{"name":"FWPM_CONDITION_ALE_REAUTH_REASON","features":[20]},{"name":"FWPM_CONDITION_ALE_REMOTE_MACHINE_ID","features":[20]},{"name":"FWPM_CONDITION_ALE_REMOTE_USER_ID","features":[20]},{"name":"FWPM_CONDITION_ALE_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[20]},{"name":"FWPM_CONDITION_ALE_SIO_FIREWALL_SYSTEM_PORT","features":[20]},{"name":"FWPM_CONDITION_ALE_USER_ID","features":[20]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_PROFILE_ID","features":[20]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_TYPE","features":[20]},{"name":"FWPM_CONDITION_ARRIVAL_TUNNEL_TYPE","features":[20]},{"name":"FWPM_CONDITION_AUTHENTICATION_TYPE","features":[20]},{"name":"FWPM_CONDITION_CLIENT_CERT_KEY_LENGTH","features":[20]},{"name":"FWPM_CONDITION_CLIENT_CERT_OID","features":[20]},{"name":"FWPM_CONDITION_CLIENT_TOKEN","features":[20]},{"name":"FWPM_CONDITION_COMPARTMENT_ID","features":[20]},{"name":"FWPM_CONDITION_CURRENT_PROFILE_ID","features":[20]},{"name":"FWPM_CONDITION_DCOM_APP_ID","features":[20]},{"name":"FWPM_CONDITION_DESTINATION_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_DESTINATION_SUB_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_DIRECTION","features":[20]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_ADDRESS_TYPE","features":[20]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_PORT","features":[20]},{"name":"FWPM_CONDITION_EMBEDDED_PROTOCOL","features":[20]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_PORT","features":[20]},{"name":"FWPM_CONDITION_ETHER_TYPE","features":[20]},{"name":"FWPM_CONDITION_FLAGS","features":[20]},{"name":"FWPM_CONDITION_IMAGE_NAME","features":[20]},{"name":"FWPM_CONDITION_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_INTERFACE_MAC_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_INTERFACE_QUARANTINE_EPOCH","features":[20]},{"name":"FWPM_CONDITION_INTERFACE_TYPE","features":[20]},{"name":"FWPM_CONDITION_IPSEC_POLICY_KEY","features":[20]},{"name":"FWPM_CONDITION_IPSEC_SECURITY_REALM_ID","features":[20]},{"name":"FWPM_CONDITION_IP_ARRIVAL_INTERFACE","features":[20]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS_TYPE","features":[20]},{"name":"FWPM_CONDITION_IP_DESTINATION_PORT","features":[20]},{"name":"FWPM_CONDITION_IP_FORWARD_INTERFACE","features":[20]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_TYPE","features":[20]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V4","features":[20]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V6","features":[20]},{"name":"FWPM_CONDITION_IP_LOCAL_INTERFACE","features":[20]},{"name":"FWPM_CONDITION_IP_LOCAL_PORT","features":[20]},{"name":"FWPM_CONDITION_IP_NEXTHOP_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_IP_NEXTHOP_INTERFACE","features":[20]},{"name":"FWPM_CONDITION_IP_PHYSICAL_ARRIVAL_INTERFACE","features":[20]},{"name":"FWPM_CONDITION_IP_PHYSICAL_NEXTHOP_INTERFACE","features":[20]},{"name":"FWPM_CONDITION_IP_PROTOCOL","features":[20]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V4","features":[20]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V6","features":[20]},{"name":"FWPM_CONDITION_IP_REMOTE_PORT","features":[20]},{"name":"FWPM_CONDITION_IP_SOURCE_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_IP_SOURCE_PORT","features":[20]},{"name":"FWPM_CONDITION_KM_AUTH_NAP_CONTEXT","features":[20]},{"name":"FWPM_CONDITION_KM_MODE","features":[20]},{"name":"FWPM_CONDITION_KM_TYPE","features":[20]},{"name":"FWPM_CONDITION_L2_FLAGS","features":[20]},{"name":"FWPM_CONDITION_LOCAL_INTERFACE_PROFILE_ID","features":[20]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS_TYPE","features":[20]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS_TYPE","features":[20]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS_TYPE","features":[20]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS","features":[20]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS_TYPE","features":[20]},{"name":"FWPM_CONDITION_NDIS_MEDIA_TYPE","features":[20]},{"name":"FWPM_CONDITION_NDIS_PHYSICAL_MEDIA_TYPE","features":[20]},{"name":"FWPM_CONDITION_NDIS_PORT","features":[20]},{"name":"FWPM_CONDITION_NET_EVENT_TYPE","features":[20]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_PROFILE_ID","features":[20]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_TYPE","features":[20]},{"name":"FWPM_CONDITION_NEXTHOP_SUB_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_NEXTHOP_TUNNEL_TYPE","features":[20]},{"name":"FWPM_CONDITION_ORIGINAL_ICMP_TYPE","features":[20]},{"name":"FWPM_CONDITION_ORIGINAL_PROFILE_ID","features":[20]},{"name":"FWPM_CONDITION_PEER_NAME","features":[20]},{"name":"FWPM_CONDITION_PIPE","features":[20]},{"name":"FWPM_CONDITION_PROCESS_WITH_RPC_IF_UUID","features":[20]},{"name":"FWPM_CONDITION_QM_MODE","features":[20]},{"name":"FWPM_CONDITION_REAUTHORIZE_REASON","features":[20]},{"name":"FWPM_CONDITION_REMOTE_ID","features":[20]},{"name":"FWPM_CONDITION_REMOTE_USER_TOKEN","features":[20]},{"name":"FWPM_CONDITION_RESERVED0","features":[20]},{"name":"FWPM_CONDITION_RESERVED1","features":[20]},{"name":"FWPM_CONDITION_RESERVED10","features":[20]},{"name":"FWPM_CONDITION_RESERVED11","features":[20]},{"name":"FWPM_CONDITION_RESERVED12","features":[20]},{"name":"FWPM_CONDITION_RESERVED13","features":[20]},{"name":"FWPM_CONDITION_RESERVED14","features":[20]},{"name":"FWPM_CONDITION_RESERVED15","features":[20]},{"name":"FWPM_CONDITION_RESERVED2","features":[20]},{"name":"FWPM_CONDITION_RESERVED3","features":[20]},{"name":"FWPM_CONDITION_RESERVED4","features":[20]},{"name":"FWPM_CONDITION_RESERVED5","features":[20]},{"name":"FWPM_CONDITION_RESERVED6","features":[20]},{"name":"FWPM_CONDITION_RESERVED7","features":[20]},{"name":"FWPM_CONDITION_RESERVED8","features":[20]},{"name":"FWPM_CONDITION_RESERVED9","features":[20]},{"name":"FWPM_CONDITION_RPC_AUTH_LEVEL","features":[20]},{"name":"FWPM_CONDITION_RPC_AUTH_TYPE","features":[20]},{"name":"FWPM_CONDITION_RPC_EP_FLAGS","features":[20]},{"name":"FWPM_CONDITION_RPC_EP_VALUE","features":[20]},{"name":"FWPM_CONDITION_RPC_IF_FLAG","features":[20]},{"name":"FWPM_CONDITION_RPC_IF_UUID","features":[20]},{"name":"FWPM_CONDITION_RPC_IF_VERSION","features":[20]},{"name":"FWPM_CONDITION_RPC_PROTOCOL","features":[20]},{"name":"FWPM_CONDITION_RPC_PROXY_AUTH_TYPE","features":[20]},{"name":"FWPM_CONDITION_RPC_SERVER_NAME","features":[20]},{"name":"FWPM_CONDITION_RPC_SERVER_PORT","features":[20]},{"name":"FWPM_CONDITION_SEC_ENCRYPT_ALGORITHM","features":[20]},{"name":"FWPM_CONDITION_SEC_KEY_SIZE","features":[20]},{"name":"FWPM_CONDITION_SOURCE_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_SOURCE_SUB_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_SUB_INTERFACE_INDEX","features":[20]},{"name":"FWPM_CONDITION_TUNNEL_TYPE","features":[20]},{"name":"FWPM_CONDITION_VLAN_ID","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_ID","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_TYPE","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_VM_ID","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_ID","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_NETWORK_TYPE","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_ID","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_TYPE","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_VM_ID","features":[20]},{"name":"FWPM_CONDITION_VSWITCH_TENANT_NETWORK_ID","features":[20]},{"name":"FWPM_CONNECTION0","features":[3,20]},{"name":"FWPM_CONNECTION_CALLBACK0","features":[3,20]},{"name":"FWPM_CONNECTION_ENUM_FLAG_QUERY_BYTES_TRANSFERRED","features":[20]},{"name":"FWPM_CONNECTION_ENUM_TEMPLATE0","features":[20]},{"name":"FWPM_CONNECTION_EVENT_ADD","features":[20]},{"name":"FWPM_CONNECTION_EVENT_DELETE","features":[20]},{"name":"FWPM_CONNECTION_EVENT_MAX","features":[20]},{"name":"FWPM_CONNECTION_EVENT_TYPE","features":[20]},{"name":"FWPM_CONNECTION_SUBSCRIPTION0","features":[20]},{"name":"FWPM_DISPLAY_DATA0","features":[20]},{"name":"FWPM_DYNAMIC_KEYWORD_CALLBACK0","features":[20]},{"name":"FWPM_ENGINE_COLLECT_NET_EVENTS","features":[20]},{"name":"FWPM_ENGINE_MONITOR_IPSEC_CONNECTIONS","features":[20]},{"name":"FWPM_ENGINE_NAME_CACHE","features":[20]},{"name":"FWPM_ENGINE_NET_EVENT_MATCH_ANY_KEYWORDS","features":[20]},{"name":"FWPM_ENGINE_OPTION","features":[20]},{"name":"FWPM_ENGINE_OPTION_MAX","features":[20]},{"name":"FWPM_ENGINE_OPTION_PACKET_BATCH_INBOUND","features":[20]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_FORWARD","features":[20]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_INBOUND","features":[20]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_NONE","features":[20]},{"name":"FWPM_ENGINE_PACKET_QUEUING","features":[20]},{"name":"FWPM_ENGINE_TXN_WATCHDOG_TIMEOUT_IN_MSEC","features":[20]},{"name":"FWPM_FIELD0","features":[20]},{"name":"FWPM_FIELD_FLAGS","features":[20]},{"name":"FWPM_FIELD_IP_ADDRESS","features":[20]},{"name":"FWPM_FIELD_RAW_DATA","features":[20]},{"name":"FWPM_FIELD_TYPE","features":[20]},{"name":"FWPM_FIELD_TYPE_MAX","features":[20]},{"name":"FWPM_FILTER0","features":[20,6]},{"name":"FWPM_FILTER_CHANGE0","features":[20]},{"name":"FWPM_FILTER_CHANGE_CALLBACK0","features":[20]},{"name":"FWPM_FILTER_CONDITION0","features":[20,6]},{"name":"FWPM_FILTER_ENUM_TEMPLATE0","features":[20,6]},{"name":"FWPM_FILTER_FLAGS","features":[20]},{"name":"FWPM_FILTER_FLAG_BOOTTIME","features":[20]},{"name":"FWPM_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[20]},{"name":"FWPM_FILTER_FLAG_DISABLED","features":[20]},{"name":"FWPM_FILTER_FLAG_GAMEOS_ONLY","features":[20]},{"name":"FWPM_FILTER_FLAG_HAS_PROVIDER_CONTEXT","features":[20]},{"name":"FWPM_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[20]},{"name":"FWPM_FILTER_FLAG_INDEXED","features":[20]},{"name":"FWPM_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[20]},{"name":"FWPM_FILTER_FLAG_NONE","features":[20]},{"name":"FWPM_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[20]},{"name":"FWPM_FILTER_FLAG_PERSISTENT","features":[20]},{"name":"FWPM_FILTER_FLAG_RESERVED0","features":[20]},{"name":"FWPM_FILTER_FLAG_RESERVED1","features":[20]},{"name":"FWPM_FILTER_FLAG_SILENT_MODE","features":[20]},{"name":"FWPM_FILTER_FLAG_SYSTEMOS_ONLY","features":[20]},{"name":"FWPM_FILTER_SUBSCRIPTION0","features":[20,6]},{"name":"FWPM_GENERAL_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_AUTHIP_MM_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_AUTHIP_QM_TRANSPORT_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_AUTHIP_QM_TUNNEL_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_DOSP_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_IKEV2_MM_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_IKEV2_QM_TRANSPORT_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_IKEV2_QM_TUNNEL_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_IKE_MM_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_IKE_QM_TRANSPORT_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_IKE_QM_TUNNEL_CONTEXT","features":[20]},{"name":"FWPM_IPSEC_KEYING_CONTEXT","features":[20]},{"name":"FWPM_KEYING_MODULE_AUTHIP","features":[20]},{"name":"FWPM_KEYING_MODULE_IKE","features":[20]},{"name":"FWPM_KEYING_MODULE_IKEV2","features":[20]},{"name":"FWPM_LAYER0","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6","features":[20]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V4","features":[20]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V6","features":[20]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V4","features":[20]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V6","features":[20]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V4","features":[20]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V6","features":[20]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4","features":[20]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6","features":[20]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4","features":[20]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6","features":[20]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V4","features":[20]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V6","features":[20]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4","features":[20]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6","features":[20]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_ETHERNET","features":[20]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V4","features":[20]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V6","features":[20]},{"name":"FWPM_LAYER_ENUM_TEMPLATE0","features":[20]},{"name":"FWPM_LAYER_FLAG_BUFFERED","features":[20]},{"name":"FWPM_LAYER_FLAG_BUILTIN","features":[20]},{"name":"FWPM_LAYER_FLAG_CLASSIFY_MOSTLY","features":[20]},{"name":"FWPM_LAYER_FLAG_KERNEL","features":[20]},{"name":"FWPM_LAYER_IKEEXT_V4","features":[20]},{"name":"FWPM_LAYER_IKEEXT_V6","features":[20]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4","features":[20]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6","features":[20]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4","features":[20]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6","features":[20]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_ETHERNET","features":[20]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE","features":[20]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE_FAST","features":[20]},{"name":"FWPM_LAYER_INBOUND_RESERVED2","features":[20]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_FAST","features":[20]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4","features":[20]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6","features":[20]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_ETHERNET","features":[20]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V4","features":[20]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V6","features":[20]},{"name":"FWPM_LAYER_IPFORWARD_V4","features":[20]},{"name":"FWPM_LAYER_IPFORWARD_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_IPFORWARD_V6","features":[20]},{"name":"FWPM_LAYER_IPFORWARD_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V4","features":[20]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V6","features":[20]},{"name":"FWPM_LAYER_IPSEC_V4","features":[20]},{"name":"FWPM_LAYER_IPSEC_V6","features":[20]},{"name":"FWPM_LAYER_KM_AUTHORIZATION","features":[20]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V4","features":[20]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V6","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_ETHERNET","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE_FAST","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V4","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V6","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_FAST","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6","features":[20]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6_DISCARD","features":[20]},{"name":"FWPM_LAYER_RPC_EPMAP","features":[20]},{"name":"FWPM_LAYER_RPC_EP_ADD","features":[20]},{"name":"FWPM_LAYER_RPC_PROXY_CONN","features":[20]},{"name":"FWPM_LAYER_RPC_PROXY_IF","features":[20]},{"name":"FWPM_LAYER_RPC_UM","features":[20]},{"name":"FWPM_LAYER_STATISTICS0","features":[20]},{"name":"FWPM_LAYER_STREAM_PACKET_V4","features":[20]},{"name":"FWPM_LAYER_STREAM_PACKET_V6","features":[20]},{"name":"FWPM_LAYER_STREAM_V4","features":[20]},{"name":"FWPM_LAYER_STREAM_V4_DISCARD","features":[20]},{"name":"FWPM_LAYER_STREAM_V6","features":[20]},{"name":"FWPM_LAYER_STREAM_V6_DISCARD","features":[20]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_CONTEXT","features":[20]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTING0","features":[20,6]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTINGS0","features":[20,6]},{"name":"FWPM_NET_EVENT0","features":[3,20,6]},{"name":"FWPM_NET_EVENT1","features":[3,20,6]},{"name":"FWPM_NET_EVENT2","features":[3,20,6]},{"name":"FWPM_NET_EVENT3","features":[3,20,6]},{"name":"FWPM_NET_EVENT4","features":[3,20,6]},{"name":"FWPM_NET_EVENT5","features":[3,20,6]},{"name":"FWPM_NET_EVENT_CALLBACK0","features":[3,20,6]},{"name":"FWPM_NET_EVENT_CALLBACK1","features":[3,20,6]},{"name":"FWPM_NET_EVENT_CALLBACK2","features":[3,20,6]},{"name":"FWPM_NET_EVENT_CALLBACK3","features":[3,20,6]},{"name":"FWPM_NET_EVENT_CALLBACK4","features":[3,20,6]},{"name":"FWPM_NET_EVENT_CAPABILITY_ALLOW0","features":[3,20]},{"name":"FWPM_NET_EVENT_CAPABILITY_DROP0","features":[3,20]},{"name":"FWPM_NET_EVENT_CLASSIFY_ALLOW0","features":[3,20]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP0","features":[20]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP1","features":[3,20]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP2","features":[3,20]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP_MAC0","features":[3,20]},{"name":"FWPM_NET_EVENT_ENUM_TEMPLATE0","features":[3,20,6]},{"name":"FWPM_NET_EVENT_FLAG_APP_ID_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_EFFECTIVE_NAME_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_ENTERPRISE_ID_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_IP_PROTOCOL_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_IP_VERSION_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_ADDR_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_PORT_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_PACKAGE_ID_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_POLICY_FLAGS_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_REAUTH_REASON_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_ADDR_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_PORT_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_SCOPE_ID_SET","features":[20]},{"name":"FWPM_NET_EVENT_FLAG_USER_ID_SET","features":[20]},{"name":"FWPM_NET_EVENT_HEADER0","features":[3,20,6]},{"name":"FWPM_NET_EVENT_HEADER1","features":[3,20,6]},{"name":"FWPM_NET_EVENT_HEADER2","features":[3,20,6]},{"name":"FWPM_NET_EVENT_HEADER3","features":[3,20,6]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE0","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE1","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_BENIGN","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_MULTIPLE","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE0","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE1","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE2","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_BENIGN","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_MULTIPLE","features":[20]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE0","features":[20,6]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE1","features":[20,6]},{"name":"FWPM_NET_EVENT_IPSEC_DOSP_DROP0","features":[20]},{"name":"FWPM_NET_EVENT_IPSEC_KERNEL_DROP0","features":[20]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_ALLOW","features":[20]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_DROP","features":[20]},{"name":"FWPM_NET_EVENT_KEYWORD_CLASSIFY_ALLOW","features":[20]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_BCAST","features":[20]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_MCAST","features":[20]},{"name":"FWPM_NET_EVENT_KEYWORD_PORT_SCANNING_DROP","features":[20]},{"name":"FWPM_NET_EVENT_LPM_PACKET_ARRIVAL0","features":[20]},{"name":"FWPM_NET_EVENT_SUBSCRIPTION0","features":[3,20,6]},{"name":"FWPM_NET_EVENT_TYPE","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_ALLOW","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_DROP","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_ALLOW","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP_MAC","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_EM_FAILURE","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_MM_FAILURE","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_QM_FAILURE","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_DOSP_DROP","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_KERNEL_DROP","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_LPM_PACKET_ARRIVAL","features":[20]},{"name":"FWPM_NET_EVENT_TYPE_MAX","features":[20]},{"name":"FWPM_PROVIDER0","features":[20]},{"name":"FWPM_PROVIDER_CHANGE0","features":[20]},{"name":"FWPM_PROVIDER_CHANGE_CALLBACK0","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT0","features":[20,6]},{"name":"FWPM_PROVIDER_CONTEXT1","features":[20,6]},{"name":"FWPM_PROVIDER_CONTEXT2","features":[20,6]},{"name":"FWPM_PROVIDER_CONTEXT3","features":[20,6]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE0","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE_CALLBACK0","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_DOWNLEVEL","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_PERSISTENT","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_AUTHIP","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_IPSEC","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE","features":[20]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE_MAX","features":[20]},{"name":"FWPM_PROVIDER_ENUM_TEMPLATE0","features":[20]},{"name":"FWPM_PROVIDER_FLAG_DISABLED","features":[20]},{"name":"FWPM_PROVIDER_FLAG_PERSISTENT","features":[20]},{"name":"FWPM_PROVIDER_IKEEXT","features":[20]},{"name":"FWPM_PROVIDER_IPSEC_DOSP_CONFIG","features":[20]},{"name":"FWPM_PROVIDER_MPSSVC_APP_ISOLATION","features":[20]},{"name":"FWPM_PROVIDER_MPSSVC_EDP","features":[20]},{"name":"FWPM_PROVIDER_MPSSVC_TENANT_RESTRICTIONS","features":[20]},{"name":"FWPM_PROVIDER_MPSSVC_WF","features":[20]},{"name":"FWPM_PROVIDER_MPSSVC_WSH","features":[20]},{"name":"FWPM_PROVIDER_SUBSCRIPTION0","features":[20]},{"name":"FWPM_PROVIDER_TCP_CHIMNEY_OFFLOAD","features":[20]},{"name":"FWPM_PROVIDER_TCP_TEMPLATES","features":[20]},{"name":"FWPM_SERVICE_RUNNING","features":[20]},{"name":"FWPM_SERVICE_START_PENDING","features":[20]},{"name":"FWPM_SERVICE_STATE","features":[20]},{"name":"FWPM_SERVICE_STATE_MAX","features":[20]},{"name":"FWPM_SERVICE_STOPPED","features":[20]},{"name":"FWPM_SERVICE_STOP_PENDING","features":[20]},{"name":"FWPM_SESSION0","features":[3,20,6]},{"name":"FWPM_SESSION_ENUM_TEMPLATE0","features":[20]},{"name":"FWPM_SESSION_FLAG_DYNAMIC","features":[20]},{"name":"FWPM_SESSION_FLAG_RESERVED","features":[20]},{"name":"FWPM_STATISTICS0","features":[20]},{"name":"FWPM_SUBLAYER0","features":[20]},{"name":"FWPM_SUBLAYER_CHANGE0","features":[20]},{"name":"FWPM_SUBLAYER_CHANGE_CALLBACK0","features":[20]},{"name":"FWPM_SUBLAYER_ENUM_TEMPLATE0","features":[20]},{"name":"FWPM_SUBLAYER_FLAG_PERSISTENT","features":[20]},{"name":"FWPM_SUBLAYER_INSPECTION","features":[20]},{"name":"FWPM_SUBLAYER_IPSEC_DOSP","features":[20]},{"name":"FWPM_SUBLAYER_IPSEC_FORWARD_OUTBOUND_TUNNEL","features":[20]},{"name":"FWPM_SUBLAYER_IPSEC_SECURITY_REALM","features":[20]},{"name":"FWPM_SUBLAYER_IPSEC_TUNNEL","features":[20]},{"name":"FWPM_SUBLAYER_LIPS","features":[20]},{"name":"FWPM_SUBLAYER_MPSSVC_APP_ISOLATION","features":[20]},{"name":"FWPM_SUBLAYER_MPSSVC_EDP","features":[20]},{"name":"FWPM_SUBLAYER_MPSSVC_QUARANTINE","features":[20]},{"name":"FWPM_SUBLAYER_MPSSVC_TENANT_RESTRICTIONS","features":[20]},{"name":"FWPM_SUBLAYER_MPSSVC_WF","features":[20]},{"name":"FWPM_SUBLAYER_MPSSVC_WSH","features":[20]},{"name":"FWPM_SUBLAYER_RPC_AUDIT","features":[20]},{"name":"FWPM_SUBLAYER_SECURE_SOCKET","features":[20]},{"name":"FWPM_SUBLAYER_SUBSCRIPTION0","features":[20]},{"name":"FWPM_SUBLAYER_TCP_CHIMNEY_OFFLOAD","features":[20]},{"name":"FWPM_SUBLAYER_TCP_TEMPLATES","features":[20]},{"name":"FWPM_SUBLAYER_TEREDO","features":[20]},{"name":"FWPM_SUBLAYER_UNIVERSAL","features":[20]},{"name":"FWPM_SUBSCRIPTION_FLAGS","features":[20]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_ADD","features":[20]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_DELETE","features":[20]},{"name":"FWPM_SYSTEM_PORTS0","features":[20]},{"name":"FWPM_SYSTEM_PORTS_BY_TYPE0","features":[20]},{"name":"FWPM_SYSTEM_PORTS_CALLBACK0","features":[20]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_IN","features":[20]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_OUT","features":[20]},{"name":"FWPM_SYSTEM_PORT_RPC_EPMAP","features":[20]},{"name":"FWPM_SYSTEM_PORT_TEREDO","features":[20]},{"name":"FWPM_SYSTEM_PORT_TYPE","features":[20]},{"name":"FWPM_SYSTEM_PORT_TYPE_MAX","features":[20]},{"name":"FWPM_TUNNEL_FLAG_ENABLE_VIRTUAL_IF_TUNNELING","features":[20]},{"name":"FWPM_TUNNEL_FLAG_POINT_TO_POINT","features":[20]},{"name":"FWPM_TUNNEL_FLAG_RESERVED0","features":[20]},{"name":"FWPM_TXN_READ_ONLY","features":[20]},{"name":"FWPM_VSWITCH_EVENT0","features":[3,20]},{"name":"FWPM_VSWITCH_EVENT_CALLBACK0","features":[3,20]},{"name":"FWPM_VSWITCH_EVENT_DISABLED_FOR_INSPECTION","features":[20]},{"name":"FWPM_VSWITCH_EVENT_ENABLED_FOR_INSPECTION","features":[20]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ADD_TO_INCOMPLETE_LAYER","features":[20]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_NOT_IN_REQUIRED_POSITION","features":[20]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_REORDER","features":[20]},{"name":"FWPM_VSWITCH_EVENT_MAX","features":[20]},{"name":"FWPM_VSWITCH_EVENT_SUBSCRIPTION0","features":[20]},{"name":"FWPM_VSWITCH_EVENT_TYPE","features":[20]},{"name":"FWPM_WEIGHT_RANGE_IKE_EXEMPTIONS","features":[20]},{"name":"FWPM_WEIGHT_RANGE_IPSEC","features":[20]},{"name":"FWPS_ALE_ENDPOINT_FLAG_IPSEC_SECURED","features":[20]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ABSORB","features":[20]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_CHECK","features":[20]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_POSSIBLE","features":[20]},{"name":"FWPS_CLASSIFY_OUT_FLAG_BUFFER_LIMIT_REACHED","features":[20]},{"name":"FWPS_CLASSIFY_OUT_FLAG_NO_MORE_DATA","features":[20]},{"name":"FWPS_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[20]},{"name":"FWPS_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[20]},{"name":"FWPS_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[20]},{"name":"FWPS_FILTER_FLAG_OR_CONDITIONS","features":[20]},{"name":"FWPS_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[20]},{"name":"FWPS_FILTER_FLAG_RESERVED0","features":[20]},{"name":"FWPS_FILTER_FLAG_RESERVED1","features":[20]},{"name":"FWPS_FILTER_FLAG_SILENT_MODE","features":[20]},{"name":"FWPS_INCOMING_FLAG_ABSORB","features":[20]},{"name":"FWPS_INCOMING_FLAG_CACHE_SAFE","features":[20]},{"name":"FWPS_INCOMING_FLAG_CONNECTION_FAILING_INDICATION","features":[20]},{"name":"FWPS_INCOMING_FLAG_ENFORCE_QUERY","features":[20]},{"name":"FWPS_INCOMING_FLAG_IS_LOCAL_ONLY_FLOW","features":[20]},{"name":"FWPS_INCOMING_FLAG_IS_LOOSE_SOURCE_FLOW","features":[20]},{"name":"FWPS_INCOMING_FLAG_MID_STREAM_INSPECTION","features":[20]},{"name":"FWPS_INCOMING_FLAG_RECLASSIFY","features":[20]},{"name":"FWPS_INCOMING_FLAG_RESERVED0","features":[20]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV4_FRAMING","features":[20]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV6_FRAMING","features":[20]},{"name":"FWPS_L2_INCOMING_FLAG_RECLASSIFY_MULTI_DESTINATION","features":[20]},{"name":"FWPS_L2_METADATA_FIELD_ETHERNET_MAC_HEADER_SIZE","features":[20]},{"name":"FWPS_L2_METADATA_FIELD_RESERVED","features":[20]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_DESTINATION_PORT_ID","features":[20]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_PACKET_CONTEXT","features":[20]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_NIC_INDEX","features":[20]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_PORT_ID","features":[20]},{"name":"FWPS_L2_METADATA_FIELD_WIFI_OPERATION_MODE","features":[20]},{"name":"FWPS_METADATA_FIELD_ALE_CLASSIFY_REQUIRED","features":[20]},{"name":"FWPS_METADATA_FIELD_COMPARTMENT_ID","features":[20]},{"name":"FWPS_METADATA_FIELD_COMPLETION_HANDLE","features":[20]},{"name":"FWPS_METADATA_FIELD_DESTINATION_INTERFACE_INDEX","features":[20]},{"name":"FWPS_METADATA_FIELD_DESTINATION_PREFIX","features":[20]},{"name":"FWPS_METADATA_FIELD_DISCARD_REASON","features":[20]},{"name":"FWPS_METADATA_FIELD_ETHER_FRAME_LENGTH","features":[20]},{"name":"FWPS_METADATA_FIELD_FLOW_HANDLE","features":[20]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_INBOUND_PASS_THRU","features":[20]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_OUTBOUND_PASS_THRU","features":[20]},{"name":"FWPS_METADATA_FIELD_FRAGMENT_DATA","features":[20]},{"name":"FWPS_METADATA_FIELD_ICMP_ID_AND_SEQUENCE","features":[20]},{"name":"FWPS_METADATA_FIELD_IP_HEADER_SIZE","features":[20]},{"name":"FWPS_METADATA_FIELD_LOCAL_REDIRECT_TARGET_PID","features":[20]},{"name":"FWPS_METADATA_FIELD_ORIGINAL_DESTINATION","features":[20]},{"name":"FWPS_METADATA_FIELD_PACKET_DIRECTION","features":[20]},{"name":"FWPS_METADATA_FIELD_PACKET_SYSTEM_CRITICAL","features":[20]},{"name":"FWPS_METADATA_FIELD_PARENT_ENDPOINT_HANDLE","features":[20]},{"name":"FWPS_METADATA_FIELD_PATH_MTU","features":[20]},{"name":"FWPS_METADATA_FIELD_PROCESS_ID","features":[20]},{"name":"FWPS_METADATA_FIELD_PROCESS_PATH","features":[20]},{"name":"FWPS_METADATA_FIELD_REDIRECT_RECORD_HANDLE","features":[20]},{"name":"FWPS_METADATA_FIELD_REMOTE_SCOPE_ID","features":[20]},{"name":"FWPS_METADATA_FIELD_RESERVED","features":[20]},{"name":"FWPS_METADATA_FIELD_SOURCE_INTERFACE_INDEX","features":[20]},{"name":"FWPS_METADATA_FIELD_SUB_PROCESS_TAG","features":[20]},{"name":"FWPS_METADATA_FIELD_SYSTEM_FLAGS","features":[20]},{"name":"FWPS_METADATA_FIELD_TOKEN","features":[20]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_CONTROL_DATA","features":[20]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_ENDPOINT_HANDLE","features":[20]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_INCLUDE_HEADER","features":[20]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_SIZE","features":[20]},{"name":"FWPS_RIGHT_ACTION_WRITE","features":[20]},{"name":"FWP_ACTION_BLOCK","features":[20]},{"name":"FWP_ACTION_CALLOUT_INSPECTION","features":[20]},{"name":"FWP_ACTION_CALLOUT_TERMINATING","features":[20]},{"name":"FWP_ACTION_CALLOUT_UNKNOWN","features":[20]},{"name":"FWP_ACTION_CONTINUE","features":[20]},{"name":"FWP_ACTION_FLAG_CALLOUT","features":[20]},{"name":"FWP_ACTION_FLAG_NON_TERMINATING","features":[20]},{"name":"FWP_ACTION_FLAG_TERMINATING","features":[20]},{"name":"FWP_ACTION_NONE","features":[20]},{"name":"FWP_ACTION_NONE_NO_MATCH","features":[20]},{"name":"FWP_ACTION_PERMIT","features":[20]},{"name":"FWP_ACTION_TYPE","features":[20]},{"name":"FWP_ACTRL_MATCH_FILTER","features":[20]},{"name":"FWP_AF","features":[20]},{"name":"FWP_AF_ETHER","features":[20]},{"name":"FWP_AF_INET","features":[20]},{"name":"FWP_AF_INET6","features":[20]},{"name":"FWP_AF_NONE","features":[20]},{"name":"FWP_BYTEMAP_ARRAY64_SIZE","features":[20]},{"name":"FWP_BYTE_ARRAY16","features":[20]},{"name":"FWP_BYTE_ARRAY16_TYPE","features":[20]},{"name":"FWP_BYTE_ARRAY6","features":[20]},{"name":"FWP_BYTE_ARRAY6_SIZE","features":[20]},{"name":"FWP_BYTE_ARRAY6_TYPE","features":[20]},{"name":"FWP_BYTE_BLOB","features":[20]},{"name":"FWP_BYTE_BLOB_TYPE","features":[20]},{"name":"FWP_CALLOUT_FLAG_ALLOW_L2_BATCH_CLASSIFY","features":[20]},{"name":"FWP_CALLOUT_FLAG_ALLOW_MID_STREAM_INSPECTION","features":[20]},{"name":"FWP_CALLOUT_FLAG_ALLOW_OFFLOAD","features":[20]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RECLASSIFY","features":[20]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RSC","features":[20]},{"name":"FWP_CALLOUT_FLAG_ALLOW_URO","features":[20]},{"name":"FWP_CALLOUT_FLAG_ALLOW_USO","features":[20]},{"name":"FWP_CALLOUT_FLAG_CONDITIONAL_ON_FLOW","features":[20]},{"name":"FWP_CALLOUT_FLAG_ENABLE_COMMIT_ADD_NOTIFY","features":[20]},{"name":"FWP_CALLOUT_FLAG_RESERVED1","features":[20]},{"name":"FWP_CALLOUT_FLAG_RESERVED2","features":[20]},{"name":"FWP_CLASSIFY_OPTION_LOCAL_ONLY_MAPPING","features":[20]},{"name":"FWP_CLASSIFY_OPTION_LOOSE_SOURCE_MAPPING","features":[20]},{"name":"FWP_CLASSIFY_OPTION_MAX","features":[20]},{"name":"FWP_CLASSIFY_OPTION_MCAST_BCAST_LIFETIME","features":[20]},{"name":"FWP_CLASSIFY_OPTION_MULTICAST_STATE","features":[20]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_MM_POLICY_KEY","features":[20]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_QM_POLICY_KEY","features":[20]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_SECURITY_FLAGS","features":[20]},{"name":"FWP_CLASSIFY_OPTION_TYPE","features":[20]},{"name":"FWP_CLASSIFY_OPTION_UNICAST_LIFETIME","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_APPCONTAINER_LOOPBACK","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_AUTH_FW","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_CONNECTION_REDIRECTED","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT_GROUP","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_HONORING_POLICY_AUTHORIZE","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_IMPLICIT_BIND","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_INBOUND_PASS_THRU","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_NATT_RECLASSIFY","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_SECURED","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_LOOPBACK","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_NAME_APP_SPECIFIED","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_NON_APPCONTAINER_LOOPBACK","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_OUTBOUND_PASS_THRU","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_PROMISCUOUS","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_PROXY_CONNECTION","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_RAW_ENDPOINT","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_REASSEMBLED","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_REAUTHORIZE","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_RECLASSIFY","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_RESERVED","features":[20]},{"name":"FWP_CONDITION_FLAG_IS_WILDCARD_BIND","features":[20]},{"name":"FWP_CONDITION_FLAG_REQUIRES_ALE_CLASSIFY","features":[20]},{"name":"FWP_CONDITION_L2_IF_CONNECTOR_PRESENT","features":[20]},{"name":"FWP_CONDITION_L2_IS_IP_FRAGMENT_GROUP","features":[20]},{"name":"FWP_CONDITION_L2_IS_MALFORMED_PACKET","features":[20]},{"name":"FWP_CONDITION_L2_IS_MOBILE_BROADBAND","features":[20]},{"name":"FWP_CONDITION_L2_IS_NATIVE_ETHERNET","features":[20]},{"name":"FWP_CONDITION_L2_IS_VM2VM","features":[20]},{"name":"FWP_CONDITION_L2_IS_WIFI","features":[20]},{"name":"FWP_CONDITION_L2_IS_WIFI_DIRECT_DATA","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CHECK_OFFLOAD","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CLASSIFY_COMPLETION","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_EDP_POLICY_CHANGED","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_IPSEC_PROPERTIES_CHANGED","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_MID_STREAM_INSPECTION","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_ARRIVAL_INTERFACE","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_INBOUND_MCAST_BCAST_PACKET","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_NEXTHOP_INTERFACE","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_POLICY_CHANGE","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROFILE_CROSSING","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROXY_HANDLE_CHANGED","features":[20]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_SOCKET_PROPERTY_CHANGED","features":[20]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_ALLOW_EDGE_TRAFFIC","features":[20]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_DENY_EDGE_TRAFFIC","features":[20]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_IS_SYSTEM_PORT_RPC","features":[20]},{"name":"FWP_CONDITION_VALUE0","features":[20,6]},{"name":"FWP_DATA_TYPE","features":[20]},{"name":"FWP_DATA_TYPE_MAX","features":[20]},{"name":"FWP_DIRECTION","features":[20]},{"name":"FWP_DIRECTION_INBOUND","features":[20]},{"name":"FWP_DIRECTION_MAX","features":[20]},{"name":"FWP_DIRECTION_OUTBOUND","features":[20]},{"name":"FWP_DOUBLE","features":[20]},{"name":"FWP_EMPTY","features":[20]},{"name":"FWP_ETHER_ENCAP_METHOD","features":[20]},{"name":"FWP_ETHER_ENCAP_METHOD_ETHER_V2","features":[20]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP","features":[20]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP_W_OUI_ZERO","features":[20]},{"name":"FWP_FILTER_ENUM_FLAG_BEST_TERMINATING_MATCH","features":[20]},{"name":"FWP_FILTER_ENUM_FLAG_BOOTTIME_ONLY","features":[20]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_BOOTTIME","features":[20]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_DISABLED","features":[20]},{"name":"FWP_FILTER_ENUM_FLAG_RESERVED1","features":[20]},{"name":"FWP_FILTER_ENUM_FLAG_SORTED","features":[20]},{"name":"FWP_FILTER_ENUM_FULLY_CONTAINED","features":[20]},{"name":"FWP_FILTER_ENUM_OVERLAPPING","features":[20]},{"name":"FWP_FILTER_ENUM_TYPE","features":[20]},{"name":"FWP_FILTER_ENUM_TYPE_MAX","features":[20]},{"name":"FWP_FLOAT","features":[20]},{"name":"FWP_INT16","features":[20]},{"name":"FWP_INT32","features":[20]},{"name":"FWP_INT64","features":[20]},{"name":"FWP_INT8","features":[20]},{"name":"FWP_IP_VERSION","features":[20]},{"name":"FWP_IP_VERSION_MAX","features":[20]},{"name":"FWP_IP_VERSION_NONE","features":[20]},{"name":"FWP_IP_VERSION_V4","features":[20]},{"name":"FWP_IP_VERSION_V6","features":[20]},{"name":"FWP_MATCH_EQUAL","features":[20]},{"name":"FWP_MATCH_EQUAL_CASE_INSENSITIVE","features":[20]},{"name":"FWP_MATCH_FLAGS_ALL_SET","features":[20]},{"name":"FWP_MATCH_FLAGS_ANY_SET","features":[20]},{"name":"FWP_MATCH_FLAGS_NONE_SET","features":[20]},{"name":"FWP_MATCH_GREATER","features":[20]},{"name":"FWP_MATCH_GREATER_OR_EQUAL","features":[20]},{"name":"FWP_MATCH_LESS","features":[20]},{"name":"FWP_MATCH_LESS_OR_EQUAL","features":[20]},{"name":"FWP_MATCH_NOT_EQUAL","features":[20]},{"name":"FWP_MATCH_NOT_PREFIX","features":[20]},{"name":"FWP_MATCH_PREFIX","features":[20]},{"name":"FWP_MATCH_RANGE","features":[20]},{"name":"FWP_MATCH_TYPE","features":[20]},{"name":"FWP_MATCH_TYPE_MAX","features":[20]},{"name":"FWP_NETWORK_CONNECTION_POLICY_MAX","features":[20]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP","features":[20]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP_INTERFACE","features":[20]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE","features":[20]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SOURCE_ADDRESS","features":[20]},{"name":"FWP_OPTION_VALUE_ALLOW_GLOBAL_MULTICAST_STATE","features":[20]},{"name":"FWP_OPTION_VALUE_ALLOW_MULTICAST_STATE","features":[20]},{"name":"FWP_OPTION_VALUE_DENY_MULTICAST_STATE","features":[20]},{"name":"FWP_OPTION_VALUE_DISABLE_LOCAL_ONLY_MAPPING","features":[20]},{"name":"FWP_OPTION_VALUE_DISABLE_LOOSE_SOURCE","features":[20]},{"name":"FWP_OPTION_VALUE_ENABLE_LOCAL_ONLY_MAPPING","features":[20]},{"name":"FWP_OPTION_VALUE_ENABLE_LOOSE_SOURCE","features":[20]},{"name":"FWP_RANGE0","features":[20,6]},{"name":"FWP_RANGE_TYPE","features":[20]},{"name":"FWP_SECURITY_DESCRIPTOR_TYPE","features":[20]},{"name":"FWP_SID","features":[20]},{"name":"FWP_SINGLE_DATA_TYPE_MAX","features":[20]},{"name":"FWP_TOKEN_ACCESS_INFORMATION_TYPE","features":[20]},{"name":"FWP_TOKEN_INFORMATION","features":[20,6]},{"name":"FWP_TOKEN_INFORMATION_TYPE","features":[20]},{"name":"FWP_UINT16","features":[20]},{"name":"FWP_UINT32","features":[20]},{"name":"FWP_UINT64","features":[20]},{"name":"FWP_UINT8","features":[20]},{"name":"FWP_UNICODE_STRING_TYPE","features":[20]},{"name":"FWP_V4_ADDR_AND_MASK","features":[20]},{"name":"FWP_V4_ADDR_MASK","features":[20]},{"name":"FWP_V6_ADDR_AND_MASK","features":[20]},{"name":"FWP_V6_ADDR_MASK","features":[20]},{"name":"FWP_V6_ADDR_SIZE","features":[20]},{"name":"FWP_VALUE0","features":[20,6]},{"name":"FWP_VSWITCH_NETWORK_TYPE","features":[20]},{"name":"FWP_VSWITCH_NETWORK_TYPE_EXTERNAL","features":[20]},{"name":"FWP_VSWITCH_NETWORK_TYPE_INTERNAL","features":[20]},{"name":"FWP_VSWITCH_NETWORK_TYPE_PRIVATE","features":[20]},{"name":"FWP_VSWITCH_NETWORK_TYPE_UNKNOWN","features":[20]},{"name":"FwpmCalloutAdd0","features":[3,20,6]},{"name":"FwpmCalloutCreateEnumHandle0","features":[3,20]},{"name":"FwpmCalloutDeleteById0","features":[3,20]},{"name":"FwpmCalloutDeleteByKey0","features":[3,20]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[3,20]},{"name":"FwpmCalloutEnum0","features":[3,20]},{"name":"FwpmCalloutGetById0","features":[3,20]},{"name":"FwpmCalloutGetByKey0","features":[3,20]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmCalloutSubscribeChanges0","features":[3,20]},{"name":"FwpmCalloutSubscriptionsGet0","features":[3,20]},{"name":"FwpmCalloutUnsubscribeChanges0","features":[3,20]},{"name":"FwpmConnectionCreateEnumHandle0","features":[3,20]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[3,20]},{"name":"FwpmConnectionEnum0","features":[3,20]},{"name":"FwpmConnectionGetById0","features":[3,20]},{"name":"FwpmConnectionGetSecurityInfo0","features":[3,20,6]},{"name":"FwpmConnectionSetSecurityInfo0","features":[3,20,6]},{"name":"FwpmConnectionSubscribe0","features":[3,20]},{"name":"FwpmConnectionUnsubscribe0","features":[3,20]},{"name":"FwpmDynamicKeywordSubscribe0","features":[3,20]},{"name":"FwpmDynamicKeywordUnsubscribe0","features":[3,20]},{"name":"FwpmEngineClose0","features":[3,20]},{"name":"FwpmEngineGetOption0","features":[3,20,6]},{"name":"FwpmEngineGetSecurityInfo0","features":[3,20,6]},{"name":"FwpmEngineOpen0","features":[3,20,6,21]},{"name":"FwpmEngineSetOption0","features":[3,20,6]},{"name":"FwpmEngineSetSecurityInfo0","features":[3,20,6]},{"name":"FwpmFilterAdd0","features":[3,20,6]},{"name":"FwpmFilterCreateEnumHandle0","features":[3,20,6]},{"name":"FwpmFilterDeleteById0","features":[3,20]},{"name":"FwpmFilterDeleteByKey0","features":[3,20]},{"name":"FwpmFilterDestroyEnumHandle0","features":[3,20]},{"name":"FwpmFilterEnum0","features":[3,20,6]},{"name":"FwpmFilterGetById0","features":[3,20,6]},{"name":"FwpmFilterGetByKey0","features":[3,20,6]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmFilterSubscribeChanges0","features":[3,20,6]},{"name":"FwpmFilterSubscriptionsGet0","features":[3,20,6]},{"name":"FwpmFilterUnsubscribeChanges0","features":[3,20]},{"name":"FwpmFreeMemory0","features":[20]},{"name":"FwpmGetAppIdFromFileName0","features":[20]},{"name":"FwpmIPsecTunnelAdd0","features":[3,20,6]},{"name":"FwpmIPsecTunnelAdd1","features":[3,20,6]},{"name":"FwpmIPsecTunnelAdd2","features":[3,20,6]},{"name":"FwpmIPsecTunnelAdd3","features":[3,20,6]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[3,20]},{"name":"FwpmLayerCreateEnumHandle0","features":[3,20]},{"name":"FwpmLayerDestroyEnumHandle0","features":[3,20]},{"name":"FwpmLayerEnum0","features":[3,20]},{"name":"FwpmLayerGetById0","features":[3,20]},{"name":"FwpmLayerGetByKey0","features":[3,20]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmNetEventCreateEnumHandle0","features":[3,20,6]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[3,20]},{"name":"FwpmNetEventEnum0","features":[3,20,6]},{"name":"FwpmNetEventEnum1","features":[3,20,6]},{"name":"FwpmNetEventEnum2","features":[3,20,6]},{"name":"FwpmNetEventEnum3","features":[3,20,6]},{"name":"FwpmNetEventEnum4","features":[3,20,6]},{"name":"FwpmNetEventEnum5","features":[3,20,6]},{"name":"FwpmNetEventSubscribe0","features":[3,20,6]},{"name":"FwpmNetEventSubscribe1","features":[3,20,6]},{"name":"FwpmNetEventSubscribe2","features":[3,20,6]},{"name":"FwpmNetEventSubscribe3","features":[3,20,6]},{"name":"FwpmNetEventSubscribe4","features":[3,20,6]},{"name":"FwpmNetEventSubscriptionsGet0","features":[3,20,6]},{"name":"FwpmNetEventUnsubscribe0","features":[3,20]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[3,20,6]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[3,20,6]},{"name":"FwpmProviderAdd0","features":[3,20,6]},{"name":"FwpmProviderContextAdd0","features":[3,20,6]},{"name":"FwpmProviderContextAdd1","features":[3,20,6]},{"name":"FwpmProviderContextAdd2","features":[3,20,6]},{"name":"FwpmProviderContextAdd3","features":[3,20,6]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[3,20]},{"name":"FwpmProviderContextDeleteById0","features":[3,20]},{"name":"FwpmProviderContextDeleteByKey0","features":[3,20]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[3,20]},{"name":"FwpmProviderContextEnum0","features":[3,20,6]},{"name":"FwpmProviderContextEnum1","features":[3,20,6]},{"name":"FwpmProviderContextEnum2","features":[3,20,6]},{"name":"FwpmProviderContextEnum3","features":[3,20,6]},{"name":"FwpmProviderContextGetById0","features":[3,20,6]},{"name":"FwpmProviderContextGetById1","features":[3,20,6]},{"name":"FwpmProviderContextGetById2","features":[3,20,6]},{"name":"FwpmProviderContextGetById3","features":[3,20,6]},{"name":"FwpmProviderContextGetByKey0","features":[3,20,6]},{"name":"FwpmProviderContextGetByKey1","features":[3,20,6]},{"name":"FwpmProviderContextGetByKey2","features":[3,20,6]},{"name":"FwpmProviderContextGetByKey3","features":[3,20,6]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmProviderContextSubscribeChanges0","features":[3,20]},{"name":"FwpmProviderContextSubscriptionsGet0","features":[3,20]},{"name":"FwpmProviderContextUnsubscribeChanges0","features":[3,20]},{"name":"FwpmProviderCreateEnumHandle0","features":[3,20]},{"name":"FwpmProviderDeleteByKey0","features":[3,20]},{"name":"FwpmProviderDestroyEnumHandle0","features":[3,20]},{"name":"FwpmProviderEnum0","features":[3,20]},{"name":"FwpmProviderGetByKey0","features":[3,20]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmProviderSubscribeChanges0","features":[3,20]},{"name":"FwpmProviderSubscriptionsGet0","features":[3,20]},{"name":"FwpmProviderUnsubscribeChanges0","features":[3,20]},{"name":"FwpmSessionCreateEnumHandle0","features":[3,20]},{"name":"FwpmSessionDestroyEnumHandle0","features":[3,20]},{"name":"FwpmSessionEnum0","features":[3,20,6]},{"name":"FwpmSubLayerAdd0","features":[3,20,6]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[3,20]},{"name":"FwpmSubLayerDeleteByKey0","features":[3,20]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[3,20]},{"name":"FwpmSubLayerEnum0","features":[3,20]},{"name":"FwpmSubLayerGetByKey0","features":[3,20]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[3,20,6]},{"name":"FwpmSubLayerSubscribeChanges0","features":[3,20]},{"name":"FwpmSubLayerSubscriptionsGet0","features":[3,20]},{"name":"FwpmSubLayerUnsubscribeChanges0","features":[3,20]},{"name":"FwpmSystemPortsGet0","features":[3,20]},{"name":"FwpmSystemPortsSubscribe0","features":[3,20]},{"name":"FwpmSystemPortsUnsubscribe0","features":[3,20]},{"name":"FwpmTransactionAbort0","features":[3,20]},{"name":"FwpmTransactionBegin0","features":[3,20]},{"name":"FwpmTransactionCommit0","features":[3,20]},{"name":"FwpmvSwitchEventSubscribe0","features":[3,20]},{"name":"FwpmvSwitchEventUnsubscribe0","features":[3,20]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[3,20,6]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[3,20,6]},{"name":"IKEEXT_ANONYMOUS","features":[20]},{"name":"IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE","features":[20]},{"name":"IKEEXT_AUTHENTICATION_METHOD0","features":[20]},{"name":"IKEEXT_AUTHENTICATION_METHOD1","features":[20]},{"name":"IKEEXT_AUTHENTICATION_METHOD2","features":[20]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE","features":[20]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE_MAX","features":[20]},{"name":"IKEEXT_CERTIFICATE","features":[20]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION0","features":[20]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION1","features":[20]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION2","features":[20]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL0","features":[20]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL1","features":[20]},{"name":"IKEEXT_CERTIFICATE_CRITERIA0","features":[20]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P256","features":[20]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P384","features":[20]},{"name":"IKEEXT_CERT_AUTH","features":[20]},{"name":"IKEEXT_CERT_AUTH_ALLOW_HTTP_CERT_LOOKUP","features":[20]},{"name":"IKEEXT_CERT_AUTH_DISABLE_SSL_CERT_VALIDATION","features":[20]},{"name":"IKEEXT_CERT_AUTH_ENABLE_CRL_CHECK_STRONG","features":[20]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_CRL_CHECK","features":[20]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_REQUEST_PAYLOAD","features":[20]},{"name":"IKEEXT_CERT_AUTH_FLAG_SSL_ONE_WAY","features":[20]},{"name":"IKEEXT_CERT_AUTH_URL_CONTAINS_BUNDLE","features":[20]},{"name":"IKEEXT_CERT_CONFIG_ENTERPRISE_STORE","features":[20]},{"name":"IKEEXT_CERT_CONFIG_EXPLICIT_TRUST_LIST","features":[20]},{"name":"IKEEXT_CERT_CONFIG_TRUSTED_ROOT_STORE","features":[20]},{"name":"IKEEXT_CERT_CONFIG_TYPE","features":[20]},{"name":"IKEEXT_CERT_CONFIG_TYPE_MAX","features":[20]},{"name":"IKEEXT_CERT_CONFIG_UNSPECIFIED","features":[20]},{"name":"IKEEXT_CERT_CREDENTIAL_FLAG_NAP_CERT","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_CN","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_DC","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_DNS","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE_MAX","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_O","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_OU","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_RFC822","features":[20]},{"name":"IKEEXT_CERT_CRITERIA_UPN","features":[20]},{"name":"IKEEXT_CERT_EKUS0","features":[20]},{"name":"IKEEXT_CERT_FLAGS","features":[20]},{"name":"IKEEXT_CERT_FLAG_DISABLE_REQUEST_PAYLOAD","features":[20]},{"name":"IKEEXT_CERT_FLAG_ENABLE_ACCOUNT_MAPPING","features":[20]},{"name":"IKEEXT_CERT_FLAG_FOLLOW_RENEWAL_CERTIFICATE","features":[20]},{"name":"IKEEXT_CERT_FLAG_IGNORE_INIT_CERT_MAP_FAILURE","features":[20]},{"name":"IKEEXT_CERT_FLAG_INTERMEDIATE_CA","features":[20]},{"name":"IKEEXT_CERT_FLAG_PREFER_NAP_CERTIFICATE_OUTBOUND","features":[20]},{"name":"IKEEXT_CERT_FLAG_SELECT_NAP_CERTIFICATE","features":[20]},{"name":"IKEEXT_CERT_FLAG_USE_NAP_CERTIFICATE","features":[20]},{"name":"IKEEXT_CERT_FLAG_VERIFY_NAP_CERTIFICATE","features":[20]},{"name":"IKEEXT_CERT_HASH_LEN","features":[20]},{"name":"IKEEXT_CERT_NAME0","features":[20]},{"name":"IKEEXT_CERT_ROOT_CONFIG0","features":[20]},{"name":"IKEEXT_CIPHER_3DES","features":[20]},{"name":"IKEEXT_CIPHER_AES_128","features":[20]},{"name":"IKEEXT_CIPHER_AES_192","features":[20]},{"name":"IKEEXT_CIPHER_AES_256","features":[20]},{"name":"IKEEXT_CIPHER_AES_GCM_128_16ICV","features":[20]},{"name":"IKEEXT_CIPHER_AES_GCM_256_16ICV","features":[20]},{"name":"IKEEXT_CIPHER_ALGORITHM0","features":[20]},{"name":"IKEEXT_CIPHER_DES","features":[20]},{"name":"IKEEXT_CIPHER_TYPE","features":[20]},{"name":"IKEEXT_CIPHER_TYPE_MAX","features":[20]},{"name":"IKEEXT_COMMON_STATISTICS0","features":[20]},{"name":"IKEEXT_COMMON_STATISTICS1","features":[20]},{"name":"IKEEXT_COOKIE_PAIR0","features":[20]},{"name":"IKEEXT_CREDENTIAL0","features":[20]},{"name":"IKEEXT_CREDENTIAL1","features":[20]},{"name":"IKEEXT_CREDENTIAL2","features":[20]},{"name":"IKEEXT_CREDENTIALS0","features":[20]},{"name":"IKEEXT_CREDENTIALS1","features":[20]},{"name":"IKEEXT_CREDENTIALS2","features":[20]},{"name":"IKEEXT_CREDENTIAL_PAIR0","features":[20]},{"name":"IKEEXT_CREDENTIAL_PAIR1","features":[20]},{"name":"IKEEXT_CREDENTIAL_PAIR2","features":[20]},{"name":"IKEEXT_DH_ECP_256","features":[20]},{"name":"IKEEXT_DH_ECP_384","features":[20]},{"name":"IKEEXT_DH_GROUP","features":[20]},{"name":"IKEEXT_DH_GROUP_1","features":[20]},{"name":"IKEEXT_DH_GROUP_14","features":[20]},{"name":"IKEEXT_DH_GROUP_2","features":[20]},{"name":"IKEEXT_DH_GROUP_2048","features":[20]},{"name":"IKEEXT_DH_GROUP_24","features":[20]},{"name":"IKEEXT_DH_GROUP_MAX","features":[20]},{"name":"IKEEXT_DH_GROUP_NONE","features":[20]},{"name":"IKEEXT_EAP","features":[20]},{"name":"IKEEXT_EAP_AUTHENTICATION0","features":[20]},{"name":"IKEEXT_EAP_AUTHENTICATION_FLAGS","features":[20]},{"name":"IKEEXT_EAP_FLAG_LOCAL_AUTH_ONLY","features":[20]},{"name":"IKEEXT_EAP_FLAG_REMOTE_AUTH_ONLY","features":[20]},{"name":"IKEEXT_EM_POLICY0","features":[20]},{"name":"IKEEXT_EM_POLICY1","features":[20]},{"name":"IKEEXT_EM_POLICY2","features":[20]},{"name":"IKEEXT_EM_SA_STATE","features":[20]},{"name":"IKEEXT_EM_SA_STATE_AUTH_COMPLETE","features":[20]},{"name":"IKEEXT_EM_SA_STATE_COMPLETE","features":[20]},{"name":"IKEEXT_EM_SA_STATE_FINAL","features":[20]},{"name":"IKEEXT_EM_SA_STATE_MAX","features":[20]},{"name":"IKEEXT_EM_SA_STATE_NONE","features":[20]},{"name":"IKEEXT_EM_SA_STATE_SENT_ATTS","features":[20]},{"name":"IKEEXT_EM_SA_STATE_SSPI_SENT","features":[20]},{"name":"IKEEXT_IMPERSONATION_MAX","features":[20]},{"name":"IKEEXT_IMPERSONATION_NONE","features":[20]},{"name":"IKEEXT_IMPERSONATION_SOCKET_PRINCIPAL","features":[20]},{"name":"IKEEXT_INTEGRITY_ALGORITHM0","features":[20]},{"name":"IKEEXT_INTEGRITY_MD5","features":[20]},{"name":"IKEEXT_INTEGRITY_SHA1","features":[20]},{"name":"IKEEXT_INTEGRITY_SHA_256","features":[20]},{"name":"IKEEXT_INTEGRITY_SHA_384","features":[20]},{"name":"IKEEXT_INTEGRITY_TYPE","features":[20]},{"name":"IKEEXT_INTEGRITY_TYPE_MAX","features":[20]},{"name":"IKEEXT_IPV6_CGA","features":[20]},{"name":"IKEEXT_IPV6_CGA_AUTHENTICATION0","features":[20]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS0","features":[20]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS1","features":[20]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS0","features":[20]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS1","features":[20]},{"name":"IKEEXT_KERBEROS","features":[20]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION0","features":[20]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION1","features":[20]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION_FLAGS","features":[20]},{"name":"IKEEXT_KERB_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[20]},{"name":"IKEEXT_KERB_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[20]},{"name":"IKEEXT_KERB_AUTH_FORCE_PROXY_ON_INITIATOR","features":[20]},{"name":"IKEEXT_KEYMODULE_STATISTICS0","features":[20]},{"name":"IKEEXT_KEYMODULE_STATISTICS1","features":[20]},{"name":"IKEEXT_KEY_MODULE_AUTHIP","features":[20]},{"name":"IKEEXT_KEY_MODULE_IKE","features":[20]},{"name":"IKEEXT_KEY_MODULE_IKEV2","features":[20]},{"name":"IKEEXT_KEY_MODULE_MAX","features":[20]},{"name":"IKEEXT_KEY_MODULE_TYPE","features":[20]},{"name":"IKEEXT_MM_SA_STATE","features":[20]},{"name":"IKEEXT_MM_SA_STATE_COMPLETE","features":[20]},{"name":"IKEEXT_MM_SA_STATE_FINAL","features":[20]},{"name":"IKEEXT_MM_SA_STATE_FINAL_SENT","features":[20]},{"name":"IKEEXT_MM_SA_STATE_MAX","features":[20]},{"name":"IKEEXT_MM_SA_STATE_NONE","features":[20]},{"name":"IKEEXT_MM_SA_STATE_SA_SENT","features":[20]},{"name":"IKEEXT_MM_SA_STATE_SSPI_SENT","features":[20]},{"name":"IKEEXT_NAME_CREDENTIAL0","features":[20]},{"name":"IKEEXT_NTLM_V2","features":[20]},{"name":"IKEEXT_NTLM_V2_AUTHENTICATION0","features":[20]},{"name":"IKEEXT_NTLM_V2_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[20]},{"name":"IKEEXT_POLICY0","features":[20]},{"name":"IKEEXT_POLICY1","features":[20]},{"name":"IKEEXT_POLICY2","features":[20]},{"name":"IKEEXT_POLICY_ENABLE_IKEV2_FRAGMENTATION","features":[20]},{"name":"IKEEXT_POLICY_FLAG","features":[20]},{"name":"IKEEXT_POLICY_FLAG_DISABLE_DIAGNOSTICS","features":[20]},{"name":"IKEEXT_POLICY_FLAG_ENABLE_OPTIONAL_DH","features":[20]},{"name":"IKEEXT_POLICY_FLAG_IMS_VPN","features":[20]},{"name":"IKEEXT_POLICY_FLAG_MOBIKE_NOT_SUPPORTED","features":[20]},{"name":"IKEEXT_POLICY_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[20]},{"name":"IKEEXT_POLICY_FLAG_NO_MACHINE_LUID_VERIFY","features":[20]},{"name":"IKEEXT_POLICY_FLAG_SITE_TO_SITE","features":[20]},{"name":"IKEEXT_POLICY_SUPPORT_LOW_POWER_MODE","features":[20]},{"name":"IKEEXT_PRESHARED_KEY","features":[20]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION0","features":[20]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION1","features":[20]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS","features":[20]},{"name":"IKEEXT_PROPOSAL0","features":[20]},{"name":"IKEEXT_PSK_FLAG_LOCAL_AUTH_ONLY","features":[20]},{"name":"IKEEXT_PSK_FLAG_REMOTE_AUTH_ONLY","features":[20]},{"name":"IKEEXT_QM_SA_STATE","features":[20]},{"name":"IKEEXT_QM_SA_STATE_COMPLETE","features":[20]},{"name":"IKEEXT_QM_SA_STATE_FINAL","features":[20]},{"name":"IKEEXT_QM_SA_STATE_INITIAL","features":[20]},{"name":"IKEEXT_QM_SA_STATE_MAX","features":[20]},{"name":"IKEEXT_QM_SA_STATE_NONE","features":[20]},{"name":"IKEEXT_RESERVED","features":[20]},{"name":"IKEEXT_RESERVED_AUTHENTICATION0","features":[20]},{"name":"IKEEXT_RESERVED_AUTHENTICATION_FLAGS","features":[20]},{"name":"IKEEXT_RESERVED_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[20]},{"name":"IKEEXT_SA_DETAILS0","features":[20]},{"name":"IKEEXT_SA_DETAILS1","features":[20]},{"name":"IKEEXT_SA_DETAILS2","features":[20]},{"name":"IKEEXT_SA_ENUM_TEMPLATE0","features":[20,6]},{"name":"IKEEXT_SA_ROLE","features":[20]},{"name":"IKEEXT_SA_ROLE_INITIATOR","features":[20]},{"name":"IKEEXT_SA_ROLE_MAX","features":[20]},{"name":"IKEEXT_SA_ROLE_RESPONDER","features":[20]},{"name":"IKEEXT_SSL","features":[20]},{"name":"IKEEXT_SSL_ECDSA_P256","features":[20]},{"name":"IKEEXT_SSL_ECDSA_P384","features":[20]},{"name":"IKEEXT_STATISTICS0","features":[20]},{"name":"IKEEXT_STATISTICS1","features":[20]},{"name":"IKEEXT_TRAFFIC0","features":[20]},{"name":"IPSEC_ADDRESS_INFO0","features":[20]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS0","features":[20]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS1","features":[20]},{"name":"IPSEC_AGGREGATE_SA_STATISTICS0","features":[20]},{"name":"IPSEC_AH_DROP_PACKET_STATISTICS0","features":[20]},{"name":"IPSEC_AUTH_AES_128","features":[20]},{"name":"IPSEC_AUTH_AES_192","features":[20]},{"name":"IPSEC_AUTH_AES_256","features":[20]},{"name":"IPSEC_AUTH_AND_CIPHER_TRANSFORM0","features":[20]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_128","features":[20]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_192","features":[20]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_256","features":[20]},{"name":"IPSEC_AUTH_CONFIG_HMAC_MD5_96","features":[20]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_1_96","features":[20]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_256_128","features":[20]},{"name":"IPSEC_AUTH_CONFIG_MAX","features":[20]},{"name":"IPSEC_AUTH_MAX","features":[20]},{"name":"IPSEC_AUTH_MD5","features":[20]},{"name":"IPSEC_AUTH_SHA_1","features":[20]},{"name":"IPSEC_AUTH_SHA_256","features":[20]},{"name":"IPSEC_AUTH_TRANSFORM0","features":[20]},{"name":"IPSEC_AUTH_TRANSFORM_ID0","features":[20]},{"name":"IPSEC_AUTH_TYPE","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_CBC_3DES","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_128","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_192","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_256","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_CBC_DES","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_128","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_192","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_256","features":[20]},{"name":"IPSEC_CIPHER_CONFIG_MAX","features":[20]},{"name":"IPSEC_CIPHER_TRANSFORM0","features":[20]},{"name":"IPSEC_CIPHER_TRANSFORM_ID0","features":[20]},{"name":"IPSEC_CIPHER_TYPE","features":[20]},{"name":"IPSEC_CIPHER_TYPE_3DES","features":[20]},{"name":"IPSEC_CIPHER_TYPE_AES_128","features":[20]},{"name":"IPSEC_CIPHER_TYPE_AES_192","features":[20]},{"name":"IPSEC_CIPHER_TYPE_AES_256","features":[20]},{"name":"IPSEC_CIPHER_TYPE_DES","features":[20]},{"name":"IPSEC_CIPHER_TYPE_MAX","features":[20]},{"name":"IPSEC_DOSP_DSCP_DISABLE_VALUE","features":[20]},{"name":"IPSEC_DOSP_FLAGS","features":[20]},{"name":"IPSEC_DOSP_FLAG_DISABLE_AUTHIP","features":[20]},{"name":"IPSEC_DOSP_FLAG_DISABLE_DEFAULT_BLOCK","features":[20]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV1","features":[20]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV2","features":[20]},{"name":"IPSEC_DOSP_FLAG_FILTER_BLOCK","features":[20]},{"name":"IPSEC_DOSP_FLAG_FILTER_EXEMPT","features":[20]},{"name":"IPSEC_DOSP_OPTIONS0","features":[20]},{"name":"IPSEC_DOSP_RATE_LIMIT_DISABLE_VALUE","features":[20]},{"name":"IPSEC_DOSP_STATE0","features":[20]},{"name":"IPSEC_DOSP_STATE_ENUM_TEMPLATE0","features":[20]},{"name":"IPSEC_DOSP_STATISTICS0","features":[20]},{"name":"IPSEC_ESP_DROP_PACKET_STATISTICS0","features":[20]},{"name":"IPSEC_FAILURE_ME","features":[20]},{"name":"IPSEC_FAILURE_NONE","features":[20]},{"name":"IPSEC_FAILURE_PEER","features":[20]},{"name":"IPSEC_FAILURE_POINT","features":[20]},{"name":"IPSEC_FAILURE_POINT_MAX","features":[20]},{"name":"IPSEC_GETSPI0","features":[20]},{"name":"IPSEC_GETSPI1","features":[20]},{"name":"IPSEC_ID0","features":[20]},{"name":"IPSEC_KEYING_POLICY0","features":[20]},{"name":"IPSEC_KEYING_POLICY1","features":[20]},{"name":"IPSEC_KEYING_POLICY_FLAG_TERMINATING_MATCH","features":[20]},{"name":"IPSEC_KEYMODULE_STATE0","features":[20]},{"name":"IPSEC_KEY_MANAGER0","features":[20]},{"name":"IPSEC_KEY_MANAGER_CALLBACKS0","features":[3,20,6]},{"name":"IPSEC_KEY_MANAGER_DICTATE_KEY0","features":[3,20,6]},{"name":"IPSEC_KEY_MANAGER_FLAG_DICTATE_KEY","features":[20]},{"name":"IPSEC_KEY_MANAGER_KEY_DICTATION_CHECK0","features":[3,20]},{"name":"IPSEC_KEY_MANAGER_NOTIFY_KEY0","features":[20,6]},{"name":"IPSEC_PFS_1","features":[20]},{"name":"IPSEC_PFS_14","features":[20]},{"name":"IPSEC_PFS_2","features":[20]},{"name":"IPSEC_PFS_2048","features":[20]},{"name":"IPSEC_PFS_24","features":[20]},{"name":"IPSEC_PFS_ECP_256","features":[20]},{"name":"IPSEC_PFS_ECP_384","features":[20]},{"name":"IPSEC_PFS_GROUP","features":[20]},{"name":"IPSEC_PFS_MAX","features":[20]},{"name":"IPSEC_PFS_MM","features":[20]},{"name":"IPSEC_PFS_NONE","features":[20]},{"name":"IPSEC_POLICY_FLAG","features":[20]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH1","features":[20]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH2","features":[20]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH3","features":[20]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH4","features":[20]},{"name":"IPSEC_POLICY_FLAG_CLEAR_DF_ON_TUNNEL","features":[20]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_BYTE_LIFETIME","features":[20]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_SECOND_LIFETIME","features":[20]},{"name":"IPSEC_POLICY_FLAG_ENABLE_SERVER_ADDR_ASSIGNMENT","features":[20]},{"name":"IPSEC_POLICY_FLAG_ENABLE_V6_IN_V4_TUNNELING","features":[20]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_DICTATE_KEY","features":[20]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_NOTIFY_KEY","features":[20]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_GENERAL_NAT_TRAVERSAL","features":[20]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_PEER_BEHIND_NAT","features":[20]},{"name":"IPSEC_POLICY_FLAG_ND_BOUNDARY","features":[20]},{"name":"IPSEC_POLICY_FLAG_ND_SECURE","features":[20]},{"name":"IPSEC_POLICY_FLAG_RESERVED1","features":[20]},{"name":"IPSEC_POLICY_FLAG_SITE_TO_SITE_TUNNEL","features":[20]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_ALLOW_OUTBOUND_CLEAR_CONNECTION","features":[20]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ALREADY_SECURE_CONNECTION","features":[20]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ICMPV6","features":[20]},{"name":"IPSEC_PROPOSAL0","features":[20]},{"name":"IPSEC_SA0","features":[20]},{"name":"IPSEC_SA_AUTH_AND_CIPHER_INFORMATION0","features":[20]},{"name":"IPSEC_SA_AUTH_INFORMATION0","features":[20]},{"name":"IPSEC_SA_BUNDLE0","features":[20]},{"name":"IPSEC_SA_BUNDLE1","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAGS","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_ALLOW_NULL_TARGET_NAME_MATCH","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_ASSUME_UDP_CONTEXT_OUTBOUND","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_CLEAR_DF_ON_TUNNEL","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_ENABLE_OPTIONAL_ASYMMETRIC_IDLE","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_INBOUND_CONNECTIONS","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_OUTBOUND_CONNECTIONS","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORWARD_PATH_INITIATOR","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_GUARANTEE_ENCRYPTION","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_IP_IN_IP_PKT","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOCALLY_DICTATED_KEYS","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOW_POWER_MODE_SUPPORT","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_BOUNDARY","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_BOUNDARY","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_NAT_BOUNDARY","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_SECURE","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_NLB","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_EXPLICIT_CRED_MATCH","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_MACHINE_LUID_VERIFY","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_PEER_SUPPORTS_GUARANTEE_ENCRYPTION","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_SA_OFFLOADED","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_SUPPRESS_DUPLICATE_DELETION","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH1","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH2","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH3","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH4","features":[20]},{"name":"IPSEC_SA_BUNDLE_FLAG_USING_DICTATED_KEYS","features":[20]},{"name":"IPSEC_SA_CIPHER_INFORMATION0","features":[20]},{"name":"IPSEC_SA_CONTEXT0","features":[20,6]},{"name":"IPSEC_SA_CONTEXT1","features":[20,6]},{"name":"IPSEC_SA_CONTEXT_CALLBACK0","features":[20]},{"name":"IPSEC_SA_CONTEXT_CHANGE0","features":[20]},{"name":"IPSEC_SA_CONTEXT_ENUM_TEMPLATE0","features":[20,6]},{"name":"IPSEC_SA_CONTEXT_EVENT_ADD","features":[20]},{"name":"IPSEC_SA_CONTEXT_EVENT_DELETE","features":[20]},{"name":"IPSEC_SA_CONTEXT_EVENT_MAX","features":[20]},{"name":"IPSEC_SA_CONTEXT_EVENT_TYPE0","features":[20]},{"name":"IPSEC_SA_CONTEXT_SUBSCRIPTION0","features":[20,6]},{"name":"IPSEC_SA_DETAILS0","features":[20,6]},{"name":"IPSEC_SA_DETAILS1","features":[20,6]},{"name":"IPSEC_SA_ENUM_TEMPLATE0","features":[20]},{"name":"IPSEC_SA_IDLE_TIMEOUT0","features":[20]},{"name":"IPSEC_SA_LIFETIME0","features":[20]},{"name":"IPSEC_SA_TRANSFORM0","features":[20]},{"name":"IPSEC_STATISTICS0","features":[20]},{"name":"IPSEC_STATISTICS1","features":[20]},{"name":"IPSEC_TOKEN0","features":[20]},{"name":"IPSEC_TOKEN_MODE","features":[20]},{"name":"IPSEC_TOKEN_MODE_EXTENDED","features":[20]},{"name":"IPSEC_TOKEN_MODE_MAIN","features":[20]},{"name":"IPSEC_TOKEN_MODE_MAX","features":[20]},{"name":"IPSEC_TOKEN_PRINCIPAL","features":[20]},{"name":"IPSEC_TOKEN_PRINCIPAL_LOCAL","features":[20]},{"name":"IPSEC_TOKEN_PRINCIPAL_MAX","features":[20]},{"name":"IPSEC_TOKEN_PRINCIPAL_PEER","features":[20]},{"name":"IPSEC_TOKEN_TYPE","features":[20]},{"name":"IPSEC_TOKEN_TYPE_IMPERSONATION","features":[20]},{"name":"IPSEC_TOKEN_TYPE_MACHINE","features":[20]},{"name":"IPSEC_TOKEN_TYPE_MAX","features":[20]},{"name":"IPSEC_TRAFFIC0","features":[20]},{"name":"IPSEC_TRAFFIC1","features":[20]},{"name":"IPSEC_TRAFFIC_SELECTOR0","features":[20]},{"name":"IPSEC_TRAFFIC_SELECTOR_POLICY0","features":[20]},{"name":"IPSEC_TRAFFIC_STATISTICS0","features":[20]},{"name":"IPSEC_TRAFFIC_STATISTICS1","features":[20]},{"name":"IPSEC_TRAFFIC_TYPE","features":[20]},{"name":"IPSEC_TRAFFIC_TYPE_MAX","features":[20]},{"name":"IPSEC_TRAFFIC_TYPE_TRANSPORT","features":[20]},{"name":"IPSEC_TRAFFIC_TYPE_TUNNEL","features":[20]},{"name":"IPSEC_TRANSFORM_AH","features":[20]},{"name":"IPSEC_TRANSFORM_ESP_AUTH","features":[20]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_AND_CIPHER","features":[20]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_FW","features":[20]},{"name":"IPSEC_TRANSFORM_ESP_CIPHER","features":[20]},{"name":"IPSEC_TRANSFORM_TYPE","features":[20]},{"name":"IPSEC_TRANSFORM_TYPE_MAX","features":[20]},{"name":"IPSEC_TRANSPORT_POLICY0","features":[20]},{"name":"IPSEC_TRANSPORT_POLICY1","features":[20]},{"name":"IPSEC_TRANSPORT_POLICY2","features":[20]},{"name":"IPSEC_TUNNEL_ENDPOINT0","features":[20]},{"name":"IPSEC_TUNNEL_ENDPOINTS0","features":[20]},{"name":"IPSEC_TUNNEL_ENDPOINTS1","features":[20]},{"name":"IPSEC_TUNNEL_ENDPOINTS2","features":[20]},{"name":"IPSEC_TUNNEL_POLICY0","features":[20]},{"name":"IPSEC_TUNNEL_POLICY1","features":[20]},{"name":"IPSEC_TUNNEL_POLICY2","features":[20]},{"name":"IPSEC_TUNNEL_POLICY3","features":[20]},{"name":"IPSEC_V4_UDP_ENCAPSULATION0","features":[20]},{"name":"IPSEC_VIRTUAL_IF_TUNNEL_INFO0","features":[20]},{"name":"IPsecDospGetSecurityInfo0","features":[3,20,6]},{"name":"IPsecDospGetStatistics0","features":[3,20]},{"name":"IPsecDospSetSecurityInfo0","features":[3,20,6]},{"name":"IPsecDospStateCreateEnumHandle0","features":[3,20]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[3,20]},{"name":"IPsecDospStateEnum0","features":[3,20]},{"name":"IPsecGetStatistics0","features":[3,20]},{"name":"IPsecGetStatistics1","features":[3,20]},{"name":"IPsecKeyManagerAddAndRegister0","features":[3,20,6]},{"name":"IPsecKeyManagerGetSecurityInfoByKey0","features":[3,20,6]},{"name":"IPsecKeyManagerSetSecurityInfoByKey0","features":[3,20,6]},{"name":"IPsecKeyManagerUnregisterAndDelete0","features":[3,20]},{"name":"IPsecKeyManagersGet0","features":[3,20]},{"name":"IPsecSaContextAddInbound0","features":[3,20]},{"name":"IPsecSaContextAddInbound1","features":[3,20]},{"name":"IPsecSaContextAddOutbound0","features":[3,20]},{"name":"IPsecSaContextAddOutbound1","features":[3,20]},{"name":"IPsecSaContextCreate0","features":[3,20]},{"name":"IPsecSaContextCreate1","features":[3,20]},{"name":"IPsecSaContextCreateEnumHandle0","features":[3,20,6]},{"name":"IPsecSaContextDeleteById0","features":[3,20]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[3,20]},{"name":"IPsecSaContextEnum0","features":[3,20,6]},{"name":"IPsecSaContextEnum1","features":[3,20,6]},{"name":"IPsecSaContextExpire0","features":[3,20]},{"name":"IPsecSaContextGetById0","features":[3,20,6]},{"name":"IPsecSaContextGetById1","features":[3,20,6]},{"name":"IPsecSaContextGetSpi0","features":[3,20]},{"name":"IPsecSaContextGetSpi1","features":[3,20]},{"name":"IPsecSaContextSetSpi0","features":[3,20]},{"name":"IPsecSaContextSubscribe0","features":[3,20,6]},{"name":"IPsecSaContextSubscriptionsGet0","features":[3,20,6]},{"name":"IPsecSaContextUnsubscribe0","features":[3,20]},{"name":"IPsecSaContextUpdate0","features":[3,20,6]},{"name":"IPsecSaCreateEnumHandle0","features":[3,20]},{"name":"IPsecSaDbGetSecurityInfo0","features":[3,20,6]},{"name":"IPsecSaDbSetSecurityInfo0","features":[3,20,6]},{"name":"IPsecSaDestroyEnumHandle0","features":[3,20]},{"name":"IPsecSaEnum0","features":[3,20,6]},{"name":"IPsecSaEnum1","features":[3,20,6]},{"name":"IkeextGetStatistics0","features":[3,20]},{"name":"IkeextGetStatistics1","features":[3,20]},{"name":"IkeextSaCreateEnumHandle0","features":[3,20,6]},{"name":"IkeextSaDbGetSecurityInfo0","features":[3,20,6]},{"name":"IkeextSaDbSetSecurityInfo0","features":[3,20,6]},{"name":"IkeextSaDeleteById0","features":[3,20]},{"name":"IkeextSaDestroyEnumHandle0","features":[3,20]},{"name":"IkeextSaEnum0","features":[3,20]},{"name":"IkeextSaEnum1","features":[3,20]},{"name":"IkeextSaEnum2","features":[3,20]},{"name":"IkeextSaGetById0","features":[3,20]},{"name":"IkeextSaGetById1","features":[3,20]},{"name":"IkeextSaGetById2","features":[3,20]}],"467":[{"name":"FW_DYNAMIC_KEYWORD_ADDRESS0","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_DATA0","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_ALL","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_AUTO_RESOLVE","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_NON_AUTO_RESOLVE","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS_AUTO_RESOLVE","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_INVALID","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_LOCAL","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_MDM","features":[108]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_TYPE","features":[108]},{"name":"ICSSC_DEFAULT","features":[108]},{"name":"ICSSC_ENABLED","features":[108]},{"name":"ICSSHARINGTYPE_PRIVATE","features":[108]},{"name":"ICSSHARINGTYPE_PUBLIC","features":[108]},{"name":"ICSTT_IPADDRESS","features":[108]},{"name":"ICSTT_NAME","features":[108]},{"name":"ICS_TARGETTYPE","features":[108]},{"name":"IDynamicPortMapping","features":[108]},{"name":"IDynamicPortMappingCollection","features":[108]},{"name":"IEnumNetConnection","features":[108]},{"name":"IEnumNetSharingEveryConnection","features":[108]},{"name":"IEnumNetSharingPortMapping","features":[108]},{"name":"IEnumNetSharingPrivateConnection","features":[108]},{"name":"IEnumNetSharingPublicConnection","features":[108]},{"name":"INATEventManager","features":[108]},{"name":"INATExternalIPAddressCallback","features":[108]},{"name":"INATNumberOfEntriesCallback","features":[108]},{"name":"INET_FIREWALL_AC_BINARIES","features":[108]},{"name":"INET_FIREWALL_AC_BINARY","features":[108]},{"name":"INET_FIREWALL_AC_CAPABILITIES","features":[108,6]},{"name":"INET_FIREWALL_AC_CHANGE","features":[108,6]},{"name":"INET_FIREWALL_AC_CHANGE_CREATE","features":[108]},{"name":"INET_FIREWALL_AC_CHANGE_DELETE","features":[108]},{"name":"INET_FIREWALL_AC_CHANGE_INVALID","features":[108]},{"name":"INET_FIREWALL_AC_CHANGE_MAX","features":[108]},{"name":"INET_FIREWALL_AC_CHANGE_TYPE","features":[108]},{"name":"INET_FIREWALL_AC_CREATION_TYPE","features":[108]},{"name":"INET_FIREWALL_AC_MAX","features":[108]},{"name":"INET_FIREWALL_AC_NONE","features":[108]},{"name":"INET_FIREWALL_AC_PACKAGE_ID_ONLY","features":[108]},{"name":"INET_FIREWALL_APP_CONTAINER","features":[108,6]},{"name":"INetConnection","features":[108]},{"name":"INetConnectionConnectUi","features":[108]},{"name":"INetConnectionManager","features":[108]},{"name":"INetConnectionProps","features":[108]},{"name":"INetFwAuthorizedApplication","features":[108]},{"name":"INetFwAuthorizedApplications","features":[108]},{"name":"INetFwIcmpSettings","features":[108]},{"name":"INetFwMgr","features":[108]},{"name":"INetFwOpenPort","features":[108]},{"name":"INetFwOpenPorts","features":[108]},{"name":"INetFwPolicy","features":[108]},{"name":"INetFwPolicy2","features":[108]},{"name":"INetFwProduct","features":[108]},{"name":"INetFwProducts","features":[108]},{"name":"INetFwProfile","features":[108]},{"name":"INetFwRemoteAdminSettings","features":[108]},{"name":"INetFwRule","features":[108]},{"name":"INetFwRule2","features":[108]},{"name":"INetFwRule3","features":[108]},{"name":"INetFwRules","features":[108]},{"name":"INetFwService","features":[108]},{"name":"INetFwServiceRestriction","features":[108]},{"name":"INetFwServices","features":[108]},{"name":"INetSharingConfiguration","features":[108]},{"name":"INetSharingEveryConnectionCollection","features":[108]},{"name":"INetSharingManager","features":[108]},{"name":"INetSharingPortMapping","features":[108]},{"name":"INetSharingPortMappingCollection","features":[108]},{"name":"INetSharingPortMappingProps","features":[108]},{"name":"INetSharingPrivateConnectionCollection","features":[108]},{"name":"INetSharingPublicConnectionCollection","features":[108]},{"name":"IStaticPortMapping","features":[108]},{"name":"IStaticPortMappingCollection","features":[108]},{"name":"IUPnPNAT","features":[108]},{"name":"NCCF_ALLOW_DUPLICATION","features":[108]},{"name":"NCCF_ALLOW_REMOVAL","features":[108]},{"name":"NCCF_ALLOW_RENAME","features":[108]},{"name":"NCCF_ALL_USERS","features":[108]},{"name":"NCCF_BLUETOOTH_MASK","features":[108]},{"name":"NCCF_BRANDED","features":[108]},{"name":"NCCF_BRIDGED","features":[108]},{"name":"NCCF_DEFAULT","features":[108]},{"name":"NCCF_FIREWALLED","features":[108]},{"name":"NCCF_HOMENET_CAPABLE","features":[108]},{"name":"NCCF_HOSTED_NETWORK","features":[108]},{"name":"NCCF_INCOMING_ONLY","features":[108]},{"name":"NCCF_LAN_MASK","features":[108]},{"name":"NCCF_NONE","features":[108]},{"name":"NCCF_OUTGOING_ONLY","features":[108]},{"name":"NCCF_QUARANTINED","features":[108]},{"name":"NCCF_RESERVED","features":[108]},{"name":"NCCF_SHARED","features":[108]},{"name":"NCCF_SHARED_PRIVATE","features":[108]},{"name":"NCCF_VIRTUAL_STATION","features":[108]},{"name":"NCCF_WIFI_DIRECT","features":[108]},{"name":"NCME_DEFAULT","features":[108]},{"name":"NCME_HIDDEN","features":[108]},{"name":"NCM_BRIDGE","features":[108]},{"name":"NCM_DIRECT","features":[108]},{"name":"NCM_ISDN","features":[108]},{"name":"NCM_LAN","features":[108]},{"name":"NCM_NONE","features":[108]},{"name":"NCM_PHONE","features":[108]},{"name":"NCM_PPPOE","features":[108]},{"name":"NCM_SHAREDACCESSHOST_LAN","features":[108]},{"name":"NCM_SHAREDACCESSHOST_RAS","features":[108]},{"name":"NCM_TUNNEL","features":[108]},{"name":"NCS_ACTION_REQUIRED","features":[108]},{"name":"NCS_ACTION_REQUIRED_RETRY","features":[108]},{"name":"NCS_AUTHENTICATING","features":[108]},{"name":"NCS_AUTHENTICATION_FAILED","features":[108]},{"name":"NCS_AUTHENTICATION_SUCCEEDED","features":[108]},{"name":"NCS_CONNECTED","features":[108]},{"name":"NCS_CONNECTING","features":[108]},{"name":"NCS_CONNECT_FAILED","features":[108]},{"name":"NCS_CREDENTIALS_REQUIRED","features":[108]},{"name":"NCS_DISCONNECTED","features":[108]},{"name":"NCS_DISCONNECTING","features":[108]},{"name":"NCS_HARDWARE_DISABLED","features":[108]},{"name":"NCS_HARDWARE_MALFUNCTION","features":[108]},{"name":"NCS_HARDWARE_NOT_PRESENT","features":[108]},{"name":"NCS_INVALID_ADDRESS","features":[108]},{"name":"NCS_MEDIA_DISCONNECTED","features":[108]},{"name":"NCT_BRIDGE","features":[108]},{"name":"NCT_DIRECT_CONNECT","features":[108]},{"name":"NCT_INBOUND","features":[108]},{"name":"NCT_INTERNET","features":[108]},{"name":"NCT_LAN","features":[108]},{"name":"NCT_PHONE","features":[108]},{"name":"NCT_TUNNEL","features":[108]},{"name":"NCUC_DEFAULT","features":[108]},{"name":"NCUC_ENABLE_DISABLE","features":[108]},{"name":"NCUC_NO_UI","features":[108]},{"name":"NETCONMGR_ENUM_FLAGS","features":[108]},{"name":"NETCONUI_CONNECT_FLAGS","features":[108]},{"name":"NETCON_CHARACTERISTIC_FLAGS","features":[108]},{"name":"NETCON_MAX_NAME_LEN","features":[108]},{"name":"NETCON_MEDIATYPE","features":[108]},{"name":"NETCON_PROPERTIES","features":[108]},{"name":"NETCON_STATUS","features":[108]},{"name":"NETCON_TYPE","features":[108]},{"name":"NETISO_ERROR_TYPE","features":[108]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT","features":[108]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT_SERVER","features":[108]},{"name":"NETISO_ERROR_TYPE_MAX","features":[108]},{"name":"NETISO_ERROR_TYPE_NONE","features":[108]},{"name":"NETISO_ERROR_TYPE_PRIVATE_NETWORK","features":[108]},{"name":"NETISO_FLAG","features":[108]},{"name":"NETISO_FLAG_FORCE_COMPUTE_BINARIES","features":[108]},{"name":"NETISO_FLAG_MAX","features":[108]},{"name":"NETISO_GEID_FOR_NEUTRAL_AWARE","features":[108]},{"name":"NETISO_GEID_FOR_WDAG","features":[108]},{"name":"NET_FW_ACTION","features":[108]},{"name":"NET_FW_ACTION_ALLOW","features":[108]},{"name":"NET_FW_ACTION_BLOCK","features":[108]},{"name":"NET_FW_ACTION_MAX","features":[108]},{"name":"NET_FW_AUTHENTICATE_AND_ENCRYPT","features":[108]},{"name":"NET_FW_AUTHENTICATE_AND_NEGOTIATE_ENCRYPTION","features":[108]},{"name":"NET_FW_AUTHENTICATE_NONE","features":[108]},{"name":"NET_FW_AUTHENTICATE_NO_ENCAPSULATION","features":[108]},{"name":"NET_FW_AUTHENTICATE_TYPE","features":[108]},{"name":"NET_FW_AUTHENTICATE_WITH_INTEGRITY","features":[108]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE","features":[108]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_ALLOW","features":[108]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_APP","features":[108]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_USER","features":[108]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DENY","features":[108]},{"name":"NET_FW_IP_PROTOCOL","features":[108]},{"name":"NET_FW_IP_PROTOCOL_ANY","features":[108]},{"name":"NET_FW_IP_PROTOCOL_TCP","features":[108]},{"name":"NET_FW_IP_PROTOCOL_UDP","features":[108]},{"name":"NET_FW_IP_VERSION","features":[108]},{"name":"NET_FW_IP_VERSION_ANY","features":[108]},{"name":"NET_FW_IP_VERSION_MAX","features":[108]},{"name":"NET_FW_IP_VERSION_V4","features":[108]},{"name":"NET_FW_IP_VERSION_V6","features":[108]},{"name":"NET_FW_MODIFY_STATE","features":[108]},{"name":"NET_FW_MODIFY_STATE_GP_OVERRIDE","features":[108]},{"name":"NET_FW_MODIFY_STATE_INBOUND_BLOCKED","features":[108]},{"name":"NET_FW_MODIFY_STATE_OK","features":[108]},{"name":"NET_FW_POLICY_EFFECTIVE","features":[108]},{"name":"NET_FW_POLICY_GROUP","features":[108]},{"name":"NET_FW_POLICY_LOCAL","features":[108]},{"name":"NET_FW_POLICY_TYPE","features":[108]},{"name":"NET_FW_POLICY_TYPE_MAX","features":[108]},{"name":"NET_FW_PROFILE2_ALL","features":[108]},{"name":"NET_FW_PROFILE2_DOMAIN","features":[108]},{"name":"NET_FW_PROFILE2_PRIVATE","features":[108]},{"name":"NET_FW_PROFILE2_PUBLIC","features":[108]},{"name":"NET_FW_PROFILE_CURRENT","features":[108]},{"name":"NET_FW_PROFILE_DOMAIN","features":[108]},{"name":"NET_FW_PROFILE_STANDARD","features":[108]},{"name":"NET_FW_PROFILE_TYPE","features":[108]},{"name":"NET_FW_PROFILE_TYPE2","features":[108]},{"name":"NET_FW_PROFILE_TYPE_MAX","features":[108]},{"name":"NET_FW_RULE_CATEGORY","features":[108]},{"name":"NET_FW_RULE_CATEGORY_BOOT","features":[108]},{"name":"NET_FW_RULE_CATEGORY_CONSEC","features":[108]},{"name":"NET_FW_RULE_CATEGORY_FIREWALL","features":[108]},{"name":"NET_FW_RULE_CATEGORY_MAX","features":[108]},{"name":"NET_FW_RULE_CATEGORY_STEALTH","features":[108]},{"name":"NET_FW_RULE_DIRECTION","features":[108]},{"name":"NET_FW_RULE_DIR_IN","features":[108]},{"name":"NET_FW_RULE_DIR_MAX","features":[108]},{"name":"NET_FW_RULE_DIR_OUT","features":[108]},{"name":"NET_FW_SCOPE","features":[108]},{"name":"NET_FW_SCOPE_ALL","features":[108]},{"name":"NET_FW_SCOPE_CUSTOM","features":[108]},{"name":"NET_FW_SCOPE_LOCAL_SUBNET","features":[108]},{"name":"NET_FW_SCOPE_MAX","features":[108]},{"name":"NET_FW_SERVICE_FILE_AND_PRINT","features":[108]},{"name":"NET_FW_SERVICE_NONE","features":[108]},{"name":"NET_FW_SERVICE_REMOTE_DESKTOP","features":[108]},{"name":"NET_FW_SERVICE_TYPE","features":[108]},{"name":"NET_FW_SERVICE_TYPE_MAX","features":[108]},{"name":"NET_FW_SERVICE_UPNP","features":[108]},{"name":"NcFreeNetconProperties","features":[108]},{"name":"NcIsValidConnectionName","features":[3,108]},{"name":"NetFwAuthorizedApplication","features":[108]},{"name":"NetFwMgr","features":[108]},{"name":"NetFwOpenPort","features":[108]},{"name":"NetFwPolicy2","features":[108]},{"name":"NetFwProduct","features":[108]},{"name":"NetFwProducts","features":[108]},{"name":"NetFwRule","features":[108]},{"name":"NetSharingManager","features":[108]},{"name":"NetworkIsolationDiagnoseConnectFailureAndGetInfo","features":[108]},{"name":"NetworkIsolationEnumAppContainers","features":[108,6]},{"name":"NetworkIsolationEnumerateAppContainerRules","features":[108]},{"name":"NetworkIsolationFreeAppContainers","features":[108,6]},{"name":"NetworkIsolationGetAppContainerConfig","features":[108,6]},{"name":"NetworkIsolationGetEnterpriseIdAsync","features":[3,108]},{"name":"NetworkIsolationGetEnterpriseIdClose","features":[3,108]},{"name":"NetworkIsolationRegisterForAppContainerChanges","features":[3,108,6]},{"name":"NetworkIsolationSetAppContainerConfig","features":[108,6]},{"name":"NetworkIsolationSetupAppContainerBinaries","features":[3,108,6]},{"name":"NetworkIsolationUnregisterForAppContainerChanges","features":[3,108]},{"name":"PAC_CHANGES_CALLBACK_FN","features":[108,6]},{"name":"PFN_FWADDDYNAMICKEYWORDADDRESS0","features":[108]},{"name":"PFN_FWDELETEDYNAMICKEYWORDADDRESS0","features":[108]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSBYID0","features":[108]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSESBYTYPE0","features":[108]},{"name":"PFN_FWFREEDYNAMICKEYWORDADDRESSDATA0","features":[108]},{"name":"PFN_FWUPDATEDYNAMICKEYWORDADDRESS0","features":[3,108]},{"name":"PNETISO_EDP_ID_CALLBACK_FN","features":[108]},{"name":"SHARINGCONNECTIONTYPE","features":[108]},{"name":"SHARINGCONNECTION_ENUM_FLAGS","features":[108]},{"name":"S_OBJECT_NO_LONGER_VALID","features":[108]},{"name":"UPnPNAT","features":[108]}],"468":[{"name":"WNV_API_MAJOR_VERSION_1","features":[109]},{"name":"WNV_API_MINOR_VERSION_0","features":[109]},{"name":"WNV_CA_NOTIFICATION_TYPE","features":[109]},{"name":"WNV_CUSTOMER_ADDRESS_CHANGE_PARAM","features":[109,17]},{"name":"WNV_IP_ADDRESS","features":[109,17]},{"name":"WNV_NOTIFICATION_PARAM","features":[109]},{"name":"WNV_NOTIFICATION_TYPE","features":[109]},{"name":"WNV_OBJECT_CHANGE_PARAM","features":[109,17]},{"name":"WNV_OBJECT_HEADER","features":[109]},{"name":"WNV_OBJECT_TYPE","features":[109]},{"name":"WNV_POLICY_MISMATCH_PARAM","features":[109,17]},{"name":"WNV_PROVIDER_ADDRESS_CHANGE_PARAM","features":[109,17]},{"name":"WNV_REDIRECT_PARAM","features":[109,17]},{"name":"WnvCustomerAddressAdded","features":[109]},{"name":"WnvCustomerAddressDeleted","features":[109]},{"name":"WnvCustomerAddressMax","features":[109]},{"name":"WnvCustomerAddressMoved","features":[109]},{"name":"WnvCustomerAddressType","features":[109]},{"name":"WnvNotificationTypeMax","features":[109]},{"name":"WnvObjectChangeType","features":[109]},{"name":"WnvObjectTypeMax","features":[109]},{"name":"WnvOpen","features":[3,109]},{"name":"WnvPolicyMismatchType","features":[109]},{"name":"WnvProviderAddressType","features":[109]},{"name":"WnvRedirectType","features":[109]},{"name":"WnvRequestNotification","features":[3,109,8]}],"469":[{"name":"ACTRL_DS_CONTROL_ACCESS","features":[110]},{"name":"ACTRL_DS_CREATE_CHILD","features":[110]},{"name":"ACTRL_DS_DELETE_CHILD","features":[110]},{"name":"ACTRL_DS_DELETE_TREE","features":[110]},{"name":"ACTRL_DS_LIST","features":[110]},{"name":"ACTRL_DS_LIST_OBJECT","features":[110]},{"name":"ACTRL_DS_OPEN","features":[110]},{"name":"ACTRL_DS_READ_PROP","features":[110]},{"name":"ACTRL_DS_SELF","features":[110]},{"name":"ACTRL_DS_WRITE_PROP","features":[110]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_MUTUAL_AUTH_REQUIRED","features":[110]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE","features":[110]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE_PASS_THROUGH","features":[110]},{"name":"ADAM_SCP_FSMO_NAMING_STRING","features":[110]},{"name":"ADAM_SCP_FSMO_NAMING_STRING_W","features":[110]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING","features":[110]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING_W","features":[110]},{"name":"ADAM_SCP_FSMO_STRING","features":[110]},{"name":"ADAM_SCP_FSMO_STRING_W","features":[110]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING","features":[110]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING_W","features":[110]},{"name":"ADAM_SCP_PARTITION_STRING","features":[110]},{"name":"ADAM_SCP_PARTITION_STRING_W","features":[110]},{"name":"ADAM_SCP_SITE_NAME_STRING","features":[110]},{"name":"ADAM_SCP_SITE_NAME_STRING_W","features":[110]},{"name":"ADSIPROP_ADSIFLAG","features":[110]},{"name":"ADSIPROP_ASYNCHRONOUS","features":[110]},{"name":"ADSIPROP_ATTRIBTYPES_ONLY","features":[110]},{"name":"ADSIPROP_CACHE_RESULTS","features":[110]},{"name":"ADSIPROP_CHASE_REFERRALS","features":[110]},{"name":"ADSIPROP_DEREF_ALIASES","features":[110]},{"name":"ADSIPROP_PAGED_TIME_LIMIT","features":[110]},{"name":"ADSIPROP_PAGESIZE","features":[110]},{"name":"ADSIPROP_SEARCH_SCOPE","features":[110]},{"name":"ADSIPROP_SIZE_LIMIT","features":[110]},{"name":"ADSIPROP_SORT_ON","features":[110]},{"name":"ADSIPROP_TIMEOUT","features":[110]},{"name":"ADSIPROP_TIME_LIMIT","features":[110]},{"name":"ADSI_DIALECT_ENUM","features":[110]},{"name":"ADSI_DIALECT_LDAP","features":[110]},{"name":"ADSI_DIALECT_SQL","features":[110]},{"name":"ADSPROPERROR","features":[3,110]},{"name":"ADSPROPINITPARAMS","features":[3,110]},{"name":"ADSTYPE","features":[110]},{"name":"ADSTYPE_BACKLINK","features":[110]},{"name":"ADSTYPE_BOOLEAN","features":[110]},{"name":"ADSTYPE_CASEIGNORE_LIST","features":[110]},{"name":"ADSTYPE_CASE_EXACT_STRING","features":[110]},{"name":"ADSTYPE_CASE_IGNORE_STRING","features":[110]},{"name":"ADSTYPE_DN_STRING","features":[110]},{"name":"ADSTYPE_DN_WITH_BINARY","features":[110]},{"name":"ADSTYPE_DN_WITH_STRING","features":[110]},{"name":"ADSTYPE_EMAIL","features":[110]},{"name":"ADSTYPE_FAXNUMBER","features":[110]},{"name":"ADSTYPE_HOLD","features":[110]},{"name":"ADSTYPE_INTEGER","features":[110]},{"name":"ADSTYPE_INVALID","features":[110]},{"name":"ADSTYPE_LARGE_INTEGER","features":[110]},{"name":"ADSTYPE_NETADDRESS","features":[110]},{"name":"ADSTYPE_NT_SECURITY_DESCRIPTOR","features":[110]},{"name":"ADSTYPE_NUMERIC_STRING","features":[110]},{"name":"ADSTYPE_OBJECT_CLASS","features":[110]},{"name":"ADSTYPE_OCTET_LIST","features":[110]},{"name":"ADSTYPE_OCTET_STRING","features":[110]},{"name":"ADSTYPE_PATH","features":[110]},{"name":"ADSTYPE_POSTALADDRESS","features":[110]},{"name":"ADSTYPE_PRINTABLE_STRING","features":[110]},{"name":"ADSTYPE_PROV_SPECIFIC","features":[110]},{"name":"ADSTYPE_REPLICAPOINTER","features":[110]},{"name":"ADSTYPE_TIMESTAMP","features":[110]},{"name":"ADSTYPE_TYPEDNAME","features":[110]},{"name":"ADSTYPE_UNKNOWN","features":[110]},{"name":"ADSTYPE_UTC_TIME","features":[110]},{"name":"ADSVALUE","features":[3,110]},{"name":"ADS_ACEFLAG_ENUM","features":[110]},{"name":"ADS_ACEFLAG_FAILED_ACCESS","features":[110]},{"name":"ADS_ACEFLAG_INHERITED_ACE","features":[110]},{"name":"ADS_ACEFLAG_INHERIT_ACE","features":[110]},{"name":"ADS_ACEFLAG_INHERIT_ONLY_ACE","features":[110]},{"name":"ADS_ACEFLAG_NO_PROPAGATE_INHERIT_ACE","features":[110]},{"name":"ADS_ACEFLAG_SUCCESSFUL_ACCESS","features":[110]},{"name":"ADS_ACEFLAG_VALID_INHERIT_FLAGS","features":[110]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED","features":[110]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK","features":[110]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK_OBJECT","features":[110]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_OBJECT","features":[110]},{"name":"ADS_ACETYPE_ACCESS_DENIED","features":[110]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK","features":[110]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK_OBJECT","features":[110]},{"name":"ADS_ACETYPE_ACCESS_DENIED_OBJECT","features":[110]},{"name":"ADS_ACETYPE_ENUM","features":[110]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK","features":[110]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK_OBJECT","features":[110]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_OBJECT","features":[110]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT","features":[110]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK","features":[110]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK_OBJECT","features":[110]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_OBJECT","features":[110]},{"name":"ADS_ATTR_APPEND","features":[110]},{"name":"ADS_ATTR_CLEAR","features":[110]},{"name":"ADS_ATTR_DEF","features":[3,110]},{"name":"ADS_ATTR_DELETE","features":[110]},{"name":"ADS_ATTR_INFO","features":[3,110]},{"name":"ADS_ATTR_UPDATE","features":[110]},{"name":"ADS_AUTHENTICATION_ENUM","features":[110]},{"name":"ADS_AUTH_RESERVED","features":[110]},{"name":"ADS_BACKLINK","features":[110]},{"name":"ADS_CASEIGNORE_LIST","features":[110]},{"name":"ADS_CHASE_REFERRALS_ALWAYS","features":[110]},{"name":"ADS_CHASE_REFERRALS_ENUM","features":[110]},{"name":"ADS_CHASE_REFERRALS_EXTERNAL","features":[110]},{"name":"ADS_CHASE_REFERRALS_NEVER","features":[110]},{"name":"ADS_CHASE_REFERRALS_SUBORDINATE","features":[110]},{"name":"ADS_CLASS_DEF","features":[3,110]},{"name":"ADS_DEREFENUM","features":[110]},{"name":"ADS_DEREF_ALWAYS","features":[110]},{"name":"ADS_DEREF_FINDING","features":[110]},{"name":"ADS_DEREF_NEVER","features":[110]},{"name":"ADS_DEREF_SEARCHING","features":[110]},{"name":"ADS_DISPLAY_ENUM","features":[110]},{"name":"ADS_DISPLAY_FULL","features":[110]},{"name":"ADS_DISPLAY_VALUE_ONLY","features":[110]},{"name":"ADS_DN_WITH_BINARY","features":[110]},{"name":"ADS_DN_WITH_STRING","features":[110]},{"name":"ADS_EMAIL","features":[110]},{"name":"ADS_ESCAPEDMODE_DEFAULT","features":[110]},{"name":"ADS_ESCAPEDMODE_OFF","features":[110]},{"name":"ADS_ESCAPEDMODE_OFF_EX","features":[110]},{"name":"ADS_ESCAPEDMODE_ON","features":[110]},{"name":"ADS_ESCAPE_MODE_ENUM","features":[110]},{"name":"ADS_EXT_INITCREDENTIALS","features":[110]},{"name":"ADS_EXT_INITIALIZE_COMPLETE","features":[110]},{"name":"ADS_EXT_MAXEXTDISPID","features":[110]},{"name":"ADS_EXT_MINEXTDISPID","features":[110]},{"name":"ADS_FAST_BIND","features":[110]},{"name":"ADS_FAXNUMBER","features":[110]},{"name":"ADS_FLAGTYPE_ENUM","features":[110]},{"name":"ADS_FLAG_INHERITED_OBJECT_TYPE_PRESENT","features":[110]},{"name":"ADS_FLAG_OBJECT_TYPE_PRESENT","features":[110]},{"name":"ADS_FORMAT_ENUM","features":[110]},{"name":"ADS_FORMAT_LEAF","features":[110]},{"name":"ADS_FORMAT_PROVIDER","features":[110]},{"name":"ADS_FORMAT_SERVER","features":[110]},{"name":"ADS_FORMAT_WINDOWS","features":[110]},{"name":"ADS_FORMAT_WINDOWS_DN","features":[110]},{"name":"ADS_FORMAT_WINDOWS_NO_SERVER","features":[110]},{"name":"ADS_FORMAT_WINDOWS_PARENT","features":[110]},{"name":"ADS_FORMAT_X500","features":[110]},{"name":"ADS_FORMAT_X500_DN","features":[110]},{"name":"ADS_FORMAT_X500_NO_SERVER","features":[110]},{"name":"ADS_FORMAT_X500_PARENT","features":[110]},{"name":"ADS_GROUP_TYPE_DOMAIN_LOCAL_GROUP","features":[110]},{"name":"ADS_GROUP_TYPE_ENUM","features":[110]},{"name":"ADS_GROUP_TYPE_GLOBAL_GROUP","features":[110]},{"name":"ADS_GROUP_TYPE_LOCAL_GROUP","features":[110]},{"name":"ADS_GROUP_TYPE_SECURITY_ENABLED","features":[110]},{"name":"ADS_GROUP_TYPE_UNIVERSAL_GROUP","features":[110]},{"name":"ADS_HOLD","features":[110]},{"name":"ADS_NAME_INITTYPE_DOMAIN","features":[110]},{"name":"ADS_NAME_INITTYPE_ENUM","features":[110]},{"name":"ADS_NAME_INITTYPE_GC","features":[110]},{"name":"ADS_NAME_INITTYPE_SERVER","features":[110]},{"name":"ADS_NAME_TYPE_1779","features":[110]},{"name":"ADS_NAME_TYPE_CANONICAL","features":[110]},{"name":"ADS_NAME_TYPE_CANONICAL_EX","features":[110]},{"name":"ADS_NAME_TYPE_DISPLAY","features":[110]},{"name":"ADS_NAME_TYPE_DOMAIN_SIMPLE","features":[110]},{"name":"ADS_NAME_TYPE_ENTERPRISE_SIMPLE","features":[110]},{"name":"ADS_NAME_TYPE_ENUM","features":[110]},{"name":"ADS_NAME_TYPE_GUID","features":[110]},{"name":"ADS_NAME_TYPE_NT4","features":[110]},{"name":"ADS_NAME_TYPE_SERVICE_PRINCIPAL_NAME","features":[110]},{"name":"ADS_NAME_TYPE_SID_OR_SID_HISTORY_NAME","features":[110]},{"name":"ADS_NAME_TYPE_UNKNOWN","features":[110]},{"name":"ADS_NAME_TYPE_USER_PRINCIPAL_NAME","features":[110]},{"name":"ADS_NETADDRESS","features":[110]},{"name":"ADS_NO_AUTHENTICATION","features":[110]},{"name":"ADS_NO_REFERRAL_CHASING","features":[110]},{"name":"ADS_NT_SECURITY_DESCRIPTOR","features":[110]},{"name":"ADS_OBJECT_INFO","features":[110]},{"name":"ADS_OCTET_LIST","features":[110]},{"name":"ADS_OCTET_STRING","features":[110]},{"name":"ADS_OPTION_ACCUMULATIVE_MODIFICATION","features":[110]},{"name":"ADS_OPTION_ENUM","features":[110]},{"name":"ADS_OPTION_MUTUAL_AUTH_STATUS","features":[110]},{"name":"ADS_OPTION_PAGE_SIZE","features":[110]},{"name":"ADS_OPTION_PASSWORD_METHOD","features":[110]},{"name":"ADS_OPTION_PASSWORD_PORTNUMBER","features":[110]},{"name":"ADS_OPTION_QUOTA","features":[110]},{"name":"ADS_OPTION_REFERRALS","features":[110]},{"name":"ADS_OPTION_SECURITY_MASK","features":[110]},{"name":"ADS_OPTION_SERVERNAME","features":[110]},{"name":"ADS_OPTION_SKIP_SID_LOOKUP","features":[110]},{"name":"ADS_PASSWORD_ENCODE_CLEAR","features":[110]},{"name":"ADS_PASSWORD_ENCODE_REQUIRE_SSL","features":[110]},{"name":"ADS_PASSWORD_ENCODING_ENUM","features":[110]},{"name":"ADS_PATH","features":[110]},{"name":"ADS_PATHTYPE_ENUM","features":[110]},{"name":"ADS_PATH_FILE","features":[110]},{"name":"ADS_PATH_FILESHARE","features":[110]},{"name":"ADS_PATH_REGISTRY","features":[110]},{"name":"ADS_POSTALADDRESS","features":[110]},{"name":"ADS_PREFERENCES_ENUM","features":[110]},{"name":"ADS_PROMPT_CREDENTIALS","features":[110]},{"name":"ADS_PROPERTY_APPEND","features":[110]},{"name":"ADS_PROPERTY_CLEAR","features":[110]},{"name":"ADS_PROPERTY_DELETE","features":[110]},{"name":"ADS_PROPERTY_OPERATION_ENUM","features":[110]},{"name":"ADS_PROPERTY_UPDATE","features":[110]},{"name":"ADS_PROV_SPECIFIC","features":[110]},{"name":"ADS_READONLY_SERVER","features":[110]},{"name":"ADS_REPLICAPOINTER","features":[110]},{"name":"ADS_RIGHTS_ENUM","features":[110]},{"name":"ADS_RIGHT_ACCESS_SYSTEM_SECURITY","features":[110]},{"name":"ADS_RIGHT_ACTRL_DS_LIST","features":[110]},{"name":"ADS_RIGHT_DELETE","features":[110]},{"name":"ADS_RIGHT_DS_CONTROL_ACCESS","features":[110]},{"name":"ADS_RIGHT_DS_CREATE_CHILD","features":[110]},{"name":"ADS_RIGHT_DS_DELETE_CHILD","features":[110]},{"name":"ADS_RIGHT_DS_DELETE_TREE","features":[110]},{"name":"ADS_RIGHT_DS_LIST_OBJECT","features":[110]},{"name":"ADS_RIGHT_DS_READ_PROP","features":[110]},{"name":"ADS_RIGHT_DS_SELF","features":[110]},{"name":"ADS_RIGHT_DS_WRITE_PROP","features":[110]},{"name":"ADS_RIGHT_GENERIC_ALL","features":[110]},{"name":"ADS_RIGHT_GENERIC_EXECUTE","features":[110]},{"name":"ADS_RIGHT_GENERIC_READ","features":[110]},{"name":"ADS_RIGHT_GENERIC_WRITE","features":[110]},{"name":"ADS_RIGHT_READ_CONTROL","features":[110]},{"name":"ADS_RIGHT_SYNCHRONIZE","features":[110]},{"name":"ADS_RIGHT_WRITE_DAC","features":[110]},{"name":"ADS_RIGHT_WRITE_OWNER","features":[110]},{"name":"ADS_SCOPEENUM","features":[110]},{"name":"ADS_SCOPE_BASE","features":[110]},{"name":"ADS_SCOPE_ONELEVEL","features":[110]},{"name":"ADS_SCOPE_SUBTREE","features":[110]},{"name":"ADS_SD_CONTROL_ENUM","features":[110]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERITED","features":[110]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERIT_REQ","features":[110]},{"name":"ADS_SD_CONTROL_SE_DACL_DEFAULTED","features":[110]},{"name":"ADS_SD_CONTROL_SE_DACL_PRESENT","features":[110]},{"name":"ADS_SD_CONTROL_SE_DACL_PROTECTED","features":[110]},{"name":"ADS_SD_CONTROL_SE_GROUP_DEFAULTED","features":[110]},{"name":"ADS_SD_CONTROL_SE_OWNER_DEFAULTED","features":[110]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERITED","features":[110]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERIT_REQ","features":[110]},{"name":"ADS_SD_CONTROL_SE_SACL_DEFAULTED","features":[110]},{"name":"ADS_SD_CONTROL_SE_SACL_PRESENT","features":[110]},{"name":"ADS_SD_CONTROL_SE_SACL_PROTECTED","features":[110]},{"name":"ADS_SD_CONTROL_SE_SELF_RELATIVE","features":[110]},{"name":"ADS_SD_FORMAT_ENUM","features":[110]},{"name":"ADS_SD_FORMAT_HEXSTRING","features":[110]},{"name":"ADS_SD_FORMAT_IID","features":[110]},{"name":"ADS_SD_FORMAT_RAW","features":[110]},{"name":"ADS_SD_REVISION_DS","features":[110]},{"name":"ADS_SD_REVISION_ENUM","features":[110]},{"name":"ADS_SEARCHPREF_ASYNCHRONOUS","features":[110]},{"name":"ADS_SEARCHPREF_ATTRIBTYPES_ONLY","features":[110]},{"name":"ADS_SEARCHPREF_ATTRIBUTE_QUERY","features":[110]},{"name":"ADS_SEARCHPREF_CACHE_RESULTS","features":[110]},{"name":"ADS_SEARCHPREF_CHASE_REFERRALS","features":[110]},{"name":"ADS_SEARCHPREF_DEREF_ALIASES","features":[110]},{"name":"ADS_SEARCHPREF_DIRSYNC","features":[110]},{"name":"ADS_SEARCHPREF_DIRSYNC_FLAG","features":[110]},{"name":"ADS_SEARCHPREF_ENUM","features":[110]},{"name":"ADS_SEARCHPREF_EXTENDED_DN","features":[110]},{"name":"ADS_SEARCHPREF_INFO","features":[3,110]},{"name":"ADS_SEARCHPREF_PAGED_TIME_LIMIT","features":[110]},{"name":"ADS_SEARCHPREF_PAGESIZE","features":[110]},{"name":"ADS_SEARCHPREF_SEARCH_SCOPE","features":[110]},{"name":"ADS_SEARCHPREF_SECURITY_MASK","features":[110]},{"name":"ADS_SEARCHPREF_SIZE_LIMIT","features":[110]},{"name":"ADS_SEARCHPREF_SORT_ON","features":[110]},{"name":"ADS_SEARCHPREF_TIMEOUT","features":[110]},{"name":"ADS_SEARCHPREF_TIME_LIMIT","features":[110]},{"name":"ADS_SEARCHPREF_TOMBSTONE","features":[110]},{"name":"ADS_SEARCHPREF_VLV","features":[110]},{"name":"ADS_SEARCH_COLUMN","features":[3,110]},{"name":"ADS_SEARCH_HANDLE","features":[110]},{"name":"ADS_SECURE_AUTHENTICATION","features":[110]},{"name":"ADS_SECURITY_INFO_DACL","features":[110]},{"name":"ADS_SECURITY_INFO_ENUM","features":[110]},{"name":"ADS_SECURITY_INFO_GROUP","features":[110]},{"name":"ADS_SECURITY_INFO_OWNER","features":[110]},{"name":"ADS_SECURITY_INFO_SACL","features":[110]},{"name":"ADS_SERVER_BIND","features":[110]},{"name":"ADS_SETTYPE_DN","features":[110]},{"name":"ADS_SETTYPE_ENUM","features":[110]},{"name":"ADS_SETTYPE_FULL","features":[110]},{"name":"ADS_SETTYPE_PROVIDER","features":[110]},{"name":"ADS_SETTYPE_SERVER","features":[110]},{"name":"ADS_SORTKEY","features":[3,110]},{"name":"ADS_STATUSENUM","features":[110]},{"name":"ADS_STATUS_INVALID_SEARCHPREF","features":[110]},{"name":"ADS_STATUS_INVALID_SEARCHPREFVALUE","features":[110]},{"name":"ADS_STATUS_S_OK","features":[110]},{"name":"ADS_SYSTEMFLAG_ATTR_IS_CONSTRUCTED","features":[110]},{"name":"ADS_SYSTEMFLAG_ATTR_NOT_REPLICATED","features":[110]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_LIMITED_MOVE","features":[110]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_MOVE","features":[110]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_RENAME","features":[110]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_DOMAIN","features":[110]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_NC","features":[110]},{"name":"ADS_SYSTEMFLAG_DISALLOW_DELETE","features":[110]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_MOVE","features":[110]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_RENAME","features":[110]},{"name":"ADS_SYSTEMFLAG_ENUM","features":[110]},{"name":"ADS_TIMESTAMP","features":[110]},{"name":"ADS_TYPEDNAME","features":[110]},{"name":"ADS_UF_ACCOUNTDISABLE","features":[110]},{"name":"ADS_UF_DONT_EXPIRE_PASSWD","features":[110]},{"name":"ADS_UF_DONT_REQUIRE_PREAUTH","features":[110]},{"name":"ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[110]},{"name":"ADS_UF_HOMEDIR_REQUIRED","features":[110]},{"name":"ADS_UF_INTERDOMAIN_TRUST_ACCOUNT","features":[110]},{"name":"ADS_UF_LOCKOUT","features":[110]},{"name":"ADS_UF_MNS_LOGON_ACCOUNT","features":[110]},{"name":"ADS_UF_NORMAL_ACCOUNT","features":[110]},{"name":"ADS_UF_NOT_DELEGATED","features":[110]},{"name":"ADS_UF_PASSWD_CANT_CHANGE","features":[110]},{"name":"ADS_UF_PASSWD_NOTREQD","features":[110]},{"name":"ADS_UF_PASSWORD_EXPIRED","features":[110]},{"name":"ADS_UF_SCRIPT","features":[110]},{"name":"ADS_UF_SERVER_TRUST_ACCOUNT","features":[110]},{"name":"ADS_UF_SMARTCARD_REQUIRED","features":[110]},{"name":"ADS_UF_TEMP_DUPLICATE_ACCOUNT","features":[110]},{"name":"ADS_UF_TRUSTED_FOR_DELEGATION","features":[110]},{"name":"ADS_UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[110]},{"name":"ADS_UF_USE_DES_KEY_ONLY","features":[110]},{"name":"ADS_UF_WORKSTATION_TRUST_ACCOUNT","features":[110]},{"name":"ADS_USER_FLAG_ENUM","features":[110]},{"name":"ADS_USE_DELEGATION","features":[110]},{"name":"ADS_USE_ENCRYPTION","features":[110]},{"name":"ADS_USE_SEALING","features":[110]},{"name":"ADS_USE_SIGNING","features":[110]},{"name":"ADS_USE_SSL","features":[110]},{"name":"ADS_VLV","features":[110]},{"name":"ADSystemInfo","features":[110]},{"name":"ADsBuildEnumerator","features":[110]},{"name":"ADsBuildVarArrayInt","features":[3,110,43,44]},{"name":"ADsBuildVarArrayStr","features":[3,110,43,44]},{"name":"ADsDecodeBinaryData","features":[110]},{"name":"ADsEncodeBinaryData","features":[110]},{"name":"ADsEnumerateNext","features":[3,110,43,44]},{"name":"ADsFreeEnumerator","features":[110]},{"name":"ADsGetLastError","features":[110]},{"name":"ADsGetObject","features":[110]},{"name":"ADsOpenObject","features":[110]},{"name":"ADsPropCheckIfWritable","features":[3,110]},{"name":"ADsPropCreateNotifyObj","features":[3,110]},{"name":"ADsPropGetInitInfo","features":[3,110]},{"name":"ADsPropSendErrorMessage","features":[3,110]},{"name":"ADsPropSetHwnd","features":[3,110]},{"name":"ADsPropSetHwndWithTitle","features":[3,110]},{"name":"ADsPropShowErrorDialog","features":[3,110]},{"name":"ADsSecurityUtility","features":[110]},{"name":"ADsSetLastError","features":[110]},{"name":"AccessControlEntry","features":[110]},{"name":"AccessControlList","features":[110]},{"name":"AdsFreeAdsValues","features":[3,110]},{"name":"AdsTypeToPropVariant","features":[3,110,43,44]},{"name":"AllocADsMem","features":[110]},{"name":"AllocADsStr","features":[110]},{"name":"BackLink","features":[110]},{"name":"BinarySDToSecurityDescriptor","features":[3,110,6,43,44]},{"name":"CFSTR_DSDISPLAYSPECOPTIONS","features":[110]},{"name":"CFSTR_DSOBJECTNAMES","features":[110]},{"name":"CFSTR_DSOP_DS_SELECTION_LIST","features":[110]},{"name":"CFSTR_DSPROPERTYPAGEINFO","features":[110]},{"name":"CFSTR_DSQUERYPARAMS","features":[110]},{"name":"CFSTR_DSQUERYSCOPE","features":[110]},{"name":"CFSTR_DS_DISPLAY_SPEC_OPTIONS","features":[110]},{"name":"CLSID_CommonQuery","features":[110]},{"name":"CLSID_DsAdminCreateObj","features":[110]},{"name":"CLSID_DsDisplaySpecifier","features":[110]},{"name":"CLSID_DsDomainTreeBrowser","features":[110]},{"name":"CLSID_DsFindAdvanced","features":[110]},{"name":"CLSID_DsFindComputer","features":[110]},{"name":"CLSID_DsFindContainer","features":[110]},{"name":"CLSID_DsFindDomainController","features":[110]},{"name":"CLSID_DsFindFrsMembers","features":[110]},{"name":"CLSID_DsFindObjects","features":[110]},{"name":"CLSID_DsFindPeople","features":[110]},{"name":"CLSID_DsFindPrinter","features":[110]},{"name":"CLSID_DsFindVolume","features":[110]},{"name":"CLSID_DsFindWriteableDomainController","features":[110]},{"name":"CLSID_DsFolderProperties","features":[110]},{"name":"CLSID_DsObjectPicker","features":[110]},{"name":"CLSID_DsPropertyPages","features":[110]},{"name":"CLSID_DsQuery","features":[110]},{"name":"CLSID_MicrosoftDS","features":[110]},{"name":"CQFF_ISOPTIONAL","features":[110]},{"name":"CQFF_NOGLOBALPAGES","features":[110]},{"name":"CQFORM","features":[110,52]},{"name":"CQPAGE","features":[3,110,52]},{"name":"CQPM_CLEARFORM","features":[110]},{"name":"CQPM_ENABLE","features":[110]},{"name":"CQPM_GETPARAMETERS","features":[110]},{"name":"CQPM_HANDLERSPECIFIC","features":[110]},{"name":"CQPM_HELP","features":[110]},{"name":"CQPM_INITIALIZE","features":[110]},{"name":"CQPM_PERSIST","features":[110]},{"name":"CQPM_RELEASE","features":[110]},{"name":"CQPM_SETDEFAULTPARAMETERS","features":[110]},{"name":"CaseIgnoreList","features":[110]},{"name":"DBDTF_RETURNEXTERNAL","features":[110]},{"name":"DBDTF_RETURNFQDN","features":[110]},{"name":"DBDTF_RETURNINBOUND","features":[110]},{"name":"DBDTF_RETURNINOUTBOUND","features":[110]},{"name":"DBDTF_RETURNMIXEDDOMAINS","features":[110]},{"name":"DNWithBinary","features":[110]},{"name":"DNWithString","features":[110]},{"name":"DOMAINDESC","features":[3,110]},{"name":"DOMAIN_CONTROLLER_INFOA","features":[110]},{"name":"DOMAIN_CONTROLLER_INFOW","features":[110]},{"name":"DOMAIN_TREE","features":[3,110]},{"name":"DSA_NEWOBJ_CTX_CLEANUP","features":[110]},{"name":"DSA_NEWOBJ_CTX_COMMIT","features":[110]},{"name":"DSA_NEWOBJ_CTX_POSTCOMMIT","features":[110]},{"name":"DSA_NEWOBJ_CTX_PRECOMMIT","features":[110]},{"name":"DSA_NEWOBJ_DISPINFO","features":[110,52]},{"name":"DSA_NOTIFY_DEL","features":[110]},{"name":"DSA_NOTIFY_FLAG_ADDITIONAL_DATA","features":[110]},{"name":"DSA_NOTIFY_FLAG_FORCE_ADDITIONAL_DATA","features":[110]},{"name":"DSA_NOTIFY_MOV","features":[110]},{"name":"DSA_NOTIFY_PROP","features":[110]},{"name":"DSA_NOTIFY_REN","features":[110]},{"name":"DSBF_DISPLAYNAME","features":[110]},{"name":"DSBF_ICONLOCATION","features":[110]},{"name":"DSBF_STATE","features":[110]},{"name":"DSBID_BANNER","features":[110]},{"name":"DSBID_CONTAINERLIST","features":[110]},{"name":"DSBITEMA","features":[110]},{"name":"DSBITEMW","features":[110]},{"name":"DSBI_CHECKBOXES","features":[110]},{"name":"DSBI_DONTSIGNSEAL","features":[110]},{"name":"DSBI_ENTIREDIRECTORY","features":[110]},{"name":"DSBI_EXPANDONOPEN","features":[110]},{"name":"DSBI_HASCREDENTIALS","features":[110]},{"name":"DSBI_IGNORETREATASLEAF","features":[110]},{"name":"DSBI_INCLUDEHIDDEN","features":[110]},{"name":"DSBI_NOBUTTONS","features":[110]},{"name":"DSBI_NOLINES","features":[110]},{"name":"DSBI_NOLINESATROOT","features":[110]},{"name":"DSBI_NOROOT","features":[110]},{"name":"DSBI_RETURNOBJECTCLASS","features":[110]},{"name":"DSBI_RETURN_FORMAT","features":[110]},{"name":"DSBI_SIMPLEAUTHENTICATE","features":[110]},{"name":"DSBM_CHANGEIMAGESTATE","features":[110]},{"name":"DSBM_CONTEXTMENU","features":[110]},{"name":"DSBM_HELP","features":[110]},{"name":"DSBM_QUERYINSERT","features":[110]},{"name":"DSBM_QUERYINSERTA","features":[110]},{"name":"DSBM_QUERYINSERTW","features":[110]},{"name":"DSBROWSEINFOA","features":[3,110,111]},{"name":"DSBROWSEINFOW","features":[3,110,111]},{"name":"DSBS_CHECKED","features":[110]},{"name":"DSBS_HIDDEN","features":[110]},{"name":"DSBS_ROOT","features":[110]},{"name":"DSB_MAX_DISPLAYNAME_CHARS","features":[110]},{"name":"DSCCIF_HASWIZARDDIALOG","features":[110]},{"name":"DSCCIF_HASWIZARDPRIMARYPAGE","features":[110]},{"name":"DSCLASSCREATIONINFO","features":[110]},{"name":"DSCOLUMN","features":[110]},{"name":"DSDISPLAYSPECOPTIONS","features":[110]},{"name":"DSDSOF_DONTSIGNSEAL","features":[110]},{"name":"DSDSOF_DSAVAILABLE","features":[110]},{"name":"DSDSOF_HASUSERANDSERVERINFO","features":[110]},{"name":"DSDSOF_SIMPLEAUTHENTICATE","features":[110]},{"name":"DSECAF_NOTLISTED","features":[110]},{"name":"DSGIF_DEFAULTISCONTAINER","features":[110]},{"name":"DSGIF_GETDEFAULTICON","features":[110]},{"name":"DSGIF_ISDISABLED","features":[110]},{"name":"DSGIF_ISMASK","features":[110]},{"name":"DSGIF_ISNORMAL","features":[110]},{"name":"DSGIF_ISOPEN","features":[110]},{"name":"DSICCF_IGNORETREATASLEAF","features":[110]},{"name":"DSOBJECT","features":[110]},{"name":"DSOBJECTNAMES","features":[110]},{"name":"DSOBJECT_ISCONTAINER","features":[110]},{"name":"DSOBJECT_READONLYPAGES","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_APP_PACKAGES","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_WELLKNOWN_SIDS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_ANONYMOUS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_AUTHENTICATED_USER","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_BATCH","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_COMPUTERS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_GROUP","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_OWNER","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_DIALUP","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_EXCLUDE_BUILTIN_GROUPS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_GLOBAL_GROUPS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_IIS_APP_POOL","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERACTIVE","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERNET_USER","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_ACCOUNTS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_GROUPS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_LOGON","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_SERVICE","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK_SERVICE","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_OWNER_RIGHTS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_REMOTE_LOGON","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICE","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICES","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_SYSTEM","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_TERMINAL_SERVER","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_THIS_ORG_CERT","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_USERS","features":[110]},{"name":"DSOP_DOWNLEVEL_FILTER_WORLD","features":[110]},{"name":"DSOP_FILTER_BUILTIN_GROUPS","features":[110]},{"name":"DSOP_FILTER_COMPUTERS","features":[110]},{"name":"DSOP_FILTER_CONTACTS","features":[110]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_DL","features":[110]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_SE","features":[110]},{"name":"DSOP_FILTER_FLAGS","features":[110]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_DL","features":[110]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_SE","features":[110]},{"name":"DSOP_FILTER_INCLUDE_ADVANCED_VIEW","features":[110]},{"name":"DSOP_FILTER_PASSWORDSETTINGS_OBJECTS","features":[110]},{"name":"DSOP_FILTER_SERVICE_ACCOUNTS","features":[110]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_DL","features":[110]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_SE","features":[110]},{"name":"DSOP_FILTER_USERS","features":[110]},{"name":"DSOP_FILTER_WELL_KNOWN_PRINCIPALS","features":[110]},{"name":"DSOP_FLAG_MULTISELECT","features":[110]},{"name":"DSOP_FLAG_SKIP_TARGET_COMPUTER_DC_CHECK","features":[110]},{"name":"DSOP_INIT_INFO","features":[110]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_COMPUTERS","features":[110]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_CONTACTS","features":[110]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_GROUPS","features":[110]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_PASSWORDSETTINGS_OBJECTS","features":[110]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_SERVICE_ACCOUNTS","features":[110]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_USERS","features":[110]},{"name":"DSOP_SCOPE_FLAG_STARTING_SCOPE","features":[110]},{"name":"DSOP_SCOPE_FLAG_WANT_DOWNLEVEL_BUILTIN_PATH","features":[110]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_GC","features":[110]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_LDAP","features":[110]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_WINNT","features":[110]},{"name":"DSOP_SCOPE_FLAG_WANT_SID_PATH","features":[110]},{"name":"DSOP_SCOPE_INIT_INFO","features":[110]},{"name":"DSOP_SCOPE_TYPE_DOWNLEVEL_JOINED_DOMAIN","features":[110]},{"name":"DSOP_SCOPE_TYPE_ENTERPRISE_DOMAIN","features":[110]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_DOWNLEVEL_DOMAIN","features":[110]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_UPLEVEL_DOMAIN","features":[110]},{"name":"DSOP_SCOPE_TYPE_GLOBAL_CATALOG","features":[110]},{"name":"DSOP_SCOPE_TYPE_TARGET_COMPUTER","features":[110]},{"name":"DSOP_SCOPE_TYPE_UPLEVEL_JOINED_DOMAIN","features":[110]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_DOWNLEVEL_SCOPE","features":[110]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_UPLEVEL_SCOPE","features":[110]},{"name":"DSOP_SCOPE_TYPE_WORKGROUP","features":[110]},{"name":"DSOP_UPLEVEL_FILTER_FLAGS","features":[110]},{"name":"DSPROPERTYPAGEINFO","features":[110]},{"name":"DSPROP_ATTRCHANGED_MSG","features":[110]},{"name":"DSPROVIDER_ADVANCED","features":[110]},{"name":"DSPROVIDER_AD_LDS","features":[110]},{"name":"DSPROVIDER_UNUSED_0","features":[110]},{"name":"DSPROVIDER_UNUSED_1","features":[110]},{"name":"DSPROVIDER_UNUSED_2","features":[110]},{"name":"DSPROVIDER_UNUSED_3","features":[110]},{"name":"DSQPF_ENABLEADMINFEATURES","features":[110]},{"name":"DSQPF_ENABLEADVANCEDFEATURES","features":[110]},{"name":"DSQPF_HASCREDENTIALS","features":[110]},{"name":"DSQPF_NOCHOOSECOLUMNS","features":[110]},{"name":"DSQPF_NOSAVE","features":[110]},{"name":"DSQPF_SAVELOCATION","features":[110]},{"name":"DSQPF_SHOWHIDDENOBJECTS","features":[110]},{"name":"DSQPM_GETCLASSLIST","features":[110]},{"name":"DSQPM_HELPTOPICS","features":[110]},{"name":"DSQUERYCLASSLIST","features":[110]},{"name":"DSQUERYINITPARAMS","features":[110]},{"name":"DSQUERYPARAMS","features":[3,110]},{"name":"DSROLE_MACHINE_ROLE","features":[110]},{"name":"DSROLE_OPERATION_STATE","features":[110]},{"name":"DSROLE_OPERATION_STATE_INFO","features":[110]},{"name":"DSROLE_PRIMARY_DOMAIN_GUID_PRESENT","features":[110]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_BASIC","features":[110]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_LEVEL","features":[110]},{"name":"DSROLE_PRIMARY_DS_MIXED_MODE","features":[110]},{"name":"DSROLE_PRIMARY_DS_READONLY","features":[110]},{"name":"DSROLE_PRIMARY_DS_RUNNING","features":[110]},{"name":"DSROLE_SERVER_STATE","features":[110]},{"name":"DSROLE_UPGRADE_IN_PROGRESS","features":[110]},{"name":"DSROLE_UPGRADE_STATUS_INFO","features":[110]},{"name":"DSSSF_DONTSIGNSEAL","features":[110]},{"name":"DSSSF_DSAVAILABLE","features":[110]},{"name":"DSSSF_SIMPLEAUTHENTICATE","features":[110]},{"name":"DS_AVOID_SELF","features":[110]},{"name":"DS_BACKGROUND_ONLY","features":[110]},{"name":"DS_BEHAVIOR_LONGHORN","features":[110]},{"name":"DS_BEHAVIOR_WIN2000","features":[110]},{"name":"DS_BEHAVIOR_WIN2003","features":[110]},{"name":"DS_BEHAVIOR_WIN2003_WITH_MIXED_DOMAINS","features":[110]},{"name":"DS_BEHAVIOR_WIN2008","features":[110]},{"name":"DS_BEHAVIOR_WIN2008R2","features":[110]},{"name":"DS_BEHAVIOR_WIN2012","features":[110]},{"name":"DS_BEHAVIOR_WIN2012R2","features":[110]},{"name":"DS_BEHAVIOR_WIN2016","features":[110]},{"name":"DS_BEHAVIOR_WIN7","features":[110]},{"name":"DS_BEHAVIOR_WIN8","features":[110]},{"name":"DS_BEHAVIOR_WINBLUE","features":[110]},{"name":"DS_BEHAVIOR_WINTHRESHOLD","features":[110]},{"name":"DS_CANONICAL_NAME","features":[110]},{"name":"DS_CANONICAL_NAME_EX","features":[110]},{"name":"DS_CLOSEST_FLAG","features":[110]},{"name":"DS_DIRECTORY_SERVICE_10_REQUIRED","features":[110]},{"name":"DS_DIRECTORY_SERVICE_6_REQUIRED","features":[110]},{"name":"DS_DIRECTORY_SERVICE_8_REQUIRED","features":[110]},{"name":"DS_DIRECTORY_SERVICE_9_REQUIRED","features":[110]},{"name":"DS_DIRECTORY_SERVICE_PREFERRED","features":[110]},{"name":"DS_DIRECTORY_SERVICE_REQUIRED","features":[110]},{"name":"DS_DISPLAY_NAME","features":[110]},{"name":"DS_DNS_CONTROLLER_FLAG","features":[110]},{"name":"DS_DNS_DOMAIN_FLAG","features":[110]},{"name":"DS_DNS_DOMAIN_NAME","features":[110]},{"name":"DS_DNS_FOREST_FLAG","features":[110]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1A","features":[3,110]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1W","features":[3,110]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2A","features":[3,110]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2W","features":[3,110]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3A","features":[3,110]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3W","features":[3,110]},{"name":"DS_DOMAIN_DIRECT_INBOUND","features":[110]},{"name":"DS_DOMAIN_DIRECT_OUTBOUND","features":[110]},{"name":"DS_DOMAIN_IN_FOREST","features":[110]},{"name":"DS_DOMAIN_NATIVE_MODE","features":[110]},{"name":"DS_DOMAIN_PRIMARY","features":[110]},{"name":"DS_DOMAIN_TREE_ROOT","features":[110]},{"name":"DS_DOMAIN_TRUSTSA","features":[110,6]},{"name":"DS_DOMAIN_TRUSTSW","features":[110,6]},{"name":"DS_DS_10_FLAG","features":[110]},{"name":"DS_DS_8_FLAG","features":[110]},{"name":"DS_DS_9_FLAG","features":[110]},{"name":"DS_DS_FLAG","features":[110]},{"name":"DS_EXIST_ADVISORY_MODE","features":[110]},{"name":"DS_FORCE_REDISCOVERY","features":[110]},{"name":"DS_FQDN_1779_NAME","features":[110]},{"name":"DS_FULL_SECRET_DOMAIN_6_FLAG","features":[110]},{"name":"DS_GC_FLAG","features":[110]},{"name":"DS_GC_SERVER_REQUIRED","features":[110]},{"name":"DS_GFTI_UPDATE_TDO","features":[110]},{"name":"DS_GFTI_VALID_FLAGS","features":[110]},{"name":"DS_GOOD_TIMESERV_FLAG","features":[110]},{"name":"DS_GOOD_TIMESERV_PREFERRED","features":[110]},{"name":"DS_INSTANCETYPE_IS_NC_HEAD","features":[110]},{"name":"DS_INSTANCETYPE_NC_COMING","features":[110]},{"name":"DS_INSTANCETYPE_NC_GOING","features":[110]},{"name":"DS_INSTANCETYPE_NC_IS_WRITEABLE","features":[110]},{"name":"DS_IP_REQUIRED","features":[110]},{"name":"DS_IS_DNS_NAME","features":[110]},{"name":"DS_IS_FLAT_NAME","features":[110]},{"name":"DS_KCC_FLAG_ASYNC_OP","features":[110]},{"name":"DS_KCC_FLAG_DAMPED","features":[110]},{"name":"DS_KCC_TASKID","features":[110]},{"name":"DS_KCC_TASKID_UPDATE_TOPOLOGY","features":[110]},{"name":"DS_KDC_FLAG","features":[110]},{"name":"DS_KDC_REQUIRED","features":[110]},{"name":"DS_KEY_LIST_FLAG","features":[110]},{"name":"DS_KEY_LIST_SUPPORT_REQUIRED","features":[110]},{"name":"DS_LDAP_FLAG","features":[110]},{"name":"DS_LIST_ACCOUNT_OBJECT_FOR_SERVER","features":[110]},{"name":"DS_LIST_DNS_HOST_NAME_FOR_SERVER","features":[110]},{"name":"DS_LIST_DSA_OBJECT_FOR_SERVER","features":[110]},{"name":"DS_MANGLE_FOR","features":[110]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_DELETION","features":[110]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_NAME_CONFLICT","features":[110]},{"name":"DS_MANGLE_UNKNOWN","features":[110]},{"name":"DS_NAME_ERROR","features":[110]},{"name":"DS_NAME_ERROR_DOMAIN_ONLY","features":[110]},{"name":"DS_NAME_ERROR_NOT_FOUND","features":[110]},{"name":"DS_NAME_ERROR_NOT_UNIQUE","features":[110]},{"name":"DS_NAME_ERROR_NO_MAPPING","features":[110]},{"name":"DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[110]},{"name":"DS_NAME_ERROR_RESOLVING","features":[110]},{"name":"DS_NAME_ERROR_TRUST_REFERRAL","features":[110]},{"name":"DS_NAME_FLAGS","features":[110]},{"name":"DS_NAME_FLAG_EVAL_AT_DC","features":[110]},{"name":"DS_NAME_FLAG_GCVERIFY","features":[110]},{"name":"DS_NAME_FLAG_SYNTACTICAL_ONLY","features":[110]},{"name":"DS_NAME_FLAG_TRUST_REFERRAL","features":[110]},{"name":"DS_NAME_FORMAT","features":[110]},{"name":"DS_NAME_NO_ERROR","features":[110]},{"name":"DS_NAME_NO_FLAGS","features":[110]},{"name":"DS_NAME_RESULTA","features":[110]},{"name":"DS_NAME_RESULTW","features":[110]},{"name":"DS_NAME_RESULT_ITEMA","features":[110]},{"name":"DS_NAME_RESULT_ITEMW","features":[110]},{"name":"DS_NDNC_FLAG","features":[110]},{"name":"DS_NOTIFY_AFTER_SITE_RECORDS","features":[110]},{"name":"DS_NT4_ACCOUNT_NAME","features":[110]},{"name":"DS_ONLY_DO_SITE_NAME","features":[110]},{"name":"DS_ONLY_LDAP_NEEDED","features":[110]},{"name":"DS_PDC_FLAG","features":[110]},{"name":"DS_PDC_REQUIRED","features":[110]},{"name":"DS_PING_FLAGS","features":[110]},{"name":"DS_PROP_ADMIN_PREFIX","features":[110]},{"name":"DS_PROP_SHELL_PREFIX","features":[110]},{"name":"DS_REPADD_ASYNCHRONOUS_OPERATION","features":[110]},{"name":"DS_REPADD_ASYNCHRONOUS_REPLICA","features":[110]},{"name":"DS_REPADD_CRITICAL","features":[110]},{"name":"DS_REPADD_DISABLE_NOTIFICATION","features":[110]},{"name":"DS_REPADD_DISABLE_PERIODIC","features":[110]},{"name":"DS_REPADD_INITIAL","features":[110]},{"name":"DS_REPADD_INTERSITE_MESSAGING","features":[110]},{"name":"DS_REPADD_NEVER_NOTIFY","features":[110]},{"name":"DS_REPADD_NONGC_RO_REPLICA","features":[110]},{"name":"DS_REPADD_PERIODIC","features":[110]},{"name":"DS_REPADD_SELECT_SECRETS","features":[110]},{"name":"DS_REPADD_TWO_WAY","features":[110]},{"name":"DS_REPADD_USE_COMPRESSION","features":[110]},{"name":"DS_REPADD_WRITEABLE","features":[110]},{"name":"DS_REPDEL_ASYNCHRONOUS_OPERATION","features":[110]},{"name":"DS_REPDEL_IGNORE_ERRORS","features":[110]},{"name":"DS_REPDEL_INTERSITE_MESSAGING","features":[110]},{"name":"DS_REPDEL_LOCAL_ONLY","features":[110]},{"name":"DS_REPDEL_NO_SOURCE","features":[110]},{"name":"DS_REPDEL_REF_OK","features":[110]},{"name":"DS_REPDEL_WRITEABLE","features":[110]},{"name":"DS_REPL_ATTR_META_DATA","features":[3,110]},{"name":"DS_REPL_ATTR_META_DATA_2","features":[3,110]},{"name":"DS_REPL_ATTR_META_DATA_BLOB","features":[3,110]},{"name":"DS_REPL_ATTR_VALUE_META_DATA","features":[3,110]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_2","features":[3,110]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_EXT","features":[3,110]},{"name":"DS_REPL_CURSOR","features":[110]},{"name":"DS_REPL_CURSORS","features":[110]},{"name":"DS_REPL_CURSORS_2","features":[3,110]},{"name":"DS_REPL_CURSORS_3W","features":[3,110]},{"name":"DS_REPL_CURSOR_2","features":[3,110]},{"name":"DS_REPL_CURSOR_3W","features":[3,110]},{"name":"DS_REPL_CURSOR_BLOB","features":[3,110]},{"name":"DS_REPL_INFO_CURSORS_2_FOR_NC","features":[110]},{"name":"DS_REPL_INFO_CURSORS_3_FOR_NC","features":[110]},{"name":"DS_REPL_INFO_CURSORS_FOR_NC","features":[110]},{"name":"DS_REPL_INFO_FLAG_IMPROVE_LINKED_ATTRS","features":[110]},{"name":"DS_REPL_INFO_KCC_DSA_CONNECT_FAILURES","features":[110]},{"name":"DS_REPL_INFO_KCC_DSA_LINK_FAILURES","features":[110]},{"name":"DS_REPL_INFO_METADATA_2_FOR_ATTR_VALUE","features":[110]},{"name":"DS_REPL_INFO_METADATA_2_FOR_OBJ","features":[110]},{"name":"DS_REPL_INFO_METADATA_EXT_FOR_ATTR_VALUE","features":[110]},{"name":"DS_REPL_INFO_METADATA_FOR_ATTR_VALUE","features":[110]},{"name":"DS_REPL_INFO_METADATA_FOR_OBJ","features":[110]},{"name":"DS_REPL_INFO_NEIGHBORS","features":[110]},{"name":"DS_REPL_INFO_PENDING_OPS","features":[110]},{"name":"DS_REPL_INFO_TYPE","features":[110]},{"name":"DS_REPL_INFO_TYPE_MAX","features":[110]},{"name":"DS_REPL_KCC_DSA_FAILURESW","features":[3,110]},{"name":"DS_REPL_KCC_DSA_FAILUREW","features":[3,110]},{"name":"DS_REPL_KCC_DSA_FAILUREW_BLOB","features":[3,110]},{"name":"DS_REPL_NBR_COMPRESS_CHANGES","features":[110]},{"name":"DS_REPL_NBR_DISABLE_SCHEDULED_SYNC","features":[110]},{"name":"DS_REPL_NBR_DO_SCHEDULED_SYNCS","features":[110]},{"name":"DS_REPL_NBR_FULL_SYNC_IN_PROGRESS","features":[110]},{"name":"DS_REPL_NBR_FULL_SYNC_NEXT_PACKET","features":[110]},{"name":"DS_REPL_NBR_GCSPN","features":[110]},{"name":"DS_REPL_NBR_IGNORE_CHANGE_NOTIFICATIONS","features":[110]},{"name":"DS_REPL_NBR_NEVER_SYNCED","features":[110]},{"name":"DS_REPL_NBR_NONGC_RO_REPLICA","features":[110]},{"name":"DS_REPL_NBR_NO_CHANGE_NOTIFICATIONS","features":[110]},{"name":"DS_REPL_NBR_PARTIAL_ATTRIBUTE_SET","features":[110]},{"name":"DS_REPL_NBR_PREEMPTED","features":[110]},{"name":"DS_REPL_NBR_RETURN_OBJECT_PARENTS","features":[110]},{"name":"DS_REPL_NBR_SELECT_SECRETS","features":[110]},{"name":"DS_REPL_NBR_SYNC_ON_STARTUP","features":[110]},{"name":"DS_REPL_NBR_TWO_WAY_SYNC","features":[110]},{"name":"DS_REPL_NBR_USE_ASYNC_INTERSITE_TRANSPORT","features":[110]},{"name":"DS_REPL_NBR_WRITEABLE","features":[110]},{"name":"DS_REPL_NEIGHBORSW","features":[3,110]},{"name":"DS_REPL_NEIGHBORW","features":[3,110]},{"name":"DS_REPL_NEIGHBORW_BLOB","features":[3,110]},{"name":"DS_REPL_OBJ_META_DATA","features":[3,110]},{"name":"DS_REPL_OBJ_META_DATA_2","features":[3,110]},{"name":"DS_REPL_OPW","features":[3,110]},{"name":"DS_REPL_OPW_BLOB","features":[3,110]},{"name":"DS_REPL_OP_TYPE","features":[110]},{"name":"DS_REPL_OP_TYPE_ADD","features":[110]},{"name":"DS_REPL_OP_TYPE_DELETE","features":[110]},{"name":"DS_REPL_OP_TYPE_MODIFY","features":[110]},{"name":"DS_REPL_OP_TYPE_SYNC","features":[110]},{"name":"DS_REPL_OP_TYPE_UPDATE_REFS","features":[110]},{"name":"DS_REPL_PENDING_OPSW","features":[3,110]},{"name":"DS_REPL_QUEUE_STATISTICSW","features":[3,110]},{"name":"DS_REPL_VALUE_META_DATA","features":[3,110]},{"name":"DS_REPL_VALUE_META_DATA_2","features":[3,110]},{"name":"DS_REPL_VALUE_META_DATA_BLOB","features":[3,110]},{"name":"DS_REPL_VALUE_META_DATA_BLOB_EXT","features":[3,110]},{"name":"DS_REPL_VALUE_META_DATA_EXT","features":[3,110]},{"name":"DS_REPMOD_ASYNCHRONOUS_OPERATION","features":[110]},{"name":"DS_REPMOD_UPDATE_ADDRESS","features":[110]},{"name":"DS_REPMOD_UPDATE_FLAGS","features":[110]},{"name":"DS_REPMOD_UPDATE_INSTANCE","features":[110]},{"name":"DS_REPMOD_UPDATE_RESULT","features":[110]},{"name":"DS_REPMOD_UPDATE_SCHEDULE","features":[110]},{"name":"DS_REPMOD_UPDATE_TRANSPORT","features":[110]},{"name":"DS_REPMOD_WRITEABLE","features":[110]},{"name":"DS_REPSYNCALL_ABORT_IF_SERVER_UNAVAILABLE","features":[110]},{"name":"DS_REPSYNCALL_CROSS_SITE_BOUNDARIES","features":[110]},{"name":"DS_REPSYNCALL_DO_NOT_SYNC","features":[110]},{"name":"DS_REPSYNCALL_ERRINFOA","features":[110]},{"name":"DS_REPSYNCALL_ERRINFOW","features":[110]},{"name":"DS_REPSYNCALL_ERROR","features":[110]},{"name":"DS_REPSYNCALL_EVENT","features":[110]},{"name":"DS_REPSYNCALL_EVENT_ERROR","features":[110]},{"name":"DS_REPSYNCALL_EVENT_FINISHED","features":[110]},{"name":"DS_REPSYNCALL_EVENT_SYNC_COMPLETED","features":[110]},{"name":"DS_REPSYNCALL_EVENT_SYNC_STARTED","features":[110]},{"name":"DS_REPSYNCALL_ID_SERVERS_BY_DN","features":[110]},{"name":"DS_REPSYNCALL_NO_OPTIONS","features":[110]},{"name":"DS_REPSYNCALL_PUSH_CHANGES_OUTWARD","features":[110]},{"name":"DS_REPSYNCALL_SERVER_UNREACHABLE","features":[110]},{"name":"DS_REPSYNCALL_SKIP_INITIAL_CHECK","features":[110]},{"name":"DS_REPSYNCALL_SYNCA","features":[110]},{"name":"DS_REPSYNCALL_SYNCW","features":[110]},{"name":"DS_REPSYNCALL_SYNC_ADJACENT_SERVERS_ONLY","features":[110]},{"name":"DS_REPSYNCALL_UPDATEA","features":[110]},{"name":"DS_REPSYNCALL_UPDATEW","features":[110]},{"name":"DS_REPSYNCALL_WIN32_ERROR_CONTACTING_SERVER","features":[110]},{"name":"DS_REPSYNCALL_WIN32_ERROR_REPLICATING","features":[110]},{"name":"DS_REPSYNC_ABANDONED","features":[110]},{"name":"DS_REPSYNC_ADD_REFERENCE","features":[110]},{"name":"DS_REPSYNC_ASYNCHRONOUS_OPERATION","features":[110]},{"name":"DS_REPSYNC_ASYNCHRONOUS_REPLICA","features":[110]},{"name":"DS_REPSYNC_CRITICAL","features":[110]},{"name":"DS_REPSYNC_FORCE","features":[110]},{"name":"DS_REPSYNC_FULL","features":[110]},{"name":"DS_REPSYNC_FULL_IN_PROGRESS","features":[110]},{"name":"DS_REPSYNC_INITIAL","features":[110]},{"name":"DS_REPSYNC_INITIAL_IN_PROGRESS","features":[110]},{"name":"DS_REPSYNC_INTERSITE_MESSAGING","features":[110]},{"name":"DS_REPSYNC_NEVER_COMPLETED","features":[110]},{"name":"DS_REPSYNC_NEVER_NOTIFY","features":[110]},{"name":"DS_REPSYNC_NONGC_RO_REPLICA","features":[110]},{"name":"DS_REPSYNC_NOTIFICATION","features":[110]},{"name":"DS_REPSYNC_NO_DISCARD","features":[110]},{"name":"DS_REPSYNC_PARTIAL_ATTRIBUTE_SET","features":[110]},{"name":"DS_REPSYNC_PERIODIC","features":[110]},{"name":"DS_REPSYNC_PREEMPTED","features":[110]},{"name":"DS_REPSYNC_REQUEUE","features":[110]},{"name":"DS_REPSYNC_SELECT_SECRETS","features":[110]},{"name":"DS_REPSYNC_TWO_WAY","features":[110]},{"name":"DS_REPSYNC_URGENT","features":[110]},{"name":"DS_REPSYNC_USE_COMPRESSION","features":[110]},{"name":"DS_REPSYNC_WRITEABLE","features":[110]},{"name":"DS_REPUPD_ADD_REFERENCE","features":[110]},{"name":"DS_REPUPD_ASYNCHRONOUS_OPERATION","features":[110]},{"name":"DS_REPUPD_DELETE_REFERENCE","features":[110]},{"name":"DS_REPUPD_REFERENCE_GCSPN","features":[110]},{"name":"DS_REPUPD_WRITEABLE","features":[110]},{"name":"DS_RETURN_DNS_NAME","features":[110]},{"name":"DS_RETURN_FLAT_NAME","features":[110]},{"name":"DS_ROLE_DOMAIN_OWNER","features":[110]},{"name":"DS_ROLE_INFRASTRUCTURE_OWNER","features":[110]},{"name":"DS_ROLE_PDC_OWNER","features":[110]},{"name":"DS_ROLE_RID_OWNER","features":[110]},{"name":"DS_ROLE_SCHEMA_OWNER","features":[110]},{"name":"DS_SCHEMA_GUID_ATTR","features":[110]},{"name":"DS_SCHEMA_GUID_ATTR_SET","features":[110]},{"name":"DS_SCHEMA_GUID_CLASS","features":[110]},{"name":"DS_SCHEMA_GUID_CONTROL_RIGHT","features":[110]},{"name":"DS_SCHEMA_GUID_MAPA","features":[110]},{"name":"DS_SCHEMA_GUID_MAPW","features":[110]},{"name":"DS_SCHEMA_GUID_NOT_FOUND","features":[110]},{"name":"DS_SELECTION","features":[3,110,43,44]},{"name":"DS_SELECTION_LIST","features":[3,110,43,44]},{"name":"DS_SELECT_SECRET_DOMAIN_6_FLAG","features":[110]},{"name":"DS_SERVICE_PRINCIPAL_NAME","features":[110]},{"name":"DS_SID_OR_SID_HISTORY_NAME","features":[110]},{"name":"DS_SITE_COST_INFO","features":[110]},{"name":"DS_SPN_ADD_SPN_OP","features":[110]},{"name":"DS_SPN_DELETE_SPN_OP","features":[110]},{"name":"DS_SPN_DNS_HOST","features":[110]},{"name":"DS_SPN_DN_HOST","features":[110]},{"name":"DS_SPN_DOMAIN","features":[110]},{"name":"DS_SPN_NAME_TYPE","features":[110]},{"name":"DS_SPN_NB_DOMAIN","features":[110]},{"name":"DS_SPN_NB_HOST","features":[110]},{"name":"DS_SPN_REPLACE_SPN_OP","features":[110]},{"name":"DS_SPN_SERVICE","features":[110]},{"name":"DS_SPN_WRITE_OP","features":[110]},{"name":"DS_SYNCED_EVENT_NAME","features":[110]},{"name":"DS_SYNCED_EVENT_NAME_W","features":[110]},{"name":"DS_TIMESERV_FLAG","features":[110]},{"name":"DS_TIMESERV_REQUIRED","features":[110]},{"name":"DS_TRY_NEXTCLOSEST_SITE","features":[110]},{"name":"DS_UNIQUE_ID_NAME","features":[110]},{"name":"DS_UNKNOWN_NAME","features":[110]},{"name":"DS_USER_PRINCIPAL_NAME","features":[110]},{"name":"DS_WEB_SERVICE_REQUIRED","features":[110]},{"name":"DS_WRITABLE_FLAG","features":[110]},{"name":"DS_WRITABLE_REQUIRED","features":[110]},{"name":"DS_WS_FLAG","features":[110]},{"name":"DsAddSidHistoryA","features":[3,110]},{"name":"DsAddSidHistoryW","features":[3,110]},{"name":"DsAddressToSiteNamesA","features":[110,17]},{"name":"DsAddressToSiteNamesExA","features":[110,17]},{"name":"DsAddressToSiteNamesExW","features":[110,17]},{"name":"DsAddressToSiteNamesW","features":[110,17]},{"name":"DsBindA","features":[3,110]},{"name":"DsBindByInstanceA","features":[3,110]},{"name":"DsBindByInstanceW","features":[3,110]},{"name":"DsBindToISTGA","features":[3,110]},{"name":"DsBindToISTGW","features":[3,110]},{"name":"DsBindW","features":[3,110]},{"name":"DsBindWithCredA","features":[3,110]},{"name":"DsBindWithCredW","features":[3,110]},{"name":"DsBindWithSpnA","features":[3,110]},{"name":"DsBindWithSpnExA","features":[3,110]},{"name":"DsBindWithSpnExW","features":[3,110]},{"name":"DsBindWithSpnW","features":[3,110]},{"name":"DsBindingSetTimeout","features":[3,110]},{"name":"DsBrowseForContainerA","features":[3,110,111]},{"name":"DsBrowseForContainerW","features":[3,110,111]},{"name":"DsClientMakeSpnForTargetServerA","features":[110]},{"name":"DsClientMakeSpnForTargetServerW","features":[110]},{"name":"DsCrackNamesA","features":[3,110]},{"name":"DsCrackNamesW","features":[3,110]},{"name":"DsCrackSpn2A","features":[110]},{"name":"DsCrackSpn2W","features":[110]},{"name":"DsCrackSpn3W","features":[110]},{"name":"DsCrackSpn4W","features":[110]},{"name":"DsCrackSpnA","features":[110]},{"name":"DsCrackSpnW","features":[110]},{"name":"DsCrackUnquotedMangledRdnA","features":[3,110]},{"name":"DsCrackUnquotedMangledRdnW","features":[3,110]},{"name":"DsDeregisterDnsHostRecordsA","features":[110]},{"name":"DsDeregisterDnsHostRecordsW","features":[110]},{"name":"DsEnumerateDomainTrustsA","features":[110,6]},{"name":"DsEnumerateDomainTrustsW","features":[110,6]},{"name":"DsFreeDomainControllerInfoA","features":[110]},{"name":"DsFreeDomainControllerInfoW","features":[110]},{"name":"DsFreeNameResultA","features":[110]},{"name":"DsFreeNameResultW","features":[110]},{"name":"DsFreePasswordCredentials","features":[110]},{"name":"DsFreeSchemaGuidMapA","features":[110]},{"name":"DsFreeSchemaGuidMapW","features":[110]},{"name":"DsFreeSpnArrayA","features":[110]},{"name":"DsFreeSpnArrayW","features":[110]},{"name":"DsGetDcCloseW","features":[3,110]},{"name":"DsGetDcNameA","features":[110]},{"name":"DsGetDcNameW","features":[110]},{"name":"DsGetDcNextA","features":[3,110,17]},{"name":"DsGetDcNextW","features":[3,110,17]},{"name":"DsGetDcOpenA","features":[3,110]},{"name":"DsGetDcOpenW","features":[3,110]},{"name":"DsGetDcSiteCoverageA","features":[110]},{"name":"DsGetDcSiteCoverageW","features":[110]},{"name":"DsGetDomainControllerInfoA","features":[3,110]},{"name":"DsGetDomainControllerInfoW","features":[3,110]},{"name":"DsGetForestTrustInformationW","features":[110,25]},{"name":"DsGetFriendlyClassName","features":[110]},{"name":"DsGetIcon","features":[110,52]},{"name":"DsGetRdnW","features":[110]},{"name":"DsGetSiteNameA","features":[110]},{"name":"DsGetSiteNameW","features":[110]},{"name":"DsGetSpnA","features":[110]},{"name":"DsGetSpnW","features":[110]},{"name":"DsInheritSecurityIdentityA","features":[3,110]},{"name":"DsInheritSecurityIdentityW","features":[3,110]},{"name":"DsIsMangledDnA","features":[3,110]},{"name":"DsIsMangledDnW","features":[3,110]},{"name":"DsIsMangledRdnValueA","features":[3,110]},{"name":"DsIsMangledRdnValueW","features":[3,110]},{"name":"DsListDomainsInSiteA","features":[3,110]},{"name":"DsListDomainsInSiteW","features":[3,110]},{"name":"DsListInfoForServerA","features":[3,110]},{"name":"DsListInfoForServerW","features":[3,110]},{"name":"DsListRolesA","features":[3,110]},{"name":"DsListRolesW","features":[3,110]},{"name":"DsListServersForDomainInSiteA","features":[3,110]},{"name":"DsListServersForDomainInSiteW","features":[3,110]},{"name":"DsListServersInSiteA","features":[3,110]},{"name":"DsListServersInSiteW","features":[3,110]},{"name":"DsListSitesA","features":[3,110]},{"name":"DsListSitesW","features":[3,110]},{"name":"DsMakePasswordCredentialsA","features":[110]},{"name":"DsMakePasswordCredentialsW","features":[110]},{"name":"DsMakeSpnA","features":[110]},{"name":"DsMakeSpnW","features":[110]},{"name":"DsMapSchemaGuidsA","features":[3,110]},{"name":"DsMapSchemaGuidsW","features":[3,110]},{"name":"DsMergeForestTrustInformationW","features":[110,25]},{"name":"DsQuerySitesByCostA","features":[3,110]},{"name":"DsQuerySitesByCostW","features":[3,110]},{"name":"DsQuerySitesFree","features":[110]},{"name":"DsQuoteRdnValueA","features":[110]},{"name":"DsQuoteRdnValueW","features":[110]},{"name":"DsRemoveDsDomainA","features":[3,110]},{"name":"DsRemoveDsDomainW","features":[3,110]},{"name":"DsRemoveDsServerA","features":[3,110]},{"name":"DsRemoveDsServerW","features":[3,110]},{"name":"DsReplicaAddA","features":[3,110]},{"name":"DsReplicaAddW","features":[3,110]},{"name":"DsReplicaConsistencyCheck","features":[3,110]},{"name":"DsReplicaDelA","features":[3,110]},{"name":"DsReplicaDelW","features":[3,110]},{"name":"DsReplicaFreeInfo","features":[110]},{"name":"DsReplicaGetInfo2W","features":[3,110]},{"name":"DsReplicaGetInfoW","features":[3,110]},{"name":"DsReplicaModifyA","features":[3,110]},{"name":"DsReplicaModifyW","features":[3,110]},{"name":"DsReplicaSyncA","features":[3,110]},{"name":"DsReplicaSyncAllA","features":[3,110]},{"name":"DsReplicaSyncAllW","features":[3,110]},{"name":"DsReplicaSyncW","features":[3,110]},{"name":"DsReplicaUpdateRefsA","features":[3,110]},{"name":"DsReplicaUpdateRefsW","features":[3,110]},{"name":"DsReplicaVerifyObjectsA","features":[3,110]},{"name":"DsReplicaVerifyObjectsW","features":[3,110]},{"name":"DsRoleFreeMemory","features":[110]},{"name":"DsRoleGetPrimaryDomainInformation","features":[110]},{"name":"DsRoleOperationActive","features":[110]},{"name":"DsRoleOperationIdle","features":[110]},{"name":"DsRoleOperationNeedReboot","features":[110]},{"name":"DsRoleOperationState","features":[110]},{"name":"DsRolePrimaryDomainInfoBasic","features":[110]},{"name":"DsRoleServerBackup","features":[110]},{"name":"DsRoleServerPrimary","features":[110]},{"name":"DsRoleServerUnknown","features":[110]},{"name":"DsRoleUpgradeStatus","features":[110]},{"name":"DsRole_RoleBackupDomainController","features":[110]},{"name":"DsRole_RoleMemberServer","features":[110]},{"name":"DsRole_RoleMemberWorkstation","features":[110]},{"name":"DsRole_RolePrimaryDomainController","features":[110]},{"name":"DsRole_RoleStandaloneServer","features":[110]},{"name":"DsRole_RoleStandaloneWorkstation","features":[110]},{"name":"DsServerRegisterSpnA","features":[110]},{"name":"DsServerRegisterSpnW","features":[110]},{"name":"DsUnBindA","features":[3,110]},{"name":"DsUnBindW","features":[3,110]},{"name":"DsUnquoteRdnValueA","features":[110]},{"name":"DsUnquoteRdnValueW","features":[110]},{"name":"DsValidateSubnetNameA","features":[110]},{"name":"DsValidateSubnetNameW","features":[110]},{"name":"DsWriteAccountSpnA","features":[3,110]},{"name":"DsWriteAccountSpnW","features":[3,110]},{"name":"Email","features":[110]},{"name":"FACILITY_BACKUP","features":[110]},{"name":"FACILITY_NTDSB","features":[110]},{"name":"FACILITY_SYSTEM","features":[110]},{"name":"FLAG_DISABLABLE_OPTIONAL_FEATURE","features":[110]},{"name":"FLAG_DOMAIN_OPTIONAL_FEATURE","features":[110]},{"name":"FLAG_FOREST_OPTIONAL_FEATURE","features":[110]},{"name":"FLAG_SERVER_OPTIONAL_FEATURE","features":[110]},{"name":"FRSCONN_MAX_PRIORITY","features":[110]},{"name":"FRSCONN_PRIORITY_MASK","features":[110]},{"name":"FaxNumber","features":[110]},{"name":"FreeADsMem","features":[3,110]},{"name":"FreeADsStr","features":[3,110]},{"name":"GUID_COMPUTRS_CONTAINER_A","features":[110]},{"name":"GUID_COMPUTRS_CONTAINER_W","features":[110]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_A","features":[110]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_W","features":[110]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_A","features":[110]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_W","features":[110]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_A","features":[110]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_W","features":[110]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_A","features":[110]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_W","features":[110]},{"name":"GUID_KEYS_CONTAINER_W","features":[110]},{"name":"GUID_LOSTANDFOUND_CONTAINER_A","features":[110]},{"name":"GUID_LOSTANDFOUND_CONTAINER_W","features":[110]},{"name":"GUID_MANAGED_SERVICE_ACCOUNTS_CONTAINER_W","features":[110]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_A","features":[110]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_W","features":[110]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_A","features":[110]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_W","features":[110]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_A","features":[110]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_W","features":[110]},{"name":"GUID_PROGRAM_DATA_CONTAINER_A","features":[110]},{"name":"GUID_PROGRAM_DATA_CONTAINER_W","features":[110]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_A","features":[110]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_W","features":[110]},{"name":"GUID_SYSTEMS_CONTAINER_A","features":[110]},{"name":"GUID_SYSTEMS_CONTAINER_W","features":[110]},{"name":"GUID_USERS_CONTAINER_A","features":[110]},{"name":"GUID_USERS_CONTAINER_W","features":[110]},{"name":"Hold","features":[110]},{"name":"IADs","features":[110]},{"name":"IADsADSystemInfo","features":[110]},{"name":"IADsAccessControlEntry","features":[110]},{"name":"IADsAccessControlList","features":[110]},{"name":"IADsAcl","features":[110]},{"name":"IADsAggregatee","features":[110]},{"name":"IADsAggregator","features":[110]},{"name":"IADsBackLink","features":[110]},{"name":"IADsCaseIgnoreList","features":[110]},{"name":"IADsClass","features":[110]},{"name":"IADsCollection","features":[110]},{"name":"IADsComputer","features":[110]},{"name":"IADsComputerOperations","features":[110]},{"name":"IADsContainer","features":[110]},{"name":"IADsDNWithBinary","features":[110]},{"name":"IADsDNWithString","features":[110]},{"name":"IADsDeleteOps","features":[110]},{"name":"IADsDomain","features":[110]},{"name":"IADsEmail","features":[110]},{"name":"IADsExtension","features":[110]},{"name":"IADsFaxNumber","features":[110]},{"name":"IADsFileService","features":[110]},{"name":"IADsFileServiceOperations","features":[110]},{"name":"IADsFileShare","features":[110]},{"name":"IADsGroup","features":[110]},{"name":"IADsHold","features":[110]},{"name":"IADsLargeInteger","features":[110]},{"name":"IADsLocality","features":[110]},{"name":"IADsMembers","features":[110]},{"name":"IADsNameTranslate","features":[110]},{"name":"IADsNamespaces","features":[110]},{"name":"IADsNetAddress","features":[110]},{"name":"IADsO","features":[110]},{"name":"IADsOU","features":[110]},{"name":"IADsObjectOptions","features":[110]},{"name":"IADsOctetList","features":[110]},{"name":"IADsOpenDSObject","features":[110]},{"name":"IADsPath","features":[110]},{"name":"IADsPathname","features":[110]},{"name":"IADsPostalAddress","features":[110]},{"name":"IADsPrintJob","features":[110]},{"name":"IADsPrintJobOperations","features":[110]},{"name":"IADsPrintQueue","features":[110]},{"name":"IADsPrintQueueOperations","features":[110]},{"name":"IADsProperty","features":[110]},{"name":"IADsPropertyEntry","features":[110]},{"name":"IADsPropertyList","features":[110]},{"name":"IADsPropertyValue","features":[110]},{"name":"IADsPropertyValue2","features":[110]},{"name":"IADsReplicaPointer","features":[110]},{"name":"IADsResource","features":[110]},{"name":"IADsSecurityDescriptor","features":[110]},{"name":"IADsSecurityUtility","features":[110]},{"name":"IADsService","features":[110]},{"name":"IADsServiceOperations","features":[110]},{"name":"IADsSession","features":[110]},{"name":"IADsSyntax","features":[110]},{"name":"IADsTimestamp","features":[110]},{"name":"IADsTypedName","features":[110]},{"name":"IADsUser","features":[110]},{"name":"IADsWinNTSystemInfo","features":[110]},{"name":"ICommonQuery","features":[110]},{"name":"IDirectoryObject","features":[110]},{"name":"IDirectorySchemaMgmt","features":[110]},{"name":"IDirectorySearch","features":[110]},{"name":"IDsAdminCreateObj","features":[110]},{"name":"IDsAdminNewObj","features":[110]},{"name":"IDsAdminNewObjExt","features":[110]},{"name":"IDsAdminNewObjPrimarySite","features":[110]},{"name":"IDsAdminNotifyHandler","features":[110]},{"name":"IDsBrowseDomainTree","features":[110]},{"name":"IDsDisplaySpecifier","features":[110]},{"name":"IDsObjectPicker","features":[110]},{"name":"IDsObjectPickerCredentials","features":[110]},{"name":"IPersistQuery","features":[110]},{"name":"IPrivateDispatch","features":[110]},{"name":"IPrivateUnknown","features":[110]},{"name":"IQueryForm","features":[110]},{"name":"LPCQADDFORMSPROC","features":[3,110,52]},{"name":"LPCQADDPAGESPROC","features":[3,110,52]},{"name":"LPCQPAGEPROC","features":[3,110,52]},{"name":"LPDSENUMATTRIBUTES","features":[3,110]},{"name":"LargeInteger","features":[110]},{"name":"NTDSAPI_BIND_ALLOW_DELEGATION","features":[110]},{"name":"NTDSAPI_BIND_FIND_BINDING","features":[110]},{"name":"NTDSAPI_BIND_FORCE_KERBEROS","features":[110]},{"name":"NTDSCONN_KCC_GC_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_INTERSITE_GC_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_INTERSITE_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_MINIMIZE_HOPS_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_NO_REASON","features":[110]},{"name":"NTDSCONN_KCC_OSCILLATING_CONNECTION_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_REDUNDANT_SERVER_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_RING_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_SERVER_FAILOVER_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_SITE_FAILOVER_TOPOLOGY","features":[110]},{"name":"NTDSCONN_KCC_STALE_SERVERS_TOPOLOGY","features":[110]},{"name":"NTDSCONN_OPT_DISABLE_INTERSITE_COMPRESSION","features":[110]},{"name":"NTDSCONN_OPT_IGNORE_SCHEDULE_MASK","features":[110]},{"name":"NTDSCONN_OPT_IS_GENERATED","features":[110]},{"name":"NTDSCONN_OPT_OVERRIDE_NOTIFY_DEFAULT","features":[110]},{"name":"NTDSCONN_OPT_RODC_TOPOLOGY","features":[110]},{"name":"NTDSCONN_OPT_TWOWAY_SYNC","features":[110]},{"name":"NTDSCONN_OPT_USER_OWNED_SCHEDULE","features":[110]},{"name":"NTDSCONN_OPT_USE_NOTIFY","features":[110]},{"name":"NTDSDSA_OPT_BLOCK_RPC","features":[110]},{"name":"NTDSDSA_OPT_DISABLE_INBOUND_REPL","features":[110]},{"name":"NTDSDSA_OPT_DISABLE_NTDSCONN_XLATE","features":[110]},{"name":"NTDSDSA_OPT_DISABLE_OUTBOUND_REPL","features":[110]},{"name":"NTDSDSA_OPT_DISABLE_SPN_REGISTRATION","features":[110]},{"name":"NTDSDSA_OPT_GENERATE_OWN_TOPO","features":[110]},{"name":"NTDSDSA_OPT_IS_GC","features":[110]},{"name":"NTDSSETTINGS_DEFAULT_SERVER_REDUNDANCY","features":[110]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_W2K_ELECTION","features":[110]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_WHISTLER_BEHAVIOR","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_AUTO_TOPOLOGY_DISABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_GROUP_CACHING_ENABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_INTER_SITE_AUTO_TOPOLOGY_DISABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_RAND_BH_SELECTION_DISABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_REDUNDANT_SERVER_TOPOLOGY_ENABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_SCHEDULE_HASHING_ENABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_CLEANUP_DISABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_DETECT_STALE_DISABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_MIN_HOPS_DISABLED","features":[110]},{"name":"NTDSSETTINGS_OPT_W2K3_BRIDGES_REQUIRED","features":[110]},{"name":"NTDSSETTINGS_OPT_W2K3_IGNORE_SCHEDULES","features":[110]},{"name":"NTDSSITECONN_OPT_DISABLE_COMPRESSION","features":[110]},{"name":"NTDSSITECONN_OPT_TWOWAY_SYNC","features":[110]},{"name":"NTDSSITECONN_OPT_USE_NOTIFY","features":[110]},{"name":"NTDSSITELINK_OPT_DISABLE_COMPRESSION","features":[110]},{"name":"NTDSSITELINK_OPT_TWOWAY_SYNC","features":[110]},{"name":"NTDSSITELINK_OPT_USE_NOTIFY","features":[110]},{"name":"NTDSTRANSPORT_OPT_BRIDGES_REQUIRED","features":[110]},{"name":"NTDSTRANSPORT_OPT_IGNORE_SCHEDULES","features":[110]},{"name":"NameTranslate","features":[110]},{"name":"NetAddress","features":[110]},{"name":"OPENQUERYWINDOW","features":[110]},{"name":"OQWF_DEFAULTFORM","features":[110]},{"name":"OQWF_HIDEMENUS","features":[110]},{"name":"OQWF_HIDESEARCHUI","features":[110]},{"name":"OQWF_ISSUEONOPEN","features":[110]},{"name":"OQWF_LOADQUERY","features":[110]},{"name":"OQWF_OKCANCEL","features":[110]},{"name":"OQWF_PARAMISPROPERTYBAG","features":[110]},{"name":"OQWF_REMOVEFORMS","features":[110]},{"name":"OQWF_REMOVESCOPES","features":[110]},{"name":"OQWF_SAVEQUERYONOK","features":[110]},{"name":"OQWF_SHOWOPTIONAL","features":[110]},{"name":"OQWF_SINGLESELECT","features":[110]},{"name":"OctetList","features":[110]},{"name":"Path","features":[110]},{"name":"Pathname","features":[110]},{"name":"PostalAddress","features":[110]},{"name":"PropVariantToAdsType","features":[3,110,43,44]},{"name":"PropertyEntry","features":[110]},{"name":"PropertyValue","features":[110]},{"name":"QUERYFORM_CHANGESFORMLIST","features":[110]},{"name":"QUERYFORM_CHANGESOPTFORMLIST","features":[110]},{"name":"ReallocADsMem","features":[110]},{"name":"ReallocADsStr","features":[3,110]},{"name":"ReplicaPointer","features":[110]},{"name":"SCHEDULE","features":[110]},{"name":"SCHEDULE_BANDWIDTH","features":[110]},{"name":"SCHEDULE_HEADER","features":[110]},{"name":"SCHEDULE_INTERVAL","features":[110]},{"name":"SCHEDULE_PRIORITY","features":[110]},{"name":"SecurityDescriptor","features":[110]},{"name":"SecurityDescriptorToBinarySD","features":[3,110,6,43,44]},{"name":"Timestamp","features":[110]},{"name":"TypedName","features":[110]},{"name":"WM_ADSPROP_NOTIFY_APPLY","features":[110]},{"name":"WM_ADSPROP_NOTIFY_CHANGE","features":[110]},{"name":"WM_ADSPROP_NOTIFY_ERROR","features":[110]},{"name":"WM_ADSPROP_NOTIFY_EXIT","features":[110]},{"name":"WM_ADSPROP_NOTIFY_FOREGROUND","features":[110]},{"name":"WM_ADSPROP_NOTIFY_PAGEHWND","features":[110]},{"name":"WM_ADSPROP_NOTIFY_PAGEINIT","features":[110]},{"name":"WM_ADSPROP_NOTIFY_SETFOCUS","features":[110]},{"name":"WinNTSystemInfo","features":[110]},{"name":"hrAccessDenied","features":[110]},{"name":"hrAfterInitialization","features":[110]},{"name":"hrAlreadyInitialized","features":[110]},{"name":"hrAlreadyOpen","features":[110]},{"name":"hrAlreadyPrepared","features":[110]},{"name":"hrBFInUse","features":[110]},{"name":"hrBFNotSynchronous","features":[110]},{"name":"hrBFPageNotFound","features":[110]},{"name":"hrBackupDirectoryNotEmpty","features":[110]},{"name":"hrBackupInProgress","features":[110]},{"name":"hrBackupNotAllowedYet","features":[110]},{"name":"hrBadBackupDatabaseSize","features":[110]},{"name":"hrBadCheckpointSignature","features":[110]},{"name":"hrBadColumnId","features":[110]},{"name":"hrBadDbSignature","features":[110]},{"name":"hrBadItagSequence","features":[110]},{"name":"hrBadLogSignature","features":[110]},{"name":"hrBadLogVersion","features":[110]},{"name":"hrBufferTooSmall","features":[110]},{"name":"hrBufferTruncated","features":[110]},{"name":"hrCannotBeTagged","features":[110]},{"name":"hrCannotRename","features":[110]},{"name":"hrCheckpointCorrupt","features":[110]},{"name":"hrCircularLogging","features":[110]},{"name":"hrColumn2ndSysMaint","features":[110]},{"name":"hrColumnCannotIndex","features":[110]},{"name":"hrColumnDoesNotFit","features":[110]},{"name":"hrColumnDuplicate","features":[110]},{"name":"hrColumnInUse","features":[110]},{"name":"hrColumnIndexed","features":[110]},{"name":"hrColumnLong","features":[110]},{"name":"hrColumnMaxTruncated","features":[110]},{"name":"hrColumnNotFound","features":[110]},{"name":"hrColumnNotUpdatable","features":[110]},{"name":"hrColumnNull","features":[110]},{"name":"hrColumnSetNull","features":[110]},{"name":"hrColumnTooBig","features":[110]},{"name":"hrCommunicationError","features":[110]},{"name":"hrConsistentTimeMismatch","features":[110]},{"name":"hrContainerNotEmpty","features":[110]},{"name":"hrContentsExpired","features":[110]},{"name":"hrCouldNotConnect","features":[110]},{"name":"hrCreateIndexFailed","features":[110]},{"name":"hrCurrencyStackOutOfMemory","features":[110]},{"name":"hrDatabaseAttached","features":[110]},{"name":"hrDatabaseCorrupted","features":[110]},{"name":"hrDatabaseDuplicate","features":[110]},{"name":"hrDatabaseInUse","features":[110]},{"name":"hrDatabaseInconsistent","features":[110]},{"name":"hrDatabaseInvalidName","features":[110]},{"name":"hrDatabaseInvalidPages","features":[110]},{"name":"hrDatabaseLocked","features":[110]},{"name":"hrDatabaseNotFound","features":[110]},{"name":"hrDeleteBackupFileFail","features":[110]},{"name":"hrDensityInvalid","features":[110]},{"name":"hrDiskFull","features":[110]},{"name":"hrDiskIO","features":[110]},{"name":"hrError","features":[110]},{"name":"hrExistingLogFileHasBadSignature","features":[110]},{"name":"hrExistingLogFileIsNotContiguous","features":[110]},{"name":"hrFLDKeyTooBig","features":[110]},{"name":"hrFLDNullKey","features":[110]},{"name":"hrFLDTooManySegments","features":[110]},{"name":"hrFeatureNotAvailable","features":[110]},{"name":"hrFileAccessDenied","features":[110]},{"name":"hrFileClose","features":[110]},{"name":"hrFileNotFound","features":[110]},{"name":"hrFileOpenReadOnly","features":[110]},{"name":"hrFullBackupNotTaken","features":[110]},{"name":"hrGivenLogFileHasBadSignature","features":[110]},{"name":"hrGivenLogFileIsNotContiguous","features":[110]},{"name":"hrIllegalOperation","features":[110]},{"name":"hrInTransaction","features":[110]},{"name":"hrIncrementalBackupDisabled","features":[110]},{"name":"hrIndexCantBuild","features":[110]},{"name":"hrIndexDuplicate","features":[110]},{"name":"hrIndexHasClustered","features":[110]},{"name":"hrIndexHasPrimary","features":[110]},{"name":"hrIndexInUse","features":[110]},{"name":"hrIndexInvalidDef","features":[110]},{"name":"hrIndexMustStay","features":[110]},{"name":"hrIndexNotFound","features":[110]},{"name":"hrInvalidBackup","features":[110]},{"name":"hrInvalidBackupSequence","features":[110]},{"name":"hrInvalidBookmark","features":[110]},{"name":"hrInvalidBufferSize","features":[110]},{"name":"hrInvalidCodePage","features":[110]},{"name":"hrInvalidColumnType","features":[110]},{"name":"hrInvalidCountry","features":[110]},{"name":"hrInvalidDatabase","features":[110]},{"name":"hrInvalidDatabaseId","features":[110]},{"name":"hrInvalidFilename","features":[110]},{"name":"hrInvalidHandle","features":[110]},{"name":"hrInvalidLanguageId","features":[110]},{"name":"hrInvalidLogSequence","features":[110]},{"name":"hrInvalidName","features":[110]},{"name":"hrInvalidObject","features":[110]},{"name":"hrInvalidOnSort","features":[110]},{"name":"hrInvalidOperation","features":[110]},{"name":"hrInvalidParam","features":[110]},{"name":"hrInvalidParameter","features":[110]},{"name":"hrInvalidPath","features":[110]},{"name":"hrInvalidRecips","features":[110]},{"name":"hrInvalidSesid","features":[110]},{"name":"hrInvalidTableId","features":[110]},{"name":"hrKeyChanged","features":[110]},{"name":"hrKeyDuplicate","features":[110]},{"name":"hrKeyIsMade","features":[110]},{"name":"hrKeyNotMade","features":[110]},{"name":"hrLogBufferTooSmall","features":[110]},{"name":"hrLogCorrupted","features":[110]},{"name":"hrLogDiskFull","features":[110]},{"name":"hrLogFileCorrupt","features":[110]},{"name":"hrLogFileNotFound","features":[110]},{"name":"hrLogSequenceEnd","features":[110]},{"name":"hrLogWriteFail","features":[110]},{"name":"hrLoggingDisabled","features":[110]},{"name":"hrMakeBackupDirectoryFail","features":[110]},{"name":"hrMissingExpiryToken","features":[110]},{"name":"hrMissingFullBackup","features":[110]},{"name":"hrMissingLogFile","features":[110]},{"name":"hrMissingPreviousLogFile","features":[110]},{"name":"hrMissingRestoreLogFiles","features":[110]},{"name":"hrNoBackup","features":[110]},{"name":"hrNoBackupDirectory","features":[110]},{"name":"hrNoCurrentIndex","features":[110]},{"name":"hrNoCurrentRecord","features":[110]},{"name":"hrNoFullRestore","features":[110]},{"name":"hrNoIdleActivity","features":[110]},{"name":"hrNoWriteLock","features":[110]},{"name":"hrNone","features":[110]},{"name":"hrNotInTransaction","features":[110]},{"name":"hrNotInitialized","features":[110]},{"name":"hrNullInvalid","features":[110]},{"name":"hrNullKeyDisallowed","features":[110]},{"name":"hrNyi","features":[110]},{"name":"hrObjectDuplicate","features":[110]},{"name":"hrObjectNotFound","features":[110]},{"name":"hrOutOfBuffers","features":[110]},{"name":"hrOutOfCursors","features":[110]},{"name":"hrOutOfDatabaseSpace","features":[110]},{"name":"hrOutOfFileHandles","features":[110]},{"name":"hrOutOfMemory","features":[110]},{"name":"hrOutOfSessions","features":[110]},{"name":"hrOutOfThreads","features":[110]},{"name":"hrPMRecDeleted","features":[110]},{"name":"hrPatchFileMismatch","features":[110]},{"name":"hrPermissionDenied","features":[110]},{"name":"hrReadVerifyFailure","features":[110]},{"name":"hrRecordClusteredChanged","features":[110]},{"name":"hrRecordDeleted","features":[110]},{"name":"hrRecordNotFound","features":[110]},{"name":"hrRecordTooBig","features":[110]},{"name":"hrRecoveredWithErrors","features":[110]},{"name":"hrRemainingVersions","features":[110]},{"name":"hrRestoreInProgress","features":[110]},{"name":"hrRestoreLogTooHigh","features":[110]},{"name":"hrRestoreLogTooLow","features":[110]},{"name":"hrRestoreMapExists","features":[110]},{"name":"hrSeekNotEqual","features":[110]},{"name":"hrSessionWriteConflict","features":[110]},{"name":"hrTableDuplicate","features":[110]},{"name":"hrTableEmpty","features":[110]},{"name":"hrTableInUse","features":[110]},{"name":"hrTableLocked","features":[110]},{"name":"hrTableNotEmpty","features":[110]},{"name":"hrTaggedNotNULL","features":[110]},{"name":"hrTempFileOpenError","features":[110]},{"name":"hrTermInProgress","features":[110]},{"name":"hrTooManyActiveUsers","features":[110]},{"name":"hrTooManyAttachedDatabases","features":[110]},{"name":"hrTooManyColumns","features":[110]},{"name":"hrTooManyIO","features":[110]},{"name":"hrTooManyIndexes","features":[110]},{"name":"hrTooManyKeys","features":[110]},{"name":"hrTooManyOpenDatabases","features":[110]},{"name":"hrTooManyOpenIndexes","features":[110]},{"name":"hrTooManyOpenTables","features":[110]},{"name":"hrTooManySorts","features":[110]},{"name":"hrTransTooDeep","features":[110]},{"name":"hrUnknownExpiryTokenFormat","features":[110]},{"name":"hrUpdateNotPrepared","features":[110]},{"name":"hrVersionStoreOutOfMemory","features":[110]},{"name":"hrWriteConflict","features":[110]},{"name":"hrerrDataHasChanged","features":[110]},{"name":"hrwrnDataHasChanged","features":[110]}],"471":[{"name":"AddClusterGroupDependency","features":[112]},{"name":"AddClusterGroupDependencyEx","features":[112]},{"name":"AddClusterGroupSetDependency","features":[112]},{"name":"AddClusterGroupSetDependencyEx","features":[112]},{"name":"AddClusterGroupToGroupSetDependency","features":[112]},{"name":"AddClusterGroupToGroupSetDependencyEx","features":[112]},{"name":"AddClusterNode","features":[3,112]},{"name":"AddClusterNodeEx","features":[3,112]},{"name":"AddClusterResourceDependency","features":[112]},{"name":"AddClusterResourceDependencyEx","features":[112]},{"name":"AddClusterResourceNode","features":[112]},{"name":"AddClusterResourceNodeEx","features":[112]},{"name":"AddClusterStorageNode","features":[3,112]},{"name":"AddCrossClusterGroupSetDependency","features":[112]},{"name":"AddResourceToClusterSharedVolumes","features":[112]},{"name":"BackupClusterDatabase","features":[112]},{"name":"BitLockerDecrypted","features":[112]},{"name":"BitLockerDecrypting","features":[112]},{"name":"BitLockerEnabled","features":[112]},{"name":"BitLockerPaused","features":[112]},{"name":"BitLockerStopped","features":[112]},{"name":"BitlockerEncrypted","features":[112]},{"name":"BitlockerEncrypting","features":[112]},{"name":"CA_UPGRADE_VERSION","features":[112]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT","features":[112]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT_EX","features":[112]},{"name":"CLCTL_ADD_DEPENDENCY","features":[112]},{"name":"CLCTL_ADD_OWNER","features":[112]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT","features":[112]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_32BIT","features":[112]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_64BIT","features":[112]},{"name":"CLCTL_BATCH_BLOCK_KEY","features":[112]},{"name":"CLCTL_BATCH_UNBLOCK_KEY","features":[112]},{"name":"CLCTL_BLOCK_GEM_SEND_RECV","features":[112]},{"name":"CLCTL_CHECK_DRAIN_VETO","features":[112]},{"name":"CLCTL_CHECK_VOTER_DOWN","features":[112]},{"name":"CLCTL_CHECK_VOTER_DOWN_WITNESS","features":[112]},{"name":"CLCTL_CHECK_VOTER_EVICT","features":[112]},{"name":"CLCTL_CHECK_VOTER_EVICT_WITNESS","features":[112]},{"name":"CLCTL_CLEAR_NODE_CONNECTION_INFO","features":[112]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[112]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[112]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[112]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[112]},{"name":"CLCTL_CLUSTER_BASE","features":[112]},{"name":"CLCTL_CLUSTER_NAME_CHANGED","features":[112]},{"name":"CLCTL_CLUSTER_VERSION_CHANGED","features":[112]},{"name":"CLCTL_CODES","features":[112]},{"name":"CLCTL_DELETE","features":[112]},{"name":"CLCTL_DELETE_CRYPTO_CHECKPOINT","features":[112]},{"name":"CLCTL_DELETE_REGISTRY_CHECKPOINT","features":[112]},{"name":"CLCTL_DISABLE_SHARED_VOLUME_DIRECTIO","features":[112]},{"name":"CLCTL_ENABLE_SHARED_VOLUME_DIRECTIO","features":[112]},{"name":"CLCTL_ENUM_AFFINITY_RULE_NAMES","features":[112]},{"name":"CLCTL_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLCTL_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLCTL_EVICT_NODE","features":[112]},{"name":"CLCTL_FILESERVER_SHARE_ADD","features":[112]},{"name":"CLCTL_FILESERVER_SHARE_DEL","features":[112]},{"name":"CLCTL_FILESERVER_SHARE_MODIFY","features":[112]},{"name":"CLCTL_FILESERVER_SHARE_REPORT","features":[112]},{"name":"CLCTL_FIXUP_ON_UPGRADE","features":[112]},{"name":"CLCTL_FORCE_DB_FLUSH","features":[112]},{"name":"CLCTL_FORCE_QUORUM","features":[112]},{"name":"CLCTL_FSWITNESS_GET_EPOCH_INFO","features":[112]},{"name":"CLCTL_FSWITNESS_RELEASE_LOCK","features":[112]},{"name":"CLCTL_FSWITNESS_SET_EPOCH_INFO","features":[112]},{"name":"CLCTL_GET_ARB_TIMEOUT","features":[112]},{"name":"CLCTL_GET_CHARACTERISTICS","features":[112]},{"name":"CLCTL_GET_CLASS_INFO","features":[112]},{"name":"CLCTL_GET_CLUSDB_TIMESTAMP","features":[112]},{"name":"CLCTL_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[112]},{"name":"CLCTL_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLCTL_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLCTL_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[112]},{"name":"CLCTL_GET_CRYPTO_CHECKPOINTS","features":[112]},{"name":"CLCTL_GET_DNS_NAME","features":[112]},{"name":"CLCTL_GET_FAILURE_INFO","features":[112]},{"name":"CLCTL_GET_FLAGS","features":[112]},{"name":"CLCTL_GET_FQDN","features":[112]},{"name":"CLCTL_GET_GEMID_VECTOR","features":[112]},{"name":"CLCTL_GET_GUM_LOCK_OWNER","features":[112]},{"name":"CLCTL_GET_ID","features":[112]},{"name":"CLCTL_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[112]},{"name":"CLCTL_GET_LOADBAL_PROCESS_LIST","features":[112]},{"name":"CLCTL_GET_NAME","features":[112]},{"name":"CLCTL_GET_NETWORK","features":[112]},{"name":"CLCTL_GET_NETWORK_NAME","features":[112]},{"name":"CLCTL_GET_NODE","features":[112]},{"name":"CLCTL_GET_NODES_IN_FD","features":[112]},{"name":"CLCTL_GET_OPERATION_CONTEXT","features":[112]},{"name":"CLCTL_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLCTL_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLCTL_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[112]},{"name":"CLCTL_GET_REGISTRY_CHECKPOINTS","features":[112]},{"name":"CLCTL_GET_REQUIRED_DEPENDENCIES","features":[112]},{"name":"CLCTL_GET_RESOURCE_TYPE","features":[112]},{"name":"CLCTL_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLCTL_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLCTL_GET_SHARED_VOLUME_ID","features":[112]},{"name":"CLCTL_GET_STATE_CHANGE_TIME","features":[112]},{"name":"CLCTL_GET_STORAGE_CONFIGURATION","features":[112]},{"name":"CLCTL_GET_STORAGE_CONFIG_ATTRIBUTES","features":[112]},{"name":"CLCTL_GET_STUCK_NODES","features":[112]},{"name":"CLCTL_GLOBAL_SHIFT","features":[112]},{"name":"CLCTL_GROUPSET_GET_GROUPS","features":[112]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[112]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[112]},{"name":"CLCTL_GROUP_GET_LAST_MOVE_TIME","features":[112]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPS","features":[112]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[112]},{"name":"CLCTL_GROUP_SET_CCF_FROM_MASTER","features":[112]},{"name":"CLCTL_HOLD_IO","features":[112]},{"name":"CLCTL_INITIALIZE","features":[112]},{"name":"CLCTL_INJECT_GEM_FAULT","features":[112]},{"name":"CLCTL_INSTALL_NODE","features":[112]},{"name":"CLCTL_INTERNAL_SHIFT","features":[112]},{"name":"CLCTL_INTRODUCE_GEM_REPAIR_DELAY","features":[112]},{"name":"CLCTL_IPADDRESS_RELEASE_LEASE","features":[112]},{"name":"CLCTL_IPADDRESS_RENEW_LEASE","features":[112]},{"name":"CLCTL_IS_FEATURE_INSTALLED","features":[112]},{"name":"CLCTL_IS_QUORUM_BLOCKED","features":[112]},{"name":"CLCTL_IS_S2D_FEATURE_SUPPORTED","features":[112]},{"name":"CLCTL_JOINING_GROUP","features":[112]},{"name":"CLCTL_LEAVING_GROUP","features":[112]},{"name":"CLCTL_MODIFY_SHIFT","features":[112]},{"name":"CLCTL_NETNAME_CREDS_NOTIFYCAM","features":[112]},{"name":"CLCTL_NETNAME_DELETE_CO","features":[112]},{"name":"CLCTL_NETNAME_GET_OU_FOR_VCO","features":[112]},{"name":"CLCTL_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[112]},{"name":"CLCTL_NETNAME_REGISTER_DNS_RECORDS","features":[112]},{"name":"CLCTL_NETNAME_REPAIR_VCO","features":[112]},{"name":"CLCTL_NETNAME_RESET_VCO","features":[112]},{"name":"CLCTL_NETNAME_SET_PWD_INFO","features":[112]},{"name":"CLCTL_NETNAME_SET_PWD_INFOEX","features":[112]},{"name":"CLCTL_NETNAME_VALIDATE_VCO","features":[112]},{"name":"CLCTL_NOTIFY_DRAIN_COMPLETE","features":[112]},{"name":"CLCTL_NOTIFY_INFRASTRUCTURE_SOFS_CHANGED","features":[112]},{"name":"CLCTL_NOTIFY_MONITOR_SHUTTING_DOWN","features":[112]},{"name":"CLCTL_NOTIFY_OWNER_CHANGE","features":[112]},{"name":"CLCTL_NOTIFY_QUORUM_STATUS","features":[112]},{"name":"CLCTL_POOL_GET_DRIVE_INFO","features":[112]},{"name":"CLCTL_PROVIDER_STATE_CHANGE","features":[112]},{"name":"CLCTL_QUERY_DELETE","features":[112]},{"name":"CLCTL_QUERY_MAINTENANCE_MODE","features":[112]},{"name":"CLCTL_RELOAD_AUTOLOGGER_CONFIG","features":[112]},{"name":"CLCTL_REMOVE_DEPENDENCY","features":[112]},{"name":"CLCTL_REMOVE_NODE","features":[112]},{"name":"CLCTL_REMOVE_OWNER","features":[112]},{"name":"CLCTL_REPLICATION_ADD_REPLICATION_GROUP","features":[112]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[112]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[112]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[112]},{"name":"CLCTL_REPLICATION_GET_LOG_INFO","features":[112]},{"name":"CLCTL_REPLICATION_GET_LOG_VOLUME","features":[112]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_DISKS","features":[112]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[112]},{"name":"CLCTL_REPLICATION_GET_REPLICA_VOLUMES","features":[112]},{"name":"CLCTL_REPLICATION_GET_RESOURCE_GROUP","features":[112]},{"name":"CLCTL_RESOURCE_PREPARE_UPGRADE","features":[112]},{"name":"CLCTL_RESOURCE_UPGRADE_COMPLETED","features":[112]},{"name":"CLCTL_RESOURCE_UPGRADE_DLL","features":[112]},{"name":"CLCTL_RESUME_IO","features":[112]},{"name":"CLCTL_RW_MODIFY_NOOP","features":[112]},{"name":"CLCTL_SCALEOUT_COMMAND","features":[112]},{"name":"CLCTL_SCALEOUT_CONTROL","features":[112]},{"name":"CLCTL_SCALEOUT_GET_CLUSTERS","features":[112]},{"name":"CLCTL_SEND_DUMMY_GEM_MESSAGES","features":[112]},{"name":"CLCTL_SET_ACCOUNT_ACCESS","features":[112]},{"name":"CLCTL_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[112]},{"name":"CLCTL_SET_CLUSTER_S2D_ENABLED","features":[112]},{"name":"CLCTL_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLCTL_SET_CSV_MAINTENANCE_MODE","features":[112]},{"name":"CLCTL_SET_DNS_DOMAIN","features":[112]},{"name":"CLCTL_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[112]},{"name":"CLCTL_SET_MAINTENANCE_MODE","features":[112]},{"name":"CLCTL_SET_NAME","features":[112]},{"name":"CLCTL_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLCTL_SET_SHARED_VOLUME_BACKUP_MODE","features":[112]},{"name":"CLCTL_SET_STORAGE_CONFIGURATION","features":[112]},{"name":"CLCTL_SHUTDOWN","features":[112]},{"name":"CLCTL_STARTING_PHASE1","features":[112]},{"name":"CLCTL_STARTING_PHASE2","features":[112]},{"name":"CLCTL_STATE_CHANGE_REASON","features":[112]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS","features":[112]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX","features":[112]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[112]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHINFO","features":[112]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHS","features":[112]},{"name":"CLCTL_STORAGE_GET_CLUSPORT_DISK_COUNT","features":[112]},{"name":"CLCTL_STORAGE_GET_DIRTY","features":[112]},{"name":"CLCTL_STORAGE_GET_DISKID","features":[112]},{"name":"CLCTL_STORAGE_GET_DISK_INFO","features":[112]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX","features":[112]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX2","features":[112]},{"name":"CLCTL_STORAGE_GET_DISK_NUMBER_INFO","features":[112]},{"name":"CLCTL_STORAGE_GET_DRIVELETTERS","features":[112]},{"name":"CLCTL_STORAGE_GET_MOUNTPOINTS","features":[112]},{"name":"CLCTL_STORAGE_GET_PHYSICAL_DISK_INFO","features":[112]},{"name":"CLCTL_STORAGE_GET_RESOURCEID","features":[112]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_INFO","features":[112]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[112]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_STATES","features":[112]},{"name":"CLCTL_STORAGE_IS_CLUSTERABLE","features":[112]},{"name":"CLCTL_STORAGE_IS_CSV_FILE","features":[112]},{"name":"CLCTL_STORAGE_IS_PATH_VALID","features":[112]},{"name":"CLCTL_STORAGE_IS_SHARED_VOLUME","features":[112]},{"name":"CLCTL_STORAGE_REMAP_DRIVELETTER","features":[112]},{"name":"CLCTL_STORAGE_REMOVE_VM_OWNERSHIP","features":[112]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME","features":[112]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[112]},{"name":"CLCTL_STORAGE_SET_DRIVELETTER","features":[112]},{"name":"CLCTL_STORAGE_SYNC_CLUSDISK_DB","features":[112]},{"name":"CLCTL_UNDELETE","features":[112]},{"name":"CLCTL_UNKNOWN","features":[112]},{"name":"CLCTL_USER_SHIFT","features":[112]},{"name":"CLCTL_VALIDATE_CHANGE_GROUP","features":[112]},{"name":"CLCTL_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLCTL_VALIDATE_DIRECTORY","features":[112]},{"name":"CLCTL_VALIDATE_NETNAME","features":[112]},{"name":"CLCTL_VALIDATE_PATH","features":[112]},{"name":"CLCTL_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLOUD_WITNESS_CONTAINER_NAME","features":[112]},{"name":"CLRES_CALLBACK_FUNCTION_TABLE","features":[3,112]},{"name":"CLRES_FUNCTION_TABLE","features":[3,112,51]},{"name":"CLRES_V1_FUNCTIONS","features":[3,112,51]},{"name":"CLRES_V2_FUNCTIONS","features":[3,112,51]},{"name":"CLRES_V3_FUNCTIONS","features":[3,112,51]},{"name":"CLRES_V4_FUNCTIONS","features":[3,112,51]},{"name":"CLRES_VERSION_V1_00","features":[112]},{"name":"CLRES_VERSION_V2_00","features":[112]},{"name":"CLRES_VERSION_V3_00","features":[112]},{"name":"CLRES_VERSION_V4_00","features":[112]},{"name":"CLUADMEX_OBJECT_TYPE","features":[112]},{"name":"CLUADMEX_OT_CLUSTER","features":[112]},{"name":"CLUADMEX_OT_GROUP","features":[112]},{"name":"CLUADMEX_OT_NETINTERFACE","features":[112]},{"name":"CLUADMEX_OT_NETWORK","features":[112]},{"name":"CLUADMEX_OT_NODE","features":[112]},{"name":"CLUADMEX_OT_NONE","features":[112]},{"name":"CLUADMEX_OT_RESOURCE","features":[112]},{"name":"CLUADMEX_OT_RESOURCETYPE","features":[112]},{"name":"CLUSAPI_CHANGE_ACCESS","features":[112]},{"name":"CLUSAPI_CHANGE_RESOURCE_GROUP_FORCE_MOVE_TO_CSV","features":[112]},{"name":"CLUSAPI_GROUP_MOVE_FAILBACK","features":[112]},{"name":"CLUSAPI_GROUP_MOVE_HIGH_PRIORITY_START","features":[112]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_AFFINITY_RULE","features":[112]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_RESOURCE_STATUS","features":[112]},{"name":"CLUSAPI_GROUP_MOVE_QUEUE_ENABLED","features":[112]},{"name":"CLUSAPI_GROUP_MOVE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[112]},{"name":"CLUSAPI_GROUP_OFFLINE_IGNORE_RESOURCE_STATUS","features":[112]},{"name":"CLUSAPI_GROUP_ONLINE_BEST_POSSIBLE_NODE","features":[112]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_AFFINITY_RULE","features":[112]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_RESOURCE_STATUS","features":[112]},{"name":"CLUSAPI_GROUP_ONLINE_SYNCHRONOUS","features":[112]},{"name":"CLUSAPI_NODE_AVOID_PLACEMENT","features":[112]},{"name":"CLUSAPI_NODE_PAUSE_REMAIN_ON_PAUSED_NODE_ON_MOVE_ERROR","features":[112]},{"name":"CLUSAPI_NODE_PAUSE_RETRY_DRAIN_ON_FAILURE","features":[112]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_PINNED_VMS_ONLY","features":[112]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_STORAGE","features":[112]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_VMS","features":[112]},{"name":"CLUSAPI_NO_ACCESS","features":[112]},{"name":"CLUSAPI_READ_ACCESS","features":[112]},{"name":"CLUSAPI_REASON_HANDLER","features":[3,112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_FORCE_WITH_TERMINATION","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_IGNORE_RESOURCE_STATUS","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_DELETED","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_RESTARTED","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_MOVING","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_NONE","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_PREEMPTED","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_SHUTTING_DOWN","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_UNKNOWN","features":[112]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_USER_REQUESTED","features":[112]},{"name":"CLUSAPI_RESOURCE_ONLINE_BEST_POSSIBLE_NODE","features":[112]},{"name":"CLUSAPI_RESOURCE_ONLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[112]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_AFFINITY_RULE","features":[112]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_RESOURCE_STATUS","features":[112]},{"name":"CLUSAPI_RESOURCE_ONLINE_NECESSARY_FOR_QUORUM","features":[112]},{"name":"CLUSAPI_VALID_CHANGE_RESOURCE_GROUP_FLAGS","features":[112]},{"name":"CLUSAPI_VERSION","features":[112]},{"name":"CLUSAPI_VERSION_NI","features":[112]},{"name":"CLUSAPI_VERSION_RS3","features":[112]},{"name":"CLUSAPI_VERSION_SERVER2008","features":[112]},{"name":"CLUSAPI_VERSION_SERVER2008R2","features":[112]},{"name":"CLUSAPI_VERSION_WINDOWS8","features":[112]},{"name":"CLUSAPI_VERSION_WINDOWSBLUE","features":[112]},{"name":"CLUSAPI_VERSION_WINTHRESHOLD","features":[112]},{"name":"CLUSCTL_ACCESS_MODE_MASK","features":[112]},{"name":"CLUSCTL_ACCESS_SHIFT","features":[112]},{"name":"CLUSCTL_AFFINITYRULE_CODES","features":[112]},{"name":"CLUSCTL_AFFINITYRULE_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_AFFINITYRULE_GET_GROUPNAMES","features":[112]},{"name":"CLUSCTL_AFFINITYRULE_GET_ID","features":[112]},{"name":"CLUSCTL_AFFINITYRULE_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_AFFINITYRULE_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[112]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[112]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[112]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[112]},{"name":"CLUSCTL_CLUSTER_BATCH_BLOCK_KEY","features":[112]},{"name":"CLUSCTL_CLUSTER_BATCH_UNBLOCK_KEY","features":[112]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN","features":[112]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN_WITNESS","features":[112]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT","features":[112]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT_WITNESS","features":[112]},{"name":"CLUSCTL_CLUSTER_CLEAR_NODE_CONNECTION_INFO","features":[112]},{"name":"CLUSCTL_CLUSTER_CODES","features":[112]},{"name":"CLUSCTL_CLUSTER_ENUM_AFFINITY_RULE_NAMES","features":[112]},{"name":"CLUSCTL_CLUSTER_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_FORCE_FLUSH_DB","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_CLMUSR_TOKEN","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_CLUSDB_TIMESTAMP","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_FQDN","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_GUM_LOCK_OWNER","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_NODES_IN_FD","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_SHARED_VOLUME_ID","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIGURATION","features":[112]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIG_ATTRIBUTES","features":[112]},{"name":"CLUSCTL_CLUSTER_RELOAD_AUTOLOGGER_CONFIG","features":[112]},{"name":"CLUSCTL_CLUSTER_REMOVE_NODE","features":[112]},{"name":"CLUSCTL_CLUSTER_SET_ACCOUNT_ACCESS","features":[112]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[112]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_ENABLED","features":[112]},{"name":"CLUSCTL_CLUSTER_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_SET_DNS_DOMAIN","features":[112]},{"name":"CLUSCTL_CLUSTER_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_SET_STORAGE_CONFIGURATION","features":[112]},{"name":"CLUSCTL_CLUSTER_SHUTDOWN","features":[112]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME","features":[112]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[112]},{"name":"CLUSCTL_CLUSTER_UNKNOWN","features":[112]},{"name":"CLUSCTL_CLUSTER_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_CLUSTER_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_CONTROL_CODE_MASK","features":[112]},{"name":"CLUSCTL_FUNCTION_SHIFT","features":[112]},{"name":"CLUSCTL_GET_OPERATION_CONTEXT_PARAMS_VERSION_1","features":[112]},{"name":"CLUSCTL_GROUPSET_CODES","features":[112]},{"name":"CLUSCTL_GROUPSET_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUPSET_GET_GROUPS","features":[112]},{"name":"CLUSCTL_GROUPSET_GET_ID","features":[112]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[112]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[112]},{"name":"CLUSCTL_GROUPSET_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUPSET_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_CODES","features":[112]},{"name":"CLUSCTL_GROUP_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_GET_CHARACTERISTICS","features":[112]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_GROUP_GET_FAILURE_INFO","features":[112]},{"name":"CLUSCTL_GROUP_GET_FLAGS","features":[112]},{"name":"CLUSCTL_GROUP_GET_ID","features":[112]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME","features":[112]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME_OUTPUT","features":[3,112]},{"name":"CLUSCTL_GROUP_GET_NAME","features":[112]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPS","features":[112]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[112]},{"name":"CLUSCTL_GROUP_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_QUERY_DELETE","features":[112]},{"name":"CLUSCTL_GROUP_SET_CCF_FROM_MASTER","features":[112]},{"name":"CLUSCTL_GROUP_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_UNKNOWN","features":[112]},{"name":"CLUSCTL_GROUP_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_GROUP_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_CODES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_CHARACTERISTICS","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_FLAGS","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_ID","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_NAME","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_NETWORK","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_NODE","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_UNKNOWN","features":[112]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_CODES","features":[112]},{"name":"CLUSCTL_NETWORK_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_GET_CHARACTERISTICS","features":[112]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_NETWORK_GET_FLAGS","features":[112]},{"name":"CLUSCTL_NETWORK_GET_ID","features":[112]},{"name":"CLUSCTL_NETWORK_GET_NAME","features":[112]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_NETWORK_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_UNKNOWN","features":[112]},{"name":"CLUSCTL_NETWORK_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NETWORK_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_BLOCK_GEM_SEND_RECV","features":[112]},{"name":"CLUSCTL_NODE_CODES","features":[112]},{"name":"CLUSCTL_NODE_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_GET_CHARACTERISTICS","features":[112]},{"name":"CLUSCTL_NODE_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[112]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_NODE_GET_FLAGS","features":[112]},{"name":"CLUSCTL_NODE_GET_GEMID_VECTOR","features":[112]},{"name":"CLUSCTL_NODE_GET_ID","features":[112]},{"name":"CLUSCTL_NODE_GET_NAME","features":[112]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_NODE_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_GET_STUCK_NODES","features":[112]},{"name":"CLUSCTL_NODE_INJECT_GEM_FAULT","features":[112]},{"name":"CLUSCTL_NODE_INTRODUCE_GEM_REPAIR_DELAY","features":[112]},{"name":"CLUSCTL_NODE_SEND_DUMMY_GEM_MESSAGES","features":[112]},{"name":"CLUSCTL_NODE_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_UNKNOWN","features":[112]},{"name":"CLUSCTL_NODE_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_NODE_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_OBJECT_MASK","features":[112]},{"name":"CLUSCTL_OBJECT_SHIFT","features":[112]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT","features":[112]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT_EX","features":[112]},{"name":"CLUSCTL_RESOURCE_ADD_DEPENDENCY","features":[112]},{"name":"CLUSCTL_RESOURCE_ADD_OWNER","features":[112]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT","features":[112]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_32BIT","features":[112]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_64BIT","features":[112]},{"name":"CLUSCTL_RESOURCE_CHECK_DRAIN_VETO","features":[112]},{"name":"CLUSCTL_RESOURCE_CLUSTER_NAME_CHANGED","features":[112]},{"name":"CLUSCTL_RESOURCE_CLUSTER_VERSION_CHANGED","features":[112]},{"name":"CLUSCTL_RESOURCE_CODES","features":[112]},{"name":"CLUSCTL_RESOURCE_DELETE","features":[112]},{"name":"CLUSCTL_RESOURCE_DELETE_CRYPTO_CHECKPOINT","features":[112]},{"name":"CLUSCTL_RESOURCE_DELETE_REGISTRY_CHECKPOINT","features":[112]},{"name":"CLUSCTL_RESOURCE_DISABLE_SHARED_VOLUME_DIRECTIO","features":[112]},{"name":"CLUSCTL_RESOURCE_ENABLE_SHARED_VOLUME_DIRECTIO","features":[112]},{"name":"CLUSCTL_RESOURCE_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_EVICT_NODE","features":[112]},{"name":"CLUSCTL_RESOURCE_FORCE_QUORUM","features":[112]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_GET_EPOCH_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_RELEASE_LOCK","features":[112]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_SET_EPOCH_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_CHARACTERISTICS","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_CLASS_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_CRYPTO_CHECKPOINTS","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_DNS_NAME","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_FAILURE_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_FLAGS","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_ID","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_LOADBAL_PROCESS_LIST","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_NAME","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_NETWORK_NAME","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_NODES_IN_FD","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_OPERATION_CONTEXT","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_REGISTRY_CHECKPOINTS","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_REQUIRED_DEPENDENCIES","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_RESOURCE_TYPE","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_GET_STATE_CHANGE_TIME","features":[112]},{"name":"CLUSCTL_RESOURCE_INITIALIZE","features":[112]},{"name":"CLUSCTL_RESOURCE_INSTALL_NODE","features":[112]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RELEASE_LEASE","features":[112]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RENEW_LEASE","features":[112]},{"name":"CLUSCTL_RESOURCE_IS_QUORUM_BLOCKED","features":[112]},{"name":"CLUSCTL_RESOURCE_JOINING_GROUP","features":[112]},{"name":"CLUSCTL_RESOURCE_LEAVING_GROUP","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_CREDS_NOTIFYCAM","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_DELETE_CO","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_REGISTER_DNS_RECORDS","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_REPAIR_VCO","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_RESET_VCO","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFOEX","features":[112]},{"name":"CLUSCTL_RESOURCE_NETNAME_VALIDATE_VCO","features":[112]},{"name":"CLUSCTL_RESOURCE_NOTIFY_DRAIN_COMPLETE","features":[112]},{"name":"CLUSCTL_RESOURCE_NOTIFY_OWNER_CHANGE","features":[112]},{"name":"CLUSCTL_RESOURCE_NOTIFY_QUORUM_STATUS","features":[112]},{"name":"CLUSCTL_RESOURCE_POOL_GET_DRIVE_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_PREPARE_UPGRADE","features":[112]},{"name":"CLUSCTL_RESOURCE_PROVIDER_STATE_CHANGE","features":[112]},{"name":"CLUSCTL_RESOURCE_QUERY_DELETE","features":[112]},{"name":"CLUSCTL_RESOURCE_QUERY_MAINTENANCE_MODE","features":[112]},{"name":"CLUSCTL_RESOURCE_REMOVE_DEPENDENCY","features":[112]},{"name":"CLUSCTL_RESOURCE_REMOVE_OWNER","features":[112]},{"name":"CLUSCTL_RESOURCE_RLUA_GET_VIRTUAL_SERVER_TOKEN","features":[112]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFOEX","features":[112]},{"name":"CLUSCTL_RESOURCE_RW_MODIFY_NOOP","features":[112]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_COMMAND","features":[112]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_CONTROL","features":[112]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_GET_CLUSTERS","features":[112]},{"name":"CLUSCTL_RESOURCE_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_SET_CSV_MAINTENANCE_MODE","features":[112]},{"name":"CLUSCTL_RESOURCE_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[112]},{"name":"CLUSCTL_RESOURCE_SET_MAINTENANCE_MODE","features":[112]},{"name":"CLUSCTL_RESOURCE_SET_NAME","features":[112]},{"name":"CLUSCTL_RESOURCE_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_SET_SHARED_VOLUME_BACKUP_MODE","features":[112]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON","features":[112]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_STRUCT","features":[112]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_VERSION_1","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DIRTY","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISKID","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX2","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_NUMBER_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_MOUNTPOINTS","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_STATES","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_PATH_VALID","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_SHARED_VOLUME","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[112]},{"name":"CLUSCTL_RESOURCE_STORAGE_SET_DRIVELETTER","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_CHECK_DRAIN_VETO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_CLUSTER_VERSION_CHANGED","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_CODES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_EVICT_NODE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_FIXUP_ON_UPGRADE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_DIRECTORY","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_PATH","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_SCRIPT_VALIDATE_PATH","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_ARB_TIMEOUT","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CHARACTERISTICS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CLASS_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CRYPTO_CHECKPOINTS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_FLAGS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REGISTRY_CHECKPOINTS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REQUIRED_DEPENDENCIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_HOLD_IO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_INSTALL_NODE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_GET_OU_FOR_VCO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_VALIDATE_NETNAME","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_DRAIN_COMPLETE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_MONITOR_SHUTTING_DOWN","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_PREPARE_UPGRADE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_QUERY_DELETE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_ADD_REPLICATION_GROUP","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_VOLUME","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_DISKS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICA_VOLUMES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_RESOURCE_GROUP","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_RESUME_IO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_ADD_VOLUME_INFO","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_FILTER_BY_POOL","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_INCLUDE_NON_SHARED_DISKS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INPUT","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DISKID","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DRIVELETTERS","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_RESOURCEID","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CLUSTERABLE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CSV_FILE","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMAP_DRIVELETTER","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMOVE_VM_OWNERSHIP","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_SYNC_CLUSDISK_DB","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_UNKNOWN","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_UPGRADE_COMPLETED","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_TYPE_WITNESS_VALIDATE_PATH","features":[112]},{"name":"CLUSCTL_RESOURCE_UNDELETE","features":[112]},{"name":"CLUSCTL_RESOURCE_UNKNOWN","features":[112]},{"name":"CLUSCTL_RESOURCE_UPGRADE_COMPLETED","features":[112]},{"name":"CLUSCTL_RESOURCE_UPGRADE_DLL","features":[112]},{"name":"CLUSCTL_RESOURCE_VALIDATE_CHANGE_GROUP","features":[112]},{"name":"CLUSCTL_RESOURCE_VALIDATE_COMMON_PROPERTIES","features":[112]},{"name":"CLUSCTL_RESOURCE_VALIDATE_PRIVATE_PROPERTIES","features":[112]},{"name":"CLUSGROUPSET_STATUS_APPLICATION_READY","features":[112]},{"name":"CLUSGROUPSET_STATUS_GROUPS_ONLINE","features":[112]},{"name":"CLUSGROUPSET_STATUS_GROUPS_PENDING","features":[112]},{"name":"CLUSGROUPSET_STATUS_OS_HEARTBEAT","features":[112]},{"name":"CLUSGROUP_TYPE","features":[112]},{"name":"CLUSGRP_STATUS_APPLICATION_READY","features":[112]},{"name":"CLUSGRP_STATUS_EMBEDDED_FAILURE","features":[112]},{"name":"CLUSGRP_STATUS_LOCKED_MODE","features":[112]},{"name":"CLUSGRP_STATUS_NETWORK_FAILURE","features":[112]},{"name":"CLUSGRP_STATUS_OFFLINE_DUE_TO_ANTIAFFINITY_CONFLICT","features":[112]},{"name":"CLUSGRP_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[112]},{"name":"CLUSGRP_STATUS_OS_HEARTBEAT","features":[112]},{"name":"CLUSGRP_STATUS_PHYSICAL_RESOURCES_LACKING","features":[112]},{"name":"CLUSGRP_STATUS_PREEMPTED","features":[112]},{"name":"CLUSGRP_STATUS_UNMONITORED","features":[112]},{"name":"CLUSGRP_STATUS_WAITING_FOR_DEPENDENCIES","features":[112]},{"name":"CLUSGRP_STATUS_WAITING_IN_QUEUE_FOR_MOVE","features":[112]},{"name":"CLUSGRP_STATUS_WAITING_TO_START","features":[112]},{"name":"CLUSPROP_BINARY","features":[112]},{"name":"CLUSPROP_BUFFER_HELPER","features":[3,112,6]},{"name":"CLUSPROP_DWORD","features":[112]},{"name":"CLUSPROP_FILETIME","features":[3,112]},{"name":"CLUSPROP_FORMAT_BINARY","features":[112]},{"name":"CLUSPROP_FORMAT_DWORD","features":[112]},{"name":"CLUSPROP_FORMAT_EXPANDED_SZ","features":[112]},{"name":"CLUSPROP_FORMAT_EXPAND_SZ","features":[112]},{"name":"CLUSPROP_FORMAT_FILETIME","features":[112]},{"name":"CLUSPROP_FORMAT_LARGE_INTEGER","features":[112]},{"name":"CLUSPROP_FORMAT_LONG","features":[112]},{"name":"CLUSPROP_FORMAT_MULTI_SZ","features":[112]},{"name":"CLUSPROP_FORMAT_PROPERTY_LIST","features":[112]},{"name":"CLUSPROP_FORMAT_SECURITY_DESCRIPTOR","features":[112]},{"name":"CLUSPROP_FORMAT_SZ","features":[112]},{"name":"CLUSPROP_FORMAT_ULARGE_INTEGER","features":[112]},{"name":"CLUSPROP_FORMAT_UNKNOWN","features":[112]},{"name":"CLUSPROP_FORMAT_USER","features":[112]},{"name":"CLUSPROP_FORMAT_VALUE_LIST","features":[112]},{"name":"CLUSPROP_FORMAT_WORD","features":[112]},{"name":"CLUSPROP_FTSET_INFO","features":[112]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS","features":[112]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_DISABLED","features":[112]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_ENABLED","features":[112]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_TRACK_NIC","features":[112]},{"name":"CLUSPROP_LARGE_INTEGER","features":[112]},{"name":"CLUSPROP_LIST","features":[112]},{"name":"CLUSPROP_LONG","features":[112]},{"name":"CLUSPROP_PARTITION_INFO","features":[112]},{"name":"CLUSPROP_PARTITION_INFO_EX","features":[112]},{"name":"CLUSPROP_PARTITION_INFO_EX2","features":[112]},{"name":"CLUSPROP_PIFLAGS","features":[112]},{"name":"CLUSPROP_PIFLAG_DEFAULT_QUORUM","features":[112]},{"name":"CLUSPROP_PIFLAG_ENCRYPTION_ENABLED","features":[112]},{"name":"CLUSPROP_PIFLAG_RAW","features":[112]},{"name":"CLUSPROP_PIFLAG_REMOVABLE","features":[112]},{"name":"CLUSPROP_PIFLAG_STICKY","features":[112]},{"name":"CLUSPROP_PIFLAG_UNKNOWN","features":[112]},{"name":"CLUSPROP_PIFLAG_USABLE","features":[112]},{"name":"CLUSPROP_PIFLAG_USABLE_FOR_CSV","features":[112]},{"name":"CLUSPROP_REQUIRED_DEPENDENCY","features":[112]},{"name":"CLUSPROP_RESOURCE_CLASS","features":[112]},{"name":"CLUSPROP_RESOURCE_CLASS_INFO","features":[112]},{"name":"CLUSPROP_SCSI_ADDRESS","features":[112]},{"name":"CLUSPROP_SECURITY_DESCRIPTOR","features":[112,6]},{"name":"CLUSPROP_SYNTAX","features":[112]},{"name":"CLUSPROP_SYNTAX_DISK_GUID","features":[112]},{"name":"CLUSPROP_SYNTAX_DISK_NUMBER","features":[112]},{"name":"CLUSPROP_SYNTAX_DISK_SERIALNUMBER","features":[112]},{"name":"CLUSPROP_SYNTAX_DISK_SIGNATURE","features":[112]},{"name":"CLUSPROP_SYNTAX_DISK_SIZE","features":[112]},{"name":"CLUSPROP_SYNTAX_ENDMARK","features":[112]},{"name":"CLUSPROP_SYNTAX_FTSET_INFO","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_BINARY","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_DWORD","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPANDED_SZ","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPAND_SZ","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_FILETIME","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LARGE_INTEGER","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LONG","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_MULTI_SZ","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_PROPERTY_LIST","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SECURITY_DESCRIPTOR","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SZ","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_ULARGE_INTEGER","features":[112]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_WORD","features":[112]},{"name":"CLUSPROP_SYNTAX_NAME","features":[112]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO","features":[112]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX","features":[112]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX2","features":[112]},{"name":"CLUSPROP_SYNTAX_RESCLASS","features":[112]},{"name":"CLUSPROP_SYNTAX_SCSI_ADDRESS","features":[112]},{"name":"CLUSPROP_SYNTAX_STORAGE_DEVICE_ID_DESCRIPTOR","features":[112]},{"name":"CLUSPROP_SZ","features":[112]},{"name":"CLUSPROP_TYPE_DISK_GUID","features":[112]},{"name":"CLUSPROP_TYPE_DISK_NUMBER","features":[112]},{"name":"CLUSPROP_TYPE_DISK_SERIALNUMBER","features":[112]},{"name":"CLUSPROP_TYPE_DISK_SIZE","features":[112]},{"name":"CLUSPROP_TYPE_ENDMARK","features":[112]},{"name":"CLUSPROP_TYPE_FTSET_INFO","features":[112]},{"name":"CLUSPROP_TYPE_LIST_VALUE","features":[112]},{"name":"CLUSPROP_TYPE_NAME","features":[112]},{"name":"CLUSPROP_TYPE_PARTITION_INFO","features":[112]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX","features":[112]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX2","features":[112]},{"name":"CLUSPROP_TYPE_RESCLASS","features":[112]},{"name":"CLUSPROP_TYPE_RESERVED1","features":[112]},{"name":"CLUSPROP_TYPE_SCSI_ADDRESS","features":[112]},{"name":"CLUSPROP_TYPE_SIGNATURE","features":[112]},{"name":"CLUSPROP_TYPE_STORAGE_DEVICE_ID_DESCRIPTOR","features":[112]},{"name":"CLUSPROP_TYPE_UNKNOWN","features":[112]},{"name":"CLUSPROP_TYPE_USER","features":[112]},{"name":"CLUSPROP_ULARGE_INTEGER","features":[112]},{"name":"CLUSPROP_VALUE","features":[112]},{"name":"CLUSPROP_WORD","features":[112]},{"name":"CLUSREG_COMMAND_NONE","features":[112]},{"name":"CLUSREG_CONDITION_EXISTS","features":[112]},{"name":"CLUSREG_CONDITION_IS_EQUAL","features":[112]},{"name":"CLUSREG_CONDITION_IS_GREATER_THAN","features":[112]},{"name":"CLUSREG_CONDITION_IS_LESS_THAN","features":[112]},{"name":"CLUSREG_CONDITION_IS_NOT_EQUAL","features":[112]},{"name":"CLUSREG_CONDITION_KEY_EXISTS","features":[112]},{"name":"CLUSREG_CONDITION_KEY_NOT_EXISTS","features":[112]},{"name":"CLUSREG_CONDITION_NOT_EXISTS","features":[112]},{"name":"CLUSREG_CONTROL_COMMAND","features":[112]},{"name":"CLUSREG_CREATE_KEY","features":[112]},{"name":"CLUSREG_DATABASE_ISOLATE_READ","features":[112]},{"name":"CLUSREG_DATABASE_SYNC_WRITE_TO_ALL_NODES","features":[112]},{"name":"CLUSREG_DELETE_KEY","features":[112]},{"name":"CLUSREG_DELETE_VALUE","features":[112]},{"name":"CLUSREG_KEYNAME_OBJECTGUIDS","features":[112]},{"name":"CLUSREG_LAST_COMMAND","features":[112]},{"name":"CLUSREG_NAME_AFFINITYRULE_ENABLED","features":[112]},{"name":"CLUSREG_NAME_AFFINITYRULE_GROUPS","features":[112]},{"name":"CLUSREG_NAME_AFFINITYRULE_NAME","features":[112]},{"name":"CLUSREG_NAME_AFFINITYRULE_TYPE","features":[112]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ACCOUNT_NAME","features":[112]},{"name":"CLUSREG_NAME_CLOUDWITNESS_CONTAINER_NAME","features":[112]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ENDPOINT_INFO","features":[112]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_KEY","features":[112]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_TOKEN","features":[112]},{"name":"CLUSREG_NAME_CLUS_DEFAULT_NETWORK_ROLE","features":[112]},{"name":"CLUSREG_NAME_CLUS_DESC","features":[112]},{"name":"CLUSREG_NAME_CLUS_SD","features":[112]},{"name":"CLUSREG_NAME_CROSS_SITE_DELAY","features":[112]},{"name":"CLUSREG_NAME_CROSS_SITE_THRESHOLD","features":[112]},{"name":"CLUSREG_NAME_CROSS_SUBNET_DELAY","features":[112]},{"name":"CLUSREG_NAME_CROSS_SUBNET_THRESHOLD","features":[112]},{"name":"CLUSREG_NAME_CSV_BLOCK_CACHE","features":[112]},{"name":"CLUSREG_NAME_CSV_MDS_SD","features":[112]},{"name":"CLUSREG_NAME_DATABASE_READ_WRITE_MODE","features":[112]},{"name":"CLUSREG_NAME_DDA_DEVICE_ALLOCATIONS","features":[112]},{"name":"CLUSREG_NAME_DHCP_BACKUP_PATH","features":[112]},{"name":"CLUSREG_NAME_DHCP_DATABASE_PATH","features":[112]},{"name":"CLUSREG_NAME_DRAIN_ON_SHUTDOWN","features":[112]},{"name":"CLUSREG_NAME_ENABLED_EVENT_LOGS","features":[112]},{"name":"CLUSREG_NAME_FAILOVER_MOVE_MIGRATION_TYPE","features":[112]},{"name":"CLUSREG_NAME_FILESHR_CA_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_FILESHR_HIDE_SUBDIR_SHARES","features":[112]},{"name":"CLUSREG_NAME_FILESHR_IS_DFS_ROOT","features":[112]},{"name":"CLUSREG_NAME_FILESHR_MAX_USERS","features":[112]},{"name":"CLUSREG_NAME_FILESHR_PATH","features":[112]},{"name":"CLUSREG_NAME_FILESHR_QOS_FLOWSCOPE","features":[112]},{"name":"CLUSREG_NAME_FILESHR_QOS_POLICYID","features":[112]},{"name":"CLUSREG_NAME_FILESHR_REMARK","features":[112]},{"name":"CLUSREG_NAME_FILESHR_SD","features":[112]},{"name":"CLUSREG_NAME_FILESHR_SERVER_NAME","features":[112]},{"name":"CLUSREG_NAME_FILESHR_SHARE_FLAGS","features":[112]},{"name":"CLUSREG_NAME_FILESHR_SHARE_NAME","features":[112]},{"name":"CLUSREG_NAME_FILESHR_SHARE_SUBDIRS","features":[112]},{"name":"CLUSREG_NAME_FIXQUORUM","features":[112]},{"name":"CLUSREG_NAME_FSWITNESS_ARB_DELAY","features":[112]},{"name":"CLUSREG_NAME_FSWITNESS_IMPERSONATE_CNO","features":[112]},{"name":"CLUSREG_NAME_FSWITNESS_SHARE_PATH","features":[112]},{"name":"CLUSREG_NAME_FUNCTIONAL_LEVEL","features":[112]},{"name":"CLUSREG_NAME_GENAPP_COMMAND_LINE","features":[112]},{"name":"CLUSREG_NAME_GENAPP_CURRENT_DIRECTORY","features":[112]},{"name":"CLUSREG_NAME_GENAPP_USE_NETWORK_NAME","features":[112]},{"name":"CLUSREG_NAME_GENSCRIPT_SCRIPT_FILEPATH","features":[112]},{"name":"CLUSREG_NAME_GENSVC_SERVICE_NAME","features":[112]},{"name":"CLUSREG_NAME_GENSVC_STARTUP_PARAMS","features":[112]},{"name":"CLUSREG_NAME_GENSVC_USE_NETWORK_NAME","features":[112]},{"name":"CLUSREG_NAME_GPUP_DEVICE_ALLOCATIONS","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_AVAILABILITY_SET_INDEX_TO_NODE_MAPPING","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_FAULT_DOMAINS","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_IS_AVAILABILITY_SET","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_IS_GLOBAL","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_NAME","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_RESERVE_NODE","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_COUNT","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_DELAY","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_SETTING","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_STATUS_INFORMATION","features":[112]},{"name":"CLUSREG_NAME_GROUPSET_UPDATE_DOMAINS","features":[112]},{"name":"CLUSREG_NAME_GROUP_DEPENDENCY_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_GRP_ANTI_AFFINITY_CLASS_NAME","features":[112]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH","features":[112]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH_HIGH","features":[112]},{"name":"CLUSREG_NAME_GRP_COLD_START_SETTING","features":[112]},{"name":"CLUSREG_NAME_GRP_DEFAULT_OWNER","features":[112]},{"name":"CLUSREG_NAME_GRP_DESC","features":[112]},{"name":"CLUSREG_NAME_GRP_FAILBACK_TYPE","features":[112]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_END","features":[112]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_START","features":[112]},{"name":"CLUSREG_NAME_GRP_FAILOVER_PERIOD","features":[112]},{"name":"CLUSREG_NAME_GRP_FAILOVER_THRESHOLD","features":[112]},{"name":"CLUSREG_NAME_GRP_FAULT_DOMAIN","features":[112]},{"name":"CLUSREG_NAME_GRP_LOCK_MOVE","features":[112]},{"name":"CLUSREG_NAME_GRP_NAME","features":[112]},{"name":"CLUSREG_NAME_GRP_PERSISTENT_STATE","features":[112]},{"name":"CLUSREG_NAME_GRP_PLACEMENT_OPTIONS","features":[112]},{"name":"CLUSREG_NAME_GRP_PREFERRED_SITE","features":[112]},{"name":"CLUSREG_NAME_GRP_PRIORITY","features":[112]},{"name":"CLUSREG_NAME_GRP_RESILIENCY_PERIOD","features":[112]},{"name":"CLUSREG_NAME_GRP_START_DELAY","features":[112]},{"name":"CLUSREG_NAME_GRP_STATUS_INFORMATION","features":[112]},{"name":"CLUSREG_NAME_GRP_TYPE","features":[112]},{"name":"CLUSREG_NAME_GRP_UPDATE_DOMAIN","features":[112]},{"name":"CLUSREG_NAME_IGNORE_PERSISTENT_STATE","features":[112]},{"name":"CLUSREG_NAME_IPADDR_ADDRESS","features":[112]},{"name":"CLUSREG_NAME_IPADDR_DHCP_ADDRESS","features":[112]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SERVER","features":[112]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SUBNET_MASK","features":[112]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_DHCP","features":[112]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_NETBIOS","features":[112]},{"name":"CLUSREG_NAME_IPADDR_LEASE_OBTAINED_TIME","features":[112]},{"name":"CLUSREG_NAME_IPADDR_LEASE_TERMINATES_TIME","features":[112]},{"name":"CLUSREG_NAME_IPADDR_NETWORK","features":[112]},{"name":"CLUSREG_NAME_IPADDR_OVERRIDE_ADDRMATCH","features":[112]},{"name":"CLUSREG_NAME_IPADDR_PROBE_FAILURE_THRESHOLD","features":[112]},{"name":"CLUSREG_NAME_IPADDR_PROBE_PORT","features":[112]},{"name":"CLUSREG_NAME_IPADDR_SHARED_NETNAME","features":[112]},{"name":"CLUSREG_NAME_IPADDR_SUBNET_MASK","features":[112]},{"name":"CLUSREG_NAME_IPADDR_T1","features":[112]},{"name":"CLUSREG_NAME_IPADDR_T2","features":[112]},{"name":"CLUSREG_NAME_IPV6_NATIVE_ADDRESS","features":[112]},{"name":"CLUSREG_NAME_IPV6_NATIVE_NETWORK","features":[112]},{"name":"CLUSREG_NAME_IPV6_NATIVE_PREFIX_LENGTH","features":[112]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_ADDRESS","features":[112]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_TUNNELTYPE","features":[112]},{"name":"CLUSREG_NAME_LAST_RECENT_EVENTS_RESET_TIME","features":[112]},{"name":"CLUSREG_NAME_LOG_FILE_PATH","features":[112]},{"name":"CLUSREG_NAME_MESSAGE_BUFFER_LENGTH","features":[112]},{"name":"CLUSREG_NAME_MIXED_MODE","features":[112]},{"name":"CLUSREG_NAME_NETFT_IPSEC_ENABLED","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_ID","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_NAME","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_ADDRESS","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_DESC","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_DHCP_ENABLED","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_IPV4_ADDRESSES","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_IPV6_ADDRESSES","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_NAME","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_NETWORK","features":[112]},{"name":"CLUSREG_NAME_NETIFACE_NODE","features":[112]},{"name":"CLUSREG_NAME_NETNAME_AD_AWARE","features":[112]},{"name":"CLUSREG_NAME_NETNAME_ALIASES","features":[112]},{"name":"CLUSREG_NAME_NETNAME_CONTAINERGUID","features":[112]},{"name":"CLUSREG_NAME_NETNAME_CREATING_DC","features":[112]},{"name":"CLUSREG_NAME_NETNAME_DNN_DISABLE_CLONES","features":[112]},{"name":"CLUSREG_NAME_NETNAME_DNS_NAME","features":[112]},{"name":"CLUSREG_NAME_NETNAME_DNS_SUFFIX","features":[112]},{"name":"CLUSREG_NAME_NETNAME_EXCLUDE_NETWORKS","features":[112]},{"name":"CLUSREG_NAME_NETNAME_HOST_TTL","features":[112]},{"name":"CLUSREG_NAME_NETNAME_IN_USE_NETWORKS","features":[112]},{"name":"CLUSREG_NAME_NETNAME_LAST_DNS_UPDATE","features":[112]},{"name":"CLUSREG_NAME_NETNAME_NAME","features":[112]},{"name":"CLUSREG_NAME_NETNAME_OBJECT_ID","features":[112]},{"name":"CLUSREG_NAME_NETNAME_PUBLISH_PTR","features":[112]},{"name":"CLUSREG_NAME_NETNAME_REGISTER_ALL_IP","features":[112]},{"name":"CLUSREG_NAME_NETNAME_REMAP_PIPE_NAMES","features":[112]},{"name":"CLUSREG_NAME_NETNAME_REMOVEVCO_ONDELETE","features":[112]},{"name":"CLUSREG_NAME_NETNAME_RESOURCE_DATA","features":[112]},{"name":"CLUSREG_NAME_NETNAME_STATUS_DNS","features":[112]},{"name":"CLUSREG_NAME_NETNAME_STATUS_KERBEROS","features":[112]},{"name":"CLUSREG_NAME_NETNAME_STATUS_NETBIOS","features":[112]},{"name":"CLUSREG_NAME_NETNAME_VCO_CONTAINER","features":[112]},{"name":"CLUSREG_NAME_NET_ADDRESS","features":[112]},{"name":"CLUSREG_NAME_NET_ADDRESS_MASK","features":[112]},{"name":"CLUSREG_NAME_NET_AUTOMETRIC","features":[112]},{"name":"CLUSREG_NAME_NET_DESC","features":[112]},{"name":"CLUSREG_NAME_NET_IPV4_ADDRESSES","features":[112]},{"name":"CLUSREG_NAME_NET_IPV4_PREFIXLENGTHS","features":[112]},{"name":"CLUSREG_NAME_NET_IPV6_ADDRESSES","features":[112]},{"name":"CLUSREG_NAME_NET_IPV6_PREFIXLENGTHS","features":[112]},{"name":"CLUSREG_NAME_NET_METRIC","features":[112]},{"name":"CLUSREG_NAME_NET_NAME","features":[112]},{"name":"CLUSREG_NAME_NET_RDMA_CAPABLE","features":[112]},{"name":"CLUSREG_NAME_NET_ROLE","features":[112]},{"name":"CLUSREG_NAME_NET_RSS_CAPABLE","features":[112]},{"name":"CLUSREG_NAME_NET_SPEED","features":[112]},{"name":"CLUSREG_NAME_NODE_BUILD_NUMBER","features":[112]},{"name":"CLUSREG_NAME_NODE_CSDVERSION","features":[112]},{"name":"CLUSREG_NAME_NODE_DESC","features":[112]},{"name":"CLUSREG_NAME_NODE_DRAIN_STATUS","features":[112]},{"name":"CLUSREG_NAME_NODE_DRAIN_TARGET","features":[112]},{"name":"CLUSREG_NAME_NODE_DYNAMIC_WEIGHT","features":[112]},{"name":"CLUSREG_NAME_NODE_FAULT_DOMAIN","features":[112]},{"name":"CLUSREG_NAME_NODE_FDID","features":[112]},{"name":"CLUSREG_NAME_NODE_HIGHEST_VERSION","features":[112]},{"name":"CLUSREG_NAME_NODE_IS_PRIMARY","features":[112]},{"name":"CLUSREG_NAME_NODE_LOWEST_VERSION","features":[112]},{"name":"CLUSREG_NAME_NODE_MAJOR_VERSION","features":[112]},{"name":"CLUSREG_NAME_NODE_MANUFACTURER","features":[112]},{"name":"CLUSREG_NAME_NODE_MINOR_VERSION","features":[112]},{"name":"CLUSREG_NAME_NODE_MODEL","features":[112]},{"name":"CLUSREG_NAME_NODE_NAME","features":[112]},{"name":"CLUSREG_NAME_NODE_NEEDS_PQ","features":[112]},{"name":"CLUSREG_NAME_NODE_SERIALNUMBER","features":[112]},{"name":"CLUSREG_NAME_NODE_STATUS_INFO","features":[112]},{"name":"CLUSREG_NAME_NODE_UNIQUEID","features":[112]},{"name":"CLUSREG_NAME_NODE_WEIGHT","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_CSVBLOCKCACHE","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTAGELIMIT","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTDIFFAREASIZE","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_CSVWRITETHROUGH","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBINTERVAL","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBTYPE","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKGUID","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDGUID","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDTYPE","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIODELAY","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKPATH","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRECOVERYACTION","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRELOAD","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRUNCHKDSK","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKSIGNATURE","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKUNIQUEIDS","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_DISKVOLUMEINFO","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_FASTONLINEARBITRATE","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_MAINTMODE","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_MIGRATEFIXUP","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_SPACEIDGUID","features":[112]},{"name":"CLUSREG_NAME_PHYSDISK_VOLSNAPACTIVATETIMEOUT","features":[112]},{"name":"CLUSREG_NAME_PLACEMENT_OPTIONS","features":[112]},{"name":"CLUSREG_NAME_PLUMB_ALL_CROSS_SUBNET_ROUTES","features":[112]},{"name":"CLUSREG_NAME_PREVENTQUORUM","features":[112]},{"name":"CLUSREG_NAME_PRTSPOOL_DEFAULT_SPOOL_DIR","features":[112]},{"name":"CLUSREG_NAME_PRTSPOOL_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_QUARANTINE_DURATION","features":[112]},{"name":"CLUSREG_NAME_QUARANTINE_THRESHOLD","features":[112]},{"name":"CLUSREG_NAME_QUORUM_ARBITRATION_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_RESILIENCY_DEFAULT_SECONDS","features":[112]},{"name":"CLUSREG_NAME_RESILIENCY_LEVEL","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_ADMIN_EXTENSIONS","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_DEADLOCK_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_DESC","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_DLL_NAME","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_LOG_QUERY","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_POLICY","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_SERVICES","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_ENABLED_EVENT_LOGS","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_IS_ALIVE","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_LOOKS_ALIVE","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_MAX_MONITORS","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_NAME","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_PENDING_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_WPR_PROFILES","features":[112]},{"name":"CLUSREG_NAME_RESTYPE_WPR_START_AFTER","features":[112]},{"name":"CLUSREG_NAME_RES_DATA1","features":[112]},{"name":"CLUSREG_NAME_RES_DATA2","features":[112]},{"name":"CLUSREG_NAME_RES_DEADLOCK_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_RES_DESC","features":[112]},{"name":"CLUSREG_NAME_RES_EMBEDDED_FAILURE_ACTION","features":[112]},{"name":"CLUSREG_NAME_RES_IS_ALIVE","features":[112]},{"name":"CLUSREG_NAME_RES_LAST_OPERATION_STATUS_CODE","features":[112]},{"name":"CLUSREG_NAME_RES_LOOKS_ALIVE","features":[112]},{"name":"CLUSREG_NAME_RES_MONITOR_PID","features":[112]},{"name":"CLUSREG_NAME_RES_NAME","features":[112]},{"name":"CLUSREG_NAME_RES_PENDING_TIMEOUT","features":[112]},{"name":"CLUSREG_NAME_RES_PERSISTENT_STATE","features":[112]},{"name":"CLUSREG_NAME_RES_RESTART_ACTION","features":[112]},{"name":"CLUSREG_NAME_RES_RESTART_DELAY","features":[112]},{"name":"CLUSREG_NAME_RES_RESTART_PERIOD","features":[112]},{"name":"CLUSREG_NAME_RES_RESTART_THRESHOLD","features":[112]},{"name":"CLUSREG_NAME_RES_RETRY_PERIOD_ON_FAILURE","features":[112]},{"name":"CLUSREG_NAME_RES_SEPARATE_MONITOR","features":[112]},{"name":"CLUSREG_NAME_RES_STATUS","features":[112]},{"name":"CLUSREG_NAME_RES_STATUS_INFORMATION","features":[112]},{"name":"CLUSREG_NAME_RES_TYPE","features":[112]},{"name":"CLUSREG_NAME_ROUTE_HISTORY_LENGTH","features":[112]},{"name":"CLUSREG_NAME_SAME_SUBNET_DELAY","features":[112]},{"name":"CLUSREG_NAME_SAME_SUBNET_THRESHOLD","features":[112]},{"name":"CLUSREG_NAME_SHUTDOWN_TIMEOUT_MINUTES","features":[112]},{"name":"CLUSREG_NAME_SOFS_SMBASYMMETRYMODE","features":[112]},{"name":"CLUSREG_NAME_START_MEMORY","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_DESCRIPTION","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_HEALTH","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_NAME","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLARBITRATE","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLCONSUMEDCAPACITY","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDESC","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDRIVEIDS","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLHEALTH","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLIDGUID","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLNAME","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMSHARE","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMUSERACCOUNT","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLREEVALTIMEOUT","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLSTATE","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLTOTALCAPACITY","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_PROVISIONING","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYCOLUMNS","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYINTERLEAVE","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYTYPE","features":[112]},{"name":"CLUSREG_NAME_STORAGESPACE_STATE","features":[112]},{"name":"CLUSREG_NAME_UPGRADE_VERSION","features":[112]},{"name":"CLUSREG_NAME_VIP_ADAPTER_NAME","features":[112]},{"name":"CLUSREG_NAME_VIP_ADDRESS","features":[112]},{"name":"CLUSREG_NAME_VIP_PREFIX_LENGTH","features":[112]},{"name":"CLUSREG_NAME_VIP_RDID","features":[112]},{"name":"CLUSREG_NAME_VIP_VSID","features":[112]},{"name":"CLUSREG_NAME_VIRTUAL_NUMA_COUNT","features":[112]},{"name":"CLUSREG_NAME_VSSTASK_APPNAME","features":[112]},{"name":"CLUSREG_NAME_VSSTASK_APPPARAMS","features":[112]},{"name":"CLUSREG_NAME_VSSTASK_CURRENTDIRECTORY","features":[112]},{"name":"CLUSREG_NAME_VSSTASK_TRIGGERARRAY","features":[112]},{"name":"CLUSREG_NAME_WINS_BACKUP_PATH","features":[112]},{"name":"CLUSREG_NAME_WINS_DATABASE_PATH","features":[112]},{"name":"CLUSREG_NAME_WITNESS_DYNAMIC_WEIGHT","features":[112]},{"name":"CLUSREG_READ_ERROR","features":[112]},{"name":"CLUSREG_READ_KEY","features":[112]},{"name":"CLUSREG_READ_VALUE","features":[112]},{"name":"CLUSREG_SET_KEY_SECURITY","features":[112]},{"name":"CLUSREG_SET_VALUE","features":[112]},{"name":"CLUSREG_VALUE_DELETED","features":[112]},{"name":"CLUSRESDLL_STATUS_DO_NOT_COLLECT_WER_REPORT","features":[112]},{"name":"CLUSRESDLL_STATUS_DUMP_NOW","features":[112]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_MEMORY","features":[112]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_OTHER_RESOURCES","features":[112]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_PROCESSOR","features":[112]},{"name":"CLUSRESDLL_STATUS_INVALID_PARAMETERS","features":[112]},{"name":"CLUSRESDLL_STATUS_NETWORK_NOT_AVAILABLE","features":[112]},{"name":"CLUSRESDLL_STATUS_OFFLINE_BUSY","features":[112]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_REJECTED","features":[112]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_THROTTLED","features":[112]},{"name":"CLUSRESDLL_STATUS_OFFLINE_SOURCE_THROTTLED","features":[112]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_OFFLINE_CALLS","features":[112]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_ONLINE_CALLS","features":[112]},{"name":"CLUSRES_NAME_GET_OPERATION_CONTEXT_FLAGS","features":[112]},{"name":"CLUSRES_STATUS_APPLICATION_READY","features":[112]},{"name":"CLUSRES_STATUS_EMBEDDED_FAILURE","features":[112]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_CPU","features":[112]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_GENERIC_RESOURCES","features":[112]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_MEMORY","features":[112]},{"name":"CLUSRES_STATUS_LOCKED_MODE","features":[112]},{"name":"CLUSRES_STATUS_NETWORK_FAILURE","features":[112]},{"name":"CLUSRES_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[112]},{"name":"CLUSRES_STATUS_OS_HEARTBEAT","features":[112]},{"name":"CLUSRES_STATUS_UNMONITORED","features":[112]},{"name":"CLUSTERSET_OBJECT_TYPE","features":[112]},{"name":"CLUSTERSET_OBJECT_TYPE_DATABASE","features":[112]},{"name":"CLUSTERSET_OBJECT_TYPE_MEMBER","features":[112]},{"name":"CLUSTERSET_OBJECT_TYPE_NONE","features":[112]},{"name":"CLUSTERSET_OBJECT_TYPE_WORKLOAD","features":[112]},{"name":"CLUSTERVERSIONINFO","features":[112]},{"name":"CLUSTERVERSIONINFO_NT4","features":[112]},{"name":"CLUSTER_ADD_EVICT_DELAY","features":[112]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG","features":[3,112]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG_V1","features":[112]},{"name":"CLUSTER_BATCH_COMMAND","features":[112]},{"name":"CLUSTER_CHANGE","features":[112]},{"name":"CLUSTER_CHANGE_ALL","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_GROUP_ADDED_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_HANDLE_CLOSE_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_LOST_NOTIFICATIONS_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_MEMBERSHIP_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_NETWORK_ADDED_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_NODE_ADDED_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_PROPERTY","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_RENAME_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_RESOURCE_TYPE_ADDED_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_UPGRADED_V2","features":[112]},{"name":"CLUSTER_CHANGE_CLUSTER_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_DELETED_v2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENCIES_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENTS_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_ADDED","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_REMOVED","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_HANDLE_CLOSE_v2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUPSET_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_ADDED","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_DELETED","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_DELETED_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_HANDLE_CLOSE_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_OWNER_NODE_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_PREFERRED_OWNERS_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_PROPERTY","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_ADDED_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_GAINED_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_LOST_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_STATE","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_GROUP_V2","features":[112]},{"name":"CLUSTER_CHANGE_HANDLE_CLOSE","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ADDED","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_HANDLE_CLOSE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PROPERTY","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETINTERFACE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_ADDED","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_HANDLE_CLOSE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_PROPERTY","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_STATE","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NETWORK_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_ADDED","features":[112]},{"name":"CLUSTER_CHANGE_NODE_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_DELETED","features":[112]},{"name":"CLUSTER_CHANGE_NODE_DELETED_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_GROUP_GAINED_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_GROUP_LOST_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_HANDLE_CLOSE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_NETINTERFACE_ADDED_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_PROPERTY","features":[112]},{"name":"CLUSTER_CHANGE_NODE_STATE","features":[112]},{"name":"CLUSTER_CHANGE_NODE_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_UPGRADE_PHASE_V2","features":[112]},{"name":"CLUSTER_CHANGE_NODE_V2","features":[112]},{"name":"CLUSTER_CHANGE_QUORUM_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_QUORUM_STATE","features":[112]},{"name":"CLUSTER_CHANGE_QUORUM_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_QUORUM_V2","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES_V2","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_HANDLE_CLOSE_V2","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME_V2","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE_V2","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_V2","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE","features":[112]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_ADDED","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENCIES_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENTS_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_DLL_UPGRADED_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_HANDLE_CLOSE_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_OWNER_GROUP_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_POSSIBLE_OWNERS_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_PROPERTY","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TERMINAL_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ADDED","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_COMMON_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DLL_UPGRADED_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_POSSIBLE_OWNERS_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PRIVATE_PROPERTY_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PROPERTY","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_V2","features":[112]},{"name":"CLUSTER_CHANGE_RESOURCE_V2","features":[112]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ADDED_V2","features":[112]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ALL_V2","features":[112]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_REMOVED_V2","features":[112]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_STATE_V2","features":[112]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_V2","features":[112]},{"name":"CLUSTER_CHANGE_SPACEPORT_CUSTOM_PNP_V2","features":[112]},{"name":"CLUSTER_CHANGE_SPACEPORT_V2","features":[112]},{"name":"CLUSTER_CHANGE_UPGRADE_ALL","features":[112]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_COMMIT","features":[112]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_POSTCOMMIT","features":[112]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_PREPARE","features":[112]},{"name":"CLUSTER_CLOUD_TYPE","features":[112]},{"name":"CLUSTER_CLOUD_TYPE_AZURE","features":[112]},{"name":"CLUSTER_CLOUD_TYPE_MIXED","features":[112]},{"name":"CLUSTER_CLOUD_TYPE_NONE","features":[112]},{"name":"CLUSTER_CLOUD_TYPE_UNKNOWN","features":[112]},{"name":"CLUSTER_CONFIGURED","features":[112]},{"name":"CLUSTER_CONTROL_OBJECT","features":[112]},{"name":"CLUSTER_CREATE_GROUP_INFO","features":[112]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION","features":[112]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION_1","features":[112]},{"name":"CLUSTER_CSA_VSS_STATE","features":[112]},{"name":"CLUSTER_CSV_COMPATIBLE_FILTERS","features":[112]},{"name":"CLUSTER_CSV_INCOMPATIBLE_FILTERS","features":[112]},{"name":"CLUSTER_CSV_VOLUME_FAULT_STATE","features":[112]},{"name":"CLUSTER_DELETE_ACCESS_CONTROL_ENTRY","features":[112]},{"name":"CLUSTER_ENFORCED_ANTIAFFINITY","features":[112]},{"name":"CLUSTER_ENUM","features":[112]},{"name":"CLUSTER_ENUM_ALL","features":[112]},{"name":"CLUSTER_ENUM_GROUP","features":[112]},{"name":"CLUSTER_ENUM_INTERNAL_NETWORK","features":[112]},{"name":"CLUSTER_ENUM_ITEM","features":[112]},{"name":"CLUSTER_ENUM_ITEM_VERSION","features":[112]},{"name":"CLUSTER_ENUM_ITEM_VERSION_1","features":[112]},{"name":"CLUSTER_ENUM_NETINTERFACE","features":[112]},{"name":"CLUSTER_ENUM_NETWORK","features":[112]},{"name":"CLUSTER_ENUM_NODE","features":[112]},{"name":"CLUSTER_ENUM_RESOURCE","features":[112]},{"name":"CLUSTER_ENUM_RESTYPE","features":[112]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_GROUP","features":[112]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_RESOURCE","features":[112]},{"name":"CLUSTER_GROUP_AUTOFAILBACK_TYPE","features":[112]},{"name":"CLUSTER_GROUP_ENUM","features":[112]},{"name":"CLUSTER_GROUP_ENUM_ALL","features":[112]},{"name":"CLUSTER_GROUP_ENUM_CONTAINS","features":[112]},{"name":"CLUSTER_GROUP_ENUM_ITEM","features":[112]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION","features":[112]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION_1","features":[112]},{"name":"CLUSTER_GROUP_ENUM_NODES","features":[112]},{"name":"CLUSTER_GROUP_PRIORITY","features":[112]},{"name":"CLUSTER_GROUP_STATE","features":[112]},{"name":"CLUSTER_GROUP_WAIT_DELAY","features":[112]},{"name":"CLUSTER_HANG_RECOVERY_ACTION_KEYNAME","features":[112]},{"name":"CLUSTER_HANG_TIMEOUT_KEYNAME","features":[112]},{"name":"CLUSTER_HEALTH_FAULT","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ARGS","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ARRAY","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION_LABEL","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE_LABEL","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE_LABEL","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS_LABEL","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ID","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_ID_LABEL","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_PROPERTY_NAME","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER_LABEL","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED","features":[112]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED_LABEL","features":[112]},{"name":"CLUSTER_INSTALLED","features":[112]},{"name":"CLUSTER_IP_ENTRY","features":[112]},{"name":"CLUSTER_MEMBERSHIP_INFO","features":[3,112]},{"name":"CLUSTER_MGMT_POINT_RESTYPE","features":[112]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_AUTO","features":[112]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_DNN","features":[112]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_SNN","features":[112]},{"name":"CLUSTER_MGMT_POINT_TYPE","features":[112]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO","features":[112]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO_ONLY","features":[112]},{"name":"CLUSTER_MGMT_POINT_TYPE_DNS_ONLY","features":[112]},{"name":"CLUSTER_MGMT_POINT_TYPE_NONE","features":[112]},{"name":"CLUSTER_NAME_AUTO_BALANCER_LEVEL","features":[112]},{"name":"CLUSTER_NAME_AUTO_BALANCER_MODE","features":[112]},{"name":"CLUSTER_NAME_PREFERRED_SITE","features":[112]},{"name":"CLUSTER_NETINTERFACE_STATE","features":[112]},{"name":"CLUSTER_NETWORK_ENUM","features":[112]},{"name":"CLUSTER_NETWORK_ENUM_ALL","features":[112]},{"name":"CLUSTER_NETWORK_ENUM_NETINTERFACES","features":[112]},{"name":"CLUSTER_NETWORK_ROLE","features":[112]},{"name":"CLUSTER_NETWORK_STATE","features":[112]},{"name":"CLUSTER_NODE_DRAIN_STATUS","features":[112]},{"name":"CLUSTER_NODE_ENUM","features":[112]},{"name":"CLUSTER_NODE_ENUM_ALL","features":[112]},{"name":"CLUSTER_NODE_ENUM_GROUPS","features":[112]},{"name":"CLUSTER_NODE_ENUM_NETINTERFACES","features":[112]},{"name":"CLUSTER_NODE_ENUM_PREFERRED_GROUPS","features":[112]},{"name":"CLUSTER_NODE_RESUME_FAILBACK_TYPE","features":[112]},{"name":"CLUSTER_NODE_STATE","features":[112]},{"name":"CLUSTER_NODE_STATUS","features":[112]},{"name":"CLUSTER_NOTIFICATIONS_V1","features":[112]},{"name":"CLUSTER_NOTIFICATIONS_V2","features":[112]},{"name":"CLUSTER_NOTIFICATIONS_VERSION","features":[112]},{"name":"CLUSTER_OBJECT_TYPE","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_AFFINITYRULE","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_CLUSTER","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_FAULTDOMAIN","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_GROUP","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_GROUPSET","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK_INTERFACE","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_NODE","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_NONE","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_QUORUM","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_REGISTRY","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE_TYPE","features":[112]},{"name":"CLUSTER_OBJECT_TYPE_SHARED_VOLUME","features":[112]},{"name":"CLUSTER_PROPERTY_FORMAT","features":[112]},{"name":"CLUSTER_PROPERTY_SYNTAX","features":[112]},{"name":"CLUSTER_PROPERTY_TYPE","features":[112]},{"name":"CLUSTER_QUORUM_LOST","features":[112]},{"name":"CLUSTER_QUORUM_MAINTAINED","features":[112]},{"name":"CLUSTER_QUORUM_TYPE","features":[112]},{"name":"CLUSTER_QUORUM_VALUE","features":[112]},{"name":"CLUSTER_READ_BATCH_COMMAND","features":[112]},{"name":"CLUSTER_REG_COMMAND","features":[112]},{"name":"CLUSTER_REQUEST_REPLY_TIMEOUT","features":[112]},{"name":"CLUSTER_RESOURCE_APPLICATION_STATE","features":[112]},{"name":"CLUSTER_RESOURCE_CLASS","features":[112]},{"name":"CLUSTER_RESOURCE_CREATE_FLAGS","features":[112]},{"name":"CLUSTER_RESOURCE_DEFAULT_MONITOR","features":[112]},{"name":"CLUSTER_RESOURCE_EMBEDDED_FAILURE_ACTION","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM_ALL","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM_DEPENDS","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION_1","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM_NODES","features":[112]},{"name":"CLUSTER_RESOURCE_ENUM_PROVIDES","features":[112]},{"name":"CLUSTER_RESOURCE_RESTART_ACTION","features":[112]},{"name":"CLUSTER_RESOURCE_SEPARATE_MONITOR","features":[112]},{"name":"CLUSTER_RESOURCE_STATE","features":[112]},{"name":"CLUSTER_RESOURCE_STATE_CHANGE_REASON","features":[112]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM","features":[112]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_ALL","features":[112]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_NODES","features":[112]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_RESOURCES","features":[112]},{"name":"CLUSTER_RESOURCE_TYPE_SPECIFIC_V2","features":[112]},{"name":"CLUSTER_RESOURCE_VALID_FLAGS","features":[112]},{"name":"CLUSTER_ROLE","features":[112]},{"name":"CLUSTER_ROLE_STATE","features":[112]},{"name":"CLUSTER_RUNNING","features":[112]},{"name":"CLUSTER_S2D_BUS_TYPES","features":[112]},{"name":"CLUSTER_S2D_CACHE_BEHAVIOR_FLAGS","features":[112]},{"name":"CLUSTER_S2D_CACHE_DESIRED_STATE","features":[112]},{"name":"CLUSTER_S2D_CACHE_FLASH_RESERVE_PERCENT","features":[112]},{"name":"CLUSTER_S2D_CACHE_METADATA_RESERVE","features":[112]},{"name":"CLUSTER_S2D_CACHE_PAGE_SIZE_KBYTES","features":[112]},{"name":"CLUSTER_S2D_ENABLED","features":[112]},{"name":"CLUSTER_S2D_IO_LATENCY_THRESHOLD","features":[112]},{"name":"CLUSTER_S2D_OPTIMIZATIONS","features":[112]},{"name":"CLUSTER_SETUP_PHASE","features":[112]},{"name":"CLUSTER_SETUP_PHASE_SEVERITY","features":[112]},{"name":"CLUSTER_SETUP_PHASE_TYPE","features":[112]},{"name":"CLUSTER_SET_ACCESS_TYPE_ALLOWED","features":[112]},{"name":"CLUSTER_SET_ACCESS_TYPE_DENIED","features":[112]},{"name":"CLUSTER_SET_PASSWORD_STATUS","features":[3,112]},{"name":"CLUSTER_SHARED_VOLUMES_ROOT","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_BACKUP_STATE","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_GUID_INPUT","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_GUID_NAME","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_NAME","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_TYPE","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_VOLUME","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_SNAPSHOT_STATE","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_STATE","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO_EX","features":[112]},{"name":"CLUSTER_SHARED_VOLUME_VSS_WRITER_OPERATION_TIMEOUT","features":[112]},{"name":"CLUSTER_STORAGENODE_STATE","features":[112]},{"name":"CLUSTER_UPGRADE_PHASE","features":[112]},{"name":"CLUSTER_VALIDATE_CSV_FILENAME","features":[112]},{"name":"CLUSTER_VALIDATE_DIRECTORY","features":[112]},{"name":"CLUSTER_VALIDATE_NETNAME","features":[112]},{"name":"CLUSTER_VALIDATE_PATH","features":[112]},{"name":"CLUSTER_VERSION_FLAG_MIXED_MODE","features":[112]},{"name":"CLUSTER_VERSION_UNKNOWN","features":[112]},{"name":"CLUSTER_WITNESS_DATABASE_WRITE_TIMEOUT","features":[112]},{"name":"CLUSTER_WITNESS_FAILED_RESTART_INTERVAL","features":[112]},{"name":"CLUS_ACCESS_ANY","features":[112]},{"name":"CLUS_ACCESS_READ","features":[112]},{"name":"CLUS_ACCESS_WRITE","features":[112]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_FAULT_DOMAIN","features":[112]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_NODE","features":[112]},{"name":"CLUS_AFFINITY_RULE_MAX","features":[112]},{"name":"CLUS_AFFINITY_RULE_MIN","features":[112]},{"name":"CLUS_AFFINITY_RULE_NONE","features":[112]},{"name":"CLUS_AFFINITY_RULE_SAME_FAULT_DOMAIN","features":[112]},{"name":"CLUS_AFFINITY_RULE_SAME_NODE","features":[112]},{"name":"CLUS_AFFINITY_RULE_TYPE","features":[112]},{"name":"CLUS_CHARACTERISTICS","features":[112]},{"name":"CLUS_CHAR_BROADCAST_DELETE","features":[112]},{"name":"CLUS_CHAR_CLONES","features":[112]},{"name":"CLUS_CHAR_COEXIST_IN_SHARED_VOLUME_GROUP","features":[112]},{"name":"CLUS_CHAR_DELETE_REQUIRES_ALL_NODES","features":[112]},{"name":"CLUS_CHAR_DRAIN_LOCAL_OFFLINE","features":[112]},{"name":"CLUS_CHAR_INFRASTRUCTURE","features":[112]},{"name":"CLUS_CHAR_LOCAL_QUORUM","features":[112]},{"name":"CLUS_CHAR_LOCAL_QUORUM_DEBUG","features":[112]},{"name":"CLUS_CHAR_MONITOR_DETACH","features":[112]},{"name":"CLUS_CHAR_MONITOR_REATTACH","features":[112]},{"name":"CLUS_CHAR_NOTIFY_NEW_OWNER","features":[112]},{"name":"CLUS_CHAR_NOT_PREEMPTABLE","features":[112]},{"name":"CLUS_CHAR_OPERATION_CONTEXT","features":[112]},{"name":"CLUS_CHAR_PLACEMENT_DATA","features":[112]},{"name":"CLUS_CHAR_QUORUM","features":[112]},{"name":"CLUS_CHAR_REQUIRES_STATE_CHANGE_REASON","features":[112]},{"name":"CLUS_CHAR_SINGLE_CLUSTER_INSTANCE","features":[112]},{"name":"CLUS_CHAR_SINGLE_GROUP_INSTANCE","features":[112]},{"name":"CLUS_CHAR_SUPPORTS_UNMONITORED_STATE","features":[112]},{"name":"CLUS_CHAR_UNKNOWN","features":[112]},{"name":"CLUS_CHAR_VETO_DRAIN","features":[112]},{"name":"CLUS_CHKDSK_INFO","features":[112]},{"name":"CLUS_CREATE_CRYPT_CONTAINER_NOT_FOUND","features":[112]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_INPUT","features":[112]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT","features":[112]},{"name":"CLUS_CSV_MAINTENANCE_MODE_INFO","features":[3,112]},{"name":"CLUS_CSV_VOLUME_INFO","features":[112]},{"name":"CLUS_CSV_VOLUME_NAME","features":[112]},{"name":"CLUS_DISK_NUMBER_INFO","features":[112]},{"name":"CLUS_DNN_LEADER_STATUS","features":[3,112]},{"name":"CLUS_DNN_SODAFS_CLONE_STATUS","features":[112]},{"name":"CLUS_FLAGS","features":[112]},{"name":"CLUS_FLAG_CORE","features":[112]},{"name":"CLUS_FORCE_QUORUM_INFO","features":[112]},{"name":"CLUS_FTSET_INFO","features":[112]},{"name":"CLUS_GLOBAL","features":[112]},{"name":"CLUS_GROUP_DO_NOT_START","features":[112]},{"name":"CLUS_GROUP_START_ALLOWED","features":[112]},{"name":"CLUS_GROUP_START_ALWAYS","features":[112]},{"name":"CLUS_GROUP_START_SETTING","features":[112]},{"name":"CLUS_GRP_MOVE_ALLOWED","features":[112]},{"name":"CLUS_GRP_MOVE_LOCKED","features":[112]},{"name":"CLUS_HYBRID_QUORUM","features":[112]},{"name":"CLUS_MAINTENANCE_MODE_INFO","features":[3,112]},{"name":"CLUS_MAINTENANCE_MODE_INFOEX","features":[3,112]},{"name":"CLUS_MODIFY","features":[112]},{"name":"CLUS_NAME_RES_TYPE_CLUSTER_GROUPID","features":[112]},{"name":"CLUS_NAME_RES_TYPE_DATA_RESID","features":[112]},{"name":"CLUS_NAME_RES_TYPE_LOG_MULTIPLE","features":[112]},{"name":"CLUS_NAME_RES_TYPE_LOG_RESID","features":[112]},{"name":"CLUS_NAME_RES_TYPE_LOG_VOLUME","features":[112]},{"name":"CLUS_NAME_RES_TYPE_MINIMUM_LOG_SIZE","features":[112]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUPID","features":[112]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUP_TYPE","features":[112]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_RESID","features":[112]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_VOLUMES","features":[112]},{"name":"CLUS_NAME_RES_TYPE_TARGET_RESID","features":[112]},{"name":"CLUS_NAME_RES_TYPE_TARGET_VOLUMES","features":[112]},{"name":"CLUS_NAME_RES_TYPE_UNIT_LOG_SIZE_CHANGE","features":[112]},{"name":"CLUS_NETNAME_IP_INFO_ENTRY","features":[112]},{"name":"CLUS_NETNAME_IP_INFO_FOR_MULTICHANNEL","features":[112]},{"name":"CLUS_NETNAME_PWD_INFO","features":[112]},{"name":"CLUS_NETNAME_PWD_INFOEX","features":[112]},{"name":"CLUS_NETNAME_VS_TOKEN_INFO","features":[3,112]},{"name":"CLUS_NODE_MAJORITY_QUORUM","features":[112]},{"name":"CLUS_NOT_GLOBAL","features":[112]},{"name":"CLUS_NO_MODIFY","features":[112]},{"name":"CLUS_OBJECT_AFFINITYRULE","features":[112]},{"name":"CLUS_OBJECT_CLUSTER","features":[112]},{"name":"CLUS_OBJECT_GROUP","features":[112]},{"name":"CLUS_OBJECT_GROUPSET","features":[112]},{"name":"CLUS_OBJECT_INVALID","features":[112]},{"name":"CLUS_OBJECT_NETINTERFACE","features":[112]},{"name":"CLUS_OBJECT_NETWORK","features":[112]},{"name":"CLUS_OBJECT_NODE","features":[112]},{"name":"CLUS_OBJECT_RESOURCE","features":[112]},{"name":"CLUS_OBJECT_RESOURCE_TYPE","features":[112]},{"name":"CLUS_OBJECT_USER","features":[112]},{"name":"CLUS_PARTITION_INFO","features":[112]},{"name":"CLUS_PARTITION_INFO_EX","features":[112]},{"name":"CLUS_PARTITION_INFO_EX2","features":[112]},{"name":"CLUS_PROVIDER_STATE_CHANGE_INFO","features":[112]},{"name":"CLUS_RESCLASS_NETWORK","features":[112]},{"name":"CLUS_RESCLASS_STORAGE","features":[112]},{"name":"CLUS_RESCLASS_UNKNOWN","features":[112]},{"name":"CLUS_RESCLASS_USER","features":[112]},{"name":"CLUS_RESDLL_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[112]},{"name":"CLUS_RESDLL_OFFLINE_DUE_TO_EMBEDDED_FAILURE","features":[112]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_NETWORK_CONNECTIVITY","features":[112]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_RESOURCE_STATUS","features":[112]},{"name":"CLUS_RESDLL_OFFLINE_QUEUE_ENABLED","features":[112]},{"name":"CLUS_RESDLL_OFFLINE_RETURNING_TO_SOURCE_NODE_BECAUSE_OF_ERROR","features":[112]},{"name":"CLUS_RESDLL_OFFLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[112]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_NETWORK_CONNECTIVITY","features":[112]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_RESOURCE_STATUS","features":[112]},{"name":"CLUS_RESDLL_ONLINE_RECOVER_MONITOR_STATE","features":[112]},{"name":"CLUS_RESDLL_ONLINE_RESTORE_ONLINE_STATE","features":[112]},{"name":"CLUS_RESDLL_ONLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[112]},{"name":"CLUS_RESDLL_OPEN_DONT_DELETE_TEMP_DISK","features":[112]},{"name":"CLUS_RESDLL_OPEN_RECOVER_MONITOR_STATE","features":[112]},{"name":"CLUS_RESOURCE_CLASS_INFO","features":[112]},{"name":"CLUS_RESSUBCLASS","features":[112]},{"name":"CLUS_RESSUBCLASS_NETWORK","features":[112]},{"name":"CLUS_RESSUBCLASS_NETWORK_INTERNET_PROTOCOL","features":[112]},{"name":"CLUS_RESSUBCLASS_SHARED","features":[112]},{"name":"CLUS_RESSUBCLASS_STORAGE","features":[112]},{"name":"CLUS_RESSUBCLASS_STORAGE_DISK","features":[112]},{"name":"CLUS_RESSUBCLASS_STORAGE_REPLICATION","features":[112]},{"name":"CLUS_RESSUBCLASS_STORAGE_SHARED_BUS","features":[112]},{"name":"CLUS_RESTYPE_NAME_CAU","features":[112]},{"name":"CLUS_RESTYPE_NAME_CLOUD_WITNESS","features":[112]},{"name":"CLUS_RESTYPE_NAME_CONTAINER","features":[112]},{"name":"CLUS_RESTYPE_NAME_CROSS_CLUSTER","features":[112]},{"name":"CLUS_RESTYPE_NAME_DFS","features":[112]},{"name":"CLUS_RESTYPE_NAME_DFSR","features":[112]},{"name":"CLUS_RESTYPE_NAME_DHCP","features":[112]},{"name":"CLUS_RESTYPE_NAME_DNN","features":[112]},{"name":"CLUS_RESTYPE_NAME_FILESERVER","features":[112]},{"name":"CLUS_RESTYPE_NAME_FILESHR","features":[112]},{"name":"CLUS_RESTYPE_NAME_FSWITNESS","features":[112]},{"name":"CLUS_RESTYPE_NAME_GENAPP","features":[112]},{"name":"CLUS_RESTYPE_NAME_GENSCRIPT","features":[112]},{"name":"CLUS_RESTYPE_NAME_GENSVC","features":[112]},{"name":"CLUS_RESTYPE_NAME_HARDDISK","features":[112]},{"name":"CLUS_RESTYPE_NAME_HCSVM","features":[112]},{"name":"CLUS_RESTYPE_NAME_HEALTH_SERVICE","features":[112]},{"name":"CLUS_RESTYPE_NAME_IPADDR","features":[112]},{"name":"CLUS_RESTYPE_NAME_IPV6_NATIVE","features":[112]},{"name":"CLUS_RESTYPE_NAME_IPV6_TUNNEL","features":[112]},{"name":"CLUS_RESTYPE_NAME_ISCSITARGET","features":[112]},{"name":"CLUS_RESTYPE_NAME_ISNS","features":[112]},{"name":"CLUS_RESTYPE_NAME_MSDTC","features":[112]},{"name":"CLUS_RESTYPE_NAME_MSMQ","features":[112]},{"name":"CLUS_RESTYPE_NAME_MSMQ_TRIGGER","features":[112]},{"name":"CLUS_RESTYPE_NAME_NAT","features":[112]},{"name":"CLUS_RESTYPE_NAME_NETNAME","features":[112]},{"name":"CLUS_RESTYPE_NAME_NETWORK_FILE_SYSTEM","features":[112]},{"name":"CLUS_RESTYPE_NAME_NEW_MSMQ","features":[112]},{"name":"CLUS_RESTYPE_NAME_NFS","features":[112]},{"name":"CLUS_RESTYPE_NAME_NFS_MSNS","features":[112]},{"name":"CLUS_RESTYPE_NAME_NFS_V2","features":[112]},{"name":"CLUS_RESTYPE_NAME_NV_PROVIDER_ADDRESS","features":[112]},{"name":"CLUS_RESTYPE_NAME_PHYS_DISK","features":[112]},{"name":"CLUS_RESTYPE_NAME_PRTSPLR","features":[112]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_MASTER","features":[112]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_WORKER","features":[112]},{"name":"CLUS_RESTYPE_NAME_SDDC_MANAGEMENT","features":[112]},{"name":"CLUS_RESTYPE_NAME_SODAFILESERVER","features":[112]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POLICIES","features":[112]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POOL","features":[112]},{"name":"CLUS_RESTYPE_NAME_STORAGE_REPLICA","features":[112]},{"name":"CLUS_RESTYPE_NAME_STORQOS","features":[112]},{"name":"CLUS_RESTYPE_NAME_TASKSCHEDULER","features":[112]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV4","features":[112]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV6","features":[112]},{"name":"CLUS_RESTYPE_NAME_VM","features":[112]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_BROKER","features":[112]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_COORDINATOR","features":[112]},{"name":"CLUS_RESTYPE_NAME_VM_CONFIG","features":[112]},{"name":"CLUS_RESTYPE_NAME_VM_WMI","features":[112]},{"name":"CLUS_RESTYPE_NAME_VSSTASK","features":[112]},{"name":"CLUS_RESTYPE_NAME_WINS","features":[112]},{"name":"CLUS_RES_NAME_SCALEOUT_MASTER","features":[112]},{"name":"CLUS_RES_NAME_SCALEOUT_WORKER","features":[112]},{"name":"CLUS_SCSI_ADDRESS","features":[112]},{"name":"CLUS_SET_MAINTENANCE_MODE_INPUT","features":[3,112]},{"name":"CLUS_SHARED_VOLUME_BACKUP_MODE","features":[112]},{"name":"CLUS_STARTING_PARAMS","features":[3,112]},{"name":"CLUS_STORAGE_GET_AVAILABLE_DRIVELETTERS","features":[112]},{"name":"CLUS_STORAGE_REMAP_DRIVELETTER","features":[112]},{"name":"CLUS_STORAGE_SET_DRIVELETTER","features":[112]},{"name":"CLUS_WORKER","features":[3,112]},{"name":"CREATEDC_PRESENT","features":[112]},{"name":"CREATE_CLUSTER_CONFIG","features":[3,112]},{"name":"CREATE_CLUSTER_MAJOR_VERSION_MASK","features":[112]},{"name":"CREATE_CLUSTER_NAME_ACCOUNT","features":[3,112]},{"name":"CREATE_CLUSTER_VERSION","features":[112]},{"name":"CTCTL_GET_FAULT_DOMAIN_STATE","features":[112]},{"name":"CTCTL_GET_ROUTESTATUS_BASIC","features":[112]},{"name":"CTCTL_GET_ROUTESTATUS_EXTENDED","features":[112]},{"name":"CanResourceBeDependent","features":[3,112]},{"name":"CancelClusterGroupOperation","features":[112]},{"name":"ChangeClusterResourceGroup","features":[112]},{"name":"ChangeClusterResourceGroupEx","features":[112]},{"name":"ChangeClusterResourceGroupEx2","features":[112]},{"name":"CloseCluster","features":[3,112]},{"name":"CloseClusterCryptProvider","features":[112]},{"name":"CloseClusterGroup","features":[3,112]},{"name":"CloseClusterGroupSet","features":[3,112]},{"name":"CloseClusterNetInterface","features":[3,112]},{"name":"CloseClusterNetwork","features":[3,112]},{"name":"CloseClusterNode","features":[3,112]},{"name":"CloseClusterNotifyPort","features":[3,112]},{"name":"CloseClusterResource","features":[3,112]},{"name":"ClusAddClusterHealthFault","features":[112]},{"name":"ClusApplication","features":[112]},{"name":"ClusCryptoKeys","features":[112]},{"name":"ClusDisk","features":[112]},{"name":"ClusDisks","features":[112]},{"name":"ClusGetClusterHealthFaults","features":[112]},{"name":"ClusGroupTypeAvailableStorage","features":[112]},{"name":"ClusGroupTypeClusterUpdateAgent","features":[112]},{"name":"ClusGroupTypeCoreCluster","features":[112]},{"name":"ClusGroupTypeCoreSddc","features":[112]},{"name":"ClusGroupTypeCrossClusterOrchestrator","features":[112]},{"name":"ClusGroupTypeDhcpServer","features":[112]},{"name":"ClusGroupTypeDtc","features":[112]},{"name":"ClusGroupTypeFileServer","features":[112]},{"name":"ClusGroupTypeGenericApplication","features":[112]},{"name":"ClusGroupTypeGenericScript","features":[112]},{"name":"ClusGroupTypeGenericService","features":[112]},{"name":"ClusGroupTypeIScsiNameService","features":[112]},{"name":"ClusGroupTypeIScsiTarget","features":[112]},{"name":"ClusGroupTypeInfrastructureFileServer","features":[112]},{"name":"ClusGroupTypeMsmq","features":[112]},{"name":"ClusGroupTypePrintServer","features":[112]},{"name":"ClusGroupTypeScaleoutCluster","features":[112]},{"name":"ClusGroupTypeScaleoutFileServer","features":[112]},{"name":"ClusGroupTypeSharedVolume","features":[112]},{"name":"ClusGroupTypeStandAloneDfs","features":[112]},{"name":"ClusGroupTypeStoragePool","features":[112]},{"name":"ClusGroupTypeStorageReplica","features":[112]},{"name":"ClusGroupTypeTaskScheduler","features":[112]},{"name":"ClusGroupTypeTemporary","features":[112]},{"name":"ClusGroupTypeTsSessionBroker","features":[112]},{"name":"ClusGroupTypeUnknown","features":[112]},{"name":"ClusGroupTypeVMReplicaBroker","features":[112]},{"name":"ClusGroupTypeVMReplicaCoordinator","features":[112]},{"name":"ClusGroupTypeVirtualMachine","features":[112]},{"name":"ClusGroupTypeWins","features":[112]},{"name":"ClusNetInterface","features":[112]},{"name":"ClusNetInterfaces","features":[112]},{"name":"ClusNetwork","features":[112]},{"name":"ClusNetworkNetInterfaces","features":[112]},{"name":"ClusNetworks","features":[112]},{"name":"ClusNode","features":[112]},{"name":"ClusNodeNetInterfaces","features":[112]},{"name":"ClusNodes","features":[112]},{"name":"ClusPartition","features":[112]},{"name":"ClusPartitionEx","features":[112]},{"name":"ClusPartitions","features":[112]},{"name":"ClusProperties","features":[112]},{"name":"ClusProperty","features":[112]},{"name":"ClusPropertyValue","features":[112]},{"name":"ClusPropertyValueData","features":[112]},{"name":"ClusPropertyValues","features":[112]},{"name":"ClusRefObject","features":[112]},{"name":"ClusRegistryKeys","features":[112]},{"name":"ClusRemoveClusterHealthFault","features":[112]},{"name":"ClusResDependencies","features":[112]},{"name":"ClusResDependents","features":[112]},{"name":"ClusResGroup","features":[112]},{"name":"ClusResGroupPreferredOwnerNodes","features":[112]},{"name":"ClusResGroupResources","features":[112]},{"name":"ClusResGroups","features":[112]},{"name":"ClusResPossibleOwnerNodes","features":[112]},{"name":"ClusResType","features":[112]},{"name":"ClusResTypePossibleOwnerNodes","features":[112]},{"name":"ClusResTypeResources","features":[112]},{"name":"ClusResTypes","features":[112]},{"name":"ClusResource","features":[112]},{"name":"ClusResources","features":[112]},{"name":"ClusScsiAddress","features":[112]},{"name":"ClusVersion","features":[112]},{"name":"ClusWorkerCheckTerminate","features":[3,112]},{"name":"ClusWorkerCreate","features":[3,112]},{"name":"ClusWorkerTerminate","features":[3,112]},{"name":"ClusWorkerTerminateEx","features":[3,112]},{"name":"ClusWorkersTerminate","features":[3,112]},{"name":"ClusapiSetReasonHandler","features":[3,112]},{"name":"Cluster","features":[112]},{"name":"ClusterAddGroupToAffinityRule","features":[112]},{"name":"ClusterAddGroupToGroupSet","features":[112]},{"name":"ClusterAddGroupToGroupSetWithDomains","features":[112]},{"name":"ClusterAddGroupToGroupSetWithDomainsEx","features":[112]},{"name":"ClusterAffinityRuleControl","features":[112]},{"name":"ClusterClearBackupStateForSharedVolume","features":[112]},{"name":"ClusterCloseEnum","features":[112]},{"name":"ClusterCloseEnumEx","features":[112]},{"name":"ClusterControl","features":[112]},{"name":"ClusterControlEx","features":[112]},{"name":"ClusterCreateAffinityRule","features":[112]},{"name":"ClusterDecrypt","features":[112]},{"name":"ClusterEncrypt","features":[112]},{"name":"ClusterEnum","features":[112]},{"name":"ClusterEnumEx","features":[112]},{"name":"ClusterGetEnumCount","features":[112]},{"name":"ClusterGetEnumCountEx","features":[112]},{"name":"ClusterGetVolumeNameForVolumeMountPoint","features":[3,112]},{"name":"ClusterGetVolumePathName","features":[3,112]},{"name":"ClusterGroupAllowFailback","features":[112]},{"name":"ClusterGroupCloseEnum","features":[112]},{"name":"ClusterGroupCloseEnumEx","features":[112]},{"name":"ClusterGroupControl","features":[112]},{"name":"ClusterGroupControlEx","features":[112]},{"name":"ClusterGroupEnum","features":[112]},{"name":"ClusterGroupEnumEx","features":[112]},{"name":"ClusterGroupFailbackTypeCount","features":[112]},{"name":"ClusterGroupFailed","features":[112]},{"name":"ClusterGroupGetEnumCount","features":[112]},{"name":"ClusterGroupGetEnumCountEx","features":[112]},{"name":"ClusterGroupOffline","features":[112]},{"name":"ClusterGroupOnline","features":[112]},{"name":"ClusterGroupOpenEnum","features":[112]},{"name":"ClusterGroupOpenEnumEx","features":[112]},{"name":"ClusterGroupPartialOnline","features":[112]},{"name":"ClusterGroupPending","features":[112]},{"name":"ClusterGroupPreventFailback","features":[112]},{"name":"ClusterGroupSetCloseEnum","features":[112]},{"name":"ClusterGroupSetControl","features":[112]},{"name":"ClusterGroupSetControlEx","features":[112]},{"name":"ClusterGroupSetEnum","features":[112]},{"name":"ClusterGroupSetGetEnumCount","features":[112]},{"name":"ClusterGroupSetOpenEnum","features":[112]},{"name":"ClusterGroupStateUnknown","features":[112]},{"name":"ClusterIsPathOnSharedVolume","features":[3,112]},{"name":"ClusterNames","features":[112]},{"name":"ClusterNetInterfaceCloseEnum","features":[112]},{"name":"ClusterNetInterfaceControl","features":[112]},{"name":"ClusterNetInterfaceControlEx","features":[112]},{"name":"ClusterNetInterfaceEnum","features":[112]},{"name":"ClusterNetInterfaceFailed","features":[112]},{"name":"ClusterNetInterfaceOpenEnum","features":[112]},{"name":"ClusterNetInterfaceStateUnknown","features":[112]},{"name":"ClusterNetInterfaceUnavailable","features":[112]},{"name":"ClusterNetInterfaceUnreachable","features":[112]},{"name":"ClusterNetInterfaceUp","features":[112]},{"name":"ClusterNetworkCloseEnum","features":[112]},{"name":"ClusterNetworkControl","features":[112]},{"name":"ClusterNetworkControlEx","features":[112]},{"name":"ClusterNetworkDown","features":[112]},{"name":"ClusterNetworkEnum","features":[112]},{"name":"ClusterNetworkGetEnumCount","features":[112]},{"name":"ClusterNetworkOpenEnum","features":[112]},{"name":"ClusterNetworkPartitioned","features":[112]},{"name":"ClusterNetworkRoleClientAccess","features":[112]},{"name":"ClusterNetworkRoleInternalAndClient","features":[112]},{"name":"ClusterNetworkRoleInternalUse","features":[112]},{"name":"ClusterNetworkRoleNone","features":[112]},{"name":"ClusterNetworkStateUnknown","features":[112]},{"name":"ClusterNetworkUnavailable","features":[112]},{"name":"ClusterNetworkUp","features":[112]},{"name":"ClusterNodeCloseEnum","features":[112]},{"name":"ClusterNodeCloseEnumEx","features":[112]},{"name":"ClusterNodeControl","features":[112]},{"name":"ClusterNodeControlEx","features":[112]},{"name":"ClusterNodeDown","features":[112]},{"name":"ClusterNodeDrainStatusCount","features":[112]},{"name":"ClusterNodeEnum","features":[112]},{"name":"ClusterNodeEnumEx","features":[112]},{"name":"ClusterNodeGetEnumCount","features":[112]},{"name":"ClusterNodeGetEnumCountEx","features":[112]},{"name":"ClusterNodeJoining","features":[112]},{"name":"ClusterNodeOpenEnum","features":[112]},{"name":"ClusterNodeOpenEnumEx","features":[112]},{"name":"ClusterNodePaused","features":[112]},{"name":"ClusterNodeReplacement","features":[112]},{"name":"ClusterNodeResumeFailbackTypeCount","features":[112]},{"name":"ClusterNodeStateUnknown","features":[112]},{"name":"ClusterNodeUp","features":[112]},{"name":"ClusterOpenEnum","features":[112]},{"name":"ClusterOpenEnumEx","features":[112]},{"name":"ClusterPrepareSharedVolumeForBackup","features":[112]},{"name":"ClusterRegBatchAddCommand","features":[112]},{"name":"ClusterRegBatchCloseNotification","features":[112]},{"name":"ClusterRegBatchReadCommand","features":[112]},{"name":"ClusterRegCloseBatch","features":[3,112]},{"name":"ClusterRegCloseBatchEx","features":[112]},{"name":"ClusterRegCloseBatchNotifyPort","features":[112]},{"name":"ClusterRegCloseKey","features":[112,51]},{"name":"ClusterRegCloseReadBatch","features":[112]},{"name":"ClusterRegCloseReadBatchEx","features":[112]},{"name":"ClusterRegCloseReadBatchReply","features":[112]},{"name":"ClusterRegCreateBatch","features":[112,51]},{"name":"ClusterRegCreateBatchNotifyPort","features":[112,51]},{"name":"ClusterRegCreateKey","features":[3,112,6,51]},{"name":"ClusterRegCreateKeyEx","features":[3,112,6,51]},{"name":"ClusterRegCreateReadBatch","features":[112,51]},{"name":"ClusterRegDeleteKey","features":[112,51]},{"name":"ClusterRegDeleteKeyEx","features":[112,51]},{"name":"ClusterRegDeleteValue","features":[112,51]},{"name":"ClusterRegDeleteValueEx","features":[112,51]},{"name":"ClusterRegEnumKey","features":[3,112,51]},{"name":"ClusterRegEnumValue","features":[112,51]},{"name":"ClusterRegGetBatchNotification","features":[112]},{"name":"ClusterRegGetKeySecurity","features":[112,6,51]},{"name":"ClusterRegOpenKey","features":[112,51]},{"name":"ClusterRegQueryInfoKey","features":[3,112,51]},{"name":"ClusterRegQueryValue","features":[112,51]},{"name":"ClusterRegReadBatchAddCommand","features":[112]},{"name":"ClusterRegReadBatchReplyNextCommand","features":[112]},{"name":"ClusterRegSetKeySecurity","features":[112,6,51]},{"name":"ClusterRegSetKeySecurityEx","features":[112,6,51]},{"name":"ClusterRegSetValue","features":[112,51]},{"name":"ClusterRegSetValueEx","features":[112,51]},{"name":"ClusterRegSyncDatabase","features":[112]},{"name":"ClusterRemoveAffinityRule","features":[112]},{"name":"ClusterRemoveGroupFromAffinityRule","features":[112]},{"name":"ClusterRemoveGroupFromGroupSet","features":[112]},{"name":"ClusterRemoveGroupFromGroupSetEx","features":[112]},{"name":"ClusterResourceApplicationOSHeartBeat","features":[112]},{"name":"ClusterResourceApplicationReady","features":[112]},{"name":"ClusterResourceApplicationStateUnknown","features":[112]},{"name":"ClusterResourceCloseEnum","features":[112]},{"name":"ClusterResourceCloseEnumEx","features":[112]},{"name":"ClusterResourceControl","features":[112]},{"name":"ClusterResourceControlAsUser","features":[112]},{"name":"ClusterResourceControlAsUserEx","features":[112]},{"name":"ClusterResourceControlEx","features":[112]},{"name":"ClusterResourceDontRestart","features":[112]},{"name":"ClusterResourceEmbeddedFailureActionLogOnly","features":[112]},{"name":"ClusterResourceEmbeddedFailureActionNone","features":[112]},{"name":"ClusterResourceEmbeddedFailureActionRecover","features":[112]},{"name":"ClusterResourceEnum","features":[112]},{"name":"ClusterResourceEnumEx","features":[112]},{"name":"ClusterResourceFailed","features":[112]},{"name":"ClusterResourceGetEnumCount","features":[112]},{"name":"ClusterResourceGetEnumCountEx","features":[112]},{"name":"ClusterResourceInherited","features":[112]},{"name":"ClusterResourceInitializing","features":[112]},{"name":"ClusterResourceOffline","features":[112]},{"name":"ClusterResourceOfflinePending","features":[112]},{"name":"ClusterResourceOnline","features":[112]},{"name":"ClusterResourceOnlinePending","features":[112]},{"name":"ClusterResourceOpenEnum","features":[112]},{"name":"ClusterResourceOpenEnumEx","features":[112]},{"name":"ClusterResourcePending","features":[112]},{"name":"ClusterResourceRestartActionCount","features":[112]},{"name":"ClusterResourceRestartNoNotify","features":[112]},{"name":"ClusterResourceRestartNotify","features":[112]},{"name":"ClusterResourceStateUnknown","features":[112]},{"name":"ClusterResourceTypeCloseEnum","features":[112]},{"name":"ClusterResourceTypeControl","features":[112]},{"name":"ClusterResourceTypeControlAsUser","features":[112]},{"name":"ClusterResourceTypeControlAsUserEx","features":[112]},{"name":"ClusterResourceTypeControlEx","features":[112]},{"name":"ClusterResourceTypeEnum","features":[112]},{"name":"ClusterResourceTypeGetEnumCount","features":[112]},{"name":"ClusterResourceTypeOpenEnum","features":[112]},{"name":"ClusterRoleClustered","features":[112]},{"name":"ClusterRoleDFSReplicatedFolder","features":[112]},{"name":"ClusterRoleDHCP","features":[112]},{"name":"ClusterRoleDTC","features":[112]},{"name":"ClusterRoleDistributedFileSystem","features":[112]},{"name":"ClusterRoleDistributedNetworkName","features":[112]},{"name":"ClusterRoleFileServer","features":[112]},{"name":"ClusterRoleFileShare","features":[112]},{"name":"ClusterRoleFileShareWitness","features":[112]},{"name":"ClusterRoleGenericApplication","features":[112]},{"name":"ClusterRoleGenericScript","features":[112]},{"name":"ClusterRoleGenericService","features":[112]},{"name":"ClusterRoleHardDisk","features":[112]},{"name":"ClusterRoleIPAddress","features":[112]},{"name":"ClusterRoleIPV6Address","features":[112]},{"name":"ClusterRoleIPV6TunnelAddress","features":[112]},{"name":"ClusterRoleISCSINameServer","features":[112]},{"name":"ClusterRoleISCSITargetServer","features":[112]},{"name":"ClusterRoleMSMQ","features":[112]},{"name":"ClusterRoleNFS","features":[112]},{"name":"ClusterRoleNetworkFileSystem","features":[112]},{"name":"ClusterRoleNetworkName","features":[112]},{"name":"ClusterRolePhysicalDisk","features":[112]},{"name":"ClusterRolePrintServer","features":[112]},{"name":"ClusterRoleSODAFileServer","features":[112]},{"name":"ClusterRoleStandAloneNamespaceServer","features":[112]},{"name":"ClusterRoleStoragePool","features":[112]},{"name":"ClusterRoleTaskScheduler","features":[112]},{"name":"ClusterRoleUnclustered","features":[112]},{"name":"ClusterRoleUnknown","features":[112]},{"name":"ClusterRoleVirtualMachine","features":[112]},{"name":"ClusterRoleVirtualMachineConfiguration","features":[112]},{"name":"ClusterRoleVirtualMachineReplicaBroker","features":[112]},{"name":"ClusterRoleVolumeShadowCopyServiceTask","features":[112]},{"name":"ClusterRoleWINS","features":[112]},{"name":"ClusterSetAccountAccess","features":[112]},{"name":"ClusterSetupPhaseAddClusterProperties","features":[112]},{"name":"ClusterSetupPhaseAddNodeToCluster","features":[112]},{"name":"ClusterSetupPhaseCleanupCOs","features":[112]},{"name":"ClusterSetupPhaseCleanupNode","features":[112]},{"name":"ClusterSetupPhaseClusterGroupOnline","features":[112]},{"name":"ClusterSetupPhaseConfigureClusSvc","features":[112]},{"name":"ClusterSetupPhaseConfigureClusterAccount","features":[112]},{"name":"ClusterSetupPhaseContinue","features":[112]},{"name":"ClusterSetupPhaseCoreGroupCleanup","features":[112]},{"name":"ClusterSetupPhaseCreateClusterAccount","features":[112]},{"name":"ClusterSetupPhaseCreateGroups","features":[112]},{"name":"ClusterSetupPhaseCreateIPAddressResources","features":[112]},{"name":"ClusterSetupPhaseCreateNetworkName","features":[112]},{"name":"ClusterSetupPhaseCreateResourceTypes","features":[112]},{"name":"ClusterSetupPhaseDeleteGroup","features":[112]},{"name":"ClusterSetupPhaseEnd","features":[112]},{"name":"ClusterSetupPhaseEvictNode","features":[112]},{"name":"ClusterSetupPhaseFailureCleanup","features":[112]},{"name":"ClusterSetupPhaseFatal","features":[112]},{"name":"ClusterSetupPhaseFormingCluster","features":[112]},{"name":"ClusterSetupPhaseGettingCurrentMembership","features":[112]},{"name":"ClusterSetupPhaseInformational","features":[112]},{"name":"ClusterSetupPhaseInitialize","features":[112]},{"name":"ClusterSetupPhaseMoveGroup","features":[112]},{"name":"ClusterSetupPhaseNodeUp","features":[112]},{"name":"ClusterSetupPhaseOfflineGroup","features":[112]},{"name":"ClusterSetupPhaseQueryClusterNameAccount","features":[112]},{"name":"ClusterSetupPhaseReport","features":[112]},{"name":"ClusterSetupPhaseStart","features":[112]},{"name":"ClusterSetupPhaseStartingClusSvc","features":[112]},{"name":"ClusterSetupPhaseValidateClusDisk","features":[112]},{"name":"ClusterSetupPhaseValidateClusterNameAccount","features":[112]},{"name":"ClusterSetupPhaseValidateNetft","features":[112]},{"name":"ClusterSetupPhaseValidateNodeState","features":[112]},{"name":"ClusterSetupPhaseWarning","features":[112]},{"name":"ClusterSharedVolumeHWSnapshotCompleted","features":[112]},{"name":"ClusterSharedVolumePrepareForFreeze","features":[112]},{"name":"ClusterSharedVolumePrepareForHWSnapshot","features":[112]},{"name":"ClusterSharedVolumeRenameInputTypeNone","features":[112]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeGuid","features":[112]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeId","features":[112]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeName","features":[112]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeOffset","features":[112]},{"name":"ClusterSharedVolumeSetSnapshotState","features":[112]},{"name":"ClusterSharedVolumeSnapshotStateUnknown","features":[112]},{"name":"ClusterStateNotConfigured","features":[112]},{"name":"ClusterStateNotInstalled","features":[112]},{"name":"ClusterStateNotRunning","features":[112]},{"name":"ClusterStateRunning","features":[112]},{"name":"ClusterStorageNodeDown","features":[112]},{"name":"ClusterStorageNodePaused","features":[112]},{"name":"ClusterStorageNodeStarting","features":[112]},{"name":"ClusterStorageNodeStateUnknown","features":[112]},{"name":"ClusterStorageNodeStopping","features":[112]},{"name":"ClusterStorageNodeUp","features":[112]},{"name":"ClusterUpgradeFunctionalLevel","features":[3,112]},{"name":"ClusterUpgradePhaseInitialize","features":[112]},{"name":"ClusterUpgradePhaseInstallingNewComponents","features":[112]},{"name":"ClusterUpgradePhaseUpgradeComplete","features":[112]},{"name":"ClusterUpgradePhaseUpgradingComponents","features":[112]},{"name":"ClusterUpgradePhaseValidatingUpgrade","features":[112]},{"name":"CreateCluster","features":[3,112]},{"name":"CreateClusterAvailabilitySet","features":[3,112]},{"name":"CreateClusterGroup","features":[112]},{"name":"CreateClusterGroupEx","features":[112]},{"name":"CreateClusterGroupSet","features":[112]},{"name":"CreateClusterNameAccount","features":[3,112]},{"name":"CreateClusterNotifyPort","features":[112]},{"name":"CreateClusterNotifyPortV2","features":[112]},{"name":"CreateClusterResource","features":[112]},{"name":"CreateClusterResourceEx","features":[112]},{"name":"CreateClusterResourceType","features":[112]},{"name":"CreateClusterResourceTypeEx","features":[112]},{"name":"DNS_LENGTH","features":[112]},{"name":"DeleteClusterGroup","features":[112]},{"name":"DeleteClusterGroupEx","features":[112]},{"name":"DeleteClusterGroupSet","features":[112]},{"name":"DeleteClusterGroupSetEx","features":[112]},{"name":"DeleteClusterResource","features":[112]},{"name":"DeleteClusterResourceEx","features":[112]},{"name":"DeleteClusterResourceType","features":[112]},{"name":"DeleteClusterResourceTypeEx","features":[112]},{"name":"DestroyCluster","features":[3,112]},{"name":"DestroyClusterGroup","features":[112]},{"name":"DestroyClusterGroupEx","features":[112]},{"name":"DetermineCNOResTypeFromCluster","features":[112]},{"name":"DetermineCNOResTypeFromNodelist","features":[112]},{"name":"DetermineClusterCloudTypeFromCluster","features":[112]},{"name":"DetermineClusterCloudTypeFromNodelist","features":[112]},{"name":"DoNotFailbackGroups","features":[112]},{"name":"DomainNames","features":[112]},{"name":"ENABLE_CLUSTER_SHARED_VOLUMES","features":[112]},{"name":"EvictClusterNode","features":[112]},{"name":"EvictClusterNodeEx","features":[112]},{"name":"EvictClusterNodeEx2","features":[112]},{"name":"FAILURE_TYPE","features":[112]},{"name":"FAILURE_TYPE_EMBEDDED","features":[112]},{"name":"FAILURE_TYPE_GENERAL","features":[112]},{"name":"FAILURE_TYPE_NETWORK_LOSS","features":[112]},{"name":"FE_UPGRADE_VERSION","features":[112]},{"name":"FILESHARE_CHANGE","features":[112]},{"name":"FILESHARE_CHANGE_ADD","features":[112]},{"name":"FILESHARE_CHANGE_DEL","features":[112]},{"name":"FILESHARE_CHANGE_ENUM","features":[112]},{"name":"FILESHARE_CHANGE_LIST","features":[112]},{"name":"FILESHARE_CHANGE_MODIFY","features":[112]},{"name":"FILESHARE_CHANGE_NONE","features":[112]},{"name":"FailClusterResource","features":[112]},{"name":"FailClusterResourceEx","features":[112]},{"name":"FailbackGroupsImmediately","features":[112]},{"name":"FailbackGroupsPerPolicy","features":[112]},{"name":"FreeClusterCrypt","features":[112]},{"name":"FreeClusterHealthFault","features":[112]},{"name":"FreeClusterHealthFaultArray","features":[112]},{"name":"GET_OPERATION_CONTEXT_PARAMS","features":[112]},{"name":"GROUPSET_READY_SETTING_APPLICATION_READY","features":[112]},{"name":"GROUPSET_READY_SETTING_DELAY","features":[112]},{"name":"GROUPSET_READY_SETTING_ONLINE","features":[112]},{"name":"GROUPSET_READY_SETTING_OS_HEARTBEAT","features":[112]},{"name":"GROUP_FAILURE_INFO","features":[112]},{"name":"GROUP_FAILURE_INFO_BUFFER","features":[112]},{"name":"GROUP_FAILURE_INFO_VERSION_1","features":[112]},{"name":"GRP_PLACEMENT_OPTIONS","features":[112]},{"name":"GRP_PLACEMENT_OPTIONS_ALL","features":[112]},{"name":"GRP_PLACEMENT_OPTIONS_DEFAULT","features":[112]},{"name":"GRP_PLACEMENT_OPTIONS_DISABLE_AUTOBALANCING","features":[112]},{"name":"GRP_PLACEMENT_OPTIONS_MIN_VALUE","features":[112]},{"name":"GUID_PRESENT","features":[112]},{"name":"GetClusterFromGroup","features":[112]},{"name":"GetClusterFromNetInterface","features":[112]},{"name":"GetClusterFromNetwork","features":[112]},{"name":"GetClusterFromNode","features":[112]},{"name":"GetClusterFromResource","features":[112]},{"name":"GetClusterGroupKey","features":[112,51]},{"name":"GetClusterGroupState","features":[112]},{"name":"GetClusterInformation","features":[112]},{"name":"GetClusterKey","features":[112,51]},{"name":"GetClusterNetInterface","features":[112]},{"name":"GetClusterNetInterfaceKey","features":[112,51]},{"name":"GetClusterNetInterfaceState","features":[112]},{"name":"GetClusterNetworkId","features":[112]},{"name":"GetClusterNetworkKey","features":[112,51]},{"name":"GetClusterNetworkState","features":[112]},{"name":"GetClusterNodeId","features":[112]},{"name":"GetClusterNodeKey","features":[112,51]},{"name":"GetClusterNodeState","features":[112]},{"name":"GetClusterNotify","features":[112]},{"name":"GetClusterNotifyV2","features":[112]},{"name":"GetClusterQuorumResource","features":[112]},{"name":"GetClusterResourceDependencyExpression","features":[112]},{"name":"GetClusterResourceKey","features":[112,51]},{"name":"GetClusterResourceNetworkName","features":[3,112]},{"name":"GetClusterResourceState","features":[112]},{"name":"GetClusterResourceTypeKey","features":[112,51]},{"name":"GetNodeCloudTypeDW","features":[112]},{"name":"GetNodeClusterState","features":[112]},{"name":"GetNotifyEventHandle","features":[3,112]},{"name":"HCHANGE","features":[112]},{"name":"HCI_UPGRADE_BIT","features":[112]},{"name":"HCLUSCRYPTPROVIDER","features":[112]},{"name":"HCLUSENUM","features":[112]},{"name":"HCLUSENUMEX","features":[112]},{"name":"HCLUSTER","features":[112]},{"name":"HGROUP","features":[112]},{"name":"HGROUPENUM","features":[112]},{"name":"HGROUPENUMEX","features":[112]},{"name":"HGROUPSET","features":[112]},{"name":"HGROUPSETENUM","features":[112]},{"name":"HNETINTERFACE","features":[112]},{"name":"HNETINTERFACEENUM","features":[112]},{"name":"HNETWORK","features":[112]},{"name":"HNETWORKENUM","features":[112]},{"name":"HNODE","features":[112]},{"name":"HNODEENUM","features":[112]},{"name":"HNODEENUMEX","features":[112]},{"name":"HREGBATCH","features":[112]},{"name":"HREGBATCHNOTIFICATION","features":[112]},{"name":"HREGBATCHPORT","features":[112]},{"name":"HREGREADBATCH","features":[112]},{"name":"HREGREADBATCHREPLY","features":[112]},{"name":"HRESENUM","features":[112]},{"name":"HRESENUMEX","features":[112]},{"name":"HRESOURCE","features":[112]},{"name":"HRESTYPEENUM","features":[112]},{"name":"IGetClusterDataInfo","features":[112]},{"name":"IGetClusterGroupInfo","features":[112]},{"name":"IGetClusterNetInterfaceInfo","features":[112]},{"name":"IGetClusterNetworkInfo","features":[112]},{"name":"IGetClusterNodeInfo","features":[112]},{"name":"IGetClusterObjectInfo","features":[112]},{"name":"IGetClusterResourceInfo","features":[112]},{"name":"IGetClusterUIInfo","features":[112]},{"name":"ISClusApplication","features":[112]},{"name":"ISClusCryptoKeys","features":[112]},{"name":"ISClusDisk","features":[112]},{"name":"ISClusDisks","features":[112]},{"name":"ISClusNetInterface","features":[112]},{"name":"ISClusNetInterfaces","features":[112]},{"name":"ISClusNetwork","features":[112]},{"name":"ISClusNetworkNetInterfaces","features":[112]},{"name":"ISClusNetworks","features":[112]},{"name":"ISClusNode","features":[112]},{"name":"ISClusNodeNetInterfaces","features":[112]},{"name":"ISClusNodes","features":[112]},{"name":"ISClusPartition","features":[112]},{"name":"ISClusPartitionEx","features":[112]},{"name":"ISClusPartitions","features":[112]},{"name":"ISClusProperties","features":[112]},{"name":"ISClusProperty","features":[112]},{"name":"ISClusPropertyValue","features":[112]},{"name":"ISClusPropertyValueData","features":[112]},{"name":"ISClusPropertyValues","features":[112]},{"name":"ISClusRefObject","features":[112]},{"name":"ISClusRegistryKeys","features":[112]},{"name":"ISClusResDependencies","features":[112]},{"name":"ISClusResDependents","features":[112]},{"name":"ISClusResGroup","features":[112]},{"name":"ISClusResGroupPreferredOwnerNodes","features":[112]},{"name":"ISClusResGroupResources","features":[112]},{"name":"ISClusResGroups","features":[112]},{"name":"ISClusResPossibleOwnerNodes","features":[112]},{"name":"ISClusResType","features":[112]},{"name":"ISClusResTypePossibleOwnerNodes","features":[112]},{"name":"ISClusResTypeResources","features":[112]},{"name":"ISClusResTypes","features":[112]},{"name":"ISClusResource","features":[112]},{"name":"ISClusResources","features":[112]},{"name":"ISClusScsiAddress","features":[112]},{"name":"ISClusVersion","features":[112]},{"name":"ISCluster","features":[112]},{"name":"ISClusterNames","features":[112]},{"name":"ISDomainNames","features":[112]},{"name":"IWCContextMenuCallback","features":[112]},{"name":"IWCPropertySheetCallback","features":[112]},{"name":"IWCWizard97Callback","features":[112]},{"name":"IWCWizardCallback","features":[112]},{"name":"IWEExtendContextMenu","features":[112]},{"name":"IWEExtendPropertySheet","features":[112]},{"name":"IWEExtendWizard","features":[112]},{"name":"IWEExtendWizard97","features":[112]},{"name":"IWEInvokeCommand","features":[112]},{"name":"InitializeClusterHealthFault","features":[112]},{"name":"InitializeClusterHealthFaultArray","features":[112]},{"name":"IsFileOnClusterSharedVolume","features":[3,112]},{"name":"LOCKED_MODE_FLAGS_DONT_REMOVE_FROM_MOVE_QUEUE","features":[112]},{"name":"LOG_ERROR","features":[112]},{"name":"LOG_INFORMATION","features":[112]},{"name":"LOG_LEVEL","features":[112]},{"name":"LOG_SEVERE","features":[112]},{"name":"LOG_WARNING","features":[112]},{"name":"LPGROUP_CALLBACK_EX","features":[112]},{"name":"LPNODE_CALLBACK","features":[112]},{"name":"LPRESOURCE_CALLBACK","features":[112]},{"name":"LPRESOURCE_CALLBACK_EX","features":[112]},{"name":"MAINTENANCE_MODE_TYPE_ENUM","features":[112]},{"name":"MAINTENANCE_MODE_V2_SIG","features":[112]},{"name":"MAX_CLUSTERNAME_LENGTH","features":[112]},{"name":"MAX_CO_PASSWORD_LENGTH","features":[112]},{"name":"MAX_CO_PASSWORD_LENGTHEX","features":[112]},{"name":"MAX_CO_PASSWORD_STORAGEEX","features":[112]},{"name":"MAX_CREATINGDC_LENGTH","features":[112]},{"name":"MAX_OBJECTID","features":[112]},{"name":"MINIMUM_NEVER_PREEMPT_PRIORITY","features":[112]},{"name":"MINIMUM_PREEMPTOR_PRIORITY","features":[112]},{"name":"MN_UPGRADE_VERSION","features":[112]},{"name":"MONITOR_STATE","features":[3,112]},{"name":"MaintenanceModeTypeDisableIsAliveCheck","features":[112]},{"name":"MaintenanceModeTypeOfflineResource","features":[112]},{"name":"MaintenanceModeTypeUnclusterResource","features":[112]},{"name":"ModifyQuorum","features":[112]},{"name":"MoveClusterGroup","features":[112]},{"name":"MoveClusterGroupEx","features":[112]},{"name":"MoveClusterGroupEx2","features":[112]},{"name":"NINETEEN_H1_UPGRADE_VERSION","features":[112]},{"name":"NINETEEN_H2_UPGRADE_VERSION","features":[112]},{"name":"NI_UPGRADE_VERSION","features":[112]},{"name":"NNLEN","features":[112]},{"name":"NODE_CLUSTER_STATE","features":[112]},{"name":"NOTIFY_FILTER_AND_TYPE","features":[112]},{"name":"NT10_MAJOR_VERSION","features":[112]},{"name":"NT11_MAJOR_VERSION","features":[112]},{"name":"NT12_MAJOR_VERSION","features":[112]},{"name":"NT13_MAJOR_VERSION","features":[112]},{"name":"NT4SP4_MAJOR_VERSION","features":[112]},{"name":"NT4_MAJOR_VERSION","features":[112]},{"name":"NT51_MAJOR_VERSION","features":[112]},{"name":"NT5_MAJOR_VERSION","features":[112]},{"name":"NT6_MAJOR_VERSION","features":[112]},{"name":"NT7_MAJOR_VERSION","features":[112]},{"name":"NT8_MAJOR_VERSION","features":[112]},{"name":"NT9_MAJOR_VERSION","features":[112]},{"name":"NodeDrainStatusCompleted","features":[112]},{"name":"NodeDrainStatusFailed","features":[112]},{"name":"NodeDrainStatusInProgress","features":[112]},{"name":"NodeDrainStatusNotInitiated","features":[112]},{"name":"NodeStatusAvoidPlacement","features":[112]},{"name":"NodeStatusDrainCompleted","features":[112]},{"name":"NodeStatusDrainFailed","features":[112]},{"name":"NodeStatusDrainInProgress","features":[112]},{"name":"NodeStatusIsolated","features":[112]},{"name":"NodeStatusMax","features":[112]},{"name":"NodeStatusNormal","features":[112]},{"name":"NodeStatusQuarantined","features":[112]},{"name":"NodeUtilizationInfoElement","features":[112]},{"name":"OfflineClusterGroup","features":[112]},{"name":"OfflineClusterGroupEx","features":[112]},{"name":"OfflineClusterGroupEx2","features":[112]},{"name":"OfflineClusterResource","features":[112]},{"name":"OfflineClusterResourceEx","features":[112]},{"name":"OfflineClusterResourceEx2","features":[112]},{"name":"OnlineClusterGroup","features":[112]},{"name":"OnlineClusterGroupEx","features":[112]},{"name":"OnlineClusterGroupEx2","features":[112]},{"name":"OnlineClusterResource","features":[112]},{"name":"OnlineClusterResourceEx","features":[112]},{"name":"OnlineClusterResourceEx2","features":[112]},{"name":"OpenCluster","features":[112]},{"name":"OpenClusterCryptProvider","features":[112]},{"name":"OpenClusterCryptProviderEx","features":[112]},{"name":"OpenClusterEx","features":[112]},{"name":"OpenClusterGroup","features":[112]},{"name":"OpenClusterGroupEx","features":[112]},{"name":"OpenClusterGroupSet","features":[112]},{"name":"OpenClusterNetInterface","features":[112]},{"name":"OpenClusterNetInterfaceEx","features":[112]},{"name":"OpenClusterNetwork","features":[112]},{"name":"OpenClusterNetworkEx","features":[112]},{"name":"OpenClusterNode","features":[112]},{"name":"OpenClusterNodeById","features":[112]},{"name":"OpenClusterNodeEx","features":[112]},{"name":"OpenClusterResource","features":[112]},{"name":"OpenClusterResourceEx","features":[112]},{"name":"OperationalQuorum","features":[112]},{"name":"PARBITRATE_ROUTINE","features":[112]},{"name":"PARM_WPR_WATCHDOG_FOR_CURRENT_RESOURCE_CALL_ROUTINE","features":[112]},{"name":"PBEGIN_RESCALL_AS_USER_ROUTINE","features":[3,112]},{"name":"PBEGIN_RESCALL_ROUTINE","features":[3,112]},{"name":"PBEGIN_RESTYPECALL_AS_USER_ROUTINE","features":[3,112]},{"name":"PBEGIN_RESTYPECALL_ROUTINE","features":[3,112]},{"name":"PCANCEL_ROUTINE","features":[112]},{"name":"PCHANGE_RESOURCE_PROCESS_FOR_DUMPS","features":[3,112]},{"name":"PCHANGE_RES_TYPE_PROCESS_FOR_DUMPS","features":[3,112]},{"name":"PCLOSE_CLUSTER_CRYPT_PROVIDER","features":[112]},{"name":"PCLOSE_ROUTINE","features":[112]},{"name":"PCLUSAPIClusWorkerCheckTerminate","features":[3,112]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE","features":[3,112]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE_EX","features":[3,112]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE","features":[112]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE_EX","features":[112]},{"name":"PCLUSAPI_ADD_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_ADD_RESOURCE_TO_CLUSTER_SHARED_VOLUMES","features":[112]},{"name":"PCLUSAPI_BACKUP_CLUSTER_DATABASE","features":[112]},{"name":"PCLUSAPI_CAN_RESOURCE_BE_DEPENDENT","features":[3,112]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP","features":[112]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX","features":[112]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX2","features":[112]},{"name":"PCLUSAPI_CLOSE_CLUSTER","features":[3,112]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP","features":[3,112]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP_GROUPSET","features":[3,112]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NETWORK","features":[3,112]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NET_INTERFACE","features":[3,112]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NODE","features":[3,112]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NOTIFY_PORT","features":[3,112]},{"name":"PCLUSAPI_CLOSE_CLUSTER_RESOURCE","features":[3,112]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_AFFINITY_RULE","features":[112]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUPSET_WITH_DOMAINS_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUP_GROUPSET","features":[112]},{"name":"PCLUSAPI_CLUSTER_AFFINITY_RULE_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_CREATE_AFFINITY_RULE","features":[112]},{"name":"PCLUSAPI_CLUSTER_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT","features":[112]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CLOSE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_NETWORK_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_NETWORK_GET_ENUM_COUNT","features":[112]},{"name":"PCLUSAPI_CLUSTER_NETWORK_OPEN_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_REG_CLOSE_KEY","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_BATCH","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY","features":[3,112,6,51]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY_EX","features":[3,112,6,51]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY_EX","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE_EX","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_KEY","features":[3,112,51]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_VALUE","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_GET_KEY_SECURITY","features":[112,6,51]},{"name":"PCLUSAPI_CLUSTER_REG_OPEN_KEY","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_INFO_KEY","features":[3,112,51]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_VALUE","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY","features":[112,6,51]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY_EX","features":[112,6,51]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE_EX","features":[112,51]},{"name":"PCLUSAPI_CLUSTER_REG_SYNC_DATABASE","features":[112]},{"name":"PCLUSAPI_CLUSTER_REMOVE_AFFINITY_RULE","features":[112]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_AFFINITY_RULE","features":[112]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET","features":[112]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_AS_USER_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CLOSE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_AS_USER_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_EX","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_GET_ENUM_COUNT","features":[112]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_OPEN_ENUM","features":[112]},{"name":"PCLUSAPI_CLUSTER_UPGRADE","features":[3,112]},{"name":"PCLUSAPI_CLUS_WORKER_CREATE","features":[3,112]},{"name":"PCLUSAPI_CLUS_WORKER_TERMINATE","features":[3,112]},{"name":"PCLUSAPI_CREATE_CLUSTER","features":[3,112]},{"name":"PCLUSAPI_CREATE_CLUSTER_AVAILABILITY_SET","features":[3,112]},{"name":"PCLUSAPI_CREATE_CLUSTER_CNOLESS","features":[3,112]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUPEX","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP_GROUPSET","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_NAME_ACCOUNT","features":[3,112]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT_V2","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_EX","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE","features":[112]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE_EX","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_EX","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET_EX","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_EX","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE","features":[112]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE_EX","features":[112]},{"name":"PCLUSAPI_DESTROY_CLUSTER","features":[3,112]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP","features":[112]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP_EX","features":[112]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE","features":[112]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX","features":[112]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX2","features":[112]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE","features":[112]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE_EX","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP_GROUPSET","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NETWORK","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NET_INTERFACE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NODE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_RESOURCE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_KEY","features":[112,51]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_STATE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_INFORMATION","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_KEY","features":[112,51]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_ID","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_KEY","features":[112,51]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_STATE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_KEY","features":[112,51]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_STATE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_ID","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_KEY","features":[112,51]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_STATE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY_V2","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_QUORUM_RESOURCE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_KEY","features":[112,51]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_NETWORK_NAME","features":[3,112]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_STATE","features":[112]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_TYPE_KEY","features":[112,51]},{"name":"PCLUSAPI_GET_NODE_CLUSTER_STATE","features":[112]},{"name":"PCLUSAPI_GET_NOTIFY_EVENT_HANDLE_V2","features":[3,112]},{"name":"PCLUSAPI_IS_FILE_ON_CLUSTER_SHARED_VOLUME","features":[3,112]},{"name":"PCLUSAPI_MOVE_CLUSTER_GROUP","features":[112]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_GROUP","features":[112]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_RESOURCE","features":[112]},{"name":"PCLUSAPI_ONLINE_CLUSTER_GROUP","features":[112]},{"name":"PCLUSAPI_ONLINE_CLUSTER_RESOURCE","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_EX","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_EX","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_GROUPSET","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETINTERFACE_EX","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK_EX","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_NET_INTERFACE","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE_EX","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE","features":[112]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE_EX","features":[112]},{"name":"PCLUSAPI_OPEN_NODE_BY_ID","features":[112]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE","features":[112]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX","features":[3,112]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX2","features":[3,112]},{"name":"PCLUSAPI_PFN_REASON_HANDLER","features":[3,112]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY","features":[3,112]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY_V2","features":[3,112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_NAME_ACCOUNT","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE","features":[112]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE_EX","features":[112]},{"name":"PCLUSAPI_REMOVE_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[112]},{"name":"PCLUSAPI_REMOVE_RESOURCE_FROM_CLUSTER_SHARED_VOLUMES","features":[112]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE","features":[112]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE_EX","features":[112]},{"name":"PCLUSAPI_RESTORE_CLUSTER_DATABASE","features":[3,112]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE","features":[112]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX","features":[112]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX2","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION_EX","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME_EX","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST_EX","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_NAME_EX","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME_EX","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_PRIORITY_ORDER","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE_EX","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME_EX","features":[112]},{"name":"PCLUSAPI_SET_CLUSTER_SERVICE_ACCOUNT_PASSWORD","features":[3,112]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION","features":[112]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION_EX","features":[112]},{"name":"PCLUSAPI_SET_REASON_HANDLER","features":[3,112]},{"name":"PCLUSAPI_SHARED_VOLUME_SET_SNAPSHOT_STATE","features":[112]},{"name":"PCLUSAPI_SetClusterName","features":[112]},{"name":"PCLUSTER_CLEAR_BACKUP_STATE_FOR_SHARED_VOLUME","features":[112]},{"name":"PCLUSTER_DECRYPT","features":[112]},{"name":"PCLUSTER_ENCRYPT","features":[112]},{"name":"PCLUSTER_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[3,112]},{"name":"PCLUSTER_GET_VOLUME_PATH_NAME","features":[3,112]},{"name":"PCLUSTER_IS_PATH_ON_SHARED_VOLUME","features":[3,112]},{"name":"PCLUSTER_PREPARE_SHARED_VOLUME_FOR_BACKUP","features":[112]},{"name":"PCLUSTER_REG_BATCH_ADD_COMMAND","features":[112]},{"name":"PCLUSTER_REG_BATCH_CLOSE_NOTIFICATION","features":[112]},{"name":"PCLUSTER_REG_BATCH_READ_COMMAND","features":[112]},{"name":"PCLUSTER_REG_CLOSE_BATCH","features":[3,112]},{"name":"PCLUSTER_REG_CLOSE_BATCH_NOTIFY_PORT","features":[112]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH","features":[112]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_EX","features":[112]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_REPLY","features":[112]},{"name":"PCLUSTER_REG_CREATE_BATCH_NOTIFY_PORT","features":[112,51]},{"name":"PCLUSTER_REG_CREATE_READ_BATCH","features":[112,51]},{"name":"PCLUSTER_REG_GET_BATCH_NOTIFICATION","features":[112]},{"name":"PCLUSTER_REG_READ_BATCH_ADD_COMMAND","features":[112]},{"name":"PCLUSTER_REG_READ_BATCH_REPLY_NEXT_COMMAND","features":[112]},{"name":"PCLUSTER_SETUP_PROGRESS_CALLBACK","features":[3,112]},{"name":"PCLUSTER_SET_ACCOUNT_ACCESS","features":[112]},{"name":"PCLUSTER_UPGRADE_PROGRESS_CALLBACK","features":[3,112]},{"name":"PEND_CONTROL_CALL","features":[112]},{"name":"PEND_TYPE_CONTROL_CALL","features":[112]},{"name":"PEXTEND_RES_CONTROL_CALL","features":[112]},{"name":"PEXTEND_RES_TYPE_CONTROL_CALL","features":[112]},{"name":"PFREE_CLUSTER_CRYPT","features":[112]},{"name":"PIS_ALIVE_ROUTINE","features":[3,112]},{"name":"PLACEMENT_OPTIONS","features":[112]},{"name":"PLACEMENT_OPTIONS_ALL","features":[112]},{"name":"PLACEMENT_OPTIONS_AVAILABILITY_SET_DOMAIN_AFFINITY","features":[112]},{"name":"PLACEMENT_OPTIONS_CONSIDER_OFFLINE_VMS","features":[112]},{"name":"PLACEMENT_OPTIONS_DEFAULT_PLACEMENT_OPTIONS","features":[112]},{"name":"PLACEMENT_OPTIONS_DISABLE_CSV_VM_DEPENDENCY","features":[112]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_AVAILABILTY_SET_VMS_WITH_EXISTING_TEMP_DISK","features":[112]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_VMS_WITH_EXISTING_TEMP_DISK","features":[112]},{"name":"PLACEMENT_OPTIONS_DONT_USE_CPU","features":[112]},{"name":"PLACEMENT_OPTIONS_DONT_USE_LOCAL_TEMP_DISK","features":[112]},{"name":"PLACEMENT_OPTIONS_DONT_USE_MEMORY","features":[112]},{"name":"PLACEMENT_OPTIONS_MIN_VALUE","features":[112]},{"name":"PLACEMENT_OPTIONS_SAVE_AVAILABILTY_SET_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[112]},{"name":"PLACEMENT_OPTIONS_SAVE_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[112]},{"name":"PLOG_EVENT_ROUTINE","features":[112]},{"name":"PLOOKS_ALIVE_ROUTINE","features":[3,112]},{"name":"POFFLINE_ROUTINE","features":[112]},{"name":"POFFLINE_V2_ROUTINE","features":[112]},{"name":"PONLINE_ROUTINE","features":[3,112]},{"name":"PONLINE_V2_ROUTINE","features":[3,112]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDER","features":[112]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDEREX","features":[112]},{"name":"POPEN_ROUTINE","features":[112,51]},{"name":"POPEN_V2_ROUTINE","features":[112,51]},{"name":"POST_UPGRADE_VERSION_INFO","features":[112]},{"name":"PQUERY_APPINSTANCE_VERSION","features":[3,112]},{"name":"PQUORUM_RESOURCE_LOST","features":[112]},{"name":"PRAISE_RES_TYPE_NOTIFICATION","features":[112]},{"name":"PREGISTER_APPINSTANCE","features":[3,112]},{"name":"PREGISTER_APPINSTANCE_VERSION","features":[112]},{"name":"PRELEASE_ROUTINE","features":[112]},{"name":"PREQUEST_DUMP_ROUTINE","features":[3,112]},{"name":"PRESET_ALL_APPINSTANCE_VERSIONS","features":[112]},{"name":"PRESOURCE_CONTROL_ROUTINE","features":[112]},{"name":"PRESOURCE_TYPE_CONTROL_ROUTINE","features":[112]},{"name":"PRESUTIL_ADD_UNKNOWN_PROPERTIES","features":[3,112,51]},{"name":"PRESUTIL_CREATE_DIRECTORY_TREE","features":[112]},{"name":"PRESUTIL_DUP_PARAMETER_BLOCK","features":[3,112]},{"name":"PRESUTIL_DUP_STRING","features":[112]},{"name":"PRESUTIL_ENUM_PRIVATE_PROPERTIES","features":[112,51]},{"name":"PRESUTIL_ENUM_PROPERTIES","features":[3,112]},{"name":"PRESUTIL_ENUM_RESOURCES","features":[112]},{"name":"PRESUTIL_ENUM_RESOURCES_EX","features":[112]},{"name":"PRESUTIL_ENUM_RESOURCES_EX2","features":[112]},{"name":"PRESUTIL_EXPAND_ENVIRONMENT_STRINGS","features":[112]},{"name":"PRESUTIL_FIND_BINARY_PROPERTY","features":[112]},{"name":"PRESUTIL_FIND_DEPENDENT_DISK_RESOURCE_DRIVE_LETTER","features":[112]},{"name":"PRESUTIL_FIND_DWORD_PROPERTY","features":[112]},{"name":"PRESUTIL_FIND_EXPANDED_SZ_PROPERTY","features":[112]},{"name":"PRESUTIL_FIND_EXPAND_SZ_PROPERTY","features":[112]},{"name":"PRESUTIL_FIND_FILETIME_PROPERTY","features":[3,112]},{"name":"PRESUTIL_FIND_LONG_PROPERTY","features":[112]},{"name":"PRESUTIL_FIND_MULTI_SZ_PROPERTY","features":[112]},{"name":"PRESUTIL_FIND_SZ_PROPERTY","features":[112]},{"name":"PRESUTIL_FIND_ULARGEINTEGER_PROPERTY","features":[112]},{"name":"PRESUTIL_FREE_ENVIRONMENT","features":[112]},{"name":"PRESUTIL_FREE_PARAMETER_BLOCK","features":[3,112]},{"name":"PRESUTIL_GET_ALL_PROPERTIES","features":[3,112,51]},{"name":"PRESUTIL_GET_BINARY_PROPERTY","features":[112]},{"name":"PRESUTIL_GET_BINARY_VALUE","features":[112,51]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES","features":[112]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES_EX","features":[112]},{"name":"PRESUTIL_GET_DWORD_PROPERTY","features":[112]},{"name":"PRESUTIL_GET_DWORD_VALUE","features":[112,51]},{"name":"PRESUTIL_GET_ENVIRONMENT_WITH_NET_NAME","features":[112]},{"name":"PRESUTIL_GET_EXPAND_SZ_VALUE","features":[3,112,51]},{"name":"PRESUTIL_GET_FILETIME_PROPERTY","features":[3,112]},{"name":"PRESUTIL_GET_LONG_PROPERTY","features":[112]},{"name":"PRESUTIL_GET_MULTI_SZ_PROPERTY","features":[112]},{"name":"PRESUTIL_GET_PRIVATE_PROPERTIES","features":[112,51]},{"name":"PRESUTIL_GET_PROPERTIES","features":[3,112,51]},{"name":"PRESUTIL_GET_PROPERTIES_TO_PARAMETER_BLOCK","features":[3,112,51]},{"name":"PRESUTIL_GET_PROPERTY","features":[3,112,51]},{"name":"PRESUTIL_GET_PROPERTY_FORMATS","features":[3,112]},{"name":"PRESUTIL_GET_PROPERTY_SIZE","features":[3,112,51]},{"name":"PRESUTIL_GET_QWORD_VALUE","features":[112,51]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY","features":[3,112]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS","features":[3,112]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS_EX","features":[3,112]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME","features":[3,112]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME_EX","features":[3,112]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_EX","features":[3,112]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENTIP_ADDRESS_PROPS","features":[112]},{"name":"PRESUTIL_GET_RESOURCE_NAME","features":[112]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY","features":[112]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY_EX","features":[112]},{"name":"PRESUTIL_GET_SZ_PROPERTY","features":[112]},{"name":"PRESUTIL_GET_SZ_VALUE","features":[112,51]},{"name":"PRESUTIL_IS_PATH_VALID","features":[3,112]},{"name":"PRESUTIL_IS_RESOURCE_CLASS_EQUAL","features":[3,112]},{"name":"PRESUTIL_PROPERTY_LIST_FROM_PARAMETER_BLOCK","features":[3,112]},{"name":"PRESUTIL_REMOVE_RESOURCE_SERVICE_ENVIRONMENT","features":[112]},{"name":"PRESUTIL_RESOURCES_EQUAL","features":[3,112]},{"name":"PRESUTIL_RESOURCE_TYPES_EQUAL","features":[3,112]},{"name":"PRESUTIL_SET_BINARY_VALUE","features":[112,51]},{"name":"PRESUTIL_SET_DWORD_VALUE","features":[112,51]},{"name":"PRESUTIL_SET_EXPAND_SZ_VALUE","features":[112,51]},{"name":"PRESUTIL_SET_MULTI_SZ_VALUE","features":[112,51]},{"name":"PRESUTIL_SET_PRIVATE_PROPERTY_LIST","features":[112,51]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK","features":[3,112,51]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK_EX","features":[3,112,51]},{"name":"PRESUTIL_SET_PROPERTY_TABLE","features":[3,112,51]},{"name":"PRESUTIL_SET_PROPERTY_TABLE_EX","features":[3,112,51]},{"name":"PRESUTIL_SET_QWORD_VALUE","features":[112,51]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_ENVIRONMENT","features":[112]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS","features":[112,113]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX","features":[112,113]},{"name":"PRESUTIL_SET_SZ_VALUE","features":[112,51]},{"name":"PRESUTIL_SET_UNKNOWN_PROPERTIES","features":[3,112,51]},{"name":"PRESUTIL_START_RESOURCE_SERVICE","features":[112,113]},{"name":"PRESUTIL_STOP_RESOURCE_SERVICE","features":[112]},{"name":"PRESUTIL_STOP_SERVICE","features":[112,113]},{"name":"PRESUTIL_TERMINATE_SERVICE_PROCESS_FROM_RES_DLL","features":[3,112]},{"name":"PRESUTIL_VERIFY_PRIVATE_PROPERTY_LIST","features":[112]},{"name":"PRESUTIL_VERIFY_PROPERTY_TABLE","features":[3,112]},{"name":"PRESUTIL_VERIFY_RESOURCE_SERVICE","features":[112]},{"name":"PRESUTIL_VERIFY_SERVICE","features":[112,113]},{"name":"PRES_UTIL_VERIFY_SHUTDOWN_SAFE","features":[112]},{"name":"PSET_INTERNAL_STATE","features":[3,112]},{"name":"PSET_RESOURCE_INMEMORY_NODELOCAL_PROPERTIES_ROUTINE","features":[112]},{"name":"PSET_RESOURCE_LOCKED_MODE_EX_ROUTINE","features":[3,112]},{"name":"PSET_RESOURCE_LOCKED_MODE_ROUTINE","features":[3,112]},{"name":"PSET_RESOURCE_STATUS_ROUTINE","features":[3,112]},{"name":"PSET_RESOURCE_STATUS_ROUTINE_EX","features":[3,112]},{"name":"PSET_RESOURCE_WPR_POLICY_ROUTINE","features":[112]},{"name":"PSIGNAL_FAILURE_ROUTINE","features":[112]},{"name":"PSTARTUP_EX_ROUTINE","features":[3,112,51]},{"name":"PSTARTUP_ROUTINE","features":[3,112,51]},{"name":"PTERMINATE_ROUTINE","features":[112]},{"name":"PWORKER_START_ROUTINE","features":[3,112]},{"name":"PauseClusterNode","features":[112]},{"name":"PauseClusterNodeEx","features":[3,112]},{"name":"PauseClusterNodeEx2","features":[3,112]},{"name":"PaxosTagCStruct","features":[112]},{"name":"PriorityDisabled","features":[112]},{"name":"PriorityHigh","features":[112]},{"name":"PriorityLow","features":[112]},{"name":"PriorityMedium","features":[112]},{"name":"QueryAppInstanceVersion","features":[3,112]},{"name":"RESDLL_CONTEXT_OPERATION_TYPE","features":[112]},{"name":"RESOURCE_EXIT_STATE","features":[112]},{"name":"RESOURCE_FAILURE_INFO","features":[112]},{"name":"RESOURCE_FAILURE_INFO_BUFFER","features":[112]},{"name":"RESOURCE_FAILURE_INFO_VERSION_1","features":[112]},{"name":"RESOURCE_MONITOR_STATE","features":[112]},{"name":"RESOURCE_STATUS","features":[3,112]},{"name":"RESOURCE_STATUS_EX","features":[3,112]},{"name":"RESOURCE_TERMINAL_FAILURE_INFO_BUFFER","features":[3,112]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_CLUSSVC_CRASH","features":[112]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_NODE_STOP","features":[112]},{"name":"RESUTIL_FILETIME_DATA","features":[3,112]},{"name":"RESUTIL_LARGEINT_DATA","features":[112]},{"name":"RESUTIL_PROPERTY_ITEM","features":[3,112]},{"name":"RESUTIL_PROPITEM_IN_MEMORY","features":[112]},{"name":"RESUTIL_PROPITEM_READ_ONLY","features":[112]},{"name":"RESUTIL_PROPITEM_REQUIRED","features":[112]},{"name":"RESUTIL_PROPITEM_SIGNED","features":[112]},{"name":"RESUTIL_ULARGEINT_DATA","features":[112]},{"name":"RS3_UPGRADE_VERSION","features":[112]},{"name":"RS4_UPGRADE_VERSION","features":[112]},{"name":"RS5_UPGRADE_VERSION","features":[112]},{"name":"RedirectedIOReasonBitLockerInitializing","features":[112]},{"name":"RedirectedIOReasonFileSystemTiering","features":[112]},{"name":"RedirectedIOReasonMax","features":[112]},{"name":"RedirectedIOReasonReFs","features":[112]},{"name":"RedirectedIOReasonUnsafeFileSystemFilter","features":[112]},{"name":"RedirectedIOReasonUnsafeVolumeFilter","features":[112]},{"name":"RedirectedIOReasonUserRequest","features":[112]},{"name":"RegisterAppInstance","features":[3,112]},{"name":"RegisterAppInstanceVersion","features":[112]},{"name":"RegisterClusterNotify","features":[3,112]},{"name":"RegisterClusterNotifyV2","features":[3,112]},{"name":"RegisterClusterResourceTypeNotifyV2","features":[112]},{"name":"RemoveClusterGroupDependency","features":[112]},{"name":"RemoveClusterGroupDependencyEx","features":[112]},{"name":"RemoveClusterGroupSetDependency","features":[112]},{"name":"RemoveClusterGroupSetDependencyEx","features":[112]},{"name":"RemoveClusterGroupToGroupSetDependency","features":[112]},{"name":"RemoveClusterGroupToGroupSetDependencyEx","features":[112]},{"name":"RemoveClusterNameAccount","features":[3,112]},{"name":"RemoveClusterResourceDependency","features":[112]},{"name":"RemoveClusterResourceDependencyEx","features":[112]},{"name":"RemoveClusterResourceNode","features":[112]},{"name":"RemoveClusterResourceNodeEx","features":[112]},{"name":"RemoveClusterStorageNode","features":[112]},{"name":"RemoveCrossClusterGroupSetDependency","features":[112]},{"name":"RemoveResourceFromClusterSharedVolumes","features":[112]},{"name":"ResUtilAddUnknownProperties","features":[3,112,51]},{"name":"ResUtilCreateDirectoryTree","features":[112]},{"name":"ResUtilDupGroup","features":[112]},{"name":"ResUtilDupParameterBlock","features":[3,112]},{"name":"ResUtilDupResource","features":[112]},{"name":"ResUtilDupString","features":[112]},{"name":"ResUtilEnumGroups","features":[112]},{"name":"ResUtilEnumGroupsEx","features":[112]},{"name":"ResUtilEnumPrivateProperties","features":[112,51]},{"name":"ResUtilEnumProperties","features":[3,112]},{"name":"ResUtilEnumResources","features":[112]},{"name":"ResUtilEnumResourcesEx","features":[112]},{"name":"ResUtilEnumResourcesEx2","features":[112]},{"name":"ResUtilExpandEnvironmentStrings","features":[112]},{"name":"ResUtilFindBinaryProperty","features":[112]},{"name":"ResUtilFindDependentDiskResourceDriveLetter","features":[112]},{"name":"ResUtilFindDwordProperty","features":[112]},{"name":"ResUtilFindExpandSzProperty","features":[112]},{"name":"ResUtilFindExpandedSzProperty","features":[112]},{"name":"ResUtilFindFileTimeProperty","features":[3,112]},{"name":"ResUtilFindLongProperty","features":[112]},{"name":"ResUtilFindMultiSzProperty","features":[112]},{"name":"ResUtilFindSzProperty","features":[112]},{"name":"ResUtilFindULargeIntegerProperty","features":[112]},{"name":"ResUtilFreeEnvironment","features":[112]},{"name":"ResUtilFreeParameterBlock","features":[3,112]},{"name":"ResUtilGetAllProperties","features":[3,112,51]},{"name":"ResUtilGetBinaryProperty","features":[112]},{"name":"ResUtilGetBinaryValue","features":[112,51]},{"name":"ResUtilGetClusterGroupType","features":[112]},{"name":"ResUtilGetClusterId","features":[112]},{"name":"ResUtilGetClusterRoleState","features":[112]},{"name":"ResUtilGetCoreClusterResources","features":[112]},{"name":"ResUtilGetCoreClusterResourcesEx","features":[112]},{"name":"ResUtilGetCoreGroup","features":[112]},{"name":"ResUtilGetDwordProperty","features":[112]},{"name":"ResUtilGetDwordValue","features":[112,51]},{"name":"ResUtilGetEnvironmentWithNetName","features":[112]},{"name":"ResUtilGetFileTimeProperty","features":[3,112]},{"name":"ResUtilGetLongProperty","features":[112]},{"name":"ResUtilGetMultiSzProperty","features":[112]},{"name":"ResUtilGetPrivateProperties","features":[112,51]},{"name":"ResUtilGetProperties","features":[3,112,51]},{"name":"ResUtilGetPropertiesToParameterBlock","features":[3,112,51]},{"name":"ResUtilGetProperty","features":[3,112,51]},{"name":"ResUtilGetPropertyFormats","features":[3,112]},{"name":"ResUtilGetPropertySize","features":[3,112,51]},{"name":"ResUtilGetQwordValue","features":[112,51]},{"name":"ResUtilGetResourceDependency","features":[3,112]},{"name":"ResUtilGetResourceDependencyByClass","features":[3,112]},{"name":"ResUtilGetResourceDependencyByClassEx","features":[3,112]},{"name":"ResUtilGetResourceDependencyByName","features":[3,112]},{"name":"ResUtilGetResourceDependencyByNameEx","features":[3,112]},{"name":"ResUtilGetResourceDependencyEx","features":[3,112]},{"name":"ResUtilGetResourceDependentIPAddressProps","features":[112]},{"name":"ResUtilGetResourceName","features":[112]},{"name":"ResUtilGetResourceNameDependency","features":[112]},{"name":"ResUtilGetResourceNameDependencyEx","features":[112]},{"name":"ResUtilGetSzProperty","features":[112]},{"name":"ResUtilGetSzValue","features":[112,51]},{"name":"ResUtilGroupsEqual","features":[3,112]},{"name":"ResUtilIsPathValid","features":[3,112]},{"name":"ResUtilIsResourceClassEqual","features":[3,112]},{"name":"ResUtilLeftPaxosIsLessThanRight","features":[3,112]},{"name":"ResUtilNodeEnum","features":[112]},{"name":"ResUtilPaxosComparer","features":[3,112]},{"name":"ResUtilPropertyListFromParameterBlock","features":[3,112]},{"name":"ResUtilRemoveResourceServiceEnvironment","features":[112]},{"name":"ResUtilResourceDepEnum","features":[112]},{"name":"ResUtilResourceTypesEqual","features":[3,112]},{"name":"ResUtilResourcesEqual","features":[3,112]},{"name":"ResUtilSetBinaryValue","features":[112,51]},{"name":"ResUtilSetDwordValue","features":[112,51]},{"name":"ResUtilSetExpandSzValue","features":[112,51]},{"name":"ResUtilSetMultiSzValue","features":[112,51]},{"name":"ResUtilSetPrivatePropertyList","features":[112,51]},{"name":"ResUtilSetPropertyParameterBlock","features":[3,112,51]},{"name":"ResUtilSetPropertyParameterBlockEx","features":[3,112,51]},{"name":"ResUtilSetPropertyTable","features":[3,112,51]},{"name":"ResUtilSetPropertyTableEx","features":[3,112,51]},{"name":"ResUtilSetQwordValue","features":[112,51]},{"name":"ResUtilSetResourceServiceEnvironment","features":[112]},{"name":"ResUtilSetResourceServiceStartParameters","features":[112,113]},{"name":"ResUtilSetResourceServiceStartParametersEx","features":[112,113]},{"name":"ResUtilSetSzValue","features":[112,51]},{"name":"ResUtilSetUnknownProperties","features":[3,112,51]},{"name":"ResUtilSetValueEx","features":[112,51]},{"name":"ResUtilStartResourceService","features":[112,113]},{"name":"ResUtilStopResourceService","features":[112]},{"name":"ResUtilStopService","features":[112,113]},{"name":"ResUtilTerminateServiceProcessFromResDll","features":[3,112]},{"name":"ResUtilVerifyPrivatePropertyList","features":[112]},{"name":"ResUtilVerifyPropertyTable","features":[3,112]},{"name":"ResUtilVerifyResourceService","features":[112]},{"name":"ResUtilVerifyService","features":[112,113]},{"name":"ResUtilVerifyShutdownSafe","features":[112]},{"name":"ResUtilsDeleteKeyTree","features":[3,112,51]},{"name":"ResdllContextOperationTypeDrain","features":[112]},{"name":"ResdllContextOperationTypeDrainFailure","features":[112]},{"name":"ResdllContextOperationTypeEmbeddedFailure","features":[112]},{"name":"ResdllContextOperationTypeFailback","features":[112]},{"name":"ResdllContextOperationTypeNetworkDisconnect","features":[112]},{"name":"ResdllContextOperationTypeNetworkDisconnectMoveRetry","features":[112]},{"name":"ResdllContextOperationTypePreemption","features":[112]},{"name":"ResetAllAppInstanceVersions","features":[112]},{"name":"ResourceExitStateContinue","features":[112]},{"name":"ResourceExitStateMax","features":[112]},{"name":"ResourceExitStateTerminate","features":[112]},{"name":"ResourceUtilizationInfoElement","features":[112]},{"name":"RestartClusterResource","features":[112]},{"name":"RestartClusterResourceEx","features":[112]},{"name":"RestoreClusterDatabase","features":[3,112]},{"name":"ResumeClusterNode","features":[112]},{"name":"ResumeClusterNodeEx","features":[112]},{"name":"ResumeClusterNodeEx2","features":[112]},{"name":"RmonArbitrateResource","features":[112]},{"name":"RmonDeadlocked","features":[112]},{"name":"RmonDeletingResource","features":[112]},{"name":"RmonIdle","features":[112]},{"name":"RmonInitializing","features":[112]},{"name":"RmonInitializingResource","features":[112]},{"name":"RmonIsAlivePoll","features":[112]},{"name":"RmonLooksAlivePoll","features":[112]},{"name":"RmonOfflineResource","features":[112]},{"name":"RmonOnlineResource","features":[112]},{"name":"RmonReleaseResource","features":[112]},{"name":"RmonResourceControl","features":[112]},{"name":"RmonResourceTypeControl","features":[112]},{"name":"RmonShutdownResource","features":[112]},{"name":"RmonStartingResource","features":[112]},{"name":"RmonTerminateResource","features":[112]},{"name":"SET_APPINSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[112]},{"name":"SET_APP_INSTANCE_CSV_FLAGS","features":[3,112]},{"name":"SR_DISK_REPLICATION_ELIGIBLE","features":[112]},{"name":"SR_REPLICATED_DISK_TYPE","features":[112]},{"name":"SR_REPLICATED_PARTITION_DISALLOW_MULTINODE_IO","features":[112]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP","features":[3,112]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP_RESULT","features":[112]},{"name":"SR_RESOURCE_TYPE_DISK_INFO","features":[112]},{"name":"SR_RESOURCE_TYPE_ELIGIBLE_DISKS_RESULT","features":[112]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_LOGDISKS","features":[3,112]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_SOURCE_DATADISKS","features":[3,112]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_TARGET_DATADISKS","features":[3,112]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISK","features":[112]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISKS_RESULT","features":[112]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_ARRAY","features":[112]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_INFO","features":[112]},{"name":"STARTUP_EX_ROUTINE","features":[112]},{"name":"STARTUP_ROUTINE","features":[112]},{"name":"SetAppInstanceCsvFlags","features":[3,112]},{"name":"SetClusterGroupName","features":[112]},{"name":"SetClusterGroupNameEx","features":[112]},{"name":"SetClusterGroupNodeList","features":[112]},{"name":"SetClusterGroupNodeListEx","features":[112]},{"name":"SetClusterGroupSetDependencyExpression","features":[112]},{"name":"SetClusterGroupSetDependencyExpressionEx","features":[112]},{"name":"SetClusterName","features":[112]},{"name":"SetClusterNameEx","features":[112]},{"name":"SetClusterNetworkName","features":[112]},{"name":"SetClusterNetworkNameEx","features":[112]},{"name":"SetClusterNetworkPriorityOrder","features":[112]},{"name":"SetClusterQuorumResource","features":[112]},{"name":"SetClusterQuorumResourceEx","features":[112]},{"name":"SetClusterResourceDependencyExpression","features":[112]},{"name":"SetClusterResourceName","features":[112]},{"name":"SetClusterResourceNameEx","features":[112]},{"name":"SetClusterServiceAccountPassword","features":[3,112]},{"name":"SetGroupDependencyExpression","features":[112]},{"name":"SetGroupDependencyExpressionEx","features":[112]},{"name":"SharedVolumeStateActive","features":[112]},{"name":"SharedVolumeStateActiveRedirected","features":[112]},{"name":"SharedVolumeStateActiveVolumeRedirected","features":[112]},{"name":"SharedVolumeStatePaused","features":[112]},{"name":"SharedVolumeStateUnavailable","features":[112]},{"name":"SrDiskReplicationEligibleAlreadyInReplication","features":[112]},{"name":"SrDiskReplicationEligibleFileSystemNotSupported","features":[112]},{"name":"SrDiskReplicationEligibleInSameSite","features":[112]},{"name":"SrDiskReplicationEligibleInsufficientFreeSpace","features":[112]},{"name":"SrDiskReplicationEligibleNone","features":[112]},{"name":"SrDiskReplicationEligibleNotGpt","features":[112]},{"name":"SrDiskReplicationEligibleNotInSameSite","features":[112]},{"name":"SrDiskReplicationEligibleOffline","features":[112]},{"name":"SrDiskReplicationEligibleOther","features":[112]},{"name":"SrDiskReplicationEligiblePartitionLayoutMismatch","features":[112]},{"name":"SrDiskReplicationEligibleSameAsSpecifiedDisk","features":[112]},{"name":"SrDiskReplicationEligibleYes","features":[112]},{"name":"SrReplicatedDiskTypeDestination","features":[112]},{"name":"SrReplicatedDiskTypeLogDestination","features":[112]},{"name":"SrReplicatedDiskTypeLogNotInParthership","features":[112]},{"name":"SrReplicatedDiskTypeLogSource","features":[112]},{"name":"SrReplicatedDiskTypeNone","features":[112]},{"name":"SrReplicatedDiskTypeNotInParthership","features":[112]},{"name":"SrReplicatedDiskTypeOther","features":[112]},{"name":"SrReplicatedDiskTypeSource","features":[112]},{"name":"USE_CLIENT_ACCESS_NETWORKS_FOR_CSV","features":[112]},{"name":"VM_RESDLL_CONTEXT","features":[112]},{"name":"VmResdllContextLiveMigration","features":[112]},{"name":"VmResdllContextSave","features":[112]},{"name":"VmResdllContextShutdown","features":[112]},{"name":"VmResdllContextShutdownForce","features":[112]},{"name":"VmResdllContextTurnOff","features":[112]},{"name":"VolumeBackupInProgress","features":[112]},{"name":"VolumeBackupNone","features":[112]},{"name":"VolumeRedirectedIOReasonMax","features":[112]},{"name":"VolumeRedirectedIOReasonNoDiskConnectivity","features":[112]},{"name":"VolumeRedirectedIOReasonStorageSpaceNotAttached","features":[112]},{"name":"VolumeRedirectedIOReasonVolumeReplicationEnabled","features":[112]},{"name":"VolumeStateDismounted","features":[112]},{"name":"VolumeStateInMaintenance","features":[112]},{"name":"VolumeStateNoAccess","features":[112]},{"name":"VolumeStateNoDirectIO","features":[112]},{"name":"VolumeStateNoFaults","features":[112]},{"name":"WS2016_RTM_UPGRADE_VERSION","features":[112]},{"name":"WS2016_TP4_UPGRADE_VERSION","features":[112]},{"name":"WS2016_TP5_UPGRADE_VERSION","features":[112]},{"name":"WitnessTagHelper","features":[112]},{"name":"WitnessTagUpdateHelper","features":[112]},{"name":"eResourceStateChangeReasonFailedMove","features":[112]},{"name":"eResourceStateChangeReasonFailover","features":[112]},{"name":"eResourceStateChangeReasonMove","features":[112]},{"name":"eResourceStateChangeReasonRundown","features":[112]},{"name":"eResourceStateChangeReasonShutdown","features":[112]},{"name":"eResourceStateChangeReasonUnknown","features":[112]}],"472":[{"name":"CacheRangeChunkSize","features":[114]},{"name":"CreateRequestQueueExternalIdProperty","features":[114]},{"name":"CreateRequestQueueMax","features":[114]},{"name":"DelegateRequestDelegateUrlProperty","features":[114]},{"name":"DelegateRequestReservedProperty","features":[114]},{"name":"ExParamTypeErrorHeaders","features":[114]},{"name":"ExParamTypeHttp2SettingsLimits","features":[114]},{"name":"ExParamTypeHttp2Window","features":[114]},{"name":"ExParamTypeHttpPerformance","features":[114]},{"name":"ExParamTypeMax","features":[114]},{"name":"ExParamTypeTlsRestrictions","features":[114]},{"name":"ExParamTypeTlsSessionTicketKeys","features":[114]},{"name":"HTTP2_SETTINGS_LIMITS_PARAM","features":[114]},{"name":"HTTP2_WINDOW_SIZE_PARAM","features":[114]},{"name":"HTTPAPI_VERSION","features":[114]},{"name":"HTTP_503_RESPONSE_VERBOSITY","features":[114]},{"name":"HTTP_AUTHENTICATION_HARDENING_LEVELS","features":[114]},{"name":"HTTP_AUTH_ENABLE_BASIC","features":[114]},{"name":"HTTP_AUTH_ENABLE_DIGEST","features":[114]},{"name":"HTTP_AUTH_ENABLE_KERBEROS","features":[114]},{"name":"HTTP_AUTH_ENABLE_NEGOTIATE","features":[114]},{"name":"HTTP_AUTH_ENABLE_NTLM","features":[114]},{"name":"HTTP_AUTH_EX_FLAG_CAPTURE_CREDENTIAL","features":[114]},{"name":"HTTP_AUTH_EX_FLAG_ENABLE_KERBEROS_CREDENTIAL_CACHING","features":[114]},{"name":"HTTP_AUTH_STATUS","features":[114]},{"name":"HTTP_BANDWIDTH_LIMIT_INFO","features":[114]},{"name":"HTTP_BINDING_INFO","features":[3,114]},{"name":"HTTP_BYTE_RANGE","features":[114]},{"name":"HTTP_CACHE_POLICY","features":[114]},{"name":"HTTP_CACHE_POLICY_TYPE","features":[114]},{"name":"HTTP_CHANNEL_BIND_CLIENT_SERVICE","features":[114]},{"name":"HTTP_CHANNEL_BIND_DOTLESS_SERVICE","features":[114]},{"name":"HTTP_CHANNEL_BIND_INFO","features":[114]},{"name":"HTTP_CHANNEL_BIND_NO_SERVICE_NAME_CHECK","features":[114]},{"name":"HTTP_CHANNEL_BIND_PROXY","features":[114]},{"name":"HTTP_CHANNEL_BIND_PROXY_COHOSTING","features":[114]},{"name":"HTTP_CHANNEL_BIND_SECURE_CHANNEL_TOKEN","features":[114]},{"name":"HTTP_CONNECTION_LIMIT_INFO","features":[114]},{"name":"HTTP_COOKED_URL","features":[114]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_CONTROLLER","features":[114]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_DELEGATION","features":[114]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_OPEN_EXISTING","features":[114]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID","features":[114]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_INFO","features":[114]},{"name":"HTTP_DATA_CHUNK","features":[3,114]},{"name":"HTTP_DATA_CHUNK_TYPE","features":[114]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_ID","features":[114]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_INFO","features":[114]},{"name":"HTTP_DEMAND_CBT","features":[114]},{"name":"HTTP_ENABLED_STATE","features":[114]},{"name":"HTTP_ERROR_HEADERS_PARAM","features":[114]},{"name":"HTTP_FEATURE_ID","features":[114]},{"name":"HTTP_FLOWRATE_INFO","features":[114]},{"name":"HTTP_FLUSH_RESPONSE_FLAG_RECURSIVE","features":[114]},{"name":"HTTP_HEADER_ID","features":[114]},{"name":"HTTP_INITIALIZE","features":[114]},{"name":"HTTP_INITIALIZE_CONFIG","features":[114]},{"name":"HTTP_INITIALIZE_SERVER","features":[114]},{"name":"HTTP_KNOWN_HEADER","features":[114]},{"name":"HTTP_LISTEN_ENDPOINT_INFO","features":[3,114]},{"name":"HTTP_LOGGING_FLAG_LOCAL_TIME_ROLLOVER","features":[114]},{"name":"HTTP_LOGGING_FLAG_LOG_ERRORS_ONLY","features":[114]},{"name":"HTTP_LOGGING_FLAG_LOG_SUCCESS_ONLY","features":[114]},{"name":"HTTP_LOGGING_FLAG_USE_UTF8_CONVERSION","features":[114]},{"name":"HTTP_LOGGING_INFO","features":[114,6]},{"name":"HTTP_LOGGING_ROLLOVER_TYPE","features":[114]},{"name":"HTTP_LOGGING_TYPE","features":[114]},{"name":"HTTP_LOG_DATA","features":[114]},{"name":"HTTP_LOG_DATA_TYPE","features":[114]},{"name":"HTTP_LOG_FIELDS_DATA","features":[114]},{"name":"HTTP_LOG_FIELD_BYTES_RECV","features":[114]},{"name":"HTTP_LOG_FIELD_BYTES_SENT","features":[114]},{"name":"HTTP_LOG_FIELD_CLIENT_IP","features":[114]},{"name":"HTTP_LOG_FIELD_CLIENT_PORT","features":[114]},{"name":"HTTP_LOG_FIELD_COMPUTER_NAME","features":[114]},{"name":"HTTP_LOG_FIELD_COOKIE","features":[114]},{"name":"HTTP_LOG_FIELD_CORRELATION_ID","features":[114]},{"name":"HTTP_LOG_FIELD_DATE","features":[114]},{"name":"HTTP_LOG_FIELD_FAULT_CODE","features":[114]},{"name":"HTTP_LOG_FIELD_HOST","features":[114]},{"name":"HTTP_LOG_FIELD_METHOD","features":[114]},{"name":"HTTP_LOG_FIELD_QUEUE_NAME","features":[114]},{"name":"HTTP_LOG_FIELD_REASON","features":[114]},{"name":"HTTP_LOG_FIELD_REFERER","features":[114]},{"name":"HTTP_LOG_FIELD_SERVER_IP","features":[114]},{"name":"HTTP_LOG_FIELD_SERVER_PORT","features":[114]},{"name":"HTTP_LOG_FIELD_SITE_ID","features":[114]},{"name":"HTTP_LOG_FIELD_SITE_NAME","features":[114]},{"name":"HTTP_LOG_FIELD_STATUS","features":[114]},{"name":"HTTP_LOG_FIELD_STREAM_ID","features":[114]},{"name":"HTTP_LOG_FIELD_STREAM_ID_EX","features":[114]},{"name":"HTTP_LOG_FIELD_SUB_STATUS","features":[114]},{"name":"HTTP_LOG_FIELD_TIME","features":[114]},{"name":"HTTP_LOG_FIELD_TIME_TAKEN","features":[114]},{"name":"HTTP_LOG_FIELD_TRANSPORT_TYPE","features":[114]},{"name":"HTTP_LOG_FIELD_URI","features":[114]},{"name":"HTTP_LOG_FIELD_URI_QUERY","features":[114]},{"name":"HTTP_LOG_FIELD_URI_STEM","features":[114]},{"name":"HTTP_LOG_FIELD_USER_AGENT","features":[114]},{"name":"HTTP_LOG_FIELD_USER_NAME","features":[114]},{"name":"HTTP_LOG_FIELD_VERSION","features":[114]},{"name":"HTTP_LOG_FIELD_WIN32_STATUS","features":[114]},{"name":"HTTP_MAX_SERVER_QUEUE_LENGTH","features":[114]},{"name":"HTTP_MIN_SERVER_QUEUE_LENGTH","features":[114]},{"name":"HTTP_MULTIPLE_KNOWN_HEADERS","features":[114]},{"name":"HTTP_PERFORMANCE_PARAM","features":[114]},{"name":"HTTP_PERFORMANCE_PARAM_TYPE","features":[114]},{"name":"HTTP_PROPERTY_FLAGS","features":[114]},{"name":"HTTP_PROTECTION_LEVEL_INFO","features":[114]},{"name":"HTTP_PROTECTION_LEVEL_TYPE","features":[114]},{"name":"HTTP_QOS_SETTING_INFO","features":[114]},{"name":"HTTP_QOS_SETTING_TYPE","features":[114]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_QUIC","features":[114]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_TCP","features":[114]},{"name":"HTTP_QUIC_API_TIMINGS","features":[114]},{"name":"HTTP_QUIC_CONNECTION_API_TIMINGS","features":[114]},{"name":"HTTP_QUIC_STREAM_API_TIMINGS","features":[114]},{"name":"HTTP_QUIC_STREAM_REQUEST_STATS","features":[114]},{"name":"HTTP_RECEIVE_FULL_CHAIN","features":[114]},{"name":"HTTP_RECEIVE_HTTP_REQUEST_FLAGS","features":[114]},{"name":"HTTP_RECEIVE_REQUEST_ENTITY_BODY_FLAG_FILL_BUFFER","features":[114]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_COPY_BODY","features":[114]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_FLUSH_BODY","features":[114]},{"name":"HTTP_RECEIVE_SECURE_CHANNEL_TOKEN","features":[114]},{"name":"HTTP_REQUEST_AUTH_FLAG_TOKEN_FOR_CACHED_CRED","features":[114]},{"name":"HTTP_REQUEST_AUTH_INFO","features":[3,114]},{"name":"HTTP_REQUEST_AUTH_TYPE","features":[114]},{"name":"HTTP_REQUEST_CHANNEL_BIND_STATUS","features":[114]},{"name":"HTTP_REQUEST_FLAG_HTTP2","features":[114]},{"name":"HTTP_REQUEST_FLAG_HTTP3","features":[114]},{"name":"HTTP_REQUEST_FLAG_IP_ROUTED","features":[114]},{"name":"HTTP_REQUEST_FLAG_MORE_ENTITY_BODY_EXISTS","features":[114]},{"name":"HTTP_REQUEST_HEADERS","features":[114]},{"name":"HTTP_REQUEST_INFO","features":[114]},{"name":"HTTP_REQUEST_INFO_TYPE","features":[114]},{"name":"HTTP_REQUEST_PROPERTY","features":[114]},{"name":"HTTP_REQUEST_PROPERTY_SNI","features":[114]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_NO_SNI","features":[114]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_SNI_USED","features":[114]},{"name":"HTTP_REQUEST_PROPERTY_SNI_HOST_MAX_LENGTH","features":[114]},{"name":"HTTP_REQUEST_PROPERTY_STREAM_ERROR","features":[114]},{"name":"HTTP_REQUEST_SIZING_INFO","features":[114]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_FIRST_REQUEST","features":[114]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TCP_FAST_OPEN","features":[114]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_FALSE_START","features":[114]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_SESSION_RESUMPTION","features":[114]},{"name":"HTTP_REQUEST_SIZING_TYPE","features":[114]},{"name":"HTTP_REQUEST_TIMING_INFO","features":[114]},{"name":"HTTP_REQUEST_TIMING_TYPE","features":[114]},{"name":"HTTP_REQUEST_TOKEN_BINDING_INFO","features":[114]},{"name":"HTTP_REQUEST_V1","features":[3,114,17]},{"name":"HTTP_REQUEST_V2","features":[3,114,17]},{"name":"HTTP_RESPONSE_FLAG_MORE_ENTITY_BODY_EXISTS","features":[114]},{"name":"HTTP_RESPONSE_FLAG_MULTIPLE_ENCODINGS_AVAILABLE","features":[114]},{"name":"HTTP_RESPONSE_HEADERS","features":[114]},{"name":"HTTP_RESPONSE_INFO","features":[114]},{"name":"HTTP_RESPONSE_INFO_FLAGS_PRESERVE_ORDER","features":[114]},{"name":"HTTP_RESPONSE_INFO_TYPE","features":[114]},{"name":"HTTP_RESPONSE_V1","features":[3,114]},{"name":"HTTP_RESPONSE_V2","features":[3,114]},{"name":"HTTP_SCHEME","features":[114]},{"name":"HTTP_SEND_RESPONSE_FLAG_BUFFER_DATA","features":[114]},{"name":"HTTP_SEND_RESPONSE_FLAG_DISCONNECT","features":[114]},{"name":"HTTP_SEND_RESPONSE_FLAG_ENABLE_NAGLING","features":[114]},{"name":"HTTP_SEND_RESPONSE_FLAG_GOAWAY","features":[114]},{"name":"HTTP_SEND_RESPONSE_FLAG_MORE_DATA","features":[114]},{"name":"HTTP_SEND_RESPONSE_FLAG_OPAQUE","features":[114]},{"name":"HTTP_SEND_RESPONSE_FLAG_PROCESS_RANGES","features":[114]},{"name":"HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS","features":[114]},{"name":"HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS","features":[114]},{"name":"HTTP_SERVER_AUTHENTICATION_INFO","features":[3,114]},{"name":"HTTP_SERVER_PROPERTY","features":[114]},{"name":"HTTP_SERVICE_BINDING_A","features":[114]},{"name":"HTTP_SERVICE_BINDING_BASE","features":[114]},{"name":"HTTP_SERVICE_BINDING_TYPE","features":[114]},{"name":"HTTP_SERVICE_BINDING_W","features":[114]},{"name":"HTTP_SERVICE_CONFIG_CACHE_KEY","features":[114]},{"name":"HTTP_SERVICE_CONFIG_CACHE_SET","features":[114]},{"name":"HTTP_SERVICE_CONFIG_ID","features":[114]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_QUERY","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_QUERY_TYPE","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SETTING_KEY","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SETTING_SET","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_KEY","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY_EX","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET_EX","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_HTTP2","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_LEGACY_TLS","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_OCSP_STAPLING","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_QUIC","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_SESSION_ID","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS12","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS13","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_CLIENT_CORRELATION","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_SESSION_TICKET","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_TOKEN_BINDING","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_LOG_EXTENDED_EVENTS","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NEGOTIATE_CLIENT_CERT","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NO_RAW_FILTER","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_REJECT","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_USE_DS_MAPPER","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY_EX","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM_EX","features":[114]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY_EX","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET_EX","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_KEY","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY_EX","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET_EX","features":[114,17]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_KEY","features":[114]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_SET","features":[114]},{"name":"HTTP_SERVICE_CONFIG_URLACL_KEY","features":[114]},{"name":"HTTP_SERVICE_CONFIG_URLACL_PARAM","features":[114]},{"name":"HTTP_SERVICE_CONFIG_URLACL_QUERY","features":[114]},{"name":"HTTP_SERVICE_CONFIG_URLACL_SET","features":[114]},{"name":"HTTP_SSL_CLIENT_CERT_INFO","features":[3,114]},{"name":"HTTP_SSL_INFO","features":[3,114]},{"name":"HTTP_SSL_PROTOCOL_INFO","features":[114]},{"name":"HTTP_SSL_SERVICE_CONFIG_EX_PARAM_TYPE","features":[114]},{"name":"HTTP_STATE_INFO","features":[114]},{"name":"HTTP_TIMEOUT_LIMIT_INFO","features":[114]},{"name":"HTTP_TLS_RESTRICTIONS_PARAM","features":[114]},{"name":"HTTP_TLS_SESSION_TICKET_KEYS_PARAM","features":[114]},{"name":"HTTP_TRANSPORT_ADDRESS","features":[114,17]},{"name":"HTTP_UNKNOWN_HEADER","features":[114]},{"name":"HTTP_URL_FLAG_REMOVE_ALL","features":[114]},{"name":"HTTP_VERB","features":[114]},{"name":"HTTP_VERSION","features":[114]},{"name":"HTTP_VERSION","features":[114]},{"name":"HTTP_WSK_API_TIMINGS","features":[114]},{"name":"HeaderWaitTimeout","features":[114]},{"name":"Http503ResponseVerbosityBasic","features":[114]},{"name":"Http503ResponseVerbosityFull","features":[114]},{"name":"Http503ResponseVerbosityLimited","features":[114]},{"name":"HttpAddFragmentToCache","features":[3,114,8]},{"name":"HttpAddUrl","features":[3,114]},{"name":"HttpAddUrlToUrlGroup","features":[114]},{"name":"HttpAuthStatusFailure","features":[114]},{"name":"HttpAuthStatusNotAuthenticated","features":[114]},{"name":"HttpAuthStatusSuccess","features":[114]},{"name":"HttpAuthenticationHardeningLegacy","features":[114]},{"name":"HttpAuthenticationHardeningMedium","features":[114]},{"name":"HttpAuthenticationHardeningStrict","features":[114]},{"name":"HttpCachePolicyMaximum","features":[114]},{"name":"HttpCachePolicyNocache","features":[114]},{"name":"HttpCachePolicyTimeToLive","features":[114]},{"name":"HttpCachePolicyUserInvalidates","features":[114]},{"name":"HttpCancelHttpRequest","features":[3,114,8]},{"name":"HttpCloseRequestQueue","features":[3,114]},{"name":"HttpCloseServerSession","features":[114]},{"name":"HttpCloseUrlGroup","features":[114]},{"name":"HttpCreateHttpHandle","features":[3,114]},{"name":"HttpCreateRequestQueue","features":[3,114,6]},{"name":"HttpCreateServerSession","features":[114]},{"name":"HttpCreateUrlGroup","features":[114]},{"name":"HttpDataChunkFromFileHandle","features":[114]},{"name":"HttpDataChunkFromFragmentCache","features":[114]},{"name":"HttpDataChunkFromFragmentCacheEx","features":[114]},{"name":"HttpDataChunkFromMemory","features":[114]},{"name":"HttpDataChunkMaximum","features":[114]},{"name":"HttpDataChunkTrailers","features":[114]},{"name":"HttpDeclarePush","features":[3,114]},{"name":"HttpDelegateRequestEx","features":[3,114]},{"name":"HttpDeleteServiceConfiguration","features":[3,114,8]},{"name":"HttpEnabledStateActive","features":[114]},{"name":"HttpEnabledStateInactive","features":[114]},{"name":"HttpFeatureApiTimings","features":[114]},{"name":"HttpFeatureDelegateEx","features":[114]},{"name":"HttpFeatureHttp3","features":[114]},{"name":"HttpFeatureLast","features":[114]},{"name":"HttpFeatureResponseTrailers","features":[114]},{"name":"HttpFeatureUnknown","features":[114]},{"name":"HttpFeaturemax","features":[114]},{"name":"HttpFindUrlGroupId","features":[3,114]},{"name":"HttpFlushResponseCache","features":[3,114,8]},{"name":"HttpGetExtension","features":[114]},{"name":"HttpHeaderAccept","features":[114]},{"name":"HttpHeaderAcceptCharset","features":[114]},{"name":"HttpHeaderAcceptEncoding","features":[114]},{"name":"HttpHeaderAcceptLanguage","features":[114]},{"name":"HttpHeaderAcceptRanges","features":[114]},{"name":"HttpHeaderAge","features":[114]},{"name":"HttpHeaderAllow","features":[114]},{"name":"HttpHeaderAuthorization","features":[114]},{"name":"HttpHeaderCacheControl","features":[114]},{"name":"HttpHeaderConnection","features":[114]},{"name":"HttpHeaderContentEncoding","features":[114]},{"name":"HttpHeaderContentLanguage","features":[114]},{"name":"HttpHeaderContentLength","features":[114]},{"name":"HttpHeaderContentLocation","features":[114]},{"name":"HttpHeaderContentMd5","features":[114]},{"name":"HttpHeaderContentRange","features":[114]},{"name":"HttpHeaderContentType","features":[114]},{"name":"HttpHeaderCookie","features":[114]},{"name":"HttpHeaderDate","features":[114]},{"name":"HttpHeaderEtag","features":[114]},{"name":"HttpHeaderExpect","features":[114]},{"name":"HttpHeaderExpires","features":[114]},{"name":"HttpHeaderFrom","features":[114]},{"name":"HttpHeaderHost","features":[114]},{"name":"HttpHeaderIfMatch","features":[114]},{"name":"HttpHeaderIfModifiedSince","features":[114]},{"name":"HttpHeaderIfNoneMatch","features":[114]},{"name":"HttpHeaderIfRange","features":[114]},{"name":"HttpHeaderIfUnmodifiedSince","features":[114]},{"name":"HttpHeaderKeepAlive","features":[114]},{"name":"HttpHeaderLastModified","features":[114]},{"name":"HttpHeaderLocation","features":[114]},{"name":"HttpHeaderMaxForwards","features":[114]},{"name":"HttpHeaderMaximum","features":[114]},{"name":"HttpHeaderPragma","features":[114]},{"name":"HttpHeaderProxyAuthenticate","features":[114]},{"name":"HttpHeaderProxyAuthorization","features":[114]},{"name":"HttpHeaderRange","features":[114]},{"name":"HttpHeaderReferer","features":[114]},{"name":"HttpHeaderRequestMaximum","features":[114]},{"name":"HttpHeaderResponseMaximum","features":[114]},{"name":"HttpHeaderRetryAfter","features":[114]},{"name":"HttpHeaderServer","features":[114]},{"name":"HttpHeaderSetCookie","features":[114]},{"name":"HttpHeaderTe","features":[114]},{"name":"HttpHeaderTrailer","features":[114]},{"name":"HttpHeaderTransferEncoding","features":[114]},{"name":"HttpHeaderTranslate","features":[114]},{"name":"HttpHeaderUpgrade","features":[114]},{"name":"HttpHeaderUserAgent","features":[114]},{"name":"HttpHeaderVary","features":[114]},{"name":"HttpHeaderVia","features":[114]},{"name":"HttpHeaderWarning","features":[114]},{"name":"HttpHeaderWwwAuthenticate","features":[114]},{"name":"HttpInitialize","features":[114]},{"name":"HttpIsFeatureSupported","features":[3,114]},{"name":"HttpLogDataTypeFields","features":[114]},{"name":"HttpLoggingRolloverDaily","features":[114]},{"name":"HttpLoggingRolloverHourly","features":[114]},{"name":"HttpLoggingRolloverMonthly","features":[114]},{"name":"HttpLoggingRolloverSize","features":[114]},{"name":"HttpLoggingRolloverWeekly","features":[114]},{"name":"HttpLoggingTypeIIS","features":[114]},{"name":"HttpLoggingTypeNCSA","features":[114]},{"name":"HttpLoggingTypeRaw","features":[114]},{"name":"HttpLoggingTypeW3C","features":[114]},{"name":"HttpNone","features":[114]},{"name":"HttpPrepareUrl","features":[114]},{"name":"HttpProtectionLevelEdgeRestricted","features":[114]},{"name":"HttpProtectionLevelRestricted","features":[114]},{"name":"HttpProtectionLevelUnrestricted","features":[114]},{"name":"HttpQosSettingTypeBandwidth","features":[114]},{"name":"HttpQosSettingTypeConnectionLimit","features":[114]},{"name":"HttpQosSettingTypeFlowRate","features":[114]},{"name":"HttpQueryRequestQueueProperty","features":[3,114]},{"name":"HttpQueryServerSessionProperty","features":[114]},{"name":"HttpQueryServiceConfiguration","features":[3,114,8]},{"name":"HttpQueryUrlGroupProperty","features":[114]},{"name":"HttpReadFragmentFromCache","features":[3,114,8]},{"name":"HttpReceiveClientCertificate","features":[3,114,8]},{"name":"HttpReceiveHttpRequest","features":[3,114,17,8]},{"name":"HttpReceiveRequestEntityBody","features":[3,114,8]},{"name":"HttpRemoveUrl","features":[3,114]},{"name":"HttpRemoveUrlFromUrlGroup","features":[114]},{"name":"HttpRequestAuthTypeBasic","features":[114]},{"name":"HttpRequestAuthTypeDigest","features":[114]},{"name":"HttpRequestAuthTypeKerberos","features":[114]},{"name":"HttpRequestAuthTypeNTLM","features":[114]},{"name":"HttpRequestAuthTypeNegotiate","features":[114]},{"name":"HttpRequestAuthTypeNone","features":[114]},{"name":"HttpRequestInfoTypeAuth","features":[114]},{"name":"HttpRequestInfoTypeChannelBind","features":[114]},{"name":"HttpRequestInfoTypeQuicStats","features":[114]},{"name":"HttpRequestInfoTypeRequestSizing","features":[114]},{"name":"HttpRequestInfoTypeRequestTiming","features":[114]},{"name":"HttpRequestInfoTypeSslProtocol","features":[114]},{"name":"HttpRequestInfoTypeSslTokenBinding","features":[114]},{"name":"HttpRequestInfoTypeSslTokenBindingDraft","features":[114]},{"name":"HttpRequestInfoTypeTcpInfoV0","features":[114]},{"name":"HttpRequestInfoTypeTcpInfoV1","features":[114]},{"name":"HttpRequestPropertyIsb","features":[114]},{"name":"HttpRequestPropertyQuicApiTimings","features":[114]},{"name":"HttpRequestPropertyQuicStats","features":[114]},{"name":"HttpRequestPropertySni","features":[114]},{"name":"HttpRequestPropertyStreamError","features":[114]},{"name":"HttpRequestPropertyTcpInfoV0","features":[114]},{"name":"HttpRequestPropertyTcpInfoV1","features":[114]},{"name":"HttpRequestPropertyWskApiTimings","features":[114]},{"name":"HttpRequestSizingTypeHeaders","features":[114]},{"name":"HttpRequestSizingTypeMax","features":[114]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ClientData","features":[114]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ServerData","features":[114]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ClientData","features":[114]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ServerData","features":[114]},{"name":"HttpRequestTimingTypeConnectionStart","features":[114]},{"name":"HttpRequestTimingTypeDataStart","features":[114]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeEnd","features":[114]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeStart","features":[114]},{"name":"HttpRequestTimingTypeHttp2StreamStart","features":[114]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeEnd","features":[114]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeStart","features":[114]},{"name":"HttpRequestTimingTypeHttp3StreamStart","features":[114]},{"name":"HttpRequestTimingTypeMax","features":[114]},{"name":"HttpRequestTimingTypeRequestDeliveredForDelegation","features":[114]},{"name":"HttpRequestTimingTypeRequestDeliveredForIO","features":[114]},{"name":"HttpRequestTimingTypeRequestDeliveredForInspection","features":[114]},{"name":"HttpRequestTimingTypeRequestHeaderParseEnd","features":[114]},{"name":"HttpRequestTimingTypeRequestHeaderParseStart","features":[114]},{"name":"HttpRequestTimingTypeRequestQueuedForDelegation","features":[114]},{"name":"HttpRequestTimingTypeRequestQueuedForIO","features":[114]},{"name":"HttpRequestTimingTypeRequestQueuedForInspection","features":[114]},{"name":"HttpRequestTimingTypeRequestReturnedAfterDelegation","features":[114]},{"name":"HttpRequestTimingTypeRequestReturnedAfterInspection","features":[114]},{"name":"HttpRequestTimingTypeRequestRoutingEnd","features":[114]},{"name":"HttpRequestTimingTypeRequestRoutingStart","features":[114]},{"name":"HttpRequestTimingTypeTlsAttributesQueryEnd","features":[114]},{"name":"HttpRequestTimingTypeTlsAttributesQueryStart","features":[114]},{"name":"HttpRequestTimingTypeTlsCertificateLoadEnd","features":[114]},{"name":"HttpRequestTimingTypeTlsCertificateLoadStart","features":[114]},{"name":"HttpRequestTimingTypeTlsClientCertQueryEnd","features":[114]},{"name":"HttpRequestTimingTypeTlsClientCertQueryStart","features":[114]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1End","features":[114]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1Start","features":[114]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2End","features":[114]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2Start","features":[114]},{"name":"HttpResponseInfoTypeAuthenticationProperty","features":[114]},{"name":"HttpResponseInfoTypeChannelBind","features":[114]},{"name":"HttpResponseInfoTypeMultipleKnownHeaders","features":[114]},{"name":"HttpResponseInfoTypeQoSProperty","features":[114]},{"name":"HttpSchemeHttp","features":[114]},{"name":"HttpSchemeHttps","features":[114]},{"name":"HttpSchemeMaximum","features":[114]},{"name":"HttpSendHttpResponse","features":[3,114,8]},{"name":"HttpSendResponseEntityBody","features":[3,114,8]},{"name":"HttpServer503VerbosityProperty","features":[114]},{"name":"HttpServerAuthenticationProperty","features":[114]},{"name":"HttpServerBindingProperty","features":[114]},{"name":"HttpServerChannelBindProperty","features":[114]},{"name":"HttpServerDelegationProperty","features":[114]},{"name":"HttpServerExtendedAuthenticationProperty","features":[114]},{"name":"HttpServerListenEndpointProperty","features":[114]},{"name":"HttpServerLoggingProperty","features":[114]},{"name":"HttpServerProtectionLevelProperty","features":[114]},{"name":"HttpServerQosProperty","features":[114]},{"name":"HttpServerQueueLengthProperty","features":[114]},{"name":"HttpServerStateProperty","features":[114]},{"name":"HttpServerTimeoutsProperty","features":[114]},{"name":"HttpServiceBindingTypeA","features":[114]},{"name":"HttpServiceBindingTypeNone","features":[114]},{"name":"HttpServiceBindingTypeW","features":[114]},{"name":"HttpServiceConfigCache","features":[114]},{"name":"HttpServiceConfigIPListenList","features":[114]},{"name":"HttpServiceConfigMax","features":[114]},{"name":"HttpServiceConfigQueryExact","features":[114]},{"name":"HttpServiceConfigQueryMax","features":[114]},{"name":"HttpServiceConfigQueryNext","features":[114]},{"name":"HttpServiceConfigSSLCertInfo","features":[114]},{"name":"HttpServiceConfigSetting","features":[114]},{"name":"HttpServiceConfigSslCcsCertInfo","features":[114]},{"name":"HttpServiceConfigSslCcsCertInfoEx","features":[114]},{"name":"HttpServiceConfigSslCertInfoEx","features":[114]},{"name":"HttpServiceConfigSslScopedCcsCertInfo","features":[114]},{"name":"HttpServiceConfigSslScopedCcsCertInfoEx","features":[114]},{"name":"HttpServiceConfigSslSniCertInfo","features":[114]},{"name":"HttpServiceConfigSslSniCertInfoEx","features":[114]},{"name":"HttpServiceConfigTimeout","features":[114]},{"name":"HttpServiceConfigUrlAclInfo","features":[114]},{"name":"HttpSetRequestProperty","features":[3,114,8]},{"name":"HttpSetRequestQueueProperty","features":[3,114]},{"name":"HttpSetServerSessionProperty","features":[114]},{"name":"HttpSetServiceConfiguration","features":[3,114,8]},{"name":"HttpSetUrlGroupProperty","features":[114]},{"name":"HttpShutdownRequestQueue","features":[3,114]},{"name":"HttpTerminate","features":[114]},{"name":"HttpTlsThrottle","features":[114]},{"name":"HttpUpdateServiceConfiguration","features":[3,114,8]},{"name":"HttpVerbCONNECT","features":[114]},{"name":"HttpVerbCOPY","features":[114]},{"name":"HttpVerbDELETE","features":[114]},{"name":"HttpVerbGET","features":[114]},{"name":"HttpVerbHEAD","features":[114]},{"name":"HttpVerbInvalid","features":[114]},{"name":"HttpVerbLOCK","features":[114]},{"name":"HttpVerbMKCOL","features":[114]},{"name":"HttpVerbMOVE","features":[114]},{"name":"HttpVerbMaximum","features":[114]},{"name":"HttpVerbOPTIONS","features":[114]},{"name":"HttpVerbPOST","features":[114]},{"name":"HttpVerbPROPFIND","features":[114]},{"name":"HttpVerbPROPPATCH","features":[114]},{"name":"HttpVerbPUT","features":[114]},{"name":"HttpVerbSEARCH","features":[114]},{"name":"HttpVerbTRACE","features":[114]},{"name":"HttpVerbTRACK","features":[114]},{"name":"HttpVerbUNLOCK","features":[114]},{"name":"HttpVerbUnknown","features":[114]},{"name":"HttpVerbUnparsed","features":[114]},{"name":"HttpWaitForDemandStart","features":[3,114,8]},{"name":"HttpWaitForDisconnect","features":[3,114,8]},{"name":"HttpWaitForDisconnectEx","features":[3,114,8]},{"name":"IdleConnectionTimeout","features":[114]},{"name":"MaxCacheResponseSize","features":[114]},{"name":"PerformanceParamAggressiveICW","features":[114]},{"name":"PerformanceParamDecryptOnSspiThread","features":[114]},{"name":"PerformanceParamMax","features":[114]},{"name":"PerformanceParamMaxConcurrentClientStreams","features":[114]},{"name":"PerformanceParamMaxReceiveBufferSize","features":[114]},{"name":"PerformanceParamMaxSendBufferSize","features":[114]},{"name":"PerformanceParamSendBufferingFlags","features":[114]}],"473":[{"name":"BerElement","features":[115]},{"name":"DBGPRINT","features":[115]},{"name":"DEREFERENCECONNECTION","features":[115]},{"name":"LAPI_MAJOR_VER1","features":[115]},{"name":"LAPI_MINOR_VER1","features":[115]},{"name":"LBER_DEFAULT","features":[115]},{"name":"LBER_ERROR","features":[115]},{"name":"LBER_TRANSLATE_STRINGS","features":[115]},{"name":"LBER_USE_DER","features":[115]},{"name":"LBER_USE_INDEFINITE_LEN","features":[115]},{"name":"LDAP","features":[115]},{"name":"LDAPAPIFeatureInfoA","features":[115]},{"name":"LDAPAPIFeatureInfoW","features":[115]},{"name":"LDAPAPIInfoA","features":[115]},{"name":"LDAPAPIInfoW","features":[115]},{"name":"LDAPControlA","features":[3,115]},{"name":"LDAPControlW","features":[3,115]},{"name":"LDAPMessage","features":[3,115]},{"name":"LDAPModA","features":[115]},{"name":"LDAPModW","features":[115]},{"name":"LDAPSortKeyA","features":[3,115]},{"name":"LDAPSortKeyW","features":[3,115]},{"name":"LDAPVLVInfo","features":[115]},{"name":"LDAP_ABANDON_CMD","features":[115]},{"name":"LDAP_ADD_CMD","features":[115]},{"name":"LDAP_ADMIN_LIMIT_EXCEEDED","features":[115]},{"name":"LDAP_AFFECTS_MULTIPLE_DSAS","features":[115]},{"name":"LDAP_ALIAS_DEREF_PROBLEM","features":[115]},{"name":"LDAP_ALIAS_PROBLEM","features":[115]},{"name":"LDAP_ALREADY_EXISTS","features":[115]},{"name":"LDAP_API_FEATURE_VIRTUAL_LIST_VIEW","features":[115]},{"name":"LDAP_API_INFO_VERSION","features":[115]},{"name":"LDAP_API_VERSION","features":[115]},{"name":"LDAP_ATTRIBUTE_OR_VALUE_EXISTS","features":[115]},{"name":"LDAP_AUTH_METHOD_NOT_SUPPORTED","features":[115]},{"name":"LDAP_AUTH_OTHERKIND","features":[115]},{"name":"LDAP_AUTH_SASL","features":[115]},{"name":"LDAP_AUTH_SIMPLE","features":[115]},{"name":"LDAP_AUTH_UNKNOWN","features":[115]},{"name":"LDAP_BERVAL","features":[115]},{"name":"LDAP_BIND_CMD","features":[115]},{"name":"LDAP_BUSY","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID_W","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID","features":[115]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID_W","features":[115]},{"name":"LDAP_CHASE_EXTERNAL_REFERRALS","features":[115]},{"name":"LDAP_CHASE_SUBORDINATE_REFERRALS","features":[115]},{"name":"LDAP_CLIENT_LOOP","features":[115]},{"name":"LDAP_COMPARE_CMD","features":[115]},{"name":"LDAP_COMPARE_FALSE","features":[115]},{"name":"LDAP_COMPARE_TRUE","features":[115]},{"name":"LDAP_CONFIDENTIALITY_REQUIRED","features":[115]},{"name":"LDAP_CONNECT_ERROR","features":[115]},{"name":"LDAP_CONSTRAINT_VIOLATION","features":[115]},{"name":"LDAP_CONTROL_NOT_FOUND","features":[115]},{"name":"LDAP_CONTROL_REFERRALS","features":[115]},{"name":"LDAP_CONTROL_REFERRALS_W","features":[115]},{"name":"LDAP_CONTROL_VLVREQUEST","features":[115]},{"name":"LDAP_CONTROL_VLVREQUEST_W","features":[115]},{"name":"LDAP_CONTROL_VLVRESPONSE","features":[115]},{"name":"LDAP_CONTROL_VLVRESPONSE_W","features":[115]},{"name":"LDAP_DECODING_ERROR","features":[115]},{"name":"LDAP_DELETE_CMD","features":[115]},{"name":"LDAP_DEREF_ALWAYS","features":[115]},{"name":"LDAP_DEREF_FINDING","features":[115]},{"name":"LDAP_DEREF_NEVER","features":[115]},{"name":"LDAP_DEREF_SEARCHING","features":[115]},{"name":"LDAP_DIRSYNC_ANCESTORS_FIRST_ORDER","features":[115]},{"name":"LDAP_DIRSYNC_INCREMENTAL_VALUES","features":[115]},{"name":"LDAP_DIRSYNC_OBJECT_SECURITY","features":[115]},{"name":"LDAP_DIRSYNC_PUBLIC_DATA_ONLY","features":[115]},{"name":"LDAP_DIRSYNC_ROPAS_DATA_ONLY","features":[115]},{"name":"LDAP_ENCODING_ERROR","features":[115]},{"name":"LDAP_EXTENDED_CMD","features":[115]},{"name":"LDAP_FEATURE_INFO_VERSION","features":[115]},{"name":"LDAP_FILTER_AND","features":[115]},{"name":"LDAP_FILTER_APPROX","features":[115]},{"name":"LDAP_FILTER_EQUALITY","features":[115]},{"name":"LDAP_FILTER_ERROR","features":[115]},{"name":"LDAP_FILTER_EXTENSIBLE","features":[115]},{"name":"LDAP_FILTER_GE","features":[115]},{"name":"LDAP_FILTER_LE","features":[115]},{"name":"LDAP_FILTER_NOT","features":[115]},{"name":"LDAP_FILTER_OR","features":[115]},{"name":"LDAP_FILTER_PRESENT","features":[115]},{"name":"LDAP_FILTER_SUBSTRINGS","features":[115]},{"name":"LDAP_GC_PORT","features":[115]},{"name":"LDAP_INAPPROPRIATE_AUTH","features":[115]},{"name":"LDAP_INAPPROPRIATE_MATCHING","features":[115]},{"name":"LDAP_INSUFFICIENT_RIGHTS","features":[115]},{"name":"LDAP_INVALID_CMD","features":[115]},{"name":"LDAP_INVALID_CREDENTIALS","features":[115]},{"name":"LDAP_INVALID_DN_SYNTAX","features":[115]},{"name":"LDAP_INVALID_RES","features":[115]},{"name":"LDAP_INVALID_SYNTAX","features":[115]},{"name":"LDAP_IS_LEAF","features":[115]},{"name":"LDAP_LOCAL_ERROR","features":[115]},{"name":"LDAP_LOOP_DETECT","features":[115]},{"name":"LDAP_MATCHING_RULE_BIT_AND","features":[115]},{"name":"LDAP_MATCHING_RULE_BIT_AND_W","features":[115]},{"name":"LDAP_MATCHING_RULE_BIT_OR","features":[115]},{"name":"LDAP_MATCHING_RULE_BIT_OR_W","features":[115]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX","features":[115]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX_W","features":[115]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION","features":[115]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION_W","features":[115]},{"name":"LDAP_MODIFY_CMD","features":[115]},{"name":"LDAP_MODRDN_CMD","features":[115]},{"name":"LDAP_MOD_ADD","features":[115]},{"name":"LDAP_MOD_BVALUES","features":[115]},{"name":"LDAP_MOD_DELETE","features":[115]},{"name":"LDAP_MOD_REPLACE","features":[115]},{"name":"LDAP_MORE_RESULTS_TO_RETURN","features":[115]},{"name":"LDAP_MSG_ALL","features":[115]},{"name":"LDAP_MSG_ONE","features":[115]},{"name":"LDAP_MSG_RECEIVED","features":[115]},{"name":"LDAP_NAMING_VIOLATION","features":[115]},{"name":"LDAP_NOT_ALLOWED_ON_NONLEAF","features":[115]},{"name":"LDAP_NOT_ALLOWED_ON_RDN","features":[115]},{"name":"LDAP_NOT_SUPPORTED","features":[115]},{"name":"LDAP_NO_LIMIT","features":[115]},{"name":"LDAP_NO_MEMORY","features":[115]},{"name":"LDAP_NO_OBJECT_CLASS_MODS","features":[115]},{"name":"LDAP_NO_RESULTS_RETURNED","features":[115]},{"name":"LDAP_NO_SUCH_ATTRIBUTE","features":[115]},{"name":"LDAP_NO_SUCH_OBJECT","features":[115]},{"name":"LDAP_OBJECT_CLASS_VIOLATION","features":[115]},{"name":"LDAP_OFFSET_RANGE_ERROR","features":[115]},{"name":"LDAP_OPATT_ABANDON_REPL","features":[115]},{"name":"LDAP_OPATT_ABANDON_REPL_W","features":[115]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER","features":[115]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER_W","features":[115]},{"name":"LDAP_OPATT_BECOME_PDC","features":[115]},{"name":"LDAP_OPATT_BECOME_PDC_W","features":[115]},{"name":"LDAP_OPATT_BECOME_RID_MASTER","features":[115]},{"name":"LDAP_OPATT_BECOME_RID_MASTER_W","features":[115]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER","features":[115]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER_W","features":[115]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT","features":[115]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT_W","features":[115]},{"name":"LDAP_OPATT_CURRENT_TIME","features":[115]},{"name":"LDAP_OPATT_CURRENT_TIME_W","features":[115]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT","features":[115]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT_W","features":[115]},{"name":"LDAP_OPATT_DNS_HOST_NAME","features":[115]},{"name":"LDAP_OPATT_DNS_HOST_NAME_W","features":[115]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION","features":[115]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION_W","features":[115]},{"name":"LDAP_OPATT_DS_SERVICE_NAME","features":[115]},{"name":"LDAP_OPATT_DS_SERVICE_NAME_W","features":[115]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE","features":[115]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE_W","features":[115]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN","features":[115]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN_W","features":[115]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL","features":[115]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL_W","features":[115]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME","features":[115]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME_W","features":[115]},{"name":"LDAP_OPATT_NAMING_CONTEXTS","features":[115]},{"name":"LDAP_OPATT_NAMING_CONTEXTS_W","features":[115]},{"name":"LDAP_OPATT_RECALC_HIERARCHY","features":[115]},{"name":"LDAP_OPATT_RECALC_HIERARCHY_W","features":[115]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT","features":[115]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT_W","features":[115]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT","features":[115]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT_W","features":[115]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW","features":[115]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW_W","features":[115]},{"name":"LDAP_OPATT_SERVER_NAME","features":[115]},{"name":"LDAP_OPATT_SERVER_NAME_W","features":[115]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY","features":[115]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY_W","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES_W","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL_W","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES_W","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION_W","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM","features":[115]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM_W","features":[115]},{"name":"LDAP_OPERATIONS_ERROR","features":[115]},{"name":"LDAP_OPT_API_FEATURE_INFO","features":[115]},{"name":"LDAP_OPT_API_INFO","features":[115]},{"name":"LDAP_OPT_AREC_EXCLUSIVE","features":[115]},{"name":"LDAP_OPT_AUTO_RECONNECT","features":[115]},{"name":"LDAP_OPT_CACHE_ENABLE","features":[115]},{"name":"LDAP_OPT_CACHE_FN_PTRS","features":[115]},{"name":"LDAP_OPT_CACHE_STRATEGY","features":[115]},{"name":"LDAP_OPT_CHASE_REFERRALS","features":[115]},{"name":"LDAP_OPT_CLDAP_TIMEOUT","features":[115]},{"name":"LDAP_OPT_CLDAP_TRIES","features":[115]},{"name":"LDAP_OPT_CLIENT_CERTIFICATE","features":[115]},{"name":"LDAP_OPT_DEREF","features":[115]},{"name":"LDAP_OPT_DESC","features":[115]},{"name":"LDAP_OPT_DNS","features":[115]},{"name":"LDAP_OPT_DNSDOMAIN_NAME","features":[115]},{"name":"LDAP_OPT_ENCRYPT","features":[115]},{"name":"LDAP_OPT_ERROR_NUMBER","features":[115]},{"name":"LDAP_OPT_ERROR_STRING","features":[115]},{"name":"LDAP_OPT_FAST_CONCURRENT_BIND","features":[115]},{"name":"LDAP_OPT_GETDSNAME_FLAGS","features":[115]},{"name":"LDAP_OPT_HOST_NAME","features":[115]},{"name":"LDAP_OPT_HOST_REACHABLE","features":[115]},{"name":"LDAP_OPT_IO_FN_PTRS","features":[115]},{"name":"LDAP_OPT_PING_KEEP_ALIVE","features":[115]},{"name":"LDAP_OPT_PING_LIMIT","features":[115]},{"name":"LDAP_OPT_PING_WAIT_TIME","features":[115]},{"name":"LDAP_OPT_PROMPT_CREDENTIALS","features":[115]},{"name":"LDAP_OPT_PROTOCOL_VERSION","features":[115]},{"name":"LDAP_OPT_REBIND_ARG","features":[115]},{"name":"LDAP_OPT_REBIND_FN","features":[115]},{"name":"LDAP_OPT_REFERRALS","features":[115]},{"name":"LDAP_OPT_REFERRAL_CALLBACK","features":[115]},{"name":"LDAP_OPT_REFERRAL_HOP_LIMIT","features":[115]},{"name":"LDAP_OPT_REF_DEREF_CONN_PER_MSG","features":[115]},{"name":"LDAP_OPT_RESTART","features":[115]},{"name":"LDAP_OPT_RETURN_REFS","features":[115]},{"name":"LDAP_OPT_ROOTDSE_CACHE","features":[115]},{"name":"LDAP_OPT_SASL_METHOD","features":[115]},{"name":"LDAP_OPT_SCH_FLAGS","features":[115]},{"name":"LDAP_OPT_SECURITY_CONTEXT","features":[115]},{"name":"LDAP_OPT_SEND_TIMEOUT","features":[115]},{"name":"LDAP_OPT_SERVER_CERTIFICATE","features":[115]},{"name":"LDAP_OPT_SERVER_ERROR","features":[115]},{"name":"LDAP_OPT_SERVER_EXT_ERROR","features":[115]},{"name":"LDAP_OPT_SIGN","features":[115]},{"name":"LDAP_OPT_SIZELIMIT","features":[115]},{"name":"LDAP_OPT_SOCKET_BIND_ADDRESSES","features":[115]},{"name":"LDAP_OPT_SSL","features":[115]},{"name":"LDAP_OPT_SSL_INFO","features":[115]},{"name":"LDAP_OPT_SSPI_FLAGS","features":[115]},{"name":"LDAP_OPT_TCP_KEEPALIVE","features":[115]},{"name":"LDAP_OPT_THREAD_FN_PTRS","features":[115]},{"name":"LDAP_OPT_TIMELIMIT","features":[115]},{"name":"LDAP_OPT_TLS","features":[115]},{"name":"LDAP_OPT_TLS_INFO","features":[115]},{"name":"LDAP_OPT_VERSION","features":[115]},{"name":"LDAP_OTHER","features":[115]},{"name":"LDAP_PAGED_RESULT_OID_STRING","features":[115]},{"name":"LDAP_PAGED_RESULT_OID_STRING_W","features":[115]},{"name":"LDAP_PARAM_ERROR","features":[115]},{"name":"LDAP_PARTIAL_RESULTS","features":[115]},{"name":"LDAP_POLICYHINT_APPLY_FULLPWDPOLICY","features":[115]},{"name":"LDAP_PORT","features":[115]},{"name":"LDAP_PROTOCOL_ERROR","features":[115]},{"name":"LDAP_REFERRAL","features":[115]},{"name":"LDAP_REFERRAL_CALLBACK","features":[3,115]},{"name":"LDAP_REFERRAL_LIMIT_EXCEEDED","features":[115]},{"name":"LDAP_REFERRAL_V2","features":[115]},{"name":"LDAP_RESULTS_TOO_LARGE","features":[115]},{"name":"LDAP_RES_ADD","features":[115]},{"name":"LDAP_RES_ANY","features":[115]},{"name":"LDAP_RES_BIND","features":[115]},{"name":"LDAP_RES_COMPARE","features":[115]},{"name":"LDAP_RES_DELETE","features":[115]},{"name":"LDAP_RES_EXTENDED","features":[115]},{"name":"LDAP_RES_MODIFY","features":[115]},{"name":"LDAP_RES_MODRDN","features":[115]},{"name":"LDAP_RES_REFERRAL","features":[115]},{"name":"LDAP_RES_SEARCH_ENTRY","features":[115]},{"name":"LDAP_RES_SEARCH_RESULT","features":[115]},{"name":"LDAP_RES_SESSION","features":[115]},{"name":"LDAP_RETCODE","features":[115]},{"name":"LDAP_SASL_BIND_IN_PROGRESS","features":[115]},{"name":"LDAP_SCOPE_BASE","features":[115]},{"name":"LDAP_SCOPE_ONELEVEL","features":[115]},{"name":"LDAP_SCOPE_SUBTREE","features":[115]},{"name":"LDAP_SEARCH_CMD","features":[115]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID","features":[115]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID_W","features":[115]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID","features":[115]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID_W","features":[115]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID","features":[115]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID_W","features":[115]},{"name":"LDAP_SERVER_ASQ_OID","features":[115]},{"name":"LDAP_SERVER_ASQ_OID_W","features":[115]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID","features":[115]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID_W","features":[115]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID","features":[115]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID_W","features":[115]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID","features":[115]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID_W","features":[115]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID","features":[115]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID_W","features":[115]},{"name":"LDAP_SERVER_DIRSYNC_OID","features":[115]},{"name":"LDAP_SERVER_DIRSYNC_OID_W","features":[115]},{"name":"LDAP_SERVER_DN_INPUT_OID","features":[115]},{"name":"LDAP_SERVER_DN_INPUT_OID_W","features":[115]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID","features":[115]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID_W","features":[115]},{"name":"LDAP_SERVER_DOWN","features":[115]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID","features":[115]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID_W","features":[115]},{"name":"LDAP_SERVER_EXTENDED_DN_OID","features":[115]},{"name":"LDAP_SERVER_EXTENDED_DN_OID_W","features":[115]},{"name":"LDAP_SERVER_FAST_BIND_OID","features":[115]},{"name":"LDAP_SERVER_FAST_BIND_OID_W","features":[115]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID","features":[115]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID_W","features":[115]},{"name":"LDAP_SERVER_GET_STATS_OID","features":[115]},{"name":"LDAP_SERVER_GET_STATS_OID_W","features":[115]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID","features":[115]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID_W","features":[115]},{"name":"LDAP_SERVER_LINK_TTL_OID","features":[115]},{"name":"LDAP_SERVER_LINK_TTL_OID_W","features":[115]},{"name":"LDAP_SERVER_NOTIFICATION_OID","features":[115]},{"name":"LDAP_SERVER_NOTIFICATION_OID_W","features":[115]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID","features":[115]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID_W","features":[115]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID","features":[115]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID_W","features":[115]},{"name":"LDAP_SERVER_POLICY_HINTS_OID","features":[115]},{"name":"LDAP_SERVER_POLICY_HINTS_OID_W","features":[115]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID","features":[115]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID_W","features":[115]},{"name":"LDAP_SERVER_RANGE_OPTION_OID","features":[115]},{"name":"LDAP_SERVER_RANGE_OPTION_OID_W","features":[115]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID","features":[115]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID_W","features":[115]},{"name":"LDAP_SERVER_RESP_SORT_OID","features":[115]},{"name":"LDAP_SERVER_RESP_SORT_OID_W","features":[115]},{"name":"LDAP_SERVER_SD_FLAGS_OID","features":[115]},{"name":"LDAP_SERVER_SD_FLAGS_OID_W","features":[115]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID","features":[115]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID_W","features":[115]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID","features":[115]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID_W","features":[115]},{"name":"LDAP_SERVER_SET_OWNER_OID","features":[115]},{"name":"LDAP_SERVER_SET_OWNER_OID_W","features":[115]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID","features":[115]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID_W","features":[115]},{"name":"LDAP_SERVER_SHOW_DELETED_OID","features":[115]},{"name":"LDAP_SERVER_SHOW_DELETED_OID_W","features":[115]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID","features":[115]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID_W","features":[115]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID","features":[115]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID_W","features":[115]},{"name":"LDAP_SERVER_SORT_OID","features":[115]},{"name":"LDAP_SERVER_SORT_OID_W","features":[115]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID","features":[115]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID_W","features":[115]},{"name":"LDAP_SERVER_TREE_DELETE_OID","features":[115]},{"name":"LDAP_SERVER_TREE_DELETE_OID_W","features":[115]},{"name":"LDAP_SERVER_UPDATE_STATS_OID","features":[115]},{"name":"LDAP_SERVER_UPDATE_STATS_OID_W","features":[115]},{"name":"LDAP_SERVER_VERIFY_NAME_OID","features":[115]},{"name":"LDAP_SERVER_VERIFY_NAME_OID_W","features":[115]},{"name":"LDAP_SERVER_WHO_AM_I_OID","features":[115]},{"name":"LDAP_SERVER_WHO_AM_I_OID_W","features":[115]},{"name":"LDAP_SESSION_CMD","features":[115]},{"name":"LDAP_SIZELIMIT_EXCEEDED","features":[115]},{"name":"LDAP_SORT_CONTROL_MISSING","features":[115]},{"name":"LDAP_SSL_GC_PORT","features":[115]},{"name":"LDAP_SSL_PORT","features":[115]},{"name":"LDAP_START_TLS_OID","features":[115]},{"name":"LDAP_START_TLS_OID_W","features":[115]},{"name":"LDAP_STRONG_AUTH_REQUIRED","features":[115]},{"name":"LDAP_SUBSTRING_ANY","features":[115]},{"name":"LDAP_SUBSTRING_FINAL","features":[115]},{"name":"LDAP_SUBSTRING_INITIAL","features":[115]},{"name":"LDAP_SUCCESS","features":[115]},{"name":"LDAP_TIMELIMIT_EXCEEDED","features":[115]},{"name":"LDAP_TIMEOUT","features":[115]},{"name":"LDAP_TIMEVAL","features":[115]},{"name":"LDAP_TTL_EXTENDED_OP_OID","features":[115]},{"name":"LDAP_TTL_EXTENDED_OP_OID_W","features":[115]},{"name":"LDAP_UNAVAILABLE","features":[115]},{"name":"LDAP_UNAVAILABLE_CRIT_EXTENSION","features":[115]},{"name":"LDAP_UNBIND_CMD","features":[115]},{"name":"LDAP_UNDEFINED_TYPE","features":[115]},{"name":"LDAP_UNICODE","features":[115]},{"name":"LDAP_UNWILLING_TO_PERFORM","features":[115]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID","features":[115]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID_W","features":[115]},{"name":"LDAP_UPDATE_STATS_USN_OID","features":[115]},{"name":"LDAP_UPDATE_STATS_USN_OID_W","features":[115]},{"name":"LDAP_USER_CANCELLED","features":[115]},{"name":"LDAP_VENDOR_NAME","features":[115]},{"name":"LDAP_VENDOR_NAME_W","features":[115]},{"name":"LDAP_VENDOR_VERSION","features":[115]},{"name":"LDAP_VERSION","features":[115]},{"name":"LDAP_VERSION1","features":[115]},{"name":"LDAP_VERSION2","features":[115]},{"name":"LDAP_VERSION3","features":[115]},{"name":"LDAP_VERSION_INFO","features":[115]},{"name":"LDAP_VERSION_MAX","features":[115]},{"name":"LDAP_VERSION_MIN","features":[115]},{"name":"LDAP_VIRTUAL_LIST_VIEW_ERROR","features":[115]},{"name":"LDAP_VLVINFO_VERSION","features":[115]},{"name":"LdapGetLastError","features":[115]},{"name":"LdapMapErrorToWin32","features":[3,115]},{"name":"LdapUTF8ToUnicode","features":[115]},{"name":"LdapUnicodeToUTF8","features":[115]},{"name":"NOTIFYOFNEWCONNECTION","features":[3,115]},{"name":"PLDAPSearch","features":[115]},{"name":"QUERYCLIENTCERT","features":[3,115,25,70]},{"name":"QUERYFORCONNECTION","features":[115]},{"name":"SERVER_SEARCH_FLAG_DOMAIN_SCOPE","features":[115]},{"name":"SERVER_SEARCH_FLAG_PHANTOM_ROOT","features":[115]},{"name":"VERIFYSERVERCERT","features":[3,115,70]},{"name":"ber_alloc_t","features":[115]},{"name":"ber_bvdup","features":[115]},{"name":"ber_bvecfree","features":[115]},{"name":"ber_bvfree","features":[115]},{"name":"ber_first_element","features":[115]},{"name":"ber_flatten","features":[115]},{"name":"ber_free","features":[115]},{"name":"ber_init","features":[115]},{"name":"ber_next_element","features":[115]},{"name":"ber_peek_tag","features":[115]},{"name":"ber_printf","features":[115]},{"name":"ber_scanf","features":[115]},{"name":"ber_skip_tag","features":[115]},{"name":"cldap_open","features":[115]},{"name":"cldap_openA","features":[115]},{"name":"cldap_openW","features":[115]},{"name":"ldap_abandon","features":[115]},{"name":"ldap_add","features":[115]},{"name":"ldap_addA","features":[115]},{"name":"ldap_addW","features":[115]},{"name":"ldap_add_ext","features":[3,115]},{"name":"ldap_add_extA","features":[3,115]},{"name":"ldap_add_extW","features":[3,115]},{"name":"ldap_add_ext_s","features":[3,115]},{"name":"ldap_add_ext_sA","features":[3,115]},{"name":"ldap_add_ext_sW","features":[3,115]},{"name":"ldap_add_s","features":[115]},{"name":"ldap_add_sA","features":[115]},{"name":"ldap_add_sW","features":[115]},{"name":"ldap_bind","features":[115]},{"name":"ldap_bindA","features":[115]},{"name":"ldap_bindW","features":[115]},{"name":"ldap_bind_s","features":[115]},{"name":"ldap_bind_sA","features":[115]},{"name":"ldap_bind_sW","features":[115]},{"name":"ldap_check_filterA","features":[115]},{"name":"ldap_check_filterW","features":[115]},{"name":"ldap_cleanup","features":[3,115]},{"name":"ldap_close_extended_op","features":[115]},{"name":"ldap_compare","features":[115]},{"name":"ldap_compareA","features":[115]},{"name":"ldap_compareW","features":[115]},{"name":"ldap_compare_ext","features":[3,115]},{"name":"ldap_compare_extA","features":[3,115]},{"name":"ldap_compare_extW","features":[3,115]},{"name":"ldap_compare_ext_s","features":[3,115]},{"name":"ldap_compare_ext_sA","features":[3,115]},{"name":"ldap_compare_ext_sW","features":[3,115]},{"name":"ldap_compare_s","features":[115]},{"name":"ldap_compare_sA","features":[115]},{"name":"ldap_compare_sW","features":[115]},{"name":"ldap_conn_from_msg","features":[3,115]},{"name":"ldap_connect","features":[115]},{"name":"ldap_control_free","features":[3,115]},{"name":"ldap_control_freeA","features":[3,115]},{"name":"ldap_control_freeW","features":[3,115]},{"name":"ldap_controls_free","features":[3,115]},{"name":"ldap_controls_freeA","features":[3,115]},{"name":"ldap_controls_freeW","features":[3,115]},{"name":"ldap_count_entries","features":[3,115]},{"name":"ldap_count_references","features":[3,115]},{"name":"ldap_count_values","features":[115]},{"name":"ldap_count_valuesA","features":[115]},{"name":"ldap_count_valuesW","features":[115]},{"name":"ldap_count_values_len","features":[115]},{"name":"ldap_create_page_control","features":[3,115]},{"name":"ldap_create_page_controlA","features":[3,115]},{"name":"ldap_create_page_controlW","features":[3,115]},{"name":"ldap_create_sort_control","features":[3,115]},{"name":"ldap_create_sort_controlA","features":[3,115]},{"name":"ldap_create_sort_controlW","features":[3,115]},{"name":"ldap_create_vlv_controlA","features":[3,115]},{"name":"ldap_create_vlv_controlW","features":[3,115]},{"name":"ldap_delete","features":[115]},{"name":"ldap_deleteA","features":[115]},{"name":"ldap_deleteW","features":[115]},{"name":"ldap_delete_ext","features":[3,115]},{"name":"ldap_delete_extA","features":[3,115]},{"name":"ldap_delete_extW","features":[3,115]},{"name":"ldap_delete_ext_s","features":[3,115]},{"name":"ldap_delete_ext_sA","features":[3,115]},{"name":"ldap_delete_ext_sW","features":[3,115]},{"name":"ldap_delete_s","features":[115]},{"name":"ldap_delete_sA","features":[115]},{"name":"ldap_delete_sW","features":[115]},{"name":"ldap_dn2ufn","features":[115]},{"name":"ldap_dn2ufnA","features":[115]},{"name":"ldap_dn2ufnW","features":[115]},{"name":"ldap_encode_sort_controlA","features":[3,115]},{"name":"ldap_encode_sort_controlW","features":[3,115]},{"name":"ldap_err2string","features":[115]},{"name":"ldap_err2stringA","features":[115]},{"name":"ldap_err2stringW","features":[115]},{"name":"ldap_escape_filter_element","features":[115]},{"name":"ldap_escape_filter_elementA","features":[115]},{"name":"ldap_escape_filter_elementW","features":[115]},{"name":"ldap_explode_dn","features":[115]},{"name":"ldap_explode_dnA","features":[115]},{"name":"ldap_explode_dnW","features":[115]},{"name":"ldap_extended_operation","features":[3,115]},{"name":"ldap_extended_operationA","features":[3,115]},{"name":"ldap_extended_operationW","features":[3,115]},{"name":"ldap_extended_operation_sA","features":[3,115]},{"name":"ldap_extended_operation_sW","features":[3,115]},{"name":"ldap_first_attribute","features":[3,115]},{"name":"ldap_first_attributeA","features":[3,115]},{"name":"ldap_first_attributeW","features":[3,115]},{"name":"ldap_first_entry","features":[3,115]},{"name":"ldap_first_reference","features":[3,115]},{"name":"ldap_free_controls","features":[3,115]},{"name":"ldap_free_controlsA","features":[3,115]},{"name":"ldap_free_controlsW","features":[3,115]},{"name":"ldap_get_dn","features":[3,115]},{"name":"ldap_get_dnA","features":[3,115]},{"name":"ldap_get_dnW","features":[3,115]},{"name":"ldap_get_next_page","features":[115]},{"name":"ldap_get_next_page_s","features":[3,115]},{"name":"ldap_get_option","features":[115]},{"name":"ldap_get_optionW","features":[115]},{"name":"ldap_get_paged_count","features":[3,115]},{"name":"ldap_get_values","features":[3,115]},{"name":"ldap_get_valuesA","features":[3,115]},{"name":"ldap_get_valuesW","features":[3,115]},{"name":"ldap_get_values_len","features":[3,115]},{"name":"ldap_get_values_lenA","features":[3,115]},{"name":"ldap_get_values_lenW","features":[3,115]},{"name":"ldap_init","features":[115]},{"name":"ldap_initA","features":[115]},{"name":"ldap_initW","features":[115]},{"name":"ldap_memfree","features":[115]},{"name":"ldap_memfreeA","features":[115]},{"name":"ldap_memfreeW","features":[115]},{"name":"ldap_modify","features":[115]},{"name":"ldap_modifyA","features":[115]},{"name":"ldap_modifyW","features":[115]},{"name":"ldap_modify_ext","features":[3,115]},{"name":"ldap_modify_extA","features":[3,115]},{"name":"ldap_modify_extW","features":[3,115]},{"name":"ldap_modify_ext_s","features":[3,115]},{"name":"ldap_modify_ext_sA","features":[3,115]},{"name":"ldap_modify_ext_sW","features":[3,115]},{"name":"ldap_modify_s","features":[115]},{"name":"ldap_modify_sA","features":[115]},{"name":"ldap_modify_sW","features":[115]},{"name":"ldap_modrdn","features":[115]},{"name":"ldap_modrdn2","features":[115]},{"name":"ldap_modrdn2A","features":[115]},{"name":"ldap_modrdn2W","features":[115]},{"name":"ldap_modrdn2_s","features":[115]},{"name":"ldap_modrdn2_sA","features":[115]},{"name":"ldap_modrdn2_sW","features":[115]},{"name":"ldap_modrdnA","features":[115]},{"name":"ldap_modrdnW","features":[115]},{"name":"ldap_modrdn_s","features":[115]},{"name":"ldap_modrdn_sA","features":[115]},{"name":"ldap_modrdn_sW","features":[115]},{"name":"ldap_msgfree","features":[3,115]},{"name":"ldap_next_attribute","features":[3,115]},{"name":"ldap_next_attributeA","features":[3,115]},{"name":"ldap_next_attributeW","features":[3,115]},{"name":"ldap_next_entry","features":[3,115]},{"name":"ldap_next_reference","features":[3,115]},{"name":"ldap_open","features":[115]},{"name":"ldap_openA","features":[115]},{"name":"ldap_openW","features":[115]},{"name":"ldap_parse_extended_resultA","features":[3,115]},{"name":"ldap_parse_extended_resultW","features":[3,115]},{"name":"ldap_parse_page_control","features":[3,115]},{"name":"ldap_parse_page_controlA","features":[3,115]},{"name":"ldap_parse_page_controlW","features":[3,115]},{"name":"ldap_parse_reference","features":[3,115]},{"name":"ldap_parse_referenceA","features":[3,115]},{"name":"ldap_parse_referenceW","features":[3,115]},{"name":"ldap_parse_result","features":[3,115]},{"name":"ldap_parse_resultA","features":[3,115]},{"name":"ldap_parse_resultW","features":[3,115]},{"name":"ldap_parse_sort_control","features":[3,115]},{"name":"ldap_parse_sort_controlA","features":[3,115]},{"name":"ldap_parse_sort_controlW","features":[3,115]},{"name":"ldap_parse_vlv_controlA","features":[3,115]},{"name":"ldap_parse_vlv_controlW","features":[3,115]},{"name":"ldap_perror","features":[115]},{"name":"ldap_rename_ext","features":[3,115]},{"name":"ldap_rename_extA","features":[3,115]},{"name":"ldap_rename_extW","features":[3,115]},{"name":"ldap_rename_ext_s","features":[3,115]},{"name":"ldap_rename_ext_sA","features":[3,115]},{"name":"ldap_rename_ext_sW","features":[3,115]},{"name":"ldap_result","features":[3,115]},{"name":"ldap_result2error","features":[3,115]},{"name":"ldap_sasl_bindA","features":[3,115]},{"name":"ldap_sasl_bindW","features":[3,115]},{"name":"ldap_sasl_bind_sA","features":[3,115]},{"name":"ldap_sasl_bind_sW","features":[3,115]},{"name":"ldap_search","features":[115]},{"name":"ldap_searchA","features":[115]},{"name":"ldap_searchW","features":[115]},{"name":"ldap_search_abandon_page","features":[115]},{"name":"ldap_search_ext","features":[3,115]},{"name":"ldap_search_extA","features":[3,115]},{"name":"ldap_search_extW","features":[3,115]},{"name":"ldap_search_ext_s","features":[3,115]},{"name":"ldap_search_ext_sA","features":[3,115]},{"name":"ldap_search_ext_sW","features":[3,115]},{"name":"ldap_search_init_page","features":[3,115]},{"name":"ldap_search_init_pageA","features":[3,115]},{"name":"ldap_search_init_pageW","features":[3,115]},{"name":"ldap_search_s","features":[3,115]},{"name":"ldap_search_sA","features":[3,115]},{"name":"ldap_search_sW","features":[3,115]},{"name":"ldap_search_st","features":[3,115]},{"name":"ldap_search_stA","features":[3,115]},{"name":"ldap_search_stW","features":[3,115]},{"name":"ldap_set_dbg_flags","features":[115]},{"name":"ldap_set_dbg_routine","features":[115]},{"name":"ldap_set_option","features":[115]},{"name":"ldap_set_optionW","features":[115]},{"name":"ldap_simple_bind","features":[115]},{"name":"ldap_simple_bindA","features":[115]},{"name":"ldap_simple_bindW","features":[115]},{"name":"ldap_simple_bind_s","features":[115]},{"name":"ldap_simple_bind_sA","features":[115]},{"name":"ldap_simple_bind_sW","features":[115]},{"name":"ldap_sslinit","features":[115]},{"name":"ldap_sslinitA","features":[115]},{"name":"ldap_sslinitW","features":[115]},{"name":"ldap_start_tls_sA","features":[3,115]},{"name":"ldap_start_tls_sW","features":[3,115]},{"name":"ldap_startup","features":[3,115]},{"name":"ldap_stop_tls_s","features":[3,115]},{"name":"ldap_ufn2dn","features":[115]},{"name":"ldap_ufn2dnA","features":[115]},{"name":"ldap_ufn2dnW","features":[115]},{"name":"ldap_unbind","features":[115]},{"name":"ldap_unbind_s","features":[115]},{"name":"ldap_value_free","features":[115]},{"name":"ldap_value_freeA","features":[115]},{"name":"ldap_value_freeW","features":[115]},{"name":"ldap_value_free_len","features":[115]}],"476":[{"name":"WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_ACTION","features":[116]},{"name":"WEB_SOCKET_ACTION_QUEUE","features":[116]},{"name":"WEB_SOCKET_ALLOCATED_BUFFER_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_ALL_ACTION_QUEUE","features":[116]},{"name":"WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[116]},{"name":"WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[116]},{"name":"WEB_SOCKET_BUFFER","features":[116]},{"name":"WEB_SOCKET_BUFFER_TYPE","features":[116]},{"name":"WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[116]},{"name":"WEB_SOCKET_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_DISABLE_MASKING_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_DISABLE_UTF8_VERIFICATION_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_ENDPOINT_UNAVAILABLE_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_HANDLE","features":[116]},{"name":"WEB_SOCKET_HTTP_HEADER","features":[116]},{"name":"WEB_SOCKET_INDICATE_RECEIVE_COMPLETE_ACTION","features":[116]},{"name":"WEB_SOCKET_INDICATE_SEND_COMPLETE_ACTION","features":[116]},{"name":"WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_KEEPALIVE_INTERVAL_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[116]},{"name":"WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_NO_ACTION","features":[116]},{"name":"WEB_SOCKET_PING_PONG_BUFFER_TYPE","features":[116]},{"name":"WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_PROPERTY","features":[116]},{"name":"WEB_SOCKET_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_RECEIVE_ACTION_QUEUE","features":[116]},{"name":"WEB_SOCKET_RECEIVE_BUFFER_SIZE_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_RECEIVE_FROM_NETWORK_ACTION","features":[116]},{"name":"WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_SEND_ACTION_QUEUE","features":[116]},{"name":"WEB_SOCKET_SEND_BUFFER_SIZE_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_SEND_TO_NETWORK_ACTION","features":[116]},{"name":"WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_SUPPORTED_VERSIONS_PROPERTY_TYPE","features":[116]},{"name":"WEB_SOCKET_UNSOLICITED_PONG_BUFFER_TYPE","features":[116]},{"name":"WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[116]},{"name":"WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[116]},{"name":"WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[116]},{"name":"WebSocketAbortHandle","features":[116]},{"name":"WebSocketBeginClientHandshake","features":[116]},{"name":"WebSocketBeginServerHandshake","features":[116]},{"name":"WebSocketCompleteAction","features":[116]},{"name":"WebSocketCreateClientHandle","features":[116]},{"name":"WebSocketCreateServerHandle","features":[116]},{"name":"WebSocketDeleteHandle","features":[116]},{"name":"WebSocketEndClientHandshake","features":[116]},{"name":"WebSocketEndServerHandshake","features":[116]},{"name":"WebSocketGetAction","features":[116]},{"name":"WebSocketGetGlobalProperty","features":[116]},{"name":"WebSocketReceive","features":[116]},{"name":"WebSocketSend","features":[116]}],"477":[{"name":"API_GET_PROXY_FOR_URL","features":[117]},{"name":"API_GET_PROXY_SETTINGS","features":[117]},{"name":"API_QUERY_DATA_AVAILABLE","features":[117]},{"name":"API_READ_DATA","features":[117]},{"name":"API_RECEIVE_RESPONSE","features":[117]},{"name":"API_SEND_REQUEST","features":[117]},{"name":"API_WRITE_DATA","features":[117]},{"name":"AutoLogonPolicy_Always","features":[117]},{"name":"AutoLogonPolicy_Never","features":[117]},{"name":"AutoLogonPolicy_OnlyIfBypassProxy","features":[117]},{"name":"ERROR_WINHTTP_AUTODETECTION_FAILED","features":[117]},{"name":"ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR","features":[117]},{"name":"ERROR_WINHTTP_BAD_AUTO_PROXY_SCRIPT","features":[117]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_OPEN","features":[117]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_SEND","features":[117]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_OPEN","features":[117]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_SEND","features":[117]},{"name":"ERROR_WINHTTP_CANNOT_CONNECT","features":[117]},{"name":"ERROR_WINHTTP_CHUNKED_ENCODING_HEADER_SIZE_OVERFLOW","features":[117]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED","features":[117]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[117]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_ACCESS_PRIVATE_KEY","features":[117]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_PRIVATE_KEY","features":[117]},{"name":"ERROR_WINHTTP_CONNECTION_ERROR","features":[117]},{"name":"ERROR_WINHTTP_FEATURE_DISABLED","features":[117]},{"name":"ERROR_WINHTTP_GLOBAL_CALLBACK_FAILED","features":[117]},{"name":"ERROR_WINHTTP_HEADER_ALREADY_EXISTS","features":[117]},{"name":"ERROR_WINHTTP_HEADER_COUNT_EXCEEDED","features":[117]},{"name":"ERROR_WINHTTP_HEADER_NOT_FOUND","features":[117]},{"name":"ERROR_WINHTTP_HEADER_SIZE_OVERFLOW","features":[117]},{"name":"ERROR_WINHTTP_HTTP_PROTOCOL_MISMATCH","features":[117]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_STATE","features":[117]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_TYPE","features":[117]},{"name":"ERROR_WINHTTP_INTERNAL_ERROR","features":[117]},{"name":"ERROR_WINHTTP_INVALID_HEADER","features":[117]},{"name":"ERROR_WINHTTP_INVALID_OPTION","features":[117]},{"name":"ERROR_WINHTTP_INVALID_QUERY_REQUEST","features":[117]},{"name":"ERROR_WINHTTP_INVALID_SERVER_RESPONSE","features":[117]},{"name":"ERROR_WINHTTP_INVALID_URL","features":[117]},{"name":"ERROR_WINHTTP_LOGIN_FAILURE","features":[117]},{"name":"ERROR_WINHTTP_NAME_NOT_RESOLVED","features":[117]},{"name":"ERROR_WINHTTP_NOT_INITIALIZED","features":[117]},{"name":"ERROR_WINHTTP_OPERATION_CANCELLED","features":[117]},{"name":"ERROR_WINHTTP_OPTION_NOT_SETTABLE","features":[117]},{"name":"ERROR_WINHTTP_OUT_OF_HANDLES","features":[117]},{"name":"ERROR_WINHTTP_REDIRECT_FAILED","features":[117]},{"name":"ERROR_WINHTTP_RESEND_REQUEST","features":[117]},{"name":"ERROR_WINHTTP_RESERVED_189","features":[117]},{"name":"ERROR_WINHTTP_RESPONSE_DRAIN_OVERFLOW","features":[117]},{"name":"ERROR_WINHTTP_SCRIPT_EXECUTION_ERROR","features":[117]},{"name":"ERROR_WINHTTP_SECURE_CERT_CN_INVALID","features":[117]},{"name":"ERROR_WINHTTP_SECURE_CERT_DATE_INVALID","features":[117]},{"name":"ERROR_WINHTTP_SECURE_CERT_REVOKED","features":[117]},{"name":"ERROR_WINHTTP_SECURE_CERT_REV_FAILED","features":[117]},{"name":"ERROR_WINHTTP_SECURE_CERT_WRONG_USAGE","features":[117]},{"name":"ERROR_WINHTTP_SECURE_CHANNEL_ERROR","features":[117]},{"name":"ERROR_WINHTTP_SECURE_FAILURE","features":[117]},{"name":"ERROR_WINHTTP_SECURE_FAILURE_PROXY","features":[117]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CA","features":[117]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CERT","features":[117]},{"name":"ERROR_WINHTTP_SHUTDOWN","features":[117]},{"name":"ERROR_WINHTTP_TIMEOUT","features":[117]},{"name":"ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT","features":[117]},{"name":"ERROR_WINHTTP_UNHANDLED_SCRIPT_TYPE","features":[117]},{"name":"ERROR_WINHTTP_UNRECOGNIZED_SCHEME","features":[117]},{"name":"HTTPREQUEST_PROXYSETTING_DEFAULT","features":[117]},{"name":"HTTPREQUEST_PROXYSETTING_DIRECT","features":[117]},{"name":"HTTPREQUEST_PROXYSETTING_PRECONFIG","features":[117]},{"name":"HTTPREQUEST_PROXYSETTING_PROXY","features":[117]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_PROXY","features":[117]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_SERVER","features":[117]},{"name":"HTTP_STATUS_ACCEPTED","features":[117]},{"name":"HTTP_STATUS_AMBIGUOUS","features":[117]},{"name":"HTTP_STATUS_BAD_GATEWAY","features":[117]},{"name":"HTTP_STATUS_BAD_METHOD","features":[117]},{"name":"HTTP_STATUS_BAD_REQUEST","features":[117]},{"name":"HTTP_STATUS_CONFLICT","features":[117]},{"name":"HTTP_STATUS_CONTINUE","features":[117]},{"name":"HTTP_STATUS_CREATED","features":[117]},{"name":"HTTP_STATUS_DENIED","features":[117]},{"name":"HTTP_STATUS_FIRST","features":[117]},{"name":"HTTP_STATUS_FORBIDDEN","features":[117]},{"name":"HTTP_STATUS_GATEWAY_TIMEOUT","features":[117]},{"name":"HTTP_STATUS_GONE","features":[117]},{"name":"HTTP_STATUS_LAST","features":[117]},{"name":"HTTP_STATUS_LENGTH_REQUIRED","features":[117]},{"name":"HTTP_STATUS_MOVED","features":[117]},{"name":"HTTP_STATUS_NONE_ACCEPTABLE","features":[117]},{"name":"HTTP_STATUS_NOT_FOUND","features":[117]},{"name":"HTTP_STATUS_NOT_MODIFIED","features":[117]},{"name":"HTTP_STATUS_NOT_SUPPORTED","features":[117]},{"name":"HTTP_STATUS_NO_CONTENT","features":[117]},{"name":"HTTP_STATUS_OK","features":[117]},{"name":"HTTP_STATUS_PARTIAL","features":[117]},{"name":"HTTP_STATUS_PARTIAL_CONTENT","features":[117]},{"name":"HTTP_STATUS_PAYMENT_REQ","features":[117]},{"name":"HTTP_STATUS_PERMANENT_REDIRECT","features":[117]},{"name":"HTTP_STATUS_PRECOND_FAILED","features":[117]},{"name":"HTTP_STATUS_PROXY_AUTH_REQ","features":[117]},{"name":"HTTP_STATUS_REDIRECT","features":[117]},{"name":"HTTP_STATUS_REDIRECT_KEEP_VERB","features":[117]},{"name":"HTTP_STATUS_REDIRECT_METHOD","features":[117]},{"name":"HTTP_STATUS_REQUEST_TIMEOUT","features":[117]},{"name":"HTTP_STATUS_REQUEST_TOO_LARGE","features":[117]},{"name":"HTTP_STATUS_RESET_CONTENT","features":[117]},{"name":"HTTP_STATUS_RETRY_WITH","features":[117]},{"name":"HTTP_STATUS_SERVER_ERROR","features":[117]},{"name":"HTTP_STATUS_SERVICE_UNAVAIL","features":[117]},{"name":"HTTP_STATUS_SWITCH_PROTOCOLS","features":[117]},{"name":"HTTP_STATUS_UNSUPPORTED_MEDIA","features":[117]},{"name":"HTTP_STATUS_URI_TOO_LONG","features":[117]},{"name":"HTTP_STATUS_USE_PROXY","features":[117]},{"name":"HTTP_STATUS_VERSION_NOT_SUP","features":[117]},{"name":"HTTP_STATUS_WEBDAV_MULTI_STATUS","features":[117]},{"name":"HTTP_VERSION_INFO","features":[117]},{"name":"ICU_BROWSER_MODE","features":[117]},{"name":"ICU_DECODE","features":[117]},{"name":"ICU_ENCODE_PERCENT","features":[117]},{"name":"ICU_ENCODE_SPACES_ONLY","features":[117]},{"name":"ICU_ESCAPE","features":[117]},{"name":"ICU_ESCAPE_AUTHORITY","features":[117]},{"name":"ICU_NO_ENCODE","features":[117]},{"name":"ICU_NO_META","features":[117]},{"name":"ICU_REJECT_USERPWD","features":[117]},{"name":"INTERNET_DEFAULT_HTTPS_PORT","features":[117]},{"name":"INTERNET_DEFAULT_HTTP_PORT","features":[117]},{"name":"INTERNET_DEFAULT_PORT","features":[117]},{"name":"IWinHttpRequest","features":[117]},{"name":"IWinHttpRequestEvents","features":[117]},{"name":"NETWORKING_KEY_BUFSIZE","features":[117]},{"name":"SECURITY_FLAG_IGNORE_CERT_CN_INVALID","features":[117]},{"name":"SECURITY_FLAG_IGNORE_CERT_DATE_INVALID","features":[117]},{"name":"SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE","features":[117]},{"name":"SECURITY_FLAG_IGNORE_UNKNOWN_CA","features":[117]},{"name":"SECURITY_FLAG_SECURE","features":[117]},{"name":"SECURITY_FLAG_STRENGTH_MEDIUM","features":[117]},{"name":"SECURITY_FLAG_STRENGTH_STRONG","features":[117]},{"name":"SECURITY_FLAG_STRENGTH_WEAK","features":[117]},{"name":"SecureProtocol_ALL","features":[117]},{"name":"SecureProtocol_SSL2","features":[117]},{"name":"SecureProtocol_SSL3","features":[117]},{"name":"SecureProtocol_TLS1","features":[117]},{"name":"SecureProtocol_TLS1_1","features":[117]},{"name":"SecureProtocol_TLS1_2","features":[117]},{"name":"SslErrorFlag_CertCNInvalid","features":[117]},{"name":"SslErrorFlag_CertDateInvalid","features":[117]},{"name":"SslErrorFlag_CertWrongUsage","features":[117]},{"name":"SslErrorFlag_Ignore_All","features":[117]},{"name":"SslErrorFlag_UnknownCA","features":[117]},{"name":"URL_COMPONENTS","features":[117]},{"name":"WINHTTP_ACCESS_TYPE","features":[117]},{"name":"WINHTTP_ACCESS_TYPE_AUTOMATIC_PROXY","features":[117]},{"name":"WINHTTP_ACCESS_TYPE_DEFAULT_PROXY","features":[117]},{"name":"WINHTTP_ACCESS_TYPE_NAMED_PROXY","features":[117]},{"name":"WINHTTP_ACCESS_TYPE_NO_PROXY","features":[117]},{"name":"WINHTTP_ADDREQ_FLAGS_MASK","features":[117]},{"name":"WINHTTP_ADDREQ_FLAG_ADD","features":[117]},{"name":"WINHTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[117]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE","features":[117]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[117]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[117]},{"name":"WINHTTP_ADDREQ_FLAG_REPLACE","features":[117]},{"name":"WINHTTP_ADDREQ_INDEX_MASK","features":[117]},{"name":"WINHTTP_ASYNC_RESULT","features":[117]},{"name":"WINHTTP_AUTH_SCHEME_BASIC","features":[117]},{"name":"WINHTTP_AUTH_SCHEME_DIGEST","features":[117]},{"name":"WINHTTP_AUTH_SCHEME_NEGOTIATE","features":[117]},{"name":"WINHTTP_AUTH_SCHEME_NTLM","features":[117]},{"name":"WINHTTP_AUTH_SCHEME_PASSPORT","features":[117]},{"name":"WINHTTP_AUTH_TARGET_PROXY","features":[117]},{"name":"WINHTTP_AUTH_TARGET_SERVER","features":[117]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_DEFAULT","features":[117]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_HIGH","features":[117]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_LOW","features":[117]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MAX","features":[117]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MEDIUM","features":[117]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_PROXY_ONLY","features":[117]},{"name":"WINHTTP_AUTOPROXY_ALLOW_AUTOCONFIG","features":[117]},{"name":"WINHTTP_AUTOPROXY_ALLOW_CM","features":[117]},{"name":"WINHTTP_AUTOPROXY_ALLOW_STATIC","features":[117]},{"name":"WINHTTP_AUTOPROXY_AUTO_DETECT","features":[117]},{"name":"WINHTTP_AUTOPROXY_CONFIG_URL","features":[117]},{"name":"WINHTTP_AUTOPROXY_HOST_KEEPCASE","features":[117]},{"name":"WINHTTP_AUTOPROXY_HOST_LOWERCASE","features":[117]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_CLIENT","features":[117]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_SVC","features":[117]},{"name":"WINHTTP_AUTOPROXY_NO_DIRECTACCESS","features":[117]},{"name":"WINHTTP_AUTOPROXY_OPTIONS","features":[3,117]},{"name":"WINHTTP_AUTOPROXY_RUN_INPROCESS","features":[117]},{"name":"WINHTTP_AUTOPROXY_RUN_OUTPROCESS_ONLY","features":[117]},{"name":"WINHTTP_AUTOPROXY_SORT_RESULTS","features":[117]},{"name":"WINHTTP_AUTOPROXY_USE_INTERFACE_CONFIG","features":[117]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DHCP","features":[117]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DNS_A","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_DATA_AVAILABLE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_DETECTING_PROXY","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYFORURL_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYSETTINGS_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_HEADERS_AVAILABLE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_INTERMEDIATE_RESPONSE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_READ_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_REDIRECT","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_REQUEST_ERROR","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_SECURE_FAILURE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_SENDREQUEST_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_FLAG_WRITE_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSE_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSING_CONNECTION","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTION_CLOSED","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_DATA_AVAILABLE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_DETECTING_PROXY","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_DATE_INVALID","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REVOKED","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REV_FAILED","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_WRONG_USAGE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CA","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CERT","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_SECURITY_CHANNEL_ERROR","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYFORURL_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYSETTINGS_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CREATED","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_INTERMEDIATE_RESPONSE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_NAME_RESOLVED","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_READ_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_REDIRECT","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_ERROR","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_SENT","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_RESOLVING_NAME","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_SECURE_FAILURE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_SENDING_REQUEST","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_READ_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_WRITE_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_SHUTDOWN_COMPLETE","features":[117]},{"name":"WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE","features":[117]},{"name":"WINHTTP_CERTIFICATE_INFO","features":[3,117]},{"name":"WINHTTP_CONNECTION_GROUP","features":[117]},{"name":"WINHTTP_CONNECTION_INFO","features":[117,17]},{"name":"WINHTTP_CONNECTION_INFO","features":[117,17]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_408","features":[117]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_SSL_HANDSHAKE","features":[117]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_STALE_CONNECTION","features":[117]},{"name":"WINHTTP_CONNS_PER_SERVER_UNLIMITED","features":[117]},{"name":"WINHTTP_CREDS","features":[117]},{"name":"WINHTTP_CREDS_AUTHSCHEME","features":[117]},{"name":"WINHTTP_CREDS_EX","features":[117]},{"name":"WINHTTP_CURRENT_USER_IE_PROXY_CONFIG","features":[3,117]},{"name":"WINHTTP_DECOMPRESSION_FLAG_DEFLATE","features":[117]},{"name":"WINHTTP_DECOMPRESSION_FLAG_GZIP","features":[117]},{"name":"WINHTTP_DISABLE_AUTHENTICATION","features":[117]},{"name":"WINHTTP_DISABLE_COOKIES","features":[117]},{"name":"WINHTTP_DISABLE_KEEP_ALIVE","features":[117]},{"name":"WINHTTP_DISABLE_PASSPORT_AUTH","features":[117]},{"name":"WINHTTP_DISABLE_PASSPORT_KEYRING","features":[117]},{"name":"WINHTTP_DISABLE_REDIRECTS","features":[117]},{"name":"WINHTTP_DISABLE_SPN_SERVER_PORT","features":[117]},{"name":"WINHTTP_ENABLE_PASSPORT_AUTH","features":[117]},{"name":"WINHTTP_ENABLE_PASSPORT_KEYRING","features":[117]},{"name":"WINHTTP_ENABLE_SPN_SERVER_PORT","features":[117]},{"name":"WINHTTP_ENABLE_SSL_REVERT_IMPERSONATION","features":[117]},{"name":"WINHTTP_ENABLE_SSL_REVOCATION","features":[117]},{"name":"WINHTTP_ERROR_BASE","features":[117]},{"name":"WINHTTP_ERROR_LAST","features":[117]},{"name":"WINHTTP_EXTENDED_HEADER","features":[117]},{"name":"WINHTTP_EXTENDED_HEADER_FLAG_UNICODE","features":[117]},{"name":"WINHTTP_FAILED_CONNECTION_RETRIES","features":[117]},{"name":"WINHTTP_FEATURE_ADD_REQUEST_HEADERS_EX","features":[117]},{"name":"WINHTTP_FEATURE_BACKGROUND_CONNECTIONS","features":[117]},{"name":"WINHTTP_FEATURE_CONNECTION_GUID","features":[117]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V0","features":[117]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V1","features":[117]},{"name":"WINHTTP_FEATURE_DISABLE_CERT_CHAIN_BUILDING","features":[117]},{"name":"WINHTTP_FEATURE_DISABLE_PROXY_AUTH_SCHEMES","features":[117]},{"name":"WINHTTP_FEATURE_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[117]},{"name":"WINHTTP_FEATURE_DISABLE_STREAM_QUEUE","features":[117]},{"name":"WINHTTP_FEATURE_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[117]},{"name":"WINHTTP_FEATURE_EXPIRE_CONNECTION","features":[117]},{"name":"WINHTTP_FEATURE_EXTENDED_HEADER_FLAG_UNICODE","features":[117]},{"name":"WINHTTP_FEATURE_FAILED_CONNECTION_RETRIES","features":[117]},{"name":"WINHTTP_FEATURE_FIRST_AVAILABLE_CONNECTION","features":[117]},{"name":"WINHTTP_FEATURE_FLAG_AUTOMATIC_CHUNKING","features":[117]},{"name":"WINHTTP_FEATURE_FLAG_SECURE_DEFAULTS","features":[117]},{"name":"WINHTTP_FEATURE_FREE_QUERY_CONNECTION_GROUP_RESULT","features":[117]},{"name":"WINHTTP_FEATURE_HTTP2_KEEPALIVE","features":[117]},{"name":"WINHTTP_FEATURE_HTTP2_PLUS_TRANSFER_ENCODING","features":[117]},{"name":"WINHTTP_FEATURE_HTTP2_RECEIVE_WINDOW","features":[117]},{"name":"WINHTTP_FEATURE_HTTP3_HANDSHAKE_TIMEOUT","features":[117]},{"name":"WINHTTP_FEATURE_HTTP3_INITIAL_RTT","features":[117]},{"name":"WINHTTP_FEATURE_HTTP3_KEEPALIVE","features":[117]},{"name":"WINHTTP_FEATURE_HTTP3_STREAM_ERROR_CODE","features":[117]},{"name":"WINHTTP_FEATURE_HTTP_PROTOCOL_REQUIRED","features":[117]},{"name":"WINHTTP_FEATURE_IGNORE_CERT_REVOCATION_OFFLINE","features":[117]},{"name":"WINHTTP_FEATURE_IPV6_FAST_FALLBACK","features":[117]},{"name":"WINHTTP_FEATURE_IS_FEATURE_SUPPORTED","features":[117]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID","features":[117]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[117]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP","features":[117]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP_FLAG_INSECURE","features":[117]},{"name":"WINHTTP_FEATURE_QUERY_EX_ALL_HEADERS","features":[117]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_TRAILERS","features":[117]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_WIRE_ENCODING","features":[117]},{"name":"WINHTTP_FEATURE_QUERY_HEADERS_EX","features":[117]},{"name":"WINHTTP_FEATURE_QUIC_STATS","features":[117]},{"name":"WINHTTP_FEATURE_READ_DATA_EX","features":[117]},{"name":"WINHTTP_FEATURE_READ_DATA_EX_FLAG_FILL_BUFFER","features":[117]},{"name":"WINHTTP_FEATURE_REFERER_TOKEN_BINDING_HOSTNAME","features":[117]},{"name":"WINHTTP_FEATURE_REQUEST_ANNOTATION","features":[117]},{"name":"WINHTTP_FEATURE_REQUEST_STATS","features":[117]},{"name":"WINHTTP_FEATURE_REQUEST_TIMES","features":[117]},{"name":"WINHTTP_FEATURE_REQUIRE_STREAM_END","features":[117]},{"name":"WINHTTP_FEATURE_RESOLUTION_HOSTNAME","features":[117]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG","features":[117]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[117]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[117]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[117]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[117]},{"name":"WINHTTP_FEATURE_REVERT_IMPERSONATION_SERVER_CERT","features":[117]},{"name":"WINHTTP_FEATURE_SECURITY_FLAG_IGNORE_ALL_CERT_ERRORS","features":[117]},{"name":"WINHTTP_FEATURE_SECURITY_INFO","features":[117]},{"name":"WINHTTP_FEATURE_SERVER_CERT_CHAIN_CONTEXT","features":[117]},{"name":"WINHTTP_FEATURE_SET_PROXY_SETINGS_PER_USER","features":[117]},{"name":"WINHTTP_FEATURE_SET_TOKEN_BINDING","features":[117]},{"name":"WINHTTP_FEATURE_STREAM_ERROR_CODE","features":[117]},{"name":"WINHTTP_FEATURE_TCP_FAST_OPEN","features":[117]},{"name":"WINHTTP_FEATURE_TCP_KEEPALIVE","features":[117]},{"name":"WINHTTP_FEATURE_TCP_PRIORITY_STATUS","features":[117]},{"name":"WINHTTP_FEATURE_TLS_FALSE_START","features":[117]},{"name":"WINHTTP_FEATURE_TLS_PROTOCOL_INSECURE_FALLBACK","features":[117]},{"name":"WINHTTP_FEATURE_TOKEN_BINDING_PUBLIC_KEY","features":[117]},{"name":"WINHTTP_FLAG_ASYNC","features":[117]},{"name":"WINHTTP_FLAG_AUTOMATIC_CHUNKING","features":[117]},{"name":"WINHTTP_FLAG_BYPASS_PROXY_CACHE","features":[117]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE","features":[117]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE_QUERY","features":[117]},{"name":"WINHTTP_FLAG_ESCAPE_PERCENT","features":[117]},{"name":"WINHTTP_FLAG_NULL_CODEPAGE","features":[117]},{"name":"WINHTTP_FLAG_REFRESH","features":[117]},{"name":"WINHTTP_FLAG_SECURE","features":[117]},{"name":"WINHTTP_FLAG_SECURE_DEFAULTS","features":[117]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL2","features":[117]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL3","features":[117]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1","features":[117]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1","features":[117]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2","features":[117]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3","features":[117]},{"name":"WINHTTP_HANDLE_TYPE_CONNECT","features":[117]},{"name":"WINHTTP_HANDLE_TYPE_PROXY_RESOLVER","features":[117]},{"name":"WINHTTP_HANDLE_TYPE_REQUEST","features":[117]},{"name":"WINHTTP_HANDLE_TYPE_SESSION","features":[117]},{"name":"WINHTTP_HANDLE_TYPE_WEBSOCKET","features":[117]},{"name":"WINHTTP_HEADER_NAME","features":[117]},{"name":"WINHTTP_HOST_CONNECTION_GROUP","features":[117]},{"name":"WINHTTP_HTTP2_RECEIVE_WINDOW","features":[117]},{"name":"WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH","features":[117]},{"name":"WINHTTP_INTERNET_SCHEME","features":[117]},{"name":"WINHTTP_INTERNET_SCHEME_FTP","features":[117]},{"name":"WINHTTP_INTERNET_SCHEME_HTTP","features":[117]},{"name":"WINHTTP_INTERNET_SCHEME_HTTPS","features":[117]},{"name":"WINHTTP_INTERNET_SCHEME_SOCKS","features":[117]},{"name":"WINHTTP_LAST_OPTION","features":[117]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[117]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[117]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAGS_MASK","features":[117]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[117]},{"name":"WINHTTP_OPEN_REQUEST_FLAGS","features":[117]},{"name":"WINHTTP_OPTION_ASSURED_NON_BLOCKING_CALLBACKS","features":[117]},{"name":"WINHTTP_OPTION_AUTOLOGON_POLICY","features":[117]},{"name":"WINHTTP_OPTION_BACKGROUND_CONNECTIONS","features":[117]},{"name":"WINHTTP_OPTION_CALLBACK","features":[117]},{"name":"WINHTTP_OPTION_CLIENT_CERT_CONTEXT","features":[117]},{"name":"WINHTTP_OPTION_CLIENT_CERT_ISSUER_LIST","features":[117]},{"name":"WINHTTP_OPTION_CODEPAGE","features":[117]},{"name":"WINHTTP_OPTION_CONFIGURE_PASSPORT_AUTH","features":[117]},{"name":"WINHTTP_OPTION_CONNECTION_FILTER","features":[117]},{"name":"WINHTTP_OPTION_CONNECTION_GUID","features":[117]},{"name":"WINHTTP_OPTION_CONNECTION_INFO","features":[117]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V0","features":[117]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V1","features":[117]},{"name":"WINHTTP_OPTION_CONNECT_RETRIES","features":[117]},{"name":"WINHTTP_OPTION_CONNECT_TIMEOUT","features":[117]},{"name":"WINHTTP_OPTION_CONTEXT_VALUE","features":[117]},{"name":"WINHTTP_OPTION_DECOMPRESSION","features":[117]},{"name":"WINHTTP_OPTION_DISABLE_CERT_CHAIN_BUILDING","features":[117]},{"name":"WINHTTP_OPTION_DISABLE_FEATURE","features":[117]},{"name":"WINHTTP_OPTION_DISABLE_GLOBAL_POOLING","features":[117]},{"name":"WINHTTP_OPTION_DISABLE_PROXY_AUTH_SCHEMES","features":[117]},{"name":"WINHTTP_OPTION_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[117]},{"name":"WINHTTP_OPTION_DISABLE_STREAM_QUEUE","features":[117]},{"name":"WINHTTP_OPTION_ENABLETRACING","features":[117]},{"name":"WINHTTP_OPTION_ENABLE_FEATURE","features":[117]},{"name":"WINHTTP_OPTION_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[117]},{"name":"WINHTTP_OPTION_ENABLE_HTTP_PROTOCOL","features":[117]},{"name":"WINHTTP_OPTION_ENCODE_EXTRA","features":[117]},{"name":"WINHTTP_OPTION_EXPIRE_CONNECTION","features":[117]},{"name":"WINHTTP_OPTION_EXTENDED_ERROR","features":[117]},{"name":"WINHTTP_OPTION_FAILED_CONNECTION_RETRIES","features":[117]},{"name":"WINHTTP_OPTION_FEATURE_SUPPORTED","features":[117]},{"name":"WINHTTP_OPTION_FIRST_AVAILABLE_CONNECTION","features":[117]},{"name":"WINHTTP_OPTION_GLOBAL_PROXY_CREDS","features":[117]},{"name":"WINHTTP_OPTION_GLOBAL_SERVER_CREDS","features":[117]},{"name":"WINHTTP_OPTION_HANDLE_TYPE","features":[117]},{"name":"WINHTTP_OPTION_HTTP2_KEEPALIVE","features":[117]},{"name":"WINHTTP_OPTION_HTTP2_PLUS_TRANSFER_ENCODING","features":[117]},{"name":"WINHTTP_OPTION_HTTP2_RECEIVE_WINDOW","features":[117]},{"name":"WINHTTP_OPTION_HTTP3_HANDSHAKE_TIMEOUT","features":[117]},{"name":"WINHTTP_OPTION_HTTP3_INITIAL_RTT","features":[117]},{"name":"WINHTTP_OPTION_HTTP3_KEEPALIVE","features":[117]},{"name":"WINHTTP_OPTION_HTTP3_STREAM_ERROR_CODE","features":[117]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_REQUIRED","features":[117]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_USED","features":[117]},{"name":"WINHTTP_OPTION_HTTP_VERSION","features":[117]},{"name":"WINHTTP_OPTION_IGNORE_CERT_REVOCATION_OFFLINE","features":[117]},{"name":"WINHTTP_OPTION_IPV6_FAST_FALLBACK","features":[117]},{"name":"WINHTTP_OPTION_IS_PROXY_CONNECT_RESPONSE","features":[117]},{"name":"WINHTTP_OPTION_KDC_PROXY_SETTINGS","features":[117]},{"name":"WINHTTP_OPTION_MATCH_CONNECTION_GUID","features":[117]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[117]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_SERVER","features":[117]},{"name":"WINHTTP_OPTION_MAX_HTTP_AUTOMATIC_REDIRECTS","features":[117]},{"name":"WINHTTP_OPTION_MAX_HTTP_STATUS_CONTINUE","features":[117]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_DRAIN_SIZE","features":[117]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_HEADER_SIZE","features":[117]},{"name":"WINHTTP_OPTION_NETWORK_INTERFACE_AFFINITY","features":[117]},{"name":"WINHTTP_OPTION_PARENT_HANDLE","features":[117]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_TEXT","features":[117]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_URL","features":[117]},{"name":"WINHTTP_OPTION_PASSPORT_RETURN_URL","features":[117]},{"name":"WINHTTP_OPTION_PASSPORT_SIGN_OUT","features":[117]},{"name":"WINHTTP_OPTION_PASSWORD","features":[117]},{"name":"WINHTTP_OPTION_PROXY","features":[117]},{"name":"WINHTTP_OPTION_PROXY_DISABLE_SERVICE_CALLS","features":[117]},{"name":"WINHTTP_OPTION_PROXY_PASSWORD","features":[117]},{"name":"WINHTTP_OPTION_PROXY_RESULT_ENTRY","features":[117]},{"name":"WINHTTP_OPTION_PROXY_SPN_USED","features":[117]},{"name":"WINHTTP_OPTION_PROXY_USERNAME","features":[117]},{"name":"WINHTTP_OPTION_QUIC_STATS","features":[117]},{"name":"WINHTTP_OPTION_READ_BUFFER_SIZE","features":[117]},{"name":"WINHTTP_OPTION_RECEIVE_PROXY_CONNECT_RESPONSE","features":[117]},{"name":"WINHTTP_OPTION_RECEIVE_RESPONSE_TIMEOUT","features":[117]},{"name":"WINHTTP_OPTION_RECEIVE_TIMEOUT","features":[117]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY","features":[117]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_ALWAYS","features":[117]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DEFAULT","features":[117]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DISALLOW_HTTPS_TO_HTTP","features":[117]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_LAST","features":[117]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_NEVER","features":[117]},{"name":"WINHTTP_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[117]},{"name":"WINHTTP_OPTION_REJECT_USERPWD_IN_URL","features":[117]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION","features":[117]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[117]},{"name":"WINHTTP_OPTION_REQUEST_PRIORITY","features":[117]},{"name":"WINHTTP_OPTION_REQUEST_STATS","features":[117]},{"name":"WINHTTP_OPTION_REQUEST_TIMES","features":[117]},{"name":"WINHTTP_OPTION_REQUIRE_STREAM_END","features":[117]},{"name":"WINHTTP_OPTION_RESOLUTION_HOSTNAME","features":[117]},{"name":"WINHTTP_OPTION_RESOLVER_CACHE_CONFIG","features":[117]},{"name":"WINHTTP_OPTION_RESOLVE_TIMEOUT","features":[117]},{"name":"WINHTTP_OPTION_REVERT_IMPERSONATION_SERVER_CERT","features":[117]},{"name":"WINHTTP_OPTION_SECURE_PROTOCOLS","features":[117]},{"name":"WINHTTP_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[117]},{"name":"WINHTTP_OPTION_SECURITY_FLAGS","features":[117]},{"name":"WINHTTP_OPTION_SECURITY_INFO","features":[117]},{"name":"WINHTTP_OPTION_SECURITY_KEY_BITNESS","features":[117]},{"name":"WINHTTP_OPTION_SEND_TIMEOUT","features":[117]},{"name":"WINHTTP_OPTION_SERVER_CBT","features":[117]},{"name":"WINHTTP_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[117]},{"name":"WINHTTP_OPTION_SERVER_CERT_CONTEXT","features":[117]},{"name":"WINHTTP_OPTION_SERVER_SPN_USED","features":[117]},{"name":"WINHTTP_OPTION_SET_TOKEN_BINDING","features":[117]},{"name":"WINHTTP_OPTION_SPN","features":[117]},{"name":"WINHTTP_OPTION_SPN_MASK","features":[117]},{"name":"WINHTTP_OPTION_STREAM_ERROR_CODE","features":[117]},{"name":"WINHTTP_OPTION_TCP_FAST_OPEN","features":[117]},{"name":"WINHTTP_OPTION_TCP_KEEPALIVE","features":[117]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_HINT","features":[117]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_STATUS","features":[117]},{"name":"WINHTTP_OPTION_TLS_FALSE_START","features":[117]},{"name":"WINHTTP_OPTION_TLS_PROTOCOL_INSECURE_FALLBACK","features":[117]},{"name":"WINHTTP_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[117]},{"name":"WINHTTP_OPTION_UNLOAD_NOTIFY_EVENT","features":[117]},{"name":"WINHTTP_OPTION_UNSAFE_HEADER_PARSING","features":[117]},{"name":"WINHTTP_OPTION_UPGRADE_TO_WEB_SOCKET","features":[117]},{"name":"WINHTTP_OPTION_URL","features":[117]},{"name":"WINHTTP_OPTION_USERNAME","features":[117]},{"name":"WINHTTP_OPTION_USER_AGENT","features":[117]},{"name":"WINHTTP_OPTION_USE_GLOBAL_SERVER_CREDENTIALS","features":[117]},{"name":"WINHTTP_OPTION_USE_SESSION_SCH_CRED","features":[117]},{"name":"WINHTTP_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[117]},{"name":"WINHTTP_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[117]},{"name":"WINHTTP_OPTION_WEB_SOCKET_RECEIVE_BUFFER_SIZE","features":[117]},{"name":"WINHTTP_OPTION_WEB_SOCKET_SEND_BUFFER_SIZE","features":[117]},{"name":"WINHTTP_OPTION_WORKER_THREAD_COUNT","features":[117]},{"name":"WINHTTP_OPTION_WRITE_BUFFER_SIZE","features":[117]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP2","features":[117]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP3","features":[117]},{"name":"WINHTTP_PROXY_CHANGE_CALLBACK","features":[117]},{"name":"WINHTTP_PROXY_DISABLE_AUTH_LOCAL_SERVICE","features":[117]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_BASIC","features":[117]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_DIGEST","features":[117]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_KERBEROS","features":[117]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NEGOTIATE","features":[117]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NTLM","features":[117]},{"name":"WINHTTP_PROXY_INFO","features":[117]},{"name":"WINHTTP_PROXY_NETWORKING_KEY","features":[117]},{"name":"WINHTTP_PROXY_NOTIFY_CHANGE","features":[117]},{"name":"WINHTTP_PROXY_RESULT","features":[3,117]},{"name":"WINHTTP_PROXY_RESULT_ENTRY","features":[3,117]},{"name":"WINHTTP_PROXY_RESULT_EX","features":[3,117]},{"name":"WINHTTP_PROXY_SETTINGS","features":[3,117]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[117]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[117]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[117]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[117]},{"name":"WINHTTP_PROXY_SETTINGS_TYPE","features":[117]},{"name":"WINHTTP_PROXY_TYPE_AUTO_DETECT","features":[117]},{"name":"WINHTTP_PROXY_TYPE_AUTO_PROXY_URL","features":[117]},{"name":"WINHTTP_PROXY_TYPE_DIRECT","features":[117]},{"name":"WINHTTP_PROXY_TYPE_PROXY","features":[117]},{"name":"WINHTTP_QUERY_ACCEPT","features":[117]},{"name":"WINHTTP_QUERY_ACCEPT_CHARSET","features":[117]},{"name":"WINHTTP_QUERY_ACCEPT_ENCODING","features":[117]},{"name":"WINHTTP_QUERY_ACCEPT_LANGUAGE","features":[117]},{"name":"WINHTTP_QUERY_ACCEPT_RANGES","features":[117]},{"name":"WINHTTP_QUERY_AGE","features":[117]},{"name":"WINHTTP_QUERY_ALLOW","features":[117]},{"name":"WINHTTP_QUERY_AUTHENTICATION_INFO","features":[117]},{"name":"WINHTTP_QUERY_AUTHORIZATION","features":[117]},{"name":"WINHTTP_QUERY_CACHE_CONTROL","features":[117]},{"name":"WINHTTP_QUERY_CONNECTION","features":[117]},{"name":"WINHTTP_QUERY_CONNECTION_GROUP_RESULT","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_BASE","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_DESCRIPTION","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_DISPOSITION","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_ENCODING","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_ID","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_LANGUAGE","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_LENGTH","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_LOCATION","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_MD5","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_RANGE","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[117]},{"name":"WINHTTP_QUERY_CONTENT_TYPE","features":[117]},{"name":"WINHTTP_QUERY_COOKIE","features":[117]},{"name":"WINHTTP_QUERY_COST","features":[117]},{"name":"WINHTTP_QUERY_CUSTOM","features":[117]},{"name":"WINHTTP_QUERY_DATE","features":[117]},{"name":"WINHTTP_QUERY_DERIVED_FROM","features":[117]},{"name":"WINHTTP_QUERY_ETAG","features":[117]},{"name":"WINHTTP_QUERY_EXPECT","features":[117]},{"name":"WINHTTP_QUERY_EXPIRES","features":[117]},{"name":"WINHTTP_QUERY_EX_ALL_HEADERS","features":[117]},{"name":"WINHTTP_QUERY_FLAG_NUMBER","features":[117]},{"name":"WINHTTP_QUERY_FLAG_NUMBER64","features":[117]},{"name":"WINHTTP_QUERY_FLAG_REQUEST_HEADERS","features":[117]},{"name":"WINHTTP_QUERY_FLAG_SYSTEMTIME","features":[117]},{"name":"WINHTTP_QUERY_FLAG_TRAILERS","features":[117]},{"name":"WINHTTP_QUERY_FLAG_WIRE_ENCODING","features":[117]},{"name":"WINHTTP_QUERY_FORWARDED","features":[117]},{"name":"WINHTTP_QUERY_FROM","features":[117]},{"name":"WINHTTP_QUERY_HOST","features":[117]},{"name":"WINHTTP_QUERY_IF_MATCH","features":[117]},{"name":"WINHTTP_QUERY_IF_MODIFIED_SINCE","features":[117]},{"name":"WINHTTP_QUERY_IF_NONE_MATCH","features":[117]},{"name":"WINHTTP_QUERY_IF_RANGE","features":[117]},{"name":"WINHTTP_QUERY_IF_UNMODIFIED_SINCE","features":[117]},{"name":"WINHTTP_QUERY_LAST_MODIFIED","features":[117]},{"name":"WINHTTP_QUERY_LINK","features":[117]},{"name":"WINHTTP_QUERY_LOCATION","features":[117]},{"name":"WINHTTP_QUERY_MAX","features":[117]},{"name":"WINHTTP_QUERY_MAX_FORWARDS","features":[117]},{"name":"WINHTTP_QUERY_MESSAGE_ID","features":[117]},{"name":"WINHTTP_QUERY_MIME_VERSION","features":[117]},{"name":"WINHTTP_QUERY_ORIG_URI","features":[117]},{"name":"WINHTTP_QUERY_PASSPORT_CONFIG","features":[117]},{"name":"WINHTTP_QUERY_PASSPORT_URLS","features":[117]},{"name":"WINHTTP_QUERY_PRAGMA","features":[117]},{"name":"WINHTTP_QUERY_PROXY_AUTHENTICATE","features":[117]},{"name":"WINHTTP_QUERY_PROXY_AUTHORIZATION","features":[117]},{"name":"WINHTTP_QUERY_PROXY_CONNECTION","features":[117]},{"name":"WINHTTP_QUERY_PROXY_SUPPORT","features":[117]},{"name":"WINHTTP_QUERY_PUBLIC","features":[117]},{"name":"WINHTTP_QUERY_RANGE","features":[117]},{"name":"WINHTTP_QUERY_RAW_HEADERS","features":[117]},{"name":"WINHTTP_QUERY_RAW_HEADERS_CRLF","features":[117]},{"name":"WINHTTP_QUERY_REFERER","features":[117]},{"name":"WINHTTP_QUERY_REFRESH","features":[117]},{"name":"WINHTTP_QUERY_REQUEST_METHOD","features":[117]},{"name":"WINHTTP_QUERY_RETRY_AFTER","features":[117]},{"name":"WINHTTP_QUERY_SERVER","features":[117]},{"name":"WINHTTP_QUERY_SET_COOKIE","features":[117]},{"name":"WINHTTP_QUERY_STATUS_CODE","features":[117]},{"name":"WINHTTP_QUERY_STATUS_TEXT","features":[117]},{"name":"WINHTTP_QUERY_TITLE","features":[117]},{"name":"WINHTTP_QUERY_TRANSFER_ENCODING","features":[117]},{"name":"WINHTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[117]},{"name":"WINHTTP_QUERY_UPGRADE","features":[117]},{"name":"WINHTTP_QUERY_URI","features":[117]},{"name":"WINHTTP_QUERY_USER_AGENT","features":[117]},{"name":"WINHTTP_QUERY_VARY","features":[117]},{"name":"WINHTTP_QUERY_VERSION","features":[117]},{"name":"WINHTTP_QUERY_VIA","features":[117]},{"name":"WINHTTP_QUERY_WARNING","features":[117]},{"name":"WINHTTP_QUERY_WWW_AUTHENTICATE","features":[117]},{"name":"WINHTTP_REQUEST_STATS","features":[117]},{"name":"WINHTTP_REQUEST_STATS","features":[117]},{"name":"WINHTTP_REQUEST_STAT_ENTRY","features":[117]},{"name":"WINHTTP_REQUEST_STAT_FLAG_FIRST_REQUEST","features":[117]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_FALSE_START","features":[117]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_SESSION_RESUMPTION","features":[117]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TCP_FAST_OPEN","features":[117]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_FALSE_START","features":[117]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_SESSION_RESUMPTION","features":[117]},{"name":"WINHTTP_REQUEST_TIMES","features":[117]},{"name":"WINHTTP_REQUEST_TIMES","features":[117]},{"name":"WINHTTP_REQUEST_TIME_ENTRY","features":[117]},{"name":"WINHTTP_RESET_ALL","features":[117]},{"name":"WINHTTP_RESET_DISCARD_RESOLVERS","features":[117]},{"name":"WINHTTP_RESET_NOTIFY_NETWORK_CHANGED","features":[117]},{"name":"WINHTTP_RESET_OUT_OF_PROC","features":[117]},{"name":"WINHTTP_RESET_SCRIPT_CACHE","features":[117]},{"name":"WINHTTP_RESET_STATE","features":[117]},{"name":"WINHTTP_RESET_SWPAD_ALL","features":[117]},{"name":"WINHTTP_RESET_SWPAD_CURRENT_NETWORK","features":[117]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[117]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[117]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[117]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[117]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[117]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[117]},{"name":"WINHTTP_SECURE_DNS_SETTING","features":[117]},{"name":"WINHTTP_STATUS_CALLBACK","features":[117]},{"name":"WINHTTP_TIME_FORMAT_BUFSIZE","features":[117]},{"name":"WINHTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_ASYNC_RESULT","features":[117]},{"name":"WINHTTP_WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[117]},{"name":"WINHTTP_WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[117]},{"name":"WINHTTP_WEB_SOCKET_BUFFER_TYPE","features":[117]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[117]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_OPERATION","features":[117]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[117]},{"name":"WINHTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[117]},{"name":"WINHTTP_WEB_SOCKET_OPERATION","features":[117]},{"name":"WINHTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[117]},{"name":"WINHTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_SEND_OPERATION","features":[117]},{"name":"WINHTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[117]},{"name":"WINHTTP_WEB_SOCKET_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[117]},{"name":"WINHTTP_WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[117]},{"name":"WINHTTP_WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[117]},{"name":"WIN_HTTP_CREATE_URL_FLAGS","features":[117]},{"name":"WinHttpAddRequestHeaders","features":[3,117]},{"name":"WinHttpAddRequestHeadersEx","features":[117]},{"name":"WinHttpCheckPlatform","features":[3,117]},{"name":"WinHttpCloseHandle","features":[3,117]},{"name":"WinHttpConnect","features":[117]},{"name":"WinHttpConnectFailureCount","features":[117]},{"name":"WinHttpConnectionAcquireEnd","features":[117]},{"name":"WinHttpConnectionAcquireStart","features":[117]},{"name":"WinHttpConnectionAcquireWaitEnd","features":[117]},{"name":"WinHttpConnectionEstablishmentEnd","features":[117]},{"name":"WinHttpConnectionEstablishmentStart","features":[117]},{"name":"WinHttpCrackUrl","features":[3,117]},{"name":"WinHttpCreateProxyResolver","features":[117]},{"name":"WinHttpCreateUrl","features":[3,117]},{"name":"WinHttpDetectAutoProxyConfigUrl","features":[3,117]},{"name":"WinHttpFreeProxyResult","features":[3,117]},{"name":"WinHttpFreeProxyResultEx","features":[3,117]},{"name":"WinHttpFreeProxySettings","features":[3,117]},{"name":"WinHttpFreeProxySettingsEx","features":[117]},{"name":"WinHttpFreeQueryConnectionGroupResult","features":[117]},{"name":"WinHttpGetDefaultProxyConfiguration","features":[3,117]},{"name":"WinHttpGetIEProxyConfigForCurrentUser","features":[3,117]},{"name":"WinHttpGetProxyForUrl","features":[3,117]},{"name":"WinHttpGetProxyForUrlEx","features":[3,117]},{"name":"WinHttpGetProxyForUrlEx2","features":[3,117]},{"name":"WinHttpGetProxyResult","features":[3,117]},{"name":"WinHttpGetProxyResultEx","features":[3,117]},{"name":"WinHttpGetProxySettingsEx","features":[117]},{"name":"WinHttpGetProxySettingsResultEx","features":[117]},{"name":"WinHttpGetProxySettingsVersion","features":[117]},{"name":"WinHttpNameResolutionEnd","features":[117]},{"name":"WinHttpNameResolutionStart","features":[117]},{"name":"WinHttpOpen","features":[117]},{"name":"WinHttpOpenRequest","features":[117]},{"name":"WinHttpProxyDetectionEnd","features":[117]},{"name":"WinHttpProxyDetectionStart","features":[117]},{"name":"WinHttpProxyFailureCount","features":[117]},{"name":"WinHttpProxySettingsTypeUnknown","features":[117]},{"name":"WinHttpProxySettingsTypeWsa","features":[117]},{"name":"WinHttpProxySettingsTypeWsl","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg1End","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Size","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Start","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg2End","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Size","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Start","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg3End","features":[117]},{"name":"WinHttpProxyTlsHandshakeClientLeg3Start","features":[117]},{"name":"WinHttpProxyTlsHandshakeServerLeg1Size","features":[117]},{"name":"WinHttpProxyTlsHandshakeServerLeg2Size","features":[117]},{"name":"WinHttpProxyTunnelEnd","features":[117]},{"name":"WinHttpProxyTunnelStart","features":[117]},{"name":"WinHttpQueryAuthSchemes","features":[3,117]},{"name":"WinHttpQueryConnectionGroup","features":[117]},{"name":"WinHttpQueryDataAvailable","features":[3,117]},{"name":"WinHttpQueryHeaders","features":[3,117]},{"name":"WinHttpQueryHeadersEx","features":[117]},{"name":"WinHttpQueryOption","features":[3,117]},{"name":"WinHttpReadData","features":[3,117]},{"name":"WinHttpReadDataEx","features":[117]},{"name":"WinHttpReadProxySettings","features":[3,117]},{"name":"WinHttpReceiveResponse","features":[3,117]},{"name":"WinHttpReceiveResponseBodyDecompressionDelta","features":[117]},{"name":"WinHttpReceiveResponseEnd","features":[117]},{"name":"WinHttpReceiveResponseHeadersDecompressionEnd","features":[117]},{"name":"WinHttpReceiveResponseHeadersDecompressionStart","features":[117]},{"name":"WinHttpReceiveResponseHeadersEnd","features":[117]},{"name":"WinHttpReceiveResponseStart","features":[117]},{"name":"WinHttpRegisterProxyChangeNotification","features":[117]},{"name":"WinHttpRequest","features":[117]},{"name":"WinHttpRequestAutoLogonPolicy","features":[117]},{"name":"WinHttpRequestHeadersCompressedSize","features":[117]},{"name":"WinHttpRequestHeadersSize","features":[117]},{"name":"WinHttpRequestOption","features":[117]},{"name":"WinHttpRequestOption_EnableCertificateRevocationCheck","features":[117]},{"name":"WinHttpRequestOption_EnableHttp1_1","features":[117]},{"name":"WinHttpRequestOption_EnableHttpsToHttpRedirects","features":[117]},{"name":"WinHttpRequestOption_EnablePassportAuthentication","features":[117]},{"name":"WinHttpRequestOption_EnableRedirects","features":[117]},{"name":"WinHttpRequestOption_EnableTracing","features":[117]},{"name":"WinHttpRequestOption_EscapePercentInURL","features":[117]},{"name":"WinHttpRequestOption_MaxAutomaticRedirects","features":[117]},{"name":"WinHttpRequestOption_MaxResponseDrainSize","features":[117]},{"name":"WinHttpRequestOption_MaxResponseHeaderSize","features":[117]},{"name":"WinHttpRequestOption_RejectUserpwd","features":[117]},{"name":"WinHttpRequestOption_RevertImpersonationOverSsl","features":[117]},{"name":"WinHttpRequestOption_SecureProtocols","features":[117]},{"name":"WinHttpRequestOption_SelectCertificate","features":[117]},{"name":"WinHttpRequestOption_SslErrorIgnoreFlags","features":[117]},{"name":"WinHttpRequestOption_URL","features":[117]},{"name":"WinHttpRequestOption_URLCodePage","features":[117]},{"name":"WinHttpRequestOption_UrlEscapeDisable","features":[117]},{"name":"WinHttpRequestOption_UrlEscapeDisableQuery","features":[117]},{"name":"WinHttpRequestOption_UserAgentString","features":[117]},{"name":"WinHttpRequestSecureProtocols","features":[117]},{"name":"WinHttpRequestSslErrorFlags","features":[117]},{"name":"WinHttpRequestStatLast","features":[117]},{"name":"WinHttpRequestStatMax","features":[117]},{"name":"WinHttpRequestTimeLast","features":[117]},{"name":"WinHttpRequestTimeMax","features":[117]},{"name":"WinHttpResetAutoProxy","features":[117]},{"name":"WinHttpResponseBodyCompressedSize","features":[117]},{"name":"WinHttpResponseBodySize","features":[117]},{"name":"WinHttpResponseHeadersCompressedSize","features":[117]},{"name":"WinHttpResponseHeadersSize","features":[117]},{"name":"WinHttpSecureDnsSettingDefault","features":[117]},{"name":"WinHttpSecureDnsSettingForcePlaintext","features":[117]},{"name":"WinHttpSecureDnsSettingMax","features":[117]},{"name":"WinHttpSecureDnsSettingRequireEncryption","features":[117]},{"name":"WinHttpSecureDnsSettingTryEncryptionWithFallback","features":[117]},{"name":"WinHttpSendRequest","features":[3,117]},{"name":"WinHttpSendRequestEnd","features":[117]},{"name":"WinHttpSendRequestHeadersCompressionEnd","features":[117]},{"name":"WinHttpSendRequestHeadersCompressionStart","features":[117]},{"name":"WinHttpSendRequestHeadersEnd","features":[117]},{"name":"WinHttpSendRequestStart","features":[117]},{"name":"WinHttpSetCredentials","features":[3,117]},{"name":"WinHttpSetDefaultProxyConfiguration","features":[3,117]},{"name":"WinHttpSetOption","features":[3,117]},{"name":"WinHttpSetProxySettingsPerUser","features":[3,117]},{"name":"WinHttpSetStatusCallback","features":[117]},{"name":"WinHttpSetTimeouts","features":[3,117]},{"name":"WinHttpStreamWaitEnd","features":[117]},{"name":"WinHttpStreamWaitStart","features":[117]},{"name":"WinHttpTimeFromSystemTime","features":[3,117]},{"name":"WinHttpTimeToSystemTime","features":[3,117]},{"name":"WinHttpTlsHandshakeClientLeg1End","features":[117]},{"name":"WinHttpTlsHandshakeClientLeg1Size","features":[117]},{"name":"WinHttpTlsHandshakeClientLeg1Start","features":[117]},{"name":"WinHttpTlsHandshakeClientLeg2End","features":[117]},{"name":"WinHttpTlsHandshakeClientLeg2Size","features":[117]},{"name":"WinHttpTlsHandshakeClientLeg2Start","features":[117]},{"name":"WinHttpTlsHandshakeClientLeg3End","features":[117]},{"name":"WinHttpTlsHandshakeClientLeg3Start","features":[117]},{"name":"WinHttpTlsHandshakeServerLeg1Size","features":[117]},{"name":"WinHttpTlsHandshakeServerLeg2Size","features":[117]},{"name":"WinHttpUnregisterProxyChangeNotification","features":[117]},{"name":"WinHttpWebSocketClose","features":[117]},{"name":"WinHttpWebSocketCompleteUpgrade","features":[117]},{"name":"WinHttpWebSocketQueryCloseStatus","features":[117]},{"name":"WinHttpWebSocketReceive","features":[117]},{"name":"WinHttpWebSocketSend","features":[117]},{"name":"WinHttpWebSocketShutdown","features":[117]},{"name":"WinHttpWriteData","features":[3,117]},{"name":"WinHttpWriteProxySettings","features":[3,117]}],"478":[{"name":"ANY_CACHE_ENTRY","features":[118]},{"name":"APP_CACHE_DOWNLOAD_ENTRY","features":[118]},{"name":"APP_CACHE_DOWNLOAD_LIST","features":[118]},{"name":"APP_CACHE_ENTRY_TYPE_EXPLICIT","features":[118]},{"name":"APP_CACHE_ENTRY_TYPE_FALLBACK","features":[118]},{"name":"APP_CACHE_ENTRY_TYPE_FOREIGN","features":[118]},{"name":"APP_CACHE_ENTRY_TYPE_MANIFEST","features":[118]},{"name":"APP_CACHE_ENTRY_TYPE_MASTER","features":[118]},{"name":"APP_CACHE_FINALIZE_STATE","features":[118]},{"name":"APP_CACHE_GROUP_INFO","features":[3,118]},{"name":"APP_CACHE_GROUP_LIST","features":[3,118]},{"name":"APP_CACHE_LOOKUP_NO_MASTER_ONLY","features":[118]},{"name":"APP_CACHE_STATE","features":[118]},{"name":"AUTH_FLAG_DISABLE_BASIC_CLEARCHANNEL","features":[118]},{"name":"AUTH_FLAG_DISABLE_NEGOTIATE","features":[118]},{"name":"AUTH_FLAG_DISABLE_SERVER_AUTH","features":[118]},{"name":"AUTH_FLAG_ENABLE_NEGOTIATE","features":[118]},{"name":"AUTH_FLAG_RESET","features":[118]},{"name":"AUTODIAL_MODE_ALWAYS","features":[118]},{"name":"AUTODIAL_MODE_NEVER","features":[118]},{"name":"AUTODIAL_MODE_NO_NETWORK_PRESENT","features":[118]},{"name":"AUTO_PROXY_FLAG_ALWAYS_DETECT","features":[118]},{"name":"AUTO_PROXY_FLAG_CACHE_INIT_RUN","features":[118]},{"name":"AUTO_PROXY_FLAG_DETECTION_RUN","features":[118]},{"name":"AUTO_PROXY_FLAG_DETECTION_SUSPECT","features":[118]},{"name":"AUTO_PROXY_FLAG_DONT_CACHE_PROXY_RESULT","features":[118]},{"name":"AUTO_PROXY_FLAG_MIGRATED","features":[118]},{"name":"AUTO_PROXY_FLAG_USER_SET","features":[118]},{"name":"AUTO_PROXY_SCRIPT_BUFFER","features":[118]},{"name":"AppCacheCheckManifest","features":[118]},{"name":"AppCacheCloseHandle","features":[118]},{"name":"AppCacheCreateAndCommitFile","features":[118]},{"name":"AppCacheDeleteGroup","features":[118]},{"name":"AppCacheDeleteIEGroup","features":[118]},{"name":"AppCacheDuplicateHandle","features":[118]},{"name":"AppCacheFinalize","features":[118]},{"name":"AppCacheFinalizeStateComplete","features":[118]},{"name":"AppCacheFinalizeStateIncomplete","features":[118]},{"name":"AppCacheFinalizeStateManifestChange","features":[118]},{"name":"AppCacheFreeDownloadList","features":[118]},{"name":"AppCacheFreeGroupList","features":[3,118]},{"name":"AppCacheFreeIESpace","features":[3,118]},{"name":"AppCacheFreeSpace","features":[3,118]},{"name":"AppCacheGetDownloadList","features":[118]},{"name":"AppCacheGetFallbackUrl","features":[118]},{"name":"AppCacheGetGroupList","features":[3,118]},{"name":"AppCacheGetIEGroupList","features":[3,118]},{"name":"AppCacheGetInfo","features":[3,118]},{"name":"AppCacheGetManifestUrl","features":[118]},{"name":"AppCacheLookup","features":[118]},{"name":"AppCacheStateNoUpdateNeeded","features":[118]},{"name":"AppCacheStateUpdateNeeded","features":[118]},{"name":"AppCacheStateUpdateNeededMasterOnly","features":[118]},{"name":"AppCacheStateUpdateNeededNew","features":[118]},{"name":"AutoProxyHelperFunctions","features":[118]},{"name":"AutoProxyHelperVtbl","features":[118]},{"name":"CACHEGROUP_ATTRIBUTE_BASIC","features":[118]},{"name":"CACHEGROUP_ATTRIBUTE_FLAG","features":[118]},{"name":"CACHEGROUP_ATTRIBUTE_GET_ALL","features":[118]},{"name":"CACHEGROUP_ATTRIBUTE_GROUPNAME","features":[118]},{"name":"CACHEGROUP_ATTRIBUTE_QUOTA","features":[118]},{"name":"CACHEGROUP_ATTRIBUTE_STORAGE","features":[118]},{"name":"CACHEGROUP_ATTRIBUTE_TYPE","features":[118]},{"name":"CACHEGROUP_FLAG_FLUSHURL_ONDELETE","features":[118]},{"name":"CACHEGROUP_FLAG_GIDONLY","features":[118]},{"name":"CACHEGROUP_FLAG_NONPURGEABLE","features":[118]},{"name":"CACHEGROUP_FLAG_VALID","features":[118]},{"name":"CACHEGROUP_ID_BUILTIN_STICKY","features":[118]},{"name":"CACHEGROUP_SEARCH_ALL","features":[118]},{"name":"CACHEGROUP_SEARCH_BYURL","features":[118]},{"name":"CACHEGROUP_TYPE_INVALID","features":[118]},{"name":"CACHE_CONFIG","features":[118]},{"name":"CACHE_CONFIG_APPCONTAINER_CONTENT_QUOTA_FC","features":[118]},{"name":"CACHE_CONFIG_APPCONTAINER_TOTAL_CONTENT_QUOTA_FC","features":[118]},{"name":"CACHE_CONFIG_CONTENT_PATHS_FC","features":[118]},{"name":"CACHE_CONFIG_CONTENT_QUOTA_FC","features":[118]},{"name":"CACHE_CONFIG_CONTENT_USAGE_FC","features":[118]},{"name":"CACHE_CONFIG_COOKIES_PATHS_FC","features":[118]},{"name":"CACHE_CONFIG_DISK_CACHE_PATHS_FC","features":[118]},{"name":"CACHE_CONFIG_FORCE_CLEANUP_FC","features":[118]},{"name":"CACHE_CONFIG_HISTORY_PATHS_FC","features":[118]},{"name":"CACHE_CONFIG_QUOTA_FC","features":[118]},{"name":"CACHE_CONFIG_STICKY_CONTENT_USAGE_FC","features":[118]},{"name":"CACHE_CONFIG_SYNC_MODE_FC","features":[118]},{"name":"CACHE_CONFIG_TOTAL_CONTENT_QUOTA_FC","features":[118]},{"name":"CACHE_CONFIG_USER_MODE_FC","features":[118]},{"name":"CACHE_ENTRY_ACCTIME_FC","features":[118]},{"name":"CACHE_ENTRY_ATTRIBUTE_FC","features":[118]},{"name":"CACHE_ENTRY_EXEMPT_DELTA_FC","features":[118]},{"name":"CACHE_ENTRY_EXPTIME_FC","features":[118]},{"name":"CACHE_ENTRY_HEADERINFO_FC","features":[118]},{"name":"CACHE_ENTRY_HITRATE_FC","features":[118]},{"name":"CACHE_ENTRY_MODIFY_DATA_FC","features":[118]},{"name":"CACHE_ENTRY_MODTIME_FC","features":[118]},{"name":"CACHE_ENTRY_SYNCTIME_FC","features":[118]},{"name":"CACHE_ENTRY_TYPE_FC","features":[118]},{"name":"CACHE_FIND_CONTAINER_RETURN_NOCHANGE","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_READ_COUNT_SINCE_LAST_SCAVENGE","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_12","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_13","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_15","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_16","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_17","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_18","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_19","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_20","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_23","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_24","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_25","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_26","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_28","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_29","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_30","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_31","features":[118]},{"name":"CACHE_HEADER_DATA_CACHE_WRITE_COUNT_SINCE_LAST_SCAVENGE","features":[118]},{"name":"CACHE_HEADER_DATA_CONLIST_CHANGE_COUNT","features":[118]},{"name":"CACHE_HEADER_DATA_COOKIE_CHANGE_COUNT","features":[118]},{"name":"CACHE_HEADER_DATA_CURRENT_SETTINGS_VERSION","features":[118]},{"name":"CACHE_HEADER_DATA_DOWNLOAD_PARTIAL","features":[118]},{"name":"CACHE_HEADER_DATA_GID_HIGH","features":[118]},{"name":"CACHE_HEADER_DATA_GID_LOW","features":[118]},{"name":"CACHE_HEADER_DATA_HSTS_CHANGE_COUNT","features":[118]},{"name":"CACHE_HEADER_DATA_LAST","features":[118]},{"name":"CACHE_HEADER_DATA_LAST_SCAVENGE_TIMESTAMP","features":[118]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_FILTER","features":[118]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_HWND","features":[118]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_MESG","features":[118]},{"name":"CACHE_HEADER_DATA_ROOTGROUP_OFFSET","features":[118]},{"name":"CACHE_HEADER_DATA_ROOT_GROUPLIST_OFFSET","features":[118]},{"name":"CACHE_HEADER_DATA_ROOT_LEAK_OFFSET","features":[118]},{"name":"CACHE_HEADER_DATA_SSL_STATE_COUNT","features":[118]},{"name":"CACHE_NOTIFY_ADD_URL","features":[118]},{"name":"CACHE_NOTIFY_DELETE_ALL","features":[118]},{"name":"CACHE_NOTIFY_DELETE_URL","features":[118]},{"name":"CACHE_NOTIFY_FILTER_CHANGED","features":[118]},{"name":"CACHE_NOTIFY_SET_OFFLINE","features":[118]},{"name":"CACHE_NOTIFY_SET_ONLINE","features":[118]},{"name":"CACHE_NOTIFY_UPDATE_URL","features":[118]},{"name":"CACHE_NOTIFY_URL_SET_STICKY","features":[118]},{"name":"CACHE_NOTIFY_URL_UNSET_STICKY","features":[118]},{"name":"CACHE_OPERATOR","features":[3,118]},{"name":"COOKIE_ACCEPTED_CACHE_ENTRY","features":[118]},{"name":"COOKIE_ALLOW","features":[118]},{"name":"COOKIE_ALLOW_ALL","features":[118]},{"name":"COOKIE_CACHE_ENTRY","features":[118]},{"name":"COOKIE_DLG_INFO","features":[3,118]},{"name":"COOKIE_DONT_ALLOW","features":[118]},{"name":"COOKIE_DONT_ALLOW_ALL","features":[118]},{"name":"COOKIE_DOWNGRADED_CACHE_ENTRY","features":[118]},{"name":"COOKIE_LEASHED_CACHE_ENTRY","features":[118]},{"name":"COOKIE_OP_3RD_PARTY","features":[118]},{"name":"COOKIE_OP_GET","features":[118]},{"name":"COOKIE_OP_MODIFY","features":[118]},{"name":"COOKIE_OP_PERSISTENT","features":[118]},{"name":"COOKIE_OP_SESSION","features":[118]},{"name":"COOKIE_OP_SET","features":[118]},{"name":"COOKIE_REJECTED_CACHE_ENTRY","features":[118]},{"name":"COOKIE_STATE_ACCEPT","features":[118]},{"name":"COOKIE_STATE_DOWNGRADE","features":[118]},{"name":"COOKIE_STATE_LB","features":[118]},{"name":"COOKIE_STATE_LEASH","features":[118]},{"name":"COOKIE_STATE_MAX","features":[118]},{"name":"COOKIE_STATE_PROMPT","features":[118]},{"name":"COOKIE_STATE_REJECT","features":[118]},{"name":"COOKIE_STATE_UB","features":[118]},{"name":"COOKIE_STATE_UNKNOWN","features":[118]},{"name":"CommitUrlCacheEntryA","features":[3,118]},{"name":"CommitUrlCacheEntryBinaryBlob","features":[3,118]},{"name":"CommitUrlCacheEntryW","features":[3,118]},{"name":"ConnectionEstablishmentEnd","features":[118]},{"name":"ConnectionEstablishmentStart","features":[118]},{"name":"CookieDecision","features":[3,118]},{"name":"CreateMD5SSOHash","features":[3,118]},{"name":"CreateUrlCacheContainerA","features":[3,118]},{"name":"CreateUrlCacheContainerW","features":[3,118]},{"name":"CreateUrlCacheEntryA","features":[3,118]},{"name":"CreateUrlCacheEntryExW","features":[3,118]},{"name":"CreateUrlCacheEntryW","features":[3,118]},{"name":"CreateUrlCacheGroup","features":[118]},{"name":"DIALENG_OperationComplete","features":[118]},{"name":"DIALENG_RedialAttempt","features":[118]},{"name":"DIALENG_RedialWait","features":[118]},{"name":"DIALPROP_DOMAIN","features":[118]},{"name":"DIALPROP_LASTERROR","features":[118]},{"name":"DIALPROP_PASSWORD","features":[118]},{"name":"DIALPROP_PHONENUMBER","features":[118]},{"name":"DIALPROP_REDIALCOUNT","features":[118]},{"name":"DIALPROP_REDIALINTERVAL","features":[118]},{"name":"DIALPROP_RESOLVEDPHONE","features":[118]},{"name":"DIALPROP_SAVEPASSWORD","features":[118]},{"name":"DIALPROP_USERNAME","features":[118]},{"name":"DLG_FLAGS_INSECURE_FALLBACK","features":[118]},{"name":"DLG_FLAGS_INVALID_CA","features":[118]},{"name":"DLG_FLAGS_SEC_CERT_CN_INVALID","features":[118]},{"name":"DLG_FLAGS_SEC_CERT_DATE_INVALID","features":[118]},{"name":"DLG_FLAGS_SEC_CERT_REV_FAILED","features":[118]},{"name":"DLG_FLAGS_WEAK_SIGNATURE","features":[118]},{"name":"DOWNLOAD_CACHE_ENTRY","features":[118]},{"name":"DUO_PROTOCOL_FLAG_SPDY3","features":[118]},{"name":"DUO_PROTOCOL_MASK","features":[118]},{"name":"DeleteIE3Cache","features":[3,118]},{"name":"DeleteUrlCacheContainerA","features":[3,118]},{"name":"DeleteUrlCacheContainerW","features":[3,118]},{"name":"DeleteUrlCacheEntry","features":[3,118]},{"name":"DeleteUrlCacheEntryA","features":[3,118]},{"name":"DeleteUrlCacheEntryW","features":[3,118]},{"name":"DeleteUrlCacheGroup","features":[3,118]},{"name":"DeleteWpadCacheForNetworks","features":[3,118]},{"name":"DetectAutoProxyUrl","features":[3,118]},{"name":"DoConnectoidsExist","features":[3,118]},{"name":"EDITED_CACHE_ENTRY","features":[118]},{"name":"ERROR_FTP_DROPPED","features":[118]},{"name":"ERROR_FTP_NO_PASSIVE_MODE","features":[118]},{"name":"ERROR_FTP_TRANSFER_IN_PROGRESS","features":[118]},{"name":"ERROR_GOPHER_ATTRIBUTE_NOT_FOUND","features":[118]},{"name":"ERROR_GOPHER_DATA_ERROR","features":[118]},{"name":"ERROR_GOPHER_END_OF_DATA","features":[118]},{"name":"ERROR_GOPHER_INCORRECT_LOCATOR_TYPE","features":[118]},{"name":"ERROR_GOPHER_INVALID_LOCATOR","features":[118]},{"name":"ERROR_GOPHER_NOT_FILE","features":[118]},{"name":"ERROR_GOPHER_NOT_GOPHER_PLUS","features":[118]},{"name":"ERROR_GOPHER_PROTOCOL_ERROR","features":[118]},{"name":"ERROR_GOPHER_UNKNOWN_LOCATOR","features":[118]},{"name":"ERROR_HTTP_COOKIE_DECLINED","features":[118]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION","features":[118]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION_EX","features":[118]},{"name":"ERROR_HTTP_DOWNLEVEL_SERVER","features":[118]},{"name":"ERROR_HTTP_HEADER_ALREADY_EXISTS","features":[118]},{"name":"ERROR_HTTP_HEADER_NOT_FOUND","features":[118]},{"name":"ERROR_HTTP_HSTS_REDIRECT_REQUIRED","features":[118]},{"name":"ERROR_HTTP_INVALID_HEADER","features":[118]},{"name":"ERROR_HTTP_INVALID_QUERY_REQUEST","features":[118]},{"name":"ERROR_HTTP_INVALID_SERVER_RESPONSE","features":[118]},{"name":"ERROR_HTTP_NOT_REDIRECTED","features":[118]},{"name":"ERROR_HTTP_PUSH_ENABLE_FAILED","features":[118]},{"name":"ERROR_HTTP_PUSH_RETRY_NOT_SUPPORTED","features":[118]},{"name":"ERROR_HTTP_PUSH_STATUS_CODE_NOT_SUPPORTED","features":[118]},{"name":"ERROR_HTTP_REDIRECT_FAILED","features":[118]},{"name":"ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION","features":[118]},{"name":"ERROR_INTERNET_ASYNC_THREAD_FAILED","features":[118]},{"name":"ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT","features":[118]},{"name":"ERROR_INTERNET_BAD_OPTION_LENGTH","features":[118]},{"name":"ERROR_INTERNET_BAD_REGISTRY_PARAMETER","features":[118]},{"name":"ERROR_INTERNET_CACHE_SUCCESS","features":[118]},{"name":"ERROR_INTERNET_CANNOT_CONNECT","features":[118]},{"name":"ERROR_INTERNET_CHG_POST_IS_NON_SECURE","features":[118]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED","features":[118]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[118]},{"name":"ERROR_INTERNET_CLIENT_AUTH_NOT_SETUP","features":[118]},{"name":"ERROR_INTERNET_CONNECTION_ABORTED","features":[118]},{"name":"ERROR_INTERNET_CONNECTION_AVAILABLE","features":[118]},{"name":"ERROR_INTERNET_CONNECTION_RESET","features":[118]},{"name":"ERROR_INTERNET_DECODING_FAILED","features":[118]},{"name":"ERROR_INTERNET_DIALOG_PENDING","features":[118]},{"name":"ERROR_INTERNET_DISALLOW_INPRIVATE","features":[118]},{"name":"ERROR_INTERNET_DISCONNECTED","features":[118]},{"name":"ERROR_INTERNET_EXTENDED_ERROR","features":[118]},{"name":"ERROR_INTERNET_FAILED_DUETOSECURITYCHECK","features":[118]},{"name":"ERROR_INTERNET_FEATURE_DISABLED","features":[118]},{"name":"ERROR_INTERNET_FORCE_RETRY","features":[118]},{"name":"ERROR_INTERNET_FORTEZZA_LOGIN_NEEDED","features":[118]},{"name":"ERROR_INTERNET_GLOBAL_CALLBACK_FAILED","features":[118]},{"name":"ERROR_INTERNET_HANDLE_EXISTS","features":[118]},{"name":"ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR","features":[118]},{"name":"ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR","features":[118]},{"name":"ERROR_INTERNET_HTTP_PROTOCOL_MISMATCH","features":[118]},{"name":"ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR","features":[118]},{"name":"ERROR_INTERNET_INCORRECT_FORMAT","features":[118]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_STATE","features":[118]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_TYPE","features":[118]},{"name":"ERROR_INTERNET_INCORRECT_PASSWORD","features":[118]},{"name":"ERROR_INTERNET_INCORRECT_USER_NAME","features":[118]},{"name":"ERROR_INTERNET_INSECURE_FALLBACK_REQUIRED","features":[118]},{"name":"ERROR_INTERNET_INSERT_CDROM","features":[118]},{"name":"ERROR_INTERNET_INTERNAL_ERROR","features":[118]},{"name":"ERROR_INTERNET_INTERNAL_SOCKET_ERROR","features":[118]},{"name":"ERROR_INTERNET_INVALID_CA","features":[118]},{"name":"ERROR_INTERNET_INVALID_OPERATION","features":[118]},{"name":"ERROR_INTERNET_INVALID_OPTION","features":[118]},{"name":"ERROR_INTERNET_INVALID_PROXY_REQUEST","features":[118]},{"name":"ERROR_INTERNET_INVALID_URL","features":[118]},{"name":"ERROR_INTERNET_ITEM_NOT_FOUND","features":[118]},{"name":"ERROR_INTERNET_LOGIN_FAILURE","features":[118]},{"name":"ERROR_INTERNET_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[118]},{"name":"ERROR_INTERNET_MIXED_SECURITY","features":[118]},{"name":"ERROR_INTERNET_NAME_NOT_RESOLVED","features":[118]},{"name":"ERROR_INTERNET_NEED_MSN_SSPI_PKG","features":[118]},{"name":"ERROR_INTERNET_NEED_UI","features":[118]},{"name":"ERROR_INTERNET_NOT_INITIALIZED","features":[118]},{"name":"ERROR_INTERNET_NOT_PROXY_REQUEST","features":[118]},{"name":"ERROR_INTERNET_NO_CALLBACK","features":[118]},{"name":"ERROR_INTERNET_NO_CM_CONNECTION","features":[118]},{"name":"ERROR_INTERNET_NO_CONTEXT","features":[118]},{"name":"ERROR_INTERNET_NO_DIRECT_ACCESS","features":[118]},{"name":"ERROR_INTERNET_NO_KNOWN_SERVERS","features":[118]},{"name":"ERROR_INTERNET_NO_NEW_CONTAINERS","features":[118]},{"name":"ERROR_INTERNET_NO_PING_SUPPORT","features":[118]},{"name":"ERROR_INTERNET_OFFLINE","features":[118]},{"name":"ERROR_INTERNET_OPERATION_CANCELLED","features":[118]},{"name":"ERROR_INTERNET_OPTION_NOT_SETTABLE","features":[118]},{"name":"ERROR_INTERNET_OUT_OF_HANDLES","features":[118]},{"name":"ERROR_INTERNET_PING_FAILED","features":[118]},{"name":"ERROR_INTERNET_POST_IS_NON_SECURE","features":[118]},{"name":"ERROR_INTERNET_PROTOCOL_NOT_FOUND","features":[118]},{"name":"ERROR_INTERNET_PROXY_ALERT","features":[118]},{"name":"ERROR_INTERNET_PROXY_SERVER_UNREACHABLE","features":[118]},{"name":"ERROR_INTERNET_REDIRECT_SCHEME_CHANGE","features":[118]},{"name":"ERROR_INTERNET_REGISTRY_VALUE_NOT_FOUND","features":[118]},{"name":"ERROR_INTERNET_REQUEST_PENDING","features":[118]},{"name":"ERROR_INTERNET_RETRY_DIALOG","features":[118]},{"name":"ERROR_INTERNET_SECURE_FAILURE_PROXY","features":[118]},{"name":"ERROR_INTERNET_SECURITY_CHANNEL_ERROR","features":[118]},{"name":"ERROR_INTERNET_SEC_CERT_CN_INVALID","features":[118]},{"name":"ERROR_INTERNET_SEC_CERT_DATE_INVALID","features":[118]},{"name":"ERROR_INTERNET_SEC_CERT_ERRORS","features":[118]},{"name":"ERROR_INTERNET_SEC_CERT_NO_REV","features":[118]},{"name":"ERROR_INTERNET_SEC_CERT_REVOKED","features":[118]},{"name":"ERROR_INTERNET_SEC_CERT_REV_FAILED","features":[118]},{"name":"ERROR_INTERNET_SEC_CERT_WEAK_SIGNATURE","features":[118]},{"name":"ERROR_INTERNET_SEC_INVALID_CERT","features":[118]},{"name":"ERROR_INTERNET_SERVER_UNREACHABLE","features":[118]},{"name":"ERROR_INTERNET_SHUTDOWN","features":[118]},{"name":"ERROR_INTERNET_SOURCE_PORT_IN_USE","features":[118]},{"name":"ERROR_INTERNET_TCPIP_NOT_INSTALLED","features":[118]},{"name":"ERROR_INTERNET_TIMEOUT","features":[118]},{"name":"ERROR_INTERNET_UNABLE_TO_CACHE_FILE","features":[118]},{"name":"ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT","features":[118]},{"name":"ERROR_INTERNET_UNRECOGNIZED_SCHEME","features":[118]},{"name":"ExportCookieFileA","features":[3,118]},{"name":"ExportCookieFileW","features":[3,118]},{"name":"FLAGS_ERROR_UI_FILTER_FOR_ERRORS","features":[118]},{"name":"FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS","features":[118]},{"name":"FLAGS_ERROR_UI_FLAGS_GENERATE_DATA","features":[118]},{"name":"FLAGS_ERROR_UI_FLAGS_NO_UI","features":[118]},{"name":"FLAGS_ERROR_UI_SERIALIZE_DIALOGS","features":[118]},{"name":"FLAGS_ERROR_UI_SHOW_IDN_HOSTNAME","features":[118]},{"name":"FLAG_ICC_FORCE_CONNECTION","features":[118]},{"name":"FORTCMD","features":[118]},{"name":"FORTCMD_CHG_PERSONALITY","features":[118]},{"name":"FORTCMD_LOGOFF","features":[118]},{"name":"FORTCMD_LOGON","features":[118]},{"name":"FORTSTAT","features":[118]},{"name":"FORTSTAT_INSTALLED","features":[118]},{"name":"FORTSTAT_LOGGEDON","features":[118]},{"name":"FTP_FLAGS","features":[118]},{"name":"FTP_TRANSFER_TYPE_ASCII","features":[118]},{"name":"FTP_TRANSFER_TYPE_BINARY","features":[118]},{"name":"FTP_TRANSFER_TYPE_UNKNOWN","features":[118]},{"name":"FindCloseUrlCache","features":[3,118]},{"name":"FindFirstUrlCacheContainerA","features":[3,118]},{"name":"FindFirstUrlCacheContainerW","features":[3,118]},{"name":"FindFirstUrlCacheEntryA","features":[3,118]},{"name":"FindFirstUrlCacheEntryExA","features":[3,118]},{"name":"FindFirstUrlCacheEntryExW","features":[3,118]},{"name":"FindFirstUrlCacheEntryW","features":[3,118]},{"name":"FindFirstUrlCacheGroup","features":[3,118]},{"name":"FindNextUrlCacheContainerA","features":[3,118]},{"name":"FindNextUrlCacheContainerW","features":[3,118]},{"name":"FindNextUrlCacheEntryA","features":[3,118]},{"name":"FindNextUrlCacheEntryExA","features":[3,118]},{"name":"FindNextUrlCacheEntryExW","features":[3,118]},{"name":"FindNextUrlCacheEntryW","features":[3,118]},{"name":"FindNextUrlCacheGroup","features":[3,118]},{"name":"FindP3PPolicySymbol","features":[118]},{"name":"FreeUrlCacheSpaceA","features":[3,118]},{"name":"FreeUrlCacheSpaceW","features":[3,118]},{"name":"FtpCommandA","features":[3,118]},{"name":"FtpCommandW","features":[3,118]},{"name":"FtpCreateDirectoryA","features":[3,118]},{"name":"FtpCreateDirectoryW","features":[3,118]},{"name":"FtpDeleteFileA","features":[3,118]},{"name":"FtpDeleteFileW","features":[3,118]},{"name":"FtpFindFirstFileA","features":[3,118,23]},{"name":"FtpFindFirstFileW","features":[3,118,23]},{"name":"FtpGetCurrentDirectoryA","features":[3,118]},{"name":"FtpGetCurrentDirectoryW","features":[3,118]},{"name":"FtpGetFileA","features":[3,118]},{"name":"FtpGetFileEx","features":[3,118]},{"name":"FtpGetFileSize","features":[118]},{"name":"FtpGetFileW","features":[3,118]},{"name":"FtpOpenFileA","features":[118]},{"name":"FtpOpenFileW","features":[118]},{"name":"FtpPutFileA","features":[3,118]},{"name":"FtpPutFileEx","features":[3,118]},{"name":"FtpPutFileW","features":[3,118]},{"name":"FtpRemoveDirectoryA","features":[3,118]},{"name":"FtpRemoveDirectoryW","features":[3,118]},{"name":"FtpRenameFileA","features":[3,118]},{"name":"FtpRenameFileW","features":[3,118]},{"name":"FtpSetCurrentDirectoryA","features":[3,118]},{"name":"FtpSetCurrentDirectoryW","features":[3,118]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE","features":[118]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_ABSTRACT_CATEGORY","features":[118]},{"name":"GOPHER_ADMIN_ATTRIBUTE","features":[118]},{"name":"GOPHER_ADMIN_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_ADMIN_CATEGORY","features":[118]},{"name":"GOPHER_ASK_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_ATTRIBUTE_ENUMERATOR","features":[3,118]},{"name":"GOPHER_ATTRIBUTE_ID_ABSTRACT","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_ADMIN","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_ALL","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_BASE","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_GEOG","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_LOCATION","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_MOD_DATE","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_ORG","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_PROVIDER","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_RANGE","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_SCORE","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_SITE","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_TIMEZONE","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_TREEWALK","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_TTL","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_UNKNOWN","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_VERSION","features":[118]},{"name":"GOPHER_ATTRIBUTE_ID_VIEW","features":[118]},{"name":"GOPHER_ATTRIBUTE_TYPE","features":[3,118]},{"name":"GOPHER_CATEGORY_ID_ABSTRACT","features":[118]},{"name":"GOPHER_CATEGORY_ID_ADMIN","features":[118]},{"name":"GOPHER_CATEGORY_ID_ALL","features":[118]},{"name":"GOPHER_CATEGORY_ID_ASK","features":[118]},{"name":"GOPHER_CATEGORY_ID_INFO","features":[118]},{"name":"GOPHER_CATEGORY_ID_UNKNOWN","features":[118]},{"name":"GOPHER_CATEGORY_ID_VERONICA","features":[118]},{"name":"GOPHER_CATEGORY_ID_VIEWS","features":[118]},{"name":"GOPHER_FIND_DATAA","features":[3,118]},{"name":"GOPHER_FIND_DATAW","features":[3,118]},{"name":"GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_GEOG_ATTRIBUTE","features":[118]},{"name":"GOPHER_INFO_CATEGORY","features":[118]},{"name":"GOPHER_LOCATION_ATTRIBUTE","features":[118]},{"name":"GOPHER_LOCATION_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE","features":[118]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE_TYPE","features":[3,118]},{"name":"GOPHER_ORGANIZATION_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_ORG_ATTRIBUTE","features":[118]},{"name":"GOPHER_PROVIDER_ATTRIBUTE","features":[118]},{"name":"GOPHER_PROVIDER_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_RANGE_ATTRIBUTE","features":[118]},{"name":"GOPHER_SCORE_ATTRIBUTE","features":[118]},{"name":"GOPHER_SCORE_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_SITE_ATTRIBUTE","features":[118]},{"name":"GOPHER_SITE_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE","features":[118]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_TREEWALK_ATTRIBUTE","features":[118]},{"name":"GOPHER_TTL_ATTRIBUTE","features":[118]},{"name":"GOPHER_TTL_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_TYPE","features":[118]},{"name":"GOPHER_TYPE_ASK","features":[118]},{"name":"GOPHER_TYPE_BINARY","features":[118]},{"name":"GOPHER_TYPE_BITMAP","features":[118]},{"name":"GOPHER_TYPE_CALENDAR","features":[118]},{"name":"GOPHER_TYPE_CSO","features":[118]},{"name":"GOPHER_TYPE_DIRECTORY","features":[118]},{"name":"GOPHER_TYPE_DOS_ARCHIVE","features":[118]},{"name":"GOPHER_TYPE_ERROR","features":[118]},{"name":"GOPHER_TYPE_GIF","features":[118]},{"name":"GOPHER_TYPE_GOPHER_PLUS","features":[118]},{"name":"GOPHER_TYPE_HTML","features":[118]},{"name":"GOPHER_TYPE_IMAGE","features":[118]},{"name":"GOPHER_TYPE_INDEX_SERVER","features":[118]},{"name":"GOPHER_TYPE_INLINE","features":[118]},{"name":"GOPHER_TYPE_MAC_BINHEX","features":[118]},{"name":"GOPHER_TYPE_MOVIE","features":[118]},{"name":"GOPHER_TYPE_PDF","features":[118]},{"name":"GOPHER_TYPE_REDUNDANT","features":[118]},{"name":"GOPHER_TYPE_SOUND","features":[118]},{"name":"GOPHER_TYPE_TELNET","features":[118]},{"name":"GOPHER_TYPE_TEXT_FILE","features":[118]},{"name":"GOPHER_TYPE_TN3270","features":[118]},{"name":"GOPHER_TYPE_UNIX_UUENCODED","features":[118]},{"name":"GOPHER_TYPE_UNKNOWN","features":[118]},{"name":"GOPHER_UNKNOWN_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_VERONICA_ATTRIBUTE_TYPE","features":[3,118]},{"name":"GOPHER_VERONICA_CATEGORY","features":[118]},{"name":"GOPHER_VERSION_ATTRIBUTE","features":[118]},{"name":"GOPHER_VERSION_ATTRIBUTE_TYPE","features":[118]},{"name":"GOPHER_VIEWS_CATEGORY","features":[118]},{"name":"GOPHER_VIEW_ATTRIBUTE","features":[118]},{"name":"GOPHER_VIEW_ATTRIBUTE_TYPE","features":[118]},{"name":"GROUPNAME_MAX_LENGTH","features":[118]},{"name":"GROUP_OWNER_STORAGE_SIZE","features":[118]},{"name":"GetDiskInfoA","features":[3,118]},{"name":"GetUrlCacheConfigInfoA","features":[3,118]},{"name":"GetUrlCacheConfigInfoW","features":[3,118]},{"name":"GetUrlCacheEntryBinaryBlob","features":[3,118]},{"name":"GetUrlCacheEntryInfoA","features":[3,118]},{"name":"GetUrlCacheEntryInfoExA","features":[3,118]},{"name":"GetUrlCacheEntryInfoExW","features":[3,118]},{"name":"GetUrlCacheEntryInfoW","features":[3,118]},{"name":"GetUrlCacheGroupAttributeA","features":[3,118]},{"name":"GetUrlCacheGroupAttributeW","features":[3,118]},{"name":"GetUrlCacheHeaderData","features":[3,118]},{"name":"GopherCreateLocatorA","features":[3,118]},{"name":"GopherCreateLocatorW","features":[3,118]},{"name":"GopherFindFirstFileA","features":[3,118]},{"name":"GopherFindFirstFileW","features":[3,118]},{"name":"GopherGetAttributeA","features":[3,118]},{"name":"GopherGetAttributeW","features":[3,118]},{"name":"GopherGetLocatorTypeA","features":[3,118]},{"name":"GopherGetLocatorTypeW","features":[3,118]},{"name":"GopherOpenFileA","features":[118]},{"name":"GopherOpenFileW","features":[118]},{"name":"HSR_ASYNC","features":[118]},{"name":"HSR_CHUNKED","features":[118]},{"name":"HSR_DOWNLOAD","features":[118]},{"name":"HSR_INITIATE","features":[118]},{"name":"HSR_SYNC","features":[118]},{"name":"HSR_USE_CONTEXT","features":[118]},{"name":"HTTP_1_1_CACHE_ENTRY","features":[118]},{"name":"HTTP_ADDREQ_FLAG","features":[118]},{"name":"HTTP_ADDREQ_FLAGS_MASK","features":[118]},{"name":"HTTP_ADDREQ_FLAG_ADD","features":[118]},{"name":"HTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[118]},{"name":"HTTP_ADDREQ_FLAG_ALLOW_EMPTY_VALUES","features":[118]},{"name":"HTTP_ADDREQ_FLAG_COALESCE","features":[118]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[118]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[118]},{"name":"HTTP_ADDREQ_FLAG_REPLACE","features":[118]},{"name":"HTTP_ADDREQ_FLAG_RESPONSE_HEADERS","features":[118]},{"name":"HTTP_ADDREQ_INDEX_MASK","features":[118]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE","features":[118]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE_LAX","features":[118]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_MAX","features":[118]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_SAME_SITE","features":[118]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_UNKNOWN","features":[118]},{"name":"HTTP_MAJOR_VERSION","features":[118]},{"name":"HTTP_MINOR_VERSION","features":[118]},{"name":"HTTP_POLICY_EXTENSION_INIT","features":[118]},{"name":"HTTP_POLICY_EXTENSION_SHUTDOWN","features":[118]},{"name":"HTTP_POLICY_EXTENSION_TYPE","features":[118]},{"name":"HTTP_POLICY_EXTENSION_VERSION","features":[118]},{"name":"HTTP_PROTOCOL_FLAG_HTTP2","features":[118]},{"name":"HTTP_PROTOCOL_MASK","features":[118]},{"name":"HTTP_PUSH_NOTIFICATION_STATUS","features":[3,118]},{"name":"HTTP_PUSH_TRANSPORT_SETTING","features":[118]},{"name":"HTTP_PUSH_WAIT_HANDLE","features":[118]},{"name":"HTTP_PUSH_WAIT_TYPE","features":[118]},{"name":"HTTP_QUERY_ACCEPT","features":[118]},{"name":"HTTP_QUERY_ACCEPT_CHARSET","features":[118]},{"name":"HTTP_QUERY_ACCEPT_ENCODING","features":[118]},{"name":"HTTP_QUERY_ACCEPT_LANGUAGE","features":[118]},{"name":"HTTP_QUERY_ACCEPT_RANGES","features":[118]},{"name":"HTTP_QUERY_AGE","features":[118]},{"name":"HTTP_QUERY_ALLOW","features":[118]},{"name":"HTTP_QUERY_AUTHENTICATION_INFO","features":[118]},{"name":"HTTP_QUERY_AUTHORIZATION","features":[118]},{"name":"HTTP_QUERY_CACHE_CONTROL","features":[118]},{"name":"HTTP_QUERY_CONNECTION","features":[118]},{"name":"HTTP_QUERY_CONTENT_BASE","features":[118]},{"name":"HTTP_QUERY_CONTENT_DESCRIPTION","features":[118]},{"name":"HTTP_QUERY_CONTENT_DISPOSITION","features":[118]},{"name":"HTTP_QUERY_CONTENT_ENCODING","features":[118]},{"name":"HTTP_QUERY_CONTENT_ID","features":[118]},{"name":"HTTP_QUERY_CONTENT_LANGUAGE","features":[118]},{"name":"HTTP_QUERY_CONTENT_LENGTH","features":[118]},{"name":"HTTP_QUERY_CONTENT_LOCATION","features":[118]},{"name":"HTTP_QUERY_CONTENT_MD5","features":[118]},{"name":"HTTP_QUERY_CONTENT_RANGE","features":[118]},{"name":"HTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[118]},{"name":"HTTP_QUERY_CONTENT_TYPE","features":[118]},{"name":"HTTP_QUERY_COOKIE","features":[118]},{"name":"HTTP_QUERY_COST","features":[118]},{"name":"HTTP_QUERY_CUSTOM","features":[118]},{"name":"HTTP_QUERY_DATE","features":[118]},{"name":"HTTP_QUERY_DEFAULT_STYLE","features":[118]},{"name":"HTTP_QUERY_DERIVED_FROM","features":[118]},{"name":"HTTP_QUERY_DO_NOT_TRACK","features":[118]},{"name":"HTTP_QUERY_ECHO_HEADERS","features":[118]},{"name":"HTTP_QUERY_ECHO_HEADERS_CRLF","features":[118]},{"name":"HTTP_QUERY_ECHO_REPLY","features":[118]},{"name":"HTTP_QUERY_ECHO_REQUEST","features":[118]},{"name":"HTTP_QUERY_ETAG","features":[118]},{"name":"HTTP_QUERY_EXPECT","features":[118]},{"name":"HTTP_QUERY_EXPIRES","features":[118]},{"name":"HTTP_QUERY_FLAG_COALESCE","features":[118]},{"name":"HTTP_QUERY_FLAG_COALESCE_WITH_COMMA","features":[118]},{"name":"HTTP_QUERY_FLAG_NUMBER","features":[118]},{"name":"HTTP_QUERY_FLAG_NUMBER64","features":[118]},{"name":"HTTP_QUERY_FLAG_REQUEST_HEADERS","features":[118]},{"name":"HTTP_QUERY_FLAG_SYSTEMTIME","features":[118]},{"name":"HTTP_QUERY_FORWARDED","features":[118]},{"name":"HTTP_QUERY_FROM","features":[118]},{"name":"HTTP_QUERY_HOST","features":[118]},{"name":"HTTP_QUERY_HTTP2_SETTINGS","features":[118]},{"name":"HTTP_QUERY_IF_MATCH","features":[118]},{"name":"HTTP_QUERY_IF_MODIFIED_SINCE","features":[118]},{"name":"HTTP_QUERY_IF_NONE_MATCH","features":[118]},{"name":"HTTP_QUERY_IF_RANGE","features":[118]},{"name":"HTTP_QUERY_IF_UNMODIFIED_SINCE","features":[118]},{"name":"HTTP_QUERY_INCLUDE_REFERER_TOKEN_BINDING_ID","features":[118]},{"name":"HTTP_QUERY_INCLUDE_REFERRED_TOKEN_BINDING_ID","features":[118]},{"name":"HTTP_QUERY_KEEP_ALIVE","features":[118]},{"name":"HTTP_QUERY_LAST_MODIFIED","features":[118]},{"name":"HTTP_QUERY_LINK","features":[118]},{"name":"HTTP_QUERY_LOCATION","features":[118]},{"name":"HTTP_QUERY_MAX","features":[118]},{"name":"HTTP_QUERY_MAX_FORWARDS","features":[118]},{"name":"HTTP_QUERY_MESSAGE_ID","features":[118]},{"name":"HTTP_QUERY_MIME_VERSION","features":[118]},{"name":"HTTP_QUERY_ORIG_URI","features":[118]},{"name":"HTTP_QUERY_P3P","features":[118]},{"name":"HTTP_QUERY_PASSPORT_CONFIG","features":[118]},{"name":"HTTP_QUERY_PASSPORT_URLS","features":[118]},{"name":"HTTP_QUERY_PRAGMA","features":[118]},{"name":"HTTP_QUERY_PROXY_AUTHENTICATE","features":[118]},{"name":"HTTP_QUERY_PROXY_AUTHORIZATION","features":[118]},{"name":"HTTP_QUERY_PROXY_CONNECTION","features":[118]},{"name":"HTTP_QUERY_PROXY_SUPPORT","features":[118]},{"name":"HTTP_QUERY_PUBLIC","features":[118]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS","features":[118]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS_REPORT_ONLY","features":[118]},{"name":"HTTP_QUERY_RANGE","features":[118]},{"name":"HTTP_QUERY_RAW_HEADERS","features":[118]},{"name":"HTTP_QUERY_RAW_HEADERS_CRLF","features":[118]},{"name":"HTTP_QUERY_REFERER","features":[118]},{"name":"HTTP_QUERY_REFRESH","features":[118]},{"name":"HTTP_QUERY_REQUEST_METHOD","features":[118]},{"name":"HTTP_QUERY_RETRY_AFTER","features":[118]},{"name":"HTTP_QUERY_SERVER","features":[118]},{"name":"HTTP_QUERY_SET_COOKIE","features":[118]},{"name":"HTTP_QUERY_SET_COOKIE2","features":[118]},{"name":"HTTP_QUERY_STATUS_CODE","features":[118]},{"name":"HTTP_QUERY_STATUS_TEXT","features":[118]},{"name":"HTTP_QUERY_STRICT_TRANSPORT_SECURITY","features":[118]},{"name":"HTTP_QUERY_TITLE","features":[118]},{"name":"HTTP_QUERY_TOKEN_BINDING","features":[118]},{"name":"HTTP_QUERY_TRANSFER_ENCODING","features":[118]},{"name":"HTTP_QUERY_TRANSLATE","features":[118]},{"name":"HTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[118]},{"name":"HTTP_QUERY_UPGRADE","features":[118]},{"name":"HTTP_QUERY_URI","features":[118]},{"name":"HTTP_QUERY_USER_AGENT","features":[118]},{"name":"HTTP_QUERY_VARY","features":[118]},{"name":"HTTP_QUERY_VERSION","features":[118]},{"name":"HTTP_QUERY_VIA","features":[118]},{"name":"HTTP_QUERY_WARNING","features":[118]},{"name":"HTTP_QUERY_WWW_AUTHENTICATE","features":[118]},{"name":"HTTP_QUERY_X_CONTENT_TYPE_OPTIONS","features":[118]},{"name":"HTTP_QUERY_X_FRAME_OPTIONS","features":[118]},{"name":"HTTP_QUERY_X_P2P_PEERDIST","features":[118]},{"name":"HTTP_QUERY_X_UA_COMPATIBLE","features":[118]},{"name":"HTTP_QUERY_X_XSS_PROTECTION","features":[118]},{"name":"HTTP_REQUEST_TIMES","features":[118]},{"name":"HTTP_STATUS_MISDIRECTED_REQUEST","features":[118]},{"name":"HTTP_VERSIONA","features":[118]},{"name":"HTTP_VERSIONW","features":[118]},{"name":"HTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_ASYNC_RESULT","features":[118]},{"name":"HTTP_WEB_SOCKET_BINARY_FRAGMENT_TYPE","features":[118]},{"name":"HTTP_WEB_SOCKET_BINARY_MESSAGE_TYPE","features":[118]},{"name":"HTTP_WEB_SOCKET_BUFFER_TYPE","features":[118]},{"name":"HTTP_WEB_SOCKET_CLOSE_OPERATION","features":[118]},{"name":"HTTP_WEB_SOCKET_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_CLOSE_TYPE","features":[118]},{"name":"HTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[118]},{"name":"HTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[118]},{"name":"HTTP_WEB_SOCKET_OPERATION","features":[118]},{"name":"HTTP_WEB_SOCKET_PING_TYPE","features":[118]},{"name":"HTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[118]},{"name":"HTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_SEND_OPERATION","features":[118]},{"name":"HTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[118]},{"name":"HTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[118]},{"name":"HTTP_WEB_SOCKET_UTF8_FRAGMENT_TYPE","features":[118]},{"name":"HTTP_WEB_SOCKET_UTF8_MESSAGE_TYPE","features":[118]},{"name":"HttpAddRequestHeadersA","features":[3,118]},{"name":"HttpAddRequestHeadersW","features":[3,118]},{"name":"HttpCheckDavComplianceA","features":[3,118]},{"name":"HttpCheckDavComplianceW","features":[3,118]},{"name":"HttpCloseDependencyHandle","features":[118]},{"name":"HttpDuplicateDependencyHandle","features":[118]},{"name":"HttpEndRequestA","features":[3,118]},{"name":"HttpEndRequestW","features":[3,118]},{"name":"HttpGetServerCredentials","features":[118]},{"name":"HttpIndicatePageLoadComplete","features":[118]},{"name":"HttpIsHostHstsEnabled","features":[3,118]},{"name":"HttpOpenDependencyHandle","features":[3,118]},{"name":"HttpOpenRequestA","features":[118]},{"name":"HttpOpenRequestW","features":[118]},{"name":"HttpPushClose","features":[118]},{"name":"HttpPushEnable","features":[118]},{"name":"HttpPushWait","features":[3,118]},{"name":"HttpPushWaitEnableComplete","features":[118]},{"name":"HttpPushWaitReceiveComplete","features":[118]},{"name":"HttpPushWaitSendComplete","features":[118]},{"name":"HttpQueryInfoA","features":[3,118]},{"name":"HttpQueryInfoW","features":[3,118]},{"name":"HttpRequestTimeMax","features":[118]},{"name":"HttpSendRequestA","features":[3,118]},{"name":"HttpSendRequestExA","features":[3,118]},{"name":"HttpSendRequestExW","features":[3,118]},{"name":"HttpSendRequestW","features":[3,118]},{"name":"HttpWebSocketClose","features":[3,118]},{"name":"HttpWebSocketCompleteUpgrade","features":[118]},{"name":"HttpWebSocketQueryCloseStatus","features":[3,118]},{"name":"HttpWebSocketReceive","features":[3,118]},{"name":"HttpWebSocketSend","features":[3,118]},{"name":"HttpWebSocketShutdown","features":[3,118]},{"name":"ICU_USERNAME","features":[118]},{"name":"IDENTITY_CACHE_ENTRY","features":[118]},{"name":"IDSI_FLAG_KEEP_ALIVE","features":[118]},{"name":"IDSI_FLAG_PROXY","features":[118]},{"name":"IDSI_FLAG_SECURE","features":[118]},{"name":"IDSI_FLAG_TUNNEL","features":[118]},{"name":"IDialBranding","features":[118]},{"name":"IDialEngine","features":[118]},{"name":"IDialEventSink","features":[118]},{"name":"IMMUTABLE_CACHE_ENTRY","features":[118]},{"name":"INSTALLED_CACHE_ENTRY","features":[118]},{"name":"INTERENT_GOONLINE_MASK","features":[118]},{"name":"INTERENT_GOONLINE_NOPROMPT","features":[118]},{"name":"INTERENT_GOONLINE_REFRESH","features":[118]},{"name":"INTERNET_ACCESS_TYPE","features":[118]},{"name":"INTERNET_ASYNC_RESULT","features":[118]},{"name":"INTERNET_AUTH_NOTIFY_DATA","features":[118]},{"name":"INTERNET_AUTH_SCHEME_BASIC","features":[118]},{"name":"INTERNET_AUTH_SCHEME_DIGEST","features":[118]},{"name":"INTERNET_AUTH_SCHEME_KERBEROS","features":[118]},{"name":"INTERNET_AUTH_SCHEME_NEGOTIATE","features":[118]},{"name":"INTERNET_AUTH_SCHEME_NTLM","features":[118]},{"name":"INTERNET_AUTH_SCHEME_PASSPORT","features":[118]},{"name":"INTERNET_AUTH_SCHEME_UNKNOWN","features":[118]},{"name":"INTERNET_AUTODIAL","features":[118]},{"name":"INTERNET_AUTODIAL_FAILIFSECURITYCHECK","features":[118]},{"name":"INTERNET_AUTODIAL_FORCE_ONLINE","features":[118]},{"name":"INTERNET_AUTODIAL_FORCE_UNATTENDED","features":[118]},{"name":"INTERNET_AUTODIAL_OVERRIDE_NET_PRESENT","features":[118]},{"name":"INTERNET_AUTOPROXY_INIT_DEFAULT","features":[118]},{"name":"INTERNET_AUTOPROXY_INIT_DOWNLOADSYNC","features":[118]},{"name":"INTERNET_AUTOPROXY_INIT_ONLYQUERY","features":[118]},{"name":"INTERNET_AUTOPROXY_INIT_QUERYSTATE","features":[118]},{"name":"INTERNET_BUFFERSA","features":[118]},{"name":"INTERNET_BUFFERSW","features":[118]},{"name":"INTERNET_CACHE_CONFIG_INFOA","features":[3,118]},{"name":"INTERNET_CACHE_CONFIG_INFOW","features":[3,118]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYA","features":[118]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYW","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_AUTODELETE","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_BLOOM_FILTER","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_INFOA","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_INFOW","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_MAP_ENABLED","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_NODESKTOPINIT","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_NOSUBDIRS","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_RESERVED1","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ","features":[118]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ_WRITE","features":[118]},{"name":"INTERNET_CACHE_ENTRY_INFOA","features":[3,118]},{"name":"INTERNET_CACHE_ENTRY_INFOW","features":[3,118]},{"name":"INTERNET_CACHE_FLAG_ADD_FILENAME_ONLY","features":[118]},{"name":"INTERNET_CACHE_FLAG_ALLOW_COLLISIONS","features":[118]},{"name":"INTERNET_CACHE_FLAG_ENTRY_OR_MAPPING","features":[118]},{"name":"INTERNET_CACHE_FLAG_GET_STRUCT_ONLY","features":[118]},{"name":"INTERNET_CACHE_FLAG_INSTALLED_ENTRY","features":[118]},{"name":"INTERNET_CACHE_GROUP_ADD","features":[118]},{"name":"INTERNET_CACHE_GROUP_INFOA","features":[118]},{"name":"INTERNET_CACHE_GROUP_INFOW","features":[118]},{"name":"INTERNET_CACHE_GROUP_REMOVE","features":[118]},{"name":"INTERNET_CACHE_TIMESTAMPS","features":[3,118]},{"name":"INTERNET_CALLBACK_COOKIE","features":[3,118]},{"name":"INTERNET_CERTIFICATE_INFO","features":[3,118]},{"name":"INTERNET_CONNECTED_INFO","features":[118]},{"name":"INTERNET_CONNECTION","features":[118]},{"name":"INTERNET_CONNECTION_CONFIGURED","features":[118]},{"name":"INTERNET_CONNECTION_LAN","features":[118]},{"name":"INTERNET_CONNECTION_MODEM","features":[118]},{"name":"INTERNET_CONNECTION_MODEM_BUSY","features":[118]},{"name":"INTERNET_CONNECTION_OFFLINE","features":[118]},{"name":"INTERNET_CONNECTION_PROXY","features":[118]},{"name":"INTERNET_COOKIE","features":[3,118]},{"name":"INTERNET_COOKIE2","features":[3,118]},{"name":"INTERNET_COOKIE_ALL_COOKIES","features":[118]},{"name":"INTERNET_COOKIE_APPLY_HOST_ONLY","features":[118]},{"name":"INTERNET_COOKIE_APPLY_P3P","features":[118]},{"name":"INTERNET_COOKIE_ECTX_3RDPARTY","features":[118]},{"name":"INTERNET_COOKIE_EDGE_COOKIES","features":[118]},{"name":"INTERNET_COOKIE_EVALUATE_P3P","features":[118]},{"name":"INTERNET_COOKIE_FLAGS","features":[118]},{"name":"INTERNET_COOKIE_HOST_ONLY","features":[118]},{"name":"INTERNET_COOKIE_HOST_ONLY_APPLIED","features":[118]},{"name":"INTERNET_COOKIE_HTTPONLY","features":[118]},{"name":"INTERNET_COOKIE_IE6","features":[118]},{"name":"INTERNET_COOKIE_IS_LEGACY","features":[118]},{"name":"INTERNET_COOKIE_IS_RESTRICTED","features":[118]},{"name":"INTERNET_COOKIE_IS_SECURE","features":[118]},{"name":"INTERNET_COOKIE_IS_SESSION","features":[118]},{"name":"INTERNET_COOKIE_NON_SCRIPT","features":[118]},{"name":"INTERNET_COOKIE_NO_CALLBACK","features":[118]},{"name":"INTERNET_COOKIE_P3P_ENABLED","features":[118]},{"name":"INTERNET_COOKIE_PERSISTENT_HOST_ONLY","features":[118]},{"name":"INTERNET_COOKIE_PROMPT_REQUIRED","features":[118]},{"name":"INTERNET_COOKIE_RESTRICTED_ZONE","features":[118]},{"name":"INTERNET_COOKIE_SAME_SITE_LAX","features":[118]},{"name":"INTERNET_COOKIE_SAME_SITE_LEVEL_CROSS_SITE","features":[118]},{"name":"INTERNET_COOKIE_SAME_SITE_STRICT","features":[118]},{"name":"INTERNET_COOKIE_THIRD_PARTY","features":[118]},{"name":"INTERNET_CREDENTIALS","features":[3,118]},{"name":"INTERNET_CUSTOMDIAL_CAN_HANGUP","features":[118]},{"name":"INTERNET_CUSTOMDIAL_CONNECT","features":[118]},{"name":"INTERNET_CUSTOMDIAL_DISCONNECT","features":[118]},{"name":"INTERNET_CUSTOMDIAL_SAFE_FOR_UNATTENDED","features":[118]},{"name":"INTERNET_CUSTOMDIAL_SHOWOFFLINE","features":[118]},{"name":"INTERNET_CUSTOMDIAL_UNATTENDED","features":[118]},{"name":"INTERNET_CUSTOMDIAL_WILL_SUPPLY_STATE","features":[118]},{"name":"INTERNET_DEFAULT_FTP_PORT","features":[118]},{"name":"INTERNET_DEFAULT_GOPHER_PORT","features":[118]},{"name":"INTERNET_DEFAULT_SOCKS_PORT","features":[118]},{"name":"INTERNET_DIAGNOSTIC_SOCKET_INFO","features":[118]},{"name":"INTERNET_DIALSTATE_DISCONNECTED","features":[118]},{"name":"INTERNET_DIAL_FORCE_PROMPT","features":[118]},{"name":"INTERNET_DIAL_SHOW_OFFLINE","features":[118]},{"name":"INTERNET_DIAL_UNATTENDED","features":[118]},{"name":"INTERNET_DOWNLOAD_MODE_HANDLE","features":[3,118]},{"name":"INTERNET_END_BROWSER_SESSION_DATA","features":[118]},{"name":"INTERNET_ERROR_BASE","features":[118]},{"name":"INTERNET_ERROR_LAST","features":[118]},{"name":"INTERNET_ERROR_MASK_COMBINED_SEC_CERT","features":[118]},{"name":"INTERNET_ERROR_MASK_INSERT_CDROM","features":[118]},{"name":"INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[118]},{"name":"INTERNET_ERROR_MASK_NEED_MSN_SSPI_PKG","features":[118]},{"name":"INTERNET_FIRST_OPTION","features":[118]},{"name":"INTERNET_FLAG_ASYNC","features":[118]},{"name":"INTERNET_FLAG_BGUPDATE","features":[118]},{"name":"INTERNET_FLAG_CACHE_ASYNC","features":[118]},{"name":"INTERNET_FLAG_CACHE_IF_NET_FAIL","features":[118]},{"name":"INTERNET_FLAG_DONT_CACHE","features":[118]},{"name":"INTERNET_FLAG_EXISTING_CONNECT","features":[118]},{"name":"INTERNET_FLAG_FORMS_SUBMIT","features":[118]},{"name":"INTERNET_FLAG_FROM_CACHE","features":[118]},{"name":"INTERNET_FLAG_FTP_FOLDER_VIEW","features":[118]},{"name":"INTERNET_FLAG_FWD_BACK","features":[118]},{"name":"INTERNET_FLAG_HYPERLINK","features":[118]},{"name":"INTERNET_FLAG_IDN_DIRECT","features":[118]},{"name":"INTERNET_FLAG_IDN_PROXY","features":[118]},{"name":"INTERNET_FLAG_IGNORE_CERT_CN_INVALID","features":[118]},{"name":"INTERNET_FLAG_IGNORE_CERT_DATE_INVALID","features":[118]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[118]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[118]},{"name":"INTERNET_FLAG_KEEP_CONNECTION","features":[118]},{"name":"INTERNET_FLAG_MAKE_PERSISTENT","features":[118]},{"name":"INTERNET_FLAG_MUST_CACHE_REQUEST","features":[118]},{"name":"INTERNET_FLAG_NEED_FILE","features":[118]},{"name":"INTERNET_FLAG_NO_AUTH","features":[118]},{"name":"INTERNET_FLAG_NO_AUTO_REDIRECT","features":[118]},{"name":"INTERNET_FLAG_NO_CACHE_WRITE","features":[118]},{"name":"INTERNET_FLAG_NO_COOKIES","features":[118]},{"name":"INTERNET_FLAG_NO_UI","features":[118]},{"name":"INTERNET_FLAG_OFFLINE","features":[118]},{"name":"INTERNET_FLAG_PASSIVE","features":[118]},{"name":"INTERNET_FLAG_PRAGMA_NOCACHE","features":[118]},{"name":"INTERNET_FLAG_RAW_DATA","features":[118]},{"name":"INTERNET_FLAG_READ_PREFETCH","features":[118]},{"name":"INTERNET_FLAG_RELOAD","features":[118]},{"name":"INTERNET_FLAG_RESTRICTED_ZONE","features":[118]},{"name":"INTERNET_FLAG_RESYNCHRONIZE","features":[118]},{"name":"INTERNET_FLAG_SECURE","features":[118]},{"name":"INTERNET_FLAG_TRANSFER_ASCII","features":[118]},{"name":"INTERNET_FLAG_TRANSFER_BINARY","features":[118]},{"name":"INTERNET_GLOBAL_CALLBACK_DETECTING_PROXY","features":[118]},{"name":"INTERNET_GLOBAL_CALLBACK_SENDING_HTTP_HEADERS","features":[118]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_FTP","features":[118]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_GOPHER","features":[118]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_HTTP","features":[118]},{"name":"INTERNET_HANDLE_TYPE_FILE_REQUEST","features":[118]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE","features":[118]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE_HTML","features":[118]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND","features":[118]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND_HTML","features":[118]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE","features":[118]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE_HTML","features":[118]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND","features":[118]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND_HTML","features":[118]},{"name":"INTERNET_HANDLE_TYPE_HTTP_REQUEST","features":[118]},{"name":"INTERNET_HANDLE_TYPE_INTERNET","features":[118]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_CONTENT","features":[118]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_COOKIES","features":[118]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_DATA","features":[118]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_HISTORY","features":[118]},{"name":"INTERNET_IDENTITY_FLAG_PRIVATE_CACHE","features":[118]},{"name":"INTERNET_IDENTITY_FLAG_SHARED_CACHE","features":[118]},{"name":"INTERNET_INTERNAL_ERROR_BASE","features":[118]},{"name":"INTERNET_INVALID_PORT_NUMBER","features":[118]},{"name":"INTERNET_KEEP_ALIVE_DISABLED","features":[118]},{"name":"INTERNET_KEEP_ALIVE_ENABLED","features":[118]},{"name":"INTERNET_KEEP_ALIVE_UNKNOWN","features":[118]},{"name":"INTERNET_LAST_OPTION","features":[118]},{"name":"INTERNET_LAST_OPTION_INTERNAL","features":[118]},{"name":"INTERNET_MAX_HOST_NAME_LENGTH","features":[118]},{"name":"INTERNET_MAX_PASSWORD_LENGTH","features":[118]},{"name":"INTERNET_MAX_PORT_NUMBER_LENGTH","features":[118]},{"name":"INTERNET_MAX_PORT_NUMBER_VALUE","features":[118]},{"name":"INTERNET_MAX_USER_NAME_LENGTH","features":[118]},{"name":"INTERNET_NO_CALLBACK","features":[118]},{"name":"INTERNET_OPEN_TYPE_DIRECT","features":[118]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG","features":[118]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY","features":[118]},{"name":"INTERNET_OPEN_TYPE_PROXY","features":[118]},{"name":"INTERNET_OPTION_ACTIVATE_WORKER_THREADS","features":[118]},{"name":"INTERNET_OPTION_ACTIVITY_ID","features":[118]},{"name":"INTERNET_OPTION_ALLOW_FAILED_CONNECT_CONTENT","features":[118]},{"name":"INTERNET_OPTION_ALLOW_INSECURE_FALLBACK","features":[118]},{"name":"INTERNET_OPTION_ALTER_IDENTITY","features":[118]},{"name":"INTERNET_OPTION_APP_CACHE","features":[118]},{"name":"INTERNET_OPTION_ASYNC","features":[118]},{"name":"INTERNET_OPTION_ASYNC_ID","features":[118]},{"name":"INTERNET_OPTION_ASYNC_PRIORITY","features":[118]},{"name":"INTERNET_OPTION_AUTH_FLAGS","features":[118]},{"name":"INTERNET_OPTION_AUTH_SCHEME_SELECTED","features":[118]},{"name":"INTERNET_OPTION_AUTODIAL_CONNECTION","features":[118]},{"name":"INTERNET_OPTION_AUTODIAL_HWND","features":[118]},{"name":"INTERNET_OPTION_AUTODIAL_MODE","features":[118]},{"name":"INTERNET_OPTION_BACKGROUND_CONNECTIONS","features":[118]},{"name":"INTERNET_OPTION_BYPASS_EDITED_ENTRY","features":[118]},{"name":"INTERNET_OPTION_CACHE_ENTRY_EXTRA_DATA","features":[118]},{"name":"INTERNET_OPTION_CACHE_PARTITION","features":[118]},{"name":"INTERNET_OPTION_CACHE_STREAM_HANDLE","features":[118]},{"name":"INTERNET_OPTION_CACHE_TIMESTAMPS","features":[118]},{"name":"INTERNET_OPTION_CALLBACK","features":[118]},{"name":"INTERNET_OPTION_CALLBACK_FILTER","features":[118]},{"name":"INTERNET_OPTION_CALLER_MODULE","features":[118]},{"name":"INTERNET_OPTION_CANCEL_CACHE_WRITE","features":[118]},{"name":"INTERNET_OPTION_CERT_ERROR_FLAGS","features":[118]},{"name":"INTERNET_OPTION_CHUNK_ENCODE_REQUEST","features":[118]},{"name":"INTERNET_OPTION_CLIENT_CERT_CONTEXT","features":[118]},{"name":"INTERNET_OPTION_CLIENT_CERT_ISSUER_LIST","features":[118]},{"name":"INTERNET_OPTION_CM_HANDLE_COPY_REF","features":[118]},{"name":"INTERNET_OPTION_CODEPAGE","features":[118]},{"name":"INTERNET_OPTION_CODEPAGE_EXTRA","features":[118]},{"name":"INTERNET_OPTION_CODEPAGE_PATH","features":[118]},{"name":"INTERNET_OPTION_COMPRESSED_CONTENT_LENGTH","features":[118]},{"name":"INTERNET_OPTION_CONNECTED_STATE","features":[118]},{"name":"INTERNET_OPTION_CONNECTION_FILTER","features":[118]},{"name":"INTERNET_OPTION_CONNECTION_INFO","features":[118]},{"name":"INTERNET_OPTION_CONNECT_BACKOFF","features":[118]},{"name":"INTERNET_OPTION_CONNECT_LIMIT","features":[118]},{"name":"INTERNET_OPTION_CONNECT_RETRIES","features":[118]},{"name":"INTERNET_OPTION_CONNECT_TIME","features":[118]},{"name":"INTERNET_OPTION_CONNECT_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_CONTEXT_VALUE","features":[118]},{"name":"INTERNET_OPTION_CONTEXT_VALUE_OLD","features":[118]},{"name":"INTERNET_OPTION_CONTROL_RECEIVE_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_CONTROL_SEND_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_COOKIES_3RD_PARTY","features":[118]},{"name":"INTERNET_OPTION_COOKIES_APPLY_HOST_ONLY","features":[118]},{"name":"INTERNET_OPTION_COOKIES_SAME_SITE_LEVEL","features":[118]},{"name":"INTERNET_OPTION_DATAFILE_EXT","features":[118]},{"name":"INTERNET_OPTION_DATAFILE_NAME","features":[118]},{"name":"INTERNET_OPTION_DATA_RECEIVE_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_DATA_SEND_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_DEPENDENCY_HANDLE","features":[118]},{"name":"INTERNET_OPTION_DETECT_POST_SEND","features":[118]},{"name":"INTERNET_OPTION_DIAGNOSTIC_SOCKET_INFO","features":[118]},{"name":"INTERNET_OPTION_DIGEST_AUTH_UNLOAD","features":[118]},{"name":"INTERNET_OPTION_DISABLE_AUTODIAL","features":[118]},{"name":"INTERNET_OPTION_DISABLE_INSECURE_FALLBACK","features":[118]},{"name":"INTERNET_OPTION_DISABLE_NTLM_PREAUTH","features":[118]},{"name":"INTERNET_OPTION_DISABLE_PASSPORT_AUTH","features":[118]},{"name":"INTERNET_OPTION_DISABLE_PROXY_LINK_LOCAL_NAME_RESOLUTION","features":[118]},{"name":"INTERNET_OPTION_DISALLOW_PREMATURE_EOF","features":[118]},{"name":"INTERNET_OPTION_DISCONNECTED_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE","features":[118]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE_HANDLE","features":[118]},{"name":"INTERNET_OPTION_DO_NOT_TRACK","features":[118]},{"name":"INTERNET_OPTION_DUO_USED","features":[118]},{"name":"INTERNET_OPTION_EDGE_COOKIES","features":[118]},{"name":"INTERNET_OPTION_EDGE_COOKIES_TEMP","features":[118]},{"name":"INTERNET_OPTION_EDGE_MODE","features":[118]},{"name":"INTERNET_OPTION_ENABLE_DUO","features":[118]},{"name":"INTERNET_OPTION_ENABLE_HEADER_CALLBACKS","features":[118]},{"name":"INTERNET_OPTION_ENABLE_HTTP_PROTOCOL","features":[118]},{"name":"INTERNET_OPTION_ENABLE_PASSPORT_AUTH","features":[118]},{"name":"INTERNET_OPTION_ENABLE_REDIRECT_CACHE_READ","features":[118]},{"name":"INTERNET_OPTION_ENABLE_TEST_SIGNING","features":[118]},{"name":"INTERNET_OPTION_ENABLE_WBOEXT","features":[118]},{"name":"INTERNET_OPTION_ENABLE_ZLIB_DEFLATE","features":[118]},{"name":"INTERNET_OPTION_ENCODE_EXTRA","features":[118]},{"name":"INTERNET_OPTION_ENCODE_FALLBACK_FOR_REDIRECT_URI","features":[118]},{"name":"INTERNET_OPTION_END_BROWSER_SESSION","features":[118]},{"name":"INTERNET_OPTION_ENTERPRISE_CONTEXT","features":[118]},{"name":"INTERNET_OPTION_ERROR_MASK","features":[118]},{"name":"INTERNET_OPTION_EXEMPT_CONNECTION_LIMIT","features":[118]},{"name":"INTERNET_OPTION_EXTENDED_CALLBACKS","features":[118]},{"name":"INTERNET_OPTION_EXTENDED_ERROR","features":[118]},{"name":"INTERNET_OPTION_FAIL_ON_CACHE_WRITE_ERROR","features":[118]},{"name":"INTERNET_OPTION_FALSE_START","features":[118]},{"name":"INTERNET_OPTION_FLUSH_STATE","features":[118]},{"name":"INTERNET_OPTION_FORCE_DECODE","features":[118]},{"name":"INTERNET_OPTION_FROM_CACHE_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_GLOBAL_CALLBACK","features":[118]},{"name":"INTERNET_OPTION_HANDLE_TYPE","features":[118]},{"name":"INTERNET_OPTION_HIBERNATE_INACTIVE_WORKER_THREADS","features":[118]},{"name":"INTERNET_OPTION_HSTS","features":[118]},{"name":"INTERNET_OPTION_HTTP_09","features":[118]},{"name":"INTERNET_OPTION_HTTP_DECODING","features":[118]},{"name":"INTERNET_OPTION_HTTP_PROTOCOL_USED","features":[118]},{"name":"INTERNET_OPTION_HTTP_VERSION","features":[118]},{"name":"INTERNET_OPTION_IDENTITY","features":[118]},{"name":"INTERNET_OPTION_IDLE_STATE","features":[118]},{"name":"INTERNET_OPTION_IDN","features":[118]},{"name":"INTERNET_OPTION_IGNORE_CERT_ERROR_FLAGS","features":[118]},{"name":"INTERNET_OPTION_IGNORE_OFFLINE","features":[118]},{"name":"INTERNET_OPTION_KEEP_CONNECTION","features":[118]},{"name":"INTERNET_OPTION_LINE_STATE","features":[118]},{"name":"INTERNET_OPTION_LISTEN_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[118]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_PROXY","features":[118]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_SERVER","features":[118]},{"name":"INTERNET_OPTION_MAX_QUERY_BUFFER_SIZE","features":[118]},{"name":"INTERNET_OPTION_NET_SPEED","features":[118]},{"name":"INTERNET_OPTION_NOCACHE_WRITE_IN_PRIVATE","features":[118]},{"name":"INTERNET_OPTION_NOTIFY_SENDING_COOKIE","features":[118]},{"name":"INTERNET_OPTION_NO_HTTP_SERVER_AUTH","features":[118]},{"name":"INTERNET_OPTION_OFFLINE_MODE","features":[118]},{"name":"INTERNET_OPTION_OFFLINE_SEMANTICS","features":[118]},{"name":"INTERNET_OPTION_OFFLINE_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_OPT_IN_WEAK_SIGNATURE","features":[118]},{"name":"INTERNET_OPTION_ORIGINAL_CONNECT_FLAGS","features":[118]},{"name":"INTERNET_OPTION_PARENT_HANDLE","features":[118]},{"name":"INTERNET_OPTION_PARSE_LINE_FOLDING","features":[118]},{"name":"INTERNET_OPTION_PASSWORD","features":[118]},{"name":"INTERNET_OPTION_PER_CONNECTION_OPTION","features":[118]},{"name":"INTERNET_OPTION_POLICY","features":[118]},{"name":"INTERNET_OPTION_PRESERVE_REFERER_ON_HTTPS_TO_HTTP_REDIRECT","features":[118]},{"name":"INTERNET_OPTION_PRESERVE_REQUEST_SERVER_CREDENTIALS_ON_REDIRECT","features":[118]},{"name":"INTERNET_OPTION_PROXY","features":[118]},{"name":"INTERNET_OPTION_PROXY_AUTH_SCHEME","features":[118]},{"name":"INTERNET_OPTION_PROXY_CREDENTIALS","features":[118]},{"name":"INTERNET_OPTION_PROXY_FROM_REQUEST","features":[118]},{"name":"INTERNET_OPTION_PROXY_PASSWORD","features":[118]},{"name":"INTERNET_OPTION_PROXY_SETTINGS_CHANGED","features":[118]},{"name":"INTERNET_OPTION_PROXY_USERNAME","features":[118]},{"name":"INTERNET_OPTION_READ_BUFFER_SIZE","features":[118]},{"name":"INTERNET_OPTION_RECEIVE_THROUGHPUT","features":[118]},{"name":"INTERNET_OPTION_RECEIVE_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[118]},{"name":"INTERNET_OPTION_REFRESH","features":[118]},{"name":"INTERNET_OPTION_REMOVE_IDENTITY","features":[118]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION","features":[118]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[118]},{"name":"INTERNET_OPTION_REQUEST_FLAGS","features":[118]},{"name":"INTERNET_OPTION_REQUEST_PRIORITY","features":[118]},{"name":"INTERNET_OPTION_REQUEST_TIMES","features":[118]},{"name":"INTERNET_OPTION_RESET","features":[118]},{"name":"INTERNET_OPTION_RESET_URLCACHE_SESSION","features":[118]},{"name":"INTERNET_OPTION_RESPONSE_RESUMABLE","features":[118]},{"name":"INTERNET_OPTION_RESTORE_WORKER_THREAD_DEFAULTS","features":[118]},{"name":"INTERNET_OPTION_SECONDARY_CACHE_KEY","features":[118]},{"name":"INTERNET_OPTION_SECURE_FAILURE","features":[118]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE","features":[118]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[118]},{"name":"INTERNET_OPTION_SECURITY_CONNECTION_INFO","features":[118]},{"name":"INTERNET_OPTION_SECURITY_FLAGS","features":[118]},{"name":"INTERNET_OPTION_SECURITY_KEY_BITNESS","features":[118]},{"name":"INTERNET_OPTION_SECURITY_SELECT_CLIENT_CERT","features":[118]},{"name":"INTERNET_OPTION_SEND_THROUGHPUT","features":[118]},{"name":"INTERNET_OPTION_SEND_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY","features":[118]},{"name":"INTERNET_OPTION_SERVER_ADDRESS_INFO","features":[118]},{"name":"INTERNET_OPTION_SERVER_AUTH_SCHEME","features":[118]},{"name":"INTERNET_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[118]},{"name":"INTERNET_OPTION_SERVER_CREDENTIALS","features":[118]},{"name":"INTERNET_OPTION_SESSION_START_TIME","features":[118]},{"name":"INTERNET_OPTION_SETTINGS_CHANGED","features":[118]},{"name":"INTERNET_OPTION_SET_IN_PRIVATE","features":[118]},{"name":"INTERNET_OPTION_SOCKET_NODELAY","features":[118]},{"name":"INTERNET_OPTION_SOCKET_NOTIFICATION_IOCTL","features":[118]},{"name":"INTERNET_OPTION_SOCKET_SEND_BUFFER_LENGTH","features":[118]},{"name":"INTERNET_OPTION_SOURCE_PORT","features":[118]},{"name":"INTERNET_OPTION_SUPPRESS_BEHAVIOR","features":[118]},{"name":"INTERNET_OPTION_SUPPRESS_SERVER_AUTH","features":[118]},{"name":"INTERNET_OPTION_SYNC_MODE_AUTOMATIC_SESSION_DISABLED","features":[118]},{"name":"INTERNET_OPTION_TCP_FAST_OPEN","features":[118]},{"name":"INTERNET_OPTION_TIMED_CONNECTION_LIMIT_BYPASS","features":[118]},{"name":"INTERNET_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[118]},{"name":"INTERNET_OPTION_TUNNEL_ONLY","features":[118]},{"name":"INTERNET_OPTION_UNLOAD_NOTIFY_EVENT","features":[118]},{"name":"INTERNET_OPTION_UPGRADE_TO_WEB_SOCKET","features":[118]},{"name":"INTERNET_OPTION_URL","features":[118]},{"name":"INTERNET_OPTION_USERNAME","features":[118]},{"name":"INTERNET_OPTION_USER_AGENT","features":[118]},{"name":"INTERNET_OPTION_USER_PASS_SERVER_ONLY","features":[118]},{"name":"INTERNET_OPTION_USE_FIRST_AVAILABLE_CONNECTION","features":[118]},{"name":"INTERNET_OPTION_USE_MODIFIED_HEADER_FILTER","features":[118]},{"name":"INTERNET_OPTION_VERSION","features":[118]},{"name":"INTERNET_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[118]},{"name":"INTERNET_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[118]},{"name":"INTERNET_OPTION_WPAD_SLEEP","features":[118]},{"name":"INTERNET_OPTION_WRITE_BUFFER_SIZE","features":[118]},{"name":"INTERNET_OPTION_WWA_MODE","features":[118]},{"name":"INTERNET_PER_CONN","features":[118]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME","features":[118]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL","features":[118]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS","features":[118]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL","features":[118]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_URL","features":[118]},{"name":"INTERNET_PER_CONN_AUTODISCOVERY_FLAGS","features":[118]},{"name":"INTERNET_PER_CONN_FLAGS","features":[118]},{"name":"INTERNET_PER_CONN_FLAGS_UI","features":[118]},{"name":"INTERNET_PER_CONN_OPTIONA","features":[3,118]},{"name":"INTERNET_PER_CONN_OPTIONW","features":[3,118]},{"name":"INTERNET_PER_CONN_OPTION_LISTA","features":[3,118]},{"name":"INTERNET_PER_CONN_OPTION_LISTW","features":[3,118]},{"name":"INTERNET_PER_CONN_PROXY_BYPASS","features":[118]},{"name":"INTERNET_PER_CONN_PROXY_SERVER","features":[118]},{"name":"INTERNET_PREFETCH_ABORTED","features":[118]},{"name":"INTERNET_PREFETCH_COMPLETE","features":[118]},{"name":"INTERNET_PREFETCH_PROGRESS","features":[118]},{"name":"INTERNET_PREFETCH_STATUS","features":[118]},{"name":"INTERNET_PRIORITY_FOREGROUND","features":[118]},{"name":"INTERNET_PROXY_INFO","features":[118]},{"name":"INTERNET_RAS_INSTALLED","features":[118]},{"name":"INTERNET_REQFLAG_ASYNC","features":[118]},{"name":"INTERNET_REQFLAG_CACHE_WRITE_DISABLED","features":[118]},{"name":"INTERNET_REQFLAG_FROM_APP_CACHE","features":[118]},{"name":"INTERNET_REQFLAG_FROM_CACHE","features":[118]},{"name":"INTERNET_REQFLAG_NET_TIMEOUT","features":[118]},{"name":"INTERNET_REQFLAG_NO_HEADERS","features":[118]},{"name":"INTERNET_REQFLAG_PASSIVE","features":[118]},{"name":"INTERNET_REQFLAG_VIA_PROXY","features":[118]},{"name":"INTERNET_RFC1123_BUFSIZE","features":[118]},{"name":"INTERNET_RFC1123_FORMAT","features":[118]},{"name":"INTERNET_SCHEME","features":[118]},{"name":"INTERNET_SCHEME_DEFAULT","features":[118]},{"name":"INTERNET_SCHEME_FILE","features":[118]},{"name":"INTERNET_SCHEME_FIRST","features":[118]},{"name":"INTERNET_SCHEME_FTP","features":[118]},{"name":"INTERNET_SCHEME_GOPHER","features":[118]},{"name":"INTERNET_SCHEME_HTTP","features":[118]},{"name":"INTERNET_SCHEME_HTTPS","features":[118]},{"name":"INTERNET_SCHEME_JAVASCRIPT","features":[118]},{"name":"INTERNET_SCHEME_LAST","features":[118]},{"name":"INTERNET_SCHEME_MAILTO","features":[118]},{"name":"INTERNET_SCHEME_NEWS","features":[118]},{"name":"INTERNET_SCHEME_PARTIAL","features":[118]},{"name":"INTERNET_SCHEME_RES","features":[118]},{"name":"INTERNET_SCHEME_SOCKS","features":[118]},{"name":"INTERNET_SCHEME_UNKNOWN","features":[118]},{"name":"INTERNET_SCHEME_VBSCRIPT","features":[118]},{"name":"INTERNET_SECURITY_CONNECTION_INFO","features":[3,118,25,70]},{"name":"INTERNET_SECURITY_INFO","features":[3,118,25,70]},{"name":"INTERNET_SERVER_CONNECTION_STATE","features":[3,118]},{"name":"INTERNET_SERVICE_FTP","features":[118]},{"name":"INTERNET_SERVICE_GOPHER","features":[118]},{"name":"INTERNET_SERVICE_HTTP","features":[118]},{"name":"INTERNET_SERVICE_URL","features":[118]},{"name":"INTERNET_STATE","features":[118]},{"name":"INTERNET_STATE_BUSY","features":[118]},{"name":"INTERNET_STATE_CONNECTED","features":[118]},{"name":"INTERNET_STATE_DISCONNECTED","features":[118]},{"name":"INTERNET_STATE_DISCONNECTED_BY_USER","features":[118]},{"name":"INTERNET_STATE_IDLE","features":[118]},{"name":"INTERNET_STATUS_CLOSING_CONNECTION","features":[118]},{"name":"INTERNET_STATUS_CONNECTED_TO_SERVER","features":[118]},{"name":"INTERNET_STATUS_CONNECTING_TO_SERVER","features":[118]},{"name":"INTERNET_STATUS_CONNECTION_CLOSED","features":[118]},{"name":"INTERNET_STATUS_COOKIE","features":[118]},{"name":"INTERNET_STATUS_COOKIE_HISTORY","features":[118]},{"name":"INTERNET_STATUS_COOKIE_RECEIVED","features":[118]},{"name":"INTERNET_STATUS_COOKIE_SENT","features":[118]},{"name":"INTERNET_STATUS_CTL_RESPONSE_RECEIVED","features":[118]},{"name":"INTERNET_STATUS_DETECTING_PROXY","features":[118]},{"name":"INTERNET_STATUS_END_BROWSER_SESSION","features":[118]},{"name":"INTERNET_STATUS_FILTER_CLOSED","features":[118]},{"name":"INTERNET_STATUS_FILTER_CLOSING","features":[118]},{"name":"INTERNET_STATUS_FILTER_CONNECTED","features":[118]},{"name":"INTERNET_STATUS_FILTER_CONNECTING","features":[118]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CLOSING","features":[118]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CREATED","features":[118]},{"name":"INTERNET_STATUS_FILTER_PREFETCH","features":[118]},{"name":"INTERNET_STATUS_FILTER_RECEIVED","features":[118]},{"name":"INTERNET_STATUS_FILTER_RECEIVING","features":[118]},{"name":"INTERNET_STATUS_FILTER_REDIRECT","features":[118]},{"name":"INTERNET_STATUS_FILTER_RESOLVED","features":[118]},{"name":"INTERNET_STATUS_FILTER_RESOLVING","features":[118]},{"name":"INTERNET_STATUS_FILTER_SENDING","features":[118]},{"name":"INTERNET_STATUS_FILTER_SENT","features":[118]},{"name":"INTERNET_STATUS_FILTER_STATE_CHANGE","features":[118]},{"name":"INTERNET_STATUS_HANDLE_CLOSING","features":[118]},{"name":"INTERNET_STATUS_HANDLE_CREATED","features":[118]},{"name":"INTERNET_STATUS_INTERMEDIATE_RESPONSE","features":[118]},{"name":"INTERNET_STATUS_NAME_RESOLVED","features":[118]},{"name":"INTERNET_STATUS_P3P_HEADER","features":[118]},{"name":"INTERNET_STATUS_P3P_POLICYREF","features":[118]},{"name":"INTERNET_STATUS_PREFETCH","features":[118]},{"name":"INTERNET_STATUS_PRIVACY_IMPACTED","features":[118]},{"name":"INTERNET_STATUS_PROXY_CREDENTIALS","features":[118]},{"name":"INTERNET_STATUS_RECEIVING_RESPONSE","features":[118]},{"name":"INTERNET_STATUS_REDIRECT","features":[118]},{"name":"INTERNET_STATUS_REQUEST_COMPLETE","features":[118]},{"name":"INTERNET_STATUS_REQUEST_HEADERS_SET","features":[118]},{"name":"INTERNET_STATUS_REQUEST_SENT","features":[118]},{"name":"INTERNET_STATUS_RESOLVING_NAME","features":[118]},{"name":"INTERNET_STATUS_RESPONSE_HEADERS_SET","features":[118]},{"name":"INTERNET_STATUS_RESPONSE_RECEIVED","features":[118]},{"name":"INTERNET_STATUS_SENDING_COOKIE","features":[118]},{"name":"INTERNET_STATUS_SENDING_REQUEST","features":[118]},{"name":"INTERNET_STATUS_SERVER_CONNECTION_STATE","features":[118]},{"name":"INTERNET_STATUS_SERVER_CREDENTIALS","features":[118]},{"name":"INTERNET_STATUS_STATE_CHANGE","features":[118]},{"name":"INTERNET_STATUS_USER_INPUT_REQUIRED","features":[118]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST","features":[118]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST_RESET","features":[118]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY","features":[118]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY_RESET","features":[118]},{"name":"INTERNET_SUPPRESS_RESET_ALL","features":[118]},{"name":"INTERNET_VERSION_INFO","features":[118]},{"name":"IProofOfPossessionCookieInfoManager","features":[118]},{"name":"IProofOfPossessionCookieInfoManager2","features":[118]},{"name":"IRF_ASYNC","features":[118]},{"name":"IRF_NO_WAIT","features":[118]},{"name":"IRF_SYNC","features":[118]},{"name":"IRF_USE_CONTEXT","features":[118]},{"name":"ISO_FORCE_DISCONNECTED","features":[118]},{"name":"ISO_FORCE_OFFLINE","features":[118]},{"name":"ISO_GLOBAL","features":[118]},{"name":"ISO_REGISTRY","features":[118]},{"name":"ImportCookieFileA","features":[3,118]},{"name":"ImportCookieFileW","features":[3,118]},{"name":"IncomingCookieState","features":[118]},{"name":"IncrementUrlCacheHeaderData","features":[3,118]},{"name":"InternalInternetGetCookie","features":[118]},{"name":"InternetAlgIdToStringA","features":[3,118,70]},{"name":"InternetAlgIdToStringW","features":[3,118,70]},{"name":"InternetAttemptConnect","features":[118]},{"name":"InternetAutodial","features":[3,118]},{"name":"InternetAutodialHangup","features":[3,118]},{"name":"InternetCanonicalizeUrlA","features":[3,118]},{"name":"InternetCanonicalizeUrlW","features":[3,118]},{"name":"InternetCheckConnectionA","features":[3,118]},{"name":"InternetCheckConnectionW","features":[3,118]},{"name":"InternetClearAllPerSiteCookieDecisions","features":[3,118]},{"name":"InternetCloseHandle","features":[3,118]},{"name":"InternetCombineUrlA","features":[3,118]},{"name":"InternetCombineUrlW","features":[3,118]},{"name":"InternetConfirmZoneCrossing","features":[3,118]},{"name":"InternetConfirmZoneCrossingA","features":[3,118]},{"name":"InternetConfirmZoneCrossingW","features":[3,118]},{"name":"InternetConnectA","features":[118]},{"name":"InternetConnectW","features":[118]},{"name":"InternetConvertUrlFromWireToWideChar","features":[3,118]},{"name":"InternetCookieHistory","features":[3,118]},{"name":"InternetCookieState","features":[118]},{"name":"InternetCrackUrlA","features":[3,117,118]},{"name":"InternetCrackUrlW","features":[3,117,118]},{"name":"InternetCreateUrlA","features":[3,118]},{"name":"InternetCreateUrlW","features":[3,118]},{"name":"InternetDial","features":[3,118]},{"name":"InternetDialA","features":[3,118]},{"name":"InternetDialW","features":[3,118]},{"name":"InternetEnumPerSiteCookieDecisionA","features":[3,118]},{"name":"InternetEnumPerSiteCookieDecisionW","features":[3,118]},{"name":"InternetErrorDlg","features":[3,118]},{"name":"InternetFindNextFileA","features":[3,118]},{"name":"InternetFindNextFileW","features":[3,118]},{"name":"InternetFortezzaCommand","features":[3,118]},{"name":"InternetFreeCookies","features":[3,118]},{"name":"InternetFreeProxyInfoList","features":[3,118]},{"name":"InternetGetConnectedState","features":[3,118]},{"name":"InternetGetConnectedStateEx","features":[3,118]},{"name":"InternetGetConnectedStateExA","features":[3,118]},{"name":"InternetGetConnectedStateExW","features":[3,118]},{"name":"InternetGetCookieA","features":[3,118]},{"name":"InternetGetCookieEx2","features":[3,118]},{"name":"InternetGetCookieExA","features":[3,118]},{"name":"InternetGetCookieExW","features":[3,118]},{"name":"InternetGetCookieW","features":[3,118]},{"name":"InternetGetLastResponseInfoA","features":[3,118]},{"name":"InternetGetLastResponseInfoW","features":[3,118]},{"name":"InternetGetPerSiteCookieDecisionA","features":[3,118]},{"name":"InternetGetPerSiteCookieDecisionW","features":[3,118]},{"name":"InternetGetProxyForUrl","features":[3,118]},{"name":"InternetGetSecurityInfoByURL","features":[3,118,70]},{"name":"InternetGetSecurityInfoByURLA","features":[3,118,70]},{"name":"InternetGetSecurityInfoByURLW","features":[3,118,70]},{"name":"InternetGoOnline","features":[3,118]},{"name":"InternetGoOnlineA","features":[3,118]},{"name":"InternetGoOnlineW","features":[3,118]},{"name":"InternetHangUp","features":[118]},{"name":"InternetInitializeAutoProxyDll","features":[3,118]},{"name":"InternetLockRequestFile","features":[3,118]},{"name":"InternetOpenA","features":[118]},{"name":"InternetOpenUrlA","features":[118]},{"name":"InternetOpenUrlW","features":[118]},{"name":"InternetOpenW","features":[118]},{"name":"InternetQueryDataAvailable","features":[3,118]},{"name":"InternetQueryFortezzaStatus","features":[3,118]},{"name":"InternetQueryOptionA","features":[3,118]},{"name":"InternetQueryOptionW","features":[3,118]},{"name":"InternetReadFile","features":[3,118]},{"name":"InternetReadFileExA","features":[3,118]},{"name":"InternetReadFileExW","features":[3,118]},{"name":"InternetSecurityProtocolToStringA","features":[3,118]},{"name":"InternetSecurityProtocolToStringW","features":[3,118]},{"name":"InternetSetCookieA","features":[3,118]},{"name":"InternetSetCookieEx2","features":[3,118]},{"name":"InternetSetCookieExA","features":[118]},{"name":"InternetSetCookieExW","features":[118]},{"name":"InternetSetCookieW","features":[3,118]},{"name":"InternetSetDialState","features":[3,118]},{"name":"InternetSetDialStateA","features":[3,118]},{"name":"InternetSetDialStateW","features":[3,118]},{"name":"InternetSetFilePointer","features":[118]},{"name":"InternetSetOptionA","features":[3,118]},{"name":"InternetSetOptionExA","features":[3,118]},{"name":"InternetSetOptionExW","features":[3,118]},{"name":"InternetSetOptionW","features":[3,118]},{"name":"InternetSetPerSiteCookieDecisionA","features":[3,118]},{"name":"InternetSetPerSiteCookieDecisionW","features":[3,118]},{"name":"InternetSetStatusCallback","features":[118]},{"name":"InternetSetStatusCallbackA","features":[118]},{"name":"InternetSetStatusCallbackW","features":[118]},{"name":"InternetShowSecurityInfoByURL","features":[3,118]},{"name":"InternetShowSecurityInfoByURLA","features":[3,118]},{"name":"InternetShowSecurityInfoByURLW","features":[3,118]},{"name":"InternetTimeFromSystemTime","features":[3,118]},{"name":"InternetTimeFromSystemTimeA","features":[3,118]},{"name":"InternetTimeFromSystemTimeW","features":[3,118]},{"name":"InternetTimeToSystemTime","features":[3,118]},{"name":"InternetTimeToSystemTimeA","features":[3,118]},{"name":"InternetTimeToSystemTimeW","features":[3,118]},{"name":"InternetUnlockRequestFile","features":[3,118]},{"name":"InternetWriteFile","features":[3,118]},{"name":"InternetWriteFileExA","features":[3,118]},{"name":"InternetWriteFileExW","features":[3,118]},{"name":"IsDomainLegalCookieDomainA","features":[3,118]},{"name":"IsDomainLegalCookieDomainW","features":[3,118]},{"name":"IsHostInProxyBypassList","features":[3,118]},{"name":"IsProfilesEnabled","features":[3,118]},{"name":"IsUrlCacheEntryExpiredA","features":[3,118]},{"name":"IsUrlCacheEntryExpiredW","features":[3,118]},{"name":"LOCAL_NAMESPACE_PREFIX","features":[118]},{"name":"LOCAL_NAMESPACE_PREFIX_W","features":[118]},{"name":"LPINTERNET_STATUS_CALLBACK","features":[118]},{"name":"LoadUrlCacheContent","features":[3,118]},{"name":"MAX_CACHE_ENTRY_INFO_SIZE","features":[118]},{"name":"MAX_GOPHER_ATTRIBUTE_NAME","features":[118]},{"name":"MAX_GOPHER_CATEGORY_NAME","features":[118]},{"name":"MAX_GOPHER_DISPLAY_TEXT","features":[118]},{"name":"MAX_GOPHER_HOST_NAME","features":[118]},{"name":"MAX_GOPHER_SELECTOR_TEXT","features":[118]},{"name":"MIN_GOPHER_ATTRIBUTE_LENGTH","features":[118]},{"name":"MUST_REVALIDATE_CACHE_ENTRY","features":[118]},{"name":"MaxPrivacySettings","features":[118]},{"name":"NORMAL_CACHE_ENTRY","features":[118]},{"name":"NameResolutionEnd","features":[118]},{"name":"NameResolutionStart","features":[118]},{"name":"OTHER_USER_CACHE_ENTRY","features":[118]},{"name":"OutgoingCookieState","features":[118]},{"name":"PENDING_DELETE_CACHE_ENTRY","features":[118]},{"name":"PFN_AUTH_NOTIFY","features":[118]},{"name":"PFN_DIAL_HANDLER","features":[3,118]},{"name":"POLICY_EXTENSION_TYPE_NONE","features":[118]},{"name":"POLICY_EXTENSION_TYPE_WINHTTP","features":[118]},{"name":"POLICY_EXTENSION_TYPE_WININET","features":[118]},{"name":"POLICY_EXTENSION_VERSION1","features":[118]},{"name":"POST_CHECK_CACHE_ENTRY","features":[118]},{"name":"POST_RESPONSE_CACHE_ENTRY","features":[118]},{"name":"PRIVACY_IMPACTED_CACHE_ENTRY","features":[118]},{"name":"PRIVACY_MODE_CACHE_ENTRY","features":[118]},{"name":"PRIVACY_TEMPLATE_ADVANCED","features":[118]},{"name":"PRIVACY_TEMPLATE_CUSTOM","features":[118]},{"name":"PRIVACY_TEMPLATE_HIGH","features":[118]},{"name":"PRIVACY_TEMPLATE_LOW","features":[118]},{"name":"PRIVACY_TEMPLATE_MAX","features":[118]},{"name":"PRIVACY_TEMPLATE_MEDIUM","features":[118]},{"name":"PRIVACY_TEMPLATE_MEDIUM_HIGH","features":[118]},{"name":"PRIVACY_TEMPLATE_MEDIUM_LOW","features":[118]},{"name":"PRIVACY_TEMPLATE_NO_COOKIES","features":[118]},{"name":"PRIVACY_TYPE_FIRST_PARTY","features":[118]},{"name":"PRIVACY_TYPE_THIRD_PARTY","features":[118]},{"name":"PROXY_AUTO_DETECT_TYPE","features":[118]},{"name":"PROXY_AUTO_DETECT_TYPE_DHCP","features":[118]},{"name":"PROXY_AUTO_DETECT_TYPE_DNS_A","features":[118]},{"name":"PROXY_TYPE_AUTO_DETECT","features":[118]},{"name":"PROXY_TYPE_AUTO_PROXY_URL","features":[118]},{"name":"PROXY_TYPE_DIRECT","features":[118]},{"name":"PROXY_TYPE_PROXY","features":[118]},{"name":"ParseX509EncodedCertificateForListBoxEntry","features":[118]},{"name":"PerformOperationOverUrlCacheA","features":[3,118]},{"name":"PrivacyGetZonePreferenceW","features":[118]},{"name":"PrivacySetZonePreferenceW","features":[118]},{"name":"ProofOfPossessionCookieInfo","features":[118]},{"name":"ProofOfPossessionCookieInfoManager","features":[118]},{"name":"REDIRECT_CACHE_ENTRY","features":[118]},{"name":"REGSTR_DIAL_AUTOCONNECT","features":[118]},{"name":"REGSTR_LEASH_LEGACY_COOKIES","features":[118]},{"name":"REQUEST_TIMES","features":[118]},{"name":"ReadGuidsForConnectedNetworks","features":[3,118]},{"name":"ReadUrlCacheEntryStream","features":[3,118]},{"name":"ReadUrlCacheEntryStreamEx","features":[3,118]},{"name":"RegisterUrlCacheNotification","features":[3,118]},{"name":"ResumeSuspendedDownload","features":[3,118]},{"name":"RetrieveUrlCacheEntryFileA","features":[3,118]},{"name":"RetrieveUrlCacheEntryFileW","features":[3,118]},{"name":"RetrieveUrlCacheEntryStreamA","features":[3,118]},{"name":"RetrieveUrlCacheEntryStreamW","features":[3,118]},{"name":"RunOnceUrlCache","features":[3,118]},{"name":"SECURITY_FLAG_128BIT","features":[118]},{"name":"SECURITY_FLAG_40BIT","features":[118]},{"name":"SECURITY_FLAG_56BIT","features":[118]},{"name":"SECURITY_FLAG_FORTEZZA","features":[118]},{"name":"SECURITY_FLAG_IETFSSL4","features":[118]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[118]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[118]},{"name":"SECURITY_FLAG_IGNORE_REVOCATION","features":[118]},{"name":"SECURITY_FLAG_IGNORE_WEAK_SIGNATURE","features":[118]},{"name":"SECURITY_FLAG_IGNORE_WRONG_USAGE","features":[118]},{"name":"SECURITY_FLAG_NORMALBITNESS","features":[118]},{"name":"SECURITY_FLAG_OPT_IN_WEAK_SIGNATURE","features":[118]},{"name":"SECURITY_FLAG_PCT","features":[118]},{"name":"SECURITY_FLAG_PCT4","features":[118]},{"name":"SECURITY_FLAG_SSL","features":[118]},{"name":"SECURITY_FLAG_SSL3","features":[118]},{"name":"SECURITY_FLAG_UNKNOWNBIT","features":[118]},{"name":"SHORTPATH_CACHE_ENTRY","features":[118]},{"name":"SPARSE_CACHE_ENTRY","features":[118]},{"name":"STATIC_CACHE_ENTRY","features":[118]},{"name":"STICKY_CACHE_ENTRY","features":[118]},{"name":"SetUrlCacheConfigInfoA","features":[3,118]},{"name":"SetUrlCacheConfigInfoW","features":[3,118]},{"name":"SetUrlCacheEntryGroup","features":[3,118]},{"name":"SetUrlCacheEntryGroupA","features":[3,118]},{"name":"SetUrlCacheEntryGroupW","features":[3,118]},{"name":"SetUrlCacheEntryInfoA","features":[3,118]},{"name":"SetUrlCacheEntryInfoW","features":[3,118]},{"name":"SetUrlCacheGroupAttributeA","features":[3,118]},{"name":"SetUrlCacheGroupAttributeW","features":[3,118]},{"name":"SetUrlCacheHeaderData","features":[3,118]},{"name":"ShowClientAuthCerts","features":[3,118]},{"name":"ShowSecurityInfo","features":[3,118,25,70]},{"name":"ShowX509EncodedCertificate","features":[3,118]},{"name":"TLSHandshakeEnd","features":[118]},{"name":"TLSHandshakeStart","features":[118]},{"name":"TRACK_OFFLINE_CACHE_ENTRY","features":[118]},{"name":"TRACK_ONLINE_CACHE_ENTRY","features":[118]},{"name":"URLCACHE_ENTRY_INFO","features":[3,118]},{"name":"URLHISTORY_CACHE_ENTRY","features":[118]},{"name":"URL_CACHE_LIMIT_TYPE","features":[118]},{"name":"URL_COMPONENTSA","features":[118]},{"name":"URL_COMPONENTSW","features":[118]},{"name":"UnlockUrlCacheEntryFile","features":[3,118]},{"name":"UnlockUrlCacheEntryFileA","features":[3,118]},{"name":"UnlockUrlCacheEntryFileW","features":[3,118]},{"name":"UnlockUrlCacheEntryStream","features":[3,118]},{"name":"UpdateUrlCacheContentPath","features":[3,118]},{"name":"UrlCacheCheckEntriesExist","features":[3,118]},{"name":"UrlCacheCloseEntryHandle","features":[118]},{"name":"UrlCacheContainerSetEntryMaximumAge","features":[118]},{"name":"UrlCacheCreateContainer","features":[118]},{"name":"UrlCacheFindFirstEntry","features":[3,118]},{"name":"UrlCacheFindNextEntry","features":[3,118]},{"name":"UrlCacheFreeEntryInfo","features":[3,118]},{"name":"UrlCacheFreeGlobalSpace","features":[118]},{"name":"UrlCacheGetContentPaths","features":[118]},{"name":"UrlCacheGetEntryInfo","features":[3,118]},{"name":"UrlCacheGetGlobalCacheSize","features":[118]},{"name":"UrlCacheGetGlobalLimit","features":[118]},{"name":"UrlCacheLimitTypeAppContainer","features":[118]},{"name":"UrlCacheLimitTypeAppContainerTotal","features":[118]},{"name":"UrlCacheLimitTypeIE","features":[118]},{"name":"UrlCacheLimitTypeIETotal","features":[118]},{"name":"UrlCacheLimitTypeNum","features":[118]},{"name":"UrlCacheReadEntryStream","features":[118]},{"name":"UrlCacheReloadSettings","features":[118]},{"name":"UrlCacheRetrieveEntryFile","features":[3,118]},{"name":"UrlCacheRetrieveEntryStream","features":[3,118]},{"name":"UrlCacheServer","features":[118]},{"name":"UrlCacheSetGlobalLimit","features":[118]},{"name":"UrlCacheUpdateEntryExtraData","features":[118]},{"name":"WININET_API_FLAG_ASYNC","features":[118]},{"name":"WININET_API_FLAG_SYNC","features":[118]},{"name":"WININET_API_FLAG_USE_CONTEXT","features":[118]},{"name":"WININET_PROXY_INFO","features":[3,118]},{"name":"WININET_PROXY_INFO_LIST","features":[3,118]},{"name":"WININET_SYNC_MODE","features":[118]},{"name":"WININET_SYNC_MODE_ALWAYS","features":[118]},{"name":"WININET_SYNC_MODE_AUTOMATIC","features":[118]},{"name":"WININET_SYNC_MODE_DEFAULT","features":[118]},{"name":"WININET_SYNC_MODE_NEVER","features":[118]},{"name":"WININET_SYNC_MODE_ONCE_PER_SESSION","features":[118]},{"name":"WININET_SYNC_MODE_ON_EXPIRY","features":[118]},{"name":"WPAD_CACHE_DELETE","features":[118]},{"name":"WPAD_CACHE_DELETE_ALL","features":[118]},{"name":"WPAD_CACHE_DELETE_CURRENT","features":[118]},{"name":"XDR_CACHE_ENTRY","features":[118]},{"name":"pfnInternetDeInitializeAutoProxyDll","features":[3,118]},{"name":"pfnInternetGetProxyInfo","features":[3,118]},{"name":"pfnInternetInitializeAutoProxyDll","features":[3,118]}],"479":[{"name":"AAL5_MODE_MESSAGE","features":[17]},{"name":"AAL5_MODE_STREAMING","features":[17]},{"name":"AAL5_PARAMETERS","features":[17]},{"name":"AAL5_SSCS_FRAME_RELAY","features":[17]},{"name":"AAL5_SSCS_NULL","features":[17]},{"name":"AAL5_SSCS_SSCOP_ASSURED","features":[17]},{"name":"AAL5_SSCS_SSCOP_NON_ASSURED","features":[17]},{"name":"AALTYPE_5","features":[17]},{"name":"AALTYPE_USER","features":[17]},{"name":"AALUSER_PARAMETERS","features":[17]},{"name":"AAL_PARAMETERS_IE","features":[17]},{"name":"AAL_TYPE","features":[17]},{"name":"ADDRESS_FAMILY","features":[17]},{"name":"ADDRINFOA","features":[17]},{"name":"ADDRINFOEX2A","features":[17]},{"name":"ADDRINFOEX2W","features":[17]},{"name":"ADDRINFOEX3","features":[17]},{"name":"ADDRINFOEX4","features":[3,17]},{"name":"ADDRINFOEX5","features":[3,17]},{"name":"ADDRINFOEX6","features":[3,17]},{"name":"ADDRINFOEXA","features":[17]},{"name":"ADDRINFOEXW","features":[17]},{"name":"ADDRINFOEX_VERSION_2","features":[17]},{"name":"ADDRINFOEX_VERSION_3","features":[17]},{"name":"ADDRINFOEX_VERSION_4","features":[17]},{"name":"ADDRINFOEX_VERSION_5","features":[17]},{"name":"ADDRINFOEX_VERSION_6","features":[17]},{"name":"ADDRINFOW","features":[17]},{"name":"ADDRINFO_DNS_SERVER","features":[17]},{"name":"ADDR_ANY","features":[17]},{"name":"AFPROTOCOLS","features":[17]},{"name":"AF_12844","features":[17]},{"name":"AF_APPLETALK","features":[17]},{"name":"AF_ATM","features":[17]},{"name":"AF_BAN","features":[17]},{"name":"AF_CCITT","features":[17]},{"name":"AF_CHAOS","features":[17]},{"name":"AF_CLUSTER","features":[17]},{"name":"AF_DATAKIT","features":[17]},{"name":"AF_DECnet","features":[17]},{"name":"AF_DLI","features":[17]},{"name":"AF_ECMA","features":[17]},{"name":"AF_FIREFOX","features":[17]},{"name":"AF_HYLINK","features":[17]},{"name":"AF_HYPERV","features":[17]},{"name":"AF_ICLFXBM","features":[17]},{"name":"AF_IMPLINK","features":[17]},{"name":"AF_INET","features":[17]},{"name":"AF_INET6","features":[17]},{"name":"AF_IPX","features":[17]},{"name":"AF_IRDA","features":[17]},{"name":"AF_ISO","features":[17]},{"name":"AF_LAT","features":[17]},{"name":"AF_LINK","features":[17]},{"name":"AF_MAX","features":[17]},{"name":"AF_NETBIOS","features":[17]},{"name":"AF_NETDES","features":[17]},{"name":"AF_NS","features":[17]},{"name":"AF_OSI","features":[17]},{"name":"AF_PUP","features":[17]},{"name":"AF_SNA","features":[17]},{"name":"AF_TCNMESSAGE","features":[17]},{"name":"AF_TCNPROCESS","features":[17]},{"name":"AF_UNIX","features":[17]},{"name":"AF_UNKNOWN1","features":[17]},{"name":"AF_UNSPEC","features":[17]},{"name":"AF_VOICEVIEW","features":[17]},{"name":"AI_ADDRCONFIG","features":[17]},{"name":"AI_ALL","features":[17]},{"name":"AI_BYPASS_DNS_CACHE","features":[17]},{"name":"AI_CANONNAME","features":[17]},{"name":"AI_DISABLE_IDN_ENCODING","features":[17]},{"name":"AI_DNS_ONLY","features":[17]},{"name":"AI_DNS_RESPONSE_HOSTFILE","features":[17]},{"name":"AI_DNS_RESPONSE_SECURE","features":[17]},{"name":"AI_DNS_SERVER_TYPE_DOH","features":[17]},{"name":"AI_DNS_SERVER_TYPE_UDP","features":[17]},{"name":"AI_DNS_SERVER_UDP_FALLBACK","features":[17]},{"name":"AI_EXCLUSIVE_CUSTOM_SERVERS","features":[17]},{"name":"AI_EXTENDED","features":[17]},{"name":"AI_FILESERVER","features":[17]},{"name":"AI_FORCE_CLEAR_TEXT","features":[17]},{"name":"AI_FQDN","features":[17]},{"name":"AI_NON_AUTHORITATIVE","features":[17]},{"name":"AI_NUMERICHOST","features":[17]},{"name":"AI_NUMERICSERV","features":[17]},{"name":"AI_PASSIVE","features":[17]},{"name":"AI_REQUIRE_SECURE","features":[17]},{"name":"AI_RESOLUTION_HANDLE","features":[17]},{"name":"AI_RETURN_PREFERRED_NAMES","features":[17]},{"name":"AI_RETURN_RESPONSE_FLAGS","features":[17]},{"name":"AI_RETURN_TTL","features":[17]},{"name":"AI_SECURE","features":[17]},{"name":"AI_SECURE_WITH_FALLBACK","features":[17]},{"name":"AI_V4MAPPED","features":[17]},{"name":"ARP_HARDWARE_TYPE","features":[17]},{"name":"ARP_HEADER","features":[17]},{"name":"ARP_HW_802","features":[17]},{"name":"ARP_HW_ENET","features":[17]},{"name":"ARP_OPCODE","features":[17]},{"name":"ARP_REQUEST","features":[17]},{"name":"ARP_RESPONSE","features":[17]},{"name":"ASSOCIATE_NAMERES_CONTEXT","features":[17]},{"name":"ASSOCIATE_NAMERES_CONTEXT_INPUT","features":[17]},{"name":"ATMPROTO_AAL1","features":[17]},{"name":"ATMPROTO_AAL2","features":[17]},{"name":"ATMPROTO_AAL34","features":[17]},{"name":"ATMPROTO_AAL5","features":[17]},{"name":"ATMPROTO_AALUSER","features":[17]},{"name":"ATM_ADDRESS","features":[17]},{"name":"ATM_ADDR_SIZE","features":[17]},{"name":"ATM_AESA","features":[17]},{"name":"ATM_BHLI","features":[17]},{"name":"ATM_BLLI","features":[17]},{"name":"ATM_BLLI_IE","features":[17]},{"name":"ATM_BROADBAND_BEARER_CAPABILITY_IE","features":[17]},{"name":"ATM_CALLING_PARTY_NUMBER_IE","features":[17]},{"name":"ATM_CAUSE_IE","features":[17]},{"name":"ATM_CONNECTION_ID","features":[17]},{"name":"ATM_E164","features":[17]},{"name":"ATM_NSAP","features":[17]},{"name":"ATM_PVC_PARAMS","features":[17]},{"name":"ATM_QOS_CLASS_IE","features":[17]},{"name":"ATM_TD","features":[3,17]},{"name":"ATM_TRAFFIC_DESCRIPTOR_IE","features":[3,17]},{"name":"ATM_TRANSIT_NETWORK_SELECTION_IE","features":[17]},{"name":"AcceptEx","features":[3,17,8]},{"name":"BASE_PROTOCOL","features":[17]},{"name":"BCOB_A","features":[17]},{"name":"BCOB_C","features":[17]},{"name":"BCOB_X","features":[17]},{"name":"BHLI_HighLayerProfile","features":[17]},{"name":"BHLI_ISO","features":[17]},{"name":"BHLI_UserSpecific","features":[17]},{"name":"BHLI_VendorSpecificAppId","features":[17]},{"name":"BIGENDIAN","features":[17]},{"name":"BITS_PER_BYTE","features":[17]},{"name":"BLLI_L2_ELAPB","features":[17]},{"name":"BLLI_L2_HDLC_ABM","features":[17]},{"name":"BLLI_L2_HDLC_ARM","features":[17]},{"name":"BLLI_L2_HDLC_NRM","features":[17]},{"name":"BLLI_L2_ISO_1745","features":[17]},{"name":"BLLI_L2_ISO_7776","features":[17]},{"name":"BLLI_L2_LLC","features":[17]},{"name":"BLLI_L2_MODE_EXT","features":[17]},{"name":"BLLI_L2_MODE_NORMAL","features":[17]},{"name":"BLLI_L2_Q921","features":[17]},{"name":"BLLI_L2_Q922","features":[17]},{"name":"BLLI_L2_USER_SPECIFIED","features":[17]},{"name":"BLLI_L2_X25L","features":[17]},{"name":"BLLI_L2_X25M","features":[17]},{"name":"BLLI_L2_X75","features":[17]},{"name":"BLLI_L3_IPI_IP","features":[17]},{"name":"BLLI_L3_IPI_SNAP","features":[17]},{"name":"BLLI_L3_ISO_8208","features":[17]},{"name":"BLLI_L3_ISO_TR9577","features":[17]},{"name":"BLLI_L3_MODE_EXT","features":[17]},{"name":"BLLI_L3_MODE_NORMAL","features":[17]},{"name":"BLLI_L3_PACKET_1024","features":[17]},{"name":"BLLI_L3_PACKET_128","features":[17]},{"name":"BLLI_L3_PACKET_16","features":[17]},{"name":"BLLI_L3_PACKET_2048","features":[17]},{"name":"BLLI_L3_PACKET_256","features":[17]},{"name":"BLLI_L3_PACKET_32","features":[17]},{"name":"BLLI_L3_PACKET_4096","features":[17]},{"name":"BLLI_L3_PACKET_512","features":[17]},{"name":"BLLI_L3_PACKET_64","features":[17]},{"name":"BLLI_L3_SIO_8473","features":[17]},{"name":"BLLI_L3_T70","features":[17]},{"name":"BLLI_L3_USER_SPECIFIED","features":[17]},{"name":"BLLI_L3_X223","features":[17]},{"name":"BLLI_L3_X25","features":[17]},{"name":"BYTE_ORDER","features":[17]},{"name":"CAUSE_AAL_PARAMETERS_UNSUPPORTED","features":[17]},{"name":"CAUSE_ACCESS_INFORMAION_DISCARDED","features":[17]},{"name":"CAUSE_BEARER_CAPABILITY_UNAUTHORIZED","features":[17]},{"name":"CAUSE_BEARER_CAPABILITY_UNAVAILABLE","features":[17]},{"name":"CAUSE_BEARER_CAPABILITY_UNIMPLEMENTED","features":[17]},{"name":"CAUSE_CALL_REJECTED","features":[17]},{"name":"CAUSE_CHANNEL_NONEXISTENT","features":[17]},{"name":"CAUSE_COND_PERMANENT","features":[17]},{"name":"CAUSE_COND_TRANSIENT","features":[17]},{"name":"CAUSE_COND_UNKNOWN","features":[17]},{"name":"CAUSE_DESTINATION_OUT_OF_ORDER","features":[17]},{"name":"CAUSE_INCOMPATIBLE_DESTINATION","features":[17]},{"name":"CAUSE_INCORRECT_MESSAGE_LENGTH","features":[17]},{"name":"CAUSE_INVALID_CALL_REFERENCE","features":[17]},{"name":"CAUSE_INVALID_ENDPOINT_REFERENCE","features":[17]},{"name":"CAUSE_INVALID_IE_CONTENTS","features":[17]},{"name":"CAUSE_INVALID_NUMBER_FORMAT","features":[17]},{"name":"CAUSE_INVALID_STATE_FOR_MESSAGE","features":[17]},{"name":"CAUSE_INVALID_TRANSIT_NETWORK_SELECTION","features":[17]},{"name":"CAUSE_LOC_BEYOND_INTERWORKING","features":[17]},{"name":"CAUSE_LOC_INTERNATIONAL_NETWORK","features":[17]},{"name":"CAUSE_LOC_PRIVATE_LOCAL","features":[17]},{"name":"CAUSE_LOC_PRIVATE_REMOTE","features":[17]},{"name":"CAUSE_LOC_PUBLIC_LOCAL","features":[17]},{"name":"CAUSE_LOC_PUBLIC_REMOTE","features":[17]},{"name":"CAUSE_LOC_TRANSIT_NETWORK","features":[17]},{"name":"CAUSE_LOC_USER","features":[17]},{"name":"CAUSE_MANDATORY_IE_MISSING","features":[17]},{"name":"CAUSE_NA_ABNORMAL","features":[17]},{"name":"CAUSE_NA_NORMAL","features":[17]},{"name":"CAUSE_NETWORK_OUT_OF_ORDER","features":[17]},{"name":"CAUSE_NORMAL_CALL_CLEARING","features":[17]},{"name":"CAUSE_NORMAL_UNSPECIFIED","features":[17]},{"name":"CAUSE_NO_ROUTE_TO_DESTINATION","features":[17]},{"name":"CAUSE_NO_ROUTE_TO_TRANSIT_NETWORK","features":[17]},{"name":"CAUSE_NO_USER_RESPONDING","features":[17]},{"name":"CAUSE_NO_VPI_VCI_AVAILABLE","features":[17]},{"name":"CAUSE_NUMBER_CHANGED","features":[17]},{"name":"CAUSE_OPTION_UNAVAILABLE","features":[17]},{"name":"CAUSE_PROTOCOL_ERROR","features":[17]},{"name":"CAUSE_PU_PROVIDER","features":[17]},{"name":"CAUSE_PU_USER","features":[17]},{"name":"CAUSE_QOS_UNAVAILABLE","features":[17]},{"name":"CAUSE_REASON_IE_INSUFFICIENT","features":[17]},{"name":"CAUSE_REASON_IE_MISSING","features":[17]},{"name":"CAUSE_REASON_USER","features":[17]},{"name":"CAUSE_RECOVERY_ON_TIMEOUT","features":[17]},{"name":"CAUSE_RESOURCE_UNAVAILABLE","features":[17]},{"name":"CAUSE_STATUS_ENQUIRY_RESPONSE","features":[17]},{"name":"CAUSE_TEMPORARY_FAILURE","features":[17]},{"name":"CAUSE_TOO_MANY_PENDING_ADD_PARTY","features":[17]},{"name":"CAUSE_UNALLOCATED_NUMBER","features":[17]},{"name":"CAUSE_UNIMPLEMENTED_IE","features":[17]},{"name":"CAUSE_UNIMPLEMENTED_MESSAGE_TYPE","features":[17]},{"name":"CAUSE_UNSUPPORTED_TRAFFIC_PARAMETERS","features":[17]},{"name":"CAUSE_USER_BUSY","features":[17]},{"name":"CAUSE_USER_CELL_RATE_UNAVAILABLE","features":[17]},{"name":"CAUSE_USER_REJECTS_CLIR","features":[17]},{"name":"CAUSE_VPI_VCI_UNACCEPTABLE","features":[17]},{"name":"CAUSE_VPI_VCI_UNAVAILABLE","features":[17]},{"name":"CF_ACCEPT","features":[17]},{"name":"CF_DEFER","features":[17]},{"name":"CF_REJECT","features":[17]},{"name":"CLIP_NOT","features":[17]},{"name":"CLIP_SUS","features":[17]},{"name":"CMSGHDR","features":[17]},{"name":"COMP_EQUAL","features":[17]},{"name":"COMP_NOTLESS","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_HARDWARE_SLOT_ALLOCATED","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_INVALID","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_POLICY_ERROR","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SERVICE_UNAVAILABLE","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SOFTWARE_SLOT_ALLOCATED","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SYSTEM_ERROR","features":[17]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_TRANSPORT_DISCONNECTED","features":[17]},{"name":"CSADDR_INFO","features":[17]},{"name":"DE_REUSE_SOCKET","features":[17]},{"name":"DL_ADDRESS_LENGTH_MAXIMUM","features":[17]},{"name":"DL_EI48","features":[17]},{"name":"DL_EI64","features":[17]},{"name":"DL_EUI48","features":[17]},{"name":"DL_EUI64","features":[17]},{"name":"DL_HEADER_LENGTH_MAXIMUM","features":[17]},{"name":"DL_OUI","features":[17]},{"name":"DL_TEREDO_ADDRESS","features":[17]},{"name":"DL_TEREDO_ADDRESS_PRV","features":[17]},{"name":"DL_TUNNEL_ADDRESS","features":[17,9]},{"name":"ETHERNET_HEADER","features":[17]},{"name":"ETHERNET_TYPE_802_1AD","features":[17]},{"name":"ETHERNET_TYPE_802_1Q","features":[17]},{"name":"ETHERNET_TYPE_ARP","features":[17]},{"name":"ETHERNET_TYPE_IPV4","features":[17]},{"name":"ETHERNET_TYPE_IPV6","features":[17]},{"name":"ETHERNET_TYPE_MINIMUM","features":[17]},{"name":"ETH_LENGTH_OF_HEADER","features":[17]},{"name":"ETH_LENGTH_OF_SNAP_HEADER","features":[17]},{"name":"ETH_LENGTH_OF_VLAN_HEADER","features":[17]},{"name":"EXT_LEN_UNIT","features":[17]},{"name":"E_WINDOW_ADVANCE_BY_TIME","features":[17]},{"name":"E_WINDOW_USE_AS_DATA_CACHE","features":[17]},{"name":"EnumProtocolsA","features":[17]},{"name":"EnumProtocolsW","features":[17]},{"name":"FALLBACK_INDEX","features":[17]},{"name":"FD_ACCEPT","features":[17]},{"name":"FD_ACCEPT_BIT","features":[17]},{"name":"FD_ADDRESS_LIST_CHANGE_BIT","features":[17]},{"name":"FD_CLOSE","features":[17]},{"name":"FD_CLOSE_BIT","features":[17]},{"name":"FD_CONNECT","features":[17]},{"name":"FD_CONNECT_BIT","features":[17]},{"name":"FD_GROUP_QOS_BIT","features":[17]},{"name":"FD_MAX_EVENTS","features":[17]},{"name":"FD_OOB","features":[17]},{"name":"FD_OOB_BIT","features":[17]},{"name":"FD_QOS_BIT","features":[17]},{"name":"FD_READ","features":[17]},{"name":"FD_READ_BIT","features":[17]},{"name":"FD_ROUTING_INTERFACE_CHANGE_BIT","features":[17]},{"name":"FD_SET","features":[17]},{"name":"FD_SETSIZE","features":[17]},{"name":"FD_WRITE","features":[17]},{"name":"FD_WRITE_BIT","features":[17]},{"name":"FIOASYNC","features":[17]},{"name":"FIONBIO","features":[17]},{"name":"FIONREAD","features":[17]},{"name":"FLOWSPEC","features":[17]},{"name":"FROM_PROTOCOL_INFO","features":[17]},{"name":"FallbackIndexMax","features":[17]},{"name":"FallbackIndexTcpFastopen","features":[17]},{"name":"FreeAddrInfoEx","features":[17]},{"name":"FreeAddrInfoExW","features":[17]},{"name":"FreeAddrInfoW","features":[17]},{"name":"GAI_STRERROR_BUFFER_SIZE","features":[17]},{"name":"GROUP_FILTER","features":[17]},{"name":"GROUP_REQ","features":[17]},{"name":"GROUP_SOURCE_REQ","features":[17]},{"name":"GetAcceptExSockaddrs","features":[17]},{"name":"GetAddrInfoExA","features":[3,17,8]},{"name":"GetAddrInfoExCancel","features":[3,17]},{"name":"GetAddrInfoExOverlappedResult","features":[3,17,8]},{"name":"GetAddrInfoExW","features":[3,17,8]},{"name":"GetAddrInfoW","features":[17]},{"name":"GetAddressByNameA","features":[3,17]},{"name":"GetAddressByNameW","features":[3,17]},{"name":"GetHostNameW","features":[17]},{"name":"GetNameByTypeA","features":[17]},{"name":"GetNameByTypeW","features":[17]},{"name":"GetNameInfoW","features":[17]},{"name":"GetServiceA","features":[3,17]},{"name":"GetServiceW","features":[3,17]},{"name":"GetTypeByNameA","features":[17]},{"name":"GetTypeByNameW","features":[17]},{"name":"HOSTENT","features":[17]},{"name":"IAS_ATTRIB_INT","features":[17]},{"name":"IAS_ATTRIB_NO_ATTRIB","features":[17]},{"name":"IAS_ATTRIB_NO_CLASS","features":[17]},{"name":"IAS_ATTRIB_OCTETSEQ","features":[17]},{"name":"IAS_ATTRIB_STR","features":[17]},{"name":"IAS_MAX_ATTRIBNAME","features":[17]},{"name":"IAS_MAX_CLASSNAME","features":[17]},{"name":"IAS_MAX_OCTET_STRING","features":[17]},{"name":"IAS_MAX_USER_STRING","features":[17]},{"name":"ICMP4_TIME_EXCEED_CODE","features":[17]},{"name":"ICMP4_TIME_EXCEED_REASSEMBLY","features":[17]},{"name":"ICMP4_TIME_EXCEED_TRANSIT","features":[17]},{"name":"ICMP4_UNREACH_ADMIN","features":[17]},{"name":"ICMP4_UNREACH_CODE","features":[17]},{"name":"ICMP4_UNREACH_FRAG_NEEDED","features":[17]},{"name":"ICMP4_UNREACH_HOST","features":[17]},{"name":"ICMP4_UNREACH_HOST_ADMIN","features":[17]},{"name":"ICMP4_UNREACH_HOST_TOS","features":[17]},{"name":"ICMP4_UNREACH_HOST_UNKNOWN","features":[17]},{"name":"ICMP4_UNREACH_ISOLATED","features":[17]},{"name":"ICMP4_UNREACH_NET","features":[17]},{"name":"ICMP4_UNREACH_NET_ADMIN","features":[17]},{"name":"ICMP4_UNREACH_NET_TOS","features":[17]},{"name":"ICMP4_UNREACH_NET_UNKNOWN","features":[17]},{"name":"ICMP4_UNREACH_PORT","features":[17]},{"name":"ICMP4_UNREACH_PROTOCOL","features":[17]},{"name":"ICMP4_UNREACH_SOURCEROUTE_FAILED","features":[17]},{"name":"ICMP6_DST_UNREACH_ADDR","features":[17]},{"name":"ICMP6_DST_UNREACH_ADMIN","features":[17]},{"name":"ICMP6_DST_UNREACH_BEYONDSCOPE","features":[17]},{"name":"ICMP6_DST_UNREACH_NOPORT","features":[17]},{"name":"ICMP6_DST_UNREACH_NOROUTE","features":[17]},{"name":"ICMP6_PARAMPROB_FIRSTFRAGMENT","features":[17]},{"name":"ICMP6_PARAMPROB_HEADER","features":[17]},{"name":"ICMP6_PARAMPROB_NEXTHEADER","features":[17]},{"name":"ICMP6_PARAMPROB_OPTION","features":[17]},{"name":"ICMP6_TIME_EXCEED_REASSEMBLY","features":[17]},{"name":"ICMP6_TIME_EXCEED_TRANSIT","features":[17]},{"name":"ICMPV4_ADDRESS_MASK_MESSAGE","features":[17]},{"name":"ICMPV4_INVALID_PREFERENCE_LEVEL","features":[17]},{"name":"ICMPV4_ROUTER_ADVERT_ENTRY","features":[17]},{"name":"ICMPV4_ROUTER_ADVERT_HEADER","features":[17]},{"name":"ICMPV4_ROUTER_SOLICIT","features":[17]},{"name":"ICMPV4_TIMESTAMP_MESSAGE","features":[17]},{"name":"ICMPV6_ECHO_REQUEST_FLAG_REVERSE","features":[17]},{"name":"ICMP_ERROR_INFO","features":[17]},{"name":"ICMP_HEADER","features":[17]},{"name":"ICMP_MESSAGE","features":[17]},{"name":"IE_AALParameters","features":[17]},{"name":"IE_BHLI","features":[17]},{"name":"IE_BLLI","features":[17]},{"name":"IE_BroadbandBearerCapability","features":[17]},{"name":"IE_CalledPartyNumber","features":[17]},{"name":"IE_CalledPartySubaddress","features":[17]},{"name":"IE_CallingPartyNumber","features":[17]},{"name":"IE_CallingPartySubaddress","features":[17]},{"name":"IE_Cause","features":[17]},{"name":"IE_QOSClass","features":[17]},{"name":"IE_TrafficDescriptor","features":[17]},{"name":"IE_TransitNetworkSelection","features":[17]},{"name":"IFF_BROADCAST","features":[17]},{"name":"IFF_LOOPBACK","features":[17]},{"name":"IFF_MULTICAST","features":[17]},{"name":"IFF_POINTTOPOINT","features":[17]},{"name":"IFF_UP","features":[17]},{"name":"IGMPV3_QUERY_HEADER","features":[17]},{"name":"IGMPV3_REPORT_HEADER","features":[17]},{"name":"IGMPV3_REPORT_RECORD_HEADER","features":[17]},{"name":"IGMP_HEADER","features":[17]},{"name":"IGMP_LEAVE_GROUP_TYPE","features":[17]},{"name":"IGMP_MAX_RESP_CODE_TYPE","features":[17]},{"name":"IGMP_MAX_RESP_CODE_TYPE_FLOAT","features":[17]},{"name":"IGMP_MAX_RESP_CODE_TYPE_NORMAL","features":[17]},{"name":"IGMP_QUERY_TYPE","features":[17]},{"name":"IGMP_VERSION1_REPORT_TYPE","features":[17]},{"name":"IGMP_VERSION2_REPORT_TYPE","features":[17]},{"name":"IGMP_VERSION3_REPORT_TYPE","features":[17]},{"name":"IMPLINK_HIGHEXPER","features":[17]},{"name":"IMPLINK_IP","features":[17]},{"name":"IMPLINK_LOWEXPER","features":[17]},{"name":"IN4ADDR_ANY","features":[17]},{"name":"IN4ADDR_BROADCAST","features":[17]},{"name":"IN4ADDR_LINKLOCALPREFIX_LENGTH","features":[17]},{"name":"IN4ADDR_LOOPBACK","features":[17]},{"name":"IN4ADDR_LOOPBACKPREFIX_LENGTH","features":[17]},{"name":"IN4ADDR_MULTICASTPREFIX_LENGTH","features":[17]},{"name":"IN6ADDR_6TO4PREFIX_LENGTH","features":[17]},{"name":"IN6ADDR_LINKLOCALPREFIX_LENGTH","features":[17]},{"name":"IN6ADDR_MULTICASTPREFIX_LENGTH","features":[17]},{"name":"IN6ADDR_SOLICITEDNODEMULTICASTPREFIX_LENGTH","features":[17]},{"name":"IN6ADDR_TEREDOPREFIX_LENGTH","features":[17]},{"name":"IN6ADDR_V4MAPPEDPREFIX_LENGTH","features":[17]},{"name":"IN6_ADDR","features":[17]},{"name":"IN6_EMBEDDEDV4_BITS_IN_BYTE","features":[17]},{"name":"IN6_EMBEDDEDV4_UOCTET_POSITION","features":[17]},{"name":"IN6_PKTINFO","features":[17]},{"name":"IN6_PKTINFO_EX","features":[17]},{"name":"INADDR_ANY","features":[17]},{"name":"INADDR_BROADCAST","features":[17]},{"name":"INADDR_LOOPBACK","features":[17]},{"name":"INADDR_NONE","features":[17]},{"name":"INCL_WINSOCK_API_PROTOTYPES","features":[17]},{"name":"INCL_WINSOCK_API_TYPEDEFS","features":[17]},{"name":"INET6_ADDRSTRLEN","features":[17]},{"name":"INET_ADDRSTRLEN","features":[17]},{"name":"INET_PORT_RANGE","features":[17]},{"name":"INET_PORT_RESERVATION_INFORMATION","features":[17]},{"name":"INET_PORT_RESERVATION_INSTANCE","features":[17]},{"name":"INET_PORT_RESERVATION_TOKEN","features":[17]},{"name":"INTERFACE_INFO","features":[17]},{"name":"INTERFACE_INFO_EX","features":[17]},{"name":"INVALID_SOCKET","features":[17]},{"name":"IN_ADDR","features":[17]},{"name":"IN_CLASSA_HOST","features":[17]},{"name":"IN_CLASSA_MAX","features":[17]},{"name":"IN_CLASSA_NET","features":[17]},{"name":"IN_CLASSA_NSHIFT","features":[17]},{"name":"IN_CLASSB_HOST","features":[17]},{"name":"IN_CLASSB_MAX","features":[17]},{"name":"IN_CLASSB_NET","features":[17]},{"name":"IN_CLASSB_NSHIFT","features":[17]},{"name":"IN_CLASSC_HOST","features":[17]},{"name":"IN_CLASSC_NET","features":[17]},{"name":"IN_CLASSC_NSHIFT","features":[17]},{"name":"IN_CLASSD_HOST","features":[17]},{"name":"IN_CLASSD_NET","features":[17]},{"name":"IN_CLASSD_NSHIFT","features":[17]},{"name":"IN_PKTINFO","features":[17]},{"name":"IN_PKTINFO_EX","features":[17]},{"name":"IN_RECVERR","features":[17]},{"name":"IOCPARM_MASK","features":[17]},{"name":"IOC_IN","features":[17]},{"name":"IOC_INOUT","features":[17]},{"name":"IOC_OUT","features":[17]},{"name":"IOC_PROTOCOL","features":[17]},{"name":"IOC_UNIX","features":[17]},{"name":"IOC_VENDOR","features":[17]},{"name":"IOC_VOID","features":[17]},{"name":"IOC_WS2","features":[17]},{"name":"IP4_OFF_MASK","features":[17]},{"name":"IP6F_MORE_FRAG","features":[17]},{"name":"IP6F_OFF_MASK","features":[17]},{"name":"IP6F_RESERVED_MASK","features":[17]},{"name":"IP6OPT_JUMBO","features":[17]},{"name":"IP6OPT_MUTABLE","features":[17]},{"name":"IP6OPT_NSAP_ADDR","features":[17]},{"name":"IP6OPT_PAD1","features":[17]},{"name":"IP6OPT_PADN","features":[17]},{"name":"IP6OPT_ROUTER_ALERT","features":[17]},{"name":"IP6OPT_TUNNEL_LIMIT","features":[17]},{"name":"IP6OPT_TYPE_DISCARD","features":[17]},{"name":"IP6OPT_TYPE_FORCEICMP","features":[17]},{"name":"IP6OPT_TYPE_ICMP","features":[17]},{"name":"IP6OPT_TYPE_SKIP","features":[17]},{"name":"IP6T_SO_ORIGINAL_DST","features":[17]},{"name":"IPPORT_BIFFUDP","features":[17]},{"name":"IPPORT_CHARGEN","features":[17]},{"name":"IPPORT_CMDSERVER","features":[17]},{"name":"IPPORT_DAYTIME","features":[17]},{"name":"IPPORT_DISCARD","features":[17]},{"name":"IPPORT_DYNAMIC_MAX","features":[17]},{"name":"IPPORT_DYNAMIC_MIN","features":[17]},{"name":"IPPORT_ECHO","features":[17]},{"name":"IPPORT_EFSSERVER","features":[17]},{"name":"IPPORT_EPMAP","features":[17]},{"name":"IPPORT_EXECSERVER","features":[17]},{"name":"IPPORT_FINGER","features":[17]},{"name":"IPPORT_FTP","features":[17]},{"name":"IPPORT_FTP_DATA","features":[17]},{"name":"IPPORT_HTTPS","features":[17]},{"name":"IPPORT_IMAP","features":[17]},{"name":"IPPORT_IMAP3","features":[17]},{"name":"IPPORT_LDAP","features":[17]},{"name":"IPPORT_LOGINSERVER","features":[17]},{"name":"IPPORT_MICROSOFT_DS","features":[17]},{"name":"IPPORT_MSP","features":[17]},{"name":"IPPORT_MTP","features":[17]},{"name":"IPPORT_NAMESERVER","features":[17]},{"name":"IPPORT_NETBIOS_DGM","features":[17]},{"name":"IPPORT_NETBIOS_NS","features":[17]},{"name":"IPPORT_NETBIOS_SSN","features":[17]},{"name":"IPPORT_NETSTAT","features":[17]},{"name":"IPPORT_NTP","features":[17]},{"name":"IPPORT_POP3","features":[17]},{"name":"IPPORT_QOTD","features":[17]},{"name":"IPPORT_REGISTERED_MAX","features":[17]},{"name":"IPPORT_REGISTERED_MIN","features":[17]},{"name":"IPPORT_RESERVED","features":[17]},{"name":"IPPORT_RJE","features":[17]},{"name":"IPPORT_ROUTESERVER","features":[17]},{"name":"IPPORT_SMTP","features":[17]},{"name":"IPPORT_SNMP","features":[17]},{"name":"IPPORT_SNMP_TRAP","features":[17]},{"name":"IPPORT_SUPDUP","features":[17]},{"name":"IPPORT_SYSTAT","features":[17]},{"name":"IPPORT_TCPMUX","features":[17]},{"name":"IPPORT_TELNET","features":[17]},{"name":"IPPORT_TFTP","features":[17]},{"name":"IPPORT_TIMESERVER","features":[17]},{"name":"IPPORT_TTYLINK","features":[17]},{"name":"IPPORT_WHOIS","features":[17]},{"name":"IPPORT_WHOSERVER","features":[17]},{"name":"IPPROTO","features":[17]},{"name":"IPPROTO_AH","features":[17]},{"name":"IPPROTO_CBT","features":[17]},{"name":"IPPROTO_DSTOPTS","features":[17]},{"name":"IPPROTO_EGP","features":[17]},{"name":"IPPROTO_ESP","features":[17]},{"name":"IPPROTO_FRAGMENT","features":[17]},{"name":"IPPROTO_GGP","features":[17]},{"name":"IPPROTO_HOPOPTS","features":[17]},{"name":"IPPROTO_ICLFXBM","features":[17]},{"name":"IPPROTO_ICMP","features":[17]},{"name":"IPPROTO_ICMPV6","features":[17]},{"name":"IPPROTO_IDP","features":[17]},{"name":"IPPROTO_IGMP","features":[17]},{"name":"IPPROTO_IGP","features":[17]},{"name":"IPPROTO_IP","features":[17]},{"name":"IPPROTO_IPV4","features":[17]},{"name":"IPPROTO_IPV6","features":[17]},{"name":"IPPROTO_L2TP","features":[17]},{"name":"IPPROTO_MAX","features":[17]},{"name":"IPPROTO_ND","features":[17]},{"name":"IPPROTO_NONE","features":[17]},{"name":"IPPROTO_PGM","features":[17]},{"name":"IPPROTO_PIM","features":[17]},{"name":"IPPROTO_PUP","features":[17]},{"name":"IPPROTO_RAW","features":[17]},{"name":"IPPROTO_RDP","features":[17]},{"name":"IPPROTO_RESERVED_IPSEC","features":[17]},{"name":"IPPROTO_RESERVED_IPSECOFFLOAD","features":[17]},{"name":"IPPROTO_RESERVED_MAX","features":[17]},{"name":"IPPROTO_RESERVED_RAW","features":[17]},{"name":"IPPROTO_RESERVED_WNV","features":[17]},{"name":"IPPROTO_RM","features":[17]},{"name":"IPPROTO_ROUTING","features":[17]},{"name":"IPPROTO_SCTP","features":[17]},{"name":"IPPROTO_ST","features":[17]},{"name":"IPPROTO_TCP","features":[17]},{"name":"IPPROTO_UDP","features":[17]},{"name":"IPTLS_METADATA","features":[17]},{"name":"IPV4_HEADER","features":[17]},{"name":"IPV4_MAX_MINIMUM_MTU","features":[17]},{"name":"IPV4_MINIMUM_MTU","features":[17]},{"name":"IPV4_MIN_MINIMUM_MTU","features":[17]},{"name":"IPV4_OPTION_HEADER","features":[17]},{"name":"IPV4_OPTION_TYPE","features":[17]},{"name":"IPV4_ROUTING_HEADER","features":[17]},{"name":"IPV4_TIMESTAMP_OPTION","features":[17]},{"name":"IPV4_VERSION","features":[17]},{"name":"IPV6_ADD_IFLIST","features":[17]},{"name":"IPV6_ADD_MEMBERSHIP","features":[17]},{"name":"IPV6_CHECKSUM","features":[17]},{"name":"IPV6_DEL_IFLIST","features":[17]},{"name":"IPV6_DONTFRAG","features":[17]},{"name":"IPV6_DROP_MEMBERSHIP","features":[17]},{"name":"IPV6_ECN","features":[17]},{"name":"IPV6_ECN_MASK","features":[17]},{"name":"IPV6_ECN_SHIFT","features":[17]},{"name":"IPV6_EXTENSION_HEADER","features":[17]},{"name":"IPV6_FLOW_LABEL_MASK","features":[17]},{"name":"IPV6_FRAGMENT_HEADER","features":[17]},{"name":"IPV6_FULL_TRAFFIC_CLASS_MASK","features":[17]},{"name":"IPV6_GET_IFLIST","features":[17]},{"name":"IPV6_HDRINCL","features":[17]},{"name":"IPV6_HEADER","features":[17]},{"name":"IPV6_HOPLIMIT","features":[17]},{"name":"IPV6_HOPOPTS","features":[17]},{"name":"IPV6_IFLIST","features":[17]},{"name":"IPV6_JOIN_GROUP","features":[17]},{"name":"IPV6_LEAVE_GROUP","features":[17]},{"name":"IPV6_MINIMUM_MTU","features":[17]},{"name":"IPV6_MREQ","features":[17]},{"name":"IPV6_MTU","features":[17]},{"name":"IPV6_MTU_DISCOVER","features":[17]},{"name":"IPV6_MULTICAST_HOPS","features":[17]},{"name":"IPV6_MULTICAST_IF","features":[17]},{"name":"IPV6_MULTICAST_LOOP","features":[17]},{"name":"IPV6_NEIGHBOR_ADVERTISEMENT_FLAGS","features":[17]},{"name":"IPV6_NRT_INTERFACE","features":[17]},{"name":"IPV6_OPTION_HEADER","features":[17]},{"name":"IPV6_OPTION_JUMBOGRAM","features":[17]},{"name":"IPV6_OPTION_ROUTER_ALERT","features":[17]},{"name":"IPV6_OPTION_TYPE","features":[17]},{"name":"IPV6_PKTINFO","features":[17]},{"name":"IPV6_PKTINFO_EX","features":[17]},{"name":"IPV6_PROTECTION_LEVEL","features":[17]},{"name":"IPV6_RECVDSTADDR","features":[17]},{"name":"IPV6_RECVECN","features":[17]},{"name":"IPV6_RECVERR","features":[17]},{"name":"IPV6_RECVIF","features":[17]},{"name":"IPV6_RECVRTHDR","features":[17]},{"name":"IPV6_RECVTCLASS","features":[17]},{"name":"IPV6_ROUTER_ADVERTISEMENT_FLAGS","features":[17]},{"name":"IPV6_ROUTING_HEADER","features":[17]},{"name":"IPV6_RTHDR","features":[17]},{"name":"IPV6_TCLASS","features":[17]},{"name":"IPV6_TRAFFIC_CLASS_MASK","features":[17]},{"name":"IPV6_UNICAST_HOPS","features":[17]},{"name":"IPV6_UNICAST_IF","features":[17]},{"name":"IPV6_USER_MTU","features":[17]},{"name":"IPV6_V6ONLY","features":[17]},{"name":"IPV6_VERSION","features":[17]},{"name":"IPV6_WFP_REDIRECT_CONTEXT","features":[17]},{"name":"IPV6_WFP_REDIRECT_RECORDS","features":[17]},{"name":"IPX_ADDRESS","features":[17]},{"name":"IPX_ADDRESS_DATA","features":[3,17]},{"name":"IPX_ADDRESS_NOTIFY","features":[17]},{"name":"IPX_DSTYPE","features":[17]},{"name":"IPX_EXTENDED_ADDRESS","features":[17]},{"name":"IPX_FILTERPTYPE","features":[17]},{"name":"IPX_GETNETINFO","features":[17]},{"name":"IPX_GETNETINFO_NORIP","features":[17]},{"name":"IPX_IMMEDIATESPXACK","features":[17]},{"name":"IPX_MAXSIZE","features":[17]},{"name":"IPX_MAX_ADAPTER_NUM","features":[17]},{"name":"IPX_NETNUM_DATA","features":[17]},{"name":"IPX_PTYPE","features":[17]},{"name":"IPX_RECEIVE_BROADCAST","features":[17]},{"name":"IPX_RECVHDR","features":[17]},{"name":"IPX_RERIPNETNUMBER","features":[17]},{"name":"IPX_SPXCONNSTATUS_DATA","features":[17]},{"name":"IPX_SPXGETCONNECTIONSTATUS","features":[17]},{"name":"IPX_STOPFILTERPTYPE","features":[17]},{"name":"IP_ADD_IFLIST","features":[17]},{"name":"IP_ADD_MEMBERSHIP","features":[17]},{"name":"IP_ADD_SOURCE_MEMBERSHIP","features":[17]},{"name":"IP_BLOCK_SOURCE","features":[17]},{"name":"IP_DEFAULT_MULTICAST_LOOP","features":[17]},{"name":"IP_DEFAULT_MULTICAST_TTL","features":[17]},{"name":"IP_DEL_IFLIST","features":[17]},{"name":"IP_DONTFRAGMENT","features":[17]},{"name":"IP_DROP_MEMBERSHIP","features":[17]},{"name":"IP_DROP_SOURCE_MEMBERSHIP","features":[17]},{"name":"IP_ECN","features":[17]},{"name":"IP_GET_IFLIST","features":[17]},{"name":"IP_HDRINCL","features":[17]},{"name":"IP_HOPLIMIT","features":[17]},{"name":"IP_IFLIST","features":[17]},{"name":"IP_MAX_MEMBERSHIPS","features":[17]},{"name":"IP_MREQ","features":[17]},{"name":"IP_MREQ_SOURCE","features":[17]},{"name":"IP_MSFILTER","features":[17]},{"name":"IP_MTU","features":[17]},{"name":"IP_MTU_DISCOVER","features":[17]},{"name":"IP_MULTICAST_IF","features":[17]},{"name":"IP_MULTICAST_LOOP","features":[17]},{"name":"IP_MULTICAST_TTL","features":[17]},{"name":"IP_NRT_INTERFACE","features":[17]},{"name":"IP_OPTIONS","features":[17]},{"name":"IP_OPTION_TIMESTAMP_ADDRESS","features":[17]},{"name":"IP_OPTION_TIMESTAMP_FLAGS","features":[17]},{"name":"IP_OPTION_TIMESTAMP_ONLY","features":[17]},{"name":"IP_OPTION_TIMESTAMP_SPECIFIC_ADDRESS","features":[17]},{"name":"IP_OPT_EOL","features":[17]},{"name":"IP_OPT_LSRR","features":[17]},{"name":"IP_OPT_MULTIDEST","features":[17]},{"name":"IP_OPT_NOP","features":[17]},{"name":"IP_OPT_ROUTER_ALERT","features":[17]},{"name":"IP_OPT_RR","features":[17]},{"name":"IP_OPT_SECURITY","features":[17]},{"name":"IP_OPT_SID","features":[17]},{"name":"IP_OPT_SSRR","features":[17]},{"name":"IP_OPT_TS","features":[17]},{"name":"IP_ORIGINAL_ARRIVAL_IF","features":[17]},{"name":"IP_PKTINFO","features":[17]},{"name":"IP_PKTINFO_EX","features":[17]},{"name":"IP_PMTUDISC_DO","features":[17]},{"name":"IP_PMTUDISC_DONT","features":[17]},{"name":"IP_PMTUDISC_MAX","features":[17]},{"name":"IP_PMTUDISC_NOT_SET","features":[17]},{"name":"IP_PMTUDISC_PROBE","features":[17]},{"name":"IP_PROTECTION_LEVEL","features":[17]},{"name":"IP_RECEIVE_BROADCAST","features":[17]},{"name":"IP_RECVDSTADDR","features":[17]},{"name":"IP_RECVECN","features":[17]},{"name":"IP_RECVERR","features":[17]},{"name":"IP_RECVIF","features":[17]},{"name":"IP_RECVRTHDR","features":[17]},{"name":"IP_RECVTCLASS","features":[17]},{"name":"IP_RECVTOS","features":[17]},{"name":"IP_RECVTTL","features":[17]},{"name":"IP_RTHDR","features":[17]},{"name":"IP_TCLASS","features":[17]},{"name":"IP_TOS","features":[17]},{"name":"IP_TTL","features":[17]},{"name":"IP_UNBLOCK_SOURCE","features":[17]},{"name":"IP_UNICAST_IF","features":[17]},{"name":"IP_UNSPECIFIED_HOP_LIMIT","features":[17]},{"name":"IP_UNSPECIFIED_TYPE_OF_SERVICE","features":[17]},{"name":"IP_UNSPECIFIED_USER_MTU","features":[17]},{"name":"IP_USER_MTU","features":[17]},{"name":"IP_VER_MASK","features":[17]},{"name":"IP_WFP_REDIRECT_CONTEXT","features":[17]},{"name":"IP_WFP_REDIRECT_RECORDS","features":[17]},{"name":"IRDA_PROTO_SOCK_STREAM","features":[17]},{"name":"IRLMP_9WIRE_MODE","features":[17]},{"name":"IRLMP_DISCOVERY_MODE","features":[17]},{"name":"IRLMP_ENUMDEVICES","features":[17]},{"name":"IRLMP_EXCLUSIVE_MODE","features":[17]},{"name":"IRLMP_IAS_QUERY","features":[17]},{"name":"IRLMP_IAS_SET","features":[17]},{"name":"IRLMP_IRLPT_MODE","features":[17]},{"name":"IRLMP_PARAMETERS","features":[17]},{"name":"IRLMP_SEND_PDU_LEN","features":[17]},{"name":"IRLMP_SHARP_MODE","features":[17]},{"name":"IRLMP_TINYTP_MODE","features":[17]},{"name":"ISOPROTO_CLNP","features":[17]},{"name":"ISOPROTO_CLTP","features":[17]},{"name":"ISOPROTO_ESIS","features":[17]},{"name":"ISOPROTO_INACT_NL","features":[17]},{"name":"ISOPROTO_INTRAISIS","features":[17]},{"name":"ISOPROTO_TP","features":[17]},{"name":"ISOPROTO_TP0","features":[17]},{"name":"ISOPROTO_TP1","features":[17]},{"name":"ISOPROTO_TP2","features":[17]},{"name":"ISOPROTO_TP3","features":[17]},{"name":"ISOPROTO_TP4","features":[17]},{"name":"ISOPROTO_X25","features":[17]},{"name":"ISO_EXP_DATA_NUSE","features":[17]},{"name":"ISO_EXP_DATA_USE","features":[17]},{"name":"ISO_HIERARCHICAL","features":[17]},{"name":"ISO_MAX_ADDR_LENGTH","features":[17]},{"name":"ISO_NON_HIERARCHICAL","features":[17]},{"name":"InetNtopW","features":[17]},{"name":"InetPtonW","features":[17]},{"name":"IpDadStateDeprecated","features":[17]},{"name":"IpDadStateDuplicate","features":[17]},{"name":"IpDadStateInvalid","features":[17]},{"name":"IpDadStatePreferred","features":[17]},{"name":"IpDadStateTentative","features":[17]},{"name":"IpPrefixOriginDhcp","features":[17]},{"name":"IpPrefixOriginManual","features":[17]},{"name":"IpPrefixOriginOther","features":[17]},{"name":"IpPrefixOriginRouterAdvertisement","features":[17]},{"name":"IpPrefixOriginUnchanged","features":[17]},{"name":"IpPrefixOriginWellKnown","features":[17]},{"name":"IpSuffixOriginDhcp","features":[17]},{"name":"IpSuffixOriginLinkLayerAddress","features":[17]},{"name":"IpSuffixOriginManual","features":[17]},{"name":"IpSuffixOriginOther","features":[17]},{"name":"IpSuffixOriginRandom","features":[17]},{"name":"IpSuffixOriginUnchanged","features":[17]},{"name":"IpSuffixOriginWellKnown","features":[17]},{"name":"JL_BOTH","features":[17]},{"name":"JL_RECEIVER_ONLY","features":[17]},{"name":"JL_SENDER_ONLY","features":[17]},{"name":"LAYERED_PROTOCOL","features":[17]},{"name":"LINGER","features":[17]},{"name":"LITTLEENDIAN","features":[17]},{"name":"LM_BAUD_115200","features":[17]},{"name":"LM_BAUD_1152K","features":[17]},{"name":"LM_BAUD_1200","features":[17]},{"name":"LM_BAUD_16M","features":[17]},{"name":"LM_BAUD_19200","features":[17]},{"name":"LM_BAUD_2400","features":[17]},{"name":"LM_BAUD_38400","features":[17]},{"name":"LM_BAUD_4M","features":[17]},{"name":"LM_BAUD_57600","features":[17]},{"name":"LM_BAUD_576K","features":[17]},{"name":"LM_BAUD_9600","features":[17]},{"name":"LM_HB1_Computer","features":[17]},{"name":"LM_HB1_Fax","features":[17]},{"name":"LM_HB1_LANAccess","features":[17]},{"name":"LM_HB1_Modem","features":[17]},{"name":"LM_HB1_PDA_Palmtop","features":[17]},{"name":"LM_HB1_PnP","features":[17]},{"name":"LM_HB1_Printer","features":[17]},{"name":"LM_HB2_FileServer","features":[17]},{"name":"LM_HB2_Telephony","features":[17]},{"name":"LM_HB_Extension","features":[17]},{"name":"LM_IRPARMS","features":[17]},{"name":"LOG2_BITS_PER_BYTE","features":[17]},{"name":"LPBLOCKINGCALLBACK","features":[3,17]},{"name":"LPCONDITIONPROC","features":[17]},{"name":"LPFN_ACCEPTEX","features":[3,17,8]},{"name":"LPFN_CONNECTEX","features":[3,17,8]},{"name":"LPFN_DISCONNECTEX","features":[3,17,8]},{"name":"LPFN_GETACCEPTEXSOCKADDRS","features":[17]},{"name":"LPFN_NSPAPI","features":[17]},{"name":"LPFN_RIOCLOSECOMPLETIONQUEUE","features":[17]},{"name":"LPFN_RIOCREATECOMPLETIONQUEUE","features":[3,17]},{"name":"LPFN_RIOCREATEREQUESTQUEUE","features":[17]},{"name":"LPFN_RIODEQUEUECOMPLETION","features":[17]},{"name":"LPFN_RIODEREGISTERBUFFER","features":[17]},{"name":"LPFN_RIONOTIFY","features":[17]},{"name":"LPFN_RIORECEIVE","features":[3,17]},{"name":"LPFN_RIORECEIVEEX","features":[17]},{"name":"LPFN_RIOREGISTERBUFFER","features":[17]},{"name":"LPFN_RIORESIZECOMPLETIONQUEUE","features":[3,17]},{"name":"LPFN_RIORESIZEREQUESTQUEUE","features":[3,17]},{"name":"LPFN_RIOSEND","features":[3,17]},{"name":"LPFN_RIOSENDEX","features":[3,17]},{"name":"LPFN_TRANSMITFILE","features":[3,17,8]},{"name":"LPFN_TRANSMITPACKETS","features":[3,17,8]},{"name":"LPFN_WSAPOLL","features":[17]},{"name":"LPFN_WSARECVMSG","features":[3,17,8]},{"name":"LPFN_WSASENDMSG","features":[3,17,8]},{"name":"LPLOOKUPSERVICE_COMPLETION_ROUTINE","features":[3,17,8]},{"name":"LPNSPCLEANUP","features":[17]},{"name":"LPNSPGETSERVICECLASSINFO","features":[17]},{"name":"LPNSPINSTALLSERVICECLASS","features":[17]},{"name":"LPNSPIOCTL","features":[3,17,8]},{"name":"LPNSPLOOKUPSERVICEBEGIN","features":[3,17,43]},{"name":"LPNSPLOOKUPSERVICEEND","features":[3,17]},{"name":"LPNSPLOOKUPSERVICENEXT","features":[3,17,43]},{"name":"LPNSPREMOVESERVICECLASS","features":[17]},{"name":"LPNSPSETSERVICE","features":[17,43]},{"name":"LPNSPSTARTUP","features":[3,17,43,8]},{"name":"LPNSPV2CLEANUP","features":[17]},{"name":"LPNSPV2CLIENTSESSIONRUNDOWN","features":[17]},{"name":"LPNSPV2LOOKUPSERVICEBEGIN","features":[3,17,43]},{"name":"LPNSPV2LOOKUPSERVICEEND","features":[3,17]},{"name":"LPNSPV2LOOKUPSERVICENEXTEX","features":[3,17,43]},{"name":"LPNSPV2SETSERVICEEX","features":[3,17,43]},{"name":"LPNSPV2STARTUP","features":[17]},{"name":"LPSERVICE_CALLBACK_PROC","features":[3,17]},{"name":"LPWPUCLOSEEVENT","features":[3,17]},{"name":"LPWPUCLOSESOCKETHANDLE","features":[17]},{"name":"LPWPUCLOSETHREAD","features":[3,17]},{"name":"LPWPUCOMPLETEOVERLAPPEDREQUEST","features":[3,17,8]},{"name":"LPWPUCREATEEVENT","features":[17]},{"name":"LPWPUCREATESOCKETHANDLE","features":[17]},{"name":"LPWPUFDISSET","features":[17]},{"name":"LPWPUGETPROVIDERPATH","features":[17]},{"name":"LPWPUMODIFYIFSHANDLE","features":[17]},{"name":"LPWPUOPENCURRENTTHREAD","features":[3,17]},{"name":"LPWPUPOSTMESSAGE","features":[3,17]},{"name":"LPWPUQUERYBLOCKINGCALLBACK","features":[3,17]},{"name":"LPWPUQUERYSOCKETHANDLECONTEXT","features":[17]},{"name":"LPWPUQUEUEAPC","features":[3,17]},{"name":"LPWPURESETEVENT","features":[3,17]},{"name":"LPWPUSETEVENT","features":[3,17]},{"name":"LPWSAOVERLAPPED_COMPLETION_ROUTINE","features":[3,17,8]},{"name":"LPWSAUSERAPC","features":[17]},{"name":"LPWSCDEINSTALLPROVIDER","features":[17]},{"name":"LPWSCENABLENSPROVIDER","features":[3,17]},{"name":"LPWSCENUMPROTOCOLS","features":[17]},{"name":"LPWSCGETPROVIDERPATH","features":[17]},{"name":"LPWSCINSTALLNAMESPACE","features":[17]},{"name":"LPWSCINSTALLPROVIDER","features":[17]},{"name":"LPWSCUNINSTALLNAMESPACE","features":[17]},{"name":"LPWSCUPDATEPROVIDER","features":[17]},{"name":"LPWSCWRITENAMESPACEORDER","features":[17]},{"name":"LPWSCWRITEPROVIDERORDER","features":[17]},{"name":"LPWSPACCEPT","features":[17]},{"name":"LPWSPADDRESSTOSTRING","features":[17]},{"name":"LPWSPASYNCSELECT","features":[3,17]},{"name":"LPWSPBIND","features":[17]},{"name":"LPWSPCANCELBLOCKINGCALL","features":[17]},{"name":"LPWSPCLEANUP","features":[17]},{"name":"LPWSPCLOSESOCKET","features":[17]},{"name":"LPWSPCONNECT","features":[17]},{"name":"LPWSPDUPLICATESOCKET","features":[17]},{"name":"LPWSPENUMNETWORKEVENTS","features":[3,17]},{"name":"LPWSPEVENTSELECT","features":[17]},{"name":"LPWSPGETOVERLAPPEDRESULT","features":[3,17,8]},{"name":"LPWSPGETPEERNAME","features":[17]},{"name":"LPWSPGETQOSBYNAME","features":[3,17]},{"name":"LPWSPGETSOCKNAME","features":[17]},{"name":"LPWSPGETSOCKOPT","features":[17]},{"name":"LPWSPIOCTL","features":[3,17,8]},{"name":"LPWSPJOINLEAF","features":[17]},{"name":"LPWSPLISTEN","features":[17]},{"name":"LPWSPRECV","features":[3,17,8]},{"name":"LPWSPRECVDISCONNECT","features":[17]},{"name":"LPWSPRECVFROM","features":[3,17,8]},{"name":"LPWSPSELECT","features":[17]},{"name":"LPWSPSEND","features":[3,17,8]},{"name":"LPWSPSENDDISCONNECT","features":[17]},{"name":"LPWSPSENDTO","features":[3,17,8]},{"name":"LPWSPSETSOCKOPT","features":[17]},{"name":"LPWSPSHUTDOWN","features":[17]},{"name":"LPWSPSOCKET","features":[17]},{"name":"LPWSPSTARTUP","features":[3,17,8]},{"name":"LPWSPSTRINGTOADDRESS","features":[17]},{"name":"LSP_CRYPTO_COMPRESS","features":[17]},{"name":"LSP_FIREWALL","features":[17]},{"name":"LSP_INBOUND_MODIFY","features":[17]},{"name":"LSP_INSPECTOR","features":[17]},{"name":"LSP_LOCAL_CACHE","features":[17]},{"name":"LSP_OUTBOUND_MODIFY","features":[17]},{"name":"LSP_PROXY","features":[17]},{"name":"LSP_REDIRECTOR","features":[17]},{"name":"LSP_SYSTEM","features":[17]},{"name":"LUP_ADDRCONFIG","features":[17]},{"name":"LUP_API_ANSI","features":[17]},{"name":"LUP_CONTAINERS","features":[17]},{"name":"LUP_DEEP","features":[17]},{"name":"LUP_DISABLE_IDN_ENCODING","features":[17]},{"name":"LUP_DNS_ONLY","features":[17]},{"name":"LUP_DUAL_ADDR","features":[17]},{"name":"LUP_EXCLUSIVE_CUSTOM_SERVERS","features":[17]},{"name":"LUP_EXTENDED_QUERYSET","features":[17]},{"name":"LUP_FILESERVER","features":[17]},{"name":"LUP_FLUSHCACHE","features":[17]},{"name":"LUP_FLUSHPREVIOUS","features":[17]},{"name":"LUP_FORCE_CLEAR_TEXT","features":[17]},{"name":"LUP_NEAREST","features":[17]},{"name":"LUP_NOCONTAINERS","features":[17]},{"name":"LUP_NON_AUTHORITATIVE","features":[17]},{"name":"LUP_REQUIRE_SECURE","features":[17]},{"name":"LUP_RESOLUTION_HANDLE","features":[17]},{"name":"LUP_RES_SERVICE","features":[17]},{"name":"LUP_RETURN_ADDR","features":[17]},{"name":"LUP_RETURN_ALIASES","features":[17]},{"name":"LUP_RETURN_ALL","features":[17]},{"name":"LUP_RETURN_BLOB","features":[17]},{"name":"LUP_RETURN_COMMENT","features":[17]},{"name":"LUP_RETURN_NAME","features":[17]},{"name":"LUP_RETURN_PREFERRED_NAMES","features":[17]},{"name":"LUP_RETURN_QUERY_STRING","features":[17]},{"name":"LUP_RETURN_RESPONSE_FLAGS","features":[17]},{"name":"LUP_RETURN_TTL","features":[17]},{"name":"LUP_RETURN_TYPE","features":[17]},{"name":"LUP_RETURN_VERSION","features":[17]},{"name":"LUP_SECURE","features":[17]},{"name":"LUP_SECURE_WITH_FALLBACK","features":[17]},{"name":"LinkLocalAlwaysOff","features":[17]},{"name":"LinkLocalAlwaysOn","features":[17]},{"name":"LinkLocalDelayed","features":[17]},{"name":"LinkLocalUnchanged","features":[17]},{"name":"LmCharSetASCII","features":[17]},{"name":"LmCharSetISO_8859_1","features":[17]},{"name":"LmCharSetISO_8859_2","features":[17]},{"name":"LmCharSetISO_8859_3","features":[17]},{"name":"LmCharSetISO_8859_4","features":[17]},{"name":"LmCharSetISO_8859_5","features":[17]},{"name":"LmCharSetISO_8859_6","features":[17]},{"name":"LmCharSetISO_8859_7","features":[17]},{"name":"LmCharSetISO_8859_8","features":[17]},{"name":"LmCharSetISO_8859_9","features":[17]},{"name":"LmCharSetUNICODE","features":[17]},{"name":"MAXGETHOSTSTRUCT","features":[17]},{"name":"MAX_IPV4_HLEN","features":[17]},{"name":"MAX_IPV4_PACKET","features":[17]},{"name":"MAX_IPV6_PAYLOAD","features":[17]},{"name":"MAX_MCAST_TTL","features":[17]},{"name":"MAX_PROTOCOL_CHAIN","features":[17]},{"name":"MAX_WINDOW_INCREMENT_PERCENTAGE","features":[17]},{"name":"MCAST_BLOCK_SOURCE","features":[17]},{"name":"MCAST_EXCLUDE","features":[17]},{"name":"MCAST_INCLUDE","features":[17]},{"name":"MCAST_JOIN_GROUP","features":[17]},{"name":"MCAST_JOIN_SOURCE_GROUP","features":[17]},{"name":"MCAST_LEAVE_GROUP","features":[17]},{"name":"MCAST_LEAVE_SOURCE_GROUP","features":[17]},{"name":"MCAST_UNBLOCK_SOURCE","features":[17]},{"name":"MIB_IPPROTO_BBN","features":[17]},{"name":"MIB_IPPROTO_BGP","features":[17]},{"name":"MIB_IPPROTO_CISCO","features":[17]},{"name":"MIB_IPPROTO_DHCP","features":[17]},{"name":"MIB_IPPROTO_DVMRP","features":[17]},{"name":"MIB_IPPROTO_EGP","features":[17]},{"name":"MIB_IPPROTO_EIGRP","features":[17]},{"name":"MIB_IPPROTO_ES_IS","features":[17]},{"name":"MIB_IPPROTO_GGP","features":[17]},{"name":"MIB_IPPROTO_HELLO","features":[17]},{"name":"MIB_IPPROTO_ICMP","features":[17]},{"name":"MIB_IPPROTO_IDPR","features":[17]},{"name":"MIB_IPPROTO_IS_IS","features":[17]},{"name":"MIB_IPPROTO_LOCAL","features":[17]},{"name":"MIB_IPPROTO_NETMGMT","features":[17]},{"name":"MIB_IPPROTO_NT_AUTOSTATIC","features":[17]},{"name":"MIB_IPPROTO_NT_STATIC","features":[17]},{"name":"MIB_IPPROTO_NT_STATIC_NON_DOD","features":[17]},{"name":"MIB_IPPROTO_OSPF","features":[17]},{"name":"MIB_IPPROTO_OTHER","features":[17]},{"name":"MIB_IPPROTO_RIP","features":[17]},{"name":"MIB_IPPROTO_RPL","features":[17]},{"name":"MIT_GUID","features":[17]},{"name":"MIT_IF_LUID","features":[17]},{"name":"MLDV2_QUERY_HEADER","features":[17]},{"name":"MLDV2_REPORT_HEADER","features":[17]},{"name":"MLDV2_REPORT_RECORD_HEADER","features":[17]},{"name":"MLD_HEADER","features":[17]},{"name":"MLD_MAX_RESP_CODE_TYPE","features":[17]},{"name":"MLD_MAX_RESP_CODE_TYPE_FLOAT","features":[17]},{"name":"MLD_MAX_RESP_CODE_TYPE_NORMAL","features":[17]},{"name":"MSG_BCAST","features":[17]},{"name":"MSG_CTRUNC","features":[17]},{"name":"MSG_DONTROUTE","features":[17]},{"name":"MSG_ERRQUEUE","features":[17]},{"name":"MSG_INTERRUPT","features":[17]},{"name":"MSG_MAXIOVLEN","features":[17]},{"name":"MSG_MCAST","features":[17]},{"name":"MSG_OOB","features":[17]},{"name":"MSG_PARTIAL","features":[17]},{"name":"MSG_PEEK","features":[17]},{"name":"MSG_PUSH_IMMEDIATE","features":[17]},{"name":"MSG_TRUNC","features":[17]},{"name":"MSG_WAITALL","features":[17]},{"name":"MULTICAST_MODE_TYPE","features":[17]},{"name":"NAPI_DOMAIN_DESCRIPTION_BLOB","features":[17]},{"name":"NAPI_PROVIDER_INSTALLATION_BLOB","features":[17]},{"name":"NAPI_PROVIDER_LEVEL","features":[17]},{"name":"NAPI_PROVIDER_TYPE","features":[17]},{"name":"ND_NA_FLAG_OVERRIDE","features":[17]},{"name":"ND_NA_FLAG_ROUTER","features":[17]},{"name":"ND_NA_FLAG_SOLICITED","features":[17]},{"name":"ND_NEIGHBOR_ADVERT_HEADER","features":[17]},{"name":"ND_NEIGHBOR_SOLICIT_HEADER","features":[17]},{"name":"ND_OPTION_DNSSL","features":[17]},{"name":"ND_OPTION_HDR","features":[17]},{"name":"ND_OPTION_MTU","features":[17]},{"name":"ND_OPTION_PREFIX_INFO","features":[17]},{"name":"ND_OPTION_RDNSS","features":[17]},{"name":"ND_OPTION_RD_HDR","features":[17]},{"name":"ND_OPTION_ROUTE_INFO","features":[17]},{"name":"ND_OPTION_TYPE","features":[17]},{"name":"ND_OPT_ADVERTISEMENT_INTERVAL","features":[17]},{"name":"ND_OPT_DNSSL","features":[17]},{"name":"ND_OPT_DNSSL_MIN_LEN","features":[17]},{"name":"ND_OPT_HOME_AGENT_INFORMATION","features":[17]},{"name":"ND_OPT_MTU","features":[17]},{"name":"ND_OPT_NBMA_SHORTCUT_LIMIT","features":[17]},{"name":"ND_OPT_PI_FLAG_AUTO","features":[17]},{"name":"ND_OPT_PI_FLAG_ONLINK","features":[17]},{"name":"ND_OPT_PI_FLAG_ROUTE","features":[17]},{"name":"ND_OPT_PI_FLAG_ROUTER_ADDR","features":[17]},{"name":"ND_OPT_PI_FLAG_SITE_PREFIX","features":[17]},{"name":"ND_OPT_PREFIX_INFORMATION","features":[17]},{"name":"ND_OPT_RDNSS","features":[17]},{"name":"ND_OPT_RDNSS_MIN_LEN","features":[17]},{"name":"ND_OPT_REDIRECTED_HEADER","features":[17]},{"name":"ND_OPT_RI_FLAG_PREFERENCE","features":[17]},{"name":"ND_OPT_ROUTE_INFO","features":[17]},{"name":"ND_OPT_SOURCE_ADDR_LIST","features":[17]},{"name":"ND_OPT_SOURCE_LINKADDR","features":[17]},{"name":"ND_OPT_TARGET_ADDR_LIST","features":[17]},{"name":"ND_OPT_TARGET_LINKADDR","features":[17]},{"name":"ND_RA_FLAG_HOME_AGENT","features":[17]},{"name":"ND_RA_FLAG_MANAGED","features":[17]},{"name":"ND_RA_FLAG_OTHER","features":[17]},{"name":"ND_RA_FLAG_PREFERENCE","features":[17]},{"name":"ND_REDIRECT_HEADER","features":[17]},{"name":"ND_ROUTER_ADVERT_HEADER","features":[17]},{"name":"ND_ROUTER_SOLICIT_HEADER","features":[17]},{"name":"NETBIOS_GROUP_NAME","features":[17]},{"name":"NETBIOS_NAME_LENGTH","features":[17]},{"name":"NETBIOS_TYPE_QUICK_GROUP","features":[17]},{"name":"NETBIOS_TYPE_QUICK_UNIQUE","features":[17]},{"name":"NETBIOS_UNIQUE_NAME","features":[17]},{"name":"NETRESOURCE2A","features":[17]},{"name":"NETRESOURCE2W","features":[17]},{"name":"NI_DGRAM","features":[17]},{"name":"NI_MAXHOST","features":[17]},{"name":"NI_MAXSERV","features":[17]},{"name":"NI_NAMEREQD","features":[17]},{"name":"NI_NOFQDN","features":[17]},{"name":"NI_NUMERICHOST","features":[17]},{"name":"NI_NUMERICSERV","features":[17]},{"name":"NLA_802_1X_LOCATION","features":[17]},{"name":"NLA_ALLUSERS_NETWORK","features":[17]},{"name":"NLA_BLOB","features":[17]},{"name":"NLA_BLOB_DATA_TYPE","features":[17]},{"name":"NLA_CONNECTIVITY","features":[17]},{"name":"NLA_CONNECTIVITY_TYPE","features":[17]},{"name":"NLA_FRIENDLY_NAME","features":[17]},{"name":"NLA_ICS","features":[17]},{"name":"NLA_INTERFACE","features":[17]},{"name":"NLA_INTERNET","features":[17]},{"name":"NLA_INTERNET_NO","features":[17]},{"name":"NLA_INTERNET_UNKNOWN","features":[17]},{"name":"NLA_INTERNET_YES","features":[17]},{"name":"NLA_NAMESPACE_GUID","features":[17]},{"name":"NLA_NETWORK_AD_HOC","features":[17]},{"name":"NLA_NETWORK_MANAGED","features":[17]},{"name":"NLA_NETWORK_UNKNOWN","features":[17]},{"name":"NLA_NETWORK_UNMANAGED","features":[17]},{"name":"NLA_RAW_DATA","features":[17]},{"name":"NLA_SERVICE_CLASS_GUID","features":[17]},{"name":"NL_ADDRESS_TYPE","features":[17]},{"name":"NL_BANDWIDTH_FLAG","features":[17]},{"name":"NL_BANDWIDTH_INFORMATION","features":[3,17]},{"name":"NL_DAD_STATE","features":[17]},{"name":"NL_INTERFACE_NETWORK_CATEGORY_STATE","features":[17]},{"name":"NL_INTERFACE_OFFLOAD_ROD","features":[17]},{"name":"NL_LINK_LOCAL_ADDRESS_BEHAVIOR","features":[17]},{"name":"NL_NEIGHBOR_STATE","features":[17]},{"name":"NL_NETWORK_CATEGORY","features":[17]},{"name":"NL_NETWORK_CONNECTIVITY_COST_HINT","features":[17]},{"name":"NL_NETWORK_CONNECTIVITY_HINT","features":[3,17]},{"name":"NL_NETWORK_CONNECTIVITY_LEVEL_HINT","features":[17]},{"name":"NL_PATH_BANDWIDTH_ROD","features":[3,17]},{"name":"NL_PREFIX_ORIGIN","features":[17]},{"name":"NL_ROUTER_DISCOVERY_BEHAVIOR","features":[17]},{"name":"NL_ROUTE_ORIGIN","features":[17]},{"name":"NL_ROUTE_PROTOCOL","features":[17]},{"name":"NL_SUFFIX_ORIGIN","features":[17]},{"name":"NPI_MODULEID","features":[3,17]},{"name":"NPI_MODULEID_TYPE","features":[17]},{"name":"NSPROTO_IPX","features":[17]},{"name":"NSPROTO_SPX","features":[17]},{"name":"NSPROTO_SPXII","features":[17]},{"name":"NSPV2_ROUTINE","features":[3,17,43]},{"name":"NSP_NOTIFY_APC","features":[17]},{"name":"NSP_NOTIFY_EVENT","features":[17]},{"name":"NSP_NOTIFY_HWND","features":[17]},{"name":"NSP_NOTIFY_IMMEDIATELY","features":[17]},{"name":"NSP_NOTIFY_PORT","features":[17]},{"name":"NSP_ROUTINE","features":[3,17,43,8]},{"name":"NSTYPE_DYNAMIC","features":[17]},{"name":"NSTYPE_ENUMERABLE","features":[17]},{"name":"NSTYPE_HIERARCHICAL","features":[17]},{"name":"NSTYPE_WORKGROUP","features":[17]},{"name":"NS_ALL","features":[17]},{"name":"NS_DEFAULT","features":[17]},{"name":"NS_DHCP","features":[17]},{"name":"NS_DNS","features":[17]},{"name":"NS_EMAIL","features":[17]},{"name":"NS_INFOA","features":[17]},{"name":"NS_INFOW","features":[17]},{"name":"NS_LOCALNAME","features":[17]},{"name":"NS_MS","features":[17]},{"name":"NS_NBP","features":[17]},{"name":"NS_NDS","features":[17]},{"name":"NS_NETBT","features":[17]},{"name":"NS_NETDES","features":[17]},{"name":"NS_NIS","features":[17]},{"name":"NS_NISPLUS","features":[17]},{"name":"NS_NLA","features":[17]},{"name":"NS_NTDS","features":[17]},{"name":"NS_PEER_BROWSE","features":[17]},{"name":"NS_SAP","features":[17]},{"name":"NS_SERVICE_INFOA","features":[17,43]},{"name":"NS_SERVICE_INFOW","features":[17,43]},{"name":"NS_SLP","features":[17]},{"name":"NS_STDA","features":[17]},{"name":"NS_TCPIP_HOSTS","features":[17]},{"name":"NS_TCPIP_LOCAL","features":[17]},{"name":"NS_VNS","features":[17]},{"name":"NS_WINS","features":[17]},{"name":"NS_WRQ","features":[17]},{"name":"NS_X500","features":[17]},{"name":"NetworkCategoryDomainAuthenticated","features":[17]},{"name":"NetworkCategoryPrivate","features":[17]},{"name":"NetworkCategoryPublic","features":[17]},{"name":"NetworkCategoryUnchanged","features":[17]},{"name":"NetworkCategoryUnknown","features":[17]},{"name":"NetworkConnectivityCostHintFixed","features":[17]},{"name":"NetworkConnectivityCostHintUnknown","features":[17]},{"name":"NetworkConnectivityCostHintUnrestricted","features":[17]},{"name":"NetworkConnectivityCostHintVariable","features":[17]},{"name":"NetworkConnectivityLevelHintConstrainedInternetAccess","features":[17]},{"name":"NetworkConnectivityLevelHintHidden","features":[17]},{"name":"NetworkConnectivityLevelHintInternetAccess","features":[17]},{"name":"NetworkConnectivityLevelHintLocalAccess","features":[17]},{"name":"NetworkConnectivityLevelHintNone","features":[17]},{"name":"NetworkConnectivityLevelHintUnknown","features":[17]},{"name":"NlatAnycast","features":[17]},{"name":"NlatBroadcast","features":[17]},{"name":"NlatInvalid","features":[17]},{"name":"NlatMulticast","features":[17]},{"name":"NlatUnicast","features":[17]},{"name":"NlatUnspecified","features":[17]},{"name":"NlbwDisabled","features":[17]},{"name":"NlbwEnabled","features":[17]},{"name":"NlbwUnchanged","features":[17]},{"name":"NldsDeprecated","features":[17]},{"name":"NldsDuplicate","features":[17]},{"name":"NldsInvalid","features":[17]},{"name":"NldsPreferred","features":[17]},{"name":"NldsTentative","features":[17]},{"name":"NlincCategoryStateMax","features":[17]},{"name":"NlincCategoryUnknown","features":[17]},{"name":"NlincDomainAuthenticated","features":[17]},{"name":"NlincPrivate","features":[17]},{"name":"NlincPublic","features":[17]},{"name":"NlnsDelay","features":[17]},{"name":"NlnsIncomplete","features":[17]},{"name":"NlnsMaximum","features":[17]},{"name":"NlnsPermanent","features":[17]},{"name":"NlnsProbe","features":[17]},{"name":"NlnsReachable","features":[17]},{"name":"NlnsStale","features":[17]},{"name":"NlnsUnreachable","features":[17]},{"name":"Nlro6to4","features":[17]},{"name":"NlroDHCP","features":[17]},{"name":"NlroManual","features":[17]},{"name":"NlroRouterAdvertisement","features":[17]},{"name":"NlroWellKnown","features":[17]},{"name":"NlsoDhcp","features":[17]},{"name":"NlsoLinkLayerAddress","features":[17]},{"name":"NlsoManual","features":[17]},{"name":"NlsoOther","features":[17]},{"name":"NlsoRandom","features":[17]},{"name":"NlsoWellKnown","features":[17]},{"name":"PFL_HIDDEN","features":[17]},{"name":"PFL_MATCHES_PROTOCOL_ZERO","features":[17]},{"name":"PFL_MULTIPLE_PROTO_ENTRIES","features":[17]},{"name":"PFL_NETWORKDIRECT_PROVIDER","features":[17]},{"name":"PFL_RECOMMENDED_PROTO_ENTRY","features":[17]},{"name":"PF_APPLETALK","features":[17]},{"name":"PF_ATM","features":[17]},{"name":"PF_BAN","features":[17]},{"name":"PF_CCITT","features":[17]},{"name":"PF_CHAOS","features":[17]},{"name":"PF_DATAKIT","features":[17]},{"name":"PF_DECnet","features":[17]},{"name":"PF_DLI","features":[17]},{"name":"PF_ECMA","features":[17]},{"name":"PF_FIREFOX","features":[17]},{"name":"PF_HYLINK","features":[17]},{"name":"PF_IMPLINK","features":[17]},{"name":"PF_IPX","features":[17]},{"name":"PF_IRDA","features":[17]},{"name":"PF_ISO","features":[17]},{"name":"PF_LAT","features":[17]},{"name":"PF_MAX","features":[17]},{"name":"PF_NS","features":[17]},{"name":"PF_OSI","features":[17]},{"name":"PF_PUP","features":[17]},{"name":"PF_SNA","features":[17]},{"name":"PF_UNIX","features":[17]},{"name":"PF_UNKNOWN1","features":[17]},{"name":"PF_VOICEVIEW","features":[17]},{"name":"PI_ALLOWED","features":[17]},{"name":"PI_NUMBER_NOT_AVAILABLE","features":[17]},{"name":"PI_RESTRICTED","features":[17]},{"name":"PMTUD_STATE","features":[17]},{"name":"POLLERR","features":[17]},{"name":"POLLHUP","features":[17]},{"name":"POLLIN","features":[17]},{"name":"POLLNVAL","features":[17]},{"name":"POLLOUT","features":[17]},{"name":"POLLPRI","features":[17]},{"name":"POLLRDBAND","features":[17]},{"name":"POLLRDNORM","features":[17]},{"name":"POLLWRBAND","features":[17]},{"name":"POLLWRNORM","features":[17]},{"name":"PRIORITY_STATUS","features":[17]},{"name":"PROP_ADDRESSES","features":[17]},{"name":"PROP_ALL","features":[17]},{"name":"PROP_COMMENT","features":[17]},{"name":"PROP_DISPLAY_HINT","features":[17]},{"name":"PROP_LOCALE","features":[17]},{"name":"PROP_MACHINE","features":[17]},{"name":"PROP_SD","features":[17]},{"name":"PROP_START_TIME","features":[17]},{"name":"PROP_VERSION","features":[17]},{"name":"PROTECTION_LEVEL_DEFAULT","features":[17]},{"name":"PROTECTION_LEVEL_EDGERESTRICTED","features":[17]},{"name":"PROTECTION_LEVEL_RESTRICTED","features":[17]},{"name":"PROTECTION_LEVEL_UNRESTRICTED","features":[17]},{"name":"PROTOCOL_INFOA","features":[17]},{"name":"PROTOCOL_INFOW","features":[17]},{"name":"PROTOENT","features":[17]},{"name":"PROTO_IP_BBN","features":[17]},{"name":"PROTO_IP_BGP","features":[17]},{"name":"PROTO_IP_CISCO","features":[17]},{"name":"PROTO_IP_DHCP","features":[17]},{"name":"PROTO_IP_DVMRP","features":[17]},{"name":"PROTO_IP_EGP","features":[17]},{"name":"PROTO_IP_EIGRP","features":[17]},{"name":"PROTO_IP_ES_IS","features":[17]},{"name":"PROTO_IP_GGP","features":[17]},{"name":"PROTO_IP_HELLO","features":[17]},{"name":"PROTO_IP_ICMP","features":[17]},{"name":"PROTO_IP_IDPR","features":[17]},{"name":"PROTO_IP_IS_IS","features":[17]},{"name":"PROTO_IP_LOCAL","features":[17]},{"name":"PROTO_IP_NETMGMT","features":[17]},{"name":"PROTO_IP_NT_AUTOSTATIC","features":[17]},{"name":"PROTO_IP_NT_STATIC","features":[17]},{"name":"PROTO_IP_NT_STATIC_NON_DOD","features":[17]},{"name":"PROTO_IP_OSPF","features":[17]},{"name":"PROTO_IP_OTHER","features":[17]},{"name":"PROTO_IP_RIP","features":[17]},{"name":"PROTO_IP_RPL","features":[17]},{"name":"PVD_CONFIG","features":[17]},{"name":"ProcessSocketNotifications","features":[3,17,8]},{"name":"ProviderInfoAudit","features":[17]},{"name":"ProviderInfoLspCategories","features":[17]},{"name":"ProviderLevel_None","features":[17]},{"name":"ProviderLevel_Primary","features":[17]},{"name":"ProviderLevel_Secondary","features":[17]},{"name":"ProviderType_Application","features":[17]},{"name":"ProviderType_Service","features":[17]},{"name":"Q2931_IE","features":[17]},{"name":"Q2931_IE_TYPE","features":[17]},{"name":"QOS","features":[17]},{"name":"QOS_CLASS0","features":[17]},{"name":"QOS_CLASS1","features":[17]},{"name":"QOS_CLASS2","features":[17]},{"name":"QOS_CLASS3","features":[17]},{"name":"QOS_CLASS4","features":[17]},{"name":"RCVALL_IF","features":[17]},{"name":"RCVALL_IPLEVEL","features":[17]},{"name":"RCVALL_OFF","features":[17]},{"name":"RCVALL_ON","features":[17]},{"name":"RCVALL_SOCKETLEVELONLY","features":[17]},{"name":"RCVALL_VALUE","features":[17]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY","features":[17]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY_EX","features":[17]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT","features":[17]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT_EX","features":[3,17]},{"name":"REAL_TIME_NOTIFICATION_SETTING_OUTPUT","features":[17]},{"name":"RESOURCEDISPLAYTYPE_DOMAIN","features":[17]},{"name":"RESOURCEDISPLAYTYPE_FILE","features":[17]},{"name":"RESOURCEDISPLAYTYPE_GENERIC","features":[17]},{"name":"RESOURCEDISPLAYTYPE_GROUP","features":[17]},{"name":"RESOURCEDISPLAYTYPE_SERVER","features":[17]},{"name":"RESOURCEDISPLAYTYPE_SHARE","features":[17]},{"name":"RESOURCEDISPLAYTYPE_TREE","features":[17]},{"name":"RESOURCE_DISPLAY_TYPE","features":[17]},{"name":"RESULT_IS_ADDED","features":[17]},{"name":"RESULT_IS_ALIAS","features":[17]},{"name":"RESULT_IS_CHANGED","features":[17]},{"name":"RESULT_IS_DELETED","features":[17]},{"name":"RES_FIND_MULTIPLE","features":[17]},{"name":"RES_FLUSH_CACHE","features":[17]},{"name":"RES_SERVICE","features":[17]},{"name":"RES_SOFT_SEARCH","features":[17]},{"name":"RES_UNUSED_1","features":[17]},{"name":"RIORESULT","features":[17]},{"name":"RIO_BUF","features":[17]},{"name":"RIO_BUFFERID","features":[17]},{"name":"RIO_CMSG_BUFFER","features":[17]},{"name":"RIO_CORRUPT_CQ","features":[17]},{"name":"RIO_CQ","features":[17]},{"name":"RIO_EVENT_COMPLETION","features":[17]},{"name":"RIO_EXTENSION_FUNCTION_TABLE","features":[3,17]},{"name":"RIO_IOCP_COMPLETION","features":[17]},{"name":"RIO_MAX_CQ_SIZE","features":[17]},{"name":"RIO_MSG_COMMIT_ONLY","features":[17]},{"name":"RIO_MSG_DEFER","features":[17]},{"name":"RIO_MSG_DONT_NOTIFY","features":[17]},{"name":"RIO_MSG_WAITALL","features":[17]},{"name":"RIO_NOTIFICATION_COMPLETION","features":[3,17]},{"name":"RIO_NOTIFICATION_COMPLETION_TYPE","features":[17]},{"name":"RIO_RQ","features":[17]},{"name":"RM_ADD_RECEIVE_IF","features":[17]},{"name":"RM_DEL_RECEIVE_IF","features":[17]},{"name":"RM_FEC_INFO","features":[3,17]},{"name":"RM_FLUSHCACHE","features":[17]},{"name":"RM_HIGH_SPEED_INTRANET_OPT","features":[17]},{"name":"RM_LATEJOIN","features":[17]},{"name":"RM_OPTIONSBASE","features":[17]},{"name":"RM_RATE_WINDOW_SIZE","features":[17]},{"name":"RM_RECEIVER_STATISTICS","features":[17]},{"name":"RM_RECEIVER_STATS","features":[17]},{"name":"RM_SENDER_STATISTICS","features":[17]},{"name":"RM_SENDER_STATS","features":[17]},{"name":"RM_SENDER_WINDOW_ADVANCE_METHOD","features":[17]},{"name":"RM_SEND_WINDOW","features":[17]},{"name":"RM_SEND_WINDOW_ADV_RATE","features":[17]},{"name":"RM_SET_MCAST_TTL","features":[17]},{"name":"RM_SET_MESSAGE_BOUNDARY","features":[17]},{"name":"RM_SET_SEND_IF","features":[17]},{"name":"RM_USE_FEC","features":[17]},{"name":"RNRSERVICE_DELETE","features":[17]},{"name":"RNRSERVICE_DEREGISTER","features":[17]},{"name":"RNRSERVICE_REGISTER","features":[17]},{"name":"RSS_SCALABILITY_INFO","features":[3,17]},{"name":"RouteProtocolBbn","features":[17]},{"name":"RouteProtocolBgp","features":[17]},{"name":"RouteProtocolCisco","features":[17]},{"name":"RouteProtocolDhcp","features":[17]},{"name":"RouteProtocolDvmrp","features":[17]},{"name":"RouteProtocolEgp","features":[17]},{"name":"RouteProtocolEigrp","features":[17]},{"name":"RouteProtocolEsIs","features":[17]},{"name":"RouteProtocolGgp","features":[17]},{"name":"RouteProtocolHello","features":[17]},{"name":"RouteProtocolIcmp","features":[17]},{"name":"RouteProtocolIdpr","features":[17]},{"name":"RouteProtocolIsIs","features":[17]},{"name":"RouteProtocolLocal","features":[17]},{"name":"RouteProtocolNetMgmt","features":[17]},{"name":"RouteProtocolOspf","features":[17]},{"name":"RouteProtocolOther","features":[17]},{"name":"RouteProtocolRip","features":[17]},{"name":"RouteProtocolRpl","features":[17]},{"name":"RouterDiscoveryDhcp","features":[17]},{"name":"RouterDiscoveryDisabled","features":[17]},{"name":"RouterDiscoveryEnabled","features":[17]},{"name":"RouterDiscoveryUnchanged","features":[17]},{"name":"RtlEthernetAddressToStringA","features":[17]},{"name":"RtlEthernetAddressToStringW","features":[17]},{"name":"RtlEthernetStringToAddressA","features":[17]},{"name":"RtlEthernetStringToAddressW","features":[17]},{"name":"RtlIpv4AddressToStringA","features":[17]},{"name":"RtlIpv4AddressToStringExA","features":[17]},{"name":"RtlIpv4AddressToStringExW","features":[17]},{"name":"RtlIpv4AddressToStringW","features":[17]},{"name":"RtlIpv4StringToAddressA","features":[3,17]},{"name":"RtlIpv4StringToAddressExA","features":[3,17]},{"name":"RtlIpv4StringToAddressExW","features":[3,17]},{"name":"RtlIpv4StringToAddressW","features":[3,17]},{"name":"RtlIpv6AddressToStringA","features":[17]},{"name":"RtlIpv6AddressToStringExA","features":[17]},{"name":"RtlIpv6AddressToStringExW","features":[17]},{"name":"RtlIpv6AddressToStringW","features":[17]},{"name":"RtlIpv6StringToAddressA","features":[17]},{"name":"RtlIpv6StringToAddressExA","features":[17]},{"name":"RtlIpv6StringToAddressExW","features":[17]},{"name":"RtlIpv6StringToAddressW","features":[17]},{"name":"SAP_FIELD_ABSENT","features":[17]},{"name":"SAP_FIELD_ANY","features":[17]},{"name":"SAP_FIELD_ANY_AESA_REST","features":[17]},{"name":"SAP_FIELD_ANY_AESA_SEL","features":[17]},{"name":"SCOPE_ID","features":[17]},{"name":"SCOPE_LEVEL","features":[17]},{"name":"SD_BOTH","features":[17]},{"name":"SD_RECEIVE","features":[17]},{"name":"SD_SEND","features":[17]},{"name":"SECURITY_PROTOCOL_NONE","features":[17]},{"name":"SENDER_DEFAULT_LATE_JOINER_PERCENTAGE","features":[17]},{"name":"SENDER_DEFAULT_RATE_KBITS_PER_SEC","features":[17]},{"name":"SENDER_DEFAULT_WINDOW_ADV_PERCENTAGE","features":[17]},{"name":"SENDER_MAX_LATE_JOINER_PERCENTAGE","features":[17]},{"name":"SEND_RECV_FLAGS","features":[17]},{"name":"SERVENT","features":[17]},{"name":"SERVENT","features":[17]},{"name":"SERVICE_ADDRESS","features":[17]},{"name":"SERVICE_ADDRESSES","features":[17]},{"name":"SERVICE_ADDRESS_FLAG_RPC_CN","features":[17]},{"name":"SERVICE_ADDRESS_FLAG_RPC_DG","features":[17]},{"name":"SERVICE_ADDRESS_FLAG_RPC_NB","features":[17]},{"name":"SERVICE_ADD_TYPE","features":[17]},{"name":"SERVICE_ASYNC_INFO","features":[3,17]},{"name":"SERVICE_DELETE_TYPE","features":[17]},{"name":"SERVICE_DEREGISTER","features":[17]},{"name":"SERVICE_FLAG_DEFER","features":[17]},{"name":"SERVICE_FLAG_HARD","features":[17]},{"name":"SERVICE_FLUSH","features":[17]},{"name":"SERVICE_INFOA","features":[17,43]},{"name":"SERVICE_INFOW","features":[17,43]},{"name":"SERVICE_LOCAL","features":[17]},{"name":"SERVICE_MULTIPLE","features":[17]},{"name":"SERVICE_REGISTER","features":[17]},{"name":"SERVICE_RESOURCE","features":[17]},{"name":"SERVICE_SERVICE","features":[17]},{"name":"SERVICE_TYPE_INFO","features":[17]},{"name":"SERVICE_TYPE_INFO_ABSA","features":[17]},{"name":"SERVICE_TYPE_INFO_ABSW","features":[17]},{"name":"SERVICE_TYPE_VALUE","features":[17]},{"name":"SERVICE_TYPE_VALUE_ABSA","features":[17]},{"name":"SERVICE_TYPE_VALUE_ABSW","features":[17]},{"name":"SERVICE_TYPE_VALUE_CONN","features":[17]},{"name":"SERVICE_TYPE_VALUE_CONNA","features":[17]},{"name":"SERVICE_TYPE_VALUE_CONNW","features":[17]},{"name":"SERVICE_TYPE_VALUE_IPXPORTA","features":[17]},{"name":"SERVICE_TYPE_VALUE_IPXPORTW","features":[17]},{"name":"SERVICE_TYPE_VALUE_OBJECTID","features":[17]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDA","features":[17]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDW","features":[17]},{"name":"SERVICE_TYPE_VALUE_SAPID","features":[17]},{"name":"SERVICE_TYPE_VALUE_SAPIDA","features":[17]},{"name":"SERVICE_TYPE_VALUE_SAPIDW","features":[17]},{"name":"SERVICE_TYPE_VALUE_TCPPORT","features":[17]},{"name":"SERVICE_TYPE_VALUE_TCPPORTA","features":[17]},{"name":"SERVICE_TYPE_VALUE_TCPPORTW","features":[17]},{"name":"SERVICE_TYPE_VALUE_UDPPORT","features":[17]},{"name":"SERVICE_TYPE_VALUE_UDPPORTA","features":[17]},{"name":"SERVICE_TYPE_VALUE_UDPPORTW","features":[17]},{"name":"SET_SERVICE_OPERATION","features":[17]},{"name":"SET_SERVICE_PARTIAL_SUCCESS","features":[17]},{"name":"SG_CONSTRAINED_GROUP","features":[17]},{"name":"SG_UNCONSTRAINED_GROUP","features":[17]},{"name":"SIOCATMARK","features":[17]},{"name":"SIOCGHIWAT","features":[17]},{"name":"SIOCGLOWAT","features":[17]},{"name":"SIOCSHIWAT","features":[17]},{"name":"SIOCSLOWAT","features":[17]},{"name":"SIO_ABSORB_RTRALERT","features":[17]},{"name":"SIO_ACQUIRE_PORT_RESERVATION","features":[17]},{"name":"SIO_ADDRESS_LIST_CHANGE","features":[17]},{"name":"SIO_ADDRESS_LIST_QUERY","features":[17]},{"name":"SIO_ADDRESS_LIST_SORT","features":[17]},{"name":"SIO_AF_UNIX_GETPEERPID","features":[17]},{"name":"SIO_AF_UNIX_SETBINDPARENTPATH","features":[17]},{"name":"SIO_AF_UNIX_SETCONNPARENTPATH","features":[17]},{"name":"SIO_APPLY_TRANSPORT_SETTING","features":[17]},{"name":"SIO_ASSOCIATE_HANDLE","features":[17]},{"name":"SIO_ASSOCIATE_PORT_RESERVATION","features":[17]},{"name":"SIO_ASSOCIATE_PVC","features":[17]},{"name":"SIO_BASE_HANDLE","features":[17]},{"name":"SIO_BSP_HANDLE","features":[17]},{"name":"SIO_BSP_HANDLE_POLL","features":[17]},{"name":"SIO_BSP_HANDLE_SELECT","features":[17]},{"name":"SIO_CPU_AFFINITY","features":[17]},{"name":"SIO_DELETE_PEER_TARGET_NAME","features":[17]},{"name":"SIO_ENABLE_CIRCULAR_QUEUEING","features":[17]},{"name":"SIO_EXT_POLL","features":[17]},{"name":"SIO_EXT_SELECT","features":[17]},{"name":"SIO_EXT_SENDMSG","features":[17]},{"name":"SIO_FIND_ROUTE","features":[17]},{"name":"SIO_FLUSH","features":[17]},{"name":"SIO_GET_ATM_ADDRESS","features":[17]},{"name":"SIO_GET_ATM_CONNECTION_ID","features":[17]},{"name":"SIO_GET_BROADCAST_ADDRESS","features":[17]},{"name":"SIO_GET_EXTENSION_FUNCTION_POINTER","features":[17]},{"name":"SIO_GET_GROUP_QOS","features":[17]},{"name":"SIO_GET_MULTIPLE_EXTENSION_FUNCTION_POINTER","features":[17]},{"name":"SIO_GET_NUMBER_OF_ATM_DEVICES","features":[17]},{"name":"SIO_GET_QOS","features":[17]},{"name":"SIO_GET_TX_TIMESTAMP","features":[17]},{"name":"SIO_INDEX_ADD_MCAST","features":[17]},{"name":"SIO_INDEX_BIND","features":[17]},{"name":"SIO_INDEX_DEL_MCAST","features":[17]},{"name":"SIO_INDEX_MCASTIF","features":[17]},{"name":"SIO_KEEPALIVE_VALS","features":[17]},{"name":"SIO_LIMIT_BROADCASTS","features":[17]},{"name":"SIO_LOOPBACK_FAST_PATH","features":[17]},{"name":"SIO_MULTICAST_SCOPE","features":[17]},{"name":"SIO_MULTIPOINT_LOOPBACK","features":[17]},{"name":"SIO_NSP_NOTIFY_CHANGE","features":[17]},{"name":"SIO_PRIORITY_HINT","features":[17]},{"name":"SIO_QUERY_RSS_PROCESSOR_INFO","features":[17]},{"name":"SIO_QUERY_RSS_SCALABILITY_INFO","features":[17]},{"name":"SIO_QUERY_SECURITY","features":[17]},{"name":"SIO_QUERY_TARGET_PNP_HANDLE","features":[17]},{"name":"SIO_QUERY_TRANSPORT_SETTING","features":[17]},{"name":"SIO_QUERY_WFP_ALE_ENDPOINT_HANDLE","features":[17]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_CONTEXT","features":[17]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_RECORDS","features":[17]},{"name":"SIO_RCVALL","features":[17]},{"name":"SIO_RCVALL_IF","features":[17]},{"name":"SIO_RCVALL_IGMPMCAST","features":[17]},{"name":"SIO_RCVALL_MCAST","features":[17]},{"name":"SIO_RCVALL_MCAST_IF","features":[17]},{"name":"SIO_RELEASE_PORT_RESERVATION","features":[17]},{"name":"SIO_RESERVED_1","features":[17]},{"name":"SIO_RESERVED_2","features":[17]},{"name":"SIO_ROUTING_INTERFACE_CHANGE","features":[17]},{"name":"SIO_ROUTING_INTERFACE_QUERY","features":[17]},{"name":"SIO_SET_COMPATIBILITY_MODE","features":[17]},{"name":"SIO_SET_GROUP_QOS","features":[17]},{"name":"SIO_SET_PEER_TARGET_NAME","features":[17]},{"name":"SIO_SET_PRIORITY_HINT","features":[17]},{"name":"SIO_SET_QOS","features":[17]},{"name":"SIO_SET_SECURITY","features":[17]},{"name":"SIO_SET_WFP_CONNECTION_REDIRECT_RECORDS","features":[17]},{"name":"SIO_SOCKET_CLOSE_NOTIFY","features":[17]},{"name":"SIO_SOCKET_USAGE_NOTIFICATION","features":[17]},{"name":"SIO_TCP_INFO","features":[17]},{"name":"SIO_TCP_INITIAL_RTO","features":[17]},{"name":"SIO_TCP_SET_ACK_FREQUENCY","features":[17]},{"name":"SIO_TCP_SET_ICW","features":[17]},{"name":"SIO_TIMESTAMPING","features":[17]},{"name":"SIO_TRANSLATE_HANDLE","features":[17]},{"name":"SIO_UCAST_IF","features":[17]},{"name":"SIO_UDP_CONNRESET","features":[17]},{"name":"SIO_UDP_NETRESET","features":[17]},{"name":"SIZEOF_IP_OPT_ROUTERALERT","features":[17]},{"name":"SIZEOF_IP_OPT_ROUTING_HEADER","features":[17]},{"name":"SIZEOF_IP_OPT_SECURITY","features":[17]},{"name":"SIZEOF_IP_OPT_STREAMIDENTIFIER","features":[17]},{"name":"SIZEOF_IP_OPT_TIMESTAMP_HEADER","features":[17]},{"name":"SI_NETWORK","features":[17]},{"name":"SI_USER_FAILED","features":[17]},{"name":"SI_USER_NOT_SCREENED","features":[17]},{"name":"SI_USER_PASSED","features":[17]},{"name":"SNAP_CONTROL","features":[17]},{"name":"SNAP_DSAP","features":[17]},{"name":"SNAP_HEADER","features":[17]},{"name":"SNAP_OUI","features":[17]},{"name":"SNAP_SSAP","features":[17]},{"name":"SOCKADDR","features":[17]},{"name":"SOCKADDR_ATM","features":[17]},{"name":"SOCKADDR_DL","features":[17]},{"name":"SOCKADDR_IN","features":[17]},{"name":"SOCKADDR_IN6","features":[17]},{"name":"SOCKADDR_IN6_PAIR","features":[17]},{"name":"SOCKADDR_IN6_W2KSP1","features":[17]},{"name":"SOCKADDR_INET","features":[17]},{"name":"SOCKADDR_IPX","features":[17]},{"name":"SOCKADDR_IRDA","features":[17]},{"name":"SOCKADDR_NB","features":[17]},{"name":"SOCKADDR_STORAGE","features":[17]},{"name":"SOCKADDR_STORAGE_XP","features":[17]},{"name":"SOCKADDR_TP","features":[17]},{"name":"SOCKADDR_UN","features":[17]},{"name":"SOCKADDR_VNS","features":[17]},{"name":"SOCKET","features":[17]},{"name":"SOCKET_ADDRESS","features":[17]},{"name":"SOCKET_ADDRESS_LIST","features":[17]},{"name":"SOCKET_DEFAULT2_QM_POLICY","features":[17]},{"name":"SOCKET_ERROR","features":[17]},{"name":"SOCKET_INFO_CONNECTION_ENCRYPTED","features":[17]},{"name":"SOCKET_INFO_CONNECTION_IMPERSONATED","features":[17]},{"name":"SOCKET_INFO_CONNECTION_SECURED","features":[17]},{"name":"SOCKET_PEER_TARGET_NAME","features":[17]},{"name":"SOCKET_PRIORITY_HINT","features":[17]},{"name":"SOCKET_PROCESSOR_AFFINITY","features":[17,9]},{"name":"SOCKET_QUERY_IPSEC2_ABORT_CONNECTION_ON_FIELD_CHANGE","features":[17]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_MM_SA_ID","features":[17]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_QM_SA_ID","features":[17]},{"name":"SOCKET_SECURITY_PROTOCOL","features":[17]},{"name":"SOCKET_SECURITY_PROTOCOL_DEFAULT","features":[17]},{"name":"SOCKET_SECURITY_PROTOCOL_INVALID","features":[17]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC","features":[17]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC2","features":[17]},{"name":"SOCKET_SECURITY_QUERY_INFO","features":[17]},{"name":"SOCKET_SECURITY_QUERY_INFO_IPSEC2","features":[17]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE","features":[17]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE_IPSEC2","features":[17]},{"name":"SOCKET_SECURITY_SETTINGS","features":[17]},{"name":"SOCKET_SECURITY_SETTINGS_IPSEC","features":[17]},{"name":"SOCKET_SETTINGS_ALLOW_INSECURE","features":[17]},{"name":"SOCKET_SETTINGS_GUARANTEE_ENCRYPTION","features":[17]},{"name":"SOCKET_SETTINGS_IPSEC_ALLOW_FIRST_INBOUND_PKT_UNENCRYPTED","features":[17]},{"name":"SOCKET_SETTINGS_IPSEC_OPTIONAL_PEER_NAME_VERIFICATION","features":[17]},{"name":"SOCKET_SETTINGS_IPSEC_PEER_NAME_IS_RAW_FORMAT","features":[17]},{"name":"SOCKET_SETTINGS_IPSEC_SKIP_FILTER_INSTANTIATION","features":[17]},{"name":"SOCKET_USAGE_TYPE","features":[17]},{"name":"SOCK_DGRAM","features":[17]},{"name":"SOCK_NOTIFY_EVENT_ERR","features":[17]},{"name":"SOCK_NOTIFY_EVENT_HANGUP","features":[17]},{"name":"SOCK_NOTIFY_EVENT_IN","features":[17]},{"name":"SOCK_NOTIFY_EVENT_OUT","features":[17]},{"name":"SOCK_NOTIFY_EVENT_REMOVE","features":[17]},{"name":"SOCK_NOTIFY_OP_DISABLE","features":[17]},{"name":"SOCK_NOTIFY_OP_ENABLE","features":[17]},{"name":"SOCK_NOTIFY_OP_NONE","features":[17]},{"name":"SOCK_NOTIFY_OP_REMOVE","features":[17]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_HANGUP","features":[17]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_IN","features":[17]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_NONE","features":[17]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_OUT","features":[17]},{"name":"SOCK_NOTIFY_REGISTRATION","features":[17]},{"name":"SOCK_NOTIFY_TRIGGER_EDGE","features":[17]},{"name":"SOCK_NOTIFY_TRIGGER_LEVEL","features":[17]},{"name":"SOCK_NOTIFY_TRIGGER_ONESHOT","features":[17]},{"name":"SOCK_NOTIFY_TRIGGER_PERSISTENT","features":[17]},{"name":"SOCK_RAW","features":[17]},{"name":"SOCK_RDM","features":[17]},{"name":"SOCK_SEQPACKET","features":[17]},{"name":"SOCK_STREAM","features":[17]},{"name":"SOL_IP","features":[17]},{"name":"SOL_IPV6","features":[17]},{"name":"SOL_IRLMP","features":[17]},{"name":"SOL_SOCKET","features":[17]},{"name":"SOMAXCONN","features":[17]},{"name":"SO_ACCEPTCONN","features":[17]},{"name":"SO_BROADCAST","features":[17]},{"name":"SO_BSP_STATE","features":[17]},{"name":"SO_COMPARTMENT_ID","features":[17]},{"name":"SO_CONDITIONAL_ACCEPT","features":[17]},{"name":"SO_CONNDATA","features":[17]},{"name":"SO_CONNDATALEN","features":[17]},{"name":"SO_CONNECT_TIME","features":[17]},{"name":"SO_CONNOPT","features":[17]},{"name":"SO_CONNOPTLEN","features":[17]},{"name":"SO_DEBUG","features":[17]},{"name":"SO_DISCDATA","features":[17]},{"name":"SO_DISCDATALEN","features":[17]},{"name":"SO_DISCOPT","features":[17]},{"name":"SO_DISCOPTLEN","features":[17]},{"name":"SO_DONTLINGER","features":[17]},{"name":"SO_DONTROUTE","features":[17]},{"name":"SO_ERROR","features":[17]},{"name":"SO_EXCLUSIVEADDRUSE","features":[17]},{"name":"SO_GROUP_ID","features":[17]},{"name":"SO_GROUP_PRIORITY","features":[17]},{"name":"SO_KEEPALIVE","features":[17]},{"name":"SO_LINGER","features":[17]},{"name":"SO_MAXDG","features":[17]},{"name":"SO_MAXPATHDG","features":[17]},{"name":"SO_MAX_MSG_SIZE","features":[17]},{"name":"SO_OOBINLINE","features":[17]},{"name":"SO_OPENTYPE","features":[17]},{"name":"SO_ORIGINAL_DST","features":[17]},{"name":"SO_PAUSE_ACCEPT","features":[17]},{"name":"SO_PORT_SCALABILITY","features":[17]},{"name":"SO_PROTOCOL_INFO","features":[17]},{"name":"SO_PROTOCOL_INFOA","features":[17]},{"name":"SO_PROTOCOL_INFOW","features":[17]},{"name":"SO_RANDOMIZE_PORT","features":[17]},{"name":"SO_RCVBUF","features":[17]},{"name":"SO_RCVLOWAT","features":[17]},{"name":"SO_RCVTIMEO","features":[17]},{"name":"SO_REUSEADDR","features":[17]},{"name":"SO_REUSE_MULTICASTPORT","features":[17]},{"name":"SO_REUSE_UNICASTPORT","features":[17]},{"name":"SO_SNDBUF","features":[17]},{"name":"SO_SNDLOWAT","features":[17]},{"name":"SO_SNDTIMEO","features":[17]},{"name":"SO_SYNCHRONOUS_ALERT","features":[17]},{"name":"SO_SYNCHRONOUS_NONALERT","features":[17]},{"name":"SO_TIMESTAMP","features":[17]},{"name":"SO_TIMESTAMP_ID","features":[17]},{"name":"SO_TYPE","features":[17]},{"name":"SO_UPDATE_ACCEPT_CONTEXT","features":[17]},{"name":"SO_UPDATE_CONNECT_CONTEXT","features":[17]},{"name":"SO_USELOOPBACK","features":[17]},{"name":"SYSTEM_CRITICAL_SOCKET","features":[17]},{"name":"ScopeLevelAdmin","features":[17]},{"name":"ScopeLevelCount","features":[17]},{"name":"ScopeLevelGlobal","features":[17]},{"name":"ScopeLevelInterface","features":[17]},{"name":"ScopeLevelLink","features":[17]},{"name":"ScopeLevelOrganization","features":[17]},{"name":"ScopeLevelSite","features":[17]},{"name":"ScopeLevelSubnet","features":[17]},{"name":"SetAddrInfoExA","features":[3,17,43,8]},{"name":"SetAddrInfoExW","features":[3,17,43,8]},{"name":"SetServiceA","features":[3,17,43]},{"name":"SetServiceW","features":[3,17,43]},{"name":"SetSocketMediaStreamingMode","features":[3,17]},{"name":"SocketMaximumPriorityHintType","features":[17]},{"name":"SocketPriorityHintLow","features":[17]},{"name":"SocketPriorityHintNormal","features":[17]},{"name":"SocketPriorityHintVeryLow","features":[17]},{"name":"TCPSTATE","features":[17]},{"name":"TCPSTATE_CLOSED","features":[17]},{"name":"TCPSTATE_CLOSE_WAIT","features":[17]},{"name":"TCPSTATE_CLOSING","features":[17]},{"name":"TCPSTATE_ESTABLISHED","features":[17]},{"name":"TCPSTATE_FIN_WAIT_1","features":[17]},{"name":"TCPSTATE_FIN_WAIT_2","features":[17]},{"name":"TCPSTATE_LAST_ACK","features":[17]},{"name":"TCPSTATE_LISTEN","features":[17]},{"name":"TCPSTATE_MAX","features":[17]},{"name":"TCPSTATE_SYN_RCVD","features":[17]},{"name":"TCPSTATE_SYN_SENT","features":[17]},{"name":"TCPSTATE_TIME_WAIT","features":[17]},{"name":"TCP_ACK_FREQUENCY_PARAMETERS","features":[17]},{"name":"TCP_ATMARK","features":[17]},{"name":"TCP_BSDURGENT","features":[17]},{"name":"TCP_CONGESTION_ALGORITHM","features":[17]},{"name":"TCP_DELAY_FIN_ACK","features":[17]},{"name":"TCP_EXPEDITED_1122","features":[17]},{"name":"TCP_FAIL_CONNECT_ON_ICMP_ERROR","features":[17]},{"name":"TCP_FASTOPEN","features":[17]},{"name":"TCP_HDR","features":[17]},{"name":"TCP_ICMP_ERROR_INFO","features":[17]},{"name":"TCP_ICW_LEVEL","features":[17]},{"name":"TCP_ICW_LEVEL_AGGRESSIVE","features":[17]},{"name":"TCP_ICW_LEVEL_COMPAT","features":[17]},{"name":"TCP_ICW_LEVEL_DEFAULT","features":[17]},{"name":"TCP_ICW_LEVEL_EXPERIMENTAL","features":[17]},{"name":"TCP_ICW_LEVEL_HIGH","features":[17]},{"name":"TCP_ICW_LEVEL_MAX","features":[17]},{"name":"TCP_ICW_LEVEL_VERY_HIGH","features":[17]},{"name":"TCP_ICW_PARAMETERS","features":[17]},{"name":"TCP_INFO_v0","features":[3,17]},{"name":"TCP_INFO_v1","features":[3,17]},{"name":"TCP_INITIAL_RTO_DEFAULT_MAX_SYN_RETRANSMISSIONS","features":[17]},{"name":"TCP_INITIAL_RTO_DEFAULT_RTT","features":[17]},{"name":"TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS","features":[17]},{"name":"TCP_INITIAL_RTO_PARAMETERS","features":[17]},{"name":"TCP_INITIAL_RTO_UNSPECIFIED_MAX_SYN_RETRANSMISSIONS","features":[17]},{"name":"TCP_KEEPALIVE","features":[17]},{"name":"TCP_KEEPCNT","features":[17]},{"name":"TCP_KEEPIDLE","features":[17]},{"name":"TCP_KEEPINTVL","features":[17]},{"name":"TCP_MAXRT","features":[17]},{"name":"TCP_MAXRTMS","features":[17]},{"name":"TCP_MAXSEG","features":[17]},{"name":"TCP_NODELAY","features":[17]},{"name":"TCP_NOSYNRETRIES","features":[17]},{"name":"TCP_NOURG","features":[17]},{"name":"TCP_OFFLOAD_NOT_PREFERRED","features":[17]},{"name":"TCP_OFFLOAD_NO_PREFERENCE","features":[17]},{"name":"TCP_OFFLOAD_PREFERENCE","features":[17]},{"name":"TCP_OFFLOAD_PREFERRED","features":[17]},{"name":"TCP_OPT_FASTOPEN","features":[17]},{"name":"TCP_OPT_MSS","features":[17]},{"name":"TCP_OPT_SACK","features":[17]},{"name":"TCP_OPT_SACK_PERMITTED","features":[17]},{"name":"TCP_OPT_TS","features":[17]},{"name":"TCP_OPT_UNKNOWN","features":[17]},{"name":"TCP_OPT_WS","features":[17]},{"name":"TCP_STDURG","features":[17]},{"name":"TCP_TIMESTAMPS","features":[17]},{"name":"TF_DISCONNECT","features":[17]},{"name":"TF_REUSE_SOCKET","features":[17]},{"name":"TF_USE_DEFAULT_WORKER","features":[17]},{"name":"TF_USE_KERNEL_APC","features":[17]},{"name":"TF_USE_SYSTEM_THREAD","features":[17]},{"name":"TF_WRITE_BEHIND","features":[17]},{"name":"TH_ACK","features":[17]},{"name":"TH_CWR","features":[17]},{"name":"TH_ECE","features":[17]},{"name":"TH_FIN","features":[17]},{"name":"TH_NETDEV","features":[17]},{"name":"TH_OPT_EOL","features":[17]},{"name":"TH_OPT_FASTOPEN","features":[17]},{"name":"TH_OPT_MSS","features":[17]},{"name":"TH_OPT_NOP","features":[17]},{"name":"TH_OPT_SACK","features":[17]},{"name":"TH_OPT_SACK_PERMITTED","features":[17]},{"name":"TH_OPT_TS","features":[17]},{"name":"TH_OPT_WS","features":[17]},{"name":"TH_PSH","features":[17]},{"name":"TH_RST","features":[17]},{"name":"TH_SYN","features":[17]},{"name":"TH_TAPI","features":[17]},{"name":"TH_URG","features":[17]},{"name":"TIMESTAMPING_CONFIG","features":[17]},{"name":"TIMESTAMPING_FLAG_RX","features":[17]},{"name":"TIMESTAMPING_FLAG_TX","features":[17]},{"name":"TIMEVAL","features":[17]},{"name":"TNS_PLAN_CARRIER_ID_CODE","features":[17]},{"name":"TNS_TYPE_NATIONAL","features":[17]},{"name":"TP_DISCONNECT","features":[17]},{"name":"TP_ELEMENT_EOP","features":[17]},{"name":"TP_ELEMENT_FILE","features":[17]},{"name":"TP_ELEMENT_MEMORY","features":[17]},{"name":"TP_REUSE_SOCKET","features":[17]},{"name":"TP_USE_DEFAULT_WORKER","features":[17]},{"name":"TP_USE_KERNEL_APC","features":[17]},{"name":"TP_USE_SYSTEM_THREAD","features":[17]},{"name":"TRANSMIT_FILE_BUFFERS","features":[17]},{"name":"TRANSMIT_PACKETS_ELEMENT","features":[3,17]},{"name":"TRANSPORT_SETTING_ID","features":[17]},{"name":"TR_END_TO_END","features":[17]},{"name":"TR_NOIND","features":[17]},{"name":"TR_NO_END_TO_END","features":[17]},{"name":"TT_CBR","features":[17]},{"name":"TT_NOIND","features":[17]},{"name":"TT_VBR","features":[17]},{"name":"TUNNEL_SUB_TYPE","features":[17]},{"name":"TUNNEL_SUB_TYPE_CP","features":[17]},{"name":"TUNNEL_SUB_TYPE_HA","features":[17]},{"name":"TUNNEL_SUB_TYPE_IPTLS","features":[17]},{"name":"TUNNEL_SUB_TYPE_NONE","features":[17]},{"name":"TransmitFile","features":[3,17,8]},{"name":"UDP_CHECKSUM_COVERAGE","features":[17]},{"name":"UDP_COALESCED_INFO","features":[17]},{"name":"UDP_NOCHECKSUM","features":[17]},{"name":"UDP_RECV_MAX_COALESCED_SIZE","features":[17]},{"name":"UDP_SEND_MSG_SIZE","features":[17]},{"name":"UNIX_PATH_MAX","features":[17]},{"name":"UP_P2MP","features":[17]},{"name":"UP_P2P","features":[17]},{"name":"VLAN_TAG","features":[17]},{"name":"VNSPROTO_IPC","features":[17]},{"name":"VNSPROTO_RELIABLE_IPC","features":[17]},{"name":"VNSPROTO_SPP","features":[17]},{"name":"WCE_AF_IRDA","features":[17]},{"name":"WCE_DEVICELIST","features":[17]},{"name":"WCE_IRDA_DEVICE_INFO","features":[17]},{"name":"WCE_PF_IRDA","features":[17]},{"name":"WINDOWS_AF_IRDA","features":[17]},{"name":"WINDOWS_DEVICELIST","features":[17]},{"name":"WINDOWS_IAS_QUERY","features":[17]},{"name":"WINDOWS_IAS_SET","features":[17]},{"name":"WINDOWS_IRDA_DEVICE_INFO","features":[17]},{"name":"WINDOWS_PF_IRDA","features":[17]},{"name":"WINSOCK_SHUTDOWN_HOW","features":[17]},{"name":"WINSOCK_SOCKET_TYPE","features":[17]},{"name":"WPUCompleteOverlappedRequest","features":[3,17,8]},{"name":"WSAAccept","features":[17]},{"name":"WSAAddressToStringA","features":[17]},{"name":"WSAAddressToStringW","features":[17]},{"name":"WSAAdvertiseProvider","features":[3,17,43]},{"name":"WSAAsyncGetHostByAddr","features":[3,17]},{"name":"WSAAsyncGetHostByName","features":[3,17]},{"name":"WSAAsyncGetProtoByName","features":[3,17]},{"name":"WSAAsyncGetProtoByNumber","features":[3,17]},{"name":"WSAAsyncGetServByName","features":[3,17]},{"name":"WSAAsyncGetServByPort","features":[3,17]},{"name":"WSAAsyncSelect","features":[3,17]},{"name":"WSABASEERR","features":[17]},{"name":"WSABUF","features":[17]},{"name":"WSACOMPLETION","features":[3,17,8]},{"name":"WSACOMPLETIONTYPE","features":[17]},{"name":"WSACancelAsyncRequest","features":[3,17]},{"name":"WSACancelBlockingCall","features":[17]},{"name":"WSACleanup","features":[17]},{"name":"WSACloseEvent","features":[3,17]},{"name":"WSAConnect","features":[17]},{"name":"WSAConnectByList","features":[3,17,8]},{"name":"WSAConnectByNameA","features":[3,17,8]},{"name":"WSAConnectByNameW","features":[3,17,8]},{"name":"WSACreateEvent","features":[17]},{"name":"WSADATA","features":[17]},{"name":"WSADATA","features":[17]},{"name":"WSADESCRIPTION_LEN","features":[17]},{"name":"WSADeleteSocketPeerTargetName","features":[3,17,8]},{"name":"WSADuplicateSocketA","features":[17]},{"name":"WSADuplicateSocketW","features":[17]},{"name":"WSAEACCES","features":[17]},{"name":"WSAEADDRINUSE","features":[17]},{"name":"WSAEADDRNOTAVAIL","features":[17]},{"name":"WSAEAFNOSUPPORT","features":[17]},{"name":"WSAEALREADY","features":[17]},{"name":"WSAEBADF","features":[17]},{"name":"WSAECANCELLED","features":[17]},{"name":"WSAECOMPARATOR","features":[17]},{"name":"WSAECONNABORTED","features":[17]},{"name":"WSAECONNREFUSED","features":[17]},{"name":"WSAECONNRESET","features":[17]},{"name":"WSAEDESTADDRREQ","features":[17]},{"name":"WSAEDISCON","features":[17]},{"name":"WSAEDQUOT","features":[17]},{"name":"WSAEFAULT","features":[17]},{"name":"WSAEHOSTDOWN","features":[17]},{"name":"WSAEHOSTUNREACH","features":[17]},{"name":"WSAEINPROGRESS","features":[17]},{"name":"WSAEINTR","features":[17]},{"name":"WSAEINVAL","features":[17]},{"name":"WSAEINVALIDPROCTABLE","features":[17]},{"name":"WSAEINVALIDPROVIDER","features":[17]},{"name":"WSAEISCONN","features":[17]},{"name":"WSAELOOP","features":[17]},{"name":"WSAEMFILE","features":[17]},{"name":"WSAEMSGSIZE","features":[17]},{"name":"WSAENAMETOOLONG","features":[17]},{"name":"WSAENETDOWN","features":[17]},{"name":"WSAENETRESET","features":[17]},{"name":"WSAENETUNREACH","features":[17]},{"name":"WSAENOBUFS","features":[17]},{"name":"WSAENOMORE","features":[17]},{"name":"WSAENOPROTOOPT","features":[17]},{"name":"WSAENOTCONN","features":[17]},{"name":"WSAENOTEMPTY","features":[17]},{"name":"WSAENOTSOCK","features":[17]},{"name":"WSAEOPNOTSUPP","features":[17]},{"name":"WSAEPFNOSUPPORT","features":[17]},{"name":"WSAEPROCLIM","features":[17]},{"name":"WSAEPROTONOSUPPORT","features":[17]},{"name":"WSAEPROTOTYPE","features":[17]},{"name":"WSAEPROVIDERFAILEDINIT","features":[17]},{"name":"WSAEREFUSED","features":[17]},{"name":"WSAEREMOTE","features":[17]},{"name":"WSAESETSERVICEOP","features":[17]},{"name":"WSAESHUTDOWN","features":[17]},{"name":"WSAESOCKTNOSUPPORT","features":[17]},{"name":"WSAESTALE","features":[17]},{"name":"WSAETIMEDOUT","features":[17]},{"name":"WSAETOOMANYREFS","features":[17]},{"name":"WSAEUSERS","features":[17]},{"name":"WSAEVENT","features":[17]},{"name":"WSAEWOULDBLOCK","features":[17]},{"name":"WSAEnumNameSpaceProvidersA","features":[3,17]},{"name":"WSAEnumNameSpaceProvidersExA","features":[3,17,43]},{"name":"WSAEnumNameSpaceProvidersExW","features":[3,17,43]},{"name":"WSAEnumNameSpaceProvidersW","features":[3,17]},{"name":"WSAEnumNetworkEvents","features":[17]},{"name":"WSAEnumProtocolsA","features":[17]},{"name":"WSAEnumProtocolsW","features":[17]},{"name":"WSAEventSelect","features":[17]},{"name":"WSAGetLastError","features":[17]},{"name":"WSAGetOverlappedResult","features":[3,17,8]},{"name":"WSAGetQOSByName","features":[3,17]},{"name":"WSAGetServiceClassInfoA","features":[17]},{"name":"WSAGetServiceClassInfoW","features":[17]},{"name":"WSAGetServiceClassNameByClassIdA","features":[17]},{"name":"WSAGetServiceClassNameByClassIdW","features":[17]},{"name":"WSAHOST_NOT_FOUND","features":[17]},{"name":"WSAHtonl","features":[17]},{"name":"WSAHtons","features":[17]},{"name":"WSAID_ACCEPTEX","features":[17]},{"name":"WSAID_CONNECTEX","features":[17]},{"name":"WSAID_DISCONNECTEX","features":[17]},{"name":"WSAID_GETACCEPTEXSOCKADDRS","features":[17]},{"name":"WSAID_MULTIPLE_RIO","features":[17]},{"name":"WSAID_TRANSMITFILE","features":[17]},{"name":"WSAID_TRANSMITPACKETS","features":[17]},{"name":"WSAID_WSAPOLL","features":[17]},{"name":"WSAID_WSARECVMSG","features":[17]},{"name":"WSAID_WSASENDMSG","features":[17]},{"name":"WSAImpersonateSocketPeer","features":[17]},{"name":"WSAInstallServiceClassA","features":[17]},{"name":"WSAInstallServiceClassW","features":[17]},{"name":"WSAIoctl","features":[3,17,8]},{"name":"WSAIsBlocking","features":[3,17]},{"name":"WSAJoinLeaf","features":[17]},{"name":"WSALookupServiceBeginA","features":[3,17,43]},{"name":"WSALookupServiceBeginW","features":[3,17,43]},{"name":"WSALookupServiceEnd","features":[3,17]},{"name":"WSALookupServiceNextA","features":[3,17,43]},{"name":"WSALookupServiceNextW","features":[3,17,43]},{"name":"WSAMSG","features":[17]},{"name":"WSANAMESPACE_INFOA","features":[3,17]},{"name":"WSANAMESPACE_INFOEXA","features":[3,17,43]},{"name":"WSANAMESPACE_INFOEXW","features":[3,17,43]},{"name":"WSANAMESPACE_INFOW","features":[3,17]},{"name":"WSANETWORKEVENTS","features":[17]},{"name":"WSANOTINITIALISED","features":[17]},{"name":"WSANO_DATA","features":[17]},{"name":"WSANO_RECOVERY","features":[17]},{"name":"WSANSCLASSINFOA","features":[17]},{"name":"WSANSCLASSINFOW","features":[17]},{"name":"WSANSPIoctl","features":[3,17,8]},{"name":"WSANtohl","features":[17]},{"name":"WSANtohs","features":[17]},{"name":"WSAPOLLDATA","features":[17]},{"name":"WSAPOLLFD","features":[17]},{"name":"WSAPOLL_EVENT_FLAGS","features":[17]},{"name":"WSAPROTOCOLCHAIN","features":[17]},{"name":"WSAPROTOCOL_INFOA","features":[17]},{"name":"WSAPROTOCOL_INFOW","features":[17]},{"name":"WSAPROTOCOL_LEN","features":[17]},{"name":"WSAPoll","features":[17]},{"name":"WSAProviderCompleteAsyncCall","features":[3,17]},{"name":"WSAProviderConfigChange","features":[3,17,8]},{"name":"WSAQUERYSET2A","features":[17,43]},{"name":"WSAQUERYSET2W","features":[17,43]},{"name":"WSAQUERYSETA","features":[17,43]},{"name":"WSAQUERYSETW","features":[17,43]},{"name":"WSAQuerySocketSecurity","features":[3,17,8]},{"name":"WSARecv","features":[3,17,8]},{"name":"WSARecvDisconnect","features":[17]},{"name":"WSARecvEx","features":[17]},{"name":"WSARecvFrom","features":[3,17,8]},{"name":"WSARemoveServiceClass","features":[17]},{"name":"WSAResetEvent","features":[3,17]},{"name":"WSARevertImpersonation","features":[17]},{"name":"WSASENDMSG","features":[3,17,8]},{"name":"WSASERVICECLASSINFOA","features":[17]},{"name":"WSASERVICECLASSINFOW","features":[17]},{"name":"WSASERVICE_NOT_FOUND","features":[17]},{"name":"WSASYSCALLFAILURE","features":[17]},{"name":"WSASYSNOTREADY","features":[17]},{"name":"WSASYS_STATUS_LEN","features":[17]},{"name":"WSASend","features":[3,17,8]},{"name":"WSASendDisconnect","features":[17]},{"name":"WSASendMsg","features":[3,17,8]},{"name":"WSASendTo","features":[3,17,8]},{"name":"WSASetBlockingHook","features":[3,17]},{"name":"WSASetEvent","features":[3,17]},{"name":"WSASetLastError","features":[17]},{"name":"WSASetServiceA","features":[17,43]},{"name":"WSASetServiceW","features":[17,43]},{"name":"WSASetSocketPeerTargetName","features":[3,17,8]},{"name":"WSASetSocketSecurity","features":[3,17,8]},{"name":"WSASocketA","features":[17]},{"name":"WSASocketW","features":[17]},{"name":"WSAStartup","features":[17]},{"name":"WSAStringToAddressA","features":[17]},{"name":"WSAStringToAddressW","features":[17]},{"name":"WSATHREADID","features":[3,17]},{"name":"WSATRY_AGAIN","features":[17]},{"name":"WSATYPE_NOT_FOUND","features":[17]},{"name":"WSAUnadvertiseProvider","features":[17]},{"name":"WSAUnhookBlockingHook","features":[17]},{"name":"WSAVERNOTSUPPORTED","features":[17]},{"name":"WSAVERSION","features":[17]},{"name":"WSAWaitForMultipleEvents","features":[3,17]},{"name":"WSA_COMPATIBILITY_BEHAVIOR_ID","features":[17]},{"name":"WSA_COMPATIBILITY_MODE","features":[17]},{"name":"WSA_ERROR","features":[17]},{"name":"WSA_E_CANCELLED","features":[17]},{"name":"WSA_E_NO_MORE","features":[17]},{"name":"WSA_FLAG_ACCESS_SYSTEM_SECURITY","features":[17]},{"name":"WSA_FLAG_MULTIPOINT_C_LEAF","features":[17]},{"name":"WSA_FLAG_MULTIPOINT_C_ROOT","features":[17]},{"name":"WSA_FLAG_MULTIPOINT_D_LEAF","features":[17]},{"name":"WSA_FLAG_MULTIPOINT_D_ROOT","features":[17]},{"name":"WSA_FLAG_NO_HANDLE_INHERIT","features":[17]},{"name":"WSA_FLAG_OVERLAPPED","features":[17]},{"name":"WSA_FLAG_REGISTERED_IO","features":[17]},{"name":"WSA_INFINITE","features":[17]},{"name":"WSA_INVALID_EVENT","features":[17]},{"name":"WSA_INVALID_HANDLE","features":[17]},{"name":"WSA_INVALID_PARAMETER","features":[17]},{"name":"WSA_IO_INCOMPLETE","features":[17]},{"name":"WSA_IO_PENDING","features":[17]},{"name":"WSA_IPSEC_NAME_POLICY_ERROR","features":[17]},{"name":"WSA_MAXIMUM_WAIT_EVENTS","features":[17]},{"name":"WSA_NOT_ENOUGH_MEMORY","features":[17]},{"name":"WSA_OPERATION_ABORTED","features":[17]},{"name":"WSA_QOS_ADMISSION_FAILURE","features":[17]},{"name":"WSA_QOS_BAD_OBJECT","features":[17]},{"name":"WSA_QOS_BAD_STYLE","features":[17]},{"name":"WSA_QOS_EFILTERCOUNT","features":[17]},{"name":"WSA_QOS_EFILTERSTYLE","features":[17]},{"name":"WSA_QOS_EFILTERTYPE","features":[17]},{"name":"WSA_QOS_EFLOWCOUNT","features":[17]},{"name":"WSA_QOS_EFLOWDESC","features":[17]},{"name":"WSA_QOS_EFLOWSPEC","features":[17]},{"name":"WSA_QOS_EOBJLENGTH","features":[17]},{"name":"WSA_QOS_EPOLICYOBJ","features":[17]},{"name":"WSA_QOS_EPROVSPECBUF","features":[17]},{"name":"WSA_QOS_EPSFILTERSPEC","features":[17]},{"name":"WSA_QOS_EPSFLOWSPEC","features":[17]},{"name":"WSA_QOS_ESDMODEOBJ","features":[17]},{"name":"WSA_QOS_ESERVICETYPE","features":[17]},{"name":"WSA_QOS_ESHAPERATEOBJ","features":[17]},{"name":"WSA_QOS_EUNKOWNPSOBJ","features":[17]},{"name":"WSA_QOS_GENERIC_ERROR","features":[17]},{"name":"WSA_QOS_NO_RECEIVERS","features":[17]},{"name":"WSA_QOS_NO_SENDERS","features":[17]},{"name":"WSA_QOS_POLICY_FAILURE","features":[17]},{"name":"WSA_QOS_RECEIVERS","features":[17]},{"name":"WSA_QOS_REQUEST_CONFIRMED","features":[17]},{"name":"WSA_QOS_RESERVED_PETYPE","features":[17]},{"name":"WSA_QOS_SENDERS","features":[17]},{"name":"WSA_QOS_TRAFFIC_CTRL_ERROR","features":[17]},{"name":"WSA_SECURE_HOST_NOT_FOUND","features":[17]},{"name":"WSA_WAIT_EVENT_0","features":[17]},{"name":"WSA_WAIT_FAILED","features":[17]},{"name":"WSA_WAIT_IO_COMPLETION","features":[17]},{"name":"WSA_WAIT_TIMEOUT","features":[17]},{"name":"WSCDeinstallProvider","features":[17]},{"name":"WSCDeinstallProvider32","features":[17]},{"name":"WSCEnableNSProvider","features":[3,17]},{"name":"WSCEnableNSProvider32","features":[3,17]},{"name":"WSCEnumNameSpaceProviders32","features":[3,17]},{"name":"WSCEnumNameSpaceProvidersEx32","features":[3,17,43]},{"name":"WSCEnumProtocols","features":[17]},{"name":"WSCEnumProtocols32","features":[17]},{"name":"WSCGetApplicationCategory","features":[17]},{"name":"WSCGetProviderInfo","features":[17]},{"name":"WSCGetProviderInfo32","features":[17]},{"name":"WSCGetProviderPath","features":[17]},{"name":"WSCGetProviderPath32","features":[17]},{"name":"WSCInstallNameSpace","features":[17]},{"name":"WSCInstallNameSpace32","features":[17]},{"name":"WSCInstallNameSpaceEx","features":[17,43]},{"name":"WSCInstallNameSpaceEx32","features":[17,43]},{"name":"WSCInstallProvider","features":[17]},{"name":"WSCInstallProvider64_32","features":[17]},{"name":"WSCInstallProviderAndChains64_32","features":[17]},{"name":"WSCSetApplicationCategory","features":[17]},{"name":"WSCSetProviderInfo","features":[17]},{"name":"WSCSetProviderInfo32","features":[17]},{"name":"WSCUnInstallNameSpace","features":[17]},{"name":"WSCUnInstallNameSpace32","features":[17]},{"name":"WSCUpdateProvider","features":[17]},{"name":"WSCUpdateProvider32","features":[17]},{"name":"WSCWriteNameSpaceOrder","features":[17]},{"name":"WSCWriteNameSpaceOrder32","features":[17]},{"name":"WSCWriteProviderOrder","features":[17]},{"name":"WSCWriteProviderOrder32","features":[17]},{"name":"WSC_PROVIDER_AUDIT_INFO","features":[17]},{"name":"WSC_PROVIDER_INFO_TYPE","features":[17]},{"name":"WSK_SO_BASE","features":[17]},{"name":"WSPDATA","features":[17]},{"name":"WSPDESCRIPTION_LEN","features":[17]},{"name":"WSPPROC_TABLE","features":[3,17,8]},{"name":"WSPUPCALLTABLE","features":[3,17]},{"name":"WSS_OPERATION_IN_PROGRESS","features":[17]},{"name":"WsaBehaviorAll","features":[17]},{"name":"WsaBehaviorAutoTuning","features":[17]},{"name":"WsaBehaviorReceiveBuffering","features":[17]},{"name":"XP1_CONNECTIONLESS","features":[17]},{"name":"XP1_CONNECT_DATA","features":[17]},{"name":"XP1_DISCONNECT_DATA","features":[17]},{"name":"XP1_EXPEDITED_DATA","features":[17]},{"name":"XP1_GRACEFUL_CLOSE","features":[17]},{"name":"XP1_GUARANTEED_DELIVERY","features":[17]},{"name":"XP1_GUARANTEED_ORDER","features":[17]},{"name":"XP1_IFS_HANDLES","features":[17]},{"name":"XP1_INTERRUPT","features":[17]},{"name":"XP1_MESSAGE_ORIENTED","features":[17]},{"name":"XP1_MULTIPOINT_CONTROL_PLANE","features":[17]},{"name":"XP1_MULTIPOINT_DATA_PLANE","features":[17]},{"name":"XP1_PARTIAL_MESSAGE","features":[17]},{"name":"XP1_PSEUDO_STREAM","features":[17]},{"name":"XP1_QOS_SUPPORTED","features":[17]},{"name":"XP1_SAN_SUPPORT_SDP","features":[17]},{"name":"XP1_SUPPORT_BROADCAST","features":[17]},{"name":"XP1_SUPPORT_MULTIPOINT","features":[17]},{"name":"XP1_UNI_RECV","features":[17]},{"name":"XP1_UNI_SEND","features":[17]},{"name":"XP_BANDWIDTH_ALLOCATION","features":[17]},{"name":"XP_CONNECTIONLESS","features":[17]},{"name":"XP_CONNECT_DATA","features":[17]},{"name":"XP_DISCONNECT_DATA","features":[17]},{"name":"XP_ENCRYPTS","features":[17]},{"name":"XP_EXPEDITED_DATA","features":[17]},{"name":"XP_FRAGMENTATION","features":[17]},{"name":"XP_GRACEFUL_CLOSE","features":[17]},{"name":"XP_GUARANTEED_DELIVERY","features":[17]},{"name":"XP_GUARANTEED_ORDER","features":[17]},{"name":"XP_MESSAGE_ORIENTED","features":[17]},{"name":"XP_PSEUDO_STREAM","features":[17]},{"name":"XP_SUPPORTS_BROADCAST","features":[17]},{"name":"XP_SUPPORTS_MULTICAST","features":[17]},{"name":"_BIG_ENDIAN","features":[17]},{"name":"_LITTLE_ENDIAN","features":[17]},{"name":"_PDP_ENDIAN","features":[17]},{"name":"_SS_MAXSIZE","features":[17]},{"name":"__WSAFDIsSet","features":[17]},{"name":"accept","features":[17]},{"name":"bind","features":[17]},{"name":"closesocket","features":[17]},{"name":"connect","features":[17]},{"name":"eWINDOW_ADVANCE_METHOD","features":[17]},{"name":"freeaddrinfo","features":[17]},{"name":"getaddrinfo","features":[17]},{"name":"gethostbyaddr","features":[17]},{"name":"gethostbyname","features":[17]},{"name":"gethostname","features":[17]},{"name":"getnameinfo","features":[17]},{"name":"getpeername","features":[17]},{"name":"getprotobyname","features":[17]},{"name":"getprotobynumber","features":[17]},{"name":"getservbyname","features":[17]},{"name":"getservbyport","features":[17]},{"name":"getsockname","features":[17]},{"name":"getsockopt","features":[17]},{"name":"htonl","features":[17]},{"name":"htons","features":[17]},{"name":"inet_addr","features":[17]},{"name":"inet_ntoa","features":[17]},{"name":"inet_ntop","features":[17]},{"name":"inet_pton","features":[17]},{"name":"ioctlsocket","features":[17]},{"name":"listen","features":[17]},{"name":"netent","features":[17]},{"name":"ntohl","features":[17]},{"name":"ntohs","features":[17]},{"name":"recv","features":[17]},{"name":"recvfrom","features":[17]},{"name":"select","features":[17]},{"name":"send","features":[17]},{"name":"sendto","features":[17]},{"name":"setsockopt","features":[17]},{"name":"shutdown","features":[17]},{"name":"sockaddr_gen","features":[17]},{"name":"sockaddr_in6_old","features":[17]},{"name":"socket","features":[17]},{"name":"socklen_t","features":[17]},{"name":"sockproto","features":[17]},{"name":"tcp_keepalive","features":[17]}],"480":[{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA","features":[119]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_CURRENT_VERSION","features":[119]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_VERSION_1","features":[119]},{"name":"IContentPrefetcherTaskTrigger","features":[119]},{"name":"WEBAUTHN_API_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_API_VERSION_1","features":[119]},{"name":"WEBAUTHN_API_VERSION_2","features":[119]},{"name":"WEBAUTHN_API_VERSION_3","features":[119]},{"name":"WEBAUTHN_API_VERSION_4","features":[119]},{"name":"WEBAUTHN_API_VERSION_5","features":[119]},{"name":"WEBAUTHN_API_VERSION_6","features":[119]},{"name":"WEBAUTHN_API_VERSION_7","features":[119]},{"name":"WEBAUTHN_ASSERTION","features":[119]},{"name":"WEBAUTHN_ASSERTION_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_ASSERTION_VERSION_1","features":[119]},{"name":"WEBAUTHN_ASSERTION_VERSION_2","features":[119]},{"name":"WEBAUTHN_ASSERTION_VERSION_3","features":[119]},{"name":"WEBAUTHN_ASSERTION_VERSION_4","features":[119]},{"name":"WEBAUTHN_ASSERTION_VERSION_5","features":[119]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_ANY","features":[119]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_DIRECT","features":[119]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_INDIRECT","features":[119]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_NONE","features":[119]},{"name":"WEBAUTHN_ATTESTATION_DECODE_COMMON","features":[119]},{"name":"WEBAUTHN_ATTESTATION_DECODE_NONE","features":[119]},{"name":"WEBAUTHN_ATTESTATION_TYPE_NONE","features":[119]},{"name":"WEBAUTHN_ATTESTATION_TYPE_PACKED","features":[119]},{"name":"WEBAUTHN_ATTESTATION_TYPE_TPM","features":[119]},{"name":"WEBAUTHN_ATTESTATION_TYPE_U2F","features":[119]},{"name":"WEBAUTHN_ATTESTATION_VER_TPM_2_0","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_ANY","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM_U2F_V2","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_PLATFORM","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS","features":[3,119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_1","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_2","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_3","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_4","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_5","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_6","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_7","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_HMAC_SECRET_VALUES_FLAG","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS","features":[3,119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_1","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_2","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_3","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_4","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_5","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_6","features":[119]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_7","features":[119]},{"name":"WEBAUTHN_CLIENT_DATA","features":[119]},{"name":"WEBAUTHN_CLIENT_DATA_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_COMMON_ATTESTATION","features":[119]},{"name":"WEBAUTHN_COMMON_ATTESTATION_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P256_WITH_SHA256","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P384_WITH_SHA384","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P521_WITH_SHA512","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA256","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA384","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA512","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA256","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA384","features":[119]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA512","features":[119]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER","features":[119]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETERS","features":[119]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_CREDENTIAL","features":[119]},{"name":"WEBAUTHN_CREDENTIALS","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION","features":[3,119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_1","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_2","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_3","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_4","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_5","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_6","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS","features":[3,119]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_LIST","features":[3,119]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_1","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_2","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_EX","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_EX_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_LIST","features":[119]},{"name":"WEBAUTHN_CREDENTIAL_TYPE_PUBLIC_KEY","features":[119]},{"name":"WEBAUTHN_CRED_BLOB_EXTENSION","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_DELETE","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_GET","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_NONE","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_SET","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_AUTHENTICATOR_ERROR","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_DATA","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_PARAMETER","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_LACK_OF_SPACE","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_MULTIPLE_CREDENTIALS","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NONE","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_FOUND","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_SUPPORTED","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_PLATFORM_ERROR","features":[119]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_SUCCESS","features":[119]},{"name":"WEBAUTHN_CRED_PROTECT_EXTENSION_IN","features":[3,119]},{"name":"WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT","features":[119]},{"name":"WEBAUTHN_CTAP_ONE_HMAC_SECRET_LENGTH","features":[119]},{"name":"WEBAUTHN_CTAP_TRANSPORT_BLE","features":[119]},{"name":"WEBAUTHN_CTAP_TRANSPORT_FLAGS_MASK","features":[119]},{"name":"WEBAUTHN_CTAP_TRANSPORT_HYBRID","features":[119]},{"name":"WEBAUTHN_CTAP_TRANSPORT_INTERNAL","features":[119]},{"name":"WEBAUTHN_CTAP_TRANSPORT_NFC","features":[119]},{"name":"WEBAUTHN_CTAP_TRANSPORT_TEST","features":[119]},{"name":"WEBAUTHN_CTAP_TRANSPORT_USB","features":[119]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_NONE","features":[119]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_PLATFORM_MANAGED","features":[119]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_VENDOR_FACILITATED","features":[119]},{"name":"WEBAUTHN_EXTENSION","features":[119]},{"name":"WEBAUTHN_EXTENSIONS","features":[119]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_BLOB","features":[119]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_PROTECT","features":[119]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_HMAC_SECRET","features":[119]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_MIN_PIN_LENGTH","features":[119]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS","features":[3,119]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_VERSION_1","features":[119]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_256","features":[119]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_384","features":[119]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_512","features":[119]},{"name":"WEBAUTHN_HMAC_SECRET_SALT","features":[119]},{"name":"WEBAUTHN_HMAC_SECRET_SALT_VALUES","features":[119]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_NONE","features":[119]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_PREFERRED","features":[119]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_REQUIRED","features":[119]},{"name":"WEBAUTHN_MAX_USER_ID_LENGTH","features":[119]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION","features":[119]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION","features":[119]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION_CURRENT_VERSION","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_ANY","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL_WITH_CREDENTIAL_ID_LIST","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIRED","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_ANY","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_DISCOURAGED","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_PREFERRED","features":[119]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_REQUIRED","features":[119]},{"name":"WEBAUTHN_X5C","features":[119]},{"name":"WS_ABANDON_MESSAGE_CALLBACK","features":[119]},{"name":"WS_ABORT_CHANNEL_CALLBACK","features":[119]},{"name":"WS_ABORT_LISTENER_CALLBACK","features":[119]},{"name":"WS_ACCEPT_CHANNEL_CALLBACK","features":[119]},{"name":"WS_ACTION_HEADER","features":[119]},{"name":"WS_ADDRESSING_VERSION","features":[119]},{"name":"WS_ADDRESSING_VERSION_0_9","features":[119]},{"name":"WS_ADDRESSING_VERSION_1_0","features":[119]},{"name":"WS_ADDRESSING_VERSION_TRANSPORT","features":[119]},{"name":"WS_ANY_ATTRIBUTE","features":[3,119]},{"name":"WS_ANY_ATTRIBUTES","features":[3,119]},{"name":"WS_ANY_ATTRIBUTES_FIELD_MAPPING","features":[119]},{"name":"WS_ANY_ATTRIBUTES_TYPE","features":[119]},{"name":"WS_ANY_CONTENT_FIELD_MAPPING","features":[119]},{"name":"WS_ANY_ELEMENT_FIELD_MAPPING","features":[119]},{"name":"WS_ANY_ELEMENT_TYPE_MAPPING","features":[119]},{"name":"WS_ASYNC_CALLBACK","features":[119]},{"name":"WS_ASYNC_CONTEXT","features":[119]},{"name":"WS_ASYNC_FUNCTION","features":[119]},{"name":"WS_ASYNC_OPERATION","features":[119]},{"name":"WS_ASYNC_STATE","features":[119]},{"name":"WS_ATTRIBUTE_DESCRIPTION","features":[3,119]},{"name":"WS_ATTRIBUTE_FIELD_MAPPING","features":[119]},{"name":"WS_ATTRIBUTE_TYPE_MAPPING","features":[119]},{"name":"WS_AUTO_COOKIE_MODE","features":[119]},{"name":"WS_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_BLANK_MESSAGE","features":[119]},{"name":"WS_BOOL_DESCRIPTION","features":[3,119]},{"name":"WS_BOOL_TYPE","features":[119]},{"name":"WS_BOOL_VALUE_TYPE","features":[119]},{"name":"WS_BUFFERED_TRANSFER_MODE","features":[119]},{"name":"WS_BUFFERS","features":[119]},{"name":"WS_BYTES","features":[119]},{"name":"WS_BYTES_DESCRIPTION","features":[119]},{"name":"WS_BYTES_TYPE","features":[119]},{"name":"WS_BYTE_ARRAY_DESCRIPTION","features":[119]},{"name":"WS_BYTE_ARRAY_TYPE","features":[119]},{"name":"WS_CALLBACK_MODEL","features":[119]},{"name":"WS_CALL_PROPERTY","features":[119]},{"name":"WS_CALL_PROPERTY_CALL_ID","features":[119]},{"name":"WS_CALL_PROPERTY_CHECK_MUST_UNDERSTAND","features":[119]},{"name":"WS_CALL_PROPERTY_ID","features":[119]},{"name":"WS_CALL_PROPERTY_RECEIVE_MESSAGE_CONTEXT","features":[119]},{"name":"WS_CALL_PROPERTY_SEND_MESSAGE_CONTEXT","features":[119]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[119]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[119]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK","features":[3,119,70]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[3,119,70]},{"name":"WS_CERT_CREDENTIAL","features":[119]},{"name":"WS_CERT_CREDENTIAL_TYPE","features":[119]},{"name":"WS_CERT_ENDPOINT_IDENTITY","features":[119]},{"name":"WS_CERT_ENDPOINT_IDENTITY_TYPE","features":[119]},{"name":"WS_CERT_FAILURE_CN_MISMATCH","features":[119]},{"name":"WS_CERT_FAILURE_INVALID_DATE","features":[119]},{"name":"WS_CERT_FAILURE_REVOCATION_OFFLINE","features":[119]},{"name":"WS_CERT_FAILURE_UNTRUSTED_ROOT","features":[119]},{"name":"WS_CERT_FAILURE_WRONG_USAGE","features":[119]},{"name":"WS_CERT_ISSUER_LIST_NOTIFICATION_CALLBACK","features":[119,25,70]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[119]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR","features":[3,119,70]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR_TYPE","features":[119]},{"name":"WS_CHANNEL","features":[119]},{"name":"WS_CHANNEL_BINDING","features":[119]},{"name":"WS_CHANNEL_DECODER","features":[119]},{"name":"WS_CHANNEL_ENCODER","features":[119]},{"name":"WS_CHANNEL_PROPERTIES","features":[119]},{"name":"WS_CHANNEL_PROPERTY","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ADDRESSING_VERSION","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ALLOW_UNSECURED_FAULTS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ASYNC_CALLBACK_MODEL","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CHANNEL_TYPE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CLOSE_TIMEOUT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CONNECT_TIMEOUT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CONSTRAINT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_COOKIE_MODE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_CALLBACKS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_INSTANCE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_PARAMETERS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_HTTP_PROXY","features":[119]},{"name":"WS_CHANNEL_PROPERTY_DECODER","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_HTTP_REDIRECT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_TIMEOUTS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ENCODER","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ENCODING","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ENVELOPE_VERSION","features":[119]},{"name":"WS_CHANNEL_PROPERTY_FAULTS_AS_ERRORS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_HTTP_CONNECTION_ID","features":[119]},{"name":"WS_CHANNEL_PROPERTY_HTTP_MESSAGE_MAPPING","features":[119]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SETTING_MODE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SPN","features":[119]},{"name":"WS_CHANNEL_PROPERTY_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_HTTP_SERVER_SPN","features":[119]},{"name":"WS_CHANNEL_PROPERTY_ID","features":[119]},{"name":"WS_CHANNEL_PROPERTY_IP_VERSION","features":[119]},{"name":"WS_CHANNEL_PROPERTY_IS_SESSION_SHUT_DOWN","features":[119]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_INTERVAL","features":[119]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_TIME","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MAX_BUFFERED_MESSAGE_SIZE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_REQUEST_HEADERS_BUFFER_SIZE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_SERVER_CONNECTIONS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MAX_SESSION_DICTIONARY_SIZE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_FLUSH_SIZE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_MESSAGE_SIZE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_START_SIZE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_HOPS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_INTERFACE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_NO_DELAY","features":[119]},{"name":"WS_CHANNEL_PROPERTY_PROTECTION_LEVEL","features":[119]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_RESPONSE_TIMEOUT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_TIMEOUT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_ADDRESS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_IP_ADDRESS","features":[119]},{"name":"WS_CHANNEL_PROPERTY_RESOLVE_TIMEOUT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_SEND_KEEP_ALIVES","features":[119]},{"name":"WS_CHANNEL_PROPERTY_SEND_TIMEOUT","features":[119]},{"name":"WS_CHANNEL_PROPERTY_STATE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_TRANSFER_MODE","features":[119]},{"name":"WS_CHANNEL_PROPERTY_TRANSPORT_URL","features":[119]},{"name":"WS_CHANNEL_PROPERTY_TRIM_BUFFERED_MESSAGE_SIZE","features":[119]},{"name":"WS_CHANNEL_STATE","features":[119]},{"name":"WS_CHANNEL_STATE_ACCEPTING","features":[119]},{"name":"WS_CHANNEL_STATE_CLOSED","features":[119]},{"name":"WS_CHANNEL_STATE_CLOSING","features":[119]},{"name":"WS_CHANNEL_STATE_CREATED","features":[119]},{"name":"WS_CHANNEL_STATE_FAULTED","features":[119]},{"name":"WS_CHANNEL_STATE_OPEN","features":[119]},{"name":"WS_CHANNEL_STATE_OPENING","features":[119]},{"name":"WS_CHANNEL_TYPE","features":[119]},{"name":"WS_CHANNEL_TYPE_DUPLEX","features":[119]},{"name":"WS_CHANNEL_TYPE_DUPLEX_SESSION","features":[119]},{"name":"WS_CHANNEL_TYPE_INPUT","features":[119]},{"name":"WS_CHANNEL_TYPE_INPUT_SESSION","features":[119]},{"name":"WS_CHANNEL_TYPE_OUTPUT","features":[119]},{"name":"WS_CHANNEL_TYPE_OUTPUT_SESSION","features":[119]},{"name":"WS_CHANNEL_TYPE_REPLY","features":[119]},{"name":"WS_CHANNEL_TYPE_REQUEST","features":[119]},{"name":"WS_CHANNEL_TYPE_SESSION","features":[119]},{"name":"WS_CHARSET","features":[119]},{"name":"WS_CHARSET_AUTO","features":[119]},{"name":"WS_CHARSET_UTF16BE","features":[119]},{"name":"WS_CHARSET_UTF16LE","features":[119]},{"name":"WS_CHARSET_UTF8","features":[119]},{"name":"WS_CHAR_ARRAY_DESCRIPTION","features":[119]},{"name":"WS_CHAR_ARRAY_TYPE","features":[119]},{"name":"WS_CLOSE_CHANNEL_CALLBACK","features":[119]},{"name":"WS_CLOSE_LISTENER_CALLBACK","features":[119]},{"name":"WS_CONTRACT_DESCRIPTION","features":[3,119]},{"name":"WS_COOKIE_MODE","features":[119]},{"name":"WS_CREATE_CHANNEL_CALLBACK","features":[119]},{"name":"WS_CREATE_CHANNEL_FOR_LISTENER_CALLBACK","features":[119]},{"name":"WS_CREATE_DECODER_CALLBACK","features":[119]},{"name":"WS_CREATE_ENCODER_CALLBACK","features":[119]},{"name":"WS_CREATE_LISTENER_CALLBACK","features":[119]},{"name":"WS_CUSTOM_CERT_CREDENTIAL","features":[3,119,25,70]},{"name":"WS_CUSTOM_CERT_CREDENTIAL_TYPE","features":[119]},{"name":"WS_CUSTOM_CHANNEL_BINDING","features":[119]},{"name":"WS_CUSTOM_CHANNEL_CALLBACKS","features":[119]},{"name":"WS_CUSTOM_HTTP_PROXY","features":[119]},{"name":"WS_CUSTOM_LISTENER_CALLBACKS","features":[119]},{"name":"WS_CUSTOM_TYPE","features":[119]},{"name":"WS_CUSTOM_TYPE_DESCRIPTION","features":[3,119]},{"name":"WS_DATETIME","features":[119]},{"name":"WS_DATETIME_DESCRIPTION","features":[119]},{"name":"WS_DATETIME_FORMAT","features":[119]},{"name":"WS_DATETIME_FORMAT_LOCAL","features":[119]},{"name":"WS_DATETIME_FORMAT_NONE","features":[119]},{"name":"WS_DATETIME_FORMAT_UTC","features":[119]},{"name":"WS_DATETIME_TYPE","features":[119]},{"name":"WS_DATETIME_VALUE_TYPE","features":[119]},{"name":"WS_DECIMAL_DESCRIPTION","features":[3,119]},{"name":"WS_DECIMAL_TYPE","features":[119]},{"name":"WS_DECIMAL_VALUE_TYPE","features":[119]},{"name":"WS_DECODER_DECODE_CALLBACK","features":[119]},{"name":"WS_DECODER_END_CALLBACK","features":[119]},{"name":"WS_DECODER_GET_CONTENT_TYPE_CALLBACK","features":[119]},{"name":"WS_DECODER_START_CALLBACK","features":[119]},{"name":"WS_DEFAULT_VALUE","features":[119]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[119]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[119]},{"name":"WS_DESCRIPTION_TYPE","features":[119]},{"name":"WS_DISALLOWED_USER_AGENT_SUBSTRINGS","features":[119]},{"name":"WS_DNS_ENDPOINT_IDENTITY","features":[119]},{"name":"WS_DNS_ENDPOINT_IDENTITY_TYPE","features":[119]},{"name":"WS_DOUBLE_DESCRIPTION","features":[119]},{"name":"WS_DOUBLE_TYPE","features":[119]},{"name":"WS_DOUBLE_VALUE_TYPE","features":[119]},{"name":"WS_DUPLICATE_MESSAGE","features":[119]},{"name":"WS_DURATION","features":[3,119]},{"name":"WS_DURATION_COMPARISON_CALLBACK","features":[3,119]},{"name":"WS_DURATION_DESCRIPTION","features":[3,119]},{"name":"WS_DURATION_TYPE","features":[119]},{"name":"WS_DURATION_VALUE_TYPE","features":[119]},{"name":"WS_DYNAMIC_STRING_CALLBACK","features":[3,119]},{"name":"WS_ELEMENT_CHOICE_FIELD_MAPPING","features":[119]},{"name":"WS_ELEMENT_CONTENT_TYPE_MAPPING","features":[119]},{"name":"WS_ELEMENT_DESCRIPTION","features":[3,119]},{"name":"WS_ELEMENT_FIELD_MAPPING","features":[119]},{"name":"WS_ELEMENT_TYPE_MAPPING","features":[119]},{"name":"WS_ENCODER_ENCODE_CALLBACK","features":[119]},{"name":"WS_ENCODER_END_CALLBACK","features":[119]},{"name":"WS_ENCODER_GET_CONTENT_TYPE_CALLBACK","features":[119]},{"name":"WS_ENCODER_START_CALLBACK","features":[119]},{"name":"WS_ENCODING","features":[119]},{"name":"WS_ENCODING_RAW","features":[119]},{"name":"WS_ENCODING_XML_BINARY_1","features":[119]},{"name":"WS_ENCODING_XML_BINARY_SESSION_1","features":[119]},{"name":"WS_ENCODING_XML_MTOM_UTF16BE","features":[119]},{"name":"WS_ENCODING_XML_MTOM_UTF16LE","features":[119]},{"name":"WS_ENCODING_XML_MTOM_UTF8","features":[119]},{"name":"WS_ENCODING_XML_UTF16BE","features":[119]},{"name":"WS_ENCODING_XML_UTF16LE","features":[119]},{"name":"WS_ENCODING_XML_UTF8","features":[119]},{"name":"WS_ENDPOINT_ADDRESS","features":[119]},{"name":"WS_ENDPOINT_ADDRESS_DESCRIPTION","features":[119]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_METADATA_ADDRESS","features":[119]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_TYPE","features":[119]},{"name":"WS_ENDPOINT_ADDRESS_TYPE","features":[119]},{"name":"WS_ENDPOINT_IDENTITY","features":[119]},{"name":"WS_ENDPOINT_IDENTITY_TYPE","features":[119]},{"name":"WS_ENDPOINT_POLICY_EXTENSION","features":[3,119]},{"name":"WS_ENDPOINT_POLICY_EXTENSION_TYPE","features":[119]},{"name":"WS_ENUM_DESCRIPTION","features":[3,119]},{"name":"WS_ENUM_TYPE","features":[119]},{"name":"WS_ENUM_VALUE","features":[3,119]},{"name":"WS_ENVELOPE_VERSION","features":[119]},{"name":"WS_ENVELOPE_VERSION_NONE","features":[119]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_1","features":[119]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_2","features":[119]},{"name":"WS_ERROR","features":[119]},{"name":"WS_ERROR_PROPERTY","features":[119]},{"name":"WS_ERROR_PROPERTY_ID","features":[119]},{"name":"WS_ERROR_PROPERTY_LANGID","features":[119]},{"name":"WS_ERROR_PROPERTY_ORIGINAL_ERROR_CODE","features":[119]},{"name":"WS_ERROR_PROPERTY_STRING_COUNT","features":[119]},{"name":"WS_EXCEPTION_CODE","features":[119]},{"name":"WS_EXCEPTION_CODE_INTERNAL_FAILURE","features":[119]},{"name":"WS_EXCEPTION_CODE_USAGE_FAILURE","features":[119]},{"name":"WS_EXCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[119]},{"name":"WS_EXCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[119]},{"name":"WS_EXTENDED_PROTECTION_POLICY","features":[119]},{"name":"WS_EXTENDED_PROTECTION_POLICY_ALWAYS","features":[119]},{"name":"WS_EXTENDED_PROTECTION_POLICY_NEVER","features":[119]},{"name":"WS_EXTENDED_PROTECTION_POLICY_WHEN_SUPPORTED","features":[119]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO","features":[119]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_BOUND_SERVER","features":[119]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_TERMINATED_SSL","features":[119]},{"name":"WS_FAULT","features":[3,119]},{"name":"WS_FAULT_CODE","features":[3,119]},{"name":"WS_FAULT_DESCRIPTION","features":[119]},{"name":"WS_FAULT_DETAIL_DESCRIPTION","features":[3,119]},{"name":"WS_FAULT_DISCLOSURE","features":[119]},{"name":"WS_FAULT_ERROR_PROPERTY_ACTION","features":[119]},{"name":"WS_FAULT_ERROR_PROPERTY_FAULT","features":[119]},{"name":"WS_FAULT_ERROR_PROPERTY_HEADER","features":[119]},{"name":"WS_FAULT_ERROR_PROPERTY_ID","features":[119]},{"name":"WS_FAULT_MESSAGE","features":[119]},{"name":"WS_FAULT_REASON","features":[119]},{"name":"WS_FAULT_TO_HEADER","features":[119]},{"name":"WS_FAULT_TYPE","features":[119]},{"name":"WS_FIELD_DESCRIPTION","features":[3,119]},{"name":"WS_FIELD_MAPPING","features":[119]},{"name":"WS_FIELD_NILLABLE","features":[119]},{"name":"WS_FIELD_NILLABLE_ITEM","features":[119]},{"name":"WS_FIELD_OPTIONAL","features":[119]},{"name":"WS_FIELD_OTHER_NAMESPACE","features":[119]},{"name":"WS_FIELD_POINTER","features":[119]},{"name":"WS_FLOAT_DESCRIPTION","features":[119]},{"name":"WS_FLOAT_TYPE","features":[119]},{"name":"WS_FLOAT_VALUE_TYPE","features":[119]},{"name":"WS_FREE_CHANNEL_CALLBACK","features":[119]},{"name":"WS_FREE_DECODER_CALLBACK","features":[119]},{"name":"WS_FREE_ENCODER_CALLBACK","features":[119]},{"name":"WS_FREE_LISTENER_CALLBACK","features":[119]},{"name":"WS_FROM_HEADER","features":[119]},{"name":"WS_FULL_FAULT_DISCLOSURE","features":[119]},{"name":"WS_GET_CERT_CALLBACK","features":[3,119,70]},{"name":"WS_GET_CHANNEL_PROPERTY_CALLBACK","features":[119]},{"name":"WS_GET_LISTENER_PROPERTY_CALLBACK","features":[119]},{"name":"WS_GUID_DESCRIPTION","features":[119]},{"name":"WS_GUID_TYPE","features":[119]},{"name":"WS_GUID_VALUE_TYPE","features":[119]},{"name":"WS_HEADER_TYPE","features":[119]},{"name":"WS_HEAP","features":[119]},{"name":"WS_HEAP_PROPERTIES","features":[119]},{"name":"WS_HEAP_PROPERTY","features":[119]},{"name":"WS_HEAP_PROPERTY_ACTUAL_SIZE","features":[119]},{"name":"WS_HEAP_PROPERTY_ID","features":[119]},{"name":"WS_HEAP_PROPERTY_MAX_SIZE","features":[119]},{"name":"WS_HEAP_PROPERTY_REQUESTED_SIZE","features":[119]},{"name":"WS_HEAP_PROPERTY_TRIM_SIZE","features":[119]},{"name":"WS_HOST_NAMES","features":[119]},{"name":"WS_HTTPS_URL","features":[119]},{"name":"WS_HTTP_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_CHANNEL_BINDING","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_BASIC","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_DIGEST","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NEGOTIATE","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NONE","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NTLM","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_PASSPORT","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_TARGET","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_PROXY","features":[119]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_SERVICE","features":[119]},{"name":"WS_HTTP_HEADER_MAPPING","features":[3,119]},{"name":"WS_HTTP_HEADER_MAPPING_COMMA_SEPARATOR","features":[119]},{"name":"WS_HTTP_HEADER_MAPPING_QUOTED_VALUE","features":[119]},{"name":"WS_HTTP_HEADER_MAPPING_SEMICOLON_SEPARATOR","features":[119]},{"name":"WS_HTTP_MESSAGE_MAPPING","features":[3,119]},{"name":"WS_HTTP_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_PROXY_SETTING_MODE","features":[119]},{"name":"WS_HTTP_PROXY_SETTING_MODE_AUTO","features":[119]},{"name":"WS_HTTP_PROXY_SETTING_MODE_CUSTOM","features":[119]},{"name":"WS_HTTP_PROXY_SETTING_MODE_NONE","features":[119]},{"name":"WS_HTTP_REDIRECT_CALLBACK","features":[119]},{"name":"WS_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[119]},{"name":"WS_HTTP_REQUEST_MAPPING_VERB","features":[119]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_CODE","features":[119]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_TEXT","features":[119]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_SSL_HEADER_AUTH_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_SSL_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_SSL_USERNAME_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[119]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[119]},{"name":"WS_HTTP_URL","features":[119]},{"name":"WS_INCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[119]},{"name":"WS_INCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[119]},{"name":"WS_INT16_DESCRIPTION","features":[119]},{"name":"WS_INT16_TYPE","features":[119]},{"name":"WS_INT16_VALUE_TYPE","features":[119]},{"name":"WS_INT32_DESCRIPTION","features":[119]},{"name":"WS_INT32_TYPE","features":[119]},{"name":"WS_INT32_VALUE_TYPE","features":[119]},{"name":"WS_INT64_DESCRIPTION","features":[119]},{"name":"WS_INT64_TYPE","features":[119]},{"name":"WS_INT64_VALUE_TYPE","features":[119]},{"name":"WS_INT8_DESCRIPTION","features":[119]},{"name":"WS_INT8_TYPE","features":[119]},{"name":"WS_INT8_VALUE_TYPE","features":[119]},{"name":"WS_IP_VERSION","features":[119]},{"name":"WS_IP_VERSION_4","features":[119]},{"name":"WS_IP_VERSION_6","features":[119]},{"name":"WS_IP_VERSION_AUTO","features":[119]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[3,119]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_IS_DEFAULT_VALUE_CALLBACK","features":[3,119]},{"name":"WS_ITEM_RANGE","features":[119]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING","features":[119]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[119]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[119]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[119]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_LISTENER","features":[119]},{"name":"WS_LISTENER_PROPERTIES","features":[119]},{"name":"WS_LISTENER_PROPERTY","features":[119]},{"name":"WS_LISTENER_PROPERTY_ASYNC_CALLBACK_MODEL","features":[119]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_BINDING","features":[119]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_TYPE","features":[119]},{"name":"WS_LISTENER_PROPERTY_CLOSE_TIMEOUT","features":[119]},{"name":"WS_LISTENER_PROPERTY_CONNECT_TIMEOUT","features":[119]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_CALLBACKS","features":[119]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_INSTANCE","features":[119]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_PARAMETERS","features":[119]},{"name":"WS_LISTENER_PROPERTY_DISALLOWED_USER_AGENT","features":[119]},{"name":"WS_LISTENER_PROPERTY_ID","features":[119]},{"name":"WS_LISTENER_PROPERTY_IP_VERSION","features":[119]},{"name":"WS_LISTENER_PROPERTY_IS_MULTICAST","features":[119]},{"name":"WS_LISTENER_PROPERTY_LISTEN_BACKLOG","features":[119]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_INTERFACES","features":[119]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_LOOPBACK","features":[119]},{"name":"WS_LISTENER_PROPERTY_STATE","features":[119]},{"name":"WS_LISTENER_PROPERTY_TO_HEADER_MATCHING_OPTIONS","features":[119]},{"name":"WS_LISTENER_PROPERTY_TRANSPORT_URL_MATCHING_OPTIONS","features":[119]},{"name":"WS_LISTENER_STATE","features":[119]},{"name":"WS_LISTENER_STATE_CLOSED","features":[119]},{"name":"WS_LISTENER_STATE_CLOSING","features":[119]},{"name":"WS_LISTENER_STATE_CREATED","features":[119]},{"name":"WS_LISTENER_STATE_FAULTED","features":[119]},{"name":"WS_LISTENER_STATE_OPEN","features":[119]},{"name":"WS_LISTENER_STATE_OPENING","features":[119]},{"name":"WS_LONG_CALLBACK","features":[119]},{"name":"WS_MANUAL_COOKIE_MODE","features":[119]},{"name":"WS_MATCH_URL_DNS_FULLY_QUALIFIED_HOST","features":[119]},{"name":"WS_MATCH_URL_DNS_HOST","features":[119]},{"name":"WS_MATCH_URL_EXACT_PATH","features":[119]},{"name":"WS_MATCH_URL_HOST_ADDRESSES","features":[119]},{"name":"WS_MATCH_URL_LOCAL_HOST","features":[119]},{"name":"WS_MATCH_URL_NETBIOS_HOST","features":[119]},{"name":"WS_MATCH_URL_NO_QUERY","features":[119]},{"name":"WS_MATCH_URL_PORT","features":[119]},{"name":"WS_MATCH_URL_PREFIX_PATH","features":[119]},{"name":"WS_MATCH_URL_THIS_HOST","features":[119]},{"name":"WS_MESSAGE","features":[119]},{"name":"WS_MESSAGE_DESCRIPTION","features":[3,119]},{"name":"WS_MESSAGE_DONE_CALLBACK","features":[119]},{"name":"WS_MESSAGE_ID_HEADER","features":[119]},{"name":"WS_MESSAGE_INITIALIZATION","features":[119]},{"name":"WS_MESSAGE_PROPERTIES","features":[119]},{"name":"WS_MESSAGE_PROPERTY","features":[119]},{"name":"WS_MESSAGE_PROPERTY_ADDRESSING_VERSION","features":[119]},{"name":"WS_MESSAGE_PROPERTY_BODY_READER","features":[119]},{"name":"WS_MESSAGE_PROPERTY_BODY_WRITER","features":[119]},{"name":"WS_MESSAGE_PROPERTY_ENCODED_CERT","features":[119]},{"name":"WS_MESSAGE_PROPERTY_ENVELOPE_VERSION","features":[119]},{"name":"WS_MESSAGE_PROPERTY_HEADER_BUFFER","features":[119]},{"name":"WS_MESSAGE_PROPERTY_HEADER_POSITION","features":[119]},{"name":"WS_MESSAGE_PROPERTY_HEAP","features":[119]},{"name":"WS_MESSAGE_PROPERTY_HEAP_PROPERTIES","features":[119]},{"name":"WS_MESSAGE_PROPERTY_HTTP_HEADER_AUTH_WINDOWS_TOKEN","features":[119]},{"name":"WS_MESSAGE_PROPERTY_ID","features":[119]},{"name":"WS_MESSAGE_PROPERTY_IS_ADDRESSED","features":[119]},{"name":"WS_MESSAGE_PROPERTY_IS_FAULT","features":[119]},{"name":"WS_MESSAGE_PROPERTY_MAX_PROCESSED_HEADERS","features":[119]},{"name":"WS_MESSAGE_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[119]},{"name":"WS_MESSAGE_PROPERTY_PROTECTION_LEVEL","features":[119]},{"name":"WS_MESSAGE_PROPERTY_SAML_ASSERTION","features":[119]},{"name":"WS_MESSAGE_PROPERTY_SECURITY_CONTEXT","features":[119]},{"name":"WS_MESSAGE_PROPERTY_STATE","features":[119]},{"name":"WS_MESSAGE_PROPERTY_TRANSPORT_SECURITY_WINDOWS_TOKEN","features":[119]},{"name":"WS_MESSAGE_PROPERTY_USERNAME","features":[119]},{"name":"WS_MESSAGE_PROPERTY_XML_READER_PROPERTIES","features":[119]},{"name":"WS_MESSAGE_PROPERTY_XML_WRITER_PROPERTIES","features":[119]},{"name":"WS_MESSAGE_SECURITY_USAGE","features":[119]},{"name":"WS_MESSAGE_STATE","features":[119]},{"name":"WS_MESSAGE_STATE_DONE","features":[119]},{"name":"WS_MESSAGE_STATE_EMPTY","features":[119]},{"name":"WS_MESSAGE_STATE_INITIALIZED","features":[119]},{"name":"WS_MESSAGE_STATE_READING","features":[119]},{"name":"WS_MESSAGE_STATE_WRITING","features":[119]},{"name":"WS_METADATA","features":[119]},{"name":"WS_METADATA_ENDPOINT","features":[3,119]},{"name":"WS_METADATA_ENDPOINTS","features":[3,119]},{"name":"WS_METADATA_EXCHANGE_TYPE","features":[119]},{"name":"WS_METADATA_EXCHANGE_TYPE_HTTP_GET","features":[119]},{"name":"WS_METADATA_EXCHANGE_TYPE_MEX","features":[119]},{"name":"WS_METADATA_EXCHANGE_TYPE_NONE","features":[119]},{"name":"WS_METADATA_PROPERTY","features":[119]},{"name":"WS_METADATA_PROPERTY_HEAP_PROPERTIES","features":[119]},{"name":"WS_METADATA_PROPERTY_HEAP_REQUESTED_SIZE","features":[119]},{"name":"WS_METADATA_PROPERTY_HOST_NAMES","features":[119]},{"name":"WS_METADATA_PROPERTY_ID","features":[119]},{"name":"WS_METADATA_PROPERTY_MAX_DOCUMENTS","features":[119]},{"name":"WS_METADATA_PROPERTY_POLICY_PROPERTIES","features":[119]},{"name":"WS_METADATA_PROPERTY_STATE","features":[119]},{"name":"WS_METADATA_PROPERTY_VERIFY_HOST_NAMES","features":[119]},{"name":"WS_METADATA_STATE","features":[119]},{"name":"WS_METADATA_STATE_CREATED","features":[119]},{"name":"WS_METADATA_STATE_FAULTED","features":[119]},{"name":"WS_METADATA_STATE_RESOLVED","features":[119]},{"name":"WS_MINIMAL_FAULT_DISCLOSURE","features":[119]},{"name":"WS_MOVE_TO","features":[119]},{"name":"WS_MOVE_TO_BOF","features":[119]},{"name":"WS_MOVE_TO_CHILD_ELEMENT","features":[119]},{"name":"WS_MOVE_TO_CHILD_NODE","features":[119]},{"name":"WS_MOVE_TO_END_ELEMENT","features":[119]},{"name":"WS_MOVE_TO_EOF","features":[119]},{"name":"WS_MOVE_TO_FIRST_NODE","features":[119]},{"name":"WS_MOVE_TO_NEXT_ELEMENT","features":[119]},{"name":"WS_MOVE_TO_NEXT_NODE","features":[119]},{"name":"WS_MOVE_TO_PARENT_ELEMENT","features":[119]},{"name":"WS_MOVE_TO_PREVIOUS_ELEMENT","features":[119]},{"name":"WS_MOVE_TO_PREVIOUS_NODE","features":[119]},{"name":"WS_MOVE_TO_ROOT_ELEMENT","features":[119]},{"name":"WS_MUST_UNDERSTAND_HEADER_ATTRIBUTE","features":[119]},{"name":"WS_NAMEDPIPE_CHANNEL_BINDING","features":[119]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING","features":[119]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[119,70]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[119]},{"name":"WS_NETPIPE_URL","features":[119]},{"name":"WS_NETTCP_URL","features":[119]},{"name":"WS_NON_RPC_LITERAL_OPERATION","features":[119]},{"name":"WS_NO_FIELD_MAPPING","features":[119]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[119]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[119]},{"name":"WS_OPEN_CHANNEL_CALLBACK","features":[119]},{"name":"WS_OPEN_LISTENER_CALLBACK","features":[119]},{"name":"WS_OPERATION_CANCEL_CALLBACK","features":[119]},{"name":"WS_OPERATION_CONTEXT","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL_USER_STATE","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CONTRACT_DESCRIPTION","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ENDPOINT_ADDRESS","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HEAP","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HOST_USER_STATE","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ID","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_INPUT_MESSAGE","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_LISTENER","features":[119]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_OUTPUT_MESSAGE","features":[119]},{"name":"WS_OPERATION_DESCRIPTION","features":[3,119]},{"name":"WS_OPERATION_FREE_STATE_CALLBACK","features":[119]},{"name":"WS_OPERATION_STYLE","features":[119]},{"name":"WS_PARAMETER_DESCRIPTION","features":[119]},{"name":"WS_PARAMETER_TYPE","features":[119]},{"name":"WS_PARAMETER_TYPE_ARRAY","features":[119]},{"name":"WS_PARAMETER_TYPE_ARRAY_COUNT","features":[119]},{"name":"WS_PARAMETER_TYPE_MESSAGES","features":[119]},{"name":"WS_PARAMETER_TYPE_NORMAL","features":[119]},{"name":"WS_POLICY","features":[119]},{"name":"WS_POLICY_CONSTRAINTS","features":[119]},{"name":"WS_POLICY_EXTENSION","features":[119]},{"name":"WS_POLICY_EXTENSION_TYPE","features":[119]},{"name":"WS_POLICY_PROPERTIES","features":[119]},{"name":"WS_POLICY_PROPERTY","features":[119]},{"name":"WS_POLICY_PROPERTY_ID","features":[119]},{"name":"WS_POLICY_PROPERTY_MAX_ALTERNATIVES","features":[119]},{"name":"WS_POLICY_PROPERTY_MAX_DEPTH","features":[119]},{"name":"WS_POLICY_PROPERTY_MAX_EXTENSIONS","features":[119]},{"name":"WS_POLICY_PROPERTY_STATE","features":[119]},{"name":"WS_POLICY_STATE","features":[119]},{"name":"WS_POLICY_STATE_CREATED","features":[119]},{"name":"WS_POLICY_STATE_FAULTED","features":[119]},{"name":"WS_PROTECTION_LEVEL","features":[119]},{"name":"WS_PROTECTION_LEVEL_NONE","features":[119]},{"name":"WS_PROTECTION_LEVEL_SIGN","features":[119]},{"name":"WS_PROTECTION_LEVEL_SIGN_AND_ENCRYPT","features":[119]},{"name":"WS_PROXY_FAULT_LANG_ID","features":[119]},{"name":"WS_PROXY_MESSAGE_CALLBACK","features":[119]},{"name":"WS_PROXY_MESSAGE_CALLBACK_CONTEXT","features":[119]},{"name":"WS_PROXY_PROPERTY","features":[119]},{"name":"WS_PROXY_PROPERTY_CALL_TIMEOUT","features":[119]},{"name":"WS_PROXY_PROPERTY_ID","features":[119]},{"name":"WS_PROXY_PROPERTY_MAX_CALL_POOL_SIZE","features":[119]},{"name":"WS_PROXY_PROPERTY_MAX_CLOSE_TIMEOUT","features":[119]},{"name":"WS_PROXY_PROPERTY_MAX_PENDING_CALLS","features":[119]},{"name":"WS_PROXY_PROPERTY_MESSAGE_PROPERTIES","features":[119]},{"name":"WS_PROXY_PROPERTY_STATE","features":[119]},{"name":"WS_PULL_BYTES_CALLBACK","features":[119]},{"name":"WS_PUSH_BYTES_CALLBACK","features":[119]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE","features":[119]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[119]},{"name":"WS_READ_CALLBACK","features":[119]},{"name":"WS_READ_MESSAGE_END_CALLBACK","features":[119]},{"name":"WS_READ_MESSAGE_START_CALLBACK","features":[119]},{"name":"WS_READ_NILLABLE_POINTER","features":[119]},{"name":"WS_READ_NILLABLE_VALUE","features":[119]},{"name":"WS_READ_OPTION","features":[119]},{"name":"WS_READ_OPTIONAL_POINTER","features":[119]},{"name":"WS_READ_REQUIRED_POINTER","features":[119]},{"name":"WS_READ_REQUIRED_VALUE","features":[119]},{"name":"WS_READ_TYPE_CALLBACK","features":[119]},{"name":"WS_RECEIVE_OPTION","features":[119]},{"name":"WS_RECEIVE_OPTIONAL_MESSAGE","features":[119]},{"name":"WS_RECEIVE_REQUIRED_MESSAGE","features":[119]},{"name":"WS_RELATES_TO_HEADER","features":[119]},{"name":"WS_RELAY_HEADER_ATTRIBUTE","features":[119]},{"name":"WS_REPEATING_ANY_ELEMENT_FIELD_MAPPING","features":[119]},{"name":"WS_REPEATING_ELEMENT_CHOICE_FIELD_MAPPING","features":[119]},{"name":"WS_REPEATING_ELEMENT_FIELD_MAPPING","features":[119]},{"name":"WS_REPEATING_HEADER","features":[119]},{"name":"WS_REPEATING_HEADER_OPTION","features":[119]},{"name":"WS_REPLY_MESSAGE","features":[119]},{"name":"WS_REPLY_TO_HEADER","features":[119]},{"name":"WS_REQUEST_MESSAGE","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_ISSUE","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_NEW_CONTEXT","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_RENEW_CONTEXT","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_APPLIES_TO","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_BEARER_KEY_TYPE_VERSION","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_CONSTRAINT","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_EXISTING_TOKEN","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ID","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_ENTROPY","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_SIZE","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_TYPE","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_TYPE","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_LOCAL_REQUEST_PARAMETERS","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_MESSAGE_PROPERTIES","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_REQUEST_ACTION","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SECURE_CONVERSATION_VERSION","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SERVICE_REQUEST_PARAMETERS","features":[119]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_TRUST_VERSION","features":[119]},{"name":"WS_RESET_CHANNEL_CALLBACK","features":[119]},{"name":"WS_RESET_LISTENER_CALLBACK","features":[119]},{"name":"WS_RPC_LITERAL_OPERATION","features":[119]},{"name":"WS_RSA_ENDPOINT_IDENTITY","features":[119]},{"name":"WS_RSA_ENDPOINT_IDENTITY_TYPE","features":[119]},{"name":"WS_SAML_AUTHENTICATOR","features":[119]},{"name":"WS_SAML_AUTHENTICATOR_TYPE","features":[119]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING","features":[119]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_SECURE_CONVERSATION_VERSION","features":[119]},{"name":"WS_SECURE_CONVERSATION_VERSION_1_3","features":[119]},{"name":"WS_SECURE_CONVERSATION_VERSION_FEBRUARY_2005","features":[119]},{"name":"WS_SECURE_PROTOCOL","features":[119]},{"name":"WS_SECURE_PROTOCOL_SSL2","features":[119]},{"name":"WS_SECURE_PROTOCOL_SSL3","features":[119]},{"name":"WS_SECURE_PROTOCOL_TLS1_0","features":[119]},{"name":"WS_SECURE_PROTOCOL_TLS1_1","features":[119]},{"name":"WS_SECURE_PROTOCOL_TLS1_2","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_1_5","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_OAEP","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_DSA_SHA1","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA1","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_256","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_384","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_512","features":[119]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE","features":[119]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE_WITH_COMMENTS","features":[119]},{"name":"WS_SECURITY_ALGORITHM_DEFAULT","features":[119]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA1","features":[119]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_256","features":[119]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_384","features":[119]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_512","features":[119]},{"name":"WS_SECURITY_ALGORITHM_ID","features":[119]},{"name":"WS_SECURITY_ALGORITHM_KEY_DERIVATION_P_SHA1","features":[119]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY","features":[119]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY_ID","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_RSA15","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256_RSA15","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_RSA15","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256_RSA15","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_RSA15","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256_RSA15","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA1","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_256","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_384","features":[119]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_512","features":[119]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION","features":[119]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ERRATA_01","features":[119]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SCHEMA","features":[119]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SPECIFICATION","features":[119]},{"name":"WS_SECURITY_BINDING","features":[119]},{"name":"WS_SECURITY_BINDING_CONSTRAINT","features":[119]},{"name":"WS_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTIES","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOWED_IMPERSONATION_LEVEL","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOW_ANONYMOUS_CLIENTS","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERT_FAILURES_TO_IGNORE","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_CONSTRAINT","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISABLE_CERT_REVOCATION_CHECK","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISALLOWED_SECURE_PROTOCOLS","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_BASIC_REALM","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_DOMAIN","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_REALM","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_SCHEME","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_TARGET","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_ID","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_MESSAGE_PROPERTIES","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SERVER_AUTH","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SSL_CLIENT_CERT","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURE_CONVERSATION_VERSION","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_ENTROPY_MODE","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_SIZE","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_ACTIVE_CONTEXTS","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_PENDING_CONTEXTS","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_RENEWAL_INTERVAL","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_ROLLOVER_INTERVAL","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_SUPPORT_RENEW","features":[119]},{"name":"WS_SECURITY_BINDING_PROPERTY_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[119]},{"name":"WS_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_SECURITY_CONSTRAINTS","features":[119]},{"name":"WS_SECURITY_CONTEXT","features":[119]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING","features":[119]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[119]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[119]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[119]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_SECURITY_CONTEXT_PROPERTY","features":[119]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_ID","features":[119]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_IDENTIFIER","features":[119]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[119]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_SAML_ASSERTION","features":[119]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_USERNAME","features":[119]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[119]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_TEMPLATE","features":[119]},{"name":"WS_SECURITY_DESCRIPTION","features":[119]},{"name":"WS_SECURITY_HEADER_LAYOUT","features":[119]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX","features":[119]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_FIRST","features":[119]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_LAST","features":[119]},{"name":"WS_SECURITY_HEADER_LAYOUT_STRICT","features":[119]},{"name":"WS_SECURITY_HEADER_VERSION","features":[119]},{"name":"WS_SECURITY_HEADER_VERSION_1_0","features":[119]},{"name":"WS_SECURITY_HEADER_VERSION_1_1","features":[119]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE","features":[119]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_CLIENT_ONLY","features":[119]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_COMBINED","features":[119]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_SERVER_ONLY","features":[119]},{"name":"WS_SECURITY_KEY_HANDLE","features":[119]},{"name":"WS_SECURITY_KEY_HANDLE_TYPE","features":[119]},{"name":"WS_SECURITY_KEY_TYPE","features":[119]},{"name":"WS_SECURITY_KEY_TYPE_ASYMMETRIC","features":[119]},{"name":"WS_SECURITY_KEY_TYPE_NONE","features":[119]},{"name":"WS_SECURITY_KEY_TYPE_SYMMETRIC","features":[119]},{"name":"WS_SECURITY_PROPERTIES","features":[119]},{"name":"WS_SECURITY_PROPERTY","features":[119]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE","features":[119]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE_NAME","features":[119]},{"name":"WS_SECURITY_PROPERTY_CONSTRAINT","features":[119]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_POLICY","features":[119]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_SCENARIO","features":[119]},{"name":"WS_SECURITY_PROPERTY_ID","features":[119]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_CLOCK_SKEW","features":[119]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_LATENCY","features":[119]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_LAYOUT","features":[119]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_VERSION","features":[119]},{"name":"WS_SECURITY_PROPERTY_SERVICE_IDENTITIES","features":[119]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_USAGE","features":[119]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_VALIDITY_DURATION","features":[119]},{"name":"WS_SECURITY_PROPERTY_TRANSPORT_PROTECTION_LEVEL","features":[119]},{"name":"WS_SECURITY_TIMESTAMP_USAGE","features":[119]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_ALWAYS","features":[119]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_NEVER","features":[119]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_REQUESTS_ONLY","features":[119]},{"name":"WS_SECURITY_TOKEN","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE_XML","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ID","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_KEY_TYPE","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SERIALIZED_XML","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SYMMETRIC_KEY","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE_XML","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[119]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[119]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE","features":[119]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_CERT_THUMBPRINT","features":[119]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_LOCAL_ID","features":[119]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SAML_ASSERTION_ID","features":[119]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SECURITY_CONTEXT_ID","features":[119]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_XML_BUFFER","features":[119]},{"name":"WS_SERVICE_ACCEPT_CHANNEL_CALLBACK","features":[119]},{"name":"WS_SERVICE_CANCEL_REASON","features":[119]},{"name":"WS_SERVICE_CHANNEL_FAULTED","features":[119]},{"name":"WS_SERVICE_CLOSE_CHANNEL_CALLBACK","features":[119]},{"name":"WS_SERVICE_CONTRACT","features":[3,119]},{"name":"WS_SERVICE_ENDPOINT","features":[3,119]},{"name":"WS_SERVICE_ENDPOINT_METADATA","features":[3,119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ACCEPT_CHANNEL_CALLBACK","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_MAX_SIZE","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_TRIM_SIZE","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CHECK_MUST_UNDERSTAND","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CLOSE_CHANNEL_CALLBACK","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ID","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_LISTENER_PROPERTIES","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_ACCEPTING_CHANNELS","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CALL_POOL_SIZE","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNELS","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNEL_POOL_SIZE","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CONCURRENCY","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MESSAGE_PROPERTIES","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_TYPE","features":[119]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_URL_SUFFIX","features":[119]},{"name":"WS_SERVICE_HOST","features":[119]},{"name":"WS_SERVICE_HOST_ABORT","features":[119]},{"name":"WS_SERVICE_HOST_STATE","features":[119]},{"name":"WS_SERVICE_HOST_STATE_CLOSED","features":[119]},{"name":"WS_SERVICE_HOST_STATE_CLOSING","features":[119]},{"name":"WS_SERVICE_HOST_STATE_CREATED","features":[119]},{"name":"WS_SERVICE_HOST_STATE_FAULTED","features":[119]},{"name":"WS_SERVICE_HOST_STATE_OPEN","features":[119]},{"name":"WS_SERVICE_HOST_STATE_OPENING","features":[119]},{"name":"WS_SERVICE_MESSAGE_RECEIVE_CALLBACK","features":[119]},{"name":"WS_SERVICE_METADATA","features":[3,119]},{"name":"WS_SERVICE_METADATA_DOCUMENT","features":[3,119]},{"name":"WS_SERVICE_OPERATION_MESSAGE_NILLABLE_ELEMENT","features":[119]},{"name":"WS_SERVICE_PROPERTY","features":[119]},{"name":"WS_SERVICE_PROPERTY_ACCEPT_CALLBACK","features":[119]},{"name":"WS_SERVICE_PROPERTY_CLOSE_CALLBACK","features":[119]},{"name":"WS_SERVICE_PROPERTY_CLOSE_TIMEOUT","features":[119]},{"name":"WS_SERVICE_PROPERTY_FAULT_DISCLOSURE","features":[119]},{"name":"WS_SERVICE_PROPERTY_FAULT_LANGID","features":[119]},{"name":"WS_SERVICE_PROPERTY_HOST_STATE","features":[119]},{"name":"WS_SERVICE_PROPERTY_HOST_USER_STATE","features":[119]},{"name":"WS_SERVICE_PROPERTY_ID","features":[119]},{"name":"WS_SERVICE_PROPERTY_METADATA","features":[119]},{"name":"WS_SERVICE_PROXY","features":[119]},{"name":"WS_SERVICE_PROXY_STATE","features":[119]},{"name":"WS_SERVICE_PROXY_STATE_CLOSED","features":[119]},{"name":"WS_SERVICE_PROXY_STATE_CLOSING","features":[119]},{"name":"WS_SERVICE_PROXY_STATE_CREATED","features":[119]},{"name":"WS_SERVICE_PROXY_STATE_FAULTED","features":[119]},{"name":"WS_SERVICE_PROXY_STATE_OPEN","features":[119]},{"name":"WS_SERVICE_PROXY_STATE_OPENING","features":[119]},{"name":"WS_SERVICE_SECURITY_CALLBACK","features":[3,119]},{"name":"WS_SERVICE_SECURITY_IDENTITIES","features":[119]},{"name":"WS_SERVICE_STUB_CALLBACK","features":[119]},{"name":"WS_SET_CHANNEL_PROPERTY_CALLBACK","features":[119]},{"name":"WS_SET_LISTENER_PROPERTY_CALLBACK","features":[119]},{"name":"WS_SHORT_CALLBACK","features":[119]},{"name":"WS_SHUTDOWN_SESSION_CHANNEL_CALLBACK","features":[119]},{"name":"WS_SINGLETON_HEADER","features":[119]},{"name":"WS_SOAPUDP_URL","features":[119]},{"name":"WS_SPN_ENDPOINT_IDENTITY","features":[119]},{"name":"WS_SPN_ENDPOINT_IDENTITY_TYPE","features":[119]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING","features":[119]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[3,119]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[119]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[119]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_SSPI_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[119]},{"name":"WS_STREAMED_INPUT_TRANSFER_MODE","features":[119]},{"name":"WS_STREAMED_OUTPUT_TRANSFER_MODE","features":[119]},{"name":"WS_STREAMED_TRANSFER_MODE","features":[119]},{"name":"WS_STRING","features":[119]},{"name":"WS_STRING_DESCRIPTION","features":[119]},{"name":"WS_STRING_TYPE","features":[119]},{"name":"WS_STRING_USERNAME_CREDENTIAL","features":[119]},{"name":"WS_STRING_USERNAME_CREDENTIAL_TYPE","features":[119]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[119]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[119]},{"name":"WS_STRUCT_ABSTRACT","features":[119]},{"name":"WS_STRUCT_DESCRIPTION","features":[3,119]},{"name":"WS_STRUCT_IGNORE_TRAILING_ELEMENT_CONTENT","features":[119]},{"name":"WS_STRUCT_IGNORE_UNHANDLED_ATTRIBUTES","features":[119]},{"name":"WS_STRUCT_TYPE","features":[119]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL","features":[119]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL_TYPE","features":[119]},{"name":"WS_SUPPORTING_MESSAGE_SECURITY_USAGE","features":[119]},{"name":"WS_TCP_BINDING_TEMPLATE","features":[119]},{"name":"WS_TCP_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_TCP_CHANNEL_BINDING","features":[119]},{"name":"WS_TCP_POLICY_DESCRIPTION","features":[119]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE","features":[119]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE","features":[119]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[119]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[119]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[119]},{"name":"WS_TCP_SSPI_POLICY_DESCRIPTION","features":[119]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING","features":[119]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[119]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[119]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE","features":[119]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_TCP_SSPI_USERNAME_POLICY_DESCRIPTION","features":[119]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[119]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[119]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[119]},{"name":"WS_TEXT_FIELD_MAPPING","features":[119]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL","features":[119]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL_TYPE","features":[119]},{"name":"WS_TIMESPAN","features":[119]},{"name":"WS_TIMESPAN_DESCRIPTION","features":[119]},{"name":"WS_TIMESPAN_TYPE","features":[119]},{"name":"WS_TIMESPAN_VALUE_TYPE","features":[119]},{"name":"WS_TO_HEADER","features":[119]},{"name":"WS_TRACE_API","features":[119]},{"name":"WS_TRACE_API_ABANDON_MESSAGE","features":[119]},{"name":"WS_TRACE_API_ABORT_CALL","features":[119]},{"name":"WS_TRACE_API_ABORT_CHANNEL","features":[119]},{"name":"WS_TRACE_API_ABORT_LISTENER","features":[119]},{"name":"WS_TRACE_API_ABORT_SERVICE_HOST","features":[119]},{"name":"WS_TRACE_API_ABORT_SERVICE_PROXY","features":[119]},{"name":"WS_TRACE_API_ACCEPT_CHANNEL","features":[119]},{"name":"WS_TRACE_API_ADDRESS_MESSAGE","features":[119]},{"name":"WS_TRACE_API_ADD_CUSTOM_HEADER","features":[119]},{"name":"WS_TRACE_API_ADD_ERROR_STRING","features":[119]},{"name":"WS_TRACE_API_ADD_MAPPED_HEADER","features":[119]},{"name":"WS_TRACE_API_ALLOC","features":[119]},{"name":"WS_TRACE_API_ASYNC_EXECUTE","features":[119]},{"name":"WS_TRACE_API_CALL","features":[119]},{"name":"WS_TRACE_API_CHECK_MUST_UNDERSTAND_HEADERS","features":[119]},{"name":"WS_TRACE_API_CLOSE_CHANNEL","features":[119]},{"name":"WS_TRACE_API_CLOSE_LISTENER","features":[119]},{"name":"WS_TRACE_API_CLOSE_SERVICE_HOST","features":[119]},{"name":"WS_TRACE_API_CLOSE_SERVICE_PROXY","features":[119]},{"name":"WS_TRACE_API_COMBINE_URL","features":[119]},{"name":"WS_TRACE_API_COPY_ERROR","features":[119]},{"name":"WS_TRACE_API_COPY_NODE","features":[119]},{"name":"WS_TRACE_API_CREATE_CHANNEL","features":[119]},{"name":"WS_TRACE_API_CREATE_CHANNEL_FOR_LISTENER","features":[119]},{"name":"WS_TRACE_API_CREATE_ERROR","features":[119]},{"name":"WS_TRACE_API_CREATE_FAULT_FROM_ERROR","features":[119]},{"name":"WS_TRACE_API_CREATE_HEAP","features":[119]},{"name":"WS_TRACE_API_CREATE_LISTENER","features":[119]},{"name":"WS_TRACE_API_CREATE_MESSAGE","features":[119]},{"name":"WS_TRACE_API_CREATE_MESSAGE_FOR_CHANNEL","features":[119]},{"name":"WS_TRACE_API_CREATE_METADATA","features":[119]},{"name":"WS_TRACE_API_CREATE_READER","features":[119]},{"name":"WS_TRACE_API_CREATE_SERVICE_HOST","features":[119]},{"name":"WS_TRACE_API_CREATE_SERVICE_PROXY","features":[119]},{"name":"WS_TRACE_API_CREATE_WRITER","features":[119]},{"name":"WS_TRACE_API_CREATE_XML_BUFFER","features":[119]},{"name":"WS_TRACE_API_CREATE_XML_SECURITY_TOKEN","features":[119]},{"name":"WS_TRACE_API_DATETIME_TO_FILETIME","features":[119]},{"name":"WS_TRACE_API_DECODE_URL","features":[119]},{"name":"WS_TRACE_API_DUMP_MEMORY","features":[119]},{"name":"WS_TRACE_API_ENCODE_URL","features":[119]},{"name":"WS_TRACE_API_END_READER_CANONICALIZATION","features":[119]},{"name":"WS_TRACE_API_END_WRITER_CANONICALIZATION","features":[119]},{"name":"WS_TRACE_API_FILETIME_TO_DATETIME","features":[119]},{"name":"WS_TRACE_API_FILL_BODY","features":[119]},{"name":"WS_TRACE_API_FILL_READER","features":[119]},{"name":"WS_TRACE_API_FIND_ATTRIBUTE","features":[119]},{"name":"WS_TRACE_API_FLUSH_BODY","features":[119]},{"name":"WS_TRACE_API_FLUSH_WRITER","features":[119]},{"name":"WS_TRACE_API_FREE_CHANNEL","features":[119]},{"name":"WS_TRACE_API_FREE_ERROR","features":[119]},{"name":"WS_TRACE_API_FREE_HEAP","features":[119]},{"name":"WS_TRACE_API_FREE_LISTENER","features":[119]},{"name":"WS_TRACE_API_FREE_MESSAGE","features":[119]},{"name":"WS_TRACE_API_FREE_METADATA","features":[119]},{"name":"WS_TRACE_API_FREE_SECURITY_TOKEN","features":[119]},{"name":"WS_TRACE_API_FREE_SERVICE_HOST","features":[119]},{"name":"WS_TRACE_API_FREE_SERVICE_PROXY","features":[119]},{"name":"WS_TRACE_API_FREE_XML_READER","features":[119]},{"name":"WS_TRACE_API_FREE_XML_WRITER","features":[119]},{"name":"WS_TRACE_API_GET_CHANNEL_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_CONTEXT_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_CUSTOM_HEADER","features":[119]},{"name":"WS_TRACE_API_GET_DICTIONARY","features":[119]},{"name":"WS_TRACE_API_GET_ERROR_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_ERROR_STRING","features":[119]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_DETAIL","features":[119]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_HEADER","features":[119]},{"name":"WS_TRACE_API_GET_HEADER_ATTRIBUTES","features":[119]},{"name":"WS_TRACE_API_GET_HEAP_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_LISTENER_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_MAPPED_HEADER","features":[119]},{"name":"WS_TRACE_API_GET_MESSAGE_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_METADATA_ENDPOINTS","features":[119]},{"name":"WS_TRACE_API_GET_METADATA_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_MISSING_METADATA_DOCUMENT_ADDRESS","features":[119]},{"name":"WS_TRACE_API_GET_POLICY_ALTERNATIVE_COUNT","features":[119]},{"name":"WS_TRACE_API_GET_POLICY_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_READER_NODE","features":[119]},{"name":"WS_TRACE_API_GET_READER_POSITION","features":[119]},{"name":"WS_TRACE_API_GET_READER_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_SECURITY_CONTEXT_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_SECURITY_TOKEN_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_SERVICE_HOST_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_SERVICE_PROXY_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_WRITER_POSITION","features":[119]},{"name":"WS_TRACE_API_GET_WRITER_PROPERTY","features":[119]},{"name":"WS_TRACE_API_GET_XML_ATTRIBUTE","features":[119]},{"name":"WS_TRACE_API_INITIALIZE_MESSAGE","features":[119]},{"name":"WS_TRACE_API_MARK_HEADER_AS_UNDERSTOOD","features":[119]},{"name":"WS_TRACE_API_MATCH_POLICY_ALTERNATIVE","features":[119]},{"name":"WS_TRACE_API_MOVE_READER","features":[119]},{"name":"WS_TRACE_API_MOVE_WRITER","features":[119]},{"name":"WS_TRACE_API_NAMESPACE_FROM_PREFIX","features":[119]},{"name":"WS_TRACE_API_NONE","features":[119]},{"name":"WS_TRACE_API_OPEN_CHANNEL","features":[119]},{"name":"WS_TRACE_API_OPEN_LISTENER","features":[119]},{"name":"WS_TRACE_API_OPEN_SERVICE_HOST","features":[119]},{"name":"WS_TRACE_API_OPEN_SERVICE_PROXY","features":[119]},{"name":"WS_TRACE_API_PREFIX_FROM_NAMESPACE","features":[119]},{"name":"WS_TRACE_API_PULL_BYTES","features":[119]},{"name":"WS_TRACE_API_PUSH_BYTES","features":[119]},{"name":"WS_TRACE_API_READ_ARRAY","features":[119]},{"name":"WS_TRACE_API_READ_ATTRIBUTE_TYPE","features":[119]},{"name":"WS_TRACE_API_READ_BODY","features":[119]},{"name":"WS_TRACE_API_READ_BYTES","features":[119]},{"name":"WS_TRACE_API_READ_CHARS","features":[119]},{"name":"WS_TRACE_API_READ_CHARS_UTF8","features":[119]},{"name":"WS_TRACE_API_READ_ELEMENT_TYPE","features":[119]},{"name":"WS_TRACE_API_READ_ELEMENT_VALUE","features":[119]},{"name":"WS_TRACE_API_READ_ENDPOINT_ADDRESS_EXTENSION","features":[119]},{"name":"WS_TRACE_API_READ_END_ATTRIBUTE","features":[119]},{"name":"WS_TRACE_API_READ_END_ELEMENT","features":[119]},{"name":"WS_TRACE_API_READ_ENVELOPE_END","features":[119]},{"name":"WS_TRACE_API_READ_ENVELOPE_START","features":[119]},{"name":"WS_TRACE_API_READ_MESSAGE_END","features":[119]},{"name":"WS_TRACE_API_READ_MESSAGE_START","features":[119]},{"name":"WS_TRACE_API_READ_METADATA","features":[119]},{"name":"WS_TRACE_API_READ_NODE","features":[119]},{"name":"WS_TRACE_API_READ_QUALIFIED_NAME","features":[119]},{"name":"WS_TRACE_API_READ_START_ATTRIBUTE","features":[119]},{"name":"WS_TRACE_API_READ_START_ELEMENT","features":[119]},{"name":"WS_TRACE_API_READ_TO_START_ELEMENT","features":[119]},{"name":"WS_TRACE_API_READ_TYPE","features":[119]},{"name":"WS_TRACE_API_READ_XML_BUFFER","features":[119]},{"name":"WS_TRACE_API_READ_XML_BUFFER_FROM_BYTES","features":[119]},{"name":"WS_TRACE_API_RECEIVE_MESSAGE","features":[119]},{"name":"WS_TRACE_API_REMOVE_CUSTOM_HEADER","features":[119]},{"name":"WS_TRACE_API_REMOVE_HEADER","features":[119]},{"name":"WS_TRACE_API_REMOVE_MAPPED_HEADER","features":[119]},{"name":"WS_TRACE_API_REMOVE_NODE","features":[119]},{"name":"WS_TRACE_API_REQUEST_REPLY","features":[119]},{"name":"WS_TRACE_API_REQUEST_SECURITY_TOKEN","features":[119]},{"name":"WS_TRACE_API_RESET_CHANNEL","features":[119]},{"name":"WS_TRACE_API_RESET_ERROR","features":[119]},{"name":"WS_TRACE_API_RESET_HEAP","features":[119]},{"name":"WS_TRACE_API_RESET_LISTENER","features":[119]},{"name":"WS_TRACE_API_RESET_MESSAGE","features":[119]},{"name":"WS_TRACE_API_RESET_METADATA","features":[119]},{"name":"WS_TRACE_API_RESET_SERVICE_HOST","features":[119]},{"name":"WS_TRACE_API_RESET_SERVICE_PROXY","features":[119]},{"name":"WS_TRACE_API_REVOKE_SECURITY_CONTEXT","features":[119]},{"name":"WS_TRACE_API_SEND_FAULT_MESSAGE_FOR_ERROR","features":[119]},{"name":"WS_TRACE_API_SEND_MESSAGE","features":[119]},{"name":"WS_TRACE_API_SEND_REPLY_MESSAGE","features":[119]},{"name":"WS_TRACE_API_SERVICE_REGISTER_FOR_CANCEL","features":[119]},{"name":"WS_TRACE_API_SET_AUTOFAIL","features":[119]},{"name":"WS_TRACE_API_SET_CHANNEL_PROPERTY","features":[119]},{"name":"WS_TRACE_API_SET_ERROR_PROPERTY","features":[119]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_DETAIL","features":[119]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_PROPERTY","features":[119]},{"name":"WS_TRACE_API_SET_HEADER","features":[119]},{"name":"WS_TRACE_API_SET_INPUT","features":[119]},{"name":"WS_TRACE_API_SET_INPUT_TO_BUFFER","features":[119]},{"name":"WS_TRACE_API_SET_LISTENER_PROPERTY","features":[119]},{"name":"WS_TRACE_API_SET_MESSAGE_PROPERTY","features":[119]},{"name":"WS_TRACE_API_SET_OUTPUT","features":[119]},{"name":"WS_TRACE_API_SET_OUTPUT_TO_BUFFER","features":[119]},{"name":"WS_TRACE_API_SET_READER_POSITION","features":[119]},{"name":"WS_TRACE_API_SET_WRITER_POSITION","features":[119]},{"name":"WS_TRACE_API_SHUTDOWN_SESSION_CHANNEL","features":[119]},{"name":"WS_TRACE_API_SKIP_NODE","features":[119]},{"name":"WS_TRACE_API_START_READER_CANONICALIZATION","features":[119]},{"name":"WS_TRACE_API_START_WRITER_CANONICALIZATION","features":[119]},{"name":"WS_TRACE_API_TRIM_XML_WHITESPACE","features":[119]},{"name":"WS_TRACE_API_VERIFY_XML_NCNAME","features":[119]},{"name":"WS_TRACE_API_WRITE_ARRAY","features":[119]},{"name":"WS_TRACE_API_WRITE_ATTRIBUTE_TYPE","features":[119]},{"name":"WS_TRACE_API_WRITE_BODY","features":[119]},{"name":"WS_TRACE_API_WRITE_BYTES","features":[119]},{"name":"WS_TRACE_API_WRITE_CHARS","features":[119]},{"name":"WS_TRACE_API_WRITE_CHARS_UTF8","features":[119]},{"name":"WS_TRACE_API_WRITE_ELEMENT_TYPE","features":[119]},{"name":"WS_TRACE_API_WRITE_END_ATTRIBUTE","features":[119]},{"name":"WS_TRACE_API_WRITE_END_CDATA","features":[119]},{"name":"WS_TRACE_API_WRITE_END_ELEMENT","features":[119]},{"name":"WS_TRACE_API_WRITE_END_START_ELEMENT","features":[119]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_END","features":[119]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_START","features":[119]},{"name":"WS_TRACE_API_WRITE_MESSAGE_END","features":[119]},{"name":"WS_TRACE_API_WRITE_MESSAGE_START","features":[119]},{"name":"WS_TRACE_API_WRITE_NODE","features":[119]},{"name":"WS_TRACE_API_WRITE_QUALIFIED_NAME","features":[119]},{"name":"WS_TRACE_API_WRITE_START_ATTRIBUTE","features":[119]},{"name":"WS_TRACE_API_WRITE_START_CDATA","features":[119]},{"name":"WS_TRACE_API_WRITE_START_ELEMENT","features":[119]},{"name":"WS_TRACE_API_WRITE_TEXT","features":[119]},{"name":"WS_TRACE_API_WRITE_TYPE","features":[119]},{"name":"WS_TRACE_API_WRITE_VALUE","features":[119]},{"name":"WS_TRACE_API_WRITE_XMLNS_ATTRIBUTE","features":[119]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER","features":[119]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER_TO_BYTES","features":[119]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_HOST_FROM_TEMPLATE","features":[119]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_PROXY_FROM_TEMPLATE","features":[119]},{"name":"WS_TRACE_API_XML_STRING_EQUALS","features":[119]},{"name":"WS_TRANSFER_MODE","features":[119]},{"name":"WS_TRUST_VERSION","features":[119]},{"name":"WS_TRUST_VERSION_1_3","features":[119]},{"name":"WS_TRUST_VERSION_FEBRUARY_2005","features":[119]},{"name":"WS_TYPE","features":[119]},{"name":"WS_TYPE_ATTRIBUTE_FIELD_MAPPING","features":[119]},{"name":"WS_TYPE_MAPPING","features":[119]},{"name":"WS_UDP_CHANNEL_BINDING","features":[119]},{"name":"WS_UINT16_DESCRIPTION","features":[119]},{"name":"WS_UINT16_TYPE","features":[119]},{"name":"WS_UINT16_VALUE_TYPE","features":[119]},{"name":"WS_UINT32_DESCRIPTION","features":[119]},{"name":"WS_UINT32_TYPE","features":[119]},{"name":"WS_UINT32_VALUE_TYPE","features":[119]},{"name":"WS_UINT64_DESCRIPTION","features":[119]},{"name":"WS_UINT64_TYPE","features":[119]},{"name":"WS_UINT64_VALUE_TYPE","features":[119]},{"name":"WS_UINT8_DESCRIPTION","features":[119]},{"name":"WS_UINT8_TYPE","features":[119]},{"name":"WS_UINT8_VALUE_TYPE","features":[119]},{"name":"WS_UNION_DESCRIPTION","features":[3,119]},{"name":"WS_UNION_FIELD_DESCRIPTION","features":[3,119]},{"name":"WS_UNION_TYPE","features":[119]},{"name":"WS_UNIQUE_ID","features":[119]},{"name":"WS_UNIQUE_ID_DESCRIPTION","features":[119]},{"name":"WS_UNIQUE_ID_TYPE","features":[119]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY","features":[119]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY_TYPE","features":[119]},{"name":"WS_UPN_ENDPOINT_IDENTITY","features":[119]},{"name":"WS_UPN_ENDPOINT_IDENTITY_TYPE","features":[119]},{"name":"WS_URL","features":[119]},{"name":"WS_URL_FLAGS_ALLOW_HOST_WILDCARDS","features":[119]},{"name":"WS_URL_FLAGS_NO_PATH_COLLAPSE","features":[119]},{"name":"WS_URL_FLAGS_ZERO_TERMINATE","features":[119]},{"name":"WS_URL_HTTPS_SCHEME_TYPE","features":[119]},{"name":"WS_URL_HTTP_SCHEME_TYPE","features":[119]},{"name":"WS_URL_NETPIPE_SCHEME_TYPE","features":[119]},{"name":"WS_URL_NETTCP_SCHEME_TYPE","features":[119]},{"name":"WS_URL_SCHEME_TYPE","features":[119]},{"name":"WS_URL_SOAPUDP_SCHEME_TYPE","features":[119]},{"name":"WS_USERNAME_CREDENTIAL","features":[119]},{"name":"WS_USERNAME_CREDENTIAL_TYPE","features":[119]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING","features":[119]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[119]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[119]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[119]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[119]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_UTF8_ARRAY_DESCRIPTION","features":[119]},{"name":"WS_UTF8_ARRAY_TYPE","features":[119]},{"name":"WS_VALIDATE_PASSWORD_CALLBACK","features":[119]},{"name":"WS_VALIDATE_SAML_CALLBACK","features":[119]},{"name":"WS_VALUE_TYPE","features":[119]},{"name":"WS_VOID_DESCRIPTION","features":[119]},{"name":"WS_VOID_TYPE","features":[119]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[119]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[119]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[119]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_KERBEROS","features":[119]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_NTLM","features":[119]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_SPNEGO","features":[119]},{"name":"WS_WRITE_CALLBACK","features":[119]},{"name":"WS_WRITE_MESSAGE_END_CALLBACK","features":[119]},{"name":"WS_WRITE_MESSAGE_START_CALLBACK","features":[119]},{"name":"WS_WRITE_NILLABLE_POINTER","features":[119]},{"name":"WS_WRITE_NILLABLE_VALUE","features":[119]},{"name":"WS_WRITE_OPTION","features":[119]},{"name":"WS_WRITE_REQUIRED_POINTER","features":[119]},{"name":"WS_WRITE_REQUIRED_VALUE","features":[119]},{"name":"WS_WRITE_TYPE_CALLBACK","features":[119]},{"name":"WS_WSZ_DESCRIPTION","features":[119]},{"name":"WS_WSZ_TYPE","features":[119]},{"name":"WS_XML_ATTRIBUTE","features":[3,119]},{"name":"WS_XML_ATTRIBUTE_FIELD_MAPPING","features":[119]},{"name":"WS_XML_BASE64_TEXT","features":[119]},{"name":"WS_XML_BOOL_TEXT","features":[3,119]},{"name":"WS_XML_BUFFER","features":[119]},{"name":"WS_XML_BUFFER_PROPERTY","features":[119]},{"name":"WS_XML_BUFFER_PROPERTY_ID","features":[119]},{"name":"WS_XML_BUFFER_TYPE","features":[119]},{"name":"WS_XML_CANONICALIZATION_ALGORITHM","features":[119]},{"name":"WS_XML_CANONICALIZATION_INCLUSIVE_PREFIXES","features":[3,119]},{"name":"WS_XML_CANONICALIZATION_PROPERTY","features":[119]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ALGORITHM","features":[119]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ID","features":[119]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_INCLUSIVE_PREFIXES","features":[119]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OMITTED_ELEMENT","features":[119]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OUTPUT_BUFFER_SIZE","features":[119]},{"name":"WS_XML_COMMENT_NODE","features":[3,119]},{"name":"WS_XML_DATETIME_TEXT","features":[119]},{"name":"WS_XML_DECIMAL_TEXT","features":[3,119]},{"name":"WS_XML_DICTIONARY","features":[3,119]},{"name":"WS_XML_DOUBLE_TEXT","features":[119]},{"name":"WS_XML_ELEMENT_NODE","features":[3,119]},{"name":"WS_XML_FLOAT_TEXT","features":[119]},{"name":"WS_XML_GUID_TEXT","features":[119]},{"name":"WS_XML_INT32_TEXT","features":[119]},{"name":"WS_XML_INT64_TEXT","features":[119]},{"name":"WS_XML_LIST_TEXT","features":[119]},{"name":"WS_XML_NODE","features":[119]},{"name":"WS_XML_NODE_POSITION","features":[119]},{"name":"WS_XML_NODE_TYPE","features":[119]},{"name":"WS_XML_NODE_TYPE_BOF","features":[119]},{"name":"WS_XML_NODE_TYPE_CDATA","features":[119]},{"name":"WS_XML_NODE_TYPE_COMMENT","features":[119]},{"name":"WS_XML_NODE_TYPE_ELEMENT","features":[119]},{"name":"WS_XML_NODE_TYPE_END_CDATA","features":[119]},{"name":"WS_XML_NODE_TYPE_END_ELEMENT","features":[119]},{"name":"WS_XML_NODE_TYPE_EOF","features":[119]},{"name":"WS_XML_NODE_TYPE_TEXT","features":[119]},{"name":"WS_XML_QNAME","features":[3,119]},{"name":"WS_XML_QNAME_DESCRIPTION","features":[119]},{"name":"WS_XML_QNAME_TEXT","features":[3,119]},{"name":"WS_XML_QNAME_TYPE","features":[119]},{"name":"WS_XML_READER","features":[119]},{"name":"WS_XML_READER_BINARY_ENCODING","features":[3,119]},{"name":"WS_XML_READER_BUFFER_INPUT","features":[119]},{"name":"WS_XML_READER_ENCODING","features":[119]},{"name":"WS_XML_READER_ENCODING_TYPE","features":[119]},{"name":"WS_XML_READER_ENCODING_TYPE_BINARY","features":[119]},{"name":"WS_XML_READER_ENCODING_TYPE_MTOM","features":[119]},{"name":"WS_XML_READER_ENCODING_TYPE_RAW","features":[119]},{"name":"WS_XML_READER_ENCODING_TYPE_TEXT","features":[119]},{"name":"WS_XML_READER_INPUT","features":[119]},{"name":"WS_XML_READER_INPUT_TYPE","features":[119]},{"name":"WS_XML_READER_INPUT_TYPE_BUFFER","features":[119]},{"name":"WS_XML_READER_INPUT_TYPE_STREAM","features":[119]},{"name":"WS_XML_READER_MTOM_ENCODING","features":[3,119]},{"name":"WS_XML_READER_PROPERTIES","features":[119]},{"name":"WS_XML_READER_PROPERTY","features":[119]},{"name":"WS_XML_READER_PROPERTY_ALLOW_FRAGMENT","features":[119]},{"name":"WS_XML_READER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[119]},{"name":"WS_XML_READER_PROPERTY_CHARSET","features":[119]},{"name":"WS_XML_READER_PROPERTY_COLUMN","features":[119]},{"name":"WS_XML_READER_PROPERTY_ID","features":[119]},{"name":"WS_XML_READER_PROPERTY_IN_ATTRIBUTE","features":[119]},{"name":"WS_XML_READER_PROPERTY_MAX_ATTRIBUTES","features":[119]},{"name":"WS_XML_READER_PROPERTY_MAX_DEPTH","features":[119]},{"name":"WS_XML_READER_PROPERTY_MAX_MIME_PARTS","features":[119]},{"name":"WS_XML_READER_PROPERTY_MAX_NAMESPACES","features":[119]},{"name":"WS_XML_READER_PROPERTY_READ_DECLARATION","features":[119]},{"name":"WS_XML_READER_PROPERTY_ROW","features":[119]},{"name":"WS_XML_READER_PROPERTY_STREAM_BUFFER_SIZE","features":[119]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_MIME_HEADERS_SIZE","features":[119]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_ROOT_MIME_PART_SIZE","features":[119]},{"name":"WS_XML_READER_PROPERTY_UTF8_TRIM_SIZE","features":[119]},{"name":"WS_XML_READER_RAW_ENCODING","features":[119]},{"name":"WS_XML_READER_STREAM_INPUT","features":[119]},{"name":"WS_XML_READER_TEXT_ENCODING","features":[119]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY","features":[119]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE","features":[119]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ID","features":[119]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE","features":[119]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[119]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[119]},{"name":"WS_XML_STRING","features":[3,119]},{"name":"WS_XML_STRING_DESCRIPTION","features":[119]},{"name":"WS_XML_STRING_TYPE","features":[119]},{"name":"WS_XML_TEXT","features":[119]},{"name":"WS_XML_TEXT_NODE","features":[119]},{"name":"WS_XML_TEXT_TYPE","features":[119]},{"name":"WS_XML_TEXT_TYPE_BASE64","features":[119]},{"name":"WS_XML_TEXT_TYPE_BOOL","features":[119]},{"name":"WS_XML_TEXT_TYPE_DATETIME","features":[119]},{"name":"WS_XML_TEXT_TYPE_DECIMAL","features":[119]},{"name":"WS_XML_TEXT_TYPE_DOUBLE","features":[119]},{"name":"WS_XML_TEXT_TYPE_FLOAT","features":[119]},{"name":"WS_XML_TEXT_TYPE_GUID","features":[119]},{"name":"WS_XML_TEXT_TYPE_INT32","features":[119]},{"name":"WS_XML_TEXT_TYPE_INT64","features":[119]},{"name":"WS_XML_TEXT_TYPE_LIST","features":[119]},{"name":"WS_XML_TEXT_TYPE_QNAME","features":[119]},{"name":"WS_XML_TEXT_TYPE_TIMESPAN","features":[119]},{"name":"WS_XML_TEXT_TYPE_UINT64","features":[119]},{"name":"WS_XML_TEXT_TYPE_UNIQUE_ID","features":[119]},{"name":"WS_XML_TEXT_TYPE_UTF16","features":[119]},{"name":"WS_XML_TEXT_TYPE_UTF8","features":[119]},{"name":"WS_XML_TIMESPAN_TEXT","features":[119]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING","features":[119]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING_TYPE","features":[119]},{"name":"WS_XML_UINT64_TEXT","features":[119]},{"name":"WS_XML_UNIQUE_ID_TEXT","features":[119]},{"name":"WS_XML_UTF16_TEXT","features":[119]},{"name":"WS_XML_UTF8_TEXT","features":[3,119]},{"name":"WS_XML_WRITER","features":[119]},{"name":"WS_XML_WRITER_BINARY_ENCODING","features":[3,119]},{"name":"WS_XML_WRITER_BUFFER_OUTPUT","features":[119]},{"name":"WS_XML_WRITER_ENCODING","features":[119]},{"name":"WS_XML_WRITER_ENCODING_TYPE","features":[119]},{"name":"WS_XML_WRITER_ENCODING_TYPE_BINARY","features":[119]},{"name":"WS_XML_WRITER_ENCODING_TYPE_MTOM","features":[119]},{"name":"WS_XML_WRITER_ENCODING_TYPE_RAW","features":[119]},{"name":"WS_XML_WRITER_ENCODING_TYPE_TEXT","features":[119]},{"name":"WS_XML_WRITER_MTOM_ENCODING","features":[3,119]},{"name":"WS_XML_WRITER_OUTPUT","features":[119]},{"name":"WS_XML_WRITER_OUTPUT_TYPE","features":[119]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_BUFFER","features":[119]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_STREAM","features":[119]},{"name":"WS_XML_WRITER_PROPERTIES","features":[119]},{"name":"WS_XML_WRITER_PROPERTY","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_FRAGMENT","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_BUFFERS","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_MAX_SIZE","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_TRIM_SIZE","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_BYTES","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_TO_CLOSE","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_WRITTEN","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_CHARSET","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_COMPRESS_EMPTY_ELEMENTS","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_EMIT_UNCOMPRESSED_EMPTY_ELEMENTS","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_ID","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_INDENT","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_INITIAL_BUFFER","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_IN_ATTRIBUTE","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_MAX_ATTRIBUTES","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_MAX_DEPTH","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_MAX_MIME_PARTS_BUFFER_SIZE","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_MAX_NAMESPACES","features":[119]},{"name":"WS_XML_WRITER_PROPERTY_WRITE_DECLARATION","features":[119]},{"name":"WS_XML_WRITER_RAW_ENCODING","features":[119]},{"name":"WS_XML_WRITER_STREAM_OUTPUT","features":[119]},{"name":"WS_XML_WRITER_TEXT_ENCODING","features":[119]},{"name":"WebAuthNAuthenticatorGetAssertion","features":[3,119]},{"name":"WebAuthNAuthenticatorMakeCredential","features":[3,119]},{"name":"WebAuthNCancelCurrentOperation","features":[119]},{"name":"WebAuthNDeletePlatformCredential","features":[119]},{"name":"WebAuthNFreeAssertion","features":[119]},{"name":"WebAuthNFreeCredentialAttestation","features":[3,119]},{"name":"WebAuthNFreePlatformCredentialList","features":[3,119]},{"name":"WebAuthNGetApiVersionNumber","features":[119]},{"name":"WebAuthNGetCancellationId","features":[119]},{"name":"WebAuthNGetErrorName","features":[119]},{"name":"WebAuthNGetPlatformCredentialList","features":[3,119]},{"name":"WebAuthNGetW3CExceptionDOMError","features":[119]},{"name":"WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable","features":[3,119]},{"name":"WsAbandonCall","features":[119]},{"name":"WsAbandonMessage","features":[119]},{"name":"WsAbortChannel","features":[119]},{"name":"WsAbortListener","features":[119]},{"name":"WsAbortServiceHost","features":[119]},{"name":"WsAbortServiceProxy","features":[119]},{"name":"WsAcceptChannel","features":[119]},{"name":"WsAddCustomHeader","features":[3,119]},{"name":"WsAddErrorString","features":[119]},{"name":"WsAddMappedHeader","features":[3,119]},{"name":"WsAddressMessage","features":[119]},{"name":"WsAlloc","features":[119]},{"name":"WsAsyncExecute","features":[119]},{"name":"WsCall","features":[3,119]},{"name":"WsCheckMustUnderstandHeaders","features":[119]},{"name":"WsCloseChannel","features":[119]},{"name":"WsCloseListener","features":[119]},{"name":"WsCloseServiceHost","features":[119]},{"name":"WsCloseServiceProxy","features":[119]},{"name":"WsCombineUrl","features":[119]},{"name":"WsCopyError","features":[119]},{"name":"WsCopyNode","features":[119]},{"name":"WsCreateChannel","features":[119]},{"name":"WsCreateChannelForListener","features":[119]},{"name":"WsCreateError","features":[119]},{"name":"WsCreateFaultFromError","features":[3,119]},{"name":"WsCreateHeap","features":[119]},{"name":"WsCreateListener","features":[119]},{"name":"WsCreateMessage","features":[119]},{"name":"WsCreateMessageForChannel","features":[119]},{"name":"WsCreateMetadata","features":[119]},{"name":"WsCreateReader","features":[119]},{"name":"WsCreateServiceEndpointFromTemplate","features":[3,119]},{"name":"WsCreateServiceHost","features":[3,119]},{"name":"WsCreateServiceProxy","features":[119]},{"name":"WsCreateServiceProxyFromTemplate","features":[119]},{"name":"WsCreateWriter","features":[119]},{"name":"WsCreateXmlBuffer","features":[119]},{"name":"WsCreateXmlSecurityToken","features":[119]},{"name":"WsDateTimeToFileTime","features":[3,119]},{"name":"WsDecodeUrl","features":[119]},{"name":"WsEncodeUrl","features":[119]},{"name":"WsEndReaderCanonicalization","features":[119]},{"name":"WsEndWriterCanonicalization","features":[119]},{"name":"WsFileTimeToDateTime","features":[3,119]},{"name":"WsFillBody","features":[119]},{"name":"WsFillReader","features":[119]},{"name":"WsFindAttribute","features":[3,119]},{"name":"WsFlushBody","features":[119]},{"name":"WsFlushWriter","features":[119]},{"name":"WsFreeChannel","features":[119]},{"name":"WsFreeError","features":[119]},{"name":"WsFreeHeap","features":[119]},{"name":"WsFreeListener","features":[119]},{"name":"WsFreeMessage","features":[119]},{"name":"WsFreeMetadata","features":[119]},{"name":"WsFreeReader","features":[119]},{"name":"WsFreeSecurityToken","features":[119]},{"name":"WsFreeServiceHost","features":[119]},{"name":"WsFreeServiceProxy","features":[119]},{"name":"WsFreeWriter","features":[119]},{"name":"WsGetChannelProperty","features":[119]},{"name":"WsGetCustomHeader","features":[3,119]},{"name":"WsGetDictionary","features":[3,119]},{"name":"WsGetErrorProperty","features":[119]},{"name":"WsGetErrorString","features":[119]},{"name":"WsGetFaultErrorDetail","features":[3,119]},{"name":"WsGetFaultErrorProperty","features":[119]},{"name":"WsGetHeader","features":[119]},{"name":"WsGetHeaderAttributes","features":[119]},{"name":"WsGetHeapProperty","features":[119]},{"name":"WsGetListenerProperty","features":[119]},{"name":"WsGetMappedHeader","features":[3,119]},{"name":"WsGetMessageProperty","features":[119]},{"name":"WsGetMetadataEndpoints","features":[3,119]},{"name":"WsGetMetadataProperty","features":[119]},{"name":"WsGetMissingMetadataDocumentAddress","features":[119]},{"name":"WsGetNamespaceFromPrefix","features":[3,119]},{"name":"WsGetOperationContextProperty","features":[119]},{"name":"WsGetPolicyAlternativeCount","features":[119]},{"name":"WsGetPolicyProperty","features":[119]},{"name":"WsGetPrefixFromNamespace","features":[3,119]},{"name":"WsGetReaderNode","features":[119]},{"name":"WsGetReaderPosition","features":[119]},{"name":"WsGetReaderProperty","features":[119]},{"name":"WsGetSecurityContextProperty","features":[119]},{"name":"WsGetSecurityTokenProperty","features":[119]},{"name":"WsGetServiceHostProperty","features":[119]},{"name":"WsGetServiceProxyProperty","features":[119]},{"name":"WsGetWriterPosition","features":[119]},{"name":"WsGetWriterProperty","features":[119]},{"name":"WsGetXmlAttribute","features":[3,119]},{"name":"WsInitializeMessage","features":[119]},{"name":"WsMarkHeaderAsUnderstood","features":[119]},{"name":"WsMatchPolicyAlternative","features":[3,119]},{"name":"WsMoveReader","features":[3,119]},{"name":"WsMoveWriter","features":[3,119]},{"name":"WsOpenChannel","features":[119]},{"name":"WsOpenListener","features":[119]},{"name":"WsOpenServiceHost","features":[119]},{"name":"WsOpenServiceProxy","features":[119]},{"name":"WsPullBytes","features":[119]},{"name":"WsPushBytes","features":[119]},{"name":"WsReadArray","features":[3,119]},{"name":"WsReadAttribute","features":[3,119]},{"name":"WsReadBody","features":[3,119]},{"name":"WsReadBytes","features":[119]},{"name":"WsReadChars","features":[119]},{"name":"WsReadCharsUtf8","features":[119]},{"name":"WsReadElement","features":[3,119]},{"name":"WsReadEndAttribute","features":[119]},{"name":"WsReadEndElement","features":[119]},{"name":"WsReadEndpointAddressExtension","features":[119]},{"name":"WsReadEnvelopeEnd","features":[119]},{"name":"WsReadEnvelopeStart","features":[119]},{"name":"WsReadMessageEnd","features":[119]},{"name":"WsReadMessageStart","features":[119]},{"name":"WsReadMetadata","features":[119]},{"name":"WsReadNode","features":[119]},{"name":"WsReadQualifiedName","features":[3,119]},{"name":"WsReadStartAttribute","features":[119]},{"name":"WsReadStartElement","features":[119]},{"name":"WsReadToStartElement","features":[3,119]},{"name":"WsReadType","features":[119]},{"name":"WsReadValue","features":[119]},{"name":"WsReadXmlBuffer","features":[119]},{"name":"WsReadXmlBufferFromBytes","features":[119]},{"name":"WsReceiveMessage","features":[3,119]},{"name":"WsRegisterOperationForCancel","features":[119]},{"name":"WsRemoveCustomHeader","features":[3,119]},{"name":"WsRemoveHeader","features":[119]},{"name":"WsRemoveMappedHeader","features":[3,119]},{"name":"WsRemoveNode","features":[119]},{"name":"WsRequestReply","features":[3,119]},{"name":"WsRequestSecurityToken","features":[119]},{"name":"WsResetChannel","features":[119]},{"name":"WsResetError","features":[119]},{"name":"WsResetHeap","features":[119]},{"name":"WsResetListener","features":[119]},{"name":"WsResetMessage","features":[119]},{"name":"WsResetMetadata","features":[119]},{"name":"WsResetServiceHost","features":[119]},{"name":"WsResetServiceProxy","features":[119]},{"name":"WsRevokeSecurityContext","features":[119]},{"name":"WsSendFaultMessageForError","features":[119]},{"name":"WsSendMessage","features":[3,119]},{"name":"WsSendReplyMessage","features":[3,119]},{"name":"WsSetChannelProperty","features":[119]},{"name":"WsSetErrorProperty","features":[119]},{"name":"WsSetFaultErrorDetail","features":[3,119]},{"name":"WsSetFaultErrorProperty","features":[119]},{"name":"WsSetHeader","features":[119]},{"name":"WsSetInput","features":[119]},{"name":"WsSetInputToBuffer","features":[119]},{"name":"WsSetListenerProperty","features":[119]},{"name":"WsSetMessageProperty","features":[119]},{"name":"WsSetOutput","features":[119]},{"name":"WsSetOutputToBuffer","features":[119]},{"name":"WsSetReaderPosition","features":[119]},{"name":"WsSetWriterPosition","features":[119]},{"name":"WsShutdownSessionChannel","features":[119]},{"name":"WsSkipNode","features":[119]},{"name":"WsStartReaderCanonicalization","features":[119]},{"name":"WsStartWriterCanonicalization","features":[119]},{"name":"WsTrimXmlWhitespace","features":[119]},{"name":"WsVerifyXmlNCName","features":[119]},{"name":"WsWriteArray","features":[3,119]},{"name":"WsWriteAttribute","features":[3,119]},{"name":"WsWriteBody","features":[3,119]},{"name":"WsWriteBytes","features":[119]},{"name":"WsWriteChars","features":[119]},{"name":"WsWriteCharsUtf8","features":[119]},{"name":"WsWriteElement","features":[3,119]},{"name":"WsWriteEndAttribute","features":[119]},{"name":"WsWriteEndCData","features":[119]},{"name":"WsWriteEndElement","features":[119]},{"name":"WsWriteEndStartElement","features":[119]},{"name":"WsWriteEnvelopeEnd","features":[119]},{"name":"WsWriteEnvelopeStart","features":[119]},{"name":"WsWriteMessageEnd","features":[119]},{"name":"WsWriteMessageStart","features":[119]},{"name":"WsWriteNode","features":[119]},{"name":"WsWriteQualifiedName","features":[3,119]},{"name":"WsWriteStartAttribute","features":[3,119]},{"name":"WsWriteStartCData","features":[119]},{"name":"WsWriteStartElement","features":[3,119]},{"name":"WsWriteText","features":[119]},{"name":"WsWriteType","features":[119]},{"name":"WsWriteValue","features":[119]},{"name":"WsWriteXmlBuffer","features":[119]},{"name":"WsWriteXmlBufferToBytes","features":[119]},{"name":"WsWriteXmlnsAttribute","features":[3,119]},{"name":"WsXmlStringEquals","features":[3,119]}],"481":[{"name":"ACCESS_ALLOWED_ACE","features":[6]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE","features":[6]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE","features":[6]},{"name":"ACCESS_ALLOWED_OBJECT_ACE","features":[6]},{"name":"ACCESS_DENIED_ACE","features":[6]},{"name":"ACCESS_DENIED_CALLBACK_ACE","features":[6]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE","features":[6]},{"name":"ACCESS_DENIED_OBJECT_ACE","features":[6]},{"name":"ACCESS_REASONS","features":[6]},{"name":"ACE_FLAGS","features":[6]},{"name":"ACE_HEADER","features":[6]},{"name":"ACE_INHERITED_OBJECT_TYPE_PRESENT","features":[6]},{"name":"ACE_OBJECT_TYPE_PRESENT","features":[6]},{"name":"ACE_REVISION","features":[6]},{"name":"ACL","features":[6]},{"name":"ACL_INFORMATION_CLASS","features":[6]},{"name":"ACL_REVISION","features":[6]},{"name":"ACL_REVISION_DS","features":[6]},{"name":"ACL_REVISION_INFORMATION","features":[6]},{"name":"ACL_SIZE_INFORMATION","features":[6]},{"name":"ATTRIBUTE_SECURITY_INFORMATION","features":[6]},{"name":"AUDIT_EVENT_TYPE","features":[6]},{"name":"AccessCheck","features":[3,6]},{"name":"AccessCheckAndAuditAlarmA","features":[3,6]},{"name":"AccessCheckAndAuditAlarmW","features":[3,6]},{"name":"AccessCheckByType","features":[3,6]},{"name":"AccessCheckByTypeAndAuditAlarmA","features":[3,6]},{"name":"AccessCheckByTypeAndAuditAlarmW","features":[3,6]},{"name":"AccessCheckByTypeResultList","features":[3,6]},{"name":"AccessCheckByTypeResultListAndAuditAlarmA","features":[3,6]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleA","features":[3,6]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleW","features":[3,6]},{"name":"AccessCheckByTypeResultListAndAuditAlarmW","features":[3,6]},{"name":"AclRevisionInformation","features":[6]},{"name":"AclSizeInformation","features":[6]},{"name":"AddAccessAllowedAce","features":[3,6]},{"name":"AddAccessAllowedAceEx","features":[3,6]},{"name":"AddAccessAllowedObjectAce","features":[3,6]},{"name":"AddAccessDeniedAce","features":[3,6]},{"name":"AddAccessDeniedAceEx","features":[3,6]},{"name":"AddAccessDeniedObjectAce","features":[3,6]},{"name":"AddAce","features":[3,6]},{"name":"AddAuditAccessAce","features":[3,6]},{"name":"AddAuditAccessAceEx","features":[3,6]},{"name":"AddAuditAccessObjectAce","features":[3,6]},{"name":"AddConditionalAce","features":[3,6]},{"name":"AddMandatoryAce","features":[3,6]},{"name":"AddResourceAttributeAce","features":[3,6]},{"name":"AddScopedPolicyIDAce","features":[3,6]},{"name":"AdjustTokenGroups","features":[3,6]},{"name":"AdjustTokenPrivileges","features":[3,6]},{"name":"AllocateAndInitializeSid","features":[3,6]},{"name":"AllocateLocallyUniqueId","features":[3,6]},{"name":"AreAllAccessesGranted","features":[3,6]},{"name":"AreAnyAccessesGranted","features":[3,6]},{"name":"AuditEventDirectoryServiceAccess","features":[6]},{"name":"AuditEventObjectAccess","features":[6]},{"name":"BACKUP_SECURITY_INFORMATION","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED_BY_DEFAULT","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FLAGS","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_MANDATORY","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INT64","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_SID","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_STRING","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_USE_FOR_DENY_ONLY","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_V1","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[6]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_TYPE","features":[6]},{"name":"CONTAINER_INHERIT_ACE","features":[6]},{"name":"CREATE_RESTRICTED_TOKEN_FLAGS","features":[6]},{"name":"CVT_SECONDS","features":[6]},{"name":"CheckTokenCapability","features":[3,6]},{"name":"CheckTokenMembership","features":[3,6]},{"name":"CheckTokenMembershipEx","features":[3,6]},{"name":"ConvertToAutoInheritPrivateObjectSecurity","features":[3,6]},{"name":"CopySid","features":[3,6]},{"name":"CreatePrivateObjectSecurity","features":[3,6]},{"name":"CreatePrivateObjectSecurityEx","features":[3,6]},{"name":"CreatePrivateObjectSecurityWithMultipleInheritance","features":[3,6]},{"name":"CreateRestrictedToken","features":[3,6]},{"name":"CreateWellKnownSid","features":[3,6]},{"name":"DACL_SECURITY_INFORMATION","features":[6]},{"name":"DISABLE_MAX_PRIVILEGE","features":[6]},{"name":"DeleteAce","features":[3,6]},{"name":"DeriveCapabilitySidsFromName","features":[3,6]},{"name":"DestroyPrivateObjectSecurity","features":[3,6]},{"name":"DuplicateToken","features":[3,6]},{"name":"DuplicateTokenEx","features":[3,6]},{"name":"ENUM_PERIOD","features":[6]},{"name":"ENUM_PERIOD_DAYS","features":[6]},{"name":"ENUM_PERIOD_HOURS","features":[6]},{"name":"ENUM_PERIOD_INVALID","features":[6]},{"name":"ENUM_PERIOD_MINUTES","features":[6]},{"name":"ENUM_PERIOD_MONTHS","features":[6]},{"name":"ENUM_PERIOD_SECONDS","features":[6]},{"name":"ENUM_PERIOD_WEEKS","features":[6]},{"name":"ENUM_PERIOD_YEARS","features":[6]},{"name":"EqualDomainSid","features":[3,6]},{"name":"EqualPrefixSid","features":[3,6]},{"name":"EqualSid","features":[3,6]},{"name":"FAILED_ACCESS_ACE_FLAG","features":[6]},{"name":"FindFirstFreeAce","features":[3,6]},{"name":"FreeSid","features":[6]},{"name":"GENERIC_MAPPING","features":[6]},{"name":"GROUP_SECURITY_INFORMATION","features":[6]},{"name":"GetAce","features":[3,6]},{"name":"GetAclInformation","features":[3,6]},{"name":"GetAppContainerAce","features":[3,6]},{"name":"GetCachedSigningLevel","features":[3,6]},{"name":"GetFileSecurityA","features":[3,6]},{"name":"GetFileSecurityW","features":[3,6]},{"name":"GetKernelObjectSecurity","features":[3,6]},{"name":"GetLengthSid","features":[6]},{"name":"GetPrivateObjectSecurity","features":[3,6]},{"name":"GetSecurityDescriptorControl","features":[3,6]},{"name":"GetSecurityDescriptorDacl","features":[3,6]},{"name":"GetSecurityDescriptorGroup","features":[3,6]},{"name":"GetSecurityDescriptorLength","features":[6]},{"name":"GetSecurityDescriptorOwner","features":[3,6]},{"name":"GetSecurityDescriptorRMControl","features":[6]},{"name":"GetSecurityDescriptorSacl","features":[3,6]},{"name":"GetSidIdentifierAuthority","features":[6]},{"name":"GetSidLengthRequired","features":[6]},{"name":"GetSidSubAuthority","features":[6]},{"name":"GetSidSubAuthorityCount","features":[6]},{"name":"GetTokenInformation","features":[3,6]},{"name":"GetUserObjectSecurity","features":[3,6]},{"name":"GetWindowsAccountDomainSid","features":[3,6]},{"name":"INHERITED_ACE","features":[6]},{"name":"INHERIT_NO_PROPAGATE","features":[6]},{"name":"INHERIT_ONLY","features":[6]},{"name":"INHERIT_ONLY_ACE","features":[6]},{"name":"ImpersonateAnonymousToken","features":[3,6]},{"name":"ImpersonateLoggedOnUser","features":[3,6]},{"name":"ImpersonateSelf","features":[3,6]},{"name":"InitializeAcl","features":[3,6]},{"name":"InitializeSecurityDescriptor","features":[3,6]},{"name":"InitializeSid","features":[3,6]},{"name":"IsTokenRestricted","features":[3,6]},{"name":"IsValidAcl","features":[3,6]},{"name":"IsValidSecurityDescriptor","features":[3,6]},{"name":"IsValidSid","features":[3,6]},{"name":"IsWellKnownSid","features":[3,6]},{"name":"LABEL_SECURITY_INFORMATION","features":[6]},{"name":"LLFILETIME","features":[3,6]},{"name":"LOGON32_LOGON","features":[6]},{"name":"LOGON32_LOGON_BATCH","features":[6]},{"name":"LOGON32_LOGON_INTERACTIVE","features":[6]},{"name":"LOGON32_LOGON_NETWORK","features":[6]},{"name":"LOGON32_LOGON_NETWORK_CLEARTEXT","features":[6]},{"name":"LOGON32_LOGON_NEW_CREDENTIALS","features":[6]},{"name":"LOGON32_LOGON_SERVICE","features":[6]},{"name":"LOGON32_LOGON_UNLOCK","features":[6]},{"name":"LOGON32_PROVIDER","features":[6]},{"name":"LOGON32_PROVIDER_DEFAULT","features":[6]},{"name":"LOGON32_PROVIDER_WINNT40","features":[6]},{"name":"LOGON32_PROVIDER_WINNT50","features":[6]},{"name":"LUA_TOKEN","features":[6]},{"name":"LUID_AND_ATTRIBUTES","features":[3,6]},{"name":"LogonUserA","features":[3,6]},{"name":"LogonUserExA","features":[3,6]},{"name":"LogonUserExW","features":[3,6]},{"name":"LogonUserW","features":[3,6]},{"name":"LookupAccountNameA","features":[3,6]},{"name":"LookupAccountNameW","features":[3,6]},{"name":"LookupAccountSidA","features":[3,6]},{"name":"LookupAccountSidW","features":[3,6]},{"name":"LookupPrivilegeDisplayNameA","features":[3,6]},{"name":"LookupPrivilegeDisplayNameW","features":[3,6]},{"name":"LookupPrivilegeNameA","features":[3,6]},{"name":"LookupPrivilegeNameW","features":[3,6]},{"name":"LookupPrivilegeValueA","features":[3,6]},{"name":"LookupPrivilegeValueW","features":[3,6]},{"name":"MANDATORY_LEVEL","features":[6]},{"name":"MakeAbsoluteSD","features":[3,6]},{"name":"MakeSelfRelativeSD","features":[3,6]},{"name":"MandatoryLevelCount","features":[6]},{"name":"MandatoryLevelHigh","features":[6]},{"name":"MandatoryLevelLow","features":[6]},{"name":"MandatoryLevelMedium","features":[6]},{"name":"MandatoryLevelSecureProcess","features":[6]},{"name":"MandatoryLevelSystem","features":[6]},{"name":"MandatoryLevelUntrusted","features":[6]},{"name":"MapGenericMask","features":[6]},{"name":"MaxTokenInfoClass","features":[6]},{"name":"NCRYPT_DESCRIPTOR_HANDLE","features":[6]},{"name":"NCRYPT_STREAM_HANDLE","features":[6]},{"name":"NO_INHERITANCE","features":[6]},{"name":"NO_PROPAGATE_INHERIT_ACE","features":[6]},{"name":"OBJECT_INHERIT_ACE","features":[6]},{"name":"OBJECT_SECURITY_INFORMATION","features":[6]},{"name":"OBJECT_TYPE_LIST","features":[6]},{"name":"OWNER_SECURITY_INFORMATION","features":[6]},{"name":"ObjectCloseAuditAlarmA","features":[3,6]},{"name":"ObjectCloseAuditAlarmW","features":[3,6]},{"name":"ObjectDeleteAuditAlarmA","features":[3,6]},{"name":"ObjectDeleteAuditAlarmW","features":[3,6]},{"name":"ObjectOpenAuditAlarmA","features":[3,6]},{"name":"ObjectOpenAuditAlarmW","features":[3,6]},{"name":"ObjectPrivilegeAuditAlarmA","features":[3,6]},{"name":"ObjectPrivilegeAuditAlarmW","features":[3,6]},{"name":"PLSA_AP_CALL_PACKAGE_UNTRUSTED","features":[3,6]},{"name":"PRIVILEGE_SET","features":[3,6]},{"name":"PROTECTED_DACL_SECURITY_INFORMATION","features":[6]},{"name":"PROTECTED_SACL_SECURITY_INFORMATION","features":[6]},{"name":"PSECURITY_DESCRIPTOR","features":[6]},{"name":"PSID","features":[6]},{"name":"PrivilegeCheck","features":[3,6]},{"name":"PrivilegedServiceAuditAlarmA","features":[3,6]},{"name":"PrivilegedServiceAuditAlarmW","features":[3,6]},{"name":"QUOTA_LIMITS","features":[6]},{"name":"QuerySecurityAccessMask","features":[6]},{"name":"RevertToSelf","features":[3,6]},{"name":"RtlConvertSidToUnicodeString","features":[3,6]},{"name":"RtlNormalizeSecurityDescriptor","features":[3,6]},{"name":"SACL_SECURITY_INFORMATION","features":[6]},{"name":"SAFER_LEVEL_HANDLE","features":[6]},{"name":"SANDBOX_INERT","features":[6]},{"name":"SCOPE_SECURITY_INFORMATION","features":[6]},{"name":"SECURITY_APP_PACKAGE_AUTHORITY","features":[6]},{"name":"SECURITY_ATTRIBUTES","features":[3,6]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY","features":[6]},{"name":"SECURITY_AUTO_INHERIT_FLAGS","features":[6]},{"name":"SECURITY_CAPABILITIES","features":[6]},{"name":"SECURITY_CREATOR_SID_AUTHORITY","features":[6]},{"name":"SECURITY_DESCRIPTOR","features":[6]},{"name":"SECURITY_DESCRIPTOR_CONTROL","features":[6]},{"name":"SECURITY_DESCRIPTOR_RELATIVE","features":[6]},{"name":"SECURITY_DYNAMIC_TRACKING","features":[3,6]},{"name":"SECURITY_IMPERSONATION_LEVEL","features":[6]},{"name":"SECURITY_LOCAL_SID_AUTHORITY","features":[6]},{"name":"SECURITY_MANDATORY_LABEL_AUTHORITY","features":[6]},{"name":"SECURITY_MAX_SID_SIZE","features":[6]},{"name":"SECURITY_NON_UNIQUE_AUTHORITY","features":[6]},{"name":"SECURITY_NT_AUTHORITY","features":[6]},{"name":"SECURITY_NULL_SID_AUTHORITY","features":[6]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY","features":[6]},{"name":"SECURITY_QUALITY_OF_SERVICE","features":[3,6]},{"name":"SECURITY_RESOURCE_MANAGER_AUTHORITY","features":[6]},{"name":"SECURITY_SCOPED_POLICY_ID_AUTHORITY","features":[6]},{"name":"SECURITY_STATIC_TRACKING","features":[3,6]},{"name":"SECURITY_WORLD_SID_AUTHORITY","features":[6]},{"name":"SEC_THREAD_START","features":[6]},{"name":"SEF_AVOID_OWNER_CHECK","features":[6]},{"name":"SEF_AVOID_OWNER_RESTRICTION","features":[6]},{"name":"SEF_AVOID_PRIVILEGE_CHECK","features":[6]},{"name":"SEF_DACL_AUTO_INHERIT","features":[6]},{"name":"SEF_DEFAULT_DESCRIPTOR_FOR_OBJECT","features":[6]},{"name":"SEF_DEFAULT_GROUP_FROM_PARENT","features":[6]},{"name":"SEF_DEFAULT_OWNER_FROM_PARENT","features":[6]},{"name":"SEF_MACL_NO_EXECUTE_UP","features":[6]},{"name":"SEF_MACL_NO_READ_UP","features":[6]},{"name":"SEF_MACL_NO_WRITE_UP","features":[6]},{"name":"SEF_SACL_AUTO_INHERIT","features":[6]},{"name":"SE_ACCESS_REPLY","features":[3,6]},{"name":"SE_ACCESS_REQUEST","features":[6]},{"name":"SE_ASSIGNPRIMARYTOKEN_NAME","features":[6]},{"name":"SE_AUDIT_NAME","features":[6]},{"name":"SE_BACKUP_NAME","features":[6]},{"name":"SE_CHANGE_NOTIFY_NAME","features":[6]},{"name":"SE_CREATE_GLOBAL_NAME","features":[6]},{"name":"SE_CREATE_PAGEFILE_NAME","features":[6]},{"name":"SE_CREATE_PERMANENT_NAME","features":[6]},{"name":"SE_CREATE_SYMBOLIC_LINK_NAME","features":[6]},{"name":"SE_CREATE_TOKEN_NAME","features":[6]},{"name":"SE_DACL_AUTO_INHERITED","features":[6]},{"name":"SE_DACL_AUTO_INHERIT_REQ","features":[6]},{"name":"SE_DACL_DEFAULTED","features":[6]},{"name":"SE_DACL_PRESENT","features":[6]},{"name":"SE_DACL_PROTECTED","features":[6]},{"name":"SE_DEBUG_NAME","features":[6]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_NAME","features":[6]},{"name":"SE_ENABLE_DELEGATION_NAME","features":[6]},{"name":"SE_GROUP_DEFAULTED","features":[6]},{"name":"SE_IMPERSONATE_NAME","features":[6]},{"name":"SE_IMPERSONATION_STATE","features":[3,6]},{"name":"SE_INCREASE_QUOTA_NAME","features":[6]},{"name":"SE_INC_BASE_PRIORITY_NAME","features":[6]},{"name":"SE_INC_WORKING_SET_NAME","features":[6]},{"name":"SE_LOAD_DRIVER_NAME","features":[6]},{"name":"SE_LOCK_MEMORY_NAME","features":[6]},{"name":"SE_MACHINE_ACCOUNT_NAME","features":[6]},{"name":"SE_MANAGE_VOLUME_NAME","features":[6]},{"name":"SE_OWNER_DEFAULTED","features":[6]},{"name":"SE_PRIVILEGE_ENABLED","features":[6]},{"name":"SE_PRIVILEGE_ENABLED_BY_DEFAULT","features":[6]},{"name":"SE_PRIVILEGE_REMOVED","features":[6]},{"name":"SE_PRIVILEGE_USED_FOR_ACCESS","features":[6]},{"name":"SE_PROF_SINGLE_PROCESS_NAME","features":[6]},{"name":"SE_RELABEL_NAME","features":[6]},{"name":"SE_REMOTE_SHUTDOWN_NAME","features":[6]},{"name":"SE_RESTORE_NAME","features":[6]},{"name":"SE_RM_CONTROL_VALID","features":[6]},{"name":"SE_SACL_AUTO_INHERITED","features":[6]},{"name":"SE_SACL_AUTO_INHERIT_REQ","features":[6]},{"name":"SE_SACL_DEFAULTED","features":[6]},{"name":"SE_SACL_PRESENT","features":[6]},{"name":"SE_SACL_PROTECTED","features":[6]},{"name":"SE_SECURITY_DESCRIPTOR","features":[6]},{"name":"SE_SECURITY_NAME","features":[6]},{"name":"SE_SELF_RELATIVE","features":[6]},{"name":"SE_SHUTDOWN_NAME","features":[6]},{"name":"SE_SID","features":[6]},{"name":"SE_SYNC_AGENT_NAME","features":[6]},{"name":"SE_SYSTEMTIME_NAME","features":[6]},{"name":"SE_SYSTEM_ENVIRONMENT_NAME","features":[6]},{"name":"SE_SYSTEM_PROFILE_NAME","features":[6]},{"name":"SE_TAKE_OWNERSHIP_NAME","features":[6]},{"name":"SE_TCB_NAME","features":[6]},{"name":"SE_TIME_ZONE_NAME","features":[6]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_NAME","features":[6]},{"name":"SE_UNDOCK_NAME","features":[6]},{"name":"SE_UNSOLICITED_INPUT_NAME","features":[6]},{"name":"SID","features":[6]},{"name":"SID_AND_ATTRIBUTES","features":[6]},{"name":"SID_AND_ATTRIBUTES_HASH","features":[6]},{"name":"SID_IDENTIFIER_AUTHORITY","features":[6]},{"name":"SID_NAME_USE","features":[6]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_NOT_VALIDATED","features":[6]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_VALIDATE_ONLY","features":[6]},{"name":"SIGNING_LEVEL_MICROSOFT","features":[6]},{"name":"SUB_CONTAINERS_AND_OBJECTS_INHERIT","features":[6]},{"name":"SUB_CONTAINERS_ONLY_INHERIT","features":[6]},{"name":"SUB_OBJECTS_ONLY_INHERIT","features":[6]},{"name":"SUCCESSFUL_ACCESS_ACE_FLAG","features":[6]},{"name":"SYSTEM_ACCESS_FILTER_ACE","features":[6]},{"name":"SYSTEM_ALARM_ACE","features":[6]},{"name":"SYSTEM_ALARM_CALLBACK_ACE","features":[6]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE","features":[6]},{"name":"SYSTEM_ALARM_OBJECT_ACE","features":[6]},{"name":"SYSTEM_AUDIT_ACE","features":[6]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE","features":[6]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE","features":[6]},{"name":"SYSTEM_AUDIT_OBJECT_ACE","features":[6]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_FLAGS","features":[6]},{"name":"SYSTEM_MANDATORY_LABEL_ACE","features":[6]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[6]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE","features":[6]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE","features":[6]},{"name":"SecurityAnonymous","features":[6]},{"name":"SecurityDelegation","features":[6]},{"name":"SecurityIdentification","features":[6]},{"name":"SecurityImpersonation","features":[6]},{"name":"SetAclInformation","features":[3,6]},{"name":"SetCachedSigningLevel","features":[3,6]},{"name":"SetFileSecurityA","features":[3,6]},{"name":"SetFileSecurityW","features":[3,6]},{"name":"SetKernelObjectSecurity","features":[3,6]},{"name":"SetPrivateObjectSecurity","features":[3,6]},{"name":"SetPrivateObjectSecurityEx","features":[3,6]},{"name":"SetSecurityAccessMask","features":[6]},{"name":"SetSecurityDescriptorControl","features":[3,6]},{"name":"SetSecurityDescriptorDacl","features":[3,6]},{"name":"SetSecurityDescriptorGroup","features":[3,6]},{"name":"SetSecurityDescriptorOwner","features":[3,6]},{"name":"SetSecurityDescriptorRMControl","features":[6]},{"name":"SetSecurityDescriptorSacl","features":[3,6]},{"name":"SetTokenInformation","features":[3,6]},{"name":"SetUserObjectSecurity","features":[3,6]},{"name":"SidTypeAlias","features":[6]},{"name":"SidTypeComputer","features":[6]},{"name":"SidTypeDeletedAccount","features":[6]},{"name":"SidTypeDomain","features":[6]},{"name":"SidTypeGroup","features":[6]},{"name":"SidTypeInvalid","features":[6]},{"name":"SidTypeLabel","features":[6]},{"name":"SidTypeLogonSession","features":[6]},{"name":"SidTypeUnknown","features":[6]},{"name":"SidTypeUser","features":[6]},{"name":"SidTypeWellKnownGroup","features":[6]},{"name":"TOKEN_ACCESS_INFORMATION","features":[3,6]},{"name":"TOKEN_ACCESS_MASK","features":[6]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE","features":[6]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE_WIN8","features":[6]},{"name":"TOKEN_ACCESS_SYSTEM_SECURITY","features":[6]},{"name":"TOKEN_ADJUST_DEFAULT","features":[6]},{"name":"TOKEN_ADJUST_GROUPS","features":[6]},{"name":"TOKEN_ADJUST_PRIVILEGES","features":[6]},{"name":"TOKEN_ADJUST_SESSIONID","features":[6]},{"name":"TOKEN_ALL_ACCESS","features":[6]},{"name":"TOKEN_APPCONTAINER_INFORMATION","features":[6]},{"name":"TOKEN_ASSIGN_PRIMARY","features":[6]},{"name":"TOKEN_AUDIT_POLICY","features":[6]},{"name":"TOKEN_CONTROL","features":[3,6]},{"name":"TOKEN_DEFAULT_DACL","features":[6]},{"name":"TOKEN_DELETE","features":[6]},{"name":"TOKEN_DEVICE_CLAIMS","features":[6]},{"name":"TOKEN_DUPLICATE","features":[6]},{"name":"TOKEN_ELEVATION","features":[6]},{"name":"TOKEN_ELEVATION_TYPE","features":[6]},{"name":"TOKEN_EXECUTE","features":[6]},{"name":"TOKEN_GROUPS","features":[6]},{"name":"TOKEN_GROUPS_AND_PRIVILEGES","features":[3,6]},{"name":"TOKEN_IMPERSONATE","features":[6]},{"name":"TOKEN_INFORMATION_CLASS","features":[6]},{"name":"TOKEN_LINKED_TOKEN","features":[3,6]},{"name":"TOKEN_MANDATORY_LABEL","features":[6]},{"name":"TOKEN_MANDATORY_POLICY","features":[6]},{"name":"TOKEN_MANDATORY_POLICY_ID","features":[6]},{"name":"TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN","features":[6]},{"name":"TOKEN_MANDATORY_POLICY_NO_WRITE_UP","features":[6]},{"name":"TOKEN_MANDATORY_POLICY_OFF","features":[6]},{"name":"TOKEN_MANDATORY_POLICY_VALID_MASK","features":[6]},{"name":"TOKEN_ORIGIN","features":[3,6]},{"name":"TOKEN_OWNER","features":[6]},{"name":"TOKEN_PRIMARY_GROUP","features":[6]},{"name":"TOKEN_PRIVILEGES","features":[3,6]},{"name":"TOKEN_PRIVILEGES_ATTRIBUTES","features":[6]},{"name":"TOKEN_QUERY","features":[6]},{"name":"TOKEN_QUERY_SOURCE","features":[6]},{"name":"TOKEN_READ","features":[6]},{"name":"TOKEN_READ_CONTROL","features":[6]},{"name":"TOKEN_SOURCE","features":[3,6]},{"name":"TOKEN_STATISTICS","features":[3,6]},{"name":"TOKEN_TRUST_CONSTRAINT_MASK","features":[6]},{"name":"TOKEN_TYPE","features":[6]},{"name":"TOKEN_USER","features":[6]},{"name":"TOKEN_USER_CLAIMS","features":[6]},{"name":"TOKEN_WRITE","features":[6]},{"name":"TOKEN_WRITE_DAC","features":[6]},{"name":"TOKEN_WRITE_OWNER","features":[6]},{"name":"TokenAccessInformation","features":[6]},{"name":"TokenAppContainerNumber","features":[6]},{"name":"TokenAppContainerSid","features":[6]},{"name":"TokenAuditPolicy","features":[6]},{"name":"TokenBnoIsolation","features":[6]},{"name":"TokenCapabilities","features":[6]},{"name":"TokenChildProcessFlags","features":[6]},{"name":"TokenDefaultDacl","features":[6]},{"name":"TokenDeviceClaimAttributes","features":[6]},{"name":"TokenDeviceGroups","features":[6]},{"name":"TokenElevation","features":[6]},{"name":"TokenElevationType","features":[6]},{"name":"TokenElevationTypeDefault","features":[6]},{"name":"TokenElevationTypeFull","features":[6]},{"name":"TokenElevationTypeLimited","features":[6]},{"name":"TokenGroups","features":[6]},{"name":"TokenGroupsAndPrivileges","features":[6]},{"name":"TokenHasRestrictions","features":[6]},{"name":"TokenImpersonation","features":[6]},{"name":"TokenImpersonationLevel","features":[6]},{"name":"TokenIntegrityLevel","features":[6]},{"name":"TokenIsAppContainer","features":[6]},{"name":"TokenIsAppSilo","features":[6]},{"name":"TokenIsLessPrivilegedAppContainer","features":[6]},{"name":"TokenIsRestricted","features":[6]},{"name":"TokenIsSandboxed","features":[6]},{"name":"TokenLinkedToken","features":[6]},{"name":"TokenLogonSid","features":[6]},{"name":"TokenMandatoryPolicy","features":[6]},{"name":"TokenOrigin","features":[6]},{"name":"TokenOwner","features":[6]},{"name":"TokenPrimary","features":[6]},{"name":"TokenPrimaryGroup","features":[6]},{"name":"TokenPrivateNameSpace","features":[6]},{"name":"TokenPrivileges","features":[6]},{"name":"TokenProcessTrustLevel","features":[6]},{"name":"TokenRestrictedDeviceClaimAttributes","features":[6]},{"name":"TokenRestrictedDeviceGroups","features":[6]},{"name":"TokenRestrictedSids","features":[6]},{"name":"TokenRestrictedUserClaimAttributes","features":[6]},{"name":"TokenSandBoxInert","features":[6]},{"name":"TokenSecurityAttributes","features":[6]},{"name":"TokenSessionId","features":[6]},{"name":"TokenSessionReference","features":[6]},{"name":"TokenSingletonAttributes","features":[6]},{"name":"TokenSource","features":[6]},{"name":"TokenStatistics","features":[6]},{"name":"TokenType","features":[6]},{"name":"TokenUIAccess","features":[6]},{"name":"TokenUser","features":[6]},{"name":"TokenUserClaimAttributes","features":[6]},{"name":"TokenVirtualizationAllowed","features":[6]},{"name":"TokenVirtualizationEnabled","features":[6]},{"name":"UNPROTECTED_DACL_SECURITY_INFORMATION","features":[6]},{"name":"UNPROTECTED_SACL_SECURITY_INFORMATION","features":[6]},{"name":"WELL_KNOWN_SID_TYPE","features":[6]},{"name":"WRITE_RESTRICTED","features":[6]},{"name":"WinAccountAdministratorSid","features":[6]},{"name":"WinAccountCertAdminsSid","features":[6]},{"name":"WinAccountCloneableControllersSid","features":[6]},{"name":"WinAccountComputersSid","features":[6]},{"name":"WinAccountControllersSid","features":[6]},{"name":"WinAccountDefaultSystemManagedSid","features":[6]},{"name":"WinAccountDomainAdminsSid","features":[6]},{"name":"WinAccountDomainGuestsSid","features":[6]},{"name":"WinAccountDomainUsersSid","features":[6]},{"name":"WinAccountEnterpriseAdminsSid","features":[6]},{"name":"WinAccountEnterpriseKeyAdminsSid","features":[6]},{"name":"WinAccountGuestSid","features":[6]},{"name":"WinAccountKeyAdminsSid","features":[6]},{"name":"WinAccountKrbtgtSid","features":[6]},{"name":"WinAccountPolicyAdminsSid","features":[6]},{"name":"WinAccountProtectedUsersSid","features":[6]},{"name":"WinAccountRasAndIasServersSid","features":[6]},{"name":"WinAccountReadonlyControllersSid","features":[6]},{"name":"WinAccountSchemaAdminsSid","features":[6]},{"name":"WinAnonymousSid","features":[6]},{"name":"WinApplicationPackageAuthoritySid","features":[6]},{"name":"WinAuthenticatedUserSid","features":[6]},{"name":"WinAuthenticationAuthorityAssertedSid","features":[6]},{"name":"WinAuthenticationFreshKeyAuthSid","features":[6]},{"name":"WinAuthenticationKeyPropertyAttestationSid","features":[6]},{"name":"WinAuthenticationKeyPropertyMFASid","features":[6]},{"name":"WinAuthenticationKeyTrustSid","features":[6]},{"name":"WinAuthenticationServiceAssertedSid","features":[6]},{"name":"WinBatchSid","features":[6]},{"name":"WinBuiltinAccessControlAssistanceOperatorsSid","features":[6]},{"name":"WinBuiltinAccountOperatorsSid","features":[6]},{"name":"WinBuiltinAdministratorsSid","features":[6]},{"name":"WinBuiltinAnyPackageSid","features":[6]},{"name":"WinBuiltinAuthorizationAccessSid","features":[6]},{"name":"WinBuiltinBackupOperatorsSid","features":[6]},{"name":"WinBuiltinCertSvcDComAccessGroup","features":[6]},{"name":"WinBuiltinCryptoOperatorsSid","features":[6]},{"name":"WinBuiltinDCOMUsersSid","features":[6]},{"name":"WinBuiltinDefaultSystemManagedGroupSid","features":[6]},{"name":"WinBuiltinDeviceOwnersSid","features":[6]},{"name":"WinBuiltinDomainSid","features":[6]},{"name":"WinBuiltinEventLogReadersGroup","features":[6]},{"name":"WinBuiltinGuestsSid","features":[6]},{"name":"WinBuiltinHyperVAdminsSid","features":[6]},{"name":"WinBuiltinIUsersSid","features":[6]},{"name":"WinBuiltinIncomingForestTrustBuildersSid","features":[6]},{"name":"WinBuiltinNetworkConfigurationOperatorsSid","features":[6]},{"name":"WinBuiltinPerfLoggingUsersSid","features":[6]},{"name":"WinBuiltinPerfMonitoringUsersSid","features":[6]},{"name":"WinBuiltinPowerUsersSid","features":[6]},{"name":"WinBuiltinPreWindows2000CompatibleAccessSid","features":[6]},{"name":"WinBuiltinPrintOperatorsSid","features":[6]},{"name":"WinBuiltinRDSEndpointServersSid","features":[6]},{"name":"WinBuiltinRDSManagementServersSid","features":[6]},{"name":"WinBuiltinRDSRemoteAccessServersSid","features":[6]},{"name":"WinBuiltinRemoteDesktopUsersSid","features":[6]},{"name":"WinBuiltinRemoteManagementUsersSid","features":[6]},{"name":"WinBuiltinReplicatorSid","features":[6]},{"name":"WinBuiltinStorageReplicaAdminsSid","features":[6]},{"name":"WinBuiltinSystemOperatorsSid","features":[6]},{"name":"WinBuiltinTerminalServerLicenseServersSid","features":[6]},{"name":"WinBuiltinUsersSid","features":[6]},{"name":"WinCacheablePrincipalsGroupSid","features":[6]},{"name":"WinCapabilityAppointmentsSid","features":[6]},{"name":"WinCapabilityContactsSid","features":[6]},{"name":"WinCapabilityDocumentsLibrarySid","features":[6]},{"name":"WinCapabilityEnterpriseAuthenticationSid","features":[6]},{"name":"WinCapabilityInternetClientServerSid","features":[6]},{"name":"WinCapabilityInternetClientSid","features":[6]},{"name":"WinCapabilityMusicLibrarySid","features":[6]},{"name":"WinCapabilityPicturesLibrarySid","features":[6]},{"name":"WinCapabilityPrivateNetworkClientServerSid","features":[6]},{"name":"WinCapabilityRemovableStorageSid","features":[6]},{"name":"WinCapabilitySharedUserCertificatesSid","features":[6]},{"name":"WinCapabilityVideosLibrarySid","features":[6]},{"name":"WinConsoleLogonSid","features":[6]},{"name":"WinCreatorGroupServerSid","features":[6]},{"name":"WinCreatorGroupSid","features":[6]},{"name":"WinCreatorOwnerRightsSid","features":[6]},{"name":"WinCreatorOwnerServerSid","features":[6]},{"name":"WinCreatorOwnerSid","features":[6]},{"name":"WinDialupSid","features":[6]},{"name":"WinDigestAuthenticationSid","features":[6]},{"name":"WinEnterpriseControllersSid","features":[6]},{"name":"WinEnterpriseReadonlyControllersSid","features":[6]},{"name":"WinHighLabelSid","features":[6]},{"name":"WinIUserSid","features":[6]},{"name":"WinInteractiveSid","features":[6]},{"name":"WinLocalAccountAndAdministratorSid","features":[6]},{"name":"WinLocalAccountSid","features":[6]},{"name":"WinLocalLogonSid","features":[6]},{"name":"WinLocalServiceSid","features":[6]},{"name":"WinLocalSid","features":[6]},{"name":"WinLocalSystemSid","features":[6]},{"name":"WinLogonIdsSid","features":[6]},{"name":"WinLowLabelSid","features":[6]},{"name":"WinMediumLabelSid","features":[6]},{"name":"WinMediumPlusLabelSid","features":[6]},{"name":"WinNTLMAuthenticationSid","features":[6]},{"name":"WinNetworkServiceSid","features":[6]},{"name":"WinNetworkSid","features":[6]},{"name":"WinNewEnterpriseReadonlyControllersSid","features":[6]},{"name":"WinNonCacheablePrincipalsGroupSid","features":[6]},{"name":"WinNtAuthoritySid","features":[6]},{"name":"WinNullSid","features":[6]},{"name":"WinOtherOrganizationSid","features":[6]},{"name":"WinProxySid","features":[6]},{"name":"WinRemoteLogonIdSid","features":[6]},{"name":"WinRestrictedCodeSid","features":[6]},{"name":"WinSChannelAuthenticationSid","features":[6]},{"name":"WinSelfSid","features":[6]},{"name":"WinServiceSid","features":[6]},{"name":"WinSystemLabelSid","features":[6]},{"name":"WinTerminalServerSid","features":[6]},{"name":"WinThisOrganizationCertificateSid","features":[6]},{"name":"WinThisOrganizationSid","features":[6]},{"name":"WinUntrustedLabelSid","features":[6]},{"name":"WinUserModeDriversSid","features":[6]},{"name":"WinWorldSid","features":[6]},{"name":"WinWriteRestrictedCodeSid","features":[6]},{"name":"cwcFILENAMESUFFIXMAX","features":[6]},{"name":"cwcHRESULTSTRING","features":[6]},{"name":"szLBRACE","features":[6]},{"name":"szLPAREN","features":[6]},{"name":"szRBRACE","features":[6]},{"name":"szRPAREN","features":[6]},{"name":"wszCERTENROLLSHAREPATH","features":[6]},{"name":"wszFCSAPARM_CERTFILENAMESUFFIX","features":[6]},{"name":"wszFCSAPARM_CONFIGDN","features":[6]},{"name":"wszFCSAPARM_CRLDELTAFILENAMESUFFIX","features":[6]},{"name":"wszFCSAPARM_CRLFILENAMESUFFIX","features":[6]},{"name":"wszFCSAPARM_DOMAINDN","features":[6]},{"name":"wszFCSAPARM_DSCACERTATTRIBUTE","features":[6]},{"name":"wszFCSAPARM_DSCRLATTRIBUTE","features":[6]},{"name":"wszFCSAPARM_DSCROSSCERTPAIRATTRIBUTE","features":[6]},{"name":"wszFCSAPARM_DSKRACERTATTRIBUTE","features":[6]},{"name":"wszFCSAPARM_DSUSERCERTATTRIBUTE","features":[6]},{"name":"wszFCSAPARM_SANITIZEDCANAME","features":[6]},{"name":"wszFCSAPARM_SANITIZEDCANAMEHASH","features":[6]},{"name":"wszFCSAPARM_SERVERDNSNAME","features":[6]},{"name":"wszFCSAPARM_SERVERSHORTNAME","features":[6]},{"name":"wszLBRACE","features":[6]},{"name":"wszLPAREN","features":[6]},{"name":"wszRBRACE","features":[6]},{"name":"wszRPAREN","features":[6]}],"482":[{"name":"SAFER_CODE_PROPERTIES_V1","features":[3,120,70]},{"name":"SAFER_CODE_PROPERTIES_V2","features":[3,120,70]},{"name":"SAFER_COMPUTE_TOKEN_FROM_LEVEL_FLAGS","features":[120]},{"name":"SAFER_CRITERIA_APPX_PACKAGE","features":[120]},{"name":"SAFER_CRITERIA_AUTHENTICODE","features":[120]},{"name":"SAFER_CRITERIA_IMAGEHASH","features":[120]},{"name":"SAFER_CRITERIA_IMAGEPATH","features":[120]},{"name":"SAFER_CRITERIA_IMAGEPATH_NT","features":[120]},{"name":"SAFER_CRITERIA_NOSIGNEDHASH","features":[120]},{"name":"SAFER_CRITERIA_URLZONE","features":[120]},{"name":"SAFER_HASH_IDENTIFICATION","features":[3,120,70]},{"name":"SAFER_HASH_IDENTIFICATION2","features":[3,120,70]},{"name":"SAFER_IDENTIFICATION_HEADER","features":[3,120]},{"name":"SAFER_IDENTIFICATION_TYPES","features":[120]},{"name":"SAFER_LEVELID_CONSTRAINED","features":[120]},{"name":"SAFER_LEVELID_DISALLOWED","features":[120]},{"name":"SAFER_LEVELID_FULLYTRUSTED","features":[120]},{"name":"SAFER_LEVELID_NORMALUSER","features":[120]},{"name":"SAFER_LEVELID_UNTRUSTED","features":[120]},{"name":"SAFER_LEVEL_OPEN","features":[120]},{"name":"SAFER_MAX_DESCRIPTION_SIZE","features":[120]},{"name":"SAFER_MAX_FRIENDLYNAME_SIZE","features":[120]},{"name":"SAFER_MAX_HASH_SIZE","features":[120]},{"name":"SAFER_OBJECT_INFO_CLASS","features":[120]},{"name":"SAFER_PATHNAME_IDENTIFICATION","features":[3,120]},{"name":"SAFER_POLICY_BLOCK_CLIENT_UI","features":[120]},{"name":"SAFER_POLICY_HASH_DUPLICATE","features":[120]},{"name":"SAFER_POLICY_INFO_CLASS","features":[120]},{"name":"SAFER_POLICY_JOBID_CONSTRAINED","features":[120]},{"name":"SAFER_POLICY_JOBID_MASK","features":[120]},{"name":"SAFER_POLICY_JOBID_UNTRUSTED","features":[120]},{"name":"SAFER_POLICY_ONLY_AUDIT","features":[120]},{"name":"SAFER_POLICY_ONLY_EXES","features":[120]},{"name":"SAFER_POLICY_SANDBOX_INERT","features":[120]},{"name":"SAFER_POLICY_UIFLAGS_HIDDEN","features":[120]},{"name":"SAFER_POLICY_UIFLAGS_INFORMATION_PROMPT","features":[120]},{"name":"SAFER_POLICY_UIFLAGS_MASK","features":[120]},{"name":"SAFER_POLICY_UIFLAGS_OPTION_PROMPT","features":[120]},{"name":"SAFER_SCOPEID_MACHINE","features":[120]},{"name":"SAFER_SCOPEID_USER","features":[120]},{"name":"SAFER_TOKEN_COMPARE_ONLY","features":[120]},{"name":"SAFER_TOKEN_MAKE_INERT","features":[120]},{"name":"SAFER_TOKEN_NULL_IF_EQUAL","features":[120]},{"name":"SAFER_TOKEN_WANT_FLAGS","features":[120]},{"name":"SAFER_URLZONE_IDENTIFICATION","features":[3,120]},{"name":"SRP_POLICY_APPX","features":[120]},{"name":"SRP_POLICY_DLL","features":[120]},{"name":"SRP_POLICY_EXE","features":[120]},{"name":"SRP_POLICY_MANAGEDINSTALLER","features":[120]},{"name":"SRP_POLICY_MSI","features":[120]},{"name":"SRP_POLICY_NOV2","features":[120]},{"name":"SRP_POLICY_SCRIPT","features":[120]},{"name":"SRP_POLICY_SHELL","features":[120]},{"name":"SRP_POLICY_WLDPCONFIGCI","features":[120]},{"name":"SRP_POLICY_WLDPMSI","features":[120]},{"name":"SRP_POLICY_WLDPSCRIPT","features":[120]},{"name":"SaferCloseLevel","features":[3,120]},{"name":"SaferComputeTokenFromLevel","features":[3,120]},{"name":"SaferCreateLevel","features":[3,120]},{"name":"SaferGetLevelInformation","features":[3,120]},{"name":"SaferGetPolicyInformation","features":[3,120]},{"name":"SaferIdentifyLevel","features":[3,120,70]},{"name":"SaferIdentityDefault","features":[120]},{"name":"SaferIdentityTypeCertificate","features":[120]},{"name":"SaferIdentityTypeImageHash","features":[120]},{"name":"SaferIdentityTypeImageName","features":[120]},{"name":"SaferIdentityTypeUrlZone","features":[120]},{"name":"SaferObjectAllIdentificationGuids","features":[120]},{"name":"SaferObjectBuiltin","features":[120]},{"name":"SaferObjectDefaultOwner","features":[120]},{"name":"SaferObjectDeletedPrivileges","features":[120]},{"name":"SaferObjectDescription","features":[120]},{"name":"SaferObjectDisableMaxPrivilege","features":[120]},{"name":"SaferObjectDisallowed","features":[120]},{"name":"SaferObjectExtendedError","features":[120]},{"name":"SaferObjectFriendlyName","features":[120]},{"name":"SaferObjectInvertDeletedPrivileges","features":[120]},{"name":"SaferObjectLevelId","features":[120]},{"name":"SaferObjectRestrictedSidsAdded","features":[120]},{"name":"SaferObjectRestrictedSidsInverted","features":[120]},{"name":"SaferObjectScopeId","features":[120]},{"name":"SaferObjectSidsToDisable","features":[120]},{"name":"SaferObjectSingleIdentification","features":[120]},{"name":"SaferPolicyAuthenticodeEnabled","features":[120]},{"name":"SaferPolicyDefaultLevel","features":[120]},{"name":"SaferPolicyDefaultLevelFlags","features":[120]},{"name":"SaferPolicyEnableTransparentEnforcement","features":[120]},{"name":"SaferPolicyEvaluateUserScope","features":[120]},{"name":"SaferPolicyLevelList","features":[120]},{"name":"SaferPolicyScopeFlags","features":[120]},{"name":"SaferRecordEventLogEntry","features":[3,120]},{"name":"SaferSetLevelInformation","features":[3,120]},{"name":"SaferSetPolicyInformation","features":[3,120]},{"name":"SaferiIsExecutableFileType","features":[3,120]}],"483":[{"name":"ACCEPT_SECURITY_CONTEXT_FN","features":[25,121]},{"name":"ACCOUNT_ADJUST_PRIVILEGES","features":[25]},{"name":"ACCOUNT_ADJUST_QUOTAS","features":[25]},{"name":"ACCOUNT_ADJUST_SYSTEM_ACCESS","features":[25]},{"name":"ACCOUNT_VIEW","features":[25]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_A","features":[25,121]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_W","features":[25,121]},{"name":"ADD_CREDENTIALS_FN_A","features":[25,121]},{"name":"ADD_CREDENTIALS_FN_W","features":[25,121]},{"name":"APPLY_CONTROL_TOKEN_FN","features":[25,121]},{"name":"ASC_REQ_ALLOCATE_MEMORY","features":[25]},{"name":"ASC_REQ_ALLOW_CONTEXT_REPLAY","features":[25]},{"name":"ASC_REQ_ALLOW_MISSING_BINDINGS","features":[25]},{"name":"ASC_REQ_ALLOW_NON_USER_LOGONS","features":[25]},{"name":"ASC_REQ_ALLOW_NULL_SESSION","features":[25]},{"name":"ASC_REQ_CALL_LEVEL","features":[25]},{"name":"ASC_REQ_CONFIDENTIALITY","features":[25]},{"name":"ASC_REQ_CONNECTION","features":[25]},{"name":"ASC_REQ_DATAGRAM","features":[25]},{"name":"ASC_REQ_DELEGATE","features":[25]},{"name":"ASC_REQ_EXTENDED_ERROR","features":[25]},{"name":"ASC_REQ_FLAGS","features":[25]},{"name":"ASC_REQ_FRAGMENT_SUPPLIED","features":[25]},{"name":"ASC_REQ_FRAGMENT_TO_FIT","features":[25]},{"name":"ASC_REQ_HIGH_FLAGS","features":[25]},{"name":"ASC_REQ_IDENTIFY","features":[25]},{"name":"ASC_REQ_INTEGRITY","features":[25]},{"name":"ASC_REQ_LICENSING","features":[25]},{"name":"ASC_REQ_MESSAGES","features":[25]},{"name":"ASC_REQ_MUTUAL_AUTH","features":[25]},{"name":"ASC_REQ_NO_TOKEN","features":[25]},{"name":"ASC_REQ_PROXY_BINDINGS","features":[25]},{"name":"ASC_REQ_REPLAY_DETECT","features":[25]},{"name":"ASC_REQ_SEQUENCE_DETECT","features":[25]},{"name":"ASC_REQ_SESSION_TICKET","features":[25]},{"name":"ASC_REQ_STREAM","features":[25]},{"name":"ASC_REQ_USE_DCE_STYLE","features":[25]},{"name":"ASC_REQ_USE_SESSION_KEY","features":[25]},{"name":"ASC_RET_ALLOCATED_MEMORY","features":[25]},{"name":"ASC_RET_ALLOW_CONTEXT_REPLAY","features":[25]},{"name":"ASC_RET_ALLOW_NON_USER_LOGONS","features":[25]},{"name":"ASC_RET_CALL_LEVEL","features":[25]},{"name":"ASC_RET_CONFIDENTIALITY","features":[25]},{"name":"ASC_RET_CONNECTION","features":[25]},{"name":"ASC_RET_DATAGRAM","features":[25]},{"name":"ASC_RET_DELEGATE","features":[25]},{"name":"ASC_RET_EXTENDED_ERROR","features":[25]},{"name":"ASC_RET_FRAGMENT_ONLY","features":[25]},{"name":"ASC_RET_IDENTIFY","features":[25]},{"name":"ASC_RET_INTEGRITY","features":[25]},{"name":"ASC_RET_LICENSING","features":[25]},{"name":"ASC_RET_MESSAGES","features":[25]},{"name":"ASC_RET_MUTUAL_AUTH","features":[25]},{"name":"ASC_RET_NO_ADDITIONAL_TOKEN","features":[25]},{"name":"ASC_RET_NO_TOKEN","features":[25]},{"name":"ASC_RET_NULL_SESSION","features":[25]},{"name":"ASC_RET_REPLAY_DETECT","features":[25]},{"name":"ASC_RET_SEQUENCE_DETECT","features":[25]},{"name":"ASC_RET_SESSION_TICKET","features":[25]},{"name":"ASC_RET_STREAM","features":[25]},{"name":"ASC_RET_THIRD_LEG_FAILED","features":[25]},{"name":"ASC_RET_USED_DCE_STYLE","features":[25]},{"name":"ASC_RET_USE_SESSION_KEY","features":[25]},{"name":"AUDIT_ENUMERATE_USERS","features":[25]},{"name":"AUDIT_POLICY_INFORMATION","features":[25]},{"name":"AUDIT_QUERY_MISC_POLICY","features":[25]},{"name":"AUDIT_QUERY_SYSTEM_POLICY","features":[25]},{"name":"AUDIT_QUERY_USER_POLICY","features":[25]},{"name":"AUDIT_SET_MISC_POLICY","features":[25]},{"name":"AUDIT_SET_SYSTEM_POLICY","features":[25]},{"name":"AUDIT_SET_USER_POLICY","features":[25]},{"name":"AUTH_REQ_ALLOW_ENC_TKT_IN_SKEY","features":[25]},{"name":"AUTH_REQ_ALLOW_FORWARDABLE","features":[25]},{"name":"AUTH_REQ_ALLOW_NOADDRESS","features":[25]},{"name":"AUTH_REQ_ALLOW_POSTDATE","features":[25]},{"name":"AUTH_REQ_ALLOW_PROXIABLE","features":[25]},{"name":"AUTH_REQ_ALLOW_RENEWABLE","features":[25]},{"name":"AUTH_REQ_ALLOW_S4U_DELEGATE","features":[25]},{"name":"AUTH_REQ_ALLOW_VALIDATE","features":[25]},{"name":"AUTH_REQ_OK_AS_DELEGATE","features":[25]},{"name":"AUTH_REQ_PREAUTH_REQUIRED","features":[25]},{"name":"AUTH_REQ_TRANSITIVE_TRUST","features":[25]},{"name":"AUTH_REQ_VALIDATE_CLIENT","features":[25]},{"name":"AcceptSecurityContext","features":[25,121]},{"name":"AccountDomainInformation","features":[25]},{"name":"AcquireCredentialsHandleA","features":[25,121]},{"name":"AcquireCredentialsHandleW","features":[25,121]},{"name":"AddCredentialsA","features":[25,121]},{"name":"AddCredentialsW","features":[25,121]},{"name":"AddSecurityPackageA","features":[25]},{"name":"AddSecurityPackageW","features":[25]},{"name":"ApplyControlToken","features":[25,121]},{"name":"AuditCategoryAccountLogon","features":[25]},{"name":"AuditCategoryAccountManagement","features":[25]},{"name":"AuditCategoryDetailedTracking","features":[25]},{"name":"AuditCategoryDirectoryServiceAccess","features":[25]},{"name":"AuditCategoryLogon","features":[25]},{"name":"AuditCategoryObjectAccess","features":[25]},{"name":"AuditCategoryPolicyChange","features":[25]},{"name":"AuditCategoryPrivilegeUse","features":[25]},{"name":"AuditCategorySystem","features":[25]},{"name":"AuditComputeEffectivePolicyBySid","features":[3,25]},{"name":"AuditComputeEffectivePolicyByToken","features":[3,25]},{"name":"AuditEnumerateCategories","features":[3,25]},{"name":"AuditEnumeratePerUserPolicy","features":[3,25]},{"name":"AuditEnumerateSubCategories","features":[3,25]},{"name":"AuditFree","features":[25]},{"name":"AuditLookupCategoryGuidFromCategoryId","features":[3,25]},{"name":"AuditLookupCategoryIdFromCategoryGuid","features":[3,25]},{"name":"AuditLookupCategoryNameA","features":[3,25]},{"name":"AuditLookupCategoryNameW","features":[3,25]},{"name":"AuditLookupSubCategoryNameA","features":[3,25]},{"name":"AuditLookupSubCategoryNameW","features":[3,25]},{"name":"AuditQueryGlobalSaclA","features":[3,25]},{"name":"AuditQueryGlobalSaclW","features":[3,25]},{"name":"AuditQueryPerUserPolicy","features":[3,25]},{"name":"AuditQuerySecurity","features":[3,25]},{"name":"AuditQuerySystemPolicy","features":[3,25]},{"name":"AuditSetGlobalSaclA","features":[3,25]},{"name":"AuditSetGlobalSaclW","features":[3,25]},{"name":"AuditSetPerUserPolicy","features":[3,25]},{"name":"AuditSetSecurity","features":[3,25]},{"name":"AuditSetSystemPolicy","features":[3,25]},{"name":"Audit_AccountLogon","features":[25]},{"name":"Audit_AccountLogon_CredentialValidation","features":[25]},{"name":"Audit_AccountLogon_KerbCredentialValidation","features":[25]},{"name":"Audit_AccountLogon_Kerberos","features":[25]},{"name":"Audit_AccountLogon_Others","features":[25]},{"name":"Audit_AccountManagement","features":[25]},{"name":"Audit_AccountManagement_ApplicationGroup","features":[25]},{"name":"Audit_AccountManagement_ComputerAccount","features":[25]},{"name":"Audit_AccountManagement_DistributionGroup","features":[25]},{"name":"Audit_AccountManagement_Others","features":[25]},{"name":"Audit_AccountManagement_SecurityGroup","features":[25]},{"name":"Audit_AccountManagement_UserAccount","features":[25]},{"name":"Audit_DSAccess_DSAccess","features":[25]},{"name":"Audit_DetailedTracking","features":[25]},{"name":"Audit_DetailedTracking_DpapiActivity","features":[25]},{"name":"Audit_DetailedTracking_PnpActivity","features":[25]},{"name":"Audit_DetailedTracking_ProcessCreation","features":[25]},{"name":"Audit_DetailedTracking_ProcessTermination","features":[25]},{"name":"Audit_DetailedTracking_RpcCall","features":[25]},{"name":"Audit_DetailedTracking_TokenRightAdjusted","features":[25]},{"name":"Audit_DirectoryServiceAccess","features":[25]},{"name":"Audit_DsAccess_AdAuditChanges","features":[25]},{"name":"Audit_Ds_DetailedReplication","features":[25]},{"name":"Audit_Ds_Replication","features":[25]},{"name":"Audit_Logon","features":[25]},{"name":"Audit_Logon_AccountLockout","features":[25]},{"name":"Audit_Logon_Claims","features":[25]},{"name":"Audit_Logon_Groups","features":[25]},{"name":"Audit_Logon_IPSecMainMode","features":[25]},{"name":"Audit_Logon_IPSecQuickMode","features":[25]},{"name":"Audit_Logon_IPSecUserMode","features":[25]},{"name":"Audit_Logon_Logoff","features":[25]},{"name":"Audit_Logon_Logon","features":[25]},{"name":"Audit_Logon_NPS","features":[25]},{"name":"Audit_Logon_Others","features":[25]},{"name":"Audit_Logon_SpecialLogon","features":[25]},{"name":"Audit_ObjectAccess","features":[25]},{"name":"Audit_ObjectAccess_ApplicationGenerated","features":[25]},{"name":"Audit_ObjectAccess_CbacStaging","features":[25]},{"name":"Audit_ObjectAccess_CertificationServices","features":[25]},{"name":"Audit_ObjectAccess_DetailedFileShare","features":[25]},{"name":"Audit_ObjectAccess_FileSystem","features":[25]},{"name":"Audit_ObjectAccess_FirewallConnection","features":[25]},{"name":"Audit_ObjectAccess_FirewallPacketDrops","features":[25]},{"name":"Audit_ObjectAccess_Handle","features":[25]},{"name":"Audit_ObjectAccess_Kernel","features":[25]},{"name":"Audit_ObjectAccess_Other","features":[25]},{"name":"Audit_ObjectAccess_Registry","features":[25]},{"name":"Audit_ObjectAccess_RemovableStorage","features":[25]},{"name":"Audit_ObjectAccess_Sam","features":[25]},{"name":"Audit_ObjectAccess_Share","features":[25]},{"name":"Audit_PolicyChange","features":[25]},{"name":"Audit_PolicyChange_AuditPolicy","features":[25]},{"name":"Audit_PolicyChange_AuthenticationPolicy","features":[25]},{"name":"Audit_PolicyChange_AuthorizationPolicy","features":[25]},{"name":"Audit_PolicyChange_MpsscvRulePolicy","features":[25]},{"name":"Audit_PolicyChange_Others","features":[25]},{"name":"Audit_PolicyChange_WfpIPSecPolicy","features":[25]},{"name":"Audit_PrivilegeUse","features":[25]},{"name":"Audit_PrivilegeUse_NonSensitive","features":[25]},{"name":"Audit_PrivilegeUse_Others","features":[25]},{"name":"Audit_PrivilegeUse_Sensitive","features":[25]},{"name":"Audit_System","features":[25]},{"name":"Audit_System_IPSecDriverEvents","features":[25]},{"name":"Audit_System_Integrity","features":[25]},{"name":"Audit_System_Others","features":[25]},{"name":"Audit_System_SecurityStateChange","features":[25]},{"name":"Audit_System_SecuritySubsystemExtension","features":[25]},{"name":"CENTRAL_ACCESS_POLICY","features":[25]},{"name":"CENTRAL_ACCESS_POLICY_ENTRY","features":[25]},{"name":"CENTRAL_ACCESS_POLICY_OWNER_RIGHTS_PRESENT_FLAG","features":[25]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_FLAG","features":[25]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_OWNER_RIGHTS_PRESENT_FLAG","features":[25]},{"name":"CHANGE_PASSWORD_FN_A","features":[3,25]},{"name":"CHANGE_PASSWORD_FN_W","features":[3,25]},{"name":"CLEAR_BLOCK","features":[25]},{"name":"CLEAR_BLOCK_LENGTH","features":[25]},{"name":"CLOUDAP_NAME","features":[25]},{"name":"CLOUDAP_NAME_W","features":[25]},{"name":"COMPLETE_AUTH_TOKEN_FN","features":[25,121]},{"name":"CREDP_FLAGS_CLEAR_PASSWORD","features":[25]},{"name":"CREDP_FLAGS_DONT_CACHE_TI","features":[25]},{"name":"CREDP_FLAGS_IN_PROCESS","features":[25]},{"name":"CREDP_FLAGS_TRUSTED_CALLER","features":[25]},{"name":"CREDP_FLAGS_USER_ENCRYPTED_PASSWORD","features":[25]},{"name":"CREDP_FLAGS_USE_MIDL_HEAP","features":[25]},{"name":"CREDP_FLAGS_VALIDATE_PROXY_TARGET","features":[25]},{"name":"CRED_FETCH","features":[25]},{"name":"CRED_MARSHALED_TI_SIZE_SIZE","features":[25]},{"name":"CRYPTO_SETTINGS","features":[25]},{"name":"CYPHER_BLOCK_LENGTH","features":[25]},{"name":"CertHashInfo","features":[25]},{"name":"ChangeAccountPasswordA","features":[3,25]},{"name":"ChangeAccountPasswordW","features":[3,25]},{"name":"ClOUDAP_NAME_A","features":[25]},{"name":"CollisionOther","features":[25]},{"name":"CollisionTdo","features":[25]},{"name":"CollisionXref","features":[25]},{"name":"CompleteAuthToken","features":[25,121]},{"name":"CredFetchDPAPI","features":[25]},{"name":"CredFetchDefault","features":[25]},{"name":"CredFetchForced","features":[25]},{"name":"CredFreeCredentialsFn","features":[3,25,121]},{"name":"CredMarshalTargetInfo","features":[3,25,121]},{"name":"CredReadDomainCredentialsFn","features":[3,25,121]},{"name":"CredReadFn","features":[3,25,121]},{"name":"CredUnmarshalTargetInfo","features":[3,25,121]},{"name":"CredWriteFn","features":[3,25,121]},{"name":"CrediUnmarshalandDecodeStringFn","features":[3,25]},{"name":"DECRYPT_MESSAGE_FN","features":[25,121]},{"name":"DEFAULT_TLS_SSP_NAME","features":[25]},{"name":"DEFAULT_TLS_SSP_NAME_A","features":[25]},{"name":"DEFAULT_TLS_SSP_NAME_W","features":[25]},{"name":"DELETE_SECURITY_CONTEXT_FN","features":[25,121]},{"name":"DOMAIN_LOCKOUT_ADMINS","features":[25]},{"name":"DOMAIN_NO_LM_OWF_CHANGE","features":[25]},{"name":"DOMAIN_PASSWORD_COMPLEX","features":[25]},{"name":"DOMAIN_PASSWORD_INFORMATION","features":[25]},{"name":"DOMAIN_PASSWORD_NO_ANON_CHANGE","features":[25]},{"name":"DOMAIN_PASSWORD_NO_CLEAR_CHANGE","features":[25]},{"name":"DOMAIN_PASSWORD_PROPERTIES","features":[25]},{"name":"DOMAIN_PASSWORD_STORE_CLEARTEXT","features":[25]},{"name":"DOMAIN_REFUSE_PASSWORD_CHANGE","features":[25]},{"name":"DS_INET_ADDRESS","features":[25]},{"name":"DS_NETBIOS_ADDRESS","features":[25]},{"name":"DS_UNKNOWN_ADDRESS_TYPE","features":[25]},{"name":"DecryptMessage","features":[25,121]},{"name":"DeleteSecurityContext","features":[25,121]},{"name":"DeleteSecurityPackageA","features":[25]},{"name":"DeleteSecurityPackageW","features":[25]},{"name":"DeprecatedIUMCredKey","features":[25]},{"name":"DnsDomainInformation","features":[25]},{"name":"DomainUserCredKey","features":[25]},{"name":"ENABLE_TLS_CLIENT_EARLY_START","features":[25]},{"name":"ENCRYPTED_CREDENTIALW","features":[3,25,121]},{"name":"ENCRYPT_MESSAGE_FN","features":[25,121]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_A","features":[25]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_W","features":[25]},{"name":"EXPORT_SECURITY_CONTEXT_FLAGS","features":[25]},{"name":"EXPORT_SECURITY_CONTEXT_FN","features":[25,121]},{"name":"EXTENDED_NAME_FORMAT","features":[25]},{"name":"E_RM_UNKNOWN_ERROR","features":[25]},{"name":"EncryptMessage","features":[25,121]},{"name":"EnumerateSecurityPackagesA","features":[25]},{"name":"EnumerateSecurityPackagesW","features":[25]},{"name":"ExportSecurityContext","features":[25,121]},{"name":"ExternallySuppliedCredKey","features":[25]},{"name":"FACILITY_SL_ITF","features":[25]},{"name":"FREE_CONTEXT_BUFFER_FN","features":[25]},{"name":"FREE_CREDENTIALS_HANDLE_FN","features":[25,121]},{"name":"ForestTrustBinaryInfo","features":[25]},{"name":"ForestTrustDomainInfo","features":[25]},{"name":"ForestTrustRecordTypeLast","features":[25]},{"name":"ForestTrustScannerInfo","features":[25]},{"name":"ForestTrustTopLevelName","features":[25]},{"name":"ForestTrustTopLevelNameEx","features":[25]},{"name":"FreeContextBuffer","features":[25]},{"name":"FreeCredentialsHandle","features":[25,121]},{"name":"GetComputerObjectNameA","features":[3,25]},{"name":"GetComputerObjectNameW","features":[3,25]},{"name":"GetUserNameExA","features":[3,25]},{"name":"GetUserNameExW","features":[3,25]},{"name":"ICcgDomainAuthCredentials","features":[25]},{"name":"ID_CAP_SLAPI","features":[25]},{"name":"IMPERSONATE_SECURITY_CONTEXT_FN","features":[25,121]},{"name":"IMPORT_SECURITY_CONTEXT_FN_A","features":[25,121]},{"name":"IMPORT_SECURITY_CONTEXT_FN_W","features":[25,121]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_A","features":[25,121]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_W","features":[25,121]},{"name":"INIT_SECURITY_INTERFACE_A","features":[3,25,121]},{"name":"INIT_SECURITY_INTERFACE_W","features":[3,25,121]},{"name":"ISC_REQ_ALLOCATE_MEMORY","features":[25]},{"name":"ISC_REQ_CALL_LEVEL","features":[25]},{"name":"ISC_REQ_CONFIDENTIALITY","features":[25]},{"name":"ISC_REQ_CONFIDENTIALITY_ONLY","features":[25]},{"name":"ISC_REQ_CONNECTION","features":[25]},{"name":"ISC_REQ_DATAGRAM","features":[25]},{"name":"ISC_REQ_DEFERRED_CRED_VALIDATION","features":[25]},{"name":"ISC_REQ_DELEGATE","features":[25]},{"name":"ISC_REQ_EXTENDED_ERROR","features":[25]},{"name":"ISC_REQ_FLAGS","features":[25]},{"name":"ISC_REQ_FORWARD_CREDENTIALS","features":[25]},{"name":"ISC_REQ_FRAGMENT_SUPPLIED","features":[25]},{"name":"ISC_REQ_FRAGMENT_TO_FIT","features":[25]},{"name":"ISC_REQ_HIGH_FLAGS","features":[25]},{"name":"ISC_REQ_IDENTIFY","features":[25]},{"name":"ISC_REQ_INTEGRITY","features":[25]},{"name":"ISC_REQ_MANUAL_CRED_VALIDATION","features":[25]},{"name":"ISC_REQ_MESSAGES","features":[25]},{"name":"ISC_REQ_MUTUAL_AUTH","features":[25]},{"name":"ISC_REQ_NO_INTEGRITY","features":[25]},{"name":"ISC_REQ_NO_POST_HANDSHAKE_AUTH","features":[25]},{"name":"ISC_REQ_NULL_SESSION","features":[25]},{"name":"ISC_REQ_PROMPT_FOR_CREDS","features":[25]},{"name":"ISC_REQ_REPLAY_DETECT","features":[25]},{"name":"ISC_REQ_RESERVED1","features":[25]},{"name":"ISC_REQ_SEQUENCE_DETECT","features":[25]},{"name":"ISC_REQ_STREAM","features":[25]},{"name":"ISC_REQ_UNVERIFIED_TARGET_NAME","features":[25]},{"name":"ISC_REQ_USE_DCE_STYLE","features":[25]},{"name":"ISC_REQ_USE_HTTP_STYLE","features":[25]},{"name":"ISC_REQ_USE_SESSION_KEY","features":[25]},{"name":"ISC_REQ_USE_SUPPLIED_CREDS","features":[25]},{"name":"ISC_RET_ALLOCATED_MEMORY","features":[25]},{"name":"ISC_RET_CALL_LEVEL","features":[25]},{"name":"ISC_RET_CONFIDENTIALITY","features":[25]},{"name":"ISC_RET_CONFIDENTIALITY_ONLY","features":[25]},{"name":"ISC_RET_CONNECTION","features":[25]},{"name":"ISC_RET_DATAGRAM","features":[25]},{"name":"ISC_RET_DEFERRED_CRED_VALIDATION","features":[25]},{"name":"ISC_RET_DELEGATE","features":[25]},{"name":"ISC_RET_EXTENDED_ERROR","features":[25]},{"name":"ISC_RET_FORWARD_CREDENTIALS","features":[25]},{"name":"ISC_RET_FRAGMENT_ONLY","features":[25]},{"name":"ISC_RET_IDENTIFY","features":[25]},{"name":"ISC_RET_INTEGRITY","features":[25]},{"name":"ISC_RET_INTERMEDIATE_RETURN","features":[25]},{"name":"ISC_RET_MANUAL_CRED_VALIDATION","features":[25]},{"name":"ISC_RET_MESSAGES","features":[25]},{"name":"ISC_RET_MUTUAL_AUTH","features":[25]},{"name":"ISC_RET_NO_ADDITIONAL_TOKEN","features":[25]},{"name":"ISC_RET_NO_POST_HANDSHAKE_AUTH","features":[25]},{"name":"ISC_RET_NULL_SESSION","features":[25]},{"name":"ISC_RET_REAUTHENTICATION","features":[25]},{"name":"ISC_RET_REPLAY_DETECT","features":[25]},{"name":"ISC_RET_RESERVED1","features":[25]},{"name":"ISC_RET_SEQUENCE_DETECT","features":[25]},{"name":"ISC_RET_STREAM","features":[25]},{"name":"ISC_RET_USED_COLLECTED_CREDS","features":[25]},{"name":"ISC_RET_USED_DCE_STYLE","features":[25]},{"name":"ISC_RET_USED_HTTP_STYLE","features":[25]},{"name":"ISC_RET_USED_SUPPLIED_CREDS","features":[25]},{"name":"ISC_RET_USE_SESSION_KEY","features":[25]},{"name":"ISSP_LEVEL","features":[25]},{"name":"ISSP_MODE","features":[25]},{"name":"ImpersonateSecurityContext","features":[25,121]},{"name":"ImportSecurityContextA","features":[25,121]},{"name":"ImportSecurityContextW","features":[25,121]},{"name":"InitSecurityInterfaceA","features":[3,25,121]},{"name":"InitSecurityInterfaceW","features":[3,25,121]},{"name":"InitializeSecurityContextA","features":[25,121]},{"name":"InitializeSecurityContextW","features":[25,121]},{"name":"InvalidCredKey","features":[25]},{"name":"KDC_PROXY_CACHE_ENTRY_DATA","features":[3,25]},{"name":"KDC_PROXY_SETTINGS_FLAGS_FORCEPROXY","features":[25]},{"name":"KDC_PROXY_SETTINGS_V1","features":[25]},{"name":"KERBEROS_REVISION","features":[25]},{"name":"KERBEROS_VERSION","features":[25]},{"name":"KERB_ADDRESS_TYPE","features":[25]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_EX_REQUEST","features":[25]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_REQUEST","features":[25]},{"name":"KERB_ADD_CREDENTIALS_REQUEST","features":[3,25]},{"name":"KERB_ADD_CREDENTIALS_REQUEST_EX","features":[3,25]},{"name":"KERB_AUTH_DATA","features":[25]},{"name":"KERB_BINDING_CACHE_ENTRY_DATA","features":[25]},{"name":"KERB_CERTIFICATE_HASHINFO","features":[25]},{"name":"KERB_CERTIFICATE_INFO","features":[25]},{"name":"KERB_CERTIFICATE_INFO_TYPE","features":[25]},{"name":"KERB_CERTIFICATE_LOGON","features":[25]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[25]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[25]},{"name":"KERB_CERTIFICATE_S4U_LOGON","features":[25]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_DUPLICATES","features":[25]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[25]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_FAIL_IF_NT_AUTH_POLICY_REQUIRED","features":[25]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_IDENTIFY","features":[25]},{"name":"KERB_CERTIFICATE_UNLOCK_LOGON","features":[3,25]},{"name":"KERB_CHANGEPASSWORD_REQUEST","features":[3,25]},{"name":"KERB_CHECKSUM_CRC32","features":[25]},{"name":"KERB_CHECKSUM_DES_MAC","features":[25]},{"name":"KERB_CHECKSUM_DES_MAC_MD5","features":[25]},{"name":"KERB_CHECKSUM_HMAC_MD5","features":[25]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128","features":[25]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128_Ki","features":[25]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256","features":[25]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256_Ki","features":[25]},{"name":"KERB_CHECKSUM_KRB_DES_MAC","features":[25]},{"name":"KERB_CHECKSUM_KRB_DES_MAC_K","features":[25]},{"name":"KERB_CHECKSUM_LM","features":[25]},{"name":"KERB_CHECKSUM_MD25","features":[25]},{"name":"KERB_CHECKSUM_MD4","features":[25]},{"name":"KERB_CHECKSUM_MD5","features":[25]},{"name":"KERB_CHECKSUM_MD5_DES","features":[25]},{"name":"KERB_CHECKSUM_MD5_HMAC","features":[25]},{"name":"KERB_CHECKSUM_NONE","features":[25]},{"name":"KERB_CHECKSUM_RC4_MD5","features":[25]},{"name":"KERB_CHECKSUM_REAL_CRC32","features":[25]},{"name":"KERB_CHECKSUM_SHA1","features":[25]},{"name":"KERB_CHECKSUM_SHA1_NEW","features":[25]},{"name":"KERB_CHECKSUM_SHA256","features":[25]},{"name":"KERB_CHECKSUM_SHA384","features":[25]},{"name":"KERB_CHECKSUM_SHA512","features":[25]},{"name":"KERB_CLEANUP_MACHINE_PKINIT_CREDS_REQUEST","features":[3,25]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA","features":[25]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_V0","features":[25]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_VERSION","features":[25]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_REQUEST","features":[3,25]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_RESPONSE","features":[25]},{"name":"KERB_CRYPTO_KEY","features":[25]},{"name":"KERB_CRYPTO_KEY32","features":[25]},{"name":"KERB_CRYPTO_KEY_TYPE","features":[25]},{"name":"KERB_DECRYPT_FLAG_DEFAULT_KEY","features":[25]},{"name":"KERB_DECRYPT_REQUEST","features":[3,25]},{"name":"KERB_DECRYPT_RESPONSE","features":[25]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96","features":[25]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96_PLAIN","features":[25]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96","features":[25]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96_PLAIN","features":[25]},{"name":"KERB_ETYPE_DEFAULT","features":[25]},{"name":"KERB_ETYPE_DES3_CBC_MD5","features":[25]},{"name":"KERB_ETYPE_DES3_CBC_SHA1","features":[25]},{"name":"KERB_ETYPE_DES3_CBC_SHA1_KD","features":[25]},{"name":"KERB_ETYPE_DES_CBC_CRC","features":[25]},{"name":"KERB_ETYPE_DES_CBC_MD4","features":[25]},{"name":"KERB_ETYPE_DES_CBC_MD5","features":[25]},{"name":"KERB_ETYPE_DES_CBC_MD5_NT","features":[25]},{"name":"KERB_ETYPE_DES_EDE3_CBC_ENV","features":[25]},{"name":"KERB_ETYPE_DES_PLAIN","features":[25]},{"name":"KERB_ETYPE_DSA_SHA1_CMS","features":[25]},{"name":"KERB_ETYPE_DSA_SIGN","features":[25]},{"name":"KERB_ETYPE_NULL","features":[25]},{"name":"KERB_ETYPE_PKCS7_PUB","features":[25]},{"name":"KERB_ETYPE_RC2_CBC_ENV","features":[25]},{"name":"KERB_ETYPE_RC4_HMAC_NT","features":[25]},{"name":"KERB_ETYPE_RC4_HMAC_NT_EXP","features":[25]},{"name":"KERB_ETYPE_RC4_HMAC_OLD","features":[25]},{"name":"KERB_ETYPE_RC4_HMAC_OLD_EXP","features":[25]},{"name":"KERB_ETYPE_RC4_LM","features":[25]},{"name":"KERB_ETYPE_RC4_MD4","features":[25]},{"name":"KERB_ETYPE_RC4_PLAIN","features":[25]},{"name":"KERB_ETYPE_RC4_PLAIN2","features":[25]},{"name":"KERB_ETYPE_RC4_PLAIN_EXP","features":[25]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD","features":[25]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD_EXP","features":[25]},{"name":"KERB_ETYPE_RC4_SHA","features":[25]},{"name":"KERB_ETYPE_RSA_ENV","features":[25]},{"name":"KERB_ETYPE_RSA_ES_OEAP_ENV","features":[25]},{"name":"KERB_ETYPE_RSA_MD5_CMS","features":[25]},{"name":"KERB_ETYPE_RSA_PRIV","features":[25]},{"name":"KERB_ETYPE_RSA_PUB","features":[25]},{"name":"KERB_ETYPE_RSA_PUB_MD5","features":[25]},{"name":"KERB_ETYPE_RSA_PUB_SHA1","features":[25]},{"name":"KERB_ETYPE_RSA_SHA1_CMS","features":[25]},{"name":"KERB_EXTERNAL_NAME","features":[25]},{"name":"KERB_EXTERNAL_TICKET","features":[25]},{"name":"KERB_INTERACTIVE_LOGON","features":[25]},{"name":"KERB_INTERACTIVE_PROFILE","features":[25]},{"name":"KERB_INTERACTIVE_UNLOCK_LOGON","features":[3,25]},{"name":"KERB_LOGON_FLAG_ALLOW_EXPIRED_TICKET","features":[25]},{"name":"KERB_LOGON_FLAG_REDIRECTED","features":[25]},{"name":"KERB_LOGON_SUBMIT_TYPE","features":[25]},{"name":"KERB_NET_ADDRESS","features":[25]},{"name":"KERB_NET_ADDRESSES","features":[25]},{"name":"KERB_PROFILE_BUFFER_TYPE","features":[25]},{"name":"KERB_PROTOCOL_MESSAGE_TYPE","features":[25]},{"name":"KERB_PURGE_ALL_TICKETS","features":[25]},{"name":"KERB_PURGE_BINDING_CACHE_REQUEST","features":[25]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_REQUEST","features":[3,25]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_RESPONSE","features":[25]},{"name":"KERB_PURGE_TKT_CACHE_EX_REQUEST","features":[3,25]},{"name":"KERB_PURGE_TKT_CACHE_REQUEST","features":[3,25]},{"name":"KERB_QUERY_BINDING_CACHE_REQUEST","features":[25]},{"name":"KERB_QUERY_BINDING_CACHE_RESPONSE","features":[25]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_REQUEST","features":[25]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE","features":[25]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE_FLAG_DAC_DISABLED","features":[25]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_REQUEST","features":[3,25]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_RESPONSE","features":[3,25]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_REQUEST","features":[3,25]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_RESPONSE","features":[3,25]},{"name":"KERB_QUERY_TKT_CACHE_EX2_RESPONSE","features":[25]},{"name":"KERB_QUERY_TKT_CACHE_EX3_RESPONSE","features":[25]},{"name":"KERB_QUERY_TKT_CACHE_EX_RESPONSE","features":[25]},{"name":"KERB_QUERY_TKT_CACHE_REQUEST","features":[3,25]},{"name":"KERB_QUERY_TKT_CACHE_RESPONSE","features":[25]},{"name":"KERB_REFRESH_POLICY_KDC","features":[25]},{"name":"KERB_REFRESH_POLICY_KERBEROS","features":[25]},{"name":"KERB_REFRESH_POLICY_REQUEST","features":[25]},{"name":"KERB_REFRESH_POLICY_RESPONSE","features":[25]},{"name":"KERB_REFRESH_SCCRED_GETTGT","features":[25]},{"name":"KERB_REFRESH_SCCRED_RELEASE","features":[25]},{"name":"KERB_REFRESH_SCCRED_REQUEST","features":[3,25]},{"name":"KERB_REQUEST_ADD_CREDENTIAL","features":[25]},{"name":"KERB_REQUEST_FLAGS","features":[25]},{"name":"KERB_REQUEST_REMOVE_CREDENTIAL","features":[25]},{"name":"KERB_REQUEST_REPLACE_CREDENTIAL","features":[25]},{"name":"KERB_RETRIEVE_KEY_TAB_REQUEST","features":[25]},{"name":"KERB_RETRIEVE_KEY_TAB_RESPONSE","features":[25]},{"name":"KERB_RETRIEVE_TICKET_AS_KERB_CRED","features":[25]},{"name":"KERB_RETRIEVE_TICKET_CACHE_TICKET","features":[25]},{"name":"KERB_RETRIEVE_TICKET_DEFAULT","features":[25]},{"name":"KERB_RETRIEVE_TICKET_DONT_USE_CACHE","features":[25]},{"name":"KERB_RETRIEVE_TICKET_MAX_LIFETIME","features":[25]},{"name":"KERB_RETRIEVE_TICKET_USE_CACHE_ONLY","features":[25]},{"name":"KERB_RETRIEVE_TICKET_USE_CREDHANDLE","features":[25]},{"name":"KERB_RETRIEVE_TICKET_WITH_SEC_CRED","features":[25]},{"name":"KERB_RETRIEVE_TKT_REQUEST","features":[3,25,121]},{"name":"KERB_RETRIEVE_TKT_RESPONSE","features":[25]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO","features":[3,25]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO_FLAG_NEGATIVE","features":[25]},{"name":"KERB_S4U2PROXY_CRED","features":[3,25]},{"name":"KERB_S4U2PROXY_CRED_FLAG_NEGATIVE","features":[25]},{"name":"KERB_S4U_LOGON","features":[25]},{"name":"KERB_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[25]},{"name":"KERB_S4U_LOGON_FLAG_IDENTIFY","features":[25]},{"name":"KERB_SETPASSWORD_EX_REQUEST","features":[3,25,121]},{"name":"KERB_SETPASSWORD_REQUEST","features":[3,25,121]},{"name":"KERB_SETPASS_USE_CREDHANDLE","features":[25]},{"name":"KERB_SETPASS_USE_LOGONID","features":[25]},{"name":"KERB_SMART_CARD_LOGON","features":[25]},{"name":"KERB_SMART_CARD_PROFILE","features":[25]},{"name":"KERB_SMART_CARD_UNLOCK_LOGON","features":[3,25]},{"name":"KERB_SUBMIT_TKT_REQUEST","features":[3,25]},{"name":"KERB_TICKET_CACHE_INFO","features":[25]},{"name":"KERB_TICKET_CACHE_INFO_EX","features":[25]},{"name":"KERB_TICKET_CACHE_INFO_EX2","features":[25]},{"name":"KERB_TICKET_CACHE_INFO_EX3","features":[25]},{"name":"KERB_TICKET_FLAGS","features":[25]},{"name":"KERB_TICKET_FLAGS_cname_in_pa_data","features":[25]},{"name":"KERB_TICKET_FLAGS_enc_pa_rep","features":[25]},{"name":"KERB_TICKET_FLAGS_forwardable","features":[25]},{"name":"KERB_TICKET_FLAGS_forwarded","features":[25]},{"name":"KERB_TICKET_FLAGS_hw_authent","features":[25]},{"name":"KERB_TICKET_FLAGS_initial","features":[25]},{"name":"KERB_TICKET_FLAGS_invalid","features":[25]},{"name":"KERB_TICKET_FLAGS_may_postdate","features":[25]},{"name":"KERB_TICKET_FLAGS_name_canonicalize","features":[25]},{"name":"KERB_TICKET_FLAGS_ok_as_delegate","features":[25]},{"name":"KERB_TICKET_FLAGS_postdated","features":[25]},{"name":"KERB_TICKET_FLAGS_pre_authent","features":[25]},{"name":"KERB_TICKET_FLAGS_proxiable","features":[25]},{"name":"KERB_TICKET_FLAGS_proxy","features":[25]},{"name":"KERB_TICKET_FLAGS_renewable","features":[25]},{"name":"KERB_TICKET_FLAGS_reserved","features":[25]},{"name":"KERB_TICKET_FLAGS_reserved1","features":[25]},{"name":"KERB_TICKET_LOGON","features":[25]},{"name":"KERB_TICKET_PROFILE","features":[25]},{"name":"KERB_TICKET_UNLOCK_LOGON","features":[3,25]},{"name":"KERB_TRANSFER_CRED_CLEANUP_CREDENTIALS","features":[25]},{"name":"KERB_TRANSFER_CRED_REQUEST","features":[3,25]},{"name":"KERB_TRANSFER_CRED_WITH_TICKETS","features":[25]},{"name":"KERB_USE_DEFAULT_TICKET_FLAGS","features":[25]},{"name":"KERB_WRAP_NO_ENCRYPT","features":[25]},{"name":"KERN_CONTEXT_CERT_INFO_V1","features":[25]},{"name":"KRB_ANONYMOUS_STRING","features":[25]},{"name":"KRB_NT_ENTERPRISE_PRINCIPAL","features":[25]},{"name":"KRB_NT_ENT_PRINCIPAL_AND_ID","features":[25]},{"name":"KRB_NT_MS_BRANCH_ID","features":[25]},{"name":"KRB_NT_MS_PRINCIPAL","features":[25]},{"name":"KRB_NT_MS_PRINCIPAL_AND_ID","features":[25]},{"name":"KRB_NT_PRINCIPAL","features":[25]},{"name":"KRB_NT_PRINCIPAL_AND_ID","features":[25]},{"name":"KRB_NT_SRV_HST","features":[25]},{"name":"KRB_NT_SRV_INST","features":[25]},{"name":"KRB_NT_SRV_INST_AND_ID","features":[25]},{"name":"KRB_NT_SRV_XHST","features":[25]},{"name":"KRB_NT_UID","features":[25]},{"name":"KRB_NT_UNKNOWN","features":[25]},{"name":"KRB_NT_WELLKNOWN","features":[25]},{"name":"KRB_NT_X500_PRINCIPAL","features":[25]},{"name":"KRB_WELLKNOWN_STRING","features":[25]},{"name":"KSEC_CONTEXT_TYPE","features":[25]},{"name":"KSEC_LIST_ENTRY","features":[25,9]},{"name":"KSecNonPaged","features":[25]},{"name":"KSecPaged","features":[25]},{"name":"KerbAddBindingCacheEntryExMessage","features":[25]},{"name":"KerbAddBindingCacheEntryMessage","features":[25]},{"name":"KerbAddExtraCredentialsExMessage","features":[25]},{"name":"KerbAddExtraCredentialsMessage","features":[25]},{"name":"KerbCertificateLogon","features":[25]},{"name":"KerbCertificateS4ULogon","features":[25]},{"name":"KerbCertificateUnlockLogon","features":[25]},{"name":"KerbChangeMachinePasswordMessage","features":[25]},{"name":"KerbChangePasswordMessage","features":[25]},{"name":"KerbCleanupMachinePkinitCredsMessage","features":[25]},{"name":"KerbDebugRequestMessage","features":[25]},{"name":"KerbDecryptDataMessage","features":[25]},{"name":"KerbInteractiveLogon","features":[25]},{"name":"KerbInteractiveProfile","features":[25]},{"name":"KerbLuidLogon","features":[25]},{"name":"KerbNoElevationLogon","features":[25]},{"name":"KerbPinKdcMessage","features":[25]},{"name":"KerbPrintCloudKerberosDebugMessage","features":[25]},{"name":"KerbProxyLogon","features":[25]},{"name":"KerbPurgeBindingCacheMessage","features":[25]},{"name":"KerbPurgeKdcProxyCacheMessage","features":[25]},{"name":"KerbPurgeTicketCacheExMessage","features":[25]},{"name":"KerbPurgeTicketCacheMessage","features":[25]},{"name":"KerbQueryBindingCacheMessage","features":[25]},{"name":"KerbQueryDomainExtendedPoliciesMessage","features":[25]},{"name":"KerbQueryKdcProxyCacheMessage","features":[25]},{"name":"KerbQueryS4U2ProxyCacheMessage","features":[25]},{"name":"KerbQuerySupplementalCredentialsMessage","features":[25]},{"name":"KerbQueryTicketCacheEx2Message","features":[25]},{"name":"KerbQueryTicketCacheEx3Message","features":[25]},{"name":"KerbQueryTicketCacheExMessage","features":[25]},{"name":"KerbQueryTicketCacheMessage","features":[25]},{"name":"KerbRefreshPolicyMessage","features":[25]},{"name":"KerbRefreshSmartcardCredentialsMessage","features":[25]},{"name":"KerbRetrieveEncodedTicketMessage","features":[25]},{"name":"KerbRetrieveKeyTabMessage","features":[25]},{"name":"KerbRetrieveTicketMessage","features":[25]},{"name":"KerbS4ULogon","features":[25]},{"name":"KerbSetPasswordExMessage","features":[25]},{"name":"KerbSetPasswordMessage","features":[25]},{"name":"KerbSmartCardLogon","features":[25]},{"name":"KerbSmartCardProfile","features":[25]},{"name":"KerbSmartCardUnlockLogon","features":[25]},{"name":"KerbSubmitTicketMessage","features":[25]},{"name":"KerbTicketLogon","features":[25]},{"name":"KerbTicketProfile","features":[25]},{"name":"KerbTicketUnlockLogon","features":[25]},{"name":"KerbTransferCredentialsMessage","features":[25]},{"name":"KerbUnpinAllKdcsMessage","features":[25]},{"name":"KerbUpdateAddressesMessage","features":[25]},{"name":"KerbVerifyCredentialsMessage","features":[25]},{"name":"KerbVerifyPacMessage","features":[25]},{"name":"KerbWorkstationUnlockLogon","features":[25]},{"name":"KspCompleteTokenFn","features":[3,25]},{"name":"KspDeleteContextFn","features":[3,25]},{"name":"KspGetTokenFn","features":[3,25]},{"name":"KspInitContextFn","features":[3,25]},{"name":"KspInitPackageFn","features":[3,25,9]},{"name":"KspMakeSignatureFn","features":[3,25]},{"name":"KspMapHandleFn","features":[3,25]},{"name":"KspQueryAttributesFn","features":[3,25]},{"name":"KspSealMessageFn","features":[3,25]},{"name":"KspSerializeAuthDataFn","features":[3,25]},{"name":"KspSetPagingModeFn","features":[3,25]},{"name":"KspUnsealMessageFn","features":[3,25]},{"name":"KspVerifySignatureFn","features":[3,25]},{"name":"LCRED_CRED_EXISTS","features":[25]},{"name":"LCRED_STATUS_NOCRED","features":[25]},{"name":"LCRED_STATUS_UNKNOWN_ISSUER","features":[25]},{"name":"LOGON_CACHED_ACCOUNT","features":[25]},{"name":"LOGON_EXTRA_SIDS","features":[25]},{"name":"LOGON_GRACE_LOGON","features":[25]},{"name":"LOGON_GUEST","features":[25]},{"name":"LOGON_HOURS","features":[25]},{"name":"LOGON_LM_V2","features":[25]},{"name":"LOGON_MANAGED_SERVICE","features":[25]},{"name":"LOGON_NOENCRYPTION","features":[25]},{"name":"LOGON_NO_ELEVATION","features":[25]},{"name":"LOGON_NO_OPTIMIZED","features":[25]},{"name":"LOGON_NTLMV2_ENABLED","features":[25]},{"name":"LOGON_NTLM_V2","features":[25]},{"name":"LOGON_NT_V2","features":[25]},{"name":"LOGON_OPTIMIZED","features":[25]},{"name":"LOGON_PKINIT","features":[25]},{"name":"LOGON_PROFILE_PATH_RETURNED","features":[25]},{"name":"LOGON_RESOURCE_GROUPS","features":[25]},{"name":"LOGON_SERVER_TRUST_ACCOUNT","features":[25]},{"name":"LOGON_SUBAUTH_SESSION_KEY","features":[25]},{"name":"LOGON_USED_LM_PASSWORD","features":[25]},{"name":"LOGON_WINLOGON","features":[25]},{"name":"LOOKUP_TRANSLATE_NAMES","features":[25]},{"name":"LOOKUP_VIEW_LOCAL_INFORMATION","features":[25]},{"name":"LSAD_AES_BLOCK_SIZE","features":[25]},{"name":"LSAD_AES_CRYPT_SHA512_HASH_SIZE","features":[25]},{"name":"LSAD_AES_KEY_SIZE","features":[25]},{"name":"LSAD_AES_SALT_SIZE","features":[25]},{"name":"LSASETCAPS_RELOAD_FLAG","features":[25]},{"name":"LSASETCAPS_VALID_FLAG_MASK","features":[25]},{"name":"LSA_ADT_LEGACY_SECURITY_SOURCE_NAME","features":[25]},{"name":"LSA_ADT_SECURITY_SOURCE_NAME","features":[25]},{"name":"LSA_AP_NAME_CALL_PACKAGE","features":[25]},{"name":"LSA_AP_NAME_CALL_PACKAGE_PASSTHROUGH","features":[25]},{"name":"LSA_AP_NAME_CALL_PACKAGE_UNTRUSTED","features":[25]},{"name":"LSA_AP_NAME_INITIALIZE_PACKAGE","features":[25]},{"name":"LSA_AP_NAME_LOGON_TERMINATED","features":[25]},{"name":"LSA_AP_NAME_LOGON_USER","features":[25]},{"name":"LSA_AP_NAME_LOGON_USER_EX","features":[25]},{"name":"LSA_AP_NAME_LOGON_USER_EX2","features":[25]},{"name":"LSA_AP_POST_LOGON_USER","features":[3,25]},{"name":"LSA_AUTH_INFORMATION","features":[25]},{"name":"LSA_AUTH_INFORMATION_AUTH_TYPE","features":[25]},{"name":"LSA_CALL_LICENSE_SERVER","features":[25]},{"name":"LSA_DISPATCH_TABLE","features":[3,25]},{"name":"LSA_ENUMERATION_INFORMATION","features":[25]},{"name":"LSA_FOREST_TRUST_BINARY_DATA","features":[25]},{"name":"LSA_FOREST_TRUST_COLLISION_INFORMATION","features":[25]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD","features":[25]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD_TYPE","features":[25]},{"name":"LSA_FOREST_TRUST_DOMAIN_INFO","features":[25]},{"name":"LSA_FOREST_TRUST_INFORMATION","features":[25]},{"name":"LSA_FOREST_TRUST_INFORMATION2","features":[25]},{"name":"LSA_FOREST_TRUST_RECORD","features":[25]},{"name":"LSA_FOREST_TRUST_RECORD2","features":[25]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE","features":[25]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE_UNRECOGNIZED","features":[25]},{"name":"LSA_FOREST_TRUST_SCANNER_INFO","features":[25]},{"name":"LSA_FTRECORD_DISABLED_REASONS","features":[25]},{"name":"LSA_GLOBAL_SECRET_PREFIX","features":[25]},{"name":"LSA_GLOBAL_SECRET_PREFIX_LENGTH","features":[25]},{"name":"LSA_HANDLE","features":[25]},{"name":"LSA_LAST_INTER_LOGON_INFO","features":[25]},{"name":"LSA_LOCAL_SECRET_PREFIX","features":[25]},{"name":"LSA_LOCAL_SECRET_PREFIX_LENGTH","features":[25]},{"name":"LSA_LOOKUP_DISALLOW_CONNECTED_ACCOUNT_INTERNET_SID","features":[25]},{"name":"LSA_LOOKUP_DOMAIN_INFO_CLASS","features":[25]},{"name":"LSA_LOOKUP_ISOLATED_AS_LOCAL","features":[25]},{"name":"LSA_LOOKUP_PREFER_INTERNET_NAMES","features":[25]},{"name":"LSA_MACHINE_SECRET_PREFIX","features":[25]},{"name":"LSA_MAXIMUM_ENUMERATION_LENGTH","features":[25]},{"name":"LSA_MAXIMUM_SID_COUNT","features":[25]},{"name":"LSA_MODE_INDIVIDUAL_ACCOUNTS","features":[25]},{"name":"LSA_MODE_LOG_FULL","features":[25]},{"name":"LSA_MODE_MANDATORY_ACCESS","features":[25]},{"name":"LSA_MODE_PASSWORD_PROTECTED","features":[25]},{"name":"LSA_NB_DISABLED_ADMIN","features":[25]},{"name":"LSA_NB_DISABLED_CONFLICT","features":[25]},{"name":"LSA_OBJECT_ATTRIBUTES","features":[3,25]},{"name":"LSA_QUERY_CLIENT_PRELOGON_SESSION_ID","features":[25]},{"name":"LSA_REFERENCED_DOMAIN_LIST","features":[25]},{"name":"LSA_SCANNER_INFO_ADMIN_ALL_FLAGS","features":[25]},{"name":"LSA_SCANNER_INFO_DISABLE_AUTH_TARGET_VALIDATION","features":[25]},{"name":"LSA_SECPKG_FUNCTION_TABLE","features":[3,25,121,39]},{"name":"LSA_SECRET_MAXIMUM_COUNT","features":[25]},{"name":"LSA_SECRET_MAXIMUM_LENGTH","features":[25]},{"name":"LSA_SID_DISABLED_ADMIN","features":[25]},{"name":"LSA_SID_DISABLED_CONFLICT","features":[25]},{"name":"LSA_STRING","features":[25]},{"name":"LSA_TLN_DISABLED_ADMIN","features":[25]},{"name":"LSA_TLN_DISABLED_CONFLICT","features":[25]},{"name":"LSA_TLN_DISABLED_NEW","features":[25]},{"name":"LSA_TOKEN_INFORMATION_NULL","features":[25]},{"name":"LSA_TOKEN_INFORMATION_TYPE","features":[25]},{"name":"LSA_TOKEN_INFORMATION_V1","features":[3,25]},{"name":"LSA_TOKEN_INFORMATION_V3","features":[3,25]},{"name":"LSA_TRANSLATED_NAME","features":[25]},{"name":"LSA_TRANSLATED_SID","features":[25]},{"name":"LSA_TRANSLATED_SID2","features":[25]},{"name":"LSA_TRUST_INFORMATION","features":[25]},{"name":"LSA_UNICODE_STRING","features":[25]},{"name":"LocalUserCredKey","features":[25]},{"name":"LsaAddAccountRights","features":[3,25]},{"name":"LsaCallAuthenticationPackage","features":[3,25]},{"name":"LsaClose","features":[3,25]},{"name":"LsaConnectUntrusted","features":[3,25]},{"name":"LsaCreateTrustedDomainEx","features":[3,25]},{"name":"LsaDeleteTrustedDomain","features":[3,25]},{"name":"LsaDeregisterLogonProcess","features":[3,25]},{"name":"LsaEnumerateAccountRights","features":[3,25]},{"name":"LsaEnumerateAccountsWithUserRight","features":[3,25]},{"name":"LsaEnumerateLogonSessions","features":[3,25]},{"name":"LsaEnumerateTrustedDomains","features":[3,25]},{"name":"LsaEnumerateTrustedDomainsEx","features":[3,25]},{"name":"LsaFreeMemory","features":[3,25]},{"name":"LsaFreeReturnBuffer","features":[3,25]},{"name":"LsaGetAppliedCAPIDs","features":[3,25]},{"name":"LsaGetLogonSessionData","features":[3,25]},{"name":"LsaLogonUser","features":[3,25]},{"name":"LsaLookupAuthenticationPackage","features":[3,25]},{"name":"LsaLookupNames","features":[3,25]},{"name":"LsaLookupNames2","features":[3,25]},{"name":"LsaLookupSids","features":[3,25]},{"name":"LsaLookupSids2","features":[3,25]},{"name":"LsaNtStatusToWinError","features":[3,25]},{"name":"LsaOpenPolicy","features":[3,25]},{"name":"LsaOpenTrustedDomainByName","features":[3,25]},{"name":"LsaQueryCAPs","features":[3,25]},{"name":"LsaQueryDomainInformationPolicy","features":[3,25]},{"name":"LsaQueryForestTrustInformation","features":[3,25]},{"name":"LsaQueryForestTrustInformation2","features":[3,25]},{"name":"LsaQueryInformationPolicy","features":[3,25]},{"name":"LsaQueryTrustedDomainInfo","features":[3,25]},{"name":"LsaQueryTrustedDomainInfoByName","features":[3,25]},{"name":"LsaRegisterLogonProcess","features":[3,25]},{"name":"LsaRegisterPolicyChangeNotification","features":[3,25]},{"name":"LsaRemoveAccountRights","features":[3,25]},{"name":"LsaRetrievePrivateData","features":[3,25]},{"name":"LsaSetCAPs","features":[3,25]},{"name":"LsaSetDomainInformationPolicy","features":[3,25]},{"name":"LsaSetForestTrustInformation","features":[3,25]},{"name":"LsaSetForestTrustInformation2","features":[3,25]},{"name":"LsaSetInformationPolicy","features":[3,25]},{"name":"LsaSetTrustedDomainInfoByName","features":[3,25]},{"name":"LsaSetTrustedDomainInformation","features":[3,25]},{"name":"LsaStorePrivateData","features":[3,25]},{"name":"LsaTokenInformationNull","features":[25]},{"name":"LsaTokenInformationV1","features":[25]},{"name":"LsaTokenInformationV2","features":[25]},{"name":"LsaTokenInformationV3","features":[25]},{"name":"LsaUnregisterPolicyChangeNotification","features":[3,25]},{"name":"MAKE_SIGNATURE_FN","features":[25,121]},{"name":"MAXIMUM_CAPES_PER_CAP","features":[25]},{"name":"MAX_CRED_SIZE","features":[25]},{"name":"MAX_PROTOCOL_ID_SIZE","features":[25]},{"name":"MAX_RECORDS_IN_FOREST_TRUST_INFO","features":[25]},{"name":"MAX_USER_RECORDS","features":[25]},{"name":"MICROSOFT_KERBEROS_NAME","features":[25]},{"name":"MICROSOFT_KERBEROS_NAME_A","features":[25]},{"name":"MICROSOFT_KERBEROS_NAME_W","features":[25]},{"name":"MSV1_0","features":[25]},{"name":"MSV1_0_ALLOW_FORCE_GUEST","features":[25]},{"name":"MSV1_0_ALLOW_MSVCHAPV2","features":[25]},{"name":"MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT","features":[25]},{"name":"MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT","features":[25]},{"name":"MSV1_0_AVID","features":[25]},{"name":"MSV1_0_AV_FLAG_FORCE_GUEST","features":[25]},{"name":"MSV1_0_AV_FLAG_MIC_HANDSHAKE_MESSAGES","features":[25]},{"name":"MSV1_0_AV_FLAG_UNVERIFIED_TARGET","features":[25]},{"name":"MSV1_0_AV_PAIR","features":[25]},{"name":"MSV1_0_CHALLENGE_LENGTH","features":[25]},{"name":"MSV1_0_CHANGEPASSWORD_REQUEST","features":[3,25]},{"name":"MSV1_0_CHANGEPASSWORD_RESPONSE","features":[3,25]},{"name":"MSV1_0_CHECK_LOGONHOURS_FOR_S4U","features":[25]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_ALLOWED","features":[25]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_SUPPLIED","features":[25]},{"name":"MSV1_0_CREDENTIAL_KEY","features":[25]},{"name":"MSV1_0_CREDENTIAL_KEY_LENGTH","features":[25]},{"name":"MSV1_0_CREDENTIAL_KEY_TYPE","features":[25]},{"name":"MSV1_0_CRED_CREDKEY_PRESENT","features":[25]},{"name":"MSV1_0_CRED_LM_PRESENT","features":[25]},{"name":"MSV1_0_CRED_NT_PRESENT","features":[25]},{"name":"MSV1_0_CRED_REMOVED","features":[25]},{"name":"MSV1_0_CRED_SHA_PRESENT","features":[25]},{"name":"MSV1_0_CRED_VERSION","features":[25]},{"name":"MSV1_0_CRED_VERSION_ARSO","features":[25]},{"name":"MSV1_0_CRED_VERSION_INVALID","features":[25]},{"name":"MSV1_0_CRED_VERSION_IUM","features":[25]},{"name":"MSV1_0_CRED_VERSION_REMOTE","features":[25]},{"name":"MSV1_0_CRED_VERSION_RESERVED_1","features":[25]},{"name":"MSV1_0_CRED_VERSION_V2","features":[25]},{"name":"MSV1_0_CRED_VERSION_V3","features":[25]},{"name":"MSV1_0_DISABLE_PERSONAL_FALLBACK","features":[25]},{"name":"MSV1_0_DONT_TRY_GUEST_ACCOUNT","features":[25]},{"name":"MSV1_0_GUEST_LOGON","features":[25]},{"name":"MSV1_0_INTERACTIVE_LOGON","features":[25]},{"name":"MSV1_0_INTERACTIVE_PROFILE","features":[25]},{"name":"MSV1_0_INTERNET_DOMAIN","features":[25]},{"name":"MSV1_0_IUM_SUPPLEMENTAL_CREDENTIAL","features":[25]},{"name":"MSV1_0_LANMAN_SESSION_KEY_LENGTH","features":[25]},{"name":"MSV1_0_LM20_LOGON","features":[25]},{"name":"MSV1_0_LM20_LOGON_PROFILE","features":[25]},{"name":"MSV1_0_LOGON_SUBMIT_TYPE","features":[25]},{"name":"MSV1_0_MAX_AVL_SIZE","features":[25]},{"name":"MSV1_0_MAX_NTLM3_LIFE","features":[25]},{"name":"MSV1_0_MNS_LOGON","features":[25]},{"name":"MSV1_0_NTLM3_OWF_LENGTH","features":[25]},{"name":"MSV1_0_NTLM3_RESPONSE","features":[25]},{"name":"MSV1_0_NTLM3_RESPONSE_LENGTH","features":[25]},{"name":"MSV1_0_OWF_PASSWORD_LENGTH","features":[25]},{"name":"MSV1_0_PACKAGE_NAME","features":[25]},{"name":"MSV1_0_PACKAGE_NAMEW","features":[25]},{"name":"MSV1_0_PASSTHROUGH_REQUEST","features":[25]},{"name":"MSV1_0_PASSTHROUGH_RESPONSE","features":[25]},{"name":"MSV1_0_PASSTHRU","features":[25]},{"name":"MSV1_0_PROFILE_BUFFER_TYPE","features":[25]},{"name":"MSV1_0_PROTOCOL_MESSAGE_TYPE","features":[25]},{"name":"MSV1_0_REMOTE_SUPPLEMENTAL_CREDENTIAL","features":[25]},{"name":"MSV1_0_RETURN_PASSWORD_EXPIRY","features":[25]},{"name":"MSV1_0_RETURN_PROFILE_PATH","features":[25]},{"name":"MSV1_0_RETURN_USER_PARAMETERS","features":[25]},{"name":"MSV1_0_S4U2SELF","features":[25]},{"name":"MSV1_0_S4U_LOGON","features":[25]},{"name":"MSV1_0_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[25]},{"name":"MSV1_0_SHA_PASSWORD_LENGTH","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_EX","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_IIS","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_RAS","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_SHIFT","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_FLAGS","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_KEY","features":[25]},{"name":"MSV1_0_SUBAUTHENTICATION_VALUE","features":[25]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_DISABLED","features":[25]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_EXPIRY","features":[25]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_TYPE","features":[25]},{"name":"MSV1_0_SUBAUTH_LOCKOUT","features":[25]},{"name":"MSV1_0_SUBAUTH_LOGON","features":[25]},{"name":"MSV1_0_SUBAUTH_LOGON_HOURS","features":[25]},{"name":"MSV1_0_SUBAUTH_PASSWORD","features":[25]},{"name":"MSV1_0_SUBAUTH_PASSWORD_EXPIRY","features":[25]},{"name":"MSV1_0_SUBAUTH_REQUEST","features":[25]},{"name":"MSV1_0_SUBAUTH_RESPONSE","features":[25]},{"name":"MSV1_0_SUBAUTH_WORKSTATIONS","features":[25]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL","features":[25]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V2","features":[25]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V3","features":[25]},{"name":"MSV1_0_TRY_GUEST_ACCOUNT_ONLY","features":[25]},{"name":"MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY","features":[25]},{"name":"MSV1_0_UPDATE_LOGON_STATISTICS","features":[25]},{"name":"MSV1_0_USER_SESSION_KEY_LENGTH","features":[25]},{"name":"MSV1_0_USE_CLIENT_CHALLENGE","features":[25]},{"name":"MSV1_0_USE_DOMAIN_FOR_ROUTING_ONLY","features":[25]},{"name":"MSV1_0_VALIDATION_INFO","features":[3,25,122]},{"name":"MSV1_0_VALIDATION_KICKOFF_TIME","features":[25]},{"name":"MSV1_0_VALIDATION_LOGOFF_TIME","features":[25]},{"name":"MSV1_0_VALIDATION_LOGON_DOMAIN","features":[25]},{"name":"MSV1_0_VALIDATION_LOGON_SERVER","features":[25]},{"name":"MSV1_0_VALIDATION_SESSION_KEY","features":[25]},{"name":"MSV1_0_VALIDATION_USER_FLAGS","features":[25]},{"name":"MSV1_0_VALIDATION_USER_ID","features":[25]},{"name":"MSV_SUBAUTH_LOGON_PARAMETER_CONTROL","features":[25]},{"name":"MSV_SUB_AUTHENTICATION_FILTER","features":[25]},{"name":"MSV_SUPPLEMENTAL_CREDENTIAL_FLAGS","features":[25]},{"name":"MakeSignature","features":[25,121]},{"name":"MsV1_0CacheLogon","features":[25]},{"name":"MsV1_0CacheLookup","features":[25]},{"name":"MsV1_0CacheLookupEx","features":[25]},{"name":"MsV1_0ChangeCachedPassword","features":[25]},{"name":"MsV1_0ChangePassword","features":[25]},{"name":"MsV1_0ClearCachedCredentials","features":[25]},{"name":"MsV1_0ConfigLocalAliases","features":[25]},{"name":"MsV1_0DecryptDpapiMasterKey","features":[25]},{"name":"MsV1_0DeleteTbalSecrets","features":[25]},{"name":"MsV1_0DeriveCredential","features":[25]},{"name":"MsV1_0EnumerateUsers","features":[25]},{"name":"MsV1_0GenericPassthrough","features":[25]},{"name":"MsV1_0GetCredentialKey","features":[25]},{"name":"MsV1_0GetStrongCredentialKey","features":[25]},{"name":"MsV1_0GetUserInfo","features":[25]},{"name":"MsV1_0InteractiveLogon","features":[25]},{"name":"MsV1_0InteractiveProfile","features":[25]},{"name":"MsV1_0Lm20ChallengeRequest","features":[25]},{"name":"MsV1_0Lm20GetChallengeResponse","features":[25]},{"name":"MsV1_0Lm20Logon","features":[25]},{"name":"MsV1_0Lm20LogonProfile","features":[25]},{"name":"MsV1_0LookupToken","features":[25]},{"name":"MsV1_0LuidLogon","features":[25]},{"name":"MsV1_0NetworkLogon","features":[25]},{"name":"MsV1_0NoElevationLogon","features":[25]},{"name":"MsV1_0ProvisionTbal","features":[25]},{"name":"MsV1_0ReLogonUsers","features":[25]},{"name":"MsV1_0S4ULogon","features":[25]},{"name":"MsV1_0SetProcessOption","features":[25]},{"name":"MsV1_0SetThreadOption","features":[25]},{"name":"MsV1_0SmartCardProfile","features":[25]},{"name":"MsV1_0SubAuth","features":[25]},{"name":"MsV1_0SubAuthLogon","features":[25]},{"name":"MsV1_0TransferCred","features":[25]},{"name":"MsV1_0ValidateAuth","features":[25]},{"name":"MsV1_0VirtualLogon","features":[25]},{"name":"MsV1_0WorkstationUnlockLogon","features":[25]},{"name":"MsvAvChannelBindings","features":[25]},{"name":"MsvAvDnsComputerName","features":[25]},{"name":"MsvAvDnsDomainName","features":[25]},{"name":"MsvAvDnsTreeName","features":[25]},{"name":"MsvAvEOL","features":[25]},{"name":"MsvAvFlags","features":[25]},{"name":"MsvAvNbComputerName","features":[25]},{"name":"MsvAvNbDomainName","features":[25]},{"name":"MsvAvRestrictions","features":[25]},{"name":"MsvAvTargetName","features":[25]},{"name":"MsvAvTimestamp","features":[25]},{"name":"NEGOSSP_NAME","features":[25]},{"name":"NEGOSSP_NAME_A","features":[25]},{"name":"NEGOSSP_NAME_W","features":[25]},{"name":"NEGOTIATE_ALLOW_NTLM","features":[25]},{"name":"NEGOTIATE_CALLER_NAME_REQUEST","features":[3,25]},{"name":"NEGOTIATE_CALLER_NAME_RESPONSE","features":[25]},{"name":"NEGOTIATE_MAX_PREFIX","features":[25]},{"name":"NEGOTIATE_MESSAGES","features":[25]},{"name":"NEGOTIATE_NEG_NTLM","features":[25]},{"name":"NEGOTIATE_PACKAGE_PREFIX","features":[25]},{"name":"NEGOTIATE_PACKAGE_PREFIXES","features":[25]},{"name":"NETLOGON_GENERIC_INFO","features":[25]},{"name":"NETLOGON_INTERACTIVE_INFO","features":[25,122]},{"name":"NETLOGON_LOGON_IDENTITY_INFO","features":[25]},{"name":"NETLOGON_LOGON_INFO_CLASS","features":[25]},{"name":"NETLOGON_NETWORK_INFO","features":[25]},{"name":"NETLOGON_SERVICE_INFO","features":[25,122]},{"name":"NGC_DATA_FLAG_IS_CLOUD_TRUST_CRED","features":[25]},{"name":"NGC_DATA_FLAG_IS_SMARTCARD_DATA","features":[25]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[25]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[25]},{"name":"NOTIFIER_FLAG_NEW_THREAD","features":[25]},{"name":"NOTIFIER_FLAG_ONE_SHOT","features":[25]},{"name":"NOTIFIER_FLAG_SECONDS","features":[25]},{"name":"NOTIFIER_TYPE_HANDLE_WAIT","features":[25]},{"name":"NOTIFIER_TYPE_IMMEDIATE","features":[25]},{"name":"NOTIFIER_TYPE_INTERVAL","features":[25]},{"name":"NOTIFIER_TYPE_NOTIFY_EVENT","features":[25]},{"name":"NOTIFIER_TYPE_STATE_CHANGE","features":[25]},{"name":"NOTIFY_CLASS_DOMAIN_CHANGE","features":[25]},{"name":"NOTIFY_CLASS_PACKAGE_CHANGE","features":[25]},{"name":"NOTIFY_CLASS_REGISTRY_CHANGE","features":[25]},{"name":"NOTIFY_CLASS_ROLE_CHANGE","features":[25]},{"name":"NO_LONG_NAMES","features":[25]},{"name":"NTLMSP_NAME","features":[25]},{"name":"NTLMSP_NAME_A","features":[25]},{"name":"NameCanonical","features":[25]},{"name":"NameCanonicalEx","features":[25]},{"name":"NameDisplay","features":[25]},{"name":"NameDnsDomain","features":[25]},{"name":"NameFullyQualifiedDN","features":[25]},{"name":"NameGivenName","features":[25]},{"name":"NameSamCompatible","features":[25]},{"name":"NameServicePrincipal","features":[25]},{"name":"NameSurname","features":[25]},{"name":"NameUniqueId","features":[25]},{"name":"NameUnknown","features":[25]},{"name":"NameUserPrincipal","features":[25]},{"name":"NegCallPackageMax","features":[25]},{"name":"NegEnumPackagePrefixes","features":[25]},{"name":"NegGetCallerName","features":[25]},{"name":"NegMsgReserved1","features":[25]},{"name":"NegTransferCredentials","features":[25]},{"name":"NetlogonGenericInformation","features":[25]},{"name":"NetlogonInteractiveInformation","features":[25]},{"name":"NetlogonInteractiveTransitiveInformation","features":[25]},{"name":"NetlogonNetworkInformation","features":[25]},{"name":"NetlogonNetworkTransitiveInformation","features":[25]},{"name":"NetlogonServiceInformation","features":[25]},{"name":"NetlogonServiceTransitiveInformation","features":[25]},{"name":"PCT1SP_NAME","features":[25]},{"name":"PCT1SP_NAME_A","features":[25]},{"name":"PCT1SP_NAME_W","features":[25]},{"name":"PER_USER_AUDIT_FAILURE_EXCLUDE","features":[25]},{"name":"PER_USER_AUDIT_FAILURE_INCLUDE","features":[25]},{"name":"PER_USER_AUDIT_NONE","features":[25]},{"name":"PER_USER_AUDIT_SUCCESS_EXCLUDE","features":[25]},{"name":"PER_USER_AUDIT_SUCCESS_INCLUDE","features":[25]},{"name":"PER_USER_POLICY_UNCHANGED","features":[25]},{"name":"PKSEC_CREATE_CONTEXT_LIST","features":[25]},{"name":"PKSEC_DEREFERENCE_LIST_ENTRY","features":[25,9]},{"name":"PKSEC_INSERT_LIST_ENTRY","features":[25,9]},{"name":"PKSEC_LOCATE_PKG_BY_ID","features":[25]},{"name":"PKSEC_REFERENCE_LIST_ENTRY","features":[3,25,9]},{"name":"PKSEC_SERIALIZE_SCHANNEL_AUTH_DATA","features":[3,25]},{"name":"PKSEC_SERIALIZE_WINNT_AUTH_DATA","features":[3,25]},{"name":"PKU2U_CERTIFICATE_S4U_LOGON","features":[25]},{"name":"PKU2U_CERT_BLOB","features":[25]},{"name":"PKU2U_CREDUI_CONTEXT","features":[25]},{"name":"PKU2U_LOGON_SUBMIT_TYPE","features":[25]},{"name":"PKU2U_PACKAGE_NAME","features":[25]},{"name":"PKU2U_PACKAGE_NAME_A","features":[25]},{"name":"PKU2U_PACKAGE_NAME_W","features":[25]},{"name":"PLSA_ADD_CREDENTIAL","features":[3,25]},{"name":"PLSA_ALLOCATE_CLIENT_BUFFER","features":[3,25]},{"name":"PLSA_ALLOCATE_LSA_HEAP","features":[25]},{"name":"PLSA_ALLOCATE_PRIVATE_HEAP","features":[25]},{"name":"PLSA_ALLOCATE_SHARED_MEMORY","features":[25]},{"name":"PLSA_AP_CALL_PACKAGE","features":[3,25]},{"name":"PLSA_AP_CALL_PACKAGE_PASSTHROUGH","features":[3,25]},{"name":"PLSA_AP_INITIALIZE_PACKAGE","features":[3,25]},{"name":"PLSA_AP_LOGON_TERMINATED","features":[3,25]},{"name":"PLSA_AP_LOGON_USER","features":[3,25]},{"name":"PLSA_AP_LOGON_USER_EX","features":[3,25]},{"name":"PLSA_AP_LOGON_USER_EX2","features":[3,25]},{"name":"PLSA_AP_LOGON_USER_EX3","features":[3,25]},{"name":"PLSA_AP_POST_LOGON_USER_SURROGATE","features":[3,25]},{"name":"PLSA_AP_PRE_LOGON_USER_SURROGATE","features":[3,25]},{"name":"PLSA_AUDIT_ACCOUNT_LOGON","features":[3,25]},{"name":"PLSA_AUDIT_LOGON","features":[3,25]},{"name":"PLSA_AUDIT_LOGON_EX","features":[3,25]},{"name":"PLSA_CALLBACK_FUNCTION","features":[3,25]},{"name":"PLSA_CALL_PACKAGE","features":[3,25]},{"name":"PLSA_CALL_PACKAGEEX","features":[3,25]},{"name":"PLSA_CALL_PACKAGE_PASSTHROUGH","features":[3,25]},{"name":"PLSA_CANCEL_NOTIFICATION","features":[3,25]},{"name":"PLSA_CHECK_PROTECTED_USER_BY_TOKEN","features":[3,25]},{"name":"PLSA_CLIENT_CALLBACK","features":[3,25]},{"name":"PLSA_CLOSE_SAM_USER","features":[3,25]},{"name":"PLSA_CONVERT_AUTH_DATA_TO_TOKEN","features":[3,25]},{"name":"PLSA_COPY_FROM_CLIENT_BUFFER","features":[3,25]},{"name":"PLSA_COPY_TO_CLIENT_BUFFER","features":[3,25]},{"name":"PLSA_CRACK_SINGLE_NAME","features":[3,25]},{"name":"PLSA_CREATE_LOGON_SESSION","features":[3,25]},{"name":"PLSA_CREATE_SHARED_MEMORY","features":[25]},{"name":"PLSA_CREATE_THREAD","features":[3,25,39]},{"name":"PLSA_CREATE_TOKEN","features":[3,25]},{"name":"PLSA_CREATE_TOKEN_EX","features":[3,25]},{"name":"PLSA_DELETE_CREDENTIAL","features":[3,25]},{"name":"PLSA_DELETE_LOGON_SESSION","features":[3,25]},{"name":"PLSA_DELETE_SHARED_MEMORY","features":[3,25]},{"name":"PLSA_DUPLICATE_HANDLE","features":[3,25]},{"name":"PLSA_EXPAND_AUTH_DATA_FOR_DOMAIN","features":[3,25]},{"name":"PLSA_FREE_CLIENT_BUFFER","features":[3,25]},{"name":"PLSA_FREE_LSA_HEAP","features":[25]},{"name":"PLSA_FREE_PRIVATE_HEAP","features":[25]},{"name":"PLSA_FREE_SHARED_MEMORY","features":[25]},{"name":"PLSA_GET_APP_MODE_INFO","features":[3,25]},{"name":"PLSA_GET_AUTH_DATA_FOR_USER","features":[3,25]},{"name":"PLSA_GET_CALL_INFO","features":[3,25]},{"name":"PLSA_GET_CLIENT_INFO","features":[3,25]},{"name":"PLSA_GET_CLIENT_INFO_EX","features":[3,25]},{"name":"PLSA_GET_CREDENTIALS","features":[3,25]},{"name":"PLSA_GET_EXTENDED_CALL_FLAGS","features":[3,25]},{"name":"PLSA_GET_SERVICE_ACCOUNT_PASSWORD","features":[3,25]},{"name":"PLSA_GET_USER_AUTH_DATA","features":[3,25]},{"name":"PLSA_GET_USER_CREDENTIALS","features":[3,25]},{"name":"PLSA_IMPERSONATE_CLIENT","features":[3,25]},{"name":"PLSA_LOCATE_PKG_BY_ID","features":[25]},{"name":"PLSA_MAP_BUFFER","features":[3,25]},{"name":"PLSA_OPEN_SAM_USER","features":[3,25]},{"name":"PLSA_OPEN_TOKEN_BY_LOGON_ID","features":[3,25]},{"name":"PLSA_PROTECT_MEMORY","features":[25]},{"name":"PLSA_QUERY_CLIENT_REQUEST","features":[3,25]},{"name":"PLSA_REDIRECTED_LOGON_CALLBACK","features":[3,25]},{"name":"PLSA_REDIRECTED_LOGON_CLEANUP_CALLBACK","features":[3,25]},{"name":"PLSA_REDIRECTED_LOGON_GET_LOGON_CREDS","features":[3,25]},{"name":"PLSA_REDIRECTED_LOGON_GET_SID","features":[3,25]},{"name":"PLSA_REDIRECTED_LOGON_GET_SUPP_CREDS","features":[3,25]},{"name":"PLSA_REDIRECTED_LOGON_INIT","features":[3,25]},{"name":"PLSA_REGISTER_CALLBACK","features":[3,25]},{"name":"PLSA_REGISTER_NOTIFICATION","features":[3,25,39]},{"name":"PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS","features":[3,25]},{"name":"PLSA_SET_APP_MODE_INFO","features":[3,25]},{"name":"PLSA_UNLOAD_PACKAGE","features":[3,25]},{"name":"PLSA_UPDATE_PRIMARY_CREDENTIALS","features":[3,25]},{"name":"POLICY_ACCOUNT_DOMAIN_INFO","features":[25]},{"name":"POLICY_AUDIT_CATEGORIES_INFO","features":[25]},{"name":"POLICY_AUDIT_EVENTS_INFO","features":[3,25]},{"name":"POLICY_AUDIT_EVENT_FAILURE","features":[25]},{"name":"POLICY_AUDIT_EVENT_NONE","features":[25]},{"name":"POLICY_AUDIT_EVENT_SUCCESS","features":[25]},{"name":"POLICY_AUDIT_EVENT_TYPE","features":[25]},{"name":"POLICY_AUDIT_EVENT_UNCHANGED","features":[25]},{"name":"POLICY_AUDIT_FULL_QUERY_INFO","features":[3,25]},{"name":"POLICY_AUDIT_FULL_SET_INFO","features":[3,25]},{"name":"POLICY_AUDIT_LOG_ADMIN","features":[25]},{"name":"POLICY_AUDIT_LOG_INFO","features":[3,25]},{"name":"POLICY_AUDIT_SID_ARRAY","features":[25]},{"name":"POLICY_AUDIT_SUBCATEGORIES_INFO","features":[25]},{"name":"POLICY_CREATE_ACCOUNT","features":[25]},{"name":"POLICY_CREATE_PRIVILEGE","features":[25]},{"name":"POLICY_CREATE_SECRET","features":[25]},{"name":"POLICY_DEFAULT_QUOTA_INFO","features":[25]},{"name":"POLICY_DNS_DOMAIN_INFO","features":[25]},{"name":"POLICY_DOMAIN_EFS_INFO","features":[25]},{"name":"POLICY_DOMAIN_INFORMATION_CLASS","features":[25]},{"name":"POLICY_DOMAIN_KERBEROS_TICKET_INFO","features":[25]},{"name":"POLICY_GET_PRIVATE_INFORMATION","features":[25]},{"name":"POLICY_INFORMATION_CLASS","features":[25]},{"name":"POLICY_KERBEROS_VALIDATE_CLIENT","features":[25]},{"name":"POLICY_LOOKUP_NAMES","features":[25]},{"name":"POLICY_LSA_SERVER_ROLE","features":[25]},{"name":"POLICY_LSA_SERVER_ROLE_INFO","features":[25]},{"name":"POLICY_MACHINE_ACCT_INFO","features":[25]},{"name":"POLICY_MACHINE_ACCT_INFO2","features":[25]},{"name":"POLICY_MODIFICATION_INFO","features":[25]},{"name":"POLICY_NOTIFICATION","features":[25]},{"name":"POLICY_NOTIFICATION_INFORMATION_CLASS","features":[25]},{"name":"POLICY_PD_ACCOUNT_INFO","features":[25]},{"name":"POLICY_PRIMARY_DOMAIN_INFO","features":[25]},{"name":"POLICY_QOS_ALLOW_LOCAL_ROOT_CERT_STORE","features":[25]},{"name":"POLICY_QOS_DHCP_SERVER_ALLOWED","features":[25]},{"name":"POLICY_QOS_INBOUND_CONFIDENTIALITY","features":[25]},{"name":"POLICY_QOS_INBOUND_INTEGRITY","features":[25]},{"name":"POLICY_QOS_OUTBOUND_CONFIDENTIALITY","features":[25]},{"name":"POLICY_QOS_OUTBOUND_INTEGRITY","features":[25]},{"name":"POLICY_QOS_RAS_SERVER_ALLOWED","features":[25]},{"name":"POLICY_QOS_SCHANNEL_REQUIRED","features":[25]},{"name":"POLICY_REPLICA_SOURCE_INFO","features":[25]},{"name":"POLICY_SERVER_ADMIN","features":[25]},{"name":"POLICY_SET_AUDIT_REQUIREMENTS","features":[25]},{"name":"POLICY_SET_DEFAULT_QUOTA_LIMITS","features":[25]},{"name":"POLICY_TRUST_ADMIN","features":[25]},{"name":"POLICY_VIEW_AUDIT_INFORMATION","features":[25]},{"name":"POLICY_VIEW_LOCAL_INFORMATION","features":[25]},{"name":"PRIMARY_CRED_ARSO_LOGON","features":[25]},{"name":"PRIMARY_CRED_AUTH_ID","features":[25]},{"name":"PRIMARY_CRED_CACHED_INTERACTIVE_LOGON","features":[25]},{"name":"PRIMARY_CRED_CACHED_LOGON","features":[25]},{"name":"PRIMARY_CRED_CLEAR_PASSWORD","features":[25]},{"name":"PRIMARY_CRED_DO_NOT_SPLIT","features":[25]},{"name":"PRIMARY_CRED_ENCRYPTED_CREDGUARD_PASSWORD","features":[25]},{"name":"PRIMARY_CRED_ENTERPRISE_INTERNET_USER","features":[25]},{"name":"PRIMARY_CRED_EX","features":[25]},{"name":"PRIMARY_CRED_FOR_PASSWORD_CHANGE","features":[25]},{"name":"PRIMARY_CRED_INTERACTIVE_FIDO_LOGON","features":[25]},{"name":"PRIMARY_CRED_INTERACTIVE_NGC_LOGON","features":[25]},{"name":"PRIMARY_CRED_INTERACTIVE_SMARTCARD_LOGON","features":[25]},{"name":"PRIMARY_CRED_INTERNET_USER","features":[25]},{"name":"PRIMARY_CRED_LOGON_LUA","features":[25]},{"name":"PRIMARY_CRED_LOGON_NO_TCB","features":[25]},{"name":"PRIMARY_CRED_LOGON_PACKAGE_SHIFT","features":[25]},{"name":"PRIMARY_CRED_OWF_PASSWORD","features":[25]},{"name":"PRIMARY_CRED_PACKAGE_MASK","features":[25]},{"name":"PRIMARY_CRED_PACKED_CREDS","features":[25]},{"name":"PRIMARY_CRED_PROTECTED_USER","features":[25]},{"name":"PRIMARY_CRED_REFRESH_NEEDED","features":[25]},{"name":"PRIMARY_CRED_RESTRICTED_TS","features":[25]},{"name":"PRIMARY_CRED_SUPPLEMENTAL","features":[25]},{"name":"PRIMARY_CRED_TRANSFER","features":[25]},{"name":"PRIMARY_CRED_UPDATE","features":[25]},{"name":"PSAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[25]},{"name":"PSAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[3,25]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[3,25]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[3,25]},{"name":"PSAM_INIT_NOTIFICATION_ROUTINE","features":[3,25]},{"name":"PSAM_PASSWORD_FILTER_ROUTINE","features":[3,25]},{"name":"PSAM_PASSWORD_NOTIFICATION_ROUTINE","features":[3,25]},{"name":"PctPublicKey","features":[25]},{"name":"Pku2uCertificateS4ULogon","features":[25]},{"name":"PolicyAccountDomainInformation","features":[25]},{"name":"PolicyAuditEventsInformation","features":[25]},{"name":"PolicyAuditFullQueryInformation","features":[25]},{"name":"PolicyAuditFullSetInformation","features":[25]},{"name":"PolicyAuditLogInformation","features":[25]},{"name":"PolicyDefaultQuotaInformation","features":[25]},{"name":"PolicyDnsDomainInformation","features":[25]},{"name":"PolicyDnsDomainInformationInt","features":[25]},{"name":"PolicyDomainEfsInformation","features":[25]},{"name":"PolicyDomainKerberosTicketInformation","features":[25]},{"name":"PolicyLastEntry","features":[25]},{"name":"PolicyLocalAccountDomainInformation","features":[25]},{"name":"PolicyLsaServerRoleInformation","features":[25]},{"name":"PolicyMachineAccountInformation","features":[25]},{"name":"PolicyMachineAccountInformation2","features":[25]},{"name":"PolicyModificationInformation","features":[25]},{"name":"PolicyNotifyAccountDomainInformation","features":[25]},{"name":"PolicyNotifyAuditEventsInformation","features":[25]},{"name":"PolicyNotifyDnsDomainInformation","features":[25]},{"name":"PolicyNotifyDomainEfsInformation","features":[25]},{"name":"PolicyNotifyDomainKerberosTicketInformation","features":[25]},{"name":"PolicyNotifyGlobalSaclInformation","features":[25]},{"name":"PolicyNotifyMachineAccountPasswordInformation","features":[25]},{"name":"PolicyNotifyMax","features":[25]},{"name":"PolicyNotifyServerRoleInformation","features":[25]},{"name":"PolicyPdAccountInformation","features":[25]},{"name":"PolicyPrimaryDomainInformation","features":[25]},{"name":"PolicyReplicaSourceInformation","features":[25]},{"name":"PolicyServerRoleBackup","features":[25]},{"name":"PolicyServerRolePrimary","features":[25]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_A","features":[25,121]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_W","features":[25,121]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_A","features":[25,121]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_W","features":[25,121]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_A","features":[25,121]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_W","features":[25,121]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_A","features":[25,121]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_W","features":[25,121]},{"name":"QUERY_SECURITY_CONTEXT_TOKEN_FN","features":[25,121]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_A","features":[25]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_W","features":[25]},{"name":"QueryContextAttributesA","features":[25,121]},{"name":"QueryContextAttributesExA","features":[25,121]},{"name":"QueryContextAttributesExW","features":[25,121]},{"name":"QueryContextAttributesW","features":[25,121]},{"name":"QueryCredentialsAttributesA","features":[25,121]},{"name":"QueryCredentialsAttributesExA","features":[25,121]},{"name":"QueryCredentialsAttributesExW","features":[25,121]},{"name":"QueryCredentialsAttributesW","features":[25,121]},{"name":"QuerySecurityContextToken","features":[25,121]},{"name":"QuerySecurityPackageInfoA","features":[25]},{"name":"QuerySecurityPackageInfoW","features":[25]},{"name":"RCRED_CRED_EXISTS","features":[25]},{"name":"RCRED_STATUS_NOCRED","features":[25]},{"name":"RCRED_STATUS_UNKNOWN_ISSUER","features":[25]},{"name":"REVERT_SECURITY_CONTEXT_FN","features":[25,121]},{"name":"RTL_ENCRYPT_MEMORY_SIZE","features":[25]},{"name":"RTL_ENCRYPT_OPTION_CROSS_PROCESS","features":[25]},{"name":"RTL_ENCRYPT_OPTION_FOR_SYSTEM","features":[25]},{"name":"RTL_ENCRYPT_OPTION_SAME_LOGON","features":[25]},{"name":"RevertSecurityContext","features":[25,121]},{"name":"RtlDecryptMemory","features":[3,25]},{"name":"RtlEncryptMemory","features":[3,25]},{"name":"RtlGenRandom","features":[3,25]},{"name":"SAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[25]},{"name":"SAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[25]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[25]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[25]},{"name":"SAM_DAYS_PER_WEEK","features":[25]},{"name":"SAM_INIT_NOTIFICATION_ROUTINE","features":[25]},{"name":"SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE","features":[25]},{"name":"SAM_PASSWORD_FILTER_ROUTINE","features":[25]},{"name":"SAM_REGISTER_MAPPING_ELEMENT","features":[3,25]},{"name":"SAM_REGISTER_MAPPING_LIST","features":[3,25]},{"name":"SAM_REGISTER_MAPPING_TABLE","features":[3,25]},{"name":"SASL_AUTHZID_STATE","features":[25]},{"name":"SASL_OPTION_AUTHZ_PROCESSING","features":[25]},{"name":"SASL_OPTION_AUTHZ_STRING","features":[25]},{"name":"SASL_OPTION_RECV_SIZE","features":[25]},{"name":"SASL_OPTION_SEND_SIZE","features":[25]},{"name":"SCHANNEL_ALERT","features":[25]},{"name":"SCHANNEL_ALERT_TOKEN","features":[25]},{"name":"SCHANNEL_ALERT_TOKEN_ALERT_TYPE","features":[25]},{"name":"SCHANNEL_CERT_HASH","features":[25]},{"name":"SCHANNEL_CERT_HASH_STORE","features":[25]},{"name":"SCHANNEL_CLIENT_SIGNATURE","features":[25,70]},{"name":"SCHANNEL_CRED","features":[3,25,70]},{"name":"SCHANNEL_CRED_FLAGS","features":[25]},{"name":"SCHANNEL_CRED_VERSION","features":[25]},{"name":"SCHANNEL_NAME","features":[25]},{"name":"SCHANNEL_NAME_A","features":[25]},{"name":"SCHANNEL_NAME_W","features":[25]},{"name":"SCHANNEL_RENEGOTIATE","features":[25]},{"name":"SCHANNEL_SECRET_PRIVKEY","features":[25]},{"name":"SCHANNEL_SECRET_TYPE_CAPI","features":[25]},{"name":"SCHANNEL_SESSION","features":[25]},{"name":"SCHANNEL_SESSION_TOKEN","features":[25]},{"name":"SCHANNEL_SESSION_TOKEN_FLAGS","features":[25]},{"name":"SCHANNEL_SHUTDOWN","features":[25]},{"name":"SCH_ALLOW_NULL_ENCRYPTION","features":[25]},{"name":"SCH_CRED","features":[25]},{"name":"SCH_CREDENTIALS","features":[3,25,70]},{"name":"SCH_CREDENTIALS_VERSION","features":[25]},{"name":"SCH_CRED_AUTO_CRED_VALIDATION","features":[25]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL","features":[25]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL_ON_CREATE","features":[25]},{"name":"SCH_CRED_CERT_CONTEXT","features":[25]},{"name":"SCH_CRED_DEFERRED_CRED_VALIDATION","features":[25]},{"name":"SCH_CRED_DISABLE_RECONNECTS","features":[25]},{"name":"SCH_CRED_FORMAT_CERT_CONTEXT","features":[25]},{"name":"SCH_CRED_FORMAT_CERT_HASH","features":[25]},{"name":"SCH_CRED_FORMAT_CERT_HASH_STORE","features":[25]},{"name":"SCH_CRED_IGNORE_NO_REVOCATION_CHECK","features":[25]},{"name":"SCH_CRED_IGNORE_REVOCATION_OFFLINE","features":[25]},{"name":"SCH_CRED_MANUAL_CRED_VALIDATION","features":[25]},{"name":"SCH_CRED_MAX_STORE_NAME_SIZE","features":[25]},{"name":"SCH_CRED_MAX_SUPPORTED_ALGS","features":[25]},{"name":"SCH_CRED_MAX_SUPPORTED_ALPN_IDS","features":[25]},{"name":"SCH_CRED_MAX_SUPPORTED_CERTS","features":[25]},{"name":"SCH_CRED_MAX_SUPPORTED_CHAINING_MODES","features":[25]},{"name":"SCH_CRED_MAX_SUPPORTED_CRYPTO_SETTINGS","features":[25]},{"name":"SCH_CRED_MAX_SUPPORTED_PARAMETERS","features":[25]},{"name":"SCH_CRED_MEMORY_STORE_CERT","features":[25]},{"name":"SCH_CRED_NO_DEFAULT_CREDS","features":[25]},{"name":"SCH_CRED_NO_SERVERNAME_CHECK","features":[25]},{"name":"SCH_CRED_NO_SYSTEM_MAPPER","features":[25]},{"name":"SCH_CRED_PUBLIC_CERTCHAIN","features":[25]},{"name":"SCH_CRED_RESTRICTED_ROOTS","features":[25]},{"name":"SCH_CRED_REVOCATION_CHECK_CACHE_ONLY","features":[25]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN","features":[25]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[25]},{"name":"SCH_CRED_REVOCATION_CHECK_END_CERT","features":[25]},{"name":"SCH_CRED_SECRET_CAPI","features":[25]},{"name":"SCH_CRED_SECRET_PRIVKEY","features":[25]},{"name":"SCH_CRED_SNI_CREDENTIAL","features":[25]},{"name":"SCH_CRED_SNI_ENABLE_OCSP","features":[25]},{"name":"SCH_CRED_USE_DEFAULT_CREDS","features":[25]},{"name":"SCH_CRED_V1","features":[25]},{"name":"SCH_CRED_V2","features":[25]},{"name":"SCH_CRED_V3","features":[25]},{"name":"SCH_CRED_VERSION","features":[25]},{"name":"SCH_CRED_X509_CAPI","features":[25]},{"name":"SCH_CRED_X509_CERTCHAIN","features":[25]},{"name":"SCH_DISABLE_RECONNECTS","features":[25]},{"name":"SCH_EXTENSIONS_OPTIONS_NONE","features":[25]},{"name":"SCH_EXTENSION_DATA","features":[25]},{"name":"SCH_MACHINE_CERT_HASH","features":[25]},{"name":"SCH_MAX_EXT_SUBSCRIPTIONS","features":[25]},{"name":"SCH_NO_RECORD_HEADER","features":[25]},{"name":"SCH_SEND_AUX_RECORD","features":[25]},{"name":"SCH_SEND_ROOT_CERT","features":[25]},{"name":"SCH_USE_DTLS_ONLY","features":[25]},{"name":"SCH_USE_PRESHAREDKEY_ONLY","features":[25]},{"name":"SCH_USE_STRONG_CRYPTO","features":[25]},{"name":"SECBUFFER_ALERT","features":[25]},{"name":"SECBUFFER_APPLICATION_PROTOCOLS","features":[25]},{"name":"SECBUFFER_ATTRMASK","features":[25]},{"name":"SECBUFFER_CERTIFICATE_REQUEST_CONTEXT","features":[25]},{"name":"SECBUFFER_CHANGE_PASS_RESPONSE","features":[25]},{"name":"SECBUFFER_CHANNEL_BINDINGS","features":[25]},{"name":"SECBUFFER_CHANNEL_BINDINGS_RESULT","features":[25]},{"name":"SECBUFFER_DATA","features":[25]},{"name":"SECBUFFER_DTLS_MTU","features":[25]},{"name":"SECBUFFER_EMPTY","features":[25]},{"name":"SECBUFFER_EXTRA","features":[25]},{"name":"SECBUFFER_FLAGS","features":[25]},{"name":"SECBUFFER_KERNEL_MAP","features":[25]},{"name":"SECBUFFER_MECHLIST","features":[25]},{"name":"SECBUFFER_MECHLIST_SIGNATURE","features":[25]},{"name":"SECBUFFER_MISSING","features":[25]},{"name":"SECBUFFER_NEGOTIATION_INFO","features":[25]},{"name":"SECBUFFER_PADDING","features":[25]},{"name":"SECBUFFER_PKG_PARAMS","features":[25]},{"name":"SECBUFFER_PRESHARED_KEY","features":[25]},{"name":"SECBUFFER_PRESHARED_KEY_IDENTITY","features":[25]},{"name":"SECBUFFER_READONLY","features":[25]},{"name":"SECBUFFER_READONLY_WITH_CHECKSUM","features":[25]},{"name":"SECBUFFER_RESERVED","features":[25]},{"name":"SECBUFFER_SEND_GENERIC_TLS_EXTENSION","features":[25]},{"name":"SECBUFFER_SRTP_MASTER_KEY_IDENTIFIER","features":[25]},{"name":"SECBUFFER_SRTP_PROTECTION_PROFILES","features":[25]},{"name":"SECBUFFER_STREAM","features":[25]},{"name":"SECBUFFER_STREAM_HEADER","features":[25]},{"name":"SECBUFFER_STREAM_TRAILER","features":[25]},{"name":"SECBUFFER_SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[25]},{"name":"SECBUFFER_TARGET","features":[25]},{"name":"SECBUFFER_TARGET_HOST","features":[25]},{"name":"SECBUFFER_TOKEN","features":[25]},{"name":"SECBUFFER_TOKEN_BINDING","features":[25]},{"name":"SECBUFFER_TRAFFIC_SECRETS","features":[25]},{"name":"SECBUFFER_UNMAPPED","features":[25]},{"name":"SECBUFFER_VERSION","features":[25]},{"name":"SECPKGCONTEXT_CIPHERINFO_V1","features":[25]},{"name":"SECPKGCONTEXT_CONNECTION_INFO_EX_V1","features":[25]},{"name":"SECPKG_ANSI_ATTRIBUTE","features":[25]},{"name":"SECPKG_APP_MODE_INFO","features":[3,25]},{"name":"SECPKG_ATTR","features":[25]},{"name":"SECPKG_ATTR_ACCESS_TOKEN","features":[25]},{"name":"SECPKG_ATTR_APPLICATION_PROTOCOL","features":[25]},{"name":"SECPKG_ATTR_APP_DATA","features":[25]},{"name":"SECPKG_ATTR_AUTHENTICATION_ID","features":[25]},{"name":"SECPKG_ATTR_AUTHORITY","features":[25]},{"name":"SECPKG_ATTR_CC_POLICY_RESULT","features":[25]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT","features":[25]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT_INPROC","features":[25]},{"name":"SECPKG_ATTR_CERT_TRUST_STATUS","features":[25]},{"name":"SECPKG_ATTR_CIPHER_INFO","features":[25]},{"name":"SECPKG_ATTR_CIPHER_STRENGTHS","features":[25]},{"name":"SECPKG_ATTR_CLIENT_CERT_POLICY","features":[25]},{"name":"SECPKG_ATTR_CLIENT_SPECIFIED_TARGET","features":[25]},{"name":"SECPKG_ATTR_CONNECTION_INFO","features":[25]},{"name":"SECPKG_ATTR_CONNECTION_INFO_EX","features":[25]},{"name":"SECPKG_ATTR_CONTEXT_DELETED","features":[25]},{"name":"SECPKG_ATTR_CREDENTIAL_NAME","features":[25]},{"name":"SECPKG_ATTR_CREDS","features":[25]},{"name":"SECPKG_ATTR_CREDS_2","features":[25]},{"name":"SECPKG_ATTR_C_ACCESS_TOKEN","features":[25]},{"name":"SECPKG_ATTR_C_FULL_ACCESS_TOKEN","features":[25]},{"name":"SECPKG_ATTR_DCE_INFO","features":[25]},{"name":"SECPKG_ATTR_DTLS_MTU","features":[25]},{"name":"SECPKG_ATTR_EAP_KEY_BLOCK","features":[25]},{"name":"SECPKG_ATTR_EAP_PRF_INFO","features":[25]},{"name":"SECPKG_ATTR_EARLY_START","features":[25]},{"name":"SECPKG_ATTR_ENDPOINT_BINDINGS","features":[25]},{"name":"SECPKG_ATTR_FLAGS","features":[25]},{"name":"SECPKG_ATTR_ISSUER_LIST","features":[25]},{"name":"SECPKG_ATTR_ISSUER_LIST_EX","features":[25]},{"name":"SECPKG_ATTR_IS_LOOPBACK","features":[25]},{"name":"SECPKG_ATTR_KEYING_MATERIAL","features":[25]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INFO","features":[25]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INPROC","features":[25]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_TOKEN_BINDING","features":[25]},{"name":"SECPKG_ATTR_KEY_INFO","features":[25]},{"name":"SECPKG_ATTR_LAST_CLIENT_TOKEN_STATUS","features":[25]},{"name":"SECPKG_ATTR_LCT_STATUS","features":[25]},{"name":"SECPKG_ATTR_LIFESPAN","features":[25]},{"name":"SECPKG_ATTR_LOCAL_CERT_CONTEXT","features":[25]},{"name":"SECPKG_ATTR_LOCAL_CERT_INFO","features":[25]},{"name":"SECPKG_ATTR_LOCAL_CRED","features":[25]},{"name":"SECPKG_ATTR_LOGOFF_TIME","features":[25]},{"name":"SECPKG_ATTR_MAPPED_CRED_ATTR","features":[25]},{"name":"SECPKG_ATTR_NAMES","features":[25]},{"name":"SECPKG_ATTR_NATIVE_NAMES","features":[25]},{"name":"SECPKG_ATTR_NEGOTIATED_TLS_EXTENSIONS","features":[25]},{"name":"SECPKG_ATTR_NEGOTIATION_INFO","features":[25]},{"name":"SECPKG_ATTR_NEGOTIATION_PACKAGE","features":[25]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_KERBEROS","features":[25]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_NTLM","features":[25]},{"name":"SECPKG_ATTR_NEGO_KEYS","features":[25]},{"name":"SECPKG_ATTR_NEGO_PKG_INFO","features":[25]},{"name":"SECPKG_ATTR_NEGO_STATUS","features":[25]},{"name":"SECPKG_ATTR_PACKAGE_INFO","features":[25]},{"name":"SECPKG_ATTR_PASSWORD_EXPIRY","features":[25]},{"name":"SECPKG_ATTR_PROMPTING_NEEDED","features":[25]},{"name":"SECPKG_ATTR_PROTO_INFO","features":[25]},{"name":"SECPKG_ATTR_REMOTE_CERTIFICATES","features":[25]},{"name":"SECPKG_ATTR_REMOTE_CERT_CHAIN","features":[25]},{"name":"SECPKG_ATTR_REMOTE_CERT_CONTEXT","features":[25]},{"name":"SECPKG_ATTR_REMOTE_CRED","features":[25]},{"name":"SECPKG_ATTR_ROOT_STORE","features":[25]},{"name":"SECPKG_ATTR_SASL_CONTEXT","features":[25]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT","features":[25]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT_INPROC","features":[25]},{"name":"SECPKG_ATTR_SERVER_AUTH_FLAGS","features":[25]},{"name":"SECPKG_ATTR_SESSION_INFO","features":[25]},{"name":"SECPKG_ATTR_SESSION_KEY","features":[25]},{"name":"SECPKG_ATTR_SESSION_TICKET_KEYS","features":[25]},{"name":"SECPKG_ATTR_SIZES","features":[25]},{"name":"SECPKG_ATTR_SRTP_PARAMETERS","features":[25]},{"name":"SECPKG_ATTR_STREAM_SIZES","features":[25]},{"name":"SECPKG_ATTR_SUBJECT_SECURITY_ATTRIBUTES","features":[25]},{"name":"SECPKG_ATTR_SUPPORTED_ALGS","features":[25]},{"name":"SECPKG_ATTR_SUPPORTED_PROTOCOLS","features":[25]},{"name":"SECPKG_ATTR_SUPPORTED_SIGNATURES","features":[25]},{"name":"SECPKG_ATTR_TARGET","features":[25]},{"name":"SECPKG_ATTR_TARGET_INFORMATION","features":[25]},{"name":"SECPKG_ATTR_THUNK_ALL","features":[25]},{"name":"SECPKG_ATTR_TOKEN_BINDING","features":[25]},{"name":"SECPKG_ATTR_UI_INFO","features":[25]},{"name":"SECPKG_ATTR_UNIQUE_BINDINGS","features":[25]},{"name":"SECPKG_ATTR_USER_FLAGS","features":[25]},{"name":"SECPKG_ATTR_USE_NCRYPT","features":[25]},{"name":"SECPKG_ATTR_USE_VALIDATED","features":[25]},{"name":"SECPKG_BYTE_VECTOR","features":[25]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER","features":[25]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_AUTHCAPABLE","features":[25]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_UPNCAPABLE","features":[25]},{"name":"SECPKG_CALLFLAGS_FORCE_SUPPLIED","features":[25]},{"name":"SECPKG_CALL_ANSI","features":[25]},{"name":"SECPKG_CALL_ASYNC_UPDATE","features":[25]},{"name":"SECPKG_CALL_BUFFER_MARSHAL","features":[25]},{"name":"SECPKG_CALL_CLEANUP","features":[25]},{"name":"SECPKG_CALL_CLOUDAP_CONNECT","features":[25]},{"name":"SECPKG_CALL_INFO","features":[25]},{"name":"SECPKG_CALL_IN_PROC","features":[25]},{"name":"SECPKG_CALL_IS_TCB","features":[25]},{"name":"SECPKG_CALL_KERNEL_MODE","features":[25]},{"name":"SECPKG_CALL_NEGO","features":[25]},{"name":"SECPKG_CALL_NEGO_EXTENDER","features":[25]},{"name":"SECPKG_CALL_NETWORK_ONLY","features":[25]},{"name":"SECPKG_CALL_PACKAGE_MESSAGE_TYPE","features":[25]},{"name":"SECPKG_CALL_PACKAGE_PIN_DC_REQUEST","features":[25]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST","features":[3,25]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_CLEANUP_CREDENTIALS","features":[25]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_OPTIMISTIC_LOGON","features":[25]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_TO_SSO_SESSION","features":[25]},{"name":"SECPKG_CALL_PACKAGE_UNPIN_ALL_DCS_REQUEST","features":[25]},{"name":"SECPKG_CALL_PROCESS_TERM","features":[25]},{"name":"SECPKG_CALL_RECURSIVE","features":[25]},{"name":"SECPKG_CALL_SYSTEM_PROC","features":[25]},{"name":"SECPKG_CALL_THREAD_TERM","features":[25]},{"name":"SECPKG_CALL_UNLOCK","features":[25]},{"name":"SECPKG_CALL_URGENT","features":[25]},{"name":"SECPKG_CALL_WINLOGON","features":[25]},{"name":"SECPKG_CALL_WOWA32","features":[25]},{"name":"SECPKG_CALL_WOWCLIENT","features":[25]},{"name":"SECPKG_CALL_WOWX86","features":[25]},{"name":"SECPKG_CLIENT_INFO","features":[3,25]},{"name":"SECPKG_CLIENT_INFO_EX","features":[3,25]},{"name":"SECPKG_CLIENT_PROCESS_TERMINATED","features":[25]},{"name":"SECPKG_CLIENT_THREAD_TERMINATED","features":[25]},{"name":"SECPKG_CONTEXT_EXPORT_DELETE_OLD","features":[25]},{"name":"SECPKG_CONTEXT_EXPORT_RESET_NEW","features":[25]},{"name":"SECPKG_CONTEXT_EXPORT_TO_KERNEL","features":[25]},{"name":"SECPKG_CONTEXT_THUNKS","features":[25]},{"name":"SECPKG_CRED","features":[25]},{"name":"SECPKG_CREDENTIAL","features":[3,25]},{"name":"SECPKG_CREDENTIAL_ATTRIBUTE","features":[25]},{"name":"SECPKG_CREDENTIAL_FLAGS_CALLER_HAS_TCB","features":[25]},{"name":"SECPKG_CREDENTIAL_FLAGS_CREDMAN_CRED","features":[25]},{"name":"SECPKG_CREDENTIAL_VERSION","features":[25]},{"name":"SECPKG_CRED_ATTR_CERT","features":[25]},{"name":"SECPKG_CRED_ATTR_KDC_PROXY_SETTINGS","features":[25]},{"name":"SECPKG_CRED_ATTR_NAMES","features":[25]},{"name":"SECPKG_CRED_ATTR_PAC_BYPASS","features":[25]},{"name":"SECPKG_CRED_ATTR_SSI_PROVIDER","features":[25]},{"name":"SECPKG_CRED_AUTOLOGON_RESTRICTED","features":[25]},{"name":"SECPKG_CRED_BOTH","features":[25]},{"name":"SECPKG_CRED_CLASS","features":[25]},{"name":"SECPKG_CRED_DEFAULT","features":[25]},{"name":"SECPKG_CRED_INBOUND","features":[25]},{"name":"SECPKG_CRED_OUTBOUND","features":[25]},{"name":"SECPKG_CRED_PROCESS_POLICY_ONLY","features":[25]},{"name":"SECPKG_CRED_RESERVED","features":[25]},{"name":"SECPKG_DLL_FUNCTIONS","features":[3,25]},{"name":"SECPKG_EVENT_NOTIFY","features":[25]},{"name":"SECPKG_EVENT_PACKAGE_CHANGE","features":[25]},{"name":"SECPKG_EVENT_ROLE_CHANGE","features":[25]},{"name":"SECPKG_EXTENDED_INFORMATION","features":[25]},{"name":"SECPKG_EXTENDED_INFORMATION_CLASS","features":[25]},{"name":"SECPKG_EXTRA_OIDS","features":[25]},{"name":"SECPKG_FLAG_ACCEPT_WIN32_NAME","features":[25]},{"name":"SECPKG_FLAG_APPCONTAINER_CHECKS","features":[25]},{"name":"SECPKG_FLAG_APPCONTAINER_PASSTHROUGH","features":[25]},{"name":"SECPKG_FLAG_APPLY_LOOPBACK","features":[25]},{"name":"SECPKG_FLAG_ASCII_BUFFERS","features":[25]},{"name":"SECPKG_FLAG_CLIENT_ONLY","features":[25]},{"name":"SECPKG_FLAG_CONNECTION","features":[25]},{"name":"SECPKG_FLAG_CREDENTIAL_ISOLATION_ENABLED","features":[25]},{"name":"SECPKG_FLAG_DATAGRAM","features":[25]},{"name":"SECPKG_FLAG_DELEGATION","features":[25]},{"name":"SECPKG_FLAG_EXTENDED_ERROR","features":[25]},{"name":"SECPKG_FLAG_FRAGMENT","features":[25]},{"name":"SECPKG_FLAG_GSS_COMPATIBLE","features":[25]},{"name":"SECPKG_FLAG_IMPERSONATION","features":[25]},{"name":"SECPKG_FLAG_INTEGRITY","features":[25]},{"name":"SECPKG_FLAG_LOGON","features":[25]},{"name":"SECPKG_FLAG_MULTI_REQUIRED","features":[25]},{"name":"SECPKG_FLAG_MUTUAL_AUTH","features":[25]},{"name":"SECPKG_FLAG_NEGOTIABLE","features":[25]},{"name":"SECPKG_FLAG_NEGOTIABLE2","features":[25]},{"name":"SECPKG_FLAG_NEGO_EXTENDER","features":[25]},{"name":"SECPKG_FLAG_PRIVACY","features":[25]},{"name":"SECPKG_FLAG_READONLY_WITH_CHECKSUM","features":[25]},{"name":"SECPKG_FLAG_RESTRICTED_TOKENS","features":[25]},{"name":"SECPKG_FLAG_STREAM","features":[25]},{"name":"SECPKG_FLAG_TOKEN_ONLY","features":[25]},{"name":"SECPKG_FUNCTION_TABLE","features":[3,25,121,39]},{"name":"SECPKG_GSS_INFO","features":[25]},{"name":"SECPKG_ID_NONE","features":[25]},{"name":"SECPKG_INTERFACE_VERSION","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_10","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_11","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_2","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_3","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_4","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_5","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_6","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_7","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_8","features":[25]},{"name":"SECPKG_INTERFACE_VERSION_9","features":[25]},{"name":"SECPKG_KERNEL_FUNCTIONS","features":[3,25,9]},{"name":"SECPKG_KERNEL_FUNCTION_TABLE","features":[3,25,9]},{"name":"SECPKG_LSAMODEINIT_NAME","features":[25]},{"name":"SECPKG_MAX_OID_LENGTH","features":[25]},{"name":"SECPKG_MSVAV_FLAGS_VALID","features":[25]},{"name":"SECPKG_MSVAV_TIMESTAMP_VALID","features":[25]},{"name":"SECPKG_MUTUAL_AUTH_LEVEL","features":[25]},{"name":"SECPKG_NAME_TYPE","features":[25]},{"name":"SECPKG_NEGO2_INFO","features":[25]},{"name":"SECPKG_NEGOTIATION_COMPLETE","features":[25]},{"name":"SECPKG_NEGOTIATION_DIRECT","features":[25]},{"name":"SECPKG_NEGOTIATION_IN_PROGRESS","features":[25]},{"name":"SECPKG_NEGOTIATION_OPTIMISTIC","features":[25]},{"name":"SECPKG_NEGOTIATION_TRY_MULTICRED","features":[25]},{"name":"SECPKG_NTLM_TARGETINFO","features":[3,25]},{"name":"SECPKG_OPTIONS_PERMANENT","features":[25]},{"name":"SECPKG_OPTIONS_TYPE_LSA","features":[25]},{"name":"SECPKG_OPTIONS_TYPE_SSPI","features":[25]},{"name":"SECPKG_OPTIONS_TYPE_UNKNOWN","features":[25]},{"name":"SECPKG_PACKAGE_CHANGE_LOAD","features":[25]},{"name":"SECPKG_PACKAGE_CHANGE_SELECT","features":[25]},{"name":"SECPKG_PACKAGE_CHANGE_TYPE","features":[25]},{"name":"SECPKG_PACKAGE_CHANGE_UNLOAD","features":[25]},{"name":"SECPKG_PARAMETERS","features":[25]},{"name":"SECPKG_POST_LOGON_USER_INFO","features":[3,25]},{"name":"SECPKG_PRIMARY_CRED","features":[3,25]},{"name":"SECPKG_PRIMARY_CRED_EX","features":[3,25]},{"name":"SECPKG_PRIMARY_CRED_EX_FLAGS_EX_DELEGATION_TOKEN","features":[25]},{"name":"SECPKG_REDIRECTED_LOGON_BUFFER","features":[3,25]},{"name":"SECPKG_REDIRECTED_LOGON_GUID_INITIALIZER","features":[25]},{"name":"SECPKG_SERIALIZED_OID","features":[25]},{"name":"SECPKG_SESSIONINFO_TYPE","features":[25]},{"name":"SECPKG_SHORT_VECTOR","features":[25]},{"name":"SECPKG_STATE_CRED_ISOLATION_ENABLED","features":[25]},{"name":"SECPKG_STATE_DOMAIN_CONTROLLER","features":[25]},{"name":"SECPKG_STATE_ENCRYPTION_PERMITTED","features":[25]},{"name":"SECPKG_STATE_RESERVED_1","features":[25]},{"name":"SECPKG_STATE_STANDALONE","features":[25]},{"name":"SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED","features":[25]},{"name":"SECPKG_STATE_WORKSTATION","features":[25]},{"name":"SECPKG_SUPPLEMENTAL_CRED","features":[25]},{"name":"SECPKG_SUPPLEMENTAL_CRED_ARRAY","features":[25]},{"name":"SECPKG_SUPPLIED_CREDENTIAL","features":[25]},{"name":"SECPKG_SURROGATE_LOGON","features":[3,25]},{"name":"SECPKG_SURROGATE_LOGON_ENTRY","features":[25]},{"name":"SECPKG_SURROGATE_LOGON_VERSION_1","features":[25]},{"name":"SECPKG_TARGETINFO","features":[25]},{"name":"SECPKG_UNICODE_ATTRIBUTE","features":[25]},{"name":"SECPKG_USERMODEINIT_NAME","features":[25]},{"name":"SECPKG_USER_FUNCTION_TABLE","features":[3,25]},{"name":"SECPKG_WOW_CLIENT_DLL","features":[25]},{"name":"SECQOP_WRAP_NO_ENCRYPT","features":[25]},{"name":"SECQOP_WRAP_OOB_DATA","features":[25]},{"name":"SECRET_QUERY_VALUE","features":[25]},{"name":"SECRET_SET_VALUE","features":[25]},{"name":"SECURITY_ENTRYPOINT","features":[25]},{"name":"SECURITY_ENTRYPOINT16","features":[25]},{"name":"SECURITY_ENTRYPOINT_ANSI","features":[25]},{"name":"SECURITY_ENTRYPOINT_ANSIA","features":[25]},{"name":"SECURITY_ENTRYPOINT_ANSIW","features":[25]},{"name":"SECURITY_LOGON_SESSION_DATA","features":[3,25]},{"name":"SECURITY_LOGON_TYPE","features":[25]},{"name":"SECURITY_NATIVE_DREP","features":[25]},{"name":"SECURITY_NETWORK_DREP","features":[25]},{"name":"SECURITY_PACKAGE_OPTIONS","features":[25]},{"name":"SECURITY_PACKAGE_OPTIONS_TYPE","features":[25]},{"name":"SECURITY_STRING","features":[25]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION","features":[25]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_2","features":[25]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_3","features":[25]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_4","features":[25]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_5","features":[25]},{"name":"SECURITY_USER_DATA","features":[25]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[25]},{"name":"SEC_APPLICATION_PROTOCOL_LIST","features":[25]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_EXT","features":[25]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_STATUS","features":[25]},{"name":"SEC_CERTIFICATE_REQUEST_CONTEXT","features":[25]},{"name":"SEC_CHANNEL_BINDINGS","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_AUDIT_BINDINGS","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_EX","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_ABSENT","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_CLIENT_SUPPORT","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISMATCH","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISSING","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MATCHED","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MISSING","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_PROXY","features":[25]},{"name":"SEC_CHANNEL_BINDINGS_VALID_FLAGS","features":[25]},{"name":"SEC_DTLS_MTU","features":[25]},{"name":"SEC_FLAGS","features":[25]},{"name":"SEC_GET_KEY_FN","features":[25]},{"name":"SEC_NEGOTIATION_INFO","features":[25]},{"name":"SEC_PRESHAREDKEY","features":[25]},{"name":"SEC_PRESHAREDKEY_IDENTITY","features":[25]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[25]},{"name":"SEC_SRTP_PROTECTION_PROFILES","features":[25]},{"name":"SEC_TOKEN_BINDING","features":[25]},{"name":"SEC_TRAFFIC_SECRETS","features":[25]},{"name":"SEC_TRAFFIC_SECRET_TYPE","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY32","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_FOR_SYSTEM","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_LOGON","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_PROCESS","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX2","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX32","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXA","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXW","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_ID_PROVIDER","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_DOMAIN","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_USER","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_PROCESS_ENCRYPTED","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_RESERVED","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_NO_CHECKBOX","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_BY_CALLER","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_CHECKED","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_USE_MASK","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_ENCRYPTED","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_PROTECTED","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_USER_PROTECTED","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_INFO","features":[25,21]},{"name":"SEC_WINNT_AUTH_IDENTITY_MARSHALLED","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_ONLY","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION","features":[25]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION_2","features":[25]},{"name":"SEND_GENERIC_TLS_EXTENSION","features":[25]},{"name":"SESSION_TICKET_INFO_V0","features":[25]},{"name":"SESSION_TICKET_INFO_VERSION","features":[25]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_A","features":[25,121]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_W","features":[25,121]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_A","features":[25,121]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_W","features":[25,121]},{"name":"SE_ADT_ACCESS_REASON","features":[25]},{"name":"SE_ADT_CLAIMS","features":[25]},{"name":"SE_ADT_OBJECT_ONLY","features":[25]},{"name":"SE_ADT_OBJECT_TYPE","features":[25]},{"name":"SE_ADT_PARAMETERS_SELF_RELATIVE","features":[25]},{"name":"SE_ADT_PARAMETERS_SEND_TO_LSA","features":[25]},{"name":"SE_ADT_PARAMETER_ARRAY","features":[25]},{"name":"SE_ADT_PARAMETER_ARRAY_ENTRY","features":[25]},{"name":"SE_ADT_PARAMETER_ARRAY_EX","features":[25]},{"name":"SE_ADT_PARAMETER_EXTENSIBLE_AUDIT","features":[25]},{"name":"SE_ADT_PARAMETER_GENERIC_AUDIT","features":[25]},{"name":"SE_ADT_PARAMETER_TYPE","features":[25]},{"name":"SE_ADT_PARAMETER_WRITE_SYNCHRONOUS","features":[25]},{"name":"SE_ADT_POLICY_AUDIT_EVENT_TYPE_EX_BEGIN","features":[25]},{"name":"SE_BATCH_LOGON_NAME","features":[25]},{"name":"SE_DENY_BATCH_LOGON_NAME","features":[25]},{"name":"SE_DENY_INTERACTIVE_LOGON_NAME","features":[25]},{"name":"SE_DENY_NETWORK_LOGON_NAME","features":[25]},{"name":"SE_DENY_REMOTE_INTERACTIVE_LOGON_NAME","features":[25]},{"name":"SE_DENY_SERVICE_LOGON_NAME","features":[25]},{"name":"SE_INTERACTIVE_LOGON_NAME","features":[25]},{"name":"SE_MAX_AUDIT_PARAMETERS","features":[25]},{"name":"SE_MAX_GENERIC_AUDIT_PARAMETERS","features":[25]},{"name":"SE_NETWORK_LOGON_NAME","features":[25]},{"name":"SE_REMOTE_INTERACTIVE_LOGON_NAME","features":[25]},{"name":"SE_SERVICE_LOGON_NAME","features":[25]},{"name":"SLAcquireGenuineTicket","features":[25]},{"name":"SLActivateProduct","features":[25]},{"name":"SLClose","features":[25]},{"name":"SLConsumeRight","features":[25]},{"name":"SLDATATYPE","features":[25]},{"name":"SLDepositOfflineConfirmationId","features":[25]},{"name":"SLDepositOfflineConfirmationIdEx","features":[25]},{"name":"SLFireEvent","features":[25]},{"name":"SLGenerateOfflineInstallationId","features":[25]},{"name":"SLGenerateOfflineInstallationIdEx","features":[25]},{"name":"SLGetApplicationInformation","features":[25]},{"name":"SLGetGenuineInformation","features":[25]},{"name":"SLGetInstalledProductKeyIds","features":[25]},{"name":"SLGetLicense","features":[25]},{"name":"SLGetLicenseFileId","features":[25]},{"name":"SLGetLicenseInformation","features":[25]},{"name":"SLGetLicensingStatusInformation","features":[25]},{"name":"SLGetPKeyId","features":[25]},{"name":"SLGetPKeyInformation","features":[25]},{"name":"SLGetPolicyInformation","features":[25]},{"name":"SLGetPolicyInformationDWORD","features":[25]},{"name":"SLGetProductSkuInformation","features":[25]},{"name":"SLGetReferralInformation","features":[25]},{"name":"SLGetSLIDList","features":[25]},{"name":"SLGetServerStatus","features":[25]},{"name":"SLGetServiceInformation","features":[25]},{"name":"SLGetWindowsInformation","features":[25]},{"name":"SLGetWindowsInformationDWORD","features":[25]},{"name":"SLIDTYPE","features":[25]},{"name":"SLInstallLicense","features":[25]},{"name":"SLInstallProofOfPurchase","features":[25]},{"name":"SLIsGenuineLocal","features":[25]},{"name":"SLLICENSINGSTATUS","features":[25]},{"name":"SLOpen","features":[25]},{"name":"SLQueryLicenseValueFromApp","features":[25]},{"name":"SLREFERRALTYPE","features":[25]},{"name":"SLRegisterEvent","features":[3,25]},{"name":"SLSetCurrentProductKey","features":[25]},{"name":"SLSetGenuineInformation","features":[25]},{"name":"SLUninstallLicense","features":[25]},{"name":"SLUninstallProofOfPurchase","features":[25]},{"name":"SLUnregisterEvent","features":[3,25]},{"name":"SL_ACTIVATION_INFO_HEADER","features":[25]},{"name":"SL_ACTIVATION_TYPE","features":[25]},{"name":"SL_ACTIVATION_TYPE_ACTIVE_DIRECTORY","features":[25]},{"name":"SL_ACTIVATION_TYPE_DEFAULT","features":[25]},{"name":"SL_AD_ACTIVATION_INFO","features":[25]},{"name":"SL_CLIENTAPI_ZONE","features":[25]},{"name":"SL_DATA_BINARY","features":[25]},{"name":"SL_DATA_DWORD","features":[25]},{"name":"SL_DATA_MULTI_SZ","features":[25]},{"name":"SL_DATA_NONE","features":[25]},{"name":"SL_DATA_SUM","features":[25]},{"name":"SL_DATA_SZ","features":[25]},{"name":"SL_DEFAULT_MIGRATION_ENCRYPTOR_URI","features":[25]},{"name":"SL_EVENT_LICENSING_STATE_CHANGED","features":[25]},{"name":"SL_EVENT_POLICY_CHANGED","features":[25]},{"name":"SL_EVENT_USER_NOTIFICATION","features":[25]},{"name":"SL_E_ACTIVATION_IN_PROGRESS","features":[25]},{"name":"SL_E_APPLICATION_POLICIES_MISSING","features":[25]},{"name":"SL_E_APPLICATION_POLICIES_NOT_LOADED","features":[25]},{"name":"SL_E_AUTHN_CANT_VERIFY","features":[25]},{"name":"SL_E_AUTHN_CHALLENGE_NOT_SET","features":[25]},{"name":"SL_E_AUTHN_MISMATCHED_KEY","features":[25]},{"name":"SL_E_AUTHN_WRONG_VERSION","features":[25]},{"name":"SL_E_BASE_SKU_NOT_AVAILABLE","features":[25]},{"name":"SL_E_BIOS_KEY","features":[25]},{"name":"SL_E_BLOCKED_PRODUCT_KEY","features":[25]},{"name":"SL_E_CHPA_ACTCONFIG_ID_NOT_FOUND","features":[25]},{"name":"SL_E_CHPA_BINDING_MAPPING_NOT_FOUND","features":[25]},{"name":"SL_E_CHPA_BINDING_NOT_FOUND","features":[25]},{"name":"SL_E_CHPA_BUSINESS_RULE_INPUT_NOT_FOUND","features":[25]},{"name":"SL_E_CHPA_DATABASE_ERROR","features":[25]},{"name":"SL_E_CHPA_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[25]},{"name":"SL_E_CHPA_DIGITALMARKER_INVALID_BINDING","features":[25]},{"name":"SL_E_CHPA_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[25]},{"name":"SL_E_CHPA_DMAK_LIMIT_EXCEEDED","features":[25]},{"name":"SL_E_CHPA_DYNAMICALLY_BLOCKED_PRODUCT_KEY","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCTKEY_BINDING","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCT_KEY_PROPERTY","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCTKEY_BINDING","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_PROPERTY","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_RECORD","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_PROCESS_PRODUCT_KEY_BINDINGS_XML","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCTKEY_BINDING","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_PROPERTY","features":[25]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_RECORD","features":[25]},{"name":"SL_E_CHPA_GENERAL_ERROR","features":[25]},{"name":"SL_E_CHPA_INVALID_ACTCONFIG_ID","features":[25]},{"name":"SL_E_CHPA_INVALID_ARGUMENT","features":[25]},{"name":"SL_E_CHPA_INVALID_BINDING","features":[25]},{"name":"SL_E_CHPA_INVALID_BINDING_URI","features":[25]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA","features":[25]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA_ID","features":[25]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY","features":[25]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_CHAR","features":[25]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_FORMAT","features":[25]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_LENGTH","features":[25]},{"name":"SL_E_CHPA_MAXIMUM_UNLOCK_EXCEEDED","features":[25]},{"name":"SL_E_CHPA_MSCH_RESPONSE_NOT_AVAILABLE_VGA","features":[25]},{"name":"SL_E_CHPA_NETWORK_ERROR","features":[25]},{"name":"SL_E_CHPA_NO_RULES_TO_ACTIVATE","features":[25]},{"name":"SL_E_CHPA_NULL_VALUE_FOR_PROPERTY_NAME_OR_ID","features":[25]},{"name":"SL_E_CHPA_OEM_SLP_COA0","features":[25]},{"name":"SL_E_CHPA_OVERRIDE_REQUEST_NOT_FOUND","features":[25]},{"name":"SL_E_CHPA_PRODUCT_KEY_BEING_USED","features":[25]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED","features":[25]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[25]},{"name":"SL_E_CHPA_PRODUCT_KEY_OUT_OF_RANGE","features":[25]},{"name":"SL_E_CHPA_REISSUANCE_LIMIT_NOT_FOUND","features":[25]},{"name":"SL_E_CHPA_RESPONSE_NOT_AVAILABLE","features":[25]},{"name":"SL_E_CHPA_SYSTEM_ERROR","features":[25]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[25]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[25]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[25]},{"name":"SL_E_CHPA_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[25]},{"name":"SL_E_CHPA_UNKNOWN_PRODUCT_KEY_TYPE","features":[25]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_ID","features":[25]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_NAME","features":[25]},{"name":"SL_E_CHPA_UNSUPPORTED_PRODUCT_KEY","features":[25]},{"name":"SL_E_CIDIID_INVALID_CHECK_DIGITS","features":[25]},{"name":"SL_E_CIDIID_INVALID_DATA","features":[25]},{"name":"SL_E_CIDIID_INVALID_DATA_LENGTH","features":[25]},{"name":"SL_E_CIDIID_INVALID_VERSION","features":[25]},{"name":"SL_E_CIDIID_MISMATCHED","features":[25]},{"name":"SL_E_CIDIID_MISMATCHED_PKEY","features":[25]},{"name":"SL_E_CIDIID_NOT_BOUND","features":[25]},{"name":"SL_E_CIDIID_NOT_DEPOSITED","features":[25]},{"name":"SL_E_CIDIID_VERSION_NOT_SUPPORTED","features":[25]},{"name":"SL_E_DATATYPE_MISMATCHED","features":[25]},{"name":"SL_E_DECRYPTION_LICENSES_NOT_AVAILABLE","features":[25]},{"name":"SL_E_DEPENDENT_PROPERTY_NOT_SET","features":[25]},{"name":"SL_E_DOWNLEVEL_SETUP_KEY","features":[25]},{"name":"SL_E_DUPLICATE_POLICY","features":[25]},{"name":"SL_E_EDITION_MISMATCHED","features":[25]},{"name":"SL_E_ENGINE_DETECTED_EXPLOIT","features":[25]},{"name":"SL_E_EUL_CONSUMPTION_FAILED","features":[25]},{"name":"SL_E_EUL_NOT_AVAILABLE","features":[25]},{"name":"SL_E_EVALUATION_FAILED","features":[25]},{"name":"SL_E_EVENT_ALREADY_REGISTERED","features":[25]},{"name":"SL_E_EVENT_NOT_REGISTERED","features":[25]},{"name":"SL_E_EXTERNAL_SIGNATURE_NOT_FOUND","features":[25]},{"name":"SL_E_GRACE_TIME_EXPIRED","features":[25]},{"name":"SL_E_HEALTH_CHECK_FAILED_MUI_FILES","features":[25]},{"name":"SL_E_HEALTH_CHECK_FAILED_NEUTRAL_FILES","features":[25]},{"name":"SL_E_HWID_CHANGED","features":[25]},{"name":"SL_E_HWID_ERROR","features":[25]},{"name":"SL_E_IA_ID_MISMATCH","features":[25]},{"name":"SL_E_IA_INVALID_VIRTUALIZATION_PLATFORM","features":[25]},{"name":"SL_E_IA_MACHINE_NOT_BOUND","features":[25]},{"name":"SL_E_IA_PARENT_PARTITION_NOT_ACTIVATED","features":[25]},{"name":"SL_E_IA_THROTTLE_LIMIT_EXCEEDED","features":[25]},{"name":"SL_E_INTERNAL_ERROR","features":[25]},{"name":"SL_E_INVALID_AD_DATA","features":[25]},{"name":"SL_E_INVALID_BINDING_BLOB","features":[25]},{"name":"SL_E_INVALID_CLIENT_TOKEN","features":[25]},{"name":"SL_E_INVALID_CONTEXT","features":[25]},{"name":"SL_E_INVALID_CONTEXT_DATA","features":[25]},{"name":"SL_E_INVALID_EVENT_ID","features":[25]},{"name":"SL_E_INVALID_FILE_HASH","features":[25]},{"name":"SL_E_INVALID_GUID","features":[25]},{"name":"SL_E_INVALID_HASH","features":[25]},{"name":"SL_E_INVALID_LICENSE","features":[25]},{"name":"SL_E_INVALID_LICENSE_STATE","features":[25]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE","features":[25]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE_EXPIRED","features":[25]},{"name":"SL_E_INVALID_OEM_OR_VOLUME_BINDING_DATA","features":[25]},{"name":"SL_E_INVALID_OFFLINE_BLOB","features":[25]},{"name":"SL_E_INVALID_OSVERSION_TEMPLATEID","features":[25]},{"name":"SL_E_INVALID_OS_FOR_PRODUCT_KEY","features":[25]},{"name":"SL_E_INVALID_PACKAGE","features":[25]},{"name":"SL_E_INVALID_PACKAGE_VERSION","features":[25]},{"name":"SL_E_INVALID_PKEY","features":[25]},{"name":"SL_E_INVALID_PRODUCT_KEY","features":[25]},{"name":"SL_E_INVALID_PRODUCT_KEY_TYPE","features":[25]},{"name":"SL_E_INVALID_RSDP_COUNT","features":[25]},{"name":"SL_E_INVALID_RULESET_RULE","features":[25]},{"name":"SL_E_INVALID_RUNNING_MODE","features":[25]},{"name":"SL_E_INVALID_TEMPLATE_ID","features":[25]},{"name":"SL_E_INVALID_TOKEN_DATA","features":[25]},{"name":"SL_E_INVALID_USE_OF_ADD_ON_PKEY","features":[25]},{"name":"SL_E_INVALID_XML_BLOB","features":[25]},{"name":"SL_E_IP_LOCATION_FALIED","features":[25]},{"name":"SL_E_ISSUANCE_LICENSE_NOT_INSTALLED","features":[25]},{"name":"SL_E_LICENSE_AUTHORIZATION_FAILED","features":[25]},{"name":"SL_E_LICENSE_DECRYPTION_FAILED","features":[25]},{"name":"SL_E_LICENSE_FILE_NOT_INSTALLED","features":[25]},{"name":"SL_E_LICENSE_INVALID_ADDON_INFO","features":[25]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_DUPLICATED","features":[25]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_NOT_FOUND","features":[25]},{"name":"SL_E_LICENSE_NOT_BOUND","features":[25]},{"name":"SL_E_LICENSE_SERVER_URL_NOT_FOUND","features":[25]},{"name":"SL_E_LICENSE_SIGNATURE_VERIFICATION_FAILED","features":[25]},{"name":"SL_E_LUA_ACCESSDENIED","features":[25]},{"name":"SL_E_MISMATCHED_APPID","features":[25]},{"name":"SL_E_MISMATCHED_KEY_TYPES","features":[25]},{"name":"SL_E_MISMATCHED_PID","features":[25]},{"name":"SL_E_MISMATCHED_PKEY_RANGE","features":[25]},{"name":"SL_E_MISMATCHED_PRODUCT_SKU","features":[25]},{"name":"SL_E_MISMATCHED_SECURITY_PROCESSOR","features":[25]},{"name":"SL_E_MISSING_OVERRIDE_ONLY_ATTRIBUTE","features":[25]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED","features":[25]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED_2","features":[25]},{"name":"SL_E_NON_GENUINE_STATUS_LAST","features":[25]},{"name":"SL_E_NOTIFICATION_BREACH_DETECTED","features":[25]},{"name":"SL_E_NOTIFICATION_GRACE_EXPIRED","features":[25]},{"name":"SL_E_NOTIFICATION_OTHER_REASONS","features":[25]},{"name":"SL_E_NOT_ACTIVATED","features":[25]},{"name":"SL_E_NOT_EVALUATED","features":[25]},{"name":"SL_E_NOT_GENUINE","features":[25]},{"name":"SL_E_NOT_SUPPORTED","features":[25]},{"name":"SL_E_NO_PID_CONFIG_DATA","features":[25]},{"name":"SL_E_NO_PRODUCT_KEY_FOUND","features":[25]},{"name":"SL_E_OEM_KEY_EDITION_MISMATCH","features":[25]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_NOT_FOUND","features":[25]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_REVOKED","features":[25]},{"name":"SL_E_OFFLINE_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[25]},{"name":"SL_E_OPERATION_NOT_ALLOWED","features":[25]},{"name":"SL_E_OUT_OF_TOLERANCE","features":[25]},{"name":"SL_E_PKEY_INTERNAL_ERROR","features":[25]},{"name":"SL_E_PKEY_INVALID_ALGORITHM","features":[25]},{"name":"SL_E_PKEY_INVALID_CONFIG","features":[25]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE1","features":[25]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE2","features":[25]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE3","features":[25]},{"name":"SL_E_PKEY_INVALID_UNIQUEID","features":[25]},{"name":"SL_E_PKEY_INVALID_UPGRADE","features":[25]},{"name":"SL_E_PKEY_NOT_INSTALLED","features":[25]},{"name":"SL_E_PLUGIN_INVALID_MANIFEST","features":[25]},{"name":"SL_E_PLUGIN_NOT_REGISTERED","features":[25]},{"name":"SL_E_POLICY_CACHE_INVALID","features":[25]},{"name":"SL_E_POLICY_OTHERINFO_MISMATCH","features":[25]},{"name":"SL_E_PRODUCT_KEY_INSTALLATION_NOT_ALLOWED","features":[25]},{"name":"SL_E_PRODUCT_SKU_NOT_INSTALLED","features":[25]},{"name":"SL_E_PRODUCT_UNIQUENESS_GROUP_ID_INVALID","features":[25]},{"name":"SL_E_PROXY_KEY_NOT_FOUND","features":[25]},{"name":"SL_E_PROXY_POLICY_NOT_UPDATED","features":[25]},{"name":"SL_E_PUBLISHING_LICENSE_NOT_INSTALLED","features":[25]},{"name":"SL_E_RAC_NOT_AVAILABLE","features":[25]},{"name":"SL_E_RIGHT_NOT_CONSUMED","features":[25]},{"name":"SL_E_RIGHT_NOT_GRANTED","features":[25]},{"name":"SL_E_SECURE_STORE_ID_MISMATCH","features":[25]},{"name":"SL_E_SERVICE_RUNNING","features":[25]},{"name":"SL_E_SERVICE_STOPPING","features":[25]},{"name":"SL_E_SFS_BAD_TOKEN_EXT","features":[25]},{"name":"SL_E_SFS_BAD_TOKEN_NAME","features":[25]},{"name":"SL_E_SFS_DUPLICATE_TOKEN_NAME","features":[25]},{"name":"SL_E_SFS_FILE_READ_ERROR","features":[25]},{"name":"SL_E_SFS_FILE_WRITE_ERROR","features":[25]},{"name":"SL_E_SFS_INVALID_FD_TABLE","features":[25]},{"name":"SL_E_SFS_INVALID_FILE_POSITION","features":[25]},{"name":"SL_E_SFS_INVALID_FS_HEADER","features":[25]},{"name":"SL_E_SFS_INVALID_FS_VERSION","features":[25]},{"name":"SL_E_SFS_INVALID_SYNC","features":[25]},{"name":"SL_E_SFS_INVALID_TOKEN_DATA_HASH","features":[25]},{"name":"SL_E_SFS_INVALID_TOKEN_DESCRIPTOR","features":[25]},{"name":"SL_E_SFS_NO_ACTIVE_TRANSACTION","features":[25]},{"name":"SL_E_SFS_TOKEN_SIZE_MISMATCH","features":[25]},{"name":"SL_E_SLP_BAD_FORMAT","features":[25]},{"name":"SL_E_SLP_INVALID_MARKER_VERSION","features":[25]},{"name":"SL_E_SLP_MISSING_ACPI_SLIC","features":[25]},{"name":"SL_E_SLP_MISSING_SLP_MARKER","features":[25]},{"name":"SL_E_SLP_NOT_SIGNED","features":[25]},{"name":"SL_E_SLP_OEM_CERT_MISSING","features":[25]},{"name":"SL_E_SOFTMOD_EXPLOIT_DETECTED","features":[25]},{"name":"SL_E_SPC_NOT_AVAILABLE","features":[25]},{"name":"SL_E_SRV_AUTHORIZATION_FAILED","features":[25]},{"name":"SL_E_SRV_BUSINESS_TOKEN_ENTRY_NOT_FOUND","features":[25]},{"name":"SL_E_SRV_CLIENT_CLOCK_OUT_OF_SYNC","features":[25]},{"name":"SL_E_SRV_GENERAL_ERROR","features":[25]},{"name":"SL_E_SRV_INVALID_BINDING","features":[25]},{"name":"SL_E_SRV_INVALID_LICENSE_STRUCTURE","features":[25]},{"name":"SL_E_SRV_INVALID_PAYLOAD","features":[25]},{"name":"SL_E_SRV_INVALID_PRODUCT_KEY_LICENSE","features":[25]},{"name":"SL_E_SRV_INVALID_PUBLISH_LICENSE","features":[25]},{"name":"SL_E_SRV_INVALID_RIGHTS_ACCOUNT_LICENSE","features":[25]},{"name":"SL_E_SRV_INVALID_SECURITY_PROCESSOR_LICENSE","features":[25]},{"name":"SL_E_SRV_SERVER_PONG","features":[25]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_AUTHORIZED","features":[25]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_PRS_SIGNED","features":[25]},{"name":"SL_E_STORE_UPGRADE_TOKEN_REQUIRED","features":[25]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_EDITION","features":[25]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_PID","features":[25]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_VERSION","features":[25]},{"name":"SL_E_TAMPER_DETECTED","features":[25]},{"name":"SL_E_TAMPER_RECOVERY_REQUIRES_ACTIVATION","features":[25]},{"name":"SL_E_TKA_CERT_CNG_NOT_AVAILABLE","features":[25]},{"name":"SL_E_TKA_CERT_NOT_FOUND","features":[25]},{"name":"SL_E_TKA_CHALLENGE_EXPIRED","features":[25]},{"name":"SL_E_TKA_CHALLENGE_MISMATCH","features":[25]},{"name":"SL_E_TKA_CRITERIA_MISMATCH","features":[25]},{"name":"SL_E_TKA_FAILED_GRANT_PARSING","features":[25]},{"name":"SL_E_TKA_GRANT_NOT_FOUND","features":[25]},{"name":"SL_E_TKA_INVALID_BLOB","features":[25]},{"name":"SL_E_TKA_INVALID_CERTIFICATE","features":[25]},{"name":"SL_E_TKA_INVALID_CERT_CHAIN","features":[25]},{"name":"SL_E_TKA_INVALID_SKU_ID","features":[25]},{"name":"SL_E_TKA_INVALID_SMARTCARD","features":[25]},{"name":"SL_E_TKA_INVALID_THUMBPRINT","features":[25]},{"name":"SL_E_TKA_SILENT_ACTIVATION_FAILURE","features":[25]},{"name":"SL_E_TKA_SOFT_CERT_DISALLOWED","features":[25]},{"name":"SL_E_TKA_SOFT_CERT_INVALID","features":[25]},{"name":"SL_E_TKA_TAMPERED_CERT_CHAIN","features":[25]},{"name":"SL_E_TKA_THUMBPRINT_CERT_NOT_FOUND","features":[25]},{"name":"SL_E_TKA_TPID_MISMATCH","features":[25]},{"name":"SL_E_TOKEN_STORE_INVALID_STATE","features":[25]},{"name":"SL_E_TOKSTO_ALREADY_INITIALIZED","features":[25]},{"name":"SL_E_TOKSTO_CANT_ACQUIRE_MUTEX","features":[25]},{"name":"SL_E_TOKSTO_CANT_CREATE_FILE","features":[25]},{"name":"SL_E_TOKSTO_CANT_CREATE_MUTEX","features":[25]},{"name":"SL_E_TOKSTO_CANT_PARSE_PROPERTIES","features":[25]},{"name":"SL_E_TOKSTO_CANT_READ_FILE","features":[25]},{"name":"SL_E_TOKSTO_CANT_WRITE_TO_FILE","features":[25]},{"name":"SL_E_TOKSTO_INVALID_FILE","features":[25]},{"name":"SL_E_TOKSTO_NOT_INITIALIZED","features":[25]},{"name":"SL_E_TOKSTO_NO_ID_SET","features":[25]},{"name":"SL_E_TOKSTO_NO_PROPERTIES","features":[25]},{"name":"SL_E_TOKSTO_NO_TOKEN_DATA","features":[25]},{"name":"SL_E_TOKSTO_PROPERTY_NOT_FOUND","features":[25]},{"name":"SL_E_TOKSTO_TOKEN_NOT_FOUND","features":[25]},{"name":"SL_E_USE_LICENSE_NOT_INSTALLED","features":[25]},{"name":"SL_E_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[25]},{"name":"SL_E_VALIDATION_BLOCKED_PRODUCT_KEY","features":[25]},{"name":"SL_E_VALIDATION_INVALID_PRODUCT_KEY","features":[25]},{"name":"SL_E_VALIDITY_PERIOD_EXPIRED","features":[25]},{"name":"SL_E_VALIDITY_TIME_EXPIRED","features":[25]},{"name":"SL_E_VALUE_NOT_FOUND","features":[25]},{"name":"SL_E_VL_AD_AO_NAME_TOO_LONG","features":[25]},{"name":"SL_E_VL_AD_AO_NOT_FOUND","features":[25]},{"name":"SL_E_VL_AD_SCHEMA_VERSION_NOT_SUPPORTED","features":[25]},{"name":"SL_E_VL_BINDING_SERVICE_NOT_ENABLED","features":[25]},{"name":"SL_E_VL_BINDING_SERVICE_UNAVAILABLE","features":[25]},{"name":"SL_E_VL_INFO_PRODUCT_USER_RIGHT","features":[25]},{"name":"SL_E_VL_INVALID_TIMESTAMP","features":[25]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_ID_MISMATCH","features":[25]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_NOT_ACTIVATED","features":[25]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_VM_NOT_SUPPORTED","features":[25]},{"name":"SL_E_VL_MACHINE_NOT_BOUND","features":[25]},{"name":"SL_E_VL_NOT_ENOUGH_COUNT","features":[25]},{"name":"SL_E_VL_NOT_WINDOWS_SLP","features":[25]},{"name":"SL_E_WINDOWS_INVALID_LICENSE_STATE","features":[25]},{"name":"SL_E_WINDOWS_VERSION_MISMATCH","features":[25]},{"name":"SL_GENUINE_STATE","features":[25]},{"name":"SL_GEN_STATE_INVALID_LICENSE","features":[25]},{"name":"SL_GEN_STATE_IS_GENUINE","features":[25]},{"name":"SL_GEN_STATE_LAST","features":[25]},{"name":"SL_GEN_STATE_OFFLINE","features":[25]},{"name":"SL_GEN_STATE_TAMPERED","features":[25]},{"name":"SL_ID_ALL_LICENSES","features":[25]},{"name":"SL_ID_ALL_LICENSE_FILES","features":[25]},{"name":"SL_ID_APPLICATION","features":[25]},{"name":"SL_ID_LAST","features":[25]},{"name":"SL_ID_LICENSE","features":[25]},{"name":"SL_ID_LICENSE_FILE","features":[25]},{"name":"SL_ID_PKEY","features":[25]},{"name":"SL_ID_PRODUCT_SKU","features":[25]},{"name":"SL_ID_STORE_TOKEN","features":[25]},{"name":"SL_INFO_KEY_ACTIVE_PLUGINS","features":[25]},{"name":"SL_INFO_KEY_AUTHOR","features":[25]},{"name":"SL_INFO_KEY_BIOS_OA2_MINOR_VERSION","features":[25]},{"name":"SL_INFO_KEY_BIOS_PKEY","features":[25]},{"name":"SL_INFO_KEY_BIOS_PKEY_DESCRIPTION","features":[25]},{"name":"SL_INFO_KEY_BIOS_PKEY_PKPN","features":[25]},{"name":"SL_INFO_KEY_BIOS_SLIC_STATE","features":[25]},{"name":"SL_INFO_KEY_CHANNEL","features":[25]},{"name":"SL_INFO_KEY_DESCRIPTION","features":[25]},{"name":"SL_INFO_KEY_DIGITAL_PID","features":[25]},{"name":"SL_INFO_KEY_DIGITAL_PID2","features":[25]},{"name":"SL_INFO_KEY_IS_KMS","features":[25]},{"name":"SL_INFO_KEY_IS_PRS","features":[25]},{"name":"SL_INFO_KEY_KMS_CURRENT_COUNT","features":[25]},{"name":"SL_INFO_KEY_KMS_FAILED_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_KMS_LICENSED_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_KMS_NON_GENUINE_GRACE_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_KMS_NOTIFICATION_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_KMS_OOB_GRACE_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_KMS_OOT_GRACE_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_KMS_REQUIRED_CLIENT_COUNT","features":[25]},{"name":"SL_INFO_KEY_KMS_TOTAL_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_KMS_UNLICENSED_REQUESTS","features":[25]},{"name":"SL_INFO_KEY_LICENSE_TYPE","features":[25]},{"name":"SL_INFO_KEY_LICENSOR_URL","features":[25]},{"name":"SL_INFO_KEY_NAME","features":[25]},{"name":"SL_INFO_KEY_PARTIAL_PRODUCT_KEY","features":[25]},{"name":"SL_INFO_KEY_PRODUCT_KEY_ACTIVATION_URL","features":[25]},{"name":"SL_INFO_KEY_PRODUCT_SKU_ID","features":[25]},{"name":"SL_INFO_KEY_RIGHT_ACCOUNT_ACTIVATION_URL","features":[25]},{"name":"SL_INFO_KEY_SECURE_PROCESSOR_ACTIVATION_URL","features":[25]},{"name":"SL_INFO_KEY_SECURE_STORE_ID","features":[25]},{"name":"SL_INFO_KEY_SYSTEM_STATE","features":[25]},{"name":"SL_INFO_KEY_USE_LICENSE_ACTIVATION_URL","features":[25]},{"name":"SL_INFO_KEY_VERSION","features":[25]},{"name":"SL_INTERNAL_ZONE","features":[25]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD","features":[25]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD_2","features":[25]},{"name":"SL_I_OOB_GRACE_PERIOD","features":[25]},{"name":"SL_I_OOT_GRACE_PERIOD","features":[25]},{"name":"SL_I_PERPETUAL_OOB_GRACE_PERIOD","features":[25]},{"name":"SL_I_STORE_BASED_ACTIVATION","features":[25]},{"name":"SL_I_TIMEBASED_EXTENDED_GRACE_PERIOD","features":[25]},{"name":"SL_I_TIMEBASED_VALIDITY_PERIOD","features":[25]},{"name":"SL_LICENSING_STATUS","features":[25]},{"name":"SL_LICENSING_STATUS_IN_GRACE_PERIOD","features":[25]},{"name":"SL_LICENSING_STATUS_LAST","features":[25]},{"name":"SL_LICENSING_STATUS_LICENSED","features":[25]},{"name":"SL_LICENSING_STATUS_NOTIFICATION","features":[25]},{"name":"SL_LICENSING_STATUS_UNLICENSED","features":[25]},{"name":"SL_MDOLLAR_ZONE","features":[25]},{"name":"SL_MSCH_ZONE","features":[25]},{"name":"SL_NONGENUINE_UI_OPTIONS","features":[25]},{"name":"SL_PKEY_DETECT","features":[25]},{"name":"SL_PKEY_MS2005","features":[25]},{"name":"SL_PKEY_MS2009","features":[25]},{"name":"SL_POLICY_EVALUATION_MODE_ENABLED","features":[25]},{"name":"SL_PROP_ACTIVATION_VALIDATION_IN_PROGRESS","features":[25]},{"name":"SL_PROP_BRT_COMMIT","features":[25]},{"name":"SL_PROP_BRT_DATA","features":[25]},{"name":"SL_PROP_GENUINE_RESULT","features":[25]},{"name":"SL_PROP_GET_GENUINE_AUTHZ","features":[25]},{"name":"SL_PROP_GET_GENUINE_SERVER_AUTHZ","features":[25]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_HRESULT","features":[25]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_SERVER_FLAGS","features":[25]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_TIME","features":[25]},{"name":"SL_PROP_NONGENUINE_GRACE_FLAG","features":[25]},{"name":"SL_REARM_REBOOT_REQUIRED","features":[25]},{"name":"SL_REFERRALTYPE_APPID","features":[25]},{"name":"SL_REFERRALTYPE_BEST_MATCH","features":[25]},{"name":"SL_REFERRALTYPE_OVERRIDE_APPID","features":[25]},{"name":"SL_REFERRALTYPE_OVERRIDE_SKUID","features":[25]},{"name":"SL_REFERRALTYPE_SKUID","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_CHECK_DIGITS","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA_LENGTH","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_VERSION","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_INVALID_BINDING","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_LIMIT_EXCEEDED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_OVERRIDE_LIMIT_REACHED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_FREE_OFFER_EXPIRED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ACTCONFIG_ID","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ARGUMENT","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING_URI","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA_ID","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_FORMAT","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_LENGTH","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_MAXIMUM_UNLOCK_EXCEEDED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_NO_RULES_TO_ACTIVATE","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OEM_SLP_COA0","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_BLOCKED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_THROTTLED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DONOR_HWID_NO_ENTITLEMENT","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GENERIC_ERROR","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GP_DISABLED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_HARDWARE_BLOCKED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_BLOCKED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_THROTTLED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NOT_ADMIN","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NO_ASSOCIATION","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_BLOCKED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_THROTTLED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_OUT_OF_RANGE","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_ROT_OVERRIDE_LIMIT_REACHED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[25]},{"name":"SL_REMAPPING_MDOLLAR_UNSUPPORTED_PRODUCT_KEY","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_BAD_GET_INFO_QUERY","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_HANDLE_NOT_COMMITED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_ALGORITHM_TYPE","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_HANDLE","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_KEY_LENGTH","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_LICENSE","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_NO_AES_PROVIDER","features":[25]},{"name":"SL_REMAPPING_SP_PUB_API_TOO_MANY_LOADED_ENVIRONMENTS","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_HASH_FINALIZED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCK","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCKLENGTH","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHER","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHERMODE","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_FORMAT","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_KEYLENGTH","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_PADDING","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURE","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURELENGTH","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_AVAILABLE","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_FOUND","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_NOT_BLOCK_ALIGNED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_ATTRIBUTEID","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_HASHID","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_KEYID","features":[25]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_PROVIDERID","features":[25]},{"name":"SL_REMAPPING_SP_PUB_GENERAL_NOT_INITIALIZED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_IDENTICAL","features":[25]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_POLICY_CHANGED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER","features":[25]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER_RESTORE_FAILED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_PROXY_SOFT_TAMPER","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_MODULE_AUTHENTICATION","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_SECURITY_PROCESSOR_PATCHED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TIMER_ALREADY_EXISTS","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TIMER_EXPIRED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NAME_SIZE_TOO_BIG","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NOT_FOUND","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TIMER_READ_ONLY","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TRUSTED_TIME_OK","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_ACCESS_DENIED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_NOT_FOUND","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_READ_ONLY","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_DATA_SIZE_TOO_BIG","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_ALREADY_EXISTS","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_NOT_FOUND","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_SIZE_TOO_BIG","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_READ_ONLY","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_FULL","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_INVALID_HW_BINDING","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_MAX_REARM_REACHED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_IN_USE","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_NOT_FOUND","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_REARMED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_RECREATED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_GENERATION","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_LOAD_INVALID","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_BREADCRUMB_MISMATCH","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_VERSION_MISMATCH","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_INVALID_DATA","features":[25]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_NO_DATA","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_ALREADY_EXISTS","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_DEBUGGER_DETECTED","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_GENERIC_FAILURE","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_INSUFFICIENT_BUFFER","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDARG","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDDATA","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_CALL","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_VERSION","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_NO_MORE_DATA","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_PUSHKEY_CONFLICT","features":[25]},{"name":"SL_REMAPPING_SP_STATUS_SYSTEM_TIME_SKEWED","features":[25]},{"name":"SL_SERVER_ZONE","features":[25]},{"name":"SL_SYSTEM_POLICY_INFORMATION","features":[25]},{"name":"SL_SYSTEM_STATE_REBOOT_POLICY_FOUND","features":[25]},{"name":"SL_SYSTEM_STATE_TAMPERED","features":[25]},{"name":"SPP_MIGRATION_GATHER_ACTIVATED_WINDOWS_STATE","features":[25]},{"name":"SPP_MIGRATION_GATHER_ALL","features":[25]},{"name":"SPP_MIGRATION_GATHER_MIGRATABLE_APPS","features":[25]},{"name":"SP_ACCEPT_CREDENTIALS_NAME","features":[25]},{"name":"SP_PROT_ALL","features":[25]},{"name":"SP_PROT_DTLS1_0_CLIENT","features":[25]},{"name":"SP_PROT_DTLS1_0_SERVER","features":[25]},{"name":"SP_PROT_DTLS1_2_CLIENT","features":[25]},{"name":"SP_PROT_DTLS1_2_SERVER","features":[25]},{"name":"SP_PROT_DTLS_CLIENT","features":[25]},{"name":"SP_PROT_DTLS_SERVER","features":[25]},{"name":"SP_PROT_NONE","features":[25]},{"name":"SP_PROT_PCT1_CLIENT","features":[25]},{"name":"SP_PROT_PCT1_SERVER","features":[25]},{"name":"SP_PROT_SSL2_CLIENT","features":[25]},{"name":"SP_PROT_SSL2_SERVER","features":[25]},{"name":"SP_PROT_SSL3_CLIENT","features":[25]},{"name":"SP_PROT_SSL3_SERVER","features":[25]},{"name":"SP_PROT_TLS1_0_CLIENT","features":[25]},{"name":"SP_PROT_TLS1_0_SERVER","features":[25]},{"name":"SP_PROT_TLS1_1_CLIENT","features":[25]},{"name":"SP_PROT_TLS1_1_SERVER","features":[25]},{"name":"SP_PROT_TLS1_2_CLIENT","features":[25]},{"name":"SP_PROT_TLS1_2_SERVER","features":[25]},{"name":"SP_PROT_TLS1_3PLUS_CLIENT","features":[25]},{"name":"SP_PROT_TLS1_3PLUS_SERVER","features":[25]},{"name":"SP_PROT_TLS1_3_CLIENT","features":[25]},{"name":"SP_PROT_TLS1_3_SERVER","features":[25]},{"name":"SP_PROT_TLS1_CLIENT","features":[25]},{"name":"SP_PROT_TLS1_SERVER","features":[25]},{"name":"SP_PROT_UNI_CLIENT","features":[25]},{"name":"SP_PROT_UNI_SERVER","features":[25]},{"name":"SR_SECURITY_DESCRIPTOR","features":[25]},{"name":"SSL2SP_NAME","features":[25]},{"name":"SSL2SP_NAME_A","features":[25]},{"name":"SSL2SP_NAME_W","features":[25]},{"name":"SSL3SP_NAME","features":[25]},{"name":"SSL3SP_NAME_A","features":[25]},{"name":"SSL3SP_NAME_W","features":[25]},{"name":"SSL_CRACK_CERTIFICATE_FN","features":[3,25,70]},{"name":"SSL_CRACK_CERTIFICATE_NAME","features":[25]},{"name":"SSL_CREDENTIAL_CERTIFICATE","features":[25]},{"name":"SSL_EMPTY_CACHE_FN_A","features":[3,25]},{"name":"SSL_EMPTY_CACHE_FN_W","features":[3,25]},{"name":"SSL_FREE_CERTIFICATE_FN","features":[3,25,70]},{"name":"SSL_FREE_CERTIFICATE_NAME","features":[25]},{"name":"SSL_SESSION_DISABLE_RECONNECTS","features":[25]},{"name":"SSL_SESSION_ENABLE_RECONNECTS","features":[25]},{"name":"SSL_SESSION_RECONNECT","features":[25]},{"name":"SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[25]},{"name":"SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[25]},{"name":"SSPIPFC_NO_CHECKBOX","features":[25]},{"name":"SSPIPFC_SAVE_CRED_BY_CALLER","features":[25]},{"name":"SSPIPFC_USE_CREDUIBROKER","features":[25]},{"name":"SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[25]},{"name":"SZ_ALG_MAX_SIZE","features":[25]},{"name":"SaslAcceptSecurityContext","features":[25,121]},{"name":"SaslEnumerateProfilesA","features":[25]},{"name":"SaslEnumerateProfilesW","features":[25]},{"name":"SaslGetContextOption","features":[25,121]},{"name":"SaslGetProfilePackageA","features":[25]},{"name":"SaslGetProfilePackageW","features":[25]},{"name":"SaslIdentifyPackageA","features":[25]},{"name":"SaslIdentifyPackageW","features":[25]},{"name":"SaslInitializeSecurityContextA","features":[25,121]},{"name":"SaslInitializeSecurityContextW","features":[25,121]},{"name":"SaslSetContextOption","features":[25,121]},{"name":"Sasl_AuthZIDForbidden","features":[25]},{"name":"Sasl_AuthZIDProcessed","features":[25]},{"name":"SchGetExtensionsOptions","features":[25]},{"name":"SeAdtParmTypeAccessMask","features":[25]},{"name":"SeAdtParmTypeAccessReason","features":[25]},{"name":"SeAdtParmTypeClaims","features":[25]},{"name":"SeAdtParmTypeDateTime","features":[25]},{"name":"SeAdtParmTypeDuration","features":[25]},{"name":"SeAdtParmTypeFileSpec","features":[25]},{"name":"SeAdtParmTypeGuid","features":[25]},{"name":"SeAdtParmTypeHexInt64","features":[25]},{"name":"SeAdtParmTypeHexUlong","features":[25]},{"name":"SeAdtParmTypeLogonHours","features":[25]},{"name":"SeAdtParmTypeLogonId","features":[25]},{"name":"SeAdtParmTypeLogonIdAsSid","features":[25]},{"name":"SeAdtParmTypeLogonIdEx","features":[25]},{"name":"SeAdtParmTypeLogonIdNoSid","features":[25]},{"name":"SeAdtParmTypeLuid","features":[25]},{"name":"SeAdtParmTypeMessage","features":[25]},{"name":"SeAdtParmTypeMultiSzString","features":[25]},{"name":"SeAdtParmTypeNoLogonId","features":[25]},{"name":"SeAdtParmTypeNoUac","features":[25]},{"name":"SeAdtParmTypeNone","features":[25]},{"name":"SeAdtParmTypeObjectTypes","features":[25]},{"name":"SeAdtParmTypePrivs","features":[25]},{"name":"SeAdtParmTypePtr","features":[25]},{"name":"SeAdtParmTypeResourceAttribute","features":[25]},{"name":"SeAdtParmTypeSD","features":[25]},{"name":"SeAdtParmTypeSid","features":[25]},{"name":"SeAdtParmTypeSidList","features":[25]},{"name":"SeAdtParmTypeSockAddr","features":[25]},{"name":"SeAdtParmTypeSockAddrNoPort","features":[25]},{"name":"SeAdtParmTypeStagingReason","features":[25]},{"name":"SeAdtParmTypeString","features":[25]},{"name":"SeAdtParmTypeStringList","features":[25]},{"name":"SeAdtParmTypeTime","features":[25]},{"name":"SeAdtParmTypeUlong","features":[25]},{"name":"SeAdtParmTypeUlongNoConv","features":[25]},{"name":"SeAdtParmTypeUserAccountControl","features":[25]},{"name":"SecApplicationProtocolNegotiationExt_ALPN","features":[25]},{"name":"SecApplicationProtocolNegotiationExt_NPN","features":[25]},{"name":"SecApplicationProtocolNegotiationExt_None","features":[25]},{"name":"SecApplicationProtocolNegotiationStatus_None","features":[25]},{"name":"SecApplicationProtocolNegotiationStatus_SelectedClientOnly","features":[25]},{"name":"SecApplicationProtocolNegotiationStatus_Success","features":[25]},{"name":"SecBuffer","features":[25]},{"name":"SecBufferDesc","features":[25]},{"name":"SecDelegationType","features":[25]},{"name":"SecDirectory","features":[25]},{"name":"SecFull","features":[25]},{"name":"SecNameAlternateId","features":[25]},{"name":"SecNameDN","features":[25]},{"name":"SecNameFlat","features":[25]},{"name":"SecNameSPN","features":[25]},{"name":"SecNameSamCompatible","features":[25]},{"name":"SecObject","features":[25]},{"name":"SecPkgAttrLastClientTokenMaybe","features":[25]},{"name":"SecPkgAttrLastClientTokenNo","features":[25]},{"name":"SecPkgAttrLastClientTokenYes","features":[25]},{"name":"SecPkgCallPackageMaxMessage","features":[25]},{"name":"SecPkgCallPackageMinMessage","features":[25]},{"name":"SecPkgCallPackagePinDcMessage","features":[25]},{"name":"SecPkgCallPackageTransferCredMessage","features":[25]},{"name":"SecPkgCallPackageUnpinAllDcsMessage","features":[25]},{"name":"SecPkgContext_AccessToken","features":[25]},{"name":"SecPkgContext_ApplicationProtocol","features":[25]},{"name":"SecPkgContext_AuthorityA","features":[25]},{"name":"SecPkgContext_AuthorityW","features":[25]},{"name":"SecPkgContext_AuthzID","features":[25]},{"name":"SecPkgContext_Bindings","features":[25]},{"name":"SecPkgContext_CertInfo","features":[25]},{"name":"SecPkgContext_CertificateValidationResult","features":[25]},{"name":"SecPkgContext_Certificates","features":[25]},{"name":"SecPkgContext_CipherInfo","features":[25]},{"name":"SecPkgContext_ClientCertPolicyResult","features":[25]},{"name":"SecPkgContext_ClientSpecifiedTarget","features":[25]},{"name":"SecPkgContext_ConnectionInfo","features":[25,70]},{"name":"SecPkgContext_ConnectionInfoEx","features":[25]},{"name":"SecPkgContext_CredInfo","features":[25]},{"name":"SecPkgContext_CredentialNameA","features":[25]},{"name":"SecPkgContext_CredentialNameW","features":[25]},{"name":"SecPkgContext_DceInfo","features":[25]},{"name":"SecPkgContext_EapKeyBlock","features":[25]},{"name":"SecPkgContext_EapPrfInfo","features":[25]},{"name":"SecPkgContext_EarlyStart","features":[25]},{"name":"SecPkgContext_Flags","features":[25]},{"name":"SecPkgContext_IssuerListInfoEx","features":[25,70]},{"name":"SecPkgContext_KeyInfoA","features":[25]},{"name":"SecPkgContext_KeyInfoW","features":[25]},{"name":"SecPkgContext_KeyingMaterial","features":[25]},{"name":"SecPkgContext_KeyingMaterialInfo","features":[25]},{"name":"SecPkgContext_KeyingMaterial_Inproc","features":[25]},{"name":"SecPkgContext_LastClientTokenStatus","features":[25]},{"name":"SecPkgContext_Lifespan","features":[25]},{"name":"SecPkgContext_LocalCredentialInfo","features":[25]},{"name":"SecPkgContext_LogoffTime","features":[25]},{"name":"SecPkgContext_MappedCredAttr","features":[25]},{"name":"SecPkgContext_NamesA","features":[25]},{"name":"SecPkgContext_NamesW","features":[25]},{"name":"SecPkgContext_NativeNamesA","features":[25]},{"name":"SecPkgContext_NativeNamesW","features":[25]},{"name":"SecPkgContext_NegoKeys","features":[25]},{"name":"SecPkgContext_NegoPackageInfo","features":[25]},{"name":"SecPkgContext_NegoStatus","features":[25]},{"name":"SecPkgContext_NegotiatedTlsExtensions","features":[25]},{"name":"SecPkgContext_NegotiationInfoA","features":[25]},{"name":"SecPkgContext_NegotiationInfoW","features":[25]},{"name":"SecPkgContext_PackageInfoA","features":[25]},{"name":"SecPkgContext_PackageInfoW","features":[25]},{"name":"SecPkgContext_PasswordExpiry","features":[25]},{"name":"SecPkgContext_ProtoInfoA","features":[25]},{"name":"SecPkgContext_ProtoInfoW","features":[25]},{"name":"SecPkgContext_RemoteCredentialInfo","features":[25]},{"name":"SecPkgContext_SaslContext","features":[25]},{"name":"SecPkgContext_SessionAppData","features":[25]},{"name":"SecPkgContext_SessionInfo","features":[25]},{"name":"SecPkgContext_SessionKey","features":[25]},{"name":"SecPkgContext_Sizes","features":[25]},{"name":"SecPkgContext_SrtpParameters","features":[25]},{"name":"SecPkgContext_StreamSizes","features":[25]},{"name":"SecPkgContext_SubjectAttributes","features":[25]},{"name":"SecPkgContext_SupportedSignatures","features":[25]},{"name":"SecPkgContext_Target","features":[25]},{"name":"SecPkgContext_TargetInformation","features":[25]},{"name":"SecPkgContext_TokenBinding","features":[25]},{"name":"SecPkgContext_UiInfo","features":[3,25]},{"name":"SecPkgContext_UserFlags","features":[25]},{"name":"SecPkgCredClass_Ephemeral","features":[25]},{"name":"SecPkgCredClass_Explicit","features":[25]},{"name":"SecPkgCredClass_None","features":[25]},{"name":"SecPkgCredClass_PersistedGeneric","features":[25]},{"name":"SecPkgCredClass_PersistedSpecific","features":[25]},{"name":"SecPkgCred_CipherStrengths","features":[25]},{"name":"SecPkgCred_ClientCertPolicy","features":[3,25]},{"name":"SecPkgCred_SessionTicketKey","features":[25]},{"name":"SecPkgCred_SessionTicketKeys","features":[25]},{"name":"SecPkgCred_SupportedAlgs","features":[25,70]},{"name":"SecPkgCred_SupportedProtocols","features":[25]},{"name":"SecPkgCredentials_Cert","features":[25]},{"name":"SecPkgCredentials_KdcProxySettingsW","features":[25]},{"name":"SecPkgCredentials_NamesA","features":[25]},{"name":"SecPkgCredentials_NamesW","features":[25]},{"name":"SecPkgCredentials_SSIProviderA","features":[25]},{"name":"SecPkgCredentials_SSIProviderW","features":[25]},{"name":"SecPkgInfoA","features":[25]},{"name":"SecPkgInfoW","features":[25]},{"name":"SecService","features":[25]},{"name":"SecSessionPrimaryCred","features":[25]},{"name":"SecTrafficSecret_Client","features":[25]},{"name":"SecTrafficSecret_None","features":[25]},{"name":"SecTrafficSecret_Server","features":[25]},{"name":"SecTree","features":[25]},{"name":"SecpkgContextThunks","features":[25]},{"name":"SecpkgExtraOids","features":[25]},{"name":"SecpkgGssInfo","features":[25]},{"name":"SecpkgMaxInfo","features":[25]},{"name":"SecpkgMutualAuthLevel","features":[25]},{"name":"SecpkgNego2Info","features":[25]},{"name":"SecpkgWowClientDll","features":[25]},{"name":"SecurityFunctionTableA","features":[3,25,121]},{"name":"SecurityFunctionTableW","features":[3,25,121]},{"name":"SendSAS","features":[3,25]},{"name":"SetContextAttributesA","features":[25,121]},{"name":"SetContextAttributesW","features":[25,121]},{"name":"SetCredentialsAttributesA","features":[25,121]},{"name":"SetCredentialsAttributesW","features":[25,121]},{"name":"SpAcceptCredentialsFn","features":[3,25]},{"name":"SpAcceptLsaModeContextFn","features":[3,25]},{"name":"SpAcquireCredentialsHandleFn","features":[3,25]},{"name":"SpAddCredentialsFn","features":[3,25]},{"name":"SpApplyControlTokenFn","features":[3,25]},{"name":"SpChangeAccountPasswordFn","features":[3,25]},{"name":"SpCompleteAuthTokenFn","features":[3,25]},{"name":"SpDeleteContextFn","features":[3,25]},{"name":"SpDeleteCredentialsFn","features":[3,25]},{"name":"SpExchangeMetaDataFn","features":[3,25]},{"name":"SpExportSecurityContextFn","features":[3,25]},{"name":"SpExtractTargetInfoFn","features":[3,25]},{"name":"SpFormatCredentialsFn","features":[3,25]},{"name":"SpFreeCredentialsHandleFn","features":[3,25]},{"name":"SpGetContextTokenFn","features":[3,25]},{"name":"SpGetCredUIContextFn","features":[3,25]},{"name":"SpGetCredentialsFn","features":[3,25]},{"name":"SpGetExtendedInformationFn","features":[3,25]},{"name":"SpGetInfoFn","features":[3,25]},{"name":"SpGetRemoteCredGuardLogonBufferFn","features":[3,25]},{"name":"SpGetRemoteCredGuardSupplementalCredsFn","features":[3,25]},{"name":"SpGetTbalSupplementalCredsFn","features":[3,25]},{"name":"SpGetUserInfoFn","features":[3,25]},{"name":"SpImportSecurityContextFn","features":[3,25]},{"name":"SpInitLsaModeContextFn","features":[3,25]},{"name":"SpInitUserModeContextFn","features":[3,25]},{"name":"SpInitializeFn","features":[3,25,121,39]},{"name":"SpInstanceInitFn","features":[3,25]},{"name":"SpLsaModeInitializeFn","features":[3,25,121,39]},{"name":"SpMakeSignatureFn","features":[3,25]},{"name":"SpMarshalAttributeDataFn","features":[3,25]},{"name":"SpMarshallSupplementalCredsFn","features":[3,25]},{"name":"SpQueryContextAttributesFn","features":[3,25]},{"name":"SpQueryCredentialsAttributesFn","features":[3,25]},{"name":"SpQueryMetaDataFn","features":[3,25]},{"name":"SpSaveCredentialsFn","features":[3,25]},{"name":"SpSealMessageFn","features":[3,25]},{"name":"SpSetContextAttributesFn","features":[3,25]},{"name":"SpSetCredentialsAttributesFn","features":[3,25]},{"name":"SpSetExtendedInformationFn","features":[3,25]},{"name":"SpShutdownFn","features":[3,25]},{"name":"SpUnsealMessageFn","features":[3,25]},{"name":"SpUpdateCredentialsFn","features":[3,25]},{"name":"SpUserModeInitializeFn","features":[3,25]},{"name":"SpValidateTargetInfoFn","features":[3,25]},{"name":"SpVerifySignatureFn","features":[3,25]},{"name":"SslCrackCertificate","features":[3,25,70]},{"name":"SslDeserializeCertificateStore","features":[3,25,70]},{"name":"SslDeserializeCertificateStoreFn","features":[3,25,70]},{"name":"SslEmptyCacheA","features":[3,25]},{"name":"SslEmptyCacheW","features":[3,25]},{"name":"SslFreeCertificate","features":[3,25,70]},{"name":"SslGenerateRandomBits","features":[25]},{"name":"SslGetExtensions","features":[25]},{"name":"SslGetExtensionsFn","features":[25]},{"name":"SslGetMaximumKeySize","features":[25]},{"name":"SslGetServerIdentity","features":[25]},{"name":"SslGetServerIdentityFn","features":[25]},{"name":"SspiCompareAuthIdentities","features":[3,25]},{"name":"SspiCopyAuthIdentity","features":[25]},{"name":"SspiDecryptAuthIdentity","features":[25]},{"name":"SspiDecryptAuthIdentityEx","features":[25]},{"name":"SspiEncodeAuthIdentityAsStrings","features":[25]},{"name":"SspiEncodeStringsAsAuthIdentity","features":[25]},{"name":"SspiEncryptAuthIdentity","features":[25]},{"name":"SspiEncryptAuthIdentityEx","features":[25]},{"name":"SspiExcludePackage","features":[25]},{"name":"SspiFreeAuthIdentity","features":[25]},{"name":"SspiGetTargetHostName","features":[25]},{"name":"SspiIsAuthIdentityEncrypted","features":[3,25]},{"name":"SspiIsPromptingNeeded","features":[3,25]},{"name":"SspiLocalFree","features":[25]},{"name":"SspiMarshalAuthIdentity","features":[25]},{"name":"SspiPrepareForCredRead","features":[25]},{"name":"SspiPrepareForCredWrite","features":[25]},{"name":"SspiPromptForCredentialsA","features":[25]},{"name":"SspiPromptForCredentialsW","features":[25]},{"name":"SspiSetChannelBindingFlags","features":[25]},{"name":"SspiUnmarshalAuthIdentity","features":[25]},{"name":"SspiValidateAuthIdentity","features":[25]},{"name":"SspiZeroAuthIdentity","features":[25]},{"name":"TLS1SP_NAME","features":[25]},{"name":"TLS1SP_NAME_A","features":[25]},{"name":"TLS1SP_NAME_W","features":[25]},{"name":"TLS1_ALERT_ACCESS_DENIED","features":[25]},{"name":"TLS1_ALERT_BAD_CERTIFICATE","features":[25]},{"name":"TLS1_ALERT_BAD_RECORD_MAC","features":[25]},{"name":"TLS1_ALERT_CERTIFICATE_EXPIRED","features":[25]},{"name":"TLS1_ALERT_CERTIFICATE_REVOKED","features":[25]},{"name":"TLS1_ALERT_CERTIFICATE_UNKNOWN","features":[25]},{"name":"TLS1_ALERT_CLOSE_NOTIFY","features":[25]},{"name":"TLS1_ALERT_DECODE_ERROR","features":[25]},{"name":"TLS1_ALERT_DECOMPRESSION_FAIL","features":[25]},{"name":"TLS1_ALERT_DECRYPTION_FAILED","features":[25]},{"name":"TLS1_ALERT_DECRYPT_ERROR","features":[25]},{"name":"TLS1_ALERT_EXPORT_RESTRICTION","features":[25]},{"name":"TLS1_ALERT_FATAL","features":[25]},{"name":"TLS1_ALERT_HANDSHAKE_FAILURE","features":[25]},{"name":"TLS1_ALERT_ILLEGAL_PARAMETER","features":[25]},{"name":"TLS1_ALERT_INSUFFIENT_SECURITY","features":[25]},{"name":"TLS1_ALERT_INTERNAL_ERROR","features":[25]},{"name":"TLS1_ALERT_NO_APP_PROTOCOL","features":[25]},{"name":"TLS1_ALERT_NO_RENEGOTIATION","features":[25]},{"name":"TLS1_ALERT_PROTOCOL_VERSION","features":[25]},{"name":"TLS1_ALERT_RECORD_OVERFLOW","features":[25]},{"name":"TLS1_ALERT_UNEXPECTED_MESSAGE","features":[25]},{"name":"TLS1_ALERT_UNKNOWN_CA","features":[25]},{"name":"TLS1_ALERT_UNKNOWN_PSK_IDENTITY","features":[25]},{"name":"TLS1_ALERT_UNSUPPORTED_CERT","features":[25]},{"name":"TLS1_ALERT_UNSUPPORTED_EXT","features":[25]},{"name":"TLS1_ALERT_USER_CANCELED","features":[25]},{"name":"TLS1_ALERT_WARNING","features":[25]},{"name":"TLS_EXTENSION_SUBSCRIPTION","features":[25]},{"name":"TLS_PARAMETERS","features":[25]},{"name":"TLS_PARAMS_OPTIONAL","features":[25]},{"name":"TOKENBINDING_EXTENSION_FORMAT","features":[25]},{"name":"TOKENBINDING_EXTENSION_FORMAT_UNDEFINED","features":[25]},{"name":"TOKENBINDING_IDENTIFIER","features":[25]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE","features":[25]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ANYEXISTING","features":[25]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ECDSAP256","features":[25]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PKCS","features":[25]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PSS","features":[25]},{"name":"TOKENBINDING_KEY_TYPES","features":[25]},{"name":"TOKENBINDING_RESULT_DATA","features":[25]},{"name":"TOKENBINDING_RESULT_LIST","features":[25]},{"name":"TOKENBINDING_TYPE","features":[25]},{"name":"TOKENBINDING_TYPE_PROVIDED","features":[25]},{"name":"TOKENBINDING_TYPE_REFERRED","features":[25]},{"name":"TRUSTED_CONTROLLERS_INFO","features":[25]},{"name":"TRUSTED_DOMAIN_AUTH_INFORMATION","features":[25]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION","features":[25]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION2","features":[25]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX","features":[25]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX2","features":[25]},{"name":"TRUSTED_DOMAIN_NAME_INFO","features":[25]},{"name":"TRUSTED_DOMAIN_SUPPORTED_ENCRYPTION_TYPES","features":[25]},{"name":"TRUSTED_DOMAIN_TRUST_ATTRIBUTES","features":[25]},{"name":"TRUSTED_DOMAIN_TRUST_DIRECTION","features":[25]},{"name":"TRUSTED_DOMAIN_TRUST_TYPE","features":[25]},{"name":"TRUSTED_INFORMATION_CLASS","features":[25]},{"name":"TRUSTED_PASSWORD_INFO","features":[25]},{"name":"TRUSTED_POSIX_OFFSET_INFO","features":[25]},{"name":"TRUSTED_QUERY_AUTH","features":[25]},{"name":"TRUSTED_QUERY_CONTROLLERS","features":[25]},{"name":"TRUSTED_QUERY_DOMAIN_NAME","features":[25]},{"name":"TRUSTED_QUERY_POSIX","features":[25]},{"name":"TRUSTED_SET_AUTH","features":[25]},{"name":"TRUSTED_SET_CONTROLLERS","features":[25]},{"name":"TRUSTED_SET_POSIX","features":[25]},{"name":"TRUST_ATTRIBUTES_USER","features":[25]},{"name":"TRUST_ATTRIBUTES_VALID","features":[25]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION","features":[25]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_ENABLE_TGT_DELEGATION","features":[25]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_NO_TGT_DELEGATION","features":[25]},{"name":"TRUST_ATTRIBUTE_DISABLE_AUTH_TARGET_VALIDATION","features":[25]},{"name":"TRUST_ATTRIBUTE_FILTER_SIDS","features":[25]},{"name":"TRUST_ATTRIBUTE_FOREST_TRANSITIVE","features":[25]},{"name":"TRUST_ATTRIBUTE_NON_TRANSITIVE","features":[25]},{"name":"TRUST_ATTRIBUTE_PIM_TRUST","features":[25]},{"name":"TRUST_ATTRIBUTE_QUARANTINED_DOMAIN","features":[25]},{"name":"TRUST_ATTRIBUTE_TREAT_AS_EXTERNAL","features":[25]},{"name":"TRUST_ATTRIBUTE_TREE_PARENT","features":[25]},{"name":"TRUST_ATTRIBUTE_TREE_ROOT","features":[25]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_AES_KEYS","features":[25]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_RC4_ENCRYPTION","features":[25]},{"name":"TRUST_ATTRIBUTE_UPLEVEL_ONLY","features":[25]},{"name":"TRUST_ATTRIBUTE_WITHIN_FOREST","features":[25]},{"name":"TRUST_AUTH_TYPE_CLEAR","features":[25]},{"name":"TRUST_AUTH_TYPE_NONE","features":[25]},{"name":"TRUST_AUTH_TYPE_NT4OWF","features":[25]},{"name":"TRUST_AUTH_TYPE_VERSION","features":[25]},{"name":"TRUST_DIRECTION_BIDIRECTIONAL","features":[25]},{"name":"TRUST_DIRECTION_DISABLED","features":[25]},{"name":"TRUST_DIRECTION_INBOUND","features":[25]},{"name":"TRUST_DIRECTION_OUTBOUND","features":[25]},{"name":"TRUST_TYPE_AAD","features":[25]},{"name":"TRUST_TYPE_DCE","features":[25]},{"name":"TRUST_TYPE_DOWNLEVEL","features":[25]},{"name":"TRUST_TYPE_MIT","features":[25]},{"name":"TRUST_TYPE_UPLEVEL","features":[25]},{"name":"TlsHashAlgorithm_Md5","features":[25]},{"name":"TlsHashAlgorithm_None","features":[25]},{"name":"TlsHashAlgorithm_Sha1","features":[25]},{"name":"TlsHashAlgorithm_Sha224","features":[25]},{"name":"TlsHashAlgorithm_Sha256","features":[25]},{"name":"TlsHashAlgorithm_Sha384","features":[25]},{"name":"TlsHashAlgorithm_Sha512","features":[25]},{"name":"TlsParametersCngAlgUsageCertSig","features":[25]},{"name":"TlsParametersCngAlgUsageCipher","features":[25]},{"name":"TlsParametersCngAlgUsageDigest","features":[25]},{"name":"TlsParametersCngAlgUsageKeyExchange","features":[25]},{"name":"TlsParametersCngAlgUsageSignature","features":[25]},{"name":"TlsSignatureAlgorithm_Anonymous","features":[25]},{"name":"TlsSignatureAlgorithm_Dsa","features":[25]},{"name":"TlsSignatureAlgorithm_Ecdsa","features":[25]},{"name":"TlsSignatureAlgorithm_Rsa","features":[25]},{"name":"TokenBindingDeleteAllBindings","features":[25]},{"name":"TokenBindingDeleteBinding","features":[25]},{"name":"TokenBindingGenerateBinding","features":[25]},{"name":"TokenBindingGenerateID","features":[25]},{"name":"TokenBindingGenerateIDForUri","features":[25]},{"name":"TokenBindingGenerateMessage","features":[25]},{"name":"TokenBindingGetHighestSupportedVersion","features":[25]},{"name":"TokenBindingGetKeyTypesClient","features":[25]},{"name":"TokenBindingGetKeyTypesServer","features":[25]},{"name":"TokenBindingVerifyMessage","features":[25]},{"name":"TranslateNameA","features":[3,25]},{"name":"TranslateNameW","features":[3,25]},{"name":"TrustedControllersInformation","features":[25]},{"name":"TrustedDomainAuthInformation","features":[25]},{"name":"TrustedDomainAuthInformationInternal","features":[25]},{"name":"TrustedDomainAuthInformationInternalAes","features":[25]},{"name":"TrustedDomainFullInformation","features":[25]},{"name":"TrustedDomainFullInformation2Internal","features":[25]},{"name":"TrustedDomainFullInformationInternal","features":[25]},{"name":"TrustedDomainFullInformationInternalAes","features":[25]},{"name":"TrustedDomainInformationBasic","features":[25]},{"name":"TrustedDomainInformationEx","features":[25]},{"name":"TrustedDomainInformationEx2Internal","features":[25]},{"name":"TrustedDomainNameInformation","features":[25]},{"name":"TrustedDomainSupportedEncryptionTypes","features":[25]},{"name":"TrustedPasswordInformation","features":[25]},{"name":"TrustedPosixOffsetInformation","features":[25]},{"name":"UNDERSTANDS_LONG_NAMES","features":[25]},{"name":"UNISP_NAME","features":[25]},{"name":"UNISP_NAME_A","features":[25]},{"name":"UNISP_NAME_W","features":[25]},{"name":"UNISP_RPC_ID","features":[25]},{"name":"USER_ACCOUNT_AUTO_LOCKED","features":[25]},{"name":"USER_ACCOUNT_DISABLED","features":[25]},{"name":"USER_ALL_INFORMATION","features":[3,25]},{"name":"USER_ALL_PARAMETERS","features":[25]},{"name":"USER_DONT_EXPIRE_PASSWORD","features":[25]},{"name":"USER_DONT_REQUIRE_PREAUTH","features":[25]},{"name":"USER_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[25]},{"name":"USER_HOME_DIRECTORY_REQUIRED","features":[25]},{"name":"USER_INTERDOMAIN_TRUST_ACCOUNT","features":[25]},{"name":"USER_MNS_LOGON_ACCOUNT","features":[25]},{"name":"USER_NORMAL_ACCOUNT","features":[25]},{"name":"USER_NOT_DELEGATED","features":[25]},{"name":"USER_NO_AUTH_DATA_REQUIRED","features":[25]},{"name":"USER_PARTIAL_SECRETS_ACCOUNT","features":[25]},{"name":"USER_PASSWORD_EXPIRED","features":[25]},{"name":"USER_PASSWORD_NOT_REQUIRED","features":[25]},{"name":"USER_SERVER_TRUST_ACCOUNT","features":[25]},{"name":"USER_SESSION_KEY","features":[25,122]},{"name":"USER_SMARTCARD_REQUIRED","features":[25]},{"name":"USER_TEMP_DUPLICATE_ACCOUNT","features":[25]},{"name":"USER_TRUSTED_FOR_DELEGATION","features":[25]},{"name":"USER_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[25]},{"name":"USER_USE_AES_KEYS","features":[25]},{"name":"USER_USE_DES_KEY_ONLY","features":[25]},{"name":"USER_WORKSTATION_TRUST_ACCOUNT","features":[25]},{"name":"VERIFY_SIGNATURE_FN","features":[25,121]},{"name":"VerifySignature","features":[25,121]},{"name":"WDIGEST_SP_NAME","features":[25]},{"name":"WDIGEST_SP_NAME_A","features":[25]},{"name":"WDIGEST_SP_NAME_W","features":[25]},{"name":"WINDOWS_SLID","features":[25]},{"name":"X509Certificate","features":[3,25,70]},{"name":"_FACILITY_WINDOWS_STORE","features":[25]},{"name":"_HMAPPER","features":[25]},{"name":"eTlsAlgorithmUsage","features":[25]},{"name":"eTlsHashAlgorithm","features":[25]},{"name":"eTlsSignatureAlgorithm","features":[25]}],"485":[{"name":"ACCCTRL_DEFAULT_PROVIDER","features":[123]},{"name":"ACCCTRL_DEFAULT_PROVIDERA","features":[123]},{"name":"ACCCTRL_DEFAULT_PROVIDERW","features":[123]},{"name":"ACCESS_MODE","features":[123]},{"name":"ACTRL_ACCESSA","features":[123]},{"name":"ACTRL_ACCESSW","features":[123]},{"name":"ACTRL_ACCESS_ALLOWED","features":[123]},{"name":"ACTRL_ACCESS_DENIED","features":[123]},{"name":"ACTRL_ACCESS_ENTRYA","features":[123]},{"name":"ACTRL_ACCESS_ENTRYW","features":[123]},{"name":"ACTRL_ACCESS_ENTRY_ACCESS_FLAGS","features":[123]},{"name":"ACTRL_ACCESS_ENTRY_LISTA","features":[123]},{"name":"ACTRL_ACCESS_ENTRY_LISTW","features":[123]},{"name":"ACTRL_ACCESS_INFOA","features":[123]},{"name":"ACTRL_ACCESS_INFOW","features":[123]},{"name":"ACTRL_ACCESS_NO_OPTIONS","features":[123]},{"name":"ACTRL_ACCESS_PROTECTED","features":[123]},{"name":"ACTRL_ACCESS_SUPPORTS_OBJECT_ENTRIES","features":[123]},{"name":"ACTRL_AUDIT_FAILURE","features":[123]},{"name":"ACTRL_AUDIT_SUCCESS","features":[123]},{"name":"ACTRL_CHANGE_ACCESS","features":[123]},{"name":"ACTRL_CHANGE_OWNER","features":[123]},{"name":"ACTRL_CONTROL_INFOA","features":[123]},{"name":"ACTRL_CONTROL_INFOW","features":[123]},{"name":"ACTRL_DELETE","features":[123]},{"name":"ACTRL_DIR_CREATE_CHILD","features":[123]},{"name":"ACTRL_DIR_CREATE_OBJECT","features":[123]},{"name":"ACTRL_DIR_DELETE_CHILD","features":[123]},{"name":"ACTRL_DIR_LIST","features":[123]},{"name":"ACTRL_DIR_TRAVERSE","features":[123]},{"name":"ACTRL_FILE_APPEND","features":[123]},{"name":"ACTRL_FILE_CREATE_PIPE","features":[123]},{"name":"ACTRL_FILE_EXECUTE","features":[123]},{"name":"ACTRL_FILE_READ","features":[123]},{"name":"ACTRL_FILE_READ_ATTRIB","features":[123]},{"name":"ACTRL_FILE_READ_PROP","features":[123]},{"name":"ACTRL_FILE_WRITE","features":[123]},{"name":"ACTRL_FILE_WRITE_ATTRIB","features":[123]},{"name":"ACTRL_FILE_WRITE_PROP","features":[123]},{"name":"ACTRL_KERNEL_ALERT","features":[123]},{"name":"ACTRL_KERNEL_CONTROL","features":[123]},{"name":"ACTRL_KERNEL_DIMPERSONATE","features":[123]},{"name":"ACTRL_KERNEL_DUP_HANDLE","features":[123]},{"name":"ACTRL_KERNEL_GET_CONTEXT","features":[123]},{"name":"ACTRL_KERNEL_GET_INFO","features":[123]},{"name":"ACTRL_KERNEL_IMPERSONATE","features":[123]},{"name":"ACTRL_KERNEL_PROCESS","features":[123]},{"name":"ACTRL_KERNEL_SET_CONTEXT","features":[123]},{"name":"ACTRL_KERNEL_SET_INFO","features":[123]},{"name":"ACTRL_KERNEL_TERMINATE","features":[123]},{"name":"ACTRL_KERNEL_THREAD","features":[123]},{"name":"ACTRL_KERNEL_TOKEN","features":[123]},{"name":"ACTRL_KERNEL_VM","features":[123]},{"name":"ACTRL_KERNEL_VM_READ","features":[123]},{"name":"ACTRL_KERNEL_VM_WRITE","features":[123]},{"name":"ACTRL_OVERLAPPED","features":[3,123]},{"name":"ACTRL_PERM_1","features":[123]},{"name":"ACTRL_PERM_10","features":[123]},{"name":"ACTRL_PERM_11","features":[123]},{"name":"ACTRL_PERM_12","features":[123]},{"name":"ACTRL_PERM_13","features":[123]},{"name":"ACTRL_PERM_14","features":[123]},{"name":"ACTRL_PERM_15","features":[123]},{"name":"ACTRL_PERM_16","features":[123]},{"name":"ACTRL_PERM_17","features":[123]},{"name":"ACTRL_PERM_18","features":[123]},{"name":"ACTRL_PERM_19","features":[123]},{"name":"ACTRL_PERM_2","features":[123]},{"name":"ACTRL_PERM_20","features":[123]},{"name":"ACTRL_PERM_3","features":[123]},{"name":"ACTRL_PERM_4","features":[123]},{"name":"ACTRL_PERM_5","features":[123]},{"name":"ACTRL_PERM_6","features":[123]},{"name":"ACTRL_PERM_7","features":[123]},{"name":"ACTRL_PERM_8","features":[123]},{"name":"ACTRL_PERM_9","features":[123]},{"name":"ACTRL_PRINT_JADMIN","features":[123]},{"name":"ACTRL_PRINT_PADMIN","features":[123]},{"name":"ACTRL_PRINT_PUSE","features":[123]},{"name":"ACTRL_PRINT_SADMIN","features":[123]},{"name":"ACTRL_PRINT_SLIST","features":[123]},{"name":"ACTRL_PROPERTY_ENTRYA","features":[123]},{"name":"ACTRL_PROPERTY_ENTRYW","features":[123]},{"name":"ACTRL_READ_CONTROL","features":[123]},{"name":"ACTRL_REG_CREATE_CHILD","features":[123]},{"name":"ACTRL_REG_LINK","features":[123]},{"name":"ACTRL_REG_LIST","features":[123]},{"name":"ACTRL_REG_NOTIFY","features":[123]},{"name":"ACTRL_REG_QUERY","features":[123]},{"name":"ACTRL_REG_SET","features":[123]},{"name":"ACTRL_RESERVED","features":[123]},{"name":"ACTRL_STD_RIGHTS_ALL","features":[123]},{"name":"ACTRL_SVC_GET_INFO","features":[123]},{"name":"ACTRL_SVC_INTERROGATE","features":[123]},{"name":"ACTRL_SVC_LIST","features":[123]},{"name":"ACTRL_SVC_PAUSE","features":[123]},{"name":"ACTRL_SVC_SET_INFO","features":[123]},{"name":"ACTRL_SVC_START","features":[123]},{"name":"ACTRL_SVC_STATUS","features":[123]},{"name":"ACTRL_SVC_STOP","features":[123]},{"name":"ACTRL_SVC_UCONTROL","features":[123]},{"name":"ACTRL_SYNCHRONIZE","features":[123]},{"name":"ACTRL_SYSTEM_ACCESS","features":[123]},{"name":"ACTRL_WIN_CLIPBRD","features":[123]},{"name":"ACTRL_WIN_CREATE","features":[123]},{"name":"ACTRL_WIN_EXIT","features":[123]},{"name":"ACTRL_WIN_GLOBAL_ATOMS","features":[123]},{"name":"ACTRL_WIN_LIST","features":[123]},{"name":"ACTRL_WIN_LIST_DESK","features":[123]},{"name":"ACTRL_WIN_READ_ATTRIBS","features":[123]},{"name":"ACTRL_WIN_SCREEN","features":[123]},{"name":"ACTRL_WIN_WRITE_ATTRIBS","features":[123]},{"name":"APF_AuditFailure","features":[123]},{"name":"APF_AuditSuccess","features":[123]},{"name":"APF_ValidFlags","features":[123]},{"name":"APT_Guid","features":[123]},{"name":"APT_Int64","features":[123]},{"name":"APT_IpAddress","features":[123]},{"name":"APT_LogonId","features":[123]},{"name":"APT_LogonIdWithSid","features":[123]},{"name":"APT_Luid","features":[123]},{"name":"APT_None","features":[123]},{"name":"APT_ObjectTypeList","features":[123]},{"name":"APT_Pointer","features":[123]},{"name":"APT_Sid","features":[123]},{"name":"APT_String","features":[123]},{"name":"APT_Time","features":[123]},{"name":"APT_Ulong","features":[123]},{"name":"AP_ParamTypeBits","features":[123]},{"name":"AP_ParamTypeMask","features":[123]},{"name":"AUDIT_IP_ADDRESS","features":[123]},{"name":"AUDIT_OBJECT_TYPE","features":[123]},{"name":"AUDIT_OBJECT_TYPES","features":[123]},{"name":"AUDIT_PARAM","features":[123]},{"name":"AUDIT_PARAMS","features":[123]},{"name":"AUDIT_PARAM_TYPE","features":[123]},{"name":"AUDIT_TYPE_LEGACY","features":[123]},{"name":"AUDIT_TYPE_WMI","features":[123]},{"name":"AUTHZP_WPD_EVENT","features":[123]},{"name":"AUTHZ_ACCESS_CHECK_FLAGS","features":[123]},{"name":"AUTHZ_ACCESS_CHECK_NO_DEEP_COPY_SD","features":[123]},{"name":"AUTHZ_ACCESS_CHECK_RESULTS_HANDLE","features":[123]},{"name":"AUTHZ_ACCESS_REPLY","features":[123]},{"name":"AUTHZ_ACCESS_REQUEST","features":[123]},{"name":"AUTHZ_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[123]},{"name":"AUTHZ_AUDIT_EVENT_HANDLE","features":[123]},{"name":"AUTHZ_AUDIT_EVENT_INFORMATION_CLASS","features":[123]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_HANDLE","features":[123]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_LEGACY","features":[123]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_OLD","features":[3,123]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_UNION","features":[123]},{"name":"AUTHZ_AUDIT_INSTANCE_INFORMATION","features":[123]},{"name":"AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE","features":[123]},{"name":"AUTHZ_CLIENT_CONTEXT_HANDLE","features":[123]},{"name":"AUTHZ_COMPUTE_PRIVILEGES","features":[123]},{"name":"AUTHZ_CONTEXT_INFORMATION_CLASS","features":[123]},{"name":"AUTHZ_FLAG_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[123]},{"name":"AUTHZ_GENERATE_FAILURE_AUDIT","features":[123]},{"name":"AUTHZ_GENERATE_RESULTS","features":[123]},{"name":"AUTHZ_GENERATE_SUCCESS_AUDIT","features":[123]},{"name":"AUTHZ_INITIALIZE_OBJECT_ACCESS_AUDIT_EVENT_FLAGS","features":[123]},{"name":"AUTHZ_INIT_INFO","features":[3,123]},{"name":"AUTHZ_INIT_INFO_VERSION_V1","features":[123]},{"name":"AUTHZ_MIGRATED_LEGACY_PUBLISHER","features":[123]},{"name":"AUTHZ_NO_ALLOC_STRINGS","features":[123]},{"name":"AUTHZ_NO_FAILURE_AUDIT","features":[123]},{"name":"AUTHZ_NO_SUCCESS_AUDIT","features":[123]},{"name":"AUTHZ_REGISTRATION_OBJECT_TYPE_NAME_OFFSET","features":[123]},{"name":"AUTHZ_REQUIRE_S4U_LOGON","features":[123]},{"name":"AUTHZ_RESOURCE_MANAGER_FLAGS","features":[123]},{"name":"AUTHZ_RESOURCE_MANAGER_HANDLE","features":[123]},{"name":"AUTHZ_RM_FLAG_INITIALIZE_UNDER_IMPERSONATION","features":[123]},{"name":"AUTHZ_RM_FLAG_NO_AUDIT","features":[123]},{"name":"AUTHZ_RM_FLAG_NO_CENTRAL_ACCESS_POLICIES","features":[123]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT","features":[123]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT_VERSION_V1","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FLAGS","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_ADD","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_DELETE","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_NONE","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE_ALL","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INT64","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_SID","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_STRING","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_V1","features":[123]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[123]},{"name":"AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE","features":[123]},{"name":"AUTHZ_SID_OPERATION","features":[123]},{"name":"AUTHZ_SID_OPERATION_ADD","features":[123]},{"name":"AUTHZ_SID_OPERATION_DELETE","features":[123]},{"name":"AUTHZ_SID_OPERATION_NONE","features":[123]},{"name":"AUTHZ_SID_OPERATION_REPLACE","features":[123]},{"name":"AUTHZ_SID_OPERATION_REPLACE_ALL","features":[123]},{"name":"AUTHZ_SKIP_TOKEN_GROUPS","features":[123]},{"name":"AUTHZ_SOURCE_SCHEMA_REGISTRATION","features":[123]},{"name":"AUTHZ_WPD_CATEGORY_FLAG","features":[123]},{"name":"AZ_AZSTORE_DEFAULT_DOMAIN_TIMEOUT","features":[123]},{"name":"AZ_AZSTORE_DEFAULT_MAX_SCRIPT_ENGINES","features":[123]},{"name":"AZ_AZSTORE_DEFAULT_SCRIPT_ENGINE_TIMEOUT","features":[123]},{"name":"AZ_AZSTORE_FLAG_AUDIT_IS_CRITICAL","features":[123]},{"name":"AZ_AZSTORE_FLAG_BATCH_UPDATE","features":[123]},{"name":"AZ_AZSTORE_FLAG_CREATE","features":[123]},{"name":"AZ_AZSTORE_FLAG_MANAGE_ONLY_PASSIVE_SUBMIT","features":[123]},{"name":"AZ_AZSTORE_FLAG_MANAGE_STORE_ONLY","features":[123]},{"name":"AZ_AZSTORE_FORCE_APPLICATION_CLOSE","features":[123]},{"name":"AZ_AZSTORE_MIN_DOMAIN_TIMEOUT","features":[123]},{"name":"AZ_AZSTORE_MIN_SCRIPT_ENGINE_TIMEOUT","features":[123]},{"name":"AZ_AZSTORE_NT6_FUNCTION_LEVEL","features":[123]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUPS_STORE_LEVEL_ONLY","features":[123]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUP_RECURSIVE","features":[123]},{"name":"AZ_CLIENT_CONTEXT_SKIP_GROUP","features":[123]},{"name":"AZ_CLIENT_CONTEXT_SKIP_LDAP_QUERY","features":[123]},{"name":"AZ_GROUPTYPE_BASIC","features":[123]},{"name":"AZ_GROUPTYPE_BIZRULE","features":[123]},{"name":"AZ_GROUPTYPE_LDAP_QUERY","features":[123]},{"name":"AZ_MAX_APPLICATION_DATA_LENGTH","features":[123]},{"name":"AZ_MAX_APPLICATION_NAME_LENGTH","features":[123]},{"name":"AZ_MAX_APPLICATION_VERSION_LENGTH","features":[123]},{"name":"AZ_MAX_BIZRULE_STRING","features":[123]},{"name":"AZ_MAX_DESCRIPTION_LENGTH","features":[123]},{"name":"AZ_MAX_GROUP_BIZRULE_IMPORTED_PATH_LENGTH","features":[123]},{"name":"AZ_MAX_GROUP_BIZRULE_LANGUAGE_LENGTH","features":[123]},{"name":"AZ_MAX_GROUP_BIZRULE_LENGTH","features":[123]},{"name":"AZ_MAX_GROUP_LDAP_QUERY_LENGTH","features":[123]},{"name":"AZ_MAX_GROUP_NAME_LENGTH","features":[123]},{"name":"AZ_MAX_NAME_LENGTH","features":[123]},{"name":"AZ_MAX_OPERATION_NAME_LENGTH","features":[123]},{"name":"AZ_MAX_POLICY_URL_LENGTH","features":[123]},{"name":"AZ_MAX_ROLE_NAME_LENGTH","features":[123]},{"name":"AZ_MAX_SCOPE_NAME_LENGTH","features":[123]},{"name":"AZ_MAX_TASK_BIZRULE_IMPORTED_PATH_LENGTH","features":[123]},{"name":"AZ_MAX_TASK_BIZRULE_LANGUAGE_LENGTH","features":[123]},{"name":"AZ_MAX_TASK_BIZRULE_LENGTH","features":[123]},{"name":"AZ_MAX_TASK_NAME_LENGTH","features":[123]},{"name":"AZ_PROP_APPLICATION_AUTHZ_INTERFACE_CLSID","features":[123]},{"name":"AZ_PROP_APPLICATION_BIZRULE_ENABLED","features":[123]},{"name":"AZ_PROP_APPLICATION_DATA","features":[123]},{"name":"AZ_PROP_APPLICATION_NAME","features":[123]},{"name":"AZ_PROP_APPLICATION_VERSION","features":[123]},{"name":"AZ_PROP_APPLY_STORE_SACL","features":[123]},{"name":"AZ_PROP_AZSTORE_DOMAIN_TIMEOUT","features":[123]},{"name":"AZ_PROP_AZSTORE_MAJOR_VERSION","features":[123]},{"name":"AZ_PROP_AZSTORE_MAX_SCRIPT_ENGINES","features":[123]},{"name":"AZ_PROP_AZSTORE_MINOR_VERSION","features":[123]},{"name":"AZ_PROP_AZSTORE_SCRIPT_ENGINE_TIMEOUT","features":[123]},{"name":"AZ_PROP_AZSTORE_TARGET_MACHINE","features":[123]},{"name":"AZ_PROP_AZTORE_IS_ADAM_INSTANCE","features":[123]},{"name":"AZ_PROP_CHILD_CREATE","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_LDAP_QUERY_DN","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_ROLE_FOR_ACCESS_CHECK","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_CANONICAL","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DISPLAY","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DN","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DNS_SAM_COMPAT","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_GUID","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_SAM_COMPAT","features":[123]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_UPN","features":[123]},{"name":"AZ_PROP_CONSTANTS","features":[123]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS","features":[123]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS_NAME","features":[123]},{"name":"AZ_PROP_DESCRIPTION","features":[123]},{"name":"AZ_PROP_GENERATE_AUDITS","features":[123]},{"name":"AZ_PROP_GROUP_APP_MEMBERS","features":[123]},{"name":"AZ_PROP_GROUP_APP_NON_MEMBERS","features":[123]},{"name":"AZ_PROP_GROUP_BIZRULE","features":[123]},{"name":"AZ_PROP_GROUP_BIZRULE_IMPORTED_PATH","features":[123]},{"name":"AZ_PROP_GROUP_BIZRULE_LANGUAGE","features":[123]},{"name":"AZ_PROP_GROUP_LDAP_QUERY","features":[123]},{"name":"AZ_PROP_GROUP_MEMBERS","features":[123]},{"name":"AZ_PROP_GROUP_MEMBERS_NAME","features":[123]},{"name":"AZ_PROP_GROUP_NON_MEMBERS","features":[123]},{"name":"AZ_PROP_GROUP_NON_MEMBERS_NAME","features":[123]},{"name":"AZ_PROP_GROUP_TYPE","features":[123]},{"name":"AZ_PROP_NAME","features":[123]},{"name":"AZ_PROP_OPERATION_ID","features":[123]},{"name":"AZ_PROP_POLICY_ADMINS","features":[123]},{"name":"AZ_PROP_POLICY_ADMINS_NAME","features":[123]},{"name":"AZ_PROP_POLICY_READERS","features":[123]},{"name":"AZ_PROP_POLICY_READERS_NAME","features":[123]},{"name":"AZ_PROP_ROLE_APP_MEMBERS","features":[123]},{"name":"AZ_PROP_ROLE_MEMBERS","features":[123]},{"name":"AZ_PROP_ROLE_MEMBERS_NAME","features":[123]},{"name":"AZ_PROP_ROLE_OPERATIONS","features":[123]},{"name":"AZ_PROP_ROLE_TASKS","features":[123]},{"name":"AZ_PROP_SCOPE_BIZRULES_WRITABLE","features":[123]},{"name":"AZ_PROP_SCOPE_CAN_BE_DELEGATED","features":[123]},{"name":"AZ_PROP_TASK_BIZRULE","features":[123]},{"name":"AZ_PROP_TASK_BIZRULE_IMPORTED_PATH","features":[123]},{"name":"AZ_PROP_TASK_BIZRULE_LANGUAGE","features":[123]},{"name":"AZ_PROP_TASK_IS_ROLE_DEFINITION","features":[123]},{"name":"AZ_PROP_TASK_OPERATIONS","features":[123]},{"name":"AZ_PROP_TASK_TASKS","features":[123]},{"name":"AZ_PROP_WRITABLE","features":[123]},{"name":"AZ_SUBMIT_FLAG_ABORT","features":[123]},{"name":"AZ_SUBMIT_FLAG_FLUSH","features":[123]},{"name":"AuthzAccessCheck","features":[3,123]},{"name":"AuthzAddSidsToContext","features":[3,123]},{"name":"AuthzAuditEventInfoAdditionalInfo","features":[123]},{"name":"AuthzAuditEventInfoFlags","features":[123]},{"name":"AuthzAuditEventInfoObjectName","features":[123]},{"name":"AuthzAuditEventInfoObjectType","features":[123]},{"name":"AuthzAuditEventInfoOperationType","features":[123]},{"name":"AuthzCachedAccessCheck","features":[3,123]},{"name":"AuthzContextInfoAll","features":[123]},{"name":"AuthzContextInfoAppContainerSid","features":[123]},{"name":"AuthzContextInfoAuthenticationId","features":[123]},{"name":"AuthzContextInfoCapabilitySids","features":[123]},{"name":"AuthzContextInfoDeviceClaims","features":[123]},{"name":"AuthzContextInfoDeviceSids","features":[123]},{"name":"AuthzContextInfoExpirationTime","features":[123]},{"name":"AuthzContextInfoGroupsSids","features":[123]},{"name":"AuthzContextInfoIdentifier","features":[123]},{"name":"AuthzContextInfoPrivileges","features":[123]},{"name":"AuthzContextInfoRestrictedSids","features":[123]},{"name":"AuthzContextInfoSecurityAttributes","features":[123]},{"name":"AuthzContextInfoServerContext","features":[123]},{"name":"AuthzContextInfoSource","features":[123]},{"name":"AuthzContextInfoUserClaims","features":[123]},{"name":"AuthzContextInfoUserSid","features":[123]},{"name":"AuthzEnumerateSecurityEventSources","features":[3,123]},{"name":"AuthzEvaluateSacl","features":[3,123]},{"name":"AuthzFreeAuditEvent","features":[3,123]},{"name":"AuthzFreeCentralAccessPolicyCache","features":[3,123]},{"name":"AuthzFreeContext","features":[3,123]},{"name":"AuthzFreeHandle","features":[3,123]},{"name":"AuthzFreeResourceManager","features":[3,123]},{"name":"AuthzGetInformationFromContext","features":[3,123]},{"name":"AuthzInitializeCompoundContext","features":[3,123]},{"name":"AuthzInitializeContextFromAuthzContext","features":[3,123]},{"name":"AuthzInitializeContextFromSid","features":[3,123]},{"name":"AuthzInitializeContextFromToken","features":[3,123]},{"name":"AuthzInitializeObjectAccessAuditEvent","features":[3,123]},{"name":"AuthzInitializeObjectAccessAuditEvent2","features":[3,123]},{"name":"AuthzInitializeRemoteResourceManager","features":[3,123]},{"name":"AuthzInitializeResourceManager","features":[3,123]},{"name":"AuthzInitializeResourceManagerEx","features":[3,123]},{"name":"AuthzInstallSecurityEventSource","features":[3,123]},{"name":"AuthzModifyClaims","features":[3,123]},{"name":"AuthzModifySecurityAttributes","features":[3,123]},{"name":"AuthzModifySids","features":[3,123]},{"name":"AuthzOpenObjectAudit","features":[3,123]},{"name":"AuthzRegisterCapChangeNotification","features":[3,123,39]},{"name":"AuthzRegisterSecurityEventSource","features":[3,123]},{"name":"AuthzReportSecurityEvent","features":[3,123]},{"name":"AuthzReportSecurityEventFromParams","features":[3,123]},{"name":"AuthzSetAppContainerInformation","features":[3,123]},{"name":"AuthzUninstallSecurityEventSource","features":[3,123]},{"name":"AuthzUnregisterCapChangeNotification","features":[3,123]},{"name":"AuthzUnregisterSecurityEventSource","features":[3,123]},{"name":"AzAuthorizationStore","features":[123]},{"name":"AzBizRuleContext","features":[123]},{"name":"AzPrincipalLocator","features":[123]},{"name":"BuildExplicitAccessWithNameA","features":[123]},{"name":"BuildExplicitAccessWithNameW","features":[123]},{"name":"BuildImpersonateExplicitAccessWithNameA","features":[123]},{"name":"BuildImpersonateExplicitAccessWithNameW","features":[123]},{"name":"BuildImpersonateTrusteeA","features":[123]},{"name":"BuildImpersonateTrusteeW","features":[123]},{"name":"BuildSecurityDescriptorA","features":[3,123]},{"name":"BuildSecurityDescriptorW","features":[3,123]},{"name":"BuildTrusteeWithNameA","features":[123]},{"name":"BuildTrusteeWithNameW","features":[123]},{"name":"BuildTrusteeWithObjectsAndNameA","features":[123]},{"name":"BuildTrusteeWithObjectsAndNameW","features":[123]},{"name":"BuildTrusteeWithObjectsAndSidA","features":[123]},{"name":"BuildTrusteeWithObjectsAndSidW","features":[123]},{"name":"BuildTrusteeWithSidA","features":[123]},{"name":"BuildTrusteeWithSidW","features":[123]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorA","features":[3,123]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorW","features":[3,123]},{"name":"ConvertSidToStringSidA","features":[3,123]},{"name":"ConvertSidToStringSidW","features":[3,123]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorA","features":[3,123]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorW","features":[3,123]},{"name":"ConvertStringSidToSidA","features":[3,123]},{"name":"ConvertStringSidToSidW","features":[3,123]},{"name":"DENY_ACCESS","features":[123]},{"name":"EXPLICIT_ACCESS_A","features":[123]},{"name":"EXPLICIT_ACCESS_W","features":[123]},{"name":"FN_OBJECT_MGR_FUNCTS","features":[123]},{"name":"FN_PROGRESS","features":[3,123]},{"name":"FreeInheritedFromArray","features":[3,123]},{"name":"GRANT_ACCESS","features":[123]},{"name":"GetAuditedPermissionsFromAclA","features":[3,123]},{"name":"GetAuditedPermissionsFromAclW","features":[3,123]},{"name":"GetEffectiveRightsFromAclA","features":[3,123]},{"name":"GetEffectiveRightsFromAclW","features":[3,123]},{"name":"GetExplicitEntriesFromAclA","features":[3,123]},{"name":"GetExplicitEntriesFromAclW","features":[3,123]},{"name":"GetInheritanceSourceA","features":[3,123]},{"name":"GetInheritanceSourceW","features":[3,123]},{"name":"GetMultipleTrusteeA","features":[123]},{"name":"GetMultipleTrusteeOperationA","features":[123]},{"name":"GetMultipleTrusteeOperationW","features":[123]},{"name":"GetMultipleTrusteeW","features":[123]},{"name":"GetNamedSecurityInfoA","features":[3,123]},{"name":"GetNamedSecurityInfoW","features":[3,123]},{"name":"GetSecurityInfo","features":[3,123]},{"name":"GetTrusteeFormA","features":[123]},{"name":"GetTrusteeFormW","features":[123]},{"name":"GetTrusteeNameA","features":[123]},{"name":"GetTrusteeNameW","features":[123]},{"name":"GetTrusteeTypeA","features":[123]},{"name":"GetTrusteeTypeW","features":[123]},{"name":"IAzApplication","features":[123]},{"name":"IAzApplication2","features":[123]},{"name":"IAzApplication3","features":[123]},{"name":"IAzApplicationGroup","features":[123]},{"name":"IAzApplicationGroup2","features":[123]},{"name":"IAzApplicationGroups","features":[123]},{"name":"IAzApplications","features":[123]},{"name":"IAzAuthorizationStore","features":[123]},{"name":"IAzAuthorizationStore2","features":[123]},{"name":"IAzAuthorizationStore3","features":[123]},{"name":"IAzBizRuleContext","features":[123]},{"name":"IAzBizRuleInterfaces","features":[123]},{"name":"IAzBizRuleParameters","features":[123]},{"name":"IAzClientContext","features":[123]},{"name":"IAzClientContext2","features":[123]},{"name":"IAzClientContext3","features":[123]},{"name":"IAzNameResolver","features":[123]},{"name":"IAzObjectPicker","features":[123]},{"name":"IAzOperation","features":[123]},{"name":"IAzOperation2","features":[123]},{"name":"IAzOperations","features":[123]},{"name":"IAzPrincipalLocator","features":[123]},{"name":"IAzRole","features":[123]},{"name":"IAzRoleAssignment","features":[123]},{"name":"IAzRoleAssignments","features":[123]},{"name":"IAzRoleDefinition","features":[123]},{"name":"IAzRoleDefinitions","features":[123]},{"name":"IAzRoles","features":[123]},{"name":"IAzScope","features":[123]},{"name":"IAzScope2","features":[123]},{"name":"IAzScopes","features":[123]},{"name":"IAzTask","features":[123]},{"name":"IAzTask2","features":[123]},{"name":"IAzTasks","features":[123]},{"name":"INHERITED_ACCESS_ENTRY","features":[123]},{"name":"INHERITED_FROMA","features":[123]},{"name":"INHERITED_FROMW","features":[123]},{"name":"INHERITED_GRANDPARENT","features":[123]},{"name":"INHERITED_PARENT","features":[123]},{"name":"LookupSecurityDescriptorPartsA","features":[3,123]},{"name":"LookupSecurityDescriptorPartsW","features":[3,123]},{"name":"MULTIPLE_TRUSTEE_OPERATION","features":[123]},{"name":"NOT_USED_ACCESS","features":[123]},{"name":"NO_MULTIPLE_TRUSTEE","features":[123]},{"name":"OBJECTS_AND_NAME_A","features":[123]},{"name":"OBJECTS_AND_NAME_W","features":[123]},{"name":"OBJECTS_AND_SID","features":[123]},{"name":"OLESCRIPT_E_SYNTAX","features":[123]},{"name":"PFN_AUTHZ_COMPUTE_DYNAMIC_GROUPS","features":[3,123]},{"name":"PFN_AUTHZ_DYNAMIC_ACCESS_CHECK","features":[3,123]},{"name":"PFN_AUTHZ_FREE_CENTRAL_ACCESS_POLICY","features":[123]},{"name":"PFN_AUTHZ_FREE_DYNAMIC_GROUPS","features":[123]},{"name":"PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY","features":[3,123]},{"name":"PROG_INVOKE_SETTING","features":[123]},{"name":"ProgressCancelOperation","features":[123]},{"name":"ProgressInvokeEveryObject","features":[123]},{"name":"ProgressInvokeNever","features":[123]},{"name":"ProgressInvokeOnError","features":[123]},{"name":"ProgressInvokePrePostError","features":[123]},{"name":"ProgressRetryOperation","features":[123]},{"name":"REVOKE_ACCESS","features":[123]},{"name":"SDDL_ACCESS_ALLOWED","features":[123]},{"name":"SDDL_ACCESS_CONTROL_ASSISTANCE_OPS","features":[123]},{"name":"SDDL_ACCESS_DENIED","features":[123]},{"name":"SDDL_ACCESS_FILTER","features":[123]},{"name":"SDDL_ACCOUNT_OPERATORS","features":[123]},{"name":"SDDL_ACE_BEGIN","features":[123]},{"name":"SDDL_ACE_COND_ATTRIBUTE_PREFIX","features":[123]},{"name":"SDDL_ACE_COND_BEGIN","features":[123]},{"name":"SDDL_ACE_COND_BLOB_PREFIX","features":[123]},{"name":"SDDL_ACE_COND_DEVICE_ATTRIBUTE_PREFIX","features":[123]},{"name":"SDDL_ACE_COND_END","features":[123]},{"name":"SDDL_ACE_COND_RESOURCE_ATTRIBUTE_PREFIX","features":[123]},{"name":"SDDL_ACE_COND_SID_PREFIX","features":[123]},{"name":"SDDL_ACE_COND_TOKEN_ATTRIBUTE_PREFIX","features":[123]},{"name":"SDDL_ACE_COND_USER_ATTRIBUTE_PREFIX","features":[123]},{"name":"SDDL_ACE_END","features":[123]},{"name":"SDDL_ALARM","features":[123]},{"name":"SDDL_ALIAS_PREW2KCOMPACC","features":[123]},{"name":"SDDL_ALIAS_SIZE","features":[123]},{"name":"SDDL_ALL_APP_PACKAGES","features":[123]},{"name":"SDDL_ANONYMOUS","features":[123]},{"name":"SDDL_AUDIT","features":[123]},{"name":"SDDL_AUDIT_FAILURE","features":[123]},{"name":"SDDL_AUDIT_SUCCESS","features":[123]},{"name":"SDDL_AUTHENTICATED_USERS","features":[123]},{"name":"SDDL_AUTHORITY_ASSERTED","features":[123]},{"name":"SDDL_AUTO_INHERITED","features":[123]},{"name":"SDDL_AUTO_INHERIT_REQ","features":[123]},{"name":"SDDL_BACKUP_OPERATORS","features":[123]},{"name":"SDDL_BLOB","features":[123]},{"name":"SDDL_BOOLEAN","features":[123]},{"name":"SDDL_BUILTIN_ADMINISTRATORS","features":[123]},{"name":"SDDL_BUILTIN_GUESTS","features":[123]},{"name":"SDDL_BUILTIN_USERS","features":[123]},{"name":"SDDL_CALLBACK_ACCESS_ALLOWED","features":[123]},{"name":"SDDL_CALLBACK_ACCESS_DENIED","features":[123]},{"name":"SDDL_CALLBACK_AUDIT","features":[123]},{"name":"SDDL_CALLBACK_OBJECT_ACCESS_ALLOWED","features":[123]},{"name":"SDDL_CERTSVC_DCOM_ACCESS","features":[123]},{"name":"SDDL_CERT_SERV_ADMINISTRATORS","features":[123]},{"name":"SDDL_CLONEABLE_CONTROLLERS","features":[123]},{"name":"SDDL_CONTAINER_INHERIT","features":[123]},{"name":"SDDL_CONTROL_ACCESS","features":[123]},{"name":"SDDL_CREATE_CHILD","features":[123]},{"name":"SDDL_CREATOR_GROUP","features":[123]},{"name":"SDDL_CREATOR_OWNER","features":[123]},{"name":"SDDL_CRITICAL","features":[123]},{"name":"SDDL_CRYPTO_OPERATORS","features":[123]},{"name":"SDDL_DACL","features":[123]},{"name":"SDDL_DELETE_CHILD","features":[123]},{"name":"SDDL_DELETE_TREE","features":[123]},{"name":"SDDL_DELIMINATOR","features":[123]},{"name":"SDDL_DOMAIN_ADMINISTRATORS","features":[123]},{"name":"SDDL_DOMAIN_COMPUTERS","features":[123]},{"name":"SDDL_DOMAIN_DOMAIN_CONTROLLERS","features":[123]},{"name":"SDDL_DOMAIN_GUESTS","features":[123]},{"name":"SDDL_DOMAIN_USERS","features":[123]},{"name":"SDDL_ENTERPRISE_ADMINS","features":[123]},{"name":"SDDL_ENTERPRISE_DOMAIN_CONTROLLERS","features":[123]},{"name":"SDDL_ENTERPRISE_KEY_ADMINS","features":[123]},{"name":"SDDL_ENTERPRISE_RO_DCs","features":[123]},{"name":"SDDL_EVENT_LOG_READERS","features":[123]},{"name":"SDDL_EVERYONE","features":[123]},{"name":"SDDL_FILE_ALL","features":[123]},{"name":"SDDL_FILE_EXECUTE","features":[123]},{"name":"SDDL_FILE_READ","features":[123]},{"name":"SDDL_FILE_WRITE","features":[123]},{"name":"SDDL_GENERIC_ALL","features":[123]},{"name":"SDDL_GENERIC_EXECUTE","features":[123]},{"name":"SDDL_GENERIC_READ","features":[123]},{"name":"SDDL_GENERIC_WRITE","features":[123]},{"name":"SDDL_GROUP","features":[123]},{"name":"SDDL_GROUP_POLICY_ADMINS","features":[123]},{"name":"SDDL_HYPER_V_ADMINS","features":[123]},{"name":"SDDL_IIS_USERS","features":[123]},{"name":"SDDL_INHERITED","features":[123]},{"name":"SDDL_INHERIT_ONLY","features":[123]},{"name":"SDDL_INT","features":[123]},{"name":"SDDL_INTERACTIVE","features":[123]},{"name":"SDDL_KEY_ADMINS","features":[123]},{"name":"SDDL_KEY_ALL","features":[123]},{"name":"SDDL_KEY_EXECUTE","features":[123]},{"name":"SDDL_KEY_READ","features":[123]},{"name":"SDDL_KEY_WRITE","features":[123]},{"name":"SDDL_LIST_CHILDREN","features":[123]},{"name":"SDDL_LIST_OBJECT","features":[123]},{"name":"SDDL_LOCAL_ADMIN","features":[123]},{"name":"SDDL_LOCAL_GUEST","features":[123]},{"name":"SDDL_LOCAL_SERVICE","features":[123]},{"name":"SDDL_LOCAL_SYSTEM","features":[123]},{"name":"SDDL_MANDATORY_LABEL","features":[123]},{"name":"SDDL_ML_HIGH","features":[123]},{"name":"SDDL_ML_LOW","features":[123]},{"name":"SDDL_ML_MEDIUM","features":[123]},{"name":"SDDL_ML_MEDIUM_PLUS","features":[123]},{"name":"SDDL_ML_SYSTEM","features":[123]},{"name":"SDDL_NETWORK","features":[123]},{"name":"SDDL_NETWORK_CONFIGURATION_OPS","features":[123]},{"name":"SDDL_NETWORK_SERVICE","features":[123]},{"name":"SDDL_NO_EXECUTE_UP","features":[123]},{"name":"SDDL_NO_PROPAGATE","features":[123]},{"name":"SDDL_NO_READ_UP","features":[123]},{"name":"SDDL_NO_WRITE_UP","features":[123]},{"name":"SDDL_NULL_ACL","features":[123]},{"name":"SDDL_OBJECT_ACCESS_ALLOWED","features":[123]},{"name":"SDDL_OBJECT_ACCESS_DENIED","features":[123]},{"name":"SDDL_OBJECT_ALARM","features":[123]},{"name":"SDDL_OBJECT_AUDIT","features":[123]},{"name":"SDDL_OBJECT_INHERIT","features":[123]},{"name":"SDDL_OWNER","features":[123]},{"name":"SDDL_OWNER_RIGHTS","features":[123]},{"name":"SDDL_PERFLOG_USERS","features":[123]},{"name":"SDDL_PERFMON_USERS","features":[123]},{"name":"SDDL_PERSONAL_SELF","features":[123]},{"name":"SDDL_POWER_USERS","features":[123]},{"name":"SDDL_PRINTER_OPERATORS","features":[123]},{"name":"SDDL_PROCESS_TRUST_LABEL","features":[123]},{"name":"SDDL_PROTECTED","features":[123]},{"name":"SDDL_PROTECTED_USERS","features":[123]},{"name":"SDDL_RAS_SERVERS","features":[123]},{"name":"SDDL_RDS_ENDPOINT_SERVERS","features":[123]},{"name":"SDDL_RDS_MANAGEMENT_SERVERS","features":[123]},{"name":"SDDL_RDS_REMOTE_ACCESS_SERVERS","features":[123]},{"name":"SDDL_READ_CONTROL","features":[123]},{"name":"SDDL_READ_PROPERTY","features":[123]},{"name":"SDDL_REMOTE_DESKTOP","features":[123]},{"name":"SDDL_REMOTE_MANAGEMENT_USERS","features":[123]},{"name":"SDDL_REPLICATOR","features":[123]},{"name":"SDDL_RESOURCE_ATTRIBUTE","features":[123]},{"name":"SDDL_RESTRICTED_CODE","features":[123]},{"name":"SDDL_REVISION","features":[123]},{"name":"SDDL_REVISION_1","features":[123]},{"name":"SDDL_SACL","features":[123]},{"name":"SDDL_SCHEMA_ADMINISTRATORS","features":[123]},{"name":"SDDL_SCOPED_POLICY_ID","features":[123]},{"name":"SDDL_SELF_WRITE","features":[123]},{"name":"SDDL_SEPERATOR","features":[123]},{"name":"SDDL_SERVER_OPERATORS","features":[123]},{"name":"SDDL_SERVICE","features":[123]},{"name":"SDDL_SERVICE_ASSERTED","features":[123]},{"name":"SDDL_SID","features":[123]},{"name":"SDDL_SPACE","features":[123]},{"name":"SDDL_STANDARD_DELETE","features":[123]},{"name":"SDDL_TRUST_PROTECTED_FILTER","features":[123]},{"name":"SDDL_UINT","features":[123]},{"name":"SDDL_USER_MODE_DRIVERS","features":[123]},{"name":"SDDL_WRITE_DAC","features":[123]},{"name":"SDDL_WRITE_OWNER","features":[123]},{"name":"SDDL_WRITE_PROPERTY","features":[123]},{"name":"SDDL_WRITE_RESTRICTED_CODE","features":[123]},{"name":"SDDL_WSTRING","features":[123]},{"name":"SET_ACCESS","features":[123]},{"name":"SET_AUDIT_FAILURE","features":[123]},{"name":"SET_AUDIT_SUCCESS","features":[123]},{"name":"SE_DS_OBJECT","features":[123]},{"name":"SE_DS_OBJECT_ALL","features":[123]},{"name":"SE_FILE_OBJECT","features":[123]},{"name":"SE_KERNEL_OBJECT","features":[123]},{"name":"SE_LMSHARE","features":[123]},{"name":"SE_OBJECT_TYPE","features":[123]},{"name":"SE_PRINTER","features":[123]},{"name":"SE_PROVIDER_DEFINED_OBJECT","features":[123]},{"name":"SE_REGISTRY_KEY","features":[123]},{"name":"SE_REGISTRY_WOW64_32KEY","features":[123]},{"name":"SE_REGISTRY_WOW64_64KEY","features":[123]},{"name":"SE_SERVICE","features":[123]},{"name":"SE_UNKNOWN_OBJECT_TYPE","features":[123]},{"name":"SE_WINDOW_OBJECT","features":[123]},{"name":"SE_WMIGUID_OBJECT","features":[123]},{"name":"SetEntriesInAclA","features":[3,123]},{"name":"SetEntriesInAclW","features":[3,123]},{"name":"SetNamedSecurityInfoA","features":[3,123]},{"name":"SetNamedSecurityInfoW","features":[3,123]},{"name":"SetSecurityInfo","features":[3,123]},{"name":"TREE_SEC_INFO","features":[123]},{"name":"TREE_SEC_INFO_RESET","features":[123]},{"name":"TREE_SEC_INFO_RESET_KEEP_EXPLICIT","features":[123]},{"name":"TREE_SEC_INFO_SET","features":[123]},{"name":"TRUSTEE_A","features":[123]},{"name":"TRUSTEE_ACCESSA","features":[123]},{"name":"TRUSTEE_ACCESSW","features":[123]},{"name":"TRUSTEE_ACCESS_ALL","features":[123]},{"name":"TRUSTEE_ACCESS_ALLOWED","features":[123]},{"name":"TRUSTEE_ACCESS_EXPLICIT","features":[123]},{"name":"TRUSTEE_ACCESS_READ","features":[123]},{"name":"TRUSTEE_ACCESS_WRITE","features":[123]},{"name":"TRUSTEE_BAD_FORM","features":[123]},{"name":"TRUSTEE_FORM","features":[123]},{"name":"TRUSTEE_IS_ALIAS","features":[123]},{"name":"TRUSTEE_IS_COMPUTER","features":[123]},{"name":"TRUSTEE_IS_DELETED","features":[123]},{"name":"TRUSTEE_IS_DOMAIN","features":[123]},{"name":"TRUSTEE_IS_GROUP","features":[123]},{"name":"TRUSTEE_IS_IMPERSONATE","features":[123]},{"name":"TRUSTEE_IS_INVALID","features":[123]},{"name":"TRUSTEE_IS_NAME","features":[123]},{"name":"TRUSTEE_IS_OBJECTS_AND_NAME","features":[123]},{"name":"TRUSTEE_IS_OBJECTS_AND_SID","features":[123]},{"name":"TRUSTEE_IS_SID","features":[123]},{"name":"TRUSTEE_IS_UNKNOWN","features":[123]},{"name":"TRUSTEE_IS_USER","features":[123]},{"name":"TRUSTEE_IS_WELL_KNOWN_GROUP","features":[123]},{"name":"TRUSTEE_TYPE","features":[123]},{"name":"TRUSTEE_W","features":[123]},{"name":"TreeResetNamedSecurityInfoA","features":[3,123]},{"name":"TreeResetNamedSecurityInfoW","features":[3,123]},{"name":"TreeSetNamedSecurityInfoA","features":[3,123]},{"name":"TreeSetNamedSecurityInfoW","features":[3,123]},{"name":"_AUTHZ_SS_MAXSIZE","features":[123]}],"488":[{"name":"BINARY_BLOB_CREDENTIAL_INFO","features":[121]},{"name":"BinaryBlobCredential","features":[121]},{"name":"BinaryBlobForSystem","features":[121]},{"name":"CERT_CREDENTIAL_INFO","features":[121]},{"name":"CERT_HASH_LENGTH","features":[121]},{"name":"CREDENTIALA","features":[3,121]},{"name":"CREDENTIALW","features":[3,121]},{"name":"CREDENTIAL_ATTRIBUTEA","features":[121]},{"name":"CREDENTIAL_ATTRIBUTEW","features":[121]},{"name":"CREDENTIAL_TARGET_INFORMATIONA","features":[121]},{"name":"CREDENTIAL_TARGET_INFORMATIONW","features":[121]},{"name":"CREDSPP_SUBMIT_TYPE","features":[121]},{"name":"CREDSSP_CRED","features":[121]},{"name":"CREDSSP_CRED_EX","features":[121]},{"name":"CREDSSP_CRED_EX_VERSION","features":[121]},{"name":"CREDSSP_FLAG_REDIRECT","features":[121]},{"name":"CREDSSP_NAME","features":[121]},{"name":"CREDSSP_SERVER_AUTH_CERTIFICATE","features":[121]},{"name":"CREDSSP_SERVER_AUTH_LOOPBACK","features":[121]},{"name":"CREDSSP_SERVER_AUTH_NEGOTIATE","features":[121]},{"name":"CREDUIWIN_AUTHPACKAGE_ONLY","features":[121]},{"name":"CREDUIWIN_CHECKBOX","features":[121]},{"name":"CREDUIWIN_DOWNLEVEL_HELLO_AS_SMART_CARD","features":[121]},{"name":"CREDUIWIN_ENUMERATE_ADMINS","features":[121]},{"name":"CREDUIWIN_ENUMERATE_CURRENT_USER","features":[121]},{"name":"CREDUIWIN_FLAGS","features":[121]},{"name":"CREDUIWIN_GENERIC","features":[121]},{"name":"CREDUIWIN_IGNORE_CLOUDAUTHORITY_NAME","features":[121]},{"name":"CREDUIWIN_IN_CRED_ONLY","features":[121]},{"name":"CREDUIWIN_PACK_32_WOW","features":[121]},{"name":"CREDUIWIN_PREPROMPTING","features":[121]},{"name":"CREDUIWIN_SECURE_PROMPT","features":[121]},{"name":"CREDUI_FLAGS","features":[121]},{"name":"CREDUI_FLAGS_ALWAYS_SHOW_UI","features":[121]},{"name":"CREDUI_FLAGS_COMPLETE_USERNAME","features":[121]},{"name":"CREDUI_FLAGS_DO_NOT_PERSIST","features":[121]},{"name":"CREDUI_FLAGS_EXCLUDE_CERTIFICATES","features":[121]},{"name":"CREDUI_FLAGS_EXPECT_CONFIRMATION","features":[121]},{"name":"CREDUI_FLAGS_GENERIC_CREDENTIALS","features":[121]},{"name":"CREDUI_FLAGS_INCORRECT_PASSWORD","features":[121]},{"name":"CREDUI_FLAGS_KEEP_USERNAME","features":[121]},{"name":"CREDUI_FLAGS_PASSWORD_ONLY_OK","features":[121]},{"name":"CREDUI_FLAGS_PERSIST","features":[121]},{"name":"CREDUI_FLAGS_REQUEST_ADMINISTRATOR","features":[121]},{"name":"CREDUI_FLAGS_REQUIRE_CERTIFICATE","features":[121]},{"name":"CREDUI_FLAGS_REQUIRE_SMARTCARD","features":[121]},{"name":"CREDUI_FLAGS_SERVER_CREDENTIAL","features":[121]},{"name":"CREDUI_FLAGS_SHOW_SAVE_CHECK_BOX","features":[121]},{"name":"CREDUI_FLAGS_USERNAME_TARGET_CREDENTIALS","features":[121]},{"name":"CREDUI_FLAGS_VALIDATE_USERNAME","features":[121]},{"name":"CREDUI_INFOA","features":[3,14,121]},{"name":"CREDUI_INFOW","features":[3,14,121]},{"name":"CREDUI_MAX_CAPTION_LENGTH","features":[121]},{"name":"CREDUI_MAX_DOMAIN_TARGET_LENGTH","features":[121]},{"name":"CREDUI_MAX_GENERIC_TARGET_LENGTH","features":[121]},{"name":"CREDUI_MAX_MESSAGE_LENGTH","features":[121]},{"name":"CREDUI_MAX_USERNAME_LENGTH","features":[121]},{"name":"CRED_ALLOW_NAME_RESOLUTION","features":[121]},{"name":"CRED_CACHE_TARGET_INFORMATION","features":[121]},{"name":"CRED_ENUMERATE_ALL_CREDENTIALS","features":[121]},{"name":"CRED_ENUMERATE_FLAGS","features":[121]},{"name":"CRED_FLAGS","features":[121]},{"name":"CRED_FLAGS_NGC_CERT","features":[121]},{"name":"CRED_FLAGS_OWF_CRED_BLOB","features":[121]},{"name":"CRED_FLAGS_PASSWORD_FOR_CERT","features":[121]},{"name":"CRED_FLAGS_PROMPT_NOW","features":[121]},{"name":"CRED_FLAGS_REQUIRE_CONFIRMATION","features":[121]},{"name":"CRED_FLAGS_USERNAME_TARGET","features":[121]},{"name":"CRED_FLAGS_VALID_FLAGS","features":[121]},{"name":"CRED_FLAGS_VALID_INPUT_FLAGS","features":[121]},{"name":"CRED_FLAGS_VSM_PROTECTED","features":[121]},{"name":"CRED_FLAGS_WILDCARD_MATCH","features":[121]},{"name":"CRED_LOGON_TYPES_MASK","features":[121]},{"name":"CRED_MARSHAL_TYPE","features":[121]},{"name":"CRED_MAX_ATTRIBUTES","features":[121]},{"name":"CRED_MAX_CREDENTIAL_BLOB_SIZE","features":[121]},{"name":"CRED_MAX_DOMAIN_TARGET_NAME_LENGTH","features":[121]},{"name":"CRED_MAX_GENERIC_TARGET_NAME_LENGTH","features":[121]},{"name":"CRED_MAX_STRING_LENGTH","features":[121]},{"name":"CRED_MAX_TARGETNAME_ATTRIBUTE_LENGTH","features":[121]},{"name":"CRED_MAX_TARGETNAME_NAMESPACE_LENGTH","features":[121]},{"name":"CRED_MAX_USERNAME_LENGTH","features":[121]},{"name":"CRED_MAX_VALUE_SIZE","features":[121]},{"name":"CRED_PACK_FLAGS","features":[121]},{"name":"CRED_PACK_GENERIC_CREDENTIALS","features":[121]},{"name":"CRED_PACK_ID_PROVIDER_CREDENTIALS","features":[121]},{"name":"CRED_PACK_PROTECTED_CREDENTIALS","features":[121]},{"name":"CRED_PACK_WOW_BUFFER","features":[121]},{"name":"CRED_PERSIST","features":[121]},{"name":"CRED_PERSIST_ENTERPRISE","features":[121]},{"name":"CRED_PERSIST_LOCAL_MACHINE","features":[121]},{"name":"CRED_PERSIST_NONE","features":[121]},{"name":"CRED_PERSIST_SESSION","features":[121]},{"name":"CRED_PRESERVE_CREDENTIAL_BLOB","features":[121]},{"name":"CRED_PROTECTION_TYPE","features":[121]},{"name":"CRED_PROTECT_AS_SELF","features":[121]},{"name":"CRED_PROTECT_TO_SYSTEM","features":[121]},{"name":"CRED_SESSION_WILDCARD_NAME","features":[121]},{"name":"CRED_SESSION_WILDCARD_NAME_A","features":[121]},{"name":"CRED_SESSION_WILDCARD_NAME_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_W","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_A","features":[121]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_W","features":[121]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE","features":[121]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_A","features":[121]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_W","features":[121]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_A","features":[121]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_W","features":[121]},{"name":"CRED_TI_CREATE_EXPLICIT_CRED","features":[121]},{"name":"CRED_TI_DNSTREE_IS_DFS_SERVER","features":[121]},{"name":"CRED_TI_DOMAIN_FORMAT_UNKNOWN","features":[121]},{"name":"CRED_TI_ONLY_PASSWORD_REQUIRED","features":[121]},{"name":"CRED_TI_SERVER_FORMAT_UNKNOWN","features":[121]},{"name":"CRED_TI_USERNAME_TARGET","features":[121]},{"name":"CRED_TI_VALID_FLAGS","features":[121]},{"name":"CRED_TI_WORKGROUP_MEMBER","features":[121]},{"name":"CRED_TYPE","features":[121]},{"name":"CRED_TYPE_DOMAIN_CERTIFICATE","features":[121]},{"name":"CRED_TYPE_DOMAIN_EXTENDED","features":[121]},{"name":"CRED_TYPE_DOMAIN_PASSWORD","features":[121]},{"name":"CRED_TYPE_DOMAIN_VISIBLE_PASSWORD","features":[121]},{"name":"CRED_TYPE_GENERIC","features":[121]},{"name":"CRED_TYPE_GENERIC_CERTIFICATE","features":[121]},{"name":"CRED_TYPE_MAXIMUM","features":[121]},{"name":"CRED_TYPE_MAXIMUM_EX","features":[121]},{"name":"CRED_UNPROTECT_ALLOW_TO_SYSTEM","features":[121]},{"name":"CRED_UNPROTECT_AS_SELF","features":[121]},{"name":"CertCredential","features":[121]},{"name":"CredDeleteA","features":[3,121]},{"name":"CredDeleteW","features":[3,121]},{"name":"CredEnumerateA","features":[3,121]},{"name":"CredEnumerateW","features":[3,121]},{"name":"CredFindBestCredentialA","features":[3,121]},{"name":"CredFindBestCredentialW","features":[3,121]},{"name":"CredForSystemProtection","features":[121]},{"name":"CredFree","features":[121]},{"name":"CredGetSessionTypes","features":[3,121]},{"name":"CredGetTargetInfoA","features":[3,121]},{"name":"CredGetTargetInfoW","features":[3,121]},{"name":"CredIsMarshaledCredentialA","features":[3,121]},{"name":"CredIsMarshaledCredentialW","features":[3,121]},{"name":"CredIsProtectedA","features":[3,121]},{"name":"CredIsProtectedW","features":[3,121]},{"name":"CredMarshalCredentialA","features":[3,121]},{"name":"CredMarshalCredentialW","features":[3,121]},{"name":"CredPackAuthenticationBufferA","features":[3,121]},{"name":"CredPackAuthenticationBufferW","features":[3,121]},{"name":"CredProtectA","features":[3,121]},{"name":"CredProtectW","features":[3,121]},{"name":"CredReadA","features":[3,121]},{"name":"CredReadDomainCredentialsA","features":[3,121]},{"name":"CredReadDomainCredentialsW","features":[3,121]},{"name":"CredReadW","features":[3,121]},{"name":"CredRenameA","features":[3,121]},{"name":"CredRenameW","features":[3,121]},{"name":"CredTrustedProtection","features":[121]},{"name":"CredUICmdLinePromptForCredentialsA","features":[3,121]},{"name":"CredUICmdLinePromptForCredentialsW","features":[3,121]},{"name":"CredUIConfirmCredentialsA","features":[3,121]},{"name":"CredUIConfirmCredentialsW","features":[3,121]},{"name":"CredUIParseUserNameA","features":[3,121]},{"name":"CredUIParseUserNameW","features":[3,121]},{"name":"CredUIPromptForCredentialsA","features":[3,14,121]},{"name":"CredUIPromptForCredentialsW","features":[3,14,121]},{"name":"CredUIPromptForWindowsCredentialsA","features":[3,14,121]},{"name":"CredUIPromptForWindowsCredentialsW","features":[3,14,121]},{"name":"CredUIReadSSOCredW","features":[121]},{"name":"CredUIStoreSSOCredW","features":[3,121]},{"name":"CredUnPackAuthenticationBufferA","features":[3,121]},{"name":"CredUnPackAuthenticationBufferW","features":[3,121]},{"name":"CredUnmarshalCredentialA","features":[3,121]},{"name":"CredUnmarshalCredentialW","features":[3,121]},{"name":"CredUnprotectA","features":[3,121]},{"name":"CredUnprotectW","features":[3,121]},{"name":"CredUnprotected","features":[121]},{"name":"CredUserProtection","features":[121]},{"name":"CredWriteA","features":[3,121]},{"name":"CredWriteDomainCredentialsA","features":[3,121]},{"name":"CredWriteDomainCredentialsW","features":[3,121]},{"name":"CredWriteW","features":[3,121]},{"name":"CredsspCertificateCreds","features":[121]},{"name":"CredsspCredEx","features":[121]},{"name":"CredsspPasswordCreds","features":[121]},{"name":"CredsspSchannelCreds","features":[121]},{"name":"CredsspSubmitBufferBoth","features":[121]},{"name":"CredsspSubmitBufferBothOld","features":[121]},{"name":"FILE_DEVICE_SMARTCARD","features":[121]},{"name":"GUID_DEVINTERFACE_SMARTCARD_READER","features":[121]},{"name":"GetOpenCardNameA","features":[3,121]},{"name":"GetOpenCardNameW","features":[3,121]},{"name":"KeyCredentialManagerFreeInformation","features":[121]},{"name":"KeyCredentialManagerGetInformation","features":[121]},{"name":"KeyCredentialManagerGetOperationErrorStates","features":[3,121]},{"name":"KeyCredentialManagerInfo","features":[121]},{"name":"KeyCredentialManagerOperationErrorStateCertificateFailure","features":[121]},{"name":"KeyCredentialManagerOperationErrorStateDeviceJoinFailure","features":[121]},{"name":"KeyCredentialManagerOperationErrorStateHardwareFailure","features":[121]},{"name":"KeyCredentialManagerOperationErrorStateNone","features":[121]},{"name":"KeyCredentialManagerOperationErrorStatePinExistsFailure","features":[121]},{"name":"KeyCredentialManagerOperationErrorStatePolicyFailure","features":[121]},{"name":"KeyCredentialManagerOperationErrorStateRemoteSessionFailure","features":[121]},{"name":"KeyCredentialManagerOperationErrorStateTokenFailure","features":[121]},{"name":"KeyCredentialManagerOperationErrorStates","features":[121]},{"name":"KeyCredentialManagerOperationType","features":[121]},{"name":"KeyCredentialManagerPinChange","features":[121]},{"name":"KeyCredentialManagerPinReset","features":[121]},{"name":"KeyCredentialManagerProvisioning","features":[121]},{"name":"KeyCredentialManagerShowUIOperation","features":[3,121]},{"name":"LPOCNCHKPROC","features":[3,121]},{"name":"LPOCNCONNPROCA","features":[121]},{"name":"LPOCNCONNPROCW","features":[121]},{"name":"LPOCNDSCPROC","features":[121]},{"name":"MAXIMUM_ATTR_STRING_LENGTH","features":[121]},{"name":"MAXIMUM_SMARTCARD_READERS","features":[121]},{"name":"OPENCARDNAMEA","features":[3,121]},{"name":"OPENCARDNAMEW","features":[3,121]},{"name":"OPENCARDNAME_EXA","features":[3,121,52]},{"name":"OPENCARDNAME_EXW","features":[3,121,52]},{"name":"OPENCARD_SEARCH_CRITERIAA","features":[3,121]},{"name":"OPENCARD_SEARCH_CRITERIAW","features":[3,121]},{"name":"READER_SEL_REQUEST","features":[121]},{"name":"READER_SEL_REQUEST_MATCH_TYPE","features":[121]},{"name":"READER_SEL_RESPONSE","features":[121]},{"name":"RSR_MATCH_TYPE_ALL_CARDS","features":[121]},{"name":"RSR_MATCH_TYPE_READER_AND_CONTAINER","features":[121]},{"name":"RSR_MATCH_TYPE_SERIAL_NUMBER","features":[121]},{"name":"SCARD_ABSENT","features":[121]},{"name":"SCARD_ALL_READERS","features":[121]},{"name":"SCARD_ATRMASK","features":[121]},{"name":"SCARD_ATR_LENGTH","features":[121]},{"name":"SCARD_AUDIT_CHV_FAILURE","features":[121]},{"name":"SCARD_AUDIT_CHV_SUCCESS","features":[121]},{"name":"SCARD_CLASS_COMMUNICATIONS","features":[121]},{"name":"SCARD_CLASS_ICC_STATE","features":[121]},{"name":"SCARD_CLASS_IFD_PROTOCOL","features":[121]},{"name":"SCARD_CLASS_MECHANICAL","features":[121]},{"name":"SCARD_CLASS_PERF","features":[121]},{"name":"SCARD_CLASS_POWER_MGMT","features":[121]},{"name":"SCARD_CLASS_PROTOCOL","features":[121]},{"name":"SCARD_CLASS_SECURITY","features":[121]},{"name":"SCARD_CLASS_SYSTEM","features":[121]},{"name":"SCARD_CLASS_VENDOR_DEFINED","features":[121]},{"name":"SCARD_CLASS_VENDOR_INFO","features":[121]},{"name":"SCARD_COLD_RESET","features":[121]},{"name":"SCARD_DEFAULT_READERS","features":[121]},{"name":"SCARD_EJECT_CARD","features":[121]},{"name":"SCARD_IO_REQUEST","features":[121]},{"name":"SCARD_LEAVE_CARD","features":[121]},{"name":"SCARD_LOCAL_READERS","features":[121]},{"name":"SCARD_NEGOTIABLE","features":[121]},{"name":"SCARD_POWERED","features":[121]},{"name":"SCARD_POWER_DOWN","features":[121]},{"name":"SCARD_PRESENT","features":[121]},{"name":"SCARD_PROTOCOL_DEFAULT","features":[121]},{"name":"SCARD_PROTOCOL_OPTIMAL","features":[121]},{"name":"SCARD_PROTOCOL_RAW","features":[121]},{"name":"SCARD_PROTOCOL_T0","features":[121]},{"name":"SCARD_PROTOCOL_T1","features":[121]},{"name":"SCARD_PROTOCOL_UNDEFINED","features":[121]},{"name":"SCARD_PROVIDER_CSP","features":[121]},{"name":"SCARD_PROVIDER_KSP","features":[121]},{"name":"SCARD_PROVIDER_PRIMARY","features":[121]},{"name":"SCARD_READERSTATEA","features":[121]},{"name":"SCARD_READERSTATEW","features":[121]},{"name":"SCARD_READER_CONFISCATES","features":[121]},{"name":"SCARD_READER_CONTACTLESS","features":[121]},{"name":"SCARD_READER_EJECTS","features":[121]},{"name":"SCARD_READER_SWALLOWS","features":[121]},{"name":"SCARD_READER_TYPE_EMBEDDEDSE","features":[121]},{"name":"SCARD_READER_TYPE_IDE","features":[121]},{"name":"SCARD_READER_TYPE_KEYBOARD","features":[121]},{"name":"SCARD_READER_TYPE_NFC","features":[121]},{"name":"SCARD_READER_TYPE_NGC","features":[121]},{"name":"SCARD_READER_TYPE_PARALELL","features":[121]},{"name":"SCARD_READER_TYPE_PCMCIA","features":[121]},{"name":"SCARD_READER_TYPE_SCSI","features":[121]},{"name":"SCARD_READER_TYPE_SERIAL","features":[121]},{"name":"SCARD_READER_TYPE_TPM","features":[121]},{"name":"SCARD_READER_TYPE_UICC","features":[121]},{"name":"SCARD_READER_TYPE_USB","features":[121]},{"name":"SCARD_READER_TYPE_VENDOR","features":[121]},{"name":"SCARD_RESET_CARD","features":[121]},{"name":"SCARD_SCOPE","features":[121]},{"name":"SCARD_SCOPE_SYSTEM","features":[121]},{"name":"SCARD_SCOPE_TERMINAL","features":[121]},{"name":"SCARD_SCOPE_USER","features":[121]},{"name":"SCARD_SHARE_DIRECT","features":[121]},{"name":"SCARD_SHARE_EXCLUSIVE","features":[121]},{"name":"SCARD_SHARE_SHARED","features":[121]},{"name":"SCARD_SPECIFIC","features":[121]},{"name":"SCARD_STATE","features":[121]},{"name":"SCARD_STATE_ATRMATCH","features":[121]},{"name":"SCARD_STATE_CHANGED","features":[121]},{"name":"SCARD_STATE_EMPTY","features":[121]},{"name":"SCARD_STATE_EXCLUSIVE","features":[121]},{"name":"SCARD_STATE_IGNORE","features":[121]},{"name":"SCARD_STATE_INUSE","features":[121]},{"name":"SCARD_STATE_MUTE","features":[121]},{"name":"SCARD_STATE_PRESENT","features":[121]},{"name":"SCARD_STATE_UNAVAILABLE","features":[121]},{"name":"SCARD_STATE_UNAWARE","features":[121]},{"name":"SCARD_STATE_UNKNOWN","features":[121]},{"name":"SCARD_STATE_UNPOWERED","features":[121]},{"name":"SCARD_SWALLOWED","features":[121]},{"name":"SCARD_SYSTEM_READERS","features":[121]},{"name":"SCARD_T0_CMD_LENGTH","features":[121]},{"name":"SCARD_T0_COMMAND","features":[121]},{"name":"SCARD_T0_HEADER_LENGTH","features":[121]},{"name":"SCARD_T0_REQUEST","features":[121]},{"name":"SCARD_T1_EPILOGUE_LENGTH","features":[121]},{"name":"SCARD_T1_EPILOGUE_LENGTH_LRC","features":[121]},{"name":"SCARD_T1_MAX_IFS","features":[121]},{"name":"SCARD_T1_PROLOGUE_LENGTH","features":[121]},{"name":"SCARD_T1_REQUEST","features":[121]},{"name":"SCARD_UNKNOWN","features":[121]},{"name":"SCARD_UNPOWER_CARD","features":[121]},{"name":"SCARD_WARM_RESET","features":[121]},{"name":"SCERR_NOCARDNAME","features":[121]},{"name":"SCERR_NOGUIDS","features":[121]},{"name":"SC_DLG_FORCE_UI","features":[121]},{"name":"SC_DLG_MINIMAL_UI","features":[121]},{"name":"SC_DLG_NO_UI","features":[121]},{"name":"SCardAccessStartedEvent","features":[3,121]},{"name":"SCardAddReaderToGroupA","features":[121]},{"name":"SCardAddReaderToGroupW","features":[121]},{"name":"SCardAudit","features":[121]},{"name":"SCardBeginTransaction","features":[121]},{"name":"SCardCancel","features":[121]},{"name":"SCardConnectA","features":[121]},{"name":"SCardConnectW","features":[121]},{"name":"SCardControl","features":[121]},{"name":"SCardDisconnect","features":[121]},{"name":"SCardDlgExtendedError","features":[121]},{"name":"SCardEndTransaction","features":[121]},{"name":"SCardEstablishContext","features":[121]},{"name":"SCardForgetCardTypeA","features":[121]},{"name":"SCardForgetCardTypeW","features":[121]},{"name":"SCardForgetReaderA","features":[121]},{"name":"SCardForgetReaderGroupA","features":[121]},{"name":"SCardForgetReaderGroupW","features":[121]},{"name":"SCardForgetReaderW","features":[121]},{"name":"SCardFreeMemory","features":[121]},{"name":"SCardGetAttrib","features":[121]},{"name":"SCardGetCardTypeProviderNameA","features":[121]},{"name":"SCardGetCardTypeProviderNameW","features":[121]},{"name":"SCardGetDeviceTypeIdA","features":[121]},{"name":"SCardGetDeviceTypeIdW","features":[121]},{"name":"SCardGetProviderIdA","features":[121]},{"name":"SCardGetProviderIdW","features":[121]},{"name":"SCardGetReaderDeviceInstanceIdA","features":[121]},{"name":"SCardGetReaderDeviceInstanceIdW","features":[121]},{"name":"SCardGetReaderIconA","features":[121]},{"name":"SCardGetReaderIconW","features":[121]},{"name":"SCardGetStatusChangeA","features":[121]},{"name":"SCardGetStatusChangeW","features":[121]},{"name":"SCardGetTransmitCount","features":[121]},{"name":"SCardIntroduceCardTypeA","features":[121]},{"name":"SCardIntroduceCardTypeW","features":[121]},{"name":"SCardIntroduceReaderA","features":[121]},{"name":"SCardIntroduceReaderGroupA","features":[121]},{"name":"SCardIntroduceReaderGroupW","features":[121]},{"name":"SCardIntroduceReaderW","features":[121]},{"name":"SCardIsValidContext","features":[121]},{"name":"SCardListCardsA","features":[121]},{"name":"SCardListCardsW","features":[121]},{"name":"SCardListInterfacesA","features":[121]},{"name":"SCardListInterfacesW","features":[121]},{"name":"SCardListReaderGroupsA","features":[121]},{"name":"SCardListReaderGroupsW","features":[121]},{"name":"SCardListReadersA","features":[121]},{"name":"SCardListReadersW","features":[121]},{"name":"SCardListReadersWithDeviceInstanceIdA","features":[121]},{"name":"SCardListReadersWithDeviceInstanceIdW","features":[121]},{"name":"SCardLocateCardsA","features":[121]},{"name":"SCardLocateCardsByATRA","features":[121]},{"name":"SCardLocateCardsByATRW","features":[121]},{"name":"SCardLocateCardsW","features":[121]},{"name":"SCardReadCacheA","features":[121]},{"name":"SCardReadCacheW","features":[121]},{"name":"SCardReconnect","features":[121]},{"name":"SCardReleaseContext","features":[121]},{"name":"SCardReleaseStartedEvent","features":[121]},{"name":"SCardRemoveReaderFromGroupA","features":[121]},{"name":"SCardRemoveReaderFromGroupW","features":[121]},{"name":"SCardSetAttrib","features":[121]},{"name":"SCardSetCardTypeProviderNameA","features":[121]},{"name":"SCardSetCardTypeProviderNameW","features":[121]},{"name":"SCardState","features":[121]},{"name":"SCardStatusA","features":[121]},{"name":"SCardStatusW","features":[121]},{"name":"SCardTransmit","features":[121]},{"name":"SCardUIDlgSelectCardA","features":[3,121,52]},{"name":"SCardUIDlgSelectCardW","features":[3,121,52]},{"name":"SCardWriteCacheA","features":[121]},{"name":"SCardWriteCacheW","features":[121]},{"name":"SECPKG_ALT_ATTR","features":[121]},{"name":"SECPKG_ATTR_C_FULL_IDENT_TOKEN","features":[121]},{"name":"STATUS_ACCOUNT_DISABLED","features":[3,121]},{"name":"STATUS_ACCOUNT_EXPIRED","features":[3,121]},{"name":"STATUS_ACCOUNT_LOCKED_OUT","features":[3,121]},{"name":"STATUS_ACCOUNT_RESTRICTION","features":[3,121]},{"name":"STATUS_AUTHENTICATION_FIREWALL_FAILED","features":[3,121]},{"name":"STATUS_DOWNGRADE_DETECTED","features":[3,121]},{"name":"STATUS_LOGON_FAILURE","features":[3,121]},{"name":"STATUS_LOGON_TYPE_NOT_GRANTED","features":[3,121]},{"name":"STATUS_NO_SUCH_LOGON_SESSION","features":[3,121]},{"name":"STATUS_NO_SUCH_USER","features":[3,121]},{"name":"STATUS_PASSWORD_EXPIRED","features":[3,121]},{"name":"STATUS_PASSWORD_MUST_CHANGE","features":[3,121]},{"name":"STATUS_WRONG_PASSWORD","features":[3,121]},{"name":"SecHandle","features":[121]},{"name":"SecPkgContext_ClientCreds","features":[121]},{"name":"TS_SSP_NAME","features":[121]},{"name":"TS_SSP_NAME_A","features":[121]},{"name":"USERNAME_TARGET_CREDENTIAL_INFO","features":[121]},{"name":"UsernameForPackedCredentials","features":[121]},{"name":"UsernameTargetCredential","features":[121]},{"name":"szOID_TS_KP_TS_SERVER_AUTH","features":[121]}],"489":[{"name":"ALG_CLASS_ALL","features":[70]},{"name":"ALG_CLASS_ANY","features":[70]},{"name":"ALG_CLASS_DATA_ENCRYPT","features":[70]},{"name":"ALG_CLASS_HASH","features":[70]},{"name":"ALG_CLASS_KEY_EXCHANGE","features":[70]},{"name":"ALG_CLASS_MSG_ENCRYPT","features":[70]},{"name":"ALG_CLASS_SIGNATURE","features":[70]},{"name":"ALG_ID","features":[70]},{"name":"ALG_SID_3DES","features":[70]},{"name":"ALG_SID_3DES_112","features":[70]},{"name":"ALG_SID_AES","features":[70]},{"name":"ALG_SID_AES_128","features":[70]},{"name":"ALG_SID_AES_192","features":[70]},{"name":"ALG_SID_AES_256","features":[70]},{"name":"ALG_SID_AGREED_KEY_ANY","features":[70]},{"name":"ALG_SID_ANY","features":[70]},{"name":"ALG_SID_CAST","features":[70]},{"name":"ALG_SID_CYLINK_MEK","features":[70]},{"name":"ALG_SID_DES","features":[70]},{"name":"ALG_SID_DESX","features":[70]},{"name":"ALG_SID_DH_EPHEM","features":[70]},{"name":"ALG_SID_DH_SANDF","features":[70]},{"name":"ALG_SID_DSS_ANY","features":[70]},{"name":"ALG_SID_DSS_DMS","features":[70]},{"name":"ALG_SID_DSS_PKCS","features":[70]},{"name":"ALG_SID_ECDH","features":[70]},{"name":"ALG_SID_ECDH_EPHEM","features":[70]},{"name":"ALG_SID_ECDSA","features":[70]},{"name":"ALG_SID_ECMQV","features":[70]},{"name":"ALG_SID_EXAMPLE","features":[70]},{"name":"ALG_SID_HASH_REPLACE_OWF","features":[70]},{"name":"ALG_SID_HMAC","features":[70]},{"name":"ALG_SID_IDEA","features":[70]},{"name":"ALG_SID_KEA","features":[70]},{"name":"ALG_SID_MAC","features":[70]},{"name":"ALG_SID_MD2","features":[70]},{"name":"ALG_SID_MD4","features":[70]},{"name":"ALG_SID_MD5","features":[70]},{"name":"ALG_SID_PCT1_MASTER","features":[70]},{"name":"ALG_SID_RC2","features":[70]},{"name":"ALG_SID_RC4","features":[70]},{"name":"ALG_SID_RC5","features":[70]},{"name":"ALG_SID_RIPEMD","features":[70]},{"name":"ALG_SID_RIPEMD160","features":[70]},{"name":"ALG_SID_RSA_ANY","features":[70]},{"name":"ALG_SID_RSA_ENTRUST","features":[70]},{"name":"ALG_SID_RSA_MSATWORK","features":[70]},{"name":"ALG_SID_RSA_PGP","features":[70]},{"name":"ALG_SID_RSA_PKCS","features":[70]},{"name":"ALG_SID_SAFERSK128","features":[70]},{"name":"ALG_SID_SAFERSK64","features":[70]},{"name":"ALG_SID_SCHANNEL_ENC_KEY","features":[70]},{"name":"ALG_SID_SCHANNEL_MAC_KEY","features":[70]},{"name":"ALG_SID_SCHANNEL_MASTER_HASH","features":[70]},{"name":"ALG_SID_SEAL","features":[70]},{"name":"ALG_SID_SHA","features":[70]},{"name":"ALG_SID_SHA1","features":[70]},{"name":"ALG_SID_SHA_256","features":[70]},{"name":"ALG_SID_SHA_384","features":[70]},{"name":"ALG_SID_SHA_512","features":[70]},{"name":"ALG_SID_SKIPJACK","features":[70]},{"name":"ALG_SID_SSL2_MASTER","features":[70]},{"name":"ALG_SID_SSL3SHAMD5","features":[70]},{"name":"ALG_SID_SSL3_MASTER","features":[70]},{"name":"ALG_SID_TEK","features":[70]},{"name":"ALG_SID_THIRDPARTY_ANY","features":[70]},{"name":"ALG_SID_TLS1PRF","features":[70]},{"name":"ALG_SID_TLS1_MASTER","features":[70]},{"name":"ALG_TYPE_ANY","features":[70]},{"name":"ALG_TYPE_BLOCK","features":[70]},{"name":"ALG_TYPE_DH","features":[70]},{"name":"ALG_TYPE_DSS","features":[70]},{"name":"ALG_TYPE_ECDH","features":[70]},{"name":"ALG_TYPE_RSA","features":[70]},{"name":"ALG_TYPE_SECURECHANNEL","features":[70]},{"name":"ALG_TYPE_STREAM","features":[70]},{"name":"ALG_TYPE_THIRDPARTY","features":[70]},{"name":"AT_ECDHE_P256","features":[70]},{"name":"AT_ECDHE_P384","features":[70]},{"name":"AT_ECDHE_P521","features":[70]},{"name":"AT_ECDSA_P256","features":[70]},{"name":"AT_ECDSA_P384","features":[70]},{"name":"AT_ECDSA_P521","features":[70]},{"name":"AT_KEYEXCHANGE","features":[70]},{"name":"AT_SIGNATURE","features":[70]},{"name":"AUDIT_CARD_DELETE","features":[70]},{"name":"AUDIT_CARD_IMPORT","features":[70]},{"name":"AUDIT_CARD_WRITTEN","features":[70]},{"name":"AUDIT_SERVICE_IDLE_STOP","features":[70]},{"name":"AUDIT_STORE_DELETE","features":[70]},{"name":"AUDIT_STORE_EXPORT","features":[70]},{"name":"AUDIT_STORE_IMPORT","features":[70]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA","features":[70]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[3,70]},{"name":"AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA","features":[3,70]},{"name":"AUTHTYPE_CLIENT","features":[70]},{"name":"AUTHTYPE_SERVER","features":[70]},{"name":"AdminCreateDeleteDirAc","features":[70]},{"name":"AdminReadWriteAc","features":[70]},{"name":"AdministratorPin","features":[70]},{"name":"AlphaNumericPinType","features":[70]},{"name":"AuthenticationPin","features":[70]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_CA_FLAG","features":[70]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_END_ENTITY_FLAG","features":[70]},{"name":"BCRYPTBUFFER_VERSION","features":[70]},{"name":"BCRYPTGENRANDOM_FLAGS","features":[70]},{"name":"BCRYPT_3DES_112_ALGORITHM","features":[70]},{"name":"BCRYPT_3DES_112_CBC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_3DES_112_CFB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_3DES_112_ECB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_3DES_ALGORITHM","features":[70]},{"name":"BCRYPT_3DES_CBC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_3DES_CFB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_3DES_ECB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_ALGORITHM","features":[70]},{"name":"BCRYPT_AES_CBC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_CCM_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_CFB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_CMAC_ALGORITHM","features":[70]},{"name":"BCRYPT_AES_CMAC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_ECB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_GCM_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_GMAC_ALGORITHM","features":[70]},{"name":"BCRYPT_AES_GMAC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_AES_WRAP_KEY_BLOB","features":[70]},{"name":"BCRYPT_ALGORITHM_IDENTIFIER","features":[70]},{"name":"BCRYPT_ALGORITHM_NAME","features":[70]},{"name":"BCRYPT_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ALG_HANDLE_HMAC_FLAG","features":[70]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_FUNCTION_TABLE","features":[3,70]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[70]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[70]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO","features":[70]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO_VERSION","features":[70]},{"name":"BCRYPT_AUTH_MODE_CHAIN_CALLS_FLAG","features":[70]},{"name":"BCRYPT_AUTH_MODE_IN_PROGRESS_FLAG","features":[70]},{"name":"BCRYPT_AUTH_TAG_LENGTH","features":[70]},{"name":"BCRYPT_BLOCK_LENGTH","features":[70]},{"name":"BCRYPT_BLOCK_PADDING","features":[70]},{"name":"BCRYPT_BLOCK_SIZE_LIST","features":[70]},{"name":"BCRYPT_BUFFERS_LOCKED_FLAG","features":[70]},{"name":"BCRYPT_CAPI_AES_FLAG","features":[70]},{"name":"BCRYPT_CAPI_KDF_ALGORITHM","features":[70]},{"name":"BCRYPT_CAPI_KDF_ALG_HANDLE","features":[70]},{"name":"BCRYPT_CHACHA20_POLY1305_ALGORITHM","features":[70]},{"name":"BCRYPT_CHACHA20_POLY1305_ALG_HANDLE","features":[70]},{"name":"BCRYPT_CHAINING_MODE","features":[70]},{"name":"BCRYPT_CHAIN_MODE_CBC","features":[70]},{"name":"BCRYPT_CHAIN_MODE_CCM","features":[70]},{"name":"BCRYPT_CHAIN_MODE_CFB","features":[70]},{"name":"BCRYPT_CHAIN_MODE_ECB","features":[70]},{"name":"BCRYPT_CHAIN_MODE_GCM","features":[70]},{"name":"BCRYPT_CHAIN_MODE_NA","features":[70]},{"name":"BCRYPT_CIPHER_FUNCTION_TABLE","features":[3,70]},{"name":"BCRYPT_CIPHER_INTERFACE","features":[70]},{"name":"BCRYPT_CIPHER_OPERATION","features":[70]},{"name":"BCRYPT_COPY_AFTER_PADDING_CHECK_FAILURE_FLAG","features":[70]},{"name":"BCRYPT_DESX_ALGORITHM","features":[70]},{"name":"BCRYPT_DESX_CBC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DESX_CFB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DESX_ECB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DES_ALGORITHM","features":[70]},{"name":"BCRYPT_DES_CBC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DES_CFB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DES_ECB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DH_ALGORITHM","features":[70]},{"name":"BCRYPT_DH_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DH_KEY_BLOB","features":[70]},{"name":"BCRYPT_DH_KEY_BLOB_MAGIC","features":[70]},{"name":"BCRYPT_DH_PARAMETERS","features":[70]},{"name":"BCRYPT_DH_PARAMETERS_MAGIC","features":[70]},{"name":"BCRYPT_DH_PARAMETER_HEADER","features":[70]},{"name":"BCRYPT_DH_PRIVATE_BLOB","features":[70]},{"name":"BCRYPT_DH_PRIVATE_MAGIC","features":[70]},{"name":"BCRYPT_DH_PUBLIC_BLOB","features":[70]},{"name":"BCRYPT_DH_PUBLIC_MAGIC","features":[70]},{"name":"BCRYPT_DSA_ALGORITHM","features":[70]},{"name":"BCRYPT_DSA_ALG_HANDLE","features":[70]},{"name":"BCRYPT_DSA_KEY_BLOB","features":[70]},{"name":"BCRYPT_DSA_KEY_BLOB_V2","features":[70]},{"name":"BCRYPT_DSA_MAGIC","features":[70]},{"name":"BCRYPT_DSA_PARAMETERS","features":[70]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC","features":[70]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC_V2","features":[70]},{"name":"BCRYPT_DSA_PARAMETER_HEADER","features":[70]},{"name":"BCRYPT_DSA_PARAMETER_HEADER_V2","features":[70]},{"name":"BCRYPT_DSA_PRIVATE_BLOB","features":[70]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC","features":[70]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC_V2","features":[70]},{"name":"BCRYPT_DSA_PUBLIC_BLOB","features":[70]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC","features":[70]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC_V2","features":[70]},{"name":"BCRYPT_ECCFULLKEY_BLOB","features":[70]},{"name":"BCRYPT_ECCFULLPRIVATE_BLOB","features":[70]},{"name":"BCRYPT_ECCFULLPUBLIC_BLOB","features":[70]},{"name":"BCRYPT_ECCKEY_BLOB","features":[70]},{"name":"BCRYPT_ECCPRIVATE_BLOB","features":[70]},{"name":"BCRYPT_ECCPUBLIC_BLOB","features":[70]},{"name":"BCRYPT_ECC_CURVE_25519","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_EC192WAPI","features":[70]},{"name":"BCRYPT_ECC_CURVE_NAME","features":[70]},{"name":"BCRYPT_ECC_CURVE_NAMES","features":[70]},{"name":"BCRYPT_ECC_CURVE_NAME_LIST","features":[70]},{"name":"BCRYPT_ECC_CURVE_NISTP192","features":[70]},{"name":"BCRYPT_ECC_CURVE_NISTP224","features":[70]},{"name":"BCRYPT_ECC_CURVE_NISTP256","features":[70]},{"name":"BCRYPT_ECC_CURVE_NISTP384","features":[70]},{"name":"BCRYPT_ECC_CURVE_NISTP521","features":[70]},{"name":"BCRYPT_ECC_CURVE_NUMSP256T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_NUMSP384T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_NUMSP512T1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP160K1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP160R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP160R2","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP192K1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP192R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP224K1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP224R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP256K1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP256R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP384R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_SECP521R1","features":[70]},{"name":"BCRYPT_ECC_CURVE_WTLS12","features":[70]},{"name":"BCRYPT_ECC_CURVE_WTLS7","features":[70]},{"name":"BCRYPT_ECC_CURVE_WTLS9","features":[70]},{"name":"BCRYPT_ECC_CURVE_X962P192V1","features":[70]},{"name":"BCRYPT_ECC_CURVE_X962P192V2","features":[70]},{"name":"BCRYPT_ECC_CURVE_X962P192V3","features":[70]},{"name":"BCRYPT_ECC_CURVE_X962P239V1","features":[70]},{"name":"BCRYPT_ECC_CURVE_X962P239V2","features":[70]},{"name":"BCRYPT_ECC_CURVE_X962P239V3","features":[70]},{"name":"BCRYPT_ECC_CURVE_X962P256V1","features":[70]},{"name":"BCRYPT_ECC_FULLKEY_BLOB_V1","features":[70]},{"name":"BCRYPT_ECC_PARAMETERS","features":[70]},{"name":"BCRYPT_ECC_PARAMETERS_MAGIC","features":[70]},{"name":"BCRYPT_ECC_PARAMETER_HEADER","features":[70]},{"name":"BCRYPT_ECC_PARAMETER_HEADER_V1","features":[70]},{"name":"BCRYPT_ECC_PRIME_MONTGOMERY_CURVE","features":[70]},{"name":"BCRYPT_ECC_PRIME_SHORT_WEIERSTRASS_CURVE","features":[70]},{"name":"BCRYPT_ECC_PRIME_TWISTED_EDWARDS_CURVE","features":[70]},{"name":"BCRYPT_ECDH_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDH_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDH_P256_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDH_P256_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDH_P384_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDH_P384_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDH_P521_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDH_P521_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDH_PRIVATE_GENERIC_MAGIC","features":[70]},{"name":"BCRYPT_ECDH_PRIVATE_P256_MAGIC","features":[70]},{"name":"BCRYPT_ECDH_PRIVATE_P384_MAGIC","features":[70]},{"name":"BCRYPT_ECDH_PRIVATE_P521_MAGIC","features":[70]},{"name":"BCRYPT_ECDH_PUBLIC_GENERIC_MAGIC","features":[70]},{"name":"BCRYPT_ECDH_PUBLIC_P256_MAGIC","features":[70]},{"name":"BCRYPT_ECDH_PUBLIC_P384_MAGIC","features":[70]},{"name":"BCRYPT_ECDH_PUBLIC_P521_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDSA_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDSA_P256_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDSA_P256_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDSA_P384_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDSA_P384_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDSA_P521_ALGORITHM","features":[70]},{"name":"BCRYPT_ECDSA_P521_ALG_HANDLE","features":[70]},{"name":"BCRYPT_ECDSA_PRIVATE_GENERIC_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_PRIVATE_P256_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_PRIVATE_P384_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_PRIVATE_P521_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_PUBLIC_GENERIC_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_PUBLIC_P256_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_PUBLIC_P384_MAGIC","features":[70]},{"name":"BCRYPT_ECDSA_PUBLIC_P521_MAGIC","features":[70]},{"name":"BCRYPT_EFFECTIVE_KEY_LENGTH","features":[70]},{"name":"BCRYPT_ENABLE_INCOMPATIBLE_FIPS_CHECKS","features":[70]},{"name":"BCRYPT_EXTENDED_KEYSIZE","features":[70]},{"name":"BCRYPT_FLAGS","features":[70]},{"name":"BCRYPT_GENERATE_IV","features":[70]},{"name":"BCRYPT_GLOBAL_PARAMETERS","features":[70]},{"name":"BCRYPT_HANDLE","features":[70]},{"name":"BCRYPT_HASH_BLOCK_LENGTH","features":[70]},{"name":"BCRYPT_HASH_FUNCTION_TABLE","features":[3,70]},{"name":"BCRYPT_HASH_HANDLE","features":[70]},{"name":"BCRYPT_HASH_INTERFACE","features":[70]},{"name":"BCRYPT_HASH_INTERFACE_MAJORVERSION_2","features":[70]},{"name":"BCRYPT_HASH_LENGTH","features":[70]},{"name":"BCRYPT_HASH_OID_LIST","features":[70]},{"name":"BCRYPT_HASH_OPERATION","features":[70]},{"name":"BCRYPT_HASH_OPERATION_FINISH_HASH","features":[70]},{"name":"BCRYPT_HASH_OPERATION_HASH_DATA","features":[70]},{"name":"BCRYPT_HASH_OPERATION_TYPE","features":[70]},{"name":"BCRYPT_HASH_REUSABLE_FLAG","features":[70]},{"name":"BCRYPT_HKDF_ALGORITHM","features":[70]},{"name":"BCRYPT_HKDF_ALG_HANDLE","features":[70]},{"name":"BCRYPT_HKDF_HASH_ALGORITHM","features":[70]},{"name":"BCRYPT_HKDF_PRK_AND_FINALIZE","features":[70]},{"name":"BCRYPT_HKDF_SALT_AND_FINALIZE","features":[70]},{"name":"BCRYPT_HMAC_MD2_ALG_HANDLE","features":[70]},{"name":"BCRYPT_HMAC_MD4_ALG_HANDLE","features":[70]},{"name":"BCRYPT_HMAC_MD5_ALG_HANDLE","features":[70]},{"name":"BCRYPT_HMAC_SHA1_ALG_HANDLE","features":[70]},{"name":"BCRYPT_HMAC_SHA256_ALG_HANDLE","features":[70]},{"name":"BCRYPT_HMAC_SHA384_ALG_HANDLE","features":[70]},{"name":"BCRYPT_HMAC_SHA512_ALG_HANDLE","features":[70]},{"name":"BCRYPT_INITIALIZATION_VECTOR","features":[70]},{"name":"BCRYPT_INTERFACE","features":[70]},{"name":"BCRYPT_INTERFACE_VERSION","features":[70]},{"name":"BCRYPT_IS_IFX_TPM_WEAK_KEY","features":[70]},{"name":"BCRYPT_IS_KEYED_HASH","features":[70]},{"name":"BCRYPT_IS_REUSABLE_HASH","features":[70]},{"name":"BCRYPT_KDF_HASH","features":[70]},{"name":"BCRYPT_KDF_HKDF","features":[70]},{"name":"BCRYPT_KDF_HMAC","features":[70]},{"name":"BCRYPT_KDF_RAW_SECRET","features":[70]},{"name":"BCRYPT_KDF_SP80056A_CONCAT","features":[70]},{"name":"BCRYPT_KDF_TLS_PRF","features":[70]},{"name":"BCRYPT_KEY_BLOB","features":[70]},{"name":"BCRYPT_KEY_DATA_BLOB","features":[70]},{"name":"BCRYPT_KEY_DATA_BLOB_HEADER","features":[70]},{"name":"BCRYPT_KEY_DATA_BLOB_MAGIC","features":[70]},{"name":"BCRYPT_KEY_DATA_BLOB_VERSION1","features":[70]},{"name":"BCRYPT_KEY_DERIVATION_FUNCTION_TABLE","features":[3,70]},{"name":"BCRYPT_KEY_DERIVATION_INTERFACE","features":[70]},{"name":"BCRYPT_KEY_DERIVATION_OPERATION","features":[70]},{"name":"BCRYPT_KEY_HANDLE","features":[70]},{"name":"BCRYPT_KEY_LENGTH","features":[70]},{"name":"BCRYPT_KEY_LENGTHS","features":[70]},{"name":"BCRYPT_KEY_LENGTHS_STRUCT","features":[70]},{"name":"BCRYPT_KEY_OBJECT_LENGTH","features":[70]},{"name":"BCRYPT_KEY_STRENGTH","features":[70]},{"name":"BCRYPT_KEY_VALIDATION_RANGE","features":[70]},{"name":"BCRYPT_KEY_VALIDATION_RANGE_AND_ORDER","features":[70]},{"name":"BCRYPT_KEY_VALIDATION_REGENERATE","features":[70]},{"name":"BCRYPT_MD2_ALGORITHM","features":[70]},{"name":"BCRYPT_MD2_ALG_HANDLE","features":[70]},{"name":"BCRYPT_MD4_ALGORITHM","features":[70]},{"name":"BCRYPT_MD4_ALG_HANDLE","features":[70]},{"name":"BCRYPT_MD5_ALGORITHM","features":[70]},{"name":"BCRYPT_MD5_ALG_HANDLE","features":[70]},{"name":"BCRYPT_MESSAGE_BLOCK_LENGTH","features":[70]},{"name":"BCRYPT_MULTI_FLAG","features":[70]},{"name":"BCRYPT_MULTI_HASH_OPERATION","features":[70]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH","features":[70]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH_STRUCT","features":[70]},{"name":"BCRYPT_MULTI_OPERATION_TYPE","features":[70]},{"name":"BCRYPT_NO_CURVE_GENERATION_ALG_ID","features":[70]},{"name":"BCRYPT_NO_KEY_VALIDATION","features":[70]},{"name":"BCRYPT_OAEP_PADDING_INFO","features":[70]},{"name":"BCRYPT_OBJECT_ALIGNMENT","features":[70]},{"name":"BCRYPT_OBJECT_LENGTH","features":[70]},{"name":"BCRYPT_OID","features":[70]},{"name":"BCRYPT_OID_LIST","features":[70]},{"name":"BCRYPT_OPAQUE_KEY_BLOB","features":[70]},{"name":"BCRYPT_OPEN_ALGORITHM_PROVIDER_FLAGS","features":[70]},{"name":"BCRYPT_OPERATION","features":[70]},{"name":"BCRYPT_OPERATION_TYPE_HASH","features":[70]},{"name":"BCRYPT_PADDING_SCHEMES","features":[70]},{"name":"BCRYPT_PAD_NONE","features":[70]},{"name":"BCRYPT_PAD_OAEP","features":[70]},{"name":"BCRYPT_PAD_PKCS1","features":[70]},{"name":"BCRYPT_PAD_PKCS1_OPTIONAL_HASH_OID","features":[70]},{"name":"BCRYPT_PAD_PSS","features":[70]},{"name":"BCRYPT_PBKDF2_ALGORITHM","features":[70]},{"name":"BCRYPT_PBKDF2_ALG_HANDLE","features":[70]},{"name":"BCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[70]},{"name":"BCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[70]},{"name":"BCRYPT_PKCS1_PADDING_INFO","features":[70]},{"name":"BCRYPT_PRIMITIVE_TYPE","features":[70]},{"name":"BCRYPT_PRIVATE_KEY","features":[70]},{"name":"BCRYPT_PRIVATE_KEY_BLOB","features":[70]},{"name":"BCRYPT_PRIVATE_KEY_FLAG","features":[70]},{"name":"BCRYPT_PROVIDER_HANDLE","features":[70]},{"name":"BCRYPT_PROVIDER_NAME","features":[70]},{"name":"BCRYPT_PROV_DISPATCH","features":[70]},{"name":"BCRYPT_PSS_PADDING_INFO","features":[70]},{"name":"BCRYPT_PUBLIC_KEY_BLOB","features":[70]},{"name":"BCRYPT_PUBLIC_KEY_FLAG","features":[70]},{"name":"BCRYPT_PUBLIC_KEY_LENGTH","features":[70]},{"name":"BCRYPT_QUERY_PROVIDER_MODE","features":[70]},{"name":"BCRYPT_RC2_ALGORITHM","features":[70]},{"name":"BCRYPT_RC2_CBC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_RC2_CFB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_RC2_ECB_ALG_HANDLE","features":[70]},{"name":"BCRYPT_RC4_ALGORITHM","features":[70]},{"name":"BCRYPT_RC4_ALG_HANDLE","features":[70]},{"name":"BCRYPT_RESOLVE_PROVIDERS_FLAGS","features":[70]},{"name":"BCRYPT_RNG_ALGORITHM","features":[70]},{"name":"BCRYPT_RNG_ALG_HANDLE","features":[70]},{"name":"BCRYPT_RNG_DUAL_EC_ALGORITHM","features":[70]},{"name":"BCRYPT_RNG_FIPS186_DSA_ALGORITHM","features":[70]},{"name":"BCRYPT_RNG_FUNCTION_TABLE","features":[3,70]},{"name":"BCRYPT_RNG_INTERFACE","features":[70]},{"name":"BCRYPT_RNG_OPERATION","features":[70]},{"name":"BCRYPT_RNG_USE_ENTROPY_IN_BUFFER","features":[70]},{"name":"BCRYPT_RSAFULLPRIVATE_BLOB","features":[70]},{"name":"BCRYPT_RSAFULLPRIVATE_MAGIC","features":[70]},{"name":"BCRYPT_RSAKEY_BLOB","features":[70]},{"name":"BCRYPT_RSAKEY_BLOB_MAGIC","features":[70]},{"name":"BCRYPT_RSAPRIVATE_BLOB","features":[70]},{"name":"BCRYPT_RSAPRIVATE_MAGIC","features":[70]},{"name":"BCRYPT_RSAPUBLIC_BLOB","features":[70]},{"name":"BCRYPT_RSAPUBLIC_MAGIC","features":[70]},{"name":"BCRYPT_RSA_ALGORITHM","features":[70]},{"name":"BCRYPT_RSA_ALG_HANDLE","features":[70]},{"name":"BCRYPT_RSA_SIGN_ALGORITHM","features":[70]},{"name":"BCRYPT_RSA_SIGN_ALG_HANDLE","features":[70]},{"name":"BCRYPT_SECRET_AGREEMENT_FUNCTION_TABLE","features":[3,70]},{"name":"BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[70]},{"name":"BCRYPT_SECRET_AGREEMENT_OPERATION","features":[70]},{"name":"BCRYPT_SECRET_HANDLE","features":[70]},{"name":"BCRYPT_SHA1_ALGORITHM","features":[70]},{"name":"BCRYPT_SHA1_ALG_HANDLE","features":[70]},{"name":"BCRYPT_SHA256_ALGORITHM","features":[70]},{"name":"BCRYPT_SHA256_ALG_HANDLE","features":[70]},{"name":"BCRYPT_SHA384_ALGORITHM","features":[70]},{"name":"BCRYPT_SHA384_ALG_HANDLE","features":[70]},{"name":"BCRYPT_SHA512_ALGORITHM","features":[70]},{"name":"BCRYPT_SHA512_ALG_HANDLE","features":[70]},{"name":"BCRYPT_SIGNATURE_FUNCTION_TABLE","features":[3,70]},{"name":"BCRYPT_SIGNATURE_INTERFACE","features":[70]},{"name":"BCRYPT_SIGNATURE_LENGTH","features":[70]},{"name":"BCRYPT_SIGNATURE_OPERATION","features":[70]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[70]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALG_HANDLE","features":[70]},{"name":"BCRYPT_SP80056A_CONCAT_ALGORITHM","features":[70]},{"name":"BCRYPT_SP80056A_CONCAT_ALG_HANDLE","features":[70]},{"name":"BCRYPT_SUPPORTED_PAD_OAEP","features":[70]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_ENC","features":[70]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_SIG","features":[70]},{"name":"BCRYPT_SUPPORTED_PAD_PSS","features":[70]},{"name":"BCRYPT_SUPPORTED_PAD_ROUTER","features":[70]},{"name":"BCRYPT_TABLE","features":[70]},{"name":"BCRYPT_TLS1_1_KDF_ALGORITHM","features":[70]},{"name":"BCRYPT_TLS1_1_KDF_ALG_HANDLE","features":[70]},{"name":"BCRYPT_TLS1_2_KDF_ALGORITHM","features":[70]},{"name":"BCRYPT_TLS1_2_KDF_ALG_HANDLE","features":[70]},{"name":"BCRYPT_TLS_CBC_HMAC_VERIFY_FLAG","features":[70]},{"name":"BCRYPT_USE_SYSTEM_PREFERRED_RNG","features":[70]},{"name":"BCRYPT_XTS_AES_ALGORITHM","features":[70]},{"name":"BCRYPT_XTS_AES_ALG_HANDLE","features":[70]},{"name":"BCryptAddContextFunction","features":[3,70]},{"name":"BCryptBuffer","features":[70]},{"name":"BCryptBufferDesc","features":[70]},{"name":"BCryptCloseAlgorithmProvider","features":[3,70]},{"name":"BCryptCloseAlgorithmProviderFn","features":[3,70]},{"name":"BCryptConfigureContext","features":[3,70]},{"name":"BCryptConfigureContextFunction","features":[3,70]},{"name":"BCryptCreateContext","features":[3,70]},{"name":"BCryptCreateHash","features":[3,70]},{"name":"BCryptCreateHashFn","features":[3,70]},{"name":"BCryptCreateMultiHash","features":[3,70]},{"name":"BCryptCreateMultiHashFn","features":[3,70]},{"name":"BCryptDecrypt","features":[3,70]},{"name":"BCryptDecryptFn","features":[3,70]},{"name":"BCryptDeleteContext","features":[3,70]},{"name":"BCryptDeriveKey","features":[3,70]},{"name":"BCryptDeriveKeyCapi","features":[3,70]},{"name":"BCryptDeriveKeyCapiFn","features":[3,70]},{"name":"BCryptDeriveKeyFn","features":[3,70]},{"name":"BCryptDeriveKeyPBKDF2","features":[3,70]},{"name":"BCryptDeriveKeyPBKDF2Fn","features":[3,70]},{"name":"BCryptDestroyHash","features":[3,70]},{"name":"BCryptDestroyHashFn","features":[3,70]},{"name":"BCryptDestroyKey","features":[3,70]},{"name":"BCryptDestroyKeyFn","features":[3,70]},{"name":"BCryptDestroySecret","features":[3,70]},{"name":"BCryptDestroySecretFn","features":[3,70]},{"name":"BCryptDuplicateHash","features":[3,70]},{"name":"BCryptDuplicateHashFn","features":[3,70]},{"name":"BCryptDuplicateKey","features":[3,70]},{"name":"BCryptDuplicateKeyFn","features":[3,70]},{"name":"BCryptEncrypt","features":[3,70]},{"name":"BCryptEncryptFn","features":[3,70]},{"name":"BCryptEnumAlgorithms","features":[3,70]},{"name":"BCryptEnumContextFunctionProviders","features":[3,70]},{"name":"BCryptEnumContextFunctions","features":[3,70]},{"name":"BCryptEnumContexts","features":[3,70]},{"name":"BCryptEnumProviders","features":[3,70]},{"name":"BCryptEnumRegisteredProviders","features":[3,70]},{"name":"BCryptExportKey","features":[3,70]},{"name":"BCryptExportKeyFn","features":[3,70]},{"name":"BCryptFinalizeKeyPair","features":[3,70]},{"name":"BCryptFinalizeKeyPairFn","features":[3,70]},{"name":"BCryptFinishHash","features":[3,70]},{"name":"BCryptFinishHashFn","features":[3,70]},{"name":"BCryptFreeBuffer","features":[70]},{"name":"BCryptFreeBufferFn","features":[70]},{"name":"BCryptGenRandom","features":[3,70]},{"name":"BCryptGenRandomFn","features":[3,70]},{"name":"BCryptGenerateKeyPair","features":[3,70]},{"name":"BCryptGenerateKeyPairFn","features":[3,70]},{"name":"BCryptGenerateSymmetricKey","features":[3,70]},{"name":"BCryptGenerateSymmetricKeyFn","features":[3,70]},{"name":"BCryptGetFipsAlgorithmMode","features":[3,70]},{"name":"BCryptGetProperty","features":[3,70]},{"name":"BCryptGetPropertyFn","features":[3,70]},{"name":"BCryptHash","features":[3,70]},{"name":"BCryptHashData","features":[3,70]},{"name":"BCryptHashDataFn","features":[3,70]},{"name":"BCryptImportKey","features":[3,70]},{"name":"BCryptImportKeyFn","features":[3,70]},{"name":"BCryptImportKeyPair","features":[3,70]},{"name":"BCryptImportKeyPairFn","features":[3,70]},{"name":"BCryptKeyDerivation","features":[3,70]},{"name":"BCryptKeyDerivationFn","features":[3,70]},{"name":"BCryptOpenAlgorithmProvider","features":[3,70]},{"name":"BCryptOpenAlgorithmProviderFn","features":[3,70]},{"name":"BCryptProcessMultiOperations","features":[3,70]},{"name":"BCryptProcessMultiOperationsFn","features":[3,70]},{"name":"BCryptQueryContextConfiguration","features":[3,70]},{"name":"BCryptQueryContextFunctionConfiguration","features":[3,70]},{"name":"BCryptQueryContextFunctionProperty","features":[3,70]},{"name":"BCryptQueryProviderRegistration","features":[3,70]},{"name":"BCryptRegisterConfigChangeNotify","features":[3,70]},{"name":"BCryptRemoveContextFunction","features":[3,70]},{"name":"BCryptResolveProviders","features":[3,70]},{"name":"BCryptSecretAgreement","features":[3,70]},{"name":"BCryptSecretAgreementFn","features":[3,70]},{"name":"BCryptSetContextFunctionProperty","features":[3,70]},{"name":"BCryptSetProperty","features":[3,70]},{"name":"BCryptSetPropertyFn","features":[3,70]},{"name":"BCryptSignHash","features":[3,70]},{"name":"BCryptSignHashFn","features":[3,70]},{"name":"BCryptUnregisterConfigChangeNotify","features":[3,70]},{"name":"BCryptVerifySignature","features":[3,70]},{"name":"BCryptVerifySignatureFn","features":[3,70]},{"name":"CALG_3DES","features":[70]},{"name":"CALG_3DES_112","features":[70]},{"name":"CALG_AES","features":[70]},{"name":"CALG_AES_128","features":[70]},{"name":"CALG_AES_192","features":[70]},{"name":"CALG_AES_256","features":[70]},{"name":"CALG_AGREEDKEY_ANY","features":[70]},{"name":"CALG_CYLINK_MEK","features":[70]},{"name":"CALG_DES","features":[70]},{"name":"CALG_DESX","features":[70]},{"name":"CALG_DH_EPHEM","features":[70]},{"name":"CALG_DH_SF","features":[70]},{"name":"CALG_DSS_SIGN","features":[70]},{"name":"CALG_ECDH","features":[70]},{"name":"CALG_ECDH_EPHEM","features":[70]},{"name":"CALG_ECDSA","features":[70]},{"name":"CALG_ECMQV","features":[70]},{"name":"CALG_HASH_REPLACE_OWF","features":[70]},{"name":"CALG_HMAC","features":[70]},{"name":"CALG_HUGHES_MD5","features":[70]},{"name":"CALG_KEA_KEYX","features":[70]},{"name":"CALG_MAC","features":[70]},{"name":"CALG_MD2","features":[70]},{"name":"CALG_MD4","features":[70]},{"name":"CALG_MD5","features":[70]},{"name":"CALG_NO_SIGN","features":[70]},{"name":"CALG_NULLCIPHER","features":[70]},{"name":"CALG_OID_INFO_CNG_ONLY","features":[70]},{"name":"CALG_OID_INFO_PARAMETERS","features":[70]},{"name":"CALG_PCT1_MASTER","features":[70]},{"name":"CALG_RC2","features":[70]},{"name":"CALG_RC4","features":[70]},{"name":"CALG_RC5","features":[70]},{"name":"CALG_RSA_KEYX","features":[70]},{"name":"CALG_RSA_SIGN","features":[70]},{"name":"CALG_SCHANNEL_ENC_KEY","features":[70]},{"name":"CALG_SCHANNEL_MAC_KEY","features":[70]},{"name":"CALG_SCHANNEL_MASTER_HASH","features":[70]},{"name":"CALG_SEAL","features":[70]},{"name":"CALG_SHA","features":[70]},{"name":"CALG_SHA1","features":[70]},{"name":"CALG_SHA_256","features":[70]},{"name":"CALG_SHA_384","features":[70]},{"name":"CALG_SHA_512","features":[70]},{"name":"CALG_SKIPJACK","features":[70]},{"name":"CALG_SSL2_MASTER","features":[70]},{"name":"CALG_SSL3_MASTER","features":[70]},{"name":"CALG_SSL3_SHAMD5","features":[70]},{"name":"CALG_TEK","features":[70]},{"name":"CALG_THIRDPARTY_CIPHER","features":[70]},{"name":"CALG_THIRDPARTY_HASH","features":[70]},{"name":"CALG_THIRDPARTY_KEY_EXCHANGE","features":[70]},{"name":"CALG_THIRDPARTY_SIGNATURE","features":[70]},{"name":"CALG_TLS1PRF","features":[70]},{"name":"CALG_TLS1_MASTER","features":[70]},{"name":"CARD_3DES_112_ALGORITHM","features":[70]},{"name":"CARD_3DES_ALGORITHM","features":[70]},{"name":"CARD_AES_ALGORITHM","features":[70]},{"name":"CARD_ASYMMETRIC_OPERATION","features":[70]},{"name":"CARD_AUTHENTICATE","features":[70]},{"name":"CARD_AUTHENTICATE_CURRENT_VERSION","features":[70]},{"name":"CARD_AUTHENTICATE_GENERATE_SESSION_PIN","features":[70]},{"name":"CARD_AUTHENTICATE_PIN_CHALLENGE_RESPONSE","features":[70]},{"name":"CARD_AUTHENTICATE_PIN_PIN","features":[70]},{"name":"CARD_AUTHENTICATE_RESPONSE","features":[70]},{"name":"CARD_AUTHENTICATE_RESPONSE_CURRENT_VERSION","features":[70]},{"name":"CARD_AUTHENTICATE_RESPONSE_VERSION_SEVEN","features":[70]},{"name":"CARD_AUTHENTICATE_SESSION_PIN","features":[70]},{"name":"CARD_AUTHENTICATE_VERSION_SEVEN","features":[70]},{"name":"CARD_BUFFER_SIZE_ONLY","features":[70]},{"name":"CARD_CACHE_FILE_CURRENT_VERSION","features":[70]},{"name":"CARD_CACHE_FILE_FORMAT","features":[70]},{"name":"CARD_CAPABILITIES","features":[3,70]},{"name":"CARD_CAPABILITIES_CURRENT_VERSION","features":[70]},{"name":"CARD_CHAIN_MODE_CBC","features":[70]},{"name":"CARD_CHANGE_AUTHENTICATOR","features":[70]},{"name":"CARD_CHANGE_AUTHENTICATOR_CURRENT_VERSION","features":[70]},{"name":"CARD_CHANGE_AUTHENTICATOR_RESPONSE","features":[70]},{"name":"CARD_CHANGE_AUTHENTICATOR_RESPONSE_CURRENT_VERSION","features":[70]},{"name":"CARD_CHANGE_AUTHENTICATOR_RESPONSE_VERSION_SEVEN","features":[70]},{"name":"CARD_CHANGE_AUTHENTICATOR_VERSION_SEVEN","features":[70]},{"name":"CARD_CIPHER_OPERATION","features":[70]},{"name":"CARD_CREATE_CONTAINER_KEY_GEN","features":[70]},{"name":"CARD_CREATE_CONTAINER_KEY_IMPORT","features":[70]},{"name":"CARD_DATA","features":[3,70]},{"name":"CARD_DATA_CURRENT_VERSION","features":[70]},{"name":"CARD_DATA_VALUE_UNKNOWN","features":[70]},{"name":"CARD_DATA_VERSION_FIVE","features":[70]},{"name":"CARD_DATA_VERSION_FOUR","features":[70]},{"name":"CARD_DATA_VERSION_SEVEN","features":[70]},{"name":"CARD_DATA_VERSION_SIX","features":[70]},{"name":"CARD_DERIVE_KEY","features":[70]},{"name":"CARD_DERIVE_KEY_CURRENT_VERSION","features":[70]},{"name":"CARD_DERIVE_KEY_VERSION","features":[70]},{"name":"CARD_DERIVE_KEY_VERSION_TWO","features":[70]},{"name":"CARD_DH_AGREEMENT_INFO","features":[70]},{"name":"CARD_DH_AGREEMENT_INFO_VERSION","features":[70]},{"name":"CARD_DIRECTORY_ACCESS_CONDITION","features":[70]},{"name":"CARD_ENCRYPTED_DATA","features":[70]},{"name":"CARD_FILE_ACCESS_CONDITION","features":[70]},{"name":"CARD_FILE_INFO","features":[70]},{"name":"CARD_FILE_INFO_CURRENT_VERSION","features":[70]},{"name":"CARD_FREE_SPACE_INFO","features":[70]},{"name":"CARD_FREE_SPACE_INFO_CURRENT_VERSION","features":[70]},{"name":"CARD_IMPORT_KEYPAIR","features":[70]},{"name":"CARD_IMPORT_KEYPAIR_CURRENT_VERSION","features":[70]},{"name":"CARD_IMPORT_KEYPAIR_VERSION_SEVEN","features":[70]},{"name":"CARD_KEY_IMPORT_ECC_KEYEST","features":[70]},{"name":"CARD_KEY_IMPORT_PLAIN_TEXT","features":[70]},{"name":"CARD_KEY_IMPORT_RSA_KEYEST","features":[70]},{"name":"CARD_KEY_IMPORT_SHARED_SYMMETRIC","features":[70]},{"name":"CARD_KEY_SIZES","features":[70]},{"name":"CARD_KEY_SIZES_CURRENT_VERSION","features":[70]},{"name":"CARD_PADDING_INFO_PRESENT","features":[70]},{"name":"CARD_PADDING_NONE","features":[70]},{"name":"CARD_PADDING_OAEP","features":[70]},{"name":"CARD_PADDING_PKCS1","features":[70]},{"name":"CARD_PADDING_PSS","features":[70]},{"name":"CARD_PIN_SILENT_CONTEXT","features":[70]},{"name":"CARD_PIN_STRENGTH_PLAINTEXT","features":[70]},{"name":"CARD_PIN_STRENGTH_SESSION_PIN","features":[70]},{"name":"CARD_RETURN_KEY_HANDLE","features":[70]},{"name":"CARD_RSA_DECRYPT_INFO","features":[70]},{"name":"CARD_RSA_KEY_DECRYPT_INFO_CURRENT_VERSION","features":[70]},{"name":"CARD_RSA_KEY_DECRYPT_INFO_VERSION_ONE","features":[70]},{"name":"CARD_RSA_KEY_DECRYPT_INFO_VERSION_TWO","features":[70]},{"name":"CARD_SECURE_KEY_INJECTION_NO_CARD_MODE","features":[70]},{"name":"CARD_SIGNING_INFO","features":[70]},{"name":"CARD_SIGNING_INFO_BASIC_VERSION","features":[70]},{"name":"CARD_SIGNING_INFO_CURRENT_VERSION","features":[70]},{"name":"CASetupProperty","features":[70]},{"name":"CCP_ASSOCIATED_ECDH_KEY","features":[70]},{"name":"CCP_CONTAINER_INFO","features":[70]},{"name":"CCP_PIN_IDENTIFIER","features":[70]},{"name":"CCertSrvSetup","features":[70]},{"name":"CCertSrvSetupKeyInformation","features":[70]},{"name":"CCertificateEnrollmentPolicyServerSetup","features":[70]},{"name":"CCertificateEnrollmentServerSetup","features":[70]},{"name":"CEPSetupProperty","features":[70]},{"name":"CERTIFICATE_CHAIN_BLOB","features":[70]},{"name":"CERT_ACCESS_DESCRIPTION","features":[70]},{"name":"CERT_ACCESS_STATE_GP_SYSTEM_STORE_FLAG","features":[70]},{"name":"CERT_ACCESS_STATE_LM_SYSTEM_STORE_FLAG","features":[70]},{"name":"CERT_ACCESS_STATE_PROP_ID","features":[70]},{"name":"CERT_ACCESS_STATE_SHARED_USER_FLAG","features":[70]},{"name":"CERT_ACCESS_STATE_SYSTEM_STORE_FLAG","features":[70]},{"name":"CERT_ACCESS_STATE_WRITE_PERSIST_FLAG","features":[70]},{"name":"CERT_AIA_URL_RETRIEVED_PROP_ID","features":[70]},{"name":"CERT_ALT_NAME_EDI_PARTY_NAME","features":[70]},{"name":"CERT_ALT_NAME_ENTRY","features":[70]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_MASK","features":[70]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_SHIFT","features":[70]},{"name":"CERT_ALT_NAME_INFO","features":[70]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_MASK","features":[70]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_SHIFT","features":[70]},{"name":"CERT_ALT_NAME_X400_ADDRESS","features":[70]},{"name":"CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[70]},{"name":"CERT_ARCHIVED_PROP_ID","features":[70]},{"name":"CERT_AUTHORITY_INFO_ACCESS","features":[70]},{"name":"CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[70]},{"name":"CERT_AUTHORITY_KEY_ID2_INFO","features":[70]},{"name":"CERT_AUTHORITY_KEY_ID_INFO","features":[70]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_PARTIAL_CHAIN_LOGGING_FLAG","features":[70]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_UNTRUSTED_ROOT_LOGGING_FLAG","features":[70]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[70]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_FLAGS_VALUE_NAME","features":[70]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[70]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[70]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[70]},{"name":"CERT_AUTH_ROOT_CAB_FILENAME","features":[70]},{"name":"CERT_AUTH_ROOT_CERT_EXT","features":[70]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME","features":[70]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME_A","features":[70]},{"name":"CERT_AUTH_ROOT_SEQ_FILENAME","features":[70]},{"name":"CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[70]},{"name":"CERT_AUTO_ENROLL_PROP_ID","features":[70]},{"name":"CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[70]},{"name":"CERT_AUTO_UPDATE_DISABLE_RANDOM_QUERY_STRING_FLAG","features":[70]},{"name":"CERT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[70]},{"name":"CERT_AUTO_UPDATE_SYNC_FROM_DIR_URL_VALUE_NAME","features":[70]},{"name":"CERT_BACKED_UP_PROP_ID","features":[70]},{"name":"CERT_BASIC_CONSTRAINTS2_INFO","features":[3,70]},{"name":"CERT_BASIC_CONSTRAINTS_INFO","features":[3,70]},{"name":"CERT_BIOMETRIC_DATA","features":[70]},{"name":"CERT_BIOMETRIC_DATA_TYPE","features":[70]},{"name":"CERT_BIOMETRIC_EXT_INFO","features":[70]},{"name":"CERT_BIOMETRIC_OID_DATA_CHOICE","features":[70]},{"name":"CERT_BIOMETRIC_PICTURE_TYPE","features":[70]},{"name":"CERT_BIOMETRIC_PREDEFINED_DATA_CHOICE","features":[70]},{"name":"CERT_BIOMETRIC_SIGNATURE_TYPE","features":[70]},{"name":"CERT_BUNDLE_CERTIFICATE","features":[70]},{"name":"CERT_BUNDLE_CRL","features":[70]},{"name":"CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG","features":[70]},{"name":"CERT_CA_DISABLE_CRL_PROP_ID","features":[70]},{"name":"CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[70]},{"name":"CERT_CA_SUBJECT_FLAG","features":[70]},{"name":"CERT_CEP_PROP_ID","features":[70]},{"name":"CERT_CHAIN","features":[70]},{"name":"CERT_CHAIN_AUTO_CURRENT_USER","features":[70]},{"name":"CERT_CHAIN_AUTO_FLAGS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_AUTO_FLUSH_DISABLE_FLAG","features":[70]},{"name":"CERT_CHAIN_AUTO_FLUSH_FIRST_DELTA_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_AUTO_FLUSH_NEXT_DELTA_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_AUTO_HPKP_RULE_INFO","features":[70]},{"name":"CERT_CHAIN_AUTO_IMPERSONATED","features":[70]},{"name":"CERT_CHAIN_AUTO_LOCAL_MACHINE","features":[70]},{"name":"CERT_CHAIN_AUTO_LOG_CREATE_FLAG","features":[70]},{"name":"CERT_CHAIN_AUTO_LOG_FILE_NAME_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_AUTO_LOG_FLUSH_FLAG","features":[70]},{"name":"CERT_CHAIN_AUTO_LOG_FREE_FLAG","features":[70]},{"name":"CERT_CHAIN_AUTO_NETWORK_INFO","features":[70]},{"name":"CERT_CHAIN_AUTO_PINRULE_INFO","features":[70]},{"name":"CERT_CHAIN_AUTO_PROCESS_INFO","features":[70]},{"name":"CERT_CHAIN_AUTO_SERIAL_LOCAL_MACHINE","features":[70]},{"name":"CERT_CHAIN_CACHE_END_CERT","features":[70]},{"name":"CERT_CHAIN_CACHE_ONLY_URL_RETRIEVAL","features":[70]},{"name":"CERT_CHAIN_CACHE_RESYNC_FILETIME_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_CONFIG_REGPATH","features":[70]},{"name":"CERT_CHAIN_CONTEXT","features":[3,70]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_DEFAULT","features":[70]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_CROSS_CERT_DOWNLOAD_INTERVAL_HOURS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_DEFAULT_CONFIG_SUBDIR","features":[70]},{"name":"CERT_CHAIN_DISABLE_AIA","features":[70]},{"name":"CERT_CHAIN_DISABLE_AIA_URL_RETRIEVAL_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_DISABLE_ALL_EKU_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_AUTH_ROOT_AUTO_UPDATE","features":[70]},{"name":"CERT_CHAIN_DISABLE_AUTO_FLUSH_PROCESS_NAME_LIST_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_DISABLE_CA_NAME_CONSTRAINTS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_DISABLE_CODE_SIGNING_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_ECC_PARA_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_FILE_HASH_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_MANDATORY_BASIC_CONSTRAINTS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_DISABLE_MD2_MD4","features":[70]},{"name":"CERT_CHAIN_DISABLE_MOTW_CODE_SIGNING_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_MOTW_FILE_HASH_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_HASH_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_MY_PEER_TRUST","features":[70]},{"name":"CERT_CHAIN_DISABLE_OPT_IN_SERVER_AUTH_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_PASS1_QUALITY_FILTERING","features":[70]},{"name":"CERT_CHAIN_DISABLE_SERIAL_CHAIN_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_DISABLE_SERVER_AUTH_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_SYNC_WITH_SSL_TIME_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_HASH_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_DISABLE_UNSUPPORTED_CRITICAL_EXTENSIONS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_ELEMENT","features":[3,70]},{"name":"CERT_CHAIN_ENABLE_ALL_EKU_HYGIENE_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_CACHE_AUTO_UPDATE","features":[70]},{"name":"CERT_CHAIN_ENABLE_CODE_SIGNING_HYGIENE_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_DISALLOWED_CA","features":[70]},{"name":"CERT_CHAIN_ENABLE_MD2_MD4_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_MOTW_CODE_SIGNING_HYGIENE_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_MOTW_TIMESTAMP_HYGIENE_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_ONLY_WEAK_LOGGING_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_PEER_TRUST","features":[70]},{"name":"CERT_CHAIN_ENABLE_SERVER_AUTH_HYGIENE_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_SHARE_STORE","features":[70]},{"name":"CERT_CHAIN_ENABLE_TIMESTAMP_HYGIENE_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_WEAK_LOGGING_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_WEAK_RSA_ROOT_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_WEAK_SETTINGS_FLAG","features":[70]},{"name":"CERT_CHAIN_ENABLE_WEAK_SIGNATURE_FLAGS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_ENGINE_CONFIG","features":[70]},{"name":"CERT_CHAIN_EXCLUSIVE_ENABLE_CA_FLAG","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG","features":[70]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_PARA","features":[3,70]},{"name":"CERT_CHAIN_HAS_MOTW","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_DEFAULT","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_DEFAULT","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_DEFAULT","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_DEFAULT","features":[70]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DEFAULT","features":[70]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DISABLE","features":[70]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_MAX_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_MIN_PUB_KEY_BIT_LENGTH_DISABLE","features":[70]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DEFAULT","features":[70]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DISABLE","features":[70]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_MOTW_IGNORE_AFTER_TIME_WEAK_FLAG","features":[70]},{"name":"CERT_CHAIN_OCSP_VALIDITY_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_ONLY_ADDITIONAL_AND_AUTH_ROOT","features":[70]},{"name":"CERT_CHAIN_OPTIONS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_OPTION_DISABLE_AIA_URL_RETRIEVAL","features":[70]},{"name":"CERT_CHAIN_OPTION_ENABLE_SIA_URL_RETRIEVAL","features":[70]},{"name":"CERT_CHAIN_OPT_IN_WEAK_FLAGS","features":[70]},{"name":"CERT_CHAIN_OPT_IN_WEAK_SIGNATURE","features":[70]},{"name":"CERT_CHAIN_PARA","features":[70]},{"name":"CERT_CHAIN_POLICY_ALLOW_TESTROOT_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_ALLOW_UNKNOWN_CA_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE","features":[70]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE_TS","features":[70]},{"name":"CERT_CHAIN_POLICY_BASE","features":[70]},{"name":"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS","features":[70]},{"name":"CERT_CHAIN_POLICY_EV","features":[70]},{"name":"CERT_CHAIN_POLICY_FLAGS","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_NOT_TIME_VALID_FLAGS","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_REV_UNKNOWN_FLAGS","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_CA_REV_UNKNOWN_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_NOT_TIME_VALID_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_SIGNER_REV_UNKNOWN_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_END_REV_UNKNOWN_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_BASIC_CONSTRAINTS_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_NAME_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_POLICY_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_SUPPORTED_CRITICAL_EXT_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_NESTED_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_VALID_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_PEER_TRUST_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_ROOT_REV_UNKNOWN_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_WEAK_SIGNATURE_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_IGNORE_WRONG_USAGE_FLAG","features":[70]},{"name":"CERT_CHAIN_POLICY_MICROSOFT_ROOT","features":[70]},{"name":"CERT_CHAIN_POLICY_NT_AUTH","features":[70]},{"name":"CERT_CHAIN_POLICY_PARA","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_F12","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ERROR_LEVEL","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_F12_NONE_CATEGORY","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ROOT_PROGRAM_CATEGORY","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_F12_SUCCESS_LEVEL","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WARNING_LEVEL","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WEAK_CRYPTO_CATEGORY","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_HPKP_HEADER","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_ERROR","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_WARNING","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_ERROR","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_WARNING","features":[70]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_SUCCESS","features":[70]},{"name":"CERT_CHAIN_POLICY_STATUS","features":[70]},{"name":"CERT_CHAIN_POLICY_THIRD_PARTY_ROOT","features":[70]},{"name":"CERT_CHAIN_POLICY_TRUST_TESTROOT_FLAG","features":[70]},{"name":"CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS","features":[70]},{"name":"CERT_CHAIN_REVOCATION_ACCUMULATIVE_TIMEOUT","features":[70]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CACHE_ONLY","features":[70]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN","features":[70]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[70]},{"name":"CERT_CHAIN_REVOCATION_CHECK_END_CERT","features":[70]},{"name":"CERT_CHAIN_REVOCATION_CHECK_OCSP_CERT","features":[70]},{"name":"CERT_CHAIN_REV_ACCUMULATIVE_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_SERIAL_CHAIN_LOG_FILE_NAME_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_SSL_HANDSHAKE_LOG_FILE_NAME_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_STRONG_SIGN_DISABLE_END_CHECK_FLAG","features":[70]},{"name":"CERT_CHAIN_THREAD_STORE_SYNC","features":[70]},{"name":"CERT_CHAIN_TIMESTAMP_TIME","features":[70]},{"name":"CERT_CHAIN_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_USE_LOCAL_MACHINE_STORE","features":[70]},{"name":"CERT_CHAIN_WEAK_AFTER_TIME_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_ALL_CONFIG_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_FILE_HASH_AFTER_TIME_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_FLAGS_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_HYGIENE_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_MIN_BIT_LENGTH_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_PREFIX_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_RSA_PUB_KEY_TIME_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_SHA256_ALLOW_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_SIGNATURE_LOG_DIR_VALUE_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_THIRD_PARTY_CONFIG_NAME","features":[70]},{"name":"CERT_CHAIN_WEAK_TIMESTAMP_HASH_AFTER_TIME_NAME","features":[70]},{"name":"CERT_CLOSE_STORE_CHECK_FLAG","features":[70]},{"name":"CERT_CLOSE_STORE_FORCE_FLAG","features":[70]},{"name":"CERT_CLR_DELETE_KEY_PROP_ID","features":[70]},{"name":"CERT_COMPARE_ANY","features":[70]},{"name":"CERT_COMPARE_ATTR","features":[70]},{"name":"CERT_COMPARE_CERT_ID","features":[70]},{"name":"CERT_COMPARE_CROSS_CERT_DIST_POINTS","features":[70]},{"name":"CERT_COMPARE_CTL_USAGE","features":[70]},{"name":"CERT_COMPARE_ENHKEY_USAGE","features":[70]},{"name":"CERT_COMPARE_EXISTING","features":[70]},{"name":"CERT_COMPARE_HASH","features":[70]},{"name":"CERT_COMPARE_HASH_STR","features":[70]},{"name":"CERT_COMPARE_HAS_PRIVATE_KEY","features":[70]},{"name":"CERT_COMPARE_ISSUER_OF","features":[70]},{"name":"CERT_COMPARE_KEY_IDENTIFIER","features":[70]},{"name":"CERT_COMPARE_KEY_SPEC","features":[70]},{"name":"CERT_COMPARE_MASK","features":[70]},{"name":"CERT_COMPARE_MD5_HASH","features":[70]},{"name":"CERT_COMPARE_NAME","features":[70]},{"name":"CERT_COMPARE_NAME_STR_A","features":[70]},{"name":"CERT_COMPARE_NAME_STR_W","features":[70]},{"name":"CERT_COMPARE_PROPERTY","features":[70]},{"name":"CERT_COMPARE_PUBKEY_MD5_HASH","features":[70]},{"name":"CERT_COMPARE_PUBLIC_KEY","features":[70]},{"name":"CERT_COMPARE_SHA1_HASH","features":[70]},{"name":"CERT_COMPARE_SHIFT","features":[70]},{"name":"CERT_COMPARE_SIGNATURE_HASH","features":[70]},{"name":"CERT_COMPARE_SUBJECT_CERT","features":[70]},{"name":"CERT_COMPARE_SUBJECT_INFO_ACCESS","features":[70]},{"name":"CERT_CONTEXT","features":[3,70]},{"name":"CERT_CONTEXT_REVOCATION_TYPE","features":[70]},{"name":"CERT_CONTROL_STORE_FLAGS","features":[70]},{"name":"CERT_CREATE_CONTEXT_NOCOPY_FLAG","features":[70]},{"name":"CERT_CREATE_CONTEXT_NO_ENTRY_FLAG","features":[70]},{"name":"CERT_CREATE_CONTEXT_NO_HCRYPTMSG_FLAG","features":[70]},{"name":"CERT_CREATE_CONTEXT_PARA","features":[3,70]},{"name":"CERT_CREATE_CONTEXT_SORTED_FLAG","features":[70]},{"name":"CERT_CREATE_SELFSIGN_FLAGS","features":[70]},{"name":"CERT_CREATE_SELFSIGN_NO_KEY_INFO","features":[70]},{"name":"CERT_CREATE_SELFSIGN_NO_SIGN","features":[70]},{"name":"CERT_CRL_CONTEXT_PAIR","features":[3,70]},{"name":"CERT_CRL_SIGN_KEY_USAGE","features":[70]},{"name":"CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[70]},{"name":"CERT_CTL_USAGE_PROP_ID","features":[70]},{"name":"CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[70]},{"name":"CERT_DATE_STAMP_PROP_ID","features":[70]},{"name":"CERT_DECIPHER_ONLY_KEY_USAGE","features":[70]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_SIGN","features":[70]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_XCHG","features":[70]},{"name":"CERT_DESCRIPTION_PROP_ID","features":[70]},{"name":"CERT_DH_PARAMETERS","features":[70]},{"name":"CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[70]},{"name":"CERT_DISABLE_PIN_RULES_AUTO_UPDATE_VALUE_NAME","features":[70]},{"name":"CERT_DISABLE_ROOT_AUTO_UPDATE_VALUE_NAME","features":[70]},{"name":"CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[70]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[70]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[70]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LIST_IDENTIFIER","features":[70]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[70]},{"name":"CERT_DISALLOWED_CERT_CAB_FILENAME","features":[70]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME","features":[70]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME_A","features":[70]},{"name":"CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[70]},{"name":"CERT_DISALLOWED_FILETIME_PROP_ID","features":[70]},{"name":"CERT_DSS_PARAMETERS","features":[70]},{"name":"CERT_DSS_R_LEN","features":[70]},{"name":"CERT_DSS_S_LEN","features":[70]},{"name":"CERT_ECC_SIGNATURE","features":[70]},{"name":"CERT_EFSBLOB_VALUE_NAME","features":[70]},{"name":"CERT_EFS_PROP_ID","features":[70]},{"name":"CERT_ENABLE_DISALLOWED_CERT_AUTO_UPDATE_VALUE_NAME","features":[70]},{"name":"CERT_ENCIPHER_ONLY_KEY_USAGE","features":[70]},{"name":"CERT_ENCODING_TYPE_MASK","features":[70]},{"name":"CERT_END_ENTITY_SUBJECT_FLAG","features":[70]},{"name":"CERT_ENHKEY_USAGE_PROP_ID","features":[70]},{"name":"CERT_ENROLLMENT_PROP_ID","features":[70]},{"name":"CERT_EXCLUDED_SUBTREE_BIT","features":[70]},{"name":"CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[70]},{"name":"CERT_EXTENSION","features":[3,70]},{"name":"CERT_EXTENSIONS","features":[3,70]},{"name":"CERT_FILE_HASH_USE_TYPE","features":[70]},{"name":"CERT_FILE_STORE_COMMIT_ENABLE_FLAG","features":[70]},{"name":"CERT_FIND_ANY","features":[70]},{"name":"CERT_FIND_CERT_ID","features":[70]},{"name":"CERT_FIND_CHAIN_IN_STORE_FLAGS","features":[70]},{"name":"CERT_FIND_CROSS_CERT_DIST_POINTS","features":[70]},{"name":"CERT_FIND_CTL_USAGE","features":[70]},{"name":"CERT_FIND_ENHKEY_USAGE","features":[70]},{"name":"CERT_FIND_EXISTING","features":[70]},{"name":"CERT_FIND_EXT_ONLY_CTL_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_FLAGS","features":[70]},{"name":"CERT_FIND_HASH","features":[70]},{"name":"CERT_FIND_HASH_STR","features":[70]},{"name":"CERT_FIND_HAS_PRIVATE_KEY","features":[70]},{"name":"CERT_FIND_ISSUER_ATTR","features":[70]},{"name":"CERT_FIND_ISSUER_NAME","features":[70]},{"name":"CERT_FIND_ISSUER_OF","features":[70]},{"name":"CERT_FIND_ISSUER_STR","features":[70]},{"name":"CERT_FIND_ISSUER_STR_A","features":[70]},{"name":"CERT_FIND_ISSUER_STR_W","features":[70]},{"name":"CERT_FIND_KEY_IDENTIFIER","features":[70]},{"name":"CERT_FIND_KEY_SPEC","features":[70]},{"name":"CERT_FIND_MD5_HASH","features":[70]},{"name":"CERT_FIND_NO_CTL_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_NO_ENHKEY_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_OPTIONAL_CTL_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_OR_CTL_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_OR_ENHKEY_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_PROPERTY","features":[70]},{"name":"CERT_FIND_PROP_ONLY_CTL_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_PUBKEY_MD5_HASH","features":[70]},{"name":"CERT_FIND_PUBLIC_KEY","features":[70]},{"name":"CERT_FIND_SHA1_HASH","features":[70]},{"name":"CERT_FIND_SIGNATURE_HASH","features":[70]},{"name":"CERT_FIND_SUBJECT_ATTR","features":[70]},{"name":"CERT_FIND_SUBJECT_CERT","features":[70]},{"name":"CERT_FIND_SUBJECT_INFO_ACCESS","features":[70]},{"name":"CERT_FIND_SUBJECT_NAME","features":[70]},{"name":"CERT_FIND_SUBJECT_STR","features":[70]},{"name":"CERT_FIND_SUBJECT_STR_A","features":[70]},{"name":"CERT_FIND_SUBJECT_STR_W","features":[70]},{"name":"CERT_FIND_TYPE","features":[70]},{"name":"CERT_FIND_VALID_CTL_USAGE_FLAG","features":[70]},{"name":"CERT_FIND_VALID_ENHKEY_USAGE_FLAG","features":[70]},{"name":"CERT_FIRST_RESERVED_PROP_ID","features":[70]},{"name":"CERT_FIRST_USER_PROP_ID","features":[70]},{"name":"CERT_FORTEZZA_DATA_PROP","features":[70]},{"name":"CERT_FORTEZZA_DATA_PROP_ID","features":[70]},{"name":"CERT_FRIENDLY_NAME_PROP_ID","features":[70]},{"name":"CERT_GENERAL_SUBTREE","features":[3,70]},{"name":"CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH","features":[70]},{"name":"CERT_HASHED_URL","features":[70]},{"name":"CERT_HASH_PROP_ID","features":[70]},{"name":"CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[70]},{"name":"CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[70]},{"name":"CERT_ID","features":[70]},{"name":"CERT_ID_ISSUER_SERIAL_NUMBER","features":[70]},{"name":"CERT_ID_KEY_IDENTIFIER","features":[70]},{"name":"CERT_ID_OPTION","features":[70]},{"name":"CERT_ID_SHA1_HASH","features":[70]},{"name":"CERT_IE30_RESERVED_PROP_ID","features":[70]},{"name":"CERT_IE_DIRTY_FLAGS_REGPATH","features":[70]},{"name":"CERT_INFO","features":[3,70]},{"name":"CERT_INFO_EXTENSION_FLAG","features":[70]},{"name":"CERT_INFO_ISSUER_FLAG","features":[70]},{"name":"CERT_INFO_ISSUER_UNIQUE_ID_FLAG","features":[70]},{"name":"CERT_INFO_NOT_AFTER_FLAG","features":[70]},{"name":"CERT_INFO_NOT_BEFORE_FLAG","features":[70]},{"name":"CERT_INFO_SERIAL_NUMBER_FLAG","features":[70]},{"name":"CERT_INFO_SIGNATURE_ALGORITHM_FLAG","features":[70]},{"name":"CERT_INFO_SUBJECT_FLAG","features":[70]},{"name":"CERT_INFO_SUBJECT_PUBLIC_KEY_INFO_FLAG","features":[70]},{"name":"CERT_INFO_SUBJECT_UNIQUE_ID_FLAG","features":[70]},{"name":"CERT_INFO_VERSION_FLAG","features":[70]},{"name":"CERT_ISOLATED_KEY_PROP_ID","features":[70]},{"name":"CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[70]},{"name":"CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[70]},{"name":"CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[70]},{"name":"CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[70]},{"name":"CERT_ISSUER_SERIAL_NUMBER","features":[70]},{"name":"CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[70]},{"name":"CERT_KEYGEN_REQUEST_INFO","features":[70]},{"name":"CERT_KEYGEN_REQUEST_V1","features":[70]},{"name":"CERT_KEY_AGREEMENT_KEY_USAGE","features":[70]},{"name":"CERT_KEY_ATTRIBUTES_INFO","features":[3,70]},{"name":"CERT_KEY_CERT_SIGN_KEY_USAGE","features":[70]},{"name":"CERT_KEY_CLASSIFICATION_PROP_ID","features":[70]},{"name":"CERT_KEY_CONTEXT","features":[70]},{"name":"CERT_KEY_CONTEXT_PROP_ID","features":[70]},{"name":"CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[70]},{"name":"CERT_KEY_IDENTIFIER_PROP_ID","features":[70]},{"name":"CERT_KEY_PROV_HANDLE_PROP_ID","features":[70]},{"name":"CERT_KEY_PROV_INFO_PROP_ID","features":[70]},{"name":"CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[70]},{"name":"CERT_KEY_SPEC","features":[70]},{"name":"CERT_KEY_SPEC_PROP_ID","features":[70]},{"name":"CERT_KEY_USAGE_RESTRICTION_INFO","features":[70]},{"name":"CERT_LAST_RESERVED_PROP_ID","features":[70]},{"name":"CERT_LAST_USER_PROP_ID","features":[70]},{"name":"CERT_LDAP_STORE_AREC_EXCLUSIVE_FLAG","features":[70]},{"name":"CERT_LDAP_STORE_OPENED_FLAG","features":[70]},{"name":"CERT_LDAP_STORE_OPENED_PARA","features":[70]},{"name":"CERT_LDAP_STORE_SIGN_FLAG","features":[70]},{"name":"CERT_LDAP_STORE_UNBIND_FLAG","features":[70]},{"name":"CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH","features":[70]},{"name":"CERT_LOGOTYPE_AUDIO","features":[70]},{"name":"CERT_LOGOTYPE_AUDIO_INFO","features":[70]},{"name":"CERT_LOGOTYPE_BITS_IMAGE_RESOLUTION_CHOICE","features":[70]},{"name":"CERT_LOGOTYPE_CHOICE","features":[70]},{"name":"CERT_LOGOTYPE_COLOR_IMAGE_INFO_CHOICE","features":[70]},{"name":"CERT_LOGOTYPE_DATA","features":[70]},{"name":"CERT_LOGOTYPE_DETAILS","features":[70]},{"name":"CERT_LOGOTYPE_DIRECT_INFO_CHOICE","features":[70]},{"name":"CERT_LOGOTYPE_EXT_INFO","features":[70]},{"name":"CERT_LOGOTYPE_GRAY_SCALE_IMAGE_INFO_CHOICE","features":[70]},{"name":"CERT_LOGOTYPE_IMAGE","features":[70]},{"name":"CERT_LOGOTYPE_IMAGE_INFO","features":[70]},{"name":"CERT_LOGOTYPE_IMAGE_INFO_TYPE","features":[70]},{"name":"CERT_LOGOTYPE_INDIRECT_INFO_CHOICE","features":[70]},{"name":"CERT_LOGOTYPE_INFO","features":[70]},{"name":"CERT_LOGOTYPE_NO_IMAGE_RESOLUTION_CHOICE","features":[70]},{"name":"CERT_LOGOTYPE_OPTION","features":[70]},{"name":"CERT_LOGOTYPE_REFERENCE","features":[70]},{"name":"CERT_LOGOTYPE_TABLE_SIZE_IMAGE_RESOLUTION_CHOICE","features":[70]},{"name":"CERT_MD5_HASH_PROP_ID","features":[70]},{"name":"CERT_NAME_ATTR_TYPE","features":[70]},{"name":"CERT_NAME_CONSTRAINTS_INFO","features":[3,70]},{"name":"CERT_NAME_DISABLE_IE4_UTF8_FLAG","features":[70]},{"name":"CERT_NAME_DNS_TYPE","features":[70]},{"name":"CERT_NAME_EMAIL_TYPE","features":[70]},{"name":"CERT_NAME_FRIENDLY_DISPLAY_TYPE","features":[70]},{"name":"CERT_NAME_INFO","features":[70]},{"name":"CERT_NAME_ISSUER_FLAG","features":[70]},{"name":"CERT_NAME_RDN_TYPE","features":[70]},{"name":"CERT_NAME_SEARCH_ALL_NAMES_FLAG","features":[70]},{"name":"CERT_NAME_SIMPLE_DISPLAY_TYPE","features":[70]},{"name":"CERT_NAME_STR_COMMA_FLAG","features":[70]},{"name":"CERT_NAME_STR_CRLF_FLAG","features":[70]},{"name":"CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[70]},{"name":"CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[70]},{"name":"CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[70]},{"name":"CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[70]},{"name":"CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[70]},{"name":"CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[70]},{"name":"CERT_NAME_STR_FORWARD_FLAG","features":[70]},{"name":"CERT_NAME_STR_NO_PLUS_FLAG","features":[70]},{"name":"CERT_NAME_STR_NO_QUOTING_FLAG","features":[70]},{"name":"CERT_NAME_STR_REVERSE_FLAG","features":[70]},{"name":"CERT_NAME_STR_SEMICOLON_FLAG","features":[70]},{"name":"CERT_NAME_UPN_TYPE","features":[70]},{"name":"CERT_NAME_URL_TYPE","features":[70]},{"name":"CERT_NAME_VALUE","features":[70]},{"name":"CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[70]},{"name":"CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[70]},{"name":"CERT_NCRYPT_KEY_SPEC","features":[70]},{"name":"CERT_NEW_KEY_PROP_ID","features":[70]},{"name":"CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[70]},{"name":"CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[70]},{"name":"CERT_NON_REPUDIATION_KEY_USAGE","features":[70]},{"name":"CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[70]},{"name":"CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[70]},{"name":"CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[70]},{"name":"CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[70]},{"name":"CERT_OCM_SUBCOMPONENTS_LOCAL_MACHINE_REGPATH","features":[70]},{"name":"CERT_OCM_SUBCOMPONENTS_ROOT_AUTO_UPDATE_VALUE_NAME","features":[70]},{"name":"CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[70]},{"name":"CERT_OCSP_MUST_STAPLE_PROP_ID","features":[70]},{"name":"CERT_OCSP_RESPONSE_PROP_ID","features":[70]},{"name":"CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[70]},{"name":"CERT_OID_NAME_STR","features":[70]},{"name":"CERT_OPEN_STORE_FLAGS","features":[70]},{"name":"CERT_OR_CRL_BLOB","features":[70]},{"name":"CERT_OR_CRL_BUNDLE","features":[70]},{"name":"CERT_OTHER_LOGOTYPE_INFO","features":[70]},{"name":"CERT_OTHER_NAME","features":[70]},{"name":"CERT_PAIR","features":[70]},{"name":"CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG","features":[70]},{"name":"CERT_PHYSICAL_STORE_AUTH_ROOT_NAME","features":[70]},{"name":"CERT_PHYSICAL_STORE_DEFAULT_NAME","features":[70]},{"name":"CERT_PHYSICAL_STORE_DS_USER_CERTIFICATE_NAME","features":[70]},{"name":"CERT_PHYSICAL_STORE_ENTERPRISE_NAME","features":[70]},{"name":"CERT_PHYSICAL_STORE_GROUP_POLICY_NAME","features":[70]},{"name":"CERT_PHYSICAL_STORE_INFO","features":[70]},{"name":"CERT_PHYSICAL_STORE_INSERT_COMPUTER_NAME_ENABLE_FLAG","features":[70]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_GROUP_POLICY_NAME","features":[70]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_NAME","features":[70]},{"name":"CERT_PHYSICAL_STORE_OPEN_DISABLE_FLAG","features":[70]},{"name":"CERT_PHYSICAL_STORE_PREDEFINED_ENUM_FLAG","features":[70]},{"name":"CERT_PHYSICAL_STORE_REMOTE_OPEN_DISABLE_FLAG","features":[70]},{"name":"CERT_PHYSICAL_STORE_SMART_CARD_NAME","features":[70]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[70]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[70]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LIST_IDENTIFIER","features":[70]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[70]},{"name":"CERT_PIN_RULES_CAB_FILENAME","features":[70]},{"name":"CERT_PIN_RULES_CTL_FILENAME","features":[70]},{"name":"CERT_PIN_RULES_CTL_FILENAME_A","features":[70]},{"name":"CERT_PIN_SHA256_HASH_PROP_ID","features":[70]},{"name":"CERT_POLICIES_INFO","features":[70]},{"name":"CERT_POLICY95_QUALIFIER1","features":[70]},{"name":"CERT_POLICY_CONSTRAINTS_INFO","features":[3,70]},{"name":"CERT_POLICY_ID","features":[70]},{"name":"CERT_POLICY_INFO","features":[70]},{"name":"CERT_POLICY_MAPPING","features":[70]},{"name":"CERT_POLICY_MAPPINGS_INFO","features":[70]},{"name":"CERT_POLICY_QUALIFIER_INFO","features":[70]},{"name":"CERT_POLICY_QUALIFIER_NOTICE_REFERENCE","features":[70]},{"name":"CERT_POLICY_QUALIFIER_USER_NOTICE","features":[70]},{"name":"CERT_PRIVATE_KEY_VALIDITY","features":[3,70]},{"name":"CERT_PROT_ROOT_DISABLE_CURRENT_USER_FLAG","features":[70]},{"name":"CERT_PROT_ROOT_DISABLE_LM_AUTH_FLAG","features":[70]},{"name":"CERT_PROT_ROOT_DISABLE_NOT_DEFINED_NAME_CONSTRAINT_FLAG","features":[70]},{"name":"CERT_PROT_ROOT_DISABLE_NT_AUTH_REQUIRED_FLAG","features":[70]},{"name":"CERT_PROT_ROOT_DISABLE_PEER_TRUST","features":[70]},{"name":"CERT_PROT_ROOT_FLAGS_VALUE_NAME","features":[70]},{"name":"CERT_PROT_ROOT_INHIBIT_ADD_AT_INIT_FLAG","features":[70]},{"name":"CERT_PROT_ROOT_INHIBIT_PURGE_LM_FLAG","features":[70]},{"name":"CERT_PROT_ROOT_ONLY_LM_GPT_FLAG","features":[70]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME","features":[70]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME_A","features":[70]},{"name":"CERT_PUBKEY_ALG_PARA_PROP_ID","features":[70]},{"name":"CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[70]},{"name":"CERT_PUBLIC_KEY_INFO","features":[70]},{"name":"CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[70]},{"name":"CERT_PVK_FILE_PROP_ID","features":[70]},{"name":"CERT_QC_STATEMENT","features":[70]},{"name":"CERT_QC_STATEMENTS_EXT_INFO","features":[70]},{"name":"CERT_QUERY_CONTENT_CERT","features":[70]},{"name":"CERT_QUERY_CONTENT_CERT_PAIR","features":[70]},{"name":"CERT_QUERY_CONTENT_CRL","features":[70]},{"name":"CERT_QUERY_CONTENT_CTL","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL_ISSUER_CERT","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT_PAIR","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_CRL","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_CTL","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX_AND_LOAD","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS10","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED_EMBED","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CERT","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CRL","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CTL","features":[70]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_STORE","features":[70]},{"name":"CERT_QUERY_CONTENT_PFX","features":[70]},{"name":"CERT_QUERY_CONTENT_PFX_AND_LOAD","features":[70]},{"name":"CERT_QUERY_CONTENT_PKCS10","features":[70]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED","features":[70]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED","features":[70]},{"name":"CERT_QUERY_CONTENT_PKCS7_UNSIGNED","features":[70]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CERT","features":[70]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CRL","features":[70]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CTL","features":[70]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_STORE","features":[70]},{"name":"CERT_QUERY_CONTENT_TYPE","features":[70]},{"name":"CERT_QUERY_CONTENT_TYPE_FLAGS","features":[70]},{"name":"CERT_QUERY_ENCODING_TYPE","features":[70]},{"name":"CERT_QUERY_FORMAT_ASN_ASCII_HEX_ENCODED","features":[70]},{"name":"CERT_QUERY_FORMAT_BASE64_ENCODED","features":[70]},{"name":"CERT_QUERY_FORMAT_BINARY","features":[70]},{"name":"CERT_QUERY_FORMAT_FLAG_ALL","features":[70]},{"name":"CERT_QUERY_FORMAT_FLAG_ASN_ASCII_HEX_ENCODED","features":[70]},{"name":"CERT_QUERY_FORMAT_FLAG_BASE64_ENCODED","features":[70]},{"name":"CERT_QUERY_FORMAT_FLAG_BINARY","features":[70]},{"name":"CERT_QUERY_FORMAT_TYPE","features":[70]},{"name":"CERT_QUERY_FORMAT_TYPE_FLAGS","features":[70]},{"name":"CERT_QUERY_OBJECT_BLOB","features":[70]},{"name":"CERT_QUERY_OBJECT_FILE","features":[70]},{"name":"CERT_QUERY_OBJECT_TYPE","features":[70]},{"name":"CERT_RDN","features":[70]},{"name":"CERT_RDN_ANY_TYPE","features":[70]},{"name":"CERT_RDN_ATTR","features":[70]},{"name":"CERT_RDN_ATTR_VALUE_TYPE","features":[70]},{"name":"CERT_RDN_BMP_STRING","features":[70]},{"name":"CERT_RDN_DISABLE_CHECK_TYPE_FLAG","features":[70]},{"name":"CERT_RDN_DISABLE_IE4_UTF8_FLAG","features":[70]},{"name":"CERT_RDN_ENABLE_PUNYCODE_FLAG","features":[70]},{"name":"CERT_RDN_ENABLE_T61_UNICODE_FLAG","features":[70]},{"name":"CERT_RDN_ENABLE_UTF8_UNICODE_FLAG","features":[70]},{"name":"CERT_RDN_ENCODED_BLOB","features":[70]},{"name":"CERT_RDN_FLAGS_MASK","features":[70]},{"name":"CERT_RDN_FORCE_UTF8_UNICODE_FLAG","features":[70]},{"name":"CERT_RDN_GENERAL_STRING","features":[70]},{"name":"CERT_RDN_GRAPHIC_STRING","features":[70]},{"name":"CERT_RDN_IA5_STRING","features":[70]},{"name":"CERT_RDN_INT4_STRING","features":[70]},{"name":"CERT_RDN_ISO646_STRING","features":[70]},{"name":"CERT_RDN_NUMERIC_STRING","features":[70]},{"name":"CERT_RDN_OCTET_STRING","features":[70]},{"name":"CERT_RDN_PRINTABLE_STRING","features":[70]},{"name":"CERT_RDN_T61_STRING","features":[70]},{"name":"CERT_RDN_TELETEX_STRING","features":[70]},{"name":"CERT_RDN_TYPE_MASK","features":[70]},{"name":"CERT_RDN_UNICODE_STRING","features":[70]},{"name":"CERT_RDN_UNIVERSAL_STRING","features":[70]},{"name":"CERT_RDN_UTF8_STRING","features":[70]},{"name":"CERT_RDN_VIDEOTEX_STRING","features":[70]},{"name":"CERT_RDN_VISIBLE_STRING","features":[70]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_FLAG","features":[70]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_PARA","features":[70,51]},{"name":"CERT_REGISTRY_STORE_EXTERNAL_FLAG","features":[70]},{"name":"CERT_REGISTRY_STORE_LM_GPT_FLAG","features":[70]},{"name":"CERT_REGISTRY_STORE_MY_IE_DIRTY_FLAG","features":[70]},{"name":"CERT_REGISTRY_STORE_REMOTE_FLAG","features":[70]},{"name":"CERT_REGISTRY_STORE_ROAMING_FLAG","features":[70]},{"name":"CERT_REGISTRY_STORE_ROAMING_PARA","features":[70,51]},{"name":"CERT_REGISTRY_STORE_SERIALIZED_FLAG","features":[70]},{"name":"CERT_RENEWAL_PROP_ID","features":[70]},{"name":"CERT_REQUEST_INFO","features":[70]},{"name":"CERT_REQUEST_ORIGINATOR_PROP_ID","features":[70]},{"name":"CERT_REQUEST_V1","features":[70]},{"name":"CERT_RETRIEVE_BIOMETRIC_PREDEFINED_BASE_TYPE","features":[70]},{"name":"CERT_RETRIEVE_COMMUNITY_LOGO","features":[70]},{"name":"CERT_RETRIEVE_ISSUER_LOGO","features":[70]},{"name":"CERT_RETRIEVE_SUBJECT_LOGO","features":[70]},{"name":"CERT_RETR_BEHAVIOR_FILE_VALUE_NAME","features":[70]},{"name":"CERT_RETR_BEHAVIOR_INET_AUTH_VALUE_NAME","features":[70]},{"name":"CERT_RETR_BEHAVIOR_INET_STATUS_VALUE_NAME","features":[70]},{"name":"CERT_RETR_BEHAVIOR_LDAP_VALUE_NAME","features":[70]},{"name":"CERT_REVOCATION_CHAIN_PARA","features":[3,70]},{"name":"CERT_REVOCATION_CRL_INFO","features":[3,70]},{"name":"CERT_REVOCATION_INFO","features":[3,70]},{"name":"CERT_REVOCATION_PARA","features":[3,70]},{"name":"CERT_REVOCATION_STATUS","features":[3,70]},{"name":"CERT_REVOCATION_STATUS_REASON","features":[70]},{"name":"CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[70]},{"name":"CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[70]},{"name":"CERT_ROOT_PROGRAM_FLAGS","features":[70]},{"name":"CERT_ROOT_PROGRAM_FLAG_ADDRESS","features":[70]},{"name":"CERT_ROOT_PROGRAM_FLAG_LSC","features":[70]},{"name":"CERT_ROOT_PROGRAM_FLAG_ORG","features":[70]},{"name":"CERT_ROOT_PROGRAM_FLAG_OU","features":[70]},{"name":"CERT_ROOT_PROGRAM_FLAG_SUBJECT_LOGO","features":[70]},{"name":"CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[70]},{"name":"CERT_RSA_PUBLIC_KEY_OBJID","features":[70]},{"name":"CERT_SCARD_PIN_ID_PROP_ID","features":[70]},{"name":"CERT_SCARD_PIN_INFO_PROP_ID","features":[70]},{"name":"CERT_SCEP_CA_CERT_PROP_ID","features":[70]},{"name":"CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[70]},{"name":"CERT_SCEP_FLAGS_PROP_ID","features":[70]},{"name":"CERT_SCEP_GUID_PROP_ID","features":[70]},{"name":"CERT_SCEP_NONCE_PROP_ID","features":[70]},{"name":"CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[70]},{"name":"CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[70]},{"name":"CERT_SCEP_SERVER_CERTS_PROP_ID","features":[70]},{"name":"CERT_SCEP_SIGNER_CERT_PROP_ID","features":[70]},{"name":"CERT_SELECT_ALLOW_DUPLICATES","features":[70]},{"name":"CERT_SELECT_ALLOW_EXPIRED","features":[70]},{"name":"CERT_SELECT_BY_ENHKEY_USAGE","features":[70]},{"name":"CERT_SELECT_BY_EXTENSION","features":[70]},{"name":"CERT_SELECT_BY_FRIENDLYNAME","features":[70]},{"name":"CERT_SELECT_BY_ISSUER_ATTR","features":[70]},{"name":"CERT_SELECT_BY_ISSUER_DISPLAYNAME","features":[70]},{"name":"CERT_SELECT_BY_ISSUER_NAME","features":[70]},{"name":"CERT_SELECT_BY_KEY_USAGE","features":[70]},{"name":"CERT_SELECT_BY_POLICY_OID","features":[70]},{"name":"CERT_SELECT_BY_PROV_NAME","features":[70]},{"name":"CERT_SELECT_BY_PUBLIC_KEY","features":[70]},{"name":"CERT_SELECT_BY_SUBJECT_ATTR","features":[70]},{"name":"CERT_SELECT_BY_SUBJECT_HOST_NAME","features":[70]},{"name":"CERT_SELECT_BY_THUMBPRINT","features":[70]},{"name":"CERT_SELECT_BY_TLS_SIGNATURES","features":[70]},{"name":"CERT_SELECT_CHAIN_PARA","features":[3,70]},{"name":"CERT_SELECT_CRITERIA","features":[70]},{"name":"CERT_SELECT_CRITERIA_TYPE","features":[70]},{"name":"CERT_SELECT_DISALLOW_SELFSIGNED","features":[70]},{"name":"CERT_SELECT_HARDWARE_ONLY","features":[70]},{"name":"CERT_SELECT_HAS_KEY_FOR_KEY_EXCHANGE","features":[70]},{"name":"CERT_SELECT_HAS_KEY_FOR_SIGNATURE","features":[70]},{"name":"CERT_SELECT_HAS_PRIVATE_KEY","features":[70]},{"name":"CERT_SELECT_IGNORE_AUTOSELECT","features":[70]},{"name":"CERT_SELECT_MAX_PARA","features":[70]},{"name":"CERT_SELECT_TRUSTED_ROOT","features":[70]},{"name":"CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[70]},{"name":"CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[70]},{"name":"CERT_SERIAL_CHAIN_PROP_ID","features":[70]},{"name":"CERT_SERVER_OCSP_RESPONSE_ASYNC_FLAG","features":[70]},{"name":"CERT_SERVER_OCSP_RESPONSE_CONTEXT","features":[70]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA","features":[3,70]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_READ_FLAG","features":[70]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_WRITE_FLAG","features":[70]},{"name":"CERT_SET_KEY_CONTEXT_PROP_ID","features":[70]},{"name":"CERT_SET_KEY_PROV_HANDLE_PROP_ID","features":[70]},{"name":"CERT_SET_PROPERTY_IGNORE_PERSIST_ERROR_FLAG","features":[70]},{"name":"CERT_SET_PROPERTY_INHIBIT_PERSIST_FLAG","features":[70]},{"name":"CERT_SHA1_HASH_PROP_ID","features":[70]},{"name":"CERT_SHA256_HASH_PROP_ID","features":[70]},{"name":"CERT_SIGNATURE_HASH_PROP_ID","features":[70]},{"name":"CERT_SIGNED_CONTENT_INFO","features":[70]},{"name":"CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[70]},{"name":"CERT_SIMPLE_CHAIN","features":[3,70]},{"name":"CERT_SIMPLE_NAME_STR","features":[70]},{"name":"CERT_SMART_CARD_DATA_PROP_ID","features":[70]},{"name":"CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[70]},{"name":"CERT_SMART_CARD_READER_PROP_ID","features":[70]},{"name":"CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[70]},{"name":"CERT_SOURCE_LOCATION_PROP_ID","features":[70]},{"name":"CERT_SOURCE_URL_PROP_ID","features":[70]},{"name":"CERT_SRV_OCSP_RESP_MAX_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_SRV_OCSP_RESP_MAX_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_SRV_OCSP_RESP_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_SRV_OCSP_RESP_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_DEFAULT","features":[70]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_SRV_OCSP_RESP_MIN_VALIDITY_SECONDS_VALUE_NAME","features":[70]},{"name":"CERT_SRV_OCSP_RESP_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[70]},{"name":"CERT_STORE_ADD_ALWAYS","features":[70]},{"name":"CERT_STORE_ADD_NEW","features":[70]},{"name":"CERT_STORE_ADD_NEWER","features":[70]},{"name":"CERT_STORE_ADD_NEWER_INHERIT_PROPERTIES","features":[70]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING","features":[70]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES","features":[70]},{"name":"CERT_STORE_ADD_USE_EXISTING","features":[70]},{"name":"CERT_STORE_BACKUP_RESTORE_FLAG","features":[70]},{"name":"CERT_STORE_BASE_CRL_FLAG","features":[70]},{"name":"CERT_STORE_CERTIFICATE_CONTEXT","features":[70]},{"name":"CERT_STORE_CREATE_NEW_FLAG","features":[70]},{"name":"CERT_STORE_CRL_CONTEXT","features":[70]},{"name":"CERT_STORE_CTL_CONTEXT","features":[70]},{"name":"CERT_STORE_CTRL_AUTO_RESYNC","features":[70]},{"name":"CERT_STORE_CTRL_CANCEL_NOTIFY","features":[70]},{"name":"CERT_STORE_CTRL_COMMIT","features":[70]},{"name":"CERT_STORE_CTRL_COMMIT_CLEAR_FLAG","features":[70]},{"name":"CERT_STORE_CTRL_COMMIT_FORCE_FLAG","features":[70]},{"name":"CERT_STORE_CTRL_INHIBIT_DUPLICATE_HANDLE_FLAG","features":[70]},{"name":"CERT_STORE_CTRL_NOTIFY_CHANGE","features":[70]},{"name":"CERT_STORE_CTRL_RESYNC","features":[70]},{"name":"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG","features":[70]},{"name":"CERT_STORE_DELETE_FLAG","features":[70]},{"name":"CERT_STORE_DELTA_CRL_FLAG","features":[70]},{"name":"CERT_STORE_ENUM_ARCHIVED_FLAG","features":[70]},{"name":"CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[70]},{"name":"CERT_STORE_MANIFOLD_FLAG","features":[70]},{"name":"CERT_STORE_MAXIMUM_ALLOWED_FLAG","features":[70]},{"name":"CERT_STORE_NO_CRL_FLAG","features":[70]},{"name":"CERT_STORE_NO_CRYPT_RELEASE_FLAG","features":[70]},{"name":"CERT_STORE_NO_ISSUER_FLAG","features":[70]},{"name":"CERT_STORE_OPEN_EXISTING_FLAG","features":[70]},{"name":"CERT_STORE_PROV_CLOSE_FUNC","features":[70]},{"name":"CERT_STORE_PROV_COLLECTION","features":[70]},{"name":"CERT_STORE_PROV_CONTROL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_DELETED_FLAG","features":[70]},{"name":"CERT_STORE_PROV_DELETE_CERT_FUNC","features":[70]},{"name":"CERT_STORE_PROV_DELETE_CRL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_DELETE_CTL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_EXTERNAL_FLAG","features":[70]},{"name":"CERT_STORE_PROV_FILE","features":[70]},{"name":"CERT_STORE_PROV_FILENAME","features":[70]},{"name":"CERT_STORE_PROV_FILENAME_A","features":[70]},{"name":"CERT_STORE_PROV_FILENAME_W","features":[70]},{"name":"CERT_STORE_PROV_FIND_CERT_FUNC","features":[70]},{"name":"CERT_STORE_PROV_FIND_CRL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_FIND_CTL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_FIND_INFO","features":[70]},{"name":"CERT_STORE_PROV_FLAGS","features":[70]},{"name":"CERT_STORE_PROV_FREE_FIND_CERT_FUNC","features":[70]},{"name":"CERT_STORE_PROV_FREE_FIND_CRL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_FREE_FIND_CTL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_GET_CERT_PROPERTY_FUNC","features":[70]},{"name":"CERT_STORE_PROV_GET_CRL_PROPERTY_FUNC","features":[70]},{"name":"CERT_STORE_PROV_GET_CTL_PROPERTY_FUNC","features":[70]},{"name":"CERT_STORE_PROV_GP_SYSTEM_STORE_FLAG","features":[70]},{"name":"CERT_STORE_PROV_INFO","features":[70]},{"name":"CERT_STORE_PROV_LDAP","features":[70]},{"name":"CERT_STORE_PROV_LDAP_W","features":[70]},{"name":"CERT_STORE_PROV_LM_SYSTEM_STORE_FLAG","features":[70]},{"name":"CERT_STORE_PROV_MEMORY","features":[70]},{"name":"CERT_STORE_PROV_MSG","features":[70]},{"name":"CERT_STORE_PROV_NO_PERSIST_FLAG","features":[70]},{"name":"CERT_STORE_PROV_PHYSICAL","features":[70]},{"name":"CERT_STORE_PROV_PHYSICAL_W","features":[70]},{"name":"CERT_STORE_PROV_PKCS12","features":[70]},{"name":"CERT_STORE_PROV_PKCS7","features":[70]},{"name":"CERT_STORE_PROV_READ_CERT_FUNC","features":[70]},{"name":"CERT_STORE_PROV_READ_CRL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_READ_CTL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_REG","features":[70]},{"name":"CERT_STORE_PROV_SERIALIZED","features":[70]},{"name":"CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC","features":[70]},{"name":"CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC","features":[70]},{"name":"CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC","features":[70]},{"name":"CERT_STORE_PROV_SHARED_USER_FLAG","features":[70]},{"name":"CERT_STORE_PROV_SMART_CARD","features":[70]},{"name":"CERT_STORE_PROV_SMART_CARD_W","features":[70]},{"name":"CERT_STORE_PROV_SYSTEM","features":[70]},{"name":"CERT_STORE_PROV_SYSTEM_A","features":[70]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY","features":[70]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_A","features":[70]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[70]},{"name":"CERT_STORE_PROV_SYSTEM_STORE_FLAG","features":[70]},{"name":"CERT_STORE_PROV_SYSTEM_W","features":[70]},{"name":"CERT_STORE_PROV_WRITE_ADD_FLAG","features":[70]},{"name":"CERT_STORE_PROV_WRITE_CERT_FUNC","features":[70]},{"name":"CERT_STORE_PROV_WRITE_CRL_FUNC","features":[70]},{"name":"CERT_STORE_PROV_WRITE_CTL_FUNC","features":[70]},{"name":"CERT_STORE_READONLY_FLAG","features":[70]},{"name":"CERT_STORE_REVOCATION_FLAG","features":[70]},{"name":"CERT_STORE_SAVE_AS","features":[70]},{"name":"CERT_STORE_SAVE_AS_PKCS12","features":[70]},{"name":"CERT_STORE_SAVE_AS_PKCS7","features":[70]},{"name":"CERT_STORE_SAVE_AS_STORE","features":[70]},{"name":"CERT_STORE_SAVE_TO","features":[70]},{"name":"CERT_STORE_SAVE_TO_FILE","features":[70]},{"name":"CERT_STORE_SAVE_TO_FILENAME","features":[70]},{"name":"CERT_STORE_SAVE_TO_FILENAME_A","features":[70]},{"name":"CERT_STORE_SAVE_TO_FILENAME_W","features":[70]},{"name":"CERT_STORE_SAVE_TO_MEMORY","features":[70]},{"name":"CERT_STORE_SET_LOCALIZED_NAME_FLAG","features":[70]},{"name":"CERT_STORE_SHARE_CONTEXT_FLAG","features":[70]},{"name":"CERT_STORE_SHARE_STORE_FLAG","features":[70]},{"name":"CERT_STORE_SIGNATURE_FLAG","features":[70]},{"name":"CERT_STORE_TIME_VALIDITY_FLAG","features":[70]},{"name":"CERT_STORE_UNSAFE_PHYSICAL_FLAG","features":[70]},{"name":"CERT_STORE_UPDATE_KEYID_FLAG","features":[70]},{"name":"CERT_STRING_TYPE","features":[70]},{"name":"CERT_STRONG_SIGN_ECDSA_ALGORITHM","features":[70]},{"name":"CERT_STRONG_SIGN_ENABLE_CRL_CHECK","features":[70]},{"name":"CERT_STRONG_SIGN_ENABLE_OCSP_CHECK","features":[70]},{"name":"CERT_STRONG_SIGN_FLAGS","features":[70]},{"name":"CERT_STRONG_SIGN_OID_INFO_CHOICE","features":[70]},{"name":"CERT_STRONG_SIGN_PARA","features":[70]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO","features":[70]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO_CHOICE","features":[70]},{"name":"CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[70]},{"name":"CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[70]},{"name":"CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[70]},{"name":"CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[70]},{"name":"CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[70]},{"name":"CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[70]},{"name":"CERT_SUPPORTED_ALGORITHM_INFO","features":[70]},{"name":"CERT_SYSTEM_STORE_CURRENT_SERVICE_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER","features":[70]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_DEFER_READ_FLAG","features":[70]},{"name":"CERT_SYSTEM_STORE_FLAGS","features":[70]},{"name":"CERT_SYSTEM_STORE_INFO","features":[70]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE","features":[70]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_WCOS_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_LOCATION_MASK","features":[70]},{"name":"CERT_SYSTEM_STORE_LOCATION_SHIFT","features":[70]},{"name":"CERT_SYSTEM_STORE_MASK","features":[70]},{"name":"CERT_SYSTEM_STORE_RELOCATE_FLAG","features":[70]},{"name":"CERT_SYSTEM_STORE_RELOCATE_PARA","features":[70,51]},{"name":"CERT_SYSTEM_STORE_SERVICES_ID","features":[70]},{"name":"CERT_SYSTEM_STORE_UNPROTECTED_FLAG","features":[70]},{"name":"CERT_SYSTEM_STORE_USERS_ID","features":[70]},{"name":"CERT_TEMPLATE_EXT","features":[3,70]},{"name":"CERT_TIMESTAMP_HASH_USE_TYPE","features":[70]},{"name":"CERT_TPM_SPECIFICATION_INFO","features":[70]},{"name":"CERT_TRUST_AUTO_UPDATE_CA_REVOCATION","features":[70]},{"name":"CERT_TRUST_AUTO_UPDATE_END_REVOCATION","features":[70]},{"name":"CERT_TRUST_BEFORE_DISALLOWED_CA_FILETIME","features":[70]},{"name":"CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID","features":[70]},{"name":"CERT_TRUST_CTL_IS_NOT_TIME_VALID","features":[70]},{"name":"CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE","features":[70]},{"name":"CERT_TRUST_HAS_ALLOW_WEAK_SIGNATURE","features":[70]},{"name":"CERT_TRUST_HAS_AUTO_UPDATE_WEAK_SIGNATURE","features":[70]},{"name":"CERT_TRUST_HAS_CRL_VALIDITY_EXTENDED","features":[70]},{"name":"CERT_TRUST_HAS_EXACT_MATCH_ISSUER","features":[70]},{"name":"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT","features":[70]},{"name":"CERT_TRUST_HAS_ISSUANCE_CHAIN_POLICY","features":[70]},{"name":"CERT_TRUST_HAS_KEY_MATCH_ISSUER","features":[70]},{"name":"CERT_TRUST_HAS_NAME_MATCH_ISSUER","features":[70]},{"name":"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT","features":[70]},{"name":"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT","features":[70]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT","features":[70]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT","features":[70]},{"name":"CERT_TRUST_HAS_PREFERRED_ISSUER","features":[70]},{"name":"CERT_TRUST_HAS_VALID_NAME_CONSTRAINTS","features":[70]},{"name":"CERT_TRUST_HAS_WEAK_HYGIENE","features":[70]},{"name":"CERT_TRUST_HAS_WEAK_SIGNATURE","features":[70]},{"name":"CERT_TRUST_INVALID_BASIC_CONSTRAINTS","features":[70]},{"name":"CERT_TRUST_INVALID_EXTENSION","features":[70]},{"name":"CERT_TRUST_INVALID_NAME_CONSTRAINTS","features":[70]},{"name":"CERT_TRUST_INVALID_POLICY_CONSTRAINTS","features":[70]},{"name":"CERT_TRUST_IS_CA_TRUSTED","features":[70]},{"name":"CERT_TRUST_IS_COMPLEX_CHAIN","features":[70]},{"name":"CERT_TRUST_IS_CYCLIC","features":[70]},{"name":"CERT_TRUST_IS_EXPLICIT_DISTRUST","features":[70]},{"name":"CERT_TRUST_IS_FROM_EXCLUSIVE_TRUST_STORE","features":[70]},{"name":"CERT_TRUST_IS_KEY_ROLLOVER","features":[70]},{"name":"CERT_TRUST_IS_NOT_SIGNATURE_VALID","features":[70]},{"name":"CERT_TRUST_IS_NOT_TIME_NESTED","features":[70]},{"name":"CERT_TRUST_IS_NOT_TIME_VALID","features":[70]},{"name":"CERT_TRUST_IS_NOT_VALID_FOR_USAGE","features":[70]},{"name":"CERT_TRUST_IS_OFFLINE_REVOCATION","features":[70]},{"name":"CERT_TRUST_IS_PARTIAL_CHAIN","features":[70]},{"name":"CERT_TRUST_IS_PEER_TRUSTED","features":[70]},{"name":"CERT_TRUST_IS_REVOKED","features":[70]},{"name":"CERT_TRUST_IS_SELF_SIGNED","features":[70]},{"name":"CERT_TRUST_IS_UNTRUSTED_ROOT","features":[70]},{"name":"CERT_TRUST_LIST_INFO","features":[3,70]},{"name":"CERT_TRUST_NO_ERROR","features":[70]},{"name":"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY","features":[70]},{"name":"CERT_TRUST_NO_OCSP_FAILOVER_TO_CRL","features":[70]},{"name":"CERT_TRUST_NO_TIME_CHECK","features":[70]},{"name":"CERT_TRUST_PUB_ALLOW_END_USER_TRUST","features":[70]},{"name":"CERT_TRUST_PUB_ALLOW_ENTERPRISE_ADMIN_TRUST","features":[70]},{"name":"CERT_TRUST_PUB_ALLOW_MACHINE_ADMIN_TRUST","features":[70]},{"name":"CERT_TRUST_PUB_ALLOW_TRUST_MASK","features":[70]},{"name":"CERT_TRUST_PUB_AUTHENTICODE_FLAGS_VALUE_NAME","features":[70]},{"name":"CERT_TRUST_PUB_CHECK_PUBLISHER_REV_FLAG","features":[70]},{"name":"CERT_TRUST_PUB_CHECK_TIMESTAMP_REV_FLAG","features":[70]},{"name":"CERT_TRUST_REVOCATION_STATUS_UNKNOWN","features":[70]},{"name":"CERT_TRUST_SSL_HANDSHAKE_OCSP","features":[70]},{"name":"CERT_TRUST_SSL_RECONNECT_OCSP","features":[70]},{"name":"CERT_TRUST_SSL_TIME_VALID","features":[70]},{"name":"CERT_TRUST_SSL_TIME_VALID_OCSP","features":[70]},{"name":"CERT_TRUST_STATUS","features":[70]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_MASK","features":[70]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_SHIFT","features":[70]},{"name":"CERT_UNICODE_IS_RDN_ATTRS_FLAG","features":[70]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_MASK","features":[70]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_SHIFT","features":[70]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_MASK","features":[70]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_SHIFT","features":[70]},{"name":"CERT_USAGE_MATCH","features":[70]},{"name":"CERT_V1","features":[70]},{"name":"CERT_V2","features":[70]},{"name":"CERT_V3","features":[70]},{"name":"CERT_VERIFY_ALLOW_MORE_USAGE_FLAG","features":[70]},{"name":"CERT_VERIFY_CACHE_ONLY_BASED_REVOCATION","features":[70]},{"name":"CERT_VERIFY_INHIBIT_CTL_UPDATE_FLAG","features":[70]},{"name":"CERT_VERIFY_NO_TIME_CHECK_FLAG","features":[70]},{"name":"CERT_VERIFY_REV_ACCUMULATIVE_TIMEOUT_FLAG","features":[70]},{"name":"CERT_VERIFY_REV_CHAIN_FLAG","features":[70]},{"name":"CERT_VERIFY_REV_NO_OCSP_FAILOVER_TO_CRL_FLAG","features":[70]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_FLAG","features":[70]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_WIRE_ONLY_FLAG","features":[70]},{"name":"CERT_VERIFY_TRUSTED_SIGNERS_FLAG","features":[70]},{"name":"CERT_VERIFY_UPDATED_CTL_FLAG","features":[70]},{"name":"CERT_X500_NAME_STR","features":[70]},{"name":"CERT_X942_DH_PARAMETERS","features":[70]},{"name":"CERT_X942_DH_VALIDATION_PARAMS","features":[70]},{"name":"CERT_XML_NAME_STR","features":[70]},{"name":"CESSetupProperty","features":[70]},{"name":"CKP_BLOCK_LENGTH","features":[70]},{"name":"CKP_CHAINING_MODE","features":[70]},{"name":"CKP_INITIALIZATION_VECTOR","features":[70]},{"name":"CLAIMLIST","features":[70]},{"name":"CLMD_FILE_TAG_CARD_AUTH_CERT","features":[70]},{"name":"CLMD_FILE_TAG_CARD_CAPABILITY_CONTAINER","features":[70]},{"name":"CLMD_FILE_TAG_CHUID","features":[70]},{"name":"CLMD_FILE_TAG_FACIAL_IMAGE","features":[70]},{"name":"CLMD_FILE_TAG_FINGERPRINT","features":[70]},{"name":"CLMD_FILE_TAG_FIRST_RETIRED_KEY_MGMT_KEY","features":[70]},{"name":"CLMD_FILE_TAG_KEY_HISTORY","features":[70]},{"name":"CLMD_FILE_TAG_KEY_MGMT_CERT","features":[70]},{"name":"CLMD_FILE_TAG_LAST_RETIRED_KEY_MGMT_KEY","features":[70]},{"name":"CLMD_FILE_TAG_PIV_AUTH_CERT","features":[70]},{"name":"CLMD_FILE_TAG_PRINTED_INFORMATION","features":[70]},{"name":"CLMD_FILE_TAG_SECURITY_OBJECT","features":[70]},{"name":"CLMD_FILE_TAG_SIG_CERT","features":[70]},{"name":"CLMD_FILE_TAG_UNSIGNED_CHUID","features":[70]},{"name":"CLMD_PIV_CERT_DATA","features":[70]},{"name":"CLMD_PIV_CERT_DATA_CURRENT_VERSION","features":[70]},{"name":"CLMD_PIV_GENERATE_ASYMMETRIC_KEY","features":[70]},{"name":"CLMD_PIV_GENERATE_ASYMMETRIC_KEY_CURRENT_VERSION","features":[70]},{"name":"CLMD_PIV_PUBLIC_KEY_DATA","features":[70]},{"name":"CLMD_PIV_PUBLIC_KEY_DATA_CURRENT_VERSION","features":[70]},{"name":"CMC_ADD_ATTRIBUTES","features":[70]},{"name":"CMC_ADD_ATTRIBUTES_INFO","features":[70]},{"name":"CMC_ADD_EXTENSIONS","features":[70]},{"name":"CMC_ADD_EXTENSIONS_INFO","features":[3,70]},{"name":"CMC_DATA","features":[70]},{"name":"CMC_DATA_INFO","features":[70]},{"name":"CMC_FAIL_BAD_ALG","features":[70]},{"name":"CMC_FAIL_BAD_CERT_ID","features":[70]},{"name":"CMC_FAIL_BAD_IDENTITY","features":[70]},{"name":"CMC_FAIL_BAD_MESSAGE_CHECK","features":[70]},{"name":"CMC_FAIL_BAD_REQUEST","features":[70]},{"name":"CMC_FAIL_BAD_TIME","features":[70]},{"name":"CMC_FAIL_INTERNAL_CA_ERROR","features":[70]},{"name":"CMC_FAIL_MUST_ARCHIVE_KEYS","features":[70]},{"name":"CMC_FAIL_NO_KEY_REUSE","features":[70]},{"name":"CMC_FAIL_POP_FAILED","features":[70]},{"name":"CMC_FAIL_POP_REQUIRED","features":[70]},{"name":"CMC_FAIL_TRY_LATER","features":[70]},{"name":"CMC_FAIL_UNSUPORTED_EXT","features":[70]},{"name":"CMC_OTHER_INFO_FAIL_CHOICE","features":[70]},{"name":"CMC_OTHER_INFO_NO_CHOICE","features":[70]},{"name":"CMC_OTHER_INFO_PEND_CHOICE","features":[70]},{"name":"CMC_PEND_INFO","features":[3,70]},{"name":"CMC_RESPONSE","features":[70]},{"name":"CMC_RESPONSE_INFO","features":[70]},{"name":"CMC_STATUS","features":[70]},{"name":"CMC_STATUS_CONFIRM_REQUIRED","features":[70]},{"name":"CMC_STATUS_FAILED","features":[70]},{"name":"CMC_STATUS_INFO","features":[3,70]},{"name":"CMC_STATUS_NO_SUPPORT","features":[70]},{"name":"CMC_STATUS_PENDING","features":[70]},{"name":"CMC_STATUS_SUCCESS","features":[70]},{"name":"CMC_TAGGED_ATTRIBUTE","features":[70]},{"name":"CMC_TAGGED_CERT_REQUEST","features":[70]},{"name":"CMC_TAGGED_CERT_REQUEST_CHOICE","features":[70]},{"name":"CMC_TAGGED_CONTENT_INFO","features":[70]},{"name":"CMC_TAGGED_OTHER_MSG","features":[70]},{"name":"CMC_TAGGED_REQUEST","features":[70]},{"name":"CMSCEPSetup","features":[70]},{"name":"CMSG_ATTR_CERT_COUNT_PARAM","features":[70]},{"name":"CMSG_ATTR_CERT_PARAM","features":[70]},{"name":"CMSG_AUTHENTICATED_ATTRIBUTES_FLAG","features":[70]},{"name":"CMSG_BARE_CONTENT_FLAG","features":[70]},{"name":"CMSG_BARE_CONTENT_PARAM","features":[70]},{"name":"CMSG_CERT_COUNT_PARAM","features":[70]},{"name":"CMSG_CERT_PARAM","features":[70]},{"name":"CMSG_CMS_ENCAPSULATED_CONTENT_FLAG","features":[70]},{"name":"CMSG_CMS_ENCAPSULATED_CTL_FLAG","features":[70]},{"name":"CMSG_CMS_RECIPIENT_COUNT_PARAM","features":[70]},{"name":"CMSG_CMS_RECIPIENT_ENCRYPTED_KEY_INDEX_PARAM","features":[70]},{"name":"CMSG_CMS_RECIPIENT_INDEX_PARAM","features":[70]},{"name":"CMSG_CMS_RECIPIENT_INFO","features":[3,70]},{"name":"CMSG_CMS_RECIPIENT_INFO_PARAM","features":[70]},{"name":"CMSG_CMS_SIGNER_INFO","features":[70]},{"name":"CMSG_CMS_SIGNER_INFO_PARAM","features":[70]},{"name":"CMSG_CNG_CONTENT_DECRYPT_INFO","features":[70]},{"name":"CMSG_COMPUTED_HASH_PARAM","features":[70]},{"name":"CMSG_CONTENTS_OCTETS_FLAG","features":[70]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_OBJID_FLAG","features":[70]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_PARA_FLAG","features":[70]},{"name":"CMSG_CONTENT_ENCRYPT_INFO","features":[3,70]},{"name":"CMSG_CONTENT_ENCRYPT_PAD_ENCODED_LEN_FLAG","features":[70]},{"name":"CMSG_CONTENT_ENCRYPT_RELEASE_CONTEXT_FLAG","features":[70]},{"name":"CMSG_CONTENT_PARAM","features":[70]},{"name":"CMSG_CRL_COUNT_PARAM","features":[70]},{"name":"CMSG_CRL_PARAM","features":[70]},{"name":"CMSG_CRYPT_RELEASE_CONTEXT_FLAG","features":[70]},{"name":"CMSG_CTRL_ADD_ATTR_CERT","features":[70]},{"name":"CMSG_CTRL_ADD_CERT","features":[70]},{"name":"CMSG_CTRL_ADD_CMS_SIGNER_INFO","features":[70]},{"name":"CMSG_CTRL_ADD_CRL","features":[70]},{"name":"CMSG_CTRL_ADD_SIGNER","features":[70]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR","features":[70]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA","features":[70]},{"name":"CMSG_CTRL_DECRYPT","features":[70]},{"name":"CMSG_CTRL_DECRYPT_PARA","features":[70]},{"name":"CMSG_CTRL_DEL_ATTR_CERT","features":[70]},{"name":"CMSG_CTRL_DEL_CERT","features":[70]},{"name":"CMSG_CTRL_DEL_CRL","features":[70]},{"name":"CMSG_CTRL_DEL_SIGNER","features":[70]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR","features":[70]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA","features":[70]},{"name":"CMSG_CTRL_ENABLE_STRONG_SIGNATURE","features":[70]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT","features":[70]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT_PARA","features":[3,70]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT","features":[70]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT_PARA","features":[70]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT","features":[70]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT_PARA","features":[3,70]},{"name":"CMSG_CTRL_VERIFY_HASH","features":[70]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE","features":[70]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX","features":[70]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA","features":[70]},{"name":"CMSG_DATA","features":[70]},{"name":"CMSG_DEFAULT_INSTALLABLE_FUNC_OID","features":[70]},{"name":"CMSG_DETACHED_FLAG","features":[70]},{"name":"CMSG_ENCODED_MESSAGE","features":[70]},{"name":"CMSG_ENCODED_SIGNER","features":[70]},{"name":"CMSG_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[70]},{"name":"CMSG_ENCODE_SORTED_CTL_FLAG","features":[70]},{"name":"CMSG_ENCODING_TYPE_MASK","features":[70]},{"name":"CMSG_ENCRYPTED","features":[70]},{"name":"CMSG_ENCRYPTED_DIGEST","features":[70]},{"name":"CMSG_ENCRYPTED_ENCODE_INFO","features":[70]},{"name":"CMSG_ENCRYPT_PARAM","features":[70]},{"name":"CMSG_ENVELOPED","features":[70]},{"name":"CMSG_ENVELOPED_DATA_CMS_VERSION","features":[70]},{"name":"CMSG_ENVELOPED_DATA_PKCS_1_5_VERSION","features":[70]},{"name":"CMSG_ENVELOPED_DATA_V0","features":[70]},{"name":"CMSG_ENVELOPED_DATA_V2","features":[70]},{"name":"CMSG_ENVELOPED_ENCODE_INFO","features":[3,70]},{"name":"CMSG_ENVELOPED_RECIPIENT_V0","features":[70]},{"name":"CMSG_ENVELOPED_RECIPIENT_V2","features":[70]},{"name":"CMSG_ENVELOPED_RECIPIENT_V3","features":[70]},{"name":"CMSG_ENVELOPED_RECIPIENT_V4","features":[70]},{"name":"CMSG_ENVELOPE_ALGORITHM_PARAM","features":[70]},{"name":"CMSG_HASHED","features":[70]},{"name":"CMSG_HASHED_DATA_CMS_VERSION","features":[70]},{"name":"CMSG_HASHED_DATA_PKCS_1_5_VERSION","features":[70]},{"name":"CMSG_HASHED_DATA_V0","features":[70]},{"name":"CMSG_HASHED_DATA_V2","features":[70]},{"name":"CMSG_HASHED_ENCODE_INFO","features":[70]},{"name":"CMSG_HASH_ALGORITHM_PARAM","features":[70]},{"name":"CMSG_HASH_DATA_PARAM","features":[70]},{"name":"CMSG_INDEFINITE_LENGTH","features":[70]},{"name":"CMSG_INNER_CONTENT_TYPE_PARAM","features":[70]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_MATERIAL_FLAG","features":[70]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_OBJID_FLAG","features":[70]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PARA_FLAG","features":[70]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_ALG_FLAG","features":[70]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_BITS_FLAG","features":[70]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_PARA_FLAG","features":[70]},{"name":"CMSG_KEY_AGREE_ENCRYPT_INFO","features":[70]},{"name":"CMSG_KEY_AGREE_EPHEMERAL_KEY_CHOICE","features":[70]},{"name":"CMSG_KEY_AGREE_KEY_ENCRYPT_INFO","features":[70]},{"name":"CMSG_KEY_AGREE_OPTION","features":[70]},{"name":"CMSG_KEY_AGREE_ORIGINATOR","features":[70]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_CERT","features":[70]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_PUBLIC_KEY","features":[70]},{"name":"CMSG_KEY_AGREE_RECIPIENT","features":[70]},{"name":"CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO","features":[3,70]},{"name":"CMSG_KEY_AGREE_RECIPIENT_INFO","features":[3,70]},{"name":"CMSG_KEY_AGREE_STATIC_KEY_CHOICE","features":[70]},{"name":"CMSG_KEY_AGREE_VERSION","features":[70]},{"name":"CMSG_KEY_TRANS_CMS_VERSION","features":[70]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_OBJID_FLAG","features":[70]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_PARA_FLAG","features":[70]},{"name":"CMSG_KEY_TRANS_ENCRYPT_INFO","features":[70]},{"name":"CMSG_KEY_TRANS_PKCS_1_5_VERSION","features":[70]},{"name":"CMSG_KEY_TRANS_RECIPIENT","features":[70]},{"name":"CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO","features":[70]},{"name":"CMSG_KEY_TRANS_RECIPIENT_INFO","features":[70]},{"name":"CMSG_LENGTH_ONLY_FLAG","features":[70]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_OBJID_FLAG","features":[70]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_PARA_FLAG","features":[70]},{"name":"CMSG_MAIL_LIST_ENCRYPT_INFO","features":[70]},{"name":"CMSG_MAIL_LIST_HANDLE_KEY_CHOICE","features":[70]},{"name":"CMSG_MAIL_LIST_RECIPIENT","features":[70]},{"name":"CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO","features":[3,70]},{"name":"CMSG_MAIL_LIST_RECIPIENT_INFO","features":[3,70]},{"name":"CMSG_MAIL_LIST_VERSION","features":[70]},{"name":"CMSG_MAX_LENGTH_FLAG","features":[70]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_AGREE_FUNC","features":[70]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_TRANS_FUNC","features":[70]},{"name":"CMSG_OID_CAPI1_EXPORT_MAIL_LIST_FUNC","features":[70]},{"name":"CMSG_OID_CAPI1_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[70]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_AGREE_FUNC","features":[70]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_TRANS_FUNC","features":[70]},{"name":"CMSG_OID_CAPI1_IMPORT_MAIL_LIST_FUNC","features":[70]},{"name":"CMSG_OID_CNG_EXPORT_KEY_AGREE_FUNC","features":[70]},{"name":"CMSG_OID_CNG_EXPORT_KEY_TRANS_FUNC","features":[70]},{"name":"CMSG_OID_CNG_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[70]},{"name":"CMSG_OID_CNG_IMPORT_CONTENT_ENCRYPT_KEY_FUNC","features":[70]},{"name":"CMSG_OID_CNG_IMPORT_KEY_AGREE_FUNC","features":[70]},{"name":"CMSG_OID_CNG_IMPORT_KEY_TRANS_FUNC","features":[70]},{"name":"CMSG_OID_EXPORT_ENCRYPT_KEY_FUNC","features":[70]},{"name":"CMSG_OID_EXPORT_KEY_AGREE_FUNC","features":[70]},{"name":"CMSG_OID_EXPORT_KEY_TRANS_FUNC","features":[70]},{"name":"CMSG_OID_EXPORT_MAIL_LIST_FUNC","features":[70]},{"name":"CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[70]},{"name":"CMSG_OID_GEN_ENCRYPT_KEY_FUNC","features":[70]},{"name":"CMSG_OID_IMPORT_ENCRYPT_KEY_FUNC","features":[70]},{"name":"CMSG_OID_IMPORT_KEY_AGREE_FUNC","features":[70]},{"name":"CMSG_OID_IMPORT_KEY_TRANS_FUNC","features":[70]},{"name":"CMSG_OID_IMPORT_MAIL_LIST_FUNC","features":[70]},{"name":"CMSG_RC2_AUX_INFO","features":[70]},{"name":"CMSG_RC4_AUX_INFO","features":[70]},{"name":"CMSG_RC4_NO_SALT_FLAG","features":[70]},{"name":"CMSG_RECIPIENT_COUNT_PARAM","features":[70]},{"name":"CMSG_RECIPIENT_ENCODE_INFO","features":[3,70]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO","features":[3,70]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_INFO","features":[3,70]},{"name":"CMSG_RECIPIENT_INDEX_PARAM","features":[70]},{"name":"CMSG_RECIPIENT_INFO_PARAM","features":[70]},{"name":"CMSG_SIGNED","features":[70]},{"name":"CMSG_SIGNED_AND_ENVELOPED","features":[70]},{"name":"CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO","features":[3,70]},{"name":"CMSG_SIGNED_DATA_CMS_VERSION","features":[70]},{"name":"CMSG_SIGNED_DATA_NO_SIGN_FLAG","features":[70]},{"name":"CMSG_SIGNED_DATA_PKCS_1_5_VERSION","features":[70]},{"name":"CMSG_SIGNED_DATA_V1","features":[70]},{"name":"CMSG_SIGNED_DATA_V3","features":[70]},{"name":"CMSG_SIGNED_ENCODE_INFO","features":[3,70]},{"name":"CMSG_SIGNER_AUTH_ATTR_PARAM","features":[70]},{"name":"CMSG_SIGNER_CERT_ID_PARAM","features":[70]},{"name":"CMSG_SIGNER_CERT_INFO_PARAM","features":[70]},{"name":"CMSG_SIGNER_COUNT_PARAM","features":[70]},{"name":"CMSG_SIGNER_ENCODE_INFO","features":[3,70]},{"name":"CMSG_SIGNER_HASH_ALGORITHM_PARAM","features":[70]},{"name":"CMSG_SIGNER_INFO","features":[70]},{"name":"CMSG_SIGNER_INFO_CMS_VERSION","features":[70]},{"name":"CMSG_SIGNER_INFO_PARAM","features":[70]},{"name":"CMSG_SIGNER_INFO_PKCS_1_5_VERSION","features":[70]},{"name":"CMSG_SIGNER_INFO_V1","features":[70]},{"name":"CMSG_SIGNER_INFO_V3","features":[70]},{"name":"CMSG_SIGNER_ONLY_FLAG","features":[70]},{"name":"CMSG_SIGNER_UNAUTH_ATTR_PARAM","features":[70]},{"name":"CMSG_SP3_COMPATIBLE_AUX_INFO","features":[70]},{"name":"CMSG_SP3_COMPATIBLE_ENCRYPT_FLAG","features":[70]},{"name":"CMSG_STREAM_INFO","features":[3,70]},{"name":"CMSG_TRUSTED_SIGNER_FLAG","features":[70]},{"name":"CMSG_TYPE_PARAM","features":[70]},{"name":"CMSG_UNPROTECTED_ATTR_PARAM","features":[70]},{"name":"CMSG_USE_SIGNER_INDEX_FLAG","features":[70]},{"name":"CMSG_VERIFY_COUNTER_SIGN_ENABLE_STRONG_FLAG","features":[70]},{"name":"CMSG_VERIFY_SIGNER_CERT","features":[70]},{"name":"CMSG_VERIFY_SIGNER_CHAIN","features":[70]},{"name":"CMSG_VERIFY_SIGNER_NULL","features":[70]},{"name":"CMSG_VERIFY_SIGNER_PUBKEY","features":[70]},{"name":"CMSG_VERSION_PARAM","features":[70]},{"name":"CMS_DH_KEY_INFO","features":[70]},{"name":"CMS_KEY_INFO","features":[70]},{"name":"CMS_SIGNER_INFO","features":[70]},{"name":"CNG_RSA_PRIVATE_KEY_BLOB","features":[70]},{"name":"CNG_RSA_PUBLIC_KEY_BLOB","features":[70]},{"name":"CONTAINER_INFO","features":[70]},{"name":"CONTAINER_INFO_CURRENT_VERSION","features":[70]},{"name":"CONTAINER_MAP_DEFAULT_CONTAINER","features":[70]},{"name":"CONTAINER_MAP_RECORD","features":[70]},{"name":"CONTAINER_MAP_VALID_CONTAINER","features":[70]},{"name":"CONTEXT_OID_CAPI2_ANY","features":[70]},{"name":"CONTEXT_OID_CERTIFICATE","features":[70]},{"name":"CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC","features":[70]},{"name":"CONTEXT_OID_CRL","features":[70]},{"name":"CONTEXT_OID_CTL","features":[70]},{"name":"CONTEXT_OID_OCSP_RESP","features":[70]},{"name":"CONTEXT_OID_PKCS7","features":[70]},{"name":"CPS_URLS","features":[70]},{"name":"CP_CACHE_MODE_GLOBAL_CACHE","features":[70]},{"name":"CP_CACHE_MODE_NO_CACHE","features":[70]},{"name":"CP_CACHE_MODE_SESSION_ONLY","features":[70]},{"name":"CP_CARD_AUTHENTICATED_STATE","features":[70]},{"name":"CP_CARD_CACHE_MODE","features":[70]},{"name":"CP_CARD_CAPABILITIES","features":[70]},{"name":"CP_CARD_FREE_SPACE","features":[70]},{"name":"CP_CARD_GUID","features":[70]},{"name":"CP_CARD_KEYSIZES","features":[70]},{"name":"CP_CARD_LIST_PINS","features":[70]},{"name":"CP_CARD_PIN_INFO","features":[70]},{"name":"CP_CARD_PIN_STRENGTH_CHANGE","features":[70]},{"name":"CP_CARD_PIN_STRENGTH_UNBLOCK","features":[70]},{"name":"CP_CARD_PIN_STRENGTH_VERIFY","features":[70]},{"name":"CP_CARD_PIV","features":[70]},{"name":"CP_CARD_READ_ONLY","features":[70]},{"name":"CP_CARD_SERIAL_NO","features":[70]},{"name":"CP_CHAINING_MODES","features":[70]},{"name":"CP_ENUM_ALGORITHMS","features":[70]},{"name":"CP_KEY_IMPORT_SUPPORT","features":[70]},{"name":"CP_PADDING_SCHEMES","features":[70]},{"name":"CP_PARENT_WINDOW","features":[70]},{"name":"CP_PIN_CONTEXT_STRING","features":[70]},{"name":"CP_PIV_CARD_CAPABILITY_CONTAINER","features":[70]},{"name":"CP_PIV_CARD_HOLDER_UNIQUE_IDENTIFIER","features":[70]},{"name":"CP_PIV_CARD_HOLDER_UNSIGNED_UNIQUE_IDENTIFIER","features":[70]},{"name":"CP_PIV_CERTIFICATE","features":[70]},{"name":"CP_PIV_FACIAL_IMAGE","features":[70]},{"name":"CP_PIV_FINGERPRINT","features":[70]},{"name":"CP_PIV_GENERATE_KEY","features":[70]},{"name":"CP_PIV_KEY_HISTORY_OBJECT","features":[70]},{"name":"CP_PIV_PRINTED_INFORMATION","features":[70]},{"name":"CP_PIV_PUBLIC_KEY","features":[70]},{"name":"CP_PIV_SECURITY_OBJECT","features":[70]},{"name":"CP_SUPPORTS_WIN_X509_ENROLLMENT","features":[70]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS","features":[70]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_A","features":[70]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_W","features":[70]},{"name":"CRL_CONTEXT","features":[3,70]},{"name":"CRL_DIST_POINT","features":[70]},{"name":"CRL_DIST_POINTS_INFO","features":[70]},{"name":"CRL_DIST_POINT_ERR_CRL_ISSUER_BIT","features":[70]},{"name":"CRL_DIST_POINT_ERR_INDEX_MASK","features":[70]},{"name":"CRL_DIST_POINT_ERR_INDEX_SHIFT","features":[70]},{"name":"CRL_DIST_POINT_FULL_NAME","features":[70]},{"name":"CRL_DIST_POINT_ISSUER_RDN_NAME","features":[70]},{"name":"CRL_DIST_POINT_NAME","features":[70]},{"name":"CRL_DIST_POINT_NO_NAME","features":[70]},{"name":"CRL_ENTRY","features":[3,70]},{"name":"CRL_FIND_ANY","features":[70]},{"name":"CRL_FIND_EXISTING","features":[70]},{"name":"CRL_FIND_ISSUED_BY","features":[70]},{"name":"CRL_FIND_ISSUED_BY_AKI_FLAG","features":[70]},{"name":"CRL_FIND_ISSUED_BY_BASE_FLAG","features":[70]},{"name":"CRL_FIND_ISSUED_BY_DELTA_FLAG","features":[70]},{"name":"CRL_FIND_ISSUED_BY_SIGNATURE_FLAG","features":[70]},{"name":"CRL_FIND_ISSUED_FOR","features":[70]},{"name":"CRL_FIND_ISSUED_FOR_PARA","features":[3,70]},{"name":"CRL_FIND_ISSUED_FOR_SET_STRONG_PROPERTIES_FLAG","features":[70]},{"name":"CRL_INFO","features":[3,70]},{"name":"CRL_ISSUING_DIST_POINT","features":[3,70]},{"name":"CRL_REASON_AA_COMPROMISE","features":[70]},{"name":"CRL_REASON_AA_COMPROMISE_FLAG","features":[70]},{"name":"CRL_REASON_AFFILIATION_CHANGED","features":[70]},{"name":"CRL_REASON_AFFILIATION_CHANGED_FLAG","features":[70]},{"name":"CRL_REASON_CA_COMPROMISE","features":[70]},{"name":"CRL_REASON_CA_COMPROMISE_FLAG","features":[70]},{"name":"CRL_REASON_CERTIFICATE_HOLD","features":[70]},{"name":"CRL_REASON_CERTIFICATE_HOLD_FLAG","features":[70]},{"name":"CRL_REASON_CESSATION_OF_OPERATION","features":[70]},{"name":"CRL_REASON_CESSATION_OF_OPERATION_FLAG","features":[70]},{"name":"CRL_REASON_KEY_COMPROMISE","features":[70]},{"name":"CRL_REASON_KEY_COMPROMISE_FLAG","features":[70]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN","features":[70]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN_FLAG","features":[70]},{"name":"CRL_REASON_REMOVE_FROM_CRL","features":[70]},{"name":"CRL_REASON_SUPERSEDED","features":[70]},{"name":"CRL_REASON_SUPERSEDED_FLAG","features":[70]},{"name":"CRL_REASON_UNSPECIFIED","features":[70]},{"name":"CRL_REASON_UNUSED_FLAG","features":[70]},{"name":"CRL_REVOCATION_INFO","features":[3,70]},{"name":"CRL_V1","features":[70]},{"name":"CRL_V2","features":[70]},{"name":"CROSS_CERT_DIST_POINTS_INFO","features":[70]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_MASK","features":[70]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_SHIFT","features":[70]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_DEFAULT","features":[70]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_BEFORE_OCSP_ENABLE","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_DISABLE_INFORMATION_EVENTS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_LOG_FILE_NAME_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_MAX_AGE_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_PROCESS_NAME_LIST_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_RANDOM_INTERVAL_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_TIMEOUT_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_CRL_PRE_FETCH_URL_LIST_VALUE_NAME","features":[70]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_DEFAULT","features":[70]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_VALUE_NAME","features":[70]},{"name":"CRYPTNET_OCSP_AFTER_CRL_DISABLE","features":[70]},{"name":"CRYPTNET_PRE_FETCH_AFTER_CURRENT_TIME_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_DEFAULT","features":[70]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[70]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_MAX_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_MAX_MAX_AGE_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_MIN_MAX_AGE_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_MIN_OCSP_VALIDITY_PERIOD_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_RETRIEVAL_TIMEOUT_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_DEFAULT","features":[70]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_DISABLE","features":[70]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_PERIOD_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[70]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[70]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH","features":[70]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH_EXEMPT_SECONDS_VALUE_NAME","features":[70]},{"name":"CRYPTNET_URL_CACHE_DISABLE_FLUSH","features":[70]},{"name":"CRYPTNET_URL_CACHE_FLUSH_INFO","features":[3,70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_AUTOROOT_CAB","features":[70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_BLOB","features":[70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_CRL","features":[70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_DISALLOWED_CERT_CAB","features":[70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_INFO","features":[3,70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_NONE","features":[70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_OCSP","features":[70]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_PIN_RULES_CAB","features":[70]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_HTTP","features":[70]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_INFO","features":[3,70]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_NONE","features":[70]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_VALIDATED","features":[70]},{"name":"CRYPTPROTECTMEMORY_BLOCK_SIZE","features":[70]},{"name":"CRYPTPROTECTMEMORY_CROSS_PROCESS","features":[70]},{"name":"CRYPTPROTECTMEMORY_SAME_LOGON","features":[70]},{"name":"CRYPTPROTECTMEMORY_SAME_PROCESS","features":[70]},{"name":"CRYPTPROTECT_AUDIT","features":[70]},{"name":"CRYPTPROTECT_CRED_REGENERATE","features":[70]},{"name":"CRYPTPROTECT_CRED_SYNC","features":[70]},{"name":"CRYPTPROTECT_DEFAULT_PROVIDER","features":[70]},{"name":"CRYPTPROTECT_FIRST_RESERVED_FLAGVAL","features":[70]},{"name":"CRYPTPROTECT_LAST_RESERVED_FLAGVAL","features":[70]},{"name":"CRYPTPROTECT_LOCAL_MACHINE","features":[70]},{"name":"CRYPTPROTECT_NO_RECOVERY","features":[70]},{"name":"CRYPTPROTECT_PROMPTSTRUCT","features":[3,70]},{"name":"CRYPTPROTECT_PROMPT_ON_PROTECT","features":[70]},{"name":"CRYPTPROTECT_PROMPT_ON_UNPROTECT","features":[70]},{"name":"CRYPTPROTECT_PROMPT_REQUIRE_STRONG","features":[70]},{"name":"CRYPTPROTECT_PROMPT_RESERVED","features":[70]},{"name":"CRYPTPROTECT_PROMPT_STRONG","features":[70]},{"name":"CRYPTPROTECT_UI_FORBIDDEN","features":[70]},{"name":"CRYPTPROTECT_VERIFY_PROTECTION","features":[70]},{"name":"CRYPT_3DES_KEY_STATE","features":[70]},{"name":"CRYPT_ACCUMULATIVE_TIMEOUT","features":[70]},{"name":"CRYPT_ACQUIRE_ALLOW_NCRYPT_KEY_FLAG","features":[70]},{"name":"CRYPT_ACQUIRE_CACHE_FLAG","features":[70]},{"name":"CRYPT_ACQUIRE_COMPARE_KEY_FLAG","features":[70]},{"name":"CRYPT_ACQUIRE_FLAGS","features":[70]},{"name":"CRYPT_ACQUIRE_NCRYPT_KEY_FLAGS_MASK","features":[70]},{"name":"CRYPT_ACQUIRE_NO_HEALING","features":[70]},{"name":"CRYPT_ACQUIRE_ONLY_NCRYPT_KEY_FLAG","features":[70]},{"name":"CRYPT_ACQUIRE_PREFER_NCRYPT_KEY_FLAG","features":[70]},{"name":"CRYPT_ACQUIRE_SILENT_FLAG","features":[70]},{"name":"CRYPT_ACQUIRE_USE_PROV_INFO_FLAG","features":[70]},{"name":"CRYPT_ACQUIRE_WINDOW_HANDLE_FLAG","features":[70]},{"name":"CRYPT_AES_128_KEY_STATE","features":[70]},{"name":"CRYPT_AES_256_KEY_STATE","features":[70]},{"name":"CRYPT_AIA_RETRIEVAL","features":[70]},{"name":"CRYPT_ALGORITHM_IDENTIFIER","features":[70]},{"name":"CRYPT_ALL_FUNCTIONS","features":[70]},{"name":"CRYPT_ALL_PROVIDERS","features":[70]},{"name":"CRYPT_ANY","features":[70]},{"name":"CRYPT_ARCHIVABLE","features":[70]},{"name":"CRYPT_ARCHIVE","features":[70]},{"name":"CRYPT_ASN_ENCODING","features":[70]},{"name":"CRYPT_ASYNC_RETRIEVAL","features":[70]},{"name":"CRYPT_ASYNC_RETRIEVAL_COMPLETION","features":[70]},{"name":"CRYPT_ATTRIBUTE","features":[70]},{"name":"CRYPT_ATTRIBUTES","features":[70]},{"name":"CRYPT_ATTRIBUTE_TYPE_VALUE","features":[70]},{"name":"CRYPT_BIT_BLOB","features":[70]},{"name":"CRYPT_BLOB_ARRAY","features":[70]},{"name":"CRYPT_BLOB_VER3","features":[70]},{"name":"CRYPT_CACHE_ONLY_RETRIEVAL","features":[70]},{"name":"CRYPT_CHECK_FRESHNESS_TIME_VALIDITY","features":[70]},{"name":"CRYPT_CONTENT_INFO","features":[70]},{"name":"CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY","features":[70]},{"name":"CRYPT_CONTEXTS","features":[70]},{"name":"CRYPT_CONTEXT_CONFIG","features":[70]},{"name":"CRYPT_CONTEXT_CONFIG_FLAGS","features":[70]},{"name":"CRYPT_CONTEXT_FUNCTIONS","features":[70]},{"name":"CRYPT_CONTEXT_FUNCTION_CONFIG","features":[70]},{"name":"CRYPT_CONTEXT_FUNCTION_PROVIDERS","features":[70]},{"name":"CRYPT_CREATE_IV","features":[70]},{"name":"CRYPT_CREATE_NEW_FLUSH_ENTRY","features":[70]},{"name":"CRYPT_CREATE_SALT","features":[70]},{"name":"CRYPT_CREDENTIALS","features":[70]},{"name":"CRYPT_CSP_PROVIDER","features":[70]},{"name":"CRYPT_DATA_KEY","features":[70]},{"name":"CRYPT_DECODE_ALLOC_FLAG","features":[70]},{"name":"CRYPT_DECODE_ENABLE_PUNYCODE_FLAG","features":[70]},{"name":"CRYPT_DECODE_ENABLE_UTF8PERCENT_FLAG","features":[70]},{"name":"CRYPT_DECODE_NOCOPY_FLAG","features":[70]},{"name":"CRYPT_DECODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[70]},{"name":"CRYPT_DECODE_PARA","features":[70]},{"name":"CRYPT_DECODE_SHARE_OID_STRING_FLAG","features":[70]},{"name":"CRYPT_DECODE_TO_BE_SIGNED_FLAG","features":[70]},{"name":"CRYPT_DECRYPT","features":[70]},{"name":"CRYPT_DECRYPT_MESSAGE_PARA","features":[70]},{"name":"CRYPT_DECRYPT_RSA_NO_PADDING_CHECK","features":[70]},{"name":"CRYPT_DEFAULT_CONTAINER_OPTIONAL","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT_AUTO_RELEASE_FLAG","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT_CERT_SIGN_OID","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT_FLAGS","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_CERT_SIGN_OID","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT_PROCESS_FLAG","features":[70]},{"name":"CRYPT_DEFAULT_CONTEXT_TYPE","features":[70]},{"name":"CRYPT_DEFAULT_OID","features":[70]},{"name":"CRYPT_DELETEKEYSET","features":[70]},{"name":"CRYPT_DELETE_DEFAULT","features":[70]},{"name":"CRYPT_DELETE_KEYSET","features":[70]},{"name":"CRYPT_DESTROYKEY","features":[70]},{"name":"CRYPT_DES_KEY_STATE","features":[70]},{"name":"CRYPT_DOMAIN","features":[70]},{"name":"CRYPT_DONT_CACHE_RESULT","features":[70]},{"name":"CRYPT_DONT_CHECK_TIME_VALIDITY","features":[70]},{"name":"CRYPT_DONT_VERIFY_SIGNATURE","features":[70]},{"name":"CRYPT_ECC_CMS_SHARED_INFO","features":[70]},{"name":"CRYPT_ECC_CMS_SHARED_INFO_SUPPPUBINFO_BYTE_LENGTH","features":[70]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO","features":[70]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO_v1","features":[70]},{"name":"CRYPT_ENABLE_FILE_RETRIEVAL","features":[70]},{"name":"CRYPT_ENABLE_SSL_REVOCATION_RETRIEVAL","features":[70]},{"name":"CRYPT_ENCODE_ALLOC_FLAG","features":[70]},{"name":"CRYPT_ENCODE_DECODE_NONE","features":[70]},{"name":"CRYPT_ENCODE_ENABLE_PUNYCODE_FLAG","features":[70]},{"name":"CRYPT_ENCODE_ENABLE_UTF8PERCENT_FLAG","features":[70]},{"name":"CRYPT_ENCODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[70]},{"name":"CRYPT_ENCODE_OBJECT_FLAGS","features":[70]},{"name":"CRYPT_ENCODE_PARA","features":[70]},{"name":"CRYPT_ENCRYPT","features":[70]},{"name":"CRYPT_ENCRYPTED_PRIVATE_KEY_INFO","features":[70]},{"name":"CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[70]},{"name":"CRYPT_ENCRYPT_MESSAGE_PARA","features":[70]},{"name":"CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[70]},{"name":"CRYPT_ENROLLMENT_NAME_VALUE_PAIR","features":[70]},{"name":"CRYPT_EXCLUSIVE","features":[70]},{"name":"CRYPT_EXPORT","features":[70]},{"name":"CRYPT_EXPORTABLE","features":[70]},{"name":"CRYPT_EXPORT_KEY","features":[70]},{"name":"CRYPT_EXTERNAL_SIGNATURE_LENGTH","features":[70]},{"name":"CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[70]},{"name":"CRYPT_FAILED","features":[70]},{"name":"CRYPT_FASTSGC","features":[70]},{"name":"CRYPT_FIND_FLAGS","features":[70]},{"name":"CRYPT_FIND_MACHINE_KEYSET_FLAG","features":[70]},{"name":"CRYPT_FIND_SILENT_KEYSET_FLAG","features":[70]},{"name":"CRYPT_FIND_USER_KEYSET_FLAG","features":[70]},{"name":"CRYPT_FIRST","features":[70]},{"name":"CRYPT_FIRST_ALG_OID_GROUP_ID","features":[70]},{"name":"CRYPT_FLAG_IPSEC","features":[70]},{"name":"CRYPT_FLAG_PCT1","features":[70]},{"name":"CRYPT_FLAG_SIGNING","features":[70]},{"name":"CRYPT_FLAG_SSL2","features":[70]},{"name":"CRYPT_FLAG_SSL3","features":[70]},{"name":"CRYPT_FLAG_TLS1","features":[70]},{"name":"CRYPT_FORCE_KEY_PROTECTION_HIGH","features":[70]},{"name":"CRYPT_FORMAT_COMMA","features":[70]},{"name":"CRYPT_FORMAT_CRLF","features":[70]},{"name":"CRYPT_FORMAT_OID","features":[70]},{"name":"CRYPT_FORMAT_RDN_CRLF","features":[70]},{"name":"CRYPT_FORMAT_RDN_REVERSE","features":[70]},{"name":"CRYPT_FORMAT_RDN_SEMICOLON","features":[70]},{"name":"CRYPT_FORMAT_RDN_UNQUOTE","features":[70]},{"name":"CRYPT_FORMAT_SEMICOLON","features":[70]},{"name":"CRYPT_FORMAT_SIMPLE","features":[70]},{"name":"CRYPT_FORMAT_STR_MULTI_LINE","features":[70]},{"name":"CRYPT_FORMAT_STR_NO_HEX","features":[70]},{"name":"CRYPT_FORMAT_X509","features":[70]},{"name":"CRYPT_GET_INSTALLED_OID_FUNC_FLAG","features":[70]},{"name":"CRYPT_GET_TIME_VALID_OBJECT_EXTRA_INFO","features":[3,70]},{"name":"CRYPT_GET_URL_FLAGS","features":[70]},{"name":"CRYPT_GET_URL_FROM_AUTH_ATTRIBUTE","features":[70]},{"name":"CRYPT_GET_URL_FROM_EXTENSION","features":[70]},{"name":"CRYPT_GET_URL_FROM_PROPERTY","features":[70]},{"name":"CRYPT_GET_URL_FROM_UNAUTH_ATTRIBUTE","features":[70]},{"name":"CRYPT_HASH_ALG_OID_GROUP_ID","features":[70]},{"name":"CRYPT_HASH_INFO","features":[70]},{"name":"CRYPT_HASH_MESSAGE_PARA","features":[70]},{"name":"CRYPT_HTTP_POST_RETRIEVAL","features":[70]},{"name":"CRYPT_IMAGE_REF","features":[70]},{"name":"CRYPT_IMAGE_REF_FLAGS","features":[70]},{"name":"CRYPT_IMAGE_REG","features":[70]},{"name":"CRYPT_IMPL_HARDWARE","features":[70]},{"name":"CRYPT_IMPL_MIXED","features":[70]},{"name":"CRYPT_IMPL_REMOVABLE","features":[70]},{"name":"CRYPT_IMPL_SOFTWARE","features":[70]},{"name":"CRYPT_IMPL_UNKNOWN","features":[70]},{"name":"CRYPT_IMPORT_KEY","features":[70]},{"name":"CRYPT_IMPORT_PUBLIC_KEY_FLAGS","features":[70]},{"name":"CRYPT_INITIATOR","features":[70]},{"name":"CRYPT_INSTALL_OID_FUNC_BEFORE_FLAG","features":[70]},{"name":"CRYPT_INSTALL_OID_INFO_BEFORE_FLAG","features":[70]},{"name":"CRYPT_INTEGER_BLOB","features":[70]},{"name":"CRYPT_INTERFACE_REG","features":[70]},{"name":"CRYPT_IPSEC_HMAC_KEY","features":[70]},{"name":"CRYPT_KDF_OID_GROUP_ID","features":[70]},{"name":"CRYPT_KEEP_TIME_VALID","features":[70]},{"name":"CRYPT_KEK","features":[70]},{"name":"CRYPT_KEYID_ALLOC_FLAG","features":[70]},{"name":"CRYPT_KEYID_DELETE_FLAG","features":[70]},{"name":"CRYPT_KEYID_MACHINE_FLAG","features":[70]},{"name":"CRYPT_KEYID_SET_NEW_FLAG","features":[70]},{"name":"CRYPT_KEY_FLAGS","features":[70]},{"name":"CRYPT_KEY_PARAM_ID","features":[70]},{"name":"CRYPT_KEY_PROV_INFO","features":[70]},{"name":"CRYPT_KEY_PROV_PARAM","features":[70]},{"name":"CRYPT_KEY_SIGN_MESSAGE_PARA","features":[70]},{"name":"CRYPT_KEY_VERIFY_MESSAGE_PARA","features":[70]},{"name":"CRYPT_KM","features":[70]},{"name":"CRYPT_LAST_ALG_OID_GROUP_ID","features":[70]},{"name":"CRYPT_LAST_OID_GROUP_ID","features":[70]},{"name":"CRYPT_LDAP_AREC_EXCLUSIVE_RETRIEVAL","features":[70]},{"name":"CRYPT_LDAP_INSERT_ENTRY_ATTRIBUTE","features":[70]},{"name":"CRYPT_LDAP_SCOPE_BASE_ONLY_RETRIEVAL","features":[70]},{"name":"CRYPT_LDAP_SIGN_RETRIEVAL","features":[70]},{"name":"CRYPT_LITTLE_ENDIAN","features":[70]},{"name":"CRYPT_LOCAL","features":[70]},{"name":"CRYPT_LOCALIZED_NAME_ENCODING_TYPE","features":[70]},{"name":"CRYPT_LOCALIZED_NAME_OID","features":[70]},{"name":"CRYPT_MAC","features":[70]},{"name":"CRYPT_MACHINE_DEFAULT","features":[70]},{"name":"CRYPT_MACHINE_KEYSET","features":[70]},{"name":"CRYPT_MAC_RESOURCE","features":[70]},{"name":"CRYPT_MAC_RESOURCE_NUMBER","features":[70]},{"name":"CRYPT_MASK_GEN_ALGORITHM","features":[70]},{"name":"CRYPT_MATCH_ANY_ENCODING_TYPE","features":[70]},{"name":"CRYPT_MAX_PROVIDER_ID","features":[70]},{"name":"CRYPT_MESSAGE_BARE_CONTENT_OUT_FLAG","features":[70]},{"name":"CRYPT_MESSAGE_ENCAPSULATED_CONTENT_OUT_FLAG","features":[70]},{"name":"CRYPT_MESSAGE_KEYID_RECIPIENT_FLAG","features":[70]},{"name":"CRYPT_MESSAGE_KEYID_SIGNER_FLAG","features":[70]},{"name":"CRYPT_MESSAGE_SILENT_KEYSET_FLAG","features":[70]},{"name":"CRYPT_MIN_DEPENDENCIES","features":[70]},{"name":"CRYPT_MM","features":[70]},{"name":"CRYPT_MODE_CBC","features":[70]},{"name":"CRYPT_MODE_CBCI","features":[70]},{"name":"CRYPT_MODE_CBCOFM","features":[70]},{"name":"CRYPT_MODE_CBCOFMI","features":[70]},{"name":"CRYPT_MODE_CFB","features":[70]},{"name":"CRYPT_MODE_CFBP","features":[70]},{"name":"CRYPT_MODE_CTS","features":[70]},{"name":"CRYPT_MODE_ECB","features":[70]},{"name":"CRYPT_MODE_OFB","features":[70]},{"name":"CRYPT_MODE_OFBP","features":[70]},{"name":"CRYPT_MSG_TYPE","features":[70]},{"name":"CRYPT_NDR_ENCODING","features":[70]},{"name":"CRYPT_NEWKEYSET","features":[70]},{"name":"CRYPT_NEXT","features":[70]},{"name":"CRYPT_NOHASHOID","features":[70]},{"name":"CRYPT_NOT_MODIFIED_RETRIEVAL","features":[70]},{"name":"CRYPT_NO_AUTH_RETRIEVAL","features":[70]},{"name":"CRYPT_NO_OCSP_FAILOVER_TO_CRL_RETRIEVAL","features":[70]},{"name":"CRYPT_NO_SALT","features":[70]},{"name":"CRYPT_OAEP","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_FIRST_RESERVED_USER_NAME_TYPE","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_NAME_TYPE","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_USER_NAME_TYPE","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_PROVIDER_TABLE","features":[3,70]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_DLL_UNLOAD","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_PROCESS_EXIT","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_REASON","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SERVICE_STOP","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SYSTEM_SHUTDOWN","features":[70]},{"name":"CRYPT_OBJECT_LOCATOR_SPN_NAME_TYPE","features":[70]},{"name":"CRYPT_OBJID_TABLE","features":[70]},{"name":"CRYPT_OCSP_ONLY_RETRIEVAL","features":[70]},{"name":"CRYPT_OFFLINE_CHECK_RETRIEVAL","features":[70]},{"name":"CRYPT_OID_CREATE_COM_OBJECT_FUNC","features":[70]},{"name":"CRYPT_OID_DECODE_OBJECT_EX_FUNC","features":[70]},{"name":"CRYPT_OID_DECODE_OBJECT_FUNC","features":[70]},{"name":"CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[70]},{"name":"CRYPT_OID_ENCODE_OBJECT_EX_FUNC","features":[70]},{"name":"CRYPT_OID_ENCODE_OBJECT_FUNC","features":[70]},{"name":"CRYPT_OID_ENUM_PHYSICAL_STORE_FUNC","features":[70]},{"name":"CRYPT_OID_ENUM_SYSTEM_STORE_FUNC","features":[70]},{"name":"CRYPT_OID_EXPORT_PRIVATE_KEY_INFO_FUNC","features":[70]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[70]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[70]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FUNC","features":[70]},{"name":"CRYPT_OID_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[70]},{"name":"CRYPT_OID_FIND_LOCALIZED_NAME_FUNC","features":[70]},{"name":"CRYPT_OID_FIND_OID_INFO_FUNC","features":[70]},{"name":"CRYPT_OID_FORMAT_OBJECT_FUNC","features":[70]},{"name":"CRYPT_OID_FUNC_ENTRY","features":[70]},{"name":"CRYPT_OID_IMPORT_PRIVATE_KEY_INFO_FUNC","features":[70]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[70]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_FUNC","features":[70]},{"name":"CRYPT_OID_INFO","features":[70]},{"name":"CRYPT_OID_INFO_ALGID_KEY","features":[70]},{"name":"CRYPT_OID_INFO_CNG_ALGID_KEY","features":[70]},{"name":"CRYPT_OID_INFO_CNG_SIGN_KEY","features":[70]},{"name":"CRYPT_OID_INFO_ECC_PARAMETERS_ALGORITHM","features":[70]},{"name":"CRYPT_OID_INFO_ECC_WRAP_PARAMETERS_ALGORITHM","features":[70]},{"name":"CRYPT_OID_INFO_HASH_PARAMETERS_ALGORITHM","features":[70]},{"name":"CRYPT_OID_INFO_MGF1_PARAMETERS_ALGORITHM","features":[70]},{"name":"CRYPT_OID_INFO_NAME_KEY","features":[70]},{"name":"CRYPT_OID_INFO_NO_PARAMETERS_ALGORITHM","features":[70]},{"name":"CRYPT_OID_INFO_NO_SIGN_ALGORITHM","features":[70]},{"name":"CRYPT_OID_INFO_OAEP_PARAMETERS_ALGORITHM","features":[70]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[70]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[70]},{"name":"CRYPT_OID_INFO_OID_KEY","features":[70]},{"name":"CRYPT_OID_INFO_OID_KEY_FLAGS_MASK","features":[70]},{"name":"CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[70]},{"name":"CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[70]},{"name":"CRYPT_OID_INFO_SIGN_KEY","features":[70]},{"name":"CRYPT_OID_INHIBIT_SIGNATURE_FORMAT_FLAG","features":[70]},{"name":"CRYPT_OID_NO_NULL_ALGORITHM_PARA_FLAG","features":[70]},{"name":"CRYPT_OID_OPEN_STORE_PROV_FUNC","features":[70]},{"name":"CRYPT_OID_OPEN_SYSTEM_STORE_PROV_FUNC","features":[70]},{"name":"CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[70]},{"name":"CRYPT_OID_PUBKEY_ENCRYPT_ONLY_FLAG","features":[70]},{"name":"CRYPT_OID_PUBKEY_SIGN_ONLY_FLAG","features":[70]},{"name":"CRYPT_OID_REGISTER_PHYSICAL_STORE_FUNC","features":[70]},{"name":"CRYPT_OID_REGISTER_SYSTEM_STORE_FUNC","features":[70]},{"name":"CRYPT_OID_REGPATH","features":[70]},{"name":"CRYPT_OID_REG_DLL_VALUE_NAME","features":[70]},{"name":"CRYPT_OID_REG_ENCODING_TYPE_PREFIX","features":[70]},{"name":"CRYPT_OID_REG_FLAGS_VALUE_NAME","features":[70]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME","features":[70]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME_A","features":[70]},{"name":"CRYPT_OID_SIGN_AND_ENCODE_HASH_FUNC","features":[70]},{"name":"CRYPT_OID_SYSTEM_STORE_LOCATION_VALUE_NAME","features":[70]},{"name":"CRYPT_OID_UNREGISTER_PHYSICAL_STORE_FUNC","features":[70]},{"name":"CRYPT_OID_UNREGISTER_SYSTEM_STORE_FUNC","features":[70]},{"name":"CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[70]},{"name":"CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[70]},{"name":"CRYPT_OID_USE_PUBKEY_PARA_FOR_PKCS7_FLAG","features":[70]},{"name":"CRYPT_OID_VERIFY_CERTIFICATE_CHAIN_POLICY_FUNC","features":[70]},{"name":"CRYPT_OID_VERIFY_CTL_USAGE_FUNC","features":[70]},{"name":"CRYPT_OID_VERIFY_ENCODED_SIGNATURE_FUNC","features":[70]},{"name":"CRYPT_OID_VERIFY_REVOCATION_FUNC","features":[70]},{"name":"CRYPT_ONLINE","features":[70]},{"name":"CRYPT_OVERRIDE","features":[70]},{"name":"CRYPT_OVERWRITE","features":[70]},{"name":"CRYPT_OWF_REPL_LM_HASH","features":[70]},{"name":"CRYPT_PARAM_ASYNC_RETRIEVAL_COMPLETION","features":[70]},{"name":"CRYPT_PARAM_CANCEL_ASYNC_RETRIEVAL","features":[70]},{"name":"CRYPT_PASSWORD_CREDENTIALSA","features":[70]},{"name":"CRYPT_PASSWORD_CREDENTIALSW","features":[70]},{"name":"CRYPT_PKCS12_PBE_PARAMS","features":[70]},{"name":"CRYPT_PKCS8_EXPORT_PARAMS","features":[3,70]},{"name":"CRYPT_PKCS8_IMPORT_PARAMS","features":[3,70]},{"name":"CRYPT_POLICY_OID_GROUP_ID","features":[70]},{"name":"CRYPT_PREGEN","features":[70]},{"name":"CRYPT_PRIORITY_BOTTOM","features":[70]},{"name":"CRYPT_PRIORITY_TOP","features":[70]},{"name":"CRYPT_PRIVATE_KEY_INFO","features":[70]},{"name":"CRYPT_PROCESS_ISOLATE","features":[70]},{"name":"CRYPT_PROPERTY_REF","features":[70]},{"name":"CRYPT_PROVIDERS","features":[70]},{"name":"CRYPT_PROVIDER_IOCTL__GET_SCHANNEL_INTERFACE","features":[70]},{"name":"CRYPT_PROVIDER_REF","features":[70]},{"name":"CRYPT_PROVIDER_REFS","features":[70]},{"name":"CRYPT_PROVIDER_REG","features":[70]},{"name":"CRYPT_PROVSTRUC_VERSION_V3","features":[70]},{"name":"CRYPT_PROXY_CACHE_RETRIEVAL","features":[70]},{"name":"CRYPT_PSOURCE_ALGORITHM","features":[70]},{"name":"CRYPT_PSTORE","features":[70]},{"name":"CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[70]},{"name":"CRYPT_RANDOM_QUERY_STRING_RETRIEVAL","features":[70]},{"name":"CRYPT_RC2_128BIT_VERSION","features":[70]},{"name":"CRYPT_RC2_40BIT_VERSION","features":[70]},{"name":"CRYPT_RC2_56BIT_VERSION","features":[70]},{"name":"CRYPT_RC2_64BIT_VERSION","features":[70]},{"name":"CRYPT_RC2_CBC_PARAMETERS","features":[3,70]},{"name":"CRYPT_RC4_KEY_STATE","features":[70]},{"name":"CRYPT_RDN_ATTR_OID_GROUP_ID","features":[70]},{"name":"CRYPT_READ","features":[70]},{"name":"CRYPT_RECIPIENT","features":[70]},{"name":"CRYPT_REGISTER_FIRST_INDEX","features":[70]},{"name":"CRYPT_REGISTER_LAST_INDEX","features":[70]},{"name":"CRYPT_RETRIEVE_AUX_INFO","features":[3,70]},{"name":"CRYPT_RETRIEVE_MAX_ERROR_CONTENT_LENGTH","features":[70]},{"name":"CRYPT_RETRIEVE_MULTIPLE_OBJECTS","features":[70]},{"name":"CRYPT_RETURN_HWND","features":[3,70]},{"name":"CRYPT_RSAES_OAEP_PARAMETERS","features":[70]},{"name":"CRYPT_RSA_SSA_PSS_PARAMETERS","features":[70]},{"name":"CRYPT_SECRETDIGEST","features":[70]},{"name":"CRYPT_SEC_DESCR","features":[70]},{"name":"CRYPT_SEQUENCE_OF_ANY","features":[70]},{"name":"CRYPT_SERVER","features":[70]},{"name":"CRYPT_SET_HASH_PARAM","features":[70]},{"name":"CRYPT_SET_PROV_PARAM_ID","features":[70]},{"name":"CRYPT_SF","features":[70]},{"name":"CRYPT_SGC","features":[70]},{"name":"CRYPT_SGCKEY","features":[70]},{"name":"CRYPT_SGC_ENUM","features":[70]},{"name":"CRYPT_SIGN_ALG_OID_GROUP_ID","features":[70]},{"name":"CRYPT_SIGN_MESSAGE_PARA","features":[3,70]},{"name":"CRYPT_SIG_RESOURCE","features":[70]},{"name":"CRYPT_SIG_RESOURCE_NUMBER","features":[70]},{"name":"CRYPT_SIG_RESOURCE_VERSION","features":[70]},{"name":"CRYPT_SILENT","features":[70]},{"name":"CRYPT_SMART_CARD_ROOT_INFO","features":[70]},{"name":"CRYPT_SMIME_CAPABILITIES","features":[70]},{"name":"CRYPT_SMIME_CAPABILITY","features":[70]},{"name":"CRYPT_SORTED_CTL_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[70]},{"name":"CRYPT_SSL2_FALLBACK","features":[70]},{"name":"CRYPT_STICKY_CACHE_RETRIEVAL","features":[70]},{"name":"CRYPT_STRING","features":[70]},{"name":"CRYPT_STRING_ANY","features":[70]},{"name":"CRYPT_STRING_BASE64","features":[70]},{"name":"CRYPT_STRING_BASE64HEADER","features":[70]},{"name":"CRYPT_STRING_BASE64REQUESTHEADER","features":[70]},{"name":"CRYPT_STRING_BASE64URI","features":[70]},{"name":"CRYPT_STRING_BASE64X509CRLHEADER","features":[70]},{"name":"CRYPT_STRING_BASE64_ANY","features":[70]},{"name":"CRYPT_STRING_BINARY","features":[70]},{"name":"CRYPT_STRING_ENCODEMASK","features":[70]},{"name":"CRYPT_STRING_HASHDATA","features":[70]},{"name":"CRYPT_STRING_HEX","features":[70]},{"name":"CRYPT_STRING_HEXADDR","features":[70]},{"name":"CRYPT_STRING_HEXASCII","features":[70]},{"name":"CRYPT_STRING_HEXASCIIADDR","features":[70]},{"name":"CRYPT_STRING_HEXRAW","features":[70]},{"name":"CRYPT_STRING_HEX_ANY","features":[70]},{"name":"CRYPT_STRING_NOCR","features":[70]},{"name":"CRYPT_STRING_NOCRLF","features":[70]},{"name":"CRYPT_STRING_PERCENTESCAPE","features":[70]},{"name":"CRYPT_STRING_RESERVED100","features":[70]},{"name":"CRYPT_STRING_RESERVED200","features":[70]},{"name":"CRYPT_STRING_STRICT","features":[70]},{"name":"CRYPT_SUCCEED","features":[70]},{"name":"CRYPT_TEMPLATE_OID_GROUP_ID","features":[70]},{"name":"CRYPT_TIMESTAMP_ACCURACY","features":[70]},{"name":"CRYPT_TIMESTAMP_CONTEXT","features":[3,70]},{"name":"CRYPT_TIMESTAMP_INFO","features":[3,70]},{"name":"CRYPT_TIMESTAMP_PARA","features":[3,70]},{"name":"CRYPT_TIMESTAMP_REQUEST","features":[3,70]},{"name":"CRYPT_TIMESTAMP_RESPONSE","features":[70]},{"name":"CRYPT_TIMESTAMP_RESPONSE_STATUS","features":[70]},{"name":"CRYPT_TIMESTAMP_VERSION","features":[70]},{"name":"CRYPT_TIME_STAMP_REQUEST_INFO","features":[70]},{"name":"CRYPT_TYPE2_FORMAT","features":[70]},{"name":"CRYPT_UI_PROMPT","features":[70]},{"name":"CRYPT_UM","features":[70]},{"name":"CRYPT_UNICODE_NAME_DECODE_DISABLE_IE4_UTF8_FLAG","features":[70]},{"name":"CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG","features":[70]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG","features":[70]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG","features":[70]},{"name":"CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG","features":[70]},{"name":"CRYPT_UPDATE_KEY","features":[70]},{"name":"CRYPT_URL_ARRAY","features":[70]},{"name":"CRYPT_URL_INFO","features":[70]},{"name":"CRYPT_USERDATA","features":[70]},{"name":"CRYPT_USER_DEFAULT","features":[70]},{"name":"CRYPT_USER_KEYSET","features":[70]},{"name":"CRYPT_USER_PROTECTED","features":[70]},{"name":"CRYPT_USER_PROTECTED_STRONG","features":[70]},{"name":"CRYPT_VERIFYCONTEXT","features":[70]},{"name":"CRYPT_VERIFY_CERT_FLAGS","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_CHECK_WEAK_HASH_FLAG","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_DISABLE_MD2_MD4_FLAG","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_NULL","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_RETURN_STRONG_PROPERTIES_FLAG","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_SET_STRONG_PROPERTIES_FLAG","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_STRONG_PROPERTIES_INFO","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_OCSP_BASIC_SIGNED_RESPONSE","features":[70]},{"name":"CRYPT_VERIFY_CERT_SIGN_WEAK_HASH_INFO","features":[70]},{"name":"CRYPT_VERIFY_CONTEXT_SIGNATURE","features":[70]},{"name":"CRYPT_VERIFY_DATA_HASH","features":[70]},{"name":"CRYPT_VERIFY_IMAGE_A","features":[3,70]},{"name":"CRYPT_VERIFY_IMAGE_W","features":[3,70]},{"name":"CRYPT_VERIFY_MESSAGE_PARA","features":[3,70]},{"name":"CRYPT_VOLATILE","features":[70]},{"name":"CRYPT_WIRE_ONLY_RETRIEVAL","features":[70]},{"name":"CRYPT_WRITE","features":[70]},{"name":"CRYPT_X931_FORMAT","features":[70]},{"name":"CRYPT_X942_COUNTER_BYTE_LENGTH","features":[70]},{"name":"CRYPT_X942_KEY_LENGTH_BYTE_LENGTH","features":[70]},{"name":"CRYPT_X942_OTHER_INFO","features":[70]},{"name":"CRYPT_XML_ALGORITHM","features":[70]},{"name":"CRYPT_XML_ALGORITHM_INFO","features":[70]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_ALGID","features":[70]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_SIGN_ALGID","features":[70]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_NAME","features":[70]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_URI","features":[70]},{"name":"CRYPT_XML_BLOB","features":[70]},{"name":"CRYPT_XML_BLOB_MAX","features":[70]},{"name":"CRYPT_XML_CHARSET","features":[70]},{"name":"CRYPT_XML_CHARSET_AUTO","features":[70]},{"name":"CRYPT_XML_CHARSET_UTF16BE","features":[70]},{"name":"CRYPT_XML_CHARSET_UTF16LE","features":[70]},{"name":"CRYPT_XML_CHARSET_UTF8","features":[70]},{"name":"CRYPT_XML_CRYPTOGRAPHIC_INTERFACE","features":[70]},{"name":"CRYPT_XML_DATA_BLOB","features":[70]},{"name":"CRYPT_XML_DATA_PROVIDER","features":[70]},{"name":"CRYPT_XML_DIGEST_REFERENCE_DATA_TRANSFORMED","features":[70]},{"name":"CRYPT_XML_DIGEST_VALUE_MAX","features":[70]},{"name":"CRYPT_XML_DOC_CTXT","features":[70]},{"name":"CRYPT_XML_E_ALGORITHM","features":[70]},{"name":"CRYPT_XML_E_BASE","features":[70]},{"name":"CRYPT_XML_E_ENCODING","features":[70]},{"name":"CRYPT_XML_E_HANDLE","features":[70]},{"name":"CRYPT_XML_E_HASH_FAILED","features":[70]},{"name":"CRYPT_XML_E_INVALID_DIGEST","features":[70]},{"name":"CRYPT_XML_E_INVALID_KEYVALUE","features":[70]},{"name":"CRYPT_XML_E_INVALID_SIGNATURE","features":[70]},{"name":"CRYPT_XML_E_LARGE","features":[70]},{"name":"CRYPT_XML_E_LAST","features":[70]},{"name":"CRYPT_XML_E_NON_UNIQUE_ID","features":[70]},{"name":"CRYPT_XML_E_OPERATION","features":[70]},{"name":"CRYPT_XML_E_SIGNER","features":[70]},{"name":"CRYPT_XML_E_SIGN_FAILED","features":[70]},{"name":"CRYPT_XML_E_TOO_MANY_SIGNATURES","features":[70]},{"name":"CRYPT_XML_E_TOO_MANY_TRANSFORMS","features":[70]},{"name":"CRYPT_XML_E_TRANSFORM","features":[70]},{"name":"CRYPT_XML_E_UNEXPECTED_XML","features":[70]},{"name":"CRYPT_XML_E_UNRESOLVED_REFERENCE","features":[70]},{"name":"CRYPT_XML_E_VERIFY_FAILED","features":[70]},{"name":"CRYPT_XML_FLAGS","features":[70]},{"name":"CRYPT_XML_FLAG_ADD_OBJECT_CREATE_COPY","features":[70]},{"name":"CRYPT_XML_FLAG_ALWAYS_RETURN_ENCODED_OBJECT","features":[70]},{"name":"CRYPT_XML_FLAG_CREATE_REFERENCE_AS_OBJECT","features":[70]},{"name":"CRYPT_XML_FLAG_DISABLE_EXTENSIONS","features":[70]},{"name":"CRYPT_XML_FLAG_ECDSA_DSIG11","features":[70]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NAME_FORMAT","features":[70]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NCNAME_FORMAT","features":[70]},{"name":"CRYPT_XML_FLAG_NO_SERIALIZE","features":[70]},{"name":"CRYPT_XML_GROUP_ID","features":[70]},{"name":"CRYPT_XML_GROUP_ID_HASH","features":[70]},{"name":"CRYPT_XML_GROUP_ID_SIGN","features":[70]},{"name":"CRYPT_XML_ID_MAX","features":[70]},{"name":"CRYPT_XML_ISSUER_SERIAL","features":[70]},{"name":"CRYPT_XML_KEYINFO_PARAM","features":[70]},{"name":"CRYPT_XML_KEYINFO_SPEC","features":[70]},{"name":"CRYPT_XML_KEYINFO_SPEC_ENCODED","features":[70]},{"name":"CRYPT_XML_KEYINFO_SPEC_NONE","features":[70]},{"name":"CRYPT_XML_KEYINFO_SPEC_PARAM","features":[70]},{"name":"CRYPT_XML_KEYINFO_TYPE","features":[70]},{"name":"CRYPT_XML_KEYINFO_TYPE_CUSTOM","features":[70]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYNAME","features":[70]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYVALUE","features":[70]},{"name":"CRYPT_XML_KEYINFO_TYPE_RETRIEVAL","features":[70]},{"name":"CRYPT_XML_KEYINFO_TYPE_X509DATA","features":[70]},{"name":"CRYPT_XML_KEY_DSA_KEY_VALUE","features":[70]},{"name":"CRYPT_XML_KEY_ECDSA_KEY_VALUE","features":[70]},{"name":"CRYPT_XML_KEY_INFO","features":[70]},{"name":"CRYPT_XML_KEY_INFO_ITEM","features":[70]},{"name":"CRYPT_XML_KEY_RSA_KEY_VALUE","features":[70]},{"name":"CRYPT_XML_KEY_VALUE","features":[70]},{"name":"CRYPT_XML_KEY_VALUE_TYPE","features":[70]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_CUSTOM","features":[70]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_DSA","features":[70]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_ECDSA","features":[70]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_RSA","features":[70]},{"name":"CRYPT_XML_OBJECT","features":[70]},{"name":"CRYPT_XML_OBJECTS_MAX","features":[70]},{"name":"CRYPT_XML_PROPERTY","features":[70]},{"name":"CRYPT_XML_PROPERTY_DOC_DECLARATION","features":[70]},{"name":"CRYPT_XML_PROPERTY_ID","features":[70]},{"name":"CRYPT_XML_PROPERTY_MAX_HEAP_SIZE","features":[70]},{"name":"CRYPT_XML_PROPERTY_MAX_SIGNATURES","features":[70]},{"name":"CRYPT_XML_PROPERTY_SIGNATURE_LOCATION","features":[70]},{"name":"CRYPT_XML_PROPERTY_XML_OUTPUT_CHARSET","features":[70]},{"name":"CRYPT_XML_REFERENCE","features":[70]},{"name":"CRYPT_XML_REFERENCES","features":[70]},{"name":"CRYPT_XML_REFERENCES_MAX","features":[70]},{"name":"CRYPT_XML_SIGNATURE","features":[70]},{"name":"CRYPT_XML_SIGNATURES_MAX","features":[70]},{"name":"CRYPT_XML_SIGNATURE_VALUE_MAX","features":[70]},{"name":"CRYPT_XML_SIGNED_INFO","features":[70]},{"name":"CRYPT_XML_SIGN_ADD_KEYVALUE","features":[70]},{"name":"CRYPT_XML_STATUS","features":[70]},{"name":"CRYPT_XML_STATUS_DIGESTING","features":[70]},{"name":"CRYPT_XML_STATUS_DIGEST_VALID","features":[70]},{"name":"CRYPT_XML_STATUS_ERROR_DIGEST_INVALID","features":[70]},{"name":"CRYPT_XML_STATUS_ERROR_KEYINFO_NOT_PARSED","features":[70]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_RESOLVED","features":[70]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_ALGORITHM","features":[70]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_TRANSFORM","features":[70]},{"name":"CRYPT_XML_STATUS_ERROR_SIGNATURE_INVALID","features":[70]},{"name":"CRYPT_XML_STATUS_ERROR_STATUS","features":[70]},{"name":"CRYPT_XML_STATUS_INFO_STATUS","features":[70]},{"name":"CRYPT_XML_STATUS_INTERNAL_REFERENCE","features":[70]},{"name":"CRYPT_XML_STATUS_KEY_AVAILABLE","features":[70]},{"name":"CRYPT_XML_STATUS_NO_ERROR","features":[70]},{"name":"CRYPT_XML_STATUS_OPENED_TO_ENCODE","features":[70]},{"name":"CRYPT_XML_STATUS_SIGNATURE_VALID","features":[70]},{"name":"CRYPT_XML_TRANSFORM_CHAIN_CONFIG","features":[70]},{"name":"CRYPT_XML_TRANSFORM_FLAGS","features":[70]},{"name":"CRYPT_XML_TRANSFORM_INFO","features":[70]},{"name":"CRYPT_XML_TRANSFORM_MAX","features":[70]},{"name":"CRYPT_XML_TRANSFORM_ON_NODESET","features":[70]},{"name":"CRYPT_XML_TRANSFORM_ON_STREAM","features":[70]},{"name":"CRYPT_XML_TRANSFORM_URI_QUERY_STRING","features":[70]},{"name":"CRYPT_XML_X509DATA","features":[70]},{"name":"CRYPT_XML_X509DATA_ITEM","features":[70]},{"name":"CRYPT_XML_X509DATA_TYPE","features":[70]},{"name":"CRYPT_XML_X509DATA_TYPE_CERTIFICATE","features":[70]},{"name":"CRYPT_XML_X509DATA_TYPE_CRL","features":[70]},{"name":"CRYPT_XML_X509DATA_TYPE_CUSTOM","features":[70]},{"name":"CRYPT_XML_X509DATA_TYPE_ISSUER_SERIAL","features":[70]},{"name":"CRYPT_XML_X509DATA_TYPE_SKI","features":[70]},{"name":"CRYPT_XML_X509DATA_TYPE_SUBJECT_NAME","features":[70]},{"name":"CRYPT_Y_ONLY","features":[70]},{"name":"CSF_AUTHENTICATE","features":[70]},{"name":"CSF_CHANGE_AUTHENTICATOR","features":[70]},{"name":"CSF_IMPORT_KEYPAIR","features":[70]},{"name":"CTL_ANY_SUBJECT_INFO","features":[70]},{"name":"CTL_ANY_SUBJECT_TYPE","features":[70]},{"name":"CTL_CERT_SUBJECT_TYPE","features":[70]},{"name":"CTL_CONTEXT","features":[3,70]},{"name":"CTL_ENTRY","features":[70]},{"name":"CTL_ENTRY_FROM_PROP_CHAIN_FLAG","features":[70]},{"name":"CTL_FIND_ANY","features":[70]},{"name":"CTL_FIND_EXISTING","features":[70]},{"name":"CTL_FIND_MD5_HASH","features":[70]},{"name":"CTL_FIND_NO_LIST_ID_CBDATA","features":[70]},{"name":"CTL_FIND_SAME_USAGE_FLAG","features":[70]},{"name":"CTL_FIND_SHA1_HASH","features":[70]},{"name":"CTL_FIND_SUBJECT","features":[70]},{"name":"CTL_FIND_SUBJECT_PARA","features":[3,70]},{"name":"CTL_FIND_USAGE","features":[70]},{"name":"CTL_FIND_USAGE_PARA","features":[3,70]},{"name":"CTL_INFO","features":[3,70]},{"name":"CTL_USAGE","features":[70]},{"name":"CTL_USAGE_MATCH","features":[70]},{"name":"CTL_V1","features":[70]},{"name":"CTL_VERIFY_USAGE_PARA","features":[70]},{"name":"CTL_VERIFY_USAGE_STATUS","features":[3,70]},{"name":"CUR_BLOB_VERSION","features":[70]},{"name":"CUR_OFFLOAD_VERSION","features":[70]},{"name":"CertAddCRLContextToStore","features":[3,70]},{"name":"CertAddCRLLinkToStore","features":[3,70]},{"name":"CertAddCTLContextToStore","features":[3,70]},{"name":"CertAddCTLLinkToStore","features":[3,70]},{"name":"CertAddCertificateContextToStore","features":[3,70]},{"name":"CertAddCertificateLinkToStore","features":[3,70]},{"name":"CertAddEncodedCRLToStore","features":[3,70]},{"name":"CertAddEncodedCTLToStore","features":[3,70]},{"name":"CertAddEncodedCertificateToStore","features":[3,70]},{"name":"CertAddEncodedCertificateToSystemStoreA","features":[3,70]},{"name":"CertAddEncodedCertificateToSystemStoreW","features":[3,70]},{"name":"CertAddEnhancedKeyUsageIdentifier","features":[3,70]},{"name":"CertAddRefServerOcspResponse","features":[70]},{"name":"CertAddRefServerOcspResponseContext","features":[70]},{"name":"CertAddSerializedElementToStore","features":[3,70]},{"name":"CertAddStoreToCollection","features":[3,70]},{"name":"CertAlgIdToOID","features":[70]},{"name":"CertCloseServerOcspResponse","features":[70]},{"name":"CertCloseStore","features":[3,70]},{"name":"CertCompareCertificate","features":[3,70]},{"name":"CertCompareCertificateName","features":[3,70]},{"name":"CertCompareIntegerBlob","features":[3,70]},{"name":"CertComparePublicKeyInfo","features":[3,70]},{"name":"CertControlStore","features":[3,70]},{"name":"CertCreateCRLContext","features":[3,70]},{"name":"CertCreateCTLContext","features":[3,70]},{"name":"CertCreateCTLEntryFromCertificateContextProperties","features":[3,70]},{"name":"CertCreateCertificateChainEngine","features":[3,70]},{"name":"CertCreateCertificateContext","features":[3,70]},{"name":"CertCreateContext","features":[3,70]},{"name":"CertCreateSelfSignCertificate","features":[3,70]},{"name":"CertDeleteCRLFromStore","features":[3,70]},{"name":"CertDeleteCTLFromStore","features":[3,70]},{"name":"CertDeleteCertificateFromStore","features":[3,70]},{"name":"CertDuplicateCRLContext","features":[3,70]},{"name":"CertDuplicateCTLContext","features":[3,70]},{"name":"CertDuplicateCertificateChain","features":[3,70]},{"name":"CertDuplicateCertificateContext","features":[3,70]},{"name":"CertDuplicateStore","features":[70]},{"name":"CertEnumCRLContextProperties","features":[3,70]},{"name":"CertEnumCRLsInStore","features":[3,70]},{"name":"CertEnumCTLContextProperties","features":[3,70]},{"name":"CertEnumCTLsInStore","features":[3,70]},{"name":"CertEnumCertificateContextProperties","features":[3,70]},{"name":"CertEnumCertificatesInStore","features":[3,70]},{"name":"CertEnumPhysicalStore","features":[3,70]},{"name":"CertEnumSubjectInSortedCTL","features":[3,70]},{"name":"CertEnumSystemStore","features":[3,70]},{"name":"CertEnumSystemStoreLocation","features":[3,70]},{"name":"CertFindAttribute","features":[70]},{"name":"CertFindCRLInStore","features":[3,70]},{"name":"CertFindCTLInStore","features":[3,70]},{"name":"CertFindCertificateInCRL","features":[3,70]},{"name":"CertFindCertificateInStore","features":[3,70]},{"name":"CertFindChainInStore","features":[3,70]},{"name":"CertFindExtension","features":[3,70]},{"name":"CertFindRDNAttr","features":[70]},{"name":"CertFindSubjectInCTL","features":[3,70]},{"name":"CertFindSubjectInSortedCTL","features":[3,70]},{"name":"CertFreeCRLContext","features":[3,70]},{"name":"CertFreeCTLContext","features":[3,70]},{"name":"CertFreeCertificateChain","features":[3,70]},{"name":"CertFreeCertificateChainEngine","features":[70]},{"name":"CertFreeCertificateChainList","features":[3,70]},{"name":"CertFreeCertificateContext","features":[3,70]},{"name":"CertFreeServerOcspResponseContext","features":[70]},{"name":"CertGetCRLContextProperty","features":[3,70]},{"name":"CertGetCRLFromStore","features":[3,70]},{"name":"CertGetCTLContextProperty","features":[3,70]},{"name":"CertGetCertificateChain","features":[3,70]},{"name":"CertGetCertificateContextProperty","features":[3,70]},{"name":"CertGetEnhancedKeyUsage","features":[3,70]},{"name":"CertGetIntendedKeyUsage","features":[3,70]},{"name":"CertGetIssuerCertificateFromStore","features":[3,70]},{"name":"CertGetNameStringA","features":[3,70]},{"name":"CertGetNameStringW","features":[3,70]},{"name":"CertGetPublicKeyLength","features":[70]},{"name":"CertGetServerOcspResponseContext","features":[70]},{"name":"CertGetStoreProperty","features":[3,70]},{"name":"CertGetSubjectCertificateFromStore","features":[3,70]},{"name":"CertGetValidUsages","features":[3,70]},{"name":"CertIsRDNAttrsInCertificateName","features":[3,70]},{"name":"CertIsStrongHashToSign","features":[3,70]},{"name":"CertIsValidCRLForCertificate","features":[3,70]},{"name":"CertIsWeakHash","features":[3,70]},{"name":"CertKeyType","features":[70]},{"name":"CertNameToStrA","features":[70]},{"name":"CertNameToStrW","features":[70]},{"name":"CertOIDToAlgId","features":[70]},{"name":"CertOpenServerOcspResponse","features":[3,70]},{"name":"CertOpenStore","features":[70]},{"name":"CertOpenSystemStoreA","features":[70]},{"name":"CertOpenSystemStoreW","features":[70]},{"name":"CertRDNValueToStrA","features":[70]},{"name":"CertRDNValueToStrW","features":[70]},{"name":"CertRegisterPhysicalStore","features":[3,70]},{"name":"CertRegisterSystemStore","features":[3,70]},{"name":"CertRemoveEnhancedKeyUsageIdentifier","features":[3,70]},{"name":"CertRemoveStoreFromCollection","features":[70]},{"name":"CertResyncCertificateChainEngine","features":[3,70]},{"name":"CertRetrieveLogoOrBiometricInfo","features":[3,70]},{"name":"CertSaveStore","features":[3,70]},{"name":"CertSelectCertificateChains","features":[3,70]},{"name":"CertSerializeCRLStoreElement","features":[3,70]},{"name":"CertSerializeCTLStoreElement","features":[3,70]},{"name":"CertSerializeCertificateStoreElement","features":[3,70]},{"name":"CertSetCRLContextProperty","features":[3,70]},{"name":"CertSetCTLContextProperty","features":[3,70]},{"name":"CertSetCertificateContextPropertiesFromCTLEntry","features":[3,70]},{"name":"CertSetCertificateContextProperty","features":[3,70]},{"name":"CertSetEnhancedKeyUsage","features":[3,70]},{"name":"CertSetStoreProperty","features":[3,70]},{"name":"CertStrToNameA","features":[3,70]},{"name":"CertStrToNameW","features":[3,70]},{"name":"CertUnregisterPhysicalStore","features":[3,70]},{"name":"CertUnregisterSystemStore","features":[3,70]},{"name":"CertVerifyCRLRevocation","features":[3,70]},{"name":"CertVerifyCRLTimeValidity","features":[3,70]},{"name":"CertVerifyCTLUsage","features":[3,70]},{"name":"CertVerifyCertificateChainPolicy","features":[3,70]},{"name":"CertVerifyRevocation","features":[3,70]},{"name":"CertVerifySubjectCertificateContext","features":[3,70]},{"name":"CertVerifyTimeValidity","features":[3,70]},{"name":"CertVerifyValidityNesting","features":[3,70]},{"name":"ChallengeResponsePinType","features":[70]},{"name":"CloseCryptoHandle","features":[70]},{"name":"CryptAcquireCertificatePrivateKey","features":[3,70]},{"name":"CryptAcquireContextA","features":[3,70]},{"name":"CryptAcquireContextW","features":[3,70]},{"name":"CryptBinaryToStringA","features":[3,70]},{"name":"CryptBinaryToStringW","features":[3,70]},{"name":"CryptCloseAsyncHandle","features":[3,70]},{"name":"CryptContextAddRef","features":[3,70]},{"name":"CryptCreateAsyncHandle","features":[3,70]},{"name":"CryptCreateHash","features":[3,70]},{"name":"CryptCreateKeyIdentifierFromCSP","features":[3,70]},{"name":"CryptDecodeMessage","features":[3,70]},{"name":"CryptDecodeObject","features":[3,70]},{"name":"CryptDecodeObjectEx","features":[3,70]},{"name":"CryptDecrypt","features":[3,70]},{"name":"CryptDecryptAndVerifyMessageSignature","features":[3,70]},{"name":"CryptDecryptMessage","features":[3,70]},{"name":"CryptDeriveKey","features":[3,70]},{"name":"CryptDestroyHash","features":[3,70]},{"name":"CryptDestroyKey","features":[3,70]},{"name":"CryptDuplicateHash","features":[3,70]},{"name":"CryptDuplicateKey","features":[3,70]},{"name":"CryptEncodeObject","features":[3,70]},{"name":"CryptEncodeObjectEx","features":[3,70]},{"name":"CryptEncrypt","features":[3,70]},{"name":"CryptEncryptMessage","features":[3,70]},{"name":"CryptEnumKeyIdentifierProperties","features":[3,70]},{"name":"CryptEnumOIDFunction","features":[3,70]},{"name":"CryptEnumOIDInfo","features":[3,70]},{"name":"CryptEnumProviderTypesA","features":[3,70]},{"name":"CryptEnumProviderTypesW","features":[3,70]},{"name":"CryptEnumProvidersA","features":[3,70]},{"name":"CryptEnumProvidersW","features":[3,70]},{"name":"CryptExportKey","features":[3,70]},{"name":"CryptExportPKCS8","features":[3,70]},{"name":"CryptExportPublicKeyInfo","features":[3,70]},{"name":"CryptExportPublicKeyInfoEx","features":[3,70]},{"name":"CryptExportPublicKeyInfoFromBCryptKeyHandle","features":[3,70]},{"name":"CryptFindCertificateKeyProvInfo","features":[3,70]},{"name":"CryptFindLocalizedName","features":[70]},{"name":"CryptFindOIDInfo","features":[70]},{"name":"CryptFormatObject","features":[3,70]},{"name":"CryptFreeOIDFunctionAddress","features":[3,70]},{"name":"CryptGenKey","features":[3,70]},{"name":"CryptGenRandom","features":[3,70]},{"name":"CryptGetAsyncParam","features":[3,70]},{"name":"CryptGetDefaultOIDDllList","features":[3,70]},{"name":"CryptGetDefaultOIDFunctionAddress","features":[3,70]},{"name":"CryptGetDefaultProviderA","features":[3,70]},{"name":"CryptGetDefaultProviderW","features":[3,70]},{"name":"CryptGetHashParam","features":[3,70]},{"name":"CryptGetKeyIdentifierProperty","features":[3,70]},{"name":"CryptGetKeyParam","features":[3,70]},{"name":"CryptGetMessageCertificates","features":[70]},{"name":"CryptGetMessageSignerCount","features":[70]},{"name":"CryptGetOIDFunctionAddress","features":[3,70]},{"name":"CryptGetOIDFunctionValue","features":[3,70]},{"name":"CryptGetObjectUrl","features":[3,70]},{"name":"CryptGetProvParam","features":[3,70]},{"name":"CryptGetUserKey","features":[3,70]},{"name":"CryptHashCertificate","features":[3,70]},{"name":"CryptHashCertificate2","features":[3,70]},{"name":"CryptHashData","features":[3,70]},{"name":"CryptHashMessage","features":[3,70]},{"name":"CryptHashPublicKeyInfo","features":[3,70]},{"name":"CryptHashSessionKey","features":[3,70]},{"name":"CryptHashToBeSigned","features":[3,70]},{"name":"CryptImportKey","features":[3,70]},{"name":"CryptImportPKCS8","features":[3,70]},{"name":"CryptImportPublicKeyInfo","features":[3,70]},{"name":"CryptImportPublicKeyInfoEx","features":[3,70]},{"name":"CryptImportPublicKeyInfoEx2","features":[3,70]},{"name":"CryptInitOIDFunctionSet","features":[70]},{"name":"CryptInstallCancelRetrieval","features":[3,70]},{"name":"CryptInstallDefaultContext","features":[3,70]},{"name":"CryptInstallOIDFunctionAddress","features":[3,70]},{"name":"CryptMemAlloc","features":[70]},{"name":"CryptMemFree","features":[70]},{"name":"CryptMemRealloc","features":[70]},{"name":"CryptMsgCalculateEncodedLength","features":[70]},{"name":"CryptMsgClose","features":[3,70]},{"name":"CryptMsgControl","features":[3,70]},{"name":"CryptMsgCountersign","features":[3,70]},{"name":"CryptMsgCountersignEncoded","features":[3,70]},{"name":"CryptMsgDuplicate","features":[70]},{"name":"CryptMsgEncodeAndSignCTL","features":[3,70]},{"name":"CryptMsgGetAndVerifySigner","features":[3,70]},{"name":"CryptMsgGetParam","features":[3,70]},{"name":"CryptMsgOpenToDecode","features":[3,70]},{"name":"CryptMsgOpenToEncode","features":[3,70]},{"name":"CryptMsgSignCTL","features":[3,70]},{"name":"CryptMsgUpdate","features":[3,70]},{"name":"CryptMsgVerifyCountersignatureEncoded","features":[3,70]},{"name":"CryptMsgVerifyCountersignatureEncodedEx","features":[3,70]},{"name":"CryptProtectData","features":[3,70]},{"name":"CryptProtectMemory","features":[3,70]},{"name":"CryptQueryObject","features":[3,70]},{"name":"CryptRegisterDefaultOIDFunction","features":[3,70]},{"name":"CryptRegisterOIDFunction","features":[3,70]},{"name":"CryptRegisterOIDInfo","features":[3,70]},{"name":"CryptReleaseContext","features":[3,70]},{"name":"CryptRetrieveObjectByUrlA","features":[3,70]},{"name":"CryptRetrieveObjectByUrlW","features":[3,70]},{"name":"CryptRetrieveTimeStamp","features":[3,70]},{"name":"CryptSetAsyncParam","features":[3,70]},{"name":"CryptSetHashParam","features":[3,70]},{"name":"CryptSetKeyIdentifierProperty","features":[3,70]},{"name":"CryptSetKeyParam","features":[3,70]},{"name":"CryptSetOIDFunctionValue","features":[3,70,51]},{"name":"CryptSetProvParam","features":[3,70]},{"name":"CryptSetProviderA","features":[3,70]},{"name":"CryptSetProviderExA","features":[3,70]},{"name":"CryptSetProviderExW","features":[3,70]},{"name":"CryptSetProviderW","features":[3,70]},{"name":"CryptSignAndEncodeCertificate","features":[3,70]},{"name":"CryptSignAndEncryptMessage","features":[3,70]},{"name":"CryptSignCertificate","features":[3,70]},{"name":"CryptSignHashA","features":[3,70]},{"name":"CryptSignHashW","features":[3,70]},{"name":"CryptSignMessage","features":[3,70]},{"name":"CryptSignMessageWithKey","features":[3,70]},{"name":"CryptStringToBinaryA","features":[3,70]},{"name":"CryptStringToBinaryW","features":[3,70]},{"name":"CryptUninstallCancelRetrieval","features":[3,70]},{"name":"CryptUninstallDefaultContext","features":[3,70]},{"name":"CryptUnprotectData","features":[3,70]},{"name":"CryptUnprotectMemory","features":[3,70]},{"name":"CryptUnregisterDefaultOIDFunction","features":[3,70]},{"name":"CryptUnregisterOIDFunction","features":[3,70]},{"name":"CryptUnregisterOIDInfo","features":[3,70]},{"name":"CryptUpdateProtectedState","features":[3,70]},{"name":"CryptVerifyCertificateSignature","features":[3,70]},{"name":"CryptVerifyCertificateSignatureEx","features":[3,70]},{"name":"CryptVerifyDetachedMessageHash","features":[3,70]},{"name":"CryptVerifyDetachedMessageSignature","features":[3,70]},{"name":"CryptVerifyMessageHash","features":[3,70]},{"name":"CryptVerifyMessageSignature","features":[3,70]},{"name":"CryptVerifyMessageSignatureWithKey","features":[3,70]},{"name":"CryptVerifySignatureA","features":[3,70]},{"name":"CryptVerifySignatureW","features":[3,70]},{"name":"CryptVerifyTimeStampSignature","features":[3,70]},{"name":"CryptXmlAddObject","features":[70]},{"name":"CryptXmlClose","features":[70]},{"name":"CryptXmlCreateReference","features":[70]},{"name":"CryptXmlDigestReference","features":[70]},{"name":"CryptXmlDllCloseDigest","features":[70]},{"name":"CryptXmlDllCreateDigest","features":[70]},{"name":"CryptXmlDllCreateKey","features":[70]},{"name":"CryptXmlDllDigestData","features":[70]},{"name":"CryptXmlDllEncodeAlgorithm","features":[70]},{"name":"CryptXmlDllEncodeKeyValue","features":[70]},{"name":"CryptXmlDllFinalizeDigest","features":[70]},{"name":"CryptXmlDllGetAlgorithmInfo","features":[70]},{"name":"CryptXmlDllGetInterface","features":[70]},{"name":"CryptXmlDllSignData","features":[70]},{"name":"CryptXmlDllVerifySignature","features":[70]},{"name":"CryptXmlEncode","features":[70]},{"name":"CryptXmlEnumAlgorithmInfo","features":[3,70]},{"name":"CryptXmlFindAlgorithmInfo","features":[70]},{"name":"CryptXmlGetAlgorithmInfo","features":[70]},{"name":"CryptXmlGetDocContext","features":[70]},{"name":"CryptXmlGetReference","features":[70]},{"name":"CryptXmlGetSignature","features":[70]},{"name":"CryptXmlGetStatus","features":[70]},{"name":"CryptXmlGetTransforms","features":[70]},{"name":"CryptXmlImportPublicKey","features":[70]},{"name":"CryptXmlOpenToDecode","features":[70]},{"name":"CryptXmlOpenToEncode","features":[70]},{"name":"CryptXmlSetHMACSecret","features":[70]},{"name":"CryptXmlSign","features":[70]},{"name":"CryptXmlVerifySignature","features":[70]},{"name":"DSAFIPSVERSION_ENUM","features":[70]},{"name":"DSA_FIPS186_2","features":[70]},{"name":"DSA_FIPS186_3","features":[70]},{"name":"DSA_HASH_ALGORITHM_SHA1","features":[70]},{"name":"DSA_HASH_ALGORITHM_SHA256","features":[70]},{"name":"DSA_HASH_ALGORITHM_SHA512","features":[70]},{"name":"DSSSEED","features":[70]},{"name":"DTLS1_0_PROTOCOL_VERSION","features":[70]},{"name":"DTLS1_2_PROTOCOL_VERSION","features":[70]},{"name":"Decrypt","features":[3,70]},{"name":"DigitalSignaturePin","features":[70]},{"name":"Direction","features":[70]},{"name":"DirectionDecrypt","features":[70]},{"name":"DirectionEncrypt","features":[70]},{"name":"ECC_CMS_SHARED_INFO","features":[70]},{"name":"ECC_CURVE_ALG_ID_ENUM","features":[70]},{"name":"ECC_CURVE_TYPE_ENUM","features":[70]},{"name":"ENDPOINTADDRESS","features":[70]},{"name":"ENDPOINTADDRESS2","features":[70]},{"name":"ENUM_CEPSETUPPROP_AUTHENTICATION","features":[70]},{"name":"ENUM_CEPSETUPPROP_CAINFORMATION","features":[70]},{"name":"ENUM_CEPSETUPPROP_CHALLENGEURL","features":[70]},{"name":"ENUM_CEPSETUPPROP_EXCHANGEKEYINFORMATION","features":[70]},{"name":"ENUM_CEPSETUPPROP_KEYBASED_RENEWAL","features":[70]},{"name":"ENUM_CEPSETUPPROP_MSCEPURL","features":[70]},{"name":"ENUM_CEPSETUPPROP_RANAME_CITY","features":[70]},{"name":"ENUM_CEPSETUPPROP_RANAME_CN","features":[70]},{"name":"ENUM_CEPSETUPPROP_RANAME_COMPANY","features":[70]},{"name":"ENUM_CEPSETUPPROP_RANAME_COUNTRY","features":[70]},{"name":"ENUM_CEPSETUPPROP_RANAME_DEPT","features":[70]},{"name":"ENUM_CEPSETUPPROP_RANAME_EMAIL","features":[70]},{"name":"ENUM_CEPSETUPPROP_RANAME_STATE","features":[70]},{"name":"ENUM_CEPSETUPPROP_SIGNINGKEYINFORMATION","features":[70]},{"name":"ENUM_CEPSETUPPROP_SSLCERTHASH","features":[70]},{"name":"ENUM_CEPSETUPPROP_URL","features":[70]},{"name":"ENUM_CEPSETUPPROP_USECHALLENGE","features":[70]},{"name":"ENUM_CEPSETUPPROP_USELOCALSYSTEM","features":[70]},{"name":"ENUM_CESSETUPPROP_ALLOW_KEYBASED_RENEWAL","features":[70]},{"name":"ENUM_CESSETUPPROP_AUTHENTICATION","features":[70]},{"name":"ENUM_CESSETUPPROP_CACONFIG","features":[70]},{"name":"ENUM_CESSETUPPROP_RENEWALONLY","features":[70]},{"name":"ENUM_CESSETUPPROP_SSLCERTHASH","features":[70]},{"name":"ENUM_CESSETUPPROP_URL","features":[70]},{"name":"ENUM_CESSETUPPROP_USE_IISAPPPOOLIDENTITY","features":[70]},{"name":"ENUM_SETUPPROP_CADSSUFFIX","features":[70]},{"name":"ENUM_SETUPPROP_CAKEYINFORMATION","features":[70]},{"name":"ENUM_SETUPPROP_CANAME","features":[70]},{"name":"ENUM_SETUPPROP_CATYPE","features":[70]},{"name":"ENUM_SETUPPROP_DATABASEDIRECTORY","features":[70]},{"name":"ENUM_SETUPPROP_EXPIRATIONDATE","features":[70]},{"name":"ENUM_SETUPPROP_INTERACTIVE","features":[70]},{"name":"ENUM_SETUPPROP_INVALID","features":[70]},{"name":"ENUM_SETUPPROP_LOGDIRECTORY","features":[70]},{"name":"ENUM_SETUPPROP_PARENTCAMACHINE","features":[70]},{"name":"ENUM_SETUPPROP_PARENTCANAME","features":[70]},{"name":"ENUM_SETUPPROP_PRESERVEDATABASE","features":[70]},{"name":"ENUM_SETUPPROP_REQUESTFILE","features":[70]},{"name":"ENUM_SETUPPROP_SHAREDFOLDER","features":[70]},{"name":"ENUM_SETUPPROP_VALIDITYPERIOD","features":[70]},{"name":"ENUM_SETUPPROP_VALIDITYPERIODUNIT","features":[70]},{"name":"ENUM_SETUPPROP_WEBCAMACHINE","features":[70]},{"name":"ENUM_SETUPPROP_WEBCANAME","features":[70]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_PARA","features":[70]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[70]},{"name":"EXPORT_PRIVATE_KEYS","features":[70]},{"name":"EXPO_OFFLOAD_FUNC_NAME","features":[70]},{"name":"EXPO_OFFLOAD_REG_VALUE","features":[70]},{"name":"E_ICARD_ARGUMENT","features":[70]},{"name":"E_ICARD_COMMUNICATION","features":[70]},{"name":"E_ICARD_DATA_ACCESS","features":[70]},{"name":"E_ICARD_EXPORT","features":[70]},{"name":"E_ICARD_FAIL","features":[70]},{"name":"E_ICARD_FAILED_REQUIRED_CLAIMS","features":[70]},{"name":"E_ICARD_IDENTITY","features":[70]},{"name":"E_ICARD_IMPORT","features":[70]},{"name":"E_ICARD_INFORMATIONCARD","features":[70]},{"name":"E_ICARD_INVALID_PROOF_KEY","features":[70]},{"name":"E_ICARD_LOGOVALIDATION","features":[70]},{"name":"E_ICARD_MISSING_APPLIESTO","features":[70]},{"name":"E_ICARD_PASSWORDVALIDATION","features":[70]},{"name":"E_ICARD_POLICY","features":[70]},{"name":"E_ICARD_PROCESSDIED","features":[70]},{"name":"E_ICARD_REFRESH_REQUIRED","features":[70]},{"name":"E_ICARD_REQUEST","features":[70]},{"name":"E_ICARD_SERVICE","features":[70]},{"name":"E_ICARD_SERVICEBUSY","features":[70]},{"name":"E_ICARD_SHUTTINGDOWN","features":[70]},{"name":"E_ICARD_STOREKEY","features":[70]},{"name":"E_ICARD_STORE_IMPORT","features":[70]},{"name":"E_ICARD_TOKENCREATION","features":[70]},{"name":"E_ICARD_TRUSTEXCHANGE","features":[70]},{"name":"E_ICARD_UI_INITIALIZATION","features":[70]},{"name":"E_ICARD_UNKNOWN_REFERENCE","features":[70]},{"name":"E_ICARD_UNTRUSTED","features":[70]},{"name":"E_ICARD_USERCANCELLED","features":[70]},{"name":"EmptyPinType","features":[70]},{"name":"Encrypt","features":[3,70]},{"name":"EncryptionPin","features":[70]},{"name":"EveryoneReadAdminWriteAc","features":[70]},{"name":"EveryoneReadUserWriteAc","features":[70]},{"name":"ExternalPinType","features":[70]},{"name":"FindCertsByIssuer","features":[70]},{"name":"FreeToken","features":[3,70]},{"name":"GENERIC_XML_TOKEN","features":[3,70]},{"name":"GenerateDerivedKey","features":[70]},{"name":"GetAsymmetricEncryptionInterfaceFn","features":[3,70]},{"name":"GetBrowserToken","features":[70]},{"name":"GetCipherInterfaceFn","features":[3,70]},{"name":"GetCryptoTransform","features":[70]},{"name":"GetHashInterfaceFn","features":[3,70]},{"name":"GetKeyDerivationInterfaceFn","features":[3,70]},{"name":"GetKeyStorageInterface","features":[3,70]},{"name":"GetKeyStorageInterfaceFn","features":[3,70]},{"name":"GetKeyedHash","features":[70]},{"name":"GetRngInterfaceFn","features":[3,70]},{"name":"GetSChannelInterface","features":[3,70]},{"name":"GetSChannelInterfaceFn","features":[3,70]},{"name":"GetSecretAgreementInterfaceFn","features":[3,70]},{"name":"GetSignatureInterfaceFn","features":[3,70]},{"name":"GetToken","features":[3,70]},{"name":"HASHALGORITHM_ENUM","features":[70]},{"name":"HCERTCHAINENGINE","features":[70]},{"name":"HCERTSTORE","features":[70]},{"name":"HCERTSTOREPROV","features":[70]},{"name":"HCRYPTASYNC","features":[70]},{"name":"HCRYPTPROV_LEGACY","features":[70]},{"name":"HCRYPTPROV_OR_NCRYPT_KEY_HANDLE","features":[70]},{"name":"HMAC_INFO","features":[70]},{"name":"HP_ALGID","features":[70]},{"name":"HP_HASHSIZE","features":[70]},{"name":"HP_HASHVAL","features":[70]},{"name":"HP_HMAC_INFO","features":[70]},{"name":"HP_TLS1PRF_LABEL","features":[70]},{"name":"HP_TLS1PRF_SEED","features":[70]},{"name":"HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE","features":[70]},{"name":"HTTPSPolicyCallbackData","features":[70]},{"name":"HandleType","features":[70]},{"name":"HashCore","features":[70]},{"name":"HashFinal","features":[70]},{"name":"ICertSrvSetup","features":[70]},{"name":"ICertSrvSetupKeyInformation","features":[70]},{"name":"ICertSrvSetupKeyInformationCollection","features":[70]},{"name":"ICertificateEnrollmentPolicyServerSetup","features":[70]},{"name":"ICertificateEnrollmentServerSetup","features":[70]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_1","features":[70]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_2","features":[70]},{"name":"IFX_RSA_KEYGEN_VUL_NOT_AFFECTED","features":[70]},{"name":"IMSCEPSetup","features":[70]},{"name":"INFORMATIONCARD_ASYMMETRIC_CRYPTO_PARAMETERS","features":[70]},{"name":"INFORMATIONCARD_CRYPTO_HANDLE","features":[70]},{"name":"INFORMATIONCARD_HASH_CRYPTO_PARAMETERS","features":[3,70]},{"name":"INFORMATIONCARD_SYMMETRIC_CRYPTO_PARAMETERS","features":[70]},{"name":"INFORMATIONCARD_TRANSFORM_CRYPTO_PARAMETERS","features":[3,70]},{"name":"INTERNATIONAL_USAGE","features":[70]},{"name":"ImportInformationCard","features":[70]},{"name":"InFileSignatureResource","features":[70]},{"name":"InvalidAc","features":[70]},{"name":"InvalidDirAc","features":[70]},{"name":"KDF_ALGORITHMID","features":[70]},{"name":"KDF_CONTEXT","features":[70]},{"name":"KDF_GENERIC_PARAMETER","features":[70]},{"name":"KDF_HASH_ALGORITHM","features":[70]},{"name":"KDF_HKDF_INFO","features":[70]},{"name":"KDF_HKDF_SALT","features":[70]},{"name":"KDF_HMAC_KEY","features":[70]},{"name":"KDF_ITERATION_COUNT","features":[70]},{"name":"KDF_KEYBITLENGTH","features":[70]},{"name":"KDF_LABEL","features":[70]},{"name":"KDF_PARTYUINFO","features":[70]},{"name":"KDF_PARTYVINFO","features":[70]},{"name":"KDF_SALT","features":[70]},{"name":"KDF_SECRET_APPEND","features":[70]},{"name":"KDF_SECRET_HANDLE","features":[70]},{"name":"KDF_SECRET_PREPEND","features":[70]},{"name":"KDF_SUPPPRIVINFO","features":[70]},{"name":"KDF_SUPPPUBINFO","features":[70]},{"name":"KDF_TLS_PRF_LABEL","features":[70]},{"name":"KDF_TLS_PRF_PROTOCOL","features":[70]},{"name":"KDF_TLS_PRF_SEED","features":[70]},{"name":"KDF_USE_SECRET_AS_HMAC_KEY_FLAG","features":[70]},{"name":"KEYSTATEBLOB","features":[70]},{"name":"KEY_LENGTH_MASK","features":[70]},{"name":"KEY_TYPE_SUBTYPE","features":[70]},{"name":"KP_ADMIN_PIN","features":[70]},{"name":"KP_ALGID","features":[70]},{"name":"KP_BLOCKLEN","features":[70]},{"name":"KP_CERTIFICATE","features":[70]},{"name":"KP_CLEAR_KEY","features":[70]},{"name":"KP_CLIENT_RANDOM","features":[70]},{"name":"KP_CMS_DH_KEY_INFO","features":[70]},{"name":"KP_CMS_KEY_INFO","features":[70]},{"name":"KP_EFFECTIVE_KEYLEN","features":[70]},{"name":"KP_G","features":[70]},{"name":"KP_GET_USE_COUNT","features":[70]},{"name":"KP_HIGHEST_VERSION","features":[70]},{"name":"KP_INFO","features":[70]},{"name":"KP_IV","features":[70]},{"name":"KP_KEYEXCHANGE_PIN","features":[70]},{"name":"KP_KEYLEN","features":[70]},{"name":"KP_KEYVAL","features":[70]},{"name":"KP_MODE","features":[70]},{"name":"KP_MODE_BITS","features":[70]},{"name":"KP_OAEP_PARAMS","features":[70]},{"name":"KP_P","features":[70]},{"name":"KP_PADDING","features":[70]},{"name":"KP_PERMISSIONS","features":[70]},{"name":"KP_PIN_ID","features":[70]},{"name":"KP_PIN_INFO","features":[70]},{"name":"KP_PRECOMP_MD5","features":[70]},{"name":"KP_PRECOMP_SHA","features":[70]},{"name":"KP_PREHASH","features":[70]},{"name":"KP_PUB_EX_LEN","features":[70]},{"name":"KP_PUB_EX_VAL","features":[70]},{"name":"KP_PUB_PARAMS","features":[70]},{"name":"KP_Q","features":[70]},{"name":"KP_RA","features":[70]},{"name":"KP_RB","features":[70]},{"name":"KP_ROUNDS","features":[70]},{"name":"KP_RP","features":[70]},{"name":"KP_SALT","features":[70]},{"name":"KP_SALT_EX","features":[70]},{"name":"KP_SCHANNEL_ALG","features":[70]},{"name":"KP_SERVER_RANDOM","features":[70]},{"name":"KP_SIGNATURE_PIN","features":[70]},{"name":"KP_VERIFY_PARAMS","features":[70]},{"name":"KP_X","features":[70]},{"name":"KP_Y","features":[70]},{"name":"KeyTypeHardware","features":[70]},{"name":"KeyTypeOther","features":[70]},{"name":"KeyTypePassport","features":[70]},{"name":"KeyTypePassportRemote","features":[70]},{"name":"KeyTypePassportSmartCard","features":[70]},{"name":"KeyTypePhysicalSmartCard","features":[70]},{"name":"KeyTypeSelfSigned","features":[70]},{"name":"KeyTypeSoftware","features":[70]},{"name":"KeyTypeVirtualSmartCard","features":[70]},{"name":"LEGACY_DH_PRIVATE_BLOB","features":[70]},{"name":"LEGACY_DH_PUBLIC_BLOB","features":[70]},{"name":"LEGACY_DSA_PRIVATE_BLOB","features":[70]},{"name":"LEGACY_DSA_PUBLIC_BLOB","features":[70]},{"name":"LEGACY_DSA_V2_PRIVATE_BLOB","features":[70]},{"name":"LEGACY_DSA_V2_PUBLIC_BLOB","features":[70]},{"name":"LEGACY_RSAPRIVATE_BLOB","features":[70]},{"name":"LEGACY_RSAPUBLIC_BLOB","features":[70]},{"name":"MAXUIDLEN","features":[70]},{"name":"MAX_CONTAINER_NAME_LEN","features":[70]},{"name":"MAX_PINS","features":[70]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_CHECK_APPLICATION_ROOT_FLAG","features":[70]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_DISABLE_FLIGHT_ROOT_FLAG","features":[70]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_ENABLE_TEST_ROOT_FLAG","features":[70]},{"name":"MSCEPSetupProperty","features":[70]},{"name":"MSCRYPT_ECC_MAX_CURVE_NAME_LENGTH","features":[70]},{"name":"MSCRYPT_ECC_MAX_OID_LENGTH","features":[70]},{"name":"MS_DEF_DH_SCHANNEL_PROV","features":[70]},{"name":"MS_DEF_DH_SCHANNEL_PROV_A","features":[70]},{"name":"MS_DEF_DH_SCHANNEL_PROV_W","features":[70]},{"name":"MS_DEF_DSS_DH_PROV","features":[70]},{"name":"MS_DEF_DSS_DH_PROV_A","features":[70]},{"name":"MS_DEF_DSS_DH_PROV_W","features":[70]},{"name":"MS_DEF_DSS_PROV","features":[70]},{"name":"MS_DEF_DSS_PROV_A","features":[70]},{"name":"MS_DEF_DSS_PROV_W","features":[70]},{"name":"MS_DEF_PROV","features":[70]},{"name":"MS_DEF_PROV_A","features":[70]},{"name":"MS_DEF_PROV_W","features":[70]},{"name":"MS_DEF_RSA_SCHANNEL_PROV","features":[70]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_A","features":[70]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_W","features":[70]},{"name":"MS_DEF_RSA_SIG_PROV","features":[70]},{"name":"MS_DEF_RSA_SIG_PROV_A","features":[70]},{"name":"MS_DEF_RSA_SIG_PROV_W","features":[70]},{"name":"MS_ENHANCED_PROV","features":[70]},{"name":"MS_ENHANCED_PROV_A","features":[70]},{"name":"MS_ENHANCED_PROV_W","features":[70]},{"name":"MS_ENH_DSS_DH_PROV","features":[70]},{"name":"MS_ENH_DSS_DH_PROV_A","features":[70]},{"name":"MS_ENH_DSS_DH_PROV_W","features":[70]},{"name":"MS_ENH_RSA_AES_PROV","features":[70]},{"name":"MS_ENH_RSA_AES_PROV_A","features":[70]},{"name":"MS_ENH_RSA_AES_PROV_W","features":[70]},{"name":"MS_ENH_RSA_AES_PROV_XP","features":[70]},{"name":"MS_ENH_RSA_AES_PROV_XP_A","features":[70]},{"name":"MS_ENH_RSA_AES_PROV_XP_W","features":[70]},{"name":"MS_KEY_PROTECTION_PROVIDER","features":[70]},{"name":"MS_KEY_STORAGE_PROVIDER","features":[70]},{"name":"MS_NGC_KEY_STORAGE_PROVIDER","features":[70]},{"name":"MS_PLATFORM_CRYPTO_PROVIDER","features":[70]},{"name":"MS_PLATFORM_KEY_STORAGE_PROVIDER","features":[70]},{"name":"MS_PRIMITIVE_PROVIDER","features":[70]},{"name":"MS_SCARD_PROV","features":[70]},{"name":"MS_SCARD_PROV_A","features":[70]},{"name":"MS_SCARD_PROV_W","features":[70]},{"name":"MS_SCHANNEL_PROVIDER","features":[70]},{"name":"MS_SMART_CARD_KEY_STORAGE_PROVIDER","features":[70]},{"name":"MS_STRONG_PROV","features":[70]},{"name":"MS_STRONG_PROV_A","features":[70]},{"name":"MS_STRONG_PROV_W","features":[70]},{"name":"ManageCardSpace","features":[70]},{"name":"NCRYPTBUFFER_ATTESTATIONSTATEMENT_BLOB","features":[70]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_CHALLENGE_REQUIRED","features":[70]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_TYPE","features":[70]},{"name":"NCRYPTBUFFER_CERT_BLOB","features":[70]},{"name":"NCRYPTBUFFER_CLAIM_IDBINDING_NONCE","features":[70]},{"name":"NCRYPTBUFFER_CLAIM_KEYATTESTATION_NONCE","features":[70]},{"name":"NCRYPTBUFFER_DATA","features":[70]},{"name":"NCRYPTBUFFER_ECC_CURVE_NAME","features":[70]},{"name":"NCRYPTBUFFER_ECC_PARAMETERS","features":[70]},{"name":"NCRYPTBUFFER_EMPTY","features":[70]},{"name":"NCRYPTBUFFER_KEY_PROPERTY_FLAGS","features":[70]},{"name":"NCRYPTBUFFER_PKCS_ALG_ID","features":[70]},{"name":"NCRYPTBUFFER_PKCS_ALG_OID","features":[70]},{"name":"NCRYPTBUFFER_PKCS_ALG_PARAM","features":[70]},{"name":"NCRYPTBUFFER_PKCS_ATTRS","features":[70]},{"name":"NCRYPTBUFFER_PKCS_KEY_NAME","features":[70]},{"name":"NCRYPTBUFFER_PKCS_OID","features":[70]},{"name":"NCRYPTBUFFER_PKCS_SECRET","features":[70]},{"name":"NCRYPTBUFFER_PROTECTION_DESCRIPTOR_STRING","features":[70]},{"name":"NCRYPTBUFFER_PROTECTION_FLAGS","features":[70]},{"name":"NCRYPTBUFFER_SSL_CLEAR_KEY","features":[70]},{"name":"NCRYPTBUFFER_SSL_CLIENT_RANDOM","features":[70]},{"name":"NCRYPTBUFFER_SSL_HIGHEST_VERSION","features":[70]},{"name":"NCRYPTBUFFER_SSL_KEY_ARG_DATA","features":[70]},{"name":"NCRYPTBUFFER_SSL_SERVER_RANDOM","features":[70]},{"name":"NCRYPTBUFFER_SSL_SESSION_HASH","features":[70]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_NONCE","features":[70]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_PCR_MASK","features":[70]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_STATIC_CREATE","features":[70]},{"name":"NCRYPTBUFFER_TPM_SEAL_NO_DA_PROTECTION","features":[70]},{"name":"NCRYPTBUFFER_TPM_SEAL_PASSWORD","features":[70]},{"name":"NCRYPTBUFFER_TPM_SEAL_POLICYINFO","features":[70]},{"name":"NCRYPTBUFFER_TPM_SEAL_TICKET","features":[70]},{"name":"NCRYPTBUFFER_VERSION","features":[70]},{"name":"NCRYPTBUFFER_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[70]},{"name":"NCRYPT_3DES_112_ALGORITHM","features":[70]},{"name":"NCRYPT_3DES_ALGORITHM","features":[70]},{"name":"NCRYPT_AES_ALGORITHM","features":[70]},{"name":"NCRYPT_AES_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_ALGORITHM_GROUP_PROPERTY","features":[70]},{"name":"NCRYPT_ALGORITHM_NAME_CLASS","features":[70]},{"name":"NCRYPT_ALGORITHM_PROPERTY","features":[70]},{"name":"NCRYPT_ALLOC_PARA","features":[70]},{"name":"NCRYPT_ALLOW_ALL_USAGES","features":[70]},{"name":"NCRYPT_ALLOW_ARCHIVING_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_DECRYPT_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_EXPORT_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_SIGNING_FLAG","features":[70]},{"name":"NCRYPT_ALLOW_SILENT_KEY_ACCESS","features":[70]},{"name":"NCRYPT_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[70]},{"name":"NCRYPT_ASSOCIATED_ECDH_KEY","features":[70]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[70]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[70]},{"name":"NCRYPT_ATTESTATION_FLAG","features":[70]},{"name":"NCRYPT_AUTHORITY_KEY_FLAG","features":[70]},{"name":"NCRYPT_AUTH_TAG_LENGTH","features":[70]},{"name":"NCRYPT_BLOCK_LENGTH_PROPERTY","features":[70]},{"name":"NCRYPT_CAPI_KDF_ALGORITHM","features":[70]},{"name":"NCRYPT_CERTIFICATE_PROPERTY","features":[70]},{"name":"NCRYPT_CHAINING_MODE_PROPERTY","features":[70]},{"name":"NCRYPT_CHANGEPASSWORD_PROPERTY","features":[70]},{"name":"NCRYPT_CIPHER_BLOCK_PADDING_FLAG","features":[70]},{"name":"NCRYPT_CIPHER_KEY_BLOB","features":[70]},{"name":"NCRYPT_CIPHER_KEY_BLOB_MAGIC","features":[70]},{"name":"NCRYPT_CIPHER_NO_PADDING_FLAG","features":[70]},{"name":"NCRYPT_CIPHER_OPERATION","features":[70]},{"name":"NCRYPT_CIPHER_OTHER_PADDING_FLAG","features":[70]},{"name":"NCRYPT_CIPHER_PADDING_INFO","features":[70]},{"name":"NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[70]},{"name":"NCRYPT_CLAIM_AUTHORITY_ONLY","features":[70]},{"name":"NCRYPT_CLAIM_PLATFORM","features":[70]},{"name":"NCRYPT_CLAIM_SUBJECT_ONLY","features":[70]},{"name":"NCRYPT_CLAIM_UNKNOWN","features":[70]},{"name":"NCRYPT_CLAIM_VSM_KEY_ATTESTATION_STATEMENT","features":[70]},{"name":"NCRYPT_CLAIM_WEB_AUTH_SUBJECT_ONLY","features":[70]},{"name":"NCRYPT_DESCR_DELIMITER_AND","features":[70]},{"name":"NCRYPT_DESCR_DELIMITER_OR","features":[70]},{"name":"NCRYPT_DESCR_EQUAL","features":[70]},{"name":"NCRYPT_DESX_ALGORITHM","features":[70]},{"name":"NCRYPT_DES_ALGORITHM","features":[70]},{"name":"NCRYPT_DES_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_DH_ALGORITHM","features":[70]},{"name":"NCRYPT_DH_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_DH_PARAMETERS_PROPERTY","features":[70]},{"name":"NCRYPT_DISMISS_UI_TIMEOUT_SEC_PROPERTY","features":[70]},{"name":"NCRYPT_DO_NOT_FINALIZE_FLAG","features":[70]},{"name":"NCRYPT_DSA_ALGORITHM","features":[70]},{"name":"NCRYPT_DSA_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_ECC_CURVE_NAME_LIST_PROPERTY","features":[70]},{"name":"NCRYPT_ECC_CURVE_NAME_PROPERTY","features":[70]},{"name":"NCRYPT_ECC_PARAMETERS_PROPERTY","features":[70]},{"name":"NCRYPT_ECDH_ALGORITHM","features":[70]},{"name":"NCRYPT_ECDH_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_ECDH_P256_ALGORITHM","features":[70]},{"name":"NCRYPT_ECDH_P384_ALGORITHM","features":[70]},{"name":"NCRYPT_ECDH_P521_ALGORITHM","features":[70]},{"name":"NCRYPT_ECDSA_ALGORITHM","features":[70]},{"name":"NCRYPT_ECDSA_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_ECDSA_P256_ALGORITHM","features":[70]},{"name":"NCRYPT_ECDSA_P384_ALGORITHM","features":[70]},{"name":"NCRYPT_ECDSA_P521_ALGORITHM","features":[70]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_ENVELOPE","features":[70]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER","features":[70]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_CURRENT_VERSION","features":[70]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_V0","features":[70]},{"name":"NCRYPT_EXPORT_LEGACY_FLAG","features":[70]},{"name":"NCRYPT_EXPORT_POLICY_PROPERTY","features":[70]},{"name":"NCRYPT_EXTENDED_ERRORS_FLAG","features":[70]},{"name":"NCRYPT_FLAGS","features":[70]},{"name":"NCRYPT_HANDLE","features":[70]},{"name":"NCRYPT_HASH_HANDLE","features":[70]},{"name":"NCRYPT_HASH_OPERATION","features":[70]},{"name":"NCRYPT_HMAC_SHA256_ALGORITHM","features":[70]},{"name":"NCRYPT_IGNORE_DEVICE_STATE_FLAG","features":[70]},{"name":"NCRYPT_IMPL_HARDWARE_FLAG","features":[70]},{"name":"NCRYPT_IMPL_HARDWARE_RNG_FLAG","features":[70]},{"name":"NCRYPT_IMPL_REMOVABLE_FLAG","features":[70]},{"name":"NCRYPT_IMPL_SOFTWARE_FLAG","features":[70]},{"name":"NCRYPT_IMPL_TYPE_PROPERTY","features":[70]},{"name":"NCRYPT_IMPL_VIRTUAL_ISOLATION_FLAG","features":[70]},{"name":"NCRYPT_INITIALIZATION_VECTOR","features":[70]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES","features":[70]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_CURRENT_VERSION","features":[70]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_V0","features":[70]},{"name":"NCRYPT_ISOLATED_KEY_ENVELOPE_BLOB","features":[70]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_CREATED_IN_ISOLATION","features":[70]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_IMPORT_ONLY","features":[70]},{"name":"NCRYPT_KDF_KEY_BLOB","features":[70]},{"name":"NCRYPT_KDF_KEY_BLOB_MAGIC","features":[70]},{"name":"NCRYPT_KDF_SECRET_VALUE","features":[70]},{"name":"NCRYPT_KEY_ACCESS_POLICY_BLOB","features":[70]},{"name":"NCRYPT_KEY_ACCESS_POLICY_PROPERTY","features":[70]},{"name":"NCRYPT_KEY_ACCESS_POLICY_VERSION","features":[70]},{"name":"NCRYPT_KEY_ATTEST_MAGIC","features":[70]},{"name":"NCRYPT_KEY_ATTEST_PADDING_INFO","features":[70]},{"name":"NCRYPT_KEY_BLOB_HEADER","features":[70]},{"name":"NCRYPT_KEY_DERIVATION_GROUP","features":[70]},{"name":"NCRYPT_KEY_DERIVATION_INTERFACE","features":[70]},{"name":"NCRYPT_KEY_DERIVATION_OPERATION","features":[70]},{"name":"NCRYPT_KEY_HANDLE","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_CERTIFICATE","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCAL","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCKEDCREDENTIALS","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SDDL","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SID","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_WEBCREDENTIALS","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_CERT_CERTBLOB","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_CERT_HASHID","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_INTERFACE","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_LOGON","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_MACHINE","features":[70]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_USER","features":[70]},{"name":"NCRYPT_KEY_STORAGE_ALGORITHM","features":[70]},{"name":"NCRYPT_KEY_STORAGE_FUNCTION_TABLE","features":[3,70]},{"name":"NCRYPT_KEY_STORAGE_INTERFACE","features":[70]},{"name":"NCRYPT_KEY_TYPE_PROPERTY","features":[70]},{"name":"NCRYPT_KEY_USAGE_PROPERTY","features":[70]},{"name":"NCRYPT_LAST_MODIFIED_PROPERTY","features":[70]},{"name":"NCRYPT_LENGTHS_PROPERTY","features":[70]},{"name":"NCRYPT_LENGTH_PROPERTY","features":[70]},{"name":"NCRYPT_MACHINE_KEY_FLAG","features":[70]},{"name":"NCRYPT_MAX_ALG_ID_LENGTH","features":[70]},{"name":"NCRYPT_MAX_KEY_NAME_LENGTH","features":[70]},{"name":"NCRYPT_MAX_NAME_LENGTH_PROPERTY","features":[70]},{"name":"NCRYPT_MAX_PROPERTY_DATA","features":[70]},{"name":"NCRYPT_MAX_PROPERTY_NAME","features":[70]},{"name":"NCRYPT_MD2_ALGORITHM","features":[70]},{"name":"NCRYPT_MD4_ALGORITHM","features":[70]},{"name":"NCRYPT_MD5_ALGORITHM","features":[70]},{"name":"NCRYPT_NAMED_DESCRIPTOR_FLAG","features":[70]},{"name":"NCRYPT_NAME_PROPERTY","features":[70]},{"name":"NCRYPT_NO_CACHED_PASSWORD","features":[70]},{"name":"NCRYPT_NO_KEY_VALIDATION","features":[70]},{"name":"NCRYPT_NO_PADDING_FLAG","features":[70]},{"name":"NCRYPT_OPAQUETRANSPORT_BLOB","features":[70]},{"name":"NCRYPT_OPERATION","features":[70]},{"name":"NCRYPT_OVERWRITE_KEY_FLAG","features":[70]},{"name":"NCRYPT_PAD_CIPHER_FLAG","features":[70]},{"name":"NCRYPT_PAD_OAEP_FLAG","features":[70]},{"name":"NCRYPT_PAD_PKCS1_FLAG","features":[70]},{"name":"NCRYPT_PAD_PSS_FLAG","features":[70]},{"name":"NCRYPT_PBKDF2_ALGORITHM","features":[70]},{"name":"NCRYPT_PCP_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_CHANGEPASSWORD_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_ECC_EKCERT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_ECC_EKNVCERT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_ECC_EKPUB_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_EKCERT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_EKNVCERT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_EKPUB_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_ENCRYPTION_KEY","features":[70]},{"name":"NCRYPT_PCP_EXPORT_ALLOWED_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_HMACVERIFICATION_KEY","features":[70]},{"name":"NCRYPT_PCP_HMAC_AUTH_NONCE","features":[70]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYINFO","features":[70]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYREF","features":[70]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE","features":[70]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE_INFO","features":[70]},{"name":"NCRYPT_PCP_HMAC_AUTH_TICKET","features":[70]},{"name":"NCRYPT_PCP_IDENTITY_KEY","features":[70]},{"name":"NCRYPT_PCP_INTERMEDIATE_CA_EKCERT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_KEYATTESTATION_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_KEY_CREATIONHASH_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_KEY_CREATIONTICKET_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_KEY_USAGE_POLICY_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_MIGRATIONPASSWORD_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_NO_DA_PROTECTION_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PASSWORD_REQUIRED_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PCRTABLE_ALGORITHM_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PCRTABLE_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PLATFORMHANDLE_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRALGID_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGESTLIST_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGEST_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRMASK_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PROVIDERHANDLE_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_PSS_SALT_SIZE_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_INFO","features":[70]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_RSA_EKCERT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_RSA_EKNVCERT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_RSA_EKPUB_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_RSA_SCHEME_HASH_ALG_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_RSA_SCHEME_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_SESSIONID_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_SIGNATURE_KEY","features":[70]},{"name":"NCRYPT_PCP_SRKPUB_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_STORAGEPARENT_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_STORAGE_KEY","features":[70]},{"name":"NCRYPT_PCP_SYMMETRIC_KEYBITS_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM12_IDACTIVATION_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_DYNAMIC_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM2BNAME_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_INFO","features":[70]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_PROHIBITED_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_VULNERABILITY_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM_MANUFACTURER_ID_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM_VERSION_PROPERTY","features":[70]},{"name":"NCRYPT_PCP_TPM_WEB_AUTHN_ATTESTATION_STATEMENT","features":[70]},{"name":"NCRYPT_PCP_USAGEAUTH_PROPERTY","features":[70]},{"name":"NCRYPT_PERSIST_FLAG","features":[70]},{"name":"NCRYPT_PERSIST_ONLY_FLAG","features":[70]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_IMAGE_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_STATUS_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_BYTE_LENGTH","features":[70]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_CLEAR_FOR_CALLING_PROCESS_OPTION","features":[70]},{"name":"NCRYPT_PIN_CACHE_CLEAR_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_DISABLE_DPL_FLAG","features":[70]},{"name":"NCRYPT_PIN_CACHE_FLAGS_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_FREE_APPLICATION_TICKET_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_IS_GESTURE_REQUIRED_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_PIN_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_CACHE_REQUIRE_GESTURE_FLAG","features":[70]},{"name":"NCRYPT_PIN_PROMPT_PROPERTY","features":[70]},{"name":"NCRYPT_PIN_PROPERTY","features":[70]},{"name":"NCRYPT_PKCS7_ENVELOPE_BLOB","features":[70]},{"name":"NCRYPT_PKCS8_PRIVATE_KEY_BLOB","features":[70]},{"name":"NCRYPT_PLATFORM_ATTEST_MAGIC","features":[70]},{"name":"NCRYPT_PLATFORM_ATTEST_PADDING_INFO","features":[70]},{"name":"NCRYPT_PREFER_VIRTUAL_ISOLATION_FLAG","features":[70]},{"name":"NCRYPT_PROTECTED_KEY_BLOB","features":[70]},{"name":"NCRYPT_PROTECTED_KEY_BLOB_MAGIC","features":[70]},{"name":"NCRYPT_PROTECTION_INFO_TYPE_DESCRIPTOR_STRING","features":[70]},{"name":"NCRYPT_PROTECT_STREAM_INFO","features":[3,70]},{"name":"NCRYPT_PROTECT_STREAM_INFO_EX","features":[3,70]},{"name":"NCRYPT_PROTECT_TO_LOCAL_SYSTEM","features":[70]},{"name":"NCRYPT_PROVIDER_HANDLE_PROPERTY","features":[70]},{"name":"NCRYPT_PROV_HANDLE","features":[70]},{"name":"NCRYPT_PUBLIC_LENGTH_PROPERTY","features":[70]},{"name":"NCRYPT_RC2_ALGORITHM","features":[70]},{"name":"NCRYPT_RC2_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_READER_ICON_PROPERTY","features":[70]},{"name":"NCRYPT_READER_PROPERTY","features":[70]},{"name":"NCRYPT_REGISTER_NOTIFY_FLAG","features":[70]},{"name":"NCRYPT_REQUIRE_KDS_LRPC_BIND_FLAG","features":[70]},{"name":"NCRYPT_ROOT_CERTSTORE_PROPERTY","features":[70]},{"name":"NCRYPT_RSA_ALGORITHM","features":[70]},{"name":"NCRYPT_RSA_ALGORITHM_GROUP","features":[70]},{"name":"NCRYPT_RSA_SIGN_ALGORITHM","features":[70]},{"name":"NCRYPT_SCARD_NGC_KEY_NAME","features":[70]},{"name":"NCRYPT_SCARD_PIN_ID","features":[70]},{"name":"NCRYPT_SCARD_PIN_INFO","features":[70]},{"name":"NCRYPT_SCHANNEL_INTERFACE","features":[70]},{"name":"NCRYPT_SCHANNEL_SIGNATURE_INTERFACE","features":[70]},{"name":"NCRYPT_SEALING_FLAG","features":[70]},{"name":"NCRYPT_SECRET_AGREEMENT_INTERFACE","features":[70]},{"name":"NCRYPT_SECRET_AGREEMENT_OPERATION","features":[70]},{"name":"NCRYPT_SECRET_HANDLE","features":[70]},{"name":"NCRYPT_SECURE_PIN_PROPERTY","features":[70]},{"name":"NCRYPT_SECURITY_DESCR_PROPERTY","features":[70]},{"name":"NCRYPT_SECURITY_DESCR_SUPPORT_PROPERTY","features":[70]},{"name":"NCRYPT_SHA1_ALGORITHM","features":[70]},{"name":"NCRYPT_SHA256_ALGORITHM","features":[70]},{"name":"NCRYPT_SHA384_ALGORITHM","features":[70]},{"name":"NCRYPT_SHA512_ALGORITHM","features":[70]},{"name":"NCRYPT_SIGNATURE_INTERFACE","features":[70]},{"name":"NCRYPT_SIGNATURE_LENGTH_PROPERTY","features":[70]},{"name":"NCRYPT_SIGNATURE_OPERATION","features":[70]},{"name":"NCRYPT_SILENT_FLAG","features":[70]},{"name":"NCRYPT_SMARTCARD_GUID_PROPERTY","features":[70]},{"name":"NCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[70]},{"name":"NCRYPT_SP80056A_CONCAT_ALGORITHM","features":[70]},{"name":"NCRYPT_SSL_CIPHER_LENGTHS","features":[70]},{"name":"NCRYPT_SSL_CIPHER_LENGTHS_BLOCK_PADDING","features":[70]},{"name":"NCRYPT_SSL_CIPHER_SUITE","features":[70]},{"name":"NCRYPT_SSL_CIPHER_SUITE_EX","features":[70]},{"name":"NCRYPT_SSL_CIPHER_SUITE_EX_VERSION","features":[70]},{"name":"NCRYPT_SSL_CLIENT_FLAG","features":[70]},{"name":"NCRYPT_SSL_EAP_FAST_ID","features":[70]},{"name":"NCRYPT_SSL_EAP_ID","features":[70]},{"name":"NCRYPT_SSL_EAP_PRF_FIELD","features":[70]},{"name":"NCRYPT_SSL_EAP_TTLSV0_CHLNG_ID","features":[70]},{"name":"NCRYPT_SSL_EAP_TTLSV0_ID","features":[70]},{"name":"NCRYPT_SSL_ECC_CURVE","features":[70]},{"name":"NCRYPT_SSL_EXTERNAL_PSK_FLAG","features":[70]},{"name":"NCRYPT_SSL_FUNCTION_TABLE","features":[3,70]},{"name":"NCRYPT_SSL_MAX_NAME_SIZE","features":[70]},{"name":"NCRYPT_SSL_RESUMPTION_PSK_FLAG","features":[70]},{"name":"NCRYPT_SSL_SERVER_FLAG","features":[70]},{"name":"NCRYPT_SSL_SIGN_INCLUDE_HASHOID","features":[70]},{"name":"NCRYPT_SSL_SIGN_USE_PSS_PADDING","features":[70]},{"name":"NCRYPT_SUPPORTED_LENGTHS","features":[70]},{"name":"NCRYPT_TPM12_PROVIDER","features":[70]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB","features":[70]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_HEADER","features":[70]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_MAGIC","features":[70]},{"name":"NCRYPT_TPM_PAD_PSS_IGNORE_SALT","features":[70]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT","features":[70]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[70]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_V0","features":[70]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_HASHSIZE","features":[70]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_MAXIMUM","features":[70]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_UNKNOWN","features":[70]},{"name":"NCRYPT_TREAT_NIST_AS_GENERIC_ECC_FLAG","features":[70]},{"name":"NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[70]},{"name":"NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[70]},{"name":"NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[70]},{"name":"NCRYPT_UI_POLICY","features":[70]},{"name":"NCRYPT_UI_POLICY_BLOB","features":[70]},{"name":"NCRYPT_UI_POLICY_PROPERTY","features":[70]},{"name":"NCRYPT_UI_PROTECT_KEY_FLAG","features":[70]},{"name":"NCRYPT_UNIQUE_NAME_PROPERTY","features":[70]},{"name":"NCRYPT_UNPROTECT_NO_DECRYPT","features":[70]},{"name":"NCRYPT_UNREGISTER_NOTIFY_FLAG","features":[70]},{"name":"NCRYPT_USER_CERTSTORE_PROPERTY","features":[70]},{"name":"NCRYPT_USE_CONTEXT_PROPERTY","features":[70]},{"name":"NCRYPT_USE_COUNT_ENABLED_PROPERTY","features":[70]},{"name":"NCRYPT_USE_COUNT_PROPERTY","features":[70]},{"name":"NCRYPT_USE_PER_BOOT_KEY_FLAG","features":[70]},{"name":"NCRYPT_USE_PER_BOOT_KEY_PROPERTY","features":[70]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_FLAG","features":[70]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_PROPERTY","features":[70]},{"name":"NCRYPT_VERSION_PROPERTY","features":[70]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[70]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_CURRENT_VERSION","features":[70]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_V0","features":[70]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT","features":[70]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[70]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_V0","features":[70]},{"name":"NCRYPT_WINDOW_HANDLE_PROPERTY","features":[70]},{"name":"NCRYPT_WRITE_KEY_TO_LEGACY_STORE_FLAG","features":[70]},{"name":"NCryptAlgorithmName","features":[70]},{"name":"NCryptCloseProtectionDescriptor","features":[70]},{"name":"NCryptCreateClaim","features":[70]},{"name":"NCryptCreateClaimFn","features":[70]},{"name":"NCryptCreatePersistedKey","features":[70]},{"name":"NCryptCreatePersistedKeyFn","features":[70]},{"name":"NCryptCreateProtectionDescriptor","features":[70]},{"name":"NCryptDecrypt","features":[70]},{"name":"NCryptDecryptFn","features":[70]},{"name":"NCryptDeleteKey","features":[70]},{"name":"NCryptDeleteKeyFn","features":[70]},{"name":"NCryptDeriveKey","features":[70]},{"name":"NCryptDeriveKeyFn","features":[70]},{"name":"NCryptEncrypt","features":[70]},{"name":"NCryptEncryptFn","features":[70]},{"name":"NCryptEnumAlgorithms","features":[70]},{"name":"NCryptEnumAlgorithmsFn","features":[70]},{"name":"NCryptEnumKeys","features":[70]},{"name":"NCryptEnumKeysFn","features":[70]},{"name":"NCryptEnumStorageProviders","features":[70]},{"name":"NCryptEnumStorageProvidersFn","features":[70]},{"name":"NCryptExportKey","features":[70]},{"name":"NCryptExportKeyFn","features":[70]},{"name":"NCryptFinalizeKey","features":[70]},{"name":"NCryptFinalizeKeyFn","features":[70]},{"name":"NCryptFreeBuffer","features":[70]},{"name":"NCryptFreeBufferFn","features":[70]},{"name":"NCryptFreeKeyFn","features":[70]},{"name":"NCryptFreeObject","features":[70]},{"name":"NCryptFreeProviderFn","features":[70]},{"name":"NCryptFreeSecretFn","features":[70]},{"name":"NCryptGetKeyPropertyFn","features":[70]},{"name":"NCryptGetProperty","features":[70]},{"name":"NCryptGetProtectionDescriptorInfo","features":[70]},{"name":"NCryptGetProviderPropertyFn","features":[70]},{"name":"NCryptImportKey","features":[70]},{"name":"NCryptImportKeyFn","features":[70]},{"name":"NCryptIsAlgSupported","features":[70]},{"name":"NCryptIsAlgSupportedFn","features":[70]},{"name":"NCryptIsKeyHandle","features":[3,70]},{"name":"NCryptKeyDerivation","features":[70]},{"name":"NCryptKeyDerivationFn","features":[70]},{"name":"NCryptKeyName","features":[70]},{"name":"NCryptNotifyChangeKey","features":[3,70]},{"name":"NCryptNotifyChangeKeyFn","features":[3,70]},{"name":"NCryptOpenKey","features":[70]},{"name":"NCryptOpenKeyFn","features":[70]},{"name":"NCryptOpenStorageProvider","features":[70]},{"name":"NCryptOpenStorageProviderFn","features":[70]},{"name":"NCryptPromptUserFn","features":[70]},{"name":"NCryptProtectSecret","features":[3,70]},{"name":"NCryptProviderName","features":[70]},{"name":"NCryptQueryProtectionDescriptorName","features":[70]},{"name":"NCryptRegisterProtectionDescriptorName","features":[70]},{"name":"NCryptSecretAgreement","features":[70]},{"name":"NCryptSecretAgreementFn","features":[70]},{"name":"NCryptSetKeyPropertyFn","features":[70]},{"name":"NCryptSetProperty","features":[70]},{"name":"NCryptSetProviderPropertyFn","features":[70]},{"name":"NCryptSignHash","features":[70]},{"name":"NCryptSignHashFn","features":[70]},{"name":"NCryptStreamClose","features":[70]},{"name":"NCryptStreamOpenToProtect","features":[3,70]},{"name":"NCryptStreamOpenToUnprotect","features":[3,70]},{"name":"NCryptStreamOpenToUnprotectEx","features":[3,70]},{"name":"NCryptStreamUpdate","features":[3,70]},{"name":"NCryptTranslateHandle","features":[70]},{"name":"NCryptUnprotectSecret","features":[3,70]},{"name":"NCryptVerifyClaim","features":[70]},{"name":"NCryptVerifyClaimFn","features":[70]},{"name":"NCryptVerifySignature","features":[70]},{"name":"NCryptVerifySignatureFn","features":[70]},{"name":"NETSCAPE_SIGN_CA_CERT_TYPE","features":[70]},{"name":"NETSCAPE_SIGN_CERT_TYPE","features":[70]},{"name":"NETSCAPE_SMIME_CA_CERT_TYPE","features":[70]},{"name":"NETSCAPE_SMIME_CERT_TYPE","features":[70]},{"name":"NETSCAPE_SSL_CA_CERT_TYPE","features":[70]},{"name":"NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE","features":[70]},{"name":"NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE","features":[70]},{"name":"NonRepudiationPin","features":[70]},{"name":"OCSP_BASIC_BY_KEY_RESPONDER_ID","features":[70]},{"name":"OCSP_BASIC_BY_NAME_RESPONDER_ID","features":[70]},{"name":"OCSP_BASIC_GOOD_CERT_STATUS","features":[70]},{"name":"OCSP_BASIC_RESPONSE","features":[70]},{"name":"OCSP_BASIC_RESPONSE_ENTRY","features":[3,70]},{"name":"OCSP_BASIC_RESPONSE_INFO","features":[3,70]},{"name":"OCSP_BASIC_RESPONSE_V1","features":[70]},{"name":"OCSP_BASIC_REVOKED_CERT_STATUS","features":[70]},{"name":"OCSP_BASIC_REVOKED_INFO","features":[3,70]},{"name":"OCSP_BASIC_SIGNED_RESPONSE","features":[70]},{"name":"OCSP_BASIC_SIGNED_RESPONSE_INFO","features":[70]},{"name":"OCSP_BASIC_UNKNOWN_CERT_STATUS","features":[70]},{"name":"OCSP_CERT_ID","features":[70]},{"name":"OCSP_INTERNAL_ERROR_RESPONSE","features":[70]},{"name":"OCSP_MALFORMED_REQUEST_RESPONSE","features":[70]},{"name":"OCSP_REQUEST","features":[70]},{"name":"OCSP_REQUEST_ENTRY","features":[3,70]},{"name":"OCSP_REQUEST_INFO","features":[3,70]},{"name":"OCSP_REQUEST_V1","features":[70]},{"name":"OCSP_RESPONSE","features":[70]},{"name":"OCSP_RESPONSE_INFO","features":[70]},{"name":"OCSP_SIGNATURE_INFO","features":[70]},{"name":"OCSP_SIGNED_REQUEST","features":[70]},{"name":"OCSP_SIGNED_REQUEST_INFO","features":[70]},{"name":"OCSP_SIG_REQUIRED_RESPONSE","features":[70]},{"name":"OCSP_SUCCESSFUL_RESPONSE","features":[70]},{"name":"OCSP_TRY_LATER_RESPONSE","features":[70]},{"name":"OCSP_UNAUTHORIZED_RESPONSE","features":[70]},{"name":"OFFLOAD_PRIVATE_KEY","features":[70]},{"name":"OPAQUEKEYBLOB","features":[70]},{"name":"PCRYPT_DECRYPT_PRIVATE_KEY_FUNC","features":[3,70]},{"name":"PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC","features":[3,70]},{"name":"PCRYPT_RESOLVE_HCRYPTPROV_FUNC","features":[3,70]},{"name":"PFNCryptStreamOutputCallback","features":[3,70]},{"name":"PFNCryptStreamOutputCallbackEx","features":[3,70]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN","features":[3,70]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX","features":[3,70]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX_WITHFILEHANDLE","features":[3,70]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_WITHFILEHANDLE","features":[3,70]},{"name":"PFN_CANCEL_ASYNC_RETRIEVAL_FUNC","features":[3,70]},{"name":"PFN_CARD_ACQUIRE_CONTEXT","features":[3,70]},{"name":"PFN_CARD_AUTHENTICATE_CHALLENGE","features":[3,70]},{"name":"PFN_CARD_AUTHENTICATE_EX","features":[3,70]},{"name":"PFN_CARD_AUTHENTICATE_PIN","features":[3,70]},{"name":"PFN_CARD_CHANGE_AUTHENTICATOR","features":[3,70]},{"name":"PFN_CARD_CHANGE_AUTHENTICATOR_EX","features":[3,70]},{"name":"PFN_CARD_CONSTRUCT_DH_AGREEMENT","features":[3,70]},{"name":"PFN_CARD_CREATE_CONTAINER","features":[3,70]},{"name":"PFN_CARD_CREATE_CONTAINER_EX","features":[3,70]},{"name":"PFN_CARD_CREATE_DIRECTORY","features":[3,70]},{"name":"PFN_CARD_CREATE_FILE","features":[3,70]},{"name":"PFN_CARD_DEAUTHENTICATE","features":[3,70]},{"name":"PFN_CARD_DEAUTHENTICATE_EX","features":[3,70]},{"name":"PFN_CARD_DELETE_CONTAINER","features":[3,70]},{"name":"PFN_CARD_DELETE_CONTEXT","features":[3,70]},{"name":"PFN_CARD_DELETE_DIRECTORY","features":[3,70]},{"name":"PFN_CARD_DELETE_FILE","features":[3,70]},{"name":"PFN_CARD_DERIVE_KEY","features":[3,70]},{"name":"PFN_CARD_DESTROY_DH_AGREEMENT","features":[3,70]},{"name":"PFN_CARD_DESTROY_KEY","features":[3,70]},{"name":"PFN_CARD_ENUM_FILES","features":[3,70]},{"name":"PFN_CARD_GET_ALGORITHM_PROPERTY","features":[3,70]},{"name":"PFN_CARD_GET_CHALLENGE","features":[3,70]},{"name":"PFN_CARD_GET_CHALLENGE_EX","features":[3,70]},{"name":"PFN_CARD_GET_CONTAINER_INFO","features":[3,70]},{"name":"PFN_CARD_GET_CONTAINER_PROPERTY","features":[3,70]},{"name":"PFN_CARD_GET_FILE_INFO","features":[3,70]},{"name":"PFN_CARD_GET_KEY_PROPERTY","features":[3,70]},{"name":"PFN_CARD_GET_PROPERTY","features":[3,70]},{"name":"PFN_CARD_GET_SHARED_KEY_HANDLE","features":[3,70]},{"name":"PFN_CARD_IMPORT_SESSION_KEY","features":[3,70]},{"name":"PFN_CARD_PROCESS_ENCRYPTED_DATA","features":[3,70]},{"name":"PFN_CARD_QUERY_CAPABILITIES","features":[3,70]},{"name":"PFN_CARD_QUERY_FREE_SPACE","features":[3,70]},{"name":"PFN_CARD_QUERY_KEY_SIZES","features":[3,70]},{"name":"PFN_CARD_READ_FILE","features":[3,70]},{"name":"PFN_CARD_RSA_DECRYPT","features":[3,70]},{"name":"PFN_CARD_SET_CONTAINER_PROPERTY","features":[3,70]},{"name":"PFN_CARD_SET_KEY_PROPERTY","features":[3,70]},{"name":"PFN_CARD_SET_PROPERTY","features":[3,70]},{"name":"PFN_CARD_SIGN_DATA","features":[3,70]},{"name":"PFN_CARD_UNBLOCK_PIN","features":[3,70]},{"name":"PFN_CARD_WRITE_FILE","features":[3,70]},{"name":"PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK","features":[3,70]},{"name":"PFN_CERT_CREATE_CONTEXT_SORT_FUNC","features":[3,70]},{"name":"PFN_CERT_DLL_OPEN_STORE_PROV_FUNC","features":[3,70]},{"name":"PFN_CERT_ENUM_PHYSICAL_STORE","features":[3,70]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE","features":[3,70]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE_LOCATION","features":[3,70]},{"name":"PFN_CERT_IS_WEAK_HASH","features":[3,70]},{"name":"PFN_CERT_SERVER_OCSP_RESPONSE_UPDATE_CALLBACK","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_CLOSE","features":[70]},{"name":"PFN_CERT_STORE_PROV_CONTROL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_DELETE_CERT","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_DELETE_CRL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_DELETE_CTL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_FIND_CERT","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_FIND_CRL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_FIND_CTL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CERT","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CRL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CTL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_GET_CERT_PROPERTY","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_GET_CRL_PROPERTY","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_GET_CTL_PROPERTY","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_READ_CERT","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_READ_CRL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_READ_CTL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_SET_CERT_PROPERTY","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_SET_CRL_PROPERTY","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_SET_CTL_PROPERTY","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_WRITE_CERT","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_WRITE_CRL","features":[3,70]},{"name":"PFN_CERT_STORE_PROV_WRITE_CTL","features":[3,70]},{"name":"PFN_CMSG_ALLOC","features":[70]},{"name":"PFN_CMSG_CNG_IMPORT_CONTENT_ENCRYPT_KEY","features":[3,70]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_AGREE","features":[3,70]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_TRANS","features":[3,70]},{"name":"PFN_CMSG_EXPORT_ENCRYPT_KEY","features":[3,70]},{"name":"PFN_CMSG_EXPORT_KEY_AGREE","features":[3,70]},{"name":"PFN_CMSG_EXPORT_KEY_TRANS","features":[3,70]},{"name":"PFN_CMSG_EXPORT_MAIL_LIST","features":[3,70]},{"name":"PFN_CMSG_FREE","features":[70]},{"name":"PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY","features":[3,70]},{"name":"PFN_CMSG_GEN_ENCRYPT_KEY","features":[3,70]},{"name":"PFN_CMSG_IMPORT_ENCRYPT_KEY","features":[3,70]},{"name":"PFN_CMSG_IMPORT_KEY_AGREE","features":[3,70]},{"name":"PFN_CMSG_IMPORT_KEY_TRANS","features":[3,70]},{"name":"PFN_CMSG_IMPORT_MAIL_LIST","features":[3,70]},{"name":"PFN_CMSG_STREAM_OUTPUT","features":[3,70]},{"name":"PFN_CRYPT_ALLOC","features":[70]},{"name":"PFN_CRYPT_ASYNC_PARAM_FREE_FUNC","features":[70]},{"name":"PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC","features":[70]},{"name":"PFN_CRYPT_CANCEL_RETRIEVAL","features":[3,70]},{"name":"PFN_CRYPT_ENUM_KEYID_PROP","features":[3,70]},{"name":"PFN_CRYPT_ENUM_OID_FUNC","features":[3,70]},{"name":"PFN_CRYPT_ENUM_OID_INFO","features":[3,70]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[3,70]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[3,70]},{"name":"PFN_CRYPT_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[3,70]},{"name":"PFN_CRYPT_FREE","features":[70]},{"name":"PFN_CRYPT_GET_SIGNER_CERTIFICATE","features":[3,70]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FLUSH","features":[3,70]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE","features":[70]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_IDENTIFIER","features":[70]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_PASSWORD","features":[70]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_GET","features":[3,70]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_INITIALIZE","features":[3,70]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_RELEASE","features":[70]},{"name":"PFN_CRYPT_SIGN_AND_ENCODE_HASH_FUNC","features":[3,70]},{"name":"PFN_CRYPT_VERIFY_ENCODED_SIGNATURE_FUNC","features":[3,70]},{"name":"PFN_CRYPT_XML_CREATE_TRANSFORM","features":[70]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_CLOSE","features":[70]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_READ","features":[70]},{"name":"PFN_CRYPT_XML_ENUM_ALG_INFO","features":[3,70]},{"name":"PFN_CRYPT_XML_WRITE_CALLBACK","features":[70]},{"name":"PFN_CSP_ALLOC","features":[70]},{"name":"PFN_CSP_CACHE_ADD_FILE","features":[70]},{"name":"PFN_CSP_CACHE_DELETE_FILE","features":[70]},{"name":"PFN_CSP_CACHE_LOOKUP_FILE","features":[70]},{"name":"PFN_CSP_FREE","features":[70]},{"name":"PFN_CSP_GET_DH_AGREEMENT","features":[3,70]},{"name":"PFN_CSP_PAD_DATA","features":[70]},{"name":"PFN_CSP_REALLOC","features":[70]},{"name":"PFN_CSP_UNPAD_DATA","features":[70]},{"name":"PFN_EXPORT_PRIV_KEY_FUNC","features":[3,70]},{"name":"PFN_FREE_ENCODED_OBJECT_FUNC","features":[70]},{"name":"PFN_IMPORT_PRIV_KEY_FUNC","features":[3,70]},{"name":"PFN_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[3,70]},{"name":"PFN_MD_ENCRYPT_DATA","features":[3,70]},{"name":"PFN_MD_IMPORT_SESSION_KEY","features":[3,70]},{"name":"PFN_NCRYPT_ALLOC","features":[70]},{"name":"PFN_NCRYPT_FREE","features":[70]},{"name":"PFN_OFFLOAD_MOD_EXPO","features":[3,70]},{"name":"PFXExportCertStore","features":[3,70]},{"name":"PFXExportCertStoreEx","features":[3,70]},{"name":"PFXImportCertStore","features":[70]},{"name":"PFXIsPFXBlob","features":[3,70]},{"name":"PFXVerifyPassword","features":[3,70]},{"name":"PIN_CACHE_POLICY","features":[70]},{"name":"PIN_CACHE_POLICY_CURRENT_VERSION","features":[70]},{"name":"PIN_CACHE_POLICY_TYPE","features":[70]},{"name":"PIN_CHANGE_FLAG_CHANGEPIN","features":[70]},{"name":"PIN_CHANGE_FLAG_UNBLOCK","features":[70]},{"name":"PIN_INFO","features":[70]},{"name":"PIN_INFO_CURRENT_VERSION","features":[70]},{"name":"PIN_INFO_REQUIRE_SECURE_ENTRY","features":[70]},{"name":"PIN_SET_ALL_ROLES","features":[70]},{"name":"PIN_SET_NONE","features":[70]},{"name":"PKCS12_ALLOW_OVERWRITE_KEY","features":[70]},{"name":"PKCS12_ALWAYS_CNG_KSP","features":[70]},{"name":"PKCS12_CONFIG_REGPATH","features":[70]},{"name":"PKCS12_DISABLE_ENCRYPT_CERTIFICATES","features":[70]},{"name":"PKCS12_ENCRYPT_CERTIFICATES","features":[70]},{"name":"PKCS12_ENCRYPT_CERTIFICATES_VALUE_NAME","features":[70]},{"name":"PKCS12_EXPORT_ECC_CURVE_OID","features":[70]},{"name":"PKCS12_EXPORT_ECC_CURVE_PARAMETERS","features":[70]},{"name":"PKCS12_EXPORT_PBES2_PARAMS","features":[70]},{"name":"PKCS12_EXPORT_RESERVED_MASK","features":[70]},{"name":"PKCS12_EXPORT_SILENT","features":[70]},{"name":"PKCS12_IMPORT_RESERVED_MASK","features":[70]},{"name":"PKCS12_IMPORT_SILENT","features":[70]},{"name":"PKCS12_INCLUDE_EXTENDED_PROPERTIES","features":[70]},{"name":"PKCS12_NO_PERSIST_KEY","features":[70]},{"name":"PKCS12_ONLY_CERTIFICATES","features":[70]},{"name":"PKCS12_ONLY_CERTIFICATES_CONTAINER_NAME","features":[70]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_NAME","features":[70]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_TYPE","features":[70]},{"name":"PKCS12_ONLY_NOT_ENCRYPTED_CERTIFICATES","features":[70]},{"name":"PKCS12_PBES2_ALG_AES256_SHA256","features":[70]},{"name":"PKCS12_PBES2_EXPORT_PARAMS","features":[70]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA1","features":[70]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA256","features":[70]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA384","features":[70]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA512","features":[70]},{"name":"PKCS12_PREFER_CNG_KSP","features":[70]},{"name":"PKCS12_PROTECT_TO_DOMAIN_SIDS","features":[70]},{"name":"PKCS12_VIRTUAL_ISOLATION_KEY","features":[70]},{"name":"PKCS5_PADDING","features":[70]},{"name":"PKCS7_SIGNER_INFO","features":[70]},{"name":"PKCS_7_ASN_ENCODING","features":[70]},{"name":"PKCS_7_NDR_ENCODING","features":[70]},{"name":"PKCS_ATTRIBUTE","features":[70]},{"name":"PKCS_ATTRIBUTES","features":[70]},{"name":"PKCS_CONTENT_INFO","features":[70]},{"name":"PKCS_CONTENT_INFO_SEQUENCE_OF_ANY","features":[70]},{"name":"PKCS_CTL","features":[70]},{"name":"PKCS_ENCRYPTED_PRIVATE_KEY_INFO","features":[70]},{"name":"PKCS_PRIVATE_KEY_INFO","features":[70]},{"name":"PKCS_RC2_CBC_PARAMETERS","features":[70]},{"name":"PKCS_RSAES_OAEP_PARAMETERS","features":[70]},{"name":"PKCS_RSA_PRIVATE_KEY","features":[70]},{"name":"PKCS_RSA_SSA_PSS_PARAMETERS","features":[70]},{"name":"PKCS_RSA_SSA_PSS_TRAILER_FIELD_BC","features":[70]},{"name":"PKCS_SMIME_CAPABILITIES","features":[70]},{"name":"PKCS_SORTED_CTL","features":[70]},{"name":"PKCS_TIME_REQUEST","features":[70]},{"name":"PKCS_UTC_TIME","features":[70]},{"name":"PLAINTEXTKEYBLOB","features":[70]},{"name":"POLICY_ELEMENT","features":[3,70]},{"name":"PP_ADMIN_PIN","features":[70]},{"name":"PP_APPLI_CERT","features":[70]},{"name":"PP_CERTCHAIN","features":[70]},{"name":"PP_CHANGE_PASSWORD","features":[70]},{"name":"PP_CLIENT_HWND","features":[70]},{"name":"PP_CONTAINER","features":[70]},{"name":"PP_CONTEXT_INFO","features":[70]},{"name":"PP_CRYPT_COUNT_KEY_USE","features":[70]},{"name":"PP_DELETEKEY","features":[70]},{"name":"PP_DISMISS_PIN_UI_SEC","features":[70]},{"name":"PP_ENUMALGS","features":[70]},{"name":"PP_ENUMALGS_EX","features":[70]},{"name":"PP_ENUMCONTAINERS","features":[70]},{"name":"PP_ENUMELECTROOTS","features":[70]},{"name":"PP_ENUMEX_SIGNING_PROT","features":[70]},{"name":"PP_ENUMMANDROOTS","features":[70]},{"name":"PP_IMPTYPE","features":[70]},{"name":"PP_IS_PFX_EPHEMERAL","features":[70]},{"name":"PP_KEYEXCHANGE_ALG","features":[70]},{"name":"PP_KEYEXCHANGE_KEYSIZE","features":[70]},{"name":"PP_KEYEXCHANGE_PIN","features":[70]},{"name":"PP_KEYSET_SEC_DESCR","features":[70]},{"name":"PP_KEYSET_TYPE","features":[70]},{"name":"PP_KEYSPEC","features":[70]},{"name":"PP_KEYSTORAGE","features":[70]},{"name":"PP_KEYX_KEYSIZE_INC","features":[70]},{"name":"PP_KEY_TYPE_SUBTYPE","features":[70]},{"name":"PP_NAME","features":[70]},{"name":"PP_PIN_PROMPT_STRING","features":[70]},{"name":"PP_PROVTYPE","features":[70]},{"name":"PP_ROOT_CERTSTORE","features":[70]},{"name":"PP_SECURE_KEYEXCHANGE_PIN","features":[70]},{"name":"PP_SECURE_SIGNATURE_PIN","features":[70]},{"name":"PP_SESSION_KEYSIZE","features":[70]},{"name":"PP_SGC_INFO","features":[70]},{"name":"PP_SIGNATURE_ALG","features":[70]},{"name":"PP_SIGNATURE_KEYSIZE","features":[70]},{"name":"PP_SIGNATURE_PIN","features":[70]},{"name":"PP_SIG_KEYSIZE_INC","features":[70]},{"name":"PP_SMARTCARD_GUID","features":[70]},{"name":"PP_SMARTCARD_READER","features":[70]},{"name":"PP_SMARTCARD_READER_ICON","features":[70]},{"name":"PP_SYM_KEYSIZE","features":[70]},{"name":"PP_UI_PROMPT","features":[70]},{"name":"PP_UNIQUE_CONTAINER","features":[70]},{"name":"PP_USER_CERTSTORE","features":[70]},{"name":"PP_USE_HARDWARE_RNG","features":[70]},{"name":"PP_VERSION","features":[70]},{"name":"PRIVATEKEYBLOB","features":[70]},{"name":"PRIVKEYVER3","features":[70]},{"name":"PROV_DH_SCHANNEL","features":[70]},{"name":"PROV_DSS","features":[70]},{"name":"PROV_DSS_DH","features":[70]},{"name":"PROV_EC_ECDSA_FULL","features":[70]},{"name":"PROV_EC_ECDSA_SIG","features":[70]},{"name":"PROV_EC_ECNRA_FULL","features":[70]},{"name":"PROV_EC_ECNRA_SIG","features":[70]},{"name":"PROV_ENUMALGS","features":[70]},{"name":"PROV_ENUMALGS_EX","features":[70]},{"name":"PROV_FORTEZZA","features":[70]},{"name":"PROV_INTEL_SEC","features":[70]},{"name":"PROV_MS_EXCHANGE","features":[70]},{"name":"PROV_REPLACE_OWF","features":[70]},{"name":"PROV_RNG","features":[70]},{"name":"PROV_RSA_AES","features":[70]},{"name":"PROV_RSA_FULL","features":[70]},{"name":"PROV_RSA_SCHANNEL","features":[70]},{"name":"PROV_RSA_SIG","features":[70]},{"name":"PROV_SPYRUS_LYNKS","features":[70]},{"name":"PROV_SSL","features":[70]},{"name":"PROV_STT_ACQ","features":[70]},{"name":"PROV_STT_BRND","features":[70]},{"name":"PROV_STT_ISS","features":[70]},{"name":"PROV_STT_MER","features":[70]},{"name":"PROV_STT_ROOT","features":[70]},{"name":"PUBKEY","features":[70]},{"name":"PUBKEYVER3","features":[70]},{"name":"PUBLICKEYBLOB","features":[70]},{"name":"PUBLICKEYBLOBEX","features":[70]},{"name":"PUBLICKEYSTRUC","features":[70]},{"name":"PVK_TYPE_FILE_NAME","features":[70]},{"name":"PVK_TYPE_KEYCONTAINER","features":[70]},{"name":"PaddingMode","features":[70]},{"name":"PinCacheAlwaysPrompt","features":[70]},{"name":"PinCacheNone","features":[70]},{"name":"PinCacheNormal","features":[70]},{"name":"PinCacheTimed","features":[70]},{"name":"PrimaryCardPin","features":[70]},{"name":"ProcessPrng","features":[3,70]},{"name":"RANDOM_PADDING","features":[70]},{"name":"RECIPIENTPOLICY","features":[70]},{"name":"RECIPIENTPOLICY2","features":[70]},{"name":"RECIPIENTPOLICYV1","features":[70]},{"name":"RECIPIENTPOLICYV2","features":[70]},{"name":"REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY","features":[70]},{"name":"REPORT_NO_PRIVATE_KEY","features":[70]},{"name":"REVOCATION_OID_CRL_REVOCATION","features":[70]},{"name":"ROLE_ADMIN","features":[70]},{"name":"ROLE_EVERYONE","features":[70]},{"name":"ROLE_PIN_ALWAYS","features":[70]},{"name":"ROLE_PUK","features":[70]},{"name":"ROLE_USER","features":[70]},{"name":"ROOT_INFO_LUID","features":[70]},{"name":"RSA1024BIT_KEY","features":[70]},{"name":"RSAPUBKEY","features":[70]},{"name":"RSA_CSP_PUBLICKEYBLOB","features":[70]},{"name":"SCARD_PROVIDER_CARD_MODULE","features":[70]},{"name":"SCHANNEL_ALG","features":[70]},{"name":"SCHANNEL_ENC_KEY","features":[70]},{"name":"SCHANNEL_MAC_KEY","features":[70]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC","features":[70]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECT_FUNC","features":[70]},{"name":"SECRET_PURPOSE","features":[70]},{"name":"SECRET_TYPE","features":[70]},{"name":"SIGNATURE_RESOURCE_NUMBER","features":[70]},{"name":"SIGNER_ATTR_AUTHCODE","features":[3,70]},{"name":"SIGNER_AUTHCODE_ATTR","features":[70]},{"name":"SIGNER_BLOB_INFO","features":[70]},{"name":"SIGNER_CERT","features":[3,70]},{"name":"SIGNER_CERT_CHOICE","features":[70]},{"name":"SIGNER_CERT_POLICY","features":[70]},{"name":"SIGNER_CERT_POLICY_CHAIN","features":[70]},{"name":"SIGNER_CERT_POLICY_CHAIN_NO_ROOT","features":[70]},{"name":"SIGNER_CERT_POLICY_SPC","features":[70]},{"name":"SIGNER_CERT_POLICY_STORE","features":[70]},{"name":"SIGNER_CERT_SPC_CHAIN","features":[70]},{"name":"SIGNER_CERT_SPC_FILE","features":[70]},{"name":"SIGNER_CERT_STORE","features":[70]},{"name":"SIGNER_CERT_STORE_INFO","features":[3,70]},{"name":"SIGNER_CONTEXT","features":[70]},{"name":"SIGNER_DIGEST_SIGN_INFO","features":[3,70]},{"name":"SIGNER_DIGEST_SIGN_INFO_V1","features":[3,70]},{"name":"SIGNER_DIGEST_SIGN_INFO_V2","features":[3,70]},{"name":"SIGNER_FILE_INFO","features":[3,70]},{"name":"SIGNER_NO_ATTR","features":[70]},{"name":"SIGNER_PRIVATE_KEY_CHOICE","features":[70]},{"name":"SIGNER_PROVIDER_INFO","features":[70]},{"name":"SIGNER_SIGNATURE_ATTRIBUTE_CHOICE","features":[70]},{"name":"SIGNER_SIGNATURE_INFO","features":[3,70]},{"name":"SIGNER_SIGN_FLAGS","features":[70]},{"name":"SIGNER_SPC_CHAIN_INFO","features":[70]},{"name":"SIGNER_SUBJECT_BLOB","features":[70]},{"name":"SIGNER_SUBJECT_CHOICE","features":[70]},{"name":"SIGNER_SUBJECT_FILE","features":[70]},{"name":"SIGNER_SUBJECT_INFO","features":[3,70]},{"name":"SIGNER_TIMESTAMP_AUTHENTICODE","features":[70]},{"name":"SIGNER_TIMESTAMP_FLAGS","features":[70]},{"name":"SIGNER_TIMESTAMP_RFC3161","features":[70]},{"name":"SIG_APPEND","features":[70]},{"name":"SIMPLEBLOB","features":[70]},{"name":"SITE_PIN_RULES_ALL_SUBDOMAINS_FLAG","features":[70]},{"name":"SORTED_CTL_EXT_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[70]},{"name":"SPC_DIGEST_GENERATE_FLAG","features":[70]},{"name":"SPC_DIGEST_SIGN_EX_FLAG","features":[70]},{"name":"SPC_DIGEST_SIGN_FLAG","features":[70]},{"name":"SPC_EXC_PE_PAGE_HASHES_FLAG","features":[70]},{"name":"SPC_INC_PE_DEBUG_INFO_FLAG","features":[70]},{"name":"SPC_INC_PE_IMPORT_ADDR_TABLE_FLAG","features":[70]},{"name":"SPC_INC_PE_PAGE_HASHES_FLAG","features":[70]},{"name":"SPC_INC_PE_RESOURCES_FLAG","features":[70]},{"name":"SSL2_PROTOCOL_VERSION","features":[70]},{"name":"SSL3_PROTOCOL_VERSION","features":[70]},{"name":"SSL_CK_DES_192_EDE3_CBC_WITH_MD5","features":[70]},{"name":"SSL_CK_DES_64_CBC_WITH_MD5","features":[70]},{"name":"SSL_CK_IDEA_128_CBC_WITH_MD5","features":[70]},{"name":"SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5","features":[70]},{"name":"SSL_CK_RC2_128_CBC_WITH_MD5","features":[70]},{"name":"SSL_CK_RC4_128_EXPORT40_WITH_MD5","features":[70]},{"name":"SSL_CK_RC4_128_WITH_MD5","features":[70]},{"name":"SSL_ECCKEY_BLOB","features":[70]},{"name":"SSL_ECCPUBLIC_BLOB","features":[70]},{"name":"SSL_ECDSA_ALGORITHM","features":[70]},{"name":"SSL_F12_ERROR_TEXT_LENGTH","features":[70]},{"name":"SSL_F12_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[70]},{"name":"SSL_HPKP_HEADER_COUNT","features":[70]},{"name":"SSL_HPKP_HEADER_EXTRA_CERT_CHAIN_POLICY_PARA","features":[70]},{"name":"SSL_HPKP_PKP_HEADER_INDEX","features":[70]},{"name":"SSL_HPKP_PKP_RO_HEADER_INDEX","features":[70]},{"name":"SSL_KEY_PIN_ERROR_TEXT_LENGTH","features":[70]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_PARA","features":[70]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[70]},{"name":"SSL_KEY_TYPE_PROPERTY","features":[70]},{"name":"SSL_OBJECT_LOCATOR_CERT_VALIDATION_CONFIG_FUNC","features":[70]},{"name":"SSL_OBJECT_LOCATOR_ISSUER_LIST_FUNC","features":[70]},{"name":"SSL_OBJECT_LOCATOR_PFX_FUNC","features":[70]},{"name":"SYMMETRICWRAPKEYBLOB","features":[70]},{"name":"SignError","features":[70]},{"name":"SignHash","features":[70]},{"name":"SignerFreeSignerContext","features":[70]},{"name":"SignerSign","features":[3,70]},{"name":"SignerSignEx","features":[3,70]},{"name":"SignerSignEx2","features":[3,70]},{"name":"SignerSignEx3","features":[3,70]},{"name":"SignerTimeStamp","features":[3,70]},{"name":"SignerTimeStampEx","features":[3,70]},{"name":"SignerTimeStampEx2","features":[3,70]},{"name":"SignerTimeStampEx3","features":[3,70]},{"name":"SslChangeNotify","features":[3,70]},{"name":"SslComputeClientAuthHash","features":[70]},{"name":"SslComputeClientAuthHashFn","features":[70]},{"name":"SslComputeEapKeyBlock","features":[70]},{"name":"SslComputeEapKeyBlockFn","features":[70]},{"name":"SslComputeFinishedHash","features":[70]},{"name":"SslComputeFinishedHashFn","features":[70]},{"name":"SslComputeSessionHash","features":[70]},{"name":"SslComputeSessionHashFn","features":[70]},{"name":"SslCreateClientAuthHash","features":[70]},{"name":"SslCreateClientAuthHashFn","features":[70]},{"name":"SslCreateEphemeralKey","features":[70]},{"name":"SslCreateEphemeralKeyFn","features":[70]},{"name":"SslCreateHandshakeHash","features":[70]},{"name":"SslCreateHandshakeHashFn","features":[70]},{"name":"SslDecrementProviderReferenceCount","features":[70]},{"name":"SslDecryptPacket","features":[70]},{"name":"SslDecryptPacketFn","features":[70]},{"name":"SslDuplicateTranscriptHash","features":[70]},{"name":"SslDuplicateTranscriptHashFn","features":[70]},{"name":"SslEncryptPacket","features":[70]},{"name":"SslEncryptPacketFn","features":[70]},{"name":"SslEnumCipherSuites","features":[70]},{"name":"SslEnumCipherSuitesEx","features":[70]},{"name":"SslEnumCipherSuitesExFn","features":[70]},{"name":"SslEnumCipherSuitesFn","features":[70]},{"name":"SslEnumEccCurves","features":[70]},{"name":"SslEnumEccCurvesFn","features":[70]},{"name":"SslEnumProtocolProviders","features":[70]},{"name":"SslExpandBinderKey","features":[70]},{"name":"SslExpandBinderKeyFn","features":[70]},{"name":"SslExpandExporterMasterKey","features":[70]},{"name":"SslExpandExporterMasterKeyFn","features":[70]},{"name":"SslExpandPreSharedKey","features":[70]},{"name":"SslExpandPreSharedKeyFn","features":[70]},{"name":"SslExpandResumptionMasterKey","features":[70]},{"name":"SslExpandResumptionMasterKeyFn","features":[70]},{"name":"SslExpandTrafficKeys","features":[70]},{"name":"SslExpandTrafficKeysFn","features":[70]},{"name":"SslExpandWriteKey","features":[70]},{"name":"SslExpandWriteKeyFn","features":[70]},{"name":"SslExportKey","features":[70]},{"name":"SslExportKeyFn","features":[70]},{"name":"SslExportKeyingMaterial","features":[70]},{"name":"SslExportKeyingMaterialFn","features":[70]},{"name":"SslExtractEarlyKey","features":[70]},{"name":"SslExtractEarlyKeyFn","features":[70]},{"name":"SslExtractHandshakeKey","features":[70]},{"name":"SslExtractHandshakeKeyFn","features":[70]},{"name":"SslExtractMasterKey","features":[70]},{"name":"SslExtractMasterKeyFn","features":[70]},{"name":"SslFreeBuffer","features":[70]},{"name":"SslFreeBufferFn","features":[70]},{"name":"SslFreeObject","features":[70]},{"name":"SslFreeObjectFn","features":[70]},{"name":"SslGenerateMasterKey","features":[70]},{"name":"SslGenerateMasterKeyFn","features":[70]},{"name":"SslGeneratePreMasterKey","features":[70]},{"name":"SslGeneratePreMasterKeyFn","features":[70]},{"name":"SslGenerateSessionKeys","features":[70]},{"name":"SslGenerateSessionKeysFn","features":[70]},{"name":"SslGetCipherSuitePRFHashAlgorithm","features":[70]},{"name":"SslGetCipherSuitePRFHashAlgorithmFn","features":[70]},{"name":"SslGetKeyProperty","features":[70]},{"name":"SslGetKeyPropertyFn","features":[70]},{"name":"SslGetProviderProperty","features":[70]},{"name":"SslGetProviderPropertyFn","features":[70]},{"name":"SslHashHandshake","features":[70]},{"name":"SslHashHandshakeFn","features":[70]},{"name":"SslImportKey","features":[70]},{"name":"SslImportKeyFn","features":[70]},{"name":"SslImportMasterKey","features":[70]},{"name":"SslImportMasterKeyFn","features":[70]},{"name":"SslIncrementProviderReferenceCount","features":[70]},{"name":"SslInitializeInterfaceFn","features":[3,70]},{"name":"SslLookupCipherLengths","features":[70]},{"name":"SslLookupCipherLengthsFn","features":[70]},{"name":"SslLookupCipherSuiteInfo","features":[70]},{"name":"SslLookupCipherSuiteInfoFn","features":[70]},{"name":"SslOpenPrivateKey","features":[3,70]},{"name":"SslOpenPrivateKeyFn","features":[3,70]},{"name":"SslOpenProvider","features":[70]},{"name":"SslOpenProviderFn","features":[70]},{"name":"SslSignHash","features":[70]},{"name":"SslSignHashFn","features":[70]},{"name":"SslVerifySignature","features":[70]},{"name":"SslVerifySignatureFn","features":[70]},{"name":"SystemPrng","features":[3,70]},{"name":"TIMESTAMP_DONT_HASH_DATA","features":[70]},{"name":"TIMESTAMP_FAILURE_BAD_ALG","features":[70]},{"name":"TIMESTAMP_FAILURE_BAD_FORMAT","features":[70]},{"name":"TIMESTAMP_FAILURE_BAD_REQUEST","features":[70]},{"name":"TIMESTAMP_FAILURE_EXTENSION_NOT_SUPPORTED","features":[70]},{"name":"TIMESTAMP_FAILURE_INFO_NOT_AVAILABLE","features":[70]},{"name":"TIMESTAMP_FAILURE_POLICY_NOT_SUPPORTED","features":[70]},{"name":"TIMESTAMP_FAILURE_SYSTEM_FAILURE","features":[70]},{"name":"TIMESTAMP_FAILURE_TIME_NOT_AVAILABLE","features":[70]},{"name":"TIMESTAMP_INFO","features":[70]},{"name":"TIMESTAMP_NO_AUTH_RETRIEVAL","features":[70]},{"name":"TIMESTAMP_REQUEST","features":[70]},{"name":"TIMESTAMP_RESPONSE","features":[70]},{"name":"TIMESTAMP_STATUS_GRANTED","features":[70]},{"name":"TIMESTAMP_STATUS_GRANTED_WITH_MODS","features":[70]},{"name":"TIMESTAMP_STATUS_REJECTED","features":[70]},{"name":"TIMESTAMP_STATUS_REVOCATION_WARNING","features":[70]},{"name":"TIMESTAMP_STATUS_REVOKED","features":[70]},{"name":"TIMESTAMP_STATUS_WAITING","features":[70]},{"name":"TIMESTAMP_VERIFY_CONTEXT_SIGNATURE","features":[70]},{"name":"TIMESTAMP_VERSION","features":[70]},{"name":"TIME_VALID_OID_FLUSH_CRL","features":[70]},{"name":"TIME_VALID_OID_FLUSH_CRL_FROM_CERT","features":[70]},{"name":"TIME_VALID_OID_FLUSH_CTL","features":[70]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CERT","features":[70]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CRL","features":[70]},{"name":"TIME_VALID_OID_FLUSH_OBJECT_FUNC","features":[70]},{"name":"TIME_VALID_OID_GET_CRL","features":[70]},{"name":"TIME_VALID_OID_GET_CRL_FROM_CERT","features":[70]},{"name":"TIME_VALID_OID_GET_CTL","features":[70]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CERT","features":[70]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CRL","features":[70]},{"name":"TIME_VALID_OID_GET_OBJECT_FUNC","features":[70]},{"name":"TLS1_0_PROTOCOL_VERSION","features":[70]},{"name":"TLS1_1_PROTOCOL_VERSION","features":[70]},{"name":"TLS1_2_PROTOCOL_VERSION","features":[70]},{"name":"TLS1_3_PROTOCOL_VERSION","features":[70]},{"name":"TLS1_PROTOCOL_VERSION","features":[70]},{"name":"TLS_AES_128_GCM_SHA256","features":[70]},{"name":"TLS_AES_256_GCM_SHA384","features":[70]},{"name":"TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA","features":[70]},{"name":"TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA","features":[70]},{"name":"TLS_DHE_DSS_WITH_AES_128_CBC_SHA","features":[70]},{"name":"TLS_DHE_DSS_WITH_AES_128_CBC_SHA256","features":[70]},{"name":"TLS_DHE_DSS_WITH_AES_256_CBC_SHA","features":[70]},{"name":"TLS_DHE_DSS_WITH_AES_256_CBC_SHA256","features":[70]},{"name":"TLS_DHE_DSS_WITH_DES_CBC_SHA","features":[70]},{"name":"TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA","features":[70]},{"name":"TLS_DHE_RSA_WITH_AES_128_CBC_SHA","features":[70]},{"name":"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256","features":[70]},{"name":"TLS_DHE_RSA_WITH_AES_256_CBC_SHA","features":[70]},{"name":"TLS_DHE_RSA_WITH_AES_256_GCM_SHA384","features":[70]},{"name":"TLS_ECC_P256_CURVE_KEY_TYPE","features":[70]},{"name":"TLS_ECC_P384_CURVE_KEY_TYPE","features":[70]},{"name":"TLS_ECC_P521_CURVE_KEY_TYPE","features":[70]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA","features":[70]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256","features":[70]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","features":[70]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA","features":[70]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384","features":[70]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384","features":[70]},{"name":"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA","features":[70]},{"name":"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256","features":[70]},{"name":"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256","features":[70]},{"name":"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA","features":[70]},{"name":"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384","features":[70]},{"name":"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384","features":[70]},{"name":"TLS_PSK_EXCHANGE","features":[70]},{"name":"TLS_PSK_WITH_AES_128_CBC_SHA256","features":[70]},{"name":"TLS_PSK_WITH_AES_128_GCM_SHA256","features":[70]},{"name":"TLS_PSK_WITH_AES_256_CBC_SHA384","features":[70]},{"name":"TLS_PSK_WITH_AES_256_GCM_SHA384","features":[70]},{"name":"TLS_PSK_WITH_NULL_SHA256","features":[70]},{"name":"TLS_PSK_WITH_NULL_SHA384","features":[70]},{"name":"TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA","features":[70]},{"name":"TLS_RSA_EXPORT1024_WITH_RC4_56_SHA","features":[70]},{"name":"TLS_RSA_EXPORT_WITH_RC4_40_MD5","features":[70]},{"name":"TLS_RSA_PSK_EXCHANGE","features":[70]},{"name":"TLS_RSA_WITH_3DES_EDE_CBC_SHA","features":[70]},{"name":"TLS_RSA_WITH_AES_128_CBC_SHA","features":[70]},{"name":"TLS_RSA_WITH_AES_128_CBC_SHA256","features":[70]},{"name":"TLS_RSA_WITH_AES_128_GCM_SHA256","features":[70]},{"name":"TLS_RSA_WITH_AES_256_CBC_SHA","features":[70]},{"name":"TLS_RSA_WITH_AES_256_CBC_SHA256","features":[70]},{"name":"TLS_RSA_WITH_AES_256_GCM_SHA384","features":[70]},{"name":"TLS_RSA_WITH_DES_CBC_SHA","features":[70]},{"name":"TLS_RSA_WITH_NULL_MD5","features":[70]},{"name":"TLS_RSA_WITH_NULL_SHA","features":[70]},{"name":"TLS_RSA_WITH_NULL_SHA256","features":[70]},{"name":"TLS_RSA_WITH_RC4_128_MD5","features":[70]},{"name":"TLS_RSA_WITH_RC4_128_SHA","features":[70]},{"name":"TPM_RSA_SRK_SEAL_KEY","features":[70]},{"name":"TransformBlock","features":[70]},{"name":"TransformFinalBlock","features":[70]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT","features":[70]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT_AND_OCSP","features":[70]},{"name":"URL_OID_CERTIFICATE_FRESHEST_CRL","features":[70]},{"name":"URL_OID_CERTIFICATE_ISSUER","features":[70]},{"name":"URL_OID_CERTIFICATE_OCSP","features":[70]},{"name":"URL_OID_CERTIFICATE_OCSP_AND_CRL_DIST_POINT","features":[70]},{"name":"URL_OID_CERTIFICATE_ONLY_OCSP","features":[70]},{"name":"URL_OID_CRL_FRESHEST_CRL","features":[70]},{"name":"URL_OID_CRL_ISSUER","features":[70]},{"name":"URL_OID_CROSS_CERT_DIST_POINT","features":[70]},{"name":"URL_OID_CROSS_CERT_SUBJECT_INFO_ACCESS","features":[70]},{"name":"URL_OID_CTL_ISSUER","features":[70]},{"name":"URL_OID_CTL_NEXT_UPDATE","features":[70]},{"name":"URL_OID_GET_OBJECT_URL_FUNC","features":[70]},{"name":"USAGE_MATCH_TYPE_AND","features":[70]},{"name":"USAGE_MATCH_TYPE_OR","features":[70]},{"name":"UnblockOnlyPin","features":[70]},{"name":"UnknownAc","features":[70]},{"name":"UserCreateDeleteDirAc","features":[70]},{"name":"UserReadWriteAc","features":[70]},{"name":"UserWriteExecuteAc","features":[70]},{"name":"VTableProvStruc","features":[3,70]},{"name":"VTableProvStrucW","features":[3,70]},{"name":"VerifyHash","features":[3,70]},{"name":"X509_ALGORITHM_IDENTIFIER","features":[70]},{"name":"X509_ALTERNATE_NAME","features":[70]},{"name":"X509_ANY_STRING","features":[70]},{"name":"X509_ASN_ENCODING","features":[70]},{"name":"X509_AUTHORITY_INFO_ACCESS","features":[70]},{"name":"X509_AUTHORITY_KEY_ID","features":[70]},{"name":"X509_AUTHORITY_KEY_ID2","features":[70]},{"name":"X509_BASIC_CONSTRAINTS","features":[70]},{"name":"X509_BASIC_CONSTRAINTS2","features":[70]},{"name":"X509_BIOMETRIC_EXT","features":[70]},{"name":"X509_BITS","features":[70]},{"name":"X509_BITS_WITHOUT_TRAILING_ZEROES","features":[70]},{"name":"X509_CERT","features":[70]},{"name":"X509_CERTIFICATE_TEMPLATE","features":[70]},{"name":"X509_CERT_BUNDLE","features":[70]},{"name":"X509_CERT_CRL_TO_BE_SIGNED","features":[70]},{"name":"X509_CERT_PAIR","features":[70]},{"name":"X509_CERT_POLICIES","features":[70]},{"name":"X509_CERT_REQUEST_TO_BE_SIGNED","features":[70]},{"name":"X509_CERT_TO_BE_SIGNED","features":[70]},{"name":"X509_CHOICE_OF_TIME","features":[70]},{"name":"X509_CRL_DIST_POINTS","features":[70]},{"name":"X509_CRL_REASON_CODE","features":[70]},{"name":"X509_CROSS_CERT_DIST_POINTS","features":[70]},{"name":"X509_DH_PARAMETERS","features":[70]},{"name":"X509_DH_PUBLICKEY","features":[70]},{"name":"X509_DSS_PARAMETERS","features":[70]},{"name":"X509_DSS_PUBLICKEY","features":[70]},{"name":"X509_DSS_SIGNATURE","features":[70]},{"name":"X509_ECC_PARAMETERS","features":[70]},{"name":"X509_ECC_PRIVATE_KEY","features":[70]},{"name":"X509_ECC_SIGNATURE","features":[70]},{"name":"X509_ENHANCED_KEY_USAGE","features":[70]},{"name":"X509_ENUMERATED","features":[70]},{"name":"X509_EXTENSIONS","features":[70]},{"name":"X509_INTEGER","features":[70]},{"name":"X509_ISSUING_DIST_POINT","features":[70]},{"name":"X509_KEYGEN_REQUEST_TO_BE_SIGNED","features":[70]},{"name":"X509_KEY_ATTRIBUTES","features":[70]},{"name":"X509_KEY_USAGE","features":[70]},{"name":"X509_KEY_USAGE_RESTRICTION","features":[70]},{"name":"X509_LOGOTYPE_EXT","features":[70]},{"name":"X509_MULTI_BYTE_INTEGER","features":[70]},{"name":"X509_MULTI_BYTE_UINT","features":[70]},{"name":"X509_NAME","features":[70]},{"name":"X509_NAME_CONSTRAINTS","features":[70]},{"name":"X509_NAME_VALUE","features":[70]},{"name":"X509_NDR_ENCODING","features":[70]},{"name":"X509_OBJECT_IDENTIFIER","features":[70]},{"name":"X509_OCTET_STRING","features":[70]},{"name":"X509_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[70]},{"name":"X509_POLICY_CONSTRAINTS","features":[70]},{"name":"X509_POLICY_MAPPINGS","features":[70]},{"name":"X509_PUBLIC_KEY_INFO","features":[70]},{"name":"X509_QC_STATEMENTS_EXT","features":[70]},{"name":"X509_SEQUENCE_OF_ANY","features":[70]},{"name":"X509_SUBJECT_DIR_ATTRS","features":[70]},{"name":"X509_SUBJECT_INFO_ACCESS","features":[70]},{"name":"X509_UNICODE_ANY_STRING","features":[70]},{"name":"X509_UNICODE_NAME","features":[70]},{"name":"X509_UNICODE_NAME_VALUE","features":[70]},{"name":"X942_DH_PARAMETERS","features":[70]},{"name":"X942_OTHER_INFO","features":[70]},{"name":"ZERO_PADDING","features":[70]},{"name":"cPRIV_KEY_CACHE_MAX_ITEMS_DEFAULT","features":[70]},{"name":"cPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS_DEFAULT","features":[70]},{"name":"dwFORCE_KEY_PROTECTION_DISABLED","features":[70]},{"name":"dwFORCE_KEY_PROTECTION_HIGH","features":[70]},{"name":"dwFORCE_KEY_PROTECTION_USER_SELECT","features":[70]},{"name":"szBASE_CSP_DIR","features":[70]},{"name":"szCACHE_FILE","features":[70]},{"name":"szCARD_IDENTIFIER_FILE","features":[70]},{"name":"szCONTAINER_MAP_FILE","features":[70]},{"name":"szFORCE_KEY_PROTECTION","features":[70]},{"name":"szINTERMEDIATE_CERTS_DIR","features":[70]},{"name":"szKEY_CACHE_ENABLED","features":[70]},{"name":"szKEY_CACHE_SECONDS","features":[70]},{"name":"szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS","features":[70]},{"name":"szOIDVerisign_FailInfo","features":[70]},{"name":"szOIDVerisign_MessageType","features":[70]},{"name":"szOIDVerisign_PkiStatus","features":[70]},{"name":"szOIDVerisign_RecipientNonce","features":[70]},{"name":"szOIDVerisign_SenderNonce","features":[70]},{"name":"szOIDVerisign_TransactionID","features":[70]},{"name":"szOID_ANSI_X942","features":[70]},{"name":"szOID_ANSI_X942_DH","features":[70]},{"name":"szOID_ANY_APPLICATION_POLICY","features":[70]},{"name":"szOID_ANY_CERT_POLICY","features":[70]},{"name":"szOID_ANY_ENHANCED_KEY_USAGE","features":[70]},{"name":"szOID_APPLICATION_CERT_POLICIES","features":[70]},{"name":"szOID_APPLICATION_POLICY_CONSTRAINTS","features":[70]},{"name":"szOID_APPLICATION_POLICY_MAPPINGS","features":[70]},{"name":"szOID_ARCHIVED_KEY_ATTR","features":[70]},{"name":"szOID_ARCHIVED_KEY_CERT_HASH","features":[70]},{"name":"szOID_ATTEST_WHQL_CRYPTO","features":[70]},{"name":"szOID_ATTR_PLATFORM_SPECIFICATION","features":[70]},{"name":"szOID_ATTR_SUPPORTED_ALGORITHMS","features":[70]},{"name":"szOID_ATTR_TPM_SECURITY_ASSERTIONS","features":[70]},{"name":"szOID_ATTR_TPM_SPECIFICATION","features":[70]},{"name":"szOID_AUTHORITY_INFO_ACCESS","features":[70]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER","features":[70]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER2","features":[70]},{"name":"szOID_AUTHORITY_REVOCATION_LIST","features":[70]},{"name":"szOID_AUTO_ENROLL_CTL_USAGE","features":[70]},{"name":"szOID_BACKGROUND_OTHER_LOGOTYPE","features":[70]},{"name":"szOID_BASIC_CONSTRAINTS","features":[70]},{"name":"szOID_BASIC_CONSTRAINTS2","features":[70]},{"name":"szOID_BIOMETRIC_EXT","features":[70]},{"name":"szOID_BIOMETRIC_SIGNING","features":[70]},{"name":"szOID_BUSINESS_CATEGORY","features":[70]},{"name":"szOID_CA_CERTIFICATE","features":[70]},{"name":"szOID_CERTIFICATE_REVOCATION_LIST","features":[70]},{"name":"szOID_CERTIFICATE_TEMPLATE","features":[70]},{"name":"szOID_CERTSRV_CA_VERSION","features":[70]},{"name":"szOID_CERTSRV_CROSSCA_VERSION","features":[70]},{"name":"szOID_CERTSRV_PREVIOUS_CERT_HASH","features":[70]},{"name":"szOID_CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[70]},{"name":"szOID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[70]},{"name":"szOID_CERT_EXTENSIONS","features":[70]},{"name":"szOID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[70]},{"name":"szOID_CERT_KEY_IDENTIFIER_PROP_ID","features":[70]},{"name":"szOID_CERT_MANIFOLD","features":[70]},{"name":"szOID_CERT_MD5_HASH_PROP_ID","features":[70]},{"name":"szOID_CERT_POLICIES","features":[70]},{"name":"szOID_CERT_POLICIES_95","features":[70]},{"name":"szOID_CERT_POLICIES_95_QUALIFIER1","features":[70]},{"name":"szOID_CERT_PROP_ID_PREFIX","features":[70]},{"name":"szOID_CERT_SIGNATURE_HASH_PROP_ID","features":[70]},{"name":"szOID_CERT_STRONG_KEY_OS_1","features":[70]},{"name":"szOID_CERT_STRONG_KEY_OS_CURRENT","features":[70]},{"name":"szOID_CERT_STRONG_KEY_OS_PREFIX","features":[70]},{"name":"szOID_CERT_STRONG_SIGN_OS_1","features":[70]},{"name":"szOID_CERT_STRONG_SIGN_OS_CURRENT","features":[70]},{"name":"szOID_CERT_STRONG_SIGN_OS_PREFIX","features":[70]},{"name":"szOID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[70]},{"name":"szOID_CMC","features":[70]},{"name":"szOID_CMC_ADD_ATTRIBUTES","features":[70]},{"name":"szOID_CMC_ADD_EXTENSIONS","features":[70]},{"name":"szOID_CMC_DATA_RETURN","features":[70]},{"name":"szOID_CMC_DECRYPTED_POP","features":[70]},{"name":"szOID_CMC_ENCRYPTED_POP","features":[70]},{"name":"szOID_CMC_GET_CERT","features":[70]},{"name":"szOID_CMC_GET_CRL","features":[70]},{"name":"szOID_CMC_IDENTIFICATION","features":[70]},{"name":"szOID_CMC_IDENTITY_PROOF","features":[70]},{"name":"szOID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[70]},{"name":"szOID_CMC_ID_POP_LINK_RANDOM","features":[70]},{"name":"szOID_CMC_ID_POP_LINK_WITNESS","features":[70]},{"name":"szOID_CMC_LRA_POP_WITNESS","features":[70]},{"name":"szOID_CMC_QUERY_PENDING","features":[70]},{"name":"szOID_CMC_RECIPIENT_NONCE","features":[70]},{"name":"szOID_CMC_REG_INFO","features":[70]},{"name":"szOID_CMC_RESPONSE_INFO","features":[70]},{"name":"szOID_CMC_REVOKE_REQUEST","features":[70]},{"name":"szOID_CMC_SENDER_NONCE","features":[70]},{"name":"szOID_CMC_STATUS_INFO","features":[70]},{"name":"szOID_CMC_TRANSACTION_ID","features":[70]},{"name":"szOID_CN_ECDSA_SHA256","features":[70]},{"name":"szOID_COMMON_NAME","features":[70]},{"name":"szOID_COUNTRY_NAME","features":[70]},{"name":"szOID_CRL_DIST_POINTS","features":[70]},{"name":"szOID_CRL_NEXT_PUBLISH","features":[70]},{"name":"szOID_CRL_NUMBER","features":[70]},{"name":"szOID_CRL_REASON_CODE","features":[70]},{"name":"szOID_CRL_SELF_CDP","features":[70]},{"name":"szOID_CRL_VIRTUAL_BASE","features":[70]},{"name":"szOID_CROSS_CERTIFICATE_PAIR","features":[70]},{"name":"szOID_CROSS_CERT_DIST_POINTS","features":[70]},{"name":"szOID_CTL","features":[70]},{"name":"szOID_CT_CERT_SCTLIST","features":[70]},{"name":"szOID_CT_PKI_DATA","features":[70]},{"name":"szOID_CT_PKI_RESPONSE","features":[70]},{"name":"szOID_DELTA_CRL_INDICATOR","features":[70]},{"name":"szOID_DESCRIPTION","features":[70]},{"name":"szOID_DESTINATION_INDICATOR","features":[70]},{"name":"szOID_DEVICE_SERIAL_NUMBER","features":[70]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[70]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[70]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[70]},{"name":"szOID_DISALLOWED_HASH","features":[70]},{"name":"szOID_DISALLOWED_LIST","features":[70]},{"name":"szOID_DN_QUALIFIER","features":[70]},{"name":"szOID_DOMAIN_COMPONENT","features":[70]},{"name":"szOID_DRM","features":[70]},{"name":"szOID_DRM_INDIVIDUALIZATION","features":[70]},{"name":"szOID_DS","features":[70]},{"name":"szOID_DSALG","features":[70]},{"name":"szOID_DSALG_CRPT","features":[70]},{"name":"szOID_DSALG_HASH","features":[70]},{"name":"szOID_DSALG_RSA","features":[70]},{"name":"szOID_DSALG_SIGN","features":[70]},{"name":"szOID_DS_EMAIL_REPLICATION","features":[70]},{"name":"szOID_DYNAMIC_CODE_GEN_SIGNER","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160R1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160T1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192R1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192T1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224R1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224T1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256R1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256T1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320R1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320T1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384R1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384T1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512R1","features":[70]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512T1","features":[70]},{"name":"szOID_ECC_CURVE_EC192WAPI","features":[70]},{"name":"szOID_ECC_CURVE_NISTP192","features":[70]},{"name":"szOID_ECC_CURVE_NISTP224","features":[70]},{"name":"szOID_ECC_CURVE_NISTP256","features":[70]},{"name":"szOID_ECC_CURVE_NISTP384","features":[70]},{"name":"szOID_ECC_CURVE_NISTP521","features":[70]},{"name":"szOID_ECC_CURVE_P256","features":[70]},{"name":"szOID_ECC_CURVE_P384","features":[70]},{"name":"szOID_ECC_CURVE_P521","features":[70]},{"name":"szOID_ECC_CURVE_SECP160K1","features":[70]},{"name":"szOID_ECC_CURVE_SECP160R1","features":[70]},{"name":"szOID_ECC_CURVE_SECP160R2","features":[70]},{"name":"szOID_ECC_CURVE_SECP192K1","features":[70]},{"name":"szOID_ECC_CURVE_SECP192R1","features":[70]},{"name":"szOID_ECC_CURVE_SECP224K1","features":[70]},{"name":"szOID_ECC_CURVE_SECP224R1","features":[70]},{"name":"szOID_ECC_CURVE_SECP256K1","features":[70]},{"name":"szOID_ECC_CURVE_SECP256R1","features":[70]},{"name":"szOID_ECC_CURVE_SECP384R1","features":[70]},{"name":"szOID_ECC_CURVE_SECP521R1","features":[70]},{"name":"szOID_ECC_CURVE_WTLS12","features":[70]},{"name":"szOID_ECC_CURVE_WTLS7","features":[70]},{"name":"szOID_ECC_CURVE_WTLS9","features":[70]},{"name":"szOID_ECC_CURVE_X962P192V1","features":[70]},{"name":"szOID_ECC_CURVE_X962P192V2","features":[70]},{"name":"szOID_ECC_CURVE_X962P192V3","features":[70]},{"name":"szOID_ECC_CURVE_X962P239V1","features":[70]},{"name":"szOID_ECC_CURVE_X962P239V2","features":[70]},{"name":"szOID_ECC_CURVE_X962P239V3","features":[70]},{"name":"szOID_ECC_CURVE_X962P256V1","features":[70]},{"name":"szOID_ECC_PUBLIC_KEY","features":[70]},{"name":"szOID_ECDSA_SHA1","features":[70]},{"name":"szOID_ECDSA_SHA256","features":[70]},{"name":"szOID_ECDSA_SHA384","features":[70]},{"name":"szOID_ECDSA_SHA512","features":[70]},{"name":"szOID_ECDSA_SPECIFIED","features":[70]},{"name":"szOID_EFS_RECOVERY","features":[70]},{"name":"szOID_EMBEDDED_NT_CRYPTO","features":[70]},{"name":"szOID_ENCLAVE_SIGNING","features":[70]},{"name":"szOID_ENCRYPTED_KEY_HASH","features":[70]},{"name":"szOID_ENHANCED_KEY_USAGE","features":[70]},{"name":"szOID_ENROLLMENT_AGENT","features":[70]},{"name":"szOID_ENROLLMENT_CSP_PROVIDER","features":[70]},{"name":"szOID_ENROLLMENT_NAME_VALUE_PAIR","features":[70]},{"name":"szOID_ENROLL_AIK_INFO","features":[70]},{"name":"szOID_ENROLL_ATTESTATION_CHALLENGE","features":[70]},{"name":"szOID_ENROLL_ATTESTATION_STATEMENT","features":[70]},{"name":"szOID_ENROLL_CAXCHGCERT_HASH","features":[70]},{"name":"szOID_ENROLL_CERTTYPE_EXTENSION","features":[70]},{"name":"szOID_ENROLL_EKPUB_CHALLENGE","features":[70]},{"name":"szOID_ENROLL_EKVERIFYCERT","features":[70]},{"name":"szOID_ENROLL_EKVERIFYCREDS","features":[70]},{"name":"szOID_ENROLL_EKVERIFYKEY","features":[70]},{"name":"szOID_ENROLL_EK_CA_KEYID","features":[70]},{"name":"szOID_ENROLL_EK_INFO","features":[70]},{"name":"szOID_ENROLL_ENCRYPTION_ALGORITHM","features":[70]},{"name":"szOID_ENROLL_KEY_AFFINITY","features":[70]},{"name":"szOID_ENROLL_KSP_NAME","features":[70]},{"name":"szOID_ENROLL_SCEP_CHALLENGE_ANSWER","features":[70]},{"name":"szOID_ENROLL_SCEP_CLIENT_REQUEST","features":[70]},{"name":"szOID_ENROLL_SCEP_ERROR","features":[70]},{"name":"szOID_ENROLL_SCEP_SERVER_MESSAGE","features":[70]},{"name":"szOID_ENROLL_SCEP_SERVER_SECRET","features":[70]},{"name":"szOID_ENROLL_SCEP_SERVER_STATE","features":[70]},{"name":"szOID_ENROLL_SCEP_SIGNER_HASH","features":[70]},{"name":"szOID_ENTERPRISE_OID_ROOT","features":[70]},{"name":"szOID_EV_RDN_COUNTRY","features":[70]},{"name":"szOID_EV_RDN_LOCALE","features":[70]},{"name":"szOID_EV_RDN_STATE_OR_PROVINCE","features":[70]},{"name":"szOID_EV_WHQL_CRYPTO","features":[70]},{"name":"szOID_FACSIMILE_TELEPHONE_NUMBER","features":[70]},{"name":"szOID_FRESHEST_CRL","features":[70]},{"name":"szOID_GIVEN_NAME","features":[70]},{"name":"szOID_HPKP_DOMAIN_NAME_CTL","features":[70]},{"name":"szOID_HPKP_HEADER_VALUE_CTL","features":[70]},{"name":"szOID_INFOSEC","features":[70]},{"name":"szOID_INFOSEC_SuiteAConfidentiality","features":[70]},{"name":"szOID_INFOSEC_SuiteAIntegrity","features":[70]},{"name":"szOID_INFOSEC_SuiteAKMandSig","features":[70]},{"name":"szOID_INFOSEC_SuiteAKeyManagement","features":[70]},{"name":"szOID_INFOSEC_SuiteASignature","features":[70]},{"name":"szOID_INFOSEC_SuiteATokenProtection","features":[70]},{"name":"szOID_INFOSEC_mosaicConfidentiality","features":[70]},{"name":"szOID_INFOSEC_mosaicIntegrity","features":[70]},{"name":"szOID_INFOSEC_mosaicKMandSig","features":[70]},{"name":"szOID_INFOSEC_mosaicKMandUpdSig","features":[70]},{"name":"szOID_INFOSEC_mosaicKeyManagement","features":[70]},{"name":"szOID_INFOSEC_mosaicSignature","features":[70]},{"name":"szOID_INFOSEC_mosaicTokenProtection","features":[70]},{"name":"szOID_INFOSEC_mosaicUpdatedInteg","features":[70]},{"name":"szOID_INFOSEC_mosaicUpdatedSig","features":[70]},{"name":"szOID_INFOSEC_sdnsConfidentiality","features":[70]},{"name":"szOID_INFOSEC_sdnsIntegrity","features":[70]},{"name":"szOID_INFOSEC_sdnsKMandSig","features":[70]},{"name":"szOID_INFOSEC_sdnsKeyManagement","features":[70]},{"name":"szOID_INFOSEC_sdnsSignature","features":[70]},{"name":"szOID_INFOSEC_sdnsTokenProtection","features":[70]},{"name":"szOID_INHIBIT_ANY_POLICY","features":[70]},{"name":"szOID_INITIALS","features":[70]},{"name":"szOID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[70]},{"name":"szOID_INTERNATIONAL_ISDN_NUMBER","features":[70]},{"name":"szOID_IPSEC_KP_IKE_INTERMEDIATE","features":[70]},{"name":"szOID_ISSUED_CERT_HASH","features":[70]},{"name":"szOID_ISSUER_ALT_NAME","features":[70]},{"name":"szOID_ISSUER_ALT_NAME2","features":[70]},{"name":"szOID_ISSUING_DIST_POINT","features":[70]},{"name":"szOID_IUM_SIGNING","features":[70]},{"name":"szOID_KEYID_RDN","features":[70]},{"name":"szOID_KEY_ATTRIBUTES","features":[70]},{"name":"szOID_KEY_USAGE","features":[70]},{"name":"szOID_KEY_USAGE_RESTRICTION","features":[70]},{"name":"szOID_KP_CA_EXCHANGE","features":[70]},{"name":"szOID_KP_CSP_SIGNATURE","features":[70]},{"name":"szOID_KP_CTL_USAGE_SIGNING","features":[70]},{"name":"szOID_KP_DOCUMENT_SIGNING","features":[70]},{"name":"szOID_KP_EFS","features":[70]},{"name":"szOID_KP_FLIGHT_SIGNING","features":[70]},{"name":"szOID_KP_KERNEL_MODE_CODE_SIGNING","features":[70]},{"name":"szOID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[70]},{"name":"szOID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[70]},{"name":"szOID_KP_KEY_RECOVERY","features":[70]},{"name":"szOID_KP_KEY_RECOVERY_AGENT","features":[70]},{"name":"szOID_KP_LIFETIME_SIGNING","features":[70]},{"name":"szOID_KP_MOBILE_DEVICE_SOFTWARE","features":[70]},{"name":"szOID_KP_PRIVACY_CA","features":[70]},{"name":"szOID_KP_QUALIFIED_SUBORDINATION","features":[70]},{"name":"szOID_KP_SMARTCARD_LOGON","features":[70]},{"name":"szOID_KP_SMART_DISPLAY","features":[70]},{"name":"szOID_KP_TIME_STAMP_SIGNING","features":[70]},{"name":"szOID_KP_TPM_AIK_CERTIFICATE","features":[70]},{"name":"szOID_KP_TPM_EK_CERTIFICATE","features":[70]},{"name":"szOID_KP_TPM_PLATFORM_CERTIFICATE","features":[70]},{"name":"szOID_LEGACY_POLICY_MAPPINGS","features":[70]},{"name":"szOID_LICENSES","features":[70]},{"name":"szOID_LICENSE_SERVER","features":[70]},{"name":"szOID_LOCALITY_NAME","features":[70]},{"name":"szOID_LOCAL_MACHINE_KEYSET","features":[70]},{"name":"szOID_LOGOTYPE_EXT","features":[70]},{"name":"szOID_LOYALTY_OTHER_LOGOTYPE","features":[70]},{"name":"szOID_MEMBER","features":[70]},{"name":"szOID_MICROSOFT_PUBLISHER_SIGNER","features":[70]},{"name":"szOID_NAME_CONSTRAINTS","features":[70]},{"name":"szOID_NETSCAPE","features":[70]},{"name":"szOID_NETSCAPE_BASE_URL","features":[70]},{"name":"szOID_NETSCAPE_CA_POLICY_URL","features":[70]},{"name":"szOID_NETSCAPE_CA_REVOCATION_URL","features":[70]},{"name":"szOID_NETSCAPE_CERT_EXTENSION","features":[70]},{"name":"szOID_NETSCAPE_CERT_RENEWAL_URL","features":[70]},{"name":"szOID_NETSCAPE_CERT_SEQUENCE","features":[70]},{"name":"szOID_NETSCAPE_CERT_TYPE","features":[70]},{"name":"szOID_NETSCAPE_COMMENT","features":[70]},{"name":"szOID_NETSCAPE_DATA_TYPE","features":[70]},{"name":"szOID_NETSCAPE_REVOCATION_URL","features":[70]},{"name":"szOID_NETSCAPE_SSL_SERVER_NAME","features":[70]},{"name":"szOID_NEXT_UPDATE_LOCATION","features":[70]},{"name":"szOID_NIST_AES128_CBC","features":[70]},{"name":"szOID_NIST_AES128_WRAP","features":[70]},{"name":"szOID_NIST_AES192_CBC","features":[70]},{"name":"szOID_NIST_AES192_WRAP","features":[70]},{"name":"szOID_NIST_AES256_CBC","features":[70]},{"name":"szOID_NIST_AES256_WRAP","features":[70]},{"name":"szOID_NIST_sha256","features":[70]},{"name":"szOID_NIST_sha384","features":[70]},{"name":"szOID_NIST_sha512","features":[70]},{"name":"szOID_NT5_CRYPTO","features":[70]},{"name":"szOID_NTDS_CA_SECURITY_EXT","features":[70]},{"name":"szOID_NTDS_OBJECTSID","features":[70]},{"name":"szOID_NTDS_REPLICATION","features":[70]},{"name":"szOID_NT_PRINCIPAL_NAME","features":[70]},{"name":"szOID_OEM_WHQL_CRYPTO","features":[70]},{"name":"szOID_OIW","features":[70]},{"name":"szOID_OIWDIR","features":[70]},{"name":"szOID_OIWDIR_CRPT","features":[70]},{"name":"szOID_OIWDIR_HASH","features":[70]},{"name":"szOID_OIWDIR_SIGN","features":[70]},{"name":"szOID_OIWDIR_md2","features":[70]},{"name":"szOID_OIWDIR_md2RSA","features":[70]},{"name":"szOID_OIWSEC","features":[70]},{"name":"szOID_OIWSEC_desCBC","features":[70]},{"name":"szOID_OIWSEC_desCFB","features":[70]},{"name":"szOID_OIWSEC_desECB","features":[70]},{"name":"szOID_OIWSEC_desEDE","features":[70]},{"name":"szOID_OIWSEC_desMAC","features":[70]},{"name":"szOID_OIWSEC_desOFB","features":[70]},{"name":"szOID_OIWSEC_dhCommMod","features":[70]},{"name":"szOID_OIWSEC_dsa","features":[70]},{"name":"szOID_OIWSEC_dsaComm","features":[70]},{"name":"szOID_OIWSEC_dsaCommSHA","features":[70]},{"name":"szOID_OIWSEC_dsaCommSHA1","features":[70]},{"name":"szOID_OIWSEC_dsaSHA1","features":[70]},{"name":"szOID_OIWSEC_keyHashSeal","features":[70]},{"name":"szOID_OIWSEC_md2RSASign","features":[70]},{"name":"szOID_OIWSEC_md4RSA","features":[70]},{"name":"szOID_OIWSEC_md4RSA2","features":[70]},{"name":"szOID_OIWSEC_md5RSA","features":[70]},{"name":"szOID_OIWSEC_md5RSASign","features":[70]},{"name":"szOID_OIWSEC_mdc2","features":[70]},{"name":"szOID_OIWSEC_mdc2RSA","features":[70]},{"name":"szOID_OIWSEC_rsaSign","features":[70]},{"name":"szOID_OIWSEC_rsaXchg","features":[70]},{"name":"szOID_OIWSEC_sha","features":[70]},{"name":"szOID_OIWSEC_sha1","features":[70]},{"name":"szOID_OIWSEC_sha1RSASign","features":[70]},{"name":"szOID_OIWSEC_shaDSA","features":[70]},{"name":"szOID_OIWSEC_shaRSA","features":[70]},{"name":"szOID_ORGANIZATIONAL_UNIT_NAME","features":[70]},{"name":"szOID_ORGANIZATION_NAME","features":[70]},{"name":"szOID_OS_VERSION","features":[70]},{"name":"szOID_OWNER","features":[70]},{"name":"szOID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[70]},{"name":"szOID_PIN_RULES_CTL","features":[70]},{"name":"szOID_PIN_RULES_DOMAIN_NAME","features":[70]},{"name":"szOID_PIN_RULES_EXT","features":[70]},{"name":"szOID_PIN_RULES_LOG_END_DATE_EXT","features":[70]},{"name":"szOID_PIN_RULES_SIGNER","features":[70]},{"name":"szOID_PKCS","features":[70]},{"name":"szOID_PKCS_1","features":[70]},{"name":"szOID_PKCS_10","features":[70]},{"name":"szOID_PKCS_12","features":[70]},{"name":"szOID_PKCS_12_EXTENDED_ATTRIBUTES","features":[70]},{"name":"szOID_PKCS_12_FRIENDLY_NAME_ATTR","features":[70]},{"name":"szOID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[70]},{"name":"szOID_PKCS_12_LOCAL_KEY_ID","features":[70]},{"name":"szOID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[70]},{"name":"szOID_PKCS_12_PbeIds","features":[70]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC2","features":[70]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC4","features":[70]},{"name":"szOID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[70]},{"name":"szOID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[70]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC2","features":[70]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC4","features":[70]},{"name":"szOID_PKCS_2","features":[70]},{"name":"szOID_PKCS_3","features":[70]},{"name":"szOID_PKCS_4","features":[70]},{"name":"szOID_PKCS_5","features":[70]},{"name":"szOID_PKCS_5_PBES2","features":[70]},{"name":"szOID_PKCS_5_PBKDF2","features":[70]},{"name":"szOID_PKCS_6","features":[70]},{"name":"szOID_PKCS_7","features":[70]},{"name":"szOID_PKCS_7_DATA","features":[70]},{"name":"szOID_PKCS_7_DIGESTED","features":[70]},{"name":"szOID_PKCS_7_ENCRYPTED","features":[70]},{"name":"szOID_PKCS_7_ENVELOPED","features":[70]},{"name":"szOID_PKCS_7_SIGNED","features":[70]},{"name":"szOID_PKCS_7_SIGNEDANDENVELOPED","features":[70]},{"name":"szOID_PKCS_8","features":[70]},{"name":"szOID_PKCS_9","features":[70]},{"name":"szOID_PKCS_9_CONTENT_TYPE","features":[70]},{"name":"szOID_PKCS_9_MESSAGE_DIGEST","features":[70]},{"name":"szOID_PKINIT_KP_KDC","features":[70]},{"name":"szOID_PKIX","features":[70]},{"name":"szOID_PKIX_ACC_DESCR","features":[70]},{"name":"szOID_PKIX_CA_ISSUERS","features":[70]},{"name":"szOID_PKIX_CA_REPOSITORY","features":[70]},{"name":"szOID_PKIX_KP","features":[70]},{"name":"szOID_PKIX_KP_CLIENT_AUTH","features":[70]},{"name":"szOID_PKIX_KP_CODE_SIGNING","features":[70]},{"name":"szOID_PKIX_KP_EMAIL_PROTECTION","features":[70]},{"name":"szOID_PKIX_KP_IPSEC_END_SYSTEM","features":[70]},{"name":"szOID_PKIX_KP_IPSEC_TUNNEL","features":[70]},{"name":"szOID_PKIX_KP_IPSEC_USER","features":[70]},{"name":"szOID_PKIX_KP_OCSP_SIGNING","features":[70]},{"name":"szOID_PKIX_KP_SERVER_AUTH","features":[70]},{"name":"szOID_PKIX_KP_TIMESTAMP_SIGNING","features":[70]},{"name":"szOID_PKIX_NO_SIGNATURE","features":[70]},{"name":"szOID_PKIX_OCSP","features":[70]},{"name":"szOID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[70]},{"name":"szOID_PKIX_OCSP_NOCHECK","features":[70]},{"name":"szOID_PKIX_OCSP_NONCE","features":[70]},{"name":"szOID_PKIX_PE","features":[70]},{"name":"szOID_PKIX_POLICY_QUALIFIER_CPS","features":[70]},{"name":"szOID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[70]},{"name":"szOID_PKIX_TIME_STAMPING","features":[70]},{"name":"szOID_PLATFORM_MANIFEST_BINARY_ID","features":[70]},{"name":"szOID_POLICY_CONSTRAINTS","features":[70]},{"name":"szOID_POLICY_MAPPINGS","features":[70]},{"name":"szOID_POSTAL_ADDRESS","features":[70]},{"name":"szOID_POSTAL_CODE","features":[70]},{"name":"szOID_POST_OFFICE_BOX","features":[70]},{"name":"szOID_PREFERRED_DELIVERY_METHOD","features":[70]},{"name":"szOID_PRESENTATION_ADDRESS","features":[70]},{"name":"szOID_PRIVATEKEY_USAGE_PERIOD","features":[70]},{"name":"szOID_PRODUCT_UPDATE","features":[70]},{"name":"szOID_PROTECTED_PROCESS_LIGHT_SIGNER","features":[70]},{"name":"szOID_PROTECTED_PROCESS_SIGNER","features":[70]},{"name":"szOID_QC_EU_COMPLIANCE","features":[70]},{"name":"szOID_QC_SSCD","features":[70]},{"name":"szOID_QC_STATEMENTS_EXT","features":[70]},{"name":"szOID_RDN_DUMMY_SIGNER","features":[70]},{"name":"szOID_RDN_TCG_PLATFORM_MANUFACTURER","features":[70]},{"name":"szOID_RDN_TCG_PLATFORM_MODEL","features":[70]},{"name":"szOID_RDN_TCG_PLATFORM_VERSION","features":[70]},{"name":"szOID_RDN_TPM_MANUFACTURER","features":[70]},{"name":"szOID_RDN_TPM_MODEL","features":[70]},{"name":"szOID_RDN_TPM_VERSION","features":[70]},{"name":"szOID_REASON_CODE_HOLD","features":[70]},{"name":"szOID_REGISTERED_ADDRESS","features":[70]},{"name":"szOID_REMOVE_CERTIFICATE","features":[70]},{"name":"szOID_RENEWAL_CERTIFICATE","features":[70]},{"name":"szOID_REQUEST_CLIENT_INFO","features":[70]},{"name":"szOID_REQUIRE_CERT_CHAIN_POLICY","features":[70]},{"name":"szOID_REVOKED_LIST_SIGNER","features":[70]},{"name":"szOID_RFC3161_counterSign","features":[70]},{"name":"szOID_RFC3161v21_counterSign","features":[70]},{"name":"szOID_RFC3161v21_thumbprints","features":[70]},{"name":"szOID_ROLE_OCCUPANT","features":[70]},{"name":"szOID_ROOT_LIST_SIGNER","features":[70]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[70]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[70]},{"name":"szOID_ROOT_PROGRAM_FLAGS","features":[70]},{"name":"szOID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[70]},{"name":"szOID_RSA","features":[70]},{"name":"szOID_RSAES_OAEP","features":[70]},{"name":"szOID_RSA_DES_EDE3_CBC","features":[70]},{"name":"szOID_RSA_DH","features":[70]},{"name":"szOID_RSA_ENCRYPT","features":[70]},{"name":"szOID_RSA_HASH","features":[70]},{"name":"szOID_RSA_MD2","features":[70]},{"name":"szOID_RSA_MD2RSA","features":[70]},{"name":"szOID_RSA_MD4","features":[70]},{"name":"szOID_RSA_MD4RSA","features":[70]},{"name":"szOID_RSA_MD5","features":[70]},{"name":"szOID_RSA_MD5RSA","features":[70]},{"name":"szOID_RSA_MGF1","features":[70]},{"name":"szOID_RSA_PSPECIFIED","features":[70]},{"name":"szOID_RSA_RC2CBC","features":[70]},{"name":"szOID_RSA_RC4","features":[70]},{"name":"szOID_RSA_RC5_CBCPad","features":[70]},{"name":"szOID_RSA_RSA","features":[70]},{"name":"szOID_RSA_SETOAEP_RSA","features":[70]},{"name":"szOID_RSA_SHA1RSA","features":[70]},{"name":"szOID_RSA_SHA256RSA","features":[70]},{"name":"szOID_RSA_SHA384RSA","features":[70]},{"name":"szOID_RSA_SHA512RSA","features":[70]},{"name":"szOID_RSA_SMIMECapabilities","features":[70]},{"name":"szOID_RSA_SMIMEalg","features":[70]},{"name":"szOID_RSA_SMIMEalgCMS3DESwrap","features":[70]},{"name":"szOID_RSA_SMIMEalgCMSRC2wrap","features":[70]},{"name":"szOID_RSA_SMIMEalgESDH","features":[70]},{"name":"szOID_RSA_SSA_PSS","features":[70]},{"name":"szOID_RSA_certExtensions","features":[70]},{"name":"szOID_RSA_challengePwd","features":[70]},{"name":"szOID_RSA_contentType","features":[70]},{"name":"szOID_RSA_counterSign","features":[70]},{"name":"szOID_RSA_data","features":[70]},{"name":"szOID_RSA_digestedData","features":[70]},{"name":"szOID_RSA_emailAddr","features":[70]},{"name":"szOID_RSA_encryptedData","features":[70]},{"name":"szOID_RSA_envelopedData","features":[70]},{"name":"szOID_RSA_extCertAttrs","features":[70]},{"name":"szOID_RSA_hashedData","features":[70]},{"name":"szOID_RSA_messageDigest","features":[70]},{"name":"szOID_RSA_preferSignedData","features":[70]},{"name":"szOID_RSA_signEnvData","features":[70]},{"name":"szOID_RSA_signedData","features":[70]},{"name":"szOID_RSA_signingTime","features":[70]},{"name":"szOID_RSA_unstructAddr","features":[70]},{"name":"szOID_RSA_unstructName","features":[70]},{"name":"szOID_SEARCH_GUIDE","features":[70]},{"name":"szOID_SEE_ALSO","features":[70]},{"name":"szOID_SERIALIZED","features":[70]},{"name":"szOID_SERVER_GATED_CRYPTO","features":[70]},{"name":"szOID_SGC_NETSCAPE","features":[70]},{"name":"szOID_SITE_PIN_RULES_FLAGS_ATTR","features":[70]},{"name":"szOID_SITE_PIN_RULES_INDEX_ATTR","features":[70]},{"name":"szOID_SORTED_CTL","features":[70]},{"name":"szOID_STATE_OR_PROVINCE_NAME","features":[70]},{"name":"szOID_STREET_ADDRESS","features":[70]},{"name":"szOID_SUBJECT_ALT_NAME","features":[70]},{"name":"szOID_SUBJECT_ALT_NAME2","features":[70]},{"name":"szOID_SUBJECT_DIR_ATTRS","features":[70]},{"name":"szOID_SUBJECT_INFO_ACCESS","features":[70]},{"name":"szOID_SUBJECT_KEY_IDENTIFIER","features":[70]},{"name":"szOID_SUPPORTED_APPLICATION_CONTEXT","features":[70]},{"name":"szOID_SUR_NAME","features":[70]},{"name":"szOID_SYNC_ROOT_CTL_EXT","features":[70]},{"name":"szOID_TELEPHONE_NUMBER","features":[70]},{"name":"szOID_TELETEXT_TERMINAL_IDENTIFIER","features":[70]},{"name":"szOID_TELEX_NUMBER","features":[70]},{"name":"szOID_TIMESTAMP_TOKEN","features":[70]},{"name":"szOID_TITLE","features":[70]},{"name":"szOID_TLS_FEATURES_EXT","features":[70]},{"name":"szOID_USER_CERTIFICATE","features":[70]},{"name":"szOID_USER_PASSWORD","features":[70]},{"name":"szOID_VERISIGN_BITSTRING_6_13","features":[70]},{"name":"szOID_VERISIGN_ISS_STRONG_CRYPTO","features":[70]},{"name":"szOID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[70]},{"name":"szOID_VERISIGN_PRIVATE_6_9","features":[70]},{"name":"szOID_WHQL_CRYPTO","features":[70]},{"name":"szOID_WINDOWS_KITS_SIGNER","features":[70]},{"name":"szOID_WINDOWS_RT_SIGNER","features":[70]},{"name":"szOID_WINDOWS_SOFTWARE_EXTENSION_SIGNER","features":[70]},{"name":"szOID_WINDOWS_STORE_SIGNER","features":[70]},{"name":"szOID_WINDOWS_TCB_SIGNER","features":[70]},{"name":"szOID_WINDOWS_THIRD_PARTY_COMPONENT_SIGNER","features":[70]},{"name":"szOID_X21_ADDRESS","features":[70]},{"name":"szOID_X957","features":[70]},{"name":"szOID_X957_DSA","features":[70]},{"name":"szOID_X957_SHA1DSA","features":[70]},{"name":"szOID_YESNO_TRUST_ATTR","features":[70]},{"name":"szPRIV_KEY_CACHE_MAX_ITEMS","features":[70]},{"name":"szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS","features":[70]},{"name":"szROOT_STORE_FILE","features":[70]},{"name":"szUSER_KEYEXCHANGE_CERT_PREFIX","features":[70]},{"name":"szUSER_KEYEXCHANGE_PRIVATE_KEY_PREFIX","features":[70]},{"name":"szUSER_KEYEXCHANGE_PUBLIC_KEY_PREFIX","features":[70]},{"name":"szUSER_SIGNATURE_CERT_PREFIX","features":[70]},{"name":"szUSER_SIGNATURE_PRIVATE_KEY_PREFIX","features":[70]},{"name":"szUSER_SIGNATURE_PUBLIC_KEY_PREFIX","features":[70]},{"name":"sz_CERT_STORE_PROV_COLLECTION","features":[70]},{"name":"sz_CERT_STORE_PROV_FILENAME","features":[70]},{"name":"sz_CERT_STORE_PROV_FILENAME_W","features":[70]},{"name":"sz_CERT_STORE_PROV_LDAP","features":[70]},{"name":"sz_CERT_STORE_PROV_LDAP_W","features":[70]},{"name":"sz_CERT_STORE_PROV_MEMORY","features":[70]},{"name":"sz_CERT_STORE_PROV_PHYSICAL","features":[70]},{"name":"sz_CERT_STORE_PROV_PHYSICAL_W","features":[70]},{"name":"sz_CERT_STORE_PROV_PKCS12","features":[70]},{"name":"sz_CERT_STORE_PROV_PKCS7","features":[70]},{"name":"sz_CERT_STORE_PROV_SERIALIZED","features":[70]},{"name":"sz_CERT_STORE_PROV_SMART_CARD","features":[70]},{"name":"sz_CERT_STORE_PROV_SMART_CARD_W","features":[70]},{"name":"sz_CERT_STORE_PROV_SYSTEM","features":[70]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY","features":[70]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[70]},{"name":"sz_CERT_STORE_PROV_SYSTEM_W","features":[70]},{"name":"wszCARD_USER_ADMIN","features":[70]},{"name":"wszCARD_USER_EVERYONE","features":[70]},{"name":"wszCARD_USER_USER","features":[70]},{"name":"wszURI_CANONICALIZATION_C14N","features":[70]},{"name":"wszURI_CANONICALIZATION_C14NC","features":[70]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14N","features":[70]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14NC","features":[70]},{"name":"wszURI_NTDS_OBJECTSID_PREFIX","features":[70]},{"name":"wszURI_TRANSFORM_XPATH","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_BASE64","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_DSA_SHA1","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA1","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA256","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA384","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA512","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA1","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA256","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA384","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA512","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA1","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA256","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA384","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA512","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_SHA1","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_SHA256","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_SHA384","features":[70]},{"name":"wszURI_XMLNS_DIGSIG_SHA512","features":[70]},{"name":"wszURI_XMLNS_TRANSFORM_BASE64","features":[70]},{"name":"wszURI_XMLNS_TRANSFORM_ENVELOPED","features":[70]},{"name":"wszXMLNS_DIGSIG","features":[70]},{"name":"wszXMLNS_DIGSIG_Id","features":[70]},{"name":"wszXMLNS_DIGSIG_SignatureProperties","features":[70]}],"490":[{"name":"CATALOG_INFO","features":[124]},{"name":"CRYPTCATATTRIBUTE","features":[124]},{"name":"CRYPTCATCDF","features":[3,124]},{"name":"CRYPTCATMEMBER","features":[3,124,125]},{"name":"CRYPTCATSTORE","features":[3,124]},{"name":"CRYPTCAT_ADDCATALOG_HARDLINK","features":[124]},{"name":"CRYPTCAT_ADDCATALOG_NONE","features":[124]},{"name":"CRYPTCAT_ATTR_AUTHENTICATED","features":[124]},{"name":"CRYPTCAT_ATTR_DATAASCII","features":[124]},{"name":"CRYPTCAT_ATTR_DATABASE64","features":[124]},{"name":"CRYPTCAT_ATTR_DATAREPLACE","features":[124]},{"name":"CRYPTCAT_ATTR_NAMEASCII","features":[124]},{"name":"CRYPTCAT_ATTR_NAMEOBJID","features":[124]},{"name":"CRYPTCAT_ATTR_NO_AUTO_COMPAT_ENTRY","features":[124]},{"name":"CRYPTCAT_ATTR_UNAUTHENTICATED","features":[124]},{"name":"CRYPTCAT_E_AREA_ATTRIBUTE","features":[124]},{"name":"CRYPTCAT_E_AREA_HEADER","features":[124]},{"name":"CRYPTCAT_E_AREA_MEMBER","features":[124]},{"name":"CRYPTCAT_E_CDF_ATTR_TOOFEWVALUES","features":[124]},{"name":"CRYPTCAT_E_CDF_ATTR_TYPECOMBO","features":[124]},{"name":"CRYPTCAT_E_CDF_BAD_GUID_CONV","features":[124]},{"name":"CRYPTCAT_E_CDF_DUPLICATE","features":[124]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILENOTFOUND","features":[124]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILE_PATH","features":[124]},{"name":"CRYPTCAT_E_CDF_MEMBER_INDIRECTDATA","features":[124]},{"name":"CRYPTCAT_E_CDF_TAGNOTFOUND","features":[124]},{"name":"CRYPTCAT_E_CDF_UNSUPPORTED","features":[124]},{"name":"CRYPTCAT_FILEEXT","features":[124]},{"name":"CRYPTCAT_MAX_MEMBERTAG","features":[124]},{"name":"CRYPTCAT_MEMBER_SORTED","features":[124]},{"name":"CRYPTCAT_OPEN_ALWAYS","features":[124]},{"name":"CRYPTCAT_OPEN_CREATENEW","features":[124]},{"name":"CRYPTCAT_OPEN_EXCLUDE_PAGE_HASHES","features":[124]},{"name":"CRYPTCAT_OPEN_EXISTING","features":[124]},{"name":"CRYPTCAT_OPEN_FLAGS","features":[124]},{"name":"CRYPTCAT_OPEN_FLAGS_MASK","features":[124]},{"name":"CRYPTCAT_OPEN_INCLUDE_PAGE_HASHES","features":[124]},{"name":"CRYPTCAT_OPEN_NO_CONTENT_HCRYPTMSG","features":[124]},{"name":"CRYPTCAT_OPEN_SORTED","features":[124]},{"name":"CRYPTCAT_OPEN_VERIFYSIGHASH","features":[124]},{"name":"CRYPTCAT_VERSION","features":[124]},{"name":"CRYPTCAT_VERSION_1","features":[124]},{"name":"CRYPTCAT_VERSION_2","features":[124]},{"name":"CryptCATAdminAcquireContext","features":[3,124]},{"name":"CryptCATAdminAcquireContext2","features":[3,124]},{"name":"CryptCATAdminAddCatalog","features":[124]},{"name":"CryptCATAdminCalcHashFromFileHandle","features":[3,124]},{"name":"CryptCATAdminCalcHashFromFileHandle2","features":[3,124]},{"name":"CryptCATAdminEnumCatalogFromHash","features":[124]},{"name":"CryptCATAdminPauseServiceForBackup","features":[3,124]},{"name":"CryptCATAdminReleaseCatalogContext","features":[3,124]},{"name":"CryptCATAdminReleaseContext","features":[3,124]},{"name":"CryptCATAdminRemoveCatalog","features":[3,124]},{"name":"CryptCATAdminResolveCatalogPath","features":[3,124]},{"name":"CryptCATAllocSortedMemberInfo","features":[3,124,125]},{"name":"CryptCATCDFClose","features":[3,124]},{"name":"CryptCATCDFEnumAttributes","features":[3,124,125]},{"name":"CryptCATCDFEnumCatAttributes","features":[3,124]},{"name":"CryptCATCDFEnumMembers","features":[3,124,125]},{"name":"CryptCATCDFOpen","features":[3,124]},{"name":"CryptCATCatalogInfoFromContext","features":[3,124]},{"name":"CryptCATClose","features":[3,124]},{"name":"CryptCATEnumerateAttr","features":[3,124,125]},{"name":"CryptCATEnumerateCatAttr","features":[3,124]},{"name":"CryptCATEnumerateMember","features":[3,124,125]},{"name":"CryptCATFreeSortedMemberInfo","features":[3,124,125]},{"name":"CryptCATGetAttrInfo","features":[3,124,125]},{"name":"CryptCATGetCatAttrInfo","features":[3,124]},{"name":"CryptCATGetMemberInfo","features":[3,124,125]},{"name":"CryptCATHandleFromStore","features":[3,124]},{"name":"CryptCATOpen","features":[3,124]},{"name":"CryptCATPersistStore","features":[3,124]},{"name":"CryptCATPutAttrInfo","features":[3,124,125]},{"name":"CryptCATPutCatAttrInfo","features":[3,124]},{"name":"CryptCATPutMemberInfo","features":[3,124,125]},{"name":"CryptCATStoreFromHandle","features":[3,124]},{"name":"IsCatalogFile","features":[3,124]},{"name":"MS_ADDINFO_CATALOGMEMBER","features":[3,124,125]},{"name":"PFN_CDF_PARSE_ERROR_CALLBACK","features":[124]},{"name":"szOID_CATALOG_LIST","features":[124]},{"name":"szOID_CATALOG_LIST_MEMBER","features":[124]},{"name":"szOID_CATALOG_LIST_MEMBER2","features":[124]}],"491":[{"name":"ADDED_CERT_TYPE","features":[126]},{"name":"AlgorithmFlags","features":[126]},{"name":"AlgorithmFlagsNone","features":[126]},{"name":"AlgorithmFlagsWrap","features":[126]},{"name":"AlgorithmOperationFlags","features":[126]},{"name":"AlgorithmType","features":[126]},{"name":"AllowNoOutstandingRequest","features":[126]},{"name":"AllowNone","features":[126]},{"name":"AllowUntrustedCertificate","features":[126]},{"name":"AllowUntrustedRoot","features":[126]},{"name":"AllowedKeySignature","features":[126]},{"name":"AllowedNullSignature","features":[126]},{"name":"AlternativeNameType","features":[126]},{"name":"CAIF_DSENTRY","features":[126]},{"name":"CAIF_LOCAL","features":[126]},{"name":"CAIF_REGISTRY","features":[126]},{"name":"CAIF_REGISTRYPARENT","features":[126]},{"name":"CAIF_SHAREDFOLDERENTRY","features":[126]},{"name":"CAINFO","features":[126]},{"name":"CAPATHLENGTH_INFINITE","features":[126]},{"name":"CAPropCertificate","features":[126]},{"name":"CAPropCertificateTypes","features":[126]},{"name":"CAPropCommonName","features":[126]},{"name":"CAPropDNSName","features":[126]},{"name":"CAPropDescription","features":[126]},{"name":"CAPropDistinguishedName","features":[126]},{"name":"CAPropRenewalOnly","features":[126]},{"name":"CAPropSanitizedName","features":[126]},{"name":"CAPropSanitizedShortName","features":[126]},{"name":"CAPropSecurity","features":[126]},{"name":"CAPropSiteName","features":[126]},{"name":"CAPropWebServers","features":[126]},{"name":"CA_ACCESS_ADMIN","features":[126]},{"name":"CA_ACCESS_AUDITOR","features":[126]},{"name":"CA_ACCESS_ENROLL","features":[126]},{"name":"CA_ACCESS_MASKROLES","features":[126]},{"name":"CA_ACCESS_OFFICER","features":[126]},{"name":"CA_ACCESS_OPERATOR","features":[126]},{"name":"CA_ACCESS_READ","features":[126]},{"name":"CA_CRL_BASE","features":[126]},{"name":"CA_CRL_DELTA","features":[126]},{"name":"CA_CRL_REPUBLISH","features":[126]},{"name":"CA_DISP_ERROR","features":[126]},{"name":"CA_DISP_INCOMPLETE","features":[126]},{"name":"CA_DISP_INVALID","features":[126]},{"name":"CA_DISP_REVOKED","features":[126]},{"name":"CA_DISP_UNDER_SUBMISSION","features":[126]},{"name":"CA_DISP_VALID","features":[126]},{"name":"CAlternativeName","features":[126]},{"name":"CAlternativeNames","features":[126]},{"name":"CBinaryConverter","features":[126]},{"name":"CCLOCKSKEWMINUTESDEFAULT","features":[126]},{"name":"CC_DEFAULTCONFIG","features":[126]},{"name":"CC_FIRSTCONFIG","features":[126]},{"name":"CC_LOCALACTIVECONFIG","features":[126]},{"name":"CC_LOCALCONFIG","features":[126]},{"name":"CC_UIPICKCONFIG","features":[126]},{"name":"CC_UIPICKCONFIGSKIPLOCALCA","features":[126]},{"name":"CCertAdmin","features":[126]},{"name":"CCertConfig","features":[126]},{"name":"CCertEncodeAltName","features":[126]},{"name":"CCertEncodeBitString","features":[126]},{"name":"CCertEncodeCRLDistInfo","features":[126]},{"name":"CCertEncodeDateArray","features":[126]},{"name":"CCertEncodeLongArray","features":[126]},{"name":"CCertEncodeStringArray","features":[126]},{"name":"CCertGetConfig","features":[126]},{"name":"CCertProperties","features":[126]},{"name":"CCertProperty","features":[126]},{"name":"CCertPropertyArchived","features":[126]},{"name":"CCertPropertyArchivedKeyHash","features":[126]},{"name":"CCertPropertyAutoEnroll","features":[126]},{"name":"CCertPropertyBackedUp","features":[126]},{"name":"CCertPropertyDescription","features":[126]},{"name":"CCertPropertyEnrollment","features":[126]},{"name":"CCertPropertyEnrollmentPolicyServer","features":[126]},{"name":"CCertPropertyFriendlyName","features":[126]},{"name":"CCertPropertyKeyProvInfo","features":[126]},{"name":"CCertPropertyRenewal","features":[126]},{"name":"CCertPropertyRequestOriginator","features":[126]},{"name":"CCertPropertySHA1Hash","features":[126]},{"name":"CCertRequest","features":[126]},{"name":"CCertServerExit","features":[126]},{"name":"CCertServerPolicy","features":[126]},{"name":"CCertView","features":[126]},{"name":"CCertificateAttestationChallenge","features":[126]},{"name":"CCertificatePolicies","features":[126]},{"name":"CCertificatePolicy","features":[126]},{"name":"CCryptAttribute","features":[126]},{"name":"CCryptAttributes","features":[126]},{"name":"CCspInformation","features":[126]},{"name":"CCspInformations","features":[126]},{"name":"CCspStatus","features":[126]},{"name":"CDR_EXPIRED","features":[126]},{"name":"CDR_REQUEST_LAST_CHANGED","features":[126]},{"name":"CERTADMIN_GET_ROLES_FLAGS","features":[126]},{"name":"CERTENROLL_INDEX_BASE","features":[126]},{"name":"CERTENROLL_OBJECTID","features":[126]},{"name":"CERTENROLL_PROPERTYID","features":[126]},{"name":"CERTTRANSBLOB","features":[126]},{"name":"CERTVIEWRESTRICTION","features":[126]},{"name":"CERT_ALT_NAME","features":[126]},{"name":"CERT_ALT_NAME_DIRECTORY_NAME","features":[126]},{"name":"CERT_ALT_NAME_DNS_NAME","features":[126]},{"name":"CERT_ALT_NAME_IP_ADDRESS","features":[126]},{"name":"CERT_ALT_NAME_OTHER_NAME","features":[126]},{"name":"CERT_ALT_NAME_REGISTERED_ID","features":[126]},{"name":"CERT_ALT_NAME_RFC822_NAME","features":[126]},{"name":"CERT_ALT_NAME_URL","features":[126]},{"name":"CERT_CREATE_REQUEST_FLAGS","features":[126]},{"name":"CERT_DELETE_ROW_FLAGS","features":[126]},{"name":"CERT_EXIT_EVENT_MASK","features":[126]},{"name":"CERT_GET_CONFIG_FLAGS","features":[126]},{"name":"CERT_IMPORT_FLAGS","features":[126]},{"name":"CERT_PROPERTY_TYPE","features":[126]},{"name":"CERT_REQUEST_OUT_TYPE","features":[126]},{"name":"CERT_VIEW_COLUMN_INDEX","features":[126]},{"name":"CERT_VIEW_SEEK_OPERATOR_FLAGS","features":[126]},{"name":"CEnroll","features":[126]},{"name":"CEnroll2","features":[126]},{"name":"CMM_READONLY","features":[126]},{"name":"CMM_REFRESHONLY","features":[126]},{"name":"CObjectId","features":[126]},{"name":"CObjectIds","features":[126]},{"name":"CPF_BADURL_ERROR","features":[126]},{"name":"CPF_BASE","features":[126]},{"name":"CPF_CASTORE_ERROR","features":[126]},{"name":"CPF_COMPLETE","features":[126]},{"name":"CPF_DELTA","features":[126]},{"name":"CPF_FILE_ERROR","features":[126]},{"name":"CPF_FTP_ERROR","features":[126]},{"name":"CPF_HTTP_ERROR","features":[126]},{"name":"CPF_LDAP_ERROR","features":[126]},{"name":"CPF_MANUAL","features":[126]},{"name":"CPF_POSTPONED_BASE_FILE_ERROR","features":[126]},{"name":"CPF_POSTPONED_BASE_LDAP_ERROR","features":[126]},{"name":"CPF_SHADOW","features":[126]},{"name":"CPF_SIGNATURE_ERROR","features":[126]},{"name":"CPolicyQualifier","features":[126]},{"name":"CPolicyQualifiers","features":[126]},{"name":"CRLF_ALLOW_REQUEST_ATTRIBUTE_SUBJECT","features":[126]},{"name":"CRLF_BUILD_ROOTCA_CRLENTRIES_BASEDONKEY","features":[126]},{"name":"CRLF_CRLNUMBER_CRITICAL","features":[126]},{"name":"CRLF_DELETE_EXPIRED_CRLS","features":[126]},{"name":"CRLF_DELTA_USE_OLDEST_UNEXPIRED_BASE","features":[126]},{"name":"CRLF_DISABLE_CHAIN_VERIFICATION","features":[126]},{"name":"CRLF_DISABLE_RDN_REORDER","features":[126]},{"name":"CRLF_DISABLE_ROOT_CROSS_CERTS","features":[126]},{"name":"CRLF_ENFORCE_ENROLLMENT_AGENT","features":[126]},{"name":"CRLF_IGNORE_CROSS_CERT_TRUST_ERROR","features":[126]},{"name":"CRLF_IGNORE_INVALID_POLICIES","features":[126]},{"name":"CRLF_IGNORE_UNKNOWN_CMC_ATTRIBUTES","features":[126]},{"name":"CRLF_LOG_FULL_RESPONSE","features":[126]},{"name":"CRLF_PRESERVE_EXPIRED_CA_CERTS","features":[126]},{"name":"CRLF_PRESERVE_REVOKED_CA_CERTS","features":[126]},{"name":"CRLF_PUBLISH_EXPIRED_CERT_CRLS","features":[126]},{"name":"CRLF_REBUILD_MODIFIED_SUBJECT_ONLY","features":[126]},{"name":"CRLF_REVCHECK_IGNORE_NOREVCHECK","features":[126]},{"name":"CRLF_REVCHECK_IGNORE_OFFLINE","features":[126]},{"name":"CRLF_SAVE_FAILED_CERTS","features":[126]},{"name":"CRLF_USE_CROSS_CERT_TEMPLATE","features":[126]},{"name":"CRLF_USE_XCHG_CERT_TEMPLATE","features":[126]},{"name":"CRLRevocationReason","features":[126]},{"name":"CRYPT_ENUM_ALL_PROVIDERS","features":[126]},{"name":"CR_DISP","features":[126]},{"name":"CR_DISP_DENIED","features":[126]},{"name":"CR_DISP_ERROR","features":[126]},{"name":"CR_DISP_INCOMPLETE","features":[126]},{"name":"CR_DISP_ISSUED","features":[126]},{"name":"CR_DISP_ISSUED_OUT_OF_BAND","features":[126]},{"name":"CR_DISP_REVOKED","features":[126]},{"name":"CR_DISP_UNDER_SUBMISSION","features":[126]},{"name":"CR_FLG_CACROSSCERT","features":[126]},{"name":"CR_FLG_CAXCHGCERT","features":[126]},{"name":"CR_FLG_CHALLENGEPENDING","features":[126]},{"name":"CR_FLG_CHALLENGESATISFIED","features":[126]},{"name":"CR_FLG_DEFINEDCACERT","features":[126]},{"name":"CR_FLG_ENFORCEUTF8","features":[126]},{"name":"CR_FLG_ENROLLONBEHALFOF","features":[126]},{"name":"CR_FLG_FORCETELETEX","features":[126]},{"name":"CR_FLG_FORCEUTF8","features":[126]},{"name":"CR_FLG_PUBLISHERROR","features":[126]},{"name":"CR_FLG_RENEWAL","features":[126]},{"name":"CR_FLG_SUBJECTUNMODIFIED","features":[126]},{"name":"CR_FLG_TRUSTEKCERT","features":[126]},{"name":"CR_FLG_TRUSTEKKEY","features":[126]},{"name":"CR_FLG_TRUSTONUSE","features":[126]},{"name":"CR_FLG_VALIDENCRYPTEDKEYHASH","features":[126]},{"name":"CR_GEMT_DEFAULT","features":[126]},{"name":"CR_GEMT_HRESULT_STRING","features":[126]},{"name":"CR_GEMT_HTTP_ERROR","features":[126]},{"name":"CR_IN_BASE64","features":[126]},{"name":"CR_IN_BASE64HEADER","features":[126]},{"name":"CR_IN_BINARY","features":[126]},{"name":"CR_IN_CERTIFICATETRANSPARENCY","features":[126]},{"name":"CR_IN_CHALLENGERESPONSE","features":[126]},{"name":"CR_IN_CLIENTIDNONE","features":[126]},{"name":"CR_IN_CMC","features":[126]},{"name":"CR_IN_CONNECTONLY","features":[126]},{"name":"CR_IN_CRLS","features":[126]},{"name":"CR_IN_ENCODEANY","features":[126]},{"name":"CR_IN_ENCODEMASK","features":[126]},{"name":"CR_IN_FORMATANY","features":[126]},{"name":"CR_IN_FORMATMASK","features":[126]},{"name":"CR_IN_FULLRESPONSE","features":[126]},{"name":"CR_IN_HTTP","features":[126]},{"name":"CR_IN_KEYGEN","features":[126]},{"name":"CR_IN_MACHINE","features":[126]},{"name":"CR_IN_PKCS10","features":[126]},{"name":"CR_IN_PKCS7","features":[126]},{"name":"CR_IN_RETURNCHALLENGE","features":[126]},{"name":"CR_IN_ROBO","features":[126]},{"name":"CR_IN_RPC","features":[126]},{"name":"CR_IN_SCEP","features":[126]},{"name":"CR_IN_SCEPPOST","features":[126]},{"name":"CR_IN_SIGNEDCERTIFICATETIMESTAMPLIST","features":[126]},{"name":"CR_OUT_BASE64","features":[126]},{"name":"CR_OUT_BASE64HEADER","features":[126]},{"name":"CR_OUT_BASE64REQUESTHEADER","features":[126]},{"name":"CR_OUT_BASE64X509CRLHEADER","features":[126]},{"name":"CR_OUT_BINARY","features":[126]},{"name":"CR_OUT_CHAIN","features":[126]},{"name":"CR_OUT_CRLS","features":[126]},{"name":"CR_OUT_ENCODEMASK","features":[126]},{"name":"CR_OUT_HEX","features":[126]},{"name":"CR_OUT_HEXADDR","features":[126]},{"name":"CR_OUT_HEXASCII","features":[126]},{"name":"CR_OUT_HEXASCIIADDR","features":[126]},{"name":"CR_OUT_HEXRAW","features":[126]},{"name":"CR_OUT_NOCR","features":[126]},{"name":"CR_OUT_NOCRLF","features":[126]},{"name":"CR_PROP_ADVANCEDSERVER","features":[126]},{"name":"CR_PROP_BASECRL","features":[126]},{"name":"CR_PROP_BASECRLPUBLISHSTATUS","features":[126]},{"name":"CR_PROP_CABACKWARDCROSSCERT","features":[126]},{"name":"CR_PROP_CABACKWARDCROSSCERTSTATE","features":[126]},{"name":"CR_PROP_CACERTSTATE","features":[126]},{"name":"CR_PROP_CACERTSTATUSCODE","features":[126]},{"name":"CR_PROP_CACERTVERSION","features":[126]},{"name":"CR_PROP_CAFORWARDCROSSCERT","features":[126]},{"name":"CR_PROP_CAFORWARDCROSSCERTSTATE","features":[126]},{"name":"CR_PROP_CANAME","features":[126]},{"name":"CR_PROP_CAPROPIDMAX","features":[126]},{"name":"CR_PROP_CASIGCERT","features":[126]},{"name":"CR_PROP_CASIGCERTCHAIN","features":[126]},{"name":"CR_PROP_CASIGCERTCOUNT","features":[126]},{"name":"CR_PROP_CASIGCERTCRLCHAIN","features":[126]},{"name":"CR_PROP_CATYPE","features":[126]},{"name":"CR_PROP_CAXCHGCERT","features":[126]},{"name":"CR_PROP_CAXCHGCERTCHAIN","features":[126]},{"name":"CR_PROP_CAXCHGCERTCOUNT","features":[126]},{"name":"CR_PROP_CAXCHGCERTCRLCHAIN","features":[126]},{"name":"CR_PROP_CERTAIAOCSPURLS","features":[126]},{"name":"CR_PROP_CERTAIAURLS","features":[126]},{"name":"CR_PROP_CERTCDPURLS","features":[126]},{"name":"CR_PROP_CRLSTATE","features":[126]},{"name":"CR_PROP_DELTACRL","features":[126]},{"name":"CR_PROP_DELTACRLPUBLISHSTATUS","features":[126]},{"name":"CR_PROP_DNSNAME","features":[126]},{"name":"CR_PROP_EXITCOUNT","features":[126]},{"name":"CR_PROP_EXITDESCRIPTION","features":[126]},{"name":"CR_PROP_FILEVERSION","features":[126]},{"name":"CR_PROP_KRACERT","features":[126]},{"name":"CR_PROP_KRACERTCOUNT","features":[126]},{"name":"CR_PROP_KRACERTSTATE","features":[126]},{"name":"CR_PROP_KRACERTUSEDCOUNT","features":[126]},{"name":"CR_PROP_LOCALENAME","features":[126]},{"name":"CR_PROP_NONE","features":[126]},{"name":"CR_PROP_PARENTCA","features":[126]},{"name":"CR_PROP_POLICYDESCRIPTION","features":[126]},{"name":"CR_PROP_PRODUCTVERSION","features":[126]},{"name":"CR_PROP_ROLESEPARATIONENABLED","features":[126]},{"name":"CR_PROP_SANITIZEDCANAME","features":[126]},{"name":"CR_PROP_SANITIZEDCASHORTNAME","features":[126]},{"name":"CR_PROP_SCEPMAX","features":[126]},{"name":"CR_PROP_SCEPMIN","features":[126]},{"name":"CR_PROP_SCEPSERVERCAPABILITIES","features":[126]},{"name":"CR_PROP_SCEPSERVERCERTS","features":[126]},{"name":"CR_PROP_SCEPSERVERCERTSCHAIN","features":[126]},{"name":"CR_PROP_SHAREDFOLDER","features":[126]},{"name":"CR_PROP_SUBJECTTEMPLATE_OIDS","features":[126]},{"name":"CR_PROP_TEMPLATES","features":[126]},{"name":"CSBACKUP_DISABLE_INCREMENTAL","features":[126]},{"name":"CSBACKUP_TYPE","features":[126]},{"name":"CSBACKUP_TYPE_FULL","features":[126]},{"name":"CSBACKUP_TYPE_LOGS_ONLY","features":[126]},{"name":"CSBACKUP_TYPE_MASK","features":[126]},{"name":"CSBFT_DATABASE_DIRECTORY","features":[126]},{"name":"CSBFT_DIRECTORY","features":[126]},{"name":"CSBFT_LOG_DIRECTORY","features":[126]},{"name":"CSCONTROL_RESTART","features":[126]},{"name":"CSCONTROL_SHUTDOWN","features":[126]},{"name":"CSCONTROL_SUSPEND","features":[126]},{"name":"CSEDB_RSTMAPW","features":[126]},{"name":"CSRESTORE_TYPE_CATCHUP","features":[126]},{"name":"CSRESTORE_TYPE_FULL","features":[126]},{"name":"CSRESTORE_TYPE_MASK","features":[126]},{"name":"CSRESTORE_TYPE_ONLINE","features":[126]},{"name":"CSURL_ADDTOCERTCDP","features":[126]},{"name":"CSURL_ADDTOCERTOCSP","features":[126]},{"name":"CSURL_ADDTOCRLCDP","features":[126]},{"name":"CSURL_ADDTOFRESHESTCRL","features":[126]},{"name":"CSURL_ADDTOIDP","features":[126]},{"name":"CSURL_PUBLISHRETRY","features":[126]},{"name":"CSURL_SERVERPUBLISH","features":[126]},{"name":"CSURL_SERVERPUBLISHDELTA","features":[126]},{"name":"CSVER_MAJOR","features":[126]},{"name":"CSVER_MAJOR_LONGHORN","features":[126]},{"name":"CSVER_MAJOR_THRESHOLD","features":[126]},{"name":"CSVER_MAJOR_WHISTLER","features":[126]},{"name":"CSVER_MAJOR_WIN2K","features":[126]},{"name":"CSVER_MAJOR_WIN7","features":[126]},{"name":"CSVER_MAJOR_WIN8","features":[126]},{"name":"CSVER_MAJOR_WINBLUE","features":[126]},{"name":"CSVER_MINOR","features":[126]},{"name":"CSVER_MINOR_LONGHORN_BETA1","features":[126]},{"name":"CSVER_MINOR_THRESHOLD","features":[126]},{"name":"CSVER_MINOR_WHISTLER_BETA2","features":[126]},{"name":"CSVER_MINOR_WHISTLER_BETA3","features":[126]},{"name":"CSVER_MINOR_WIN2K","features":[126]},{"name":"CSVER_MINOR_WIN7","features":[126]},{"name":"CSVER_MINOR_WIN8","features":[126]},{"name":"CSVER_MINOR_WINBLUE","features":[126]},{"name":"CSignerCertificate","features":[126]},{"name":"CSmimeCapabilities","features":[126]},{"name":"CSmimeCapability","features":[126]},{"name":"CVIEWAGEMINUTESDEFAULT","features":[126]},{"name":"CVRC_COLUMN","features":[126]},{"name":"CVRC_COLUMN_MASK","features":[126]},{"name":"CVRC_COLUMN_RESULT","features":[126]},{"name":"CVRC_COLUMN_SCHEMA","features":[126]},{"name":"CVRC_COLUMN_VALUE","features":[126]},{"name":"CVRC_TABLE","features":[126]},{"name":"CVRC_TABLE_ATTRIBUTES","features":[126]},{"name":"CVRC_TABLE_CRL","features":[126]},{"name":"CVRC_TABLE_EXTENSIONS","features":[126]},{"name":"CVRC_TABLE_MASK","features":[126]},{"name":"CVRC_TABLE_REQCERT","features":[126]},{"name":"CVRC_TABLE_SHIFT","features":[126]},{"name":"CVR_SEEK_EQ","features":[126]},{"name":"CVR_SEEK_GE","features":[126]},{"name":"CVR_SEEK_GT","features":[126]},{"name":"CVR_SEEK_LE","features":[126]},{"name":"CVR_SEEK_LT","features":[126]},{"name":"CVR_SEEK_MASK","features":[126]},{"name":"CVR_SEEK_NODELTA","features":[126]},{"name":"CVR_SEEK_NONE","features":[126]},{"name":"CVR_SORT_ASCEND","features":[126]},{"name":"CVR_SORT_DESCEND","features":[126]},{"name":"CVR_SORT_NONE","features":[126]},{"name":"CV_COLUMN_ATTRIBUTE_DEFAULT","features":[126]},{"name":"CV_COLUMN_CRL_DEFAULT","features":[126]},{"name":"CV_COLUMN_EXTENSION_DEFAULT","features":[126]},{"name":"CV_COLUMN_LOG_DEFAULT","features":[126]},{"name":"CV_COLUMN_LOG_FAILED_DEFAULT","features":[126]},{"name":"CV_COLUMN_LOG_REVOKED_DEFAULT","features":[126]},{"name":"CV_COLUMN_QUEUE_DEFAULT","features":[126]},{"name":"CV_OUT_BASE64","features":[126]},{"name":"CV_OUT_BASE64HEADER","features":[126]},{"name":"CV_OUT_BASE64REQUESTHEADER","features":[126]},{"name":"CV_OUT_BASE64X509CRLHEADER","features":[126]},{"name":"CV_OUT_BINARY","features":[126]},{"name":"CV_OUT_ENCODEMASK","features":[126]},{"name":"CV_OUT_HEX","features":[126]},{"name":"CV_OUT_HEXADDR","features":[126]},{"name":"CV_OUT_HEXASCII","features":[126]},{"name":"CV_OUT_HEXASCIIADDR","features":[126]},{"name":"CV_OUT_HEXRAW","features":[126]},{"name":"CV_OUT_NOCR","features":[126]},{"name":"CV_OUT_NOCRLF","features":[126]},{"name":"CX500DistinguishedName","features":[126]},{"name":"CX509Attribute","features":[126]},{"name":"CX509AttributeArchiveKey","features":[126]},{"name":"CX509AttributeArchiveKeyHash","features":[126]},{"name":"CX509AttributeClientId","features":[126]},{"name":"CX509AttributeCspProvider","features":[126]},{"name":"CX509AttributeExtensions","features":[126]},{"name":"CX509AttributeOSVersion","features":[126]},{"name":"CX509AttributeRenewalCertificate","features":[126]},{"name":"CX509Attributes","features":[126]},{"name":"CX509CertificateRequestCertificate","features":[126]},{"name":"CX509CertificateRequestCmc","features":[126]},{"name":"CX509CertificateRequestPkcs10","features":[126]},{"name":"CX509CertificateRequestPkcs7","features":[126]},{"name":"CX509CertificateRevocationList","features":[126]},{"name":"CX509CertificateRevocationListEntries","features":[126]},{"name":"CX509CertificateRevocationListEntry","features":[126]},{"name":"CX509CertificateTemplateADWritable","features":[126]},{"name":"CX509EndorsementKey","features":[126]},{"name":"CX509Enrollment","features":[126]},{"name":"CX509EnrollmentHelper","features":[126]},{"name":"CX509EnrollmentPolicyActiveDirectory","features":[126]},{"name":"CX509EnrollmentPolicyWebService","features":[126]},{"name":"CX509EnrollmentWebClassFactory","features":[126]},{"name":"CX509Extension","features":[126]},{"name":"CX509ExtensionAlternativeNames","features":[126]},{"name":"CX509ExtensionAuthorityKeyIdentifier","features":[126]},{"name":"CX509ExtensionBasicConstraints","features":[126]},{"name":"CX509ExtensionCertificatePolicies","features":[126]},{"name":"CX509ExtensionEnhancedKeyUsage","features":[126]},{"name":"CX509ExtensionKeyUsage","features":[126]},{"name":"CX509ExtensionMSApplicationPolicies","features":[126]},{"name":"CX509ExtensionSmimeCapabilities","features":[126]},{"name":"CX509ExtensionSubjectKeyIdentifier","features":[126]},{"name":"CX509ExtensionTemplate","features":[126]},{"name":"CX509ExtensionTemplateName","features":[126]},{"name":"CX509Extensions","features":[126]},{"name":"CX509MachineEnrollmentFactory","features":[126]},{"name":"CX509NameValuePair","features":[126]},{"name":"CX509PolicyServerListManager","features":[126]},{"name":"CX509PolicyServerUrl","features":[126]},{"name":"CX509PrivateKey","features":[126]},{"name":"CX509PublicKey","features":[126]},{"name":"CX509SCEPEnrollment","features":[126]},{"name":"CX509SCEPEnrollmentHelper","features":[126]},{"name":"CertSrvBackupClose","features":[126]},{"name":"CertSrvBackupEnd","features":[126]},{"name":"CertSrvBackupFree","features":[126]},{"name":"CertSrvBackupGetBackupLogsW","features":[126]},{"name":"CertSrvBackupGetDatabaseNamesW","features":[126]},{"name":"CertSrvBackupGetDynamicFileListW","features":[126]},{"name":"CertSrvBackupOpenFileW","features":[126]},{"name":"CertSrvBackupPrepareW","features":[126]},{"name":"CertSrvBackupRead","features":[126]},{"name":"CertSrvBackupTruncateLogs","features":[126]},{"name":"CertSrvIsServerOnlineW","features":[3,126]},{"name":"CertSrvRestoreEnd","features":[126]},{"name":"CertSrvRestoreGetDatabaseLocationsW","features":[126]},{"name":"CertSrvRestorePrepareW","features":[126]},{"name":"CertSrvRestoreRegisterComplete","features":[126]},{"name":"CertSrvRestoreRegisterThroughFile","features":[126]},{"name":"CertSrvRestoreRegisterW","features":[126]},{"name":"CertSrvServerControlW","features":[126]},{"name":"ClientIdAutoEnroll","features":[126]},{"name":"ClientIdAutoEnroll2003","features":[126]},{"name":"ClientIdCertReq","features":[126]},{"name":"ClientIdCertReq2003","features":[126]},{"name":"ClientIdDefaultRequest","features":[126]},{"name":"ClientIdEOBO","features":[126]},{"name":"ClientIdNone","features":[126]},{"name":"ClientIdRequestWizard","features":[126]},{"name":"ClientIdTest","features":[126]},{"name":"ClientIdUserStart","features":[126]},{"name":"ClientIdWinRT","features":[126]},{"name":"ClientIdWizard2003","features":[126]},{"name":"ClientIdXEnroll2003","features":[126]},{"name":"CommitFlagDeleteTemplate","features":[126]},{"name":"CommitFlagSaveTemplateGenerateOID","features":[126]},{"name":"CommitFlagSaveTemplateOverwrite","features":[126]},{"name":"CommitFlagSaveTemplateUseCurrentOID","features":[126]},{"name":"CommitTemplateFlags","features":[126]},{"name":"ContextAdministratorForceMachine","features":[126]},{"name":"ContextMachine","features":[126]},{"name":"ContextNone","features":[126]},{"name":"ContextUser","features":[126]},{"name":"DBFLAGS_CHECKPOINTDEPTH60MB","features":[126]},{"name":"DBFLAGS_CIRCULARLOGGING","features":[126]},{"name":"DBFLAGS_CREATEIFNEEDED","features":[126]},{"name":"DBFLAGS_DISABLESNAPSHOTBACKUP","features":[126]},{"name":"DBFLAGS_ENABLEVOLATILEREQUESTS","features":[126]},{"name":"DBFLAGS_LAZYFLUSH","features":[126]},{"name":"DBFLAGS_LOGBUFFERSHUGE","features":[126]},{"name":"DBFLAGS_LOGBUFFERSLARGE","features":[126]},{"name":"DBFLAGS_LOGFILESIZE16MB","features":[126]},{"name":"DBFLAGS_MAXCACHESIZEX100","features":[126]},{"name":"DBFLAGS_MULTITHREADTRANSACTIONS","features":[126]},{"name":"DBFLAGS_READONLY","features":[126]},{"name":"DBG_CERTSRV","features":[126]},{"name":"DBSESSIONCOUNTDEFAULT","features":[126]},{"name":"DB_DISP_ACTIVE","features":[126]},{"name":"DB_DISP_CA_CERT","features":[126]},{"name":"DB_DISP_CA_CERT_CHAIN","features":[126]},{"name":"DB_DISP_DENIED","features":[126]},{"name":"DB_DISP_ERROR","features":[126]},{"name":"DB_DISP_FOREIGN","features":[126]},{"name":"DB_DISP_ISSUED","features":[126]},{"name":"DB_DISP_KRA_CERT","features":[126]},{"name":"DB_DISP_LOG_FAILED_MIN","features":[126]},{"name":"DB_DISP_LOG_MIN","features":[126]},{"name":"DB_DISP_PENDING","features":[126]},{"name":"DB_DISP_QUEUE_MAX","features":[126]},{"name":"DB_DISP_REVOKED","features":[126]},{"name":"DefaultNone","features":[126]},{"name":"DefaultPolicyServer","features":[126]},{"name":"DelayRetryAction","features":[126]},{"name":"DelayRetryLong","features":[126]},{"name":"DelayRetryNone","features":[126]},{"name":"DelayRetryPastSuccess","features":[126]},{"name":"DelayRetryShort","features":[126]},{"name":"DelayRetrySuccess","features":[126]},{"name":"DelayRetryUnknown","features":[126]},{"name":"DisableGroupPolicyList","features":[126]},{"name":"DisableUserServerList","features":[126]},{"name":"DisplayNo","features":[126]},{"name":"DisplayYes","features":[126]},{"name":"EANR_SUPPRESS_IA5CONVERSION","features":[126]},{"name":"EAN_NAMEOBJECTID","features":[126]},{"name":"EDITF_ADDOLDCERTTYPE","features":[126]},{"name":"EDITF_ADDOLDKEYUSAGE","features":[126]},{"name":"EDITF_ATTRIBUTECA","features":[126]},{"name":"EDITF_ATTRIBUTEEKU","features":[126]},{"name":"EDITF_ATTRIBUTEENDDATE","features":[126]},{"name":"EDITF_ATTRIBUTESUBJECTALTNAME2","features":[126]},{"name":"EDITF_AUDITCERTTEMPLATELOAD","features":[126]},{"name":"EDITF_BASICCONSTRAINTSCA","features":[126]},{"name":"EDITF_BASICCONSTRAINTSCRITICAL","features":[126]},{"name":"EDITF_DISABLEEXTENSIONLIST","features":[126]},{"name":"EDITF_DISABLELDAPPACKAGELIST","features":[126]},{"name":"EDITF_DISABLEOLDOSCNUPN","features":[126]},{"name":"EDITF_EMAILOPTIONAL","features":[126]},{"name":"EDITF_ENABLEAKICRITICAL","features":[126]},{"name":"EDITF_ENABLEAKIISSUERNAME","features":[126]},{"name":"EDITF_ENABLEAKIISSUERSERIAL","features":[126]},{"name":"EDITF_ENABLEAKIKEYID","features":[126]},{"name":"EDITF_ENABLECHASECLIENTDC","features":[126]},{"name":"EDITF_ENABLEDEFAULTSMIME","features":[126]},{"name":"EDITF_ENABLEKEYENCIPHERMENTCACERT","features":[126]},{"name":"EDITF_ENABLELDAPREFERRALS","features":[126]},{"name":"EDITF_ENABLEOCSPREVNOCHECK","features":[126]},{"name":"EDITF_ENABLERENEWONBEHALFOF","features":[126]},{"name":"EDITF_ENABLEREQUESTEXTENSIONS","features":[126]},{"name":"EDITF_ENABLEUPNMAP","features":[126]},{"name":"EDITF_IGNOREREQUESTERGROUP","features":[126]},{"name":"EDITF_REQUESTEXTENSIONLIST","features":[126]},{"name":"EDITF_SERVERUPGRADED","features":[126]},{"name":"ENUMEXT_OBJECTID","features":[126]},{"name":"ENUM_CATYPES","features":[126]},{"name":"ENUM_CERT_COLUMN_VALUE_FLAGS","features":[126]},{"name":"ENUM_ENTERPRISE_ROOTCA","features":[126]},{"name":"ENUM_ENTERPRISE_SUBCA","features":[126]},{"name":"ENUM_STANDALONE_ROOTCA","features":[126]},{"name":"ENUM_STANDALONE_SUBCA","features":[126]},{"name":"ENUM_UNKNOWN_CA","features":[126]},{"name":"EXITEVENT_CERTDENIED","features":[126]},{"name":"EXITEVENT_CERTIMPORTED","features":[126]},{"name":"EXITEVENT_CERTISSUED","features":[126]},{"name":"EXITEVENT_CERTPENDING","features":[126]},{"name":"EXITEVENT_CERTRETRIEVEPENDING","features":[126]},{"name":"EXITEVENT_CERTREVOKED","features":[126]},{"name":"EXITEVENT_CRLISSUED","features":[126]},{"name":"EXITEVENT_INVALID","features":[126]},{"name":"EXITEVENT_SHUTDOWN","features":[126]},{"name":"EXITEVENT_STARTUP","features":[126]},{"name":"EXITPUB_ACTIVEDIRECTORY","features":[126]},{"name":"EXITPUB_DEFAULT_ENTERPRISE","features":[126]},{"name":"EXITPUB_DEFAULT_STANDALONE","features":[126]},{"name":"EXITPUB_FILE","features":[126]},{"name":"EXITPUB_REMOVEOLDCERTS","features":[126]},{"name":"EXTENSION_CRITICAL_FLAG","features":[126]},{"name":"EXTENSION_DELETE_FLAG","features":[126]},{"name":"EXTENSION_DISABLE_FLAG","features":[126]},{"name":"EXTENSION_ORIGIN_ADMIN","features":[126]},{"name":"EXTENSION_ORIGIN_CACERT","features":[126]},{"name":"EXTENSION_ORIGIN_CMC","features":[126]},{"name":"EXTENSION_ORIGIN_IMPORTEDCERT","features":[126]},{"name":"EXTENSION_ORIGIN_MASK","features":[126]},{"name":"EXTENSION_ORIGIN_PKCS7","features":[126]},{"name":"EXTENSION_ORIGIN_POLICY","features":[126]},{"name":"EXTENSION_ORIGIN_RENEWALCERT","features":[126]},{"name":"EXTENSION_ORIGIN_REQUEST","features":[126]},{"name":"EXTENSION_ORIGIN_SERVER","features":[126]},{"name":"EXTENSION_POLICY_MASK","features":[126]},{"name":"EncodingType","features":[126]},{"name":"EnrollDenied","features":[126]},{"name":"EnrollError","features":[126]},{"name":"EnrollPended","features":[126]},{"name":"EnrollPrompt","features":[126]},{"name":"EnrollSkipped","features":[126]},{"name":"EnrollUIDeferredEnrollmentRequired","features":[126]},{"name":"EnrollUnknown","features":[126]},{"name":"Enrolled","features":[126]},{"name":"EnrollmentAddOCSPNoCheck","features":[126]},{"name":"EnrollmentAddTemplateName","features":[126]},{"name":"EnrollmentAllowEnrollOnBehalfOf","features":[126]},{"name":"EnrollmentAutoEnrollment","features":[126]},{"name":"EnrollmentAutoEnrollmentCheckUserDSCertificate","features":[126]},{"name":"EnrollmentCAProperty","features":[126]},{"name":"EnrollmentCertificateIssuancePoliciesFromRequest","features":[126]},{"name":"EnrollmentDisplayStatus","features":[126]},{"name":"EnrollmentDomainAuthenticationNotRequired","features":[126]},{"name":"EnrollmentEnrollStatus","features":[126]},{"name":"EnrollmentIncludeBasicConstraintsForEECerts","features":[126]},{"name":"EnrollmentIncludeSymmetricAlgorithms","features":[126]},{"name":"EnrollmentNoRevocationInfoInCerts","features":[126]},{"name":"EnrollmentPendAllRequests","features":[126]},{"name":"EnrollmentPolicyFlags","features":[126]},{"name":"EnrollmentPolicyServerPropertyFlags","features":[126]},{"name":"EnrollmentPreviousApprovalKeyBasedValidateReenrollment","features":[126]},{"name":"EnrollmentPreviousApprovalValidateReenrollment","features":[126]},{"name":"EnrollmentPublishToDS","features":[126]},{"name":"EnrollmentPublishToKRAContainer","features":[126]},{"name":"EnrollmentRemoveInvalidCertificateFromPersonalStore","features":[126]},{"name":"EnrollmentReuseKeyOnFullSmartCard","features":[126]},{"name":"EnrollmentSelectionStatus","features":[126]},{"name":"EnrollmentSkipAutoRenewal","features":[126]},{"name":"EnrollmentTemplateProperty","features":[126]},{"name":"EnrollmentUserInteractionRequired","features":[126]},{"name":"ExportCAs","features":[126]},{"name":"ExportOIDs","features":[126]},{"name":"ExportTemplates","features":[126]},{"name":"FNCERTSRVBACKUPCLOSE","features":[126]},{"name":"FNCERTSRVBACKUPEND","features":[126]},{"name":"FNCERTSRVBACKUPFREE","features":[126]},{"name":"FNCERTSRVBACKUPGETBACKUPLOGSW","features":[126]},{"name":"FNCERTSRVBACKUPGETDATABASENAMESW","features":[126]},{"name":"FNCERTSRVBACKUPGETDYNAMICFILELISTW","features":[126]},{"name":"FNCERTSRVBACKUPOPENFILEW","features":[126]},{"name":"FNCERTSRVBACKUPPREPAREW","features":[126]},{"name":"FNCERTSRVBACKUPREAD","features":[126]},{"name":"FNCERTSRVBACKUPTRUNCATELOGS","features":[126]},{"name":"FNCERTSRVISSERVERONLINEW","features":[3,126]},{"name":"FNCERTSRVRESTOREEND","features":[126]},{"name":"FNCERTSRVRESTOREGETDATABASELOCATIONSW","features":[126]},{"name":"FNCERTSRVRESTOREPREPAREW","features":[126]},{"name":"FNCERTSRVRESTOREREGISTERCOMPLETE","features":[126]},{"name":"FNCERTSRVRESTOREREGISTERW","features":[126]},{"name":"FNCERTSRVSERVERCONTROLW","features":[126]},{"name":"FNIMPORTPFXTOPROVIDER","features":[3,126]},{"name":"FNIMPORTPFXTOPROVIDERFREEDATA","features":[3,126]},{"name":"FR_PROP_ATTESTATIONCHALLENGE","features":[126]},{"name":"FR_PROP_ATTESTATIONPROVIDERNAME","features":[126]},{"name":"FR_PROP_BODYPARTSTRING","features":[126]},{"name":"FR_PROP_CAEXCHANGECERTIFICATE","features":[126]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECHAIN","features":[126]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECRLCHAIN","features":[126]},{"name":"FR_PROP_CAEXCHANGECERTIFICATEHASH","features":[126]},{"name":"FR_PROP_CLAIMCHALLENGE","features":[126]},{"name":"FR_PROP_ENCRYPTEDKEYHASH","features":[126]},{"name":"FR_PROP_FAILINFO","features":[126]},{"name":"FR_PROP_FULLRESPONSE","features":[126]},{"name":"FR_PROP_FULLRESPONSENOPKCS7","features":[126]},{"name":"FR_PROP_ISSUEDCERTIFICATE","features":[126]},{"name":"FR_PROP_ISSUEDCERTIFICATECHAIN","features":[126]},{"name":"FR_PROP_ISSUEDCERTIFICATECRLCHAIN","features":[126]},{"name":"FR_PROP_ISSUEDCERTIFICATEHASH","features":[126]},{"name":"FR_PROP_NONE","features":[126]},{"name":"FR_PROP_OTHERINFOCHOICE","features":[126]},{"name":"FR_PROP_PENDINFOTIME","features":[126]},{"name":"FR_PROP_PENDINFOTOKEN","features":[126]},{"name":"FR_PROP_STATUS","features":[126]},{"name":"FR_PROP_STATUSINFOCOUNT","features":[126]},{"name":"FR_PROP_STATUSSTRING","features":[126]},{"name":"FULL_RESPONSE_PROPERTY_ID","features":[126]},{"name":"GeneralCA","features":[126]},{"name":"GeneralCrossCA","features":[126]},{"name":"GeneralDefault","features":[126]},{"name":"GeneralDonotPersist","features":[126]},{"name":"GeneralMachineType","features":[126]},{"name":"GeneralModified","features":[126]},{"name":"IAlternativeName","features":[126]},{"name":"IAlternativeNames","features":[126]},{"name":"IBinaryConverter","features":[126]},{"name":"IBinaryConverter2","features":[126]},{"name":"ICEnroll","features":[126]},{"name":"ICEnroll2","features":[126]},{"name":"ICEnroll3","features":[126]},{"name":"ICEnroll4","features":[126]},{"name":"ICF_ALLOWFOREIGN","features":[126]},{"name":"ICF_EXISTINGROW","features":[126]},{"name":"ICertAdmin","features":[126]},{"name":"ICertAdmin2","features":[126]},{"name":"ICertConfig","features":[126]},{"name":"ICertConfig2","features":[126]},{"name":"ICertEncodeAltName","features":[126]},{"name":"ICertEncodeAltName2","features":[126]},{"name":"ICertEncodeBitString","features":[126]},{"name":"ICertEncodeBitString2","features":[126]},{"name":"ICertEncodeCRLDistInfo","features":[126]},{"name":"ICertEncodeCRLDistInfo2","features":[126]},{"name":"ICertEncodeDateArray","features":[126]},{"name":"ICertEncodeDateArray2","features":[126]},{"name":"ICertEncodeLongArray","features":[126]},{"name":"ICertEncodeLongArray2","features":[126]},{"name":"ICertEncodeStringArray","features":[126]},{"name":"ICertEncodeStringArray2","features":[126]},{"name":"ICertExit","features":[126]},{"name":"ICertExit2","features":[126]},{"name":"ICertGetConfig","features":[126]},{"name":"ICertManageModule","features":[126]},{"name":"ICertPolicy","features":[126]},{"name":"ICertPolicy2","features":[126]},{"name":"ICertProperties","features":[126]},{"name":"ICertProperty","features":[126]},{"name":"ICertPropertyArchived","features":[126]},{"name":"ICertPropertyArchivedKeyHash","features":[126]},{"name":"ICertPropertyAutoEnroll","features":[126]},{"name":"ICertPropertyBackedUp","features":[126]},{"name":"ICertPropertyDescription","features":[126]},{"name":"ICertPropertyEnrollment","features":[126]},{"name":"ICertPropertyEnrollmentPolicyServer","features":[126]},{"name":"ICertPropertyFriendlyName","features":[126]},{"name":"ICertPropertyKeyProvInfo","features":[126]},{"name":"ICertPropertyRenewal","features":[126]},{"name":"ICertPropertyRequestOriginator","features":[126]},{"name":"ICertPropertySHA1Hash","features":[126]},{"name":"ICertRequest","features":[126]},{"name":"ICertRequest2","features":[126]},{"name":"ICertRequest3","features":[126]},{"name":"ICertRequestD","features":[126]},{"name":"ICertRequestD2","features":[126]},{"name":"ICertServerExit","features":[126]},{"name":"ICertServerPolicy","features":[126]},{"name":"ICertView","features":[126]},{"name":"ICertView2","features":[126]},{"name":"ICertificateAttestationChallenge","features":[126]},{"name":"ICertificateAttestationChallenge2","features":[126]},{"name":"ICertificatePolicies","features":[126]},{"name":"ICertificatePolicy","features":[126]},{"name":"ICertificationAuthorities","features":[126]},{"name":"ICertificationAuthority","features":[126]},{"name":"ICryptAttribute","features":[126]},{"name":"ICryptAttributes","features":[126]},{"name":"ICspAlgorithm","features":[126]},{"name":"ICspAlgorithms","features":[126]},{"name":"ICspInformation","features":[126]},{"name":"ICspInformations","features":[126]},{"name":"ICspStatus","features":[126]},{"name":"ICspStatuses","features":[126]},{"name":"IEnroll","features":[126]},{"name":"IEnroll2","features":[126]},{"name":"IEnroll4","features":[126]},{"name":"IEnumCERTVIEWATTRIBUTE","features":[126]},{"name":"IEnumCERTVIEWCOLUMN","features":[126]},{"name":"IEnumCERTVIEWEXTENSION","features":[126]},{"name":"IEnumCERTVIEWROW","features":[126]},{"name":"IF_ENABLEADMINASAUDITOR","features":[126]},{"name":"IF_ENABLEEXITKEYRETRIEVAL","features":[126]},{"name":"IF_ENFORCEENCRYPTICERTADMIN","features":[126]},{"name":"IF_ENFORCEENCRYPTICERTREQUEST","features":[126]},{"name":"IF_LOCKICERTREQUEST","features":[126]},{"name":"IF_NOLOCALICERTADMIN","features":[126]},{"name":"IF_NOLOCALICERTADMINBACKUP","features":[126]},{"name":"IF_NOLOCALICERTREQUEST","features":[126]},{"name":"IF_NOREMOTEICERTADMIN","features":[126]},{"name":"IF_NOREMOTEICERTADMINBACKUP","features":[126]},{"name":"IF_NOREMOTEICERTREQUEST","features":[126]},{"name":"IF_NORPCICERTREQUEST","features":[126]},{"name":"IF_NOSNAPSHOTBACKUP","features":[126]},{"name":"IKF_OVERWRITE","features":[126]},{"name":"INDESPolicy","features":[126]},{"name":"IOCSPAdmin","features":[126]},{"name":"IOCSPCAConfiguration","features":[126]},{"name":"IOCSPCAConfigurationCollection","features":[126]},{"name":"IOCSPProperty","features":[126]},{"name":"IOCSPPropertyCollection","features":[126]},{"name":"IObjectId","features":[126]},{"name":"IObjectIds","features":[126]},{"name":"IPolicyQualifier","features":[126]},{"name":"IPolicyQualifiers","features":[126]},{"name":"ISSCERT_DEFAULT_DS","features":[126]},{"name":"ISSCERT_DEFAULT_NODS","features":[126]},{"name":"ISSCERT_ENABLE","features":[126]},{"name":"ISSCERT_FILEURL_OLD","features":[126]},{"name":"ISSCERT_FTPURL_OLD","features":[126]},{"name":"ISSCERT_HTTPURL_OLD","features":[126]},{"name":"ISSCERT_LDAPURL_OLD","features":[126]},{"name":"ISSCERT_URLMASK_OLD","features":[126]},{"name":"ISignerCertificate","features":[126]},{"name":"ISignerCertificates","features":[126]},{"name":"ISmimeCapabilities","features":[126]},{"name":"ISmimeCapability","features":[126]},{"name":"IX500DistinguishedName","features":[126]},{"name":"IX509Attribute","features":[126]},{"name":"IX509AttributeArchiveKey","features":[126]},{"name":"IX509AttributeArchiveKeyHash","features":[126]},{"name":"IX509AttributeClientId","features":[126]},{"name":"IX509AttributeCspProvider","features":[126]},{"name":"IX509AttributeExtensions","features":[126]},{"name":"IX509AttributeOSVersion","features":[126]},{"name":"IX509AttributeRenewalCertificate","features":[126]},{"name":"IX509Attributes","features":[126]},{"name":"IX509CertificateRequest","features":[126]},{"name":"IX509CertificateRequestCertificate","features":[126]},{"name":"IX509CertificateRequestCertificate2","features":[126]},{"name":"IX509CertificateRequestCmc","features":[126]},{"name":"IX509CertificateRequestCmc2","features":[126]},{"name":"IX509CertificateRequestPkcs10","features":[126]},{"name":"IX509CertificateRequestPkcs10V2","features":[126]},{"name":"IX509CertificateRequestPkcs10V3","features":[126]},{"name":"IX509CertificateRequestPkcs10V4","features":[126]},{"name":"IX509CertificateRequestPkcs7","features":[126]},{"name":"IX509CertificateRequestPkcs7V2","features":[126]},{"name":"IX509CertificateRevocationList","features":[126]},{"name":"IX509CertificateRevocationListEntries","features":[126]},{"name":"IX509CertificateRevocationListEntry","features":[126]},{"name":"IX509CertificateTemplate","features":[126]},{"name":"IX509CertificateTemplateWritable","features":[126]},{"name":"IX509CertificateTemplates","features":[126]},{"name":"IX509EndorsementKey","features":[126]},{"name":"IX509Enrollment","features":[126]},{"name":"IX509Enrollment2","features":[126]},{"name":"IX509EnrollmentHelper","features":[126]},{"name":"IX509EnrollmentPolicyServer","features":[126]},{"name":"IX509EnrollmentStatus","features":[126]},{"name":"IX509EnrollmentWebClassFactory","features":[126]},{"name":"IX509Extension","features":[126]},{"name":"IX509ExtensionAlternativeNames","features":[126]},{"name":"IX509ExtensionAuthorityKeyIdentifier","features":[126]},{"name":"IX509ExtensionBasicConstraints","features":[126]},{"name":"IX509ExtensionCertificatePolicies","features":[126]},{"name":"IX509ExtensionEnhancedKeyUsage","features":[126]},{"name":"IX509ExtensionKeyUsage","features":[126]},{"name":"IX509ExtensionMSApplicationPolicies","features":[126]},{"name":"IX509ExtensionSmimeCapabilities","features":[126]},{"name":"IX509ExtensionSubjectKeyIdentifier","features":[126]},{"name":"IX509ExtensionTemplate","features":[126]},{"name":"IX509ExtensionTemplateName","features":[126]},{"name":"IX509Extensions","features":[126]},{"name":"IX509MachineEnrollmentFactory","features":[126]},{"name":"IX509NameValuePair","features":[126]},{"name":"IX509NameValuePairs","features":[126]},{"name":"IX509PolicyServerListManager","features":[126]},{"name":"IX509PolicyServerUrl","features":[126]},{"name":"IX509PrivateKey","features":[126]},{"name":"IX509PrivateKey2","features":[126]},{"name":"IX509PublicKey","features":[126]},{"name":"IX509SCEPEnrollment","features":[126]},{"name":"IX509SCEPEnrollment2","features":[126]},{"name":"IX509SCEPEnrollmentHelper","features":[126]},{"name":"IX509SignatureInformation","features":[126]},{"name":"ImportExportable","features":[126]},{"name":"ImportExportableEncrypted","features":[126]},{"name":"ImportForceOverwrite","features":[126]},{"name":"ImportInstallCertificate","features":[126]},{"name":"ImportInstallChain","features":[126]},{"name":"ImportInstallChainAndRoot","features":[126]},{"name":"ImportMachineContext","features":[126]},{"name":"ImportNoUserProtected","features":[126]},{"name":"ImportNone","features":[126]},{"name":"ImportPFXFlags","features":[126]},{"name":"ImportSaveProperties","features":[126]},{"name":"ImportSilent","features":[126]},{"name":"ImportUserProtected","features":[126]},{"name":"ImportUserProtectedHigh","features":[126]},{"name":"InheritDefault","features":[126]},{"name":"InheritExtensionsFlag","features":[126]},{"name":"InheritKeyMask","features":[126]},{"name":"InheritNewDefaultKey","features":[126]},{"name":"InheritNewSimilarKey","features":[126]},{"name":"InheritNone","features":[126]},{"name":"InheritPrivateKey","features":[126]},{"name":"InheritPublicKey","features":[126]},{"name":"InheritRenewalCertificateFlag","features":[126]},{"name":"InheritReserved80000000","features":[126]},{"name":"InheritSubjectAltNameFlag","features":[126]},{"name":"InheritSubjectFlag","features":[126]},{"name":"InheritTemplateFlag","features":[126]},{"name":"InheritValidityPeriodFlag","features":[126]},{"name":"InnerRequestLevel","features":[126]},{"name":"InstallResponseRestrictionFlags","features":[126]},{"name":"KRAF_DISABLEUSEDEFAULTPROVIDER","features":[126]},{"name":"KRAF_ENABLEARCHIVEALL","features":[126]},{"name":"KRAF_ENABLEFOREIGN","features":[126]},{"name":"KRAF_SAVEBADREQUESTKEY","features":[126]},{"name":"KRA_DISP_EXPIRED","features":[126]},{"name":"KRA_DISP_INVALID","features":[126]},{"name":"KRA_DISP_NOTFOUND","features":[126]},{"name":"KRA_DISP_NOTLOADED","features":[126]},{"name":"KRA_DISP_REVOKED","features":[126]},{"name":"KRA_DISP_UNTRUSTED","features":[126]},{"name":"KRA_DISP_VALID","features":[126]},{"name":"KR_ENABLE_MACHINE","features":[126]},{"name":"KR_ENABLE_USER","features":[126]},{"name":"KeyAttestationClaimType","features":[126]},{"name":"KeyIdentifierHashAlgorithm","features":[126]},{"name":"LDAPF_SIGNDISABLE","features":[126]},{"name":"LDAPF_SSLENABLE","features":[126]},{"name":"LevelInnermost","features":[126]},{"name":"LevelNext","features":[126]},{"name":"LevelSafe","features":[126]},{"name":"LevelUnsafe","features":[126]},{"name":"LoadOptionCacheOnly","features":[126]},{"name":"LoadOptionDefault","features":[126]},{"name":"LoadOptionRegisterForADChanges","features":[126]},{"name":"LoadOptionReload","features":[126]},{"name":"OCSPAdmin","features":[126]},{"name":"OCSPPropertyCollection","features":[126]},{"name":"OCSPRequestFlag","features":[126]},{"name":"OCSPSigningFlag","features":[126]},{"name":"OCSP_RF_REJECT_SIGNED_REQUESTS","features":[126]},{"name":"OCSP_SF_ALLOW_NONCE_EXTENSION","features":[126]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTOENROLLMENT","features":[126]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTORENEWAL","features":[126]},{"name":"OCSP_SF_AUTODISCOVER_SIGNINGCERT","features":[126]},{"name":"OCSP_SF_FORCE_SIGNINGCERT_ISSUER_ISCA","features":[126]},{"name":"OCSP_SF_MANUAL_ASSIGN_SIGNINGCERT","features":[126]},{"name":"OCSP_SF_RESPONDER_ID_KEYHASH","features":[126]},{"name":"OCSP_SF_RESPONDER_ID_NAME","features":[126]},{"name":"OCSP_SF_SILENT","features":[126]},{"name":"OCSP_SF_USE_CACERT","features":[126]},{"name":"ObjectIdGroupId","features":[126]},{"name":"ObjectIdPublicKeyFlags","features":[126]},{"name":"PENDING_REQUEST_DESIRED_PROPERTY","features":[126]},{"name":"PFXExportChainNoRoot","features":[126]},{"name":"PFXExportChainWithRoot","features":[126]},{"name":"PFXExportEEOnly","features":[126]},{"name":"PFXExportOptions","features":[126]},{"name":"PROCFLG_ENFORCEGOODKEYS","features":[126]},{"name":"PROCFLG_NONE","features":[126]},{"name":"PROPCALLER_ADMIN","features":[126]},{"name":"PROPCALLER_EXIT","features":[126]},{"name":"PROPCALLER_MASK","features":[126]},{"name":"PROPCALLER_POLICY","features":[126]},{"name":"PROPCALLER_REQUEST","features":[126]},{"name":"PROPCALLER_SERVER","features":[126]},{"name":"PROPFLAGS_INDEXED","features":[126]},{"name":"PROPTYPE_BINARY","features":[126]},{"name":"PROPTYPE_DATE","features":[126]},{"name":"PROPTYPE_LONG","features":[126]},{"name":"PROPTYPE_MASK","features":[126]},{"name":"PROPTYPE_STRING","features":[126]},{"name":"Pkcs10AllowedSignatureTypes","features":[126]},{"name":"PolicyQualifierType","features":[126]},{"name":"PolicyQualifierTypeFlags","features":[126]},{"name":"PolicyQualifierTypeUnknown","features":[126]},{"name":"PolicyQualifierTypeUrl","features":[126]},{"name":"PolicyQualifierTypeUserNotice","features":[126]},{"name":"PolicyServerUrlFlags","features":[126]},{"name":"PolicyServerUrlPropertyID","features":[126]},{"name":"PrivateKeyAttestMask","features":[126]},{"name":"PrivateKeyAttestNone","features":[126]},{"name":"PrivateKeyAttestPreferred","features":[126]},{"name":"PrivateKeyAttestRequired","features":[126]},{"name":"PrivateKeyAttestWithoutPolicy","features":[126]},{"name":"PrivateKeyClientVersionMask","features":[126]},{"name":"PrivateKeyClientVersionShift","features":[126]},{"name":"PrivateKeyEKTrustOnUse","features":[126]},{"name":"PrivateKeyEKValidateCert","features":[126]},{"name":"PrivateKeyEKValidateKey","features":[126]},{"name":"PrivateKeyExportable","features":[126]},{"name":"PrivateKeyHelloKspKey","features":[126]},{"name":"PrivateKeyHelloLogonKey","features":[126]},{"name":"PrivateKeyRequireAlternateSignatureAlgorithm","features":[126]},{"name":"PrivateKeyRequireArchival","features":[126]},{"name":"PrivateKeyRequireSameKeyRenewal","features":[126]},{"name":"PrivateKeyRequireStrongKeyProtection","features":[126]},{"name":"PrivateKeyServerVersionMask","features":[126]},{"name":"PrivateKeyServerVersionShift","features":[126]},{"name":"PrivateKeyUseLegacyProvider","features":[126]},{"name":"PsFriendlyName","features":[126]},{"name":"PsPolicyID","features":[126]},{"name":"PsfAllowUnTrustedCA","features":[126]},{"name":"PsfAutoEnrollmentEnabled","features":[126]},{"name":"PsfLocationGroupPolicy","features":[126]},{"name":"PsfLocationRegistry","features":[126]},{"name":"PsfNone","features":[126]},{"name":"PsfUseClientId","features":[126]},{"name":"PstAcquirePrivateKey","features":[3,126]},{"name":"PstGetCertificateChain","features":[3,25,126]},{"name":"PstGetCertificates","features":[3,126]},{"name":"PstGetTrustAnchors","features":[3,25,126]},{"name":"PstGetTrustAnchorsEx","features":[3,25,126]},{"name":"PstGetUserNameForCertificate","features":[3,126]},{"name":"PstMapCertificate","features":[3,25,126]},{"name":"PstValidate","features":[3,126]},{"name":"REQDISP_DEFAULT_ENTERPRISE","features":[126]},{"name":"REQDISP_DENY","features":[126]},{"name":"REQDISP_ISSUE","features":[126]},{"name":"REQDISP_MASK","features":[126]},{"name":"REQDISP_PENDING","features":[126]},{"name":"REQDISP_PENDINGFIRST","features":[126]},{"name":"REQDISP_USEREQUESTATTRIBUTE","features":[126]},{"name":"REVEXT_ASPENABLE","features":[126]},{"name":"REVEXT_CDPENABLE","features":[126]},{"name":"REVEXT_CDPFILEURL_OLD","features":[126]},{"name":"REVEXT_CDPFTPURL_OLD","features":[126]},{"name":"REVEXT_CDPHTTPURL_OLD","features":[126]},{"name":"REVEXT_CDPLDAPURL_OLD","features":[126]},{"name":"REVEXT_CDPURLMASK_OLD","features":[126]},{"name":"REVEXT_DEFAULT_DS","features":[126]},{"name":"REVEXT_DEFAULT_NODS","features":[126]},{"name":"RequestClientInfoClientId","features":[126]},{"name":"SCEPDispositionFailure","features":[126]},{"name":"SCEPDispositionPending","features":[126]},{"name":"SCEPDispositionPendingChallenge","features":[126]},{"name":"SCEPDispositionSuccess","features":[126]},{"name":"SCEPDispositionUnknown","features":[126]},{"name":"SCEPFailBadAlgorithm","features":[126]},{"name":"SCEPFailBadCertId","features":[126]},{"name":"SCEPFailBadMessageCheck","features":[126]},{"name":"SCEPFailBadRequest","features":[126]},{"name":"SCEPFailBadTime","features":[126]},{"name":"SCEPFailUnknown","features":[126]},{"name":"SCEPMessageCertResponse","features":[126]},{"name":"SCEPMessageClaimChallengeAnswer","features":[126]},{"name":"SCEPMessageGetCRL","features":[126]},{"name":"SCEPMessageGetCert","features":[126]},{"name":"SCEPMessageGetCertInitial","features":[126]},{"name":"SCEPMessagePKCSRequest","features":[126]},{"name":"SCEPMessageUnknown","features":[126]},{"name":"SCEPProcessDefault","features":[126]},{"name":"SCEPProcessSkipCertInstall","features":[126]},{"name":"SETUP_ATTEMPT_VROOT_CREATE","features":[126]},{"name":"SETUP_CLIENT_FLAG","features":[126]},{"name":"SETUP_CREATEDB_FLAG","features":[126]},{"name":"SETUP_DCOM_SECURITY_UPDATED_FLAG","features":[126]},{"name":"SETUP_DENIED_FLAG","features":[126]},{"name":"SETUP_FORCECRL_FLAG","features":[126]},{"name":"SETUP_ONLINE_FLAG","features":[126]},{"name":"SETUP_REQUEST_FLAG","features":[126]},{"name":"SETUP_SECURITY_CHANGED","features":[126]},{"name":"SETUP_SERVER_FLAG","features":[126]},{"name":"SETUP_SERVER_IS_UP_TO_DATE_FLAG","features":[126]},{"name":"SETUP_SERVER_UPGRADED_FLAG","features":[126]},{"name":"SETUP_SUSPEND_FLAG","features":[126]},{"name":"SETUP_UPDATE_CAOBJECT_SVRTYPE","features":[126]},{"name":"SETUP_W2K_SECURITY_NOT_UPGRADED_FLAG","features":[126]},{"name":"SKIHashCapiSha1","features":[126]},{"name":"SKIHashDefault","features":[126]},{"name":"SKIHashHPKP","features":[126]},{"name":"SKIHashSha1","features":[126]},{"name":"SKIHashSha256","features":[126]},{"name":"SelectedNo","features":[126]},{"name":"SelectedYes","features":[126]},{"name":"SubjectAlternativeNameEnrolleeSupplies","features":[126]},{"name":"SubjectAlternativeNameRequireDNS","features":[126]},{"name":"SubjectAlternativeNameRequireDirectoryGUID","features":[126]},{"name":"SubjectAlternativeNameRequireDomainDNS","features":[126]},{"name":"SubjectAlternativeNameRequireEmail","features":[126]},{"name":"SubjectAlternativeNameRequireSPN","features":[126]},{"name":"SubjectAlternativeNameRequireUPN","features":[126]},{"name":"SubjectNameAndAlternativeNameOldCertSupplies","features":[126]},{"name":"SubjectNameEnrolleeSupplies","features":[126]},{"name":"SubjectNameRequireCommonName","features":[126]},{"name":"SubjectNameRequireDNS","features":[126]},{"name":"SubjectNameRequireDirectoryPath","features":[126]},{"name":"SubjectNameRequireEmail","features":[126]},{"name":"TP_MACHINEPOLICY","features":[126]},{"name":"TemplatePropAsymmetricAlgorithm","features":[126]},{"name":"TemplatePropCertificatePolicies","features":[126]},{"name":"TemplatePropCommonName","features":[126]},{"name":"TemplatePropCryptoProviders","features":[126]},{"name":"TemplatePropDescription","features":[126]},{"name":"TemplatePropEKUs","features":[126]},{"name":"TemplatePropEnrollmentFlags","features":[126]},{"name":"TemplatePropExtensions","features":[126]},{"name":"TemplatePropFriendlyName","features":[126]},{"name":"TemplatePropGeneralFlags","features":[126]},{"name":"TemplatePropHashAlgorithm","features":[126]},{"name":"TemplatePropKeySecurityDescriptor","features":[126]},{"name":"TemplatePropKeySpec","features":[126]},{"name":"TemplatePropKeyUsage","features":[126]},{"name":"TemplatePropMajorRevision","features":[126]},{"name":"TemplatePropMinimumKeySize","features":[126]},{"name":"TemplatePropMinorRevision","features":[126]},{"name":"TemplatePropOID","features":[126]},{"name":"TemplatePropPrivateKeyFlags","features":[126]},{"name":"TemplatePropRACertificatePolicies","features":[126]},{"name":"TemplatePropRAEKUs","features":[126]},{"name":"TemplatePropRASignatureCount","features":[126]},{"name":"TemplatePropRenewalPeriod","features":[126]},{"name":"TemplatePropSchemaVersion","features":[126]},{"name":"TemplatePropSecurityDescriptor","features":[126]},{"name":"TemplatePropSubjectNameFlags","features":[126]},{"name":"TemplatePropSupersede","features":[126]},{"name":"TemplatePropSymmetricAlgorithm","features":[126]},{"name":"TemplatePropSymmetricKeyLength","features":[126]},{"name":"TemplatePropV1ApplicationPolicy","features":[126]},{"name":"TemplatePropValidityPeriod","features":[126]},{"name":"TypeAny","features":[126]},{"name":"TypeCertificate","features":[126]},{"name":"TypeCmc","features":[126]},{"name":"TypePkcs10","features":[126]},{"name":"TypePkcs7","features":[126]},{"name":"VR_INSTANT_BAD","features":[126]},{"name":"VR_INSTANT_OK","features":[126]},{"name":"VR_PENDING","features":[126]},{"name":"VerifyAllowUI","features":[126]},{"name":"VerifyNone","features":[126]},{"name":"VerifySilent","features":[126]},{"name":"VerifySmartCardNone","features":[126]},{"name":"VerifySmartCardSilent","features":[126]},{"name":"WebEnrollmentFlags","features":[126]},{"name":"WebSecurityLevel","features":[126]},{"name":"X500NameFlags","features":[126]},{"name":"X509AuthAnonymous","features":[126]},{"name":"X509AuthCertificate","features":[126]},{"name":"X509AuthKerberos","features":[126]},{"name":"X509AuthNone","features":[126]},{"name":"X509AuthUsername","features":[126]},{"name":"X509CertificateEnrollmentContext","features":[126]},{"name":"X509CertificateTemplateEnrollmentFlag","features":[126]},{"name":"X509CertificateTemplateGeneralFlag","features":[126]},{"name":"X509CertificateTemplatePrivateKeyFlag","features":[126]},{"name":"X509CertificateTemplateSubjectNameFlag","features":[126]},{"name":"X509EnrollmentAuthFlags","features":[126]},{"name":"X509EnrollmentPolicyExportFlags","features":[126]},{"name":"X509EnrollmentPolicyLoadOption","features":[126]},{"name":"X509HardwareKeyUsageFlags","features":[126]},{"name":"X509KeyParametersExportType","features":[126]},{"name":"X509KeySpec","features":[126]},{"name":"X509KeyUsageFlags","features":[126]},{"name":"X509PrivateKeyExportFlags","features":[126]},{"name":"X509PrivateKeyProtection","features":[126]},{"name":"X509PrivateKeyUsageFlags","features":[126]},{"name":"X509PrivateKeyVerify","features":[126]},{"name":"X509ProviderType","features":[126]},{"name":"X509RequestInheritOptions","features":[126]},{"name":"X509RequestType","features":[126]},{"name":"X509SCEPDisposition","features":[126]},{"name":"X509SCEPFailInfo","features":[126]},{"name":"X509SCEPMessageType","features":[126]},{"name":"X509SCEPProcessMessageFlags","features":[126]},{"name":"XCN_AT_KEYEXCHANGE","features":[126]},{"name":"XCN_AT_NONE","features":[126]},{"name":"XCN_AT_SIGNATURE","features":[126]},{"name":"XCN_BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[126]},{"name":"XCN_BCRYPT_CIPHER_INTERFACE","features":[126]},{"name":"XCN_BCRYPT_HASH_INTERFACE","features":[126]},{"name":"XCN_BCRYPT_KEY_DERIVATION_INTERFACE","features":[126]},{"name":"XCN_BCRYPT_RNG_INTERFACE","features":[126]},{"name":"XCN_BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[126]},{"name":"XCN_BCRYPT_SIGNATURE_INTERFACE","features":[126]},{"name":"XCN_BCRYPT_UNKNOWN_INTERFACE","features":[126]},{"name":"XCN_CERT_ACCESS_STATE_PROP_ID","features":[126]},{"name":"XCN_CERT_AIA_URL_RETRIEVED_PROP_ID","features":[126]},{"name":"XCN_CERT_ALT_NAME_DIRECTORY_NAME","features":[126]},{"name":"XCN_CERT_ALT_NAME_DNS_NAME","features":[126]},{"name":"XCN_CERT_ALT_NAME_EDI_PARTY_NAME","features":[126]},{"name":"XCN_CERT_ALT_NAME_GUID","features":[126]},{"name":"XCN_CERT_ALT_NAME_IP_ADDRESS","features":[126]},{"name":"XCN_CERT_ALT_NAME_OTHER_NAME","features":[126]},{"name":"XCN_CERT_ALT_NAME_REGISTERED_ID","features":[126]},{"name":"XCN_CERT_ALT_NAME_RFC822_NAME","features":[126]},{"name":"XCN_CERT_ALT_NAME_UNKNOWN","features":[126]},{"name":"XCN_CERT_ALT_NAME_URL","features":[126]},{"name":"XCN_CERT_ALT_NAME_USER_PRINCIPLE_NAME","features":[126]},{"name":"XCN_CERT_ALT_NAME_X400_ADDRESS","features":[126]},{"name":"XCN_CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_ARCHIVED_PROP_ID","features":[126]},{"name":"XCN_CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[126]},{"name":"XCN_CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_AUTO_ENROLL_PROP_ID","features":[126]},{"name":"XCN_CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[126]},{"name":"XCN_CERT_BACKED_UP_PROP_ID","features":[126]},{"name":"XCN_CERT_CA_DISABLE_CRL_PROP_ID","features":[126]},{"name":"XCN_CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[126]},{"name":"XCN_CERT_CEP_PROP_ID","features":[126]},{"name":"XCN_CERT_CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[126]},{"name":"XCN_CERT_CLR_DELETE_KEY_PROP_ID","features":[126]},{"name":"XCN_CERT_CRL_SIGN_KEY_USAGE","features":[126]},{"name":"XCN_CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[126]},{"name":"XCN_CERT_CTL_USAGE_PROP_ID","features":[126]},{"name":"XCN_CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[126]},{"name":"XCN_CERT_DATE_STAMP_PROP_ID","features":[126]},{"name":"XCN_CERT_DECIPHER_ONLY_KEY_USAGE","features":[126]},{"name":"XCN_CERT_DESCRIPTION_PROP_ID","features":[126]},{"name":"XCN_CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[126]},{"name":"XCN_CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[126]},{"name":"XCN_CERT_DISALLOWED_FILETIME_PROP_ID","features":[126]},{"name":"XCN_CERT_EFS_PROP_ID","features":[126]},{"name":"XCN_CERT_ENCIPHER_ONLY_KEY_USAGE","features":[126]},{"name":"XCN_CERT_ENHKEY_USAGE_PROP_ID","features":[126]},{"name":"XCN_CERT_ENROLLMENT_PROP_ID","features":[126]},{"name":"XCN_CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[126]},{"name":"XCN_CERT_FIRST_RESERVED_PROP_ID","features":[126]},{"name":"XCN_CERT_FIRST_USER_PROP_ID","features":[126]},{"name":"XCN_CERT_FORTEZZA_DATA_PROP_ID","features":[126]},{"name":"XCN_CERT_FRIENDLY_NAME_PROP_ID","features":[126]},{"name":"XCN_CERT_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[126]},{"name":"XCN_CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[126]},{"name":"XCN_CERT_IE30_RESERVED_PROP_ID","features":[126]},{"name":"XCN_CERT_ISOLATED_KEY_PROP_ID","features":[126]},{"name":"XCN_CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[126]},{"name":"XCN_CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[126]},{"name":"XCN_CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[126]},{"name":"XCN_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_KEY_AGREEMENT_KEY_USAGE","features":[126]},{"name":"XCN_CERT_KEY_CERT_SIGN_KEY_USAGE","features":[126]},{"name":"XCN_CERT_KEY_CLASSIFICATION_PROP_ID","features":[126]},{"name":"XCN_CERT_KEY_CONTEXT_PROP_ID","features":[126]},{"name":"XCN_CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[126]},{"name":"XCN_CERT_KEY_IDENTIFIER_PROP_ID","features":[126]},{"name":"XCN_CERT_KEY_PROV_HANDLE_PROP_ID","features":[126]},{"name":"XCN_CERT_KEY_PROV_INFO_PROP_ID","features":[126]},{"name":"XCN_CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[126]},{"name":"XCN_CERT_KEY_SPEC_PROP_ID","features":[126]},{"name":"XCN_CERT_LAST_RESERVED_PROP_ID","features":[126]},{"name":"XCN_CERT_LAST_USER_PROP_ID","features":[126]},{"name":"XCN_CERT_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_NAME_STR_AMBIGUOUS_SEPARATOR_FLAGS","features":[126]},{"name":"XCN_CERT_NAME_STR_COMMA_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_CRLF_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_DS_ESCAPED","features":[126]},{"name":"XCN_CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_FORWARD_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_NONE","features":[126]},{"name":"XCN_CERT_NAME_STR_NO_PLUS_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_NO_QUOTING_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_REVERSE_FLAG","features":[126]},{"name":"XCN_CERT_NAME_STR_SEMICOLON_FLAG","features":[126]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[126]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[126]},{"name":"XCN_CERT_NEW_KEY_PROP_ID","features":[126]},{"name":"XCN_CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[126]},{"name":"XCN_CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[126]},{"name":"XCN_CERT_NON_REPUDIATION_KEY_USAGE","features":[126]},{"name":"XCN_CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[126]},{"name":"XCN_CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[126]},{"name":"XCN_CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[126]},{"name":"XCN_CERT_NO_KEY_USAGE","features":[126]},{"name":"XCN_CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[126]},{"name":"XCN_CERT_OCSP_RESPONSE_PROP_ID","features":[126]},{"name":"XCN_CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[126]},{"name":"XCN_CERT_OID_NAME_STR","features":[126]},{"name":"XCN_CERT_PIN_SHA256_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_PUBKEY_ALG_PARA_PROP_ID","features":[126]},{"name":"XCN_CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[126]},{"name":"XCN_CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[126]},{"name":"XCN_CERT_PVK_FILE_PROP_ID","features":[126]},{"name":"XCN_CERT_RENEWAL_PROP_ID","features":[126]},{"name":"XCN_CERT_REQUEST_ORIGINATOR_PROP_ID","features":[126]},{"name":"XCN_CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[126]},{"name":"XCN_CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[126]},{"name":"XCN_CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[126]},{"name":"XCN_CERT_SCARD_PIN_ID_PROP_ID","features":[126]},{"name":"XCN_CERT_SCARD_PIN_INFO_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_CA_CERT_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_FLAGS_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_GUID_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_NONCE_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_SERVER_CERTS_PROP_ID","features":[126]},{"name":"XCN_CERT_SCEP_SIGNER_CERT_PROP_ID","features":[126]},{"name":"XCN_CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[126]},{"name":"XCN_CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[126]},{"name":"XCN_CERT_SERIAL_CHAIN_PROP_ID","features":[126]},{"name":"XCN_CERT_SHA1_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_SHA256_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_SIGNATURE_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[126]},{"name":"XCN_CERT_SIMPLE_NAME_STR","features":[126]},{"name":"XCN_CERT_SMART_CARD_DATA_PROP_ID","features":[126]},{"name":"XCN_CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[126]},{"name":"XCN_CERT_SMART_CARD_READER_PROP_ID","features":[126]},{"name":"XCN_CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[126]},{"name":"XCN_CERT_SOURCE_LOCATION_PROP_ID","features":[126]},{"name":"XCN_CERT_SOURCE_URL_PROP_ID","features":[126]},{"name":"XCN_CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[126]},{"name":"XCN_CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[126]},{"name":"XCN_CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[126]},{"name":"XCN_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[126]},{"name":"XCN_CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[126]},{"name":"XCN_CERT_X500_NAME_STR","features":[126]},{"name":"XCN_CERT_XML_NAME_STR","features":[126]},{"name":"XCN_CRL_REASON_AA_COMPROMISE","features":[126]},{"name":"XCN_CRL_REASON_AFFILIATION_CHANGED","features":[126]},{"name":"XCN_CRL_REASON_CA_COMPROMISE","features":[126]},{"name":"XCN_CRL_REASON_CERTIFICATE_HOLD","features":[126]},{"name":"XCN_CRL_REASON_CESSATION_OF_OPERATION","features":[126]},{"name":"XCN_CRL_REASON_KEY_COMPROMISE","features":[126]},{"name":"XCN_CRL_REASON_PRIVILEGE_WITHDRAWN","features":[126]},{"name":"XCN_CRL_REASON_REMOVE_FROM_CRL","features":[126]},{"name":"XCN_CRL_REASON_SUPERSEDED","features":[126]},{"name":"XCN_CRL_REASON_UNSPECIFIED","features":[126]},{"name":"XCN_CRYPT_ANY_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_FIRST_ALG_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_GROUP_ID_MASK","features":[126]},{"name":"XCN_CRYPT_HASH_ALG_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_KDF_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_KEY_LENGTH_MASK","features":[126]},{"name":"XCN_CRYPT_LAST_ALG_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_LAST_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[126]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[126]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[126]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ANY","features":[126]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[126]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[126]},{"name":"XCN_CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[126]},{"name":"XCN_CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[126]},{"name":"XCN_CRYPT_OID_USE_CURVE_NONE","features":[126]},{"name":"XCN_CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[126]},{"name":"XCN_CRYPT_POLICY_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_RDN_ATTR_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_SIGN_ALG_OID_GROUP_ID","features":[126]},{"name":"XCN_CRYPT_STRING_ANY","features":[126]},{"name":"XCN_CRYPT_STRING_BASE64","features":[126]},{"name":"XCN_CRYPT_STRING_BASE64HEADER","features":[126]},{"name":"XCN_CRYPT_STRING_BASE64REQUESTHEADER","features":[126]},{"name":"XCN_CRYPT_STRING_BASE64URI","features":[126]},{"name":"XCN_CRYPT_STRING_BASE64X509CRLHEADER","features":[126]},{"name":"XCN_CRYPT_STRING_BASE64_ANY","features":[126]},{"name":"XCN_CRYPT_STRING_BINARY","features":[126]},{"name":"XCN_CRYPT_STRING_CHAIN","features":[126]},{"name":"XCN_CRYPT_STRING_ENCODEMASK","features":[126]},{"name":"XCN_CRYPT_STRING_HASHDATA","features":[126]},{"name":"XCN_CRYPT_STRING_HEX","features":[126]},{"name":"XCN_CRYPT_STRING_HEXADDR","features":[126]},{"name":"XCN_CRYPT_STRING_HEXASCII","features":[126]},{"name":"XCN_CRYPT_STRING_HEXASCIIADDR","features":[126]},{"name":"XCN_CRYPT_STRING_HEXRAW","features":[126]},{"name":"XCN_CRYPT_STRING_HEX_ANY","features":[126]},{"name":"XCN_CRYPT_STRING_NOCR","features":[126]},{"name":"XCN_CRYPT_STRING_NOCRLF","features":[126]},{"name":"XCN_CRYPT_STRING_PERCENTESCAPE","features":[126]},{"name":"XCN_CRYPT_STRING_STRICT","features":[126]},{"name":"XCN_CRYPT_STRING_TEXT","features":[126]},{"name":"XCN_CRYPT_TEMPLATE_OID_GROUP_ID","features":[126]},{"name":"XCN_NCRYPT_ALLOW_ALL_USAGES","features":[126]},{"name":"XCN_NCRYPT_ALLOW_ARCHIVING_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_DECRYPT_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_NONE","features":[126]},{"name":"XCN_NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_SIGNING_FLAG","features":[126]},{"name":"XCN_NCRYPT_ALLOW_USAGES_NONE","features":[126]},{"name":"XCN_NCRYPT_ANY_ASYMMETRIC_OPERATION","features":[126]},{"name":"XCN_NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[126]},{"name":"XCN_NCRYPT_CIPHER_OPERATION","features":[126]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[126]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_ONLY","features":[126]},{"name":"XCN_NCRYPT_CLAIM_NONE","features":[126]},{"name":"XCN_NCRYPT_CLAIM_SUBJECT_ONLY","features":[126]},{"name":"XCN_NCRYPT_CLAIM_UNKNOWN","features":[126]},{"name":"XCN_NCRYPT_EXACT_MATCH_OPERATION","features":[126]},{"name":"XCN_NCRYPT_HASH_OPERATION","features":[126]},{"name":"XCN_NCRYPT_KEY_DERIVATION_OPERATION","features":[126]},{"name":"XCN_NCRYPT_NO_OPERATION","features":[126]},{"name":"XCN_NCRYPT_PCP_ENCRYPTION_KEY","features":[126]},{"name":"XCN_NCRYPT_PCP_GENERIC_KEY","features":[126]},{"name":"XCN_NCRYPT_PCP_IDENTITY_KEY","features":[126]},{"name":"XCN_NCRYPT_PCP_NONE","features":[126]},{"name":"XCN_NCRYPT_PCP_SIGNATURE_KEY","features":[126]},{"name":"XCN_NCRYPT_PCP_STORAGE_KEY","features":[126]},{"name":"XCN_NCRYPT_PREFERENCE_MASK_OPERATION","features":[126]},{"name":"XCN_NCRYPT_PREFER_NON_SIGNATURE_OPERATION","features":[126]},{"name":"XCN_NCRYPT_PREFER_SIGNATURE_ONLY_OPERATION","features":[126]},{"name":"XCN_NCRYPT_RNG_OPERATION","features":[126]},{"name":"XCN_NCRYPT_SECRET_AGREEMENT_OPERATION","features":[126]},{"name":"XCN_NCRYPT_SIGNATURE_OPERATION","features":[126]},{"name":"XCN_NCRYPT_TPM12_PROVIDER","features":[126]},{"name":"XCN_NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[126]},{"name":"XCN_NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[126]},{"name":"XCN_NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[126]},{"name":"XCN_NCRYPT_UI_NO_PROTECTION_FLAG","features":[126]},{"name":"XCN_NCRYPT_UI_PROTECT_KEY_FLAG","features":[126]},{"name":"XCN_OIDVerisign_FailInfo","features":[126]},{"name":"XCN_OIDVerisign_MessageType","features":[126]},{"name":"XCN_OIDVerisign_PkiStatus","features":[126]},{"name":"XCN_OIDVerisign_RecipientNonce","features":[126]},{"name":"XCN_OIDVerisign_SenderNonce","features":[126]},{"name":"XCN_OIDVerisign_TransactionID","features":[126]},{"name":"XCN_OID_ANSI_X942","features":[126]},{"name":"XCN_OID_ANSI_X942_DH","features":[126]},{"name":"XCN_OID_ANY_APPLICATION_POLICY","features":[126]},{"name":"XCN_OID_ANY_CERT_POLICY","features":[126]},{"name":"XCN_OID_ANY_ENHANCED_KEY_USAGE","features":[126]},{"name":"XCN_OID_APPLICATION_CERT_POLICIES","features":[126]},{"name":"XCN_OID_APPLICATION_POLICY_CONSTRAINTS","features":[126]},{"name":"XCN_OID_APPLICATION_POLICY_MAPPINGS","features":[126]},{"name":"XCN_OID_ARCHIVED_KEY_ATTR","features":[126]},{"name":"XCN_OID_ARCHIVED_KEY_CERT_HASH","features":[126]},{"name":"XCN_OID_ATTR_SUPPORTED_ALGORITHMS","features":[126]},{"name":"XCN_OID_ATTR_TPM_SECURITY_ASSERTIONS","features":[126]},{"name":"XCN_OID_ATTR_TPM_SPECIFICATION","features":[126]},{"name":"XCN_OID_AUTHORITY_INFO_ACCESS","features":[126]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER","features":[126]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER2","features":[126]},{"name":"XCN_OID_AUTHORITY_REVOCATION_LIST","features":[126]},{"name":"XCN_OID_AUTO_ENROLL_CTL_USAGE","features":[126]},{"name":"XCN_OID_BACKGROUND_OTHER_LOGOTYPE","features":[126]},{"name":"XCN_OID_BASIC_CONSTRAINTS","features":[126]},{"name":"XCN_OID_BASIC_CONSTRAINTS2","features":[126]},{"name":"XCN_OID_BIOMETRIC_EXT","features":[126]},{"name":"XCN_OID_BUSINESS_CATEGORY","features":[126]},{"name":"XCN_OID_CA_CERTIFICATE","features":[126]},{"name":"XCN_OID_CERTIFICATE_REVOCATION_LIST","features":[126]},{"name":"XCN_OID_CERTIFICATE_TEMPLATE","features":[126]},{"name":"XCN_OID_CERTSRV_CA_VERSION","features":[126]},{"name":"XCN_OID_CERTSRV_CROSSCA_VERSION","features":[126]},{"name":"XCN_OID_CERTSRV_PREVIOUS_CERT_HASH","features":[126]},{"name":"XCN_OID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[126]},{"name":"XCN_OID_CERT_EXTENSIONS","features":[126]},{"name":"XCN_OID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_OID_CERT_KEY_IDENTIFIER_PROP_ID","features":[126]},{"name":"XCN_OID_CERT_MANIFOLD","features":[126]},{"name":"XCN_OID_CERT_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_OID_CERT_POLICIES","features":[126]},{"name":"XCN_OID_CERT_POLICIES_95","features":[126]},{"name":"XCN_OID_CERT_POLICIES_95_QUALIFIER1","features":[126]},{"name":"XCN_OID_CERT_PROP_ID_PREFIX","features":[126]},{"name":"XCN_OID_CERT_SIGNATURE_HASH_PROP_ID","features":[126]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_1","features":[126]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_CURRENT","features":[126]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_PREFIX","features":[126]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_1","features":[126]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_CURRENT","features":[126]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_PREFIX","features":[126]},{"name":"XCN_OID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[126]},{"name":"XCN_OID_CMC","features":[126]},{"name":"XCN_OID_CMC_ADD_ATTRIBUTES","features":[126]},{"name":"XCN_OID_CMC_ADD_EXTENSIONS","features":[126]},{"name":"XCN_OID_CMC_DATA_RETURN","features":[126]},{"name":"XCN_OID_CMC_DECRYPTED_POP","features":[126]},{"name":"XCN_OID_CMC_ENCRYPTED_POP","features":[126]},{"name":"XCN_OID_CMC_GET_CERT","features":[126]},{"name":"XCN_OID_CMC_GET_CRL","features":[126]},{"name":"XCN_OID_CMC_IDENTIFICATION","features":[126]},{"name":"XCN_OID_CMC_IDENTITY_PROOF","features":[126]},{"name":"XCN_OID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[126]},{"name":"XCN_OID_CMC_ID_POP_LINK_RANDOM","features":[126]},{"name":"XCN_OID_CMC_ID_POP_LINK_WITNESS","features":[126]},{"name":"XCN_OID_CMC_LRA_POP_WITNESS","features":[126]},{"name":"XCN_OID_CMC_QUERY_PENDING","features":[126]},{"name":"XCN_OID_CMC_RECIPIENT_NONCE","features":[126]},{"name":"XCN_OID_CMC_REG_INFO","features":[126]},{"name":"XCN_OID_CMC_RESPONSE_INFO","features":[126]},{"name":"XCN_OID_CMC_REVOKE_REQUEST","features":[126]},{"name":"XCN_OID_CMC_SENDER_NONCE","features":[126]},{"name":"XCN_OID_CMC_STATUS_INFO","features":[126]},{"name":"XCN_OID_CMC_TRANSACTION_ID","features":[126]},{"name":"XCN_OID_COMMON_NAME","features":[126]},{"name":"XCN_OID_COUNTRY_NAME","features":[126]},{"name":"XCN_OID_CRL_DIST_POINTS","features":[126]},{"name":"XCN_OID_CRL_NEXT_PUBLISH","features":[126]},{"name":"XCN_OID_CRL_NUMBER","features":[126]},{"name":"XCN_OID_CRL_REASON_CODE","features":[126]},{"name":"XCN_OID_CRL_SELF_CDP","features":[126]},{"name":"XCN_OID_CRL_VIRTUAL_BASE","features":[126]},{"name":"XCN_OID_CROSS_CERTIFICATE_PAIR","features":[126]},{"name":"XCN_OID_CROSS_CERT_DIST_POINTS","features":[126]},{"name":"XCN_OID_CTL","features":[126]},{"name":"XCN_OID_CT_PKI_DATA","features":[126]},{"name":"XCN_OID_CT_PKI_RESPONSE","features":[126]},{"name":"XCN_OID_DELTA_CRL_INDICATOR","features":[126]},{"name":"XCN_OID_DESCRIPTION","features":[126]},{"name":"XCN_OID_DESTINATION_INDICATOR","features":[126]},{"name":"XCN_OID_DEVICE_SERIAL_NUMBER","features":[126]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[126]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[126]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[126]},{"name":"XCN_OID_DISALLOWED_HASH","features":[126]},{"name":"XCN_OID_DISALLOWED_LIST","features":[126]},{"name":"XCN_OID_DN_QUALIFIER","features":[126]},{"name":"XCN_OID_DOMAIN_COMPONENT","features":[126]},{"name":"XCN_OID_DRM","features":[126]},{"name":"XCN_OID_DRM_INDIVIDUALIZATION","features":[126]},{"name":"XCN_OID_DS","features":[126]},{"name":"XCN_OID_DSALG","features":[126]},{"name":"XCN_OID_DSALG_CRPT","features":[126]},{"name":"XCN_OID_DSALG_HASH","features":[126]},{"name":"XCN_OID_DSALG_RSA","features":[126]},{"name":"XCN_OID_DSALG_SIGN","features":[126]},{"name":"XCN_OID_DS_EMAIL_REPLICATION","features":[126]},{"name":"XCN_OID_ECC_CURVE_P256","features":[126]},{"name":"XCN_OID_ECC_CURVE_P384","features":[126]},{"name":"XCN_OID_ECC_CURVE_P521","features":[126]},{"name":"XCN_OID_ECC_PUBLIC_KEY","features":[126]},{"name":"XCN_OID_ECDSA_SHA1","features":[126]},{"name":"XCN_OID_ECDSA_SHA256","features":[126]},{"name":"XCN_OID_ECDSA_SHA384","features":[126]},{"name":"XCN_OID_ECDSA_SHA512","features":[126]},{"name":"XCN_OID_ECDSA_SPECIFIED","features":[126]},{"name":"XCN_OID_EFS_RECOVERY","features":[126]},{"name":"XCN_OID_EMBEDDED_NT_CRYPTO","features":[126]},{"name":"XCN_OID_ENCRYPTED_KEY_HASH","features":[126]},{"name":"XCN_OID_ENHANCED_KEY_USAGE","features":[126]},{"name":"XCN_OID_ENROLLMENT_AGENT","features":[126]},{"name":"XCN_OID_ENROLLMENT_CSP_PROVIDER","features":[126]},{"name":"XCN_OID_ENROLLMENT_NAME_VALUE_PAIR","features":[126]},{"name":"XCN_OID_ENROLL_ATTESTATION_CHALLENGE","features":[126]},{"name":"XCN_OID_ENROLL_ATTESTATION_STATEMENT","features":[126]},{"name":"XCN_OID_ENROLL_CAXCHGCERT_HASH","features":[126]},{"name":"XCN_OID_ENROLL_CERTTYPE_EXTENSION","features":[126]},{"name":"XCN_OID_ENROLL_EKPUB_CHALLENGE","features":[126]},{"name":"XCN_OID_ENROLL_EKVERIFYCERT","features":[126]},{"name":"XCN_OID_ENROLL_EKVERIFYCREDS","features":[126]},{"name":"XCN_OID_ENROLL_EKVERIFYKEY","features":[126]},{"name":"XCN_OID_ENROLL_EK_INFO","features":[126]},{"name":"XCN_OID_ENROLL_ENCRYPTION_ALGORITHM","features":[126]},{"name":"XCN_OID_ENROLL_KSP_NAME","features":[126]},{"name":"XCN_OID_ENROLL_SCEP_ERROR","features":[126]},{"name":"XCN_OID_ENTERPRISE_OID_ROOT","features":[126]},{"name":"XCN_OID_EV_RDN_COUNTRY","features":[126]},{"name":"XCN_OID_EV_RDN_LOCALE","features":[126]},{"name":"XCN_OID_EV_RDN_STATE_OR_PROVINCE","features":[126]},{"name":"XCN_OID_FACSIMILE_TELEPHONE_NUMBER","features":[126]},{"name":"XCN_OID_FRESHEST_CRL","features":[126]},{"name":"XCN_OID_GIVEN_NAME","features":[126]},{"name":"XCN_OID_INFOSEC","features":[126]},{"name":"XCN_OID_INFOSEC_SuiteAConfidentiality","features":[126]},{"name":"XCN_OID_INFOSEC_SuiteAIntegrity","features":[126]},{"name":"XCN_OID_INFOSEC_SuiteAKMandSig","features":[126]},{"name":"XCN_OID_INFOSEC_SuiteAKeyManagement","features":[126]},{"name":"XCN_OID_INFOSEC_SuiteASignature","features":[126]},{"name":"XCN_OID_INFOSEC_SuiteATokenProtection","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicConfidentiality","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicIntegrity","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicKMandSig","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicKMandUpdSig","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicKeyManagement","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicSignature","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicTokenProtection","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedInteg","features":[126]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedSig","features":[126]},{"name":"XCN_OID_INFOSEC_sdnsConfidentiality","features":[126]},{"name":"XCN_OID_INFOSEC_sdnsIntegrity","features":[126]},{"name":"XCN_OID_INFOSEC_sdnsKMandSig","features":[126]},{"name":"XCN_OID_INFOSEC_sdnsKeyManagement","features":[126]},{"name":"XCN_OID_INFOSEC_sdnsSignature","features":[126]},{"name":"XCN_OID_INFOSEC_sdnsTokenProtection","features":[126]},{"name":"XCN_OID_INHIBIT_ANY_POLICY","features":[126]},{"name":"XCN_OID_INITIALS","features":[126]},{"name":"XCN_OID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[126]},{"name":"XCN_OID_INTERNATIONAL_ISDN_NUMBER","features":[126]},{"name":"XCN_OID_IPSEC_KP_IKE_INTERMEDIATE","features":[126]},{"name":"XCN_OID_ISSUED_CERT_HASH","features":[126]},{"name":"XCN_OID_ISSUER_ALT_NAME","features":[126]},{"name":"XCN_OID_ISSUER_ALT_NAME2","features":[126]},{"name":"XCN_OID_ISSUING_DIST_POINT","features":[126]},{"name":"XCN_OID_KEYID_RDN","features":[126]},{"name":"XCN_OID_KEY_ATTRIBUTES","features":[126]},{"name":"XCN_OID_KEY_USAGE","features":[126]},{"name":"XCN_OID_KEY_USAGE_RESTRICTION","features":[126]},{"name":"XCN_OID_KP_CA_EXCHANGE","features":[126]},{"name":"XCN_OID_KP_CSP_SIGNATURE","features":[126]},{"name":"XCN_OID_KP_CTL_USAGE_SIGNING","features":[126]},{"name":"XCN_OID_KP_DOCUMENT_SIGNING","features":[126]},{"name":"XCN_OID_KP_EFS","features":[126]},{"name":"XCN_OID_KP_KERNEL_MODE_CODE_SIGNING","features":[126]},{"name":"XCN_OID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[126]},{"name":"XCN_OID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[126]},{"name":"XCN_OID_KP_KEY_RECOVERY","features":[126]},{"name":"XCN_OID_KP_KEY_RECOVERY_AGENT","features":[126]},{"name":"XCN_OID_KP_LIFETIME_SIGNING","features":[126]},{"name":"XCN_OID_KP_MOBILE_DEVICE_SOFTWARE","features":[126]},{"name":"XCN_OID_KP_QUALIFIED_SUBORDINATION","features":[126]},{"name":"XCN_OID_KP_SMARTCARD_LOGON","features":[126]},{"name":"XCN_OID_KP_SMART_DISPLAY","features":[126]},{"name":"XCN_OID_KP_TIME_STAMP_SIGNING","features":[126]},{"name":"XCN_OID_KP_TPM_AIK_CERTIFICATE","features":[126]},{"name":"XCN_OID_KP_TPM_EK_CERTIFICATE","features":[126]},{"name":"XCN_OID_KP_TPM_PLATFORM_CERTIFICATE","features":[126]},{"name":"XCN_OID_LEGACY_POLICY_MAPPINGS","features":[126]},{"name":"XCN_OID_LICENSES","features":[126]},{"name":"XCN_OID_LICENSE_SERVER","features":[126]},{"name":"XCN_OID_LOCALITY_NAME","features":[126]},{"name":"XCN_OID_LOCAL_MACHINE_KEYSET","features":[126]},{"name":"XCN_OID_LOGOTYPE_EXT","features":[126]},{"name":"XCN_OID_LOYALTY_OTHER_LOGOTYPE","features":[126]},{"name":"XCN_OID_MEMBER","features":[126]},{"name":"XCN_OID_NAME_CONSTRAINTS","features":[126]},{"name":"XCN_OID_NETSCAPE","features":[126]},{"name":"XCN_OID_NETSCAPE_BASE_URL","features":[126]},{"name":"XCN_OID_NETSCAPE_CA_POLICY_URL","features":[126]},{"name":"XCN_OID_NETSCAPE_CA_REVOCATION_URL","features":[126]},{"name":"XCN_OID_NETSCAPE_CERT_EXTENSION","features":[126]},{"name":"XCN_OID_NETSCAPE_CERT_RENEWAL_URL","features":[126]},{"name":"XCN_OID_NETSCAPE_CERT_SEQUENCE","features":[126]},{"name":"XCN_OID_NETSCAPE_CERT_TYPE","features":[126]},{"name":"XCN_OID_NETSCAPE_COMMENT","features":[126]},{"name":"XCN_OID_NETSCAPE_DATA_TYPE","features":[126]},{"name":"XCN_OID_NETSCAPE_REVOCATION_URL","features":[126]},{"name":"XCN_OID_NETSCAPE_SSL_SERVER_NAME","features":[126]},{"name":"XCN_OID_NEXT_UPDATE_LOCATION","features":[126]},{"name":"XCN_OID_NIST_AES128_CBC","features":[126]},{"name":"XCN_OID_NIST_AES128_WRAP","features":[126]},{"name":"XCN_OID_NIST_AES192_CBC","features":[126]},{"name":"XCN_OID_NIST_AES192_WRAP","features":[126]},{"name":"XCN_OID_NIST_AES256_CBC","features":[126]},{"name":"XCN_OID_NIST_AES256_WRAP","features":[126]},{"name":"XCN_OID_NIST_sha256","features":[126]},{"name":"XCN_OID_NIST_sha384","features":[126]},{"name":"XCN_OID_NIST_sha512","features":[126]},{"name":"XCN_OID_NONE","features":[126]},{"name":"XCN_OID_NT5_CRYPTO","features":[126]},{"name":"XCN_OID_NTDS_REPLICATION","features":[126]},{"name":"XCN_OID_NT_PRINCIPAL_NAME","features":[126]},{"name":"XCN_OID_OEM_WHQL_CRYPTO","features":[126]},{"name":"XCN_OID_OIW","features":[126]},{"name":"XCN_OID_OIWDIR","features":[126]},{"name":"XCN_OID_OIWDIR_CRPT","features":[126]},{"name":"XCN_OID_OIWDIR_HASH","features":[126]},{"name":"XCN_OID_OIWDIR_SIGN","features":[126]},{"name":"XCN_OID_OIWDIR_md2","features":[126]},{"name":"XCN_OID_OIWDIR_md2RSA","features":[126]},{"name":"XCN_OID_OIWSEC","features":[126]},{"name":"XCN_OID_OIWSEC_desCBC","features":[126]},{"name":"XCN_OID_OIWSEC_desCFB","features":[126]},{"name":"XCN_OID_OIWSEC_desECB","features":[126]},{"name":"XCN_OID_OIWSEC_desEDE","features":[126]},{"name":"XCN_OID_OIWSEC_desMAC","features":[126]},{"name":"XCN_OID_OIWSEC_desOFB","features":[126]},{"name":"XCN_OID_OIWSEC_dhCommMod","features":[126]},{"name":"XCN_OID_OIWSEC_dsa","features":[126]},{"name":"XCN_OID_OIWSEC_dsaComm","features":[126]},{"name":"XCN_OID_OIWSEC_dsaCommSHA","features":[126]},{"name":"XCN_OID_OIWSEC_dsaCommSHA1","features":[126]},{"name":"XCN_OID_OIWSEC_dsaSHA1","features":[126]},{"name":"XCN_OID_OIWSEC_keyHashSeal","features":[126]},{"name":"XCN_OID_OIWSEC_md2RSASign","features":[126]},{"name":"XCN_OID_OIWSEC_md4RSA","features":[126]},{"name":"XCN_OID_OIWSEC_md4RSA2","features":[126]},{"name":"XCN_OID_OIWSEC_md5RSA","features":[126]},{"name":"XCN_OID_OIWSEC_md5RSASign","features":[126]},{"name":"XCN_OID_OIWSEC_mdc2","features":[126]},{"name":"XCN_OID_OIWSEC_mdc2RSA","features":[126]},{"name":"XCN_OID_OIWSEC_rsaSign","features":[126]},{"name":"XCN_OID_OIWSEC_rsaXchg","features":[126]},{"name":"XCN_OID_OIWSEC_sha","features":[126]},{"name":"XCN_OID_OIWSEC_sha1","features":[126]},{"name":"XCN_OID_OIWSEC_sha1RSASign","features":[126]},{"name":"XCN_OID_OIWSEC_shaDSA","features":[126]},{"name":"XCN_OID_OIWSEC_shaRSA","features":[126]},{"name":"XCN_OID_ORGANIZATIONAL_UNIT_NAME","features":[126]},{"name":"XCN_OID_ORGANIZATION_NAME","features":[126]},{"name":"XCN_OID_OS_VERSION","features":[126]},{"name":"XCN_OID_OWNER","features":[126]},{"name":"XCN_OID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[126]},{"name":"XCN_OID_PKCS","features":[126]},{"name":"XCN_OID_PKCS_1","features":[126]},{"name":"XCN_OID_PKCS_10","features":[126]},{"name":"XCN_OID_PKCS_12","features":[126]},{"name":"XCN_OID_PKCS_12_EXTENDED_ATTRIBUTES","features":[126]},{"name":"XCN_OID_PKCS_12_FRIENDLY_NAME_ATTR","features":[126]},{"name":"XCN_OID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[126]},{"name":"XCN_OID_PKCS_12_LOCAL_KEY_ID","features":[126]},{"name":"XCN_OID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[126]},{"name":"XCN_OID_PKCS_12_PbeIds","features":[126]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC2","features":[126]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC4","features":[126]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[126]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[126]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC2","features":[126]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC4","features":[126]},{"name":"XCN_OID_PKCS_2","features":[126]},{"name":"XCN_OID_PKCS_3","features":[126]},{"name":"XCN_OID_PKCS_4","features":[126]},{"name":"XCN_OID_PKCS_5","features":[126]},{"name":"XCN_OID_PKCS_6","features":[126]},{"name":"XCN_OID_PKCS_7","features":[126]},{"name":"XCN_OID_PKCS_7_DATA","features":[126]},{"name":"XCN_OID_PKCS_7_DIGESTED","features":[126]},{"name":"XCN_OID_PKCS_7_ENCRYPTED","features":[126]},{"name":"XCN_OID_PKCS_7_ENVELOPED","features":[126]},{"name":"XCN_OID_PKCS_7_SIGNED","features":[126]},{"name":"XCN_OID_PKCS_7_SIGNEDANDENVELOPED","features":[126]},{"name":"XCN_OID_PKCS_8","features":[126]},{"name":"XCN_OID_PKCS_9","features":[126]},{"name":"XCN_OID_PKCS_9_CONTENT_TYPE","features":[126]},{"name":"XCN_OID_PKCS_9_MESSAGE_DIGEST","features":[126]},{"name":"XCN_OID_PKINIT_KP_KDC","features":[126]},{"name":"XCN_OID_PKIX","features":[126]},{"name":"XCN_OID_PKIX_ACC_DESCR","features":[126]},{"name":"XCN_OID_PKIX_CA_ISSUERS","features":[126]},{"name":"XCN_OID_PKIX_CA_REPOSITORY","features":[126]},{"name":"XCN_OID_PKIX_KP","features":[126]},{"name":"XCN_OID_PKIX_KP_CLIENT_AUTH","features":[126]},{"name":"XCN_OID_PKIX_KP_CODE_SIGNING","features":[126]},{"name":"XCN_OID_PKIX_KP_EMAIL_PROTECTION","features":[126]},{"name":"XCN_OID_PKIX_KP_IPSEC_END_SYSTEM","features":[126]},{"name":"XCN_OID_PKIX_KP_IPSEC_TUNNEL","features":[126]},{"name":"XCN_OID_PKIX_KP_IPSEC_USER","features":[126]},{"name":"XCN_OID_PKIX_KP_OCSP_SIGNING","features":[126]},{"name":"XCN_OID_PKIX_KP_SERVER_AUTH","features":[126]},{"name":"XCN_OID_PKIX_KP_TIMESTAMP_SIGNING","features":[126]},{"name":"XCN_OID_PKIX_NO_SIGNATURE","features":[126]},{"name":"XCN_OID_PKIX_OCSP","features":[126]},{"name":"XCN_OID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[126]},{"name":"XCN_OID_PKIX_OCSP_NOCHECK","features":[126]},{"name":"XCN_OID_PKIX_OCSP_NONCE","features":[126]},{"name":"XCN_OID_PKIX_PE","features":[126]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_CPS","features":[126]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[126]},{"name":"XCN_OID_PKIX_TIME_STAMPING","features":[126]},{"name":"XCN_OID_POLICY_CONSTRAINTS","features":[126]},{"name":"XCN_OID_POLICY_MAPPINGS","features":[126]},{"name":"XCN_OID_POSTAL_ADDRESS","features":[126]},{"name":"XCN_OID_POSTAL_CODE","features":[126]},{"name":"XCN_OID_POST_OFFICE_BOX","features":[126]},{"name":"XCN_OID_PREFERRED_DELIVERY_METHOD","features":[126]},{"name":"XCN_OID_PRESENTATION_ADDRESS","features":[126]},{"name":"XCN_OID_PRIVATEKEY_USAGE_PERIOD","features":[126]},{"name":"XCN_OID_PRODUCT_UPDATE","features":[126]},{"name":"XCN_OID_QC_EU_COMPLIANCE","features":[126]},{"name":"XCN_OID_QC_SSCD","features":[126]},{"name":"XCN_OID_QC_STATEMENTS_EXT","features":[126]},{"name":"XCN_OID_RDN_DUMMY_SIGNER","features":[126]},{"name":"XCN_OID_RDN_TPM_MANUFACTURER","features":[126]},{"name":"XCN_OID_RDN_TPM_MODEL","features":[126]},{"name":"XCN_OID_RDN_TPM_VERSION","features":[126]},{"name":"XCN_OID_REASON_CODE_HOLD","features":[126]},{"name":"XCN_OID_REGISTERED_ADDRESS","features":[126]},{"name":"XCN_OID_REMOVE_CERTIFICATE","features":[126]},{"name":"XCN_OID_RENEWAL_CERTIFICATE","features":[126]},{"name":"XCN_OID_REQUEST_CLIENT_INFO","features":[126]},{"name":"XCN_OID_REQUIRE_CERT_CHAIN_POLICY","features":[126]},{"name":"XCN_OID_REVOKED_LIST_SIGNER","features":[126]},{"name":"XCN_OID_RFC3161_counterSign","features":[126]},{"name":"XCN_OID_ROLE_OCCUPANT","features":[126]},{"name":"XCN_OID_ROOT_LIST_SIGNER","features":[126]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[126]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[126]},{"name":"XCN_OID_ROOT_PROGRAM_FLAGS","features":[126]},{"name":"XCN_OID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[126]},{"name":"XCN_OID_RSA","features":[126]},{"name":"XCN_OID_RSAES_OAEP","features":[126]},{"name":"XCN_OID_RSA_DES_EDE3_CBC","features":[126]},{"name":"XCN_OID_RSA_DH","features":[126]},{"name":"XCN_OID_RSA_ENCRYPT","features":[126]},{"name":"XCN_OID_RSA_HASH","features":[126]},{"name":"XCN_OID_RSA_MD2","features":[126]},{"name":"XCN_OID_RSA_MD2RSA","features":[126]},{"name":"XCN_OID_RSA_MD4","features":[126]},{"name":"XCN_OID_RSA_MD4RSA","features":[126]},{"name":"XCN_OID_RSA_MD5","features":[126]},{"name":"XCN_OID_RSA_MD5RSA","features":[126]},{"name":"XCN_OID_RSA_MGF1","features":[126]},{"name":"XCN_OID_RSA_PSPECIFIED","features":[126]},{"name":"XCN_OID_RSA_RC2CBC","features":[126]},{"name":"XCN_OID_RSA_RC4","features":[126]},{"name":"XCN_OID_RSA_RC5_CBCPad","features":[126]},{"name":"XCN_OID_RSA_RSA","features":[126]},{"name":"XCN_OID_RSA_SETOAEP_RSA","features":[126]},{"name":"XCN_OID_RSA_SHA1RSA","features":[126]},{"name":"XCN_OID_RSA_SHA256RSA","features":[126]},{"name":"XCN_OID_RSA_SHA384RSA","features":[126]},{"name":"XCN_OID_RSA_SHA512RSA","features":[126]},{"name":"XCN_OID_RSA_SMIMECapabilities","features":[126]},{"name":"XCN_OID_RSA_SMIMEalg","features":[126]},{"name":"XCN_OID_RSA_SMIMEalgCMS3DESwrap","features":[126]},{"name":"XCN_OID_RSA_SMIMEalgCMSRC2wrap","features":[126]},{"name":"XCN_OID_RSA_SMIMEalgESDH","features":[126]},{"name":"XCN_OID_RSA_SSA_PSS","features":[126]},{"name":"XCN_OID_RSA_certExtensions","features":[126]},{"name":"XCN_OID_RSA_challengePwd","features":[126]},{"name":"XCN_OID_RSA_contentType","features":[126]},{"name":"XCN_OID_RSA_counterSign","features":[126]},{"name":"XCN_OID_RSA_data","features":[126]},{"name":"XCN_OID_RSA_digestedData","features":[126]},{"name":"XCN_OID_RSA_emailAddr","features":[126]},{"name":"XCN_OID_RSA_encryptedData","features":[126]},{"name":"XCN_OID_RSA_envelopedData","features":[126]},{"name":"XCN_OID_RSA_extCertAttrs","features":[126]},{"name":"XCN_OID_RSA_hashedData","features":[126]},{"name":"XCN_OID_RSA_messageDigest","features":[126]},{"name":"XCN_OID_RSA_preferSignedData","features":[126]},{"name":"XCN_OID_RSA_signEnvData","features":[126]},{"name":"XCN_OID_RSA_signedData","features":[126]},{"name":"XCN_OID_RSA_signingTime","features":[126]},{"name":"XCN_OID_RSA_unstructAddr","features":[126]},{"name":"XCN_OID_RSA_unstructName","features":[126]},{"name":"XCN_OID_SEARCH_GUIDE","features":[126]},{"name":"XCN_OID_SEE_ALSO","features":[126]},{"name":"XCN_OID_SERIALIZED","features":[126]},{"name":"XCN_OID_SERVER_GATED_CRYPTO","features":[126]},{"name":"XCN_OID_SGC_NETSCAPE","features":[126]},{"name":"XCN_OID_SORTED_CTL","features":[126]},{"name":"XCN_OID_STATE_OR_PROVINCE_NAME","features":[126]},{"name":"XCN_OID_STREET_ADDRESS","features":[126]},{"name":"XCN_OID_SUBJECT_ALT_NAME","features":[126]},{"name":"XCN_OID_SUBJECT_ALT_NAME2","features":[126]},{"name":"XCN_OID_SUBJECT_DIR_ATTRS","features":[126]},{"name":"XCN_OID_SUBJECT_INFO_ACCESS","features":[126]},{"name":"XCN_OID_SUBJECT_KEY_IDENTIFIER","features":[126]},{"name":"XCN_OID_SUPPORTED_APPLICATION_CONTEXT","features":[126]},{"name":"XCN_OID_SUR_NAME","features":[126]},{"name":"XCN_OID_TELEPHONE_NUMBER","features":[126]},{"name":"XCN_OID_TELETEXT_TERMINAL_IDENTIFIER","features":[126]},{"name":"XCN_OID_TELEX_NUMBER","features":[126]},{"name":"XCN_OID_TIMESTAMP_TOKEN","features":[126]},{"name":"XCN_OID_TITLE","features":[126]},{"name":"XCN_OID_USER_CERTIFICATE","features":[126]},{"name":"XCN_OID_USER_PASSWORD","features":[126]},{"name":"XCN_OID_VERISIGN_BITSTRING_6_13","features":[126]},{"name":"XCN_OID_VERISIGN_ISS_STRONG_CRYPTO","features":[126]},{"name":"XCN_OID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[126]},{"name":"XCN_OID_VERISIGN_PRIVATE_6_9","features":[126]},{"name":"XCN_OID_WHQL_CRYPTO","features":[126]},{"name":"XCN_OID_X21_ADDRESS","features":[126]},{"name":"XCN_OID_X957","features":[126]},{"name":"XCN_OID_X957_DSA","features":[126]},{"name":"XCN_OID_X957_SHA1DSA","features":[126]},{"name":"XCN_OID_YESNO_TRUST_ATTR","features":[126]},{"name":"XCN_PROPERTYID_NONE","features":[126]},{"name":"XCN_PROV_DH_SCHANNEL","features":[126]},{"name":"XCN_PROV_DSS","features":[126]},{"name":"XCN_PROV_DSS_DH","features":[126]},{"name":"XCN_PROV_EC_ECDSA_FULL","features":[126]},{"name":"XCN_PROV_EC_ECDSA_SIG","features":[126]},{"name":"XCN_PROV_EC_ECNRA_FULL","features":[126]},{"name":"XCN_PROV_EC_ECNRA_SIG","features":[126]},{"name":"XCN_PROV_FORTEZZA","features":[126]},{"name":"XCN_PROV_INTEL_SEC","features":[126]},{"name":"XCN_PROV_MS_EXCHANGE","features":[126]},{"name":"XCN_PROV_NONE","features":[126]},{"name":"XCN_PROV_REPLACE_OWF","features":[126]},{"name":"XCN_PROV_RNG","features":[126]},{"name":"XCN_PROV_RSA_AES","features":[126]},{"name":"XCN_PROV_RSA_FULL","features":[126]},{"name":"XCN_PROV_RSA_SCHANNEL","features":[126]},{"name":"XCN_PROV_RSA_SIG","features":[126]},{"name":"XCN_PROV_SPYRUS_LYNKS","features":[126]},{"name":"XCN_PROV_SSL","features":[126]},{"name":"XECI_AUTOENROLL","features":[126]},{"name":"XECI_CERTREQ","features":[126]},{"name":"XECI_DISABLE","features":[126]},{"name":"XECI_REQWIZARD","features":[126]},{"name":"XECI_XENROLL","features":[126]},{"name":"XECP_STRING_PROPERTY","features":[126]},{"name":"XECR_CMC","features":[126]},{"name":"XECR_PKCS10_V1_5","features":[126]},{"name":"XECR_PKCS10_V2_0","features":[126]},{"name":"XECR_PKCS7","features":[126]},{"name":"XECT_EXTENSION_V1","features":[126]},{"name":"XECT_EXTENSION_V2","features":[126]},{"name":"XEKL_KEYSIZE","features":[126]},{"name":"XEKL_KEYSIZE_DEFAULT","features":[126]},{"name":"XEKL_KEYSIZE_INC","features":[126]},{"name":"XEKL_KEYSIZE_MAX","features":[126]},{"name":"XEKL_KEYSIZE_MIN","features":[126]},{"name":"XEKL_KEYSPEC","features":[126]},{"name":"XEKL_KEYSPEC_KEYX","features":[126]},{"name":"XEKL_KEYSPEC_SIG","features":[126]},{"name":"XEPR_CADNS","features":[126]},{"name":"XEPR_CAFRIENDLYNAME","features":[126]},{"name":"XEPR_CANAME","features":[126]},{"name":"XEPR_DATE","features":[126]},{"name":"XEPR_ENUM_FIRST","features":[126]},{"name":"XEPR_HASH","features":[126]},{"name":"XEPR_REQUESTID","features":[126]},{"name":"XEPR_TEMPLATENAME","features":[126]},{"name":"XEPR_V1TEMPLATENAME","features":[126]},{"name":"XEPR_V2TEMPLATEOID","features":[126]},{"name":"XEPR_VERSION","features":[126]},{"name":"dwCAXCHGOVERLAPPERIODCOUNTDEFAULT","features":[126]},{"name":"dwCAXCHGVALIDITYPERIODCOUNTDEFAULT","features":[126]},{"name":"dwCRLDELTAOVERLAPPERIODCOUNTDEFAULT","features":[126]},{"name":"dwCRLDELTAPERIODCOUNTDEFAULT","features":[126]},{"name":"dwCRLOVERLAPPERIODCOUNTDEFAULT","features":[126]},{"name":"dwCRLPERIODCOUNTDEFAULT","features":[126]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ENTERPRISE","features":[126]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ROOT","features":[126]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_STANDALONE","features":[126]},{"name":"szBACKUPANNOTATION","features":[126]},{"name":"szDBBASENAMEPARM","features":[126]},{"name":"szNAMESEPARATORDEFAULT","features":[126]},{"name":"szPROPASNTAG","features":[126]},{"name":"szRESTOREANNOTATION","features":[126]},{"name":"wszAT_EKCERTINF","features":[126]},{"name":"wszAT_TESTROOT","features":[126]},{"name":"wszCAPOLICYFILE","features":[126]},{"name":"wszCERTEXITMODULE_POSTFIX","features":[126]},{"name":"wszCERTIFICATETRANSPARENCYFLAGS","features":[126]},{"name":"wszCERTMANAGE_SUFFIX","features":[126]},{"name":"wszCERTPOLICYMODULE_POSTFIX","features":[126]},{"name":"wszCERT_TYPE","features":[126]},{"name":"wszCERT_TYPE_CLIENT","features":[126]},{"name":"wszCERT_TYPE_CODESIGN","features":[126]},{"name":"wszCERT_TYPE_CUSTOMER","features":[126]},{"name":"wszCERT_TYPE_MERCHANT","features":[126]},{"name":"wszCERT_TYPE_PAYMENT","features":[126]},{"name":"wszCERT_TYPE_SERVER","features":[126]},{"name":"wszCERT_VERSION","features":[126]},{"name":"wszCERT_VERSION_1","features":[126]},{"name":"wszCERT_VERSION_2","features":[126]},{"name":"wszCERT_VERSION_3","features":[126]},{"name":"wszCLASS_CERTADMIN","features":[126]},{"name":"wszCLASS_CERTCONFIG","features":[126]},{"name":"wszCLASS_CERTDBMEM","features":[126]},{"name":"wszCLASS_CERTENCODE","features":[126]},{"name":"wszCLASS_CERTGETCONFIG","features":[126]},{"name":"wszCLASS_CERTREQUEST","features":[126]},{"name":"wszCLASS_CERTSERVEREXIT","features":[126]},{"name":"wszCLASS_CERTSERVERPOLICY","features":[126]},{"name":"wszCLASS_CERTVIEW","features":[126]},{"name":"wszCMM_PROP_COPYRIGHT","features":[126]},{"name":"wszCMM_PROP_DESCRIPTION","features":[126]},{"name":"wszCMM_PROP_DISPLAY_HWND","features":[126]},{"name":"wszCMM_PROP_FILEVER","features":[126]},{"name":"wszCMM_PROP_ISMULTITHREADED","features":[126]},{"name":"wszCMM_PROP_NAME","features":[126]},{"name":"wszCMM_PROP_PRODUCTVER","features":[126]},{"name":"wszCNGENCRYPTIONALGORITHM","features":[126]},{"name":"wszCNGHASHALGORITHM","features":[126]},{"name":"wszCNGPUBLICKEYALGORITHM","features":[126]},{"name":"wszCONFIG_AUTHORITY","features":[126]},{"name":"wszCONFIG_COMMENT","features":[126]},{"name":"wszCONFIG_COMMONNAME","features":[126]},{"name":"wszCONFIG_CONFIG","features":[126]},{"name":"wszCONFIG_COUNTRY","features":[126]},{"name":"wszCONFIG_DESCRIPTION","features":[126]},{"name":"wszCONFIG_EXCHANGECERTIFICATE","features":[126]},{"name":"wszCONFIG_FLAGS","features":[126]},{"name":"wszCONFIG_LOCALITY","features":[126]},{"name":"wszCONFIG_ORGANIZATION","features":[126]},{"name":"wszCONFIG_ORGUNIT","features":[126]},{"name":"wszCONFIG_SANITIZEDNAME","features":[126]},{"name":"wszCONFIG_SANITIZEDSHORTNAME","features":[126]},{"name":"wszCONFIG_SERVER","features":[126]},{"name":"wszCONFIG_SHORTNAME","features":[126]},{"name":"wszCONFIG_SIGNATURECERTIFICATE","features":[126]},{"name":"wszCONFIG_STATE","features":[126]},{"name":"wszCONFIG_WEBENROLLMENTSERVERS","features":[126]},{"name":"wszCRLPUBLISHRETRYCOUNT","features":[126]},{"name":"wszCRTFILENAMEEXT","features":[126]},{"name":"wszDATFILENAMEEXT","features":[126]},{"name":"wszDBBACKUPCERTBACKDAT","features":[126]},{"name":"wszDBBACKUPSUBDIR","features":[126]},{"name":"wszDBFILENAMEEXT","features":[126]},{"name":"wszENCRYPTIONALGORITHM","features":[126]},{"name":"wszENROLLMENTAGENTRIGHTS","features":[126]},{"name":"wszHASHALGORITHM","features":[126]},{"name":"wszINFKEY_ALTERNATESIGNATUREALGORITHM","features":[126]},{"name":"wszINFKEY_ATTESTPRIVATEKEY","features":[126]},{"name":"wszINFKEY_CACAPABILITIES","features":[126]},{"name":"wszINFKEY_CACERTS","features":[126]},{"name":"wszINFKEY_CATHUMBPRINT","features":[126]},{"name":"wszINFKEY_CCDPSYNCDELTATIME","features":[126]},{"name":"wszINFKEY_CHALLENGEPASSWORD","features":[126]},{"name":"wszINFKEY_CONTINUE","features":[126]},{"name":"wszINFKEY_CRITICAL","features":[126]},{"name":"wszINFKEY_CRLDELTAPERIODCOUNT","features":[126]},{"name":"wszINFKEY_CRLDELTAPERIODSTRING","features":[126]},{"name":"wszINFKEY_CRLPERIODCOUNT","features":[126]},{"name":"wszINFKEY_CRLPERIODSTRING","features":[126]},{"name":"wszINFKEY_DIRECTORYNAME","features":[126]},{"name":"wszINFKEY_DNS","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERSTYPE","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS_A","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS_B","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS_BASE","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS_COFACTOR","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS_ORDER","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS_P","features":[126]},{"name":"wszINFKEY_ECCKEYPARAMETERS_SEED","features":[126]},{"name":"wszINFKEY_EMAIL","features":[126]},{"name":"wszINFKEY_EMPTY","features":[126]},{"name":"wszINFKEY_ENABLEKEYCOUNTING","features":[126]},{"name":"wszINFKEY_ENCRYPTIONALGORITHM","features":[126]},{"name":"wszINFKEY_ENCRYPTIONLENGTH","features":[126]},{"name":"wszINFKEY_EXCLUDE","features":[126]},{"name":"wszINFKEY_EXPORTABLE","features":[126]},{"name":"wszINFKEY_EXPORTABLEENCRYPTED","features":[126]},{"name":"wszINFKEY_FLAGS","features":[126]},{"name":"wszINFKEY_FORCEUTF8","features":[126]},{"name":"wszINFKEY_FRIENDLYNAME","features":[126]},{"name":"wszINFKEY_HASHALGORITHM","features":[126]},{"name":"wszINFKEY_INCLUDE","features":[126]},{"name":"wszINFKEY_INHIBITPOLICYMAPPING","features":[126]},{"name":"wszINFKEY_IPADDRESS","features":[126]},{"name":"wszINFKEY_KEYALGORITHM","features":[126]},{"name":"wszINFKEY_KEYALGORITHMPARMETERS","features":[126]},{"name":"wszINFKEY_KEYCONTAINER","features":[126]},{"name":"wszINFKEY_KEYLENGTH","features":[126]},{"name":"wszINFKEY_KEYPROTECTION","features":[126]},{"name":"wszINFKEY_KEYUSAGEEXTENSION","features":[126]},{"name":"wszINFKEY_KEYUSAGEPROPERTY","features":[126]},{"name":"wszINFKEY_LEGACYKEYSPEC","features":[126]},{"name":"wszINFKEY_LOADDEFAULTTEMPLATES","features":[126]},{"name":"wszINFKEY_MACHINEKEYSET","features":[126]},{"name":"wszINFKEY_NOTAFTER","features":[126]},{"name":"wszINFKEY_NOTBEFORE","features":[126]},{"name":"wszINFKEY_NOTICE","features":[126]},{"name":"wszINFKEY_OID","features":[126]},{"name":"wszINFKEY_OTHERNAME","features":[126]},{"name":"wszINFKEY_PATHLENGTH","features":[126]},{"name":"wszINFKEY_POLICIES","features":[126]},{"name":"wszINFKEY_PRIVATEKEYARCHIVE","features":[126]},{"name":"wszINFKEY_PROVIDERNAME","features":[126]},{"name":"wszINFKEY_PROVIDERTYPE","features":[126]},{"name":"wszINFKEY_PUBLICKEY","features":[126]},{"name":"wszINFKEY_PUBLICKEYPARAMETERS","features":[126]},{"name":"wszINFKEY_READERNAME","features":[126]},{"name":"wszINFKEY_REGISTEREDID","features":[126]},{"name":"wszINFKEY_RENEWALCERT","features":[126]},{"name":"wszINFKEY_RENEWALKEYLENGTH","features":[126]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODCOUNT","features":[126]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODSTRING","features":[126]},{"name":"wszINFKEY_REQUESTTYPE","features":[126]},{"name":"wszINFKEY_REQUIREEXPLICITPOLICY","features":[126]},{"name":"wszINFKEY_SECURITYDESCRIPTOR","features":[126]},{"name":"wszINFKEY_SERIALNUMBER","features":[126]},{"name":"wszINFKEY_SHOWALLCSPS","features":[126]},{"name":"wszINFKEY_SILENT","features":[126]},{"name":"wszINFKEY_SMIME","features":[126]},{"name":"wszINFKEY_SUBJECT","features":[126]},{"name":"wszINFKEY_SUBJECTNAMEFLAGS","features":[126]},{"name":"wszINFKEY_SUBTREE","features":[126]},{"name":"wszINFKEY_SUPPRESSDEFAULTS","features":[126]},{"name":"wszINFKEY_UICONTEXTMESSAGE","features":[126]},{"name":"wszINFKEY_UPN","features":[126]},{"name":"wszINFKEY_URL","features":[126]},{"name":"wszINFKEY_USEEXISTINGKEY","features":[126]},{"name":"wszINFKEY_USERPROTECTED","features":[126]},{"name":"wszINFKEY_UTF8","features":[126]},{"name":"wszINFKEY_X500NAMEFLAGS","features":[126]},{"name":"wszINFSECTION_AIA","features":[126]},{"name":"wszINFSECTION_APPLICATIONPOLICYCONSTRAINTS","features":[126]},{"name":"wszINFSECTION_APPLICATIONPOLICYMAPPINGS","features":[126]},{"name":"wszINFSECTION_APPLICATIONPOLICYSTATEMENT","features":[126]},{"name":"wszINFSECTION_BASICCONSTRAINTS","features":[126]},{"name":"wszINFSECTION_CAPOLICY","features":[126]},{"name":"wszINFSECTION_CCDP","features":[126]},{"name":"wszINFSECTION_CDP","features":[126]},{"name":"wszINFSECTION_CERTSERVER","features":[126]},{"name":"wszINFSECTION_EKU","features":[126]},{"name":"wszINFSECTION_EXTENSIONS","features":[126]},{"name":"wszINFSECTION_NAMECONSTRAINTS","features":[126]},{"name":"wszINFSECTION_NEWREQUEST","features":[126]},{"name":"wszINFSECTION_POLICYCONSTRAINTS","features":[126]},{"name":"wszINFSECTION_POLICYMAPPINGS","features":[126]},{"name":"wszINFSECTION_POLICYSTATEMENT","features":[126]},{"name":"wszINFSECTION_PROPERTIES","features":[126]},{"name":"wszINFSECTION_REQUESTATTRIBUTES","features":[126]},{"name":"wszINFVALUE_ENDORSEMENTKEY","features":[126]},{"name":"wszINFVALUE_REQUESTTYPE_CERT","features":[126]},{"name":"wszINFVALUE_REQUESTTYPE_CMC","features":[126]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS10","features":[126]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS7","features":[126]},{"name":"wszINFVALUE_REQUESTTYPE_SCEP","features":[126]},{"name":"wszLDAPSESSIONOPTIONVALUE","features":[126]},{"name":"wszLOCALIZEDTIMEPERIODUNITS","features":[126]},{"name":"wszLOGFILENAMEEXT","features":[126]},{"name":"wszLOGPATH","features":[126]},{"name":"wszMACHINEKEYSET","features":[126]},{"name":"wszMICROSOFTCERTMODULE_PREFIX","features":[126]},{"name":"wszNETSCAPEREVOCATIONTYPE","features":[126]},{"name":"wszOCSPCAPROP_CACERTIFICATE","features":[126]},{"name":"wszOCSPCAPROP_CACONFIG","features":[126]},{"name":"wszOCSPCAPROP_CSPNAME","features":[126]},{"name":"wszOCSPCAPROP_ERRORCODE","features":[126]},{"name":"wszOCSPCAPROP_HASHALGORITHMID","features":[126]},{"name":"wszOCSPCAPROP_KEYSPEC","features":[126]},{"name":"wszOCSPCAPROP_LOCALREVOCATIONINFORMATION","features":[126]},{"name":"wszOCSPCAPROP_PROVIDERCLSID","features":[126]},{"name":"wszOCSPCAPROP_PROVIDERPROPERTIES","features":[126]},{"name":"wszOCSPCAPROP_REMINDERDURATION","features":[126]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATE","features":[126]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATETEMPLATE","features":[126]},{"name":"wszOCSPCAPROP_SIGNINGFLAGS","features":[126]},{"name":"wszOCSPCOMMONPROP_MAXINCOMINGMESSAGESIZE","features":[126]},{"name":"wszOCSPCOMMONPROP_MAXNUMOFREQUESTENTRIES","features":[126]},{"name":"wszOCSPCOMMONPROP_REQFLAGS","features":[126]},{"name":"wszOCSPISAPIPROP_DEBUG","features":[126]},{"name":"wszOCSPISAPIPROP_MAXAGE","features":[126]},{"name":"wszOCSPISAPIPROP_MAXNUMOFCACHEENTRIES","features":[126]},{"name":"wszOCSPISAPIPROP_NUMOFBACKENDCONNECTIONS","features":[126]},{"name":"wszOCSPISAPIPROP_NUMOFTHREADS","features":[126]},{"name":"wszOCSPISAPIPROP_REFRESHRATE","features":[126]},{"name":"wszOCSPISAPIPROP_VIRTUALROOTNAME","features":[126]},{"name":"wszOCSPPROP_ARRAYCONTROLLER","features":[126]},{"name":"wszOCSPPROP_ARRAYMEMBERS","features":[126]},{"name":"wszOCSPPROP_AUDITFILTER","features":[126]},{"name":"wszOCSPPROP_DEBUG","features":[126]},{"name":"wszOCSPPROP_ENROLLPOLLINTERVAL","features":[126]},{"name":"wszOCSPPROP_LOGLEVEL","features":[126]},{"name":"wszOCSPREVPROP_BASECRL","features":[126]},{"name":"wszOCSPREVPROP_BASECRLURLS","features":[126]},{"name":"wszOCSPREVPROP_CRLURLTIMEOUT","features":[126]},{"name":"wszOCSPREVPROP_DELTACRL","features":[126]},{"name":"wszOCSPREVPROP_DELTACRLURLS","features":[126]},{"name":"wszOCSPREVPROP_ERRORCODE","features":[126]},{"name":"wszOCSPREVPROP_REFRESHTIMEOUT","features":[126]},{"name":"wszOCSPREVPROP_SERIALNUMBERSDIRS","features":[126]},{"name":"wszPERIODDAYS","features":[126]},{"name":"wszPERIODHOURS","features":[126]},{"name":"wszPERIODMINUTES","features":[126]},{"name":"wszPERIODMONTHS","features":[126]},{"name":"wszPERIODSECONDS","features":[126]},{"name":"wszPERIODWEEKS","features":[126]},{"name":"wszPERIODYEARS","features":[126]},{"name":"wszPFXFILENAMEEXT","features":[126]},{"name":"wszPROPATTESTATIONCHALLENGE","features":[126]},{"name":"wszPROPATTRIBNAME","features":[126]},{"name":"wszPROPATTRIBREQUESTID","features":[126]},{"name":"wszPROPATTRIBVALUE","features":[126]},{"name":"wszPROPCALLERNAME","features":[126]},{"name":"wszPROPCATYPE","features":[126]},{"name":"wszPROPCERTCLIENTMACHINE","features":[126]},{"name":"wszPROPCERTCOUNT","features":[126]},{"name":"wszPROPCERTIFICATEENROLLMENTFLAGS","features":[126]},{"name":"wszPROPCERTIFICATEGENERALFLAGS","features":[126]},{"name":"wszPROPCERTIFICATEHASH","features":[126]},{"name":"wszPROPCERTIFICATENOTAFTERDATE","features":[126]},{"name":"wszPROPCERTIFICATENOTBEFOREDATE","features":[126]},{"name":"wszPROPCERTIFICATEPRIVATEKEYFLAGS","features":[126]},{"name":"wszPROPCERTIFICATEPUBLICKEYALGORITHM","features":[126]},{"name":"wszPROPCERTIFICATEPUBLICKEYLENGTH","features":[126]},{"name":"wszPROPCERTIFICATERAWPUBLICKEY","features":[126]},{"name":"wszPROPCERTIFICATERAWPUBLICKEYALGORITHMPARAMETERS","features":[126]},{"name":"wszPROPCERTIFICATERAWSMIMECAPABILITIES","features":[126]},{"name":"wszPROPCERTIFICATEREQUESTID","features":[126]},{"name":"wszPROPCERTIFICATESERIALNUMBER","features":[126]},{"name":"wszPROPCERTIFICATESUBJECTKEYIDENTIFIER","features":[126]},{"name":"wszPROPCERTIFICATETEMPLATE","features":[126]},{"name":"wszPROPCERTIFICATETYPE","features":[126]},{"name":"wszPROPCERTIFICATEUPN","features":[126]},{"name":"wszPROPCERTSTATE","features":[126]},{"name":"wszPROPCERTSUFFIX","features":[126]},{"name":"wszPROPCERTTEMPLATE","features":[126]},{"name":"wszPROPCERTTYPE","features":[126]},{"name":"wszPROPCERTUSAGE","features":[126]},{"name":"wszPROPCHALLENGE","features":[126]},{"name":"wszPROPCLIENTBROWSERMACHINE","features":[126]},{"name":"wszPROPCLIENTDCDNS","features":[126]},{"name":"wszPROPCOMMONNAME","features":[126]},{"name":"wszPROPCONFIGDN","features":[126]},{"name":"wszPROPCOUNTRY","features":[126]},{"name":"wszPROPCRITICALTAG","features":[126]},{"name":"wszPROPCRLCOUNT","features":[126]},{"name":"wszPROPCRLEFFECTIVE","features":[126]},{"name":"wszPROPCRLINDEX","features":[126]},{"name":"wszPROPCRLLASTPUBLISHED","features":[126]},{"name":"wszPROPCRLMINBASE","features":[126]},{"name":"wszPROPCRLNAMEID","features":[126]},{"name":"wszPROPCRLNEXTPUBLISH","features":[126]},{"name":"wszPROPCRLNEXTUPDATE","features":[126]},{"name":"wszPROPCRLNUMBER","features":[126]},{"name":"wszPROPCRLPROPAGATIONCOMPLETE","features":[126]},{"name":"wszPROPCRLPUBLISHATTEMPTS","features":[126]},{"name":"wszPROPCRLPUBLISHERROR","features":[126]},{"name":"wszPROPCRLPUBLISHFLAGS","features":[126]},{"name":"wszPROPCRLPUBLISHSTATUSCODE","features":[126]},{"name":"wszPROPCRLRAWCRL","features":[126]},{"name":"wszPROPCRLROWID","features":[126]},{"name":"wszPROPCRLSTATE","features":[126]},{"name":"wszPROPCRLSUFFIX","features":[126]},{"name":"wszPROPCRLTHISPUBLISH","features":[126]},{"name":"wszPROPCRLTHISUPDATE","features":[126]},{"name":"wszPROPCROSSFOREST","features":[126]},{"name":"wszPROPDCNAME","features":[126]},{"name":"wszPROPDECIMALTAG","features":[126]},{"name":"wszPROPDELTACRLSDISABLED","features":[126]},{"name":"wszPROPDEVICESERIALNUMBER","features":[126]},{"name":"wszPROPDISPOSITION","features":[126]},{"name":"wszPROPDISPOSITIONDENY","features":[126]},{"name":"wszPROPDISPOSITIONPENDING","features":[126]},{"name":"wszPROPDISTINGUISHEDNAME","features":[126]},{"name":"wszPROPDN","features":[126]},{"name":"wszPROPDNS","features":[126]},{"name":"wszPROPDOMAINCOMPONENT","features":[126]},{"name":"wszPROPDOMAINDN","features":[126]},{"name":"wszPROPEMAIL","features":[126]},{"name":"wszPROPENDORSEMENTCERTIFICATEHASH","features":[126]},{"name":"wszPROPENDORSEMENTKEYHASH","features":[126]},{"name":"wszPROPEVENTLOGERROR","features":[126]},{"name":"wszPROPEVENTLOGEXHAUSTIVE","features":[126]},{"name":"wszPROPEVENTLOGTERSE","features":[126]},{"name":"wszPROPEVENTLOGVERBOSE","features":[126]},{"name":"wszPROPEVENTLOGWARNING","features":[126]},{"name":"wszPROPEXITCERTFILE","features":[126]},{"name":"wszPROPEXPECTEDCHALLENGE","features":[126]},{"name":"wszPROPEXPIRATIONDATE","features":[126]},{"name":"wszPROPEXTFLAGS","features":[126]},{"name":"wszPROPEXTNAME","features":[126]},{"name":"wszPROPEXTRAWVALUE","features":[126]},{"name":"wszPROPEXTREQUESTID","features":[126]},{"name":"wszPROPFILETAG","features":[126]},{"name":"wszPROPGIVENNAME","features":[126]},{"name":"wszPROPGUID","features":[126]},{"name":"wszPROPHEXTAG","features":[126]},{"name":"wszPROPINITIALS","features":[126]},{"name":"wszPROPIPADDRESS","features":[126]},{"name":"wszPROPKEYARCHIVED","features":[126]},{"name":"wszPROPLOCALITY","features":[126]},{"name":"wszPROPLOGLEVEL","features":[126]},{"name":"wszPROPMACHINEDNSNAME","features":[126]},{"name":"wszPROPMODULEREGLOC","features":[126]},{"name":"wszPROPNAMETYPE","features":[126]},{"name":"wszPROPOCTETTAG","features":[126]},{"name":"wszPROPOFFICER","features":[126]},{"name":"wszPROPOID","features":[126]},{"name":"wszPROPORGANIZATION","features":[126]},{"name":"wszPROPORGUNIT","features":[126]},{"name":"wszPROPPUBLISHEXPIREDCERTINCRL","features":[126]},{"name":"wszPROPRAWCACERTIFICATE","features":[126]},{"name":"wszPROPRAWCERTIFICATE","features":[126]},{"name":"wszPROPRAWCRL","features":[126]},{"name":"wszPROPRAWDELTACRL","features":[126]},{"name":"wszPROPRAWNAME","features":[126]},{"name":"wszPROPRAWPRECERTIFICATE","features":[126]},{"name":"wszPROPREQUESTARCHIVEDKEY","features":[126]},{"name":"wszPROPREQUESTATTRIBUTES","features":[126]},{"name":"wszPROPREQUESTCSPPROVIDER","features":[126]},{"name":"wszPROPREQUESTDISPOSITION","features":[126]},{"name":"wszPROPREQUESTDISPOSITIONMESSAGE","features":[126]},{"name":"wszPROPREQUESTDOT","features":[126]},{"name":"wszPROPREQUESTERCAACCESS","features":[126]},{"name":"wszPROPREQUESTERDN","features":[126]},{"name":"wszPROPREQUESTERNAME","features":[126]},{"name":"wszPROPREQUESTERNAMEFROMOLDCERTIFICATE","features":[126]},{"name":"wszPROPREQUESTERSAMNAME","features":[126]},{"name":"wszPROPREQUESTERUPN","features":[126]},{"name":"wszPROPREQUESTFLAGS","features":[126]},{"name":"wszPROPREQUESTKEYRECOVERYHASHES","features":[126]},{"name":"wszPROPREQUESTMACHINEDNS","features":[126]},{"name":"wszPROPREQUESTOSVERSION","features":[126]},{"name":"wszPROPREQUESTRAWARCHIVEDKEY","features":[126]},{"name":"wszPROPREQUESTRAWOLDCERTIFICATE","features":[126]},{"name":"wszPROPREQUESTRAWREQUEST","features":[126]},{"name":"wszPROPREQUESTREQUESTID","features":[126]},{"name":"wszPROPREQUESTRESOLVEDWHEN","features":[126]},{"name":"wszPROPREQUESTREVOKEDEFFECTIVEWHEN","features":[126]},{"name":"wszPROPREQUESTREVOKEDREASON","features":[126]},{"name":"wszPROPREQUESTREVOKEDWHEN","features":[126]},{"name":"wszPROPREQUESTSTATUSCODE","features":[126]},{"name":"wszPROPREQUESTSUBMITTEDWHEN","features":[126]},{"name":"wszPROPREQUESTTYPE","features":[126]},{"name":"wszPROPSANITIZEDCANAME","features":[126]},{"name":"wszPROPSANITIZEDSHORTNAME","features":[126]},{"name":"wszPROPSEAUDITFILTER","features":[126]},{"name":"wszPROPSEAUDITID","features":[126]},{"name":"wszPROPSERVERUPGRADED","features":[126]},{"name":"wszPROPSESSIONCOUNT","features":[126]},{"name":"wszPROPSIGNERAPPLICATIONPOLICIES","features":[126]},{"name":"wszPROPSIGNERPOLICIES","features":[126]},{"name":"wszPROPSTATE","features":[126]},{"name":"wszPROPSTREETADDRESS","features":[126]},{"name":"wszPROPSUBJECTALTNAME2","features":[126]},{"name":"wszPROPSUBJECTDOT","features":[126]},{"name":"wszPROPSURNAME","features":[126]},{"name":"wszPROPTEMPLATECHANGESEQUENCENUMBER","features":[126]},{"name":"wszPROPTEXTTAG","features":[126]},{"name":"wszPROPTITLE","features":[126]},{"name":"wszPROPUNSTRUCTUREDADDRESS","features":[126]},{"name":"wszPROPUNSTRUCTUREDNAME","features":[126]},{"name":"wszPROPUPN","features":[126]},{"name":"wszPROPURL","features":[126]},{"name":"wszPROPUSEDS","features":[126]},{"name":"wszPROPUSERDN","features":[126]},{"name":"wszPROPUTF8TAG","features":[126]},{"name":"wszPROPVALIDITYPERIODCOUNT","features":[126]},{"name":"wszPROPVALIDITYPERIODSTRING","features":[126]},{"name":"wszPROPVOLATILEMODE","features":[126]},{"name":"wszREGACTIVE","features":[126]},{"name":"wszREGAELOGLEVEL_OLD","features":[126]},{"name":"wszREGAIKCLOUDCAURL","features":[126]},{"name":"wszREGAIKKEYALGORITHM","features":[126]},{"name":"wszREGAIKKEYLENGTH","features":[126]},{"name":"wszREGALLPROVIDERS","features":[126]},{"name":"wszREGALTERNATEPUBLISHDOMAINS","features":[126]},{"name":"wszREGALTERNATESIGNATUREALGORITHM","features":[126]},{"name":"wszREGAUDITFILTER","features":[126]},{"name":"wszREGB2ICERTMANAGEMODULE","features":[126]},{"name":"wszREGBACKUPLOGDIRECTORY","features":[126]},{"name":"wszREGCACERTFILENAME","features":[126]},{"name":"wszREGCACERTHASH","features":[126]},{"name":"wszREGCACERTPUBLICATIONURLS","features":[126]},{"name":"wszREGCADESCRIPTION","features":[126]},{"name":"wszREGCAPATHLENGTH","features":[126]},{"name":"wszREGCASECURITY","features":[126]},{"name":"wszREGCASERIALNUMBER","features":[126]},{"name":"wszREGCASERVERNAME","features":[126]},{"name":"wszREGCATYPE","features":[126]},{"name":"wszREGCAUSEDS","features":[126]},{"name":"wszREGCAXCHGCERTHASH","features":[126]},{"name":"wszREGCAXCHGOVERLAPPERIODCOUNT","features":[126]},{"name":"wszREGCAXCHGOVERLAPPERIODSTRING","features":[126]},{"name":"wszREGCAXCHGVALIDITYPERIODCOUNT","features":[126]},{"name":"wszREGCAXCHGVALIDITYPERIODSTRING","features":[126]},{"name":"wszREGCERTENROLLCOMPATIBLE","features":[126]},{"name":"wszREGCERTIFICATETRANSPARENCYINFOOID","features":[126]},{"name":"wszREGCERTPUBLISHFLAGS","features":[126]},{"name":"wszREGCERTSRVDEBUG","features":[126]},{"name":"wszREGCHECKPOINTFILE","features":[126]},{"name":"wszREGCLOCKSKEWMINUTES","features":[126]},{"name":"wszREGCOMMONNAME","features":[126]},{"name":"wszREGCRLATTEMPTREPUBLISH","features":[126]},{"name":"wszREGCRLDELTANEXTPUBLISH","features":[126]},{"name":"wszREGCRLDELTAOVERLAPPERIODCOUNT","features":[126]},{"name":"wszREGCRLDELTAOVERLAPPERIODSTRING","features":[126]},{"name":"wszREGCRLDELTAPERIODCOUNT","features":[126]},{"name":"wszREGCRLDELTAPERIODSTRING","features":[126]},{"name":"wszREGCRLEDITFLAGS","features":[126]},{"name":"wszREGCRLFLAGS","features":[126]},{"name":"wszREGCRLNEXTPUBLISH","features":[126]},{"name":"wszREGCRLOVERLAPPERIODCOUNT","features":[126]},{"name":"wszREGCRLOVERLAPPERIODSTRING","features":[126]},{"name":"wszREGCRLPATH_OLD","features":[126]},{"name":"wszREGCRLPERIODCOUNT","features":[126]},{"name":"wszREGCRLPERIODSTRING","features":[126]},{"name":"wszREGCRLPUBLICATIONURLS","features":[126]},{"name":"wszREGDATABASERECOVERED","features":[126]},{"name":"wszREGDBDIRECTORY","features":[126]},{"name":"wszREGDBFLAGS","features":[126]},{"name":"wszREGDBLASTFULLBACKUP","features":[126]},{"name":"wszREGDBLASTINCREMENTALBACKUP","features":[126]},{"name":"wszREGDBLASTRECOVERY","features":[126]},{"name":"wszREGDBLOGDIRECTORY","features":[126]},{"name":"wszREGDBMAXREADSESSIONCOUNT","features":[126]},{"name":"wszREGDBSESSIONCOUNT","features":[126]},{"name":"wszREGDBSYSDIRECTORY","features":[126]},{"name":"wszREGDBTEMPDIRECTORY","features":[126]},{"name":"wszREGDEFAULTSMIME","features":[126]},{"name":"wszREGDIRECTORY","features":[126]},{"name":"wszREGDISABLEEXTENSIONLIST","features":[126]},{"name":"wszREGDSCONFIGDN","features":[126]},{"name":"wszREGDSDOMAINDN","features":[126]},{"name":"wszREGEDITFLAGS","features":[126]},{"name":"wszREGEKPUBLISTDIRECTORIES","features":[126]},{"name":"wszREGEKUOIDSFORPUBLISHEXPIREDCERTINCRL","features":[126]},{"name":"wszREGEKUOIDSFORVOLATILEREQUESTS","features":[126]},{"name":"wszREGENABLED","features":[126]},{"name":"wszREGENABLEDEKUFORDEFINEDCACERT","features":[126]},{"name":"wszREGENABLEENROLLEEREQUESTEXTENSIONLIST","features":[126]},{"name":"wszREGENABLEREQUESTEXTENSIONLIST","features":[126]},{"name":"wszREGENFORCEX500NAMELENGTHS","features":[126]},{"name":"wszREGENROLLFLAGS","features":[126]},{"name":"wszREGEXITBODYARG","features":[126]},{"name":"wszREGEXITBODYFORMAT","features":[126]},{"name":"wszREGEXITCRLISSUEDKEY","features":[126]},{"name":"wszREGEXITDENIEDKEY","features":[126]},{"name":"wszREGEXITIMPORTEDKEY","features":[126]},{"name":"wszREGEXITISSUEDKEY","features":[126]},{"name":"wszREGEXITPENDINGKEY","features":[126]},{"name":"wszREGEXITPROPNOTFOUND","features":[126]},{"name":"wszREGEXITREVOKEDKEY","features":[126]},{"name":"wszREGEXITSHUTDOWNKEY","features":[126]},{"name":"wszREGEXITSMTPAUTHENTICATE","features":[126]},{"name":"wszREGEXITSMTPCC","features":[126]},{"name":"wszREGEXITSMTPEVENTFILTER","features":[126]},{"name":"wszREGEXITSMTPFROM","features":[126]},{"name":"wszREGEXITSMTPKEY","features":[126]},{"name":"wszREGEXITSMTPSERVER","features":[126]},{"name":"wszREGEXITSMTPTEMPLATES","features":[126]},{"name":"wszREGEXITSMTPTO","features":[126]},{"name":"wszREGEXITSTARTUPKEY","features":[126]},{"name":"wszREGEXITTITLEARG","features":[126]},{"name":"wszREGEXITTITLEFORMAT","features":[126]},{"name":"wszREGFILEISSUERCERTURL_OLD","features":[126]},{"name":"wszREGFILEREVOCATIONCRLURL_OLD","features":[126]},{"name":"wszREGFORCETELETEX","features":[126]},{"name":"wszREGFTPISSUERCERTURL_OLD","features":[126]},{"name":"wszREGFTPREVOCATIONCRLURL_OLD","features":[126]},{"name":"wszREGHIGHLOGNUMBER","features":[126]},{"name":"wszREGHIGHSERIAL","features":[126]},{"name":"wszREGINTERFACEFLAGS","features":[126]},{"name":"wszREGISSUERCERTURLFLAGS","features":[126]},{"name":"wszREGISSUERCERTURL_OLD","features":[126]},{"name":"wszREGKEYBASE","features":[126]},{"name":"wszREGKEYCERTSVCPATH","features":[126]},{"name":"wszREGKEYCONFIG","features":[126]},{"name":"wszREGKEYCSP","features":[126]},{"name":"wszREGKEYDBPARAMETERS","features":[126]},{"name":"wszREGKEYENCRYPTIONCSP","features":[126]},{"name":"wszREGKEYENROLLMENT","features":[126]},{"name":"wszREGKEYEXITMODULES","features":[126]},{"name":"wszREGKEYGROUPPOLICYENROLLMENT","features":[126]},{"name":"wszREGKEYNOSYSTEMCERTSVCPATH","features":[126]},{"name":"wszREGKEYPOLICYMODULES","features":[126]},{"name":"wszREGKEYREPAIR","features":[126]},{"name":"wszREGKEYRESTOREINPROGRESS","features":[126]},{"name":"wszREGKEYSIZE","features":[126]},{"name":"wszREGKRACERTCOUNT","features":[126]},{"name":"wszREGKRACERTHASH","features":[126]},{"name":"wszREGKRAFLAGS","features":[126]},{"name":"wszREGLDAPFLAGS","features":[126]},{"name":"wszREGLDAPISSUERCERTURL_OLD","features":[126]},{"name":"wszREGLDAPREVOCATIONCRLURL_OLD","features":[126]},{"name":"wszREGLDAPREVOCATIONDNTEMPLATE_OLD","features":[126]},{"name":"wszREGLDAPREVOCATIONDN_OLD","features":[126]},{"name":"wszREGLDAPSESSIONOPTIONS","features":[126]},{"name":"wszREGLOGLEVEL","features":[126]},{"name":"wszREGLOGPATH","features":[126]},{"name":"wszREGLOWLOGNUMBER","features":[126]},{"name":"wszREGMAXINCOMINGALLOCSIZE","features":[126]},{"name":"wszREGMAXINCOMINGMESSAGESIZE","features":[126]},{"name":"wszREGMAXPENDINGREQUESTDAYS","features":[126]},{"name":"wszREGMAXSCTLISTSIZE","features":[126]},{"name":"wszREGNAMESEPARATOR","features":[126]},{"name":"wszREGNETSCAPECERTTYPE","features":[126]},{"name":"wszREGOFFICERRIGHTS","features":[126]},{"name":"wszREGPARENTCAMACHINE","features":[126]},{"name":"wszREGPARENTCANAME","features":[126]},{"name":"wszREGPOLICYFLAGS","features":[126]},{"name":"wszREGPRESERVESCEPDUMMYCERTS","features":[126]},{"name":"wszREGPROCESSINGFLAGS","features":[126]},{"name":"wszREGPROVIDER","features":[126]},{"name":"wszREGPROVIDERTYPE","features":[126]},{"name":"wszREGREQUESTDISPOSITION","features":[126]},{"name":"wszREGREQUESTFILENAME","features":[126]},{"name":"wszREGREQUESTID","features":[126]},{"name":"wszREGREQUESTKEYCONTAINER","features":[126]},{"name":"wszREGREQUESTKEYINDEX","features":[126]},{"name":"wszREGRESTOREMAP","features":[126]},{"name":"wszREGRESTOREMAPCOUNT","features":[126]},{"name":"wszREGRESTORESTATUS","features":[126]},{"name":"wszREGREVOCATIONCRLURL_OLD","features":[126]},{"name":"wszREGREVOCATIONTYPE","features":[126]},{"name":"wszREGREVOCATIONURL","features":[126]},{"name":"wszREGROLESEPARATIONENABLED","features":[126]},{"name":"wszREGSETUPSTATUS","features":[126]},{"name":"wszREGSP4DEFAULTCONFIGURATION","features":[126]},{"name":"wszREGSP4KEYSETNAME","features":[126]},{"name":"wszREGSP4NAMES","features":[126]},{"name":"wszREGSP4QUERIES","features":[126]},{"name":"wszREGSP4SUBJECTNAMESEPARATOR","features":[126]},{"name":"wszREGSUBJECTALTNAME","features":[126]},{"name":"wszREGSUBJECTALTNAME2","features":[126]},{"name":"wszREGSUBJECTTEMPLATE","features":[126]},{"name":"wszREGSYMMETRICKEYSIZE","features":[126]},{"name":"wszREGUNICODE","features":[126]},{"name":"wszREGUPNMAP","features":[126]},{"name":"wszREGUSEDEFINEDCACERTINREQ","features":[126]},{"name":"wszREGVALIDITYPERIODCOUNT","features":[126]},{"name":"wszREGVALIDITYPERIODSTRING","features":[126]},{"name":"wszREGVERIFYFLAGS","features":[126]},{"name":"wszREGVERSION","features":[126]},{"name":"wszREGVIEWAGEMINUTES","features":[126]},{"name":"wszREGVIEWIDLEMINUTES","features":[126]},{"name":"wszREGWEBCLIENTCAMACHINE","features":[126]},{"name":"wszREGWEBCLIENTCANAME","features":[126]},{"name":"wszREGWEBCLIENTCATYPE","features":[126]},{"name":"wszSECUREDATTRIBUTES","features":[126]},{"name":"wszSERVICE_NAME","features":[126]},{"name":"wszzDEFAULTSIGNEDATTRIBUTES","features":[126]}],"492":[{"name":"CryptSIPAddProvider","features":[3,125]},{"name":"CryptSIPCreateIndirectData","features":[3,124,125]},{"name":"CryptSIPGetCaps","features":[3,124,125]},{"name":"CryptSIPGetSealedDigest","features":[3,124,125]},{"name":"CryptSIPGetSignedDataMsg","features":[3,124,125]},{"name":"CryptSIPLoad","features":[3,124,125]},{"name":"CryptSIPPutSignedDataMsg","features":[3,124,125]},{"name":"CryptSIPRemoveProvider","features":[3,125]},{"name":"CryptSIPRemoveSignedDataMsg","features":[3,124,125]},{"name":"CryptSIPRetrieveSubjectGuid","features":[3,125]},{"name":"CryptSIPRetrieveSubjectGuidForCatalogFile","features":[3,125]},{"name":"CryptSIPVerifyIndirectData","features":[3,124,125]},{"name":"MSSIP_ADDINFO_BLOB","features":[125]},{"name":"MSSIP_ADDINFO_CATMEMBER","features":[125]},{"name":"MSSIP_ADDINFO_FLAT","features":[125]},{"name":"MSSIP_ADDINFO_NONE","features":[125]},{"name":"MSSIP_ADDINFO_NONMSSIP","features":[125]},{"name":"MSSIP_FLAGS_MULTI_HASH","features":[125]},{"name":"MSSIP_FLAGS_PROHIBIT_RESIZE_ON_CREATE","features":[125]},{"name":"MSSIP_FLAGS_USE_CATALOG","features":[125]},{"name":"MS_ADDINFO_BLOB","features":[125]},{"name":"MS_ADDINFO_FLAT","features":[125]},{"name":"SIP_ADD_NEWPROVIDER","features":[125]},{"name":"SIP_CAP_FLAG_SEALING","features":[125]},{"name":"SIP_CAP_SET_CUR_VER","features":[125]},{"name":"SIP_CAP_SET_V2","features":[3,125]},{"name":"SIP_CAP_SET_V3","features":[3,125]},{"name":"SIP_CAP_SET_VERSION_2","features":[125]},{"name":"SIP_CAP_SET_VERSION_3","features":[125]},{"name":"SIP_DISPATCH_INFO","features":[3,124,125]},{"name":"SIP_INDIRECT_DATA","features":[125]},{"name":"SIP_MAX_MAGIC_NUMBER","features":[125]},{"name":"SIP_SUBJECTINFO","features":[3,124,125]},{"name":"SPC_MARKER_CHECK_CURRENTLY_SUPPORTED_FLAGS","features":[125]},{"name":"SPC_MARKER_CHECK_SKIP_SIP_INDIRECT_DATA_FLAG","features":[125]},{"name":"SPC_RELAXED_PE_MARKER_CHECK","features":[125]},{"name":"pCryptSIPCreateIndirectData","features":[3,124,125]},{"name":"pCryptSIPGetCaps","features":[3,124,125]},{"name":"pCryptSIPGetSealedDigest","features":[3,124,125]},{"name":"pCryptSIPGetSignedDataMsg","features":[3,124,125]},{"name":"pCryptSIPPutSignedDataMsg","features":[3,124,125]},{"name":"pCryptSIPRemoveSignedDataMsg","features":[3,124,125]},{"name":"pCryptSIPVerifyIndirectData","features":[3,124,125]},{"name":"pfnIsFileSupported","features":[3,125]},{"name":"pfnIsFileSupportedName","features":[3,125]}],"493":[{"name":"ACTION_REVOCATION_DEFAULT_CACHE","features":[127]},{"name":"ACTION_REVOCATION_DEFAULT_ONLINE","features":[127]},{"name":"CERTVIEW_CRYPTUI_LPARAM","features":[127]},{"name":"CERT_CERTIFICATE_ACTION_VERIFY","features":[127]},{"name":"CERT_CREDENTIAL_PROVIDER_ID","features":[127]},{"name":"CERT_DISPWELL_DISTRUST_ADD_CA_CERT","features":[127]},{"name":"CERT_DISPWELL_DISTRUST_ADD_LEAF_CERT","features":[127]},{"name":"CERT_DISPWELL_DISTRUST_CA_CERT","features":[127]},{"name":"CERT_DISPWELL_DISTRUST_LEAF_CERT","features":[127]},{"name":"CERT_DISPWELL_SELECT","features":[127]},{"name":"CERT_DISPWELL_TRUST_ADD_CA_CERT","features":[127]},{"name":"CERT_DISPWELL_TRUST_ADD_LEAF_CERT","features":[127]},{"name":"CERT_DISPWELL_TRUST_CA_CERT","features":[127]},{"name":"CERT_DISPWELL_TRUST_LEAF_CERT","features":[127]},{"name":"CERT_FILTER_DATA","features":[127]},{"name":"CERT_FILTER_EXTENSION_MATCH","features":[127]},{"name":"CERT_FILTER_INCLUDE_V1_CERTS","features":[127]},{"name":"CERT_FILTER_ISSUER_CERTS_ONLY","features":[127]},{"name":"CERT_FILTER_KEY_EXISTS","features":[127]},{"name":"CERT_FILTER_LEAF_CERTS_ONLY","features":[127]},{"name":"CERT_FILTER_OP_EQUALITY","features":[127]},{"name":"CERT_FILTER_OP_EXISTS","features":[127]},{"name":"CERT_FILTER_OP_NOT_EXISTS","features":[127]},{"name":"CERT_FILTER_VALID_SIGNATURE","features":[127]},{"name":"CERT_FILTER_VALID_TIME_RANGE","features":[127]},{"name":"CERT_SELECTUI_INPUT","features":[3,127]},{"name":"CERT_SELECT_STRUCT_A","features":[3,127]},{"name":"CERT_SELECT_STRUCT_FLAGS","features":[127]},{"name":"CERT_SELECT_STRUCT_W","features":[3,127]},{"name":"CERT_TRUST_DO_FULL_SEARCH","features":[127]},{"name":"CERT_TRUST_DO_FULL_TRUST","features":[127]},{"name":"CERT_TRUST_MASK","features":[127]},{"name":"CERT_TRUST_PERMIT_MISSING_CRLS","features":[127]},{"name":"CERT_VALIDITY_AFTER_END","features":[127]},{"name":"CERT_VALIDITY_BEFORE_START","features":[127]},{"name":"CERT_VALIDITY_CERTIFICATE_REVOKED","features":[127]},{"name":"CERT_VALIDITY_CRL_OUT_OF_DATE","features":[127]},{"name":"CERT_VALIDITY_EXPLICITLY_DISTRUSTED","features":[127]},{"name":"CERT_VALIDITY_EXTENDED_USAGE_FAILURE","features":[127]},{"name":"CERT_VALIDITY_ISSUER_DISTRUST","features":[127]},{"name":"CERT_VALIDITY_ISSUER_INVALID","features":[127]},{"name":"CERT_VALIDITY_KEY_USAGE_EXT_FAILURE","features":[127]},{"name":"CERT_VALIDITY_MASK_TRUST","features":[127]},{"name":"CERT_VALIDITY_MASK_VALIDITY","features":[127]},{"name":"CERT_VALIDITY_NAME_CONSTRAINTS_FAILURE","features":[127]},{"name":"CERT_VALIDITY_NO_CRL_FOUND","features":[127]},{"name":"CERT_VALIDITY_NO_ISSUER_CERT_FOUND","features":[127]},{"name":"CERT_VALIDITY_NO_TRUST_DATA","features":[127]},{"name":"CERT_VALIDITY_OTHER_ERROR","features":[127]},{"name":"CERT_VALIDITY_OTHER_EXTENSION_FAILURE","features":[127]},{"name":"CERT_VALIDITY_PERIOD_NESTING_FAILURE","features":[127]},{"name":"CERT_VALIDITY_SIGNATURE_FAILS","features":[127]},{"name":"CERT_VALIDITY_UNKNOWN_CRITICAL_EXTENSION","features":[127]},{"name":"CERT_VERIFY_CERTIFICATE_TRUST","features":[3,127]},{"name":"CERT_VIEWPROPERTIES_STRUCT_A","features":[3,14,127,42,52]},{"name":"CERT_VIEWPROPERTIES_STRUCT_FLAGS","features":[127]},{"name":"CERT_VIEWPROPERTIES_STRUCT_W","features":[3,14,127,42,52]},{"name":"CM_ADD_CERT_STORES","features":[127]},{"name":"CM_ENABLEHOOK","features":[127]},{"name":"CM_ENABLETEMPLATE","features":[127]},{"name":"CM_HIDE_ADVANCEPAGE","features":[127]},{"name":"CM_HIDE_DETAILPAGE","features":[127]},{"name":"CM_HIDE_TRUSTPAGE","features":[127]},{"name":"CM_NO_EDITTRUST","features":[127]},{"name":"CM_NO_NAMECHANGE","features":[127]},{"name":"CM_SHOW_HELP","features":[127]},{"name":"CM_SHOW_HELPICON","features":[127]},{"name":"CM_VIEWFLAGS_MASK","features":[127]},{"name":"CRYPTDLG_ACTION_MASK","features":[127]},{"name":"CRYPTDLG_CACHE_ONLY_URL_RETRIEVAL","features":[127]},{"name":"CRYPTDLG_DISABLE_AIA","features":[127]},{"name":"CRYPTDLG_POLICY_MASK","features":[127]},{"name":"CRYPTDLG_REVOCATION_CACHE","features":[127]},{"name":"CRYPTDLG_REVOCATION_DEFAULT","features":[127]},{"name":"CRYPTDLG_REVOCATION_NONE","features":[127]},{"name":"CRYPTDLG_REVOCATION_ONLINE","features":[127]},{"name":"CRYPTUI_ACCEPT_DECLINE_STYLE","features":[127]},{"name":"CRYPTUI_CACHE_ONLY_URL_RETRIEVAL","features":[127]},{"name":"CRYPTUI_CERT_MGR_PUBLISHER_TAB","features":[127]},{"name":"CRYPTUI_CERT_MGR_SINGLE_TAB_FLAG","features":[127]},{"name":"CRYPTUI_CERT_MGR_STRUCT","features":[3,127]},{"name":"CRYPTUI_CERT_MGR_TAB_MASK","features":[127]},{"name":"CRYPTUI_DISABLE_ADDTOSTORE","features":[127]},{"name":"CRYPTUI_DISABLE_EDITPROPERTIES","features":[127]},{"name":"CRYPTUI_DISABLE_EXPORT","features":[127]},{"name":"CRYPTUI_DISABLE_HTMLLINK","features":[127]},{"name":"CRYPTUI_DISABLE_ISSUERSTATEMENT","features":[127]},{"name":"CRYPTUI_DONT_OPEN_STORES","features":[127]},{"name":"CRYPTUI_ENABLE_ADDTOSTORE","features":[127]},{"name":"CRYPTUI_ENABLE_EDITPROPERTIES","features":[127]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECKING","features":[127]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN","features":[127]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[127]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_END_CERT","features":[127]},{"name":"CRYPTUI_HIDE_DETAILPAGE","features":[127]},{"name":"CRYPTUI_HIDE_HIERARCHYPAGE","features":[127]},{"name":"CRYPTUI_IGNORE_UNTRUSTED_ROOT","features":[127]},{"name":"CRYPTUI_INITDIALOG_STRUCT","features":[3,127]},{"name":"CRYPTUI_ONLY_OPEN_ROOT_STORE","features":[127]},{"name":"CRYPTUI_SELECT_EXPIRATION_COLUMN","features":[127]},{"name":"CRYPTUI_SELECT_FRIENDLYNAME_COLUMN","features":[127]},{"name":"CRYPTUI_SELECT_INTENDEDUSE_COLUMN","features":[127]},{"name":"CRYPTUI_SELECT_ISSUEDBY_COLUMN","features":[127]},{"name":"CRYPTUI_SELECT_ISSUEDTO_COLUMN","features":[127]},{"name":"CRYPTUI_SELECT_LOCATION_COLUMN","features":[127]},{"name":"CRYPTUI_VIEWCERTIFICATE_FLAGS","features":[127]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTA","features":[3,14,124,125,127,128,42,52]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTW","features":[3,14,124,125,127,128,42,52]},{"name":"CRYPTUI_WARN_REMOTE_TRUST","features":[127]},{"name":"CRYPTUI_WARN_UNTRUSTED_ROOT","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_ADDITIONAL_CERT_CHOICE","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN_NO_ROOT","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_NONE","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_BLOB_INFO","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT_PVK_INFO","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_COMMERCIAL","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CONTEXT","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXCLUDE_PAGE_HASHES","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXTENDED_INFO","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INCLUDE_PAGE_HASHES","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INDIVIDUAL","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INFO","features":[3,127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_NONE","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE_INFO","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_OPTION","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_PROV","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SIG_TYPE","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE_INFO","features":[3,127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_BLOB","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_FILE","features":[127]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_NONE","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_CERTCONTEXT_INFO","features":[3,127]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_CONTEXT","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE_CERTIFICATES_ONLY","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_CRL_CONTEXT","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_CTL_CONTEXT","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_BASE64","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CRL","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CTL","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_DER","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PFX","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PKCS7","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_SERIALIZED_CERT_STORE","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_INFO","features":[3,127]},{"name":"CRYPTUI_WIZ_EXPORT_NO_DELETE_PRIVATE_KEY","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_PRIVATE_KEY","features":[127]},{"name":"CRYPTUI_WIZ_EXPORT_SUBJECT","features":[127]},{"name":"CRYPTUI_WIZ_FLAGS","features":[127]},{"name":"CRYPTUI_WIZ_IGNORE_NO_UI_FLAG_FOR_CSPS","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CERT","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CRL","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CTL","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_NO_CHANGE_DEST_STORE","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_REMOTE_DEST_STORE","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_SRC_INFO","features":[3,127]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_CONTEXT","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_STORE","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CRL_CONTEXT","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CTL_CONTEXT","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_FILE","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_OPTION","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_TO_CURRENTUSER","features":[127]},{"name":"CRYPTUI_WIZ_IMPORT_TO_LOCALMACHINE","features":[127]},{"name":"CRYPTUI_WIZ_NO_UI","features":[127]},{"name":"CRYPTUI_WIZ_NO_UI_EXCEPT_CSP","features":[127]},{"name":"CRYTPDLG_FLAGS_MASK","features":[127]},{"name":"CSS_ALLOWMULTISELECT","features":[127]},{"name":"CSS_ENABLEHOOK","features":[127]},{"name":"CSS_ENABLETEMPLATE","features":[127]},{"name":"CSS_ENABLETEMPLATEHANDLE","features":[127]},{"name":"CSS_HIDE_PROPERTIES","features":[127]},{"name":"CSS_SELECTCERT_MASK","features":[127]},{"name":"CSS_SHOW_HELP","features":[127]},{"name":"CTL_MODIFY_REQUEST","features":[3,127]},{"name":"CTL_MODIFY_REQUEST_ADD_NOT_TRUSTED","features":[127]},{"name":"CTL_MODIFY_REQUEST_ADD_TRUSTED","features":[127]},{"name":"CTL_MODIFY_REQUEST_OPERATION","features":[127]},{"name":"CTL_MODIFY_REQUEST_REMOVE","features":[127]},{"name":"CertSelectionGetSerializedBlob","features":[3,127]},{"name":"CryptUIDlgCertMgr","features":[3,127]},{"name":"CryptUIDlgSelectCertificateFromStore","features":[3,127]},{"name":"CryptUIDlgViewCertificateA","features":[3,14,124,125,127,128,42,52]},{"name":"CryptUIDlgViewCertificateW","features":[3,14,124,125,127,128,42,52]},{"name":"CryptUIDlgViewContext","features":[3,127]},{"name":"CryptUIWizDigitalSign","features":[3,127]},{"name":"CryptUIWizExport","features":[3,127]},{"name":"CryptUIWizFreeDigitalSignContext","features":[3,127]},{"name":"CryptUIWizImport","features":[3,127]},{"name":"PFNCFILTERPROC","features":[3,127]},{"name":"PFNCMFILTERPROC","features":[3,127]},{"name":"PFNCMHOOKPROC","features":[3,127]},{"name":"PFNTRUSTHELPER","features":[3,127]},{"name":"POLICY_IGNORE_NON_CRITICAL_BC","features":[127]},{"name":"SELCERT_ALGORITHM","features":[127]},{"name":"SELCERT_CERTLIST","features":[127]},{"name":"SELCERT_FINEPRINT","features":[127]},{"name":"SELCERT_ISSUED_TO","features":[127]},{"name":"SELCERT_PROPERTIES","features":[127]},{"name":"SELCERT_SERIAL_NUM","features":[127]},{"name":"SELCERT_THUMBPRINT","features":[127]},{"name":"SELCERT_VALIDITY","features":[127]},{"name":"szCERT_CERTIFICATE_ACTION_VERIFY","features":[127]}],"494":[{"name":"AllUserData","features":[129]},{"name":"CurrentUserData","features":[129]},{"name":"DIAGNOSTIC_DATA_EVENT_BINARY_STATS","features":[129]},{"name":"DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION","features":[129]},{"name":"DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION","features":[129]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION","features":[129]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_STATS","features":[129]},{"name":"DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION","features":[129]},{"name":"DIAGNOSTIC_DATA_GENERAL_STATS","features":[129]},{"name":"DIAGNOSTIC_DATA_RECORD","features":[3,129]},{"name":"DIAGNOSTIC_DATA_SEARCH_CRITERIA","features":[3,129]},{"name":"DIAGNOSTIC_REPORT_DATA","features":[3,129]},{"name":"DIAGNOSTIC_REPORT_PARAMETER","features":[129]},{"name":"DIAGNOSTIC_REPORT_SIGNATURE","features":[129]},{"name":"DdqAccessLevel","features":[129]},{"name":"DdqCancelDiagnosticRecordOperation","features":[129]},{"name":"DdqCloseSession","features":[129]},{"name":"DdqCreateSession","features":[129]},{"name":"DdqExtractDiagnosticReport","features":[129]},{"name":"DdqFreeDiagnosticRecordLocaleTags","features":[129]},{"name":"DdqFreeDiagnosticRecordPage","features":[129]},{"name":"DdqFreeDiagnosticRecordProducerCategories","features":[129]},{"name":"DdqFreeDiagnosticRecordProducers","features":[129]},{"name":"DdqFreeDiagnosticReport","features":[129]},{"name":"DdqGetDiagnosticDataAccessLevelAllowed","features":[129]},{"name":"DdqGetDiagnosticRecordAtIndex","features":[3,129]},{"name":"DdqGetDiagnosticRecordBinaryDistribution","features":[129]},{"name":"DdqGetDiagnosticRecordCategoryAtIndex","features":[129]},{"name":"DdqGetDiagnosticRecordCategoryCount","features":[129]},{"name":"DdqGetDiagnosticRecordCount","features":[129]},{"name":"DdqGetDiagnosticRecordLocaleTagAtIndex","features":[129]},{"name":"DdqGetDiagnosticRecordLocaleTagCount","features":[129]},{"name":"DdqGetDiagnosticRecordLocaleTags","features":[129]},{"name":"DdqGetDiagnosticRecordPage","features":[3,129]},{"name":"DdqGetDiagnosticRecordPayload","features":[129]},{"name":"DdqGetDiagnosticRecordProducerAtIndex","features":[129]},{"name":"DdqGetDiagnosticRecordProducerCategories","features":[129]},{"name":"DdqGetDiagnosticRecordProducerCount","features":[129]},{"name":"DdqGetDiagnosticRecordProducers","features":[129]},{"name":"DdqGetDiagnosticRecordStats","features":[3,129]},{"name":"DdqGetDiagnosticRecordSummary","features":[129]},{"name":"DdqGetDiagnosticRecordTagDistribution","features":[129]},{"name":"DdqGetDiagnosticReport","features":[129]},{"name":"DdqGetDiagnosticReportAtIndex","features":[3,129]},{"name":"DdqGetDiagnosticReportCount","features":[129]},{"name":"DdqGetDiagnosticReportStoreReportCount","features":[129]},{"name":"DdqGetSessionAccessLevel","features":[129]},{"name":"DdqGetTranscriptConfiguration","features":[129]},{"name":"DdqIsDiagnosticRecordSampledIn","features":[3,129]},{"name":"DdqSetTranscriptConfiguration","features":[129]},{"name":"HDIAGNOSTIC_DATA_QUERY_SESSION","features":[129]},{"name":"HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION","features":[129]},{"name":"HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION","features":[129]},{"name":"HDIAGNOSTIC_EVENT_TAG_DESCRIPTION","features":[129]},{"name":"HDIAGNOSTIC_RECORD","features":[129]},{"name":"HDIAGNOSTIC_REPORT","features":[129]},{"name":"NoData","features":[129]}],"495":[{"name":"DSCreateISecurityInfoObject","features":[3,130]},{"name":"DSCreateISecurityInfoObjectEx","features":[3,130]},{"name":"DSCreateSecurityPage","features":[3,130,42]},{"name":"DSEditSecurity","features":[3,130]},{"name":"DSSI_IS_ROOT","features":[130]},{"name":"DSSI_NO_ACCESS_CHECK","features":[130]},{"name":"DSSI_NO_EDIT_OWNER","features":[130]},{"name":"DSSI_NO_EDIT_SACL","features":[130]},{"name":"DSSI_NO_FILTER","features":[130]},{"name":"DSSI_NO_READONLY_MESSAGE","features":[130]},{"name":"DSSI_READ_ONLY","features":[130]},{"name":"PFNDSCREATEISECINFO","features":[3,130]},{"name":"PFNDSCREATEISECINFOEX","features":[3,130]},{"name":"PFNDSCREATESECPAGE","features":[3,130,42]},{"name":"PFNDSEDITSECURITY","features":[3,130]},{"name":"PFNREADOBJECTSECURITY","features":[3,130]},{"name":"PFNWRITEOBJECTSECURITY","features":[3,130]}],"496":[{"name":"ENTERPRISE_DATA_POLICIES","features":[131]},{"name":"ENTERPRISE_POLICY_ALLOWED","features":[131]},{"name":"ENTERPRISE_POLICY_ENLIGHTENED","features":[131]},{"name":"ENTERPRISE_POLICY_EXEMPT","features":[131]},{"name":"ENTERPRISE_POLICY_NONE","features":[131]},{"name":"FILE_UNPROTECT_OPTIONS","features":[131]},{"name":"HTHREAD_NETWORK_CONTEXT","features":[3,131]},{"name":"IProtectionPolicyManagerInterop","features":[131]},{"name":"IProtectionPolicyManagerInterop2","features":[131]},{"name":"IProtectionPolicyManagerInterop3","features":[131]},{"name":"ProtectFileToEnterpriseIdentity","features":[131]},{"name":"SRPHOSTING_TYPE","features":[131]},{"name":"SRPHOSTING_TYPE_NONE","features":[131]},{"name":"SRPHOSTING_TYPE_WINHTTP","features":[131]},{"name":"SRPHOSTING_TYPE_WININET","features":[131]},{"name":"SRPHOSTING_VERSION","features":[131]},{"name":"SRPHOSTING_VERSION1","features":[131]},{"name":"SrpCloseThreadNetworkContext","features":[3,131]},{"name":"SrpCreateThreadNetworkContext","features":[3,131]},{"name":"SrpDisablePermissiveModeFileEncryption","features":[131]},{"name":"SrpDoesPolicyAllowAppExecution","features":[3,131,132]},{"name":"SrpEnablePermissiveModeFileEncryption","features":[131]},{"name":"SrpGetEnterpriseIds","features":[3,131]},{"name":"SrpGetEnterprisePolicy","features":[3,131]},{"name":"SrpHostingInitialize","features":[131]},{"name":"SrpHostingTerminate","features":[131]},{"name":"SrpIsTokenService","features":[3,131]},{"name":"SrpSetTokenEnterpriseId","features":[3,131]},{"name":"UnprotectFile","features":[131]}],"497":[{"name":"CERTIFICATE_HASH_LENGTH","features":[105]},{"name":"EAPACTION_Authenticate","features":[105]},{"name":"EAPACTION_Done","features":[105]},{"name":"EAPACTION_IndicateIdentity","features":[105]},{"name":"EAPACTION_IndicateTLV","features":[105]},{"name":"EAPACTION_NoAction","features":[105]},{"name":"EAPACTION_Send","features":[105]},{"name":"EAPACTION_SendAndDone","features":[105]},{"name":"EAPACTION_SendWithTimeout","features":[105]},{"name":"EAPACTION_SendWithTimeoutInteractive","features":[105]},{"name":"EAPCODE_Failure","features":[105]},{"name":"EAPCODE_Request","features":[105]},{"name":"EAPCODE_Response","features":[105]},{"name":"EAPCODE_Success","features":[105]},{"name":"EAPHOST_AUTH_INFO","features":[105]},{"name":"EAPHOST_AUTH_STATUS","features":[105]},{"name":"EAPHOST_IDENTITY_UI_PARAMS","features":[105]},{"name":"EAPHOST_INTERACTIVE_UI_PARAMS","features":[105]},{"name":"EAPHOST_METHOD_API_VERSION","features":[105]},{"name":"EAPHOST_PEER_API_VERSION","features":[105]},{"name":"EAP_ATTRIBUTE","features":[105]},{"name":"EAP_ATTRIBUTES","features":[105]},{"name":"EAP_ATTRIBUTE_TYPE","features":[105]},{"name":"EAP_AUTHENTICATOR_METHOD_ROUTINES","features":[105]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT","features":[105]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_BASIC","features":[105]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_INTERACTIVE","features":[105]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_NONE","features":[105]},{"name":"EAP_AUTHENTICATOR_VALUENAME_CONFIGUI","features":[105]},{"name":"EAP_AUTHENTICATOR_VALUENAME_DLL_PATH","features":[105]},{"name":"EAP_AUTHENTICATOR_VALUENAME_FRIENDLY_NAME","features":[105]},{"name":"EAP_AUTHENTICATOR_VALUENAME_PROPERTIES","features":[105]},{"name":"EAP_CERTIFICATE_CREDENTIAL","features":[105]},{"name":"EAP_CONFIG_INPUT_FIELD_ARRAY","features":[105]},{"name":"EAP_CONFIG_INPUT_FIELD_DATA","features":[105]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_DEFAULT","features":[105]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[105]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_PERSIST","features":[105]},{"name":"EAP_CONFIG_INPUT_FIELD_TYPE","features":[105]},{"name":"EAP_CREDENTIAL_VERSION","features":[105]},{"name":"EAP_CRED_EXPIRY_REQ","features":[105]},{"name":"EAP_EMPTY_CREDENTIAL","features":[105]},{"name":"EAP_ERROR","features":[105]},{"name":"EAP_E_AUTHENTICATION_FAILED","features":[105]},{"name":"EAP_E_CERT_STORE_INACCESSIBLE","features":[105]},{"name":"EAP_E_EAPHOST_EAPQEC_INACCESSIBLE","features":[105]},{"name":"EAP_E_EAPHOST_FIRST","features":[105]},{"name":"EAP_E_EAPHOST_IDENTITY_UNKNOWN","features":[105]},{"name":"EAP_E_EAPHOST_LAST","features":[105]},{"name":"EAP_E_EAPHOST_METHOD_INVALID_PACKET","features":[105]},{"name":"EAP_E_EAPHOST_METHOD_NOT_INSTALLED","features":[105]},{"name":"EAP_E_EAPHOST_METHOD_OPERATION_NOT_SUPPORTED","features":[105]},{"name":"EAP_E_EAPHOST_REMOTE_INVALID_PACKET","features":[105]},{"name":"EAP_E_EAPHOST_THIRDPARTY_METHOD_HOST_RESET","features":[105]},{"name":"EAP_E_EAPHOST_XML_MALFORMED","features":[105]},{"name":"EAP_E_METHOD_CONFIG_DOES_NOT_SUPPORT_SSO","features":[105]},{"name":"EAP_E_NO_SMART_CARD_READER","features":[105]},{"name":"EAP_E_SERVER_CERT_EXPIRED","features":[105]},{"name":"EAP_E_SERVER_CERT_INVALID","features":[105]},{"name":"EAP_E_SERVER_CERT_NOT_FOUND","features":[105]},{"name":"EAP_E_SERVER_CERT_OTHER_ERROR","features":[105]},{"name":"EAP_E_SERVER_CERT_REVOKED","features":[105]},{"name":"EAP_E_SERVER_FIRST","features":[105]},{"name":"EAP_E_SERVER_LAST","features":[105]},{"name":"EAP_E_SERVER_ROOT_CERT_FIRST","features":[105]},{"name":"EAP_E_SERVER_ROOT_CERT_INVALID","features":[105]},{"name":"EAP_E_SERVER_ROOT_CERT_LAST","features":[105]},{"name":"EAP_E_SERVER_ROOT_CERT_NAME_REQUIRED","features":[105]},{"name":"EAP_E_SERVER_ROOT_CERT_NOT_FOUND","features":[105]},{"name":"EAP_E_SIM_NOT_VALID","features":[105]},{"name":"EAP_E_USER_CERT_EXPIRED","features":[105]},{"name":"EAP_E_USER_CERT_INVALID","features":[105]},{"name":"EAP_E_USER_CERT_NOT_FOUND","features":[105]},{"name":"EAP_E_USER_CERT_OTHER_ERROR","features":[105]},{"name":"EAP_E_USER_CERT_REJECTED","features":[105]},{"name":"EAP_E_USER_CERT_REVOKED","features":[105]},{"name":"EAP_E_USER_CREDENTIALS_REJECTED","features":[105]},{"name":"EAP_E_USER_FIRST","features":[105]},{"name":"EAP_E_USER_LAST","features":[105]},{"name":"EAP_E_USER_NAME_PASSWORD_REJECTED","features":[105]},{"name":"EAP_E_USER_ROOT_CERT_EXPIRED","features":[105]},{"name":"EAP_E_USER_ROOT_CERT_FIRST","features":[105]},{"name":"EAP_E_USER_ROOT_CERT_INVALID","features":[105]},{"name":"EAP_E_USER_ROOT_CERT_LAST","features":[105]},{"name":"EAP_E_USER_ROOT_CERT_NOT_FOUND","features":[105]},{"name":"EAP_FLAG_CONFG_READONLY","features":[105]},{"name":"EAP_FLAG_FULL_AUTH","features":[105]},{"name":"EAP_FLAG_GUEST_ACCESS","features":[105]},{"name":"EAP_FLAG_LOGON","features":[105]},{"name":"EAP_FLAG_MACHINE_AUTH","features":[105]},{"name":"EAP_FLAG_NON_INTERACTIVE","features":[105]},{"name":"EAP_FLAG_ONLY_EAP_TLS","features":[105]},{"name":"EAP_FLAG_PREFER_ALT_CREDENTIALS","features":[105]},{"name":"EAP_FLAG_PREVIEW","features":[105]},{"name":"EAP_FLAG_PRE_LOGON","features":[105]},{"name":"EAP_FLAG_RESUME_FROM_HIBERNATE","features":[105]},{"name":"EAP_FLAG_Reserved1","features":[105]},{"name":"EAP_FLAG_Reserved2","features":[105]},{"name":"EAP_FLAG_Reserved3","features":[105]},{"name":"EAP_FLAG_Reserved4","features":[105]},{"name":"EAP_FLAG_Reserved5","features":[105]},{"name":"EAP_FLAG_Reserved6","features":[105]},{"name":"EAP_FLAG_Reserved7","features":[105]},{"name":"EAP_FLAG_Reserved8","features":[105]},{"name":"EAP_FLAG_Reserved9","features":[105]},{"name":"EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[105]},{"name":"EAP_FLAG_SUPRESS_UI","features":[105]},{"name":"EAP_FLAG_USER_AUTH","features":[105]},{"name":"EAP_FLAG_VPN","features":[105]},{"name":"EAP_GROUP_MASK","features":[105]},{"name":"EAP_INTERACTIVE_UI_DATA","features":[105]},{"name":"EAP_INTERACTIVE_UI_DATA_TYPE","features":[105]},{"name":"EAP_INTERACTIVE_UI_DATA_VERSION","features":[105]},{"name":"EAP_INVALID_PACKET","features":[105]},{"name":"EAP_I_EAPHOST_EAP_NEGOTIATION_FAILED","features":[105]},{"name":"EAP_I_EAPHOST_FIRST","features":[105]},{"name":"EAP_I_EAPHOST_LAST","features":[105]},{"name":"EAP_I_USER_ACCOUNT_OTHER_ERROR","features":[105]},{"name":"EAP_I_USER_FIRST","features":[105]},{"name":"EAP_I_USER_LAST","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_CONFIG_IS_IDENTITY_PRIVACY","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_ACTION","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_AUTHENTICATE","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_DISCARD","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_HANDLE_IDENTITY","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESPOND","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESULT","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_SEND","features":[105]},{"name":"EAP_METHOD_AUTHENTICATOR_RESULT","features":[3,105]},{"name":"EAP_METHOD_INFO","features":[105]},{"name":"EAP_METHOD_INFO_ARRAY","features":[105]},{"name":"EAP_METHOD_INFO_ARRAY_EX","features":[105]},{"name":"EAP_METHOD_INFO_EX","features":[105]},{"name":"EAP_METHOD_INVALID_PACKET","features":[105]},{"name":"EAP_METHOD_PROPERTY","features":[3,105]},{"name":"EAP_METHOD_PROPERTY_ARRAY","features":[3,105]},{"name":"EAP_METHOD_PROPERTY_TYPE","features":[105]},{"name":"EAP_METHOD_PROPERTY_VALUE","features":[3,105]},{"name":"EAP_METHOD_PROPERTY_VALUE_BOOL","features":[3,105]},{"name":"EAP_METHOD_PROPERTY_VALUE_DWORD","features":[105]},{"name":"EAP_METHOD_PROPERTY_VALUE_STRING","features":[105]},{"name":"EAP_METHOD_PROPERTY_VALUE_TYPE","features":[105]},{"name":"EAP_METHOD_TYPE","features":[105]},{"name":"EAP_PEER_FLAG_GUEST_ACCESS","features":[105]},{"name":"EAP_PEER_FLAG_HEALTH_STATE_CHANGE","features":[105]},{"name":"EAP_PEER_METHOD_ROUTINES","features":[105]},{"name":"EAP_PEER_VALUENAME_CONFIGUI","features":[105]},{"name":"EAP_PEER_VALUENAME_DLL_PATH","features":[105]},{"name":"EAP_PEER_VALUENAME_FRIENDLY_NAME","features":[105]},{"name":"EAP_PEER_VALUENAME_IDENTITY","features":[105]},{"name":"EAP_PEER_VALUENAME_INTERACTIVEUI","features":[105]},{"name":"EAP_PEER_VALUENAME_INVOKE_NAMEDLG","features":[105]},{"name":"EAP_PEER_VALUENAME_INVOKE_PWDDLG","features":[105]},{"name":"EAP_PEER_VALUENAME_PROPERTIES","features":[105]},{"name":"EAP_PEER_VALUENAME_REQUIRE_CONFIGUI","features":[105]},{"name":"EAP_REGISTRY_LOCATION","features":[105]},{"name":"EAP_SIM_CREDENTIAL","features":[105]},{"name":"EAP_TYPE","features":[105]},{"name":"EAP_UI_DATA_FORMAT","features":[105]},{"name":"EAP_UI_INPUT_FIELD_PROPS_DEFAULT","features":[105]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[105]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_PERSIST","features":[105]},{"name":"EAP_UI_INPUT_FIELD_PROPS_READ_ONLY","features":[105]},{"name":"EAP_USERNAME_PASSWORD_CREDENTIAL","features":[105]},{"name":"EAP_VALUENAME_PROPERTIES","features":[105]},{"name":"EAP_WINLOGON_CREDENTIAL","features":[105]},{"name":"EapCertificateCredential","features":[105]},{"name":"EapCode","features":[105]},{"name":"EapCodeFailure","features":[105]},{"name":"EapCodeMaximum","features":[105]},{"name":"EapCodeMinimum","features":[105]},{"name":"EapCodeRequest","features":[105]},{"name":"EapCodeResponse","features":[105]},{"name":"EapCodeSuccess","features":[105]},{"name":"EapConfigInputEdit","features":[105]},{"name":"EapConfigInputNetworkPassword","features":[105]},{"name":"EapConfigInputNetworkUsername","features":[105]},{"name":"EapConfigInputPSK","features":[105]},{"name":"EapConfigInputPassword","features":[105]},{"name":"EapConfigInputPin","features":[105]},{"name":"EapConfigInputUsername","features":[105]},{"name":"EapConfigSmartCardError","features":[105]},{"name":"EapConfigSmartCardUsername","features":[105]},{"name":"EapCredExpiryReq","features":[105]},{"name":"EapCredExpiryResp","features":[105]},{"name":"EapCredLogonReq","features":[105]},{"name":"EapCredLogonResp","features":[105]},{"name":"EapCredReq","features":[105]},{"name":"EapCredResp","features":[105]},{"name":"EapCredential","features":[105]},{"name":"EapCredentialType","features":[105]},{"name":"EapCredentialTypeData","features":[105]},{"name":"EapHostAuthFailed","features":[105]},{"name":"EapHostAuthIdentityExchange","features":[105]},{"name":"EapHostAuthInProgress","features":[105]},{"name":"EapHostAuthNegotiatingType","features":[105]},{"name":"EapHostAuthNotStarted","features":[105]},{"name":"EapHostAuthSucceeded","features":[105]},{"name":"EapHostInvalidSession","features":[105]},{"name":"EapHostNapInfo","features":[105]},{"name":"EapHostPeerAuthParams","features":[105]},{"name":"EapHostPeerAuthStatus","features":[105]},{"name":"EapHostPeerBeginSession","features":[3,105]},{"name":"EapHostPeerClearConnection","features":[105]},{"name":"EapHostPeerConfigBlob2Xml","features":[105]},{"name":"EapHostPeerConfigXml2Blob","features":[105]},{"name":"EapHostPeerCredentialsXml2Blob","features":[105]},{"name":"EapHostPeerEndSession","features":[105]},{"name":"EapHostPeerFreeEapError","features":[105]},{"name":"EapHostPeerFreeErrorMemory","features":[105]},{"name":"EapHostPeerFreeMemory","features":[105]},{"name":"EapHostPeerFreeRuntimeMemory","features":[105]},{"name":"EapHostPeerGetAuthStatus","features":[105]},{"name":"EapHostPeerGetDataToUnplumbCredentials","features":[3,105]},{"name":"EapHostPeerGetEncryptedPassword","features":[105]},{"name":"EapHostPeerGetIdentity","features":[3,105]},{"name":"EapHostPeerGetMethodProperties","features":[3,105]},{"name":"EapHostPeerGetMethods","features":[105]},{"name":"EapHostPeerGetResponseAttributes","features":[105]},{"name":"EapHostPeerGetResult","features":[3,105]},{"name":"EapHostPeerGetSendPacket","features":[105]},{"name":"EapHostPeerGetUIContext","features":[105]},{"name":"EapHostPeerIdentity","features":[105]},{"name":"EapHostPeerIdentityExtendedInfo","features":[105]},{"name":"EapHostPeerInitialize","features":[105]},{"name":"EapHostPeerInvokeConfigUI","features":[3,105]},{"name":"EapHostPeerInvokeIdentityUI","features":[3,105]},{"name":"EapHostPeerInvokeInteractiveUI","features":[3,105]},{"name":"EapHostPeerMethodResult","features":[3,105]},{"name":"EapHostPeerMethodResultAltSuccessReceived","features":[105]},{"name":"EapHostPeerMethodResultFromMethod","features":[105]},{"name":"EapHostPeerMethodResultReason","features":[105]},{"name":"EapHostPeerMethodResultTimeout","features":[105]},{"name":"EapHostPeerProcessReceivedPacket","features":[105]},{"name":"EapHostPeerQueryCredentialInputFields","features":[3,105]},{"name":"EapHostPeerQueryInteractiveUIInputFields","features":[105]},{"name":"EapHostPeerQueryUIBlobFromInteractiveUIInputFields","features":[105]},{"name":"EapHostPeerQueryUserBlobFromCredentialInputFields","features":[3,105]},{"name":"EapHostPeerResponseAction","features":[105]},{"name":"EapHostPeerResponseDiscard","features":[105]},{"name":"EapHostPeerResponseInvokeUi","features":[105]},{"name":"EapHostPeerResponseNone","features":[105]},{"name":"EapHostPeerResponseRespond","features":[105]},{"name":"EapHostPeerResponseResult","features":[105]},{"name":"EapHostPeerResponseSend","features":[105]},{"name":"EapHostPeerResponseStartAuthentication","features":[105]},{"name":"EapHostPeerSetResponseAttributes","features":[105]},{"name":"EapHostPeerSetUIContext","features":[105]},{"name":"EapHostPeerUninitialize","features":[105]},{"name":"EapPacket","features":[105]},{"name":"EapPeerMethodOutput","features":[3,105]},{"name":"EapPeerMethodResponseAction","features":[105]},{"name":"EapPeerMethodResponseActionDiscard","features":[105]},{"name":"EapPeerMethodResponseActionInvokeUI","features":[105]},{"name":"EapPeerMethodResponseActionNone","features":[105]},{"name":"EapPeerMethodResponseActionRespond","features":[105]},{"name":"EapPeerMethodResponseActionResult","features":[105]},{"name":"EapPeerMethodResponseActionSend","features":[105]},{"name":"EapPeerMethodResult","features":[3,70,105]},{"name":"EapPeerMethodResultFailure","features":[105]},{"name":"EapPeerMethodResultReason","features":[105]},{"name":"EapPeerMethodResultSuccess","features":[105]},{"name":"EapPeerMethodResultUnknown","features":[105]},{"name":"EapSimCredential","features":[105]},{"name":"EapUsernamePasswordCredential","features":[105]},{"name":"FACILITY_EAP_MESSAGE","features":[105]},{"name":"GUID_EapHost_Cause_CertStoreInaccessible","features":[105]},{"name":"GUID_EapHost_Cause_EapNegotiationFailed","features":[105]},{"name":"GUID_EapHost_Cause_EapQecInaccessible","features":[105]},{"name":"GUID_EapHost_Cause_Generic_AuthFailure","features":[105]},{"name":"GUID_EapHost_Cause_IdentityUnknown","features":[105]},{"name":"GUID_EapHost_Cause_MethodDLLNotFound","features":[105]},{"name":"GUID_EapHost_Cause_MethodDoesNotSupportOperation","features":[105]},{"name":"GUID_EapHost_Cause_Method_Config_Does_Not_Support_Sso","features":[105]},{"name":"GUID_EapHost_Cause_No_SmartCardReader_Found","features":[105]},{"name":"GUID_EapHost_Cause_Server_CertExpired","features":[105]},{"name":"GUID_EapHost_Cause_Server_CertInvalid","features":[105]},{"name":"GUID_EapHost_Cause_Server_CertNotFound","features":[105]},{"name":"GUID_EapHost_Cause_Server_CertOtherError","features":[105]},{"name":"GUID_EapHost_Cause_Server_CertRevoked","features":[105]},{"name":"GUID_EapHost_Cause_Server_Root_CertNameRequired","features":[105]},{"name":"GUID_EapHost_Cause_Server_Root_CertNotFound","features":[105]},{"name":"GUID_EapHost_Cause_SimNotValid","features":[105]},{"name":"GUID_EapHost_Cause_ThirdPartyMethod_Host_Reset","features":[105]},{"name":"GUID_EapHost_Cause_User_Account_OtherProblem","features":[105]},{"name":"GUID_EapHost_Cause_User_CertExpired","features":[105]},{"name":"GUID_EapHost_Cause_User_CertInvalid","features":[105]},{"name":"GUID_EapHost_Cause_User_CertNotFound","features":[105]},{"name":"GUID_EapHost_Cause_User_CertOtherError","features":[105]},{"name":"GUID_EapHost_Cause_User_CertRejected","features":[105]},{"name":"GUID_EapHost_Cause_User_CertRevoked","features":[105]},{"name":"GUID_EapHost_Cause_User_CredsRejected","features":[105]},{"name":"GUID_EapHost_Cause_User_Root_CertExpired","features":[105]},{"name":"GUID_EapHost_Cause_User_Root_CertInvalid","features":[105]},{"name":"GUID_EapHost_Cause_User_Root_CertNotFound","features":[105]},{"name":"GUID_EapHost_Cause_XmlMalformed","features":[105]},{"name":"GUID_EapHost_Default","features":[105]},{"name":"GUID_EapHost_Help_ObtainingCerts","features":[105]},{"name":"GUID_EapHost_Help_Troubleshooting","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_AuthFailure","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertNameAbsent","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertStoreInaccessible","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_IdentityUnknown","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserAccount","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserCert","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_MethodNotFound","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_NegotiationFailed","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_NoSmartCardReader","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertInvalid","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertNotFound","features":[105]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootExpired","features":[105]},{"name":"GUID_EapHost_Repair_ContactSysadmin","features":[105]},{"name":"GUID_EapHost_Repair_Method_Not_Support_Sso","features":[105]},{"name":"GUID_EapHost_Repair_No_ValidSim_Found","features":[105]},{"name":"GUID_EapHost_Repair_RestartNap","features":[105]},{"name":"GUID_EapHost_Repair_Retry_Authentication","features":[105]},{"name":"GUID_EapHost_Repair_Server_ClientSelectServerCert","features":[105]},{"name":"GUID_EapHost_Repair_User_AuthFailure","features":[105]},{"name":"GUID_EapHost_Repair_User_GetNewCert","features":[105]},{"name":"GUID_EapHost_Repair_User_SelectValidCert","features":[105]},{"name":"IAccountingProviderConfig","features":[105]},{"name":"IAuthenticationProviderConfig","features":[105]},{"name":"IEAPProviderConfig","features":[105]},{"name":"IEAPProviderConfig2","features":[105]},{"name":"IEAPProviderConfig3","features":[105]},{"name":"IRouterProtocolConfig","features":[105]},{"name":"ISOLATION_STATE","features":[105]},{"name":"ISOLATION_STATE_IN_PROBATION","features":[105]},{"name":"ISOLATION_STATE_NOT_RESTRICTED","features":[105]},{"name":"ISOLATION_STATE_RESTRICTED_ACCESS","features":[105]},{"name":"ISOLATION_STATE_UNKNOWN","features":[105]},{"name":"LEGACY_IDENTITY_UI_PARAMS","features":[105]},{"name":"LEGACY_INTERACTIVE_UI_PARAMS","features":[105]},{"name":"MAXEAPCODE","features":[105]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_LENGTH","features":[105]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_VALUE_LENGTH","features":[105]},{"name":"NCRYPT_PIN_CACHE_PIN_BYTE_LENGTH","features":[105]},{"name":"NgcTicketContext","features":[3,70,105]},{"name":"NotificationHandler","features":[105]},{"name":"PPP_EAP_ACTION","features":[105]},{"name":"PPP_EAP_INFO","features":[105]},{"name":"PPP_EAP_INPUT","features":[3,105]},{"name":"PPP_EAP_OUTPUT","features":[3,70,105]},{"name":"PPP_EAP_PACKET","features":[105]},{"name":"RAS_AUTH_ATTRIBUTE","features":[105]},{"name":"RAS_AUTH_ATTRIBUTE_TYPE","features":[105]},{"name":"RAS_EAP_FLAG_8021X_AUTH","features":[105]},{"name":"RAS_EAP_FLAG_ALTERNATIVE_USER_DB","features":[105]},{"name":"RAS_EAP_FLAG_CONFG_READONLY","features":[105]},{"name":"RAS_EAP_FLAG_FIRST_LINK","features":[105]},{"name":"RAS_EAP_FLAG_GUEST_ACCESS","features":[105]},{"name":"RAS_EAP_FLAG_HOSTED_IN_PEAP","features":[105]},{"name":"RAS_EAP_FLAG_LOGON","features":[105]},{"name":"RAS_EAP_FLAG_MACHINE_AUTH","features":[105]},{"name":"RAS_EAP_FLAG_NON_INTERACTIVE","features":[105]},{"name":"RAS_EAP_FLAG_PEAP_FORCE_FULL_AUTH","features":[105]},{"name":"RAS_EAP_FLAG_PEAP_UPFRONT","features":[105]},{"name":"RAS_EAP_FLAG_PREVIEW","features":[105]},{"name":"RAS_EAP_FLAG_PRE_LOGON","features":[105]},{"name":"RAS_EAP_FLAG_RESERVED","features":[105]},{"name":"RAS_EAP_FLAG_RESUME_FROM_HIBERNATE","features":[105]},{"name":"RAS_EAP_FLAG_ROUTER","features":[105]},{"name":"RAS_EAP_FLAG_SAVE_CREDMAN","features":[105]},{"name":"RAS_EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[105]},{"name":"RAS_EAP_REGISTRY_LOCATION","features":[105]},{"name":"RAS_EAP_ROLE_AUTHENTICATEE","features":[105]},{"name":"RAS_EAP_ROLE_AUTHENTICATOR","features":[105]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_EAP","features":[105]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_PEAP","features":[105]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_VPN","features":[105]},{"name":"RAS_EAP_VALUENAME_CONFIGUI","features":[105]},{"name":"RAS_EAP_VALUENAME_CONFIG_CLSID","features":[105]},{"name":"RAS_EAP_VALUENAME_DEFAULT_DATA","features":[105]},{"name":"RAS_EAP_VALUENAME_ENCRYPTION","features":[105]},{"name":"RAS_EAP_VALUENAME_FILTER_INNERMETHODS","features":[105]},{"name":"RAS_EAP_VALUENAME_FRIENDLY_NAME","features":[105]},{"name":"RAS_EAP_VALUENAME_IDENTITY","features":[105]},{"name":"RAS_EAP_VALUENAME_INTERACTIVEUI","features":[105]},{"name":"RAS_EAP_VALUENAME_INVOKE_NAMEDLG","features":[105]},{"name":"RAS_EAP_VALUENAME_INVOKE_PWDDLG","features":[105]},{"name":"RAS_EAP_VALUENAME_ISTUNNEL_METHOD","features":[105]},{"name":"RAS_EAP_VALUENAME_PATH","features":[105]},{"name":"RAS_EAP_VALUENAME_PER_POLICY_CONFIG","features":[105]},{"name":"RAS_EAP_VALUENAME_REQUIRE_CONFIGUI","features":[105]},{"name":"RAS_EAP_VALUENAME_ROLES_SUPPORTED","features":[105]},{"name":"RAS_EAP_VALUENAME_STANDALONE_SUPPORTED","features":[105]},{"name":"eapPropCertifiedMethod","features":[105]},{"name":"eapPropChannelBinding","features":[105]},{"name":"eapPropCipherSuiteNegotiation","features":[105]},{"name":"eapPropConfidentiality","features":[105]},{"name":"eapPropCryptoBinding","features":[105]},{"name":"eapPropDictionaryAttackResistance","features":[105]},{"name":"eapPropFastReconnect","features":[105]},{"name":"eapPropFragmentation","features":[105]},{"name":"eapPropHiddenMethod","features":[105]},{"name":"eapPropIdentityPrivacy","features":[105]},{"name":"eapPropIntegrity","features":[105]},{"name":"eapPropKeyDerivation","features":[105]},{"name":"eapPropKeyStrength1024","features":[105]},{"name":"eapPropKeyStrength128","features":[105]},{"name":"eapPropKeyStrength256","features":[105]},{"name":"eapPropKeyStrength512","features":[105]},{"name":"eapPropKeyStrength64","features":[105]},{"name":"eapPropMachineAuth","features":[105]},{"name":"eapPropMethodChaining","features":[105]},{"name":"eapPropMppeEncryption","features":[105]},{"name":"eapPropMutualAuth","features":[105]},{"name":"eapPropNap","features":[105]},{"name":"eapPropReplayProtection","features":[105]},{"name":"eapPropReserved","features":[105]},{"name":"eapPropSessionIndependence","features":[105]},{"name":"eapPropSharedStateEquivalence","features":[105]},{"name":"eapPropStandalone","features":[105]},{"name":"eapPropSupportsConfig","features":[105]},{"name":"eapPropTunnelMethod","features":[105]},{"name":"eapPropUserAuth","features":[105]},{"name":"eatARAPChallengeResponse","features":[105]},{"name":"eatARAPFeatures","features":[105]},{"name":"eatARAPGuestLogon","features":[105]},{"name":"eatARAPPassword","features":[105]},{"name":"eatARAPSecurity","features":[105]},{"name":"eatARAPSecurityData","features":[105]},{"name":"eatARAPZoneAccess","features":[105]},{"name":"eatAcctAuthentic","features":[105]},{"name":"eatAcctDelayTime","features":[105]},{"name":"eatAcctEventTimeStamp","features":[105]},{"name":"eatAcctInputOctets","features":[105]},{"name":"eatAcctInputPackets","features":[105]},{"name":"eatAcctInterimInterval","features":[105]},{"name":"eatAcctLinkCount","features":[105]},{"name":"eatAcctMultiSessionId","features":[105]},{"name":"eatAcctOutputOctets","features":[105]},{"name":"eatAcctOutputPackets","features":[105]},{"name":"eatAcctSessionId","features":[105]},{"name":"eatAcctSessionTime","features":[105]},{"name":"eatAcctStatusType","features":[105]},{"name":"eatAcctTerminateCause","features":[105]},{"name":"eatCallbackId","features":[105]},{"name":"eatCallbackNumber","features":[105]},{"name":"eatCalledStationId","features":[105]},{"name":"eatCallingStationId","features":[105]},{"name":"eatCertificateOID","features":[105]},{"name":"eatCertificateThumbprint","features":[105]},{"name":"eatClass","features":[105]},{"name":"eatClearTextPassword","features":[105]},{"name":"eatConfigurationToken","features":[105]},{"name":"eatConnectInfo","features":[105]},{"name":"eatCredentialsChanged","features":[105]},{"name":"eatEAPConfiguration","features":[105]},{"name":"eatEAPMessage","features":[105]},{"name":"eatEAPTLV","features":[105]},{"name":"eatEMSK","features":[105]},{"name":"eatFastRoamedSession","features":[105]},{"name":"eatFilterId","features":[105]},{"name":"eatFramedAppleTalkLink","features":[105]},{"name":"eatFramedAppleTalkNetwork","features":[105]},{"name":"eatFramedAppleTalkZone","features":[105]},{"name":"eatFramedCompression","features":[105]},{"name":"eatFramedIPAddress","features":[105]},{"name":"eatFramedIPNetmask","features":[105]},{"name":"eatFramedIPXNetwork","features":[105]},{"name":"eatFramedIPv6Pool","features":[105]},{"name":"eatFramedIPv6Prefix","features":[105]},{"name":"eatFramedIPv6Route","features":[105]},{"name":"eatFramedInterfaceId","features":[105]},{"name":"eatFramedMTU","features":[105]},{"name":"eatFramedProtocol","features":[105]},{"name":"eatFramedRoute","features":[105]},{"name":"eatFramedRouting","features":[105]},{"name":"eatIdleTimeout","features":[105]},{"name":"eatInnerEapMethodType","features":[105]},{"name":"eatLoginIPHost","features":[105]},{"name":"eatLoginIPv6Host","features":[105]},{"name":"eatLoginLATGroup","features":[105]},{"name":"eatLoginLATNode","features":[105]},{"name":"eatLoginLATPort","features":[105]},{"name":"eatLoginLATService","features":[105]},{"name":"eatLoginService","features":[105]},{"name":"eatLoginTCPPort","features":[105]},{"name":"eatMD5CHAPChallenge","features":[105]},{"name":"eatMD5CHAPPassword","features":[105]},{"name":"eatMethodId","features":[105]},{"name":"eatMinimum","features":[105]},{"name":"eatNASIPAddress","features":[105]},{"name":"eatNASIPv6Address","features":[105]},{"name":"eatNASIdentifier","features":[105]},{"name":"eatNASPort","features":[105]},{"name":"eatNASPortType","features":[105]},{"name":"eatPEAPEmbeddedEAPTypeId","features":[105]},{"name":"eatPEAPFastRoamedSession","features":[105]},{"name":"eatPasswordRetry","features":[105]},{"name":"eatPeerId","features":[105]},{"name":"eatPortLimit","features":[105]},{"name":"eatPrompt","features":[105]},{"name":"eatProxyState","features":[105]},{"name":"eatQuarantineSoH","features":[105]},{"name":"eatReplyMessage","features":[105]},{"name":"eatReserved","features":[105]},{"name":"eatServerId","features":[105]},{"name":"eatServiceType","features":[105]},{"name":"eatSessionId","features":[105]},{"name":"eatSessionTimeout","features":[105]},{"name":"eatSignature","features":[105]},{"name":"eatState","features":[105]},{"name":"eatTerminationAction","features":[105]},{"name":"eatTunnelClientEndpoint","features":[105]},{"name":"eatTunnelMediumType","features":[105]},{"name":"eatTunnelServerEndpoint","features":[105]},{"name":"eatTunnelType","features":[105]},{"name":"eatUnassigned17","features":[105]},{"name":"eatUnassigned21","features":[105]},{"name":"eatUserName","features":[105]},{"name":"eatUserPassword","features":[105]},{"name":"eatVendorSpecific","features":[105]},{"name":"emptLegacyMethodPropertyFlag","features":[105]},{"name":"emptPropCertifiedMethod","features":[105]},{"name":"emptPropChannelBinding","features":[105]},{"name":"emptPropCipherSuiteNegotiation","features":[105]},{"name":"emptPropConfidentiality","features":[105]},{"name":"emptPropCryptoBinding","features":[105]},{"name":"emptPropDictionaryAttackResistance","features":[105]},{"name":"emptPropFastReconnect","features":[105]},{"name":"emptPropFragmentation","features":[105]},{"name":"emptPropHiddenMethod","features":[105]},{"name":"emptPropIdentityPrivacy","features":[105]},{"name":"emptPropIntegrity","features":[105]},{"name":"emptPropKeyDerivation","features":[105]},{"name":"emptPropKeyStrength1024","features":[105]},{"name":"emptPropKeyStrength128","features":[105]},{"name":"emptPropKeyStrength256","features":[105]},{"name":"emptPropKeyStrength512","features":[105]},{"name":"emptPropKeyStrength64","features":[105]},{"name":"emptPropMachineAuth","features":[105]},{"name":"emptPropMethodChaining","features":[105]},{"name":"emptPropMppeEncryption","features":[105]},{"name":"emptPropMutualAuth","features":[105]},{"name":"emptPropNap","features":[105]},{"name":"emptPropReplayProtection","features":[105]},{"name":"emptPropSessionIndependence","features":[105]},{"name":"emptPropSharedStateEquivalence","features":[105]},{"name":"emptPropStandalone","features":[105]},{"name":"emptPropSupportsConfig","features":[105]},{"name":"emptPropTunnelMethod","features":[105]},{"name":"emptPropUserAuth","features":[105]},{"name":"emptPropVendorSpecific","features":[105]},{"name":"empvtBool","features":[105]},{"name":"empvtDword","features":[105]},{"name":"empvtString","features":[105]},{"name":"raatARAPChallenge","features":[105]},{"name":"raatARAPChallengeResponse","features":[105]},{"name":"raatARAPFeatures","features":[105]},{"name":"raatARAPGuestLogon","features":[105]},{"name":"raatARAPNewPassword","features":[105]},{"name":"raatARAPOldPassword","features":[105]},{"name":"raatARAPPassword","features":[105]},{"name":"raatARAPPasswordChangeReason","features":[105]},{"name":"raatARAPSecurity","features":[105]},{"name":"raatARAPSecurityData","features":[105]},{"name":"raatARAPZoneAccess","features":[105]},{"name":"raatAcctAuthentic","features":[105]},{"name":"raatAcctDelayTime","features":[105]},{"name":"raatAcctEventTimeStamp","features":[105]},{"name":"raatAcctInputOctets","features":[105]},{"name":"raatAcctInputPackets","features":[105]},{"name":"raatAcctInterimInterval","features":[105]},{"name":"raatAcctLinkCount","features":[105]},{"name":"raatAcctMultiSessionId","features":[105]},{"name":"raatAcctOutputOctets","features":[105]},{"name":"raatAcctOutputPackets","features":[105]},{"name":"raatAcctSessionId","features":[105]},{"name":"raatAcctSessionTime","features":[105]},{"name":"raatAcctStatusType","features":[105]},{"name":"raatAcctTerminateCause","features":[105]},{"name":"raatCallbackId","features":[105]},{"name":"raatCallbackNumber","features":[105]},{"name":"raatCalledStationId","features":[105]},{"name":"raatCallingStationId","features":[105]},{"name":"raatCertificateOID","features":[105]},{"name":"raatCertificateThumbprint","features":[105]},{"name":"raatClass","features":[105]},{"name":"raatConfigurationToken","features":[105]},{"name":"raatConnectInfo","features":[105]},{"name":"raatCredentialsChanged","features":[105]},{"name":"raatEAPConfiguration","features":[105]},{"name":"raatEAPMessage","features":[105]},{"name":"raatEAPTLV","features":[105]},{"name":"raatEMSK","features":[105]},{"name":"raatFastRoamedSession","features":[105]},{"name":"raatFilterId","features":[105]},{"name":"raatFramedAppleTalkLink","features":[105]},{"name":"raatFramedAppleTalkNetwork","features":[105]},{"name":"raatFramedAppleTalkZone","features":[105]},{"name":"raatFramedCompression","features":[105]},{"name":"raatFramedIPAddress","features":[105]},{"name":"raatFramedIPNetmask","features":[105]},{"name":"raatFramedIPXNetwork","features":[105]},{"name":"raatFramedIPv6Pool","features":[105]},{"name":"raatFramedIPv6Prefix","features":[105]},{"name":"raatFramedIPv6Route","features":[105]},{"name":"raatFramedInterfaceId","features":[105]},{"name":"raatFramedMTU","features":[105]},{"name":"raatFramedProtocol","features":[105]},{"name":"raatFramedRoute","features":[105]},{"name":"raatFramedRouting","features":[105]},{"name":"raatIdleTimeout","features":[105]},{"name":"raatInnerEAPTypeId","features":[105]},{"name":"raatLoginIPHost","features":[105]},{"name":"raatLoginIPv6Host","features":[105]},{"name":"raatLoginLATGroup","features":[105]},{"name":"raatLoginLATNode","features":[105]},{"name":"raatLoginLATPort","features":[105]},{"name":"raatLoginLATService","features":[105]},{"name":"raatLoginService","features":[105]},{"name":"raatLoginTCPPort","features":[105]},{"name":"raatMD5CHAPChallenge","features":[105]},{"name":"raatMD5CHAPPassword","features":[105]},{"name":"raatMethodId","features":[105]},{"name":"raatMinimum","features":[105]},{"name":"raatNASIPAddress","features":[105]},{"name":"raatNASIPv6Address","features":[105]},{"name":"raatNASIdentifier","features":[105]},{"name":"raatNASPort","features":[105]},{"name":"raatNASPortType","features":[105]},{"name":"raatPEAPEmbeddedEAPTypeId","features":[105]},{"name":"raatPEAPFastRoamedSession","features":[105]},{"name":"raatPasswordRetry","features":[105]},{"name":"raatPeerId","features":[105]},{"name":"raatPortLimit","features":[105]},{"name":"raatPrompt","features":[105]},{"name":"raatProxyState","features":[105]},{"name":"raatReplyMessage","features":[105]},{"name":"raatReserved","features":[105]},{"name":"raatServerId","features":[105]},{"name":"raatServiceType","features":[105]},{"name":"raatSessionId","features":[105]},{"name":"raatSessionTimeout","features":[105]},{"name":"raatSignature","features":[105]},{"name":"raatState","features":[105]},{"name":"raatTerminationAction","features":[105]},{"name":"raatTunnelClientEndpoint","features":[105]},{"name":"raatTunnelMediumType","features":[105]},{"name":"raatTunnelServerEndpoint","features":[105]},{"name":"raatTunnelType","features":[105]},{"name":"raatUnassigned17","features":[105]},{"name":"raatUnassigned21","features":[105]},{"name":"raatUserName","features":[105]},{"name":"raatUserPassword","features":[105]},{"name":"raatVendorSpecific","features":[105]}],"498":[{"name":"CreateAppContainerProfile","features":[133]},{"name":"DeleteAppContainerProfile","features":[133]},{"name":"DeriveAppContainerSidFromAppContainerName","features":[133]},{"name":"DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName","features":[133]},{"name":"GetAppContainerFolderPath","features":[133]},{"name":"GetAppContainerNamedObjectPath","features":[3,133]},{"name":"GetAppContainerRegistryLocation","features":[133,51]},{"name":"IIsolatedAppLauncher","features":[133]},{"name":"IIsolatedProcessLauncher","features":[133]},{"name":"IIsolatedProcessLauncher2","features":[133]},{"name":"IsCrossIsolatedEnvironmentClipboardContent","features":[3,133]},{"name":"IsProcessInIsolatedContainer","features":[3,133]},{"name":"IsProcessInIsolatedWindowsEnvironment","features":[3,133]},{"name":"IsProcessInWDAGContainer","features":[3,133]},{"name":"IsolatedAppLauncher","features":[133]},{"name":"IsolatedAppLauncherTelemetryParameters","features":[3,133]},{"name":"WDAG_CLIPBOARD_TAG","features":[133]}],"499":[{"name":"LicenseKeyAlreadyExists","features":[134]},{"name":"LicenseKeyCorrupted","features":[134]},{"name":"LicenseKeyNotFound","features":[134]},{"name":"LicenseKeyUnprotected","features":[134]},{"name":"LicenseProtectionStatus","features":[134]},{"name":"RegisterLicenseKeyWithExpiration","features":[134]},{"name":"Success","features":[134]},{"name":"ValidateLicenseKeyProtection","features":[3,134]}],"500":[{"name":"ComponentTypeEnforcementClientRp","features":[135]},{"name":"ComponentTypeEnforcementClientSoH","features":[135]},{"name":"CorrelationId","features":[3,135]},{"name":"CountedString","features":[135]},{"name":"ExtendedIsolationState","features":[135]},{"name":"FailureCategory","features":[135]},{"name":"FailureCategoryMapping","features":[3,135]},{"name":"FixupInfo","features":[135]},{"name":"FixupState","features":[135]},{"name":"Ipv4Address","features":[135]},{"name":"Ipv6Address","features":[135]},{"name":"IsolationInfo","features":[3,135]},{"name":"IsolationInfoEx","features":[3,135]},{"name":"IsolationState","features":[135]},{"name":"NapComponentRegistrationInfo","features":[3,135]},{"name":"NapNotifyType","features":[135]},{"name":"NapTracingLevel","features":[135]},{"name":"NetworkSoH","features":[135]},{"name":"PrivateData","features":[135]},{"name":"RemoteConfigurationType","features":[135]},{"name":"ResultCodes","features":[135]},{"name":"SoH","features":[135]},{"name":"SoHAttribute","features":[135]},{"name":"SystemHealthAgentState","features":[135]},{"name":"extendedIsolationStateInfected","features":[135]},{"name":"extendedIsolationStateNoData","features":[135]},{"name":"extendedIsolationStateTransition","features":[135]},{"name":"extendedIsolationStateUnknown","features":[135]},{"name":"failureCategoryClientCommunication","features":[135]},{"name":"failureCategoryClientComponent","features":[135]},{"name":"failureCategoryCount","features":[135]},{"name":"failureCategoryNone","features":[135]},{"name":"failureCategoryOther","features":[135]},{"name":"failureCategoryServerCommunication","features":[135]},{"name":"failureCategoryServerComponent","features":[135]},{"name":"fixupStateCouldNotUpdate","features":[135]},{"name":"fixupStateInProgress","features":[135]},{"name":"fixupStateSuccess","features":[135]},{"name":"freshSoHRequest","features":[135]},{"name":"isolationStateInProbation","features":[135]},{"name":"isolationStateNotRestricted","features":[135]},{"name":"isolationStateRestrictedAccess","features":[135]},{"name":"maxConnectionCountPerEnforcer","features":[135]},{"name":"maxEnforcerCount","features":[135]},{"name":"maxNetworkSoHSize","features":[135]},{"name":"maxPrivateDataSize","features":[135]},{"name":"maxSoHAttributeCount","features":[135]},{"name":"maxSoHAttributeSize","features":[135]},{"name":"maxStringLength","features":[135]},{"name":"maxSystemHealthEntityCount","features":[135]},{"name":"minNetworkSoHSize","features":[135]},{"name":"napNotifyTypeQuarState","features":[135]},{"name":"napNotifyTypeServiceState","features":[135]},{"name":"napNotifyTypeUnknown","features":[135]},{"name":"percentageNotSupported","features":[135]},{"name":"remoteConfigTypeConfigBlob","features":[135]},{"name":"remoteConfigTypeMachine","features":[135]},{"name":"shaFixup","features":[135]},{"name":"tracingLevelAdvanced","features":[135]},{"name":"tracingLevelBasic","features":[135]},{"name":"tracingLevelDebug","features":[135]},{"name":"tracingLevelUndefined","features":[135]}],"502":[{"name":"CAT_MEMBERINFO","features":[128]},{"name":"CAT_MEMBERINFO2","features":[128]},{"name":"CAT_MEMBERINFO2_OBJID","features":[128]},{"name":"CAT_MEMBERINFO2_STRUCT","features":[128]},{"name":"CAT_MEMBERINFO_OBJID","features":[128]},{"name":"CAT_MEMBERINFO_STRUCT","features":[128]},{"name":"CAT_NAMEVALUE","features":[70,128]},{"name":"CAT_NAMEVALUE_OBJID","features":[128]},{"name":"CAT_NAMEVALUE_STRUCT","features":[128]},{"name":"CCPI_RESULT_ALLOW","features":[128]},{"name":"CCPI_RESULT_AUDIT","features":[128]},{"name":"CCPI_RESULT_DENY","features":[128]},{"name":"CERT_CONFIDENCE_AUTHIDEXT","features":[128]},{"name":"CERT_CONFIDENCE_HIGHEST","features":[128]},{"name":"CERT_CONFIDENCE_HYGIENE","features":[128]},{"name":"CERT_CONFIDENCE_SIG","features":[128]},{"name":"CERT_CONFIDENCE_TIME","features":[128]},{"name":"CERT_CONFIDENCE_TIMENEST","features":[128]},{"name":"CONFIG_CI_ACTION_VERIFY","features":[128]},{"name":"CONFIG_CI_PROV_INFO","features":[3,70,128]},{"name":"CONFIG_CI_PROV_INFO_RESULT","features":[3,128]},{"name":"CONFIG_CI_PROV_INFO_RESULT2","features":[3,128]},{"name":"CPD_CHOICE_SIP","features":[128]},{"name":"CPD_RETURN_LOWER_QUALITY_CHAINS","features":[128]},{"name":"CPD_REVOCATION_CHECK_CHAIN","features":[128]},{"name":"CPD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[128]},{"name":"CPD_REVOCATION_CHECK_END_CERT","features":[128]},{"name":"CPD_REVOCATION_CHECK_NONE","features":[128]},{"name":"CPD_RFC3161v21","features":[128]},{"name":"CPD_UISTATE_MODE_ALLOW","features":[128]},{"name":"CPD_UISTATE_MODE_BLOCK","features":[128]},{"name":"CPD_UISTATE_MODE_MASK","features":[128]},{"name":"CPD_UISTATE_MODE_PROMPT","features":[128]},{"name":"CPD_USE_NT5_CHAIN_FLAG","features":[128]},{"name":"CRYPT_PROVIDER_CERT","features":[3,70,128]},{"name":"CRYPT_PROVIDER_DATA","features":[3,124,125,128]},{"name":"CRYPT_PROVIDER_DEFUSAGE","features":[128]},{"name":"CRYPT_PROVIDER_FUNCTIONS","features":[3,124,125,128]},{"name":"CRYPT_PROVIDER_PRIVDATA","features":[128]},{"name":"CRYPT_PROVIDER_REGDEFUSAGE","features":[128]},{"name":"CRYPT_PROVIDER_SGNR","features":[3,70,128]},{"name":"CRYPT_PROVIDER_SIGSTATE","features":[3,70,128]},{"name":"CRYPT_PROVUI_DATA","features":[128]},{"name":"CRYPT_PROVUI_FUNCS","features":[3,124,125,128]},{"name":"CRYPT_REGISTER_ACTIONID","features":[128]},{"name":"CRYPT_TRUST_REG_ENTRY","features":[128]},{"name":"DRIVER_ACTION_VERIFY","features":[128]},{"name":"DRIVER_CLEANUPPOLICY_FUNCTION","features":[128]},{"name":"DRIVER_FINALPOLPROV_FUNCTION","features":[128]},{"name":"DRIVER_INITPROV_FUNCTION","features":[128]},{"name":"DRIVER_VER_INFO","features":[3,70,128]},{"name":"DRIVER_VER_MAJORMINOR","features":[128]},{"name":"DWACTION_ALLOCANDFILL","features":[128]},{"name":"DWACTION_FREE","features":[128]},{"name":"GENERIC_CHAIN_CERTTRUST_FUNCTION","features":[128]},{"name":"GENERIC_CHAIN_FINALPOLICY_FUNCTION","features":[128]},{"name":"HTTPSPROV_ACTION","features":[128]},{"name":"HTTPS_CERTTRUST_FUNCTION","features":[128]},{"name":"HTTPS_CHKCERT_FUNCTION","features":[128]},{"name":"HTTPS_FINALPOLICY_FUNCTION","features":[128]},{"name":"INTENT_TO_SEAL_ATTRIBUTE","features":[3,128]},{"name":"INTENT_TO_SEAL_ATTRIBUTE_STRUCT","features":[128]},{"name":"OFFICESIGN_ACTION_VERIFY","features":[128]},{"name":"OFFICE_CLEANUPPOLICY_FUNCTION","features":[128]},{"name":"OFFICE_INITPROV_FUNCTION","features":[128]},{"name":"OFFICE_POLICY_PROVIDER_DLL_NAME","features":[128]},{"name":"OpenPersonalTrustDBDialog","features":[3,128]},{"name":"OpenPersonalTrustDBDialogEx","features":[3,128]},{"name":"PFN_ALLOCANDFILLDEFUSAGE","features":[3,128]},{"name":"PFN_CPD_ADD_CERT","features":[3,124,125,128]},{"name":"PFN_CPD_ADD_PRIVDATA","features":[3,124,125,128]},{"name":"PFN_CPD_ADD_SGNR","features":[3,124,125,128]},{"name":"PFN_CPD_ADD_STORE","features":[3,124,125,128]},{"name":"PFN_CPD_MEM_ALLOC","features":[128]},{"name":"PFN_CPD_MEM_FREE","features":[128]},{"name":"PFN_FREEDEFUSAGE","features":[3,128]},{"name":"PFN_PROVIDER_CERTCHKPOLICY_CALL","features":[3,124,125,128]},{"name":"PFN_PROVIDER_CERTTRUST_CALL","features":[3,124,125,128]},{"name":"PFN_PROVIDER_CLEANUP_CALL","features":[3,124,125,128]},{"name":"PFN_PROVIDER_FINALPOLICY_CALL","features":[3,124,125,128]},{"name":"PFN_PROVIDER_INIT_CALL","features":[3,124,125,128]},{"name":"PFN_PROVIDER_OBJTRUST_CALL","features":[3,124,125,128]},{"name":"PFN_PROVIDER_SIGTRUST_CALL","features":[3,124,125,128]},{"name":"PFN_PROVIDER_TESTFINALPOLICY_CALL","features":[3,124,125,128]},{"name":"PFN_PROVUI_CALL","features":[3,124,125,128]},{"name":"PFN_WTD_GENERIC_CHAIN_POLICY_CALLBACK","features":[3,124,125,128]},{"name":"PROVDATA_SIP","features":[3,124,125,128]},{"name":"SEALING_SIGNATURE_ATTRIBUTE","features":[70,128]},{"name":"SEALING_SIGNATURE_ATTRIBUTE_STRUCT","features":[128]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE","features":[70,128]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE_STRUCT","features":[128]},{"name":"SGNR_TYPE_TIMESTAMP","features":[128]},{"name":"SPC_CAB_DATA_OBJID","features":[128]},{"name":"SPC_CAB_DATA_STRUCT","features":[128]},{"name":"SPC_CERT_EXTENSIONS_OBJID","features":[128]},{"name":"SPC_COMMERCIAL_SP_KEY_PURPOSE_OBJID","features":[128]},{"name":"SPC_COMMON_NAME_OBJID","features":[128]},{"name":"SPC_ENCRYPTED_DIGEST_RETRY_COUNT_OBJID","features":[128]},{"name":"SPC_FILE_LINK_CHOICE","features":[128]},{"name":"SPC_FINANCIAL_CRITERIA","features":[3,128]},{"name":"SPC_FINANCIAL_CRITERIA_OBJID","features":[128]},{"name":"SPC_FINANCIAL_CRITERIA_STRUCT","features":[128]},{"name":"SPC_GLUE_RDN_OBJID","features":[128]},{"name":"SPC_IMAGE","features":[70,128]},{"name":"SPC_INDIRECT_DATA_CONTENT","features":[70,128]},{"name":"SPC_INDIRECT_DATA_CONTENT_STRUCT","features":[128]},{"name":"SPC_INDIRECT_DATA_OBJID","features":[128]},{"name":"SPC_INDIVIDUAL_SP_KEY_PURPOSE_OBJID","features":[128]},{"name":"SPC_JAVA_CLASS_DATA_OBJID","features":[128]},{"name":"SPC_JAVA_CLASS_DATA_STRUCT","features":[128]},{"name":"SPC_LINK","features":[70,128]},{"name":"SPC_LINK_OBJID","features":[128]},{"name":"SPC_LINK_STRUCT","features":[128]},{"name":"SPC_MINIMAL_CRITERIA_OBJID","features":[128]},{"name":"SPC_MINIMAL_CRITERIA_STRUCT","features":[128]},{"name":"SPC_MONIKER_LINK_CHOICE","features":[128]},{"name":"SPC_NATURAL_AUTH_PLUGIN_OBJID","features":[128]},{"name":"SPC_PE_IMAGE_DATA","features":[70,128]},{"name":"SPC_PE_IMAGE_DATA_OBJID","features":[128]},{"name":"SPC_PE_IMAGE_DATA_STRUCT","features":[128]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V1_OBJID","features":[128]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V2_OBJID","features":[128]},{"name":"SPC_RAW_FILE_DATA_OBJID","features":[128]},{"name":"SPC_RELAXED_PE_MARKER_CHECK_OBJID","features":[128]},{"name":"SPC_SERIALIZED_OBJECT","features":[70,128]},{"name":"SPC_SIGINFO","features":[128]},{"name":"SPC_SIGINFO_OBJID","features":[128]},{"name":"SPC_SIGINFO_STRUCT","features":[128]},{"name":"SPC_SP_AGENCY_INFO","features":[70,128]},{"name":"SPC_SP_AGENCY_INFO_OBJID","features":[128]},{"name":"SPC_SP_AGENCY_INFO_STRUCT","features":[128]},{"name":"SPC_SP_OPUS_INFO","features":[70,128]},{"name":"SPC_SP_OPUS_INFO_OBJID","features":[128]},{"name":"SPC_SP_OPUS_INFO_STRUCT","features":[128]},{"name":"SPC_STATEMENT_TYPE","features":[128]},{"name":"SPC_STATEMENT_TYPE_OBJID","features":[128]},{"name":"SPC_STATEMENT_TYPE_STRUCT","features":[128]},{"name":"SPC_STRUCTURED_STORAGE_DATA_OBJID","features":[128]},{"name":"SPC_TIME_STAMP_REQUEST_OBJID","features":[128]},{"name":"SPC_URL_LINK_CHOICE","features":[128]},{"name":"SPC_UUID_LENGTH","features":[128]},{"name":"SPC_WINDOWS_HELLO_COMPATIBILITY_OBJID","features":[128]},{"name":"SP_CHKCERT_FUNCTION","features":[128]},{"name":"SP_CLEANUPPOLICY_FUNCTION","features":[128]},{"name":"SP_FINALPOLICY_FUNCTION","features":[128]},{"name":"SP_GENERIC_CERT_INIT_FUNCTION","features":[128]},{"name":"SP_INIT_FUNCTION","features":[128]},{"name":"SP_OBJTRUST_FUNCTION","features":[128]},{"name":"SP_POLICY_PROVIDER_DLL_NAME","features":[128]},{"name":"SP_SIGTRUST_FUNCTION","features":[128]},{"name":"SP_TESTDUMPPOLICY_FUNCTION_TEST","features":[128]},{"name":"TRUSTERROR_MAX_STEPS","features":[128]},{"name":"TRUSTERROR_STEP_CATALOGFILE","features":[128]},{"name":"TRUSTERROR_STEP_CERTSTORE","features":[128]},{"name":"TRUSTERROR_STEP_FILEIO","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_CERTCHKPROV","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_CERTPROV","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_INITPROV","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_OBJPROV","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_POLICYPROV","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_SIGPROV","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_UIPROV","features":[128]},{"name":"TRUSTERROR_STEP_FINAL_WVTINIT","features":[128]},{"name":"TRUSTERROR_STEP_MESSAGE","features":[128]},{"name":"TRUSTERROR_STEP_MSG_CERTCHAIN","features":[128]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGCERT","features":[128]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGINFO","features":[128]},{"name":"TRUSTERROR_STEP_MSG_INNERCNT","features":[128]},{"name":"TRUSTERROR_STEP_MSG_INNERCNTTYPE","features":[128]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCERT","features":[128]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCOUNT","features":[128]},{"name":"TRUSTERROR_STEP_MSG_SIGNERINFO","features":[128]},{"name":"TRUSTERROR_STEP_MSG_STORE","features":[128]},{"name":"TRUSTERROR_STEP_SIP","features":[128]},{"name":"TRUSTERROR_STEP_SIPSUBJINFO","features":[128]},{"name":"TRUSTERROR_STEP_VERIFY_MSGHASH","features":[128]},{"name":"TRUSTERROR_STEP_VERIFY_MSGINDIRECTDATA","features":[128]},{"name":"TRUSTERROR_STEP_WVTPARAMS","features":[128]},{"name":"WINTRUST_ACTION_GENERIC_CERT_VERIFY","features":[128]},{"name":"WINTRUST_ACTION_GENERIC_CHAIN_VERIFY","features":[128]},{"name":"WINTRUST_ACTION_GENERIC_VERIFY_V2","features":[128]},{"name":"WINTRUST_ACTION_TRUSTPROVIDER_TEST","features":[128]},{"name":"WINTRUST_BLOB_INFO","features":[128]},{"name":"WINTRUST_CATALOG_INFO","features":[3,70,128]},{"name":"WINTRUST_CERT_INFO","features":[3,70,128]},{"name":"WINTRUST_CONFIG_REGPATH","features":[128]},{"name":"WINTRUST_DATA","features":[3,70,128]},{"name":"WINTRUST_DATA_PROVIDER_FLAGS","features":[128]},{"name":"WINTRUST_DATA_REVOCATION_CHECKS","features":[128]},{"name":"WINTRUST_DATA_STATE_ACTION","features":[128]},{"name":"WINTRUST_DATA_UICHOICE","features":[128]},{"name":"WINTRUST_DATA_UICONTEXT","features":[128]},{"name":"WINTRUST_DATA_UNION_CHOICE","features":[128]},{"name":"WINTRUST_FILE_INFO","features":[3,128]},{"name":"WINTRUST_GET_DEFAULT_FOR_USAGE_ACTION","features":[128]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_DEFAULT","features":[128]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_VALUE_NAME","features":[128]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_DEFAULT","features":[128]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_VALUE_NAME","features":[128]},{"name":"WINTRUST_POLICY_FLAGS","features":[128]},{"name":"WINTRUST_SGNR_INFO","features":[70,128]},{"name":"WINTRUST_SIGNATURE_SETTINGS","features":[70,128]},{"name":"WINTRUST_SIGNATURE_SETTINGS_FLAGS","features":[128]},{"name":"WIN_CERTIFICATE","features":[128]},{"name":"WIN_CERT_REVISION_1_0","features":[128]},{"name":"WIN_CERT_REVISION_2_0","features":[128]},{"name":"WIN_CERT_TYPE_PKCS_SIGNED_DATA","features":[128]},{"name":"WIN_CERT_TYPE_RESERVED_1","features":[128]},{"name":"WIN_CERT_TYPE_TS_STACK_SIGNED","features":[128]},{"name":"WIN_CERT_TYPE_X509","features":[128]},{"name":"WIN_SPUB_ACTION_NT_ACTIVATE_IMAGE","features":[128]},{"name":"WIN_SPUB_ACTION_PUBLISHED_SOFTWARE","features":[128]},{"name":"WIN_SPUB_ACTION_TRUSTED_PUBLISHER","features":[128]},{"name":"WIN_SPUB_TRUSTED_PUBLISHER_DATA","features":[3,128]},{"name":"WIN_TRUST_ACTDATA_CONTEXT_WITH_SUBJECT","features":[3,128]},{"name":"WIN_TRUST_ACTDATA_SUBJECT_ONLY","features":[128]},{"name":"WIN_TRUST_SUBJECT_FILE","features":[3,128]},{"name":"WIN_TRUST_SUBJECT_FILE_AND_DISPLAY","features":[3,128]},{"name":"WIN_TRUST_SUBJTYPE_CABINET","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_CABINETEX","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASS","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASSEX","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_OLE_STORAGE","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGE","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGEEX","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILE","features":[128]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILEEX","features":[128]},{"name":"WSS_CERTTRUST_SUPPORT","features":[128]},{"name":"WSS_GET_SECONDARY_SIG_COUNT","features":[128]},{"name":"WSS_INPUT_FLAG_MASK","features":[128]},{"name":"WSS_OBJTRUST_SUPPORT","features":[128]},{"name":"WSS_OUTPUT_FLAG_MASK","features":[128]},{"name":"WSS_OUT_FILE_SUPPORTS_SEAL","features":[128]},{"name":"WSS_OUT_HAS_SEALING_INTENT","features":[128]},{"name":"WSS_OUT_SEALING_STATUS_VERIFIED","features":[128]},{"name":"WSS_SIGTRUST_SUPPORT","features":[128]},{"name":"WSS_VERIFY_SEALING","features":[128]},{"name":"WSS_VERIFY_SPECIFIC","features":[128]},{"name":"WTCI_DONT_OPEN_STORES","features":[128]},{"name":"WTCI_OPEN_ONLY_ROOT","features":[128]},{"name":"WTCI_USE_LOCAL_MACHINE","features":[128]},{"name":"WTD_CACHE_ONLY_URL_RETRIEVAL","features":[128]},{"name":"WTD_CHOICE_BLOB","features":[128]},{"name":"WTD_CHOICE_CATALOG","features":[128]},{"name":"WTD_CHOICE_CERT","features":[128]},{"name":"WTD_CHOICE_FILE","features":[128]},{"name":"WTD_CHOICE_SIGNER","features":[128]},{"name":"WTD_CODE_INTEGRITY_DRIVER_MODE","features":[128]},{"name":"WTD_DISABLE_MD2_MD4","features":[128]},{"name":"WTD_GENERIC_CHAIN_POLICY_CREATE_INFO","features":[70,128]},{"name":"WTD_GENERIC_CHAIN_POLICY_DATA","features":[3,124,125,128]},{"name":"WTD_GENERIC_CHAIN_POLICY_SIGNER_INFO","features":[3,70,128]},{"name":"WTD_HASH_ONLY_FLAG","features":[128]},{"name":"WTD_LIFETIME_SIGNING_FLAG","features":[128]},{"name":"WTD_MOTW","features":[128]},{"name":"WTD_NO_IE4_CHAIN_FLAG","features":[128]},{"name":"WTD_NO_POLICY_USAGE_FLAG","features":[128]},{"name":"WTD_PROV_FLAGS_MASK","features":[128]},{"name":"WTD_REVOCATION_CHECK_CHAIN","features":[128]},{"name":"WTD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[128]},{"name":"WTD_REVOCATION_CHECK_END_CERT","features":[128]},{"name":"WTD_REVOCATION_CHECK_NONE","features":[128]},{"name":"WTD_REVOKE_NONE","features":[128]},{"name":"WTD_REVOKE_WHOLECHAIN","features":[128]},{"name":"WTD_SAFER_FLAG","features":[128]},{"name":"WTD_STATEACTION_AUTO_CACHE","features":[128]},{"name":"WTD_STATEACTION_AUTO_CACHE_FLUSH","features":[128]},{"name":"WTD_STATEACTION_CLOSE","features":[128]},{"name":"WTD_STATEACTION_IGNORE","features":[128]},{"name":"WTD_STATEACTION_VERIFY","features":[128]},{"name":"WTD_UICONTEXT_EXECUTE","features":[128]},{"name":"WTD_UICONTEXT_INSTALL","features":[128]},{"name":"WTD_UI_ALL","features":[128]},{"name":"WTD_UI_NOBAD","features":[128]},{"name":"WTD_UI_NOGOOD","features":[128]},{"name":"WTD_UI_NONE","features":[128]},{"name":"WTD_USE_DEFAULT_OSVER_CHECK","features":[128]},{"name":"WTD_USE_IE4_TRUST_FLAG","features":[128]},{"name":"WTHelperCertCheckValidSignature","features":[3,124,125,128]},{"name":"WTHelperCertIsSelfSigned","features":[3,70,128]},{"name":"WTHelperGetProvCertFromChain","features":[3,70,128]},{"name":"WTHelperGetProvPrivateDataFromChain","features":[3,124,125,128]},{"name":"WTHelperGetProvSignerFromChain","features":[3,124,125,128]},{"name":"WTHelperProvDataFromStateData","features":[3,124,125,128]},{"name":"WTPF_ALLOWONLYPERTRUST","features":[128]},{"name":"WTPF_IGNOREEXPIRATION","features":[128]},{"name":"WTPF_IGNOREREVOCATIONONTS","features":[128]},{"name":"WTPF_IGNOREREVOKATION","features":[128]},{"name":"WTPF_OFFLINEOKNBU_COM","features":[128]},{"name":"WTPF_OFFLINEOKNBU_IND","features":[128]},{"name":"WTPF_OFFLINEOK_COM","features":[128]},{"name":"WTPF_OFFLINEOK_IND","features":[128]},{"name":"WTPF_TESTCANBEVALID","features":[128]},{"name":"WTPF_TRUSTTEST","features":[128]},{"name":"WTPF_VERIFY_V1_OFF","features":[128]},{"name":"WT_ADD_ACTION_ID_RET_RESULT_FLAG","features":[128]},{"name":"WT_CURRENT_VERSION","features":[128]},{"name":"WT_PROVIDER_CERTTRUST_FUNCTION","features":[128]},{"name":"WT_PROVIDER_DLL_NAME","features":[128]},{"name":"WT_TRUSTDBDIALOG_NO_UI_FLAG","features":[128]},{"name":"WT_TRUSTDBDIALOG_ONLY_PUB_TAB_FLAG","features":[128]},{"name":"WT_TRUSTDBDIALOG_WRITE_IEAK_STORE_FLAG","features":[128]},{"name":"WT_TRUSTDBDIALOG_WRITE_LEGACY_REG_FLAG","features":[128]},{"name":"WinVerifyTrust","features":[3,128]},{"name":"WinVerifyTrustEx","features":[3,70,128]},{"name":"WintrustAddActionID","features":[3,128]},{"name":"WintrustAddDefaultForUsage","features":[3,128]},{"name":"WintrustGetDefaultForUsage","features":[3,128]},{"name":"WintrustGetRegPolicyFlags","features":[128]},{"name":"WintrustLoadFunctionPointers","features":[3,124,125,128]},{"name":"WintrustRemoveActionID","features":[3,128]},{"name":"WintrustSetDefaultIncludePEPageHashes","features":[3,128]},{"name":"WintrustSetRegPolicyFlags","features":[3,128]},{"name":"szOID_ENHANCED_HASH","features":[128]},{"name":"szOID_INTENT_TO_SEAL","features":[128]},{"name":"szOID_NESTED_SIGNATURE","features":[128]},{"name":"szOID_PKCS_9_SEQUENCE_NUMBER","features":[128]},{"name":"szOID_SEALING_SIGNATURE","features":[128]},{"name":"szOID_SEALING_TIMESTAMP","features":[128]},{"name":"szOID_TRUSTED_CLIENT_AUTH_CA_LIST","features":[128]},{"name":"szOID_TRUSTED_CODESIGNING_CA_LIST","features":[128]},{"name":"szOID_TRUSTED_SERVER_AUTH_CA_LIST","features":[128]}],"503":[{"name":"PFNMSGECALLBACK","features":[3,136]},{"name":"PWLX_ASSIGN_SHELL_PROTECTION","features":[3,136]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY","features":[3,136]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY_EX","features":[3,136]},{"name":"PWLX_CLOSE_USER_DESKTOP","features":[3,136,137]},{"name":"PWLX_CREATE_USER_DESKTOP","features":[3,136,137]},{"name":"PWLX_DIALOG_BOX","features":[3,136,52]},{"name":"PWLX_DIALOG_BOX_INDIRECT","features":[3,136,52]},{"name":"PWLX_DIALOG_BOX_INDIRECT_PARAM","features":[3,136,52]},{"name":"PWLX_DIALOG_BOX_PARAM","features":[3,136,52]},{"name":"PWLX_DISCONNECT","features":[3,136]},{"name":"PWLX_GET_OPTION","features":[3,136]},{"name":"PWLX_GET_SOURCE_DESKTOP","features":[3,136,137]},{"name":"PWLX_MESSAGE_BOX","features":[3,136]},{"name":"PWLX_QUERY_CLIENT_CREDENTIALS","features":[3,136]},{"name":"PWLX_QUERY_CONSOLESWITCH_CREDENTIALS","features":[3,136]},{"name":"PWLX_QUERY_IC_CREDENTIALS","features":[3,136]},{"name":"PWLX_QUERY_TERMINAL_SERVICES_DATA","features":[3,136]},{"name":"PWLX_QUERY_TS_LOGON_CREDENTIALS","features":[3,136]},{"name":"PWLX_SAS_NOTIFY","features":[3,136]},{"name":"PWLX_SET_CONTEXT_POINTER","features":[3,136]},{"name":"PWLX_SET_OPTION","features":[3,136]},{"name":"PWLX_SET_RETURN_DESKTOP","features":[3,136,137]},{"name":"PWLX_SET_TIMEOUT","features":[3,136]},{"name":"PWLX_SWITCH_DESKTOP_TO_USER","features":[3,136]},{"name":"PWLX_SWITCH_DESKTOP_TO_WINLOGON","features":[3,136]},{"name":"PWLX_USE_CTRL_ALT_DEL","features":[3,136]},{"name":"PWLX_WIN31_MIGRATE","features":[3,136]},{"name":"STATUSMSG_OPTION_NOANIMATION","features":[136]},{"name":"STATUSMSG_OPTION_SETFOREGROUND","features":[136]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V1_0","features":[3,136]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V2_0","features":[3,136]},{"name":"WLX_CONSOLESWITCHCREDENTIAL_TYPE_V1_0","features":[136]},{"name":"WLX_CONSOLESWITCH_CREDENTIALS_INFO_V1_0","features":[3,136]},{"name":"WLX_CREATE_INSTANCE_ONLY","features":[136]},{"name":"WLX_CREATE_USER","features":[136]},{"name":"WLX_CREDENTIAL_TYPE_V1_0","features":[136]},{"name":"WLX_CREDENTIAL_TYPE_V2_0","features":[136]},{"name":"WLX_CURRENT_VERSION","features":[136]},{"name":"WLX_DESKTOP","features":[136,137]},{"name":"WLX_DESKTOP_HANDLE","features":[136]},{"name":"WLX_DESKTOP_NAME","features":[136]},{"name":"WLX_DIRECTORY_LENGTH","features":[136]},{"name":"WLX_DISPATCH_VERSION_1_0","features":[3,136,52]},{"name":"WLX_DISPATCH_VERSION_1_1","features":[3,136,137,52]},{"name":"WLX_DISPATCH_VERSION_1_2","features":[3,136,137,52]},{"name":"WLX_DISPATCH_VERSION_1_3","features":[3,136,137,52]},{"name":"WLX_DISPATCH_VERSION_1_4","features":[3,136,137,52]},{"name":"WLX_DLG_INPUT_TIMEOUT","features":[136]},{"name":"WLX_DLG_SAS","features":[136]},{"name":"WLX_DLG_SCREEN_SAVER_TIMEOUT","features":[136]},{"name":"WLX_DLG_USER_LOGOFF","features":[136]},{"name":"WLX_LOGON_OPT_NO_PROFILE","features":[136]},{"name":"WLX_MPR_NOTIFY_INFO","features":[136]},{"name":"WLX_NOTIFICATION_INFO","features":[3,136,137]},{"name":"WLX_OPTION_CONTEXT_POINTER","features":[136]},{"name":"WLX_OPTION_DISPATCH_TABLE_SIZE","features":[136]},{"name":"WLX_OPTION_FORCE_LOGOFF_TIME","features":[136]},{"name":"WLX_OPTION_IGNORE_AUTO_LOGON","features":[136]},{"name":"WLX_OPTION_NO_SWITCH_ON_SAS","features":[136]},{"name":"WLX_OPTION_SMART_CARD_INFO","features":[136]},{"name":"WLX_OPTION_SMART_CARD_PRESENT","features":[136]},{"name":"WLX_OPTION_USE_CTRL_ALT_DEL","features":[136]},{"name":"WLX_OPTION_USE_SMART_CARD","features":[136]},{"name":"WLX_PROFILE_TYPE_V1_0","features":[136]},{"name":"WLX_PROFILE_TYPE_V2_0","features":[136]},{"name":"WLX_PROFILE_V1_0","features":[136]},{"name":"WLX_PROFILE_V2_0","features":[136]},{"name":"WLX_SAS_ACTION_DELAYED_FORCE_LOGOFF","features":[136]},{"name":"WLX_SAS_ACTION_FORCE_LOGOFF","features":[136]},{"name":"WLX_SAS_ACTION_LOCK_WKSTA","features":[136]},{"name":"WLX_SAS_ACTION_LOGOFF","features":[136]},{"name":"WLX_SAS_ACTION_LOGON","features":[136]},{"name":"WLX_SAS_ACTION_NONE","features":[136]},{"name":"WLX_SAS_ACTION_PWD_CHANGED","features":[136]},{"name":"WLX_SAS_ACTION_RECONNECTED","features":[136]},{"name":"WLX_SAS_ACTION_SHUTDOWN","features":[136]},{"name":"WLX_SAS_ACTION_SHUTDOWN_HIBERNATE","features":[136]},{"name":"WLX_SAS_ACTION_SHUTDOWN_POWER_OFF","features":[136]},{"name":"WLX_SAS_ACTION_SHUTDOWN_REBOOT","features":[136]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP","features":[136]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP2","features":[136]},{"name":"WLX_SAS_ACTION_SWITCH_CONSOLE","features":[136]},{"name":"WLX_SAS_ACTION_TASKLIST","features":[136]},{"name":"WLX_SAS_ACTION_UNLOCK_WKSTA","features":[136]},{"name":"WLX_SAS_TYPE_AUTHENTICATED","features":[136]},{"name":"WLX_SAS_TYPE_CTRL_ALT_DEL","features":[136]},{"name":"WLX_SAS_TYPE_MAX_MSFT_VALUE","features":[136]},{"name":"WLX_SAS_TYPE_SCRNSVR_ACTIVITY","features":[136]},{"name":"WLX_SAS_TYPE_SCRNSVR_TIMEOUT","features":[136]},{"name":"WLX_SAS_TYPE_SC_FIRST_READER_ARRIVED","features":[136]},{"name":"WLX_SAS_TYPE_SC_INSERT","features":[136]},{"name":"WLX_SAS_TYPE_SC_LAST_READER_REMOVED","features":[136]},{"name":"WLX_SAS_TYPE_SC_REMOVE","features":[136]},{"name":"WLX_SAS_TYPE_SWITCHUSER","features":[136]},{"name":"WLX_SAS_TYPE_TIMEOUT","features":[136]},{"name":"WLX_SAS_TYPE_USER_LOGOFF","features":[136]},{"name":"WLX_SC_NOTIFICATION_INFO","features":[136]},{"name":"WLX_SHUTDOWN_TYPE","features":[136]},{"name":"WLX_TERMINAL_SERVICES_DATA","features":[136]},{"name":"WLX_VERSION_1_0","features":[136]},{"name":"WLX_VERSION_1_1","features":[136]},{"name":"WLX_VERSION_1_2","features":[136]},{"name":"WLX_VERSION_1_3","features":[136]},{"name":"WLX_VERSION_1_4","features":[136]},{"name":"WLX_WM_SAS","features":[136]}],"504":[{"name":"CB_MAX_CABINET_NAME","features":[138]},{"name":"CB_MAX_CAB_PATH","features":[138]},{"name":"CB_MAX_DISK","features":[138]},{"name":"CB_MAX_DISK_NAME","features":[138]},{"name":"CB_MAX_FILENAME","features":[138]},{"name":"CCAB","features":[138]},{"name":"ERF","features":[3,138]},{"name":"FCIAddFile","features":[3,138]},{"name":"FCICreate","features":[3,138]},{"name":"FCIDestroy","features":[3,138]},{"name":"FCIERROR","features":[138]},{"name":"FCIERR_ALLOC_FAIL","features":[138]},{"name":"FCIERR_BAD_COMPR_TYPE","features":[138]},{"name":"FCIERR_CAB_FILE","features":[138]},{"name":"FCIERR_CAB_FORMAT_LIMIT","features":[138]},{"name":"FCIERR_MCI_FAIL","features":[138]},{"name":"FCIERR_NONE","features":[138]},{"name":"FCIERR_OPEN_SRC","features":[138]},{"name":"FCIERR_READ_SRC","features":[138]},{"name":"FCIERR_TEMP_FILE","features":[138]},{"name":"FCIERR_USER_ABORT","features":[138]},{"name":"FCIFlushCabinet","features":[3,138]},{"name":"FCIFlushFolder","features":[3,138]},{"name":"FDICABINETINFO","features":[3,138]},{"name":"FDICREATE_CPU_TYPE","features":[138]},{"name":"FDICopy","features":[3,138]},{"name":"FDICreate","features":[3,138]},{"name":"FDIDECRYPT","features":[3,138]},{"name":"FDIDECRYPTTYPE","features":[138]},{"name":"FDIDestroy","features":[3,138]},{"name":"FDIERROR","features":[138]},{"name":"FDIERROR_ALLOC_FAIL","features":[138]},{"name":"FDIERROR_BAD_COMPR_TYPE","features":[138]},{"name":"FDIERROR_CABINET_NOT_FOUND","features":[138]},{"name":"FDIERROR_CORRUPT_CABINET","features":[138]},{"name":"FDIERROR_EOF","features":[138]},{"name":"FDIERROR_MDI_FAIL","features":[138]},{"name":"FDIERROR_NONE","features":[138]},{"name":"FDIERROR_NOT_A_CABINET","features":[138]},{"name":"FDIERROR_RESERVE_MISMATCH","features":[138]},{"name":"FDIERROR_TARGET_FILE","features":[138]},{"name":"FDIERROR_UNKNOWN_CABINET_VERSION","features":[138]},{"name":"FDIERROR_USER_ABORT","features":[138]},{"name":"FDIERROR_WRONG_CABINET","features":[138]},{"name":"FDIIsCabinet","features":[3,138]},{"name":"FDINOTIFICATION","features":[138]},{"name":"FDINOTIFICATIONTYPE","features":[138]},{"name":"FDISPILLFILE","features":[138]},{"name":"FDISPILLFILE","features":[138]},{"name":"FDITruncateCabinet","features":[3,138]},{"name":"INCLUDED_FCI","features":[138]},{"name":"INCLUDED_FDI","features":[138]},{"name":"INCLUDED_TYPES_FCI_FDI","features":[138]},{"name":"PFNALLOC","features":[138]},{"name":"PFNCLOSE","features":[138]},{"name":"PFNFCIALLOC","features":[138]},{"name":"PFNFCICLOSE","features":[138]},{"name":"PFNFCIDELETE","features":[138]},{"name":"PFNFCIFILEPLACED","features":[3,138]},{"name":"PFNFCIFREE","features":[138]},{"name":"PFNFCIGETNEXTCABINET","features":[3,138]},{"name":"PFNFCIGETOPENINFO","features":[138]},{"name":"PFNFCIGETTEMPFILE","features":[3,138]},{"name":"PFNFCIOPEN","features":[138]},{"name":"PFNFCIREAD","features":[138]},{"name":"PFNFCISEEK","features":[138]},{"name":"PFNFCISTATUS","features":[138]},{"name":"PFNFCIWRITE","features":[138]},{"name":"PFNFDIDECRYPT","features":[3,138]},{"name":"PFNFDINOTIFY","features":[138]},{"name":"PFNFREE","features":[138]},{"name":"PFNOPEN","features":[138]},{"name":"PFNREAD","features":[138]},{"name":"PFNSEEK","features":[138]},{"name":"PFNWRITE","features":[138]},{"name":"_A_EXEC","features":[138]},{"name":"_A_NAME_IS_UTF","features":[138]},{"name":"cpu80286","features":[138]},{"name":"cpu80386","features":[138]},{"name":"cpuUNKNOWN","features":[138]},{"name":"fdidtDECRYPT","features":[138]},{"name":"fdidtNEW_CABINET","features":[138]},{"name":"fdidtNEW_FOLDER","features":[138]},{"name":"fdintCABINET_INFO","features":[138]},{"name":"fdintCLOSE_FILE_INFO","features":[138]},{"name":"fdintCOPY_FILE","features":[138]},{"name":"fdintENUMERATE","features":[138]},{"name":"fdintNEXT_CABINET","features":[138]},{"name":"fdintPARTIAL_FILE","features":[138]},{"name":"statusCabinet","features":[138]},{"name":"statusFile","features":[138]},{"name":"statusFolder","features":[138]},{"name":"tcompBAD","features":[138]},{"name":"tcompLZX_WINDOW_HI","features":[138]},{"name":"tcompLZX_WINDOW_LO","features":[138]},{"name":"tcompMASK_LZX_WINDOW","features":[138]},{"name":"tcompMASK_QUANTUM_LEVEL","features":[138]},{"name":"tcompMASK_QUANTUM_MEM","features":[138]},{"name":"tcompMASK_RESERVED","features":[138]},{"name":"tcompMASK_TYPE","features":[138]},{"name":"tcompQUANTUM_LEVEL_HI","features":[138]},{"name":"tcompQUANTUM_LEVEL_LO","features":[138]},{"name":"tcompQUANTUM_MEM_HI","features":[138]},{"name":"tcompQUANTUM_MEM_LO","features":[138]},{"name":"tcompSHIFT_LZX_WINDOW","features":[138]},{"name":"tcompSHIFT_QUANTUM_LEVEL","features":[138]},{"name":"tcompSHIFT_QUANTUM_MEM","features":[138]},{"name":"tcompTYPE_LZX","features":[138]},{"name":"tcompTYPE_MSZIP","features":[138]},{"name":"tcompTYPE_NONE","features":[138]},{"name":"tcompTYPE_QUANTUM","features":[138]}],"505":[{"name":"CF_CALLBACK","features":[139,140]},{"name":"CF_CALLBACK_CANCEL_FLAGS","features":[139]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_ABORTED","features":[139]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_TIMEOUT","features":[139]},{"name":"CF_CALLBACK_CANCEL_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAGS","features":[139]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_DELETED","features":[139]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAGS","features":[139]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_BACKGROUND","features":[139]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_DEHYDRATED","features":[139]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_DEHYDRATE_FLAGS","features":[139]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_BACKGROUND","features":[139]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_DEHYDRATION_REASON","features":[139]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_NONE","features":[139]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_INACTIVITY","features":[139]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_LOW_SPACE","features":[139]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_OS_UPGRADE","features":[139]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_USER_MANUAL","features":[139]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAGS","features":[139]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_DELETE_FLAGS","features":[139]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_DIRECTORY","features":[139]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_UNDELETE","features":[139]},{"name":"CF_CALLBACK_DELETE_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_FETCH_DATA_FLAGS","features":[139]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_EXPLICIT_HYDRATION","features":[139]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_RECOVERY","features":[139]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAGS","features":[139]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_INFO","features":[139,140]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAGS","features":[139]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNKNOWN","features":[139]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNSUPPORTED","features":[139]},{"name":"CF_CALLBACK_PARAMETERS","features":[139]},{"name":"CF_CALLBACK_REGISTRATION","features":[139,140]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAGS","features":[139]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_RENAME_FLAGS","features":[139]},{"name":"CF_CALLBACK_RENAME_FLAG_IS_DIRECTORY","features":[139]},{"name":"CF_CALLBACK_RENAME_FLAG_NONE","features":[139]},{"name":"CF_CALLBACK_RENAME_FLAG_SOURCE_IN_SCOPE","features":[139]},{"name":"CF_CALLBACK_RENAME_FLAG_TARGET_IN_SCOPE","features":[139]},{"name":"CF_CALLBACK_TYPE","features":[139]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_DATA","features":[139]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_PLACEHOLDERS","features":[139]},{"name":"CF_CALLBACK_TYPE_FETCH_DATA","features":[139]},{"name":"CF_CALLBACK_TYPE_FETCH_PLACEHOLDERS","features":[139]},{"name":"CF_CALLBACK_TYPE_NONE","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE_COMPLETION","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE_COMPLETION","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_CLOSE_COMPLETION","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_OPEN_COMPLETION","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME","features":[139]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME_COMPLETION","features":[139]},{"name":"CF_CALLBACK_TYPE_VALIDATE_DATA","features":[139]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAGS","features":[139]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_EXPLICIT_HYDRATION","features":[139]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_NONE","features":[139]},{"name":"CF_CONNECTION_KEY","features":[139]},{"name":"CF_CONNECT_FLAGS","features":[139]},{"name":"CF_CONNECT_FLAG_BLOCK_SELF_IMPLICIT_HYDRATION","features":[139]},{"name":"CF_CONNECT_FLAG_NONE","features":[139]},{"name":"CF_CONNECT_FLAG_REQUIRE_FULL_FILE_PATH","features":[139]},{"name":"CF_CONNECT_FLAG_REQUIRE_PROCESS_INFO","features":[139]},{"name":"CF_CONVERT_FLAGS","features":[139]},{"name":"CF_CONVERT_FLAG_ALWAYS_FULL","features":[139]},{"name":"CF_CONVERT_FLAG_DEHYDRATE","features":[139]},{"name":"CF_CONVERT_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[139]},{"name":"CF_CONVERT_FLAG_FORCE_CONVERT_TO_CLOUD_FILE","features":[139]},{"name":"CF_CONVERT_FLAG_MARK_IN_SYNC","features":[139]},{"name":"CF_CONVERT_FLAG_NONE","features":[139]},{"name":"CF_CREATE_FLAGS","features":[139]},{"name":"CF_CREATE_FLAG_NONE","features":[139]},{"name":"CF_CREATE_FLAG_STOP_ON_ERROR","features":[139]},{"name":"CF_DEHYDRATE_FLAGS","features":[139]},{"name":"CF_DEHYDRATE_FLAG_BACKGROUND","features":[139]},{"name":"CF_DEHYDRATE_FLAG_NONE","features":[139]},{"name":"CF_FILE_RANGE","features":[139]},{"name":"CF_FS_METADATA","features":[139,23]},{"name":"CF_HARDLINK_POLICY","features":[139]},{"name":"CF_HARDLINK_POLICY_ALLOWED","features":[139]},{"name":"CF_HARDLINK_POLICY_NONE","features":[139]},{"name":"CF_HYDRATE_FLAGS","features":[139]},{"name":"CF_HYDRATE_FLAG_NONE","features":[139]},{"name":"CF_HYDRATION_POLICY","features":[139]},{"name":"CF_HYDRATION_POLICY_ALWAYS_FULL","features":[139]},{"name":"CF_HYDRATION_POLICY_FULL","features":[139]},{"name":"CF_HYDRATION_POLICY_MODIFIER","features":[139]},{"name":"CF_HYDRATION_POLICY_MODIFIER_ALLOW_FULL_RESTART_HYDRATION","features":[139]},{"name":"CF_HYDRATION_POLICY_MODIFIER_AUTO_DEHYDRATION_ALLOWED","features":[139]},{"name":"CF_HYDRATION_POLICY_MODIFIER_NONE","features":[139]},{"name":"CF_HYDRATION_POLICY_MODIFIER_STREAMING_ALLOWED","features":[139]},{"name":"CF_HYDRATION_POLICY_MODIFIER_VALIDATION_REQUIRED","features":[139]},{"name":"CF_HYDRATION_POLICY_PARTIAL","features":[139]},{"name":"CF_HYDRATION_POLICY_PRIMARY","features":[139]},{"name":"CF_HYDRATION_POLICY_PROGRESSIVE","features":[139]},{"name":"CF_INSYNC_POLICY","features":[139]},{"name":"CF_INSYNC_POLICY_NONE","features":[139]},{"name":"CF_INSYNC_POLICY_PRESERVE_INSYNC_FOR_SYNC_ENGINE","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_ALL","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_ALL","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_CREATION_TIME","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_HIDDEN_ATTRIBUTE","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_LAST_WRITE_TIME","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_READONLY_ATTRIBUTE","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_SYSTEM_ATTRIBUTE","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_ALL","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_CREATION_TIME","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_HIDDEN_ATTRIBUTE","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_LAST_WRITE_TIME","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_READONLY_ATTRIBUTE","features":[139]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_SYSTEM_ATTRIBUTE","features":[139]},{"name":"CF_IN_SYNC_STATE","features":[139]},{"name":"CF_IN_SYNC_STATE_IN_SYNC","features":[139]},{"name":"CF_IN_SYNC_STATE_NOT_IN_SYNC","features":[139]},{"name":"CF_MAX_PRIORITY_HINT","features":[139]},{"name":"CF_MAX_PROVIDER_NAME_LENGTH","features":[139]},{"name":"CF_MAX_PROVIDER_VERSION_LENGTH","features":[139]},{"name":"CF_OPEN_FILE_FLAGS","features":[139]},{"name":"CF_OPEN_FILE_FLAG_DELETE_ACCESS","features":[139]},{"name":"CF_OPEN_FILE_FLAG_EXCLUSIVE","features":[139]},{"name":"CF_OPEN_FILE_FLAG_FOREGROUND","features":[139]},{"name":"CF_OPEN_FILE_FLAG_NONE","features":[139]},{"name":"CF_OPEN_FILE_FLAG_WRITE_ACCESS","features":[139]},{"name":"CF_OPERATION_ACK_DATA_FLAGS","features":[139]},{"name":"CF_OPERATION_ACK_DATA_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAGS","features":[139]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_ACK_DELETE_FLAGS","features":[139]},{"name":"CF_OPERATION_ACK_DELETE_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_ACK_RENAME_FLAGS","features":[139]},{"name":"CF_OPERATION_ACK_RENAME_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_INFO","features":[139,140]},{"name":"CF_OPERATION_PARAMETERS","features":[3,139,23]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAGS","features":[139]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_MARK_IN_SYNC","features":[139]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAGS","features":[139]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAGS","features":[139]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAGS","features":[139]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[139]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_NONE","features":[139]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_STOP_ON_ERROR","features":[139]},{"name":"CF_OPERATION_TYPE","features":[139]},{"name":"CF_OPERATION_TYPE_ACK_DATA","features":[139]},{"name":"CF_OPERATION_TYPE_ACK_DEHYDRATE","features":[139]},{"name":"CF_OPERATION_TYPE_ACK_DELETE","features":[139]},{"name":"CF_OPERATION_TYPE_ACK_RENAME","features":[139]},{"name":"CF_OPERATION_TYPE_RESTART_HYDRATION","features":[139]},{"name":"CF_OPERATION_TYPE_RETRIEVE_DATA","features":[139]},{"name":"CF_OPERATION_TYPE_TRANSFER_DATA","features":[139]},{"name":"CF_OPERATION_TYPE_TRANSFER_PLACEHOLDERS","features":[139]},{"name":"CF_PIN_STATE","features":[139]},{"name":"CF_PIN_STATE_EXCLUDED","features":[139]},{"name":"CF_PIN_STATE_INHERIT","features":[139]},{"name":"CF_PIN_STATE_PINNED","features":[139]},{"name":"CF_PIN_STATE_UNPINNED","features":[139]},{"name":"CF_PIN_STATE_UNSPECIFIED","features":[139]},{"name":"CF_PLACEHOLDER_BASIC_INFO","features":[139]},{"name":"CF_PLACEHOLDER_CREATE_FLAGS","features":[139]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_ALWAYS_FULL","features":[139]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[139]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_MARK_IN_SYNC","features":[139]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_NONE","features":[139]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_SUPERSEDE","features":[139]},{"name":"CF_PLACEHOLDER_CREATE_INFO","features":[139,23]},{"name":"CF_PLACEHOLDER_INFO_BASIC","features":[139]},{"name":"CF_PLACEHOLDER_INFO_CLASS","features":[139]},{"name":"CF_PLACEHOLDER_INFO_STANDARD","features":[139]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY","features":[139]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CONVERT_TO_UNRESTRICTED","features":[139]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CREATE_UNRESTRICTED","features":[139]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_DEFAULT","features":[139]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_UPDATE_UNRESTRICTED","features":[139]},{"name":"CF_PLACEHOLDER_MAX_FILE_IDENTITY_LENGTH","features":[139]},{"name":"CF_PLACEHOLDER_RANGE_INFO_CLASS","features":[139]},{"name":"CF_PLACEHOLDER_RANGE_INFO_MODIFIED","features":[139]},{"name":"CF_PLACEHOLDER_RANGE_INFO_ONDISK","features":[139]},{"name":"CF_PLACEHOLDER_RANGE_INFO_VALIDATED","features":[139]},{"name":"CF_PLACEHOLDER_STANDARD_INFO","features":[139]},{"name":"CF_PLACEHOLDER_STATE","features":[139]},{"name":"CF_PLACEHOLDER_STATE_ESSENTIAL_PROP_PRESENT","features":[139]},{"name":"CF_PLACEHOLDER_STATE_INVALID","features":[139]},{"name":"CF_PLACEHOLDER_STATE_IN_SYNC","features":[139]},{"name":"CF_PLACEHOLDER_STATE_NO_STATES","features":[139]},{"name":"CF_PLACEHOLDER_STATE_PARTIAL","features":[139]},{"name":"CF_PLACEHOLDER_STATE_PARTIALLY_ON_DISK","features":[139]},{"name":"CF_PLACEHOLDER_STATE_PLACEHOLDER","features":[139]},{"name":"CF_PLACEHOLDER_STATE_SYNC_ROOT","features":[139]},{"name":"CF_PLATFORM_INFO","features":[139]},{"name":"CF_POPULATION_POLICY","features":[139]},{"name":"CF_POPULATION_POLICY_ALWAYS_FULL","features":[139]},{"name":"CF_POPULATION_POLICY_FULL","features":[139]},{"name":"CF_POPULATION_POLICY_MODIFIER","features":[139]},{"name":"CF_POPULATION_POLICY_MODIFIER_NONE","features":[139]},{"name":"CF_POPULATION_POLICY_PARTIAL","features":[139]},{"name":"CF_POPULATION_POLICY_PRIMARY","features":[139]},{"name":"CF_PROCESS_INFO","features":[139]},{"name":"CF_PROVIDER_STATUS_CLEAR_FLAGS","features":[139]},{"name":"CF_PROVIDER_STATUS_CONNECTIVITY_LOST","features":[139]},{"name":"CF_PROVIDER_STATUS_DISCONNECTED","features":[139]},{"name":"CF_PROVIDER_STATUS_ERROR","features":[139]},{"name":"CF_PROVIDER_STATUS_IDLE","features":[139]},{"name":"CF_PROVIDER_STATUS_POPULATE_CONTENT","features":[139]},{"name":"CF_PROVIDER_STATUS_POPULATE_METADATA","features":[139]},{"name":"CF_PROVIDER_STATUS_POPULATE_NAMESPACE","features":[139]},{"name":"CF_PROVIDER_STATUS_SYNC_FULL","features":[139]},{"name":"CF_PROVIDER_STATUS_SYNC_INCREMENTAL","features":[139]},{"name":"CF_PROVIDER_STATUS_TERMINATED","features":[139]},{"name":"CF_REGISTER_FLAGS","features":[139]},{"name":"CF_REGISTER_FLAG_DISABLE_ON_DEMAND_POPULATION_ON_ROOT","features":[139]},{"name":"CF_REGISTER_FLAG_MARK_IN_SYNC_ON_ROOT","features":[139]},{"name":"CF_REGISTER_FLAG_NONE","features":[139]},{"name":"CF_REGISTER_FLAG_UPDATE","features":[139]},{"name":"CF_REQUEST_KEY_DEFAULT","features":[139]},{"name":"CF_REVERT_FLAGS","features":[139]},{"name":"CF_REVERT_FLAG_NONE","features":[139]},{"name":"CF_SET_IN_SYNC_FLAGS","features":[139]},{"name":"CF_SET_IN_SYNC_FLAG_NONE","features":[139]},{"name":"CF_SET_PIN_FLAGS","features":[139]},{"name":"CF_SET_PIN_FLAG_NONE","features":[139]},{"name":"CF_SET_PIN_FLAG_RECURSE","features":[139]},{"name":"CF_SET_PIN_FLAG_RECURSE_ONLY","features":[139]},{"name":"CF_SET_PIN_FLAG_RECURSE_STOP_ON_ERROR","features":[139]},{"name":"CF_SYNC_POLICIES","features":[139]},{"name":"CF_SYNC_PROVIDER_STATUS","features":[139]},{"name":"CF_SYNC_REGISTRATION","features":[139]},{"name":"CF_SYNC_ROOT_BASIC_INFO","features":[139]},{"name":"CF_SYNC_ROOT_INFO_BASIC","features":[139]},{"name":"CF_SYNC_ROOT_INFO_CLASS","features":[139]},{"name":"CF_SYNC_ROOT_INFO_PROVIDER","features":[139]},{"name":"CF_SYNC_ROOT_INFO_STANDARD","features":[139]},{"name":"CF_SYNC_ROOT_PROVIDER_INFO","features":[139]},{"name":"CF_SYNC_ROOT_STANDARD_INFO","features":[139]},{"name":"CF_SYNC_STATUS","features":[139]},{"name":"CF_UPDATE_FLAGS","features":[139]},{"name":"CF_UPDATE_FLAG_ALLOW_PARTIAL","features":[139]},{"name":"CF_UPDATE_FLAG_ALWAYS_FULL","features":[139]},{"name":"CF_UPDATE_FLAG_CLEAR_IN_SYNC","features":[139]},{"name":"CF_UPDATE_FLAG_DEHYDRATE","features":[139]},{"name":"CF_UPDATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[139]},{"name":"CF_UPDATE_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[139]},{"name":"CF_UPDATE_FLAG_MARK_IN_SYNC","features":[139]},{"name":"CF_UPDATE_FLAG_NONE","features":[139]},{"name":"CF_UPDATE_FLAG_PASSTHROUGH_FS_METADATA","features":[139]},{"name":"CF_UPDATE_FLAG_REMOVE_FILE_IDENTITY","features":[139]},{"name":"CF_UPDATE_FLAG_REMOVE_PROPERTY","features":[139]},{"name":"CF_UPDATE_FLAG_VERIFY_IN_SYNC","features":[139]},{"name":"CfCloseHandle","features":[3,139]},{"name":"CfConnectSyncRoot","features":[139,140]},{"name":"CfConvertToPlaceholder","features":[3,139,8]},{"name":"CfCreatePlaceholders","features":[139,23]},{"name":"CfDehydratePlaceholder","features":[3,139,8]},{"name":"CfDisconnectSyncRoot","features":[139]},{"name":"CfExecute","features":[3,139,23,140]},{"name":"CfGetCorrelationVector","features":[3,139,140]},{"name":"CfGetPlaceholderInfo","features":[3,139]},{"name":"CfGetPlaceholderRangeInfo","features":[3,139]},{"name":"CfGetPlaceholderRangeInfoForHydration","features":[139]},{"name":"CfGetPlaceholderStateFromAttributeTag","features":[139]},{"name":"CfGetPlaceholderStateFromFileInfo","features":[139,23]},{"name":"CfGetPlaceholderStateFromFindData","features":[3,139,23]},{"name":"CfGetPlatformInfo","features":[139]},{"name":"CfGetSyncRootInfoByHandle","features":[3,139]},{"name":"CfGetSyncRootInfoByPath","features":[139]},{"name":"CfGetTransferKey","features":[3,139]},{"name":"CfGetWin32HandleFromProtectedHandle","features":[3,139]},{"name":"CfHydratePlaceholder","features":[3,139,8]},{"name":"CfOpenFileWithOplock","features":[3,139]},{"name":"CfQuerySyncProviderStatus","features":[139]},{"name":"CfReferenceProtectedHandle","features":[3,139]},{"name":"CfRegisterSyncRoot","features":[139]},{"name":"CfReleaseProtectedHandle","features":[3,139]},{"name":"CfReleaseTransferKey","features":[3,139]},{"name":"CfReportProviderProgress","features":[139]},{"name":"CfReportProviderProgress2","features":[139]},{"name":"CfReportSyncStatus","features":[139]},{"name":"CfRevertPlaceholder","features":[3,139,8]},{"name":"CfSetCorrelationVector","features":[3,139,140]},{"name":"CfSetInSyncState","features":[3,139]},{"name":"CfSetPinState","features":[3,139,8]},{"name":"CfUnregisterSyncRoot","features":[139]},{"name":"CfUpdatePlaceholder","features":[3,139,23,8]},{"name":"CfUpdateSyncProviderStatus","features":[139]}],"506":[{"name":"COMPRESSOR_HANDLE","features":[141]},{"name":"COMPRESS_ALGORITHM","features":[141]},{"name":"COMPRESS_ALGORITHM_INVALID","features":[141]},{"name":"COMPRESS_ALGORITHM_LZMS","features":[141]},{"name":"COMPRESS_ALGORITHM_MAX","features":[141]},{"name":"COMPRESS_ALGORITHM_MSZIP","features":[141]},{"name":"COMPRESS_ALGORITHM_NULL","features":[141]},{"name":"COMPRESS_ALGORITHM_XPRESS","features":[141]},{"name":"COMPRESS_ALGORITHM_XPRESS_HUFF","features":[141]},{"name":"COMPRESS_ALLOCATION_ROUTINES","features":[141]},{"name":"COMPRESS_INFORMATION_CLASS","features":[141]},{"name":"COMPRESS_INFORMATION_CLASS_BLOCK_SIZE","features":[141]},{"name":"COMPRESS_INFORMATION_CLASS_INVALID","features":[141]},{"name":"COMPRESS_INFORMATION_CLASS_LEVEL","features":[141]},{"name":"COMPRESS_RAW","features":[141]},{"name":"CloseCompressor","features":[3,141]},{"name":"CloseDecompressor","features":[3,141]},{"name":"Compress","features":[3,141]},{"name":"CreateCompressor","features":[3,141]},{"name":"CreateDecompressor","features":[3,141]},{"name":"DECOMPRESSOR_HANDLE","features":[141]},{"name":"Decompress","features":[3,141]},{"name":"PFN_COMPRESS_ALLOCATE","features":[141]},{"name":"PFN_COMPRESS_FREE","features":[141]},{"name":"QueryCompressorInformation","features":[3,141]},{"name":"QueryDecompressorInformation","features":[3,141]},{"name":"ResetCompressor","features":[3,141]},{"name":"ResetDecompressor","features":[3,141]},{"name":"SetCompressorInformation","features":[3,141]},{"name":"SetDecompressorInformation","features":[3,141]}],"508":[{"name":"DFS_ADD_VOLUME","features":[142]},{"name":"DFS_FORCE_REMOVE","features":[142]},{"name":"DFS_GET_PKT_ENTRY_STATE_ARG","features":[142]},{"name":"DFS_INFO_1","features":[142]},{"name":"DFS_INFO_100","features":[142]},{"name":"DFS_INFO_101","features":[142]},{"name":"DFS_INFO_102","features":[142]},{"name":"DFS_INFO_103","features":[142]},{"name":"DFS_INFO_104","features":[142]},{"name":"DFS_INFO_105","features":[142]},{"name":"DFS_INFO_106","features":[142]},{"name":"DFS_INFO_107","features":[6,142]},{"name":"DFS_INFO_150","features":[6,142]},{"name":"DFS_INFO_1_32","features":[142]},{"name":"DFS_INFO_2","features":[142]},{"name":"DFS_INFO_200","features":[142]},{"name":"DFS_INFO_2_32","features":[142]},{"name":"DFS_INFO_3","features":[142]},{"name":"DFS_INFO_300","features":[142]},{"name":"DFS_INFO_3_32","features":[142]},{"name":"DFS_INFO_4","features":[142]},{"name":"DFS_INFO_4_32","features":[142]},{"name":"DFS_INFO_5","features":[142]},{"name":"DFS_INFO_50","features":[142]},{"name":"DFS_INFO_6","features":[142]},{"name":"DFS_INFO_7","features":[142]},{"name":"DFS_INFO_8","features":[6,142]},{"name":"DFS_INFO_9","features":[6,142]},{"name":"DFS_MOVE_FLAG_REPLACE_IF_EXISTS","features":[142]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN","features":[142]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_COMBINED","features":[142]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_DOMAIN","features":[142]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_SERVER","features":[142]},{"name":"DFS_PROPERTY_FLAG_ABDE","features":[142]},{"name":"DFS_PROPERTY_FLAG_CLUSTER_ENABLED","features":[142]},{"name":"DFS_PROPERTY_FLAG_INSITE_REFERRALS","features":[142]},{"name":"DFS_PROPERTY_FLAG_ROOT_SCALABILITY","features":[142]},{"name":"DFS_PROPERTY_FLAG_SITE_COSTING","features":[142]},{"name":"DFS_PROPERTY_FLAG_TARGET_FAILBACK","features":[142]},{"name":"DFS_RESTORE_VOLUME","features":[142]},{"name":"DFS_SITELIST_INFO","features":[142]},{"name":"DFS_SITENAME_INFO","features":[142]},{"name":"DFS_SITE_PRIMARY","features":[142]},{"name":"DFS_STORAGE_FLAVOR_UNUSED2","features":[142]},{"name":"DFS_STORAGE_INFO","features":[142]},{"name":"DFS_STORAGE_INFO_0_32","features":[142]},{"name":"DFS_STORAGE_INFO_1","features":[142]},{"name":"DFS_STORAGE_STATES","features":[142]},{"name":"DFS_STORAGE_STATE_ACTIVE","features":[142]},{"name":"DFS_STORAGE_STATE_OFFLINE","features":[142]},{"name":"DFS_STORAGE_STATE_ONLINE","features":[142]},{"name":"DFS_SUPPORTED_NAMESPACE_VERSION_INFO","features":[142]},{"name":"DFS_TARGET_PRIORITY","features":[142]},{"name":"DFS_TARGET_PRIORITY_CLASS","features":[142]},{"name":"DFS_VOLUME_FLAVORS","features":[142]},{"name":"DFS_VOLUME_FLAVOR_AD_BLOB","features":[142]},{"name":"DFS_VOLUME_FLAVOR_STANDALONE","features":[142]},{"name":"DFS_VOLUME_FLAVOR_UNUSED1","features":[142]},{"name":"DFS_VOLUME_STATES","features":[142]},{"name":"DFS_VOLUME_STATE_FORCE_SYNC","features":[142]},{"name":"DFS_VOLUME_STATE_INCONSISTENT","features":[142]},{"name":"DFS_VOLUME_STATE_OFFLINE","features":[142]},{"name":"DFS_VOLUME_STATE_OK","features":[142]},{"name":"DFS_VOLUME_STATE_ONLINE","features":[142]},{"name":"DFS_VOLUME_STATE_RESYNCHRONIZE","features":[142]},{"name":"DFS_VOLUME_STATE_STANDBY","features":[142]},{"name":"DfsGlobalHighPriorityClass","features":[142]},{"name":"DfsGlobalLowPriorityClass","features":[142]},{"name":"DfsInvalidPriorityClass","features":[142]},{"name":"DfsSiteCostHighPriorityClass","features":[142]},{"name":"DfsSiteCostLowPriorityClass","features":[142]},{"name":"DfsSiteCostNormalPriorityClass","features":[142]},{"name":"FSCTL_DFS_BASE","features":[142]},{"name":"FSCTL_DFS_GET_PKT_ENTRY_STATE","features":[142]},{"name":"NET_DFS_SETDC_FLAGS","features":[142]},{"name":"NET_DFS_SETDC_INITPKT","features":[142]},{"name":"NET_DFS_SETDC_TIMEOUT","features":[142]},{"name":"NetDfsAdd","features":[142]},{"name":"NetDfsAddFtRoot","features":[142]},{"name":"NetDfsAddRootTarget","features":[142]},{"name":"NetDfsAddStdRoot","features":[142]},{"name":"NetDfsEnum","features":[142]},{"name":"NetDfsGetClientInfo","features":[142]},{"name":"NetDfsGetFtContainerSecurity","features":[6,142]},{"name":"NetDfsGetInfo","features":[142]},{"name":"NetDfsGetSecurity","features":[6,142]},{"name":"NetDfsGetStdContainerSecurity","features":[6,142]},{"name":"NetDfsGetSupportedNamespaceVersion","features":[142]},{"name":"NetDfsMove","features":[142]},{"name":"NetDfsRemove","features":[142]},{"name":"NetDfsRemoveFtRoot","features":[142]},{"name":"NetDfsRemoveFtRootForced","features":[142]},{"name":"NetDfsRemoveRootTarget","features":[142]},{"name":"NetDfsRemoveStdRoot","features":[142]},{"name":"NetDfsSetClientInfo","features":[142]},{"name":"NetDfsSetFtContainerSecurity","features":[6,142]},{"name":"NetDfsSetInfo","features":[142]},{"name":"NetDfsSetSecurity","features":[6,142]},{"name":"NetDfsSetStdContainerSecurity","features":[6,142]}],"510":[{"name":"BackupCancelled","features":[143]},{"name":"BackupInvalidStopReason","features":[143]},{"name":"BackupLimitUserBusyMachineOnAC","features":[143]},{"name":"BackupLimitUserBusyMachineOnDC","features":[143]},{"name":"BackupLimitUserIdleMachineOnDC","features":[143]},{"name":"FHCFG_E_CONFIGURATION_PREVIOUSLY_LOADED","features":[143]},{"name":"FHCFG_E_CONFIG_ALREADY_EXISTS","features":[143]},{"name":"FHCFG_E_CONFIG_FILE_NOT_FOUND","features":[143]},{"name":"FHCFG_E_CORRUPT_CONFIG_FILE","features":[143]},{"name":"FHCFG_E_INVALID_REHYDRATION_STATE","features":[143]},{"name":"FHCFG_E_LEGACY_BACKUP_NOT_FOUND","features":[143]},{"name":"FHCFG_E_LEGACY_BACKUP_USER_EXCLUDED","features":[143]},{"name":"FHCFG_E_LEGACY_TARGET_UNSUPPORTED","features":[143]},{"name":"FHCFG_E_LEGACY_TARGET_VALIDATION_UNSUPPORTED","features":[143]},{"name":"FHCFG_E_NO_VALID_CONFIGURATION_LOADED","features":[143]},{"name":"FHCFG_E_RECOMMENDATION_CHANGE_NOT_ALLOWED","features":[143]},{"name":"FHCFG_E_TARGET_CANNOT_BE_USED","features":[143]},{"name":"FHCFG_E_TARGET_NOT_CONFIGURED","features":[143]},{"name":"FHCFG_E_TARGET_NOT_CONNECTED","features":[143]},{"name":"FHCFG_E_TARGET_NOT_ENOUGH_FREE_SPACE","features":[143]},{"name":"FHCFG_E_TARGET_REHYDRATED_ELSEWHERE","features":[143]},{"name":"FHCFG_E_TARGET_VERIFICATION_FAILED","features":[143]},{"name":"FHSVC_E_BACKUP_BLOCKED","features":[143]},{"name":"FHSVC_E_CONFIG_DISABLED","features":[143]},{"name":"FHSVC_E_CONFIG_DISABLED_GP","features":[143]},{"name":"FHSVC_E_CONFIG_REHYDRATING","features":[143]},{"name":"FHSVC_E_FATAL_CONFIG_ERROR","features":[143]},{"name":"FHSVC_E_NOT_CONFIGURED","features":[143]},{"name":"FH_ACCESS_DENIED","features":[143]},{"name":"FH_BACKUP_STATUS","features":[143]},{"name":"FH_CURRENT_DEFAULT","features":[143]},{"name":"FH_DEVICE_VALIDATION_RESULT","features":[143]},{"name":"FH_DRIVE_FIXED","features":[143]},{"name":"FH_DRIVE_REMOTE","features":[143]},{"name":"FH_DRIVE_REMOVABLE","features":[143]},{"name":"FH_DRIVE_UNKNOWN","features":[143]},{"name":"FH_FOLDER","features":[143]},{"name":"FH_FREQUENCY","features":[143]},{"name":"FH_INVALID_DRIVE_TYPE","features":[143]},{"name":"FH_LIBRARY","features":[143]},{"name":"FH_LOCAL_POLICY_TYPE","features":[143]},{"name":"FH_NAMESPACE_EXISTS","features":[143]},{"name":"FH_PROTECTED_ITEM_CATEGORY","features":[143]},{"name":"FH_READ_ONLY_PERMISSION","features":[143]},{"name":"FH_RETENTION_AGE","features":[143]},{"name":"FH_RETENTION_AGE_BASED","features":[143]},{"name":"FH_RETENTION_DISABLED","features":[143]},{"name":"FH_RETENTION_TYPE","features":[143]},{"name":"FH_RETENTION_TYPES","features":[143]},{"name":"FH_RETENTION_UNLIMITED","features":[143]},{"name":"FH_SERVICE_PIPE_HANDLE","features":[143]},{"name":"FH_STATE_BACKUP_NOT_SUPPORTED","features":[143]},{"name":"FH_STATE_DISABLED_BY_GP","features":[143]},{"name":"FH_STATE_FATAL_CONFIG_ERROR","features":[143]},{"name":"FH_STATE_MIGRATING","features":[143]},{"name":"FH_STATE_NOT_TRACKED","features":[143]},{"name":"FH_STATE_NO_ERROR","features":[143]},{"name":"FH_STATE_OFF","features":[143]},{"name":"FH_STATE_REHYDRATING","features":[143]},{"name":"FH_STATE_RUNNING","features":[143]},{"name":"FH_STATE_STAGING_FULL","features":[143]},{"name":"FH_STATE_TARGET_ABSENT","features":[143]},{"name":"FH_STATE_TARGET_ACCESS_DENIED","features":[143]},{"name":"FH_STATE_TARGET_FS_LIMITATION","features":[143]},{"name":"FH_STATE_TARGET_FULL","features":[143]},{"name":"FH_STATE_TARGET_FULL_RETENTION_MAX","features":[143]},{"name":"FH_STATE_TARGET_LOW_SPACE","features":[143]},{"name":"FH_STATE_TARGET_LOW_SPACE_RETENTION_MAX","features":[143]},{"name":"FH_STATE_TARGET_VOLUME_DIRTY","features":[143]},{"name":"FH_STATE_TOO_MUCH_BEHIND","features":[143]},{"name":"FH_STATUS_DISABLED","features":[143]},{"name":"FH_STATUS_DISABLED_BY_GP","features":[143]},{"name":"FH_STATUS_ENABLED","features":[143]},{"name":"FH_STATUS_REHYDRATING","features":[143]},{"name":"FH_TARGET_DRIVE_TYPE","features":[143]},{"name":"FH_TARGET_DRIVE_TYPES","features":[143]},{"name":"FH_TARGET_NAME","features":[143]},{"name":"FH_TARGET_PART_OF_LIBRARY","features":[143]},{"name":"FH_TARGET_PROPERTY_TYPE","features":[143]},{"name":"FH_TARGET_URL","features":[143]},{"name":"FH_VALID_TARGET","features":[143]},{"name":"FhBackupStopReason","features":[143]},{"name":"FhConfigMgr","features":[143]},{"name":"FhReassociation","features":[143]},{"name":"FhServiceBlockBackup","features":[143]},{"name":"FhServiceClosePipe","features":[143]},{"name":"FhServiceOpenPipe","features":[3,143]},{"name":"FhServiceReloadConfiguration","features":[143]},{"name":"FhServiceStartBackup","features":[3,143]},{"name":"FhServiceStopBackup","features":[3,143]},{"name":"FhServiceUnblockBackup","features":[143]},{"name":"IFhConfigMgr","features":[143]},{"name":"IFhReassociation","features":[143]},{"name":"IFhScopeIterator","features":[143]},{"name":"IFhTarget","features":[143]},{"name":"MAX_BACKUP_STATUS","features":[143]},{"name":"MAX_LOCAL_POLICY","features":[143]},{"name":"MAX_PROTECTED_ITEM_CATEGORY","features":[143]},{"name":"MAX_RETENTION_TYPE","features":[143]},{"name":"MAX_TARGET_PROPERTY","features":[143]},{"name":"MAX_VALIDATION_RESULT","features":[143]}],"512":[{"name":"ACCESS_ALL","features":[23]},{"name":"ACCESS_ATRIB","features":[23]},{"name":"ACCESS_CREATE","features":[23]},{"name":"ACCESS_DELETE","features":[23]},{"name":"ACCESS_EXEC","features":[23]},{"name":"ACCESS_PERM","features":[23]},{"name":"ACCESS_READ","features":[23]},{"name":"ACCESS_WRITE","features":[23]},{"name":"AddLogContainer","features":[3,23]},{"name":"AddLogContainerSet","features":[3,23]},{"name":"AddUsersToEncryptedFile","features":[6,23]},{"name":"AdvanceLogBase","features":[3,23,8]},{"name":"AlignReservedLog","features":[3,23]},{"name":"AllocReservedLog","features":[3,23]},{"name":"AreFileApisANSI","features":[3,23]},{"name":"AreShortNamesEnabled","features":[3,23]},{"name":"BACKUP_ALTERNATE_DATA","features":[23]},{"name":"BACKUP_DATA","features":[23]},{"name":"BACKUP_EA_DATA","features":[23]},{"name":"BACKUP_LINK","features":[23]},{"name":"BACKUP_OBJECT_ID","features":[23]},{"name":"BACKUP_PROPERTY_DATA","features":[23]},{"name":"BACKUP_REPARSE_DATA","features":[23]},{"name":"BACKUP_SECURITY_DATA","features":[23]},{"name":"BACKUP_SPARSE_BLOCK","features":[23]},{"name":"BACKUP_TXFS_DATA","features":[23]},{"name":"BY_HANDLE_FILE_INFORMATION","features":[3,23]},{"name":"BackupRead","features":[3,23]},{"name":"BackupSeek","features":[3,23]},{"name":"BackupWrite","features":[3,23]},{"name":"BuildIoRingCancelRequest","features":[3,23]},{"name":"BuildIoRingFlushFile","features":[3,23]},{"name":"BuildIoRingReadFile","features":[3,23]},{"name":"BuildIoRingRegisterBuffers","features":[23]},{"name":"BuildIoRingRegisterFileHandles","features":[3,23]},{"name":"BuildIoRingWriteFile","features":[3,23]},{"name":"BusType1394","features":[23]},{"name":"BusTypeAta","features":[23]},{"name":"BusTypeAtapi","features":[23]},{"name":"BusTypeFibre","features":[23]},{"name":"BusTypeFileBackedVirtual","features":[23]},{"name":"BusTypeMax","features":[23]},{"name":"BusTypeMaxReserved","features":[23]},{"name":"BusTypeMmc","features":[23]},{"name":"BusTypeNvme","features":[23]},{"name":"BusTypeRAID","features":[23]},{"name":"BusTypeSCM","features":[23]},{"name":"BusTypeSas","features":[23]},{"name":"BusTypeSata","features":[23]},{"name":"BusTypeScsi","features":[23]},{"name":"BusTypeSd","features":[23]},{"name":"BusTypeSpaces","features":[23]},{"name":"BusTypeSsa","features":[23]},{"name":"BusTypeUfs","features":[23]},{"name":"BusTypeUnknown","features":[23]},{"name":"BusTypeUsb","features":[23]},{"name":"BusTypeVirtual","features":[23]},{"name":"BusTypeiScsi","features":[23]},{"name":"CACHE_ACCESS_CHECK","features":[3,6,23]},{"name":"CACHE_DESTROY_CALLBACK","features":[23]},{"name":"CACHE_KEY_COMPARE","features":[23]},{"name":"CACHE_KEY_HASH","features":[23]},{"name":"CACHE_READ_CALLBACK","features":[3,23]},{"name":"CALLBACK_CHUNK_FINISHED","features":[23]},{"name":"CALLBACK_STREAM_SWITCH","features":[23]},{"name":"CLAIMMEDIALABEL","features":[23]},{"name":"CLAIMMEDIALABELEX","features":[23]},{"name":"CLFS_BASELOG_EXTENSION","features":[23]},{"name":"CLFS_BLOCK_ALLOCATION","features":[23]},{"name":"CLFS_BLOCK_DEALLOCATION","features":[23]},{"name":"CLFS_CONTAINER_RELATIVE_PREFIX","features":[23]},{"name":"CLFS_CONTAINER_STREAM_PREFIX","features":[23]},{"name":"CLFS_CONTEXT_MODE","features":[23]},{"name":"CLFS_FLAG","features":[23]},{"name":"CLFS_FLAG_FILTER_INTERMEDIATE_LEVEL","features":[23]},{"name":"CLFS_FLAG_FILTER_TOP_LEVEL","features":[23]},{"name":"CLFS_FLAG_FORCE_APPEND","features":[23]},{"name":"CLFS_FLAG_FORCE_FLUSH","features":[23]},{"name":"CLFS_FLAG_HIDDEN_SYSTEM_LOG","features":[23]},{"name":"CLFS_FLAG_IGNORE_SHARE_ACCESS","features":[23]},{"name":"CLFS_FLAG_MINIFILTER_LEVEL","features":[23]},{"name":"CLFS_FLAG_NON_REENTRANT_FILTER","features":[23]},{"name":"CLFS_FLAG_NO_FLAGS","features":[23]},{"name":"CLFS_FLAG_READ_IN_PROGRESS","features":[23]},{"name":"CLFS_FLAG_REENTRANT_FILE_SYSTEM","features":[23]},{"name":"CLFS_FLAG_REENTRANT_FILTER","features":[23]},{"name":"CLFS_FLAG_USE_RESERVATION","features":[23]},{"name":"CLFS_IOSTATS_CLASS","features":[23]},{"name":"CLFS_LOG_ARCHIVE_MODE","features":[23]},{"name":"CLFS_LOG_NAME_INFORMATION","features":[23]},{"name":"CLFS_MARSHALLING_FLAG_DISABLE_BUFF_INIT","features":[23]},{"name":"CLFS_MARSHALLING_FLAG_NONE","features":[23]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[23]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION_VERSION","features":[23]},{"name":"CLFS_MGMT_NOTIFICATION","features":[23]},{"name":"CLFS_MGMT_NOTIFICATION_TYPE","features":[23]},{"name":"CLFS_MGMT_POLICY","features":[23]},{"name":"CLFS_MGMT_POLICY_TYPE","features":[23]},{"name":"CLFS_MGMT_POLICY_VERSION","features":[23]},{"name":"CLFS_NODE_ID","features":[23]},{"name":"CLFS_PHYSICAL_LSN_INFORMATION","features":[23]},{"name":"CLFS_SCAN_BACKWARD","features":[23]},{"name":"CLFS_SCAN_BUFFERED","features":[23]},{"name":"CLFS_SCAN_CLOSE","features":[23]},{"name":"CLFS_SCAN_FORWARD","features":[23]},{"name":"CLFS_SCAN_INIT","features":[23]},{"name":"CLFS_SCAN_INITIALIZED","features":[23]},{"name":"CLFS_STREAM_ID_INFORMATION","features":[23]},{"name":"CLSID_DiskQuotaControl","features":[23]},{"name":"CLS_ARCHIVE_DESCRIPTOR","features":[23]},{"name":"CLS_CONTAINER_INFORMATION","features":[23]},{"name":"CLS_CONTEXT_MODE","features":[23]},{"name":"CLS_INFORMATION","features":[23]},{"name":"CLS_IOSTATS_CLASS","features":[23]},{"name":"CLS_IO_STATISTICS","features":[23]},{"name":"CLS_IO_STATISTICS_HEADER","features":[23]},{"name":"CLS_LOG_INFORMATION_CLASS","features":[23]},{"name":"CLS_LSN","features":[23]},{"name":"CLS_SCAN_CONTEXT","features":[3,23]},{"name":"CLS_WRITE_ENTRY","features":[23]},{"name":"COMPRESSION_FORMAT","features":[23]},{"name":"COMPRESSION_FORMAT_DEFAULT","features":[23]},{"name":"COMPRESSION_FORMAT_LZNT1","features":[23]},{"name":"COMPRESSION_FORMAT_NONE","features":[23]},{"name":"COMPRESSION_FORMAT_XP10","features":[23]},{"name":"COMPRESSION_FORMAT_XPRESS","features":[23]},{"name":"COMPRESSION_FORMAT_XPRESS_HUFF","features":[23]},{"name":"CONNECTION_INFO_0","features":[23]},{"name":"CONNECTION_INFO_1","features":[23]},{"name":"COPYFILE2_CALLBACK_CHUNK_FINISHED","features":[23]},{"name":"COPYFILE2_CALLBACK_CHUNK_STARTED","features":[23]},{"name":"COPYFILE2_CALLBACK_ERROR","features":[23]},{"name":"COPYFILE2_CALLBACK_MAX","features":[23]},{"name":"COPYFILE2_CALLBACK_NONE","features":[23]},{"name":"COPYFILE2_CALLBACK_POLL_CONTINUE","features":[23]},{"name":"COPYFILE2_CALLBACK_STREAM_FINISHED","features":[23]},{"name":"COPYFILE2_CALLBACK_STREAM_STARTED","features":[23]},{"name":"COPYFILE2_COPY_PHASE","features":[23]},{"name":"COPYFILE2_EXTENDED_PARAMETERS","features":[3,23]},{"name":"COPYFILE2_EXTENDED_PARAMETERS_V2","features":[3,23]},{"name":"COPYFILE2_MESSAGE","features":[3,23]},{"name":"COPYFILE2_MESSAGE_ACTION","features":[23]},{"name":"COPYFILE2_MESSAGE_TYPE","features":[23]},{"name":"COPYFILE2_PHASE_MAX","features":[23]},{"name":"COPYFILE2_PHASE_NAMEGRAFT_COPY","features":[23]},{"name":"COPYFILE2_PHASE_NONE","features":[23]},{"name":"COPYFILE2_PHASE_PREPARE_DEST","features":[23]},{"name":"COPYFILE2_PHASE_PREPARE_SOURCE","features":[23]},{"name":"COPYFILE2_PHASE_READ_SOURCE","features":[23]},{"name":"COPYFILE2_PHASE_SERVER_COPY","features":[23]},{"name":"COPYFILE2_PHASE_WRITE_DESTINATION","features":[23]},{"name":"COPYFILE2_PROGRESS_CANCEL","features":[23]},{"name":"COPYFILE2_PROGRESS_CONTINUE","features":[23]},{"name":"COPYFILE2_PROGRESS_PAUSE","features":[23]},{"name":"COPYFILE2_PROGRESS_QUIET","features":[23]},{"name":"COPYFILE2_PROGRESS_STOP","features":[23]},{"name":"CREATEFILE2_EXTENDED_PARAMETERS","features":[3,6,23]},{"name":"CREATE_ALWAYS","features":[23]},{"name":"CREATE_NEW","features":[23]},{"name":"CREATE_TAPE_PARTITION_METHOD","features":[23]},{"name":"CRM_PROTOCOL_DYNAMIC_MARSHAL_INFO","features":[23]},{"name":"CRM_PROTOCOL_EXPLICIT_MARSHAL_ONLY","features":[23]},{"name":"CRM_PROTOCOL_MAXIMUM_OPTION","features":[23]},{"name":"CSC_CACHE_AUTO_REINT","features":[23]},{"name":"CSC_CACHE_MANUAL_REINT","features":[23]},{"name":"CSC_CACHE_NONE","features":[23]},{"name":"CSC_CACHE_VDO","features":[23]},{"name":"CSC_MASK","features":[23]},{"name":"CSC_MASK_EXT","features":[23]},{"name":"CSV_BLOCK_AND_FILE_CACHE_CALLBACK_VERSION","features":[23]},{"name":"CSV_BLOCK_CACHE_CALLBACK_VERSION","features":[23]},{"name":"CheckNameLegalDOS8Dot3A","features":[3,23]},{"name":"CheckNameLegalDOS8Dot3W","features":[3,23]},{"name":"ClfsClientRecord","features":[23]},{"name":"ClfsContainerActive","features":[23]},{"name":"ClfsContainerActivePendingDelete","features":[23]},{"name":"ClfsContainerInactive","features":[23]},{"name":"ClfsContainerInitializing","features":[23]},{"name":"ClfsContainerPendingArchive","features":[23]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[23]},{"name":"ClfsContextForward","features":[23]},{"name":"ClfsContextNone","features":[23]},{"name":"ClfsContextPrevious","features":[23]},{"name":"ClfsContextUndoNext","features":[23]},{"name":"ClfsDataRecord","features":[23]},{"name":"ClfsIoStatsDefault","features":[23]},{"name":"ClfsIoStatsMax","features":[23]},{"name":"ClfsLogArchiveDisabled","features":[23]},{"name":"ClfsLogArchiveEnabled","features":[23]},{"name":"ClfsLogBasicInformation","features":[23]},{"name":"ClfsLogBasicInformationPhysical","features":[23]},{"name":"ClfsLogPhysicalLsnInformation","features":[23]},{"name":"ClfsLogPhysicalNameInformation","features":[23]},{"name":"ClfsLogStreamIdentifierInformation","features":[23]},{"name":"ClfsLogSystemMarkingInformation","features":[23]},{"name":"ClfsMgmtAdvanceTailNotification","features":[23]},{"name":"ClfsMgmtLogFullHandlerNotification","features":[23]},{"name":"ClfsMgmtLogUnpinnedNotification","features":[23]},{"name":"ClfsMgmtLogWriteNotification","features":[23]},{"name":"ClfsMgmtPolicyAutoGrow","features":[23]},{"name":"ClfsMgmtPolicyAutoShrink","features":[23]},{"name":"ClfsMgmtPolicyGrowthRate","features":[23]},{"name":"ClfsMgmtPolicyInvalid","features":[23]},{"name":"ClfsMgmtPolicyLogTail","features":[23]},{"name":"ClfsMgmtPolicyMaximumSize","features":[23]},{"name":"ClfsMgmtPolicyMinimumSize","features":[23]},{"name":"ClfsMgmtPolicyNewContainerExtension","features":[23]},{"name":"ClfsMgmtPolicyNewContainerPrefix","features":[23]},{"name":"ClfsMgmtPolicyNewContainerSize","features":[23]},{"name":"ClfsMgmtPolicyNewContainerSuffix","features":[23]},{"name":"ClfsNullRecord","features":[23]},{"name":"ClfsRestartRecord","features":[23]},{"name":"CloseAndResetLogFile","features":[3,23]},{"name":"CloseEncryptedFileRaw","features":[23]},{"name":"CloseIoRing","features":[23]},{"name":"ClsContainerActive","features":[23]},{"name":"ClsContainerActivePendingDelete","features":[23]},{"name":"ClsContainerInactive","features":[23]},{"name":"ClsContainerInitializing","features":[23]},{"name":"ClsContainerPendingArchive","features":[23]},{"name":"ClsContainerPendingArchiveAndDelete","features":[23]},{"name":"ClsContextForward","features":[23]},{"name":"ClsContextNone","features":[23]},{"name":"ClsContextPrevious","features":[23]},{"name":"ClsContextUndoNext","features":[23]},{"name":"ClsIoStatsDefault","features":[23]},{"name":"ClsIoStatsMax","features":[23]},{"name":"CommitComplete","features":[3,23]},{"name":"CommitEnlistment","features":[3,23]},{"name":"CommitTransaction","features":[3,23]},{"name":"CommitTransactionAsync","features":[3,23]},{"name":"CompareFileTime","features":[3,23]},{"name":"CopyFile2","features":[3,23]},{"name":"CopyFileA","features":[3,23]},{"name":"CopyFileExA","features":[3,23]},{"name":"CopyFileExW","features":[3,23]},{"name":"CopyFileFromAppW","features":[3,23]},{"name":"CopyFileTransactedA","features":[3,23]},{"name":"CopyFileTransactedW","features":[3,23]},{"name":"CopyFileW","features":[3,23]},{"name":"CopyLZFile","features":[23]},{"name":"CreateDirectoryA","features":[3,6,23]},{"name":"CreateDirectoryExA","features":[3,6,23]},{"name":"CreateDirectoryExW","features":[3,6,23]},{"name":"CreateDirectoryFromAppW","features":[3,6,23]},{"name":"CreateDirectoryTransactedA","features":[3,6,23]},{"name":"CreateDirectoryTransactedW","features":[3,6,23]},{"name":"CreateDirectoryW","features":[3,6,23]},{"name":"CreateEnlistment","features":[3,6,23]},{"name":"CreateFile2","features":[3,6,23]},{"name":"CreateFile2FromAppW","features":[3,6,23]},{"name":"CreateFileA","features":[3,6,23]},{"name":"CreateFileFromAppW","features":[3,6,23]},{"name":"CreateFileTransactedA","features":[3,6,23]},{"name":"CreateFileTransactedW","features":[3,6,23]},{"name":"CreateFileW","features":[3,6,23]},{"name":"CreateHardLinkA","features":[3,6,23]},{"name":"CreateHardLinkTransactedA","features":[3,6,23]},{"name":"CreateHardLinkTransactedW","features":[3,6,23]},{"name":"CreateHardLinkW","features":[3,6,23]},{"name":"CreateIoRing","features":[23]},{"name":"CreateLogContainerScanContext","features":[3,23,8]},{"name":"CreateLogFile","features":[3,6,23]},{"name":"CreateLogMarshallingArea","features":[3,23]},{"name":"CreateResourceManager","features":[3,6,23]},{"name":"CreateSymbolicLinkA","features":[3,23]},{"name":"CreateSymbolicLinkTransactedA","features":[3,23]},{"name":"CreateSymbolicLinkTransactedW","features":[3,23]},{"name":"CreateSymbolicLinkW","features":[3,23]},{"name":"CreateTapePartition","features":[3,23]},{"name":"CreateTransaction","features":[3,6,23]},{"name":"CreateTransactionManager","features":[3,6,23]},{"name":"DDD_EXACT_MATCH_ON_REMOVE","features":[23]},{"name":"DDD_LUID_BROADCAST_DRIVE","features":[23]},{"name":"DDD_NO_BROADCAST_SYSTEM","features":[23]},{"name":"DDD_RAW_TARGET_PATH","features":[23]},{"name":"DDD_REMOVE_DEFINITION","features":[23]},{"name":"DEFINE_DOS_DEVICE_FLAGS","features":[23]},{"name":"DELETE","features":[23]},{"name":"DISKQUOTA_FILESTATE_INCOMPLETE","features":[23]},{"name":"DISKQUOTA_FILESTATE_MASK","features":[23]},{"name":"DISKQUOTA_FILESTATE_REBUILDING","features":[23]},{"name":"DISKQUOTA_LOGFLAG_USER_LIMIT","features":[23]},{"name":"DISKQUOTA_LOGFLAG_USER_THRESHOLD","features":[23]},{"name":"DISKQUOTA_STATE_DISABLED","features":[23]},{"name":"DISKQUOTA_STATE_ENFORCE","features":[23]},{"name":"DISKQUOTA_STATE_MASK","features":[23]},{"name":"DISKQUOTA_STATE_TRACK","features":[23]},{"name":"DISKQUOTA_USERNAME_RESOLVE","features":[23]},{"name":"DISKQUOTA_USERNAME_RESOLVE_ASYNC","features":[23]},{"name":"DISKQUOTA_USERNAME_RESOLVE_NONE","features":[23]},{"name":"DISKQUOTA_USERNAME_RESOLVE_SYNC","features":[23]},{"name":"DISKQUOTA_USER_ACCOUNT_DELETED","features":[23]},{"name":"DISKQUOTA_USER_ACCOUNT_INVALID","features":[23]},{"name":"DISKQUOTA_USER_ACCOUNT_RESOLVED","features":[23]},{"name":"DISKQUOTA_USER_ACCOUNT_UNAVAILABLE","features":[23]},{"name":"DISKQUOTA_USER_ACCOUNT_UNKNOWN","features":[23]},{"name":"DISKQUOTA_USER_ACCOUNT_UNRESOLVED","features":[23]},{"name":"DISKQUOTA_USER_INFORMATION","features":[23]},{"name":"DISK_SPACE_INFORMATION","features":[23]},{"name":"DecryptFileA","features":[3,23]},{"name":"DecryptFileW","features":[3,23]},{"name":"DefineDosDeviceA","features":[3,23]},{"name":"DefineDosDeviceW","features":[3,23]},{"name":"DeleteFileA","features":[3,23]},{"name":"DeleteFileFromAppW","features":[3,23]},{"name":"DeleteFileTransactedA","features":[3,23]},{"name":"DeleteFileTransactedW","features":[3,23]},{"name":"DeleteFileW","features":[3,23]},{"name":"DeleteLogByHandle","features":[3,23]},{"name":"DeleteLogFile","features":[3,23]},{"name":"DeleteLogMarshallingArea","features":[3,23]},{"name":"DeleteVolumeMountPointA","features":[3,23]},{"name":"DeleteVolumeMountPointW","features":[3,23]},{"name":"DeregisterManageableLogClient","features":[3,23]},{"name":"DuplicateEncryptionInfoFile","features":[3,6,23]},{"name":"EA_CONTAINER_NAME","features":[23]},{"name":"EA_CONTAINER_SIZE","features":[23]},{"name":"EFS_CERTIFICATE_BLOB","features":[23]},{"name":"EFS_COMPATIBILITY_INFO","features":[23]},{"name":"EFS_COMPATIBILITY_VERSION_NCRYPT_PROTECTOR","features":[23]},{"name":"EFS_COMPATIBILITY_VERSION_PFILE_PROTECTOR","features":[23]},{"name":"EFS_DECRYPTION_STATUS_INFO","features":[23]},{"name":"EFS_EFS_SUBVER_EFS_CERT","features":[23]},{"name":"EFS_ENCRYPTION_STATUS_INFO","features":[3,23]},{"name":"EFS_HASH_BLOB","features":[23]},{"name":"EFS_KEY_INFO","features":[70,23]},{"name":"EFS_METADATA_ADD_USER","features":[23]},{"name":"EFS_METADATA_GENERAL_OP","features":[23]},{"name":"EFS_METADATA_REMOVE_USER","features":[23]},{"name":"EFS_METADATA_REPLACE_USER","features":[23]},{"name":"EFS_PFILE_SUBVER_APPX","features":[23]},{"name":"EFS_PFILE_SUBVER_RMS","features":[23]},{"name":"EFS_PIN_BLOB","features":[23]},{"name":"EFS_RPC_BLOB","features":[23]},{"name":"EFS_SUBVER_UNKNOWN","features":[23]},{"name":"EFS_VERSION_INFO","features":[23]},{"name":"ENCRYPTED_FILE_METADATA_SIGNATURE","features":[6,23]},{"name":"ENCRYPTION_CERTIFICATE","features":[6,23]},{"name":"ENCRYPTION_CERTIFICATE_HASH","features":[6,23]},{"name":"ENCRYPTION_CERTIFICATE_HASH_LIST","features":[6,23]},{"name":"ENCRYPTION_CERTIFICATE_LIST","features":[6,23]},{"name":"ENCRYPTION_PROTECTOR","features":[6,23]},{"name":"ENCRYPTION_PROTECTOR_LIST","features":[6,23]},{"name":"ENLISTMENT_MAXIMUM_OPTION","features":[23]},{"name":"ENLISTMENT_OBJECT_PATH","features":[23]},{"name":"ENLISTMENT_SUPERIOR","features":[23]},{"name":"ERASE_TAPE_TYPE","features":[23]},{"name":"EncryptFileA","features":[3,23]},{"name":"EncryptFileW","features":[3,23]},{"name":"EncryptionDisable","features":[3,23]},{"name":"EraseTape","features":[3,23]},{"name":"ExtendedFileIdType","features":[23]},{"name":"FCACHE_CREATE_CALLBACK","features":[3,23]},{"name":"FCACHE_RICHCREATE_CALLBACK","features":[3,23]},{"name":"FH_OVERLAPPED","features":[3,23]},{"name":"FILE_ACCESS_RIGHTS","features":[23]},{"name":"FILE_ACTION","features":[23]},{"name":"FILE_ACTION_ADDED","features":[23]},{"name":"FILE_ACTION_MODIFIED","features":[23]},{"name":"FILE_ACTION_REMOVED","features":[23]},{"name":"FILE_ACTION_RENAMED_NEW_NAME","features":[23]},{"name":"FILE_ACTION_RENAMED_OLD_NAME","features":[23]},{"name":"FILE_ADD_FILE","features":[23]},{"name":"FILE_ADD_SUBDIRECTORY","features":[23]},{"name":"FILE_ALIGNMENT_INFO","features":[23]},{"name":"FILE_ALLOCATION_INFO","features":[23]},{"name":"FILE_ALL_ACCESS","features":[23]},{"name":"FILE_APPEND_DATA","features":[23]},{"name":"FILE_ATTRIBUTE_ARCHIVE","features":[23]},{"name":"FILE_ATTRIBUTE_COMPRESSED","features":[23]},{"name":"FILE_ATTRIBUTE_DEVICE","features":[23]},{"name":"FILE_ATTRIBUTE_DIRECTORY","features":[23]},{"name":"FILE_ATTRIBUTE_EA","features":[23]},{"name":"FILE_ATTRIBUTE_ENCRYPTED","features":[23]},{"name":"FILE_ATTRIBUTE_HIDDEN","features":[23]},{"name":"FILE_ATTRIBUTE_INTEGRITY_STREAM","features":[23]},{"name":"FILE_ATTRIBUTE_NORMAL","features":[23]},{"name":"FILE_ATTRIBUTE_NOT_CONTENT_INDEXED","features":[23]},{"name":"FILE_ATTRIBUTE_NO_SCRUB_DATA","features":[23]},{"name":"FILE_ATTRIBUTE_OFFLINE","features":[23]},{"name":"FILE_ATTRIBUTE_PINNED","features":[23]},{"name":"FILE_ATTRIBUTE_READONLY","features":[23]},{"name":"FILE_ATTRIBUTE_RECALL_ON_DATA_ACCESS","features":[23]},{"name":"FILE_ATTRIBUTE_RECALL_ON_OPEN","features":[23]},{"name":"FILE_ATTRIBUTE_REPARSE_POINT","features":[23]},{"name":"FILE_ATTRIBUTE_SPARSE_FILE","features":[23]},{"name":"FILE_ATTRIBUTE_SYSTEM","features":[23]},{"name":"FILE_ATTRIBUTE_TAG_INFO","features":[23]},{"name":"FILE_ATTRIBUTE_TEMPORARY","features":[23]},{"name":"FILE_ATTRIBUTE_UNPINNED","features":[23]},{"name":"FILE_ATTRIBUTE_VIRTUAL","features":[23]},{"name":"FILE_BASIC_INFO","features":[23]},{"name":"FILE_BEGIN","features":[23]},{"name":"FILE_COMPRESSION_INFO","features":[23]},{"name":"FILE_CREATE_PIPE_INSTANCE","features":[23]},{"name":"FILE_CREATION_DISPOSITION","features":[23]},{"name":"FILE_CURRENT","features":[23]},{"name":"FILE_DELETE_CHILD","features":[23]},{"name":"FILE_DEVICE_CD_ROM","features":[23]},{"name":"FILE_DEVICE_DISK","features":[23]},{"name":"FILE_DEVICE_DVD","features":[23]},{"name":"FILE_DEVICE_TAPE","features":[23]},{"name":"FILE_DEVICE_TYPE","features":[23]},{"name":"FILE_DISPOSITION_FLAG_DELETE","features":[23]},{"name":"FILE_DISPOSITION_FLAG_DO_NOT_DELETE","features":[23]},{"name":"FILE_DISPOSITION_FLAG_FORCE_IMAGE_SECTION_CHECK","features":[23]},{"name":"FILE_DISPOSITION_FLAG_IGNORE_READONLY_ATTRIBUTE","features":[23]},{"name":"FILE_DISPOSITION_FLAG_ON_CLOSE","features":[23]},{"name":"FILE_DISPOSITION_FLAG_POSIX_SEMANTICS","features":[23]},{"name":"FILE_DISPOSITION_INFO","features":[3,23]},{"name":"FILE_DISPOSITION_INFO_EX","features":[23]},{"name":"FILE_DISPOSITION_INFO_EX_FLAGS","features":[23]},{"name":"FILE_END","features":[23]},{"name":"FILE_END_OF_FILE_INFO","features":[23]},{"name":"FILE_EXECUTE","features":[23]},{"name":"FILE_EXTENT","features":[23]},{"name":"FILE_FLAGS_AND_ATTRIBUTES","features":[23]},{"name":"FILE_FLAG_BACKUP_SEMANTICS","features":[23]},{"name":"FILE_FLAG_DELETE_ON_CLOSE","features":[23]},{"name":"FILE_FLAG_FIRST_PIPE_INSTANCE","features":[23]},{"name":"FILE_FLAG_NO_BUFFERING","features":[23]},{"name":"FILE_FLAG_OPEN_NO_RECALL","features":[23]},{"name":"FILE_FLAG_OPEN_REPARSE_POINT","features":[23]},{"name":"FILE_FLAG_OVERLAPPED","features":[23]},{"name":"FILE_FLAG_POSIX_SEMANTICS","features":[23]},{"name":"FILE_FLAG_RANDOM_ACCESS","features":[23]},{"name":"FILE_FLAG_SEQUENTIAL_SCAN","features":[23]},{"name":"FILE_FLAG_SESSION_AWARE","features":[23]},{"name":"FILE_FLAG_WRITE_THROUGH","features":[23]},{"name":"FILE_FLUSH_DATA","features":[23]},{"name":"FILE_FLUSH_DEFAULT","features":[23]},{"name":"FILE_FLUSH_MIN_METADATA","features":[23]},{"name":"FILE_FLUSH_MODE","features":[23]},{"name":"FILE_FLUSH_NO_SYNC","features":[23]},{"name":"FILE_FULL_DIR_INFO","features":[23]},{"name":"FILE_GENERIC_EXECUTE","features":[23]},{"name":"FILE_GENERIC_READ","features":[23]},{"name":"FILE_GENERIC_WRITE","features":[23]},{"name":"FILE_ID_128","features":[23]},{"name":"FILE_ID_BOTH_DIR_INFO","features":[23]},{"name":"FILE_ID_DESCRIPTOR","features":[23]},{"name":"FILE_ID_EXTD_DIR_INFO","features":[23]},{"name":"FILE_ID_INFO","features":[23]},{"name":"FILE_ID_TYPE","features":[23]},{"name":"FILE_INFO_2","features":[23]},{"name":"FILE_INFO_3","features":[23]},{"name":"FILE_INFO_BY_HANDLE_CLASS","features":[23]},{"name":"FILE_INFO_FLAGS_PERMISSIONS","features":[23]},{"name":"FILE_IO_PRIORITY_HINT_INFO","features":[23]},{"name":"FILE_LIST_DIRECTORY","features":[23]},{"name":"FILE_NAME_INFO","features":[23]},{"name":"FILE_NAME_NORMALIZED","features":[23]},{"name":"FILE_NAME_OPENED","features":[23]},{"name":"FILE_NOTIFY_CHANGE","features":[23]},{"name":"FILE_NOTIFY_CHANGE_ATTRIBUTES","features":[23]},{"name":"FILE_NOTIFY_CHANGE_CREATION","features":[23]},{"name":"FILE_NOTIFY_CHANGE_DIR_NAME","features":[23]},{"name":"FILE_NOTIFY_CHANGE_FILE_NAME","features":[23]},{"name":"FILE_NOTIFY_CHANGE_LAST_ACCESS","features":[23]},{"name":"FILE_NOTIFY_CHANGE_LAST_WRITE","features":[23]},{"name":"FILE_NOTIFY_CHANGE_SECURITY","features":[23]},{"name":"FILE_NOTIFY_CHANGE_SIZE","features":[23]},{"name":"FILE_NOTIFY_EXTENDED_INFORMATION","features":[23]},{"name":"FILE_NOTIFY_INFORMATION","features":[23]},{"name":"FILE_PROVIDER_COMPRESSION_LZX","features":[23]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS16K","features":[23]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS4K","features":[23]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS8K","features":[23]},{"name":"FILE_READ_ATTRIBUTES","features":[23]},{"name":"FILE_READ_DATA","features":[23]},{"name":"FILE_READ_EA","features":[23]},{"name":"FILE_REMOTE_PROTOCOL_INFO","features":[23]},{"name":"FILE_RENAME_INFO","features":[3,23]},{"name":"FILE_SEGMENT_ELEMENT","features":[23]},{"name":"FILE_SHARE_DELETE","features":[23]},{"name":"FILE_SHARE_MODE","features":[23]},{"name":"FILE_SHARE_NONE","features":[23]},{"name":"FILE_SHARE_READ","features":[23]},{"name":"FILE_SHARE_WRITE","features":[23]},{"name":"FILE_STANDARD_INFO","features":[3,23]},{"name":"FILE_STORAGE_INFO","features":[23]},{"name":"FILE_STREAM_INFO","features":[23]},{"name":"FILE_TRAVERSE","features":[23]},{"name":"FILE_TYPE","features":[23]},{"name":"FILE_TYPE_CHAR","features":[23]},{"name":"FILE_TYPE_DISK","features":[23]},{"name":"FILE_TYPE_PIPE","features":[23]},{"name":"FILE_TYPE_REMOTE","features":[23]},{"name":"FILE_TYPE_UNKNOWN","features":[23]},{"name":"FILE_VER_GET_LOCALISED","features":[23]},{"name":"FILE_VER_GET_NEUTRAL","features":[23]},{"name":"FILE_VER_GET_PREFETCHED","features":[23]},{"name":"FILE_WRITE_ATTRIBUTES","features":[23]},{"name":"FILE_WRITE_DATA","features":[23]},{"name":"FILE_WRITE_EA","features":[23]},{"name":"FILE_WRITE_FLAGS","features":[23]},{"name":"FILE_WRITE_FLAGS_NONE","features":[23]},{"name":"FILE_WRITE_FLAGS_WRITE_THROUGH","features":[23]},{"name":"FINDEX_INFO_LEVELS","features":[23]},{"name":"FINDEX_SEARCH_OPS","features":[23]},{"name":"FIND_FIRST_EX_CASE_SENSITIVE","features":[23]},{"name":"FIND_FIRST_EX_FLAGS","features":[23]},{"name":"FIND_FIRST_EX_LARGE_FETCH","features":[23]},{"name":"FIND_FIRST_EX_ON_DISK_ENTRIES_ONLY","features":[23]},{"name":"FIO_CONTEXT","features":[3,23]},{"name":"FileAlignmentInfo","features":[23]},{"name":"FileAllocationInfo","features":[23]},{"name":"FileAttributeTagInfo","features":[23]},{"name":"FileBasicInfo","features":[23]},{"name":"FileCaseSensitiveInfo","features":[23]},{"name":"FileCompressionInfo","features":[23]},{"name":"FileDispositionInfo","features":[23]},{"name":"FileDispositionInfoEx","features":[23]},{"name":"FileEncryptionStatusA","features":[3,23]},{"name":"FileEncryptionStatusW","features":[3,23]},{"name":"FileEndOfFileInfo","features":[23]},{"name":"FileFullDirectoryInfo","features":[23]},{"name":"FileFullDirectoryRestartInfo","features":[23]},{"name":"FileIdBothDirectoryInfo","features":[23]},{"name":"FileIdBothDirectoryRestartInfo","features":[23]},{"name":"FileIdExtdDirectoryInfo","features":[23]},{"name":"FileIdExtdDirectoryRestartInfo","features":[23]},{"name":"FileIdInfo","features":[23]},{"name":"FileIdType","features":[23]},{"name":"FileIoPriorityHintInfo","features":[23]},{"name":"FileNameInfo","features":[23]},{"name":"FileNormalizedNameInfo","features":[23]},{"name":"FileRemoteProtocolInfo","features":[23]},{"name":"FileRenameInfo","features":[23]},{"name":"FileRenameInfoEx","features":[23]},{"name":"FileStandardInfo","features":[23]},{"name":"FileStorageInfo","features":[23]},{"name":"FileStreamInfo","features":[23]},{"name":"FileTimeToLocalFileTime","features":[3,23]},{"name":"FindClose","features":[3,23]},{"name":"FindCloseChangeNotification","features":[3,23]},{"name":"FindExInfoBasic","features":[23]},{"name":"FindExInfoMaxInfoLevel","features":[23]},{"name":"FindExInfoStandard","features":[23]},{"name":"FindExSearchLimitToDevices","features":[23]},{"name":"FindExSearchLimitToDirectories","features":[23]},{"name":"FindExSearchMaxSearchOp","features":[23]},{"name":"FindExSearchNameMatch","features":[23]},{"name":"FindFirstChangeNotificationA","features":[3,23]},{"name":"FindFirstChangeNotificationW","features":[3,23]},{"name":"FindFirstFileA","features":[3,23]},{"name":"FindFirstFileExA","features":[3,23]},{"name":"FindFirstFileExFromAppW","features":[3,23]},{"name":"FindFirstFileExW","features":[3,23]},{"name":"FindFirstFileNameTransactedW","features":[3,23]},{"name":"FindFirstFileNameW","features":[3,23]},{"name":"FindFirstFileTransactedA","features":[3,23]},{"name":"FindFirstFileTransactedW","features":[3,23]},{"name":"FindFirstFileW","features":[3,23]},{"name":"FindFirstStreamTransactedW","features":[3,23]},{"name":"FindFirstStreamW","features":[3,23]},{"name":"FindFirstVolumeA","features":[3,23]},{"name":"FindFirstVolumeMountPointA","features":[3,23]},{"name":"FindFirstVolumeMountPointW","features":[3,23]},{"name":"FindFirstVolumeW","features":[3,23]},{"name":"FindNextChangeNotification","features":[3,23]},{"name":"FindNextFileA","features":[3,23]},{"name":"FindNextFileNameW","features":[3,23]},{"name":"FindNextFileW","features":[3,23]},{"name":"FindNextStreamW","features":[3,23]},{"name":"FindNextVolumeA","features":[3,23]},{"name":"FindNextVolumeMountPointA","features":[3,23]},{"name":"FindNextVolumeMountPointW","features":[3,23]},{"name":"FindNextVolumeW","features":[3,23]},{"name":"FindStreamInfoMaxInfoLevel","features":[23]},{"name":"FindStreamInfoStandard","features":[23]},{"name":"FindVolumeClose","features":[3,23]},{"name":"FindVolumeMountPointClose","features":[3,23]},{"name":"FlushFileBuffers","features":[3,23]},{"name":"FlushLogBuffers","features":[3,23,8]},{"name":"FlushLogToLsn","features":[3,23,8]},{"name":"FreeEncryptedFileMetadata","features":[23]},{"name":"FreeEncryptionCertificateHashList","features":[6,23]},{"name":"FreeReservedLog","features":[3,23]},{"name":"GETFINALPATHNAMEBYHANDLE_FLAGS","features":[23]},{"name":"GET_FILEEX_INFO_LEVELS","features":[23]},{"name":"GET_FILE_VERSION_INFO_FLAGS","features":[23]},{"name":"GET_TAPE_DRIVE_INFORMATION","features":[23]},{"name":"GET_TAPE_DRIVE_PARAMETERS_OPERATION","features":[23]},{"name":"GET_TAPE_MEDIA_INFORMATION","features":[23]},{"name":"GetBinaryTypeA","features":[3,23]},{"name":"GetBinaryTypeW","features":[3,23]},{"name":"GetCompressedFileSizeA","features":[23]},{"name":"GetCompressedFileSizeTransactedA","features":[3,23]},{"name":"GetCompressedFileSizeTransactedW","features":[3,23]},{"name":"GetCompressedFileSizeW","features":[23]},{"name":"GetCurrentClockTransactionManager","features":[3,23]},{"name":"GetDiskFreeSpaceA","features":[3,23]},{"name":"GetDiskFreeSpaceExA","features":[3,23]},{"name":"GetDiskFreeSpaceExW","features":[3,23]},{"name":"GetDiskFreeSpaceW","features":[3,23]},{"name":"GetDiskSpaceInformationA","features":[23]},{"name":"GetDiskSpaceInformationW","features":[23]},{"name":"GetDriveTypeA","features":[23]},{"name":"GetDriveTypeW","features":[23]},{"name":"GetEncryptedFileMetadata","features":[23]},{"name":"GetEnlistmentId","features":[3,23]},{"name":"GetEnlistmentRecoveryInformation","features":[3,23]},{"name":"GetExpandedNameA","features":[23]},{"name":"GetExpandedNameW","features":[23]},{"name":"GetFileAttributesA","features":[23]},{"name":"GetFileAttributesExA","features":[3,23]},{"name":"GetFileAttributesExFromAppW","features":[3,23]},{"name":"GetFileAttributesExW","features":[3,23]},{"name":"GetFileAttributesTransactedA","features":[3,23]},{"name":"GetFileAttributesTransactedW","features":[3,23]},{"name":"GetFileAttributesW","features":[23]},{"name":"GetFileBandwidthReservation","features":[3,23]},{"name":"GetFileExInfoStandard","features":[23]},{"name":"GetFileExMaxInfoLevel","features":[23]},{"name":"GetFileInformationByHandle","features":[3,23]},{"name":"GetFileInformationByHandleEx","features":[3,23]},{"name":"GetFileSize","features":[3,23]},{"name":"GetFileSizeEx","features":[3,23]},{"name":"GetFileTime","features":[3,23]},{"name":"GetFileType","features":[3,23]},{"name":"GetFileVersionInfoA","features":[3,23]},{"name":"GetFileVersionInfoExA","features":[3,23]},{"name":"GetFileVersionInfoExW","features":[3,23]},{"name":"GetFileVersionInfoSizeA","features":[23]},{"name":"GetFileVersionInfoSizeExA","features":[23]},{"name":"GetFileVersionInfoSizeExW","features":[23]},{"name":"GetFileVersionInfoSizeW","features":[23]},{"name":"GetFileVersionInfoW","features":[3,23]},{"name":"GetFinalPathNameByHandleA","features":[3,23]},{"name":"GetFinalPathNameByHandleW","features":[3,23]},{"name":"GetFullPathNameA","features":[23]},{"name":"GetFullPathNameTransactedA","features":[3,23]},{"name":"GetFullPathNameTransactedW","features":[3,23]},{"name":"GetFullPathNameW","features":[23]},{"name":"GetIoRingInfo","features":[23]},{"name":"GetLogContainerName","features":[3,23]},{"name":"GetLogFileInformation","features":[3,23]},{"name":"GetLogIoStatistics","features":[3,23]},{"name":"GetLogReservationInfo","features":[3,23]},{"name":"GetLogicalDriveStringsA","features":[23]},{"name":"GetLogicalDriveStringsW","features":[23]},{"name":"GetLogicalDrives","features":[23]},{"name":"GetLongPathNameA","features":[23]},{"name":"GetLongPathNameTransactedA","features":[3,23]},{"name":"GetLongPathNameTransactedW","features":[3,23]},{"name":"GetLongPathNameW","features":[23]},{"name":"GetNextLogArchiveExtent","features":[3,23]},{"name":"GetNotificationResourceManager","features":[3,23]},{"name":"GetNotificationResourceManagerAsync","features":[3,23,8]},{"name":"GetShortPathNameA","features":[23]},{"name":"GetShortPathNameW","features":[23]},{"name":"GetTapeParameters","features":[3,23]},{"name":"GetTapePosition","features":[3,23]},{"name":"GetTapeStatus","features":[3,23]},{"name":"GetTempFileNameA","features":[23]},{"name":"GetTempFileNameW","features":[23]},{"name":"GetTempPath2A","features":[23]},{"name":"GetTempPath2W","features":[23]},{"name":"GetTempPathA","features":[23]},{"name":"GetTempPathW","features":[23]},{"name":"GetTransactionId","features":[3,23]},{"name":"GetTransactionInformation","features":[3,23]},{"name":"GetTransactionManagerId","features":[3,23]},{"name":"GetVolumeInformationA","features":[3,23]},{"name":"GetVolumeInformationByHandleW","features":[3,23]},{"name":"GetVolumeInformationW","features":[3,23]},{"name":"GetVolumeNameForVolumeMountPointA","features":[3,23]},{"name":"GetVolumeNameForVolumeMountPointW","features":[3,23]},{"name":"GetVolumePathNameA","features":[3,23]},{"name":"GetVolumePathNameW","features":[3,23]},{"name":"GetVolumePathNamesForVolumeNameA","features":[3,23]},{"name":"GetVolumePathNamesForVolumeNameW","features":[3,23]},{"name":"HIORING","features":[23]},{"name":"HandleLogFull","features":[3,23]},{"name":"IDiskQuotaControl","features":[23]},{"name":"IDiskQuotaEvents","features":[23]},{"name":"IDiskQuotaUser","features":[23]},{"name":"IDiskQuotaUserBatch","features":[23]},{"name":"IEnumDiskQuotaUsers","features":[23]},{"name":"INVALID_FILE_ATTRIBUTES","features":[23]},{"name":"INVALID_FILE_SIZE","features":[23]},{"name":"INVALID_SET_FILE_POINTER","features":[23]},{"name":"IOCTL_VOLUME_ALLOCATE_BC_STREAM","features":[23]},{"name":"IOCTL_VOLUME_BASE","features":[23]},{"name":"IOCTL_VOLUME_BC_VERSION","features":[23]},{"name":"IOCTL_VOLUME_FREE_BC_STREAM","features":[23]},{"name":"IOCTL_VOLUME_GET_BC_PROPERTIES","features":[23]},{"name":"IOCTL_VOLUME_GET_CSVBLOCKCACHE_CALLBACK","features":[23]},{"name":"IOCTL_VOLUME_GET_GPT_ATTRIBUTES","features":[23]},{"name":"IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS","features":[23]},{"name":"IOCTL_VOLUME_IS_CLUSTERED","features":[23]},{"name":"IOCTL_VOLUME_IS_CSV","features":[23]},{"name":"IOCTL_VOLUME_IS_DYNAMIC","features":[23]},{"name":"IOCTL_VOLUME_IS_IO_CAPABLE","features":[23]},{"name":"IOCTL_VOLUME_IS_OFFLINE","features":[23]},{"name":"IOCTL_VOLUME_IS_PARTITION","features":[23]},{"name":"IOCTL_VOLUME_LOGICAL_TO_PHYSICAL","features":[23]},{"name":"IOCTL_VOLUME_OFFLINE","features":[23]},{"name":"IOCTL_VOLUME_ONLINE","features":[23]},{"name":"IOCTL_VOLUME_PHYSICAL_TO_LOGICAL","features":[23]},{"name":"IOCTL_VOLUME_POST_ONLINE","features":[23]},{"name":"IOCTL_VOLUME_PREPARE_FOR_CRITICAL_IO","features":[23]},{"name":"IOCTL_VOLUME_PREPARE_FOR_SHRINK","features":[23]},{"name":"IOCTL_VOLUME_QUERY_ALLOCATION_HINT","features":[23]},{"name":"IOCTL_VOLUME_QUERY_FAILOVER_SET","features":[23]},{"name":"IOCTL_VOLUME_QUERY_MINIMUM_SHRINK_SIZE","features":[23]},{"name":"IOCTL_VOLUME_QUERY_VOLUME_NUMBER","features":[23]},{"name":"IOCTL_VOLUME_READ_PLEX","features":[23]},{"name":"IOCTL_VOLUME_SET_GPT_ATTRIBUTES","features":[23]},{"name":"IOCTL_VOLUME_SUPPORTS_ONLINE_OFFLINE","features":[23]},{"name":"IOCTL_VOLUME_UPDATE_PROPERTIES","features":[23]},{"name":"IORING_BUFFER_INFO","features":[23]},{"name":"IORING_BUFFER_REF","features":[23]},{"name":"IORING_CAPABILITIES","features":[23]},{"name":"IORING_CQE","features":[23]},{"name":"IORING_CREATE_ADVISORY_FLAGS","features":[23]},{"name":"IORING_CREATE_ADVISORY_FLAGS_NONE","features":[23]},{"name":"IORING_CREATE_FLAGS","features":[23]},{"name":"IORING_CREATE_REQUIRED_FLAGS","features":[23]},{"name":"IORING_CREATE_REQUIRED_FLAGS_NONE","features":[23]},{"name":"IORING_FEATURE_FLAGS","features":[23]},{"name":"IORING_FEATURE_FLAGS_NONE","features":[23]},{"name":"IORING_FEATURE_SET_COMPLETION_EVENT","features":[23]},{"name":"IORING_FEATURE_UM_EMULATION","features":[23]},{"name":"IORING_HANDLE_REF","features":[3,23]},{"name":"IORING_INFO","features":[23]},{"name":"IORING_OP_CANCEL","features":[23]},{"name":"IORING_OP_CODE","features":[23]},{"name":"IORING_OP_FLUSH","features":[23]},{"name":"IORING_OP_NOP","features":[23]},{"name":"IORING_OP_READ","features":[23]},{"name":"IORING_OP_REGISTER_BUFFERS","features":[23]},{"name":"IORING_OP_REGISTER_FILES","features":[23]},{"name":"IORING_OP_WRITE","features":[23]},{"name":"IORING_REF_KIND","features":[23]},{"name":"IORING_REF_RAW","features":[23]},{"name":"IORING_REF_REGISTERED","features":[23]},{"name":"IORING_REGISTERED_BUFFER","features":[23]},{"name":"IORING_SQE_FLAGS","features":[23]},{"name":"IORING_VERSION","features":[23]},{"name":"IORING_VERSION_1","features":[23]},{"name":"IORING_VERSION_2","features":[23]},{"name":"IORING_VERSION_3","features":[23]},{"name":"IORING_VERSION_INVALID","features":[23]},{"name":"IOSQE_FLAGS_DRAIN_PRECEDING_OPS","features":[23]},{"name":"IOSQE_FLAGS_NONE","features":[23]},{"name":"InstallLogPolicy","features":[3,23]},{"name":"IoPriorityHintLow","features":[23]},{"name":"IoPriorityHintNormal","features":[23]},{"name":"IoPriorityHintVeryLow","features":[23]},{"name":"IsIoRingOpSupported","features":[3,23]},{"name":"KCRM_MARSHAL_HEADER","features":[23]},{"name":"KCRM_PROTOCOL_BLOB","features":[23]},{"name":"KCRM_TRANSACTION_BLOB","features":[23]},{"name":"KTM_MARSHAL_BLOB_VERSION_MAJOR","features":[23]},{"name":"KTM_MARSHAL_BLOB_VERSION_MINOR","features":[23]},{"name":"LOCKFILE_EXCLUSIVE_LOCK","features":[23]},{"name":"LOCKFILE_FAIL_IMMEDIATELY","features":[23]},{"name":"LOCK_FILE_FLAGS","features":[23]},{"name":"LOG_MANAGEMENT_CALLBACKS","features":[3,23]},{"name":"LOG_POLICY_OVERWRITE","features":[23]},{"name":"LOG_POLICY_PERSIST","features":[23]},{"name":"LPPROGRESS_ROUTINE","features":[3,23]},{"name":"LPPROGRESS_ROUTINE_CALLBACK_REASON","features":[23]},{"name":"LZClose","features":[23]},{"name":"LZCopy","features":[23]},{"name":"LZDone","features":[23]},{"name":"LZERROR_BADINHANDLE","features":[23]},{"name":"LZERROR_BADOUTHANDLE","features":[23]},{"name":"LZERROR_BADVALUE","features":[23]},{"name":"LZERROR_GLOBALLOC","features":[23]},{"name":"LZERROR_GLOBLOCK","features":[23]},{"name":"LZERROR_READ","features":[23]},{"name":"LZERROR_UNKNOWNALG","features":[23]},{"name":"LZERROR_WRITE","features":[23]},{"name":"LZInit","features":[23]},{"name":"LZOPENFILE_STYLE","features":[23]},{"name":"LZOpenFileA","features":[23]},{"name":"LZOpenFileW","features":[23]},{"name":"LZRead","features":[23]},{"name":"LZSeek","features":[23]},{"name":"LZStart","features":[23]},{"name":"LocalFileTimeToFileTime","features":[3,23]},{"name":"LockFile","features":[3,23]},{"name":"LockFileEx","features":[3,23,8]},{"name":"LogTailAdvanceFailure","features":[3,23]},{"name":"LsnBlockOffset","features":[23]},{"name":"LsnContainer","features":[23]},{"name":"LsnCreate","features":[23]},{"name":"LsnEqual","features":[3,23]},{"name":"LsnGreater","features":[3,23]},{"name":"LsnIncrement","features":[23]},{"name":"LsnInvalid","features":[3,23]},{"name":"LsnLess","features":[3,23]},{"name":"LsnNull","features":[3,23]},{"name":"LsnRecordSequence","features":[23]},{"name":"MAXIMUM_REPARSE_DATA_BUFFER_SIZE","features":[23]},{"name":"MAXMEDIALABEL","features":[23]},{"name":"MAX_RESOURCEMANAGER_DESCRIPTION_LENGTH","features":[23]},{"name":"MAX_SID_SIZE","features":[23]},{"name":"MAX_TRANSACTION_DESCRIPTION_LENGTH","features":[23]},{"name":"MOVEFILE_COPY_ALLOWED","features":[23]},{"name":"MOVEFILE_CREATE_HARDLINK","features":[23]},{"name":"MOVEFILE_DELAY_UNTIL_REBOOT","features":[23]},{"name":"MOVEFILE_FAIL_IF_NOT_TRACKABLE","features":[23]},{"name":"MOVEFILE_REPLACE_EXISTING","features":[23]},{"name":"MOVEFILE_WRITE_THROUGH","features":[23]},{"name":"MOVE_FILE_FLAGS","features":[23]},{"name":"MaximumFileIdType","features":[23]},{"name":"MaximumFileInfoByHandleClass","features":[23]},{"name":"MaximumIoPriorityHintType","features":[23]},{"name":"MediaLabelInfo","features":[23]},{"name":"MoveFileA","features":[3,23]},{"name":"MoveFileExA","features":[3,23]},{"name":"MoveFileExW","features":[3,23]},{"name":"MoveFileFromAppW","features":[3,23]},{"name":"MoveFileTransactedA","features":[3,23]},{"name":"MoveFileTransactedW","features":[3,23]},{"name":"MoveFileW","features":[3,23]},{"name":"MoveFileWithProgressA","features":[3,23]},{"name":"MoveFileWithProgressW","features":[3,23]},{"name":"NAME_CACHE_CONTEXT","features":[23]},{"name":"NTMSMLI_MAXAPPDESCR","features":[23]},{"name":"NTMSMLI_MAXIDSIZE","features":[23]},{"name":"NTMSMLI_MAXTYPE","features":[23]},{"name":"NTMS_ALLOCATE_ERROR_IF_UNAVAILABLE","features":[23]},{"name":"NTMS_ALLOCATE_FROMSCRATCH","features":[23]},{"name":"NTMS_ALLOCATE_NEW","features":[23]},{"name":"NTMS_ALLOCATE_NEXT","features":[23]},{"name":"NTMS_ALLOCATION_INFORMATION","features":[23]},{"name":"NTMS_APPLICATIONNAME_LENGTH","features":[23]},{"name":"NTMS_ASYNCOP_MOUNT","features":[23]},{"name":"NTMS_ASYNCSTATE_COMPLETE","features":[23]},{"name":"NTMS_ASYNCSTATE_INPROCESS","features":[23]},{"name":"NTMS_ASYNCSTATE_QUEUED","features":[23]},{"name":"NTMS_ASYNCSTATE_WAIT_OPERATOR","features":[23]},{"name":"NTMS_ASYNCSTATE_WAIT_RESOURCE","features":[23]},{"name":"NTMS_ASYNC_IO","features":[3,23]},{"name":"NTMS_BARCODESTATE_OK","features":[23]},{"name":"NTMS_BARCODESTATE_UNREADABLE","features":[23]},{"name":"NTMS_BARCODE_LENGTH","features":[23]},{"name":"NTMS_CHANGER","features":[23]},{"name":"NTMS_CHANGERINFORMATIONA","features":[23]},{"name":"NTMS_CHANGERINFORMATIONW","features":[23]},{"name":"NTMS_CHANGERTYPEINFORMATIONA","features":[23]},{"name":"NTMS_CHANGERTYPEINFORMATIONW","features":[23]},{"name":"NTMS_CHANGER_TYPE","features":[23]},{"name":"NTMS_COMPUTER","features":[23]},{"name":"NTMS_COMPUTERINFORMATION","features":[23]},{"name":"NTMS_COMPUTERNAME_LENGTH","features":[23]},{"name":"NTMS_CONTROL_ACCESS","features":[23]},{"name":"NTMS_CREATE_NEW","features":[23]},{"name":"NTMS_DEALLOCATE_TOSCRATCH","features":[23]},{"name":"NTMS_DESCRIPTION_LENGTH","features":[23]},{"name":"NTMS_DEVICENAME_LENGTH","features":[23]},{"name":"NTMS_DISMOUNT_DEFERRED","features":[23]},{"name":"NTMS_DISMOUNT_IMMEDIATE","features":[23]},{"name":"NTMS_DOORSTATE_CLOSED","features":[23]},{"name":"NTMS_DOORSTATE_OPEN","features":[23]},{"name":"NTMS_DOORSTATE_UNKNOWN","features":[23]},{"name":"NTMS_DRIVE","features":[23]},{"name":"NTMS_DRIVEINFORMATIONA","features":[3,23]},{"name":"NTMS_DRIVEINFORMATIONW","features":[3,23]},{"name":"NTMS_DRIVESTATE_BEING_CLEANED","features":[23]},{"name":"NTMS_DRIVESTATE_DISMOUNTABLE","features":[23]},{"name":"NTMS_DRIVESTATE_DISMOUNTED","features":[23]},{"name":"NTMS_DRIVESTATE_LOADED","features":[23]},{"name":"NTMS_DRIVESTATE_MOUNTED","features":[23]},{"name":"NTMS_DRIVESTATE_UNLOADED","features":[23]},{"name":"NTMS_DRIVETYPEINFORMATIONA","features":[23]},{"name":"NTMS_DRIVETYPEINFORMATIONW","features":[23]},{"name":"NTMS_DRIVE_TYPE","features":[23]},{"name":"NTMS_EJECT_ASK_USER","features":[23]},{"name":"NTMS_EJECT_FORCE","features":[23]},{"name":"NTMS_EJECT_IMMEDIATE","features":[23]},{"name":"NTMS_EJECT_QUEUE","features":[23]},{"name":"NTMS_EJECT_START","features":[23]},{"name":"NTMS_EJECT_STOP","features":[23]},{"name":"NTMS_ENUM_DEFAULT","features":[23]},{"name":"NTMS_ENUM_ROOTPOOL","features":[23]},{"name":"NTMS_ERROR_ON_DUPLICATE","features":[23]},{"name":"NTMS_EVENT_COMPLETE","features":[23]},{"name":"NTMS_EVENT_SIGNAL","features":[23]},{"name":"NTMS_FILESYSTEM_INFO","features":[23]},{"name":"NTMS_I1_LIBRARYINFORMATION","features":[3,23]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONA","features":[3,23]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONW","features":[3,23]},{"name":"NTMS_I1_MESSAGE_LENGTH","features":[23]},{"name":"NTMS_I1_OBJECTINFORMATIONA","features":[3,23]},{"name":"NTMS_I1_OBJECTINFORMATIONW","features":[3,23]},{"name":"NTMS_I1_OPREQUESTINFORMATIONA","features":[3,23]},{"name":"NTMS_I1_OPREQUESTINFORMATIONW","features":[3,23]},{"name":"NTMS_I1_PARTITIONINFORMATIONA","features":[23]},{"name":"NTMS_I1_PARTITIONINFORMATIONW","features":[23]},{"name":"NTMS_I1_PMIDINFORMATIONA","features":[23]},{"name":"NTMS_I1_PMIDINFORMATIONW","features":[23]},{"name":"NTMS_IEDOOR","features":[23]},{"name":"NTMS_IEDOORINFORMATION","features":[23]},{"name":"NTMS_IEPORT","features":[23]},{"name":"NTMS_IEPORTINFORMATION","features":[23]},{"name":"NTMS_INITIALIZING","features":[23]},{"name":"NTMS_INJECT_RETRACT","features":[23]},{"name":"NTMS_INJECT_START","features":[23]},{"name":"NTMS_INJECT_STARTMANY","features":[23]},{"name":"NTMS_INJECT_STOP","features":[23]},{"name":"NTMS_INVENTORY_DEFAULT","features":[23]},{"name":"NTMS_INVENTORY_FAST","features":[23]},{"name":"NTMS_INVENTORY_MAX","features":[23]},{"name":"NTMS_INVENTORY_NONE","features":[23]},{"name":"NTMS_INVENTORY_OMID","features":[23]},{"name":"NTMS_INVENTORY_SLOT","features":[23]},{"name":"NTMS_INVENTORY_STOP","features":[23]},{"name":"NTMS_LIBRARY","features":[23]},{"name":"NTMS_LIBRARYFLAG_AUTODETECTCHANGE","features":[23]},{"name":"NTMS_LIBRARYFLAG_CLEANERPRESENT","features":[23]},{"name":"NTMS_LIBRARYFLAG_FIXEDOFFLINE","features":[23]},{"name":"NTMS_LIBRARYFLAG_IGNORECLEANERUSESREMAINING","features":[23]},{"name":"NTMS_LIBRARYFLAG_RECOGNIZECLEANERBARCODE","features":[23]},{"name":"NTMS_LIBRARYINFORMATION","features":[3,23]},{"name":"NTMS_LIBRARYTYPE_OFFLINE","features":[23]},{"name":"NTMS_LIBRARYTYPE_ONLINE","features":[23]},{"name":"NTMS_LIBRARYTYPE_STANDALONE","features":[23]},{"name":"NTMS_LIBRARYTYPE_UNKNOWN","features":[23]},{"name":"NTMS_LIBREQFLAGS_NOAUTOPURGE","features":[23]},{"name":"NTMS_LIBREQFLAGS_NOFAILEDPURGE","features":[23]},{"name":"NTMS_LIBREQUEST","features":[23]},{"name":"NTMS_LIBREQUESTINFORMATIONA","features":[3,23]},{"name":"NTMS_LIBREQUESTINFORMATIONW","features":[3,23]},{"name":"NTMS_LMIDINFORMATION","features":[23]},{"name":"NTMS_LM_CANCELLED","features":[23]},{"name":"NTMS_LM_CLASSIFY","features":[23]},{"name":"NTMS_LM_CLEANDRIVE","features":[23]},{"name":"NTMS_LM_DEFERRED","features":[23]},{"name":"NTMS_LM_DEFFERED","features":[23]},{"name":"NTMS_LM_DISABLECHANGER","features":[23]},{"name":"NTMS_LM_DISABLEDRIVE","features":[23]},{"name":"NTMS_LM_DISABLELIBRARY","features":[23]},{"name":"NTMS_LM_DISABLEMEDIA","features":[23]},{"name":"NTMS_LM_DISMOUNT","features":[23]},{"name":"NTMS_LM_DOORACCESS","features":[23]},{"name":"NTMS_LM_EJECT","features":[23]},{"name":"NTMS_LM_EJECTCLEANER","features":[23]},{"name":"NTMS_LM_ENABLECHANGER","features":[23]},{"name":"NTMS_LM_ENABLEDRIVE","features":[23]},{"name":"NTMS_LM_ENABLELIBRARY","features":[23]},{"name":"NTMS_LM_ENABLEMEDIA","features":[23]},{"name":"NTMS_LM_FAILED","features":[23]},{"name":"NTMS_LM_INJECT","features":[23]},{"name":"NTMS_LM_INJECTCLEANER","features":[23]},{"name":"NTMS_LM_INPROCESS","features":[23]},{"name":"NTMS_LM_INVALID","features":[23]},{"name":"NTMS_LM_INVENTORY","features":[23]},{"name":"NTMS_LM_MAXWORKITEM","features":[23]},{"name":"NTMS_LM_MOUNT","features":[23]},{"name":"NTMS_LM_PASSED","features":[23]},{"name":"NTMS_LM_PROCESSOMID","features":[23]},{"name":"NTMS_LM_QUEUED","features":[23]},{"name":"NTMS_LM_RELEASECLEANER","features":[23]},{"name":"NTMS_LM_REMOVE","features":[23]},{"name":"NTMS_LM_RESERVECLEANER","features":[23]},{"name":"NTMS_LM_STOPPED","features":[23]},{"name":"NTMS_LM_UPDATEOMID","features":[23]},{"name":"NTMS_LM_WAITING","features":[23]},{"name":"NTMS_LM_WRITESCRATCH","features":[23]},{"name":"NTMS_LOGICAL_MEDIA","features":[23]},{"name":"NTMS_MAXATTR_LENGTH","features":[23]},{"name":"NTMS_MAXATTR_NAMELEN","features":[23]},{"name":"NTMS_MEDIAPOOLINFORMATION","features":[23]},{"name":"NTMS_MEDIARW_READONLY","features":[23]},{"name":"NTMS_MEDIARW_REWRITABLE","features":[23]},{"name":"NTMS_MEDIARW_UNKNOWN","features":[23]},{"name":"NTMS_MEDIARW_WRITEONCE","features":[23]},{"name":"NTMS_MEDIASTATE_IDLE","features":[23]},{"name":"NTMS_MEDIASTATE_INUSE","features":[23]},{"name":"NTMS_MEDIASTATE_LOADED","features":[23]},{"name":"NTMS_MEDIASTATE_MOUNTED","features":[23]},{"name":"NTMS_MEDIASTATE_OPERROR","features":[23]},{"name":"NTMS_MEDIASTATE_OPREQ","features":[23]},{"name":"NTMS_MEDIASTATE_UNLOADED","features":[23]},{"name":"NTMS_MEDIATYPEINFORMATION","features":[23]},{"name":"NTMS_MEDIA_POOL","features":[23]},{"name":"NTMS_MEDIA_TYPE","features":[23]},{"name":"NTMS_MESSAGE_LENGTH","features":[23]},{"name":"NTMS_MODIFY_ACCESS","features":[23]},{"name":"NTMS_MOUNT_ERROR_IF_OFFLINE","features":[23]},{"name":"NTMS_MOUNT_ERROR_IF_UNAVAILABLE","features":[23]},{"name":"NTMS_MOUNT_ERROR_NOT_AVAILABLE","features":[23]},{"name":"NTMS_MOUNT_ERROR_OFFLINE","features":[23]},{"name":"NTMS_MOUNT_INFORMATION","features":[23]},{"name":"NTMS_MOUNT_NOWAIT","features":[23]},{"name":"NTMS_MOUNT_READ","features":[23]},{"name":"NTMS_MOUNT_SPECIFIC_DRIVE","features":[23]},{"name":"NTMS_MOUNT_WRITE","features":[23]},{"name":"NTMS_NEEDS_SERVICE","features":[23]},{"name":"NTMS_NOTIFICATIONINFORMATION","features":[23]},{"name":"NTMS_NOT_PRESENT","features":[23]},{"name":"NTMS_NUMBER_OF_OBJECT_TYPES","features":[23]},{"name":"NTMS_OBJECT","features":[23]},{"name":"NTMS_OBJECTINFORMATIONA","features":[3,23]},{"name":"NTMS_OBJECTINFORMATIONW","features":[3,23]},{"name":"NTMS_OBJECTNAME_LENGTH","features":[23]},{"name":"NTMS_OBJ_DELETE","features":[23]},{"name":"NTMS_OBJ_INSERT","features":[23]},{"name":"NTMS_OBJ_UPDATE","features":[23]},{"name":"NTMS_OMIDLABELID_LENGTH","features":[23]},{"name":"NTMS_OMIDLABELINFO_LENGTH","features":[23]},{"name":"NTMS_OMIDLABELTYPE_LENGTH","features":[23]},{"name":"NTMS_OMID_TYPE","features":[23]},{"name":"NTMS_OMID_TYPE_FILESYSTEM_INFO","features":[23]},{"name":"NTMS_OMID_TYPE_RAW_LABEL","features":[23]},{"name":"NTMS_OPEN_ALWAYS","features":[23]},{"name":"NTMS_OPEN_EXISTING","features":[23]},{"name":"NTMS_OPREQFLAGS_NOALERTS","features":[23]},{"name":"NTMS_OPREQFLAGS_NOAUTOPURGE","features":[23]},{"name":"NTMS_OPREQFLAGS_NOFAILEDPURGE","features":[23]},{"name":"NTMS_OPREQFLAGS_NOTRAYICON","features":[23]},{"name":"NTMS_OPREQUEST","features":[23]},{"name":"NTMS_OPREQUESTINFORMATIONA","features":[3,23]},{"name":"NTMS_OPREQUESTINFORMATIONW","features":[3,23]},{"name":"NTMS_OPREQ_CLEANER","features":[23]},{"name":"NTMS_OPREQ_DEVICESERVICE","features":[23]},{"name":"NTMS_OPREQ_MESSAGE","features":[23]},{"name":"NTMS_OPREQ_MOVEMEDIA","features":[23]},{"name":"NTMS_OPREQ_NEWMEDIA","features":[23]},{"name":"NTMS_OPREQ_UNKNOWN","features":[23]},{"name":"NTMS_OPSTATE_ACTIVE","features":[23]},{"name":"NTMS_OPSTATE_COMPLETE","features":[23]},{"name":"NTMS_OPSTATE_INPROGRESS","features":[23]},{"name":"NTMS_OPSTATE_REFUSED","features":[23]},{"name":"NTMS_OPSTATE_SUBMITTED","features":[23]},{"name":"NTMS_OPSTATE_UNKNOWN","features":[23]},{"name":"NTMS_PARTITION","features":[23]},{"name":"NTMS_PARTITIONINFORMATIONA","features":[23]},{"name":"NTMS_PARTITIONINFORMATIONW","features":[23]},{"name":"NTMS_PARTSTATE_ALLOCATED","features":[23]},{"name":"NTMS_PARTSTATE_AVAILABLE","features":[23]},{"name":"NTMS_PARTSTATE_COMPLETE","features":[23]},{"name":"NTMS_PARTSTATE_DECOMMISSIONED","features":[23]},{"name":"NTMS_PARTSTATE_FOREIGN","features":[23]},{"name":"NTMS_PARTSTATE_IMPORT","features":[23]},{"name":"NTMS_PARTSTATE_INCOMPATIBLE","features":[23]},{"name":"NTMS_PARTSTATE_RESERVED","features":[23]},{"name":"NTMS_PARTSTATE_UNKNOWN","features":[23]},{"name":"NTMS_PARTSTATE_UNPREPARED","features":[23]},{"name":"NTMS_PHYSICAL_MEDIA","features":[23]},{"name":"NTMS_PMIDINFORMATIONA","features":[23]},{"name":"NTMS_PMIDINFORMATIONW","features":[23]},{"name":"NTMS_POOLHIERARCHY_LENGTH","features":[23]},{"name":"NTMS_POOLPOLICY_KEEPOFFLINEIMPORT","features":[23]},{"name":"NTMS_POOLPOLICY_PURGEOFFLINESCRATCH","features":[23]},{"name":"NTMS_POOLTYPE_APPLICATION","features":[23]},{"name":"NTMS_POOLTYPE_FOREIGN","features":[23]},{"name":"NTMS_POOLTYPE_IMPORT","features":[23]},{"name":"NTMS_POOLTYPE_SCRATCH","features":[23]},{"name":"NTMS_POOLTYPE_UNKNOWN","features":[23]},{"name":"NTMS_PORTCONTENT_EMPTY","features":[23]},{"name":"NTMS_PORTCONTENT_FULL","features":[23]},{"name":"NTMS_PORTCONTENT_UNKNOWN","features":[23]},{"name":"NTMS_PORTPOSITION_EXTENDED","features":[23]},{"name":"NTMS_PORTPOSITION_RETRACTED","features":[23]},{"name":"NTMS_PORTPOSITION_UNKNOWN","features":[23]},{"name":"NTMS_PRIORITY_DEFAULT","features":[23]},{"name":"NTMS_PRIORITY_HIGH","features":[23]},{"name":"NTMS_PRIORITY_HIGHEST","features":[23]},{"name":"NTMS_PRIORITY_LOW","features":[23]},{"name":"NTMS_PRIORITY_LOWEST","features":[23]},{"name":"NTMS_PRIORITY_NORMAL","features":[23]},{"name":"NTMS_PRODUCTNAME_LENGTH","features":[23]},{"name":"NTMS_READY","features":[23]},{"name":"NTMS_REVISION_LENGTH","features":[23]},{"name":"NTMS_SEQUENCE_LENGTH","features":[23]},{"name":"NTMS_SERIALNUMBER_LENGTH","features":[23]},{"name":"NTMS_SESSION_QUERYEXPEDITE","features":[23]},{"name":"NTMS_SLOTSTATE_EMPTY","features":[23]},{"name":"NTMS_SLOTSTATE_FULL","features":[23]},{"name":"NTMS_SLOTSTATE_NEEDSINVENTORY","features":[23]},{"name":"NTMS_SLOTSTATE_NOTPRESENT","features":[23]},{"name":"NTMS_SLOTSTATE_UNKNOWN","features":[23]},{"name":"NTMS_STORAGESLOT","features":[23]},{"name":"NTMS_STORAGESLOTINFORMATION","features":[23]},{"name":"NTMS_UIDEST_ADD","features":[23]},{"name":"NTMS_UIDEST_DELETE","features":[23]},{"name":"NTMS_UIDEST_DELETEALL","features":[23]},{"name":"NTMS_UIOPERATION_MAX","features":[23]},{"name":"NTMS_UITYPE_ERR","features":[23]},{"name":"NTMS_UITYPE_INFO","features":[23]},{"name":"NTMS_UITYPE_INVALID","features":[23]},{"name":"NTMS_UITYPE_MAX","features":[23]},{"name":"NTMS_UITYPE_REQ","features":[23]},{"name":"NTMS_UI_DESTINATION","features":[23]},{"name":"NTMS_UNKNOWN","features":[23]},{"name":"NTMS_UNKNOWN_DRIVE","features":[23]},{"name":"NTMS_USERNAME_LENGTH","features":[23]},{"name":"NTMS_USE_ACCESS","features":[23]},{"name":"NTMS_VENDORNAME_LENGTH","features":[23]},{"name":"NetConnectionEnum","features":[23]},{"name":"NetFileClose","features":[23]},{"name":"NetFileEnum","features":[23]},{"name":"NetFileGetInfo","features":[23]},{"name":"NetServerAliasAdd","features":[23]},{"name":"NetServerAliasDel","features":[23]},{"name":"NetServerAliasEnum","features":[23]},{"name":"NetSessionDel","features":[23]},{"name":"NetSessionEnum","features":[23]},{"name":"NetSessionGetInfo","features":[23]},{"name":"NetShareAdd","features":[23]},{"name":"NetShareCheck","features":[23]},{"name":"NetShareDel","features":[23]},{"name":"NetShareDelEx","features":[23]},{"name":"NetShareDelSticky","features":[23]},{"name":"NetShareEnum","features":[23]},{"name":"NetShareEnumSticky","features":[23]},{"name":"NetShareGetInfo","features":[23]},{"name":"NetShareSetInfo","features":[23]},{"name":"NetStatisticsGet","features":[23]},{"name":"NtmsAccessMask","features":[23]},{"name":"NtmsAllocateOptions","features":[23]},{"name":"NtmsAllocationPolicy","features":[23]},{"name":"NtmsAsyncOperations","features":[23]},{"name":"NtmsAsyncStatus","features":[23]},{"name":"NtmsBarCodeState","features":[23]},{"name":"NtmsCreateNtmsMediaOptions","features":[23]},{"name":"NtmsCreateOptions","features":[23]},{"name":"NtmsDeallocationPolicy","features":[23]},{"name":"NtmsDismountOptions","features":[23]},{"name":"NtmsDoorState","features":[23]},{"name":"NtmsDriveState","features":[23]},{"name":"NtmsDriveType","features":[23]},{"name":"NtmsEjectOperation","features":[23]},{"name":"NtmsEnumerateOption","features":[23]},{"name":"NtmsInjectOperation","features":[23]},{"name":"NtmsInventoryMethod","features":[23]},{"name":"NtmsLibRequestFlags","features":[23]},{"name":"NtmsLibraryFlags","features":[23]},{"name":"NtmsLibraryType","features":[23]},{"name":"NtmsLmOperation","features":[23]},{"name":"NtmsLmState","features":[23]},{"name":"NtmsMediaPoolPolicy","features":[23]},{"name":"NtmsMediaState","features":[23]},{"name":"NtmsMountOptions","features":[23]},{"name":"NtmsMountPriority","features":[23]},{"name":"NtmsNotificationOperations","features":[23]},{"name":"NtmsObjectsTypes","features":[23]},{"name":"NtmsOpRequestFlags","features":[23]},{"name":"NtmsOperationalState","features":[23]},{"name":"NtmsOpreqCommand","features":[23]},{"name":"NtmsOpreqState","features":[23]},{"name":"NtmsPartitionState","features":[23]},{"name":"NtmsPoolType","features":[23]},{"name":"NtmsPortContent","features":[23]},{"name":"NtmsPortPosition","features":[23]},{"name":"NtmsReadWriteCharacteristics","features":[23]},{"name":"NtmsSessionOptions","features":[23]},{"name":"NtmsSlotState","features":[23]},{"name":"NtmsUIOperations","features":[23]},{"name":"NtmsUITypes","features":[23]},{"name":"OFSTRUCT","features":[23]},{"name":"OF_CANCEL","features":[23]},{"name":"OF_CREATE","features":[23]},{"name":"OF_DELETE","features":[23]},{"name":"OF_EXIST","features":[23]},{"name":"OF_PARSE","features":[23]},{"name":"OF_PROMPT","features":[23]},{"name":"OF_READ","features":[23]},{"name":"OF_READWRITE","features":[23]},{"name":"OF_REOPEN","features":[23]},{"name":"OF_SHARE_COMPAT","features":[23]},{"name":"OF_SHARE_DENY_NONE","features":[23]},{"name":"OF_SHARE_DENY_READ","features":[23]},{"name":"OF_SHARE_DENY_WRITE","features":[23]},{"name":"OF_SHARE_EXCLUSIVE","features":[23]},{"name":"OF_VERIFY","features":[23]},{"name":"OF_WRITE","features":[23]},{"name":"OPEN_ALWAYS","features":[23]},{"name":"OPEN_EXISTING","features":[23]},{"name":"ObjectIdType","features":[23]},{"name":"OpenEncryptedFileRawA","features":[23]},{"name":"OpenEncryptedFileRawW","features":[23]},{"name":"OpenEnlistment","features":[3,23]},{"name":"OpenFile","features":[23]},{"name":"OpenFileById","features":[3,6,23]},{"name":"OpenResourceManager","features":[3,23]},{"name":"OpenTransaction","features":[3,23]},{"name":"OpenTransactionManager","features":[3,23]},{"name":"OpenTransactionManagerById","features":[3,23]},{"name":"PARTITION_BASIC_DATA_GUID","features":[23]},{"name":"PARTITION_BSP_GUID","features":[23]},{"name":"PARTITION_CLUSTER_GUID","features":[23]},{"name":"PARTITION_DPP_GUID","features":[23]},{"name":"PARTITION_ENTRY_UNUSED_GUID","features":[23]},{"name":"PARTITION_LDM_DATA_GUID","features":[23]},{"name":"PARTITION_LDM_METADATA_GUID","features":[23]},{"name":"PARTITION_LEGACY_BL_GUID","features":[23]},{"name":"PARTITION_LEGACY_BL_GUID_BACKUP","features":[23]},{"name":"PARTITION_MAIN_OS_GUID","features":[23]},{"name":"PARTITION_MSFT_RECOVERY_GUID","features":[23]},{"name":"PARTITION_MSFT_RESERVED_GUID","features":[23]},{"name":"PARTITION_MSFT_SNAPSHOT_GUID","features":[23]},{"name":"PARTITION_OS_DATA_GUID","features":[23]},{"name":"PARTITION_PATCH_GUID","features":[23]},{"name":"PARTITION_PRE_INSTALLED_GUID","features":[23]},{"name":"PARTITION_SBL_CACHE_HDD_GUID","features":[23]},{"name":"PARTITION_SBL_CACHE_SSD_GUID","features":[23]},{"name":"PARTITION_SBL_CACHE_SSD_RESERVED_GUID","features":[23]},{"name":"PARTITION_SERVICING_FILES_GUID","features":[23]},{"name":"PARTITION_SERVICING_METADATA_GUID","features":[23]},{"name":"PARTITION_SERVICING_RESERVE_GUID","features":[23]},{"name":"PARTITION_SERVICING_STAGING_ROOT_GUID","features":[23]},{"name":"PARTITION_SPACES_DATA_GUID","features":[23]},{"name":"PARTITION_SPACES_GUID","features":[23]},{"name":"PARTITION_SYSTEM_GUID","features":[23]},{"name":"PARTITION_WINDOWS_SYSTEM_GUID","features":[23]},{"name":"PCLFS_COMPLETION_ROUTINE","features":[23]},{"name":"PCOPYFILE2_PROGRESS_ROUTINE","features":[3,23]},{"name":"PERM_FILE_CREATE","features":[23]},{"name":"PERM_FILE_READ","features":[23]},{"name":"PERM_FILE_WRITE","features":[23]},{"name":"PFE_EXPORT_FUNC","features":[23]},{"name":"PFE_IMPORT_FUNC","features":[23]},{"name":"PFN_IO_COMPLETION","features":[3,23]},{"name":"PIPE_ACCESS_DUPLEX","features":[23]},{"name":"PIPE_ACCESS_INBOUND","features":[23]},{"name":"PIPE_ACCESS_OUTBOUND","features":[23]},{"name":"PLOG_FULL_HANDLER_CALLBACK","features":[3,23]},{"name":"PLOG_TAIL_ADVANCE_CALLBACK","features":[3,23]},{"name":"PLOG_UNPINNED_CALLBACK","features":[3,23]},{"name":"PREPARE_TAPE_OPERATION","features":[23]},{"name":"PRIORITY_HINT","features":[23]},{"name":"PopIoRingCompletion","features":[23]},{"name":"PrePrepareComplete","features":[3,23]},{"name":"PrePrepareEnlistment","features":[3,23]},{"name":"PrepareComplete","features":[3,23]},{"name":"PrepareEnlistment","features":[3,23]},{"name":"PrepareLogArchive","features":[3,23]},{"name":"PrepareTape","features":[3,23]},{"name":"QUIC","features":[23]},{"name":"QueryDosDeviceA","features":[23]},{"name":"QueryDosDeviceW","features":[23]},{"name":"QueryIoRingCapabilities","features":[23]},{"name":"QueryLogPolicy","features":[3,23]},{"name":"QueryRecoveryAgentsOnEncryptedFile","features":[6,23]},{"name":"QueryUsersOnEncryptedFile","features":[6,23]},{"name":"READ_CONTROL","features":[23]},{"name":"READ_DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[23]},{"name":"REPARSE_GUID_DATA_BUFFER","features":[23]},{"name":"REPLACEFILE_IGNORE_ACL_ERRORS","features":[23]},{"name":"REPLACEFILE_IGNORE_MERGE_ERRORS","features":[23]},{"name":"REPLACEFILE_WRITE_THROUGH","features":[23]},{"name":"REPLACE_FILE_FLAGS","features":[23]},{"name":"RESOURCE_MANAGER_COMMUNICATION","features":[23]},{"name":"RESOURCE_MANAGER_MAXIMUM_OPTION","features":[23]},{"name":"RESOURCE_MANAGER_OBJECT_PATH","features":[23]},{"name":"RESOURCE_MANAGER_VOLATILE","features":[23]},{"name":"ReOpenFile","features":[3,23]},{"name":"ReadDirectoryChangesExW","features":[3,23,8]},{"name":"ReadDirectoryChangesW","features":[3,23,8]},{"name":"ReadDirectoryNotifyExtendedInformation","features":[23]},{"name":"ReadDirectoryNotifyFullInformation","features":[23]},{"name":"ReadDirectoryNotifyInformation","features":[23]},{"name":"ReadDirectoryNotifyMaximumInformation","features":[23]},{"name":"ReadEncryptedFileRaw","features":[23]},{"name":"ReadFile","features":[3,23,8]},{"name":"ReadFileEx","features":[3,23,8]},{"name":"ReadFileScatter","features":[3,23,8]},{"name":"ReadLogArchiveMetadata","features":[3,23]},{"name":"ReadLogNotification","features":[3,23,8]},{"name":"ReadLogRecord","features":[3,23,8]},{"name":"ReadLogRestartArea","features":[3,23,8]},{"name":"ReadNextLogRecord","features":[3,23,8]},{"name":"ReadOnlyEnlistment","features":[3,23]},{"name":"ReadPreviousLogRestartArea","features":[3,23,8]},{"name":"RecoverEnlistment","features":[3,23]},{"name":"RecoverResourceManager","features":[3,23]},{"name":"RecoverTransactionManager","features":[3,23]},{"name":"RegisterForLogWriteNotification","features":[3,23]},{"name":"RegisterManageableLogClient","features":[3,23]},{"name":"RemoveDirectoryA","features":[3,23]},{"name":"RemoveDirectoryFromAppW","features":[3,23]},{"name":"RemoveDirectoryTransactedA","features":[3,23]},{"name":"RemoveDirectoryTransactedW","features":[3,23]},{"name":"RemoveDirectoryW","features":[3,23]},{"name":"RemoveLogContainer","features":[3,23]},{"name":"RemoveLogContainerSet","features":[3,23]},{"name":"RemoveLogPolicy","features":[3,23]},{"name":"RemoveUsersFromEncryptedFile","features":[6,23]},{"name":"RenameTransactionManager","features":[3,23]},{"name":"ReplaceFileA","features":[3,23]},{"name":"ReplaceFileFromAppW","features":[3,23]},{"name":"ReplaceFileW","features":[3,23]},{"name":"ReserveAndAppendLog","features":[3,23,8]},{"name":"ReserveAndAppendLogAligned","features":[3,23,8]},{"name":"RollbackComplete","features":[3,23]},{"name":"RollbackEnlistment","features":[3,23]},{"name":"RollbackTransaction","features":[3,23]},{"name":"RollbackTransactionAsync","features":[3,23]},{"name":"RollforwardTransactionManager","features":[3,23]},{"name":"SECURITY_ANONYMOUS","features":[23]},{"name":"SECURITY_CONTEXT_TRACKING","features":[23]},{"name":"SECURITY_DELEGATION","features":[23]},{"name":"SECURITY_EFFECTIVE_ONLY","features":[23]},{"name":"SECURITY_IDENTIFICATION","features":[23]},{"name":"SECURITY_IMPERSONATION","features":[23]},{"name":"SECURITY_SQOS_PRESENT","features":[23]},{"name":"SECURITY_VALID_SQOS_FLAGS","features":[23]},{"name":"SERVER_ALIAS_INFO_0","features":[3,23]},{"name":"SERVER_CERTIFICATE_INFO_0","features":[23]},{"name":"SERVER_CERTIFICATE_TYPE","features":[23]},{"name":"SESI1_NUM_ELEMENTS","features":[23]},{"name":"SESI2_NUM_ELEMENTS","features":[23]},{"name":"SESSION_INFO_0","features":[23]},{"name":"SESSION_INFO_1","features":[23]},{"name":"SESSION_INFO_10","features":[23]},{"name":"SESSION_INFO_2","features":[23]},{"name":"SESSION_INFO_502","features":[23]},{"name":"SESSION_INFO_USER_FLAGS","features":[23]},{"name":"SESS_GUEST","features":[23]},{"name":"SESS_NOENCRYPTION","features":[23]},{"name":"SET_FILE_POINTER_MOVE_METHOD","features":[23]},{"name":"SET_TAPE_DRIVE_INFORMATION","features":[23]},{"name":"SET_TAPE_MEDIA_INFORMATION","features":[23]},{"name":"SHARE_CURRENT_USES_PARMNUM","features":[23]},{"name":"SHARE_FILE_SD_PARMNUM","features":[23]},{"name":"SHARE_INFO_0","features":[23]},{"name":"SHARE_INFO_1","features":[23]},{"name":"SHARE_INFO_1004","features":[23]},{"name":"SHARE_INFO_1005","features":[23]},{"name":"SHARE_INFO_1006","features":[23]},{"name":"SHARE_INFO_1501","features":[6,23]},{"name":"SHARE_INFO_1503","features":[23]},{"name":"SHARE_INFO_2","features":[23]},{"name":"SHARE_INFO_501","features":[23]},{"name":"SHARE_INFO_502","features":[6,23]},{"name":"SHARE_INFO_503","features":[6,23]},{"name":"SHARE_INFO_PERMISSIONS","features":[23]},{"name":"SHARE_MAX_USES_PARMNUM","features":[23]},{"name":"SHARE_NETNAME_PARMNUM","features":[23]},{"name":"SHARE_PASSWD_PARMNUM","features":[23]},{"name":"SHARE_PATH_PARMNUM","features":[23]},{"name":"SHARE_PERMISSIONS_PARMNUM","features":[23]},{"name":"SHARE_QOS_POLICY_PARMNUM","features":[23]},{"name":"SHARE_REMARK_PARMNUM","features":[23]},{"name":"SHARE_SERVER_PARMNUM","features":[23]},{"name":"SHARE_TYPE","features":[23]},{"name":"SHARE_TYPE_PARMNUM","features":[23]},{"name":"SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM","features":[23]},{"name":"SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING","features":[23]},{"name":"SHI1005_FLAGS_CLUSTER_MANAGED","features":[23]},{"name":"SHI1005_FLAGS_COMPRESS_DATA","features":[23]},{"name":"SHI1005_FLAGS_DFS","features":[23]},{"name":"SHI1005_FLAGS_DFS_ROOT","features":[23]},{"name":"SHI1005_FLAGS_DISABLE_CLIENT_BUFFERING","features":[23]},{"name":"SHI1005_FLAGS_DISABLE_DIRECTORY_HANDLE_LEASING","features":[23]},{"name":"SHI1005_FLAGS_ENABLE_CA","features":[23]},{"name":"SHI1005_FLAGS_ENABLE_HASH","features":[23]},{"name":"SHI1005_FLAGS_ENCRYPT_DATA","features":[23]},{"name":"SHI1005_FLAGS_FORCE_LEVELII_OPLOCK","features":[23]},{"name":"SHI1005_FLAGS_FORCE_SHARED_DELETE","features":[23]},{"name":"SHI1005_FLAGS_IDENTITY_REMOTING","features":[23]},{"name":"SHI1005_FLAGS_ISOLATED_TRANSPORT","features":[23]},{"name":"SHI1005_FLAGS_RESERVED","features":[23]},{"name":"SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS","features":[23]},{"name":"SHI1_NUM_ELEMENTS","features":[23]},{"name":"SHI2_NUM_ELEMENTS","features":[23]},{"name":"SHI_USES_UNLIMITED","features":[23]},{"name":"SPECIFIC_RIGHTS_ALL","features":[23]},{"name":"STANDARD_RIGHTS_ALL","features":[23]},{"name":"STANDARD_RIGHTS_EXECUTE","features":[23]},{"name":"STANDARD_RIGHTS_READ","features":[23]},{"name":"STANDARD_RIGHTS_REQUIRED","features":[23]},{"name":"STANDARD_RIGHTS_WRITE","features":[23]},{"name":"STATSOPT_CLR","features":[23]},{"name":"STAT_SERVER_0","features":[23]},{"name":"STAT_WORKSTATION_0","features":[23]},{"name":"STORAGE_BUS_TYPE","features":[23]},{"name":"STREAM_INFO_LEVELS","features":[23]},{"name":"STYPE_DEVICE","features":[23]},{"name":"STYPE_DISKTREE","features":[23]},{"name":"STYPE_IPC","features":[23]},{"name":"STYPE_MASK","features":[23]},{"name":"STYPE_PRINTQ","features":[23]},{"name":"STYPE_RESERVED1","features":[23]},{"name":"STYPE_RESERVED2","features":[23]},{"name":"STYPE_RESERVED3","features":[23]},{"name":"STYPE_RESERVED4","features":[23]},{"name":"STYPE_RESERVED5","features":[23]},{"name":"STYPE_RESERVED_ALL","features":[23]},{"name":"STYPE_SPECIAL","features":[23]},{"name":"STYPE_TEMPORARY","features":[23]},{"name":"SYMBOLIC_LINK_FLAGS","features":[23]},{"name":"SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE","features":[23]},{"name":"SYMBOLIC_LINK_FLAG_DIRECTORY","features":[23]},{"name":"SYNCHRONIZE","features":[23]},{"name":"ScanLogContainers","features":[3,23]},{"name":"SearchPathA","features":[23]},{"name":"SearchPathW","features":[23]},{"name":"SetEncryptedFileMetadata","features":[6,23]},{"name":"SetEndOfFile","features":[3,23]},{"name":"SetEndOfLog","features":[3,23,8]},{"name":"SetEnlistmentRecoveryInformation","features":[3,23]},{"name":"SetFileApisToANSI","features":[23]},{"name":"SetFileApisToOEM","features":[23]},{"name":"SetFileAttributesA","features":[3,23]},{"name":"SetFileAttributesFromAppW","features":[3,23]},{"name":"SetFileAttributesTransactedA","features":[3,23]},{"name":"SetFileAttributesTransactedW","features":[3,23]},{"name":"SetFileAttributesW","features":[3,23]},{"name":"SetFileBandwidthReservation","features":[3,23]},{"name":"SetFileCompletionNotificationModes","features":[3,23]},{"name":"SetFileInformationByHandle","features":[3,23]},{"name":"SetFileIoOverlappedRange","features":[3,23]},{"name":"SetFilePointer","features":[3,23]},{"name":"SetFilePointerEx","features":[3,23]},{"name":"SetFileShortNameA","features":[3,23]},{"name":"SetFileShortNameW","features":[3,23]},{"name":"SetFileTime","features":[3,23]},{"name":"SetFileValidData","features":[3,23]},{"name":"SetIoRingCompletionEvent","features":[3,23]},{"name":"SetLogArchiveMode","features":[3,23]},{"name":"SetLogArchiveTail","features":[3,23]},{"name":"SetLogFileSizeWithPolicy","features":[3,23]},{"name":"SetResourceManagerCompletionPort","features":[3,23]},{"name":"SetSearchPathMode","features":[3,23]},{"name":"SetTapeParameters","features":[3,23]},{"name":"SetTapePosition","features":[3,23]},{"name":"SetTransactionInformation","features":[3,23]},{"name":"SetUserFileEncryptionKey","features":[6,23]},{"name":"SetUserFileEncryptionKeyEx","features":[6,23]},{"name":"SetVolumeLabelA","features":[3,23]},{"name":"SetVolumeLabelW","features":[3,23]},{"name":"SetVolumeMountPointA","features":[3,23]},{"name":"SetVolumeMountPointW","features":[3,23]},{"name":"SinglePhaseReject","features":[3,23]},{"name":"SubmitIoRing","features":[23]},{"name":"TAPEMARK_TYPE","features":[23]},{"name":"TAPE_ABSOLUTE_BLOCK","features":[23]},{"name":"TAPE_ABSOLUTE_POSITION","features":[23]},{"name":"TAPE_ERASE","features":[3,23]},{"name":"TAPE_ERASE_LONG","features":[23]},{"name":"TAPE_ERASE_SHORT","features":[23]},{"name":"TAPE_FILEMARKS","features":[23]},{"name":"TAPE_FIXED_PARTITIONS","features":[23]},{"name":"TAPE_FORMAT","features":[23]},{"name":"TAPE_GET_POSITION","features":[23]},{"name":"TAPE_INFORMATION_TYPE","features":[23]},{"name":"TAPE_INITIATOR_PARTITIONS","features":[23]},{"name":"TAPE_LOAD","features":[23]},{"name":"TAPE_LOCK","features":[23]},{"name":"TAPE_LOGICAL_BLOCK","features":[23]},{"name":"TAPE_LOGICAL_POSITION","features":[23]},{"name":"TAPE_LONG_FILEMARKS","features":[23]},{"name":"TAPE_POSITION_METHOD","features":[23]},{"name":"TAPE_POSITION_TYPE","features":[23]},{"name":"TAPE_PREPARE","features":[3,23]},{"name":"TAPE_REWIND","features":[23]},{"name":"TAPE_SELECT_PARTITIONS","features":[23]},{"name":"TAPE_SETMARKS","features":[23]},{"name":"TAPE_SET_POSITION","features":[3,23]},{"name":"TAPE_SHORT_FILEMARKS","features":[23]},{"name":"TAPE_SPACE_END_OF_DATA","features":[23]},{"name":"TAPE_SPACE_FILEMARKS","features":[23]},{"name":"TAPE_SPACE_RELATIVE_BLOCKS","features":[23]},{"name":"TAPE_SPACE_SEQUENTIAL_FMKS","features":[23]},{"name":"TAPE_SPACE_SEQUENTIAL_SMKS","features":[23]},{"name":"TAPE_SPACE_SETMARKS","features":[23]},{"name":"TAPE_TENSION","features":[23]},{"name":"TAPE_UNLOAD","features":[23]},{"name":"TAPE_UNLOCK","features":[23]},{"name":"TAPE_WRITE_MARKS","features":[3,23]},{"name":"TRANSACTIONMANAGER_OBJECT_PATH","features":[23]},{"name":"TRANSACTION_DO_NOT_PROMOTE","features":[23]},{"name":"TRANSACTION_MANAGER_COMMIT_DEFAULT","features":[23]},{"name":"TRANSACTION_MANAGER_COMMIT_LOWEST","features":[23]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_HIVES","features":[23]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_VOLUME","features":[23]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_PROGRESS","features":[23]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_RECOVERY","features":[23]},{"name":"TRANSACTION_MANAGER_MAXIMUM_OPTION","features":[23]},{"name":"TRANSACTION_MANAGER_VOLATILE","features":[23]},{"name":"TRANSACTION_MAXIMUM_OPTION","features":[23]},{"name":"TRANSACTION_NOTIFICATION","features":[23]},{"name":"TRANSACTION_NOTIFICATION_MARSHAL_ARGUMENT","features":[23]},{"name":"TRANSACTION_NOTIFICATION_PROPAGATE_ARGUMENT","features":[23]},{"name":"TRANSACTION_NOTIFICATION_RECOVERY_ARGUMENT","features":[23]},{"name":"TRANSACTION_NOTIFICATION_SAVEPOINT_ARGUMENT","features":[23]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_ARGUMENT","features":[23]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_FLAG_IS_CLUSTERED","features":[23]},{"name":"TRANSACTION_NOTIFY_COMMIT","features":[23]},{"name":"TRANSACTION_NOTIFY_COMMIT_COMPLETE","features":[23]},{"name":"TRANSACTION_NOTIFY_COMMIT_FINALIZE","features":[23]},{"name":"TRANSACTION_NOTIFY_COMMIT_REQUEST","features":[23]},{"name":"TRANSACTION_NOTIFY_DELEGATE_COMMIT","features":[23]},{"name":"TRANSACTION_NOTIFY_ENLIST_MASK","features":[23]},{"name":"TRANSACTION_NOTIFY_ENLIST_PREPREPARE","features":[23]},{"name":"TRANSACTION_NOTIFY_INDOUBT","features":[23]},{"name":"TRANSACTION_NOTIFY_LAST_RECOVER","features":[23]},{"name":"TRANSACTION_NOTIFY_MARSHAL","features":[23]},{"name":"TRANSACTION_NOTIFY_MASK","features":[23]},{"name":"TRANSACTION_NOTIFY_PREPARE","features":[23]},{"name":"TRANSACTION_NOTIFY_PREPARE_COMPLETE","features":[23]},{"name":"TRANSACTION_NOTIFY_PREPREPARE","features":[23]},{"name":"TRANSACTION_NOTIFY_PREPREPARE_COMPLETE","features":[23]},{"name":"TRANSACTION_NOTIFY_PROMOTE","features":[23]},{"name":"TRANSACTION_NOTIFY_PROMOTE_NEW","features":[23]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PULL","features":[23]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PUSH","features":[23]},{"name":"TRANSACTION_NOTIFY_RECOVER","features":[23]},{"name":"TRANSACTION_NOTIFY_RECOVER_QUERY","features":[23]},{"name":"TRANSACTION_NOTIFY_REQUEST_OUTCOME","features":[23]},{"name":"TRANSACTION_NOTIFY_RM_DISCONNECTED","features":[23]},{"name":"TRANSACTION_NOTIFY_ROLLBACK","features":[23]},{"name":"TRANSACTION_NOTIFY_ROLLBACK_COMPLETE","features":[23]},{"name":"TRANSACTION_NOTIFY_SINGLE_PHASE_COMMIT","features":[23]},{"name":"TRANSACTION_NOTIFY_TM_ONLINE","features":[23]},{"name":"TRANSACTION_OBJECT_PATH","features":[23]},{"name":"TRANSACTION_OUTCOME","features":[23]},{"name":"TRUNCATE_EXISTING","features":[23]},{"name":"TXFS_MINIVERSION","features":[23]},{"name":"TXFS_MINIVERSION_COMMITTED_VIEW","features":[23]},{"name":"TXFS_MINIVERSION_DEFAULT_VIEW","features":[23]},{"name":"TXFS_MINIVERSION_DIRTY_VIEW","features":[23]},{"name":"TXF_ID","features":[23]},{"name":"TXF_LOG_RECORD_AFFECTED_FILE","features":[23]},{"name":"TXF_LOG_RECORD_BASE","features":[23]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_ABORT","features":[23]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_COMMIT","features":[23]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_DATA","features":[23]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_PREPARE","features":[23]},{"name":"TXF_LOG_RECORD_TRUNCATE","features":[23]},{"name":"TXF_LOG_RECORD_TYPE","features":[23]},{"name":"TXF_LOG_RECORD_TYPE_AFFECTED_FILE","features":[23]},{"name":"TXF_LOG_RECORD_TYPE_TRUNCATE","features":[23]},{"name":"TXF_LOG_RECORD_TYPE_WRITE","features":[23]},{"name":"TXF_LOG_RECORD_WRITE","features":[23]},{"name":"TerminateLogArchive","features":[3,23]},{"name":"TerminateReadLog","features":[3,23]},{"name":"TransactionOutcomeAborted","features":[23]},{"name":"TransactionOutcomeCommitted","features":[23]},{"name":"TransactionOutcomeUndetermined","features":[23]},{"name":"TruncateLog","features":[3,23,8]},{"name":"TxfGetThreadMiniVersionForCreate","features":[23]},{"name":"TxfLogCreateFileReadContext","features":[3,23]},{"name":"TxfLogCreateRangeReadContext","features":[3,23]},{"name":"TxfLogDestroyReadContext","features":[3,23]},{"name":"TxfLogReadRecords","features":[3,23]},{"name":"TxfLogRecordGetFileName","features":[3,23]},{"name":"TxfLogRecordGetGenericType","features":[3,23]},{"name":"TxfReadMetadataInfo","features":[3,23]},{"name":"TxfSetThreadMiniVersionForCreate","features":[23]},{"name":"UnlockFile","features":[3,23]},{"name":"UnlockFileEx","features":[3,23,8]},{"name":"VER_FIND_FILE_FLAGS","features":[23]},{"name":"VER_FIND_FILE_STATUS","features":[23]},{"name":"VER_INSTALL_FILE_FLAGS","features":[23]},{"name":"VER_INSTALL_FILE_STATUS","features":[23]},{"name":"VFFF_ISSHAREDFILE","features":[23]},{"name":"VFF_BUFFTOOSMALL","features":[23]},{"name":"VFF_CURNEDEST","features":[23]},{"name":"VFF_FILEINUSE","features":[23]},{"name":"VFT2_DRV_COMM","features":[23]},{"name":"VFT2_DRV_DISPLAY","features":[23]},{"name":"VFT2_DRV_INPUTMETHOD","features":[23]},{"name":"VFT2_DRV_INSTALLABLE","features":[23]},{"name":"VFT2_DRV_KEYBOARD","features":[23]},{"name":"VFT2_DRV_LANGUAGE","features":[23]},{"name":"VFT2_DRV_MOUSE","features":[23]},{"name":"VFT2_DRV_NETWORK","features":[23]},{"name":"VFT2_DRV_PRINTER","features":[23]},{"name":"VFT2_DRV_SOUND","features":[23]},{"name":"VFT2_DRV_SYSTEM","features":[23]},{"name":"VFT2_DRV_VERSIONED_PRINTER","features":[23]},{"name":"VFT2_FONT_RASTER","features":[23]},{"name":"VFT2_FONT_TRUETYPE","features":[23]},{"name":"VFT2_FONT_VECTOR","features":[23]},{"name":"VFT2_UNKNOWN","features":[23]},{"name":"VFT_APP","features":[23]},{"name":"VFT_DLL","features":[23]},{"name":"VFT_DRV","features":[23]},{"name":"VFT_FONT","features":[23]},{"name":"VFT_STATIC_LIB","features":[23]},{"name":"VFT_UNKNOWN","features":[23]},{"name":"VFT_VXD","features":[23]},{"name":"VIFF_DONTDELETEOLD","features":[23]},{"name":"VIFF_FORCEINSTALL","features":[23]},{"name":"VIF_ACCESSVIOLATION","features":[23]},{"name":"VIF_BUFFTOOSMALL","features":[23]},{"name":"VIF_CANNOTCREATE","features":[23]},{"name":"VIF_CANNOTDELETE","features":[23]},{"name":"VIF_CANNOTDELETECUR","features":[23]},{"name":"VIF_CANNOTLOADCABINET","features":[23]},{"name":"VIF_CANNOTLOADLZ32","features":[23]},{"name":"VIF_CANNOTREADDST","features":[23]},{"name":"VIF_CANNOTREADSRC","features":[23]},{"name":"VIF_CANNOTRENAME","features":[23]},{"name":"VIF_DIFFCODEPG","features":[23]},{"name":"VIF_DIFFLANG","features":[23]},{"name":"VIF_DIFFTYPE","features":[23]},{"name":"VIF_FILEINUSE","features":[23]},{"name":"VIF_MISMATCH","features":[23]},{"name":"VIF_OUTOFMEMORY","features":[23]},{"name":"VIF_OUTOFSPACE","features":[23]},{"name":"VIF_SHARINGVIOLATION","features":[23]},{"name":"VIF_SRCOLD","features":[23]},{"name":"VIF_TEMPFILE","features":[23]},{"name":"VIF_WRITEPROT","features":[23]},{"name":"VOLUME_ALLOCATE_BC_STREAM_INPUT","features":[3,23]},{"name":"VOLUME_ALLOCATE_BC_STREAM_OUTPUT","features":[23]},{"name":"VOLUME_ALLOCATION_HINT_INPUT","features":[23]},{"name":"VOLUME_ALLOCATION_HINT_OUTPUT","features":[23]},{"name":"VOLUME_CRITICAL_IO","features":[23]},{"name":"VOLUME_FAILOVER_SET","features":[23]},{"name":"VOLUME_GET_BC_PROPERTIES_INPUT","features":[23]},{"name":"VOLUME_GET_BC_PROPERTIES_OUTPUT","features":[23]},{"name":"VOLUME_LOGICAL_OFFSET","features":[23]},{"name":"VOLUME_NAME_DOS","features":[23]},{"name":"VOLUME_NAME_GUID","features":[23]},{"name":"VOLUME_NAME_NONE","features":[23]},{"name":"VOLUME_NAME_NT","features":[23]},{"name":"VOLUME_NUMBER","features":[23]},{"name":"VOLUME_PHYSICAL_OFFSET","features":[23]},{"name":"VOLUME_PHYSICAL_OFFSETS","features":[23]},{"name":"VOLUME_READ_PLEX_INPUT","features":[23]},{"name":"VOLUME_SET_GPT_ATTRIBUTES_INFORMATION","features":[3,23]},{"name":"VOLUME_SHRINK_INFO","features":[23]},{"name":"VOS_DOS","features":[23]},{"name":"VOS_DOS_WINDOWS16","features":[23]},{"name":"VOS_DOS_WINDOWS32","features":[23]},{"name":"VOS_NT","features":[23]},{"name":"VOS_NT_WINDOWS32","features":[23]},{"name":"VOS_OS216","features":[23]},{"name":"VOS_OS216_PM16","features":[23]},{"name":"VOS_OS232","features":[23]},{"name":"VOS_OS232_PM32","features":[23]},{"name":"VOS_UNKNOWN","features":[23]},{"name":"VOS_WINCE","features":[23]},{"name":"VOS__BASE","features":[23]},{"name":"VOS__PM16","features":[23]},{"name":"VOS__PM32","features":[23]},{"name":"VOS__WINDOWS16","features":[23]},{"name":"VOS__WINDOWS32","features":[23]},{"name":"VS_FFI_FILEFLAGSMASK","features":[23]},{"name":"VS_FFI_SIGNATURE","features":[23]},{"name":"VS_FFI_STRUCVERSION","features":[23]},{"name":"VS_FF_DEBUG","features":[23]},{"name":"VS_FF_INFOINFERRED","features":[23]},{"name":"VS_FF_PATCHED","features":[23]},{"name":"VS_FF_PRERELEASE","features":[23]},{"name":"VS_FF_PRIVATEBUILD","features":[23]},{"name":"VS_FF_SPECIALBUILD","features":[23]},{"name":"VS_FIXEDFILEINFO","features":[23]},{"name":"VS_FIXEDFILEINFO_FILE_FLAGS","features":[23]},{"name":"VS_FIXEDFILEINFO_FILE_OS","features":[23]},{"name":"VS_FIXEDFILEINFO_FILE_SUBTYPE","features":[23]},{"name":"VS_FIXEDFILEINFO_FILE_TYPE","features":[23]},{"name":"VS_USER_DEFINED","features":[23]},{"name":"VS_VERSION_INFO","features":[23]},{"name":"ValidateLog","features":[3,6,23]},{"name":"VerFindFileA","features":[23]},{"name":"VerFindFileW","features":[23]},{"name":"VerInstallFileA","features":[23]},{"name":"VerInstallFileW","features":[23]},{"name":"VerLanguageNameA","features":[23]},{"name":"VerLanguageNameW","features":[23]},{"name":"VerQueryValueA","features":[3,23]},{"name":"VerQueryValueW","features":[3,23]},{"name":"WIM_BOOT_NOT_OS_WIM","features":[23]},{"name":"WIM_BOOT_OS_WIM","features":[23]},{"name":"WIM_ENTRY_FLAG_NOT_ACTIVE","features":[23]},{"name":"WIM_ENTRY_FLAG_SUSPENDED","features":[23]},{"name":"WIM_ENTRY_INFO","features":[23]},{"name":"WIM_EXTERNAL_FILE_INFO","features":[23]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_NOT_ACTIVE","features":[23]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_SUSPENDED","features":[23]},{"name":"WIM_PROVIDER_HASH_SIZE","features":[23]},{"name":"WIN32_FILE_ATTRIBUTE_DATA","features":[3,23]},{"name":"WIN32_FIND_DATAA","features":[3,23]},{"name":"WIN32_FIND_DATAW","features":[3,23]},{"name":"WIN32_FIND_STREAM_DATA","features":[23]},{"name":"WIN32_STREAM_ID","features":[23]},{"name":"WINEFS_SETUSERKEY_SET_CAPABILITIES","features":[23]},{"name":"WIN_STREAM_ID","features":[23]},{"name":"WOF_FILE_COMPRESSION_INFO_V0","features":[23]},{"name":"WOF_FILE_COMPRESSION_INFO_V1","features":[23]},{"name":"WOF_PROVIDER_FILE","features":[23]},{"name":"WOF_PROVIDER_WIM","features":[23]},{"name":"WRITE_DAC","features":[23]},{"name":"WRITE_OWNER","features":[23]},{"name":"WofEnumEntries","features":[3,23]},{"name":"WofEnumEntryProc","features":[3,23]},{"name":"WofEnumFilesProc","features":[3,23]},{"name":"WofFileEnumFiles","features":[3,23]},{"name":"WofGetDriverVersion","features":[3,23]},{"name":"WofIsExternalFile","features":[3,23]},{"name":"WofSetFileDataLocation","features":[3,23]},{"name":"WofShouldCompressBinaries","features":[3,23]},{"name":"WofWimAddEntry","features":[23]},{"name":"WofWimEnumFiles","features":[3,23]},{"name":"WofWimRemoveEntry","features":[23]},{"name":"WofWimSuspendEntry","features":[23]},{"name":"WofWimUpdateEntry","features":[23]},{"name":"Wow64DisableWow64FsRedirection","features":[3,23]},{"name":"Wow64EnableWow64FsRedirection","features":[3,23]},{"name":"Wow64RevertWow64FsRedirection","features":[3,23]},{"name":"WriteEncryptedFileRaw","features":[23]},{"name":"WriteFile","features":[3,23,8]},{"name":"WriteFileEx","features":[3,23,8]},{"name":"WriteFileGather","features":[3,23,8]},{"name":"WriteLogRestartArea","features":[3,23,8]},{"name":"WriteTapemark","features":[3,23]},{"name":"_FT_TYPES_DEFINITION_","features":[23]}],"513":[{"name":"BlockRange","features":[144]},{"name":"BlockRangeList","features":[144]},{"name":"BootOptions","features":[144]},{"name":"CATID_SMTP_DNSRESOLVERRECORDSINK","features":[144]},{"name":"CATID_SMTP_DSN","features":[144]},{"name":"CATID_SMTP_GET_AUX_DOMAIN_INFO_FLAGS","features":[144]},{"name":"CATID_SMTP_LOG","features":[144]},{"name":"CATID_SMTP_MAXMSGSIZE","features":[144]},{"name":"CATID_SMTP_MSGTRACKLOG","features":[144]},{"name":"CATID_SMTP_ON_BEFORE_DATA","features":[144]},{"name":"CATID_SMTP_ON_INBOUND_COMMAND","features":[144]},{"name":"CATID_SMTP_ON_MESSAGE_START","features":[144]},{"name":"CATID_SMTP_ON_PER_RECIPIENT","features":[144]},{"name":"CATID_SMTP_ON_SERVER_RESPONSE","features":[144]},{"name":"CATID_SMTP_ON_SESSION_END","features":[144]},{"name":"CATID_SMTP_ON_SESSION_START","features":[144]},{"name":"CATID_SMTP_STORE_DRIVER","features":[144]},{"name":"CATID_SMTP_TRANSPORT_CATEGORIZE","features":[144]},{"name":"CATID_SMTP_TRANSPORT_POSTCATEGORIZE","features":[144]},{"name":"CATID_SMTP_TRANSPORT_PRECATEGORIZE","features":[144]},{"name":"CATID_SMTP_TRANSPORT_ROUTER","features":[144]},{"name":"CATID_SMTP_TRANSPORT_SUBMISSION","features":[144]},{"name":"CLSID_SmtpCat","features":[144]},{"name":"CloseIMsgSession","features":[144]},{"name":"DDiscFormat2DataEvents","features":[144]},{"name":"DDiscFormat2EraseEvents","features":[144]},{"name":"DDiscFormat2RawCDEvents","features":[144]},{"name":"DDiscFormat2TrackAtOnceEvents","features":[144]},{"name":"DDiscMaster2Events","features":[144]},{"name":"DFileSystemImageEvents","features":[144]},{"name":"DFileSystemImageImportEvents","features":[144]},{"name":"DISC_RECORDER_STATE_FLAGS","features":[144]},{"name":"DISPID_DDISCFORMAT2DATAEVENTS_UPDATE","features":[144]},{"name":"DISPID_DDISCFORMAT2RAWCDEVENTS_UPDATE","features":[144]},{"name":"DISPID_DDISCFORMAT2TAOEVENTS_UPDATE","features":[144]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEADDED","features":[144]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEREMOVED","features":[144]},{"name":"DISPID_DFILESYSTEMIMAGEEVENTS_UPDATE","features":[144]},{"name":"DISPID_DFILESYSTEMIMAGEIMPORTEVENTS_UPDATEIMPORT","features":[144]},{"name":"DISPID_DWRITEENGINE2EVENTS_UPDATE","features":[144]},{"name":"DISPID_IBLOCKRANGELIST_BLOCKRANGES","features":[144]},{"name":"DISPID_IBLOCKRANGE_ENDLBA","features":[144]},{"name":"DISPID_IBLOCKRANGE_STARTLBA","features":[144]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_CURRENTACTION","features":[144]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ELAPSEDTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDREMAININGTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDTOTALTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_BUFFERUNDERRUNFREEDISABLED","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_CANCELWRITE","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_CLIENTNAME","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIASTATUS","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIATYPE","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTROTATIONTYPEISPURECAV","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_DISABLEDVDCOMPATIBILITYMODE","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEMEDIATOBECLOSED","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEOVERWRITE","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_FREESECTORS","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_LASTSECTOROFPREVIOUSSESSION","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_MUTLISESSIONINTERFACES","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_NEXTWRITABLEADDRESS","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_POSTGAPALREADYINIMAGE","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_RECORDER","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDROTATIONTYPEISPURECAV","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_SETWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_STARTSECTOROFPREVIOUSSESSION","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDS","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_TOTALSECTORS","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_WRITE","features":[144]},{"name":"DISPID_IDISCFORMAT2DATA_WRITEPROTECTSTATUS","features":[144]},{"name":"DISPID_IDISCFORMAT2ERASEEVENTS_UPDATE","features":[144]},{"name":"DISPID_IDISCFORMAT2ERASE_CLIENTNAME","features":[144]},{"name":"DISPID_IDISCFORMAT2ERASE_ERASEMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2ERASE_FULLERASE","features":[144]},{"name":"DISPID_IDISCFORMAT2ERASE_MEDIATYPE","features":[144]},{"name":"DISPID_IDISCFORMAT2ERASE_RECORDER","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTACTION","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTTRACKNUMBER","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ELAPSEDTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDREMAININGTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDTOTALTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_BUFFERUNDERRUNFREEDISABLED","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_CANCELWRITE","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_CLIENTNAME","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTMEDIATYPE","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTROTATIONTYPEISPURECAV","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_LASTPOSSIBLESTARTOFLEADOUT","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_PREPAREMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_RECORDER","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_RELEASEMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDDATASECTORTYPE","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDROTATIONTYPEISPURECAV","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_SETWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_STARTOFNEXTSESSION","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDDATASECTORTYPES","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDS","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIAWITHVALIDATION","features":[144]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTACTION","features":[144]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTTRACKNUMBER","features":[144]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ELAPSEDTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDREMAININGTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDTOTALTIME","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_ADDAUDIOTRACK","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_BUFFERUNDERRUNFREEDISABLED","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_CANCELADDTRACK","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_CLIENTNAME","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTMEDIATYPE","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTROTATIONTYPEISPURECAV","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_DONOTFINALIZEMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_EXPECTEDTABLEOFCONTENTS","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_FINISHMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_FREESECTORSONMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_NUMBEROFEXISTINGTRACKS","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_PREPAREMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_RECORDER","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDROTATIONTYPEISPURECAV","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_SETWRITESPEED","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDS","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_TOTALSECTORSONMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2TAO_USEDSECTORSONMEDIA","features":[144]},{"name":"DISPID_IDISCFORMAT2_MEDIAHEURISTICALLYBLANK","features":[144]},{"name":"DISPID_IDISCFORMAT2_MEDIAPHYSICALLYBLANK","features":[144]},{"name":"DISPID_IDISCFORMAT2_MEDIASUPPORTED","features":[144]},{"name":"DISPID_IDISCFORMAT2_RECORDERSUPPORTED","features":[144]},{"name":"DISPID_IDISCFORMAT2_SUPPORTEDMEDIATYPES","features":[144]},{"name":"DISPID_IDISCRECORDER2_ACQUIREEXCLUSIVEACCESS","features":[144]},{"name":"DISPID_IDISCRECORDER2_ACTIVEDISCRECORDER","features":[144]},{"name":"DISPID_IDISCRECORDER2_CLOSETRAY","features":[144]},{"name":"DISPID_IDISCRECORDER2_CURRENTFEATUREPAGES","features":[144]},{"name":"DISPID_IDISCRECORDER2_CURRENTPROFILES","features":[144]},{"name":"DISPID_IDISCRECORDER2_DEVICECANLOADMEDIA","features":[144]},{"name":"DISPID_IDISCRECORDER2_DISABLEMCN","features":[144]},{"name":"DISPID_IDISCRECORDER2_EJECTMEDIA","features":[144]},{"name":"DISPID_IDISCRECORDER2_ENABLEMCN","features":[144]},{"name":"DISPID_IDISCRECORDER2_EXCLUSIVEACCESSOWNER","features":[144]},{"name":"DISPID_IDISCRECORDER2_INITIALIZEDISCRECORDER","features":[144]},{"name":"DISPID_IDISCRECORDER2_LEGACYDEVICENUMBER","features":[144]},{"name":"DISPID_IDISCRECORDER2_PRODUCTID","features":[144]},{"name":"DISPID_IDISCRECORDER2_PRODUCTREVISION","features":[144]},{"name":"DISPID_IDISCRECORDER2_RELEASEEXCLUSIVEACCESS","features":[144]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDFEATUREPAGES","features":[144]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDMODEPAGES","features":[144]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDPROFILES","features":[144]},{"name":"DISPID_IDISCRECORDER2_VENDORID","features":[144]},{"name":"DISPID_IDISCRECORDER2_VOLUMENAME","features":[144]},{"name":"DISPID_IDISCRECORDER2_VOLUMEPATHNAMES","features":[144]},{"name":"DISPID_IMULTISESSION_FIRSTDATASESSION","features":[144]},{"name":"DISPID_IMULTISESSION_FREESECTORS","features":[144]},{"name":"DISPID_IMULTISESSION_IMPORTRECORDER","features":[144]},{"name":"DISPID_IMULTISESSION_INUSE","features":[144]},{"name":"DISPID_IMULTISESSION_LASTSECTOROFPREVIOUSSESSION","features":[144]},{"name":"DISPID_IMULTISESSION_LASTWRITTENADDRESS","features":[144]},{"name":"DISPID_IMULTISESSION_NEXTWRITABLEADDRESS","features":[144]},{"name":"DISPID_IMULTISESSION_SECTORSONMEDIA","features":[144]},{"name":"DISPID_IMULTISESSION_STARTSECTOROFPREVIOUSSESSION","features":[144]},{"name":"DISPID_IMULTISESSION_SUPPORTEDONCURRENTMEDIA","features":[144]},{"name":"DISPID_IMULTISESSION_WRITEUNITSIZE","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSPECIALPREGAP","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSUBCODERWGENERATOR","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDTRACK","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_CREATERESULTIMAGE","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_DISABLEGAPLESSAUDIO","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_EXPECTEDTABLEOFCONTENTS","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_MEDIACATALOGNUMBER","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_NUMBEROFEXISTINGTRACKS","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_RESULTINGIMAGETYPE","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTINGTRACKNUMBER","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUT","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUTLIMIT","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_TRACKINFO","features":[144]},{"name":"DISPID_IRAWCDIMAGECREATOR_USEDSECTORSONDISC","features":[144]},{"name":"DISPID_IRAWCDTRACKINFO_AUDIOHASPREEMPHASIS","features":[144]},{"name":"DISPID_IRAWCDTRACKINFO_DIGITALAUDIOCOPYSETTING","features":[144]},{"name":"DISPID_IRAWCDTRACKINFO_ISRC","features":[144]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORCOUNT","features":[144]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORTYPE","features":[144]},{"name":"DISPID_IRAWCDTRACKINFO_STARTINGLBA","features":[144]},{"name":"DISPID_IRAWCDTRACKINFO_TRACKNUMBER","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_FREESYSTEMBUFFER","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTREADLBA","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTWRITTENLBA","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_SECTORCOUNT","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_STARTLBA","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALDEVICEBUFFER","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALSYSTEMBUFFER","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDDEVICEBUFFER","features":[144]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDSYSTEMBUFFER","features":[144]},{"name":"DISPID_IWRITEENGINE2_BYTESPERSECTOR","features":[144]},{"name":"DISPID_IWRITEENGINE2_CANCELWRITE","features":[144]},{"name":"DISPID_IWRITEENGINE2_DISCRECORDER","features":[144]},{"name":"DISPID_IWRITEENGINE2_ENDINGSECTORSPERSECOND","features":[144]},{"name":"DISPID_IWRITEENGINE2_STARTINGSECTORSPERSECOND","features":[144]},{"name":"DISPID_IWRITEENGINE2_USESTREAMINGWRITE12","features":[144]},{"name":"DISPID_IWRITEENGINE2_WRITEINPROGRESS","features":[144]},{"name":"DISPID_IWRITEENGINE2_WRITESECTION","features":[144]},{"name":"DWriteEngine2Events","features":[144]},{"name":"Emulation12MFloppy","features":[144]},{"name":"Emulation144MFloppy","features":[144]},{"name":"Emulation288MFloppy","features":[144]},{"name":"EmulationHardDisk","features":[144]},{"name":"EmulationNone","features":[144]},{"name":"EmulationType","features":[144]},{"name":"EnumFsiItems","features":[144]},{"name":"EnumProgressItems","features":[144]},{"name":"FileSystemImageResult","features":[144]},{"name":"FsiDirectoryItem","features":[144]},{"name":"FsiFileItem","features":[144]},{"name":"FsiFileSystemISO9660","features":[144]},{"name":"FsiFileSystemJoliet","features":[144]},{"name":"FsiFileSystemNone","features":[144]},{"name":"FsiFileSystemUDF","features":[144]},{"name":"FsiFileSystemUnknown","features":[144]},{"name":"FsiFileSystems","features":[144]},{"name":"FsiItemDirectory","features":[144]},{"name":"FsiItemFile","features":[144]},{"name":"FsiItemNotFound","features":[144]},{"name":"FsiItemType","features":[144]},{"name":"FsiNamedStreams","features":[144]},{"name":"FsiStream","features":[144]},{"name":"GUID_SMTPSVC_SOURCE","features":[144]},{"name":"GUID_SMTP_SOURCE_TYPE","features":[144]},{"name":"GetAttribIMsgOnIStg","features":[144,145]},{"name":"IBlockRange","features":[144]},{"name":"IBlockRangeList","features":[144]},{"name":"IBootOptions","features":[144]},{"name":"IBurnVerification","features":[144]},{"name":"IDiscFormat2","features":[144]},{"name":"IDiscFormat2Data","features":[144]},{"name":"IDiscFormat2DataEventArgs","features":[144]},{"name":"IDiscFormat2Erase","features":[144]},{"name":"IDiscFormat2RawCD","features":[144]},{"name":"IDiscFormat2RawCDEventArgs","features":[144]},{"name":"IDiscFormat2TrackAtOnce","features":[144]},{"name":"IDiscFormat2TrackAtOnceEventArgs","features":[144]},{"name":"IDiscMaster","features":[144]},{"name":"IDiscMaster2","features":[144]},{"name":"IDiscMasterProgressEvents","features":[144]},{"name":"IDiscRecorder","features":[144]},{"name":"IDiscRecorder2","features":[144]},{"name":"IDiscRecorder2Ex","features":[144]},{"name":"IEnumDiscMasterFormats","features":[144]},{"name":"IEnumDiscRecorders","features":[144]},{"name":"IEnumFsiItems","features":[144]},{"name":"IEnumProgressItems","features":[144]},{"name":"IFileSystemImage","features":[144]},{"name":"IFileSystemImage2","features":[144]},{"name":"IFileSystemImage3","features":[144]},{"name":"IFileSystemImageResult","features":[144]},{"name":"IFileSystemImageResult2","features":[144]},{"name":"IFsiDirectoryItem","features":[144]},{"name":"IFsiDirectoryItem2","features":[144]},{"name":"IFsiFileItem","features":[144]},{"name":"IFsiFileItem2","features":[144]},{"name":"IFsiItem","features":[144]},{"name":"IFsiNamedStreams","features":[144]},{"name":"IIsoImageManager","features":[144]},{"name":"IJolietDiscMaster","features":[144]},{"name":"IMAPI2FS_BOOT_ENTRY_COUNT_MAX","features":[144]},{"name":"IMAPI2FS_FullVersion_STR","features":[144]},{"name":"IMAPI2FS_FullVersion_WSTR","features":[144]},{"name":"IMAPI2FS_MajorVersion","features":[144]},{"name":"IMAPI2FS_MinorVersion","features":[144]},{"name":"IMAPI2_DEFAULT_COMMAND_TIMEOUT","features":[144]},{"name":"IMAPILib2_MajorVersion","features":[144]},{"name":"IMAPILib2_MinorVersion","features":[144]},{"name":"IMAPI_BURN_VERIFICATION_FULL","features":[144]},{"name":"IMAPI_BURN_VERIFICATION_LEVEL","features":[144]},{"name":"IMAPI_BURN_VERIFICATION_NONE","features":[144]},{"name":"IMAPI_BURN_VERIFICATION_QUICK","features":[144]},{"name":"IMAPI_CD_SECTOR_AUDIO","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE1","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE1RAW","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0RAW","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1RAW","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2RAW","features":[144]},{"name":"IMAPI_CD_SECTOR_MODE_ZERO","features":[144]},{"name":"IMAPI_CD_SECTOR_TYPE","features":[144]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PERMITTED","features":[144]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PROHIBITED","features":[144]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SCMS","features":[144]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SETTING","features":[144]},{"name":"IMAPI_E_ALREADYOPEN","features":[144]},{"name":"IMAPI_E_BADJOLIETNAME","features":[144]},{"name":"IMAPI_E_BOOTIMAGE_AND_NONBLANK_DISC","features":[144]},{"name":"IMAPI_E_CANNOT_WRITE_TO_MEDIA","features":[144]},{"name":"IMAPI_E_COMPRESSEDSTASH","features":[144]},{"name":"IMAPI_E_DEVICE_INVALIDTYPE","features":[144]},{"name":"IMAPI_E_DEVICE_NOPROPERTIES","features":[144]},{"name":"IMAPI_E_DEVICE_NOTACCESSIBLE","features":[144]},{"name":"IMAPI_E_DEVICE_NOTPRESENT","features":[144]},{"name":"IMAPI_E_DEVICE_STILL_IN_USE","features":[144]},{"name":"IMAPI_E_DISCFULL","features":[144]},{"name":"IMAPI_E_DISCINFO","features":[144]},{"name":"IMAPI_E_ENCRYPTEDSTASH","features":[144]},{"name":"IMAPI_E_FILEACCESS","features":[144]},{"name":"IMAPI_E_FILEEXISTS","features":[144]},{"name":"IMAPI_E_FILESYSTEM","features":[144]},{"name":"IMAPI_E_GENERIC","features":[144]},{"name":"IMAPI_E_INITIALIZE_ENDWRITE","features":[144]},{"name":"IMAPI_E_INITIALIZE_WRITE","features":[144]},{"name":"IMAPI_E_INVALIDIMAGE","features":[144]},{"name":"IMAPI_E_LOSS_OF_STREAMING","features":[144]},{"name":"IMAPI_E_MEDIUM_INVALIDTYPE","features":[144]},{"name":"IMAPI_E_MEDIUM_NOTPRESENT","features":[144]},{"name":"IMAPI_E_NOACTIVEFORMAT","features":[144]},{"name":"IMAPI_E_NOACTIVERECORDER","features":[144]},{"name":"IMAPI_E_NOTENOUGHDISKFORSTASH","features":[144]},{"name":"IMAPI_E_NOTINITIALIZED","features":[144]},{"name":"IMAPI_E_NOTOPENED","features":[144]},{"name":"IMAPI_E_REMOVABLESTASH","features":[144]},{"name":"IMAPI_E_STASHINUSE","features":[144]},{"name":"IMAPI_E_TRACKNOTOPEN","features":[144]},{"name":"IMAPI_E_TRACKOPEN","features":[144]},{"name":"IMAPI_E_TRACK_NOT_BIG_ENOUGH","features":[144]},{"name":"IMAPI_E_USERABORT","features":[144]},{"name":"IMAPI_E_WRONGDISC","features":[144]},{"name":"IMAPI_E_WRONGFORMAT","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_AACS","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_PSEUDO_OVERWRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_READ","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_WRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CDRW_CAV_WRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_ANALOG_PLAY","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MASTERING","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MULTIREAD","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_READ","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_RW_MEDIA_WRITE_SUPPORT","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_TRACK_AT_ONCE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CORE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DISC_CONTROL_BLOCKS","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_READ","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_RW_WRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_R_WRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CPRM","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CSS","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_DASH_WRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_RW","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R_DUAL_LAYER","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_READ","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_EMBEDDED_CHANGER","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_ENHANCED_DEFECT_REPORTING","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FIRMWARE_INFORMATION","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FORMATTABLE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HARDWARE_DEFECT_MANAGEMENT","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_READ","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_WRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_INCREMENTAL_STREAMING_WRITABLE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LAYER_JUMP_RECORDING","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LOGICAL_UNIT_SERIAL_NUMBER","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MEDIA_SERIAL_NUMBER","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MICROCODE_UPDATE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MORPHING","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MRW","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_POWER_MANAGEMENT","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_PROFILE_LIST","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_READABLE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_WRITABLE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REAL_TIME_STREAMING","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REMOVABLE_MEDIUM","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RESTRICTED_OVERWRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RIGID_RESTRICTED_OVERWRITE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SECTOR_ERASABLE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SMART","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_TIMEOUT","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_VCPS","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_ONCE","features":[144]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_PROTECT","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_APPENDABLE","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_BLANK","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_DAMAGED","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_ERASE_REQUIRED","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINALIZED","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINAL_SESSION","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_INFORMATIONAL_MASK","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_NON_EMPTY_SESSION","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_OVERWRITE_ONLY","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_RANDOMLY_WRITABLE","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNKNOWN","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MASK","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MEDIA","features":[144]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_WRITE_PROTECTED","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_CALIBRATING_POWER","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_COMPLETED","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FINALIZATION","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FORMATTING_MEDIA","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_INITIALIZING_HARDWARE","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VALIDATING_MEDIA","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VERIFYING","features":[144]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_WRITING_DATA","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_DATA_SECTOR_TYPE","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_COOKED","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_RAW","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_PQ_ONLY","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_FINISHING","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_PREPARING","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_UNKNOWN","features":[144]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_WRITING","features":[144]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION","features":[144]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_FINISHING","features":[144]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_PREPARING","features":[144]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_UNKNOWN","features":[144]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_VERIFYING","features":[144]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_WRITING","features":[144]},{"name":"IMAPI_MEDIA_PHYSICAL_TYPE","features":[144]},{"name":"IMAPI_MEDIA_TYPE_BDR","features":[144]},{"name":"IMAPI_MEDIA_TYPE_BDRE","features":[144]},{"name":"IMAPI_MEDIA_TYPE_BDROM","features":[144]},{"name":"IMAPI_MEDIA_TYPE_CDR","features":[144]},{"name":"IMAPI_MEDIA_TYPE_CDROM","features":[144]},{"name":"IMAPI_MEDIA_TYPE_CDRW","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DISK","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHRW","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR_DUALLAYER","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW_DUALLAYER","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR_DUALLAYER","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDRAM","features":[144]},{"name":"IMAPI_MEDIA_TYPE_DVDROM","features":[144]},{"name":"IMAPI_MEDIA_TYPE_HDDVDR","features":[144]},{"name":"IMAPI_MEDIA_TYPE_HDDVDRAM","features":[144]},{"name":"IMAPI_MEDIA_TYPE_HDDVDROM","features":[144]},{"name":"IMAPI_MEDIA_TYPE_MAX","features":[144]},{"name":"IMAPI_MEDIA_TYPE_UNKNOWN","features":[144]},{"name":"IMAPI_MEDIA_WRITE_PROTECT_STATE","features":[144]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE","features":[144]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CHANGEABLE_VALUES","features":[144]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CURRENT_VALUES","features":[144]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_DEFAULT_VALUES","features":[144]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_SAVED_VALUES","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_CACHING","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_INFORMATIONAL_EXCEPTIONS","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_LEGACY_CAPABILITIES","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_MRW","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_POWER_CONDITION","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_READ_WRITE_ERROR_RECOVERY","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_TIMEOUT_AND_PROTECT","features":[144]},{"name":"IMAPI_MODE_PAGE_TYPE_WRITE_PARAMETERS","features":[144]},{"name":"IMAPI_PROFILE_TYPE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_AS_MO","features":[144]},{"name":"IMAPI_PROFILE_TYPE_BD_REWRITABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_BD_ROM","features":[144]},{"name":"IMAPI_PROFILE_TYPE_BD_R_RANDOM_RECORDING","features":[144]},{"name":"IMAPI_PROFILE_TYPE_BD_R_SEQUENTIAL","features":[144]},{"name":"IMAPI_PROFILE_TYPE_CDROM","features":[144]},{"name":"IMAPI_PROFILE_TYPE_CD_RECORDABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_CD_REWRITABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DDCDROM","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DDCD_RECORDABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DDCD_REWRITABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVDROM","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RECORDABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_REWRITABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RW_SEQUENTIAL","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_LAYER_JUMP","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_SEQUENTIAL","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW_DUAL","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R_DUAL","features":[144]},{"name":"IMAPI_PROFILE_TYPE_DVD_RAM","features":[144]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RAM","features":[144]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RECORDABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_ROM","features":[144]},{"name":"IMAPI_PROFILE_TYPE_INVALID","features":[144]},{"name":"IMAPI_PROFILE_TYPE_MO_ERASABLE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_MO_WRITE_ONCE","features":[144]},{"name":"IMAPI_PROFILE_TYPE_NON_REMOVABLE_DISK","features":[144]},{"name":"IMAPI_PROFILE_TYPE_NON_STANDARD","features":[144]},{"name":"IMAPI_PROFILE_TYPE_REMOVABLE_DISK","features":[144]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE","features":[144]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_LBA","features":[144]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_SESSION","features":[144]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_TRACK","features":[144]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_BD","features":[144]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_CD","features":[144]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_DVD","features":[144]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_HD_DVD","features":[144]},{"name":"IMAPI_SECTOR_SIZE","features":[144]},{"name":"IMAPI_S_BUFFER_TO_SMALL","features":[144]},{"name":"IMAPI_S_PROPERTIESIGNORED","features":[144]},{"name":"IMAPI_WRITEPROTECTED_BY_CARTRIDGE","features":[144]},{"name":"IMAPI_WRITEPROTECTED_BY_DISC_CONTROL_BLOCK","features":[144]},{"name":"IMAPI_WRITEPROTECTED_BY_MEDIA_SPECIFIC_REASON","features":[144]},{"name":"IMAPI_WRITEPROTECTED_BY_SOFTWARE_WRITE_PROTECT","features":[144]},{"name":"IMAPI_WRITEPROTECTED_READ_ONLY_MEDIA","features":[144]},{"name":"IMAPI_WRITEPROTECTED_UNTIL_POWERDOWN","features":[144]},{"name":"IMMPID_CPV_AFTER__","features":[144]},{"name":"IMMPID_CPV_BEFORE__","features":[144]},{"name":"IMMPID_CPV_ENUM","features":[144]},{"name":"IMMPID_CP_START","features":[144]},{"name":"IMMPID_MPV_AFTER__","features":[144]},{"name":"IMMPID_MPV_BEFORE__","features":[144]},{"name":"IMMPID_MPV_ENUM","features":[144]},{"name":"IMMPID_MPV_MESSAGE_CREATION_FLAGS","features":[144]},{"name":"IMMPID_MPV_MESSAGE_OPEN_HANDLES","features":[144]},{"name":"IMMPID_MPV_STORE_DRIVER_HANDLE","features":[144]},{"name":"IMMPID_MPV_TOTAL_OPEN_CONTENT_HANDLES","features":[144]},{"name":"IMMPID_MPV_TOTAL_OPEN_HANDLES","features":[144]},{"name":"IMMPID_MPV_TOTAL_OPEN_PROPERTY_STREAM_HANDLES","features":[144]},{"name":"IMMPID_MP_AFTER__","features":[144]},{"name":"IMMPID_MP_ARRIVAL_FILETIME","features":[144]},{"name":"IMMPID_MP_ARRIVAL_TIME","features":[144]},{"name":"IMMPID_MP_AUTHENTICATED_USER_NAME","features":[144]},{"name":"IMMPID_MP_BEFORE__","features":[144]},{"name":"IMMPID_MP_BINARYMIME_OPTION","features":[144]},{"name":"IMMPID_MP_CHUNKING_OPTION","features":[144]},{"name":"IMMPID_MP_CLIENT_AUTH_TYPE","features":[144]},{"name":"IMMPID_MP_CLIENT_AUTH_USER","features":[144]},{"name":"IMMPID_MP_CONNECTION_IP_ADDRESS","features":[144]},{"name":"IMMPID_MP_CONNECTION_SERVER_IP_ADDRESS","features":[144]},{"name":"IMMPID_MP_CONNECTION_SERVER_PORT","features":[144]},{"name":"IMMPID_MP_CONTENT_FILE_NAME","features":[144]},{"name":"IMMPID_MP_CONTENT_TYPE","features":[144]},{"name":"IMMPID_MP_CRC_GLOBAL","features":[144]},{"name":"IMMPID_MP_CRC_RECIPS","features":[144]},{"name":"IMMPID_MP_DEFERRED_DELIVERY_FILETIME","features":[144]},{"name":"IMMPID_MP_DOMAIN_LIST","features":[144]},{"name":"IMMPID_MP_DSN_ENVID_VALUE","features":[144]},{"name":"IMMPID_MP_DSN_RET_VALUE","features":[144]},{"name":"IMMPID_MP_EIGHTBIT_MIME_OPTION","features":[144]},{"name":"IMMPID_MP_ENCRYPTION_TYPE","features":[144]},{"name":"IMMPID_MP_ENUM","features":[144]},{"name":"IMMPID_MP_ERROR_CODE","features":[144]},{"name":"IMMPID_MP_EXPIRE_DELAY","features":[144]},{"name":"IMMPID_MP_EXPIRE_NDR","features":[144]},{"name":"IMMPID_MP_FOUND_EMBEDDED_CRLF_DOT_CRLF","features":[144]},{"name":"IMMPID_MP_FROM_ADDRESS","features":[144]},{"name":"IMMPID_MP_HELO_DOMAIN","features":[144]},{"name":"IMMPID_MP_HR_CAT_STATUS","features":[144]},{"name":"IMMPID_MP_INBOUND_MAIL_FROM_AUTH","features":[144]},{"name":"IMMPID_MP_LOCAL_EXPIRE_DELAY","features":[144]},{"name":"IMMPID_MP_LOCAL_EXPIRE_NDR","features":[144]},{"name":"IMMPID_MP_MESSAGE_STATUS","features":[144]},{"name":"IMMPID_MP_MSGCLASS","features":[144]},{"name":"IMMPID_MP_MSG_GUID","features":[144]},{"name":"IMMPID_MP_MSG_SIZE_HINT","features":[144]},{"name":"IMMPID_MP_NUM_RECIPIENTS","features":[144]},{"name":"IMMPID_MP_ORIGINAL_ARRIVAL_TIME","features":[144]},{"name":"IMMPID_MP_PICKUP_FILE_NAME","features":[144]},{"name":"IMMPID_MP_RECIPIENT_LIST","features":[144]},{"name":"IMMPID_MP_REMOTE_AUTHENTICATION_TYPE","features":[144]},{"name":"IMMPID_MP_REMOTE_SERVER_DSN_CAPABLE","features":[144]},{"name":"IMMPID_MP_RFC822_BCC_ADDRESS","features":[144]},{"name":"IMMPID_MP_RFC822_CC_ADDRESS","features":[144]},{"name":"IMMPID_MP_RFC822_FROM_ADDRESS","features":[144]},{"name":"IMMPID_MP_RFC822_MSG_ID","features":[144]},{"name":"IMMPID_MP_RFC822_MSG_SUBJECT","features":[144]},{"name":"IMMPID_MP_RFC822_TO_ADDRESS","features":[144]},{"name":"IMMPID_MP_SCANNED_FOR_CRLF_DOT_CRLF","features":[144]},{"name":"IMMPID_MP_SENDER_ADDRESS","features":[144]},{"name":"IMMPID_MP_SENDER_ADDRESS_LEGACY_EX_DN","features":[144]},{"name":"IMMPID_MP_SENDER_ADDRESS_OTHER","features":[144]},{"name":"IMMPID_MP_SENDER_ADDRESS_SMTP","features":[144]},{"name":"IMMPID_MP_SENDER_ADDRESS_X400","features":[144]},{"name":"IMMPID_MP_SENDER_ADDRESS_X500","features":[144]},{"name":"IMMPID_MP_SERVER_NAME","features":[144]},{"name":"IMMPID_MP_SERVER_VERSION","features":[144]},{"name":"IMMPID_MP_SUPERSEDES_MSG_GUID","features":[144]},{"name":"IMMPID_MP_X_PRIORITY","features":[144]},{"name":"IMMPID_NMP_AFTER__","features":[144]},{"name":"IMMPID_NMP_BEFORE__","features":[144]},{"name":"IMMPID_NMP_ENUM","features":[144]},{"name":"IMMPID_NMP_HEADERS","features":[144]},{"name":"IMMPID_NMP_NEWSGROUP_LIST","features":[144]},{"name":"IMMPID_NMP_NNTP_APPROVED_HEADER","features":[144]},{"name":"IMMPID_NMP_NNTP_PROCESSING","features":[144]},{"name":"IMMPID_NMP_POST_TOKEN","features":[144]},{"name":"IMMPID_NMP_PRIMARY_ARTID","features":[144]},{"name":"IMMPID_NMP_PRIMARY_GROUP","features":[144]},{"name":"IMMPID_NMP_SECONDARY_ARTNUM","features":[144]},{"name":"IMMPID_NMP_SECONDARY_GROUPS","features":[144]},{"name":"IMMPID_RPV_AFTER__","features":[144]},{"name":"IMMPID_RPV_BEFORE__","features":[144]},{"name":"IMMPID_RPV_DONT_DELIVER","features":[144]},{"name":"IMMPID_RPV_ENUM","features":[144]},{"name":"IMMPID_RPV_NO_NAME_COLLISIONS","features":[144]},{"name":"IMMPID_RP_ADDRESS","features":[144]},{"name":"IMMPID_RP_ADDRESS_OTHER","features":[144]},{"name":"IMMPID_RP_ADDRESS_SMTP","features":[144]},{"name":"IMMPID_RP_ADDRESS_TYPE","features":[144]},{"name":"IMMPID_RP_ADDRESS_TYPE_SMTP","features":[144]},{"name":"IMMPID_RP_ADDRESS_X400","features":[144]},{"name":"IMMPID_RP_ADDRESS_X500","features":[144]},{"name":"IMMPID_RP_AFTER__","features":[144]},{"name":"IMMPID_RP_BEFORE__","features":[144]},{"name":"IMMPID_RP_DISPLAY_NAME","features":[144]},{"name":"IMMPID_RP_DOMAIN","features":[144]},{"name":"IMMPID_RP_DSN_NOTIFY_INVALID","features":[144]},{"name":"IMMPID_RP_DSN_NOTIFY_SUCCESS","features":[144]},{"name":"IMMPID_RP_DSN_NOTIFY_VALUE","features":[144]},{"name":"IMMPID_RP_DSN_ORCPT_VALUE","features":[144]},{"name":"IMMPID_RP_DSN_PRE_CAT_ADDRESS","features":[144]},{"name":"IMMPID_RP_ENUM","features":[144]},{"name":"IMMPID_RP_ERROR_CODE","features":[144]},{"name":"IMMPID_RP_ERROR_STRING","features":[144]},{"name":"IMMPID_RP_LEGACY_EX_DN","features":[144]},{"name":"IMMPID_RP_MDB_GUID","features":[144]},{"name":"IMMPID_RP_RECIPIENT_FLAGS","features":[144]},{"name":"IMMPID_RP_SMTP_STATUS_STRING","features":[144]},{"name":"IMMPID_RP_USER_GUID","features":[144]},{"name":"IMMP_MPV_STORE_DRIVER_HANDLE","features":[144]},{"name":"IMultisession","features":[144]},{"name":"IMultisessionRandomWrite","features":[144]},{"name":"IMultisessionSequential","features":[144]},{"name":"IMultisessionSequential2","features":[144]},{"name":"IProgressItem","features":[144]},{"name":"IProgressItems","features":[144]},{"name":"IRawCDImageCreator","features":[144]},{"name":"IRawCDImageTrackInfo","features":[144]},{"name":"IRedbookDiscMaster","features":[144]},{"name":"IStreamConcatenate","features":[144]},{"name":"IStreamInterleave","features":[144]},{"name":"IStreamPseudoRandomBased","features":[144]},{"name":"IWriteEngine2","features":[144]},{"name":"IWriteEngine2EventArgs","features":[144]},{"name":"IWriteSpeedDescriptor","features":[144]},{"name":"LPMSGSESS","features":[144]},{"name":"MEDIA_BLANK","features":[144]},{"name":"MEDIA_CDDA_CDROM","features":[144]},{"name":"MEDIA_CD_EXTRA","features":[144]},{"name":"MEDIA_CD_I","features":[144]},{"name":"MEDIA_CD_OTHER","features":[144]},{"name":"MEDIA_CD_ROM_XA","features":[144]},{"name":"MEDIA_FLAGS","features":[144]},{"name":"MEDIA_FORMAT_UNUSABLE_BY_IMAPI","features":[144]},{"name":"MEDIA_RW","features":[144]},{"name":"MEDIA_SPECIAL","features":[144]},{"name":"MEDIA_TYPES","features":[144]},{"name":"MEDIA_WRITABLE","features":[144]},{"name":"MPV_INBOUND_CUTOFF_EXCEEDED","features":[144]},{"name":"MPV_WRITE_CONTENT","features":[144]},{"name":"MP_MSGCLASS_DELIVERY_REPORT","features":[144]},{"name":"MP_MSGCLASS_NONDELIVERY_REPORT","features":[144]},{"name":"MP_MSGCLASS_REPLICATION","features":[144]},{"name":"MP_MSGCLASS_SYSTEM","features":[144]},{"name":"MP_STATUS_ABANDON_DELIVERY","features":[144]},{"name":"MP_STATUS_ABORT_DELIVERY","features":[144]},{"name":"MP_STATUS_BAD_MAIL","features":[144]},{"name":"MP_STATUS_CATEGORIZED","features":[144]},{"name":"MP_STATUS_RETRY","features":[144]},{"name":"MP_STATUS_SUBMITTED","features":[144]},{"name":"MP_STATUS_SUCCESS","features":[144]},{"name":"MSDiscMasterObj","features":[144]},{"name":"MSDiscRecorderObj","features":[144]},{"name":"MSEnumDiscRecordersObj","features":[144]},{"name":"MSGCALLRELEASE","features":[144]},{"name":"MapStorageSCode","features":[144]},{"name":"MsftDiscFormat2Data","features":[144]},{"name":"MsftDiscFormat2Erase","features":[144]},{"name":"MsftDiscFormat2RawCD","features":[144]},{"name":"MsftDiscFormat2TrackAtOnce","features":[144]},{"name":"MsftDiscMaster2","features":[144]},{"name":"MsftDiscRecorder2","features":[144]},{"name":"MsftFileSystemImage","features":[144]},{"name":"MsftIsoImageManager","features":[144]},{"name":"MsftMultisessionRandomWrite","features":[144]},{"name":"MsftMultisessionSequential","features":[144]},{"name":"MsftRawCDImageCreator","features":[144]},{"name":"MsftStreamConcatenate","features":[144]},{"name":"MsftStreamInterleave","features":[144]},{"name":"MsftStreamPrng001","features":[144]},{"name":"MsftStreamZero","features":[144]},{"name":"MsftWriteEngine2","features":[144]},{"name":"MsftWriteSpeedDescriptor","features":[144]},{"name":"NMP_PROCESS_CONTROL","features":[144]},{"name":"NMP_PROCESS_MODERATOR","features":[144]},{"name":"NMP_PROCESS_POST","features":[144]},{"name":"OpenIMsgOnIStg","features":[144,145]},{"name":"OpenIMsgSession","features":[144]},{"name":"PlatformEFI","features":[144]},{"name":"PlatformId","features":[144]},{"name":"PlatformMac","features":[144]},{"name":"PlatformPowerPC","features":[144]},{"name":"PlatformX86","features":[144]},{"name":"ProgressItem","features":[144]},{"name":"ProgressItems","features":[144]},{"name":"RECORDER_BURNING","features":[144]},{"name":"RECORDER_CDR","features":[144]},{"name":"RECORDER_CDRW","features":[144]},{"name":"RECORDER_DOING_NOTHING","features":[144]},{"name":"RECORDER_OPENED","features":[144]},{"name":"RECORDER_TYPES","features":[144]},{"name":"RP_DELIVERED","features":[144]},{"name":"RP_DSN_HANDLED","features":[144]},{"name":"RP_DSN_NOTIFY_DELAY","features":[144]},{"name":"RP_DSN_NOTIFY_FAILURE","features":[144]},{"name":"RP_DSN_NOTIFY_INVALID","features":[144]},{"name":"RP_DSN_NOTIFY_MASK","features":[144]},{"name":"RP_DSN_NOTIFY_NEVER","features":[144]},{"name":"RP_DSN_NOTIFY_SUCCESS","features":[144]},{"name":"RP_DSN_SENT_DELAYED","features":[144]},{"name":"RP_DSN_SENT_DELIVERED","features":[144]},{"name":"RP_DSN_SENT_EXPANDED","features":[144]},{"name":"RP_DSN_SENT_NDR","features":[144]},{"name":"RP_DSN_SENT_RELAYED","features":[144]},{"name":"RP_ENPANDED","features":[144]},{"name":"RP_ERROR_CONTEXT_CAT","features":[144]},{"name":"RP_ERROR_CONTEXT_MTA","features":[144]},{"name":"RP_ERROR_CONTEXT_STORE","features":[144]},{"name":"RP_EXPANDED","features":[144]},{"name":"RP_FAILED","features":[144]},{"name":"RP_GENERAL_FAILURE","features":[144]},{"name":"RP_HANDLED","features":[144]},{"name":"RP_RECIP_FLAGS_RESERVED","features":[144]},{"name":"RP_REMOTE_MTA_NO_DSN","features":[144]},{"name":"RP_UNRESOLVED","features":[144]},{"name":"RP_VOLATILE_FLAGS_MASK","features":[144]},{"name":"SPropAttrArray","features":[144]},{"name":"SZ_PROGID_SMTPCAT","features":[144]},{"name":"SetAttribIMsgOnIStg","features":[144,145]},{"name":"tagIMMPID_CPV_STRUCT","features":[144]},{"name":"tagIMMPID_GUIDLIST_ITEM","features":[144]},{"name":"tagIMMPID_MPV_STRUCT","features":[144]},{"name":"tagIMMPID_MP_STRUCT","features":[144]},{"name":"tagIMMPID_NMP_STRUCT","features":[144]},{"name":"tagIMMPID_RPV_STRUCT","features":[144]},{"name":"tagIMMPID_RP_STRUCT","features":[144]}],"514":[{"name":"BindIFilterFromStorage","features":[146]},{"name":"BindIFilterFromStream","features":[146]},{"name":"CHUNKSTATE","features":[146]},{"name":"CHUNK_BREAKTYPE","features":[146]},{"name":"CHUNK_EOC","features":[146]},{"name":"CHUNK_EOP","features":[146]},{"name":"CHUNK_EOS","features":[146]},{"name":"CHUNK_EOW","features":[146]},{"name":"CHUNK_FILTER_OWNED_VALUE","features":[146]},{"name":"CHUNK_NO_BREAK","features":[146]},{"name":"CHUNK_TEXT","features":[146]},{"name":"CHUNK_VALUE","features":[146]},{"name":"CIADMIN","features":[146]},{"name":"CICAT_ALL_OPENED","features":[146]},{"name":"CICAT_GET_STATE","features":[146]},{"name":"CICAT_NO_QUERY","features":[146]},{"name":"CICAT_READONLY","features":[146]},{"name":"CICAT_STOPPED","features":[146]},{"name":"CICAT_WRITABLE","features":[146]},{"name":"CINULLCATALOG","features":[146]},{"name":"CI_PROVIDER_ALL","features":[146]},{"name":"CI_PROVIDER_INDEXING_SERVICE","features":[146]},{"name":"CI_PROVIDER_MSSEARCH","features":[146]},{"name":"CI_STATE","features":[146]},{"name":"CI_STATE_ANNEALING_MERGE","features":[146]},{"name":"CI_STATE_BATTERY_POLICY","features":[146]},{"name":"CI_STATE_BATTERY_POWER","features":[146]},{"name":"CI_STATE_CONTENT_SCAN_REQUIRED","features":[146]},{"name":"CI_STATE_DELETION_MERGE","features":[146]},{"name":"CI_STATE_HIGH_CPU","features":[146]},{"name":"CI_STATE_HIGH_IO","features":[146]},{"name":"CI_STATE_INDEX_MIGRATION_MERGE","features":[146]},{"name":"CI_STATE_LOW_DISK","features":[146]},{"name":"CI_STATE_LOW_MEMORY","features":[146]},{"name":"CI_STATE_MASTER_MERGE","features":[146]},{"name":"CI_STATE_MASTER_MERGE_PAUSED","features":[146]},{"name":"CI_STATE_READING_USNS","features":[146]},{"name":"CI_STATE_READ_ONLY","features":[146]},{"name":"CI_STATE_RECOVERING","features":[146]},{"name":"CI_STATE_SCANNING","features":[146]},{"name":"CI_STATE_SHADOW_MERGE","features":[146]},{"name":"CI_STATE_STARTING","features":[146]},{"name":"CI_STATE_USER_ACTIVE","features":[146]},{"name":"CI_VERSION_WDS30","features":[146]},{"name":"CI_VERSION_WDS40","features":[146]},{"name":"CI_VERSION_WIN70","features":[146]},{"name":"CLSID_INDEX_SERVER_DSO","features":[146]},{"name":"DBID","features":[146]},{"name":"DBID","features":[146]},{"name":"DBKINDENUM","features":[146]},{"name":"DBKIND_GUID","features":[146]},{"name":"DBKIND_GUID_NAME","features":[146]},{"name":"DBKIND_GUID_PROPID","features":[146]},{"name":"DBKIND_NAME","features":[146]},{"name":"DBKIND_PGUID_NAME","features":[146]},{"name":"DBKIND_PGUID_PROPID","features":[146]},{"name":"DBKIND_PROPID","features":[146]},{"name":"DBPROPSET_CIFRMWRKCORE_EXT","features":[146]},{"name":"DBPROPSET_FSCIFRMWRK_EXT","features":[146]},{"name":"DBPROPSET_MSIDXS_ROWSETEXT","features":[146]},{"name":"DBPROPSET_QUERYEXT","features":[146]},{"name":"DBPROPSET_SESS_QUERYEXT","features":[146]},{"name":"DBPROP_APPLICATION_NAME","features":[146]},{"name":"DBPROP_CATALOGLISTID","features":[146]},{"name":"DBPROP_CI_CATALOG_NAME","features":[146]},{"name":"DBPROP_CI_DEPTHS","features":[146]},{"name":"DBPROP_CI_EXCLUDE_SCOPES","features":[146]},{"name":"DBPROP_CI_INCLUDE_SCOPES","features":[146]},{"name":"DBPROP_CI_PROVIDER","features":[146]},{"name":"DBPROP_CI_QUERY_TYPE","features":[146]},{"name":"DBPROP_CI_SCOPE_FLAGS","features":[146]},{"name":"DBPROP_CI_SECURITY_ID","features":[146]},{"name":"DBPROP_CLIENT_CLSID","features":[146]},{"name":"DBPROP_DEFAULT_EQUALS_BEHAVIOR","features":[146]},{"name":"DBPROP_DEFERCATALOGVERIFICATION","features":[146]},{"name":"DBPROP_DEFERNONINDEXEDTRIMMING","features":[146]},{"name":"DBPROP_DONOTCOMPUTEEXPENSIVEPROPS","features":[146]},{"name":"DBPROP_ENABLEROWSETEVENTS","features":[146]},{"name":"DBPROP_FIRSTROWS","features":[146]},{"name":"DBPROP_FREETEXTANYTERM","features":[146]},{"name":"DBPROP_FREETEXTUSESTEMMING","features":[146]},{"name":"DBPROP_GENERATEPARSETREE","features":[146]},{"name":"DBPROP_GENERICOPTIONS_STRING","features":[146]},{"name":"DBPROP_IGNORENOISEONLYCLAUSES","features":[146]},{"name":"DBPROP_IGNORESBRI","features":[146]},{"name":"DBPROP_MACHINE","features":[146]},{"name":"DBPROP_USECONTENTINDEX","features":[146]},{"name":"DBPROP_USEEXTENDEDDBTYPES","features":[146]},{"name":"DBSETFUNC_ALL","features":[146]},{"name":"DBSETFUNC_DISTINCT","features":[146]},{"name":"DBSETFUNC_NONE","features":[146]},{"name":"FILTERREGION","features":[146]},{"name":"FILTER_E_ACCESS","features":[146]},{"name":"FILTER_E_EMBEDDING_UNAVAILABLE","features":[146]},{"name":"FILTER_E_END_OF_CHUNKS","features":[146]},{"name":"FILTER_E_LINK_UNAVAILABLE","features":[146]},{"name":"FILTER_E_NO_MORE_TEXT","features":[146]},{"name":"FILTER_E_NO_MORE_VALUES","features":[146]},{"name":"FILTER_E_NO_TEXT","features":[146]},{"name":"FILTER_E_NO_VALUES","features":[146]},{"name":"FILTER_E_PASSWORD","features":[146]},{"name":"FILTER_E_UNKNOWNFORMAT","features":[146]},{"name":"FILTER_S_LAST_TEXT","features":[146]},{"name":"FILTER_S_LAST_VALUES","features":[146]},{"name":"FILTER_W_MONIKER_CLIPPED","features":[146]},{"name":"FULLPROPSPEC","features":[146,65]},{"name":"GENERATE_METHOD_EXACT","features":[146]},{"name":"GENERATE_METHOD_INFLECT","features":[146]},{"name":"GENERATE_METHOD_PREFIX","features":[146]},{"name":"IFILTER_FLAGS","features":[146]},{"name":"IFILTER_FLAGS_OLE_PROPERTIES","features":[146]},{"name":"IFILTER_INIT","features":[146]},{"name":"IFILTER_INIT_APPLY_CRAWL_ATTRIBUTES","features":[146]},{"name":"IFILTER_INIT_APPLY_INDEX_ATTRIBUTES","features":[146]},{"name":"IFILTER_INIT_APPLY_OTHER_ATTRIBUTES","features":[146]},{"name":"IFILTER_INIT_CANON_HYPHENS","features":[146]},{"name":"IFILTER_INIT_CANON_PARAGRAPHS","features":[146]},{"name":"IFILTER_INIT_CANON_SPACES","features":[146]},{"name":"IFILTER_INIT_DISABLE_EMBEDDED","features":[146]},{"name":"IFILTER_INIT_EMIT_FORMATTING","features":[146]},{"name":"IFILTER_INIT_FILTER_AGGRESSIVE_BREAK","features":[146]},{"name":"IFILTER_INIT_FILTER_OWNED_VALUE_OK","features":[146]},{"name":"IFILTER_INIT_HARD_LINE_BREAKS","features":[146]},{"name":"IFILTER_INIT_INDEXING_ONLY","features":[146]},{"name":"IFILTER_INIT_SEARCH_LINKS","features":[146]},{"name":"IFilter","features":[146]},{"name":"IPhraseSink","features":[146]},{"name":"LIFF_FORCE_TEXT_FILTER_FALLBACK","features":[146]},{"name":"LIFF_IMPLEMENT_TEXT_FILTER_FALLBACK_POLICY","features":[146]},{"name":"LIFF_LOAD_DEFINED_FILTER","features":[146]},{"name":"LoadIFilter","features":[146]},{"name":"LoadIFilterEx","features":[146]},{"name":"MSIDXSPROP_COMMAND_LOCALE_STRING","features":[146]},{"name":"MSIDXSPROP_MAX_RANK","features":[146]},{"name":"MSIDXSPROP_PARSE_TREE","features":[146]},{"name":"MSIDXSPROP_QUERY_RESTRICTION","features":[146]},{"name":"MSIDXSPROP_RESULTS_FOUND","features":[146]},{"name":"MSIDXSPROP_ROWSETQUERYSTATUS","features":[146]},{"name":"MSIDXSPROP_SAME_SORTORDER_USED","features":[146]},{"name":"MSIDXSPROP_SERVER_NLSVERSION","features":[146]},{"name":"MSIDXSPROP_SERVER_NLSVER_DEFINED","features":[146]},{"name":"MSIDXSPROP_SERVER_VERSION","features":[146]},{"name":"MSIDXSPROP_SERVER_WINVER_MAJOR","features":[146]},{"name":"MSIDXSPROP_SERVER_WINVER_MINOR","features":[146]},{"name":"MSIDXSPROP_WHEREID","features":[146]},{"name":"NOT_AN_ERROR","features":[146]},{"name":"PID_FILENAME","features":[146]},{"name":"PROPID_QUERY_ALL","features":[146]},{"name":"PROPID_QUERY_HITCOUNT","features":[146]},{"name":"PROPID_QUERY_LASTSEENTIME","features":[146]},{"name":"PROPID_QUERY_RANK","features":[146]},{"name":"PROPID_QUERY_RANKVECTOR","features":[146]},{"name":"PROPID_QUERY_UNFILTERED","features":[146]},{"name":"PROPID_QUERY_VIRTUALPATH","features":[146]},{"name":"PROPID_QUERY_WORKID","features":[146]},{"name":"PROPID_STG_CONTENTS","features":[146]},{"name":"PROXIMITY_UNIT_CHAPTER","features":[146]},{"name":"PROXIMITY_UNIT_PARAGRAPH","features":[146]},{"name":"PROXIMITY_UNIT_SENTENCE","features":[146]},{"name":"PROXIMITY_UNIT_WORD","features":[146]},{"name":"PSGUID_FILENAME","features":[146]},{"name":"QUERY_DEEP","features":[146]},{"name":"QUERY_PHYSICAL_PATH","features":[146]},{"name":"QUERY_SHALLOW","features":[146]},{"name":"QUERY_VIRTUAL_PATH","features":[146]},{"name":"SCOPE_FLAG_DEEP","features":[146]},{"name":"SCOPE_FLAG_INCLUDE","features":[146]},{"name":"SCOPE_FLAG_MASK","features":[146]},{"name":"SCOPE_TYPE_MASK","features":[146]},{"name":"SCOPE_TYPE_VPATH","features":[146]},{"name":"SCOPE_TYPE_WINPATH","features":[146]},{"name":"STAT_BUSY","features":[146]},{"name":"STAT_CHUNK","features":[146,65]},{"name":"STAT_COALESCE_COMP_ALL_NOISE","features":[146]},{"name":"STAT_CONTENT_OUT_OF_DATE","features":[146]},{"name":"STAT_CONTENT_QUERY_INCOMPLETE","features":[146]},{"name":"STAT_DONE","features":[146]},{"name":"STAT_ERROR","features":[146]},{"name":"STAT_MISSING_PROP_IN_RELDOC","features":[146]},{"name":"STAT_MISSING_RELDOC","features":[146]},{"name":"STAT_NOISE_WORDS","features":[146]},{"name":"STAT_PARTIAL_SCOPE","features":[146]},{"name":"STAT_REFRESH","features":[146]},{"name":"STAT_REFRESH_INCOMPLETE","features":[146]},{"name":"STAT_RELDOC_ACCESS_DENIED","features":[146]},{"name":"STAT_SHARING_VIOLATION","features":[146]},{"name":"STAT_TIME_LIMIT_EXCEEDED","features":[146]},{"name":"VECTOR_RANK_DICE","features":[146]},{"name":"VECTOR_RANK_INNER","features":[146]},{"name":"VECTOR_RANK_JACCARD","features":[146]},{"name":"VECTOR_RANK_MAX","features":[146]},{"name":"VECTOR_RANK_MIN","features":[146]},{"name":"WORDREP_BREAK_EOC","features":[146]},{"name":"WORDREP_BREAK_EOP","features":[146]},{"name":"WORDREP_BREAK_EOS","features":[146]},{"name":"WORDREP_BREAK_EOW","features":[146]},{"name":"WORDREP_BREAK_TYPE","features":[146]}],"515":[{"name":"FILTER_AGGREGATE_BASIC_INFORMATION","features":[27]},{"name":"FILTER_AGGREGATE_STANDARD_INFORMATION","features":[27]},{"name":"FILTER_FULL_INFORMATION","features":[27]},{"name":"FILTER_INFORMATION_CLASS","features":[27]},{"name":"FILTER_MESSAGE_HEADER","features":[27]},{"name":"FILTER_NAME_MAX_CHARS","features":[27]},{"name":"FILTER_REPLY_HEADER","features":[3,27]},{"name":"FILTER_VOLUME_BASIC_INFORMATION","features":[27]},{"name":"FILTER_VOLUME_INFORMATION_CLASS","features":[27]},{"name":"FILTER_VOLUME_STANDARD_INFORMATION","features":[27]},{"name":"FLTFL_AGGREGATE_INFO_IS_LEGACYFILTER","features":[27]},{"name":"FLTFL_AGGREGATE_INFO_IS_MINIFILTER","features":[27]},{"name":"FLTFL_ASI_IS_LEGACYFILTER","features":[27]},{"name":"FLTFL_ASI_IS_MINIFILTER","features":[27]},{"name":"FLTFL_IASIL_DETACHED_VOLUME","features":[27]},{"name":"FLTFL_IASIM_DETACHED_VOLUME","features":[27]},{"name":"FLTFL_IASI_IS_LEGACYFILTER","features":[27]},{"name":"FLTFL_IASI_IS_MINIFILTER","features":[27]},{"name":"FLTFL_VSI_DETACHED_VOLUME","features":[27]},{"name":"FLT_FILESYSTEM_TYPE","features":[27]},{"name":"FLT_FSTYPE_BSUDF","features":[27]},{"name":"FLT_FSTYPE_CDFS","features":[27]},{"name":"FLT_FSTYPE_CIMFS","features":[27]},{"name":"FLT_FSTYPE_CSVFS","features":[27]},{"name":"FLT_FSTYPE_EXFAT","features":[27]},{"name":"FLT_FSTYPE_FAT","features":[27]},{"name":"FLT_FSTYPE_FS_REC","features":[27]},{"name":"FLT_FSTYPE_GPFS","features":[27]},{"name":"FLT_FSTYPE_INCD","features":[27]},{"name":"FLT_FSTYPE_INCD_FAT","features":[27]},{"name":"FLT_FSTYPE_LANMAN","features":[27]},{"name":"FLT_FSTYPE_MSFS","features":[27]},{"name":"FLT_FSTYPE_MS_NETWARE","features":[27]},{"name":"FLT_FSTYPE_MUP","features":[27]},{"name":"FLT_FSTYPE_NETWARE","features":[27]},{"name":"FLT_FSTYPE_NFS","features":[27]},{"name":"FLT_FSTYPE_NPFS","features":[27]},{"name":"FLT_FSTYPE_NTFS","features":[27]},{"name":"FLT_FSTYPE_OPENAFS","features":[27]},{"name":"FLT_FSTYPE_PSFS","features":[27]},{"name":"FLT_FSTYPE_RAW","features":[27]},{"name":"FLT_FSTYPE_RDPDR","features":[27]},{"name":"FLT_FSTYPE_REFS","features":[27]},{"name":"FLT_FSTYPE_ROXIO_UDF1","features":[27]},{"name":"FLT_FSTYPE_ROXIO_UDF2","features":[27]},{"name":"FLT_FSTYPE_ROXIO_UDF3","features":[27]},{"name":"FLT_FSTYPE_RSFX","features":[27]},{"name":"FLT_FSTYPE_TACIT","features":[27]},{"name":"FLT_FSTYPE_UDFS","features":[27]},{"name":"FLT_FSTYPE_UNKNOWN","features":[27]},{"name":"FLT_FSTYPE_WEBDAV","features":[27]},{"name":"FLT_PORT_FLAG_SYNC_HANDLE","features":[27]},{"name":"FilterAggregateBasicInformation","features":[27]},{"name":"FilterAggregateStandardInformation","features":[27]},{"name":"FilterAttach","features":[27]},{"name":"FilterAttachAtAltitude","features":[27]},{"name":"FilterClose","features":[27]},{"name":"FilterConnectCommunicationPort","features":[3,6,27]},{"name":"FilterCreate","features":[27]},{"name":"FilterDetach","features":[27]},{"name":"FilterFindClose","features":[3,27]},{"name":"FilterFindFirst","features":[3,27]},{"name":"FilterFindNext","features":[3,27]},{"name":"FilterFullInformation","features":[27]},{"name":"FilterGetDosName","features":[27]},{"name":"FilterGetInformation","features":[27]},{"name":"FilterGetMessage","features":[3,27,8]},{"name":"FilterInstanceClose","features":[27]},{"name":"FilterInstanceCreate","features":[27]},{"name":"FilterInstanceFindClose","features":[3,27]},{"name":"FilterInstanceFindFirst","features":[3,27]},{"name":"FilterInstanceFindNext","features":[3,27]},{"name":"FilterInstanceGetInformation","features":[27]},{"name":"FilterLoad","features":[27]},{"name":"FilterReplyMessage","features":[3,27]},{"name":"FilterSendMessage","features":[3,27]},{"name":"FilterUnload","features":[27]},{"name":"FilterVolumeBasicInformation","features":[27]},{"name":"FilterVolumeFindClose","features":[3,27]},{"name":"FilterVolumeFindFirst","features":[3,27]},{"name":"FilterVolumeFindNext","features":[3,27]},{"name":"FilterVolumeInstanceFindClose","features":[3,27]},{"name":"FilterVolumeInstanceFindFirst","features":[3,27]},{"name":"FilterVolumeInstanceFindNext","features":[3,27]},{"name":"FilterVolumeStandardInformation","features":[27]},{"name":"HFILTER","features":[27]},{"name":"HFILTER_INSTANCE","features":[27]},{"name":"INSTANCE_AGGREGATE_STANDARD_INFORMATION","features":[27]},{"name":"INSTANCE_BASIC_INFORMATION","features":[27]},{"name":"INSTANCE_FULL_INFORMATION","features":[27]},{"name":"INSTANCE_INFORMATION_CLASS","features":[27]},{"name":"INSTANCE_NAME_MAX_CHARS","features":[27]},{"name":"INSTANCE_PARTIAL_INFORMATION","features":[27]},{"name":"InstanceAggregateStandardInformation","features":[27]},{"name":"InstanceBasicInformation","features":[27]},{"name":"InstanceFullInformation","features":[27]},{"name":"InstancePartialInformation","features":[27]},{"name":"VOLUME_NAME_MAX_CHARS","features":[27]},{"name":"WNNC_CRED_MANAGER","features":[27]},{"name":"WNNC_NET_10NET","features":[27]},{"name":"WNNC_NET_3IN1","features":[27]},{"name":"WNNC_NET_9P","features":[27]},{"name":"WNNC_NET_9TILES","features":[27]},{"name":"WNNC_NET_APPLETALK","features":[27]},{"name":"WNNC_NET_AS400","features":[27]},{"name":"WNNC_NET_AURISTOR_FS","features":[27]},{"name":"WNNC_NET_AVID","features":[27]},{"name":"WNNC_NET_AVID1","features":[27]},{"name":"WNNC_NET_BMC","features":[27]},{"name":"WNNC_NET_BWNFS","features":[27]},{"name":"WNNC_NET_CLEARCASE","features":[27]},{"name":"WNNC_NET_COGENT","features":[27]},{"name":"WNNC_NET_CSC","features":[27]},{"name":"WNNC_NET_DAV","features":[27]},{"name":"WNNC_NET_DCE","features":[27]},{"name":"WNNC_NET_DECORB","features":[27]},{"name":"WNNC_NET_DFS","features":[27]},{"name":"WNNC_NET_DISTINCT","features":[27]},{"name":"WNNC_NET_DOCUSHARE","features":[27]},{"name":"WNNC_NET_DOCUSPACE","features":[27]},{"name":"WNNC_NET_DRIVEONWEB","features":[27]},{"name":"WNNC_NET_EXIFS","features":[27]},{"name":"WNNC_NET_EXTENDNET","features":[27]},{"name":"WNNC_NET_FARALLON","features":[27]},{"name":"WNNC_NET_FJ_REDIR","features":[27]},{"name":"WNNC_NET_FOXBAT","features":[27]},{"name":"WNNC_NET_FRONTIER","features":[27]},{"name":"WNNC_NET_FTP_NFS","features":[27]},{"name":"WNNC_NET_GOOGLE","features":[27]},{"name":"WNNC_NET_HOB_NFS","features":[27]},{"name":"WNNC_NET_IBMAL","features":[27]},{"name":"WNNC_NET_INTERGRAPH","features":[27]},{"name":"WNNC_NET_KNOWARE","features":[27]},{"name":"WNNC_NET_KWNP","features":[27]},{"name":"WNNC_NET_LANMAN","features":[27]},{"name":"WNNC_NET_LANSTEP","features":[27]},{"name":"WNNC_NET_LANTASTIC","features":[27]},{"name":"WNNC_NET_LIFENET","features":[27]},{"name":"WNNC_NET_LOCK","features":[27]},{"name":"WNNC_NET_LOCUS","features":[27]},{"name":"WNNC_NET_MANGOSOFT","features":[27]},{"name":"WNNC_NET_MASFAX","features":[27]},{"name":"WNNC_NET_MFILES","features":[27]},{"name":"WNNC_NET_MSNET","features":[27]},{"name":"WNNC_NET_MS_NFS","features":[27]},{"name":"WNNC_NET_NDFS","features":[27]},{"name":"WNNC_NET_NETWARE","features":[27]},{"name":"WNNC_NET_OBJECT_DIRE","features":[27]},{"name":"WNNC_NET_OPENAFS","features":[27]},{"name":"WNNC_NET_PATHWORKS","features":[27]},{"name":"WNNC_NET_POWERLAN","features":[27]},{"name":"WNNC_NET_PROTSTOR","features":[27]},{"name":"WNNC_NET_QUINCY","features":[27]},{"name":"WNNC_NET_RDR2SAMPLE","features":[27]},{"name":"WNNC_NET_RIVERFRONT1","features":[27]},{"name":"WNNC_NET_RIVERFRONT2","features":[27]},{"name":"WNNC_NET_RSFX","features":[27]},{"name":"WNNC_NET_SECUREAGENT","features":[27]},{"name":"WNNC_NET_SERNET","features":[27]},{"name":"WNNC_NET_SHIVA","features":[27]},{"name":"WNNC_NET_SMB","features":[27]},{"name":"WNNC_NET_SRT","features":[27]},{"name":"WNNC_NET_STAC","features":[27]},{"name":"WNNC_NET_SUN_PC_NFS","features":[27]},{"name":"WNNC_NET_SYMFONET","features":[27]},{"name":"WNNC_NET_TERMSRV","features":[27]},{"name":"WNNC_NET_TWINS","features":[27]},{"name":"WNNC_NET_VINES","features":[27]},{"name":"WNNC_NET_VMWARE","features":[27]},{"name":"WNNC_NET_YAHOO","features":[27]},{"name":"WNNC_NET_ZENWORKS","features":[27]}],"516":[{"name":"ATA_FLAGS_48BIT_COMMAND","features":[36]},{"name":"ATA_FLAGS_DATA_IN","features":[36]},{"name":"ATA_FLAGS_DATA_OUT","features":[36]},{"name":"ATA_FLAGS_DRDY_REQUIRED","features":[36]},{"name":"ATA_FLAGS_NO_MULTIPLE","features":[36]},{"name":"ATA_FLAGS_USE_DMA","features":[36]},{"name":"ATA_PASS_THROUGH_DIRECT","features":[36]},{"name":"ATA_PASS_THROUGH_DIRECT32","features":[36]},{"name":"ATA_PASS_THROUGH_EX","features":[36]},{"name":"ATA_PASS_THROUGH_EX32","features":[36]},{"name":"AddISNSServerA","features":[36]},{"name":"AddISNSServerW","features":[36]},{"name":"AddIScsiConnectionA","features":[36]},{"name":"AddIScsiConnectionW","features":[36]},{"name":"AddIScsiSendTargetPortalA","features":[36]},{"name":"AddIScsiSendTargetPortalW","features":[36]},{"name":"AddIScsiStaticTargetA","features":[3,36]},{"name":"AddIScsiStaticTargetW","features":[3,36]},{"name":"AddPersistentIScsiDeviceA","features":[36]},{"name":"AddPersistentIScsiDeviceW","features":[36]},{"name":"AddRadiusServerA","features":[36]},{"name":"AddRadiusServerW","features":[36]},{"name":"ClearPersistentIScsiDevices","features":[36]},{"name":"DD_SCSI_DEVICE_NAME","features":[36]},{"name":"DSM_NOTIFICATION_REQUEST_BLOCK","features":[36]},{"name":"DUMP_DRIVER","features":[36]},{"name":"DUMP_DRIVER_EX","features":[36]},{"name":"DUMP_DRIVER_NAME_LENGTH","features":[36]},{"name":"DUMP_EX_FLAG_DRIVER_FULL_PATH_SUPPORT","features":[36]},{"name":"DUMP_EX_FLAG_RESUME_SUPPORT","features":[36]},{"name":"DUMP_EX_FLAG_SUPPORT_64BITMEMORY","features":[36]},{"name":"DUMP_EX_FLAG_SUPPORT_DD_TELEMETRY","features":[36]},{"name":"DUMP_POINTERS","features":[3,36]},{"name":"DUMP_POINTERS_EX","features":[3,36]},{"name":"DUMP_POINTERS_VERSION","features":[36]},{"name":"DUMP_POINTERS_VERSION_1","features":[36]},{"name":"DUMP_POINTERS_VERSION_2","features":[36]},{"name":"DUMP_POINTERS_VERSION_3","features":[36]},{"name":"DUMP_POINTERS_VERSION_4","features":[36]},{"name":"DiscoveryMechanisms","features":[36]},{"name":"FILE_DEVICE_SCSI","features":[36]},{"name":"FIRMWARE_FUNCTION_ACTIVATE","features":[36]},{"name":"FIRMWARE_FUNCTION_DOWNLOAD","features":[36]},{"name":"FIRMWARE_FUNCTION_GET_INFO","features":[36]},{"name":"FIRMWARE_REQUEST_BLOCK","features":[36]},{"name":"FIRMWARE_REQUEST_BLOCK_STRUCTURE_VERSION","features":[36]},{"name":"FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[36]},{"name":"FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[36]},{"name":"FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[36]},{"name":"FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[36]},{"name":"FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[36]},{"name":"FIRMWARE_STATUS_COMMAND_ABORT","features":[36]},{"name":"FIRMWARE_STATUS_CONTROLLER_ERROR","features":[36]},{"name":"FIRMWARE_STATUS_DEVICE_ERROR","features":[36]},{"name":"FIRMWARE_STATUS_END_OF_MEDIA","features":[36]},{"name":"FIRMWARE_STATUS_ERROR","features":[36]},{"name":"FIRMWARE_STATUS_ID_NOT_FOUND","features":[36]},{"name":"FIRMWARE_STATUS_ILLEGAL_LENGTH","features":[36]},{"name":"FIRMWARE_STATUS_ILLEGAL_REQUEST","features":[36]},{"name":"FIRMWARE_STATUS_INPUT_BUFFER_TOO_BIG","features":[36]},{"name":"FIRMWARE_STATUS_INTERFACE_CRC_ERROR","features":[36]},{"name":"FIRMWARE_STATUS_INVALID_IMAGE","features":[36]},{"name":"FIRMWARE_STATUS_INVALID_PARAMETER","features":[36]},{"name":"FIRMWARE_STATUS_INVALID_SLOT","features":[36]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE","features":[36]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE_REQUEST","features":[36]},{"name":"FIRMWARE_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[36]},{"name":"FIRMWARE_STATUS_POWER_CYCLE_REQUIRED","features":[36]},{"name":"FIRMWARE_STATUS_SUCCESS","features":[36]},{"name":"FIRMWARE_STATUS_UNCORRECTABLE_DATA_ERROR","features":[36]},{"name":"GetDevicesForIScsiSessionA","features":[36,24]},{"name":"GetDevicesForIScsiSessionW","features":[36,24]},{"name":"GetIScsiIKEInfoA","features":[36]},{"name":"GetIScsiIKEInfoW","features":[36]},{"name":"GetIScsiInitiatorNodeNameA","features":[36]},{"name":"GetIScsiInitiatorNodeNameW","features":[36]},{"name":"GetIScsiSessionListA","features":[36]},{"name":"GetIScsiSessionListEx","features":[3,36]},{"name":"GetIScsiSessionListW","features":[36]},{"name":"GetIScsiTargetInformationA","features":[36]},{"name":"GetIScsiTargetInformationW","features":[36]},{"name":"GetIScsiVersionInformation","features":[36]},{"name":"HYBRID_DEMOTE_BY_SIZE","features":[36]},{"name":"HYBRID_DIRTY_THRESHOLDS","features":[36]},{"name":"HYBRID_FUNCTION_DEMOTE_BY_SIZE","features":[36]},{"name":"HYBRID_FUNCTION_DISABLE_CACHING_MEDIUM","features":[36]},{"name":"HYBRID_FUNCTION_ENABLE_CACHING_MEDIUM","features":[36]},{"name":"HYBRID_FUNCTION_GET_INFO","features":[36]},{"name":"HYBRID_FUNCTION_SET_DIRTY_THRESHOLD","features":[36]},{"name":"HYBRID_INFORMATION","features":[3,36]},{"name":"HYBRID_REQUEST_BLOCK","features":[36]},{"name":"HYBRID_REQUEST_BLOCK_STRUCTURE_VERSION","features":[36]},{"name":"HYBRID_REQUEST_INFO_STRUCTURE_VERSION","features":[36]},{"name":"HYBRID_STATUS_ENABLE_REFCOUNT_HOLD","features":[36]},{"name":"HYBRID_STATUS_ILLEGAL_REQUEST","features":[36]},{"name":"HYBRID_STATUS_INVALID_PARAMETER","features":[36]},{"name":"HYBRID_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[36]},{"name":"HYBRID_STATUS_SUCCESS","features":[36]},{"name":"IDE_IO_CONTROL","features":[36]},{"name":"ID_FQDN","features":[36]},{"name":"ID_IPV4_ADDR","features":[36]},{"name":"ID_IPV6_ADDR","features":[36]},{"name":"ID_USER_FQDN","features":[36]},{"name":"IKE_AUTHENTICATION_INFORMATION","features":[36]},{"name":"IKE_AUTHENTICATION_METHOD","features":[36]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY","features":[36]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY_METHOD","features":[36]},{"name":"IOCTL_ATA_MINIPORT","features":[36]},{"name":"IOCTL_ATA_PASS_THROUGH","features":[36]},{"name":"IOCTL_ATA_PASS_THROUGH_DIRECT","features":[36]},{"name":"IOCTL_IDE_PASS_THROUGH","features":[36]},{"name":"IOCTL_MINIPORT_PROCESS_SERVICE_IRP","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_GENERAL","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_NOTIFICATION","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_ENDURANCE_INFO","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_FIRMWARE","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_HYBRDISK","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PHYSICAL_TOPOLOGY","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PROTOCOL","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_TEMPERATURE","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_SCSIDISK","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_PROTOCOL","features":[36]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_TEMPERATURE_THRESHOLD","features":[36]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH","features":[36]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT","features":[36]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[36]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_EX","features":[36]},{"name":"IOCTL_SCSI_BASE","features":[36]},{"name":"IOCTL_SCSI_FREE_DUMP_POINTERS","features":[36]},{"name":"IOCTL_SCSI_GET_ADDRESS","features":[36]},{"name":"IOCTL_SCSI_GET_CAPABILITIES","features":[36]},{"name":"IOCTL_SCSI_GET_DUMP_POINTERS","features":[36]},{"name":"IOCTL_SCSI_GET_INQUIRY_DATA","features":[36]},{"name":"IOCTL_SCSI_MINIPORT","features":[36]},{"name":"IOCTL_SCSI_PASS_THROUGH","features":[36]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT","features":[36]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT_EX","features":[36]},{"name":"IOCTL_SCSI_PASS_THROUGH_EX","features":[36]},{"name":"IOCTL_SCSI_RESCAN_BUS","features":[36]},{"name":"IO_SCSI_CAPABILITIES","features":[3,36]},{"name":"ISCSI_AUTH_TYPES","features":[36]},{"name":"ISCSI_CHAP_AUTH_TYPE","features":[36]},{"name":"ISCSI_CONNECTION_INFOA","features":[36]},{"name":"ISCSI_CONNECTION_INFOW","features":[36]},{"name":"ISCSI_CONNECTION_INFO_EX","features":[36]},{"name":"ISCSI_DEVICE_ON_SESSIONA","features":[36,24]},{"name":"ISCSI_DEVICE_ON_SESSIONW","features":[36,24]},{"name":"ISCSI_DIGEST_TYPES","features":[36]},{"name":"ISCSI_DIGEST_TYPE_CRC32C","features":[36]},{"name":"ISCSI_DIGEST_TYPE_NONE","features":[36]},{"name":"ISCSI_LOGIN_FLAG_ALLOW_PORTAL_HOPPING","features":[36]},{"name":"ISCSI_LOGIN_FLAG_MULTIPATH_ENABLED","features":[36]},{"name":"ISCSI_LOGIN_FLAG_REQUIRE_IPSEC","features":[36]},{"name":"ISCSI_LOGIN_FLAG_RESERVED1","features":[36]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_RESPONSE","features":[36]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_VERIFICATION","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_AUTH_TYPE","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_DATA_DIGEST","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_RETAIN","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_WAIT","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_HEADER_DIGEST","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_MAXIMUM_CONNECTIONS","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_PASSWORD","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_USERNAME","features":[36]},{"name":"ISCSI_LOGIN_OPTIONS_VERSION","features":[36]},{"name":"ISCSI_MUTUAL_CHAP_AUTH_TYPE","features":[36]},{"name":"ISCSI_NO_AUTH_TYPE","features":[36]},{"name":"ISCSI_SECURITY_FLAG_AGGRESSIVE_MODE_ENABLED","features":[36]},{"name":"ISCSI_SECURITY_FLAG_IKE_IPSEC_ENABLED","features":[36]},{"name":"ISCSI_SECURITY_FLAG_MAIN_MODE_ENABLED","features":[36]},{"name":"ISCSI_SECURITY_FLAG_PFS_ENABLED","features":[36]},{"name":"ISCSI_SECURITY_FLAG_TRANSPORT_MODE_PREFERRED","features":[36]},{"name":"ISCSI_SECURITY_FLAG_TUNNEL_MODE_PREFERRED","features":[36]},{"name":"ISCSI_SECURITY_FLAG_VALID","features":[36]},{"name":"ISCSI_SESSION_INFOA","features":[36]},{"name":"ISCSI_SESSION_INFOW","features":[36]},{"name":"ISCSI_SESSION_INFO_EX","features":[3,36]},{"name":"ISCSI_TARGET_FLAG_HIDE_STATIC_TARGET","features":[36]},{"name":"ISCSI_TARGET_FLAG_MERGE_TARGET_INFORMATION","features":[36]},{"name":"ISCSI_TARGET_MAPPINGA","features":[36]},{"name":"ISCSI_TARGET_MAPPINGW","features":[36]},{"name":"ISCSI_TARGET_PORTALA","features":[36]},{"name":"ISCSI_TARGET_PORTALW","features":[36]},{"name":"ISCSI_TARGET_PORTAL_GROUPA","features":[36]},{"name":"ISCSI_TARGET_PORTAL_GROUPW","features":[36]},{"name":"ISCSI_TARGET_PORTAL_INFOA","features":[36]},{"name":"ISCSI_TARGET_PORTAL_INFOW","features":[36]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXA","features":[36]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXW","features":[36]},{"name":"ISCSI_TCP_PROTOCOL_TYPE","features":[36]},{"name":"ISCSI_UNIQUE_SESSION_ID","features":[36]},{"name":"ISCSI_VERSION_INFO","features":[36]},{"name":"InitiatorName","features":[36]},{"name":"LoginIScsiTargetA","features":[3,36]},{"name":"LoginIScsiTargetW","features":[3,36]},{"name":"LoginOptions","features":[36]},{"name":"LogoutIScsiTarget","features":[36]},{"name":"MAX_ISCSI_ALIAS_LEN","features":[36]},{"name":"MAX_ISCSI_DISCOVERY_DOMAIN_LEN","features":[36]},{"name":"MAX_ISCSI_HBANAME_LEN","features":[36]},{"name":"MAX_ISCSI_NAME_LEN","features":[36]},{"name":"MAX_ISCSI_PORTAL_ADDRESS_LEN","features":[36]},{"name":"MAX_ISCSI_PORTAL_ALIAS_LEN","features":[36]},{"name":"MAX_ISCSI_PORTAL_NAME_LEN","features":[36]},{"name":"MAX_ISCSI_TEXT_ADDRESS_LEN","features":[36]},{"name":"MAX_RADIUS_ADDRESS_LEN","features":[36]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION","features":[36]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION_1","features":[36]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_BEGIN","features":[36]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_END","features":[36]},{"name":"MINIPORT_DSM_PROFILE_CRASHDUMP_FILE","features":[36]},{"name":"MINIPORT_DSM_PROFILE_HIBERNATION_FILE","features":[36]},{"name":"MINIPORT_DSM_PROFILE_PAGE_FILE","features":[36]},{"name":"MINIPORT_DSM_PROFILE_UNKNOWN","features":[36]},{"name":"MPIO_IOCTL_FLAG_INVOLVE_DSM","features":[36]},{"name":"MPIO_IOCTL_FLAG_USE_PATHID","features":[36]},{"name":"MPIO_IOCTL_FLAG_USE_SCSIADDRESS","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH32","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH32_EX","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32_EX","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[36]},{"name":"MPIO_PASS_THROUGH_PATH_EX","features":[36]},{"name":"MP_DEVICE_DATA_SET_RANGE","features":[36]},{"name":"MP_STORAGE_DIAGNOSTIC_LEVEL","features":[36]},{"name":"MP_STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[36]},{"name":"MpStorageDiagnosticLevelDefault","features":[36]},{"name":"MpStorageDiagnosticLevelMax","features":[36]},{"name":"MpStorageDiagnosticTargetTypeHbaFirmware","features":[36]},{"name":"MpStorageDiagnosticTargetTypeMax","features":[36]},{"name":"MpStorageDiagnosticTargetTypeMiniport","features":[36]},{"name":"MpStorageDiagnosticTargetTypeUndefined","features":[36]},{"name":"NRB_FUNCTION_ADD_LBAS_PINNED_SET","features":[36]},{"name":"NRB_FUNCTION_FLUSH_NVCACHE","features":[36]},{"name":"NRB_FUNCTION_NVCACHE_INFO","features":[36]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_RETURN","features":[36]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_SET","features":[36]},{"name":"NRB_FUNCTION_NVSEPARATED_FLUSH","features":[36]},{"name":"NRB_FUNCTION_NVSEPARATED_INFO","features":[36]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_DISABLE","features":[36]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_REVERT_DEFAULT","features":[36]},{"name":"NRB_FUNCTION_PASS_HINT_PAYLOAD","features":[36]},{"name":"NRB_FUNCTION_QUERY_ASCENDER_STATUS","features":[36]},{"name":"NRB_FUNCTION_QUERY_CACHE_MISS","features":[36]},{"name":"NRB_FUNCTION_QUERY_HYBRID_DISK_STATUS","features":[36]},{"name":"NRB_FUNCTION_QUERY_PINNED_SET","features":[36]},{"name":"NRB_FUNCTION_REMOVE_LBAS_PINNED_SET","features":[36]},{"name":"NRB_FUNCTION_SPINDLE_STATUS","features":[36]},{"name":"NRB_ILLEGAL_REQUEST","features":[36]},{"name":"NRB_INPUT_DATA_OVERRUN","features":[36]},{"name":"NRB_INPUT_DATA_UNDERRUN","features":[36]},{"name":"NRB_INVALID_PARAMETER","features":[36]},{"name":"NRB_OUTPUT_DATA_OVERRUN","features":[36]},{"name":"NRB_OUTPUT_DATA_UNDERRUN","features":[36]},{"name":"NRB_SUCCESS","features":[36]},{"name":"NTSCSI_UNICODE_STRING","features":[36]},{"name":"NVCACHE_HINT_PAYLOAD","features":[36]},{"name":"NVCACHE_PRIORITY_LEVEL_DESCRIPTOR","features":[36]},{"name":"NVCACHE_REQUEST_BLOCK","features":[36]},{"name":"NVCACHE_STATUS","features":[36]},{"name":"NVCACHE_TYPE","features":[36]},{"name":"NVSEPWriteCacheTypeNone","features":[36]},{"name":"NVSEPWriteCacheTypeUnknown","features":[36]},{"name":"NVSEPWriteCacheTypeWriteBack","features":[36]},{"name":"NVSEPWriteCacheTypeWriteThrough","features":[36]},{"name":"NV_FEATURE_PARAMETER","features":[36]},{"name":"NV_SEP_CACHE_PARAMETER","features":[36]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION","features":[36]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION_1","features":[36]},{"name":"NV_SEP_WRITE_CACHE_TYPE","features":[36]},{"name":"NvCacheStatusDisabled","features":[36]},{"name":"NvCacheStatusDisabling","features":[36]},{"name":"NvCacheStatusEnabled","features":[36]},{"name":"NvCacheStatusUnknown","features":[36]},{"name":"NvCacheTypeNone","features":[36]},{"name":"NvCacheTypeUnknown","features":[36]},{"name":"NvCacheTypeWriteBack","features":[36]},{"name":"NvCacheTypeWriteThrough","features":[36]},{"name":"PDUMP_DEVICE_POWERON_ROUTINE","features":[36]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOA","features":[3,36]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOW","features":[3,36]},{"name":"PersistentTargetMappings","features":[36]},{"name":"PortalGroups","features":[36]},{"name":"ProtocolType","features":[36]},{"name":"RefreshISNSServerA","features":[36]},{"name":"RefreshISNSServerW","features":[36]},{"name":"RefreshIScsiSendTargetPortalA","features":[36]},{"name":"RefreshIScsiSendTargetPortalW","features":[36]},{"name":"RemoveISNSServerA","features":[36]},{"name":"RemoveISNSServerW","features":[36]},{"name":"RemoveIScsiConnection","features":[36]},{"name":"RemoveIScsiPersistentTargetA","features":[36]},{"name":"RemoveIScsiPersistentTargetW","features":[36]},{"name":"RemoveIScsiSendTargetPortalA","features":[36]},{"name":"RemoveIScsiSendTargetPortalW","features":[36]},{"name":"RemoveIScsiStaticTargetA","features":[36]},{"name":"RemoveIScsiStaticTargetW","features":[36]},{"name":"RemovePersistentIScsiDeviceA","features":[36]},{"name":"RemovePersistentIScsiDeviceW","features":[36]},{"name":"RemoveRadiusServerA","features":[36]},{"name":"RemoveRadiusServerW","features":[36]},{"name":"ReportActiveIScsiTargetMappingsA","features":[36]},{"name":"ReportActiveIScsiTargetMappingsW","features":[36]},{"name":"ReportISNSServerListA","features":[36]},{"name":"ReportISNSServerListW","features":[36]},{"name":"ReportIScsiInitiatorListA","features":[36]},{"name":"ReportIScsiInitiatorListW","features":[36]},{"name":"ReportIScsiPersistentLoginsA","features":[3,36]},{"name":"ReportIScsiPersistentLoginsW","features":[3,36]},{"name":"ReportIScsiSendTargetPortalsA","features":[36]},{"name":"ReportIScsiSendTargetPortalsExA","features":[36]},{"name":"ReportIScsiSendTargetPortalsExW","features":[36]},{"name":"ReportIScsiSendTargetPortalsW","features":[36]},{"name":"ReportIScsiTargetPortalsA","features":[36]},{"name":"ReportIScsiTargetPortalsW","features":[36]},{"name":"ReportIScsiTargetsA","features":[3,36]},{"name":"ReportIScsiTargetsW","features":[3,36]},{"name":"ReportPersistentIScsiDevicesA","features":[36]},{"name":"ReportPersistentIScsiDevicesW","features":[36]},{"name":"ReportRadiusServerListA","features":[36]},{"name":"ReportRadiusServerListW","features":[36]},{"name":"SCSI_ADAPTER_BUS_INFO","features":[36]},{"name":"SCSI_ADDRESS","features":[36]},{"name":"SCSI_BUS_DATA","features":[36]},{"name":"SCSI_INQUIRY_DATA","features":[3,36]},{"name":"SCSI_IOCTL_DATA_BIDIRECTIONAL","features":[36]},{"name":"SCSI_IOCTL_DATA_IN","features":[36]},{"name":"SCSI_IOCTL_DATA_OUT","features":[36]},{"name":"SCSI_IOCTL_DATA_UNSPECIFIED","features":[36]},{"name":"SCSI_LUN_LIST","features":[36]},{"name":"SCSI_PASS_THROUGH","features":[36]},{"name":"SCSI_PASS_THROUGH32","features":[36]},{"name":"SCSI_PASS_THROUGH32_EX","features":[36]},{"name":"SCSI_PASS_THROUGH_DIRECT","features":[36]},{"name":"SCSI_PASS_THROUGH_DIRECT32","features":[36]},{"name":"SCSI_PASS_THROUGH_DIRECT32_EX","features":[36]},{"name":"SCSI_PASS_THROUGH_DIRECT_EX","features":[36]},{"name":"SCSI_PASS_THROUGH_EX","features":[36]},{"name":"SRB_IO_CONTROL","features":[36]},{"name":"STORAGE_DIAGNOSTIC_MP_REQUEST","features":[36]},{"name":"STORAGE_DIAGNOSTIC_STATUS_BUFFER_TOO_SMALL","features":[36]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_PARAMETER","features":[36]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_SIGNATURE","features":[36]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_TARGET_TYPE","features":[36]},{"name":"STORAGE_DIAGNOSTIC_STATUS_MORE_DATA","features":[36]},{"name":"STORAGE_DIAGNOSTIC_STATUS_SUCCESS","features":[36]},{"name":"STORAGE_DIAGNOSTIC_STATUS_UNSUPPORTED_VERSION","features":[36]},{"name":"STORAGE_ENDURANCE_DATA_DESCRIPTOR","features":[36]},{"name":"STORAGE_ENDURANCE_INFO","features":[36]},{"name":"STORAGE_FIRMWARE_ACTIVATE","features":[36]},{"name":"STORAGE_FIRMWARE_ACTIVATE_STRUCTURE_VERSION","features":[36]},{"name":"STORAGE_FIRMWARE_DOWNLOAD","features":[36]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION","features":[36]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION_V2","features":[36]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_V2","features":[36]},{"name":"STORAGE_FIRMWARE_INFO","features":[3,36]},{"name":"STORAGE_FIRMWARE_INFO_INVALID_SLOT","features":[36]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION","features":[36]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION_V2","features":[36]},{"name":"STORAGE_FIRMWARE_INFO_V2","features":[3,36]},{"name":"STORAGE_FIRMWARE_SLOT_INFO","features":[3,36]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2","features":[3,36]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2_REVISION_LENGTH","features":[36]},{"name":"ScsiRawInterfaceGuid","features":[36]},{"name":"SendScsiInquiry","features":[36]},{"name":"SendScsiReadCapacity","features":[36]},{"name":"SendScsiReportLuns","features":[36]},{"name":"SetIScsiGroupPresharedKey","features":[3,36]},{"name":"SetIScsiIKEInfoA","features":[3,36]},{"name":"SetIScsiIKEInfoW","features":[3,36]},{"name":"SetIScsiInitiatorCHAPSharedSecret","features":[36]},{"name":"SetIScsiInitiatorNodeNameA","features":[36]},{"name":"SetIScsiInitiatorNodeNameW","features":[36]},{"name":"SetIScsiInitiatorRADIUSSharedSecret","features":[36]},{"name":"SetIScsiTunnelModeOuterAddressA","features":[3,36]},{"name":"SetIScsiTunnelModeOuterAddressW","features":[3,36]},{"name":"SetupPersistentIScsiDevices","features":[36]},{"name":"SetupPersistentIScsiVolumes","features":[36]},{"name":"TARGETPROTOCOLTYPE","features":[36]},{"name":"TARGET_INFORMATION_CLASS","features":[36]},{"name":"TargetAlias","features":[36]},{"name":"TargetFlags","features":[36]},{"name":"WmiScsiAddressGuid","features":[36]},{"name":"_ADAPTER_OBJECT","features":[36]}],"517":[{"name":"JET_BASE_NAME_LENGTH","features":[147]},{"name":"JET_BKINFO","features":[147]},{"name":"JET_BKLOGTIME","features":[147]},{"name":"JET_CALLBACK","features":[147,148]},{"name":"JET_COLUMNBASE_A","features":[147]},{"name":"JET_COLUMNBASE_W","features":[147]},{"name":"JET_COLUMNCREATE_A","features":[147]},{"name":"JET_COLUMNCREATE_W","features":[147]},{"name":"JET_COLUMNDEF","features":[147]},{"name":"JET_COLUMNLIST","features":[147,148]},{"name":"JET_COMMIT_ID","features":[147]},{"name":"JET_COMMIT_ID","features":[147]},{"name":"JET_CONDITIONALCOLUMN_A","features":[147]},{"name":"JET_CONDITIONALCOLUMN_W","features":[147]},{"name":"JET_CONVERT_A","features":[147]},{"name":"JET_CONVERT_W","features":[147]},{"name":"JET_ColInfoGrbitMinimalInfo","features":[147]},{"name":"JET_ColInfoGrbitNonDerivedColumnsOnly","features":[147]},{"name":"JET_ColInfoGrbitSortByColumnid","features":[147]},{"name":"JET_DBINFOMISC","features":[147]},{"name":"JET_DBINFOMISC2","features":[147]},{"name":"JET_DBINFOMISC3","features":[147]},{"name":"JET_DBINFOMISC4","features":[147]},{"name":"JET_DBINFOUPGRADE","features":[147]},{"name":"JET_DbInfoCollate","features":[147]},{"name":"JET_DbInfoConnect","features":[147]},{"name":"JET_DbInfoCountry","features":[147]},{"name":"JET_DbInfoCp","features":[147]},{"name":"JET_DbInfoDBInUse","features":[147]},{"name":"JET_DbInfoFileType","features":[147]},{"name":"JET_DbInfoFilename","features":[147]},{"name":"JET_DbInfoFilesize","features":[147]},{"name":"JET_DbInfoFilesizeOnDisk","features":[147]},{"name":"JET_DbInfoIsam","features":[147]},{"name":"JET_DbInfoLCID","features":[147]},{"name":"JET_DbInfoLangid","features":[147]},{"name":"JET_DbInfoMisc","features":[147]},{"name":"JET_DbInfoOptions","features":[147]},{"name":"JET_DbInfoPageSize","features":[147]},{"name":"JET_DbInfoSpaceAvailable","features":[147]},{"name":"JET_DbInfoSpaceOwned","features":[147]},{"name":"JET_DbInfoTransactions","features":[147]},{"name":"JET_DbInfoUpgrade","features":[147]},{"name":"JET_DbInfoVersion","features":[147]},{"name":"JET_ENUMCOLUMN","features":[147]},{"name":"JET_ENUMCOLUMNID","features":[147]},{"name":"JET_ENUMCOLUMNVALUE","features":[147]},{"name":"JET_ERRCAT","features":[147]},{"name":"JET_ERRINFOBASIC_W","features":[147]},{"name":"JET_EventLoggingDisable","features":[147]},{"name":"JET_EventLoggingLevelHigh","features":[147]},{"name":"JET_EventLoggingLevelLow","features":[147]},{"name":"JET_EventLoggingLevelMax","features":[147]},{"name":"JET_EventLoggingLevelMedium","features":[147]},{"name":"JET_EventLoggingLevelMin","features":[147]},{"name":"JET_ExceptionFailFast","features":[147]},{"name":"JET_ExceptionMsgBox","features":[147]},{"name":"JET_ExceptionNone","features":[147]},{"name":"JET_INDEXCHECKING","features":[147]},{"name":"JET_INDEXCREATE2_A","features":[147]},{"name":"JET_INDEXCREATE2_W","features":[147]},{"name":"JET_INDEXCREATE3_A","features":[147]},{"name":"JET_INDEXCREATE3_W","features":[147]},{"name":"JET_INDEXCREATE_A","features":[147]},{"name":"JET_INDEXCREATE_W","features":[147]},{"name":"JET_INDEXID","features":[147]},{"name":"JET_INDEXID","features":[147]},{"name":"JET_INDEXLIST","features":[147,148]},{"name":"JET_INDEXRANGE","features":[147,148]},{"name":"JET_INDEX_COLUMN","features":[147]},{"name":"JET_INDEX_RANGE","features":[147]},{"name":"JET_INSTANCE","features":[147]},{"name":"JET_INSTANCE_INFO_A","features":[147,148]},{"name":"JET_INSTANCE_INFO_W","features":[147,148]},{"name":"JET_IOPriorityLow","features":[147]},{"name":"JET_IOPriorityNormal","features":[147]},{"name":"JET_IndexCheckingDeferToOpenTable","features":[147]},{"name":"JET_IndexCheckingMax","features":[147]},{"name":"JET_IndexCheckingOff","features":[147]},{"name":"JET_IndexCheckingOn","features":[147]},{"name":"JET_LGPOS","features":[147]},{"name":"JET_LOGINFO_A","features":[147]},{"name":"JET_LOGINFO_W","features":[147]},{"name":"JET_LOGTIME","features":[147]},{"name":"JET_LS","features":[147]},{"name":"JET_MAX_COMPUTERNAME_LENGTH","features":[147]},{"name":"JET_MoveFirst","features":[147]},{"name":"JET_MoveLast","features":[147]},{"name":"JET_MovePrevious","features":[147]},{"name":"JET_OBJECTINFO","features":[147]},{"name":"JET_OBJECTINFO","features":[147]},{"name":"JET_OBJECTLIST","features":[147,148]},{"name":"JET_OPENTEMPORARYTABLE","features":[147,148]},{"name":"JET_OPENTEMPORARYTABLE2","features":[147,148]},{"name":"JET_OPERATIONCONTEXT","features":[147]},{"name":"JET_OSSNAPID","features":[147]},{"name":"JET_OnlineDefragAll","features":[147]},{"name":"JET_OnlineDefragAllOBSOLETE","features":[147]},{"name":"JET_OnlineDefragDatabases","features":[147]},{"name":"JET_OnlineDefragDisable","features":[147]},{"name":"JET_OnlineDefragSpaceTrees","features":[147]},{"name":"JET_PFNDURABLECOMMITCALLBACK","features":[147]},{"name":"JET_PFNREALLOC","features":[147]},{"name":"JET_PFNSTATUS","features":[147]},{"name":"JET_RECORDLIST","features":[147,148]},{"name":"JET_RECPOS","features":[147]},{"name":"JET_RECPOS2","features":[147]},{"name":"JET_RECPOS2","features":[147]},{"name":"JET_RECSIZE","features":[147]},{"name":"JET_RECSIZE","features":[147]},{"name":"JET_RECSIZE2","features":[147]},{"name":"JET_RECSIZE2","features":[147]},{"name":"JET_RELOP","features":[147]},{"name":"JET_RETINFO","features":[147]},{"name":"JET_RETRIEVECOLUMN","features":[147]},{"name":"JET_RSTINFO_A","features":[147]},{"name":"JET_RSTINFO_W","features":[147]},{"name":"JET_RSTMAP_A","features":[147]},{"name":"JET_RSTMAP_W","features":[147]},{"name":"JET_SESID","features":[147]},{"name":"JET_SETCOLUMN","features":[147]},{"name":"JET_SETINFO","features":[147]},{"name":"JET_SETSYSPARAM_A","features":[147,148]},{"name":"JET_SETSYSPARAM_W","features":[147,148]},{"name":"JET_SIGNATURE","features":[147]},{"name":"JET_SNPROG","features":[147]},{"name":"JET_SPACEHINTS","features":[147]},{"name":"JET_TABLECREATE2_A","features":[147,148]},{"name":"JET_TABLECREATE2_W","features":[147,148]},{"name":"JET_TABLECREATE3_A","features":[147,148]},{"name":"JET_TABLECREATE3_W","features":[147,148]},{"name":"JET_TABLECREATE4_A","features":[147,148]},{"name":"JET_TABLECREATE4_W","features":[147,148]},{"name":"JET_TABLECREATE_A","features":[147,148]},{"name":"JET_TABLECREATE_W","features":[147,148]},{"name":"JET_THREADSTATS","features":[147]},{"name":"JET_THREADSTATS2","features":[147]},{"name":"JET_THREADSTATS2","features":[147]},{"name":"JET_TUPLELIMITS","features":[147]},{"name":"JET_UNICODEINDEX","features":[147]},{"name":"JET_UNICODEINDEX2","features":[147]},{"name":"JET_USERDEFINEDDEFAULT_A","features":[147]},{"name":"JET_USERDEFINEDDEFAULT_W","features":[147]},{"name":"JET_VERSION","features":[147]},{"name":"JET_bitAbortSnapshot","features":[147]},{"name":"JET_bitAllDatabasesSnapshot","features":[147]},{"name":"JET_bitBackupAtomic","features":[147]},{"name":"JET_bitBackupEndAbort","features":[147]},{"name":"JET_bitBackupEndNormal","features":[147]},{"name":"JET_bitBackupIncremental","features":[147]},{"name":"JET_bitBackupSnapshot","features":[147]},{"name":"JET_bitBackupTruncateDone","features":[147]},{"name":"JET_bitBookmarkPermitVirtualCurrency","features":[147]},{"name":"JET_bitCheckUniqueness","features":[147]},{"name":"JET_bitColumnAutoincrement","features":[147]},{"name":"JET_bitColumnCompressed","features":[147]},{"name":"JET_bitColumnDeleteOnZero","features":[147]},{"name":"JET_bitColumnEscrowUpdate","features":[147]},{"name":"JET_bitColumnFinalize","features":[147]},{"name":"JET_bitColumnFixed","features":[147]},{"name":"JET_bitColumnMaybeNull","features":[147]},{"name":"JET_bitColumnMultiValued","features":[147]},{"name":"JET_bitColumnNotNULL","features":[147]},{"name":"JET_bitColumnTTDescending","features":[147]},{"name":"JET_bitColumnTTKey","features":[147]},{"name":"JET_bitColumnTagged","features":[147]},{"name":"JET_bitColumnUnversioned","features":[147]},{"name":"JET_bitColumnUpdatable","features":[147]},{"name":"JET_bitColumnUserDefinedDefault","features":[147]},{"name":"JET_bitColumnVersion","features":[147]},{"name":"JET_bitCommitLazyFlush","features":[147]},{"name":"JET_bitCompactRepair","features":[147]},{"name":"JET_bitCompactStats","features":[147]},{"name":"JET_bitConfigStoreReadControlDefault","features":[147]},{"name":"JET_bitConfigStoreReadControlDisableAll","features":[147]},{"name":"JET_bitConfigStoreReadControlInhibitRead","features":[147]},{"name":"JET_bitContinueAfterThaw","features":[147]},{"name":"JET_bitCopySnapshot","features":[147]},{"name":"JET_bitCreateHintAppendSequential","features":[147]},{"name":"JET_bitCreateHintHotpointSequential","features":[147]},{"name":"JET_bitDbDeleteCorruptIndexes","features":[147]},{"name":"JET_bitDbDeleteUnicodeIndexes","features":[147]},{"name":"JET_bitDbEnableBackgroundMaintenance","features":[147]},{"name":"JET_bitDbExclusive","features":[147]},{"name":"JET_bitDbOverwriteExisting","features":[147]},{"name":"JET_bitDbPurgeCacheOnAttach","features":[147]},{"name":"JET_bitDbReadOnly","features":[147]},{"name":"JET_bitDbRecoveryOff","features":[147]},{"name":"JET_bitDbShadowingOff","features":[147]},{"name":"JET_bitDbUpgrade","features":[147]},{"name":"JET_bitDefragmentAvailSpaceTreesOnly","features":[147]},{"name":"JET_bitDefragmentBTree","features":[147]},{"name":"JET_bitDefragmentBatchStart","features":[147]},{"name":"JET_bitDefragmentBatchStop","features":[147]},{"name":"JET_bitDefragmentNoPartialMerges","features":[147]},{"name":"JET_bitDeleteColumnIgnoreTemplateColumns","features":[147]},{"name":"JET_bitDeleteHintTableSequential","features":[147]},{"name":"JET_bitDumpCacheIncludeCachedPages","features":[147]},{"name":"JET_bitDumpCacheIncludeCorruptedPages","features":[147]},{"name":"JET_bitDumpCacheIncludeDirtyPages","features":[147]},{"name":"JET_bitDumpCacheMaximum","features":[147]},{"name":"JET_bitDumpCacheMinimum","features":[147]},{"name":"JET_bitDumpCacheNoDecommit","features":[147]},{"name":"JET_bitDumpMaximum","features":[147]},{"name":"JET_bitDumpMinimum","features":[147]},{"name":"JET_bitDurableCommitCallbackLogUnavailable","features":[147]},{"name":"JET_bitESE98FileNames","features":[147]},{"name":"JET_bitEightDotThreeSoftCompat","features":[147]},{"name":"JET_bitEnumerateCompressOutput","features":[147]},{"name":"JET_bitEnumerateCopy","features":[147]},{"name":"JET_bitEnumerateIgnoreDefault","features":[147]},{"name":"JET_bitEnumerateIgnoreUserDefinedDefault","features":[147]},{"name":"JET_bitEnumerateInRecordOnly","features":[147]},{"name":"JET_bitEnumeratePresenceOnly","features":[147]},{"name":"JET_bitEnumerateTaggedOnly","features":[147]},{"name":"JET_bitEscrowNoRollback","features":[147]},{"name":"JET_bitExplicitPrepare","features":[147]},{"name":"JET_bitForceDetach","features":[147]},{"name":"JET_bitForceNewLog","features":[147]},{"name":"JET_bitFullColumnEndLimit","features":[147]},{"name":"JET_bitFullColumnStartLimit","features":[147]},{"name":"JET_bitHungIOEvent","features":[147]},{"name":"JET_bitIdleCompact","features":[147]},{"name":"JET_bitIdleFlushBuffers","features":[147]},{"name":"JET_bitIdleStatus","features":[147]},{"name":"JET_bitIncrementalSnapshot","features":[147]},{"name":"JET_bitIndexColumnMustBeNonNull","features":[147]},{"name":"JET_bitIndexColumnMustBeNull","features":[147]},{"name":"JET_bitIndexCrossProduct","features":[147]},{"name":"JET_bitIndexDisallowNull","features":[147]},{"name":"JET_bitIndexDisallowTruncation","features":[147]},{"name":"JET_bitIndexDotNetGuid","features":[147]},{"name":"JET_bitIndexEmpty","features":[147]},{"name":"JET_bitIndexIgnoreAnyNull","features":[147]},{"name":"JET_bitIndexIgnoreFirstNull","features":[147]},{"name":"JET_bitIndexIgnoreNull","features":[147]},{"name":"JET_bitIndexImmutableStructure","features":[147]},{"name":"JET_bitIndexKeyMost","features":[147]},{"name":"JET_bitIndexLazyFlush","features":[147]},{"name":"JET_bitIndexNestedTable","features":[147]},{"name":"JET_bitIndexPrimary","features":[147]},{"name":"JET_bitIndexSortNullsHigh","features":[147]},{"name":"JET_bitIndexTupleLimits","features":[147]},{"name":"JET_bitIndexTuples","features":[147]},{"name":"JET_bitIndexUnicode","features":[147]},{"name":"JET_bitIndexUnique","features":[147]},{"name":"JET_bitIndexUnversioned","features":[147]},{"name":"JET_bitKeepDbAttachedAtEndOfRecovery","features":[147]},{"name":"JET_bitKeyAscending","features":[147]},{"name":"JET_bitKeyDataZeroLength","features":[147]},{"name":"JET_bitKeyDescending","features":[147]},{"name":"JET_bitLSCursor","features":[147]},{"name":"JET_bitLSReset","features":[147]},{"name":"JET_bitLSTable","features":[147]},{"name":"JET_bitLogStreamMustExist","features":[147]},{"name":"JET_bitMoveFirst","features":[147]},{"name":"JET_bitMoveKeyNE","features":[147]},{"name":"JET_bitNewKey","features":[147]},{"name":"JET_bitNoMove","features":[147]},{"name":"JET_bitNormalizedKey","features":[147]},{"name":"JET_bitObjectSystem","features":[147]},{"name":"JET_bitObjectTableDerived","features":[147]},{"name":"JET_bitObjectTableFixedDDL","features":[147]},{"name":"JET_bitObjectTableNoFixedVarColumnsInDerivedTables","features":[147]},{"name":"JET_bitObjectTableTemplate","features":[147]},{"name":"JET_bitPartialColumnEndLimit","features":[147]},{"name":"JET_bitPartialColumnStartLimit","features":[147]},{"name":"JET_bitPrereadBackward","features":[147]},{"name":"JET_bitPrereadFirstPage","features":[147]},{"name":"JET_bitPrereadForward","features":[147]},{"name":"JET_bitPrereadNormalizedKey","features":[147]},{"name":"JET_bitRangeInclusive","features":[147]},{"name":"JET_bitRangeInstantDuration","features":[147]},{"name":"JET_bitRangeRemove","features":[147]},{"name":"JET_bitRangeUpperLimit","features":[147]},{"name":"JET_bitReadLock","features":[147]},{"name":"JET_bitRecordInIndex","features":[147]},{"name":"JET_bitRecordNotInIndex","features":[147]},{"name":"JET_bitRecordSizeInCopyBuffer","features":[147]},{"name":"JET_bitRecordSizeLocal","features":[147]},{"name":"JET_bitRecordSizeRunningTotal","features":[147]},{"name":"JET_bitRecoveryWithoutUndo","features":[147]},{"name":"JET_bitReplayIgnoreLostLogs","features":[147]},{"name":"JET_bitReplayIgnoreMissingDB","features":[147]},{"name":"JET_bitReplayMissingMapEntryDB","features":[147]},{"name":"JET_bitResizeDatabaseOnlyGrow","features":[147]},{"name":"JET_bitResizeDatabaseOnlyShrink","features":[147]},{"name":"JET_bitRetrieveCopy","features":[147]},{"name":"JET_bitRetrieveFromIndex","features":[147]},{"name":"JET_bitRetrieveFromPrimaryBookmark","features":[147]},{"name":"JET_bitRetrieveHintReserve1","features":[147]},{"name":"JET_bitRetrieveHintReserve2","features":[147]},{"name":"JET_bitRetrieveHintReserve3","features":[147]},{"name":"JET_bitRetrieveHintTableScanBackward","features":[147]},{"name":"JET_bitRetrieveHintTableScanForward","features":[147]},{"name":"JET_bitRetrieveIgnoreDefault","features":[147]},{"name":"JET_bitRetrieveNull","features":[147]},{"name":"JET_bitRetrieveTag","features":[147]},{"name":"JET_bitRetrieveTuple","features":[147]},{"name":"JET_bitRollbackAll","features":[147]},{"name":"JET_bitSeekEQ","features":[147]},{"name":"JET_bitSeekGE","features":[147]},{"name":"JET_bitSeekGT","features":[147]},{"name":"JET_bitSeekLE","features":[147]},{"name":"JET_bitSeekLT","features":[147]},{"name":"JET_bitSetAppendLV","features":[147]},{"name":"JET_bitSetCompressed","features":[147]},{"name":"JET_bitSetContiguousLV","features":[147]},{"name":"JET_bitSetIndexRange","features":[147]},{"name":"JET_bitSetIntrinsicLV","features":[147]},{"name":"JET_bitSetOverwriteLV","features":[147]},{"name":"JET_bitSetRevertToDefaultValue","features":[147]},{"name":"JET_bitSetSeparateLV","features":[147]},{"name":"JET_bitSetSizeLV","features":[147]},{"name":"JET_bitSetUncompressed","features":[147]},{"name":"JET_bitSetUniqueMultiValues","features":[147]},{"name":"JET_bitSetUniqueNormalizedMultiValues","features":[147]},{"name":"JET_bitSetZeroLength","features":[147]},{"name":"JET_bitShrinkDatabaseOff","features":[147]},{"name":"JET_bitShrinkDatabaseOn","features":[147]},{"name":"JET_bitShrinkDatabaseRealtime","features":[147]},{"name":"JET_bitShrinkDatabaseTrim","features":[147]},{"name":"JET_bitSpaceHintsUtilizeParentSpace","features":[147]},{"name":"JET_bitStopServiceAll","features":[147]},{"name":"JET_bitStopServiceBackgroundUserTasks","features":[147]},{"name":"JET_bitStopServiceQuiesceCaches","features":[147]},{"name":"JET_bitStopServiceResume","features":[147]},{"name":"JET_bitStrLimit","features":[147]},{"name":"JET_bitSubStrLimit","features":[147]},{"name":"JET_bitTTDotNetGuid","features":[147]},{"name":"JET_bitTTErrorOnDuplicateInsertion","features":[147]},{"name":"JET_bitTTForceMaterialization","features":[147]},{"name":"JET_bitTTForwardOnly","features":[147]},{"name":"JET_bitTTIndexed","features":[147]},{"name":"JET_bitTTIntrinsicLVsOnly","features":[147]},{"name":"JET_bitTTScrollable","features":[147]},{"name":"JET_bitTTSortNullsHigh","features":[147]},{"name":"JET_bitTTUnique","features":[147]},{"name":"JET_bitTTUpdatable","features":[147]},{"name":"JET_bitTableClass1","features":[147]},{"name":"JET_bitTableClass10","features":[147]},{"name":"JET_bitTableClass11","features":[147]},{"name":"JET_bitTableClass12","features":[147]},{"name":"JET_bitTableClass13","features":[147]},{"name":"JET_bitTableClass14","features":[147]},{"name":"JET_bitTableClass15","features":[147]},{"name":"JET_bitTableClass2","features":[147]},{"name":"JET_bitTableClass3","features":[147]},{"name":"JET_bitTableClass4","features":[147]},{"name":"JET_bitTableClass5","features":[147]},{"name":"JET_bitTableClass6","features":[147]},{"name":"JET_bitTableClass7","features":[147]},{"name":"JET_bitTableClass8","features":[147]},{"name":"JET_bitTableClass9","features":[147]},{"name":"JET_bitTableClassMask","features":[147]},{"name":"JET_bitTableClassNone","features":[147]},{"name":"JET_bitTableCreateFixedDDL","features":[147]},{"name":"JET_bitTableCreateImmutableStructure","features":[147]},{"name":"JET_bitTableCreateNoFixedVarColumnsInDerivedTables","features":[147]},{"name":"JET_bitTableCreateTemplateTable","features":[147]},{"name":"JET_bitTableDenyRead","features":[147]},{"name":"JET_bitTableDenyWrite","features":[147]},{"name":"JET_bitTableInfoBookmark","features":[147]},{"name":"JET_bitTableInfoRollback","features":[147]},{"name":"JET_bitTableInfoUpdatable","features":[147]},{"name":"JET_bitTableNoCache","features":[147]},{"name":"JET_bitTableOpportuneRead","features":[147]},{"name":"JET_bitTablePermitDDL","features":[147]},{"name":"JET_bitTablePreread","features":[147]},{"name":"JET_bitTableReadOnly","features":[147]},{"name":"JET_bitTableSequential","features":[147]},{"name":"JET_bitTableUpdatable","features":[147]},{"name":"JET_bitTermAbrupt","features":[147]},{"name":"JET_bitTermComplete","features":[147]},{"name":"JET_bitTermDirty","features":[147]},{"name":"JET_bitTermStopBackup","features":[147]},{"name":"JET_bitTransactionReadOnly","features":[147]},{"name":"JET_bitTruncateLogsAfterRecovery","features":[147]},{"name":"JET_bitUpdateCheckESE97Compatibility","features":[147]},{"name":"JET_bitWaitAllLevel0Commit","features":[147]},{"name":"JET_bitWaitLastLevel0Commit","features":[147]},{"name":"JET_bitWriteLock","features":[147]},{"name":"JET_bitZeroLength","features":[147]},{"name":"JET_cbBookmarkMost","features":[147]},{"name":"JET_cbColumnLVPageOverhead","features":[147]},{"name":"JET_cbColumnMost","features":[147]},{"name":"JET_cbFullNameMost","features":[147]},{"name":"JET_cbKeyMost","features":[147]},{"name":"JET_cbKeyMost2KBytePage","features":[147]},{"name":"JET_cbKeyMost4KBytePage","features":[147]},{"name":"JET_cbKeyMost8KBytePage","features":[147]},{"name":"JET_cbKeyMostMin","features":[147]},{"name":"JET_cbLVColumnMost","features":[147]},{"name":"JET_cbLVDefaultValueMost","features":[147]},{"name":"JET_cbLimitKeyMost","features":[147]},{"name":"JET_cbNameMost","features":[147]},{"name":"JET_cbPrimaryKeyMost","features":[147]},{"name":"JET_cbSecondaryKeyMost","features":[147]},{"name":"JET_cbtypAfterDelete","features":[147]},{"name":"JET_cbtypAfterInsert","features":[147]},{"name":"JET_cbtypAfterReplace","features":[147]},{"name":"JET_cbtypBeforeDelete","features":[147]},{"name":"JET_cbtypBeforeInsert","features":[147]},{"name":"JET_cbtypBeforeReplace","features":[147]},{"name":"JET_cbtypFinalize","features":[147]},{"name":"JET_cbtypFreeCursorLS","features":[147]},{"name":"JET_cbtypFreeTableLS","features":[147]},{"name":"JET_cbtypNull","features":[147]},{"name":"JET_cbtypOnlineDefragCompleted","features":[147]},{"name":"JET_cbtypUserDefinedDefaultValue","features":[147]},{"name":"JET_ccolFixedMost","features":[147]},{"name":"JET_ccolKeyMost","features":[147]},{"name":"JET_ccolMost","features":[147]},{"name":"JET_ccolTaggedMost","features":[147]},{"name":"JET_ccolVarMost","features":[147]},{"name":"JET_coltypBinary","features":[147]},{"name":"JET_coltypBit","features":[147]},{"name":"JET_coltypCurrency","features":[147]},{"name":"JET_coltypDateTime","features":[147]},{"name":"JET_coltypGUID","features":[147]},{"name":"JET_coltypIEEEDouble","features":[147]},{"name":"JET_coltypIEEESingle","features":[147]},{"name":"JET_coltypLong","features":[147]},{"name":"JET_coltypLongBinary","features":[147]},{"name":"JET_coltypLongLong","features":[147]},{"name":"JET_coltypLongText","features":[147]},{"name":"JET_coltypMax","features":[147]},{"name":"JET_coltypNil","features":[147]},{"name":"JET_coltypSLV","features":[147]},{"name":"JET_coltypShort","features":[147]},{"name":"JET_coltypText","features":[147]},{"name":"JET_coltypUnsignedByte","features":[147]},{"name":"JET_coltypUnsignedLong","features":[147]},{"name":"JET_coltypUnsignedLongLong","features":[147]},{"name":"JET_coltypUnsignedShort","features":[147]},{"name":"JET_configDefault","features":[147]},{"name":"JET_configDynamicMediumMemory","features":[147]},{"name":"JET_configHighConcurrencyScaling","features":[147]},{"name":"JET_configLowDiskFootprint","features":[147]},{"name":"JET_configLowMemory","features":[147]},{"name":"JET_configLowPower","features":[147]},{"name":"JET_configMediumDiskFootprint","features":[147]},{"name":"JET_configRemoveQuotas","features":[147]},{"name":"JET_configRunSilent","features":[147]},{"name":"JET_configSSDProfileIO","features":[147]},{"name":"JET_configUnthrottledMemory","features":[147]},{"name":"JET_dbstateBeingConverted","features":[147]},{"name":"JET_dbstateCleanShutdown","features":[147]},{"name":"JET_dbstateDirtyShutdown","features":[147]},{"name":"JET_dbstateForceDetach","features":[147]},{"name":"JET_dbstateJustCreated","features":[147]},{"name":"JET_errAccessDenied","features":[147]},{"name":"JET_errAfterInitialization","features":[147]},{"name":"JET_errAlreadyInitialized","features":[147]},{"name":"JET_errAlreadyPrepared","features":[147]},{"name":"JET_errAttachedDatabaseMismatch","features":[147]},{"name":"JET_errBackupAbortByServer","features":[147]},{"name":"JET_errBackupDirectoryNotEmpty","features":[147]},{"name":"JET_errBackupInProgress","features":[147]},{"name":"JET_errBackupNotAllowedYet","features":[147]},{"name":"JET_errBadBackupDatabaseSize","features":[147]},{"name":"JET_errBadBookmark","features":[147]},{"name":"JET_errBadCheckpointSignature","features":[147]},{"name":"JET_errBadColumnId","features":[147]},{"name":"JET_errBadDbSignature","features":[147]},{"name":"JET_errBadEmptyPage","features":[147]},{"name":"JET_errBadItagSequence","features":[147]},{"name":"JET_errBadLineCount","features":[147]},{"name":"JET_errBadLogSignature","features":[147]},{"name":"JET_errBadLogVersion","features":[147]},{"name":"JET_errBadPageLink","features":[147]},{"name":"JET_errBadParentPageLink","features":[147]},{"name":"JET_errBadPatchPage","features":[147]},{"name":"JET_errBadRestoreTargetInstance","features":[147]},{"name":"JET_errBufferTooSmall","features":[147]},{"name":"JET_errCallbackFailed","features":[147]},{"name":"JET_errCallbackNotResolved","features":[147]},{"name":"JET_errCannotAddFixedVarColumnToDerivedTable","features":[147]},{"name":"JET_errCannotBeTagged","features":[147]},{"name":"JET_errCannotDeleteSystemTable","features":[147]},{"name":"JET_errCannotDeleteTempTable","features":[147]},{"name":"JET_errCannotDeleteTemplateTable","features":[147]},{"name":"JET_errCannotDisableVersioning","features":[147]},{"name":"JET_errCannotIndex","features":[147]},{"name":"JET_errCannotIndexOnEncryptedColumn","features":[147]},{"name":"JET_errCannotLogDuringRecoveryRedo","features":[147]},{"name":"JET_errCannotMaterializeForwardOnlySort","features":[147]},{"name":"JET_errCannotNestDDL","features":[147]},{"name":"JET_errCannotSeparateIntrinsicLV","features":[147]},{"name":"JET_errCatalogCorrupted","features":[147]},{"name":"JET_errCheckpointCorrupt","features":[147]},{"name":"JET_errCheckpointDepthTooDeep","features":[147]},{"name":"JET_errCheckpointFileNotFound","features":[147]},{"name":"JET_errClientRequestToStopJetService","features":[147]},{"name":"JET_errColumnCannotBeCompressed","features":[147]},{"name":"JET_errColumnCannotBeEncrypted","features":[147]},{"name":"JET_errColumnDoesNotFit","features":[147]},{"name":"JET_errColumnDuplicate","features":[147]},{"name":"JET_errColumnInRelationship","features":[147]},{"name":"JET_errColumnInUse","features":[147]},{"name":"JET_errColumnIndexed","features":[147]},{"name":"JET_errColumnLong","features":[147]},{"name":"JET_errColumnNoChunk","features":[147]},{"name":"JET_errColumnNoEncryptionKey","features":[147]},{"name":"JET_errColumnNotFound","features":[147]},{"name":"JET_errColumnNotUpdatable","features":[147]},{"name":"JET_errColumnRedundant","features":[147]},{"name":"JET_errColumnTooBig","features":[147]},{"name":"JET_errCommittedLogFileCorrupt","features":[147]},{"name":"JET_errCommittedLogFilesMissing","features":[147]},{"name":"JET_errConsistentTimeMismatch","features":[147]},{"name":"JET_errContainerNotEmpty","features":[147]},{"name":"JET_errDDLNotInheritable","features":[147]},{"name":"JET_errDataHasChanged","features":[147]},{"name":"JET_errDatabase200Format","features":[147]},{"name":"JET_errDatabase400Format","features":[147]},{"name":"JET_errDatabase500Format","features":[147]},{"name":"JET_errDatabaseAlreadyRunningMaintenance","features":[147]},{"name":"JET_errDatabaseAlreadyUpgraded","features":[147]},{"name":"JET_errDatabaseAttachedForRecovery","features":[147]},{"name":"JET_errDatabaseBufferDependenciesCorrupted","features":[147]},{"name":"JET_errDatabaseCorrupted","features":[147]},{"name":"JET_errDatabaseCorruptedNoRepair","features":[147]},{"name":"JET_errDatabaseDirtyShutdown","features":[147]},{"name":"JET_errDatabaseDuplicate","features":[147]},{"name":"JET_errDatabaseFileReadOnly","features":[147]},{"name":"JET_errDatabaseIdInUse","features":[147]},{"name":"JET_errDatabaseInUse","features":[147]},{"name":"JET_errDatabaseIncompleteUpgrade","features":[147]},{"name":"JET_errDatabaseInconsistent","features":[147]},{"name":"JET_errDatabaseInvalidName","features":[147]},{"name":"JET_errDatabaseInvalidPages","features":[147]},{"name":"JET_errDatabaseInvalidPath","features":[147]},{"name":"JET_errDatabaseLeakInSpace","features":[147]},{"name":"JET_errDatabaseLocked","features":[147]},{"name":"JET_errDatabaseLogSetMismatch","features":[147]},{"name":"JET_errDatabaseNotFound","features":[147]},{"name":"JET_errDatabaseNotReady","features":[147]},{"name":"JET_errDatabasePatchFileMismatch","features":[147]},{"name":"JET_errDatabaseSharingViolation","features":[147]},{"name":"JET_errDatabaseSignInUse","features":[147]},{"name":"JET_errDatabaseStreamingFileMismatch","features":[147]},{"name":"JET_errDatabaseUnavailable","features":[147]},{"name":"JET_errDatabasesNotFromSameSnapshot","features":[147]},{"name":"JET_errDbTimeBeyondMaxRequired","features":[147]},{"name":"JET_errDbTimeCorrupted","features":[147]},{"name":"JET_errDbTimeTooNew","features":[147]},{"name":"JET_errDbTimeTooOld","features":[147]},{"name":"JET_errDecompressionFailed","features":[147]},{"name":"JET_errDecryptionFailed","features":[147]},{"name":"JET_errDefaultValueTooBig","features":[147]},{"name":"JET_errDeleteBackupFileFail","features":[147]},{"name":"JET_errDensityInvalid","features":[147]},{"name":"JET_errDerivedColumnCorruption","features":[147]},{"name":"JET_errDirtyShutdown","features":[147]},{"name":"JET_errDisabledFunctionality","features":[147]},{"name":"JET_errDiskFull","features":[147]},{"name":"JET_errDiskIO","features":[147]},{"name":"JET_errDiskReadVerificationFailure","features":[147]},{"name":"JET_errEncryptionBadItag","features":[147]},{"name":"JET_errEndingRestoreLogTooLow","features":[147]},{"name":"JET_errEngineFormatVersionNoLongerSupportedTooLow","features":[147]},{"name":"JET_errEngineFormatVersionNotYetImplementedTooHigh","features":[147]},{"name":"JET_errEngineFormatVersionParamTooLowForRequestedFeature","features":[147]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForDatabaseVersion","features":[147]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForLogVersion","features":[147]},{"name":"JET_errEntryPointNotFound","features":[147]},{"name":"JET_errExclusiveTableLockRequired","features":[147]},{"name":"JET_errExistingLogFileHasBadSignature","features":[147]},{"name":"JET_errExistingLogFileIsNotContiguous","features":[147]},{"name":"JET_errFeatureNotAvailable","features":[147]},{"name":"JET_errFileAccessDenied","features":[147]},{"name":"JET_errFileAlreadyExists","features":[147]},{"name":"JET_errFileClose","features":[147]},{"name":"JET_errFileCompressed","features":[147]},{"name":"JET_errFileIOAbort","features":[147]},{"name":"JET_errFileIOBeyondEOF","features":[147]},{"name":"JET_errFileIOFail","features":[147]},{"name":"JET_errFileIORetry","features":[147]},{"name":"JET_errFileIOSparse","features":[147]},{"name":"JET_errFileInvalidType","features":[147]},{"name":"JET_errFileNotFound","features":[147]},{"name":"JET_errFileSystemCorruption","features":[147]},{"name":"JET_errFilteredMoveNotSupported","features":[147]},{"name":"JET_errFixedDDL","features":[147]},{"name":"JET_errFixedInheritedDDL","features":[147]},{"name":"JET_errFlushMapDatabaseMismatch","features":[147]},{"name":"JET_errFlushMapUnrecoverable","features":[147]},{"name":"JET_errFlushMapVersionUnsupported","features":[147]},{"name":"JET_errForceDetachNotAllowed","features":[147]},{"name":"JET_errGivenLogFileHasBadSignature","features":[147]},{"name":"JET_errGivenLogFileIsNotContiguous","features":[147]},{"name":"JET_errIllegalOperation","features":[147]},{"name":"JET_errInTransaction","features":[147]},{"name":"JET_errIndexBuildCorrupted","features":[147]},{"name":"JET_errIndexCantBuild","features":[147]},{"name":"JET_errIndexDuplicate","features":[147]},{"name":"JET_errIndexHasPrimary","features":[147]},{"name":"JET_errIndexInUse","features":[147]},{"name":"JET_errIndexInvalidDef","features":[147]},{"name":"JET_errIndexMustStay","features":[147]},{"name":"JET_errIndexNotFound","features":[147]},{"name":"JET_errIndexTuplesCannotRetrieveFromIndex","features":[147]},{"name":"JET_errIndexTuplesInvalidLimits","features":[147]},{"name":"JET_errIndexTuplesKeyTooSmall","features":[147]},{"name":"JET_errIndexTuplesNonUniqueOnly","features":[147]},{"name":"JET_errIndexTuplesOneColumnOnly","features":[147]},{"name":"JET_errIndexTuplesSecondaryIndexOnly","features":[147]},{"name":"JET_errIndexTuplesTextBinaryColumnsOnly","features":[147]},{"name":"JET_errIndexTuplesTextColumnsOnly","features":[147]},{"name":"JET_errIndexTuplesTooManyColumns","features":[147]},{"name":"JET_errIndexTuplesVarSegMacNotAllowed","features":[147]},{"name":"JET_errInitInProgress","features":[147]},{"name":"JET_errInstanceNameInUse","features":[147]},{"name":"JET_errInstanceUnavailable","features":[147]},{"name":"JET_errInstanceUnavailableDueToFatalLogDiskFull","features":[147]},{"name":"JET_errInternalError","features":[147]},{"name":"JET_errInvalidBackup","features":[147]},{"name":"JET_errInvalidBackupSequence","features":[147]},{"name":"JET_errInvalidBookmark","features":[147]},{"name":"JET_errInvalidBufferSize","features":[147]},{"name":"JET_errInvalidCodePage","features":[147]},{"name":"JET_errInvalidColumnType","features":[147]},{"name":"JET_errInvalidCountry","features":[147]},{"name":"JET_errInvalidCreateDbVersion","features":[147]},{"name":"JET_errInvalidCreateIndex","features":[147]},{"name":"JET_errInvalidDatabase","features":[147]},{"name":"JET_errInvalidDatabaseId","features":[147]},{"name":"JET_errInvalidDatabaseVersion","features":[147]},{"name":"JET_errInvalidDbparamId","features":[147]},{"name":"JET_errInvalidFilename","features":[147]},{"name":"JET_errInvalidGrbit","features":[147]},{"name":"JET_errInvalidIndexId","features":[147]},{"name":"JET_errInvalidInstance","features":[147]},{"name":"JET_errInvalidLCMapStringFlags","features":[147]},{"name":"JET_errInvalidLVChunkSize","features":[147]},{"name":"JET_errInvalidLanguageId","features":[147]},{"name":"JET_errInvalidLogDirectory","features":[147]},{"name":"JET_errInvalidLogSequence","features":[147]},{"name":"JET_errInvalidLoggedOperation","features":[147]},{"name":"JET_errInvalidName","features":[147]},{"name":"JET_errInvalidObject","features":[147]},{"name":"JET_errInvalidOnSort","features":[147]},{"name":"JET_errInvalidOperation","features":[147]},{"name":"JET_errInvalidParameter","features":[147]},{"name":"JET_errInvalidPath","features":[147]},{"name":"JET_errInvalidPlaceholderColumn","features":[147]},{"name":"JET_errInvalidPreread","features":[147]},{"name":"JET_errInvalidSesid","features":[147]},{"name":"JET_errInvalidSesparamId","features":[147]},{"name":"JET_errInvalidSettings","features":[147]},{"name":"JET_errInvalidSystemPath","features":[147]},{"name":"JET_errInvalidTableId","features":[147]},{"name":"JET_errKeyBoundary","features":[147]},{"name":"JET_errKeyDuplicate","features":[147]},{"name":"JET_errKeyIsMade","features":[147]},{"name":"JET_errKeyNotMade","features":[147]},{"name":"JET_errKeyTooBig","features":[147]},{"name":"JET_errKeyTruncated","features":[147]},{"name":"JET_errLSAlreadySet","features":[147]},{"name":"JET_errLSCallbackNotSpecified","features":[147]},{"name":"JET_errLSNotSet","features":[147]},{"name":"JET_errLVCorrupted","features":[147]},{"name":"JET_errLanguageNotSupported","features":[147]},{"name":"JET_errLinkNotSupported","features":[147]},{"name":"JET_errLogBufferTooSmall","features":[147]},{"name":"JET_errLogCorruptDuringHardRecovery","features":[147]},{"name":"JET_errLogCorruptDuringHardRestore","features":[147]},{"name":"JET_errLogCorrupted","features":[147]},{"name":"JET_errLogDisabledDueToRecoveryFailure","features":[147]},{"name":"JET_errLogDiskFull","features":[147]},{"name":"JET_errLogFileCorrupt","features":[147]},{"name":"JET_errLogFileNotCopied","features":[147]},{"name":"JET_errLogFilePathInUse","features":[147]},{"name":"JET_errLogFileSizeMismatch","features":[147]},{"name":"JET_errLogFileSizeMismatchDatabasesConsistent","features":[147]},{"name":"JET_errLogGenerationMismatch","features":[147]},{"name":"JET_errLogReadVerifyFailure","features":[147]},{"name":"JET_errLogSectorSizeMismatch","features":[147]},{"name":"JET_errLogSectorSizeMismatchDatabasesConsistent","features":[147]},{"name":"JET_errLogSequenceChecksumMismatch","features":[147]},{"name":"JET_errLogSequenceEnd","features":[147]},{"name":"JET_errLogSequenceEndDatabasesConsistent","features":[147]},{"name":"JET_errLogTornWriteDuringHardRecovery","features":[147]},{"name":"JET_errLogTornWriteDuringHardRestore","features":[147]},{"name":"JET_errLogWriteFail","features":[147]},{"name":"JET_errLoggingDisabled","features":[147]},{"name":"JET_errMakeBackupDirectoryFail","features":[147]},{"name":"JET_errMissingCurrentLogFiles","features":[147]},{"name":"JET_errMissingFileToBackup","features":[147]},{"name":"JET_errMissingFullBackup","features":[147]},{"name":"JET_errMissingLogFile","features":[147]},{"name":"JET_errMissingPatchPage","features":[147]},{"name":"JET_errMissingPreviousLogFile","features":[147]},{"name":"JET_errMissingRestoreLogFiles","features":[147]},{"name":"JET_errMultiValuedColumnMustBeTagged","features":[147]},{"name":"JET_errMultiValuedDuplicate","features":[147]},{"name":"JET_errMultiValuedDuplicateAfterTruncation","features":[147]},{"name":"JET_errMultiValuedIndexViolation","features":[147]},{"name":"JET_errMustBeSeparateLongValue","features":[147]},{"name":"JET_errMustDisableLoggingForDbUpgrade","features":[147]},{"name":"JET_errMustRollback","features":[147]},{"name":"JET_errNTSystemCallFailed","features":[147]},{"name":"JET_errNoBackup","features":[147]},{"name":"JET_errNoBackupDirectory","features":[147]},{"name":"JET_errNoCurrentIndex","features":[147]},{"name":"JET_errNoCurrentRecord","features":[147]},{"name":"JET_errNodeCorrupted","features":[147]},{"name":"JET_errNotInTransaction","features":[147]},{"name":"JET_errNotInitialized","features":[147]},{"name":"JET_errNullInvalid","features":[147]},{"name":"JET_errNullKeyDisallowed","features":[147]},{"name":"JET_errOSSnapshotInvalidSequence","features":[147]},{"name":"JET_errOSSnapshotInvalidSnapId","features":[147]},{"name":"JET_errOSSnapshotNotAllowed","features":[147]},{"name":"JET_errOSSnapshotTimeOut","features":[147]},{"name":"JET_errObjectDuplicate","features":[147]},{"name":"JET_errObjectNotFound","features":[147]},{"name":"JET_errOneDatabasePerSession","features":[147]},{"name":"JET_errOutOfAutoincrementValues","features":[147]},{"name":"JET_errOutOfBuffers","features":[147]},{"name":"JET_errOutOfCursors","features":[147]},{"name":"JET_errOutOfDatabaseSpace","features":[147]},{"name":"JET_errOutOfDbtimeValues","features":[147]},{"name":"JET_errOutOfFileHandles","features":[147]},{"name":"JET_errOutOfLongValueIDs","features":[147]},{"name":"JET_errOutOfMemory","features":[147]},{"name":"JET_errOutOfObjectIDs","features":[147]},{"name":"JET_errOutOfSequentialIndexValues","features":[147]},{"name":"JET_errOutOfSessions","features":[147]},{"name":"JET_errOutOfThreads","features":[147]},{"name":"JET_errPageBoundary","features":[147]},{"name":"JET_errPageInitializedMismatch","features":[147]},{"name":"JET_errPageNotInitialized","features":[147]},{"name":"JET_errPageSizeMismatch","features":[147]},{"name":"JET_errPageTagCorrupted","features":[147]},{"name":"JET_errPartiallyAttachedDB","features":[147]},{"name":"JET_errPatchFileMissing","features":[147]},{"name":"JET_errPermissionDenied","features":[147]},{"name":"JET_errPreviousVersion","features":[147]},{"name":"JET_errPrimaryIndexCorrupted","features":[147]},{"name":"JET_errReadLostFlushVerifyFailure","features":[147]},{"name":"JET_errReadPgnoVerifyFailure","features":[147]},{"name":"JET_errReadVerifyFailure","features":[147]},{"name":"JET_errRecordDeleted","features":[147]},{"name":"JET_errRecordFormatConversionFailed","features":[147]},{"name":"JET_errRecordNoCopy","features":[147]},{"name":"JET_errRecordNotDeleted","features":[147]},{"name":"JET_errRecordNotFound","features":[147]},{"name":"JET_errRecordPrimaryChanged","features":[147]},{"name":"JET_errRecordTooBig","features":[147]},{"name":"JET_errRecordTooBigForBackwardCompatibility","features":[147]},{"name":"JET_errRecoveredWithErrors","features":[147]},{"name":"JET_errRecoveredWithoutUndo","features":[147]},{"name":"JET_errRecoveredWithoutUndoDatabasesConsistent","features":[147]},{"name":"JET_errRecoveryVerifyFailure","features":[147]},{"name":"JET_errRedoAbruptEnded","features":[147]},{"name":"JET_errRequiredLogFilesMissing","features":[147]},{"name":"JET_errRestoreInProgress","features":[147]},{"name":"JET_errRestoreOfNonBackupDatabase","features":[147]},{"name":"JET_errRfsFailure","features":[147]},{"name":"JET_errRfsNotArmed","features":[147]},{"name":"JET_errRollbackError","features":[147]},{"name":"JET_errRollbackRequired","features":[147]},{"name":"JET_errRunningInMultiInstanceMode","features":[147]},{"name":"JET_errRunningInOneInstanceMode","features":[147]},{"name":"JET_errSPAvailExtCacheOutOfMemory","features":[147]},{"name":"JET_errSPAvailExtCacheOutOfSync","features":[147]},{"name":"JET_errSPAvailExtCorrupted","features":[147]},{"name":"JET_errSPOwnExtCorrupted","features":[147]},{"name":"JET_errSecondaryIndexCorrupted","features":[147]},{"name":"JET_errSectorSizeNotSupported","features":[147]},{"name":"JET_errSeparatedLongValue","features":[147]},{"name":"JET_errSesidTableIdMismatch","features":[147]},{"name":"JET_errSessionContextAlreadySet","features":[147]},{"name":"JET_errSessionContextNotSetByThisThread","features":[147]},{"name":"JET_errSessionInUse","features":[147]},{"name":"JET_errSessionSharingViolation","features":[147]},{"name":"JET_errSessionWriteConflict","features":[147]},{"name":"JET_errSoftRecoveryOnBackupDatabase","features":[147]},{"name":"JET_errSoftRecoveryOnSnapshot","features":[147]},{"name":"JET_errSpaceHintsInvalid","features":[147]},{"name":"JET_errStartingRestoreLogTooHigh","features":[147]},{"name":"JET_errStreamingDataNotLogged","features":[147]},{"name":"JET_errSuccess","features":[147]},{"name":"JET_errSystemParameterConflict","features":[147]},{"name":"JET_errSystemParamsAlreadySet","features":[147]},{"name":"JET_errSystemPathInUse","features":[147]},{"name":"JET_errTableDuplicate","features":[147]},{"name":"JET_errTableInUse","features":[147]},{"name":"JET_errTableLocked","features":[147]},{"name":"JET_errTableNotEmpty","features":[147]},{"name":"JET_errTaggedNotNULL","features":[147]},{"name":"JET_errTaskDropped","features":[147]},{"name":"JET_errTempFileOpenError","features":[147]},{"name":"JET_errTempPathInUse","features":[147]},{"name":"JET_errTermInProgress","features":[147]},{"name":"JET_errTooManyActiveUsers","features":[147]},{"name":"JET_errTooManyAttachedDatabases","features":[147]},{"name":"JET_errTooManyColumns","features":[147]},{"name":"JET_errTooManyIO","features":[147]},{"name":"JET_errTooManyIndexes","features":[147]},{"name":"JET_errTooManyInstances","features":[147]},{"name":"JET_errTooManyKeys","features":[147]},{"name":"JET_errTooManyMempoolEntries","features":[147]},{"name":"JET_errTooManyOpenDatabases","features":[147]},{"name":"JET_errTooManyOpenIndexes","features":[147]},{"name":"JET_errTooManyOpenTables","features":[147]},{"name":"JET_errTooManyOpenTablesAndCleanupTimedOut","features":[147]},{"name":"JET_errTooManyRecords","features":[147]},{"name":"JET_errTooManySorts","features":[147]},{"name":"JET_errTooManySplits","features":[147]},{"name":"JET_errTransReadOnly","features":[147]},{"name":"JET_errTransTooDeep","features":[147]},{"name":"JET_errTransactionTooLong","features":[147]},{"name":"JET_errTransactionsNotReadyDuringRecovery","features":[147]},{"name":"JET_errUnicodeLanguageValidationFailure","features":[147]},{"name":"JET_errUnicodeNormalizationNotSupported","features":[147]},{"name":"JET_errUnicodeTranslationBufferTooSmall","features":[147]},{"name":"JET_errUnicodeTranslationFail","features":[147]},{"name":"JET_errUnloadableOSFunctionality","features":[147]},{"name":"JET_errUpdateMustVersion","features":[147]},{"name":"JET_errUpdateNotPrepared","features":[147]},{"name":"JET_errVersionStoreEntryTooBig","features":[147]},{"name":"JET_errVersionStoreOutOfMemory","features":[147]},{"name":"JET_errVersionStoreOutOfMemoryAndCleanupTimedOut","features":[147]},{"name":"JET_errWriteConflict","features":[147]},{"name":"JET_errWriteConflictPrimaryIndex","features":[147]},{"name":"JET_errcatApi","features":[147]},{"name":"JET_errcatCorruption","features":[147]},{"name":"JET_errcatData","features":[147]},{"name":"JET_errcatDisk","features":[147]},{"name":"JET_errcatError","features":[147]},{"name":"JET_errcatFatal","features":[147]},{"name":"JET_errcatFragmentation","features":[147]},{"name":"JET_errcatIO","features":[147]},{"name":"JET_errcatInconsistent","features":[147]},{"name":"JET_errcatMax","features":[147]},{"name":"JET_errcatMemory","features":[147]},{"name":"JET_errcatObsolete","features":[147]},{"name":"JET_errcatOperation","features":[147]},{"name":"JET_errcatQuota","features":[147]},{"name":"JET_errcatResource","features":[147]},{"name":"JET_errcatState","features":[147]},{"name":"JET_errcatUnknown","features":[147]},{"name":"JET_errcatUsage","features":[147]},{"name":"JET_filetypeCheckpoint","features":[147]},{"name":"JET_filetypeDatabase","features":[147]},{"name":"JET_filetypeFlushMap","features":[147]},{"name":"JET_filetypeLog","features":[147]},{"name":"JET_filetypeTempDatabase","features":[147]},{"name":"JET_filetypeUnknown","features":[147]},{"name":"JET_objtypNil","features":[147]},{"name":"JET_objtypTable","features":[147]},{"name":"JET_paramAccessDeniedRetryPeriod","features":[147]},{"name":"JET_paramAlternateDatabaseRecoveryPath","features":[147]},{"name":"JET_paramBaseName","features":[147]},{"name":"JET_paramBatchIOBufferMax","features":[147]},{"name":"JET_paramCachePriority","features":[147]},{"name":"JET_paramCacheSize","features":[147]},{"name":"JET_paramCacheSizeMax","features":[147]},{"name":"JET_paramCacheSizeMin","features":[147]},{"name":"JET_paramCachedClosedTables","features":[147]},{"name":"JET_paramCheckFormatWhenOpenFail","features":[147]},{"name":"JET_paramCheckpointDepthMax","features":[147]},{"name":"JET_paramCheckpointIOMax","features":[147]},{"name":"JET_paramCircularLog","features":[147]},{"name":"JET_paramCleanupMismatchedLogFiles","features":[147]},{"name":"JET_paramCommitDefault","features":[147]},{"name":"JET_paramConfigStoreSpec","features":[147]},{"name":"JET_paramConfiguration","features":[147]},{"name":"JET_paramCreatePathIfNotExist","features":[147]},{"name":"JET_paramDatabasePageSize","features":[147]},{"name":"JET_paramDbExtensionSize","features":[147]},{"name":"JET_paramDbScanIntervalMaxSec","features":[147]},{"name":"JET_paramDbScanIntervalMinSec","features":[147]},{"name":"JET_paramDbScanThrottle","features":[147]},{"name":"JET_paramDefragmentSequentialBTrees","features":[147]},{"name":"JET_paramDefragmentSequentialBTreesDensityCheckFrequency","features":[147]},{"name":"JET_paramDeleteOldLogs","features":[147]},{"name":"JET_paramDeleteOutOfRangeLogs","features":[147]},{"name":"JET_paramDisableCallbacks","features":[147]},{"name":"JET_paramDisablePerfmon","features":[147]},{"name":"JET_paramDurableCommitCallback","features":[147]},{"name":"JET_paramEnableAdvanced","features":[147]},{"name":"JET_paramEnableDBScanInRecovery","features":[147]},{"name":"JET_paramEnableDBScanSerialization","features":[147]},{"name":"JET_paramEnableFileCache","features":[147]},{"name":"JET_paramEnableIndexChecking","features":[147]},{"name":"JET_paramEnableIndexCleanup","features":[147]},{"name":"JET_paramEnableOnlineDefrag","features":[147]},{"name":"JET_paramEnablePersistedCallbacks","features":[147]},{"name":"JET_paramEnableRBS","features":[147]},{"name":"JET_paramEnableShrinkDatabase","features":[147]},{"name":"JET_paramEnableSqm","features":[147]},{"name":"JET_paramEnableTempTableVersioning","features":[147]},{"name":"JET_paramEnableViewCache","features":[147]},{"name":"JET_paramErrorToString","features":[147]},{"name":"JET_paramEventLogCache","features":[147]},{"name":"JET_paramEventLoggingLevel","features":[147]},{"name":"JET_paramEventSource","features":[147]},{"name":"JET_paramEventSourceKey","features":[147]},{"name":"JET_paramExceptionAction","features":[147]},{"name":"JET_paramGlobalMinVerPages","features":[147]},{"name":"JET_paramHungIOActions","features":[147]},{"name":"JET_paramHungIOThreshold","features":[147]},{"name":"JET_paramIOPriority","features":[147]},{"name":"JET_paramIOThrottlingTimeQuanta","features":[147]},{"name":"JET_paramIgnoreLogVersion","features":[147]},{"name":"JET_paramIndexTupleIncrement","features":[147]},{"name":"JET_paramIndexTupleStart","features":[147]},{"name":"JET_paramIndexTuplesLengthMax","features":[147]},{"name":"JET_paramIndexTuplesLengthMin","features":[147]},{"name":"JET_paramIndexTuplesToIndexMax","features":[147]},{"name":"JET_paramKeyMost","features":[147]},{"name":"JET_paramLRUKCorrInterval","features":[147]},{"name":"JET_paramLRUKHistoryMax","features":[147]},{"name":"JET_paramLRUKPolicy","features":[147]},{"name":"JET_paramLRUKTimeout","features":[147]},{"name":"JET_paramLRUKTrxCorrInterval","features":[147]},{"name":"JET_paramLVChunkSizeMost","features":[147]},{"name":"JET_paramLegacyFileNames","features":[147]},{"name":"JET_paramLogBuffers","features":[147]},{"name":"JET_paramLogCheckpointPeriod","features":[147]},{"name":"JET_paramLogFileCreateAsynch","features":[147]},{"name":"JET_paramLogFilePath","features":[147]},{"name":"JET_paramLogFileSize","features":[147]},{"name":"JET_paramLogWaitingUserMax","features":[147]},{"name":"JET_paramMaxCoalesceReadGapSize","features":[147]},{"name":"JET_paramMaxCoalesceReadSize","features":[147]},{"name":"JET_paramMaxCoalesceWriteGapSize","features":[147]},{"name":"JET_paramMaxCoalesceWriteSize","features":[147]},{"name":"JET_paramMaxColtyp","features":[147]},{"name":"JET_paramMaxCursors","features":[147]},{"name":"JET_paramMaxInstances","features":[147]},{"name":"JET_paramMaxOpenTables","features":[147]},{"name":"JET_paramMaxSessions","features":[147]},{"name":"JET_paramMaxTemporaryTables","features":[147]},{"name":"JET_paramMaxTransactionSize","features":[147]},{"name":"JET_paramMaxValueInvalid","features":[147]},{"name":"JET_paramMaxVerPages","features":[147]},{"name":"JET_paramMinDataForXpress","features":[147]},{"name":"JET_paramNoInformationEvent","features":[147]},{"name":"JET_paramOSSnapshotTimeout","features":[147]},{"name":"JET_paramOneDatabasePerSession","features":[147]},{"name":"JET_paramOutstandingIOMax","features":[147]},{"name":"JET_paramPageFragment","features":[147]},{"name":"JET_paramPageHintCacheSize","features":[147]},{"name":"JET_paramPageTempDBMin","features":[147]},{"name":"JET_paramPerfmonRefreshInterval","features":[147]},{"name":"JET_paramPreferredMaxOpenTables","features":[147]},{"name":"JET_paramPreferredVerPages","features":[147]},{"name":"JET_paramPrereadIOMax","features":[147]},{"name":"JET_paramProcessFriendlyName","features":[147]},{"name":"JET_paramRBSFilePath","features":[147]},{"name":"JET_paramRecordUpgradeDirtyLevel","features":[147]},{"name":"JET_paramRecovery","features":[147]},{"name":"JET_paramRuntimeCallback","features":[147]},{"name":"JET_paramStartFlushThreshold","features":[147]},{"name":"JET_paramStopFlushThreshold","features":[147]},{"name":"JET_paramSystemPath","features":[147]},{"name":"JET_paramTableClass10Name","features":[147]},{"name":"JET_paramTableClass11Name","features":[147]},{"name":"JET_paramTableClass12Name","features":[147]},{"name":"JET_paramTableClass13Name","features":[147]},{"name":"JET_paramTableClass14Name","features":[147]},{"name":"JET_paramTableClass15Name","features":[147]},{"name":"JET_paramTableClass1Name","features":[147]},{"name":"JET_paramTableClass2Name","features":[147]},{"name":"JET_paramTableClass3Name","features":[147]},{"name":"JET_paramTableClass4Name","features":[147]},{"name":"JET_paramTableClass5Name","features":[147]},{"name":"JET_paramTableClass6Name","features":[147]},{"name":"JET_paramTableClass7Name","features":[147]},{"name":"JET_paramTableClass8Name","features":[147]},{"name":"JET_paramTableClass9Name","features":[147]},{"name":"JET_paramTempPath","features":[147]},{"name":"JET_paramUnicodeIndexDefault","features":[147]},{"name":"JET_paramUseFlushForWriteDurability","features":[147]},{"name":"JET_paramVerPageSize","features":[147]},{"name":"JET_paramVersionStoreTaskQueueMax","features":[147]},{"name":"JET_paramWaitLogFlush","features":[147]},{"name":"JET_paramWaypointLatency","features":[147]},{"name":"JET_paramZeroDatabaseDuringBackup","features":[147]},{"name":"JET_prepCancel","features":[147]},{"name":"JET_prepInsert","features":[147]},{"name":"JET_prepInsertCopy","features":[147]},{"name":"JET_prepInsertCopyDeleteOriginal","features":[147]},{"name":"JET_prepInsertCopyReplaceOriginal","features":[147]},{"name":"JET_prepReplace","features":[147]},{"name":"JET_prepReplaceNoLock","features":[147]},{"name":"JET_relopBitmaskEqualsZero","features":[147]},{"name":"JET_relopBitmaskNotEqualsZero","features":[147]},{"name":"JET_relopEquals","features":[147]},{"name":"JET_relopGreaterThan","features":[147]},{"name":"JET_relopGreaterThanOrEqual","features":[147]},{"name":"JET_relopLessThan","features":[147]},{"name":"JET_relopLessThanOrEqual","features":[147]},{"name":"JET_relopNotEquals","features":[147]},{"name":"JET_relopPrefixEquals","features":[147]},{"name":"JET_sesparamCommitDefault","features":[147]},{"name":"JET_sesparamCorrelationID","features":[147]},{"name":"JET_sesparamMaxValueInvalid","features":[147]},{"name":"JET_sesparamOperationContext","features":[147]},{"name":"JET_sesparamTransactionLevel","features":[147]},{"name":"JET_snpBackup","features":[147]},{"name":"JET_snpCompact","features":[147]},{"name":"JET_snpRepair","features":[147]},{"name":"JET_snpRestore","features":[147]},{"name":"JET_snpScrub","features":[147]},{"name":"JET_snpUpgrade","features":[147]},{"name":"JET_snpUpgradeRecordFormat","features":[147]},{"name":"JET_sntBegin","features":[147]},{"name":"JET_sntComplete","features":[147]},{"name":"JET_sntFail","features":[147]},{"name":"JET_sntProgress","features":[147]},{"name":"JET_sntRequirements","features":[147]},{"name":"JET_sqmDisable","features":[147]},{"name":"JET_sqmEnable","features":[147]},{"name":"JET_sqmFromCEIP","features":[147]},{"name":"JET_wrnBufferTruncated","features":[147]},{"name":"JET_wrnCallbackNotRegistered","features":[147]},{"name":"JET_wrnColumnDefault","features":[147]},{"name":"JET_wrnColumnMaxTruncated","features":[147]},{"name":"JET_wrnColumnMoreTags","features":[147]},{"name":"JET_wrnColumnNotInRecord","features":[147]},{"name":"JET_wrnColumnNotLocal","features":[147]},{"name":"JET_wrnColumnNull","features":[147]},{"name":"JET_wrnColumnPresent","features":[147]},{"name":"JET_wrnColumnReference","features":[147]},{"name":"JET_wrnColumnSetNull","features":[147]},{"name":"JET_wrnColumnSingleValue","features":[147]},{"name":"JET_wrnColumnSkipped","features":[147]},{"name":"JET_wrnColumnTruncated","features":[147]},{"name":"JET_wrnCommittedLogFilesLost","features":[147]},{"name":"JET_wrnCommittedLogFilesRemoved","features":[147]},{"name":"JET_wrnCopyLongValue","features":[147]},{"name":"JET_wrnCorruptIndexDeleted","features":[147]},{"name":"JET_wrnDataHasChanged","features":[147]},{"name":"JET_wrnDatabaseAttached","features":[147]},{"name":"JET_wrnDatabaseRepaired","features":[147]},{"name":"JET_wrnDefragAlreadyRunning","features":[147]},{"name":"JET_wrnDefragNotRunning","features":[147]},{"name":"JET_wrnExistingLogFileHasBadSignature","features":[147]},{"name":"JET_wrnExistingLogFileIsNotContiguous","features":[147]},{"name":"JET_wrnFileOpenReadOnly","features":[147]},{"name":"JET_wrnFinishWithUndo","features":[147]},{"name":"JET_wrnIdleFull","features":[147]},{"name":"JET_wrnKeyChanged","features":[147]},{"name":"JET_wrnNoErrorInfo","features":[147]},{"name":"JET_wrnNoIdleActivity","features":[147]},{"name":"JET_wrnNoWriteLock","features":[147]},{"name":"JET_wrnNyi","features":[147]},{"name":"JET_wrnPrimaryIndexOutOfDate","features":[147]},{"name":"JET_wrnRemainingVersions","features":[147]},{"name":"JET_wrnSecondaryIndexOutOfDate","features":[147]},{"name":"JET_wrnSeekNotEqual","features":[147]},{"name":"JET_wrnSeparateLongValue","features":[147]},{"name":"JET_wrnShrinkNotPossible","features":[147]},{"name":"JET_wrnSkipThisRecord","features":[147]},{"name":"JET_wrnSortOverflow","features":[147]},{"name":"JET_wrnTableEmpty","features":[147]},{"name":"JET_wrnTableInUseBySystem","features":[147]},{"name":"JET_wrnTargetInstanceRunning","features":[147]},{"name":"JET_wrnUniqueKey","features":[147]},{"name":"JET_wszConfigStoreReadControl","features":[147]},{"name":"JET_wszConfigStoreRelPathSysParamDefault","features":[147]},{"name":"JET_wszConfigStoreRelPathSysParamOverride","features":[147]},{"name":"JetAddColumnA","features":[147,148]},{"name":"JetAddColumnW","features":[147,148]},{"name":"JetAttachDatabase2A","features":[147]},{"name":"JetAttachDatabase2W","features":[147]},{"name":"JetAttachDatabaseA","features":[147]},{"name":"JetAttachDatabaseW","features":[147]},{"name":"JetBackupA","features":[147]},{"name":"JetBackupInstanceA","features":[147]},{"name":"JetBackupInstanceW","features":[147]},{"name":"JetBackupW","features":[147]},{"name":"JetBeginExternalBackup","features":[147]},{"name":"JetBeginExternalBackupInstance","features":[147]},{"name":"JetBeginSessionA","features":[147]},{"name":"JetBeginSessionW","features":[147]},{"name":"JetBeginTransaction","features":[147]},{"name":"JetBeginTransaction2","features":[147]},{"name":"JetBeginTransaction3","features":[147]},{"name":"JetCloseDatabase","features":[147]},{"name":"JetCloseFile","features":[147,148]},{"name":"JetCloseFileInstance","features":[147,148]},{"name":"JetCloseTable","features":[147,148]},{"name":"JetCommitTransaction","features":[147]},{"name":"JetCommitTransaction2","features":[147]},{"name":"JetCompactA","features":[147]},{"name":"JetCompactW","features":[147]},{"name":"JetComputeStats","features":[147,148]},{"name":"JetConfigureProcessForCrashDump","features":[147]},{"name":"JetCreateDatabase2A","features":[147]},{"name":"JetCreateDatabase2W","features":[147]},{"name":"JetCreateDatabaseA","features":[147]},{"name":"JetCreateDatabaseW","features":[147]},{"name":"JetCreateIndex2A","features":[147,148]},{"name":"JetCreateIndex2W","features":[147,148]},{"name":"JetCreateIndex3A","features":[147,148]},{"name":"JetCreateIndex3W","features":[147,148]},{"name":"JetCreateIndex4A","features":[147,148]},{"name":"JetCreateIndex4W","features":[147,148]},{"name":"JetCreateIndexA","features":[147,148]},{"name":"JetCreateIndexW","features":[147,148]},{"name":"JetCreateInstance2A","features":[147]},{"name":"JetCreateInstance2W","features":[147]},{"name":"JetCreateInstanceA","features":[147]},{"name":"JetCreateInstanceW","features":[147]},{"name":"JetCreateTableA","features":[147,148]},{"name":"JetCreateTableColumnIndex2A","features":[147,148]},{"name":"JetCreateTableColumnIndex2W","features":[147,148]},{"name":"JetCreateTableColumnIndex3A","features":[147,148]},{"name":"JetCreateTableColumnIndex3W","features":[147,148]},{"name":"JetCreateTableColumnIndex4A","features":[147,148]},{"name":"JetCreateTableColumnIndex4W","features":[147,148]},{"name":"JetCreateTableColumnIndexA","features":[147,148]},{"name":"JetCreateTableColumnIndexW","features":[147,148]},{"name":"JetCreateTableW","features":[147,148]},{"name":"JetDefragment2A","features":[147,148]},{"name":"JetDefragment2W","features":[147,148]},{"name":"JetDefragment3A","features":[147,148]},{"name":"JetDefragment3W","features":[147,148]},{"name":"JetDefragmentA","features":[147]},{"name":"JetDefragmentW","features":[147]},{"name":"JetDelete","features":[147,148]},{"name":"JetDeleteColumn2A","features":[147,148]},{"name":"JetDeleteColumn2W","features":[147,148]},{"name":"JetDeleteColumnA","features":[147,148]},{"name":"JetDeleteColumnW","features":[147,148]},{"name":"JetDeleteIndexA","features":[147,148]},{"name":"JetDeleteIndexW","features":[147,148]},{"name":"JetDeleteTableA","features":[147]},{"name":"JetDeleteTableW","features":[147]},{"name":"JetDetachDatabase2A","features":[147]},{"name":"JetDetachDatabase2W","features":[147]},{"name":"JetDetachDatabaseA","features":[147]},{"name":"JetDetachDatabaseW","features":[147]},{"name":"JetDupCursor","features":[147,148]},{"name":"JetDupSession","features":[147]},{"name":"JetEnableMultiInstanceA","features":[147,148]},{"name":"JetEnableMultiInstanceW","features":[147,148]},{"name":"JetEndExternalBackup","features":[147]},{"name":"JetEndExternalBackupInstance","features":[147]},{"name":"JetEndExternalBackupInstance2","features":[147]},{"name":"JetEndSession","features":[147]},{"name":"JetEnumerateColumns","features":[147,148]},{"name":"JetEscrowUpdate","features":[147,148]},{"name":"JetExternalRestore2A","features":[147]},{"name":"JetExternalRestore2W","features":[147]},{"name":"JetExternalRestoreA","features":[147]},{"name":"JetExternalRestoreW","features":[147]},{"name":"JetFreeBuffer","features":[147]},{"name":"JetGetAttachInfoA","features":[147]},{"name":"JetGetAttachInfoInstanceA","features":[147]},{"name":"JetGetAttachInfoInstanceW","features":[147]},{"name":"JetGetAttachInfoW","features":[147]},{"name":"JetGetBookmark","features":[147,148]},{"name":"JetGetColumnInfoA","features":[147]},{"name":"JetGetColumnInfoW","features":[147]},{"name":"JetGetCurrentIndexA","features":[147,148]},{"name":"JetGetCurrentIndexW","features":[147,148]},{"name":"JetGetCursorInfo","features":[147,148]},{"name":"JetGetDatabaseFileInfoA","features":[147]},{"name":"JetGetDatabaseFileInfoW","features":[147]},{"name":"JetGetDatabaseInfoA","features":[147]},{"name":"JetGetDatabaseInfoW","features":[147]},{"name":"JetGetErrorInfoW","features":[147]},{"name":"JetGetIndexInfoA","features":[147]},{"name":"JetGetIndexInfoW","features":[147]},{"name":"JetGetInstanceInfoA","features":[147,148]},{"name":"JetGetInstanceInfoW","features":[147,148]},{"name":"JetGetInstanceMiscInfo","features":[147]},{"name":"JetGetLS","features":[147,148]},{"name":"JetGetLock","features":[147,148]},{"name":"JetGetLogInfoA","features":[147]},{"name":"JetGetLogInfoInstance2A","features":[147]},{"name":"JetGetLogInfoInstance2W","features":[147]},{"name":"JetGetLogInfoInstanceA","features":[147]},{"name":"JetGetLogInfoInstanceW","features":[147]},{"name":"JetGetLogInfoW","features":[147]},{"name":"JetGetObjectInfoA","features":[147]},{"name":"JetGetObjectInfoW","features":[147]},{"name":"JetGetRecordPosition","features":[147,148]},{"name":"JetGetRecordSize","features":[147,148]},{"name":"JetGetRecordSize2","features":[147,148]},{"name":"JetGetSecondaryIndexBookmark","features":[147,148]},{"name":"JetGetSessionParameter","features":[147]},{"name":"JetGetSystemParameterA","features":[147,148]},{"name":"JetGetSystemParameterW","features":[147,148]},{"name":"JetGetTableColumnInfoA","features":[147,148]},{"name":"JetGetTableColumnInfoW","features":[147,148]},{"name":"JetGetTableIndexInfoA","features":[147,148]},{"name":"JetGetTableIndexInfoW","features":[147,148]},{"name":"JetGetTableInfoA","features":[147,148]},{"name":"JetGetTableInfoW","features":[147,148]},{"name":"JetGetThreadStats","features":[147]},{"name":"JetGetTruncateLogInfoInstanceA","features":[147]},{"name":"JetGetTruncateLogInfoInstanceW","features":[147]},{"name":"JetGetVersion","features":[147]},{"name":"JetGotoBookmark","features":[147,148]},{"name":"JetGotoPosition","features":[147,148]},{"name":"JetGotoSecondaryIndexBookmark","features":[147,148]},{"name":"JetGrowDatabase","features":[147]},{"name":"JetIdle","features":[147]},{"name":"JetIndexRecordCount","features":[147,148]},{"name":"JetInit","features":[147]},{"name":"JetInit2","features":[147]},{"name":"JetInit3A","features":[147]},{"name":"JetInit3W","features":[147]},{"name":"JetIntersectIndexes","features":[147,148]},{"name":"JetMakeKey","features":[147,148]},{"name":"JetMove","features":[147,148]},{"name":"JetOSSnapshotAbort","features":[147]},{"name":"JetOSSnapshotEnd","features":[147]},{"name":"JetOSSnapshotFreezeA","features":[147,148]},{"name":"JetOSSnapshotFreezeW","features":[147,148]},{"name":"JetOSSnapshotGetFreezeInfoA","features":[147,148]},{"name":"JetOSSnapshotGetFreezeInfoW","features":[147,148]},{"name":"JetOSSnapshotPrepare","features":[147]},{"name":"JetOSSnapshotPrepareInstance","features":[147]},{"name":"JetOSSnapshotThaw","features":[147]},{"name":"JetOSSnapshotTruncateLog","features":[147]},{"name":"JetOSSnapshotTruncateLogInstance","features":[147]},{"name":"JetOpenDatabaseA","features":[147]},{"name":"JetOpenDatabaseW","features":[147]},{"name":"JetOpenFileA","features":[147,148]},{"name":"JetOpenFileInstanceA","features":[147,148]},{"name":"JetOpenFileInstanceW","features":[147,148]},{"name":"JetOpenFileW","features":[147,148]},{"name":"JetOpenTableA","features":[147,148]},{"name":"JetOpenTableW","features":[147,148]},{"name":"JetOpenTempTable","features":[147,148]},{"name":"JetOpenTempTable2","features":[147,148]},{"name":"JetOpenTempTable3","features":[147,148]},{"name":"JetOpenTemporaryTable","features":[147,148]},{"name":"JetOpenTemporaryTable2","features":[147,148]},{"name":"JetPrepareUpdate","features":[147,148]},{"name":"JetPrereadIndexRanges","features":[147,148]},{"name":"JetPrereadKeys","features":[147,148]},{"name":"JetReadFile","features":[147,148]},{"name":"JetReadFileInstance","features":[147,148]},{"name":"JetRegisterCallback","features":[147,148]},{"name":"JetRenameColumnA","features":[147,148]},{"name":"JetRenameColumnW","features":[147,148]},{"name":"JetRenameTableA","features":[147]},{"name":"JetRenameTableW","features":[147]},{"name":"JetResetSessionContext","features":[147]},{"name":"JetResetTableSequential","features":[147,148]},{"name":"JetResizeDatabase","features":[147]},{"name":"JetRestore2A","features":[147]},{"name":"JetRestore2W","features":[147]},{"name":"JetRestoreA","features":[147]},{"name":"JetRestoreInstanceA","features":[147]},{"name":"JetRestoreInstanceW","features":[147]},{"name":"JetRestoreW","features":[147]},{"name":"JetRetrieveColumn","features":[147,148]},{"name":"JetRetrieveColumns","features":[147,148]},{"name":"JetRetrieveKey","features":[147,148]},{"name":"JetRollback","features":[147]},{"name":"JetSeek","features":[147,148]},{"name":"JetSetColumn","features":[147,148]},{"name":"JetSetColumnDefaultValueA","features":[147]},{"name":"JetSetColumnDefaultValueW","features":[147]},{"name":"JetSetColumns","features":[147,148]},{"name":"JetSetCurrentIndex2A","features":[147,148]},{"name":"JetSetCurrentIndex2W","features":[147,148]},{"name":"JetSetCurrentIndex3A","features":[147,148]},{"name":"JetSetCurrentIndex3W","features":[147,148]},{"name":"JetSetCurrentIndex4A","features":[147,148]},{"name":"JetSetCurrentIndex4W","features":[147,148]},{"name":"JetSetCurrentIndexA","features":[147,148]},{"name":"JetSetCurrentIndexW","features":[147,148]},{"name":"JetSetCursorFilter","features":[147,148]},{"name":"JetSetDatabaseSizeA","features":[147]},{"name":"JetSetDatabaseSizeW","features":[147]},{"name":"JetSetIndexRange","features":[147,148]},{"name":"JetSetLS","features":[147,148]},{"name":"JetSetSessionContext","features":[147,148]},{"name":"JetSetSessionParameter","features":[147]},{"name":"JetSetSystemParameterA","features":[147,148]},{"name":"JetSetSystemParameterW","features":[147,148]},{"name":"JetSetTableSequential","features":[147,148]},{"name":"JetStopBackup","features":[147]},{"name":"JetStopBackupInstance","features":[147]},{"name":"JetStopService","features":[147]},{"name":"JetStopServiceInstance","features":[147]},{"name":"JetStopServiceInstance2","features":[147]},{"name":"JetTerm","features":[147]},{"name":"JetTerm2","features":[147]},{"name":"JetTruncateLog","features":[147]},{"name":"JetTruncateLogInstance","features":[147]},{"name":"JetUnregisterCallback","features":[147,148]},{"name":"JetUpdate","features":[147,148]},{"name":"JetUpdate2","features":[147,148]},{"name":"cColumnInfoCols","features":[147]},{"name":"cIndexInfoCols","features":[147]},{"name":"cObjectInfoCols","features":[147]},{"name":"wrnBTNotVisibleAccumulated","features":[147]},{"name":"wrnBTNotVisibleRejected","features":[147]}],"518":[{"name":"ACTIVE_LATENCY_CONFIGURATION","features":[149]},{"name":"BUCKET_COUNTER","features":[149]},{"name":"DEBUG_BIT_FIELD","features":[149]},{"name":"DSSD_POWER_STATE_DESCRIPTOR","features":[149]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY","features":[149]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY_VERSION_1","features":[149]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGE","features":[149]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGEGuid","features":[149]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIES","features":[149]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIESGuid","features":[149]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERY","features":[149]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERYGuid","features":[149]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY","features":[149]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORYGuid","features":[149]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITOR","features":[149]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITORGuid","features":[149]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATION","features":[149]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATIONGuid","features":[149]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATION","features":[149]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATIONGuid","features":[149]},{"name":"GUID_OCP_DEVICE_TCG_HISTORY","features":[149]},{"name":"GUID_OCP_DEVICE_TCG_HISTORYGuid","features":[149]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS","features":[149]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTSGuid","features":[149]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERY","features":[149]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERYGuid","features":[149]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTES","features":[149]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTESGuid","features":[149]},{"name":"LATENCY_MONITOR_FEATURE_STATUS","features":[149]},{"name":"LATENCY_STAMP","features":[149]},{"name":"LATENCY_STAMP_UNITS","features":[149]},{"name":"MEASURED_LATENCY","features":[149]},{"name":"NVME_ACCESS_FREQUENCIES","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_FR_READ","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_INFR_READ","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_FR_READ","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_INFR_READ","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_NONE","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_ONE_TIME_READ","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_SPECULATIVE_READ","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_TYPICAL","features":[149]},{"name":"NVME_ACCESS_FREQUENCY_WILL_BE_OVERWRITTEN","features":[149]},{"name":"NVME_ACCESS_LATENCIES","features":[149]},{"name":"NVME_ACCESS_LATENCY_IDLE","features":[149]},{"name":"NVME_ACCESS_LATENCY_LOW","features":[149]},{"name":"NVME_ACCESS_LATENCY_NONE","features":[149]},{"name":"NVME_ACCESS_LATENCY_NORMAL","features":[149]},{"name":"NVME_ACTIVE_NAMESPACE_ID_LIST","features":[149]},{"name":"NVME_ADMIN_COMMANDS","features":[149]},{"name":"NVME_ADMIN_COMMAND_ABORT","features":[149]},{"name":"NVME_ADMIN_COMMAND_ASYNC_EVENT_REQUEST","features":[149]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_CQ","features":[149]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_SQ","features":[149]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_CQ","features":[149]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_SQ","features":[149]},{"name":"NVME_ADMIN_COMMAND_DEVICE_SELF_TEST","features":[149]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_RECEIVE","features":[149]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_SEND","features":[149]},{"name":"NVME_ADMIN_COMMAND_DOORBELL_BUFFER_CONFIG","features":[149]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_ACTIVATE","features":[149]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_COMMIT","features":[149]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_IMAGE_DOWNLOAD","features":[149]},{"name":"NVME_ADMIN_COMMAND_FORMAT_NVM","features":[149]},{"name":"NVME_ADMIN_COMMAND_GET_FEATURES","features":[149]},{"name":"NVME_ADMIN_COMMAND_GET_LBA_STATUS","features":[149]},{"name":"NVME_ADMIN_COMMAND_GET_LOG_PAGE","features":[149]},{"name":"NVME_ADMIN_COMMAND_IDENTIFY","features":[149]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_ATTACHMENT","features":[149]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_MANAGEMENT","features":[149]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_RECEIVE","features":[149]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_SEND","features":[149]},{"name":"NVME_ADMIN_COMMAND_SANITIZE","features":[149]},{"name":"NVME_ADMIN_COMMAND_SECURITY_RECEIVE","features":[149]},{"name":"NVME_ADMIN_COMMAND_SECURITY_SEND","features":[149]},{"name":"NVME_ADMIN_COMMAND_SET_FEATURES","features":[149]},{"name":"NVME_ADMIN_COMMAND_VIRTUALIZATION_MANAGEMENT","features":[149]},{"name":"NVME_ADMIN_COMPLETION_QUEUE_BASE_ADDRESS","features":[149]},{"name":"NVME_ADMIN_QUEUE_ATTRIBUTES","features":[149]},{"name":"NVME_ADMIN_SUBMISSION_QUEUE_BASE_ADDRESS","features":[149]},{"name":"NVME_AMS_OPTION","features":[149]},{"name":"NVME_AMS_ROUND_ROBIN","features":[149]},{"name":"NVME_AMS_WEIGHTED_ROUND_ROBIN_URGENT","features":[149]},{"name":"NVME_ASYNC_ERROR_DIAG_FAILURE","features":[149]},{"name":"NVME_ASYNC_ERROR_FIRMWARE_IMAGE_LOAD_ERROR","features":[149]},{"name":"NVME_ASYNC_ERROR_INVALID_DOORBELL_WRITE_VALUE","features":[149]},{"name":"NVME_ASYNC_ERROR_INVALID_SUBMISSION_QUEUE","features":[149]},{"name":"NVME_ASYNC_ERROR_PERSISTENT_INTERNAL_DEVICE_ERROR","features":[149]},{"name":"NVME_ASYNC_ERROR_TRANSIENT_INTERNAL_DEVICE_ERROR","features":[149]},{"name":"NVME_ASYNC_EVENT_ERROR_STATUS_CODES","features":[149]},{"name":"NVME_ASYNC_EVENT_HEALTH_STATUS_CODES","features":[149]},{"name":"NVME_ASYNC_EVENT_IO_COMMAND_SET_STATUS_CODES","features":[149]},{"name":"NVME_ASYNC_EVENT_NOTICE_CODES","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPES","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_ERROR_STATUS","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_HEALTH_STATUS","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_IO_COMMAND_SET_STATUS","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_NOTICE","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_CODES","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_DEVICE_PANIC","features":[149]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_RESERVED","features":[149]},{"name":"NVME_ASYNC_HEALTH_NVM_SUBSYSTEM_RELIABILITY","features":[149]},{"name":"NVME_ASYNC_HEALTH_SPARE_BELOW_THRESHOLD","features":[149]},{"name":"NVME_ASYNC_HEALTH_TEMPERATURE_THRESHOLD","features":[149]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED","features":[149]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED_WITH_UNEXPECTED_DEALLOCATION","features":[149]},{"name":"NVME_ASYNC_IO_CMD_SET_RESERVATION_LOG_PAGE_AVAILABLE","features":[149]},{"name":"NVME_ASYNC_NOTICE_ASYMMETRIC_ACCESS_CHANGE","features":[149]},{"name":"NVME_ASYNC_NOTICE_ENDURANCE_GROUP_EVENT_AGGREGATE_LOG_CHANGE","features":[149]},{"name":"NVME_ASYNC_NOTICE_FIRMWARE_ACTIVATION_STARTING","features":[149]},{"name":"NVME_ASYNC_NOTICE_LBA_STATUS_INFORMATION_ALERT","features":[149]},{"name":"NVME_ASYNC_NOTICE_NAMESPACE_ATTRIBUTE_CHANGED","features":[149]},{"name":"NVME_ASYNC_NOTICE_PREDICTABLE_LATENCY_EVENT_AGGREGATE_LOG_CHANGE","features":[149]},{"name":"NVME_ASYNC_NOTICE_TELEMETRY_LOG_CHANGED","features":[149]},{"name":"NVME_ASYNC_NOTICE_ZONE_DESCRIPTOR_CHANGED","features":[149]},{"name":"NVME_AUTO_POWER_STATE_TRANSITION_ENTRY","features":[149]},{"name":"NVME_CC_SHN_ABRUPT_SHUTDOWN","features":[149]},{"name":"NVME_CC_SHN_NORMAL_SHUTDOWN","features":[149]},{"name":"NVME_CC_SHN_NO_NOTIFICATION","features":[149]},{"name":"NVME_CC_SHN_SHUTDOWN_NOTIFICATIONS","features":[149]},{"name":"NVME_CDW0_FEATURE_ENABLE_IEEE1667_SILO","features":[149]},{"name":"NVME_CDW0_FEATURE_ERROR_INJECTION","features":[149]},{"name":"NVME_CDW0_FEATURE_READONLY_WRITETHROUGH_MODE","features":[149]},{"name":"NVME_CDW0_RESERVATION_PERSISTENCE","features":[149]},{"name":"NVME_CDW10_ABORT","features":[149]},{"name":"NVME_CDW10_CREATE_IO_QUEUE","features":[149]},{"name":"NVME_CDW10_DATASET_MANAGEMENT","features":[149]},{"name":"NVME_CDW10_DIRECTIVE_RECEIVE","features":[149]},{"name":"NVME_CDW10_DIRECTIVE_SEND","features":[149]},{"name":"NVME_CDW10_FIRMWARE_ACTIVATE","features":[149]},{"name":"NVME_CDW10_FIRMWARE_DOWNLOAD","features":[149]},{"name":"NVME_CDW10_FORMAT_NVM","features":[149]},{"name":"NVME_CDW10_GET_FEATURES","features":[149]},{"name":"NVME_CDW10_GET_LOG_PAGE","features":[149]},{"name":"NVME_CDW10_GET_LOG_PAGE_V13","features":[149]},{"name":"NVME_CDW10_IDENTIFY","features":[149]},{"name":"NVME_CDW10_RESERVATION_ACQUIRE","features":[149]},{"name":"NVME_CDW10_RESERVATION_REGISTER","features":[149]},{"name":"NVME_CDW10_RESERVATION_RELEASE","features":[149]},{"name":"NVME_CDW10_RESERVATION_REPORT","features":[149]},{"name":"NVME_CDW10_SANITIZE","features":[149]},{"name":"NVME_CDW10_SECURITY_SEND_RECEIVE","features":[149]},{"name":"NVME_CDW10_SET_FEATURES","features":[149]},{"name":"NVME_CDW10_ZONE_APPEND","features":[149]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_RECEIVE","features":[149]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_SEND","features":[149]},{"name":"NVME_CDW11_CREATE_IO_CQ","features":[149]},{"name":"NVME_CDW11_CREATE_IO_SQ","features":[149]},{"name":"NVME_CDW11_DATASET_MANAGEMENT","features":[149]},{"name":"NVME_CDW11_DIRECTIVE_RECEIVE","features":[149]},{"name":"NVME_CDW11_DIRECTIVE_SEND","features":[149]},{"name":"NVME_CDW11_FEATURES","features":[149]},{"name":"NVME_CDW11_FEATURE_ARBITRATION","features":[149]},{"name":"NVME_CDW11_FEATURE_ASYNC_EVENT_CONFIG","features":[149]},{"name":"NVME_CDW11_FEATURE_AUTO_POWER_STATE_TRANSITION","features":[149]},{"name":"NVME_CDW11_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[149]},{"name":"NVME_CDW11_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[149]},{"name":"NVME_CDW11_FEATURE_ENABLE_IEEE1667_SILO","features":[149]},{"name":"NVME_CDW11_FEATURE_ERROR_RECOVERY","features":[149]},{"name":"NVME_CDW11_FEATURE_GET_HOST_METADATA","features":[149]},{"name":"NVME_CDW11_FEATURE_HOST_IDENTIFIER","features":[149]},{"name":"NVME_CDW11_FEATURE_HOST_MEMORY_BUFFER","features":[149]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_COALESCING","features":[149]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[149]},{"name":"NVME_CDW11_FEATURE_IO_COMMAND_SET_PROFILE","features":[149]},{"name":"NVME_CDW11_FEATURE_LBA_RANGE_TYPE","features":[149]},{"name":"NVME_CDW11_FEATURE_NON_OPERATIONAL_POWER_STATE","features":[149]},{"name":"NVME_CDW11_FEATURE_NUMBER_OF_QUEUES","features":[149]},{"name":"NVME_CDW11_FEATURE_POWER_MANAGEMENT","features":[149]},{"name":"NVME_CDW11_FEATURE_READONLY_WRITETHROUGH_MODE","features":[149]},{"name":"NVME_CDW11_FEATURE_RESERVATION_NOTIFICATION_MASK","features":[149]},{"name":"NVME_CDW11_FEATURE_RESERVATION_PERSISTENCE","features":[149]},{"name":"NVME_CDW11_FEATURE_SET_HOST_METADATA","features":[149]},{"name":"NVME_CDW11_FEATURE_SUPPORTED_CAPABILITY","features":[149]},{"name":"NVME_CDW11_FEATURE_TEMPERATURE_THRESHOLD","features":[149]},{"name":"NVME_CDW11_FEATURE_VOLATILE_WRITE_CACHE","features":[149]},{"name":"NVME_CDW11_FEATURE_WRITE_ATOMICITY_NORMAL","features":[149]},{"name":"NVME_CDW11_FIRMWARE_DOWNLOAD","features":[149]},{"name":"NVME_CDW11_GET_LOG_PAGE","features":[149]},{"name":"NVME_CDW11_IDENTIFY","features":[149]},{"name":"NVME_CDW11_RESERVATION_REPORT","features":[149]},{"name":"NVME_CDW11_SANITIZE","features":[149]},{"name":"NVME_CDW11_SECURITY_RECEIVE","features":[149]},{"name":"NVME_CDW11_SECURITY_SEND","features":[149]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE","features":[149]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[149]},{"name":"NVME_CDW12_DIRECTIVE_SEND","features":[149]},{"name":"NVME_CDW12_DIRECTIVE_SEND_IDENTIFY_ENABLE_DIRECTIVE","features":[149]},{"name":"NVME_CDW12_FEATURES","features":[149]},{"name":"NVME_CDW12_FEATURE_HOST_MEMORY_BUFFER","features":[149]},{"name":"NVME_CDW12_GET_LOG_PAGE","features":[149]},{"name":"NVME_CDW12_READ_WRITE","features":[149]},{"name":"NVME_CDW12_ZONE_APPEND","features":[149]},{"name":"NVME_CDW13_FEATURES","features":[149]},{"name":"NVME_CDW13_FEATURE_HOST_MEMORY_BUFFER","features":[149]},{"name":"NVME_CDW13_GET_LOG_PAGE","features":[149]},{"name":"NVME_CDW13_READ_WRITE","features":[149]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_RECEIVE","features":[149]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_SEND","features":[149]},{"name":"NVME_CDW14_FEATURES","features":[149]},{"name":"NVME_CDW14_FEATURE_HOST_MEMORY_BUFFER","features":[149]},{"name":"NVME_CDW14_GET_LOG_PAGE","features":[149]},{"name":"NVME_CDW15_FEATURES","features":[149]},{"name":"NVME_CDW15_FEATURE_HOST_MEMORY_BUFFER","features":[149]},{"name":"NVME_CDW15_READ_WRITE","features":[149]},{"name":"NVME_CDW15_ZONE_APPEND","features":[149]},{"name":"NVME_CHANGED_NAMESPACE_LIST_LOG","features":[149]},{"name":"NVME_CHANGED_ZONE_LIST_LOG","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS_16MB","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS_1MB","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS_256MB","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS_4GB","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS_4KB","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS_64GB","features":[149]},{"name":"NVME_CMBSZ_SIZE_UNITS_64KB","features":[149]},{"name":"NVME_COMMAND","features":[149]},{"name":"NVME_COMMAND_DWORD0","features":[149]},{"name":"NVME_COMMAND_EFFECTS_DATA","features":[149]},{"name":"NVME_COMMAND_EFFECTS_LOG","features":[149]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMITS","features":[149]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_NONE","features":[149]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_CONTROLLER","features":[149]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_NAMESPACE","features":[149]},{"name":"NVME_COMMAND_SET_IDENTIFIERS","features":[149]},{"name":"NVME_COMMAND_SET_KEY_VALUE","features":[149]},{"name":"NVME_COMMAND_SET_NVM","features":[149]},{"name":"NVME_COMMAND_SET_ZONED_NAMESPACE","features":[149]},{"name":"NVME_COMMAND_STATUS","features":[149]},{"name":"NVME_COMPLETION_DW0_ASYNC_EVENT_REQUEST","features":[149]},{"name":"NVME_COMPLETION_DW0_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[149]},{"name":"NVME_COMPLETION_ENTRY","features":[149]},{"name":"NVME_COMPLETION_QUEUE_HEAD_DOORBELL","features":[149]},{"name":"NVME_CONTEXT_ATTRIBUTES","features":[149]},{"name":"NVME_CONTROLLER_CAPABILITIES","features":[149]},{"name":"NVME_CONTROLLER_CONFIGURATION","features":[149]},{"name":"NVME_CONTROLLER_LIST","features":[149]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_LOCATION","features":[149]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_SIZE","features":[149]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_NAME","features":[149]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_VERSION","features":[149]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_NAME","features":[149]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_VERSION","features":[149]},{"name":"NVME_CONTROLLER_METADATA_ELEMENT_TYPES","features":[149]},{"name":"NVME_CONTROLLER_METADATA_FIRMWARE_VERSION","features":[149]},{"name":"NVME_CONTROLLER_METADATA_HOST_DETERMINED_FAILURE_RECORD","features":[149]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_CONTROLLER_NAME","features":[149]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_FILENAME","features":[149]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_NAME","features":[149]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_VERSION","features":[149]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_NAME_AND_BUILD","features":[149]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_CONTROLLER_NAME","features":[149]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_NAME","features":[149]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_VERSION","features":[149]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PROCESSOR_MODEL","features":[149]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PRODUCT_NAME","features":[149]},{"name":"NVME_CONTROLLER_REGISTERS","features":[149]},{"name":"NVME_CONTROLLER_STATUS","features":[149]},{"name":"NVME_CSS_ADMIN_COMMAND_SET_ONLY","features":[149]},{"name":"NVME_CSS_ALL_SUPPORTED_IO_COMMAND_SET","features":[149]},{"name":"NVME_CSS_COMMAND_SETS","features":[149]},{"name":"NVME_CSS_NVM_COMMAND_SET","features":[149]},{"name":"NVME_CSTS_SHST_NO_SHUTDOWN","features":[149]},{"name":"NVME_CSTS_SHST_SHUTDOWN_COMPLETED","features":[149]},{"name":"NVME_CSTS_SHST_SHUTDOWN_IN_PROCESS","features":[149]},{"name":"NVME_CSTS_SHST_SHUTDOWN_STATUS","features":[149]},{"name":"NVME_DEVICE_SELF_TEST_LOG","features":[149]},{"name":"NVME_DEVICE_SELF_TEST_RESULT_DATA","features":[149]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS","features":[149]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS_DESCRIPTOR","features":[149]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATIONS","features":[149]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATION_RETURN_PARAMETERS","features":[149]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATIONS","features":[149]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_ALLOCATE_RESOURCES","features":[149]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_GET_STATUS","features":[149]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_RETURN_PARAMETERS","features":[149]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATIONS","features":[149]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATION_ENABLE_DIRECTIVE","features":[149]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATIONS","features":[149]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_IDENTIFIER","features":[149]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_RESOURCES","features":[149]},{"name":"NVME_DIRECTIVE_STREAMS_GET_STATUS_DATA","features":[149]},{"name":"NVME_DIRECTIVE_STREAMS_RETURN_PARAMETERS","features":[149]},{"name":"NVME_DIRECTIVE_TYPES","features":[149]},{"name":"NVME_DIRECTIVE_TYPE_IDENTIFY","features":[149]},{"name":"NVME_DIRECTIVE_TYPE_STREAMS","features":[149]},{"name":"NVME_ENDURANCE_GROUP_LOG","features":[149]},{"name":"NVME_ERROR_INFO_LOG","features":[149]},{"name":"NVME_ERROR_INJECTION_ENTRY","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPES","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_CPU_CONTROLLER_HANG","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_CRITICAL","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_NONCRITICAL","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_HW_MALFUNCTION","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_LOGICAL_FW_ERROR","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_CORRUPTION","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_HANG","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_PLP_DEFECT","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_SRAM_CORRUPTION","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_MAX","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED0","features":[149]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED1","features":[149]},{"name":"NVME_EXTENDED_HOST_IDENTIFIER_SIZE","features":[149]},{"name":"NVME_EXTENDED_REPORT_ZONE_INFO","features":[149]},{"name":"NVME_FEATURES","features":[149]},{"name":"NVME_FEATURE_ARBITRATION","features":[149]},{"name":"NVME_FEATURE_ASYNC_EVENT_CONFIG","features":[149]},{"name":"NVME_FEATURE_AUTONOMOUS_POWER_STATE_TRANSITION","features":[149]},{"name":"NVME_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[149]},{"name":"NVME_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[149]},{"name":"NVME_FEATURE_CONTROLLER_METADATA","features":[149]},{"name":"NVME_FEATURE_ENABLE_IEEE1667_SILO","features":[149]},{"name":"NVME_FEATURE_ENDURANCE_GROUP_EVENT_CONFIG","features":[149]},{"name":"NVME_FEATURE_ENHANCED_CONTROLLER_METADATA","features":[149]},{"name":"NVME_FEATURE_ERROR_INJECTION","features":[149]},{"name":"NVME_FEATURE_ERROR_RECOVERY","features":[149]},{"name":"NVME_FEATURE_HOST_BEHAVIOR_SUPPORT","features":[149]},{"name":"NVME_FEATURE_HOST_CONTROLLED_THERMAL_MANAGEMENT","features":[149]},{"name":"NVME_FEATURE_HOST_IDENTIFIER_DATA","features":[149]},{"name":"NVME_FEATURE_HOST_MEMORY_BUFFER","features":[149]},{"name":"NVME_FEATURE_HOST_METADATA_DATA","features":[149]},{"name":"NVME_FEATURE_INTERRUPT_COALESCING","features":[149]},{"name":"NVME_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[149]},{"name":"NVME_FEATURE_IO_COMMAND_SET_PROFILE","features":[149]},{"name":"NVME_FEATURE_KEEP_ALIVE","features":[149]},{"name":"NVME_FEATURE_LBA_RANGE_TYPE","features":[149]},{"name":"NVME_FEATURE_LBA_STATUS_INFORMATION_REPORT_INTERVAL","features":[149]},{"name":"NVME_FEATURE_NAMESPACE_METADATA","features":[149]},{"name":"NVME_FEATURE_NONOPERATIONAL_POWER_STATE","features":[149]},{"name":"NVME_FEATURE_NUMBER_OF_QUEUES","features":[149]},{"name":"NVME_FEATURE_NVM_HOST_IDENTIFIER","features":[149]},{"name":"NVME_FEATURE_NVM_NAMESPACE_WRITE_PROTECTION_CONFIG","features":[149]},{"name":"NVME_FEATURE_NVM_RESERVATION_NOTIFICATION_MASK","features":[149]},{"name":"NVME_FEATURE_NVM_RESERVATION_PERSISTANCE","features":[149]},{"name":"NVME_FEATURE_NVM_SOFTWARE_PROGRESS_MARKER","features":[149]},{"name":"NVME_FEATURE_PLP_HEALTH_MONITOR","features":[149]},{"name":"NVME_FEATURE_POWER_MANAGEMENT","features":[149]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_CONFIG","features":[149]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_WINDOW","features":[149]},{"name":"NVME_FEATURE_READONLY_WRITETHROUGH_MODE","features":[149]},{"name":"NVME_FEATURE_READ_RECOVERY_LEVEL_CONFIG","features":[149]},{"name":"NVME_FEATURE_SANITIZE_CONFIG","features":[149]},{"name":"NVME_FEATURE_TEMPERATURE_THRESHOLD","features":[149]},{"name":"NVME_FEATURE_TIMESTAMP","features":[149]},{"name":"NVME_FEATURE_VALUE_CODES","features":[149]},{"name":"NVME_FEATURE_VALUE_CURRENT","features":[149]},{"name":"NVME_FEATURE_VALUE_DEFAULT","features":[149]},{"name":"NVME_FEATURE_VALUE_SAVED","features":[149]},{"name":"NVME_FEATURE_VALUE_SUPPORTED_CAPABILITIES","features":[149]},{"name":"NVME_FEATURE_VOLATILE_WRITE_CACHE","features":[149]},{"name":"NVME_FEATURE_WRITE_ATOMICITY","features":[149]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTIONS","features":[149]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_ACTIVATE","features":[149]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT","features":[149]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE","features":[149]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE_IMMEDIATE","features":[149]},{"name":"NVME_FIRMWARE_SLOT_INFO_LOG","features":[149]},{"name":"NVME_FUSED_OPERATION_CODES","features":[149]},{"name":"NVME_FUSED_OPERATION_FIRST_CMD","features":[149]},{"name":"NVME_FUSED_OPERATION_NORMAL","features":[149]},{"name":"NVME_FUSED_OPERATION_SECOND_CMD","features":[149]},{"name":"NVME_HEALTH_INFO_LOG","features":[149]},{"name":"NVME_HOST_IDENTIFIER_SIZE","features":[149]},{"name":"NVME_HOST_MEMORY_BUFFER_DESCRIPTOR_ENTRY","features":[149]},{"name":"NVME_HOST_METADATA_ADD_ENTRY_MULTIPLE","features":[149]},{"name":"NVME_HOST_METADATA_ADD_REPLACE_ENTRY","features":[149]},{"name":"NVME_HOST_METADATA_DELETE_ENTRY_MULTIPLE","features":[149]},{"name":"NVME_HOST_METADATA_ELEMENT_ACTIONS","features":[149]},{"name":"NVME_HOST_METADATA_ELEMENT_DESCRIPTOR","features":[149]},{"name":"NVME_IDENTIFIER_TYPE","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_CSI","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_CSI_LENGTH","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_EUI64","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_EUI64_LENGTH","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_LENGTH","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_NGUID","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_NGUID_LENGTH","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_UUID","features":[149]},{"name":"NVME_IDENTIFIER_TYPE_UUID_LENGTH","features":[149]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACES","features":[149]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACE_LIST_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE","features":[149]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_LIST","features":[149]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMSPACE_LIST_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_CNS_CODES","features":[149]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER","features":[149]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NSID","features":[149]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NVM_SUBSYSTEM","features":[149]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE","features":[149]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE_SIZE","features":[149]},{"name":"NVME_IDENTIFY_CNS_DOMAIN_LIST","features":[149]},{"name":"NVME_IDENTIFY_CNS_ENDURANCE_GROUP_LIST","features":[149]},{"name":"NVME_IDENTIFY_CNS_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_CNS_NAMESPACE_GRANULARITY_LIST","features":[149]},{"name":"NVME_IDENTIFY_CNS_NVM_SET","features":[149]},{"name":"NVME_IDENTIFY_CNS_PRIMARY_CONTROLLER_CAPABILITIES","features":[149]},{"name":"NVME_IDENTIFY_CNS_SECONDARY_CONTROLLER_LIST","features":[149]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE","features":[149]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_CNS_UUID_LIST","features":[149]},{"name":"NVME_IDENTIFY_CONTROLLER_DATA","features":[149]},{"name":"NVME_IDENTIFY_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_NAMESPACE_DATA","features":[149]},{"name":"NVME_IDENTIFY_NAMESPACE_DESCRIPTOR","features":[149]},{"name":"NVME_IDENTIFY_NVM_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[149]},{"name":"NVME_IDENTIFY_ZNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[149]},{"name":"NVME_IO_COMMAND_SET_COMBINATION_REJECTED","features":[149]},{"name":"NVME_IO_COMMAND_SET_INVALID","features":[149]},{"name":"NVME_IO_COMMAND_SET_NOT_ENABLED","features":[149]},{"name":"NVME_IO_COMMAND_SET_NOT_SUPPORTED","features":[149]},{"name":"NVME_LBA_FORMAT","features":[149]},{"name":"NVME_LBA_RANGE","features":[149]},{"name":"NVME_LBA_RANGET_TYPE_ENTRY","features":[149]},{"name":"NVME_LBA_RANGE_TYPES","features":[149]},{"name":"NVME_LBA_RANGE_TYPE_CACHE","features":[149]},{"name":"NVME_LBA_RANGE_TYPE_FILESYSTEM","features":[149]},{"name":"NVME_LBA_RANGE_TYPE_PAGE_SWAP_FILE","features":[149]},{"name":"NVME_LBA_RANGE_TYPE_RAID","features":[149]},{"name":"NVME_LBA_RANGE_TYPE_RESERVED","features":[149]},{"name":"NVME_LBA_ZONE_FORMAT","features":[149]},{"name":"NVME_LOG_PAGES","features":[149]},{"name":"NVME_LOG_PAGE_ASYMMETRIC_NAMESPACE_ACCESS","features":[149]},{"name":"NVME_LOG_PAGE_CHANGED_NAMESPACE_LIST","features":[149]},{"name":"NVME_LOG_PAGE_CHANGED_ZONE_LIST","features":[149]},{"name":"NVME_LOG_PAGE_COMMAND_EFFECTS","features":[149]},{"name":"NVME_LOG_PAGE_DEVICE_SELF_TEST","features":[149]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_EVENT_AGGREGATE","features":[149]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_INFORMATION","features":[149]},{"name":"NVME_LOG_PAGE_ERROR_INFO","features":[149]},{"name":"NVME_LOG_PAGE_FIRMWARE_SLOT_INFO","features":[149]},{"name":"NVME_LOG_PAGE_HEALTH_INFO","features":[149]},{"name":"NVME_LOG_PAGE_LBA_STATUS_INFORMATION","features":[149]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_CAPABILITIES","features":[149]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_ERROR_RECOVERY","features":[149]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_SMART_INFORMATION","features":[149]},{"name":"NVME_LOG_PAGE_OCP_FIRMWARE_ACTIVATION_HISTORY","features":[149]},{"name":"NVME_LOG_PAGE_OCP_LATENCY_MONITOR","features":[149]},{"name":"NVME_LOG_PAGE_OCP_TCG_CONFIGURATION","features":[149]},{"name":"NVME_LOG_PAGE_OCP_TCG_HISTORY","features":[149]},{"name":"NVME_LOG_PAGE_OCP_UNSUPPORTED_REQUIREMENTS","features":[149]},{"name":"NVME_LOG_PAGE_PERSISTENT_EVENT_LOG","features":[149]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_EVENT_AGGREGATE","features":[149]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_NVM_SET","features":[149]},{"name":"NVME_LOG_PAGE_RESERVATION_NOTIFICATION","features":[149]},{"name":"NVME_LOG_PAGE_SANITIZE_STATUS","features":[149]},{"name":"NVME_LOG_PAGE_TELEMETRY_CTLR_INITIATED","features":[149]},{"name":"NVME_LOG_PAGE_TELEMETRY_HOST_INITIATED","features":[149]},{"name":"NVME_MAX_HOST_IDENTIFIER_SIZE","features":[149]},{"name":"NVME_MAX_LOG_SIZE","features":[149]},{"name":"NVME_MEDIA_ADDITIONALLY_MODIFIED_AFTER_SANITIZE_NOT_DEFINED","features":[149]},{"name":"NVME_MEDIA_ADDITIONALLY_MOFIDIED_AFTER_SANITIZE","features":[149]},{"name":"NVME_MEDIA_NOT_ADDITIONALLY_MODIFIED_AFTER_SANITIZE","features":[149]},{"name":"NVME_NAMESPACE_ALL","features":[149]},{"name":"NVME_NAMESPACE_METADATA_ELEMENT_TYPES","features":[149]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME","features":[149]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_1","features":[149]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_2","features":[149]},{"name":"NVME_NAMESPACE_METADATA_PREBOOT_NAMESPACE_NAME","features":[149]},{"name":"NVME_NO_DEALLOCATE_MODIFIES_MEDIA_AFTER_SANITIZE","features":[149]},{"name":"NVME_NVM_COMMANDS","features":[149]},{"name":"NVME_NVM_COMMAND_COMPARE","features":[149]},{"name":"NVME_NVM_COMMAND_COPY","features":[149]},{"name":"NVME_NVM_COMMAND_DATASET_MANAGEMENT","features":[149]},{"name":"NVME_NVM_COMMAND_FLUSH","features":[149]},{"name":"NVME_NVM_COMMAND_READ","features":[149]},{"name":"NVME_NVM_COMMAND_RESERVATION_ACQUIRE","features":[149]},{"name":"NVME_NVM_COMMAND_RESERVATION_REGISTER","features":[149]},{"name":"NVME_NVM_COMMAND_RESERVATION_RELEASE","features":[149]},{"name":"NVME_NVM_COMMAND_RESERVATION_REPORT","features":[149]},{"name":"NVME_NVM_COMMAND_VERIFY","features":[149]},{"name":"NVME_NVM_COMMAND_WRITE","features":[149]},{"name":"NVME_NVM_COMMAND_WRITE_UNCORRECTABLE","features":[149]},{"name":"NVME_NVM_COMMAND_WRITE_ZEROES","features":[149]},{"name":"NVME_NVM_COMMAND_ZONE_APPEND","features":[149]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_RECEIVE","features":[149]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_SEND","features":[149]},{"name":"NVME_NVM_QUEUE_PRIORITIES","features":[149]},{"name":"NVME_NVM_QUEUE_PRIORITY_HIGH","features":[149]},{"name":"NVME_NVM_QUEUE_PRIORITY_LOW","features":[149]},{"name":"NVME_NVM_QUEUE_PRIORITY_MEDIUM","features":[149]},{"name":"NVME_NVM_QUEUE_PRIORITY_URGENT","features":[149]},{"name":"NVME_NVM_SUBSYSTEM_RESET","features":[149]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG","features":[149]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG_VERSION_1","features":[149]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_V2","features":[149]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_VERSION_2","features":[149]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG","features":[149]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG_VERSION_1","features":[149]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG","features":[149]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG_VERSION_1","features":[149]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_V3","features":[149]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_VERSION_3","features":[149]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG","features":[149]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG_VERSION_1","features":[149]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG","features":[149]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG_VERSION_1","features":[149]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG","features":[149]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG_VERSION_1","features":[149]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_HEADER","features":[149]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_TYPES","features":[149]},{"name":"NVME_PERSISTENT_EVENT_LOG_HEADER","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_CHANGE_NAMESPACE","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FIRMWARE_COMMIT","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_COMPLETION","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_START","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_MAX","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_NVM_SUBSYSTEM_HARDWARE_ERROR","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_POWER_ON_OR_RESET","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED0","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_BEGIN","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_END","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_BEGIN","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_END","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_COMPLETION","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_START","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SET_FEATURE","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SMART_HEALTH_LOG_SNAPSHOT","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TCG_DEFINED","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TELEMETRY_LOG_CREATED","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_THERMAL_EXCURSION","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TIMESTAMP_CHANGE","features":[149]},{"name":"NVME_PERSISTENT_EVENT_TYPE_VENDOR_SPECIFIC_EVENT","features":[149]},{"name":"NVME_POWER_STATE_DESC","features":[149]},{"name":"NVME_PROTECTION_INFORMATION_NOT_ENABLED","features":[149]},{"name":"NVME_PROTECTION_INFORMATION_TYPE1","features":[149]},{"name":"NVME_PROTECTION_INFORMATION_TYPE2","features":[149]},{"name":"NVME_PROTECTION_INFORMATION_TYPE3","features":[149]},{"name":"NVME_PROTECTION_INFORMATION_TYPES","features":[149]},{"name":"NVME_PRP_ENTRY","features":[149]},{"name":"NVME_REGISTERED_CONTROLLER_DATA","features":[149]},{"name":"NVME_REGISTERED_CONTROLLER_EXTENDED_DATA","features":[149]},{"name":"NVME_REPORT_ZONE_INFO","features":[149]},{"name":"NVME_RESERVATION_ACQUIRE_ACTIONS","features":[149]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_ACQUIRE","features":[149]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT","features":[149]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT_AND_ABORT","features":[149]},{"name":"NVME_RESERVATION_ACQUIRE_DATA_STRUCTURE","features":[149]},{"name":"NVME_RESERVATION_NOTIFICATION_LOG","features":[149]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPES","features":[149]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_EMPTY_LOG_PAGE","features":[149]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_PREEMPTED","features":[149]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_RELEASED","features":[149]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_RESERVATION_PREEPMPTED","features":[149]},{"name":"NVME_RESERVATION_REGISTER_ACTIONS","features":[149]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REGISTER","features":[149]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REPLACE","features":[149]},{"name":"NVME_RESERVATION_REGISTER_ACTION_UNREGISTER","features":[149]},{"name":"NVME_RESERVATION_REGISTER_DATA_STRUCTURE","features":[149]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_CHANGES","features":[149]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_NO_CHANGE","features":[149]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_RESERVED","features":[149]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_0","features":[149]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_1","features":[149]},{"name":"NVME_RESERVATION_RELEASE_ACTIONS","features":[149]},{"name":"NVME_RESERVATION_RELEASE_ACTION_CLEAR","features":[149]},{"name":"NVME_RESERVATION_RELEASE_ACTION_RELEASE","features":[149]},{"name":"NVME_RESERVATION_RELEASE_DATA_STRUCTURE","features":[149]},{"name":"NVME_RESERVATION_REPORT_STATUS_DATA_STRUCTURE","features":[149]},{"name":"NVME_RESERVATION_REPORT_STATUS_EXTENDED_DATA_STRUCTURE","features":[149]},{"name":"NVME_RESERVATION_REPORT_STATUS_HEADER","features":[149]},{"name":"NVME_RESERVATION_TYPES","features":[149]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS","features":[149]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_ALL_REGISTRANTS","features":[149]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_REGISTRANTS_ONLY","features":[149]},{"name":"NVME_RESERVATION_TYPE_RESERVED","features":[149]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE","features":[149]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_ALL_REGISTRANTS","features":[149]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_REGISTRANTS_ONLY","features":[149]},{"name":"NVME_SANITIZE_ACTION","features":[149]},{"name":"NVME_SANITIZE_ACTION_EXIT_FAILURE_MODE","features":[149]},{"name":"NVME_SANITIZE_ACTION_RESERVED","features":[149]},{"name":"NVME_SANITIZE_ACTION_START_BLOCK_ERASE_SANITIZE","features":[149]},{"name":"NVME_SANITIZE_ACTION_START_CRYPTO_ERASE_SANITIZE","features":[149]},{"name":"NVME_SANITIZE_ACTION_START_OVERWRITE_SANITIZE","features":[149]},{"name":"NVME_SANITIZE_OPERATION_FAILED","features":[149]},{"name":"NVME_SANITIZE_OPERATION_IN_PROGRESS","features":[149]},{"name":"NVME_SANITIZE_OPERATION_NONE","features":[149]},{"name":"NVME_SANITIZE_OPERATION_STATUS","features":[149]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED","features":[149]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED_WITH_FORCED_DEALLOCATION","features":[149]},{"name":"NVME_SANITIZE_STATUS","features":[149]},{"name":"NVME_SANITIZE_STATUS_LOG","features":[149]},{"name":"NVME_SCSI_NAME_STRING","features":[149]},{"name":"NVME_SECURE_ERASE_CRYPTOGRAPHIC","features":[149]},{"name":"NVME_SECURE_ERASE_NONE","features":[149]},{"name":"NVME_SECURE_ERASE_SETTINGS","features":[149]},{"name":"NVME_SECURE_ERASE_USER_DATA","features":[149]},{"name":"NVME_SET_ATTRIBUTES_ENTRY","features":[149]},{"name":"NVME_STATE_ZSC","features":[149]},{"name":"NVME_STATE_ZSE","features":[149]},{"name":"NVME_STATE_ZSEO","features":[149]},{"name":"NVME_STATE_ZSF","features":[149]},{"name":"NVME_STATE_ZSIO","features":[149]},{"name":"NVME_STATE_ZSO","features":[149]},{"name":"NVME_STATE_ZSRO","features":[149]},{"name":"NVME_STATUS_ABORT_COMMAND_LIMIT_EXCEEDED","features":[149]},{"name":"NVME_STATUS_ANA_ATTACH_FAILED","features":[149]},{"name":"NVME_STATUS_ASYNC_EVENT_REQUEST_LIMIT_EXCEEDED","features":[149]},{"name":"NVME_STATUS_ATOMIC_WRITE_UNIT_EXCEEDED","features":[149]},{"name":"NVME_STATUS_BOOT_PARTITION_WRITE_PROHIBITED","features":[149]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_FUSED_COMMAND","features":[149]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_MISSING_COMMAND","features":[149]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_POWER_LOSS_NOTIFICATION","features":[149]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_PREEMPT_ABORT","features":[149]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_SQ_DELETION","features":[149]},{"name":"NVME_STATUS_COMMAND_ABORT_REQUESTED","features":[149]},{"name":"NVME_STATUS_COMMAND_ID_CONFLICT","features":[149]},{"name":"NVME_STATUS_COMMAND_SEQUENCE_ERROR","features":[149]},{"name":"NVME_STATUS_COMMAND_SPECIFIC_CODES","features":[149]},{"name":"NVME_STATUS_COMPLETION_QUEUE_INVALID","features":[149]},{"name":"NVME_STATUS_CONTROLLER_LIST_INVALID","features":[149]},{"name":"NVME_STATUS_DATA_SGL_LENGTH_INVALID","features":[149]},{"name":"NVME_STATUS_DATA_TRANSFER_ERROR","features":[149]},{"name":"NVME_STATUS_DEVICE_SELF_TEST_IN_PROGRESS","features":[149]},{"name":"NVME_STATUS_DIRECTIVE_ID_INVALID","features":[149]},{"name":"NVME_STATUS_DIRECTIVE_TYPE_INVALID","features":[149]},{"name":"NVME_STATUS_FEATURE_ID_NOT_SAVEABLE","features":[149]},{"name":"NVME_STATUS_FEATURE_NOT_CHANGEABLE","features":[149]},{"name":"NVME_STATUS_FEATURE_NOT_NAMESPACE_SPECIFIC","features":[149]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_PROHIBITED","features":[149]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_CONVENTIONAL_RESET","features":[149]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_MAX_TIME_VIOLATION","features":[149]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_NVM_SUBSYSTEM_RESET","features":[149]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_RESET","features":[149]},{"name":"NVME_STATUS_FORMAT_IN_PROGRESS","features":[149]},{"name":"NVME_STATUS_GENERIC_COMMAND_CODES","features":[149]},{"name":"NVME_STATUS_HOST_IDENTIFIER_INCONSISTENT_FORMAT","features":[149]},{"name":"NVME_STATUS_INTERNAL_DEVICE_ERROR","features":[149]},{"name":"NVME_STATUS_INVALID_ANA_GROUP_IDENTIFIER","features":[149]},{"name":"NVME_STATUS_INVALID_COMMAND_OPCODE","features":[149]},{"name":"NVME_STATUS_INVALID_CONTROLLER_IDENTIFIER","features":[149]},{"name":"NVME_STATUS_INVALID_FIELD_IN_COMMAND","features":[149]},{"name":"NVME_STATUS_INVALID_FIRMWARE_IMAGE","features":[149]},{"name":"NVME_STATUS_INVALID_FIRMWARE_SLOT","features":[149]},{"name":"NVME_STATUS_INVALID_FORMAT","features":[149]},{"name":"NVME_STATUS_INVALID_INTERRUPT_VECTOR","features":[149]},{"name":"NVME_STATUS_INVALID_LOG_PAGE","features":[149]},{"name":"NVME_STATUS_INVALID_NAMESPACE_OR_FORMAT","features":[149]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_CONTROLLER_RESOURCES","features":[149]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_SGL_DESCR","features":[149]},{"name":"NVME_STATUS_INVALID_QUEUE_DELETION","features":[149]},{"name":"NVME_STATUS_INVALID_QUEUE_IDENTIFIER","features":[149]},{"name":"NVME_STATUS_INVALID_RESOURCE_IDENTIFIER","features":[149]},{"name":"NVME_STATUS_INVALID_SECONDARY_CONTROLLER_STATE","features":[149]},{"name":"NVME_STATUS_INVALID_SGL_LAST_SEGMENT_DESCR","features":[149]},{"name":"NVME_STATUS_INVALID_USE_OF_CONTROLLER_MEMORY_BUFFER","features":[149]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_EXPIRED","features":[149]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_INVALID","features":[149]},{"name":"NVME_STATUS_MAX_QUEUE_SIZE_EXCEEDED","features":[149]},{"name":"NVME_STATUS_MEDIA_ERROR_CODES","features":[149]},{"name":"NVME_STATUS_METADATA_SGL_LENGTH_INVALID","features":[149]},{"name":"NVME_STATUS_NAMESPACE_ALREADY_ATTACHED","features":[149]},{"name":"NVME_STATUS_NAMESPACE_IDENTIFIER_UNAVAILABLE","features":[149]},{"name":"NVME_STATUS_NAMESPACE_INSUFFICIENT_CAPACITY","features":[149]},{"name":"NVME_STATUS_NAMESPACE_IS_PRIVATE","features":[149]},{"name":"NVME_STATUS_NAMESPACE_NOT_ATTACHED","features":[149]},{"name":"NVME_STATUS_NAMESPACE_THIN_PROVISIONING_NOT_SUPPORTED","features":[149]},{"name":"NVME_STATUS_NVM_ACCESS_DENIED","features":[149]},{"name":"NVME_STATUS_NVM_ATTEMPTED_WRITE_TO_READ_ONLY_RANGE","features":[149]},{"name":"NVME_STATUS_NVM_CAPACITY_EXCEEDED","features":[149]},{"name":"NVME_STATUS_NVM_COMMAND_SIZE_LIMIT_EXCEEDED","features":[149]},{"name":"NVME_STATUS_NVM_COMPARE_FAILURE","features":[149]},{"name":"NVME_STATUS_NVM_CONFLICTING_ATTRIBUTES","features":[149]},{"name":"NVME_STATUS_NVM_DEALLOCATED_OR_UNWRITTEN_LOGICAL_BLOCK","features":[149]},{"name":"NVME_STATUS_NVM_END_TO_END_APPLICATION_TAG_CHECK_ERROR","features":[149]},{"name":"NVME_STATUS_NVM_END_TO_END_GUARD_CHECK_ERROR","features":[149]},{"name":"NVME_STATUS_NVM_END_TO_END_REFERENCE_TAG_CHECK_ERROR","features":[149]},{"name":"NVME_STATUS_NVM_INVALID_PROTECTION_INFORMATION","features":[149]},{"name":"NVME_STATUS_NVM_LBA_OUT_OF_RANGE","features":[149]},{"name":"NVME_STATUS_NVM_NAMESPACE_NOT_READY","features":[149]},{"name":"NVME_STATUS_NVM_RESERVATION_CONFLICT","features":[149]},{"name":"NVME_STATUS_NVM_UNRECOVERED_READ_ERROR","features":[149]},{"name":"NVME_STATUS_NVM_WRITE_FAULT","features":[149]},{"name":"NVME_STATUS_OPERATION_DENIED","features":[149]},{"name":"NVME_STATUS_OVERLAPPING_RANGE","features":[149]},{"name":"NVME_STATUS_PRP_OFFSET_INVALID","features":[149]},{"name":"NVME_STATUS_RESERVED","features":[149]},{"name":"NVME_STATUS_SANITIZE_FAILED","features":[149]},{"name":"NVME_STATUS_SANITIZE_IN_PROGRESS","features":[149]},{"name":"NVME_STATUS_SANITIZE_PROHIBITED_ON_PERSISTENT_MEMORY","features":[149]},{"name":"NVME_STATUS_SGL_DATA_BLOCK_GRANULARITY_INVALID","features":[149]},{"name":"NVME_STATUS_SGL_DESCR_TYPE_INVALID","features":[149]},{"name":"NVME_STATUS_SGL_OFFSET_INVALID","features":[149]},{"name":"NVME_STATUS_STREAM_RESOURCE_ALLOCATION_FAILED","features":[149]},{"name":"NVME_STATUS_SUCCESS_COMPLETION","features":[149]},{"name":"NVME_STATUS_TYPES","features":[149]},{"name":"NVME_STATUS_TYPE_COMMAND_SPECIFIC","features":[149]},{"name":"NVME_STATUS_TYPE_GENERIC_COMMAND","features":[149]},{"name":"NVME_STATUS_TYPE_MEDIA_ERROR","features":[149]},{"name":"NVME_STATUS_TYPE_VENDOR_SPECIFIC","features":[149]},{"name":"NVME_STATUS_ZONE_BOUNDARY_ERROR","features":[149]},{"name":"NVME_STATUS_ZONE_FULL","features":[149]},{"name":"NVME_STATUS_ZONE_INVALID_FORMAT","features":[149]},{"name":"NVME_STATUS_ZONE_INVALID_STATE_TRANSITION","features":[149]},{"name":"NVME_STATUS_ZONE_INVALID_WRITE","features":[149]},{"name":"NVME_STATUS_ZONE_OFFLINE","features":[149]},{"name":"NVME_STATUS_ZONE_READ_ONLY","features":[149]},{"name":"NVME_STATUS_ZONE_TOO_MANY_ACTIVE","features":[149]},{"name":"NVME_STATUS_ZONE_TOO_MANY_OPEN","features":[149]},{"name":"NVME_STREAMS_GET_STATUS_MAX_IDS","features":[149]},{"name":"NVME_STREAMS_ID_MAX","features":[149]},{"name":"NVME_STREAMS_ID_MIN","features":[149]},{"name":"NVME_SUBMISSION_QUEUE_TAIL_DOORBELL","features":[149]},{"name":"NVME_TELEMETRY_CONTROLLER_INITIATED_LOG","features":[149]},{"name":"NVME_TELEMETRY_DATA_BLOCK_SIZE","features":[149]},{"name":"NVME_TELEMETRY_HOST_INITIATED_LOG","features":[149]},{"name":"NVME_TEMPERATURE_OVER_THRESHOLD","features":[149]},{"name":"NVME_TEMPERATURE_THRESHOLD_TYPES","features":[149]},{"name":"NVME_TEMPERATURE_UNDER_THRESHOLD","features":[149]},{"name":"NVME_VENDOR_LOG_PAGES","features":[149]},{"name":"NVME_VERSION","features":[149]},{"name":"NVME_WCS_DEVICE_CAPABILITIES","features":[149]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG","features":[149]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG_VERSION_1","features":[149]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION1","features":[149]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION2","features":[149]},{"name":"NVME_WCS_DEVICE_RESET_ACTION","features":[149]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG","features":[149]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_V2","features":[149]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_VERSION_2","features":[149]},{"name":"NVME_ZONE_DESCRIPTOR","features":[149]},{"name":"NVME_ZONE_DESCRIPTOR_EXTENSION","features":[149]},{"name":"NVME_ZONE_EXTENDED_REPORT_ZONE_DESC","features":[149]},{"name":"NVME_ZONE_RECEIVE_ACTION","features":[149]},{"name":"NVME_ZONE_RECEIVE_ACTION_SPECIFIC","features":[149]},{"name":"NVME_ZONE_RECEIVE_EXTENDED_REPORT_ZONES","features":[149]},{"name":"NVME_ZONE_RECEIVE_REPORT_ZONES","features":[149]},{"name":"NVME_ZONE_SEND_ACTION","features":[149]},{"name":"NVME_ZONE_SEND_CLOSE","features":[149]},{"name":"NVME_ZONE_SEND_FINISH","features":[149]},{"name":"NVME_ZONE_SEND_OFFLINE","features":[149]},{"name":"NVME_ZONE_SEND_OPEN","features":[149]},{"name":"NVME_ZONE_SEND_RESET","features":[149]},{"name":"NVME_ZONE_SEND_SET_ZONE_DESCRIPTOR","features":[149]},{"name":"NVME_ZRA_ALL_ZONES","features":[149]},{"name":"NVME_ZRA_CLOSED_STATE_ZONES","features":[149]},{"name":"NVME_ZRA_EMPTY_STATE_ZONES","features":[149]},{"name":"NVME_ZRA_EO_STATE_ZONES","features":[149]},{"name":"NVME_ZRA_FULL_STATE_ZONES","features":[149]},{"name":"NVME_ZRA_IO_STATE_ZONES","features":[149]},{"name":"NVME_ZRA_OFFLINE_STATE_ZONES","features":[149]},{"name":"NVME_ZRA_RO_STATE_ZONES","features":[149]},{"name":"NVM_RESERVATION_CAPABILITIES","features":[149]},{"name":"NVM_SET_LIST","features":[149]},{"name":"NVMeDeviceRecovery1Max","features":[149]},{"name":"NVMeDeviceRecovery2Max","features":[149]},{"name":"NVMeDeviceRecoveryControllerReset","features":[149]},{"name":"NVMeDeviceRecoveryDeviceReplacement","features":[149]},{"name":"NVMeDeviceRecoveryFormatNVM","features":[149]},{"name":"NVMeDeviceRecoveryNoAction","features":[149]},{"name":"NVMeDeviceRecoveryPERST","features":[149]},{"name":"NVMeDeviceRecoveryPcieFunctionReset","features":[149]},{"name":"NVMeDeviceRecoveryPcieHotReset","features":[149]},{"name":"NVMeDeviceRecoveryPowerCycle","features":[149]},{"name":"NVMeDeviceRecoverySanitize","features":[149]},{"name":"NVMeDeviceRecoverySubsystemReset","features":[149]},{"name":"NVMeDeviceRecoveryVendorAnalysis","features":[149]},{"name":"NVMeDeviceRecoveryVendorSpecificCommand","features":[149]},{"name":"TCG_ACTIVATE_METHOD_SPECIFIC","features":[149]},{"name":"TCG_ASSIGN_METHOD_SPECIFIC","features":[149]},{"name":"TCG_AUTH_METHOD_SPECIFIC","features":[149]},{"name":"TCG_BLOCKSID_METHOD_SPECIFIC","features":[149]},{"name":"TCG_HISTORY_ENTRY","features":[149]},{"name":"TCG_HISTORY_ENTRY_VERSION_1","features":[149]},{"name":"TCG_REACTIVATE_METHOD_SPECIFIC","features":[149]},{"name":"UNSUPPORTED_REQUIREMENT","features":[149]},{"name":"ZONE_STATE","features":[149]}],"519":[{"name":"IEnumOfflineFilesItems","features":[150]},{"name":"IEnumOfflineFilesSettings","features":[150]},{"name":"IOfflineFilesCache","features":[150]},{"name":"IOfflineFilesCache2","features":[150]},{"name":"IOfflineFilesChangeInfo","features":[150]},{"name":"IOfflineFilesConnectionInfo","features":[150]},{"name":"IOfflineFilesDirectoryItem","features":[150]},{"name":"IOfflineFilesDirtyInfo","features":[150]},{"name":"IOfflineFilesErrorInfo","features":[150]},{"name":"IOfflineFilesEvents","features":[150]},{"name":"IOfflineFilesEvents2","features":[150]},{"name":"IOfflineFilesEvents3","features":[150]},{"name":"IOfflineFilesEvents4","features":[150]},{"name":"IOfflineFilesEventsFilter","features":[150]},{"name":"IOfflineFilesFileItem","features":[150]},{"name":"IOfflineFilesFileSysInfo","features":[150]},{"name":"IOfflineFilesGhostInfo","features":[150]},{"name":"IOfflineFilesItem","features":[150]},{"name":"IOfflineFilesItemContainer","features":[150]},{"name":"IOfflineFilesItemFilter","features":[150]},{"name":"IOfflineFilesPinInfo","features":[150]},{"name":"IOfflineFilesPinInfo2","features":[150]},{"name":"IOfflineFilesProgress","features":[150]},{"name":"IOfflineFilesServerItem","features":[150]},{"name":"IOfflineFilesSetting","features":[150]},{"name":"IOfflineFilesShareInfo","features":[150]},{"name":"IOfflineFilesShareItem","features":[150]},{"name":"IOfflineFilesSimpleProgress","features":[150]},{"name":"IOfflineFilesSuspend","features":[150]},{"name":"IOfflineFilesSuspendInfo","features":[150]},{"name":"IOfflineFilesSyncConflictHandler","features":[150]},{"name":"IOfflineFilesSyncErrorInfo","features":[150]},{"name":"IOfflineFilesSyncErrorItemInfo","features":[150]},{"name":"IOfflineFilesSyncProgress","features":[150]},{"name":"IOfflineFilesTransparentCacheInfo","features":[150]},{"name":"OFFLINEFILES_CACHING_MODE","features":[150]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_DOC","features":[150]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_PROGANDDOC","features":[150]},{"name":"OFFLINEFILES_CACHING_MODE_MANUAL","features":[150]},{"name":"OFFLINEFILES_CACHING_MODE_NOCACHING","features":[150]},{"name":"OFFLINEFILES_CACHING_MODE_NONE","features":[150]},{"name":"OFFLINEFILES_CHANGES_LOCAL_ATTRIBUTES","features":[150]},{"name":"OFFLINEFILES_CHANGES_LOCAL_SIZE","features":[150]},{"name":"OFFLINEFILES_CHANGES_LOCAL_TIME","features":[150]},{"name":"OFFLINEFILES_CHANGES_NONE","features":[150]},{"name":"OFFLINEFILES_CHANGES_REMOTE_ATTRIBUTES","features":[150]},{"name":"OFFLINEFILES_CHANGES_REMOTE_SIZE","features":[150]},{"name":"OFFLINEFILES_CHANGES_REMOTE_TIME","features":[150]},{"name":"OFFLINEFILES_COMPARE","features":[150]},{"name":"OFFLINEFILES_COMPARE_EQ","features":[150]},{"name":"OFFLINEFILES_COMPARE_GT","features":[150]},{"name":"OFFLINEFILES_COMPARE_GTE","features":[150]},{"name":"OFFLINEFILES_COMPARE_LT","features":[150]},{"name":"OFFLINEFILES_COMPARE_LTE","features":[150]},{"name":"OFFLINEFILES_COMPARE_NEQ","features":[150]},{"name":"OFFLINEFILES_CONNECT_STATE","features":[150]},{"name":"OFFLINEFILES_CONNECT_STATE_OFFLINE","features":[150]},{"name":"OFFLINEFILES_CONNECT_STATE_ONLINE","features":[150]},{"name":"OFFLINEFILES_CONNECT_STATE_PARTLY_TRANSPARENTLY_CACHED","features":[150]},{"name":"OFFLINEFILES_CONNECT_STATE_TRANSPARENTLY_CACHED","features":[150]},{"name":"OFFLINEFILES_CONNECT_STATE_UNKNOWN","features":[150]},{"name":"OFFLINEFILES_DELETE_FLAG_ADMIN","features":[150]},{"name":"OFFLINEFILES_DELETE_FLAG_DELMODIFIED","features":[150]},{"name":"OFFLINEFILES_DELETE_FLAG_NOAUTOCACHED","features":[150]},{"name":"OFFLINEFILES_DELETE_FLAG_NOPINNED","features":[150]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_ASYNCPROGRESS","features":[150]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_BACKGROUND","features":[150]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_CONSOLE","features":[150]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_INTERACTIVE","features":[150]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_LOWPRIORITY","features":[150]},{"name":"OFFLINEFILES_ENUM_FLAT","features":[150]},{"name":"OFFLINEFILES_ENUM_FLAT_FILESONLY","features":[150]},{"name":"OFFLINEFILES_EVENTS","features":[150]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCBEGIN","features":[150]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCEND","features":[150]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTBEGIN","features":[150]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTEND","features":[150]},{"name":"OFFLINEFILES_EVENT_CACHEISCORRUPTED","features":[150]},{"name":"OFFLINEFILES_EVENT_CACHEISFULL","features":[150]},{"name":"OFFLINEFILES_EVENT_CACHEMOVED","features":[150]},{"name":"OFFLINEFILES_EVENT_DATALOST","features":[150]},{"name":"OFFLINEFILES_EVENT_ENABLED","features":[150]},{"name":"OFFLINEFILES_EVENT_ENCRYPTIONCHANGED","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMADDEDTOCACHE","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMAVAILABLEOFFLINE","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMDELETEDFROMCACHE","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMDISCONNECTED","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMMODIFIED","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMNOTAVAILABLEOFFLINE","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMNOTPINNED","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMPINNED","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTBEGIN","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTED","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTEND","features":[150]},{"name":"OFFLINEFILES_EVENT_ITEMRENAMED","features":[150]},{"name":"OFFLINEFILES_EVENT_NETTRANSPORTARRIVED","features":[150]},{"name":"OFFLINEFILES_EVENT_NONETTRANSPORTS","features":[150]},{"name":"OFFLINEFILES_EVENT_PING","features":[150]},{"name":"OFFLINEFILES_EVENT_POLICYCHANGEDETECTED","features":[150]},{"name":"OFFLINEFILES_EVENT_PREFERENCECHANGEDETECTED","features":[150]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEBEGIN","features":[150]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEEND","features":[150]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEBEGIN","features":[150]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEEND","features":[150]},{"name":"OFFLINEFILES_EVENT_SETTINGSCHANGESAPPLIED","features":[150]},{"name":"OFFLINEFILES_EVENT_SYNCBEGIN","features":[150]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECADDED","features":[150]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECREMOVED","features":[150]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECUPDATED","features":[150]},{"name":"OFFLINEFILES_EVENT_SYNCEND","features":[150]},{"name":"OFFLINEFILES_EVENT_SYNCFILERESULT","features":[150]},{"name":"OFFLINEFILES_EVENT_TRANSPARENTCACHEITEMNOTIFY","features":[150]},{"name":"OFFLINEFILES_ITEM_COPY","features":[150]},{"name":"OFFLINEFILES_ITEM_COPY_LOCAL","features":[150]},{"name":"OFFLINEFILES_ITEM_COPY_ORIGINAL","features":[150]},{"name":"OFFLINEFILES_ITEM_COPY_REMOTE","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_CREATED","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DELETED","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRECTORY","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRTY","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_FILE","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GHOST","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_ANYACCESS","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_READ","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_WRITE","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_ATTRIBUTES","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_DATA","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OFFLINE","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_ONLINE","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_ANYACCESS","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_READ","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_WRITE","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_COMPUTER","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_OTHERS","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_USER","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SPARSE","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SUSPENDED","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_ANYACCESS","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_READ","features":[150]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_WRITE","features":[150]},{"name":"OFFLINEFILES_ITEM_QUERY_ADMIN","features":[150]},{"name":"OFFLINEFILES_ITEM_QUERY_ATTEMPT_TRANSITIONONLINE","features":[150]},{"name":"OFFLINEFILES_ITEM_QUERY_CONNECTIONSTATE","features":[150]},{"name":"OFFLINEFILES_ITEM_QUERY_INCLUDETRANSPARENTCACHE","features":[150]},{"name":"OFFLINEFILES_ITEM_QUERY_LOCALDIRTYBYTECOUNT","features":[150]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEDIRTYBYTECOUNT","features":[150]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEINFO","features":[150]},{"name":"OFFLINEFILES_ITEM_TIME","features":[150]},{"name":"OFFLINEFILES_ITEM_TIME_CREATION","features":[150]},{"name":"OFFLINEFILES_ITEM_TIME_LASTACCESS","features":[150]},{"name":"OFFLINEFILES_ITEM_TIME_LASTWRITE","features":[150]},{"name":"OFFLINEFILES_ITEM_TYPE","features":[150]},{"name":"OFFLINEFILES_ITEM_TYPE_DIRECTORY","features":[150]},{"name":"OFFLINEFILES_ITEM_TYPE_FILE","features":[150]},{"name":"OFFLINEFILES_ITEM_TYPE_SERVER","features":[150]},{"name":"OFFLINEFILES_ITEM_TYPE_SHARE","features":[150]},{"name":"OFFLINEFILES_NUM_EVENTS","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_ERROR","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_FORCED","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_SLOW","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_SUSPENDED","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_VERSION_CONFLICT","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON_NOT_APPLICABLE","features":[150]},{"name":"OFFLINEFILES_OFFLINE_REASON_UNKNOWN","features":[150]},{"name":"OFFLINEFILES_OP_ABORT","features":[150]},{"name":"OFFLINEFILES_OP_CONTINUE","features":[150]},{"name":"OFFLINEFILES_OP_RESPONSE","features":[150]},{"name":"OFFLINEFILES_OP_RETRY","features":[150]},{"name":"OFFLINEFILES_PATHFILTER_CHILD","features":[150]},{"name":"OFFLINEFILES_PATHFILTER_DESCENDENT","features":[150]},{"name":"OFFLINEFILES_PATHFILTER_MATCH","features":[150]},{"name":"OFFLINEFILES_PATHFILTER_SELF","features":[150]},{"name":"OFFLINEFILES_PATHFILTER_SELFORCHILD","features":[150]},{"name":"OFFLINEFILES_PATHFILTER_SELFORDESCENDENT","features":[150]},{"name":"OFFLINEFILES_PINLINKTARGETS_ALWAYS","features":[150]},{"name":"OFFLINEFILES_PINLINKTARGETS_EXPLICIT","features":[150]},{"name":"OFFLINEFILES_PINLINKTARGETS_NEVER","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_ASYNCPROGRESS","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_BACKGROUND","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_CONSOLE","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FILL","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORALL","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORREDIR","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER_POLICY","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_INTERACTIVE","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_LOWPRIORITY","features":[150]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_PINLINKTARGETS","features":[150]},{"name":"OFFLINEFILES_SETTING_PinLinkTargets","features":[150]},{"name":"OFFLINEFILES_SETTING_SCOPE_COMPUTER","features":[150]},{"name":"OFFLINEFILES_SETTING_SCOPE_USER","features":[150]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_BSTR","features":[150]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_UI4","features":[150]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR","features":[150]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR_DBLNULTERM","features":[150]},{"name":"OFFLINEFILES_SETTING_VALUE_TYPE","features":[150]},{"name":"OFFLINEFILES_SETTING_VALUE_UI4","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_ABORT","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPALLCHANGES","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLATEST","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLOCAL","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPREMOTE","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_LOG","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NONE","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NUMCODES","features":[150]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_SKIP","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_DEFAULT","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLATEST","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLOCAL","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPREMOTE","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_MASK","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_ASYNCPROGRESS","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_BACKGROUND","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_CONSOLE","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_FILLSPARSE","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_INTERACTIVE","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_LOWPRIORITY","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_NONEWFILESOUT","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORALL","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORREDIR","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER_POLICY","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINLINKTARGETS","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINNEWFILES","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SKIPSUSPENDEDDIRS","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCIN","features":[150]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCOUT","features":[150]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_ATTRIBUTES","features":[150]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_CHANGETIME","features":[150]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_FILESIZE","features":[150]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_NONE","features":[150]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_WRITETIME","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_CLIENT","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_SERVER","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_CLIENT_COPY","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_SERVER_COPY","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_PIN","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_PREPARE","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_CLIENT","features":[150]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_SERVER","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_ChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_DeletedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DeletedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_NoServerCopy","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirDeletedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_NoServerCopy","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnClient","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_DirSparseOnClient","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_ChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DeletedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DeletedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_NoServerCopy","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileDeletedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_NoServerCopy","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnClient","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_ChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DeletedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_LOCAL_KNOWN","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_NUMSTATES","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileChangedOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileOnServer","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_REMOTE_KNOWN","features":[150]},{"name":"OFFLINEFILES_SYNC_STATE_Stable","features":[150]},{"name":"OFFLINEFILES_TRANSITION_FLAG_CONSOLE","features":[150]},{"name":"OFFLINEFILES_TRANSITION_FLAG_INTERACTIVE","features":[150]},{"name":"OfflineFilesCache","features":[150]},{"name":"OfflineFilesEnable","features":[3,150]},{"name":"OfflineFilesQueryStatus","features":[3,150]},{"name":"OfflineFilesQueryStatusEx","features":[3,150]},{"name":"OfflineFilesSetting","features":[150]},{"name":"OfflineFilesStart","features":[150]}],"520":[{"name":"OPERATION_END_DISCARD","features":[151]},{"name":"OPERATION_END_PARAMETERS","features":[151]},{"name":"OPERATION_END_PARAMETERS_FLAGS","features":[151]},{"name":"OPERATION_START_FLAGS","features":[151]},{"name":"OPERATION_START_PARAMETERS","features":[151]},{"name":"OPERATION_START_TRACE_CURRENT_THREAD","features":[151]},{"name":"OperationEnd","features":[3,151]},{"name":"OperationStart","features":[3,151]}],"521":[{"name":"APPLICATION_USER_MODEL_ID_MAX_LENGTH","features":[132]},{"name":"APPLICATION_USER_MODEL_ID_MIN_LENGTH","features":[132]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE","features":[132]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[132]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_FIRST","features":[132]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_LAST","features":[132]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_MANIFEST","features":[132]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[132]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE","features":[132]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_APPLICATION","features":[132]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_RESOURCE","features":[132]},{"name":"APPX_CAPABILITIES","features":[132]},{"name":"APPX_CAPABILITY_APPOINTMENTS","features":[132]},{"name":"APPX_CAPABILITY_CLASS_ALL","features":[132]},{"name":"APPX_CAPABILITY_CLASS_CUSTOM","features":[132]},{"name":"APPX_CAPABILITY_CLASS_DEFAULT","features":[132]},{"name":"APPX_CAPABILITY_CLASS_GENERAL","features":[132]},{"name":"APPX_CAPABILITY_CLASS_RESTRICTED","features":[132]},{"name":"APPX_CAPABILITY_CLASS_TYPE","features":[132]},{"name":"APPX_CAPABILITY_CLASS_WINDOWS","features":[132]},{"name":"APPX_CAPABILITY_CONTACTS","features":[132]},{"name":"APPX_CAPABILITY_DOCUMENTS_LIBRARY","features":[132]},{"name":"APPX_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[132]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT","features":[132]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT_SERVER","features":[132]},{"name":"APPX_CAPABILITY_MUSIC_LIBRARY","features":[132]},{"name":"APPX_CAPABILITY_PICTURES_LIBRARY","features":[132]},{"name":"APPX_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[132]},{"name":"APPX_CAPABILITY_REMOVABLE_STORAGE","features":[132]},{"name":"APPX_CAPABILITY_SHARED_USER_CERTIFICATES","features":[132]},{"name":"APPX_CAPABILITY_VIDEOS_LIBRARY","features":[132]},{"name":"APPX_COMPRESSION_OPTION","features":[132]},{"name":"APPX_COMPRESSION_OPTION_FAST","features":[132]},{"name":"APPX_COMPRESSION_OPTION_MAXIMUM","features":[132]},{"name":"APPX_COMPRESSION_OPTION_NONE","features":[132]},{"name":"APPX_COMPRESSION_OPTION_NORMAL","features":[132]},{"name":"APPX_COMPRESSION_OPTION_SUPERFAST","features":[132]},{"name":"APPX_ENCRYPTED_EXEMPTIONS","features":[132]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTIONS","features":[132]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_DIFFUSION","features":[132]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_NONE","features":[132]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_PAGE_HASHING","features":[132]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS","features":[3,132]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS2","features":[132]},{"name":"APPX_FOOTPRINT_FILE_TYPE","features":[132]},{"name":"APPX_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[132]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CODEINTEGRITY","features":[132]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CONTENTGROUPMAP","features":[132]},{"name":"APPX_FOOTPRINT_FILE_TYPE_MANIFEST","features":[132]},{"name":"APPX_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[132]},{"name":"APPX_KEY_INFO","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM64","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2_NEUTRAL","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2_UNKNOWN","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X64","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86_ON_ARM64","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM64","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE_NEUTRAL","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE_X64","features":[132]},{"name":"APPX_PACKAGE_ARCHITECTURE_X86","features":[132]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTIONS","features":[132]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_LOCALIZED","features":[132]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_NONE","features":[132]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_SKIP_VALIDATION","features":[132]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION","features":[132]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION_APPEND_DELTA","features":[132]},{"name":"APPX_PACKAGE_SETTINGS","features":[3,132]},{"name":"APPX_PACKAGE_WRITER_PAYLOAD_STREAM","features":[132]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE","features":[132]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_CHANGE","features":[132]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_DETAILS","features":[132]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_END","features":[132]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_START","features":[132]},{"name":"ActivatePackageVirtualizationContext","features":[132]},{"name":"AddPackageDependency","features":[132]},{"name":"AddPackageDependencyOptions","features":[132]},{"name":"AddPackageDependencyOptions_None","features":[132]},{"name":"AddPackageDependencyOptions_PrependIfRankCollision","features":[132]},{"name":"AppPolicyClrCompat","features":[132]},{"name":"AppPolicyClrCompat_ClassicDesktop","features":[132]},{"name":"AppPolicyClrCompat_Other","features":[132]},{"name":"AppPolicyClrCompat_PackagedDesktop","features":[132]},{"name":"AppPolicyClrCompat_Universal","features":[132]},{"name":"AppPolicyCreateFileAccess","features":[132]},{"name":"AppPolicyCreateFileAccess_Full","features":[132]},{"name":"AppPolicyCreateFileAccess_Limited","features":[132]},{"name":"AppPolicyGetClrCompat","features":[3,132]},{"name":"AppPolicyGetCreateFileAccess","features":[3,132]},{"name":"AppPolicyGetLifecycleManagement","features":[3,132]},{"name":"AppPolicyGetMediaFoundationCodecLoading","features":[3,132]},{"name":"AppPolicyGetProcessTerminationMethod","features":[3,132]},{"name":"AppPolicyGetShowDeveloperDiagnostic","features":[3,132]},{"name":"AppPolicyGetThreadInitializationType","features":[3,132]},{"name":"AppPolicyGetWindowingModel","features":[3,132]},{"name":"AppPolicyLifecycleManagement","features":[132]},{"name":"AppPolicyLifecycleManagement_Managed","features":[132]},{"name":"AppPolicyLifecycleManagement_Unmanaged","features":[132]},{"name":"AppPolicyMediaFoundationCodecLoading","features":[132]},{"name":"AppPolicyMediaFoundationCodecLoading_All","features":[132]},{"name":"AppPolicyMediaFoundationCodecLoading_InboxOnly","features":[132]},{"name":"AppPolicyProcessTerminationMethod","features":[132]},{"name":"AppPolicyProcessTerminationMethod_ExitProcess","features":[132]},{"name":"AppPolicyProcessTerminationMethod_TerminateProcess","features":[132]},{"name":"AppPolicyShowDeveloperDiagnostic","features":[132]},{"name":"AppPolicyShowDeveloperDiagnostic_None","features":[132]},{"name":"AppPolicyShowDeveloperDiagnostic_ShowUI","features":[132]},{"name":"AppPolicyThreadInitializationType","features":[132]},{"name":"AppPolicyThreadInitializationType_InitializeWinRT","features":[132]},{"name":"AppPolicyThreadInitializationType_None","features":[132]},{"name":"AppPolicyWindowingModel","features":[132]},{"name":"AppPolicyWindowingModel_ClassicDesktop","features":[132]},{"name":"AppPolicyWindowingModel_ClassicPhone","features":[132]},{"name":"AppPolicyWindowingModel_None","features":[132]},{"name":"AppPolicyWindowingModel_Universal","features":[132]},{"name":"AppxBundleFactory","features":[132]},{"name":"AppxEncryptionFactory","features":[132]},{"name":"AppxFactory","features":[132]},{"name":"AppxPackageEditor","features":[132]},{"name":"AppxPackagingDiagnosticEventSinkManager","features":[132]},{"name":"CheckIsMSIXPackage","features":[3,132]},{"name":"ClosePackageInfo","features":[3,132]},{"name":"CreatePackageDependencyOptions","features":[132]},{"name":"CreatePackageDependencyOptions_DoNotVerifyDependencyResolution","features":[132]},{"name":"CreatePackageDependencyOptions_None","features":[132]},{"name":"CreatePackageDependencyOptions_ScopeIsSystem","features":[132]},{"name":"CreatePackageVirtualizationContext","features":[132]},{"name":"DX_FEATURE_LEVEL","features":[132]},{"name":"DX_FEATURE_LEVEL_10","features":[132]},{"name":"DX_FEATURE_LEVEL_11","features":[132]},{"name":"DX_FEATURE_LEVEL_9","features":[132]},{"name":"DX_FEATURE_LEVEL_UNSPECIFIED","features":[132]},{"name":"DeactivatePackageVirtualizationContext","features":[132]},{"name":"DeletePackageDependency","features":[132]},{"name":"DuplicatePackageVirtualizationContext","features":[132]},{"name":"FindPackagesByPackageFamily","features":[3,132]},{"name":"FormatApplicationUserModelId","features":[3,132]},{"name":"GetApplicationUserModelId","features":[3,132]},{"name":"GetApplicationUserModelIdFromToken","features":[3,132]},{"name":"GetCurrentApplicationUserModelId","features":[3,132]},{"name":"GetCurrentPackageFamilyName","features":[3,132]},{"name":"GetCurrentPackageFullName","features":[3,132]},{"name":"GetCurrentPackageId","features":[3,132]},{"name":"GetCurrentPackageInfo","features":[3,132]},{"name":"GetCurrentPackageInfo2","features":[3,132]},{"name":"GetCurrentPackageInfo3","features":[132]},{"name":"GetCurrentPackagePath","features":[3,132]},{"name":"GetCurrentPackagePath2","features":[3,132]},{"name":"GetCurrentPackageVirtualizationContext","features":[132]},{"name":"GetIdForPackageDependencyContext","features":[132]},{"name":"GetPackageApplicationIds","features":[3,132]},{"name":"GetPackageFamilyName","features":[3,132]},{"name":"GetPackageFamilyNameFromToken","features":[3,132]},{"name":"GetPackageFullName","features":[3,132]},{"name":"GetPackageFullNameFromToken","features":[3,132]},{"name":"GetPackageGraphRevisionId","features":[132]},{"name":"GetPackageId","features":[3,132]},{"name":"GetPackageInfo","features":[3,132]},{"name":"GetPackageInfo2","features":[3,132]},{"name":"GetPackagePath","features":[3,132]},{"name":"GetPackagePathByFullName","features":[3,132]},{"name":"GetPackagePathByFullName2","features":[3,132]},{"name":"GetPackagesByPackageFamily","features":[3,132]},{"name":"GetProcessesInVirtualizationContext","features":[3,132]},{"name":"GetResolvedPackageFullNameForPackageDependency","features":[132]},{"name":"GetStagedPackageOrigin","features":[3,132]},{"name":"GetStagedPackagePathByFullName","features":[3,132]},{"name":"GetStagedPackagePathByFullName2","features":[3,132]},{"name":"IAppxAppInstallerReader","features":[132]},{"name":"IAppxBlockMapBlock","features":[132]},{"name":"IAppxBlockMapBlocksEnumerator","features":[132]},{"name":"IAppxBlockMapFile","features":[132]},{"name":"IAppxBlockMapFilesEnumerator","features":[132]},{"name":"IAppxBlockMapReader","features":[132]},{"name":"IAppxBundleFactory","features":[132]},{"name":"IAppxBundleFactory2","features":[132]},{"name":"IAppxBundleManifestOptionalBundleInfo","features":[132]},{"name":"IAppxBundleManifestOptionalBundleInfoEnumerator","features":[132]},{"name":"IAppxBundleManifestPackageInfo","features":[132]},{"name":"IAppxBundleManifestPackageInfo2","features":[132]},{"name":"IAppxBundleManifestPackageInfo3","features":[132]},{"name":"IAppxBundleManifestPackageInfo4","features":[132]},{"name":"IAppxBundleManifestPackageInfoEnumerator","features":[132]},{"name":"IAppxBundleManifestReader","features":[132]},{"name":"IAppxBundleManifestReader2","features":[132]},{"name":"IAppxBundleReader","features":[132]},{"name":"IAppxBundleWriter","features":[132]},{"name":"IAppxBundleWriter2","features":[132]},{"name":"IAppxBundleWriter3","features":[132]},{"name":"IAppxBundleWriter4","features":[132]},{"name":"IAppxContentGroup","features":[132]},{"name":"IAppxContentGroupFilesEnumerator","features":[132]},{"name":"IAppxContentGroupMapReader","features":[132]},{"name":"IAppxContentGroupMapWriter","features":[132]},{"name":"IAppxContentGroupsEnumerator","features":[132]},{"name":"IAppxDigestProvider","features":[132]},{"name":"IAppxEncryptedBundleWriter","features":[132]},{"name":"IAppxEncryptedBundleWriter2","features":[132]},{"name":"IAppxEncryptedBundleWriter3","features":[132]},{"name":"IAppxEncryptedPackageWriter","features":[132]},{"name":"IAppxEncryptedPackageWriter2","features":[132]},{"name":"IAppxEncryptionFactory","features":[132]},{"name":"IAppxEncryptionFactory2","features":[132]},{"name":"IAppxEncryptionFactory3","features":[132]},{"name":"IAppxEncryptionFactory4","features":[132]},{"name":"IAppxEncryptionFactory5","features":[132]},{"name":"IAppxFactory","features":[132]},{"name":"IAppxFactory2","features":[132]},{"name":"IAppxFactory3","features":[132]},{"name":"IAppxFile","features":[132]},{"name":"IAppxFilesEnumerator","features":[132]},{"name":"IAppxManifestApplication","features":[132]},{"name":"IAppxManifestApplicationsEnumerator","features":[132]},{"name":"IAppxManifestCapabilitiesEnumerator","features":[132]},{"name":"IAppxManifestDeviceCapabilitiesEnumerator","features":[132]},{"name":"IAppxManifestDriverConstraint","features":[132]},{"name":"IAppxManifestDriverConstraintsEnumerator","features":[132]},{"name":"IAppxManifestDriverDependenciesEnumerator","features":[132]},{"name":"IAppxManifestDriverDependency","features":[132]},{"name":"IAppxManifestHostRuntimeDependenciesEnumerator","features":[132]},{"name":"IAppxManifestHostRuntimeDependency","features":[132]},{"name":"IAppxManifestHostRuntimeDependency2","features":[132]},{"name":"IAppxManifestMainPackageDependenciesEnumerator","features":[132]},{"name":"IAppxManifestMainPackageDependency","features":[132]},{"name":"IAppxManifestOSPackageDependenciesEnumerator","features":[132]},{"name":"IAppxManifestOSPackageDependency","features":[132]},{"name":"IAppxManifestOptionalPackageInfo","features":[132]},{"name":"IAppxManifestPackageDependenciesEnumerator","features":[132]},{"name":"IAppxManifestPackageDependency","features":[132]},{"name":"IAppxManifestPackageDependency2","features":[132]},{"name":"IAppxManifestPackageDependency3","features":[132]},{"name":"IAppxManifestPackageId","features":[132]},{"name":"IAppxManifestPackageId2","features":[132]},{"name":"IAppxManifestProperties","features":[132]},{"name":"IAppxManifestQualifiedResource","features":[132]},{"name":"IAppxManifestQualifiedResourcesEnumerator","features":[132]},{"name":"IAppxManifestReader","features":[132]},{"name":"IAppxManifestReader2","features":[132]},{"name":"IAppxManifestReader3","features":[132]},{"name":"IAppxManifestReader4","features":[132]},{"name":"IAppxManifestReader5","features":[132]},{"name":"IAppxManifestReader6","features":[132]},{"name":"IAppxManifestReader7","features":[132]},{"name":"IAppxManifestResourcesEnumerator","features":[132]},{"name":"IAppxManifestTargetDeviceFamiliesEnumerator","features":[132]},{"name":"IAppxManifestTargetDeviceFamily","features":[132]},{"name":"IAppxPackageEditor","features":[132]},{"name":"IAppxPackageReader","features":[132]},{"name":"IAppxPackageWriter","features":[132]},{"name":"IAppxPackageWriter2","features":[132]},{"name":"IAppxPackageWriter3","features":[132]},{"name":"IAppxPackagingDiagnosticEventSink","features":[132]},{"name":"IAppxPackagingDiagnosticEventSinkManager","features":[132]},{"name":"IAppxSourceContentGroupMapReader","features":[132]},{"name":"OpenPackageInfoByFullName","features":[3,132]},{"name":"OpenPackageInfoByFullNameForUser","features":[3,6,132]},{"name":"PACKAGEDEPENDENCY_CONTEXT","features":[132]},{"name":"PACKAGE_APPLICATIONS_MAX_COUNT","features":[132]},{"name":"PACKAGE_APPLICATIONS_MIN_COUNT","features":[132]},{"name":"PACKAGE_ARCHITECTURE_MAX_LENGTH","features":[132]},{"name":"PACKAGE_ARCHITECTURE_MIN_LENGTH","features":[132]},{"name":"PACKAGE_DEPENDENCY_RANK_DEFAULT","features":[132]},{"name":"PACKAGE_FAMILY_MAX_RESOURCE_PACKAGES","features":[132]},{"name":"PACKAGE_FAMILY_MIN_RESOURCE_PACKAGES","features":[132]},{"name":"PACKAGE_FAMILY_NAME_MAX_LENGTH","features":[132]},{"name":"PACKAGE_FAMILY_NAME_MIN_LENGTH","features":[132]},{"name":"PACKAGE_FILTER_ALL_LOADED","features":[132]},{"name":"PACKAGE_FILTER_BUNDLE","features":[132]},{"name":"PACKAGE_FILTER_DIRECT","features":[132]},{"name":"PACKAGE_FILTER_DYNAMIC","features":[132]},{"name":"PACKAGE_FILTER_HEAD","features":[132]},{"name":"PACKAGE_FILTER_HOSTRUNTIME","features":[132]},{"name":"PACKAGE_FILTER_IS_IN_RELATED_SET","features":[132]},{"name":"PACKAGE_FILTER_OPTIONAL","features":[132]},{"name":"PACKAGE_FILTER_RESOURCE","features":[132]},{"name":"PACKAGE_FILTER_STATIC","features":[132]},{"name":"PACKAGE_FULL_NAME_MAX_LENGTH","features":[132]},{"name":"PACKAGE_FULL_NAME_MIN_LENGTH","features":[132]},{"name":"PACKAGE_GRAPH_MAX_SIZE","features":[132]},{"name":"PACKAGE_GRAPH_MIN_SIZE","features":[132]},{"name":"PACKAGE_ID","features":[132]},{"name":"PACKAGE_ID","features":[132]},{"name":"PACKAGE_INFO","features":[132]},{"name":"PACKAGE_INFO","features":[132]},{"name":"PACKAGE_INFORMATION_BASIC","features":[132]},{"name":"PACKAGE_INFORMATION_FULL","features":[132]},{"name":"PACKAGE_MAX_DEPENDENCIES","features":[132]},{"name":"PACKAGE_MIN_DEPENDENCIES","features":[132]},{"name":"PACKAGE_NAME_MAX_LENGTH","features":[132]},{"name":"PACKAGE_NAME_MIN_LENGTH","features":[132]},{"name":"PACKAGE_PROPERTY_BUNDLE","features":[132]},{"name":"PACKAGE_PROPERTY_DEVELOPMENT_MODE","features":[132]},{"name":"PACKAGE_PROPERTY_DYNAMIC","features":[132]},{"name":"PACKAGE_PROPERTY_FRAMEWORK","features":[132]},{"name":"PACKAGE_PROPERTY_HOSTRUNTIME","features":[132]},{"name":"PACKAGE_PROPERTY_IS_IN_RELATED_SET","features":[132]},{"name":"PACKAGE_PROPERTY_OPTIONAL","features":[132]},{"name":"PACKAGE_PROPERTY_RESOURCE","features":[132]},{"name":"PACKAGE_PROPERTY_STATIC","features":[132]},{"name":"PACKAGE_PUBLISHERID_MAX_LENGTH","features":[132]},{"name":"PACKAGE_PUBLISHERID_MIN_LENGTH","features":[132]},{"name":"PACKAGE_PUBLISHER_MAX_LENGTH","features":[132]},{"name":"PACKAGE_PUBLISHER_MIN_LENGTH","features":[132]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MAX_LENGTH","features":[132]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MIN_LENGTH","features":[132]},{"name":"PACKAGE_RESOURCEID_MAX_LENGTH","features":[132]},{"name":"PACKAGE_RESOURCEID_MIN_LENGTH","features":[132]},{"name":"PACKAGE_VERSION","features":[132]},{"name":"PACKAGE_VERSION_MAX_LENGTH","features":[132]},{"name":"PACKAGE_VERSION_MIN_LENGTH","features":[132]},{"name":"PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE","features":[132]},{"name":"PackageDependencyLifetimeKind","features":[132]},{"name":"PackageDependencyLifetimeKind_FilePath","features":[132]},{"name":"PackageDependencyLifetimeKind_Process","features":[132]},{"name":"PackageDependencyLifetimeKind_RegistryKey","features":[132]},{"name":"PackageDependencyProcessorArchitectures","features":[132]},{"name":"PackageDependencyProcessorArchitectures_Arm","features":[132]},{"name":"PackageDependencyProcessorArchitectures_Arm64","features":[132]},{"name":"PackageDependencyProcessorArchitectures_Neutral","features":[132]},{"name":"PackageDependencyProcessorArchitectures_None","features":[132]},{"name":"PackageDependencyProcessorArchitectures_X64","features":[132]},{"name":"PackageDependencyProcessorArchitectures_X86","features":[132]},{"name":"PackageDependencyProcessorArchitectures_X86A64","features":[132]},{"name":"PackageFamilyNameFromFullName","features":[3,132]},{"name":"PackageFamilyNameFromId","features":[3,132]},{"name":"PackageFullNameFromId","features":[3,132]},{"name":"PackageIdFromFullName","features":[3,132]},{"name":"PackageInfo3Type","features":[132]},{"name":"PackageInfo3Type_PackageInfoGeneration","features":[132]},{"name":"PackageNameAndPublisherIdFromFamilyName","features":[3,132]},{"name":"PackageOrigin","features":[132]},{"name":"PackageOrigin_DeveloperSigned","features":[132]},{"name":"PackageOrigin_DeveloperUnsigned","features":[132]},{"name":"PackageOrigin_Inbox","features":[132]},{"name":"PackageOrigin_LineOfBusiness","features":[132]},{"name":"PackageOrigin_Store","features":[132]},{"name":"PackageOrigin_Unknown","features":[132]},{"name":"PackageOrigin_Unsigned","features":[132]},{"name":"PackagePathType","features":[132]},{"name":"PackagePathType_Effective","features":[132]},{"name":"PackagePathType_EffectiveExternal","features":[132]},{"name":"PackagePathType_Install","features":[132]},{"name":"PackagePathType_MachineExternal","features":[132]},{"name":"PackagePathType_Mutable","features":[132]},{"name":"PackagePathType_UserExternal","features":[132]},{"name":"ParseApplicationUserModelId","features":[3,132]},{"name":"ReleasePackageVirtualizationContext","features":[132]},{"name":"RemovePackageDependency","features":[132]},{"name":"TryCreatePackageDependency","features":[6,132]},{"name":"VerifyApplicationUserModelId","features":[3,132]},{"name":"VerifyPackageFamilyName","features":[3,132]},{"name":"VerifyPackageFullName","features":[3,132]},{"name":"VerifyPackageId","features":[3,132]},{"name":"VerifyPackageRelativeApplicationId","features":[3,132]},{"name":"_PACKAGE_INFO_REFERENCE","features":[132]}],"523":[{"name":"PRJ_CALLBACKS","features":[3,152]},{"name":"PRJ_CALLBACK_DATA","features":[152]},{"name":"PRJ_CALLBACK_DATA_FLAGS","features":[152]},{"name":"PRJ_CANCEL_COMMAND_CB","features":[152]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RESTART_SCAN","features":[152]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RETURN_SINGLE_ENTRY","features":[152]},{"name":"PRJ_COMPLETE_COMMAND_EXTENDED_PARAMETERS","features":[152]},{"name":"PRJ_COMPLETE_COMMAND_TYPE","features":[152]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_ENUMERATION","features":[152]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_NOTIFICATION","features":[152]},{"name":"PRJ_DIR_ENTRY_BUFFER_HANDLE","features":[152]},{"name":"PRJ_END_DIRECTORY_ENUMERATION_CB","features":[152]},{"name":"PRJ_EXTENDED_INFO","features":[152]},{"name":"PRJ_EXT_INFO_TYPE","features":[152]},{"name":"PRJ_EXT_INFO_TYPE_SYMLINK","features":[152]},{"name":"PRJ_FILE_BASIC_INFO","features":[3,152]},{"name":"PRJ_FILE_STATE","features":[152]},{"name":"PRJ_FILE_STATE_DIRTY_PLACEHOLDER","features":[152]},{"name":"PRJ_FILE_STATE_FULL","features":[152]},{"name":"PRJ_FILE_STATE_HYDRATED_PLACEHOLDER","features":[152]},{"name":"PRJ_FILE_STATE_PLACEHOLDER","features":[152]},{"name":"PRJ_FILE_STATE_TOMBSTONE","features":[152]},{"name":"PRJ_FLAG_NONE","features":[152]},{"name":"PRJ_FLAG_USE_NEGATIVE_PATH_CACHE","features":[152]},{"name":"PRJ_GET_DIRECTORY_ENUMERATION_CB","features":[152]},{"name":"PRJ_GET_FILE_DATA_CB","features":[152]},{"name":"PRJ_GET_PLACEHOLDER_INFO_CB","features":[152]},{"name":"PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT","features":[152]},{"name":"PRJ_NOTIFICATION","features":[152]},{"name":"PRJ_NOTIFICATION_CB","features":[3,152]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_DELETED","features":[152]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[152]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[152]},{"name":"PRJ_NOTIFICATION_FILE_OPENED","features":[152]},{"name":"PRJ_NOTIFICATION_FILE_OVERWRITTEN","features":[152]},{"name":"PRJ_NOTIFICATION_FILE_PRE_CONVERT_TO_FULL","features":[152]},{"name":"PRJ_NOTIFICATION_FILE_RENAMED","features":[152]},{"name":"PRJ_NOTIFICATION_HARDLINK_CREATED","features":[152]},{"name":"PRJ_NOTIFICATION_MAPPING","features":[152]},{"name":"PRJ_NOTIFICATION_NEW_FILE_CREATED","features":[152]},{"name":"PRJ_NOTIFICATION_PARAMETERS","features":[3,152]},{"name":"PRJ_NOTIFICATION_PRE_DELETE","features":[152]},{"name":"PRJ_NOTIFICATION_PRE_RENAME","features":[152]},{"name":"PRJ_NOTIFICATION_PRE_SET_HARDLINK","features":[152]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_DELETED","features":[152]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[152]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[152]},{"name":"PRJ_NOTIFY_FILE_OPENED","features":[152]},{"name":"PRJ_NOTIFY_FILE_OVERWRITTEN","features":[152]},{"name":"PRJ_NOTIFY_FILE_PRE_CONVERT_TO_FULL","features":[152]},{"name":"PRJ_NOTIFY_FILE_RENAMED","features":[152]},{"name":"PRJ_NOTIFY_HARDLINK_CREATED","features":[152]},{"name":"PRJ_NOTIFY_NEW_FILE_CREATED","features":[152]},{"name":"PRJ_NOTIFY_NONE","features":[152]},{"name":"PRJ_NOTIFY_PRE_DELETE","features":[152]},{"name":"PRJ_NOTIFY_PRE_RENAME","features":[152]},{"name":"PRJ_NOTIFY_PRE_SET_HARDLINK","features":[152]},{"name":"PRJ_NOTIFY_SUPPRESS_NOTIFICATIONS","features":[152]},{"name":"PRJ_NOTIFY_TYPES","features":[152]},{"name":"PRJ_NOTIFY_USE_EXISTING_MASK","features":[152]},{"name":"PRJ_PLACEHOLDER_ID","features":[152]},{"name":"PRJ_PLACEHOLDER_ID_LENGTH","features":[152]},{"name":"PRJ_PLACEHOLDER_INFO","features":[3,152]},{"name":"PRJ_PLACEHOLDER_VERSION_INFO","features":[152]},{"name":"PRJ_QUERY_FILE_NAME_CB","features":[152]},{"name":"PRJ_STARTVIRTUALIZING_FLAGS","features":[152]},{"name":"PRJ_STARTVIRTUALIZING_OPTIONS","features":[152]},{"name":"PRJ_START_DIRECTORY_ENUMERATION_CB","features":[152]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_DATA","features":[152]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_METADATA","features":[152]},{"name":"PRJ_UPDATE_ALLOW_READ_ONLY","features":[152]},{"name":"PRJ_UPDATE_ALLOW_TOMBSTONE","features":[152]},{"name":"PRJ_UPDATE_FAILURE_CAUSES","features":[152]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_DATA","features":[152]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_METADATA","features":[152]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_NONE","features":[152]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_READ_ONLY","features":[152]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_TOMBSTONE","features":[152]},{"name":"PRJ_UPDATE_MAX_VAL","features":[152]},{"name":"PRJ_UPDATE_NONE","features":[152]},{"name":"PRJ_UPDATE_RESERVED1","features":[152]},{"name":"PRJ_UPDATE_RESERVED2","features":[152]},{"name":"PRJ_UPDATE_TYPES","features":[152]},{"name":"PRJ_VIRTUALIZATION_INSTANCE_INFO","features":[152]},{"name":"PrjAllocateAlignedBuffer","features":[152]},{"name":"PrjClearNegativePathCache","features":[152]},{"name":"PrjCompleteCommand","features":[152]},{"name":"PrjDeleteFile","features":[152]},{"name":"PrjDoesNameContainWildCards","features":[3,152]},{"name":"PrjFileNameCompare","features":[152]},{"name":"PrjFileNameMatch","features":[3,152]},{"name":"PrjFillDirEntryBuffer","features":[3,152]},{"name":"PrjFillDirEntryBuffer2","features":[3,152]},{"name":"PrjFreeAlignedBuffer","features":[152]},{"name":"PrjGetOnDiskFileState","features":[152]},{"name":"PrjGetVirtualizationInstanceInfo","features":[152]},{"name":"PrjMarkDirectoryAsPlaceholder","features":[152]},{"name":"PrjStartVirtualizing","features":[3,152]},{"name":"PrjStopVirtualizing","features":[152]},{"name":"PrjUpdateFileIfNeeded","features":[3,152]},{"name":"PrjWriteFileData","features":[152]},{"name":"PrjWritePlaceholderInfo","features":[3,152]},{"name":"PrjWritePlaceholderInfo2","features":[3,152]}],"524":[{"name":"JET_API_PTR","features":[148]},{"name":"JET_HANDLE","features":[148]},{"name":"JET_TABLEID","features":[148]}],"525":[{"name":"APPLY_SNAPSHOT_VHDSET_FLAG","features":[153]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_NONE","features":[153]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[153]},{"name":"APPLY_SNAPSHOT_VHDSET_PARAMETERS","features":[153]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION","features":[153]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_1","features":[153]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_AT_BOOT","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_BYPASS_DEFAULT_ENCRYPTION_POLICY","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NON_PNP","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_DRIVE_LETTER","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_LOCAL_HOST","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_SECURITY_DESCRIPTOR","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_PERMANENT_LIFETIME","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_READ_ONLY","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_REGISTER_VOLUME","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_RESTRICTED_RANGE","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_SINGLE_PARTITION","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_VERSION","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_2","features":[153]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"AddVirtualDiskParent","features":[3,153]},{"name":"ApplySnapshotVhdSet","features":[3,153]},{"name":"AttachVirtualDisk","features":[3,6,153,8]},{"name":"BreakMirrorVirtualDisk","features":[3,153]},{"name":"COMPACT_VIRTUAL_DISK_FLAG","features":[153]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_BLOCK_MOVES","features":[153]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_ZERO_SCAN","features":[153]},{"name":"COMPACT_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"COMPACT_VIRTUAL_DISK_VERSION","features":[153]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_CREATE_BACKING_STORAGE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_DO_NOT_COPY_METADATA_FROM_PARENT","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_FULL_PHYSICAL_ALLOCATION","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PMEM_COMPATIBLE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PRESERVE_PARENT_CHANGE_TRACKING_STATE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PREVENT_WRITES_TO_SOURCE_DISK","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SPARSE_FILE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_USE_CHANGE_TRACKING_SOURCE_LIMIT","features":[153]},{"name":"CREATE_VIRTUAL_DISK_FLAG_VHD_SET_USE_ORIGINAL_BACKING_STORAGE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_BLOCK_SIZE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_SECTOR_SIZE","features":[153]},{"name":"CREATE_VIRTUAL_DISK_VERSION","features":[153]},{"name":"CREATE_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"CREATE_VIRTUAL_DISK_VERSION_2","features":[153]},{"name":"CREATE_VIRTUAL_DISK_VERSION_3","features":[153]},{"name":"CREATE_VIRTUAL_DISK_VERSION_4","features":[153]},{"name":"CREATE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"CompactVirtualDisk","features":[3,153,8]},{"name":"CompleteForkVirtualDisk","features":[3,153]},{"name":"CreateVirtualDisk","features":[3,6,153,8]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG","features":[153]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_NONE","features":[153]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_PERSIST_RCT","features":[153]},{"name":"DELETE_SNAPSHOT_VHDSET_PARAMETERS","features":[153]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION","features":[153]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_1","features":[153]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[153]},{"name":"DEPENDENT_DISK_FLAG","features":[153]},{"name":"DEPENDENT_DISK_FLAG_ALWAYS_ALLOW_SPARSE","features":[153]},{"name":"DEPENDENT_DISK_FLAG_FULLY_ALLOCATED","features":[153]},{"name":"DEPENDENT_DISK_FLAG_MULT_BACKING_FILES","features":[153]},{"name":"DEPENDENT_DISK_FLAG_NONE","features":[153]},{"name":"DEPENDENT_DISK_FLAG_NO_DRIVE_LETTER","features":[153]},{"name":"DEPENDENT_DISK_FLAG_NO_HOST_DISK","features":[153]},{"name":"DEPENDENT_DISK_FLAG_PARENT","features":[153]},{"name":"DEPENDENT_DISK_FLAG_PERMANENT_LIFETIME","features":[153]},{"name":"DEPENDENT_DISK_FLAG_READ_ONLY","features":[153]},{"name":"DEPENDENT_DISK_FLAG_REMOTE","features":[153]},{"name":"DEPENDENT_DISK_FLAG_REMOVABLE","features":[153]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[153]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[153]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME","features":[153]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME_PARENT","features":[153]},{"name":"DETACH_VIRTUAL_DISK_FLAG","features":[153]},{"name":"DETACH_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"DeleteSnapshotVhdSet","features":[3,153]},{"name":"DeleteVirtualDiskMetadata","features":[3,153]},{"name":"DetachVirtualDisk","features":[3,153]},{"name":"EXPAND_VIRTUAL_DISK_FLAG","features":[153]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NOTIFY_CHANGE","features":[153]},{"name":"EXPAND_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"EXPAND_VIRTUAL_DISK_VERSION","features":[153]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"EnumerateVirtualDiskMetadata","features":[3,153]},{"name":"ExpandVirtualDisk","features":[3,153,8]},{"name":"FORK_VIRTUAL_DISK_FLAG","features":[153]},{"name":"FORK_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[153]},{"name":"FORK_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"FORK_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"FORK_VIRTUAL_DISK_VERSION","features":[153]},{"name":"FORK_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"FORK_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"ForkVirtualDisk","features":[3,153,8]},{"name":"GET_STORAGE_DEPENDENCY_FLAG","features":[153]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_DISK_HANDLE","features":[153]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_HOST_VOLUMES","features":[153]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_NONE","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO","features":[3,153]},{"name":"GET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_FRAGMENTATION","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_IS_4K_ALIGNED","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_IS_LOADED","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_IDENTIFIER","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_LOCATION","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_TIMESTAMP","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_PHYSICAL_DISK","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_PROVIDER_SUBTYPE","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_SIZE","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_VERSION","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_VHD_PHYSICAL_SECTOR_SIZE","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[153]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_STORAGE_TYPE","features":[153]},{"name":"GetAllAttachedVirtualDiskPhysicalPaths","features":[3,153]},{"name":"GetStorageDependencyInformation","features":[3,153]},{"name":"GetVirtualDiskInformation","features":[3,153]},{"name":"GetVirtualDiskMetadata","features":[3,153]},{"name":"GetVirtualDiskOperationProgress","features":[3,153,8]},{"name":"GetVirtualDiskPhysicalPath","features":[3,153]},{"name":"MERGE_VIRTUAL_DISK_DEFAULT_MERGE_DEPTH","features":[153]},{"name":"MERGE_VIRTUAL_DISK_FLAG","features":[153]},{"name":"MERGE_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"MERGE_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"MERGE_VIRTUAL_DISK_VERSION","features":[153]},{"name":"MERGE_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"MERGE_VIRTUAL_DISK_VERSION_2","features":[153]},{"name":"MERGE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_FLAG","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_ENABLE_SMB_COMPRESSION","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_IS_LIVE_MIGRATION","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_SKIP_MIRROR_ACTIVATION","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_VERSION","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"MODIFY_VHDSET_DEFAULT_SNAPSHOT_PATH","features":[153]},{"name":"MODIFY_VHDSET_FLAG","features":[153]},{"name":"MODIFY_VHDSET_FLAG_NONE","features":[153]},{"name":"MODIFY_VHDSET_FLAG_WRITEABLE_SNAPSHOT","features":[153]},{"name":"MODIFY_VHDSET_PARAMETERS","features":[153]},{"name":"MODIFY_VHDSET_REMOVE_SNAPSHOT","features":[153]},{"name":"MODIFY_VHDSET_SNAPSHOT_PATH","features":[153]},{"name":"MODIFY_VHDSET_UNSPECIFIED","features":[153]},{"name":"MODIFY_VHDSET_VERSION","features":[153]},{"name":"MergeVirtualDisk","features":[3,153,8]},{"name":"MirrorVirtualDisk","features":[3,153,8]},{"name":"ModifyVhdSet","features":[3,153]},{"name":"OPEN_VIRTUAL_DISK_FLAG","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BLANK_FILE","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BOOT_DRIVE","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CACHED_IO","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CUSTOM_DIFF_CHAIN","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_IGNORE_RELATIVE_PARENT_LOCATOR","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_PARENTS","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_WRITE_HARDENING","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_PARENT_CACHED_IO","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[153]},{"name":"OPEN_VIRTUAL_DISK_FLAG_VHDSET_FILE_ONLY","features":[153]},{"name":"OPEN_VIRTUAL_DISK_PARAMETERS","features":[3,153]},{"name":"OPEN_VIRTUAL_DISK_RW_DEPTH_DEFAULT","features":[153]},{"name":"OPEN_VIRTUAL_DISK_VERSION","features":[153]},{"name":"OPEN_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"OPEN_VIRTUAL_DISK_VERSION_2","features":[153]},{"name":"OPEN_VIRTUAL_DISK_VERSION_3","features":[153]},{"name":"OPEN_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"OpenVirtualDisk","features":[3,153]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG","features":[153]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_RANGE","features":[153]},{"name":"QueryChangesVirtualDisk","features":[3,153]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG","features":[153]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"RAW_SCSI_VIRTUAL_DISK_PARAMETERS","features":[3,153]},{"name":"RAW_SCSI_VIRTUAL_DISK_RESPONSE","features":[153]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION","features":[153]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_FLAG","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_ALLOW_UNSAFE_VIRTUAL_SIZE","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_NONE","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_RESIZE_TO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_PARAMETERS","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_VERSION","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_1","features":[153]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[153]},{"name":"RawSCSIVirtualDisk","features":[3,153]},{"name":"ResizeVirtualDisk","features":[3,153,8]},{"name":"SET_VIRTUAL_DISK_INFO","features":[3,153]},{"name":"SET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_LOCATOR","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH_WITH_DEPTH","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_PHYSICAL_SECTOR_SIZE","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_VERSION","features":[153]},{"name":"SET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[153]},{"name":"STORAGE_DEPENDENCY_INFO","features":[153]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_1","features":[153]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_2","features":[153]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION","features":[153]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_1","features":[153]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_2","features":[153]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_UNSPECIFIED","features":[153]},{"name":"SetVirtualDiskInformation","features":[3,153]},{"name":"SetVirtualDiskMetadata","features":[3,153]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG","features":[153]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_NONE","features":[153]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[153]},{"name":"TAKE_SNAPSHOT_VHDSET_PARAMETERS","features":[153]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION","features":[153]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_1","features":[153]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[153]},{"name":"TakeSnapshotVhdSet","features":[3,153]},{"name":"VIRTUAL_DISK_ACCESS_ALL","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RO","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RW","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_CREATE","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_DETACH","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_GET_INFO","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_MASK","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_METAOPS","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_NONE","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_READ","features":[153]},{"name":"VIRTUAL_DISK_ACCESS_WRITABLE","features":[153]},{"name":"VIRTUAL_DISK_MAXIMUM_CHANGE_TRACKING_ID_LENGTH","features":[153]},{"name":"VIRTUAL_DISK_PROGRESS","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_ISO","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_UNKNOWN","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHD","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDSET","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDX","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_MICROSOFT","features":[153]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_UNKNOWN","features":[153]}],"528":[{"name":"ABORTPROC","features":[3,14,77]},{"name":"AbortDoc","features":[14,77]},{"name":"DC_BINNAMES","features":[77]},{"name":"DC_BINS","features":[77]},{"name":"DC_COLLATE","features":[77]},{"name":"DC_COLORDEVICE","features":[77]},{"name":"DC_COPIES","features":[77]},{"name":"DC_DRIVER","features":[77]},{"name":"DC_DUPLEX","features":[77]},{"name":"DC_ENUMRESOLUTIONS","features":[77]},{"name":"DC_EXTRA","features":[77]},{"name":"DC_FIELDS","features":[77]},{"name":"DC_FILEDEPENDENCIES","features":[77]},{"name":"DC_MAXEXTENT","features":[77]},{"name":"DC_MEDIAREADY","features":[77]},{"name":"DC_MEDIATYPENAMES","features":[77]},{"name":"DC_MEDIATYPES","features":[77]},{"name":"DC_MINEXTENT","features":[77]},{"name":"DC_NUP","features":[77]},{"name":"DC_ORIENTATION","features":[77]},{"name":"DC_PAPERNAMES","features":[77]},{"name":"DC_PAPERS","features":[77]},{"name":"DC_PAPERSIZE","features":[77]},{"name":"DC_PERSONALITY","features":[77]},{"name":"DC_PRINTERMEM","features":[77]},{"name":"DC_PRINTRATE","features":[77]},{"name":"DC_PRINTRATEPPM","features":[77]},{"name":"DC_PRINTRATEUNIT","features":[77]},{"name":"DC_SIZE","features":[77]},{"name":"DC_STAPLE","features":[77]},{"name":"DC_TRUETYPE","features":[77]},{"name":"DC_VERSION","features":[77]},{"name":"DOCINFOA","features":[77]},{"name":"DOCINFOW","features":[77]},{"name":"DRAWPATRECT","features":[3,77]},{"name":"DeviceCapabilitiesA","features":[3,14,77]},{"name":"DeviceCapabilitiesW","features":[3,14,77]},{"name":"EndDoc","features":[14,77]},{"name":"EndPage","features":[14,77]},{"name":"Escape","features":[14,77]},{"name":"ExtEscape","features":[14,77]},{"name":"IXpsDocumentPackageTarget","features":[77]},{"name":"IXpsDocumentPackageTarget3D","features":[77]},{"name":"IXpsOMBrush","features":[77]},{"name":"IXpsOMCanvas","features":[77]},{"name":"IXpsOMColorProfileResource","features":[77]},{"name":"IXpsOMColorProfileResourceCollection","features":[77]},{"name":"IXpsOMCoreProperties","features":[77]},{"name":"IXpsOMDashCollection","features":[77]},{"name":"IXpsOMDictionary","features":[77]},{"name":"IXpsOMDocument","features":[77]},{"name":"IXpsOMDocumentCollection","features":[77]},{"name":"IXpsOMDocumentSequence","features":[77]},{"name":"IXpsOMDocumentStructureResource","features":[77]},{"name":"IXpsOMFontResource","features":[77]},{"name":"IXpsOMFontResourceCollection","features":[77]},{"name":"IXpsOMGeometry","features":[77]},{"name":"IXpsOMGeometryFigure","features":[77]},{"name":"IXpsOMGeometryFigureCollection","features":[77]},{"name":"IXpsOMGlyphs","features":[77]},{"name":"IXpsOMGlyphsEditor","features":[77]},{"name":"IXpsOMGradientBrush","features":[77]},{"name":"IXpsOMGradientStop","features":[77]},{"name":"IXpsOMGradientStopCollection","features":[77]},{"name":"IXpsOMImageBrush","features":[77]},{"name":"IXpsOMImageResource","features":[77]},{"name":"IXpsOMImageResourceCollection","features":[77]},{"name":"IXpsOMLinearGradientBrush","features":[77]},{"name":"IXpsOMMatrixTransform","features":[77]},{"name":"IXpsOMNameCollection","features":[77]},{"name":"IXpsOMObjectFactory","features":[77]},{"name":"IXpsOMObjectFactory1","features":[77]},{"name":"IXpsOMPackage","features":[77]},{"name":"IXpsOMPackage1","features":[77]},{"name":"IXpsOMPackageTarget","features":[77]},{"name":"IXpsOMPackageWriter","features":[77]},{"name":"IXpsOMPackageWriter3D","features":[77]},{"name":"IXpsOMPage","features":[77]},{"name":"IXpsOMPage1","features":[77]},{"name":"IXpsOMPageReference","features":[77]},{"name":"IXpsOMPageReferenceCollection","features":[77]},{"name":"IXpsOMPart","features":[77]},{"name":"IXpsOMPartResources","features":[77]},{"name":"IXpsOMPartUriCollection","features":[77]},{"name":"IXpsOMPath","features":[77]},{"name":"IXpsOMPrintTicketResource","features":[77]},{"name":"IXpsOMRadialGradientBrush","features":[77]},{"name":"IXpsOMRemoteDictionaryResource","features":[77]},{"name":"IXpsOMRemoteDictionaryResource1","features":[77]},{"name":"IXpsOMRemoteDictionaryResourceCollection","features":[77]},{"name":"IXpsOMResource","features":[77]},{"name":"IXpsOMShareable","features":[77]},{"name":"IXpsOMSignatureBlockResource","features":[77]},{"name":"IXpsOMSignatureBlockResourceCollection","features":[77]},{"name":"IXpsOMSolidColorBrush","features":[77]},{"name":"IXpsOMStoryFragmentsResource","features":[77]},{"name":"IXpsOMThumbnailGenerator","features":[77]},{"name":"IXpsOMTileBrush","features":[77]},{"name":"IXpsOMVisual","features":[77]},{"name":"IXpsOMVisualBrush","features":[77]},{"name":"IXpsOMVisualCollection","features":[77]},{"name":"IXpsSignature","features":[77]},{"name":"IXpsSignatureBlock","features":[77]},{"name":"IXpsSignatureBlockCollection","features":[77]},{"name":"IXpsSignatureCollection","features":[77]},{"name":"IXpsSignatureManager","features":[77]},{"name":"IXpsSignatureRequest","features":[77]},{"name":"IXpsSignatureRequestCollection","features":[77]},{"name":"IXpsSigningOptions","features":[77]},{"name":"PRINTER_DEVICE_CAPABILITIES","features":[77]},{"name":"PRINT_WINDOW_FLAGS","features":[77]},{"name":"PSFEATURE_CUSTPAPER","features":[77]},{"name":"PSFEATURE_OUTPUT","features":[3,77]},{"name":"PSINJECTDATA","features":[77]},{"name":"PSINJECT_BEGINDEFAULTS","features":[77]},{"name":"PSINJECT_BEGINPAGESETUP","features":[77]},{"name":"PSINJECT_BEGINPROLOG","features":[77]},{"name":"PSINJECT_BEGINSETUP","features":[77]},{"name":"PSINJECT_BEGINSTREAM","features":[77]},{"name":"PSINJECT_BOUNDINGBOX","features":[77]},{"name":"PSINJECT_COMMENTS","features":[77]},{"name":"PSINJECT_DOCNEEDEDRES","features":[77]},{"name":"PSINJECT_DOCSUPPLIEDRES","features":[77]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORS","features":[77]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORSATEND","features":[77]},{"name":"PSINJECT_ENDDEFAULTS","features":[77]},{"name":"PSINJECT_ENDPAGECOMMENTS","features":[77]},{"name":"PSINJECT_ENDPAGESETUP","features":[77]},{"name":"PSINJECT_ENDPROLOG","features":[77]},{"name":"PSINJECT_ENDSETUP","features":[77]},{"name":"PSINJECT_ENDSTREAM","features":[77]},{"name":"PSINJECT_EOF","features":[77]},{"name":"PSINJECT_ORIENTATION","features":[77]},{"name":"PSINJECT_PAGEBBOX","features":[77]},{"name":"PSINJECT_PAGENUMBER","features":[77]},{"name":"PSINJECT_PAGEORDER","features":[77]},{"name":"PSINJECT_PAGES","features":[77]},{"name":"PSINJECT_PAGESATEND","features":[77]},{"name":"PSINJECT_PAGETRAILER","features":[77]},{"name":"PSINJECT_PLATECOLOR","features":[77]},{"name":"PSINJECT_POINT","features":[77]},{"name":"PSINJECT_PSADOBE","features":[77]},{"name":"PSINJECT_SHOWPAGE","features":[77]},{"name":"PSINJECT_TRAILER","features":[77]},{"name":"PSINJECT_VMRESTORE","features":[77]},{"name":"PSINJECT_VMSAVE","features":[77]},{"name":"PW_CLIENTONLY","features":[77]},{"name":"PrintWindow","features":[3,14,77]},{"name":"SetAbortProc","features":[3,14,77]},{"name":"StartDocA","features":[14,77]},{"name":"StartDocW","features":[14,77]},{"name":"StartPage","features":[14,77]},{"name":"XPS_COLOR","features":[77]},{"name":"XPS_COLOR_INTERPOLATION","features":[77]},{"name":"XPS_COLOR_INTERPOLATION_SCRGBLINEAR","features":[77]},{"name":"XPS_COLOR_INTERPOLATION_SRGBLINEAR","features":[77]},{"name":"XPS_COLOR_TYPE","features":[77]},{"name":"XPS_COLOR_TYPE_CONTEXT","features":[77]},{"name":"XPS_COLOR_TYPE_SCRGB","features":[77]},{"name":"XPS_COLOR_TYPE_SRGB","features":[77]},{"name":"XPS_DASH","features":[77]},{"name":"XPS_DASH_CAP","features":[77]},{"name":"XPS_DASH_CAP_FLAT","features":[77]},{"name":"XPS_DASH_CAP_ROUND","features":[77]},{"name":"XPS_DASH_CAP_SQUARE","features":[77]},{"name":"XPS_DASH_CAP_TRIANGLE","features":[77]},{"name":"XPS_DOCUMENT_TYPE","features":[77]},{"name":"XPS_DOCUMENT_TYPE_OPENXPS","features":[77]},{"name":"XPS_DOCUMENT_TYPE_UNSPECIFIED","features":[77]},{"name":"XPS_DOCUMENT_TYPE_XPS","features":[77]},{"name":"XPS_E_ABSOLUTE_REFERENCE","features":[77]},{"name":"XPS_E_ALREADY_OWNED","features":[77]},{"name":"XPS_E_BLEED_BOX_PAGE_DIMENSIONS_NOT_IN_SYNC","features":[77]},{"name":"XPS_E_BOTH_PATHFIGURE_AND_ABBR_SYNTAX_PRESENT","features":[77]},{"name":"XPS_E_BOTH_RESOURCE_AND_SOURCEATTR_PRESENT","features":[77]},{"name":"XPS_E_CARET_OUTSIDE_STRING","features":[77]},{"name":"XPS_E_CARET_OUT_OF_ORDER","features":[77]},{"name":"XPS_E_COLOR_COMPONENT_OUT_OF_RANGE","features":[77]},{"name":"XPS_E_DICTIONARY_ITEM_NAMED","features":[77]},{"name":"XPS_E_DUPLICATE_NAMES","features":[77]},{"name":"XPS_E_DUPLICATE_RESOURCE_KEYS","features":[77]},{"name":"XPS_E_INDEX_OUT_OF_RANGE","features":[77]},{"name":"XPS_E_INVALID_BLEED_BOX","features":[77]},{"name":"XPS_E_INVALID_CONTENT_BOX","features":[77]},{"name":"XPS_E_INVALID_CONTENT_TYPE","features":[77]},{"name":"XPS_E_INVALID_FLOAT","features":[77]},{"name":"XPS_E_INVALID_FONT_URI","features":[77]},{"name":"XPS_E_INVALID_LANGUAGE","features":[77]},{"name":"XPS_E_INVALID_LOOKUP_TYPE","features":[77]},{"name":"XPS_E_INVALID_MARKUP","features":[77]},{"name":"XPS_E_INVALID_NAME","features":[77]},{"name":"XPS_E_INVALID_NUMBER_OF_COLOR_CHANNELS","features":[77]},{"name":"XPS_E_INVALID_NUMBER_OF_POINTS_IN_CURVE_SEGMENTS","features":[77]},{"name":"XPS_E_INVALID_OBFUSCATED_FONT_URI","features":[77]},{"name":"XPS_E_INVALID_PAGE_SIZE","features":[77]},{"name":"XPS_E_INVALID_RESOURCE_KEY","features":[77]},{"name":"XPS_E_INVALID_SIGNATUREBLOCK_MARKUP","features":[77]},{"name":"XPS_E_INVALID_THUMBNAIL_IMAGE_TYPE","features":[77]},{"name":"XPS_E_INVALID_XML_ENCODING","features":[77]},{"name":"XPS_E_MAPPING_OUTSIDE_INDICES","features":[77]},{"name":"XPS_E_MAPPING_OUTSIDE_STRING","features":[77]},{"name":"XPS_E_MAPPING_OUT_OF_ORDER","features":[77]},{"name":"XPS_E_MARKUP_COMPATIBILITY_ELEMENTS","features":[77]},{"name":"XPS_E_MISSING_COLORPROFILE","features":[77]},{"name":"XPS_E_MISSING_DISCARDCONTROL","features":[77]},{"name":"XPS_E_MISSING_DOCUMENT","features":[77]},{"name":"XPS_E_MISSING_DOCUMENTSEQUENCE_RELATIONSHIP","features":[77]},{"name":"XPS_E_MISSING_FONTURI","features":[77]},{"name":"XPS_E_MISSING_GLYPHS","features":[77]},{"name":"XPS_E_MISSING_IMAGE_IN_IMAGEBRUSH","features":[77]},{"name":"XPS_E_MISSING_LOOKUP","features":[77]},{"name":"XPS_E_MISSING_NAME","features":[77]},{"name":"XPS_E_MISSING_PAGE_IN_DOCUMENT","features":[77]},{"name":"XPS_E_MISSING_PAGE_IN_PAGEREFERENCE","features":[77]},{"name":"XPS_E_MISSING_PART_REFERENCE","features":[77]},{"name":"XPS_E_MISSING_PART_STREAM","features":[77]},{"name":"XPS_E_MISSING_REFERRED_DOCUMENT","features":[77]},{"name":"XPS_E_MISSING_REFERRED_PAGE","features":[77]},{"name":"XPS_E_MISSING_RELATIONSHIP_TARGET","features":[77]},{"name":"XPS_E_MISSING_RESOURCE_KEY","features":[77]},{"name":"XPS_E_MISSING_RESOURCE_RELATIONSHIP","features":[77]},{"name":"XPS_E_MISSING_RESTRICTED_FONT_RELATIONSHIP","features":[77]},{"name":"XPS_E_MISSING_SEGMENT_DATA","features":[77]},{"name":"XPS_E_MULTIPLE_DOCUMENTSEQUENCE_RELATIONSHIPS","features":[77]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENT","features":[77]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENTSEQUENCE","features":[77]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_PAGE","features":[77]},{"name":"XPS_E_MULTIPLE_REFERENCES_TO_PART","features":[77]},{"name":"XPS_E_MULTIPLE_RESOURCES","features":[77]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PACKAGE","features":[77]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PAGE","features":[77]},{"name":"XPS_E_NEGATIVE_FLOAT","features":[77]},{"name":"XPS_E_NESTED_REMOTE_DICTIONARY","features":[77]},{"name":"XPS_E_NOT_ENOUGH_GRADIENT_STOPS","features":[77]},{"name":"XPS_E_NO_CUSTOM_OBJECTS","features":[77]},{"name":"XPS_E_OBJECT_DETACHED","features":[77]},{"name":"XPS_E_ODD_BIDILEVEL","features":[77]},{"name":"XPS_E_ONE_TO_ONE_MAPPING_EXPECTED","features":[77]},{"name":"XPS_E_PACKAGE_ALREADY_OPENED","features":[77]},{"name":"XPS_E_PACKAGE_NOT_OPENED","features":[77]},{"name":"XPS_E_PACKAGE_WRITER_NOT_CLOSED","features":[77]},{"name":"XPS_E_RELATIONSHIP_EXTERNAL","features":[77]},{"name":"XPS_E_RESOURCE_NOT_OWNED","features":[77]},{"name":"XPS_E_RESTRICTED_FONT_NOT_OBFUSCATED","features":[77]},{"name":"XPS_E_SIGNATUREID_DUP","features":[77]},{"name":"XPS_E_SIGREQUESTID_DUP","features":[77]},{"name":"XPS_E_STRING_TOO_LONG","features":[77]},{"name":"XPS_E_TOO_MANY_INDICES","features":[77]},{"name":"XPS_E_UNAVAILABLE_PACKAGE","features":[77]},{"name":"XPS_E_UNEXPECTED_COLORPROFILE","features":[77]},{"name":"XPS_E_UNEXPECTED_CONTENT_TYPE","features":[77]},{"name":"XPS_E_UNEXPECTED_RELATIONSHIP_TYPE","features":[77]},{"name":"XPS_E_UNEXPECTED_RESTRICTED_FONT_RELATIONSHIP","features":[77]},{"name":"XPS_E_VISUAL_CIRCULAR_REF","features":[77]},{"name":"XPS_E_XKEY_ATTR_PRESENT_OUTSIDE_RES_DICT","features":[77]},{"name":"XPS_FILL_RULE","features":[77]},{"name":"XPS_FILL_RULE_EVENODD","features":[77]},{"name":"XPS_FILL_RULE_NONZERO","features":[77]},{"name":"XPS_FONT_EMBEDDING","features":[77]},{"name":"XPS_FONT_EMBEDDING_NORMAL","features":[77]},{"name":"XPS_FONT_EMBEDDING_OBFUSCATED","features":[77]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED","features":[77]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED_UNOBFUSCATED","features":[77]},{"name":"XPS_GLYPH_INDEX","features":[77]},{"name":"XPS_GLYPH_MAPPING","features":[77]},{"name":"XPS_IMAGE_TYPE","features":[77]},{"name":"XPS_IMAGE_TYPE_JPEG","features":[77]},{"name":"XPS_IMAGE_TYPE_JXR","features":[77]},{"name":"XPS_IMAGE_TYPE_PNG","features":[77]},{"name":"XPS_IMAGE_TYPE_TIFF","features":[77]},{"name":"XPS_IMAGE_TYPE_WDP","features":[77]},{"name":"XPS_INTERLEAVING","features":[77]},{"name":"XPS_INTERLEAVING_OFF","features":[77]},{"name":"XPS_INTERLEAVING_ON","features":[77]},{"name":"XPS_LINE_CAP","features":[77]},{"name":"XPS_LINE_CAP_FLAT","features":[77]},{"name":"XPS_LINE_CAP_ROUND","features":[77]},{"name":"XPS_LINE_CAP_SQUARE","features":[77]},{"name":"XPS_LINE_CAP_TRIANGLE","features":[77]},{"name":"XPS_LINE_JOIN","features":[77]},{"name":"XPS_LINE_JOIN_BEVEL","features":[77]},{"name":"XPS_LINE_JOIN_MITER","features":[77]},{"name":"XPS_LINE_JOIN_ROUND","features":[77]},{"name":"XPS_MATRIX","features":[77]},{"name":"XPS_OBJECT_TYPE","features":[77]},{"name":"XPS_OBJECT_TYPE_CANVAS","features":[77]},{"name":"XPS_OBJECT_TYPE_GEOMETRY","features":[77]},{"name":"XPS_OBJECT_TYPE_GLYPHS","features":[77]},{"name":"XPS_OBJECT_TYPE_IMAGE_BRUSH","features":[77]},{"name":"XPS_OBJECT_TYPE_LINEAR_GRADIENT_BRUSH","features":[77]},{"name":"XPS_OBJECT_TYPE_MATRIX_TRANSFORM","features":[77]},{"name":"XPS_OBJECT_TYPE_PATH","features":[77]},{"name":"XPS_OBJECT_TYPE_RADIAL_GRADIENT_BRUSH","features":[77]},{"name":"XPS_OBJECT_TYPE_SOLID_COLOR_BRUSH","features":[77]},{"name":"XPS_OBJECT_TYPE_VISUAL_BRUSH","features":[77]},{"name":"XPS_POINT","features":[77]},{"name":"XPS_RECT","features":[77]},{"name":"XPS_SEGMENT_STROKE_PATTERN","features":[77]},{"name":"XPS_SEGMENT_STROKE_PATTERN_ALL","features":[77]},{"name":"XPS_SEGMENT_STROKE_PATTERN_MIXED","features":[77]},{"name":"XPS_SEGMENT_STROKE_PATTERN_NONE","features":[77]},{"name":"XPS_SEGMENT_TYPE","features":[77]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_CLOCKWISE","features":[77]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_COUNTERCLOCKWISE","features":[77]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_CLOCKWISE","features":[77]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_COUNTERCLOCKWISE","features":[77]},{"name":"XPS_SEGMENT_TYPE_BEZIER","features":[77]},{"name":"XPS_SEGMENT_TYPE_LINE","features":[77]},{"name":"XPS_SEGMENT_TYPE_QUADRATIC_BEZIER","features":[77]},{"name":"XPS_SIGNATURE_STATUS","features":[77]},{"name":"XPS_SIGNATURE_STATUS_BROKEN","features":[77]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLETE","features":[77]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLIANT","features":[77]},{"name":"XPS_SIGNATURE_STATUS_QUESTIONABLE","features":[77]},{"name":"XPS_SIGNATURE_STATUS_VALID","features":[77]},{"name":"XPS_SIGN_FLAGS","features":[77]},{"name":"XPS_SIGN_FLAGS_IGNORE_MARKUP_COMPATIBILITY","features":[77]},{"name":"XPS_SIGN_FLAGS_NONE","features":[77]},{"name":"XPS_SIGN_POLICY","features":[77]},{"name":"XPS_SIGN_POLICY_ALL","features":[77]},{"name":"XPS_SIGN_POLICY_CORE_PROPERTIES","features":[77]},{"name":"XPS_SIGN_POLICY_DISCARD_CONTROL","features":[77]},{"name":"XPS_SIGN_POLICY_NONE","features":[77]},{"name":"XPS_SIGN_POLICY_PRINT_TICKET","features":[77]},{"name":"XPS_SIGN_POLICY_SIGNATURE_RELATIONSHIPS","features":[77]},{"name":"XPS_SIZE","features":[77]},{"name":"XPS_SPREAD_METHOD","features":[77]},{"name":"XPS_SPREAD_METHOD_PAD","features":[77]},{"name":"XPS_SPREAD_METHOD_REFLECT","features":[77]},{"name":"XPS_SPREAD_METHOD_REPEAT","features":[77]},{"name":"XPS_STYLE_SIMULATION","features":[77]},{"name":"XPS_STYLE_SIMULATION_BOLD","features":[77]},{"name":"XPS_STYLE_SIMULATION_BOLDITALIC","features":[77]},{"name":"XPS_STYLE_SIMULATION_ITALIC","features":[77]},{"name":"XPS_STYLE_SIMULATION_NONE","features":[77]},{"name":"XPS_THUMBNAIL_SIZE","features":[77]},{"name":"XPS_THUMBNAIL_SIZE_LARGE","features":[77]},{"name":"XPS_THUMBNAIL_SIZE_MEDIUM","features":[77]},{"name":"XPS_THUMBNAIL_SIZE_SMALL","features":[77]},{"name":"XPS_THUMBNAIL_SIZE_VERYSMALL","features":[77]},{"name":"XPS_TILE_MODE","features":[77]},{"name":"XPS_TILE_MODE_FLIPX","features":[77]},{"name":"XPS_TILE_MODE_FLIPXY","features":[77]},{"name":"XPS_TILE_MODE_FLIPY","features":[77]},{"name":"XPS_TILE_MODE_NONE","features":[77]},{"name":"XPS_TILE_MODE_TILE","features":[77]},{"name":"XpsOMObjectFactory","features":[77]},{"name":"XpsOMThumbnailGenerator","features":[77]},{"name":"XpsSignatureManager","features":[77]}],"530":[{"name":"ADRENTRY","features":[3,145,43]},{"name":"ADRLIST","features":[3,145,43]},{"name":"ADRPARM","features":[3,145,43]},{"name":"BuildDisplayTable","features":[3,145]},{"name":"CALLERRELEASE","features":[145]},{"name":"ChangeIdleRoutine","features":[3,145]},{"name":"CreateIProp","features":[145]},{"name":"CreateTable","features":[145]},{"name":"DTBLBUTTON","features":[145]},{"name":"DTBLCHECKBOX","features":[145]},{"name":"DTBLCOMBOBOX","features":[145]},{"name":"DTBLDDLBX","features":[145]},{"name":"DTBLEDIT","features":[145]},{"name":"DTBLGROUPBOX","features":[145]},{"name":"DTBLLABEL","features":[145]},{"name":"DTBLLBX","features":[145]},{"name":"DTBLMVDDLBX","features":[145]},{"name":"DTBLMVLISTBOX","features":[145]},{"name":"DTBLPAGE","features":[145]},{"name":"DTBLRADIOBUTTON","features":[145]},{"name":"DTCTL","features":[145]},{"name":"DTPAGE","features":[145]},{"name":"DeinitMapiUtil","features":[145]},{"name":"DeregisterIdleRoutine","features":[145]},{"name":"ENTRYID","features":[145]},{"name":"ERROR_NOTIFICATION","features":[145]},{"name":"EXTENDED_NOTIFICATION","features":[145]},{"name":"E_IMAPI_BURN_VERIFICATION_FAILED","features":[145]},{"name":"E_IMAPI_DF2DATA_CLIENT_NAME_IS_NOT_VALID","features":[145]},{"name":"E_IMAPI_DF2DATA_INVALID_MEDIA_STATE","features":[145]},{"name":"E_IMAPI_DF2DATA_MEDIA_IS_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2DATA_MEDIA_NOT_BLANK","features":[145]},{"name":"E_IMAPI_DF2DATA_RECORDER_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2DATA_STREAM_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2DATA_STREAM_TOO_LARGE_FOR_CURRENT_MEDIA","features":[145]},{"name":"E_IMAPI_DF2DATA_WRITE_IN_PROGRESS","features":[145]},{"name":"E_IMAPI_DF2DATA_WRITE_NOT_IN_PROGRESS","features":[145]},{"name":"E_IMAPI_DF2RAW_CLIENT_NAME_IS_NOT_VALID","features":[145]},{"name":"E_IMAPI_DF2RAW_DATA_BLOCK_TYPE_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_BLANK","features":[145]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_PREPARED","features":[145]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_PREPARED","features":[145]},{"name":"E_IMAPI_DF2RAW_NOT_ENOUGH_SPACE","features":[145]},{"name":"E_IMAPI_DF2RAW_NO_RECORDER_SPECIFIED","features":[145]},{"name":"E_IMAPI_DF2RAW_RECORDER_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2RAW_STREAM_LEADIN_TOO_SHORT","features":[145]},{"name":"E_IMAPI_DF2RAW_STREAM_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2RAW_WRITE_IN_PROGRESS","features":[145]},{"name":"E_IMAPI_DF2RAW_WRITE_NOT_IN_PROGRESS","features":[145]},{"name":"E_IMAPI_DF2TAO_CLIENT_NAME_IS_NOT_VALID","features":[145]},{"name":"E_IMAPI_DF2TAO_INVALID_ISRC","features":[145]},{"name":"E_IMAPI_DF2TAO_INVALID_MCN","features":[145]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_BLANK","features":[145]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_PREPARED","features":[145]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_PREPARED","features":[145]},{"name":"E_IMAPI_DF2TAO_NOT_ENOUGH_SPACE","features":[145]},{"name":"E_IMAPI_DF2TAO_NO_RECORDER_SPECIFIED","features":[145]},{"name":"E_IMAPI_DF2TAO_PROPERTY_FOR_BLANK_MEDIA_ONLY","features":[145]},{"name":"E_IMAPI_DF2TAO_RECORDER_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2TAO_STREAM_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_DF2TAO_TABLE_OF_CONTENTS_EMPTY_DISC","features":[145]},{"name":"E_IMAPI_DF2TAO_TRACK_LIMIT_REACHED","features":[145]},{"name":"E_IMAPI_DF2TAO_WRITE_IN_PROGRESS","features":[145]},{"name":"E_IMAPI_DF2TAO_WRITE_NOT_IN_PROGRESS","features":[145]},{"name":"E_IMAPI_ERASE_CLIENT_NAME_IS_NOT_VALID","features":[145]},{"name":"E_IMAPI_ERASE_DISC_INFORMATION_TOO_SMALL","features":[145]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_ERASE_COMMAND","features":[145]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_SPINUP_COMMAND","features":[145]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_ERASABLE","features":[145]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_ERASE_MODE_PAGE_2A_TOO_SMALL","features":[145]},{"name":"E_IMAPI_ERASE_ONLY_ONE_RECORDER_SUPPORTED","features":[145]},{"name":"E_IMAPI_ERASE_RECORDER_IN_USE","features":[145]},{"name":"E_IMAPI_ERASE_RECORDER_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_ERASE_TOOK_LONGER_THAN_ONE_HOUR","features":[145]},{"name":"E_IMAPI_ERASE_UNEXPECTED_DRIVE_RESPONSE_DURING_ERASE","features":[145]},{"name":"E_IMAPI_LOSS_OF_STREAMING","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_INSUFFICIENT_SPACE","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_IS_READ_ONLY","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_NO_TRACKS","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_SECTOR_TYPE_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACKS","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACK_INDEXES","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_TRACKS_ALREADY_ADDED","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_NOT_FOUND","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_OFFSET_ZERO_CANNOT_BE_CLEARED","features":[145]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_TOO_CLOSE_TO_OTHER_INDEX","features":[145]},{"name":"E_IMAPI_RECORDER_CLIENT_NAME_IS_NOT_VALID","features":[145]},{"name":"E_IMAPI_RECORDER_COMMAND_TIMEOUT","features":[145]},{"name":"E_IMAPI_RECORDER_DVD_STRUCTURE_NOT_PRESENT","features":[145]},{"name":"E_IMAPI_RECORDER_FEATURE_IS_NOT_CURRENT","features":[145]},{"name":"E_IMAPI_RECORDER_GET_CONFIGURATION_NOT_SUPPORTED","features":[145]},{"name":"E_IMAPI_RECORDER_INVALID_MODE_PARAMETERS","features":[145]},{"name":"E_IMAPI_RECORDER_INVALID_RESPONSE_FROM_DEVICE","features":[145]},{"name":"E_IMAPI_RECORDER_LOCKED","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_BECOMING_READY","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_BUSY","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_FORMAT_IN_PROGRESS","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_INCOMPATIBLE","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_NOT_FORMATTED","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_NO_MEDIA","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_SPEED_MISMATCH","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_UPSIDE_DOWN","features":[145]},{"name":"E_IMAPI_RECORDER_MEDIA_WRITE_PROTECTED","features":[145]},{"name":"E_IMAPI_RECORDER_NO_SUCH_FEATURE","features":[145]},{"name":"E_IMAPI_RECORDER_NO_SUCH_MODE_PAGE","features":[145]},{"name":"E_IMAPI_RECORDER_REQUIRED","features":[145]},{"name":"E_IMAPI_REQUEST_CANCELLED","features":[145]},{"name":"E_IMAPI_UNEXPECTED_RESPONSE_FROM_DEVICE","features":[145]},{"name":"EnableIdleRoutine","features":[3,145]},{"name":"FACILITY_IMAPI2","features":[145]},{"name":"FEqualNames","features":[3,145]},{"name":"FLATENTRY","features":[145]},{"name":"FLATENTRYLIST","features":[145]},{"name":"FLATMTSIDLIST","features":[145]},{"name":"FPropCompareProp","features":[3,145,43]},{"name":"FPropContainsProp","features":[3,145,43]},{"name":"FPropExists","features":[3,145]},{"name":"FlagList","features":[145]},{"name":"FreePadrlist","features":[3,145,43]},{"name":"FreeProws","features":[3,145,43]},{"name":"FtAddFt","features":[3,145]},{"name":"FtMulDw","features":[3,145]},{"name":"FtMulDwDw","features":[3,145]},{"name":"FtNegFt","features":[3,145]},{"name":"FtSubFt","features":[3,145]},{"name":"FtgRegisterIdleRoutine","features":[3,145]},{"name":"Gender","features":[145]},{"name":"HrAddColumns","features":[145]},{"name":"HrAddColumnsEx","features":[145]},{"name":"HrAllocAdviseSink","features":[3,145,43]},{"name":"HrDispatchNotifications","features":[145]},{"name":"HrGetOneProp","features":[3,145,43]},{"name":"HrIStorageFromStream","features":[145]},{"name":"HrQueryAllRows","features":[3,145,43]},{"name":"HrSetOneProp","features":[3,145,43]},{"name":"HrThisThreadAdviseSink","features":[145]},{"name":"IABContainer","features":[145]},{"name":"IAddrBook","features":[145]},{"name":"IAttach","features":[145]},{"name":"IDistList","features":[145]},{"name":"IMAPIAdviseSink","features":[145]},{"name":"IMAPIContainer","features":[145]},{"name":"IMAPIControl","features":[145]},{"name":"IMAPIFolder","features":[145]},{"name":"IMAPIProgress","features":[145]},{"name":"IMAPIProp","features":[145]},{"name":"IMAPIStatus","features":[145]},{"name":"IMAPITable","features":[145]},{"name":"IMAPI_E_BAD_MULTISESSION_PARAMETER","features":[145]},{"name":"IMAPI_E_BOOT_EMULATION_IMAGE_SIZE_MISMATCH","features":[145]},{"name":"IMAPI_E_BOOT_IMAGE_DATA","features":[145]},{"name":"IMAPI_E_BOOT_OBJECT_CONFLICT","features":[145]},{"name":"IMAPI_E_DATA_STREAM_CREATE_FAILURE","features":[145]},{"name":"IMAPI_E_DATA_STREAM_INCONSISTENCY","features":[145]},{"name":"IMAPI_E_DATA_STREAM_READ_FAILURE","features":[145]},{"name":"IMAPI_E_DATA_TOO_BIG","features":[145]},{"name":"IMAPI_E_DIRECTORY_READ_FAILURE","features":[145]},{"name":"IMAPI_E_DIR_NOT_EMPTY","features":[145]},{"name":"IMAPI_E_DIR_NOT_FOUND","features":[145]},{"name":"IMAPI_E_DISC_MISMATCH","features":[145]},{"name":"IMAPI_E_DUP_NAME","features":[145]},{"name":"IMAPI_E_EMPTY_DISC","features":[145]},{"name":"IMAPI_E_FILE_NOT_FOUND","features":[145]},{"name":"IMAPI_E_FILE_SYSTEM_CHANGE_NOT_ALLOWED","features":[145]},{"name":"IMAPI_E_FILE_SYSTEM_FEATURE_NOT_SUPPORTED","features":[145]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_EMPTY","features":[145]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_FOUND","features":[145]},{"name":"IMAPI_E_FILE_SYSTEM_READ_CONSISTENCY_ERROR","features":[145]},{"name":"IMAPI_E_FSI_INTERNAL_ERROR","features":[145]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_NOT_ALIGNED","features":[145]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_TOO_BIG","features":[145]},{"name":"IMAPI_E_IMAGEMANAGER_NO_IMAGE","features":[145]},{"name":"IMAPI_E_IMAGEMANAGER_NO_VALID_VD_FOUND","features":[145]},{"name":"IMAPI_E_IMAGE_SIZE_LIMIT","features":[145]},{"name":"IMAPI_E_IMAGE_TOO_BIG","features":[145]},{"name":"IMAPI_E_IMPORT_MEDIA_NOT_ALLOWED","features":[145]},{"name":"IMAPI_E_IMPORT_READ_FAILURE","features":[145]},{"name":"IMAPI_E_IMPORT_SEEK_FAILURE","features":[145]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_DIRECTORY_EXISTS_AS_FILE","features":[145]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_FILE_EXISTS_AS_DIRECTORY","features":[145]},{"name":"IMAPI_E_INCOMPATIBLE_MULTISESSION_TYPE","features":[145]},{"name":"IMAPI_E_INCOMPATIBLE_PREVIOUS_SESSION","features":[145]},{"name":"IMAPI_E_INVALID_DATE","features":[145]},{"name":"IMAPI_E_INVALID_PARAM","features":[145]},{"name":"IMAPI_E_INVALID_PATH","features":[145]},{"name":"IMAPI_E_INVALID_VOLUME_NAME","features":[145]},{"name":"IMAPI_E_INVALID_WORKING_DIRECTORY","features":[145]},{"name":"IMAPI_E_ISO9660_LEVELS","features":[145]},{"name":"IMAPI_E_ITEM_NOT_FOUND","features":[145]},{"name":"IMAPI_E_MULTISESSION_NOT_SET","features":[145]},{"name":"IMAPI_E_NOT_DIR","features":[145]},{"name":"IMAPI_E_NOT_FILE","features":[145]},{"name":"IMAPI_E_NOT_IN_FILE_SYSTEM","features":[145]},{"name":"IMAPI_E_NO_COMPATIBLE_MULTISESSION_TYPE","features":[145]},{"name":"IMAPI_E_NO_OUTPUT","features":[145]},{"name":"IMAPI_E_NO_SUPPORTED_FILE_SYSTEM","features":[145]},{"name":"IMAPI_E_NO_UNIQUE_NAME","features":[145]},{"name":"IMAPI_E_PROPERTY_NOT_ACCESSIBLE","features":[145]},{"name":"IMAPI_E_READONLY","features":[145]},{"name":"IMAPI_E_RESTRICTED_NAME_VIOLATION","features":[145]},{"name":"IMAPI_E_STASHFILE_MOVE","features":[145]},{"name":"IMAPI_E_STASHFILE_OPEN_FAILURE","features":[145]},{"name":"IMAPI_E_STASHFILE_READ_FAILURE","features":[145]},{"name":"IMAPI_E_STASHFILE_SEEK_FAILURE","features":[145]},{"name":"IMAPI_E_STASHFILE_WRITE_FAILURE","features":[145]},{"name":"IMAPI_E_TOO_MANY_DIRS","features":[145]},{"name":"IMAPI_E_UDF_NOT_WRITE_COMPATIBLE","features":[145]},{"name":"IMAPI_E_UDF_REVISION_CHANGE_NOT_ALLOWED","features":[145]},{"name":"IMAPI_E_WORKING_DIRECTORY_SPACE","features":[145]},{"name":"IMAPI_S_IMAGE_FEATURE_NOT_SUPPORTED","features":[145]},{"name":"IMailUser","features":[145]},{"name":"IMessage","features":[145]},{"name":"IMsgStore","features":[145]},{"name":"IProfSect","features":[145]},{"name":"IPropData","features":[145]},{"name":"IProviderAdmin","features":[145]},{"name":"ITableData","features":[145]},{"name":"IWABExtInit","features":[145]},{"name":"IWABObject","features":[145]},{"name":"LPALLOCATEBUFFER","features":[145]},{"name":"LPALLOCATEMORE","features":[145]},{"name":"LPCREATECONVERSATIONINDEX","features":[145]},{"name":"LPDISPATCHNOTIFICATIONS","features":[145]},{"name":"LPFNABSDI","features":[3,145]},{"name":"LPFNBUTTON","features":[145]},{"name":"LPFNDISMISS","features":[145]},{"name":"LPFREEBUFFER","features":[145]},{"name":"LPNOTIFCALLBACK","features":[3,145,43]},{"name":"LPOPENSTREAMONFILE","features":[145]},{"name":"LPWABACTIONITEM","features":[145]},{"name":"LPWABALLOCATEBUFFER","features":[145]},{"name":"LPWABALLOCATEMORE","features":[145]},{"name":"LPWABFREEBUFFER","features":[145]},{"name":"LPWABOPEN","features":[3,145]},{"name":"LPWABOPENEX","features":[3,145]},{"name":"LPropCompareProp","features":[3,145,43]},{"name":"LpValFindProp","features":[3,145,43]},{"name":"MAPIDeinitIdle","features":[145]},{"name":"MAPIERROR","features":[145]},{"name":"MAPIGetDefaultMalloc","features":[145]},{"name":"MAPIInitIdle","features":[145]},{"name":"MAPINAMEID","features":[145]},{"name":"MAPIUID","features":[145]},{"name":"MAPI_COMPOUND","features":[145]},{"name":"MAPI_DIM","features":[145]},{"name":"MAPI_ERROR_VERSION","features":[145]},{"name":"MAPI_E_CALL_FAILED","features":[145]},{"name":"MAPI_E_INTERFACE_NOT_SUPPORTED","features":[145]},{"name":"MAPI_E_INVALID_PARAMETER","features":[145]},{"name":"MAPI_E_NOT_ENOUGH_MEMORY","features":[145]},{"name":"MAPI_E_NO_ACCESS","features":[145]},{"name":"MAPI_NOTRECIP","features":[145]},{"name":"MAPI_NOTRESERVED","features":[145]},{"name":"MAPI_NOW","features":[145]},{"name":"MAPI_ONE_OFF_NO_RICH_INFO","features":[145]},{"name":"MAPI_P1","features":[145]},{"name":"MAPI_SHORTTERM","features":[145]},{"name":"MAPI_SUBMITTED","features":[145]},{"name":"MAPI_THISSESSION","features":[145]},{"name":"MAPI_USE_DEFAULT","features":[145]},{"name":"MNID_ID","features":[145]},{"name":"MNID_STRING","features":[145]},{"name":"MTSID","features":[145]},{"name":"MV_FLAG","features":[145]},{"name":"MV_INSTANCE","features":[145]},{"name":"NEWMAIL_NOTIFICATION","features":[145]},{"name":"NOTIFICATION","features":[3,145,43]},{"name":"NOTIFKEY","features":[145]},{"name":"OBJECT_NOTIFICATION","features":[145]},{"name":"OPENSTREAMONFILE","features":[145]},{"name":"OpenStreamOnFile","features":[145]},{"name":"PFNIDLE","features":[3,145]},{"name":"PRIHIGHEST","features":[145]},{"name":"PRILOWEST","features":[145]},{"name":"PRIUSER","features":[145]},{"name":"PROP_ID_INVALID","features":[145]},{"name":"PROP_ID_NULL","features":[145]},{"name":"PROP_ID_SECURE_MAX","features":[145]},{"name":"PROP_ID_SECURE_MIN","features":[145]},{"name":"PpropFindProp","features":[3,145,43]},{"name":"PropCopyMore","features":[3,145,43]},{"name":"RTFSync","features":[3,145]},{"name":"SAndRestriction","features":[3,145,43]},{"name":"SAppTimeArray","features":[145]},{"name":"SBinary","features":[145]},{"name":"SBinaryArray","features":[145]},{"name":"SBitMaskRestriction","features":[145]},{"name":"SCommentRestriction","features":[3,145,43]},{"name":"SComparePropsRestriction","features":[145]},{"name":"SContentRestriction","features":[3,145,43]},{"name":"SCurrencyArray","features":[145,43]},{"name":"SDateTimeArray","features":[3,145]},{"name":"SDoubleArray","features":[145]},{"name":"SERVICE_UI_ALLOWED","features":[145]},{"name":"SERVICE_UI_ALWAYS","features":[145]},{"name":"SExistRestriction","features":[145]},{"name":"SGuidArray","features":[145]},{"name":"SLPSTRArray","features":[145]},{"name":"SLargeIntegerArray","features":[145]},{"name":"SLongArray","features":[145]},{"name":"SNotRestriction","features":[3,145,43]},{"name":"SOrRestriction","features":[3,145,43]},{"name":"SPropProblem","features":[145]},{"name":"SPropProblemArray","features":[145]},{"name":"SPropTagArray","features":[145]},{"name":"SPropValue","features":[3,145,43]},{"name":"SPropertyRestriction","features":[3,145,43]},{"name":"SRealArray","features":[145]},{"name":"SRestriction","features":[3,145,43]},{"name":"SRow","features":[3,145,43]},{"name":"SRowSet","features":[3,145,43]},{"name":"SShortArray","features":[145]},{"name":"SSizeRestriction","features":[145]},{"name":"SSortOrder","features":[145]},{"name":"SSortOrderSet","features":[145]},{"name":"SSubRestriction","features":[3,145,43]},{"name":"STATUS_OBJECT_NOTIFICATION","features":[3,145,43]},{"name":"SWStringArray","features":[145]},{"name":"S_IMAPI_BOTHADJUSTED","features":[145]},{"name":"S_IMAPI_COMMAND_HAS_SENSE_DATA","features":[145]},{"name":"S_IMAPI_RAW_IMAGE_TRACK_INDEX_ALREADY_EXISTS","features":[145]},{"name":"S_IMAPI_ROTATIONADJUSTED","features":[145]},{"name":"S_IMAPI_SPEEDADJUSTED","features":[145]},{"name":"S_IMAPI_WRITE_NOT_IN_PROGRESS","features":[145]},{"name":"ScCopyNotifications","features":[3,145,43]},{"name":"ScCopyProps","features":[3,145,43]},{"name":"ScCountNotifications","features":[3,145,43]},{"name":"ScCountProps","features":[3,145,43]},{"name":"ScCreateConversationIndex","features":[145]},{"name":"ScDupPropset","features":[3,145,43]},{"name":"ScInitMapiUtil","features":[145]},{"name":"ScLocalPathFromUNC","features":[145]},{"name":"ScRelocNotifications","features":[3,145,43]},{"name":"ScRelocProps","features":[3,145,43]},{"name":"ScUNCFromLocalPath","features":[145]},{"name":"SzFindCh","features":[145]},{"name":"SzFindLastCh","features":[145]},{"name":"SzFindSz","features":[145]},{"name":"TABLE_CHANGED","features":[145]},{"name":"TABLE_ERROR","features":[145]},{"name":"TABLE_NOTIFICATION","features":[3,145,43]},{"name":"TABLE_RELOAD","features":[145]},{"name":"TABLE_RESTRICT_DONE","features":[145]},{"name":"TABLE_ROW_ADDED","features":[145]},{"name":"TABLE_ROW_DELETED","features":[145]},{"name":"TABLE_ROW_MODIFIED","features":[145]},{"name":"TABLE_SETCOL_DONE","features":[145]},{"name":"TABLE_SORT_DONE","features":[145]},{"name":"TAD_ALL_ROWS","features":[145]},{"name":"UFromSz","features":[145]},{"name":"UI_CURRENT_PROVIDER_FIRST","features":[145]},{"name":"UI_SERVICE","features":[145]},{"name":"UlAddRef","features":[145]},{"name":"UlPropSize","features":[3,145,43]},{"name":"UlRelease","features":[145]},{"name":"WABEXTDISPLAY","features":[3,145]},{"name":"WABIMPORTPARAM","features":[3,145]},{"name":"WABOBJECT_LDAPURL_RETURN_MAILUSER","features":[145]},{"name":"WABOBJECT_ME_NEW","features":[145]},{"name":"WABOBJECT_ME_NOCREATE","features":[145]},{"name":"WAB_CONTEXT_ADRLIST","features":[145]},{"name":"WAB_DISPLAY_ISNTDS","features":[145]},{"name":"WAB_DISPLAY_LDAPURL","features":[145]},{"name":"WAB_DLL_NAME","features":[145]},{"name":"WAB_DLL_PATH_KEY","features":[145]},{"name":"WAB_ENABLE_PROFILES","features":[145]},{"name":"WAB_IGNORE_PROFILES","features":[145]},{"name":"WAB_LOCAL_CONTAINERS","features":[145]},{"name":"WAB_PARAM","features":[3,145]},{"name":"WAB_PROFILE_CONTENTS","features":[145]},{"name":"WAB_USE_OE_SENDMAIL","features":[145]},{"name":"WAB_VCARD_FILE","features":[145]},{"name":"WAB_VCARD_STREAM","features":[145]},{"name":"WrapCompressedRTFStream","features":[145]},{"name":"WrapStoreEntryID","features":[145]},{"name":"__UPV","features":[3,145,43]},{"name":"cchProfileNameMax","features":[145]},{"name":"cchProfilePassMax","features":[145]},{"name":"fMapiUnicode","features":[145]},{"name":"genderFemale","features":[145]},{"name":"genderMale","features":[145]},{"name":"genderUnspecified","features":[145]},{"name":"hrSuccess","features":[145]},{"name":"szHrDispatchNotifications","features":[145]},{"name":"szMAPINotificationMsg","features":[145]},{"name":"szScCreateConversationIndex","features":[145]}],"531":[{"name":"AMSI_ATTRIBUTE","features":[154]},{"name":"AMSI_ATTRIBUTE_ALL_ADDRESS","features":[154]},{"name":"AMSI_ATTRIBUTE_ALL_SIZE","features":[154]},{"name":"AMSI_ATTRIBUTE_APP_NAME","features":[154]},{"name":"AMSI_ATTRIBUTE_CONTENT_ADDRESS","features":[154]},{"name":"AMSI_ATTRIBUTE_CONTENT_NAME","features":[154]},{"name":"AMSI_ATTRIBUTE_CONTENT_SIZE","features":[154]},{"name":"AMSI_ATTRIBUTE_QUIET","features":[154]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_ADDRESS","features":[154]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_SIZE","features":[154]},{"name":"AMSI_ATTRIBUTE_SESSION","features":[154]},{"name":"AMSI_RESULT","features":[154]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_END","features":[154]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_START","features":[154]},{"name":"AMSI_RESULT_CLEAN","features":[154]},{"name":"AMSI_RESULT_DETECTED","features":[154]},{"name":"AMSI_RESULT_NOT_DETECTED","features":[154]},{"name":"AMSI_UAC_MSI_ACTION","features":[154]},{"name":"AMSI_UAC_MSI_ACTION_INSTALL","features":[154]},{"name":"AMSI_UAC_MSI_ACTION_MAINTENANCE","features":[154]},{"name":"AMSI_UAC_MSI_ACTION_MAX","features":[154]},{"name":"AMSI_UAC_MSI_ACTION_UNINSTALL","features":[154]},{"name":"AMSI_UAC_MSI_ACTION_UPDATE","features":[154]},{"name":"AMSI_UAC_REQUEST_AX_INFO","features":[154]},{"name":"AMSI_UAC_REQUEST_COM_INFO","features":[154]},{"name":"AMSI_UAC_REQUEST_CONTEXT","features":[3,154]},{"name":"AMSI_UAC_REQUEST_EXE_INFO","features":[154]},{"name":"AMSI_UAC_REQUEST_MSI_INFO","features":[154]},{"name":"AMSI_UAC_REQUEST_PACKAGED_APP_INFO","features":[154]},{"name":"AMSI_UAC_REQUEST_TYPE","features":[154]},{"name":"AMSI_UAC_REQUEST_TYPE_AX","features":[154]},{"name":"AMSI_UAC_REQUEST_TYPE_COM","features":[154]},{"name":"AMSI_UAC_REQUEST_TYPE_EXE","features":[154]},{"name":"AMSI_UAC_REQUEST_TYPE_MAX","features":[154]},{"name":"AMSI_UAC_REQUEST_TYPE_MSI","features":[154]},{"name":"AMSI_UAC_REQUEST_TYPE_PACKAGED_APP","features":[154]},{"name":"AMSI_UAC_TRUST_STATE","features":[154]},{"name":"AMSI_UAC_TRUST_STATE_BLOCKED","features":[154]},{"name":"AMSI_UAC_TRUST_STATE_MAX","features":[154]},{"name":"AMSI_UAC_TRUST_STATE_TRUSTED","features":[154]},{"name":"AMSI_UAC_TRUST_STATE_UNTRUSTED","features":[154]},{"name":"AmsiCloseSession","features":[154]},{"name":"AmsiInitialize","features":[154]},{"name":"AmsiNotifyOperation","features":[154]},{"name":"AmsiOpenSession","features":[154]},{"name":"AmsiScanBuffer","features":[154]},{"name":"AmsiScanString","features":[154]},{"name":"AmsiUninitialize","features":[154]},{"name":"CAntimalware","features":[154]},{"name":"HAMSICONTEXT","features":[154]},{"name":"HAMSISESSION","features":[154]},{"name":"IAmsiStream","features":[154]},{"name":"IAntimalware","features":[154]},{"name":"IAntimalware2","features":[154]},{"name":"IAntimalwareProvider","features":[154]},{"name":"IAntimalwareProvider2","features":[154]},{"name":"IAntimalwareUacProvider","features":[154]},{"name":"InstallELAMCertificateInfo","features":[3,154]}],"532":[{"name":"ACTCTXA","features":[3,155]},{"name":"ACTCTXW","features":[3,155]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE","features":[155]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MAXVERSIONTESTED","features":[155]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MITIGATION","features":[155]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_OS","features":[155]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_UNKNOWN","features":[155]},{"name":"ACTCTX_REQUESTED_RUN_LEVEL","features":[155]},{"name":"ACTCTX_RUN_LEVEL_AS_INVOKER","features":[155]},{"name":"ACTCTX_RUN_LEVEL_HIGHEST_AVAILABLE","features":[155]},{"name":"ACTCTX_RUN_LEVEL_NUMBERS","features":[155]},{"name":"ACTCTX_RUN_LEVEL_REQUIRE_ADMIN","features":[155]},{"name":"ACTCTX_RUN_LEVEL_UNSPECIFIED","features":[155]},{"name":"ACTCTX_SECTION_KEYED_DATA","features":[3,155,37]},{"name":"ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION","features":[155]},{"name":"ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION","features":[155]},{"name":"ACTIVATION_CONTEXT_DETAILED_INFORMATION","features":[155]},{"name":"ACTIVATION_CONTEXT_QUERY_INDEX","features":[155]},{"name":"ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION","features":[155]},{"name":"ADVERTISEFLAGS","features":[155]},{"name":"ADVERTISEFLAGS_MACHINEASSIGN","features":[155]},{"name":"ADVERTISEFLAGS_USERASSIGN","features":[155]},{"name":"APPLY_OPTION_FAIL_IF_CLOSE","features":[155]},{"name":"APPLY_OPTION_FAIL_IF_EXACT","features":[155]},{"name":"APPLY_OPTION_TEST_ONLY","features":[155]},{"name":"APPLY_OPTION_VALID_FLAGS","features":[155]},{"name":"ASM_BINDF_BINPATH_PROBE_ONLY","features":[155]},{"name":"ASM_BINDF_FORCE_CACHE_INSTALL","features":[155]},{"name":"ASM_BINDF_PARENT_ASM_HINT","features":[155]},{"name":"ASM_BINDF_RFS_INTEGRITY_CHECK","features":[155]},{"name":"ASM_BINDF_RFS_MODULE_CHECK","features":[155]},{"name":"ASM_BINDF_SHARED_BINPATH_HINT","features":[155]},{"name":"ASM_BIND_FLAGS","features":[155]},{"name":"ASM_CMPF_ALL","features":[155]},{"name":"ASM_CMPF_BUILD_NUMBER","features":[155]},{"name":"ASM_CMPF_CULTURE","features":[155]},{"name":"ASM_CMPF_CUSTOM","features":[155]},{"name":"ASM_CMPF_DEFAULT","features":[155]},{"name":"ASM_CMPF_MAJOR_VERSION","features":[155]},{"name":"ASM_CMPF_MINOR_VERSION","features":[155]},{"name":"ASM_CMPF_NAME","features":[155]},{"name":"ASM_CMPF_PUBLIC_KEY_TOKEN","features":[155]},{"name":"ASM_CMPF_REVISION_NUMBER","features":[155]},{"name":"ASM_CMP_FLAGS","features":[155]},{"name":"ASM_DISPLAYF_CULTURE","features":[155]},{"name":"ASM_DISPLAYF_CUSTOM","features":[155]},{"name":"ASM_DISPLAYF_LANGUAGEID","features":[155]},{"name":"ASM_DISPLAYF_PROCESSORARCHITECTURE","features":[155]},{"name":"ASM_DISPLAYF_PUBLIC_KEY","features":[155]},{"name":"ASM_DISPLAYF_PUBLIC_KEY_TOKEN","features":[155]},{"name":"ASM_DISPLAYF_VERSION","features":[155]},{"name":"ASM_DISPLAY_FLAGS","features":[155]},{"name":"ASM_NAME","features":[155]},{"name":"ASM_NAME_ALIAS","features":[155]},{"name":"ASM_NAME_BUILD_NUMBER","features":[155]},{"name":"ASM_NAME_CODEBASE_LASTMOD","features":[155]},{"name":"ASM_NAME_CODEBASE_URL","features":[155]},{"name":"ASM_NAME_CULTURE","features":[155]},{"name":"ASM_NAME_CUSTOM","features":[155]},{"name":"ASM_NAME_HASH_ALGID","features":[155]},{"name":"ASM_NAME_HASH_VALUE","features":[155]},{"name":"ASM_NAME_MAJOR_VERSION","features":[155]},{"name":"ASM_NAME_MAX_PARAMS","features":[155]},{"name":"ASM_NAME_MINOR_VERSION","features":[155]},{"name":"ASM_NAME_MVID","features":[155]},{"name":"ASM_NAME_NAME","features":[155]},{"name":"ASM_NAME_NULL_CUSTOM","features":[155]},{"name":"ASM_NAME_NULL_PUBLIC_KEY","features":[155]},{"name":"ASM_NAME_NULL_PUBLIC_KEY_TOKEN","features":[155]},{"name":"ASM_NAME_OSINFO_ARRAY","features":[155]},{"name":"ASM_NAME_PROCESSOR_ID_ARRAY","features":[155]},{"name":"ASM_NAME_PUBLIC_KEY","features":[155]},{"name":"ASM_NAME_PUBLIC_KEY_TOKEN","features":[155]},{"name":"ASM_NAME_REVISION_NUMBER","features":[155]},{"name":"ASSEMBLYINFO_FLAG_INSTALLED","features":[155]},{"name":"ASSEMBLYINFO_FLAG_PAYLOADRESIDENT","features":[155]},{"name":"ASSEMBLY_FILE_DETAILED_INFORMATION","features":[155]},{"name":"ASSEMBLY_INFO","features":[155]},{"name":"ActivateActCtx","features":[3,155]},{"name":"AddRefActCtx","features":[3,155]},{"name":"ApplyDeltaA","features":[3,155]},{"name":"ApplyDeltaB","features":[3,155]},{"name":"ApplyDeltaGetReverseB","features":[3,155]},{"name":"ApplyDeltaProvidedB","features":[3,155]},{"name":"ApplyDeltaW","features":[3,155]},{"name":"ApplyPatchToFileA","features":[3,155]},{"name":"ApplyPatchToFileByBuffers","features":[3,155]},{"name":"ApplyPatchToFileByHandles","features":[3,155]},{"name":"ApplyPatchToFileByHandlesEx","features":[3,155]},{"name":"ApplyPatchToFileExA","features":[3,155]},{"name":"ApplyPatchToFileExW","features":[3,155]},{"name":"ApplyPatchToFileW","features":[3,155]},{"name":"CANOF_PARSE_DISPLAY_NAME","features":[155]},{"name":"CANOF_SET_DEFAULT_VALUES","features":[155]},{"name":"CLSID_EvalCom2","features":[155]},{"name":"CLSID_MsmMerge2","features":[155]},{"name":"COMPATIBILITY_CONTEXT_ELEMENT","features":[155]},{"name":"CREATE_ASM_NAME_OBJ_FLAGS","features":[155]},{"name":"CreateActCtxA","features":[3,155]},{"name":"CreateActCtxW","features":[3,155]},{"name":"CreateDeltaA","features":[3,70,155]},{"name":"CreateDeltaB","features":[3,70,155]},{"name":"CreateDeltaW","features":[3,70,155]},{"name":"CreatePatchFileA","features":[3,155]},{"name":"CreatePatchFileByHandles","features":[3,155]},{"name":"CreatePatchFileByHandlesEx","features":[3,155]},{"name":"CreatePatchFileExA","features":[3,155]},{"name":"CreatePatchFileExW","features":[3,155]},{"name":"CreatePatchFileW","features":[3,155]},{"name":"DEFAULT_DISK_ID","features":[155]},{"name":"DEFAULT_FILE_SEQUENCE_START","features":[155]},{"name":"DEFAULT_MINIMUM_REQUIRED_MSI_VERSION","features":[155]},{"name":"DELTA_HASH","features":[155]},{"name":"DELTA_HEADER_INFO","features":[3,70,155]},{"name":"DELTA_INPUT","features":[3,155]},{"name":"DELTA_MAX_HASH_SIZE","features":[155]},{"name":"DELTA_OUTPUT","features":[155]},{"name":"DeactivateActCtx","features":[3,155]},{"name":"DeltaFree","features":[3,155]},{"name":"DeltaNormalizeProvidedB","features":[3,155]},{"name":"ERROR_PATCH_BIGGER_THAN_COMPRESSED","features":[155]},{"name":"ERROR_PATCH_CORRUPT","features":[155]},{"name":"ERROR_PATCH_DECODE_FAILURE","features":[155]},{"name":"ERROR_PATCH_ENCODE_FAILURE","features":[155]},{"name":"ERROR_PATCH_IMAGEHLP_FAILURE","features":[155]},{"name":"ERROR_PATCH_INVALID_OPTIONS","features":[155]},{"name":"ERROR_PATCH_NEWER_FORMAT","features":[155]},{"name":"ERROR_PATCH_NOT_AVAILABLE","features":[155]},{"name":"ERROR_PATCH_NOT_NECESSARY","features":[155]},{"name":"ERROR_PATCH_RETAIN_RANGES_DIFFER","features":[155]},{"name":"ERROR_PATCH_SAME_FILE","features":[155]},{"name":"ERROR_PATCH_WRONG_FILE","features":[155]},{"name":"ERROR_PCW_BAD_API_PATCHING_SYMBOL_FLAGS","features":[155]},{"name":"ERROR_PCW_BAD_FAMILY_RANGE_NAME","features":[155]},{"name":"ERROR_PCW_BAD_FILE_SEQUENCE_START","features":[155]},{"name":"ERROR_PCW_BAD_GUIDS_TO_REPLACE","features":[155]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_DISKID","features":[155]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_FILESEQSTART","features":[155]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_NAME","features":[155]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_SRC_PROP","features":[155]},{"name":"ERROR_PCW_BAD_MAJOR_VERSION","features":[155]},{"name":"ERROR_PCW_BAD_PATCH_GUID","features":[155]},{"name":"ERROR_PCW_BAD_PRODUCTVERSION_VALIDATION","features":[155]},{"name":"ERROR_PCW_BAD_SEQUENCE","features":[155]},{"name":"ERROR_PCW_BAD_SUPERCEDENCE","features":[155]},{"name":"ERROR_PCW_BAD_TARGET","features":[155]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_NAME","features":[155]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_CODE","features":[155]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_VERSION","features":[155]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADED","features":[155]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADE_CODE","features":[155]},{"name":"ERROR_PCW_BAD_TARGET_PRODUCT_CODE_LIST","features":[155]},{"name":"ERROR_PCW_BAD_TGT_UPD_IMAGES","features":[155]},{"name":"ERROR_PCW_BAD_TRANSFORMSET","features":[155]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_FAMILY","features":[155]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_NAME","features":[155]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_CODE","features":[155]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_VERSION","features":[155]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_UPGRADE_CODE","features":[155]},{"name":"ERROR_PCW_BAD_VERSION_STRING","features":[155]},{"name":"ERROR_PCW_BASE","features":[155]},{"name":"ERROR_PCW_CANNOT_CREATE_TABLE","features":[155]},{"name":"ERROR_PCW_CANNOT_RUN_MAKECAB","features":[155]},{"name":"ERROR_PCW_CANNOT_WRITE_DDF","features":[155]},{"name":"ERROR_PCW_CANT_COPY_FILE_TO_TEMP_FOLDER","features":[155]},{"name":"ERROR_PCW_CANT_CREATE_ONE_PATCH_FILE","features":[155]},{"name":"ERROR_PCW_CANT_CREATE_PATCH_FILE","features":[155]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO","features":[155]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO_POUND","features":[155]},{"name":"ERROR_PCW_CANT_CREATE_TEMP_FOLDER","features":[155]},{"name":"ERROR_PCW_CANT_DELETE_TEMP_FOLDER","features":[155]},{"name":"ERROR_PCW_CANT_GENERATE_SEQUENCEINFO_MAJORUPGD","features":[155]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM","features":[155]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM_POUND","features":[155]},{"name":"ERROR_PCW_CANT_OVERWRITE_PATCH","features":[155]},{"name":"ERROR_PCW_CANT_READ_FILE","features":[155]},{"name":"ERROR_PCW_CREATEFILE_LOG_FAILED","features":[155]},{"name":"ERROR_PCW_DUPLICATE_SEQUENCE_RECORD","features":[155]},{"name":"ERROR_PCW_DUP_IMAGE_FAMILY_NAME","features":[155]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_NAME","features":[155]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_PACKCODE","features":[155]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_NAME","features":[155]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_PACKCODE","features":[155]},{"name":"ERROR_PCW_ERROR_WRITING_TO_LOG","features":[155]},{"name":"ERROR_PCW_EXECUTE_VIEW","features":[155]},{"name":"ERROR_PCW_EXTFILE_BAD_FAMILY_FIELD","features":[155]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_LENGTHS","features":[155]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_OFFSETS","features":[155]},{"name":"ERROR_PCW_EXTFILE_BAD_RETAIN_OFFSETS","features":[155]},{"name":"ERROR_PCW_EXTFILE_BLANK_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_EXTFILE_BLANK_PATH_TO_FILE","features":[155]},{"name":"ERROR_PCW_EXTFILE_IGNORE_COUNT_MISMATCH","features":[155]},{"name":"ERROR_PCW_EXTFILE_LONG_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_LENGTHS","features":[155]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_OFFSETS","features":[155]},{"name":"ERROR_PCW_EXTFILE_LONG_PATH_TO_FILE","features":[155]},{"name":"ERROR_PCW_EXTFILE_LONG_RETAIN_OFFSETS","features":[155]},{"name":"ERROR_PCW_EXTFILE_MISSING_FILE","features":[155]},{"name":"ERROR_PCW_FAILED_CREATE_TRANSFORM","features":[155]},{"name":"ERROR_PCW_FAILED_EXPAND_PATH","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_LENGTHS","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_OFFSETS","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_LENGTHS","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_OFFSETS","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_COUNT_MISMATCH","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_LENGTHS","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_OFFSETS","features":[155]},{"name":"ERROR_PCW_FAMILY_RANGE_NAME_TOO_LONG","features":[155]},{"name":"ERROR_PCW_IMAGE_FAMILY_NAME_TOO_LONG","features":[155]},{"name":"ERROR_PCW_IMAGE_PATH_NOT_EXIST","features":[155]},{"name":"ERROR_PCW_INTERNAL_ERROR","features":[155]},{"name":"ERROR_PCW_INVALID_LOG_LEVEL","features":[155]},{"name":"ERROR_PCW_INVALID_MAJOR_VERSION","features":[155]},{"name":"ERROR_PCW_INVALID_PARAMETER","features":[155]},{"name":"ERROR_PCW_INVALID_PATCHMETADATA_PROP","features":[155]},{"name":"ERROR_PCW_INVALID_PATCH_TYPE_SEQUENCING","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_EXTERNALFILES","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_FAMILYFILERANGES","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_IMAGEFAMILIES","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_PATCHSEQUENCE","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTIES","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTY","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_TARGETFILES_OPTIONALDATA","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_TARGETIMAGES","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILESTOIGNORE","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILES_OPTIONALDATA","features":[155]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDIMAGES","features":[155]},{"name":"ERROR_PCW_INVALID_RANGE_ELEMENT","features":[155]},{"name":"ERROR_PCW_INVALID_SUPERCEDENCE","features":[155]},{"name":"ERROR_PCW_INVALID_SUPERSEDENCE_VALUE","features":[155]},{"name":"ERROR_PCW_INVALID_UI_LEVEL","features":[155]},{"name":"ERROR_PCW_LAX_VALIDATION_FLAGS","features":[155]},{"name":"ERROR_PCW_MAJOR_UPGD_WITHOUT_SEQUENCING","features":[155]},{"name":"ERROR_PCW_MATCHED_PRODUCT_VERSIONS","features":[155]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_CODES","features":[155]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[155]},{"name":"ERROR_PCW_MISSING_DIRECTORY_TABLE","features":[155]},{"name":"ERROR_PCW_MISSING_PATCHMETADATA","features":[155]},{"name":"ERROR_PCW_MISSING_PATCH_GUID","features":[155]},{"name":"ERROR_PCW_MISSING_PATCH_PATH","features":[155]},{"name":"ERROR_PCW_NO_UPGRADED_IMAGES_TO_PATCH","features":[155]},{"name":"ERROR_PCW_NULL_PATCHFAMILY","features":[155]},{"name":"ERROR_PCW_NULL_SEQUENCE_NUMBER","features":[155]},{"name":"ERROR_PCW_OBSOLETION_WITH_MSI30","features":[155]},{"name":"ERROR_PCW_OBSOLETION_WITH_PATCHSEQUENCE","features":[155]},{"name":"ERROR_PCW_OBSOLETION_WITH_SEQUENCE_DATA","features":[155]},{"name":"ERROR_PCW_OODS_COPYING_MSI","features":[155]},{"name":"ERROR_PCW_OPEN_VIEW","features":[155]},{"name":"ERROR_PCW_OUT_OF_MEMORY","features":[155]},{"name":"ERROR_PCW_PATCHMETADATA_PROP_NOT_SET","features":[155]},{"name":"ERROR_PCW_PCP_BAD_FORMAT","features":[155]},{"name":"ERROR_PCW_PCP_DOESNT_EXIST","features":[155]},{"name":"ERROR_PCW_SEQUENCING_BAD_TARGET","features":[155]},{"name":"ERROR_PCW_TARGET_BAD_PROD_CODE_VAL","features":[155]},{"name":"ERROR_PCW_TARGET_BAD_PROD_VALIDATE","features":[155]},{"name":"ERROR_PCW_TARGET_IMAGE_COMPRESSED","features":[155]},{"name":"ERROR_PCW_TARGET_IMAGE_NAME_TOO_LONG","features":[155]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_EMPTY","features":[155]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_EXIST","features":[155]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_MSI","features":[155]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_TOO_LONG","features":[155]},{"name":"ERROR_PCW_TARGET_MISSING_SRC_FILES","features":[155]},{"name":"ERROR_PCW_TARGET_WRONG_PRODUCT_VERSION_COMP","features":[155]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_LENGTHS","features":[155]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_OFFSETS","features":[155]},{"name":"ERROR_PCW_TFILEDATA_BAD_RETAIN_OFFSETS","features":[155]},{"name":"ERROR_PCW_TFILEDATA_BAD_TARGET_FIELD","features":[155]},{"name":"ERROR_PCW_TFILEDATA_BLANK_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_TFILEDATA_IGNORE_COUNT_MISMATCH","features":[155]},{"name":"ERROR_PCW_TFILEDATA_LONG_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_LENGTHS","features":[155]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_OFFSETS","features":[155]},{"name":"ERROR_PCW_TFILEDATA_LONG_RETAIN_OFFSETS","features":[155]},{"name":"ERROR_PCW_TFILEDATA_MISSING_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_UFILEDATA_BAD_UPGRADED_FIELD","features":[155]},{"name":"ERROR_PCW_UFILEDATA_BLANK_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_UFILEDATA_LONG_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_UFILEDATA_MISSING_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_UPGRADED_FIELD","features":[155]},{"name":"ERROR_PCW_UFILEIGNORE_BLANK_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_UFILEIGNORE_LONG_FILE_TABLE_KEY","features":[155]},{"name":"ERROR_PCW_UNKNOWN_ERROR","features":[155]},{"name":"ERROR_PCW_UNKNOWN_INFO","features":[155]},{"name":"ERROR_PCW_UNKNOWN_WARN","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_COMPRESSED","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_NAME_TOO_LONG","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_EXIST","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_MSI","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_TOO_LONG","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_EMPTY","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_EXIST","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_MSI","features":[155]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_TOO_LONG","features":[155]},{"name":"ERROR_PCW_UPGRADED_MISSING_SRC_FILES","features":[155]},{"name":"ERROR_PCW_VIEW_FETCH","features":[155]},{"name":"ERROR_PCW_WRITE_SUMMARY_PROPERTIES","features":[155]},{"name":"ERROR_PCW_WRONG_PATCHMETADATA_STRD_PROP","features":[155]},{"name":"ERROR_ROLLBACK_DISABLED","features":[155]},{"name":"ExtractPatchHeaderToFileA","features":[3,155]},{"name":"ExtractPatchHeaderToFileByHandles","features":[3,155]},{"name":"ExtractPatchHeaderToFileW","features":[3,155]},{"name":"FUSION_INSTALL_REFERENCE","features":[155]},{"name":"FUSION_REFCOUNT_FILEPATH_GUID","features":[155]},{"name":"FUSION_REFCOUNT_OPAQUE_STRING_GUID","features":[155]},{"name":"FUSION_REFCOUNT_UNINSTALL_SUBKEY_GUID","features":[155]},{"name":"FindActCtxSectionGuid","features":[3,155,37]},{"name":"FindActCtxSectionStringA","features":[3,155,37]},{"name":"FindActCtxSectionStringW","features":[3,155,37]},{"name":"GetCurrentActCtx","features":[3,155]},{"name":"GetDeltaInfoA","features":[3,70,155]},{"name":"GetDeltaInfoB","features":[3,70,155]},{"name":"GetDeltaInfoW","features":[3,70,155]},{"name":"GetDeltaSignatureA","features":[3,70,155]},{"name":"GetDeltaSignatureB","features":[3,70,155]},{"name":"GetDeltaSignatureW","features":[3,70,155]},{"name":"GetFilePatchSignatureA","features":[3,155]},{"name":"GetFilePatchSignatureByBuffer","features":[3,155]},{"name":"GetFilePatchSignatureByHandle","features":[3,155]},{"name":"GetFilePatchSignatureW","features":[3,155]},{"name":"IACTIONNAME_ADMIN","features":[155]},{"name":"IACTIONNAME_ADVERTISE","features":[155]},{"name":"IACTIONNAME_COLLECTUSERINFO","features":[155]},{"name":"IACTIONNAME_FIRSTRUN","features":[155]},{"name":"IACTIONNAME_INSTALL","features":[155]},{"name":"IACTIONNAME_SEQUENCE","features":[155]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_ALREADY_INSTALLED","features":[155]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_INSTALLED","features":[155]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_REFRESHED","features":[155]},{"name":"IASSEMBLYCACHEITEM_COMMIT_FLAG_REFRESH","features":[155]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION","features":[155]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_ALREADY_UNINSTALLED","features":[155]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_DELETE_PENDING","features":[155]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_STILL_IN_USE","features":[155]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_UNINSTALLED","features":[155]},{"name":"IAssemblyCache","features":[155]},{"name":"IAssemblyCacheItem","features":[155]},{"name":"IAssemblyName","features":[155]},{"name":"IEnumMsmDependency","features":[155]},{"name":"IEnumMsmError","features":[155]},{"name":"IEnumMsmString","features":[155]},{"name":"IMsmDependencies","features":[155]},{"name":"IMsmDependency","features":[155]},{"name":"IMsmError","features":[155]},{"name":"IMsmErrors","features":[155]},{"name":"IMsmGetFiles","features":[155]},{"name":"IMsmMerge","features":[155]},{"name":"IMsmStrings","features":[155]},{"name":"INFO_BASE","features":[155]},{"name":"INFO_ENTERING_PHASE_I","features":[155]},{"name":"INFO_ENTERING_PHASE_II","features":[155]},{"name":"INFO_ENTERING_PHASE_III","features":[155]},{"name":"INFO_ENTERING_PHASE_IV","features":[155]},{"name":"INFO_ENTERING_PHASE_I_VALIDATION","features":[155]},{"name":"INFO_ENTERING_PHASE_V","features":[155]},{"name":"INFO_GENERATING_METADATA","features":[155]},{"name":"INFO_PASSED_MAIN_CONTROL","features":[155]},{"name":"INFO_PATCHCACHE_FILEINFO_FAILURE","features":[155]},{"name":"INFO_PATCHCACHE_PCI_READFAILURE","features":[155]},{"name":"INFO_PATCHCACHE_PCI_WRITEFAILURE","features":[155]},{"name":"INFO_PCP_PATH","features":[155]},{"name":"INFO_PROPERTY","features":[155]},{"name":"INFO_SET_OPTIONS","features":[155]},{"name":"INFO_SUCCESSFUL_PATCH_CREATION","features":[155]},{"name":"INFO_TEMP_DIR","features":[155]},{"name":"INFO_TEMP_DIR_CLEANUP","features":[155]},{"name":"INFO_USING_USER_MSI_FOR_PATCH_TABLES","features":[155]},{"name":"INSTALLFEATUREATTRIBUTE","features":[155]},{"name":"INSTALLFEATUREATTRIBUTE_DISALLOWADVERTISE","features":[155]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORADVERTISE","features":[155]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORLOCAL","features":[155]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORSOURCE","features":[155]},{"name":"INSTALLFEATUREATTRIBUTE_FOLLOWPARENT","features":[155]},{"name":"INSTALLFEATUREATTRIBUTE_NOUNSUPPORTEDADVERTISE","features":[155]},{"name":"INSTALLLEVEL","features":[155]},{"name":"INSTALLLEVEL_DEFAULT","features":[155]},{"name":"INSTALLLEVEL_MAXIMUM","features":[155]},{"name":"INSTALLLEVEL_MINIMUM","features":[155]},{"name":"INSTALLLOGATTRIBUTES","features":[155]},{"name":"INSTALLLOGATTRIBUTES_APPEND","features":[155]},{"name":"INSTALLLOGATTRIBUTES_FLUSHEACHLINE","features":[155]},{"name":"INSTALLLOGMODE","features":[155]},{"name":"INSTALLLOGMODE_ACTIONDATA","features":[155]},{"name":"INSTALLLOGMODE_ACTIONSTART","features":[155]},{"name":"INSTALLLOGMODE_COMMONDATA","features":[155]},{"name":"INSTALLLOGMODE_ERROR","features":[155]},{"name":"INSTALLLOGMODE_EXTRADEBUG","features":[155]},{"name":"INSTALLLOGMODE_FATALEXIT","features":[155]},{"name":"INSTALLLOGMODE_FILESINUSE","features":[155]},{"name":"INSTALLLOGMODE_INFO","features":[155]},{"name":"INSTALLLOGMODE_INITIALIZE","features":[155]},{"name":"INSTALLLOGMODE_INSTALLEND","features":[155]},{"name":"INSTALLLOGMODE_INSTALLSTART","features":[155]},{"name":"INSTALLLOGMODE_LOGONLYONERROR","features":[155]},{"name":"INSTALLLOGMODE_LOGPERFORMANCE","features":[155]},{"name":"INSTALLLOGMODE_OUTOFDISKSPACE","features":[155]},{"name":"INSTALLLOGMODE_PROGRESS","features":[155]},{"name":"INSTALLLOGMODE_PROPERTYDUMP","features":[155]},{"name":"INSTALLLOGMODE_RESOLVESOURCE","features":[155]},{"name":"INSTALLLOGMODE_RMFILESINUSE","features":[155]},{"name":"INSTALLLOGMODE_SHOWDIALOG","features":[155]},{"name":"INSTALLLOGMODE_TERMINATE","features":[155]},{"name":"INSTALLLOGMODE_USER","features":[155]},{"name":"INSTALLLOGMODE_VERBOSE","features":[155]},{"name":"INSTALLLOGMODE_WARNING","features":[155]},{"name":"INSTALLMESSAGE","features":[155]},{"name":"INSTALLMESSAGE_ACTIONDATA","features":[155]},{"name":"INSTALLMESSAGE_ACTIONSTART","features":[155]},{"name":"INSTALLMESSAGE_COMMONDATA","features":[155]},{"name":"INSTALLMESSAGE_ERROR","features":[155]},{"name":"INSTALLMESSAGE_FATALEXIT","features":[155]},{"name":"INSTALLMESSAGE_FILESINUSE","features":[155]},{"name":"INSTALLMESSAGE_INFO","features":[155]},{"name":"INSTALLMESSAGE_INITIALIZE","features":[155]},{"name":"INSTALLMESSAGE_INSTALLEND","features":[155]},{"name":"INSTALLMESSAGE_INSTALLSTART","features":[155]},{"name":"INSTALLMESSAGE_OUTOFDISKSPACE","features":[155]},{"name":"INSTALLMESSAGE_PERFORMANCE","features":[155]},{"name":"INSTALLMESSAGE_PROGRESS","features":[155]},{"name":"INSTALLMESSAGE_RESOLVESOURCE","features":[155]},{"name":"INSTALLMESSAGE_RMFILESINUSE","features":[155]},{"name":"INSTALLMESSAGE_SHOWDIALOG","features":[155]},{"name":"INSTALLMESSAGE_TERMINATE","features":[155]},{"name":"INSTALLMESSAGE_TYPEMASK","features":[155]},{"name":"INSTALLMESSAGE_USER","features":[155]},{"name":"INSTALLMESSAGE_WARNING","features":[155]},{"name":"INSTALLMODE","features":[155]},{"name":"INSTALLMODE_DEFAULT","features":[155]},{"name":"INSTALLMODE_EXISTING","features":[155]},{"name":"INSTALLMODE_NODETECTION","features":[155]},{"name":"INSTALLMODE_NODETECTION_ANY","features":[155]},{"name":"INSTALLMODE_NOSOURCERESOLUTION","features":[155]},{"name":"INSTALLPROPERTY_ASSIGNMENTTYPE","features":[155]},{"name":"INSTALLPROPERTY_AUTHORIZED_LUA_APP","features":[155]},{"name":"INSTALLPROPERTY_DISKPROMPT","features":[155]},{"name":"INSTALLPROPERTY_DISPLAYNAME","features":[155]},{"name":"INSTALLPROPERTY_HELPLINK","features":[155]},{"name":"INSTALLPROPERTY_HELPTELEPHONE","features":[155]},{"name":"INSTALLPROPERTY_INSTALLDATE","features":[155]},{"name":"INSTALLPROPERTY_INSTALLEDLANGUAGE","features":[155]},{"name":"INSTALLPROPERTY_INSTALLEDPRODUCTNAME","features":[155]},{"name":"INSTALLPROPERTY_INSTALLLOCATION","features":[155]},{"name":"INSTALLPROPERTY_INSTALLSOURCE","features":[155]},{"name":"INSTALLPROPERTY_INSTANCETYPE","features":[155]},{"name":"INSTALLPROPERTY_LANGUAGE","features":[155]},{"name":"INSTALLPROPERTY_LASTUSEDSOURCE","features":[155]},{"name":"INSTALLPROPERTY_LASTUSEDTYPE","features":[155]},{"name":"INSTALLPROPERTY_LOCALPACKAGE","features":[155]},{"name":"INSTALLPROPERTY_LUAENABLED","features":[155]},{"name":"INSTALLPROPERTY_MEDIAPACKAGEPATH","features":[155]},{"name":"INSTALLPROPERTY_MOREINFOURL","features":[155]},{"name":"INSTALLPROPERTY_PACKAGECODE","features":[155]},{"name":"INSTALLPROPERTY_PACKAGENAME","features":[155]},{"name":"INSTALLPROPERTY_PATCHSTATE","features":[155]},{"name":"INSTALLPROPERTY_PATCHTYPE","features":[155]},{"name":"INSTALLPROPERTY_PRODUCTICON","features":[155]},{"name":"INSTALLPROPERTY_PRODUCTID","features":[155]},{"name":"INSTALLPROPERTY_PRODUCTNAME","features":[155]},{"name":"INSTALLPROPERTY_PRODUCTSTATE","features":[155]},{"name":"INSTALLPROPERTY_PUBLISHER","features":[155]},{"name":"INSTALLPROPERTY_REGCOMPANY","features":[155]},{"name":"INSTALLPROPERTY_REGOWNER","features":[155]},{"name":"INSTALLPROPERTY_TRANSFORMS","features":[155]},{"name":"INSTALLPROPERTY_UNINSTALLABLE","features":[155]},{"name":"INSTALLPROPERTY_URLINFOABOUT","features":[155]},{"name":"INSTALLPROPERTY_URLUPDATEINFO","features":[155]},{"name":"INSTALLPROPERTY_VERSION","features":[155]},{"name":"INSTALLPROPERTY_VERSIONMAJOR","features":[155]},{"name":"INSTALLPROPERTY_VERSIONMINOR","features":[155]},{"name":"INSTALLPROPERTY_VERSIONSTRING","features":[155]},{"name":"INSTALLSTATE","features":[155]},{"name":"INSTALLSTATE_ABSENT","features":[155]},{"name":"INSTALLSTATE_ADVERTISED","features":[155]},{"name":"INSTALLSTATE_BADCONFIG","features":[155]},{"name":"INSTALLSTATE_BROKEN","features":[155]},{"name":"INSTALLSTATE_DEFAULT","features":[155]},{"name":"INSTALLSTATE_INCOMPLETE","features":[155]},{"name":"INSTALLSTATE_INVALIDARG","features":[155]},{"name":"INSTALLSTATE_LOCAL","features":[155]},{"name":"INSTALLSTATE_MOREDATA","features":[155]},{"name":"INSTALLSTATE_NOTUSED","features":[155]},{"name":"INSTALLSTATE_REMOVED","features":[155]},{"name":"INSTALLSTATE_SOURCE","features":[155]},{"name":"INSTALLSTATE_SOURCEABSENT","features":[155]},{"name":"INSTALLSTATE_UNKNOWN","features":[155]},{"name":"INSTALLTYPE","features":[155]},{"name":"INSTALLTYPE_DEFAULT","features":[155]},{"name":"INSTALLTYPE_NETWORK_IMAGE","features":[155]},{"name":"INSTALLTYPE_SINGLE_INSTANCE","features":[155]},{"name":"INSTALLUILEVEL","features":[155]},{"name":"INSTALLUILEVEL_BASIC","features":[155]},{"name":"INSTALLUILEVEL_DEFAULT","features":[155]},{"name":"INSTALLUILEVEL_ENDDIALOG","features":[155]},{"name":"INSTALLUILEVEL_FULL","features":[155]},{"name":"INSTALLUILEVEL_HIDECANCEL","features":[155]},{"name":"INSTALLUILEVEL_NOCHANGE","features":[155]},{"name":"INSTALLUILEVEL_NONE","features":[155]},{"name":"INSTALLUILEVEL_PROGRESSONLY","features":[155]},{"name":"INSTALLUILEVEL_REDUCED","features":[155]},{"name":"INSTALLUILEVEL_SOURCERESONLY","features":[155]},{"name":"INSTALLUILEVEL_UACONLY","features":[155]},{"name":"INSTALLUI_HANDLERA","features":[155]},{"name":"INSTALLUI_HANDLERW","features":[155]},{"name":"IPMApplicationInfo","features":[155]},{"name":"IPMApplicationInfoEnumerator","features":[155]},{"name":"IPMBackgroundServiceAgentInfo","features":[155]},{"name":"IPMBackgroundServiceAgentInfoEnumerator","features":[155]},{"name":"IPMBackgroundWorkerInfo","features":[155]},{"name":"IPMBackgroundWorkerInfoEnumerator","features":[155]},{"name":"IPMDeploymentManager","features":[155]},{"name":"IPMEnumerationManager","features":[155]},{"name":"IPMExtensionCachedFileUpdaterInfo","features":[155]},{"name":"IPMExtensionContractInfo","features":[155]},{"name":"IPMExtensionFileExtensionInfo","features":[155]},{"name":"IPMExtensionFileOpenPickerInfo","features":[155]},{"name":"IPMExtensionFileSavePickerInfo","features":[155]},{"name":"IPMExtensionInfo","features":[155]},{"name":"IPMExtensionInfoEnumerator","features":[155]},{"name":"IPMExtensionProtocolInfo","features":[155]},{"name":"IPMExtensionShareTargetInfo","features":[155]},{"name":"IPMLiveTileJobInfo","features":[155]},{"name":"IPMLiveTileJobInfoEnumerator","features":[155]},{"name":"IPMTaskInfo","features":[155]},{"name":"IPMTaskInfoEnumerator","features":[155]},{"name":"IPMTileInfo","features":[155]},{"name":"IPMTileInfoEnumerator","features":[155]},{"name":"IPMTilePropertyEnumerator","features":[155]},{"name":"IPMTilePropertyInfo","features":[155]},{"name":"IPROPNAME_ACTION","features":[155]},{"name":"IPROPNAME_ADMINTOOLS_FOLDER","features":[155]},{"name":"IPROPNAME_ADMINUSER","features":[155]},{"name":"IPROPNAME_ADMIN_PROPERTIES","features":[155]},{"name":"IPROPNAME_AFTERREBOOT","features":[155]},{"name":"IPROPNAME_ALLOWEDPROPERTIES","features":[155]},{"name":"IPROPNAME_ALLUSERS","features":[155]},{"name":"IPROPNAME_APPDATA_FOLDER","features":[155]},{"name":"IPROPNAME_ARM","features":[155]},{"name":"IPROPNAME_ARM64","features":[155]},{"name":"IPROPNAME_ARPAUTHORIZEDCDFPREFIX","features":[155]},{"name":"IPROPNAME_ARPCOMMENTS","features":[155]},{"name":"IPROPNAME_ARPCONTACT","features":[155]},{"name":"IPROPNAME_ARPHELPLINK","features":[155]},{"name":"IPROPNAME_ARPHELPTELEPHONE","features":[155]},{"name":"IPROPNAME_ARPINSTALLLOCATION","features":[155]},{"name":"IPROPNAME_ARPNOMODIFY","features":[155]},{"name":"IPROPNAME_ARPNOREMOVE","features":[155]},{"name":"IPROPNAME_ARPNOREPAIR","features":[155]},{"name":"IPROPNAME_ARPPRODUCTICON","features":[155]},{"name":"IPROPNAME_ARPREADME","features":[155]},{"name":"IPROPNAME_ARPSETTINGSIDENTIFIER","features":[155]},{"name":"IPROPNAME_ARPSHIMFLAGS","features":[155]},{"name":"IPROPNAME_ARPSHIMSERVICEPACKLEVEL","features":[155]},{"name":"IPROPNAME_ARPSHIMVERSIONNT","features":[155]},{"name":"IPROPNAME_ARPSIZE","features":[155]},{"name":"IPROPNAME_ARPSYSTEMCOMPONENT","features":[155]},{"name":"IPROPNAME_ARPURLINFOABOUT","features":[155]},{"name":"IPROPNAME_ARPURLUPDATEINFO","features":[155]},{"name":"IPROPNAME_AVAILABLEFREEREG","features":[155]},{"name":"IPROPNAME_BORDERSIDE","features":[155]},{"name":"IPROPNAME_BORDERTOP","features":[155]},{"name":"IPROPNAME_CAPTIONHEIGHT","features":[155]},{"name":"IPROPNAME_CARRYINGNDP","features":[155]},{"name":"IPROPNAME_CHECKCRCS","features":[155]},{"name":"IPROPNAME_COLORBITS","features":[155]},{"name":"IPROPNAME_COMMONAPPDATA_FOLDER","features":[155]},{"name":"IPROPNAME_COMMONFILES64_FOLDER","features":[155]},{"name":"IPROPNAME_COMMONFILES_FOLDER","features":[155]},{"name":"IPROPNAME_COMPANYNAME","features":[155]},{"name":"IPROPNAME_COMPONENTADDDEFAULT","features":[155]},{"name":"IPROPNAME_COMPONENTADDLOCAL","features":[155]},{"name":"IPROPNAME_COMPONENTADDSOURCE","features":[155]},{"name":"IPROPNAME_COMPUTERNAME","features":[155]},{"name":"IPROPNAME_COSTINGCOMPLETE","features":[155]},{"name":"IPROPNAME_CUSTOMACTIONDATA","features":[155]},{"name":"IPROPNAME_DATE","features":[155]},{"name":"IPROPNAME_DATETIME","features":[155]},{"name":"IPROPNAME_DEFAULTUIFONT","features":[155]},{"name":"IPROPNAME_DESKTOP_FOLDER","features":[155]},{"name":"IPROPNAME_DISABLEADVTSHORTCUTS","features":[155]},{"name":"IPROPNAME_DISABLEROLLBACK","features":[155]},{"name":"IPROPNAME_DISKPROMPT","features":[155]},{"name":"IPROPNAME_ENABLEUSERCONTROL","features":[155]},{"name":"IPROPNAME_ENFORCE_UPGRADE_COMPONENT_RULES","features":[155]},{"name":"IPROPNAME_EXECUTEACTION","features":[155]},{"name":"IPROPNAME_EXECUTEMODE","features":[155]},{"name":"IPROPNAME_FAVORITES_FOLDER","features":[155]},{"name":"IPROPNAME_FEATUREADDDEFAULT","features":[155]},{"name":"IPROPNAME_FEATUREADDLOCAL","features":[155]},{"name":"IPROPNAME_FEATUREADDSOURCE","features":[155]},{"name":"IPROPNAME_FEATUREADVERTISE","features":[155]},{"name":"IPROPNAME_FEATUREREMOVE","features":[155]},{"name":"IPROPNAME_FILEADDDEFAULT","features":[155]},{"name":"IPROPNAME_FILEADDLOCAL","features":[155]},{"name":"IPROPNAME_FILEADDSOURCE","features":[155]},{"name":"IPROPNAME_FONTS_FOLDER","features":[155]},{"name":"IPROPNAME_HIDDEN_PROPERTIES","features":[155]},{"name":"IPROPNAME_HIDECANCEL","features":[155]},{"name":"IPROPNAME_IA64","features":[155]},{"name":"IPROPNAME_INSTALLED","features":[155]},{"name":"IPROPNAME_INSTALLLANGUAGE","features":[155]},{"name":"IPROPNAME_INSTALLLEVEL","features":[155]},{"name":"IPROPNAME_INSTALLPERUSER","features":[155]},{"name":"IPROPNAME_INTEL","features":[155]},{"name":"IPROPNAME_INTEL64","features":[155]},{"name":"IPROPNAME_INTERNALINSTALLEDPERUSER","features":[155]},{"name":"IPROPNAME_ISADMINPACKAGE","features":[155]},{"name":"IPROPNAME_LEFTUNIT","features":[155]},{"name":"IPROPNAME_LIMITUI","features":[155]},{"name":"IPROPNAME_LOCALAPPDATA_FOLDER","features":[155]},{"name":"IPROPNAME_LOGACTION","features":[155]},{"name":"IPROPNAME_LOGONUSER","features":[155]},{"name":"IPROPNAME_MANUFACTURER","features":[155]},{"name":"IPROPNAME_MSIAMD64","features":[155]},{"name":"IPROPNAME_MSIDISABLEEEUI","features":[155]},{"name":"IPROPNAME_MSIDISABLELUAPATCHING","features":[155]},{"name":"IPROPNAME_MSIINSTANCEGUID","features":[155]},{"name":"IPROPNAME_MSILOGFILELOCATION","features":[155]},{"name":"IPROPNAME_MSILOGGINGMODE","features":[155]},{"name":"IPROPNAME_MSINEWINSTANCE","features":[155]},{"name":"IPROPNAME_MSINODISABLEMEDIA","features":[155]},{"name":"IPROPNAME_MSIPACKAGEDOWNLOADLOCALCOPY","features":[155]},{"name":"IPROPNAME_MSIPATCHDOWNLOADLOCALCOPY","features":[155]},{"name":"IPROPNAME_MSIPATCHREMOVE","features":[155]},{"name":"IPROPNAME_MSITABLETPC","features":[155]},{"name":"IPROPNAME_MSIX64","features":[155]},{"name":"IPROPNAME_MSI_FASTINSTALL","features":[155]},{"name":"IPROPNAME_MSI_REBOOT_PENDING","features":[155]},{"name":"IPROPNAME_MSI_RM_CONTROL","features":[155]},{"name":"IPROPNAME_MSI_RM_DISABLE_RESTART","features":[155]},{"name":"IPROPNAME_MSI_RM_SESSION_KEY","features":[155]},{"name":"IPROPNAME_MSI_RM_SHUTDOWN","features":[155]},{"name":"IPROPNAME_MSI_UAC_DEPLOYMENT_COMPLIANT","features":[155]},{"name":"IPROPNAME_MSI_UNINSTALL_SUPERSEDED_COMPONENTS","features":[155]},{"name":"IPROPNAME_MSI_USE_REAL_ADMIN_DETECTION","features":[155]},{"name":"IPROPNAME_MYPICTURES_FOLDER","features":[155]},{"name":"IPROPNAME_NETASSEMBLYSUPPORT","features":[155]},{"name":"IPROPNAME_NETHOOD_FOLDER","features":[155]},{"name":"IPROPNAME_NOCOMPANYNAME","features":[155]},{"name":"IPROPNAME_NOUSERNAME","features":[155]},{"name":"IPROPNAME_NTPRODUCTTYPE","features":[155]},{"name":"IPROPNAME_NTSUITEBACKOFFICE","features":[155]},{"name":"IPROPNAME_NTSUITEDATACENTER","features":[155]},{"name":"IPROPNAME_NTSUITEENTERPRISE","features":[155]},{"name":"IPROPNAME_NTSUITEPERSONAL","features":[155]},{"name":"IPROPNAME_NTSUITESMALLBUSINESS","features":[155]},{"name":"IPROPNAME_NTSUITESMALLBUSINESSRESTRICTED","features":[155]},{"name":"IPROPNAME_NTSUITEWEBSERVER","features":[155]},{"name":"IPROPNAME_OLEADVTSUPPORT","features":[155]},{"name":"IPROPNAME_OUTOFDISKSPACE","features":[155]},{"name":"IPROPNAME_OUTOFNORBDISKSPACE","features":[155]},{"name":"IPROPNAME_PATCH","features":[155]},{"name":"IPROPNAME_PATCHNEWPACKAGECODE","features":[155]},{"name":"IPROPNAME_PATCHNEWSUMMARYCOMMENTS","features":[155]},{"name":"IPROPNAME_PATCHNEWSUMMARYSUBJECT","features":[155]},{"name":"IPROPNAME_PERSONAL_FOLDER","features":[155]},{"name":"IPROPNAME_PHYSICALMEMORY","features":[155]},{"name":"IPROPNAME_PIDKEY","features":[155]},{"name":"IPROPNAME_PIDTEMPLATE","features":[155]},{"name":"IPROPNAME_PRESELECTED","features":[155]},{"name":"IPROPNAME_PRIMARYFOLDER","features":[155]},{"name":"IPROPNAME_PRIMARYFOLDER_PATH","features":[155]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEAVAILABLE","features":[155]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREMAINING","features":[155]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREQUIRED","features":[155]},{"name":"IPROPNAME_PRINTHOOD_FOLDER","features":[155]},{"name":"IPROPNAME_PRIVILEGED","features":[155]},{"name":"IPROPNAME_PRODUCTCODE","features":[155]},{"name":"IPROPNAME_PRODUCTID","features":[155]},{"name":"IPROPNAME_PRODUCTLANGUAGE","features":[155]},{"name":"IPROPNAME_PRODUCTNAME","features":[155]},{"name":"IPROPNAME_PRODUCTSTATE","features":[155]},{"name":"IPROPNAME_PRODUCTVERSION","features":[155]},{"name":"IPROPNAME_PROGRAMFILES64_FOLDER","features":[155]},{"name":"IPROPNAME_PROGRAMFILES_FOLDER","features":[155]},{"name":"IPROPNAME_PROGRAMMENU_FOLDER","features":[155]},{"name":"IPROPNAME_PROGRESSONLY","features":[155]},{"name":"IPROPNAME_PROMPTROLLBACKCOST","features":[155]},{"name":"IPROPNAME_REBOOT","features":[155]},{"name":"IPROPNAME_REBOOTPROMPT","features":[155]},{"name":"IPROPNAME_RECENT_FOLDER","features":[155]},{"name":"IPROPNAME_REDIRECTEDDLLSUPPORT","features":[155]},{"name":"IPROPNAME_REINSTALL","features":[155]},{"name":"IPROPNAME_REINSTALLMODE","features":[155]},{"name":"IPROPNAME_REMOTEADMINTS","features":[155]},{"name":"IPROPNAME_REPLACEDINUSEFILES","features":[155]},{"name":"IPROPNAME_RESTRICTEDUSERCONTROL","features":[155]},{"name":"IPROPNAME_RESUME","features":[155]},{"name":"IPROPNAME_ROLLBACKDISABLED","features":[155]},{"name":"IPROPNAME_ROOTDRIVE","features":[155]},{"name":"IPROPNAME_RUNNINGELEVATED","features":[155]},{"name":"IPROPNAME_SCREENX","features":[155]},{"name":"IPROPNAME_SCREENY","features":[155]},{"name":"IPROPNAME_SENDTO_FOLDER","features":[155]},{"name":"IPROPNAME_SEQUENCE","features":[155]},{"name":"IPROPNAME_SERVICEPACKLEVEL","features":[155]},{"name":"IPROPNAME_SERVICEPACKLEVELMINOR","features":[155]},{"name":"IPROPNAME_SHAREDWINDOWS","features":[155]},{"name":"IPROPNAME_SHELLADVTSUPPORT","features":[155]},{"name":"IPROPNAME_SHORTFILENAMES","features":[155]},{"name":"IPROPNAME_SOURCEDIR","features":[155]},{"name":"IPROPNAME_SOURCELIST","features":[155]},{"name":"IPROPNAME_SOURCERESONLY","features":[155]},{"name":"IPROPNAME_STARTMENU_FOLDER","features":[155]},{"name":"IPROPNAME_STARTUP_FOLDER","features":[155]},{"name":"IPROPNAME_SYSTEM16_FOLDER","features":[155]},{"name":"IPROPNAME_SYSTEM64_FOLDER","features":[155]},{"name":"IPROPNAME_SYSTEMLANGUAGEID","features":[155]},{"name":"IPROPNAME_SYSTEM_FOLDER","features":[155]},{"name":"IPROPNAME_TARGETDIR","features":[155]},{"name":"IPROPNAME_TEMPLATE_AMD64","features":[155]},{"name":"IPROPNAME_TEMPLATE_FOLDER","features":[155]},{"name":"IPROPNAME_TEMPLATE_X64","features":[155]},{"name":"IPROPNAME_TEMP_FOLDER","features":[155]},{"name":"IPROPNAME_TERMSERVER","features":[155]},{"name":"IPROPNAME_TEXTHEIGHT","features":[155]},{"name":"IPROPNAME_TEXTHEIGHT_CORRECTION","features":[155]},{"name":"IPROPNAME_TEXTINTERNALLEADING","features":[155]},{"name":"IPROPNAME_TIME","features":[155]},{"name":"IPROPNAME_TRANSFORMS","features":[155]},{"name":"IPROPNAME_TRANSFORMSATSOURCE","features":[155]},{"name":"IPROPNAME_TRANSFORMSSECURE","features":[155]},{"name":"IPROPNAME_TRUEADMINUSER","features":[155]},{"name":"IPROPNAME_TTCSUPPORT","features":[155]},{"name":"IPROPNAME_UACONLY","features":[155]},{"name":"IPROPNAME_UPDATESTARTED","features":[155]},{"name":"IPROPNAME_UPGRADECODE","features":[155]},{"name":"IPROPNAME_USERLANGUAGEID","features":[155]},{"name":"IPROPNAME_USERNAME","features":[155]},{"name":"IPROPNAME_USERSID","features":[155]},{"name":"IPROPNAME_VERSION9X","features":[155]},{"name":"IPROPNAME_VERSIONNT","features":[155]},{"name":"IPROPNAME_VERSIONNT64","features":[155]},{"name":"IPROPNAME_VIRTUALMEMORY","features":[155]},{"name":"IPROPNAME_WIN32ASSEMBLYSUPPORT","features":[155]},{"name":"IPROPNAME_WINDOWSBUILD","features":[155]},{"name":"IPROPNAME_WINDOWS_FOLDER","features":[155]},{"name":"IPROPNAME_WINDOWS_VOLUME","features":[155]},{"name":"IPROPVALUE_EXECUTEMODE_NONE","features":[155]},{"name":"IPROPVALUE_EXECUTEMODE_SCRIPT","features":[155]},{"name":"IPROPVALUE_FEATURE_ALL","features":[155]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLE","features":[155]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLESHUTDOWN","features":[155]},{"name":"IPROPVALUE_RBCOST_FAIL","features":[155]},{"name":"IPROPVALUE_RBCOST_PROMPT","features":[155]},{"name":"IPROPVALUE_RBCOST_SILENT","features":[155]},{"name":"IPROPVALUE__CARRYINGNDP_URTREINSTALL","features":[155]},{"name":"IPROPVALUE__CARRYINGNDP_URTUPGRADE","features":[155]},{"name":"IValidate","features":[155]},{"name":"LIBID_MsmMergeTypeLib","features":[155]},{"name":"LOGALL","features":[155]},{"name":"LOGERR","features":[155]},{"name":"LOGINFO","features":[155]},{"name":"LOGNONE","features":[155]},{"name":"LOGPERFMESSAGES","features":[155]},{"name":"LOGTOKEN_NO_LOG","features":[155]},{"name":"LOGTOKEN_SETUPAPI_APPLOG","features":[155]},{"name":"LOGTOKEN_SETUPAPI_DEVLOG","features":[155]},{"name":"LOGTOKEN_TYPE_MASK","features":[155]},{"name":"LOGTOKEN_UNSPECIFIED","features":[155]},{"name":"LOGWARN","features":[155]},{"name":"LPDISPLAYVAL","features":[3,155]},{"name":"LPEVALCOMCALLBACK","features":[3,155]},{"name":"MAX_FEATURE_CHARS","features":[155]},{"name":"MAX_GUID_CHARS","features":[155]},{"name":"MSIADVERTISEOPTIONFLAGS","features":[155]},{"name":"MSIADVERTISEOPTIONFLAGS_INSTANCE","features":[155]},{"name":"MSIARCHITECTUREFLAGS","features":[155]},{"name":"MSIARCHITECTUREFLAGS_AMD64","features":[155]},{"name":"MSIARCHITECTUREFLAGS_ARM","features":[155]},{"name":"MSIARCHITECTUREFLAGS_IA64","features":[155]},{"name":"MSIARCHITECTUREFLAGS_X86","features":[155]},{"name":"MSIASSEMBLYINFO","features":[155]},{"name":"MSIASSEMBLYINFO_NETASSEMBLY","features":[155]},{"name":"MSIASSEMBLYINFO_WIN32ASSEMBLY","features":[155]},{"name":"MSICODE","features":[155]},{"name":"MSICODE_PATCH","features":[155]},{"name":"MSICODE_PRODUCT","features":[155]},{"name":"MSICOLINFO","features":[155]},{"name":"MSICOLINFO_NAMES","features":[155]},{"name":"MSICOLINFO_TYPES","features":[155]},{"name":"MSICONDITION","features":[155]},{"name":"MSICONDITION_ERROR","features":[155]},{"name":"MSICONDITION_FALSE","features":[155]},{"name":"MSICONDITION_NONE","features":[155]},{"name":"MSICONDITION_TRUE","features":[155]},{"name":"MSICOSTTREE","features":[155]},{"name":"MSICOSTTREE_CHILDREN","features":[155]},{"name":"MSICOSTTREE_PARENTS","features":[155]},{"name":"MSICOSTTREE_RESERVED","features":[155]},{"name":"MSICOSTTREE_SELFONLY","features":[155]},{"name":"MSIDBERROR","features":[155]},{"name":"MSIDBERROR_BADCABINET","features":[155]},{"name":"MSIDBERROR_BADCASE","features":[155]},{"name":"MSIDBERROR_BADCATEGORY","features":[155]},{"name":"MSIDBERROR_BADCONDITION","features":[155]},{"name":"MSIDBERROR_BADCUSTOMSOURCE","features":[155]},{"name":"MSIDBERROR_BADDEFAULTDIR","features":[155]},{"name":"MSIDBERROR_BADFILENAME","features":[155]},{"name":"MSIDBERROR_BADFORMATTED","features":[155]},{"name":"MSIDBERROR_BADGUID","features":[155]},{"name":"MSIDBERROR_BADIDENTIFIER","features":[155]},{"name":"MSIDBERROR_BADKEYTABLE","features":[155]},{"name":"MSIDBERROR_BADLANGUAGE","features":[155]},{"name":"MSIDBERROR_BADLINK","features":[155]},{"name":"MSIDBERROR_BADLOCALIZEATTRIB","features":[155]},{"name":"MSIDBERROR_BADMAXMINVALUES","features":[155]},{"name":"MSIDBERROR_BADPATH","features":[155]},{"name":"MSIDBERROR_BADPROPERTY","features":[155]},{"name":"MSIDBERROR_BADREGPATH","features":[155]},{"name":"MSIDBERROR_BADSHORTCUT","features":[155]},{"name":"MSIDBERROR_BADTEMPLATE","features":[155]},{"name":"MSIDBERROR_BADVERSION","features":[155]},{"name":"MSIDBERROR_BADWILDCARD","features":[155]},{"name":"MSIDBERROR_DUPLICATEKEY","features":[155]},{"name":"MSIDBERROR_FUNCTIONERROR","features":[155]},{"name":"MSIDBERROR_INVALIDARG","features":[155]},{"name":"MSIDBERROR_MISSINGDATA","features":[155]},{"name":"MSIDBERROR_MOREDATA","features":[155]},{"name":"MSIDBERROR_NOERROR","features":[155]},{"name":"MSIDBERROR_NOTINSET","features":[155]},{"name":"MSIDBERROR_OVERFLOW","features":[155]},{"name":"MSIDBERROR_REQUIRED","features":[155]},{"name":"MSIDBERROR_STRINGOVERFLOW","features":[155]},{"name":"MSIDBERROR_UNDERFLOW","features":[155]},{"name":"MSIDBOPEN_CREATE","features":[155]},{"name":"MSIDBOPEN_CREATEDIRECT","features":[155]},{"name":"MSIDBOPEN_DIRECT","features":[155]},{"name":"MSIDBOPEN_PATCHFILE","features":[155]},{"name":"MSIDBOPEN_READONLY","features":[155]},{"name":"MSIDBOPEN_TRANSACT","features":[155]},{"name":"MSIDBSTATE","features":[155]},{"name":"MSIDBSTATE_ERROR","features":[155]},{"name":"MSIDBSTATE_READ","features":[155]},{"name":"MSIDBSTATE_WRITE","features":[155]},{"name":"MSIFILEHASHINFO","features":[155]},{"name":"MSIHANDLE","features":[155]},{"name":"MSIINSTALLCONTEXT","features":[155]},{"name":"MSIINSTALLCONTEXT_ALL","features":[155]},{"name":"MSIINSTALLCONTEXT_ALLUSERMANAGED","features":[155]},{"name":"MSIINSTALLCONTEXT_FIRSTVISIBLE","features":[155]},{"name":"MSIINSTALLCONTEXT_MACHINE","features":[155]},{"name":"MSIINSTALLCONTEXT_NONE","features":[155]},{"name":"MSIINSTALLCONTEXT_USERMANAGED","features":[155]},{"name":"MSIINSTALLCONTEXT_USERUNMANAGED","features":[155]},{"name":"MSIMODIFY","features":[155]},{"name":"MSIMODIFY_ASSIGN","features":[155]},{"name":"MSIMODIFY_DELETE","features":[155]},{"name":"MSIMODIFY_INSERT","features":[155]},{"name":"MSIMODIFY_INSERT_TEMPORARY","features":[155]},{"name":"MSIMODIFY_MERGE","features":[155]},{"name":"MSIMODIFY_REFRESH","features":[155]},{"name":"MSIMODIFY_REPLACE","features":[155]},{"name":"MSIMODIFY_SEEK","features":[155]},{"name":"MSIMODIFY_UPDATE","features":[155]},{"name":"MSIMODIFY_VALIDATE","features":[155]},{"name":"MSIMODIFY_VALIDATE_DELETE","features":[155]},{"name":"MSIMODIFY_VALIDATE_FIELD","features":[155]},{"name":"MSIMODIFY_VALIDATE_NEW","features":[155]},{"name":"MSIOPENPACKAGEFLAGS","features":[155]},{"name":"MSIOPENPACKAGEFLAGS_IGNOREMACHINESTATE","features":[155]},{"name":"MSIPATCHDATATYPE","features":[155]},{"name":"MSIPATCHSEQUENCEINFOA","features":[155]},{"name":"MSIPATCHSEQUENCEINFOW","features":[155]},{"name":"MSIPATCHSTATE","features":[155]},{"name":"MSIPATCHSTATE_ALL","features":[155]},{"name":"MSIPATCHSTATE_APPLIED","features":[155]},{"name":"MSIPATCHSTATE_INVALID","features":[155]},{"name":"MSIPATCHSTATE_OBSOLETED","features":[155]},{"name":"MSIPATCHSTATE_REGISTERED","features":[155]},{"name":"MSIPATCHSTATE_SUPERSEDED","features":[155]},{"name":"MSIPATCH_DATATYPE_PATCHFILE","features":[155]},{"name":"MSIPATCH_DATATYPE_XMLBLOB","features":[155]},{"name":"MSIPATCH_DATATYPE_XMLPATH","features":[155]},{"name":"MSIRUNMODE","features":[155]},{"name":"MSIRUNMODE_ADMIN","features":[155]},{"name":"MSIRUNMODE_ADVERTISE","features":[155]},{"name":"MSIRUNMODE_CABINET","features":[155]},{"name":"MSIRUNMODE_COMMIT","features":[155]},{"name":"MSIRUNMODE_LOGENABLED","features":[155]},{"name":"MSIRUNMODE_MAINTENANCE","features":[155]},{"name":"MSIRUNMODE_OPERATIONS","features":[155]},{"name":"MSIRUNMODE_REBOOTATEND","features":[155]},{"name":"MSIRUNMODE_REBOOTNOW","features":[155]},{"name":"MSIRUNMODE_RESERVED11","features":[155]},{"name":"MSIRUNMODE_RESERVED14","features":[155]},{"name":"MSIRUNMODE_RESERVED15","features":[155]},{"name":"MSIRUNMODE_ROLLBACK","features":[155]},{"name":"MSIRUNMODE_ROLLBACKENABLED","features":[155]},{"name":"MSIRUNMODE_SCHEDULED","features":[155]},{"name":"MSIRUNMODE_SOURCESHORTNAMES","features":[155]},{"name":"MSIRUNMODE_TARGETSHORTNAMES","features":[155]},{"name":"MSIRUNMODE_WINDOWS9X","features":[155]},{"name":"MSIRUNMODE_ZAWENABLED","features":[155]},{"name":"MSISOURCETYPE","features":[155]},{"name":"MSISOURCETYPE_MEDIA","features":[155]},{"name":"MSISOURCETYPE_NETWORK","features":[155]},{"name":"MSISOURCETYPE_UNKNOWN","features":[155]},{"name":"MSISOURCETYPE_URL","features":[155]},{"name":"MSITRANSACTION","features":[155]},{"name":"MSITRANSACTIONSTATE","features":[155]},{"name":"MSITRANSACTIONSTATE_COMMIT","features":[155]},{"name":"MSITRANSACTIONSTATE_ROLLBACK","features":[155]},{"name":"MSITRANSACTION_CHAIN_EMBEDDEDUI","features":[155]},{"name":"MSITRANSACTION_JOIN_EXISTING_EMBEDDEDUI","features":[155]},{"name":"MSITRANSFORM_ERROR","features":[155]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGROW","features":[155]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGTABLE","features":[155]},{"name":"MSITRANSFORM_ERROR_CHANGECODEPAGE","features":[155]},{"name":"MSITRANSFORM_ERROR_DELMISSINGROW","features":[155]},{"name":"MSITRANSFORM_ERROR_DELMISSINGTABLE","features":[155]},{"name":"MSITRANSFORM_ERROR_NONE","features":[155]},{"name":"MSITRANSFORM_ERROR_UPDATEMISSINGROW","features":[155]},{"name":"MSITRANSFORM_ERROR_VIEWTRANSFORM","features":[155]},{"name":"MSITRANSFORM_VALIDATE","features":[155]},{"name":"MSITRANSFORM_VALIDATE_LANGUAGE","features":[155]},{"name":"MSITRANSFORM_VALIDATE_MAJORVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_MINORVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_NEWEQUALBASEVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATERBASEVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATEREQUALBASEVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSBASEVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSEQUALBASEVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_PLATFORM","features":[155]},{"name":"MSITRANSFORM_VALIDATE_PRODUCT","features":[155]},{"name":"MSITRANSFORM_VALIDATE_UPDATEVERSION","features":[155]},{"name":"MSITRANSFORM_VALIDATE_UPGRADECODE","features":[155]},{"name":"MSI_INVALID_HASH_IS_FATAL","features":[155]},{"name":"MSI_NULL_INTEGER","features":[155]},{"name":"MsiAdvertiseProductA","features":[155]},{"name":"MsiAdvertiseProductExA","features":[155]},{"name":"MsiAdvertiseProductExW","features":[155]},{"name":"MsiAdvertiseProductW","features":[155]},{"name":"MsiAdvertiseScriptA","features":[3,155,51]},{"name":"MsiAdvertiseScriptW","features":[3,155,51]},{"name":"MsiApplyMultiplePatchesA","features":[155]},{"name":"MsiApplyMultiplePatchesW","features":[155]},{"name":"MsiApplyPatchA","features":[155]},{"name":"MsiApplyPatchW","features":[155]},{"name":"MsiBeginTransactionA","features":[3,155]},{"name":"MsiBeginTransactionW","features":[3,155]},{"name":"MsiCloseAllHandles","features":[155]},{"name":"MsiCloseHandle","features":[155]},{"name":"MsiCollectUserInfoA","features":[155]},{"name":"MsiCollectUserInfoW","features":[155]},{"name":"MsiConfigureFeatureA","features":[155]},{"name":"MsiConfigureFeatureW","features":[155]},{"name":"MsiConfigureProductA","features":[155]},{"name":"MsiConfigureProductExA","features":[155]},{"name":"MsiConfigureProductExW","features":[155]},{"name":"MsiConfigureProductW","features":[155]},{"name":"MsiCreateRecord","features":[155]},{"name":"MsiCreateTransformSummaryInfoA","features":[155]},{"name":"MsiCreateTransformSummaryInfoW","features":[155]},{"name":"MsiDatabaseApplyTransformA","features":[155]},{"name":"MsiDatabaseApplyTransformW","features":[155]},{"name":"MsiDatabaseCommit","features":[155]},{"name":"MsiDatabaseExportA","features":[155]},{"name":"MsiDatabaseExportW","features":[155]},{"name":"MsiDatabaseGenerateTransformA","features":[155]},{"name":"MsiDatabaseGenerateTransformW","features":[155]},{"name":"MsiDatabaseGetPrimaryKeysA","features":[155]},{"name":"MsiDatabaseGetPrimaryKeysW","features":[155]},{"name":"MsiDatabaseImportA","features":[155]},{"name":"MsiDatabaseImportW","features":[155]},{"name":"MsiDatabaseIsTablePersistentA","features":[155]},{"name":"MsiDatabaseIsTablePersistentW","features":[155]},{"name":"MsiDatabaseMergeA","features":[155]},{"name":"MsiDatabaseMergeW","features":[155]},{"name":"MsiDatabaseOpenViewA","features":[155]},{"name":"MsiDatabaseOpenViewW","features":[155]},{"name":"MsiDetermineApplicablePatchesA","features":[155]},{"name":"MsiDetermineApplicablePatchesW","features":[155]},{"name":"MsiDeterminePatchSequenceA","features":[155]},{"name":"MsiDeterminePatchSequenceW","features":[155]},{"name":"MsiDoActionA","features":[155]},{"name":"MsiDoActionW","features":[155]},{"name":"MsiEnableLogA","features":[155]},{"name":"MsiEnableLogW","features":[155]},{"name":"MsiEnableUIPreview","features":[155]},{"name":"MsiEndTransaction","features":[155]},{"name":"MsiEnumClientsA","features":[155]},{"name":"MsiEnumClientsExA","features":[155]},{"name":"MsiEnumClientsExW","features":[155]},{"name":"MsiEnumClientsW","features":[155]},{"name":"MsiEnumComponentCostsA","features":[155]},{"name":"MsiEnumComponentCostsW","features":[155]},{"name":"MsiEnumComponentQualifiersA","features":[155]},{"name":"MsiEnumComponentQualifiersW","features":[155]},{"name":"MsiEnumComponentsA","features":[155]},{"name":"MsiEnumComponentsExA","features":[155]},{"name":"MsiEnumComponentsExW","features":[155]},{"name":"MsiEnumComponentsW","features":[155]},{"name":"MsiEnumFeaturesA","features":[155]},{"name":"MsiEnumFeaturesW","features":[155]},{"name":"MsiEnumPatchesA","features":[155]},{"name":"MsiEnumPatchesExA","features":[155]},{"name":"MsiEnumPatchesExW","features":[155]},{"name":"MsiEnumPatchesW","features":[155]},{"name":"MsiEnumProductsA","features":[155]},{"name":"MsiEnumProductsExA","features":[155]},{"name":"MsiEnumProductsExW","features":[155]},{"name":"MsiEnumProductsW","features":[155]},{"name":"MsiEnumRelatedProductsA","features":[155]},{"name":"MsiEnumRelatedProductsW","features":[155]},{"name":"MsiEvaluateConditionA","features":[155]},{"name":"MsiEvaluateConditionW","features":[155]},{"name":"MsiExtractPatchXMLDataA","features":[155]},{"name":"MsiExtractPatchXMLDataW","features":[155]},{"name":"MsiFormatRecordA","features":[155]},{"name":"MsiFormatRecordW","features":[155]},{"name":"MsiGetActiveDatabase","features":[155]},{"name":"MsiGetComponentPathA","features":[155]},{"name":"MsiGetComponentPathExA","features":[155]},{"name":"MsiGetComponentPathExW","features":[155]},{"name":"MsiGetComponentPathW","features":[155]},{"name":"MsiGetComponentStateA","features":[155]},{"name":"MsiGetComponentStateW","features":[155]},{"name":"MsiGetDatabaseState","features":[155]},{"name":"MsiGetFeatureCostA","features":[155]},{"name":"MsiGetFeatureCostW","features":[155]},{"name":"MsiGetFeatureInfoA","features":[155]},{"name":"MsiGetFeatureInfoW","features":[155]},{"name":"MsiGetFeatureStateA","features":[155]},{"name":"MsiGetFeatureStateW","features":[155]},{"name":"MsiGetFeatureUsageA","features":[155]},{"name":"MsiGetFeatureUsageW","features":[155]},{"name":"MsiGetFeatureValidStatesA","features":[155]},{"name":"MsiGetFeatureValidStatesW","features":[155]},{"name":"MsiGetFileHashA","features":[155]},{"name":"MsiGetFileHashW","features":[155]},{"name":"MsiGetFileSignatureInformationA","features":[3,70,155]},{"name":"MsiGetFileSignatureInformationW","features":[3,70,155]},{"name":"MsiGetFileVersionA","features":[155]},{"name":"MsiGetFileVersionW","features":[155]},{"name":"MsiGetLanguage","features":[155]},{"name":"MsiGetLastErrorRecord","features":[155]},{"name":"MsiGetMode","features":[3,155]},{"name":"MsiGetPatchFileListA","features":[155]},{"name":"MsiGetPatchFileListW","features":[155]},{"name":"MsiGetPatchInfoA","features":[155]},{"name":"MsiGetPatchInfoExA","features":[155]},{"name":"MsiGetPatchInfoExW","features":[155]},{"name":"MsiGetPatchInfoW","features":[155]},{"name":"MsiGetProductCodeA","features":[155]},{"name":"MsiGetProductCodeW","features":[155]},{"name":"MsiGetProductInfoA","features":[155]},{"name":"MsiGetProductInfoExA","features":[155]},{"name":"MsiGetProductInfoExW","features":[155]},{"name":"MsiGetProductInfoFromScriptA","features":[155]},{"name":"MsiGetProductInfoFromScriptW","features":[155]},{"name":"MsiGetProductInfoW","features":[155]},{"name":"MsiGetProductPropertyA","features":[155]},{"name":"MsiGetProductPropertyW","features":[155]},{"name":"MsiGetPropertyA","features":[155]},{"name":"MsiGetPropertyW","features":[155]},{"name":"MsiGetShortcutTargetA","features":[155]},{"name":"MsiGetShortcutTargetW","features":[155]},{"name":"MsiGetSourcePathA","features":[155]},{"name":"MsiGetSourcePathW","features":[155]},{"name":"MsiGetSummaryInformationA","features":[155]},{"name":"MsiGetSummaryInformationW","features":[155]},{"name":"MsiGetTargetPathA","features":[155]},{"name":"MsiGetTargetPathW","features":[155]},{"name":"MsiGetUserInfoA","features":[155]},{"name":"MsiGetUserInfoW","features":[155]},{"name":"MsiInstallMissingComponentA","features":[155]},{"name":"MsiInstallMissingComponentW","features":[155]},{"name":"MsiInstallMissingFileA","features":[155]},{"name":"MsiInstallMissingFileW","features":[155]},{"name":"MsiInstallProductA","features":[155]},{"name":"MsiInstallProductW","features":[155]},{"name":"MsiIsProductElevatedA","features":[3,155]},{"name":"MsiIsProductElevatedW","features":[3,155]},{"name":"MsiJoinTransaction","features":[3,155]},{"name":"MsiLocateComponentA","features":[155]},{"name":"MsiLocateComponentW","features":[155]},{"name":"MsiNotifySidChangeA","features":[155]},{"name":"MsiNotifySidChangeW","features":[155]},{"name":"MsiOpenDatabaseA","features":[155]},{"name":"MsiOpenDatabaseW","features":[155]},{"name":"MsiOpenPackageA","features":[155]},{"name":"MsiOpenPackageExA","features":[155]},{"name":"MsiOpenPackageExW","features":[155]},{"name":"MsiOpenPackageW","features":[155]},{"name":"MsiOpenProductA","features":[155]},{"name":"MsiOpenProductW","features":[155]},{"name":"MsiPreviewBillboardA","features":[155]},{"name":"MsiPreviewBillboardW","features":[155]},{"name":"MsiPreviewDialogA","features":[155]},{"name":"MsiPreviewDialogW","features":[155]},{"name":"MsiProcessAdvertiseScriptA","features":[3,155,51]},{"name":"MsiProcessAdvertiseScriptW","features":[3,155,51]},{"name":"MsiProcessMessage","features":[155]},{"name":"MsiProvideAssemblyA","features":[155]},{"name":"MsiProvideAssemblyW","features":[155]},{"name":"MsiProvideComponentA","features":[155]},{"name":"MsiProvideComponentW","features":[155]},{"name":"MsiProvideQualifiedComponentA","features":[155]},{"name":"MsiProvideQualifiedComponentExA","features":[155]},{"name":"MsiProvideQualifiedComponentExW","features":[155]},{"name":"MsiProvideQualifiedComponentW","features":[155]},{"name":"MsiQueryComponentStateA","features":[155]},{"name":"MsiQueryComponentStateW","features":[155]},{"name":"MsiQueryFeatureStateA","features":[155]},{"name":"MsiQueryFeatureStateExA","features":[155]},{"name":"MsiQueryFeatureStateExW","features":[155]},{"name":"MsiQueryFeatureStateW","features":[155]},{"name":"MsiQueryProductStateA","features":[155]},{"name":"MsiQueryProductStateW","features":[155]},{"name":"MsiRecordClearData","features":[155]},{"name":"MsiRecordDataSize","features":[155]},{"name":"MsiRecordGetFieldCount","features":[155]},{"name":"MsiRecordGetInteger","features":[155]},{"name":"MsiRecordGetStringA","features":[155]},{"name":"MsiRecordGetStringW","features":[155]},{"name":"MsiRecordIsNull","features":[3,155]},{"name":"MsiRecordReadStream","features":[155]},{"name":"MsiRecordSetInteger","features":[155]},{"name":"MsiRecordSetStreamA","features":[155]},{"name":"MsiRecordSetStreamW","features":[155]},{"name":"MsiRecordSetStringA","features":[155]},{"name":"MsiRecordSetStringW","features":[155]},{"name":"MsiReinstallFeatureA","features":[155]},{"name":"MsiReinstallFeatureW","features":[155]},{"name":"MsiReinstallProductA","features":[155]},{"name":"MsiReinstallProductW","features":[155]},{"name":"MsiRemovePatchesA","features":[155]},{"name":"MsiRemovePatchesW","features":[155]},{"name":"MsiSequenceA","features":[155]},{"name":"MsiSequenceW","features":[155]},{"name":"MsiSetComponentStateA","features":[155]},{"name":"MsiSetComponentStateW","features":[155]},{"name":"MsiSetExternalUIA","features":[155]},{"name":"MsiSetExternalUIRecord","features":[155]},{"name":"MsiSetExternalUIW","features":[155]},{"name":"MsiSetFeatureAttributesA","features":[155]},{"name":"MsiSetFeatureAttributesW","features":[155]},{"name":"MsiSetFeatureStateA","features":[155]},{"name":"MsiSetFeatureStateW","features":[155]},{"name":"MsiSetInstallLevel","features":[155]},{"name":"MsiSetInternalUI","features":[3,155]},{"name":"MsiSetMode","features":[3,155]},{"name":"MsiSetPropertyA","features":[155]},{"name":"MsiSetPropertyW","features":[155]},{"name":"MsiSetTargetPathA","features":[155]},{"name":"MsiSetTargetPathW","features":[155]},{"name":"MsiSourceListAddMediaDiskA","features":[155]},{"name":"MsiSourceListAddMediaDiskW","features":[155]},{"name":"MsiSourceListAddSourceA","features":[155]},{"name":"MsiSourceListAddSourceExA","features":[155]},{"name":"MsiSourceListAddSourceExW","features":[155]},{"name":"MsiSourceListAddSourceW","features":[155]},{"name":"MsiSourceListClearAllA","features":[155]},{"name":"MsiSourceListClearAllExA","features":[155]},{"name":"MsiSourceListClearAllExW","features":[155]},{"name":"MsiSourceListClearAllW","features":[155]},{"name":"MsiSourceListClearMediaDiskA","features":[155]},{"name":"MsiSourceListClearMediaDiskW","features":[155]},{"name":"MsiSourceListClearSourceA","features":[155]},{"name":"MsiSourceListClearSourceW","features":[155]},{"name":"MsiSourceListEnumMediaDisksA","features":[155]},{"name":"MsiSourceListEnumMediaDisksW","features":[155]},{"name":"MsiSourceListEnumSourcesA","features":[155]},{"name":"MsiSourceListEnumSourcesW","features":[155]},{"name":"MsiSourceListForceResolutionA","features":[155]},{"name":"MsiSourceListForceResolutionExA","features":[155]},{"name":"MsiSourceListForceResolutionExW","features":[155]},{"name":"MsiSourceListForceResolutionW","features":[155]},{"name":"MsiSourceListGetInfoA","features":[155]},{"name":"MsiSourceListGetInfoW","features":[155]},{"name":"MsiSourceListSetInfoA","features":[155]},{"name":"MsiSourceListSetInfoW","features":[155]},{"name":"MsiSummaryInfoGetPropertyA","features":[3,155]},{"name":"MsiSummaryInfoGetPropertyCount","features":[155]},{"name":"MsiSummaryInfoGetPropertyW","features":[3,155]},{"name":"MsiSummaryInfoPersist","features":[155]},{"name":"MsiSummaryInfoSetPropertyA","features":[3,155]},{"name":"MsiSummaryInfoSetPropertyW","features":[3,155]},{"name":"MsiUseFeatureA","features":[155]},{"name":"MsiUseFeatureExA","features":[155]},{"name":"MsiUseFeatureExW","features":[155]},{"name":"MsiUseFeatureW","features":[155]},{"name":"MsiVerifyDiskSpace","features":[155]},{"name":"MsiVerifyPackageA","features":[155]},{"name":"MsiVerifyPackageW","features":[155]},{"name":"MsiViewClose","features":[155]},{"name":"MsiViewExecute","features":[155]},{"name":"MsiViewFetch","features":[155]},{"name":"MsiViewGetColumnInfo","features":[155]},{"name":"MsiViewGetErrorA","features":[155]},{"name":"MsiViewGetErrorW","features":[155]},{"name":"MsiViewModify","features":[155]},{"name":"MsmMerge","features":[155]},{"name":"NormalizeFileForPatchSignature","features":[3,155]},{"name":"PACKMAN_RUNTIME","features":[155]},{"name":"PACKMAN_RUNTIME_INVALID","features":[155]},{"name":"PACKMAN_RUNTIME_JUPITER","features":[155]},{"name":"PACKMAN_RUNTIME_MODERN_NATIVE","features":[155]},{"name":"PACKMAN_RUNTIME_NATIVE","features":[155]},{"name":"PACKMAN_RUNTIME_SILVERLIGHTMOBILE","features":[155]},{"name":"PACKMAN_RUNTIME_XNA","features":[155]},{"name":"PATCH_IGNORE_RANGE","features":[155]},{"name":"PATCH_INTERLEAVE_MAP","features":[155]},{"name":"PATCH_OLD_FILE_INFO","features":[3,155]},{"name":"PATCH_OLD_FILE_INFO_A","features":[155]},{"name":"PATCH_OLD_FILE_INFO_H","features":[3,155]},{"name":"PATCH_OLD_FILE_INFO_W","features":[155]},{"name":"PATCH_OPTION_DATA","features":[3,155]},{"name":"PATCH_OPTION_FAIL_IF_BIGGER","features":[155]},{"name":"PATCH_OPTION_FAIL_IF_SAME_FILE","features":[155]},{"name":"PATCH_OPTION_INTERLEAVE_FILES","features":[155]},{"name":"PATCH_OPTION_NO_BINDFIX","features":[155]},{"name":"PATCH_OPTION_NO_CHECKSUM","features":[155]},{"name":"PATCH_OPTION_NO_LOCKFIX","features":[155]},{"name":"PATCH_OPTION_NO_REBASE","features":[155]},{"name":"PATCH_OPTION_NO_RESTIMEFIX","features":[155]},{"name":"PATCH_OPTION_NO_TIMESTAMP","features":[155]},{"name":"PATCH_OPTION_RESERVED1","features":[155]},{"name":"PATCH_OPTION_SIGNATURE_MD5","features":[155]},{"name":"PATCH_OPTION_USE_BEST","features":[155]},{"name":"PATCH_OPTION_USE_LZX_A","features":[155]},{"name":"PATCH_OPTION_USE_LZX_B","features":[155]},{"name":"PATCH_OPTION_USE_LZX_BEST","features":[155]},{"name":"PATCH_OPTION_USE_LZX_LARGE","features":[155]},{"name":"PATCH_OPTION_VALID_FLAGS","features":[155]},{"name":"PATCH_RETAIN_RANGE","features":[155]},{"name":"PATCH_SYMBOL_NO_FAILURES","features":[155]},{"name":"PATCH_SYMBOL_NO_IMAGEHLP","features":[155]},{"name":"PATCH_SYMBOL_RESERVED1","features":[155]},{"name":"PATCH_SYMBOL_UNDECORATED_TOO","features":[155]},{"name":"PATCH_TRANSFORM_PE_IRELOC_2","features":[155]},{"name":"PATCH_TRANSFORM_PE_RESOURCE_2","features":[155]},{"name":"PID_APPNAME","features":[155]},{"name":"PID_AUTHOR","features":[155]},{"name":"PID_CHARCOUNT","features":[155]},{"name":"PID_COMMENTS","features":[155]},{"name":"PID_CREATE_DTM","features":[155]},{"name":"PID_EDITTIME","features":[155]},{"name":"PID_KEYWORDS","features":[155]},{"name":"PID_LASTAUTHOR","features":[155]},{"name":"PID_LASTPRINTED","features":[155]},{"name":"PID_LASTSAVE_DTM","features":[155]},{"name":"PID_MSIRESTRICT","features":[155]},{"name":"PID_MSISOURCE","features":[155]},{"name":"PID_MSIVERSION","features":[155]},{"name":"PID_PAGECOUNT","features":[155]},{"name":"PID_REVNUMBER","features":[155]},{"name":"PID_SUBJECT","features":[155]},{"name":"PID_TEMPLATE","features":[155]},{"name":"PID_THUMBNAIL","features":[155]},{"name":"PID_TITLE","features":[155]},{"name":"PID_WORDCOUNT","features":[155]},{"name":"PINSTALLUI_HANDLER_RECORD","features":[155]},{"name":"PMSIHANDLE","features":[155]},{"name":"PMSvc","features":[155]},{"name":"PM_ACTIVATION_POLICY","features":[155]},{"name":"PM_ACTIVATION_POLICY_INVALID","features":[155]},{"name":"PM_ACTIVATION_POLICY_MULTISESSION","features":[155]},{"name":"PM_ACTIVATION_POLICY_REPLACE","features":[155]},{"name":"PM_ACTIVATION_POLICY_REPLACESAMEPARAMS","features":[155]},{"name":"PM_ACTIVATION_POLICY_REPLACE_IGNOREFOREGROUND","features":[155]},{"name":"PM_ACTIVATION_POLICY_RESUME","features":[155]},{"name":"PM_ACTIVATION_POLICY_RESUMESAMEPARAMS","features":[155]},{"name":"PM_ACTIVATION_POLICY_UNKNOWN","features":[155]},{"name":"PM_APPLICATION_HUBTYPE","features":[155]},{"name":"PM_APPLICATION_HUBTYPE_INVALID","features":[155]},{"name":"PM_APPLICATION_HUBTYPE_MUSIC","features":[155]},{"name":"PM_APPLICATION_HUBTYPE_NONMUSIC","features":[155]},{"name":"PM_APPLICATION_INSTALL_DEBUG","features":[155]},{"name":"PM_APPLICATION_INSTALL_ENTERPRISE","features":[155]},{"name":"PM_APPLICATION_INSTALL_INVALID","features":[155]},{"name":"PM_APPLICATION_INSTALL_IN_ROM","features":[155]},{"name":"PM_APPLICATION_INSTALL_NORMAL","features":[155]},{"name":"PM_APPLICATION_INSTALL_PA","features":[155]},{"name":"PM_APPLICATION_INSTALL_TYPE","features":[155]},{"name":"PM_APPLICATION_STATE","features":[155]},{"name":"PM_APPLICATION_STATE_DISABLED_BACKING_UP","features":[155]},{"name":"PM_APPLICATION_STATE_DISABLED_ENTERPRISE","features":[155]},{"name":"PM_APPLICATION_STATE_DISABLED_MDIL_BINDING","features":[155]},{"name":"PM_APPLICATION_STATE_DISABLED_SD_CARD","features":[155]},{"name":"PM_APPLICATION_STATE_INSTALLED","features":[155]},{"name":"PM_APPLICATION_STATE_INSTALLING","features":[155]},{"name":"PM_APPLICATION_STATE_INVALID","features":[155]},{"name":"PM_APPLICATION_STATE_LICENSE_UPDATING","features":[155]},{"name":"PM_APPLICATION_STATE_MAX","features":[155]},{"name":"PM_APPLICATION_STATE_MIN","features":[155]},{"name":"PM_APPLICATION_STATE_MOVING","features":[155]},{"name":"PM_APPLICATION_STATE_UNINSTALLING","features":[155]},{"name":"PM_APPLICATION_STATE_UPDATING","features":[155]},{"name":"PM_APPTASKTYPE","features":[155]},{"name":"PM_APP_FILTER_ALL","features":[155]},{"name":"PM_APP_FILTER_ALL_INCLUDE_MODERN","features":[155]},{"name":"PM_APP_FILTER_FRAMEWORK","features":[155]},{"name":"PM_APP_FILTER_GENRE","features":[155]},{"name":"PM_APP_FILTER_HUBTYPE","features":[155]},{"name":"PM_APP_FILTER_MAX","features":[155]},{"name":"PM_APP_FILTER_NONGAMES","features":[155]},{"name":"PM_APP_FILTER_PINABLEONKIDZONE","features":[155]},{"name":"PM_APP_FILTER_VISIBLE","features":[155]},{"name":"PM_APP_GENRE","features":[155]},{"name":"PM_APP_GENRE_GAMES","features":[155]},{"name":"PM_APP_GENRE_INVALID","features":[155]},{"name":"PM_APP_GENRE_OTHER","features":[155]},{"name":"PM_BSATASKID","features":[155]},{"name":"PM_BWTASKID","features":[155]},{"name":"PM_ENUM_APP_FILTER","features":[155]},{"name":"PM_ENUM_BSA_FILTER","features":[155]},{"name":"PM_ENUM_BSA_FILTER_ALL","features":[155]},{"name":"PM_ENUM_BSA_FILTER_BY_ALL_LAUNCHONBOOT","features":[155]},{"name":"PM_ENUM_BSA_FILTER_BY_PERIODIC","features":[155]},{"name":"PM_ENUM_BSA_FILTER_BY_PRODUCTID","features":[155]},{"name":"PM_ENUM_BSA_FILTER_BY_TASKID","features":[155]},{"name":"PM_ENUM_BSA_FILTER_MAX","features":[155]},{"name":"PM_ENUM_BW_FILTER","features":[155]},{"name":"PM_ENUM_BW_FILTER_BOOTWORKER_ALL","features":[155]},{"name":"PM_ENUM_BW_FILTER_BY_TASKID","features":[155]},{"name":"PM_ENUM_BW_FILTER_MAX","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_APPCONNECT","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_BY_CONSUMER","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_CACHEDFILEUPDATER_ALL","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_FILEOPENPICKER_ALL","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_FILESAVEPICKER_ALL","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_APPLICATION_ALL","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_CONTENTTYPE_ALL","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_FILETYPE_ALL","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_MAX","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_PROTOCOL_ALL","features":[155]},{"name":"PM_ENUM_EXTENSION_FILTER_SHARETARGET_ALL","features":[155]},{"name":"PM_ENUM_FILTER","features":[155]},{"name":"PM_ENUM_TASK_FILTER","features":[155]},{"name":"PM_ENUM_TILE_FILTER","features":[155]},{"name":"PM_EXTENSIONCONSUMER","features":[155]},{"name":"PM_INSTALLINFO","features":[3,155]},{"name":"PM_INVOCATIONINFO","features":[155]},{"name":"PM_LIVETILE_RECURRENCE_TYPE","features":[155]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INSTANT","features":[155]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INTERVAL","features":[155]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_MAX","features":[155]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_ONETIME","features":[155]},{"name":"PM_LOGO_SIZE","features":[155]},{"name":"PM_LOGO_SIZE_INVALID","features":[155]},{"name":"PM_LOGO_SIZE_LARGE","features":[155]},{"name":"PM_LOGO_SIZE_MEDIUM","features":[155]},{"name":"PM_LOGO_SIZE_SMALL","features":[155]},{"name":"PM_STARTAPPBLOB","features":[3,155]},{"name":"PM_STARTTILEBLOB","features":[3,155]},{"name":"PM_STARTTILE_TYPE","features":[155]},{"name":"PM_STARTTILE_TYPE_APPLIST","features":[155]},{"name":"PM_STARTTILE_TYPE_APPLISTPRIMARY","features":[155]},{"name":"PM_STARTTILE_TYPE_INVALID","features":[155]},{"name":"PM_STARTTILE_TYPE_PRIMARY","features":[155]},{"name":"PM_STARTTILE_TYPE_SECONDARY","features":[155]},{"name":"PM_TASK_FILTER_APP_ALL","features":[155]},{"name":"PM_TASK_FILTER_APP_TASK_TYPE","features":[155]},{"name":"PM_TASK_FILTER_BGEXECUTION","features":[155]},{"name":"PM_TASK_FILTER_DEHYD_SUPRESSING","features":[155]},{"name":"PM_TASK_FILTER_MAX","features":[155]},{"name":"PM_TASK_FILTER_TASK_TYPE","features":[155]},{"name":"PM_TASK_TRANSITION","features":[155]},{"name":"PM_TASK_TRANSITION_CUSTOM","features":[155]},{"name":"PM_TASK_TRANSITION_DEFAULT","features":[155]},{"name":"PM_TASK_TRANSITION_INVALID","features":[155]},{"name":"PM_TASK_TRANSITION_NONE","features":[155]},{"name":"PM_TASK_TRANSITION_READERBOARD","features":[155]},{"name":"PM_TASK_TRANSITION_SLIDE","features":[155]},{"name":"PM_TASK_TRANSITION_SWIVEL","features":[155]},{"name":"PM_TASK_TRANSITION_TURNSTILE","features":[155]},{"name":"PM_TASK_TYPE","features":[155]},{"name":"PM_TASK_TYPE_BACKGROUNDSERVICEAGENT","features":[155]},{"name":"PM_TASK_TYPE_BACKGROUNDWORKER","features":[155]},{"name":"PM_TASK_TYPE_DEFAULT","features":[155]},{"name":"PM_TASK_TYPE_INVALID","features":[155]},{"name":"PM_TASK_TYPE_NORMAL","features":[155]},{"name":"PM_TASK_TYPE_SETTINGS","features":[155]},{"name":"PM_TILE_FILTER_APPLIST","features":[155]},{"name":"PM_TILE_FILTER_APP_ALL","features":[155]},{"name":"PM_TILE_FILTER_HUBTYPE","features":[155]},{"name":"PM_TILE_FILTER_MAX","features":[155]},{"name":"PM_TILE_FILTER_PINNED","features":[155]},{"name":"PM_TILE_HUBTYPE","features":[155]},{"name":"PM_TILE_HUBTYPE_APPLIST","features":[155]},{"name":"PM_TILE_HUBTYPE_CACHED","features":[155]},{"name":"PM_TILE_HUBTYPE_GAMES","features":[155]},{"name":"PM_TILE_HUBTYPE_INVALID","features":[155]},{"name":"PM_TILE_HUBTYPE_KIDZONE","features":[155]},{"name":"PM_TILE_HUBTYPE_LOCKSCREEN","features":[155]},{"name":"PM_TILE_HUBTYPE_MOSETTINGS","features":[155]},{"name":"PM_TILE_HUBTYPE_MUSIC","features":[155]},{"name":"PM_TILE_HUBTYPE_STARTMENU","features":[155]},{"name":"PM_TILE_SIZE","features":[155]},{"name":"PM_TILE_SIZE_INVALID","features":[155]},{"name":"PM_TILE_SIZE_LARGE","features":[155]},{"name":"PM_TILE_SIZE_MEDIUM","features":[155]},{"name":"PM_TILE_SIZE_SMALL","features":[155]},{"name":"PM_TILE_SIZE_SQUARE310X310","features":[155]},{"name":"PM_TILE_SIZE_TALL150X310","features":[155]},{"name":"PM_UPDATEINFO","features":[155]},{"name":"PM_UPDATEINFO_LEGACY","features":[155]},{"name":"PPATCH_PROGRESS_CALLBACK","features":[3,155]},{"name":"PPATCH_SYMLOAD_CALLBACK","features":[3,155]},{"name":"PROTECTED_FILE_DATA","features":[155]},{"name":"QUERYASMINFO_FLAGS","features":[155]},{"name":"QUERYASMINFO_FLAG_VALIDATE","features":[155]},{"name":"QueryActCtxSettingsW","features":[3,155]},{"name":"QueryActCtxW","features":[3,155]},{"name":"REINSTALLMODE","features":[155]},{"name":"REINSTALLMODE_FILEEQUALVERSION","features":[155]},{"name":"REINSTALLMODE_FILEEXACT","features":[155]},{"name":"REINSTALLMODE_FILEMISSING","features":[155]},{"name":"REINSTALLMODE_FILEOLDERVERSION","features":[155]},{"name":"REINSTALLMODE_FILEREPLACE","features":[155]},{"name":"REINSTALLMODE_FILEVERIFY","features":[155]},{"name":"REINSTALLMODE_MACHINEDATA","features":[155]},{"name":"REINSTALLMODE_PACKAGE","features":[155]},{"name":"REINSTALLMODE_REPAIR","features":[155]},{"name":"REINSTALLMODE_SHORTCUT","features":[155]},{"name":"REINSTALLMODE_USERDATA","features":[155]},{"name":"RESULTTYPES","features":[155]},{"name":"ReleaseActCtx","features":[3,155]},{"name":"SCRIPTFLAGS","features":[155]},{"name":"SCRIPTFLAGS_CACHEINFO","features":[155]},{"name":"SCRIPTFLAGS_MACHINEASSIGN","features":[155]},{"name":"SCRIPTFLAGS_REGDATA","features":[155]},{"name":"SCRIPTFLAGS_REGDATA_APPINFO","features":[155]},{"name":"SCRIPTFLAGS_REGDATA_CLASSINFO","features":[155]},{"name":"SCRIPTFLAGS_REGDATA_CNFGINFO","features":[155]},{"name":"SCRIPTFLAGS_REGDATA_EXTENSIONINFO","features":[155]},{"name":"SCRIPTFLAGS_SHORTCUTS","features":[155]},{"name":"SCRIPTFLAGS_VALIDATE_TRANSFORMS_LIST","features":[155]},{"name":"SFC_DISABLE_ASK","features":[155]},{"name":"SFC_DISABLE_NOPOPUPS","features":[155]},{"name":"SFC_DISABLE_NORMAL","features":[155]},{"name":"SFC_DISABLE_ONCE","features":[155]},{"name":"SFC_DISABLE_SETUP","features":[155]},{"name":"SFC_IDLE_TRIGGER","features":[155]},{"name":"SFC_QUOTA_DEFAULT","features":[155]},{"name":"SFC_SCAN_ALWAYS","features":[155]},{"name":"SFC_SCAN_IMMEDIATE","features":[155]},{"name":"SFC_SCAN_NORMAL","features":[155]},{"name":"SFC_SCAN_ONCE","features":[155]},{"name":"STATUSTYPES","features":[155]},{"name":"STREAM_FORMAT_COMPLIB_MANIFEST","features":[155]},{"name":"STREAM_FORMAT_COMPLIB_MODULE","features":[155]},{"name":"STREAM_FORMAT_WIN32_MANIFEST","features":[155]},{"name":"STREAM_FORMAT_WIN32_MODULE","features":[155]},{"name":"SfcGetNextProtectedFile","features":[3,155]},{"name":"SfcIsFileProtected","features":[3,155]},{"name":"SfcIsKeyProtected","features":[3,155,51]},{"name":"SfpVerifyFile","features":[3,155]},{"name":"TILE_TEMPLATE_AGILESTORE","features":[155]},{"name":"TILE_TEMPLATE_ALL","features":[155]},{"name":"TILE_TEMPLATE_BADGE","features":[155]},{"name":"TILE_TEMPLATE_BLOCK","features":[155]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT01","features":[155]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT02","features":[155]},{"name":"TILE_TEMPLATE_CALENDAR","features":[155]},{"name":"TILE_TEMPLATE_CONTACT","features":[155]},{"name":"TILE_TEMPLATE_CYCLE","features":[155]},{"name":"TILE_TEMPLATE_DEEPLINK","features":[155]},{"name":"TILE_TEMPLATE_DEFAULT","features":[155]},{"name":"TILE_TEMPLATE_FLIP","features":[155]},{"name":"TILE_TEMPLATE_FOLDER","features":[155]},{"name":"TILE_TEMPLATE_GAMES","features":[155]},{"name":"TILE_TEMPLATE_GROUP","features":[155]},{"name":"TILE_TEMPLATE_IMAGE","features":[155]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT01","features":[155]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT02","features":[155]},{"name":"TILE_TEMPLATE_IMAGECOLLECTION","features":[155]},{"name":"TILE_TEMPLATE_INVALID","features":[155]},{"name":"TILE_TEMPLATE_METROCOUNT","features":[155]},{"name":"TILE_TEMPLATE_METROCOUNTQUEUE","features":[155]},{"name":"TILE_TEMPLATE_MUSICVIDEO","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGE01","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGE02","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGE03","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGE04","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGE05","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGE06","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT01","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT02","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT03","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT04","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION01","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION02","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION03","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION04","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION05","features":[155]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION06","features":[155]},{"name":"TILE_TEMPLATE_PEOPLE","features":[155]},{"name":"TILE_TEMPLATE_SEARCH","features":[155]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT01","features":[155]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT02","features":[155]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT03","features":[155]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT04","features":[155]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT05","features":[155]},{"name":"TILE_TEMPLATE_TEXT01","features":[155]},{"name":"TILE_TEMPLATE_TEXT02","features":[155]},{"name":"TILE_TEMPLATE_TEXT03","features":[155]},{"name":"TILE_TEMPLATE_TEXT04","features":[155]},{"name":"TILE_TEMPLATE_TEXT05","features":[155]},{"name":"TILE_TEMPLATE_TEXT06","features":[155]},{"name":"TILE_TEMPLATE_TEXT07","features":[155]},{"name":"TILE_TEMPLATE_TEXT08","features":[155]},{"name":"TILE_TEMPLATE_TEXT09","features":[155]},{"name":"TILE_TEMPLATE_TEXT10","features":[155]},{"name":"TILE_TEMPLATE_TEXT11","features":[155]},{"name":"TILE_TEMPLATE_TILEFLYOUT01","features":[155]},{"name":"TILE_TEMPLATE_TYPE","features":[155]},{"name":"TXTLOG_BACKUP","features":[155]},{"name":"TXTLOG_CMI","features":[155]},{"name":"TXTLOG_COPYFILES","features":[155]},{"name":"TXTLOG_DEPTH_DECR","features":[155]},{"name":"TXTLOG_DEPTH_INCR","features":[155]},{"name":"TXTLOG_DETAILS","features":[155]},{"name":"TXTLOG_DEVINST","features":[155]},{"name":"TXTLOG_DEVMGR","features":[155]},{"name":"TXTLOG_DRIVER_STORE","features":[155]},{"name":"TXTLOG_DRVSETUP","features":[155]},{"name":"TXTLOG_ERROR","features":[155]},{"name":"TXTLOG_FILEQ","features":[155]},{"name":"TXTLOG_FLUSH_FILE","features":[155]},{"name":"TXTLOG_INF","features":[155]},{"name":"TXTLOG_INFDB","features":[155]},{"name":"TXTLOG_INSTALLER","features":[155]},{"name":"TXTLOG_NEWDEV","features":[155]},{"name":"TXTLOG_POLICY","features":[155]},{"name":"TXTLOG_RESERVED_FLAGS","features":[155]},{"name":"TXTLOG_SETUP","features":[155]},{"name":"TXTLOG_SETUPAPI_BITS","features":[155]},{"name":"TXTLOG_SETUPAPI_CMDLINE","features":[155]},{"name":"TXTLOG_SETUPAPI_DEVLOG","features":[155]},{"name":"TXTLOG_SIGVERIF","features":[155]},{"name":"TXTLOG_SUMMARY","features":[155]},{"name":"TXTLOG_SYSTEM_STATE_CHANGE","features":[155]},{"name":"TXTLOG_TAB_1","features":[155]},{"name":"TXTLOG_TIMESTAMP","features":[155]},{"name":"TXTLOG_UI","features":[155]},{"name":"TXTLOG_UMPNPMGR","features":[155]},{"name":"TXTLOG_UTIL","features":[155]},{"name":"TXTLOG_VENDOR","features":[155]},{"name":"TXTLOG_VERBOSE","features":[155]},{"name":"TXTLOG_VERY_VERBOSE","features":[155]},{"name":"TXTLOG_WARNING","features":[155]},{"name":"TestApplyPatchToFileA","features":[3,155]},{"name":"TestApplyPatchToFileByBuffers","features":[3,155]},{"name":"TestApplyPatchToFileByHandles","features":[3,155]},{"name":"TestApplyPatchToFileW","features":[3,155]},{"name":"UIALL","features":[155]},{"name":"UILOGBITS","features":[155]},{"name":"UINONE","features":[155]},{"name":"USERINFOSTATE","features":[155]},{"name":"USERINFOSTATE_ABSENT","features":[155]},{"name":"USERINFOSTATE_INVALIDARG","features":[155]},{"name":"USERINFOSTATE_MOREDATA","features":[155]},{"name":"USERINFOSTATE_PRESENT","features":[155]},{"name":"USERINFOSTATE_UNKNOWN","features":[155]},{"name":"WARN_BAD_MAJOR_VERSION","features":[155]},{"name":"WARN_BASE","features":[155]},{"name":"WARN_EQUAL_FILE_VERSION","features":[155]},{"name":"WARN_FILE_VERSION_DOWNREV","features":[155]},{"name":"WARN_IMPROPER_TRANSFORM_VALIDATION","features":[155]},{"name":"WARN_INVALID_TRANSFORM_VALIDATION","features":[155]},{"name":"WARN_MAJOR_UPGRADE_PATCH","features":[155]},{"name":"WARN_OBSOLETION_WITH_MSI30","features":[155]},{"name":"WARN_OBSOLETION_WITH_PATCHSEQUENCE","features":[155]},{"name":"WARN_OBSOLETION_WITH_SEQUENCE_DATA","features":[155]},{"name":"WARN_PATCHPROPERTYNOTSET","features":[155]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_CODES","features":[155]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[155]},{"name":"WARN_SEQUENCE_DATA_GENERATION_DISABLED","features":[155]},{"name":"WARN_SEQUENCE_DATA_SUPERSEDENCE_IGNORED","features":[155]},{"name":"ZombifyActCtx","features":[3,155]},{"name":"_WIN32_MSI","features":[155]},{"name":"_WIN32_MSM","features":[155]},{"name":"cchMaxInteger","features":[155]},{"name":"ieError","features":[155]},{"name":"ieInfo","features":[155]},{"name":"ieStatusCancel","features":[155]},{"name":"ieStatusCreateEngine","features":[155]},{"name":"ieStatusFail","features":[155]},{"name":"ieStatusGetCUB","features":[155]},{"name":"ieStatusICECount","features":[155]},{"name":"ieStatusMerge","features":[155]},{"name":"ieStatusRunICE","features":[155]},{"name":"ieStatusShutdown","features":[155]},{"name":"ieStatusStarting","features":[155]},{"name":"ieStatusSuccess","features":[155]},{"name":"ieStatusSummaryInfo","features":[155]},{"name":"ieUnknown","features":[155]},{"name":"ieWarning","features":[155]},{"name":"msidbAssemblyAttributes","features":[155]},{"name":"msidbAssemblyAttributesURT","features":[155]},{"name":"msidbAssemblyAttributesWin32","features":[155]},{"name":"msidbClassAttributes","features":[155]},{"name":"msidbClassAttributesRelativePath","features":[155]},{"name":"msidbComponentAttributes","features":[155]},{"name":"msidbComponentAttributes64bit","features":[155]},{"name":"msidbComponentAttributesDisableRegistryReflection","features":[155]},{"name":"msidbComponentAttributesLocalOnly","features":[155]},{"name":"msidbComponentAttributesNeverOverwrite","features":[155]},{"name":"msidbComponentAttributesODBCDataSource","features":[155]},{"name":"msidbComponentAttributesOptional","features":[155]},{"name":"msidbComponentAttributesPermanent","features":[155]},{"name":"msidbComponentAttributesRegistryKeyPath","features":[155]},{"name":"msidbComponentAttributesShared","features":[155]},{"name":"msidbComponentAttributesSharedDllRefCount","features":[155]},{"name":"msidbComponentAttributesSourceOnly","features":[155]},{"name":"msidbComponentAttributesTransitive","features":[155]},{"name":"msidbComponentAttributesUninstallOnSupersedence","features":[155]},{"name":"msidbControlAttributes","features":[155]},{"name":"msidbControlAttributesBiDi","features":[155]},{"name":"msidbControlAttributesBitmap","features":[155]},{"name":"msidbControlAttributesCDROMVolume","features":[155]},{"name":"msidbControlAttributesComboList","features":[155]},{"name":"msidbControlAttributesElevationShield","features":[155]},{"name":"msidbControlAttributesEnabled","features":[155]},{"name":"msidbControlAttributesFixedSize","features":[155]},{"name":"msidbControlAttributesFixedVolume","features":[155]},{"name":"msidbControlAttributesFloppyVolume","features":[155]},{"name":"msidbControlAttributesFormatSize","features":[155]},{"name":"msidbControlAttributesHasBorder","features":[155]},{"name":"msidbControlAttributesIcon","features":[155]},{"name":"msidbControlAttributesIconSize16","features":[155]},{"name":"msidbControlAttributesIconSize32","features":[155]},{"name":"msidbControlAttributesIconSize48","features":[155]},{"name":"msidbControlAttributesImageHandle","features":[155]},{"name":"msidbControlAttributesIndirect","features":[155]},{"name":"msidbControlAttributesInteger","features":[155]},{"name":"msidbControlAttributesLeftScroll","features":[155]},{"name":"msidbControlAttributesMultiline","features":[155]},{"name":"msidbControlAttributesNoPrefix","features":[155]},{"name":"msidbControlAttributesNoWrap","features":[155]},{"name":"msidbControlAttributesPasswordInput","features":[155]},{"name":"msidbControlAttributesProgress95","features":[155]},{"name":"msidbControlAttributesPushLike","features":[155]},{"name":"msidbControlAttributesRAMDiskVolume","features":[155]},{"name":"msidbControlAttributesRTLRO","features":[155]},{"name":"msidbControlAttributesRemoteVolume","features":[155]},{"name":"msidbControlAttributesRemovableVolume","features":[155]},{"name":"msidbControlAttributesRightAligned","features":[155]},{"name":"msidbControlAttributesSorted","features":[155]},{"name":"msidbControlAttributesSunken","features":[155]},{"name":"msidbControlAttributesTransparent","features":[155]},{"name":"msidbControlAttributesUsersLanguage","features":[155]},{"name":"msidbControlAttributesVisible","features":[155]},{"name":"msidbControlShowRollbackCost","features":[155]},{"name":"msidbCustomActionType","features":[155]},{"name":"msidbCustomActionType64BitScript","features":[155]},{"name":"msidbCustomActionTypeAsync","features":[155]},{"name":"msidbCustomActionTypeBinaryData","features":[155]},{"name":"msidbCustomActionTypeClientRepeat","features":[155]},{"name":"msidbCustomActionTypeCommit","features":[155]},{"name":"msidbCustomActionTypeContinue","features":[155]},{"name":"msidbCustomActionTypeDirectory","features":[155]},{"name":"msidbCustomActionTypeDll","features":[155]},{"name":"msidbCustomActionTypeExe","features":[155]},{"name":"msidbCustomActionTypeFirstSequence","features":[155]},{"name":"msidbCustomActionTypeHideTarget","features":[155]},{"name":"msidbCustomActionTypeInScript","features":[155]},{"name":"msidbCustomActionTypeInstall","features":[155]},{"name":"msidbCustomActionTypeJScript","features":[155]},{"name":"msidbCustomActionTypeNoImpersonate","features":[155]},{"name":"msidbCustomActionTypeOncePerProcess","features":[155]},{"name":"msidbCustomActionTypePatchUninstall","features":[155]},{"name":"msidbCustomActionTypeProperty","features":[155]},{"name":"msidbCustomActionTypeRollback","features":[155]},{"name":"msidbCustomActionTypeSourceFile","features":[155]},{"name":"msidbCustomActionTypeTSAware","features":[155]},{"name":"msidbCustomActionTypeTextData","features":[155]},{"name":"msidbCustomActionTypeVBScript","features":[155]},{"name":"msidbDialogAttributes","features":[155]},{"name":"msidbDialogAttributesBiDi","features":[155]},{"name":"msidbDialogAttributesError","features":[155]},{"name":"msidbDialogAttributesKeepModeless","features":[155]},{"name":"msidbDialogAttributesLeftScroll","features":[155]},{"name":"msidbDialogAttributesMinimize","features":[155]},{"name":"msidbDialogAttributesModal","features":[155]},{"name":"msidbDialogAttributesRTLRO","features":[155]},{"name":"msidbDialogAttributesRightAligned","features":[155]},{"name":"msidbDialogAttributesSysModal","features":[155]},{"name":"msidbDialogAttributesTrackDiskSpace","features":[155]},{"name":"msidbDialogAttributesUseCustomPalette","features":[155]},{"name":"msidbDialogAttributesVisible","features":[155]},{"name":"msidbEmbeddedHandlesBasic","features":[155]},{"name":"msidbEmbeddedUI","features":[155]},{"name":"msidbEmbeddedUIAttributes","features":[155]},{"name":"msidbFeatureAttributes","features":[155]},{"name":"msidbFeatureAttributesDisallowAdvertise","features":[155]},{"name":"msidbFeatureAttributesFavorAdvertise","features":[155]},{"name":"msidbFeatureAttributesFavorLocal","features":[155]},{"name":"msidbFeatureAttributesFavorSource","features":[155]},{"name":"msidbFeatureAttributesFollowParent","features":[155]},{"name":"msidbFeatureAttributesNoUnsupportedAdvertise","features":[155]},{"name":"msidbFeatureAttributesUIDisallowAbsent","features":[155]},{"name":"msidbFileAttributes","features":[155]},{"name":"msidbFileAttributesChecksum","features":[155]},{"name":"msidbFileAttributesCompressed","features":[155]},{"name":"msidbFileAttributesHidden","features":[155]},{"name":"msidbFileAttributesIsolatedComp","features":[155]},{"name":"msidbFileAttributesNoncompressed","features":[155]},{"name":"msidbFileAttributesPatchAdded","features":[155]},{"name":"msidbFileAttributesReadOnly","features":[155]},{"name":"msidbFileAttributesReserved0","features":[155]},{"name":"msidbFileAttributesReserved1","features":[155]},{"name":"msidbFileAttributesReserved2","features":[155]},{"name":"msidbFileAttributesReserved3","features":[155]},{"name":"msidbFileAttributesReserved4","features":[155]},{"name":"msidbFileAttributesSystem","features":[155]},{"name":"msidbFileAttributesVital","features":[155]},{"name":"msidbIniFileAction","features":[155]},{"name":"msidbIniFileActionAddLine","features":[155]},{"name":"msidbIniFileActionAddTag","features":[155]},{"name":"msidbIniFileActionCreateLine","features":[155]},{"name":"msidbIniFileActionRemoveLine","features":[155]},{"name":"msidbIniFileActionRemoveTag","features":[155]},{"name":"msidbLocatorType","features":[155]},{"name":"msidbLocatorType64bit","features":[155]},{"name":"msidbLocatorTypeDirectory","features":[155]},{"name":"msidbLocatorTypeFileName","features":[155]},{"name":"msidbLocatorTypeRawValue","features":[155]},{"name":"msidbMoveFileOptions","features":[155]},{"name":"msidbMoveFileOptionsMove","features":[155]},{"name":"msidbODBCDataSourceRegistration","features":[155]},{"name":"msidbODBCDataSourceRegistrationPerMachine","features":[155]},{"name":"msidbODBCDataSourceRegistrationPerUser","features":[155]},{"name":"msidbPatchAttributes","features":[155]},{"name":"msidbPatchAttributesNonVital","features":[155]},{"name":"msidbRegistryRoot","features":[155]},{"name":"msidbRegistryRootClassesRoot","features":[155]},{"name":"msidbRegistryRootCurrentUser","features":[155]},{"name":"msidbRegistryRootLocalMachine","features":[155]},{"name":"msidbRegistryRootUsers","features":[155]},{"name":"msidbRemoveFileInstallMode","features":[155]},{"name":"msidbRemoveFileInstallModeOnBoth","features":[155]},{"name":"msidbRemoveFileInstallModeOnInstall","features":[155]},{"name":"msidbRemoveFileInstallModeOnRemove","features":[155]},{"name":"msidbServiceConfigEvent","features":[155]},{"name":"msidbServiceConfigEventInstall","features":[155]},{"name":"msidbServiceConfigEventReinstall","features":[155]},{"name":"msidbServiceConfigEventUninstall","features":[155]},{"name":"msidbServiceControlEvent","features":[155]},{"name":"msidbServiceControlEventDelete","features":[155]},{"name":"msidbServiceControlEventStart","features":[155]},{"name":"msidbServiceControlEventStop","features":[155]},{"name":"msidbServiceControlEventUninstallDelete","features":[155]},{"name":"msidbServiceControlEventUninstallStart","features":[155]},{"name":"msidbServiceControlEventUninstallStop","features":[155]},{"name":"msidbServiceInstallErrorControl","features":[155]},{"name":"msidbServiceInstallErrorControlVital","features":[155]},{"name":"msidbSumInfoSourceType","features":[155]},{"name":"msidbSumInfoSourceTypeAdminImage","features":[155]},{"name":"msidbSumInfoSourceTypeCompressed","features":[155]},{"name":"msidbSumInfoSourceTypeLUAPackage","features":[155]},{"name":"msidbSumInfoSourceTypeSFN","features":[155]},{"name":"msidbTextStyleStyleBits","features":[155]},{"name":"msidbTextStyleStyleBitsBold","features":[155]},{"name":"msidbTextStyleStyleBitsItalic","features":[155]},{"name":"msidbTextStyleStyleBitsStrike","features":[155]},{"name":"msidbTextStyleStyleBitsUnderline","features":[155]},{"name":"msidbUpgradeAttributes","features":[155]},{"name":"msidbUpgradeAttributesIgnoreRemoveFailure","features":[155]},{"name":"msidbUpgradeAttributesLanguagesExclusive","features":[155]},{"name":"msidbUpgradeAttributesMigrateFeatures","features":[155]},{"name":"msidbUpgradeAttributesOnlyDetect","features":[155]},{"name":"msidbUpgradeAttributesVersionMaxInclusive","features":[155]},{"name":"msidbUpgradeAttributesVersionMinInclusive","features":[155]},{"name":"msifiFastInstallBits","features":[155]},{"name":"msifiFastInstallLessPrgMsg","features":[155]},{"name":"msifiFastInstallNoSR","features":[155]},{"name":"msifiFastInstallQuickCosting","features":[155]},{"name":"msirbRebootCustomActionReason","features":[155]},{"name":"msirbRebootDeferred","features":[155]},{"name":"msirbRebootForceRebootReason","features":[155]},{"name":"msirbRebootImmediate","features":[155]},{"name":"msirbRebootInUseFilesReason","features":[155]},{"name":"msirbRebootReason","features":[155]},{"name":"msirbRebootScheduleRebootReason","features":[155]},{"name":"msirbRebootType","features":[155]},{"name":"msirbRebootUndeterminedReason","features":[155]},{"name":"msmErrorDirCreate","features":[155]},{"name":"msmErrorExclusion","features":[155]},{"name":"msmErrorFeatureRequired","features":[155]},{"name":"msmErrorFileCreate","features":[155]},{"name":"msmErrorLanguageFailed","features":[155]},{"name":"msmErrorLanguageUnsupported","features":[155]},{"name":"msmErrorResequenceMerge","features":[155]},{"name":"msmErrorTableMerge","features":[155]},{"name":"msmErrorType","features":[155]}],"533":[{"name":"AVRF_BACKTRACE_INFORMATION","features":[156]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_DONT_RESOLVE_TRACES","features":[156]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_SUSPEND","features":[156]},{"name":"AVRF_HANDLEOPERATION_ENUMERATE_CALLBACK","features":[156]},{"name":"AVRF_HANDLE_OPERATION","features":[156]},{"name":"AVRF_HEAPALLOCATION_ENUMERATE_CALLBACK","features":[156]},{"name":"AVRF_HEAP_ALLOCATION","features":[156]},{"name":"AVRF_MAX_TRACES","features":[156]},{"name":"AVRF_RESOURCE_ENUMERATE_CALLBACK","features":[156]},{"name":"AllocationStateBusy","features":[156]},{"name":"AllocationStateFree","features":[156]},{"name":"AllocationStateUnknown","features":[156]},{"name":"AvrfResourceHandleTrace","features":[156]},{"name":"AvrfResourceHeapAllocation","features":[156]},{"name":"AvrfResourceMax","features":[156]},{"name":"HeapEnumerationEverything","features":[156]},{"name":"HeapEnumerationStop","features":[156]},{"name":"HeapFullPageHeap","features":[156]},{"name":"HeapMetadata","features":[156]},{"name":"HeapStateMask","features":[156]},{"name":"OperationDbBADREF","features":[156]},{"name":"OperationDbCLOSE","features":[156]},{"name":"OperationDbOPEN","features":[156]},{"name":"OperationDbUnused","features":[156]},{"name":"VERIFIER_ENUM_RESOURCE_FLAGS","features":[156]},{"name":"VerifierEnumerateResource","features":[3,156]},{"name":"eAvrfResourceTypes","features":[156]},{"name":"eHANDLE_TRACE_OPERATIONS","features":[156]},{"name":"eHeapAllocationState","features":[156]},{"name":"eHeapEnumerationLevel","features":[156]},{"name":"eUserAllocationState","features":[156]}],"535":[{"name":"APPDOMAIN_FORCE_TRIVIAL_WAIT_OPERATIONS","features":[157]},{"name":"APPDOMAIN_SECURITY_DEFAULT","features":[157]},{"name":"APPDOMAIN_SECURITY_FLAGS","features":[157]},{"name":"APPDOMAIN_SECURITY_FORBID_CROSSAD_REVERSE_PINVOKE","features":[157]},{"name":"APPDOMAIN_SECURITY_SANDBOXED","features":[157]},{"name":"AssemblyBindInfo","features":[157]},{"name":"BucketParamLength","features":[157]},{"name":"BucketParameterIndex","features":[157]},{"name":"BucketParameters","features":[3,157]},{"name":"BucketParamsCount","features":[157]},{"name":"CLRCreateInstance","features":[157]},{"name":"CLRCreateInstanceFnPtr","features":[157]},{"name":"CLRRuntimeHost","features":[157]},{"name":"CLR_ASSEMBLY_BUILD_VERSION","features":[157]},{"name":"CLR_ASSEMBLY_IDENTITY_FLAGS_DEFAULT","features":[157]},{"name":"CLR_ASSEMBLY_MAJOR_VERSION","features":[157]},{"name":"CLR_ASSEMBLY_MINOR_VERSION","features":[157]},{"name":"CLR_BUILD_VERSION","features":[157]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_DEBUGGER_LAUNCH","features":[157]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_PENDING","features":[157]},{"name":"CLR_DEBUGGING_PROCESS_FLAGS","features":[157]},{"name":"CLR_DEBUGGING_VERSION","features":[157]},{"name":"CLR_MAJOR_VERSION","features":[157]},{"name":"CLR_MINOR_VERSION","features":[157]},{"name":"CLSID_CLRDebugging","features":[157]},{"name":"CLSID_CLRDebuggingLegacy","features":[157]},{"name":"CLSID_CLRMetaHost","features":[157]},{"name":"CLSID_CLRMetaHostPolicy","features":[157]},{"name":"CLSID_CLRProfiling","features":[157]},{"name":"CLSID_CLRStrongName","features":[157]},{"name":"CLSID_RESOLUTION_DEFAULT","features":[157]},{"name":"CLSID_RESOLUTION_FLAGS","features":[157]},{"name":"CLSID_RESOLUTION_REGISTERED","features":[157]},{"name":"COR_GC_COUNTS","features":[157]},{"name":"COR_GC_MEMORYUSAGE","features":[157]},{"name":"COR_GC_STATS","features":[157]},{"name":"COR_GC_STAT_TYPES","features":[157]},{"name":"COR_GC_THREAD_HAS_PROMOTED_BYTES","features":[157]},{"name":"COR_GC_THREAD_STATS","features":[157]},{"name":"COR_GC_THREAD_STATS_TYPES","features":[157]},{"name":"CallFunctionShim","features":[157]},{"name":"CallbackThreadSetFnPtr","features":[157]},{"name":"CallbackThreadUnsetFnPtr","features":[157]},{"name":"ClrCreateManagedInstance","features":[157]},{"name":"ComCallUnmarshal","features":[157]},{"name":"ComCallUnmarshalV4","features":[157]},{"name":"CorBindToCurrentRuntime","features":[157]},{"name":"CorBindToRuntime","features":[157]},{"name":"CorBindToRuntimeByCfg","features":[157]},{"name":"CorBindToRuntimeEx","features":[157]},{"name":"CorBindToRuntimeHost","features":[157]},{"name":"CorExitProcess","features":[157]},{"name":"CorLaunchApplication","features":[3,157,39]},{"name":"CorMarkThreadInThreadPool","features":[157]},{"name":"CorRuntimeHost","features":[157]},{"name":"CreateDebuggingInterfaceFromVersion","features":[157]},{"name":"CreateInterfaceFnPtr","features":[157]},{"name":"CustomDumpItem","features":[157]},{"name":"DEPRECATED_CLR_API_MESG","features":[157]},{"name":"DUMP_FLAVOR_CriticalCLRState","features":[157]},{"name":"DUMP_FLAVOR_Default","features":[157]},{"name":"DUMP_FLAVOR_Mini","features":[157]},{"name":"DUMP_FLAVOR_NonHeapCLRState","features":[157]},{"name":"DUMP_ITEM_None","features":[157]},{"name":"EApiCategories","features":[157]},{"name":"EBindPolicyLevels","features":[157]},{"name":"ECLRAssemblyIdentityFlags","features":[157]},{"name":"EClrEvent","features":[157]},{"name":"EClrFailure","features":[157]},{"name":"EClrOperation","features":[157]},{"name":"EClrUnhandledException","features":[157]},{"name":"EContextType","features":[157]},{"name":"ECustomDumpFlavor","features":[157]},{"name":"ECustomDumpItemKind","features":[157]},{"name":"EHostApplicationPolicy","features":[157]},{"name":"EHostBindingPolicyModifyFlags","features":[157]},{"name":"EInitializeNewDomainFlags","features":[157]},{"name":"EMemoryAvailable","features":[157]},{"name":"EMemoryCriticalLevel","features":[157]},{"name":"EPolicyAction","features":[157]},{"name":"ESymbolReadingPolicy","features":[157]},{"name":"ETaskType","features":[157]},{"name":"Event_ClrDisabled","features":[157]},{"name":"Event_DomainUnload","features":[157]},{"name":"Event_MDAFired","features":[157]},{"name":"Event_StackOverflow","features":[157]},{"name":"FAIL_AccessViolation","features":[157]},{"name":"FAIL_CodeContract","features":[157]},{"name":"FAIL_CriticalResource","features":[157]},{"name":"FAIL_FatalRuntime","features":[157]},{"name":"FAIL_NonCriticalResource","features":[157]},{"name":"FAIL_OrphanedLock","features":[157]},{"name":"FAIL_StackOverflow","features":[157]},{"name":"FExecuteInAppDomainCallback","features":[157]},{"name":"FLockClrVersionCallback","features":[157]},{"name":"GetCLRIdentityManager","features":[157]},{"name":"GetCORRequiredVersion","features":[157]},{"name":"GetCORSystemDirectory","features":[157]},{"name":"GetCORVersion","features":[157]},{"name":"GetFileVersion","features":[157]},{"name":"GetRealProcAddress","features":[157]},{"name":"GetRequestedRuntimeInfo","features":[157]},{"name":"GetRequestedRuntimeVersion","features":[157]},{"name":"GetRequestedRuntimeVersionForCLSID","features":[157]},{"name":"GetVersionFromProcess","features":[3,157]},{"name":"HOST_APPLICATION_BINDING_POLICY","features":[157]},{"name":"HOST_BINDING_POLICY_MODIFY_CHAIN","features":[157]},{"name":"HOST_BINDING_POLICY_MODIFY_DEFAULT","features":[157]},{"name":"HOST_BINDING_POLICY_MODIFY_MAX","features":[157]},{"name":"HOST_BINDING_POLICY_MODIFY_REMOVE","features":[157]},{"name":"HOST_TYPE","features":[157]},{"name":"HOST_TYPE_APPLAUNCH","features":[157]},{"name":"HOST_TYPE_CORFLAG","features":[157]},{"name":"HOST_TYPE_DEFAULT","features":[157]},{"name":"IActionOnCLREvent","features":[157]},{"name":"IApartmentCallback","features":[157]},{"name":"IAppDomainBinding","features":[157]},{"name":"ICLRAppDomainResourceMonitor","features":[157]},{"name":"ICLRAssemblyIdentityManager","features":[157]},{"name":"ICLRAssemblyReferenceList","features":[157]},{"name":"ICLRControl","features":[157]},{"name":"ICLRDebugManager","features":[157]},{"name":"ICLRDebugging","features":[157]},{"name":"ICLRDebuggingLibraryProvider","features":[157]},{"name":"ICLRDomainManager","features":[157]},{"name":"ICLRErrorReportingManager","features":[157]},{"name":"ICLRGCManager","features":[157]},{"name":"ICLRGCManager2","features":[157]},{"name":"ICLRHostBindingPolicyManager","features":[157]},{"name":"ICLRHostProtectionManager","features":[157]},{"name":"ICLRIoCompletionManager","features":[157]},{"name":"ICLRMemoryNotificationCallback","features":[157]},{"name":"ICLRMetaHost","features":[157]},{"name":"ICLRMetaHostPolicy","features":[157]},{"name":"ICLROnEventManager","features":[157]},{"name":"ICLRPolicyManager","features":[157]},{"name":"ICLRProbingAssemblyEnum","features":[157]},{"name":"ICLRProfiling","features":[157]},{"name":"ICLRReferenceAssemblyEnum","features":[157]},{"name":"ICLRRuntimeHost","features":[157]},{"name":"ICLRRuntimeInfo","features":[157]},{"name":"ICLRStrongName","features":[157]},{"name":"ICLRStrongName2","features":[157]},{"name":"ICLRStrongName3","features":[157]},{"name":"ICLRSyncManager","features":[157]},{"name":"ICLRTask","features":[157]},{"name":"ICLRTask2","features":[157]},{"name":"ICLRTaskManager","features":[157]},{"name":"ICatalogServices","features":[157]},{"name":"ICorConfiguration","features":[157]},{"name":"ICorRuntimeHost","features":[157]},{"name":"ICorThreadpool","features":[157]},{"name":"IDebuggerInfo","features":[157]},{"name":"IDebuggerThreadControl","features":[157]},{"name":"IGCHost","features":[157]},{"name":"IGCHost2","features":[157]},{"name":"IGCHostControl","features":[157]},{"name":"IGCThreadControl","features":[157]},{"name":"IHostAssemblyManager","features":[157]},{"name":"IHostAssemblyStore","features":[157]},{"name":"IHostAutoEvent","features":[157]},{"name":"IHostControl","features":[157]},{"name":"IHostCrst","features":[157]},{"name":"IHostGCManager","features":[157]},{"name":"IHostIoCompletionManager","features":[157]},{"name":"IHostMalloc","features":[157]},{"name":"IHostManualEvent","features":[157]},{"name":"IHostMemoryManager","features":[157]},{"name":"IHostPolicyManager","features":[157]},{"name":"IHostSecurityContext","features":[157]},{"name":"IHostSecurityManager","features":[157]},{"name":"IHostSemaphore","features":[157]},{"name":"IHostSyncManager","features":[157]},{"name":"IHostTask","features":[157]},{"name":"IHostTaskManager","features":[157]},{"name":"IHostThreadpoolManager","features":[157]},{"name":"IManagedObject","features":[157]},{"name":"IObjectHandle","features":[157]},{"name":"ITypeName","features":[157]},{"name":"ITypeNameBuilder","features":[157]},{"name":"ITypeNameFactory","features":[157]},{"name":"InvalidBucketParamIndex","features":[157]},{"name":"LIBID_mscoree","features":[157]},{"name":"LoadLibraryShim","features":[3,157]},{"name":"LoadStringRC","features":[157]},{"name":"LoadStringRCEx","features":[157]},{"name":"LockClrVersion","features":[157]},{"name":"MALLOC_EXECUTABLE","features":[157]},{"name":"MALLOC_THREADSAFE","features":[157]},{"name":"MALLOC_TYPE","features":[157]},{"name":"MDAInfo","features":[157]},{"name":"METAHOST_CONFIG_FLAGS","features":[157]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_FALSE","features":[157]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_MASK","features":[157]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_TRUE","features":[157]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_UNSET","features":[157]},{"name":"METAHOST_POLICY_APPLY_UPGRADE_POLICY","features":[157]},{"name":"METAHOST_POLICY_EMULATE_EXE_LAUNCH","features":[157]},{"name":"METAHOST_POLICY_ENSURE_SKU_SUPPORTED","features":[157]},{"name":"METAHOST_POLICY_FLAGS","features":[157]},{"name":"METAHOST_POLICY_HIGHCOMPAT","features":[157]},{"name":"METAHOST_POLICY_IGNORE_ERROR_MODE","features":[157]},{"name":"METAHOST_POLICY_SHOW_ERROR_DIALOG","features":[157]},{"name":"METAHOST_POLICY_USE_PROCESS_IMAGE_PATH","features":[157]},{"name":"MaxClrEvent","features":[157]},{"name":"MaxClrFailure","features":[157]},{"name":"MaxClrOperation","features":[157]},{"name":"MaxPolicyAction","features":[157]},{"name":"ModuleBindInfo","features":[157]},{"name":"OPR_AppDomainRudeUnload","features":[157]},{"name":"OPR_AppDomainUnload","features":[157]},{"name":"OPR_FinalizerRun","features":[157]},{"name":"OPR_ProcessExit","features":[157]},{"name":"OPR_ThreadAbort","features":[157]},{"name":"OPR_ThreadRudeAbortInCriticalRegion","features":[157]},{"name":"OPR_ThreadRudeAbortInNonCriticalRegion","features":[157]},{"name":"PTLS_CALLBACK_FUNCTION","features":[157]},{"name":"Parameter1","features":[157]},{"name":"Parameter2","features":[157]},{"name":"Parameter3","features":[157]},{"name":"Parameter4","features":[157]},{"name":"Parameter5","features":[157]},{"name":"Parameter6","features":[157]},{"name":"Parameter7","features":[157]},{"name":"Parameter8","features":[157]},{"name":"Parameter9","features":[157]},{"name":"RUNTIME_INFO_DONT_RETURN_DIRECTORY","features":[157]},{"name":"RUNTIME_INFO_DONT_RETURN_VERSION","features":[157]},{"name":"RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG","features":[157]},{"name":"RUNTIME_INFO_FLAGS","features":[157]},{"name":"RUNTIME_INFO_IGNORE_ERROR_MODE","features":[157]},{"name":"RUNTIME_INFO_REQUEST_AMD64","features":[157]},{"name":"RUNTIME_INFO_REQUEST_ARM64","features":[157]},{"name":"RUNTIME_INFO_REQUEST_IA64","features":[157]},{"name":"RUNTIME_INFO_REQUEST_X86","features":[157]},{"name":"RUNTIME_INFO_UPGRADE_VERSION","features":[157]},{"name":"RunDll32ShimW","features":[3,157]},{"name":"RuntimeLoadedCallbackFnPtr","features":[157]},{"name":"SO_ClrEngine","features":[157]},{"name":"SO_Managed","features":[157]},{"name":"SO_Other","features":[157]},{"name":"STARTUP_ALWAYSFLOW_IMPERSONATION","features":[157]},{"name":"STARTUP_ARM","features":[157]},{"name":"STARTUP_CONCURRENT_GC","features":[157]},{"name":"STARTUP_DISABLE_COMMITTHREADSTACK","features":[157]},{"name":"STARTUP_ETW","features":[157]},{"name":"STARTUP_FLAGS","features":[157]},{"name":"STARTUP_HOARD_GC_VM","features":[157]},{"name":"STARTUP_LEGACY_IMPERSONATION","features":[157]},{"name":"STARTUP_LOADER_OPTIMIZATION_MASK","features":[157]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN","features":[157]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST","features":[157]},{"name":"STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN","features":[157]},{"name":"STARTUP_LOADER_SAFEMODE","features":[157]},{"name":"STARTUP_LOADER_SETPREFERENCE","features":[157]},{"name":"STARTUP_SERVER_GC","features":[157]},{"name":"STARTUP_SINGLE_VERSION_HOSTING_INTERFACE","features":[157]},{"name":"STARTUP_TRIM_GC_COMMIT","features":[157]},{"name":"StackOverflowInfo","features":[3,157,33,9]},{"name":"StackOverflowType","features":[157]},{"name":"TT_ADUNLOAD","features":[157]},{"name":"TT_DEBUGGERHELPER","features":[157]},{"name":"TT_FINALIZER","features":[157]},{"name":"TT_GC","features":[157]},{"name":"TT_THREADPOOL_GATE","features":[157]},{"name":"TT_THREADPOOL_IOCOMPLETION","features":[157]},{"name":"TT_THREADPOOL_TIMER","features":[157]},{"name":"TT_THREADPOOL_WAIT","features":[157]},{"name":"TT_THREADPOOL_WORKER","features":[157]},{"name":"TT_UNKNOWN","features":[157]},{"name":"TT_USER","features":[157]},{"name":"TypeNameFactory","features":[157]},{"name":"WAIT_ALERTABLE","features":[157]},{"name":"WAIT_MSGPUMP","features":[157]},{"name":"WAIT_NOTINDEADLOCK","features":[157]},{"name":"WAIT_OPTION","features":[157]},{"name":"eAbortThread","features":[157]},{"name":"eAll","features":[157]},{"name":"eAppDomainCritical","features":[157]},{"name":"eCurrentContext","features":[157]},{"name":"eDisableRuntime","features":[157]},{"name":"eExitProcess","features":[157]},{"name":"eExternalProcessMgmt","features":[157]},{"name":"eExternalThreading","features":[157]},{"name":"eFastExitProcess","features":[157]},{"name":"eHostDeterminedPolicy","features":[157]},{"name":"eInitializeNewDomainFlags_NoSecurityChanges","features":[157]},{"name":"eInitializeNewDomainFlags_None","features":[157]},{"name":"eMayLeakOnAbort","features":[157]},{"name":"eMemoryAvailableHigh","features":[157]},{"name":"eMemoryAvailableLow","features":[157]},{"name":"eMemoryAvailableNeutral","features":[157]},{"name":"eNoAction","features":[157]},{"name":"eNoChecks","features":[157]},{"name":"ePolicyLevelAdmin","features":[157]},{"name":"ePolicyLevelApp","features":[157]},{"name":"ePolicyLevelHost","features":[157]},{"name":"ePolicyLevelNone","features":[157]},{"name":"ePolicyLevelPublisher","features":[157]},{"name":"ePolicyLevelRetargetable","features":[157]},{"name":"ePolicyPortability","features":[157]},{"name":"ePolicyUnifiedToCLR","features":[157]},{"name":"eProcessCritical","features":[157]},{"name":"eRestrictedContext","features":[157]},{"name":"eRudeAbortThread","features":[157]},{"name":"eRudeExitProcess","features":[157]},{"name":"eRudeUnloadAppDomain","features":[157]},{"name":"eRuntimeDeterminedPolicy","features":[157]},{"name":"eSecurityInfrastructure","features":[157]},{"name":"eSelfAffectingProcessMgmt","features":[157]},{"name":"eSelfAffectingThreading","features":[157]},{"name":"eSharedState","features":[157]},{"name":"eSymbolReadingAlways","features":[157]},{"name":"eSymbolReadingFullTrustOnly","features":[157]},{"name":"eSymbolReadingNever","features":[157]},{"name":"eSynchronization","features":[157]},{"name":"eTaskCritical","features":[157]},{"name":"eThrowException","features":[157]},{"name":"eUI","features":[157]},{"name":"eUnloadAppDomain","features":[157]}],"536":[{"name":"ADVANCED_FEATURE_FLAGS","features":[43]},{"name":"ADVF","features":[43]},{"name":"ADVFCACHE_FORCEBUILTIN","features":[43]},{"name":"ADVFCACHE_NOHANDLER","features":[43]},{"name":"ADVFCACHE_ONSAVE","features":[43]},{"name":"ADVF_DATAONSTOP","features":[43]},{"name":"ADVF_NODATA","features":[43]},{"name":"ADVF_ONLYONCE","features":[43]},{"name":"ADVF_PRIMEFIRST","features":[43]},{"name":"APPIDREGFLAGS_AAA_NO_IMPLICIT_ACTIVATE_AS_IU","features":[43]},{"name":"APPIDREGFLAGS_ACTIVATE_IUSERVER_INDESKTOP","features":[43]},{"name":"APPIDREGFLAGS_ISSUE_ACTIVATION_RPC_AT_IDENTIFY","features":[43]},{"name":"APPIDREGFLAGS_IUSERVER_ACTIVATE_IN_CLIENT_SESSION_ONLY","features":[43]},{"name":"APPIDREGFLAGS_IUSERVER_SELF_SID_IN_LAUNCH_PERMISSION","features":[43]},{"name":"APPIDREGFLAGS_IUSERVER_UNMODIFIED_LOGON_TOKEN","features":[43]},{"name":"APPIDREGFLAGS_RESERVED1","features":[43]},{"name":"APPIDREGFLAGS_RESERVED2","features":[43]},{"name":"APPIDREGFLAGS_RESERVED3","features":[43]},{"name":"APPIDREGFLAGS_RESERVED4","features":[43]},{"name":"APPIDREGFLAGS_RESERVED5","features":[43]},{"name":"APPIDREGFLAGS_RESERVED7","features":[43]},{"name":"APPIDREGFLAGS_RESERVED8","features":[43]},{"name":"APPIDREGFLAGS_RESERVED9","features":[43]},{"name":"APPIDREGFLAGS_SECURE_SERVER_PROCESS_SD_AND_BIND","features":[43]},{"name":"APTTYPE","features":[43]},{"name":"APTTYPEQUALIFIER","features":[43]},{"name":"APTTYPEQUALIFIER_APPLICATION_STA","features":[43]},{"name":"APTTYPEQUALIFIER_IMPLICIT_MTA","features":[43]},{"name":"APTTYPEQUALIFIER_NA_ON_IMPLICIT_MTA","features":[43]},{"name":"APTTYPEQUALIFIER_NA_ON_MAINSTA","features":[43]},{"name":"APTTYPEQUALIFIER_NA_ON_MTA","features":[43]},{"name":"APTTYPEQUALIFIER_NA_ON_STA","features":[43]},{"name":"APTTYPEQUALIFIER_NONE","features":[43]},{"name":"APTTYPEQUALIFIER_RESERVED_1","features":[43]},{"name":"APTTYPE_CURRENT","features":[43]},{"name":"APTTYPE_MAINSTA","features":[43]},{"name":"APTTYPE_MTA","features":[43]},{"name":"APTTYPE_NA","features":[43]},{"name":"APTTYPE_STA","features":[43]},{"name":"ASYNC_MODE_COMPATIBILITY","features":[43]},{"name":"ASYNC_MODE_DEFAULT","features":[43]},{"name":"AUTHENTICATEINFO","features":[43]},{"name":"ApplicationType","features":[43]},{"name":"AsyncIAdviseSink","features":[43]},{"name":"AsyncIAdviseSink2","features":[43]},{"name":"AsyncIMultiQI","features":[43]},{"name":"AsyncIPipeByte","features":[43]},{"name":"AsyncIPipeDouble","features":[43]},{"name":"AsyncIPipeLong","features":[43]},{"name":"AsyncIUnknown","features":[43]},{"name":"BINDINFO","features":[3,14,6,43]},{"name":"BINDINFOF","features":[43]},{"name":"BINDINFOF_URLENCODEDEXTRAINFO","features":[43]},{"name":"BINDINFOF_URLENCODESTGMEDDATA","features":[43]},{"name":"BINDPTR","features":[3,43,158,44]},{"name":"BIND_FLAGS","features":[43]},{"name":"BIND_JUSTTESTEXISTENCE","features":[43]},{"name":"BIND_MAYBOTHERUSER","features":[43]},{"name":"BIND_OPTS","features":[43]},{"name":"BIND_OPTS2","features":[43]},{"name":"BIND_OPTS3","features":[3,43]},{"name":"BLOB","features":[43]},{"name":"BYTE_BLOB","features":[43]},{"name":"BYTE_SIZEDARR","features":[43]},{"name":"BindMoniker","features":[43]},{"name":"CALLCONV","features":[43]},{"name":"CALLTYPE","features":[43]},{"name":"CALLTYPE_ASYNC","features":[43]},{"name":"CALLTYPE_ASYNC_CALLPENDING","features":[43]},{"name":"CALLTYPE_NESTED","features":[43]},{"name":"CALLTYPE_TOPLEVEL","features":[43]},{"name":"CALLTYPE_TOPLEVEL_CALLPENDING","features":[43]},{"name":"CATEGORYINFO","features":[43]},{"name":"CC_CDECL","features":[43]},{"name":"CC_FASTCALL","features":[43]},{"name":"CC_FPFASTCALL","features":[43]},{"name":"CC_MACPASCAL","features":[43]},{"name":"CC_MAX","features":[43]},{"name":"CC_MPWCDECL","features":[43]},{"name":"CC_MPWPASCAL","features":[43]},{"name":"CC_MSCPASCAL","features":[43]},{"name":"CC_PASCAL","features":[43]},{"name":"CC_STDCALL","features":[43]},{"name":"CC_SYSCALL","features":[43]},{"name":"CLSCTX","features":[43]},{"name":"CLSCTX_ACTIVATE_32_BIT_SERVER","features":[43]},{"name":"CLSCTX_ACTIVATE_64_BIT_SERVER","features":[43]},{"name":"CLSCTX_ACTIVATE_AAA_AS_IU","features":[43]},{"name":"CLSCTX_ACTIVATE_ARM32_SERVER","features":[43]},{"name":"CLSCTX_ACTIVATE_X86_SERVER","features":[43]},{"name":"CLSCTX_ALL","features":[43]},{"name":"CLSCTX_ALLOW_LOWER_TRUST_REGISTRATION","features":[43]},{"name":"CLSCTX_APPCONTAINER","features":[43]},{"name":"CLSCTX_DISABLE_AAA","features":[43]},{"name":"CLSCTX_ENABLE_AAA","features":[43]},{"name":"CLSCTX_ENABLE_CLOAKING","features":[43]},{"name":"CLSCTX_ENABLE_CODE_DOWNLOAD","features":[43]},{"name":"CLSCTX_FROM_DEFAULT_CONTEXT","features":[43]},{"name":"CLSCTX_INPROC_HANDLER","features":[43]},{"name":"CLSCTX_INPROC_HANDLER16","features":[43]},{"name":"CLSCTX_INPROC_SERVER","features":[43]},{"name":"CLSCTX_INPROC_SERVER16","features":[43]},{"name":"CLSCTX_LOCAL_SERVER","features":[43]},{"name":"CLSCTX_NO_CODE_DOWNLOAD","features":[43]},{"name":"CLSCTX_NO_CUSTOM_MARSHAL","features":[43]},{"name":"CLSCTX_NO_FAILURE_LOG","features":[43]},{"name":"CLSCTX_PS_DLL","features":[43]},{"name":"CLSCTX_REMOTE_SERVER","features":[43]},{"name":"CLSCTX_RESERVED1","features":[43]},{"name":"CLSCTX_RESERVED2","features":[43]},{"name":"CLSCTX_RESERVED3","features":[43]},{"name":"CLSCTX_RESERVED4","features":[43]},{"name":"CLSCTX_RESERVED5","features":[43]},{"name":"CLSCTX_RESERVED6","features":[43]},{"name":"CLSCTX_SERVER","features":[43]},{"name":"CLSIDFromProgID","features":[43]},{"name":"CLSIDFromProgIDEx","features":[43]},{"name":"CLSIDFromString","features":[43]},{"name":"CLSID_GlobalOptions","features":[43]},{"name":"COAUTHIDENTITY","features":[43]},{"name":"COAUTHINFO","features":[43]},{"name":"COINIT","features":[43]},{"name":"COINITBASE","features":[43]},{"name":"COINITBASE_MULTITHREADED","features":[43]},{"name":"COINIT_APARTMENTTHREADED","features":[43]},{"name":"COINIT_DISABLE_OLE1DDE","features":[43]},{"name":"COINIT_MULTITHREADED","features":[43]},{"name":"COINIT_SPEED_OVER_MEMORY","features":[43]},{"name":"COLE_DEFAULT_AUTHINFO","features":[43]},{"name":"COLE_DEFAULT_PRINCIPAL","features":[43]},{"name":"COMBND_RESERVED1","features":[43]},{"name":"COMBND_RESERVED2","features":[43]},{"name":"COMBND_RESERVED3","features":[43]},{"name":"COMBND_RESERVED4","features":[43]},{"name":"COMBND_RPCTIMEOUT","features":[43]},{"name":"COMBND_SERVER_LOCALITY","features":[43]},{"name":"COMGLB_APPID","features":[43]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE","features":[43]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_ANY","features":[43]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_FATAL","features":[43]},{"name":"COMGLB_EXCEPTION_HANDLE","features":[43]},{"name":"COMGLB_EXCEPTION_HANDLING","features":[43]},{"name":"COMGLB_FAST_RUNDOWN","features":[43]},{"name":"COMGLB_PROPERTIES_RESERVED1","features":[43]},{"name":"COMGLB_PROPERTIES_RESERVED2","features":[43]},{"name":"COMGLB_PROPERTIES_RESERVED3","features":[43]},{"name":"COMGLB_RESERVED1","features":[43]},{"name":"COMGLB_RESERVED2","features":[43]},{"name":"COMGLB_RESERVED3","features":[43]},{"name":"COMGLB_RESERVED4","features":[43]},{"name":"COMGLB_RESERVED5","features":[43]},{"name":"COMGLB_RESERVED6","features":[43]},{"name":"COMGLB_RO_SETTINGS","features":[43]},{"name":"COMGLB_RPC_THREADPOOL_SETTING","features":[43]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_DEFAULT_POOL","features":[43]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_PRIVATE_POOL","features":[43]},{"name":"COMGLB_STA_MODALLOOP_REMOVE_TOUCH_MESSAGES","features":[43]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_DONOT_REMOVE_INPUT_MESSAGES","features":[43]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REMOVE_INPUT_MESSAGES","features":[43]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REORDER_POINTER_MESSAGES","features":[43]},{"name":"COMGLB_UNMARSHALING_POLICY","features":[43]},{"name":"COMGLB_UNMARSHALING_POLICY_HYBRID","features":[43]},{"name":"COMGLB_UNMARSHALING_POLICY_NORMAL","features":[43]},{"name":"COMGLB_UNMARSHALING_POLICY_STRONG","features":[43]},{"name":"COMSD","features":[43]},{"name":"COM_RIGHTS_ACTIVATE_LOCAL","features":[43]},{"name":"COM_RIGHTS_ACTIVATE_REMOTE","features":[43]},{"name":"COM_RIGHTS_EXECUTE","features":[43]},{"name":"COM_RIGHTS_EXECUTE_LOCAL","features":[43]},{"name":"COM_RIGHTS_EXECUTE_REMOTE","features":[43]},{"name":"COM_RIGHTS_RESERVED1","features":[43]},{"name":"COM_RIGHTS_RESERVED2","features":[43]},{"name":"CONNECTDATA","features":[43]},{"name":"COSERVERINFO","features":[43]},{"name":"COWAIT_ALERTABLE","features":[43]},{"name":"COWAIT_DEFAULT","features":[43]},{"name":"COWAIT_DISPATCH_CALLS","features":[43]},{"name":"COWAIT_DISPATCH_WINDOW_MESSAGES","features":[43]},{"name":"COWAIT_FLAGS","features":[43]},{"name":"COWAIT_INPUTAVAILABLE","features":[43]},{"name":"COWAIT_WAITALL","features":[43]},{"name":"CO_DEVICE_CATALOG_COOKIE","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTES","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_1","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_10","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_11","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_12","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_13","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_14","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_15","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_16","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_17","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_18","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_2","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_3","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_4","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_5","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_6","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_7","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_8","features":[43]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_9","features":[43]},{"name":"CO_MARSHALING_SOURCE_IS_APP_CONTAINER","features":[43]},{"name":"CO_MTA_USAGE_COOKIE","features":[43]},{"name":"CSPLATFORM","features":[43]},{"name":"CUSTDATA","features":[3,43,44]},{"name":"CUSTDATAITEM","features":[3,43,44]},{"name":"CWMO_DEFAULT","features":[43]},{"name":"CWMO_DISPATCH_CALLS","features":[43]},{"name":"CWMO_DISPATCH_WINDOW_MESSAGES","features":[43]},{"name":"CWMO_FLAGS","features":[43]},{"name":"CWMO_MAX_HANDLES","features":[43]},{"name":"CY","features":[43]},{"name":"CoAddRefServerProcess","features":[43]},{"name":"CoAllowSetForegroundWindow","features":[43]},{"name":"CoAllowUnmarshalerCLSID","features":[43]},{"name":"CoBuildVersion","features":[43]},{"name":"CoCancelCall","features":[43]},{"name":"CoCopyProxy","features":[43]},{"name":"CoCreateFreeThreadedMarshaler","features":[43]},{"name":"CoCreateGuid","features":[43]},{"name":"CoCreateInstance","features":[43]},{"name":"CoCreateInstanceEx","features":[43]},{"name":"CoCreateInstanceFromApp","features":[43]},{"name":"CoDecrementMTAUsage","features":[43]},{"name":"CoDisableCallCancellation","features":[43]},{"name":"CoDisconnectContext","features":[43]},{"name":"CoDisconnectObject","features":[43]},{"name":"CoDosDateTimeToFileTime","features":[3,43]},{"name":"CoEnableCallCancellation","features":[43]},{"name":"CoFileTimeNow","features":[3,43]},{"name":"CoFileTimeToDosDateTime","features":[3,43]},{"name":"CoFreeAllLibraries","features":[43]},{"name":"CoFreeLibrary","features":[3,43]},{"name":"CoFreeUnusedLibraries","features":[43]},{"name":"CoFreeUnusedLibrariesEx","features":[43]},{"name":"CoGetApartmentType","features":[43]},{"name":"CoGetCallContext","features":[43]},{"name":"CoGetCallerTID","features":[43]},{"name":"CoGetCancelObject","features":[43]},{"name":"CoGetClassObject","features":[43]},{"name":"CoGetContextToken","features":[43]},{"name":"CoGetCurrentLogicalThreadId","features":[43]},{"name":"CoGetCurrentProcess","features":[43]},{"name":"CoGetMalloc","features":[43]},{"name":"CoGetObject","features":[43]},{"name":"CoGetObjectContext","features":[43]},{"name":"CoGetPSClsid","features":[43]},{"name":"CoGetSystemSecurityPermissions","features":[6,43]},{"name":"CoGetTreatAsClass","features":[43]},{"name":"CoImpersonateClient","features":[43]},{"name":"CoIncrementMTAUsage","features":[43]},{"name":"CoInitialize","features":[43]},{"name":"CoInitializeEx","features":[43]},{"name":"CoInitializeSecurity","features":[6,43]},{"name":"CoInstall","features":[43]},{"name":"CoInvalidateRemoteMachineBindings","features":[43]},{"name":"CoIsHandlerConnected","features":[3,43]},{"name":"CoIsOle1Class","features":[3,43]},{"name":"CoLoadLibrary","features":[3,43]},{"name":"CoLockObjectExternal","features":[3,43]},{"name":"CoQueryAuthenticationServices","features":[43]},{"name":"CoQueryClientBlanket","features":[43]},{"name":"CoQueryProxyBlanket","features":[43]},{"name":"CoRegisterActivationFilter","features":[43]},{"name":"CoRegisterChannelHook","features":[43]},{"name":"CoRegisterClassObject","features":[43]},{"name":"CoRegisterDeviceCatalog","features":[43]},{"name":"CoRegisterInitializeSpy","features":[43]},{"name":"CoRegisterMallocSpy","features":[43]},{"name":"CoRegisterPSClsid","features":[43]},{"name":"CoRegisterSurrogate","features":[43]},{"name":"CoReleaseServerProcess","features":[43]},{"name":"CoResumeClassObjects","features":[43]},{"name":"CoRevertToSelf","features":[43]},{"name":"CoRevokeClassObject","features":[43]},{"name":"CoRevokeDeviceCatalog","features":[43]},{"name":"CoRevokeInitializeSpy","features":[43]},{"name":"CoRevokeMallocSpy","features":[43]},{"name":"CoSetCancelObject","features":[43]},{"name":"CoSetProxyBlanket","features":[43]},{"name":"CoSuspendClassObjects","features":[43]},{"name":"CoSwitchCallContext","features":[43]},{"name":"CoTaskMemAlloc","features":[43]},{"name":"CoTaskMemFree","features":[43]},{"name":"CoTaskMemRealloc","features":[43]},{"name":"CoTestCancel","features":[43]},{"name":"CoTreatAsClass","features":[43]},{"name":"CoUninitialize","features":[43]},{"name":"CoWaitForMultipleHandles","features":[3,43]},{"name":"CoWaitForMultipleObjects","features":[3,43]},{"name":"ComCallData","features":[43]},{"name":"ContextProperty","features":[43]},{"name":"CreateAntiMoniker","features":[43]},{"name":"CreateBindCtx","features":[43]},{"name":"CreateClassMoniker","features":[43]},{"name":"CreateDataAdviseHolder","features":[43]},{"name":"CreateDataCache","features":[43]},{"name":"CreateFileMoniker","features":[43]},{"name":"CreateGenericComposite","features":[43]},{"name":"CreateIUriBuilder","features":[43]},{"name":"CreateItemMoniker","features":[43]},{"name":"CreateObjrefMoniker","features":[43]},{"name":"CreatePointerMoniker","features":[43]},{"name":"CreateStdProgressIndicator","features":[3,43]},{"name":"CreateUri","features":[43]},{"name":"CreateUriFromMultiByteString","features":[43]},{"name":"CreateUriWithFragment","features":[43]},{"name":"DATADIR","features":[43]},{"name":"DATADIR_GET","features":[43]},{"name":"DATADIR_SET","features":[43]},{"name":"DCOMSCM_ACTIVATION_DISALLOW_UNSECURE_CALL","features":[43]},{"name":"DCOMSCM_ACTIVATION_USE_ALL_AUTHNSERVICES","features":[43]},{"name":"DCOMSCM_PING_DISALLOW_UNSECURE_CALL","features":[43]},{"name":"DCOMSCM_PING_USE_MID_AUTHNSERVICE","features":[43]},{"name":"DCOMSCM_RESOLVE_DISALLOW_UNSECURE_CALL","features":[43]},{"name":"DCOMSCM_RESOLVE_USE_ALL_AUTHNSERVICES","features":[43]},{"name":"DCOM_CALL_CANCELED","features":[43]},{"name":"DCOM_CALL_COMPLETE","features":[43]},{"name":"DCOM_CALL_STATE","features":[43]},{"name":"DCOM_NONE","features":[43]},{"name":"DESCKIND","features":[43]},{"name":"DESCKIND_FUNCDESC","features":[43]},{"name":"DESCKIND_IMPLICITAPPOBJ","features":[43]},{"name":"DESCKIND_MAX","features":[43]},{"name":"DESCKIND_NONE","features":[43]},{"name":"DESCKIND_TYPECOMP","features":[43]},{"name":"DESCKIND_VARDESC","features":[43]},{"name":"DISPATCH_FLAGS","features":[43]},{"name":"DISPATCH_METHOD","features":[43]},{"name":"DISPATCH_PROPERTYGET","features":[43]},{"name":"DISPATCH_PROPERTYPUT","features":[43]},{"name":"DISPATCH_PROPERTYPUTREF","features":[43]},{"name":"DISPPARAMS","features":[3,43,44]},{"name":"DMUS_ERRBASE","features":[43]},{"name":"DVASPECT","features":[43]},{"name":"DVASPECT_CONTENT","features":[43]},{"name":"DVASPECT_DOCPRINT","features":[43]},{"name":"DVASPECT_ICON","features":[43]},{"name":"DVASPECT_OPAQUE","features":[43]},{"name":"DVASPECT_THUMBNAIL","features":[43]},{"name":"DVASPECT_TRANSPARENT","features":[43]},{"name":"DVTARGETDEVICE","features":[43]},{"name":"DWORD_BLOB","features":[43]},{"name":"DWORD_SIZEDARR","features":[43]},{"name":"DcomChannelSetHResult","features":[43]},{"name":"ELEMDESC","features":[3,43,158,44]},{"name":"EOAC_ACCESS_CONTROL","features":[43]},{"name":"EOAC_ANY_AUTHORITY","features":[43]},{"name":"EOAC_APPID","features":[43]},{"name":"EOAC_AUTO_IMPERSONATE","features":[43]},{"name":"EOAC_DEFAULT","features":[43]},{"name":"EOAC_DISABLE_AAA","features":[43]},{"name":"EOAC_DYNAMIC","features":[43]},{"name":"EOAC_DYNAMIC_CLOAKING","features":[43]},{"name":"EOAC_MAKE_FULLSIC","features":[43]},{"name":"EOAC_MUTUAL_AUTH","features":[43]},{"name":"EOAC_NONE","features":[43]},{"name":"EOAC_NO_CUSTOM_MARSHAL","features":[43]},{"name":"EOAC_REQUIRE_FULLSIC","features":[43]},{"name":"EOAC_RESERVED1","features":[43]},{"name":"EOAC_SECURE_REFS","features":[43]},{"name":"EOAC_STATIC_CLOAKING","features":[43]},{"name":"EOLE_AUTHENTICATION_CAPABILITIES","features":[43]},{"name":"EXCEPINFO","features":[43]},{"name":"EXTCONN","features":[43]},{"name":"EXTCONN_CALLABLE","features":[43]},{"name":"EXTCONN_STRONG","features":[43]},{"name":"EXTCONN_WEAK","features":[43]},{"name":"FADF_AUTO","features":[43]},{"name":"FADF_BSTR","features":[43]},{"name":"FADF_DISPATCH","features":[43]},{"name":"FADF_EMBEDDED","features":[43]},{"name":"FADF_FIXEDSIZE","features":[43]},{"name":"FADF_HAVEIID","features":[43]},{"name":"FADF_HAVEVARTYPE","features":[43]},{"name":"FADF_RECORD","features":[43]},{"name":"FADF_RESERVED","features":[43]},{"name":"FADF_STATIC","features":[43]},{"name":"FADF_UNKNOWN","features":[43]},{"name":"FADF_VARIANT","features":[43]},{"name":"FLAGGED_BYTE_BLOB","features":[43]},{"name":"FLAGGED_WORD_BLOB","features":[43]},{"name":"FLAG_STGMEDIUM","features":[3,14,43]},{"name":"FORMATETC","features":[43]},{"name":"FUNCDESC","features":[3,43,158,44]},{"name":"FUNCFLAGS","features":[43]},{"name":"FUNCFLAG_FBINDABLE","features":[43]},{"name":"FUNCFLAG_FDEFAULTBIND","features":[43]},{"name":"FUNCFLAG_FDEFAULTCOLLELEM","features":[43]},{"name":"FUNCFLAG_FDISPLAYBIND","features":[43]},{"name":"FUNCFLAG_FHIDDEN","features":[43]},{"name":"FUNCFLAG_FIMMEDIATEBIND","features":[43]},{"name":"FUNCFLAG_FNONBROWSABLE","features":[43]},{"name":"FUNCFLAG_FREPLACEABLE","features":[43]},{"name":"FUNCFLAG_FREQUESTEDIT","features":[43]},{"name":"FUNCFLAG_FRESTRICTED","features":[43]},{"name":"FUNCFLAG_FSOURCE","features":[43]},{"name":"FUNCFLAG_FUIDEFAULT","features":[43]},{"name":"FUNCFLAG_FUSESGETLASTERROR","features":[43]},{"name":"FUNCKIND","features":[43]},{"name":"FUNC_DISPATCH","features":[43]},{"name":"FUNC_NONVIRTUAL","features":[43]},{"name":"FUNC_PUREVIRTUAL","features":[43]},{"name":"FUNC_STATIC","features":[43]},{"name":"FUNC_VIRTUAL","features":[43]},{"name":"ForcedShutdown","features":[43]},{"name":"GDI_OBJECT","features":[14,43,38]},{"name":"GLOBALOPT_EH_VALUES","features":[43]},{"name":"GLOBALOPT_PROPERTIES","features":[43]},{"name":"GLOBALOPT_RO_FLAGS","features":[43]},{"name":"GLOBALOPT_RPCTP_VALUES","features":[43]},{"name":"GLOBALOPT_UNMARSHALING_POLICY_VALUES","features":[43]},{"name":"GetClassFile","features":[43]},{"name":"GetErrorInfo","features":[43]},{"name":"GetRunningObjectTable","features":[43]},{"name":"HYPER_SIZEDARR","features":[43]},{"name":"IActivationFilter","features":[43]},{"name":"IAddrExclusionControl","features":[43]},{"name":"IAddrTrackingControl","features":[43]},{"name":"IAdviseSink","features":[43]},{"name":"IAdviseSink2","features":[43]},{"name":"IAgileObject","features":[43]},{"name":"IAsyncManager","features":[43]},{"name":"IAsyncRpcChannelBuffer","features":[43]},{"name":"IAuthenticate","features":[43]},{"name":"IAuthenticateEx","features":[43]},{"name":"IBindCtx","features":[43]},{"name":"IBindHost","features":[43]},{"name":"IBindStatusCallback","features":[43]},{"name":"IBindStatusCallbackEx","features":[43]},{"name":"IBinding","features":[43]},{"name":"IBlockingLock","features":[43]},{"name":"ICallFactory","features":[43]},{"name":"ICancelMethodCalls","features":[43]},{"name":"ICatInformation","features":[43]},{"name":"ICatRegister","features":[43]},{"name":"IChannelHook","features":[43]},{"name":"IClassActivator","features":[43]},{"name":"IClassFactory","features":[43]},{"name":"IClientSecurity","features":[43]},{"name":"IComThreadingInfo","features":[43]},{"name":"IConnectionPoint","features":[43]},{"name":"IConnectionPointContainer","features":[43]},{"name":"IContext","features":[43]},{"name":"IContextCallback","features":[43]},{"name":"IDLDESC","features":[43]},{"name":"IDLFLAGS","features":[43]},{"name":"IDLFLAG_FIN","features":[43]},{"name":"IDLFLAG_FLCID","features":[43]},{"name":"IDLFLAG_FOUT","features":[43]},{"name":"IDLFLAG_FRETVAL","features":[43]},{"name":"IDLFLAG_NONE","features":[43]},{"name":"IDataAdviseHolder","features":[43]},{"name":"IDataObject","features":[43]},{"name":"IDispatch","features":[43]},{"name":"IEnumCATEGORYINFO","features":[43]},{"name":"IEnumConnectionPoints","features":[43]},{"name":"IEnumConnections","features":[43]},{"name":"IEnumContextProps","features":[43]},{"name":"IEnumFORMATETC","features":[43]},{"name":"IEnumGUID","features":[43]},{"name":"IEnumMoniker","features":[43]},{"name":"IEnumSTATDATA","features":[43]},{"name":"IEnumString","features":[43]},{"name":"IEnumUnknown","features":[43]},{"name":"IErrorInfo","features":[43]},{"name":"IErrorLog","features":[43]},{"name":"IExternalConnection","features":[43]},{"name":"IFastRundown","features":[43]},{"name":"IForegroundTransfer","features":[43]},{"name":"IGlobalInterfaceTable","features":[43]},{"name":"IGlobalOptions","features":[43]},{"name":"IIDFromString","features":[43]},{"name":"IInitializeSpy","features":[43]},{"name":"IInternalUnknown","features":[43]},{"name":"IMPLTYPEFLAGS","features":[43]},{"name":"IMPLTYPEFLAG_FDEFAULT","features":[43]},{"name":"IMPLTYPEFLAG_FDEFAULTVTABLE","features":[43]},{"name":"IMPLTYPEFLAG_FRESTRICTED","features":[43]},{"name":"IMPLTYPEFLAG_FSOURCE","features":[43]},{"name":"IMachineGlobalObjectTable","features":[43]},{"name":"IMalloc","features":[43]},{"name":"IMallocSpy","features":[43]},{"name":"IMoniker","features":[43]},{"name":"IMultiQI","features":[43]},{"name":"INTERFACEINFO","features":[43]},{"name":"INVOKEKIND","features":[43]},{"name":"INVOKE_FUNC","features":[43]},{"name":"INVOKE_PROPERTYGET","features":[43]},{"name":"INVOKE_PROPERTYPUT","features":[43]},{"name":"INVOKE_PROPERTYPUTREF","features":[43]},{"name":"INoMarshal","features":[43]},{"name":"IOplockStorage","features":[43]},{"name":"IPSFactoryBuffer","features":[43]},{"name":"IPersist","features":[43]},{"name":"IPersistFile","features":[43]},{"name":"IPersistMemory","features":[43]},{"name":"IPersistStream","features":[43]},{"name":"IPersistStreamInit","features":[43]},{"name":"IPipeByte","features":[43]},{"name":"IPipeDouble","features":[43]},{"name":"IPipeLong","features":[43]},{"name":"IProcessInitControl","features":[43]},{"name":"IProcessLock","features":[43]},{"name":"IProgressNotify","features":[43]},{"name":"IROTData","features":[43]},{"name":"IReleaseMarshalBuffers","features":[43]},{"name":"IRpcChannelBuffer","features":[43]},{"name":"IRpcChannelBuffer2","features":[43]},{"name":"IRpcChannelBuffer3","features":[43]},{"name":"IRpcHelper","features":[43]},{"name":"IRpcOptions","features":[43]},{"name":"IRpcProxyBuffer","features":[43]},{"name":"IRpcStubBuffer","features":[43]},{"name":"IRpcSyntaxNegotiate","features":[43]},{"name":"IRunnableObject","features":[43]},{"name":"IRunningObjectTable","features":[43]},{"name":"ISequentialStream","features":[43]},{"name":"IServerSecurity","features":[43]},{"name":"IServiceProvider","features":[43]},{"name":"IStdMarshalInfo","features":[43]},{"name":"IStream","features":[43]},{"name":"ISupportAllowLowerTrustActivation","features":[43]},{"name":"ISupportErrorInfo","features":[43]},{"name":"ISurrogate","features":[43]},{"name":"ISurrogateService","features":[43]},{"name":"ISynchronize","features":[43]},{"name":"ISynchronizeContainer","features":[43]},{"name":"ISynchronizeEvent","features":[43]},{"name":"ISynchronizeHandle","features":[43]},{"name":"ISynchronizeMutex","features":[43]},{"name":"ITimeAndNoticeControl","features":[43]},{"name":"ITypeComp","features":[43]},{"name":"ITypeInfo","features":[43]},{"name":"ITypeInfo2","features":[43]},{"name":"ITypeLib","features":[43]},{"name":"ITypeLib2","features":[43]},{"name":"ITypeLibRegistration","features":[43]},{"name":"ITypeLibRegistrationReader","features":[43]},{"name":"IUnknown","features":[43]},{"name":"IUri","features":[43]},{"name":"IUriBuilder","features":[43]},{"name":"IUrlMon","features":[43]},{"name":"IWaitMultiple","features":[43]},{"name":"IdleShutdown","features":[43]},{"name":"LOCKTYPE","features":[43]},{"name":"LOCK_EXCLUSIVE","features":[43]},{"name":"LOCK_ONLYONCE","features":[43]},{"name":"LOCK_WRITE","features":[43]},{"name":"LPEXCEPFINO_DEFERRED_FILLIN","features":[43]},{"name":"LPFNCANUNLOADNOW","features":[43]},{"name":"LPFNGETCLASSOBJECT","features":[43]},{"name":"LibraryApplication","features":[43]},{"name":"MARSHALINTERFACE_MIN","features":[43]},{"name":"MAXLSN","features":[43]},{"name":"MEMCTX","features":[43]},{"name":"MEMCTX_MACSYSTEM","features":[43]},{"name":"MEMCTX_SAME","features":[43]},{"name":"MEMCTX_SHARED","features":[43]},{"name":"MEMCTX_TASK","features":[43]},{"name":"MEMCTX_UNKNOWN","features":[43]},{"name":"MKRREDUCE","features":[43]},{"name":"MKRREDUCE_ALL","features":[43]},{"name":"MKRREDUCE_ONE","features":[43]},{"name":"MKRREDUCE_THROUGHUSER","features":[43]},{"name":"MKRREDUCE_TOUSER","features":[43]},{"name":"MKSYS","features":[43]},{"name":"MKSYS_ANTIMONIKER","features":[43]},{"name":"MKSYS_CLASSMONIKER","features":[43]},{"name":"MKSYS_FILEMONIKER","features":[43]},{"name":"MKSYS_GENERICCOMPOSITE","features":[43]},{"name":"MKSYS_ITEMMONIKER","features":[43]},{"name":"MKSYS_LUAMONIKER","features":[43]},{"name":"MKSYS_NONE","features":[43]},{"name":"MKSYS_OBJREFMONIKER","features":[43]},{"name":"MKSYS_POINTERMONIKER","features":[43]},{"name":"MKSYS_SESSIONMONIKER","features":[43]},{"name":"MSHCTX","features":[43]},{"name":"MSHCTX_CONTAINER","features":[43]},{"name":"MSHCTX_CROSSCTX","features":[43]},{"name":"MSHCTX_DIFFERENTMACHINE","features":[43]},{"name":"MSHCTX_INPROC","features":[43]},{"name":"MSHCTX_LOCAL","features":[43]},{"name":"MSHCTX_NOSHAREDMEM","features":[43]},{"name":"MSHLFLAGS","features":[43]},{"name":"MSHLFLAGS_NOPING","features":[43]},{"name":"MSHLFLAGS_NORMAL","features":[43]},{"name":"MSHLFLAGS_RESERVED1","features":[43]},{"name":"MSHLFLAGS_RESERVED2","features":[43]},{"name":"MSHLFLAGS_RESERVED3","features":[43]},{"name":"MSHLFLAGS_RESERVED4","features":[43]},{"name":"MSHLFLAGS_TABLESTRONG","features":[43]},{"name":"MSHLFLAGS_TABLEWEAK","features":[43]},{"name":"MULTI_QI","features":[43]},{"name":"MachineGlobalObjectTableRegistrationToken","features":[43]},{"name":"MkParseDisplayName","features":[43]},{"name":"MonikerCommonPrefixWith","features":[43]},{"name":"MonikerRelativePathTo","features":[3,43]},{"name":"PENDINGMSG","features":[43]},{"name":"PENDINGMSG_CANCELCALL","features":[43]},{"name":"PENDINGMSG_WAITDEFPROCESS","features":[43]},{"name":"PENDINGMSG_WAITNOPROCESS","features":[43]},{"name":"PENDINGTYPE","features":[43]},{"name":"PENDINGTYPE_NESTED","features":[43]},{"name":"PENDINGTYPE_TOPLEVEL","features":[43]},{"name":"PFNCONTEXTCALL","features":[43]},{"name":"ProgIDFromCLSID","features":[43]},{"name":"QUERYCONTEXT","features":[43]},{"name":"REGCLS","features":[43]},{"name":"REGCLS_AGILE","features":[43]},{"name":"REGCLS_MULTIPLEUSE","features":[43]},{"name":"REGCLS_MULTI_SEPARATE","features":[43]},{"name":"REGCLS_SINGLEUSE","features":[43]},{"name":"REGCLS_SURROGATE","features":[43]},{"name":"REGCLS_SUSPENDED","features":[43]},{"name":"ROTFLAGS_ALLOWANYCLIENT","features":[43]},{"name":"ROTFLAGS_REGISTRATIONKEEPSALIVE","features":[43]},{"name":"ROTREGFLAGS_ALLOWANYCLIENT","features":[43]},{"name":"ROT_FLAGS","features":[43]},{"name":"RPCOLEMESSAGE","features":[43]},{"name":"RPCOPT_PROPERTIES","features":[43]},{"name":"RPCOPT_SERVER_LOCALITY_VALUES","features":[43]},{"name":"RPC_C_AUTHN_LEVEL","features":[43]},{"name":"RPC_C_AUTHN_LEVEL_CALL","features":[43]},{"name":"RPC_C_AUTHN_LEVEL_CONNECT","features":[43]},{"name":"RPC_C_AUTHN_LEVEL_DEFAULT","features":[43]},{"name":"RPC_C_AUTHN_LEVEL_NONE","features":[43]},{"name":"RPC_C_AUTHN_LEVEL_PKT","features":[43]},{"name":"RPC_C_AUTHN_LEVEL_PKT_INTEGRITY","features":[43]},{"name":"RPC_C_AUTHN_LEVEL_PKT_PRIVACY","features":[43]},{"name":"RPC_C_IMP_LEVEL","features":[43]},{"name":"RPC_C_IMP_LEVEL_ANONYMOUS","features":[43]},{"name":"RPC_C_IMP_LEVEL_DEFAULT","features":[43]},{"name":"RPC_C_IMP_LEVEL_DELEGATE","features":[43]},{"name":"RPC_C_IMP_LEVEL_IDENTIFY","features":[43]},{"name":"RPC_C_IMP_LEVEL_IMPERSONATE","features":[43]},{"name":"RemSTGMEDIUM","features":[43]},{"name":"SAFEARRAY","features":[43]},{"name":"SAFEARRAYBOUND","features":[43]},{"name":"SChannelHookCallInfo","features":[43]},{"name":"SD_ACCESSPERMISSIONS","features":[43]},{"name":"SD_ACCESSRESTRICTIONS","features":[43]},{"name":"SD_LAUNCHPERMISSIONS","features":[43]},{"name":"SD_LAUNCHRESTRICTIONS","features":[43]},{"name":"SERVERCALL","features":[43]},{"name":"SERVERCALL_ISHANDLED","features":[43]},{"name":"SERVERCALL_REJECTED","features":[43]},{"name":"SERVERCALL_RETRYLATER","features":[43]},{"name":"SERVER_LOCALITY_MACHINE_LOCAL","features":[43]},{"name":"SERVER_LOCALITY_PROCESS_LOCAL","features":[43]},{"name":"SERVER_LOCALITY_REMOTE","features":[43]},{"name":"SOLE_AUTHENTICATION_INFO","features":[43]},{"name":"SOLE_AUTHENTICATION_LIST","features":[43]},{"name":"SOLE_AUTHENTICATION_SERVICE","features":[43]},{"name":"STATDATA","features":[43]},{"name":"STATFLAG","features":[43]},{"name":"STATFLAG_DEFAULT","features":[43]},{"name":"STATFLAG_NONAME","features":[43]},{"name":"STATFLAG_NOOPEN","features":[43]},{"name":"STATSTG","features":[3,43]},{"name":"STGC","features":[43]},{"name":"STGC_CONSOLIDATE","features":[43]},{"name":"STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE","features":[43]},{"name":"STGC_DEFAULT","features":[43]},{"name":"STGC_ONLYIFCURRENT","features":[43]},{"name":"STGC_OVERWRITE","features":[43]},{"name":"STGM","features":[43]},{"name":"STGMEDIUM","features":[3,14,43]},{"name":"STGM_CONVERT","features":[43]},{"name":"STGM_CREATE","features":[43]},{"name":"STGM_DELETEONRELEASE","features":[43]},{"name":"STGM_DIRECT","features":[43]},{"name":"STGM_DIRECT_SWMR","features":[43]},{"name":"STGM_FAILIFTHERE","features":[43]},{"name":"STGM_NOSCRATCH","features":[43]},{"name":"STGM_NOSNAPSHOT","features":[43]},{"name":"STGM_PRIORITY","features":[43]},{"name":"STGM_READ","features":[43]},{"name":"STGM_READWRITE","features":[43]},{"name":"STGM_SHARE_DENY_NONE","features":[43]},{"name":"STGM_SHARE_DENY_READ","features":[43]},{"name":"STGM_SHARE_DENY_WRITE","features":[43]},{"name":"STGM_SHARE_EXCLUSIVE","features":[43]},{"name":"STGM_SIMPLE","features":[43]},{"name":"STGM_TRANSACTED","features":[43]},{"name":"STGM_WRITE","features":[43]},{"name":"STGTY","features":[43]},{"name":"STGTY_LOCKBYTES","features":[43]},{"name":"STGTY_PROPERTY","features":[43]},{"name":"STGTY_REPEAT","features":[43]},{"name":"STGTY_STORAGE","features":[43]},{"name":"STGTY_STREAM","features":[43]},{"name":"STG_LAYOUT_INTERLEAVED","features":[43]},{"name":"STG_LAYOUT_SEQUENTIAL","features":[43]},{"name":"STG_TOEND","features":[43]},{"name":"STREAM_SEEK","features":[43]},{"name":"STREAM_SEEK_CUR","features":[43]},{"name":"STREAM_SEEK_END","features":[43]},{"name":"STREAM_SEEK_SET","features":[43]},{"name":"SYSKIND","features":[43]},{"name":"SYS_MAC","features":[43]},{"name":"SYS_WIN16","features":[43]},{"name":"SYS_WIN32","features":[43]},{"name":"SYS_WIN64","features":[43]},{"name":"ServerApplication","features":[43]},{"name":"SetErrorInfo","features":[43]},{"name":"ShutdownType","features":[43]},{"name":"StorageLayout","features":[43]},{"name":"StringFromCLSID","features":[43]},{"name":"StringFromGUID2","features":[43]},{"name":"StringFromIID","features":[43]},{"name":"THDTYPE","features":[43]},{"name":"THDTYPE_BLOCKMESSAGES","features":[43]},{"name":"THDTYPE_PROCESSMESSAGES","features":[43]},{"name":"TKIND_ALIAS","features":[43]},{"name":"TKIND_COCLASS","features":[43]},{"name":"TKIND_DISPATCH","features":[43]},{"name":"TKIND_ENUM","features":[43]},{"name":"TKIND_INTERFACE","features":[43]},{"name":"TKIND_MAX","features":[43]},{"name":"TKIND_MODULE","features":[43]},{"name":"TKIND_RECORD","features":[43]},{"name":"TKIND_UNION","features":[43]},{"name":"TLIBATTR","features":[43]},{"name":"TYMED","features":[43]},{"name":"TYMED_ENHMF","features":[43]},{"name":"TYMED_FILE","features":[43]},{"name":"TYMED_GDI","features":[43]},{"name":"TYMED_HGLOBAL","features":[43]},{"name":"TYMED_ISTORAGE","features":[43]},{"name":"TYMED_ISTREAM","features":[43]},{"name":"TYMED_MFPICT","features":[43]},{"name":"TYMED_NULL","features":[43]},{"name":"TYPEATTR","features":[43,158,44]},{"name":"TYPEDESC","features":[43,158,44]},{"name":"TYPEKIND","features":[43]},{"name":"TYSPEC","features":[43]},{"name":"TYSPEC_CLSID","features":[43]},{"name":"TYSPEC_FILEEXT","features":[43]},{"name":"TYSPEC_FILENAME","features":[43]},{"name":"TYSPEC_MIMETYPE","features":[43]},{"name":"TYSPEC_OBJECTID","features":[43]},{"name":"TYSPEC_PACKAGENAME","features":[43]},{"name":"TYSPEC_PROGID","features":[43]},{"name":"URI_CREATE_FLAGS","features":[43]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME","features":[43]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME","features":[43]},{"name":"Uri_CREATE_ALLOW_RELATIVE","features":[43]},{"name":"Uri_CREATE_CANONICALIZE","features":[43]},{"name":"Uri_CREATE_CANONICALIZE_ABSOLUTE","features":[43]},{"name":"Uri_CREATE_CRACK_UNKNOWN_SCHEMES","features":[43]},{"name":"Uri_CREATE_DECODE_EXTRA_INFO","features":[43]},{"name":"Uri_CREATE_FILE_USE_DOS_PATH","features":[43]},{"name":"Uri_CREATE_IE_SETTINGS","features":[43]},{"name":"Uri_CREATE_NOFRAG","features":[43]},{"name":"Uri_CREATE_NORMALIZE_INTL_CHARACTERS","features":[43]},{"name":"Uri_CREATE_NO_CANONICALIZE","features":[43]},{"name":"Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES","features":[43]},{"name":"Uri_CREATE_NO_DECODE_EXTRA_INFO","features":[43]},{"name":"Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS","features":[43]},{"name":"Uri_CREATE_NO_IE_SETTINGS","features":[43]},{"name":"Uri_CREATE_NO_PRE_PROCESS_HTML_URI","features":[43]},{"name":"Uri_CREATE_PRE_PROCESS_HTML_URI","features":[43]},{"name":"Uri_PROPERTY","features":[43]},{"name":"Uri_PROPERTY_ABSOLUTE_URI","features":[43]},{"name":"Uri_PROPERTY_AUTHORITY","features":[43]},{"name":"Uri_PROPERTY_DISPLAY_URI","features":[43]},{"name":"Uri_PROPERTY_DOMAIN","features":[43]},{"name":"Uri_PROPERTY_DWORD_LAST","features":[43]},{"name":"Uri_PROPERTY_DWORD_START","features":[43]},{"name":"Uri_PROPERTY_EXTENSION","features":[43]},{"name":"Uri_PROPERTY_FRAGMENT","features":[43]},{"name":"Uri_PROPERTY_HOST","features":[43]},{"name":"Uri_PROPERTY_HOST_TYPE","features":[43]},{"name":"Uri_PROPERTY_PASSWORD","features":[43]},{"name":"Uri_PROPERTY_PATH","features":[43]},{"name":"Uri_PROPERTY_PATH_AND_QUERY","features":[43]},{"name":"Uri_PROPERTY_PORT","features":[43]},{"name":"Uri_PROPERTY_QUERY","features":[43]},{"name":"Uri_PROPERTY_RAW_URI","features":[43]},{"name":"Uri_PROPERTY_SCHEME","features":[43]},{"name":"Uri_PROPERTY_SCHEME_NAME","features":[43]},{"name":"Uri_PROPERTY_STRING_LAST","features":[43]},{"name":"Uri_PROPERTY_STRING_START","features":[43]},{"name":"Uri_PROPERTY_USER_INFO","features":[43]},{"name":"Uri_PROPERTY_USER_NAME","features":[43]},{"name":"Uri_PROPERTY_ZONE","features":[43]},{"name":"VARDESC","features":[3,43,158,44]},{"name":"VARFLAGS","features":[43]},{"name":"VARFLAG_FBINDABLE","features":[43]},{"name":"VARFLAG_FDEFAULTBIND","features":[43]},{"name":"VARFLAG_FDEFAULTCOLLELEM","features":[43]},{"name":"VARFLAG_FDISPLAYBIND","features":[43]},{"name":"VARFLAG_FHIDDEN","features":[43]},{"name":"VARFLAG_FIMMEDIATEBIND","features":[43]},{"name":"VARFLAG_FNONBROWSABLE","features":[43]},{"name":"VARFLAG_FREADONLY","features":[43]},{"name":"VARFLAG_FREPLACEABLE","features":[43]},{"name":"VARFLAG_FREQUESTEDIT","features":[43]},{"name":"VARFLAG_FRESTRICTED","features":[43]},{"name":"VARFLAG_FSOURCE","features":[43]},{"name":"VARFLAG_FUIDEFAULT","features":[43]},{"name":"VARKIND","features":[43]},{"name":"VAR_CONST","features":[43]},{"name":"VAR_DISPATCH","features":[43]},{"name":"VAR_PERINSTANCE","features":[43]},{"name":"VAR_STATIC","features":[43]},{"name":"WORD_BLOB","features":[43]},{"name":"WORD_SIZEDARR","features":[43]},{"name":"uCLSSPEC","features":[43]},{"name":"userFLAG_STGMEDIUM","features":[14,43,38]},{"name":"userSTGMEDIUM","features":[14,43,38]}],"540":[{"name":"BSTR_UserFree","features":[159]},{"name":"BSTR_UserFree64","features":[159]},{"name":"BSTR_UserMarshal","features":[159]},{"name":"BSTR_UserMarshal64","features":[159]},{"name":"BSTR_UserSize","features":[159]},{"name":"BSTR_UserSize64","features":[159]},{"name":"BSTR_UserUnmarshal","features":[159]},{"name":"BSTR_UserUnmarshal64","features":[159]},{"name":"CLIPFORMAT_UserFree","features":[159]},{"name":"CLIPFORMAT_UserFree64","features":[159]},{"name":"CLIPFORMAT_UserMarshal","features":[159]},{"name":"CLIPFORMAT_UserMarshal64","features":[159]},{"name":"CLIPFORMAT_UserSize","features":[159]},{"name":"CLIPFORMAT_UserSize64","features":[159]},{"name":"CLIPFORMAT_UserUnmarshal","features":[159]},{"name":"CLIPFORMAT_UserUnmarshal64","features":[159]},{"name":"CoGetMarshalSizeMax","features":[159]},{"name":"CoGetStandardMarshal","features":[159]},{"name":"CoGetStdMarshalEx","features":[159]},{"name":"CoMarshalHresult","features":[159]},{"name":"CoMarshalInterThreadInterfaceInStream","features":[159]},{"name":"CoMarshalInterface","features":[159]},{"name":"CoReleaseMarshalData","features":[159]},{"name":"CoUnmarshalHresult","features":[159]},{"name":"CoUnmarshalInterface","features":[159]},{"name":"HACCEL_UserFree","features":[159,52]},{"name":"HACCEL_UserFree64","features":[159,52]},{"name":"HACCEL_UserMarshal","features":[159,52]},{"name":"HACCEL_UserMarshal64","features":[159,52]},{"name":"HACCEL_UserSize","features":[159,52]},{"name":"HACCEL_UserSize64","features":[159,52]},{"name":"HACCEL_UserUnmarshal","features":[159,52]},{"name":"HACCEL_UserUnmarshal64","features":[159,52]},{"name":"HBITMAP_UserFree","features":[14,159]},{"name":"HBITMAP_UserFree64","features":[14,159]},{"name":"HBITMAP_UserMarshal","features":[14,159]},{"name":"HBITMAP_UserMarshal64","features":[14,159]},{"name":"HBITMAP_UserSize","features":[14,159]},{"name":"HBITMAP_UserSize64","features":[14,159]},{"name":"HBITMAP_UserUnmarshal","features":[14,159]},{"name":"HBITMAP_UserUnmarshal64","features":[14,159]},{"name":"HDC_UserFree","features":[14,159]},{"name":"HDC_UserFree64","features":[14,159]},{"name":"HDC_UserMarshal","features":[14,159]},{"name":"HDC_UserMarshal64","features":[14,159]},{"name":"HDC_UserSize","features":[14,159]},{"name":"HDC_UserSize64","features":[14,159]},{"name":"HDC_UserUnmarshal","features":[14,159]},{"name":"HDC_UserUnmarshal64","features":[14,159]},{"name":"HGLOBAL_UserFree","features":[3,159]},{"name":"HGLOBAL_UserFree64","features":[3,159]},{"name":"HGLOBAL_UserMarshal","features":[3,159]},{"name":"HGLOBAL_UserMarshal64","features":[3,159]},{"name":"HGLOBAL_UserSize","features":[3,159]},{"name":"HGLOBAL_UserSize64","features":[3,159]},{"name":"HGLOBAL_UserUnmarshal","features":[3,159]},{"name":"HGLOBAL_UserUnmarshal64","features":[3,159]},{"name":"HICON_UserFree","features":[159,52]},{"name":"HICON_UserFree64","features":[159,52]},{"name":"HICON_UserMarshal","features":[159,52]},{"name":"HICON_UserMarshal64","features":[159,52]},{"name":"HICON_UserSize","features":[159,52]},{"name":"HICON_UserSize64","features":[159,52]},{"name":"HICON_UserUnmarshal","features":[159,52]},{"name":"HICON_UserUnmarshal64","features":[159,52]},{"name":"HMENU_UserFree","features":[159,52]},{"name":"HMENU_UserFree64","features":[159,52]},{"name":"HMENU_UserMarshal","features":[159,52]},{"name":"HMENU_UserMarshal64","features":[159,52]},{"name":"HMENU_UserSize","features":[159,52]},{"name":"HMENU_UserSize64","features":[159,52]},{"name":"HMENU_UserUnmarshal","features":[159,52]},{"name":"HMENU_UserUnmarshal64","features":[159,52]},{"name":"HPALETTE_UserFree","features":[14,159]},{"name":"HPALETTE_UserFree64","features":[14,159]},{"name":"HPALETTE_UserMarshal","features":[14,159]},{"name":"HPALETTE_UserMarshal64","features":[14,159]},{"name":"HPALETTE_UserSize","features":[14,159]},{"name":"HPALETTE_UserSize64","features":[14,159]},{"name":"HPALETTE_UserUnmarshal","features":[14,159]},{"name":"HPALETTE_UserUnmarshal64","features":[14,159]},{"name":"HWND_UserFree","features":[3,159]},{"name":"HWND_UserFree64","features":[3,159]},{"name":"HWND_UserMarshal","features":[3,159]},{"name":"HWND_UserMarshal64","features":[3,159]},{"name":"HWND_UserSize","features":[3,159]},{"name":"HWND_UserSize64","features":[3,159]},{"name":"HWND_UserUnmarshal","features":[3,159]},{"name":"HWND_UserUnmarshal64","features":[3,159]},{"name":"IMarshal","features":[159]},{"name":"IMarshal2","features":[159]},{"name":"IMarshalingStream","features":[159]},{"name":"LPSAFEARRAY_UserFree","features":[159]},{"name":"LPSAFEARRAY_UserFree64","features":[159]},{"name":"LPSAFEARRAY_UserMarshal","features":[159]},{"name":"LPSAFEARRAY_UserMarshal64","features":[159]},{"name":"LPSAFEARRAY_UserSize","features":[159]},{"name":"LPSAFEARRAY_UserSize64","features":[159]},{"name":"LPSAFEARRAY_UserUnmarshal","features":[159]},{"name":"LPSAFEARRAY_UserUnmarshal64","features":[159]},{"name":"SMEXF_HANDLER","features":[159]},{"name":"SMEXF_SERVER","features":[159]},{"name":"SNB_UserFree","features":[159]},{"name":"SNB_UserFree64","features":[159]},{"name":"SNB_UserMarshal","features":[159]},{"name":"SNB_UserMarshal64","features":[159]},{"name":"SNB_UserSize","features":[159]},{"name":"SNB_UserSize64","features":[159]},{"name":"SNB_UserUnmarshal","features":[159]},{"name":"SNB_UserUnmarshal64","features":[159]},{"name":"STDMSHLFLAGS","features":[159]},{"name":"STGMEDIUM_UserFree","features":[3,14,159]},{"name":"STGMEDIUM_UserFree64","features":[3,14,159]},{"name":"STGMEDIUM_UserMarshal","features":[3,14,159]},{"name":"STGMEDIUM_UserMarshal64","features":[3,14,159]},{"name":"STGMEDIUM_UserSize","features":[3,14,159]},{"name":"STGMEDIUM_UserSize64","features":[3,14,159]},{"name":"STGMEDIUM_UserUnmarshal","features":[3,14,159]},{"name":"STGMEDIUM_UserUnmarshal64","features":[3,14,159]}],"541":[{"name":"BSTRBLOB","features":[65]},{"name":"CABOOL","features":[3,65]},{"name":"CABSTR","features":[65]},{"name":"CABSTRBLOB","features":[65]},{"name":"CAC","features":[65]},{"name":"CACLIPDATA","features":[65]},{"name":"CACLSID","features":[65]},{"name":"CACY","features":[65]},{"name":"CADATE","features":[65]},{"name":"CADBL","features":[65]},{"name":"CAFILETIME","features":[3,65]},{"name":"CAFLT","features":[65]},{"name":"CAH","features":[65]},{"name":"CAI","features":[65]},{"name":"CAL","features":[65]},{"name":"CALPSTR","features":[65]},{"name":"CALPWSTR","features":[65]},{"name":"CAPROPVARIANT","features":[3,65,44]},{"name":"CASCODE","features":[65]},{"name":"CAUB","features":[65]},{"name":"CAUH","features":[65]},{"name":"CAUI","features":[65]},{"name":"CAUL","features":[65]},{"name":"CCH_MAX_PROPSTG_NAME","features":[65]},{"name":"CLIPDATA","features":[65]},{"name":"CWCSTORAGENAME","features":[65]},{"name":"ClearPropVariantArray","features":[3,65,44]},{"name":"CoGetInstanceFromFile","features":[65]},{"name":"CoGetInstanceFromIStorage","features":[65]},{"name":"CoGetInterfaceAndReleaseStream","features":[65]},{"name":"CreateILockBytesOnHGlobal","features":[3,65]},{"name":"CreateStreamOnHGlobal","features":[3,65]},{"name":"FmtIdToPropStgName","features":[65]},{"name":"FreePropVariantArray","features":[3,65,44]},{"name":"GetConvertStg","features":[65]},{"name":"GetHGlobalFromILockBytes","features":[3,65]},{"name":"GetHGlobalFromStream","features":[3,65]},{"name":"IDirectWriterLock","features":[65]},{"name":"IEnumSTATPROPSETSTG","features":[65]},{"name":"IEnumSTATPROPSTG","features":[65]},{"name":"IEnumSTATSTG","features":[65]},{"name":"IFillLockBytes","features":[65]},{"name":"ILayoutStorage","features":[65]},{"name":"ILockBytes","features":[65]},{"name":"IMemoryAllocator","features":[65]},{"name":"IPersistStorage","features":[65]},{"name":"IPropertyBag","features":[65]},{"name":"IPropertyBag2","features":[65]},{"name":"IPropertySetStorage","features":[65]},{"name":"IPropertyStorage","features":[65]},{"name":"IRootStorage","features":[65]},{"name":"IStorage","features":[65]},{"name":"InitPropVariantFromBooleanVector","features":[3,65,44]},{"name":"InitPropVariantFromBuffer","features":[3,65,44]},{"name":"InitPropVariantFromCLSID","features":[3,65,44]},{"name":"InitPropVariantFromDoubleVector","features":[3,65,44]},{"name":"InitPropVariantFromFileTime","features":[3,65,44]},{"name":"InitPropVariantFromFileTimeVector","features":[3,65,44]},{"name":"InitPropVariantFromGUIDAsString","features":[3,65,44]},{"name":"InitPropVariantFromInt16Vector","features":[3,65,44]},{"name":"InitPropVariantFromInt32Vector","features":[3,65,44]},{"name":"InitPropVariantFromInt64Vector","features":[3,65,44]},{"name":"InitPropVariantFromPropVariantVectorElem","features":[3,65,44]},{"name":"InitPropVariantFromResource","features":[3,65,44]},{"name":"InitPropVariantFromStringAsVector","features":[3,65,44]},{"name":"InitPropVariantFromStringVector","features":[3,65,44]},{"name":"InitPropVariantFromUInt16Vector","features":[3,65,44]},{"name":"InitPropVariantFromUInt32Vector","features":[3,65,44]},{"name":"InitPropVariantFromUInt64Vector","features":[3,65,44]},{"name":"InitPropVariantVectorFromPropVariant","features":[3,65,44]},{"name":"OLESTREAM","features":[65]},{"name":"OLESTREAMVTBL","features":[65]},{"name":"OleConvertIStorageToOLESTREAM","features":[65]},{"name":"OleConvertIStorageToOLESTREAMEx","features":[3,14,65]},{"name":"OleConvertOLESTREAMToIStorage","features":[65]},{"name":"OleConvertOLESTREAMToIStorageEx","features":[3,14,65]},{"name":"PIDDI_THUMBNAIL","features":[65]},{"name":"PIDDSI_BYTECOUNT","features":[65]},{"name":"PIDDSI_CATEGORY","features":[65]},{"name":"PIDDSI_COMPANY","features":[65]},{"name":"PIDDSI_DOCPARTS","features":[65]},{"name":"PIDDSI_HEADINGPAIR","features":[65]},{"name":"PIDDSI_HIDDENCOUNT","features":[65]},{"name":"PIDDSI_LINECOUNT","features":[65]},{"name":"PIDDSI_LINKSDIRTY","features":[65]},{"name":"PIDDSI_MANAGER","features":[65]},{"name":"PIDDSI_MMCLIPCOUNT","features":[65]},{"name":"PIDDSI_NOTECOUNT","features":[65]},{"name":"PIDDSI_PARCOUNT","features":[65]},{"name":"PIDDSI_PRESFORMAT","features":[65]},{"name":"PIDDSI_SCALE","features":[65]},{"name":"PIDDSI_SLIDECOUNT","features":[65]},{"name":"PIDMSI_COPYRIGHT","features":[65]},{"name":"PIDMSI_EDITOR","features":[65]},{"name":"PIDMSI_OWNER","features":[65]},{"name":"PIDMSI_PRODUCTION","features":[65]},{"name":"PIDMSI_PROJECT","features":[65]},{"name":"PIDMSI_RATING","features":[65]},{"name":"PIDMSI_SEQUENCE_NO","features":[65]},{"name":"PIDMSI_SOURCE","features":[65]},{"name":"PIDMSI_STATUS","features":[65]},{"name":"PIDMSI_STATUS_DRAFT","features":[65]},{"name":"PIDMSI_STATUS_EDIT","features":[65]},{"name":"PIDMSI_STATUS_FINAL","features":[65]},{"name":"PIDMSI_STATUS_INPROGRESS","features":[65]},{"name":"PIDMSI_STATUS_NEW","features":[65]},{"name":"PIDMSI_STATUS_NORMAL","features":[65]},{"name":"PIDMSI_STATUS_OTHER","features":[65]},{"name":"PIDMSI_STATUS_PRELIM","features":[65]},{"name":"PIDMSI_STATUS_PROOF","features":[65]},{"name":"PIDMSI_STATUS_REVIEW","features":[65]},{"name":"PIDMSI_STATUS_VALUE","features":[65]},{"name":"PIDMSI_SUPPLIER","features":[65]},{"name":"PIDSI_APPNAME","features":[65]},{"name":"PIDSI_AUTHOR","features":[65]},{"name":"PIDSI_CHARCOUNT","features":[65]},{"name":"PIDSI_COMMENTS","features":[65]},{"name":"PIDSI_CREATE_DTM","features":[65]},{"name":"PIDSI_DOC_SECURITY","features":[65]},{"name":"PIDSI_EDITTIME","features":[65]},{"name":"PIDSI_KEYWORDS","features":[65]},{"name":"PIDSI_LASTAUTHOR","features":[65]},{"name":"PIDSI_LASTPRINTED","features":[65]},{"name":"PIDSI_LASTSAVE_DTM","features":[65]},{"name":"PIDSI_PAGECOUNT","features":[65]},{"name":"PIDSI_REVNUMBER","features":[65]},{"name":"PIDSI_SUBJECT","features":[65]},{"name":"PIDSI_TEMPLATE","features":[65]},{"name":"PIDSI_THUMBNAIL","features":[65]},{"name":"PIDSI_TITLE","features":[65]},{"name":"PIDSI_WORDCOUNT","features":[65]},{"name":"PID_BEHAVIOR","features":[65]},{"name":"PID_CODEPAGE","features":[65]},{"name":"PID_DICTIONARY","features":[65]},{"name":"PID_FIRST_NAME_DEFAULT","features":[65]},{"name":"PID_FIRST_USABLE","features":[65]},{"name":"PID_ILLEGAL","features":[65]},{"name":"PID_LOCALE","features":[65]},{"name":"PID_MAX_READONLY","features":[65]},{"name":"PID_MIN_READONLY","features":[65]},{"name":"PID_MODIFY_TIME","features":[65]},{"name":"PID_SECURITY","features":[65]},{"name":"PROPBAG2","features":[65,44]},{"name":"PROPSETFLAG_ANSI","features":[65]},{"name":"PROPSETFLAG_CASE_SENSITIVE","features":[65]},{"name":"PROPSETFLAG_DEFAULT","features":[65]},{"name":"PROPSETFLAG_NONSIMPLE","features":[65]},{"name":"PROPSETFLAG_UNBUFFERED","features":[65]},{"name":"PROPSETHDR_OSVERSION_UNKNOWN","features":[65]},{"name":"PROPSET_BEHAVIOR_CASE_SENSITIVE","features":[65]},{"name":"PROPSPEC","features":[65]},{"name":"PROPSPEC_KIND","features":[65]},{"name":"PROPVARIANT","features":[3,65,44]},{"name":"PROPVAR_CHANGE_FLAGS","features":[65]},{"name":"PROPVAR_COMPARE_FLAGS","features":[65]},{"name":"PROPVAR_COMPARE_UNIT","features":[65]},{"name":"PRSPEC_INVALID","features":[65]},{"name":"PRSPEC_LPWSTR","features":[65]},{"name":"PRSPEC_PROPID","features":[65]},{"name":"PVCF_DEFAULT","features":[65]},{"name":"PVCF_DIGITSASNUMBERS_CASESENSITIVE","features":[65]},{"name":"PVCF_TREATEMPTYASGREATERTHAN","features":[65]},{"name":"PVCF_USESTRCMP","features":[65]},{"name":"PVCF_USESTRCMPC","features":[65]},{"name":"PVCF_USESTRCMPI","features":[65]},{"name":"PVCF_USESTRCMPIC","features":[65]},{"name":"PVCHF_ALPHABOOL","features":[65]},{"name":"PVCHF_DEFAULT","features":[65]},{"name":"PVCHF_LOCALBOOL","features":[65]},{"name":"PVCHF_NOHEXSTRING","features":[65]},{"name":"PVCHF_NOUSEROVERRIDE","features":[65]},{"name":"PVCHF_NOVALUEPROP","features":[65]},{"name":"PVCU_DAY","features":[65]},{"name":"PVCU_DEFAULT","features":[65]},{"name":"PVCU_HOUR","features":[65]},{"name":"PVCU_MINUTE","features":[65]},{"name":"PVCU_MONTH","features":[65]},{"name":"PVCU_SECOND","features":[65]},{"name":"PVCU_YEAR","features":[65]},{"name":"PropStgNameToFmtId","features":[65]},{"name":"PropVariantChangeType","features":[3,65,44]},{"name":"PropVariantClear","features":[3,65,44]},{"name":"PropVariantCompareEx","features":[3,65,44]},{"name":"PropVariantCopy","features":[3,65,44]},{"name":"PropVariantGetBooleanElem","features":[3,65,44]},{"name":"PropVariantGetDoubleElem","features":[3,65,44]},{"name":"PropVariantGetElementCount","features":[3,65,44]},{"name":"PropVariantGetFileTimeElem","features":[3,65,44]},{"name":"PropVariantGetInt16Elem","features":[3,65,44]},{"name":"PropVariantGetInt32Elem","features":[3,65,44]},{"name":"PropVariantGetInt64Elem","features":[3,65,44]},{"name":"PropVariantGetStringElem","features":[3,65,44]},{"name":"PropVariantGetUInt16Elem","features":[3,65,44]},{"name":"PropVariantGetUInt32Elem","features":[3,65,44]},{"name":"PropVariantGetUInt64Elem","features":[3,65,44]},{"name":"PropVariantToBSTR","features":[3,65,44]},{"name":"PropVariantToBoolean","features":[3,65,44]},{"name":"PropVariantToBooleanVector","features":[3,65,44]},{"name":"PropVariantToBooleanVectorAlloc","features":[3,65,44]},{"name":"PropVariantToBooleanWithDefault","features":[3,65,44]},{"name":"PropVariantToBuffer","features":[3,65,44]},{"name":"PropVariantToDouble","features":[3,65,44]},{"name":"PropVariantToDoubleVector","features":[3,65,44]},{"name":"PropVariantToDoubleVectorAlloc","features":[3,65,44]},{"name":"PropVariantToDoubleWithDefault","features":[3,65,44]},{"name":"PropVariantToFileTime","features":[3,65,44]},{"name":"PropVariantToFileTimeVector","features":[3,65,44]},{"name":"PropVariantToFileTimeVectorAlloc","features":[3,65,44]},{"name":"PropVariantToGUID","features":[3,65,44]},{"name":"PropVariantToInt16","features":[3,65,44]},{"name":"PropVariantToInt16Vector","features":[3,65,44]},{"name":"PropVariantToInt16VectorAlloc","features":[3,65,44]},{"name":"PropVariantToInt16WithDefault","features":[3,65,44]},{"name":"PropVariantToInt32","features":[3,65,44]},{"name":"PropVariantToInt32Vector","features":[3,65,44]},{"name":"PropVariantToInt32VectorAlloc","features":[3,65,44]},{"name":"PropVariantToInt32WithDefault","features":[3,65,44]},{"name":"PropVariantToInt64","features":[3,65,44]},{"name":"PropVariantToInt64Vector","features":[3,65,44]},{"name":"PropVariantToInt64VectorAlloc","features":[3,65,44]},{"name":"PropVariantToInt64WithDefault","features":[3,65,44]},{"name":"PropVariantToString","features":[3,65,44]},{"name":"PropVariantToStringAlloc","features":[3,65,44]},{"name":"PropVariantToStringVector","features":[3,65,44]},{"name":"PropVariantToStringVectorAlloc","features":[3,65,44]},{"name":"PropVariantToStringWithDefault","features":[3,65,44]},{"name":"PropVariantToUInt16","features":[3,65,44]},{"name":"PropVariantToUInt16Vector","features":[3,65,44]},{"name":"PropVariantToUInt16VectorAlloc","features":[3,65,44]},{"name":"PropVariantToUInt16WithDefault","features":[3,65,44]},{"name":"PropVariantToUInt32","features":[3,65,44]},{"name":"PropVariantToUInt32Vector","features":[3,65,44]},{"name":"PropVariantToUInt32VectorAlloc","features":[3,65,44]},{"name":"PropVariantToUInt32WithDefault","features":[3,65,44]},{"name":"PropVariantToUInt64","features":[3,65,44]},{"name":"PropVariantToUInt64Vector","features":[3,65,44]},{"name":"PropVariantToUInt64VectorAlloc","features":[3,65,44]},{"name":"PropVariantToUInt64WithDefault","features":[3,65,44]},{"name":"PropVariantToVariant","features":[3,65,44]},{"name":"PropVariantToWinRTPropertyValue","features":[3,65,44]},{"name":"ReadClassStg","features":[65]},{"name":"ReadClassStm","features":[65]},{"name":"ReadFmtUserTypeStg","features":[65]},{"name":"RemSNB","features":[65]},{"name":"SERIALIZEDPROPERTYVALUE","features":[65]},{"name":"STATPROPSETSTG","features":[3,65]},{"name":"STATPROPSTG","features":[65,44]},{"name":"STGFMT","features":[65]},{"name":"STGFMT_ANY","features":[65]},{"name":"STGFMT_DOCFILE","features":[65]},{"name":"STGFMT_DOCUMENT","features":[65]},{"name":"STGFMT_FILE","features":[65]},{"name":"STGFMT_NATIVE","features":[65]},{"name":"STGFMT_STORAGE","features":[65]},{"name":"STGMOVE","features":[65]},{"name":"STGMOVE_COPY","features":[65]},{"name":"STGMOVE_MOVE","features":[65]},{"name":"STGMOVE_SHALLOWCOPY","features":[65]},{"name":"STGOPTIONS","features":[65]},{"name":"STGOPTIONS_VERSION","features":[65]},{"name":"SetConvertStg","features":[3,65]},{"name":"StgConvertPropertyToVariant","features":[3,65,44]},{"name":"StgConvertVariantToProperty","features":[3,65,44]},{"name":"StgCreateDocfile","features":[65]},{"name":"StgCreateDocfileOnILockBytes","features":[65]},{"name":"StgCreatePropSetStg","features":[65]},{"name":"StgCreatePropStg","features":[65]},{"name":"StgCreateStorageEx","features":[6,65]},{"name":"StgDeserializePropVariant","features":[3,65,44]},{"name":"StgGetIFillLockBytesOnFile","features":[65]},{"name":"StgGetIFillLockBytesOnILockBytes","features":[65]},{"name":"StgIsStorageFile","features":[65]},{"name":"StgIsStorageILockBytes","features":[65]},{"name":"StgOpenAsyncDocfileOnIFillLockBytes","features":[65]},{"name":"StgOpenLayoutDocfile","features":[65]},{"name":"StgOpenPropStg","features":[65]},{"name":"StgOpenStorage","features":[65]},{"name":"StgOpenStorageEx","features":[6,65]},{"name":"StgOpenStorageOnILockBytes","features":[65]},{"name":"StgPropertyLengthAsVariant","features":[65]},{"name":"StgSerializePropVariant","features":[3,65,44]},{"name":"StgSetTimes","features":[3,65]},{"name":"VERSIONEDSTREAM","features":[65]},{"name":"VariantToPropVariant","features":[3,65,44]},{"name":"WinRTPropertyValueToPropVariant","features":[3,65,44]},{"name":"WriteClassStg","features":[65]},{"name":"WriteClassStm","features":[65]},{"name":"WriteFmtUserTypeStg","features":[65]}],"543":[{"name":"AUTHENTICATEF","features":[160]},{"name":"AUTHENTICATEF_BASIC","features":[160]},{"name":"AUTHENTICATEF_HTTP","features":[160]},{"name":"AUTHENTICATEF_PROXY","features":[160]},{"name":"BINDF","features":[160]},{"name":"BINDF2","features":[160]},{"name":"BINDF2_ALLOW_PROXY_CRED_PROMPT","features":[160]},{"name":"BINDF2_DISABLEAUTOCOOKIEHANDLING","features":[160]},{"name":"BINDF2_DISABLEBASICOVERHTTP","features":[160]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_CACHING","features":[160]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_XSECURITYID","features":[160]},{"name":"BINDF2_KEEP_CALLBACK_MODULE_LOADED","features":[160]},{"name":"BINDF2_READ_DATA_GREATER_THAN_4GB","features":[160]},{"name":"BINDF2_RESERVED_1","features":[160]},{"name":"BINDF2_RESERVED_10","features":[160]},{"name":"BINDF2_RESERVED_11","features":[160]},{"name":"BINDF2_RESERVED_12","features":[160]},{"name":"BINDF2_RESERVED_13","features":[160]},{"name":"BINDF2_RESERVED_14","features":[160]},{"name":"BINDF2_RESERVED_15","features":[160]},{"name":"BINDF2_RESERVED_16","features":[160]},{"name":"BINDF2_RESERVED_17","features":[160]},{"name":"BINDF2_RESERVED_2","features":[160]},{"name":"BINDF2_RESERVED_3","features":[160]},{"name":"BINDF2_RESERVED_4","features":[160]},{"name":"BINDF2_RESERVED_5","features":[160]},{"name":"BINDF2_RESERVED_6","features":[160]},{"name":"BINDF2_RESERVED_7","features":[160]},{"name":"BINDF2_RESERVED_8","features":[160]},{"name":"BINDF2_RESERVED_9","features":[160]},{"name":"BINDF2_RESERVED_A","features":[160]},{"name":"BINDF2_RESERVED_B","features":[160]},{"name":"BINDF2_RESERVED_C","features":[160]},{"name":"BINDF2_RESERVED_D","features":[160]},{"name":"BINDF2_RESERVED_E","features":[160]},{"name":"BINDF2_RESERVED_F","features":[160]},{"name":"BINDF2_SETDOWNLOADMODE","features":[160]},{"name":"BINDF_ASYNCHRONOUS","features":[160]},{"name":"BINDF_ASYNCSTORAGE","features":[160]},{"name":"BINDF_DIRECT_READ","features":[160]},{"name":"BINDF_ENFORCERESTRICTED","features":[160]},{"name":"BINDF_FORMS_SUBMIT","features":[160]},{"name":"BINDF_FREE_THREADED","features":[160]},{"name":"BINDF_FROMURLMON","features":[160]},{"name":"BINDF_FWD_BACK","features":[160]},{"name":"BINDF_GETCLASSOBJECT","features":[160]},{"name":"BINDF_GETFROMCACHE_IF_NET_FAIL","features":[160]},{"name":"BINDF_GETNEWESTVERSION","features":[160]},{"name":"BINDF_HYPERLINK","features":[160]},{"name":"BINDF_IGNORESECURITYPROBLEM","features":[160]},{"name":"BINDF_NEEDFILE","features":[160]},{"name":"BINDF_NOPROGRESSIVERENDERING","features":[160]},{"name":"BINDF_NOWRITECACHE","features":[160]},{"name":"BINDF_NO_UI","features":[160]},{"name":"BINDF_OFFLINEOPERATION","features":[160]},{"name":"BINDF_PRAGMA_NO_CACHE","features":[160]},{"name":"BINDF_PREFERDEFAULTHANDLER","features":[160]},{"name":"BINDF_PULLDATA","features":[160]},{"name":"BINDF_RESERVED_1","features":[160]},{"name":"BINDF_RESERVED_2","features":[160]},{"name":"BINDF_RESERVED_3","features":[160]},{"name":"BINDF_RESERVED_4","features":[160]},{"name":"BINDF_RESERVED_5","features":[160]},{"name":"BINDF_RESERVED_6","features":[160]},{"name":"BINDF_RESERVED_7","features":[160]},{"name":"BINDF_RESERVED_8","features":[160]},{"name":"BINDF_RESYNCHRONIZE","features":[160]},{"name":"BINDF_SILENTOPERATION","features":[160]},{"name":"BINDHANDLETYPES","features":[160]},{"name":"BINDHANDLETYPES_APPCACHE","features":[160]},{"name":"BINDHANDLETYPES_COUNT","features":[160]},{"name":"BINDHANDLETYPES_DEPENDENCY","features":[160]},{"name":"BINDINFO_OPTIONS","features":[160]},{"name":"BINDINFO_OPTIONS_ALLOWCONNECTDATA","features":[160]},{"name":"BINDINFO_OPTIONS_BINDTOOBJECT","features":[160]},{"name":"BINDINFO_OPTIONS_DISABLEAUTOREDIRECTS","features":[160]},{"name":"BINDINFO_OPTIONS_DISABLE_UTF8","features":[160]},{"name":"BINDINFO_OPTIONS_ENABLE_UTF8","features":[160]},{"name":"BINDINFO_OPTIONS_IGNOREHTTPHTTPSREDIRECTS","features":[160]},{"name":"BINDINFO_OPTIONS_IGNOREMIMETEXTPLAIN","features":[160]},{"name":"BINDINFO_OPTIONS_IGNORE_SSLERRORS_ONCE","features":[160]},{"name":"BINDINFO_OPTIONS_SECURITYOPTOUT","features":[160]},{"name":"BINDINFO_OPTIONS_SHDOCVW_NAVIGATE","features":[160]},{"name":"BINDINFO_OPTIONS_USEBINDSTRINGCREDS","features":[160]},{"name":"BINDINFO_OPTIONS_USE_IE_ENCODING","features":[160]},{"name":"BINDINFO_OPTIONS_WININETFLAG","features":[160]},{"name":"BINDINFO_WPC_DOWNLOADBLOCKED","features":[160]},{"name":"BINDINFO_WPC_LOGGING_ENABLED","features":[160]},{"name":"BINDSTATUS","features":[160]},{"name":"BINDSTATUS_64BIT_PROGRESS","features":[160]},{"name":"BINDSTATUS_ACCEPTRANGES","features":[160]},{"name":"BINDSTATUS_BEGINDOWNLOADCOMPONENTS","features":[160]},{"name":"BINDSTATUS_BEGINDOWNLOADDATA","features":[160]},{"name":"BINDSTATUS_BEGINSYNCOPERATION","features":[160]},{"name":"BINDSTATUS_BEGINUPLOADDATA","features":[160]},{"name":"BINDSTATUS_CACHECONTROL","features":[160]},{"name":"BINDSTATUS_CACHEFILENAMEAVAILABLE","features":[160]},{"name":"BINDSTATUS_CLASSIDAVAILABLE","features":[160]},{"name":"BINDSTATUS_CLASSINSTALLLOCATION","features":[160]},{"name":"BINDSTATUS_CLSIDCANINSTANTIATE","features":[160]},{"name":"BINDSTATUS_COMPACT_POLICY_RECEIVED","features":[160]},{"name":"BINDSTATUS_CONNECTING","features":[160]},{"name":"BINDSTATUS_CONTENTDISPOSITIONATTACH","features":[160]},{"name":"BINDSTATUS_CONTENTDISPOSITIONFILENAME","features":[160]},{"name":"BINDSTATUS_COOKIE_SENT","features":[160]},{"name":"BINDSTATUS_COOKIE_STATE_ACCEPT","features":[160]},{"name":"BINDSTATUS_COOKIE_STATE_DOWNGRADE","features":[160]},{"name":"BINDSTATUS_COOKIE_STATE_LEASH","features":[160]},{"name":"BINDSTATUS_COOKIE_STATE_PROMPT","features":[160]},{"name":"BINDSTATUS_COOKIE_STATE_REJECT","features":[160]},{"name":"BINDSTATUS_COOKIE_STATE_UNKNOWN","features":[160]},{"name":"BINDSTATUS_COOKIE_SUPPRESSED","features":[160]},{"name":"BINDSTATUS_DECODING","features":[160]},{"name":"BINDSTATUS_DIRECTBIND","features":[160]},{"name":"BINDSTATUS_DISPLAYNAMEAVAILABLE","features":[160]},{"name":"BINDSTATUS_DOWNLOADINGDATA","features":[160]},{"name":"BINDSTATUS_ENCODING","features":[160]},{"name":"BINDSTATUS_ENDDOWNLOADCOMPONENTS","features":[160]},{"name":"BINDSTATUS_ENDDOWNLOADDATA","features":[160]},{"name":"BINDSTATUS_ENDSYNCOPERATION","features":[160]},{"name":"BINDSTATUS_ENDUPLOADDATA","features":[160]},{"name":"BINDSTATUS_FILTERREPORTMIMETYPE","features":[160]},{"name":"BINDSTATUS_FINDINGRESOURCE","features":[160]},{"name":"BINDSTATUS_INSTALLINGCOMPONENTS","features":[160]},{"name":"BINDSTATUS_IUNKNOWNAVAILABLE","features":[160]},{"name":"BINDSTATUS_LAST","features":[160]},{"name":"BINDSTATUS_LAST_PRIVATE","features":[160]},{"name":"BINDSTATUS_LOADINGMIMEHANDLER","features":[160]},{"name":"BINDSTATUS_MIMETEXTPLAINMISMATCH","features":[160]},{"name":"BINDSTATUS_MIMETYPEAVAILABLE","features":[160]},{"name":"BINDSTATUS_P3P_HEADER","features":[160]},{"name":"BINDSTATUS_PERSISTENT_COOKIE_RECEIVED","features":[160]},{"name":"BINDSTATUS_POLICY_HREF","features":[160]},{"name":"BINDSTATUS_PROTOCOLCLASSID","features":[160]},{"name":"BINDSTATUS_PROXYDETECTING","features":[160]},{"name":"BINDSTATUS_PUBLISHERAVAILABLE","features":[160]},{"name":"BINDSTATUS_RAWMIMETYPE","features":[160]},{"name":"BINDSTATUS_REDIRECTING","features":[160]},{"name":"BINDSTATUS_RESERVED_0","features":[160]},{"name":"BINDSTATUS_RESERVED_1","features":[160]},{"name":"BINDSTATUS_RESERVED_10","features":[160]},{"name":"BINDSTATUS_RESERVED_11","features":[160]},{"name":"BINDSTATUS_RESERVED_12","features":[160]},{"name":"BINDSTATUS_RESERVED_13","features":[160]},{"name":"BINDSTATUS_RESERVED_14","features":[160]},{"name":"BINDSTATUS_RESERVED_2","features":[160]},{"name":"BINDSTATUS_RESERVED_3","features":[160]},{"name":"BINDSTATUS_RESERVED_4","features":[160]},{"name":"BINDSTATUS_RESERVED_5","features":[160]},{"name":"BINDSTATUS_RESERVED_6","features":[160]},{"name":"BINDSTATUS_RESERVED_7","features":[160]},{"name":"BINDSTATUS_RESERVED_8","features":[160]},{"name":"BINDSTATUS_RESERVED_9","features":[160]},{"name":"BINDSTATUS_RESERVED_A","features":[160]},{"name":"BINDSTATUS_RESERVED_B","features":[160]},{"name":"BINDSTATUS_RESERVED_C","features":[160]},{"name":"BINDSTATUS_RESERVED_D","features":[160]},{"name":"BINDSTATUS_RESERVED_E","features":[160]},{"name":"BINDSTATUS_RESERVED_F","features":[160]},{"name":"BINDSTATUS_SENDINGREQUEST","features":[160]},{"name":"BINDSTATUS_SERVER_MIMETYPEAVAILABLE","features":[160]},{"name":"BINDSTATUS_SESSION_COOKIES_ALLOWED","features":[160]},{"name":"BINDSTATUS_SESSION_COOKIE_RECEIVED","features":[160]},{"name":"BINDSTATUS_SNIFFED_CLASSIDAVAILABLE","features":[160]},{"name":"BINDSTATUS_SSLUX_NAVBLOCKED","features":[160]},{"name":"BINDSTATUS_UPLOADINGDATA","features":[160]},{"name":"BINDSTATUS_USINGCACHEDCOPY","features":[160]},{"name":"BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE","features":[160]},{"name":"BINDSTRING","features":[160]},{"name":"BINDSTRING_ACCEPT_ENCODINGS","features":[160]},{"name":"BINDSTRING_ACCEPT_MIMES","features":[160]},{"name":"BINDSTRING_DOC_URL","features":[160]},{"name":"BINDSTRING_DOWNLOADPATH","features":[160]},{"name":"BINDSTRING_ENTERPRISE_ID","features":[160]},{"name":"BINDSTRING_EXTRA_URL","features":[160]},{"name":"BINDSTRING_FLAG_BIND_TO_OBJECT","features":[160]},{"name":"BINDSTRING_HEADERS","features":[160]},{"name":"BINDSTRING_IID","features":[160]},{"name":"BINDSTRING_INITIAL_FILENAME","features":[160]},{"name":"BINDSTRING_LANGUAGE","features":[160]},{"name":"BINDSTRING_OS","features":[160]},{"name":"BINDSTRING_PASSWORD","features":[160]},{"name":"BINDSTRING_POST_COOKIE","features":[160]},{"name":"BINDSTRING_POST_DATA_MIME","features":[160]},{"name":"BINDSTRING_PROXY_PASSWORD","features":[160]},{"name":"BINDSTRING_PROXY_USERNAME","features":[160]},{"name":"BINDSTRING_PTR_BIND_CONTEXT","features":[160]},{"name":"BINDSTRING_ROOTDOC_URL","features":[160]},{"name":"BINDSTRING_SAMESITE_COOKIE_LEVEL","features":[160]},{"name":"BINDSTRING_UA_COLOR","features":[160]},{"name":"BINDSTRING_UA_PIXELS","features":[160]},{"name":"BINDSTRING_URL","features":[160]},{"name":"BINDSTRING_USERNAME","features":[160]},{"name":"BINDSTRING_USER_AGENT","features":[160]},{"name":"BINDSTRING_XDR_ORIGIN","features":[160]},{"name":"BINDVERB","features":[160]},{"name":"BINDVERB_CUSTOM","features":[160]},{"name":"BINDVERB_GET","features":[160]},{"name":"BINDVERB_POST","features":[160]},{"name":"BINDVERB_PUT","features":[160]},{"name":"BINDVERB_RESERVED1","features":[160]},{"name":"BSCF","features":[160]},{"name":"BSCF_64BITLENGTHDOWNLOAD","features":[160]},{"name":"BSCF_AVAILABLEDATASIZEUNKNOWN","features":[160]},{"name":"BSCF_DATAFULLYAVAILABLE","features":[160]},{"name":"BSCF_FIRSTDATANOTIFICATION","features":[160]},{"name":"BSCF_INTERMEDIATEDATANOTIFICATION","features":[160]},{"name":"BSCF_LASTDATANOTIFICATION","features":[160]},{"name":"BSCF_SKIPDRAINDATAFORFILEURLS","features":[160]},{"name":"CF_NULL","features":[160]},{"name":"CIP_ACCESS_DENIED","features":[160]},{"name":"CIP_DISK_FULL","features":[160]},{"name":"CIP_EXE_SELF_REGISTERATION_TIMEOUT","features":[160]},{"name":"CIP_NAME_CONFLICT","features":[160]},{"name":"CIP_NEED_REBOOT","features":[160]},{"name":"CIP_NEED_REBOOT_UI_PERMISSION","features":[160]},{"name":"CIP_NEWER_VERSION_EXISTS","features":[160]},{"name":"CIP_OLDER_VERSION_EXISTS","features":[160]},{"name":"CIP_STATUS","features":[160]},{"name":"CIP_TRUST_VERIFICATION_COMPONENT_MISSING","features":[160]},{"name":"CIP_UNSAFE_TO_ABORT","features":[160]},{"name":"CLASSIDPROP","features":[160]},{"name":"CODEBASEHOLD","features":[160]},{"name":"CONFIRMSAFETY","features":[160]},{"name":"CONFIRMSAFETYACTION_LOADOBJECT","features":[160]},{"name":"CoGetClassObjectFromURL","features":[160]},{"name":"CoInternetCombineIUri","features":[160]},{"name":"CoInternetCombineUrl","features":[160]},{"name":"CoInternetCombineUrlEx","features":[160]},{"name":"CoInternetCompareUrl","features":[160]},{"name":"CoInternetCreateSecurityManager","features":[160]},{"name":"CoInternetCreateZoneManager","features":[160]},{"name":"CoInternetGetProtocolFlags","features":[160]},{"name":"CoInternetGetSecurityUrl","features":[160]},{"name":"CoInternetGetSecurityUrlEx","features":[160]},{"name":"CoInternetGetSession","features":[160]},{"name":"CoInternetIsFeatureEnabled","features":[160]},{"name":"CoInternetIsFeatureEnabledForIUri","features":[160]},{"name":"CoInternetIsFeatureEnabledForUrl","features":[160]},{"name":"CoInternetIsFeatureZoneElevationEnabled","features":[160]},{"name":"CoInternetParseIUri","features":[160]},{"name":"CoInternetParseUrl","features":[160]},{"name":"CoInternetQueryInfo","features":[160]},{"name":"CoInternetSetFeatureEnabled","features":[3,160]},{"name":"CompareSecurityIds","features":[160]},{"name":"CompatFlagsFromClsid","features":[160]},{"name":"CopyBindInfo","features":[3,14,6,160]},{"name":"CopyStgMedium","features":[3,14,160]},{"name":"CreateAsyncBindCtx","features":[160]},{"name":"CreateAsyncBindCtxEx","features":[160]},{"name":"CreateFormatEnumerator","features":[160]},{"name":"CreateURLMoniker","features":[160]},{"name":"CreateURLMonikerEx","features":[160]},{"name":"CreateURLMonikerEx2","features":[160]},{"name":"DATAINFO","features":[160]},{"name":"E_PENDING","features":[160]},{"name":"FEATURE_ADDON_MANAGEMENT","features":[160]},{"name":"FEATURE_BEHAVIORS","features":[160]},{"name":"FEATURE_BLOCK_INPUT_PROMPTS","features":[160]},{"name":"FEATURE_DISABLE_LEGACY_COMPRESSION","features":[160]},{"name":"FEATURE_DISABLE_MK_PROTOCOL","features":[160]},{"name":"FEATURE_DISABLE_NAVIGATION_SOUNDS","features":[160]},{"name":"FEATURE_DISABLE_TELNET_PROTOCOL","features":[160]},{"name":"FEATURE_ENTRY_COUNT","features":[160]},{"name":"FEATURE_FEEDS","features":[160]},{"name":"FEATURE_FORCE_ADDR_AND_STATUS","features":[160]},{"name":"FEATURE_GET_URL_DOM_FILEPATH_UNENCODED","features":[160]},{"name":"FEATURE_HTTP_USERNAME_PASSWORD_DISABLE","features":[160]},{"name":"FEATURE_LOCALMACHINE_LOCKDOWN","features":[160]},{"name":"FEATURE_MIME_HANDLING","features":[160]},{"name":"FEATURE_MIME_SNIFFING","features":[160]},{"name":"FEATURE_OBJECT_CACHING","features":[160]},{"name":"FEATURE_PROTOCOL_LOCKDOWN","features":[160]},{"name":"FEATURE_RESTRICT_ACTIVEXINSTALL","features":[160]},{"name":"FEATURE_RESTRICT_FILEDOWNLOAD","features":[160]},{"name":"FEATURE_SAFE_BINDTOOBJECT","features":[160]},{"name":"FEATURE_SECURITYBAND","features":[160]},{"name":"FEATURE_SSLUX","features":[160]},{"name":"FEATURE_TABBED_BROWSING","features":[160]},{"name":"FEATURE_UNC_SAVEDFILECHECK","features":[160]},{"name":"FEATURE_VALIDATE_NAVIGATE_URL","features":[160]},{"name":"FEATURE_WEBOC_POPUPMANAGEMENT","features":[160]},{"name":"FEATURE_WINDOW_RESTRICTIONS","features":[160]},{"name":"FEATURE_XMLHTTP","features":[160]},{"name":"FEATURE_ZONE_ELEVATION","features":[160]},{"name":"FIEF_FLAG_FORCE_JITUI","features":[160]},{"name":"FIEF_FLAG_PEEK","features":[160]},{"name":"FIEF_FLAG_RESERVED_0","features":[160]},{"name":"FIEF_FLAG_SKIP_INSTALLED_VERSION_CHECK","features":[160]},{"name":"FMFD_DEFAULT","features":[160]},{"name":"FMFD_ENABLEMIMESNIFFING","features":[160]},{"name":"FMFD_IGNOREMIMETEXTPLAIN","features":[160]},{"name":"FMFD_RESERVED_1","features":[160]},{"name":"FMFD_RESERVED_2","features":[160]},{"name":"FMFD_RESPECTTEXTPLAIN","features":[160]},{"name":"FMFD_RETURNUPDATEDIMGMIMES","features":[160]},{"name":"FMFD_SERVERMIME","features":[160]},{"name":"FMFD_URLASFILENAME","features":[160]},{"name":"FaultInIEFeature","features":[3,160]},{"name":"FindMediaType","features":[160]},{"name":"FindMediaTypeClass","features":[160]},{"name":"FindMimeFromData","features":[160]},{"name":"GET_FEATURE_FROM_PROCESS","features":[160]},{"name":"GET_FEATURE_FROM_REGISTRY","features":[160]},{"name":"GET_FEATURE_FROM_THREAD","features":[160]},{"name":"GET_FEATURE_FROM_THREAD_INTERNET","features":[160]},{"name":"GET_FEATURE_FROM_THREAD_INTRANET","features":[160]},{"name":"GET_FEATURE_FROM_THREAD_LOCALMACHINE","features":[160]},{"name":"GET_FEATURE_FROM_THREAD_RESTRICTED","features":[160]},{"name":"GET_FEATURE_FROM_THREAD_TRUSTED","features":[160]},{"name":"GetClassFileOrMime","features":[160]},{"name":"GetClassURL","features":[160]},{"name":"GetComponentIDFromCLSSPEC","features":[160]},{"name":"GetSoftwareUpdateInfo","features":[160]},{"name":"HIT_LOGGING_INFO","features":[3,160]},{"name":"HlinkGoBack","features":[160]},{"name":"HlinkGoForward","features":[160]},{"name":"HlinkNavigateMoniker","features":[160]},{"name":"HlinkNavigateString","features":[160]},{"name":"HlinkSimpleNavigateToMoniker","features":[160]},{"name":"HlinkSimpleNavigateToString","features":[160]},{"name":"IBindCallbackRedirect","features":[160]},{"name":"IBindHttpSecurity","features":[160]},{"name":"IBindProtocol","features":[160]},{"name":"ICatalogFileInfo","features":[160]},{"name":"ICodeInstall","features":[160]},{"name":"IDataFilter","features":[160]},{"name":"IEGetUserPrivateNamespaceName","features":[160]},{"name":"IEInstallScope","features":[160]},{"name":"IEObjectType","features":[160]},{"name":"IE_EPM_OBJECT_EVENT","features":[160]},{"name":"IE_EPM_OBJECT_FILE","features":[160]},{"name":"IE_EPM_OBJECT_MUTEX","features":[160]},{"name":"IE_EPM_OBJECT_NAMED_PIPE","features":[160]},{"name":"IE_EPM_OBJECT_REGISTRY","features":[160]},{"name":"IE_EPM_OBJECT_SEMAPHORE","features":[160]},{"name":"IE_EPM_OBJECT_SHARED_MEMORY","features":[160]},{"name":"IE_EPM_OBJECT_WAITABLE_TIMER","features":[160]},{"name":"IEncodingFilterFactory","features":[160]},{"name":"IGetBindHandle","features":[160]},{"name":"IHttpNegotiate","features":[160]},{"name":"IHttpNegotiate2","features":[160]},{"name":"IHttpNegotiate3","features":[160]},{"name":"IHttpSecurity","features":[160]},{"name":"IInternet","features":[160]},{"name":"IInternetBindInfo","features":[160]},{"name":"IInternetBindInfoEx","features":[160]},{"name":"IInternetHostSecurityManager","features":[160]},{"name":"IInternetPriority","features":[160]},{"name":"IInternetProtocol","features":[160]},{"name":"IInternetProtocolEx","features":[160]},{"name":"IInternetProtocolInfo","features":[160]},{"name":"IInternetProtocolRoot","features":[160]},{"name":"IInternetProtocolSink","features":[160]},{"name":"IInternetProtocolSinkStackable","features":[160]},{"name":"IInternetSecurityManager","features":[160]},{"name":"IInternetSecurityManagerEx","features":[160]},{"name":"IInternetSecurityManagerEx2","features":[160]},{"name":"IInternetSecurityMgrSite","features":[160]},{"name":"IInternetSession","features":[160]},{"name":"IInternetThreadSwitch","features":[160]},{"name":"IInternetZoneManager","features":[160]},{"name":"IInternetZoneManagerEx","features":[160]},{"name":"IInternetZoneManagerEx2","features":[160]},{"name":"IMonikerProp","features":[160]},{"name":"INET_E_AUTHENTICATION_REQUIRED","features":[160]},{"name":"INET_E_BLOCKED_ENHANCEDPROTECTEDMODE","features":[160]},{"name":"INET_E_BLOCKED_PLUGGABLE_PROTOCOL","features":[160]},{"name":"INET_E_BLOCKED_REDIRECT_XSECURITYID","features":[160]},{"name":"INET_E_CANNOT_CONNECT","features":[160]},{"name":"INET_E_CANNOT_INSTANTIATE_OBJECT","features":[160]},{"name":"INET_E_CANNOT_LOAD_DATA","features":[160]},{"name":"INET_E_CANNOT_LOCK_REQUEST","features":[160]},{"name":"INET_E_CANNOT_REPLACE_SFP_FILE","features":[160]},{"name":"INET_E_CODE_DOWNLOAD_DECLINED","features":[160]},{"name":"INET_E_CODE_INSTALL_BLOCKED_ARM","features":[160]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BITNESS","features":[160]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY","features":[160]},{"name":"INET_E_CODE_INSTALL_BLOCKED_IMMERSIVE","features":[160]},{"name":"INET_E_CODE_INSTALL_SUPPRESSED","features":[160]},{"name":"INET_E_CONNECTION_TIMEOUT","features":[160]},{"name":"INET_E_DATA_NOT_AVAILABLE","features":[160]},{"name":"INET_E_DEFAULT_ACTION","features":[160]},{"name":"INET_E_DOMINJECTIONVALIDATION","features":[160]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_CSP","features":[160]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_INPRIVATE","features":[160]},{"name":"INET_E_DOWNLOAD_FAILURE","features":[160]},{"name":"INET_E_ERROR_FIRST","features":[160]},{"name":"INET_E_ERROR_LAST","features":[160]},{"name":"INET_E_FORBIDFRAMING","features":[160]},{"name":"INET_E_HSTS_CERTIFICATE_ERROR","features":[160]},{"name":"INET_E_INVALID_CERTIFICATE","features":[160]},{"name":"INET_E_INVALID_REQUEST","features":[160]},{"name":"INET_E_INVALID_URL","features":[160]},{"name":"INET_E_NO_SESSION","features":[160]},{"name":"INET_E_NO_VALID_MEDIA","features":[160]},{"name":"INET_E_OBJECT_NOT_FOUND","features":[160]},{"name":"INET_E_QUERYOPTION_UNKNOWN","features":[160]},{"name":"INET_E_REDIRECTING","features":[160]},{"name":"INET_E_REDIRECT_FAILED","features":[160]},{"name":"INET_E_REDIRECT_TO_DIR","features":[160]},{"name":"INET_E_RESERVED_1","features":[160]},{"name":"INET_E_RESERVED_2","features":[160]},{"name":"INET_E_RESERVED_3","features":[160]},{"name":"INET_E_RESERVED_4","features":[160]},{"name":"INET_E_RESERVED_5","features":[160]},{"name":"INET_E_RESOURCE_NOT_FOUND","features":[160]},{"name":"INET_E_RESULT_DISPATCHED","features":[160]},{"name":"INET_E_SECURITY_PROBLEM","features":[160]},{"name":"INET_E_TERMINATED_BIND","features":[160]},{"name":"INET_E_UNKNOWN_PROTOCOL","features":[160]},{"name":"INET_E_USE_DEFAULT_PROTOCOLHANDLER","features":[160]},{"name":"INET_E_USE_DEFAULT_SETTING","features":[160]},{"name":"INET_E_USE_EXTEND_BINDING","features":[160]},{"name":"INET_E_VTAB_SWITCH_FORCE_ENGINE","features":[160]},{"name":"INET_ZONE_MANAGER_CONSTANTS","features":[160]},{"name":"INTERNETFEATURELIST","features":[160]},{"name":"IPersistMoniker","features":[160]},{"name":"ISoftDistExt","features":[160]},{"name":"IUriBuilderFactory","features":[160]},{"name":"IUriContainer","features":[160]},{"name":"IWinInetCacheHints","features":[160]},{"name":"IWinInetCacheHints2","features":[160]},{"name":"IWinInetFileStream","features":[160]},{"name":"IWinInetHttpInfo","features":[160]},{"name":"IWinInetHttpTimeouts","features":[160]},{"name":"IWinInetInfo","features":[160]},{"name":"IWindowForBindingUI","features":[160]},{"name":"IWrappedProtocol","features":[160]},{"name":"IZoneIdentifier","features":[160]},{"name":"IZoneIdentifier2","features":[160]},{"name":"IsAsyncMoniker","features":[160]},{"name":"IsLoggingEnabledA","features":[3,160]},{"name":"IsLoggingEnabledW","features":[3,160]},{"name":"IsValidURL","features":[160]},{"name":"MAX_SIZE_SECURITY_ID","features":[160]},{"name":"MAX_ZONE_DESCRIPTION","features":[160]},{"name":"MAX_ZONE_PATH","features":[160]},{"name":"MIMETYPEPROP","features":[160]},{"name":"MKSYS_URLMONIKER","features":[160]},{"name":"MK_S_ASYNCHRONOUS","features":[160]},{"name":"MONIKERPROPERTY","features":[160]},{"name":"MUTZ_ACCEPT_WILDCARD_SCHEME","features":[160]},{"name":"MUTZ_DONT_UNESCAPE","features":[160]},{"name":"MUTZ_DONT_USE_CACHE","features":[160]},{"name":"MUTZ_ENFORCERESTRICTED","features":[160]},{"name":"MUTZ_FORCE_INTRANET_FLAGS","features":[160]},{"name":"MUTZ_IGNORE_ZONE_MAPPINGS","features":[160]},{"name":"MUTZ_ISFILE","features":[160]},{"name":"MUTZ_NOSAVEDFILECHECK","features":[160]},{"name":"MUTZ_REQUIRESAVEDFILECHECK","features":[160]},{"name":"MUTZ_RESERVED","features":[160]},{"name":"MkParseDisplayNameEx","features":[160]},{"name":"OIBDG_APARTMENTTHREADED","features":[160]},{"name":"OIBDG_DATAONLY","features":[160]},{"name":"OIBDG_FLAGS","features":[160]},{"name":"ObtainUserAgentString","features":[160]},{"name":"PARSEACTION","features":[160]},{"name":"PARSE_ANCHOR","features":[160]},{"name":"PARSE_CANONICALIZE","features":[160]},{"name":"PARSE_DECODE_IS_ESCAPE","features":[160]},{"name":"PARSE_DOCUMENT","features":[160]},{"name":"PARSE_DOMAIN","features":[160]},{"name":"PARSE_ENCODE_IS_UNESCAPE","features":[160]},{"name":"PARSE_ESCAPE","features":[160]},{"name":"PARSE_FRIENDLY","features":[160]},{"name":"PARSE_LOCATION","features":[160]},{"name":"PARSE_MIME","features":[160]},{"name":"PARSE_PATH_FROM_URL","features":[160]},{"name":"PARSE_ROOTDOCUMENT","features":[160]},{"name":"PARSE_SCHEMA","features":[160]},{"name":"PARSE_SECURITY_DOMAIN","features":[160]},{"name":"PARSE_SECURITY_URL","features":[160]},{"name":"PARSE_SERVER","features":[160]},{"name":"PARSE_SITE","features":[160]},{"name":"PARSE_UNESCAPE","features":[160]},{"name":"PARSE_URL_FROM_PATH","features":[160]},{"name":"PD_FORCE_SWITCH","features":[160]},{"name":"PI_APARTMENTTHREADED","features":[160]},{"name":"PI_CLASSINSTALL","features":[160]},{"name":"PI_CLSIDLOOKUP","features":[160]},{"name":"PI_DATAPROGRESS","features":[160]},{"name":"PI_FILTER_MODE","features":[160]},{"name":"PI_FLAGS","features":[160]},{"name":"PI_FORCE_ASYNC","features":[160]},{"name":"PI_LOADAPPDIRECT","features":[160]},{"name":"PI_MIMEVERIFICATION","features":[160]},{"name":"PI_NOMIMEHANDLER","features":[160]},{"name":"PI_PARSE_URL","features":[160]},{"name":"PI_PASSONBINDCTX","features":[160]},{"name":"PI_PREFERDEFAULTHANDLER","features":[160]},{"name":"PI_SYNCHRONOUS","features":[160]},{"name":"PI_USE_WORKERTHREAD","features":[160]},{"name":"POPUPLEVELPROP","features":[160]},{"name":"PROTOCOLDATA","features":[160]},{"name":"PROTOCOLFILTERDATA","features":[160]},{"name":"PROTOCOLFLAG_NO_PICS_CHECK","features":[160]},{"name":"PROTOCOL_ARGUMENT","features":[160]},{"name":"PSUACTION","features":[160]},{"name":"PSU_DEFAULT","features":[160]},{"name":"PSU_SECURITY_URL_ONLY","features":[160]},{"name":"PUAF","features":[160]},{"name":"PUAFOUT","features":[160]},{"name":"PUAFOUT_DEFAULT","features":[160]},{"name":"PUAFOUT_ISLOCKZONEPOLICY","features":[160]},{"name":"PUAF_ACCEPT_WILDCARD_SCHEME","features":[160]},{"name":"PUAF_CHECK_TIFS","features":[160]},{"name":"PUAF_DEFAULT","features":[160]},{"name":"PUAF_DEFAULTZONEPOL","features":[160]},{"name":"PUAF_DONTCHECKBOXINDIALOG","features":[160]},{"name":"PUAF_DONT_USE_CACHE","features":[160]},{"name":"PUAF_DRAGPROTOCOLCHECK","features":[160]},{"name":"PUAF_ENFORCERESTRICTED","features":[160]},{"name":"PUAF_FORCEUI_FOREGROUND","features":[160]},{"name":"PUAF_ISFILE","features":[160]},{"name":"PUAF_LMZ_LOCKED","features":[160]},{"name":"PUAF_LMZ_UNLOCKED","features":[160]},{"name":"PUAF_NOSAVEDFILECHECK","features":[160]},{"name":"PUAF_NOUI","features":[160]},{"name":"PUAF_NOUIIFLOCKED","features":[160]},{"name":"PUAF_NPL_USE_LOCKED_IF_RESTRICTED","features":[160]},{"name":"PUAF_REQUIRESAVEDFILECHECK","features":[160]},{"name":"PUAF_RESERVED1","features":[160]},{"name":"PUAF_RESERVED2","features":[160]},{"name":"PUAF_TRUSTED","features":[160]},{"name":"PUAF_WARN_IF_DENIED","features":[160]},{"name":"QUERYOPTION","features":[160]},{"name":"QUERY_CAN_NAVIGATE","features":[160]},{"name":"QUERY_CONTENT_ENCODING","features":[160]},{"name":"QUERY_CONTENT_TYPE","features":[160]},{"name":"QUERY_EXPIRATION_DATE","features":[160]},{"name":"QUERY_IS_CACHED","features":[160]},{"name":"QUERY_IS_CACHED_AND_USABLE_OFFLINE","features":[160]},{"name":"QUERY_IS_CACHED_OR_MAPPED","features":[160]},{"name":"QUERY_IS_INSTALLEDENTRY","features":[160]},{"name":"QUERY_IS_SAFE","features":[160]},{"name":"QUERY_IS_SECURE","features":[160]},{"name":"QUERY_RECOMBINE","features":[160]},{"name":"QUERY_REFRESH","features":[160]},{"name":"QUERY_TIME_OF_LAST_CHANGE","features":[160]},{"name":"QUERY_USES_CACHE","features":[160]},{"name":"QUERY_USES_HISTORYFOLDER","features":[160]},{"name":"QUERY_USES_NETWORK","features":[160]},{"name":"REMSECURITY_ATTRIBUTES","features":[3,160]},{"name":"RegisterBindStatusCallback","features":[160]},{"name":"RegisterFormatEnumerator","features":[160]},{"name":"RegisterMediaTypeClass","features":[160]},{"name":"RegisterMediaTypes","features":[160]},{"name":"ReleaseBindInfo","features":[3,14,6,160]},{"name":"RemBINDINFO","features":[3,160]},{"name":"RemFORMATETC","features":[160]},{"name":"RevokeBindStatusCallback","features":[160]},{"name":"RevokeFormatEnumerator","features":[160]},{"name":"SECURITY_IE_STATE_GREEN","features":[160]},{"name":"SECURITY_IE_STATE_RED","features":[160]},{"name":"SET_FEATURE_IN_REGISTRY","features":[160]},{"name":"SET_FEATURE_ON_PROCESS","features":[160]},{"name":"SET_FEATURE_ON_THREAD","features":[160]},{"name":"SET_FEATURE_ON_THREAD_INTERNET","features":[160]},{"name":"SET_FEATURE_ON_THREAD_INTRANET","features":[160]},{"name":"SET_FEATURE_ON_THREAD_LOCALMACHINE","features":[160]},{"name":"SET_FEATURE_ON_THREAD_RESTRICTED","features":[160]},{"name":"SET_FEATURE_ON_THREAD_TRUSTED","features":[160]},{"name":"SOFTDISTINFO","features":[160]},{"name":"SOFTDIST_ADSTATE_AVAILABLE","features":[160]},{"name":"SOFTDIST_ADSTATE_DOWNLOADED","features":[160]},{"name":"SOFTDIST_ADSTATE_INSTALLED","features":[160]},{"name":"SOFTDIST_ADSTATE_NONE","features":[160]},{"name":"SOFTDIST_FLAG_DELETE_SUBSCRIPTION","features":[160]},{"name":"SOFTDIST_FLAG_USAGE_AUTOINSTALL","features":[160]},{"name":"SOFTDIST_FLAG_USAGE_EMAIL","features":[160]},{"name":"SOFTDIST_FLAG_USAGE_PRECACHE","features":[160]},{"name":"SZM_CREATE","features":[160]},{"name":"SZM_DELETE","features":[160]},{"name":"SZM_FLAGS","features":[160]},{"name":"S_ASYNCHRONOUS","features":[160]},{"name":"SetAccessForIEAppContainer","features":[3,160]},{"name":"SetSoftwareUpdateAdvertisementState","features":[160]},{"name":"StartParam","features":[160]},{"name":"TRUSTEDDOWNLOADPROP","features":[160]},{"name":"UAS_EXACTLEGACY","features":[160]},{"name":"URLACTION_ACTIVEX_ALLOW_TDC","features":[160]},{"name":"URLACTION_ACTIVEX_CONFIRM_NOOBJECTSAFETY","features":[160]},{"name":"URLACTION_ACTIVEX_CURR_MAX","features":[160]},{"name":"URLACTION_ACTIVEX_DYNSRC_VIDEO_AND_ANIMATION","features":[160]},{"name":"URLACTION_ACTIVEX_MAX","features":[160]},{"name":"URLACTION_ACTIVEX_MIN","features":[160]},{"name":"URLACTION_ACTIVEX_NO_WEBOC_SCRIPT","features":[160]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DATA_SAFETY","features":[160]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DOMAINLIST","features":[160]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OBJECT_SAFETY","features":[160]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OPTIN","features":[160]},{"name":"URLACTION_ACTIVEX_OVERRIDE_REPURPOSEDETECTION","features":[160]},{"name":"URLACTION_ACTIVEX_OVERRIDE_SCRIPT_SAFETY","features":[160]},{"name":"URLACTION_ACTIVEX_RUN","features":[160]},{"name":"URLACTION_ACTIVEX_SCRIPTLET_RUN","features":[160]},{"name":"URLACTION_ACTIVEX_TREATASUNTRUSTED","features":[160]},{"name":"URLACTION_ALLOW_ACTIVEX_FILTERING","features":[160]},{"name":"URLACTION_ALLOW_ANTIMALWARE_SCANNING_OF_ACTIVEX","features":[160]},{"name":"URLACTION_ALLOW_APEVALUATION","features":[160]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO","features":[160]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO_PLUGINS","features":[160]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_APPCACHE_MANIFEST","features":[160]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_ACROSS_WINDOWS","features":[160]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_WITHIN_WINDOW","features":[160]},{"name":"URLACTION_ALLOW_CSS_EXPRESSIONS","features":[160]},{"name":"URLACTION_ALLOW_JSCRIPT_IE","features":[160]},{"name":"URLACTION_ALLOW_RENDER_LEGACY_DXTFILTERS","features":[160]},{"name":"URLACTION_ALLOW_RESTRICTEDPROTOCOLS","features":[160]},{"name":"URLACTION_ALLOW_STRUCTURED_STORAGE_SNIFFING","features":[160]},{"name":"URLACTION_ALLOW_VBSCRIPT_IE","features":[160]},{"name":"URLACTION_ALLOW_XDOMAIN_SUBFRAME_RESIZE","features":[160]},{"name":"URLACTION_ALLOW_XHR_EVALUATION","features":[160]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_OPT_OUT_ADDITION","features":[160]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_VIA_OPT_OUT","features":[160]},{"name":"URLACTION_AUTHENTICATE_CLIENT","features":[160]},{"name":"URLACTION_AUTOMATIC_ACTIVEX_UI","features":[160]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI","features":[160]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI_MIN","features":[160]},{"name":"URLACTION_BEHAVIOR_MIN","features":[160]},{"name":"URLACTION_BEHAVIOR_RUN","features":[160]},{"name":"URLACTION_CHANNEL_SOFTDIST_MAX","features":[160]},{"name":"URLACTION_CHANNEL_SOFTDIST_MIN","features":[160]},{"name":"URLACTION_CHANNEL_SOFTDIST_PERMISSIONS","features":[160]},{"name":"URLACTION_CLIENT_CERT_PROMPT","features":[160]},{"name":"URLACTION_COOKIES","features":[160]},{"name":"URLACTION_COOKIES_ENABLED","features":[160]},{"name":"URLACTION_COOKIES_SESSION","features":[160]},{"name":"URLACTION_COOKIES_SESSION_THIRD_PARTY","features":[160]},{"name":"URLACTION_COOKIES_THIRD_PARTY","features":[160]},{"name":"URLACTION_CREDENTIALS_USE","features":[160]},{"name":"URLACTION_CROSS_DOMAIN_DATA","features":[160]},{"name":"URLACTION_DOTNET_USERCONTROLS","features":[160]},{"name":"URLACTION_DOWNLOAD_CURR_MAX","features":[160]},{"name":"URLACTION_DOWNLOAD_MAX","features":[160]},{"name":"URLACTION_DOWNLOAD_MIN","features":[160]},{"name":"URLACTION_DOWNLOAD_SIGNED_ACTIVEX","features":[160]},{"name":"URLACTION_DOWNLOAD_UNSIGNED_ACTIVEX","features":[160]},{"name":"URLACTION_FEATURE_BLOCK_INPUT_PROMPTS","features":[160]},{"name":"URLACTION_FEATURE_CROSSDOMAIN_FOCUS_CHANGE","features":[160]},{"name":"URLACTION_FEATURE_DATA_BINDING","features":[160]},{"name":"URLACTION_FEATURE_FORCE_ADDR_AND_STATUS","features":[160]},{"name":"URLACTION_FEATURE_MIME_SNIFFING","features":[160]},{"name":"URLACTION_FEATURE_MIN","features":[160]},{"name":"URLACTION_FEATURE_SCRIPT_STATUS_BAR","features":[160]},{"name":"URLACTION_FEATURE_WINDOW_RESTRICTIONS","features":[160]},{"name":"URLACTION_FEATURE_ZONE_ELEVATION","features":[160]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_CANVAS","features":[160]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_TEXTTRACK","features":[160]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_WEBWORKER","features":[160]},{"name":"URLACTION_HTML_ALLOW_INDEXEDDB","features":[160]},{"name":"URLACTION_HTML_ALLOW_INJECTED_DYNAMIC_HTML","features":[160]},{"name":"URLACTION_HTML_ALLOW_WINDOW_CLOSE","features":[160]},{"name":"URLACTION_HTML_FONT_DOWNLOAD","features":[160]},{"name":"URLACTION_HTML_INCLUDE_FILE_PATH","features":[160]},{"name":"URLACTION_HTML_JAVA_RUN","features":[160]},{"name":"URLACTION_HTML_MAX","features":[160]},{"name":"URLACTION_HTML_META_REFRESH","features":[160]},{"name":"URLACTION_HTML_MIN","features":[160]},{"name":"URLACTION_HTML_MIXED_CONTENT","features":[160]},{"name":"URLACTION_HTML_REQUIRE_UTF8_DOCUMENT_CODEPAGE","features":[160]},{"name":"URLACTION_HTML_SUBFRAME_NAVIGATE","features":[160]},{"name":"URLACTION_HTML_SUBMIT_FORMS","features":[160]},{"name":"URLACTION_HTML_SUBMIT_FORMS_FROM","features":[160]},{"name":"URLACTION_HTML_SUBMIT_FORMS_TO","features":[160]},{"name":"URLACTION_HTML_USERDATA_SAVE","features":[160]},{"name":"URLACTION_INFODELIVERY_CURR_MAX","features":[160]},{"name":"URLACTION_INFODELIVERY_MAX","features":[160]},{"name":"URLACTION_INFODELIVERY_MIN","features":[160]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_CHANNELS","features":[160]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_SUBSCRIPTIONS","features":[160]},{"name":"URLACTION_INFODELIVERY_NO_CHANNEL_LOGGING","features":[160]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_CHANNELS","features":[160]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_SUBSCRIPTIONS","features":[160]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_CHANNELS","features":[160]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_SUBSCRIPTIONS","features":[160]},{"name":"URLACTION_INPRIVATE_BLOCKING","features":[160]},{"name":"URLACTION_JAVA_CURR_MAX","features":[160]},{"name":"URLACTION_JAVA_MAX","features":[160]},{"name":"URLACTION_JAVA_MIN","features":[160]},{"name":"URLACTION_JAVA_PERMISSIONS","features":[160]},{"name":"URLACTION_LOOSE_XAML","features":[160]},{"name":"URLACTION_LOWRIGHTS","features":[160]},{"name":"URLACTION_MIN","features":[160]},{"name":"URLACTION_NETWORK_CURR_MAX","features":[160]},{"name":"URLACTION_NETWORK_MAX","features":[160]},{"name":"URLACTION_NETWORK_MIN","features":[160]},{"name":"URLACTION_PLUGGABLE_PROTOCOL_XHR","features":[160]},{"name":"URLACTION_SCRIPT_CURR_MAX","features":[160]},{"name":"URLACTION_SCRIPT_JAVA_USE","features":[160]},{"name":"URLACTION_SCRIPT_MAX","features":[160]},{"name":"URLACTION_SCRIPT_MIN","features":[160]},{"name":"URLACTION_SCRIPT_NAVIGATE","features":[160]},{"name":"URLACTION_SCRIPT_OVERRIDE_SAFETY","features":[160]},{"name":"URLACTION_SCRIPT_PASTE","features":[160]},{"name":"URLACTION_SCRIPT_RUN","features":[160]},{"name":"URLACTION_SCRIPT_SAFE_ACTIVEX","features":[160]},{"name":"URLACTION_SCRIPT_XSSFILTER","features":[160]},{"name":"URLACTION_SHELL_ALLOW_CROSS_SITE_SHARE","features":[160]},{"name":"URLACTION_SHELL_CURR_MAX","features":[160]},{"name":"URLACTION_SHELL_ENHANCED_DRAGDROP_SECURITY","features":[160]},{"name":"URLACTION_SHELL_EXECUTE_HIGHRISK","features":[160]},{"name":"URLACTION_SHELL_EXECUTE_LOWRISK","features":[160]},{"name":"URLACTION_SHELL_EXECUTE_MODRISK","features":[160]},{"name":"URLACTION_SHELL_EXTENSIONSECURITY","features":[160]},{"name":"URLACTION_SHELL_FILE_DOWNLOAD","features":[160]},{"name":"URLACTION_SHELL_INSTALL_DTITEMS","features":[160]},{"name":"URLACTION_SHELL_MAX","features":[160]},{"name":"URLACTION_SHELL_MIN","features":[160]},{"name":"URLACTION_SHELL_MOVE_OR_COPY","features":[160]},{"name":"URLACTION_SHELL_POPUPMGR","features":[160]},{"name":"URLACTION_SHELL_PREVIEW","features":[160]},{"name":"URLACTION_SHELL_REMOTEQUERY","features":[160]},{"name":"URLACTION_SHELL_RTF_OBJECTS_LOAD","features":[160]},{"name":"URLACTION_SHELL_SECURE_DRAGSOURCE","features":[160]},{"name":"URLACTION_SHELL_SHARE","features":[160]},{"name":"URLACTION_SHELL_SHELLEXECUTE","features":[160]},{"name":"URLACTION_SHELL_TOCTOU_RISK","features":[160]},{"name":"URLACTION_SHELL_VERB","features":[160]},{"name":"URLACTION_SHELL_WEBVIEW_VERB","features":[160]},{"name":"URLACTION_WINDOWS_BROWSER_APPLICATIONS","features":[160]},{"name":"URLACTION_WINFX_SETUP","features":[160]},{"name":"URLACTION_XPS_DOCUMENTS","features":[160]},{"name":"URLDownloadToCacheFileA","features":[160]},{"name":"URLDownloadToCacheFileW","features":[160]},{"name":"URLDownloadToFileA","features":[160]},{"name":"URLDownloadToFileW","features":[160]},{"name":"URLMON_OPTION_URL_ENCODING","features":[160]},{"name":"URLMON_OPTION_USERAGENT","features":[160]},{"name":"URLMON_OPTION_USERAGENT_REFRESH","features":[160]},{"name":"URLMON_OPTION_USE_BINDSTRINGCREDS","features":[160]},{"name":"URLMON_OPTION_USE_BROWSERAPPSDOCUMENTS","features":[160]},{"name":"URLOSTRM_GETNEWESTVERSION","features":[160]},{"name":"URLOSTRM_USECACHEDCOPY","features":[160]},{"name":"URLOSTRM_USECACHEDCOPY_ONLY","features":[160]},{"name":"URLOpenBlockingStreamA","features":[160]},{"name":"URLOpenBlockingStreamW","features":[160]},{"name":"URLOpenPullStreamA","features":[160]},{"name":"URLOpenPullStreamW","features":[160]},{"name":"URLOpenStreamA","features":[160]},{"name":"URLOpenStreamW","features":[160]},{"name":"URLPOLICY_ACTIVEX_CHECK_LIST","features":[160]},{"name":"URLPOLICY_ALLOW","features":[160]},{"name":"URLPOLICY_AUTHENTICATE_CHALLENGE_RESPONSE","features":[160]},{"name":"URLPOLICY_AUTHENTICATE_CLEARTEXT_OK","features":[160]},{"name":"URLPOLICY_AUTHENTICATE_MUTUAL_ONLY","features":[160]},{"name":"URLPOLICY_BEHAVIOR_CHECK_LIST","features":[160]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_AUTOINSTALL","features":[160]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PRECACHE","features":[160]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PROHIBIT","features":[160]},{"name":"URLPOLICY_CREDENTIALS_ANONYMOUS_ONLY","features":[160]},{"name":"URLPOLICY_CREDENTIALS_CONDITIONAL_PROMPT","features":[160]},{"name":"URLPOLICY_CREDENTIALS_MUST_PROMPT_USER","features":[160]},{"name":"URLPOLICY_CREDENTIALS_SILENT_LOGON_OK","features":[160]},{"name":"URLPOLICY_DISALLOW","features":[160]},{"name":"URLPOLICY_DONTCHECKDLGBOX","features":[160]},{"name":"URLPOLICY_JAVA_CUSTOM","features":[160]},{"name":"URLPOLICY_JAVA_HIGH","features":[160]},{"name":"URLPOLICY_JAVA_LOW","features":[160]},{"name":"URLPOLICY_JAVA_MEDIUM","features":[160]},{"name":"URLPOLICY_JAVA_PROHIBIT","features":[160]},{"name":"URLPOLICY_LOG_ON_ALLOW","features":[160]},{"name":"URLPOLICY_LOG_ON_DISALLOW","features":[160]},{"name":"URLPOLICY_MASK_PERMISSIONS","features":[160]},{"name":"URLPOLICY_NOTIFY_ON_ALLOW","features":[160]},{"name":"URLPOLICY_NOTIFY_ON_DISALLOW","features":[160]},{"name":"URLPOLICY_QUERY","features":[160]},{"name":"URLTEMPLATE","features":[160]},{"name":"URLTEMPLATE_CUSTOM","features":[160]},{"name":"URLTEMPLATE_HIGH","features":[160]},{"name":"URLTEMPLATE_LOW","features":[160]},{"name":"URLTEMPLATE_MEDHIGH","features":[160]},{"name":"URLTEMPLATE_MEDIUM","features":[160]},{"name":"URLTEMPLATE_MEDLOW","features":[160]},{"name":"URLTEMPLATE_PREDEFINED_MAX","features":[160]},{"name":"URLTEMPLATE_PREDEFINED_MIN","features":[160]},{"name":"URLZONE","features":[160]},{"name":"URLZONEREG","features":[160]},{"name":"URLZONEREG_DEFAULT","features":[160]},{"name":"URLZONEREG_HKCU","features":[160]},{"name":"URLZONEREG_HKLM","features":[160]},{"name":"URLZONE_ESC_FLAG","features":[160]},{"name":"URLZONE_INTERNET","features":[160]},{"name":"URLZONE_INTRANET","features":[160]},{"name":"URLZONE_INVALID","features":[160]},{"name":"URLZONE_LOCAL_MACHINE","features":[160]},{"name":"URLZONE_PREDEFINED_MAX","features":[160]},{"name":"URLZONE_PREDEFINED_MIN","features":[160]},{"name":"URLZONE_TRUSTED","features":[160]},{"name":"URLZONE_UNTRUSTED","features":[160]},{"name":"URLZONE_USER_MAX","features":[160]},{"name":"URLZONE_USER_MIN","features":[160]},{"name":"URL_ENCODING","features":[160]},{"name":"URL_ENCODING_DISABLE_UTF8","features":[160]},{"name":"URL_ENCODING_ENABLE_UTF8","features":[160]},{"name":"URL_ENCODING_NONE","features":[160]},{"name":"URL_MK_LEGACY","features":[160]},{"name":"URL_MK_NO_CANONICALIZE","features":[160]},{"name":"URL_MK_UNIFORM","features":[160]},{"name":"USE_SRC_URL","features":[160]},{"name":"UriBuilder_USE_ORIGINAL_FLAGS","features":[160]},{"name":"Uri_DISPLAY_IDN_HOST","features":[160]},{"name":"Uri_DISPLAY_NO_FRAGMENT","features":[160]},{"name":"Uri_DISPLAY_NO_PUNYCODE","features":[160]},{"name":"Uri_ENCODING_HOST_IS_IDN","features":[160]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_CP","features":[160]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_UTF8","features":[160]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_CP","features":[160]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_PERCENT_ENCODED_UTF8","features":[160]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_CP","features":[160]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_PERCENT_ENCODED_UTF8","features":[160]},{"name":"Uri_HOST_DNS","features":[160]},{"name":"Uri_HOST_IDN","features":[160]},{"name":"Uri_HOST_IPV4","features":[160]},{"name":"Uri_HOST_IPV6","features":[160]},{"name":"Uri_HOST_TYPE","features":[160]},{"name":"Uri_HOST_UNKNOWN","features":[160]},{"name":"Uri_PUNYCODE_IDN_HOST","features":[160]},{"name":"UrlMkGetSessionOption","features":[160]},{"name":"UrlMkSetSessionOption","features":[160]},{"name":"WININETINFO_OPTION_LOCK_HANDLE","features":[160]},{"name":"WriteHitLogging","features":[3,160]},{"name":"ZAFLAGS","features":[160]},{"name":"ZAFLAGS_ADD_SITES","features":[160]},{"name":"ZAFLAGS_CUSTOM_EDIT","features":[160]},{"name":"ZAFLAGS_DETECT_INTRANET","features":[160]},{"name":"ZAFLAGS_INCLUDE_INTRANET_SITES","features":[160]},{"name":"ZAFLAGS_INCLUDE_PROXY_OVERRIDE","features":[160]},{"name":"ZAFLAGS_NO_CACHE","features":[160]},{"name":"ZAFLAGS_NO_UI","features":[160]},{"name":"ZAFLAGS_REQUIRE_VERIFICATION","features":[160]},{"name":"ZAFLAGS_SUPPORTS_VERIFICATION","features":[160]},{"name":"ZAFLAGS_UNC_AS_INTRANET","features":[160]},{"name":"ZAFLAGS_USE_LOCKED_ZONES","features":[160]},{"name":"ZAFLAGS_VERIFY_TEMPLATE_SETTINGS","features":[160]},{"name":"ZONEATTRIBUTES","features":[160]}],"544":[{"name":"APPDATA","features":[161]},{"name":"APPSTATISTICS","features":[161]},{"name":"APPTYPE_LIBRARY","features":[161]},{"name":"APPTYPE_SERVER","features":[161]},{"name":"APPTYPE_SWC","features":[161]},{"name":"APPTYPE_UNKNOWN","features":[161]},{"name":"AppDomainHelper","features":[161]},{"name":"ApplicationProcessRecycleInfo","features":[3,161]},{"name":"ApplicationProcessStatistics","features":[161]},{"name":"ApplicationProcessSummary","features":[3,161]},{"name":"ApplicationSummary","features":[161]},{"name":"AutoSvcs_Error_Constants","features":[161]},{"name":"ByotServerEx","features":[161]},{"name":"CLSIDDATA","features":[161]},{"name":"CLSIDDATA2","features":[161]},{"name":"COMAdmin32BitComponent","features":[161]},{"name":"COMAdmin64BitComponent","features":[161]},{"name":"COMAdminAccessChecksApplicationComponentLevel","features":[161]},{"name":"COMAdminAccessChecksApplicationLevel","features":[161]},{"name":"COMAdminAccessChecksLevelOptions","features":[161]},{"name":"COMAdminActivationInproc","features":[161]},{"name":"COMAdminActivationLocal","features":[161]},{"name":"COMAdminActivationOptions","features":[161]},{"name":"COMAdminApplicationExportOptions","features":[161]},{"name":"COMAdminApplicationInstallOptions","features":[161]},{"name":"COMAdminAuthenticationCall","features":[161]},{"name":"COMAdminAuthenticationCapabilitiesDynamicCloaking","features":[161]},{"name":"COMAdminAuthenticationCapabilitiesNone","features":[161]},{"name":"COMAdminAuthenticationCapabilitiesOptions","features":[161]},{"name":"COMAdminAuthenticationCapabilitiesSecureReference","features":[161]},{"name":"COMAdminAuthenticationCapabilitiesStaticCloaking","features":[161]},{"name":"COMAdminAuthenticationConnect","features":[161]},{"name":"COMAdminAuthenticationDefault","features":[161]},{"name":"COMAdminAuthenticationIntegrity","features":[161]},{"name":"COMAdminAuthenticationLevelOptions","features":[161]},{"name":"COMAdminAuthenticationNone","features":[161]},{"name":"COMAdminAuthenticationPacket","features":[161]},{"name":"COMAdminAuthenticationPrivacy","features":[161]},{"name":"COMAdminCatalog","features":[161]},{"name":"COMAdminCatalogCollection","features":[161]},{"name":"COMAdminCatalogObject","features":[161]},{"name":"COMAdminCompFlagAlreadyInstalled","features":[161]},{"name":"COMAdminCompFlagCOMPlusPropertiesFound","features":[161]},{"name":"COMAdminCompFlagInterfacesFound","features":[161]},{"name":"COMAdminCompFlagNotInApplication","features":[161]},{"name":"COMAdminCompFlagProxyFound","features":[161]},{"name":"COMAdminCompFlagTypeInfoFound","features":[161]},{"name":"COMAdminComponentFlags","features":[161]},{"name":"COMAdminComponentType","features":[161]},{"name":"COMAdminErrAlreadyInstalled","features":[161]},{"name":"COMAdminErrAppDirNotFound","features":[161]},{"name":"COMAdminErrAppFileReadFail","features":[161]},{"name":"COMAdminErrAppFileVersion","features":[161]},{"name":"COMAdminErrAppFileWriteFail","features":[161]},{"name":"COMAdminErrAppNotRunning","features":[161]},{"name":"COMAdminErrApplicationExists","features":[161]},{"name":"COMAdminErrApplidMatchesClsid","features":[161]},{"name":"COMAdminErrAuthenticationLevel","features":[161]},{"name":"COMAdminErrBadPath","features":[161]},{"name":"COMAdminErrBadRegistryLibID","features":[161]},{"name":"COMAdminErrBadRegistryProgID","features":[161]},{"name":"COMAdminErrBasePartitionOnly","features":[161]},{"name":"COMAdminErrCLSIDOrIIDMismatch","features":[161]},{"name":"COMAdminErrCanNotExportAppProxy","features":[161]},{"name":"COMAdminErrCanNotExportSystemApp","features":[161]},{"name":"COMAdminErrCanNotStartApp","features":[161]},{"name":"COMAdminErrCanNotSubscribeToComponent","features":[161]},{"name":"COMAdminErrCannotCopyEventClass","features":[161]},{"name":"COMAdminErrCantCopyFile","features":[161]},{"name":"COMAdminErrCantRecycleLibraryApps","features":[161]},{"name":"COMAdminErrCantRecycleServiceApps","features":[161]},{"name":"COMAdminErrCatBitnessMismatch","features":[161]},{"name":"COMAdminErrCatPauseResumeNotSupported","features":[161]},{"name":"COMAdminErrCatServerFault","features":[161]},{"name":"COMAdminErrCatUnacceptableBitness","features":[161]},{"name":"COMAdminErrCatWrongAppBitnessBitness","features":[161]},{"name":"COMAdminErrCoReqCompInstalled","features":[161]},{"name":"COMAdminErrCompFileBadTLB","features":[161]},{"name":"COMAdminErrCompFileClassNotAvail","features":[161]},{"name":"COMAdminErrCompFileDoesNotExist","features":[161]},{"name":"COMAdminErrCompFileGetClassObj","features":[161]},{"name":"COMAdminErrCompFileLoadDLLFail","features":[161]},{"name":"COMAdminErrCompFileNoRegistrar","features":[161]},{"name":"COMAdminErrCompFileNotInstallable","features":[161]},{"name":"COMAdminErrCompMoveBadDest","features":[161]},{"name":"COMAdminErrCompMoveDest","features":[161]},{"name":"COMAdminErrCompMoveLocked","features":[161]},{"name":"COMAdminErrCompMovePrivate","features":[161]},{"name":"COMAdminErrCompMoveSource","features":[161]},{"name":"COMAdminErrComponentExists","features":[161]},{"name":"COMAdminErrDllLoadFailed","features":[161]},{"name":"COMAdminErrDllRegisterServer","features":[161]},{"name":"COMAdminErrDuplicatePartitionName","features":[161]},{"name":"COMAdminErrEventClassCannotBeSubscriber","features":[161]},{"name":"COMAdminErrImportedComponentsNotAllowed","features":[161]},{"name":"COMAdminErrInvalidPartition","features":[161]},{"name":"COMAdminErrInvalidUserids","features":[161]},{"name":"COMAdminErrKeyMissing","features":[161]},{"name":"COMAdminErrLibAppProxyIncompatible","features":[161]},{"name":"COMAdminErrMigSchemaNotFound","features":[161]},{"name":"COMAdminErrMigVersionNotSupported","features":[161]},{"name":"COMAdminErrNoRegistryCLSID","features":[161]},{"name":"COMAdminErrNoServerShare","features":[161]},{"name":"COMAdminErrNoUser","features":[161]},{"name":"COMAdminErrNotChangeable","features":[161]},{"name":"COMAdminErrNotDeletable","features":[161]},{"name":"COMAdminErrNotInRegistry","features":[161]},{"name":"COMAdminErrObjectDoesNotExist","features":[161]},{"name":"COMAdminErrObjectErrors","features":[161]},{"name":"COMAdminErrObjectExists","features":[161]},{"name":"COMAdminErrObjectInvalid","features":[161]},{"name":"COMAdminErrObjectNotPoolable","features":[161]},{"name":"COMAdminErrObjectParentMissing","features":[161]},{"name":"COMAdminErrPartitionInUse","features":[161]},{"name":"COMAdminErrPartitionMsiOnly","features":[161]},{"name":"COMAdminErrPausedProcessMayNotBeRecycled","features":[161]},{"name":"COMAdminErrProcessAlreadyRecycled","features":[161]},{"name":"COMAdminErrPropertyOverflow","features":[161]},{"name":"COMAdminErrPropertySaveFailed","features":[161]},{"name":"COMAdminErrQueuingServiceNotAvailable","features":[161]},{"name":"COMAdminErrRegFileCorrupt","features":[161]},{"name":"COMAdminErrRegdbAlreadyRunning","features":[161]},{"name":"COMAdminErrRegdbNotInitialized","features":[161]},{"name":"COMAdminErrRegdbNotOpen","features":[161]},{"name":"COMAdminErrRegdbSystemErr","features":[161]},{"name":"COMAdminErrRegisterTLB","features":[161]},{"name":"COMAdminErrRegistrarFailed","features":[161]},{"name":"COMAdminErrRemoteInterface","features":[161]},{"name":"COMAdminErrRequiresDifferentPlatform","features":[161]},{"name":"COMAdminErrRoleDoesNotExist","features":[161]},{"name":"COMAdminErrRoleExists","features":[161]},{"name":"COMAdminErrServiceNotInstalled","features":[161]},{"name":"COMAdminErrSession","features":[161]},{"name":"COMAdminErrStartAppDisabled","features":[161]},{"name":"COMAdminErrStartAppNeedsComponents","features":[161]},{"name":"COMAdminErrSystemApp","features":[161]},{"name":"COMAdminErrUserPasswdNotValid","features":[161]},{"name":"COMAdminErrorCodes","features":[161]},{"name":"COMAdminExportApplicationProxy","features":[161]},{"name":"COMAdminExportForceOverwriteOfFiles","features":[161]},{"name":"COMAdminExportIn10Format","features":[161]},{"name":"COMAdminExportNoUsers","features":[161]},{"name":"COMAdminExportUsers","features":[161]},{"name":"COMAdminFileFlagAlreadyInstalled","features":[161]},{"name":"COMAdminFileFlagBadTLB","features":[161]},{"name":"COMAdminFileFlagCOM","features":[161]},{"name":"COMAdminFileFlagClassNotAvailable","features":[161]},{"name":"COMAdminFileFlagContainsComp","features":[161]},{"name":"COMAdminFileFlagContainsPS","features":[161]},{"name":"COMAdminFileFlagContainsTLB","features":[161]},{"name":"COMAdminFileFlagDLLRegsvrFailed","features":[161]},{"name":"COMAdminFileFlagDoesNotExist","features":[161]},{"name":"COMAdminFileFlagError","features":[161]},{"name":"COMAdminFileFlagGetClassObjFailed","features":[161]},{"name":"COMAdminFileFlagLoadable","features":[161]},{"name":"COMAdminFileFlagNoRegistrar","features":[161]},{"name":"COMAdminFileFlagRegTLBFailed","features":[161]},{"name":"COMAdminFileFlagRegistrar","features":[161]},{"name":"COMAdminFileFlagRegistrarFailed","features":[161]},{"name":"COMAdminFileFlagSelfReg","features":[161]},{"name":"COMAdminFileFlagSelfUnReg","features":[161]},{"name":"COMAdminFileFlagUnloadableDLL","features":[161]},{"name":"COMAdminFileFlags","features":[161]},{"name":"COMAdminImpersonationAnonymous","features":[161]},{"name":"COMAdminImpersonationDelegate","features":[161]},{"name":"COMAdminImpersonationIdentify","features":[161]},{"name":"COMAdminImpersonationImpersonate","features":[161]},{"name":"COMAdminImpersonationLevelOptions","features":[161]},{"name":"COMAdminInUse","features":[161]},{"name":"COMAdminInUseByCatalog","features":[161]},{"name":"COMAdminInUseByRegistryClsid","features":[161]},{"name":"COMAdminInUseByRegistryProxyStub","features":[161]},{"name":"COMAdminInUseByRegistryTypeLib","features":[161]},{"name":"COMAdminInUseByRegistryUnknown","features":[161]},{"name":"COMAdminInstallForceOverwriteOfFiles","features":[161]},{"name":"COMAdminInstallNoUsers","features":[161]},{"name":"COMAdminInstallUsers","features":[161]},{"name":"COMAdminNotInUse","features":[161]},{"name":"COMAdminOS","features":[161]},{"name":"COMAdminOSNotInitialized","features":[161]},{"name":"COMAdminOSUnknown","features":[161]},{"name":"COMAdminOSWindows2000","features":[161]},{"name":"COMAdminOSWindows2000AdvancedServer","features":[161]},{"name":"COMAdminOSWindows2000Unknown","features":[161]},{"name":"COMAdminOSWindows3_1","features":[161]},{"name":"COMAdminOSWindows7DatacenterServer","features":[161]},{"name":"COMAdminOSWindows7EnterpriseServer","features":[161]},{"name":"COMAdminOSWindows7Personal","features":[161]},{"name":"COMAdminOSWindows7Professional","features":[161]},{"name":"COMAdminOSWindows7StandardServer","features":[161]},{"name":"COMAdminOSWindows7WebServer","features":[161]},{"name":"COMAdminOSWindows8DatacenterServer","features":[161]},{"name":"COMAdminOSWindows8EnterpriseServer","features":[161]},{"name":"COMAdminOSWindows8Personal","features":[161]},{"name":"COMAdminOSWindows8Professional","features":[161]},{"name":"COMAdminOSWindows8StandardServer","features":[161]},{"name":"COMAdminOSWindows8WebServer","features":[161]},{"name":"COMAdminOSWindows9x","features":[161]},{"name":"COMAdminOSWindowsBlueDatacenterServer","features":[161]},{"name":"COMAdminOSWindowsBlueEnterpriseServer","features":[161]},{"name":"COMAdminOSWindowsBluePersonal","features":[161]},{"name":"COMAdminOSWindowsBlueProfessional","features":[161]},{"name":"COMAdminOSWindowsBlueStandardServer","features":[161]},{"name":"COMAdminOSWindowsBlueWebServer","features":[161]},{"name":"COMAdminOSWindowsLonghornDatacenterServer","features":[161]},{"name":"COMAdminOSWindowsLonghornEnterpriseServer","features":[161]},{"name":"COMAdminOSWindowsLonghornPersonal","features":[161]},{"name":"COMAdminOSWindowsLonghornProfessional","features":[161]},{"name":"COMAdminOSWindowsLonghornStandardServer","features":[161]},{"name":"COMAdminOSWindowsLonghornWebServer","features":[161]},{"name":"COMAdminOSWindowsNETDatacenterServer","features":[161]},{"name":"COMAdminOSWindowsNETEnterpriseServer","features":[161]},{"name":"COMAdminOSWindowsNETStandardServer","features":[161]},{"name":"COMAdminOSWindowsNETWebServer","features":[161]},{"name":"COMAdminOSWindowsXPPersonal","features":[161]},{"name":"COMAdminOSWindowsXPProfessional","features":[161]},{"name":"COMAdminQCMessageAuthenticateOff","features":[161]},{"name":"COMAdminQCMessageAuthenticateOn","features":[161]},{"name":"COMAdminQCMessageAuthenticateOptions","features":[161]},{"name":"COMAdminQCMessageAuthenticateSecureApps","features":[161]},{"name":"COMAdminServiceContinuePending","features":[161]},{"name":"COMAdminServiceLoadBalanceRouter","features":[161]},{"name":"COMAdminServiceOptions","features":[161]},{"name":"COMAdminServicePausePending","features":[161]},{"name":"COMAdminServicePaused","features":[161]},{"name":"COMAdminServiceRunning","features":[161]},{"name":"COMAdminServiceStartPending","features":[161]},{"name":"COMAdminServiceStatusOptions","features":[161]},{"name":"COMAdminServiceStopPending","features":[161]},{"name":"COMAdminServiceStopped","features":[161]},{"name":"COMAdminServiceUnknownState","features":[161]},{"name":"COMAdminSynchronizationIgnored","features":[161]},{"name":"COMAdminSynchronizationNone","features":[161]},{"name":"COMAdminSynchronizationOptions","features":[161]},{"name":"COMAdminSynchronizationRequired","features":[161]},{"name":"COMAdminSynchronizationRequiresNew","features":[161]},{"name":"COMAdminSynchronizationSupported","features":[161]},{"name":"COMAdminThreadingModelApartment","features":[161]},{"name":"COMAdminThreadingModelBoth","features":[161]},{"name":"COMAdminThreadingModelFree","features":[161]},{"name":"COMAdminThreadingModelMain","features":[161]},{"name":"COMAdminThreadingModelNeutral","features":[161]},{"name":"COMAdminThreadingModelNotSpecified","features":[161]},{"name":"COMAdminThreadingModels","features":[161]},{"name":"COMAdminTransactionIgnored","features":[161]},{"name":"COMAdminTransactionNone","features":[161]},{"name":"COMAdminTransactionOptions","features":[161]},{"name":"COMAdminTransactionRequired","features":[161]},{"name":"COMAdminTransactionRequiresNew","features":[161]},{"name":"COMAdminTransactionSupported","features":[161]},{"name":"COMAdminTxIsolationLevelAny","features":[161]},{"name":"COMAdminTxIsolationLevelOptions","features":[161]},{"name":"COMAdminTxIsolationLevelReadCommitted","features":[161]},{"name":"COMAdminTxIsolationLevelReadUnCommitted","features":[161]},{"name":"COMAdminTxIsolationLevelRepeatableRead","features":[161]},{"name":"COMAdminTxIsolationLevelSerializable","features":[161]},{"name":"COMEvents","features":[161]},{"name":"COMPLUS_APPTYPE","features":[161]},{"name":"COMSVCSEVENTINFO","features":[161]},{"name":"CRMClerk","features":[161]},{"name":"CRMFLAGS","features":[161]},{"name":"CRMFLAG_FORGETTARGET","features":[161]},{"name":"CRMFLAG_REPLAYINPROGRESS","features":[161]},{"name":"CRMFLAG_WRITTENDURINGABORT","features":[161]},{"name":"CRMFLAG_WRITTENDURINGCOMMIT","features":[161]},{"name":"CRMFLAG_WRITTENDURINGPREPARE","features":[161]},{"name":"CRMFLAG_WRITTENDURINGRECOVERY","features":[161]},{"name":"CRMFLAG_WRITTENDURINGREPLAY","features":[161]},{"name":"CRMREGFLAGS","features":[161]},{"name":"CRMREGFLAG_ABORTPHASE","features":[161]},{"name":"CRMREGFLAG_ALLPHASES","features":[161]},{"name":"CRMREGFLAG_COMMITPHASE","features":[161]},{"name":"CRMREGFLAG_FAILIFINDOUBTSREMAIN","features":[161]},{"name":"CRMREGFLAG_PREPAREPHASE","features":[161]},{"name":"CRMRecoveryClerk","features":[161]},{"name":"CRR_ACTIVATION_LIMIT","features":[161]},{"name":"CRR_CALL_LIMIT","features":[161]},{"name":"CRR_LIFETIME_LIMIT","features":[161]},{"name":"CRR_MEMORY_LIMIT","features":[161]},{"name":"CRR_NO_REASON_SUPPLIED","features":[161]},{"name":"CRR_RECYCLED_FROM_UI","features":[161]},{"name":"CSC_BindToPoolThread","features":[161]},{"name":"CSC_Binding","features":[161]},{"name":"CSC_COMTIIntrinsicsConfig","features":[161]},{"name":"CSC_CreateTransactionIfNecessary","features":[161]},{"name":"CSC_DontUseTracker","features":[161]},{"name":"CSC_IISIntrinsicsConfig","features":[161]},{"name":"CSC_IfContainerIsSynchronized","features":[161]},{"name":"CSC_IfContainerIsTransactional","features":[161]},{"name":"CSC_Ignore","features":[161]},{"name":"CSC_Inherit","features":[161]},{"name":"CSC_InheritCOMTIIntrinsics","features":[161]},{"name":"CSC_InheritIISIntrinsics","features":[161]},{"name":"CSC_InheritPartition","features":[161]},{"name":"CSC_InheritSxs","features":[161]},{"name":"CSC_InheritanceConfig","features":[161]},{"name":"CSC_MTAThreadPool","features":[161]},{"name":"CSC_NewPartition","features":[161]},{"name":"CSC_NewSxs","features":[161]},{"name":"CSC_NewSynchronization","features":[161]},{"name":"CSC_NewSynchronizationIfNecessary","features":[161]},{"name":"CSC_NewTransaction","features":[161]},{"name":"CSC_NoBinding","features":[161]},{"name":"CSC_NoCOMTIIntrinsics","features":[161]},{"name":"CSC_NoIISIntrinsics","features":[161]},{"name":"CSC_NoPartition","features":[161]},{"name":"CSC_NoSxs","features":[161]},{"name":"CSC_NoSynchronization","features":[161]},{"name":"CSC_NoTransaction","features":[161]},{"name":"CSC_PartitionConfig","features":[161]},{"name":"CSC_STAThreadPool","features":[161]},{"name":"CSC_SxsConfig","features":[161]},{"name":"CSC_SynchronizationConfig","features":[161]},{"name":"CSC_ThreadPool","features":[161]},{"name":"CSC_ThreadPoolInherit","features":[161]},{"name":"CSC_ThreadPoolNone","features":[161]},{"name":"CSC_TrackerConfig","features":[161]},{"name":"CSC_TransactionConfig","features":[161]},{"name":"CSC_UseTracker","features":[161]},{"name":"CServiceConfig","features":[161]},{"name":"ClrAssemblyLocator","features":[161]},{"name":"CoCreateActivity","features":[161]},{"name":"CoEnterServiceDomain","features":[161]},{"name":"CoGetDefaultContext","features":[43,161]},{"name":"CoLeaveServiceDomain","features":[161]},{"name":"CoMTSLocator","features":[161]},{"name":"ComServiceEvents","features":[161]},{"name":"ComSystemAppEventData","features":[161]},{"name":"ComponentHangMonitorInfo","features":[3,161]},{"name":"ComponentStatistics","features":[161]},{"name":"ComponentSummary","features":[161]},{"name":"ContextInfo","features":[161]},{"name":"ContextInfo2","features":[161]},{"name":"CrmLogRecordRead","features":[43,161]},{"name":"CrmTransactionState","features":[161]},{"name":"DATA_NOT_AVAILABLE","features":[161]},{"name":"DUMPTYPE","features":[161]},{"name":"DUMPTYPE_FULL","features":[161]},{"name":"DUMPTYPE_MINI","features":[161]},{"name":"DUMPTYPE_NONE","features":[161]},{"name":"DispenserManager","features":[161]},{"name":"Dummy30040732","features":[161]},{"name":"EventServer","features":[161]},{"name":"GATD_INCLUDE_APPLICATION_NAME","features":[161]},{"name":"GATD_INCLUDE_CLASS_NAME","features":[161]},{"name":"GATD_INCLUDE_LIBRARY_APPS","features":[161]},{"name":"GATD_INCLUDE_PROCESS_EXE_NAME","features":[161]},{"name":"GATD_INCLUDE_SWC","features":[161]},{"name":"GUID_STRING_SIZE","features":[161]},{"name":"GetAppTrackerDataFlags","features":[161]},{"name":"GetDispenserManager","features":[161]},{"name":"GetManagedExtensions","features":[161]},{"name":"GetSecurityCallContextAppObject","features":[161]},{"name":"HANG_INFO","features":[3,161]},{"name":"IAppDomainHelper","features":[161]},{"name":"IAssemblyLocator","features":[161]},{"name":"IAsyncErrorNotify","features":[161]},{"name":"ICOMAdminCatalog","features":[161]},{"name":"ICOMAdminCatalog2","features":[161]},{"name":"ICOMLBArguments","features":[161]},{"name":"ICatalogCollection","features":[161]},{"name":"ICatalogObject","features":[161]},{"name":"ICheckSxsConfig","features":[161]},{"name":"IComActivityEvents","features":[161]},{"name":"IComApp2Events","features":[161]},{"name":"IComAppEvents","features":[161]},{"name":"IComCRMEvents","features":[161]},{"name":"IComExceptionEvents","features":[161]},{"name":"IComIdentityEvents","features":[161]},{"name":"IComInstance2Events","features":[161]},{"name":"IComInstanceEvents","features":[161]},{"name":"IComLTxEvents","features":[161]},{"name":"IComMethod2Events","features":[161]},{"name":"IComMethodEvents","features":[161]},{"name":"IComMtaThreadPoolKnobs","features":[161]},{"name":"IComObjectConstruction2Events","features":[161]},{"name":"IComObjectConstructionEvents","features":[161]},{"name":"IComObjectEvents","features":[161]},{"name":"IComObjectPool2Events","features":[161]},{"name":"IComObjectPoolEvents","features":[161]},{"name":"IComObjectPoolEvents2","features":[161]},{"name":"IComQCEvents","features":[161]},{"name":"IComResourceEvents","features":[161]},{"name":"IComSecurityEvents","features":[161]},{"name":"IComStaThreadPoolKnobs","features":[161]},{"name":"IComStaThreadPoolKnobs2","features":[161]},{"name":"IComThreadEvents","features":[161]},{"name":"IComTrackingInfoCollection","features":[161]},{"name":"IComTrackingInfoEvents","features":[161]},{"name":"IComTrackingInfoObject","features":[161]},{"name":"IComTrackingInfoProperties","features":[161]},{"name":"IComTransaction2Events","features":[161]},{"name":"IComTransactionEvents","features":[161]},{"name":"IComUserEvent","features":[161]},{"name":"IContextProperties","features":[161]},{"name":"IContextSecurityPerimeter","features":[161]},{"name":"IContextState","features":[161]},{"name":"ICreateWithLocalTransaction","features":[161]},{"name":"ICreateWithTipTransactionEx","features":[161]},{"name":"ICreateWithTransactionEx","features":[161]},{"name":"ICrmCompensator","features":[161]},{"name":"ICrmCompensatorVariants","features":[161]},{"name":"ICrmFormatLogRecords","features":[161]},{"name":"ICrmLogControl","features":[161]},{"name":"ICrmMonitor","features":[161]},{"name":"ICrmMonitorClerks","features":[161]},{"name":"ICrmMonitorLogRecords","features":[161]},{"name":"IDispenserDriver","features":[161]},{"name":"IDispenserManager","features":[161]},{"name":"IEnumNames","features":[161]},{"name":"IEventServerTrace","features":[161]},{"name":"IGetAppTrackerData","features":[161]},{"name":"IGetContextProperties","features":[161]},{"name":"IGetSecurityCallContext","features":[161]},{"name":"IHolder","features":[161]},{"name":"ILBEvents","features":[161]},{"name":"IMTSActivity","features":[161]},{"name":"IMTSCall","features":[161]},{"name":"IMTSLocator","features":[161]},{"name":"IManagedActivationEvents","features":[161]},{"name":"IManagedObjectInfo","features":[161]},{"name":"IManagedPoolAction","features":[161]},{"name":"IManagedPooledObj","features":[161]},{"name":"IMessageMover","features":[161]},{"name":"IMtsEventInfo","features":[161]},{"name":"IMtsEvents","features":[161]},{"name":"IMtsGrp","features":[161]},{"name":"IObjPool","features":[161]},{"name":"IObjectConstruct","features":[161]},{"name":"IObjectConstructString","features":[161]},{"name":"IObjectContext","features":[161]},{"name":"IObjectContextActivity","features":[161]},{"name":"IObjectContextInfo","features":[161]},{"name":"IObjectContextInfo2","features":[161]},{"name":"IObjectContextTip","features":[161]},{"name":"IObjectControl","features":[161]},{"name":"IPlaybackControl","features":[161]},{"name":"IPoolManager","features":[161]},{"name":"IProcessInitializer","features":[161]},{"name":"ISecurityCallContext","features":[161]},{"name":"ISecurityCallersColl","features":[161]},{"name":"ISecurityIdentityColl","features":[161]},{"name":"ISecurityProperty","features":[161]},{"name":"ISelectCOMLBServer","features":[161]},{"name":"ISendMethodEvents","features":[161]},{"name":"IServiceActivity","features":[161]},{"name":"IServiceCall","features":[161]},{"name":"IServiceComTIIntrinsicsConfig","features":[161]},{"name":"IServiceIISIntrinsicsConfig","features":[161]},{"name":"IServiceInheritanceConfig","features":[161]},{"name":"IServicePartitionConfig","features":[161]},{"name":"IServicePool","features":[161]},{"name":"IServicePoolConfig","features":[161]},{"name":"IServiceSxsConfig","features":[161]},{"name":"IServiceSynchronizationConfig","features":[161]},{"name":"IServiceSysTxnConfig","features":[161]},{"name":"IServiceThreadPoolConfig","features":[161]},{"name":"IServiceTrackerConfig","features":[161]},{"name":"IServiceTransactionConfig","features":[161]},{"name":"IServiceTransactionConfigBase","features":[161]},{"name":"ISharedProperty","features":[161]},{"name":"ISharedPropertyGroup","features":[161]},{"name":"ISharedPropertyGroupManager","features":[161]},{"name":"ISystemAppEventData","features":[161]},{"name":"IThreadPoolKnobs","features":[161]},{"name":"ITransactionContext","features":[161]},{"name":"ITransactionContextEx","features":[161]},{"name":"ITransactionProperty","features":[161]},{"name":"ITransactionProxy","features":[161]},{"name":"ITransactionResourcePool","features":[161]},{"name":"ITransactionStatus","features":[161]},{"name":"ITxProxyHolder","features":[161]},{"name":"LBEvents","features":[161]},{"name":"LockMethod","features":[161]},{"name":"LockModes","features":[161]},{"name":"LockSetGet","features":[161]},{"name":"MTSCreateActivity","features":[161]},{"name":"MTXDM_E_ENLISTRESOURCEFAILED","features":[161]},{"name":"MessageMover","features":[161]},{"name":"MtsGrp","features":[161]},{"name":"ObjectContext","features":[161]},{"name":"ObjectControl","features":[161]},{"name":"PoolMgr","features":[161]},{"name":"Process","features":[161]},{"name":"RECYCLE_INFO","features":[161]},{"name":"RecycleSurrogate","features":[161]},{"name":"ReleaseModes","features":[161]},{"name":"SafeRef","features":[161]},{"name":"SecurityCallContext","features":[161]},{"name":"SecurityCallers","features":[161]},{"name":"SecurityIdentity","features":[161]},{"name":"SecurityProperty","features":[161]},{"name":"ServicePool","features":[161]},{"name":"ServicePoolConfig","features":[161]},{"name":"SharedProperty","features":[161]},{"name":"SharedPropertyGroup","features":[161]},{"name":"SharedPropertyGroupManager","features":[161]},{"name":"Standard","features":[161]},{"name":"TRACKER_INIT_EVENT","features":[161]},{"name":"TRACKER_STARTSTOP_EVENT","features":[161]},{"name":"TRACKING_COLL_TYPE","features":[161]},{"name":"TRKCOLL_APPLICATIONS","features":[161]},{"name":"TRKCOLL_COMPONENTS","features":[161]},{"name":"TRKCOLL_PROCESSES","features":[161]},{"name":"TrackerServer","features":[161]},{"name":"TransactionContext","features":[161]},{"name":"TransactionContextEx","features":[161]},{"name":"TransactionVote","features":[161]},{"name":"TxAbort","features":[161]},{"name":"TxCommit","features":[161]},{"name":"TxState_Aborted","features":[161]},{"name":"TxState_Active","features":[161]},{"name":"TxState_Committed","features":[161]},{"name":"TxState_Indoubt","features":[161]},{"name":"comQCErrApplicationNotQueued","features":[161]},{"name":"comQCErrNoQueueableInterfaces","features":[161]},{"name":"comQCErrQueueTransactMismatch","features":[161]},{"name":"comQCErrQueuingServiceNotAvailable","features":[161]},{"name":"comqcErrBadMarshaledObject","features":[161]},{"name":"comqcErrInvalidMessage","features":[161]},{"name":"comqcErrMarshaledObjSameTxn","features":[161]},{"name":"comqcErrMsgNotAuthenticated","features":[161]},{"name":"comqcErrMsmqConnectorUsed","features":[161]},{"name":"comqcErrMsmqServiceUnavailable","features":[161]},{"name":"comqcErrMsmqSidUnavailable","features":[161]},{"name":"comqcErrOutParam","features":[161]},{"name":"comqcErrPSLoad","features":[161]},{"name":"comqcErrRecorderMarshalled","features":[161]},{"name":"comqcErrRecorderNotTrusted","features":[161]},{"name":"comqcErrWrongMsgExtension","features":[161]},{"name":"mtsErrCtxAborted","features":[161]},{"name":"mtsErrCtxAborting","features":[161]},{"name":"mtsErrCtxNoContext","features":[161]},{"name":"mtsErrCtxNoSecurity","features":[161]},{"name":"mtsErrCtxNotRegistered","features":[161]},{"name":"mtsErrCtxOldReference","features":[161]},{"name":"mtsErrCtxRoleNotFound","features":[161]},{"name":"mtsErrCtxSynchTimeout","features":[161]},{"name":"mtsErrCtxTMNotAvailable","features":[161]},{"name":"mtsErrCtxWrongThread","features":[161]}],"545":[{"name":"ALTNUMPAD_BIT","features":[55]},{"name":"ATTACH_PARENT_PROCESS","features":[55]},{"name":"AddConsoleAliasA","features":[3,55]},{"name":"AddConsoleAliasW","features":[3,55]},{"name":"AllocConsole","features":[3,55]},{"name":"AttachConsole","features":[3,55]},{"name":"BACKGROUND_BLUE","features":[55]},{"name":"BACKGROUND_GREEN","features":[55]},{"name":"BACKGROUND_INTENSITY","features":[55]},{"name":"BACKGROUND_RED","features":[55]},{"name":"CAPSLOCK_ON","features":[55]},{"name":"CHAR_INFO","features":[55]},{"name":"COMMON_LVB_GRID_HORIZONTAL","features":[55]},{"name":"COMMON_LVB_GRID_LVERTICAL","features":[55]},{"name":"COMMON_LVB_GRID_RVERTICAL","features":[55]},{"name":"COMMON_LVB_LEADING_BYTE","features":[55]},{"name":"COMMON_LVB_REVERSE_VIDEO","features":[55]},{"name":"COMMON_LVB_SBCSDBCS","features":[55]},{"name":"COMMON_LVB_TRAILING_BYTE","features":[55]},{"name":"COMMON_LVB_UNDERSCORE","features":[55]},{"name":"CONSOLECONTROL","features":[55]},{"name":"CONSOLEENDTASK","features":[3,55]},{"name":"CONSOLESETFOREGROUND","features":[3,55]},{"name":"CONSOLEWINDOWOWNER","features":[3,55]},{"name":"CONSOLE_CARET_INFO","features":[3,55]},{"name":"CONSOLE_CHARACTER_ATTRIBUTES","features":[55]},{"name":"CONSOLE_CURSOR_INFO","features":[3,55]},{"name":"CONSOLE_FONT_INFO","features":[55]},{"name":"CONSOLE_FONT_INFOEX","features":[55]},{"name":"CONSOLE_FULLSCREEN","features":[55]},{"name":"CONSOLE_FULLSCREEN_HARDWARE","features":[55]},{"name":"CONSOLE_FULLSCREEN_MODE","features":[55]},{"name":"CONSOLE_HISTORY_INFO","features":[55]},{"name":"CONSOLE_MODE","features":[55]},{"name":"CONSOLE_MOUSE_DOWN","features":[55]},{"name":"CONSOLE_MOUSE_SELECTION","features":[55]},{"name":"CONSOLE_NO_SELECTION","features":[55]},{"name":"CONSOLE_PROCESS_INFO","features":[55]},{"name":"CONSOLE_READCONSOLE_CONTROL","features":[55]},{"name":"CONSOLE_SCREEN_BUFFER_INFO","features":[55]},{"name":"CONSOLE_SCREEN_BUFFER_INFOEX","features":[3,55]},{"name":"CONSOLE_SELECTION_INFO","features":[55]},{"name":"CONSOLE_SELECTION_IN_PROGRESS","features":[55]},{"name":"CONSOLE_SELECTION_NOT_EMPTY","features":[55]},{"name":"CONSOLE_TEXTMODE_BUFFER","features":[55]},{"name":"CONSOLE_WINDOWED_MODE","features":[55]},{"name":"COORD","features":[55]},{"name":"CTRL_BREAK_EVENT","features":[55]},{"name":"CTRL_CLOSE_EVENT","features":[55]},{"name":"CTRL_C_EVENT","features":[55]},{"name":"CTRL_LOGOFF_EVENT","features":[55]},{"name":"CTRL_SHUTDOWN_EVENT","features":[55]},{"name":"ClosePseudoConsole","features":[55]},{"name":"ConsoleControl","features":[3,55]},{"name":"ConsoleEndTask","features":[55]},{"name":"ConsoleNotifyConsoleApplication","features":[55]},{"name":"ConsoleSetCaretInfo","features":[55]},{"name":"ConsoleSetForeground","features":[55]},{"name":"ConsoleSetWindowOwner","features":[55]},{"name":"CreateConsoleScreenBuffer","features":[3,6,55]},{"name":"CreatePseudoConsole","features":[3,55]},{"name":"DISABLE_NEWLINE_AUTO_RETURN","features":[55]},{"name":"DOUBLE_CLICK","features":[55]},{"name":"ENABLE_AUTO_POSITION","features":[55]},{"name":"ENABLE_ECHO_INPUT","features":[55]},{"name":"ENABLE_EXTENDED_FLAGS","features":[55]},{"name":"ENABLE_INSERT_MODE","features":[55]},{"name":"ENABLE_LINE_INPUT","features":[55]},{"name":"ENABLE_LVB_GRID_WORLDWIDE","features":[55]},{"name":"ENABLE_MOUSE_INPUT","features":[55]},{"name":"ENABLE_PROCESSED_INPUT","features":[55]},{"name":"ENABLE_PROCESSED_OUTPUT","features":[55]},{"name":"ENABLE_QUICK_EDIT_MODE","features":[55]},{"name":"ENABLE_VIRTUAL_TERMINAL_INPUT","features":[55]},{"name":"ENABLE_VIRTUAL_TERMINAL_PROCESSING","features":[55]},{"name":"ENABLE_WINDOW_INPUT","features":[55]},{"name":"ENABLE_WRAP_AT_EOL_OUTPUT","features":[55]},{"name":"ENHANCED_KEY","features":[55]},{"name":"ExpungeConsoleCommandHistoryA","features":[55]},{"name":"ExpungeConsoleCommandHistoryW","features":[55]},{"name":"FOCUS_EVENT","features":[55]},{"name":"FOCUS_EVENT_RECORD","features":[3,55]},{"name":"FOREGROUND_BLUE","features":[55]},{"name":"FOREGROUND_GREEN","features":[55]},{"name":"FOREGROUND_INTENSITY","features":[55]},{"name":"FOREGROUND_RED","features":[55]},{"name":"FROM_LEFT_1ST_BUTTON_PRESSED","features":[55]},{"name":"FROM_LEFT_2ND_BUTTON_PRESSED","features":[55]},{"name":"FROM_LEFT_3RD_BUTTON_PRESSED","features":[55]},{"name":"FROM_LEFT_4TH_BUTTON_PRESSED","features":[55]},{"name":"FillConsoleOutputAttribute","features":[3,55]},{"name":"FillConsoleOutputCharacterA","features":[3,55]},{"name":"FillConsoleOutputCharacterW","features":[3,55]},{"name":"FlushConsoleInputBuffer","features":[3,55]},{"name":"FreeConsole","features":[3,55]},{"name":"GenerateConsoleCtrlEvent","features":[3,55]},{"name":"GetConsoleAliasA","features":[55]},{"name":"GetConsoleAliasExesA","features":[55]},{"name":"GetConsoleAliasExesLengthA","features":[55]},{"name":"GetConsoleAliasExesLengthW","features":[55]},{"name":"GetConsoleAliasExesW","features":[55]},{"name":"GetConsoleAliasW","features":[55]},{"name":"GetConsoleAliasesA","features":[55]},{"name":"GetConsoleAliasesLengthA","features":[55]},{"name":"GetConsoleAliasesLengthW","features":[55]},{"name":"GetConsoleAliasesW","features":[55]},{"name":"GetConsoleCP","features":[55]},{"name":"GetConsoleCommandHistoryA","features":[55]},{"name":"GetConsoleCommandHistoryLengthA","features":[55]},{"name":"GetConsoleCommandHistoryLengthW","features":[55]},{"name":"GetConsoleCommandHistoryW","features":[55]},{"name":"GetConsoleCursorInfo","features":[3,55]},{"name":"GetConsoleDisplayMode","features":[3,55]},{"name":"GetConsoleFontSize","features":[3,55]},{"name":"GetConsoleHistoryInfo","features":[3,55]},{"name":"GetConsoleMode","features":[3,55]},{"name":"GetConsoleOriginalTitleA","features":[55]},{"name":"GetConsoleOriginalTitleW","features":[55]},{"name":"GetConsoleOutputCP","features":[55]},{"name":"GetConsoleProcessList","features":[55]},{"name":"GetConsoleScreenBufferInfo","features":[3,55]},{"name":"GetConsoleScreenBufferInfoEx","features":[3,55]},{"name":"GetConsoleSelectionInfo","features":[3,55]},{"name":"GetConsoleTitleA","features":[55]},{"name":"GetConsoleTitleW","features":[55]},{"name":"GetConsoleWindow","features":[3,55]},{"name":"GetCurrentConsoleFont","features":[3,55]},{"name":"GetCurrentConsoleFontEx","features":[3,55]},{"name":"GetLargestConsoleWindowSize","features":[3,55]},{"name":"GetNumberOfConsoleInputEvents","features":[3,55]},{"name":"GetNumberOfConsoleMouseButtons","features":[3,55]},{"name":"GetStdHandle","features":[3,55]},{"name":"HISTORY_NO_DUP_FLAG","features":[55]},{"name":"HPCON","features":[55]},{"name":"INPUT_RECORD","features":[3,55]},{"name":"KEY_EVENT","features":[55]},{"name":"KEY_EVENT_RECORD","features":[3,55]},{"name":"LEFT_ALT_PRESSED","features":[55]},{"name":"LEFT_CTRL_PRESSED","features":[55]},{"name":"MENU_EVENT","features":[55]},{"name":"MENU_EVENT_RECORD","features":[55]},{"name":"MOUSE_EVENT","features":[55]},{"name":"MOUSE_EVENT_RECORD","features":[55]},{"name":"MOUSE_HWHEELED","features":[55]},{"name":"MOUSE_MOVED","features":[55]},{"name":"MOUSE_WHEELED","features":[55]},{"name":"NLS_ALPHANUMERIC","features":[55]},{"name":"NLS_DBCSCHAR","features":[55]},{"name":"NLS_HIRAGANA","features":[55]},{"name":"NLS_IME_CONVERSION","features":[55]},{"name":"NLS_IME_DISABLE","features":[55]},{"name":"NLS_KATAKANA","features":[55]},{"name":"NLS_ROMAN","features":[55]},{"name":"NUMLOCK_ON","features":[55]},{"name":"PHANDLER_ROUTINE","features":[3,55]},{"name":"PSEUDOCONSOLE_INHERIT_CURSOR","features":[55]},{"name":"PeekConsoleInputA","features":[3,55]},{"name":"PeekConsoleInputW","features":[3,55]},{"name":"RIGHTMOST_BUTTON_PRESSED","features":[55]},{"name":"RIGHT_ALT_PRESSED","features":[55]},{"name":"RIGHT_CTRL_PRESSED","features":[55]},{"name":"ReadConsoleA","features":[3,55]},{"name":"ReadConsoleInputA","features":[3,55]},{"name":"ReadConsoleInputW","features":[3,55]},{"name":"ReadConsoleOutputA","features":[3,55]},{"name":"ReadConsoleOutputAttribute","features":[3,55]},{"name":"ReadConsoleOutputCharacterA","features":[3,55]},{"name":"ReadConsoleOutputCharacterW","features":[3,55]},{"name":"ReadConsoleOutputW","features":[3,55]},{"name":"ReadConsoleW","features":[3,55]},{"name":"Reserved1","features":[55]},{"name":"Reserved2","features":[55]},{"name":"Reserved3","features":[55]},{"name":"ResizePseudoConsole","features":[55]},{"name":"SCROLLLOCK_ON","features":[55]},{"name":"SHIFT_PRESSED","features":[55]},{"name":"SMALL_RECT","features":[55]},{"name":"STD_ERROR_HANDLE","features":[55]},{"name":"STD_HANDLE","features":[55]},{"name":"STD_INPUT_HANDLE","features":[55]},{"name":"STD_OUTPUT_HANDLE","features":[55]},{"name":"ScrollConsoleScreenBufferA","features":[3,55]},{"name":"ScrollConsoleScreenBufferW","features":[3,55]},{"name":"SetConsoleActiveScreenBuffer","features":[3,55]},{"name":"SetConsoleCP","features":[3,55]},{"name":"SetConsoleCtrlHandler","features":[3,55]},{"name":"SetConsoleCursorInfo","features":[3,55]},{"name":"SetConsoleCursorPosition","features":[3,55]},{"name":"SetConsoleDisplayMode","features":[3,55]},{"name":"SetConsoleHistoryInfo","features":[3,55]},{"name":"SetConsoleMode","features":[3,55]},{"name":"SetConsoleNumberOfCommandsA","features":[3,55]},{"name":"SetConsoleNumberOfCommandsW","features":[3,55]},{"name":"SetConsoleOutputCP","features":[3,55]},{"name":"SetConsoleScreenBufferInfoEx","features":[3,55]},{"name":"SetConsoleScreenBufferSize","features":[3,55]},{"name":"SetConsoleTextAttribute","features":[3,55]},{"name":"SetConsoleTitleA","features":[3,55]},{"name":"SetConsoleTitleW","features":[3,55]},{"name":"SetConsoleWindowInfo","features":[3,55]},{"name":"SetCurrentConsoleFontEx","features":[3,55]},{"name":"SetStdHandle","features":[3,55]},{"name":"SetStdHandleEx","features":[3,55]},{"name":"WINDOW_BUFFER_SIZE_EVENT","features":[55]},{"name":"WINDOW_BUFFER_SIZE_RECORD","features":[55]},{"name":"WriteConsoleA","features":[3,55]},{"name":"WriteConsoleInputA","features":[3,55]},{"name":"WriteConsoleInputW","features":[3,55]},{"name":"WriteConsoleOutputA","features":[3,55]},{"name":"WriteConsoleOutputAttribute","features":[3,55]},{"name":"WriteConsoleOutputCharacterA","features":[3,55]},{"name":"WriteConsoleOutputCharacterW","features":[3,55]},{"name":"WriteConsoleOutputW","features":[3,55]},{"name":"WriteConsoleW","features":[3,55]}],"547":[{"name":"CORRELATION_VECTOR","features":[140]},{"name":"RTL_CORRELATION_VECTOR_STRING_LENGTH","features":[140]},{"name":"RTL_CORRELATION_VECTOR_V1_LENGTH","features":[140]},{"name":"RTL_CORRELATION_VECTOR_V1_PREFIX_LENGTH","features":[140]},{"name":"RTL_CORRELATION_VECTOR_V2_LENGTH","features":[140]},{"name":"RTL_CORRELATION_VECTOR_V2_PREFIX_LENGTH","features":[140]},{"name":"RtlExtendCorrelationVector","features":[140]},{"name":"RtlIncrementCorrelationVector","features":[140]},{"name":"RtlInitializeCorrelationVector","features":[140]},{"name":"RtlValidateCorrelationVector","features":[140]}],"548":[{"name":"APPCLASS_MASK","features":[162]},{"name":"APPCLASS_MONITOR","features":[162]},{"name":"APPCLASS_STANDARD","features":[162]},{"name":"APPCMD_CLIENTONLY","features":[162]},{"name":"APPCMD_FILTERINITS","features":[162]},{"name":"APPCMD_MASK","features":[162]},{"name":"AddAtomA","features":[162]},{"name":"AddAtomW","features":[162]},{"name":"AddClipboardFormatListener","features":[3,162]},{"name":"CADV_LATEACK","features":[162]},{"name":"CBF_FAIL_ADVISES","features":[162]},{"name":"CBF_FAIL_ALLSVRXACTIONS","features":[162]},{"name":"CBF_FAIL_CONNECTIONS","features":[162]},{"name":"CBF_FAIL_EXECUTES","features":[162]},{"name":"CBF_FAIL_POKES","features":[162]},{"name":"CBF_FAIL_REQUESTS","features":[162]},{"name":"CBF_FAIL_SELFCONNECTIONS","features":[162]},{"name":"CBF_SKIP_ALLNOTIFICATIONS","features":[162]},{"name":"CBF_SKIP_CONNECT_CONFIRMS","features":[162]},{"name":"CBF_SKIP_DISCONNECTS","features":[162]},{"name":"CBF_SKIP_REGISTRATIONS","features":[162]},{"name":"CBF_SKIP_UNREGISTRATIONS","features":[162]},{"name":"CONVCONTEXT","features":[3,6,162]},{"name":"CONVINFO","features":[3,6,162]},{"name":"CONVINFO_CONVERSATION_STATE","features":[162]},{"name":"CONVINFO_STATUS","features":[162]},{"name":"COPYDATASTRUCT","features":[162]},{"name":"CP_WINANSI","features":[162]},{"name":"CP_WINNEUTRAL","features":[162]},{"name":"CP_WINUNICODE","features":[162]},{"name":"ChangeClipboardChain","features":[3,162]},{"name":"CloseClipboard","features":[3,162]},{"name":"CountClipboardFormats","features":[162]},{"name":"DDEACK","features":[162]},{"name":"DDEADVISE","features":[162]},{"name":"DDEDATA","features":[162]},{"name":"DDELN","features":[162]},{"name":"DDEML_MSG_HOOK_DATA","features":[162]},{"name":"DDEPOKE","features":[162]},{"name":"DDEUP","features":[162]},{"name":"DDE_CLIENT_TRANSACTION_TYPE","features":[162]},{"name":"DDE_ENABLE_CALLBACK_CMD","features":[162]},{"name":"DDE_FACK","features":[162]},{"name":"DDE_FACKREQ","features":[162]},{"name":"DDE_FAPPSTATUS","features":[162]},{"name":"DDE_FBUSY","features":[162]},{"name":"DDE_FDEFERUPD","features":[162]},{"name":"DDE_FNOTPROCESSED","features":[162]},{"name":"DDE_FRELEASE","features":[162]},{"name":"DDE_FREQUESTED","features":[162]},{"name":"DDE_INITIALIZE_COMMAND","features":[162]},{"name":"DDE_NAME_SERVICE_CMD","features":[162]},{"name":"DMLERR_ADVACKTIMEOUT","features":[162]},{"name":"DMLERR_BUSY","features":[162]},{"name":"DMLERR_DATAACKTIMEOUT","features":[162]},{"name":"DMLERR_DLL_NOT_INITIALIZED","features":[162]},{"name":"DMLERR_DLL_USAGE","features":[162]},{"name":"DMLERR_EXECACKTIMEOUT","features":[162]},{"name":"DMLERR_FIRST","features":[162]},{"name":"DMLERR_INVALIDPARAMETER","features":[162]},{"name":"DMLERR_LAST","features":[162]},{"name":"DMLERR_LOW_MEMORY","features":[162]},{"name":"DMLERR_MEMORY_ERROR","features":[162]},{"name":"DMLERR_NOTPROCESSED","features":[162]},{"name":"DMLERR_NO_CONV_ESTABLISHED","features":[162]},{"name":"DMLERR_NO_ERROR","features":[162]},{"name":"DMLERR_POKEACKTIMEOUT","features":[162]},{"name":"DMLERR_POSTMSG_FAILED","features":[162]},{"name":"DMLERR_REENTRANCY","features":[162]},{"name":"DMLERR_SERVER_DIED","features":[162]},{"name":"DMLERR_SYS_ERROR","features":[162]},{"name":"DMLERR_UNADVACKTIMEOUT","features":[162]},{"name":"DMLERR_UNFOUND_QUEUE_ID","features":[162]},{"name":"DNS_FILTEROFF","features":[162]},{"name":"DNS_FILTERON","features":[162]},{"name":"DNS_REGISTER","features":[162]},{"name":"DNS_UNREGISTER","features":[162]},{"name":"DdeAbandonTransaction","features":[3,162]},{"name":"DdeAccessData","features":[162]},{"name":"DdeAddData","features":[162]},{"name":"DdeClientTransaction","features":[162]},{"name":"DdeCmpStringHandles","features":[162]},{"name":"DdeConnect","features":[3,6,162]},{"name":"DdeConnectList","features":[3,6,162]},{"name":"DdeCreateDataHandle","features":[162]},{"name":"DdeCreateStringHandleA","features":[162]},{"name":"DdeCreateStringHandleW","features":[162]},{"name":"DdeDisconnect","features":[3,162]},{"name":"DdeDisconnectList","features":[3,162]},{"name":"DdeEnableCallback","features":[3,162]},{"name":"DdeFreeDataHandle","features":[3,162]},{"name":"DdeFreeStringHandle","features":[3,162]},{"name":"DdeGetData","features":[162]},{"name":"DdeGetLastError","features":[162]},{"name":"DdeImpersonateClient","features":[3,162]},{"name":"DdeInitializeA","features":[162]},{"name":"DdeInitializeW","features":[162]},{"name":"DdeKeepStringHandle","features":[3,162]},{"name":"DdeNameService","features":[162]},{"name":"DdePostAdvise","features":[3,162]},{"name":"DdeQueryConvInfo","features":[3,6,162]},{"name":"DdeQueryNextServer","features":[162]},{"name":"DdeQueryStringA","features":[162]},{"name":"DdeQueryStringW","features":[162]},{"name":"DdeReconnect","features":[162]},{"name":"DdeSetQualityOfService","features":[3,6,162]},{"name":"DdeSetUserHandle","features":[3,162]},{"name":"DdeUnaccessData","features":[3,162]},{"name":"DdeUninitialize","features":[3,162]},{"name":"DeleteAtom","features":[162]},{"name":"EC_DISABLE","features":[162]},{"name":"EC_ENABLEALL","features":[162]},{"name":"EC_ENABLEONE","features":[162]},{"name":"EC_QUERYWAITING","features":[162]},{"name":"EmptyClipboard","features":[3,162]},{"name":"EnumClipboardFormats","features":[162]},{"name":"FindAtomA","features":[162]},{"name":"FindAtomW","features":[162]},{"name":"FreeDDElParam","features":[3,162]},{"name":"GetAtomNameA","features":[162]},{"name":"GetAtomNameW","features":[162]},{"name":"GetClipboardData","features":[3,162]},{"name":"GetClipboardFormatNameA","features":[162]},{"name":"GetClipboardFormatNameW","features":[162]},{"name":"GetClipboardOwner","features":[3,162]},{"name":"GetClipboardSequenceNumber","features":[162]},{"name":"GetClipboardViewer","features":[3,162]},{"name":"GetOpenClipboardWindow","features":[3,162]},{"name":"GetPriorityClipboardFormat","features":[162]},{"name":"GetUpdatedClipboardFormats","features":[3,162]},{"name":"GlobalAddAtomA","features":[162]},{"name":"GlobalAddAtomExA","features":[162]},{"name":"GlobalAddAtomExW","features":[162]},{"name":"GlobalAddAtomW","features":[162]},{"name":"GlobalDeleteAtom","features":[162]},{"name":"GlobalFindAtomA","features":[162]},{"name":"GlobalFindAtomW","features":[162]},{"name":"GlobalGetAtomNameA","features":[162]},{"name":"GlobalGetAtomNameW","features":[162]},{"name":"HCONV","features":[162]},{"name":"HCONVLIST","features":[162]},{"name":"HDATA_APPOWNED","features":[162]},{"name":"HDDEDATA","features":[162]},{"name":"HSZ","features":[162]},{"name":"HSZPAIR","features":[162]},{"name":"ImpersonateDdeClientWindow","features":[3,162]},{"name":"InitAtomTable","features":[3,162]},{"name":"IsClipboardFormatAvailable","features":[3,162]},{"name":"MAX_MONITORS","features":[162]},{"name":"METAFILEPICT","features":[14,162]},{"name":"MF_CALLBACKS","features":[162]},{"name":"MF_CONV","features":[162]},{"name":"MF_ERRORS","features":[162]},{"name":"MF_HSZ_INFO","features":[162]},{"name":"MF_LINKS","features":[162]},{"name":"MF_MASK","features":[162]},{"name":"MF_POSTMSGS","features":[162]},{"name":"MF_SENDMSGS","features":[162]},{"name":"MH_CLEANUP","features":[162]},{"name":"MH_CREATE","features":[162]},{"name":"MH_DELETE","features":[162]},{"name":"MH_KEEP","features":[162]},{"name":"MONCBSTRUCT","features":[3,6,162]},{"name":"MONCONVSTRUCT","features":[3,162]},{"name":"MONERRSTRUCT","features":[3,162]},{"name":"MONHSZSTRUCTA","features":[3,162]},{"name":"MONHSZSTRUCTW","features":[3,162]},{"name":"MONLINKSTRUCT","features":[3,162]},{"name":"MONMSGSTRUCT","features":[3,162]},{"name":"MSGF_DDEMGR","features":[162]},{"name":"OpenClipboard","features":[3,162]},{"name":"PFNCALLBACK","features":[162]},{"name":"PackDDElParam","features":[3,162]},{"name":"QID_SYNC","features":[162]},{"name":"RegisterClipboardFormatA","features":[162]},{"name":"RegisterClipboardFormatW","features":[162]},{"name":"RemoveClipboardFormatListener","features":[3,162]},{"name":"ReuseDDElParam","features":[3,162]},{"name":"ST_ADVISE","features":[162]},{"name":"ST_BLOCKED","features":[162]},{"name":"ST_BLOCKNEXT","features":[162]},{"name":"ST_CLIENT","features":[162]},{"name":"ST_CONNECTED","features":[162]},{"name":"ST_INLIST","features":[162]},{"name":"ST_ISLOCAL","features":[162]},{"name":"ST_ISSELF","features":[162]},{"name":"ST_TERMINATED","features":[162]},{"name":"SZDDESYS_ITEM_FORMATS","features":[162]},{"name":"SZDDESYS_ITEM_HELP","features":[162]},{"name":"SZDDESYS_ITEM_RTNMSG","features":[162]},{"name":"SZDDESYS_ITEM_STATUS","features":[162]},{"name":"SZDDESYS_ITEM_SYSITEMS","features":[162]},{"name":"SZDDESYS_ITEM_TOPICS","features":[162]},{"name":"SZDDESYS_TOPIC","features":[162]},{"name":"SZDDE_ITEM_ITEMLIST","features":[162]},{"name":"SetClipboardData","features":[3,162]},{"name":"SetClipboardViewer","features":[3,162]},{"name":"SetWinMetaFileBits","features":[14,162]},{"name":"TIMEOUT_ASYNC","features":[162]},{"name":"UnpackDDElParam","features":[3,162]},{"name":"WM_DDE_ACK","features":[162]},{"name":"WM_DDE_ADVISE","features":[162]},{"name":"WM_DDE_DATA","features":[162]},{"name":"WM_DDE_EXECUTE","features":[162]},{"name":"WM_DDE_FIRST","features":[162]},{"name":"WM_DDE_INITIATE","features":[162]},{"name":"WM_DDE_LAST","features":[162]},{"name":"WM_DDE_POKE","features":[162]},{"name":"WM_DDE_REQUEST","features":[162]},{"name":"WM_DDE_TERMINATE","features":[162]},{"name":"WM_DDE_UNADVISE","features":[162]},{"name":"XCLASS_BOOL","features":[162]},{"name":"XCLASS_DATA","features":[162]},{"name":"XCLASS_FLAGS","features":[162]},{"name":"XCLASS_MASK","features":[162]},{"name":"XCLASS_NOTIFICATION","features":[162]},{"name":"XST_ADVACKRCVD","features":[162]},{"name":"XST_ADVDATAACKRCVD","features":[162]},{"name":"XST_ADVDATASENT","features":[162]},{"name":"XST_ADVSENT","features":[162]},{"name":"XST_CONNECTED","features":[162]},{"name":"XST_DATARCVD","features":[162]},{"name":"XST_EXECACKRCVD","features":[162]},{"name":"XST_EXECSENT","features":[162]},{"name":"XST_INCOMPLETE","features":[162]},{"name":"XST_INIT1","features":[162]},{"name":"XST_INIT2","features":[162]},{"name":"XST_NULL","features":[162]},{"name":"XST_POKEACKRCVD","features":[162]},{"name":"XST_POKESENT","features":[162]},{"name":"XST_REQSENT","features":[162]},{"name":"XST_UNADVACKRCVD","features":[162]},{"name":"XST_UNADVSENT","features":[162]},{"name":"XTYPF_ACKREQ","features":[162]},{"name":"XTYPF_NOBLOCK","features":[162]},{"name":"XTYPF_NODATA","features":[162]},{"name":"XTYP_ADVDATA","features":[162]},{"name":"XTYP_ADVREQ","features":[162]},{"name":"XTYP_ADVSTART","features":[162]},{"name":"XTYP_ADVSTOP","features":[162]},{"name":"XTYP_CONNECT","features":[162]},{"name":"XTYP_CONNECT_CONFIRM","features":[162]},{"name":"XTYP_DISCONNECT","features":[162]},{"name":"XTYP_EXECUTE","features":[162]},{"name":"XTYP_MASK","features":[162]},{"name":"XTYP_MONITOR","features":[162]},{"name":"XTYP_POKE","features":[162]},{"name":"XTYP_REGISTER","features":[162]},{"name":"XTYP_REQUEST","features":[162]},{"name":"XTYP_SHIFT","features":[162]},{"name":"XTYP_UNREGISTER","features":[162]},{"name":"XTYP_WILDCONNECT","features":[162]},{"name":"XTYP_XACT_COMPLETE","features":[162]}],"549":[{"name":"CPU_ARCHITECTURE","features":[163]},{"name":"CPU_ARCHITECTURE_AMD64","features":[163]},{"name":"CPU_ARCHITECTURE_IA64","features":[163]},{"name":"CPU_ARCHITECTURE_INTEL","features":[163]},{"name":"EVT_WDSMCS_E_CP_CALLBACKS_NOT_REG","features":[163]},{"name":"EVT_WDSMCS_E_CP_CLOSE_INSTANCE_FAILED","features":[163]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED","features":[163]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED_CRITICAL","features":[163]},{"name":"EVT_WDSMCS_E_CP_INCOMPATIBLE_SERVER_VERSION","features":[163]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_FAILED","features":[163]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_MISSING","features":[163]},{"name":"EVT_WDSMCS_E_CP_MEMORY_LEAK","features":[163]},{"name":"EVT_WDSMCS_E_CP_OPEN_CONTENT_FAILED","features":[163]},{"name":"EVT_WDSMCS_E_CP_OPEN_INSTANCE_FAILED","features":[163]},{"name":"EVT_WDSMCS_E_CP_SHUTDOWN_FUNC_FAILED","features":[163]},{"name":"EVT_WDSMCS_E_DUPLICATE_MULTICAST_ADDR","features":[163]},{"name":"EVT_WDSMCS_E_NON_WDS_DUPLICATE_MULTICAST_ADDR","features":[163]},{"name":"EVT_WDSMCS_E_NSREG_CONTENT_PROVIDER_NOT_REG","features":[163]},{"name":"EVT_WDSMCS_E_NSREG_FAILURE","features":[163]},{"name":"EVT_WDSMCS_E_NSREG_NAMESPACE_EXISTS","features":[163]},{"name":"EVT_WDSMCS_E_NSREG_START_TIME_IN_PAST","features":[163]},{"name":"EVT_WDSMCS_E_PARAMETERS_READ_FAILED","features":[163]},{"name":"EVT_WDSMCS_S_PARAMETERS_READ","features":[163]},{"name":"EVT_WDSMCS_W_CP_DLL_LOAD_FAILED_NOT_CRITICAL","features":[163]},{"name":"FACILITY_WDSMCCLIENT","features":[163]},{"name":"FACILITY_WDSMCSERVER","features":[163]},{"name":"FACILITY_WDSTPTMGMT","features":[163]},{"name":"IWdsTransportCacheable","features":[163]},{"name":"IWdsTransportClient","features":[163]},{"name":"IWdsTransportCollection","features":[163]},{"name":"IWdsTransportConfigurationManager","features":[163]},{"name":"IWdsTransportConfigurationManager2","features":[163]},{"name":"IWdsTransportContent","features":[163]},{"name":"IWdsTransportContentProvider","features":[163]},{"name":"IWdsTransportDiagnosticsPolicy","features":[163]},{"name":"IWdsTransportManager","features":[163]},{"name":"IWdsTransportMulticastSessionPolicy","features":[163]},{"name":"IWdsTransportNamespace","features":[163]},{"name":"IWdsTransportNamespaceAutoCast","features":[163]},{"name":"IWdsTransportNamespaceManager","features":[163]},{"name":"IWdsTransportNamespaceScheduledCast","features":[163]},{"name":"IWdsTransportNamespaceScheduledCastAutoStart","features":[163]},{"name":"IWdsTransportNamespaceScheduledCastManualStart","features":[163]},{"name":"IWdsTransportServer","features":[163]},{"name":"IWdsTransportServer2","features":[163]},{"name":"IWdsTransportServicePolicy","features":[163]},{"name":"IWdsTransportServicePolicy2","features":[163]},{"name":"IWdsTransportSession","features":[163]},{"name":"IWdsTransportSetupManager","features":[163]},{"name":"IWdsTransportSetupManager2","features":[163]},{"name":"IWdsTransportTftpClient","features":[163]},{"name":"IWdsTransportTftpManager","features":[163]},{"name":"MC_SERVER_CURRENT_VERSION","features":[163]},{"name":"PFN_WDS_CLI_CALLBACK_MESSAGE_ID","features":[163]},{"name":"PFN_WdsCliCallback","features":[3,163]},{"name":"PFN_WdsCliTraceFunction","features":[163]},{"name":"PFN_WdsTransportClientReceiveContents","features":[3,163]},{"name":"PFN_WdsTransportClientReceiveMetadata","features":[3,163]},{"name":"PFN_WdsTransportClientSessionComplete","features":[3,163]},{"name":"PFN_WdsTransportClientSessionNegotiate","features":[3,163]},{"name":"PFN_WdsTransportClientSessionStart","features":[3,163]},{"name":"PFN_WdsTransportClientSessionStartEx","features":[3,163]},{"name":"PXE_ADDRESS","features":[163]},{"name":"PXE_ADDR_BROADCAST","features":[163]},{"name":"PXE_ADDR_USE_ADDR","features":[163]},{"name":"PXE_ADDR_USE_DHCP_RULES","features":[163]},{"name":"PXE_ADDR_USE_PORT","features":[163]},{"name":"PXE_BA_CUSTOM","features":[163]},{"name":"PXE_BA_IGNORE","features":[163]},{"name":"PXE_BA_NBP","features":[163]},{"name":"PXE_BA_REJECTED","features":[163]},{"name":"PXE_CALLBACK_MAX","features":[163]},{"name":"PXE_CALLBACK_RECV_REQUEST","features":[163]},{"name":"PXE_CALLBACK_SERVICE_CONTROL","features":[163]},{"name":"PXE_CALLBACK_SHUTDOWN","features":[163]},{"name":"PXE_DHCPV6_CLIENT_PORT","features":[163]},{"name":"PXE_DHCPV6_MESSAGE","features":[163]},{"name":"PXE_DHCPV6_MESSAGE_HEADER","features":[163]},{"name":"PXE_DHCPV6_NESTED_RELAY_MESSAGE","features":[163]},{"name":"PXE_DHCPV6_OPTION","features":[163]},{"name":"PXE_DHCPV6_RELAY_HOP_COUNT_LIMIT","features":[163]},{"name":"PXE_DHCPV6_RELAY_MESSAGE","features":[163]},{"name":"PXE_DHCPV6_SERVER_PORT","features":[163]},{"name":"PXE_DHCP_CLIENT_PORT","features":[163]},{"name":"PXE_DHCP_FILE_SIZE","features":[163]},{"name":"PXE_DHCP_HWAADR_SIZE","features":[163]},{"name":"PXE_DHCP_MAGIC_COOKIE_SIZE","features":[163]},{"name":"PXE_DHCP_MESSAGE","features":[163]},{"name":"PXE_DHCP_OPTION","features":[163]},{"name":"PXE_DHCP_SERVER_PORT","features":[163]},{"name":"PXE_DHCP_SERVER_SIZE","features":[163]},{"name":"PXE_GSI_SERVER_DUID","features":[163]},{"name":"PXE_GSI_TRACE_ENABLED","features":[163]},{"name":"PXE_MAX_ADDRESS","features":[163]},{"name":"PXE_PROVIDER","features":[3,163]},{"name":"PXE_PROV_ATTR_FILTER","features":[163]},{"name":"PXE_PROV_ATTR_FILTER_IPV6","features":[163]},{"name":"PXE_PROV_ATTR_IPV6_CAPABLE","features":[163]},{"name":"PXE_PROV_FILTER_ALL","features":[163]},{"name":"PXE_PROV_FILTER_DHCP_ONLY","features":[163]},{"name":"PXE_PROV_FILTER_PXE_ONLY","features":[163]},{"name":"PXE_REG_INDEX_BOTTOM","features":[163]},{"name":"PXE_REG_INDEX_TOP","features":[163]},{"name":"PXE_SERVER_PORT","features":[163]},{"name":"PXE_TRACE_ERROR","features":[163]},{"name":"PXE_TRACE_FATAL","features":[163]},{"name":"PXE_TRACE_INFO","features":[163]},{"name":"PXE_TRACE_VERBOSE","features":[163]},{"name":"PXE_TRACE_WARNING","features":[163]},{"name":"PxeAsyncRecvDone","features":[3,163]},{"name":"PxeDhcpAppendOption","features":[163]},{"name":"PxeDhcpAppendOptionRaw","features":[163]},{"name":"PxeDhcpGetOptionValue","features":[163]},{"name":"PxeDhcpGetVendorOptionValue","features":[163]},{"name":"PxeDhcpInitialize","features":[163]},{"name":"PxeDhcpIsValid","features":[3,163]},{"name":"PxeDhcpv6AppendOption","features":[163]},{"name":"PxeDhcpv6AppendOptionRaw","features":[163]},{"name":"PxeDhcpv6CreateRelayRepl","features":[163]},{"name":"PxeDhcpv6GetOptionValue","features":[163]},{"name":"PxeDhcpv6GetVendorOptionValue","features":[163]},{"name":"PxeDhcpv6Initialize","features":[163]},{"name":"PxeDhcpv6IsValid","features":[3,163]},{"name":"PxeDhcpv6ParseRelayForw","features":[163]},{"name":"PxeGetServerInfo","features":[163]},{"name":"PxeGetServerInfoEx","features":[163]},{"name":"PxePacketAllocate","features":[3,163]},{"name":"PxePacketFree","features":[3,163]},{"name":"PxeProviderEnumClose","features":[3,163]},{"name":"PxeProviderEnumFirst","features":[3,163]},{"name":"PxeProviderEnumNext","features":[3,163]},{"name":"PxeProviderFreeInfo","features":[3,163]},{"name":"PxeProviderQueryIndex","features":[163]},{"name":"PxeProviderRegister","features":[3,163,51]},{"name":"PxeProviderSetAttribute","features":[3,163]},{"name":"PxeProviderUnRegister","features":[163]},{"name":"PxeRegisterCallback","features":[3,163]},{"name":"PxeSendReply","features":[3,163]},{"name":"PxeTrace","features":[3,163]},{"name":"PxeTraceV","features":[3,163]},{"name":"TRANSPORTCLIENT_CALLBACK_ID","features":[163]},{"name":"TRANSPORTCLIENT_SESSION_INFO","features":[163]},{"name":"TRANSPORTPROVIDER_CALLBACK_ID","features":[163]},{"name":"TRANSPORTPROVIDER_CURRENT_VERSION","features":[163]},{"name":"WDSBP_OPTVAL_ACTION_ABORT","features":[163]},{"name":"WDSBP_OPTVAL_ACTION_APPROVAL","features":[163]},{"name":"WDSBP_OPTVAL_ACTION_REFERRAL","features":[163]},{"name":"WDSBP_OPTVAL_NBP_VER_7","features":[163]},{"name":"WDSBP_OPTVAL_NBP_VER_8","features":[163]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_NOPROMPT","features":[163]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTIN","features":[163]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTOUT","features":[163]},{"name":"WDSBP_OPT_TYPE_BYTE","features":[163]},{"name":"WDSBP_OPT_TYPE_IP4","features":[163]},{"name":"WDSBP_OPT_TYPE_IP6","features":[163]},{"name":"WDSBP_OPT_TYPE_NONE","features":[163]},{"name":"WDSBP_OPT_TYPE_STR","features":[163]},{"name":"WDSBP_OPT_TYPE_ULONG","features":[163]},{"name":"WDSBP_OPT_TYPE_USHORT","features":[163]},{"name":"WDSBP_OPT_TYPE_WSTR","features":[163]},{"name":"WDSBP_PK_TYPE_BCD","features":[163]},{"name":"WDSBP_PK_TYPE_DHCP","features":[163]},{"name":"WDSBP_PK_TYPE_DHCPV6","features":[163]},{"name":"WDSBP_PK_TYPE_WDSNBP","features":[163]},{"name":"WDSMCCLIENT_CATEGORY","features":[163]},{"name":"WDSMCSERVER_CATEGORY","features":[163]},{"name":"WDSMCS_E_CLIENT_DOESNOT_SUPPORT_SECURITY_MODE","features":[163]},{"name":"WDSMCS_E_CLIENT_NOT_FOUND","features":[163]},{"name":"WDSMCS_E_CONTENT_NOT_FOUND","features":[163]},{"name":"WDSMCS_E_CONTENT_PROVIDER_NOT_FOUND","features":[163]},{"name":"WDSMCS_E_INCOMPATIBLE_VERSION","features":[163]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_EXISTS","features":[163]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_STARTED","features":[163]},{"name":"WDSMCS_E_NAMESPACE_NOT_FOUND","features":[163]},{"name":"WDSMCS_E_NAMESPACE_SHUTDOWN_IN_PROGRESS","features":[163]},{"name":"WDSMCS_E_NS_START_FAILED_NO_CLIENTS","features":[163]},{"name":"WDSMCS_E_PACKET_HAS_SECURITY","features":[163]},{"name":"WDSMCS_E_PACKET_NOT_CHECKSUMED","features":[163]},{"name":"WDSMCS_E_PACKET_NOT_HASHED","features":[163]},{"name":"WDSMCS_E_PACKET_NOT_SIGNED","features":[163]},{"name":"WDSMCS_E_REQCALLBACKS_NOT_REG","features":[163]},{"name":"WDSMCS_E_SESSION_SHUTDOWN_IN_PROGRESS","features":[163]},{"name":"WDSMCS_E_START_TIME_IN_PAST","features":[163]},{"name":"WDSTPC_E_ALREADY_COMPLETED","features":[163]},{"name":"WDSTPC_E_ALREADY_IN_LOWEST_SESSION","features":[163]},{"name":"WDSTPC_E_ALREADY_IN_PROGRESS","features":[163]},{"name":"WDSTPC_E_CALLBACKS_NOT_REG","features":[163]},{"name":"WDSTPC_E_CLIENT_DEMOTE_NOT_SUPPORTED","features":[163]},{"name":"WDSTPC_E_KICKED_FAIL","features":[163]},{"name":"WDSTPC_E_KICKED_FALLBACK","features":[163]},{"name":"WDSTPC_E_KICKED_POLICY_NOT_MET","features":[163]},{"name":"WDSTPC_E_KICKED_UNKNOWN","features":[163]},{"name":"WDSTPC_E_MULTISTREAM_NOT_ENABLED","features":[163]},{"name":"WDSTPC_E_NOT_INITIALIZED","features":[163]},{"name":"WDSTPC_E_NO_IP4_INTERFACE","features":[163]},{"name":"WDSTPC_E_UNKNOWN_ERROR","features":[163]},{"name":"WDSTPTC_E_WIM_APPLY_REQUIRES_REFERENCE_IMAGE","features":[163]},{"name":"WDSTPTMGMT_CATEGORY","features":[163]},{"name":"WDSTPTMGMT_E_CANNOT_REFRESH_DIRTY_OBJECT","features":[163]},{"name":"WDSTPTMGMT_E_CANNOT_REINITIALIZE_OBJECT","features":[163]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_ALREADY_REGISTERED","features":[163]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_NOT_REGISTERED","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_AUTO_DISCONNECT_THRESHOLD","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_CLASS","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_CONTENT_PROVIDER_NAME","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_DIAGNOSTICS_COMPONENTS","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_IPV4_MULTICAST_ADDRESS","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS_SOURCE","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_IP_ADDRESS","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_MULTISTREAM_STREAM_COUNT","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_DATA","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_NAME","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_PARAMETERS","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_TIME","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_OPERATION","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_PROPERTY","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_IP_ADDRESS_RANGE","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_PORT_RANGE","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_SLOW_CLIENT_HANDLING_TYPE","features":[163]},{"name":"WDSTPTMGMT_E_INVALID_TFTP_MAX_BLOCKSIZE","features":[163]},{"name":"WDSTPTMGMT_E_IPV6_NOT_SUPPORTED","features":[163]},{"name":"WDSTPTMGMT_E_MULTICAST_SESSION_POLICY_NOT_SUPPORTED","features":[163]},{"name":"WDSTPTMGMT_E_NAMESPACE_ALREADY_REGISTERED","features":[163]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_ON_SERVER","features":[163]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_REGISTERED","features":[163]},{"name":"WDSTPTMGMT_E_NAMESPACE_READ_ONLY","features":[163]},{"name":"WDSTPTMGMT_E_NAMESPACE_REMOVED_FROM_SERVER","features":[163]},{"name":"WDSTPTMGMT_E_NETWORK_PROFILES_NOT_SUPPORTED","features":[163]},{"name":"WDSTPTMGMT_E_TFTP_MAX_BLOCKSIZE_NOT_SUPPORTED","features":[163]},{"name":"WDSTPTMGMT_E_TFTP_VAR_WINDOW_NOT_SUPPORTED","features":[163]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_ROLE_NOT_CONFIGURED","features":[163]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_UNAVAILABLE","features":[163]},{"name":"WDSTPTMGMT_E_UDP_PORT_POLICY_NOT_SUPPORTED","features":[163]},{"name":"WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS","features":[163]},{"name":"WDSTRANSPORT_DISCONNECT_TYPE","features":[163]},{"name":"WDSTRANSPORT_FEATURE_FLAGS","features":[163]},{"name":"WDSTRANSPORT_IP_ADDRESS_SOURCE_TYPE","features":[163]},{"name":"WDSTRANSPORT_IP_ADDRESS_TYPE","features":[163]},{"name":"WDSTRANSPORT_NAMESPACE_TYPE","features":[163]},{"name":"WDSTRANSPORT_NETWORK_PROFILE_TYPE","features":[163]},{"name":"WDSTRANSPORT_PROTOCOL_FLAGS","features":[163]},{"name":"WDSTRANSPORT_RESOURCE_UTILIZATION_UNKNOWN","features":[163]},{"name":"WDSTRANSPORT_SERVICE_NOTIFICATION","features":[163]},{"name":"WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE","features":[163]},{"name":"WDSTRANSPORT_TFTP_CAPABILITY","features":[163]},{"name":"WDSTRANSPORT_UDP_PORT_POLICY","features":[163]},{"name":"WDS_CLI_CRED","features":[163]},{"name":"WDS_CLI_FIRMWARE_BIOS","features":[163]},{"name":"WDS_CLI_FIRMWARE_EFI","features":[163]},{"name":"WDS_CLI_FIRMWARE_TYPE","features":[163]},{"name":"WDS_CLI_FIRMWARE_UNKNOWN","features":[163]},{"name":"WDS_CLI_IMAGE_PARAM_SPARSE_FILE","features":[163]},{"name":"WDS_CLI_IMAGE_PARAM_SUPPORTED_FIRMWARES","features":[163]},{"name":"WDS_CLI_IMAGE_PARAM_TYPE","features":[163]},{"name":"WDS_CLI_IMAGE_PARAM_UNKNOWN","features":[163]},{"name":"WDS_CLI_IMAGE_TYPE","features":[163]},{"name":"WDS_CLI_IMAGE_TYPE_UNKNOWN","features":[163]},{"name":"WDS_CLI_IMAGE_TYPE_VHD","features":[163]},{"name":"WDS_CLI_IMAGE_TYPE_VHDX","features":[163]},{"name":"WDS_CLI_IMAGE_TYPE_WIM","features":[163]},{"name":"WDS_CLI_MSG_COMPLETE","features":[163]},{"name":"WDS_CLI_MSG_PROGRESS","features":[163]},{"name":"WDS_CLI_MSG_START","features":[163]},{"name":"WDS_CLI_MSG_TEXT","features":[163]},{"name":"WDS_CLI_NO_SPARSE_FILE","features":[163]},{"name":"WDS_CLI_TRANSFER_ASYNCHRONOUS","features":[163]},{"name":"WDS_LOG_LEVEL_DISABLED","features":[163]},{"name":"WDS_LOG_LEVEL_ERROR","features":[163]},{"name":"WDS_LOG_LEVEL_INFO","features":[163]},{"name":"WDS_LOG_LEVEL_WARNING","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED_2","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED_2","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR_2","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_DRIVER_PACKAGE_NOT_ACCESSIBLE","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_ERROR","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_FINISHED","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_GENERIC_MESSAGE","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED2","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED3","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_MAX_CODE","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_END","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_FAILURE","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_START","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_END","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_START","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_STARTED","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_DOWNGRADE","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_END","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_START","features":[163]},{"name":"WDS_LOG_TYPE_CLIENT_UNATTEND_MODE","features":[163]},{"name":"WDS_MC_TRACE_ERROR","features":[163]},{"name":"WDS_MC_TRACE_FATAL","features":[163]},{"name":"WDS_MC_TRACE_INFO","features":[163]},{"name":"WDS_MC_TRACE_VERBOSE","features":[163]},{"name":"WDS_MC_TRACE_WARNING","features":[163]},{"name":"WDS_TRANSPORTCLIENT_AUTH","features":[163]},{"name":"WDS_TRANSPORTCLIENT_CALLBACKS","features":[3,163]},{"name":"WDS_TRANSPORTCLIENT_CURRENT_API_VERSION","features":[163]},{"name":"WDS_TRANSPORTCLIENT_MAX_CALLBACKS","features":[163]},{"name":"WDS_TRANSPORTCLIENT_NO_AUTH","features":[163]},{"name":"WDS_TRANSPORTCLIENT_NO_CACHE","features":[163]},{"name":"WDS_TRANSPORTCLIENT_PROTOCOL_MULTICAST","features":[163]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_CONTENTS","features":[163]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_METADATA","features":[163]},{"name":"WDS_TRANSPORTCLIENT_REQUEST","features":[163]},{"name":"WDS_TRANSPORTCLIENT_REQUEST_AUTH_LEVEL","features":[163]},{"name":"WDS_TRANSPORTCLIENT_SESSION_COMPLETE","features":[163]},{"name":"WDS_TRANSPORTCLIENT_SESSION_NEGOTIATE","features":[163]},{"name":"WDS_TRANSPORTCLIENT_SESSION_START","features":[163]},{"name":"WDS_TRANSPORTCLIENT_SESSION_STARTEX","features":[163]},{"name":"WDS_TRANSPORTCLIENT_STATUS_FAILURE","features":[163]},{"name":"WDS_TRANSPORTCLIENT_STATUS_IN_PROGRESS","features":[163]},{"name":"WDS_TRANSPORTCLIENT_STATUS_SUCCESS","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_CONTENT","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_INSTANCE","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_COMPARE_CONTENT","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_CREATE_INSTANCE","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_DUMP_STATE","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_METADATA","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_SIZE","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_INIT_PARAMS","features":[3,163,51]},{"name":"WDS_TRANSPORTPROVIDER_MAX_CALLBACKS","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_OPEN_CONTENT","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_READ_CONTENT","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_REFRESH_SETTINGS","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_SETTINGS","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_SHUTDOWN","features":[163]},{"name":"WDS_TRANSPORTPROVIDER_USER_ACCESS_CHECK","features":[163]},{"name":"WdsBpAddOption","features":[3,163]},{"name":"WdsBpCloseHandle","features":[3,163]},{"name":"WdsBpGetOptionBuffer","features":[3,163]},{"name":"WdsBpInitialize","features":[3,163]},{"name":"WdsBpParseInitialize","features":[3,163]},{"name":"WdsBpParseInitializev6","features":[3,163]},{"name":"WdsBpQueryOption","features":[3,163]},{"name":"WdsCliAuthorizeSession","features":[3,163]},{"name":"WdsCliCancelTransfer","features":[3,163]},{"name":"WdsCliClose","features":[3,163]},{"name":"WdsCliCreateSession","features":[3,163]},{"name":"WdsCliFindFirstImage","features":[3,163]},{"name":"WdsCliFindNextImage","features":[3,163]},{"name":"WdsCliFlagEnumFilterFirmware","features":[163]},{"name":"WdsCliFlagEnumFilterVersion","features":[163]},{"name":"WdsCliFreeStringArray","features":[163]},{"name":"WdsCliGetDriverQueryXml","features":[163]},{"name":"WdsCliGetEnumerationFlags","features":[3,163]},{"name":"WdsCliGetImageArchitecture","features":[3,163]},{"name":"WdsCliGetImageDescription","features":[3,163]},{"name":"WdsCliGetImageFiles","features":[3,163]},{"name":"WdsCliGetImageGroup","features":[3,163]},{"name":"WdsCliGetImageHalName","features":[3,163]},{"name":"WdsCliGetImageHandleFromFindHandle","features":[3,163]},{"name":"WdsCliGetImageHandleFromTransferHandle","features":[3,163]},{"name":"WdsCliGetImageIndex","features":[3,163]},{"name":"WdsCliGetImageLanguage","features":[3,163]},{"name":"WdsCliGetImageLanguages","features":[3,163]},{"name":"WdsCliGetImageLastModifiedTime","features":[3,163]},{"name":"WdsCliGetImageName","features":[3,163]},{"name":"WdsCliGetImageNamespace","features":[3,163]},{"name":"WdsCliGetImageParameter","features":[3,163]},{"name":"WdsCliGetImagePath","features":[3,163]},{"name":"WdsCliGetImageSize","features":[3,163]},{"name":"WdsCliGetImageType","features":[3,163]},{"name":"WdsCliGetImageVersion","features":[3,163]},{"name":"WdsCliGetTransferSize","features":[3,163]},{"name":"WdsCliInitializeLog","features":[3,163]},{"name":"WdsCliLog","features":[3,163]},{"name":"WdsCliObtainDriverPackages","features":[3,163]},{"name":"WdsCliObtainDriverPackagesEx","features":[3,163]},{"name":"WdsCliRegisterTrace","features":[163]},{"name":"WdsCliSetTransferBufferSize","features":[163]},{"name":"WdsCliTransferFile","features":[3,163]},{"name":"WdsCliTransferImage","features":[3,163]},{"name":"WdsCliWaitForTransfer","features":[3,163]},{"name":"WdsTptDiagnosticsComponentImageServer","features":[163]},{"name":"WdsTptDiagnosticsComponentMulticast","features":[163]},{"name":"WdsTptDiagnosticsComponentPxe","features":[163]},{"name":"WdsTptDiagnosticsComponentTftp","features":[163]},{"name":"WdsTptDisconnectAbort","features":[163]},{"name":"WdsTptDisconnectFallback","features":[163]},{"name":"WdsTptDisconnectUnknown","features":[163]},{"name":"WdsTptFeatureAdminPack","features":[163]},{"name":"WdsTptFeatureDeploymentServer","features":[163]},{"name":"WdsTptFeatureTransportServer","features":[163]},{"name":"WdsTptIpAddressIpv4","features":[163]},{"name":"WdsTptIpAddressIpv6","features":[163]},{"name":"WdsTptIpAddressSourceDhcp","features":[163]},{"name":"WdsTptIpAddressSourceRange","features":[163]},{"name":"WdsTptIpAddressSourceUnknown","features":[163]},{"name":"WdsTptIpAddressUnknown","features":[163]},{"name":"WdsTptNamespaceTypeAutoCast","features":[163]},{"name":"WdsTptNamespaceTypeScheduledCastAutoStart","features":[163]},{"name":"WdsTptNamespaceTypeScheduledCastManualStart","features":[163]},{"name":"WdsTptNamespaceTypeUnknown","features":[163]},{"name":"WdsTptNetworkProfile100Mbps","features":[163]},{"name":"WdsTptNetworkProfile10Mbps","features":[163]},{"name":"WdsTptNetworkProfile1Gbps","features":[163]},{"name":"WdsTptNetworkProfileCustom","features":[163]},{"name":"WdsTptNetworkProfileUnknown","features":[163]},{"name":"WdsTptProtocolMulticast","features":[163]},{"name":"WdsTptProtocolUnicast","features":[163]},{"name":"WdsTptServiceNotifyReadSettings","features":[163]},{"name":"WdsTptServiceNotifyUnknown","features":[163]},{"name":"WdsTptSlowClientHandlingAutoDisconnect","features":[163]},{"name":"WdsTptSlowClientHandlingMultistream","features":[163]},{"name":"WdsTptSlowClientHandlingNone","features":[163]},{"name":"WdsTptSlowClientHandlingUnknown","features":[163]},{"name":"WdsTptTftpCapMaximumBlockSize","features":[163]},{"name":"WdsTptTftpCapVariableWindow","features":[163]},{"name":"WdsTptUdpPortPolicyDynamic","features":[163]},{"name":"WdsTptUdpPortPolicyFixed","features":[163]},{"name":"WdsTransportCacheable","features":[163]},{"name":"WdsTransportClient","features":[163]},{"name":"WdsTransportClientAddRefBuffer","features":[163]},{"name":"WdsTransportClientCancelSession","features":[3,163]},{"name":"WdsTransportClientCancelSessionEx","features":[3,163]},{"name":"WdsTransportClientCloseSession","features":[3,163]},{"name":"WdsTransportClientCompleteReceive","features":[3,163]},{"name":"WdsTransportClientInitialize","features":[163]},{"name":"WdsTransportClientInitializeSession","features":[3,163]},{"name":"WdsTransportClientQueryStatus","features":[3,163]},{"name":"WdsTransportClientRegisterCallback","features":[3,163]},{"name":"WdsTransportClientReleaseBuffer","features":[163]},{"name":"WdsTransportClientShutdown","features":[163]},{"name":"WdsTransportClientStartSession","features":[3,163]},{"name":"WdsTransportClientWaitForCompletion","features":[3,163]},{"name":"WdsTransportCollection","features":[163]},{"name":"WdsTransportConfigurationManager","features":[163]},{"name":"WdsTransportContent","features":[163]},{"name":"WdsTransportContentProvider","features":[163]},{"name":"WdsTransportDiagnosticsPolicy","features":[163]},{"name":"WdsTransportManager","features":[163]},{"name":"WdsTransportMulticastSessionPolicy","features":[163]},{"name":"WdsTransportNamespace","features":[163]},{"name":"WdsTransportNamespaceAutoCast","features":[163]},{"name":"WdsTransportNamespaceManager","features":[163]},{"name":"WdsTransportNamespaceScheduledCast","features":[163]},{"name":"WdsTransportNamespaceScheduledCastAutoStart","features":[163]},{"name":"WdsTransportNamespaceScheduledCastManualStart","features":[163]},{"name":"WdsTransportServer","features":[163]},{"name":"WdsTransportServerAllocateBuffer","features":[3,163]},{"name":"WdsTransportServerCompleteRead","features":[3,163]},{"name":"WdsTransportServerFreeBuffer","features":[3,163]},{"name":"WdsTransportServerRegisterCallback","features":[3,163]},{"name":"WdsTransportServerTrace","features":[3,163]},{"name":"WdsTransportServerTraceV","features":[3,163]},{"name":"WdsTransportServicePolicy","features":[163]},{"name":"WdsTransportSession","features":[163]},{"name":"WdsTransportSetupManager","features":[163]},{"name":"WdsTransportTftpClient","features":[163]},{"name":"WdsTransportTftpManager","features":[163]}],"551":[{"name":"AcquireDeveloperLicense","features":[3,164]},{"name":"CheckDeveloperLicense","features":[3,164]},{"name":"RemoveDeveloperLicense","features":[3,164]}],"552":[{"name":"CeipIsOptedIn","features":[3,165]}],"554":[{"name":"ABNORMAL_RESET_DETECTED","features":[33]},{"name":"ACPI_BIOS_ERROR","features":[33]},{"name":"ACPI_BIOS_FATAL_ERROR","features":[33]},{"name":"ACPI_DRIVER_INTERNAL","features":[33]},{"name":"ACPI_FIRMWARE_WATCHDOG_TIMEOUT","features":[33]},{"name":"ACTIVE_EX_WORKER_THREAD_TERMINATION","features":[33]},{"name":"ADDRESS","features":[33]},{"name":"ADDRESS64","features":[33]},{"name":"ADDRESS_MODE","features":[33]},{"name":"AER_BRIDGE_DESCRIPTOR_FLAGS","features":[33]},{"name":"AER_ENDPOINT_DESCRIPTOR_FLAGS","features":[33]},{"name":"AER_ROOTPORT_DESCRIPTOR_FLAGS","features":[33]},{"name":"AGP_GART_CORRUPTION","features":[33]},{"name":"AGP_ILLEGALLY_REPROGRAMMED","features":[33]},{"name":"AGP_INTERNAL","features":[33]},{"name":"AGP_INVALID_ACCESS","features":[33]},{"name":"APC_CALLBACK_DATA","features":[33,9]},{"name":"APC_INDEX_MISMATCH","features":[33]},{"name":"API_VERSION","features":[33]},{"name":"API_VERSION_NUMBER","features":[33]},{"name":"APP_TAGGING_INITIALIZATION_FAILED","features":[33]},{"name":"ARM64_NT_CONTEXT","features":[33]},{"name":"ARM64_NT_NEON128","features":[33]},{"name":"ASSIGN_DRIVE_LETTERS_FAILED","features":[33]},{"name":"ATDISK_DRIVER_INTERNAL","features":[33]},{"name":"ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY","features":[33]},{"name":"ATTEMPTED_SWITCH_FROM_DPC","features":[33]},{"name":"ATTEMPTED_WRITE_TO_CM_PROTECTED_STORAGE","features":[33]},{"name":"ATTEMPTED_WRITE_TO_READONLY_MEMORY","features":[33]},{"name":"AUDIT_FAILURE","features":[33]},{"name":"AZURE_DEVICE_FW_DUMP","features":[33]},{"name":"AddVectoredContinueHandler","features":[3,33,9]},{"name":"AddVectoredExceptionHandler","features":[3,33,9]},{"name":"AddrMode1616","features":[33]},{"name":"AddrMode1632","features":[33]},{"name":"AddrModeFlat","features":[33]},{"name":"AddrModeReal","features":[33]},{"name":"BAD_EXHANDLE","features":[33]},{"name":"BAD_OBJECT_HEADER","features":[33]},{"name":"BAD_POOL_CALLER","features":[33]},{"name":"BAD_POOL_HEADER","features":[33]},{"name":"BAD_SYSTEM_CONFIG_INFO","features":[33]},{"name":"BC_BLUETOOTH_VERIFIER_FAULT","features":[33]},{"name":"BC_BTHMINI_VERIFIER_FAULT","features":[33]},{"name":"BGI_DETECTED_VIOLATION","features":[33]},{"name":"BIND_ALL_IMAGES","features":[33]},{"name":"BIND_CACHE_IMPORT_DLLS","features":[33]},{"name":"BIND_NO_BOUND_IMPORTS","features":[33]},{"name":"BIND_NO_UPDATE","features":[33]},{"name":"BIND_REPORT_64BIT_VA","features":[33]},{"name":"BITLOCKER_FATAL_ERROR","features":[33]},{"name":"BLUETOOTH_ERROR_RECOVERY_LIVEDUMP","features":[33]},{"name":"BOOTING_IN_SAFEMODE_DSREPAIR","features":[33]},{"name":"BOOTING_IN_SAFEMODE_MINIMAL","features":[33]},{"name":"BOOTING_IN_SAFEMODE_NETWORK","features":[33]},{"name":"BOOTLOG_ENABLED","features":[33]},{"name":"BOOTLOG_LOADED","features":[33]},{"name":"BOOTLOG_NOT_LOADED","features":[33]},{"name":"BOOTPROC_INITIALIZATION_FAILED","features":[33]},{"name":"BOUND_IMAGE_UNSUPPORTED","features":[33]},{"name":"BREAKAWAY_CABLE_TRANSITION","features":[33]},{"name":"BUGCHECK_CONTEXT_MODIFIER","features":[33]},{"name":"BUGCHECK_ERROR","features":[33]},{"name":"BUGCODE_ID_DRIVER","features":[33]},{"name":"BUGCODE_MBBADAPTER_DRIVER","features":[33]},{"name":"BUGCODE_NDIS_DRIVER","features":[33]},{"name":"BUGCODE_NDIS_DRIVER_LIVE_DUMP","features":[33]},{"name":"BUGCODE_NETADAPTER_DRIVER","features":[33]},{"name":"BUGCODE_USB3_DRIVER","features":[33]},{"name":"BUGCODE_USB_DRIVER","features":[33]},{"name":"BUGCODE_WIFIADAPTER_DRIVER","features":[33]},{"name":"Beep","features":[3,33]},{"name":"BindExpandFileHeaders","features":[33]},{"name":"BindForwarder","features":[33]},{"name":"BindForwarder32","features":[33]},{"name":"BindForwarder64","features":[33]},{"name":"BindForwarderNOT","features":[33]},{"name":"BindForwarderNOT32","features":[33]},{"name":"BindForwarderNOT64","features":[33]},{"name":"BindImage","features":[3,33]},{"name":"BindImageComplete","features":[33]},{"name":"BindImageEx","features":[3,33]},{"name":"BindImageModified","features":[33]},{"name":"BindImportModule","features":[33]},{"name":"BindImportModuleFailed","features":[33]},{"name":"BindImportProcedure","features":[33]},{"name":"BindImportProcedure32","features":[33]},{"name":"BindImportProcedure64","features":[33]},{"name":"BindImportProcedureFailed","features":[33]},{"name":"BindMismatchedSymbols","features":[33]},{"name":"BindNoRoomInImage","features":[33]},{"name":"BindOutOfMemory","features":[33]},{"name":"BindRvaToVaFailed","features":[33]},{"name":"BindSymbolsNotUpdated","features":[33]},{"name":"CACHE_INITIALIZATION_FAILED","features":[33]},{"name":"CACHE_MANAGER","features":[33]},{"name":"CALL_HAS_NOT_RETURNED_WATCHDOG_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CANCEL_STATE_IN_COMPLETED_IRP","features":[33]},{"name":"CANNOT_WRITE_CONFIGURATION","features":[33]},{"name":"CBA_CHECK_ARM_MACHINE_THUMB_TYPE_OVERRIDE","features":[33]},{"name":"CBA_CHECK_ENGOPT_DISALLOW_NETWORK_PATHS","features":[33]},{"name":"CBA_DEBUG_INFO","features":[33]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_CANCEL","features":[33]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_COMPLETE","features":[33]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_FAILURE","features":[33]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_PARTIAL","features":[33]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_START","features":[33]},{"name":"CBA_DUPLICATE_SYMBOL","features":[33]},{"name":"CBA_ENGINE_PRESENT","features":[33]},{"name":"CBA_EVENT","features":[33]},{"name":"CBA_MAP_JIT_SYMBOL","features":[33]},{"name":"CBA_READ_MEMORY","features":[33]},{"name":"CBA_SET_OPTIONS","features":[33]},{"name":"CBA_SRCSRV_EVENT","features":[33]},{"name":"CBA_SRCSRV_INFO","features":[33]},{"name":"CBA_SYMBOLS_UNLOADED","features":[33]},{"name":"CBA_UPDATE_STATUS_BAR","features":[33]},{"name":"CBA_XML_LOG","features":[33]},{"name":"CDFS_FILE_SYSTEM","features":[33]},{"name":"CERT_PE_IMAGE_DIGEST_ALL_IMPORT_INFO","features":[33]},{"name":"CERT_PE_IMAGE_DIGEST_DEBUG_INFO","features":[33]},{"name":"CERT_PE_IMAGE_DIGEST_NON_PE_INFO","features":[33]},{"name":"CERT_PE_IMAGE_DIGEST_RESOURCES","features":[33]},{"name":"CERT_SECTION_TYPE_ANY","features":[33]},{"name":"CHECKSUM_MAPVIEW_FAILURE","features":[33]},{"name":"CHECKSUM_MAP_FAILURE","features":[33]},{"name":"CHECKSUM_OPEN_FAILURE","features":[33]},{"name":"CHECKSUM_SUCCESS","features":[33]},{"name":"CHECKSUM_UNICODE_FAILURE","features":[33]},{"name":"CHIPSET_DETECTED_ERROR","features":[33]},{"name":"CID_HANDLE_CREATION","features":[33]},{"name":"CID_HANDLE_DELETION","features":[33]},{"name":"CLOCK_WATCHDOG_TIMEOUT","features":[33]},{"name":"CLUSTER_CLUSPORT_STATUS_IO_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSVFS_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSV_CLUSSVC_DISCONNECT_WATCHDOG","features":[33]},{"name":"CLUSTER_CSV_CLUSTER_WATCHDOG_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSV_SNAPSHOT_DEVICE_INFO_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSV_STATE_TRANSITION_INTERVAL_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSV_STATE_TRANSITION_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSV_STATUS_IO_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSV_VOLUME_ARRIVAL_LIVEDUMP","features":[33]},{"name":"CLUSTER_CSV_VOLUME_REMOVAL_LIVEDUMP","features":[33]},{"name":"CLUSTER_RESOURCE_CALL_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CLUSTER_SVHDX_LIVEDUMP","features":[33]},{"name":"CNSS_FILE_SYSTEM_FILTER","features":[33]},{"name":"CONFIG_INITIALIZATION_FAILED","features":[33]},{"name":"CONFIG_LIST_FAILED","features":[33]},{"name":"CONNECTED_STANDBY_WATCHDOG_TIMEOUT_LIVEDUMP","features":[33]},{"name":"CONTEXT","features":[33,9]},{"name":"CONTEXT","features":[33,9]},{"name":"CONTEXT","features":[33,9]},{"name":"CONTEXT_ALL_AMD64","features":[33]},{"name":"CONTEXT_ALL_ARM","features":[33]},{"name":"CONTEXT_ALL_ARM64","features":[33]},{"name":"CONTEXT_ALL_X86","features":[33]},{"name":"CONTEXT_AMD64","features":[33]},{"name":"CONTEXT_ARM","features":[33]},{"name":"CONTEXT_ARM64","features":[33]},{"name":"CONTEXT_CONTROL_AMD64","features":[33]},{"name":"CONTEXT_CONTROL_ARM","features":[33]},{"name":"CONTEXT_CONTROL_ARM64","features":[33]},{"name":"CONTEXT_CONTROL_X86","features":[33]},{"name":"CONTEXT_DEBUG_REGISTERS_AMD64","features":[33]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM","features":[33]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM64","features":[33]},{"name":"CONTEXT_DEBUG_REGISTERS_X86","features":[33]},{"name":"CONTEXT_EXCEPTION_ACTIVE_AMD64","features":[33]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM","features":[33]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM64","features":[33]},{"name":"CONTEXT_EXCEPTION_ACTIVE_X86","features":[33]},{"name":"CONTEXT_EXCEPTION_REPORTING_AMD64","features":[33]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM","features":[33]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM64","features":[33]},{"name":"CONTEXT_EXCEPTION_REPORTING_X86","features":[33]},{"name":"CONTEXT_EXCEPTION_REQUEST_AMD64","features":[33]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM","features":[33]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM64","features":[33]},{"name":"CONTEXT_EXCEPTION_REQUEST_X86","features":[33]},{"name":"CONTEXT_EXTENDED_REGISTERS_X86","features":[33]},{"name":"CONTEXT_FLAGS","features":[33]},{"name":"CONTEXT_FLOATING_POINT_AMD64","features":[33]},{"name":"CONTEXT_FLOATING_POINT_ARM","features":[33]},{"name":"CONTEXT_FLOATING_POINT_ARM64","features":[33]},{"name":"CONTEXT_FLOATING_POINT_X86","features":[33]},{"name":"CONTEXT_FULL_AMD64","features":[33]},{"name":"CONTEXT_FULL_ARM","features":[33]},{"name":"CONTEXT_FULL_ARM64","features":[33]},{"name":"CONTEXT_FULL_X86","features":[33]},{"name":"CONTEXT_INTEGER_AMD64","features":[33]},{"name":"CONTEXT_INTEGER_ARM","features":[33]},{"name":"CONTEXT_INTEGER_ARM64","features":[33]},{"name":"CONTEXT_INTEGER_X86","features":[33]},{"name":"CONTEXT_KERNEL_CET_AMD64","features":[33]},{"name":"CONTEXT_KERNEL_DEBUGGER_AMD64","features":[33]},{"name":"CONTEXT_RET_TO_GUEST_ARM64","features":[33]},{"name":"CONTEXT_SEGMENTS_AMD64","features":[33]},{"name":"CONTEXT_SEGMENTS_X86","features":[33]},{"name":"CONTEXT_SERVICE_ACTIVE_AMD64","features":[33]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM","features":[33]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM64","features":[33]},{"name":"CONTEXT_SERVICE_ACTIVE_X86","features":[33]},{"name":"CONTEXT_UNWOUND_TO_CALL_AMD64","features":[33]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM","features":[33]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM64","features":[33]},{"name":"CONTEXT_X18_ARM64","features":[33]},{"name":"CONTEXT_X86","features":[33]},{"name":"CONTEXT_XSTATE_AMD64","features":[33]},{"name":"CONTEXT_XSTATE_X86","features":[33]},{"name":"COREMSGCALL_INTERNAL_ERROR","features":[33]},{"name":"COREMSG_INTERNAL_ERROR","features":[33]},{"name":"CORRUPT_ACCESS_TOKEN","features":[33]},{"name":"CPU_INFORMATION","features":[33]},{"name":"CRASHDUMP_WATCHDOG_TIMEOUT","features":[33]},{"name":"CREATE_DELETE_LOCK_NOT_LOCKED","features":[33]},{"name":"CREATE_PROCESS_DEBUG_EVENT","features":[33]},{"name":"CREATE_PROCESS_DEBUG_INFO","features":[3,33,39]},{"name":"CREATE_THREAD_DEBUG_EVENT","features":[33]},{"name":"CREATE_THREAD_DEBUG_INFO","features":[3,33,39]},{"name":"CRITICAL_INITIALIZATION_FAILURE","features":[33]},{"name":"CRITICAL_OBJECT_TERMINATION","features":[33]},{"name":"CRITICAL_PROCESS_DIED","features":[33]},{"name":"CRITICAL_SERVICE_FAILED","features":[33]},{"name":"CRITICAL_STRUCTURE_CORRUPTION","features":[33]},{"name":"CRYPTO_LIBRARY_INTERNAL_ERROR","features":[33]},{"name":"CRYPTO_SELF_TEST_FAILURE","features":[33]},{"name":"CancelCallback","features":[33]},{"name":"CheckRemoteDebuggerPresent","features":[3,33]},{"name":"CheckSumMappedFile","features":[33,35]},{"name":"CheckSumMappedFile","features":[33,35]},{"name":"CloseThreadWaitChainSession","features":[33]},{"name":"CommentStreamA","features":[33]},{"name":"CommentStreamW","features":[33]},{"name":"ContinueDebugEvent","features":[3,33]},{"name":"CopyContext","features":[3,33,9]},{"name":"DAM_WATCHDOG_TIMEOUT","features":[33]},{"name":"DATA_BUS_ERROR","features":[33]},{"name":"DATA_COHERENCY_EXCEPTION","features":[33]},{"name":"DBGHELP_DATA_REPORT_STRUCT","features":[33]},{"name":"DBGPROP_ATTRIB_ACCESS_FINAL","features":[33]},{"name":"DBGPROP_ATTRIB_ACCESS_PRIVATE","features":[33]},{"name":"DBGPROP_ATTRIB_ACCESS_PROTECTED","features":[33]},{"name":"DBGPROP_ATTRIB_ACCESS_PUBLIC","features":[33]},{"name":"DBGPROP_ATTRIB_FLAGS","features":[33]},{"name":"DBGPROP_ATTRIB_FRAME_INCATCHBLOCK","features":[33]},{"name":"DBGPROP_ATTRIB_FRAME_INFINALLYBLOCK","features":[33]},{"name":"DBGPROP_ATTRIB_FRAME_INTRYBLOCK","features":[33]},{"name":"DBGPROP_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[33]},{"name":"DBGPROP_ATTRIB_NO_ATTRIB","features":[33]},{"name":"DBGPROP_ATTRIB_STORAGE_FIELD","features":[33]},{"name":"DBGPROP_ATTRIB_STORAGE_GLOBAL","features":[33]},{"name":"DBGPROP_ATTRIB_STORAGE_STATIC","features":[33]},{"name":"DBGPROP_ATTRIB_STORAGE_VIRTUAL","features":[33]},{"name":"DBGPROP_ATTRIB_TYPE_IS_CONSTANT","features":[33]},{"name":"DBGPROP_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[33]},{"name":"DBGPROP_ATTRIB_TYPE_IS_VOLATILE","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EVENT","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EXPANDABLE","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_IS_FAKE","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_IS_INVALID","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_IS_METHOD","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RAW_STRING","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RETURN_VALUE","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_PENDING_MUTATION","features":[33]},{"name":"DBGPROP_ATTRIB_VALUE_READONLY","features":[33]},{"name":"DBGPROP_INFO","features":[33]},{"name":"DBGPROP_INFO_ATTRIBUTES","features":[33]},{"name":"DBGPROP_INFO_AUTOEXPAND","features":[33]},{"name":"DBGPROP_INFO_BEAUTIFY","features":[33]},{"name":"DBGPROP_INFO_CALLTOSTRING","features":[33]},{"name":"DBGPROP_INFO_DEBUGPROP","features":[33]},{"name":"DBGPROP_INFO_FULLNAME","features":[33]},{"name":"DBGPROP_INFO_NAME","features":[33]},{"name":"DBGPROP_INFO_TYPE","features":[33]},{"name":"DBGPROP_INFO_VALUE","features":[33]},{"name":"DBHHEADER_CVMISC","features":[33]},{"name":"DBHHEADER_DEBUGDIRS","features":[33]},{"name":"DBHHEADER_PDBGUID","features":[33]},{"name":"DEBUG_EVENT","features":[3,33,39]},{"name":"DEBUG_EVENT_CODE","features":[33]},{"name":"DEREF_UNKNOWN_LOGON_SESSION","features":[33]},{"name":"DEVICE_DIAGNOSTIC_LOG_LIVEDUMP","features":[33]},{"name":"DEVICE_QUEUE_NOT_BUSY","features":[33]},{"name":"DEVICE_REFERENCE_COUNT_NOT_ZERO","features":[33]},{"name":"DFSC_FILE_SYSTEM","features":[33]},{"name":"DFS_FILE_SYSTEM","features":[33]},{"name":"DIGEST_FUNCTION","features":[3,33]},{"name":"DIRECTED_FX_TRANSITION_LIVEDUMP","features":[33]},{"name":"DIRTY_MAPPED_PAGES_CONGESTION","features":[33]},{"name":"DIRTY_NOWRITE_PAGES_CONGESTION","features":[33]},{"name":"DISORDERLY_SHUTDOWN","features":[33]},{"name":"DISPATCHER_CONTEXT","features":[3,33,9]},{"name":"DISPATCHER_CONTEXT","features":[3,33,9]},{"name":"DMA_COMMON_BUFFER_VECTOR_ERROR","features":[33]},{"name":"DMP_CONTEXT_RECORD_SIZE_32","features":[33]},{"name":"DMP_CONTEXT_RECORD_SIZE_64","features":[33]},{"name":"DMP_HEADER_COMMENT_SIZE","features":[33]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_32","features":[33]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_64","features":[33]},{"name":"DMP_RESERVED_0_SIZE_32","features":[33]},{"name":"DMP_RESERVED_0_SIZE_64","features":[33]},{"name":"DMP_RESERVED_2_SIZE_32","features":[33]},{"name":"DMP_RESERVED_3_SIZE_32","features":[33]},{"name":"DPC_WATCHDOG_TIMEOUT","features":[33]},{"name":"DPC_WATCHDOG_VIOLATION","features":[33]},{"name":"DRIPS_SW_HW_DIVERGENCE_LIVEDUMP","features":[33]},{"name":"DRIVER_CAUGHT_MODIFYING_FREED_POOL","features":[33]},{"name":"DRIVER_CORRUPTED_EXPOOL","features":[33]},{"name":"DRIVER_CORRUPTED_MMPOOL","features":[33]},{"name":"DRIVER_CORRUPTED_SYSPTES","features":[33]},{"name":"DRIVER_INVALID_CRUNTIME_PARAMETER","features":[33]},{"name":"DRIVER_INVALID_STACK_ACCESS","features":[33]},{"name":"DRIVER_IRQL_NOT_LESS_OR_EQUAL","features":[33]},{"name":"DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS","features":[33]},{"name":"DRIVER_OVERRAN_STACK_BUFFER","features":[33]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[33]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION_M","features":[33]},{"name":"DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[33]},{"name":"DRIVER_PNP_WATCHDOG","features":[33]},{"name":"DRIVER_PORTION_MUST_BE_NONPAGED","features":[33]},{"name":"DRIVER_POWER_STATE_FAILURE","features":[33]},{"name":"DRIVER_RETURNED_HOLDING_CANCEL_LOCK","features":[33]},{"name":"DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN","features":[33]},{"name":"DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS","features":[33]},{"name":"DRIVER_UNMAPPING_INVALID_VIEW","features":[33]},{"name":"DRIVER_USED_EXCESSIVE_PTES","features":[33]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION","features":[33]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION_LIVEDUMP","features":[33]},{"name":"DRIVER_VERIFIER_DMA_VIOLATION","features":[33]},{"name":"DRIVER_VERIFIER_IOMANAGER_VIOLATION","features":[33]},{"name":"DRIVER_VERIFIER_TRACKING_LIVE_DUMP","features":[33]},{"name":"DRIVER_VIOLATION","features":[33]},{"name":"DRIVE_EXTENDER","features":[33]},{"name":"DSLFLAG_MISMATCHED_DBG","features":[33]},{"name":"DSLFLAG_MISMATCHED_PDB","features":[33]},{"name":"DUMP_FILE_ATTRIBUTES","features":[33]},{"name":"DUMP_HEADER32","features":[3,33]},{"name":"DUMP_HEADER64","features":[3,33]},{"name":"DUMP_SUMMARY_VALID_CURRENT_USER_VA","features":[33]},{"name":"DUMP_SUMMARY_VALID_KERNEL_VA","features":[33]},{"name":"DUMP_TYPE","features":[33]},{"name":"DUMP_TYPE_AUTOMATIC","features":[33]},{"name":"DUMP_TYPE_BITMAP_FULL","features":[33]},{"name":"DUMP_TYPE_BITMAP_KERNEL","features":[33]},{"name":"DUMP_TYPE_FULL","features":[33]},{"name":"DUMP_TYPE_HEADER","features":[33]},{"name":"DUMP_TYPE_INVALID","features":[33]},{"name":"DUMP_TYPE_SUMMARY","features":[33]},{"name":"DUMP_TYPE_TRIAGE","features":[33]},{"name":"DUMP_TYPE_UNKNOWN","features":[33]},{"name":"DYNAMIC_ADD_PROCESSOR_MISMATCH","features":[33]},{"name":"DbgHelpCreateUserDump","features":[3,33]},{"name":"DbgHelpCreateUserDumpW","features":[3,33]},{"name":"DebugActiveProcess","features":[3,33]},{"name":"DebugActiveProcessStop","features":[3,33]},{"name":"DebugBreak","features":[33]},{"name":"DebugBreakProcess","features":[3,33]},{"name":"DebugPropertyInfo","features":[33]},{"name":"DebugSetProcessKillOnExit","features":[3,33]},{"name":"DecodePointer","features":[33]},{"name":"DecodeRemotePointer","features":[3,33]},{"name":"DecodeSystemPointer","features":[33]},{"name":"EFS_FATAL_ERROR","features":[33]},{"name":"ELAM_DRIVER_DETECTED_FATAL_ERROR","features":[33]},{"name":"EMPTY_THREAD_REAPER_LIST","features":[33]},{"name":"EM_INITIALIZATION_ERROR","features":[33]},{"name":"END_OF_NT_EVALUATION_PERIOD","features":[33]},{"name":"ERESOURCE_INVALID_RELEASE","features":[33]},{"name":"ERRATA_WORKAROUND_UNSUCCESSFUL","features":[33]},{"name":"ERROR_IMAGE_NOT_STRIPPED","features":[33]},{"name":"ERROR_NO_DBG_POINTER","features":[33]},{"name":"ERROR_NO_PDB_POINTER","features":[33]},{"name":"ESLFLAG_FULLPATH","features":[33]},{"name":"ESLFLAG_INLINE_SITE","features":[33]},{"name":"ESLFLAG_NEAREST","features":[33]},{"name":"ESLFLAG_NEXT","features":[33]},{"name":"ESLFLAG_PREV","features":[33]},{"name":"EVENT_SRCSPEW","features":[33]},{"name":"EVENT_SRCSPEW_END","features":[33]},{"name":"EVENT_SRCSPEW_START","features":[33]},{"name":"EVENT_TRACING_FATAL_ERROR","features":[33]},{"name":"EXCEPTION_CONTINUE_EXECUTION","features":[33]},{"name":"EXCEPTION_CONTINUE_SEARCH","features":[33]},{"name":"EXCEPTION_DEBUG_EVENT","features":[33]},{"name":"EXCEPTION_DEBUG_INFO","features":[3,33]},{"name":"EXCEPTION_EXECUTE_HANDLER","features":[33]},{"name":"EXCEPTION_ON_INVALID_STACK","features":[33]},{"name":"EXCEPTION_POINTERS","features":[3,33,9]},{"name":"EXCEPTION_RECORD","features":[3,33]},{"name":"EXCEPTION_RECORD32","features":[3,33]},{"name":"EXCEPTION_RECORD64","features":[3,33]},{"name":"EXCEPTION_SCOPE_INVALID","features":[33]},{"name":"EXFAT_FILE_SYSTEM","features":[33]},{"name":"EXIT_PROCESS_DEBUG_EVENT","features":[33]},{"name":"EXIT_PROCESS_DEBUG_INFO","features":[33]},{"name":"EXIT_THREAD_DEBUG_EVENT","features":[33]},{"name":"EXIT_THREAD_DEBUG_INFO","features":[33]},{"name":"EXRESOURCE_TIMEOUT_LIVEDUMP","features":[33]},{"name":"EXT_OUTPUT_VER","features":[33]},{"name":"EX_PROP_INFO_DEBUGEXTPROP","features":[33]},{"name":"EX_PROP_INFO_FLAGS","features":[33]},{"name":"EX_PROP_INFO_ID","features":[33]},{"name":"EX_PROP_INFO_LOCKBYTES","features":[33]},{"name":"EX_PROP_INFO_NTYPE","features":[33]},{"name":"EX_PROP_INFO_NVALUE","features":[33]},{"name":"EncodePointer","features":[33]},{"name":"EncodeRemotePointer","features":[3,33]},{"name":"EncodeSystemPointer","features":[33]},{"name":"EnumDirTree","features":[3,33]},{"name":"EnumDirTreeW","features":[3,33]},{"name":"EnumerateLoadedModules","features":[3,33]},{"name":"EnumerateLoadedModules64","features":[3,33]},{"name":"EnumerateLoadedModulesEx","features":[3,33]},{"name":"EnumerateLoadedModulesExW","features":[3,33]},{"name":"EnumerateLoadedModulesW64","features":[3,33]},{"name":"ExceptionStream","features":[33]},{"name":"ExtendedDebugPropertyInfo","features":[3,43,33,44]},{"name":"FACILITY_AAF","features":[33]},{"name":"FACILITY_ACCELERATOR","features":[33]},{"name":"FACILITY_ACS","features":[33]},{"name":"FACILITY_ACTION_QUEUE","features":[33]},{"name":"FACILITY_AUDCLNT","features":[33]},{"name":"FACILITY_AUDIO","features":[33]},{"name":"FACILITY_AUDIOSTREAMING","features":[33]},{"name":"FACILITY_BACKGROUNDCOPY","features":[33]},{"name":"FACILITY_BCD","features":[33]},{"name":"FACILITY_BLB","features":[33]},{"name":"FACILITY_BLBUI","features":[33]},{"name":"FACILITY_BLB_CLI","features":[33]},{"name":"FACILITY_BLUETOOTH_ATT","features":[33]},{"name":"FACILITY_CERT","features":[33]},{"name":"FACILITY_CMI","features":[33]},{"name":"FACILITY_CODE","features":[33]},{"name":"FACILITY_COMPLUS","features":[33]},{"name":"FACILITY_CONFIGURATION","features":[33]},{"name":"FACILITY_CONTROL","features":[33]},{"name":"FACILITY_DAF","features":[33]},{"name":"FACILITY_DEBUGGERS","features":[33]},{"name":"FACILITY_DEFRAG","features":[33]},{"name":"FACILITY_DELIVERY_OPTIMIZATION","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_BINLSVC","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_CONTENT_PROVIDER","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_DRIVER_PROVISIONING","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_IMAGING","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MANAGEMENT","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_CLIENT","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_SERVER","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_PXE","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_SERVER","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TFTP","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TRANSPORT_MANAGEMENT","features":[33]},{"name":"FACILITY_DEPLOYMENT_SERVICES_UTIL","features":[33]},{"name":"FACILITY_DEVICE_UPDATE_AGENT","features":[33]},{"name":"FACILITY_DIRECT2D","features":[33]},{"name":"FACILITY_DIRECT3D10","features":[33]},{"name":"FACILITY_DIRECT3D11","features":[33]},{"name":"FACILITY_DIRECT3D11_DEBUG","features":[33]},{"name":"FACILITY_DIRECT3D12","features":[33]},{"name":"FACILITY_DIRECT3D12_DEBUG","features":[33]},{"name":"FACILITY_DIRECTMUSIC","features":[33]},{"name":"FACILITY_DIRECTORYSERVICE","features":[33]},{"name":"FACILITY_DISPATCH","features":[33]},{"name":"FACILITY_DLS","features":[33]},{"name":"FACILITY_DMSERVER","features":[33]},{"name":"FACILITY_DPLAY","features":[33]},{"name":"FACILITY_DRVSERVICING","features":[33]},{"name":"FACILITY_DXCORE","features":[33]},{"name":"FACILITY_DXGI","features":[33]},{"name":"FACILITY_DXGI_DDI","features":[33]},{"name":"FACILITY_EAP","features":[33]},{"name":"FACILITY_EAS","features":[33]},{"name":"FACILITY_FVE","features":[33]},{"name":"FACILITY_FWP","features":[33]},{"name":"FACILITY_GAME","features":[33]},{"name":"FACILITY_GRAPHICS","features":[33]},{"name":"FACILITY_HSP_SERVICES","features":[33]},{"name":"FACILITY_HSP_SOFTWARE","features":[33]},{"name":"FACILITY_HTTP","features":[33]},{"name":"FACILITY_INPUT","features":[33]},{"name":"FACILITY_INTERNET","features":[33]},{"name":"FACILITY_IORING","features":[33]},{"name":"FACILITY_ITF","features":[33]},{"name":"FACILITY_JSCRIPT","features":[33]},{"name":"FACILITY_LEAP","features":[33]},{"name":"FACILITY_LINGUISTIC_SERVICES","features":[33]},{"name":"FACILITY_MBN","features":[33]},{"name":"FACILITY_MEDIASERVER","features":[33]},{"name":"FACILITY_METADIRECTORY","features":[33]},{"name":"FACILITY_MOBILE","features":[33]},{"name":"FACILITY_MSMQ","features":[33]},{"name":"FACILITY_NAP","features":[33]},{"name":"FACILITY_NDIS","features":[33]},{"name":"FACILITY_NT_BIT","features":[33]},{"name":"FACILITY_NULL","features":[33]},{"name":"FACILITY_OCP_UPDATE_AGENT","features":[33]},{"name":"FACILITY_ONLINE_ID","features":[33]},{"name":"FACILITY_OPC","features":[33]},{"name":"FACILITY_P2P","features":[33]},{"name":"FACILITY_P2P_INT","features":[33]},{"name":"FACILITY_PARSE","features":[33]},{"name":"FACILITY_PIDGENX","features":[33]},{"name":"FACILITY_PIX","features":[33]},{"name":"FACILITY_PLA","features":[33]},{"name":"FACILITY_POWERSHELL","features":[33]},{"name":"FACILITY_PRESENTATION","features":[33]},{"name":"FACILITY_QUIC","features":[33]},{"name":"FACILITY_RAS","features":[33]},{"name":"FACILITY_RESTORE","features":[33]},{"name":"FACILITY_RPC","features":[33]},{"name":"FACILITY_SCARD","features":[33]},{"name":"FACILITY_SCRIPT","features":[33]},{"name":"FACILITY_SDIAG","features":[33]},{"name":"FACILITY_SECURITY","features":[33]},{"name":"FACILITY_SERVICE_FABRIC","features":[33]},{"name":"FACILITY_SETUPAPI","features":[33]},{"name":"FACILITY_SHELL","features":[33]},{"name":"FACILITY_SOS","features":[33]},{"name":"FACILITY_SPP","features":[33]},{"name":"FACILITY_SQLITE","features":[33]},{"name":"FACILITY_SSPI","features":[33]},{"name":"FACILITY_STATEREPOSITORY","features":[33]},{"name":"FACILITY_STATE_MANAGEMENT","features":[33]},{"name":"FACILITY_STORAGE","features":[33]},{"name":"FACILITY_SXS","features":[33]},{"name":"FACILITY_SYNCENGINE","features":[33]},{"name":"FACILITY_TIERING","features":[33]},{"name":"FACILITY_TPM_SERVICES","features":[33]},{"name":"FACILITY_TPM_SOFTWARE","features":[33]},{"name":"FACILITY_TTD","features":[33]},{"name":"FACILITY_UI","features":[33]},{"name":"FACILITY_UMI","features":[33]},{"name":"FACILITY_URT","features":[33]},{"name":"FACILITY_USERMODE_COMMONLOG","features":[33]},{"name":"FACILITY_USERMODE_FILTER_MANAGER","features":[33]},{"name":"FACILITY_USERMODE_HNS","features":[33]},{"name":"FACILITY_USERMODE_HYPERVISOR","features":[33]},{"name":"FACILITY_USERMODE_LICENSING","features":[33]},{"name":"FACILITY_USERMODE_SDBUS","features":[33]},{"name":"FACILITY_USERMODE_SPACES","features":[33]},{"name":"FACILITY_USERMODE_VHD","features":[33]},{"name":"FACILITY_USERMODE_VIRTUALIZATION","features":[33]},{"name":"FACILITY_USERMODE_VOLMGR","features":[33]},{"name":"FACILITY_USERMODE_VOLSNAP","features":[33]},{"name":"FACILITY_USER_MODE_SECURITY_CORE","features":[33]},{"name":"FACILITY_USN","features":[33]},{"name":"FACILITY_UTC","features":[33]},{"name":"FACILITY_VISUALCPP","features":[33]},{"name":"FACILITY_WEB","features":[33]},{"name":"FACILITY_WEBSERVICES","features":[33]},{"name":"FACILITY_WEB_SOCKET","features":[33]},{"name":"FACILITY_WEP","features":[33]},{"name":"FACILITY_WER","features":[33]},{"name":"FACILITY_WIA","features":[33]},{"name":"FACILITY_WIN32","features":[33]},{"name":"FACILITY_WINCODEC_DWRITE_DWM","features":[33]},{"name":"FACILITY_WINDOWS","features":[33]},{"name":"FACILITY_WINDOWSUPDATE","features":[33]},{"name":"FACILITY_WINDOWS_CE","features":[33]},{"name":"FACILITY_WINDOWS_DEFENDER","features":[33]},{"name":"FACILITY_WINDOWS_SETUP","features":[33]},{"name":"FACILITY_WINDOWS_STORE","features":[33]},{"name":"FACILITY_WINML","features":[33]},{"name":"FACILITY_WINPE","features":[33]},{"name":"FACILITY_WINRM","features":[33]},{"name":"FACILITY_WMAAECMA","features":[33]},{"name":"FACILITY_WPN","features":[33]},{"name":"FACILITY_WSBAPP","features":[33]},{"name":"FACILITY_WSB_ONLINE","features":[33]},{"name":"FACILITY_XAML","features":[33]},{"name":"FACILITY_XBOX","features":[33]},{"name":"FACILITY_XPS","features":[33]},{"name":"FAST_ERESOURCE_PRECONDITION_VIOLATION","features":[33]},{"name":"FATAL_ABNORMAL_RESET_ERROR","features":[33]},{"name":"FATAL_UNHANDLED_HARD_ERROR","features":[33]},{"name":"FAT_FILE_SYSTEM","features":[33]},{"name":"FAULTY_HARDWARE_CORRUPTED_PAGE","features":[33]},{"name":"FILE_INITIALIZATION_FAILED","features":[33]},{"name":"FILE_SYSTEM","features":[33]},{"name":"FLAG_ENGINE_PRESENT","features":[33]},{"name":"FLAG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[33]},{"name":"FLAG_OVERRIDE_ARM_MACHINE_TYPE","features":[33]},{"name":"FLOPPY_INTERNAL_ERROR","features":[33]},{"name":"FLTMGR_FILE_SYSTEM","features":[33]},{"name":"FORMAT_MESSAGE_ALLOCATE_BUFFER","features":[33]},{"name":"FORMAT_MESSAGE_ARGUMENT_ARRAY","features":[33]},{"name":"FORMAT_MESSAGE_FROM_HMODULE","features":[33]},{"name":"FORMAT_MESSAGE_FROM_STRING","features":[33]},{"name":"FORMAT_MESSAGE_FROM_SYSTEM","features":[33]},{"name":"FORMAT_MESSAGE_IGNORE_INSERTS","features":[33]},{"name":"FORMAT_MESSAGE_OPTIONS","features":[33]},{"name":"FPO_DATA","features":[33]},{"name":"FP_EMULATION_ERROR","features":[33]},{"name":"FSRTL_EXTRA_CREATE_PARAMETER_VIOLATION","features":[33]},{"name":"FatalAppExitA","features":[33]},{"name":"FatalAppExitW","features":[33]},{"name":"FatalExit","features":[33]},{"name":"FindDebugInfoFile","features":[3,33]},{"name":"FindDebugInfoFileEx","features":[3,33]},{"name":"FindDebugInfoFileExW","features":[3,33]},{"name":"FindExecutableImage","features":[3,33]},{"name":"FindExecutableImageEx","features":[3,33]},{"name":"FindExecutableImageExW","features":[3,33]},{"name":"FindFileInPath","features":[3,33]},{"name":"FindFileInSearchPath","features":[3,33]},{"name":"FlushInstructionCache","features":[3,33]},{"name":"FormatMessageA","features":[33]},{"name":"FormatMessageW","features":[33]},{"name":"FunctionTableStream","features":[33]},{"name":"GPIO_CONTROLLER_DRIVER_ERROR","features":[33]},{"name":"GetEnabledXStateFeatures","features":[33]},{"name":"GetErrorMode","features":[33]},{"name":"GetImageConfigInformation","features":[3,33,9,35]},{"name":"GetImageConfigInformation","features":[3,33,9,35]},{"name":"GetImageUnusedHeaderBytes","features":[3,33,9,35]},{"name":"GetSymLoadError","features":[33]},{"name":"GetThreadContext","features":[3,33,9]},{"name":"GetThreadErrorMode","features":[33]},{"name":"GetThreadSelectorEntry","features":[3,33]},{"name":"GetThreadWaitChain","features":[3,33]},{"name":"GetTimestampForLoadedLibrary","features":[3,33]},{"name":"GetXStateFeaturesMask","features":[3,33,9]},{"name":"HAL1_INITIALIZATION_FAILED","features":[33]},{"name":"HAL_BLOCKED_PROCESSOR_INTERNAL_ERROR","features":[33]},{"name":"HAL_ILLEGAL_IOMMU_PAGE_FAULT","features":[33]},{"name":"HAL_INITIALIZATION_FAILED","features":[33]},{"name":"HAL_IOMMU_INTERNAL_ERROR","features":[33]},{"name":"HAL_MEMORY_ALLOCATION","features":[33]},{"name":"HANDLE_ERROR_ON_CRITICAL_THREAD","features":[33]},{"name":"HANDLE_LIVE_DUMP","features":[33]},{"name":"HARDWARE_INTERRUPT_STORM","features":[33]},{"name":"HARDWARE_PROFILE_DOCKED_STRING","features":[33]},{"name":"HARDWARE_PROFILE_UNDOCKED_STRING","features":[33]},{"name":"HARDWARE_PROFILE_UNKNOWN_STRING","features":[33]},{"name":"HARDWARE_WATCHDOG_TIMEOUT","features":[33]},{"name":"HTTP_DRIVER_CORRUPTED","features":[33]},{"name":"HYPERGUARD_INITIALIZATION_FAILURE","features":[33]},{"name":"HYPERGUARD_VIOLATION","features":[33]},{"name":"HYPERVISOR_ERROR","features":[33]},{"name":"HandleDataStream","features":[33]},{"name":"HandleOperationListStream","features":[33]},{"name":"IDebugExtendedProperty","features":[33]},{"name":"IDebugProperty","features":[33]},{"name":"IDebugPropertyEnumType_All","features":[33]},{"name":"IDebugPropertyEnumType_Arguments","features":[33]},{"name":"IDebugPropertyEnumType_Locals","features":[33]},{"name":"IDebugPropertyEnumType_LocalsPlusArgs","features":[33]},{"name":"IDebugPropertyEnumType_Registers","features":[33]},{"name":"IEnumDebugExtendedPropertyInfo","features":[33]},{"name":"IEnumDebugPropertyInfo","features":[33]},{"name":"ILLEGAL_ATS_INITIALIZATION","features":[33]},{"name":"ILLEGAL_IOMMU_PAGE_FAULT","features":[33]},{"name":"IMAGEHLP_CBA_EVENT","features":[33]},{"name":"IMAGEHLP_CBA_EVENTW","features":[33]},{"name":"IMAGEHLP_CBA_EVENT_SEVERITY","features":[33]},{"name":"IMAGEHLP_CBA_READ_MEMORY","features":[33]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD","features":[3,33]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD64","features":[3,33]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOADW64","features":[3,33]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL","features":[33]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL64","features":[33]},{"name":"IMAGEHLP_EXTENDED_OPTIONS","features":[33]},{"name":"IMAGEHLP_GET_TYPE_INFO_CHILDREN","features":[33]},{"name":"IMAGEHLP_GET_TYPE_INFO_FLAGS","features":[33]},{"name":"IMAGEHLP_GET_TYPE_INFO_PARAMS","features":[33]},{"name":"IMAGEHLP_GET_TYPE_INFO_UNCACHED","features":[33]},{"name":"IMAGEHLP_HD_TYPE","features":[33]},{"name":"IMAGEHLP_JIT_SYMBOLMAP","features":[33]},{"name":"IMAGEHLP_LINE","features":[33]},{"name":"IMAGEHLP_LINE64","features":[33]},{"name":"IMAGEHLP_LINEW","features":[33]},{"name":"IMAGEHLP_LINEW64","features":[33]},{"name":"IMAGEHLP_MODULE","features":[33]},{"name":"IMAGEHLP_MODULE64","features":[3,33]},{"name":"IMAGEHLP_MODULE64_EX","features":[3,33]},{"name":"IMAGEHLP_MODULEW","features":[33]},{"name":"IMAGEHLP_MODULEW64","features":[3,33]},{"name":"IMAGEHLP_MODULEW64_EX","features":[3,33]},{"name":"IMAGEHLP_MODULE_REGION_ADDITIONAL","features":[33]},{"name":"IMAGEHLP_MODULE_REGION_ALL","features":[33]},{"name":"IMAGEHLP_MODULE_REGION_DLLBASE","features":[33]},{"name":"IMAGEHLP_MODULE_REGION_DLLRANGE","features":[33]},{"name":"IMAGEHLP_MODULE_REGION_JIT","features":[33]},{"name":"IMAGEHLP_RMAP_BIG_ENDIAN","features":[33]},{"name":"IMAGEHLP_RMAP_FIXUP_ARM64X","features":[33]},{"name":"IMAGEHLP_RMAP_FIXUP_IMAGEBASE","features":[33]},{"name":"IMAGEHLP_RMAP_IGNORE_MISCOMPARE","features":[33]},{"name":"IMAGEHLP_RMAP_LOAD_RW_DATA_SECTIONS","features":[33]},{"name":"IMAGEHLP_RMAP_MAPPED_FLAT","features":[33]},{"name":"IMAGEHLP_RMAP_OMIT_SHARED_RW_DATA_SECTIONS","features":[33]},{"name":"IMAGEHLP_SF_TYPE","features":[33]},{"name":"IMAGEHLP_STACK_FRAME","features":[3,33]},{"name":"IMAGEHLP_STATUS_REASON","features":[33]},{"name":"IMAGEHLP_SYMBOL","features":[33]},{"name":"IMAGEHLP_SYMBOL64","features":[33]},{"name":"IMAGEHLP_SYMBOL64_PACKAGE","features":[33]},{"name":"IMAGEHLP_SYMBOLW","features":[33]},{"name":"IMAGEHLP_SYMBOLW64","features":[33]},{"name":"IMAGEHLP_SYMBOLW64_PACKAGE","features":[33]},{"name":"IMAGEHLP_SYMBOLW_PACKAGE","features":[33]},{"name":"IMAGEHLP_SYMBOL_FUNCTION","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_CONSTANT","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_FRAMERELATIVE","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_LOCAL","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_PARAMETER","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_REGISTER","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_REGRELATIVE","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_TLSRELATIVE","features":[33]},{"name":"IMAGEHLP_SYMBOL_INFO_VALUEPRESENT","features":[33]},{"name":"IMAGEHLP_SYMBOL_PACKAGE","features":[33]},{"name":"IMAGEHLP_SYMBOL_SRC","features":[33]},{"name":"IMAGEHLP_SYMBOL_THUNK","features":[33]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO","features":[33]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO_MAX","features":[33]},{"name":"IMAGEHLP_SYMBOL_VIRTUAL","features":[33]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY","features":[33]},{"name":"IMAGE_COFF_SYMBOLS_HEADER","features":[33]},{"name":"IMAGE_COR20_HEADER","features":[33]},{"name":"IMAGE_DATA_DIRECTORY","features":[33]},{"name":"IMAGE_DEBUG_DIRECTORY","features":[33]},{"name":"IMAGE_DEBUG_INFORMATION","features":[3,33,9]},{"name":"IMAGE_DEBUG_TYPE","features":[33]},{"name":"IMAGE_DEBUG_TYPE_BORLAND","features":[33]},{"name":"IMAGE_DEBUG_TYPE_CODEVIEW","features":[33]},{"name":"IMAGE_DEBUG_TYPE_COFF","features":[33]},{"name":"IMAGE_DEBUG_TYPE_EXCEPTION","features":[33]},{"name":"IMAGE_DEBUG_TYPE_FIXUP","features":[33]},{"name":"IMAGE_DEBUG_TYPE_FPO","features":[33]},{"name":"IMAGE_DEBUG_TYPE_MISC","features":[33]},{"name":"IMAGE_DEBUG_TYPE_UNKNOWN","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_ARCHITECTURE","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_BASERELOC","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_DEBUG","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_EXCEPTION","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_EXPORT","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_GLOBALPTR","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_IAT","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_IMPORT","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_RESOURCE","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_SECURITY","features":[33]},{"name":"IMAGE_DIRECTORY_ENTRY_TLS","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_APPCONTAINER","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT_STRICT_MODE","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_DYNAMIC_APIS_ALLOW_IN_PROC","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_1","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_2","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_SET_CONTEXT_IP_VALIDATION_RELAXED_MODE","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_GUARD_CF","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_BIND","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_ISOLATION","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_SEH","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_NX_COMPAT","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE","features":[33]},{"name":"IMAGE_DLLCHARACTERISTICS_WDM_DRIVER","features":[33]},{"name":"IMAGE_DLL_CHARACTERISTICS","features":[33]},{"name":"IMAGE_FILE_32BIT_MACHINE","features":[33]},{"name":"IMAGE_FILE_32BIT_MACHINE2","features":[33]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM","features":[33]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM2","features":[33]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI","features":[33]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI_2","features":[33]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO","features":[33]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO2","features":[33]},{"name":"IMAGE_FILE_CHARACTERISTICS","features":[33]},{"name":"IMAGE_FILE_CHARACTERISTICS2","features":[33]},{"name":"IMAGE_FILE_DEBUG_STRIPPED","features":[33]},{"name":"IMAGE_FILE_DEBUG_STRIPPED2","features":[33]},{"name":"IMAGE_FILE_DLL","features":[33]},{"name":"IMAGE_FILE_DLL_2","features":[33]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE","features":[33]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE2","features":[33]},{"name":"IMAGE_FILE_HEADER","features":[33,35]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE","features":[33]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE2","features":[33]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED","features":[33]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED2","features":[33]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED","features":[33]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED2","features":[33]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP","features":[33]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP2","features":[33]},{"name":"IMAGE_FILE_RELOCS_STRIPPED","features":[33]},{"name":"IMAGE_FILE_RELOCS_STRIPPED2","features":[33]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP","features":[33]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP2","features":[33]},{"name":"IMAGE_FILE_SYSTEM","features":[33]},{"name":"IMAGE_FILE_SYSTEM_2","features":[33]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY","features":[33]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY_2","features":[33]},{"name":"IMAGE_FUNCTION_ENTRY","features":[33]},{"name":"IMAGE_FUNCTION_ENTRY64","features":[33]},{"name":"IMAGE_LOAD_CONFIG_CODE_INTEGRITY","features":[33]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY32","features":[33]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY64","features":[33]},{"name":"IMAGE_NT_HEADERS32","features":[33,35]},{"name":"IMAGE_NT_HEADERS64","features":[33,35]},{"name":"IMAGE_NT_OPTIONAL_HDR32_MAGIC","features":[33]},{"name":"IMAGE_NT_OPTIONAL_HDR64_MAGIC","features":[33]},{"name":"IMAGE_NT_OPTIONAL_HDR_MAGIC","features":[33]},{"name":"IMAGE_OPTIONAL_HEADER32","features":[33]},{"name":"IMAGE_OPTIONAL_HEADER64","features":[33]},{"name":"IMAGE_OPTIONAL_HEADER_MAGIC","features":[33]},{"name":"IMAGE_ROM_HEADERS","features":[33,35]},{"name":"IMAGE_ROM_OPTIONAL_HDR_MAGIC","features":[33]},{"name":"IMAGE_ROM_OPTIONAL_HEADER","features":[33]},{"name":"IMAGE_RUNTIME_FUNCTION_ENTRY","features":[33]},{"name":"IMAGE_SCN_ALIGN_1024BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_128BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_16BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_1BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_2048BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_256BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_2BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_32BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_4096BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_4BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_512BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_64BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_8192BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_8BYTES","features":[33]},{"name":"IMAGE_SCN_ALIGN_MASK","features":[33]},{"name":"IMAGE_SCN_CNT_CODE","features":[33]},{"name":"IMAGE_SCN_CNT_INITIALIZED_DATA","features":[33]},{"name":"IMAGE_SCN_CNT_UNINITIALIZED_DATA","features":[33]},{"name":"IMAGE_SCN_GPREL","features":[33]},{"name":"IMAGE_SCN_LNK_COMDAT","features":[33]},{"name":"IMAGE_SCN_LNK_INFO","features":[33]},{"name":"IMAGE_SCN_LNK_NRELOC_OVFL","features":[33]},{"name":"IMAGE_SCN_LNK_OTHER","features":[33]},{"name":"IMAGE_SCN_LNK_REMOVE","features":[33]},{"name":"IMAGE_SCN_MEM_16BIT","features":[33]},{"name":"IMAGE_SCN_MEM_DISCARDABLE","features":[33]},{"name":"IMAGE_SCN_MEM_EXECUTE","features":[33]},{"name":"IMAGE_SCN_MEM_FARDATA","features":[33]},{"name":"IMAGE_SCN_MEM_LOCKED","features":[33]},{"name":"IMAGE_SCN_MEM_NOT_CACHED","features":[33]},{"name":"IMAGE_SCN_MEM_NOT_PAGED","features":[33]},{"name":"IMAGE_SCN_MEM_PRELOAD","features":[33]},{"name":"IMAGE_SCN_MEM_PURGEABLE","features":[33]},{"name":"IMAGE_SCN_MEM_READ","features":[33]},{"name":"IMAGE_SCN_MEM_SHARED","features":[33]},{"name":"IMAGE_SCN_MEM_WRITE","features":[33]},{"name":"IMAGE_SCN_NO_DEFER_SPEC_EXC","features":[33]},{"name":"IMAGE_SCN_SCALE_INDEX","features":[33]},{"name":"IMAGE_SCN_TYPE_NO_PAD","features":[33]},{"name":"IMAGE_SECTION_CHARACTERISTICS","features":[33]},{"name":"IMAGE_SECTION_HEADER","features":[33]},{"name":"IMAGE_SUBSYSTEM","features":[33]},{"name":"IMAGE_SUBSYSTEM_EFI_APPLICATION","features":[33]},{"name":"IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER","features":[33]},{"name":"IMAGE_SUBSYSTEM_EFI_ROM","features":[33]},{"name":"IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER","features":[33]},{"name":"IMAGE_SUBSYSTEM_NATIVE","features":[33]},{"name":"IMAGE_SUBSYSTEM_NATIVE_WINDOWS","features":[33]},{"name":"IMAGE_SUBSYSTEM_OS2_CUI","features":[33]},{"name":"IMAGE_SUBSYSTEM_POSIX_CUI","features":[33]},{"name":"IMAGE_SUBSYSTEM_UNKNOWN","features":[33]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION","features":[33]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CE_GUI","features":[33]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CUI","features":[33]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_GUI","features":[33]},{"name":"IMAGE_SUBSYSTEM_XBOX","features":[33]},{"name":"IMAGE_SUBSYSTEM_XBOX_CODE_CATALOG","features":[33]},{"name":"IMPERSONATING_WORKER_THREAD","features":[33]},{"name":"INACCESSIBLE_BOOT_DEVICE","features":[33]},{"name":"INCONSISTENT_IRP","features":[33]},{"name":"INLINE_FRAME_CONTEXT_IGNORE","features":[33]},{"name":"INLINE_FRAME_CONTEXT_INIT","features":[33]},{"name":"INSTALL_MORE_MEMORY","features":[33]},{"name":"INSTRUCTION_BUS_ERROR","features":[33]},{"name":"INSTRUCTION_COHERENCY_EXCEPTION","features":[33]},{"name":"INSUFFICIENT_SYSTEM_MAP_REGS","features":[33]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_CALLER","features":[33]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_DATA","features":[33]},{"name":"INTERFACE_USES_DISPEX","features":[33]},{"name":"INTERFACE_USES_SECURITY_MANAGER","features":[33]},{"name":"INTERNAL_POWER_ERROR","features":[33]},{"name":"INTERRUPT_EXCEPTION_NOT_HANDLED","features":[33]},{"name":"INTERRUPT_UNWIND_ATTEMPTED","features":[33]},{"name":"INVALID_AFFINITY_SET","features":[33]},{"name":"INVALID_ALTERNATE_SYSTEM_CALL_HANDLER_REGISTRATION","features":[33]},{"name":"INVALID_CALLBACK_STACK_ADDRESS","features":[33]},{"name":"INVALID_CANCEL_OF_FILE_OPEN","features":[33]},{"name":"INVALID_DATA_ACCESS_TRAP","features":[33]},{"name":"INVALID_DRIVER_HANDLE","features":[33]},{"name":"INVALID_EXTENDED_PROCESSOR_STATE","features":[33]},{"name":"INVALID_FLOATING_POINT_STATE","features":[33]},{"name":"INVALID_HIBERNATED_STATE","features":[33]},{"name":"INVALID_IO_BOOST_STATE","features":[33]},{"name":"INVALID_KERNEL_HANDLE","features":[33]},{"name":"INVALID_KERNEL_STACK_ADDRESS","features":[33]},{"name":"INVALID_MDL_RANGE","features":[33]},{"name":"INVALID_PROCESS_ATTACH_ATTEMPT","features":[33]},{"name":"INVALID_PROCESS_DETACH_ATTEMPT","features":[33]},{"name":"INVALID_PUSH_LOCK_FLAGS","features":[33]},{"name":"INVALID_REGION_OR_SEGMENT","features":[33]},{"name":"INVALID_RUNDOWN_PROTECTION_FLAGS","features":[33]},{"name":"INVALID_SILO_DETACH","features":[33]},{"name":"INVALID_SLOT_ALLOCATOR_FLAGS","features":[33]},{"name":"INVALID_SOFTWARE_INTERRUPT","features":[33]},{"name":"INVALID_THREAD_AFFINITY_STATE","features":[33]},{"name":"INVALID_WORK_QUEUE_ITEM","features":[33]},{"name":"IO1_INITIALIZATION_FAILED","features":[33]},{"name":"IOCTL_IPMI_INTERNAL_RECORD_SEL_EVENT","features":[33]},{"name":"IORING","features":[33]},{"name":"IO_OBJECT_INVALID","features":[33]},{"name":"IO_THREADPOOL_DEADLOCK_LIVEDUMP","features":[33]},{"name":"IObjectSafety","features":[33]},{"name":"IPI_WATCHDOG_TIMEOUT","features":[33]},{"name":"IPMI_IOCTL_INDEX","features":[33]},{"name":"IPMI_OS_SEL_RECORD","features":[33]},{"name":"IPMI_OS_SEL_RECORD_MASK","features":[33]},{"name":"IPMI_OS_SEL_RECORD_TYPE","features":[33]},{"name":"IPMI_OS_SEL_RECORD_VERSION","features":[33]},{"name":"IPMI_OS_SEL_RECORD_VERSION_1","features":[33]},{"name":"IPerPropertyBrowsing2","features":[33]},{"name":"IRQL_GT_ZERO_AT_SYSTEM_SERVICE","features":[33]},{"name":"IRQL_NOT_DISPATCH_LEVEL","features":[33]},{"name":"IRQL_NOT_GREATER_OR_EQUAL","features":[33]},{"name":"IRQL_NOT_LESS_OR_EQUAL","features":[33]},{"name":"IRQL_UNEXPECTED_VALUE","features":[33]},{"name":"ImageAddCertificate","features":[3,128,33]},{"name":"ImageDirectoryEntryToData","features":[3,33]},{"name":"ImageDirectoryEntryToDataEx","features":[3,33]},{"name":"ImageEnumerateCertificates","features":[3,33]},{"name":"ImageGetCertificateData","features":[3,128,33]},{"name":"ImageGetCertificateHeader","features":[3,128,33]},{"name":"ImageGetDigestStream","features":[3,33]},{"name":"ImageLoad","features":[3,33,9,35]},{"name":"ImageNtHeader","features":[33,35]},{"name":"ImageNtHeader","features":[33,35]},{"name":"ImageRemoveCertificate","features":[3,33]},{"name":"ImageRvaToSection","features":[33,35]},{"name":"ImageRvaToSection","features":[33,35]},{"name":"ImageRvaToVa","features":[33,35]},{"name":"ImageRvaToVa","features":[33,35]},{"name":"ImageUnload","features":[3,33,9,35]},{"name":"ImagehlpApiVersion","features":[33]},{"name":"ImagehlpApiVersionEx","features":[33]},{"name":"IncludeModuleCallback","features":[33]},{"name":"IncludeThreadCallback","features":[33]},{"name":"IncludeVmRegionCallback","features":[33]},{"name":"InitializeContext","features":[3,33,9]},{"name":"InitializeContext2","features":[3,33,9]},{"name":"IoFinishCallback","features":[33]},{"name":"IoStartCallback","features":[33]},{"name":"IoWriteAllCallback","features":[33]},{"name":"IpmiOsSelRecordTypeBugcheckData","features":[33]},{"name":"IpmiOsSelRecordTypeBugcheckRecovery","features":[33]},{"name":"IpmiOsSelRecordTypeDriver","features":[33]},{"name":"IpmiOsSelRecordTypeMax","features":[33]},{"name":"IpmiOsSelRecordTypeOther","features":[33]},{"name":"IpmiOsSelRecordTypeRaw","features":[33]},{"name":"IpmiOsSelRecordTypeWhea","features":[33]},{"name":"IpmiOsSelRecordTypeWheaErrorNmi","features":[33]},{"name":"IpmiOsSelRecordTypeWheaErrorOther","features":[33]},{"name":"IpmiOsSelRecordTypeWheaErrorPci","features":[33]},{"name":"IpmiOsSelRecordTypeWheaErrorXpfMca","features":[33]},{"name":"IptTraceStream","features":[33]},{"name":"IsDebuggerPresent","features":[3,33]},{"name":"IsProcessSnapshotCallback","features":[33]},{"name":"JavaScriptDataStream","features":[33]},{"name":"KASAN_ENLIGHTENMENT_VIOLATION","features":[33]},{"name":"KASAN_ILLEGAL_ACCESS","features":[33]},{"name":"KDHELP","features":[33]},{"name":"KDHELP64","features":[33]},{"name":"KERNEL_APC_PENDING_DURING_EXIT","features":[33]},{"name":"KERNEL_AUTO_BOOST_INVALID_LOCK_RELEASE","features":[33]},{"name":"KERNEL_AUTO_BOOST_LOCK_ACQUISITION_WITH_RAISED_IRQL","features":[33]},{"name":"KERNEL_CFG_INIT_FAILURE","features":[33]},{"name":"KERNEL_DATA_INPAGE_ERROR","features":[33]},{"name":"KERNEL_EXPAND_STACK_ACTIVE","features":[33]},{"name":"KERNEL_LOCK_ENTRY_LEAKED_ON_THREAD_TERMINATION","features":[33]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED","features":[33]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED_M","features":[33]},{"name":"KERNEL_MODE_HEAP_CORRUPTION","features":[33]},{"name":"KERNEL_PARTITION_REFERENCE_VIOLATION","features":[33]},{"name":"KERNEL_SECURITY_CHECK_FAILURE","features":[33]},{"name":"KERNEL_STACK_INPAGE_ERROR","features":[33]},{"name":"KERNEL_STACK_LOCKED_AT_EXIT","features":[33]},{"name":"KERNEL_STORAGE_SLOT_IN_USE","features":[33]},{"name":"KERNEL_THREAD_PRIORITY_FLOOR_VIOLATION","features":[33]},{"name":"KERNEL_WMI_INTERNAL","features":[33]},{"name":"KMODE_EXCEPTION_NOT_HANDLED","features":[33]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[33]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[33]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[33]},{"name":"KernelMinidumpStatusCallback","features":[33]},{"name":"LAST_CHANCE_CALLED_FROM_KMODE","features":[33]},{"name":"LDT_ENTRY","features":[33]},{"name":"LIVE_SYSTEM_DUMP","features":[33]},{"name":"LM_SERVER_INTERNAL_ERROR","features":[33]},{"name":"LOADED_IMAGE","features":[3,33,9,35]},{"name":"LOADED_IMAGE","features":[3,33,9,35]},{"name":"LOADER_BLOCK_MISMATCH","features":[33]},{"name":"LOADER_ROLLBACK_DETECTED","features":[33]},{"name":"LOAD_DLL_DEBUG_EVENT","features":[33]},{"name":"LOAD_DLL_DEBUG_INFO","features":[3,33]},{"name":"LOCKED_PAGES_TRACKER_CORRUPTION","features":[33]},{"name":"LPCALL_BACK_USER_INTERRUPT_ROUTINE","features":[33]},{"name":"LPC_INITIALIZATION_FAILED","features":[33]},{"name":"LPTOP_LEVEL_EXCEPTION_FILTER","features":[3,33,9]},{"name":"LastReservedStream","features":[33]},{"name":"LocateXStateFeature","features":[33,9]},{"name":"M128A","features":[33]},{"name":"MACHINE_CHECK_EXCEPTION","features":[33]},{"name":"MAILSLOT_FILE_SYSTEM","features":[33]},{"name":"MANUALLY_INITIATED_BLACKSCREEN_HOTKEY_LIVE_DUMP","features":[33]},{"name":"MANUALLY_INITIATED_CRASH","features":[33]},{"name":"MANUALLY_INITIATED_CRASH1","features":[33]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD","features":[33]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD_LIVE_DUMP","features":[33]},{"name":"MAXIMUM_WAIT_OBJECTS_EXCEEDED","features":[33]},{"name":"MAX_SYM_NAME","features":[33]},{"name":"MBR_CHECKSUM_MISMATCH","features":[33]},{"name":"MDL_CACHE","features":[33]},{"name":"MEMORY1_INITIALIZATION_FAILED","features":[33]},{"name":"MEMORY_IMAGE_CORRUPT","features":[33]},{"name":"MEMORY_MANAGEMENT","features":[33]},{"name":"MICROCODE_REVISION_MISMATCH","features":[33]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[3,23,33,9,22]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[3,23,33,9,22]},{"name":"MINIDUMP_CALLBACK_INPUT","features":[3,23,33,9]},{"name":"MINIDUMP_CALLBACK_OUTPUT","features":[3,33,22]},{"name":"MINIDUMP_CALLBACK_ROUTINE","features":[3,23,33,9,22]},{"name":"MINIDUMP_CALLBACK_TYPE","features":[33]},{"name":"MINIDUMP_DIRECTORY","features":[33]},{"name":"MINIDUMP_EXCEPTION","features":[33]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[3,33,9]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[3,33,9]},{"name":"MINIDUMP_EXCEPTION_INFORMATION64","features":[3,33]},{"name":"MINIDUMP_EXCEPTION_STREAM","features":[33]},{"name":"MINIDUMP_FUNCTION_TABLE_DESCRIPTOR","features":[33]},{"name":"MINIDUMP_FUNCTION_TABLE_STREAM","features":[33]},{"name":"MINIDUMP_HANDLE_DATA_STREAM","features":[33]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR","features":[33]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR_2","features":[33]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION","features":[33]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE","features":[33]},{"name":"MINIDUMP_HANDLE_OPERATION_LIST","features":[33]},{"name":"MINIDUMP_HEADER","features":[33]},{"name":"MINIDUMP_INCLUDE_MODULE_CALLBACK","features":[33]},{"name":"MINIDUMP_INCLUDE_THREAD_CALLBACK","features":[33]},{"name":"MINIDUMP_IO_CALLBACK","features":[3,33]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR","features":[33]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR64","features":[33]},{"name":"MINIDUMP_MEMORY64_LIST","features":[33]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR","features":[33]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR64","features":[33]},{"name":"MINIDUMP_MEMORY_INFO","features":[33,22]},{"name":"MINIDUMP_MEMORY_INFO_LIST","features":[33]},{"name":"MINIDUMP_MEMORY_LIST","features":[33]},{"name":"MINIDUMP_MISC1_PROCESSOR_POWER_INFO","features":[33]},{"name":"MINIDUMP_MISC1_PROCESS_ID","features":[33]},{"name":"MINIDUMP_MISC1_PROCESS_TIMES","features":[33]},{"name":"MINIDUMP_MISC3_PROCESS_EXECUTE_FLAGS","features":[33]},{"name":"MINIDUMP_MISC3_PROCESS_INTEGRITY","features":[33]},{"name":"MINIDUMP_MISC3_PROTECTED_PROCESS","features":[33]},{"name":"MINIDUMP_MISC3_TIMEZONE","features":[33]},{"name":"MINIDUMP_MISC4_BUILDSTRING","features":[33]},{"name":"MINIDUMP_MISC5_PROCESS_COOKIE","features":[33]},{"name":"MINIDUMP_MISC_INFO","features":[33]},{"name":"MINIDUMP_MISC_INFO_2","features":[33]},{"name":"MINIDUMP_MISC_INFO_3","features":[3,33,166]},{"name":"MINIDUMP_MISC_INFO_4","features":[3,33,166]},{"name":"MINIDUMP_MISC_INFO_5","features":[3,33,166]},{"name":"MINIDUMP_MISC_INFO_FLAGS","features":[33]},{"name":"MINIDUMP_MODULE","features":[23,33]},{"name":"MINIDUMP_MODULE_CALLBACK","features":[23,33]},{"name":"MINIDUMP_MODULE_LIST","features":[23,33]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS","features":[33]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_1","features":[33]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_2","features":[33]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX","features":[33]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX2","features":[33]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_JOB","features":[33]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_VIRTUALSIZE","features":[33]},{"name":"MINIDUMP_READ_MEMORY_FAILURE_CALLBACK","features":[33]},{"name":"MINIDUMP_SECONDARY_FLAGS","features":[33]},{"name":"MINIDUMP_STREAM_TYPE","features":[33]},{"name":"MINIDUMP_STRING","features":[33]},{"name":"MINIDUMP_SYSMEMINFO1_BASICPERF","features":[33]},{"name":"MINIDUMP_SYSMEMINFO1_FILECACHE_TRANSITIONREPURPOSECOUNT_FLAGS","features":[33]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_CCTOTALDIRTYPAGES_CCDIRTYPAGETHRESHOLD","features":[33]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_RESIDENTAVAILABLEPAGES_SHAREDCOMMITPAGES","features":[33]},{"name":"MINIDUMP_SYSTEM_BASIC_INFORMATION","features":[33]},{"name":"MINIDUMP_SYSTEM_BASIC_PERFORMANCE_INFORMATION","features":[33]},{"name":"MINIDUMP_SYSTEM_FILECACHE_INFORMATION","features":[33]},{"name":"MINIDUMP_SYSTEM_INFO","features":[33,35]},{"name":"MINIDUMP_SYSTEM_MEMORY_INFO_1","features":[33]},{"name":"MINIDUMP_SYSTEM_PERFORMANCE_INFORMATION","features":[33]},{"name":"MINIDUMP_THREAD","features":[33]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[3,33,9]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[3,33,9]},{"name":"MINIDUMP_THREAD_EX","features":[33]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[3,33,9]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[3,33,9]},{"name":"MINIDUMP_THREAD_EX_LIST","features":[33]},{"name":"MINIDUMP_THREAD_INFO","features":[33]},{"name":"MINIDUMP_THREAD_INFO_DUMP_FLAGS","features":[33]},{"name":"MINIDUMP_THREAD_INFO_ERROR_THREAD","features":[33]},{"name":"MINIDUMP_THREAD_INFO_EXITED_THREAD","features":[33]},{"name":"MINIDUMP_THREAD_INFO_INVALID_CONTEXT","features":[33]},{"name":"MINIDUMP_THREAD_INFO_INVALID_INFO","features":[33]},{"name":"MINIDUMP_THREAD_INFO_INVALID_TEB","features":[33]},{"name":"MINIDUMP_THREAD_INFO_LIST","features":[33]},{"name":"MINIDUMP_THREAD_INFO_WRITING_THREAD","features":[33]},{"name":"MINIDUMP_THREAD_LIST","features":[33]},{"name":"MINIDUMP_THREAD_NAME","features":[33]},{"name":"MINIDUMP_THREAD_NAME_LIST","features":[33]},{"name":"MINIDUMP_TOKEN_INFO_HEADER","features":[33]},{"name":"MINIDUMP_TOKEN_INFO_LIST","features":[33]},{"name":"MINIDUMP_TYPE","features":[33]},{"name":"MINIDUMP_UNLOADED_MODULE","features":[33]},{"name":"MINIDUMP_UNLOADED_MODULE_LIST","features":[33]},{"name":"MINIDUMP_USER_RECORD","features":[33]},{"name":"MINIDUMP_USER_STREAM","features":[33]},{"name":"MINIDUMP_USER_STREAM","features":[33]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[33]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[33]},{"name":"MINIDUMP_VERSION","features":[33]},{"name":"MINIDUMP_VM_POST_READ_CALLBACK","features":[33]},{"name":"MINIDUMP_VM_PRE_READ_CALLBACK","features":[33]},{"name":"MINIDUMP_VM_QUERY_CALLBACK","features":[33]},{"name":"MISALIGNED_POINTER_PARAMETER","features":[33]},{"name":"MISMATCHED_HAL","features":[33]},{"name":"MODLOAD_CVMISC","features":[33]},{"name":"MODLOAD_DATA","features":[33]},{"name":"MODLOAD_DATA_TYPE","features":[33]},{"name":"MODLOAD_PDBGUID_PDBAGE","features":[33]},{"name":"MODULE_TYPE_INFO","features":[33]},{"name":"MODULE_WRITE_FLAGS","features":[33]},{"name":"MPSDRV_QUERY_USER","features":[33]},{"name":"MSRPC_STATE_VIOLATION","features":[33]},{"name":"MSSECCORE_ASSERTION_FAILURE","features":[33]},{"name":"MUI_NO_VALID_SYSTEM_LANGUAGE","features":[33]},{"name":"MULTIPLE_IRP_COMPLETE_REQUESTS","features":[33]},{"name":"MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED","features":[33]},{"name":"MUP_FILE_SYSTEM","features":[33]},{"name":"MUST_SUCCEED_POOL_EMPTY","features":[33]},{"name":"MUTEX_ALREADY_OWNED","features":[33]},{"name":"MUTEX_LEVEL_NUMBER_VIOLATION","features":[33]},{"name":"MakeSureDirectoryPathExists","features":[3,33]},{"name":"MapAndLoad","features":[3,33,9,35]},{"name":"MapFileAndCheckSumA","features":[33]},{"name":"MapFileAndCheckSumW","features":[33]},{"name":"Memory64ListStream","features":[33]},{"name":"MemoryCallback","features":[33]},{"name":"MemoryInfoListStream","features":[33]},{"name":"MemoryListStream","features":[33]},{"name":"MessageBeep","features":[3,33,52]},{"name":"MiniDumpFilterMemory","features":[33]},{"name":"MiniDumpFilterModulePaths","features":[33]},{"name":"MiniDumpFilterTriage","features":[33]},{"name":"MiniDumpFilterWriteCombinedMemory","features":[33]},{"name":"MiniDumpIgnoreInaccessibleMemory","features":[33]},{"name":"MiniDumpNormal","features":[33]},{"name":"MiniDumpReadDumpStream","features":[3,33]},{"name":"MiniDumpScanInaccessiblePartialPages","features":[33]},{"name":"MiniDumpScanMemory","features":[33]},{"name":"MiniDumpValidTypeFlags","features":[33]},{"name":"MiniDumpWithAvxXStateContext","features":[33]},{"name":"MiniDumpWithCodeSegs","features":[33]},{"name":"MiniDumpWithDataSegs","features":[33]},{"name":"MiniDumpWithFullAuxiliaryState","features":[33]},{"name":"MiniDumpWithFullMemory","features":[33]},{"name":"MiniDumpWithFullMemoryInfo","features":[33]},{"name":"MiniDumpWithHandleData","features":[33]},{"name":"MiniDumpWithIndirectlyReferencedMemory","features":[33]},{"name":"MiniDumpWithIptTrace","features":[33]},{"name":"MiniDumpWithModuleHeaders","features":[33]},{"name":"MiniDumpWithPrivateReadWriteMemory","features":[33]},{"name":"MiniDumpWithPrivateWriteCopyMemory","features":[33]},{"name":"MiniDumpWithProcessThreadData","features":[33]},{"name":"MiniDumpWithThreadInfo","features":[33]},{"name":"MiniDumpWithTokenInformation","features":[33]},{"name":"MiniDumpWithUnloadedModules","features":[33]},{"name":"MiniDumpWithoutAuxiliaryState","features":[33]},{"name":"MiniDumpWithoutOptionalData","features":[33]},{"name":"MiniDumpWriteDump","features":[3,23,33,9,22]},{"name":"MiniEventInformation1","features":[33]},{"name":"MiniHandleObjectInformationNone","features":[33]},{"name":"MiniHandleObjectInformationTypeMax","features":[33]},{"name":"MiniMutantInformation1","features":[33]},{"name":"MiniMutantInformation2","features":[33]},{"name":"MiniProcessInformation1","features":[33]},{"name":"MiniProcessInformation2","features":[33]},{"name":"MiniSecondaryValidFlags","features":[33]},{"name":"MiniSecondaryWithoutPowerInfo","features":[33]},{"name":"MiniSectionInformation1","features":[33]},{"name":"MiniSemaphoreInformation1","features":[33]},{"name":"MiniThreadInformation1","features":[33]},{"name":"MiscInfoStream","features":[33]},{"name":"ModuleCallback","features":[33]},{"name":"ModuleListStream","features":[33]},{"name":"ModuleReferencedByMemory","features":[33]},{"name":"ModuleWriteCodeSegs","features":[33]},{"name":"ModuleWriteCvRecord","features":[33]},{"name":"ModuleWriteDataSeg","features":[33]},{"name":"ModuleWriteMiscRecord","features":[33]},{"name":"ModuleWriteModule","features":[33]},{"name":"ModuleWriteTlsData","features":[33]},{"name":"NDIS_INTERNAL_ERROR","features":[33]},{"name":"NDIS_NET_BUFFER_LIST_INFO_ILLEGALLY_TRANSFERRED","features":[33]},{"name":"NETIO_INVALID_POOL_CALLER","features":[33]},{"name":"NETWORK_BOOT_DUPLICATE_ADDRESS","features":[33]},{"name":"NETWORK_BOOT_INITIALIZATION_FAILED","features":[33]},{"name":"NMI_HARDWARE_FAILURE","features":[33]},{"name":"NMR_INVALID_STATE","features":[33]},{"name":"NO_BOOT_DEVICE","features":[33]},{"name":"NO_EXCEPTION_HANDLING_SUPPORT","features":[33]},{"name":"NO_MORE_IRP_STACK_LOCATIONS","features":[33]},{"name":"NO_MORE_SYSTEM_PTES","features":[33]},{"name":"NO_PAGES_AVAILABLE","features":[33]},{"name":"NO_SPIN_LOCK_AVAILABLE","features":[33]},{"name":"NO_SUCH_PARTITION","features":[33]},{"name":"NO_USER_MODE_CONTEXT","features":[33]},{"name":"NPFS_FILE_SYSTEM","features":[33]},{"name":"NTFS_FILE_SYSTEM","features":[33]},{"name":"NTHV_GUEST_ERROR","features":[33]},{"name":"NUM_SSRVOPTS","features":[33]},{"name":"NumSymTypes","features":[33]},{"name":"OBJECT1_INITIALIZATION_FAILED","features":[33]},{"name":"OBJECT_ATTRIB_ACCESS_FINAL","features":[33]},{"name":"OBJECT_ATTRIB_ACCESS_PRIVATE","features":[33]},{"name":"OBJECT_ATTRIB_ACCESS_PROTECTED","features":[33]},{"name":"OBJECT_ATTRIB_ACCESS_PUBLIC","features":[33]},{"name":"OBJECT_ATTRIB_FLAGS","features":[33]},{"name":"OBJECT_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[33]},{"name":"OBJECT_ATTRIB_IS_CLASS","features":[33]},{"name":"OBJECT_ATTRIB_IS_FUNCTION","features":[33]},{"name":"OBJECT_ATTRIB_IS_INHERITED","features":[33]},{"name":"OBJECT_ATTRIB_IS_INTERFACE","features":[33]},{"name":"OBJECT_ATTRIB_IS_MACRO","features":[33]},{"name":"OBJECT_ATTRIB_IS_PROPERTY","features":[33]},{"name":"OBJECT_ATTRIB_IS_TYPE","features":[33]},{"name":"OBJECT_ATTRIB_IS_VARIABLE","features":[33]},{"name":"OBJECT_ATTRIB_NO_ATTRIB","features":[33]},{"name":"OBJECT_ATTRIB_NO_NAME","features":[33]},{"name":"OBJECT_ATTRIB_NO_TYPE","features":[33]},{"name":"OBJECT_ATTRIB_NO_VALUE","features":[33]},{"name":"OBJECT_ATTRIB_OBJECT_IS_EXPANDABLE","features":[33]},{"name":"OBJECT_ATTRIB_SLOT_IS_CATEGORY","features":[33]},{"name":"OBJECT_ATTRIB_STORAGE_FIELD","features":[33]},{"name":"OBJECT_ATTRIB_STORAGE_GLOBAL","features":[33]},{"name":"OBJECT_ATTRIB_STORAGE_STATIC","features":[33]},{"name":"OBJECT_ATTRIB_STORAGE_VIRTUAL","features":[33]},{"name":"OBJECT_ATTRIB_TYPE_HAS_CODE","features":[33]},{"name":"OBJECT_ATTRIB_TYPE_IS_CONSTANT","features":[33]},{"name":"OBJECT_ATTRIB_TYPE_IS_EXPANDABLE","features":[33]},{"name":"OBJECT_ATTRIB_TYPE_IS_OBJECT","features":[33]},{"name":"OBJECT_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[33]},{"name":"OBJECT_ATTRIB_TYPE_IS_VOLATILE","features":[33]},{"name":"OBJECT_ATTRIB_VALUE_HAS_CODE","features":[33]},{"name":"OBJECT_ATTRIB_VALUE_IS_CUSTOM","features":[33]},{"name":"OBJECT_ATTRIB_VALUE_IS_ENUM","features":[33]},{"name":"OBJECT_ATTRIB_VALUE_IS_INVALID","features":[33]},{"name":"OBJECT_ATTRIB_VALUE_IS_OBJECT","features":[33]},{"name":"OBJECT_ATTRIB_VALUE_READONLY","features":[33]},{"name":"OBJECT_INITIALIZATION_FAILED","features":[33]},{"name":"OFS_FILE_SYSTEM","features":[33]},{"name":"OMAP","features":[33]},{"name":"OPEN_THREAD_WAIT_CHAIN_SESSION_FLAGS","features":[33]},{"name":"OS_DATA_TAMPERING","features":[33]},{"name":"OUTPUT_DEBUG_STRING_EVENT","features":[33]},{"name":"OUTPUT_DEBUG_STRING_INFO","features":[33]},{"name":"OpenThreadWaitChainSession","features":[3,33]},{"name":"OutputDebugStringA","features":[33]},{"name":"OutputDebugStringW","features":[33]},{"name":"PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[33]},{"name":"PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[33]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA","features":[33]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA_M","features":[33]},{"name":"PAGE_FAULT_WITH_INTERRUPTS_OFF","features":[33]},{"name":"PAGE_NOT_ZERO","features":[33]},{"name":"PANIC_STACK_SWITCH","features":[33]},{"name":"PASSIVE_INTERRUPT_ERROR","features":[33]},{"name":"PCI_BUS_DRIVER_INTERNAL","features":[33]},{"name":"PCI_CONFIG_SPACE_ACCESS_FAILURE","features":[33]},{"name":"PCI_VERIFIER_DETECTED_VIOLATION","features":[33]},{"name":"PCOGETACTIVATIONSTATE","features":[33]},{"name":"PCOGETCALLSTATE","features":[33]},{"name":"PDBGHELP_CREATE_USER_DUMP_CALLBACK","features":[3,33]},{"name":"PDC_LOCK_WATCHDOG_LIVEDUMP","features":[33]},{"name":"PDC_PRIVILEGE_CHECK_LIVEDUMP","features":[33]},{"name":"PDC_UNEXPECTED_REVOCATION_LIVEDUMP","features":[33]},{"name":"PDC_WATCHDOG_TIMEOUT","features":[33]},{"name":"PDC_WATCHDOG_TIMEOUT_LIVEDUMP","features":[33]},{"name":"PENUMDIRTREE_CALLBACK","features":[3,33]},{"name":"PENUMDIRTREE_CALLBACKW","features":[3,33]},{"name":"PENUMLOADED_MODULES_CALLBACK","features":[3,33]},{"name":"PENUMLOADED_MODULES_CALLBACK64","features":[3,33]},{"name":"PENUMLOADED_MODULES_CALLBACKW64","features":[3,33]},{"name":"PENUMSOURCEFILETOKENSCALLBACK","features":[3,33]},{"name":"PFINDFILEINPATHCALLBACK","features":[3,33]},{"name":"PFINDFILEINPATHCALLBACKW","features":[3,33]},{"name":"PFIND_DEBUG_FILE_CALLBACK","features":[3,33]},{"name":"PFIND_DEBUG_FILE_CALLBACKW","features":[3,33]},{"name":"PFIND_EXE_FILE_CALLBACK","features":[3,33]},{"name":"PFIND_EXE_FILE_CALLBACKW","features":[3,33]},{"name":"PFN_LIST_CORRUPT","features":[33]},{"name":"PFN_REFERENCE_COUNT","features":[33]},{"name":"PFN_SHARE_COUNT","features":[33]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE","features":[3,33]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE64","features":[3,33]},{"name":"PF_DETECTED_CORRUPTION","features":[33]},{"name":"PGET_MODULE_BASE_ROUTINE","features":[3,33]},{"name":"PGET_MODULE_BASE_ROUTINE64","features":[3,33]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[33]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[33]},{"name":"PGET_TARGET_ATTRIBUTE_VALUE64","features":[3,33]},{"name":"PHASE0_EXCEPTION","features":[33]},{"name":"PHASE0_INITIALIZATION_FAILED","features":[33]},{"name":"PHASE1_INITIALIZATION_FAILED","features":[33]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR32","features":[33]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR64","features":[33]},{"name":"PHYSICAL_MEMORY_RUN32","features":[33]},{"name":"PHYSICAL_MEMORY_RUN64","features":[33]},{"name":"PIMAGEHLP_STATUS_ROUTINE","features":[3,33]},{"name":"PIMAGEHLP_STATUS_ROUTINE32","features":[3,33]},{"name":"PIMAGEHLP_STATUS_ROUTINE64","features":[3,33]},{"name":"PINBALL_FILE_SYSTEM","features":[33]},{"name":"PNP_DETECTED_FATAL_ERROR","features":[33]},{"name":"PNP_INTERNAL_ERROR","features":[33]},{"name":"POOL_CORRUPTION_IN_FILE_AREA","features":[33]},{"name":"PORT_DRIVER_INTERNAL","features":[33]},{"name":"POWER_FAILURE_SIMULATE","features":[33]},{"name":"PP0_INITIALIZATION_FAILED","features":[33]},{"name":"PP1_INITIALIZATION_FAILED","features":[33]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE","features":[3,33]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE64","features":[3,33]},{"name":"PREVIOUS_FATAL_ABNORMAL_RESET_ERROR","features":[33]},{"name":"PROCESS1_INITIALIZATION_FAILED","features":[33]},{"name":"PROCESSOR_DRIVER_INTERNAL","features":[33]},{"name":"PROCESSOR_START_TIMEOUT","features":[33]},{"name":"PROCESS_HAS_LOCKED_PAGES","features":[33]},{"name":"PROCESS_INITIALIZATION_FAILED","features":[33]},{"name":"PROFILER_CONFIGURATION_ILLEGAL","features":[33]},{"name":"PROP_INFO_ATTRIBUTES","features":[33]},{"name":"PROP_INFO_AUTOEXPAND","features":[33]},{"name":"PROP_INFO_DEBUGPROP","features":[33]},{"name":"PROP_INFO_FLAGS","features":[33]},{"name":"PROP_INFO_FULLNAME","features":[33]},{"name":"PROP_INFO_NAME","features":[33]},{"name":"PROP_INFO_TYPE","features":[33]},{"name":"PROP_INFO_VALUE","features":[33]},{"name":"PSYMBOLSERVERBYINDEXPROC","features":[3,33]},{"name":"PSYMBOLSERVERBYINDEXPROCA","features":[3,33]},{"name":"PSYMBOLSERVERBYINDEXPROCW","features":[3,33]},{"name":"PSYMBOLSERVERCALLBACKPROC","features":[3,33]},{"name":"PSYMBOLSERVERCLOSEPROC","features":[3,33]},{"name":"PSYMBOLSERVERDELTANAME","features":[3,33]},{"name":"PSYMBOLSERVERDELTANAMEW","features":[3,33]},{"name":"PSYMBOLSERVERGETINDEXSTRING","features":[3,33]},{"name":"PSYMBOLSERVERGETINDEXSTRINGW","features":[3,33]},{"name":"PSYMBOLSERVERGETOPTIONDATAPROC","features":[3,33]},{"name":"PSYMBOLSERVERGETOPTIONSPROC","features":[33]},{"name":"PSYMBOLSERVERGETSUPPLEMENT","features":[3,33]},{"name":"PSYMBOLSERVERGETSUPPLEMENTW","features":[3,33]},{"name":"PSYMBOLSERVERGETVERSION","features":[3,33]},{"name":"PSYMBOLSERVERISSTORE","features":[3,33]},{"name":"PSYMBOLSERVERISSTOREW","features":[3,33]},{"name":"PSYMBOLSERVERMESSAGEPROC","features":[3,33]},{"name":"PSYMBOLSERVEROPENPROC","features":[3,33]},{"name":"PSYMBOLSERVERPINGPROC","features":[3,33]},{"name":"PSYMBOLSERVERPINGPROCA","features":[3,33]},{"name":"PSYMBOLSERVERPINGPROCW","features":[3,33]},{"name":"PSYMBOLSERVERPINGPROCWEX","features":[3,33]},{"name":"PSYMBOLSERVERPROC","features":[3,33]},{"name":"PSYMBOLSERVERPROCA","features":[3,33]},{"name":"PSYMBOLSERVERPROCW","features":[3,33]},{"name":"PSYMBOLSERVERSETHTTPAUTHHEADER","features":[3,33]},{"name":"PSYMBOLSERVERSETOPTIONSPROC","features":[3,33]},{"name":"PSYMBOLSERVERSETOPTIONSWPROC","features":[3,33]},{"name":"PSYMBOLSERVERSTOREFILE","features":[3,33]},{"name":"PSYMBOLSERVERSTOREFILEW","features":[3,33]},{"name":"PSYMBOLSERVERSTORESUPPLEMENT","features":[3,33]},{"name":"PSYMBOLSERVERSTORESUPPLEMENTW","features":[3,33]},{"name":"PSYMBOLSERVERVERSION","features":[33]},{"name":"PSYMBOLSERVERWEXPROC","features":[3,33]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK","features":[3,33]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK64","features":[3,33]},{"name":"PSYMBOL_REGISTERED_CALLBACK","features":[3,33]},{"name":"PSYMBOL_REGISTERED_CALLBACK64","features":[3,33]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACK","features":[3,33]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACKW","features":[3,33]},{"name":"PSYM_ENUMLINES_CALLBACK","features":[3,33]},{"name":"PSYM_ENUMLINES_CALLBACKW","features":[3,33]},{"name":"PSYM_ENUMMODULES_CALLBACK","features":[3,33]},{"name":"PSYM_ENUMMODULES_CALLBACK64","features":[3,33]},{"name":"PSYM_ENUMMODULES_CALLBACKW64","features":[3,33]},{"name":"PSYM_ENUMPROCESSES_CALLBACK","features":[3,33]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACK","features":[3,33]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACKW","features":[3,33]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK","features":[3,33]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64","features":[3,33]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64W","features":[3,33]},{"name":"PSYM_ENUMSYMBOLS_CALLBACKW","features":[3,33]},{"name":"PTRANSLATE_ADDRESS_ROUTINE","features":[3,33]},{"name":"PTRANSLATE_ADDRESS_ROUTINE64","features":[3,33]},{"name":"PVECTORED_EXCEPTION_HANDLER","features":[3,33,9]},{"name":"PWAITCHAINCALLBACK","features":[3,33]},{"name":"ProcessVmCountersStream","features":[33]},{"name":"QUOTA_UNDERFLOW","features":[33]},{"name":"RAMDISK_BOOT_INITIALIZATION_FAILED","features":[33]},{"name":"RDR_FILE_SYSTEM","features":[33]},{"name":"RECOM_DRIVER","features":[33]},{"name":"RECURSIVE_MACHINE_CHECK","features":[33]},{"name":"RECURSIVE_NMI","features":[33]},{"name":"REFERENCE_BY_POINTER","features":[33]},{"name":"REFMON_INITIALIZATION_FAILED","features":[33]},{"name":"REFS_FILE_SYSTEM","features":[33]},{"name":"REF_UNKNOWN_LOGON_SESSION","features":[33]},{"name":"REGISTRY_CALLBACK_DRIVER_EXCEPTION","features":[33]},{"name":"REGISTRY_ERROR","features":[33]},{"name":"REGISTRY_FILTER_DRIVER_EXCEPTION","features":[33]},{"name":"REGISTRY_LIVE_DUMP","features":[33]},{"name":"RESERVE_QUEUE_OVERFLOW","features":[33]},{"name":"RESOURCE_NOT_OWNED","features":[33]},{"name":"RESOURCE_OWNER_POINTER_INVALID","features":[33]},{"name":"RESTORE_LAST_ERROR_NAME","features":[33]},{"name":"RESTORE_LAST_ERROR_NAME_A","features":[33]},{"name":"RESTORE_LAST_ERROR_NAME_W","features":[33]},{"name":"RIP_EVENT","features":[33]},{"name":"RIP_INFO","features":[33]},{"name":"RIP_INFO_TYPE","features":[33]},{"name":"RTL_VIRTUAL_UNWIND_HANDLER_TYPE","features":[33]},{"name":"RaiseException","features":[33]},{"name":"RaiseFailFastException","features":[3,33,9]},{"name":"RangeMapAddPeImageSections","features":[3,33]},{"name":"RangeMapCreate","features":[33]},{"name":"RangeMapFree","features":[33]},{"name":"RangeMapRead","features":[3,33]},{"name":"RangeMapRemove","features":[3,33]},{"name":"RangeMapWrite","features":[3,33]},{"name":"ReBaseImage","features":[3,33]},{"name":"ReBaseImage64","features":[3,33]},{"name":"ReadMemoryFailureCallback","features":[33]},{"name":"ReadProcessMemory","features":[3,33]},{"name":"RegisterWaitChainCOMCallback","features":[33]},{"name":"RemoveInvalidModuleList","features":[3,33]},{"name":"RemoveMemoryCallback","features":[33]},{"name":"RemoveVectoredContinueHandler","features":[33]},{"name":"RemoveVectoredExceptionHandler","features":[33]},{"name":"ReportSymbolLoadSummary","features":[3,33]},{"name":"ReservedStream0","features":[33]},{"name":"ReservedStream1","features":[33]},{"name":"RtlAddFunctionTable","features":[3,33]},{"name":"RtlAddFunctionTable","features":[3,33]},{"name":"RtlAddGrowableFunctionTable","features":[33]},{"name":"RtlAddGrowableFunctionTable","features":[33]},{"name":"RtlCaptureContext","features":[33,9]},{"name":"RtlCaptureContext2","features":[33,9]},{"name":"RtlCaptureStackBackTrace","features":[33]},{"name":"RtlDeleteFunctionTable","features":[3,33]},{"name":"RtlDeleteFunctionTable","features":[3,33]},{"name":"RtlDeleteGrowableFunctionTable","features":[33]},{"name":"RtlGrowFunctionTable","features":[33]},{"name":"RtlInstallFunctionTableCallback","features":[3,33]},{"name":"RtlInstallFunctionTableCallback","features":[3,33]},{"name":"RtlLookupFunctionEntry","features":[33]},{"name":"RtlLookupFunctionEntry","features":[33]},{"name":"RtlPcToFileHeader","features":[33]},{"name":"RtlRaiseException","features":[3,33]},{"name":"RtlRestoreContext","features":[3,33,9]},{"name":"RtlUnwind","features":[3,33]},{"name":"RtlUnwindEx","features":[3,33,9]},{"name":"RtlVirtualUnwind","features":[3,33,9]},{"name":"RtlVirtualUnwind","features":[3,33,9]},{"name":"SAVER_ACCOUNTPROVSVCINITFAILURE","features":[33]},{"name":"SAVER_APPBARDISMISSAL","features":[33]},{"name":"SAVER_APPLISTUNREACHABLE","features":[33]},{"name":"SAVER_AUDIODRIVERHANG","features":[33]},{"name":"SAVER_AUXILIARYFULLDUMP","features":[33]},{"name":"SAVER_BATTERYPULLOUT","features":[33]},{"name":"SAVER_BLANKSCREEN","features":[33]},{"name":"SAVER_CALLDISMISSAL","features":[33]},{"name":"SAVER_CAPTURESERVICE","features":[33]},{"name":"SAVER_CHROMEPROCESSCRASH","features":[33]},{"name":"SAVER_DEVICEUPDATEUNSPECIFIED","features":[33]},{"name":"SAVER_GRAPHICS","features":[33]},{"name":"SAVER_INPUT","features":[33]},{"name":"SAVER_MEDIACORETESTHANG","features":[33]},{"name":"SAVER_MTBFCOMMANDHANG","features":[33]},{"name":"SAVER_MTBFCOMMANDTIMEOUT","features":[33]},{"name":"SAVER_MTBFIOERROR","features":[33]},{"name":"SAVER_MTBFPASSBUGCHECK","features":[33]},{"name":"SAVER_NAVIGATIONMODEL","features":[33]},{"name":"SAVER_NAVSERVERTIMEOUT","features":[33]},{"name":"SAVER_NONRESPONSIVEPROCESS","features":[33]},{"name":"SAVER_NOTIFICATIONDISMISSAL","features":[33]},{"name":"SAVER_OUTOFMEMORY","features":[33]},{"name":"SAVER_RENDERMOBILEUIOOM","features":[33]},{"name":"SAVER_RENDERTHREADHANG","features":[33]},{"name":"SAVER_REPORTNOTIFICATIONFAILURE","features":[33]},{"name":"SAVER_RESOURCEMANAGEMENT","features":[33]},{"name":"SAVER_RILADAPTATIONCRASH","features":[33]},{"name":"SAVER_RPCFAILURE","features":[33]},{"name":"SAVER_SICKAPPLICATION","features":[33]},{"name":"SAVER_SPEECHDISMISSAL","features":[33]},{"name":"SAVER_STARTNOTVISIBLE","features":[33]},{"name":"SAVER_UNEXPECTEDSHUTDOWN","features":[33]},{"name":"SAVER_UNSPECIFIED","features":[33]},{"name":"SAVER_WAITFORSHELLREADY","features":[33]},{"name":"SAVER_WATCHDOG","features":[33]},{"name":"SCSI_DISK_DRIVER_INTERNAL","features":[33]},{"name":"SCSI_VERIFIER_DETECTED_VIOLATION","features":[33]},{"name":"SDBUS_INTERNAL_ERROR","features":[33]},{"name":"SECURE_BOOT_VIOLATION","features":[33]},{"name":"SECURE_FAULT_UNHANDLED","features":[33]},{"name":"SECURE_KERNEL_ERROR","features":[33]},{"name":"SECURE_PCI_CONFIG_SPACE_ACCESS_VIOLATION","features":[33]},{"name":"SECURITY1_INITIALIZATION_FAILED","features":[33]},{"name":"SECURITY_INITIALIZATION_FAILED","features":[33]},{"name":"SECURITY_SYSTEM","features":[33]},{"name":"SEM_ALL_ERRORS","features":[33]},{"name":"SEM_FAILCRITICALERRORS","features":[33]},{"name":"SEM_NOALIGNMENTFAULTEXCEPT","features":[33]},{"name":"SEM_NOGPFAULTERRORBOX","features":[33]},{"name":"SEM_NOOPENFILEERRORBOX","features":[33]},{"name":"SERIAL_DRIVER_INTERNAL","features":[33]},{"name":"SESSION1_INITIALIZATION_FAILED","features":[33]},{"name":"SESSION_HAS_VALID_POOL_ON_EXIT","features":[33]},{"name":"SESSION_HAS_VALID_SPECIAL_POOL_ON_EXIT","features":[33]},{"name":"SESSION_HAS_VALID_VIEWS_ON_EXIT","features":[33]},{"name":"SETUP_FAILURE","features":[33]},{"name":"SET_ENV_VAR_FAILED","features":[33]},{"name":"SET_OF_INVALID_CONTEXT","features":[33]},{"name":"SHARED_RESOURCE_CONV_ERROR","features":[33]},{"name":"SILO_CORRUPT","features":[33]},{"name":"SLE_ERROR","features":[33]},{"name":"SLE_MINORERROR","features":[33]},{"name":"SLE_WARNING","features":[33]},{"name":"SLMFLAG_ALT_INDEX","features":[33]},{"name":"SLMFLAG_NONE","features":[33]},{"name":"SLMFLAG_NO_SYMBOLS","features":[33]},{"name":"SLMFLAG_VIRTUAL","features":[33]},{"name":"SMB_REDIRECTOR_LIVEDUMP","features":[33]},{"name":"SMB_SERVER_LIVEDUMP","features":[33]},{"name":"SOC_CRITICAL_DEVICE_REMOVED","features":[33]},{"name":"SOC_SUBSYSTEM_FAILURE","features":[33]},{"name":"SOC_SUBSYSTEM_FAILURE_LIVEDUMP","features":[33]},{"name":"SOFT_RESTART_FATAL_ERROR","features":[33]},{"name":"SOURCEFILE","features":[33]},{"name":"SOURCEFILEW","features":[33]},{"name":"SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION","features":[33]},{"name":"SPIN_LOCK_ALREADY_OWNED","features":[33]},{"name":"SPIN_LOCK_INIT_FAILURE","features":[33]},{"name":"SPIN_LOCK_NOT_OWNED","features":[33]},{"name":"SPLITSYM_EXTRACT_ALL","features":[33]},{"name":"SPLITSYM_REMOVE_PRIVATE","features":[33]},{"name":"SPLITSYM_SYMBOLPATH_IS_SRC","features":[33]},{"name":"SRCCODEINFO","features":[33]},{"name":"SRCCODEINFOW","features":[33]},{"name":"SSRVACTION_CHECKSUMSTATUS","features":[33]},{"name":"SSRVACTION_EVENT","features":[33]},{"name":"SSRVACTION_EVENTW","features":[33]},{"name":"SSRVACTION_HTTPSTATUS","features":[33]},{"name":"SSRVACTION_QUERYCANCEL","features":[33]},{"name":"SSRVACTION_SIZE","features":[33]},{"name":"SSRVACTION_TRACE","features":[33]},{"name":"SSRVACTION_XMLOUTPUT","features":[33]},{"name":"SSRVOPT_CALLBACK","features":[33]},{"name":"SSRVOPT_CALLBACKW","features":[33]},{"name":"SSRVOPT_DISABLE_PING_HOST","features":[33]},{"name":"SSRVOPT_DISABLE_TIMEOUT","features":[33]},{"name":"SSRVOPT_DONT_UNCOMPRESS","features":[33]},{"name":"SSRVOPT_DOWNSTREAM_STORE","features":[33]},{"name":"SSRVOPT_DWORD","features":[33]},{"name":"SSRVOPT_DWORDPTR","features":[33]},{"name":"SSRVOPT_ENABLE_COMM_MSG","features":[33]},{"name":"SSRVOPT_FAVOR_COMPRESSED","features":[33]},{"name":"SSRVOPT_FLAT_DEFAULT_STORE","features":[33]},{"name":"SSRVOPT_GETPATH","features":[33]},{"name":"SSRVOPT_GUIDPTR","features":[33]},{"name":"SSRVOPT_MAX","features":[33]},{"name":"SSRVOPT_MESSAGE","features":[33]},{"name":"SSRVOPT_NOCOPY","features":[33]},{"name":"SSRVOPT_OLDGUIDPTR","features":[33]},{"name":"SSRVOPT_OVERWRITE","features":[33]},{"name":"SSRVOPT_PARAMTYPE","features":[33]},{"name":"SSRVOPT_PARENTWIN","features":[33]},{"name":"SSRVOPT_PROXY","features":[33]},{"name":"SSRVOPT_PROXYW","features":[33]},{"name":"SSRVOPT_RESETTOU","features":[33]},{"name":"SSRVOPT_RETRY_APP_HANG","features":[33]},{"name":"SSRVOPT_SECURE","features":[33]},{"name":"SSRVOPT_SERVICE","features":[33]},{"name":"SSRVOPT_SETCONTEXT","features":[33]},{"name":"SSRVOPT_STRING","features":[33]},{"name":"SSRVOPT_TRACE","features":[33]},{"name":"SSRVOPT_UNATTENDED","features":[33]},{"name":"SSRVOPT_URI_FILTER","features":[33]},{"name":"SSRVOPT_URI_TIERS","features":[33]},{"name":"SSRVOPT_WINHTTP","features":[33]},{"name":"SSRVOPT_WININET","features":[33]},{"name":"SSRVURI_ALL","features":[33]},{"name":"SSRVURI_COMPRESSED","features":[33]},{"name":"SSRVURI_FILEPTR","features":[33]},{"name":"SSRVURI_HTTP_COMPRESSED","features":[33]},{"name":"SSRVURI_HTTP_FILEPTR","features":[33]},{"name":"SSRVURI_HTTP_MASK","features":[33]},{"name":"SSRVURI_HTTP_NORMAL","features":[33]},{"name":"SSRVURI_NORMAL","features":[33]},{"name":"SSRVURI_UNC_COMPRESSED","features":[33]},{"name":"SSRVURI_UNC_FILEPTR","features":[33]},{"name":"SSRVURI_UNC_MASK","features":[33]},{"name":"SSRVURI_UNC_NORMAL","features":[33]},{"name":"STACKFRAME","features":[3,33]},{"name":"STACKFRAME64","features":[3,33]},{"name":"STACKFRAME_EX","features":[3,33]},{"name":"STORAGE_DEVICE_ABNORMALITY_DETECTED","features":[33]},{"name":"STORAGE_MINIPORT_ERROR","features":[33]},{"name":"STORE_DATA_STRUCTURE_CORRUPTION","features":[33]},{"name":"STREAMS_INTERNAL_ERROR","features":[33]},{"name":"SYMADDSOURCESTREAM","features":[3,33]},{"name":"SYMADDSOURCESTREAMA","features":[3,33]},{"name":"SYMBOLIC_INITIALIZATION_FAILED","features":[33]},{"name":"SYMBOL_INFO","features":[33]},{"name":"SYMBOL_INFOW","features":[33]},{"name":"SYMBOL_INFO_FLAGS","features":[33]},{"name":"SYMBOL_INFO_PACKAGE","features":[33]},{"name":"SYMBOL_INFO_PACKAGEW","features":[33]},{"name":"SYMENUM_OPTIONS_DEFAULT","features":[33]},{"name":"SYMENUM_OPTIONS_INLINE","features":[33]},{"name":"SYMFLAG_CLR_TOKEN","features":[33]},{"name":"SYMFLAG_CONSTANT","features":[33]},{"name":"SYMFLAG_EXPORT","features":[33]},{"name":"SYMFLAG_FIXUP_ARM64X","features":[33]},{"name":"SYMFLAG_FORWARDER","features":[33]},{"name":"SYMFLAG_FRAMEREL","features":[33]},{"name":"SYMFLAG_FUNCTION","features":[33]},{"name":"SYMFLAG_FUNC_NO_RETURN","features":[33]},{"name":"SYMFLAG_GLOBAL","features":[33]},{"name":"SYMFLAG_ILREL","features":[33]},{"name":"SYMFLAG_LOCAL","features":[33]},{"name":"SYMFLAG_METADATA","features":[33]},{"name":"SYMFLAG_NULL","features":[33]},{"name":"SYMFLAG_PARAMETER","features":[33]},{"name":"SYMFLAG_PUBLIC_CODE","features":[33]},{"name":"SYMFLAG_REGISTER","features":[33]},{"name":"SYMFLAG_REGREL","features":[33]},{"name":"SYMFLAG_REGREL_ALIASINDIR","features":[33]},{"name":"SYMFLAG_RESET","features":[33]},{"name":"SYMFLAG_SLOT","features":[33]},{"name":"SYMFLAG_SYNTHETIC_ZEROBASE","features":[33]},{"name":"SYMFLAG_THUNK","features":[33]},{"name":"SYMFLAG_TLSREL","features":[33]},{"name":"SYMFLAG_VALUEPRESENT","features":[33]},{"name":"SYMFLAG_VIRTUAL","features":[33]},{"name":"SYMF_CONSTANT","features":[33]},{"name":"SYMF_EXPORT","features":[33]},{"name":"SYMF_FORWARDER","features":[33]},{"name":"SYMF_FRAMEREL","features":[33]},{"name":"SYMF_FUNCTION","features":[33]},{"name":"SYMF_LOCAL","features":[33]},{"name":"SYMF_OMAP_GENERATED","features":[33]},{"name":"SYMF_OMAP_MODIFIED","features":[33]},{"name":"SYMF_PARAMETER","features":[33]},{"name":"SYMF_REGISTER","features":[33]},{"name":"SYMF_REGREL","features":[33]},{"name":"SYMF_THUNK","features":[33]},{"name":"SYMF_TLSREL","features":[33]},{"name":"SYMF_VIRTUAL","features":[33]},{"name":"SYMOPT_ALLOW_ABSOLUTE_SYMBOLS","features":[33]},{"name":"SYMOPT_ALLOW_ZERO_ADDRESS","features":[33]},{"name":"SYMOPT_AUTO_PUBLICS","features":[33]},{"name":"SYMOPT_CASE_INSENSITIVE","features":[33]},{"name":"SYMOPT_DEBUG","features":[33]},{"name":"SYMOPT_DEFERRED_LOADS","features":[33]},{"name":"SYMOPT_DISABLE_FAST_SYMBOLS","features":[33]},{"name":"SYMOPT_DISABLE_SRVSTAR_ON_STARTUP","features":[33]},{"name":"SYMOPT_DISABLE_SYMSRV_AUTODETECT","features":[33]},{"name":"SYMOPT_DISABLE_SYMSRV_TIMEOUT","features":[33]},{"name":"SYMOPT_EXACT_SYMBOLS","features":[33]},{"name":"SYMOPT_EX_DISABLEACCESSTIMEUPDATE","features":[33]},{"name":"SYMOPT_EX_LASTVALIDDEBUGDIRECTORY","features":[33]},{"name":"SYMOPT_EX_MAX","features":[33]},{"name":"SYMOPT_EX_NEVERLOADSYMBOLS","features":[33]},{"name":"SYMOPT_EX_NOIMPLICITPATTERNSEARCH","features":[33]},{"name":"SYMOPT_FAIL_CRITICAL_ERRORS","features":[33]},{"name":"SYMOPT_FAVOR_COMPRESSED","features":[33]},{"name":"SYMOPT_FLAT_DIRECTORY","features":[33]},{"name":"SYMOPT_IGNORE_CVREC","features":[33]},{"name":"SYMOPT_IGNORE_IMAGEDIR","features":[33]},{"name":"SYMOPT_IGNORE_NT_SYMPATH","features":[33]},{"name":"SYMOPT_INCLUDE_32BIT_MODULES","features":[33]},{"name":"SYMOPT_LOAD_ANYTHING","features":[33]},{"name":"SYMOPT_LOAD_LINES","features":[33]},{"name":"SYMOPT_NO_CPP","features":[33]},{"name":"SYMOPT_NO_IMAGE_SEARCH","features":[33]},{"name":"SYMOPT_NO_PROMPTS","features":[33]},{"name":"SYMOPT_NO_PUBLICS","features":[33]},{"name":"SYMOPT_NO_UNQUALIFIED_LOADS","features":[33]},{"name":"SYMOPT_OMAP_FIND_NEAREST","features":[33]},{"name":"SYMOPT_OVERWRITE","features":[33]},{"name":"SYMOPT_PUBLICS_ONLY","features":[33]},{"name":"SYMOPT_READONLY_CACHE","features":[33]},{"name":"SYMOPT_SECURE","features":[33]},{"name":"SYMOPT_SYMPATH_LAST","features":[33]},{"name":"SYMOPT_UNDNAME","features":[33]},{"name":"SYMSEARCH_ALLITEMS","features":[33]},{"name":"SYMSEARCH_GLOBALSONLY","features":[33]},{"name":"SYMSEARCH_MASKOBJS","features":[33]},{"name":"SYMSEARCH_RECURSE","features":[33]},{"name":"SYMSRV_EXTENDED_OUTPUT_DATA","features":[33]},{"name":"SYMSRV_INDEX_INFO","features":[3,33]},{"name":"SYMSRV_INDEX_INFOW","features":[3,33]},{"name":"SYMSRV_VERSION","features":[33]},{"name":"SYMSTOREOPT_ALT_INDEX","features":[33]},{"name":"SYMSTOREOPT_COMPRESS","features":[33]},{"name":"SYMSTOREOPT_OVERWRITE","features":[33]},{"name":"SYMSTOREOPT_PASS_IF_EXISTS","features":[33]},{"name":"SYMSTOREOPT_POINTER","features":[33]},{"name":"SYMSTOREOPT_RETURNINDEX","features":[33]},{"name":"SYMSTOREOPT_UNICODE","features":[33]},{"name":"SYM_FIND_ID_OPTION","features":[33]},{"name":"SYM_INLINE_COMP_DIFFERENT","features":[33]},{"name":"SYM_INLINE_COMP_ERROR","features":[33]},{"name":"SYM_INLINE_COMP_IDENTICAL","features":[33]},{"name":"SYM_INLINE_COMP_STEPIN","features":[33]},{"name":"SYM_INLINE_COMP_STEPOUT","features":[33]},{"name":"SYM_INLINE_COMP_STEPOVER","features":[33]},{"name":"SYM_LOAD_FLAGS","features":[33]},{"name":"SYM_SRV_STORE_FILE_FLAGS","features":[33]},{"name":"SYM_STKWALK_DEFAULT","features":[33]},{"name":"SYM_STKWALK_FORCE_FRAMEPTR","features":[33]},{"name":"SYM_STKWALK_ZEROEXTEND_PTRS","features":[33]},{"name":"SYM_TYPE","features":[33]},{"name":"SYNTHETIC_EXCEPTION_UNHANDLED","features":[33]},{"name":"SYNTHETIC_WATCHDOG_TIMEOUT","features":[33]},{"name":"SYSTEM_EXIT_OWNED_MUTEX","features":[33]},{"name":"SYSTEM_IMAGE_BAD_SIGNATURE","features":[33]},{"name":"SYSTEM_LICENSE_VIOLATION","features":[33]},{"name":"SYSTEM_PTE_MISUSE","features":[33]},{"name":"SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD","features":[33]},{"name":"SYSTEM_SERVICE_EXCEPTION","features":[33]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED","features":[33]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M","features":[33]},{"name":"SYSTEM_UNWIND_PREVIOUS_USER","features":[33]},{"name":"SearchTreeForFile","features":[3,33]},{"name":"SearchTreeForFileW","features":[3,33]},{"name":"SecondaryFlagsCallback","features":[33]},{"name":"SetCheckUserInterruptShared","features":[33]},{"name":"SetErrorMode","features":[33]},{"name":"SetImageConfigInformation","features":[3,33,9,35]},{"name":"SetImageConfigInformation","features":[3,33,9,35]},{"name":"SetSymLoadError","features":[33]},{"name":"SetThreadContext","features":[3,33,9]},{"name":"SetThreadErrorMode","features":[3,33]},{"name":"SetUnhandledExceptionFilter","features":[3,33,9]},{"name":"SetXStateFeaturesMask","features":[3,33,9]},{"name":"StackWalk","features":[3,33]},{"name":"StackWalk2","features":[3,33]},{"name":"StackWalk64","features":[3,33]},{"name":"StackWalkEx","features":[3,33]},{"name":"SymAddSourceStream","features":[3,33]},{"name":"SymAddSourceStreamA","features":[3,33]},{"name":"SymAddSourceStreamW","features":[3,33]},{"name":"SymAddSymbol","features":[3,33]},{"name":"SymAddSymbolW","features":[3,33]},{"name":"SymAddrIncludeInlineTrace","features":[3,33]},{"name":"SymCleanup","features":[3,33]},{"name":"SymCoff","features":[33]},{"name":"SymCompareInlineTrace","features":[3,33]},{"name":"SymCv","features":[33]},{"name":"SymDeferred","features":[33]},{"name":"SymDeleteSymbol","features":[3,33]},{"name":"SymDeleteSymbolW","features":[3,33]},{"name":"SymDia","features":[33]},{"name":"SymEnumLines","features":[3,33]},{"name":"SymEnumLinesW","features":[3,33]},{"name":"SymEnumProcesses","features":[3,33]},{"name":"SymEnumSourceFileTokens","features":[3,33]},{"name":"SymEnumSourceFiles","features":[3,33]},{"name":"SymEnumSourceFilesW","features":[3,33]},{"name":"SymEnumSourceLines","features":[3,33]},{"name":"SymEnumSourceLinesW","features":[3,33]},{"name":"SymEnumSym","features":[3,33]},{"name":"SymEnumSymbols","features":[3,33]},{"name":"SymEnumSymbolsEx","features":[3,33]},{"name":"SymEnumSymbolsExW","features":[3,33]},{"name":"SymEnumSymbolsForAddr","features":[3,33]},{"name":"SymEnumSymbolsForAddrW","features":[3,33]},{"name":"SymEnumSymbolsW","features":[3,33]},{"name":"SymEnumTypes","features":[3,33]},{"name":"SymEnumTypesByName","features":[3,33]},{"name":"SymEnumTypesByNameW","features":[3,33]},{"name":"SymEnumTypesW","features":[3,33]},{"name":"SymEnumerateModules","features":[3,33]},{"name":"SymEnumerateModules64","features":[3,33]},{"name":"SymEnumerateModulesW64","features":[3,33]},{"name":"SymEnumerateSymbols","features":[3,33]},{"name":"SymEnumerateSymbols64","features":[3,33]},{"name":"SymEnumerateSymbolsW","features":[3,33]},{"name":"SymEnumerateSymbolsW64","features":[3,33]},{"name":"SymExport","features":[33]},{"name":"SymFindDebugInfoFile","features":[3,33]},{"name":"SymFindDebugInfoFileW","features":[3,33]},{"name":"SymFindExecutableImage","features":[3,33]},{"name":"SymFindExecutableImageW","features":[3,33]},{"name":"SymFindFileInPath","features":[3,33]},{"name":"SymFindFileInPathW","features":[3,33]},{"name":"SymFromAddr","features":[3,33]},{"name":"SymFromAddrW","features":[3,33]},{"name":"SymFromIndex","features":[3,33]},{"name":"SymFromIndexW","features":[3,33]},{"name":"SymFromInlineContext","features":[3,33]},{"name":"SymFromInlineContextW","features":[3,33]},{"name":"SymFromName","features":[3,33]},{"name":"SymFromNameW","features":[3,33]},{"name":"SymFromToken","features":[3,33]},{"name":"SymFromTokenW","features":[3,33]},{"name":"SymFunctionTableAccess","features":[3,33]},{"name":"SymFunctionTableAccess64","features":[3,33]},{"name":"SymFunctionTableAccess64AccessRoutines","features":[3,33]},{"name":"SymGetExtendedOption","features":[3,33]},{"name":"SymGetFileLineOffsets64","features":[3,33]},{"name":"SymGetHomeDirectory","features":[33]},{"name":"SymGetHomeDirectoryW","features":[33]},{"name":"SymGetLineFromAddr","features":[3,33]},{"name":"SymGetLineFromAddr64","features":[3,33]},{"name":"SymGetLineFromAddrW64","features":[3,33]},{"name":"SymGetLineFromInlineContext","features":[3,33]},{"name":"SymGetLineFromInlineContextW","features":[3,33]},{"name":"SymGetLineFromName","features":[3,33]},{"name":"SymGetLineFromName64","features":[3,33]},{"name":"SymGetLineFromNameW64","features":[3,33]},{"name":"SymGetLineNext","features":[3,33]},{"name":"SymGetLineNext64","features":[3,33]},{"name":"SymGetLineNextW64","features":[3,33]},{"name":"SymGetLinePrev","features":[3,33]},{"name":"SymGetLinePrev64","features":[3,33]},{"name":"SymGetLinePrevW64","features":[3,33]},{"name":"SymGetModuleBase","features":[3,33]},{"name":"SymGetModuleBase64","features":[3,33]},{"name":"SymGetModuleInfo","features":[3,33]},{"name":"SymGetModuleInfo64","features":[3,33]},{"name":"SymGetModuleInfoW","features":[3,33]},{"name":"SymGetModuleInfoW64","features":[3,33]},{"name":"SymGetOmaps","features":[3,33]},{"name":"SymGetOptions","features":[33]},{"name":"SymGetScope","features":[3,33]},{"name":"SymGetScopeW","features":[3,33]},{"name":"SymGetSearchPath","features":[3,33]},{"name":"SymGetSearchPathW","features":[3,33]},{"name":"SymGetSourceFile","features":[3,33]},{"name":"SymGetSourceFileChecksum","features":[3,33]},{"name":"SymGetSourceFileChecksumW","features":[3,33]},{"name":"SymGetSourceFileFromToken","features":[3,33]},{"name":"SymGetSourceFileFromTokenByTokenName","features":[3,33]},{"name":"SymGetSourceFileFromTokenByTokenNameW","features":[3,33]},{"name":"SymGetSourceFileFromTokenW","features":[3,33]},{"name":"SymGetSourceFileToken","features":[3,33]},{"name":"SymGetSourceFileTokenByTokenName","features":[3,33]},{"name":"SymGetSourceFileTokenByTokenNameW","features":[3,33]},{"name":"SymGetSourceFileTokenW","features":[3,33]},{"name":"SymGetSourceFileW","features":[3,33]},{"name":"SymGetSourceVarFromToken","features":[3,33]},{"name":"SymGetSourceVarFromTokenW","features":[3,33]},{"name":"SymGetSymFromAddr","features":[3,33]},{"name":"SymGetSymFromAddr64","features":[3,33]},{"name":"SymGetSymFromName","features":[3,33]},{"name":"SymGetSymFromName64","features":[3,33]},{"name":"SymGetSymNext","features":[3,33]},{"name":"SymGetSymNext64","features":[3,33]},{"name":"SymGetSymPrev","features":[3,33]},{"name":"SymGetSymPrev64","features":[3,33]},{"name":"SymGetSymbolFile","features":[3,33]},{"name":"SymGetSymbolFileW","features":[3,33]},{"name":"SymGetTypeFromName","features":[3,33]},{"name":"SymGetTypeFromNameW","features":[3,33]},{"name":"SymGetTypeInfo","features":[3,33]},{"name":"SymGetTypeInfoEx","features":[3,33]},{"name":"SymGetUnwindInfo","features":[3,33]},{"name":"SymInitialize","features":[3,33]},{"name":"SymInitializeW","features":[3,33]},{"name":"SymLoadModule","features":[3,33]},{"name":"SymLoadModule64","features":[3,33]},{"name":"SymLoadModuleEx","features":[3,33]},{"name":"SymLoadModuleExW","features":[3,33]},{"name":"SymMatchFileName","features":[3,33]},{"name":"SymMatchFileNameW","features":[3,33]},{"name":"SymMatchString","features":[3,33]},{"name":"SymMatchStringA","features":[3,33]},{"name":"SymMatchStringW","features":[3,33]},{"name":"SymNext","features":[3,33]},{"name":"SymNextW","features":[3,33]},{"name":"SymNone","features":[33]},{"name":"SymPdb","features":[33]},{"name":"SymPrev","features":[3,33]},{"name":"SymPrevW","features":[3,33]},{"name":"SymQueryInlineTrace","features":[3,33]},{"name":"SymRefreshModuleList","features":[3,33]},{"name":"SymRegisterCallback","features":[3,33]},{"name":"SymRegisterCallback64","features":[3,33]},{"name":"SymRegisterCallbackW64","features":[3,33]},{"name":"SymRegisterFunctionEntryCallback","features":[3,33]},{"name":"SymRegisterFunctionEntryCallback64","features":[3,33]},{"name":"SymSearch","features":[3,33]},{"name":"SymSearchW","features":[3,33]},{"name":"SymSetContext","features":[3,33]},{"name":"SymSetExtendedOption","features":[3,33]},{"name":"SymSetHomeDirectory","features":[3,33]},{"name":"SymSetHomeDirectoryW","features":[3,33]},{"name":"SymSetOptions","features":[33]},{"name":"SymSetParentWindow","features":[3,33]},{"name":"SymSetScopeFromAddr","features":[3,33]},{"name":"SymSetScopeFromIndex","features":[3,33]},{"name":"SymSetScopeFromInlineContext","features":[3,33]},{"name":"SymSetSearchPath","features":[3,33]},{"name":"SymSetSearchPathW","features":[3,33]},{"name":"SymSrvDeltaName","features":[3,33]},{"name":"SymSrvDeltaNameW","features":[3,33]},{"name":"SymSrvGetFileIndexInfo","features":[3,33]},{"name":"SymSrvGetFileIndexInfoW","features":[3,33]},{"name":"SymSrvGetFileIndexString","features":[3,33]},{"name":"SymSrvGetFileIndexStringW","features":[3,33]},{"name":"SymSrvGetFileIndexes","features":[3,33]},{"name":"SymSrvGetFileIndexesW","features":[3,33]},{"name":"SymSrvGetSupplement","features":[3,33]},{"name":"SymSrvGetSupplementW","features":[3,33]},{"name":"SymSrvIsStore","features":[3,33]},{"name":"SymSrvIsStoreW","features":[3,33]},{"name":"SymSrvStoreFile","features":[3,33]},{"name":"SymSrvStoreFileW","features":[3,33]},{"name":"SymSrvStoreSupplement","features":[3,33]},{"name":"SymSrvStoreSupplementW","features":[3,33]},{"name":"SymSym","features":[33]},{"name":"SymUnDName","features":[3,33]},{"name":"SymUnDName64","features":[3,33]},{"name":"SymUnloadModule","features":[3,33]},{"name":"SymUnloadModule64","features":[3,33]},{"name":"SymVirtual","features":[33]},{"name":"SystemInfoStream","features":[33]},{"name":"SystemMemoryInfoStream","features":[33]},{"name":"TARGET_ATTRIBUTE_PACMASK","features":[33]},{"name":"TARGET_MDL_TOO_SMALL","features":[33]},{"name":"TCPIP_AOAC_NIC_ACTIVE_REFERENCE_LEAK","features":[33]},{"name":"TELEMETRY_ASSERTS_LIVEDUMP","features":[33]},{"name":"TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE","features":[33]},{"name":"THIRD_PARTY_FILE_SYSTEM_FAILURE","features":[33]},{"name":"THREAD_ERROR_MODE","features":[33]},{"name":"THREAD_NOT_MUTEX_OWNER","features":[33]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER","features":[33]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER_M","features":[33]},{"name":"THREAD_TERMINATE_HELD_MUTEX","features":[33]},{"name":"THREAD_WRITE_FLAGS","features":[33]},{"name":"TIMER_OR_DPC_INVALID","features":[33]},{"name":"TI_FINDCHILDREN","features":[33]},{"name":"TI_FINDCHILDREN_PARAMS","features":[33]},{"name":"TI_GET_ADDRESS","features":[33]},{"name":"TI_GET_ADDRESSOFFSET","features":[33]},{"name":"TI_GET_ARRAYINDEXTYPEID","features":[33]},{"name":"TI_GET_BASETYPE","features":[33]},{"name":"TI_GET_BITPOSITION","features":[33]},{"name":"TI_GET_CALLING_CONVENTION","features":[33]},{"name":"TI_GET_CHILDRENCOUNT","features":[33]},{"name":"TI_GET_CLASSPARENTID","features":[33]},{"name":"TI_GET_COUNT","features":[33]},{"name":"TI_GET_DATAKIND","features":[33]},{"name":"TI_GET_INDIRECTVIRTUALBASECLASS","features":[33]},{"name":"TI_GET_IS_REFERENCE","features":[33]},{"name":"TI_GET_LENGTH","features":[33]},{"name":"TI_GET_LEXICALPARENT","features":[33]},{"name":"TI_GET_NESTED","features":[33]},{"name":"TI_GET_OBJECTPOINTERTYPE","features":[33]},{"name":"TI_GET_OFFSET","features":[33]},{"name":"TI_GET_SYMINDEX","features":[33]},{"name":"TI_GET_SYMNAME","features":[33]},{"name":"TI_GET_SYMTAG","features":[33]},{"name":"TI_GET_THISADJUST","features":[33]},{"name":"TI_GET_TYPE","features":[33]},{"name":"TI_GET_TYPEID","features":[33]},{"name":"TI_GET_UDTKIND","features":[33]},{"name":"TI_GET_VALUE","features":[33]},{"name":"TI_GET_VIRTUALBASECLASS","features":[33]},{"name":"TI_GET_VIRTUALBASEDISPINDEX","features":[33]},{"name":"TI_GET_VIRTUALBASEOFFSET","features":[33]},{"name":"TI_GET_VIRTUALBASEPOINTEROFFSET","features":[33]},{"name":"TI_GET_VIRTUALBASETABLETYPE","features":[33]},{"name":"TI_GET_VIRTUALTABLESHAPEID","features":[33]},{"name":"TI_GTIEX_REQS_VALID","features":[33]},{"name":"TI_IS_CLOSE_EQUIV_TO","features":[33]},{"name":"TI_IS_EQUIV_TO","features":[33]},{"name":"TOO_MANY_RECURSIVE_FAULTS","features":[33]},{"name":"TRAP_CAUSE_UNKNOWN","features":[33]},{"name":"TTM_FATAL_ERROR","features":[33]},{"name":"TTM_WATCHDOG_TIMEOUT","features":[33]},{"name":"TerminateProcessOnMemoryExhaustion","features":[33]},{"name":"ThreadCallback","features":[33]},{"name":"ThreadExCallback","features":[33]},{"name":"ThreadExListStream","features":[33]},{"name":"ThreadInfoListStream","features":[33]},{"name":"ThreadListStream","features":[33]},{"name":"ThreadNamesStream","features":[33]},{"name":"ThreadWriteBackingStore","features":[33]},{"name":"ThreadWriteContext","features":[33]},{"name":"ThreadWriteInstructionWindow","features":[33]},{"name":"ThreadWriteStack","features":[33]},{"name":"ThreadWriteThread","features":[33]},{"name":"ThreadWriteThreadData","features":[33]},{"name":"ThreadWriteThreadInfo","features":[33]},{"name":"TokenStream","features":[33]},{"name":"TouchFileTimes","features":[3,33]},{"name":"UCMUCSI_FAILURE","features":[33]},{"name":"UCMUCSI_LIVEDUMP","features":[33]},{"name":"UDFS_FILE_SYSTEM","features":[33]},{"name":"UFX_LIVEDUMP","features":[33]},{"name":"UNDNAME_32_BIT_DECODE","features":[33]},{"name":"UNDNAME_COMPLETE","features":[33]},{"name":"UNDNAME_NAME_ONLY","features":[33]},{"name":"UNDNAME_NO_ACCESS_SPECIFIERS","features":[33]},{"name":"UNDNAME_NO_ALLOCATION_LANGUAGE","features":[33]},{"name":"UNDNAME_NO_ALLOCATION_MODEL","features":[33]},{"name":"UNDNAME_NO_ARGUMENTS","features":[33]},{"name":"UNDNAME_NO_CV_THISTYPE","features":[33]},{"name":"UNDNAME_NO_FUNCTION_RETURNS","features":[33]},{"name":"UNDNAME_NO_LEADING_UNDERSCORES","features":[33]},{"name":"UNDNAME_NO_MEMBER_TYPE","features":[33]},{"name":"UNDNAME_NO_MS_KEYWORDS","features":[33]},{"name":"UNDNAME_NO_MS_THISTYPE","features":[33]},{"name":"UNDNAME_NO_RETURN_UDT_MODEL","features":[33]},{"name":"UNDNAME_NO_SPECIAL_SYMS","features":[33]},{"name":"UNDNAME_NO_THISTYPE","features":[33]},{"name":"UNDNAME_NO_THROW_SIGNATURES","features":[33]},{"name":"UNEXPECTED_INITIALIZATION_CALL","features":[33]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP","features":[33]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP_M","features":[33]},{"name":"UNEXPECTED_STORE_EXCEPTION","features":[33]},{"name":"UNLOAD_DLL_DEBUG_EVENT","features":[33]},{"name":"UNLOAD_DLL_DEBUG_INFO","features":[33]},{"name":"UNMOUNTABLE_BOOT_VOLUME","features":[33]},{"name":"UNSUPPORTED_INSTRUCTION_MODE","features":[33]},{"name":"UNSUPPORTED_PROCESSOR","features":[33]},{"name":"UNWIND_HISTORY_TABLE","features":[33]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[33]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[33]},{"name":"UNWIND_ON_INVALID_STACK","features":[33]},{"name":"UNW_FLAG_CHAININFO","features":[33]},{"name":"UNW_FLAG_EHANDLER","features":[33]},{"name":"UNW_FLAG_NHANDLER","features":[33]},{"name":"UNW_FLAG_UHANDLER","features":[33]},{"name":"UP_DRIVER_ON_MP_SYSTEM","features":[33]},{"name":"USB4_HARDWARE_VIOLATION","features":[33]},{"name":"USB_DRIPS_BLOCKER_SURPRISE_REMOVAL_LIVEDUMP","features":[33]},{"name":"USER_MODE_HEALTH_MONITOR","features":[33]},{"name":"USER_MODE_HEALTH_MONITOR_LIVEDUMP","features":[33]},{"name":"UnDecorateSymbolName","features":[33]},{"name":"UnDecorateSymbolNameW","features":[33]},{"name":"UnMapAndLoad","features":[3,33,9,35]},{"name":"UnhandledExceptionFilter","features":[3,33,9]},{"name":"UnloadedModuleListStream","features":[33]},{"name":"UnusedStream","features":[33]},{"name":"UpdateDebugInfoFile","features":[3,33,35]},{"name":"UpdateDebugInfoFileEx","features":[3,33,35]},{"name":"VER_PLATFORM","features":[33]},{"name":"VER_PLATFORM_WIN32_NT","features":[33]},{"name":"VER_PLATFORM_WIN32_WINDOWS","features":[33]},{"name":"VER_PLATFORM_WIN32s","features":[33]},{"name":"VHD_BOOT_HOST_VOLUME_NOT_ENOUGH_SPACE","features":[33]},{"name":"VHD_BOOT_INITIALIZATION_FAILED","features":[33]},{"name":"VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[33]},{"name":"VIDEO_DRIVER_INIT_FAILURE","features":[33]},{"name":"VIDEO_DWMINIT_TIMEOUT_FALLBACK_BDD","features":[33]},{"name":"VIDEO_DXGKRNL_BLACK_SCREEN_LIVEDUMP","features":[33]},{"name":"VIDEO_DXGKRNL_FATAL_ERROR","features":[33]},{"name":"VIDEO_DXGKRNL_LIVEDUMP","features":[33]},{"name":"VIDEO_DXGKRNL_SYSMM_FATAL_ERROR","features":[33]},{"name":"VIDEO_ENGINE_TIMEOUT_DETECTED","features":[33]},{"name":"VIDEO_MEMORY_MANAGEMENT_INTERNAL","features":[33]},{"name":"VIDEO_MINIPORT_BLACK_SCREEN_LIVEDUMP","features":[33]},{"name":"VIDEO_MINIPORT_FAILED_LIVEDUMP","features":[33]},{"name":"VIDEO_SCHEDULER_INTERNAL_ERROR","features":[33]},{"name":"VIDEO_SHADOW_DRIVER_FATAL_ERROR","features":[33]},{"name":"VIDEO_TDR_APPLICATION_BLOCKED","features":[33]},{"name":"VIDEO_TDR_FAILURE","features":[33]},{"name":"VIDEO_TDR_TIMEOUT_DETECTED","features":[33]},{"name":"VMBUS_LIVEDUMP","features":[33]},{"name":"VOLMGRX_INTERNAL_ERROR","features":[33]},{"name":"VOLSNAP_OVERLAPPED_TABLE_ACCESS","features":[33]},{"name":"VSL_INITIALIZATION_FAILED","features":[33]},{"name":"VmPostReadCallback","features":[33]},{"name":"VmPreReadCallback","features":[33]},{"name":"VmQueryCallback","features":[33]},{"name":"VmStartCallback","features":[33]},{"name":"WAITCHAIN_NODE_INFO","features":[3,33]},{"name":"WAIT_CHAIN_THREAD_OPTIONS","features":[33]},{"name":"WCT_ASYNC_OPEN_FLAG","features":[33]},{"name":"WCT_MAX_NODE_COUNT","features":[33]},{"name":"WCT_NETWORK_IO_FLAG","features":[33]},{"name":"WCT_OBJECT_STATUS","features":[33]},{"name":"WCT_OBJECT_TYPE","features":[33]},{"name":"WCT_OBJNAME_LENGTH","features":[33]},{"name":"WCT_OUT_OF_PROC_COM_FLAG","features":[33]},{"name":"WCT_OUT_OF_PROC_CS_FLAG","features":[33]},{"name":"WCT_OUT_OF_PROC_FLAG","features":[33]},{"name":"WDF_VIOLATION","features":[33]},{"name":"WFP_INVALID_OPERATION","features":[33]},{"name":"WHEA_AER_BRIDGE_DESCRIPTOR","features":[3,33]},{"name":"WHEA_AER_ENDPOINT_DESCRIPTOR","features":[3,33]},{"name":"WHEA_AER_ROOTPORT_DESCRIPTOR","features":[3,33]},{"name":"WHEA_BAD_PAGE_LIST_LOCATION","features":[33]},{"name":"WHEA_BAD_PAGE_LIST_MAX_SIZE","features":[33]},{"name":"WHEA_CMCI_THRESHOLD_COUNT","features":[33]},{"name":"WHEA_CMCI_THRESHOLD_POLL_COUNT","features":[33]},{"name":"WHEA_CMCI_THRESHOLD_TIME","features":[33]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MAX","features":[33]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MIN","features":[33]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_V1","features":[33]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MAX","features":[33]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MIN","features":[33]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V1","features":[33]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V2","features":[33]},{"name":"WHEA_DEVICE_DRIVER_DESCRIPTOR","features":[3,33]},{"name":"WHEA_DISABLE_DUMMY_WRITE","features":[33]},{"name":"WHEA_DISABLE_OFFLINE","features":[33]},{"name":"WHEA_DRIVER_BUFFER_SET","features":[33]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DD","features":[3,33]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER","features":[3,33]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER_V1","features":[3,33]},{"name":"WHEA_ERROR_SOURCE_CORRECT_DEVICE_DRIVER","features":[3,33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR","features":[3,33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERBRIDGE","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERENDPOINT","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERROOTPORT","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC_V2","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCMC","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCPE","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFMCA","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFCMC","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFMCE","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFNMI","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_10","features":[33]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_11","features":[33]},{"name":"WHEA_ERROR_SOURCE_FLAG_DEFAULTSOURCE","features":[33]},{"name":"WHEA_ERROR_SOURCE_FLAG_FIRMWAREFIRST","features":[33]},{"name":"WHEA_ERROR_SOURCE_FLAG_GHES_ASSIST","features":[33]},{"name":"WHEA_ERROR_SOURCE_FLAG_GLOBAL","features":[33]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE_DEVICE_DRIVER","features":[3,33]},{"name":"WHEA_ERROR_SOURCE_INVALID_RELATED_SOURCE","features":[33]},{"name":"WHEA_ERROR_SOURCE_STATE","features":[33]},{"name":"WHEA_ERROR_SOURCE_TYPE","features":[33]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE_DEVICE_DRIVER","features":[33]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR","features":[33]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR_V2","features":[33]},{"name":"WHEA_INTERNAL_ERROR","features":[33]},{"name":"WHEA_IPF_CMC_DESCRIPTOR","features":[33]},{"name":"WHEA_IPF_CPE_DESCRIPTOR","features":[33]},{"name":"WHEA_IPF_MCA_DESCRIPTOR","features":[33]},{"name":"WHEA_MAX_MC_BANKS","features":[33]},{"name":"WHEA_MEM_PERSISTOFFLINE","features":[33]},{"name":"WHEA_MEM_PFA_DISABLE","features":[33]},{"name":"WHEA_MEM_PFA_PAGECOUNT","features":[33]},{"name":"WHEA_MEM_PFA_THRESHOLD","features":[33]},{"name":"WHEA_MEM_PFA_TIMEOUT","features":[33]},{"name":"WHEA_NOTIFICATION_DESCRIPTOR","features":[33]},{"name":"WHEA_NOTIFICATION_FLAGS","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEA","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEI","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_CMCI","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT_GSIV","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_GPIO_SIGNAL","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_LOCALINTERRUPT","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_MCE","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_NMI","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_POLLED","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_SCI","features":[33]},{"name":"WHEA_NOTIFICATION_TYPE_SDEI","features":[33]},{"name":"WHEA_NOTIFY_ALL_OFFLINES","features":[33]},{"name":"WHEA_PCI_SLOT_NUMBER","features":[33]},{"name":"WHEA_PENDING_PAGE_LIST_SZ","features":[33]},{"name":"WHEA_RESTORE_CMCI_ATTEMPTS","features":[33]},{"name":"WHEA_RESTORE_CMCI_ENABLED","features":[33]},{"name":"WHEA_RESTORE_CMCI_ERR_LIMIT","features":[33]},{"name":"WHEA_ROW_FAIL_CHECK_ENABLE","features":[33]},{"name":"WHEA_ROW_FAIL_CHECK_EXTENT","features":[33]},{"name":"WHEA_ROW_FAIL_CHECK_THRESHOLD","features":[33]},{"name":"WHEA_UNCORRECTABLE_ERROR","features":[33]},{"name":"WHEA_XPF_CMC_DESCRIPTOR","features":[3,33]},{"name":"WHEA_XPF_MCE_DESCRIPTOR","features":[3,33]},{"name":"WHEA_XPF_MC_BANK_DESCRIPTOR","features":[3,33]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_AMD64MCA","features":[33]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_IA32MCA","features":[33]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_Intel64MCA","features":[33]},{"name":"WHEA_XPF_NMI_DESCRIPTOR","features":[3,33]},{"name":"WIN32K_ATOMIC_CHECK_FAILURE","features":[33]},{"name":"WIN32K_CALLOUT_WATCHDOG_BUGCHECK","features":[33]},{"name":"WIN32K_CALLOUT_WATCHDOG_LIVEDUMP","features":[33]},{"name":"WIN32K_CRITICAL_FAILURE","features":[33]},{"name":"WIN32K_CRITICAL_FAILURE_LIVEDUMP","features":[33]},{"name":"WIN32K_HANDLE_MANAGER","features":[33]},{"name":"WIN32K_INIT_OR_RIT_FAILURE","features":[33]},{"name":"WIN32K_POWER_WATCHDOG_TIMEOUT","features":[33]},{"name":"WIN32K_SECURITY_FAILURE","features":[33]},{"name":"WINDOWS_NT_BANNER","features":[33]},{"name":"WINDOWS_NT_CSD_STRING","features":[33]},{"name":"WINDOWS_NT_INFO_STRING","features":[33]},{"name":"WINDOWS_NT_INFO_STRING_PLURAL","features":[33]},{"name":"WINDOWS_NT_MP_STRING","features":[33]},{"name":"WINDOWS_NT_RC_STRING","features":[33]},{"name":"WINLOGON_FATAL_ERROR","features":[33]},{"name":"WINSOCK_DETECTED_HUNG_CLOSESOCKET_LIVEDUMP","features":[33]},{"name":"WORKER_INVALID","features":[33]},{"name":"WORKER_THREAD_INVALID_STATE","features":[33]},{"name":"WORKER_THREAD_RETURNED_AT_BAD_IRQL","features":[33]},{"name":"WORKER_THREAD_RETURNED_WHILE_ATTACHED_TO_SILO","features":[33]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_IO_PRIORITY","features":[33]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_PAGING_IO_PRIORITY","features":[33]},{"name":"WORKER_THREAD_RETURNED_WITH_NON_DEFAULT_WORKLOAD_CLASS","features":[33]},{"name":"WORKER_THREAD_RETURNED_WITH_SYSTEM_PAGE_PRIORITY_ACTIVE","features":[33]},{"name":"WORKER_THREAD_TEST_CONDITION","features":[33]},{"name":"WOW64_CONTEXT","features":[33]},{"name":"WOW64_CONTEXT_ALL","features":[33]},{"name":"WOW64_CONTEXT_CONTROL","features":[33]},{"name":"WOW64_CONTEXT_DEBUG_REGISTERS","features":[33]},{"name":"WOW64_CONTEXT_EXCEPTION_ACTIVE","features":[33]},{"name":"WOW64_CONTEXT_EXCEPTION_REPORTING","features":[33]},{"name":"WOW64_CONTEXT_EXCEPTION_REQUEST","features":[33]},{"name":"WOW64_CONTEXT_EXTENDED_REGISTERS","features":[33]},{"name":"WOW64_CONTEXT_FLAGS","features":[33]},{"name":"WOW64_CONTEXT_FLOATING_POINT","features":[33]},{"name":"WOW64_CONTEXT_FULL","features":[33]},{"name":"WOW64_CONTEXT_INTEGER","features":[33]},{"name":"WOW64_CONTEXT_SEGMENTS","features":[33]},{"name":"WOW64_CONTEXT_SERVICE_ACTIVE","features":[33]},{"name":"WOW64_CONTEXT_X86","features":[33]},{"name":"WOW64_CONTEXT_XSTATE","features":[33]},{"name":"WOW64_DESCRIPTOR_TABLE_ENTRY","features":[33]},{"name":"WOW64_FLOATING_SAVE_AREA","features":[33]},{"name":"WOW64_LDT_ENTRY","features":[33]},{"name":"WOW64_MAXIMUM_SUPPORTED_EXTENSION","features":[33]},{"name":"WOW64_SIZE_OF_80387_REGISTERS","features":[33]},{"name":"WVR_LIVEDUMP_APP_IO_TIMEOUT","features":[33]},{"name":"WVR_LIVEDUMP_CRITICAL_ERROR","features":[33]},{"name":"WVR_LIVEDUMP_MANUALLY_INITIATED","features":[33]},{"name":"WVR_LIVEDUMP_RECOVERY_IOCONTEXT_TIMEOUT","features":[33]},{"name":"WVR_LIVEDUMP_REPLICATION_IOCONTEXT_TIMEOUT","features":[33]},{"name":"WVR_LIVEDUMP_STATE_FAILURE","features":[33]},{"name":"WVR_LIVEDUMP_STATE_TRANSITION_TIMEOUT","features":[33]},{"name":"WaitForDebugEvent","features":[3,33,39]},{"name":"WaitForDebugEventEx","features":[3,33,39]},{"name":"WctAlpcType","features":[33]},{"name":"WctComActivationType","features":[33]},{"name":"WctComType","features":[33]},{"name":"WctCriticalSectionType","features":[33]},{"name":"WctMaxType","features":[33]},{"name":"WctMutexType","features":[33]},{"name":"WctProcessWaitType","features":[33]},{"name":"WctSendMessageType","features":[33]},{"name":"WctSmbIoType","features":[33]},{"name":"WctSocketIoType","features":[33]},{"name":"WctStatusAbandoned","features":[33]},{"name":"WctStatusBlocked","features":[33]},{"name":"WctStatusError","features":[33]},{"name":"WctStatusMax","features":[33]},{"name":"WctStatusNoAccess","features":[33]},{"name":"WctStatusNotOwned","features":[33]},{"name":"WctStatusOwned","features":[33]},{"name":"WctStatusPidOnly","features":[33]},{"name":"WctStatusPidOnlyRpcss","features":[33]},{"name":"WctStatusRunning","features":[33]},{"name":"WctStatusUnknown","features":[33]},{"name":"WctThreadType","features":[33]},{"name":"WctThreadWaitType","features":[33]},{"name":"WctUnknownType","features":[33]},{"name":"WheaErrSrcStateRemovePending","features":[33]},{"name":"WheaErrSrcStateRemoved","features":[33]},{"name":"WheaErrSrcStateStarted","features":[33]},{"name":"WheaErrSrcStateStopped","features":[33]},{"name":"WheaErrSrcTypeBMC","features":[33]},{"name":"WheaErrSrcTypeBOOT","features":[33]},{"name":"WheaErrSrcTypeCMC","features":[33]},{"name":"WheaErrSrcTypeCPE","features":[33]},{"name":"WheaErrSrcTypeDeviceDriver","features":[33]},{"name":"WheaErrSrcTypeGeneric","features":[33]},{"name":"WheaErrSrcTypeGenericV2","features":[33]},{"name":"WheaErrSrcTypeINIT","features":[33]},{"name":"WheaErrSrcTypeIPFCMC","features":[33]},{"name":"WheaErrSrcTypeIPFCPE","features":[33]},{"name":"WheaErrSrcTypeIPFMCA","features":[33]},{"name":"WheaErrSrcTypeMCE","features":[33]},{"name":"WheaErrSrcTypeMax","features":[33]},{"name":"WheaErrSrcTypeNMI","features":[33]},{"name":"WheaErrSrcTypePCIe","features":[33]},{"name":"WheaErrSrcTypePMEM","features":[33]},{"name":"WheaErrSrcTypeSCIGeneric","features":[33]},{"name":"WheaErrSrcTypeSCIGenericV2","features":[33]},{"name":"WheaErrSrcTypeSea","features":[33]},{"name":"WheaErrSrcTypeSei","features":[33]},{"name":"Wow64GetThreadContext","features":[3,33]},{"name":"Wow64GetThreadSelectorEntry","features":[3,33]},{"name":"Wow64SetThreadContext","features":[3,33]},{"name":"WriteKernelMinidumpCallback","features":[33]},{"name":"WriteProcessMemory","features":[3,33]},{"name":"XBOX_360_SYSTEM_CRASH","features":[33]},{"name":"XBOX_360_SYSTEM_CRASH_RESERVED","features":[33]},{"name":"XBOX_CORRUPTED_IMAGE","features":[33]},{"name":"XBOX_CORRUPTED_IMAGE_BASE","features":[33]},{"name":"XBOX_INVERTED_FUNCTION_TABLE_OVERFLOW","features":[33]},{"name":"XBOX_MANUALLY_INITIATED_CRASH","features":[33]},{"name":"XBOX_SECURITY_FAILUE","features":[33]},{"name":"XBOX_SHUTDOWN_WATCHDOG_TIMEOUT","features":[33]},{"name":"XBOX_VMCTRL_CS_TIMEOUT","features":[33]},{"name":"XBOX_XDS_WATCHDOG_TIMEOUT","features":[33]},{"name":"XNS_INTERNAL_ERROR","features":[33]},{"name":"XPF_MCE_FLAGS","features":[33]},{"name":"XPF_MC_BANK_FLAGS","features":[33]},{"name":"XSAVE_AREA","features":[33]},{"name":"XSAVE_AREA_HEADER","features":[33]},{"name":"XSAVE_FORMAT","features":[33]},{"name":"XSAVE_FORMAT","features":[33]},{"name":"XSTATE_CONFIGURATION","features":[33]},{"name":"XSTATE_CONFIG_FEATURE_MSC_INFO","features":[33]},{"name":"XSTATE_CONTEXT","features":[33]},{"name":"XSTATE_CONTEXT","features":[33]},{"name":"XSTATE_FEATURE","features":[33]},{"name":"ceStreamBucketParameters","features":[33]},{"name":"ceStreamDiagnosisList","features":[33]},{"name":"ceStreamException","features":[33]},{"name":"ceStreamMemoryPhysicalList","features":[33]},{"name":"ceStreamMemoryVirtualList","features":[33]},{"name":"ceStreamModuleList","features":[33]},{"name":"ceStreamNull","features":[33]},{"name":"ceStreamProcessList","features":[33]},{"name":"ceStreamProcessModuleMap","features":[33]},{"name":"ceStreamSystemInfo","features":[33]},{"name":"ceStreamThreadCallStackList","features":[33]},{"name":"ceStreamThreadContextList","features":[33]},{"name":"ceStreamThreadList","features":[33]},{"name":"hdBase","features":[33]},{"name":"hdMax","features":[33]},{"name":"hdSrc","features":[33]},{"name":"hdSym","features":[33]},{"name":"sevAttn","features":[33]},{"name":"sevFatal","features":[33]},{"name":"sevInfo","features":[33]},{"name":"sevMax","features":[33]},{"name":"sevProblem","features":[33]},{"name":"sfDbg","features":[33]},{"name":"sfImage","features":[33]},{"name":"sfMax","features":[33]},{"name":"sfMpd","features":[33]},{"name":"sfPdb","features":[33]}],"556":[{"name":"ADDRESS_TYPE_INDEX_NOT_FOUND","features":[167]},{"name":"Ambiguous","features":[167]},{"name":"ArrayDimension","features":[167]},{"name":"BUSDATA","features":[167]},{"name":"CANNOT_ALLOCATE_MEMORY","features":[167]},{"name":"CKCL_DATA","features":[167]},{"name":"CKCL_LISTHEAD","features":[3,167]},{"name":"CLSID_DebugFailureAnalysisBasic","features":[167]},{"name":"CLSID_DebugFailureAnalysisKernel","features":[167]},{"name":"CLSID_DebugFailureAnalysisTarget","features":[167]},{"name":"CLSID_DebugFailureAnalysisUser","features":[167]},{"name":"CLSID_DebugFailureAnalysisWinCE","features":[167]},{"name":"CLSID_DebugFailureAnalysisXBox360","features":[167]},{"name":"CPU_INFO","features":[167]},{"name":"CPU_INFO_v1","features":[167]},{"name":"CPU_INFO_v2","features":[167]},{"name":"CROSS_PLATFORM_MAXIMUM_PROCESSORS","features":[167]},{"name":"CURRENT_KD_SECONDARY_VERSION","features":[167]},{"name":"CallingConventionCDecl","features":[167]},{"name":"CallingConventionFastCall","features":[167]},{"name":"CallingConventionKind","features":[167]},{"name":"CallingConventionStdCall","features":[167]},{"name":"CallingConventionSysCall","features":[167]},{"name":"CallingConventionThisCall","features":[167]},{"name":"CallingConventionUnknown","features":[167]},{"name":"CreateDataModelManager","features":[167]},{"name":"DBGKD_DEBUG_DATA_HEADER32","features":[167,9]},{"name":"DBGKD_DEBUG_DATA_HEADER64","features":[167,9]},{"name":"DBGKD_GET_VERSION32","features":[167]},{"name":"DBGKD_GET_VERSION64","features":[167]},{"name":"DBGKD_MAJOR_BIG","features":[167]},{"name":"DBGKD_MAJOR_CE","features":[167]},{"name":"DBGKD_MAJOR_COUNT","features":[167]},{"name":"DBGKD_MAJOR_EFI","features":[167]},{"name":"DBGKD_MAJOR_EXDI","features":[167]},{"name":"DBGKD_MAJOR_HYPERVISOR","features":[167]},{"name":"DBGKD_MAJOR_MIDORI","features":[167]},{"name":"DBGKD_MAJOR_NT","features":[167]},{"name":"DBGKD_MAJOR_NTBD","features":[167]},{"name":"DBGKD_MAJOR_SINGULARITY","features":[167]},{"name":"DBGKD_MAJOR_TNT","features":[167]},{"name":"DBGKD_MAJOR_TYPES","features":[167]},{"name":"DBGKD_MAJOR_XBOX","features":[167]},{"name":"DBGKD_SIMULATION_EXDI","features":[167]},{"name":"DBGKD_SIMULATION_NONE","features":[167]},{"name":"DBGKD_VERS_FLAG_DATA","features":[167]},{"name":"DBGKD_VERS_FLAG_HAL_IN_NTOS","features":[167]},{"name":"DBGKD_VERS_FLAG_HSS","features":[167]},{"name":"DBGKD_VERS_FLAG_MP","features":[167]},{"name":"DBGKD_VERS_FLAG_NOMM","features":[167]},{"name":"DBGKD_VERS_FLAG_PARTITIONS","features":[167]},{"name":"DBGKD_VERS_FLAG_PTR64","features":[167]},{"name":"DBG_DUMP_ADDRESS_AT_END","features":[167]},{"name":"DBG_DUMP_ADDRESS_OF_FIELD","features":[167]},{"name":"DBG_DUMP_ARRAY","features":[167]},{"name":"DBG_DUMP_BLOCK_RECURSE","features":[167]},{"name":"DBG_DUMP_CALL_FOR_EACH","features":[167]},{"name":"DBG_DUMP_COMPACT_OUT","features":[167]},{"name":"DBG_DUMP_COPY_TYPE_DATA","features":[167]},{"name":"DBG_DUMP_FIELD_ARRAY","features":[167]},{"name":"DBG_DUMP_FIELD_CALL_BEFORE_PRINT","features":[167]},{"name":"DBG_DUMP_FIELD_COPY_FIELD_DATA","features":[167]},{"name":"DBG_DUMP_FIELD_DEFAULT_STRING","features":[167]},{"name":"DBG_DUMP_FIELD_FULL_NAME","features":[167]},{"name":"DBG_DUMP_FIELD_GUID_STRING","features":[167]},{"name":"DBG_DUMP_FIELD_MULTI_STRING","features":[167]},{"name":"DBG_DUMP_FIELD_NO_CALLBACK_REQ","features":[167]},{"name":"DBG_DUMP_FIELD_NO_PRINT","features":[167]},{"name":"DBG_DUMP_FIELD_RECUR_ON_THIS","features":[167]},{"name":"DBG_DUMP_FIELD_RETURN_ADDRESS","features":[167]},{"name":"DBG_DUMP_FIELD_SIZE_IN_BITS","features":[167]},{"name":"DBG_DUMP_FIELD_UTF32_STRING","features":[167]},{"name":"DBG_DUMP_FIELD_WCHAR_STRING","features":[167]},{"name":"DBG_DUMP_FUNCTION_FORMAT","features":[167]},{"name":"DBG_DUMP_GET_SIZE_ONLY","features":[167]},{"name":"DBG_DUMP_LIST","features":[167]},{"name":"DBG_DUMP_MATCH_SIZE","features":[167]},{"name":"DBG_DUMP_NO_INDENT","features":[167]},{"name":"DBG_DUMP_NO_OFFSET","features":[167]},{"name":"DBG_DUMP_NO_PRINT","features":[167]},{"name":"DBG_DUMP_READ_PHYSICAL","features":[167]},{"name":"DBG_DUMP_VERBOSE","features":[167]},{"name":"DBG_FRAME_DEFAULT","features":[167]},{"name":"DBG_FRAME_IGNORE_INLINE","features":[167]},{"name":"DBG_RETURN_SUBTYPES","features":[167]},{"name":"DBG_RETURN_TYPE","features":[167]},{"name":"DBG_RETURN_TYPE_VALUES","features":[167]},{"name":"DBG_THREAD_ATTRIBUTES","features":[167]},{"name":"DEBUG_ADDSYNTHMOD_DEFAULT","features":[167]},{"name":"DEBUG_ADDSYNTHMOD_ZEROBASE","features":[167]},{"name":"DEBUG_ADDSYNTHSYM_DEFAULT","features":[167]},{"name":"DEBUG_ANALYSIS_PROCESSOR_INFO","features":[167]},{"name":"DEBUG_ANY_ID","features":[167]},{"name":"DEBUG_ASMOPT_DEFAULT","features":[167]},{"name":"DEBUG_ASMOPT_IGNORE_OUTPUT_WIDTH","features":[167]},{"name":"DEBUG_ASMOPT_NO_CODE_BYTES","features":[167]},{"name":"DEBUG_ASMOPT_SOURCE_LINE_NUMBER","features":[167]},{"name":"DEBUG_ASMOPT_VERBOSE","features":[167]},{"name":"DEBUG_ATTACH_DEFAULT","features":[167]},{"name":"DEBUG_ATTACH_EXDI_DRIVER","features":[167]},{"name":"DEBUG_ATTACH_EXISTING","features":[167]},{"name":"DEBUG_ATTACH_INSTALL_DRIVER","features":[167]},{"name":"DEBUG_ATTACH_INVASIVE_NO_INITIAL_BREAK","features":[167]},{"name":"DEBUG_ATTACH_INVASIVE_RESUME_PROCESS","features":[167]},{"name":"DEBUG_ATTACH_KERNEL_CONNECTION","features":[167]},{"name":"DEBUG_ATTACH_LOCAL_KERNEL","features":[167]},{"name":"DEBUG_ATTACH_NONINVASIVE","features":[167]},{"name":"DEBUG_ATTACH_NONINVASIVE_ALLOW_PARTIAL","features":[167]},{"name":"DEBUG_ATTACH_NONINVASIVE_NO_SUSPEND","features":[167]},{"name":"DEBUG_BREAKPOINT_ADDER_ONLY","features":[167]},{"name":"DEBUG_BREAKPOINT_CODE","features":[167]},{"name":"DEBUG_BREAKPOINT_DATA","features":[167]},{"name":"DEBUG_BREAKPOINT_DEFERRED","features":[167]},{"name":"DEBUG_BREAKPOINT_ENABLED","features":[167]},{"name":"DEBUG_BREAKPOINT_GO_ONLY","features":[167]},{"name":"DEBUG_BREAKPOINT_INLINE","features":[167]},{"name":"DEBUG_BREAKPOINT_ONE_SHOT","features":[167]},{"name":"DEBUG_BREAKPOINT_PARAMETERS","features":[167]},{"name":"DEBUG_BREAKPOINT_TIME","features":[167]},{"name":"DEBUG_BREAK_EXECUTE","features":[167]},{"name":"DEBUG_BREAK_IO","features":[167]},{"name":"DEBUG_BREAK_READ","features":[167]},{"name":"DEBUG_BREAK_WRITE","features":[167]},{"name":"DEBUG_CACHED_SYMBOL_INFO","features":[167]},{"name":"DEBUG_CDS_ALL","features":[167]},{"name":"DEBUG_CDS_DATA","features":[167]},{"name":"DEBUG_CDS_REFRESH","features":[167]},{"name":"DEBUG_CDS_REFRESH_ADDBREAKPOINT","features":[167]},{"name":"DEBUG_CDS_REFRESH_EVALUATE","features":[167]},{"name":"DEBUG_CDS_REFRESH_EXECUTE","features":[167]},{"name":"DEBUG_CDS_REFRESH_EXECUTECOMMANDFILE","features":[167]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP","features":[167]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP_PSEUDO","features":[167]},{"name":"DEBUG_CDS_REFRESH_REMOVEBREAKPOINT","features":[167]},{"name":"DEBUG_CDS_REFRESH_SETSCOPE","features":[167]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFRAMEBYINDEX","features":[167]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMJITDEBUGINFO","features":[167]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMSTOREDEVENT","features":[167]},{"name":"DEBUG_CDS_REFRESH_SETVALUE","features":[167]},{"name":"DEBUG_CDS_REFRESH_SETVALUE2","features":[167]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL","features":[167]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL2","features":[167]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUAL","features":[167]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUALUNCACHED","features":[167]},{"name":"DEBUG_CDS_REGISTERS","features":[167]},{"name":"DEBUG_CES_ALL","features":[167]},{"name":"DEBUG_CES_ASSEMBLY_OPTIONS","features":[167]},{"name":"DEBUG_CES_BREAKPOINTS","features":[167]},{"name":"DEBUG_CES_CODE_LEVEL","features":[167]},{"name":"DEBUG_CES_CURRENT_THREAD","features":[167]},{"name":"DEBUG_CES_EFFECTIVE_PROCESSOR","features":[167]},{"name":"DEBUG_CES_ENGINE_OPTIONS","features":[167]},{"name":"DEBUG_CES_EVENT_FILTERS","features":[167]},{"name":"DEBUG_CES_EXECUTION_STATUS","features":[167]},{"name":"DEBUG_CES_EXPRESSION_SYNTAX","features":[167]},{"name":"DEBUG_CES_EXTENSIONS","features":[167]},{"name":"DEBUG_CES_LOG_FILE","features":[167]},{"name":"DEBUG_CES_PROCESS_OPTIONS","features":[167]},{"name":"DEBUG_CES_RADIX","features":[167]},{"name":"DEBUG_CES_SYSTEMS","features":[167]},{"name":"DEBUG_CES_TEXT_REPLACEMENTS","features":[167]},{"name":"DEBUG_CLASS_IMAGE_FILE","features":[167]},{"name":"DEBUG_CLASS_KERNEL","features":[167]},{"name":"DEBUG_CLASS_UNINITIALIZED","features":[167]},{"name":"DEBUG_CLASS_USER_WINDOWS","features":[167]},{"name":"DEBUG_CLIENT_CDB","features":[167]},{"name":"DEBUG_CLIENT_CONTEXT","features":[167]},{"name":"DEBUG_CLIENT_KD","features":[167]},{"name":"DEBUG_CLIENT_NTKD","features":[167]},{"name":"DEBUG_CLIENT_NTSD","features":[167]},{"name":"DEBUG_CLIENT_UNKNOWN","features":[167]},{"name":"DEBUG_CLIENT_VSINT","features":[167]},{"name":"DEBUG_CLIENT_WINDBG","features":[167]},{"name":"DEBUG_CLIENT_WINIDE","features":[167]},{"name":"DEBUG_CMDEX_ADD_EVENT_STRING","features":[167]},{"name":"DEBUG_CMDEX_INVALID","features":[167]},{"name":"DEBUG_CMDEX_RESET_EVENT_STRINGS","features":[167]},{"name":"DEBUG_COMMAND_EXCEPTION_ID","features":[167]},{"name":"DEBUG_CONNECT_SESSION_DEFAULT","features":[167]},{"name":"DEBUG_CONNECT_SESSION_NO_ANNOUNCE","features":[167]},{"name":"DEBUG_CONNECT_SESSION_NO_VERSION","features":[167]},{"name":"DEBUG_CPU_MICROCODE_VERSION","features":[167]},{"name":"DEBUG_CPU_SPEED_INFO","features":[167]},{"name":"DEBUG_CREATE_PROCESS_OPTIONS","features":[167]},{"name":"DEBUG_CSS_ALL","features":[167]},{"name":"DEBUG_CSS_COLLAPSE_CHILDREN","features":[167]},{"name":"DEBUG_CSS_LOADS","features":[167]},{"name":"DEBUG_CSS_PATHS","features":[167]},{"name":"DEBUG_CSS_SCOPE","features":[167]},{"name":"DEBUG_CSS_SYMBOL_OPTIONS","features":[167]},{"name":"DEBUG_CSS_TYPE_OPTIONS","features":[167]},{"name":"DEBUG_CSS_UNLOADS","features":[167]},{"name":"DEBUG_CURRENT_DEFAULT","features":[167]},{"name":"DEBUG_CURRENT_DISASM","features":[167]},{"name":"DEBUG_CURRENT_REGISTERS","features":[167]},{"name":"DEBUG_CURRENT_SOURCE_LINE","features":[167]},{"name":"DEBUG_CURRENT_SYMBOL","features":[167]},{"name":"DEBUG_DATA_BASE_TRANSLATION_VIRTUAL_OFFSET","features":[167]},{"name":"DEBUG_DATA_BreakpointWithStatusAddr","features":[167]},{"name":"DEBUG_DATA_CmNtCSDVersionAddr","features":[167]},{"name":"DEBUG_DATA_DumpAttributes","features":[167]},{"name":"DEBUG_DATA_DumpFormatVersion","features":[167]},{"name":"DEBUG_DATA_DumpMmStorage","features":[167]},{"name":"DEBUG_DATA_DumpPowerState","features":[167]},{"name":"DEBUG_DATA_DumpWriterStatus","features":[167]},{"name":"DEBUG_DATA_DumpWriterVersion","features":[167]},{"name":"DEBUG_DATA_EtwpDebuggerData","features":[167]},{"name":"DEBUG_DATA_ExpNumberOfPagedPoolsAddr","features":[167]},{"name":"DEBUG_DATA_ExpPagedPoolDescriptorAddr","features":[167]},{"name":"DEBUG_DATA_ExpSystemResourcesListAddr","features":[167]},{"name":"DEBUG_DATA_IopErrorLogListHeadAddr","features":[167]},{"name":"DEBUG_DATA_KPCR_OFFSET","features":[167]},{"name":"DEBUG_DATA_KPRCB_OFFSET","features":[167]},{"name":"DEBUG_DATA_KTHREAD_OFFSET","features":[167]},{"name":"DEBUG_DATA_KdPrintBufferSizeAddr","features":[167]},{"name":"DEBUG_DATA_KdPrintCircularBufferAddr","features":[167]},{"name":"DEBUG_DATA_KdPrintCircularBufferEndAddr","features":[167]},{"name":"DEBUG_DATA_KdPrintCircularBufferPtrAddr","features":[167]},{"name":"DEBUG_DATA_KdPrintRolloverCountAddr","features":[167]},{"name":"DEBUG_DATA_KdPrintWritePointerAddr","features":[167]},{"name":"DEBUG_DATA_KeBugCheckCallbackListHeadAddr","features":[167]},{"name":"DEBUG_DATA_KeTimeIncrementAddr","features":[167]},{"name":"DEBUG_DATA_KeUserCallbackDispatcherAddr","features":[167]},{"name":"DEBUG_DATA_KernBase","features":[167]},{"name":"DEBUG_DATA_KernelVerifierAddr","features":[167]},{"name":"DEBUG_DATA_KiBugcheckDataAddr","features":[167]},{"name":"DEBUG_DATA_KiCallUserModeAddr","features":[167]},{"name":"DEBUG_DATA_KiNormalSystemCall","features":[167]},{"name":"DEBUG_DATA_KiProcessorBlockAddr","features":[167]},{"name":"DEBUG_DATA_MmAllocatedNonPagedPoolAddr","features":[167]},{"name":"DEBUG_DATA_MmAvailablePagesAddr","features":[167]},{"name":"DEBUG_DATA_MmBadPagesDetected","features":[167]},{"name":"DEBUG_DATA_MmDriverCommitAddr","features":[167]},{"name":"DEBUG_DATA_MmExtendedCommitAddr","features":[167]},{"name":"DEBUG_DATA_MmFreePageListHeadAddr","features":[167]},{"name":"DEBUG_DATA_MmHighestPhysicalPageAddr","features":[167]},{"name":"DEBUG_DATA_MmHighestUserAddressAddr","features":[167]},{"name":"DEBUG_DATA_MmLastUnloadedDriverAddr","features":[167]},{"name":"DEBUG_DATA_MmLoadedUserImageListAddr","features":[167]},{"name":"DEBUG_DATA_MmLowestPhysicalPageAddr","features":[167]},{"name":"DEBUG_DATA_MmMaximumNonPagedPoolInBytesAddr","features":[167]},{"name":"DEBUG_DATA_MmModifiedNoWritePageListHeadAddr","features":[167]},{"name":"DEBUG_DATA_MmModifiedPageListHeadAddr","features":[167]},{"name":"DEBUG_DATA_MmNonPagedPoolEndAddr","features":[167]},{"name":"DEBUG_DATA_MmNonPagedPoolStartAddr","features":[167]},{"name":"DEBUG_DATA_MmNonPagedSystemStartAddr","features":[167]},{"name":"DEBUG_DATA_MmNumberOfPagingFilesAddr","features":[167]},{"name":"DEBUG_DATA_MmNumberOfPhysicalPagesAddr","features":[167]},{"name":"DEBUG_DATA_MmPageSize","features":[167]},{"name":"DEBUG_DATA_MmPagedPoolCommitAddr","features":[167]},{"name":"DEBUG_DATA_MmPagedPoolEndAddr","features":[167]},{"name":"DEBUG_DATA_MmPagedPoolInformationAddr","features":[167]},{"name":"DEBUG_DATA_MmPagedPoolStartAddr","features":[167]},{"name":"DEBUG_DATA_MmPeakCommitmentAddr","features":[167]},{"name":"DEBUG_DATA_MmPfnDatabaseAddr","features":[167]},{"name":"DEBUG_DATA_MmPhysicalMemoryBlockAddr","features":[167]},{"name":"DEBUG_DATA_MmProcessCommitAddr","features":[167]},{"name":"DEBUG_DATA_MmResidentAvailablePagesAddr","features":[167]},{"name":"DEBUG_DATA_MmSessionBase","features":[167]},{"name":"DEBUG_DATA_MmSessionSize","features":[167]},{"name":"DEBUG_DATA_MmSharedCommitAddr","features":[167]},{"name":"DEBUG_DATA_MmSizeOfPagedPoolInBytesAddr","features":[167]},{"name":"DEBUG_DATA_MmSpecialPoolTagAddr","features":[167]},{"name":"DEBUG_DATA_MmStandbyPageListHeadAddr","features":[167]},{"name":"DEBUG_DATA_MmSubsectionBaseAddr","features":[167]},{"name":"DEBUG_DATA_MmSystemCacheEndAddr","features":[167]},{"name":"DEBUG_DATA_MmSystemCacheStartAddr","features":[167]},{"name":"DEBUG_DATA_MmSystemCacheWsAddr","features":[167]},{"name":"DEBUG_DATA_MmSystemParentTablePage","features":[167]},{"name":"DEBUG_DATA_MmSystemPtesEndAddr","features":[167]},{"name":"DEBUG_DATA_MmSystemPtesStartAddr","features":[167]},{"name":"DEBUG_DATA_MmSystemRangeStartAddr","features":[167]},{"name":"DEBUG_DATA_MmTotalCommitLimitAddr","features":[167]},{"name":"DEBUG_DATA_MmTotalCommitLimitMaximumAddr","features":[167]},{"name":"DEBUG_DATA_MmTotalCommittedPagesAddr","features":[167]},{"name":"DEBUG_DATA_MmTriageActionTakenAddr","features":[167]},{"name":"DEBUG_DATA_MmUnloadedDriversAddr","features":[167]},{"name":"DEBUG_DATA_MmUserProbeAddressAddr","features":[167]},{"name":"DEBUG_DATA_MmVerifierDataAddr","features":[167]},{"name":"DEBUG_DATA_MmVirtualTranslationBase","features":[167]},{"name":"DEBUG_DATA_MmZeroedPageListHeadAddr","features":[167]},{"name":"DEBUG_DATA_NonPagedPoolDescriptorAddr","features":[167]},{"name":"DEBUG_DATA_NtBuildLabAddr","features":[167]},{"name":"DEBUG_DATA_ObpRootDirectoryObjectAddr","features":[167]},{"name":"DEBUG_DATA_ObpTypeObjectTypeAddr","features":[167]},{"name":"DEBUG_DATA_OffsetEprocessDirectoryTableBase","features":[167]},{"name":"DEBUG_DATA_OffsetEprocessParentCID","features":[167]},{"name":"DEBUG_DATA_OffsetEprocessPeb","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadApcProcess","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadBStore","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadBStoreLimit","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadInitialStack","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadKernelStack","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadNextProcessor","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadState","features":[167]},{"name":"DEBUG_DATA_OffsetKThreadTeb","features":[167]},{"name":"DEBUG_DATA_OffsetPrcbCpuType","features":[167]},{"name":"DEBUG_DATA_OffsetPrcbCurrentThread","features":[167]},{"name":"DEBUG_DATA_OffsetPrcbDpcRoutine","features":[167]},{"name":"DEBUG_DATA_OffsetPrcbMhz","features":[167]},{"name":"DEBUG_DATA_OffsetPrcbNumber","features":[167]},{"name":"DEBUG_DATA_OffsetPrcbProcessorState","features":[167]},{"name":"DEBUG_DATA_OffsetPrcbVendorString","features":[167]},{"name":"DEBUG_DATA_PROCESSOR_IDENTIFICATION","features":[167]},{"name":"DEBUG_DATA_PROCESSOR_SPEED","features":[167]},{"name":"DEBUG_DATA_PaeEnabled","features":[167]},{"name":"DEBUG_DATA_PagingLevels","features":[167]},{"name":"DEBUG_DATA_PoolTrackTableAddr","features":[167]},{"name":"DEBUG_DATA_ProductType","features":[167]},{"name":"DEBUG_DATA_PsActiveProcessHeadAddr","features":[167]},{"name":"DEBUG_DATA_PsLoadedModuleListAddr","features":[167]},{"name":"DEBUG_DATA_PspCidTableAddr","features":[167]},{"name":"DEBUG_DATA_PteBase","features":[167]},{"name":"DEBUG_DATA_SPACE_BUS_DATA","features":[167]},{"name":"DEBUG_DATA_SPACE_CONTROL","features":[167]},{"name":"DEBUG_DATA_SPACE_COUNT","features":[167]},{"name":"DEBUG_DATA_SPACE_DEBUGGER_DATA","features":[167]},{"name":"DEBUG_DATA_SPACE_IO","features":[167]},{"name":"DEBUG_DATA_SPACE_MSR","features":[167]},{"name":"DEBUG_DATA_SPACE_PHYSICAL","features":[167]},{"name":"DEBUG_DATA_SPACE_VIRTUAL","features":[167]},{"name":"DEBUG_DATA_SavedContextAddr","features":[167]},{"name":"DEBUG_DATA_SharedUserData","features":[167]},{"name":"DEBUG_DATA_SizeEProcess","features":[167]},{"name":"DEBUG_DATA_SizeEThread","features":[167]},{"name":"DEBUG_DATA_SizePrcb","features":[167]},{"name":"DEBUG_DATA_SuiteMask","features":[167]},{"name":"DEBUG_DECODE_ERROR","features":[3,167]},{"name":"DEBUG_DEVICE_OBJECT_INFO","features":[3,167]},{"name":"DEBUG_DISASM_EFFECTIVE_ADDRESS","features":[167]},{"name":"DEBUG_DISASM_MATCHING_SYMBOLS","features":[167]},{"name":"DEBUG_DISASM_SOURCE_FILE_NAME","features":[167]},{"name":"DEBUG_DISASM_SOURCE_LINE_NUMBER","features":[167]},{"name":"DEBUG_DRIVER_OBJECT_INFO","features":[167]},{"name":"DEBUG_DUMP_ACTIVE","features":[167]},{"name":"DEBUG_DUMP_DEFAULT","features":[167]},{"name":"DEBUG_DUMP_FILE_BASE","features":[167]},{"name":"DEBUG_DUMP_FILE_LOAD_FAILED_INDEX","features":[167]},{"name":"DEBUG_DUMP_FILE_ORIGINAL_CAB_INDEX","features":[167]},{"name":"DEBUG_DUMP_FILE_PAGE_FILE_DUMP","features":[167]},{"name":"DEBUG_DUMP_FULL","features":[167]},{"name":"DEBUG_DUMP_IMAGE_FILE","features":[167]},{"name":"DEBUG_DUMP_SMALL","features":[167]},{"name":"DEBUG_DUMP_TRACE_LOG","features":[167]},{"name":"DEBUG_DUMP_WINDOWS_CE","features":[167]},{"name":"DEBUG_ECREATE_PROCESS_DEFAULT","features":[167]},{"name":"DEBUG_ECREATE_PROCESS_INHERIT_HANDLES","features":[167]},{"name":"DEBUG_ECREATE_PROCESS_USE_IMPLICIT_COMMAND_LINE","features":[167]},{"name":"DEBUG_ECREATE_PROCESS_USE_VERIFIER_FLAGS","features":[167]},{"name":"DEBUG_EINDEX_FROM_CURRENT","features":[167]},{"name":"DEBUG_EINDEX_FROM_END","features":[167]},{"name":"DEBUG_EINDEX_FROM_START","features":[167]},{"name":"DEBUG_EINDEX_NAME","features":[167]},{"name":"DEBUG_END_ACTIVE_DETACH","features":[167]},{"name":"DEBUG_END_ACTIVE_TERMINATE","features":[167]},{"name":"DEBUG_END_DISCONNECT","features":[167]},{"name":"DEBUG_END_PASSIVE","features":[167]},{"name":"DEBUG_END_REENTRANT","features":[167]},{"name":"DEBUG_ENGOPT_ALL","features":[167]},{"name":"DEBUG_ENGOPT_ALLOW_NETWORK_PATHS","features":[167]},{"name":"DEBUG_ENGOPT_ALLOW_READ_ONLY_BREAKPOINTS","features":[167]},{"name":"DEBUG_ENGOPT_DEBUGGING_SENSITIVE_DATA","features":[167]},{"name":"DEBUG_ENGOPT_DISABLESQM","features":[167]},{"name":"DEBUG_ENGOPT_DISABLE_EXECUTION_COMMANDS","features":[167]},{"name":"DEBUG_ENGOPT_DISABLE_MANAGED_SUPPORT","features":[167]},{"name":"DEBUG_ENGOPT_DISABLE_MODULE_SYMBOL_LOAD","features":[167]},{"name":"DEBUG_ENGOPT_DISABLE_STEPLINES_OPTIONS","features":[167]},{"name":"DEBUG_ENGOPT_DISALLOW_IMAGE_FILE_MAPPING","features":[167]},{"name":"DEBUG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[167]},{"name":"DEBUG_ENGOPT_DISALLOW_SHELL_COMMANDS","features":[167]},{"name":"DEBUG_ENGOPT_FAIL_INCOMPLETE_INFORMATION","features":[167]},{"name":"DEBUG_ENGOPT_FINAL_BREAK","features":[167]},{"name":"DEBUG_ENGOPT_IGNORE_DBGHELP_VERSION","features":[167]},{"name":"DEBUG_ENGOPT_IGNORE_EXTENSION_VERSIONS","features":[167]},{"name":"DEBUG_ENGOPT_IGNORE_LOADER_EXCEPTIONS","features":[167]},{"name":"DEBUG_ENGOPT_INITIAL_BREAK","features":[167]},{"name":"DEBUG_ENGOPT_INITIAL_MODULE_BREAK","features":[167]},{"name":"DEBUG_ENGOPT_KD_QUIET_MODE","features":[167]},{"name":"DEBUG_ENGOPT_NO_EXECUTE_REPEAT","features":[167]},{"name":"DEBUG_ENGOPT_PREFER_DML","features":[167]},{"name":"DEBUG_ENGOPT_PREFER_TRACE_FILES","features":[167]},{"name":"DEBUG_ENGOPT_RESOLVE_SHADOWED_VARIABLES","features":[167]},{"name":"DEBUG_ENGOPT_SYNCHRONIZE_BREAKPOINTS","features":[167]},{"name":"DEBUG_EVENT_BREAKPOINT","features":[167]},{"name":"DEBUG_EVENT_CHANGE_DEBUGGEE_STATE","features":[167]},{"name":"DEBUG_EVENT_CHANGE_ENGINE_STATE","features":[167]},{"name":"DEBUG_EVENT_CHANGE_SYMBOL_STATE","features":[167]},{"name":"DEBUG_EVENT_CONTEXT","features":[167]},{"name":"DEBUG_EVENT_CREATE_PROCESS","features":[167]},{"name":"DEBUG_EVENT_CREATE_THREAD","features":[167]},{"name":"DEBUG_EVENT_EXCEPTION","features":[167]},{"name":"DEBUG_EVENT_EXIT_PROCESS","features":[167]},{"name":"DEBUG_EVENT_EXIT_THREAD","features":[167]},{"name":"DEBUG_EVENT_LOAD_MODULE","features":[167]},{"name":"DEBUG_EVENT_SERVICE_EXCEPTION","features":[167]},{"name":"DEBUG_EVENT_SESSION_STATUS","features":[167]},{"name":"DEBUG_EVENT_SYSTEM_ERROR","features":[167]},{"name":"DEBUG_EVENT_UNLOAD_MODULE","features":[167]},{"name":"DEBUG_EXCEPTION_FILTER_PARAMETERS","features":[167]},{"name":"DEBUG_EXECUTE_DEFAULT","features":[167]},{"name":"DEBUG_EXECUTE_ECHO","features":[167]},{"name":"DEBUG_EXECUTE_EVENT","features":[167]},{"name":"DEBUG_EXECUTE_EXTENSION","features":[167]},{"name":"DEBUG_EXECUTE_HOTKEY","features":[167]},{"name":"DEBUG_EXECUTE_INTERNAL","features":[167]},{"name":"DEBUG_EXECUTE_MENU","features":[167]},{"name":"DEBUG_EXECUTE_NOT_LOGGED","features":[167]},{"name":"DEBUG_EXECUTE_NO_REPEAT","features":[167]},{"name":"DEBUG_EXECUTE_SCRIPT","features":[167]},{"name":"DEBUG_EXECUTE_TOOLBAR","features":[167]},{"name":"DEBUG_EXECUTE_USER_CLICKED","features":[167]},{"name":"DEBUG_EXECUTE_USER_TYPED","features":[167]},{"name":"DEBUG_EXEC_FLAGS_NONBLOCK","features":[167]},{"name":"DEBUG_EXPR_CPLUSPLUS","features":[167]},{"name":"DEBUG_EXPR_MASM","features":[167]},{"name":"DEBUG_EXTENSION_AT_ENGINE","features":[167]},{"name":"DEBUG_EXTINIT_HAS_COMMAND_HELP","features":[167]},{"name":"DEBUG_EXT_PVALUE_DEFAULT","features":[167]},{"name":"DEBUG_EXT_PVTYPE_IS_POINTER","features":[167]},{"name":"DEBUG_EXT_PVTYPE_IS_VALUE","features":[167]},{"name":"DEBUG_EXT_QVALUE_DEFAULT","features":[167]},{"name":"DEBUG_FAILURE_TYPE","features":[167]},{"name":"DEBUG_FA_ENTRY_ANSI_STRING","features":[167]},{"name":"DEBUG_FA_ENTRY_ANSI_STRINGs","features":[167]},{"name":"DEBUG_FA_ENTRY_ARRAY","features":[167]},{"name":"DEBUG_FA_ENTRY_EXTENSION_CMD","features":[167]},{"name":"DEBUG_FA_ENTRY_INSTRUCTION_OFFSET","features":[167]},{"name":"DEBUG_FA_ENTRY_NO_TYPE","features":[167]},{"name":"DEBUG_FA_ENTRY_POINTER","features":[167]},{"name":"DEBUG_FA_ENTRY_STRUCTURED_DATA","features":[167]},{"name":"DEBUG_FA_ENTRY_ULONG","features":[167]},{"name":"DEBUG_FA_ENTRY_ULONG64","features":[167]},{"name":"DEBUG_FA_ENTRY_UNICODE_STRING","features":[167]},{"name":"DEBUG_FILTER_BREAK","features":[167]},{"name":"DEBUG_FILTER_CREATE_PROCESS","features":[167]},{"name":"DEBUG_FILTER_CREATE_THREAD","features":[167]},{"name":"DEBUG_FILTER_DEBUGGEE_OUTPUT","features":[167]},{"name":"DEBUG_FILTER_EXIT_PROCESS","features":[167]},{"name":"DEBUG_FILTER_EXIT_THREAD","features":[167]},{"name":"DEBUG_FILTER_GO_HANDLED","features":[167]},{"name":"DEBUG_FILTER_GO_NOT_HANDLED","features":[167]},{"name":"DEBUG_FILTER_IGNORE","features":[167]},{"name":"DEBUG_FILTER_INITIAL_BREAKPOINT","features":[167]},{"name":"DEBUG_FILTER_INITIAL_MODULE_LOAD","features":[167]},{"name":"DEBUG_FILTER_LOAD_MODULE","features":[167]},{"name":"DEBUG_FILTER_OUTPUT","features":[167]},{"name":"DEBUG_FILTER_REMOVE","features":[167]},{"name":"DEBUG_FILTER_SECOND_CHANCE_BREAK","features":[167]},{"name":"DEBUG_FILTER_SYSTEM_ERROR","features":[167]},{"name":"DEBUG_FILTER_UNLOAD_MODULE","features":[167]},{"name":"DEBUG_FIND_SOURCE_BEST_MATCH","features":[167]},{"name":"DEBUG_FIND_SOURCE_DEFAULT","features":[167]},{"name":"DEBUG_FIND_SOURCE_FULL_PATH","features":[167]},{"name":"DEBUG_FIND_SOURCE_NO_SRCSRV","features":[167]},{"name":"DEBUG_FIND_SOURCE_TOKEN_LOOKUP","features":[167]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM","features":[167]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM_STRICT","features":[167]},{"name":"DEBUG_FLR_ACPI","features":[167]},{"name":"DEBUG_FLR_ACPI_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_ACPI_EXTENSION","features":[167]},{"name":"DEBUG_FLR_ACPI_OBJECT","features":[167]},{"name":"DEBUG_FLR_ACPI_RESCONFLICT","features":[167]},{"name":"DEBUG_FLR_ADDITIONAL_DEBUGTEXT","features":[167]},{"name":"DEBUG_FLR_ADDITIONAL_XML","features":[167]},{"name":"DEBUG_FLR_ADD_PROCESS_IN_BUCKET","features":[167]},{"name":"DEBUG_FLR_ALUREON","features":[167]},{"name":"DEBUG_FLR_ANALYSIS_REPROCESS","features":[167]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_ELAPSED_TIME","features":[167]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_HOST","features":[167]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_TIME","features":[167]},{"name":"DEBUG_FLR_ANALYSIS_VERSION","features":[167]},{"name":"DEBUG_FLR_ANALYZABLE_POOL_CORRUPTION","features":[167]},{"name":"DEBUG_FLR_APPKILL","features":[167]},{"name":"DEBUG_FLR_APPLICATION_VERIFIER_LOADED","features":[167]},{"name":"DEBUG_FLR_APPS_NOT_TERMINATED","features":[167]},{"name":"DEBUG_FLR_APPVERIFERFLAGS","features":[167]},{"name":"DEBUG_FLR_ARM_WRITE_AV_CAVEAT","features":[167]},{"name":"DEBUG_FLR_ASSERT_DATA","features":[167]},{"name":"DEBUG_FLR_ASSERT_FILE","features":[167]},{"name":"DEBUG_FLR_ASSERT_INSTRUCTION","features":[167]},{"name":"DEBUG_FLR_BADPAGES_DETECTED","features":[167]},{"name":"DEBUG_FLR_BAD_HANDLE","features":[167]},{"name":"DEBUG_FLR_BAD_MEMORY_REFERENCE","features":[167]},{"name":"DEBUG_FLR_BAD_OBJECT_REFERENCE","features":[167]},{"name":"DEBUG_FLR_BAD_STACK","features":[167]},{"name":"DEBUG_FLR_BLOCKED_THREAD0","features":[167]},{"name":"DEBUG_FLR_BLOCKED_THREAD1","features":[167]},{"name":"DEBUG_FLR_BLOCKED_THREAD2","features":[167]},{"name":"DEBUG_FLR_BLOCKING_PROCESSID","features":[167]},{"name":"DEBUG_FLR_BLOCKING_THREAD","features":[167]},{"name":"DEBUG_FLR_BOOST_FOLLOWUP_TO_SPECIFIC","features":[167]},{"name":"DEBUG_FLR_BOOTSTAT","features":[167]},{"name":"DEBUG_FLR_BOOTSTAT_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_CHECKSUM","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_FLAVOR_STR","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_FUNCTION_STR","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_FUNC_OFFSET","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_IMAGE_STR","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_MODULE_STR","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_MODVER_STR","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_OFFSET","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_PREFIX_STR","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_PRIVATE","features":[167]},{"name":"DEBUG_FLR_BUCKET_ID_TIMEDATESTAMP","features":[167]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER","features":[167]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER_IDTAG","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_CODE","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_DESC","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_P1","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_P2","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_P3","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_P4","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_SPECIFIER","features":[167]},{"name":"DEBUG_FLR_BUGCHECK_STR","features":[167]},{"name":"DEBUG_FLR_BUILDNAME_IN_BUCKET","features":[167]},{"name":"DEBUG_FLR_BUILDOSVER_STR_deprecated","features":[167]},{"name":"DEBUG_FLR_BUILD_OS_FULL_VERSION_STRING","features":[167]},{"name":"DEBUG_FLR_BUILD_VERSION_STRING","features":[167]},{"name":"DEBUG_FLR_CANCELLATION_NOT_SUPPORTED","features":[167]},{"name":"DEBUG_FLR_CHKIMG_EXTENSION","features":[167]},{"name":"DEBUG_FLR_CHPE_PROCESS","features":[167]},{"name":"DEBUG_FLR_CLIENT_DRIVER","features":[167]},{"name":"DEBUG_FLR_COLLECT_DATA_FOR_BUCKET","features":[167]},{"name":"DEBUG_FLR_COMPUTER_NAME","features":[167]},{"name":"DEBUG_FLR_CONTEXT","features":[167]},{"name":"DEBUG_FLR_CONTEXT_COMMAND","features":[167]},{"name":"DEBUG_FLR_CONTEXT_FLAGS","features":[167]},{"name":"DEBUG_FLR_CONTEXT_FOLLOWUP_INDEX","features":[167]},{"name":"DEBUG_FLR_CONTEXT_ID","features":[167]},{"name":"DEBUG_FLR_CONTEXT_METADATA","features":[167]},{"name":"DEBUG_FLR_CONTEXT_ORDER","features":[167]},{"name":"DEBUG_FLR_CONTEXT_RESTORE_COMMAND","features":[167]},{"name":"DEBUG_FLR_CONTEXT_SYSTEM","features":[167]},{"name":"DEBUG_FLR_CORRUPTING_POOL_ADDRESS","features":[167]},{"name":"DEBUG_FLR_CORRUPTING_POOL_TAG","features":[167]},{"name":"DEBUG_FLR_CORRUPT_MODULE_LIST","features":[167]},{"name":"DEBUG_FLR_CORRUPT_SERVICE_TABLE","features":[167]},{"name":"DEBUG_FLR_COVERAGE_BUILD","features":[167]},{"name":"DEBUG_FLR_CPU_COUNT","features":[167]},{"name":"DEBUG_FLR_CPU_FAMILY","features":[167]},{"name":"DEBUG_FLR_CPU_MICROCODE_VERSION","features":[167]},{"name":"DEBUG_FLR_CPU_MICROCODE_ZERO_INTEL","features":[167]},{"name":"DEBUG_FLR_CPU_MODEL","features":[167]},{"name":"DEBUG_FLR_CPU_OVERCLOCKED","features":[167]},{"name":"DEBUG_FLR_CPU_SPEED","features":[167]},{"name":"DEBUG_FLR_CPU_STEPPING","features":[167]},{"name":"DEBUG_FLR_CPU_VENDOR","features":[167]},{"name":"DEBUG_FLR_CRITICAL_PROCESS","features":[167]},{"name":"DEBUG_FLR_CRITICAL_PROCESS_REPORTGUID","features":[167]},{"name":"DEBUG_FLR_CRITICAL_SECTION","features":[167]},{"name":"DEBUG_FLR_CURRENT_IRQL","features":[167]},{"name":"DEBUG_FLR_CUSTOMER_CRASH_COUNT","features":[167]},{"name":"DEBUG_FLR_CUSTOMREPORTTAG","features":[167]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MAX","features":[167]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MIN","features":[167]},{"name":"DEBUG_FLR_CUSTOM_COMMAND","features":[167]},{"name":"DEBUG_FLR_CUSTOM_COMMAND_OUTPUT","features":[167]},{"name":"DEBUG_FLR_DEADLOCK_INPROC","features":[167]},{"name":"DEBUG_FLR_DEADLOCK_XPROC","features":[167]},{"name":"DEBUG_FLR_DEBUG_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_DEFAULT_BUCKET_ID","features":[167]},{"name":"DEBUG_FLR_DEFAULT_SOLUTION_ID","features":[167]},{"name":"DEBUG_FLR_DERIVED_WAIT_CHAIN","features":[167]},{"name":"DEBUG_FLR_DESKTOP_HEAP_MISSING","features":[167]},{"name":"DEBUG_FLR_DETOURED_IMAGE","features":[167]},{"name":"DEBUG_FLR_DEVICE_NODE","features":[167]},{"name":"DEBUG_FLR_DEVICE_OBJECT","features":[167]},{"name":"DEBUG_FLR_DISKIO_READ_FAILURE","features":[167]},{"name":"DEBUG_FLR_DISKIO_WRITE_FAILURE","features":[167]},{"name":"DEBUG_FLR_DISKSEC_ISSUEDESCSTRING_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_MFGID_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_MODEL_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_ORGID_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_DATASIZE_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_OFFSET_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_TOTSIZE_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_DATASIZE_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_OFFSET_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_TOTSIZE_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_REASON_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISKSEC_TOTALSIZE_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_DISK_HARDWARE_ERROR","features":[167]},{"name":"DEBUG_FLR_DPC_RUNTIME","features":[167]},{"name":"DEBUG_FLR_DPC_STACK_BASE","features":[167]},{"name":"DEBUG_FLR_DPC_TIMELIMIT","features":[167]},{"name":"DEBUG_FLR_DPC_TIMEOUT_TYPE","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWAREID","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_ID","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_NAME","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_ID_BUS_TYPE","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_REV_ID","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBSYS_ID","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBVENDOR_NAME","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_ID","features":[167]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_NAME","features":[167]},{"name":"DEBUG_FLR_DRIVER_OBJECT","features":[167]},{"name":"DEBUG_FLR_DRIVER_VERIFIER_IO_VIOLATION_TYPE","features":[167]},{"name":"DEBUG_FLR_DRIVER_XML_DESCRIPTION","features":[167]},{"name":"DEBUG_FLR_DRIVER_XML_MANUFACTURER","features":[167]},{"name":"DEBUG_FLR_DRIVER_XML_PRODUCTNAME","features":[167]},{"name":"DEBUG_FLR_DRIVER_XML_VERSION","features":[167]},{"name":"DEBUG_FLR_DRVPOWERSTATE_SUBCODE","features":[167]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTA","features":[167]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTW","features":[167]},{"name":"DEBUG_FLR_DUMP_CLASS","features":[167]},{"name":"DEBUG_FLR_DUMP_FILE_ATTRIBUTES","features":[167]},{"name":"DEBUG_FLR_DUMP_FLAGS","features":[167]},{"name":"DEBUG_FLR_DUMP_QUALIFIER","features":[167]},{"name":"DEBUG_FLR_DUMP_TYPE","features":[167]},{"name":"DEBUG_FLR_END_MESSAGE","features":[167]},{"name":"DEBUG_FLR_ERESOURCE_ADDRESS","features":[167]},{"name":"DEBUG_FLR_EVENT_CODE_DATA_MISMATCH","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_CODE","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR_deprecated","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_CONTEXT_RECURSION","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_DOESNOT_MATCH_CODE","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_MODULE_INFO","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER1","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER2","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER3","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER4","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_RECORD","features":[167]},{"name":"DEBUG_FLR_EXCEPTION_STR","features":[167]},{"name":"DEBUG_FLR_EXECUTE_ADDRESS","features":[167]},{"name":"DEBUG_FLR_FAILED_INSTRUCTION_ADDRESS","features":[167]},{"name":"DEBUG_FLR_FAILURE_ANALYSIS_SOURCE","features":[167]},{"name":"DEBUG_FLR_FAILURE_BUCKET_ID","features":[167]},{"name":"DEBUG_FLR_FAILURE_DISPLAY_NAME","features":[167]},{"name":"DEBUG_FLR_FAILURE_EXCEPTION_CODE","features":[167]},{"name":"DEBUG_FLR_FAILURE_FUNCTION_NAME","features":[167]},{"name":"DEBUG_FLR_FAILURE_ID_HASH","features":[167]},{"name":"DEBUG_FLR_FAILURE_ID_HASH_STRING","features":[167]},{"name":"DEBUG_FLR_FAILURE_ID_REPORT_LINK","features":[167]},{"name":"DEBUG_FLR_FAILURE_IMAGE_NAME","features":[167]},{"name":"DEBUG_FLR_FAILURE_LIST","features":[167]},{"name":"DEBUG_FLR_FAILURE_MODULE_NAME","features":[167]},{"name":"DEBUG_FLR_FAILURE_PROBLEM_CLASS","features":[167]},{"name":"DEBUG_FLR_FAILURE_SYMBOL_NAME","features":[167]},{"name":"DEBUG_FLR_FAULTING_INSTR_CODE","features":[167]},{"name":"DEBUG_FLR_FAULTING_IP","features":[167]},{"name":"DEBUG_FLR_FAULTING_LOCAL_VARIABLE_NAME","features":[167]},{"name":"DEBUG_FLR_FAULTING_MODULE","features":[167]},{"name":"DEBUG_FLR_FAULTING_SERVICE_NAME","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CODE","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_COMMIT_ID","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CONTROL_TYPE","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_FILE","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE_NUMBER","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_PROJECT","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_ID","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_URL","features":[167]},{"name":"DEBUG_FLR_FAULTING_SOURCE_SRV_COMMAND","features":[167]},{"name":"DEBUG_FLR_FAULTING_THREAD","features":[167]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_M","features":[167]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MF","features":[167]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MFO","features":[167]},{"name":"DEBUG_FLR_FA_ADHOC_ANALYSIS_ITEMS","features":[167]},{"name":"DEBUG_FLR_FA_PERF_DATA","features":[167]},{"name":"DEBUG_FLR_FA_PERF_ELAPSED_MS","features":[167]},{"name":"DEBUG_FLR_FA_PERF_ITEM","features":[167]},{"name":"DEBUG_FLR_FA_PERF_ITEM_NAME","features":[167]},{"name":"DEBUG_FLR_FA_PERF_ITERATIONS","features":[167]},{"name":"DEBUG_FLR_FEATURE_PATH","features":[167]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS","features":[167]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS","features":[167]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_FILE_ID","features":[167]},{"name":"DEBUG_FLR_FILE_IN_CAB","features":[167]},{"name":"DEBUG_FLR_FILE_LINE","features":[167]},{"name":"DEBUG_FLR_FIXED_IN_OSVERSION","features":[167]},{"name":"DEBUG_FLR_FOLLOWUP_BEFORE_RETRACER","features":[167]},{"name":"DEBUG_FLR_FOLLOWUP_BUCKET_ID","features":[167]},{"name":"DEBUG_FLR_FOLLOWUP_CONTEXT","features":[167]},{"name":"DEBUG_FLR_FOLLOWUP_DRIVER_ONLY","features":[167]},{"name":"DEBUG_FLR_FOLLOWUP_IP","features":[167]},{"name":"DEBUG_FLR_FOLLOWUP_NAME","features":[167]},{"name":"DEBUG_FLR_FRAME_ONE_INVALID","features":[167]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_NAME","features":[167]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_PATH","features":[167]},{"name":"DEBUG_FLR_FRAME_SOURCE_LINE_NUMBER","features":[167]},{"name":"DEBUG_FLR_FREED_POOL_TAG","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_ANALYSIS_TEXT","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_COOKIES_MATCH_EXH","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_COOKIE","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBP","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBPESP","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_FALSE_POSITIVE","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE_COMPLEMENT","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_FUNCTION","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_FRAMEID","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_THREADID","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_MEMORY_READ_ERROR","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_MISSING_ESTABLISHER_FRAME","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_MODULE_COOKIE","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_NOT_UP2DATE","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_OFF_BY_ONE_OVERRUN","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL_NAME","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVELY_CORRUPTED_EBPESP","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVE_BUFFER_OVERFLOW","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_PROBABLY_NOT_USING_GS","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_RA_SMASHED","features":[167]},{"name":"DEBUG_FLR_GSFAILURE_UP2DATE_UNKNOWN","features":[167]},{"name":"DEBUG_FLR_HANDLE_VALUE","features":[167]},{"name":"DEBUG_FLR_HANG","features":[167]},{"name":"DEBUG_FLR_HANG_DATA_NEEDED","features":[167]},{"name":"DEBUG_FLR_HANG_REPORT_THREAD_IS_IDLE","features":[167]},{"name":"DEBUG_FLR_HARDWARE_BUCKET_TAG","features":[167]},{"name":"DEBUG_FLR_HARDWARE_ERROR","features":[167]},{"name":"DEBUG_FLR_HIGH_NONPAGED_POOL_USAGE","features":[167]},{"name":"DEBUG_FLR_HIGH_PAGED_POOL_USAGE","features":[167]},{"name":"DEBUG_FLR_HIGH_PROCESS_COMMIT","features":[167]},{"name":"DEBUG_FLR_HIGH_SERVICE_COMMIT","features":[167]},{"name":"DEBUG_FLR_HIGH_SHARED_COMMIT_USAGE","features":[167]},{"name":"DEBUG_FLR_HOLDINFO","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_ACTIVE_HOLD_COUNT","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_HOLD","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_IGNORE","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_HISTORIC_HOLD_COUNT","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_LAST_SEEN_HOLD_DATE","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_MANUAL_HOLD","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_MAX_HOLD_LIMIT","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_NOTIFICATION_ALIASES","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_RECOMMEND_HOLD","features":[167]},{"name":"DEBUG_FLR_HOLDINFO_TENET_SOCRE","features":[167]},{"name":"DEBUG_FLR_IGNORE_BUCKET_ID_OFFSET","features":[167]},{"name":"DEBUG_FLR_IGNORE_LARGE_MODULE_CORRUPTION","features":[167]},{"name":"DEBUG_FLR_IGNORE_MODULE_HARDWARE_ID","features":[167]},{"name":"DEBUG_FLR_IMAGE_CLASS","features":[167]},{"name":"DEBUG_FLR_IMAGE_NAME","features":[167]},{"name":"DEBUG_FLR_IMAGE_TIMESTAMP","features":[167]},{"name":"DEBUG_FLR_IMAGE_VERSION","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_CLIFAULT","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_FREE_BLOCK","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_MODULE_NOT_IN_LIST","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_PAGED_CODE","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_RESERVED_BLOCK","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_UNLOADED_MODULE","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_VM_MAPPED_MODULE","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_MISALIGNED","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_NOT_IN_STREAM","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_HEAP","features":[167]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_STACK","features":[167]},{"name":"DEBUG_FLR_INSTR_SESSION_POOL_TAG","features":[167]},{"name":"DEBUG_FLR_INTEL_CPU_BIOS_UPGRADE_NEEDED","features":[167]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_CONTINUABLE","features":[167]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_HITCOUNT","features":[167]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_STATUS_TEXT","features":[167]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_URL","features":[167]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG","features":[167]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG_DATABASE_STRING","features":[167]},{"name":"DEBUG_FLR_INTERNAL_RESPONSE","features":[167]},{"name":"DEBUG_FLR_INTERNAL_SOLUTION_TEXT","features":[167]},{"name":"DEBUG_FLR_INVALID","features":[167]},{"name":"DEBUG_FLR_INVALID_DPC_FOUND","features":[167]},{"name":"DEBUG_FLR_INVALID_HEAP_ADDRESS","features":[167]},{"name":"DEBUG_FLR_INVALID_KERNEL_CONTEXT","features":[167]},{"name":"DEBUG_FLR_INVALID_OPCODE","features":[167]},{"name":"DEBUG_FLR_INVALID_PFN","features":[167]},{"name":"DEBUG_FLR_INVALID_USEREVENT","features":[167]},{"name":"DEBUG_FLR_INVALID_USER_CONTEXT","features":[167]},{"name":"DEBUG_FLR_IOCONTROL_CODE","features":[167]},{"name":"DEBUG_FLR_IOSB_ADDRESS","features":[167]},{"name":"DEBUG_FLR_IO_ERROR_CODE","features":[167]},{"name":"DEBUG_FLR_IRP_ADDRESS","features":[167]},{"name":"DEBUG_FLR_IRP_CANCEL_ROUTINE","features":[167]},{"name":"DEBUG_FLR_IRP_MAJOR_FN","features":[167]},{"name":"DEBUG_FLR_IRP_MINOR_FN","features":[167]},{"name":"DEBUG_FLR_KERNEL","features":[167]},{"name":"DEBUG_FLR_KERNEL_LOG_PROCESS_NAME","features":[167]},{"name":"DEBUG_FLR_KERNEL_LOG_STATUS","features":[167]},{"name":"DEBUG_FLR_KERNEL_VERIFIER_ENABLED","features":[167]},{"name":"DEBUG_FLR_KEYVALUE_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_KEY_VALUES_STRING","features":[167]},{"name":"DEBUG_FLR_KEY_VALUES_VARIANT","features":[167]},{"name":"DEBUG_FLR_KM_MODULE_LIST","features":[167]},{"name":"DEBUG_FLR_LARGE_TICK_INCREMENT","features":[167]},{"name":"DEBUG_FLR_LAST_CONTROL_TRANSFER","features":[167]},{"name":"DEBUG_FLR_LCIE_ISO_AVAILABLE","features":[167]},{"name":"DEBUG_FLR_LEAKED_SESSION_POOL_TAG","features":[167]},{"name":"DEBUG_FLR_LEGACY_PAGE_TABLE_ACCESS","features":[167]},{"name":"DEBUG_FLR_LIVE_KERNEL_DUMP","features":[167]},{"name":"DEBUG_FLR_LOADERLOCK_BLOCKED_API","features":[167]},{"name":"DEBUG_FLR_LOADERLOCK_IN_WAIT_CHAIN","features":[167]},{"name":"DEBUG_FLR_LOADERLOCK_OWNER_API","features":[167]},{"name":"DEBUG_FLR_LOP_STACKHASH","features":[167]},{"name":"DEBUG_FLR_LOW_SYSTEM_COMMIT","features":[167]},{"name":"DEBUG_FLR_MACHINE_INFO_SHA1_HASH","features":[167]},{"name":"DEBUG_FLR_MANAGED_ANALYSIS_PROVIDER","features":[167]},{"name":"DEBUG_FLR_MANAGED_BITNESS_MISMATCH","features":[167]},{"name":"DEBUG_FLR_MANAGED_CODE","features":[167]},{"name":"DEBUG_FLR_MANAGED_ENGINE_MODULE","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_ADDRESS","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CALLSTACK","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CMD","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CONTEXT_MESSAGE","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_HRESULT","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_ADDRESS","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_CALLSTACK","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_HRESULT","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_MESSAGE","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_TYPE","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE_deprecated","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_ADDRESS","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_CALLSTACK","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_HRESULT","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_MESSAGE","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_TYPE","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_OBJECT","features":[167]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_TYPE","features":[167]},{"name":"DEBUG_FLR_MANAGED_FRAME_CHAIN_CORRUPTION","features":[167]},{"name":"DEBUG_FLR_MANAGED_HRESULT_STRING","features":[167]},{"name":"DEBUG_FLR_MANAGED_KERNEL_DEBUGGER","features":[167]},{"name":"DEBUG_FLR_MANAGED_OBJECT","features":[167]},{"name":"DEBUG_FLR_MANAGED_OBJECT_NAME","features":[167]},{"name":"DEBUG_FLR_MANAGED_STACK_COMMAND","features":[167]},{"name":"DEBUG_FLR_MANAGED_STACK_STRING","features":[167]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_CALLSTACK","features":[167]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_STACKOBJECTS","features":[167]},{"name":"DEBUG_FLR_MANAGED_THREAD_ID","features":[167]},{"name":"DEBUG_FLR_MANUAL_BREAKIN","features":[167]},{"name":"DEBUG_FLR_MARKER_BUCKET","features":[167]},{"name":"DEBUG_FLR_MARKER_FILE","features":[167]},{"name":"DEBUG_FLR_MARKER_MODULE_FILE","features":[167]},{"name":"DEBUG_FLR_MASK_ALL","features":[167]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_STATUS","features":[167]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_TIME","features":[167]},{"name":"DEBUG_FLR_MEMORY_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_MEMORY_CORRUPTION_SIGNATURE","features":[167]},{"name":"DEBUG_FLR_MEMORY_CORRUPTOR","features":[167]},{"name":"DEBUG_FLR_MILCORE_BREAK","features":[167]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT","features":[167]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT_OF_THIS_TYPE","features":[167]},{"name":"DEBUG_FLR_MISSING_CLR_SYMBOL","features":[167]},{"name":"DEBUG_FLR_MISSING_IMPORTANT_SYMBOL","features":[167]},{"name":"DEBUG_FLR_MM_INTERNAL_CODE","features":[167]},{"name":"DEBUG_FLR_MODLIST_SHA1_HASH","features":[167]},{"name":"DEBUG_FLR_MODLIST_TSCHKSUM_SHA1_HASH","features":[167]},{"name":"DEBUG_FLR_MODLIST_UNLOADED_SHA1_HASH","features":[167]},{"name":"DEBUG_FLR_MODULE_BUCKET_ID","features":[167]},{"name":"DEBUG_FLR_MODULE_LIST","features":[167]},{"name":"DEBUG_FLR_MODULE_NAME","features":[167]},{"name":"DEBUG_FLR_MODULE_PRODUCTNAME","features":[167]},{"name":"DEBUG_FLR_MOD_SPECIFIC_DATA_ONLY","features":[167]},{"name":"DEBUG_FLR_NO_ARCH_IN_BUCKET","features":[167]},{"name":"DEBUG_FLR_NO_BUGCHECK_IN_BUCKET","features":[167]},{"name":"DEBUG_FLR_NO_IMAGE_IN_BUCKET","features":[167]},{"name":"DEBUG_FLR_NO_IMAGE_TIMESTAMP_IN_BUCKET","features":[167]},{"name":"DEBUG_FLR_NTGLOBALFLAG","features":[167]},{"name":"DEBUG_FLR_ON_DPC_STACK","features":[167]},{"name":"DEBUG_FLR_ORIGINAL_CAB_NAME","features":[167]},{"name":"DEBUG_FLR_OSBUILD_deprecated","features":[167]},{"name":"DEBUG_FLR_OS_BRANCH","features":[167]},{"name":"DEBUG_FLR_OS_BUILD","features":[167]},{"name":"DEBUG_FLR_OS_BUILD_LAYERS_XML","features":[167]},{"name":"DEBUG_FLR_OS_BUILD_STRING","features":[167]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_ISO","features":[167]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_LAB","features":[167]},{"name":"DEBUG_FLR_OS_FLAVOR","features":[167]},{"name":"DEBUG_FLR_OS_LOCALE","features":[167]},{"name":"DEBUG_FLR_OS_LOCALE_LCID","features":[167]},{"name":"DEBUG_FLR_OS_MAJOR","features":[167]},{"name":"DEBUG_FLR_OS_MINOR","features":[167]},{"name":"DEBUG_FLR_OS_NAME","features":[167]},{"name":"DEBUG_FLR_OS_NAME_EDITION","features":[167]},{"name":"DEBUG_FLR_OS_PLATFORM_ARCH","features":[167]},{"name":"DEBUG_FLR_OS_PLATFORM_ID","features":[167]},{"name":"DEBUG_FLR_OS_PRODUCT_TYPE","features":[167]},{"name":"DEBUG_FLR_OS_REVISION","features":[167]},{"name":"DEBUG_FLR_OS_SERVICEPACK","features":[167]},{"name":"DEBUG_FLR_OS_SERVICEPACK_deprecated","features":[167]},{"name":"DEBUG_FLR_OS_SKU","features":[167]},{"name":"DEBUG_FLR_OS_SUITE_MASK","features":[167]},{"name":"DEBUG_FLR_OS_VERSION","features":[167]},{"name":"DEBUG_FLR_OS_VERSION_deprecated","features":[167]},{"name":"DEBUG_FLR_OVERLAPPED_MODULE","features":[167]},{"name":"DEBUG_FLR_OVERLAPPED_UNLOADED_MODULE","features":[167]},{"name":"DEBUG_FLR_PAGE_HASH_ERRORS","features":[167]},{"name":"DEBUG_FLR_PARAM_TYPE","features":[167]},{"name":"DEBUG_FLR_PG_MISMATCH","features":[167]},{"name":"DEBUG_FLR_PHONE_APPID","features":[167]},{"name":"DEBUG_FLR_PHONE_APPVERSION","features":[167]},{"name":"DEBUG_FLR_PHONE_BOOTLOADERVERSION","features":[167]},{"name":"DEBUG_FLR_PHONE_BUILDBRANCH","features":[167]},{"name":"DEBUG_FLR_PHONE_BUILDER","features":[167]},{"name":"DEBUG_FLR_PHONE_BUILDNUMBER","features":[167]},{"name":"DEBUG_FLR_PHONE_BUILDTIMESTAMP","features":[167]},{"name":"DEBUG_FLR_PHONE_FIRMWAREREVISION","features":[167]},{"name":"DEBUG_FLR_PHONE_HARDWAREREVISION","features":[167]},{"name":"DEBUG_FLR_PHONE_LCID","features":[167]},{"name":"DEBUG_FLR_PHONE_MCCMNC","features":[167]},{"name":"DEBUG_FLR_PHONE_OPERATOR","features":[167]},{"name":"DEBUG_FLR_PHONE_QFE","features":[167]},{"name":"DEBUG_FLR_PHONE_RADIOHARDWAREREVISION","features":[167]},{"name":"DEBUG_FLR_PHONE_RADIOSOFTWAREREVISION","features":[167]},{"name":"DEBUG_FLR_PHONE_RAM","features":[167]},{"name":"DEBUG_FLR_PHONE_REPORTGUID","features":[167]},{"name":"DEBUG_FLR_PHONE_REPORTTIMESTAMP","features":[167]},{"name":"DEBUG_FLR_PHONE_ROMVERSION","features":[167]},{"name":"DEBUG_FLR_PHONE_SKUID","features":[167]},{"name":"DEBUG_FLR_PHONE_SOCVERSION","features":[167]},{"name":"DEBUG_FLR_PHONE_SOURCE","features":[167]},{"name":"DEBUG_FLR_PHONE_SOURCEEXTERNAL","features":[167]},{"name":"DEBUG_FLR_PHONE_UIF_APPID","features":[167]},{"name":"DEBUG_FLR_PHONE_UIF_APPNAME","features":[167]},{"name":"DEBUG_FLR_PHONE_UIF_CATEGORY","features":[167]},{"name":"DEBUG_FLR_PHONE_UIF_COMMENT","features":[167]},{"name":"DEBUG_FLR_PHONE_UIF_ORIGIN","features":[167]},{"name":"DEBUG_FLR_PHONE_USERALIAS","features":[167]},{"name":"DEBUG_FLR_PHONE_VERSIONMAJOR","features":[167]},{"name":"DEBUG_FLR_PHONE_VERSIONMINOR","features":[167]},{"name":"DEBUG_FLR_PLATFORM_BUCKET_STRING","features":[167]},{"name":"DEBUG_FLR_PNP","features":[167]},{"name":"DEBUG_FLR_PNP_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS","features":[167]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA","features":[167]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA_DEPRECATED","features":[167]},{"name":"DEBUG_FLR_POISONED_TB","features":[167]},{"name":"DEBUG_FLR_POOL_ADDRESS","features":[167]},{"name":"DEBUG_FLR_POOL_CORRUPTOR","features":[167]},{"name":"DEBUG_FLR_POSSIBLE_INVALID_CONTROL_TRANSFER","features":[167]},{"name":"DEBUG_FLR_POSSIBLE_STACK_OVERFLOW","features":[167]},{"name":"DEBUG_FLR_POWERREQUEST_ADDRESS","features":[167]},{"name":"DEBUG_FLR_PO_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_PREVIOUS_IRQL","features":[167]},{"name":"DEBUG_FLR_PREVIOUS_MODE","features":[167]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS","features":[167]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS_DATA","features":[167]},{"name":"DEBUG_FLR_PROBLEM_CLASSES","features":[167]},{"name":"DEBUG_FLR_PROBLEM_CODE_PATH_HASH","features":[167]},{"name":"DEBUG_FLR_PROCESSES_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_PROCESSOR_ID","features":[167]},{"name":"DEBUG_FLR_PROCESSOR_INFO","features":[167]},{"name":"DEBUG_FLR_PROCESS_BAM_CURRENT_THROTTLED","features":[167]},{"name":"DEBUG_FLR_PROCESS_BAM_PREVIOUS_THROTTLED","features":[167]},{"name":"DEBUG_FLR_PROCESS_INFO","features":[167]},{"name":"DEBUG_FLR_PROCESS_NAME","features":[167]},{"name":"DEBUG_FLR_PROCESS_OBJECT","features":[167]},{"name":"DEBUG_FLR_PROCESS_PRODUCTNAME","features":[167]},{"name":"DEBUG_FLR_RAISED_IRQL_USER_FAULT","features":[167]},{"name":"DEBUG_FLR_READ_ADDRESS","features":[167]},{"name":"DEBUG_FLR_RECURRING_STACK","features":[167]},{"name":"DEBUG_FLR_REGISTRYTXT_SOURCE","features":[167]},{"name":"DEBUG_FLR_REGISTRYTXT_STRESS_ID","features":[167]},{"name":"DEBUG_FLR_REGISTRY_DATA","features":[167]},{"name":"DEBUG_FLR_REPORT_INFO_CREATION_TIME","features":[167]},{"name":"DEBUG_FLR_REPORT_INFO_GUID","features":[167]},{"name":"DEBUG_FLR_REPORT_INFO_SOURCE","features":[167]},{"name":"DEBUG_FLR_REQUESTED_IRQL","features":[167]},{"name":"DEBUG_FLR_RESERVED","features":[167]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE","features":[167]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE_STR","features":[167]},{"name":"DEBUG_FLR_SCM","features":[167]},{"name":"DEBUG_FLR_SCM_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY","features":[167]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_CONTROLCODE","features":[167]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_SERVICENAME","features":[167]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_STARTTIME","features":[167]},{"name":"DEBUG_FLR_SEARCH_HANG","features":[167]},{"name":"DEBUG_FLR_SECURITY_COOKIES","features":[167]},{"name":"DEBUG_FLR_SERVICE","features":[167]},{"name":"DEBUG_FLR_SERVICETABLE_MODIFIED","features":[167]},{"name":"DEBUG_FLR_SERVICE_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_SERVICE_DEPENDONGROUP","features":[167]},{"name":"DEBUG_FLR_SERVICE_DEPENDONSERVICE","features":[167]},{"name":"DEBUG_FLR_SERVICE_DESCRIPTION","features":[167]},{"name":"DEBUG_FLR_SERVICE_DISPLAYNAME","features":[167]},{"name":"DEBUG_FLR_SERVICE_GROUP","features":[167]},{"name":"DEBUG_FLR_SERVICE_NAME","features":[167]},{"name":"DEBUG_FLR_SHOW_ERRORLOG","features":[167]},{"name":"DEBUG_FLR_SHOW_LCIE_ISO_DATA","features":[167]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELSVC_INSTANCES","features":[167]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELWP_INSTANCES","features":[167]},{"name":"DEBUG_FLR_SINGLE_BIT_ERROR","features":[167]},{"name":"DEBUG_FLR_SINGLE_BIT_PFN_PAGE_ERROR","features":[167]},{"name":"DEBUG_FLR_SKIP_CORRUPT_MODULE_DETECTION","features":[167]},{"name":"DEBUG_FLR_SKIP_MODULE_SPECIFIC_BUCKET_INFO","features":[167]},{"name":"DEBUG_FLR_SKIP_STACK_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_SM_BUFFER_HASH","features":[167]},{"name":"DEBUG_FLR_SM_COMPRESSION_FORMAT","features":[167]},{"name":"DEBUG_FLR_SM_ONEBIT_SOLUTION_COUNT","features":[167]},{"name":"DEBUG_FLR_SM_SOURCE_OFFSET","features":[167]},{"name":"DEBUG_FLR_SM_SOURCE_PFN1","features":[167]},{"name":"DEBUG_FLR_SM_SOURCE_PFN2","features":[167]},{"name":"DEBUG_FLR_SM_SOURCE_SIZE","features":[167]},{"name":"DEBUG_FLR_SM_TARGET_PFN","features":[167]},{"name":"DEBUG_FLR_SOLUTION_ID","features":[167]},{"name":"DEBUG_FLR_SOLUTION_TYPE","features":[167]},{"name":"DEBUG_FLR_SPECIAL_POOL_CORRUPTION_TYPE","features":[167]},{"name":"DEBUG_FLR_STACK","features":[167]},{"name":"DEBUG_FLR_STACKHASH_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION","features":[167]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION_SIZE","features":[167]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE","features":[167]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE_SIZE","features":[167]},{"name":"DEBUG_FLR_STACKUSAGE_RECURSION_COUNT","features":[167]},{"name":"DEBUG_FLR_STACK_COMMAND","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME","features":[167]},{"name":"DEBUG_FLR_STACK_FRAMES","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_FLAGS","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_FUNCTION","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_IMAGE","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_INSTRUCTION","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE_BASE","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_NUMBER","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_SRC","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL","features":[167]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL_OFFSET","features":[167]},{"name":"DEBUG_FLR_STACK_OVERFLOW","features":[167]},{"name":"DEBUG_FLR_STACK_POINTER_ERROR","features":[167]},{"name":"DEBUG_FLR_STACK_POINTER_MISALIGNED","features":[167]},{"name":"DEBUG_FLR_STACK_POINTER_ONEBIT_ERROR","features":[167]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_M","features":[167]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MF","features":[167]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MFO","features":[167]},{"name":"DEBUG_FLR_STACK_TEXT","features":[167]},{"name":"DEBUG_FLR_STATUS_CODE","features":[167]},{"name":"DEBUG_FLR_STORAGE","features":[167]},{"name":"DEBUG_FLR_STORAGE_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_STORAGE_ISSUEDESCSTRING","features":[167]},{"name":"DEBUG_FLR_STORAGE_MFGID","features":[167]},{"name":"DEBUG_FLR_STORAGE_MODEL","features":[167]},{"name":"DEBUG_FLR_STORAGE_ORGID","features":[167]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_DATASIZE","features":[167]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_OFFSET","features":[167]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_TOTSIZE","features":[167]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_DATASIZE","features":[167]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_OFFSET","features":[167]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_TOTSIZE","features":[167]},{"name":"DEBUG_FLR_STORAGE_REASON","features":[167]},{"name":"DEBUG_FLR_STORAGE_TOTALSIZE","features":[167]},{"name":"DEBUG_FLR_STORE_DEVELOPER_NAME","features":[167]},{"name":"DEBUG_FLR_STORE_IS_MICROSOFT_PRODUCT","features":[167]},{"name":"DEBUG_FLR_STORE_LEGACY_PARENT_PRODUCT_ID","features":[167]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_PHONE_PRODUCT_ID","features":[167]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_STORE_PRODUCT_ID","features":[167]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_360_PRODUCT_ID","features":[167]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_ONE_PRODUCT_ID","features":[167]},{"name":"DEBUG_FLR_STORE_PACKAGE_FAMILY_NAME","features":[167]},{"name":"DEBUG_FLR_STORE_PACKAGE_IDENTITY_NAME","features":[167]},{"name":"DEBUG_FLR_STORE_PREFERRED_SKU_ID","features":[167]},{"name":"DEBUG_FLR_STORE_PRIMARY_PARENT_PRODUCT_ID","features":[167]},{"name":"DEBUG_FLR_STORE_PRODUCT_DESCRIPTION","features":[167]},{"name":"DEBUG_FLR_STORE_PRODUCT_DISPLAY_NAME","features":[167]},{"name":"DEBUG_FLR_STORE_PRODUCT_EXTENDED_NAME","features":[167]},{"name":"DEBUG_FLR_STORE_PRODUCT_ID","features":[167]},{"name":"DEBUG_FLR_STORE_PUBLISHER_CERTIFICATE_NAME","features":[167]},{"name":"DEBUG_FLR_STORE_PUBLISHER_ID","features":[167]},{"name":"DEBUG_FLR_STORE_PUBLISHER_NAME","features":[167]},{"name":"DEBUG_FLR_STORE_URL_APP","features":[167]},{"name":"DEBUG_FLR_STORE_URL_APPHEALTH","features":[167]},{"name":"DEBUG_FLR_STORE_XBOX_TITLE_ID","features":[167]},{"name":"DEBUG_FLR_STREAM_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_SUSPECT_CODE_PATH_HASH","features":[167]},{"name":"DEBUG_FLR_SVCHOST","features":[167]},{"name":"DEBUG_FLR_SVCHOST_GROUP","features":[167]},{"name":"DEBUG_FLR_SVCHOST_IMAGEPATH","features":[167]},{"name":"DEBUG_FLR_SVCHOST_SERVICEDLL","features":[167]},{"name":"DEBUG_FLR_SWITCH_PROCESS_CONTEXT","features":[167]},{"name":"DEBUG_FLR_SYMBOL_FROM_RAW_STACK_ADDRESS","features":[167]},{"name":"DEBUG_FLR_SYMBOL_NAME","features":[167]},{"name":"DEBUG_FLR_SYMBOL_ON_RAW_STACK","features":[167]},{"name":"DEBUG_FLR_SYMBOL_ROUTINE_NAME","features":[167]},{"name":"DEBUG_FLR_SYMBOL_STACK_INDEX","features":[167]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_MANUFACTURER","features":[167]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_PRODUCT","features":[167]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_VERSION","features":[167]},{"name":"DEBUG_FLR_SYSINFO_BIOS_DATE","features":[167]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VENDOR","features":[167]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VERSION","features":[167]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_MANUFACTURER","features":[167]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_PRODUCT","features":[167]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_SKU","features":[167]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_VERSION","features":[167]},{"name":"DEBUG_FLR_SYSTEM_LOCALE_deprecated","features":[167]},{"name":"DEBUG_FLR_SYSXML_CHECKSUM","features":[167]},{"name":"DEBUG_FLR_SYSXML_LOCALEID","features":[167]},{"name":"DEBUG_FLR_TARGET_MODE","features":[167]},{"name":"DEBUG_FLR_TARGET_TIME","features":[167]},{"name":"DEBUG_FLR_TESTRESULTGUID","features":[167]},{"name":"DEBUG_FLR_TESTRESULTSERVER","features":[167]},{"name":"DEBUG_FLR_THREADPOOL_WAITER","features":[167]},{"name":"DEBUG_FLR_THREAD_ATTRIBUTES","features":[167]},{"name":"DEBUG_FLR_TIMELINE_ANALYSIS","features":[167]},{"name":"DEBUG_FLR_TIMELINE_TIMES","features":[167]},{"name":"DEBUG_FLR_TRAP_FRAME","features":[167]},{"name":"DEBUG_FLR_TRAP_FRAME_RECURSION","features":[167]},{"name":"DEBUG_FLR_TRIAGER_OS_BUILD_NAME","features":[167]},{"name":"DEBUG_FLR_TSS","features":[167]},{"name":"DEBUG_FLR_TWO_BIT_ERROR","features":[167]},{"name":"DEBUG_FLR_ULS_SCRIPT_EXCEPTION","features":[167]},{"name":"DEBUG_FLR_UNALIGNED_STACK_POINTER","features":[167]},{"name":"DEBUG_FLR_UNKNOWN","features":[167]},{"name":"DEBUG_FLR_UNKNOWN_MODULE","features":[167]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_FOLLOWUP_NAME","features":[167]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS","features":[167]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS_DATA","features":[167]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_STACK","features":[167]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_SYMBOL_NAME","features":[167]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_THREAD","features":[167]},{"name":"DEBUG_FLR_UNUSED001","features":[167]},{"name":"DEBUG_FLR_URLS","features":[167]},{"name":"DEBUG_FLR_URLS_DISCOVERED","features":[167]},{"name":"DEBUG_FLR_URL_ENTRY","features":[167]},{"name":"DEBUG_FLR_URL_LCIE_ENTRY","features":[167]},{"name":"DEBUG_FLR_URL_URLMON_ENTRY","features":[167]},{"name":"DEBUG_FLR_URL_XMLHTTPREQ_SYNC_ENTRY","features":[167]},{"name":"DEBUG_FLR_USBPORT_OCADATA","features":[167]},{"name":"DEBUG_FLR_USER","features":[167]},{"name":"DEBUG_FLR_USERBREAK_PEB_PAGEDOUT","features":[167]},{"name":"DEBUG_FLR_USERMODE_DATA","features":[167]},{"name":"DEBUG_FLR_USER_GLOBAL_ATTRIBUTES","features":[167]},{"name":"DEBUG_FLR_USER_LCID","features":[167]},{"name":"DEBUG_FLR_USER_LCID_STR","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_EVENTTYPE","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_INDEX","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P0","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P1","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P2","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P3","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P4","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P5","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P6","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P7","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTCREATIONTIME","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTGUID","features":[167]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_STRING","features":[167]},{"name":"DEBUG_FLR_USER_NAME","features":[167]},{"name":"DEBUG_FLR_USER_PROBLEM_CLASSES","features":[167]},{"name":"DEBUG_FLR_USER_THREAD_ATTRIBUTES","features":[167]},{"name":"DEBUG_FLR_USE_DEFAULT_CONTEXT","features":[167]},{"name":"DEBUG_FLR_VERIFIER_DRIVER_ENTRY","features":[167]},{"name":"DEBUG_FLR_VERIFIER_FOUND_DEADLOCK","features":[167]},{"name":"DEBUG_FLR_VERIFIER_STOP","features":[167]},{"name":"DEBUG_FLR_VIDEO_TDR_CONTEXT","features":[167]},{"name":"DEBUG_FLR_VIRTUAL_MACHINE","features":[167]},{"name":"DEBUG_FLR_WAIT_CHAIN_COMMAND","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_00","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_01","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_02","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_03","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_04","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_05","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_06","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_07","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_08","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_09","features":[167]},{"name":"DEBUG_FLR_WATSON_GENERIC_EVENT_NAME","features":[167]},{"name":"DEBUG_FLR_WATSON_IBUCKET","features":[167]},{"name":"DEBUG_FLR_WATSON_IBUCKETTABLE_S1_RESP","features":[167]},{"name":"DEBUG_FLR_WATSON_IBUCKET_S1_RESP","features":[167]},{"name":"DEBUG_FLR_WATSON_MODULE","features":[167]},{"name":"DEBUG_FLR_WATSON_MODULE_OFFSET","features":[167]},{"name":"DEBUG_FLR_WATSON_MODULE_TIMESTAMP","features":[167]},{"name":"DEBUG_FLR_WATSON_MODULE_VERSION","features":[167]},{"name":"DEBUG_FLR_WATSON_PROCESS_TIMESTAMP","features":[167]},{"name":"DEBUG_FLR_WATSON_PROCESS_VERSION","features":[167]},{"name":"DEBUG_FLR_WCT_XML_AVAILABLE","features":[167]},{"name":"DEBUG_FLR_WERCOLLECTION_DEFAULTCOLLECTION_FAILURE","features":[167]},{"name":"DEBUG_FLR_WERCOLLECTION_MINIDUMP_WRITE_FAILURE","features":[167]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSHEAPDUMP_REQUEST_FAILURE","features":[167]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSTERMINATED","features":[167]},{"name":"DEBUG_FLR_WER_DATA_COLLECTION_INFO","features":[167]},{"name":"DEBUG_FLR_WER_MACHINE_ID","features":[167]},{"name":"DEBUG_FLR_WHEA_ERROR_RECORD","features":[167]},{"name":"DEBUG_FLR_WINLOGON_BLACKBOX","features":[167]},{"name":"DEBUG_FLR_WMI_QUERY_DATA","features":[167]},{"name":"DEBUG_FLR_WORKER_ROUTINE","features":[167]},{"name":"DEBUG_FLR_WORK_ITEM","features":[167]},{"name":"DEBUG_FLR_WORK_QUEUE_ITEM","features":[167]},{"name":"DEBUG_FLR_WQL_EVENTLOG_INFO","features":[167]},{"name":"DEBUG_FLR_WQL_EVENT_COUNT","features":[167]},{"name":"DEBUG_FLR_WRITE_ADDRESS","features":[167]},{"name":"DEBUG_FLR_WRONG_SYMBOLS","features":[167]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_SIZE","features":[167]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_TIMESTAMP","features":[167]},{"name":"DEBUG_FLR_XBOX_LIVE_ENVIRONMENT","features":[167]},{"name":"DEBUG_FLR_XBOX_SYSTEM_CRASHTIME","features":[167]},{"name":"DEBUG_FLR_XBOX_SYSTEM_UPTIME","features":[167]},{"name":"DEBUG_FLR_XCS_PATH","features":[167]},{"name":"DEBUG_FLR_XDV_HELP_LINK","features":[167]},{"name":"DEBUG_FLR_XDV_RULE_INFO","features":[167]},{"name":"DEBUG_FLR_XDV_STATE_VARIABLE","features":[167]},{"name":"DEBUG_FLR_XDV_VIOLATED_CONDITION","features":[167]},{"name":"DEBUG_FLR_XHCI_FIRMWARE_VERSION","features":[167]},{"name":"DEBUG_FLR_XML_APPLICATION_NAME","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D1VALUE","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D2VALUE","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_DOVALUE","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_FRAME_NUMBER","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_LIST","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_NAME","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_THREAD_INDEX","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE","features":[167]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE_TYPE","features":[167]},{"name":"DEBUG_FLR_XML_ENCODED_OFFSETS","features":[167]},{"name":"DEBUG_FLR_XML_EVENTTYPE","features":[167]},{"name":"DEBUG_FLR_XML_GLOBALATTRIBUTE_LIST","features":[167]},{"name":"DEBUG_FLR_XML_MODERN_ASYNC_REQUEST_OUTSTANDING","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_BASE","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_CHECKSUM","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_COMPANY_NAME","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_DRIVER_GROUP","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_DESCRIPTION","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_FLAGS","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_FILE_VER","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_PROD_VER","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_NAME","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_PATH","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INDEX","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INTERNAL_NAME","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_NAME","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ON_STACK","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ORIG_FILE_NAME","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_PRODUCT_NAME","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SIZE","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_FILE_VER","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_PROD_VER","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMBOL_TYPE","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_DETAIL","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_ERROR","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_SEC","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_STATUS","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_DETAIL","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_ERROR","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_SEC","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_STATUS","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_TIMESTAMP","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_INFO_UNLOADED","features":[167]},{"name":"DEBUG_FLR_XML_MODULE_LIST","features":[167]},{"name":"DEBUG_FLR_XML_PACKAGE_MONIKER","features":[167]},{"name":"DEBUG_FLR_XML_PACKAGE_NAME","features":[167]},{"name":"DEBUG_FLR_XML_PACKAGE_RELATIVE_APPLICATION_ID","features":[167]},{"name":"DEBUG_FLR_XML_PACKAGE_VERSION","features":[167]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS","features":[167]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_FRAME_NUMBER","features":[167]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_LIST","features":[167]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_NAME","features":[167]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_THREAD_INDEX","features":[167]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE","features":[167]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE_TYPE","features":[167]},{"name":"DEBUG_FLR_XML_STACK_FRAME_TRIAGE_STATUS","features":[167]},{"name":"DEBUG_FLR_XML_SYSTEMINFO","features":[167]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMANUFACTURER","features":[167]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMARKER","features":[167]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMODEL","features":[167]},{"name":"DEBUG_FLR_XPROC_DUMP_AVAILABLE","features":[167]},{"name":"DEBUG_FLR_XPROC_HANG","features":[167]},{"name":"DEBUG_FLR_ZEROED_STACK","features":[167]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_ALL_IMAGES","features":[167]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_FILES","features":[167]},{"name":"DEBUG_FORMAT_DEFAULT","features":[167]},{"name":"DEBUG_FORMAT_NO_OVERWRITE","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_ADD_AVX_XSTATE_CONTEXT","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_CODE_SEGMENTS","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_DATA_SEGMENTS","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_MEMORY","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_PATHS","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_TRIAGE","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_AUXILIARY_STATE","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY_INFO","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_HANDLE_DATA","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_IGNORE_INACCESSIBLE_MEM","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_INDIRECT_MEMORY","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_IPT_TRACE","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_MODULE_HEADERS","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_AUXILIARY_STATE","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_OPTIONAL_DATA","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_PRIVATE_READ_WRITE_MEMORY","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_PROCESS_THREAD_DATA","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_SCAN_PARTIAL_PAGES","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_THREAD_INFO","features":[167]},{"name":"DEBUG_FORMAT_USER_SMALL_UNLOADED_MODULES","features":[167]},{"name":"DEBUG_FORMAT_WRITE_CAB","features":[167]},{"name":"DEBUG_FRAME_DEFAULT","features":[167]},{"name":"DEBUG_FRAME_IGNORE_INLINE","features":[167]},{"name":"DEBUG_GETFNENT_DEFAULT","features":[167]},{"name":"DEBUG_GETFNENT_RAW_ENTRY_ONLY","features":[167]},{"name":"DEBUG_GETMOD_DEFAULT","features":[167]},{"name":"DEBUG_GETMOD_NO_LOADED_MODULES","features":[167]},{"name":"DEBUG_GETMOD_NO_UNLOADED_MODULES","features":[167]},{"name":"DEBUG_GET_PROC_DEFAULT","features":[167]},{"name":"DEBUG_GET_PROC_FULL_MATCH","features":[167]},{"name":"DEBUG_GET_PROC_ONLY_MATCH","features":[167]},{"name":"DEBUG_GET_PROC_SERVICE_NAME","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IN","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_DOT_COMMAND","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_EXTENSION_COMMAND","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_SYMBOL","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_DOT_COMMANDS","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_EXTENSION_COMMANDS","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_SYMBOLS","features":[167]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_OUT","features":[167]},{"name":"DEBUG_GSEL_ALLOW_HIGHER","features":[167]},{"name":"DEBUG_GSEL_ALLOW_LOWER","features":[167]},{"name":"DEBUG_GSEL_DEFAULT","features":[167]},{"name":"DEBUG_GSEL_INLINE_CALLSITE","features":[167]},{"name":"DEBUG_GSEL_NEAREST_ONLY","features":[167]},{"name":"DEBUG_GSEL_NO_SYMBOL_LOADS","features":[167]},{"name":"DEBUG_HANDLE_DATA_BASIC","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_ALL_HANDLE_OPERATIONS","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_BASIC","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_HANDLE_COUNT","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_EVENT_1","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_1","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_2","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_1","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_2","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SECTION_1","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SEMAPHORE_1","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_THREAD_1","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME_WIDE","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_PER_HANDLE_OPERATIONS","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME","features":[167]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME_WIDE","features":[167]},{"name":"DEBUG_INTERRUPT_ACTIVE","features":[167]},{"name":"DEBUG_INTERRUPT_EXIT","features":[167]},{"name":"DEBUG_INTERRUPT_PASSIVE","features":[167]},{"name":"DEBUG_IOUTPUT_ADDR_TRANSLATE","features":[167]},{"name":"DEBUG_IOUTPUT_BREAKPOINT","features":[167]},{"name":"DEBUG_IOUTPUT_EVENT","features":[167]},{"name":"DEBUG_IOUTPUT_KD_PROTOCOL","features":[167]},{"name":"DEBUG_IOUTPUT_REMOTING","features":[167]},{"name":"DEBUG_IRP_INFO","features":[167]},{"name":"DEBUG_IRP_STACK_INFO","features":[167]},{"name":"DEBUG_KERNEL_ACTIVE_DUMP","features":[167]},{"name":"DEBUG_KERNEL_CONNECTION","features":[167]},{"name":"DEBUG_KERNEL_DUMP","features":[167]},{"name":"DEBUG_KERNEL_EXDI_DRIVER","features":[167]},{"name":"DEBUG_KERNEL_FULL_DUMP","features":[167]},{"name":"DEBUG_KERNEL_IDNA","features":[167]},{"name":"DEBUG_KERNEL_INSTALL_DRIVER","features":[167]},{"name":"DEBUG_KERNEL_LOCAL","features":[167]},{"name":"DEBUG_KERNEL_REPT","features":[167]},{"name":"DEBUG_KERNEL_SMALL_DUMP","features":[167]},{"name":"DEBUG_KERNEL_TRACE_LOG","features":[167]},{"name":"DEBUG_KNOWN_STRUCT_GET_NAMES","features":[167]},{"name":"DEBUG_KNOWN_STRUCT_GET_SINGLE_LINE_OUTPUT","features":[167]},{"name":"DEBUG_KNOWN_STRUCT_SUPPRESS_TYPE_NAME","features":[167]},{"name":"DEBUG_LAST_EVENT_INFO_BREAKPOINT","features":[167]},{"name":"DEBUG_LAST_EVENT_INFO_EXCEPTION","features":[3,167]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_PROCESS","features":[167]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_THREAD","features":[167]},{"name":"DEBUG_LAST_EVENT_INFO_LOAD_MODULE","features":[167]},{"name":"DEBUG_LAST_EVENT_INFO_SERVICE_EXCEPTION","features":[167]},{"name":"DEBUG_LAST_EVENT_INFO_SYSTEM_ERROR","features":[167]},{"name":"DEBUG_LAST_EVENT_INFO_UNLOAD_MODULE","features":[167]},{"name":"DEBUG_LEVEL_ASSEMBLY","features":[167]},{"name":"DEBUG_LEVEL_SOURCE","features":[167]},{"name":"DEBUG_LIVE_USER_NON_INVASIVE","features":[167]},{"name":"DEBUG_LOG_APPEND","features":[167]},{"name":"DEBUG_LOG_DEFAULT","features":[167]},{"name":"DEBUG_LOG_DML","features":[167]},{"name":"DEBUG_LOG_UNICODE","features":[167]},{"name":"DEBUG_MANAGED_ALLOWED","features":[167]},{"name":"DEBUG_MANAGED_DISABLED","features":[167]},{"name":"DEBUG_MANAGED_DLL_LOADED","features":[167]},{"name":"DEBUG_MANRESET_DEFAULT","features":[167]},{"name":"DEBUG_MANRESET_LOAD_DLL","features":[167]},{"name":"DEBUG_MANSTR_LOADED_SUPPORT_DLL","features":[167]},{"name":"DEBUG_MANSTR_LOAD_STATUS","features":[167]},{"name":"DEBUG_MANSTR_NONE","features":[167]},{"name":"DEBUG_MODNAME_IMAGE","features":[167]},{"name":"DEBUG_MODNAME_LOADED_IMAGE","features":[167]},{"name":"DEBUG_MODNAME_MAPPED_IMAGE","features":[167]},{"name":"DEBUG_MODNAME_MODULE","features":[167]},{"name":"DEBUG_MODNAME_SYMBOL_FILE","features":[167]},{"name":"DEBUG_MODULE_AND_ID","features":[167]},{"name":"DEBUG_MODULE_EXE_MODULE","features":[167]},{"name":"DEBUG_MODULE_EXPLICIT","features":[167]},{"name":"DEBUG_MODULE_LOADED","features":[167]},{"name":"DEBUG_MODULE_PARAMETERS","features":[167]},{"name":"DEBUG_MODULE_SECONDARY","features":[167]},{"name":"DEBUG_MODULE_SYM_BAD_CHECKSUM","features":[167]},{"name":"DEBUG_MODULE_SYNTHETIC","features":[167]},{"name":"DEBUG_MODULE_UNLOADED","features":[167]},{"name":"DEBUG_MODULE_USER_MODE","features":[167]},{"name":"DEBUG_NOTIFY_SESSION_ACCESSIBLE","features":[167]},{"name":"DEBUG_NOTIFY_SESSION_ACTIVE","features":[167]},{"name":"DEBUG_NOTIFY_SESSION_INACCESSIBLE","features":[167]},{"name":"DEBUG_NOTIFY_SESSION_INACTIVE","features":[167]},{"name":"DEBUG_OFFSET_REGION","features":[167]},{"name":"DEBUG_OFFSINFO_VIRTUAL_SOURCE","features":[167]},{"name":"DEBUG_OUTCBF_COMBINED_EXPLICIT_FLUSH","features":[167]},{"name":"DEBUG_OUTCBF_DML_HAS_SPECIAL_CHARACTERS","features":[167]},{"name":"DEBUG_OUTCBF_DML_HAS_TAGS","features":[167]},{"name":"DEBUG_OUTCBI_ANY_FORMAT","features":[167]},{"name":"DEBUG_OUTCBI_DML","features":[167]},{"name":"DEBUG_OUTCBI_EXPLICIT_FLUSH","features":[167]},{"name":"DEBUG_OUTCBI_TEXT","features":[167]},{"name":"DEBUG_OUTCB_DML","features":[167]},{"name":"DEBUG_OUTCB_EXPLICIT_FLUSH","features":[167]},{"name":"DEBUG_OUTCB_TEXT","features":[167]},{"name":"DEBUG_OUTCTL_ALL_CLIENTS","features":[167]},{"name":"DEBUG_OUTCTL_ALL_OTHER_CLIENTS","features":[167]},{"name":"DEBUG_OUTCTL_AMBIENT","features":[167]},{"name":"DEBUG_OUTCTL_AMBIENT_DML","features":[167]},{"name":"DEBUG_OUTCTL_AMBIENT_TEXT","features":[167]},{"name":"DEBUG_OUTCTL_DML","features":[167]},{"name":"DEBUG_OUTCTL_IGNORE","features":[167]},{"name":"DEBUG_OUTCTL_LOG_ONLY","features":[167]},{"name":"DEBUG_OUTCTL_NOT_LOGGED","features":[167]},{"name":"DEBUG_OUTCTL_OVERRIDE_MASK","features":[167]},{"name":"DEBUG_OUTCTL_SEND_MASK","features":[167]},{"name":"DEBUG_OUTCTL_THIS_CLIENT","features":[167]},{"name":"DEBUG_OUTPUT_DEBUGGEE","features":[167]},{"name":"DEBUG_OUTPUT_DEBUGGEE_PROMPT","features":[167]},{"name":"DEBUG_OUTPUT_ERROR","features":[167]},{"name":"DEBUG_OUTPUT_EXTENSION_WARNING","features":[167]},{"name":"DEBUG_OUTPUT_IDENTITY_DEFAULT","features":[167]},{"name":"DEBUG_OUTPUT_NAME_END","features":[167]},{"name":"DEBUG_OUTPUT_NAME_END_T","features":[167]},{"name":"DEBUG_OUTPUT_NAME_END_WIDE","features":[167]},{"name":"DEBUG_OUTPUT_NORMAL","features":[167]},{"name":"DEBUG_OUTPUT_OFFSET_END","features":[167]},{"name":"DEBUG_OUTPUT_OFFSET_END_T","features":[167]},{"name":"DEBUG_OUTPUT_OFFSET_END_WIDE","features":[167]},{"name":"DEBUG_OUTPUT_PROMPT","features":[167]},{"name":"DEBUG_OUTPUT_PROMPT_REGISTERS","features":[167]},{"name":"DEBUG_OUTPUT_STATUS","features":[167]},{"name":"DEBUG_OUTPUT_SYMBOLS","features":[167]},{"name":"DEBUG_OUTPUT_SYMBOLS_DEFAULT","features":[167]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_NAMES","features":[167]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_OFFSETS","features":[167]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_TYPES","features":[167]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_VALUES","features":[167]},{"name":"DEBUG_OUTPUT_TYPE_END","features":[167]},{"name":"DEBUG_OUTPUT_TYPE_END_T","features":[167]},{"name":"DEBUG_OUTPUT_TYPE_END_WIDE","features":[167]},{"name":"DEBUG_OUTPUT_VALUE_END","features":[167]},{"name":"DEBUG_OUTPUT_VALUE_END_T","features":[167]},{"name":"DEBUG_OUTPUT_VALUE_END_WIDE","features":[167]},{"name":"DEBUG_OUTPUT_VERBOSE","features":[167]},{"name":"DEBUG_OUTPUT_WARNING","features":[167]},{"name":"DEBUG_OUTPUT_XML","features":[167]},{"name":"DEBUG_OUTSYM_ALLOW_DISPLACEMENT","features":[167]},{"name":"DEBUG_OUTSYM_DEFAULT","features":[167]},{"name":"DEBUG_OUTSYM_FORCE_OFFSET","features":[167]},{"name":"DEBUG_OUTSYM_SOURCE_LINE","features":[167]},{"name":"DEBUG_OUTTYPE_ADDRESS_AT_END","features":[167]},{"name":"DEBUG_OUTTYPE_ADDRESS_OF_FIELD","features":[167]},{"name":"DEBUG_OUTTYPE_BLOCK_RECURSE","features":[167]},{"name":"DEBUG_OUTTYPE_COMPACT_OUTPUT","features":[167]},{"name":"DEBUG_OUTTYPE_DEFAULT","features":[167]},{"name":"DEBUG_OUTTYPE_NO_INDENT","features":[167]},{"name":"DEBUG_OUTTYPE_NO_OFFSET","features":[167]},{"name":"DEBUG_OUTTYPE_VERBOSE","features":[167]},{"name":"DEBUG_OUT_TEXT_REPL_DEFAULT","features":[167]},{"name":"DEBUG_PHYSICAL_CACHED","features":[167]},{"name":"DEBUG_PHYSICAL_DEFAULT","features":[167]},{"name":"DEBUG_PHYSICAL_UNCACHED","features":[167]},{"name":"DEBUG_PHYSICAL_WRITE_COMBINED","features":[167]},{"name":"DEBUG_PNP_TRIAGE_INFO","features":[167]},{"name":"DEBUG_POOLTAG_DESCRIPTION","features":[167]},{"name":"DEBUG_POOL_DATA","features":[167]},{"name":"DEBUG_POOL_REGION","features":[167]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALL","features":[167]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALPHA","features":[167]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_AMD64","features":[167]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM","features":[167]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM64","features":[167]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_IA64","features":[167]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_X86","features":[167]},{"name":"DEBUG_PROCESS_DETACH_ON_EXIT","features":[167]},{"name":"DEBUG_PROCESS_ONLY_THIS_PROCESS","features":[167]},{"name":"DEBUG_PROC_DESC_DEFAULT","features":[167]},{"name":"DEBUG_PROC_DESC_NO_COMMAND_LINE","features":[167]},{"name":"DEBUG_PROC_DESC_NO_MTS_PACKAGES","features":[167]},{"name":"DEBUG_PROC_DESC_NO_PATHS","features":[167]},{"name":"DEBUG_PROC_DESC_NO_SERVICES","features":[167]},{"name":"DEBUG_PROC_DESC_NO_SESSION_ID","features":[167]},{"name":"DEBUG_PROC_DESC_NO_USER_NAME","features":[167]},{"name":"DEBUG_PROC_DESC_WITH_ARCHITECTURE","features":[167]},{"name":"DEBUG_PROC_DESC_WITH_PACKAGEFAMILY","features":[167]},{"name":"DEBUG_READ_USER_MINIDUMP_STREAM","features":[167]},{"name":"DEBUG_REGISTERS_ALL","features":[167]},{"name":"DEBUG_REGISTERS_DEFAULT","features":[167]},{"name":"DEBUG_REGISTERS_FLOAT","features":[167]},{"name":"DEBUG_REGISTERS_INT32","features":[167]},{"name":"DEBUG_REGISTERS_INT64","features":[167]},{"name":"DEBUG_REGISTER_DESCRIPTION","features":[167]},{"name":"DEBUG_REGISTER_SUB_REGISTER","features":[167]},{"name":"DEBUG_REGSRC_DEBUGGEE","features":[167]},{"name":"DEBUG_REGSRC_EXPLICIT","features":[167]},{"name":"DEBUG_REGSRC_FRAME","features":[167]},{"name":"DEBUG_REQUEST_ADD_CACHED_SYMBOL_INFO","features":[167]},{"name":"DEBUG_REQUEST_CLOSE_TOKEN","features":[167]},{"name":"DEBUG_REQUEST_CURRENT_OUTPUT_CALLBACKS_ARE_DML_AWARE","features":[167]},{"name":"DEBUG_REQUEST_DUPLICATE_TOKEN","features":[167]},{"name":"DEBUG_REQUEST_EXT_TYPED_DATA_ANSI","features":[167]},{"name":"DEBUG_REQUEST_GET_ADDITIONAL_CREATE_OPTIONS","features":[167]},{"name":"DEBUG_REQUEST_GET_CACHED_SYMBOL_INFO","features":[167]},{"name":"DEBUG_REQUEST_GET_CAPTURED_EVENT_CODE_OFFSET","features":[167]},{"name":"DEBUG_REQUEST_GET_DUMP_HEADER","features":[167]},{"name":"DEBUG_REQUEST_GET_EXTENSION_SEARCH_PATH_WIDE","features":[167]},{"name":"DEBUG_REQUEST_GET_IMAGE_ARCHITECTURE","features":[167]},{"name":"DEBUG_REQUEST_GET_INSTRUMENTATION_VERSION","features":[167]},{"name":"DEBUG_REQUEST_GET_MODULE_ARCHITECTURE","features":[167]},{"name":"DEBUG_REQUEST_GET_OFFSET_UNWIND_INFORMATION","features":[167]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_ANSI","features":[167]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_WIDE","features":[167]},{"name":"DEBUG_REQUEST_GET_WIN32_MAJOR_MINOR_VERSIONS","features":[167]},{"name":"DEBUG_REQUEST_INLINE_QUERY","features":[167]},{"name":"DEBUG_REQUEST_MIDORI","features":[167]},{"name":"DEBUG_REQUEST_MISC_INFORMATION","features":[167]},{"name":"DEBUG_REQUEST_OPEN_PROCESS_TOKEN","features":[167]},{"name":"DEBUG_REQUEST_OPEN_THREAD_TOKEN","features":[167]},{"name":"DEBUG_REQUEST_PROCESS_DESCRIPTORS","features":[167]},{"name":"DEBUG_REQUEST_QUERY_INFO_TOKEN","features":[167]},{"name":"DEBUG_REQUEST_READ_CAPTURED_EVENT_CODE_STREAM","features":[167]},{"name":"DEBUG_REQUEST_READ_USER_MINIDUMP_STREAM","features":[167]},{"name":"DEBUG_REQUEST_REMOVE_CACHED_SYMBOL_INFO","features":[167]},{"name":"DEBUG_REQUEST_RESUME_THREAD","features":[167]},{"name":"DEBUG_REQUEST_SET_ADDITIONAL_CREATE_OPTIONS","features":[167]},{"name":"DEBUG_REQUEST_SET_DUMP_HEADER","features":[167]},{"name":"DEBUG_REQUEST_SET_LOCAL_IMPLICIT_COMMAND_LINE","features":[167]},{"name":"DEBUG_REQUEST_SOURCE_PATH_HAS_SOURCE_SERVER","features":[167]},{"name":"DEBUG_REQUEST_TARGET_CAN_DETACH","features":[167]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_CONTEXT","features":[167]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_RECORD","features":[167]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_THREAD","features":[167]},{"name":"DEBUG_REQUEST_TL_INSTRUMENTATION_AWARE","features":[167]},{"name":"DEBUG_REQUEST_WOW_MODULE","features":[167]},{"name":"DEBUG_REQUEST_WOW_PROCESS","features":[167]},{"name":"DEBUG_SCOPE_GROUP_ALL","features":[167]},{"name":"DEBUG_SCOPE_GROUP_ARGUMENTS","features":[167]},{"name":"DEBUG_SCOPE_GROUP_BY_DATAMODEL","features":[167]},{"name":"DEBUG_SCOPE_GROUP_LOCALS","features":[167]},{"name":"DEBUG_SERVERS_ALL","features":[167]},{"name":"DEBUG_SERVERS_DEBUGGER","features":[167]},{"name":"DEBUG_SERVERS_PROCESS","features":[167]},{"name":"DEBUG_SESSION_ACTIVE","features":[167]},{"name":"DEBUG_SESSION_END","features":[167]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_DETACH","features":[167]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_TERMINATE","features":[167]},{"name":"DEBUG_SESSION_END_SESSION_PASSIVE","features":[167]},{"name":"DEBUG_SESSION_FAILURE","features":[167]},{"name":"DEBUG_SESSION_HIBERNATE","features":[167]},{"name":"DEBUG_SESSION_REBOOT","features":[167]},{"name":"DEBUG_SMBIOS_INFO","features":[167]},{"name":"DEBUG_SOURCE_IS_STATEMENT","features":[167]},{"name":"DEBUG_SPECIFIC_FILTER_PARAMETERS","features":[167]},{"name":"DEBUG_SRCFILE_SYMBOL_CHECKSUMINFO","features":[167]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN","features":[167]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN_SOURCE_COMMAND_WIDE","features":[167]},{"name":"DEBUG_STACK_ARGUMENTS","features":[167]},{"name":"DEBUG_STACK_COLUMN_NAMES","features":[167]},{"name":"DEBUG_STACK_DML","features":[167]},{"name":"DEBUG_STACK_FRAME","features":[3,167]},{"name":"DEBUG_STACK_FRAME_ADDRESSES","features":[167]},{"name":"DEBUG_STACK_FRAME_ADDRESSES_RA_ONLY","features":[167]},{"name":"DEBUG_STACK_FRAME_ARCH","features":[167]},{"name":"DEBUG_STACK_FRAME_EX","features":[3,167]},{"name":"DEBUG_STACK_FRAME_MEMORY_USAGE","features":[167]},{"name":"DEBUG_STACK_FRAME_NUMBERS","features":[167]},{"name":"DEBUG_STACK_FRAME_OFFSETS","features":[167]},{"name":"DEBUG_STACK_FUNCTION_INFO","features":[167]},{"name":"DEBUG_STACK_NONVOLATILE_REGISTERS","features":[167]},{"name":"DEBUG_STACK_PARAMETERS","features":[167]},{"name":"DEBUG_STACK_PARAMETERS_NEWLINE","features":[167]},{"name":"DEBUG_STACK_PROVIDER","features":[167]},{"name":"DEBUG_STACK_SOURCE_LINE","features":[167]},{"name":"DEBUG_STATUS_BREAK","features":[167]},{"name":"DEBUG_STATUS_GO","features":[167]},{"name":"DEBUG_STATUS_GO_HANDLED","features":[167]},{"name":"DEBUG_STATUS_GO_NOT_HANDLED","features":[167]},{"name":"DEBUG_STATUS_IGNORE_EVENT","features":[167]},{"name":"DEBUG_STATUS_INSIDE_WAIT","features":[167]},{"name":"DEBUG_STATUS_MASK","features":[167]},{"name":"DEBUG_STATUS_NO_CHANGE","features":[167]},{"name":"DEBUG_STATUS_NO_DEBUGGEE","features":[167]},{"name":"DEBUG_STATUS_OUT_OF_SYNC","features":[167]},{"name":"DEBUG_STATUS_RESTART_REQUESTED","features":[167]},{"name":"DEBUG_STATUS_REVERSE_GO","features":[167]},{"name":"DEBUG_STATUS_REVERSE_STEP_BRANCH","features":[167]},{"name":"DEBUG_STATUS_REVERSE_STEP_INTO","features":[167]},{"name":"DEBUG_STATUS_REVERSE_STEP_OVER","features":[167]},{"name":"DEBUG_STATUS_STEP_BRANCH","features":[167]},{"name":"DEBUG_STATUS_STEP_INTO","features":[167]},{"name":"DEBUG_STATUS_STEP_OVER","features":[167]},{"name":"DEBUG_STATUS_TIMEOUT","features":[167]},{"name":"DEBUG_STATUS_WAIT_INPUT","features":[167]},{"name":"DEBUG_STATUS_WAIT_TIMEOUT","features":[167]},{"name":"DEBUG_SYMBOL_ENTRY","features":[167]},{"name":"DEBUG_SYMBOL_EXPANDED","features":[167]},{"name":"DEBUG_SYMBOL_EXPANSION_LEVEL_MASK","features":[167]},{"name":"DEBUG_SYMBOL_IS_ARGUMENT","features":[167]},{"name":"DEBUG_SYMBOL_IS_ARRAY","features":[167]},{"name":"DEBUG_SYMBOL_IS_FLOAT","features":[167]},{"name":"DEBUG_SYMBOL_IS_LOCAL","features":[167]},{"name":"DEBUG_SYMBOL_PARAMETERS","features":[167]},{"name":"DEBUG_SYMBOL_READ_ONLY","features":[167]},{"name":"DEBUG_SYMBOL_SOURCE_ENTRY","features":[167]},{"name":"DEBUG_SYMENT_IS_CODE","features":[167]},{"name":"DEBUG_SYMENT_IS_DATA","features":[167]},{"name":"DEBUG_SYMENT_IS_LOCAL","features":[167]},{"name":"DEBUG_SYMENT_IS_MANAGED","features":[167]},{"name":"DEBUG_SYMENT_IS_PARAMETER","features":[167]},{"name":"DEBUG_SYMENT_IS_SYNTHETIC","features":[167]},{"name":"DEBUG_SYMINFO_BREAKPOINT_SOURCE_LINE","features":[167]},{"name":"DEBUG_SYMINFO_GET_MODULE_SYMBOL_NAMES_AND_OFFSETS","features":[167]},{"name":"DEBUG_SYMINFO_GET_SYMBOL_NAME_BY_OFFSET_AND_TAG_WIDE","features":[167]},{"name":"DEBUG_SYMINFO_IMAGEHLP_MODULEW64","features":[167]},{"name":"DEBUG_SYMTYPE_CODEVIEW","features":[167]},{"name":"DEBUG_SYMTYPE_COFF","features":[167]},{"name":"DEBUG_SYMTYPE_DEFERRED","features":[167]},{"name":"DEBUG_SYMTYPE_DIA","features":[167]},{"name":"DEBUG_SYMTYPE_EXPORT","features":[167]},{"name":"DEBUG_SYMTYPE_NONE","features":[167]},{"name":"DEBUG_SYMTYPE_PDB","features":[167]},{"name":"DEBUG_SYMTYPE_SYM","features":[167]},{"name":"DEBUG_SYSOBJINFO_CURRENT_PROCESS_COOKIE","features":[167]},{"name":"DEBUG_SYSOBJINFO_THREAD_BASIC_INFORMATION","features":[167]},{"name":"DEBUG_SYSOBJINFO_THREAD_NAME_WIDE","features":[167]},{"name":"DEBUG_SYSVERSTR_BUILD","features":[167]},{"name":"DEBUG_SYSVERSTR_SERVICE_PACK","features":[167]},{"name":"DEBUG_TBINFO_AFFINITY","features":[167]},{"name":"DEBUG_TBINFO_ALL","features":[167]},{"name":"DEBUG_TBINFO_EXIT_STATUS","features":[167]},{"name":"DEBUG_TBINFO_PRIORITY","features":[167]},{"name":"DEBUG_TBINFO_PRIORITY_CLASS","features":[167]},{"name":"DEBUG_TBINFO_START_OFFSET","features":[167]},{"name":"DEBUG_TBINFO_TIMES","features":[167]},{"name":"DEBUG_THREAD_BASIC_INFORMATION","features":[167]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO","features":[167]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO_2","features":[167]},{"name":"DEBUG_TYPED_DATA","features":[167]},{"name":"DEBUG_TYPED_DATA_IS_IN_MEMORY","features":[167]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_CACHED","features":[167]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_DEFAULT","features":[167]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_MEMORY","features":[167]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_UNCACHED","features":[167]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_WRITE_COMBINED","features":[167]},{"name":"DEBUG_TYPEOPTS_FORCERADIX_OUTPUT","features":[167]},{"name":"DEBUG_TYPEOPTS_LONGSTATUS_DISPLAY","features":[167]},{"name":"DEBUG_TYPEOPTS_MATCH_MAXSIZE","features":[167]},{"name":"DEBUG_TYPEOPTS_UNICODE_DISPLAY","features":[167]},{"name":"DEBUG_USER_WINDOWS_DUMP","features":[167]},{"name":"DEBUG_USER_WINDOWS_DUMP_WINDOWS_CE","features":[167]},{"name":"DEBUG_USER_WINDOWS_IDNA","features":[167]},{"name":"DEBUG_USER_WINDOWS_PROCESS","features":[167]},{"name":"DEBUG_USER_WINDOWS_PROCESS_SERVER","features":[167]},{"name":"DEBUG_USER_WINDOWS_REPT","features":[167]},{"name":"DEBUG_USER_WINDOWS_SMALL_DUMP","features":[167]},{"name":"DEBUG_VALUE","features":[3,167]},{"name":"DEBUG_VALUE_FLOAT128","features":[167]},{"name":"DEBUG_VALUE_FLOAT32","features":[167]},{"name":"DEBUG_VALUE_FLOAT64","features":[167]},{"name":"DEBUG_VALUE_FLOAT80","features":[167]},{"name":"DEBUG_VALUE_FLOAT82","features":[167]},{"name":"DEBUG_VALUE_INT16","features":[167]},{"name":"DEBUG_VALUE_INT32","features":[167]},{"name":"DEBUG_VALUE_INT64","features":[167]},{"name":"DEBUG_VALUE_INT8","features":[167]},{"name":"DEBUG_VALUE_INVALID","features":[167]},{"name":"DEBUG_VALUE_TYPES","features":[167]},{"name":"DEBUG_VALUE_VECTOR128","features":[167]},{"name":"DEBUG_VALUE_VECTOR64","features":[167]},{"name":"DEBUG_VSEARCH_DEFAULT","features":[167]},{"name":"DEBUG_VSEARCH_WRITABLE_ONLY","features":[167]},{"name":"DEBUG_VSOURCE_DEBUGGEE","features":[167]},{"name":"DEBUG_VSOURCE_DUMP_WITHOUT_MEMINFO","features":[167]},{"name":"DEBUG_VSOURCE_INVALID","features":[167]},{"name":"DEBUG_VSOURCE_MAPPED_IMAGE","features":[167]},{"name":"DEBUG_WAIT_DEFAULT","features":[167]},{"name":"DISK_READ_0_BYTES","features":[167]},{"name":"DISK_WRITE","features":[167]},{"name":"DUMP_HANDLE_FLAG_CID_TABLE","features":[167]},{"name":"DUMP_HANDLE_FLAG_KERNEL_TABLE","features":[167]},{"name":"DUMP_HANDLE_FLAG_PRINT_FREE_ENTRY","features":[167]},{"name":"DUMP_HANDLE_FLAG_PRINT_OBJECT","features":[167]},{"name":"DbgPoolRegionMax","features":[167]},{"name":"DbgPoolRegionNonPaged","features":[167]},{"name":"DbgPoolRegionNonPagedExpansion","features":[167]},{"name":"DbgPoolRegionPaged","features":[167]},{"name":"DbgPoolRegionSessionPaged","features":[167]},{"name":"DbgPoolRegionSpecial","features":[167]},{"name":"DbgPoolRegionUnknown","features":[167]},{"name":"DebugBaseEventCallbacks","features":[167]},{"name":"DebugBaseEventCallbacksWide","features":[167]},{"name":"DebugConnect","features":[167]},{"name":"DebugConnectWide","features":[167]},{"name":"DebugCreate","features":[167]},{"name":"DebugCreateEx","features":[167]},{"name":"ENTRY_CALLBACK","features":[167]},{"name":"ERROR_DBG_CANCELLED","features":[167]},{"name":"ERROR_DBG_TIMEOUT","features":[167]},{"name":"EXIT_ON_CONTROLC","features":[167]},{"name":"EXIT_STATUS","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR_SYMSRV","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR_SYMSRV","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR_SYMSRV","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR","features":[167]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR_SYMSRV","features":[167]},{"name":"EXTDLL_ITERATERTLBALANCEDNODES","features":[167]},{"name":"EXTDLL_QUERYDATABYTAG","features":[167]},{"name":"EXTDLL_QUERYDATABYTAGEX","features":[167]},{"name":"EXTSTACKTRACE","features":[167]},{"name":"EXTSTACKTRACE32","features":[167]},{"name":"EXTSTACKTRACE64","features":[167]},{"name":"EXTS_JOB_PROCESS_CALLBACK","features":[3,167]},{"name":"EXTS_TABLE_ENTRY_CALLBACK","features":[3,167]},{"name":"EXT_ANALYSIS_PLUGIN","features":[167]},{"name":"EXT_ANALYZER","features":[167]},{"name":"EXT_ANALYZER_FLAG_ID","features":[167]},{"name":"EXT_ANALYZER_FLAG_MOD","features":[167]},{"name":"EXT_API_VERSION","features":[167]},{"name":"EXT_API_VERSION_NUMBER","features":[167]},{"name":"EXT_API_VERSION_NUMBER32","features":[167]},{"name":"EXT_API_VERSION_NUMBER64","features":[167]},{"name":"EXT_CAB_XML_DATA","features":[167]},{"name":"EXT_DECODE_ERROR","features":[3,167]},{"name":"EXT_FIND_FILE","features":[3,167]},{"name":"EXT_FIND_FILE_ALLOW_GIVEN_PATH","features":[167]},{"name":"EXT_GET_DEBUG_FAILURE_ANALYSIS","features":[167]},{"name":"EXT_GET_ENVIRONMENT_VARIABLE","features":[167]},{"name":"EXT_GET_FAILURE_ANALYSIS","features":[167]},{"name":"EXT_GET_FA_ENTRIES_DATA","features":[167]},{"name":"EXT_GET_HANDLE_TRACE","features":[167]},{"name":"EXT_MATCH_PATTERN_A","features":[167]},{"name":"EXT_RELOAD_TRIAGER","features":[167]},{"name":"EXT_TARGET_INFO","features":[167]},{"name":"EXT_TDF_PHYSICAL_CACHED","features":[167]},{"name":"EXT_TDF_PHYSICAL_DEFAULT","features":[167]},{"name":"EXT_TDF_PHYSICAL_MEMORY","features":[167]},{"name":"EXT_TDF_PHYSICAL_UNCACHED","features":[167]},{"name":"EXT_TDF_PHYSICAL_WRITE_COMBINED","features":[167]},{"name":"EXT_TDOP","features":[167]},{"name":"EXT_TDOP_COPY","features":[167]},{"name":"EXT_TDOP_COUNT","features":[167]},{"name":"EXT_TDOP_EVALUATE","features":[167]},{"name":"EXT_TDOP_GET_ARRAY_ELEMENT","features":[167]},{"name":"EXT_TDOP_GET_DEREFERENCE","features":[167]},{"name":"EXT_TDOP_GET_FIELD","features":[167]},{"name":"EXT_TDOP_GET_FIELD_OFFSET","features":[167]},{"name":"EXT_TDOP_GET_POINTER_TO","features":[167]},{"name":"EXT_TDOP_GET_TYPE_NAME","features":[167]},{"name":"EXT_TDOP_GET_TYPE_SIZE","features":[167]},{"name":"EXT_TDOP_HAS_FIELD","features":[167]},{"name":"EXT_TDOP_OUTPUT_FULL_VALUE","features":[167]},{"name":"EXT_TDOP_OUTPUT_SIMPLE_VALUE","features":[167]},{"name":"EXT_TDOP_OUTPUT_TYPE_DEFINITION","features":[167]},{"name":"EXT_TDOP_OUTPUT_TYPE_NAME","features":[167]},{"name":"EXT_TDOP_RELEASE","features":[167]},{"name":"EXT_TDOP_SET_FROM_EXPR","features":[167]},{"name":"EXT_TDOP_SET_FROM_TYPE_ID_AND_U64","features":[167]},{"name":"EXT_TDOP_SET_FROM_U64_EXPR","features":[167]},{"name":"EXT_TDOP_SET_PTR_FROM_TYPE_ID_AND_U64","features":[167]},{"name":"EXT_TRIAGE_FOLLOWUP","features":[167]},{"name":"EXT_TYPED_DATA","features":[167]},{"name":"EXT_XML_DATA","features":[167]},{"name":"ErrorClass","features":[167]},{"name":"ErrorClassError","features":[167]},{"name":"ErrorClassWarning","features":[167]},{"name":"FAILURE_ANALYSIS_ASSUME_HANG","features":[167]},{"name":"FAILURE_ANALYSIS_AUTOBUG_PROCESSING","features":[167]},{"name":"FAILURE_ANALYSIS_AUTOSET_SYMPATH","features":[167]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML","features":[167]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML_FULL_SOURCE_INFO","features":[167]},{"name":"FAILURE_ANALYSIS_CREATE_INSTANCE","features":[167]},{"name":"FAILURE_ANALYSIS_EXCEPTION_AS_HANG","features":[167]},{"name":"FAILURE_ANALYSIS_HEAP_CORRUPTION_BLAME_FUNCTION","features":[167]},{"name":"FAILURE_ANALYSIS_IGNORE_BREAKIN","features":[167]},{"name":"FAILURE_ANALYSIS_LIVE_DEBUG_HOLD_CHECK","features":[167]},{"name":"FAILURE_ANALYSIS_MODULE_INFO_XML","features":[167]},{"name":"FAILURE_ANALYSIS_MULTI_TARGET","features":[167]},{"name":"FAILURE_ANALYSIS_NO_DB_LOOKUP","features":[167]},{"name":"FAILURE_ANALYSIS_NO_IMAGE_CORRUPTION","features":[167]},{"name":"FAILURE_ANALYSIS_PERMIT_HEAP_ACCESS_VIOLATIONS","features":[167]},{"name":"FAILURE_ANALYSIS_REGISTRY_DATA","features":[167]},{"name":"FAILURE_ANALYSIS_SET_FAILURE_CONTEXT","features":[167]},{"name":"FAILURE_ANALYSIS_SHOW_SOURCE","features":[167]},{"name":"FAILURE_ANALYSIS_SHOW_WCT_STACKS","features":[167]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES","features":[167]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_ALL","features":[167]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_FRAMES","features":[167]},{"name":"FAILURE_ANALYSIS_VERBOSE","features":[167]},{"name":"FAILURE_ANALYSIS_WMI_QUERY_DATA","features":[167]},{"name":"FAILURE_ANALYSIS_XML_FILE_OUTPUT","features":[167]},{"name":"FAILURE_ANALYSIS_XML_OUTPUT","features":[167]},{"name":"FAILURE_ANALYSIS_XSD_VERIFY","features":[167]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_INPUT","features":[167]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_OUTPUT","features":[167]},{"name":"FA_ENTRY","features":[167]},{"name":"FA_ENTRY_TYPE","features":[167]},{"name":"FA_EXTENSION_PLUGIN_PHASE","features":[167]},{"name":"FA_PLUGIN_INITIALIZATION","features":[167]},{"name":"FA_PLUGIN_POST_BUCKETING","features":[167]},{"name":"FA_PLUGIN_PRE_BUCKETING","features":[167]},{"name":"FA_PLUGIN_STACK_ANALYSIS","features":[167]},{"name":"FIELDS_DID_NOT_MATCH","features":[167]},{"name":"FIELD_INFO","features":[167]},{"name":"FormatBSTRString","features":[167]},{"name":"FormatEnumNameOnly","features":[167]},{"name":"FormatEscapedStringWithQuote","features":[167]},{"name":"FormatHString","features":[167]},{"name":"FormatNone","features":[167]},{"name":"FormatQuotedHString","features":[167]},{"name":"FormatQuotedString","features":[167]},{"name":"FormatQuotedUTF32String","features":[167]},{"name":"FormatQuotedUTF8String","features":[167]},{"name":"FormatQuotedUnicodeString","features":[167]},{"name":"FormatRaw","features":[167]},{"name":"FormatSingleCharacter","features":[167]},{"name":"FormatString","features":[167]},{"name":"FormatUTF32String","features":[167]},{"name":"FormatUTF8String","features":[167]},{"name":"FormatUnicodeString","features":[167]},{"name":"GET_CONTEXT_EX","features":[167]},{"name":"GET_CURRENT_PROCESS_ADDRESS","features":[167]},{"name":"GET_CURRENT_THREAD_ADDRESS","features":[167]},{"name":"GET_EXPRESSION_EX","features":[167]},{"name":"GET_INPUT_LINE","features":[167]},{"name":"GET_PEB_ADDRESS","features":[167]},{"name":"GET_SET_SYMPATH","features":[167]},{"name":"GET_TEB_ADDRESS","features":[167]},{"name":"ICodeAddressConcept","features":[167]},{"name":"IComparableConcept","features":[167]},{"name":"IDataModelConcept","features":[167]},{"name":"IDataModelManager","features":[167]},{"name":"IDataModelManager2","features":[167]},{"name":"IDataModelNameBinder","features":[167]},{"name":"IDataModelScript","features":[167]},{"name":"IDataModelScriptClient","features":[167]},{"name":"IDataModelScriptDebug","features":[167]},{"name":"IDataModelScriptDebug2","features":[167]},{"name":"IDataModelScriptDebugBreakpoint","features":[167]},{"name":"IDataModelScriptDebugBreakpointEnumerator","features":[167]},{"name":"IDataModelScriptDebugClient","features":[167]},{"name":"IDataModelScriptDebugStack","features":[167]},{"name":"IDataModelScriptDebugStackFrame","features":[167]},{"name":"IDataModelScriptDebugVariableSetEnumerator","features":[167]},{"name":"IDataModelScriptHostContext","features":[167]},{"name":"IDataModelScriptManager","features":[167]},{"name":"IDataModelScriptProvider","features":[167]},{"name":"IDataModelScriptProviderEnumerator","features":[167]},{"name":"IDataModelScriptTemplate","features":[167]},{"name":"IDataModelScriptTemplateEnumerator","features":[167]},{"name":"IDebugAdvanced","features":[167]},{"name":"IDebugAdvanced2","features":[167]},{"name":"IDebugAdvanced3","features":[167]},{"name":"IDebugAdvanced4","features":[167]},{"name":"IDebugBreakpoint","features":[167]},{"name":"IDebugBreakpoint2","features":[167]},{"name":"IDebugBreakpoint3","features":[167]},{"name":"IDebugClient","features":[167]},{"name":"IDebugClient2","features":[167]},{"name":"IDebugClient3","features":[167]},{"name":"IDebugClient4","features":[167]},{"name":"IDebugClient5","features":[167]},{"name":"IDebugClient6","features":[167]},{"name":"IDebugClient7","features":[167]},{"name":"IDebugClient8","features":[167]},{"name":"IDebugControl","features":[167]},{"name":"IDebugControl2","features":[167]},{"name":"IDebugControl3","features":[167]},{"name":"IDebugControl4","features":[167]},{"name":"IDebugControl5","features":[167]},{"name":"IDebugControl6","features":[167]},{"name":"IDebugControl7","features":[167]},{"name":"IDebugDataSpaces","features":[167]},{"name":"IDebugDataSpaces2","features":[167]},{"name":"IDebugDataSpaces3","features":[167]},{"name":"IDebugDataSpaces4","features":[167]},{"name":"IDebugEventCallbacks","features":[167]},{"name":"IDebugEventCallbacksWide","features":[167]},{"name":"IDebugEventContextCallbacks","features":[167]},{"name":"IDebugFAEntryTags","features":[167]},{"name":"IDebugFailureAnalysis","features":[167]},{"name":"IDebugFailureAnalysis2","features":[167]},{"name":"IDebugFailureAnalysis3","features":[167]},{"name":"IDebugHost","features":[167]},{"name":"IDebugHostBaseClass","features":[167]},{"name":"IDebugHostConstant","features":[167]},{"name":"IDebugHostContext","features":[167]},{"name":"IDebugHostData","features":[167]},{"name":"IDebugHostErrorSink","features":[167]},{"name":"IDebugHostEvaluator","features":[167]},{"name":"IDebugHostEvaluator2","features":[167]},{"name":"IDebugHostExtensibility","features":[167]},{"name":"IDebugHostField","features":[167]},{"name":"IDebugHostMemory","features":[167]},{"name":"IDebugHostMemory2","features":[167]},{"name":"IDebugHostModule","features":[167]},{"name":"IDebugHostModule2","features":[167]},{"name":"IDebugHostModuleSignature","features":[167]},{"name":"IDebugHostPublic","features":[167]},{"name":"IDebugHostScriptHost","features":[167]},{"name":"IDebugHostStatus","features":[167]},{"name":"IDebugHostSymbol","features":[167]},{"name":"IDebugHostSymbol2","features":[167]},{"name":"IDebugHostSymbolEnumerator","features":[167]},{"name":"IDebugHostSymbols","features":[167]},{"name":"IDebugHostType","features":[167]},{"name":"IDebugHostType2","features":[167]},{"name":"IDebugHostTypeSignature","features":[167]},{"name":"IDebugInputCallbacks","features":[167]},{"name":"IDebugOutputCallbacks","features":[167]},{"name":"IDebugOutputCallbacks2","features":[167]},{"name":"IDebugOutputCallbacksWide","features":[167]},{"name":"IDebugOutputStream","features":[167]},{"name":"IDebugPlmClient","features":[167]},{"name":"IDebugPlmClient2","features":[167]},{"name":"IDebugPlmClient3","features":[167]},{"name":"IDebugRegisters","features":[167]},{"name":"IDebugRegisters2","features":[167]},{"name":"IDebugSymbolGroup","features":[167]},{"name":"IDebugSymbolGroup2","features":[167]},{"name":"IDebugSymbols","features":[167]},{"name":"IDebugSymbols2","features":[167]},{"name":"IDebugSymbols3","features":[167]},{"name":"IDebugSymbols4","features":[167]},{"name":"IDebugSymbols5","features":[167]},{"name":"IDebugSystemObjects","features":[167]},{"name":"IDebugSystemObjects2","features":[167]},{"name":"IDebugSystemObjects3","features":[167]},{"name":"IDebugSystemObjects4","features":[167]},{"name":"IDynamicConceptProviderConcept","features":[167]},{"name":"IDynamicKeyProviderConcept","features":[167]},{"name":"IEquatableConcept","features":[167]},{"name":"IG_DISASSEMBLE_BUFFER","features":[167]},{"name":"IG_DUMP_SYMBOL_INFO","features":[167]},{"name":"IG_FIND_FILE","features":[167]},{"name":"IG_GET_ANY_MODULE_IN_RANGE","features":[167]},{"name":"IG_GET_BUS_DATA","features":[167]},{"name":"IG_GET_CACHE_SIZE","features":[167]},{"name":"IG_GET_CLR_DATA_INTERFACE","features":[167]},{"name":"IG_GET_CONTEXT_EX","features":[167]},{"name":"IG_GET_CURRENT_PROCESS","features":[167]},{"name":"IG_GET_CURRENT_PROCESS_HANDLE","features":[167]},{"name":"IG_GET_CURRENT_THREAD","features":[167]},{"name":"IG_GET_DEBUGGER_DATA","features":[167]},{"name":"IG_GET_EXCEPTION_RECORD","features":[167]},{"name":"IG_GET_EXPRESSION_EX","features":[167]},{"name":"IG_GET_INPUT_LINE","features":[167]},{"name":"IG_GET_KERNEL_VERSION","features":[167]},{"name":"IG_GET_PEB_ADDRESS","features":[167]},{"name":"IG_GET_SET_SYMPATH","features":[167]},{"name":"IG_GET_TEB_ADDRESS","features":[167]},{"name":"IG_GET_THREAD_OS_INFO","features":[167]},{"name":"IG_GET_TYPE_SIZE","features":[167]},{"name":"IG_IS_PTR64","features":[167]},{"name":"IG_KD_CONTEXT","features":[167]},{"name":"IG_KSTACK_HELP","features":[167]},{"name":"IG_LOWMEM_CHECK","features":[167]},{"name":"IG_MATCH_PATTERN_A","features":[167]},{"name":"IG_OBSOLETE_PLACEHOLDER_36","features":[167]},{"name":"IG_PHYSICAL_TO_VIRTUAL","features":[167]},{"name":"IG_POINTER_SEARCH_PHYSICAL","features":[167]},{"name":"IG_QUERY_TARGET_INTERFACE","features":[167]},{"name":"IG_READ_CONTROL_SPACE","features":[167]},{"name":"IG_READ_IO_SPACE","features":[167]},{"name":"IG_READ_IO_SPACE_EX","features":[167]},{"name":"IG_READ_MSR","features":[167]},{"name":"IG_READ_PHYSICAL","features":[167]},{"name":"IG_READ_PHYSICAL_WITH_FLAGS","features":[167]},{"name":"IG_RELOAD_SYMBOLS","features":[167]},{"name":"IG_SEARCH_MEMORY","features":[167]},{"name":"IG_SET_BUS_DATA","features":[167]},{"name":"IG_SET_THREAD","features":[167]},{"name":"IG_TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[167]},{"name":"IG_TYPED_DATA","features":[167]},{"name":"IG_TYPED_DATA_OBSOLETE","features":[167]},{"name":"IG_VIRTUAL_TO_PHYSICAL","features":[167]},{"name":"IG_WRITE_CONTROL_SPACE","features":[167]},{"name":"IG_WRITE_IO_SPACE","features":[167]},{"name":"IG_WRITE_IO_SPACE_EX","features":[167]},{"name":"IG_WRITE_MSR","features":[167]},{"name":"IG_WRITE_PHYSICAL","features":[167]},{"name":"IG_WRITE_PHYSICAL_WITH_FLAGS","features":[167]},{"name":"IHostDataModelAccess","features":[167]},{"name":"IIndexableConcept","features":[167]},{"name":"IIterableConcept","features":[167]},{"name":"IKeyEnumerator","features":[167]},{"name":"IKeyStore","features":[167]},{"name":"IModelIterator","features":[167]},{"name":"IModelKeyReference","features":[167]},{"name":"IModelKeyReference2","features":[167]},{"name":"IModelMethod","features":[167]},{"name":"IModelObject","features":[167]},{"name":"IModelPropertyAccessor","features":[167]},{"name":"INCORRECT_VERSION_INFO","features":[167]},{"name":"INLINE_FRAME_CONTEXT","features":[167]},{"name":"INSUFFICIENT_SPACE_TO_COPY","features":[167]},{"name":"IOSPACE","features":[167]},{"name":"IOSPACE32","features":[167]},{"name":"IOSPACE64","features":[167]},{"name":"IOSPACE_EX","features":[167]},{"name":"IOSPACE_EX32","features":[167]},{"name":"IOSPACE_EX64","features":[167]},{"name":"IPreferredRuntimeTypeConcept","features":[167]},{"name":"IRawEnumerator","features":[167]},{"name":"IStringDisplayableConcept","features":[167]},{"name":"Identical","features":[167]},{"name":"IntrinsicBool","features":[167]},{"name":"IntrinsicChar","features":[167]},{"name":"IntrinsicChar16","features":[167]},{"name":"IntrinsicChar32","features":[167]},{"name":"IntrinsicFloat","features":[167]},{"name":"IntrinsicHRESULT","features":[167]},{"name":"IntrinsicInt","features":[167]},{"name":"IntrinsicKind","features":[167]},{"name":"IntrinsicLong","features":[167]},{"name":"IntrinsicUInt","features":[167]},{"name":"IntrinsicULong","features":[167]},{"name":"IntrinsicVoid","features":[167]},{"name":"IntrinsicWChar","features":[167]},{"name":"KDDEBUGGER_DATA32","features":[167,9]},{"name":"KDDEBUGGER_DATA64","features":[167,9]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE","features":[3,167]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE_DEFINED","features":[167]},{"name":"KDEXTS_LOCK_INFO","features":[3,167]},{"name":"KDEXTS_PTE_INFO","features":[167]},{"name":"KDEXT_DUMP_HANDLE_CALLBACK","features":[3,167]},{"name":"KDEXT_FILELOCK_OWNER","features":[167]},{"name":"KDEXT_HANDLE_INFORMATION","features":[3,167]},{"name":"KDEXT_PROCESS_FIND_PARAMS","features":[167]},{"name":"KDEXT_THREAD_FIND_PARAMS","features":[167]},{"name":"KD_SECONDARY_VERSION_AMD64_CONTEXT","features":[167]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_1","features":[167]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_2","features":[167]},{"name":"KD_SECONDARY_VERSION_DEFAULT","features":[167]},{"name":"LanguageAssembly","features":[167]},{"name":"LanguageC","features":[167]},{"name":"LanguageCPP","features":[167]},{"name":"LanguageKind","features":[167]},{"name":"LanguageUnknown","features":[167]},{"name":"LessSpecific","features":[167]},{"name":"Location","features":[167]},{"name":"LocationConstant","features":[167]},{"name":"LocationKind","features":[167]},{"name":"LocationMember","features":[167]},{"name":"LocationNone","features":[167]},{"name":"LocationStatic","features":[167]},{"name":"MAX_STACK_IN_BYTES","features":[167]},{"name":"MEMORY_READ_ERROR","features":[167]},{"name":"MODULE_ORDERS_LOADTIME","features":[167]},{"name":"MODULE_ORDERS_MASK","features":[167]},{"name":"MODULE_ORDERS_MODULENAME","features":[167]},{"name":"ModelObjectKind","features":[167]},{"name":"MoreSpecific","features":[167]},{"name":"NO_TYPE","features":[167]},{"name":"NT_STATUS_CODE","features":[167]},{"name":"NULL_FIELD_NAME","features":[167]},{"name":"NULL_SYM_DUMP_PARAM","features":[167]},{"name":"OS_INFO","features":[167]},{"name":"OS_INFO_v1","features":[167]},{"name":"OS_TYPE","features":[167]},{"name":"ObjectContext","features":[167]},{"name":"ObjectError","features":[167]},{"name":"ObjectIntrinsic","features":[167]},{"name":"ObjectKeyReference","features":[167]},{"name":"ObjectMethod","features":[167]},{"name":"ObjectNoValue","features":[167]},{"name":"ObjectPropertyAccessor","features":[167]},{"name":"ObjectSynthetic","features":[167]},{"name":"ObjectTargetObject","features":[167]},{"name":"ObjectTargetObjectReference","features":[167]},{"name":"PDEBUG_EXTENSION_CALL","features":[167]},{"name":"PDEBUG_EXTENSION_CANUNLOAD","features":[167]},{"name":"PDEBUG_EXTENSION_INITIALIZE","features":[167]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT","features":[167]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT_EX","features":[167]},{"name":"PDEBUG_EXTENSION_NOTIFY","features":[167]},{"name":"PDEBUG_EXTENSION_PROVIDE_VALUE","features":[167]},{"name":"PDEBUG_EXTENSION_QUERY_VALUE_NAMES","features":[167]},{"name":"PDEBUG_EXTENSION_UNINITIALIZE","features":[167]},{"name":"PDEBUG_EXTENSION_UNLOAD","features":[167]},{"name":"PDEBUG_STACK_PROVIDER_BEGINTHREADSTACKRECONSTRUCTION","features":[167]},{"name":"PDEBUG_STACK_PROVIDER_ENDTHREADSTACKRECONSTRUCTION","features":[167]},{"name":"PDEBUG_STACK_PROVIDER_FREESTACKSYMFRAMES","features":[3,167]},{"name":"PDEBUG_STACK_PROVIDER_RECONSTRUCTSTACK","features":[3,167]},{"name":"PENUMERATE_HANDLES","features":[3,167]},{"name":"PENUMERATE_HASH_TABLE","features":[3,167]},{"name":"PENUMERATE_JOB_PROCESSES","features":[3,167]},{"name":"PENUMERATE_SYSTEM_LOCKS","features":[3,167]},{"name":"PFIND_FILELOCK_OWNERINFO","features":[167]},{"name":"PFIND_MATCHING_PROCESS","features":[167]},{"name":"PFIND_MATCHING_THREAD","features":[167]},{"name":"PGET_CPU_MICROCODE_VERSION","features":[167]},{"name":"PGET_CPU_PSPEED_INFO","features":[167]},{"name":"PGET_DEVICE_OBJECT_INFO","features":[3,167]},{"name":"PGET_DRIVER_OBJECT_INFO","features":[167]},{"name":"PGET_FULL_IMAGE_NAME","features":[167]},{"name":"PGET_IRP_INFO","features":[167]},{"name":"PGET_PNP_TRIAGE_INFO","features":[167]},{"name":"PGET_POOL_DATA","features":[167]},{"name":"PGET_POOL_REGION","features":[167]},{"name":"PGET_POOL_TAG_DESCRIPTION","features":[167]},{"name":"PGET_PROCESS_COMMIT","features":[167]},{"name":"PGET_SMBIOS_INFO","features":[167]},{"name":"PHYSICAL","features":[167]},{"name":"PHYSICAL_TO_VIRTUAL","features":[167]},{"name":"PHYSICAL_WITH_FLAGS","features":[167]},{"name":"PHYS_FLAG_CACHED","features":[167]},{"name":"PHYS_FLAG_DEFAULT","features":[167]},{"name":"PHYS_FLAG_UNCACHED","features":[167]},{"name":"PHYS_FLAG_WRITE_COMBINED","features":[167]},{"name":"PKDEXTS_GET_PTE_INFO","features":[167]},{"name":"POINTER_SEARCH_PHYSICAL","features":[167]},{"name":"PROCESSORINFO","features":[167]},{"name":"PROCESS_COMMIT_USAGE","features":[167]},{"name":"PROCESS_END","features":[167]},{"name":"PROCESS_NAME_ENTRY","features":[167]},{"name":"PSYM_DUMP_FIELD_CALLBACK","features":[167]},{"name":"PTR_SEARCH_NO_SYMBOL_CHECK","features":[167]},{"name":"PTR_SEARCH_PHYS_ALL_HITS","features":[167]},{"name":"PTR_SEARCH_PHYS_PTE","features":[167]},{"name":"PTR_SEARCH_PHYS_RANGE_CHECK_ONLY","features":[167]},{"name":"PTR_SEARCH_PHYS_SIZE_SHIFT","features":[167]},{"name":"PWINDBG_CHECK_CONTROL_C","features":[167]},{"name":"PWINDBG_CHECK_VERSION","features":[167]},{"name":"PWINDBG_DISASM","features":[167]},{"name":"PWINDBG_DISASM32","features":[167]},{"name":"PWINDBG_DISASM64","features":[167]},{"name":"PWINDBG_EXTENSION_API_VERSION","features":[167]},{"name":"PWINDBG_EXTENSION_DLL_INIT","features":[167,9]},{"name":"PWINDBG_EXTENSION_DLL_INIT32","features":[167,9]},{"name":"PWINDBG_EXTENSION_DLL_INIT64","features":[167,9]},{"name":"PWINDBG_EXTENSION_ROUTINE","features":[3,167]},{"name":"PWINDBG_EXTENSION_ROUTINE32","features":[3,167]},{"name":"PWINDBG_EXTENSION_ROUTINE64","features":[3,167]},{"name":"PWINDBG_GET_EXPRESSION","features":[167]},{"name":"PWINDBG_GET_EXPRESSION32","features":[167]},{"name":"PWINDBG_GET_EXPRESSION64","features":[167]},{"name":"PWINDBG_GET_SYMBOL","features":[167]},{"name":"PWINDBG_GET_SYMBOL32","features":[167]},{"name":"PWINDBG_GET_SYMBOL64","features":[167]},{"name":"PWINDBG_GET_THREAD_CONTEXT_ROUTINE","features":[167,9]},{"name":"PWINDBG_IOCTL_ROUTINE","features":[167]},{"name":"PWINDBG_OLDKD_EXTENSION_ROUTINE","features":[167]},{"name":"PWINDBG_OLDKD_READ_PHYSICAL_MEMORY","features":[167]},{"name":"PWINDBG_OLDKD_WRITE_PHYSICAL_MEMORY","features":[167]},{"name":"PWINDBG_OLD_EXTENSION_ROUTINE","features":[167,9]},{"name":"PWINDBG_OUTPUT_ROUTINE","features":[167]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE","features":[167]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE32","features":[167]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE64","features":[167]},{"name":"PWINDBG_SET_THREAD_CONTEXT_ROUTINE","features":[167,9]},{"name":"PWINDBG_STACKTRACE_ROUTINE","features":[167]},{"name":"PWINDBG_STACKTRACE_ROUTINE32","features":[167]},{"name":"PWINDBG_STACKTRACE_ROUTINE64","features":[167]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE","features":[167]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE32","features":[167]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE64","features":[167]},{"name":"PointerCXHat","features":[167]},{"name":"PointerKind","features":[167]},{"name":"PointerManagedReference","features":[167]},{"name":"PointerRValueReference","features":[167]},{"name":"PointerReference","features":[167]},{"name":"PointerStandard","features":[167]},{"name":"PreferredFormat","features":[167]},{"name":"READCONTROLSPACE","features":[167]},{"name":"READCONTROLSPACE32","features":[167]},{"name":"READCONTROLSPACE64","features":[167]},{"name":"READ_WRITE_MSR","features":[167]},{"name":"RawSearchFlags","features":[167]},{"name":"RawSearchNoBases","features":[167]},{"name":"RawSearchNone","features":[167]},{"name":"SEARCHMEMORY","features":[167]},{"name":"STACK_FRAME_TYPE_IGNORE","features":[167]},{"name":"STACK_FRAME_TYPE_INIT","features":[167]},{"name":"STACK_FRAME_TYPE_INLINE","features":[167]},{"name":"STACK_FRAME_TYPE_RA","features":[167]},{"name":"STACK_FRAME_TYPE_STACK","features":[167]},{"name":"STACK_SRC_INFO","features":[167]},{"name":"STACK_SYM_FRAME_INFO","features":[3,167]},{"name":"SYMBOL_INFO_EX","features":[167]},{"name":"SYMBOL_TYPE_INDEX_NOT_FOUND","features":[167]},{"name":"SYMBOL_TYPE_INFO_NOT_FOUND","features":[167]},{"name":"SYM_DUMP_PARAM","features":[167]},{"name":"ScriptChangeKind","features":[167]},{"name":"ScriptDebugAsyncBreak","features":[167]},{"name":"ScriptDebugBreak","features":[167]},{"name":"ScriptDebugBreakpoint","features":[167]},{"name":"ScriptDebugEvent","features":[167]},{"name":"ScriptDebugEventFilter","features":[167]},{"name":"ScriptDebugEventFilterAbort","features":[167]},{"name":"ScriptDebugEventFilterEntry","features":[167]},{"name":"ScriptDebugEventFilterException","features":[167]},{"name":"ScriptDebugEventFilterUnhandledException","features":[167]},{"name":"ScriptDebugEventInformation","features":[167]},{"name":"ScriptDebugException","features":[167]},{"name":"ScriptDebugExecuting","features":[167]},{"name":"ScriptDebugNoDebugger","features":[167]},{"name":"ScriptDebugNotExecuting","features":[167]},{"name":"ScriptDebugPosition","features":[167]},{"name":"ScriptDebugState","features":[167]},{"name":"ScriptDebugStep","features":[167]},{"name":"ScriptExecutionKind","features":[167]},{"name":"ScriptExecutionNormal","features":[167]},{"name":"ScriptExecutionStepIn","features":[167]},{"name":"ScriptExecutionStepOut","features":[167]},{"name":"ScriptExecutionStepOver","features":[167]},{"name":"ScriptRename","features":[167]},{"name":"SignatureComparison","features":[167]},{"name":"Symbol","features":[167]},{"name":"SymbolBaseClass","features":[167]},{"name":"SymbolConstant","features":[167]},{"name":"SymbolData","features":[167]},{"name":"SymbolField","features":[167]},{"name":"SymbolFunction","features":[167]},{"name":"SymbolKind","features":[167]},{"name":"SymbolModule","features":[167]},{"name":"SymbolPublic","features":[167]},{"name":"SymbolSearchCaseInsensitive","features":[167]},{"name":"SymbolSearchCompletion","features":[167]},{"name":"SymbolSearchNone","features":[167]},{"name":"SymbolSearchOptions","features":[167]},{"name":"SymbolType","features":[167]},{"name":"TANALYZE_RETURN","features":[167]},{"name":"TARGET_DEBUG_INFO","features":[167]},{"name":"TARGET_DEBUG_INFO_v1","features":[167]},{"name":"TARGET_DEBUG_INFO_v2","features":[167]},{"name":"TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[167]},{"name":"TRIAGE_FOLLOWUP_DEFAULT","features":[167]},{"name":"TRIAGE_FOLLOWUP_FAIL","features":[167]},{"name":"TRIAGE_FOLLOWUP_IGNORE","features":[167]},{"name":"TRIAGE_FOLLOWUP_SUCCESS","features":[167]},{"name":"TypeArray","features":[167]},{"name":"TypeEnum","features":[167]},{"name":"TypeExtendedArray","features":[167]},{"name":"TypeFunction","features":[167]},{"name":"TypeIntrinsic","features":[167]},{"name":"TypeKind","features":[167]},{"name":"TypeMemberPointer","features":[167]},{"name":"TypePointer","features":[167]},{"name":"TypeTypedef","features":[167]},{"name":"TypeUDT","features":[167]},{"name":"UNAVAILABLE_ERROR","features":[167]},{"name":"Unrelated","features":[167]},{"name":"VIRTUAL_TO_PHYSICAL","features":[167]},{"name":"VarArgsCStyle","features":[167]},{"name":"VarArgsKind","features":[167]},{"name":"VarArgsNone","features":[167]},{"name":"WDBGEXTS_ADDRESS_DEFAULT","features":[167]},{"name":"WDBGEXTS_ADDRESS_RESERVED0","features":[167]},{"name":"WDBGEXTS_ADDRESS_SEG16","features":[167]},{"name":"WDBGEXTS_ADDRESS_SEG32","features":[167]},{"name":"WDBGEXTS_CLR_DATA_INTERFACE","features":[167]},{"name":"WDBGEXTS_DISASSEMBLE_BUFFER","features":[167]},{"name":"WDBGEXTS_MODULE_IN_RANGE","features":[167]},{"name":"WDBGEXTS_QUERY_INTERFACE","features":[167]},{"name":"WDBGEXTS_THREAD_OS_INFO","features":[167]},{"name":"WINDBG_EXTENSION_APIS","features":[167,9]},{"name":"WINDBG_EXTENSION_APIS32","features":[167,9]},{"name":"WINDBG_EXTENSION_APIS64","features":[167,9]},{"name":"WINDBG_OLDKD_EXTENSION_APIS","features":[167]},{"name":"WINDBG_OLD_EXTENSION_APIS","features":[167]},{"name":"WIN_95","features":[167]},{"name":"WIN_98","features":[167]},{"name":"WIN_ME","features":[167]},{"name":"WIN_NT4","features":[167]},{"name":"WIN_NT5","features":[167]},{"name":"WIN_NT5_1","features":[167]},{"name":"WIN_NT5_2","features":[167]},{"name":"WIN_NT6_0","features":[167]},{"name":"WIN_NT6_1","features":[167]},{"name":"WIN_UNDEFINED","features":[167]},{"name":"XML_DRIVER_NODE_INFO","features":[167]},{"name":"_EXTSAPI_VER_","features":[167]},{"name":"fnDebugFailureAnalysisCreateInstance","features":[167]}],"558":[{"name":"ALPCGuid","features":[34]},{"name":"CLASSIC_EVENT_ID","features":[34]},{"name":"CLSID_TraceRelogger","features":[34]},{"name":"CONTROLTRACE_HANDLE","features":[34]},{"name":"CTraceRelogger","features":[34]},{"name":"CloseTrace","features":[3,34]},{"name":"ControlTraceA","features":[3,34]},{"name":"ControlTraceW","features":[3,34]},{"name":"CreateTraceInstanceId","features":[3,34]},{"name":"CveEventWrite","features":[34]},{"name":"DECODING_SOURCE","features":[34]},{"name":"DIAG_LOGGER_NAMEA","features":[34]},{"name":"DIAG_LOGGER_NAMEW","features":[34]},{"name":"DecodingSourceMax","features":[34]},{"name":"DecodingSourceTlg","features":[34]},{"name":"DecodingSourceWPP","features":[34]},{"name":"DecodingSourceWbem","features":[34]},{"name":"DecodingSourceXMLFile","features":[34]},{"name":"DefaultTraceSecurityGuid","features":[34]},{"name":"DiskIoGuid","features":[34]},{"name":"ENABLECALLBACK_ENABLED_STATE","features":[34]},{"name":"ENABLE_TRACE_PARAMETERS","features":[34]},{"name":"ENABLE_TRACE_PARAMETERS_V1","features":[34]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION","features":[34]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION_2","features":[34]},{"name":"ETW_ASCIICHAR_TYPE_VALUE","features":[34]},{"name":"ETW_ASCIISTRING_TYPE_VALUE","features":[34]},{"name":"ETW_BOOLEAN_TYPE_VALUE","features":[34]},{"name":"ETW_BOOL_TYPE_VALUE","features":[34]},{"name":"ETW_BUFFER_CALLBACK_INFORMATION","features":[3,34,166]},{"name":"ETW_BUFFER_CONTEXT","features":[34]},{"name":"ETW_BUFFER_HEADER","features":[34]},{"name":"ETW_BYTE_TYPE_VALUE","features":[34]},{"name":"ETW_CHAR_TYPE_VALUE","features":[34]},{"name":"ETW_COMPRESSION_RESUMPTION_MODE","features":[34]},{"name":"ETW_COUNTED_ANSISTRING_TYPE_VALUE","features":[34]},{"name":"ETW_COUNTED_STRING_TYPE_VALUE","features":[34]},{"name":"ETW_DATETIME_TYPE_VALUE","features":[34]},{"name":"ETW_DECIMAL_TYPE_VALUE","features":[34]},{"name":"ETW_DOUBLE_TYPE_VALUE","features":[34]},{"name":"ETW_GUID_TYPE_VALUE","features":[34]},{"name":"ETW_HIDDEN_TYPE_VALUE","features":[34]},{"name":"ETW_INT16_TYPE_VALUE","features":[34]},{"name":"ETW_INT32_TYPE_VALUE","features":[34]},{"name":"ETW_INT64_TYPE_VALUE","features":[34]},{"name":"ETW_NON_NULL_TERMINATED_STRING_TYPE_VALUE","features":[34]},{"name":"ETW_NULL_TYPE_VALUE","features":[34]},{"name":"ETW_OBJECT_TYPE_VALUE","features":[34]},{"name":"ETW_OPEN_TRACE_OPTIONS","features":[3,34,166]},{"name":"ETW_PMC_COUNTER_OWNER","features":[34]},{"name":"ETW_PMC_COUNTER_OWNERSHIP_STATUS","features":[34]},{"name":"ETW_PMC_COUNTER_OWNER_TYPE","features":[34]},{"name":"ETW_PMC_SESSION_INFO","features":[34]},{"name":"ETW_POINTER_TYPE_VALUE","features":[34]},{"name":"ETW_PROCESS_HANDLE_INFO_TYPE","features":[34]},{"name":"ETW_PROCESS_TRACE_MODES","features":[34]},{"name":"ETW_PROCESS_TRACE_MODE_NONE","features":[34]},{"name":"ETW_PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[34]},{"name":"ETW_PROVIDER_TRAIT_TYPE","features":[34]},{"name":"ETW_PTVECTOR_TYPE_VALUE","features":[34]},{"name":"ETW_REDUCED_ANSISTRING_TYPE_VALUE","features":[34]},{"name":"ETW_REDUCED_STRING_TYPE_VALUE","features":[34]},{"name":"ETW_REFRENCE_TYPE_VALUE","features":[34]},{"name":"ETW_REVERSED_COUNTED_ANSISTRING_TYPE_VALUE","features":[34]},{"name":"ETW_REVERSED_COUNTED_STRING_TYPE_VALUE","features":[34]},{"name":"ETW_SBYTE_TYPE_VALUE","features":[34]},{"name":"ETW_SID_TYPE_VALUE","features":[34]},{"name":"ETW_SINGLE_TYPE_VALUE","features":[34]},{"name":"ETW_SIZET_TYPE_VALUE","features":[34]},{"name":"ETW_STRING_TYPE_VALUE","features":[34]},{"name":"ETW_TRACE_PARTITION_INFORMATION","features":[34]},{"name":"ETW_TRACE_PARTITION_INFORMATION_V2","features":[34]},{"name":"ETW_UINT16_TYPE_VALUE","features":[34]},{"name":"ETW_UINT32_TYPE_VALUE","features":[34]},{"name":"ETW_UINT64_TYPE_VALUE","features":[34]},{"name":"ETW_VARIANT_TYPE_VALUE","features":[34]},{"name":"ETW_WMITIME_TYPE_VALUE","features":[34]},{"name":"EVENTMAP_ENTRY_VALUETYPE_STRING","features":[34]},{"name":"EVENTMAP_ENTRY_VALUETYPE_ULONG","features":[34]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_BITMAP","features":[34]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_PATTERNMAP","features":[34]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_VALUEMAP","features":[34]},{"name":"EVENTMAP_INFO_FLAG_WBEM_BITMAP","features":[34]},{"name":"EVENTMAP_INFO_FLAG_WBEM_FLAG","features":[34]},{"name":"EVENTMAP_INFO_FLAG_WBEM_NO_MAP","features":[34]},{"name":"EVENTMAP_INFO_FLAG_WBEM_VALUEMAP","features":[34]},{"name":"EVENTSECURITYOPERATION","features":[34]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_ID","features":[34]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_SET_ID","features":[34]},{"name":"EVENT_ACTIVITY_CTRL_GET_ID","features":[34]},{"name":"EVENT_ACTIVITY_CTRL_GET_SET_ID","features":[34]},{"name":"EVENT_ACTIVITY_CTRL_SET_ID","features":[34]},{"name":"EVENT_CONTROL_CODE_CAPTURE_STATE","features":[34]},{"name":"EVENT_CONTROL_CODE_DISABLE_PROVIDER","features":[34]},{"name":"EVENT_CONTROL_CODE_ENABLE_PROVIDER","features":[34]},{"name":"EVENT_DATA_DESCRIPTOR","features":[34]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_EVENT_METADATA","features":[34]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_NONE","features":[34]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_PROVIDER_METADATA","features":[34]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_TIMESTAMP_OVERRIDE","features":[34]},{"name":"EVENT_DESCRIPTOR","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_KEYWORD_0","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_SILOS","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_EVENT_KEY","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_EXCLUDE_INPRIVATE","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_IGNORE_KEYWORD_0","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_PROCESS_START_KEY","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_PROVIDER_GROUP","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_PSM_KEY","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_SID","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_SOURCE_CONTAINER_TRACKING","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_STACK_TRACE","features":[34]},{"name":"EVENT_ENABLE_PROPERTY_TS_ID","features":[34]},{"name":"EVENT_EXTENDED_ITEM_EVENT_KEY","features":[34]},{"name":"EVENT_EXTENDED_ITEM_INSTANCE","features":[34]},{"name":"EVENT_EXTENDED_ITEM_PEBS_INDEX","features":[34]},{"name":"EVENT_EXTENDED_ITEM_PMC_COUNTERS","features":[34]},{"name":"EVENT_EXTENDED_ITEM_PROCESS_START_KEY","features":[34]},{"name":"EVENT_EXTENDED_ITEM_RELATED_ACTIVITYID","features":[34]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY32","features":[34]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY64","features":[34]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE32","features":[34]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE64","features":[34]},{"name":"EVENT_EXTENDED_ITEM_TS_ID","features":[34]},{"name":"EVENT_FIELD_TYPE","features":[34]},{"name":"EVENT_FILTER_DESCRIPTOR","features":[34]},{"name":"EVENT_FILTER_EVENT_ID","features":[3,34]},{"name":"EVENT_FILTER_EVENT_NAME","features":[3,34]},{"name":"EVENT_FILTER_HEADER","features":[34]},{"name":"EVENT_FILTER_LEVEL_KW","features":[3,34]},{"name":"EVENT_FILTER_TYPE_CONTAINER","features":[34]},{"name":"EVENT_FILTER_TYPE_EVENT_ID","features":[34]},{"name":"EVENT_FILTER_TYPE_EVENT_NAME","features":[34]},{"name":"EVENT_FILTER_TYPE_EXECUTABLE_NAME","features":[34]},{"name":"EVENT_FILTER_TYPE_NONE","features":[34]},{"name":"EVENT_FILTER_TYPE_PACKAGE_APP_ID","features":[34]},{"name":"EVENT_FILTER_TYPE_PACKAGE_ID","features":[34]},{"name":"EVENT_FILTER_TYPE_PAYLOAD","features":[34]},{"name":"EVENT_FILTER_TYPE_PID","features":[34]},{"name":"EVENT_FILTER_TYPE_SCHEMATIZED","features":[34]},{"name":"EVENT_FILTER_TYPE_STACKWALK","features":[34]},{"name":"EVENT_FILTER_TYPE_STACKWALK_LEVEL_KW","features":[34]},{"name":"EVENT_FILTER_TYPE_STACKWALK_NAME","features":[34]},{"name":"EVENT_FILTER_TYPE_SYSTEM_FLAGS","features":[34]},{"name":"EVENT_FILTER_TYPE_TRACEHANDLE","features":[34]},{"name":"EVENT_HEADER","features":[34]},{"name":"EVENT_HEADER_EXTENDED_DATA_ITEM","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_CONTAINER_ID","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_CONTROL_GUID","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_KEY","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_SCHEMA_TL","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_INSTANCE_INFO","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_MAX","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_PEBS_INDEX","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_PMC_COUNTERS","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_PROCESS_START_KEY","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_PROV_TRAITS","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_PSM_KEY","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_QPC_DELTA","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_RELATED_ACTIVITYID","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_SID","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY32","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY64","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE32","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE64","features":[34]},{"name":"EVENT_HEADER_EXT_TYPE_TS_ID","features":[34]},{"name":"EVENT_HEADER_FLAG_32_BIT_HEADER","features":[34]},{"name":"EVENT_HEADER_FLAG_64_BIT_HEADER","features":[34]},{"name":"EVENT_HEADER_FLAG_CLASSIC_HEADER","features":[34]},{"name":"EVENT_HEADER_FLAG_DECODE_GUID","features":[34]},{"name":"EVENT_HEADER_FLAG_EXTENDED_INFO","features":[34]},{"name":"EVENT_HEADER_FLAG_NO_CPUTIME","features":[34]},{"name":"EVENT_HEADER_FLAG_PRIVATE_SESSION","features":[34]},{"name":"EVENT_HEADER_FLAG_PROCESSOR_INDEX","features":[34]},{"name":"EVENT_HEADER_FLAG_STRING_ONLY","features":[34]},{"name":"EVENT_HEADER_FLAG_TRACE_MESSAGE","features":[34]},{"name":"EVENT_HEADER_PROPERTY_FORWARDED_XML","features":[34]},{"name":"EVENT_HEADER_PROPERTY_LEGACY_EVENTLOG","features":[34]},{"name":"EVENT_HEADER_PROPERTY_RELOGGABLE","features":[34]},{"name":"EVENT_HEADER_PROPERTY_XML","features":[34]},{"name":"EVENT_INFO_CLASS","features":[34]},{"name":"EVENT_INSTANCE_HEADER","features":[34]},{"name":"EVENT_INSTANCE_INFO","features":[3,34]},{"name":"EVENT_LOGGER_NAME","features":[34]},{"name":"EVENT_LOGGER_NAMEA","features":[34]},{"name":"EVENT_LOGGER_NAMEW","features":[34]},{"name":"EVENT_MAP_ENTRY","features":[34]},{"name":"EVENT_MAP_INFO","features":[34]},{"name":"EVENT_MAX_LEVEL","features":[34]},{"name":"EVENT_MIN_LEVEL","features":[34]},{"name":"EVENT_PROPERTY_INFO","features":[34]},{"name":"EVENT_RECORD","features":[34]},{"name":"EVENT_TRACE","features":[34]},{"name":"EVENT_TRACE_ADDTO_TRIAGE_DUMP","features":[34]},{"name":"EVENT_TRACE_ADD_HEADER_MODE","features":[34]},{"name":"EVENT_TRACE_BUFFERING_MODE","features":[34]},{"name":"EVENT_TRACE_COMPRESSED_MODE","features":[34]},{"name":"EVENT_TRACE_CONTROL","features":[34]},{"name":"EVENT_TRACE_CONTROL_CONVERT_TO_REALTIME","features":[34]},{"name":"EVENT_TRACE_CONTROL_FLUSH","features":[34]},{"name":"EVENT_TRACE_CONTROL_INCREMENT_FILE","features":[34]},{"name":"EVENT_TRACE_CONTROL_QUERY","features":[34]},{"name":"EVENT_TRACE_CONTROL_STOP","features":[34]},{"name":"EVENT_TRACE_CONTROL_UPDATE","features":[34]},{"name":"EVENT_TRACE_DELAY_OPEN_FILE_MODE","features":[34]},{"name":"EVENT_TRACE_FILE_MODE_APPEND","features":[34]},{"name":"EVENT_TRACE_FILE_MODE_CIRCULAR","features":[34]},{"name":"EVENT_TRACE_FILE_MODE_NEWFILE","features":[34]},{"name":"EVENT_TRACE_FILE_MODE_NONE","features":[34]},{"name":"EVENT_TRACE_FILE_MODE_PREALLOCATE","features":[34]},{"name":"EVENT_TRACE_FILE_MODE_SEQUENTIAL","features":[34]},{"name":"EVENT_TRACE_FLAG","features":[34]},{"name":"EVENT_TRACE_FLAG_ALPC","features":[34]},{"name":"EVENT_TRACE_FLAG_CSWITCH","features":[34]},{"name":"EVENT_TRACE_FLAG_DBGPRINT","features":[34]},{"name":"EVENT_TRACE_FLAG_DEBUG_EVENTS","features":[34]},{"name":"EVENT_TRACE_FLAG_DISK_FILE_IO","features":[34]},{"name":"EVENT_TRACE_FLAG_DISK_IO","features":[34]},{"name":"EVENT_TRACE_FLAG_DISK_IO_INIT","features":[34]},{"name":"EVENT_TRACE_FLAG_DISPATCHER","features":[34]},{"name":"EVENT_TRACE_FLAG_DPC","features":[34]},{"name":"EVENT_TRACE_FLAG_DRIVER","features":[34]},{"name":"EVENT_TRACE_FLAG_ENABLE_RESERVE","features":[34]},{"name":"EVENT_TRACE_FLAG_EXTENSION","features":[34]},{"name":"EVENT_TRACE_FLAG_FILE_IO","features":[34]},{"name":"EVENT_TRACE_FLAG_FILE_IO_INIT","features":[34]},{"name":"EVENT_TRACE_FLAG_FORWARD_WMI","features":[34]},{"name":"EVENT_TRACE_FLAG_IMAGE_LOAD","features":[34]},{"name":"EVENT_TRACE_FLAG_INTERRUPT","features":[34]},{"name":"EVENT_TRACE_FLAG_JOB","features":[34]},{"name":"EVENT_TRACE_FLAG_MEMORY_HARD_FAULTS","features":[34]},{"name":"EVENT_TRACE_FLAG_MEMORY_PAGE_FAULTS","features":[34]},{"name":"EVENT_TRACE_FLAG_NETWORK_TCPIP","features":[34]},{"name":"EVENT_TRACE_FLAG_NO_SYSCONFIG","features":[34]},{"name":"EVENT_TRACE_FLAG_PROCESS","features":[34]},{"name":"EVENT_TRACE_FLAG_PROCESS_COUNTERS","features":[34]},{"name":"EVENT_TRACE_FLAG_PROFILE","features":[34]},{"name":"EVENT_TRACE_FLAG_REGISTRY","features":[34]},{"name":"EVENT_TRACE_FLAG_SPLIT_IO","features":[34]},{"name":"EVENT_TRACE_FLAG_SYSTEMCALL","features":[34]},{"name":"EVENT_TRACE_FLAG_THREAD","features":[34]},{"name":"EVENT_TRACE_FLAG_VAMAP","features":[34]},{"name":"EVENT_TRACE_FLAG_VIRTUAL_ALLOC","features":[34]},{"name":"EVENT_TRACE_HEADER","features":[34]},{"name":"EVENT_TRACE_INDEPENDENT_SESSION_MODE","features":[34]},{"name":"EVENT_TRACE_LOGFILEA","features":[3,34,166]},{"name":"EVENT_TRACE_LOGFILEW","features":[3,34,166]},{"name":"EVENT_TRACE_MODE_RESERVED","features":[34]},{"name":"EVENT_TRACE_NONSTOPPABLE_MODE","features":[34]},{"name":"EVENT_TRACE_NO_PER_PROCESSOR_BUFFERING","features":[34]},{"name":"EVENT_TRACE_PERSIST_ON_HYBRID_SHUTDOWN","features":[34]},{"name":"EVENT_TRACE_PRIVATE_IN_PROC","features":[34]},{"name":"EVENT_TRACE_PRIVATE_LOGGER_MODE","features":[34]},{"name":"EVENT_TRACE_PROPERTIES","features":[3,34]},{"name":"EVENT_TRACE_PROPERTIES_V2","features":[3,34]},{"name":"EVENT_TRACE_REAL_TIME_MODE","features":[34]},{"name":"EVENT_TRACE_RELOG_MODE","features":[34]},{"name":"EVENT_TRACE_SECURE_MODE","features":[34]},{"name":"EVENT_TRACE_STOP_ON_HYBRID_SHUTDOWN","features":[34]},{"name":"EVENT_TRACE_SYSTEM_LOGGER_MODE","features":[34]},{"name":"EVENT_TRACE_TYPE_ACCEPT","features":[34]},{"name":"EVENT_TRACE_TYPE_ACKDUP","features":[34]},{"name":"EVENT_TRACE_TYPE_ACKFULL","features":[34]},{"name":"EVENT_TRACE_TYPE_ACKPART","features":[34]},{"name":"EVENT_TRACE_TYPE_CHECKPOINT","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_BOOT","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_CI_INFO","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_CPU","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEFRAG","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEVICEFAMILY","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_DPI","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_FLIGHTID","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_IDECHANNEL","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_IRQ","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_LOGICALDISK","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_MACHINEID","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_MOBILEPLATFORM","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_NETINFO","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_NIC","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_NUMANODE","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_OPTICALMEDIA","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK_EX","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_PLATFORM","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_PNP","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_POWER","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSOR","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORGROUP","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORNUMBER","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_SERVICES","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIDEO","features":[34]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIRTUALIZATION","features":[34]},{"name":"EVENT_TRACE_TYPE_CONNECT","features":[34]},{"name":"EVENT_TRACE_TYPE_CONNFAIL","features":[34]},{"name":"EVENT_TRACE_TYPE_COPY_ARP","features":[34]},{"name":"EVENT_TRACE_TYPE_COPY_TCP","features":[34]},{"name":"EVENT_TRACE_TYPE_DBGID_RSDS","features":[34]},{"name":"EVENT_TRACE_TYPE_DC_END","features":[34]},{"name":"EVENT_TRACE_TYPE_DC_START","features":[34]},{"name":"EVENT_TRACE_TYPE_DEQUEUE","features":[34]},{"name":"EVENT_TRACE_TYPE_DISCONNECT","features":[34]},{"name":"EVENT_TRACE_TYPE_END","features":[34]},{"name":"EVENT_TRACE_TYPE_EXTENSION","features":[34]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_COMPLETION","features":[34]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_FAILURE","features":[34]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_COMPLETION","features":[34]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_FAILURE","features":[34]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_GUIDMAP","features":[34]},{"name":"EVENT_TRACE_TYPE_INFO","features":[34]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH","features":[34]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_IO_READ","features":[34]},{"name":"EVENT_TRACE_TYPE_IO_READ_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_IO_REDIRECTED_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_IO_WRITE","features":[34]},{"name":"EVENT_TRACE_TYPE_IO_WRITE_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_LOAD","features":[34]},{"name":"EVENT_TRACE_TYPE_MM_AV","features":[34]},{"name":"EVENT_TRACE_TYPE_MM_COW","features":[34]},{"name":"EVENT_TRACE_TYPE_MM_DZF","features":[34]},{"name":"EVENT_TRACE_TYPE_MM_GPF","features":[34]},{"name":"EVENT_TRACE_TYPE_MM_HPF","features":[34]},{"name":"EVENT_TRACE_TYPE_MM_TF","features":[34]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH","features":[34]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ","features":[34]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE","features":[34]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE_INIT","features":[34]},{"name":"EVENT_TRACE_TYPE_RECEIVE","features":[34]},{"name":"EVENT_TRACE_TYPE_RECONNECT","features":[34]},{"name":"EVENT_TRACE_TYPE_REGCLOSE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGCOMMIT","features":[34]},{"name":"EVENT_TRACE_TYPE_REGCREATE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGDELETE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGDELETEVALUE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEKEY","features":[34]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEVALUEKEY","features":[34]},{"name":"EVENT_TRACE_TYPE_REGFLUSH","features":[34]},{"name":"EVENT_TRACE_TYPE_REGKCBCREATE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGKCBDELETE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNBEGIN","features":[34]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNEND","features":[34]},{"name":"EVENT_TRACE_TYPE_REGMOUNTHIVE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGOPEN","features":[34]},{"name":"EVENT_TRACE_TYPE_REGPREPARE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGQUERY","features":[34]},{"name":"EVENT_TRACE_TYPE_REGQUERYMULTIPLEVALUE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGQUERYSECURITY","features":[34]},{"name":"EVENT_TRACE_TYPE_REGQUERYVALUE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGROLLBACK","features":[34]},{"name":"EVENT_TRACE_TYPE_REGSETINFORMATION","features":[34]},{"name":"EVENT_TRACE_TYPE_REGSETSECURITY","features":[34]},{"name":"EVENT_TRACE_TYPE_REGSETVALUE","features":[34]},{"name":"EVENT_TRACE_TYPE_REGVIRTUALIZE","features":[34]},{"name":"EVENT_TRACE_TYPE_REPLY","features":[34]},{"name":"EVENT_TRACE_TYPE_RESUME","features":[34]},{"name":"EVENT_TRACE_TYPE_RETRANSMIT","features":[34]},{"name":"EVENT_TRACE_TYPE_SECURITY","features":[34]},{"name":"EVENT_TRACE_TYPE_SEND","features":[34]},{"name":"EVENT_TRACE_TYPE_SIDINFO","features":[34]},{"name":"EVENT_TRACE_TYPE_START","features":[34]},{"name":"EVENT_TRACE_TYPE_STOP","features":[34]},{"name":"EVENT_TRACE_TYPE_SUSPEND","features":[34]},{"name":"EVENT_TRACE_TYPE_TERMINATE","features":[34]},{"name":"EVENT_TRACE_TYPE_WINEVT_RECEIVE","features":[34]},{"name":"EVENT_TRACE_TYPE_WINEVT_SEND","features":[34]},{"name":"EVENT_TRACE_USE_GLOBAL_SEQUENCE","features":[34]},{"name":"EVENT_TRACE_USE_KBYTES_FOR_SIZE","features":[34]},{"name":"EVENT_TRACE_USE_LOCAL_SEQUENCE","features":[34]},{"name":"EVENT_TRACE_USE_NOCPUTIME","features":[34]},{"name":"EVENT_TRACE_USE_PAGED_MEMORY","features":[34]},{"name":"EVENT_TRACE_USE_PROCTIME","features":[34]},{"name":"EVENT_WRITE_FLAG_INPRIVATE","features":[34]},{"name":"EVENT_WRITE_FLAG_NO_FAULTING","features":[34]},{"name":"EnableTrace","features":[3,34]},{"name":"EnableTraceEx","features":[3,34]},{"name":"EnableTraceEx2","features":[3,34]},{"name":"EnumerateTraceGuids","features":[3,34]},{"name":"EnumerateTraceGuidsEx","features":[3,34]},{"name":"EtwCompressionModeNoDisable","features":[34]},{"name":"EtwCompressionModeNoRestart","features":[34]},{"name":"EtwCompressionModeRestart","features":[34]},{"name":"EtwPmcOwnerFree","features":[34]},{"name":"EtwPmcOwnerTagged","features":[34]},{"name":"EtwPmcOwnerTaggedWithSource","features":[34]},{"name":"EtwPmcOwnerUntagged","features":[34]},{"name":"EtwProviderTraitDecodeGuid","features":[34]},{"name":"EtwProviderTraitTypeGroup","features":[34]},{"name":"EtwProviderTraitTypeMax","features":[34]},{"name":"EtwQueryLastDroppedTimes","features":[34]},{"name":"EtwQueryLogFileHeader","features":[34]},{"name":"EtwQueryPartitionInformation","features":[34]},{"name":"EtwQueryPartitionInformationV2","features":[34]},{"name":"EtwQueryProcessHandleInfoMax","features":[34]},{"name":"EventAccessControl","features":[3,6,34]},{"name":"EventAccessQuery","features":[6,34]},{"name":"EventAccessRemove","features":[34]},{"name":"EventActivityIdControl","features":[34]},{"name":"EventChannelInformation","features":[34]},{"name":"EventEnabled","features":[3,34]},{"name":"EventInformationMax","features":[34]},{"name":"EventKeywordInformation","features":[34]},{"name":"EventLevelInformation","features":[34]},{"name":"EventOpcodeInformation","features":[34]},{"name":"EventProviderBinaryTrackInfo","features":[34]},{"name":"EventProviderEnabled","features":[3,34]},{"name":"EventProviderSetReserved1","features":[34]},{"name":"EventProviderSetTraits","features":[34]},{"name":"EventProviderUseDescriptorType","features":[34]},{"name":"EventRegister","features":[34]},{"name":"EventSecurityAddDACL","features":[34]},{"name":"EventSecurityAddSACL","features":[34]},{"name":"EventSecurityMax","features":[34]},{"name":"EventSecuritySetDACL","features":[34]},{"name":"EventSecuritySetSACL","features":[34]},{"name":"EventSetInformation","features":[34]},{"name":"EventTaskInformation","features":[34]},{"name":"EventTraceConfigGuid","features":[34]},{"name":"EventTraceGuid","features":[34]},{"name":"EventUnregister","features":[34]},{"name":"EventWrite","features":[34]},{"name":"EventWriteEx","features":[34]},{"name":"EventWriteString","features":[34]},{"name":"EventWriteTransfer","features":[34]},{"name":"FileIoGuid","features":[34]},{"name":"FlushTraceA","features":[3,34]},{"name":"FlushTraceW","features":[3,34]},{"name":"GLOBAL_LOGGER_NAME","features":[34]},{"name":"GLOBAL_LOGGER_NAMEA","features":[34]},{"name":"GLOBAL_LOGGER_NAMEW","features":[34]},{"name":"GetTraceEnableFlags","features":[34]},{"name":"GetTraceEnableLevel","features":[34]},{"name":"GetTraceLoggerHandle","features":[34]},{"name":"ITraceEvent","features":[34]},{"name":"ITraceEventCallback","features":[34]},{"name":"ITraceRelogger","features":[34]},{"name":"ImageLoadGuid","features":[34]},{"name":"KERNEL_LOGGER_NAME","features":[34]},{"name":"KERNEL_LOGGER_NAMEA","features":[34]},{"name":"KERNEL_LOGGER_NAMEW","features":[34]},{"name":"MAP_FLAGS","features":[34]},{"name":"MAP_VALUETYPE","features":[34]},{"name":"MAX_EVENT_DATA_DESCRIPTORS","features":[34]},{"name":"MAX_EVENT_FILTERS_COUNT","features":[34]},{"name":"MAX_EVENT_FILTER_DATA_SIZE","features":[34]},{"name":"MAX_EVENT_FILTER_EVENT_ID_COUNT","features":[34]},{"name":"MAX_EVENT_FILTER_EVENT_NAME_SIZE","features":[34]},{"name":"MAX_EVENT_FILTER_PAYLOAD_SIZE","features":[34]},{"name":"MAX_EVENT_FILTER_PID_COUNT","features":[34]},{"name":"MAX_MOF_FIELDS","features":[34]},{"name":"MAX_PAYLOAD_PREDICATES","features":[34]},{"name":"MOF_FIELD","features":[34]},{"name":"MaxEventInfo","features":[34]},{"name":"MaxTraceSetInfoClass","features":[34]},{"name":"OFFSETINSTANCEDATAANDLENGTH","features":[34]},{"name":"OpenTraceA","features":[3,34,166]},{"name":"OpenTraceFromBufferStream","features":[3,34,166]},{"name":"OpenTraceFromFile","features":[3,34,166]},{"name":"OpenTraceFromRealTimeLogger","features":[3,34,166]},{"name":"OpenTraceFromRealTimeLoggerWithAllocationOptions","features":[3,34,166]},{"name":"OpenTraceW","features":[3,34,166]},{"name":"PAYLOADFIELD_BETWEEN","features":[34]},{"name":"PAYLOADFIELD_CONTAINS","features":[34]},{"name":"PAYLOADFIELD_DOESNTCONTAIN","features":[34]},{"name":"PAYLOADFIELD_EQ","features":[34]},{"name":"PAYLOADFIELD_GE","features":[34]},{"name":"PAYLOADFIELD_GT","features":[34]},{"name":"PAYLOADFIELD_INVALID","features":[34]},{"name":"PAYLOADFIELD_IS","features":[34]},{"name":"PAYLOADFIELD_ISNOT","features":[34]},{"name":"PAYLOADFIELD_LE","features":[34]},{"name":"PAYLOADFIELD_LT","features":[34]},{"name":"PAYLOADFIELD_MODULO","features":[34]},{"name":"PAYLOADFIELD_NE","features":[34]},{"name":"PAYLOADFIELD_NOTBETWEEN","features":[34]},{"name":"PAYLOAD_FILTER_PREDICATE","features":[34]},{"name":"PAYLOAD_OPERATOR","features":[34]},{"name":"PENABLECALLBACK","features":[34]},{"name":"PETW_BUFFER_CALLBACK","features":[3,34,166]},{"name":"PETW_BUFFER_COMPLETION_CALLBACK","features":[34]},{"name":"PEVENT_CALLBACK","features":[34]},{"name":"PEVENT_RECORD_CALLBACK","features":[34]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKA","features":[3,34,166]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKW","features":[3,34,166]},{"name":"PROCESSTRACE_HANDLE","features":[34]},{"name":"PROCESS_TRACE_MODE_EVENT_RECORD","features":[34]},{"name":"PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[34]},{"name":"PROCESS_TRACE_MODE_REAL_TIME","features":[34]},{"name":"PROFILE_SOURCE_INFO","features":[34]},{"name":"PROPERTY_DATA_DESCRIPTOR","features":[34]},{"name":"PROPERTY_FLAGS","features":[34]},{"name":"PROVIDER_ENUMERATION_INFO","features":[34]},{"name":"PROVIDER_EVENT_INFO","features":[34]},{"name":"PROVIDER_FIELD_INFO","features":[34]},{"name":"PROVIDER_FIELD_INFOARRAY","features":[34]},{"name":"PROVIDER_FILTER_INFO","features":[34]},{"name":"PageFaultGuid","features":[34]},{"name":"PerfInfoGuid","features":[34]},{"name":"PrivateLoggerNotificationGuid","features":[34]},{"name":"ProcessGuid","features":[34]},{"name":"ProcessTrace","features":[3,34]},{"name":"ProcessTraceAddBufferToBufferStream","features":[34]},{"name":"ProcessTraceBufferDecrementReference","features":[34]},{"name":"ProcessTraceBufferIncrementReference","features":[34]},{"name":"PropertyHasCustomSchema","features":[34]},{"name":"PropertyHasTags","features":[34]},{"name":"PropertyParamCount","features":[34]},{"name":"PropertyParamFixedCount","features":[34]},{"name":"PropertyParamFixedLength","features":[34]},{"name":"PropertyParamLength","features":[34]},{"name":"PropertyStruct","features":[34]},{"name":"PropertyWBEMXmlFragment","features":[34]},{"name":"QueryAllTracesA","features":[3,34]},{"name":"QueryAllTracesW","features":[3,34]},{"name":"QueryTraceA","features":[3,34]},{"name":"QueryTraceProcessingHandle","features":[3,34]},{"name":"QueryTraceW","features":[3,34]},{"name":"REGHANDLE","features":[34]},{"name":"RELOGSTREAM_HANDLE","features":[34]},{"name":"RegisterTraceGuidsA","features":[3,34]},{"name":"RegisterTraceGuidsW","features":[3,34]},{"name":"RegistryGuid","features":[34]},{"name":"RemoveTraceCallback","features":[3,34]},{"name":"SYSTEM_ALPC_KW_GENERAL","features":[34]},{"name":"SYSTEM_CONFIG_KW_GRAPHICS","features":[34]},{"name":"SYSTEM_CONFIG_KW_NETWORK","features":[34]},{"name":"SYSTEM_CONFIG_KW_OPTICAL","features":[34]},{"name":"SYSTEM_CONFIG_KW_PNP","features":[34]},{"name":"SYSTEM_CONFIG_KW_SERVICES","features":[34]},{"name":"SYSTEM_CONFIG_KW_STORAGE","features":[34]},{"name":"SYSTEM_CONFIG_KW_SYSTEM","features":[34]},{"name":"SYSTEM_CPU_KW_CACHE_FLUSH","features":[34]},{"name":"SYSTEM_CPU_KW_CONFIG","features":[34]},{"name":"SYSTEM_CPU_KW_SPEC_CONTROL","features":[34]},{"name":"SYSTEM_EVENT_TYPE","features":[34]},{"name":"SYSTEM_HYPERVISOR_KW_CALLOUTS","features":[34]},{"name":"SYSTEM_HYPERVISOR_KW_PROFILE","features":[34]},{"name":"SYSTEM_HYPERVISOR_KW_VTL_CHANGE","features":[34]},{"name":"SYSTEM_INTERRUPT_KW_CLOCK_INTERRUPT","features":[34]},{"name":"SYSTEM_INTERRUPT_KW_DPC","features":[34]},{"name":"SYSTEM_INTERRUPT_KW_DPC_QUEUE","features":[34]},{"name":"SYSTEM_INTERRUPT_KW_GENERAL","features":[34]},{"name":"SYSTEM_INTERRUPT_KW_IPI","features":[34]},{"name":"SYSTEM_INTERRUPT_KW_WDF_DPC","features":[34]},{"name":"SYSTEM_INTERRUPT_KW_WDF_INTERRUPT","features":[34]},{"name":"SYSTEM_IOFILTER_KW_FAILURE","features":[34]},{"name":"SYSTEM_IOFILTER_KW_FASTIO","features":[34]},{"name":"SYSTEM_IOFILTER_KW_GENERAL","features":[34]},{"name":"SYSTEM_IOFILTER_KW_INIT","features":[34]},{"name":"SYSTEM_IO_KW_CC","features":[34]},{"name":"SYSTEM_IO_KW_DISK","features":[34]},{"name":"SYSTEM_IO_KW_DISK_INIT","features":[34]},{"name":"SYSTEM_IO_KW_DRIVERS","features":[34]},{"name":"SYSTEM_IO_KW_FILE","features":[34]},{"name":"SYSTEM_IO_KW_FILENAME","features":[34]},{"name":"SYSTEM_IO_KW_NETWORK","features":[34]},{"name":"SYSTEM_IO_KW_OPTICAL","features":[34]},{"name":"SYSTEM_IO_KW_OPTICAL_INIT","features":[34]},{"name":"SYSTEM_IO_KW_SPLIT","features":[34]},{"name":"SYSTEM_LOCK_KW_SPINLOCK","features":[34]},{"name":"SYSTEM_LOCK_KW_SPINLOCK_COUNTERS","features":[34]},{"name":"SYSTEM_LOCK_KW_SYNC_OBJECTS","features":[34]},{"name":"SYSTEM_MEMORY_KW_ALL_FAULTS","features":[34]},{"name":"SYSTEM_MEMORY_KW_CONTMEM_GEN","features":[34]},{"name":"SYSTEM_MEMORY_KW_FOOTPRINT","features":[34]},{"name":"SYSTEM_MEMORY_KW_GENERAL","features":[34]},{"name":"SYSTEM_MEMORY_KW_HARD_FAULTS","features":[34]},{"name":"SYSTEM_MEMORY_KW_HEAP","features":[34]},{"name":"SYSTEM_MEMORY_KW_MEMINFO","features":[34]},{"name":"SYSTEM_MEMORY_KW_MEMINFO_WS","features":[34]},{"name":"SYSTEM_MEMORY_KW_NONTRADEABLE","features":[34]},{"name":"SYSTEM_MEMORY_KW_PFSECTION","features":[34]},{"name":"SYSTEM_MEMORY_KW_POOL","features":[34]},{"name":"SYSTEM_MEMORY_KW_REFSET","features":[34]},{"name":"SYSTEM_MEMORY_KW_SESSION","features":[34]},{"name":"SYSTEM_MEMORY_KW_VAMAP","features":[34]},{"name":"SYSTEM_MEMORY_KW_VIRTUAL_ALLOC","features":[34]},{"name":"SYSTEM_MEMORY_KW_WS","features":[34]},{"name":"SYSTEM_MEMORY_POOL_FILTER_ID","features":[34]},{"name":"SYSTEM_OBJECT_KW_GENERAL","features":[34]},{"name":"SYSTEM_OBJECT_KW_HANDLE","features":[34]},{"name":"SYSTEM_POWER_KW_GENERAL","features":[34]},{"name":"SYSTEM_POWER_KW_HIBER_RUNDOWN","features":[34]},{"name":"SYSTEM_POWER_KW_IDLE_SELECTION","features":[34]},{"name":"SYSTEM_POWER_KW_PPM_EXIT_LATENCY","features":[34]},{"name":"SYSTEM_POWER_KW_PROCESSOR_IDLE","features":[34]},{"name":"SYSTEM_PROCESS_KW_DBGPRINT","features":[34]},{"name":"SYSTEM_PROCESS_KW_DEBUG_EVENTS","features":[34]},{"name":"SYSTEM_PROCESS_KW_FREEZE","features":[34]},{"name":"SYSTEM_PROCESS_KW_GENERAL","features":[34]},{"name":"SYSTEM_PROCESS_KW_INSWAP","features":[34]},{"name":"SYSTEM_PROCESS_KW_JOB","features":[34]},{"name":"SYSTEM_PROCESS_KW_LOADER","features":[34]},{"name":"SYSTEM_PROCESS_KW_PERF_COUNTER","features":[34]},{"name":"SYSTEM_PROCESS_KW_THREAD","features":[34]},{"name":"SYSTEM_PROCESS_KW_WAKE_COUNTER","features":[34]},{"name":"SYSTEM_PROCESS_KW_WAKE_DROP","features":[34]},{"name":"SYSTEM_PROCESS_KW_WAKE_EVENT","features":[34]},{"name":"SYSTEM_PROCESS_KW_WORKER_THREAD","features":[34]},{"name":"SYSTEM_PROFILE_KW_GENERAL","features":[34]},{"name":"SYSTEM_PROFILE_KW_PMC_PROFILE","features":[34]},{"name":"SYSTEM_REGISTRY_KW_GENERAL","features":[34]},{"name":"SYSTEM_REGISTRY_KW_HIVE","features":[34]},{"name":"SYSTEM_REGISTRY_KW_NOTIFICATION","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_AFFINITY","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_ANTI_STARVATION","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_COMPACT_CSWITCH","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_CONTEXT_SWITCH","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_DISPATCHER","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_IDEAL_PROCESSOR","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_KERNEL_QUEUE","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_LOAD_BALANCER","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_PRIORITY","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_SHOULD_YIELD","features":[34]},{"name":"SYSTEM_SCHEDULER_KW_XSCHEDULER","features":[34]},{"name":"SYSTEM_SYSCALL_KW_GENERAL","features":[34]},{"name":"SYSTEM_TIMER_KW_CLOCK_TIMER","features":[34]},{"name":"SYSTEM_TIMER_KW_GENERAL","features":[34]},{"name":"SetTraceCallback","features":[3,34]},{"name":"SplitIoGuid","features":[34]},{"name":"StartTraceA","features":[3,34]},{"name":"StartTraceW","features":[3,34]},{"name":"StopTraceA","features":[3,34]},{"name":"StopTraceW","features":[3,34]},{"name":"SystemAlpcProviderGuid","features":[34]},{"name":"SystemConfigProviderGuid","features":[34]},{"name":"SystemCpuProviderGuid","features":[34]},{"name":"SystemHypervisorProviderGuid","features":[34]},{"name":"SystemInterruptProviderGuid","features":[34]},{"name":"SystemIoFilterProviderGuid","features":[34]},{"name":"SystemIoProviderGuid","features":[34]},{"name":"SystemLockProviderGuid","features":[34]},{"name":"SystemMemoryProviderGuid","features":[34]},{"name":"SystemObjectProviderGuid","features":[34]},{"name":"SystemPowerProviderGuid","features":[34]},{"name":"SystemProcessProviderGuid","features":[34]},{"name":"SystemProfileProviderGuid","features":[34]},{"name":"SystemRegistryProviderGuid","features":[34]},{"name":"SystemSchedulerProviderGuid","features":[34]},{"name":"SystemSyscallProviderGuid","features":[34]},{"name":"SystemTimerProviderGuid","features":[34]},{"name":"SystemTraceControlGuid","features":[34]},{"name":"TDH_CONTEXT","features":[34]},{"name":"TDH_CONTEXT_MAXIMUM","features":[34]},{"name":"TDH_CONTEXT_PDB_PATH","features":[34]},{"name":"TDH_CONTEXT_POINTERSIZE","features":[34]},{"name":"TDH_CONTEXT_TYPE","features":[34]},{"name":"TDH_CONTEXT_WPP_GMT","features":[34]},{"name":"TDH_CONTEXT_WPP_TMFFILE","features":[34]},{"name":"TDH_CONTEXT_WPP_TMFSEARCHPATH","features":[34]},{"name":"TDH_HANDLE","features":[34]},{"name":"TDH_INTYPE_ANSICHAR","features":[34]},{"name":"TDH_INTYPE_ANSISTRING","features":[34]},{"name":"TDH_INTYPE_BINARY","features":[34]},{"name":"TDH_INTYPE_BOOLEAN","features":[34]},{"name":"TDH_INTYPE_COUNTEDANSISTRING","features":[34]},{"name":"TDH_INTYPE_COUNTEDSTRING","features":[34]},{"name":"TDH_INTYPE_DOUBLE","features":[34]},{"name":"TDH_INTYPE_FILETIME","features":[34]},{"name":"TDH_INTYPE_FLOAT","features":[34]},{"name":"TDH_INTYPE_GUID","features":[34]},{"name":"TDH_INTYPE_HEXDUMP","features":[34]},{"name":"TDH_INTYPE_HEXINT32","features":[34]},{"name":"TDH_INTYPE_HEXINT64","features":[34]},{"name":"TDH_INTYPE_INT16","features":[34]},{"name":"TDH_INTYPE_INT32","features":[34]},{"name":"TDH_INTYPE_INT64","features":[34]},{"name":"TDH_INTYPE_INT8","features":[34]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDANSISTRING","features":[34]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDBINARY","features":[34]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDSTRING","features":[34]},{"name":"TDH_INTYPE_NONNULLTERMINATEDANSISTRING","features":[34]},{"name":"TDH_INTYPE_NONNULLTERMINATEDSTRING","features":[34]},{"name":"TDH_INTYPE_NULL","features":[34]},{"name":"TDH_INTYPE_POINTER","features":[34]},{"name":"TDH_INTYPE_RESERVED24","features":[34]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDANSISTRING","features":[34]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDSTRING","features":[34]},{"name":"TDH_INTYPE_SID","features":[34]},{"name":"TDH_INTYPE_SIZET","features":[34]},{"name":"TDH_INTYPE_SYSTEMTIME","features":[34]},{"name":"TDH_INTYPE_UINT16","features":[34]},{"name":"TDH_INTYPE_UINT32","features":[34]},{"name":"TDH_INTYPE_UINT64","features":[34]},{"name":"TDH_INTYPE_UINT8","features":[34]},{"name":"TDH_INTYPE_UNICODECHAR","features":[34]},{"name":"TDH_INTYPE_UNICODESTRING","features":[34]},{"name":"TDH_INTYPE_WBEMSID","features":[34]},{"name":"TDH_OUTTYPE_BOOLEAN","features":[34]},{"name":"TDH_OUTTYPE_BYTE","features":[34]},{"name":"TDH_OUTTYPE_CIMDATETIME","features":[34]},{"name":"TDH_OUTTYPE_CODE_POINTER","features":[34]},{"name":"TDH_OUTTYPE_CULTURE_INSENSITIVE_DATETIME","features":[34]},{"name":"TDH_OUTTYPE_DATETIME","features":[34]},{"name":"TDH_OUTTYPE_DATETIME_UTC","features":[34]},{"name":"TDH_OUTTYPE_DOUBLE","features":[34]},{"name":"TDH_OUTTYPE_ERRORCODE","features":[34]},{"name":"TDH_OUTTYPE_ETWTIME","features":[34]},{"name":"TDH_OUTTYPE_FLOAT","features":[34]},{"name":"TDH_OUTTYPE_GUID","features":[34]},{"name":"TDH_OUTTYPE_HEXBINARY","features":[34]},{"name":"TDH_OUTTYPE_HEXINT16","features":[34]},{"name":"TDH_OUTTYPE_HEXINT32","features":[34]},{"name":"TDH_OUTTYPE_HEXINT64","features":[34]},{"name":"TDH_OUTTYPE_HEXINT8","features":[34]},{"name":"TDH_OUTTYPE_HRESULT","features":[34]},{"name":"TDH_OUTTYPE_INT","features":[34]},{"name":"TDH_OUTTYPE_IPV4","features":[34]},{"name":"TDH_OUTTYPE_IPV6","features":[34]},{"name":"TDH_OUTTYPE_JSON","features":[34]},{"name":"TDH_OUTTYPE_LONG","features":[34]},{"name":"TDH_OUTTYPE_NOPRINT","features":[34]},{"name":"TDH_OUTTYPE_NTSTATUS","features":[34]},{"name":"TDH_OUTTYPE_NULL","features":[34]},{"name":"TDH_OUTTYPE_PID","features":[34]},{"name":"TDH_OUTTYPE_PKCS7_WITH_TYPE_INFO","features":[34]},{"name":"TDH_OUTTYPE_PORT","features":[34]},{"name":"TDH_OUTTYPE_REDUCEDSTRING","features":[34]},{"name":"TDH_OUTTYPE_SHORT","features":[34]},{"name":"TDH_OUTTYPE_SOCKETADDRESS","features":[34]},{"name":"TDH_OUTTYPE_STRING","features":[34]},{"name":"TDH_OUTTYPE_TID","features":[34]},{"name":"TDH_OUTTYPE_UNSIGNEDBYTE","features":[34]},{"name":"TDH_OUTTYPE_UNSIGNEDINT","features":[34]},{"name":"TDH_OUTTYPE_UNSIGNEDLONG","features":[34]},{"name":"TDH_OUTTYPE_UNSIGNEDSHORT","features":[34]},{"name":"TDH_OUTTYPE_UTF8","features":[34]},{"name":"TDH_OUTTYPE_WIN32ERROR","features":[34]},{"name":"TDH_OUTTYPE_XML","features":[34]},{"name":"TEMPLATE_CONTROL_GUID","features":[34]},{"name":"TEMPLATE_EVENT_DATA","features":[34]},{"name":"TEMPLATE_FLAGS","features":[34]},{"name":"TEMPLATE_USER_DATA","features":[34]},{"name":"TRACELOG_ACCESS_KERNEL_LOGGER","features":[34]},{"name":"TRACELOG_ACCESS_REALTIME","features":[34]},{"name":"TRACELOG_CREATE_INPROC","features":[34]},{"name":"TRACELOG_CREATE_ONDISK","features":[34]},{"name":"TRACELOG_CREATE_REALTIME","features":[34]},{"name":"TRACELOG_GUID_ENABLE","features":[34]},{"name":"TRACELOG_JOIN_GROUP","features":[34]},{"name":"TRACELOG_LOG_EVENT","features":[34]},{"name":"TRACELOG_REGISTER_GUIDS","features":[34]},{"name":"TRACE_ENABLE_INFO","features":[34]},{"name":"TRACE_EVENT_INFO","features":[34]},{"name":"TRACE_GUID_INFO","features":[34]},{"name":"TRACE_GUID_PROPERTIES","features":[3,34]},{"name":"TRACE_GUID_REGISTRATION","features":[3,34]},{"name":"TRACE_HEADER_FLAG_LOG_WNODE","features":[34]},{"name":"TRACE_HEADER_FLAG_TRACED_GUID","features":[34]},{"name":"TRACE_HEADER_FLAG_USE_GUID_PTR","features":[34]},{"name":"TRACE_HEADER_FLAG_USE_MOF_PTR","features":[34]},{"name":"TRACE_HEADER_FLAG_USE_TIMESTAMP","features":[34]},{"name":"TRACE_LEVEL_CRITICAL","features":[34]},{"name":"TRACE_LEVEL_ERROR","features":[34]},{"name":"TRACE_LEVEL_FATAL","features":[34]},{"name":"TRACE_LEVEL_INFORMATION","features":[34]},{"name":"TRACE_LEVEL_NONE","features":[34]},{"name":"TRACE_LEVEL_RESERVED6","features":[34]},{"name":"TRACE_LEVEL_RESERVED7","features":[34]},{"name":"TRACE_LEVEL_RESERVED8","features":[34]},{"name":"TRACE_LEVEL_RESERVED9","features":[34]},{"name":"TRACE_LEVEL_VERBOSE","features":[34]},{"name":"TRACE_LEVEL_WARNING","features":[34]},{"name":"TRACE_LOGFILE_HEADER","features":[3,34,166]},{"name":"TRACE_LOGFILE_HEADER32","features":[3,34,166]},{"name":"TRACE_LOGFILE_HEADER64","features":[3,34,166]},{"name":"TRACE_MESSAGE_COMPONENTID","features":[34]},{"name":"TRACE_MESSAGE_FLAGS","features":[34]},{"name":"TRACE_MESSAGE_FLAG_MASK","features":[34]},{"name":"TRACE_MESSAGE_GUID","features":[34]},{"name":"TRACE_MESSAGE_PERFORMANCE_TIMESTAMP","features":[34]},{"name":"TRACE_MESSAGE_POINTER32","features":[34]},{"name":"TRACE_MESSAGE_POINTER64","features":[34]},{"name":"TRACE_MESSAGE_SEQUENCE","features":[34]},{"name":"TRACE_MESSAGE_SYSTEMINFO","features":[34]},{"name":"TRACE_MESSAGE_TIMESTAMP","features":[34]},{"name":"TRACE_PERIODIC_CAPTURE_STATE_INFO","features":[34]},{"name":"TRACE_PROFILE_INTERVAL","features":[34]},{"name":"TRACE_PROVIDER_FLAG_LEGACY","features":[34]},{"name":"TRACE_PROVIDER_FLAG_PRE_ENABLE","features":[34]},{"name":"TRACE_PROVIDER_INFO","features":[34]},{"name":"TRACE_PROVIDER_INSTANCE_INFO","features":[34]},{"name":"TRACE_QUERY_INFO_CLASS","features":[34]},{"name":"TRACE_STACK_CACHING_INFO","features":[3,34]},{"name":"TRACE_VERSION_INFO","features":[34]},{"name":"TcpIpGuid","features":[34]},{"name":"TdhAggregatePayloadFilters","features":[3,34]},{"name":"TdhCleanupPayloadEventFilterDescriptor","features":[34]},{"name":"TdhCloseDecodingHandle","features":[34]},{"name":"TdhCreatePayloadFilter","features":[3,34]},{"name":"TdhDeletePayloadFilter","features":[34]},{"name":"TdhEnumerateManifestProviderEvents","features":[34]},{"name":"TdhEnumerateProviderFieldInformation","features":[34]},{"name":"TdhEnumerateProviderFilters","features":[34]},{"name":"TdhEnumerateProviders","features":[34]},{"name":"TdhEnumerateProvidersForDecodingSource","features":[34]},{"name":"TdhFormatProperty","features":[34]},{"name":"TdhGetDecodingParameter","features":[34]},{"name":"TdhGetEventInformation","features":[34]},{"name":"TdhGetEventMapInformation","features":[34]},{"name":"TdhGetManifestEventInformation","features":[34]},{"name":"TdhGetProperty","features":[34]},{"name":"TdhGetPropertySize","features":[34]},{"name":"TdhGetWppMessage","features":[34]},{"name":"TdhGetWppProperty","features":[34]},{"name":"TdhLoadManifest","features":[34]},{"name":"TdhLoadManifestFromBinary","features":[34]},{"name":"TdhLoadManifestFromMemory","features":[34]},{"name":"TdhOpenDecodingHandle","features":[34]},{"name":"TdhQueryProviderFieldInformation","features":[34]},{"name":"TdhSetDecodingParameter","features":[34]},{"name":"TdhUnloadManifest","features":[34]},{"name":"TdhUnloadManifestFromMemory","features":[34]},{"name":"ThreadGuid","features":[34]},{"name":"TraceDisallowListQuery","features":[34]},{"name":"TraceEvent","features":[3,34]},{"name":"TraceEventInstance","features":[3,34]},{"name":"TraceGroupQueryInfo","features":[34]},{"name":"TraceGroupQueryList","features":[34]},{"name":"TraceGuidQueryInfo","features":[34]},{"name":"TraceGuidQueryList","features":[34]},{"name":"TraceGuidQueryProcess","features":[34]},{"name":"TraceInfoReserved15","features":[34]},{"name":"TraceLbrConfigurationInfo","features":[34]},{"name":"TraceLbrEventListInfo","features":[34]},{"name":"TraceMaxLoggersQuery","features":[34]},{"name":"TraceMaxPmcCounterQuery","features":[34]},{"name":"TraceMessage","features":[3,34]},{"name":"TraceMessageVa","features":[3,34]},{"name":"TracePeriodicCaptureStateInfo","features":[34]},{"name":"TracePeriodicCaptureStateListInfo","features":[34]},{"name":"TracePmcCounterListInfo","features":[34]},{"name":"TracePmcCounterOwners","features":[34]},{"name":"TracePmcEventListInfo","features":[34]},{"name":"TracePmcSessionInformation","features":[34]},{"name":"TraceProfileSourceConfigInfo","features":[34]},{"name":"TraceProfileSourceListInfo","features":[34]},{"name":"TraceProviderBinaryTracking","features":[34]},{"name":"TraceQueryInformation","features":[3,34]},{"name":"TraceSampledProfileIntervalInfo","features":[34]},{"name":"TraceSetDisallowList","features":[34]},{"name":"TraceSetInformation","features":[3,34]},{"name":"TraceStackCachingInfo","features":[34]},{"name":"TraceStackTracingInfo","features":[34]},{"name":"TraceStreamCount","features":[34]},{"name":"TraceSystemTraceEnableFlagsInfo","features":[34]},{"name":"TraceUnifiedStackCachingInfo","features":[34]},{"name":"TraceVersionInfo","features":[34]},{"name":"UdpIpGuid","features":[34]},{"name":"UnregisterTraceGuids","features":[34]},{"name":"UpdateTraceA","features":[3,34]},{"name":"UpdateTraceW","features":[3,34]},{"name":"WMIDPREQUEST","features":[34]},{"name":"WMIDPREQUESTCODE","features":[34]},{"name":"WMIGUID_EXECUTE","features":[34]},{"name":"WMIGUID_NOTIFICATION","features":[34]},{"name":"WMIGUID_QUERY","features":[34]},{"name":"WMIGUID_READ_DESCRIPTION","features":[34]},{"name":"WMIGUID_SET","features":[34]},{"name":"WMIREGGUIDW","features":[34]},{"name":"WMIREGINFOW","features":[34]},{"name":"WMIREG_FLAG_EVENT_ONLY_GUID","features":[34]},{"name":"WMIREG_FLAG_EXPENSIVE","features":[34]},{"name":"WMIREG_FLAG_INSTANCE_BASENAME","features":[34]},{"name":"WMIREG_FLAG_INSTANCE_LIST","features":[34]},{"name":"WMIREG_FLAG_INSTANCE_PDO","features":[34]},{"name":"WMIREG_FLAG_REMOVE_GUID","features":[34]},{"name":"WMIREG_FLAG_RESERVED1","features":[34]},{"name":"WMIREG_FLAG_RESERVED2","features":[34]},{"name":"WMIREG_FLAG_TRACED_GUID","features":[34]},{"name":"WMIREG_FLAG_TRACE_CONTROL_GUID","features":[34]},{"name":"WMI_CAPTURE_STATE","features":[34]},{"name":"WMI_DISABLE_COLLECTION","features":[34]},{"name":"WMI_DISABLE_EVENTS","features":[34]},{"name":"WMI_ENABLE_COLLECTION","features":[34]},{"name":"WMI_ENABLE_EVENTS","features":[34]},{"name":"WMI_EXECUTE_METHOD","features":[34]},{"name":"WMI_GET_ALL_DATA","features":[34]},{"name":"WMI_GET_SINGLE_INSTANCE","features":[34]},{"name":"WMI_GLOBAL_LOGGER_ID","features":[34]},{"name":"WMI_GUIDTYPE_DATA","features":[34]},{"name":"WMI_GUIDTYPE_EVENT","features":[34]},{"name":"WMI_GUIDTYPE_TRACE","features":[34]},{"name":"WMI_GUIDTYPE_TRACECONTROL","features":[34]},{"name":"WMI_REGINFO","features":[34]},{"name":"WMI_SET_SINGLE_INSTANCE","features":[34]},{"name":"WMI_SET_SINGLE_ITEM","features":[34]},{"name":"WNODE_ALL_DATA","features":[3,34]},{"name":"WNODE_EVENT_ITEM","features":[3,34]},{"name":"WNODE_EVENT_REFERENCE","features":[3,34]},{"name":"WNODE_FLAG_ALL_DATA","features":[34]},{"name":"WNODE_FLAG_ANSI_INSTANCENAMES","features":[34]},{"name":"WNODE_FLAG_EVENT_ITEM","features":[34]},{"name":"WNODE_FLAG_EVENT_REFERENCE","features":[34]},{"name":"WNODE_FLAG_FIXED_INSTANCE_SIZE","features":[34]},{"name":"WNODE_FLAG_INSTANCES_SAME","features":[34]},{"name":"WNODE_FLAG_INTERNAL","features":[34]},{"name":"WNODE_FLAG_LOG_WNODE","features":[34]},{"name":"WNODE_FLAG_METHOD_ITEM","features":[34]},{"name":"WNODE_FLAG_NO_HEADER","features":[34]},{"name":"WNODE_FLAG_PDO_INSTANCE_NAMES","features":[34]},{"name":"WNODE_FLAG_PERSIST_EVENT","features":[34]},{"name":"WNODE_FLAG_SEND_DATA_BLOCK","features":[34]},{"name":"WNODE_FLAG_SEVERITY_MASK","features":[34]},{"name":"WNODE_FLAG_SINGLE_INSTANCE","features":[34]},{"name":"WNODE_FLAG_SINGLE_ITEM","features":[34]},{"name":"WNODE_FLAG_STATIC_INSTANCE_NAMES","features":[34]},{"name":"WNODE_FLAG_TOO_SMALL","features":[34]},{"name":"WNODE_FLAG_TRACED_GUID","features":[34]},{"name":"WNODE_FLAG_USE_GUID_PTR","features":[34]},{"name":"WNODE_FLAG_USE_MOF_PTR","features":[34]},{"name":"WNODE_FLAG_USE_TIMESTAMP","features":[34]},{"name":"WNODE_FLAG_VERSIONED_PROPERTIES","features":[34]},{"name":"WNODE_HEADER","features":[3,34]},{"name":"WNODE_METHOD_ITEM","features":[3,34]},{"name":"WNODE_SINGLE_INSTANCE","features":[3,34]},{"name":"WNODE_SINGLE_ITEM","features":[3,34]},{"name":"WNODE_TOO_SMALL","features":[3,34]},{"name":"_TDH_IN_TYPE","features":[34]},{"name":"_TDH_OUT_TYPE","features":[34]}],"559":[{"name":"HPSS","features":[168]},{"name":"HPSSWALK","features":[168]},{"name":"PSS_ALLOCATOR","features":[168]},{"name":"PSS_AUXILIARY_PAGES_INFORMATION","features":[168]},{"name":"PSS_AUXILIARY_PAGE_ENTRY","features":[3,168,22]},{"name":"PSS_CAPTURE_FLAGS","features":[168]},{"name":"PSS_CAPTURE_HANDLES","features":[168]},{"name":"PSS_CAPTURE_HANDLE_BASIC_INFORMATION","features":[168]},{"name":"PSS_CAPTURE_HANDLE_NAME_INFORMATION","features":[168]},{"name":"PSS_CAPTURE_HANDLE_TRACE","features":[168]},{"name":"PSS_CAPTURE_HANDLE_TYPE_SPECIFIC_INFORMATION","features":[168]},{"name":"PSS_CAPTURE_IPT_TRACE","features":[168]},{"name":"PSS_CAPTURE_NONE","features":[168]},{"name":"PSS_CAPTURE_RESERVED_00000002","features":[168]},{"name":"PSS_CAPTURE_RESERVED_00000400","features":[168]},{"name":"PSS_CAPTURE_RESERVED_00004000","features":[168]},{"name":"PSS_CAPTURE_THREADS","features":[168]},{"name":"PSS_CAPTURE_THREAD_CONTEXT","features":[168]},{"name":"PSS_CAPTURE_THREAD_CONTEXT_EXTENDED","features":[168]},{"name":"PSS_CAPTURE_VA_CLONE","features":[168]},{"name":"PSS_CAPTURE_VA_SPACE","features":[168]},{"name":"PSS_CAPTURE_VA_SPACE_SECTION_INFORMATION","features":[168]},{"name":"PSS_CREATE_BREAKAWAY","features":[168]},{"name":"PSS_CREATE_BREAKAWAY_OPTIONAL","features":[168]},{"name":"PSS_CREATE_FORCE_BREAKAWAY","features":[168]},{"name":"PSS_CREATE_MEASURE_PERFORMANCE","features":[168]},{"name":"PSS_CREATE_RELEASE_SECTION","features":[168]},{"name":"PSS_CREATE_USE_VM_ALLOCATIONS","features":[168]},{"name":"PSS_DUPLICATE_CLOSE_SOURCE","features":[168]},{"name":"PSS_DUPLICATE_FLAGS","features":[168]},{"name":"PSS_DUPLICATE_NONE","features":[168]},{"name":"PSS_HANDLE_ENTRY","features":[3,168]},{"name":"PSS_HANDLE_FLAGS","features":[168]},{"name":"PSS_HANDLE_HAVE_BASIC_INFORMATION","features":[168]},{"name":"PSS_HANDLE_HAVE_NAME","features":[168]},{"name":"PSS_HANDLE_HAVE_TYPE","features":[168]},{"name":"PSS_HANDLE_HAVE_TYPE_SPECIFIC_INFORMATION","features":[168]},{"name":"PSS_HANDLE_INFORMATION","features":[168]},{"name":"PSS_HANDLE_NONE","features":[168]},{"name":"PSS_HANDLE_TRACE_INFORMATION","features":[3,168]},{"name":"PSS_OBJECT_TYPE","features":[168]},{"name":"PSS_OBJECT_TYPE_EVENT","features":[168]},{"name":"PSS_OBJECT_TYPE_MUTANT","features":[168]},{"name":"PSS_OBJECT_TYPE_PROCESS","features":[168]},{"name":"PSS_OBJECT_TYPE_SECTION","features":[168]},{"name":"PSS_OBJECT_TYPE_SEMAPHORE","features":[168]},{"name":"PSS_OBJECT_TYPE_THREAD","features":[168]},{"name":"PSS_OBJECT_TYPE_UNKNOWN","features":[168]},{"name":"PSS_PERFORMANCE_COUNTERS","features":[168]},{"name":"PSS_PERF_RESOLUTION","features":[168]},{"name":"PSS_PROCESS_FLAGS","features":[168]},{"name":"PSS_PROCESS_FLAGS_FROZEN","features":[168]},{"name":"PSS_PROCESS_FLAGS_NONE","features":[168]},{"name":"PSS_PROCESS_FLAGS_PROTECTED","features":[168]},{"name":"PSS_PROCESS_FLAGS_RESERVED_03","features":[168]},{"name":"PSS_PROCESS_FLAGS_RESERVED_04","features":[168]},{"name":"PSS_PROCESS_FLAGS_WOW64","features":[168]},{"name":"PSS_PROCESS_INFORMATION","features":[3,168]},{"name":"PSS_QUERY_AUXILIARY_PAGES_INFORMATION","features":[168]},{"name":"PSS_QUERY_HANDLE_INFORMATION","features":[168]},{"name":"PSS_QUERY_HANDLE_TRACE_INFORMATION","features":[168]},{"name":"PSS_QUERY_INFORMATION_CLASS","features":[168]},{"name":"PSS_QUERY_PERFORMANCE_COUNTERS","features":[168]},{"name":"PSS_QUERY_PROCESS_INFORMATION","features":[168]},{"name":"PSS_QUERY_THREAD_INFORMATION","features":[168]},{"name":"PSS_QUERY_VA_CLONE_INFORMATION","features":[168]},{"name":"PSS_QUERY_VA_SPACE_INFORMATION","features":[168]},{"name":"PSS_THREAD_ENTRY","features":[3,33,168,9]},{"name":"PSS_THREAD_FLAGS","features":[168]},{"name":"PSS_THREAD_FLAGS_NONE","features":[168]},{"name":"PSS_THREAD_FLAGS_TERMINATED","features":[168]},{"name":"PSS_THREAD_INFORMATION","features":[168]},{"name":"PSS_VA_CLONE_INFORMATION","features":[3,168]},{"name":"PSS_VA_SPACE_ENTRY","features":[168]},{"name":"PSS_VA_SPACE_INFORMATION","features":[168]},{"name":"PSS_WALK_AUXILIARY_PAGES","features":[168]},{"name":"PSS_WALK_HANDLES","features":[168]},{"name":"PSS_WALK_INFORMATION_CLASS","features":[168]},{"name":"PSS_WALK_THREADS","features":[168]},{"name":"PSS_WALK_VA_SPACE","features":[168]},{"name":"PssCaptureSnapshot","features":[3,168]},{"name":"PssDuplicateSnapshot","features":[3,168]},{"name":"PssFreeSnapshot","features":[3,168]},{"name":"PssQuerySnapshot","features":[168]},{"name":"PssWalkMarkerCreate","features":[168]},{"name":"PssWalkMarkerFree","features":[168]},{"name":"PssWalkMarkerGetPosition","features":[168]},{"name":"PssWalkMarkerSeekToBeginning","features":[168]},{"name":"PssWalkMarkerSetPosition","features":[168]},{"name":"PssWalkSnapshot","features":[168]}],"560":[{"name":"CREATE_TOOLHELP_SNAPSHOT_FLAGS","features":[169]},{"name":"CreateToolhelp32Snapshot","features":[3,169]},{"name":"HEAPENTRY32","features":[3,169]},{"name":"HEAPENTRY32_FLAGS","features":[169]},{"name":"HEAPLIST32","features":[169]},{"name":"HF32_DEFAULT","features":[169]},{"name":"HF32_SHARED","features":[169]},{"name":"Heap32First","features":[3,169]},{"name":"Heap32ListFirst","features":[3,169]},{"name":"Heap32ListNext","features":[3,169]},{"name":"Heap32Next","features":[3,169]},{"name":"LF32_FIXED","features":[169]},{"name":"LF32_FREE","features":[169]},{"name":"LF32_MOVEABLE","features":[169]},{"name":"MAX_MODULE_NAME32","features":[169]},{"name":"MODULEENTRY32","features":[3,169]},{"name":"MODULEENTRY32W","features":[3,169]},{"name":"Module32First","features":[3,169]},{"name":"Module32FirstW","features":[3,169]},{"name":"Module32Next","features":[3,169]},{"name":"Module32NextW","features":[3,169]},{"name":"PROCESSENTRY32","features":[169]},{"name":"PROCESSENTRY32W","features":[169]},{"name":"Process32First","features":[3,169]},{"name":"Process32FirstW","features":[3,169]},{"name":"Process32Next","features":[3,169]},{"name":"Process32NextW","features":[3,169]},{"name":"TH32CS_INHERIT","features":[169]},{"name":"TH32CS_SNAPALL","features":[169]},{"name":"TH32CS_SNAPHEAPLIST","features":[169]},{"name":"TH32CS_SNAPMODULE","features":[169]},{"name":"TH32CS_SNAPMODULE32","features":[169]},{"name":"TH32CS_SNAPPROCESS","features":[169]},{"name":"TH32CS_SNAPTHREAD","features":[169]},{"name":"THREADENTRY32","features":[169]},{"name":"Thread32First","features":[3,169]},{"name":"Thread32Next","features":[3,169]},{"name":"Toolhelp32ReadProcessMemory","features":[3,169]}],"561":[{"name":"MSG_category_Devices","features":[170]},{"name":"MSG_category_Disk","features":[170]},{"name":"MSG_category_Network","features":[170]},{"name":"MSG_category_Printers","features":[170]},{"name":"MSG_category_Services","features":[170]},{"name":"MSG_category_Shell","features":[170]},{"name":"MSG_category_SystemEvent","features":[170]},{"name":"MSG_channel_Application","features":[170]},{"name":"MSG_channel_ProviderMetadata","features":[170]},{"name":"MSG_channel_Security","features":[170]},{"name":"MSG_channel_System","features":[170]},{"name":"MSG_channel_TraceClassic","features":[170]},{"name":"MSG_channel_TraceLogging","features":[170]},{"name":"MSG_keyword_AnyKeyword","features":[170]},{"name":"MSG_keyword_AuditFailure","features":[170]},{"name":"MSG_keyword_AuditSuccess","features":[170]},{"name":"MSG_keyword_Classic","features":[170]},{"name":"MSG_keyword_CorrelationHint","features":[170]},{"name":"MSG_keyword_ResponseTime","features":[170]},{"name":"MSG_keyword_SQM","features":[170]},{"name":"MSG_keyword_WDIDiag","features":[170]},{"name":"MSG_level_Critical","features":[170]},{"name":"MSG_level_Error","features":[170]},{"name":"MSG_level_Informational","features":[170]},{"name":"MSG_level_LogAlways","features":[170]},{"name":"MSG_level_Verbose","features":[170]},{"name":"MSG_level_Warning","features":[170]},{"name":"MSG_opcode_DCStart","features":[170]},{"name":"MSG_opcode_DCStop","features":[170]},{"name":"MSG_opcode_Extension","features":[170]},{"name":"MSG_opcode_Info","features":[170]},{"name":"MSG_opcode_Receive","features":[170]},{"name":"MSG_opcode_Reply","features":[170]},{"name":"MSG_opcode_Resume","features":[170]},{"name":"MSG_opcode_Send","features":[170]},{"name":"MSG_opcode_Start","features":[170]},{"name":"MSG_opcode_Stop","features":[170]},{"name":"MSG_opcode_Suspend","features":[170]},{"name":"MSG_task_None","features":[170]},{"name":"WINEVENT_CHANNEL_CLASSIC_TRACE","features":[170]},{"name":"WINEVENT_CHANNEL_GLOBAL_APPLICATION","features":[170]},{"name":"WINEVENT_CHANNEL_GLOBAL_SECURITY","features":[170]},{"name":"WINEVENT_CHANNEL_GLOBAL_SYSTEM","features":[170]},{"name":"WINEVENT_CHANNEL_PROVIDERMETADATA","features":[170]},{"name":"WINEVENT_CHANNEL_TRACELOGGING","features":[170]},{"name":"WINEVENT_KEYWORD_AUDIT_FAILURE","features":[170]},{"name":"WINEVENT_KEYWORD_AUDIT_SUCCESS","features":[170]},{"name":"WINEVENT_KEYWORD_CORRELATION_HINT","features":[170]},{"name":"WINEVENT_KEYWORD_EVENTLOG_CLASSIC","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_49","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_56","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_57","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_58","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_59","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_60","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_61","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_62","features":[170]},{"name":"WINEVENT_KEYWORD_RESERVED_63","features":[170]},{"name":"WINEVENT_KEYWORD_RESPONSE_TIME","features":[170]},{"name":"WINEVENT_KEYWORD_SQM","features":[170]},{"name":"WINEVENT_KEYWORD_WDI_DIAG","features":[170]},{"name":"WINEVENT_LEVEL_CRITICAL","features":[170]},{"name":"WINEVENT_LEVEL_ERROR","features":[170]},{"name":"WINEVENT_LEVEL_INFO","features":[170]},{"name":"WINEVENT_LEVEL_LOG_ALWAYS","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_10","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_11","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_12","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_13","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_14","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_15","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_6","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_7","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_8","features":[170]},{"name":"WINEVENT_LEVEL_RESERVED_9","features":[170]},{"name":"WINEVENT_LEVEL_VERBOSE","features":[170]},{"name":"WINEVENT_LEVEL_WARNING","features":[170]},{"name":"WINEVENT_OPCODE_DC_START","features":[170]},{"name":"WINEVENT_OPCODE_DC_STOP","features":[170]},{"name":"WINEVENT_OPCODE_EXTENSION","features":[170]},{"name":"WINEVENT_OPCODE_INFO","features":[170]},{"name":"WINEVENT_OPCODE_RECEIVE","features":[170]},{"name":"WINEVENT_OPCODE_REPLY","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_241","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_242","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_243","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_244","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_245","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_246","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_247","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_248","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_249","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_250","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_251","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_252","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_253","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_254","features":[170]},{"name":"WINEVENT_OPCODE_RESERVED_255","features":[170]},{"name":"WINEVENT_OPCODE_RESUME","features":[170]},{"name":"WINEVENT_OPCODE_SEND","features":[170]},{"name":"WINEVENT_OPCODE_START","features":[170]},{"name":"WINEVENT_OPCODE_STOP","features":[170]},{"name":"WINEVENT_OPCODE_SUSPEND","features":[170]},{"name":"WINEVENT_TASK_NONE","features":[170]},{"name":"WINEVT_KEYWORD_ANY","features":[170]}],"562":[{"name":"APPLICATIONTYPE","features":[171]},{"name":"AUTHENTICATION_LEVEL","features":[171]},{"name":"BOID","features":[171]},{"name":"CLSID_MSDtcTransaction","features":[171]},{"name":"CLSID_MSDtcTransactionManager","features":[171]},{"name":"CLUSTERRESOURCE_APPLICATIONTYPE","features":[171]},{"name":"DTCINITIATEDRECOVERYWORK","features":[171]},{"name":"DTCINITIATEDRECOVERYWORK_CHECKLUSTATUS","features":[171]},{"name":"DTCINITIATEDRECOVERYWORK_TMDOWN","features":[171]},{"name":"DTCINITIATEDRECOVERYWORK_TRANS","features":[171]},{"name":"DTCINSTALL_E_CLIENT_ALREADY_INSTALLED","features":[171]},{"name":"DTCINSTALL_E_SERVER_ALREADY_INSTALLED","features":[171]},{"name":"DTCLUCOMPARESTATE","features":[171]},{"name":"DTCLUCOMPARESTATESCONFIRMATION","features":[171]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_CONFIRM","features":[171]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_PROTOCOL","features":[171]},{"name":"DTCLUCOMPARESTATESERROR","features":[171]},{"name":"DTCLUCOMPARESTATESERROR_PROTOCOL","features":[171]},{"name":"DTCLUCOMPARESTATESRESPONSE","features":[171]},{"name":"DTCLUCOMPARESTATESRESPONSE_OK","features":[171]},{"name":"DTCLUCOMPARESTATESRESPONSE_PROTOCOL","features":[171]},{"name":"DTCLUCOMPARESTATE_COMMITTED","features":[171]},{"name":"DTCLUCOMPARESTATE_HEURISTICCOMMITTED","features":[171]},{"name":"DTCLUCOMPARESTATE_HEURISTICMIXED","features":[171]},{"name":"DTCLUCOMPARESTATE_HEURISTICRESET","features":[171]},{"name":"DTCLUCOMPARESTATE_INDOUBT","features":[171]},{"name":"DTCLUCOMPARESTATE_RESET","features":[171]},{"name":"DTCLUXLN","features":[171]},{"name":"DTCLUXLNCONFIRMATION","features":[171]},{"name":"DTCLUXLNCONFIRMATION_COLDWARMMISMATCH","features":[171]},{"name":"DTCLUXLNCONFIRMATION_CONFIRM","features":[171]},{"name":"DTCLUXLNCONFIRMATION_LOGNAMEMISMATCH","features":[171]},{"name":"DTCLUXLNCONFIRMATION_OBSOLETE","features":[171]},{"name":"DTCLUXLNERROR","features":[171]},{"name":"DTCLUXLNERROR_COLDWARMMISMATCH","features":[171]},{"name":"DTCLUXLNERROR_LOGNAMEMISMATCH","features":[171]},{"name":"DTCLUXLNERROR_PROTOCOL","features":[171]},{"name":"DTCLUXLNRESPONSE","features":[171]},{"name":"DTCLUXLNRESPONSE_COLDWARMMISMATCH","features":[171]},{"name":"DTCLUXLNRESPONSE_LOGNAMEMISMATCH","features":[171]},{"name":"DTCLUXLNRESPONSE_OK_SENDCONFIRMATION","features":[171]},{"name":"DTCLUXLNRESPONSE_OK_SENDOURXLNBACK","features":[171]},{"name":"DTCLUXLN_COLD","features":[171]},{"name":"DTCLUXLN_WARM","features":[171]},{"name":"DTC_GET_TRANSACTION_MANAGER","features":[171]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_A","features":[171]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_W","features":[171]},{"name":"DTC_INSTALL_CLIENT","features":[171]},{"name":"DTC_INSTALL_OVERWRITE_CLIENT","features":[171]},{"name":"DTC_INSTALL_OVERWRITE_SERVER","features":[171]},{"name":"DTC_STATUS_","features":[171]},{"name":"DTC_STATUS_CONTINUING","features":[171]},{"name":"DTC_STATUS_E_CANTCONTROL","features":[171]},{"name":"DTC_STATUS_FAILED","features":[171]},{"name":"DTC_STATUS_PAUSED","features":[171]},{"name":"DTC_STATUS_PAUSING","features":[171]},{"name":"DTC_STATUS_STARTED","features":[171]},{"name":"DTC_STATUS_STARTING","features":[171]},{"name":"DTC_STATUS_STOPPED","features":[171]},{"name":"DTC_STATUS_STOPPING","features":[171]},{"name":"DTC_STATUS_UNKNOWN","features":[171]},{"name":"DtcGetTransactionManager","features":[171]},{"name":"DtcGetTransactionManagerC","features":[171]},{"name":"DtcGetTransactionManagerExA","features":[171]},{"name":"DtcGetTransactionManagerExW","features":[171]},{"name":"IDtcLuConfigure","features":[171]},{"name":"IDtcLuRecovery","features":[171]},{"name":"IDtcLuRecoveryFactory","features":[171]},{"name":"IDtcLuRecoveryInitiatedByDtc","features":[171]},{"name":"IDtcLuRecoveryInitiatedByDtcStatusWork","features":[171]},{"name":"IDtcLuRecoveryInitiatedByDtcTransWork","features":[171]},{"name":"IDtcLuRecoveryInitiatedByLu","features":[171]},{"name":"IDtcLuRecoveryInitiatedByLuWork","features":[171]},{"name":"IDtcLuRmEnlistment","features":[171]},{"name":"IDtcLuRmEnlistmentFactory","features":[171]},{"name":"IDtcLuRmEnlistmentSink","features":[171]},{"name":"IDtcLuSubordinateDtc","features":[171]},{"name":"IDtcLuSubordinateDtcFactory","features":[171]},{"name":"IDtcLuSubordinateDtcSink","features":[171]},{"name":"IDtcNetworkAccessConfig","features":[171]},{"name":"IDtcNetworkAccessConfig2","features":[171]},{"name":"IDtcNetworkAccessConfig3","features":[171]},{"name":"IDtcToXaHelper","features":[171]},{"name":"IDtcToXaHelperFactory","features":[171]},{"name":"IDtcToXaHelperSinglePipe","features":[171]},{"name":"IDtcToXaMapper","features":[171]},{"name":"IGetDispenser","features":[171]},{"name":"IKernelTransaction","features":[171]},{"name":"ILastResourceManager","features":[171]},{"name":"INCOMING_AUTHENTICATION_REQUIRED","features":[171]},{"name":"IPrepareInfo","features":[171]},{"name":"IPrepareInfo2","features":[171]},{"name":"IRMHelper","features":[171]},{"name":"IResourceManager","features":[171]},{"name":"IResourceManager2","features":[171]},{"name":"IResourceManagerFactory","features":[171]},{"name":"IResourceManagerFactory2","features":[171]},{"name":"IResourceManagerRejoinable","features":[171]},{"name":"IResourceManagerSink","features":[171]},{"name":"ISOFLAG","features":[171]},{"name":"ISOFLAG_OPTIMISTIC","features":[171]},{"name":"ISOFLAG_READONLY","features":[171]},{"name":"ISOFLAG_RETAIN_ABORT","features":[171]},{"name":"ISOFLAG_RETAIN_ABORT_DC","features":[171]},{"name":"ISOFLAG_RETAIN_ABORT_NO","features":[171]},{"name":"ISOFLAG_RETAIN_BOTH","features":[171]},{"name":"ISOFLAG_RETAIN_COMMIT","features":[171]},{"name":"ISOFLAG_RETAIN_COMMIT_DC","features":[171]},{"name":"ISOFLAG_RETAIN_COMMIT_NO","features":[171]},{"name":"ISOFLAG_RETAIN_DONTCARE","features":[171]},{"name":"ISOFLAG_RETAIN_NONE","features":[171]},{"name":"ISOLATIONLEVEL","features":[171]},{"name":"ISOLATIONLEVEL_BROWSE","features":[171]},{"name":"ISOLATIONLEVEL_CHAOS","features":[171]},{"name":"ISOLATIONLEVEL_CURSORSTABILITY","features":[171]},{"name":"ISOLATIONLEVEL_ISOLATED","features":[171]},{"name":"ISOLATIONLEVEL_READCOMMITTED","features":[171]},{"name":"ISOLATIONLEVEL_READUNCOMMITTED","features":[171]},{"name":"ISOLATIONLEVEL_REPEATABLEREAD","features":[171]},{"name":"ISOLATIONLEVEL_SERIALIZABLE","features":[171]},{"name":"ISOLATIONLEVEL_UNSPECIFIED","features":[171]},{"name":"ITipHelper","features":[171]},{"name":"ITipPullSink","features":[171]},{"name":"ITipTransaction","features":[171]},{"name":"ITmNodeName","features":[171]},{"name":"ITransaction","features":[171]},{"name":"ITransaction2","features":[171]},{"name":"ITransactionCloner","features":[171]},{"name":"ITransactionDispenser","features":[171]},{"name":"ITransactionEnlistmentAsync","features":[171]},{"name":"ITransactionExport","features":[171]},{"name":"ITransactionExportFactory","features":[171]},{"name":"ITransactionImport","features":[171]},{"name":"ITransactionImportWhereabouts","features":[171]},{"name":"ITransactionLastEnlistmentAsync","features":[171]},{"name":"ITransactionLastResourceAsync","features":[171]},{"name":"ITransactionOptions","features":[171]},{"name":"ITransactionOutcomeEvents","features":[171]},{"name":"ITransactionPhase0EnlistmentAsync","features":[171]},{"name":"ITransactionPhase0Factory","features":[171]},{"name":"ITransactionPhase0NotifyAsync","features":[171]},{"name":"ITransactionReceiver","features":[171]},{"name":"ITransactionReceiverFactory","features":[171]},{"name":"ITransactionResource","features":[171]},{"name":"ITransactionResourceAsync","features":[171]},{"name":"ITransactionTransmitter","features":[171]},{"name":"ITransactionTransmitterFactory","features":[171]},{"name":"ITransactionVoterBallotAsync2","features":[171]},{"name":"ITransactionVoterFactory2","features":[171]},{"name":"ITransactionVoterNotifyAsync2","features":[171]},{"name":"IXAConfig","features":[171]},{"name":"IXAObtainRMInfo","features":[171]},{"name":"IXATransLookup","features":[171]},{"name":"IXATransLookup2","features":[171]},{"name":"LOCAL_APPLICATIONTYPE","features":[171]},{"name":"MAXBQUALSIZE","features":[171]},{"name":"MAXGTRIDSIZE","features":[171]},{"name":"MAXINFOSIZE","features":[171]},{"name":"MAX_TRAN_DESC","features":[171]},{"name":"MUTUAL_AUTHENTICATION_REQUIRED","features":[171]},{"name":"NO_AUTHENTICATION_REQUIRED","features":[171]},{"name":"OLE_TM_CONFIG_PARAMS_V1","features":[171]},{"name":"OLE_TM_CONFIG_PARAMS_V2","features":[171]},{"name":"OLE_TM_CONFIG_VERSION_1","features":[171]},{"name":"OLE_TM_CONFIG_VERSION_2","features":[171]},{"name":"OLE_TM_FLAG_INTERNAL_TO_TM","features":[171]},{"name":"OLE_TM_FLAG_NOAGILERECOVERY","features":[171]},{"name":"OLE_TM_FLAG_NODEMANDSTART","features":[171]},{"name":"OLE_TM_FLAG_NONE","features":[171]},{"name":"OLE_TM_FLAG_QUERY_SERVICE_LOCKSTATUS","features":[171]},{"name":"PROXY_CONFIG_PARAMS","features":[171]},{"name":"RMNAMESZ","features":[171]},{"name":"TMASYNC","features":[171]},{"name":"TMENDRSCAN","features":[171]},{"name":"TMER_INVAL","features":[171]},{"name":"TMER_PROTO","features":[171]},{"name":"TMER_TMERR","features":[171]},{"name":"TMFAIL","features":[171]},{"name":"TMJOIN","features":[171]},{"name":"TMMIGRATE","features":[171]},{"name":"TMMULTIPLE","features":[171]},{"name":"TMNOFLAGS","features":[171]},{"name":"TMNOMIGRATE","features":[171]},{"name":"TMNOWAIT","features":[171]},{"name":"TMONEPHASE","features":[171]},{"name":"TMREGISTER","features":[171]},{"name":"TMRESUME","features":[171]},{"name":"TMSTARTRSCAN","features":[171]},{"name":"TMSUCCESS","features":[171]},{"name":"TMSUSPEND","features":[171]},{"name":"TMUSEASYNC","features":[171]},{"name":"TM_JOIN","features":[171]},{"name":"TM_OK","features":[171]},{"name":"TM_RESUME","features":[171]},{"name":"TX_MISC_CONSTANTS","features":[171]},{"name":"XACTCONST","features":[171]},{"name":"XACTCONST_TIMEOUTINFINITE","features":[171]},{"name":"XACTHEURISTIC","features":[171]},{"name":"XACTHEURISTIC_ABORT","features":[171]},{"name":"XACTHEURISTIC_COMMIT","features":[171]},{"name":"XACTHEURISTIC_DAMAGE","features":[171]},{"name":"XACTHEURISTIC_DANGER","features":[171]},{"name":"XACTOPT","features":[171]},{"name":"XACTRM","features":[171]},{"name":"XACTRM_NOREADONLYPREPARES","features":[171]},{"name":"XACTRM_OPTIMISTICLASTWINS","features":[171]},{"name":"XACTSTAT","features":[171]},{"name":"XACTSTATS","features":[3,171]},{"name":"XACTSTAT_ABORTED","features":[171]},{"name":"XACTSTAT_ABORTING","features":[171]},{"name":"XACTSTAT_ALL","features":[171]},{"name":"XACTSTAT_CLOSED","features":[171]},{"name":"XACTSTAT_COMMITRETAINING","features":[171]},{"name":"XACTSTAT_COMMITTED","features":[171]},{"name":"XACTSTAT_COMMITTING","features":[171]},{"name":"XACTSTAT_FORCED_ABORT","features":[171]},{"name":"XACTSTAT_FORCED_COMMIT","features":[171]},{"name":"XACTSTAT_HEURISTIC_ABORT","features":[171]},{"name":"XACTSTAT_HEURISTIC_COMMIT","features":[171]},{"name":"XACTSTAT_HEURISTIC_DAMAGE","features":[171]},{"name":"XACTSTAT_HEURISTIC_DANGER","features":[171]},{"name":"XACTSTAT_INDOUBT","features":[171]},{"name":"XACTSTAT_NONE","features":[171]},{"name":"XACTSTAT_NOTPREPARED","features":[171]},{"name":"XACTSTAT_OPEN","features":[171]},{"name":"XACTSTAT_OPENNORMAL","features":[171]},{"name":"XACTSTAT_OPENREFUSED","features":[171]},{"name":"XACTSTAT_PREPARED","features":[171]},{"name":"XACTSTAT_PREPARERETAINED","features":[171]},{"name":"XACTSTAT_PREPARERETAINING","features":[171]},{"name":"XACTSTAT_PREPARING","features":[171]},{"name":"XACTTC","features":[171]},{"name":"XACTTC_ASYNC","features":[171]},{"name":"XACTTC_ASYNC_PHASEONE","features":[171]},{"name":"XACTTC_NONE","features":[171]},{"name":"XACTTC_SYNC","features":[171]},{"name":"XACTTC_SYNC_PHASEONE","features":[171]},{"name":"XACTTC_SYNC_PHASETWO","features":[171]},{"name":"XACTTRANSINFO","features":[171]},{"name":"XACT_DTC_CONSTANTS","features":[171]},{"name":"XACT_E_CONNECTION_REQUEST_DENIED","features":[171]},{"name":"XACT_E_DUPLICATE_GUID","features":[171]},{"name":"XACT_E_DUPLICATE_LU","features":[171]},{"name":"XACT_E_DUPLICATE_TRANSID","features":[171]},{"name":"XACT_E_LRMRECOVERYALREADYDONE","features":[171]},{"name":"XACT_E_LU_BUSY","features":[171]},{"name":"XACT_E_LU_DOWN","features":[171]},{"name":"XACT_E_LU_NOT_CONNECTED","features":[171]},{"name":"XACT_E_LU_NOT_FOUND","features":[171]},{"name":"XACT_E_LU_NO_RECOVERY_PROCESS","features":[171]},{"name":"XACT_E_LU_RECOVERING","features":[171]},{"name":"XACT_E_LU_RECOVERY_MISMATCH","features":[171]},{"name":"XACT_E_NOLASTRESOURCEINTERFACE","features":[171]},{"name":"XACT_E_NOTSINGLEPHASE","features":[171]},{"name":"XACT_E_PROTOCOL","features":[171]},{"name":"XACT_E_RECOVERYALREADYDONE","features":[171]},{"name":"XACT_E_RECOVERY_FAILED","features":[171]},{"name":"XACT_E_RM_FAILURE","features":[171]},{"name":"XACT_E_RM_UNAVAILABLE","features":[171]},{"name":"XACT_E_TOOMANY_ENLISTMENTS","features":[171]},{"name":"XACT_OK_NONOTIFY","features":[171]},{"name":"XACT_S_NONOTIFY","features":[171]},{"name":"XAER_ASYNC","features":[171]},{"name":"XAER_DUPID","features":[171]},{"name":"XAER_INVAL","features":[171]},{"name":"XAER_NOTA","features":[171]},{"name":"XAER_OUTSIDE","features":[171]},{"name":"XAER_PROTO","features":[171]},{"name":"XAER_RMERR","features":[171]},{"name":"XAER_RMFAIL","features":[171]},{"name":"XA_CLOSE_EPT","features":[171]},{"name":"XA_COMMIT_EPT","features":[171]},{"name":"XA_COMPLETE_EPT","features":[171]},{"name":"XA_END_EPT","features":[171]},{"name":"XA_FMTID_DTC","features":[171]},{"name":"XA_FMTID_DTC_VER1","features":[171]},{"name":"XA_FORGET_EPT","features":[171]},{"name":"XA_HEURCOM","features":[171]},{"name":"XA_HEURHAZ","features":[171]},{"name":"XA_HEURMIX","features":[171]},{"name":"XA_HEURRB","features":[171]},{"name":"XA_NOMIGRATE","features":[171]},{"name":"XA_OK","features":[171]},{"name":"XA_OPEN_EPT","features":[171]},{"name":"XA_PREPARE_EPT","features":[171]},{"name":"XA_RBBASE","features":[171]},{"name":"XA_RBCOMMFAIL","features":[171]},{"name":"XA_RBDEADLOCK","features":[171]},{"name":"XA_RBEND","features":[171]},{"name":"XA_RBINTEGRITY","features":[171]},{"name":"XA_RBOTHER","features":[171]},{"name":"XA_RBPROTO","features":[171]},{"name":"XA_RBROLLBACK","features":[171]},{"name":"XA_RBTIMEOUT","features":[171]},{"name":"XA_RBTRANSIENT","features":[171]},{"name":"XA_RDONLY","features":[171]},{"name":"XA_RECOVER_EPT","features":[171]},{"name":"XA_RETRY","features":[171]},{"name":"XA_ROLLBACK_EPT","features":[171]},{"name":"XA_START_EPT","features":[171]},{"name":"XA_SWITCH_F_DTC","features":[171]},{"name":"XID","features":[171]},{"name":"XIDDATASIZE","features":[171]},{"name":"dwUSER_MS_SQLSERVER","features":[171]},{"name":"xa_switch_t","features":[171]}],"563":[{"name":"CallEnclave","features":[3,172]},{"name":"CreateEnclave","features":[3,172]},{"name":"CreateEnvironmentBlock","features":[3,172]},{"name":"DeleteEnclave","features":[3,172]},{"name":"DestroyEnvironmentBlock","features":[3,172]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ACTIVE","features":[172]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ENABLED","features":[172]},{"name":"ENCLAVE_FLAG_FULL_DEBUG_ENABLED","features":[172]},{"name":"ENCLAVE_IDENTITY","features":[172]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_EXACT_CODE","features":[172]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_INVALID","features":[172]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_AUTHOR","features":[172]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_FAMILY","features":[172]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_IMAGE","features":[172]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_PRIMARY_CODE","features":[172]},{"name":"ENCLAVE_INFORMATION","features":[172]},{"name":"ENCLAVE_REPORT_DATA_LENGTH","features":[172]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_DYNAMIC_DEBUG","features":[172]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_FULL_DEBUG","features":[172]},{"name":"ENCLAVE_SEALING_IDENTITY_POLICY","features":[172]},{"name":"ENCLAVE_UNSEAL_FLAG_STALE_KEY","features":[172]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_DEBUG_KEY","features":[172]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_FAMILY_ID","features":[172]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_IMAGE_ID","features":[172]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_MEASUREMENT","features":[172]},{"name":"ENCLAVE_VBS_BASIC_KEY_REQUEST","features":[172]},{"name":"EnclaveGetAttestationReport","features":[172]},{"name":"EnclaveGetEnclaveInformation","features":[172]},{"name":"EnclaveSealData","features":[172]},{"name":"EnclaveUnsealData","features":[172]},{"name":"EnclaveVerifyAttestationReport","features":[172]},{"name":"ExpandEnvironmentStringsA","features":[172]},{"name":"ExpandEnvironmentStringsForUserA","features":[3,172]},{"name":"ExpandEnvironmentStringsForUserW","features":[3,172]},{"name":"ExpandEnvironmentStringsW","features":[172]},{"name":"FreeEnvironmentStringsA","features":[3,172]},{"name":"FreeEnvironmentStringsW","features":[3,172]},{"name":"GetCommandLineA","features":[172]},{"name":"GetCommandLineW","features":[172]},{"name":"GetCurrentDirectoryA","features":[172]},{"name":"GetCurrentDirectoryW","features":[172]},{"name":"GetEnvironmentStrings","features":[172]},{"name":"GetEnvironmentStringsW","features":[172]},{"name":"GetEnvironmentVariableA","features":[172]},{"name":"GetEnvironmentVariableW","features":[172]},{"name":"InitializeEnclave","features":[3,172]},{"name":"IsEnclaveTypeSupported","features":[3,172]},{"name":"LoadEnclaveData","features":[3,172]},{"name":"LoadEnclaveImageA","features":[3,172]},{"name":"LoadEnclaveImageW","features":[3,172]},{"name":"NeedCurrentDirectoryForExePathA","features":[3,172]},{"name":"NeedCurrentDirectoryForExePathW","features":[3,172]},{"name":"SetCurrentDirectoryA","features":[3,172]},{"name":"SetCurrentDirectoryW","features":[3,172]},{"name":"SetEnvironmentStringsW","features":[3,172]},{"name":"SetEnvironmentVariableA","features":[3,172]},{"name":"SetEnvironmentVariableW","features":[3,172]},{"name":"TerminateEnclave","features":[3,172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_COMMIT_PAGES","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_DECOMMIT_PAGES","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_KEY","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_RANDOM_DATA","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_REPORT","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GET_ENCLAVE_INFORMATION","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_PROTECT_PAGES","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_ENCLAVE","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[172]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_VERIFY_REPORT","features":[172]},{"name":"VBS_BASIC_ENCLAVE_EXCEPTION_AMD64","features":[172]},{"name":"VBS_BASIC_ENCLAVE_SYSCALL_PAGE","features":[172]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR32","features":[172]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR64","features":[172]},{"name":"VBS_ENCLAVE_REPORT","features":[172]},{"name":"VBS_ENCLAVE_REPORT_MODULE","features":[172]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER","features":[172]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER_VERSION_CURRENT","features":[172]},{"name":"VBS_ENCLAVE_REPORT_SIGNATURE_SCHEME_SHA256_RSA_PSS_SHA256","features":[172]},{"name":"VBS_ENCLAVE_REPORT_VARDATA_HEADER","features":[172]},{"name":"VBS_ENCLAVE_REPORT_VERSION_CURRENT","features":[172]},{"name":"VBS_ENCLAVE_VARDATA_INVALID","features":[172]},{"name":"VBS_ENCLAVE_VARDATA_MODULE","features":[172]}],"564":[{"name":"APPCRASH_EVENT","features":[173]},{"name":"AddERExcludedApplicationA","features":[3,173]},{"name":"AddERExcludedApplicationW","features":[3,173]},{"name":"EFaultRepRetVal","features":[173]},{"name":"E_STORE_INVALID","features":[173]},{"name":"E_STORE_MACHINE_ARCHIVE","features":[173]},{"name":"E_STORE_MACHINE_QUEUE","features":[173]},{"name":"E_STORE_USER_ARCHIVE","features":[173]},{"name":"E_STORE_USER_QUEUE","features":[173]},{"name":"HREPORT","features":[173]},{"name":"HREPORTSTORE","features":[173]},{"name":"PACKAGED_APPCRASH_EVENT","features":[173]},{"name":"PFN_WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[3,33,173,9]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT","features":[3,33,173,9]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE","features":[3,33,173,9]},{"name":"REPORT_STORE_TYPES","features":[173]},{"name":"ReportFault","features":[3,33,173,9]},{"name":"WER_CONSENT","features":[173]},{"name":"WER_DUMP_AUXILIARY","features":[173]},{"name":"WER_DUMP_CUSTOM_OPTIONS","features":[3,173]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V2","features":[3,173]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V3","features":[3,173]},{"name":"WER_DUMP_MASK_START","features":[173]},{"name":"WER_DUMP_NOHEAP_ONQUEUE","features":[173]},{"name":"WER_DUMP_TYPE","features":[173]},{"name":"WER_EXCEPTION_INFORMATION","features":[3,33,173,9]},{"name":"WER_FAULT_REPORTING","features":[173]},{"name":"WER_FAULT_REPORTING_ALWAYS_SHOW_UI","features":[173]},{"name":"WER_FAULT_REPORTING_CRITICAL","features":[173]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_CRASH","features":[173]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_HANG","features":[173]},{"name":"WER_FAULT_REPORTING_DURABLE","features":[173]},{"name":"WER_FAULT_REPORTING_FLAG_DISABLE_THREAD_SUSPENSION","features":[173]},{"name":"WER_FAULT_REPORTING_FLAG_NOHEAP","features":[173]},{"name":"WER_FAULT_REPORTING_FLAG_NO_HEAP_ON_QUEUE","features":[173]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE","features":[173]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE_UPLOAD","features":[173]},{"name":"WER_FAULT_REPORTING_NO_UI","features":[173]},{"name":"WER_FILE","features":[173]},{"name":"WER_FILE_ANONYMOUS_DATA","features":[173]},{"name":"WER_FILE_COMPRESSED","features":[173]},{"name":"WER_FILE_DELETE_WHEN_DONE","features":[173]},{"name":"WER_FILE_TYPE","features":[173]},{"name":"WER_MAX_APPLICATION_NAME_LENGTH","features":[173]},{"name":"WER_MAX_BUCKET_ID_STRING_LENGTH","features":[173]},{"name":"WER_MAX_DESCRIPTION_LENGTH","features":[173]},{"name":"WER_MAX_EVENT_NAME_LENGTH","features":[173]},{"name":"WER_MAX_FRIENDLY_EVENT_NAME_LENGTH","features":[173]},{"name":"WER_MAX_LOCAL_DUMP_SUBPATH_LENGTH","features":[173]},{"name":"WER_MAX_PARAM_COUNT","features":[173]},{"name":"WER_MAX_PARAM_LENGTH","features":[173]},{"name":"WER_MAX_PREFERRED_MODULES","features":[173]},{"name":"WER_MAX_PREFERRED_MODULES_BUFFER","features":[173]},{"name":"WER_MAX_REGISTERED_DUMPCOLLECTION","features":[173]},{"name":"WER_MAX_REGISTERED_ENTRIES","features":[173]},{"name":"WER_MAX_REGISTERED_METADATA","features":[173]},{"name":"WER_MAX_REGISTERED_RUNTIME_EXCEPTION_MODULES","features":[173]},{"name":"WER_MAX_SIGNATURE_NAME_LENGTH","features":[173]},{"name":"WER_MAX_TOTAL_PARAM_LENGTH","features":[173]},{"name":"WER_METADATA_KEY_MAX_LENGTH","features":[173]},{"name":"WER_METADATA_VALUE_MAX_LENGTH","features":[173]},{"name":"WER_P0","features":[173]},{"name":"WER_P1","features":[173]},{"name":"WER_P2","features":[173]},{"name":"WER_P3","features":[173]},{"name":"WER_P4","features":[173]},{"name":"WER_P5","features":[173]},{"name":"WER_P6","features":[173]},{"name":"WER_P7","features":[173]},{"name":"WER_P8","features":[173]},{"name":"WER_P9","features":[173]},{"name":"WER_REGISTER_FILE_TYPE","features":[173]},{"name":"WER_REPORT_INFORMATION","features":[3,173]},{"name":"WER_REPORT_INFORMATION_V3","features":[3,173]},{"name":"WER_REPORT_INFORMATION_V4","features":[3,173]},{"name":"WER_REPORT_INFORMATION_V5","features":[3,173]},{"name":"WER_REPORT_METADATA_V1","features":[3,173]},{"name":"WER_REPORT_METADATA_V2","features":[3,173]},{"name":"WER_REPORT_METADATA_V3","features":[3,173]},{"name":"WER_REPORT_PARAMETER","features":[173]},{"name":"WER_REPORT_SIGNATURE","features":[173]},{"name":"WER_REPORT_TYPE","features":[173]},{"name":"WER_REPORT_UI","features":[173]},{"name":"WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[173]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_FUNCTION","features":[173]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE_FUNCTION","features":[173]},{"name":"WER_RUNTIME_EXCEPTION_INFORMATION","features":[3,33,173,9]},{"name":"WER_SUBMIT_ADD_REGISTERED_DATA","features":[173]},{"name":"WER_SUBMIT_ARCHIVE_PARAMETERS_ONLY","features":[173]},{"name":"WER_SUBMIT_BYPASS_DATA_THROTTLING","features":[173]},{"name":"WER_SUBMIT_BYPASS_NETWORK_COST_THROTTLING","features":[173]},{"name":"WER_SUBMIT_BYPASS_POWER_THROTTLING","features":[173]},{"name":"WER_SUBMIT_FLAGS","features":[173]},{"name":"WER_SUBMIT_HONOR_RECOVERY","features":[173]},{"name":"WER_SUBMIT_HONOR_RESTART","features":[173]},{"name":"WER_SUBMIT_NO_ARCHIVE","features":[173]},{"name":"WER_SUBMIT_NO_CLOSE_UI","features":[173]},{"name":"WER_SUBMIT_NO_QUEUE","features":[173]},{"name":"WER_SUBMIT_OUTOFPROCESS","features":[173]},{"name":"WER_SUBMIT_OUTOFPROCESS_ASYNC","features":[173]},{"name":"WER_SUBMIT_QUEUE","features":[173]},{"name":"WER_SUBMIT_REPORT_MACHINE_ID","features":[173]},{"name":"WER_SUBMIT_RESULT","features":[173]},{"name":"WER_SUBMIT_SHOW_DEBUG","features":[173]},{"name":"WER_SUBMIT_START_MINIMIZED","features":[173]},{"name":"WerAddExcludedApplication","features":[3,173]},{"name":"WerConsentAlwaysPrompt","features":[173]},{"name":"WerConsentApproved","features":[173]},{"name":"WerConsentDenied","features":[173]},{"name":"WerConsentMax","features":[173]},{"name":"WerConsentNotAsked","features":[173]},{"name":"WerCustomAction","features":[173]},{"name":"WerDisabled","features":[173]},{"name":"WerDisabledQueue","features":[173]},{"name":"WerDumpTypeHeapDump","features":[173]},{"name":"WerDumpTypeMax","features":[173]},{"name":"WerDumpTypeMicroDump","features":[173]},{"name":"WerDumpTypeMiniDump","features":[173]},{"name":"WerDumpTypeNone","features":[173]},{"name":"WerDumpTypeTriageDump","features":[173]},{"name":"WerFileTypeAuxiliaryDump","features":[173]},{"name":"WerFileTypeCustomDump","features":[173]},{"name":"WerFileTypeEtlTrace","features":[173]},{"name":"WerFileTypeHeapdump","features":[173]},{"name":"WerFileTypeMax","features":[173]},{"name":"WerFileTypeMicrodump","features":[173]},{"name":"WerFileTypeMinidump","features":[173]},{"name":"WerFileTypeOther","features":[173]},{"name":"WerFileTypeTriagedump","features":[173]},{"name":"WerFileTypeUserDocument","features":[173]},{"name":"WerFreeString","features":[173]},{"name":"WerGetFlags","features":[3,173]},{"name":"WerRegFileTypeMax","features":[173]},{"name":"WerRegFileTypeOther","features":[173]},{"name":"WerRegFileTypeUserDocument","features":[173]},{"name":"WerRegisterAdditionalProcess","features":[173]},{"name":"WerRegisterAppLocalDump","features":[173]},{"name":"WerRegisterCustomMetadata","features":[173]},{"name":"WerRegisterExcludedMemoryBlock","features":[173]},{"name":"WerRegisterFile","features":[173]},{"name":"WerRegisterMemoryBlock","features":[173]},{"name":"WerRegisterRuntimeExceptionModule","features":[173]},{"name":"WerRemoveExcludedApplication","features":[3,173]},{"name":"WerReportAddDump","features":[3,33,173,9]},{"name":"WerReportAddFile","features":[173]},{"name":"WerReportApplicationCrash","features":[173]},{"name":"WerReportApplicationHang","features":[173]},{"name":"WerReportAsync","features":[173]},{"name":"WerReportCancelled","features":[173]},{"name":"WerReportCloseHandle","features":[173]},{"name":"WerReportCreate","features":[3,173]},{"name":"WerReportCritical","features":[173]},{"name":"WerReportDebug","features":[173]},{"name":"WerReportFailed","features":[173]},{"name":"WerReportHang","features":[3,173]},{"name":"WerReportInvalid","features":[173]},{"name":"WerReportKernel","features":[173]},{"name":"WerReportNonCritical","features":[173]},{"name":"WerReportQueued","features":[173]},{"name":"WerReportSetParameter","features":[173]},{"name":"WerReportSetUIOption","features":[173]},{"name":"WerReportSubmit","features":[173]},{"name":"WerReportUploaded","features":[173]},{"name":"WerReportUploadedCab","features":[173]},{"name":"WerSetFlags","features":[173]},{"name":"WerStorageLocationNotFound","features":[173]},{"name":"WerStoreClose","features":[173]},{"name":"WerStoreGetFirstReportKey","features":[173]},{"name":"WerStoreGetNextReportKey","features":[173]},{"name":"WerStoreGetReportCount","features":[173]},{"name":"WerStoreGetSizeOnDisk","features":[173]},{"name":"WerStoreOpen","features":[173]},{"name":"WerStorePurge","features":[173]},{"name":"WerStoreQueryReportMetadataV1","features":[3,173]},{"name":"WerStoreQueryReportMetadataV2","features":[3,173]},{"name":"WerStoreQueryReportMetadataV3","features":[3,173]},{"name":"WerStoreUploadReport","features":[173]},{"name":"WerSubmitResultMax","features":[173]},{"name":"WerThrottled","features":[173]},{"name":"WerUIAdditionalDataDlgHeader","features":[173]},{"name":"WerUICloseDlgBody","features":[173]},{"name":"WerUICloseDlgButtonText","features":[173]},{"name":"WerUICloseDlgHeader","features":[173]},{"name":"WerUICloseText","features":[173]},{"name":"WerUIConsentDlgBody","features":[173]},{"name":"WerUIConsentDlgHeader","features":[173]},{"name":"WerUIIconFilePath","features":[173]},{"name":"WerUIMax","features":[173]},{"name":"WerUIOfflineSolutionCheckText","features":[173]},{"name":"WerUIOnlineSolutionCheckText","features":[173]},{"name":"WerUnregisterAdditionalProcess","features":[173]},{"name":"WerUnregisterAppLocalDump","features":[173]},{"name":"WerUnregisterCustomMetadata","features":[173]},{"name":"WerUnregisterExcludedMemoryBlock","features":[173]},{"name":"WerUnregisterFile","features":[173]},{"name":"WerUnregisterMemoryBlock","features":[173]},{"name":"WerUnregisterRuntimeExceptionModule","features":[173]},{"name":"frrvErr","features":[173]},{"name":"frrvErrAnotherInstance","features":[173]},{"name":"frrvErrDoubleFault","features":[173]},{"name":"frrvErrNoDW","features":[173]},{"name":"frrvErrNoMemory","features":[173]},{"name":"frrvErrTimeout","features":[173]},{"name":"frrvLaunchDebugger","features":[173]},{"name":"frrvOk","features":[173]},{"name":"frrvOkHeadless","features":[173]},{"name":"frrvOkManifest","features":[173]},{"name":"frrvOkQueued","features":[173]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONA","features":[173]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONW","features":[173]},{"name":"pfn_REPORTFAULT","features":[3,33,173,9]}],"565":[{"name":"EC_CREATE_NEW","features":[174]},{"name":"EC_OPEN_ALWAYS","features":[174]},{"name":"EC_OPEN_EXISTING","features":[174]},{"name":"EC_READ_ACCESS","features":[174]},{"name":"EC_SUBSCRIPTION_CONFIGURATION_MODE","features":[174]},{"name":"EC_SUBSCRIPTION_CONTENT_FORMAT","features":[174]},{"name":"EC_SUBSCRIPTION_CREDENTIALS_TYPE","features":[174]},{"name":"EC_SUBSCRIPTION_DELIVERY_MODE","features":[174]},{"name":"EC_SUBSCRIPTION_PROPERTY_ID","features":[174]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_ACTIVE_STATUS","features":[174]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_INFO_ID","features":[174]},{"name":"EC_SUBSCRIPTION_TYPE","features":[174]},{"name":"EC_VARIANT","features":[3,174]},{"name":"EC_VARIANT_TYPE","features":[174]},{"name":"EC_VARIANT_TYPE_ARRAY","features":[174]},{"name":"EC_VARIANT_TYPE_MASK","features":[174]},{"name":"EC_WRITE_ACCESS","features":[174]},{"name":"EcClose","features":[3,174]},{"name":"EcConfigurationModeCustom","features":[174]},{"name":"EcConfigurationModeMinBandwidth","features":[174]},{"name":"EcConfigurationModeMinLatency","features":[174]},{"name":"EcConfigurationModeNormal","features":[174]},{"name":"EcContentFormatEvents","features":[174]},{"name":"EcContentFormatRenderedText","features":[174]},{"name":"EcDeleteSubscription","features":[3,174]},{"name":"EcDeliveryModePull","features":[174]},{"name":"EcDeliveryModePush","features":[174]},{"name":"EcEnumNextSubscription","features":[3,174]},{"name":"EcGetObjectArrayProperty","features":[3,174]},{"name":"EcGetObjectArraySize","features":[3,174]},{"name":"EcGetSubscriptionProperty","features":[3,174]},{"name":"EcGetSubscriptionRunTimeStatus","features":[3,174]},{"name":"EcInsertObjectArrayElement","features":[3,174]},{"name":"EcOpenSubscription","features":[174]},{"name":"EcOpenSubscriptionEnum","features":[174]},{"name":"EcRemoveObjectArrayElement","features":[3,174]},{"name":"EcRetrySubscription","features":[3,174]},{"name":"EcRuntimeStatusActiveStatusActive","features":[174]},{"name":"EcRuntimeStatusActiveStatusDisabled","features":[174]},{"name":"EcRuntimeStatusActiveStatusInactive","features":[174]},{"name":"EcRuntimeStatusActiveStatusTrying","features":[174]},{"name":"EcSaveSubscription","features":[3,174]},{"name":"EcSetObjectArrayProperty","features":[3,174]},{"name":"EcSetSubscriptionProperty","features":[3,174]},{"name":"EcSubscriptionAllowedIssuerCAs","features":[174]},{"name":"EcSubscriptionAllowedSourceDomainComputers","features":[174]},{"name":"EcSubscriptionAllowedSubjects","features":[174]},{"name":"EcSubscriptionCommonPassword","features":[174]},{"name":"EcSubscriptionCommonUserName","features":[174]},{"name":"EcSubscriptionConfigurationMode","features":[174]},{"name":"EcSubscriptionContentFormat","features":[174]},{"name":"EcSubscriptionCredBasic","features":[174]},{"name":"EcSubscriptionCredDefault","features":[174]},{"name":"EcSubscriptionCredDigest","features":[174]},{"name":"EcSubscriptionCredLocalMachine","features":[174]},{"name":"EcSubscriptionCredNegotiate","features":[174]},{"name":"EcSubscriptionCredentialsType","features":[174]},{"name":"EcSubscriptionDeliveryMaxItems","features":[174]},{"name":"EcSubscriptionDeliveryMaxLatencyTime","features":[174]},{"name":"EcSubscriptionDeliveryMode","features":[174]},{"name":"EcSubscriptionDeniedSubjects","features":[174]},{"name":"EcSubscriptionDescription","features":[174]},{"name":"EcSubscriptionDialect","features":[174]},{"name":"EcSubscriptionEnabled","features":[174]},{"name":"EcSubscriptionEventSourceAddress","features":[174]},{"name":"EcSubscriptionEventSourceEnabled","features":[174]},{"name":"EcSubscriptionEventSourcePassword","features":[174]},{"name":"EcSubscriptionEventSourceUserName","features":[174]},{"name":"EcSubscriptionEventSources","features":[174]},{"name":"EcSubscriptionExpires","features":[174]},{"name":"EcSubscriptionHeartbeatInterval","features":[174]},{"name":"EcSubscriptionHostName","features":[174]},{"name":"EcSubscriptionLocale","features":[174]},{"name":"EcSubscriptionLogFile","features":[174]},{"name":"EcSubscriptionPropertyIdEND","features":[174]},{"name":"EcSubscriptionPublisherName","features":[174]},{"name":"EcSubscriptionQuery","features":[174]},{"name":"EcSubscriptionReadExistingEvents","features":[174]},{"name":"EcSubscriptionRunTimeStatusActive","features":[174]},{"name":"EcSubscriptionRunTimeStatusEventSources","features":[174]},{"name":"EcSubscriptionRunTimeStatusInfoIdEND","features":[174]},{"name":"EcSubscriptionRunTimeStatusLastError","features":[174]},{"name":"EcSubscriptionRunTimeStatusLastErrorMessage","features":[174]},{"name":"EcSubscriptionRunTimeStatusLastErrorTime","features":[174]},{"name":"EcSubscriptionRunTimeStatusLastHeartbeatTime","features":[174]},{"name":"EcSubscriptionRunTimeStatusNextRetryTime","features":[174]},{"name":"EcSubscriptionTransportName","features":[174]},{"name":"EcSubscriptionTransportPort","features":[174]},{"name":"EcSubscriptionType","features":[174]},{"name":"EcSubscriptionTypeCollectorInitiated","features":[174]},{"name":"EcSubscriptionTypeSourceInitiated","features":[174]},{"name":"EcSubscriptionURI","features":[174]},{"name":"EcVarObjectArrayPropertyHandle","features":[174]},{"name":"EcVarTypeBoolean","features":[174]},{"name":"EcVarTypeDateTime","features":[174]},{"name":"EcVarTypeNull","features":[174]},{"name":"EcVarTypeString","features":[174]},{"name":"EcVarTypeUInt32","features":[174]}],"566":[{"name":"BackupEventLogA","features":[3,175]},{"name":"BackupEventLogW","features":[3,175]},{"name":"ClearEventLogA","features":[3,175]},{"name":"ClearEventLogW","features":[3,175]},{"name":"CloseEventLog","features":[3,175]},{"name":"DeregisterEventSource","features":[3,175]},{"name":"EVENTLOGRECORD","features":[175]},{"name":"EVENTLOG_AUDIT_FAILURE","features":[175]},{"name":"EVENTLOG_AUDIT_SUCCESS","features":[175]},{"name":"EVENTLOG_ERROR_TYPE","features":[175]},{"name":"EVENTLOG_FULL_INFORMATION","features":[175]},{"name":"EVENTLOG_INFORMATION_TYPE","features":[175]},{"name":"EVENTLOG_SEEK_READ","features":[175]},{"name":"EVENTLOG_SEQUENTIAL_READ","features":[175]},{"name":"EVENTLOG_SUCCESS","features":[175]},{"name":"EVENTLOG_WARNING_TYPE","features":[175]},{"name":"EVENTSFORLOGFILE","features":[175]},{"name":"EVT_ALL_ACCESS","features":[175]},{"name":"EVT_CHANNEL_CLOCK_TYPE","features":[175]},{"name":"EVT_CHANNEL_CONFIG_PROPERTY_ID","features":[175]},{"name":"EVT_CHANNEL_ISOLATION_TYPE","features":[175]},{"name":"EVT_CHANNEL_REFERENCE_FLAGS","features":[175]},{"name":"EVT_CHANNEL_SID_TYPE","features":[175]},{"name":"EVT_CHANNEL_TYPE","features":[175]},{"name":"EVT_CLEAR_ACCESS","features":[175]},{"name":"EVT_EVENT_METADATA_PROPERTY_ID","features":[175]},{"name":"EVT_EVENT_PROPERTY_ID","features":[175]},{"name":"EVT_EXPORTLOG_FLAGS","features":[175]},{"name":"EVT_FORMAT_MESSAGE_FLAGS","features":[175]},{"name":"EVT_HANDLE","features":[175]},{"name":"EVT_LOGIN_CLASS","features":[175]},{"name":"EVT_LOG_PROPERTY_ID","features":[175]},{"name":"EVT_OPEN_LOG_FLAGS","features":[175]},{"name":"EVT_PUBLISHER_METADATA_PROPERTY_ID","features":[175]},{"name":"EVT_QUERY_FLAGS","features":[175]},{"name":"EVT_QUERY_PROPERTY_ID","features":[175]},{"name":"EVT_READ_ACCESS","features":[175]},{"name":"EVT_RENDER_CONTEXT_FLAGS","features":[175]},{"name":"EVT_RENDER_FLAGS","features":[175]},{"name":"EVT_RPC_LOGIN","features":[175]},{"name":"EVT_RPC_LOGIN_FLAGS","features":[175]},{"name":"EVT_SEEK_FLAGS","features":[175]},{"name":"EVT_SUBSCRIBE_CALLBACK","features":[175]},{"name":"EVT_SUBSCRIBE_FLAGS","features":[175]},{"name":"EVT_SUBSCRIBE_NOTIFY_ACTION","features":[175]},{"name":"EVT_SYSTEM_PROPERTY_ID","features":[175]},{"name":"EVT_VARIANT","features":[3,6,175]},{"name":"EVT_VARIANT_TYPE","features":[175]},{"name":"EVT_VARIANT_TYPE_ARRAY","features":[175]},{"name":"EVT_VARIANT_TYPE_MASK","features":[175]},{"name":"EVT_WRITE_ACCESS","features":[175]},{"name":"EventMetadataEventChannel","features":[175]},{"name":"EventMetadataEventID","features":[175]},{"name":"EventMetadataEventKeyword","features":[175]},{"name":"EventMetadataEventLevel","features":[175]},{"name":"EventMetadataEventMessageID","features":[175]},{"name":"EventMetadataEventOpcode","features":[175]},{"name":"EventMetadataEventTask","features":[175]},{"name":"EventMetadataEventTemplate","features":[175]},{"name":"EventMetadataEventVersion","features":[175]},{"name":"EvtArchiveExportedLog","features":[3,175]},{"name":"EvtCancel","features":[3,175]},{"name":"EvtChannelClockTypeQPC","features":[175]},{"name":"EvtChannelClockTypeSystemTime","features":[175]},{"name":"EvtChannelConfigAccess","features":[175]},{"name":"EvtChannelConfigClassicEventlog","features":[175]},{"name":"EvtChannelConfigEnabled","features":[175]},{"name":"EvtChannelConfigIsolation","features":[175]},{"name":"EvtChannelConfigOwningPublisher","features":[175]},{"name":"EvtChannelConfigPropertyIdEND","features":[175]},{"name":"EvtChannelConfigType","features":[175]},{"name":"EvtChannelIsolationTypeApplication","features":[175]},{"name":"EvtChannelIsolationTypeCustom","features":[175]},{"name":"EvtChannelIsolationTypeSystem","features":[175]},{"name":"EvtChannelLoggingConfigAutoBackup","features":[175]},{"name":"EvtChannelLoggingConfigLogFilePath","features":[175]},{"name":"EvtChannelLoggingConfigMaxSize","features":[175]},{"name":"EvtChannelLoggingConfigRetention","features":[175]},{"name":"EvtChannelPublisherList","features":[175]},{"name":"EvtChannelPublishingConfigBufferSize","features":[175]},{"name":"EvtChannelPublishingConfigClockType","features":[175]},{"name":"EvtChannelPublishingConfigControlGuid","features":[175]},{"name":"EvtChannelPublishingConfigFileMax","features":[175]},{"name":"EvtChannelPublishingConfigKeywords","features":[175]},{"name":"EvtChannelPublishingConfigLatency","features":[175]},{"name":"EvtChannelPublishingConfigLevel","features":[175]},{"name":"EvtChannelPublishingConfigMaxBuffers","features":[175]},{"name":"EvtChannelPublishingConfigMinBuffers","features":[175]},{"name":"EvtChannelPublishingConfigSidType","features":[175]},{"name":"EvtChannelReferenceImported","features":[175]},{"name":"EvtChannelSidTypeNone","features":[175]},{"name":"EvtChannelSidTypePublishing","features":[175]},{"name":"EvtChannelTypeAdmin","features":[175]},{"name":"EvtChannelTypeAnalytic","features":[175]},{"name":"EvtChannelTypeDebug","features":[175]},{"name":"EvtChannelTypeOperational","features":[175]},{"name":"EvtClearLog","features":[3,175]},{"name":"EvtClose","features":[3,175]},{"name":"EvtCreateBookmark","features":[175]},{"name":"EvtCreateRenderContext","features":[175]},{"name":"EvtEventMetadataPropertyIdEND","features":[175]},{"name":"EvtEventPath","features":[175]},{"name":"EvtEventPropertyIdEND","features":[175]},{"name":"EvtEventQueryIDs","features":[175]},{"name":"EvtExportLog","features":[3,175]},{"name":"EvtExportLogChannelPath","features":[175]},{"name":"EvtExportLogFilePath","features":[175]},{"name":"EvtExportLogOverwrite","features":[175]},{"name":"EvtExportLogTolerateQueryErrors","features":[175]},{"name":"EvtFormatMessage","features":[3,6,175]},{"name":"EvtFormatMessageChannel","features":[175]},{"name":"EvtFormatMessageEvent","features":[175]},{"name":"EvtFormatMessageId","features":[175]},{"name":"EvtFormatMessageKeyword","features":[175]},{"name":"EvtFormatMessageLevel","features":[175]},{"name":"EvtFormatMessageOpcode","features":[175]},{"name":"EvtFormatMessageProvider","features":[175]},{"name":"EvtFormatMessageTask","features":[175]},{"name":"EvtFormatMessageXml","features":[175]},{"name":"EvtGetChannelConfigProperty","features":[3,6,175]},{"name":"EvtGetEventInfo","features":[3,6,175]},{"name":"EvtGetEventMetadataProperty","features":[3,6,175]},{"name":"EvtGetExtendedStatus","features":[175]},{"name":"EvtGetLogInfo","features":[3,6,175]},{"name":"EvtGetObjectArrayProperty","features":[3,6,175]},{"name":"EvtGetObjectArraySize","features":[3,175]},{"name":"EvtGetPublisherMetadataProperty","features":[3,6,175]},{"name":"EvtGetQueryInfo","features":[3,6,175]},{"name":"EvtLogAttributes","features":[175]},{"name":"EvtLogCreationTime","features":[175]},{"name":"EvtLogFileSize","features":[175]},{"name":"EvtLogFull","features":[175]},{"name":"EvtLogLastAccessTime","features":[175]},{"name":"EvtLogLastWriteTime","features":[175]},{"name":"EvtLogNumberOfLogRecords","features":[175]},{"name":"EvtLogOldestRecordNumber","features":[175]},{"name":"EvtNext","features":[3,175]},{"name":"EvtNextChannelPath","features":[3,175]},{"name":"EvtNextEventMetadata","features":[175]},{"name":"EvtNextPublisherId","features":[3,175]},{"name":"EvtOpenChannelConfig","features":[175]},{"name":"EvtOpenChannelEnum","features":[175]},{"name":"EvtOpenChannelPath","features":[175]},{"name":"EvtOpenEventMetadataEnum","features":[175]},{"name":"EvtOpenFilePath","features":[175]},{"name":"EvtOpenLog","features":[175]},{"name":"EvtOpenPublisherEnum","features":[175]},{"name":"EvtOpenPublisherMetadata","features":[175]},{"name":"EvtOpenSession","features":[175]},{"name":"EvtPublisherMetadataChannelReferenceFlags","features":[175]},{"name":"EvtPublisherMetadataChannelReferenceID","features":[175]},{"name":"EvtPublisherMetadataChannelReferenceIndex","features":[175]},{"name":"EvtPublisherMetadataChannelReferenceMessageID","features":[175]},{"name":"EvtPublisherMetadataChannelReferencePath","features":[175]},{"name":"EvtPublisherMetadataChannelReferences","features":[175]},{"name":"EvtPublisherMetadataHelpLink","features":[175]},{"name":"EvtPublisherMetadataKeywordMessageID","features":[175]},{"name":"EvtPublisherMetadataKeywordName","features":[175]},{"name":"EvtPublisherMetadataKeywordValue","features":[175]},{"name":"EvtPublisherMetadataKeywords","features":[175]},{"name":"EvtPublisherMetadataLevelMessageID","features":[175]},{"name":"EvtPublisherMetadataLevelName","features":[175]},{"name":"EvtPublisherMetadataLevelValue","features":[175]},{"name":"EvtPublisherMetadataLevels","features":[175]},{"name":"EvtPublisherMetadataMessageFilePath","features":[175]},{"name":"EvtPublisherMetadataOpcodeMessageID","features":[175]},{"name":"EvtPublisherMetadataOpcodeName","features":[175]},{"name":"EvtPublisherMetadataOpcodeValue","features":[175]},{"name":"EvtPublisherMetadataOpcodes","features":[175]},{"name":"EvtPublisherMetadataParameterFilePath","features":[175]},{"name":"EvtPublisherMetadataPropertyIdEND","features":[175]},{"name":"EvtPublisherMetadataPublisherGuid","features":[175]},{"name":"EvtPublisherMetadataPublisherMessageID","features":[175]},{"name":"EvtPublisherMetadataResourceFilePath","features":[175]},{"name":"EvtPublisherMetadataTaskEventGuid","features":[175]},{"name":"EvtPublisherMetadataTaskMessageID","features":[175]},{"name":"EvtPublisherMetadataTaskName","features":[175]},{"name":"EvtPublisherMetadataTaskValue","features":[175]},{"name":"EvtPublisherMetadataTasks","features":[175]},{"name":"EvtQuery","features":[175]},{"name":"EvtQueryChannelPath","features":[175]},{"name":"EvtQueryFilePath","features":[175]},{"name":"EvtQueryForwardDirection","features":[175]},{"name":"EvtQueryNames","features":[175]},{"name":"EvtQueryPropertyIdEND","features":[175]},{"name":"EvtQueryReverseDirection","features":[175]},{"name":"EvtQueryStatuses","features":[175]},{"name":"EvtQueryTolerateQueryErrors","features":[175]},{"name":"EvtRender","features":[3,175]},{"name":"EvtRenderBookmark","features":[175]},{"name":"EvtRenderContextSystem","features":[175]},{"name":"EvtRenderContextUser","features":[175]},{"name":"EvtRenderContextValues","features":[175]},{"name":"EvtRenderEventValues","features":[175]},{"name":"EvtRenderEventXml","features":[175]},{"name":"EvtRpcLogin","features":[175]},{"name":"EvtRpcLoginAuthDefault","features":[175]},{"name":"EvtRpcLoginAuthKerberos","features":[175]},{"name":"EvtRpcLoginAuthNTLM","features":[175]},{"name":"EvtRpcLoginAuthNegotiate","features":[175]},{"name":"EvtSaveChannelConfig","features":[3,175]},{"name":"EvtSeek","features":[3,175]},{"name":"EvtSeekOriginMask","features":[175]},{"name":"EvtSeekRelativeToBookmark","features":[175]},{"name":"EvtSeekRelativeToCurrent","features":[175]},{"name":"EvtSeekRelativeToFirst","features":[175]},{"name":"EvtSeekRelativeToLast","features":[175]},{"name":"EvtSeekStrict","features":[175]},{"name":"EvtSetChannelConfigProperty","features":[3,6,175]},{"name":"EvtSubscribe","features":[3,175]},{"name":"EvtSubscribeActionDeliver","features":[175]},{"name":"EvtSubscribeActionError","features":[175]},{"name":"EvtSubscribeOriginMask","features":[175]},{"name":"EvtSubscribeStartAfterBookmark","features":[175]},{"name":"EvtSubscribeStartAtOldestRecord","features":[175]},{"name":"EvtSubscribeStrict","features":[175]},{"name":"EvtSubscribeToFutureEvents","features":[175]},{"name":"EvtSubscribeTolerateQueryErrors","features":[175]},{"name":"EvtSystemActivityID","features":[175]},{"name":"EvtSystemChannel","features":[175]},{"name":"EvtSystemComputer","features":[175]},{"name":"EvtSystemEventID","features":[175]},{"name":"EvtSystemEventRecordId","features":[175]},{"name":"EvtSystemKeywords","features":[175]},{"name":"EvtSystemLevel","features":[175]},{"name":"EvtSystemOpcode","features":[175]},{"name":"EvtSystemProcessID","features":[175]},{"name":"EvtSystemPropertyIdEND","features":[175]},{"name":"EvtSystemProviderGuid","features":[175]},{"name":"EvtSystemProviderName","features":[175]},{"name":"EvtSystemQualifiers","features":[175]},{"name":"EvtSystemRelatedActivityID","features":[175]},{"name":"EvtSystemTask","features":[175]},{"name":"EvtSystemThreadID","features":[175]},{"name":"EvtSystemTimeCreated","features":[175]},{"name":"EvtSystemUserID","features":[175]},{"name":"EvtSystemVersion","features":[175]},{"name":"EvtUpdateBookmark","features":[3,175]},{"name":"EvtVarTypeAnsiString","features":[175]},{"name":"EvtVarTypeBinary","features":[175]},{"name":"EvtVarTypeBoolean","features":[175]},{"name":"EvtVarTypeByte","features":[175]},{"name":"EvtVarTypeDouble","features":[175]},{"name":"EvtVarTypeEvtHandle","features":[175]},{"name":"EvtVarTypeEvtXml","features":[175]},{"name":"EvtVarTypeFileTime","features":[175]},{"name":"EvtVarTypeGuid","features":[175]},{"name":"EvtVarTypeHexInt32","features":[175]},{"name":"EvtVarTypeHexInt64","features":[175]},{"name":"EvtVarTypeInt16","features":[175]},{"name":"EvtVarTypeInt32","features":[175]},{"name":"EvtVarTypeInt64","features":[175]},{"name":"EvtVarTypeNull","features":[175]},{"name":"EvtVarTypeSByte","features":[175]},{"name":"EvtVarTypeSid","features":[175]},{"name":"EvtVarTypeSingle","features":[175]},{"name":"EvtVarTypeSizeT","features":[175]},{"name":"EvtVarTypeString","features":[175]},{"name":"EvtVarTypeSysTime","features":[175]},{"name":"EvtVarTypeUInt16","features":[175]},{"name":"EvtVarTypeUInt32","features":[175]},{"name":"EvtVarTypeUInt64","features":[175]},{"name":"GetEventLogInformation","features":[3,175]},{"name":"GetNumberOfEventLogRecords","features":[3,175]},{"name":"GetOldestEventLogRecord","features":[3,175]},{"name":"NotifyChangeEventLog","features":[3,175]},{"name":"OpenBackupEventLogA","features":[3,175]},{"name":"OpenBackupEventLogW","features":[3,175]},{"name":"OpenEventLogA","features":[3,175]},{"name":"OpenEventLogW","features":[3,175]},{"name":"READ_EVENT_LOG_READ_FLAGS","features":[175]},{"name":"REPORT_EVENT_TYPE","features":[175]},{"name":"ReadEventLogA","features":[3,175]},{"name":"ReadEventLogW","features":[3,175]},{"name":"RegisterEventSourceA","features":[3,175]},{"name":"RegisterEventSourceW","features":[3,175]},{"name":"ReportEventA","features":[3,6,175]},{"name":"ReportEventW","features":[3,6,175]}],"567":[{"name":"CONNECTION_AOL","features":[176]},{"name":"CONNECTION_LAN","features":[176]},{"name":"CONNECTION_WAN","features":[176]},{"name":"ISensLogon","features":[176]},{"name":"ISensLogon2","features":[176]},{"name":"ISensNetwork","features":[176]},{"name":"ISensOnNow","features":[176]},{"name":"IsDestinationReachableA","features":[3,176]},{"name":"IsDestinationReachableW","features":[3,176]},{"name":"IsNetworkAlive","features":[3,176]},{"name":"NETWORK_ALIVE_AOL","features":[176]},{"name":"NETWORK_ALIVE_INTERNET","features":[176]},{"name":"NETWORK_ALIVE_LAN","features":[176]},{"name":"NETWORK_ALIVE_WAN","features":[176]},{"name":"QOCINFO","features":[176]},{"name":"SENS","features":[176]},{"name":"SENSGUID_EVENTCLASS_LOGON","features":[176]},{"name":"SENSGUID_EVENTCLASS_LOGON2","features":[176]},{"name":"SENSGUID_EVENTCLASS_NETWORK","features":[176]},{"name":"SENSGUID_EVENTCLASS_ONNOW","features":[176]},{"name":"SENSGUID_PUBLISHER","features":[176]},{"name":"SENSGUID_SUBSCRIBER_LCE","features":[176]},{"name":"SENSGUID_SUBSCRIBER_WININET","features":[176]},{"name":"SENS_CONNECTION_TYPE","features":[176]},{"name":"SENS_QOCINFO","features":[176]}],"568":[{"name":"ABSENT","features":[177]},{"name":"ADMXCOMMENTS_EXTENSION_GUID","features":[177]},{"name":"APPNAME","features":[177]},{"name":"APPSTATE","features":[177]},{"name":"ASSIGNED","features":[177]},{"name":"BrowseForGPO","features":[3,177]},{"name":"CLSID_GPESnapIn","features":[177]},{"name":"CLSID_GroupPolicyObject","features":[177]},{"name":"CLSID_RSOPSnapIn","features":[177]},{"name":"COMCLASS","features":[177]},{"name":"CommandLineFromMsiDescriptor","features":[177]},{"name":"CreateGPOLink","features":[3,177]},{"name":"DeleteAllGPOLinks","features":[177]},{"name":"DeleteGPOLink","features":[177]},{"name":"EnterCriticalPolicySection","features":[3,177]},{"name":"ExportRSoPData","features":[177]},{"name":"FILEEXT","features":[177]},{"name":"FLAG_ASSUME_COMP_WQLFILTER_TRUE","features":[177]},{"name":"FLAG_ASSUME_SLOW_LINK","features":[177]},{"name":"FLAG_ASSUME_USER_WQLFILTER_TRUE","features":[177]},{"name":"FLAG_FORCE_CREATENAMESPACE","features":[177]},{"name":"FLAG_LOOPBACK_MERGE","features":[177]},{"name":"FLAG_LOOPBACK_REPLACE","features":[177]},{"name":"FLAG_NO_COMPUTER","features":[177]},{"name":"FLAG_NO_CSE_INVOKE","features":[177]},{"name":"FLAG_NO_GPO_FILTER","features":[177]},{"name":"FLAG_NO_USER","features":[177]},{"name":"FLAG_PLANNING_MODE","features":[177]},{"name":"FreeGPOListA","features":[3,177]},{"name":"FreeGPOListW","features":[3,177]},{"name":"GPC_BLOCK_POLICY","features":[177]},{"name":"GPHintDomain","features":[177]},{"name":"GPHintMachine","features":[177]},{"name":"GPHintOrganizationalUnit","features":[177]},{"name":"GPHintSite","features":[177]},{"name":"GPHintUnknown","features":[177]},{"name":"GPLinkDomain","features":[177]},{"name":"GPLinkMachine","features":[177]},{"name":"GPLinkOrganizationalUnit","features":[177]},{"name":"GPLinkSite","features":[177]},{"name":"GPLinkUnknown","features":[177]},{"name":"GPM","features":[177]},{"name":"GPMAsyncCancel","features":[177]},{"name":"GPMBackup","features":[177]},{"name":"GPMBackupCollection","features":[177]},{"name":"GPMBackupDir","features":[177]},{"name":"GPMBackupDirEx","features":[177]},{"name":"GPMBackupType","features":[177]},{"name":"GPMCSECollection","features":[177]},{"name":"GPMClientSideExtension","features":[177]},{"name":"GPMConstants","features":[177]},{"name":"GPMDestinationOption","features":[177]},{"name":"GPMDomain","features":[177]},{"name":"GPMEntryType","features":[177]},{"name":"GPMGPO","features":[177]},{"name":"GPMGPOCollection","features":[177]},{"name":"GPMGPOLink","features":[177]},{"name":"GPMGPOLinksCollection","features":[177]},{"name":"GPMMapEntry","features":[177]},{"name":"GPMMapEntryCollection","features":[177]},{"name":"GPMMigrationTable","features":[177]},{"name":"GPMPermission","features":[177]},{"name":"GPMPermissionType","features":[177]},{"name":"GPMRSOP","features":[177]},{"name":"GPMRSOPMode","features":[177]},{"name":"GPMReportType","features":[177]},{"name":"GPMReportingOptions","features":[177]},{"name":"GPMResult","features":[177]},{"name":"GPMSOM","features":[177]},{"name":"GPMSOMCollection","features":[177]},{"name":"GPMSOMType","features":[177]},{"name":"GPMSearchCriteria","features":[177]},{"name":"GPMSearchOperation","features":[177]},{"name":"GPMSearchProperty","features":[177]},{"name":"GPMSecurityInfo","features":[177]},{"name":"GPMSitesContainer","features":[177]},{"name":"GPMStarterGPOBackup","features":[177]},{"name":"GPMStarterGPOBackupCollection","features":[177]},{"name":"GPMStarterGPOCollection","features":[177]},{"name":"GPMStarterGPOType","features":[177]},{"name":"GPMStatusMessage","features":[177]},{"name":"GPMStatusMsgCollection","features":[177]},{"name":"GPMTemplate","features":[177]},{"name":"GPMTrustee","features":[177]},{"name":"GPMWMIFilter","features":[177]},{"name":"GPMWMIFilterCollection","features":[177]},{"name":"GPM_DONOTUSE_W2KDC","features":[177]},{"name":"GPM_DONOT_VALIDATEDC","features":[177]},{"name":"GPM_MIGRATIONTABLE_ONLY","features":[177]},{"name":"GPM_PROCESS_SECURITY","features":[177]},{"name":"GPM_USE_ANYDC","features":[177]},{"name":"GPM_USE_PDC","features":[177]},{"name":"GPOBROWSEINFO","features":[3,177]},{"name":"GPOTypeDS","features":[177]},{"name":"GPOTypeLocal","features":[177]},{"name":"GPOTypeLocalGroup","features":[177]},{"name":"GPOTypeLocalUser","features":[177]},{"name":"GPOTypeRemote","features":[177]},{"name":"GPO_BROWSE_DISABLENEW","features":[177]},{"name":"GPO_BROWSE_INITTOALL","features":[177]},{"name":"GPO_BROWSE_NOCOMPUTERS","features":[177]},{"name":"GPO_BROWSE_NODSGPOS","features":[177]},{"name":"GPO_BROWSE_NOUSERGPOS","features":[177]},{"name":"GPO_BROWSE_OPENBUTTON","features":[177]},{"name":"GPO_BROWSE_SENDAPPLYONEDIT","features":[177]},{"name":"GPO_FLAG_DISABLE","features":[177]},{"name":"GPO_FLAG_FORCE","features":[177]},{"name":"GPO_INFO_FLAG_ASYNC_FOREGROUND","features":[177]},{"name":"GPO_INFO_FLAG_BACKGROUND","features":[177]},{"name":"GPO_INFO_FLAG_FORCED_REFRESH","features":[177]},{"name":"GPO_INFO_FLAG_LINKTRANSITION","features":[177]},{"name":"GPO_INFO_FLAG_LOGRSOP_TRANSITION","features":[177]},{"name":"GPO_INFO_FLAG_MACHINE","features":[177]},{"name":"GPO_INFO_FLAG_NOCHANGES","features":[177]},{"name":"GPO_INFO_FLAG_SAFEMODE_BOOT","features":[177]},{"name":"GPO_INFO_FLAG_SLOWLINK","features":[177]},{"name":"GPO_INFO_FLAG_VERBOSE","features":[177]},{"name":"GPO_LINK","features":[177]},{"name":"GPO_LIST_FLAG_MACHINE","features":[177]},{"name":"GPO_LIST_FLAG_NO_SECURITYFILTERS","features":[177]},{"name":"GPO_LIST_FLAG_NO_WMIFILTERS","features":[177]},{"name":"GPO_LIST_FLAG_SITEONLY","features":[177]},{"name":"GPO_OPEN_FLAGS","features":[177]},{"name":"GPO_OPEN_LOAD_REGISTRY","features":[177]},{"name":"GPO_OPEN_READ_ONLY","features":[177]},{"name":"GPO_OPTIONS","features":[177]},{"name":"GPO_OPTION_DISABLE_MACHINE","features":[177]},{"name":"GPO_OPTION_DISABLE_USER","features":[177]},{"name":"GPO_SECTION","features":[177]},{"name":"GPO_SECTION_MACHINE","features":[177]},{"name":"GPO_SECTION_ROOT","features":[177]},{"name":"GPO_SECTION_USER","features":[177]},{"name":"GP_DLLNAME","features":[177]},{"name":"GP_ENABLEASYNCHRONOUSPROCESSING","features":[177]},{"name":"GP_MAXNOGPOLISTCHANGESINTERVAL","features":[177]},{"name":"GP_NOBACKGROUNDPOLICY","features":[177]},{"name":"GP_NOGPOLISTCHANGES","features":[177]},{"name":"GP_NOMACHINEPOLICY","features":[177]},{"name":"GP_NOSLOWLINK","features":[177]},{"name":"GP_NOTIFYLINKTRANSITION","features":[177]},{"name":"GP_NOUSERPOLICY","features":[177]},{"name":"GP_PERUSERLOCALSETTINGS","features":[177]},{"name":"GP_PROCESSGROUPPOLICY","features":[177]},{"name":"GP_REQUIRESSUCCESSFULREGISTRY","features":[177]},{"name":"GROUP_POLICY_HINT_TYPE","features":[177]},{"name":"GROUP_POLICY_OBJECTA","features":[3,177]},{"name":"GROUP_POLICY_OBJECTW","features":[3,177]},{"name":"GROUP_POLICY_OBJECT_TYPE","features":[177]},{"name":"GROUP_POLICY_TRIGGER_EVENT_PROVIDER_GUID","features":[177]},{"name":"GenerateGPNotification","features":[3,177]},{"name":"GetAppliedGPOListA","features":[3,6,177]},{"name":"GetAppliedGPOListW","features":[3,6,177]},{"name":"GetGPOListA","features":[3,177]},{"name":"GetGPOListW","features":[3,177]},{"name":"GetLocalManagedApplicationData","features":[177]},{"name":"GetLocalManagedApplications","features":[3,177]},{"name":"GetManagedApplicationCategories","features":[177,111]},{"name":"GetManagedApplications","features":[3,177]},{"name":"IGPEInformation","features":[177]},{"name":"IGPM","features":[177]},{"name":"IGPM2","features":[177]},{"name":"IGPMAsyncCancel","features":[177]},{"name":"IGPMAsyncProgress","features":[177]},{"name":"IGPMBackup","features":[177]},{"name":"IGPMBackupCollection","features":[177]},{"name":"IGPMBackupDir","features":[177]},{"name":"IGPMBackupDirEx","features":[177]},{"name":"IGPMCSECollection","features":[177]},{"name":"IGPMClientSideExtension","features":[177]},{"name":"IGPMConstants","features":[177]},{"name":"IGPMConstants2","features":[177]},{"name":"IGPMDomain","features":[177]},{"name":"IGPMDomain2","features":[177]},{"name":"IGPMDomain3","features":[177]},{"name":"IGPMGPO","features":[177]},{"name":"IGPMGPO2","features":[177]},{"name":"IGPMGPO3","features":[177]},{"name":"IGPMGPOCollection","features":[177]},{"name":"IGPMGPOLink","features":[177]},{"name":"IGPMGPOLinksCollection","features":[177]},{"name":"IGPMMapEntry","features":[177]},{"name":"IGPMMapEntryCollection","features":[177]},{"name":"IGPMMigrationTable","features":[177]},{"name":"IGPMPermission","features":[177]},{"name":"IGPMRSOP","features":[177]},{"name":"IGPMResult","features":[177]},{"name":"IGPMSOM","features":[177]},{"name":"IGPMSOMCollection","features":[177]},{"name":"IGPMSearchCriteria","features":[177]},{"name":"IGPMSecurityInfo","features":[177]},{"name":"IGPMSitesContainer","features":[177]},{"name":"IGPMStarterGPO","features":[177]},{"name":"IGPMStarterGPOBackup","features":[177]},{"name":"IGPMStarterGPOBackupCollection","features":[177]},{"name":"IGPMStarterGPOCollection","features":[177]},{"name":"IGPMStatusMessage","features":[177]},{"name":"IGPMStatusMsgCollection","features":[177]},{"name":"IGPMTrustee","features":[177]},{"name":"IGPMWMIFilter","features":[177]},{"name":"IGPMWMIFilterCollection","features":[177]},{"name":"IGroupPolicyObject","features":[177]},{"name":"INSTALLDATA","features":[177]},{"name":"INSTALLSPEC","features":[177]},{"name":"INSTALLSPECTYPE","features":[177]},{"name":"IRSOPInformation","features":[177]},{"name":"ImportRSoPData","features":[177]},{"name":"InstallApplication","features":[177]},{"name":"LOCALMANAGEDAPPLICATION","features":[177]},{"name":"LOCALSTATE_ASSIGNED","features":[177]},{"name":"LOCALSTATE_ORPHANED","features":[177]},{"name":"LOCALSTATE_POLICYREMOVE_ORPHAN","features":[177]},{"name":"LOCALSTATE_POLICYREMOVE_UNINSTALL","features":[177]},{"name":"LOCALSTATE_PUBLISHED","features":[177]},{"name":"LOCALSTATE_UNINSTALLED","features":[177]},{"name":"LOCALSTATE_UNINSTALL_UNMANAGED","features":[177]},{"name":"LeaveCriticalPolicySection","features":[3,177]},{"name":"MACHINE_POLICY_PRESENT_TRIGGER_GUID","features":[177]},{"name":"MANAGEDAPPLICATION","features":[3,177]},{"name":"MANAGED_APPS_FROMCATEGORY","features":[177]},{"name":"MANAGED_APPS_INFOLEVEL_DEFAULT","features":[177]},{"name":"MANAGED_APPS_USERAPPLICATIONS","features":[177]},{"name":"MANAGED_APPTYPE_SETUPEXE","features":[177]},{"name":"MANAGED_APPTYPE_UNSUPPORTED","features":[177]},{"name":"MANAGED_APPTYPE_WINDOWSINSTALLER","features":[177]},{"name":"NODEID_Machine","features":[177]},{"name":"NODEID_MachineSWSettings","features":[177]},{"name":"NODEID_RSOPMachine","features":[177]},{"name":"NODEID_RSOPMachineSWSettings","features":[177]},{"name":"NODEID_RSOPUser","features":[177]},{"name":"NODEID_RSOPUserSWSettings","features":[177]},{"name":"NODEID_User","features":[177]},{"name":"NODEID_UserSWSettings","features":[177]},{"name":"PFNGENERATEGROUPPOLICY","features":[3,43,177]},{"name":"PFNPROCESSGROUPPOLICY","features":[3,177,51]},{"name":"PFNPROCESSGROUPPOLICYEX","features":[3,177,51]},{"name":"PFNSTATUSMESSAGECALLBACK","features":[3,177]},{"name":"PI_APPLYPOLICY","features":[177]},{"name":"PI_NOUI","features":[177]},{"name":"POLICYSETTINGSTATUSINFO","features":[3,177]},{"name":"PROGID","features":[177]},{"name":"PT_MANDATORY","features":[177]},{"name":"PT_ROAMING","features":[177]},{"name":"PT_ROAMING_PREEXISTING","features":[177]},{"name":"PT_TEMPORARY","features":[177]},{"name":"PUBLISHED","features":[177]},{"name":"ProcessGroupPolicyCompleted","features":[177]},{"name":"ProcessGroupPolicyCompletedEx","features":[177]},{"name":"REGISTRY_EXTENSION_GUID","features":[177]},{"name":"RP_FORCE","features":[177]},{"name":"RP_SYNC","features":[177]},{"name":"RSOPApplied","features":[177]},{"name":"RSOPFailed","features":[177]},{"name":"RSOPIgnored","features":[177]},{"name":"RSOPSubsettingFailed","features":[177]},{"name":"RSOPUnspecified","features":[177]},{"name":"RSOP_COMPUTER_ACCESS_DENIED","features":[177]},{"name":"RSOP_INFO_FLAG_DIAGNOSTIC_MODE","features":[177]},{"name":"RSOP_NO_COMPUTER","features":[177]},{"name":"RSOP_NO_USER","features":[177]},{"name":"RSOP_PLANNING_ASSUME_COMP_WQLFILTER_TRUE","features":[177]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_MERGE","features":[177]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_REPLACE","features":[177]},{"name":"RSOP_PLANNING_ASSUME_SLOW_LINK","features":[177]},{"name":"RSOP_PLANNING_ASSUME_USER_WQLFILTER_TRUE","features":[177]},{"name":"RSOP_TARGET","features":[3,43,177]},{"name":"RSOP_TEMPNAMESPACE_EXISTS","features":[177]},{"name":"RSOP_USER_ACCESS_DENIED","features":[177]},{"name":"RefreshPolicy","features":[3,177]},{"name":"RefreshPolicyEx","features":[3,177]},{"name":"RegisterGPNotification","features":[3,177]},{"name":"RsopAccessCheckByType","features":[3,6,177]},{"name":"RsopFileAccessCheck","features":[3,177]},{"name":"RsopResetPolicySettingStatus","features":[177]},{"name":"RsopSetPolicySettingStatus","features":[3,177]},{"name":"SETTINGSTATUS","features":[177]},{"name":"USER_POLICY_PRESENT_TRIGGER_GUID","features":[177]},{"name":"UninstallApplication","features":[177]},{"name":"UnregisterGPNotification","features":[3,177]},{"name":"backupMostRecent","features":[177]},{"name":"gpoComputerExtensions","features":[177]},{"name":"gpoDisplayName","features":[177]},{"name":"gpoDomain","features":[177]},{"name":"gpoEffectivePermissions","features":[177]},{"name":"gpoID","features":[177]},{"name":"gpoPermissions","features":[177]},{"name":"gpoUserExtensions","features":[177]},{"name":"gpoWMIFilter","features":[177]},{"name":"opContains","features":[177]},{"name":"opDestinationByRelativeName","features":[177]},{"name":"opDestinationNone","features":[177]},{"name":"opDestinationSameAsSource","features":[177]},{"name":"opDestinationSet","features":[177]},{"name":"opEquals","features":[177]},{"name":"opNotContains","features":[177]},{"name":"opNotEquals","features":[177]},{"name":"opReportComments","features":[177]},{"name":"opReportLegacy","features":[177]},{"name":"permGPOApply","features":[177]},{"name":"permGPOCustom","features":[177]},{"name":"permGPOEdit","features":[177]},{"name":"permGPOEditSecurityAndDelete","features":[177]},{"name":"permGPORead","features":[177]},{"name":"permSOMGPOCreate","features":[177]},{"name":"permSOMLink","features":[177]},{"name":"permSOMLogging","features":[177]},{"name":"permSOMPlanning","features":[177]},{"name":"permSOMStarterGPOCreate","features":[177]},{"name":"permSOMWMICreate","features":[177]},{"name":"permSOMWMIFullControl","features":[177]},{"name":"permStarterGPOCustom","features":[177]},{"name":"permStarterGPOEdit","features":[177]},{"name":"permStarterGPOFullControl","features":[177]},{"name":"permStarterGPORead","features":[177]},{"name":"permWMIFilterCustom","features":[177]},{"name":"permWMIFilterEdit","features":[177]},{"name":"permWMIFilterFullControl","features":[177]},{"name":"repClientHealthRefreshXML","features":[177]},{"name":"repClientHealthXML","features":[177]},{"name":"repHTML","features":[177]},{"name":"repInfraRefreshXML","features":[177]},{"name":"repInfraXML","features":[177]},{"name":"repXML","features":[177]},{"name":"rsopLogging","features":[177]},{"name":"rsopPlanning","features":[177]},{"name":"rsopUnknown","features":[177]},{"name":"somDomain","features":[177]},{"name":"somLinks","features":[177]},{"name":"somOU","features":[177]},{"name":"somSite","features":[177]},{"name":"starterGPODisplayName","features":[177]},{"name":"starterGPODomain","features":[177]},{"name":"starterGPOEffectivePermissions","features":[177]},{"name":"starterGPOID","features":[177]},{"name":"starterGPOPermissions","features":[177]},{"name":"typeComputer","features":[177]},{"name":"typeCustom","features":[177]},{"name":"typeGPO","features":[177]},{"name":"typeGlobalGroup","features":[177]},{"name":"typeLocalGroup","features":[177]},{"name":"typeStarterGPO","features":[177]},{"name":"typeSystem","features":[177]},{"name":"typeUNCPath","features":[177]},{"name":"typeUniversalGroup","features":[177]},{"name":"typeUnknown","features":[177]},{"name":"typeUser","features":[177]}],"569":[{"name":"HCS_CALLBACK","features":[178]}],"570":[{"name":"HCN_NOTIFICATIONS","features":[179]},{"name":"HCN_NOTIFICATION_CALLBACK","features":[179]},{"name":"HCN_PORT_ACCESS","features":[179]},{"name":"HCN_PORT_ACCESS_EXCLUSIVE","features":[179]},{"name":"HCN_PORT_ACCESS_SHARED","features":[179]},{"name":"HCN_PORT_PROTOCOL","features":[179]},{"name":"HCN_PORT_PROTOCOL_BOTH","features":[179]},{"name":"HCN_PORT_PROTOCOL_TCP","features":[179]},{"name":"HCN_PORT_PROTOCOL_UDP","features":[179]},{"name":"HCN_PORT_RANGE_ENTRY","features":[179]},{"name":"HCN_PORT_RANGE_RESERVATION","features":[179]},{"name":"HcnCloseEndpoint","features":[179]},{"name":"HcnCloseGuestNetworkService","features":[179]},{"name":"HcnCloseLoadBalancer","features":[179]},{"name":"HcnCloseNamespace","features":[179]},{"name":"HcnCloseNetwork","features":[179]},{"name":"HcnCreateEndpoint","features":[179]},{"name":"HcnCreateGuestNetworkService","features":[179]},{"name":"HcnCreateLoadBalancer","features":[179]},{"name":"HcnCreateNamespace","features":[179]},{"name":"HcnCreateNetwork","features":[179]},{"name":"HcnDeleteEndpoint","features":[179]},{"name":"HcnDeleteGuestNetworkService","features":[179]},{"name":"HcnDeleteLoadBalancer","features":[179]},{"name":"HcnDeleteNamespace","features":[179]},{"name":"HcnDeleteNetwork","features":[179]},{"name":"HcnEnumerateEndpoints","features":[179]},{"name":"HcnEnumerateGuestNetworkPortReservations","features":[179]},{"name":"HcnEnumerateLoadBalancers","features":[179]},{"name":"HcnEnumerateNamespaces","features":[179]},{"name":"HcnEnumerateNetworks","features":[179]},{"name":"HcnFreeGuestNetworkPortReservations","features":[179]},{"name":"HcnModifyEndpoint","features":[179]},{"name":"HcnModifyGuestNetworkService","features":[179]},{"name":"HcnModifyLoadBalancer","features":[179]},{"name":"HcnModifyNamespace","features":[179]},{"name":"HcnModifyNetwork","features":[179]},{"name":"HcnNotificationFlagsReserved","features":[179]},{"name":"HcnNotificationGuestNetworkServiceCreate","features":[179]},{"name":"HcnNotificationGuestNetworkServiceDelete","features":[179]},{"name":"HcnNotificationGuestNetworkServiceInterfaceStateChanged","features":[179]},{"name":"HcnNotificationGuestNetworkServiceStateChanged","features":[179]},{"name":"HcnNotificationInvalid","features":[179]},{"name":"HcnNotificationNamespaceCreate","features":[179]},{"name":"HcnNotificationNamespaceDelete","features":[179]},{"name":"HcnNotificationNetworkCreate","features":[179]},{"name":"HcnNotificationNetworkDelete","features":[179]},{"name":"HcnNotificationNetworkEndpointAttached","features":[179]},{"name":"HcnNotificationNetworkEndpointDetached","features":[179]},{"name":"HcnNotificationNetworkPreCreate","features":[179]},{"name":"HcnNotificationNetworkPreDelete","features":[179]},{"name":"HcnNotificationServiceDisconnect","features":[179]},{"name":"HcnOpenEndpoint","features":[179]},{"name":"HcnOpenLoadBalancer","features":[179]},{"name":"HcnOpenNamespace","features":[179]},{"name":"HcnOpenNetwork","features":[179]},{"name":"HcnQueryEndpointAddresses","features":[179]},{"name":"HcnQueryEndpointProperties","features":[179]},{"name":"HcnQueryEndpointStats","features":[179]},{"name":"HcnQueryLoadBalancerProperties","features":[179]},{"name":"HcnQueryNamespaceProperties","features":[179]},{"name":"HcnQueryNetworkProperties","features":[179]},{"name":"HcnRegisterGuestNetworkServiceCallback","features":[179]},{"name":"HcnRegisterServiceCallback","features":[179]},{"name":"HcnReleaseGuestNetworkServicePortReservationHandle","features":[3,179]},{"name":"HcnReserveGuestNetworkServicePort","features":[3,179]},{"name":"HcnReserveGuestNetworkServicePortRange","features":[3,179]},{"name":"HcnUnregisterGuestNetworkServiceCallback","features":[179]},{"name":"HcnUnregisterServiceCallback","features":[179]}],"571":[{"name":"HCS_CREATE_OPTIONS","features":[180]},{"name":"HCS_CREATE_OPTIONS_1","features":[3,6,180]},{"name":"HCS_EVENT","features":[180]},{"name":"HCS_EVENT_CALLBACK","features":[180]},{"name":"HCS_EVENT_OPTIONS","features":[180]},{"name":"HCS_EVENT_TYPE","features":[180]},{"name":"HCS_NOTIFICATIONS","features":[180]},{"name":"HCS_NOTIFICATION_CALLBACK","features":[180]},{"name":"HCS_NOTIFICATION_FLAGS","features":[180]},{"name":"HCS_OPERATION","features":[180]},{"name":"HCS_OPERATION_COMPLETION","features":[180]},{"name":"HCS_OPERATION_OPTIONS","features":[180]},{"name":"HCS_OPERATION_TYPE","features":[180]},{"name":"HCS_PROCESS","features":[180]},{"name":"HCS_PROCESS_INFORMATION","features":[3,180]},{"name":"HCS_RESOURCE_TYPE","features":[180]},{"name":"HCS_SYSTEM","features":[180]},{"name":"HcsAddResourceToOperation","features":[3,180]},{"name":"HcsAttachLayerStorageFilter","features":[180]},{"name":"HcsCancelOperation","features":[180]},{"name":"HcsCloseComputeSystem","features":[180]},{"name":"HcsCloseOperation","features":[180]},{"name":"HcsCloseProcess","features":[180]},{"name":"HcsCrashComputeSystem","features":[180]},{"name":"HcsCreateComputeSystem","features":[6,180]},{"name":"HcsCreateComputeSystemInNamespace","features":[180]},{"name":"HcsCreateEmptyGuestStateFile","features":[180]},{"name":"HcsCreateEmptyRuntimeStateFile","features":[180]},{"name":"HcsCreateOperation","features":[180]},{"name":"HcsCreateOperationWithNotifications","features":[180]},{"name":"HcsCreateOptions_1","features":[180]},{"name":"HcsCreateProcess","features":[6,180]},{"name":"HcsDestroyLayer","features":[180]},{"name":"HcsDetachLayerStorageFilter","features":[180]},{"name":"HcsEnumerateComputeSystems","features":[180]},{"name":"HcsEnumerateComputeSystemsInNamespace","features":[180]},{"name":"HcsEventGroupOperationInfo","features":[180]},{"name":"HcsEventGroupVmLifecycle","features":[180]},{"name":"HcsEventInvalid","features":[180]},{"name":"HcsEventOperationCallback","features":[180]},{"name":"HcsEventOptionEnableOperationCallbacks","features":[180]},{"name":"HcsEventOptionEnableVmLifecycle","features":[180]},{"name":"HcsEventOptionNone","features":[180]},{"name":"HcsEventProcessExited","features":[180]},{"name":"HcsEventServiceDisconnect","features":[180]},{"name":"HcsEventSystemCrashInitiated","features":[180]},{"name":"HcsEventSystemCrashReport","features":[180]},{"name":"HcsEventSystemExited","features":[180]},{"name":"HcsEventSystemGuestConnectionClosed","features":[180]},{"name":"HcsEventSystemRdpEnhancedModeStateChanged","features":[180]},{"name":"HcsEventSystemSiloJobCreated","features":[180]},{"name":"HcsExportLayer","features":[180]},{"name":"HcsExportLegacyWritableLayer","features":[180]},{"name":"HcsFormatWritableLayerVhd","features":[3,180]},{"name":"HcsGetComputeSystemFromOperation","features":[180]},{"name":"HcsGetComputeSystemProperties","features":[180]},{"name":"HcsGetLayerVhdMountPath","features":[3,180]},{"name":"HcsGetOperationContext","features":[180]},{"name":"HcsGetOperationId","features":[180]},{"name":"HcsGetOperationResult","features":[180]},{"name":"HcsGetOperationResultAndProcessInfo","features":[3,180]},{"name":"HcsGetOperationType","features":[180]},{"name":"HcsGetProcessFromOperation","features":[180]},{"name":"HcsGetProcessInfo","features":[180]},{"name":"HcsGetProcessProperties","features":[180]},{"name":"HcsGetProcessorCompatibilityFromSavedState","features":[180]},{"name":"HcsGetServiceProperties","features":[180]},{"name":"HcsGrantVmAccess","features":[180]},{"name":"HcsGrantVmGroupAccess","features":[180]},{"name":"HcsImportLayer","features":[180]},{"name":"HcsInitializeLegacyWritableLayer","features":[180]},{"name":"HcsInitializeWritableLayer","features":[180]},{"name":"HcsModifyComputeSystem","features":[3,180]},{"name":"HcsModifyProcess","features":[180]},{"name":"HcsModifyServiceSettings","features":[180]},{"name":"HcsNotificationFlagFailure","features":[180]},{"name":"HcsNotificationFlagSuccess","features":[180]},{"name":"HcsNotificationFlagsReserved","features":[180]},{"name":"HcsNotificationInvalid","features":[180]},{"name":"HcsNotificationOperationProgressUpdate","features":[180]},{"name":"HcsNotificationProcessExited","features":[180]},{"name":"HcsNotificationServiceDisconnect","features":[180]},{"name":"HcsNotificationSystemCrashInitiated","features":[180]},{"name":"HcsNotificationSystemCrashReport","features":[180]},{"name":"HcsNotificationSystemCreateCompleted","features":[180]},{"name":"HcsNotificationSystemExited","features":[180]},{"name":"HcsNotificationSystemGetPropertiesCompleted","features":[180]},{"name":"HcsNotificationSystemGuestConnectionClosed","features":[180]},{"name":"HcsNotificationSystemModifyCompleted","features":[180]},{"name":"HcsNotificationSystemOperationCompletion","features":[180]},{"name":"HcsNotificationSystemPassThru","features":[180]},{"name":"HcsNotificationSystemPauseCompleted","features":[180]},{"name":"HcsNotificationSystemRdpEnhancedModeStateChanged","features":[180]},{"name":"HcsNotificationSystemResumeCompleted","features":[180]},{"name":"HcsNotificationSystemSaveCompleted","features":[180]},{"name":"HcsNotificationSystemShutdownCompleted","features":[180]},{"name":"HcsNotificationSystemShutdownFailed","features":[180]},{"name":"HcsNotificationSystemSiloJobCreated","features":[180]},{"name":"HcsNotificationSystemStartCompleted","features":[180]},{"name":"HcsOpenComputeSystem","features":[180]},{"name":"HcsOpenComputeSystemInNamespace","features":[180]},{"name":"HcsOpenProcess","features":[180]},{"name":"HcsOperationOptionNone","features":[180]},{"name":"HcsOperationOptionProgressUpdate","features":[180]},{"name":"HcsOperationTypeCrash","features":[180]},{"name":"HcsOperationTypeCreate","features":[180]},{"name":"HcsOperationTypeCreateProcess","features":[180]},{"name":"HcsOperationTypeEnumerate","features":[180]},{"name":"HcsOperationTypeGetProcessInfo","features":[180]},{"name":"HcsOperationTypeGetProcessProperties","features":[180]},{"name":"HcsOperationTypeGetProperties","features":[180]},{"name":"HcsOperationTypeModify","features":[180]},{"name":"HcsOperationTypeModifyProcess","features":[180]},{"name":"HcsOperationTypeNone","features":[180]},{"name":"HcsOperationTypePause","features":[180]},{"name":"HcsOperationTypeResume","features":[180]},{"name":"HcsOperationTypeSave","features":[180]},{"name":"HcsOperationTypeShutdown","features":[180]},{"name":"HcsOperationTypeSignalProcess","features":[180]},{"name":"HcsOperationTypeStart","features":[180]},{"name":"HcsOperationTypeTerminate","features":[180]},{"name":"HcsPauseComputeSystem","features":[180]},{"name":"HcsResourceTypeFile","features":[180]},{"name":"HcsResourceTypeJob","features":[180]},{"name":"HcsResourceTypeNone","features":[180]},{"name":"HcsResumeComputeSystem","features":[180]},{"name":"HcsRevokeVmAccess","features":[180]},{"name":"HcsRevokeVmGroupAccess","features":[180]},{"name":"HcsSaveComputeSystem","features":[180]},{"name":"HcsSetComputeSystemCallback","features":[180]},{"name":"HcsSetOperationCallback","features":[180]},{"name":"HcsSetOperationContext","features":[180]},{"name":"HcsSetProcessCallback","features":[180]},{"name":"HcsSetupBaseOSLayer","features":[3,180]},{"name":"HcsSetupBaseOSVolume","features":[180]},{"name":"HcsShutDownComputeSystem","features":[180]},{"name":"HcsSignalProcess","features":[180]},{"name":"HcsStartComputeSystem","features":[180]},{"name":"HcsSubmitWerReport","features":[180]},{"name":"HcsTerminateComputeSystem","features":[180]},{"name":"HcsTerminateProcess","features":[180]},{"name":"HcsWaitForComputeSystemExit","features":[180]},{"name":"HcsWaitForOperationResult","features":[180]},{"name":"HcsWaitForOperationResultAndProcessInfo","features":[3,180]},{"name":"HcsWaitForProcessExit","features":[180]}],"572":[{"name":"ARM64_RegisterActlrEl1","features":[181]},{"name":"ARM64_RegisterAmairEl1","features":[181]},{"name":"ARM64_RegisterCntkctlEl1","features":[181]},{"name":"ARM64_RegisterCntvCtlEl0","features":[181]},{"name":"ARM64_RegisterCntvCvalEl0","features":[181]},{"name":"ARM64_RegisterContextIdrEl1","features":[181]},{"name":"ARM64_RegisterCpacrEl1","features":[181]},{"name":"ARM64_RegisterCpsr","features":[181]},{"name":"ARM64_RegisterCsselrEl1","features":[181]},{"name":"ARM64_RegisterElrEl1","features":[181]},{"name":"ARM64_RegisterEsrEl1","features":[181]},{"name":"ARM64_RegisterFarEl1","features":[181]},{"name":"ARM64_RegisterFpControl","features":[181]},{"name":"ARM64_RegisterFpStatus","features":[181]},{"name":"ARM64_RegisterMairEl1","features":[181]},{"name":"ARM64_RegisterMax","features":[181]},{"name":"ARM64_RegisterParEl1","features":[181]},{"name":"ARM64_RegisterPc","features":[181]},{"name":"ARM64_RegisterQ0","features":[181]},{"name":"ARM64_RegisterQ1","features":[181]},{"name":"ARM64_RegisterQ10","features":[181]},{"name":"ARM64_RegisterQ11","features":[181]},{"name":"ARM64_RegisterQ12","features":[181]},{"name":"ARM64_RegisterQ13","features":[181]},{"name":"ARM64_RegisterQ14","features":[181]},{"name":"ARM64_RegisterQ15","features":[181]},{"name":"ARM64_RegisterQ16","features":[181]},{"name":"ARM64_RegisterQ17","features":[181]},{"name":"ARM64_RegisterQ18","features":[181]},{"name":"ARM64_RegisterQ19","features":[181]},{"name":"ARM64_RegisterQ2","features":[181]},{"name":"ARM64_RegisterQ20","features":[181]},{"name":"ARM64_RegisterQ21","features":[181]},{"name":"ARM64_RegisterQ22","features":[181]},{"name":"ARM64_RegisterQ23","features":[181]},{"name":"ARM64_RegisterQ24","features":[181]},{"name":"ARM64_RegisterQ25","features":[181]},{"name":"ARM64_RegisterQ26","features":[181]},{"name":"ARM64_RegisterQ27","features":[181]},{"name":"ARM64_RegisterQ28","features":[181]},{"name":"ARM64_RegisterQ29","features":[181]},{"name":"ARM64_RegisterQ3","features":[181]},{"name":"ARM64_RegisterQ30","features":[181]},{"name":"ARM64_RegisterQ31","features":[181]},{"name":"ARM64_RegisterQ4","features":[181]},{"name":"ARM64_RegisterQ5","features":[181]},{"name":"ARM64_RegisterQ6","features":[181]},{"name":"ARM64_RegisterQ7","features":[181]},{"name":"ARM64_RegisterQ8","features":[181]},{"name":"ARM64_RegisterQ9","features":[181]},{"name":"ARM64_RegisterSctlrEl1","features":[181]},{"name":"ARM64_RegisterSpEl0","features":[181]},{"name":"ARM64_RegisterSpEl1","features":[181]},{"name":"ARM64_RegisterSpsrEl1","features":[181]},{"name":"ARM64_RegisterTcrEl1","features":[181]},{"name":"ARM64_RegisterTpidrEl0","features":[181]},{"name":"ARM64_RegisterTpidrEl1","features":[181]},{"name":"ARM64_RegisterTpidrroEl0","features":[181]},{"name":"ARM64_RegisterTtbr0El1","features":[181]},{"name":"ARM64_RegisterTtbr1El1","features":[181]},{"name":"ARM64_RegisterVbarEl1","features":[181]},{"name":"ARM64_RegisterX0","features":[181]},{"name":"ARM64_RegisterX1","features":[181]},{"name":"ARM64_RegisterX10","features":[181]},{"name":"ARM64_RegisterX11","features":[181]},{"name":"ARM64_RegisterX12","features":[181]},{"name":"ARM64_RegisterX13","features":[181]},{"name":"ARM64_RegisterX14","features":[181]},{"name":"ARM64_RegisterX15","features":[181]},{"name":"ARM64_RegisterX16","features":[181]},{"name":"ARM64_RegisterX17","features":[181]},{"name":"ARM64_RegisterX18","features":[181]},{"name":"ARM64_RegisterX19","features":[181]},{"name":"ARM64_RegisterX2","features":[181]},{"name":"ARM64_RegisterX20","features":[181]},{"name":"ARM64_RegisterX21","features":[181]},{"name":"ARM64_RegisterX22","features":[181]},{"name":"ARM64_RegisterX23","features":[181]},{"name":"ARM64_RegisterX24","features":[181]},{"name":"ARM64_RegisterX25","features":[181]},{"name":"ARM64_RegisterX26","features":[181]},{"name":"ARM64_RegisterX27","features":[181]},{"name":"ARM64_RegisterX28","features":[181]},{"name":"ARM64_RegisterX3","features":[181]},{"name":"ARM64_RegisterX4","features":[181]},{"name":"ARM64_RegisterX5","features":[181]},{"name":"ARM64_RegisterX6","features":[181]},{"name":"ARM64_RegisterX7","features":[181]},{"name":"ARM64_RegisterX8","features":[181]},{"name":"ARM64_RegisterX9","features":[181]},{"name":"ARM64_RegisterXFp","features":[181]},{"name":"ARM64_RegisterXLr","features":[181]},{"name":"ApplyGuestMemoryFix","features":[181]},{"name":"ApplyPendingSavedStateFileReplayLog","features":[181]},{"name":"Arch_Armv8","features":[181]},{"name":"Arch_Unknown","features":[181]},{"name":"Arch_x64","features":[181]},{"name":"Arch_x86","features":[181]},{"name":"CallStackUnwind","features":[181]},{"name":"DOS_IMAGE_INFO","features":[181]},{"name":"FOUND_IMAGE_CALLBACK","features":[3,181]},{"name":"FindSavedStateSymbolFieldInType","features":[3,181]},{"name":"ForceActiveVirtualTrustLevel","features":[181]},{"name":"ForceArchitecture","features":[181]},{"name":"ForceNestedHostMode","features":[3,181]},{"name":"ForcePagingMode","features":[181]},{"name":"GPA_MEMORY_CHUNK","features":[181]},{"name":"GUEST_OS_INFO","features":[181]},{"name":"GUEST_OS_MICROSOFT_IDS","features":[181]},{"name":"GUEST_OS_OPENSOURCE_IDS","features":[181]},{"name":"GUEST_OS_VENDOR","features":[181]},{"name":"GUEST_SYMBOLS_PROVIDER_DEBUG_INFO_CALLBACK","features":[181]},{"name":"GUID_DEVINTERFACE_VM_GENCOUNTER","features":[181]},{"name":"GetActiveVirtualTrustLevel","features":[181]},{"name":"GetArchitecture","features":[181]},{"name":"GetEnabledVirtualTrustLevels","features":[181]},{"name":"GetGuestEnabledVirtualTrustLevels","features":[181]},{"name":"GetGuestOsInfo","features":[181]},{"name":"GetGuestPhysicalMemoryChunks","features":[181]},{"name":"GetGuestRawSavedMemorySize","features":[181]},{"name":"GetMemoryBlockCacheLimit","features":[181]},{"name":"GetNestedVirtualizationMode","features":[3,181]},{"name":"GetPagingMode","features":[181]},{"name":"GetRegisterValue","features":[181]},{"name":"GetSavedStateSymbolFieldInfo","features":[181]},{"name":"GetSavedStateSymbolProviderHandle","features":[3,181]},{"name":"GetSavedStateSymbolTypeSize","features":[181]},{"name":"GetVpCount","features":[181]},{"name":"GuestOsMicrosoftMSDOS","features":[181]},{"name":"GuestOsMicrosoftUndefined","features":[181]},{"name":"GuestOsMicrosoftWindows3x","features":[181]},{"name":"GuestOsMicrosoftWindows9x","features":[181]},{"name":"GuestOsMicrosoftWindowsCE","features":[181]},{"name":"GuestOsMicrosoftWindowsNT","features":[181]},{"name":"GuestOsOpenSourceFreeBSD","features":[181]},{"name":"GuestOsOpenSourceIllumos","features":[181]},{"name":"GuestOsOpenSourceLinux","features":[181]},{"name":"GuestOsOpenSourceUndefined","features":[181]},{"name":"GuestOsOpenSourceXen","features":[181]},{"name":"GuestOsVendorHPE","features":[181]},{"name":"GuestOsVendorLANCOM","features":[181]},{"name":"GuestOsVendorMicrosoft","features":[181]},{"name":"GuestOsVendorUndefined","features":[181]},{"name":"GuestPhysicalAddressToRawSavedMemoryOffset","features":[181]},{"name":"GuestVirtualAddressToPhysicalAddress","features":[181]},{"name":"HDV_DEVICE_HOST_FLAGS","features":[181]},{"name":"HDV_DEVICE_TYPE","features":[181]},{"name":"HDV_DOORBELL_FLAGS","features":[181]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_ANY_VALUE","features":[181]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_ANY","features":[181]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_BYTE","features":[181]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_DWORD","features":[181]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_QWORD","features":[181]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_WORD","features":[181]},{"name":"HDV_MMIO_MAPPING_FLAGS","features":[181]},{"name":"HDV_PCI_BAR0","features":[181]},{"name":"HDV_PCI_BAR1","features":[181]},{"name":"HDV_PCI_BAR2","features":[181]},{"name":"HDV_PCI_BAR3","features":[181]},{"name":"HDV_PCI_BAR4","features":[181]},{"name":"HDV_PCI_BAR5","features":[181]},{"name":"HDV_PCI_BAR_COUNT","features":[181]},{"name":"HDV_PCI_BAR_SELECTOR","features":[181]},{"name":"HDV_PCI_DEVICE_GET_DETAILS","features":[181]},{"name":"HDV_PCI_DEVICE_INITIALIZE","features":[181]},{"name":"HDV_PCI_DEVICE_INTERFACE","features":[181]},{"name":"HDV_PCI_DEVICE_SET_CONFIGURATION","features":[181]},{"name":"HDV_PCI_DEVICE_START","features":[181]},{"name":"HDV_PCI_DEVICE_STOP","features":[181]},{"name":"HDV_PCI_DEVICE_TEARDOWN","features":[181]},{"name":"HDV_PCI_INTERFACE_VERSION","features":[181]},{"name":"HDV_PCI_PNP_ID","features":[181]},{"name":"HDV_PCI_READ_CONFIG_SPACE","features":[181]},{"name":"HDV_PCI_READ_INTERCEPTED_MEMORY","features":[181]},{"name":"HDV_PCI_WRITE_CONFIG_SPACE","features":[181]},{"name":"HDV_PCI_WRITE_INTERCEPTED_MEMORY","features":[181]},{"name":"HVSOCKET_ADDRESS_FLAG_PASSTHRU","features":[181]},{"name":"HVSOCKET_ADDRESS_INFO","features":[181]},{"name":"HVSOCKET_CONNECTED_SUSPEND","features":[181]},{"name":"HVSOCKET_CONNECT_TIMEOUT","features":[181]},{"name":"HVSOCKET_CONNECT_TIMEOUT_MAX","features":[181]},{"name":"HVSOCKET_HIGH_VTL","features":[181]},{"name":"HV_GUID_BROADCAST","features":[181]},{"name":"HV_GUID_CHILDREN","features":[181]},{"name":"HV_GUID_LOOPBACK","features":[181]},{"name":"HV_GUID_PARENT","features":[181]},{"name":"HV_GUID_SILOHOST","features":[181]},{"name":"HV_GUID_VSOCK_TEMPLATE","features":[181]},{"name":"HV_GUID_ZERO","features":[181]},{"name":"HV_PROTOCOL_RAW","features":[181]},{"name":"HdvCreateDeviceInstance","features":[181]},{"name":"HdvCreateGuestMemoryAperture","features":[3,181]},{"name":"HdvCreateSectionBackedMmioRange","features":[3,181]},{"name":"HdvDeliverGuestInterrupt","features":[181]},{"name":"HdvDestroyGuestMemoryAperture","features":[181]},{"name":"HdvDestroySectionBackedMmioRange","features":[181]},{"name":"HdvDeviceHostFlagInitializeComSecurity","features":[181]},{"name":"HdvDeviceHostFlagNone","features":[181]},{"name":"HdvDeviceTypePCI","features":[181]},{"name":"HdvDeviceTypeUndefined","features":[181]},{"name":"HdvInitializeDeviceHost","features":[180,181]},{"name":"HdvInitializeDeviceHostEx","features":[180,181]},{"name":"HdvMmioMappingFlagExecutable","features":[181]},{"name":"HdvMmioMappingFlagNone","features":[181]},{"name":"HdvMmioMappingFlagWriteable","features":[181]},{"name":"HdvPciDeviceInterfaceVersion1","features":[181]},{"name":"HdvPciDeviceInterfaceVersionInvalid","features":[181]},{"name":"HdvReadGuestMemory","features":[181]},{"name":"HdvRegisterDoorbell","features":[3,181]},{"name":"HdvTeardownDeviceHost","features":[181]},{"name":"HdvUnregisterDoorbell","features":[181]},{"name":"HdvWriteGuestMemory","features":[181]},{"name":"IOCTL_VMGENCOUNTER_READ","features":[181]},{"name":"InKernelSpace","features":[3,181]},{"name":"IsActiveVirtualTrustLevelEnabled","features":[3,181]},{"name":"IsNestedVirtualizationEnabled","features":[3,181]},{"name":"LoadSavedStateFile","features":[181]},{"name":"LoadSavedStateFiles","features":[181]},{"name":"LoadSavedStateModuleSymbols","features":[181]},{"name":"LoadSavedStateModuleSymbolsEx","features":[181]},{"name":"LoadSavedStateSymbolProvider","features":[3,181]},{"name":"LocateSavedStateFiles","features":[181]},{"name":"MODULE_INFO","features":[181]},{"name":"PAGING_MODE","features":[181]},{"name":"Paging_32Bit","features":[181]},{"name":"Paging_Armv8","features":[181]},{"name":"Paging_Invalid","features":[181]},{"name":"Paging_Long","features":[181]},{"name":"Paging_NonPaged","features":[181]},{"name":"Paging_Pae","features":[181]},{"name":"ProcessorVendor_Amd","features":[181]},{"name":"ProcessorVendor_Arm","features":[181]},{"name":"ProcessorVendor_Hygon","features":[181]},{"name":"ProcessorVendor_Intel","features":[181]},{"name":"ProcessorVendor_Unknown","features":[181]},{"name":"REGISTER_ID","features":[181]},{"name":"ReadGuestPhysicalAddress","features":[181]},{"name":"ReadGuestRawSavedMemory","features":[181]},{"name":"ReadSavedStateGlobalVariable","features":[181]},{"name":"ReleaseSavedStateFiles","features":[181]},{"name":"ReleaseSavedStateSymbolProvider","features":[181]},{"name":"ResolveSavedStateGlobalVariableAddress","features":[181]},{"name":"SOCKADDR_HV","features":[17,181]},{"name":"ScanMemoryForDosImages","features":[3,181]},{"name":"SetMemoryBlockCacheLimit","features":[181]},{"name":"SetSavedStateSymbolProviderDebugInfoCallback","features":[181]},{"name":"VIRTUAL_PROCESSOR_ARCH","features":[181]},{"name":"VIRTUAL_PROCESSOR_REGISTER","features":[181]},{"name":"VIRTUAL_PROCESSOR_VENDOR","features":[181]},{"name":"VM_GENCOUNTER","features":[181]},{"name":"VM_GENCOUNTER_SYMBOLIC_LINK_NAME","features":[181]},{"name":"WHV_ACCESS_GPA_CONTROLS","features":[181]},{"name":"WHV_ADVISE_GPA_RANGE","features":[181]},{"name":"WHV_ADVISE_GPA_RANGE_CODE","features":[181]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE","features":[181]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE_FLAGS","features":[181]},{"name":"WHV_ALLOCATE_VPCI_RESOURCE_FLAGS","features":[181]},{"name":"WHV_ANY_VP","features":[181]},{"name":"WHV_CACHE_TYPE","features":[181]},{"name":"WHV_CAPABILITY","features":[3,181]},{"name":"WHV_CAPABILITY_CODE","features":[181]},{"name":"WHV_CAPABILITY_FEATURES","features":[181]},{"name":"WHV_CAPABILITY_PROCESSOR_FREQUENCY_CAP","features":[181]},{"name":"WHV_CPUID_OUTPUT","features":[181]},{"name":"WHV_CREATE_VPCI_DEVICE_FLAGS","features":[181]},{"name":"WHV_DOORBELL_MATCH_DATA","features":[181]},{"name":"WHV_EMULATOR_CALLBACKS","features":[181]},{"name":"WHV_EMULATOR_GET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[181]},{"name":"WHV_EMULATOR_IO_ACCESS_INFO","features":[181]},{"name":"WHV_EMULATOR_IO_PORT_CALLBACK","features":[181]},{"name":"WHV_EMULATOR_MEMORY_ACCESS_INFO","features":[181]},{"name":"WHV_EMULATOR_MEMORY_CALLBACK","features":[181]},{"name":"WHV_EMULATOR_SET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[181]},{"name":"WHV_EMULATOR_STATUS","features":[181]},{"name":"WHV_EMULATOR_TRANSLATE_GVA_PAGE_CALLBACK","features":[181]},{"name":"WHV_EXCEPTION_TYPE","features":[181]},{"name":"WHV_EXTENDED_VM_EXITS","features":[181]},{"name":"WHV_HYPERCALL_CONTEXT","features":[181]},{"name":"WHV_HYPERCALL_CONTEXT_MAX_XMM_REGISTERS","features":[181]},{"name":"WHV_INTERNAL_ACTIVITY_REGISTER","features":[181]},{"name":"WHV_INTERRUPT_CONTROL","features":[181]},{"name":"WHV_INTERRUPT_DESTINATION_MODE","features":[181]},{"name":"WHV_INTERRUPT_TRIGGER_MODE","features":[181]},{"name":"WHV_INTERRUPT_TYPE","features":[181]},{"name":"WHV_MAP_GPA_RANGE_FLAGS","features":[181]},{"name":"WHV_MAX_DEVICE_ID_SIZE_IN_CHARS","features":[181]},{"name":"WHV_MEMORY_ACCESS_CONTEXT","features":[181]},{"name":"WHV_MEMORY_ACCESS_INFO","features":[181]},{"name":"WHV_MEMORY_ACCESS_TYPE","features":[181]},{"name":"WHV_MEMORY_RANGE_ENTRY","features":[181]},{"name":"WHV_MSR_ACTION","features":[181]},{"name":"WHV_MSR_ACTION_ENTRY","features":[181]},{"name":"WHV_NOTIFICATION_PORT_PARAMETERS","features":[181]},{"name":"WHV_NOTIFICATION_PORT_PROPERTY_CODE","features":[181]},{"name":"WHV_NOTIFICATION_PORT_TYPE","features":[181]},{"name":"WHV_PARTITION_COUNTER_SET","features":[181]},{"name":"WHV_PARTITION_HANDLE","features":[181]},{"name":"WHV_PARTITION_MEMORY_COUNTERS","features":[181]},{"name":"WHV_PARTITION_PROPERTY","features":[3,181]},{"name":"WHV_PARTITION_PROPERTY_CODE","features":[181]},{"name":"WHV_PROCESSOR_APIC_COUNTERS","features":[181]},{"name":"WHV_PROCESSOR_COUNTER_SET","features":[181]},{"name":"WHV_PROCESSOR_EVENT_COUNTERS","features":[181]},{"name":"WHV_PROCESSOR_FEATURES","features":[181]},{"name":"WHV_PROCESSOR_FEATURES1","features":[181]},{"name":"WHV_PROCESSOR_FEATURES_BANKS","features":[181]},{"name":"WHV_PROCESSOR_FEATURES_BANKS_COUNT","features":[181]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTER","features":[181]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTERS","features":[181]},{"name":"WHV_PROCESSOR_PERFMON_FEATURES","features":[181]},{"name":"WHV_PROCESSOR_RUNTIME_COUNTERS","features":[181]},{"name":"WHV_PROCESSOR_SYNTHETIC_FEATURES_COUNTERS","features":[181]},{"name":"WHV_PROCESSOR_VENDOR","features":[181]},{"name":"WHV_PROCESSOR_XSAVE_FEATURES","features":[181]},{"name":"WHV_READ_WRITE_GPA_RANGE_MAX_SIZE","features":[181]},{"name":"WHV_REGISTER_NAME","features":[181]},{"name":"WHV_REGISTER_VALUE","features":[181]},{"name":"WHV_RUN_VP_CANCELED_CONTEXT","features":[181]},{"name":"WHV_RUN_VP_CANCEL_REASON","features":[181]},{"name":"WHV_RUN_VP_EXIT_CONTEXT","features":[181]},{"name":"WHV_RUN_VP_EXIT_REASON","features":[181]},{"name":"WHV_SCHEDULER_FEATURES","features":[181]},{"name":"WHV_SRIOV_RESOURCE_DESCRIPTOR","features":[3,181]},{"name":"WHV_SYNIC_EVENT_PARAMETERS","features":[181]},{"name":"WHV_SYNIC_MESSAGE_SIZE","features":[181]},{"name":"WHV_SYNIC_SINT_DELIVERABLE_CONTEXT","features":[181]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES","features":[181]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS","features":[181]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS_COUNT","features":[181]},{"name":"WHV_TRANSLATE_GVA_FLAGS","features":[181]},{"name":"WHV_TRANSLATE_GVA_RESULT","features":[181]},{"name":"WHV_TRANSLATE_GVA_RESULT_CODE","features":[181]},{"name":"WHV_TRIGGER_PARAMETERS","features":[181]},{"name":"WHV_TRIGGER_TYPE","features":[181]},{"name":"WHV_UINT128","features":[181]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY","features":[181]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY_CODE","features":[181]},{"name":"WHV_VIRTUAL_PROCESSOR_STATE_TYPE","features":[181]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION","features":[181]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION_TYPE","features":[181]},{"name":"WHV_VPCI_DEVICE_PROPERTY_CODE","features":[181]},{"name":"WHV_VPCI_DEVICE_REGISTER","features":[181]},{"name":"WHV_VPCI_DEVICE_REGISTER_SPACE","features":[181]},{"name":"WHV_VPCI_HARDWARE_IDS","features":[181]},{"name":"WHV_VPCI_INTERRUPT_TARGET","features":[181]},{"name":"WHV_VPCI_INTERRUPT_TARGET_FLAGS","features":[181]},{"name":"WHV_VPCI_MMIO_MAPPING","features":[181]},{"name":"WHV_VPCI_MMIO_RANGE_FLAGS","features":[181]},{"name":"WHV_VPCI_PROBED_BARS","features":[181]},{"name":"WHV_VPCI_TYPE0_BAR_COUNT","features":[181]},{"name":"WHV_VP_EXCEPTION_CONTEXT","features":[181]},{"name":"WHV_VP_EXCEPTION_INFO","features":[181]},{"name":"WHV_VP_EXIT_CONTEXT","features":[181]},{"name":"WHV_X64_APIC_EOI_CONTEXT","features":[181]},{"name":"WHV_X64_APIC_INIT_SIPI_CONTEXT","features":[181]},{"name":"WHV_X64_APIC_SMI_CONTEXT","features":[181]},{"name":"WHV_X64_APIC_WRITE_CONTEXT","features":[181]},{"name":"WHV_X64_APIC_WRITE_TYPE","features":[181]},{"name":"WHV_X64_CPUID_ACCESS_CONTEXT","features":[181]},{"name":"WHV_X64_CPUID_RESULT","features":[181]},{"name":"WHV_X64_CPUID_RESULT2","features":[181]},{"name":"WHV_X64_CPUID_RESULT2_FLAGS","features":[181]},{"name":"WHV_X64_DELIVERABILITY_NOTIFICATIONS_REGISTER","features":[181]},{"name":"WHV_X64_FP_CONTROL_STATUS_REGISTER","features":[181]},{"name":"WHV_X64_FP_REGISTER","features":[181]},{"name":"WHV_X64_INTERRUPTION_DELIVERABLE_CONTEXT","features":[181]},{"name":"WHV_X64_INTERRUPT_STATE_REGISTER","features":[181]},{"name":"WHV_X64_IO_PORT_ACCESS_CONTEXT","features":[181]},{"name":"WHV_X64_IO_PORT_ACCESS_INFO","features":[181]},{"name":"WHV_X64_LOCAL_APIC_EMULATION_MODE","features":[181]},{"name":"WHV_X64_MSR_ACCESS_CONTEXT","features":[181]},{"name":"WHV_X64_MSR_ACCESS_INFO","features":[181]},{"name":"WHV_X64_MSR_EXIT_BITMAP","features":[181]},{"name":"WHV_X64_PENDING_DEBUG_EXCEPTION","features":[181]},{"name":"WHV_X64_PENDING_EVENT_TYPE","features":[181]},{"name":"WHV_X64_PENDING_EXCEPTION_EVENT","features":[181]},{"name":"WHV_X64_PENDING_EXT_INT_EVENT","features":[181]},{"name":"WHV_X64_PENDING_INTERRUPTION_REGISTER","features":[181]},{"name":"WHV_X64_PENDING_INTERRUPTION_TYPE","features":[181]},{"name":"WHV_X64_RDTSC_CONTEXT","features":[181]},{"name":"WHV_X64_RDTSC_INFO","features":[181]},{"name":"WHV_X64_SEGMENT_REGISTER","features":[181]},{"name":"WHV_X64_TABLE_REGISTER","features":[181]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CODE","features":[181]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CONTEXT","features":[181]},{"name":"WHV_X64_VP_EXECUTION_STATE","features":[181]},{"name":"WHV_X64_XMM_CONTROL_STATUS_REGISTER","features":[181]},{"name":"WHvAcceptPartitionMigration","features":[3,181]},{"name":"WHvAdviseGpaRange","features":[181]},{"name":"WHvAdviseGpaRangeCodePin","features":[181]},{"name":"WHvAdviseGpaRangeCodePopulate","features":[181]},{"name":"WHvAdviseGpaRangeCodeUnpin","features":[181]},{"name":"WHvAllocateVpciResource","features":[3,181]},{"name":"WHvAllocateVpciResourceFlagAllowDirectP2P","features":[181]},{"name":"WHvAllocateVpciResourceFlagNone","features":[181]},{"name":"WHvCacheTypeUncached","features":[181]},{"name":"WHvCacheTypeWriteBack","features":[181]},{"name":"WHvCacheTypeWriteCombining","features":[181]},{"name":"WHvCacheTypeWriteThrough","features":[181]},{"name":"WHvCancelPartitionMigration","features":[181]},{"name":"WHvCancelRunVirtualProcessor","features":[181]},{"name":"WHvCapabilityCodeExceptionExitBitmap","features":[181]},{"name":"WHvCapabilityCodeExtendedVmExits","features":[181]},{"name":"WHvCapabilityCodeFeatures","features":[181]},{"name":"WHvCapabilityCodeGpaRangePopulateFlags","features":[181]},{"name":"WHvCapabilityCodeHypervisorPresent","features":[181]},{"name":"WHvCapabilityCodeInterruptClockFrequency","features":[181]},{"name":"WHvCapabilityCodeProcessorClFlushSize","features":[181]},{"name":"WHvCapabilityCodeProcessorClockFrequency","features":[181]},{"name":"WHvCapabilityCodeProcessorFeatures","features":[181]},{"name":"WHvCapabilityCodeProcessorFeaturesBanks","features":[181]},{"name":"WHvCapabilityCodeProcessorFrequencyCap","features":[181]},{"name":"WHvCapabilityCodeProcessorPerfmonFeatures","features":[181]},{"name":"WHvCapabilityCodeProcessorVendor","features":[181]},{"name":"WHvCapabilityCodeProcessorXsaveFeatures","features":[181]},{"name":"WHvCapabilityCodeSchedulerFeatures","features":[181]},{"name":"WHvCapabilityCodeSyntheticProcessorFeaturesBanks","features":[181]},{"name":"WHvCapabilityCodeX64MsrExitBitmap","features":[181]},{"name":"WHvCompletePartitionMigration","features":[181]},{"name":"WHvCreateNotificationPort","features":[3,181]},{"name":"WHvCreatePartition","features":[181]},{"name":"WHvCreateTrigger","features":[3,181]},{"name":"WHvCreateVirtualProcessor","features":[181]},{"name":"WHvCreateVirtualProcessor2","features":[181]},{"name":"WHvCreateVpciDevice","features":[3,181]},{"name":"WHvCreateVpciDeviceFlagNone","features":[181]},{"name":"WHvCreateVpciDeviceFlagPhysicallyBacked","features":[181]},{"name":"WHvCreateVpciDeviceFlagUseLogicalInterrupts","features":[181]},{"name":"WHvDeleteNotificationPort","features":[181]},{"name":"WHvDeletePartition","features":[181]},{"name":"WHvDeleteTrigger","features":[181]},{"name":"WHvDeleteVirtualProcessor","features":[181]},{"name":"WHvDeleteVpciDevice","features":[181]},{"name":"WHvEmulatorCreateEmulator","features":[181]},{"name":"WHvEmulatorDestroyEmulator","features":[181]},{"name":"WHvEmulatorTryIoEmulation","features":[181]},{"name":"WHvEmulatorTryMmioEmulation","features":[181]},{"name":"WHvGetCapability","features":[181]},{"name":"WHvGetInterruptTargetVpSet","features":[181]},{"name":"WHvGetPartitionCounters","features":[181]},{"name":"WHvGetPartitionProperty","features":[181]},{"name":"WHvGetVirtualProcessorCounters","features":[181]},{"name":"WHvGetVirtualProcessorCpuidOutput","features":[181]},{"name":"WHvGetVirtualProcessorInterruptControllerState","features":[181]},{"name":"WHvGetVirtualProcessorInterruptControllerState2","features":[181]},{"name":"WHvGetVirtualProcessorRegisters","features":[181]},{"name":"WHvGetVirtualProcessorState","features":[181]},{"name":"WHvGetVirtualProcessorXsaveState","features":[181]},{"name":"WHvGetVpciDeviceInterruptTarget","features":[181]},{"name":"WHvGetVpciDeviceNotification","features":[181]},{"name":"WHvGetVpciDeviceProperty","features":[181]},{"name":"WHvMapGpaRange","features":[181]},{"name":"WHvMapGpaRange2","features":[3,181]},{"name":"WHvMapGpaRangeFlagExecute","features":[181]},{"name":"WHvMapGpaRangeFlagNone","features":[181]},{"name":"WHvMapGpaRangeFlagRead","features":[181]},{"name":"WHvMapGpaRangeFlagTrackDirtyPages","features":[181]},{"name":"WHvMapGpaRangeFlagWrite","features":[181]},{"name":"WHvMapVpciDeviceInterrupt","features":[181]},{"name":"WHvMapVpciDeviceMmioRanges","features":[181]},{"name":"WHvMemoryAccessExecute","features":[181]},{"name":"WHvMemoryAccessRead","features":[181]},{"name":"WHvMemoryAccessWrite","features":[181]},{"name":"WHvMsrActionArchitectureDefault","features":[181]},{"name":"WHvMsrActionExit","features":[181]},{"name":"WHvMsrActionIgnoreWriteReadZero","features":[181]},{"name":"WHvNotificationPortPropertyPreferredTargetDuration","features":[181]},{"name":"WHvNotificationPortPropertyPreferredTargetVp","features":[181]},{"name":"WHvNotificationPortTypeDoorbell","features":[181]},{"name":"WHvNotificationPortTypeEvent","features":[181]},{"name":"WHvPartitionCounterSetMemory","features":[181]},{"name":"WHvPartitionPropertyCodeAllowDeviceAssignment","features":[181]},{"name":"WHvPartitionPropertyCodeApicRemoteReadSupport","features":[181]},{"name":"WHvPartitionPropertyCodeCpuCap","features":[181]},{"name":"WHvPartitionPropertyCodeCpuGroupId","features":[181]},{"name":"WHvPartitionPropertyCodeCpuReserve","features":[181]},{"name":"WHvPartitionPropertyCodeCpuWeight","features":[181]},{"name":"WHvPartitionPropertyCodeCpuidExitList","features":[181]},{"name":"WHvPartitionPropertyCodeCpuidResultList","features":[181]},{"name":"WHvPartitionPropertyCodeCpuidResultList2","features":[181]},{"name":"WHvPartitionPropertyCodeDisableSmt","features":[181]},{"name":"WHvPartitionPropertyCodeExceptionExitBitmap","features":[181]},{"name":"WHvPartitionPropertyCodeExtendedVmExits","features":[181]},{"name":"WHvPartitionPropertyCodeInterruptClockFrequency","features":[181]},{"name":"WHvPartitionPropertyCodeLocalApicEmulationMode","features":[181]},{"name":"WHvPartitionPropertyCodeMsrActionList","features":[181]},{"name":"WHvPartitionPropertyCodeNestedVirtualization","features":[181]},{"name":"WHvPartitionPropertyCodePrimaryNumaNode","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorClFlushSize","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorClockFrequency","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorCount","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorFeatures","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorFeaturesBanks","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorFrequencyCap","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorPerfmonFeatures","features":[181]},{"name":"WHvPartitionPropertyCodeProcessorXsaveFeatures","features":[181]},{"name":"WHvPartitionPropertyCodeReferenceTime","features":[181]},{"name":"WHvPartitionPropertyCodeSeparateSecurityDomain","features":[181]},{"name":"WHvPartitionPropertyCodeSyntheticProcessorFeaturesBanks","features":[181]},{"name":"WHvPartitionPropertyCodeUnimplementedMsrAction","features":[181]},{"name":"WHvPartitionPropertyCodeX64MsrExitBitmap","features":[181]},{"name":"WHvPostVirtualProcessorSynicMessage","features":[181]},{"name":"WHvProcessorCounterSetApic","features":[181]},{"name":"WHvProcessorCounterSetEvents","features":[181]},{"name":"WHvProcessorCounterSetIntercepts","features":[181]},{"name":"WHvProcessorCounterSetRuntime","features":[181]},{"name":"WHvProcessorCounterSetSyntheticFeatures","features":[181]},{"name":"WHvProcessorVendorAmd","features":[181]},{"name":"WHvProcessorVendorHygon","features":[181]},{"name":"WHvProcessorVendorIntel","features":[181]},{"name":"WHvQueryGpaRangeDirtyBitmap","features":[181]},{"name":"WHvReadGpaRange","features":[181]},{"name":"WHvReadVpciDeviceRegister","features":[181]},{"name":"WHvRegisterEom","features":[181]},{"name":"WHvRegisterGuestOsId","features":[181]},{"name":"WHvRegisterInternalActivityState","features":[181]},{"name":"WHvRegisterInterruptState","features":[181]},{"name":"WHvRegisterPartitionDoorbellEvent","features":[3,181]},{"name":"WHvRegisterPendingEvent","features":[181]},{"name":"WHvRegisterPendingInterruption","features":[181]},{"name":"WHvRegisterReferenceTsc","features":[181]},{"name":"WHvRegisterReferenceTscSequence","features":[181]},{"name":"WHvRegisterScontrol","features":[181]},{"name":"WHvRegisterSiefp","features":[181]},{"name":"WHvRegisterSimp","features":[181]},{"name":"WHvRegisterSint0","features":[181]},{"name":"WHvRegisterSint1","features":[181]},{"name":"WHvRegisterSint10","features":[181]},{"name":"WHvRegisterSint11","features":[181]},{"name":"WHvRegisterSint12","features":[181]},{"name":"WHvRegisterSint13","features":[181]},{"name":"WHvRegisterSint14","features":[181]},{"name":"WHvRegisterSint15","features":[181]},{"name":"WHvRegisterSint2","features":[181]},{"name":"WHvRegisterSint3","features":[181]},{"name":"WHvRegisterSint4","features":[181]},{"name":"WHvRegisterSint5","features":[181]},{"name":"WHvRegisterSint6","features":[181]},{"name":"WHvRegisterSint7","features":[181]},{"name":"WHvRegisterSint8","features":[181]},{"name":"WHvRegisterSint9","features":[181]},{"name":"WHvRegisterSversion","features":[181]},{"name":"WHvRegisterVpAssistPage","features":[181]},{"name":"WHvRegisterVpRuntime","features":[181]},{"name":"WHvRequestInterrupt","features":[181]},{"name":"WHvRequestVpciDeviceInterrupt","features":[181]},{"name":"WHvResetPartition","features":[181]},{"name":"WHvResumePartitionTime","features":[181]},{"name":"WHvRetargetVpciDeviceInterrupt","features":[181]},{"name":"WHvRunVirtualProcessor","features":[181]},{"name":"WHvRunVpCancelReasonUser","features":[181]},{"name":"WHvRunVpExitReasonCanceled","features":[181]},{"name":"WHvRunVpExitReasonException","features":[181]},{"name":"WHvRunVpExitReasonHypercall","features":[181]},{"name":"WHvRunVpExitReasonInvalidVpRegisterValue","features":[181]},{"name":"WHvRunVpExitReasonMemoryAccess","features":[181]},{"name":"WHvRunVpExitReasonNone","features":[181]},{"name":"WHvRunVpExitReasonSynicSintDeliverable","features":[181]},{"name":"WHvRunVpExitReasonUnrecoverableException","features":[181]},{"name":"WHvRunVpExitReasonUnsupportedFeature","features":[181]},{"name":"WHvRunVpExitReasonX64ApicEoi","features":[181]},{"name":"WHvRunVpExitReasonX64ApicInitSipiTrap","features":[181]},{"name":"WHvRunVpExitReasonX64ApicSmiTrap","features":[181]},{"name":"WHvRunVpExitReasonX64ApicWriteTrap","features":[181]},{"name":"WHvRunVpExitReasonX64Cpuid","features":[181]},{"name":"WHvRunVpExitReasonX64Halt","features":[181]},{"name":"WHvRunVpExitReasonX64InterruptWindow","features":[181]},{"name":"WHvRunVpExitReasonX64IoPortAccess","features":[181]},{"name":"WHvRunVpExitReasonX64MsrAccess","features":[181]},{"name":"WHvRunVpExitReasonX64Rdtsc","features":[181]},{"name":"WHvSetNotificationPortProperty","features":[181]},{"name":"WHvSetPartitionProperty","features":[181]},{"name":"WHvSetVirtualProcessorInterruptControllerState","features":[181]},{"name":"WHvSetVirtualProcessorInterruptControllerState2","features":[181]},{"name":"WHvSetVirtualProcessorRegisters","features":[181]},{"name":"WHvSetVirtualProcessorState","features":[181]},{"name":"WHvSetVirtualProcessorXsaveState","features":[181]},{"name":"WHvSetVpciDevicePowerState","features":[181,10]},{"name":"WHvSetupPartition","features":[181]},{"name":"WHvSignalVirtualProcessorSynicEvent","features":[3,181]},{"name":"WHvStartPartitionMigration","features":[3,181]},{"name":"WHvSuspendPartitionTime","features":[181]},{"name":"WHvTranslateGva","features":[181]},{"name":"WHvTranslateGvaFlagEnforceSmap","features":[181]},{"name":"WHvTranslateGvaFlagNone","features":[181]},{"name":"WHvTranslateGvaFlagOverrideSmap","features":[181]},{"name":"WHvTranslateGvaFlagPrivilegeExempt","features":[181]},{"name":"WHvTranslateGvaFlagSetPageTableBits","features":[181]},{"name":"WHvTranslateGvaFlagValidateExecute","features":[181]},{"name":"WHvTranslateGvaFlagValidateRead","features":[181]},{"name":"WHvTranslateGvaFlagValidateWrite","features":[181]},{"name":"WHvTranslateGvaResultGpaIllegalOverlayAccess","features":[181]},{"name":"WHvTranslateGvaResultGpaNoReadAccess","features":[181]},{"name":"WHvTranslateGvaResultGpaNoWriteAccess","features":[181]},{"name":"WHvTranslateGvaResultGpaUnmapped","features":[181]},{"name":"WHvTranslateGvaResultIntercept","features":[181]},{"name":"WHvTranslateGvaResultInvalidPageTableFlags","features":[181]},{"name":"WHvTranslateGvaResultPageNotPresent","features":[181]},{"name":"WHvTranslateGvaResultPrivilegeViolation","features":[181]},{"name":"WHvTranslateGvaResultSuccess","features":[181]},{"name":"WHvTriggerTypeDeviceInterrupt","features":[181]},{"name":"WHvTriggerTypeInterrupt","features":[181]},{"name":"WHvTriggerTypeSynicEvent","features":[181]},{"name":"WHvUnmapGpaRange","features":[181]},{"name":"WHvUnmapVpciDeviceInterrupt","features":[181]},{"name":"WHvUnmapVpciDeviceMmioRanges","features":[181]},{"name":"WHvUnregisterPartitionDoorbellEvent","features":[181]},{"name":"WHvUnsupportedFeatureIntercept","features":[181]},{"name":"WHvUnsupportedFeatureTaskSwitchTss","features":[181]},{"name":"WHvUpdateTriggerParameters","features":[181]},{"name":"WHvVirtualProcessorPropertyCodeNumaNode","features":[181]},{"name":"WHvVirtualProcessorStateTypeInterruptControllerState2","features":[181]},{"name":"WHvVirtualProcessorStateTypeSynicEventFlagPage","features":[181]},{"name":"WHvVirtualProcessorStateTypeSynicMessagePage","features":[181]},{"name":"WHvVirtualProcessorStateTypeSynicTimerState","features":[181]},{"name":"WHvVirtualProcessorStateTypeXsaveState","features":[181]},{"name":"WHvVpciBar0","features":[181]},{"name":"WHvVpciBar1","features":[181]},{"name":"WHvVpciBar2","features":[181]},{"name":"WHvVpciBar3","features":[181]},{"name":"WHvVpciBar4","features":[181]},{"name":"WHvVpciBar5","features":[181]},{"name":"WHvVpciConfigSpace","features":[181]},{"name":"WHvVpciDeviceNotificationMmioRemapping","features":[181]},{"name":"WHvVpciDeviceNotificationSurpriseRemoval","features":[181]},{"name":"WHvVpciDeviceNotificationUndefined","features":[181]},{"name":"WHvVpciDevicePropertyCodeHardwareIDs","features":[181]},{"name":"WHvVpciDevicePropertyCodeProbedBARs","features":[181]},{"name":"WHvVpciDevicePropertyCodeUndefined","features":[181]},{"name":"WHvVpciInterruptTargetFlagMulticast","features":[181]},{"name":"WHvVpciInterruptTargetFlagNone","features":[181]},{"name":"WHvVpciMmioRangeFlagReadAccess","features":[181]},{"name":"WHvVpciMmioRangeFlagWriteAccess","features":[181]},{"name":"WHvWriteGpaRange","features":[181]},{"name":"WHvWriteVpciDeviceRegister","features":[181]},{"name":"WHvX64ApicWriteTypeDfr","features":[181]},{"name":"WHvX64ApicWriteTypeLdr","features":[181]},{"name":"WHvX64ApicWriteTypeLint0","features":[181]},{"name":"WHvX64ApicWriteTypeLint1","features":[181]},{"name":"WHvX64ApicWriteTypeSvr","features":[181]},{"name":"WHvX64CpuidResult2FlagSubleafSpecific","features":[181]},{"name":"WHvX64CpuidResult2FlagVpSpecific","features":[181]},{"name":"WHvX64ExceptionTypeAlignmentCheckFault","features":[181]},{"name":"WHvX64ExceptionTypeBoundRangeFault","features":[181]},{"name":"WHvX64ExceptionTypeBreakpointTrap","features":[181]},{"name":"WHvX64ExceptionTypeDebugTrapOrFault","features":[181]},{"name":"WHvX64ExceptionTypeDeviceNotAvailableFault","features":[181]},{"name":"WHvX64ExceptionTypeDivideErrorFault","features":[181]},{"name":"WHvX64ExceptionTypeDoubleFaultAbort","features":[181]},{"name":"WHvX64ExceptionTypeFloatingPointErrorFault","features":[181]},{"name":"WHvX64ExceptionTypeGeneralProtectionFault","features":[181]},{"name":"WHvX64ExceptionTypeInvalidOpcodeFault","features":[181]},{"name":"WHvX64ExceptionTypeInvalidTaskStateSegmentFault","features":[181]},{"name":"WHvX64ExceptionTypeMachineCheckAbort","features":[181]},{"name":"WHvX64ExceptionTypeOverflowTrap","features":[181]},{"name":"WHvX64ExceptionTypePageFault","features":[181]},{"name":"WHvX64ExceptionTypeSegmentNotPresentFault","features":[181]},{"name":"WHvX64ExceptionTypeSimdFloatingPointFault","features":[181]},{"name":"WHvX64ExceptionTypeStackFault","features":[181]},{"name":"WHvX64InterruptDestinationModeLogical","features":[181]},{"name":"WHvX64InterruptDestinationModePhysical","features":[181]},{"name":"WHvX64InterruptTriggerModeEdge","features":[181]},{"name":"WHvX64InterruptTriggerModeLevel","features":[181]},{"name":"WHvX64InterruptTypeFixed","features":[181]},{"name":"WHvX64InterruptTypeInit","features":[181]},{"name":"WHvX64InterruptTypeLocalInt1","features":[181]},{"name":"WHvX64InterruptTypeLowestPriority","features":[181]},{"name":"WHvX64InterruptTypeNmi","features":[181]},{"name":"WHvX64InterruptTypeSipi","features":[181]},{"name":"WHvX64LocalApicEmulationModeNone","features":[181]},{"name":"WHvX64LocalApicEmulationModeX2Apic","features":[181]},{"name":"WHvX64LocalApicEmulationModeXApic","features":[181]},{"name":"WHvX64PendingEventException","features":[181]},{"name":"WHvX64PendingEventExtInt","features":[181]},{"name":"WHvX64PendingException","features":[181]},{"name":"WHvX64PendingInterrupt","features":[181]},{"name":"WHvX64PendingNmi","features":[181]},{"name":"WHvX64RegisterACount","features":[181]},{"name":"WHvX64RegisterApicBase","features":[181]},{"name":"WHvX64RegisterApicCurrentCount","features":[181]},{"name":"WHvX64RegisterApicDivide","features":[181]},{"name":"WHvX64RegisterApicEoi","features":[181]},{"name":"WHvX64RegisterApicEse","features":[181]},{"name":"WHvX64RegisterApicIcr","features":[181]},{"name":"WHvX64RegisterApicId","features":[181]},{"name":"WHvX64RegisterApicInitCount","features":[181]},{"name":"WHvX64RegisterApicIrr0","features":[181]},{"name":"WHvX64RegisterApicIrr1","features":[181]},{"name":"WHvX64RegisterApicIrr2","features":[181]},{"name":"WHvX64RegisterApicIrr3","features":[181]},{"name":"WHvX64RegisterApicIrr4","features":[181]},{"name":"WHvX64RegisterApicIrr5","features":[181]},{"name":"WHvX64RegisterApicIrr6","features":[181]},{"name":"WHvX64RegisterApicIrr7","features":[181]},{"name":"WHvX64RegisterApicIsr0","features":[181]},{"name":"WHvX64RegisterApicIsr1","features":[181]},{"name":"WHvX64RegisterApicIsr2","features":[181]},{"name":"WHvX64RegisterApicIsr3","features":[181]},{"name":"WHvX64RegisterApicIsr4","features":[181]},{"name":"WHvX64RegisterApicIsr5","features":[181]},{"name":"WHvX64RegisterApicIsr6","features":[181]},{"name":"WHvX64RegisterApicIsr7","features":[181]},{"name":"WHvX64RegisterApicLdr","features":[181]},{"name":"WHvX64RegisterApicLvtError","features":[181]},{"name":"WHvX64RegisterApicLvtLint0","features":[181]},{"name":"WHvX64RegisterApicLvtLint1","features":[181]},{"name":"WHvX64RegisterApicLvtPerfmon","features":[181]},{"name":"WHvX64RegisterApicLvtThermal","features":[181]},{"name":"WHvX64RegisterApicLvtTimer","features":[181]},{"name":"WHvX64RegisterApicPpr","features":[181]},{"name":"WHvX64RegisterApicSelfIpi","features":[181]},{"name":"WHvX64RegisterApicSpurious","features":[181]},{"name":"WHvX64RegisterApicTmr0","features":[181]},{"name":"WHvX64RegisterApicTmr1","features":[181]},{"name":"WHvX64RegisterApicTmr2","features":[181]},{"name":"WHvX64RegisterApicTmr3","features":[181]},{"name":"WHvX64RegisterApicTmr4","features":[181]},{"name":"WHvX64RegisterApicTmr5","features":[181]},{"name":"WHvX64RegisterApicTmr6","features":[181]},{"name":"WHvX64RegisterApicTmr7","features":[181]},{"name":"WHvX64RegisterApicTpr","features":[181]},{"name":"WHvX64RegisterApicVersion","features":[181]},{"name":"WHvX64RegisterBndcfgs","features":[181]},{"name":"WHvX64RegisterCr0","features":[181]},{"name":"WHvX64RegisterCr2","features":[181]},{"name":"WHvX64RegisterCr3","features":[181]},{"name":"WHvX64RegisterCr4","features":[181]},{"name":"WHvX64RegisterCr8","features":[181]},{"name":"WHvX64RegisterCs","features":[181]},{"name":"WHvX64RegisterCstar","features":[181]},{"name":"WHvX64RegisterDeliverabilityNotifications","features":[181]},{"name":"WHvX64RegisterDr0","features":[181]},{"name":"WHvX64RegisterDr1","features":[181]},{"name":"WHvX64RegisterDr2","features":[181]},{"name":"WHvX64RegisterDr3","features":[181]},{"name":"WHvX64RegisterDr6","features":[181]},{"name":"WHvX64RegisterDr7","features":[181]},{"name":"WHvX64RegisterDs","features":[181]},{"name":"WHvX64RegisterEfer","features":[181]},{"name":"WHvX64RegisterEs","features":[181]},{"name":"WHvX64RegisterFpControlStatus","features":[181]},{"name":"WHvX64RegisterFpMmx0","features":[181]},{"name":"WHvX64RegisterFpMmx1","features":[181]},{"name":"WHvX64RegisterFpMmx2","features":[181]},{"name":"WHvX64RegisterFpMmx3","features":[181]},{"name":"WHvX64RegisterFpMmx4","features":[181]},{"name":"WHvX64RegisterFpMmx5","features":[181]},{"name":"WHvX64RegisterFpMmx6","features":[181]},{"name":"WHvX64RegisterFpMmx7","features":[181]},{"name":"WHvX64RegisterFs","features":[181]},{"name":"WHvX64RegisterGdtr","features":[181]},{"name":"WHvX64RegisterGs","features":[181]},{"name":"WHvX64RegisterHypercall","features":[181]},{"name":"WHvX64RegisterIdtr","features":[181]},{"name":"WHvX64RegisterInitialApicId","features":[181]},{"name":"WHvX64RegisterInterruptSspTableAddr","features":[181]},{"name":"WHvX64RegisterKernelGsBase","features":[181]},{"name":"WHvX64RegisterLdtr","features":[181]},{"name":"WHvX64RegisterLstar","features":[181]},{"name":"WHvX64RegisterMCount","features":[181]},{"name":"WHvX64RegisterMsrMtrrCap","features":[181]},{"name":"WHvX64RegisterMsrMtrrDefType","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix16k80000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix16kA0000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kC0000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kC8000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kD0000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kD8000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kE0000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kE8000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kF0000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix4kF8000","features":[181]},{"name":"WHvX64RegisterMsrMtrrFix64k00000","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase0","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase1","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase2","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase3","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase4","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase5","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase6","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase7","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase8","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBase9","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBaseA","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBaseB","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBaseC","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBaseD","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBaseE","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysBaseF","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask0","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask1","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask2","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask3","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask4","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask5","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask6","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask7","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask8","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMask9","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMaskA","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMaskB","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMaskC","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMaskD","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMaskE","features":[181]},{"name":"WHvX64RegisterMsrMtrrPhysMaskF","features":[181]},{"name":"WHvX64RegisterPat","features":[181]},{"name":"WHvX64RegisterPendingDebugException","features":[181]},{"name":"WHvX64RegisterPl0Ssp","features":[181]},{"name":"WHvX64RegisterPl1Ssp","features":[181]},{"name":"WHvX64RegisterPl2Ssp","features":[181]},{"name":"WHvX64RegisterPl3Ssp","features":[181]},{"name":"WHvX64RegisterPredCmd","features":[181]},{"name":"WHvX64RegisterR10","features":[181]},{"name":"WHvX64RegisterR11","features":[181]},{"name":"WHvX64RegisterR12","features":[181]},{"name":"WHvX64RegisterR13","features":[181]},{"name":"WHvX64RegisterR14","features":[181]},{"name":"WHvX64RegisterR15","features":[181]},{"name":"WHvX64RegisterR8","features":[181]},{"name":"WHvX64RegisterR9","features":[181]},{"name":"WHvX64RegisterRax","features":[181]},{"name":"WHvX64RegisterRbp","features":[181]},{"name":"WHvX64RegisterRbx","features":[181]},{"name":"WHvX64RegisterRcx","features":[181]},{"name":"WHvX64RegisterRdi","features":[181]},{"name":"WHvX64RegisterRdx","features":[181]},{"name":"WHvX64RegisterRflags","features":[181]},{"name":"WHvX64RegisterRip","features":[181]},{"name":"WHvX64RegisterRsi","features":[181]},{"name":"WHvX64RegisterRsp","features":[181]},{"name":"WHvX64RegisterSCet","features":[181]},{"name":"WHvX64RegisterSfmask","features":[181]},{"name":"WHvX64RegisterSpecCtrl","features":[181]},{"name":"WHvX64RegisterSs","features":[181]},{"name":"WHvX64RegisterSsp","features":[181]},{"name":"WHvX64RegisterStar","features":[181]},{"name":"WHvX64RegisterSysenterCs","features":[181]},{"name":"WHvX64RegisterSysenterEip","features":[181]},{"name":"WHvX64RegisterSysenterEsp","features":[181]},{"name":"WHvX64RegisterTr","features":[181]},{"name":"WHvX64RegisterTsc","features":[181]},{"name":"WHvX64RegisterTscAdjust","features":[181]},{"name":"WHvX64RegisterTscAux","features":[181]},{"name":"WHvX64RegisterTscDeadline","features":[181]},{"name":"WHvX64RegisterTscVirtualOffset","features":[181]},{"name":"WHvX64RegisterTsxCtrl","features":[181]},{"name":"WHvX64RegisterUCet","features":[181]},{"name":"WHvX64RegisterUmwaitControl","features":[181]},{"name":"WHvX64RegisterVirtualCr0","features":[181]},{"name":"WHvX64RegisterVirtualCr3","features":[181]},{"name":"WHvX64RegisterVirtualCr4","features":[181]},{"name":"WHvX64RegisterVirtualCr8","features":[181]},{"name":"WHvX64RegisterXCr0","features":[181]},{"name":"WHvX64RegisterXfd","features":[181]},{"name":"WHvX64RegisterXfdErr","features":[181]},{"name":"WHvX64RegisterXmm0","features":[181]},{"name":"WHvX64RegisterXmm1","features":[181]},{"name":"WHvX64RegisterXmm10","features":[181]},{"name":"WHvX64RegisterXmm11","features":[181]},{"name":"WHvX64RegisterXmm12","features":[181]},{"name":"WHvX64RegisterXmm13","features":[181]},{"name":"WHvX64RegisterXmm14","features":[181]},{"name":"WHvX64RegisterXmm15","features":[181]},{"name":"WHvX64RegisterXmm2","features":[181]},{"name":"WHvX64RegisterXmm3","features":[181]},{"name":"WHvX64RegisterXmm4","features":[181]},{"name":"WHvX64RegisterXmm5","features":[181]},{"name":"WHvX64RegisterXmm6","features":[181]},{"name":"WHvX64RegisterXmm7","features":[181]},{"name":"WHvX64RegisterXmm8","features":[181]},{"name":"WHvX64RegisterXmm9","features":[181]},{"name":"WHvX64RegisterXmmControlStatus","features":[181]},{"name":"WHvX64RegisterXss","features":[181]},{"name":"X64_RegisterCr0","features":[181]},{"name":"X64_RegisterCr2","features":[181]},{"name":"X64_RegisterCr3","features":[181]},{"name":"X64_RegisterCr4","features":[181]},{"name":"X64_RegisterCr8","features":[181]},{"name":"X64_RegisterCs","features":[181]},{"name":"X64_RegisterDr0","features":[181]},{"name":"X64_RegisterDr1","features":[181]},{"name":"X64_RegisterDr2","features":[181]},{"name":"X64_RegisterDr3","features":[181]},{"name":"X64_RegisterDr6","features":[181]},{"name":"X64_RegisterDr7","features":[181]},{"name":"X64_RegisterDs","features":[181]},{"name":"X64_RegisterEfer","features":[181]},{"name":"X64_RegisterEs","features":[181]},{"name":"X64_RegisterFpControlStatus","features":[181]},{"name":"X64_RegisterFpMmx0","features":[181]},{"name":"X64_RegisterFpMmx1","features":[181]},{"name":"X64_RegisterFpMmx2","features":[181]},{"name":"X64_RegisterFpMmx3","features":[181]},{"name":"X64_RegisterFpMmx4","features":[181]},{"name":"X64_RegisterFpMmx5","features":[181]},{"name":"X64_RegisterFpMmx6","features":[181]},{"name":"X64_RegisterFpMmx7","features":[181]},{"name":"X64_RegisterFs","features":[181]},{"name":"X64_RegisterGdtr","features":[181]},{"name":"X64_RegisterGs","features":[181]},{"name":"X64_RegisterIdtr","features":[181]},{"name":"X64_RegisterLdtr","features":[181]},{"name":"X64_RegisterMax","features":[181]},{"name":"X64_RegisterR10","features":[181]},{"name":"X64_RegisterR11","features":[181]},{"name":"X64_RegisterR12","features":[181]},{"name":"X64_RegisterR13","features":[181]},{"name":"X64_RegisterR14","features":[181]},{"name":"X64_RegisterR15","features":[181]},{"name":"X64_RegisterR8","features":[181]},{"name":"X64_RegisterR9","features":[181]},{"name":"X64_RegisterRFlags","features":[181]},{"name":"X64_RegisterRax","features":[181]},{"name":"X64_RegisterRbp","features":[181]},{"name":"X64_RegisterRbx","features":[181]},{"name":"X64_RegisterRcx","features":[181]},{"name":"X64_RegisterRdi","features":[181]},{"name":"X64_RegisterRdx","features":[181]},{"name":"X64_RegisterRip","features":[181]},{"name":"X64_RegisterRsi","features":[181]},{"name":"X64_RegisterRsp","features":[181]},{"name":"X64_RegisterSs","features":[181]},{"name":"X64_RegisterTr","features":[181]},{"name":"X64_RegisterXmm0","features":[181]},{"name":"X64_RegisterXmm1","features":[181]},{"name":"X64_RegisterXmm10","features":[181]},{"name":"X64_RegisterXmm11","features":[181]},{"name":"X64_RegisterXmm12","features":[181]},{"name":"X64_RegisterXmm13","features":[181]},{"name":"X64_RegisterXmm14","features":[181]},{"name":"X64_RegisterXmm15","features":[181]},{"name":"X64_RegisterXmm2","features":[181]},{"name":"X64_RegisterXmm3","features":[181]},{"name":"X64_RegisterXmm4","features":[181]},{"name":"X64_RegisterXmm5","features":[181]},{"name":"X64_RegisterXmm6","features":[181]},{"name":"X64_RegisterXmm7","features":[181]},{"name":"X64_RegisterXmm8","features":[181]},{"name":"X64_RegisterXmm9","features":[181]},{"name":"X64_RegisterXmmControlStatus","features":[181]}],"573":[{"name":"BindIoCompletionCallback","features":[3,8]},{"name":"CancelIo","features":[3,8]},{"name":"CancelIoEx","features":[3,8]},{"name":"CancelSynchronousIo","features":[3,8]},{"name":"CreateIoCompletionPort","features":[3,8]},{"name":"DeviceIoControl","features":[3,8]},{"name":"GetOverlappedResult","features":[3,8]},{"name":"GetOverlappedResultEx","features":[3,8]},{"name":"GetQueuedCompletionStatus","features":[3,8]},{"name":"GetQueuedCompletionStatusEx","features":[3,8]},{"name":"IO_STATUS_BLOCK","features":[3,8]},{"name":"LPOVERLAPPED_COMPLETION_ROUTINE","features":[3,8]},{"name":"OVERLAPPED","features":[3,8]},{"name":"OVERLAPPED_ENTRY","features":[3,8]},{"name":"PIO_APC_ROUTINE","features":[3,8]},{"name":"PostQueuedCompletionStatus","features":[3,8]}],"574":[{"name":"ADMINDATA_MAX_NAME_LEN","features":[182]},{"name":"ALL_METADATA","features":[182]},{"name":"APPCTR_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"APPCTR_MD_ID_END_RESERVED","features":[182]},{"name":"APPSTATUS_NOTDEFINED","features":[182]},{"name":"APPSTATUS_RUNNING","features":[182]},{"name":"APPSTATUS_STOPPED","features":[182]},{"name":"ASP_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"ASP_MD_ID_END_RESERVED","features":[182]},{"name":"ASP_MD_SERVER_BASE","features":[182]},{"name":"ASP_MD_UT_APP","features":[182]},{"name":"AsyncIFtpAuthenticationProvider","features":[182]},{"name":"AsyncIFtpAuthorizationProvider","features":[182]},{"name":"AsyncIFtpHomeDirectoryProvider","features":[182]},{"name":"AsyncIFtpLogProvider","features":[182]},{"name":"AsyncIFtpPostprocessProvider","features":[182]},{"name":"AsyncIFtpPreprocessProvider","features":[182]},{"name":"AsyncIFtpRoleProvider","features":[182]},{"name":"AsyncIMSAdminBaseSinkW","features":[182]},{"name":"BINARY_METADATA","features":[182]},{"name":"CERT_CONTEXT_EX","features":[3,70,182]},{"name":"CLSID_IImgCtx","features":[182]},{"name":"CLSID_IisServiceControl","features":[182]},{"name":"CLSID_MSAdminBase_W","features":[182]},{"name":"CLSID_Request","features":[182]},{"name":"CLSID_Response","features":[182]},{"name":"CLSID_ScriptingContext","features":[182]},{"name":"CLSID_Server","features":[182]},{"name":"CLSID_Session","features":[182]},{"name":"CLSID_WamAdmin","features":[182]},{"name":"CONFIGURATION_ENTRY","features":[182]},{"name":"DISPID_HTTPREQUEST_ABORT","features":[182]},{"name":"DISPID_HTTPREQUEST_BASE","features":[182]},{"name":"DISPID_HTTPREQUEST_GETALLRESPONSEHEADERS","features":[182]},{"name":"DISPID_HTTPREQUEST_GETRESPONSEHEADER","features":[182]},{"name":"DISPID_HTTPREQUEST_OPEN","features":[182]},{"name":"DISPID_HTTPREQUEST_OPTION","features":[182]},{"name":"DISPID_HTTPREQUEST_RESPONSEBODY","features":[182]},{"name":"DISPID_HTTPREQUEST_RESPONSESTREAM","features":[182]},{"name":"DISPID_HTTPREQUEST_RESPONSETEXT","features":[182]},{"name":"DISPID_HTTPREQUEST_SEND","features":[182]},{"name":"DISPID_HTTPREQUEST_SETAUTOLOGONPOLICY","features":[182]},{"name":"DISPID_HTTPREQUEST_SETCLIENTCERTIFICATE","features":[182]},{"name":"DISPID_HTTPREQUEST_SETCREDENTIALS","features":[182]},{"name":"DISPID_HTTPREQUEST_SETPROXY","features":[182]},{"name":"DISPID_HTTPREQUEST_SETREQUESTHEADER","features":[182]},{"name":"DISPID_HTTPREQUEST_SETTIMEOUTS","features":[182]},{"name":"DISPID_HTTPREQUEST_STATUS","features":[182]},{"name":"DISPID_HTTPREQUEST_STATUSTEXT","features":[182]},{"name":"DISPID_HTTPREQUEST_WAITFORRESPONSE","features":[182]},{"name":"DWN_COLORMODE","features":[182]},{"name":"DWN_DOWNLOADONLY","features":[182]},{"name":"DWN_FORCEDITHER","features":[182]},{"name":"DWN_MIRRORIMAGE","features":[182]},{"name":"DWN_RAWIMAGE","features":[182]},{"name":"DWORD_METADATA","features":[182]},{"name":"EXPANDSZ_METADATA","features":[182]},{"name":"EXTENSION_CONTROL_BLOCK","features":[3,182]},{"name":"FP_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"FP_MD_ID_END_RESERVED","features":[182]},{"name":"FTP_ACCESS","features":[182]},{"name":"FTP_ACCESS_NONE","features":[182]},{"name":"FTP_ACCESS_READ","features":[182]},{"name":"FTP_ACCESS_READ_WRITE","features":[182]},{"name":"FTP_ACCESS_WRITE","features":[182]},{"name":"FTP_PROCESS_CLOSE_SESSION","features":[182]},{"name":"FTP_PROCESS_CONTINUE","features":[182]},{"name":"FTP_PROCESS_REJECT_COMMAND","features":[182]},{"name":"FTP_PROCESS_STATUS","features":[182]},{"name":"FTP_PROCESS_TERMINATE_SESSION","features":[182]},{"name":"FtpProvider","features":[182]},{"name":"GUID_IIS_ALL_TRACE_PROVIDERS","features":[182]},{"name":"GUID_IIS_ASPNET_TRACE_PROVIDER","features":[182]},{"name":"GUID_IIS_ASP_TRACE_TRACE_PROVIDER","features":[182]},{"name":"GUID_IIS_ISAPI_TRACE_PROVIDER","features":[182]},{"name":"GUID_IIS_WWW_GLOBAL_TRACE_PROVIDER","features":[182]},{"name":"GUID_IIS_WWW_SERVER_TRACE_PROVIDER","features":[182]},{"name":"GUID_IIS_WWW_SERVER_V2_TRACE_PROVIDER","features":[182]},{"name":"GetExtensionVersion","features":[3,182]},{"name":"GetFilterVersion","features":[3,182]},{"name":"HCONN","features":[182]},{"name":"HSE_APPEND_LOG_PARAMETER","features":[182]},{"name":"HSE_APP_FLAG_IN_PROCESS","features":[182]},{"name":"HSE_APP_FLAG_ISOLATED_OOP","features":[182]},{"name":"HSE_APP_FLAG_POOLED_OOP","features":[182]},{"name":"HSE_CUSTOM_ERROR_INFO","features":[3,182]},{"name":"HSE_EXEC_UNICODE_URL_INFO","features":[3,182]},{"name":"HSE_EXEC_UNICODE_URL_USER_INFO","features":[3,182]},{"name":"HSE_EXEC_URL_DISABLE_CUSTOM_ERROR","features":[182]},{"name":"HSE_EXEC_URL_ENTITY_INFO","features":[182]},{"name":"HSE_EXEC_URL_HTTP_CACHE_ELIGIBLE","features":[182]},{"name":"HSE_EXEC_URL_IGNORE_CURRENT_INTERCEPTOR","features":[182]},{"name":"HSE_EXEC_URL_IGNORE_VALIDATION_AND_RANGE","features":[182]},{"name":"HSE_EXEC_URL_INFO","features":[3,182]},{"name":"HSE_EXEC_URL_NO_HEADERS","features":[182]},{"name":"HSE_EXEC_URL_SSI_CMD","features":[182]},{"name":"HSE_EXEC_URL_STATUS","features":[182]},{"name":"HSE_EXEC_URL_USER_INFO","features":[3,182]},{"name":"HSE_IO_ASYNC","features":[182]},{"name":"HSE_IO_CACHE_RESPONSE","features":[182]},{"name":"HSE_IO_DISCONNECT_AFTER_SEND","features":[182]},{"name":"HSE_IO_FINAL_SEND","features":[182]},{"name":"HSE_IO_NODELAY","features":[182]},{"name":"HSE_IO_SEND_HEADERS","features":[182]},{"name":"HSE_IO_SYNC","features":[182]},{"name":"HSE_IO_TRY_SKIP_CUSTOM_ERRORS","features":[182]},{"name":"HSE_LOG_BUFFER_LEN","features":[182]},{"name":"HSE_MAX_EXT_DLL_NAME_LEN","features":[182]},{"name":"HSE_REQ_ABORTIVE_CLOSE","features":[182]},{"name":"HSE_REQ_ASYNC_READ_CLIENT","features":[182]},{"name":"HSE_REQ_BASE","features":[182]},{"name":"HSE_REQ_CANCEL_IO","features":[182]},{"name":"HSE_REQ_CLOSE_CONNECTION","features":[182]},{"name":"HSE_REQ_DONE_WITH_SESSION","features":[182]},{"name":"HSE_REQ_END_RESERVED","features":[182]},{"name":"HSE_REQ_EXEC_UNICODE_URL","features":[182]},{"name":"HSE_REQ_EXEC_URL","features":[182]},{"name":"HSE_REQ_GET_ANONYMOUS_TOKEN","features":[182]},{"name":"HSE_REQ_GET_CACHE_INVALIDATION_CALLBACK","features":[182]},{"name":"HSE_REQ_GET_CERT_INFO_EX","features":[182]},{"name":"HSE_REQ_GET_CHANNEL_BINDING_TOKEN","features":[182]},{"name":"HSE_REQ_GET_CONFIG_OBJECT","features":[182]},{"name":"HSE_REQ_GET_EXEC_URL_STATUS","features":[182]},{"name":"HSE_REQ_GET_IMPERSONATION_TOKEN","features":[182]},{"name":"HSE_REQ_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[182]},{"name":"HSE_REQ_GET_SSPI_INFO","features":[182]},{"name":"HSE_REQ_GET_TRACE_INFO","features":[182]},{"name":"HSE_REQ_GET_TRACE_INFO_EX","features":[182]},{"name":"HSE_REQ_GET_UNICODE_ANONYMOUS_TOKEN","features":[182]},{"name":"HSE_REQ_GET_WORKER_PROCESS_SETTINGS","features":[182]},{"name":"HSE_REQ_IO_COMPLETION","features":[182]},{"name":"HSE_REQ_IS_CONNECTED","features":[182]},{"name":"HSE_REQ_IS_IN_PROCESS","features":[182]},{"name":"HSE_REQ_IS_KEEP_CONN","features":[182]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH","features":[182]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH_EX","features":[182]},{"name":"HSE_REQ_MAP_URL_TO_PATH","features":[182]},{"name":"HSE_REQ_MAP_URL_TO_PATH_EX","features":[182]},{"name":"HSE_REQ_NORMALIZE_URL","features":[182]},{"name":"HSE_REQ_RAISE_TRACE_EVENT","features":[182]},{"name":"HSE_REQ_REFRESH_ISAPI_ACL","features":[182]},{"name":"HSE_REQ_REPORT_UNHEALTHY","features":[182]},{"name":"HSE_REQ_SEND_CUSTOM_ERROR","features":[182]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER","features":[182]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER_EX","features":[182]},{"name":"HSE_REQ_SEND_URL","features":[182]},{"name":"HSE_REQ_SEND_URL_REDIRECT_RESP","features":[182]},{"name":"HSE_REQ_SET_FLUSH_FLAG","features":[182]},{"name":"HSE_REQ_TRANSMIT_FILE","features":[182]},{"name":"HSE_REQ_VECTOR_SEND","features":[182]},{"name":"HSE_RESPONSE_VECTOR","features":[182]},{"name":"HSE_SEND_HEADER_EX_INFO","features":[3,182]},{"name":"HSE_STATUS_ERROR","features":[182]},{"name":"HSE_STATUS_PENDING","features":[182]},{"name":"HSE_STATUS_SUCCESS","features":[182]},{"name":"HSE_STATUS_SUCCESS_AND_KEEP_CONN","features":[182]},{"name":"HSE_TERM_ADVISORY_UNLOAD","features":[182]},{"name":"HSE_TERM_MUST_UNLOAD","features":[182]},{"name":"HSE_TF_INFO","features":[3,182]},{"name":"HSE_TRACE_INFO","features":[3,182]},{"name":"HSE_UNICODE_URL_MAPEX_INFO","features":[182]},{"name":"HSE_URL_FLAGS_DONT_CACHE","features":[182]},{"name":"HSE_URL_FLAGS_EXECUTE","features":[182]},{"name":"HSE_URL_FLAGS_MAP_CERT","features":[182]},{"name":"HSE_URL_FLAGS_MASK","features":[182]},{"name":"HSE_URL_FLAGS_NEGO_CERT","features":[182]},{"name":"HSE_URL_FLAGS_READ","features":[182]},{"name":"HSE_URL_FLAGS_REQUIRE_CERT","features":[182]},{"name":"HSE_URL_FLAGS_SCRIPT","features":[182]},{"name":"HSE_URL_FLAGS_SSL","features":[182]},{"name":"HSE_URL_FLAGS_SSL128","features":[182]},{"name":"HSE_URL_FLAGS_WRITE","features":[182]},{"name":"HSE_URL_MAPEX_INFO","features":[182]},{"name":"HSE_VECTOR_ELEMENT","features":[182]},{"name":"HSE_VECTOR_ELEMENT_TYPE_FILE_HANDLE","features":[182]},{"name":"HSE_VECTOR_ELEMENT_TYPE_MEMORY_BUFFER","features":[182]},{"name":"HSE_VERSION_INFO","features":[182]},{"name":"HSE_VERSION_MAJOR","features":[182]},{"name":"HSE_VERSION_MINOR","features":[182]},{"name":"HTTP_FILTER_ACCESS_DENIED","features":[182]},{"name":"HTTP_FILTER_AUTHENT","features":[182]},{"name":"HTTP_FILTER_AUTH_COMPLETE_INFO","features":[3,182]},{"name":"HTTP_FILTER_CONTEXT","features":[3,182]},{"name":"HTTP_FILTER_LOG","features":[182]},{"name":"HTTP_FILTER_PREPROC_HEADERS","features":[182]},{"name":"HTTP_FILTER_RAW_DATA","features":[182]},{"name":"HTTP_FILTER_URL_MAP","features":[182]},{"name":"HTTP_FILTER_URL_MAP_EX","features":[182]},{"name":"HTTP_FILTER_VERSION","features":[182]},{"name":"HTTP_TRACE_CONFIGURATION","features":[3,182]},{"name":"HTTP_TRACE_EVENT","features":[182]},{"name":"HTTP_TRACE_EVENT_FLAG_STATIC_DESCRIPTIVE_FIELDS","features":[182]},{"name":"HTTP_TRACE_EVENT_ITEM","features":[182]},{"name":"HTTP_TRACE_LEVEL_END","features":[182]},{"name":"HTTP_TRACE_LEVEL_START","features":[182]},{"name":"HTTP_TRACE_TYPE","features":[182]},{"name":"HTTP_TRACE_TYPE_BOOL","features":[182]},{"name":"HTTP_TRACE_TYPE_BYTE","features":[182]},{"name":"HTTP_TRACE_TYPE_CHAR","features":[182]},{"name":"HTTP_TRACE_TYPE_LONG","features":[182]},{"name":"HTTP_TRACE_TYPE_LONGLONG","features":[182]},{"name":"HTTP_TRACE_TYPE_LPCGUID","features":[182]},{"name":"HTTP_TRACE_TYPE_LPCSTR","features":[182]},{"name":"HTTP_TRACE_TYPE_LPCWSTR","features":[182]},{"name":"HTTP_TRACE_TYPE_SHORT","features":[182]},{"name":"HTTP_TRACE_TYPE_ULONG","features":[182]},{"name":"HTTP_TRACE_TYPE_ULONGLONG","features":[182]},{"name":"HTTP_TRACE_TYPE_USHORT","features":[182]},{"name":"HttpExtensionProc","features":[3,182]},{"name":"HttpFilterProc","features":[3,182]},{"name":"IADMEXT","features":[182]},{"name":"IFtpAuthenticationProvider","features":[182]},{"name":"IFtpAuthorizationProvider","features":[182]},{"name":"IFtpHomeDirectoryProvider","features":[182]},{"name":"IFtpLogProvider","features":[182]},{"name":"IFtpPostprocessProvider","features":[182]},{"name":"IFtpPreprocessProvider","features":[182]},{"name":"IFtpProviderConstruct","features":[182]},{"name":"IFtpRoleProvider","features":[182]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEY","features":[182]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYA","features":[182]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYW","features":[182]},{"name":"IISADMIN_EXTENSIONS_REG_KEY","features":[182]},{"name":"IISADMIN_EXTENSIONS_REG_KEYA","features":[182]},{"name":"IISADMIN_EXTENSIONS_REG_KEYW","features":[182]},{"name":"IIS_CLASS_CERTMAPPER","features":[182]},{"name":"IIS_CLASS_CERTMAPPER_W","features":[182]},{"name":"IIS_CLASS_COMPRESS_SCHEME","features":[182]},{"name":"IIS_CLASS_COMPRESS_SCHEMES","features":[182]},{"name":"IIS_CLASS_COMPRESS_SCHEMES_W","features":[182]},{"name":"IIS_CLASS_COMPRESS_SCHEME_W","features":[182]},{"name":"IIS_CLASS_COMPUTER","features":[182]},{"name":"IIS_CLASS_COMPUTER_W","features":[182]},{"name":"IIS_CLASS_FILTER","features":[182]},{"name":"IIS_CLASS_FILTERS","features":[182]},{"name":"IIS_CLASS_FILTERS_W","features":[182]},{"name":"IIS_CLASS_FILTER_W","features":[182]},{"name":"IIS_CLASS_FTP_INFO","features":[182]},{"name":"IIS_CLASS_FTP_INFO_W","features":[182]},{"name":"IIS_CLASS_FTP_SERVER","features":[182]},{"name":"IIS_CLASS_FTP_SERVER_W","features":[182]},{"name":"IIS_CLASS_FTP_SERVICE","features":[182]},{"name":"IIS_CLASS_FTP_SERVICE_W","features":[182]},{"name":"IIS_CLASS_FTP_VDIR","features":[182]},{"name":"IIS_CLASS_FTP_VDIR_W","features":[182]},{"name":"IIS_CLASS_LOG_MODULE","features":[182]},{"name":"IIS_CLASS_LOG_MODULES","features":[182]},{"name":"IIS_CLASS_LOG_MODULES_W","features":[182]},{"name":"IIS_CLASS_LOG_MODULE_W","features":[182]},{"name":"IIS_CLASS_MIMEMAP","features":[182]},{"name":"IIS_CLASS_MIMEMAP_W","features":[182]},{"name":"IIS_CLASS_WEB_DIR","features":[182]},{"name":"IIS_CLASS_WEB_DIR_W","features":[182]},{"name":"IIS_CLASS_WEB_FILE","features":[182]},{"name":"IIS_CLASS_WEB_FILE_W","features":[182]},{"name":"IIS_CLASS_WEB_INFO","features":[182]},{"name":"IIS_CLASS_WEB_INFO_W","features":[182]},{"name":"IIS_CLASS_WEB_SERVER","features":[182]},{"name":"IIS_CLASS_WEB_SERVER_W","features":[182]},{"name":"IIS_CLASS_WEB_SERVICE","features":[182]},{"name":"IIS_CLASS_WEB_SERVICE_W","features":[182]},{"name":"IIS_CLASS_WEB_VDIR","features":[182]},{"name":"IIS_CLASS_WEB_VDIR_W","features":[182]},{"name":"IIS_MD_ADSI_METAID_BEGIN","features":[182]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_A","features":[182]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_W","features":[182]},{"name":"IIS_MD_APPPOOL_BASE","features":[182]},{"name":"IIS_MD_APP_BASE","features":[182]},{"name":"IIS_MD_FILE_PROP_BASE","features":[182]},{"name":"IIS_MD_FTP_BASE","features":[182]},{"name":"IIS_MD_GLOBAL_BASE","features":[182]},{"name":"IIS_MD_HTTP_BASE","features":[182]},{"name":"IIS_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"IIS_MD_ID_END_RESERVED","features":[182]},{"name":"IIS_MD_INSTANCE_ROOT","features":[182]},{"name":"IIS_MD_ISAPI_FILTERS","features":[182]},{"name":"IIS_MD_LOCAL_MACHINE_PATH","features":[182]},{"name":"IIS_MD_LOGCUSTOM_BASE","features":[182]},{"name":"IIS_MD_LOGCUSTOM_LAST","features":[182]},{"name":"IIS_MD_LOG_BASE","features":[182]},{"name":"IIS_MD_LOG_LAST","features":[182]},{"name":"IIS_MD_SERVER_BASE","features":[182]},{"name":"IIS_MD_SSL_BASE","features":[182]},{"name":"IIS_MD_SVC_INFO_PATH","features":[182]},{"name":"IIS_MD_UT_END_RESERVED","features":[182]},{"name":"IIS_MD_UT_FILE","features":[182]},{"name":"IIS_MD_UT_SERVER","features":[182]},{"name":"IIS_MD_UT_WAM","features":[182]},{"name":"IIS_MD_VR_BASE","features":[182]},{"name":"IIS_WEBSOCKET","features":[182]},{"name":"IIS_WEBSOCKET_SERVER_VARIABLE","features":[182]},{"name":"IMAP_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"IMAP_MD_ID_END_RESERVED","features":[182]},{"name":"IMGANIM_ANIMATED","features":[182]},{"name":"IMGANIM_MASK","features":[182]},{"name":"IMGBITS_MASK","features":[182]},{"name":"IMGBITS_NONE","features":[182]},{"name":"IMGBITS_PARTIAL","features":[182]},{"name":"IMGBITS_TOTAL","features":[182]},{"name":"IMGCHG_ANIMATE","features":[182]},{"name":"IMGCHG_COMPLETE","features":[182]},{"name":"IMGCHG_MASK","features":[182]},{"name":"IMGCHG_SIZE","features":[182]},{"name":"IMGCHG_VIEW","features":[182]},{"name":"IMGLOAD_COMPLETE","features":[182]},{"name":"IMGLOAD_ERROR","features":[182]},{"name":"IMGLOAD_LOADING","features":[182]},{"name":"IMGLOAD_MASK","features":[182]},{"name":"IMGLOAD_NOTLOADED","features":[182]},{"name":"IMGLOAD_STOPPED","features":[182]},{"name":"IMGTRANS_MASK","features":[182]},{"name":"IMGTRANS_OPAQUE","features":[182]},{"name":"IMSAdminBase2W","features":[182]},{"name":"IMSAdminBase3W","features":[182]},{"name":"IMSAdminBaseSinkW","features":[182]},{"name":"IMSAdminBaseW","features":[182]},{"name":"IMSImpExpHelpW","features":[182]},{"name":"INVALID_END_METADATA","features":[182]},{"name":"LIBID_ASPTypeLibrary","features":[182]},{"name":"LIBID_IISRSTALib","features":[182]},{"name":"LIBID_WAMREGLib","features":[182]},{"name":"LOGGING_PARAMETERS","features":[182]},{"name":"MB_DONT_IMPERSONATE","features":[182]},{"name":"MD_ACCESS_EXECUTE","features":[182]},{"name":"MD_ACCESS_MAP_CERT","features":[182]},{"name":"MD_ACCESS_MASK","features":[182]},{"name":"MD_ACCESS_NEGO_CERT","features":[182]},{"name":"MD_ACCESS_NO_PHYSICAL_DIR","features":[182]},{"name":"MD_ACCESS_NO_REMOTE_EXECUTE","features":[182]},{"name":"MD_ACCESS_NO_REMOTE_READ","features":[182]},{"name":"MD_ACCESS_NO_REMOTE_SCRIPT","features":[182]},{"name":"MD_ACCESS_NO_REMOTE_WRITE","features":[182]},{"name":"MD_ACCESS_PERM","features":[182]},{"name":"MD_ACCESS_READ","features":[182]},{"name":"MD_ACCESS_REQUIRE_CERT","features":[182]},{"name":"MD_ACCESS_SCRIPT","features":[182]},{"name":"MD_ACCESS_SOURCE","features":[182]},{"name":"MD_ACCESS_SSL","features":[182]},{"name":"MD_ACCESS_SSL128","features":[182]},{"name":"MD_ACCESS_WRITE","features":[182]},{"name":"MD_ACR_ENUM_KEYS","features":[182]},{"name":"MD_ACR_READ","features":[182]},{"name":"MD_ACR_RESTRICTED_WRITE","features":[182]},{"name":"MD_ACR_UNSECURE_PROPS_READ","features":[182]},{"name":"MD_ACR_WRITE","features":[182]},{"name":"MD_ACR_WRITE_DAC","features":[182]},{"name":"MD_ADMIN_ACL","features":[182]},{"name":"MD_ADMIN_INSTANCE","features":[182]},{"name":"MD_ADV_CACHE_TTL","features":[182]},{"name":"MD_ADV_NOTIFY_PWD_EXP_IN_DAYS","features":[182]},{"name":"MD_AD_CONNECTIONS_PASSWORD","features":[182]},{"name":"MD_AD_CONNECTIONS_USERNAME","features":[182]},{"name":"MD_ALLOW_ANONYMOUS","features":[182]},{"name":"MD_ALLOW_KEEPALIVES","features":[182]},{"name":"MD_ALLOW_PATH_INFO_FOR_SCRIPT_MAPPINGS","features":[182]},{"name":"MD_ALLOW_REPLACE_ON_RENAME","features":[182]},{"name":"MD_ANONYMOUS_ONLY","features":[182]},{"name":"MD_ANONYMOUS_PWD","features":[182]},{"name":"MD_ANONYMOUS_USER_NAME","features":[182]},{"name":"MD_ANONYMOUS_USE_SUBAUTH","features":[182]},{"name":"MD_APPPOOL_32_BIT_APP_ON_WIN64","features":[182]},{"name":"MD_APPPOOL_ALLOW_TRANSIENT_REGISTRATION","features":[182]},{"name":"MD_APPPOOL_APPPOOL_ID","features":[182]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_EXE","features":[182]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_PARAMS","features":[182]},{"name":"MD_APPPOOL_AUTO_START","features":[182]},{"name":"MD_APPPOOL_COMMAND","features":[182]},{"name":"MD_APPPOOL_COMMAND_START","features":[182]},{"name":"MD_APPPOOL_COMMAND_STOP","features":[182]},{"name":"MD_APPPOOL_DISALLOW_OVERLAPPING_ROTATION","features":[182]},{"name":"MD_APPPOOL_DISALLOW_ROTATION_ON_CONFIG_CHANGE","features":[182]},{"name":"MD_APPPOOL_EMULATION_ON_WINARM64","features":[182]},{"name":"MD_APPPOOL_IDENTITY_TYPE","features":[182]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSERVICE","features":[182]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSYSTEM","features":[182]},{"name":"MD_APPPOOL_IDENTITY_TYPE_NETWORKSERVICE","features":[182]},{"name":"MD_APPPOOL_IDENTITY_TYPE_SPECIFICUSER","features":[182]},{"name":"MD_APPPOOL_IDLE_TIMEOUT","features":[182]},{"name":"MD_APPPOOL_MANAGED_PIPELINE_MODE","features":[182]},{"name":"MD_APPPOOL_MANAGED_RUNTIME_VERSION","features":[182]},{"name":"MD_APPPOOL_MAX_PROCESS_COUNT","features":[182]},{"name":"MD_APPPOOL_ORPHAN_ACTION_EXE","features":[182]},{"name":"MD_APPPOOL_ORPHAN_ACTION_PARAMS","features":[182]},{"name":"MD_APPPOOL_ORPHAN_PROCESSES_FOR_DEBUGGING","features":[182]},{"name":"MD_APPPOOL_PERIODIC_RESTART_CONNECTIONS","features":[182]},{"name":"MD_APPPOOL_PERIODIC_RESTART_MEMORY","features":[182]},{"name":"MD_APPPOOL_PERIODIC_RESTART_PRIVATE_MEMORY","features":[182]},{"name":"MD_APPPOOL_PERIODIC_RESTART_REQUEST_COUNT","features":[182]},{"name":"MD_APPPOOL_PERIODIC_RESTART_SCHEDULE","features":[182]},{"name":"MD_APPPOOL_PERIODIC_RESTART_TIME","features":[182]},{"name":"MD_APPPOOL_PINGING_ENABLED","features":[182]},{"name":"MD_APPPOOL_PING_INTERVAL","features":[182]},{"name":"MD_APPPOOL_PING_RESPONSE_TIMELIMIT","features":[182]},{"name":"MD_APPPOOL_RAPID_FAIL_PROTECTION_ENABLED","features":[182]},{"name":"MD_APPPOOL_SHUTDOWN_TIMELIMIT","features":[182]},{"name":"MD_APPPOOL_SMP_AFFINITIZED","features":[182]},{"name":"MD_APPPOOL_SMP_AFFINITIZED_PROCESSOR_MASK","features":[182]},{"name":"MD_APPPOOL_STARTUP_TIMELIMIT","features":[182]},{"name":"MD_APPPOOL_STATE","features":[182]},{"name":"MD_APPPOOL_STATE_STARTED","features":[182]},{"name":"MD_APPPOOL_STATE_STARTING","features":[182]},{"name":"MD_APPPOOL_STATE_STOPPED","features":[182]},{"name":"MD_APPPOOL_STATE_STOPPING","features":[182]},{"name":"MD_APPPOOL_UL_APPPOOL_QUEUE_LENGTH","features":[182]},{"name":"MD_APP_ALLOW_TRANSIENT_REGISTRATION","features":[182]},{"name":"MD_APP_APPPOOL_ID","features":[182]},{"name":"MD_APP_AUTO_START","features":[182]},{"name":"MD_APP_DEPENDENCIES","features":[182]},{"name":"MD_APP_FRIENDLY_NAME","features":[182]},{"name":"MD_APP_ISOLATED","features":[182]},{"name":"MD_APP_OOP_RECOVER_LIMIT","features":[182]},{"name":"MD_APP_PACKAGE_ID","features":[182]},{"name":"MD_APP_PACKAGE_NAME","features":[182]},{"name":"MD_APP_PERIODIC_RESTART_REQUESTS","features":[182]},{"name":"MD_APP_PERIODIC_RESTART_SCHEDULE","features":[182]},{"name":"MD_APP_PERIODIC_RESTART_TIME","features":[182]},{"name":"MD_APP_POOL_LOG_EVENT_ON_PROCESSMODEL","features":[182]},{"name":"MD_APP_POOL_LOG_EVENT_ON_RECYCLE","features":[182]},{"name":"MD_APP_POOL_PROCESSMODEL_IDLE_TIMEOUT","features":[182]},{"name":"MD_APP_POOL_RECYCLE_CONFIG_CHANGE","features":[182]},{"name":"MD_APP_POOL_RECYCLE_ISAPI_UNHEALTHY","features":[182]},{"name":"MD_APP_POOL_RECYCLE_MEMORY","features":[182]},{"name":"MD_APP_POOL_RECYCLE_ON_DEMAND","features":[182]},{"name":"MD_APP_POOL_RECYCLE_PRIVATE_MEMORY","features":[182]},{"name":"MD_APP_POOL_RECYCLE_REQUESTS","features":[182]},{"name":"MD_APP_POOL_RECYCLE_SCHEDULE","features":[182]},{"name":"MD_APP_POOL_RECYCLE_TIME","features":[182]},{"name":"MD_APP_ROOT","features":[182]},{"name":"MD_APP_SHUTDOWN_TIME_LIMIT","features":[182]},{"name":"MD_APP_TRACE_URL_LIST","features":[182]},{"name":"MD_APP_WAM_CLSID","features":[182]},{"name":"MD_ASP_ALLOWOUTOFPROCCMPNTS","features":[182]},{"name":"MD_ASP_ALLOWOUTOFPROCCOMPONENTS","features":[182]},{"name":"MD_ASP_ALLOWSESSIONSTATE","features":[182]},{"name":"MD_ASP_BUFFERINGON","features":[182]},{"name":"MD_ASP_BUFFER_LIMIT","features":[182]},{"name":"MD_ASP_CALCLINENUMBER","features":[182]},{"name":"MD_ASP_CODEPAGE","features":[182]},{"name":"MD_ASP_DISKTEMPLATECACHEDIRECTORY","features":[182]},{"name":"MD_ASP_ENABLEAPPLICATIONRESTART","features":[182]},{"name":"MD_ASP_ENABLEASPHTMLFALLBACK","features":[182]},{"name":"MD_ASP_ENABLECHUNKEDENCODING","features":[182]},{"name":"MD_ASP_ENABLECLIENTDEBUG","features":[182]},{"name":"MD_ASP_ENABLEPARENTPATHS","features":[182]},{"name":"MD_ASP_ENABLESERVERDEBUG","features":[182]},{"name":"MD_ASP_ENABLETYPELIBCACHE","features":[182]},{"name":"MD_ASP_ERRORSTONTLOG","features":[182]},{"name":"MD_ASP_EXCEPTIONCATCHENABLE","features":[182]},{"name":"MD_ASP_EXECUTEINMTA","features":[182]},{"name":"MD_ASP_ID_LAST","features":[182]},{"name":"MD_ASP_KEEPSESSIONIDSECURE","features":[182]},{"name":"MD_ASP_LCID","features":[182]},{"name":"MD_ASP_LOGERRORREQUESTS","features":[182]},{"name":"MD_ASP_MAXDISKTEMPLATECACHEFILES","features":[182]},{"name":"MD_ASP_MAXREQUESTENTITY","features":[182]},{"name":"MD_ASP_MAX_REQUEST_ENTITY_ALLOWED","features":[182]},{"name":"MD_ASP_MEMFREEFACTOR","features":[182]},{"name":"MD_ASP_MINUSEDBLOCKS","features":[182]},{"name":"MD_ASP_PROCESSORTHREADMAX","features":[182]},{"name":"MD_ASP_QUEUECONNECTIONTESTTIME","features":[182]},{"name":"MD_ASP_QUEUETIMEOUT","features":[182]},{"name":"MD_ASP_REQEUSTQUEUEMAX","features":[182]},{"name":"MD_ASP_RUN_ONEND_ANON","features":[182]},{"name":"MD_ASP_SCRIPTENGINECACHEMAX","features":[182]},{"name":"MD_ASP_SCRIPTERRORMESSAGE","features":[182]},{"name":"MD_ASP_SCRIPTERRORSSENTTOBROWSER","features":[182]},{"name":"MD_ASP_SCRIPTFILECACHESIZE","features":[182]},{"name":"MD_ASP_SCRIPTLANGUAGE","features":[182]},{"name":"MD_ASP_SCRIPTLANGUAGELIST","features":[182]},{"name":"MD_ASP_SCRIPTTIMEOUT","features":[182]},{"name":"MD_ASP_SERVICE_ENABLE_SXS","features":[182]},{"name":"MD_ASP_SERVICE_ENABLE_TRACKER","features":[182]},{"name":"MD_ASP_SERVICE_FLAGS","features":[182]},{"name":"MD_ASP_SERVICE_FLAG_FUSION","features":[182]},{"name":"MD_ASP_SERVICE_FLAG_PARTITIONS","features":[182]},{"name":"MD_ASP_SERVICE_FLAG_TRACKER","features":[182]},{"name":"MD_ASP_SERVICE_PARTITION_ID","features":[182]},{"name":"MD_ASP_SERVICE_SXS_NAME","features":[182]},{"name":"MD_ASP_SERVICE_USE_PARTITION","features":[182]},{"name":"MD_ASP_SESSIONMAX","features":[182]},{"name":"MD_ASP_SESSIONTIMEOUT","features":[182]},{"name":"MD_ASP_THREADGATEENABLED","features":[182]},{"name":"MD_ASP_THREADGATELOADHIGH","features":[182]},{"name":"MD_ASP_THREADGATELOADLOW","features":[182]},{"name":"MD_ASP_THREADGATESLEEPDELAY","features":[182]},{"name":"MD_ASP_THREADGATESLEEPMAX","features":[182]},{"name":"MD_ASP_THREADGATETIMESLICE","features":[182]},{"name":"MD_ASP_TRACKTHREADINGMODEL","features":[182]},{"name":"MD_AUTHORIZATION","features":[182]},{"name":"MD_AUTHORIZATION_PERSISTENCE","features":[182]},{"name":"MD_AUTH_ADVNOTIFY_DISABLE","features":[182]},{"name":"MD_AUTH_ANONYMOUS","features":[182]},{"name":"MD_AUTH_BASIC","features":[182]},{"name":"MD_AUTH_CHANGE_DISABLE","features":[182]},{"name":"MD_AUTH_CHANGE_FLAGS","features":[182]},{"name":"MD_AUTH_CHANGE_UNSECURE","features":[182]},{"name":"MD_AUTH_CHANGE_URL","features":[182]},{"name":"MD_AUTH_EXPIRED_UNSECUREURL","features":[182]},{"name":"MD_AUTH_EXPIRED_URL","features":[182]},{"name":"MD_AUTH_MD5","features":[182]},{"name":"MD_AUTH_NT","features":[182]},{"name":"MD_AUTH_PASSPORT","features":[182]},{"name":"MD_AUTH_SINGLEREQUEST","features":[182]},{"name":"MD_AUTH_SINGLEREQUESTALWAYSIFPROXY","features":[182]},{"name":"MD_AUTH_SINGLEREQUESTIFPROXY","features":[182]},{"name":"MD_BACKUP_FORCE_BACKUP","features":[182]},{"name":"MD_BACKUP_HIGHEST_VERSION","features":[182]},{"name":"MD_BACKUP_MAX_LEN","features":[182]},{"name":"MD_BACKUP_MAX_VERSION","features":[182]},{"name":"MD_BACKUP_NEXT_VERSION","features":[182]},{"name":"MD_BACKUP_OVERWRITE","features":[182]},{"name":"MD_BACKUP_SAVE_FIRST","features":[182]},{"name":"MD_BANNER_MESSAGE","features":[182]},{"name":"MD_BINDINGS","features":[182]},{"name":"MD_CACHE_EXTENSIONS","features":[182]},{"name":"MD_CAL_AUTH_RESERVE_TIMEOUT","features":[182]},{"name":"MD_CAL_SSL_RESERVE_TIMEOUT","features":[182]},{"name":"MD_CAL_VC_PER_CONNECT","features":[182]},{"name":"MD_CAL_W3_ERROR","features":[182]},{"name":"MD_CC_MAX_AGE","features":[182]},{"name":"MD_CC_NO_CACHE","features":[182]},{"name":"MD_CC_OTHER","features":[182]},{"name":"MD_CENTRAL_W3C_LOGGING_ENABLED","features":[182]},{"name":"MD_CERT_CACHE_RETRIEVAL_ONLY","features":[182]},{"name":"MD_CERT_CHECK_REVOCATION_FRESHNESS_TIME","features":[182]},{"name":"MD_CERT_NO_REVOC_CHECK","features":[182]},{"name":"MD_CERT_NO_USAGE_CHECK","features":[182]},{"name":"MD_CGI_RESTRICTION_LIST","features":[182]},{"name":"MD_CHANGE_OBJECT_W","features":[182]},{"name":"MD_CHANGE_TYPE_ADD_OBJECT","features":[182]},{"name":"MD_CHANGE_TYPE_DELETE_DATA","features":[182]},{"name":"MD_CHANGE_TYPE_DELETE_OBJECT","features":[182]},{"name":"MD_CHANGE_TYPE_RENAME_OBJECT","features":[182]},{"name":"MD_CHANGE_TYPE_RESTORE","features":[182]},{"name":"MD_CHANGE_TYPE_SET_DATA","features":[182]},{"name":"MD_COMMENTS","features":[182]},{"name":"MD_CONNECTION_TIMEOUT","features":[182]},{"name":"MD_CPU_ACTION","features":[182]},{"name":"MD_CPU_APP_ENABLED","features":[182]},{"name":"MD_CPU_CGI_ENABLED","features":[182]},{"name":"MD_CPU_CGI_LIMIT","features":[182]},{"name":"MD_CPU_DISABLE_ALL_LOGGING","features":[182]},{"name":"MD_CPU_ENABLE_ACTIVE_PROCS","features":[182]},{"name":"MD_CPU_ENABLE_ALL_PROC_LOGGING","features":[182]},{"name":"MD_CPU_ENABLE_APP_LOGGING","features":[182]},{"name":"MD_CPU_ENABLE_CGI_LOGGING","features":[182]},{"name":"MD_CPU_ENABLE_EVENT","features":[182]},{"name":"MD_CPU_ENABLE_KERNEL_TIME","features":[182]},{"name":"MD_CPU_ENABLE_LOGGING","features":[182]},{"name":"MD_CPU_ENABLE_PAGE_FAULTS","features":[182]},{"name":"MD_CPU_ENABLE_PROC_TYPE","features":[182]},{"name":"MD_CPU_ENABLE_TERMINATED_PROCS","features":[182]},{"name":"MD_CPU_ENABLE_TOTAL_PROCS","features":[182]},{"name":"MD_CPU_ENABLE_USER_TIME","features":[182]},{"name":"MD_CPU_KILL_W3WP","features":[182]},{"name":"MD_CPU_LIMIT","features":[182]},{"name":"MD_CPU_LIMITS_ENABLED","features":[182]},{"name":"MD_CPU_LIMIT_LOGEVENT","features":[182]},{"name":"MD_CPU_LIMIT_PAUSE","features":[182]},{"name":"MD_CPU_LIMIT_PRIORITY","features":[182]},{"name":"MD_CPU_LIMIT_PROCSTOP","features":[182]},{"name":"MD_CPU_LOGGING_INTERVAL","features":[182]},{"name":"MD_CPU_LOGGING_MASK","features":[182]},{"name":"MD_CPU_LOGGING_OPTIONS","features":[182]},{"name":"MD_CPU_NO_ACTION","features":[182]},{"name":"MD_CPU_RESET_INTERVAL","features":[182]},{"name":"MD_CPU_THROTTLE","features":[182]},{"name":"MD_CPU_TRACE","features":[182]},{"name":"MD_CREATE_PROCESS_AS_USER","features":[182]},{"name":"MD_CREATE_PROC_NEW_CONSOLE","features":[182]},{"name":"MD_CUSTOM_DEPLOYMENT_DATA","features":[182]},{"name":"MD_CUSTOM_ERROR","features":[182]},{"name":"MD_CUSTOM_ERROR_DESC","features":[182]},{"name":"MD_DEFAULT_BACKUP_LOCATION","features":[182]},{"name":"MD_DEFAULT_LOAD_FILE","features":[182]},{"name":"MD_DEFAULT_LOGON_DOMAIN","features":[182]},{"name":"MD_DEMAND_START_THRESHOLD","features":[182]},{"name":"MD_DIRBROW_ENABLED","features":[182]},{"name":"MD_DIRBROW_LOADDEFAULT","features":[182]},{"name":"MD_DIRBROW_LONG_DATE","features":[182]},{"name":"MD_DIRBROW_SHOW_DATE","features":[182]},{"name":"MD_DIRBROW_SHOW_EXTENSION","features":[182]},{"name":"MD_DIRBROW_SHOW_SIZE","features":[182]},{"name":"MD_DIRBROW_SHOW_TIME","features":[182]},{"name":"MD_DIRECTORY_BROWSING","features":[182]},{"name":"MD_DISABLE_SOCKET_POOLING","features":[182]},{"name":"MD_DONT_LOG","features":[182]},{"name":"MD_DOWNLEVEL_ADMIN_INSTANCE","features":[182]},{"name":"MD_DO_REVERSE_DNS","features":[182]},{"name":"MD_ENABLEDPROTOCOLS","features":[182]},{"name":"MD_ENABLE_URL_AUTHORIZATION","features":[182]},{"name":"MD_ERROR_CANNOT_REMOVE_SECURE_ATTRIBUTE","features":[182]},{"name":"MD_ERROR_DATA_NOT_FOUND","features":[182]},{"name":"MD_ERROR_IISAO_INVALID_SCHEMA","features":[182]},{"name":"MD_ERROR_INVALID_VERSION","features":[182]},{"name":"MD_ERROR_NOT_INITIALIZED","features":[182]},{"name":"MD_ERROR_NO_SESSION_KEY","features":[182]},{"name":"MD_ERROR_READ_METABASE_FILE","features":[182]},{"name":"MD_ERROR_SECURE_CHANNEL_FAILURE","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_CONTENT_LENGTH","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_DEPTH","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_DESTINATION","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_IF","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_LOCK_TOKEN","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_OVERWRITE","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_REQUEST_BODY","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_TIMEOUT","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_TRANSLATE","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_WEBSOCKET_REQUEST","features":[182]},{"name":"MD_ERROR_SUB400_INVALID_XFF_HEADER","features":[182]},{"name":"MD_ERROR_SUB401_APPLICATION","features":[182]},{"name":"MD_ERROR_SUB401_FILTER","features":[182]},{"name":"MD_ERROR_SUB401_LOGON","features":[182]},{"name":"MD_ERROR_SUB401_LOGON_ACL","features":[182]},{"name":"MD_ERROR_SUB401_LOGON_CONFIG","features":[182]},{"name":"MD_ERROR_SUB401_URLAUTH_POLICY","features":[182]},{"name":"MD_ERROR_SUB403_ADDR_REJECT","features":[182]},{"name":"MD_ERROR_SUB403_APPPOOL_DENIED","features":[182]},{"name":"MD_ERROR_SUB403_CAL_EXCEEDED","features":[182]},{"name":"MD_ERROR_SUB403_CERT_BAD","features":[182]},{"name":"MD_ERROR_SUB403_CERT_REQUIRED","features":[182]},{"name":"MD_ERROR_SUB403_CERT_REVOKED","features":[182]},{"name":"MD_ERROR_SUB403_CERT_TIME_INVALID","features":[182]},{"name":"MD_ERROR_SUB403_DIR_LIST_DENIED","features":[182]},{"name":"MD_ERROR_SUB403_EXECUTE_ACCESS_DENIED","features":[182]},{"name":"MD_ERROR_SUB403_INFINITE_DEPTH_DENIED","features":[182]},{"name":"MD_ERROR_SUB403_INSUFFICIENT_PRIVILEGE_FOR_CGI","features":[182]},{"name":"MD_ERROR_SUB403_INVALID_CNFG","features":[182]},{"name":"MD_ERROR_SUB403_LOCK_TOKEN_REQUIRED","features":[182]},{"name":"MD_ERROR_SUB403_MAPPER_DENY_ACCESS","features":[182]},{"name":"MD_ERROR_SUB403_PASSPORT_LOGIN_FAILURE","features":[182]},{"name":"MD_ERROR_SUB403_PWD_CHANGE","features":[182]},{"name":"MD_ERROR_SUB403_READ_ACCESS_DENIED","features":[182]},{"name":"MD_ERROR_SUB403_SITE_ACCESS_DENIED","features":[182]},{"name":"MD_ERROR_SUB403_SOURCE_ACCESS_DENIED","features":[182]},{"name":"MD_ERROR_SUB403_SSL128_REQUIRED","features":[182]},{"name":"MD_ERROR_SUB403_SSL_REQUIRED","features":[182]},{"name":"MD_ERROR_SUB403_TOO_MANY_USERS","features":[182]},{"name":"MD_ERROR_SUB403_VALIDATION_FAILURE","features":[182]},{"name":"MD_ERROR_SUB403_WRITE_ACCESS_DENIED","features":[182]},{"name":"MD_ERROR_SUB404_DENIED_BY_FILTERING_RULE","features":[182]},{"name":"MD_ERROR_SUB404_DENIED_BY_MIMEMAP","features":[182]},{"name":"MD_ERROR_SUB404_DENIED_BY_POLICY","features":[182]},{"name":"MD_ERROR_SUB404_FILE_ATTRIBUTE_HIDDEN","features":[182]},{"name":"MD_ERROR_SUB404_FILE_EXTENSION_DENIED","features":[182]},{"name":"MD_ERROR_SUB404_HIDDEN_SEGMENT","features":[182]},{"name":"MD_ERROR_SUB404_NO_HANDLER","features":[182]},{"name":"MD_ERROR_SUB404_PRECONDITIONED_HANDLER","features":[182]},{"name":"MD_ERROR_SUB404_QUERY_STRING_SEQUENCE_DENIED","features":[182]},{"name":"MD_ERROR_SUB404_QUERY_STRING_TOO_LONG","features":[182]},{"name":"MD_ERROR_SUB404_SITE_NOT_FOUND","features":[182]},{"name":"MD_ERROR_SUB404_STATICFILE_DAV","features":[182]},{"name":"MD_ERROR_SUB404_TOO_MANY_URL_SEGMENTS","features":[182]},{"name":"MD_ERROR_SUB404_URL_DOUBLE_ESCAPED","features":[182]},{"name":"MD_ERROR_SUB404_URL_HAS_HIGH_BIT_CHARS","features":[182]},{"name":"MD_ERROR_SUB404_URL_SEQUENCE_DENIED","features":[182]},{"name":"MD_ERROR_SUB404_URL_TOO_LONG","features":[182]},{"name":"MD_ERROR_SUB404_VERB_DENIED","features":[182]},{"name":"MD_ERROR_SUB413_CONTENT_LENGTH_TOO_LARGE","features":[182]},{"name":"MD_ERROR_SUB423_LOCK_TOKEN_SUBMITTED","features":[182]},{"name":"MD_ERROR_SUB423_NO_CONFLICTING_LOCK","features":[182]},{"name":"MD_ERROR_SUB500_ASPNET_HANDLERS","features":[182]},{"name":"MD_ERROR_SUB500_ASPNET_IMPERSONATION","features":[182]},{"name":"MD_ERROR_SUB500_ASPNET_MODULES","features":[182]},{"name":"MD_ERROR_SUB500_BAD_METADATA","features":[182]},{"name":"MD_ERROR_SUB500_HANDLERS_MODULE","features":[182]},{"name":"MD_ERROR_SUB500_UNC_ACCESS","features":[182]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_SCOPE","features":[182]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_STORE","features":[182]},{"name":"MD_ERROR_SUB500_URLAUTH_STORE_ERROR","features":[182]},{"name":"MD_ERROR_SUB502_ARR_CONNECTION_ERROR","features":[182]},{"name":"MD_ERROR_SUB502_ARR_NO_SERVER","features":[182]},{"name":"MD_ERROR_SUB502_PREMATURE_EXIT","features":[182]},{"name":"MD_ERROR_SUB502_TIMEOUT","features":[182]},{"name":"MD_ERROR_SUB503_APP_CONCURRENT","features":[182]},{"name":"MD_ERROR_SUB503_ASPNET_QUEUE_FULL","features":[182]},{"name":"MD_ERROR_SUB503_CONNECTION_LIMIT","features":[182]},{"name":"MD_ERROR_SUB503_CPU_LIMIT","features":[182]},{"name":"MD_ERROR_SUB503_FASTCGI_QUEUE_FULL","features":[182]},{"name":"MD_EXIT_MESSAGE","features":[182]},{"name":"MD_EXPORT_INHERITED","features":[182]},{"name":"MD_EXPORT_NODE_ONLY","features":[182]},{"name":"MD_EXTLOG_BYTES_RECV","features":[182]},{"name":"MD_EXTLOG_BYTES_SENT","features":[182]},{"name":"MD_EXTLOG_CLIENT_IP","features":[182]},{"name":"MD_EXTLOG_COMPUTER_NAME","features":[182]},{"name":"MD_EXTLOG_COOKIE","features":[182]},{"name":"MD_EXTLOG_DATE","features":[182]},{"name":"MD_EXTLOG_HOST","features":[182]},{"name":"MD_EXTLOG_HTTP_STATUS","features":[182]},{"name":"MD_EXTLOG_HTTP_SUB_STATUS","features":[182]},{"name":"MD_EXTLOG_METHOD","features":[182]},{"name":"MD_EXTLOG_PROTOCOL_VERSION","features":[182]},{"name":"MD_EXTLOG_REFERER","features":[182]},{"name":"MD_EXTLOG_SERVER_IP","features":[182]},{"name":"MD_EXTLOG_SERVER_PORT","features":[182]},{"name":"MD_EXTLOG_SITE_NAME","features":[182]},{"name":"MD_EXTLOG_TIME","features":[182]},{"name":"MD_EXTLOG_TIME_TAKEN","features":[182]},{"name":"MD_EXTLOG_URI_QUERY","features":[182]},{"name":"MD_EXTLOG_URI_STEM","features":[182]},{"name":"MD_EXTLOG_USERNAME","features":[182]},{"name":"MD_EXTLOG_USER_AGENT","features":[182]},{"name":"MD_EXTLOG_WIN32_STATUS","features":[182]},{"name":"MD_FILTER_DESCRIPTION","features":[182]},{"name":"MD_FILTER_ENABLED","features":[182]},{"name":"MD_FILTER_ENABLE_CACHE","features":[182]},{"name":"MD_FILTER_FLAGS","features":[182]},{"name":"MD_FILTER_IMAGE_PATH","features":[182]},{"name":"MD_FILTER_LOAD_ORDER","features":[182]},{"name":"MD_FILTER_STATE","features":[182]},{"name":"MD_FILTER_STATE_LOADED","features":[182]},{"name":"MD_FILTER_STATE_UNLOADED","features":[182]},{"name":"MD_FOOTER_DOCUMENT","features":[182]},{"name":"MD_FOOTER_ENABLED","features":[182]},{"name":"MD_FRONTPAGE_WEB","features":[182]},{"name":"MD_FTPS_128_BITS","features":[182]},{"name":"MD_FTPS_ALLOW_CCC","features":[182]},{"name":"MD_FTPS_SECURE_ANONYMOUS","features":[182]},{"name":"MD_FTPS_SECURE_CONTROL_CHANNEL","features":[182]},{"name":"MD_FTPS_SECURE_DATA_CHANNEL","features":[182]},{"name":"MD_FTP_KEEP_PARTIAL_UPLOADS","features":[182]},{"name":"MD_FTP_LOG_IN_UTF_8","features":[182]},{"name":"MD_FTP_PASV_RESPONSE_IP","features":[182]},{"name":"MD_FTP_UTF8_FILE_NAMES","features":[182]},{"name":"MD_GLOBAL_BINARY_LOGGING_ENABLED","features":[182]},{"name":"MD_GLOBAL_BINSCHEMATIMESTAMP","features":[182]},{"name":"MD_GLOBAL_CHANGE_NUMBER","features":[182]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MAJOR_VERSION_NUMBER","features":[182]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MINOR_VERSION_NUMBER","features":[182]},{"name":"MD_GLOBAL_LOG_IN_UTF_8","features":[182]},{"name":"MD_GLOBAL_SESSIONKEY","features":[182]},{"name":"MD_GLOBAL_STANDARD_APP_MODE_ENABLED","features":[182]},{"name":"MD_GLOBAL_XMLSCHEMATIMESTAMP","features":[182]},{"name":"MD_GREETING_MESSAGE","features":[182]},{"name":"MD_HC_CACHE_CONTROL_HEADER","features":[182]},{"name":"MD_HC_COMPRESSION_BUFFER_SIZE","features":[182]},{"name":"MD_HC_COMPRESSION_DIRECTORY","features":[182]},{"name":"MD_HC_COMPRESSION_DLL","features":[182]},{"name":"MD_HC_CREATE_FLAGS","features":[182]},{"name":"MD_HC_DO_DISK_SPACE_LIMITING","features":[182]},{"name":"MD_HC_DO_DYNAMIC_COMPRESSION","features":[182]},{"name":"MD_HC_DO_NAMESPACE_DYNAMIC_COMPRESSION","features":[182]},{"name":"MD_HC_DO_NAMESPACE_STATIC_COMPRESSION","features":[182]},{"name":"MD_HC_DO_ON_DEMAND_COMPRESSION","features":[182]},{"name":"MD_HC_DO_STATIC_COMPRESSION","features":[182]},{"name":"MD_HC_DYNAMIC_COMPRESSION_LEVEL","features":[182]},{"name":"MD_HC_EXPIRES_HEADER","features":[182]},{"name":"MD_HC_FILES_DELETED_PER_DISK_FREE","features":[182]},{"name":"MD_HC_FILE_EXTENSIONS","features":[182]},{"name":"MD_HC_IO_BUFFER_SIZE","features":[182]},{"name":"MD_HC_MAX_DISK_SPACE_USAGE","features":[182]},{"name":"MD_HC_MAX_QUEUE_LENGTH","features":[182]},{"name":"MD_HC_MIME_TYPE","features":[182]},{"name":"MD_HC_MIN_FILE_SIZE_FOR_COMP","features":[182]},{"name":"MD_HC_NO_COMPRESSION_FOR_HTTP_10","features":[182]},{"name":"MD_HC_NO_COMPRESSION_FOR_PROXIES","features":[182]},{"name":"MD_HC_NO_COMPRESSION_FOR_RANGE","features":[182]},{"name":"MD_HC_ON_DEMAND_COMP_LEVEL","features":[182]},{"name":"MD_HC_PRIORITY","features":[182]},{"name":"MD_HC_SCRIPT_FILE_EXTENSIONS","features":[182]},{"name":"MD_HC_SEND_CACHE_HEADERS","features":[182]},{"name":"MD_HEADER_WAIT_TIMEOUT","features":[182]},{"name":"MD_HISTORY_LATEST","features":[182]},{"name":"MD_HTTPERRORS_EXISTING_RESPONSE","features":[182]},{"name":"MD_HTTP_CUSTOM","features":[182]},{"name":"MD_HTTP_EXPIRES","features":[182]},{"name":"MD_HTTP_FORWARDER_CUSTOM","features":[182]},{"name":"MD_HTTP_PICS","features":[182]},{"name":"MD_HTTP_REDIRECT","features":[182]},{"name":"MD_IISADMIN_EXTENSIONS","features":[182]},{"name":"MD_IMPORT_INHERITED","features":[182]},{"name":"MD_IMPORT_MERGE","features":[182]},{"name":"MD_IMPORT_NODE_ONLY","features":[182]},{"name":"MD_INSERT_PATH_STRING","features":[182]},{"name":"MD_INSERT_PATH_STRINGA","features":[182]},{"name":"MD_IN_PROCESS_ISAPI_APPS","features":[182]},{"name":"MD_IP_SEC","features":[182]},{"name":"MD_ISAPI_RESTRICTION_LIST","features":[182]},{"name":"MD_IS_CONTENT_INDEXED","features":[182]},{"name":"MD_KEY_TYPE","features":[182]},{"name":"MD_LEVELS_TO_SCAN","features":[182]},{"name":"MD_LOAD_BALANCER_CAPABILITIES","features":[182]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_BASIC","features":[182]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_SOPHISTICATED","features":[182]},{"name":"MD_LOCATION","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_DOUBLE","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_FLOAT","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_INT","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_LONG","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_LPSTR","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_LPWSTR","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_UINT","features":[182]},{"name":"MD_LOGCUSTOM_DATATYPE_ULONG","features":[182]},{"name":"MD_LOGCUSTOM_PROPERTY_DATATYPE","features":[182]},{"name":"MD_LOGCUSTOM_PROPERTY_HEADER","features":[182]},{"name":"MD_LOGCUSTOM_PROPERTY_ID","features":[182]},{"name":"MD_LOGCUSTOM_PROPERTY_MASK","features":[182]},{"name":"MD_LOGCUSTOM_PROPERTY_NAME","features":[182]},{"name":"MD_LOGCUSTOM_PROPERTY_NODE_ID","features":[182]},{"name":"MD_LOGCUSTOM_SERVICES_STRING","features":[182]},{"name":"MD_LOGEXT_FIELD_MASK","features":[182]},{"name":"MD_LOGEXT_FIELD_MASK2","features":[182]},{"name":"MD_LOGFILE_DIRECTORY","features":[182]},{"name":"MD_LOGFILE_LOCALTIME_ROLLOVER","features":[182]},{"name":"MD_LOGFILE_PERIOD","features":[182]},{"name":"MD_LOGFILE_PERIOD_DAILY","features":[182]},{"name":"MD_LOGFILE_PERIOD_HOURLY","features":[182]},{"name":"MD_LOGFILE_PERIOD_MAXSIZE","features":[182]},{"name":"MD_LOGFILE_PERIOD_MONTHLY","features":[182]},{"name":"MD_LOGFILE_PERIOD_NONE","features":[182]},{"name":"MD_LOGFILE_PERIOD_WEEKLY","features":[182]},{"name":"MD_LOGFILE_TRUNCATE_SIZE","features":[182]},{"name":"MD_LOGON_BATCH","features":[182]},{"name":"MD_LOGON_INTERACTIVE","features":[182]},{"name":"MD_LOGON_METHOD","features":[182]},{"name":"MD_LOGON_NETWORK","features":[182]},{"name":"MD_LOGON_NETWORK_CLEARTEXT","features":[182]},{"name":"MD_LOGSQL_DATA_SOURCES","features":[182]},{"name":"MD_LOGSQL_PASSWORD","features":[182]},{"name":"MD_LOGSQL_TABLE_NAME","features":[182]},{"name":"MD_LOGSQL_USER_NAME","features":[182]},{"name":"MD_LOG_ANONYMOUS","features":[182]},{"name":"MD_LOG_NONANONYMOUS","features":[182]},{"name":"MD_LOG_PLUGINS_AVAILABLE","features":[182]},{"name":"MD_LOG_PLUGIN_MOD_ID","features":[182]},{"name":"MD_LOG_PLUGIN_ORDER","features":[182]},{"name":"MD_LOG_PLUGIN_UI_ID","features":[182]},{"name":"MD_LOG_TYPE","features":[182]},{"name":"MD_LOG_TYPE_DISABLED","features":[182]},{"name":"MD_LOG_TYPE_ENABLED","features":[182]},{"name":"MD_LOG_UNUSED1","features":[182]},{"name":"MD_MAX_BANDWIDTH","features":[182]},{"name":"MD_MAX_BANDWIDTH_BLOCKED","features":[182]},{"name":"MD_MAX_CHANGE_ENTRIES","features":[182]},{"name":"MD_MAX_CLIENTS_MESSAGE","features":[182]},{"name":"MD_MAX_CONNECTIONS","features":[182]},{"name":"MD_MAX_ENDPOINT_CONNECTIONS","features":[182]},{"name":"MD_MAX_ERROR_FILES","features":[182]},{"name":"MD_MAX_GLOBAL_BANDWIDTH","features":[182]},{"name":"MD_MAX_GLOBAL_CONNECTIONS","features":[182]},{"name":"MD_MAX_REQUEST_ENTITY_ALLOWED","features":[182]},{"name":"MD_MD_SERVER_SS_AUTH_MAPPING","features":[182]},{"name":"MD_METADATA_ID_REGISTRATION","features":[182]},{"name":"MD_MIME_MAP","features":[182]},{"name":"MD_MIN_FILE_BYTES_PER_SEC","features":[182]},{"name":"MD_MSDOS_DIR_OUTPUT","features":[182]},{"name":"MD_NETLOGON_WKS_DNS","features":[182]},{"name":"MD_NETLOGON_WKS_IP","features":[182]},{"name":"MD_NETLOGON_WKS_NONE","features":[182]},{"name":"MD_NET_LOGON_WKS","features":[182]},{"name":"MD_NOTIFEXAUTH_NTLMSSL","features":[182]},{"name":"MD_NOTIFY_ACCESS_DENIED","features":[182]},{"name":"MD_NOTIFY_AUTHENTICATION","features":[182]},{"name":"MD_NOTIFY_AUTH_COMPLETE","features":[182]},{"name":"MD_NOTIFY_END_OF_NET_SESSION","features":[182]},{"name":"MD_NOTIFY_END_OF_REQUEST","features":[182]},{"name":"MD_NOTIFY_LOG","features":[182]},{"name":"MD_NOTIFY_NONSECURE_PORT","features":[182]},{"name":"MD_NOTIFY_ORDER_DEFAULT","features":[182]},{"name":"MD_NOTIFY_ORDER_HIGH","features":[182]},{"name":"MD_NOTIFY_ORDER_LOW","features":[182]},{"name":"MD_NOTIFY_ORDER_MEDIUM","features":[182]},{"name":"MD_NOTIFY_PREPROC_HEADERS","features":[182]},{"name":"MD_NOTIFY_READ_RAW_DATA","features":[182]},{"name":"MD_NOTIFY_SECURE_PORT","features":[182]},{"name":"MD_NOTIFY_SEND_RAW_DATA","features":[182]},{"name":"MD_NOTIFY_SEND_RESPONSE","features":[182]},{"name":"MD_NOTIFY_URL_MAP","features":[182]},{"name":"MD_NOT_DELETABLE","features":[182]},{"name":"MD_NTAUTHENTICATION_PROVIDERS","features":[182]},{"name":"MD_PASSIVE_PORT_RANGE","features":[182]},{"name":"MD_PASSPORT_NEED_MAPPING","features":[182]},{"name":"MD_PASSPORT_NO_MAPPING","features":[182]},{"name":"MD_PASSPORT_REQUIRE_AD_MAPPING","features":[182]},{"name":"MD_PASSPORT_TRY_MAPPING","features":[182]},{"name":"MD_POOL_IDC_TIMEOUT","features":[182]},{"name":"MD_PROCESS_NTCR_IF_LOGGED_ON","features":[182]},{"name":"MD_PUT_READ_SIZE","features":[182]},{"name":"MD_RAPID_FAIL_PROTECTION_INTERVAL","features":[182]},{"name":"MD_RAPID_FAIL_PROTECTION_MAX_CRASHES","features":[182]},{"name":"MD_REALM","features":[182]},{"name":"MD_REDIRECT_HEADERS","features":[182]},{"name":"MD_RESTRICTION_LIST_CUSTOM_DESC","features":[182]},{"name":"MD_ROOT_ENABLE_EDIT_WHILE_RUNNING","features":[182]},{"name":"MD_ROOT_ENABLE_HISTORY","features":[182]},{"name":"MD_ROOT_MAX_HISTORY_FILES","features":[182]},{"name":"MD_SCHEMA_METAID","features":[182]},{"name":"MD_SCRIPTMAPFLAG_ALLOWED_ON_READ_DIR","features":[182]},{"name":"MD_SCRIPTMAPFLAG_CHECK_PATH_INFO","features":[182]},{"name":"MD_SCRIPTMAPFLAG_SCRIPT","features":[182]},{"name":"MD_SCRIPT_MAPS","features":[182]},{"name":"MD_SCRIPT_TIMEOUT","features":[182]},{"name":"MD_SECURE_BINDINGS","features":[182]},{"name":"MD_SECURITY_SETUP_REQUIRED","features":[182]},{"name":"MD_SERVER_AUTOSTART","features":[182]},{"name":"MD_SERVER_BINDINGS","features":[182]},{"name":"MD_SERVER_COMMAND","features":[182]},{"name":"MD_SERVER_COMMAND_CONTINUE","features":[182]},{"name":"MD_SERVER_COMMAND_PAUSE","features":[182]},{"name":"MD_SERVER_COMMAND_START","features":[182]},{"name":"MD_SERVER_COMMAND_STOP","features":[182]},{"name":"MD_SERVER_COMMENT","features":[182]},{"name":"MD_SERVER_CONFIGURATION_INFO","features":[182]},{"name":"MD_SERVER_CONFIG_ALLOW_ENCRYPT","features":[182]},{"name":"MD_SERVER_CONFIG_AUTO_PW_SYNC","features":[182]},{"name":"MD_SERVER_CONFIG_SSL_128","features":[182]},{"name":"MD_SERVER_CONFIG_SSL_40","features":[182]},{"name":"MD_SERVER_LISTEN_BACKLOG","features":[182]},{"name":"MD_SERVER_LISTEN_TIMEOUT","features":[182]},{"name":"MD_SERVER_SIZE","features":[182]},{"name":"MD_SERVER_SIZE_LARGE","features":[182]},{"name":"MD_SERVER_SIZE_MEDIUM","features":[182]},{"name":"MD_SERVER_SIZE_SMALL","features":[182]},{"name":"MD_SERVER_STATE","features":[182]},{"name":"MD_SERVER_STATE_CONTINUING","features":[182]},{"name":"MD_SERVER_STATE_PAUSED","features":[182]},{"name":"MD_SERVER_STATE_PAUSING","features":[182]},{"name":"MD_SERVER_STATE_STARTED","features":[182]},{"name":"MD_SERVER_STATE_STARTING","features":[182]},{"name":"MD_SERVER_STATE_STOPPED","features":[182]},{"name":"MD_SERVER_STATE_STOPPING","features":[182]},{"name":"MD_SET_HOST_NAME","features":[182]},{"name":"MD_SHOW_4_DIGIT_YEAR","features":[182]},{"name":"MD_SSI_EXEC_DISABLED","features":[182]},{"name":"MD_SSL_ACCESS_PERM","features":[182]},{"name":"MD_SSL_ALWAYS_NEGO_CLIENT_CERT","features":[182]},{"name":"MD_SSL_KEY_PASSWORD","features":[182]},{"name":"MD_SSL_KEY_REQUEST","features":[182]},{"name":"MD_SSL_PRIVATE_KEY","features":[182]},{"name":"MD_SSL_PUBLIC_KEY","features":[182]},{"name":"MD_SSL_USE_DS_MAPPER","features":[182]},{"name":"MD_STOP_LISTENING","features":[182]},{"name":"MD_SUPPRESS_DEFAULT_BANNER","features":[182]},{"name":"MD_UPLOAD_READAHEAD_SIZE","features":[182]},{"name":"MD_URL_AUTHORIZATION_IMPERSONATION_LEVEL","features":[182]},{"name":"MD_URL_AUTHORIZATION_SCOPE_NAME","features":[182]},{"name":"MD_URL_AUTHORIZATION_STORE_NAME","features":[182]},{"name":"MD_USER_ISOLATION","features":[182]},{"name":"MD_USER_ISOLATION_AD","features":[182]},{"name":"MD_USER_ISOLATION_BASIC","features":[182]},{"name":"MD_USER_ISOLATION_LAST","features":[182]},{"name":"MD_USER_ISOLATION_NONE","features":[182]},{"name":"MD_USE_DIGEST_SSP","features":[182]},{"name":"MD_USE_HOST_NAME","features":[182]},{"name":"MD_VR_IGNORE_TRANSLATE","features":[182]},{"name":"MD_VR_NO_CACHE","features":[182]},{"name":"MD_VR_PASSTHROUGH","features":[182]},{"name":"MD_VR_PASSWORD","features":[182]},{"name":"MD_VR_PATH","features":[182]},{"name":"MD_VR_USERNAME","features":[182]},{"name":"MD_WAM_PWD","features":[182]},{"name":"MD_WAM_USER_NAME","features":[182]},{"name":"MD_WARNING_DUP_NAME","features":[182]},{"name":"MD_WARNING_INVALID_DATA","features":[182]},{"name":"MD_WARNING_PATH_NOT_FOUND","features":[182]},{"name":"MD_WARNING_PATH_NOT_INSERTED","features":[182]},{"name":"MD_WARNING_SAVE_FAILED","features":[182]},{"name":"MD_WEBDAV_MAX_ATTRIBUTES_PER_ELEMENT","features":[182]},{"name":"MD_WEB_SVC_EXT_RESTRICTION_LIST","features":[182]},{"name":"MD_WIN32_ERROR","features":[182]},{"name":"METADATATYPES","features":[182]},{"name":"METADATA_DONT_EXPAND","features":[182]},{"name":"METADATA_GETALL_INTERNAL_RECORD","features":[182]},{"name":"METADATA_GETALL_RECORD","features":[182]},{"name":"METADATA_HANDLE_INFO","features":[182]},{"name":"METADATA_INHERIT","features":[182]},{"name":"METADATA_INSERT_PATH","features":[182]},{"name":"METADATA_ISINHERITED","features":[182]},{"name":"METADATA_LOCAL_MACHINE_ONLY","features":[182]},{"name":"METADATA_MASTER_ROOT_HANDLE","features":[182]},{"name":"METADATA_MAX_NAME_LEN","features":[182]},{"name":"METADATA_NON_SECURE_ONLY","features":[182]},{"name":"METADATA_NO_ATTRIBUTES","features":[182]},{"name":"METADATA_PARTIAL_PATH","features":[182]},{"name":"METADATA_PERMISSION_READ","features":[182]},{"name":"METADATA_PERMISSION_WRITE","features":[182]},{"name":"METADATA_RECORD","features":[182]},{"name":"METADATA_REFERENCE","features":[182]},{"name":"METADATA_SECURE","features":[182]},{"name":"METADATA_VOLATILE","features":[182]},{"name":"MSCS_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"MSCS_MD_ID_END_RESERVED","features":[182]},{"name":"MULTISZ_METADATA","features":[182]},{"name":"NNTP_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"NNTP_MD_ID_END_RESERVED","features":[182]},{"name":"PFN_GETEXTENSIONVERSION","features":[3,182]},{"name":"PFN_HSE_CACHE_INVALIDATION_CALLBACK","features":[182]},{"name":"PFN_HSE_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[182]},{"name":"PFN_HSE_IO_COMPLETION","features":[3,182]},{"name":"PFN_HTTPEXTENSIONPROC","features":[3,182]},{"name":"PFN_IIS_GETSERVERVARIABLE","features":[3,182]},{"name":"PFN_IIS_READCLIENT","features":[3,182]},{"name":"PFN_IIS_SERVERSUPPORTFUNCTION","features":[3,182]},{"name":"PFN_IIS_WRITECLIENT","features":[3,182]},{"name":"PFN_TERMINATEEXTENSION","features":[3,182]},{"name":"PFN_WEB_CORE_ACTIVATE","features":[182]},{"name":"PFN_WEB_CORE_SET_METADATA_DLL_ENTRY","features":[182]},{"name":"PFN_WEB_CORE_SHUTDOWN","features":[182]},{"name":"POP3_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"POP3_MD_ID_END_RESERVED","features":[182]},{"name":"POST_PROCESS_PARAMETERS","features":[3,182]},{"name":"PRE_PROCESS_PARAMETERS","features":[3,182]},{"name":"SF_DENIED_APPLICATION","features":[182]},{"name":"SF_DENIED_BY_CONFIG","features":[182]},{"name":"SF_DENIED_FILTER","features":[182]},{"name":"SF_DENIED_LOGON","features":[182]},{"name":"SF_DENIED_RESOURCE","features":[182]},{"name":"SF_MAX_AUTH_TYPE","features":[182]},{"name":"SF_MAX_FILTER_DESC_LEN","features":[182]},{"name":"SF_MAX_PASSWORD","features":[182]},{"name":"SF_MAX_USERNAME","features":[182]},{"name":"SF_NOTIFY_ACCESS_DENIED","features":[182]},{"name":"SF_NOTIFY_AUTHENTICATION","features":[182]},{"name":"SF_NOTIFY_AUTH_COMPLETE","features":[182]},{"name":"SF_NOTIFY_END_OF_NET_SESSION","features":[182]},{"name":"SF_NOTIFY_END_OF_REQUEST","features":[182]},{"name":"SF_NOTIFY_LOG","features":[182]},{"name":"SF_NOTIFY_NONSECURE_PORT","features":[182]},{"name":"SF_NOTIFY_ORDER_DEFAULT","features":[182]},{"name":"SF_NOTIFY_ORDER_HIGH","features":[182]},{"name":"SF_NOTIFY_ORDER_LOW","features":[182]},{"name":"SF_NOTIFY_ORDER_MEDIUM","features":[182]},{"name":"SF_NOTIFY_PREPROC_HEADERS","features":[182]},{"name":"SF_NOTIFY_READ_RAW_DATA","features":[182]},{"name":"SF_NOTIFY_SECURE_PORT","features":[182]},{"name":"SF_NOTIFY_SEND_RAW_DATA","features":[182]},{"name":"SF_NOTIFY_SEND_RESPONSE","features":[182]},{"name":"SF_NOTIFY_URL_MAP","features":[182]},{"name":"SF_PROPERTY_IIS","features":[182]},{"name":"SF_PROPERTY_INSTANCE_NUM_ID","features":[182]},{"name":"SF_PROPERTY_SSL_CTXT","features":[182]},{"name":"SF_REQ_ADD_HEADERS_ON_DENIAL","features":[182]},{"name":"SF_REQ_DISABLE_NOTIFICATIONS","features":[182]},{"name":"SF_REQ_GET_CONNID","features":[182]},{"name":"SF_REQ_GET_PROPERTY","features":[182]},{"name":"SF_REQ_NORMALIZE_URL","features":[182]},{"name":"SF_REQ_SEND_RESPONSE_HEADER","features":[182]},{"name":"SF_REQ_SET_CERTIFICATE_INFO","features":[182]},{"name":"SF_REQ_SET_NEXT_READ_SIZE","features":[182]},{"name":"SF_REQ_SET_PROXY_INFO","features":[182]},{"name":"SF_REQ_TYPE","features":[182]},{"name":"SF_STATUS_REQ_ERROR","features":[182]},{"name":"SF_STATUS_REQ_FINISHED","features":[182]},{"name":"SF_STATUS_REQ_FINISHED_KEEP_CONN","features":[182]},{"name":"SF_STATUS_REQ_HANDLED_NOTIFICATION","features":[182]},{"name":"SF_STATUS_REQ_NEXT_NOTIFICATION","features":[182]},{"name":"SF_STATUS_REQ_READ_NEXT","features":[182]},{"name":"SF_STATUS_TYPE","features":[182]},{"name":"SMTP_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"SMTP_MD_ID_END_RESERVED","features":[182]},{"name":"STRING_METADATA","features":[182]},{"name":"USER_MD_ID_BASE_RESERVED","features":[182]},{"name":"WAM_MD_ID_BEGIN_RESERVED","features":[182]},{"name":"WAM_MD_ID_END_RESERVED","features":[182]},{"name":"WAM_MD_SERVER_BASE","features":[182]},{"name":"WEBDAV_MD_SERVER_BASE","features":[182]},{"name":"WEB_CORE_ACTIVATE_DLL_ENTRY","features":[182]},{"name":"WEB_CORE_DLL_NAME","features":[182]},{"name":"WEB_CORE_SET_METADATA_DLL_ENTRY","features":[182]},{"name":"WEB_CORE_SHUTDOWN_DLL_ENTRY","features":[182]}],"575":[{"name":"ABL_5_WO","features":[24]},{"name":"ADR_1","features":[24]},{"name":"ADR_2","features":[24]},{"name":"AIT1_8mm","features":[24]},{"name":"AIT_8mm","features":[24]},{"name":"AME_8mm","features":[24]},{"name":"ASSERT_ALTERNATE","features":[24]},{"name":"ASSERT_PRIMARY","features":[24]},{"name":"ASYNC_DUPLICATE_EXTENTS_STATUS","features":[24]},{"name":"ATAPI_ID_CMD","features":[24]},{"name":"AVATAR_F2","features":[24]},{"name":"AllElements","features":[24]},{"name":"AtaDataTypeIdentify","features":[24]},{"name":"AtaDataTypeLogPage","features":[24]},{"name":"AtaDataTypeUnknown","features":[24]},{"name":"BIN_COUNT","features":[24]},{"name":"BIN_RANGE","features":[24]},{"name":"BIN_RESULTS","features":[24]},{"name":"BIN_TYPES","features":[24]},{"name":"BOOT_AREA_INFO","features":[24]},{"name":"BULK_SECURITY_TEST_DATA","features":[24]},{"name":"CAP_ATAPI_ID_CMD","features":[24]},{"name":"CAP_ATA_ID_CMD","features":[24]},{"name":"CAP_SMART_CMD","features":[24]},{"name":"CDB_SIZE","features":[24]},{"name":"CD_R","features":[24]},{"name":"CD_ROM","features":[24]},{"name":"CD_RW","features":[24]},{"name":"CHANGER_BAR_CODE_SCANNER_INSTALLED","features":[24]},{"name":"CHANGER_CARTRIDGE_MAGAZINE","features":[24]},{"name":"CHANGER_CLEANER_ACCESS_NOT_VALID","features":[24]},{"name":"CHANGER_CLEANER_AUTODISMOUNT","features":[24]},{"name":"CHANGER_CLEANER_OPS_NOT_SUPPORTED","features":[24]},{"name":"CHANGER_CLEANER_SLOT","features":[24]},{"name":"CHANGER_CLOSE_IEPORT","features":[24]},{"name":"CHANGER_DEVICE_PROBLEM_TYPE","features":[24]},{"name":"CHANGER_DEVICE_REINITIALIZE_CAPABLE","features":[24]},{"name":"CHANGER_DRIVE_CLEANING_REQUIRED","features":[24]},{"name":"CHANGER_DRIVE_EMPTY_ON_DOOR_ACCESS","features":[24]},{"name":"CHANGER_ELEMENT","features":[24]},{"name":"CHANGER_ELEMENT_LIST","features":[24]},{"name":"CHANGER_ELEMENT_STATUS","features":[24]},{"name":"CHANGER_ELEMENT_STATUS_EX","features":[24]},{"name":"CHANGER_ELEMENT_STATUS_FLAGS","features":[24]},{"name":"CHANGER_EXCHANGE_MEDIA","features":[24]},{"name":"CHANGER_EXCHANGE_MEDIUM","features":[3,24]},{"name":"CHANGER_FEATURES","features":[24]},{"name":"CHANGER_IEPORT_USER_CONTROL_CLOSE","features":[24]},{"name":"CHANGER_IEPORT_USER_CONTROL_OPEN","features":[24]},{"name":"CHANGER_INITIALIZE_ELEMENT_STATUS","features":[3,24]},{"name":"CHANGER_INIT_ELEM_STAT_WITH_RANGE","features":[24]},{"name":"CHANGER_KEYPAD_ENABLE_DISABLE","features":[24]},{"name":"CHANGER_LOCK_UNLOCK","features":[24]},{"name":"CHANGER_MEDIUM_FLIP","features":[24]},{"name":"CHANGER_MOVE_EXTENDS_IEPORT","features":[24]},{"name":"CHANGER_MOVE_MEDIUM","features":[3,24]},{"name":"CHANGER_MOVE_RETRACTS_IEPORT","features":[24]},{"name":"CHANGER_OPEN_IEPORT","features":[24]},{"name":"CHANGER_POSITION_TO_ELEMENT","features":[24]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_DRIVE","features":[24]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_SLOT","features":[24]},{"name":"CHANGER_PREDISMOUNT_EJECT_REQUIRED","features":[24]},{"name":"CHANGER_PREMOUNT_EJECT_REQUIRED","features":[24]},{"name":"CHANGER_PRODUCT_DATA","features":[24]},{"name":"CHANGER_READ_ELEMENT_STATUS","features":[3,24]},{"name":"CHANGER_REPORT_IEPORT_STATE","features":[24]},{"name":"CHANGER_RESERVED_BIT","features":[24]},{"name":"CHANGER_RTN_MEDIA_TO_ORIGINAL_ADDR","features":[24]},{"name":"CHANGER_SEND_VOLUME_TAG_INFORMATION","features":[24]},{"name":"CHANGER_SERIAL_NUMBER_VALID","features":[24]},{"name":"CHANGER_SET_ACCESS","features":[24]},{"name":"CHANGER_SET_POSITION","features":[3,24]},{"name":"CHANGER_SLOTS_USE_TRAYS","features":[24]},{"name":"CHANGER_STATUS_NON_VOLATILE","features":[24]},{"name":"CHANGER_STORAGE_DRIVE","features":[24]},{"name":"CHANGER_STORAGE_IEPORT","features":[24]},{"name":"CHANGER_STORAGE_SLOT","features":[24]},{"name":"CHANGER_STORAGE_TRANSPORT","features":[24]},{"name":"CHANGER_TO_DRIVE","features":[24]},{"name":"CHANGER_TO_IEPORT","features":[24]},{"name":"CHANGER_TO_SLOT","features":[24]},{"name":"CHANGER_TO_TRANSPORT","features":[24]},{"name":"CHANGER_TRUE_EXCHANGE_CAPABLE","features":[24]},{"name":"CHANGER_VOLUME_ASSERT","features":[24]},{"name":"CHANGER_VOLUME_IDENTIFICATION","features":[24]},{"name":"CHANGER_VOLUME_REPLACE","features":[24]},{"name":"CHANGER_VOLUME_SEARCH","features":[24]},{"name":"CHANGER_VOLUME_UNDEFINE","features":[24]},{"name":"CHECKSUM_TYPE_CRC32","features":[24]},{"name":"CHECKSUM_TYPE_CRC64","features":[24]},{"name":"CHECKSUM_TYPE_ECC","features":[24]},{"name":"CHECKSUM_TYPE_FIRST_UNUSED_TYPE","features":[24]},{"name":"CHECKSUM_TYPE_NONE","features":[24]},{"name":"CHECKSUM_TYPE_SHA256","features":[24]},{"name":"CLASS_MEDIA_CHANGE_CONTEXT","features":[24]},{"name":"CLEANER_CARTRIDGE","features":[24]},{"name":"CLUSTER_RANGE","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_DO_NOT_MAP_NAME","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_EXCEPTION_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_TARGET_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_LAYER_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_SCRATCH_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_UNION_LAYER_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_EXCEPTION_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_TARGET_ROOT","features":[24]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[24]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[24]},{"name":"CONTAINER_ROOT_INFO_VALID_FLAGS","features":[24]},{"name":"CONTAINER_VOLUME_STATE","features":[24]},{"name":"CONTAINER_VOLUME_STATE_HOSTING_CONTAINER","features":[24]},{"name":"COPYFILE_SIS_FLAGS","features":[24]},{"name":"COPYFILE_SIS_LINK","features":[24]},{"name":"COPYFILE_SIS_REPLACE","features":[24]},{"name":"CREATE_DISK","features":[24]},{"name":"CREATE_DISK_GPT","features":[24]},{"name":"CREATE_DISK_MBR","features":[24]},{"name":"CREATE_USN_JOURNAL_DATA","features":[24]},{"name":"CSVFS_DISK_CONNECTIVITY","features":[24]},{"name":"CSV_CONTROL_OP","features":[24]},{"name":"CSV_CONTROL_PARAM","features":[24]},{"name":"CSV_INVALID_DEVICE_NUMBER","features":[24]},{"name":"CSV_IS_OWNED_BY_CSVFS","features":[3,24]},{"name":"CSV_MGMTLOCK_CHECK_VOLUME_REDIRECTED","features":[24]},{"name":"CSV_MGMT_LOCK","features":[24]},{"name":"CSV_NAMESPACE_INFO","features":[24]},{"name":"CSV_QUERY_FILE_REVISION","features":[24]},{"name":"CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[23,24]},{"name":"CSV_QUERY_MDS_PATH","features":[24]},{"name":"CSV_QUERY_MDS_PATH_FLAG_CSV_DIRECT_IO_ENABLED","features":[24]},{"name":"CSV_QUERY_MDS_PATH_FLAG_SMB_BYPASS_CSV_ENABLED","features":[24]},{"name":"CSV_QUERY_MDS_PATH_FLAG_STORAGE_ON_THIS_NODE_IS_CONNECTED","features":[24]},{"name":"CSV_QUERY_MDS_PATH_V2","features":[24]},{"name":"CSV_QUERY_MDS_PATH_V2_VERSION_1","features":[24]},{"name":"CSV_QUERY_REDIRECT_STATE","features":[3,24]},{"name":"CSV_QUERY_VETO_FILE_DIRECT_IO_OUTPUT","features":[24]},{"name":"CSV_QUERY_VOLUME_ID","features":[24]},{"name":"CSV_QUERY_VOLUME_REDIRECT_STATE","features":[3,24]},{"name":"CSV_SET_VOLUME_ID","features":[24]},{"name":"CYGNET_12_WO","features":[24]},{"name":"ChangerDoor","features":[24]},{"name":"ChangerDrive","features":[24]},{"name":"ChangerIEPort","features":[24]},{"name":"ChangerKeypad","features":[24]},{"name":"ChangerMaxElement","features":[24]},{"name":"ChangerSlot","features":[24]},{"name":"ChangerTransport","features":[24]},{"name":"CsvControlDisableCaching","features":[24]},{"name":"CsvControlEnableCaching","features":[24]},{"name":"CsvControlEnableUSNRangeModificationTracking","features":[24]},{"name":"CsvControlGetCsvFsMdsPathV2","features":[24]},{"name":"CsvControlMarkHandleLocalVolumeMount","features":[24]},{"name":"CsvControlQueryFileRevision","features":[24]},{"name":"CsvControlQueryFileRevisionFileId128","features":[24]},{"name":"CsvControlQueryMdsPath","features":[24]},{"name":"CsvControlQueryMdsPathNoPause","features":[24]},{"name":"CsvControlQueryRedirectState","features":[24]},{"name":"CsvControlQueryVolumeId","features":[24]},{"name":"CsvControlQueryVolumeRedirectState","features":[24]},{"name":"CsvControlSetVolumeId","features":[24]},{"name":"CsvControlStartForceDFO","features":[24]},{"name":"CsvControlStartRedirectFile","features":[24]},{"name":"CsvControlStopForceDFO","features":[24]},{"name":"CsvControlStopRedirectFile","features":[24]},{"name":"CsvControlUnmarkHandleLocalVolumeMount","features":[24]},{"name":"CsvFsDiskConnectivityAllNodes","features":[24]},{"name":"CsvFsDiskConnectivityMdsNodeOnly","features":[24]},{"name":"CsvFsDiskConnectivityNone","features":[24]},{"name":"CsvFsDiskConnectivitySubsetOfNodes","features":[24]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_FALLBACK_SPECIFIED","features":[24]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_MANDATORY","features":[24]},{"name":"DDS_4mm","features":[24]},{"name":"DDUMP_FLAG_DATA_READ_FROM_DEVICE","features":[24]},{"name":"DECRYPTION_STATUS_BUFFER","features":[3,24]},{"name":"DELETE_USN_JOURNAL_DATA","features":[24]},{"name":"DETECTION_TYPE","features":[24]},{"name":"DEVICEDUMP_CAP_PRIVATE_SECTION","features":[24]},{"name":"DEVICEDUMP_CAP_RESTRICTED_SECTION","features":[24]},{"name":"DEVICEDUMP_COLLECTION_TYPEIDE_NOTIFICATION_TYPE","features":[24]},{"name":"DEVICEDUMP_MAX_IDSTRING","features":[24]},{"name":"DEVICEDUMP_PRIVATE_SUBSECTION","features":[24]},{"name":"DEVICEDUMP_PUBLIC_SUBSECTION","features":[24]},{"name":"DEVICEDUMP_RESTRICTED_SUBSECTION","features":[24]},{"name":"DEVICEDUMP_SECTION_HEADER","features":[24]},{"name":"DEVICEDUMP_STORAGEDEVICE_DATA","features":[24]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_DUMP","features":[24]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_STATE_RECORD","features":[24]},{"name":"DEVICEDUMP_STRUCTURE_VERSION","features":[24]},{"name":"DEVICEDUMP_STRUCTURE_VERSION_V1","features":[24]},{"name":"DEVICEDUMP_SUBSECTION_POINTER","features":[24]},{"name":"DEVICE_COPY_OFFLOAD_DESCRIPTOR","features":[24]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS","features":[24]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS_VERSION_V1","features":[24]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE","features":[24]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE_V2","features":[24]},{"name":"DEVICE_DATA_SET_RANGE","features":[24]},{"name":"DEVICE_DATA_SET_REPAIR_OUTPUT","features":[24]},{"name":"DEVICE_DATA_SET_REPAIR_PARAMETERS","features":[24]},{"name":"DEVICE_DATA_SET_SCRUB_EX_OUTPUT","features":[24]},{"name":"DEVICE_DATA_SET_SCRUB_OUTPUT","features":[24]},{"name":"DEVICE_DATA_SET_TOPOLOGY_ID_QUERY_OUTPUT","features":[24]},{"name":"DEVICE_DSM_CONVERSION_OUTPUT","features":[24]},{"name":"DEVICE_DSM_DEFINITION","features":[3,24]},{"name":"DEVICE_DSM_FLAG_ALLOCATION_CONSOLIDATEABLE_ONLY","features":[24]},{"name":"DEVICE_DSM_FLAG_ENTIRE_DATA_SET_RANGE","features":[24]},{"name":"DEVICE_DSM_FLAG_PHYSICAL_ADDRESSES_OMIT_TOTAL_RANGES","features":[24]},{"name":"DEVICE_DSM_FLAG_REPAIR_INPUT_TOPOLOGY_ID_PRESENT","features":[24]},{"name":"DEVICE_DSM_FLAG_REPAIR_OUTPUT_PARITY_EXTENT","features":[24]},{"name":"DEVICE_DSM_FLAG_SCRUB_OUTPUT_PARITY_EXTENT","features":[24]},{"name":"DEVICE_DSM_FLAG_SCRUB_SKIP_IN_SYNC","features":[24]},{"name":"DEVICE_DSM_FLAG_TRIM_BYPASS_RZAT","features":[24]},{"name":"DEVICE_DSM_FLAG_TRIM_NOT_FS_ALLOCATED","features":[24]},{"name":"DEVICE_DSM_FREE_SPACE_OUTPUT","features":[24]},{"name":"DEVICE_DSM_LOST_QUERY_OUTPUT","features":[24]},{"name":"DEVICE_DSM_LOST_QUERY_PARAMETERS","features":[24]},{"name":"DEVICE_DSM_NOTIFICATION_PARAMETERS","features":[24]},{"name":"DEVICE_DSM_NOTIFY_FLAG_BEGIN","features":[24]},{"name":"DEVICE_DSM_NOTIFY_FLAG_END","features":[24]},{"name":"DEVICE_DSM_NVCACHE_CHANGE_PRIORITY_PARAMETERS","features":[24]},{"name":"DEVICE_DSM_OFFLOAD_READ_PARAMETERS","features":[24]},{"name":"DEVICE_DSM_OFFLOAD_WRITE_PARAMETERS","features":[24]},{"name":"DEVICE_DSM_PARAMETERS_V1","features":[24]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT","features":[24]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_V1","features":[24]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_VERSION_V1","features":[24]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO","features":[24]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO_VERSION_V1","features":[24]},{"name":"DEVICE_DSM_RANGE_ERROR_OUTPUT_V1","features":[24]},{"name":"DEVICE_DSM_REPORT_ZONES_DATA","features":[3,24]},{"name":"DEVICE_DSM_REPORT_ZONES_PARAMETERS","features":[24]},{"name":"DEVICE_DSM_TIERING_QUERY_INPUT","features":[24]},{"name":"DEVICE_DSM_TIERING_QUERY_OUTPUT","features":[24]},{"name":"DEVICE_INTERNAL_STATUS_DATA","features":[24]},{"name":"DEVICE_INTERNAL_STATUS_DATA_REQUEST_TYPE","features":[24]},{"name":"DEVICE_INTERNAL_STATUS_DATA_SET","features":[24]},{"name":"DEVICE_LB_PROVISIONING_DESCRIPTOR","features":[24]},{"name":"DEVICE_LOCATION","features":[24]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES","features":[24]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES_OUTPUT","features":[24]},{"name":"DEVICE_MEDIA_INFO","features":[23,24]},{"name":"DEVICE_POWER_DESCRIPTOR","features":[3,24]},{"name":"DEVICE_SEEK_PENALTY_DESCRIPTOR","features":[3,24]},{"name":"DEVICE_STORAGE_ADDRESS_RANGE","features":[24]},{"name":"DEVICE_STORAGE_NO_ERRORS","features":[24]},{"name":"DEVICE_STORAGE_RANGE_ATTRIBUTES","features":[24]},{"name":"DEVICE_TRIM_DESCRIPTOR","features":[3,24]},{"name":"DEVICE_WRITE_AGGREGATION_DESCRIPTOR","features":[3,24]},{"name":"DEVPKEY_Storage_Disk_Number","features":[1,24]},{"name":"DEVPKEY_Storage_Gpt_Name","features":[1,24]},{"name":"DEVPKEY_Storage_Gpt_Type","features":[1,24]},{"name":"DEVPKEY_Storage_Mbr_Type","features":[1,24]},{"name":"DEVPKEY_Storage_Partition_Number","features":[1,24]},{"name":"DEVPKEY_Storage_Portable","features":[1,24]},{"name":"DEVPKEY_Storage_Removable_Media","features":[1,24]},{"name":"DEVPKEY_Storage_System_Critical","features":[1,24]},{"name":"DISABLE_SMART","features":[24]},{"name":"DISK_ATTRIBUTE_OFFLINE","features":[24]},{"name":"DISK_ATTRIBUTE_READ_ONLY","features":[24]},{"name":"DISK_BINNING","features":[24]},{"name":"DISK_CACHE_INFORMATION","features":[3,24]},{"name":"DISK_CACHE_RETENTION_PRIORITY","features":[24]},{"name":"DISK_CONTROLLER_NUMBER","features":[24]},{"name":"DISK_DETECTION_INFO","features":[24]},{"name":"DISK_EXTENT","features":[24]},{"name":"DISK_EX_INT13_INFO","features":[24]},{"name":"DISK_GEOMETRY","features":[24]},{"name":"DISK_GEOMETRY_EX","features":[24]},{"name":"DISK_GROW_PARTITION","features":[24]},{"name":"DISK_HISTOGRAM","features":[24]},{"name":"DISK_INT13_INFO","features":[24]},{"name":"DISK_LOGGING","features":[24]},{"name":"DISK_LOGGING_DUMP","features":[24]},{"name":"DISK_LOGGING_START","features":[24]},{"name":"DISK_LOGGING_STOP","features":[24]},{"name":"DISK_PARTITION_INFO","features":[24]},{"name":"DISK_PERFORMANCE","features":[24]},{"name":"DISK_RECORD","features":[3,24]},{"name":"DLT","features":[24]},{"name":"DMI","features":[24]},{"name":"DRIVERSTATUS","features":[24]},{"name":"DRIVE_LAYOUT_INFORMATION","features":[3,24]},{"name":"DRIVE_LAYOUT_INFORMATION_EX","features":[3,24]},{"name":"DRIVE_LAYOUT_INFORMATION_GPT","features":[24]},{"name":"DRIVE_LAYOUT_INFORMATION_MBR","features":[24]},{"name":"DST_L","features":[24]},{"name":"DST_M","features":[24]},{"name":"DST_S","features":[24]},{"name":"DUPLICATE_EXTENTS_DATA","features":[3,24]},{"name":"DUPLICATE_EXTENTS_DATA32","features":[24]},{"name":"DUPLICATE_EXTENTS_DATA_EX","features":[3,24]},{"name":"DUPLICATE_EXTENTS_DATA_EX32","features":[24]},{"name":"DUPLICATE_EXTENTS_DATA_EX_ASYNC","features":[24]},{"name":"DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC","features":[24]},{"name":"DUPLICATE_EXTENTS_STATE","features":[24]},{"name":"DVD_R","features":[24]},{"name":"DVD_RAM","features":[24]},{"name":"DVD_ROM","features":[24]},{"name":"DVD_RW","features":[24]},{"name":"DV_6mm","features":[24]},{"name":"DetectExInt13","features":[24]},{"name":"DetectInt13","features":[24]},{"name":"DetectNone","features":[24]},{"name":"DeviceCurrentInternalStatusData","features":[24]},{"name":"DeviceCurrentInternalStatusDataHeader","features":[24]},{"name":"DeviceDsmActionFlag_NonDestructive","features":[24]},{"name":"DeviceInternalStatusDataRequestTypeUndefined","features":[24]},{"name":"DeviceProblemCHMError","features":[24]},{"name":"DeviceProblemCHMMoveError","features":[24]},{"name":"DeviceProblemCHMZeroError","features":[24]},{"name":"DeviceProblemCalibrationError","features":[24]},{"name":"DeviceProblemCartridgeEjectError","features":[24]},{"name":"DeviceProblemCartridgeInsertError","features":[24]},{"name":"DeviceProblemDoorOpen","features":[24]},{"name":"DeviceProblemDriveError","features":[24]},{"name":"DeviceProblemGripperError","features":[24]},{"name":"DeviceProblemHardware","features":[24]},{"name":"DeviceProblemNone","features":[24]},{"name":"DeviceProblemPositionError","features":[24]},{"name":"DeviceProblemSensorError","features":[24]},{"name":"DeviceProblemTargetFailure","features":[24]},{"name":"DeviceSavedInternalStatusData","features":[24]},{"name":"DeviceSavedInternalStatusDataHeader","features":[24]},{"name":"DeviceStatusDataSet1","features":[24]},{"name":"DeviceStatusDataSet2","features":[24]},{"name":"DeviceStatusDataSet3","features":[24]},{"name":"DeviceStatusDataSet4","features":[24]},{"name":"DeviceStatusDataSetMax","features":[24]},{"name":"DeviceStatusDataSetUndefined","features":[24]},{"name":"DiskHealthHealthy","features":[24]},{"name":"DiskHealthMax","features":[24]},{"name":"DiskHealthUnhealthy","features":[24]},{"name":"DiskHealthUnknown","features":[24]},{"name":"DiskHealthWarning","features":[24]},{"name":"DiskOpReasonBackgroundOperation","features":[24]},{"name":"DiskOpReasonComponent","features":[24]},{"name":"DiskOpReasonConfiguration","features":[24]},{"name":"DiskOpReasonDataPersistenceLossImminent","features":[24]},{"name":"DiskOpReasonDeviceController","features":[24]},{"name":"DiskOpReasonDisabledByPlatform","features":[24]},{"name":"DiskOpReasonEnergySource","features":[24]},{"name":"DiskOpReasonHealthCheck","features":[24]},{"name":"DiskOpReasonInvalidFirmware","features":[24]},{"name":"DiskOpReasonIo","features":[24]},{"name":"DiskOpReasonLostData","features":[24]},{"name":"DiskOpReasonLostDataPersistence","features":[24]},{"name":"DiskOpReasonLostWritePersistence","features":[24]},{"name":"DiskOpReasonMax","features":[24]},{"name":"DiskOpReasonMedia","features":[24]},{"name":"DiskOpReasonMediaController","features":[24]},{"name":"DiskOpReasonNVDIMM_N","features":[24]},{"name":"DiskOpReasonScsiSenseCode","features":[24]},{"name":"DiskOpReasonThresholdExceeded","features":[24]},{"name":"DiskOpReasonUnknown","features":[24]},{"name":"DiskOpReasonWritePersistenceLossImminent","features":[24]},{"name":"DiskOpStatusHardwareError","features":[24]},{"name":"DiskOpStatusInService","features":[24]},{"name":"DiskOpStatusMissing","features":[24]},{"name":"DiskOpStatusNone","features":[24]},{"name":"DiskOpStatusNotUsable","features":[24]},{"name":"DiskOpStatusOk","features":[24]},{"name":"DiskOpStatusPredictingFailure","features":[24]},{"name":"DiskOpStatusTransientError","features":[24]},{"name":"DiskOpStatusUnknown","features":[24]},{"name":"EFS_TRACKED_OFFSET_HEADER_FLAG","features":[24]},{"name":"ELEMENT_STATUS_ACCESS","features":[24]},{"name":"ELEMENT_STATUS_AVOLTAG","features":[24]},{"name":"ELEMENT_STATUS_EXCEPT","features":[24]},{"name":"ELEMENT_STATUS_EXENAB","features":[24]},{"name":"ELEMENT_STATUS_FULL","features":[24]},{"name":"ELEMENT_STATUS_ID_VALID","features":[24]},{"name":"ELEMENT_STATUS_IMPEXP","features":[24]},{"name":"ELEMENT_STATUS_INENAB","features":[24]},{"name":"ELEMENT_STATUS_INVERT","features":[24]},{"name":"ELEMENT_STATUS_LUN_VALID","features":[24]},{"name":"ELEMENT_STATUS_NOT_BUS","features":[24]},{"name":"ELEMENT_STATUS_PRODUCT_DATA","features":[24]},{"name":"ELEMENT_STATUS_PVOLTAG","features":[24]},{"name":"ELEMENT_STATUS_SVALID","features":[24]},{"name":"ELEMENT_TYPE","features":[24]},{"name":"ENABLE_DISABLE_AUTOSAVE","features":[24]},{"name":"ENABLE_DISABLE_AUTO_OFFLINE","features":[24]},{"name":"ENABLE_SMART","features":[24]},{"name":"ENCRYPTED_DATA_INFO","features":[24]},{"name":"ENCRYPTED_DATA_INFO_SPARSE_FILE","features":[24]},{"name":"ENCRYPTION_BUFFER","features":[24]},{"name":"ENCRYPTION_FORMAT_DEFAULT","features":[24]},{"name":"ENCRYPTION_KEY_CTRL_INPUT","features":[24]},{"name":"ERROR_DRIVE_NOT_INSTALLED","features":[24]},{"name":"ERROR_HISTORY_DIRECTORY_ENTRY_DEFAULT_COUNT","features":[24]},{"name":"ERROR_INIT_STATUS_NEEDED","features":[24]},{"name":"ERROR_LABEL_QUESTIONABLE","features":[24]},{"name":"ERROR_LABEL_UNREADABLE","features":[24]},{"name":"ERROR_SLOT_NOT_PRESENT","features":[24]},{"name":"ERROR_TRAY_MALFUNCTION","features":[24]},{"name":"ERROR_UNHANDLED_ERROR","features":[24]},{"name":"EXECUTE_OFFLINE_DIAGS","features":[24]},{"name":"EXFAT_STATISTICS","features":[24]},{"name":"EXTENDED_ENCRYPTED_DATA_INFO","features":[24]},{"name":"EXTEND_IEPORT","features":[24]},{"name":"EqualPriority","features":[24]},{"name":"F3_120M_512","features":[24]},{"name":"F3_128Mb_512","features":[24]},{"name":"F3_1Pt23_1024","features":[24]},{"name":"F3_1Pt2_512","features":[24]},{"name":"F3_1Pt44_512","features":[24]},{"name":"F3_200Mb_512","features":[24]},{"name":"F3_20Pt8_512","features":[24]},{"name":"F3_230Mb_512","features":[24]},{"name":"F3_240M_512","features":[24]},{"name":"F3_2Pt88_512","features":[24]},{"name":"F3_32M_512","features":[24]},{"name":"F3_640_512","features":[24]},{"name":"F3_720_512","features":[24]},{"name":"F5_160_512","features":[24]},{"name":"F5_180_512","features":[24]},{"name":"F5_1Pt23_1024","features":[24]},{"name":"F5_1Pt2_512","features":[24]},{"name":"F5_320_1024","features":[24]},{"name":"F5_320_512","features":[24]},{"name":"F5_360_512","features":[24]},{"name":"F5_640_512","features":[24]},{"name":"F5_720_512","features":[24]},{"name":"F8_256_128","features":[24]},{"name":"FAT_STATISTICS","features":[24]},{"name":"FILESYSTEM_STATISTICS","features":[24]},{"name":"FILESYSTEM_STATISTICS_EX","features":[24]},{"name":"FILESYSTEM_STATISTICS_TYPE","features":[24]},{"name":"FILESYSTEM_STATISTICS_TYPE_EXFAT","features":[24]},{"name":"FILESYSTEM_STATISTICS_TYPE_FAT","features":[24]},{"name":"FILESYSTEM_STATISTICS_TYPE_NTFS","features":[24]},{"name":"FILESYSTEM_STATISTICS_TYPE_REFS","features":[24]},{"name":"FILE_ALLOCATED_RANGE_BUFFER","features":[24]},{"name":"FILE_ANY_ACCESS","features":[24]},{"name":"FILE_CLEAR_ENCRYPTION","features":[24]},{"name":"FILE_DESIRED_STORAGE_CLASS_INFORMATION","features":[24]},{"name":"FILE_DEVICE_8042_PORT","features":[24]},{"name":"FILE_DEVICE_ACPI","features":[24]},{"name":"FILE_DEVICE_BATTERY","features":[24]},{"name":"FILE_DEVICE_BEEP","features":[24]},{"name":"FILE_DEVICE_BIOMETRIC","features":[24]},{"name":"FILE_DEVICE_BLUETOOTH","features":[24]},{"name":"FILE_DEVICE_BUS_EXTENDER","features":[24]},{"name":"FILE_DEVICE_CD_ROM_FILE_SYSTEM","features":[24]},{"name":"FILE_DEVICE_CHANGER","features":[24]},{"name":"FILE_DEVICE_CONSOLE","features":[24]},{"name":"FILE_DEVICE_CONTROLLER","features":[24]},{"name":"FILE_DEVICE_CRYPT_PROVIDER","features":[24]},{"name":"FILE_DEVICE_DATALINK","features":[24]},{"name":"FILE_DEVICE_DEVAPI","features":[24]},{"name":"FILE_DEVICE_DFS","features":[24]},{"name":"FILE_DEVICE_DFS_FILE_SYSTEM","features":[24]},{"name":"FILE_DEVICE_DFS_VOLUME","features":[24]},{"name":"FILE_DEVICE_DISK_FILE_SYSTEM","features":[24]},{"name":"FILE_DEVICE_EHSTOR","features":[24]},{"name":"FILE_DEVICE_EVENT_COLLECTOR","features":[24]},{"name":"FILE_DEVICE_FILE_SYSTEM","features":[24]},{"name":"FILE_DEVICE_FIPS","features":[24]},{"name":"FILE_DEVICE_FULLSCREEN_VIDEO","features":[24]},{"name":"FILE_DEVICE_GPIO","features":[24]},{"name":"FILE_DEVICE_HOLOGRAPHIC","features":[24]},{"name":"FILE_DEVICE_INFINIBAND","features":[24]},{"name":"FILE_DEVICE_INPORT_PORT","features":[24]},{"name":"FILE_DEVICE_KEYBOARD","features":[24]},{"name":"FILE_DEVICE_KS","features":[24]},{"name":"FILE_DEVICE_KSEC","features":[24]},{"name":"FILE_DEVICE_MAILSLOT","features":[24]},{"name":"FILE_DEVICE_MASS_STORAGE","features":[24]},{"name":"FILE_DEVICE_MIDI_IN","features":[24]},{"name":"FILE_DEVICE_MIDI_OUT","features":[24]},{"name":"FILE_DEVICE_MODEM","features":[24]},{"name":"FILE_DEVICE_MOUSE","features":[24]},{"name":"FILE_DEVICE_MT_COMPOSITE","features":[24]},{"name":"FILE_DEVICE_MT_TRANSPORT","features":[24]},{"name":"FILE_DEVICE_MULTI_UNC_PROVIDER","features":[24]},{"name":"FILE_DEVICE_NAMED_PIPE","features":[24]},{"name":"FILE_DEVICE_NETWORK","features":[24]},{"name":"FILE_DEVICE_NETWORK_BROWSER","features":[24]},{"name":"FILE_DEVICE_NETWORK_FILE_SYSTEM","features":[24]},{"name":"FILE_DEVICE_NETWORK_REDIRECTOR","features":[24]},{"name":"FILE_DEVICE_NFP","features":[24]},{"name":"FILE_DEVICE_NULL","features":[24]},{"name":"FILE_DEVICE_NVDIMM","features":[24]},{"name":"FILE_DEVICE_PARALLEL_PORT","features":[24]},{"name":"FILE_DEVICE_PERSISTENT_MEMORY","features":[24]},{"name":"FILE_DEVICE_PHYSICAL_NETCARD","features":[24]},{"name":"FILE_DEVICE_PMI","features":[24]},{"name":"FILE_DEVICE_POINT_OF_SERVICE","features":[24]},{"name":"FILE_DEVICE_PRINTER","features":[24]},{"name":"FILE_DEVICE_PRM","features":[24]},{"name":"FILE_DEVICE_SCANNER","features":[24]},{"name":"FILE_DEVICE_SCREEN","features":[24]},{"name":"FILE_DEVICE_SDFXHCI","features":[24]},{"name":"FILE_DEVICE_SERENUM","features":[24]},{"name":"FILE_DEVICE_SERIAL_MOUSE_PORT","features":[24]},{"name":"FILE_DEVICE_SERIAL_PORT","features":[24]},{"name":"FILE_DEVICE_SMB","features":[24]},{"name":"FILE_DEVICE_SOUND","features":[24]},{"name":"FILE_DEVICE_SOUNDWIRE","features":[24]},{"name":"FILE_DEVICE_STORAGE_REPLICATION","features":[24]},{"name":"FILE_DEVICE_STREAMS","features":[24]},{"name":"FILE_DEVICE_SYSENV","features":[24]},{"name":"FILE_DEVICE_TAPE_FILE_SYSTEM","features":[24]},{"name":"FILE_DEVICE_TERMSRV","features":[24]},{"name":"FILE_DEVICE_TRANSPORT","features":[24]},{"name":"FILE_DEVICE_TRUST_ENV","features":[24]},{"name":"FILE_DEVICE_UCM","features":[24]},{"name":"FILE_DEVICE_UCMTCPCI","features":[24]},{"name":"FILE_DEVICE_UCMUCSI","features":[24]},{"name":"FILE_DEVICE_UNKNOWN","features":[24]},{"name":"FILE_DEVICE_USB4","features":[24]},{"name":"FILE_DEVICE_USBEX","features":[24]},{"name":"FILE_DEVICE_VDM","features":[24]},{"name":"FILE_DEVICE_VIDEO","features":[24]},{"name":"FILE_DEVICE_VIRTUAL_BLOCK","features":[24]},{"name":"FILE_DEVICE_VIRTUAL_DISK","features":[24]},{"name":"FILE_DEVICE_VMBUS","features":[24]},{"name":"FILE_DEVICE_WAVE_IN","features":[24]},{"name":"FILE_DEVICE_WAVE_OUT","features":[24]},{"name":"FILE_DEVICE_WPD","features":[24]},{"name":"FILE_FS_PERSISTENT_VOLUME_INFORMATION","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NON_RESIDENT","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NOT_FOUND","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_TOO_SMALL","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_CLUSTERS_ALREADY_IN_USE","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_DENY_DEFRAG","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_IS_BASE_RECORD","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_BASE_RECORD","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_EXIST","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_IN_USE","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_ORPHAN","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_REUSED","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_INDEX_ENTRY_MISMATCH","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ARRAY_LENGTH_COUNT","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_LCN","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ORPHAN_RECOVERY_NAME","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_PARENT","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_RUN_LENGTH","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_VCN","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_LCN_NOT_EXIST","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_MULTIPLE_FILE_NAME_ATTRIBUTES","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_NAME_CONFLICT","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOTHING_WRONG","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOT_IMPLEMENTED","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN_GENERATED","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_GENERIC_NAMES","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_RESOURCE","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_BASE_RECORD","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_EXIST","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_INDEX","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_IN_USE","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_REUSED","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_POTENTIAL_CROSSLINK","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_PREVIOUS_PARENT_STILL_VALID","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_RECURSIVELY_CORRUPTED","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIRED","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIR_DISABLED","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_MISMATCH","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_VALID","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_STALE_INFORMATION","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_SYSTEM_FILE","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_UNABLE_TO_REPAIR","features":[24]},{"name":"FILE_INITIATE_REPAIR_HINT1_VALID_INDEX_ENTRY","features":[24]},{"name":"FILE_INITIATE_REPAIR_OUTPUT_BUFFER","features":[24]},{"name":"FILE_LAYOUT_ENTRY","features":[24]},{"name":"FILE_LAYOUT_INFO_ENTRY","features":[24]},{"name":"FILE_LAYOUT_NAME_ENTRY","features":[24]},{"name":"FILE_LAYOUT_NAME_ENTRY_DOS","features":[24]},{"name":"FILE_LAYOUT_NAME_ENTRY_PRIMARY","features":[24]},{"name":"FILE_LEVEL_TRIM","features":[24]},{"name":"FILE_LEVEL_TRIM_OUTPUT","features":[24]},{"name":"FILE_LEVEL_TRIM_RANGE","features":[24]},{"name":"FILE_MAKE_COMPATIBLE_BUFFER","features":[3,24]},{"name":"FILE_OBJECTID_BUFFER","features":[24]},{"name":"FILE_PREFETCH","features":[24]},{"name":"FILE_PREFETCH_EX","features":[24]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE","features":[24]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE_EX","features":[24]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM","features":[24]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM_EX","features":[24]},{"name":"FILE_PREFETCH_TYPE_MAX","features":[24]},{"name":"FILE_PROVIDER_COMPRESSION_MAXIMUM","features":[24]},{"name":"FILE_PROVIDER_CURRENT_VERSION","features":[24]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V0","features":[24]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V1","features":[24]},{"name":"FILE_PROVIDER_FLAG_COMPRESS_ON_WRITE","features":[24]},{"name":"FILE_PROVIDER_SINGLE_FILE","features":[24]},{"name":"FILE_QUERY_ON_DISK_VOL_INFO_BUFFER","features":[24]},{"name":"FILE_QUERY_SPARING_BUFFER","features":[3,24]},{"name":"FILE_READ_ACCESS","features":[24]},{"name":"FILE_REFERENCE_RANGE","features":[24]},{"name":"FILE_REGION_INFO","features":[24]},{"name":"FILE_REGION_INPUT","features":[24]},{"name":"FILE_REGION_OUTPUT","features":[24]},{"name":"FILE_REGION_USAGE_HUGE_PAGE_ALIGNMENT","features":[24]},{"name":"FILE_REGION_USAGE_LARGE_PAGE_ALIGNMENT","features":[24]},{"name":"FILE_REGION_USAGE_OTHER_PAGE_ALIGNMENT","features":[24]},{"name":"FILE_REGION_USAGE_QUERY_ALIGNMENT","features":[24]},{"name":"FILE_REGION_USAGE_VALID_CACHED_DATA","features":[24]},{"name":"FILE_REGION_USAGE_VALID_NONCACHED_DATA","features":[24]},{"name":"FILE_SET_DEFECT_MGMT_BUFFER","features":[3,24]},{"name":"FILE_SET_ENCRYPTION","features":[24]},{"name":"FILE_SET_SPARSE_BUFFER","features":[3,24]},{"name":"FILE_SPECIAL_ACCESS","features":[24]},{"name":"FILE_STORAGE_TIER","features":[24]},{"name":"FILE_STORAGE_TIER_CLASS","features":[24]},{"name":"FILE_STORAGE_TIER_DESCRIPTION_LENGTH","features":[24]},{"name":"FILE_STORAGE_TIER_FLAGS","features":[24]},{"name":"FILE_STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[24]},{"name":"FILE_STORAGE_TIER_FLAG_PARITY","features":[24]},{"name":"FILE_STORAGE_TIER_FLAG_READ_CACHE","features":[24]},{"name":"FILE_STORAGE_TIER_FLAG_SMR","features":[24]},{"name":"FILE_STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[24]},{"name":"FILE_STORAGE_TIER_MEDIA_TYPE","features":[24]},{"name":"FILE_STORAGE_TIER_NAME_LENGTH","features":[24]},{"name":"FILE_STORAGE_TIER_REGION","features":[24]},{"name":"FILE_SYSTEM_RECOGNITION_INFORMATION","features":[24]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_BEGIN","features":[24]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_END","features":[24]},{"name":"FILE_TYPE_NOTIFICATION_GUID_CRASHDUMP_FILE","features":[24]},{"name":"FILE_TYPE_NOTIFICATION_GUID_HIBERNATION_FILE","features":[24]},{"name":"FILE_TYPE_NOTIFICATION_GUID_PAGE_FILE","features":[24]},{"name":"FILE_TYPE_NOTIFICATION_INPUT","features":[24]},{"name":"FILE_WRITE_ACCESS","features":[24]},{"name":"FILE_ZERO_DATA_INFORMATION","features":[24]},{"name":"FILE_ZERO_DATA_INFORMATION_EX","features":[24]},{"name":"FILE_ZERO_DATA_INFORMATION_FLAG_PRESERVE_CACHED_DATA","features":[24]},{"name":"FIND_BY_SID_DATA","features":[6,24]},{"name":"FIND_BY_SID_OUTPUT","features":[24]},{"name":"FLAG_USN_TRACK_MODIFIED_RANGES_ENABLE","features":[24]},{"name":"FORMAT_EX_PARAMETERS","features":[24]},{"name":"FORMAT_PARAMETERS","features":[24]},{"name":"FSBPIO_INFL_None","features":[24]},{"name":"FSBPIO_INFL_SKIP_STORAGE_STACK_QUERY","features":[24]},{"name":"FSBPIO_OUTFL_COMPATIBLE_STORAGE_DRIVER","features":[24]},{"name":"FSBPIO_OUTFL_FILTER_ATTACH_BLOCKED","features":[24]},{"name":"FSBPIO_OUTFL_None","features":[24]},{"name":"FSBPIO_OUTFL_STREAM_BYPASS_PAUSED","features":[24]},{"name":"FSBPIO_OUTFL_VOLUME_STACK_BYPASS_PAUSED","features":[24]},{"name":"FSCTL_ADD_OVERLAY","features":[24]},{"name":"FSCTL_ADVANCE_FILE_ID","features":[24]},{"name":"FSCTL_ALLOW_EXTENDED_DASD_IO","features":[24]},{"name":"FSCTL_CLEAN_VOLUME_METADATA","features":[24]},{"name":"FSCTL_CLEAR_ALL_LCN_WEAK_REFERENCES","features":[24]},{"name":"FSCTL_CLEAR_LCN_WEAK_REFERENCE","features":[24]},{"name":"FSCTL_CORRUPTION_HANDLING","features":[24]},{"name":"FSCTL_CREATE_LCN_WEAK_REFERENCE","features":[24]},{"name":"FSCTL_CREATE_OR_GET_OBJECT_ID","features":[24]},{"name":"FSCTL_CREATE_USN_JOURNAL","features":[24]},{"name":"FSCTL_CSC_INTERNAL","features":[24]},{"name":"FSCTL_CSV_CONTROL","features":[24]},{"name":"FSCTL_CSV_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[24]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAME","features":[24]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAMES_FOR_VOLUME_NAME","features":[24]},{"name":"FSCTL_CSV_H_BREAKING_SYNC_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_CSV_INTERNAL","features":[24]},{"name":"FSCTL_CSV_MGMT_LOCK","features":[24]},{"name":"FSCTL_CSV_QUERY_DOWN_LEVEL_FILE_SYSTEM_CHARACTERISTICS","features":[24]},{"name":"FSCTL_CSV_QUERY_VETO_FILE_DIRECT_IO","features":[24]},{"name":"FSCTL_CSV_SYNC_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_CSV_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_DELETE_CORRUPTED_REFS_CONTAINER","features":[24]},{"name":"FSCTL_DELETE_EXTERNAL_BACKING","features":[24]},{"name":"FSCTL_DELETE_OBJECT_ID","features":[24]},{"name":"FSCTL_DELETE_REPARSE_POINT","features":[24]},{"name":"FSCTL_DELETE_USN_JOURNAL","features":[24]},{"name":"FSCTL_DFSR_SET_GHOST_HANDLE_STATE","features":[24]},{"name":"FSCTL_DISABLE_LOCAL_BUFFERING","features":[24]},{"name":"FSCTL_DISMOUNT_VOLUME","features":[24]},{"name":"FSCTL_DUPLICATE_CLUSTER","features":[24]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE","features":[24]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX","features":[24]},{"name":"FSCTL_ENABLE_PER_IO_FLAGS","features":[24]},{"name":"FSCTL_ENABLE_UPGRADE","features":[24]},{"name":"FSCTL_ENCRYPTION_FSCTL_IO","features":[24]},{"name":"FSCTL_ENCRYPTION_KEY_CONTROL","features":[24]},{"name":"FSCTL_ENUM_EXTERNAL_BACKING","features":[24]},{"name":"FSCTL_ENUM_OVERLAY","features":[24]},{"name":"FSCTL_ENUM_USN_DATA","features":[24]},{"name":"FSCTL_EXTEND_VOLUME","features":[24]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS","features":[24]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS_EX","features":[24]},{"name":"FSCTL_FILE_LEVEL_TRIM","features":[24]},{"name":"FSCTL_FILE_PREFETCH","features":[24]},{"name":"FSCTL_FILE_TYPE_NOTIFICATION","features":[24]},{"name":"FSCTL_FIND_FILES_BY_SID","features":[24]},{"name":"FSCTL_GET_BOOT_AREA_INFO","features":[24]},{"name":"FSCTL_GET_COMPRESSION","features":[24]},{"name":"FSCTL_GET_EXTERNAL_BACKING","features":[24]},{"name":"FSCTL_GET_FILTER_FILE_IDENTIFIER","features":[24]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION","features":[24]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION_BUFFER","features":[24]},{"name":"FSCTL_GET_NTFS_FILE_RECORD","features":[24]},{"name":"FSCTL_GET_NTFS_VOLUME_DATA","features":[24]},{"name":"FSCTL_GET_OBJECT_ID","features":[24]},{"name":"FSCTL_GET_REFS_VOLUME_DATA","features":[24]},{"name":"FSCTL_GET_REPAIR","features":[24]},{"name":"FSCTL_GET_REPARSE_POINT","features":[24]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS","features":[24]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS_AND_REFCOUNT","features":[24]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_BASE","features":[24]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_COUNT","features":[24]},{"name":"FSCTL_GET_VOLUME_BITMAP","features":[24]},{"name":"FSCTL_GET_WOF_VERSION","features":[24]},{"name":"FSCTL_GHOST_FILE_EXTENTS","features":[24]},{"name":"FSCTL_HCS_ASYNC_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_HCS_SYNC_NO_WRITE_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_HCS_SYNC_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_INITIATE_FILE_METADATA_OPTIMIZATION","features":[24]},{"name":"FSCTL_INITIATE_REPAIR","features":[24]},{"name":"FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF","features":[24]},{"name":"FSCTL_INVALIDATE_VOLUMES","features":[24]},{"name":"FSCTL_IS_CSV_FILE","features":[24]},{"name":"FSCTL_IS_FILE_ON_CSV_VOLUME","features":[24]},{"name":"FSCTL_IS_PATHNAME_VALID","features":[24]},{"name":"FSCTL_IS_VOLUME_DIRTY","features":[24]},{"name":"FSCTL_IS_VOLUME_MOUNTED","features":[24]},{"name":"FSCTL_IS_VOLUME_OWNED_BYCSVFS","features":[24]},{"name":"FSCTL_LMR_QUERY_INFO","features":[24]},{"name":"FSCTL_LOCK_VOLUME","features":[24]},{"name":"FSCTL_LOOKUP_STREAM_FROM_CLUSTER","features":[24]},{"name":"FSCTL_MAKE_MEDIA_COMPATIBLE","features":[24]},{"name":"FSCTL_MANAGE_BYPASS_IO","features":[24]},{"name":"FSCTL_MARK_AS_SYSTEM_HIVE","features":[24]},{"name":"FSCTL_MARK_HANDLE","features":[24]},{"name":"FSCTL_MARK_VOLUME_DIRTY","features":[24]},{"name":"FSCTL_MOVE_FILE","features":[24]},{"name":"FSCTL_NOTIFY_DATA_CHANGE","features":[24]},{"name":"FSCTL_NOTIFY_STORAGE_SPACE_ALLOCATION","features":[24]},{"name":"FSCTL_OFFLOAD_READ","features":[24]},{"name":"FSCTL_OFFLOAD_READ_INPUT","features":[24]},{"name":"FSCTL_OFFLOAD_READ_OUTPUT","features":[24]},{"name":"FSCTL_OFFLOAD_WRITE","features":[24]},{"name":"FSCTL_OFFLOAD_WRITE_INPUT","features":[24]},{"name":"FSCTL_OFFLOAD_WRITE_OUTPUT","features":[24]},{"name":"FSCTL_OPBATCH_ACK_CLOSE_PENDING","features":[24]},{"name":"FSCTL_OPLOCK_BREAK_ACKNOWLEDGE","features":[24]},{"name":"FSCTL_OPLOCK_BREAK_ACK_NO_2","features":[24]},{"name":"FSCTL_OPLOCK_BREAK_NOTIFY","features":[24]},{"name":"FSCTL_QUERY_ALLOCATED_RANGES","features":[24]},{"name":"FSCTL_QUERY_ASYNC_DUPLICATE_EXTENTS_STATUS","features":[24]},{"name":"FSCTL_QUERY_BAD_RANGES","features":[24]},{"name":"FSCTL_QUERY_DEPENDENT_VOLUME","features":[24]},{"name":"FSCTL_QUERY_DIRECT_ACCESS_EXTENTS","features":[24]},{"name":"FSCTL_QUERY_DIRECT_IMAGE_ORIGINAL_BASE","features":[24]},{"name":"FSCTL_QUERY_EXTENT_READ_CACHE_INFO","features":[24]},{"name":"FSCTL_QUERY_FAT_BPB","features":[24]},{"name":"FSCTL_QUERY_FAT_BPB_BUFFER","features":[24]},{"name":"FSCTL_QUERY_FILE_LAYOUT","features":[24]},{"name":"FSCTL_QUERY_FILE_METADATA_OPTIMIZATION","features":[24]},{"name":"FSCTL_QUERY_FILE_REGIONS","features":[24]},{"name":"FSCTL_QUERY_FILE_SYSTEM_RECOGNITION","features":[24]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS","features":[24]},{"name":"FSCTL_QUERY_LCN_WEAK_REFERENCE","features":[24]},{"name":"FSCTL_QUERY_ON_DISK_VOLUME_INFO","features":[24]},{"name":"FSCTL_QUERY_PAGEFILE_ENCRYPTION","features":[24]},{"name":"FSCTL_QUERY_PERSISTENT_VOLUME_STATE","features":[24]},{"name":"FSCTL_QUERY_REFS_SMR_VOLUME_INFO","features":[24]},{"name":"FSCTL_QUERY_REFS_VOLUME_COUNTER_INFO","features":[24]},{"name":"FSCTL_QUERY_REGION_INFO","features":[24]},{"name":"FSCTL_QUERY_REGION_INFO_INPUT","features":[24]},{"name":"FSCTL_QUERY_REGION_INFO_OUTPUT","features":[24]},{"name":"FSCTL_QUERY_RETRIEVAL_POINTERS","features":[24]},{"name":"FSCTL_QUERY_SHARED_VIRTUAL_DISK_SUPPORT","features":[24]},{"name":"FSCTL_QUERY_SPARING_INFO","features":[24]},{"name":"FSCTL_QUERY_STORAGE_CLASSES","features":[24]},{"name":"FSCTL_QUERY_STORAGE_CLASSES_OUTPUT","features":[24]},{"name":"FSCTL_QUERY_USN_JOURNAL","features":[24]},{"name":"FSCTL_QUERY_VOLUME_CONTAINER_STATE","features":[24]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO","features":[24]},{"name":"FSCTL_READ_FILE_USN_DATA","features":[24]},{"name":"FSCTL_READ_FROM_PLEX","features":[24]},{"name":"FSCTL_READ_RAW_ENCRYPTED","features":[24]},{"name":"FSCTL_READ_UNPRIVILEGED_USN_JOURNAL","features":[24]},{"name":"FSCTL_READ_USN_JOURNAL","features":[24]},{"name":"FSCTL_REARRANGE_FILE","features":[24]},{"name":"FSCTL_RECALL_FILE","features":[24]},{"name":"FSCTL_REFS_CHECKPOINT_VOLUME","features":[24]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES","features":[24]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES_EX","features":[24]},{"name":"FSCTL_REFS_QUERY_VOLUME_COMPRESSION_INFO","features":[24]},{"name":"FSCTL_REFS_QUERY_VOLUME_DEDUP_INFO","features":[24]},{"name":"FSCTL_REFS_QUERY_VOLUME_IO_METRICS_INFO","features":[24]},{"name":"FSCTL_REFS_QUERY_VOLUME_TOTAL_SHARED_LCNS","features":[24]},{"name":"FSCTL_REFS_SET_VOLUME_COMPRESSION_INFO","features":[24]},{"name":"FSCTL_REFS_SET_VOLUME_DEDUP_INFO","features":[24]},{"name":"FSCTL_REFS_SET_VOLUME_IO_METRICS_INFO","features":[24]},{"name":"FSCTL_REFS_STREAM_SNAPSHOT_MANAGEMENT","features":[24]},{"name":"FSCTL_REMOVE_OVERLAY","features":[24]},{"name":"FSCTL_REPAIR_COPIES","features":[24]},{"name":"FSCTL_REQUEST_BATCH_OPLOCK","features":[24]},{"name":"FSCTL_REQUEST_FILTER_OPLOCK","features":[24]},{"name":"FSCTL_REQUEST_OPLOCK","features":[24]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_1","features":[24]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_2","features":[24]},{"name":"FSCTL_RESET_VOLUME_ALLOCATION_HINTS","features":[24]},{"name":"FSCTL_RKF_INTERNAL","features":[24]},{"name":"FSCTL_SCRUB_DATA","features":[24]},{"name":"FSCTL_SCRUB_UNDISCOVERABLE_ID","features":[24]},{"name":"FSCTL_SD_GLOBAL_CHANGE","features":[24]},{"name":"FSCTL_SECURITY_ID_CHECK","features":[24]},{"name":"FSCTL_SET_BOOTLOADER_ACCESSED","features":[24]},{"name":"FSCTL_SET_CACHED_RUNS_STATE","features":[24]},{"name":"FSCTL_SET_COMPRESSION","features":[24]},{"name":"FSCTL_SET_DAX_ALLOC_ALIGNMENT_HINT","features":[24]},{"name":"FSCTL_SET_DEFECT_MANAGEMENT","features":[24]},{"name":"FSCTL_SET_ENCRYPTION","features":[24]},{"name":"FSCTL_SET_EXTERNAL_BACKING","features":[24]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION","features":[24]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER","features":[24]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER_EX","features":[24]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_EX","features":[24]},{"name":"FSCTL_SET_LAYER_ROOT","features":[24]},{"name":"FSCTL_SET_OBJECT_ID","features":[24]},{"name":"FSCTL_SET_OBJECT_ID_EXTENDED","features":[24]},{"name":"FSCTL_SET_PERSISTENT_VOLUME_STATE","features":[24]},{"name":"FSCTL_SET_PURGE_FAILURE_MODE","features":[24]},{"name":"FSCTL_SET_REFS_FILE_STRICTLY_SEQUENTIAL","features":[24]},{"name":"FSCTL_SET_REFS_SMR_VOLUME_GC_PARAMETERS","features":[24]},{"name":"FSCTL_SET_REPAIR","features":[24]},{"name":"FSCTL_SET_REPARSE_POINT","features":[24]},{"name":"FSCTL_SET_REPARSE_POINT_EX","features":[24]},{"name":"FSCTL_SET_SHORT_NAME_BEHAVIOR","features":[24]},{"name":"FSCTL_SET_SPARSE","features":[24]},{"name":"FSCTL_SET_VOLUME_COMPRESSION_STATE","features":[24]},{"name":"FSCTL_SET_ZERO_DATA","features":[24]},{"name":"FSCTL_SET_ZERO_ON_DEALLOCATION","features":[24]},{"name":"FSCTL_SHRINK_VOLUME","features":[24]},{"name":"FSCTL_SHUFFLE_FILE","features":[24]},{"name":"FSCTL_SIS_COPYFILE","features":[24]},{"name":"FSCTL_SIS_LINK_FILES","features":[24]},{"name":"FSCTL_SMB_SHARE_FLUSH_AND_PURGE","features":[24]},{"name":"FSCTL_SPARSE_OVERALLOCATE","features":[24]},{"name":"FSCTL_SSDI_STORAGE_REQUEST","features":[24]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE","features":[24]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE_EX","features":[24]},{"name":"FSCTL_STORAGE_QOS_CONTROL","features":[24]},{"name":"FSCTL_STREAMS_ASSOCIATE_ID","features":[24]},{"name":"FSCTL_STREAMS_QUERY_ID","features":[24]},{"name":"FSCTL_STREAMS_QUERY_PARAMETERS","features":[24]},{"name":"FSCTL_SUSPEND_OVERLAY","features":[24]},{"name":"FSCTL_SVHDX_ASYNC_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_SVHDX_SET_INITIATOR_INFORMATION","features":[24]},{"name":"FSCTL_SVHDX_SYNC_TUNNEL_REQUEST","features":[24]},{"name":"FSCTL_TXFS_CREATE_MINIVERSION","features":[24]},{"name":"FSCTL_TXFS_CREATE_SECONDARY_RM","features":[24]},{"name":"FSCTL_TXFS_GET_METADATA_INFO","features":[24]},{"name":"FSCTL_TXFS_GET_TRANSACTED_VERSION","features":[24]},{"name":"FSCTL_TXFS_LIST_TRANSACTIONS","features":[24]},{"name":"FSCTL_TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[24]},{"name":"FSCTL_TXFS_MODIFY_RM","features":[24]},{"name":"FSCTL_TXFS_QUERY_RM_INFORMATION","features":[24]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION","features":[24]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION2","features":[24]},{"name":"FSCTL_TXFS_ROLLFORWARD_REDO","features":[24]},{"name":"FSCTL_TXFS_ROLLFORWARD_UNDO","features":[24]},{"name":"FSCTL_TXFS_SAVEPOINT_INFORMATION","features":[24]},{"name":"FSCTL_TXFS_SHUTDOWN_RM","features":[24]},{"name":"FSCTL_TXFS_START_RM","features":[24]},{"name":"FSCTL_TXFS_TRANSACTION_ACTIVE","features":[24]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION","features":[24]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION2","features":[24]},{"name":"FSCTL_UNLOCK_VOLUME","features":[24]},{"name":"FSCTL_UNMAP_SPACE","features":[24]},{"name":"FSCTL_UPDATE_OVERLAY","features":[24]},{"name":"FSCTL_UPGRADE_VOLUME","features":[24]},{"name":"FSCTL_USN_TRACK_MODIFIED_RANGES","features":[24]},{"name":"FSCTL_VIRTUAL_STORAGE_PASSTHROUGH","features":[24]},{"name":"FSCTL_VIRTUAL_STORAGE_QUERY_PROPERTY","features":[24]},{"name":"FSCTL_VIRTUAL_STORAGE_SET_BEHAVIOR","features":[24]},{"name":"FSCTL_WAIT_FOR_REPAIR","features":[24]},{"name":"FSCTL_WRITE_RAW_ENCRYPTED","features":[24]},{"name":"FSCTL_WRITE_USN_CLOSE_RECORD","features":[24]},{"name":"FSCTL_WRITE_USN_REASON","features":[24]},{"name":"FS_BPIO_INFLAGS","features":[24]},{"name":"FS_BPIO_INFO","features":[24]},{"name":"FS_BPIO_INPUT","features":[24]},{"name":"FS_BPIO_OPERATIONS","features":[24]},{"name":"FS_BPIO_OP_DISABLE","features":[24]},{"name":"FS_BPIO_OP_ENABLE","features":[24]},{"name":"FS_BPIO_OP_GET_INFO","features":[24]},{"name":"FS_BPIO_OP_MAX_OPERATION","features":[24]},{"name":"FS_BPIO_OP_QUERY","features":[24]},{"name":"FS_BPIO_OP_STREAM_PAUSE","features":[24]},{"name":"FS_BPIO_OP_STREAM_RESUME","features":[24]},{"name":"FS_BPIO_OP_VOLUME_STACK_PAUSE","features":[24]},{"name":"FS_BPIO_OP_VOLUME_STACK_RESUME","features":[24]},{"name":"FS_BPIO_OUTFLAGS","features":[24]},{"name":"FS_BPIO_OUTPUT","features":[24]},{"name":"FS_BPIO_RESULTS","features":[24]},{"name":"FW_ISSUEID_NO_ISSUE","features":[24]},{"name":"FW_ISSUEID_UNKNOWN","features":[24]},{"name":"FileSnapStateInactive","features":[24]},{"name":"FileSnapStateSource","features":[24]},{"name":"FileSnapStateTarget","features":[24]},{"name":"FileStorageTierClassCapacity","features":[24]},{"name":"FileStorageTierClassMax","features":[24]},{"name":"FileStorageTierClassPerformance","features":[24]},{"name":"FileStorageTierClassUnspecified","features":[24]},{"name":"FileStorageTierMediaTypeDisk","features":[24]},{"name":"FileStorageTierMediaTypeMax","features":[24]},{"name":"FileStorageTierMediaTypeScm","features":[24]},{"name":"FileStorageTierMediaTypeSsd","features":[24]},{"name":"FileStorageTierMediaTypeUnspecified","features":[24]},{"name":"FixedMedia","features":[24]},{"name":"FormFactor1_8","features":[24]},{"name":"FormFactor1_8Less","features":[24]},{"name":"FormFactor2_5","features":[24]},{"name":"FormFactor3_5","features":[24]},{"name":"FormFactorDimm","features":[24]},{"name":"FormFactorEmbedded","features":[24]},{"name":"FormFactorM_2","features":[24]},{"name":"FormFactorMemoryCard","features":[24]},{"name":"FormFactorPCIeBoard","features":[24]},{"name":"FormFactorUnknown","features":[24]},{"name":"FormFactormSata","features":[24]},{"name":"GETVERSIONINPARAMS","features":[24]},{"name":"GET_CHANGER_PARAMETERS","features":[24]},{"name":"GET_CHANGER_PARAMETERS_FEATURES1","features":[24]},{"name":"GET_DEVICE_INTERNAL_STATUS_DATA_REQUEST","features":[24]},{"name":"GET_DISK_ATTRIBUTES","features":[24]},{"name":"GET_FILTER_FILE_IDENTIFIER_INPUT","features":[24]},{"name":"GET_FILTER_FILE_IDENTIFIER_OUTPUT","features":[24]},{"name":"GET_LENGTH_INFORMATION","features":[24]},{"name":"GET_MEDIA_TYPES","features":[23,24]},{"name":"GET_VOLUME_BITMAP_FLAG_MASK_METADATA","features":[24]},{"name":"GPT_ATTRIBUTES","features":[24]},{"name":"GPT_ATTRIBUTE_LEGACY_BIOS_BOOTABLE","features":[24]},{"name":"GPT_ATTRIBUTE_NO_BLOCK_IO_PROTOCOL","features":[24]},{"name":"GPT_ATTRIBUTE_PLATFORM_REQUIRED","features":[24]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_DAX","features":[24]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_HIDDEN","features":[24]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER","features":[24]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_OFFLINE","features":[24]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY","features":[24]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SERVICE","features":[24]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY","features":[24]},{"name":"GPT_SPACES_ATTRIBUTE_NO_METADATA","features":[24]},{"name":"GP_LOG_PAGE_DESCRIPTOR","features":[24]},{"name":"GUID_DEVICEDUMP_DRIVER_STORAGE_PORT","features":[24]},{"name":"GUID_DEVICEDUMP_STORAGE_DEVICE","features":[24]},{"name":"GUID_DEVINTERFACE_CDCHANGER","features":[24]},{"name":"GUID_DEVINTERFACE_CDROM","features":[24]},{"name":"GUID_DEVINTERFACE_COMPORT","features":[24]},{"name":"GUID_DEVINTERFACE_DISK","features":[24]},{"name":"GUID_DEVINTERFACE_FLOPPY","features":[24]},{"name":"GUID_DEVINTERFACE_HIDDEN_VOLUME","features":[24]},{"name":"GUID_DEVINTERFACE_MEDIUMCHANGER","features":[24]},{"name":"GUID_DEVINTERFACE_PARTITION","features":[24]},{"name":"GUID_DEVINTERFACE_SCM_PHYSICAL_DEVICE","features":[24]},{"name":"GUID_DEVINTERFACE_SERENUM_BUS_ENUMERATOR","features":[24]},{"name":"GUID_DEVINTERFACE_SERVICE_VOLUME","features":[24]},{"name":"GUID_DEVINTERFACE_SES","features":[24]},{"name":"GUID_DEVINTERFACE_STORAGEPORT","features":[24]},{"name":"GUID_DEVINTERFACE_TAPE","features":[24]},{"name":"GUID_DEVINTERFACE_UNIFIED_ACCESS_RPMB","features":[24]},{"name":"GUID_DEVINTERFACE_VMLUN","features":[24]},{"name":"GUID_DEVINTERFACE_VOLUME","features":[24]},{"name":"GUID_DEVINTERFACE_WRITEONCEDISK","features":[24]},{"name":"GUID_DEVINTERFACE_ZNSDISK","features":[24]},{"name":"GUID_SCM_PD_HEALTH_NOTIFICATION","features":[24]},{"name":"GUID_SCM_PD_PASSTHROUGH_INVDIMM","features":[24]},{"name":"HISTOGRAM_BUCKET","features":[24]},{"name":"HIST_NO_OF_BUCKETS","features":[24]},{"name":"HITACHI_12_WO","features":[24]},{"name":"HealthStatusDisabled","features":[24]},{"name":"HealthStatusFailed","features":[24]},{"name":"HealthStatusNormal","features":[24]},{"name":"HealthStatusThrottled","features":[24]},{"name":"HealthStatusUnknown","features":[24]},{"name":"HealthStatusWarning","features":[24]},{"name":"IBM_3480","features":[24]},{"name":"IBM_3490E","features":[24]},{"name":"IBM_Magstar_3590","features":[24]},{"name":"IBM_Magstar_MP","features":[24]},{"name":"IDENTIFY_BUFFER_SIZE","features":[24]},{"name":"IDEREGS","features":[24]},{"name":"ID_CMD","features":[24]},{"name":"IOCTL_CHANGER_BASE","features":[24]},{"name":"IOCTL_CHANGER_EXCHANGE_MEDIUM","features":[24]},{"name":"IOCTL_CHANGER_GET_ELEMENT_STATUS","features":[24]},{"name":"IOCTL_CHANGER_GET_PARAMETERS","features":[24]},{"name":"IOCTL_CHANGER_GET_PRODUCT_DATA","features":[24]},{"name":"IOCTL_CHANGER_GET_STATUS","features":[24]},{"name":"IOCTL_CHANGER_INITIALIZE_ELEMENT_STATUS","features":[24]},{"name":"IOCTL_CHANGER_MOVE_MEDIUM","features":[24]},{"name":"IOCTL_CHANGER_QUERY_VOLUME_TAGS","features":[24]},{"name":"IOCTL_CHANGER_REINITIALIZE_TRANSPORT","features":[24]},{"name":"IOCTL_CHANGER_SET_ACCESS","features":[24]},{"name":"IOCTL_CHANGER_SET_POSITION","features":[24]},{"name":"IOCTL_DISK_BASE","features":[24]},{"name":"IOCTL_DISK_CHECK_VERIFY","features":[24]},{"name":"IOCTL_DISK_CONTROLLER_NUMBER","features":[24]},{"name":"IOCTL_DISK_CREATE_DISK","features":[24]},{"name":"IOCTL_DISK_DELETE_DRIVE_LAYOUT","features":[24]},{"name":"IOCTL_DISK_EJECT_MEDIA","features":[24]},{"name":"IOCTL_DISK_FIND_NEW_DEVICES","features":[24]},{"name":"IOCTL_DISK_FORMAT_DRIVE","features":[24]},{"name":"IOCTL_DISK_FORMAT_TRACKS","features":[24]},{"name":"IOCTL_DISK_FORMAT_TRACKS_EX","features":[24]},{"name":"IOCTL_DISK_GET_CACHE_INFORMATION","features":[24]},{"name":"IOCTL_DISK_GET_DISK_ATTRIBUTES","features":[24]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY","features":[24]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY_EX","features":[24]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT","features":[24]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT_EX","features":[24]},{"name":"IOCTL_DISK_GET_LENGTH_INFO","features":[24]},{"name":"IOCTL_DISK_GET_MEDIA_TYPES","features":[24]},{"name":"IOCTL_DISK_GET_PARTITION_INFO","features":[24]},{"name":"IOCTL_DISK_GET_PARTITION_INFO_EX","features":[24]},{"name":"IOCTL_DISK_GET_WRITE_CACHE_STATE","features":[24]},{"name":"IOCTL_DISK_GROW_PARTITION","features":[24]},{"name":"IOCTL_DISK_HISTOGRAM_DATA","features":[24]},{"name":"IOCTL_DISK_HISTOGRAM_RESET","features":[24]},{"name":"IOCTL_DISK_HISTOGRAM_STRUCTURE","features":[24]},{"name":"IOCTL_DISK_IS_WRITABLE","features":[24]},{"name":"IOCTL_DISK_LOAD_MEDIA","features":[24]},{"name":"IOCTL_DISK_LOGGING","features":[24]},{"name":"IOCTL_DISK_MEDIA_REMOVAL","features":[24]},{"name":"IOCTL_DISK_PERFORMANCE","features":[24]},{"name":"IOCTL_DISK_PERFORMANCE_OFF","features":[24]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS","features":[24]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS_EX","features":[24]},{"name":"IOCTL_DISK_RELEASE","features":[24]},{"name":"IOCTL_DISK_REQUEST_DATA","features":[24]},{"name":"IOCTL_DISK_REQUEST_STRUCTURE","features":[24]},{"name":"IOCTL_DISK_RESERVE","features":[24]},{"name":"IOCTL_DISK_RESET_SNAPSHOT_INFO","features":[24]},{"name":"IOCTL_DISK_SENSE_DEVICE","features":[24]},{"name":"IOCTL_DISK_SET_CACHE_INFORMATION","features":[24]},{"name":"IOCTL_DISK_SET_DISK_ATTRIBUTES","features":[24]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT","features":[24]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT_EX","features":[24]},{"name":"IOCTL_DISK_SET_PARTITION_INFO","features":[24]},{"name":"IOCTL_DISK_SET_PARTITION_INFO_EX","features":[24]},{"name":"IOCTL_DISK_UPDATE_DRIVE_SIZE","features":[24]},{"name":"IOCTL_DISK_UPDATE_PROPERTIES","features":[24]},{"name":"IOCTL_DISK_VERIFY","features":[24]},{"name":"IOCTL_SCMBUS_BASE","features":[24]},{"name":"IOCTL_SCMBUS_DEVICE_FUNCTION_BASE","features":[24]},{"name":"IOCTL_SCM_BUS_GET_LOGICAL_DEVICES","features":[24]},{"name":"IOCTL_SCM_BUS_GET_PHYSICAL_DEVICES","features":[24]},{"name":"IOCTL_SCM_BUS_GET_REGIONS","features":[24]},{"name":"IOCTL_SCM_BUS_QUERY_PROPERTY","features":[24]},{"name":"IOCTL_SCM_BUS_REFRESH_NAMESPACE","features":[24]},{"name":"IOCTL_SCM_BUS_RUNTIME_FW_ACTIVATE","features":[24]},{"name":"IOCTL_SCM_BUS_SET_PROPERTY","features":[24]},{"name":"IOCTL_SCM_LD_GET_INTERLEAVE_SET","features":[24]},{"name":"IOCTL_SCM_LOGICAL_DEVICE_FUNCTION_BASE","features":[24]},{"name":"IOCTL_SCM_PD_FIRMWARE_ACTIVATE","features":[24]},{"name":"IOCTL_SCM_PD_FIRMWARE_DOWNLOAD","features":[24]},{"name":"IOCTL_SCM_PD_PASSTHROUGH","features":[24]},{"name":"IOCTL_SCM_PD_QUERY_PROPERTY","features":[24]},{"name":"IOCTL_SCM_PD_REINITIALIZE_MEDIA","features":[24]},{"name":"IOCTL_SCM_PD_SET_PROPERTY","features":[24]},{"name":"IOCTL_SCM_PD_UPDATE_MANAGEMENT_STATUS","features":[24]},{"name":"IOCTL_SCM_PHYSICAL_DEVICE_FUNCTION_BASE","features":[24]},{"name":"IOCTL_SERENUM_EXPOSE_HARDWARE","features":[24]},{"name":"IOCTL_SERENUM_GET_PORT_NAME","features":[24]},{"name":"IOCTL_SERENUM_PORT_DESC","features":[24]},{"name":"IOCTL_SERENUM_REMOVE_HARDWARE","features":[24]},{"name":"IOCTL_SERIAL_LSRMST_INSERT","features":[24]},{"name":"IOCTL_STORAGE_ALLOCATE_BC_STREAM","features":[24]},{"name":"IOCTL_STORAGE_ATTRIBUTE_MANAGEMENT","features":[24]},{"name":"IOCTL_STORAGE_BASE","features":[24]},{"name":"IOCTL_STORAGE_BC_VERSION","features":[24]},{"name":"IOCTL_STORAGE_BREAK_RESERVATION","features":[24]},{"name":"IOCTL_STORAGE_CHECK_PRIORITY_HINT_SUPPORT","features":[24]},{"name":"IOCTL_STORAGE_CHECK_VERIFY","features":[24]},{"name":"IOCTL_STORAGE_CHECK_VERIFY2","features":[24]},{"name":"IOCTL_STORAGE_DEVICE_POWER_CAP","features":[24]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_NOTIFY","features":[24]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_QUERY_CAPS","features":[24]},{"name":"IOCTL_STORAGE_DIAGNOSTIC","features":[24]},{"name":"IOCTL_STORAGE_EJECTION_CONTROL","features":[24]},{"name":"IOCTL_STORAGE_EJECT_MEDIA","features":[24]},{"name":"IOCTL_STORAGE_ENABLE_IDLE_POWER","features":[24]},{"name":"IOCTL_STORAGE_EVENT_NOTIFICATION","features":[24]},{"name":"IOCTL_STORAGE_FAILURE_PREDICTION_CONFIG","features":[24]},{"name":"IOCTL_STORAGE_FIND_NEW_DEVICES","features":[24]},{"name":"IOCTL_STORAGE_FIRMWARE_ACTIVATE","features":[24]},{"name":"IOCTL_STORAGE_FIRMWARE_DOWNLOAD","features":[24]},{"name":"IOCTL_STORAGE_FIRMWARE_GET_INFO","features":[24]},{"name":"IOCTL_STORAGE_FREE_BC_STREAM","features":[24]},{"name":"IOCTL_STORAGE_GET_BC_PROPERTIES","features":[24]},{"name":"IOCTL_STORAGE_GET_COUNTERS","features":[24]},{"name":"IOCTL_STORAGE_GET_DEVICE_INTERNAL_LOG","features":[24]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER","features":[24]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER_EX","features":[24]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY","features":[24]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY_RAW","features":[24]},{"name":"IOCTL_STORAGE_GET_HOTPLUG_INFO","features":[24]},{"name":"IOCTL_STORAGE_GET_IDLE_POWERUP_REASON","features":[24]},{"name":"IOCTL_STORAGE_GET_LB_PROVISIONING_MAP_RESOURCES","features":[24]},{"name":"IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER","features":[24]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES","features":[24]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES_EX","features":[24]},{"name":"IOCTL_STORAGE_GET_PHYSICAL_ELEMENT_STATUS","features":[24]},{"name":"IOCTL_STORAGE_LOAD_MEDIA","features":[24]},{"name":"IOCTL_STORAGE_LOAD_MEDIA2","features":[24]},{"name":"IOCTL_STORAGE_MANAGE_BYPASS_IO","features":[24]},{"name":"IOCTL_STORAGE_MANAGE_DATA_SET_ATTRIBUTES","features":[24]},{"name":"IOCTL_STORAGE_MCN_CONTROL","features":[24]},{"name":"IOCTL_STORAGE_MEDIA_REMOVAL","features":[24]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_IN","features":[24]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_OUT","features":[24]},{"name":"IOCTL_STORAGE_POWER_ACTIVE","features":[24]},{"name":"IOCTL_STORAGE_POWER_IDLE","features":[24]},{"name":"IOCTL_STORAGE_PREDICT_FAILURE","features":[24]},{"name":"IOCTL_STORAGE_PROTOCOL_COMMAND","features":[24]},{"name":"IOCTL_STORAGE_QUERY_PROPERTY","features":[24]},{"name":"IOCTL_STORAGE_READ_CAPACITY","features":[24]},{"name":"IOCTL_STORAGE_REINITIALIZE_MEDIA","features":[24]},{"name":"IOCTL_STORAGE_RELEASE","features":[24]},{"name":"IOCTL_STORAGE_REMOVE_ELEMENT_AND_TRUNCATE","features":[24]},{"name":"IOCTL_STORAGE_RESERVE","features":[24]},{"name":"IOCTL_STORAGE_RESET_BUS","features":[24]},{"name":"IOCTL_STORAGE_RESET_DEVICE","features":[24]},{"name":"IOCTL_STORAGE_RPMB_COMMAND","features":[24]},{"name":"IOCTL_STORAGE_SET_HOTPLUG_INFO","features":[24]},{"name":"IOCTL_STORAGE_SET_PROPERTY","features":[24]},{"name":"IOCTL_STORAGE_SET_TEMPERATURE_THRESHOLD","features":[24]},{"name":"IOCTL_STORAGE_START_DATA_INTEGRITY_CHECK","features":[24]},{"name":"IOCTL_STORAGE_STOP_DATA_INTEGRITY_CHECK","features":[24]},{"name":"IOMEGA_JAZ","features":[24]},{"name":"IOMEGA_ZIP","features":[24]},{"name":"IO_IRP_EXT_TRACK_OFFSET_HEADER","features":[24]},{"name":"KODAK_14_WO","features":[24]},{"name":"KeepPrefetchedData","features":[24]},{"name":"KeepReadData","features":[24]},{"name":"LMRQuerySessionInfo","features":[24]},{"name":"LMR_QUERY_INFO_CLASS","features":[24]},{"name":"LMR_QUERY_INFO_PARAM","features":[24]},{"name":"LMR_QUERY_SESSION_INFO","features":[24]},{"name":"LOCK_ELEMENT","features":[24]},{"name":"LOCK_UNLOCK_DOOR","features":[24]},{"name":"LOCK_UNLOCK_IEPORT","features":[24]},{"name":"LOCK_UNLOCK_KEYPAD","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_DATA","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_INDEX","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_MASK","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_SYSTEM","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_DENY_DEFRAG_SET","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_FS_SYSTEM_FILE","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_PAGE_FILE","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_TXF_SYSTEM_FILE","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_INPUT","features":[24]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_OUTPUT","features":[24]},{"name":"LTO_Accelis","features":[24]},{"name":"LTO_Ultrium","features":[24]},{"name":"MARK_HANDLE_CLOUD_SYNC","features":[24]},{"name":"MARK_HANDLE_DISABLE_FILE_METADATA_OPTIMIZATION","features":[24]},{"name":"MARK_HANDLE_ENABLE_CPU_CACHE","features":[24]},{"name":"MARK_HANDLE_ENABLE_USN_SOURCE_ON_PAGING_IO","features":[24]},{"name":"MARK_HANDLE_FILTER_METADATA","features":[24]},{"name":"MARK_HANDLE_INFO","features":[3,24]},{"name":"MARK_HANDLE_INFO32","features":[24]},{"name":"MARK_HANDLE_NOT_READ_COPY","features":[24]},{"name":"MARK_HANDLE_NOT_REALTIME","features":[24]},{"name":"MARK_HANDLE_NOT_TXF_SYSTEM_LOG","features":[24]},{"name":"MARK_HANDLE_PROTECT_CLUSTERS","features":[24]},{"name":"MARK_HANDLE_READ_COPY","features":[24]},{"name":"MARK_HANDLE_REALTIME","features":[24]},{"name":"MARK_HANDLE_RETURN_PURGE_FAILURE","features":[24]},{"name":"MARK_HANDLE_SKIP_COHERENCY_SYNC_DISALLOW_WRITES","features":[24]},{"name":"MARK_HANDLE_SUPPRESS_VOLUME_OPEN_FLUSH","features":[24]},{"name":"MARK_HANDLE_TXF_SYSTEM_LOG","features":[24]},{"name":"MAXIMUM_ENCRYPTION_VALUE","features":[24]},{"name":"MAX_FW_BUCKET_ID_LENGTH","features":[24]},{"name":"MAX_INTERFACE_CODES","features":[24]},{"name":"MAX_VOLUME_ID_SIZE","features":[24]},{"name":"MAX_VOLUME_TEMPLATE_SIZE","features":[24]},{"name":"MEDIA_CURRENTLY_MOUNTED","features":[24]},{"name":"MEDIA_ERASEABLE","features":[24]},{"name":"MEDIA_READ_ONLY","features":[24]},{"name":"MEDIA_READ_WRITE","features":[24]},{"name":"MEDIA_TYPE","features":[24]},{"name":"MEDIA_WRITE_ONCE","features":[24]},{"name":"MEDIA_WRITE_PROTECTED","features":[24]},{"name":"METHOD_BUFFERED","features":[24]},{"name":"METHOD_DIRECT_FROM_HARDWARE","features":[24]},{"name":"METHOD_DIRECT_TO_HARDWARE","features":[24]},{"name":"METHOD_IN_DIRECT","features":[24]},{"name":"METHOD_NEITHER","features":[24]},{"name":"METHOD_OUT_DIRECT","features":[24]},{"name":"MFT_ENUM_DATA_V0","features":[24]},{"name":"MFT_ENUM_DATA_V1","features":[24]},{"name":"MOVE_FILE_DATA","features":[3,24]},{"name":"MOVE_FILE_DATA32","features":[24]},{"name":"MOVE_FILE_RECORD_DATA","features":[3,24]},{"name":"MO_3_RW","features":[24]},{"name":"MO_5_LIMDOW","features":[24]},{"name":"MO_5_RW","features":[24]},{"name":"MO_5_WO","features":[24]},{"name":"MO_NFR_525","features":[24]},{"name":"MP2_8mm","features":[24]},{"name":"MP_8mm","features":[24]},{"name":"MiniQic","features":[24]},{"name":"NCTP","features":[24]},{"name":"NIKON_12_RW","features":[24]},{"name":"NTFS_EXTENDED_VOLUME_DATA","features":[24]},{"name":"NTFS_FILE_RECORD_INPUT_BUFFER","features":[24]},{"name":"NTFS_FILE_RECORD_OUTPUT_BUFFER","features":[24]},{"name":"NTFS_STATISTICS","features":[24]},{"name":"NTFS_STATISTICS_EX","features":[24]},{"name":"NTFS_VOLUME_DATA_BUFFER","features":[24]},{"name":"NVMeDataTypeFeature","features":[24]},{"name":"NVMeDataTypeIdentify","features":[24]},{"name":"NVMeDataTypeLogPage","features":[24]},{"name":"NVMeDataTypeUnknown","features":[24]},{"name":"OBSOLETE_DISK_GET_WRITE_CACHE_STATE","features":[24]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_BUS","features":[24]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_DEVICE","features":[24]},{"name":"OFFLOAD_READ_FLAG_ALL_ZERO_BEYOND_CURRENT_RANGE","features":[24]},{"name":"OPLOCK_LEVEL_CACHE_HANDLE","features":[24]},{"name":"OPLOCK_LEVEL_CACHE_READ","features":[24]},{"name":"OPLOCK_LEVEL_CACHE_WRITE","features":[24]},{"name":"PARTIITON_OS_DATA","features":[24]},{"name":"PARTITION_BSP","features":[24]},{"name":"PARTITION_DM","features":[24]},{"name":"PARTITION_DPP","features":[24]},{"name":"PARTITION_ENTRY_UNUSED","features":[24]},{"name":"PARTITION_EXTENDED","features":[24]},{"name":"PARTITION_EZDRIVE","features":[24]},{"name":"PARTITION_FAT32","features":[24]},{"name":"PARTITION_FAT32_XINT13","features":[24]},{"name":"PARTITION_FAT_12","features":[24]},{"name":"PARTITION_FAT_16","features":[24]},{"name":"PARTITION_GPT","features":[24]},{"name":"PARTITION_HUGE","features":[24]},{"name":"PARTITION_IFS","features":[24]},{"name":"PARTITION_INFORMATION","features":[3,24]},{"name":"PARTITION_INFORMATION_EX","features":[3,24]},{"name":"PARTITION_INFORMATION_GPT","features":[24]},{"name":"PARTITION_INFORMATION_MBR","features":[3,24]},{"name":"PARTITION_LDM","features":[24]},{"name":"PARTITION_MAIN_OS","features":[24]},{"name":"PARTITION_MSFT_RECOVERY","features":[24]},{"name":"PARTITION_NTFT","features":[24]},{"name":"PARTITION_OS2BOOTMGR","features":[24]},{"name":"PARTITION_PREP","features":[24]},{"name":"PARTITION_PRE_INSTALLED","features":[24]},{"name":"PARTITION_SPACES","features":[24]},{"name":"PARTITION_SPACES_DATA","features":[24]},{"name":"PARTITION_STYLE","features":[24]},{"name":"PARTITION_STYLE_GPT","features":[24]},{"name":"PARTITION_STYLE_MBR","features":[24]},{"name":"PARTITION_STYLE_RAW","features":[24]},{"name":"PARTITION_SYSTEM","features":[24]},{"name":"PARTITION_UNIX","features":[24]},{"name":"PARTITION_WINDOWS_SYSTEM","features":[24]},{"name":"PARTITION_XENIX_1","features":[24]},{"name":"PARTITION_XENIX_2","features":[24]},{"name":"PARTITION_XINT13","features":[24]},{"name":"PARTITION_XINT13_EXTENDED","features":[24]},{"name":"PATHNAME_BUFFER","features":[24]},{"name":"PC_5_RW","features":[24]},{"name":"PC_5_WO","features":[24]},{"name":"PD_5_RW","features":[24]},{"name":"PERF_BIN","features":[24]},{"name":"PERSISTENT_RESERVE_COMMAND","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_BACKED_BY_WIM","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_CHKDSK_RAN_ONCE","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_CONTAINS_BACKING_WIM","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_DAX_FORMATTED","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_DEV_VOLUME","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_GLOBAL_METADATA_NO_SEEK_PENALTY","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_LOCAL_METADATA_NO_SEEK_PENALTY","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_MODIFIED_BY_CHKDSK","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_NO_HEAT_GATHERING","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_NO_WRITE_AUTO_TIERING","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_REALLOCATE_ALL_DATA_WRITES","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_SHORT_NAME_CREATION_DISABLED","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_TRUSTED_VOLUME","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_TXF_DISABLED","features":[24]},{"name":"PERSISTENT_VOLUME_STATE_VOLUME_SCRUB_DISABLED","features":[24]},{"name":"PHILIPS_12_WO","features":[24]},{"name":"PHYSICAL_ELEMENT_STATUS","features":[24]},{"name":"PHYSICAL_ELEMENT_STATUS_DESCRIPTOR","features":[24]},{"name":"PHYSICAL_ELEMENT_STATUS_REQUEST","features":[24]},{"name":"PINNACLE_APEX_5_RW","features":[24]},{"name":"PIO_IRP_EXT_PROCESS_TRACKED_OFFSET_CALLBACK","features":[24]},{"name":"PLEX_READ_DATA_REQUEST","features":[24]},{"name":"PREVENT_MEDIA_REMOVAL","features":[3,24]},{"name":"PRODUCT_ID_LENGTH","features":[24]},{"name":"PROJFS_PROTOCOL_VERSION","features":[24]},{"name":"PropertyExistsQuery","features":[24]},{"name":"PropertyExistsSet","features":[24]},{"name":"PropertyMaskQuery","features":[24]},{"name":"PropertyQueryMaxDefined","features":[24]},{"name":"PropertySetMaxDefined","features":[24]},{"name":"PropertyStandardQuery","features":[24]},{"name":"PropertyStandardSet","features":[24]},{"name":"ProtocolTypeAta","features":[24]},{"name":"ProtocolTypeMaxReserved","features":[24]},{"name":"ProtocolTypeNvme","features":[24]},{"name":"ProtocolTypeProprietary","features":[24]},{"name":"ProtocolTypeScsi","features":[24]},{"name":"ProtocolTypeSd","features":[24]},{"name":"ProtocolTypeUfs","features":[24]},{"name":"ProtocolTypeUnknown","features":[24]},{"name":"QIC","features":[24]},{"name":"QUERY_BAD_RANGES_INPUT","features":[24]},{"name":"QUERY_BAD_RANGES_INPUT_RANGE","features":[24]},{"name":"QUERY_BAD_RANGES_OUTPUT","features":[24]},{"name":"QUERY_BAD_RANGES_OUTPUT_RANGE","features":[24]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_GUEST_VOLUMES","features":[24]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_HOST_VOLUMES","features":[24]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE","features":[24]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_CLUSTERS","features":[24]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_FILEID","features":[24]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_NONE","features":[24]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_STORAGE_RESERVE_ID","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTENTS","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTRA_INFO","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FILES_WITH_DSC_ATTRIBUTE","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FULL_PATH_IN_NAMES","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_NAMES","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_ONLY_FILES_WITH_SPECIFIC_ATTRIBUTES","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS_WITH_NO_CLUSTERS_ALLOCATED","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DATA_ATTRIBUTE","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DSC_ATTRIBUTE","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EA_ATTRIBUTE","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EFS_ATTRIBUTE","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_REPARSE_ATTRIBUTE","features":[24]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_TXF_ATTRIBUTE","features":[24]},{"name":"QUERY_FILE_LAYOUT_INPUT","features":[24]},{"name":"QUERY_FILE_LAYOUT_NUM_FILTER_TYPES","features":[24]},{"name":"QUERY_FILE_LAYOUT_OUTPUT","features":[24]},{"name":"QUERY_FILE_LAYOUT_REPARSE_DATA_INVALID","features":[24]},{"name":"QUERY_FILE_LAYOUT_REPARSE_TAG_INVALID","features":[24]},{"name":"QUERY_FILE_LAYOUT_RESTART","features":[24]},{"name":"QUERY_FILE_LAYOUT_SINGLE_INSTANCED","features":[24]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_READ","features":[24]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_WRITE","features":[24]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_NO_DEFRAG_VOLUME","features":[24]},{"name":"READ_ATTRIBUTES","features":[24]},{"name":"READ_ATTRIBUTE_BUFFER_SIZE","features":[24]},{"name":"READ_COMPRESSION_INFO_VALID","features":[24]},{"name":"READ_COPY_NUMBER_BYPASS_CACHE_FLAG","features":[24]},{"name":"READ_COPY_NUMBER_KEY","features":[24]},{"name":"READ_ELEMENT_ADDRESS_INFO","features":[24]},{"name":"READ_FILE_USN_DATA","features":[24]},{"name":"READ_THRESHOLDS","features":[24]},{"name":"READ_THRESHOLD_BUFFER_SIZE","features":[24]},{"name":"READ_USN_JOURNAL_DATA_V0","features":[24]},{"name":"READ_USN_JOURNAL_DATA_V1","features":[24]},{"name":"REASSIGN_BLOCKS","features":[24]},{"name":"REASSIGN_BLOCKS_EX","features":[24]},{"name":"RECOVERED_READS_VALID","features":[24]},{"name":"RECOVERED_WRITES_VALID","features":[24]},{"name":"REFS_SMR_VOLUME_GC_ACTION","features":[24]},{"name":"REFS_SMR_VOLUME_GC_METHOD","features":[24]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS","features":[24]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS_VERSION_V1","features":[24]},{"name":"REFS_SMR_VOLUME_GC_STATE","features":[24]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT","features":[24]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V0","features":[24]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V1","features":[24]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[24]},{"name":"REMOVE_ELEMENT_AND_TRUNCATE_REQUEST","features":[24]},{"name":"REPAIR_COPIES_INPUT","features":[24]},{"name":"REPAIR_COPIES_OUTPUT","features":[24]},{"name":"REPLACE_ALTERNATE","features":[24]},{"name":"REPLACE_PRIMARY","features":[24]},{"name":"REQUEST_OPLOCK_CURRENT_VERSION","features":[24]},{"name":"REQUEST_OPLOCK_INPUT_BUFFER","features":[24]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_ACK","features":[24]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_COMPLETE_ACK_ON_CLOSE","features":[24]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_REQUEST","features":[24]},{"name":"REQUEST_OPLOCK_OUTPUT_BUFFER","features":[24]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_ACK_REQUIRED","features":[24]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_MODES_PROVIDED","features":[24]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_WRITABLE_SECTION_PRESENT","features":[24]},{"name":"REQUEST_RAW_ENCRYPTED_DATA","features":[24]},{"name":"RETRACT_IEPORT","features":[24]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[24]},{"name":"RETRIEVAL_POINTERS_BUFFER","features":[24]},{"name":"RETRIEVAL_POINTER_BASE","features":[24]},{"name":"RETRIEVAL_POINTER_COUNT","features":[24]},{"name":"RETURN_SMART_STATUS","features":[24]},{"name":"REVISION_LENGTH","features":[24]},{"name":"RemovableMedia","features":[24]},{"name":"RequestLocation","features":[24]},{"name":"RequestSize","features":[24]},{"name":"SAIT","features":[24]},{"name":"SAVE_ATTRIBUTE_VALUES","features":[24]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICES_INFO","features":[24]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICE_INFO","features":[24]},{"name":"SCM_BUS_DEDICATED_MEMORY_STATE","features":[3,24]},{"name":"SCM_BUS_FIRMWARE_ACTIVATION_STATE","features":[24]},{"name":"SCM_BUS_PROPERTY_ID","features":[24]},{"name":"SCM_BUS_PROPERTY_QUERY","features":[24]},{"name":"SCM_BUS_PROPERTY_SET","features":[24]},{"name":"SCM_BUS_QUERY_TYPE","features":[24]},{"name":"SCM_BUS_RUNTIME_FW_ACTIVATION_INFO","features":[3,24]},{"name":"SCM_BUS_SET_TYPE","features":[24]},{"name":"SCM_INTERLEAVED_PD_INFO","features":[24]},{"name":"SCM_LD_INTERLEAVE_SET_INFO","features":[24]},{"name":"SCM_LOGICAL_DEVICES","features":[24]},{"name":"SCM_LOGICAL_DEVICE_INSTANCE","features":[24]},{"name":"SCM_MAX_SYMLINK_LEN_IN_CHARS","features":[24]},{"name":"SCM_PD_DESCRIPTOR_HEADER","features":[24]},{"name":"SCM_PD_DEVICE_HANDLE","features":[24]},{"name":"SCM_PD_DEVICE_INFO","features":[24]},{"name":"SCM_PD_DEVICE_SPECIFIC_INFO","features":[24]},{"name":"SCM_PD_DEVICE_SPECIFIC_PROPERTY","features":[24]},{"name":"SCM_PD_FIRMWARE_ACTIVATE","features":[24]},{"name":"SCM_PD_FIRMWARE_ACTIVATION_STATE","features":[24]},{"name":"SCM_PD_FIRMWARE_DOWNLOAD","features":[24]},{"name":"SCM_PD_FIRMWARE_INFO","features":[24]},{"name":"SCM_PD_FIRMWARE_LAST_DOWNLOAD","features":[24]},{"name":"SCM_PD_FIRMWARE_REVISION_LENGTH_BYTES","features":[24]},{"name":"SCM_PD_FIRMWARE_SLOT_INFO","features":[24]},{"name":"SCM_PD_FRU_ID_STRING","features":[24]},{"name":"SCM_PD_HEALTH_NOTIFICATION_DATA","features":[24]},{"name":"SCM_PD_HEALTH_STATUS","features":[24]},{"name":"SCM_PD_LAST_FW_ACTIVATION_STATUS","features":[24]},{"name":"SCM_PD_LOCATION_STRING","features":[24]},{"name":"SCM_PD_MANAGEMENT_STATUS","features":[24]},{"name":"SCM_PD_MAX_OPERATIONAL_STATUS","features":[24]},{"name":"SCM_PD_MEDIA_REINITIALIZATION_STATUS","features":[24]},{"name":"SCM_PD_OPERATIONAL_STATUS","features":[24]},{"name":"SCM_PD_OPERATIONAL_STATUS_REASON","features":[24]},{"name":"SCM_PD_PASSTHROUGH_INPUT","features":[24]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_INPUT","features":[24]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_OUTPUT","features":[24]},{"name":"SCM_PD_PASSTHROUGH_OUTPUT","features":[24]},{"name":"SCM_PD_PROPERTY_ID","features":[24]},{"name":"SCM_PD_PROPERTY_NAME_LENGTH_IN_CHARS","features":[24]},{"name":"SCM_PD_PROPERTY_QUERY","features":[24]},{"name":"SCM_PD_PROPERTY_SET","features":[24]},{"name":"SCM_PD_QUERY_TYPE","features":[24]},{"name":"SCM_PD_REINITIALIZE_MEDIA_INPUT","features":[24]},{"name":"SCM_PD_REINITIALIZE_MEDIA_OUTPUT","features":[24]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_ARM_STATE","features":[3,24]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_INFO","features":[24]},{"name":"SCM_PD_SET_TYPE","features":[24]},{"name":"SCM_PHYSICAL_DEVICES","features":[24]},{"name":"SCM_PHYSICAL_DEVICE_INSTANCE","features":[24]},{"name":"SCM_REGION","features":[24]},{"name":"SCM_REGIONS","features":[24]},{"name":"SCM_REGION_FLAG","features":[24]},{"name":"SD_CHANGE_MACHINE_SID_INPUT","features":[24]},{"name":"SD_CHANGE_MACHINE_SID_OUTPUT","features":[24]},{"name":"SD_ENUM_SDS_ENTRY","features":[24]},{"name":"SD_ENUM_SDS_INPUT","features":[24]},{"name":"SD_ENUM_SDS_OUTPUT","features":[24]},{"name":"SD_GLOBAL_CHANGE_INPUT","features":[24]},{"name":"SD_GLOBAL_CHANGE_OUTPUT","features":[24]},{"name":"SD_GLOBAL_CHANGE_TYPE_ENUM_SDS","features":[24]},{"name":"SD_GLOBAL_CHANGE_TYPE_MACHINE_SID","features":[24]},{"name":"SD_GLOBAL_CHANGE_TYPE_QUERY_STATS","features":[24]},{"name":"SD_QUERY_STATS_INPUT","features":[24]},{"name":"SD_QUERY_STATS_OUTPUT","features":[24]},{"name":"SEARCH_ALL","features":[24]},{"name":"SEARCH_ALL_NO_SEQ","features":[24]},{"name":"SEARCH_ALTERNATE","features":[24]},{"name":"SEARCH_ALT_NO_SEQ","features":[24]},{"name":"SEARCH_PRIMARY","features":[24]},{"name":"SEARCH_PRI_NO_SEQ","features":[24]},{"name":"SENDCMDINPARAMS","features":[24]},{"name":"SENDCMDOUTPARAMS","features":[24]},{"name":"SERIAL_IOC_FCR_DMA_MODE","features":[24]},{"name":"SERIAL_IOC_FCR_FIFO_ENABLE","features":[24]},{"name":"SERIAL_IOC_FCR_RCVR_RESET","features":[24]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_LSB","features":[24]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_MSB","features":[24]},{"name":"SERIAL_IOC_FCR_RES1","features":[24]},{"name":"SERIAL_IOC_FCR_RES2","features":[24]},{"name":"SERIAL_IOC_FCR_XMIT_RESET","features":[24]},{"name":"SERIAL_IOC_MCR_DTR","features":[24]},{"name":"SERIAL_IOC_MCR_LOOP","features":[24]},{"name":"SERIAL_IOC_MCR_OUT1","features":[24]},{"name":"SERIAL_IOC_MCR_OUT2","features":[24]},{"name":"SERIAL_IOC_MCR_RTS","features":[24]},{"name":"SERIAL_NUMBER_LENGTH","features":[24]},{"name":"SET_DAX_ALLOC_ALIGNMENT_HINT_INPUT","features":[24]},{"name":"SET_DISK_ATTRIBUTES","features":[3,24]},{"name":"SET_PARTITION_INFORMATION","features":[24]},{"name":"SET_PARTITION_INFORMATION_EX","features":[24]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[24]},{"name":"SET_PURGE_FAILURE_MODE_ENABLED","features":[24]},{"name":"SET_PURGE_FAILURE_MODE_INPUT","features":[24]},{"name":"SET_REPAIR_DISABLED_AND_BUGCHECK_ON_CORRUPT","features":[24]},{"name":"SET_REPAIR_ENABLED","features":[24]},{"name":"SET_REPAIR_VALID_MASK","features":[24]},{"name":"SET_REPAIR_WARN_ABOUT_DATA_LOSS","features":[24]},{"name":"SHRINK_VOLUME_INFORMATION","features":[24]},{"name":"SHRINK_VOLUME_REQUEST_TYPES","features":[24]},{"name":"SI_COPYFILE","features":[24]},{"name":"SMART_ABORT_OFFLINE_SELFTEST","features":[24]},{"name":"SMART_CMD","features":[24]},{"name":"SMART_CYL_HI","features":[24]},{"name":"SMART_CYL_LOW","features":[24]},{"name":"SMART_ERROR_NO_MEM","features":[24]},{"name":"SMART_EXTENDED_SELFTEST_CAPTIVE","features":[24]},{"name":"SMART_EXTENDED_SELFTEST_OFFLINE","features":[24]},{"name":"SMART_GET_VERSION","features":[24]},{"name":"SMART_IDE_ERROR","features":[24]},{"name":"SMART_INVALID_BUFFER","features":[24]},{"name":"SMART_INVALID_COMMAND","features":[24]},{"name":"SMART_INVALID_DRIVE","features":[24]},{"name":"SMART_INVALID_FLAG","features":[24]},{"name":"SMART_INVALID_IOCTL","features":[24]},{"name":"SMART_INVALID_REGISTER","features":[24]},{"name":"SMART_LOG_SECTOR_SIZE","features":[24]},{"name":"SMART_NOT_SUPPORTED","features":[24]},{"name":"SMART_NO_ERROR","features":[24]},{"name":"SMART_NO_IDE_DEVICE","features":[24]},{"name":"SMART_OFFLINE_ROUTINE_OFFLINE","features":[24]},{"name":"SMART_RCV_DRIVE_DATA","features":[24]},{"name":"SMART_RCV_DRIVE_DATA_EX","features":[24]},{"name":"SMART_READ_LOG","features":[24]},{"name":"SMART_SEND_DRIVE_COMMAND","features":[24]},{"name":"SMART_SHORT_SELFTEST_CAPTIVE","features":[24]},{"name":"SMART_SHORT_SELFTEST_OFFLINE","features":[24]},{"name":"SMART_WRITE_LOG","features":[24]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_INPUT","features":[24]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_OUTPUT","features":[24]},{"name":"SONY_12_WO","features":[24]},{"name":"SONY_D2","features":[24]},{"name":"SONY_DTF","features":[24]},{"name":"SPACES_TRACKED_OFFSET_HEADER_FLAG","features":[24]},{"name":"SRB_TYPE_SCSI_REQUEST_BLOCK","features":[24]},{"name":"SRB_TYPE_STORAGE_REQUEST_BLOCK","features":[24]},{"name":"STARTING_LCN_INPUT_BUFFER","features":[24]},{"name":"STARTING_LCN_INPUT_BUFFER_EX","features":[24]},{"name":"STARTING_VCN_INPUT_BUFFER","features":[24]},{"name":"STK_9840","features":[24]},{"name":"STK_9940","features":[24]},{"name":"STK_DATA_D3","features":[24]},{"name":"STORAGE_ACCESS_ALIGNMENT_DESCRIPTOR","features":[24]},{"name":"STORAGE_ADAPTER_DESCRIPTOR","features":[3,24]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER","features":[24]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER_V1_MAX_LENGTH","features":[24]},{"name":"STORAGE_ADDRESS_TYPE_BTL8","features":[24]},{"name":"STORAGE_ALLOCATE_BC_STREAM_INPUT","features":[3,24]},{"name":"STORAGE_ALLOCATE_BC_STREAM_OUTPUT","features":[24]},{"name":"STORAGE_ASSOCIATION_TYPE","features":[24]},{"name":"STORAGE_ATTRIBUTE_ASYNC_EVENT_NOTIFICATION","features":[24]},{"name":"STORAGE_ATTRIBUTE_BLOCK_IO","features":[24]},{"name":"STORAGE_ATTRIBUTE_BYTE_ADDRESSABLE_IO","features":[24]},{"name":"STORAGE_ATTRIBUTE_DYNAMIC_PERSISTENCE","features":[24]},{"name":"STORAGE_ATTRIBUTE_MGMT","features":[24]},{"name":"STORAGE_ATTRIBUTE_MGMT_ACTION","features":[24]},{"name":"STORAGE_ATTRIBUTE_PERF_SIZE_INDEPENDENT","features":[24]},{"name":"STORAGE_ATTRIBUTE_VOLATILE","features":[24]},{"name":"STORAGE_BREAK_RESERVATION_REQUEST","features":[24]},{"name":"STORAGE_BUS_RESET_REQUEST","features":[24]},{"name":"STORAGE_COMPONENT_HEALTH_STATUS","features":[24]},{"name":"STORAGE_COMPONENT_ROLE_CACHE","features":[24]},{"name":"STORAGE_COMPONENT_ROLE_DATA","features":[24]},{"name":"STORAGE_COMPONENT_ROLE_TIERING","features":[24]},{"name":"STORAGE_COUNTER","features":[24]},{"name":"STORAGE_COUNTERS","features":[24]},{"name":"STORAGE_COUNTER_TYPE","features":[24]},{"name":"STORAGE_CRASH_TELEMETRY_REGKEY","features":[24]},{"name":"STORAGE_CRYPTO_ALGORITHM_ID","features":[24]},{"name":"STORAGE_CRYPTO_CAPABILITY","features":[24]},{"name":"STORAGE_CRYPTO_CAPABILITY_VERSION_1","features":[24]},{"name":"STORAGE_CRYPTO_DESCRIPTOR","features":[24]},{"name":"STORAGE_CRYPTO_DESCRIPTOR_VERSION_1","features":[24]},{"name":"STORAGE_CRYPTO_KEY_SIZE","features":[24]},{"name":"STORAGE_DESCRIPTOR_HEADER","features":[24]},{"name":"STORAGE_DEVICE_ATTRIBUTES_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_DESCRIPTOR","features":[3,23,24]},{"name":"STORAGE_DEVICE_FAULT_DOMAIN_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_FLAGS_PAGE_83_DEVICEGUID","features":[24]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_CONFLICT","features":[24]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_NOHWID","features":[24]},{"name":"STORAGE_DEVICE_FORM_FACTOR","features":[24]},{"name":"STORAGE_DEVICE_ID_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_LED_STATE_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_LOCATION_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_MANAGEMENT_STATUS","features":[24]},{"name":"STORAGE_DEVICE_MAX_OPERATIONAL_STATUS","features":[24]},{"name":"STORAGE_DEVICE_NUMA_NODE_UNKNOWN","features":[24]},{"name":"STORAGE_DEVICE_NUMA_PROPERTY","features":[24]},{"name":"STORAGE_DEVICE_NUMBER","features":[24]},{"name":"STORAGE_DEVICE_NUMBERS","features":[24]},{"name":"STORAGE_DEVICE_NUMBER_EX","features":[24]},{"name":"STORAGE_DEVICE_POWER_CAP","features":[24]},{"name":"STORAGE_DEVICE_POWER_CAP_UNITS","features":[24]},{"name":"STORAGE_DEVICE_POWER_CAP_VERSION_V1","features":[24]},{"name":"STORAGE_DEVICE_RESILIENCY_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY","features":[3,24]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY_V2","features":[3,24]},{"name":"STORAGE_DEVICE_TELEMETRY_REGKEY","features":[24]},{"name":"STORAGE_DEVICE_TIERING_DESCRIPTOR","features":[24]},{"name":"STORAGE_DEVICE_UNSAFE_SHUTDOWN_COUNT","features":[24]},{"name":"STORAGE_DIAGNOSTIC_DATA","features":[24]},{"name":"STORAGE_DIAGNOSTIC_FLAG_ADAPTER_REQUEST","features":[24]},{"name":"STORAGE_DIAGNOSTIC_LEVEL","features":[24]},{"name":"STORAGE_DIAGNOSTIC_REQUEST","features":[24]},{"name":"STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[24]},{"name":"STORAGE_DISK_HEALTH_STATUS","features":[24]},{"name":"STORAGE_DISK_OPERATIONAL_STATUS","features":[24]},{"name":"STORAGE_ENCRYPTION_TYPE","features":[24]},{"name":"STORAGE_EVENT_DEVICE_OPERATION","features":[24]},{"name":"STORAGE_EVENT_DEVICE_STATUS","features":[24]},{"name":"STORAGE_EVENT_MEDIA_STATUS","features":[24]},{"name":"STORAGE_EVENT_NOTIFICATION","features":[24]},{"name":"STORAGE_EVENT_NOTIFICATION_VERSION_V1","features":[24]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG","features":[3,24]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG_V1","features":[24]},{"name":"STORAGE_FRU_ID_DESCRIPTOR","features":[24]},{"name":"STORAGE_GET_BC_PROPERTIES_OUTPUT","features":[24]},{"name":"STORAGE_HOTPLUG_INFO","features":[3,24]},{"name":"STORAGE_HW_ENDURANCE_DATA_DESCRIPTOR","features":[24]},{"name":"STORAGE_HW_ENDURANCE_INFO","features":[24]},{"name":"STORAGE_HW_FIRMWARE_ACTIVATE","features":[24]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD","features":[24]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD_V2","features":[24]},{"name":"STORAGE_HW_FIRMWARE_INFO","features":[3,24]},{"name":"STORAGE_HW_FIRMWARE_INFO_QUERY","features":[24]},{"name":"STORAGE_HW_FIRMWARE_INVALID_SLOT","features":[24]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[24]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[24]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[24]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[24]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[24]},{"name":"STORAGE_HW_FIRMWARE_REVISION_LENGTH","features":[24]},{"name":"STORAGE_HW_FIRMWARE_SLOT_INFO","features":[24]},{"name":"STORAGE_IDENTIFIER","features":[24]},{"name":"STORAGE_IDENTIFIER_CODE_SET","features":[24]},{"name":"STORAGE_IDENTIFIER_TYPE","features":[24]},{"name":"STORAGE_IDLE_POWER","features":[24]},{"name":"STORAGE_IDLE_POWERUP_REASON","features":[24]},{"name":"STORAGE_IDLE_POWERUP_REASON_VERSION_V1","features":[24]},{"name":"STORAGE_ID_NAA_FORMAT","features":[24]},{"name":"STORAGE_LB_PROVISIONING_MAP_RESOURCES","features":[24]},{"name":"STORAGE_MEDIA_SERIAL_NUMBER_DATA","features":[24]},{"name":"STORAGE_MEDIA_TYPE","features":[24]},{"name":"STORAGE_MEDIUM_PRODUCT_TYPE_DESCRIPTOR","features":[24]},{"name":"STORAGE_MINIPORT_DESCRIPTOR","features":[3,24]},{"name":"STORAGE_OFFLOAD_MAX_TOKEN_LENGTH","features":[24]},{"name":"STORAGE_OFFLOAD_READ_OUTPUT","features":[24]},{"name":"STORAGE_OFFLOAD_READ_RANGE_TRUNCATED","features":[24]},{"name":"STORAGE_OFFLOAD_TOKEN","features":[24]},{"name":"STORAGE_OFFLOAD_TOKEN_ID_LENGTH","features":[24]},{"name":"STORAGE_OFFLOAD_TOKEN_INVALID","features":[24]},{"name":"STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA","features":[24]},{"name":"STORAGE_OFFLOAD_WRITE_OUTPUT","features":[24]},{"name":"STORAGE_OFFLOAD_WRITE_RANGE_TRUNCATED","features":[24]},{"name":"STORAGE_OPERATIONAL_REASON","features":[24]},{"name":"STORAGE_OPERATIONAL_STATUS_REASON","features":[24]},{"name":"STORAGE_PHYSICAL_ADAPTER_DATA","features":[3,24]},{"name":"STORAGE_PHYSICAL_DEVICE_DATA","features":[24]},{"name":"STORAGE_PHYSICAL_NODE_DATA","features":[24]},{"name":"STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR","features":[24]},{"name":"STORAGE_PORT_CODE_SET","features":[24]},{"name":"STORAGE_POWERUP_REASON_TYPE","features":[24]},{"name":"STORAGE_PREDICT_FAILURE","features":[24]},{"name":"STORAGE_PRIORITY_HINT_SUPPORT","features":[24]},{"name":"STORAGE_PRIORITY_HINT_SUPPORTED","features":[24]},{"name":"STORAGE_PROPERTY_ID","features":[24]},{"name":"STORAGE_PROPERTY_QUERY","features":[24]},{"name":"STORAGE_PROPERTY_SET","features":[24]},{"name":"STORAGE_PROTOCOL_ATA_DATA_TYPE","features":[24]},{"name":"STORAGE_PROTOCOL_COMMAND","features":[24]},{"name":"STORAGE_PROTOCOL_COMMAND_FLAG_ADAPTER_REQUEST","features":[24]},{"name":"STORAGE_PROTOCOL_COMMAND_LENGTH_NVME","features":[24]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR","features":[24]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT","features":[24]},{"name":"STORAGE_PROTOCOL_DATA_SUBVALUE_GET_LOG_PAGE","features":[24]},{"name":"STORAGE_PROTOCOL_NVME_DATA_TYPE","features":[24]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA","features":[24]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA_EXT","features":[24]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_ADMIN_COMMAND","features":[24]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_NVM_COMMAND","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_BUSY","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_DATA_OVERRUN","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_ERROR","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_INSUFFICIENT_RESOURCES","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_INVALID_REQUEST","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_NOT_SUPPORTED","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_NO_DEVICE","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_PENDING","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_SUCCESS","features":[24]},{"name":"STORAGE_PROTOCOL_STATUS_THROTTLED_REQUEST","features":[24]},{"name":"STORAGE_PROTOCOL_STRUCTURE_VERSION","features":[24]},{"name":"STORAGE_PROTOCOL_TYPE","features":[24]},{"name":"STORAGE_PROTOCOL_UFS_DATA_TYPE","features":[24]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV1_ENTRY","features":[153,24]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV2_ENTRY","features":[153,24]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_REQUEST","features":[24]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_RESPONSE","features":[153,24]},{"name":"STORAGE_QUERY_TYPE","features":[24]},{"name":"STORAGE_READ_CAPACITY","features":[24]},{"name":"STORAGE_REINITIALIZE_MEDIA","features":[24]},{"name":"STORAGE_RESERVE_ID","features":[24]},{"name":"STORAGE_RPMB_COMMAND_TYPE","features":[24]},{"name":"STORAGE_RPMB_DATA_FRAME","features":[24]},{"name":"STORAGE_RPMB_DESCRIPTOR","features":[24]},{"name":"STORAGE_RPMB_DESCRIPTOR_VERSION_1","features":[24]},{"name":"STORAGE_RPMB_FRAME_TYPE","features":[24]},{"name":"STORAGE_RPMB_MINIMUM_RELIABLE_WRITE_SIZE","features":[24]},{"name":"STORAGE_SANITIZE_METHOD","features":[24]},{"name":"STORAGE_SET_TYPE","features":[24]},{"name":"STORAGE_SPEC_VERSION","features":[24]},{"name":"STORAGE_SUPPORTED_FEATURES_BYPASS_IO","features":[24]},{"name":"STORAGE_SUPPORTED_FEATURES_MASK","features":[24]},{"name":"STORAGE_TEMPERATURE_DATA_DESCRIPTOR","features":[3,24]},{"name":"STORAGE_TEMPERATURE_INFO","features":[3,24]},{"name":"STORAGE_TEMPERATURE_THRESHOLD","features":[3,24]},{"name":"STORAGE_TEMPERATURE_THRESHOLD_FLAG_ADAPTER_REQUEST","features":[24]},{"name":"STORAGE_TEMPERATURE_VALUE_NOT_REPORTED","features":[24]},{"name":"STORAGE_TIER","features":[24]},{"name":"STORAGE_TIER_CLASS","features":[24]},{"name":"STORAGE_TIER_DESCRIPTION_LENGTH","features":[24]},{"name":"STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[24]},{"name":"STORAGE_TIER_FLAG_PARITY","features":[24]},{"name":"STORAGE_TIER_FLAG_READ_CACHE","features":[24]},{"name":"STORAGE_TIER_FLAG_SMR","features":[24]},{"name":"STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[24]},{"name":"STORAGE_TIER_MEDIA_TYPE","features":[24]},{"name":"STORAGE_TIER_NAME_LENGTH","features":[24]},{"name":"STORAGE_TIER_REGION","features":[24]},{"name":"STORAGE_WRITE_CACHE_PROPERTY","features":[3,24]},{"name":"STORAGE_ZONED_DEVICE_DESCRIPTOR","features":[3,24]},{"name":"STORAGE_ZONED_DEVICE_TYPES","features":[24]},{"name":"STORAGE_ZONES_ATTRIBUTES","features":[24]},{"name":"STORAGE_ZONE_CONDITION","features":[24]},{"name":"STORAGE_ZONE_DESCRIPTOR","features":[3,24]},{"name":"STORAGE_ZONE_GROUP","features":[24]},{"name":"STORAGE_ZONE_TYPES","features":[24]},{"name":"STORATTRIBUTE_MANAGEMENT_STATE","features":[24]},{"name":"STORATTRIBUTE_NONE","features":[24]},{"name":"STREAMS_ASSOCIATE_ID_CLEAR","features":[24]},{"name":"STREAMS_ASSOCIATE_ID_INPUT_BUFFER","features":[24]},{"name":"STREAMS_ASSOCIATE_ID_SET","features":[24]},{"name":"STREAMS_INVALID_ID","features":[24]},{"name":"STREAMS_MAX_ID","features":[24]},{"name":"STREAMS_QUERY_ID_OUTPUT_BUFFER","features":[24]},{"name":"STREAMS_QUERY_PARAMETERS_OUTPUT_BUFFER","features":[24]},{"name":"STREAM_CLEAR_ENCRYPTION","features":[24]},{"name":"STREAM_EXTENT_ENTRY","features":[24]},{"name":"STREAM_EXTENT_ENTRY_ALL_EXTENTS","features":[24]},{"name":"STREAM_EXTENT_ENTRY_AS_RETRIEVAL_POINTERS","features":[24]},{"name":"STREAM_INFORMATION_ENTRY","features":[24]},{"name":"STREAM_LAYOUT_ENTRY","features":[24]},{"name":"STREAM_LAYOUT_ENTRY_HAS_INFORMATION","features":[24]},{"name":"STREAM_LAYOUT_ENTRY_IMMOVABLE","features":[24]},{"name":"STREAM_LAYOUT_ENTRY_NO_CLUSTERS_ALLOCATED","features":[24]},{"name":"STREAM_LAYOUT_ENTRY_PINNED","features":[24]},{"name":"STREAM_LAYOUT_ENTRY_RESIDENT","features":[24]},{"name":"STREAM_SET_ENCRYPTION","features":[24]},{"name":"SYQUEST_EZ135","features":[24]},{"name":"SYQUEST_EZFLYER","features":[24]},{"name":"SYQUEST_SYJET","features":[24]},{"name":"ScmBusFirmwareActivationState_Armed","features":[24]},{"name":"ScmBusFirmwareActivationState_Busy","features":[24]},{"name":"ScmBusFirmwareActivationState_Idle","features":[24]},{"name":"ScmBusProperty_DedicatedMemoryInfo","features":[24]},{"name":"ScmBusProperty_DedicatedMemoryState","features":[24]},{"name":"ScmBusProperty_Max","features":[24]},{"name":"ScmBusProperty_RuntimeFwActivationInfo","features":[24]},{"name":"ScmBusQuery_Descriptor","features":[24]},{"name":"ScmBusQuery_IsSupported","features":[24]},{"name":"ScmBusQuery_Max","features":[24]},{"name":"ScmBusSet_Descriptor","features":[24]},{"name":"ScmBusSet_IsSupported","features":[24]},{"name":"ScmBusSet_Max","features":[24]},{"name":"ScmPdFirmwareActivationState_Armed","features":[24]},{"name":"ScmPdFirmwareActivationState_Busy","features":[24]},{"name":"ScmPdFirmwareActivationState_Idle","features":[24]},{"name":"ScmPdLastFwActivaitonStatus_ActivationInProgress","features":[24]},{"name":"ScmPdLastFwActivaitonStatus_FwUnsupported","features":[24]},{"name":"ScmPdLastFwActivaitonStatus_Retry","features":[24]},{"name":"ScmPdLastFwActivaitonStatus_UnknownError","features":[24]},{"name":"ScmPdLastFwActivationStatus_ColdRebootRequired","features":[24]},{"name":"ScmPdLastFwActivationStatus_FwNotFound","features":[24]},{"name":"ScmPdLastFwActivationStatus_None","features":[24]},{"name":"ScmPdLastFwActivationStatus_Success","features":[24]},{"name":"ScmPhysicalDeviceHealth_Healthy","features":[24]},{"name":"ScmPhysicalDeviceHealth_Max","features":[24]},{"name":"ScmPhysicalDeviceHealth_Unhealthy","features":[24]},{"name":"ScmPhysicalDeviceHealth_Unknown","features":[24]},{"name":"ScmPhysicalDeviceHealth_Warning","features":[24]},{"name":"ScmPhysicalDeviceOpReason_BackgroundOperation","features":[24]},{"name":"ScmPhysicalDeviceOpReason_Component","features":[24]},{"name":"ScmPhysicalDeviceOpReason_Configuration","features":[24]},{"name":"ScmPhysicalDeviceOpReason_DataPersistenceLossImminent","features":[24]},{"name":"ScmPhysicalDeviceOpReason_DeviceController","features":[24]},{"name":"ScmPhysicalDeviceOpReason_DisabledByPlatform","features":[24]},{"name":"ScmPhysicalDeviceOpReason_EnergySource","features":[24]},{"name":"ScmPhysicalDeviceOpReason_ExcessiveTemperature","features":[24]},{"name":"ScmPhysicalDeviceOpReason_FatalError","features":[24]},{"name":"ScmPhysicalDeviceOpReason_HealthCheck","features":[24]},{"name":"ScmPhysicalDeviceOpReason_InternalFailure","features":[24]},{"name":"ScmPhysicalDeviceOpReason_InvalidFirmware","features":[24]},{"name":"ScmPhysicalDeviceOpReason_LostData","features":[24]},{"name":"ScmPhysicalDeviceOpReason_LostDataPersistence","features":[24]},{"name":"ScmPhysicalDeviceOpReason_LostWritePersistence","features":[24]},{"name":"ScmPhysicalDeviceOpReason_Max","features":[24]},{"name":"ScmPhysicalDeviceOpReason_Media","features":[24]},{"name":"ScmPhysicalDeviceOpReason_MediaController","features":[24]},{"name":"ScmPhysicalDeviceOpReason_MediaRemainingSpareBlock","features":[24]},{"name":"ScmPhysicalDeviceOpReason_PerformanceDegradation","features":[24]},{"name":"ScmPhysicalDeviceOpReason_PermanentError","features":[24]},{"name":"ScmPhysicalDeviceOpReason_ThresholdExceeded","features":[24]},{"name":"ScmPhysicalDeviceOpReason_Unknown","features":[24]},{"name":"ScmPhysicalDeviceOpReason_WritePersistenceLossImminent","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_HardwareError","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_InService","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_Max","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_Missing","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_NotUsable","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_Ok","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_PredictingFailure","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_TransientError","features":[24]},{"name":"ScmPhysicalDeviceOpStatus_Unknown","features":[24]},{"name":"ScmPhysicalDeviceProperty_DeviceHandle","features":[24]},{"name":"ScmPhysicalDeviceProperty_DeviceInfo","features":[24]},{"name":"ScmPhysicalDeviceProperty_DeviceSpecificInfo","features":[24]},{"name":"ScmPhysicalDeviceProperty_FirmwareInfo","features":[24]},{"name":"ScmPhysicalDeviceProperty_FruIdString","features":[24]},{"name":"ScmPhysicalDeviceProperty_LocationString","features":[24]},{"name":"ScmPhysicalDeviceProperty_ManagementStatus","features":[24]},{"name":"ScmPhysicalDeviceProperty_Max","features":[24]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationArmState","features":[24]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationInfo","features":[24]},{"name":"ScmPhysicalDeviceQuery_Descriptor","features":[24]},{"name":"ScmPhysicalDeviceQuery_IsSupported","features":[24]},{"name":"ScmPhysicalDeviceQuery_Max","features":[24]},{"name":"ScmPhysicalDeviceReinit_ColdBootNeeded","features":[24]},{"name":"ScmPhysicalDeviceReinit_Max","features":[24]},{"name":"ScmPhysicalDeviceReinit_RebootNeeded","features":[24]},{"name":"ScmPhysicalDeviceReinit_Success","features":[24]},{"name":"ScmPhysicalDeviceSet_Descriptor","features":[24]},{"name":"ScmPhysicalDeviceSet_IsSupported","features":[24]},{"name":"ScmPhysicalDeviceSet_Max","features":[24]},{"name":"ScmRegionFlagLabel","features":[24]},{"name":"ScmRegionFlagNone","features":[24]},{"name":"ShrinkAbort","features":[24]},{"name":"ShrinkCommit","features":[24]},{"name":"ShrinkPrepare","features":[24]},{"name":"SmrGcActionPause","features":[24]},{"name":"SmrGcActionStart","features":[24]},{"name":"SmrGcActionStartFullSpeed","features":[24]},{"name":"SmrGcActionStop","features":[24]},{"name":"SmrGcMethodCompaction","features":[24]},{"name":"SmrGcMethodCompression","features":[24]},{"name":"SmrGcMethodRotation","features":[24]},{"name":"SmrGcStateActive","features":[24]},{"name":"SmrGcStateActiveFullSpeed","features":[24]},{"name":"SmrGcStateInactive","features":[24]},{"name":"SmrGcStatePaused","features":[24]},{"name":"StorAttributeMgmt_ClearAttribute","features":[24]},{"name":"StorAttributeMgmt_ResetAttribute","features":[24]},{"name":"StorAttributeMgmt_SetAttribute","features":[24]},{"name":"StorRpmbAuthenticatedDeviceConfigRead","features":[24]},{"name":"StorRpmbAuthenticatedDeviceConfigWrite","features":[24]},{"name":"StorRpmbAuthenticatedRead","features":[24]},{"name":"StorRpmbAuthenticatedWrite","features":[24]},{"name":"StorRpmbProgramAuthKey","features":[24]},{"name":"StorRpmbQueryWriteCounter","features":[24]},{"name":"StorRpmbReadResultRequest","features":[24]},{"name":"StorageAccessAlignmentProperty","features":[24]},{"name":"StorageAdapterCryptoProperty","features":[24]},{"name":"StorageAdapterPhysicalTopologyProperty","features":[24]},{"name":"StorageAdapterProperty","features":[24]},{"name":"StorageAdapterProtocolSpecificProperty","features":[24]},{"name":"StorageAdapterRpmbProperty","features":[24]},{"name":"StorageAdapterSerialNumberProperty","features":[24]},{"name":"StorageAdapterTemperatureProperty","features":[24]},{"name":"StorageCounterTypeFlushLatency100NSMax","features":[24]},{"name":"StorageCounterTypeLoadUnloadCycleCount","features":[24]},{"name":"StorageCounterTypeLoadUnloadCycleCountMax","features":[24]},{"name":"StorageCounterTypeManufactureDate","features":[24]},{"name":"StorageCounterTypeMax","features":[24]},{"name":"StorageCounterTypePowerOnHours","features":[24]},{"name":"StorageCounterTypeReadErrorsCorrected","features":[24]},{"name":"StorageCounterTypeReadErrorsTotal","features":[24]},{"name":"StorageCounterTypeReadErrorsUncorrected","features":[24]},{"name":"StorageCounterTypeReadLatency100NSMax","features":[24]},{"name":"StorageCounterTypeStartStopCycleCount","features":[24]},{"name":"StorageCounterTypeStartStopCycleCountMax","features":[24]},{"name":"StorageCounterTypeTemperatureCelsius","features":[24]},{"name":"StorageCounterTypeTemperatureCelsiusMax","features":[24]},{"name":"StorageCounterTypeUnknown","features":[24]},{"name":"StorageCounterTypeWearPercentage","features":[24]},{"name":"StorageCounterTypeWearPercentageMax","features":[24]},{"name":"StorageCounterTypeWearPercentageWarning","features":[24]},{"name":"StorageCounterTypeWriteErrorsCorrected","features":[24]},{"name":"StorageCounterTypeWriteErrorsTotal","features":[24]},{"name":"StorageCounterTypeWriteErrorsUncorrected","features":[24]},{"name":"StorageCounterTypeWriteLatency100NSMax","features":[24]},{"name":"StorageCryptoAlgorithmAESECB","features":[24]},{"name":"StorageCryptoAlgorithmBitlockerAESCBC","features":[24]},{"name":"StorageCryptoAlgorithmESSIVAESCBC","features":[24]},{"name":"StorageCryptoAlgorithmMax","features":[24]},{"name":"StorageCryptoAlgorithmUnknown","features":[24]},{"name":"StorageCryptoAlgorithmXTSAES","features":[24]},{"name":"StorageCryptoKeySize128Bits","features":[24]},{"name":"StorageCryptoKeySize192Bits","features":[24]},{"name":"StorageCryptoKeySize256Bits","features":[24]},{"name":"StorageCryptoKeySize512Bits","features":[24]},{"name":"StorageCryptoKeySizeUnknown","features":[24]},{"name":"StorageDeviceAttributesProperty","features":[24]},{"name":"StorageDeviceCopyOffloadProperty","features":[24]},{"name":"StorageDeviceDeviceTelemetryProperty","features":[24]},{"name":"StorageDeviceEnduranceProperty","features":[24]},{"name":"StorageDeviceIdProperty","features":[24]},{"name":"StorageDeviceIoCapabilityProperty","features":[24]},{"name":"StorageDeviceLBProvisioningProperty","features":[24]},{"name":"StorageDeviceLedStateProperty","features":[24]},{"name":"StorageDeviceLocationProperty","features":[24]},{"name":"StorageDeviceManagementStatus","features":[24]},{"name":"StorageDeviceMediumProductType","features":[24]},{"name":"StorageDeviceNumaProperty","features":[24]},{"name":"StorageDevicePhysicalTopologyProperty","features":[24]},{"name":"StorageDevicePowerCapUnitsMilliwatts","features":[24]},{"name":"StorageDevicePowerCapUnitsPercent","features":[24]},{"name":"StorageDevicePowerProperty","features":[24]},{"name":"StorageDeviceProperty","features":[24]},{"name":"StorageDeviceProtocolSpecificProperty","features":[24]},{"name":"StorageDeviceResiliencyProperty","features":[24]},{"name":"StorageDeviceSeekPenaltyProperty","features":[24]},{"name":"StorageDeviceSelfEncryptionProperty","features":[24]},{"name":"StorageDeviceTemperatureProperty","features":[24]},{"name":"StorageDeviceTrimProperty","features":[24]},{"name":"StorageDeviceUniqueIdProperty","features":[24]},{"name":"StorageDeviceUnsafeShutdownCount","features":[24]},{"name":"StorageDeviceWriteAggregationProperty","features":[24]},{"name":"StorageDeviceWriteCacheProperty","features":[24]},{"name":"StorageDeviceZonedDeviceProperty","features":[24]},{"name":"StorageDiagnosticLevelDefault","features":[24]},{"name":"StorageDiagnosticLevelMax","features":[24]},{"name":"StorageDiagnosticTargetTypeHbaFirmware","features":[24]},{"name":"StorageDiagnosticTargetTypeMax","features":[24]},{"name":"StorageDiagnosticTargetTypeMiniport","features":[24]},{"name":"StorageDiagnosticTargetTypePort","features":[24]},{"name":"StorageDiagnosticTargetTypeUndefined","features":[24]},{"name":"StorageEncryptionTypeEDrive","features":[24]},{"name":"StorageEncryptionTypeTcgOpal","features":[24]},{"name":"StorageEncryptionTypeUnknown","features":[24]},{"name":"StorageFruIdProperty","features":[24]},{"name":"StorageIdAssocDevice","features":[24]},{"name":"StorageIdAssocPort","features":[24]},{"name":"StorageIdAssocTarget","features":[24]},{"name":"StorageIdCodeSetAscii","features":[24]},{"name":"StorageIdCodeSetBinary","features":[24]},{"name":"StorageIdCodeSetReserved","features":[24]},{"name":"StorageIdCodeSetUtf8","features":[24]},{"name":"StorageIdNAAFormatIEEEERegisteredExtended","features":[24]},{"name":"StorageIdNAAFormatIEEEExtended","features":[24]},{"name":"StorageIdNAAFormatIEEERegistered","features":[24]},{"name":"StorageIdTypeEUI64","features":[24]},{"name":"StorageIdTypeFCPHName","features":[24]},{"name":"StorageIdTypeLogicalUnitGroup","features":[24]},{"name":"StorageIdTypeMD5LogicalUnitIdentifier","features":[24]},{"name":"StorageIdTypePortRelative","features":[24]},{"name":"StorageIdTypeScsiNameString","features":[24]},{"name":"StorageIdTypeTargetPortGroup","features":[24]},{"name":"StorageIdTypeVendorId","features":[24]},{"name":"StorageIdTypeVendorSpecific","features":[24]},{"name":"StorageMiniportProperty","features":[24]},{"name":"StoragePortCodeSetATAport","features":[24]},{"name":"StoragePortCodeSetReserved","features":[24]},{"name":"StoragePortCodeSetSBP2port","features":[24]},{"name":"StoragePortCodeSetSCSIport","features":[24]},{"name":"StoragePortCodeSetSDport","features":[24]},{"name":"StoragePortCodeSetSpaceport","features":[24]},{"name":"StoragePortCodeSetStorport","features":[24]},{"name":"StoragePortCodeSetUSBport","features":[24]},{"name":"StoragePowerupDeviceAttention","features":[24]},{"name":"StoragePowerupIO","features":[24]},{"name":"StoragePowerupUnknown","features":[24]},{"name":"StorageReserveIdHard","features":[24]},{"name":"StorageReserveIdMax","features":[24]},{"name":"StorageReserveIdNone","features":[24]},{"name":"StorageReserveIdSoft","features":[24]},{"name":"StorageReserveIdUpdateScratch","features":[24]},{"name":"StorageRpmbFrameTypeMax","features":[24]},{"name":"StorageRpmbFrameTypeStandard","features":[24]},{"name":"StorageRpmbFrameTypeUnknown","features":[24]},{"name":"StorageSanitizeMethodBlockErase","features":[24]},{"name":"StorageSanitizeMethodCryptoErase","features":[24]},{"name":"StorageSanitizeMethodDefault","features":[24]},{"name":"StorageTierClassCapacity","features":[24]},{"name":"StorageTierClassMax","features":[24]},{"name":"StorageTierClassPerformance","features":[24]},{"name":"StorageTierClassUnspecified","features":[24]},{"name":"StorageTierMediaTypeDisk","features":[24]},{"name":"StorageTierMediaTypeMax","features":[24]},{"name":"StorageTierMediaTypeScm","features":[24]},{"name":"StorageTierMediaTypeSsd","features":[24]},{"name":"StorageTierMediaTypeUnspecified","features":[24]},{"name":"TAPE_GET_STATISTICS","features":[24]},{"name":"TAPE_RESET_STATISTICS","features":[24]},{"name":"TAPE_RETURN_ENV_INFO","features":[24]},{"name":"TAPE_RETURN_STATISTICS","features":[24]},{"name":"TAPE_STATISTICS","features":[24]},{"name":"TCCollectionApplicationRequested","features":[24]},{"name":"TCCollectionBugCheck","features":[24]},{"name":"TCCollectionDeviceRequested","features":[24]},{"name":"TC_DEVICEDUMP_SUBSECTION_DESC_LENGTH","features":[24]},{"name":"TC_PUBLIC_DATA_TYPE_ATAGP","features":[24]},{"name":"TC_PUBLIC_DATA_TYPE_ATASMART","features":[24]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG","features":[24]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG_MAX","features":[24]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_SMART","features":[24]},{"name":"TELEMETRY_COMMAND_SIZE","features":[24]},{"name":"TXFS_CREATE_MINIVERSION_INFO","features":[24]},{"name":"TXFS_GET_METADATA_INFO_OUT","features":[24]},{"name":"TXFS_GET_TRANSACTED_VERSION","features":[24]},{"name":"TXFS_LIST_TRANSACTIONS","features":[24]},{"name":"TXFS_LIST_TRANSACTIONS_ENTRY","features":[24]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[24]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY","features":[24]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_CREATED","features":[24]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_DELETED","features":[24]},{"name":"TXFS_LOGGING_MODE_FULL","features":[24]},{"name":"TXFS_LOGGING_MODE_SIMPLE","features":[24]},{"name":"TXFS_MODIFY_RM","features":[24]},{"name":"TXFS_QUERY_RM_INFORMATION","features":[24]},{"name":"TXFS_READ_BACKUP_INFORMATION_OUT","features":[24]},{"name":"TXFS_RMF_LAGS","features":[24]},{"name":"TXFS_RM_FLAG_DO_NOT_RESET_RM_AT_NEXT_START","features":[24]},{"name":"TXFS_RM_FLAG_ENFORCE_MINIMUM_SIZE","features":[24]},{"name":"TXFS_RM_FLAG_GROW_LOG","features":[24]},{"name":"TXFS_RM_FLAG_LOGGING_MODE","features":[24]},{"name":"TXFS_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[24]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[24]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[24]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[24]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[24]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[24]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[24]},{"name":"TXFS_RM_FLAG_PREFER_AVAILABILITY","features":[24]},{"name":"TXFS_RM_FLAG_PREFER_CONSISTENCY","features":[24]},{"name":"TXFS_RM_FLAG_PRESERVE_CHANGES","features":[24]},{"name":"TXFS_RM_FLAG_RENAME_RM","features":[24]},{"name":"TXFS_RM_FLAG_RESET_RM_AT_NEXT_START","features":[24]},{"name":"TXFS_RM_FLAG_SHRINK_LOG","features":[24]},{"name":"TXFS_RM_STATE_ACTIVE","features":[24]},{"name":"TXFS_RM_STATE_NOT_STARTED","features":[24]},{"name":"TXFS_RM_STATE_SHUTTING_DOWN","features":[24]},{"name":"TXFS_RM_STATE_STARTING","features":[24]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_REDO_LSN","features":[24]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_VIRTUAL_CLOCK","features":[24]},{"name":"TXFS_ROLLFORWARD_REDO_INFORMATION","features":[24]},{"name":"TXFS_SAVEPOINT_CLEAR","features":[24]},{"name":"TXFS_SAVEPOINT_CLEAR_ALL","features":[24]},{"name":"TXFS_SAVEPOINT_INFORMATION","features":[3,24]},{"name":"TXFS_SAVEPOINT_ROLLBACK","features":[24]},{"name":"TXFS_SAVEPOINT_SET","features":[24]},{"name":"TXFS_START_RM_FLAG_LOGGING_MODE","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_SIZE","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[24]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[24]},{"name":"TXFS_START_RM_FLAG_PREFER_AVAILABILITY","features":[24]},{"name":"TXFS_START_RM_FLAG_PREFER_CONSISTENCY","features":[24]},{"name":"TXFS_START_RM_FLAG_PRESERVE_CHANGES","features":[24]},{"name":"TXFS_START_RM_FLAG_RECOVER_BEST_EFFORT","features":[24]},{"name":"TXFS_START_RM_INFORMATION","features":[24]},{"name":"TXFS_TRANSACTED_VERSION_NONTRANSACTED","features":[24]},{"name":"TXFS_TRANSACTED_VERSION_UNCOMMITTED","features":[24]},{"name":"TXFS_TRANSACTION_ACTIVE_INFO","features":[3,24]},{"name":"TXFS_TRANSACTION_STATE_ACTIVE","features":[24]},{"name":"TXFS_TRANSACTION_STATE_NONE","features":[24]},{"name":"TXFS_TRANSACTION_STATE_NOTACTIVE","features":[24]},{"name":"TXFS_TRANSACTION_STATE_PREPARED","features":[24]},{"name":"TXFS_WRITE_BACKUP_INFORMATION","features":[24]},{"name":"Travan","features":[24]},{"name":"UNDEFINE_ALTERNATE","features":[24]},{"name":"UNDEFINE_PRIMARY","features":[24]},{"name":"UNLOCK_ELEMENT","features":[24]},{"name":"UNRECOVERED_READS_VALID","features":[24]},{"name":"UNRECOVERED_WRITES_VALID","features":[24]},{"name":"USN_DELETE_FLAGS","features":[24]},{"name":"USN_DELETE_FLAG_DELETE","features":[24]},{"name":"USN_DELETE_FLAG_NOTIFY","features":[24]},{"name":"USN_DELETE_VALID_FLAGS","features":[24]},{"name":"USN_JOURNAL_DATA_V0","features":[24]},{"name":"USN_JOURNAL_DATA_V1","features":[24]},{"name":"USN_JOURNAL_DATA_V2","features":[24]},{"name":"USN_PAGE_SIZE","features":[24]},{"name":"USN_RANGE_TRACK_OUTPUT","features":[24]},{"name":"USN_REASON_BASIC_INFO_CHANGE","features":[24]},{"name":"USN_REASON_CLOSE","features":[24]},{"name":"USN_REASON_COMPRESSION_CHANGE","features":[24]},{"name":"USN_REASON_DATA_EXTEND","features":[24]},{"name":"USN_REASON_DATA_OVERWRITE","features":[24]},{"name":"USN_REASON_DATA_TRUNCATION","features":[24]},{"name":"USN_REASON_DESIRED_STORAGE_CLASS_CHANGE","features":[24]},{"name":"USN_REASON_EA_CHANGE","features":[24]},{"name":"USN_REASON_ENCRYPTION_CHANGE","features":[24]},{"name":"USN_REASON_FILE_CREATE","features":[24]},{"name":"USN_REASON_FILE_DELETE","features":[24]},{"name":"USN_REASON_HARD_LINK_CHANGE","features":[24]},{"name":"USN_REASON_INDEXABLE_CHANGE","features":[24]},{"name":"USN_REASON_INTEGRITY_CHANGE","features":[24]},{"name":"USN_REASON_NAMED_DATA_EXTEND","features":[24]},{"name":"USN_REASON_NAMED_DATA_OVERWRITE","features":[24]},{"name":"USN_REASON_NAMED_DATA_TRUNCATION","features":[24]},{"name":"USN_REASON_OBJECT_ID_CHANGE","features":[24]},{"name":"USN_REASON_RENAME_NEW_NAME","features":[24]},{"name":"USN_REASON_RENAME_OLD_NAME","features":[24]},{"name":"USN_REASON_REPARSE_POINT_CHANGE","features":[24]},{"name":"USN_REASON_SECURITY_CHANGE","features":[24]},{"name":"USN_REASON_STREAM_CHANGE","features":[24]},{"name":"USN_REASON_TRANSACTED_CHANGE","features":[24]},{"name":"USN_RECORD_COMMON_HEADER","features":[24]},{"name":"USN_RECORD_EXTENT","features":[24]},{"name":"USN_RECORD_UNION","features":[23,24]},{"name":"USN_RECORD_V2","features":[24]},{"name":"USN_RECORD_V3","features":[23,24]},{"name":"USN_RECORD_V4","features":[23,24]},{"name":"USN_SOURCE_AUXILIARY_DATA","features":[24]},{"name":"USN_SOURCE_CLIENT_REPLICATION_MANAGEMENT","features":[24]},{"name":"USN_SOURCE_DATA_MANAGEMENT","features":[24]},{"name":"USN_SOURCE_INFO_ID","features":[24]},{"name":"USN_SOURCE_REPLICATION_MANAGEMENT","features":[24]},{"name":"USN_TRACK_MODIFIED_RANGES","features":[24]},{"name":"UfsDataTypeMax","features":[24]},{"name":"UfsDataTypeQueryAttribute","features":[24]},{"name":"UfsDataTypeQueryDescriptor","features":[24]},{"name":"UfsDataTypeQueryDmeAttribute","features":[24]},{"name":"UfsDataTypeQueryDmePeerAttribute","features":[24]},{"name":"UfsDataTypeQueryFlag","features":[24]},{"name":"UfsDataTypeUnknown","features":[24]},{"name":"Unknown","features":[24]},{"name":"VALID_NTFT","features":[24]},{"name":"VENDOR_ID_LENGTH","features":[24]},{"name":"VERIFY_INFORMATION","features":[24]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT","features":[24]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT_EX","features":[24]},{"name":"VIRTUALIZATION_INSTANCE_INFO_OUTPUT","features":[24]},{"name":"VIRTUAL_STORAGE_BEHAVIOR_CODE","features":[24]},{"name":"VIRTUAL_STORAGE_SET_BEHAVIOR_INPUT","features":[24]},{"name":"VOLUME_BITMAP_BUFFER","features":[24]},{"name":"VOLUME_DISK_EXTENTS","features":[24]},{"name":"VOLUME_GET_GPT_ATTRIBUTES_INFORMATION","features":[24]},{"name":"VOLUME_IS_DIRTY","features":[24]},{"name":"VOLUME_SESSION_OPEN","features":[24]},{"name":"VOLUME_UPGRADE_SCHEDULED","features":[24]},{"name":"VXATape","features":[24]},{"name":"VXATape_1","features":[24]},{"name":"VXATape_2","features":[24]},{"name":"VirtualStorageBehaviorCacheWriteBack","features":[24]},{"name":"VirtualStorageBehaviorCacheWriteThrough","features":[24]},{"name":"VirtualStorageBehaviorRestartIoProcessing","features":[24]},{"name":"VirtualStorageBehaviorStopIoProcessing","features":[24]},{"name":"VirtualStorageBehaviorUndefined","features":[24]},{"name":"WIM_PROVIDER_ADD_OVERLAY_INPUT","features":[24]},{"name":"WIM_PROVIDER_CURRENT_VERSION","features":[24]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_NOT_ACTIVE","features":[24]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_SUSPENDED","features":[24]},{"name":"WIM_PROVIDER_EXTERNAL_INFO","features":[24]},{"name":"WIM_PROVIDER_OVERLAY_ENTRY","features":[24]},{"name":"WIM_PROVIDER_REMOVE_OVERLAY_INPUT","features":[24]},{"name":"WIM_PROVIDER_SUSPEND_OVERLAY_INPUT","features":[24]},{"name":"WIM_PROVIDER_UPDATE_OVERLAY_INPUT","features":[24]},{"name":"WMI_DISK_GEOMETRY_GUID","features":[24]},{"name":"WOF_CURRENT_VERSION","features":[24]},{"name":"WOF_EXTERNAL_FILE_ID","features":[23,24]},{"name":"WOF_EXTERNAL_INFO","features":[24]},{"name":"WOF_PROVIDER_CLOUD","features":[24]},{"name":"WOF_VERSION_INFO","features":[24]},{"name":"WRITE_CACHE_CHANGE","features":[24]},{"name":"WRITE_CACHE_ENABLE","features":[24]},{"name":"WRITE_CACHE_TYPE","features":[24]},{"name":"WRITE_COMPRESSION_INFO_VALID","features":[24]},{"name":"WRITE_THROUGH","features":[24]},{"name":"WRITE_USN_REASON_INPUT","features":[24]},{"name":"WriteCacheChangeUnknown","features":[24]},{"name":"WriteCacheChangeable","features":[24]},{"name":"WriteCacheDisabled","features":[24]},{"name":"WriteCacheEnableUnknown","features":[24]},{"name":"WriteCacheEnabled","features":[24]},{"name":"WriteCacheNotChangeable","features":[24]},{"name":"WriteCacheTypeNone","features":[24]},{"name":"WriteCacheTypeUnknown","features":[24]},{"name":"WriteCacheTypeWriteBack","features":[24]},{"name":"WriteCacheTypeWriteThrough","features":[24]},{"name":"WriteThroughNotSupported","features":[24]},{"name":"WriteThroughSupported","features":[24]},{"name":"WriteThroughUnknown","features":[24]},{"name":"ZoneConditionClosed","features":[24]},{"name":"ZoneConditionConventional","features":[24]},{"name":"ZoneConditionEmpty","features":[24]},{"name":"ZoneConditionExplicitlyOpened","features":[24]},{"name":"ZoneConditionFull","features":[24]},{"name":"ZoneConditionImplicitlyOpened","features":[24]},{"name":"ZoneConditionOffline","features":[24]},{"name":"ZoneConditionReadOnly","features":[24]},{"name":"ZoneTypeConventional","features":[24]},{"name":"ZoneTypeMax","features":[24]},{"name":"ZoneTypeSequentialWritePreferred","features":[24]},{"name":"ZoneTypeSequentialWriteRequired","features":[24]},{"name":"ZoneTypeUnknown","features":[24]},{"name":"ZonedDeviceTypeDeviceManaged","features":[24]},{"name":"ZonedDeviceTypeHostAware","features":[24]},{"name":"ZonedDeviceTypeHostManaged","features":[24]},{"name":"ZonedDeviceTypeUnknown","features":[24]},{"name":"ZonesAttributeTypeAndLengthMayDifferent","features":[24]},{"name":"ZonesAttributeTypeMayDifferentLengthSame","features":[24]},{"name":"ZonesAttributeTypeSameLastZoneLengthDifferent","features":[24]},{"name":"ZonesAttributeTypeSameLengthSame","features":[24]}],"576":[{"name":"AssignProcessToJobObject","features":[3,183]},{"name":"CreateJobObjectA","features":[3,6,183]},{"name":"CreateJobObjectW","features":[3,6,183]},{"name":"CreateJobSet","features":[3,183]},{"name":"FreeMemoryJobObject","features":[183]},{"name":"IsProcessInJob","features":[3,183]},{"name":"JOBOBJECTINFOCLASS","features":[183]},{"name":"JOBOBJECT_ASSOCIATE_COMPLETION_PORT","features":[3,183]},{"name":"JOBOBJECT_BASIC_ACCOUNTING_INFORMATION","features":[183]},{"name":"JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","features":[183,39]},{"name":"JOBOBJECT_BASIC_LIMIT_INFORMATION","features":[183]},{"name":"JOBOBJECT_BASIC_PROCESS_ID_LIST","features":[183]},{"name":"JOBOBJECT_BASIC_UI_RESTRICTIONS","features":[183]},{"name":"JOBOBJECT_CPU_RATE_CONTROL_INFORMATION","features":[183]},{"name":"JOBOBJECT_END_OF_JOB_TIME_INFORMATION","features":[183]},{"name":"JOBOBJECT_EXTENDED_LIMIT_INFORMATION","features":[183,39]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_DISABLE","features":[183]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_ENABLE","features":[183]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_FLAGS","features":[183]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_VALID_FLAGS","features":[183]},{"name":"JOBOBJECT_IO_ATTRIBUTION_INFORMATION","features":[183]},{"name":"JOBOBJECT_IO_ATTRIBUTION_STATS","features":[183]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION","features":[183]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V1","features":[183]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2","features":[183]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3","features":[183]},{"name":"JOBOBJECT_JOBSET_INFORMATION","features":[183]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION","features":[183]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2","features":[183]},{"name":"JOBOBJECT_NET_RATE_CONTROL_INFORMATION","features":[183]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION","features":[183]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2","features":[183]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE","features":[183]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL","features":[183]},{"name":"JOBOBJECT_SECURITY_LIMIT_INFORMATION","features":[3,6,183]},{"name":"JOB_OBJECT_BASIC_LIMIT_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL","features":[183]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_ENABLE","features":[183]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_HARD_CAP","features":[183]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_MIN_MAX_RATE","features":[183]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_NOTIFY","features":[183]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED","features":[183]},{"name":"JOB_OBJECT_EXTENDED_LIMIT_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_ENABLE","features":[183]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FLAGS","features":[183]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ALL","features":[183]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ON_SOFT_CAP","features":[183]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_STANDALONE_VOLUME","features":[183]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_LIMIT","features":[183]},{"name":"JOB_OBJECT_LIMIT_ACTIVE_PROCESS","features":[183]},{"name":"JOB_OBJECT_LIMIT_AFFINITY","features":[183]},{"name":"JOB_OBJECT_LIMIT_BREAKAWAY_OK","features":[183]},{"name":"JOB_OBJECT_LIMIT_CPU_RATE_CONTROL","features":[183]},{"name":"JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION","features":[183]},{"name":"JOB_OBJECT_LIMIT_IO_RATE_CONTROL","features":[183]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY","features":[183]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_HIGH","features":[183]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_LOW","features":[183]},{"name":"JOB_OBJECT_LIMIT_JOB_READ_BYTES","features":[183]},{"name":"JOB_OBJECT_LIMIT_JOB_TIME","features":[183]},{"name":"JOB_OBJECT_LIMIT_JOB_WRITE_BYTES","features":[183]},{"name":"JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE","features":[183]},{"name":"JOB_OBJECT_LIMIT_NET_RATE_CONTROL","features":[183]},{"name":"JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME","features":[183]},{"name":"JOB_OBJECT_LIMIT_PRIORITY_CLASS","features":[183]},{"name":"JOB_OBJECT_LIMIT_PROCESS_MEMORY","features":[183]},{"name":"JOB_OBJECT_LIMIT_PROCESS_TIME","features":[183]},{"name":"JOB_OBJECT_LIMIT_RATE_CONTROL","features":[183]},{"name":"JOB_OBJECT_LIMIT_SCHEDULING_CLASS","features":[183]},{"name":"JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK","features":[183]},{"name":"JOB_OBJECT_LIMIT_SUBSET_AFFINITY","features":[183]},{"name":"JOB_OBJECT_LIMIT_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_LIMIT_WORKINGSET","features":[183]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_DSCP_TAG","features":[183]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_ENABLE","features":[183]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_FLAGS","features":[183]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_BANDWIDTH","features":[183]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_NOTIFICATION_LIMIT_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_POST_AT_END_OF_JOB","features":[183]},{"name":"JOB_OBJECT_SECURITY","features":[183]},{"name":"JOB_OBJECT_SECURITY_FILTER_TOKENS","features":[183]},{"name":"JOB_OBJECT_SECURITY_NO_ADMIN","features":[183]},{"name":"JOB_OBJECT_SECURITY_ONLY_TOKEN","features":[183]},{"name":"JOB_OBJECT_SECURITY_RESTRICTED_TOKEN","features":[183]},{"name":"JOB_OBJECT_SECURITY_VALID_FLAGS","features":[183]},{"name":"JOB_OBJECT_TERMINATE_AT_END_ACTION","features":[183]},{"name":"JOB_OBJECT_TERMINATE_AT_END_OF_JOB","features":[183]},{"name":"JOB_OBJECT_UILIMIT","features":[183]},{"name":"JOB_OBJECT_UILIMIT_DESKTOP","features":[183]},{"name":"JOB_OBJECT_UILIMIT_DISPLAYSETTINGS","features":[183]},{"name":"JOB_OBJECT_UILIMIT_EXITWINDOWS","features":[183]},{"name":"JOB_OBJECT_UILIMIT_GLOBALATOMS","features":[183]},{"name":"JOB_OBJECT_UILIMIT_HANDLES","features":[183]},{"name":"JOB_OBJECT_UILIMIT_NONE","features":[183]},{"name":"JOB_OBJECT_UILIMIT_READCLIPBOARD","features":[183]},{"name":"JOB_OBJECT_UILIMIT_SYSTEMPARAMETERS","features":[183]},{"name":"JOB_OBJECT_UILIMIT_WRITECLIPBOARD","features":[183]},{"name":"JOB_SET_ARRAY","features":[3,183]},{"name":"JobObjectAssociateCompletionPortInformation","features":[183]},{"name":"JobObjectBasicAccountingInformation","features":[183]},{"name":"JobObjectBasicAndIoAccountingInformation","features":[183]},{"name":"JobObjectBasicLimitInformation","features":[183]},{"name":"JobObjectBasicProcessIdList","features":[183]},{"name":"JobObjectBasicUIRestrictions","features":[183]},{"name":"JobObjectCompletionCounter","features":[183]},{"name":"JobObjectCompletionFilter","features":[183]},{"name":"JobObjectCpuRateControlInformation","features":[183]},{"name":"JobObjectCreateSilo","features":[183]},{"name":"JobObjectEndOfJobTimeInformation","features":[183]},{"name":"JobObjectExtendedLimitInformation","features":[183]},{"name":"JobObjectGroupInformation","features":[183]},{"name":"JobObjectGroupInformationEx","features":[183]},{"name":"JobObjectJobSetInformation","features":[183]},{"name":"JobObjectLimitViolationInformation","features":[183]},{"name":"JobObjectLimitViolationInformation2","features":[183]},{"name":"JobObjectNetRateControlInformation","features":[183]},{"name":"JobObjectNotificationLimitInformation","features":[183]},{"name":"JobObjectNotificationLimitInformation2","features":[183]},{"name":"JobObjectReserved10Information","features":[183]},{"name":"JobObjectReserved11Information","features":[183]},{"name":"JobObjectReserved12Information","features":[183]},{"name":"JobObjectReserved13Information","features":[183]},{"name":"JobObjectReserved14Information","features":[183]},{"name":"JobObjectReserved15Information","features":[183]},{"name":"JobObjectReserved16Information","features":[183]},{"name":"JobObjectReserved17Information","features":[183]},{"name":"JobObjectReserved18Information","features":[183]},{"name":"JobObjectReserved19Information","features":[183]},{"name":"JobObjectReserved1Information","features":[183]},{"name":"JobObjectReserved20Information","features":[183]},{"name":"JobObjectReserved21Information","features":[183]},{"name":"JobObjectReserved22Information","features":[183]},{"name":"JobObjectReserved23Information","features":[183]},{"name":"JobObjectReserved24Information","features":[183]},{"name":"JobObjectReserved25Information","features":[183]},{"name":"JobObjectReserved26Information","features":[183]},{"name":"JobObjectReserved27Information","features":[183]},{"name":"JobObjectReserved2Information","features":[183]},{"name":"JobObjectReserved3Information","features":[183]},{"name":"JobObjectReserved4Information","features":[183]},{"name":"JobObjectReserved5Information","features":[183]},{"name":"JobObjectReserved6Information","features":[183]},{"name":"JobObjectReserved7Information","features":[183]},{"name":"JobObjectReserved8Information","features":[183]},{"name":"JobObjectReserved9Information","features":[183]},{"name":"JobObjectSecurityLimitInformation","features":[183]},{"name":"JobObjectSiloBasicInformation","features":[183]},{"name":"MaxJobObjectInfoClass","features":[183]},{"name":"OpenJobObjectA","features":[3,183]},{"name":"OpenJobObjectW","features":[3,183]},{"name":"QueryInformationJobObject","features":[3,183]},{"name":"QueryIoRateControlInformationJobObject","features":[3,183]},{"name":"SetInformationJobObject","features":[3,183]},{"name":"SetIoRateControlInformationJobObject","features":[3,183]},{"name":"TerminateJobObject","features":[3,183]},{"name":"ToleranceHigh","features":[183]},{"name":"ToleranceIntervalLong","features":[183]},{"name":"ToleranceIntervalMedium","features":[183]},{"name":"ToleranceIntervalShort","features":[183]},{"name":"ToleranceLow","features":[183]},{"name":"ToleranceMedium","features":[183]},{"name":"UserHandleGrantAccess","features":[3,183]}],"577":[{"name":"JS_SOURCE_CONTEXT_NONE","features":[184]},{"name":"JsAddRef","features":[184]},{"name":"JsArray","features":[184]},{"name":"JsBackgroundWorkItemCallback","features":[184]},{"name":"JsBeforeCollectCallback","features":[184]},{"name":"JsBoolToBoolean","features":[184]},{"name":"JsBoolean","features":[184]},{"name":"JsBooleanToBool","features":[184]},{"name":"JsCallFunction","features":[184]},{"name":"JsCollectGarbage","features":[184]},{"name":"JsConstructObject","features":[184]},{"name":"JsConvertValueToBoolean","features":[184]},{"name":"JsConvertValueToNumber","features":[184]},{"name":"JsConvertValueToObject","features":[184]},{"name":"JsConvertValueToString","features":[184]},{"name":"JsCreateArray","features":[184]},{"name":"JsCreateContext","features":[184]},{"name":"JsCreateContext","features":[184]},{"name":"JsCreateError","features":[184]},{"name":"JsCreateExternalObject","features":[184]},{"name":"JsCreateFunction","features":[184]},{"name":"JsCreateObject","features":[184]},{"name":"JsCreateRangeError","features":[184]},{"name":"JsCreateReferenceError","features":[184]},{"name":"JsCreateRuntime","features":[184]},{"name":"JsCreateSyntaxError","features":[184]},{"name":"JsCreateTypeError","features":[184]},{"name":"JsCreateURIError","features":[184]},{"name":"JsDefineProperty","features":[184]},{"name":"JsDeleteIndexedProperty","features":[184]},{"name":"JsDeleteProperty","features":[184]},{"name":"JsDisableRuntimeExecution","features":[184]},{"name":"JsDisposeRuntime","features":[184]},{"name":"JsDoubleToNumber","features":[184]},{"name":"JsEnableRuntimeExecution","features":[184]},{"name":"JsEnumerateHeap","features":[184]},{"name":"JsEquals","features":[184]},{"name":"JsError","features":[184]},{"name":"JsErrorAlreadyDebuggingContext","features":[184]},{"name":"JsErrorAlreadyProfilingContext","features":[184]},{"name":"JsErrorArgumentNotObject","features":[184]},{"name":"JsErrorBadSerializedScript","features":[184]},{"name":"JsErrorCannotDisableExecution","features":[184]},{"name":"JsErrorCannotSerializeDebugScript","features":[184]},{"name":"JsErrorCategoryEngine","features":[184]},{"name":"JsErrorCategoryFatal","features":[184]},{"name":"JsErrorCategoryScript","features":[184]},{"name":"JsErrorCategoryUsage","features":[184]},{"name":"JsErrorCode","features":[184]},{"name":"JsErrorFatal","features":[184]},{"name":"JsErrorHeapEnumInProgress","features":[184]},{"name":"JsErrorIdleNotEnabled","features":[184]},{"name":"JsErrorInDisabledState","features":[184]},{"name":"JsErrorInExceptionState","features":[184]},{"name":"JsErrorInProfileCallback","features":[184]},{"name":"JsErrorInThreadServiceCallback","features":[184]},{"name":"JsErrorInvalidArgument","features":[184]},{"name":"JsErrorNoCurrentContext","features":[184]},{"name":"JsErrorNotImplemented","features":[184]},{"name":"JsErrorNullArgument","features":[184]},{"name":"JsErrorOutOfMemory","features":[184]},{"name":"JsErrorRuntimeInUse","features":[184]},{"name":"JsErrorScriptCompile","features":[184]},{"name":"JsErrorScriptEvalDisabled","features":[184]},{"name":"JsErrorScriptException","features":[184]},{"name":"JsErrorScriptTerminated","features":[184]},{"name":"JsErrorWrongThread","features":[184]},{"name":"JsFinalizeCallback","features":[184]},{"name":"JsFunction","features":[184]},{"name":"JsGetAndClearException","features":[184]},{"name":"JsGetCurrentContext","features":[184]},{"name":"JsGetExtensionAllowed","features":[184]},{"name":"JsGetExternalData","features":[184]},{"name":"JsGetFalseValue","features":[184]},{"name":"JsGetGlobalObject","features":[184]},{"name":"JsGetIndexedProperty","features":[184]},{"name":"JsGetNullValue","features":[184]},{"name":"JsGetOwnPropertyDescriptor","features":[184]},{"name":"JsGetOwnPropertyNames","features":[184]},{"name":"JsGetProperty","features":[184]},{"name":"JsGetPropertyIdFromName","features":[184]},{"name":"JsGetPropertyNameFromId","features":[184]},{"name":"JsGetPrototype","features":[184]},{"name":"JsGetRuntime","features":[184]},{"name":"JsGetRuntimeMemoryLimit","features":[184]},{"name":"JsGetRuntimeMemoryUsage","features":[184]},{"name":"JsGetStringLength","features":[184]},{"name":"JsGetTrueValue","features":[184]},{"name":"JsGetUndefinedValue","features":[184]},{"name":"JsGetValueType","features":[184]},{"name":"JsHasException","features":[184]},{"name":"JsHasExternalData","features":[184]},{"name":"JsHasIndexedProperty","features":[184]},{"name":"JsHasProperty","features":[184]},{"name":"JsIdle","features":[184]},{"name":"JsIntToNumber","features":[184]},{"name":"JsIsEnumeratingHeap","features":[184]},{"name":"JsIsRuntimeExecutionDisabled","features":[184]},{"name":"JsMemoryAllocate","features":[184]},{"name":"JsMemoryAllocationCallback","features":[184]},{"name":"JsMemoryEventType","features":[184]},{"name":"JsMemoryFailure","features":[184]},{"name":"JsMemoryFree","features":[184]},{"name":"JsNativeFunction","features":[184]},{"name":"JsNoError","features":[184]},{"name":"JsNull","features":[184]},{"name":"JsNumber","features":[184]},{"name":"JsNumberToDouble","features":[184]},{"name":"JsObject","features":[184]},{"name":"JsParseScript","features":[184]},{"name":"JsParseSerializedScript","features":[184]},{"name":"JsPointerToString","features":[184]},{"name":"JsPreventExtension","features":[184]},{"name":"JsRelease","features":[184]},{"name":"JsRunScript","features":[184]},{"name":"JsRunSerializedScript","features":[184]},{"name":"JsRuntimeAttributeAllowScriptInterrupt","features":[184]},{"name":"JsRuntimeAttributeDisableBackgroundWork","features":[184]},{"name":"JsRuntimeAttributeDisableEval","features":[184]},{"name":"JsRuntimeAttributeDisableNativeCodeGeneration","features":[184]},{"name":"JsRuntimeAttributeEnableIdleProcessing","features":[184]},{"name":"JsRuntimeAttributeNone","features":[184]},{"name":"JsRuntimeAttributes","features":[184]},{"name":"JsRuntimeVersion","features":[184]},{"name":"JsRuntimeVersion10","features":[184]},{"name":"JsRuntimeVersion11","features":[184]},{"name":"JsRuntimeVersionEdge","features":[184]},{"name":"JsSerializeScript","features":[184]},{"name":"JsSetCurrentContext","features":[184]},{"name":"JsSetException","features":[184]},{"name":"JsSetExternalData","features":[184]},{"name":"JsSetIndexedProperty","features":[184]},{"name":"JsSetProperty","features":[184]},{"name":"JsSetPrototype","features":[184]},{"name":"JsSetRuntimeBeforeCollectCallback","features":[184]},{"name":"JsSetRuntimeMemoryAllocationCallback","features":[184]},{"name":"JsSetRuntimeMemoryLimit","features":[184]},{"name":"JsStartDebugging","features":[184]},{"name":"JsStartDebugging","features":[184]},{"name":"JsStartProfiling","features":[185,184]},{"name":"JsStopProfiling","features":[184]},{"name":"JsStrictEquals","features":[184]},{"name":"JsString","features":[184]},{"name":"JsStringToPointer","features":[184]},{"name":"JsThreadServiceCallback","features":[184]},{"name":"JsUndefined","features":[184]},{"name":"JsValueToVariant","features":[3,43,184,44]},{"name":"JsValueType","features":[184]},{"name":"JsVariantToValue","features":[3,43,184,44]}],"578":[{"name":"BackOffice","features":[9]},{"name":"Blade","features":[9]},{"name":"COMPARTMENT_ID","features":[9]},{"name":"CSTRING","features":[9]},{"name":"CommunicationServer","features":[9]},{"name":"ComputeServer","features":[9]},{"name":"DEFAULT_COMPARTMENT_ID","features":[9]},{"name":"DataCenter","features":[9]},{"name":"EVENT_TYPE","features":[9]},{"name":"EXCEPTION_DISPOSITION","features":[9]},{"name":"EXCEPTION_REGISTRATION_RECORD","features":[3,33,9]},{"name":"EXCEPTION_ROUTINE","features":[3,33,9]},{"name":"EmbeddedNT","features":[9]},{"name":"EmbeddedRestricted","features":[9]},{"name":"Enterprise","features":[9]},{"name":"ExceptionCollidedUnwind","features":[9]},{"name":"ExceptionContinueExecution","features":[9]},{"name":"ExceptionContinueSearch","features":[9]},{"name":"ExceptionNestedException","features":[9]},{"name":"FLOATING_SAVE_AREA","features":[9]},{"name":"FLOATING_SAVE_AREA","features":[9]},{"name":"LIST_ENTRY","features":[9]},{"name":"LIST_ENTRY32","features":[9]},{"name":"LIST_ENTRY64","features":[9]},{"name":"MAXUCHAR","features":[9]},{"name":"MAXULONG","features":[9]},{"name":"MAXUSHORT","features":[9]},{"name":"MaxSuiteType","features":[9]},{"name":"MultiUserTS","features":[9]},{"name":"NT_PRODUCT_TYPE","features":[9]},{"name":"NT_TIB","features":[3,33,9]},{"name":"NULL64","features":[9]},{"name":"NotificationEvent","features":[9]},{"name":"NotificationTimer","features":[9]},{"name":"NtProductLanManNt","features":[9]},{"name":"NtProductServer","features":[9]},{"name":"NtProductWinNt","features":[9]},{"name":"OBJECTID","features":[9]},{"name":"OBJ_CASE_INSENSITIVE","features":[9]},{"name":"OBJ_DONT_REPARSE","features":[9]},{"name":"OBJ_EXCLUSIVE","features":[9]},{"name":"OBJ_FORCE_ACCESS_CHECK","features":[9]},{"name":"OBJ_HANDLE_TAGBITS","features":[9]},{"name":"OBJ_IGNORE_IMPERSONATED_DEVICEMAP","features":[9]},{"name":"OBJ_INHERIT","features":[9]},{"name":"OBJ_KERNEL_HANDLE","features":[9]},{"name":"OBJ_OPENIF","features":[9]},{"name":"OBJ_OPENLINK","features":[9]},{"name":"OBJ_PERMANENT","features":[9]},{"name":"OBJ_VALID_ATTRIBUTES","features":[9]},{"name":"PROCESSOR_NUMBER","features":[9]},{"name":"Personal","features":[9]},{"name":"PhoneNT","features":[9]},{"name":"QUAD","features":[9]},{"name":"RTL_BALANCED_NODE","features":[9]},{"name":"RTL_BALANCED_NODE_RESERVED_PARENT_MASK","features":[9]},{"name":"RtlFirstEntrySList","features":[9]},{"name":"RtlInitializeSListHead","features":[9]},{"name":"RtlInterlockedFlushSList","features":[9]},{"name":"RtlInterlockedPopEntrySList","features":[9]},{"name":"RtlInterlockedPushEntrySList","features":[9]},{"name":"RtlInterlockedPushListSListEx","features":[9]},{"name":"RtlQueryDepthSList","features":[9]},{"name":"SINGLE_LIST_ENTRY","features":[9]},{"name":"SINGLE_LIST_ENTRY32","features":[9]},{"name":"SLIST_ENTRY","features":[9]},{"name":"SLIST_HEADER","features":[9]},{"name":"SLIST_HEADER","features":[9]},{"name":"SLIST_HEADER","features":[9]},{"name":"STRING","features":[9]},{"name":"STRING32","features":[9]},{"name":"STRING64","features":[9]},{"name":"SUITE_TYPE","features":[9]},{"name":"SecurityAppliance","features":[9]},{"name":"SingleUserTS","features":[9]},{"name":"SmallBusiness","features":[9]},{"name":"SmallBusinessRestricted","features":[9]},{"name":"StorageServer","features":[9]},{"name":"SynchronizationEvent","features":[9]},{"name":"SynchronizationTimer","features":[9]},{"name":"TIMER_TYPE","features":[9]},{"name":"TerminalServer","features":[9]},{"name":"UNSPECIFIED_COMPARTMENT_ID","features":[9]},{"name":"WAIT_TYPE","features":[9]},{"name":"WHServer","features":[9]},{"name":"WNF_STATE_NAME","features":[9]},{"name":"WaitAll","features":[9]},{"name":"WaitAny","features":[9]},{"name":"WaitDequeue","features":[9]},{"name":"WaitDpc","features":[9]},{"name":"WaitNotification","features":[9]}],"579":[{"name":"AddDllDirectory","features":[186]},{"name":"BeginUpdateResourceA","features":[3,186]},{"name":"BeginUpdateResourceW","features":[3,186]},{"name":"CURRENT_IMPORT_REDIRECTION_VERSION","features":[186]},{"name":"DONT_RESOLVE_DLL_REFERENCES","features":[186]},{"name":"DisableThreadLibraryCalls","features":[3,186]},{"name":"ENUMRESLANGPROCA","features":[3,186]},{"name":"ENUMRESLANGPROCW","features":[3,186]},{"name":"ENUMRESNAMEPROCA","features":[3,186]},{"name":"ENUMRESNAMEPROCW","features":[3,186]},{"name":"ENUMRESTYPEPROCA","features":[3,186]},{"name":"ENUMRESTYPEPROCW","features":[3,186]},{"name":"ENUMUILANG","features":[186]},{"name":"EndUpdateResourceA","features":[3,186]},{"name":"EndUpdateResourceW","features":[3,186]},{"name":"EnumResourceLanguagesA","features":[3,186]},{"name":"EnumResourceLanguagesExA","features":[3,186]},{"name":"EnumResourceLanguagesExW","features":[3,186]},{"name":"EnumResourceLanguagesW","features":[3,186]},{"name":"EnumResourceNamesA","features":[3,186]},{"name":"EnumResourceNamesExA","features":[3,186]},{"name":"EnumResourceNamesExW","features":[3,186]},{"name":"EnumResourceNamesW","features":[3,186]},{"name":"EnumResourceTypesA","features":[3,186]},{"name":"EnumResourceTypesExA","features":[3,186]},{"name":"EnumResourceTypesExW","features":[3,186]},{"name":"EnumResourceTypesW","features":[3,186]},{"name":"FIND_RESOURCE_DIRECTORY_LANGUAGES","features":[186]},{"name":"FIND_RESOURCE_DIRECTORY_NAMES","features":[186]},{"name":"FIND_RESOURCE_DIRECTORY_TYPES","features":[186]},{"name":"FindResourceA","features":[3,186]},{"name":"FindResourceExA","features":[3,186]},{"name":"FindResourceExW","features":[3,186]},{"name":"FindResourceW","features":[3,186]},{"name":"FreeLibraryAndExitThread","features":[3,186]},{"name":"FreeResource","features":[3,186]},{"name":"GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS","features":[186]},{"name":"GET_MODULE_HANDLE_EX_FLAG_PIN","features":[186]},{"name":"GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT","features":[186]},{"name":"GetDllDirectoryA","features":[186]},{"name":"GetDllDirectoryW","features":[186]},{"name":"GetModuleFileNameA","features":[3,186]},{"name":"GetModuleFileNameW","features":[3,186]},{"name":"GetModuleHandleA","features":[3,186]},{"name":"GetModuleHandleExA","features":[3,186]},{"name":"GetModuleHandleExW","features":[3,186]},{"name":"GetModuleHandleW","features":[3,186]},{"name":"GetProcAddress","features":[3,186]},{"name":"LOAD_IGNORE_CODE_AUTHZ_LEVEL","features":[186]},{"name":"LOAD_LIBRARY_AS_DATAFILE","features":[186]},{"name":"LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE","features":[186]},{"name":"LOAD_LIBRARY_AS_IMAGE_RESOURCE","features":[186]},{"name":"LOAD_LIBRARY_FLAGS","features":[186]},{"name":"LOAD_LIBRARY_OS_INTEGRITY_CONTINUITY","features":[186]},{"name":"LOAD_LIBRARY_REQUIRE_SIGNED_TARGET","features":[186]},{"name":"LOAD_LIBRARY_SAFE_CURRENT_DIRS","features":[186]},{"name":"LOAD_LIBRARY_SEARCH_APPLICATION_DIR","features":[186]},{"name":"LOAD_LIBRARY_SEARCH_DEFAULT_DIRS","features":[186]},{"name":"LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR","features":[186]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32","features":[186]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32_NO_FORWARDER","features":[186]},{"name":"LOAD_LIBRARY_SEARCH_USER_DIRS","features":[186]},{"name":"LOAD_WITH_ALTERED_SEARCH_PATH","features":[186]},{"name":"LoadLibraryA","features":[3,186]},{"name":"LoadLibraryExA","features":[3,186]},{"name":"LoadLibraryExW","features":[3,186]},{"name":"LoadLibraryW","features":[3,186]},{"name":"LoadModule","features":[186]},{"name":"LoadPackagedLibrary","features":[3,186]},{"name":"LoadResource","features":[3,186]},{"name":"LockResource","features":[3,186]},{"name":"PGET_MODULE_HANDLE_EXA","features":[3,186]},{"name":"PGET_MODULE_HANDLE_EXW","features":[3,186]},{"name":"REDIRECTION_DESCRIPTOR","features":[186]},{"name":"REDIRECTION_FUNCTION_DESCRIPTOR","features":[186]},{"name":"RESOURCE_ENUM_LN","features":[186]},{"name":"RESOURCE_ENUM_MODULE_EXACT","features":[186]},{"name":"RESOURCE_ENUM_MUI","features":[186]},{"name":"RESOURCE_ENUM_MUI_SYSTEM","features":[186]},{"name":"RESOURCE_ENUM_VALIDATE","features":[186]},{"name":"RemoveDllDirectory","features":[3,186]},{"name":"SUPPORT_LANG_NUMBER","features":[186]},{"name":"SetDefaultDllDirectories","features":[3,186]},{"name":"SetDllDirectoryA","features":[3,186]},{"name":"SetDllDirectoryW","features":[3,186]},{"name":"SizeofResource","features":[3,186]},{"name":"UpdateResourceA","features":[3,186]},{"name":"UpdateResourceW","features":[3,186]}],"580":[{"name":"CreateMailslotA","features":[3,6,187]},{"name":"CreateMailslotW","features":[3,6,187]},{"name":"GetMailslotInfo","features":[3,187]},{"name":"SetMailslotInfo","features":[3,187]}],"581":[{"name":"LPMAPIADDRESS","features":[188]},{"name":"LPMAPIDELETEMAIL","features":[188]},{"name":"LPMAPIDETAILS","features":[188]},{"name":"LPMAPIFINDNEXT","features":[188]},{"name":"LPMAPIFREEBUFFER","features":[188]},{"name":"LPMAPILOGOFF","features":[188]},{"name":"LPMAPILOGON","features":[188]},{"name":"LPMAPIREADMAIL","features":[188]},{"name":"LPMAPIRESOLVENAME","features":[188]},{"name":"LPMAPISAVEMAIL","features":[188]},{"name":"LPMAPISENDDOCUMENTS","features":[188]},{"name":"LPMAPISENDMAIL","features":[188]},{"name":"LPMAPISENDMAILW","features":[188]},{"name":"MAPIFreeBuffer","features":[188]},{"name":"MAPI_AB_NOMODIFY","features":[188]},{"name":"MAPI_BCC","features":[188]},{"name":"MAPI_BODY_AS_FILE","features":[188]},{"name":"MAPI_CC","features":[188]},{"name":"MAPI_DIALOG","features":[188]},{"name":"MAPI_ENVELOPE_ONLY","features":[188]},{"name":"MAPI_EXTENDED","features":[188]},{"name":"MAPI_E_ACCESS_DENIED","features":[188]},{"name":"MAPI_E_AMBIGUOUS_RECIPIENT","features":[188]},{"name":"MAPI_E_AMBIG_RECIP","features":[188]},{"name":"MAPI_E_ATTACHMENT_NOT_FOUND","features":[188]},{"name":"MAPI_E_ATTACHMENT_OPEN_FAILURE","features":[188]},{"name":"MAPI_E_ATTACHMENT_TOO_LARGE","features":[188]},{"name":"MAPI_E_ATTACHMENT_WRITE_FAILURE","features":[188]},{"name":"MAPI_E_BAD_RECIPTYPE","features":[188]},{"name":"MAPI_E_DISK_FULL","features":[188]},{"name":"MAPI_E_FAILURE","features":[188]},{"name":"MAPI_E_INSUFFICIENT_MEMORY","features":[188]},{"name":"MAPI_E_INVALID_EDITFIELDS","features":[188]},{"name":"MAPI_E_INVALID_MESSAGE","features":[188]},{"name":"MAPI_E_INVALID_RECIPS","features":[188]},{"name":"MAPI_E_INVALID_SESSION","features":[188]},{"name":"MAPI_E_LOGIN_FAILURE","features":[188]},{"name":"MAPI_E_LOGON_FAILURE","features":[188]},{"name":"MAPI_E_MESSAGE_IN_USE","features":[188]},{"name":"MAPI_E_NETWORK_FAILURE","features":[188]},{"name":"MAPI_E_NOT_SUPPORTED","features":[188]},{"name":"MAPI_E_NO_MESSAGES","features":[188]},{"name":"MAPI_E_TEXT_TOO_LARGE","features":[188]},{"name":"MAPI_E_TOO_MANY_FILES","features":[188]},{"name":"MAPI_E_TOO_MANY_RECIPIENTS","features":[188]},{"name":"MAPI_E_TOO_MANY_SESSIONS","features":[188]},{"name":"MAPI_E_TYPE_NOT_SUPPORTED","features":[188]},{"name":"MAPI_E_UNICODE_NOT_SUPPORTED","features":[188]},{"name":"MAPI_E_UNKNOWN_RECIPIENT","features":[188]},{"name":"MAPI_E_USER_ABORT","features":[188]},{"name":"MAPI_FORCE_DOWNLOAD","features":[188]},{"name":"MAPI_FORCE_UNICODE","features":[188]},{"name":"MAPI_GUARANTEE_FIFO","features":[188]},{"name":"MAPI_LOGON_UI","features":[188]},{"name":"MAPI_LONG_MSGID","features":[188]},{"name":"MAPI_NEW_SESSION","features":[188]},{"name":"MAPI_OLE","features":[188]},{"name":"MAPI_OLE_STATIC","features":[188]},{"name":"MAPI_ORIG","features":[188]},{"name":"MAPI_PASSWORD_UI","features":[188]},{"name":"MAPI_PEEK","features":[188]},{"name":"MAPI_RECEIPT_REQUESTED","features":[188]},{"name":"MAPI_SENT","features":[188]},{"name":"MAPI_SUPPRESS_ATTACH","features":[188]},{"name":"MAPI_TO","features":[188]},{"name":"MAPI_UNREAD","features":[188]},{"name":"MAPI_UNREAD_ONLY","features":[188]},{"name":"MAPI_USER_ABORT","features":[188]},{"name":"MapiFileDesc","features":[188]},{"name":"MapiFileDescW","features":[188]},{"name":"MapiFileTagExt","features":[188]},{"name":"MapiMessage","features":[188]},{"name":"MapiMessageW","features":[188]},{"name":"MapiRecipDesc","features":[188]},{"name":"MapiRecipDescW","features":[188]},{"name":"SUCCESS_SUCCESS","features":[188]}],"582":[{"name":"AddSecureMemoryCacheCallback","features":[3,22]},{"name":"AllocateUserPhysicalPages","features":[3,22]},{"name":"AllocateUserPhysicalPages2","features":[3,22]},{"name":"AllocateUserPhysicalPagesNuma","features":[3,22]},{"name":"AtlThunkData_t","features":[22]},{"name":"CFG_CALL_TARGET_INFO","features":[22]},{"name":"CreateFileMapping2","features":[3,6,22]},{"name":"CreateFileMappingA","features":[3,6,22]},{"name":"CreateFileMappingFromApp","features":[3,6,22]},{"name":"CreateFileMappingNumaA","features":[3,6,22]},{"name":"CreateFileMappingNumaW","features":[3,6,22]},{"name":"CreateFileMappingW","features":[3,6,22]},{"name":"CreateMemoryResourceNotification","features":[3,22]},{"name":"DiscardVirtualMemory","features":[22]},{"name":"FILE_CACHE_MAX_HARD_DISABLE","features":[22]},{"name":"FILE_CACHE_MAX_HARD_ENABLE","features":[22]},{"name":"FILE_CACHE_MIN_HARD_DISABLE","features":[22]},{"name":"FILE_CACHE_MIN_HARD_ENABLE","features":[22]},{"name":"FILE_MAP","features":[22]},{"name":"FILE_MAP_ALL_ACCESS","features":[22]},{"name":"FILE_MAP_COPY","features":[22]},{"name":"FILE_MAP_EXECUTE","features":[22]},{"name":"FILE_MAP_LARGE_PAGES","features":[22]},{"name":"FILE_MAP_READ","features":[22]},{"name":"FILE_MAP_RESERVE","features":[22]},{"name":"FILE_MAP_TARGETS_INVALID","features":[22]},{"name":"FILE_MAP_WRITE","features":[22]},{"name":"FlushViewOfFile","features":[3,22]},{"name":"FreeUserPhysicalPages","features":[3,22]},{"name":"GHND","features":[22]},{"name":"GLOBAL_ALLOC_FLAGS","features":[22]},{"name":"GMEM_FIXED","features":[22]},{"name":"GMEM_MOVEABLE","features":[22]},{"name":"GMEM_ZEROINIT","features":[22]},{"name":"GPTR","features":[22]},{"name":"GetLargePageMinimum","features":[22]},{"name":"GetMemoryErrorHandlingCapabilities","features":[3,22]},{"name":"GetProcessHeap","features":[3,22]},{"name":"GetProcessHeaps","features":[3,22]},{"name":"GetProcessWorkingSetSizeEx","features":[3,22]},{"name":"GetSystemFileCacheSize","features":[3,22]},{"name":"GetWriteWatch","features":[22]},{"name":"GlobalAlloc","features":[3,22]},{"name":"GlobalFlags","features":[3,22]},{"name":"GlobalHandle","features":[3,22]},{"name":"GlobalLock","features":[3,22]},{"name":"GlobalReAlloc","features":[3,22]},{"name":"GlobalSize","features":[3,22]},{"name":"GlobalUnlock","features":[3,22]},{"name":"HEAP_CREATE_ALIGN_16","features":[22]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[22]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[22]},{"name":"HEAP_CREATE_HARDENED","features":[22]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[22]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[22]},{"name":"HEAP_FLAGS","features":[22]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[22]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[22]},{"name":"HEAP_GROWABLE","features":[22]},{"name":"HEAP_INFORMATION_CLASS","features":[22]},{"name":"HEAP_MAXIMUM_TAG","features":[22]},{"name":"HEAP_NONE","features":[22]},{"name":"HEAP_NO_SERIALIZE","features":[22]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[22]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[22]},{"name":"HEAP_SUMMARY","features":[22]},{"name":"HEAP_TAG_SHIFT","features":[22]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[22]},{"name":"HEAP_ZERO_MEMORY","features":[22]},{"name":"HeapAlloc","features":[3,22]},{"name":"HeapCompact","features":[3,22]},{"name":"HeapCompatibilityInformation","features":[22]},{"name":"HeapCreate","features":[3,22]},{"name":"HeapDestroy","features":[3,22]},{"name":"HeapEnableTerminationOnCorruption","features":[22]},{"name":"HeapFree","features":[3,22]},{"name":"HeapLock","features":[3,22]},{"name":"HeapOptimizeResources","features":[22]},{"name":"HeapQueryInformation","features":[3,22]},{"name":"HeapReAlloc","features":[3,22]},{"name":"HeapSetInformation","features":[3,22]},{"name":"HeapSize","features":[3,22]},{"name":"HeapSummary","features":[3,22]},{"name":"HeapTag","features":[22]},{"name":"HeapUnlock","features":[3,22]},{"name":"HeapValidate","features":[3,22]},{"name":"HeapWalk","features":[3,22]},{"name":"HighMemoryResourceNotification","features":[22]},{"name":"IsBadCodePtr","features":[3,22]},{"name":"IsBadReadPtr","features":[3,22]},{"name":"IsBadStringPtrA","features":[3,22]},{"name":"IsBadStringPtrW","features":[3,22]},{"name":"IsBadWritePtr","features":[3,22]},{"name":"LHND","features":[22]},{"name":"LMEM_FIXED","features":[22]},{"name":"LMEM_MOVEABLE","features":[22]},{"name":"LMEM_ZEROINIT","features":[22]},{"name":"LOCAL_ALLOC_FLAGS","features":[22]},{"name":"LPTR","features":[22]},{"name":"LocalAlloc","features":[3,22]},{"name":"LocalFlags","features":[3,22]},{"name":"LocalHandle","features":[3,22]},{"name":"LocalLock","features":[3,22]},{"name":"LocalReAlloc","features":[3,22]},{"name":"LocalSize","features":[3,22]},{"name":"LocalUnlock","features":[3,22]},{"name":"LowMemoryResourceNotification","features":[22]},{"name":"MEHC_PATROL_SCRUBBER_PRESENT","features":[22]},{"name":"MEMORY_BASIC_INFORMATION","features":[22]},{"name":"MEMORY_BASIC_INFORMATION","features":[22]},{"name":"MEMORY_BASIC_INFORMATION32","features":[22]},{"name":"MEMORY_BASIC_INFORMATION64","features":[22]},{"name":"MEMORY_MAPPED_VIEW_ADDRESS","features":[22]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_ATTRIBUTE","features":[22]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_INFORMATION","features":[22]},{"name":"MEMORY_RESOURCE_NOTIFICATION_TYPE","features":[22]},{"name":"MEM_ADDRESS_REQUIREMENTS","features":[22]},{"name":"MEM_COMMIT","features":[22]},{"name":"MEM_DECOMMIT","features":[22]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[22]},{"name":"MEM_EXTENDED_PARAMETER","features":[3,22]},{"name":"MEM_EXTENDED_PARAMETER_TYPE","features":[22]},{"name":"MEM_FREE","features":[22]},{"name":"MEM_IMAGE","features":[22]},{"name":"MEM_LARGE_PAGES","features":[22]},{"name":"MEM_MAPPED","features":[22]},{"name":"MEM_PRESERVE_PLACEHOLDER","features":[22]},{"name":"MEM_PRIVATE","features":[22]},{"name":"MEM_RELEASE","features":[22]},{"name":"MEM_REPLACE_PLACEHOLDER","features":[22]},{"name":"MEM_RESERVE","features":[22]},{"name":"MEM_RESERVE_PLACEHOLDER","features":[22]},{"name":"MEM_RESET","features":[22]},{"name":"MEM_RESET_UNDO","features":[22]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[22]},{"name":"MEM_UNMAP_NONE","features":[22]},{"name":"MEM_UNMAP_WITH_TRANSIENT_BOOST","features":[22]},{"name":"MapUserPhysicalPages","features":[3,22]},{"name":"MapUserPhysicalPagesScatter","features":[3,22]},{"name":"MapViewOfFile","features":[3,22]},{"name":"MapViewOfFile3","features":[3,22]},{"name":"MapViewOfFile3FromApp","features":[3,22]},{"name":"MapViewOfFileEx","features":[3,22]},{"name":"MapViewOfFileExNuma","features":[3,22]},{"name":"MapViewOfFileFromApp","features":[3,22]},{"name":"MapViewOfFileNuma2","features":[3,22]},{"name":"MemDedicatedAttributeMax","features":[22]},{"name":"MemDedicatedAttributeReadBandwidth","features":[22]},{"name":"MemDedicatedAttributeReadLatency","features":[22]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[22]},{"name":"MemDedicatedAttributeWriteLatency","features":[22]},{"name":"MemExtendedParameterAddressRequirements","features":[22]},{"name":"MemExtendedParameterAttributeFlags","features":[22]},{"name":"MemExtendedParameterImageMachine","features":[22]},{"name":"MemExtendedParameterInvalidType","features":[22]},{"name":"MemExtendedParameterMax","features":[22]},{"name":"MemExtendedParameterNumaNode","features":[22]},{"name":"MemExtendedParameterPartitionHandle","features":[22]},{"name":"MemExtendedParameterUserPhysicalHandle","features":[22]},{"name":"MemSectionExtendedParameterInvalidType","features":[22]},{"name":"MemSectionExtendedParameterMax","features":[22]},{"name":"MemSectionExtendedParameterNumaNode","features":[22]},{"name":"MemSectionExtendedParameterSigningLevel","features":[22]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[22]},{"name":"MemoryPartitionDedicatedMemoryInfo","features":[22]},{"name":"MemoryPartitionInfo","features":[22]},{"name":"MemoryRegionInfo","features":[22]},{"name":"NONZEROLHND","features":[22]},{"name":"NONZEROLPTR","features":[22]},{"name":"OFFER_PRIORITY","features":[22]},{"name":"OfferVirtualMemory","features":[22]},{"name":"OpenDedicatedMemoryPartition","features":[3,22]},{"name":"OpenFileMappingA","features":[3,22]},{"name":"OpenFileMappingFromApp","features":[3,22]},{"name":"OpenFileMappingW","features":[3,22]},{"name":"PAGE_ENCLAVE_DECOMMIT","features":[22]},{"name":"PAGE_ENCLAVE_MASK","features":[22]},{"name":"PAGE_ENCLAVE_SS_FIRST","features":[22]},{"name":"PAGE_ENCLAVE_SS_REST","features":[22]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[22]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[22]},{"name":"PAGE_EXECUTE","features":[22]},{"name":"PAGE_EXECUTE_READ","features":[22]},{"name":"PAGE_EXECUTE_READWRITE","features":[22]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[22]},{"name":"PAGE_GRAPHICS_COHERENT","features":[22]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[22]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[22]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[22]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[22]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[22]},{"name":"PAGE_GRAPHICS_READONLY","features":[22]},{"name":"PAGE_GRAPHICS_READWRITE","features":[22]},{"name":"PAGE_GUARD","features":[22]},{"name":"PAGE_NOACCESS","features":[22]},{"name":"PAGE_NOCACHE","features":[22]},{"name":"PAGE_PROTECTION_FLAGS","features":[22]},{"name":"PAGE_READONLY","features":[22]},{"name":"PAGE_READWRITE","features":[22]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[22]},{"name":"PAGE_TARGETS_INVALID","features":[22]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[22]},{"name":"PAGE_TYPE","features":[22]},{"name":"PAGE_WRITECOMBINE","features":[22]},{"name":"PAGE_WRITECOPY","features":[22]},{"name":"PBAD_MEMORY_CALLBACK_ROUTINE","features":[22]},{"name":"PROCESS_HEAP_ENTRY","features":[3,22]},{"name":"PSECURE_MEMORY_CACHE_CALLBACK","features":[3,22]},{"name":"PrefetchVirtualMemory","features":[3,22]},{"name":"QUOTA_LIMITS_HARDWS_MAX_DISABLE","features":[22]},{"name":"QUOTA_LIMITS_HARDWS_MAX_ENABLE","features":[22]},{"name":"QUOTA_LIMITS_HARDWS_MIN_DISABLE","features":[22]},{"name":"QUOTA_LIMITS_HARDWS_MIN_ENABLE","features":[22]},{"name":"QueryMemoryResourceNotification","features":[3,22]},{"name":"QueryPartitionInformation","features":[3,22]},{"name":"QueryVirtualMemoryInformation","features":[3,22]},{"name":"ReclaimVirtualMemory","features":[22]},{"name":"RegisterBadMemoryNotification","features":[22]},{"name":"RemoveSecureMemoryCacheCallback","features":[3,22]},{"name":"ResetWriteWatch","features":[22]},{"name":"RtlCompareMemory","features":[22]},{"name":"RtlCrc32","features":[22]},{"name":"RtlCrc64","features":[22]},{"name":"RtlIsZeroMemory","features":[3,22]},{"name":"SECTION_ALL_ACCESS","features":[22]},{"name":"SECTION_EXTEND_SIZE","features":[22]},{"name":"SECTION_FLAGS","features":[22]},{"name":"SECTION_MAP_EXECUTE","features":[22]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[22]},{"name":"SECTION_MAP_READ","features":[22]},{"name":"SECTION_MAP_WRITE","features":[22]},{"name":"SECTION_QUERY","features":[22]},{"name":"SEC_64K_PAGES","features":[22]},{"name":"SEC_COMMIT","features":[22]},{"name":"SEC_FILE","features":[22]},{"name":"SEC_IMAGE","features":[22]},{"name":"SEC_IMAGE_NO_EXECUTE","features":[22]},{"name":"SEC_LARGE_PAGES","features":[22]},{"name":"SEC_NOCACHE","features":[22]},{"name":"SEC_PARTITION_OWNER_HANDLE","features":[22]},{"name":"SEC_PROTECTED_IMAGE","features":[22]},{"name":"SEC_RESERVE","features":[22]},{"name":"SEC_WRITECOMBINE","features":[22]},{"name":"SETPROCESSWORKINGSETSIZEEX_FLAGS","features":[22]},{"name":"SetProcessValidCallTargets","features":[3,22]},{"name":"SetProcessValidCallTargetsForMappedView","features":[3,22]},{"name":"SetProcessWorkingSetSizeEx","features":[3,22]},{"name":"SetSystemFileCacheSize","features":[3,22]},{"name":"UNMAP_VIEW_OF_FILE_FLAGS","features":[22]},{"name":"UnmapViewOfFile","features":[3,22]},{"name":"UnmapViewOfFile2","features":[3,22]},{"name":"UnmapViewOfFileEx","features":[3,22]},{"name":"UnregisterBadMemoryNotification","features":[3,22]},{"name":"VIRTUAL_ALLOCATION_TYPE","features":[22]},{"name":"VIRTUAL_FREE_TYPE","features":[22]},{"name":"VirtualAlloc","features":[22]},{"name":"VirtualAlloc2","features":[3,22]},{"name":"VirtualAlloc2FromApp","features":[3,22]},{"name":"VirtualAllocEx","features":[3,22]},{"name":"VirtualAllocExNuma","features":[3,22]},{"name":"VirtualAllocFromApp","features":[22]},{"name":"VirtualFree","features":[3,22]},{"name":"VirtualFreeEx","features":[3,22]},{"name":"VirtualLock","features":[3,22]},{"name":"VirtualProtect","features":[3,22]},{"name":"VirtualProtectEx","features":[3,22]},{"name":"VirtualProtectFromApp","features":[3,22]},{"name":"VirtualQuery","features":[22]},{"name":"VirtualQueryEx","features":[3,22]},{"name":"VirtualUnlock","features":[3,22]},{"name":"VirtualUnlockEx","features":[3,22]},{"name":"VmOfferPriorityBelowNormal","features":[22]},{"name":"VmOfferPriorityLow","features":[22]},{"name":"VmOfferPriorityNormal","features":[22]},{"name":"VmOfferPriorityVeryLow","features":[22]},{"name":"WIN32_MEMORY_INFORMATION_CLASS","features":[22]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION","features":[22]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION_CLASS","features":[22]},{"name":"WIN32_MEMORY_RANGE_ENTRY","features":[22]},{"name":"WIN32_MEMORY_REGION_INFORMATION","features":[22]}],"583":[{"name":"NV_MEMORY_RANGE","features":[189]},{"name":"RtlDrainNonVolatileFlush","features":[189]},{"name":"RtlFillNonVolatileMemory","features":[189]},{"name":"RtlFlushNonVolatileMemory","features":[189]},{"name":"RtlFlushNonVolatileMemoryRanges","features":[189]},{"name":"RtlFreeNonVolatileToken","features":[189]},{"name":"RtlGetNonVolatileToken","features":[189]},{"name":"RtlWriteNonVolatileMemory","features":[189]}],"584":[{"name":"DEFAULT_M_ACKNOWLEDGE","features":[190]},{"name":"DEFAULT_M_APPSPECIFIC","features":[190]},{"name":"DEFAULT_M_AUTH_LEVEL","features":[190]},{"name":"DEFAULT_M_DELIVERY","features":[190]},{"name":"DEFAULT_M_JOURNAL","features":[190]},{"name":"DEFAULT_M_LOOKUPID","features":[190]},{"name":"DEFAULT_M_PRIORITY","features":[190]},{"name":"DEFAULT_M_PRIV_LEVEL","features":[190]},{"name":"DEFAULT_M_SENDERID_TYPE","features":[190]},{"name":"DEFAULT_Q_AUTHENTICATE","features":[190]},{"name":"DEFAULT_Q_BASEPRIORITY","features":[190]},{"name":"DEFAULT_Q_JOURNAL","features":[190]},{"name":"DEFAULT_Q_JOURNAL_QUOTA","features":[190]},{"name":"DEFAULT_Q_PRIV_LEVEL","features":[190]},{"name":"DEFAULT_Q_QUOTA","features":[190]},{"name":"DEFAULT_Q_TRANSACTION","features":[190]},{"name":"FOREIGN_STATUS","features":[190]},{"name":"IMSMQApplication","features":[190]},{"name":"IMSMQApplication2","features":[190]},{"name":"IMSMQApplication3","features":[190]},{"name":"IMSMQCollection","features":[190]},{"name":"IMSMQCoordinatedTransactionDispenser","features":[190]},{"name":"IMSMQCoordinatedTransactionDispenser2","features":[190]},{"name":"IMSMQCoordinatedTransactionDispenser3","features":[190]},{"name":"IMSMQDestination","features":[190]},{"name":"IMSMQEvent","features":[190]},{"name":"IMSMQEvent2","features":[190]},{"name":"IMSMQEvent3","features":[190]},{"name":"IMSMQManagement","features":[190]},{"name":"IMSMQMessage","features":[190]},{"name":"IMSMQMessage2","features":[190]},{"name":"IMSMQMessage3","features":[190]},{"name":"IMSMQMessage4","features":[190]},{"name":"IMSMQOutgoingQueueManagement","features":[190]},{"name":"IMSMQPrivateDestination","features":[190]},{"name":"IMSMQPrivateEvent","features":[190]},{"name":"IMSMQQuery","features":[190]},{"name":"IMSMQQuery2","features":[190]},{"name":"IMSMQQuery3","features":[190]},{"name":"IMSMQQuery4","features":[190]},{"name":"IMSMQQueue","features":[190]},{"name":"IMSMQQueue2","features":[190]},{"name":"IMSMQQueue3","features":[190]},{"name":"IMSMQQueue4","features":[190]},{"name":"IMSMQQueueInfo","features":[190]},{"name":"IMSMQQueueInfo2","features":[190]},{"name":"IMSMQQueueInfo3","features":[190]},{"name":"IMSMQQueueInfo4","features":[190]},{"name":"IMSMQQueueInfos","features":[190]},{"name":"IMSMQQueueInfos2","features":[190]},{"name":"IMSMQQueueInfos3","features":[190]},{"name":"IMSMQQueueInfos4","features":[190]},{"name":"IMSMQQueueManagement","features":[190]},{"name":"IMSMQTransaction","features":[190]},{"name":"IMSMQTransaction2","features":[190]},{"name":"IMSMQTransaction3","features":[190]},{"name":"IMSMQTransactionDispenser","features":[190]},{"name":"IMSMQTransactionDispenser2","features":[190]},{"name":"IMSMQTransactionDispenser3","features":[190]},{"name":"LONG_LIVED","features":[190]},{"name":"MACHINE_ACTION_CONNECT","features":[190]},{"name":"MACHINE_ACTION_DISCONNECT","features":[190]},{"name":"MACHINE_ACTION_TIDY","features":[190]},{"name":"MGMT_QUEUE_CORRECT_TYPE","features":[190]},{"name":"MGMT_QUEUE_FOREIGN_TYPE","features":[190]},{"name":"MGMT_QUEUE_INCORRECT_TYPE","features":[190]},{"name":"MGMT_QUEUE_LOCAL_LOCATION","features":[190]},{"name":"MGMT_QUEUE_NOT_FOREIGN_TYPE","features":[190]},{"name":"MGMT_QUEUE_NOT_TRANSACTIONAL_TYPE","features":[190]},{"name":"MGMT_QUEUE_REMOTE_LOCATION","features":[190]},{"name":"MGMT_QUEUE_STATE_CONNECTED","features":[190]},{"name":"MGMT_QUEUE_STATE_DISCONNECTED","features":[190]},{"name":"MGMT_QUEUE_STATE_DISCONNECTING","features":[190]},{"name":"MGMT_QUEUE_STATE_LOCAL","features":[190]},{"name":"MGMT_QUEUE_STATE_LOCKED","features":[190]},{"name":"MGMT_QUEUE_STATE_NEED_VALIDATE","features":[190]},{"name":"MGMT_QUEUE_STATE_NONACTIVE","features":[190]},{"name":"MGMT_QUEUE_STATE_ONHOLD","features":[190]},{"name":"MGMT_QUEUE_STATE_WAITING","features":[190]},{"name":"MGMT_QUEUE_TRANSACTIONAL_TYPE","features":[190]},{"name":"MGMT_QUEUE_TYPE_CONNECTOR","features":[190]},{"name":"MGMT_QUEUE_TYPE_MACHINE","features":[190]},{"name":"MGMT_QUEUE_TYPE_MULTICAST","features":[190]},{"name":"MGMT_QUEUE_TYPE_PRIVATE","features":[190]},{"name":"MGMT_QUEUE_TYPE_PUBLIC","features":[190]},{"name":"MGMT_QUEUE_UNKNOWN_TYPE","features":[190]},{"name":"MO_MACHINE_TOKEN","features":[190]},{"name":"MO_QUEUE_TOKEN","features":[190]},{"name":"MQACCESS","features":[190]},{"name":"MQADsPathToFormatName","features":[190]},{"name":"MQAUTHENTICATE","features":[190]},{"name":"MQBeginTransaction","features":[190]},{"name":"MQCALG","features":[190]},{"name":"MQCERT_REGISTER","features":[190]},{"name":"MQCERT_REGISTER_ALWAYS","features":[190]},{"name":"MQCERT_REGISTER_IF_NOT_EXIST","features":[190]},{"name":"MQCOLUMNSET","features":[190]},{"name":"MQCONN_BIND_SOCKET_FAILURE","features":[190]},{"name":"MQCONN_CONNECT_SOCKET_FAILURE","features":[190]},{"name":"MQCONN_CREATE_SOCKET_FAILURE","features":[190]},{"name":"MQCONN_ESTABLISH_PACKET_RECEIVED","features":[190]},{"name":"MQCONN_INVALID_SERVER_CERT","features":[190]},{"name":"MQCONN_LIMIT_REACHED","features":[190]},{"name":"MQCONN_NAME_RESOLUTION_FAILURE","features":[190]},{"name":"MQCONN_NOFAILURE","features":[190]},{"name":"MQCONN_NOT_READY","features":[190]},{"name":"MQCONN_OUT_OF_MEMORY","features":[190]},{"name":"MQCONN_PING_FAILURE","features":[190]},{"name":"MQCONN_READY","features":[190]},{"name":"MQCONN_REFUSED_BY_OTHER_SIDE","features":[190]},{"name":"MQCONN_ROUTING_FAILURE","features":[190]},{"name":"MQCONN_SEND_FAILURE","features":[190]},{"name":"MQCONN_TCP_NOT_ENABLED","features":[190]},{"name":"MQCONN_UNKNOWN_FAILURE","features":[190]},{"name":"MQCloseCursor","features":[3,190]},{"name":"MQCloseQueue","features":[190]},{"name":"MQConnectionState","features":[190]},{"name":"MQCreateCursor","features":[3,190]},{"name":"MQCreateQueue","features":[3,6,65,190,44]},{"name":"MQDEFAULT","features":[190]},{"name":"MQDeleteQueue","features":[190]},{"name":"MQERROR","features":[190]},{"name":"MQFreeMemory","features":[190]},{"name":"MQFreeSecurityContext","features":[3,190]},{"name":"MQGetMachineProperties","features":[3,65,190,44]},{"name":"MQGetOverlappedResult","features":[3,8,190]},{"name":"MQGetPrivateComputerInformation","features":[3,65,190,44]},{"name":"MQGetQueueProperties","features":[3,65,190,44]},{"name":"MQGetQueueSecurity","features":[6,190]},{"name":"MQGetSecurityContext","features":[3,190]},{"name":"MQGetSecurityContextEx","features":[3,190]},{"name":"MQHandleToFormatName","features":[190]},{"name":"MQInstanceToFormatName","features":[190]},{"name":"MQJOURNAL","features":[190]},{"name":"MQLocateBegin","features":[3,65,190,44]},{"name":"MQLocateEnd","features":[3,190]},{"name":"MQLocateNext","features":[3,65,190,44]},{"name":"MQMAX","features":[190]},{"name":"MQMGMTPROPS","features":[3,65,190,44]},{"name":"MQMSGACKNOWLEDGEMENT","features":[190]},{"name":"MQMSGAUTHENTICATION","features":[190]},{"name":"MQMSGAUTHLEVEL","features":[190]},{"name":"MQMSGCLASS","features":[190]},{"name":"MQMSGCURSOR","features":[190]},{"name":"MQMSGDELIVERY","features":[190]},{"name":"MQMSGIDSIZE","features":[190]},{"name":"MQMSGJOURNAL","features":[190]},{"name":"MQMSGMAX","features":[190]},{"name":"MQMSGPRIVLEVEL","features":[190]},{"name":"MQMSGPROPS","features":[3,65,190,44]},{"name":"MQMSGSENDERIDTYPE","features":[190]},{"name":"MQMSGTRACE","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_REACH_QUEUE","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_RECEIVE","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_REACH_QUEUE","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_RECEIVE","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_RECEIVE","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_NONE","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_ARRIVAL","features":[190]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_RECEIVE","features":[190]},{"name":"MQMSG_AUTHENTICATED_QM_MESSAGE","features":[190]},{"name":"MQMSG_AUTHENTICATED_SIG10","features":[190]},{"name":"MQMSG_AUTHENTICATED_SIG20","features":[190]},{"name":"MQMSG_AUTHENTICATED_SIG30","features":[190]},{"name":"MQMSG_AUTHENTICATED_SIGXML","features":[190]},{"name":"MQMSG_AUTHENTICATION_NOT_REQUESTED","features":[190]},{"name":"MQMSG_AUTHENTICATION_REQUESTED","features":[190]},{"name":"MQMSG_AUTHENTICATION_REQUESTED_EX","features":[190]},{"name":"MQMSG_AUTH_LEVEL_ALWAYS","features":[190]},{"name":"MQMSG_AUTH_LEVEL_MSMQ10","features":[190]},{"name":"MQMSG_AUTH_LEVEL_MSMQ20","features":[190]},{"name":"MQMSG_AUTH_LEVEL_NONE","features":[190]},{"name":"MQMSG_AUTH_LEVEL_SIG10","features":[190]},{"name":"MQMSG_AUTH_LEVEL_SIG20","features":[190]},{"name":"MQMSG_AUTH_LEVEL_SIG30","features":[190]},{"name":"MQMSG_CALG_DES","features":[190]},{"name":"MQMSG_CALG_DSS_SIGN","features":[190]},{"name":"MQMSG_CALG_MAC","features":[190]},{"name":"MQMSG_CALG_MD2","features":[190]},{"name":"MQMSG_CALG_MD4","features":[190]},{"name":"MQMSG_CALG_MD5","features":[190]},{"name":"MQMSG_CALG_RC2","features":[190]},{"name":"MQMSG_CALG_RC4","features":[190]},{"name":"MQMSG_CALG_RSA_KEYX","features":[190]},{"name":"MQMSG_CALG_RSA_SIGN","features":[190]},{"name":"MQMSG_CALG_SEAL","features":[190]},{"name":"MQMSG_CALG_SHA","features":[190]},{"name":"MQMSG_CALG_SHA1","features":[190]},{"name":"MQMSG_CLASS_ACK_REACH_QUEUE","features":[190]},{"name":"MQMSG_CLASS_ACK_RECEIVE","features":[190]},{"name":"MQMSG_CLASS_NACK_ACCESS_DENIED","features":[190]},{"name":"MQMSG_CLASS_NACK_BAD_DST_Q","features":[190]},{"name":"MQMSG_CLASS_NACK_BAD_ENCRYPTION","features":[190]},{"name":"MQMSG_CLASS_NACK_BAD_SIGNATURE","features":[190]},{"name":"MQMSG_CLASS_NACK_COULD_NOT_ENCRYPT","features":[190]},{"name":"MQMSG_CLASS_NACK_HOP_COUNT_EXCEEDED","features":[190]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_MSG","features":[190]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_Q","features":[190]},{"name":"MQMSG_CLASS_NACK_PURGED","features":[190]},{"name":"MQMSG_CLASS_NACK_Q_DELETED","features":[190]},{"name":"MQMSG_CLASS_NACK_Q_EXCEED_QUOTA","features":[190]},{"name":"MQMSG_CLASS_NACK_Q_PURGED","features":[190]},{"name":"MQMSG_CLASS_NACK_REACH_QUEUE_TIMEOUT","features":[190]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT","features":[190]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT_AT_SENDER","features":[190]},{"name":"MQMSG_CLASS_NACK_SOURCE_COMPUTER_GUID_CHANGED","features":[190]},{"name":"MQMSG_CLASS_NACK_UNSUPPORTED_CRYPTO_PROVIDER","features":[190]},{"name":"MQMSG_CLASS_NORMAL","features":[190]},{"name":"MQMSG_CLASS_REPORT","features":[190]},{"name":"MQMSG_CORRELATIONID_SIZE","features":[190]},{"name":"MQMSG_CURRENT","features":[190]},{"name":"MQMSG_DEADLETTER","features":[190]},{"name":"MQMSG_DELIVERY_EXPRESS","features":[190]},{"name":"MQMSG_DELIVERY_RECOVERABLE","features":[190]},{"name":"MQMSG_FIRST","features":[190]},{"name":"MQMSG_FIRST_IN_XACT","features":[190]},{"name":"MQMSG_JOURNAL","features":[190]},{"name":"MQMSG_JOURNAL_NONE","features":[190]},{"name":"MQMSG_LAST_IN_XACT","features":[190]},{"name":"MQMSG_MSGID_SIZE","features":[190]},{"name":"MQMSG_NEXT","features":[190]},{"name":"MQMSG_NOT_FIRST_IN_XACT","features":[190]},{"name":"MQMSG_NOT_LAST_IN_XACT","features":[190]},{"name":"MQMSG_PRIV_LEVEL_BODY_AES","features":[190]},{"name":"MQMSG_PRIV_LEVEL_BODY_BASE","features":[190]},{"name":"MQMSG_PRIV_LEVEL_BODY_ENHANCED","features":[190]},{"name":"MQMSG_PRIV_LEVEL_NONE","features":[190]},{"name":"MQMSG_SENDERID_TYPE_NONE","features":[190]},{"name":"MQMSG_SENDERID_TYPE_SID","features":[190]},{"name":"MQMSG_SEND_ROUTE_TO_REPORT_QUEUE","features":[190]},{"name":"MQMSG_TRACE_NONE","features":[190]},{"name":"MQMSG_XACTID_SIZE","features":[190]},{"name":"MQMarkMessageRejected","features":[3,190]},{"name":"MQMgmtAction","features":[190]},{"name":"MQMgmtGetInfo","features":[3,65,190,44]},{"name":"MQMoveMessage","features":[190]},{"name":"MQOpenQueue","features":[190]},{"name":"MQPRIORITY","features":[190]},{"name":"MQPRIVATEPROPS","features":[3,65,190,44]},{"name":"MQPRIVLEVEL","features":[190]},{"name":"MQPROPERTYRESTRICTION","features":[3,65,190,44]},{"name":"MQPathNameToFormatName","features":[190]},{"name":"MQPurgeQueue","features":[190]},{"name":"MQQMPROPS","features":[3,65,190,44]},{"name":"MQQUEUEACCESSMASK","features":[190]},{"name":"MQQUEUEPROPS","features":[3,65,190,44]},{"name":"MQRESTRICTION","features":[3,65,190,44]},{"name":"MQReceiveMessage","features":[3,65,8,190,44]},{"name":"MQReceiveMessageByLookupId","features":[3,65,8,190,44]},{"name":"MQRegisterCertificate","features":[190]},{"name":"MQSEC_CHANGE_QUEUE_PERMISSIONS","features":[190]},{"name":"MQSEC_DELETE_JOURNAL_MESSAGE","features":[190]},{"name":"MQSEC_DELETE_MESSAGE","features":[190]},{"name":"MQSEC_DELETE_QUEUE","features":[190]},{"name":"MQSEC_GET_QUEUE_PERMISSIONS","features":[190]},{"name":"MQSEC_GET_QUEUE_PROPERTIES","features":[190]},{"name":"MQSEC_PEEK_MESSAGE","features":[190]},{"name":"MQSEC_QUEUE_GENERIC_ALL","features":[190]},{"name":"MQSEC_QUEUE_GENERIC_EXECUTE","features":[190]},{"name":"MQSEC_QUEUE_GENERIC_READ","features":[190]},{"name":"MQSEC_QUEUE_GENERIC_WRITE","features":[190]},{"name":"MQSEC_RECEIVE_JOURNAL_MESSAGE","features":[190]},{"name":"MQSEC_RECEIVE_MESSAGE","features":[190]},{"name":"MQSEC_SET_QUEUE_PROPERTIES","features":[190]},{"name":"MQSEC_TAKE_QUEUE_OWNERSHIP","features":[190]},{"name":"MQSEC_WRITE_MESSAGE","features":[190]},{"name":"MQSHARE","features":[190]},{"name":"MQSORTKEY","features":[190]},{"name":"MQSORTSET","features":[190]},{"name":"MQSendMessage","features":[3,65,190,44]},{"name":"MQSetQueueProperties","features":[3,65,190,44]},{"name":"MQSetQueueSecurity","features":[6,190]},{"name":"MQTRANSACTION","features":[190]},{"name":"MQTRANSACTIONAL","features":[190]},{"name":"MQWARNING","features":[190]},{"name":"MQ_ACTION_PEEK_CURRENT","features":[190]},{"name":"MQ_ACTION_PEEK_NEXT","features":[190]},{"name":"MQ_ACTION_RECEIVE","features":[190]},{"name":"MQ_ADMIN_ACCESS","features":[190]},{"name":"MQ_AUTHENTICATE","features":[190]},{"name":"MQ_AUTHENTICATE_NONE","features":[190]},{"name":"MQ_CORRUPTED_QUEUE_WAS_DELETED","features":[190]},{"name":"MQ_DENY_NONE","features":[190]},{"name":"MQ_DENY_RECEIVE_SHARE","features":[190]},{"name":"MQ_ERROR","features":[190]},{"name":"MQ_ERROR_ACCESS_DENIED","features":[190]},{"name":"MQ_ERROR_BAD_SECURITY_CONTEXT","features":[190]},{"name":"MQ_ERROR_BAD_XML_FORMAT","features":[190]},{"name":"MQ_ERROR_BUFFER_OVERFLOW","features":[190]},{"name":"MQ_ERROR_CANNOT_CREATE_CERT_STORE","features":[190]},{"name":"MQ_ERROR_CANNOT_CREATE_HASH_EX","features":[190]},{"name":"MQ_ERROR_CANNOT_CREATE_ON_GC","features":[190]},{"name":"MQ_ERROR_CANNOT_CREATE_PSC_OBJECTS","features":[190]},{"name":"MQ_ERROR_CANNOT_DELETE_PSC_OBJECTS","features":[190]},{"name":"MQ_ERROR_CANNOT_GET_DN","features":[190]},{"name":"MQ_ERROR_CANNOT_GRANT_ADD_GUID","features":[190]},{"name":"MQ_ERROR_CANNOT_HASH_DATA_EX","features":[190]},{"name":"MQ_ERROR_CANNOT_IMPERSONATE_CLIENT","features":[190]},{"name":"MQ_ERROR_CANNOT_JOIN_DOMAIN","features":[190]},{"name":"MQ_ERROR_CANNOT_LOAD_MQAD","features":[190]},{"name":"MQ_ERROR_CANNOT_LOAD_MQDSSRV","features":[190]},{"name":"MQ_ERROR_CANNOT_LOAD_MSMQOCM","features":[190]},{"name":"MQ_ERROR_CANNOT_OPEN_CERT_STORE","features":[190]},{"name":"MQ_ERROR_CANNOT_SET_CRYPTO_SEC_DESCR","features":[190]},{"name":"MQ_ERROR_CANNOT_SIGN_DATA_EX","features":[190]},{"name":"MQ_ERROR_CANNOT_UPDATE_PSC_OBJECTS","features":[190]},{"name":"MQ_ERROR_CANT_CREATE_CERT_STORE","features":[190]},{"name":"MQ_ERROR_CANT_OPEN_CERT_STORE","features":[190]},{"name":"MQ_ERROR_CANT_RESOLVE_SITES","features":[190]},{"name":"MQ_ERROR_CERTIFICATE_NOT_PROVIDED","features":[190]},{"name":"MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION","features":[190]},{"name":"MQ_ERROR_CORRUPTED_INTERNAL_CERTIFICATE","features":[190]},{"name":"MQ_ERROR_CORRUPTED_PERSONAL_CERT_STORE","features":[190]},{"name":"MQ_ERROR_CORRUPTED_SECURITY_DATA","features":[190]},{"name":"MQ_ERROR_COULD_NOT_GET_ACCOUNT_INFO","features":[190]},{"name":"MQ_ERROR_COULD_NOT_GET_USER_SID","features":[190]},{"name":"MQ_ERROR_DELETE_CN_IN_USE","features":[190]},{"name":"MQ_ERROR_DEPEND_WKS_LICENSE_OVERFLOW","features":[190]},{"name":"MQ_ERROR_DS_BIND_ROOT_FOREST","features":[190]},{"name":"MQ_ERROR_DS_ERROR","features":[190]},{"name":"MQ_ERROR_DS_IS_FULL","features":[190]},{"name":"MQ_ERROR_DS_LOCAL_USER","features":[190]},{"name":"MQ_ERROR_DTC_CONNECT","features":[190]},{"name":"MQ_ERROR_ENCRYPTION_PROVIDER_NOT_SUPPORTED","features":[190]},{"name":"MQ_ERROR_FAIL_VERIFY_SIGNATURE_EX","features":[190]},{"name":"MQ_ERROR_FORMATNAME_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_GC_NEEDED","features":[190]},{"name":"MQ_ERROR_GUID_NOT_MATCHING","features":[190]},{"name":"MQ_ERROR_ILLEGAL_CONTEXT","features":[190]},{"name":"MQ_ERROR_ILLEGAL_CURSOR_ACTION","features":[190]},{"name":"MQ_ERROR_ILLEGAL_ENTERPRISE_OPERATION","features":[190]},{"name":"MQ_ERROR_ILLEGAL_FORMATNAME","features":[190]},{"name":"MQ_ERROR_ILLEGAL_MQCOLUMNS","features":[190]},{"name":"MQ_ERROR_ILLEGAL_MQPRIVATEPROPS","features":[190]},{"name":"MQ_ERROR_ILLEGAL_MQQMPROPS","features":[190]},{"name":"MQ_ERROR_ILLEGAL_MQQUEUEPROPS","features":[190]},{"name":"MQ_ERROR_ILLEGAL_OPERATION","features":[190]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_SIZE","features":[190]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VALUE","features":[190]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VT","features":[190]},{"name":"MQ_ERROR_ILLEGAL_PROPID","features":[190]},{"name":"MQ_ERROR_ILLEGAL_QUEUE_PATHNAME","features":[190]},{"name":"MQ_ERROR_ILLEGAL_RELATION","features":[190]},{"name":"MQ_ERROR_ILLEGAL_RESTRICTION_PROPID","features":[190]},{"name":"MQ_ERROR_ILLEGAL_SECURITY_DESCRIPTOR","features":[190]},{"name":"MQ_ERROR_ILLEGAL_SORT","features":[190]},{"name":"MQ_ERROR_ILLEGAL_SORT_PROPID","features":[190]},{"name":"MQ_ERROR_ILLEGAL_USER","features":[190]},{"name":"MQ_ERROR_INSUFFICIENT_PROPERTIES","features":[190]},{"name":"MQ_ERROR_INSUFFICIENT_RESOURCES","features":[190]},{"name":"MQ_ERROR_INTERNAL_USER_CERT_EXIST","features":[190]},{"name":"MQ_ERROR_INVALID_CERTIFICATE","features":[190]},{"name":"MQ_ERROR_INVALID_HANDLE","features":[190]},{"name":"MQ_ERROR_INVALID_OWNER","features":[190]},{"name":"MQ_ERROR_INVALID_PARAMETER","features":[190]},{"name":"MQ_ERROR_IO_TIMEOUT","features":[190]},{"name":"MQ_ERROR_LABEL_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_LABEL_TOO_LONG","features":[190]},{"name":"MQ_ERROR_MACHINE_EXISTS","features":[190]},{"name":"MQ_ERROR_MACHINE_NOT_FOUND","features":[190]},{"name":"MQ_ERROR_MESSAGE_ALREADY_RECEIVED","features":[190]},{"name":"MQ_ERROR_MESSAGE_LOCKED_UNDER_TRANSACTION","features":[190]},{"name":"MQ_ERROR_MESSAGE_NOT_AUTHENTICATED","features":[190]},{"name":"MQ_ERROR_MESSAGE_NOT_FOUND","features":[190]},{"name":"MQ_ERROR_MESSAGE_STORAGE_FAILED","features":[190]},{"name":"MQ_ERROR_MISSING_CONNECTOR_TYPE","features":[190]},{"name":"MQ_ERROR_MQIS_READONLY_MODE","features":[190]},{"name":"MQ_ERROR_MQIS_SERVER_EMPTY","features":[190]},{"name":"MQ_ERROR_MULTI_SORT_KEYS","features":[190]},{"name":"MQ_ERROR_NOT_A_CORRECT_OBJECT_CLASS","features":[190]},{"name":"MQ_ERROR_NOT_SUPPORTED_BY_DEPENDENT_CLIENTS","features":[190]},{"name":"MQ_ERROR_NO_DS","features":[190]},{"name":"MQ_ERROR_NO_ENTRY_POINT_MSMQOCM","features":[190]},{"name":"MQ_ERROR_NO_GC_IN_DOMAIN","features":[190]},{"name":"MQ_ERROR_NO_INTERNAL_USER_CERT","features":[190]},{"name":"MQ_ERROR_NO_MQUSER_OU","features":[190]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_DC","features":[190]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_GC","features":[190]},{"name":"MQ_ERROR_NO_RESPONSE_FROM_OBJECT_SERVER","features":[190]},{"name":"MQ_ERROR_OBJECT_SERVER_NOT_AVAILABLE","features":[190]},{"name":"MQ_ERROR_OPERATION_CANCELLED","features":[190]},{"name":"MQ_ERROR_OPERATION_NOT_SUPPORTED_BY_REMOTE_COMPUTER","features":[190]},{"name":"MQ_ERROR_PRIVILEGE_NOT_HELD","features":[190]},{"name":"MQ_ERROR_PROPERTIES_CONFLICT","features":[190]},{"name":"MQ_ERROR_PROPERTY","features":[190]},{"name":"MQ_ERROR_PROPERTY_NOTALLOWED","features":[190]},{"name":"MQ_ERROR_PROV_NAME_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_PUBLIC_KEY_DOES_NOT_EXIST","features":[190]},{"name":"MQ_ERROR_PUBLIC_KEY_NOT_FOUND","features":[190]},{"name":"MQ_ERROR_QUEUE_DELETED","features":[190]},{"name":"MQ_ERROR_QUEUE_EXISTS","features":[190]},{"name":"MQ_ERROR_QUEUE_NOT_ACTIVE","features":[190]},{"name":"MQ_ERROR_QUEUE_NOT_AVAILABLE","features":[190]},{"name":"MQ_ERROR_QUEUE_NOT_FOUND","features":[190]},{"name":"MQ_ERROR_Q_ADS_PROPERTY_NOT_SUPPORTED","features":[190]},{"name":"MQ_ERROR_Q_DNS_PROPERTY_NOT_SUPPORTED","features":[190]},{"name":"MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE","features":[190]},{"name":"MQ_ERROR_RESOLVE_ADDRESS","features":[190]},{"name":"MQ_ERROR_RESULT_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_SENDERID_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_SENDER_CERT_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_SERVICE_NOT_AVAILABLE","features":[190]},{"name":"MQ_ERROR_SHARING_VIOLATION","features":[190]},{"name":"MQ_ERROR_SIGNATURE_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_STALE_HANDLE","features":[190]},{"name":"MQ_ERROR_SYMM_KEY_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_TOO_MANY_PROPERTIES","features":[190]},{"name":"MQ_ERROR_TRANSACTION_ENLIST","features":[190]},{"name":"MQ_ERROR_TRANSACTION_IMPORT","features":[190]},{"name":"MQ_ERROR_TRANSACTION_SEQUENCE","features":[190]},{"name":"MQ_ERROR_TRANSACTION_USAGE","features":[190]},{"name":"MQ_ERROR_UNINITIALIZED_OBJECT","features":[190]},{"name":"MQ_ERROR_UNSUPPORTED_ACCESS_MODE","features":[190]},{"name":"MQ_ERROR_UNSUPPORTED_CLASS","features":[190]},{"name":"MQ_ERROR_UNSUPPORTED_FORMATNAME_OPERATION","features":[190]},{"name":"MQ_ERROR_UNSUPPORTED_OPERATION","features":[190]},{"name":"MQ_ERROR_USER_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_ERROR_WKS_CANT_SERVE_CLIENT","features":[190]},{"name":"MQ_ERROR_WRITE_NOT_ALLOWED","features":[190]},{"name":"MQ_INFORMATION_DUPLICATE_PROPERTY","features":[190]},{"name":"MQ_INFORMATION_FORMATNAME_BUFFER_TOO_SMALL","features":[190]},{"name":"MQ_INFORMATION_ILLEGAL_PROPERTY","features":[190]},{"name":"MQ_INFORMATION_INTERNAL_USER_CERT_EXIST","features":[190]},{"name":"MQ_INFORMATION_OPERATION_PENDING","features":[190]},{"name":"MQ_INFORMATION_OWNER_IGNORED","features":[190]},{"name":"MQ_INFORMATION_PROPERTY","features":[190]},{"name":"MQ_INFORMATION_PROPERTY_IGNORED","features":[190]},{"name":"MQ_INFORMATION_UNSUPPORTED_PROPERTY","features":[190]},{"name":"MQ_JOURNAL","features":[190]},{"name":"MQ_JOURNAL_NONE","features":[190]},{"name":"MQ_LOOKUP_PEEK_CURRENT","features":[190]},{"name":"MQ_LOOKUP_PEEK_FIRST","features":[190]},{"name":"MQ_LOOKUP_PEEK_LAST","features":[190]},{"name":"MQ_LOOKUP_PEEK_NEXT","features":[190]},{"name":"MQ_LOOKUP_PEEK_PREV","features":[190]},{"name":"MQ_LOOKUP_RECEIVE_ALLOW_PEEK","features":[190]},{"name":"MQ_LOOKUP_RECEIVE_CURRENT","features":[190]},{"name":"MQ_LOOKUP_RECEIVE_FIRST","features":[190]},{"name":"MQ_LOOKUP_RECEIVE_LAST","features":[190]},{"name":"MQ_LOOKUP_RECEIVE_NEXT","features":[190]},{"name":"MQ_LOOKUP_RECEIVE_PREV","features":[190]},{"name":"MQ_MAX_MSG_LABEL_LEN","features":[190]},{"name":"MQ_MAX_PRIORITY","features":[190]},{"name":"MQ_MAX_Q_LABEL_LEN","features":[190]},{"name":"MQ_MAX_Q_NAME_LEN","features":[190]},{"name":"MQ_MIN_PRIORITY","features":[190]},{"name":"MQ_MOVE_ACCESS","features":[190]},{"name":"MQ_MTS_TRANSACTION","features":[190]},{"name":"MQ_NO_TRANSACTION","features":[190]},{"name":"MQ_OK","features":[190]},{"name":"MQ_PEEK_ACCESS","features":[190]},{"name":"MQ_PRIV_LEVEL_BODY","features":[190]},{"name":"MQ_PRIV_LEVEL_NONE","features":[190]},{"name":"MQ_PRIV_LEVEL_OPTIONAL","features":[190]},{"name":"MQ_QTYPE_REPORT","features":[190]},{"name":"MQ_QTYPE_TEST","features":[190]},{"name":"MQ_QUEUE_STATE_CONNECTED","features":[190]},{"name":"MQ_QUEUE_STATE_DISCONNECTED","features":[190]},{"name":"MQ_QUEUE_STATE_DISCONNECTING","features":[190]},{"name":"MQ_QUEUE_STATE_LOCAL_CONNECTION","features":[190]},{"name":"MQ_QUEUE_STATE_LOCKED","features":[190]},{"name":"MQ_QUEUE_STATE_NEEDVALIDATE","features":[190]},{"name":"MQ_QUEUE_STATE_NONACTIVE","features":[190]},{"name":"MQ_QUEUE_STATE_ONHOLD","features":[190]},{"name":"MQ_QUEUE_STATE_WAITING","features":[190]},{"name":"MQ_RECEIVE_ACCESS","features":[190]},{"name":"MQ_SEND_ACCESS","features":[190]},{"name":"MQ_SINGLE_MESSAGE","features":[190]},{"name":"MQ_STATUS_FOREIGN","features":[190]},{"name":"MQ_STATUS_NOT_FOREIGN","features":[190]},{"name":"MQ_STATUS_UNKNOWN","features":[190]},{"name":"MQ_TRANSACTIONAL","features":[190]},{"name":"MQ_TRANSACTIONAL_NONE","features":[190]},{"name":"MQ_TYPE_CONNECTOR","features":[190]},{"name":"MQ_TYPE_MACHINE","features":[190]},{"name":"MQ_TYPE_MULTICAST","features":[190]},{"name":"MQ_TYPE_PRIVATE","features":[190]},{"name":"MQ_TYPE_PUBLIC","features":[190]},{"name":"MQ_XACT_STATUS_NOT_XACT","features":[190]},{"name":"MQ_XACT_STATUS_UNKNOWN","features":[190]},{"name":"MQ_XACT_STATUS_XACT","features":[190]},{"name":"MQ_XA_TRANSACTION","features":[190]},{"name":"MSMQApplication","features":[190]},{"name":"MSMQCollection","features":[190]},{"name":"MSMQCoordinatedTransactionDispenser","features":[190]},{"name":"MSMQDestination","features":[190]},{"name":"MSMQEvent","features":[190]},{"name":"MSMQManagement","features":[190]},{"name":"MSMQMessage","features":[190]},{"name":"MSMQOutgoingQueueManagement","features":[190]},{"name":"MSMQQuery","features":[190]},{"name":"MSMQQueue","features":[190]},{"name":"MSMQQueueInfo","features":[190]},{"name":"MSMQQueueInfos","features":[190]},{"name":"MSMQQueueManagement","features":[190]},{"name":"MSMQTransaction","features":[190]},{"name":"MSMQTransactionDispenser","features":[190]},{"name":"MSMQ_CONNECTED","features":[190]},{"name":"MSMQ_DISCONNECTED","features":[190]},{"name":"PMQRECEIVECALLBACK","features":[3,65,8,190,44]},{"name":"PREQ","features":[190]},{"name":"PRGE","features":[190]},{"name":"PRGT","features":[190]},{"name":"PRLE","features":[190]},{"name":"PRLT","features":[190]},{"name":"PRNE","features":[190]},{"name":"PROPID_MGMT_MSMQ_ACTIVEQUEUES","features":[190]},{"name":"PROPID_MGMT_MSMQ_BASE","features":[190]},{"name":"PROPID_MGMT_MSMQ_BYTES_IN_ALL_QUEUES","features":[190]},{"name":"PROPID_MGMT_MSMQ_CONNECTED","features":[190]},{"name":"PROPID_MGMT_MSMQ_DSSERVER","features":[190]},{"name":"PROPID_MGMT_MSMQ_PRIVATEQ","features":[190]},{"name":"PROPID_MGMT_MSMQ_TYPE","features":[190]},{"name":"PROPID_MGMT_QUEUE_BASE","features":[190]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_JOURNAL","features":[190]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_QUEUE","features":[190]},{"name":"PROPID_MGMT_QUEUE_CONNECTION_HISTORY","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_FIRST_NON_ACK","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_COUNT","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_TIME","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_NON_ACK","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_NEXT_SEQ","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_ACK_COUNT","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_READ_COUNT","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_COUNT","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_INTERVAL","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_TIME","features":[190]},{"name":"PROPID_MGMT_QUEUE_EOD_SOURCE_INFO","features":[190]},{"name":"PROPID_MGMT_QUEUE_FOREIGN","features":[190]},{"name":"PROPID_MGMT_QUEUE_FORMATNAME","features":[190]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_MESSAGE_COUNT","features":[190]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_USED_QUOTA","features":[190]},{"name":"PROPID_MGMT_QUEUE_LOCATION","features":[190]},{"name":"PROPID_MGMT_QUEUE_MESSAGE_COUNT","features":[190]},{"name":"PROPID_MGMT_QUEUE_NEXTHOPS","features":[190]},{"name":"PROPID_MGMT_QUEUE_PATHNAME","features":[190]},{"name":"PROPID_MGMT_QUEUE_STATE","features":[190]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_COUNT","features":[190]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_NAMES","features":[190]},{"name":"PROPID_MGMT_QUEUE_TYPE","features":[190]},{"name":"PROPID_MGMT_QUEUE_USED_QUOTA","features":[190]},{"name":"PROPID_MGMT_QUEUE_XACT","features":[190]},{"name":"PROPID_M_ABORT_COUNT","features":[190]},{"name":"PROPID_M_ACKNOWLEDGE","features":[190]},{"name":"PROPID_M_ADMIN_QUEUE","features":[190]},{"name":"PROPID_M_ADMIN_QUEUE_LEN","features":[190]},{"name":"PROPID_M_APPSPECIFIC","features":[190]},{"name":"PROPID_M_ARRIVEDTIME","features":[190]},{"name":"PROPID_M_AUTHENTICATED","features":[190]},{"name":"PROPID_M_AUTHENTICATED_EX","features":[190]},{"name":"PROPID_M_AUTH_LEVEL","features":[190]},{"name":"PROPID_M_BASE","features":[190]},{"name":"PROPID_M_BODY","features":[190]},{"name":"PROPID_M_BODY_SIZE","features":[190]},{"name":"PROPID_M_BODY_TYPE","features":[190]},{"name":"PROPID_M_CLASS","features":[190]},{"name":"PROPID_M_COMPOUND_MESSAGE","features":[190]},{"name":"PROPID_M_COMPOUND_MESSAGE_SIZE","features":[190]},{"name":"PROPID_M_CONNECTOR_TYPE","features":[190]},{"name":"PROPID_M_CORRELATIONID","features":[190]},{"name":"PROPID_M_CORRELATIONID_SIZE","features":[190]},{"name":"PROPID_M_DEADLETTER_QUEUE","features":[190]},{"name":"PROPID_M_DEADLETTER_QUEUE_LEN","features":[190]},{"name":"PROPID_M_DELIVERY","features":[190]},{"name":"PROPID_M_DEST_FORMAT_NAME","features":[190]},{"name":"PROPID_M_DEST_FORMAT_NAME_LEN","features":[190]},{"name":"PROPID_M_DEST_QUEUE","features":[190]},{"name":"PROPID_M_DEST_QUEUE_LEN","features":[190]},{"name":"PROPID_M_DEST_SYMM_KEY","features":[190]},{"name":"PROPID_M_DEST_SYMM_KEY_LEN","features":[190]},{"name":"PROPID_M_ENCRYPTION_ALG","features":[190]},{"name":"PROPID_M_EXTENSION","features":[190]},{"name":"PROPID_M_EXTENSION_LEN","features":[190]},{"name":"PROPID_M_FIRST_IN_XACT","features":[190]},{"name":"PROPID_M_HASH_ALG","features":[190]},{"name":"PROPID_M_JOURNAL","features":[190]},{"name":"PROPID_M_LABEL","features":[190]},{"name":"PROPID_M_LABEL_LEN","features":[190]},{"name":"PROPID_M_LAST_IN_XACT","features":[190]},{"name":"PROPID_M_LAST_MOVE_TIME","features":[190]},{"name":"PROPID_M_LOOKUPID","features":[190]},{"name":"PROPID_M_MOVE_COUNT","features":[190]},{"name":"PROPID_M_MSGID","features":[190]},{"name":"PROPID_M_MSGID_SIZE","features":[190]},{"name":"PROPID_M_PRIORITY","features":[190]},{"name":"PROPID_M_PRIV_LEVEL","features":[190]},{"name":"PROPID_M_PROV_NAME","features":[190]},{"name":"PROPID_M_PROV_NAME_LEN","features":[190]},{"name":"PROPID_M_PROV_TYPE","features":[190]},{"name":"PROPID_M_RESP_FORMAT_NAME","features":[190]},{"name":"PROPID_M_RESP_FORMAT_NAME_LEN","features":[190]},{"name":"PROPID_M_RESP_QUEUE","features":[190]},{"name":"PROPID_M_RESP_QUEUE_LEN","features":[190]},{"name":"PROPID_M_SECURITY_CONTEXT","features":[190]},{"name":"PROPID_M_SENDERID","features":[190]},{"name":"PROPID_M_SENDERID_LEN","features":[190]},{"name":"PROPID_M_SENDERID_TYPE","features":[190]},{"name":"PROPID_M_SENDER_CERT","features":[190]},{"name":"PROPID_M_SENDER_CERT_LEN","features":[190]},{"name":"PROPID_M_SENTTIME","features":[190]},{"name":"PROPID_M_SIGNATURE","features":[190]},{"name":"PROPID_M_SIGNATURE_LEN","features":[190]},{"name":"PROPID_M_SOAP_BODY","features":[190]},{"name":"PROPID_M_SOAP_ENVELOPE","features":[190]},{"name":"PROPID_M_SOAP_ENVELOPE_LEN","features":[190]},{"name":"PROPID_M_SOAP_HEADER","features":[190]},{"name":"PROPID_M_SRC_MACHINE_ID","features":[190]},{"name":"PROPID_M_TIME_TO_BE_RECEIVED","features":[190]},{"name":"PROPID_M_TIME_TO_REACH_QUEUE","features":[190]},{"name":"PROPID_M_TRACE","features":[190]},{"name":"PROPID_M_VERSION","features":[190]},{"name":"PROPID_M_XACTID","features":[190]},{"name":"PROPID_M_XACTID_SIZE","features":[190]},{"name":"PROPID_M_XACT_STATUS_QUEUE","features":[190]},{"name":"PROPID_M_XACT_STATUS_QUEUE_LEN","features":[190]},{"name":"PROPID_PC_BASE","features":[190]},{"name":"PROPID_PC_DS_ENABLED","features":[190]},{"name":"PROPID_PC_VERSION","features":[190]},{"name":"PROPID_QM_BASE","features":[190]},{"name":"PROPID_QM_CONNECTION","features":[190]},{"name":"PROPID_QM_ENCRYPTION_PK","features":[190]},{"name":"PROPID_QM_ENCRYPTION_PK_AES","features":[190]},{"name":"PROPID_QM_ENCRYPTION_PK_BASE","features":[190]},{"name":"PROPID_QM_ENCRYPTION_PK_ENHANCED","features":[190]},{"name":"PROPID_QM_MACHINE_ID","features":[190]},{"name":"PROPID_QM_PATHNAME","features":[190]},{"name":"PROPID_QM_PATHNAME_DNS","features":[190]},{"name":"PROPID_QM_SITE_ID","features":[190]},{"name":"PROPID_Q_ADS_PATH","features":[190]},{"name":"PROPID_Q_AUTHENTICATE","features":[190]},{"name":"PROPID_Q_BASE","features":[190]},{"name":"PROPID_Q_BASEPRIORITY","features":[190]},{"name":"PROPID_Q_CREATE_TIME","features":[190]},{"name":"PROPID_Q_INSTANCE","features":[190]},{"name":"PROPID_Q_JOURNAL","features":[190]},{"name":"PROPID_Q_JOURNAL_QUOTA","features":[190]},{"name":"PROPID_Q_LABEL","features":[190]},{"name":"PROPID_Q_MODIFY_TIME","features":[190]},{"name":"PROPID_Q_MULTICAST_ADDRESS","features":[190]},{"name":"PROPID_Q_PATHNAME","features":[190]},{"name":"PROPID_Q_PATHNAME_DNS","features":[190]},{"name":"PROPID_Q_PRIV_LEVEL","features":[190]},{"name":"PROPID_Q_QUOTA","features":[190]},{"name":"PROPID_Q_TRANSACTION","features":[190]},{"name":"PROPID_Q_TYPE","features":[190]},{"name":"QUERY_SORTASCEND","features":[190]},{"name":"QUERY_SORTDESCEND","features":[190]},{"name":"QUEUE_ACTION_EOD_RESEND","features":[190]},{"name":"QUEUE_ACTION_PAUSE","features":[190]},{"name":"QUEUE_ACTION_RESUME","features":[190]},{"name":"QUEUE_STATE","features":[190]},{"name":"QUEUE_TYPE","features":[190]},{"name":"RELOPS","features":[190]},{"name":"REL_EQ","features":[190]},{"name":"REL_GE","features":[190]},{"name":"REL_GT","features":[190]},{"name":"REL_LE","features":[190]},{"name":"REL_LT","features":[190]},{"name":"REL_NEQ","features":[190]},{"name":"REL_NOP","features":[190]},{"name":"SEQUENCE_INFO","features":[190]},{"name":"XACT_STATUS","features":[190]},{"name":"_DMSMQEventEvents","features":[190]}],"585":[{"name":"PERCEPTIONFIELD_StateStream_TimeStamps","features":[191]},{"name":"PERCEPTION_PAYLOAD_FIELD","features":[191]},{"name":"PERCEPTION_STATE_STREAM_TIMESTAMPS","features":[191]}],"587":[{"name":"ACTIVATEFLAGS","features":[158]},{"name":"ACTIVATE_WINDOWLESS","features":[158]},{"name":"ACTIVEOBJECT_FLAGS","features":[158]},{"name":"ACTIVEOBJECT_STRONG","features":[158]},{"name":"ACTIVEOBJECT_WEAK","features":[158]},{"name":"ARRAYDESC","features":[43,158,44]},{"name":"BINDSPEED","features":[158]},{"name":"BINDSPEED_IMMEDIATE","features":[158]},{"name":"BINDSPEED_INDEFINITE","features":[158]},{"name":"BINDSPEED_MODERATE","features":[158]},{"name":"BUSY_DIALOG_FLAGS","features":[158]},{"name":"BZ_DISABLECANCELBUTTON","features":[158]},{"name":"BZ_DISABLERETRYBUTTON","features":[158]},{"name":"BZ_DISABLESWITCHTOBUTTON","features":[158]},{"name":"BZ_NOTRESPONDINGDIALOG","features":[158]},{"name":"BstrFromVector","features":[43,158]},{"name":"CADWORD","features":[158]},{"name":"CALPOLESTR","features":[158]},{"name":"CAUUID","features":[158]},{"name":"CF_BITMAP","features":[158]},{"name":"CF_CONVERTONLY","features":[158]},{"name":"CF_DIB","features":[158]},{"name":"CF_DIBV5","features":[158]},{"name":"CF_DIF","features":[158]},{"name":"CF_DISABLEACTIVATEAS","features":[158]},{"name":"CF_DISABLEDISPLAYASICON","features":[158]},{"name":"CF_DSPBITMAP","features":[158]},{"name":"CF_DSPENHMETAFILE","features":[158]},{"name":"CF_DSPMETAFILEPICT","features":[158]},{"name":"CF_DSPTEXT","features":[158]},{"name":"CF_ENHMETAFILE","features":[158]},{"name":"CF_GDIOBJFIRST","features":[158]},{"name":"CF_GDIOBJLAST","features":[158]},{"name":"CF_HDROP","features":[158]},{"name":"CF_HIDECHANGEICON","features":[158]},{"name":"CF_LOCALE","features":[158]},{"name":"CF_MAX","features":[158]},{"name":"CF_METAFILEPICT","features":[158]},{"name":"CF_OEMTEXT","features":[158]},{"name":"CF_OWNERDISPLAY","features":[158]},{"name":"CF_PALETTE","features":[158]},{"name":"CF_PENDATA","features":[158]},{"name":"CF_PRIVATEFIRST","features":[158]},{"name":"CF_PRIVATELAST","features":[158]},{"name":"CF_RIFF","features":[158]},{"name":"CF_SELECTACTIVATEAS","features":[158]},{"name":"CF_SELECTCONVERTTO","features":[158]},{"name":"CF_SETACTIVATEDEFAULT","features":[158]},{"name":"CF_SETCONVERTDEFAULT","features":[158]},{"name":"CF_SHOWHELPBUTTON","features":[158]},{"name":"CF_SYLK","features":[158]},{"name":"CF_TEXT","features":[158]},{"name":"CF_TIFF","features":[158]},{"name":"CF_UNICODETEXT","features":[158]},{"name":"CF_WAVE","features":[158]},{"name":"CHANGEKIND","features":[158]},{"name":"CHANGEKIND_ADDMEMBER","features":[158]},{"name":"CHANGEKIND_CHANGEFAILED","features":[158]},{"name":"CHANGEKIND_DELETEMEMBER","features":[158]},{"name":"CHANGEKIND_GENERAL","features":[158]},{"name":"CHANGEKIND_INVALIDATE","features":[158]},{"name":"CHANGEKIND_MAX","features":[158]},{"name":"CHANGEKIND_SETDOCUMENTATION","features":[158]},{"name":"CHANGEKIND_SETNAMES","features":[158]},{"name":"CHANGE_ICON_FLAGS","features":[158]},{"name":"CHANGE_SOURCE_FLAGS","features":[158]},{"name":"CIF_SELECTCURRENT","features":[158]},{"name":"CIF_SELECTDEFAULT","features":[158]},{"name":"CIF_SELECTFROMFILE","features":[158]},{"name":"CIF_SHOWHELP","features":[158]},{"name":"CIF_USEICONEXE","features":[158]},{"name":"CLEANLOCALSTORAGE","features":[158]},{"name":"CLIPBOARD_FORMAT","features":[158]},{"name":"CLSID_CColorPropPage","features":[158]},{"name":"CLSID_CFontPropPage","features":[158]},{"name":"CLSID_CPicturePropPage","features":[158]},{"name":"CLSID_ConvertVBX","features":[158]},{"name":"CLSID_PersistPropset","features":[158]},{"name":"CLSID_StdFont","features":[158]},{"name":"CLSID_StdPicture","features":[158]},{"name":"CONNECT_E_ADVISELIMIT","features":[158]},{"name":"CONNECT_E_CANNOTCONNECT","features":[158]},{"name":"CONNECT_E_FIRST","features":[158]},{"name":"CONNECT_E_LAST","features":[158]},{"name":"CONNECT_E_NOCONNECTION","features":[158]},{"name":"CONNECT_E_OVERRIDDEN","features":[158]},{"name":"CONNECT_S_FIRST","features":[158]},{"name":"CONNECT_S_LAST","features":[158]},{"name":"CONTROLINFO","features":[158,52]},{"name":"CSF_EXPLORER","features":[158]},{"name":"CSF_ONLYGETSOURCE","features":[158]},{"name":"CSF_SHOWHELP","features":[158]},{"name":"CSF_VALIDSOURCE","features":[158]},{"name":"CTL_E_ILLEGALFUNCTIONCALL","features":[158]},{"name":"CTRLINFO","features":[158]},{"name":"CTRLINFO_EATS_ESCAPE","features":[158]},{"name":"CTRLINFO_EATS_RETURN","features":[158]},{"name":"ClearCustData","features":[3,43,158,44]},{"name":"CreateDispTypeInfo","features":[43,158,44]},{"name":"CreateErrorInfo","features":[158]},{"name":"CreateOleAdviseHolder","features":[158]},{"name":"CreateStdDispatch","features":[158]},{"name":"CreateTypeLib","features":[43,158]},{"name":"CreateTypeLib2","features":[43,158]},{"name":"DD_DEFDRAGDELAY","features":[158]},{"name":"DD_DEFDRAGMINDIST","features":[158]},{"name":"DD_DEFSCROLLDELAY","features":[158]},{"name":"DD_DEFSCROLLINSET","features":[158]},{"name":"DD_DEFSCROLLINTERVAL","features":[158]},{"name":"DISCARDCACHE","features":[158]},{"name":"DISCARDCACHE_NOSAVE","features":[158]},{"name":"DISCARDCACHE_SAVEIFDIRTY","features":[158]},{"name":"DISPATCH_CONSTRUCT","features":[158]},{"name":"DISPID_ABOUTBOX","features":[158]},{"name":"DISPID_ACCELERATOR","features":[158]},{"name":"DISPID_ADDITEM","features":[158]},{"name":"DISPID_AMBIENT_APPEARANCE","features":[158]},{"name":"DISPID_AMBIENT_AUTOCLIP","features":[158]},{"name":"DISPID_AMBIENT_BACKCOLOR","features":[158]},{"name":"DISPID_AMBIENT_CHARSET","features":[158]},{"name":"DISPID_AMBIENT_CODEPAGE","features":[158]},{"name":"DISPID_AMBIENT_DISPLAYASDEFAULT","features":[158]},{"name":"DISPID_AMBIENT_DISPLAYNAME","features":[158]},{"name":"DISPID_AMBIENT_FONT","features":[158]},{"name":"DISPID_AMBIENT_FORECOLOR","features":[158]},{"name":"DISPID_AMBIENT_LOCALEID","features":[158]},{"name":"DISPID_AMBIENT_MESSAGEREFLECT","features":[158]},{"name":"DISPID_AMBIENT_PALETTE","features":[158]},{"name":"DISPID_AMBIENT_RIGHTTOLEFT","features":[158]},{"name":"DISPID_AMBIENT_SCALEUNITS","features":[158]},{"name":"DISPID_AMBIENT_SHOWGRABHANDLES","features":[158]},{"name":"DISPID_AMBIENT_SHOWHATCHING","features":[158]},{"name":"DISPID_AMBIENT_SUPPORTSMNEMONICS","features":[158]},{"name":"DISPID_AMBIENT_TEXTALIGN","features":[158]},{"name":"DISPID_AMBIENT_TOPTOBOTTOM","features":[158]},{"name":"DISPID_AMBIENT_TRANSFERPRIORITY","features":[158]},{"name":"DISPID_AMBIENT_UIDEAD","features":[158]},{"name":"DISPID_AMBIENT_USERMODE","features":[158]},{"name":"DISPID_APPEARANCE","features":[158]},{"name":"DISPID_AUTOSIZE","features":[158]},{"name":"DISPID_BACKCOLOR","features":[158]},{"name":"DISPID_BACKSTYLE","features":[158]},{"name":"DISPID_BORDERCOLOR","features":[158]},{"name":"DISPID_BORDERSTYLE","features":[158]},{"name":"DISPID_BORDERVISIBLE","features":[158]},{"name":"DISPID_BORDERWIDTH","features":[158]},{"name":"DISPID_CAPTION","features":[158]},{"name":"DISPID_CLEAR","features":[158]},{"name":"DISPID_CLICK","features":[158]},{"name":"DISPID_CLICK_VALUE","features":[158]},{"name":"DISPID_COLLECT","features":[158]},{"name":"DISPID_COLUMN","features":[158]},{"name":"DISPID_CONSTRUCTOR","features":[158]},{"name":"DISPID_DBLCLICK","features":[158]},{"name":"DISPID_DESTRUCTOR","features":[158]},{"name":"DISPID_DISPLAYSTYLE","features":[158]},{"name":"DISPID_DOCLICK","features":[158]},{"name":"DISPID_DRAWMODE","features":[158]},{"name":"DISPID_DRAWSTYLE","features":[158]},{"name":"DISPID_DRAWWIDTH","features":[158]},{"name":"DISPID_Delete","features":[158]},{"name":"DISPID_ENABLED","features":[158]},{"name":"DISPID_ENTERKEYBEHAVIOR","features":[158]},{"name":"DISPID_ERROREVENT","features":[158]},{"name":"DISPID_EVALUATE","features":[158]},{"name":"DISPID_FILLCOLOR","features":[158]},{"name":"DISPID_FILLSTYLE","features":[158]},{"name":"DISPID_FONT","features":[158]},{"name":"DISPID_FONT_BOLD","features":[158]},{"name":"DISPID_FONT_CHANGED","features":[158]},{"name":"DISPID_FONT_CHARSET","features":[158]},{"name":"DISPID_FONT_ITALIC","features":[158]},{"name":"DISPID_FONT_NAME","features":[158]},{"name":"DISPID_FONT_SIZE","features":[158]},{"name":"DISPID_FONT_STRIKE","features":[158]},{"name":"DISPID_FONT_UNDER","features":[158]},{"name":"DISPID_FONT_WEIGHT","features":[158]},{"name":"DISPID_FORECOLOR","features":[158]},{"name":"DISPID_GROUPNAME","features":[158]},{"name":"DISPID_HWND","features":[158]},{"name":"DISPID_IMEMODE","features":[158]},{"name":"DISPID_KEYDOWN","features":[158]},{"name":"DISPID_KEYPRESS","features":[158]},{"name":"DISPID_KEYUP","features":[158]},{"name":"DISPID_LIST","features":[158]},{"name":"DISPID_LISTCOUNT","features":[158]},{"name":"DISPID_LISTINDEX","features":[158]},{"name":"DISPID_MAXLENGTH","features":[158]},{"name":"DISPID_MOUSEDOWN","features":[158]},{"name":"DISPID_MOUSEICON","features":[158]},{"name":"DISPID_MOUSEMOVE","features":[158]},{"name":"DISPID_MOUSEPOINTER","features":[158]},{"name":"DISPID_MOUSEUP","features":[158]},{"name":"DISPID_MULTILINE","features":[158]},{"name":"DISPID_MULTISELECT","features":[158]},{"name":"DISPID_NEWENUM","features":[158]},{"name":"DISPID_NUMBEROFCOLUMNS","features":[158]},{"name":"DISPID_NUMBEROFROWS","features":[158]},{"name":"DISPID_Name","features":[158]},{"name":"DISPID_Object","features":[158]},{"name":"DISPID_PASSWORDCHAR","features":[158]},{"name":"DISPID_PICTURE","features":[158]},{"name":"DISPID_PICT_HANDLE","features":[158]},{"name":"DISPID_PICT_HEIGHT","features":[158]},{"name":"DISPID_PICT_HPAL","features":[158]},{"name":"DISPID_PICT_RENDER","features":[158]},{"name":"DISPID_PICT_TYPE","features":[158]},{"name":"DISPID_PICT_WIDTH","features":[158]},{"name":"DISPID_PROPERTYPUT","features":[158]},{"name":"DISPID_Parent","features":[158]},{"name":"DISPID_READYSTATE","features":[158]},{"name":"DISPID_READYSTATECHANGE","features":[158]},{"name":"DISPID_REFRESH","features":[158]},{"name":"DISPID_REMOVEITEM","features":[158]},{"name":"DISPID_RIGHTTOLEFT","features":[158]},{"name":"DISPID_SCROLLBARS","features":[158]},{"name":"DISPID_SELECTED","features":[158]},{"name":"DISPID_SELLENGTH","features":[158]},{"name":"DISPID_SELSTART","features":[158]},{"name":"DISPID_SELTEXT","features":[158]},{"name":"DISPID_STARTENUM","features":[158]},{"name":"DISPID_TABKEYBEHAVIOR","features":[158]},{"name":"DISPID_TABSTOP","features":[158]},{"name":"DISPID_TEXT","features":[158]},{"name":"DISPID_THIS","features":[158]},{"name":"DISPID_TOPTOBOTTOM","features":[158]},{"name":"DISPID_UNKNOWN","features":[158]},{"name":"DISPID_VALID","features":[158]},{"name":"DISPID_VALUE","features":[158]},{"name":"DISPID_WORDWRAP","features":[158]},{"name":"DOCMISC","features":[158]},{"name":"DOCMISC_CANCREATEMULTIPLEVIEWS","features":[158]},{"name":"DOCMISC_CANTOPENEDIT","features":[158]},{"name":"DOCMISC_NOFILESUPPORT","features":[158]},{"name":"DOCMISC_SUPPORTCOMPLEXRECTANGLES","features":[158]},{"name":"DROPEFFECT","features":[158]},{"name":"DROPEFFECT_COPY","features":[158]},{"name":"DROPEFFECT_LINK","features":[158]},{"name":"DROPEFFECT_MOVE","features":[158]},{"name":"DROPEFFECT_NONE","features":[158]},{"name":"DROPEFFECT_SCROLL","features":[158]},{"name":"DVASPECTINFO","features":[158]},{"name":"DVASPECTINFOFLAG","features":[158]},{"name":"DVASPECTINFOFLAG_CANOPTIMIZE","features":[158]},{"name":"DVEXTENTINFO","features":[3,158]},{"name":"DVEXTENTMODE","features":[158]},{"name":"DVEXTENT_CONTENT","features":[158]},{"name":"DVEXTENT_INTEGRAL","features":[158]},{"name":"DispCallFunc","features":[3,43,158,44]},{"name":"DispGetIDsOfNames","features":[158]},{"name":"DispGetParam","features":[3,43,158,44]},{"name":"DispInvoke","features":[3,43,158,44]},{"name":"DoDragDrop","features":[158]},{"name":"EDIT_LINKS_FLAGS","features":[158]},{"name":"ELF_DISABLECANCELLINK","features":[158]},{"name":"ELF_DISABLECHANGESOURCE","features":[158]},{"name":"ELF_DISABLEOPENSOURCE","features":[158]},{"name":"ELF_DISABLEUPDATENOW","features":[158]},{"name":"ELF_SHOWHELP","features":[158]},{"name":"EMBDHLP_CREATENOW","features":[158]},{"name":"EMBDHLP_DELAYCREATE","features":[158]},{"name":"EMBDHLP_FLAGS","features":[158]},{"name":"EMBDHLP_INPROC_HANDLER","features":[158]},{"name":"EMBDHLP_INPROC_SERVER","features":[158]},{"name":"ENUM_CONTROLS_WHICH_FLAGS","features":[158]},{"name":"FDEX_PROP_FLAGS","features":[158]},{"name":"FONTDESC","features":[3,43,158]},{"name":"GCW_WCH_SIBLING","features":[158]},{"name":"GC_WCH_ALL","features":[158]},{"name":"GC_WCH_CONTAINED","features":[158]},{"name":"GC_WCH_CONTAINER","features":[158]},{"name":"GC_WCH_FONLYAFTER","features":[158]},{"name":"GC_WCH_FONLYBEFORE","features":[158]},{"name":"GC_WCH_FREVERSEDIR","features":[158]},{"name":"GC_WCH_FSELECTED","features":[158]},{"name":"GC_WCH_SIBLING","features":[158]},{"name":"GUIDKIND","features":[158]},{"name":"GUIDKIND_DEFAULT_SOURCE_DISP_IID","features":[158]},{"name":"GUID_CHECKVALUEEXCLUSIVE","features":[158]},{"name":"GUID_COLOR","features":[158]},{"name":"GUID_FONTBOLD","features":[158]},{"name":"GUID_FONTITALIC","features":[158]},{"name":"GUID_FONTNAME","features":[158]},{"name":"GUID_FONTSIZE","features":[158]},{"name":"GUID_FONTSTRIKETHROUGH","features":[158]},{"name":"GUID_FONTUNDERSCORE","features":[158]},{"name":"GUID_HANDLE","features":[158]},{"name":"GUID_HIMETRIC","features":[158]},{"name":"GUID_OPTIONVALUEEXCLUSIVE","features":[158]},{"name":"GUID_TRISTATE","features":[158]},{"name":"GUID_XPOS","features":[158]},{"name":"GUID_XPOSPIXEL","features":[158]},{"name":"GUID_XSIZE","features":[158]},{"name":"GUID_XSIZEPIXEL","features":[158]},{"name":"GUID_YPOS","features":[158]},{"name":"GUID_YPOSPIXEL","features":[158]},{"name":"GUID_YSIZE","features":[158]},{"name":"GUID_YSIZEPIXEL","features":[158]},{"name":"GetActiveObject","features":[158]},{"name":"GetAltMonthNames","features":[158]},{"name":"GetRecordInfoFromGuids","features":[158]},{"name":"GetRecordInfoFromTypeInfo","features":[158]},{"name":"HITRESULT","features":[158]},{"name":"HITRESULT_CLOSE","features":[158]},{"name":"HITRESULT_HIT","features":[158]},{"name":"HITRESULT_OUTSIDE","features":[158]},{"name":"HITRESULT_TRANSPARENT","features":[158]},{"name":"HRGN_UserFree","features":[14,158]},{"name":"HRGN_UserFree64","features":[14,158]},{"name":"HRGN_UserMarshal","features":[14,158]},{"name":"HRGN_UserMarshal64","features":[14,158]},{"name":"HRGN_UserSize","features":[14,158]},{"name":"HRGN_UserSize64","features":[14,158]},{"name":"HRGN_UserUnmarshal","features":[14,158]},{"name":"HRGN_UserUnmarshal64","features":[14,158]},{"name":"IAdviseSinkEx","features":[158]},{"name":"ICanHandleException","features":[158]},{"name":"IClassFactory2","features":[158]},{"name":"IContinue","features":[158]},{"name":"IContinueCallback","features":[158]},{"name":"ICreateErrorInfo","features":[158]},{"name":"ICreateTypeInfo","features":[158]},{"name":"ICreateTypeInfo2","features":[158]},{"name":"ICreateTypeLib","features":[158]},{"name":"ICreateTypeLib2","features":[158]},{"name":"IDC_BZ_ICON","features":[158]},{"name":"IDC_BZ_MESSAGE1","features":[158]},{"name":"IDC_BZ_RETRY","features":[158]},{"name":"IDC_BZ_SWITCHTO","features":[158]},{"name":"IDC_CI_BROWSE","features":[158]},{"name":"IDC_CI_CURRENT","features":[158]},{"name":"IDC_CI_CURRENTICON","features":[158]},{"name":"IDC_CI_DEFAULT","features":[158]},{"name":"IDC_CI_DEFAULTICON","features":[158]},{"name":"IDC_CI_FROMFILE","features":[158]},{"name":"IDC_CI_FROMFILEEDIT","features":[158]},{"name":"IDC_CI_GROUP","features":[158]},{"name":"IDC_CI_ICONDISPLAY","features":[158]},{"name":"IDC_CI_ICONLIST","features":[158]},{"name":"IDC_CI_LABEL","features":[158]},{"name":"IDC_CI_LABELEDIT","features":[158]},{"name":"IDC_CV_ACTIVATEAS","features":[158]},{"name":"IDC_CV_ACTIVATELIST","features":[158]},{"name":"IDC_CV_CHANGEICON","features":[158]},{"name":"IDC_CV_CONVERTLIST","features":[158]},{"name":"IDC_CV_CONVERTTO","features":[158]},{"name":"IDC_CV_DISPLAYASICON","features":[158]},{"name":"IDC_CV_ICONDISPLAY","features":[158]},{"name":"IDC_CV_OBJECTTYPE","features":[158]},{"name":"IDC_CV_RESULTTEXT","features":[158]},{"name":"IDC_EL_AUTOMATIC","features":[158]},{"name":"IDC_EL_CANCELLINK","features":[158]},{"name":"IDC_EL_CHANGESOURCE","features":[158]},{"name":"IDC_EL_COL1","features":[158]},{"name":"IDC_EL_COL2","features":[158]},{"name":"IDC_EL_COL3","features":[158]},{"name":"IDC_EL_LINKSLISTBOX","features":[158]},{"name":"IDC_EL_LINKSOURCE","features":[158]},{"name":"IDC_EL_LINKTYPE","features":[158]},{"name":"IDC_EL_MANUAL","features":[158]},{"name":"IDC_EL_OPENSOURCE","features":[158]},{"name":"IDC_EL_UPDATENOW","features":[158]},{"name":"IDC_GP_CONVERT","features":[158]},{"name":"IDC_GP_OBJECTICON","features":[158]},{"name":"IDC_GP_OBJECTLOCATION","features":[158]},{"name":"IDC_GP_OBJECTNAME","features":[158]},{"name":"IDC_GP_OBJECTSIZE","features":[158]},{"name":"IDC_GP_OBJECTTYPE","features":[158]},{"name":"IDC_IO_ADDCONTROL","features":[158]},{"name":"IDC_IO_CHANGEICON","features":[158]},{"name":"IDC_IO_CONTROLTYPELIST","features":[158]},{"name":"IDC_IO_CREATEFROMFILE","features":[158]},{"name":"IDC_IO_CREATENEW","features":[158]},{"name":"IDC_IO_DISPLAYASICON","features":[158]},{"name":"IDC_IO_FILE","features":[158]},{"name":"IDC_IO_FILEDISPLAY","features":[158]},{"name":"IDC_IO_FILETEXT","features":[158]},{"name":"IDC_IO_FILETYPE","features":[158]},{"name":"IDC_IO_ICONDISPLAY","features":[158]},{"name":"IDC_IO_INSERTCONTROL","features":[158]},{"name":"IDC_IO_LINKFILE","features":[158]},{"name":"IDC_IO_OBJECTTYPELIST","features":[158]},{"name":"IDC_IO_OBJECTTYPETEXT","features":[158]},{"name":"IDC_IO_RESULTIMAGE","features":[158]},{"name":"IDC_IO_RESULTTEXT","features":[158]},{"name":"IDC_LP_AUTOMATIC","features":[158]},{"name":"IDC_LP_BREAKLINK","features":[158]},{"name":"IDC_LP_CHANGESOURCE","features":[158]},{"name":"IDC_LP_DATE","features":[158]},{"name":"IDC_LP_LINKSOURCE","features":[158]},{"name":"IDC_LP_MANUAL","features":[158]},{"name":"IDC_LP_OPENSOURCE","features":[158]},{"name":"IDC_LP_TIME","features":[158]},{"name":"IDC_LP_UPDATENOW","features":[158]},{"name":"IDC_OLEUIHELP","features":[158]},{"name":"IDC_PS_CHANGEICON","features":[158]},{"name":"IDC_PS_DISPLAYASICON","features":[158]},{"name":"IDC_PS_DISPLAYLIST","features":[158]},{"name":"IDC_PS_ICONDISPLAY","features":[158]},{"name":"IDC_PS_PASTE","features":[158]},{"name":"IDC_PS_PASTELINK","features":[158]},{"name":"IDC_PS_PASTELINKLIST","features":[158]},{"name":"IDC_PS_PASTELIST","features":[158]},{"name":"IDC_PS_RESULTIMAGE","features":[158]},{"name":"IDC_PS_RESULTTEXT","features":[158]},{"name":"IDC_PS_SOURCETEXT","features":[158]},{"name":"IDC_PU_CONVERT","features":[158]},{"name":"IDC_PU_ICON","features":[158]},{"name":"IDC_PU_LINKS","features":[158]},{"name":"IDC_PU_TEXT","features":[158]},{"name":"IDC_UL_METER","features":[158]},{"name":"IDC_UL_PERCENT","features":[158]},{"name":"IDC_UL_PROGRESS","features":[158]},{"name":"IDC_UL_STOP","features":[158]},{"name":"IDC_VP_ASICON","features":[158]},{"name":"IDC_VP_CHANGEICON","features":[158]},{"name":"IDC_VP_EDITABLE","features":[158]},{"name":"IDC_VP_ICONDISPLAY","features":[158]},{"name":"IDC_VP_PERCENT","features":[158]},{"name":"IDC_VP_RELATIVE","features":[158]},{"name":"IDC_VP_RESULTIMAGE","features":[158]},{"name":"IDC_VP_SCALETXT","features":[158]},{"name":"IDC_VP_SPIN","features":[158]},{"name":"IDD_BUSY","features":[158]},{"name":"IDD_CANNOTUPDATELINK","features":[158]},{"name":"IDD_CHANGEICON","features":[158]},{"name":"IDD_CHANGEICONBROWSE","features":[158]},{"name":"IDD_CHANGESOURCE","features":[158]},{"name":"IDD_CHANGESOURCE4","features":[158]},{"name":"IDD_CONVERT","features":[158]},{"name":"IDD_CONVERT4","features":[158]},{"name":"IDD_CONVERTONLY","features":[158]},{"name":"IDD_CONVERTONLY4","features":[158]},{"name":"IDD_EDITLINKS","features":[158]},{"name":"IDD_EDITLINKS4","features":[158]},{"name":"IDD_GNRLPROPS","features":[158]},{"name":"IDD_GNRLPROPS4","features":[158]},{"name":"IDD_INSERTFILEBROWSE","features":[158]},{"name":"IDD_INSERTOBJECT","features":[158]},{"name":"IDD_LINKPROPS","features":[158]},{"name":"IDD_LINKPROPS4","features":[158]},{"name":"IDD_LINKSOURCEUNAVAILABLE","features":[158]},{"name":"IDD_LINKTYPECHANGED","features":[158]},{"name":"IDD_LINKTYPECHANGEDA","features":[158]},{"name":"IDD_LINKTYPECHANGEDW","features":[158]},{"name":"IDD_OUTOFMEMORY","features":[158]},{"name":"IDD_PASTESPECIAL","features":[158]},{"name":"IDD_PASTESPECIAL4","features":[158]},{"name":"IDD_SERVERNOTFOUND","features":[158]},{"name":"IDD_SERVERNOTREG","features":[158]},{"name":"IDD_SERVERNOTREGA","features":[158]},{"name":"IDD_SERVERNOTREGW","features":[158]},{"name":"IDD_UPDATELINKS","features":[158]},{"name":"IDD_VIEWPROPS","features":[158]},{"name":"ID_BROWSE_ADDCONTROL","features":[158]},{"name":"ID_BROWSE_CHANGEICON","features":[158]},{"name":"ID_BROWSE_CHANGESOURCE","features":[158]},{"name":"ID_BROWSE_INSERTFILE","features":[158]},{"name":"ID_DEFAULTINST","features":[158]},{"name":"IDispError","features":[158]},{"name":"IDispatchEx","features":[158]},{"name":"IDropSource","features":[158]},{"name":"IDropSourceNotify","features":[158]},{"name":"IDropTarget","features":[158]},{"name":"IEnterpriseDropTarget","features":[158]},{"name":"IEnumOLEVERB","features":[158]},{"name":"IEnumOleDocumentViews","features":[158]},{"name":"IEnumOleUndoUnits","features":[158]},{"name":"IEnumVARIANT","features":[158]},{"name":"IFont","features":[158]},{"name":"IFontDisp","features":[158]},{"name":"IFontEventsDisp","features":[158]},{"name":"IGNOREMIME","features":[158]},{"name":"IGNOREMIME_PROMPT","features":[158]},{"name":"IGNOREMIME_TEXT","features":[158]},{"name":"IGetOleObject","features":[158]},{"name":"IGetVBAObject","features":[158]},{"name":"INSERT_OBJECT_FLAGS","features":[158]},{"name":"INSTALL_SCOPE_INVALID","features":[158]},{"name":"INSTALL_SCOPE_MACHINE","features":[158]},{"name":"INSTALL_SCOPE_USER","features":[158]},{"name":"INTERFACEDATA","features":[43,158,44]},{"name":"IOF_CHECKDISPLAYASICON","features":[158]},{"name":"IOF_CHECKLINK","features":[158]},{"name":"IOF_CREATEFILEOBJECT","features":[158]},{"name":"IOF_CREATELINKOBJECT","features":[158]},{"name":"IOF_CREATENEWOBJECT","features":[158]},{"name":"IOF_DISABLEDISPLAYASICON","features":[158]},{"name":"IOF_DISABLELINK","features":[158]},{"name":"IOF_HIDECHANGEICON","features":[158]},{"name":"IOF_SELECTCREATECONTROL","features":[158]},{"name":"IOF_SELECTCREATEFROMFILE","features":[158]},{"name":"IOF_SELECTCREATENEW","features":[158]},{"name":"IOF_SHOWHELP","features":[158]},{"name":"IOF_SHOWINSERTCONTROL","features":[158]},{"name":"IOF_VERIFYSERVERSEXIST","features":[158]},{"name":"IObjectIdentity","features":[158]},{"name":"IObjectWithSite","features":[158]},{"name":"IOleAdviseHolder","features":[158]},{"name":"IOleCache","features":[158]},{"name":"IOleCache2","features":[158]},{"name":"IOleCacheControl","features":[158]},{"name":"IOleClientSite","features":[158]},{"name":"IOleCommandTarget","features":[158]},{"name":"IOleContainer","features":[158]},{"name":"IOleControl","features":[158]},{"name":"IOleControlSite","features":[158]},{"name":"IOleDocument","features":[158]},{"name":"IOleDocumentSite","features":[158]},{"name":"IOleDocumentView","features":[158]},{"name":"IOleInPlaceActiveObject","features":[158]},{"name":"IOleInPlaceFrame","features":[158]},{"name":"IOleInPlaceObject","features":[158]},{"name":"IOleInPlaceObjectWindowless","features":[158]},{"name":"IOleInPlaceSite","features":[158]},{"name":"IOleInPlaceSiteEx","features":[158]},{"name":"IOleInPlaceSiteWindowless","features":[158]},{"name":"IOleInPlaceUIWindow","features":[158]},{"name":"IOleItemContainer","features":[158]},{"name":"IOleLink","features":[158]},{"name":"IOleObject","features":[158]},{"name":"IOleParentUndoUnit","features":[158]},{"name":"IOleUILinkContainerA","features":[158]},{"name":"IOleUILinkContainerW","features":[158]},{"name":"IOleUILinkInfoA","features":[158]},{"name":"IOleUILinkInfoW","features":[158]},{"name":"IOleUIObjInfoA","features":[158]},{"name":"IOleUIObjInfoW","features":[158]},{"name":"IOleUndoManager","features":[158]},{"name":"IOleUndoUnit","features":[158]},{"name":"IOleWindow","features":[158]},{"name":"IParseDisplayName","features":[158]},{"name":"IPerPropertyBrowsing","features":[158]},{"name":"IPersistPropertyBag","features":[158]},{"name":"IPersistPropertyBag2","features":[158]},{"name":"IPicture","features":[158]},{"name":"IPicture2","features":[158]},{"name":"IPictureDisp","features":[158]},{"name":"IPointerInactive","features":[158]},{"name":"IPrint","features":[158]},{"name":"IPropertyNotifySink","features":[158]},{"name":"IPropertyPage","features":[158]},{"name":"IPropertyPage2","features":[158]},{"name":"IPropertyPageSite","features":[158]},{"name":"IProtectFocus","features":[158]},{"name":"IProtectedModeMenuServices","features":[158]},{"name":"IProvideClassInfo","features":[158]},{"name":"IProvideClassInfo2","features":[158]},{"name":"IProvideMultipleClassInfo","features":[158]},{"name":"IProvideRuntimeContext","features":[158]},{"name":"IQuickActivate","features":[158]},{"name":"IRecordInfo","features":[158]},{"name":"ISimpleFrameSite","features":[158]},{"name":"ISpecifyPropertyPages","features":[158]},{"name":"ITypeChangeEvents","features":[158]},{"name":"ITypeFactory","features":[158]},{"name":"ITypeMarshal","features":[158]},{"name":"IVBFormat","features":[158]},{"name":"IVBGetControl","features":[158]},{"name":"IVariantChangeType","features":[158]},{"name":"IViewObject","features":[158]},{"name":"IViewObject2","features":[158]},{"name":"IViewObjectEx","features":[158]},{"name":"IZoomEvents","features":[158]},{"name":"IsAccelerator","features":[3,158,52]},{"name":"KEYMODIFIERS","features":[158]},{"name":"KEYMOD_ALT","features":[158]},{"name":"KEYMOD_CONTROL","features":[158]},{"name":"KEYMOD_SHIFT","features":[158]},{"name":"LHashValOfNameSys","features":[43,158]},{"name":"LHashValOfNameSysA","features":[43,158]},{"name":"LIBFLAGS","features":[158]},{"name":"LIBFLAG_FCONTROL","features":[158]},{"name":"LIBFLAG_FHASDISKIMAGE","features":[158]},{"name":"LIBFLAG_FHIDDEN","features":[158]},{"name":"LIBFLAG_FRESTRICTED","features":[158]},{"name":"LICINFO","features":[3,158]},{"name":"LOAD_PICTURE_FLAGS","features":[158]},{"name":"LOAD_TLB_AS_32BIT","features":[158]},{"name":"LOAD_TLB_AS_64BIT","features":[158]},{"name":"LOCALE_USE_NLS","features":[158]},{"name":"LPFNOLEUIHOOK","features":[3,158]},{"name":"LP_COLOR","features":[158]},{"name":"LP_DEFAULT","features":[158]},{"name":"LP_MONOCHROME","features":[158]},{"name":"LP_VGACOLOR","features":[158]},{"name":"LoadRegTypeLib","features":[158]},{"name":"LoadTypeLib","features":[158]},{"name":"LoadTypeLibEx","features":[158]},{"name":"MEDIAPLAYBACK_PAUSE","features":[158]},{"name":"MEDIAPLAYBACK_PAUSE_AND_SUSPEND","features":[158]},{"name":"MEDIAPLAYBACK_RESUME","features":[158]},{"name":"MEDIAPLAYBACK_RESUME_FROM_SUSPEND","features":[158]},{"name":"MEDIAPLAYBACK_STATE","features":[158]},{"name":"MEMBERID_NIL","features":[158]},{"name":"METHODDATA","features":[43,158,44]},{"name":"MK_ALT","features":[158]},{"name":"MSOCMDERR_E_CANCELED","features":[158]},{"name":"MSOCMDERR_E_DISABLED","features":[158]},{"name":"MSOCMDERR_E_FIRST","features":[158]},{"name":"MSOCMDERR_E_NOHELP","features":[158]},{"name":"MSOCMDERR_E_NOTSUPPORTED","features":[158]},{"name":"MSOCMDERR_E_UNKNOWNGROUP","features":[158]},{"name":"MULTICLASSINFO_FLAGS","features":[158]},{"name":"MULTICLASSINFO_GETIIDPRIMARY","features":[158]},{"name":"MULTICLASSINFO_GETIIDSOURCE","features":[158]},{"name":"MULTICLASSINFO_GETNUMRESERVEDDISPIDS","features":[158]},{"name":"MULTICLASSINFO_GETTYPEINFO","features":[158]},{"name":"NUMPARSE","features":[158]},{"name":"NUMPARSE_FLAGS","features":[158]},{"name":"NUMPRS_CURRENCY","features":[158]},{"name":"NUMPRS_DECIMAL","features":[158]},{"name":"NUMPRS_EXPONENT","features":[158]},{"name":"NUMPRS_HEX_OCT","features":[158]},{"name":"NUMPRS_INEXACT","features":[158]},{"name":"NUMPRS_LEADING_MINUS","features":[158]},{"name":"NUMPRS_LEADING_PLUS","features":[158]},{"name":"NUMPRS_LEADING_WHITE","features":[158]},{"name":"NUMPRS_NEG","features":[158]},{"name":"NUMPRS_PARENS","features":[158]},{"name":"NUMPRS_STD","features":[158]},{"name":"NUMPRS_THOUSANDS","features":[158]},{"name":"NUMPRS_TRAILING_MINUS","features":[158]},{"name":"NUMPRS_TRAILING_PLUS","features":[158]},{"name":"NUMPRS_TRAILING_WHITE","features":[158]},{"name":"NUMPRS_USE_ALL","features":[158]},{"name":"OBJECTDESCRIPTOR","features":[3,158]},{"name":"OBJECT_PROPERTIES_FLAGS","features":[158]},{"name":"OCM__BASE","features":[158]},{"name":"OCPFIPARAMS","features":[3,158]},{"name":"OF_GET","features":[158]},{"name":"OF_HANDLER","features":[158]},{"name":"OF_SET","features":[158]},{"name":"OLECLOSE","features":[158]},{"name":"OLECLOSE_NOSAVE","features":[158]},{"name":"OLECLOSE_PROMPTSAVE","features":[158]},{"name":"OLECLOSE_SAVEIFDIRTY","features":[158]},{"name":"OLECMD","features":[158]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_CLSID","features":[158]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_DISPLAYNAME","features":[158]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_INSTALLSCOPE","features":[158]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_PUBLISHER","features":[158]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_SOURCEURL","features":[158]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_HWND","features":[158]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_X","features":[158]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_Y","features":[158]},{"name":"OLECMDERR_E_CANCELED","features":[158]},{"name":"OLECMDERR_E_DISABLED","features":[158]},{"name":"OLECMDERR_E_FIRST","features":[158]},{"name":"OLECMDERR_E_NOHELP","features":[158]},{"name":"OLECMDERR_E_NOTSUPPORTED","features":[158]},{"name":"OLECMDERR_E_UNKNOWNGROUP","features":[158]},{"name":"OLECMDEXECOPT","features":[158]},{"name":"OLECMDEXECOPT_DODEFAULT","features":[158]},{"name":"OLECMDEXECOPT_DONTPROMPTUSER","features":[158]},{"name":"OLECMDEXECOPT_PROMPTUSER","features":[158]},{"name":"OLECMDEXECOPT_SHOWHELP","features":[158]},{"name":"OLECMDF","features":[158]},{"name":"OLECMDF_DEFHIDEONCTXTMENU","features":[158]},{"name":"OLECMDF_ENABLED","features":[158]},{"name":"OLECMDF_INVISIBLE","features":[158]},{"name":"OLECMDF_LATCHED","features":[158]},{"name":"OLECMDF_NINCHED","features":[158]},{"name":"OLECMDF_SUPPORTED","features":[158]},{"name":"OLECMDID","features":[158]},{"name":"OLECMDIDF_BROWSERSTATE_BLOCKEDVERSION","features":[158]},{"name":"OLECMDIDF_BROWSERSTATE_DESKTOPHTMLDIALOG","features":[158]},{"name":"OLECMDIDF_BROWSERSTATE_EXTENSIONSOFF","features":[158]},{"name":"OLECMDIDF_BROWSERSTATE_IESECURITY","features":[158]},{"name":"OLECMDIDF_BROWSERSTATE_PROTECTEDMODE_OFF","features":[158]},{"name":"OLECMDIDF_BROWSERSTATE_REQUIRESACTIVEX","features":[158]},{"name":"OLECMDIDF_BROWSERSTATE_RESET","features":[158]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOLAYOUT","features":[158]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOPERSIST","features":[158]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOTRANSIENT","features":[158]},{"name":"OLECMDIDF_OPTICAL_ZOOM_RELOADFORNEWTAB","features":[158]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXDISALLOW","features":[158]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXINSTALL","features":[158]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXTRUSTFAIL","features":[158]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUNSAFE","features":[158]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERAPPROVAL","features":[158]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERDISABLE","features":[158]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEX_EPM_INCOMPATIBLE","features":[158]},{"name":"OLECMDIDF_PAGEACTION_EXTENSION_COMPAT_BLOCKED","features":[158]},{"name":"OLECMDIDF_PAGEACTION_FILEDOWNLOAD","features":[158]},{"name":"OLECMDIDF_PAGEACTION_GENERIC_STATE","features":[158]},{"name":"OLECMDIDF_PAGEACTION_INTRANETZONEREQUEST","features":[158]},{"name":"OLECMDIDF_PAGEACTION_INVALID_CERT","features":[158]},{"name":"OLECMDIDF_PAGEACTION_LOCALMACHINE","features":[158]},{"name":"OLECMDIDF_PAGEACTION_MIMETEXTPLAIN","features":[158]},{"name":"OLECMDIDF_PAGEACTION_MIXEDCONTENT","features":[158]},{"name":"OLECMDIDF_PAGEACTION_NORESETACTIVEX","features":[158]},{"name":"OLECMDIDF_PAGEACTION_POPUPALLOWED","features":[158]},{"name":"OLECMDIDF_PAGEACTION_POPUPWINDOW","features":[158]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNDENY","features":[158]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTERNET","features":[158]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTRANET","features":[158]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[158]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[158]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[158]},{"name":"OLECMDIDF_PAGEACTION_RESET","features":[158]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE","features":[158]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXINSTALL","features":[158]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXUSERAPPROVAL","features":[158]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTPROMPT","features":[158]},{"name":"OLECMDIDF_PAGEACTION_SPOOFABLEIDNHOST","features":[158]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED","features":[158]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED_ACTIVEX","features":[158]},{"name":"OLECMDIDF_PAGEACTION_XSSFILTERED","features":[158]},{"name":"OLECMDIDF_REFRESH_CLEARUSERINPUT","features":[158]},{"name":"OLECMDIDF_REFRESH_COMPLETELY","features":[158]},{"name":"OLECMDIDF_REFRESH_CONTINUE","features":[158]},{"name":"OLECMDIDF_REFRESH_IFEXPIRED","features":[158]},{"name":"OLECMDIDF_REFRESH_LEVELMASK","features":[158]},{"name":"OLECMDIDF_REFRESH_NORMAL","features":[158]},{"name":"OLECMDIDF_REFRESH_NO_CACHE","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ACTIVEXINSTALL","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ALLOW_VERSION","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_FILEDOWNLOAD","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_INVALID_CERT","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_LOCALMACHINE","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_MIXEDCONTENT","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_POPUPWINDOW","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTERNET","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTRANET","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[158]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[158]},{"name":"OLECMDIDF_REFRESH_PROMPTIFOFFLINE","features":[158]},{"name":"OLECMDIDF_REFRESH_RELOAD","features":[158]},{"name":"OLECMDIDF_REFRESH_SKIPBEFOREUNLOADEVENT","features":[158]},{"name":"OLECMDIDF_REFRESH_THROUGHSCRIPT","features":[158]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM","features":[158]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM_VALID","features":[158]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH","features":[158]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH_VALID","features":[158]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED","features":[158]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED_VALID","features":[158]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE","features":[158]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE_VALID","features":[158]},{"name":"OLECMDID_ACTIVEXINSTALLSCOPE","features":[158]},{"name":"OLECMDID_ADDTRAVELENTRY","features":[158]},{"name":"OLECMDID_ALLOWUILESSSAVEAS","features":[158]},{"name":"OLECMDID_BROWSERSTATEFLAG","features":[158]},{"name":"OLECMDID_CLEARSELECTION","features":[158]},{"name":"OLECMDID_CLOSE","features":[158]},{"name":"OLECMDID_COPY","features":[158]},{"name":"OLECMDID_CUT","features":[158]},{"name":"OLECMDID_DELETE","features":[158]},{"name":"OLECMDID_DONTDOWNLOADCSS","features":[158]},{"name":"OLECMDID_ENABLE_INTERACTION","features":[158]},{"name":"OLECMDID_ENABLE_VISIBILITY","features":[158]},{"name":"OLECMDID_EXITFULLSCREEN","features":[158]},{"name":"OLECMDID_FIND","features":[158]},{"name":"OLECMDID_FOCUSVIEWCONTROLS","features":[158]},{"name":"OLECMDID_FOCUSVIEWCONTROLSQUERY","features":[158]},{"name":"OLECMDID_GETPRINTTEMPLATE","features":[158]},{"name":"OLECMDID_GETUSERSCALABLE","features":[158]},{"name":"OLECMDID_GETZOOMRANGE","features":[158]},{"name":"OLECMDID_HIDETOOLBARS","features":[158]},{"name":"OLECMDID_HTTPEQUIV","features":[158]},{"name":"OLECMDID_HTTPEQUIV_DONE","features":[158]},{"name":"OLECMDID_LAYOUT_VIEWPORT_WIDTH","features":[158]},{"name":"OLECMDID_MEDIA_PLAYBACK","features":[158]},{"name":"OLECMDID_NEW","features":[158]},{"name":"OLECMDID_ONBEFOREUNLOAD","features":[158]},{"name":"OLECMDID_ONTOOLBARACTIVATED","features":[158]},{"name":"OLECMDID_ONUNLOAD","features":[158]},{"name":"OLECMDID_OPEN","features":[158]},{"name":"OLECMDID_OPTICAL_GETZOOMRANGE","features":[158]},{"name":"OLECMDID_OPTICAL_ZOOM","features":[158]},{"name":"OLECMDID_OPTICAL_ZOOMFLAG","features":[158]},{"name":"OLECMDID_PAGEACTIONBLOCKED","features":[158]},{"name":"OLECMDID_PAGEACTIONFLAG","features":[158]},{"name":"OLECMDID_PAGEACTIONUIQUERY","features":[158]},{"name":"OLECMDID_PAGEAVAILABLE","features":[158]},{"name":"OLECMDID_PAGESETUP","features":[158]},{"name":"OLECMDID_PASTE","features":[158]},{"name":"OLECMDID_PASTESPECIAL","features":[158]},{"name":"OLECMDID_POPSTATEEVENT","features":[158]},{"name":"OLECMDID_PREREFRESH","features":[158]},{"name":"OLECMDID_PRINT","features":[158]},{"name":"OLECMDID_PRINT2","features":[158]},{"name":"OLECMDID_PRINTPREVIEW","features":[158]},{"name":"OLECMDID_PRINTPREVIEW2","features":[158]},{"name":"OLECMDID_PROPERTIES","features":[158]},{"name":"OLECMDID_PROPERTYBAG2","features":[158]},{"name":"OLECMDID_REDO","features":[158]},{"name":"OLECMDID_REFRESH","features":[158]},{"name":"OLECMDID_REFRESHFLAG","features":[158]},{"name":"OLECMDID_SAVE","features":[158]},{"name":"OLECMDID_SAVEAS","features":[158]},{"name":"OLECMDID_SAVECOPYAS","features":[158]},{"name":"OLECMDID_SCROLLCOMPLETE","features":[158]},{"name":"OLECMDID_SELECTALL","features":[158]},{"name":"OLECMDID_SETDOWNLOADSTATE","features":[158]},{"name":"OLECMDID_SETFAVICON","features":[158]},{"name":"OLECMDID_SETPRINTTEMPLATE","features":[158]},{"name":"OLECMDID_SETPROGRESSMAX","features":[158]},{"name":"OLECMDID_SETPROGRESSPOS","features":[158]},{"name":"OLECMDID_SETPROGRESSTEXT","features":[158]},{"name":"OLECMDID_SETTITLE","features":[158]},{"name":"OLECMDID_SET_HOST_FULLSCREENMODE","features":[158]},{"name":"OLECMDID_SHOWFIND","features":[158]},{"name":"OLECMDID_SHOWMESSAGE","features":[158]},{"name":"OLECMDID_SHOWMESSAGE_BLOCKABLE","features":[158]},{"name":"OLECMDID_SHOWPAGEACTIONMENU","features":[158]},{"name":"OLECMDID_SHOWPAGESETUP","features":[158]},{"name":"OLECMDID_SHOWPRINT","features":[158]},{"name":"OLECMDID_SHOWSCRIPTERROR","features":[158]},{"name":"OLECMDID_SHOWTASKDLG","features":[158]},{"name":"OLECMDID_SHOWTASKDLG_BLOCKABLE","features":[158]},{"name":"OLECMDID_SPELL","features":[158]},{"name":"OLECMDID_STOP","features":[158]},{"name":"OLECMDID_STOPDOWNLOAD","features":[158]},{"name":"OLECMDID_UNDO","features":[158]},{"name":"OLECMDID_UPDATEBACKFORWARDSTATE","features":[158]},{"name":"OLECMDID_UPDATECOMMANDS","features":[158]},{"name":"OLECMDID_UPDATEPAGESTATUS","features":[158]},{"name":"OLECMDID_UPDATETRAVELENTRY","features":[158]},{"name":"OLECMDID_UPDATETRAVELENTRY_DATARECOVERY","features":[158]},{"name":"OLECMDID_UPDATE_CARET","features":[158]},{"name":"OLECMDID_USER_OPTICAL_ZOOM","features":[158]},{"name":"OLECMDID_VIEWPORT_MODE","features":[158]},{"name":"OLECMDID_VIEWPORT_MODE_FLAG","features":[158]},{"name":"OLECMDID_VISUAL_VIEWPORT_EXCLUDE_BOTTOM","features":[158]},{"name":"OLECMDID_WINDOWSTATECHANGED","features":[158]},{"name":"OLECMDID_WINDOWSTATE_FLAG","features":[158]},{"name":"OLECMDID_ZOOM","features":[158]},{"name":"OLECMDTEXT","features":[158]},{"name":"OLECMDTEXTF","features":[158]},{"name":"OLECMDTEXTF_NAME","features":[158]},{"name":"OLECMDTEXTF_NONE","features":[158]},{"name":"OLECMDTEXTF_STATUS","features":[158]},{"name":"OLECMD_TASKDLGID_ONBEFOREUNLOAD","features":[158]},{"name":"OLECONTF","features":[158]},{"name":"OLECONTF_EMBEDDINGS","features":[158]},{"name":"OLECONTF_LINKS","features":[158]},{"name":"OLECONTF_ONLYIFRUNNING","features":[158]},{"name":"OLECONTF_ONLYUSER","features":[158]},{"name":"OLECONTF_OTHERS","features":[158]},{"name":"OLECREATE","features":[158]},{"name":"OLECREATE_LEAVERUNNING","features":[158]},{"name":"OLECREATE_ZERO","features":[158]},{"name":"OLEDCFLAGS","features":[158]},{"name":"OLEDC_NODRAW","features":[158]},{"name":"OLEDC_OFFSCREEN","features":[158]},{"name":"OLEDC_PAINTBKGND","features":[158]},{"name":"OLEGETMONIKER","features":[158]},{"name":"OLEGETMONIKER_FORCEASSIGN","features":[158]},{"name":"OLEGETMONIKER_ONLYIFTHERE","features":[158]},{"name":"OLEGETMONIKER_TEMPFORUSER","features":[158]},{"name":"OLEGETMONIKER_UNASSIGN","features":[158]},{"name":"OLEINPLACEFRAMEINFO","features":[3,158,52]},{"name":"OLEIVERB","features":[158]},{"name":"OLEIVERB_DISCARDUNDOSTATE","features":[158]},{"name":"OLEIVERB_HIDE","features":[158]},{"name":"OLEIVERB_INPLACEACTIVATE","features":[158]},{"name":"OLEIVERB_OPEN","features":[158]},{"name":"OLEIVERB_PRIMARY","features":[158]},{"name":"OLEIVERB_PROPERTIES","features":[158]},{"name":"OLEIVERB_SHOW","features":[158]},{"name":"OLEIVERB_UIACTIVATE","features":[158]},{"name":"OLELINKBIND","features":[158]},{"name":"OLELINKBIND_EVENIFCLASSDIFF","features":[158]},{"name":"OLEMENUGROUPWIDTHS","features":[158]},{"name":"OLEMISC","features":[158]},{"name":"OLEMISC_ACTIVATEWHENVISIBLE","features":[158]},{"name":"OLEMISC_ACTSLIKEBUTTON","features":[158]},{"name":"OLEMISC_ACTSLIKELABEL","features":[158]},{"name":"OLEMISC_ALIGNABLE","features":[158]},{"name":"OLEMISC_ALWAYSRUN","features":[158]},{"name":"OLEMISC_CANLINKBYOLE1","features":[158]},{"name":"OLEMISC_CANTLINKINSIDE","features":[158]},{"name":"OLEMISC_IGNOREACTIVATEWHENVISIBLE","features":[158]},{"name":"OLEMISC_IMEMODE","features":[158]},{"name":"OLEMISC_INSERTNOTREPLACE","features":[158]},{"name":"OLEMISC_INSIDEOUT","features":[158]},{"name":"OLEMISC_INVISIBLEATRUNTIME","features":[158]},{"name":"OLEMISC_ISLINKOBJECT","features":[158]},{"name":"OLEMISC_NOUIACTIVATE","features":[158]},{"name":"OLEMISC_ONLYICONIC","features":[158]},{"name":"OLEMISC_RECOMPOSEONRESIZE","features":[158]},{"name":"OLEMISC_RENDERINGISDEVICEINDEPENDENT","features":[158]},{"name":"OLEMISC_SETCLIENTSITEFIRST","features":[158]},{"name":"OLEMISC_SIMPLEFRAME","features":[158]},{"name":"OLEMISC_STATIC","features":[158]},{"name":"OLEMISC_SUPPORTSMULTILEVELUNDO","features":[158]},{"name":"OLEMISC_WANTSTOMENUMERGE","features":[158]},{"name":"OLERENDER","features":[158]},{"name":"OLERENDER_ASIS","features":[158]},{"name":"OLERENDER_DRAW","features":[158]},{"name":"OLERENDER_FORMAT","features":[158]},{"name":"OLERENDER_NONE","features":[158]},{"name":"OLESTDDELIM","features":[158]},{"name":"OLESTREAMQUERYCONVERTOLELINKCALLBACK","features":[158]},{"name":"OLESTREAM_CONVERSION_DEFAULT","features":[158]},{"name":"OLESTREAM_CONVERSION_DISABLEOLELINK","features":[158]},{"name":"OLEUIBUSYA","features":[3,80,158]},{"name":"OLEUIBUSYW","features":[3,80,158]},{"name":"OLEUICHANGEICONA","features":[3,158]},{"name":"OLEUICHANGEICONW","features":[3,158]},{"name":"OLEUICHANGESOURCEA","features":[3,158,86]},{"name":"OLEUICHANGESOURCEW","features":[3,158,86]},{"name":"OLEUICONVERTA","features":[3,158]},{"name":"OLEUICONVERTW","features":[3,158]},{"name":"OLEUIEDITLINKSA","features":[3,158]},{"name":"OLEUIEDITLINKSW","features":[3,158]},{"name":"OLEUIGNRLPROPSA","features":[3,14,158,42,52]},{"name":"OLEUIGNRLPROPSW","features":[3,14,158,42,52]},{"name":"OLEUIINSERTOBJECTA","features":[3,43,158]},{"name":"OLEUIINSERTOBJECTW","features":[3,43,158]},{"name":"OLEUILINKPROPSA","features":[3,14,158,42,52]},{"name":"OLEUILINKPROPSW","features":[3,14,158,42,52]},{"name":"OLEUIOBJECTPROPSA","features":[3,14,158,42,52]},{"name":"OLEUIOBJECTPROPSW","features":[3,14,158,42,52]},{"name":"OLEUIPASTEENTRYA","features":[43,158]},{"name":"OLEUIPASTEENTRYW","features":[43,158]},{"name":"OLEUIPASTEFLAG","features":[158]},{"name":"OLEUIPASTESPECIALA","features":[3,43,158]},{"name":"OLEUIPASTESPECIALW","features":[3,43,158]},{"name":"OLEUIPASTE_ENABLEICON","features":[158]},{"name":"OLEUIPASTE_LINKANYTYPE","features":[158]},{"name":"OLEUIPASTE_LINKTYPE1","features":[158]},{"name":"OLEUIPASTE_LINKTYPE2","features":[158]},{"name":"OLEUIPASTE_LINKTYPE3","features":[158]},{"name":"OLEUIPASTE_LINKTYPE4","features":[158]},{"name":"OLEUIPASTE_LINKTYPE5","features":[158]},{"name":"OLEUIPASTE_LINKTYPE6","features":[158]},{"name":"OLEUIPASTE_LINKTYPE7","features":[158]},{"name":"OLEUIPASTE_LINKTYPE8","features":[158]},{"name":"OLEUIPASTE_PASTE","features":[158]},{"name":"OLEUIPASTE_PASTEONLY","features":[158]},{"name":"OLEUIVIEWPROPSA","features":[3,14,158,42,52]},{"name":"OLEUIVIEWPROPSW","features":[3,14,158,42,52]},{"name":"OLEUI_BZERR_HTASKINVALID","features":[158]},{"name":"OLEUI_BZ_CALLUNBLOCKED","features":[158]},{"name":"OLEUI_BZ_RETRYSELECTED","features":[158]},{"name":"OLEUI_BZ_SWITCHTOSELECTED","features":[158]},{"name":"OLEUI_CANCEL","features":[158]},{"name":"OLEUI_CIERR_MUSTHAVECLSID","features":[158]},{"name":"OLEUI_CIERR_MUSTHAVECURRENTMETAFILE","features":[158]},{"name":"OLEUI_CIERR_SZICONEXEINVALID","features":[158]},{"name":"OLEUI_CSERR_FROMNOTNULL","features":[158]},{"name":"OLEUI_CSERR_LINKCNTRINVALID","features":[158]},{"name":"OLEUI_CSERR_LINKCNTRNULL","features":[158]},{"name":"OLEUI_CSERR_SOURCEINVALID","features":[158]},{"name":"OLEUI_CSERR_SOURCENULL","features":[158]},{"name":"OLEUI_CSERR_SOURCEPARSEERROR","features":[158]},{"name":"OLEUI_CSERR_SOURCEPARSERROR","features":[158]},{"name":"OLEUI_CSERR_TONOTNULL","features":[158]},{"name":"OLEUI_CTERR_CBFORMATINVALID","features":[158]},{"name":"OLEUI_CTERR_CLASSIDINVALID","features":[158]},{"name":"OLEUI_CTERR_DVASPECTINVALID","features":[158]},{"name":"OLEUI_CTERR_HMETAPICTINVALID","features":[158]},{"name":"OLEUI_CTERR_STRINGINVALID","features":[158]},{"name":"OLEUI_ELERR_LINKCNTRINVALID","features":[158]},{"name":"OLEUI_ELERR_LINKCNTRNULL","features":[158]},{"name":"OLEUI_ERR_CBSTRUCTINCORRECT","features":[158]},{"name":"OLEUI_ERR_DIALOGFAILURE","features":[158]},{"name":"OLEUI_ERR_FINDTEMPLATEFAILURE","features":[158]},{"name":"OLEUI_ERR_GLOBALMEMALLOC","features":[158]},{"name":"OLEUI_ERR_HINSTANCEINVALID","features":[158]},{"name":"OLEUI_ERR_HRESOURCEINVALID","features":[158]},{"name":"OLEUI_ERR_HWNDOWNERINVALID","features":[158]},{"name":"OLEUI_ERR_LOADSTRING","features":[158]},{"name":"OLEUI_ERR_LOADTEMPLATEFAILURE","features":[158]},{"name":"OLEUI_ERR_LOCALMEMALLOC","features":[158]},{"name":"OLEUI_ERR_LPFNHOOKINVALID","features":[158]},{"name":"OLEUI_ERR_LPSZCAPTIONINVALID","features":[158]},{"name":"OLEUI_ERR_LPSZTEMPLATEINVALID","features":[158]},{"name":"OLEUI_ERR_OLEMEMALLOC","features":[158]},{"name":"OLEUI_ERR_STANDARDMAX","features":[158]},{"name":"OLEUI_ERR_STANDARDMIN","features":[158]},{"name":"OLEUI_ERR_STRUCTUREINVALID","features":[158]},{"name":"OLEUI_ERR_STRUCTURENULL","features":[158]},{"name":"OLEUI_FALSE","features":[158]},{"name":"OLEUI_GPERR_CBFORMATINVALID","features":[158]},{"name":"OLEUI_GPERR_CLASSIDINVALID","features":[158]},{"name":"OLEUI_GPERR_LPCLSIDEXCLUDEINVALID","features":[158]},{"name":"OLEUI_GPERR_STRINGINVALID","features":[158]},{"name":"OLEUI_IOERR_ARRLINKTYPESINVALID","features":[158]},{"name":"OLEUI_IOERR_ARRPASTEENTRIESINVALID","features":[158]},{"name":"OLEUI_IOERR_CCHFILEINVALID","features":[158]},{"name":"OLEUI_IOERR_HICONINVALID","features":[158]},{"name":"OLEUI_IOERR_LPCLSIDEXCLUDEINVALID","features":[158]},{"name":"OLEUI_IOERR_LPFORMATETCINVALID","features":[158]},{"name":"OLEUI_IOERR_LPIOLECLIENTSITEINVALID","features":[158]},{"name":"OLEUI_IOERR_LPISTORAGEINVALID","features":[158]},{"name":"OLEUI_IOERR_LPSZFILEINVALID","features":[158]},{"name":"OLEUI_IOERR_LPSZLABELINVALID","features":[158]},{"name":"OLEUI_IOERR_PPVOBJINVALID","features":[158]},{"name":"OLEUI_IOERR_SCODEHASERROR","features":[158]},{"name":"OLEUI_IOERR_SRCDATAOBJECTINVALID","features":[158]},{"name":"OLEUI_LPERR_LINKCNTRINVALID","features":[158]},{"name":"OLEUI_LPERR_LINKCNTRNULL","features":[158]},{"name":"OLEUI_OK","features":[158]},{"name":"OLEUI_OPERR_DLGPROCNOTNULL","features":[158]},{"name":"OLEUI_OPERR_INVALIDPAGES","features":[158]},{"name":"OLEUI_OPERR_LINKINFOINVALID","features":[158]},{"name":"OLEUI_OPERR_LPARAMNOTZERO","features":[158]},{"name":"OLEUI_OPERR_NOTSUPPORTED","features":[158]},{"name":"OLEUI_OPERR_OBJINFOINVALID","features":[158]},{"name":"OLEUI_OPERR_PAGESINCORRECT","features":[158]},{"name":"OLEUI_OPERR_PROPERTYSHEET","features":[158]},{"name":"OLEUI_OPERR_PROPSHEETINVALID","features":[158]},{"name":"OLEUI_OPERR_PROPSHEETNULL","features":[158]},{"name":"OLEUI_OPERR_PROPSINVALID","features":[158]},{"name":"OLEUI_OPERR_SUBPROPINVALID","features":[158]},{"name":"OLEUI_OPERR_SUBPROPNULL","features":[158]},{"name":"OLEUI_OPERR_SUPPROP","features":[158]},{"name":"OLEUI_PSERR_CLIPBOARDCHANGED","features":[158]},{"name":"OLEUI_PSERR_GETCLIPBOARDFAILED","features":[158]},{"name":"OLEUI_QUERY_GETCLASSID","features":[158]},{"name":"OLEUI_QUERY_LINKBROKEN","features":[158]},{"name":"OLEUI_SUCCESS","features":[158]},{"name":"OLEUI_VPERR_DVASPECTINVALID","features":[158]},{"name":"OLEUI_VPERR_METAPICTINVALID","features":[158]},{"name":"OLEUPDATE","features":[158]},{"name":"OLEUPDATE_ALWAYS","features":[158]},{"name":"OLEUPDATE_ONCALL","features":[158]},{"name":"OLEVERB","features":[158,52]},{"name":"OLEVERBATTRIB","features":[158]},{"name":"OLEVERBATTRIB_NEVERDIRTIES","features":[158]},{"name":"OLEVERBATTRIB_ONCONTAINERMENU","features":[158]},{"name":"OLEVERB_PRIMARY","features":[158]},{"name":"OLEWHICHMK","features":[158]},{"name":"OLEWHICHMK_CONTAINER","features":[158]},{"name":"OLEWHICHMK_OBJFULL","features":[158]},{"name":"OLEWHICHMK_OBJREL","features":[158]},{"name":"OLE_HANDLE","features":[158]},{"name":"OLE_TRISTATE","features":[158]},{"name":"OPF_DISABLECONVERT","features":[158]},{"name":"OPF_NOFILLDEFAULT","features":[158]},{"name":"OPF_OBJECTISLINK","features":[158]},{"name":"OPF_SHOWHELP","features":[158]},{"name":"OT_EMBEDDED","features":[158]},{"name":"OT_LINK","features":[158]},{"name":"OT_STATIC","features":[158]},{"name":"OaBuildVersion","features":[158]},{"name":"OaEnablePerUserTLibRegistration","features":[158]},{"name":"OleBuildVersion","features":[158]},{"name":"OleConvertOLESTREAMToIStorage2","features":[65,158]},{"name":"OleConvertOLESTREAMToIStorageEx2","features":[3,14,65,158]},{"name":"OleCreate","features":[43,158]},{"name":"OleCreateDefaultHandler","features":[158]},{"name":"OleCreateEmbeddingHelper","features":[158]},{"name":"OleCreateEx","features":[43,158]},{"name":"OleCreateFontIndirect","features":[3,43,158]},{"name":"OleCreateFromData","features":[43,158]},{"name":"OleCreateFromDataEx","features":[43,158]},{"name":"OleCreateFromFile","features":[43,158]},{"name":"OleCreateFromFileEx","features":[43,158]},{"name":"OleCreateLink","features":[43,158]},{"name":"OleCreateLinkEx","features":[43,158]},{"name":"OleCreateLinkFromData","features":[43,158]},{"name":"OleCreateLinkFromDataEx","features":[43,158]},{"name":"OleCreateLinkToFile","features":[43,158]},{"name":"OleCreateLinkToFileEx","features":[43,158]},{"name":"OleCreateMenuDescriptor","features":[158,52]},{"name":"OleCreatePictureIndirect","features":[3,14,158,52]},{"name":"OleCreatePropertyFrame","features":[3,158]},{"name":"OleCreatePropertyFrameIndirect","features":[3,158]},{"name":"OleCreateStaticFromData","features":[43,158]},{"name":"OleDestroyMenuDescriptor","features":[158]},{"name":"OleDoAutoConvert","features":[158]},{"name":"OleDraw","features":[3,14,158]},{"name":"OleDuplicateData","features":[3,22,158]},{"name":"OleFlushClipboard","features":[158]},{"name":"OleGetAutoConvert","features":[158]},{"name":"OleGetClipboard","features":[158]},{"name":"OleGetClipboardWithEnterpriseInfo","features":[158]},{"name":"OleGetIconOfClass","features":[3,158]},{"name":"OleGetIconOfFile","features":[3,158]},{"name":"OleIconToCursor","features":[3,158,52]},{"name":"OleInitialize","features":[158]},{"name":"OleIsCurrentClipboard","features":[158]},{"name":"OleIsRunning","features":[3,158]},{"name":"OleLoad","features":[158]},{"name":"OleLoadFromStream","features":[158]},{"name":"OleLoadPicture","features":[3,158]},{"name":"OleLoadPictureEx","features":[3,158]},{"name":"OleLoadPictureFile","features":[3,43,158,44]},{"name":"OleLoadPictureFileEx","features":[3,43,158,44]},{"name":"OleLoadPicturePath","features":[158]},{"name":"OleLockRunning","features":[3,158]},{"name":"OleMetafilePictFromIconAndLabel","features":[3,158,52]},{"name":"OleNoteObjectVisible","features":[3,158]},{"name":"OleQueryCreateFromData","features":[158]},{"name":"OleQueryLinkFromData","features":[158]},{"name":"OleRegEnumFormatEtc","features":[158]},{"name":"OleRegEnumVerbs","features":[158]},{"name":"OleRegGetMiscStatus","features":[158]},{"name":"OleRegGetUserType","features":[158]},{"name":"OleRun","features":[158]},{"name":"OleSave","features":[3,158]},{"name":"OleSavePictureFile","features":[158]},{"name":"OleSaveToStream","features":[158]},{"name":"OleSetAutoConvert","features":[158]},{"name":"OleSetClipboard","features":[158]},{"name":"OleSetContainedObject","features":[3,158]},{"name":"OleSetMenuDescriptor","features":[3,158]},{"name":"OleTranslateAccelerator","features":[3,158,52]},{"name":"OleTranslateColor","features":[3,14,158]},{"name":"OleUIAddVerbMenuA","features":[3,158,52]},{"name":"OleUIAddVerbMenuW","features":[3,158,52]},{"name":"OleUIBusyA","features":[3,80,158]},{"name":"OleUIBusyW","features":[3,80,158]},{"name":"OleUICanConvertOrActivateAs","features":[3,158]},{"name":"OleUIChangeIconA","features":[3,158]},{"name":"OleUIChangeIconW","features":[3,158]},{"name":"OleUIChangeSourceA","features":[3,158,86]},{"name":"OleUIChangeSourceW","features":[3,158,86]},{"name":"OleUIConvertA","features":[3,158]},{"name":"OleUIConvertW","features":[3,158]},{"name":"OleUIEditLinksA","features":[3,158]},{"name":"OleUIEditLinksW","features":[3,158]},{"name":"OleUIInsertObjectA","features":[3,43,158]},{"name":"OleUIInsertObjectW","features":[3,43,158]},{"name":"OleUIObjectPropertiesA","features":[3,14,158,42,52]},{"name":"OleUIObjectPropertiesW","features":[3,14,158,42,52]},{"name":"OleUIPasteSpecialA","features":[3,43,158]},{"name":"OleUIPasteSpecialW","features":[3,43,158]},{"name":"OleUIPromptUserA","features":[3,158]},{"name":"OleUIPromptUserW","features":[3,158]},{"name":"OleUIUpdateLinksA","features":[3,158]},{"name":"OleUIUpdateLinksW","features":[3,158]},{"name":"OleUninitialize","features":[158]},{"name":"PAGEACTION_UI","features":[158]},{"name":"PAGEACTION_UI_DEFAULT","features":[158]},{"name":"PAGEACTION_UI_MODAL","features":[158]},{"name":"PAGEACTION_UI_MODELESS","features":[158]},{"name":"PAGEACTION_UI_SILENT","features":[158]},{"name":"PAGERANGE","features":[158]},{"name":"PAGESET","features":[3,158]},{"name":"PARAMDATA","features":[158,44]},{"name":"PARAMDESC","features":[3,43,158,44]},{"name":"PARAMDESCEX","features":[3,43,158,44]},{"name":"PARAMFLAGS","features":[158]},{"name":"PARAMFLAG_FHASCUSTDATA","features":[158]},{"name":"PARAMFLAG_FHASDEFAULT","features":[158]},{"name":"PARAMFLAG_FIN","features":[158]},{"name":"PARAMFLAG_FLCID","features":[158]},{"name":"PARAMFLAG_FOPT","features":[158]},{"name":"PARAMFLAG_FOUT","features":[158]},{"name":"PARAMFLAG_FRETVAL","features":[158]},{"name":"PARAMFLAG_NONE","features":[158]},{"name":"PASTE_SPECIAL_FLAGS","features":[158]},{"name":"PERPROP_E_FIRST","features":[158]},{"name":"PERPROP_E_LAST","features":[158]},{"name":"PERPROP_E_NOPAGEAVAILABLE","features":[158]},{"name":"PERPROP_S_FIRST","features":[158]},{"name":"PERPROP_S_LAST","features":[158]},{"name":"PICTDESC","features":[14,158,52]},{"name":"PICTUREATTRIBUTES","features":[158]},{"name":"PICTURE_SCALABLE","features":[158]},{"name":"PICTURE_TRANSPARENT","features":[158]},{"name":"PICTYPE","features":[158]},{"name":"PICTYPE_BITMAP","features":[158]},{"name":"PICTYPE_ENHMETAFILE","features":[158]},{"name":"PICTYPE_ICON","features":[158]},{"name":"PICTYPE_METAFILE","features":[158]},{"name":"PICTYPE_NONE","features":[158]},{"name":"PICTYPE_UNINITIALIZED","features":[158]},{"name":"POINTERINACTIVE","features":[158]},{"name":"POINTERINACTIVE_ACTIVATEONDRAG","features":[158]},{"name":"POINTERINACTIVE_ACTIVATEONENTRY","features":[158]},{"name":"POINTERINACTIVE_DEACTIVATEONLEAVE","features":[158]},{"name":"POINTF","features":[158]},{"name":"PRINTFLAG","features":[158]},{"name":"PRINTFLAG_DONTACTUALLYPRINT","features":[158]},{"name":"PRINTFLAG_FORCEPROPERTIES","features":[158]},{"name":"PRINTFLAG_MAYBOTHERUSER","features":[158]},{"name":"PRINTFLAG_PRINTTOFILE","features":[158]},{"name":"PRINTFLAG_PROMPTUSER","features":[158]},{"name":"PRINTFLAG_RECOMPOSETODEVICE","features":[158]},{"name":"PRINTFLAG_USERMAYCHANGEPRINTER","features":[158]},{"name":"PROPBAG2_TYPE","features":[158]},{"name":"PROPBAG2_TYPE_DATA","features":[158]},{"name":"PROPBAG2_TYPE_MONIKER","features":[158]},{"name":"PROPBAG2_TYPE_OBJECT","features":[158]},{"name":"PROPBAG2_TYPE_STORAGE","features":[158]},{"name":"PROPBAG2_TYPE_STREAM","features":[158]},{"name":"PROPBAG2_TYPE_UNDEFINED","features":[158]},{"name":"PROPBAG2_TYPE_URL","features":[158]},{"name":"PROPPAGEINFO","features":[3,158]},{"name":"PROPPAGESTATUS","features":[158]},{"name":"PROPPAGESTATUS_CLEAN","features":[158]},{"name":"PROPPAGESTATUS_DIRTY","features":[158]},{"name":"PROPPAGESTATUS_VALIDATE","features":[158]},{"name":"PROP_HWND_CHGICONDLG","features":[158]},{"name":"PSF_CHECKDISPLAYASICON","features":[158]},{"name":"PSF_DISABLEDISPLAYASICON","features":[158]},{"name":"PSF_HIDECHANGEICON","features":[158]},{"name":"PSF_NOREFRESHDATAOBJECT","features":[158]},{"name":"PSF_SELECTPASTE","features":[158]},{"name":"PSF_SELECTPASTELINK","features":[158]},{"name":"PSF_SHOWHELP","features":[158]},{"name":"PSF_STAYONCLIPBOARDCHANGE","features":[158]},{"name":"PS_MAXLINKTYPES","features":[158]},{"name":"QACONTAINER","features":[14,158]},{"name":"QACONTAINERFLAGS","features":[158]},{"name":"QACONTAINER_AUTOCLIP","features":[158]},{"name":"QACONTAINER_DISPLAYASDEFAULT","features":[158]},{"name":"QACONTAINER_MESSAGEREFLECT","features":[158]},{"name":"QACONTAINER_SHOWGRABHANDLES","features":[158]},{"name":"QACONTAINER_SHOWHATCHING","features":[158]},{"name":"QACONTAINER_SUPPORTSMNEMONICS","features":[158]},{"name":"QACONTAINER_UIDEAD","features":[158]},{"name":"QACONTAINER_USERMODE","features":[158]},{"name":"QACONTROL","features":[158]},{"name":"QueryPathOfRegTypeLib","features":[158]},{"name":"READYSTATE","features":[158]},{"name":"READYSTATE_COMPLETE","features":[158]},{"name":"READYSTATE_INTERACTIVE","features":[158]},{"name":"READYSTATE_LOADED","features":[158]},{"name":"READYSTATE_LOADING","features":[158]},{"name":"READYSTATE_UNINITIALIZED","features":[158]},{"name":"REGKIND","features":[158]},{"name":"REGKIND_DEFAULT","features":[158]},{"name":"REGKIND_NONE","features":[158]},{"name":"REGKIND_REGISTER","features":[158]},{"name":"RegisterActiveObject","features":[158]},{"name":"RegisterDragDrop","features":[3,158]},{"name":"RegisterTypeLib","features":[158]},{"name":"RegisterTypeLibForUser","features":[158]},{"name":"ReleaseStgMedium","features":[3,14,43,158]},{"name":"RevokeActiveObject","features":[158]},{"name":"RevokeDragDrop","features":[3,158]},{"name":"SAFEARRAYUNION","features":[3,43,158]},{"name":"SAFEARR_BRECORD","features":[158]},{"name":"SAFEARR_BSTR","features":[43,158]},{"name":"SAFEARR_DISPATCH","features":[158]},{"name":"SAFEARR_HAVEIID","features":[158]},{"name":"SAFEARR_UNKNOWN","features":[158]},{"name":"SAFEARR_VARIANT","features":[3,43,158]},{"name":"SELFREG_E_CLASS","features":[158]},{"name":"SELFREG_E_FIRST","features":[158]},{"name":"SELFREG_E_LAST","features":[158]},{"name":"SELFREG_E_TYPELIB","features":[158]},{"name":"SELFREG_S_FIRST","features":[158]},{"name":"SELFREG_S_LAST","features":[158]},{"name":"SF_BSTR","features":[158]},{"name":"SF_DISPATCH","features":[158]},{"name":"SF_ERROR","features":[158]},{"name":"SF_HAVEIID","features":[158]},{"name":"SF_I1","features":[158]},{"name":"SF_I2","features":[158]},{"name":"SF_I4","features":[158]},{"name":"SF_I8","features":[158]},{"name":"SF_RECORD","features":[158]},{"name":"SF_TYPE","features":[158]},{"name":"SF_UNKNOWN","features":[158]},{"name":"SF_VARIANT","features":[158]},{"name":"SID_GetCaller","features":[158]},{"name":"SID_ProvideRuntimeContext","features":[158]},{"name":"SID_VariantConversion","features":[158]},{"name":"STDOLE2_LCID","features":[158]},{"name":"STDOLE2_MAJORVERNUM","features":[158]},{"name":"STDOLE2_MINORVERNUM","features":[158]},{"name":"STDOLE_LCID","features":[158]},{"name":"STDOLE_MAJORVERNUM","features":[158]},{"name":"STDOLE_MINORVERNUM","features":[158]},{"name":"STDOLE_TLB","features":[158]},{"name":"STDTYPE_TLB","features":[158]},{"name":"SZOLEUI_MSG_ADDCONTROL","features":[158]},{"name":"SZOLEUI_MSG_BROWSE","features":[158]},{"name":"SZOLEUI_MSG_BROWSE_OFN","features":[158]},{"name":"SZOLEUI_MSG_CHANGEICON","features":[158]},{"name":"SZOLEUI_MSG_CHANGESOURCE","features":[158]},{"name":"SZOLEUI_MSG_CLOSEBUSYDIALOG","features":[158]},{"name":"SZOLEUI_MSG_CONVERT","features":[158]},{"name":"SZOLEUI_MSG_ENDDIALOG","features":[158]},{"name":"SZOLEUI_MSG_HELP","features":[158]},{"name":"SafeArrayAccessData","features":[43,158]},{"name":"SafeArrayAddRef","features":[43,158]},{"name":"SafeArrayAllocData","features":[43,158]},{"name":"SafeArrayAllocDescriptor","features":[43,158]},{"name":"SafeArrayAllocDescriptorEx","features":[43,158,44]},{"name":"SafeArrayCopy","features":[43,158]},{"name":"SafeArrayCopyData","features":[43,158]},{"name":"SafeArrayCreate","features":[43,158,44]},{"name":"SafeArrayCreateEx","features":[43,158,44]},{"name":"SafeArrayCreateVector","features":[43,158,44]},{"name":"SafeArrayCreateVectorEx","features":[43,158,44]},{"name":"SafeArrayDestroy","features":[43,158]},{"name":"SafeArrayDestroyData","features":[43,158]},{"name":"SafeArrayDestroyDescriptor","features":[43,158]},{"name":"SafeArrayGetDim","features":[43,158]},{"name":"SafeArrayGetElement","features":[43,158]},{"name":"SafeArrayGetElemsize","features":[43,158]},{"name":"SafeArrayGetIID","features":[43,158]},{"name":"SafeArrayGetLBound","features":[43,158]},{"name":"SafeArrayGetRecordInfo","features":[43,158]},{"name":"SafeArrayGetUBound","features":[43,158]},{"name":"SafeArrayGetVartype","features":[43,158,44]},{"name":"SafeArrayLock","features":[43,158]},{"name":"SafeArrayPtrOfIndex","features":[43,158]},{"name":"SafeArrayPutElement","features":[43,158]},{"name":"SafeArrayRedim","features":[43,158]},{"name":"SafeArrayReleaseData","features":[158]},{"name":"SafeArrayReleaseDescriptor","features":[43,158]},{"name":"SafeArraySetIID","features":[43,158]},{"name":"SafeArraySetRecordInfo","features":[43,158]},{"name":"SafeArrayUnaccessData","features":[43,158]},{"name":"SafeArrayUnlock","features":[43,158]},{"name":"TIFLAGS_EXTENDDISPATCHONLY","features":[158]},{"name":"TYPEFLAGS","features":[158]},{"name":"TYPEFLAG_FAGGREGATABLE","features":[158]},{"name":"TYPEFLAG_FAPPOBJECT","features":[158]},{"name":"TYPEFLAG_FCANCREATE","features":[158]},{"name":"TYPEFLAG_FCONTROL","features":[158]},{"name":"TYPEFLAG_FDISPATCHABLE","features":[158]},{"name":"TYPEFLAG_FDUAL","features":[158]},{"name":"TYPEFLAG_FHIDDEN","features":[158]},{"name":"TYPEFLAG_FLICENSED","features":[158]},{"name":"TYPEFLAG_FNONEXTENSIBLE","features":[158]},{"name":"TYPEFLAG_FOLEAUTOMATION","features":[158]},{"name":"TYPEFLAG_FPREDECLID","features":[158]},{"name":"TYPEFLAG_FPROXY","features":[158]},{"name":"TYPEFLAG_FREPLACEABLE","features":[158]},{"name":"TYPEFLAG_FRESTRICTED","features":[158]},{"name":"TYPEFLAG_FREVERSEBIND","features":[158]},{"name":"UASFLAGS","features":[158]},{"name":"UAS_BLOCKED","features":[158]},{"name":"UAS_MASK","features":[158]},{"name":"UAS_NOPARENTENABLE","features":[158]},{"name":"UAS_NORMAL","features":[158]},{"name":"UDATE","features":[3,158]},{"name":"UI_CONVERT_FLAGS","features":[158]},{"name":"UPDFCACHE_ALL","features":[158]},{"name":"UPDFCACHE_ALLBUTNODATACACHE","features":[158]},{"name":"UPDFCACHE_FLAGS","features":[158]},{"name":"UPDFCACHE_IFBLANK","features":[158]},{"name":"UPDFCACHE_IFBLANKORONSAVECACHE","features":[158]},{"name":"UPDFCACHE_NODATACACHE","features":[158]},{"name":"UPDFCACHE_NORMALCACHE","features":[158]},{"name":"UPDFCACHE_ONLYIFBLANK","features":[158]},{"name":"UPDFCACHE_ONSAVECACHE","features":[158]},{"name":"UPDFCACHE_ONSTOPCACHE","features":[158]},{"name":"USERCLASSTYPE","features":[158]},{"name":"USERCLASSTYPE_APPNAME","features":[158]},{"name":"USERCLASSTYPE_FULL","features":[158]},{"name":"USERCLASSTYPE_SHORT","features":[158]},{"name":"UnRegisterTypeLib","features":[43,158]},{"name":"UnRegisterTypeLibForUser","features":[43,158]},{"name":"VARCMP","features":[158]},{"name":"VARCMP_EQ","features":[158]},{"name":"VARCMP_GT","features":[158]},{"name":"VARCMP_LT","features":[158]},{"name":"VARCMP_NULL","features":[158]},{"name":"VARFORMAT_FIRST_DAY","features":[158]},{"name":"VARFORMAT_FIRST_DAY_FRIDAY","features":[158]},{"name":"VARFORMAT_FIRST_DAY_MONDAY","features":[158]},{"name":"VARFORMAT_FIRST_DAY_SATURDAY","features":[158]},{"name":"VARFORMAT_FIRST_DAY_SUNDAY","features":[158]},{"name":"VARFORMAT_FIRST_DAY_SYSTEMDEFAULT","features":[158]},{"name":"VARFORMAT_FIRST_DAY_THURSDAY","features":[158]},{"name":"VARFORMAT_FIRST_DAY_TUESDAY","features":[158]},{"name":"VARFORMAT_FIRST_DAY_WEDNESDAY","features":[158]},{"name":"VARFORMAT_FIRST_WEEK","features":[158]},{"name":"VARFORMAT_FIRST_WEEK_CONTAINS_JANUARY_FIRST","features":[158]},{"name":"VARFORMAT_FIRST_WEEK_HAS_SEVEN_DAYS","features":[158]},{"name":"VARFORMAT_FIRST_WEEK_LARGER_HALF_IN_CURRENT_YEAR","features":[158]},{"name":"VARFORMAT_FIRST_WEEK_SYSTEMDEFAULT","features":[158]},{"name":"VARFORMAT_GROUP","features":[158]},{"name":"VARFORMAT_GROUP_NOTTHOUSANDS","features":[158]},{"name":"VARFORMAT_GROUP_SYSTEMDEFAULT","features":[158]},{"name":"VARFORMAT_GROUP_THOUSANDS","features":[158]},{"name":"VARFORMAT_LEADING_DIGIT","features":[158]},{"name":"VARFORMAT_LEADING_DIGIT_INCLUDED","features":[158]},{"name":"VARFORMAT_LEADING_DIGIT_NOTINCLUDED","features":[158]},{"name":"VARFORMAT_LEADING_DIGIT_SYSTEMDEFAULT","features":[158]},{"name":"VARFORMAT_NAMED_FORMAT","features":[158]},{"name":"VARFORMAT_NAMED_FORMAT_GENERALDATE","features":[158]},{"name":"VARFORMAT_NAMED_FORMAT_LONGDATE","features":[158]},{"name":"VARFORMAT_NAMED_FORMAT_LONGTIME","features":[158]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTDATE","features":[158]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTTIME","features":[158]},{"name":"VARFORMAT_PARENTHESES","features":[158]},{"name":"VARFORMAT_PARENTHESES_NOTUSED","features":[158]},{"name":"VARFORMAT_PARENTHESES_SYSTEMDEFAULT","features":[158]},{"name":"VARFORMAT_PARENTHESES_USED","features":[158]},{"name":"VAR_CALENDAR_GREGORIAN","features":[158]},{"name":"VAR_CALENDAR_HIJRI","features":[158]},{"name":"VAR_CALENDAR_THAI","features":[158]},{"name":"VAR_DATEVALUEONLY","features":[158]},{"name":"VAR_FORMAT_NOSUBSTITUTE","features":[158]},{"name":"VAR_FOURDIGITYEARS","features":[158]},{"name":"VAR_LOCALBOOL","features":[158]},{"name":"VAR_TIMEVALUEONLY","features":[158]},{"name":"VAR_VALIDDATE","features":[158]},{"name":"VIEWSTATUS","features":[158]},{"name":"VIEWSTATUS_3DSURFACE","features":[158]},{"name":"VIEWSTATUS_DVASPECTOPAQUE","features":[158]},{"name":"VIEWSTATUS_DVASPECTTRANSPARENT","features":[158]},{"name":"VIEWSTATUS_OPAQUE","features":[158]},{"name":"VIEWSTATUS_SOLIDBKGND","features":[158]},{"name":"VIEWSTATUS_SURFACE","features":[158]},{"name":"VIEW_OBJECT_PROPERTIES_FLAGS","features":[158]},{"name":"VPF_DISABLERELATIVE","features":[158]},{"name":"VPF_DISABLESCALE","features":[158]},{"name":"VPF_SELECTRELATIVE","features":[158]},{"name":"VTDATEGRE_MAX","features":[158]},{"name":"VTDATEGRE_MIN","features":[158]},{"name":"VT_BLOB_PROPSET","features":[158]},{"name":"VT_STORED_PROPSET","features":[158]},{"name":"VT_STREAMED_PROPSET","features":[158]},{"name":"VT_VERBOSE_ENUM","features":[158]},{"name":"VarAbs","features":[3,43,158,44]},{"name":"VarAdd","features":[3,43,158,44]},{"name":"VarAnd","features":[3,43,158,44]},{"name":"VarBoolFromCy","features":[3,43,158]},{"name":"VarBoolFromDate","features":[3,158]},{"name":"VarBoolFromDec","features":[3,158]},{"name":"VarBoolFromDisp","features":[3,158]},{"name":"VarBoolFromI1","features":[3,158]},{"name":"VarBoolFromI2","features":[3,158]},{"name":"VarBoolFromI4","features":[3,158]},{"name":"VarBoolFromI8","features":[3,158]},{"name":"VarBoolFromR4","features":[3,158]},{"name":"VarBoolFromR8","features":[3,158]},{"name":"VarBoolFromStr","features":[3,158]},{"name":"VarBoolFromUI1","features":[3,158]},{"name":"VarBoolFromUI2","features":[3,158]},{"name":"VarBoolFromUI4","features":[3,158]},{"name":"VarBoolFromUI8","features":[3,158]},{"name":"VarBstrCat","features":[158]},{"name":"VarBstrCmp","features":[158]},{"name":"VarBstrFromBool","features":[3,158]},{"name":"VarBstrFromCy","features":[43,158]},{"name":"VarBstrFromDate","features":[158]},{"name":"VarBstrFromDec","features":[3,158]},{"name":"VarBstrFromDisp","features":[158]},{"name":"VarBstrFromI1","features":[158]},{"name":"VarBstrFromI2","features":[158]},{"name":"VarBstrFromI4","features":[158]},{"name":"VarBstrFromI8","features":[158]},{"name":"VarBstrFromR4","features":[158]},{"name":"VarBstrFromR8","features":[158]},{"name":"VarBstrFromUI1","features":[158]},{"name":"VarBstrFromUI2","features":[158]},{"name":"VarBstrFromUI4","features":[158]},{"name":"VarBstrFromUI8","features":[158]},{"name":"VarCat","features":[3,43,158,44]},{"name":"VarCmp","features":[3,43,158,44]},{"name":"VarCyAbs","features":[43,158]},{"name":"VarCyAdd","features":[43,158]},{"name":"VarCyCmp","features":[43,158]},{"name":"VarCyCmpR8","features":[43,158]},{"name":"VarCyFix","features":[43,158]},{"name":"VarCyFromBool","features":[3,43,158]},{"name":"VarCyFromDate","features":[43,158]},{"name":"VarCyFromDec","features":[3,43,158]},{"name":"VarCyFromDisp","features":[43,158]},{"name":"VarCyFromI1","features":[43,158]},{"name":"VarCyFromI2","features":[43,158]},{"name":"VarCyFromI4","features":[43,158]},{"name":"VarCyFromI8","features":[43,158]},{"name":"VarCyFromR4","features":[43,158]},{"name":"VarCyFromR8","features":[43,158]},{"name":"VarCyFromStr","features":[43,158]},{"name":"VarCyFromUI1","features":[43,158]},{"name":"VarCyFromUI2","features":[43,158]},{"name":"VarCyFromUI4","features":[43,158]},{"name":"VarCyFromUI8","features":[43,158]},{"name":"VarCyInt","features":[43,158]},{"name":"VarCyMul","features":[43,158]},{"name":"VarCyMulI4","features":[43,158]},{"name":"VarCyMulI8","features":[43,158]},{"name":"VarCyNeg","features":[43,158]},{"name":"VarCyRound","features":[43,158]},{"name":"VarCySub","features":[43,158]},{"name":"VarDateFromBool","features":[3,158]},{"name":"VarDateFromCy","features":[43,158]},{"name":"VarDateFromDec","features":[3,158]},{"name":"VarDateFromDisp","features":[158]},{"name":"VarDateFromI1","features":[158]},{"name":"VarDateFromI2","features":[158]},{"name":"VarDateFromI4","features":[158]},{"name":"VarDateFromI8","features":[158]},{"name":"VarDateFromR4","features":[158]},{"name":"VarDateFromR8","features":[158]},{"name":"VarDateFromStr","features":[158]},{"name":"VarDateFromUI1","features":[158]},{"name":"VarDateFromUI2","features":[158]},{"name":"VarDateFromUI4","features":[158]},{"name":"VarDateFromUI8","features":[158]},{"name":"VarDateFromUdate","features":[3,158]},{"name":"VarDateFromUdateEx","features":[3,158]},{"name":"VarDecAbs","features":[3,158]},{"name":"VarDecAdd","features":[3,158]},{"name":"VarDecCmp","features":[3,158]},{"name":"VarDecCmpR8","features":[3,158]},{"name":"VarDecDiv","features":[3,158]},{"name":"VarDecFix","features":[3,158]},{"name":"VarDecFromBool","features":[3,158]},{"name":"VarDecFromCy","features":[3,43,158]},{"name":"VarDecFromDate","features":[3,158]},{"name":"VarDecFromDisp","features":[3,158]},{"name":"VarDecFromI1","features":[3,158]},{"name":"VarDecFromI2","features":[3,158]},{"name":"VarDecFromI4","features":[3,158]},{"name":"VarDecFromI8","features":[3,158]},{"name":"VarDecFromR4","features":[3,158]},{"name":"VarDecFromR8","features":[3,158]},{"name":"VarDecFromStr","features":[3,158]},{"name":"VarDecFromUI1","features":[3,158]},{"name":"VarDecFromUI2","features":[3,158]},{"name":"VarDecFromUI4","features":[3,158]},{"name":"VarDecFromUI8","features":[3,158]},{"name":"VarDecInt","features":[3,158]},{"name":"VarDecMul","features":[3,158]},{"name":"VarDecNeg","features":[3,158]},{"name":"VarDecRound","features":[3,158]},{"name":"VarDecSub","features":[3,158]},{"name":"VarDiv","features":[3,43,158,44]},{"name":"VarEqv","features":[3,43,158,44]},{"name":"VarFix","features":[3,43,158,44]},{"name":"VarFormat","features":[3,43,158,44]},{"name":"VarFormatCurrency","features":[3,43,158,44]},{"name":"VarFormatDateTime","features":[3,43,158,44]},{"name":"VarFormatFromTokens","features":[3,43,158,44]},{"name":"VarFormatNumber","features":[3,43,158,44]},{"name":"VarFormatPercent","features":[3,43,158,44]},{"name":"VarI1FromBool","features":[3,158]},{"name":"VarI1FromCy","features":[43,158]},{"name":"VarI1FromDate","features":[158]},{"name":"VarI1FromDec","features":[3,158]},{"name":"VarI1FromDisp","features":[158]},{"name":"VarI1FromI2","features":[158]},{"name":"VarI1FromI4","features":[158]},{"name":"VarI1FromI8","features":[158]},{"name":"VarI1FromR4","features":[158]},{"name":"VarI1FromR8","features":[158]},{"name":"VarI1FromStr","features":[158]},{"name":"VarI1FromUI1","features":[158]},{"name":"VarI1FromUI2","features":[158]},{"name":"VarI1FromUI4","features":[158]},{"name":"VarI1FromUI8","features":[158]},{"name":"VarI2FromBool","features":[3,158]},{"name":"VarI2FromCy","features":[43,158]},{"name":"VarI2FromDate","features":[158]},{"name":"VarI2FromDec","features":[3,158]},{"name":"VarI2FromDisp","features":[158]},{"name":"VarI2FromI1","features":[158]},{"name":"VarI2FromI4","features":[158]},{"name":"VarI2FromI8","features":[158]},{"name":"VarI2FromR4","features":[158]},{"name":"VarI2FromR8","features":[158]},{"name":"VarI2FromStr","features":[158]},{"name":"VarI2FromUI1","features":[158]},{"name":"VarI2FromUI2","features":[158]},{"name":"VarI2FromUI4","features":[158]},{"name":"VarI2FromUI8","features":[158]},{"name":"VarI4FromBool","features":[3,158]},{"name":"VarI4FromCy","features":[43,158]},{"name":"VarI4FromDate","features":[158]},{"name":"VarI4FromDec","features":[3,158]},{"name":"VarI4FromDisp","features":[158]},{"name":"VarI4FromI1","features":[158]},{"name":"VarI4FromI2","features":[158]},{"name":"VarI4FromI8","features":[158]},{"name":"VarI4FromR4","features":[158]},{"name":"VarI4FromR8","features":[158]},{"name":"VarI4FromStr","features":[158]},{"name":"VarI4FromUI1","features":[158]},{"name":"VarI4FromUI2","features":[158]},{"name":"VarI4FromUI4","features":[158]},{"name":"VarI4FromUI8","features":[158]},{"name":"VarI8FromBool","features":[3,158]},{"name":"VarI8FromCy","features":[43,158]},{"name":"VarI8FromDate","features":[158]},{"name":"VarI8FromDec","features":[3,158]},{"name":"VarI8FromDisp","features":[158]},{"name":"VarI8FromI1","features":[158]},{"name":"VarI8FromI2","features":[158]},{"name":"VarI8FromR4","features":[158]},{"name":"VarI8FromR8","features":[158]},{"name":"VarI8FromStr","features":[158]},{"name":"VarI8FromUI1","features":[158]},{"name":"VarI8FromUI2","features":[158]},{"name":"VarI8FromUI4","features":[158]},{"name":"VarI8FromUI8","features":[158]},{"name":"VarIdiv","features":[3,43,158,44]},{"name":"VarImp","features":[3,43,158,44]},{"name":"VarInt","features":[3,43,158,44]},{"name":"VarMod","features":[3,43,158,44]},{"name":"VarMonthName","features":[158]},{"name":"VarMul","features":[3,43,158,44]},{"name":"VarNeg","features":[3,43,158,44]},{"name":"VarNot","features":[3,43,158,44]},{"name":"VarNumFromParseNum","features":[3,43,158,44]},{"name":"VarOr","features":[3,43,158,44]},{"name":"VarParseNumFromStr","features":[158]},{"name":"VarPow","features":[3,43,158,44]},{"name":"VarR4CmpR8","features":[158]},{"name":"VarR4FromBool","features":[3,158]},{"name":"VarR4FromCy","features":[43,158]},{"name":"VarR4FromDate","features":[158]},{"name":"VarR4FromDec","features":[3,158]},{"name":"VarR4FromDisp","features":[158]},{"name":"VarR4FromI1","features":[158]},{"name":"VarR4FromI2","features":[158]},{"name":"VarR4FromI4","features":[158]},{"name":"VarR4FromI8","features":[158]},{"name":"VarR4FromR8","features":[158]},{"name":"VarR4FromStr","features":[158]},{"name":"VarR4FromUI1","features":[158]},{"name":"VarR4FromUI2","features":[158]},{"name":"VarR4FromUI4","features":[158]},{"name":"VarR4FromUI8","features":[158]},{"name":"VarR8FromBool","features":[3,158]},{"name":"VarR8FromCy","features":[43,158]},{"name":"VarR8FromDate","features":[158]},{"name":"VarR8FromDec","features":[3,158]},{"name":"VarR8FromDisp","features":[158]},{"name":"VarR8FromI1","features":[158]},{"name":"VarR8FromI2","features":[158]},{"name":"VarR8FromI4","features":[158]},{"name":"VarR8FromI8","features":[158]},{"name":"VarR8FromR4","features":[158]},{"name":"VarR8FromStr","features":[158]},{"name":"VarR8FromUI1","features":[158]},{"name":"VarR8FromUI2","features":[158]},{"name":"VarR8FromUI4","features":[158]},{"name":"VarR8FromUI8","features":[158]},{"name":"VarR8Pow","features":[158]},{"name":"VarR8Round","features":[158]},{"name":"VarRound","features":[3,43,158,44]},{"name":"VarSub","features":[3,43,158,44]},{"name":"VarTokenizeFormatString","features":[158]},{"name":"VarUI1FromBool","features":[3,158]},{"name":"VarUI1FromCy","features":[43,158]},{"name":"VarUI1FromDate","features":[158]},{"name":"VarUI1FromDec","features":[3,158]},{"name":"VarUI1FromDisp","features":[158]},{"name":"VarUI1FromI1","features":[158]},{"name":"VarUI1FromI2","features":[158]},{"name":"VarUI1FromI4","features":[158]},{"name":"VarUI1FromI8","features":[158]},{"name":"VarUI1FromR4","features":[158]},{"name":"VarUI1FromR8","features":[158]},{"name":"VarUI1FromStr","features":[158]},{"name":"VarUI1FromUI2","features":[158]},{"name":"VarUI1FromUI4","features":[158]},{"name":"VarUI1FromUI8","features":[158]},{"name":"VarUI2FromBool","features":[3,158]},{"name":"VarUI2FromCy","features":[43,158]},{"name":"VarUI2FromDate","features":[158]},{"name":"VarUI2FromDec","features":[3,158]},{"name":"VarUI2FromDisp","features":[158]},{"name":"VarUI2FromI1","features":[158]},{"name":"VarUI2FromI2","features":[158]},{"name":"VarUI2FromI4","features":[158]},{"name":"VarUI2FromI8","features":[158]},{"name":"VarUI2FromR4","features":[158]},{"name":"VarUI2FromR8","features":[158]},{"name":"VarUI2FromStr","features":[158]},{"name":"VarUI2FromUI1","features":[158]},{"name":"VarUI2FromUI4","features":[158]},{"name":"VarUI2FromUI8","features":[158]},{"name":"VarUI4FromBool","features":[3,158]},{"name":"VarUI4FromCy","features":[43,158]},{"name":"VarUI4FromDate","features":[158]},{"name":"VarUI4FromDec","features":[3,158]},{"name":"VarUI4FromDisp","features":[158]},{"name":"VarUI4FromI1","features":[158]},{"name":"VarUI4FromI2","features":[158]},{"name":"VarUI4FromI4","features":[158]},{"name":"VarUI4FromI8","features":[158]},{"name":"VarUI4FromR4","features":[158]},{"name":"VarUI4FromR8","features":[158]},{"name":"VarUI4FromStr","features":[158]},{"name":"VarUI4FromUI1","features":[158]},{"name":"VarUI4FromUI2","features":[158]},{"name":"VarUI4FromUI8","features":[158]},{"name":"VarUI8FromBool","features":[3,158]},{"name":"VarUI8FromCy","features":[43,158]},{"name":"VarUI8FromDate","features":[158]},{"name":"VarUI8FromDec","features":[3,158]},{"name":"VarUI8FromDisp","features":[158]},{"name":"VarUI8FromI1","features":[158]},{"name":"VarUI8FromI2","features":[158]},{"name":"VarUI8FromI8","features":[158]},{"name":"VarUI8FromR4","features":[158]},{"name":"VarUI8FromR8","features":[158]},{"name":"VarUI8FromStr","features":[158]},{"name":"VarUI8FromUI1","features":[158]},{"name":"VarUI8FromUI2","features":[158]},{"name":"VarUI8FromUI4","features":[158]},{"name":"VarUdateFromDate","features":[3,158]},{"name":"VarWeekdayName","features":[158]},{"name":"VarXor","features":[3,43,158,44]},{"name":"VectorFromBstr","features":[43,158]},{"name":"WIN32","features":[158]},{"name":"WPCSETTING","features":[158]},{"name":"WPCSETTING_FILEDOWNLOAD_BLOCKED","features":[158]},{"name":"WPCSETTING_LOGGING_ENABLED","features":[158]},{"name":"XFORMCOORDS","features":[158]},{"name":"XFORMCOORDS_CONTAINERTOHIMETRIC","features":[158]},{"name":"XFORMCOORDS_EVENTCOMPAT","features":[158]},{"name":"XFORMCOORDS_HIMETRICTOCONTAINER","features":[158]},{"name":"XFORMCOORDS_POSITION","features":[158]},{"name":"XFORMCOORDS_SIZE","features":[158]},{"name":"_wireBRECORD","features":[158]},{"name":"_wireSAFEARRAY","features":[3,43,158]},{"name":"_wireVARIANT","features":[3,43,158]},{"name":"fdexEnumAll","features":[158]},{"name":"fdexEnumDefault","features":[158]},{"name":"fdexNameCaseInsensitive","features":[158]},{"name":"fdexNameCaseSensitive","features":[158]},{"name":"fdexNameEnsure","features":[158]},{"name":"fdexNameImplicit","features":[158]},{"name":"fdexNameInternal","features":[158]},{"name":"fdexNameNoDynamicProperties","features":[158]},{"name":"fdexPropCanCall","features":[158]},{"name":"fdexPropCanConstruct","features":[158]},{"name":"fdexPropCanGet","features":[158]},{"name":"fdexPropCanPut","features":[158]},{"name":"fdexPropCanPutRef","features":[158]},{"name":"fdexPropCanSourceEvents","features":[158]},{"name":"fdexPropCannotCall","features":[158]},{"name":"fdexPropCannotConstruct","features":[158]},{"name":"fdexPropCannotGet","features":[158]},{"name":"fdexPropCannotPut","features":[158]},{"name":"fdexPropCannotPutRef","features":[158]},{"name":"fdexPropCannotSourceEvents","features":[158]},{"name":"fdexPropDynamicType","features":[158]},{"name":"fdexPropNoSideEffects","features":[158]},{"name":"triChecked","features":[158]},{"name":"triGray","features":[158]},{"name":"triUnchecked","features":[158]}],"589":[{"name":"CYPHER_BLOCK","features":[122]},{"name":"ENCRYPTED_LM_OWF_PASSWORD","features":[122]},{"name":"LM_OWF_PASSWORD","features":[122]},{"name":"MSChapSrvChangePassword","features":[3,122]},{"name":"MSChapSrvChangePassword2","features":[3,122]},{"name":"SAMPR_ENCRYPTED_USER_PASSWORD","features":[122]}],"590":[{"name":"AppearPropPage","features":[192]},{"name":"AutoPathFormat","features":[192]},{"name":"BackupPerfRegistryToFileW","features":[192]},{"name":"BootTraceSession","features":[192]},{"name":"BootTraceSessionCollection","features":[192]},{"name":"ClockType","features":[192]},{"name":"CommitMode","features":[192]},{"name":"CounterItem","features":[192]},{"name":"CounterItem2","features":[192]},{"name":"CounterPathCallBack","features":[192]},{"name":"CounterPropPage","features":[192]},{"name":"Counters","features":[192]},{"name":"DATA_SOURCE_REGISTRY","features":[192]},{"name":"DATA_SOURCE_WBEM","features":[192]},{"name":"DICounterItem","features":[192]},{"name":"DIID_DICounterItem","features":[192]},{"name":"DIID_DILogFileItem","features":[192]},{"name":"DIID_DISystemMonitor","features":[192]},{"name":"DIID_DISystemMonitorEvents","features":[192]},{"name":"DIID_DISystemMonitorInternal","features":[192]},{"name":"DILogFileItem","features":[192]},{"name":"DISystemMonitor","features":[192]},{"name":"DISystemMonitorEvents","features":[192]},{"name":"DISystemMonitorInternal","features":[192]},{"name":"DataCollectorSet","features":[192]},{"name":"DataCollectorSetCollection","features":[192]},{"name":"DataCollectorSetStatus","features":[192]},{"name":"DataCollectorType","features":[192]},{"name":"DataManagerSteps","features":[192]},{"name":"DataSourceTypeConstants","features":[192]},{"name":"DisplayTypeConstants","features":[192]},{"name":"FileFormat","features":[192]},{"name":"FolderActionSteps","features":[192]},{"name":"GeneralPropPage","features":[192]},{"name":"GraphPropPage","features":[192]},{"name":"H_WBEM_DATASOURCE","features":[192]},{"name":"IAlertDataCollector","features":[192]},{"name":"IApiTracingDataCollector","features":[192]},{"name":"IConfigurationDataCollector","features":[192]},{"name":"ICounterItem","features":[192]},{"name":"ICounterItem2","features":[192]},{"name":"ICounters","features":[192]},{"name":"IDataCollector","features":[192]},{"name":"IDataCollectorCollection","features":[192]},{"name":"IDataCollectorSet","features":[192]},{"name":"IDataCollectorSetCollection","features":[192]},{"name":"IDataManager","features":[192]},{"name":"IFolderAction","features":[192]},{"name":"IFolderActionCollection","features":[192]},{"name":"ILogFileItem","features":[192]},{"name":"ILogFiles","features":[192]},{"name":"IPerformanceCounterDataCollector","features":[192]},{"name":"ISchedule","features":[192]},{"name":"IScheduleCollection","features":[192]},{"name":"ISystemMonitor","features":[192]},{"name":"ISystemMonitor2","features":[192]},{"name":"ISystemMonitorEvents","features":[192]},{"name":"ITraceDataCollector","features":[192]},{"name":"ITraceDataProvider","features":[192]},{"name":"ITraceDataProviderCollection","features":[192]},{"name":"IValueMap","features":[192]},{"name":"IValueMapItem","features":[192]},{"name":"InstallPerfDllA","features":[192]},{"name":"InstallPerfDllW","features":[192]},{"name":"LIBID_SystemMonitor","features":[192]},{"name":"LegacyDataCollectorSet","features":[192]},{"name":"LegacyDataCollectorSetCollection","features":[192]},{"name":"LegacyTraceSession","features":[192]},{"name":"LegacyTraceSessionCollection","features":[192]},{"name":"LoadPerfCounterTextStringsA","features":[3,192]},{"name":"LoadPerfCounterTextStringsW","features":[3,192]},{"name":"LogFileItem","features":[192]},{"name":"LogFiles","features":[192]},{"name":"MAX_COUNTER_PATH","features":[192]},{"name":"MAX_PERF_OBJECTS_IN_QUERY_FUNCTION","features":[192]},{"name":"PDH_ACCESS_DENIED","features":[192]},{"name":"PDH_ASYNC_QUERY_TIMEOUT","features":[192]},{"name":"PDH_BINARY_LOG_CORRUPT","features":[192]},{"name":"PDH_BROWSE_DLG_CONFIG_A","features":[3,192]},{"name":"PDH_BROWSE_DLG_CONFIG_HA","features":[3,192]},{"name":"PDH_BROWSE_DLG_CONFIG_HW","features":[3,192]},{"name":"PDH_BROWSE_DLG_CONFIG_W","features":[3,192]},{"name":"PDH_CALC_NEGATIVE_DENOMINATOR","features":[192]},{"name":"PDH_CALC_NEGATIVE_TIMEBASE","features":[192]},{"name":"PDH_CALC_NEGATIVE_VALUE","features":[192]},{"name":"PDH_CANNOT_CONNECT_MACHINE","features":[192]},{"name":"PDH_CANNOT_CONNECT_WMI_SERVER","features":[192]},{"name":"PDH_CANNOT_READ_NAME_STRINGS","features":[192]},{"name":"PDH_CANNOT_SET_DEFAULT_REALTIME_DATASOURCE","features":[192]},{"name":"PDH_COUNTER_ALREADY_IN_QUERY","features":[192]},{"name":"PDH_COUNTER_INFO_A","features":[192]},{"name":"PDH_COUNTER_INFO_W","features":[192]},{"name":"PDH_COUNTER_PATH_ELEMENTS_A","features":[192]},{"name":"PDH_COUNTER_PATH_ELEMENTS_W","features":[192]},{"name":"PDH_CSTATUS_BAD_COUNTERNAME","features":[192]},{"name":"PDH_CSTATUS_INVALID_DATA","features":[192]},{"name":"PDH_CSTATUS_ITEM_NOT_VALIDATED","features":[192]},{"name":"PDH_CSTATUS_NEW_DATA","features":[192]},{"name":"PDH_CSTATUS_NO_COUNTER","features":[192]},{"name":"PDH_CSTATUS_NO_COUNTERNAME","features":[192]},{"name":"PDH_CSTATUS_NO_INSTANCE","features":[192]},{"name":"PDH_CSTATUS_NO_MACHINE","features":[192]},{"name":"PDH_CSTATUS_NO_OBJECT","features":[192]},{"name":"PDH_CSTATUS_VALID_DATA","features":[192]},{"name":"PDH_CVERSION_WIN50","features":[192]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_A","features":[192]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_W","features":[192]},{"name":"PDH_DATA_SOURCE_IS_LOG_FILE","features":[192]},{"name":"PDH_DATA_SOURCE_IS_REAL_TIME","features":[192]},{"name":"PDH_DIALOG_CANCELLED","features":[192]},{"name":"PDH_DLL_VERSION","features":[192]},{"name":"PDH_END_OF_LOG_FILE","features":[192]},{"name":"PDH_ENTRY_NOT_IN_LOG_FILE","features":[192]},{"name":"PDH_FILE_ALREADY_EXISTS","features":[192]},{"name":"PDH_FILE_NOT_FOUND","features":[192]},{"name":"PDH_FLAGS_FILE_BROWSER_ONLY","features":[192]},{"name":"PDH_FLAGS_NONE","features":[192]},{"name":"PDH_FMT","features":[192]},{"name":"PDH_FMT_COUNTERVALUE","features":[192]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_A","features":[192]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_W","features":[192]},{"name":"PDH_FMT_DOUBLE","features":[192]},{"name":"PDH_FMT_LARGE","features":[192]},{"name":"PDH_FMT_LONG","features":[192]},{"name":"PDH_FUNCTION_NOT_FOUND","features":[192]},{"name":"PDH_INCORRECT_APPEND_TIME","features":[192]},{"name":"PDH_INSUFFICIENT_BUFFER","features":[192]},{"name":"PDH_INVALID_ARGUMENT","features":[192]},{"name":"PDH_INVALID_BUFFER","features":[192]},{"name":"PDH_INVALID_DATA","features":[192]},{"name":"PDH_INVALID_DATASOURCE","features":[192]},{"name":"PDH_INVALID_HANDLE","features":[192]},{"name":"PDH_INVALID_INSTANCE","features":[192]},{"name":"PDH_INVALID_PATH","features":[192]},{"name":"PDH_INVALID_SQLDB","features":[192]},{"name":"PDH_INVALID_SQL_LOG_FORMAT","features":[192]},{"name":"PDH_LOG","features":[192]},{"name":"PDH_LOGSVC_NOT_OPENED","features":[192]},{"name":"PDH_LOGSVC_QUERY_NOT_FOUND","features":[192]},{"name":"PDH_LOG_FILE_CREATE_ERROR","features":[192]},{"name":"PDH_LOG_FILE_OPEN_ERROR","features":[192]},{"name":"PDH_LOG_FILE_TOO_SMALL","features":[192]},{"name":"PDH_LOG_READ_ACCESS","features":[192]},{"name":"PDH_LOG_SAMPLE_TOO_SMALL","features":[192]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_A","features":[3,192]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_W","features":[3,192]},{"name":"PDH_LOG_TYPE","features":[192]},{"name":"PDH_LOG_TYPE_BINARY","features":[192]},{"name":"PDH_LOG_TYPE_CSV","features":[192]},{"name":"PDH_LOG_TYPE_NOT_FOUND","features":[192]},{"name":"PDH_LOG_TYPE_PERFMON","features":[192]},{"name":"PDH_LOG_TYPE_RETIRED_BIN","features":[192]},{"name":"PDH_LOG_TYPE_SQL","features":[192]},{"name":"PDH_LOG_TYPE_TRACE_GENERIC","features":[192]},{"name":"PDH_LOG_TYPE_TRACE_KERNEL","features":[192]},{"name":"PDH_LOG_TYPE_TSV","features":[192]},{"name":"PDH_LOG_TYPE_UNDEFINED","features":[192]},{"name":"PDH_LOG_UPDATE_ACCESS","features":[192]},{"name":"PDH_LOG_WRITE_ACCESS","features":[192]},{"name":"PDH_MAX_COUNTER_NAME","features":[192]},{"name":"PDH_MAX_COUNTER_PATH","features":[192]},{"name":"PDH_MAX_DATASOURCE_PATH","features":[192]},{"name":"PDH_MAX_INSTANCE_NAME","features":[192]},{"name":"PDH_MAX_SCALE","features":[192]},{"name":"PDH_MEMORY_ALLOCATION_FAILURE","features":[192]},{"name":"PDH_MIN_SCALE","features":[192]},{"name":"PDH_MORE_DATA","features":[192]},{"name":"PDH_NOEXPANDCOUNTERS","features":[192]},{"name":"PDH_NOEXPANDINSTANCES","features":[192]},{"name":"PDH_NOT_IMPLEMENTED","features":[192]},{"name":"PDH_NO_COUNTERS","features":[192]},{"name":"PDH_NO_DATA","features":[192]},{"name":"PDH_NO_DIALOG_DATA","features":[192]},{"name":"PDH_NO_MORE_DATA","features":[192]},{"name":"PDH_OS_EARLIER_VERSION","features":[192]},{"name":"PDH_OS_LATER_VERSION","features":[192]},{"name":"PDH_PATH_FLAGS","features":[192]},{"name":"PDH_PATH_WBEM_INPUT","features":[192]},{"name":"PDH_PATH_WBEM_NONE","features":[192]},{"name":"PDH_PATH_WBEM_RESULT","features":[192]},{"name":"PDH_PLA_COLLECTION_ALREADY_RUNNING","features":[192]},{"name":"PDH_PLA_COLLECTION_NOT_FOUND","features":[192]},{"name":"PDH_PLA_ERROR_ALREADY_EXISTS","features":[192]},{"name":"PDH_PLA_ERROR_FILEPATH","features":[192]},{"name":"PDH_PLA_ERROR_NAME_TOO_LONG","features":[192]},{"name":"PDH_PLA_ERROR_NOSTART","features":[192]},{"name":"PDH_PLA_ERROR_SCHEDULE_ELAPSED","features":[192]},{"name":"PDH_PLA_ERROR_SCHEDULE_OVERLAP","features":[192]},{"name":"PDH_PLA_ERROR_TYPE_MISMATCH","features":[192]},{"name":"PDH_PLA_SERVICE_ERROR","features":[192]},{"name":"PDH_PLA_VALIDATION_ERROR","features":[192]},{"name":"PDH_PLA_VALIDATION_WARNING","features":[192]},{"name":"PDH_QUERY_PERF_DATA_TIMEOUT","features":[192]},{"name":"PDH_RAW_COUNTER","features":[3,192]},{"name":"PDH_RAW_COUNTER_ITEM_A","features":[3,192]},{"name":"PDH_RAW_COUNTER_ITEM_W","features":[3,192]},{"name":"PDH_RAW_LOG_RECORD","features":[192]},{"name":"PDH_REFRESHCOUNTERS","features":[192]},{"name":"PDH_RETRY","features":[192]},{"name":"PDH_SELECT_DATA_SOURCE_FLAGS","features":[192]},{"name":"PDH_SQL_ALLOCCON_FAILED","features":[192]},{"name":"PDH_SQL_ALLOC_FAILED","features":[192]},{"name":"PDH_SQL_ALTER_DETAIL_FAILED","features":[192]},{"name":"PDH_SQL_BIND_FAILED","features":[192]},{"name":"PDH_SQL_CONNECT_FAILED","features":[192]},{"name":"PDH_SQL_EXEC_DIRECT_FAILED","features":[192]},{"name":"PDH_SQL_FETCH_FAILED","features":[192]},{"name":"PDH_SQL_MORE_RESULTS_FAILED","features":[192]},{"name":"PDH_SQL_ROWCOUNT_FAILED","features":[192]},{"name":"PDH_STATISTICS","features":[192]},{"name":"PDH_STRING_NOT_FOUND","features":[192]},{"name":"PDH_TIME_INFO","features":[192]},{"name":"PDH_UNABLE_MAP_NAME_FILES","features":[192]},{"name":"PDH_UNABLE_READ_LOG_HEADER","features":[192]},{"name":"PDH_UNKNOWN_LOGSVC_COMMAND","features":[192]},{"name":"PDH_UNKNOWN_LOG_FORMAT","features":[192]},{"name":"PDH_UNMATCHED_APPEND_COUNTER","features":[192]},{"name":"PDH_VERSION","features":[192]},{"name":"PDH_WBEM_ERROR","features":[192]},{"name":"PERFLIBREQUEST","features":[192]},{"name":"PERF_ADD_COUNTER","features":[192]},{"name":"PERF_AGGREGATE_AVG","features":[192]},{"name":"PERF_AGGREGATE_INSTANCE","features":[192]},{"name":"PERF_AGGREGATE_MAX","features":[192]},{"name":"PERF_AGGREGATE_MIN","features":[192]},{"name":"PERF_AGGREGATE_TOTAL","features":[192]},{"name":"PERF_AGGREGATE_UNDEFINED","features":[192]},{"name":"PERF_ATTRIB_BY_REFERENCE","features":[192]},{"name":"PERF_ATTRIB_DISPLAY_AS_HEX","features":[192]},{"name":"PERF_ATTRIB_DISPLAY_AS_REAL","features":[192]},{"name":"PERF_ATTRIB_NO_DISPLAYABLE","features":[192]},{"name":"PERF_ATTRIB_NO_GROUP_SEPARATOR","features":[192]},{"name":"PERF_COLLECT_END","features":[192]},{"name":"PERF_COLLECT_START","features":[192]},{"name":"PERF_COUNTERSET","features":[192]},{"name":"PERF_COUNTERSET_FLAG_AGGREGATE","features":[192]},{"name":"PERF_COUNTERSET_FLAG_HISTORY","features":[192]},{"name":"PERF_COUNTERSET_FLAG_INSTANCE","features":[192]},{"name":"PERF_COUNTERSET_FLAG_MULTIPLE","features":[192]},{"name":"PERF_COUNTERSET_INFO","features":[192]},{"name":"PERF_COUNTERSET_INSTANCE","features":[192]},{"name":"PERF_COUNTERSET_MULTI_INSTANCES","features":[192]},{"name":"PERF_COUNTERSET_REG_INFO","features":[192]},{"name":"PERF_COUNTERSET_SINGLE_AGGREGATE","features":[192]},{"name":"PERF_COUNTERSET_SINGLE_INSTANCE","features":[192]},{"name":"PERF_COUNTER_AGGREGATE_FUNC","features":[192]},{"name":"PERF_COUNTER_BASE","features":[192]},{"name":"PERF_COUNTER_BLOCK","features":[192]},{"name":"PERF_COUNTER_DATA","features":[192]},{"name":"PERF_COUNTER_DEFINITION","features":[192]},{"name":"PERF_COUNTER_DEFINITION","features":[192]},{"name":"PERF_COUNTER_ELAPSED","features":[192]},{"name":"PERF_COUNTER_FRACTION","features":[192]},{"name":"PERF_COUNTER_HEADER","features":[192]},{"name":"PERF_COUNTER_HISTOGRAM","features":[192]},{"name":"PERF_COUNTER_HISTOGRAM_TYPE","features":[192]},{"name":"PERF_COUNTER_IDENTIFIER","features":[192]},{"name":"PERF_COUNTER_IDENTITY","features":[192]},{"name":"PERF_COUNTER_INFO","features":[192]},{"name":"PERF_COUNTER_PRECISION","features":[192]},{"name":"PERF_COUNTER_QUEUELEN","features":[192]},{"name":"PERF_COUNTER_RATE","features":[192]},{"name":"PERF_COUNTER_REG_INFO","features":[192]},{"name":"PERF_COUNTER_VALUE","features":[192]},{"name":"PERF_DATA_BLOCK","features":[3,192]},{"name":"PERF_DATA_HEADER","features":[3,192]},{"name":"PERF_DATA_REVISION","features":[192]},{"name":"PERF_DATA_VERSION","features":[192]},{"name":"PERF_DELTA_BASE","features":[192]},{"name":"PERF_DELTA_COUNTER","features":[192]},{"name":"PERF_DETAIL","features":[192]},{"name":"PERF_DETAIL_ADVANCED","features":[192]},{"name":"PERF_DETAIL_EXPERT","features":[192]},{"name":"PERF_DETAIL_NOVICE","features":[192]},{"name":"PERF_DETAIL_WIZARD","features":[192]},{"name":"PERF_DISPLAY_NOSHOW","features":[192]},{"name":"PERF_DISPLAY_NO_SUFFIX","features":[192]},{"name":"PERF_DISPLAY_PERCENT","features":[192]},{"name":"PERF_DISPLAY_PER_SEC","features":[192]},{"name":"PERF_DISPLAY_SECONDS","features":[192]},{"name":"PERF_ENUM_INSTANCES","features":[192]},{"name":"PERF_ERROR_RETURN","features":[192]},{"name":"PERF_FILTER","features":[192]},{"name":"PERF_INSTANCE_DEFINITION","features":[192]},{"name":"PERF_INSTANCE_HEADER","features":[192]},{"name":"PERF_INVERSE_COUNTER","features":[192]},{"name":"PERF_MAX_INSTANCE_NAME","features":[192]},{"name":"PERF_MEM_ALLOC","features":[192]},{"name":"PERF_MEM_FREE","features":[192]},{"name":"PERF_METADATA_MULTIPLE_INSTANCES","features":[192]},{"name":"PERF_METADATA_NO_INSTANCES","features":[192]},{"name":"PERF_MULTIPLE_COUNTERS","features":[192]},{"name":"PERF_MULTIPLE_INSTANCES","features":[192]},{"name":"PERF_MULTI_COUNTER","features":[192]},{"name":"PERF_MULTI_COUNTERS","features":[192]},{"name":"PERF_MULTI_INSTANCES","features":[192]},{"name":"PERF_NO_INSTANCES","features":[192]},{"name":"PERF_NO_UNIQUE_ID","features":[192]},{"name":"PERF_NUMBER_DECIMAL","features":[192]},{"name":"PERF_NUMBER_DEC_1000","features":[192]},{"name":"PERF_NUMBER_HEX","features":[192]},{"name":"PERF_OBJECT_TIMER","features":[192]},{"name":"PERF_OBJECT_TYPE","features":[192]},{"name":"PERF_OBJECT_TYPE","features":[192]},{"name":"PERF_PROVIDER_CONTEXT","features":[192]},{"name":"PERF_PROVIDER_DRIVER","features":[192]},{"name":"PERF_PROVIDER_KERNEL_MODE","features":[192]},{"name":"PERF_PROVIDER_USER_MODE","features":[192]},{"name":"PERF_REG_COUNTERSET_ENGLISH_NAME","features":[192]},{"name":"PERF_REG_COUNTERSET_HELP_STRING","features":[192]},{"name":"PERF_REG_COUNTERSET_NAME_STRING","features":[192]},{"name":"PERF_REG_COUNTERSET_STRUCT","features":[192]},{"name":"PERF_REG_COUNTER_ENGLISH_NAMES","features":[192]},{"name":"PERF_REG_COUNTER_HELP_STRINGS","features":[192]},{"name":"PERF_REG_COUNTER_NAME_STRINGS","features":[192]},{"name":"PERF_REG_COUNTER_STRUCT","features":[192]},{"name":"PERF_REG_PROVIDER_GUID","features":[192]},{"name":"PERF_REG_PROVIDER_NAME","features":[192]},{"name":"PERF_REMOVE_COUNTER","features":[192]},{"name":"PERF_SINGLE_COUNTER","features":[192]},{"name":"PERF_SIZE_DWORD","features":[192]},{"name":"PERF_SIZE_LARGE","features":[192]},{"name":"PERF_SIZE_VARIABLE_LEN","features":[192]},{"name":"PERF_SIZE_ZERO","features":[192]},{"name":"PERF_STRING_BUFFER_HEADER","features":[192]},{"name":"PERF_STRING_COUNTER_HEADER","features":[192]},{"name":"PERF_TEXT_ASCII","features":[192]},{"name":"PERF_TEXT_UNICODE","features":[192]},{"name":"PERF_TIMER_100NS","features":[192]},{"name":"PERF_TIMER_TICK","features":[192]},{"name":"PERF_TYPE_COUNTER","features":[192]},{"name":"PERF_TYPE_NUMBER","features":[192]},{"name":"PERF_TYPE_TEXT","features":[192]},{"name":"PERF_TYPE_ZERO","features":[192]},{"name":"PERF_WILDCARD_COUNTER","features":[192]},{"name":"PERF_WILDCARD_INSTANCE","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_A_NAME","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_C_NAME","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_D_TIME","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_L_VAL","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_MASK","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_M_VAL","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_SINGLE","features":[192]},{"name":"PLAL_ALERT_CMD_LINE_U_TEXT","features":[192]},{"name":"PLA_CABEXTRACT_CALLBACK","features":[192]},{"name":"PLA_CAPABILITY_AUTOLOGGER","features":[192]},{"name":"PLA_CAPABILITY_LEGACY_SESSION","features":[192]},{"name":"PLA_CAPABILITY_LEGACY_SVC","features":[192]},{"name":"PLA_CAPABILITY_LOCAL","features":[192]},{"name":"PLA_CAPABILITY_V1_SESSION","features":[192]},{"name":"PLA_CAPABILITY_V1_SVC","features":[192]},{"name":"PLA_CAPABILITY_V1_SYSTEM","features":[192]},{"name":"PM_CLOSE_PROC","features":[192]},{"name":"PM_COLLECT_PROC","features":[192]},{"name":"PM_OPEN_PROC","features":[192]},{"name":"PdhAddCounterA","features":[192]},{"name":"PdhAddCounterW","features":[192]},{"name":"PdhAddEnglishCounterA","features":[192]},{"name":"PdhAddEnglishCounterW","features":[192]},{"name":"PdhBindInputDataSourceA","features":[192]},{"name":"PdhBindInputDataSourceW","features":[192]},{"name":"PdhBrowseCountersA","features":[3,192]},{"name":"PdhBrowseCountersHA","features":[3,192]},{"name":"PdhBrowseCountersHW","features":[3,192]},{"name":"PdhBrowseCountersW","features":[3,192]},{"name":"PdhCalculateCounterFromRawValue","features":[3,192]},{"name":"PdhCloseLog","features":[192]},{"name":"PdhCloseQuery","features":[192]},{"name":"PdhCollectQueryData","features":[192]},{"name":"PdhCollectQueryDataEx","features":[3,192]},{"name":"PdhCollectQueryDataWithTime","features":[192]},{"name":"PdhComputeCounterStatistics","features":[3,192]},{"name":"PdhConnectMachineA","features":[192]},{"name":"PdhConnectMachineW","features":[192]},{"name":"PdhCreateSQLTablesA","features":[192]},{"name":"PdhCreateSQLTablesW","features":[192]},{"name":"PdhEnumLogSetNamesA","features":[192]},{"name":"PdhEnumLogSetNamesW","features":[192]},{"name":"PdhEnumMachinesA","features":[192]},{"name":"PdhEnumMachinesHA","features":[192]},{"name":"PdhEnumMachinesHW","features":[192]},{"name":"PdhEnumMachinesW","features":[192]},{"name":"PdhEnumObjectItemsA","features":[192]},{"name":"PdhEnumObjectItemsHA","features":[192]},{"name":"PdhEnumObjectItemsHW","features":[192]},{"name":"PdhEnumObjectItemsW","features":[192]},{"name":"PdhEnumObjectsA","features":[3,192]},{"name":"PdhEnumObjectsHA","features":[3,192]},{"name":"PdhEnumObjectsHW","features":[3,192]},{"name":"PdhEnumObjectsW","features":[3,192]},{"name":"PdhExpandCounterPathA","features":[192]},{"name":"PdhExpandCounterPathW","features":[192]},{"name":"PdhExpandWildCardPathA","features":[192]},{"name":"PdhExpandWildCardPathHA","features":[192]},{"name":"PdhExpandWildCardPathHW","features":[192]},{"name":"PdhExpandWildCardPathW","features":[192]},{"name":"PdhFormatFromRawValue","features":[3,192]},{"name":"PdhGetCounterInfoA","features":[3,192]},{"name":"PdhGetCounterInfoW","features":[3,192]},{"name":"PdhGetCounterTimeBase","features":[192]},{"name":"PdhGetDataSourceTimeRangeA","features":[192]},{"name":"PdhGetDataSourceTimeRangeH","features":[192]},{"name":"PdhGetDataSourceTimeRangeW","features":[192]},{"name":"PdhGetDefaultPerfCounterA","features":[192]},{"name":"PdhGetDefaultPerfCounterHA","features":[192]},{"name":"PdhGetDefaultPerfCounterHW","features":[192]},{"name":"PdhGetDefaultPerfCounterW","features":[192]},{"name":"PdhGetDefaultPerfObjectA","features":[192]},{"name":"PdhGetDefaultPerfObjectHA","features":[192]},{"name":"PdhGetDefaultPerfObjectHW","features":[192]},{"name":"PdhGetDefaultPerfObjectW","features":[192]},{"name":"PdhGetDllVersion","features":[192]},{"name":"PdhGetFormattedCounterArrayA","features":[192]},{"name":"PdhGetFormattedCounterArrayW","features":[192]},{"name":"PdhGetFormattedCounterValue","features":[192]},{"name":"PdhGetLogFileSize","features":[192]},{"name":"PdhGetLogSetGUID","features":[192]},{"name":"PdhGetRawCounterArrayA","features":[3,192]},{"name":"PdhGetRawCounterArrayW","features":[3,192]},{"name":"PdhGetRawCounterValue","features":[3,192]},{"name":"PdhIsRealTimeQuery","features":[3,192]},{"name":"PdhLookupPerfIndexByNameA","features":[192]},{"name":"PdhLookupPerfIndexByNameW","features":[192]},{"name":"PdhLookupPerfNameByIndexA","features":[192]},{"name":"PdhLookupPerfNameByIndexW","features":[192]},{"name":"PdhMakeCounterPathA","features":[192]},{"name":"PdhMakeCounterPathW","features":[192]},{"name":"PdhOpenLogA","features":[192]},{"name":"PdhOpenLogW","features":[192]},{"name":"PdhOpenQueryA","features":[192]},{"name":"PdhOpenQueryH","features":[192]},{"name":"PdhOpenQueryW","features":[192]},{"name":"PdhParseCounterPathA","features":[192]},{"name":"PdhParseCounterPathW","features":[192]},{"name":"PdhParseInstanceNameA","features":[192]},{"name":"PdhParseInstanceNameW","features":[192]},{"name":"PdhReadRawLogRecord","features":[3,192]},{"name":"PdhRemoveCounter","features":[192]},{"name":"PdhSelectDataSourceA","features":[3,192]},{"name":"PdhSelectDataSourceW","features":[3,192]},{"name":"PdhSetCounterScaleFactor","features":[192]},{"name":"PdhSetDefaultRealTimeDataSource","features":[192]},{"name":"PdhSetLogSetRunID","features":[192]},{"name":"PdhSetQueryTimeRange","features":[192]},{"name":"PdhUpdateLogA","features":[192]},{"name":"PdhUpdateLogFileCatalog","features":[192]},{"name":"PdhUpdateLogW","features":[192]},{"name":"PdhValidatePathA","features":[192]},{"name":"PdhValidatePathExA","features":[192]},{"name":"PdhValidatePathExW","features":[192]},{"name":"PdhValidatePathW","features":[192]},{"name":"PdhVerifySQLDBA","features":[192]},{"name":"PdhVerifySQLDBW","features":[192]},{"name":"PerfAddCounters","features":[3,192]},{"name":"PerfCloseQueryHandle","features":[3,192]},{"name":"PerfCounterDataType","features":[192]},{"name":"PerfCreateInstance","features":[3,192]},{"name":"PerfDecrementULongCounterValue","features":[3,192]},{"name":"PerfDecrementULongLongCounterValue","features":[3,192]},{"name":"PerfDeleteCounters","features":[3,192]},{"name":"PerfDeleteInstance","features":[3,192]},{"name":"PerfEnumerateCounterSet","features":[192]},{"name":"PerfEnumerateCounterSetInstances","features":[192]},{"name":"PerfIncrementULongCounterValue","features":[3,192]},{"name":"PerfIncrementULongLongCounterValue","features":[3,192]},{"name":"PerfOpenQueryHandle","features":[3,192]},{"name":"PerfQueryCounterData","features":[3,192]},{"name":"PerfQueryCounterInfo","features":[3,192]},{"name":"PerfQueryCounterSetRegistrationInfo","features":[192]},{"name":"PerfQueryInstance","features":[3,192]},{"name":"PerfRegInfoType","features":[192]},{"name":"PerfSetCounterRefValue","features":[3,192]},{"name":"PerfSetCounterSetInfo","features":[3,192]},{"name":"PerfSetULongCounterValue","features":[3,192]},{"name":"PerfSetULongLongCounterValue","features":[3,192]},{"name":"PerfStartProvider","features":[3,192]},{"name":"PerfStartProviderEx","features":[3,192]},{"name":"PerfStopProvider","features":[3,192]},{"name":"QueryPerformanceCounter","features":[3,192]},{"name":"QueryPerformanceFrequency","features":[3,192]},{"name":"REAL_TIME_DATA_SOURCE_ID_FLAGS","features":[192]},{"name":"ReportValueTypeConstants","features":[192]},{"name":"ResourcePolicy","features":[192]},{"name":"RestorePerfRegistryFromFileW","features":[192]},{"name":"S_PDH","features":[192]},{"name":"ServerDataCollectorSet","features":[192]},{"name":"ServerDataCollectorSetCollection","features":[192]},{"name":"SetServiceAsTrustedA","features":[192]},{"name":"SetServiceAsTrustedW","features":[192]},{"name":"SourcePropPage","features":[192]},{"name":"StreamMode","features":[192]},{"name":"SysmonBatchReason","features":[192]},{"name":"SysmonDataType","features":[192]},{"name":"SysmonFileType","features":[192]},{"name":"SystemDataCollectorSet","features":[192]},{"name":"SystemDataCollectorSetCollection","features":[192]},{"name":"SystemMonitor","features":[192]},{"name":"SystemMonitor2","features":[192]},{"name":"TraceDataProvider","features":[192]},{"name":"TraceDataProviderCollection","features":[192]},{"name":"TraceSession","features":[192]},{"name":"TraceSessionCollection","features":[192]},{"name":"UnloadPerfCounterTextStringsA","features":[3,192]},{"name":"UnloadPerfCounterTextStringsW","features":[3,192]},{"name":"UpdatePerfNameFilesA","features":[192]},{"name":"UpdatePerfNameFilesW","features":[192]},{"name":"ValueMapType","features":[192]},{"name":"WINPERF_LOG_DEBUG","features":[192]},{"name":"WINPERF_LOG_NONE","features":[192]},{"name":"WINPERF_LOG_USER","features":[192]},{"name":"WINPERF_LOG_VERBOSE","features":[192]},{"name":"WeekDays","features":[192]},{"name":"_ICounterItemUnion","features":[192]},{"name":"_ISystemMonitorUnion","features":[192]},{"name":"plaAlert","features":[192]},{"name":"plaApiTrace","features":[192]},{"name":"plaBinary","features":[192]},{"name":"plaBoth","features":[192]},{"name":"plaBuffering","features":[192]},{"name":"plaCommaSeparated","features":[192]},{"name":"plaCompiling","features":[192]},{"name":"plaComputer","features":[192]},{"name":"plaConfiguration","features":[192]},{"name":"plaCreateCab","features":[192]},{"name":"plaCreateHtml","features":[192]},{"name":"plaCreateNew","features":[192]},{"name":"plaCreateOrModify","features":[192]},{"name":"plaCreateReport","features":[192]},{"name":"plaCycle","features":[192]},{"name":"plaDeleteCab","features":[192]},{"name":"plaDeleteData","features":[192]},{"name":"plaDeleteLargest","features":[192]},{"name":"plaDeleteOldest","features":[192]},{"name":"plaDeleteReport","features":[192]},{"name":"plaEveryday","features":[192]},{"name":"plaFile","features":[192]},{"name":"plaFlag","features":[192]},{"name":"plaFlagArray","features":[192]},{"name":"plaFlushTrace","features":[192]},{"name":"plaFolderActions","features":[192]},{"name":"plaFriday","features":[192]},{"name":"plaIndex","features":[192]},{"name":"plaModify","features":[192]},{"name":"plaMonday","features":[192]},{"name":"plaMonthDayHour","features":[192]},{"name":"plaMonthDayHourMinute","features":[192]},{"name":"plaNone","features":[192]},{"name":"plaPattern","features":[192]},{"name":"plaPending","features":[192]},{"name":"plaPerformance","features":[192]},{"name":"plaPerformanceCounter","features":[192]},{"name":"plaRealTime","features":[192]},{"name":"plaResourceFreeing","features":[192]},{"name":"plaRunOnce","features":[192]},{"name":"plaRunRules","features":[192]},{"name":"plaRunning","features":[192]},{"name":"plaSaturday","features":[192]},{"name":"plaSendCab","features":[192]},{"name":"plaSerialNumber","features":[192]},{"name":"plaSql","features":[192]},{"name":"plaStopped","features":[192]},{"name":"plaSunday","features":[192]},{"name":"plaSystem","features":[192]},{"name":"plaTabSeparated","features":[192]},{"name":"plaThursday","features":[192]},{"name":"plaTimeStamp","features":[192]},{"name":"plaTrace","features":[192]},{"name":"plaTuesday","features":[192]},{"name":"plaUndefined","features":[192]},{"name":"plaUpdateRunningInstance","features":[192]},{"name":"plaValidateOnly","features":[192]},{"name":"plaValidation","features":[192]},{"name":"plaWednesday","features":[192]},{"name":"plaYearDayOfYear","features":[192]},{"name":"plaYearMonth","features":[192]},{"name":"plaYearMonthDay","features":[192]},{"name":"plaYearMonthDayHour","features":[192]},{"name":"sysmonAverage","features":[192]},{"name":"sysmonBatchAddCounters","features":[192]},{"name":"sysmonBatchAddFiles","features":[192]},{"name":"sysmonBatchAddFilesAutoCounters","features":[192]},{"name":"sysmonBatchNone","features":[192]},{"name":"sysmonChartArea","features":[192]},{"name":"sysmonChartStackedArea","features":[192]},{"name":"sysmonCurrentActivity","features":[192]},{"name":"sysmonCurrentValue","features":[192]},{"name":"sysmonDataAvg","features":[192]},{"name":"sysmonDataCount","features":[192]},{"name":"sysmonDataMax","features":[192]},{"name":"sysmonDataMin","features":[192]},{"name":"sysmonDataTime","features":[192]},{"name":"sysmonDefaultValue","features":[192]},{"name":"sysmonFileBlg","features":[192]},{"name":"sysmonFileCsv","features":[192]},{"name":"sysmonFileGif","features":[192]},{"name":"sysmonFileHtml","features":[192]},{"name":"sysmonFileReport","features":[192]},{"name":"sysmonFileRetiredBlg","features":[192]},{"name":"sysmonFileTsv","features":[192]},{"name":"sysmonHistogram","features":[192]},{"name":"sysmonLineGraph","features":[192]},{"name":"sysmonLogFiles","features":[192]},{"name":"sysmonMaximum","features":[192]},{"name":"sysmonMinimum","features":[192]},{"name":"sysmonNullDataSource","features":[192]},{"name":"sysmonReport","features":[192]},{"name":"sysmonSqlLog","features":[192]}],"591":[{"name":"DisableThreadProfiling","features":[3,193]},{"name":"EnableThreadProfiling","features":[3,193]},{"name":"HARDWARE_COUNTER_DATA","features":[193]},{"name":"HARDWARE_COUNTER_TYPE","features":[193]},{"name":"MaxHardwareCounterType","features":[193]},{"name":"PERFORMANCE_DATA","features":[193]},{"name":"PMCCounter","features":[193]},{"name":"QueryThreadProfiling","features":[3,193]},{"name":"ReadThreadProfilingData","features":[3,193]}],"592":[{"name":"CallNamedPipeA","features":[3,194]},{"name":"CallNamedPipeW","features":[3,194]},{"name":"ConnectNamedPipe","features":[3,8,194]},{"name":"CreateNamedPipeA","features":[3,6,23,194]},{"name":"CreateNamedPipeW","features":[3,6,23,194]},{"name":"CreatePipe","features":[3,6,194]},{"name":"DisconnectNamedPipe","features":[3,194]},{"name":"GetNamedPipeClientComputerNameA","features":[3,194]},{"name":"GetNamedPipeClientComputerNameW","features":[3,194]},{"name":"GetNamedPipeClientProcessId","features":[3,194]},{"name":"GetNamedPipeClientSessionId","features":[3,194]},{"name":"GetNamedPipeHandleStateA","features":[3,194]},{"name":"GetNamedPipeHandleStateW","features":[3,194]},{"name":"GetNamedPipeInfo","features":[3,194]},{"name":"GetNamedPipeServerProcessId","features":[3,194]},{"name":"GetNamedPipeServerSessionId","features":[3,194]},{"name":"ImpersonateNamedPipeClient","features":[3,194]},{"name":"NAMED_PIPE_MODE","features":[194]},{"name":"NMPWAIT_NOWAIT","features":[194]},{"name":"NMPWAIT_USE_DEFAULT_WAIT","features":[194]},{"name":"NMPWAIT_WAIT_FOREVER","features":[194]},{"name":"PIPE_ACCEPT_REMOTE_CLIENTS","features":[194]},{"name":"PIPE_CLIENT_END","features":[194]},{"name":"PIPE_NOWAIT","features":[194]},{"name":"PIPE_READMODE_BYTE","features":[194]},{"name":"PIPE_READMODE_MESSAGE","features":[194]},{"name":"PIPE_REJECT_REMOTE_CLIENTS","features":[194]},{"name":"PIPE_SERVER_END","features":[194]},{"name":"PIPE_TYPE_BYTE","features":[194]},{"name":"PIPE_TYPE_MESSAGE","features":[194]},{"name":"PIPE_UNLIMITED_INSTANCES","features":[194]},{"name":"PIPE_WAIT","features":[194]},{"name":"PeekNamedPipe","features":[3,194]},{"name":"SetNamedPipeHandleState","features":[3,194]},{"name":"TransactNamedPipe","features":[3,8,194]},{"name":"WaitNamedPipeA","features":[3,194]},{"name":"WaitNamedPipeW","features":[3,194]}],"593":[{"name":"ACCESS_ACTIVE_OVERLAY_SCHEME","features":[10]},{"name":"ACCESS_ACTIVE_SCHEME","features":[10]},{"name":"ACCESS_AC_POWER_SETTING_INDEX","features":[10]},{"name":"ACCESS_AC_POWER_SETTING_MAX","features":[10]},{"name":"ACCESS_AC_POWER_SETTING_MIN","features":[10]},{"name":"ACCESS_ATTRIBUTES","features":[10]},{"name":"ACCESS_CREATE_SCHEME","features":[10]},{"name":"ACCESS_DC_POWER_SETTING_INDEX","features":[10]},{"name":"ACCESS_DC_POWER_SETTING_MAX","features":[10]},{"name":"ACCESS_DC_POWER_SETTING_MIN","features":[10]},{"name":"ACCESS_DEFAULT_AC_POWER_SETTING","features":[10]},{"name":"ACCESS_DEFAULT_DC_POWER_SETTING","features":[10]},{"name":"ACCESS_DEFAULT_SECURITY_DESCRIPTOR","features":[10]},{"name":"ACCESS_DESCRIPTION","features":[10]},{"name":"ACCESS_FRIENDLY_NAME","features":[10]},{"name":"ACCESS_ICON_RESOURCE","features":[10]},{"name":"ACCESS_INDIVIDUAL_SETTING","features":[10]},{"name":"ACCESS_OVERLAY_SCHEME","features":[10]},{"name":"ACCESS_POSSIBLE_POWER_SETTING","features":[10]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_DESCRIPTION","features":[10]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_FRIENDLY_NAME","features":[10]},{"name":"ACCESS_POSSIBLE_VALUE_INCREMENT","features":[10]},{"name":"ACCESS_POSSIBLE_VALUE_MAX","features":[10]},{"name":"ACCESS_POSSIBLE_VALUE_MIN","features":[10]},{"name":"ACCESS_POSSIBLE_VALUE_UNITS","features":[10]},{"name":"ACCESS_PROFILE","features":[10]},{"name":"ACCESS_SCHEME","features":[10]},{"name":"ACCESS_SUBGROUP","features":[10]},{"name":"ACPI_REAL_TIME","features":[10]},{"name":"ACPI_TIME_ADJUST_DAYLIGHT","features":[10]},{"name":"ACPI_TIME_AND_ALARM_CAPABILITIES","features":[3,10]},{"name":"ACPI_TIME_IN_DAYLIGHT","features":[10]},{"name":"ACPI_TIME_RESOLUTION","features":[10]},{"name":"ACPI_TIME_ZONE_UNKNOWN","features":[10]},{"name":"ACTIVE_COOLING","features":[10]},{"name":"ADMINISTRATOR_POWER_POLICY","features":[10]},{"name":"ALTITUDE_GROUP_POLICY","features":[10]},{"name":"ALTITUDE_INTERNAL_OVERRIDE","features":[10]},{"name":"ALTITUDE_OEM_CUSTOMIZATION","features":[10]},{"name":"ALTITUDE_OS_DEFAULT","features":[10]},{"name":"ALTITUDE_PROVISIONING","features":[10]},{"name":"ALTITUDE_RUNTIME_OVERRIDE","features":[10]},{"name":"ALTITUDE_USER","features":[10]},{"name":"AcpiTimeResolutionMax","features":[10]},{"name":"AcpiTimeResolutionMilliseconds","features":[10]},{"name":"AcpiTimeResolutionSeconds","features":[10]},{"name":"AdministratorPowerPolicy","features":[10]},{"name":"BATTERY_CAPACITY_RELATIVE","features":[10]},{"name":"BATTERY_CHARGER_STATUS","features":[10]},{"name":"BATTERY_CHARGING","features":[10]},{"name":"BATTERY_CHARGING_SOURCE","features":[10]},{"name":"BATTERY_CHARGING_SOURCE_INFORMATION","features":[3,10]},{"name":"BATTERY_CHARGING_SOURCE_TYPE","features":[10]},{"name":"BATTERY_CLASS_MAJOR_VERSION","features":[10]},{"name":"BATTERY_CLASS_MINOR_VERSION","features":[10]},{"name":"BATTERY_CLASS_MINOR_VERSION_1","features":[10]},{"name":"BATTERY_CRITICAL","features":[10]},{"name":"BATTERY_CYCLE_COUNT_WMI_GUID","features":[10]},{"name":"BATTERY_DISCHARGING","features":[10]},{"name":"BATTERY_FULL_CHARGED_CAPACITY_WMI_GUID","features":[10]},{"name":"BATTERY_INFORMATION","features":[10]},{"name":"BATTERY_IS_SHORT_TERM","features":[10]},{"name":"BATTERY_MANUFACTURE_DATE","features":[10]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_1","features":[10]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_2","features":[10]},{"name":"BATTERY_POWER_ON_LINE","features":[10]},{"name":"BATTERY_QUERY_INFORMATION","features":[10]},{"name":"BATTERY_QUERY_INFORMATION_LEVEL","features":[10]},{"name":"BATTERY_REPORTING_SCALE","features":[10]},{"name":"BATTERY_RUNTIME_WMI_GUID","features":[10]},{"name":"BATTERY_SEALED","features":[10]},{"name":"BATTERY_SET_CHARGER_ID_SUPPORTED","features":[10]},{"name":"BATTERY_SET_CHARGE_SUPPORTED","features":[10]},{"name":"BATTERY_SET_CHARGINGSOURCE_SUPPORTED","features":[10]},{"name":"BATTERY_SET_DISCHARGE_SUPPORTED","features":[10]},{"name":"BATTERY_SET_INFORMATION","features":[10]},{"name":"BATTERY_SET_INFORMATION_LEVEL","features":[10]},{"name":"BATTERY_STATIC_DATA_WMI_GUID","features":[10]},{"name":"BATTERY_STATUS","features":[10]},{"name":"BATTERY_STATUS_CHANGE_WMI_GUID","features":[10]},{"name":"BATTERY_STATUS_WMI_GUID","features":[10]},{"name":"BATTERY_SYSTEM_BATTERY","features":[10]},{"name":"BATTERY_TAG_CHANGE_WMI_GUID","features":[10]},{"name":"BATTERY_TAG_INVALID","features":[10]},{"name":"BATTERY_TEMPERATURE_WMI_GUID","features":[10]},{"name":"BATTERY_UNKNOWN_CAPACITY","features":[10]},{"name":"BATTERY_UNKNOWN_CURRENT","features":[10]},{"name":"BATTERY_UNKNOWN_RATE","features":[10]},{"name":"BATTERY_UNKNOWN_TIME","features":[10]},{"name":"BATTERY_UNKNOWN_VOLTAGE","features":[10]},{"name":"BATTERY_USB_CHARGER_STATUS","features":[10]},{"name":"BATTERY_USB_CHARGER_STATUS_FN_DEFAULT_USB","features":[10]},{"name":"BATTERY_USB_CHARGER_STATUS_UCM_PD","features":[10]},{"name":"BATTERY_WAIT_STATUS","features":[10]},{"name":"BatteryCharge","features":[10]},{"name":"BatteryChargerId","features":[10]},{"name":"BatteryChargerStatus","features":[10]},{"name":"BatteryChargingSource","features":[10]},{"name":"BatteryChargingSourceType_AC","features":[10]},{"name":"BatteryChargingSourceType_Max","features":[10]},{"name":"BatteryChargingSourceType_USB","features":[10]},{"name":"BatteryChargingSourceType_Wireless","features":[10]},{"name":"BatteryCriticalBias","features":[10]},{"name":"BatteryDeviceName","features":[10]},{"name":"BatteryDeviceState","features":[10]},{"name":"BatteryDischarge","features":[10]},{"name":"BatteryEstimatedTime","features":[10]},{"name":"BatteryGranularityInformation","features":[10]},{"name":"BatteryInformation","features":[10]},{"name":"BatteryManufactureDate","features":[10]},{"name":"BatteryManufactureName","features":[10]},{"name":"BatterySerialNumber","features":[10]},{"name":"BatteryTemperature","features":[10]},{"name":"BatteryUniqueID","features":[10]},{"name":"BlackBoxRecorderDirectAccessBuffer","features":[10]},{"name":"CM_POWER_DATA","features":[10]},{"name":"CallNtPowerInformation","features":[3,10]},{"name":"CanUserWritePwrScheme","features":[3,10]},{"name":"CsDeviceNotification","features":[10]},{"name":"DEVICEPOWER_AND_OPERATION","features":[10]},{"name":"DEVICEPOWER_CLEAR_WAKEENABLED","features":[10]},{"name":"DEVICEPOWER_FILTER_DEVICES_PRESENT","features":[10]},{"name":"DEVICEPOWER_FILTER_HARDWARE","features":[10]},{"name":"DEVICEPOWER_FILTER_ON_NAME","features":[10]},{"name":"DEVICEPOWER_FILTER_WAKEENABLED","features":[10]},{"name":"DEVICEPOWER_FILTER_WAKEPROGRAMMABLE","features":[10]},{"name":"DEVICEPOWER_HARDWAREID","features":[10]},{"name":"DEVICEPOWER_SET_WAKEENABLED","features":[10]},{"name":"DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS","features":[10]},{"name":"DEVICE_POWER_CAPABILITIES","features":[10]},{"name":"DEVICE_POWER_STATE","features":[10]},{"name":"DeletePwrScheme","features":[3,10]},{"name":"DevicePowerClose","features":[3,10]},{"name":"DevicePowerEnumDevices","features":[3,10]},{"name":"DevicePowerOpen","features":[3,10]},{"name":"DevicePowerSetDeviceState","features":[10]},{"name":"DisplayBurst","features":[10]},{"name":"EFFECTIVE_POWER_MODE","features":[10]},{"name":"EFFECTIVE_POWER_MODE_CALLBACK","features":[10]},{"name":"EFFECTIVE_POWER_MODE_V1","features":[10]},{"name":"EFFECTIVE_POWER_MODE_V2","features":[10]},{"name":"EMI_CHANNEL_MEASUREMENT_DATA","features":[10]},{"name":"EMI_CHANNEL_V2","features":[10]},{"name":"EMI_MEASUREMENT_DATA_V2","features":[10]},{"name":"EMI_MEASUREMENT_UNIT","features":[10]},{"name":"EMI_METADATA_SIZE","features":[10]},{"name":"EMI_METADATA_V1","features":[10]},{"name":"EMI_METADATA_V2","features":[10]},{"name":"EMI_NAME_MAX","features":[10]},{"name":"EMI_VERSION","features":[10]},{"name":"EMI_VERSION_V1","features":[10]},{"name":"EMI_VERSION_V2","features":[10]},{"name":"ES_AWAYMODE_REQUIRED","features":[10]},{"name":"ES_CONTINUOUS","features":[10]},{"name":"ES_DISPLAY_REQUIRED","features":[10]},{"name":"ES_SYSTEM_REQUIRED","features":[10]},{"name":"ES_USER_PRESENT","features":[10]},{"name":"EXECUTION_STATE","features":[10]},{"name":"EffectivePowerModeBalanced","features":[10]},{"name":"EffectivePowerModeBatterySaver","features":[10]},{"name":"EffectivePowerModeBetterBattery","features":[10]},{"name":"EffectivePowerModeGameMode","features":[10]},{"name":"EffectivePowerModeHighPerformance","features":[10]},{"name":"EffectivePowerModeMaxPerformance","features":[10]},{"name":"EffectivePowerModeMixedReality","features":[10]},{"name":"EmiMeasurementUnitPicowattHours","features":[10]},{"name":"EnableMultiBatteryDisplay","features":[10]},{"name":"EnablePasswordLogon","features":[10]},{"name":"EnableSysTrayBatteryMeter","features":[10]},{"name":"EnableVideoDimDisplay","features":[10]},{"name":"EnableWakeOnRing","features":[10]},{"name":"EnergyTrackerCreate","features":[10]},{"name":"EnergyTrackerQuery","features":[10]},{"name":"EnumPwrSchemes","features":[3,10]},{"name":"ExitLatencySamplingPercentage","features":[10]},{"name":"FirmwareTableInformationRegistered","features":[10]},{"name":"GLOBAL_MACHINE_POWER_POLICY","features":[10]},{"name":"GLOBAL_POWER_POLICY","features":[3,10]},{"name":"GLOBAL_USER_POWER_POLICY","features":[3,10]},{"name":"GUID_CLASS_INPUT","features":[10]},{"name":"GUID_DEVICE_ACPI_TIME","features":[10]},{"name":"GUID_DEVICE_APPLICATIONLAUNCH_BUTTON","features":[10]},{"name":"GUID_DEVICE_BATTERY","features":[10]},{"name":"GUID_DEVICE_ENERGY_METER","features":[10]},{"name":"GUID_DEVICE_FAN","features":[10]},{"name":"GUID_DEVICE_LID","features":[10]},{"name":"GUID_DEVICE_MEMORY","features":[10]},{"name":"GUID_DEVICE_MESSAGE_INDICATOR","features":[10]},{"name":"GUID_DEVICE_PROCESSOR","features":[10]},{"name":"GUID_DEVICE_SYS_BUTTON","features":[10]},{"name":"GUID_DEVICE_THERMAL_ZONE","features":[10]},{"name":"GUID_DEVINTERFACE_THERMAL_COOLING","features":[10]},{"name":"GUID_DEVINTERFACE_THERMAL_MANAGER","features":[10]},{"name":"GetActivePwrScheme","features":[3,10]},{"name":"GetCurrentPowerPolicies","features":[3,10]},{"name":"GetDevicePowerState","features":[3,10]},{"name":"GetPowerRequestList","features":[10]},{"name":"GetPowerSettingValue","features":[10]},{"name":"GetPwrCapabilities","features":[3,10]},{"name":"GetPwrDiskSpindownRange","features":[3,10]},{"name":"GetSystemPowerStatus","features":[3,10]},{"name":"GroupPark","features":[10]},{"name":"HPOWERNOTIFY","features":[10]},{"name":"IOCTL_ACPI_GET_REAL_TIME","features":[10]},{"name":"IOCTL_ACPI_SET_REAL_TIME","features":[10]},{"name":"IOCTL_BATTERY_CHARGING_SOURCE_CHANGE","features":[10]},{"name":"IOCTL_BATTERY_QUERY_INFORMATION","features":[10]},{"name":"IOCTL_BATTERY_QUERY_STATUS","features":[10]},{"name":"IOCTL_BATTERY_QUERY_TAG","features":[10]},{"name":"IOCTL_BATTERY_SET_INFORMATION","features":[10]},{"name":"IOCTL_EMI_GET_MEASUREMENT","features":[10]},{"name":"IOCTL_EMI_GET_METADATA","features":[10]},{"name":"IOCTL_EMI_GET_METADATA_SIZE","features":[10]},{"name":"IOCTL_EMI_GET_VERSION","features":[10]},{"name":"IOCTL_GET_ACPI_TIME_AND_ALARM_CAPABILITIES","features":[10]},{"name":"IOCTL_GET_PROCESSOR_OBJ_INFO","features":[10]},{"name":"IOCTL_GET_SYS_BUTTON_CAPS","features":[10]},{"name":"IOCTL_GET_SYS_BUTTON_EVENT","features":[10]},{"name":"IOCTL_GET_WAKE_ALARM_POLICY","features":[10]},{"name":"IOCTL_GET_WAKE_ALARM_SYSTEM_POWERSTATE","features":[10]},{"name":"IOCTL_GET_WAKE_ALARM_VALUE","features":[10]},{"name":"IOCTL_NOTIFY_SWITCH_EVENT","features":[10]},{"name":"IOCTL_QUERY_LID","features":[10]},{"name":"IOCTL_RUN_ACTIVE_COOLING_METHOD","features":[10]},{"name":"IOCTL_SET_SYS_MESSAGE_INDICATOR","features":[10]},{"name":"IOCTL_SET_WAKE_ALARM_POLICY","features":[10]},{"name":"IOCTL_SET_WAKE_ALARM_VALUE","features":[10]},{"name":"IOCTL_THERMAL_QUERY_INFORMATION","features":[10]},{"name":"IOCTL_THERMAL_READ_POLICY","features":[10]},{"name":"IOCTL_THERMAL_READ_TEMPERATURE","features":[10]},{"name":"IOCTL_THERMAL_SET_COOLING_POLICY","features":[10]},{"name":"IOCTL_THERMAL_SET_PASSIVE_LIMIT","features":[10]},{"name":"IdleResiliency","features":[10]},{"name":"IsAdminOverrideActive","features":[3,10]},{"name":"IsPwrHibernateAllowed","features":[3,10]},{"name":"IsPwrShutdownAllowed","features":[3,10]},{"name":"IsPwrSuspendAllowed","features":[3,10]},{"name":"IsSystemResumeAutomatic","features":[3,10]},{"name":"LATENCY_TIME","features":[10]},{"name":"LT_DONT_CARE","features":[10]},{"name":"LT_LOWEST_LATENCY","features":[10]},{"name":"LastResumePerformance","features":[10]},{"name":"LastSleepTime","features":[10]},{"name":"LastWakeTime","features":[10]},{"name":"LogicalProcessorIdling","features":[10]},{"name":"MACHINE_POWER_POLICY","features":[10]},{"name":"MACHINE_PROCESSOR_POWER_POLICY","features":[10]},{"name":"MAX_ACTIVE_COOLING_LEVELS","features":[10]},{"name":"MAX_BATTERY_STRING_SIZE","features":[10]},{"name":"MonitorCapabilities","features":[10]},{"name":"MonitorInvocation","features":[10]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[10]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[10]},{"name":"MonitorRequestReasonBatteryCountChange","features":[10]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[10]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[10]},{"name":"MonitorRequestReasonBuiltinPanel","features":[10]},{"name":"MonitorRequestReasonDP","features":[10]},{"name":"MonitorRequestReasonDim","features":[10]},{"name":"MonitorRequestReasonDirectedDrips","features":[10]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[10]},{"name":"MonitorRequestReasonFullWake","features":[10]},{"name":"MonitorRequestReasonGracePeriod","features":[10]},{"name":"MonitorRequestReasonIdleTimeout","features":[10]},{"name":"MonitorRequestReasonLid","features":[10]},{"name":"MonitorRequestReasonMax","features":[10]},{"name":"MonitorRequestReasonNearProximity","features":[10]},{"name":"MonitorRequestReasonPdcSignal","features":[10]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[10]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[10]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[10]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[10]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[10]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[10]},{"name":"MonitorRequestReasonPnP","features":[10]},{"name":"MonitorRequestReasonPoSetSystemState","features":[10]},{"name":"MonitorRequestReasonPolicyChange","features":[10]},{"name":"MonitorRequestReasonPowerButton","features":[10]},{"name":"MonitorRequestReasonRemoteConnection","features":[10]},{"name":"MonitorRequestReasonResumeModernStandby","features":[10]},{"name":"MonitorRequestReasonResumePdc","features":[10]},{"name":"MonitorRequestReasonResumeS4","features":[10]},{"name":"MonitorRequestReasonScMonitorpower","features":[10]},{"name":"MonitorRequestReasonScreenOffRequest","features":[10]},{"name":"MonitorRequestReasonSessionUnlock","features":[10]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[10]},{"name":"MonitorRequestReasonSleepButton","features":[10]},{"name":"MonitorRequestReasonSxTransition","features":[10]},{"name":"MonitorRequestReasonSystemIdle","features":[10]},{"name":"MonitorRequestReasonSystemStateEntered","features":[10]},{"name":"MonitorRequestReasonTerminal","features":[10]},{"name":"MonitorRequestReasonTerminalInit","features":[10]},{"name":"MonitorRequestReasonThermalStandby","features":[10]},{"name":"MonitorRequestReasonUnknown","features":[10]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[10]},{"name":"MonitorRequestReasonUserInput","features":[10]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[10]},{"name":"MonitorRequestReasonUserInputHid","features":[10]},{"name":"MonitorRequestReasonUserInputInitialization","features":[10]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[10]},{"name":"MonitorRequestReasonUserInputMouse","features":[10]},{"name":"MonitorRequestReasonUserInputPen","features":[10]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[10]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[10]},{"name":"MonitorRequestReasonUserInputTouch","features":[10]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[10]},{"name":"MonitorRequestReasonWinrt","features":[10]},{"name":"MonitorRequestTypeOff","features":[10]},{"name":"MonitorRequestTypeOnAndPresent","features":[10]},{"name":"MonitorRequestTypeToggleOn","features":[10]},{"name":"NotifyUserModeLegacyPowerEvent","features":[10]},{"name":"NotifyUserPowerSetting","features":[10]},{"name":"PASSIVE_COOLING","features":[10]},{"name":"PDCAP_D0_SUPPORTED","features":[10]},{"name":"PDCAP_D1_SUPPORTED","features":[10]},{"name":"PDCAP_D2_SUPPORTED","features":[10]},{"name":"PDCAP_D3_SUPPORTED","features":[10]},{"name":"PDCAP_S0_SUPPORTED","features":[10]},{"name":"PDCAP_S1_SUPPORTED","features":[10]},{"name":"PDCAP_S2_SUPPORTED","features":[10]},{"name":"PDCAP_S3_SUPPORTED","features":[10]},{"name":"PDCAP_S4_SUPPORTED","features":[10]},{"name":"PDCAP_S5_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_D0_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_D1_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_D2_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_D3_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_S0_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_S1_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_S2_SUPPORTED","features":[10]},{"name":"PDCAP_WAKE_FROM_S3_SUPPORTED","features":[10]},{"name":"PDCAP_WARM_EJECT_SUPPORTED","features":[10]},{"name":"PDEVICE_NOTIFY_CALLBACK_ROUTINE","features":[10]},{"name":"POWERBROADCAST_SETTING","features":[10]},{"name":"POWER_ACTION","features":[10]},{"name":"POWER_ACTION_POLICY","features":[10]},{"name":"POWER_ACTION_POLICY_EVENT_CODE","features":[10]},{"name":"POWER_ATTRIBUTE_HIDE","features":[10]},{"name":"POWER_ATTRIBUTE_SHOW_AOAC","features":[10]},{"name":"POWER_COOLING_MODE","features":[10]},{"name":"POWER_DATA_ACCESSOR","features":[10]},{"name":"POWER_FORCE_TRIGGER_RESET","features":[10]},{"name":"POWER_IDLE_RESILIENCY","features":[10]},{"name":"POWER_INFORMATION_LEVEL","features":[10]},{"name":"POWER_LEVEL_USER_NOTIFY_EXEC","features":[10]},{"name":"POWER_LEVEL_USER_NOTIFY_SOUND","features":[10]},{"name":"POWER_LEVEL_USER_NOTIFY_TEXT","features":[10]},{"name":"POWER_MONITOR_INVOCATION","features":[3,10]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[10]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[10]},{"name":"POWER_PLATFORM_INFORMATION","features":[3,10]},{"name":"POWER_PLATFORM_ROLE","features":[10]},{"name":"POWER_PLATFORM_ROLE_V1","features":[10]},{"name":"POWER_PLATFORM_ROLE_V2","features":[10]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[10]},{"name":"POWER_POLICY","features":[3,10]},{"name":"POWER_REQUEST_TYPE","features":[10]},{"name":"POWER_SESSION_ALLOW_EXTERNAL_DMA_DEVICES","features":[3,10]},{"name":"POWER_SESSION_CONNECT","features":[3,10]},{"name":"POWER_SESSION_RIT_STATE","features":[3,10]},{"name":"POWER_SESSION_TIMEOUTS","features":[10]},{"name":"POWER_SESSION_WINLOGON","features":[3,10]},{"name":"POWER_SETTING_ALTITUDE","features":[10]},{"name":"POWER_USER_NOTIFY_BUTTON","features":[10]},{"name":"POWER_USER_NOTIFY_SHUTDOWN","features":[10]},{"name":"POWER_USER_PRESENCE","features":[10]},{"name":"POWER_USER_PRESENCE_TYPE","features":[10]},{"name":"PO_TZ_ACTIVE","features":[10]},{"name":"PO_TZ_INVALID_MODE","features":[10]},{"name":"PO_TZ_PASSIVE","features":[10]},{"name":"PPM_FIRMWARE_ACPI1C2","features":[10]},{"name":"PPM_FIRMWARE_ACPI1C3","features":[10]},{"name":"PPM_FIRMWARE_ACPI1TSTATES","features":[10]},{"name":"PPM_FIRMWARE_CPC","features":[10]},{"name":"PPM_FIRMWARE_CSD","features":[10]},{"name":"PPM_FIRMWARE_CST","features":[10]},{"name":"PPM_FIRMWARE_LPI","features":[10]},{"name":"PPM_FIRMWARE_OSC","features":[10]},{"name":"PPM_FIRMWARE_PCCH","features":[10]},{"name":"PPM_FIRMWARE_PCCP","features":[10]},{"name":"PPM_FIRMWARE_PCT","features":[10]},{"name":"PPM_FIRMWARE_PDC","features":[10]},{"name":"PPM_FIRMWARE_PPC","features":[10]},{"name":"PPM_FIRMWARE_PSD","features":[10]},{"name":"PPM_FIRMWARE_PSS","features":[10]},{"name":"PPM_FIRMWARE_PTC","features":[10]},{"name":"PPM_FIRMWARE_TPC","features":[10]},{"name":"PPM_FIRMWARE_TSD","features":[10]},{"name":"PPM_FIRMWARE_TSS","features":[10]},{"name":"PPM_FIRMWARE_XPSS","features":[10]},{"name":"PPM_IDLESTATES_DATA_GUID","features":[10]},{"name":"PPM_IDLESTATE_CHANGE_GUID","features":[10]},{"name":"PPM_IDLESTATE_EVENT","features":[10]},{"name":"PPM_IDLE_ACCOUNTING","features":[10]},{"name":"PPM_IDLE_ACCOUNTING_EX","features":[10]},{"name":"PPM_IDLE_ACCOUNTING_EX_GUID","features":[10]},{"name":"PPM_IDLE_ACCOUNTING_GUID","features":[10]},{"name":"PPM_IDLE_IMPLEMENTATION_CSTATES","features":[10]},{"name":"PPM_IDLE_IMPLEMENTATION_LPISTATES","features":[10]},{"name":"PPM_IDLE_IMPLEMENTATION_MICROPEP","features":[10]},{"name":"PPM_IDLE_IMPLEMENTATION_NONE","features":[10]},{"name":"PPM_IDLE_IMPLEMENTATION_PEP","features":[10]},{"name":"PPM_IDLE_STATE_ACCOUNTING","features":[10]},{"name":"PPM_IDLE_STATE_ACCOUNTING_EX","features":[10]},{"name":"PPM_IDLE_STATE_BUCKET_EX","features":[10]},{"name":"PPM_PERFMON_PERFSTATE_GUID","features":[10]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_CPPC","features":[10]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_NONE","features":[10]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PCCV1","features":[10]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PEP","features":[10]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PSTATES","features":[10]},{"name":"PPM_PERFSTATES_DATA_GUID","features":[10]},{"name":"PPM_PERFSTATE_CHANGE_GUID","features":[10]},{"name":"PPM_PERFSTATE_DOMAIN_CHANGE_GUID","features":[10]},{"name":"PPM_PERFSTATE_DOMAIN_EVENT","features":[10]},{"name":"PPM_PERFSTATE_EVENT","features":[10]},{"name":"PPM_THERMALCHANGE_EVENT","features":[10]},{"name":"PPM_THERMALCONSTRAINT_GUID","features":[10]},{"name":"PPM_THERMAL_POLICY_CHANGE_GUID","features":[10]},{"name":"PPM_THERMAL_POLICY_EVENT","features":[10]},{"name":"PPM_WMI_IDLE_STATE","features":[10]},{"name":"PPM_WMI_IDLE_STATES","features":[10]},{"name":"PPM_WMI_IDLE_STATES_EX","features":[10]},{"name":"PPM_WMI_LEGACY_PERFSTATE","features":[10]},{"name":"PPM_WMI_PERF_STATE","features":[10]},{"name":"PPM_WMI_PERF_STATES","features":[10]},{"name":"PPM_WMI_PERF_STATES_EX","features":[10]},{"name":"PROCESSOR_NUMBER_PKEY","features":[1,10]},{"name":"PROCESSOR_OBJECT_INFO","features":[10]},{"name":"PROCESSOR_OBJECT_INFO_EX","features":[10]},{"name":"PROCESSOR_POWER_INFORMATION","features":[10]},{"name":"PROCESSOR_POWER_POLICY","features":[10]},{"name":"PROCESSOR_POWER_POLICY_INFO","features":[10]},{"name":"PWRSCHEMESENUMPROC","features":[3,10]},{"name":"PWRSCHEMESENUMPROC_V1","features":[3,10]},{"name":"PdcInvocation","features":[10]},{"name":"PhysicalPowerButtonPress","features":[10]},{"name":"PlatformIdleStates","features":[10]},{"name":"PlatformIdleVeto","features":[10]},{"name":"PlatformInformation","features":[10]},{"name":"PlatformRole","features":[10]},{"name":"PlatformRoleAppliancePC","features":[10]},{"name":"PlatformRoleDesktop","features":[10]},{"name":"PlatformRoleEnterpriseServer","features":[10]},{"name":"PlatformRoleMaximum","features":[10]},{"name":"PlatformRoleMobile","features":[10]},{"name":"PlatformRolePerformanceServer","features":[10]},{"name":"PlatformRoleSOHOServer","features":[10]},{"name":"PlatformRoleSlate","features":[10]},{"name":"PlatformRoleUnspecified","features":[10]},{"name":"PlatformRoleWorkstation","features":[10]},{"name":"PlmPowerRequestCreate","features":[10]},{"name":"PoAc","features":[10]},{"name":"PoConditionMaximum","features":[10]},{"name":"PoDc","features":[10]},{"name":"PoHot","features":[10]},{"name":"PowerActionDisplayOff","features":[10]},{"name":"PowerActionHibernate","features":[10]},{"name":"PowerActionNone","features":[10]},{"name":"PowerActionReserved","features":[10]},{"name":"PowerActionShutdown","features":[10]},{"name":"PowerActionShutdownOff","features":[10]},{"name":"PowerActionShutdownReset","features":[10]},{"name":"PowerActionSleep","features":[10]},{"name":"PowerActionWarmEject","features":[10]},{"name":"PowerCanRestoreIndividualDefaultPowerScheme","features":[3,10]},{"name":"PowerClearRequest","features":[3,10]},{"name":"PowerCreatePossibleSetting","features":[3,10,51]},{"name":"PowerCreateRequest","features":[3,10,39]},{"name":"PowerCreateSetting","features":[3,10,51]},{"name":"PowerDeleteScheme","features":[3,10,51]},{"name":"PowerDeterminePlatformRole","features":[10]},{"name":"PowerDeterminePlatformRoleEx","features":[10]},{"name":"PowerDeviceD0","features":[10]},{"name":"PowerDeviceD1","features":[10]},{"name":"PowerDeviceD2","features":[10]},{"name":"PowerDeviceD3","features":[10]},{"name":"PowerDeviceMaximum","features":[10]},{"name":"PowerDeviceUnspecified","features":[10]},{"name":"PowerDuplicateScheme","features":[3,10,51]},{"name":"PowerEnumerate","features":[3,10,51]},{"name":"PowerGetActiveScheme","features":[3,10,51]},{"name":"PowerImportPowerScheme","features":[3,10,51]},{"name":"PowerInformationInternal","features":[10]},{"name":"PowerInformationLevelMaximum","features":[10]},{"name":"PowerInformationLevelUnused0","features":[10]},{"name":"PowerIsSettingRangeDefined","features":[3,10]},{"name":"PowerOpenSystemPowerKey","features":[3,10,51]},{"name":"PowerOpenUserPowerKey","features":[3,10,51]},{"name":"PowerReadACDefaultIndex","features":[10,51]},{"name":"PowerReadACValue","features":[3,10,51]},{"name":"PowerReadACValueIndex","features":[3,10,51]},{"name":"PowerReadDCDefaultIndex","features":[10,51]},{"name":"PowerReadDCValue","features":[3,10,51]},{"name":"PowerReadDCValueIndex","features":[10,51]},{"name":"PowerReadDescription","features":[3,10,51]},{"name":"PowerReadFriendlyName","features":[3,10,51]},{"name":"PowerReadIconResourceSpecifier","features":[3,10,51]},{"name":"PowerReadPossibleDescription","features":[3,10,51]},{"name":"PowerReadPossibleFriendlyName","features":[3,10,51]},{"name":"PowerReadPossibleValue","features":[3,10,51]},{"name":"PowerReadSettingAttributes","features":[10]},{"name":"PowerReadValueIncrement","features":[3,10,51]},{"name":"PowerReadValueMax","features":[3,10,51]},{"name":"PowerReadValueMin","features":[3,10,51]},{"name":"PowerReadValueUnitsSpecifier","features":[3,10,51]},{"name":"PowerRegisterForEffectivePowerModeNotifications","features":[10]},{"name":"PowerRegisterSuspendResumeNotification","features":[3,10,52]},{"name":"PowerRemovePowerSetting","features":[3,10]},{"name":"PowerReplaceDefaultPowerSchemes","features":[10]},{"name":"PowerReportThermalEvent","features":[3,10]},{"name":"PowerRequestAction","features":[10]},{"name":"PowerRequestActionInternal","features":[10]},{"name":"PowerRequestAwayModeRequired","features":[10]},{"name":"PowerRequestCreate","features":[10]},{"name":"PowerRequestDisplayRequired","features":[10]},{"name":"PowerRequestExecutionRequired","features":[10]},{"name":"PowerRequestSystemRequired","features":[10]},{"name":"PowerRestoreDefaultPowerSchemes","features":[3,10]},{"name":"PowerRestoreIndividualDefaultPowerScheme","features":[3,10]},{"name":"PowerSetActiveScheme","features":[3,10,51]},{"name":"PowerSetRequest","features":[3,10]},{"name":"PowerSettingAccessCheck","features":[3,10]},{"name":"PowerSettingAccessCheckEx","features":[3,10,51]},{"name":"PowerSettingNotificationName","features":[10]},{"name":"PowerSettingRegisterNotification","features":[3,10,52]},{"name":"PowerSettingUnregisterNotification","features":[3,10]},{"name":"PowerShutdownNotification","features":[10]},{"name":"PowerSystemHibernate","features":[10]},{"name":"PowerSystemMaximum","features":[10]},{"name":"PowerSystemShutdown","features":[10]},{"name":"PowerSystemSleeping1","features":[10]},{"name":"PowerSystemSleeping2","features":[10]},{"name":"PowerSystemSleeping3","features":[10]},{"name":"PowerSystemUnspecified","features":[10]},{"name":"PowerSystemWorking","features":[10]},{"name":"PowerUnregisterFromEffectivePowerModeNotifications","features":[10]},{"name":"PowerUnregisterSuspendResumeNotification","features":[3,10]},{"name":"PowerUserInactive","features":[10]},{"name":"PowerUserInvalid","features":[10]},{"name":"PowerUserMaximum","features":[10]},{"name":"PowerUserNotPresent","features":[10]},{"name":"PowerUserPresent","features":[10]},{"name":"PowerWriteACDefaultIndex","features":[10,51]},{"name":"PowerWriteACValueIndex","features":[3,10,51]},{"name":"PowerWriteDCDefaultIndex","features":[10,51]},{"name":"PowerWriteDCValueIndex","features":[10,51]},{"name":"PowerWriteDescription","features":[3,10,51]},{"name":"PowerWriteFriendlyName","features":[3,10,51]},{"name":"PowerWriteIconResourceSpecifier","features":[3,10,51]},{"name":"PowerWritePossibleDescription","features":[3,10,51]},{"name":"PowerWritePossibleFriendlyName","features":[3,10,51]},{"name":"PowerWritePossibleValue","features":[3,10,51]},{"name":"PowerWriteSettingAttributes","features":[3,10]},{"name":"PowerWriteValueIncrement","features":[3,10,51]},{"name":"PowerWriteValueMax","features":[3,10,51]},{"name":"PowerWriteValueMin","features":[3,10,51]},{"name":"PowerWriteValueUnitsSpecifier","features":[3,10,51]},{"name":"ProcessorCap","features":[10]},{"name":"ProcessorIdleDomains","features":[10]},{"name":"ProcessorIdleStates","features":[10]},{"name":"ProcessorIdleStatesHv","features":[10]},{"name":"ProcessorIdleVeto","features":[10]},{"name":"ProcessorInformation","features":[10]},{"name":"ProcessorInformationEx","features":[10]},{"name":"ProcessorLoad","features":[10]},{"name":"ProcessorPerfCapHv","features":[10]},{"name":"ProcessorPerfStates","features":[10]},{"name":"ProcessorPerfStatesHv","features":[10]},{"name":"ProcessorPowerPolicyAc","features":[10]},{"name":"ProcessorPowerPolicyCurrent","features":[10]},{"name":"ProcessorPowerPolicyDc","features":[10]},{"name":"ProcessorSetIdle","features":[10]},{"name":"ProcessorStateHandler","features":[10]},{"name":"ProcessorStateHandler2","features":[10]},{"name":"QueryPotentialDripsConstraint","features":[10]},{"name":"RESUME_PERFORMANCE","features":[10]},{"name":"ReadGlobalPwrPolicy","features":[3,10]},{"name":"ReadProcessorPwrScheme","features":[3,10]},{"name":"ReadPwrScheme","features":[3,10]},{"name":"RegisterPowerSettingNotification","features":[3,10,52]},{"name":"RegisterSpmPowerSettings","features":[10]},{"name":"RegisterSuspendResumeNotification","features":[3,10,52]},{"name":"RequestWakeupLatency","features":[3,10]},{"name":"SET_POWER_SETTING_VALUE","features":[10]},{"name":"SYSTEM_BATTERY_STATE","features":[3,10]},{"name":"SYSTEM_POWER_CAPABILITIES","features":[3,10]},{"name":"SYSTEM_POWER_CONDITION","features":[10]},{"name":"SYSTEM_POWER_INFORMATION","features":[10]},{"name":"SYSTEM_POWER_LEVEL","features":[3,10]},{"name":"SYSTEM_POWER_POLICY","features":[3,10]},{"name":"SYSTEM_POWER_STATE","features":[10]},{"name":"SYSTEM_POWER_STATUS","features":[10]},{"name":"SYS_BUTTON_LID","features":[10]},{"name":"SYS_BUTTON_LID_CHANGED","features":[10]},{"name":"SYS_BUTTON_LID_CLOSED","features":[10]},{"name":"SYS_BUTTON_LID_INITIAL","features":[10]},{"name":"SYS_BUTTON_LID_OPEN","features":[10]},{"name":"SYS_BUTTON_LID_STATE_MASK","features":[10]},{"name":"SYS_BUTTON_POWER","features":[10]},{"name":"SYS_BUTTON_SLEEP","features":[10]},{"name":"SYS_BUTTON_WAKE","features":[10]},{"name":"ScreenOff","features":[10]},{"name":"SendSuspendResumeNotification","features":[10]},{"name":"SessionAllowExternalDmaDevices","features":[10]},{"name":"SessionConnectNotification","features":[10]},{"name":"SessionDisplayState","features":[10]},{"name":"SessionLockState","features":[10]},{"name":"SessionPowerCleanup","features":[10]},{"name":"SessionPowerInit","features":[10]},{"name":"SessionRITState","features":[10]},{"name":"SetActivePwrScheme","features":[3,10]},{"name":"SetPowerSettingValue","features":[10]},{"name":"SetShutdownSelectedTime","features":[10]},{"name":"SetSuspendState","features":[3,10]},{"name":"SetSystemPowerState","features":[3,10]},{"name":"SetThreadExecutionState","features":[10]},{"name":"SuspendResumeInvocation","features":[10]},{"name":"SystemBatteryState","features":[10]},{"name":"SystemBatteryStatePrecise","features":[10]},{"name":"SystemExecutionState","features":[10]},{"name":"SystemHiberFileInformation","features":[10]},{"name":"SystemHiberFileSize","features":[10]},{"name":"SystemHiberFileType","features":[10]},{"name":"SystemHiberbootState","features":[10]},{"name":"SystemMonitorHiberBootPowerOff","features":[10]},{"name":"SystemPowerCapabilities","features":[10]},{"name":"SystemPowerInformation","features":[10]},{"name":"SystemPowerLoggingEntry","features":[10]},{"name":"SystemPowerPolicyAc","features":[10]},{"name":"SystemPowerPolicyCurrent","features":[10]},{"name":"SystemPowerPolicyDc","features":[10]},{"name":"SystemPowerStateHandler","features":[10]},{"name":"SystemPowerStateLogging","features":[10]},{"name":"SystemPowerStateNotifyHandler","features":[10]},{"name":"SystemReserveHiberFile","features":[10]},{"name":"SystemVideoState","features":[10]},{"name":"SystemWakeSource","features":[10]},{"name":"THERMAL_COOLING_INTERFACE_VERSION","features":[10]},{"name":"THERMAL_DEVICE_INTERFACE_VERSION","features":[10]},{"name":"THERMAL_EVENT","features":[10]},{"name":"THERMAL_EVENT_VERSION","features":[10]},{"name":"THERMAL_INFORMATION","features":[10]},{"name":"THERMAL_POLICY","features":[3,10]},{"name":"THERMAL_POLICY_VERSION_1","features":[10]},{"name":"THERMAL_POLICY_VERSION_2","features":[10]},{"name":"THERMAL_WAIT_READ","features":[10]},{"name":"TZ_ACTIVATION_REASON_CURRENT","features":[10]},{"name":"TZ_ACTIVATION_REASON_THERMAL","features":[10]},{"name":"ThermalEvent","features":[10]},{"name":"ThermalStandby","features":[10]},{"name":"TraceApplicationPowerMessage","features":[10]},{"name":"TraceApplicationPowerMessageEnd","features":[10]},{"name":"TraceServicePowerMessage","features":[10]},{"name":"UNKNOWN_CAPACITY","features":[10]},{"name":"UNKNOWN_CURRENT","features":[10]},{"name":"UNKNOWN_RATE","features":[10]},{"name":"UNKNOWN_VOLTAGE","features":[10]},{"name":"USB_CHARGER_PORT","features":[10]},{"name":"USER_ACTIVITY_PRESENCE","features":[10]},{"name":"USER_POWER_POLICY","features":[3,10]},{"name":"UnregisterPowerSettingNotification","features":[3,10]},{"name":"UnregisterSuspendResumeNotification","features":[3,10]},{"name":"UpdateBlackBoxRecorder","features":[10]},{"name":"UsbChargerPort_Legacy","features":[10]},{"name":"UsbChargerPort_Max","features":[10]},{"name":"UsbChargerPort_TypeC","features":[10]},{"name":"UserNotPresent","features":[10]},{"name":"UserPresence","features":[10]},{"name":"UserPresent","features":[10]},{"name":"UserUnknown","features":[10]},{"name":"ValidatePowerPolicies","features":[3,10]},{"name":"VerifyProcessorPowerPolicyAc","features":[10]},{"name":"VerifyProcessorPowerPolicyDc","features":[10]},{"name":"VerifySystemPolicyAc","features":[10]},{"name":"VerifySystemPolicyDc","features":[10]},{"name":"WAKE_ALARM_INFORMATION","features":[10]},{"name":"WakeTimerList","features":[10]},{"name":"WriteGlobalPwrPolicy","features":[3,10]},{"name":"WriteProcessorPwrScheme","features":[3,10]},{"name":"WritePwrScheme","features":[3,10]}],"594":[{"name":"ENUM_PAGE_FILE_INFORMATION","features":[195]},{"name":"ENUM_PROCESS_MODULES_EX_FLAGS","features":[195]},{"name":"EmptyWorkingSet","features":[3,195]},{"name":"EnumDeviceDrivers","features":[3,195]},{"name":"EnumPageFilesA","features":[3,195]},{"name":"EnumPageFilesW","features":[3,195]},{"name":"EnumProcessModules","features":[3,195]},{"name":"EnumProcessModulesEx","features":[3,195]},{"name":"EnumProcesses","features":[3,195]},{"name":"GetDeviceDriverBaseNameA","features":[195]},{"name":"GetDeviceDriverBaseNameW","features":[195]},{"name":"GetDeviceDriverFileNameA","features":[195]},{"name":"GetDeviceDriverFileNameW","features":[195]},{"name":"GetMappedFileNameA","features":[3,195]},{"name":"GetMappedFileNameW","features":[3,195]},{"name":"GetModuleBaseNameA","features":[3,195]},{"name":"GetModuleBaseNameW","features":[3,195]},{"name":"GetModuleFileNameExA","features":[3,195]},{"name":"GetModuleFileNameExW","features":[3,195]},{"name":"GetModuleInformation","features":[3,195]},{"name":"GetPerformanceInfo","features":[3,195]},{"name":"GetProcessImageFileNameA","features":[3,195]},{"name":"GetProcessImageFileNameW","features":[3,195]},{"name":"GetProcessMemoryInfo","features":[3,195]},{"name":"GetWsChanges","features":[3,195]},{"name":"GetWsChangesEx","features":[3,195]},{"name":"InitializeProcessForWsWatch","features":[3,195]},{"name":"K32EmptyWorkingSet","features":[3,195]},{"name":"K32EnumDeviceDrivers","features":[3,195]},{"name":"K32EnumPageFilesA","features":[3,195]},{"name":"K32EnumPageFilesW","features":[3,195]},{"name":"K32EnumProcessModules","features":[3,195]},{"name":"K32EnumProcessModulesEx","features":[3,195]},{"name":"K32EnumProcesses","features":[3,195]},{"name":"K32GetDeviceDriverBaseNameA","features":[195]},{"name":"K32GetDeviceDriverBaseNameW","features":[195]},{"name":"K32GetDeviceDriverFileNameA","features":[195]},{"name":"K32GetDeviceDriverFileNameW","features":[195]},{"name":"K32GetMappedFileNameA","features":[3,195]},{"name":"K32GetMappedFileNameW","features":[3,195]},{"name":"K32GetModuleBaseNameA","features":[3,195]},{"name":"K32GetModuleBaseNameW","features":[3,195]},{"name":"K32GetModuleFileNameExA","features":[3,195]},{"name":"K32GetModuleFileNameExW","features":[3,195]},{"name":"K32GetModuleInformation","features":[3,195]},{"name":"K32GetPerformanceInfo","features":[3,195]},{"name":"K32GetProcessImageFileNameA","features":[3,195]},{"name":"K32GetProcessImageFileNameW","features":[3,195]},{"name":"K32GetProcessMemoryInfo","features":[3,195]},{"name":"K32GetWsChanges","features":[3,195]},{"name":"K32GetWsChangesEx","features":[3,195]},{"name":"K32InitializeProcessForWsWatch","features":[3,195]},{"name":"K32QueryWorkingSet","features":[3,195]},{"name":"K32QueryWorkingSetEx","features":[3,195]},{"name":"LIST_MODULES_32BIT","features":[195]},{"name":"LIST_MODULES_64BIT","features":[195]},{"name":"LIST_MODULES_ALL","features":[195]},{"name":"LIST_MODULES_DEFAULT","features":[195]},{"name":"MODULEINFO","features":[195]},{"name":"PENUM_PAGE_FILE_CALLBACKA","features":[3,195]},{"name":"PENUM_PAGE_FILE_CALLBACKW","features":[3,195]},{"name":"PERFORMANCE_INFORMATION","features":[195]},{"name":"PROCESS_MEMORY_COUNTERS","features":[195]},{"name":"PROCESS_MEMORY_COUNTERS_EX","features":[195]},{"name":"PROCESS_MEMORY_COUNTERS_EX2","features":[195]},{"name":"PSAPI_VERSION","features":[195]},{"name":"PSAPI_WORKING_SET_BLOCK","features":[195]},{"name":"PSAPI_WORKING_SET_EX_BLOCK","features":[195]},{"name":"PSAPI_WORKING_SET_EX_INFORMATION","features":[195]},{"name":"PSAPI_WORKING_SET_INFORMATION","features":[195]},{"name":"PSAPI_WS_WATCH_INFORMATION","features":[195]},{"name":"PSAPI_WS_WATCH_INFORMATION_EX","features":[195]},{"name":"QueryWorkingSet","features":[3,195]},{"name":"QueryWorkingSetEx","features":[3,195]}],"596":[{"name":"ApplicationRecoveryFinished","features":[3,196]},{"name":"ApplicationRecoveryInProgress","features":[3,196]},{"name":"GetApplicationRecoveryCallback","features":[3,196,37]},{"name":"GetApplicationRestartSettings","features":[3,196]},{"name":"REGISTER_APPLICATION_RESTART_FLAGS","features":[196]},{"name":"RESTART_NO_CRASH","features":[196]},{"name":"RESTART_NO_HANG","features":[196]},{"name":"RESTART_NO_PATCH","features":[196]},{"name":"RESTART_NO_REBOOT","features":[196]},{"name":"RegisterApplicationRecoveryCallback","features":[196,37]},{"name":"RegisterApplicationRestart","features":[196]},{"name":"UnregisterApplicationRecoveryCallback","features":[196]},{"name":"UnregisterApplicationRestart","features":[196]}],"597":[{"name":"AGP_FLAG_NO_1X_RATE","features":[51]},{"name":"AGP_FLAG_NO_2X_RATE","features":[51]},{"name":"AGP_FLAG_NO_4X_RATE","features":[51]},{"name":"AGP_FLAG_NO_8X_RATE","features":[51]},{"name":"AGP_FLAG_NO_FW_ENABLE","features":[51]},{"name":"AGP_FLAG_NO_SBA_ENABLE","features":[51]},{"name":"AGP_FLAG_REVERSE_INITIALIZATION","features":[51]},{"name":"AGP_FLAG_SPECIAL_RESERVE","features":[51]},{"name":"AGP_FLAG_SPECIAL_TARGET","features":[51]},{"name":"APMMENUSUSPEND_DISABLED","features":[51]},{"name":"APMMENUSUSPEND_ENABLED","features":[51]},{"name":"APMMENUSUSPEND_NOCHANGE","features":[51]},{"name":"APMMENUSUSPEND_UNDOCKED","features":[51]},{"name":"APMTIMEOUT_DISABLED","features":[51]},{"name":"BIF_RAWDEVICENEEDSDRIVER","features":[51]},{"name":"BIF_SHOWSIMILARDRIVERS","features":[51]},{"name":"CSCONFIGFLAG_BITS","features":[51]},{"name":"CSCONFIGFLAG_DISABLED","features":[51]},{"name":"CSCONFIGFLAG_DO_NOT_CREATE","features":[51]},{"name":"CSCONFIGFLAG_DO_NOT_START","features":[51]},{"name":"DMSTATEFLAG_APPLYTOALL","features":[51]},{"name":"DOSOPTF_ALWAYSUSE","features":[51]},{"name":"DOSOPTF_DEFAULT","features":[51]},{"name":"DOSOPTF_INDOSSTART","features":[51]},{"name":"DOSOPTF_MULTIPLE","features":[51]},{"name":"DOSOPTF_NEEDSETUP","features":[51]},{"name":"DOSOPTF_PROVIDESUMB","features":[51]},{"name":"DOSOPTF_SUPPORTED","features":[51]},{"name":"DOSOPTF_USESPMODE","features":[51]},{"name":"DOSOPTGF_DEFCLEAN","features":[51]},{"name":"DRIVERSIGN_BLOCKING","features":[51]},{"name":"DRIVERSIGN_NONE","features":[51]},{"name":"DRIVERSIGN_WARNING","features":[51]},{"name":"DSKTLSYSTEMTIME","features":[51]},{"name":"DTRESULTFIX","features":[51]},{"name":"DTRESULTOK","features":[51]},{"name":"DTRESULTPART","features":[51]},{"name":"DTRESULTPROB","features":[51]},{"name":"EISAFLAG_NO_IO_MERGE","features":[51]},{"name":"EISAFLAG_SLOT_IO_FIRST","features":[51]},{"name":"EISA_NO_MAX_FUNCTION","features":[51]},{"name":"GetRegistryValueWithFallbackW","features":[3,51]},{"name":"HKEY","features":[51]},{"name":"HKEY_CLASSES_ROOT","features":[51]},{"name":"HKEY_CURRENT_CONFIG","features":[51]},{"name":"HKEY_CURRENT_USER","features":[51]},{"name":"HKEY_CURRENT_USER_LOCAL_SETTINGS","features":[51]},{"name":"HKEY_DYN_DATA","features":[51]},{"name":"HKEY_LOCAL_MACHINE","features":[51]},{"name":"HKEY_PERFORMANCE_DATA","features":[51]},{"name":"HKEY_PERFORMANCE_NLSTEXT","features":[51]},{"name":"HKEY_PERFORMANCE_TEXT","features":[51]},{"name":"HKEY_USERS","features":[51]},{"name":"IT_COMPACT","features":[51]},{"name":"IT_CUSTOM","features":[51]},{"name":"IT_PORTABLE","features":[51]},{"name":"IT_TYPICAL","features":[51]},{"name":"KEY_ALL_ACCESS","features":[51]},{"name":"KEY_CREATE_LINK","features":[51]},{"name":"KEY_CREATE_SUB_KEY","features":[51]},{"name":"KEY_ENUMERATE_SUB_KEYS","features":[51]},{"name":"KEY_EXECUTE","features":[51]},{"name":"KEY_NOTIFY","features":[51]},{"name":"KEY_QUERY_VALUE","features":[51]},{"name":"KEY_READ","features":[51]},{"name":"KEY_SET_VALUE","features":[51]},{"name":"KEY_WOW64_32KEY","features":[51]},{"name":"KEY_WOW64_64KEY","features":[51]},{"name":"KEY_WOW64_RES","features":[51]},{"name":"KEY_WRITE","features":[51]},{"name":"LASTGOOD_OPERATION","features":[51]},{"name":"LASTGOOD_OPERATION_DELETE","features":[51]},{"name":"LASTGOOD_OPERATION_NOPOSTPROC","features":[51]},{"name":"MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED","features":[51]},{"name":"MF_FLAGS_EVEN_IF_NO_RESOURCE","features":[51]},{"name":"MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE","features":[51]},{"name":"MF_FLAGS_NO_CREATE_IF_NO_RESOURCE","features":[51]},{"name":"NUM_EISA_RANGES","features":[51]},{"name":"NUM_RESOURCE_MAP","features":[51]},{"name":"PCIC_DEFAULT_IRQMASK","features":[51]},{"name":"PCIC_DEFAULT_NUMSOCKETS","features":[51]},{"name":"PCI_OPTIONS_USE_BIOS","features":[51]},{"name":"PCI_OPTIONS_USE_IRQ_STEERING","features":[51]},{"name":"PCMCIA_DEF_MEMBEGIN","features":[51]},{"name":"PCMCIA_DEF_MEMEND","features":[51]},{"name":"PCMCIA_DEF_MEMLEN","features":[51]},{"name":"PCMCIA_DEF_MIN_REGION","features":[51]},{"name":"PCMCIA_OPT_AUTOMEM","features":[51]},{"name":"PCMCIA_OPT_HAVE_SOCKET","features":[51]},{"name":"PCMCIA_OPT_NO_APMREMOVE","features":[51]},{"name":"PCMCIA_OPT_NO_AUDIO","features":[51]},{"name":"PCMCIA_OPT_NO_SOUND","features":[51]},{"name":"PIR_OPTION_DEFAULT","features":[51]},{"name":"PIR_OPTION_ENABLED","features":[51]},{"name":"PIR_OPTION_MSSPEC","features":[51]},{"name":"PIR_OPTION_REALMODE","features":[51]},{"name":"PIR_OPTION_REGISTRY","features":[51]},{"name":"PIR_STATUS_DISABLED","features":[51]},{"name":"PIR_STATUS_ENABLED","features":[51]},{"name":"PIR_STATUS_ERROR","features":[51]},{"name":"PIR_STATUS_MAX","features":[51]},{"name":"PIR_STATUS_MINIPORT_COMPATIBLE","features":[51]},{"name":"PIR_STATUS_MINIPORT_ERROR","features":[51]},{"name":"PIR_STATUS_MINIPORT_INVALID","features":[51]},{"name":"PIR_STATUS_MINIPORT_MAX","features":[51]},{"name":"PIR_STATUS_MINIPORT_NOKEY","features":[51]},{"name":"PIR_STATUS_MINIPORT_NONE","features":[51]},{"name":"PIR_STATUS_MINIPORT_NORMAL","features":[51]},{"name":"PIR_STATUS_MINIPORT_OVERRIDE","features":[51]},{"name":"PIR_STATUS_MINIPORT_SUCCESS","features":[51]},{"name":"PIR_STATUS_TABLE_BAD","features":[51]},{"name":"PIR_STATUS_TABLE_ERROR","features":[51]},{"name":"PIR_STATUS_TABLE_MAX","features":[51]},{"name":"PIR_STATUS_TABLE_MSSPEC","features":[51]},{"name":"PIR_STATUS_TABLE_NONE","features":[51]},{"name":"PIR_STATUS_TABLE_REALMODE","features":[51]},{"name":"PIR_STATUS_TABLE_REGISTRY","features":[51]},{"name":"PIR_STATUS_TABLE_SUCCESS","features":[51]},{"name":"PQUERYHANDLER","features":[51]},{"name":"PROVIDER_KEEPS_VALUE_LENGTH","features":[51]},{"name":"PVALUEA","features":[51]},{"name":"PVALUEW","features":[51]},{"name":"REGDF_CONFLICTDMA","features":[51]},{"name":"REGDF_CONFLICTIO","features":[51]},{"name":"REGDF_CONFLICTIRQ","features":[51]},{"name":"REGDF_CONFLICTMEM","features":[51]},{"name":"REGDF_GENFORCEDCONFIG","features":[51]},{"name":"REGDF_MAPIRQ2TO9","features":[51]},{"name":"REGDF_NEEDFULLCONFIG","features":[51]},{"name":"REGDF_NODETCONFIG","features":[51]},{"name":"REGDF_NOTDETDMA","features":[51]},{"name":"REGDF_NOTDETIO","features":[51]},{"name":"REGDF_NOTDETIRQ","features":[51]},{"name":"REGDF_NOTDETMEM","features":[51]},{"name":"REGDF_NOTVERIFIED","features":[51]},{"name":"REGSTR_DATA_NETOS_IPX","features":[51]},{"name":"REGSTR_DATA_NETOS_NDIS","features":[51]},{"name":"REGSTR_DATA_NETOS_ODI","features":[51]},{"name":"REGSTR_DEFAULT_INSTANCE","features":[51]},{"name":"REGSTR_KEY_ACPIENUM","features":[51]},{"name":"REGSTR_KEY_APM","features":[51]},{"name":"REGSTR_KEY_BIOSENUM","features":[51]},{"name":"REGSTR_KEY_CLASS","features":[51]},{"name":"REGSTR_KEY_CONFIG","features":[51]},{"name":"REGSTR_KEY_CONTROL","features":[51]},{"name":"REGSTR_KEY_CRASHES","features":[51]},{"name":"REGSTR_KEY_CURRENT","features":[51]},{"name":"REGSTR_KEY_CURRENT_ENV","features":[51]},{"name":"REGSTR_KEY_DANGERS","features":[51]},{"name":"REGSTR_KEY_DEFAULT","features":[51]},{"name":"REGSTR_KEY_DETMODVARS","features":[51]},{"name":"REGSTR_KEY_DEVICEPARAMETERS","features":[51]},{"name":"REGSTR_KEY_DEVICE_PROPERTIES","features":[51]},{"name":"REGSTR_KEY_DISPLAY_CLASS","features":[51]},{"name":"REGSTR_KEY_DOSOPTCDROM","features":[51]},{"name":"REGSTR_KEY_DOSOPTMOUSE","features":[51]},{"name":"REGSTR_KEY_DRIVERPARAMETERS","features":[51]},{"name":"REGSTR_KEY_DRIVERS","features":[51]},{"name":"REGSTR_KEY_EBDAUTOEXECBATKEYBOARD","features":[51]},{"name":"REGSTR_KEY_EBDAUTOEXECBATLOCAL","features":[51]},{"name":"REGSTR_KEY_EBDCONFIGSYSKEYBOARD","features":[51]},{"name":"REGSTR_KEY_EBDCONFIGSYSLOCAL","features":[51]},{"name":"REGSTR_KEY_EBDFILESKEYBOARD","features":[51]},{"name":"REGSTR_KEY_EBDFILESLOCAL","features":[51]},{"name":"REGSTR_KEY_EISAENUM","features":[51]},{"name":"REGSTR_KEY_ENUM","features":[51]},{"name":"REGSTR_KEY_EXPLORER","features":[51]},{"name":"REGSTR_KEY_FILTERS","features":[51]},{"name":"REGSTR_KEY_INIUPDATE","features":[51]},{"name":"REGSTR_KEY_ISAENUM","features":[51]},{"name":"REGSTR_KEY_JOYCURR","features":[51]},{"name":"REGSTR_KEY_JOYSETTINGS","features":[51]},{"name":"REGSTR_KEY_KEYBOARD_CLASS","features":[51]},{"name":"REGSTR_KEY_KNOWNDOCKINGSTATES","features":[51]},{"name":"REGSTR_KEY_LOGCONFIG","features":[51]},{"name":"REGSTR_KEY_LOGON","features":[51]},{"name":"REGSTR_KEY_LOWER_FILTER_LEVEL_DEFAULT","features":[51]},{"name":"REGSTR_KEY_MEDIA_CLASS","features":[51]},{"name":"REGSTR_KEY_MODEM_CLASS","features":[51]},{"name":"REGSTR_KEY_MODES","features":[51]},{"name":"REGSTR_KEY_MONITOR_CLASS","features":[51]},{"name":"REGSTR_KEY_MOUSE_CLASS","features":[51]},{"name":"REGSTR_KEY_NDISINFO","features":[51]},{"name":"REGSTR_KEY_NETWORK","features":[51]},{"name":"REGSTR_KEY_NETWORKPROVIDER","features":[51]},{"name":"REGSTR_KEY_NETWORK_PERSISTENT","features":[51]},{"name":"REGSTR_KEY_NETWORK_RECENT","features":[51]},{"name":"REGSTR_KEY_OVERRIDE","features":[51]},{"name":"REGSTR_KEY_PCIENUM","features":[51]},{"name":"REGSTR_KEY_PCMCIA","features":[51]},{"name":"REGSTR_KEY_PCMCIAENUM","features":[51]},{"name":"REGSTR_KEY_PCMCIA_CLASS","features":[51]},{"name":"REGSTR_KEY_PCMTD","features":[51]},{"name":"REGSTR_KEY_PCUNKNOWN","features":[51]},{"name":"REGSTR_KEY_POL_COMPUTERS","features":[51]},{"name":"REGSTR_KEY_POL_DEFAULT","features":[51]},{"name":"REGSTR_KEY_POL_USERGROUPDATA","features":[51]},{"name":"REGSTR_KEY_POL_USERGROUPS","features":[51]},{"name":"REGSTR_KEY_POL_USERS","features":[51]},{"name":"REGSTR_KEY_PORTS_CLASS","features":[51]},{"name":"REGSTR_KEY_PRINTERS","features":[51]},{"name":"REGSTR_KEY_PRINT_PROC","features":[51]},{"name":"REGSTR_KEY_ROOTENUM","features":[51]},{"name":"REGSTR_KEY_RUNHISTORY","features":[51]},{"name":"REGSTR_KEY_SCSI_CLASS","features":[51]},{"name":"REGSTR_KEY_SETUP","features":[51]},{"name":"REGSTR_KEY_SHARES","features":[51]},{"name":"REGSTR_KEY_SYSTEM","features":[51]},{"name":"REGSTR_KEY_SYSTEMBOARD","features":[51]},{"name":"REGSTR_KEY_UPPER_FILTER_LEVEL_DEFAULT","features":[51]},{"name":"REGSTR_KEY_USER","features":[51]},{"name":"REGSTR_KEY_VPOWERDENUM","features":[51]},{"name":"REGSTR_KEY_WINOLDAPP","features":[51]},{"name":"REGSTR_MACHTYPE_ATT_PC","features":[51]},{"name":"REGSTR_MACHTYPE_HP_VECTRA","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPC","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPCAT","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPCCONV","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPCJR","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPCXT","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPCXT_286","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS1","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_25","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_30","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_30_286","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_50","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_50Z","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_55SX","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_60","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_65SX","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_70","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_70_80","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_80","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_90","features":[51]},{"name":"REGSTR_MACHTYPE_IBMPS2_P70","features":[51]},{"name":"REGSTR_MACHTYPE_PHOENIX_PCAT","features":[51]},{"name":"REGSTR_MACHTYPE_UNKNOWN","features":[51]},{"name":"REGSTR_MACHTYPE_ZENITH_PC","features":[51]},{"name":"REGSTR_MAX_VALUE_LENGTH","features":[51]},{"name":"REGSTR_PATH_ADDRARB","features":[51]},{"name":"REGSTR_PATH_AEDEBUG","features":[51]},{"name":"REGSTR_PATH_APPEARANCE","features":[51]},{"name":"REGSTR_PATH_APPPATCH","features":[51]},{"name":"REGSTR_PATH_APPPATHS","features":[51]},{"name":"REGSTR_PATH_BIOSINFO","features":[51]},{"name":"REGSTR_PATH_BUSINFORMATION","features":[51]},{"name":"REGSTR_PATH_CDFS","features":[51]},{"name":"REGSTR_PATH_CHECKBADAPPS","features":[51]},{"name":"REGSTR_PATH_CHECKBADAPPS400","features":[51]},{"name":"REGSTR_PATH_CHECKDISK","features":[51]},{"name":"REGSTR_PATH_CHECKDISKSET","features":[51]},{"name":"REGSTR_PATH_CHECKDISKUDRVS","features":[51]},{"name":"REGSTR_PATH_CHECKVERDLLS","features":[51]},{"name":"REGSTR_PATH_CHILD_PREFIX","features":[51]},{"name":"REGSTR_PATH_CHKLASTCHECK","features":[51]},{"name":"REGSTR_PATH_CHKLASTSURFAN","features":[51]},{"name":"REGSTR_PATH_CLASS","features":[51]},{"name":"REGSTR_PATH_CLASS_NT","features":[51]},{"name":"REGSTR_PATH_CODEPAGE","features":[51]},{"name":"REGSTR_PATH_CODEVICEINSTALLERS","features":[51]},{"name":"REGSTR_PATH_COLORS","features":[51]},{"name":"REGSTR_PATH_COMPUTRNAME","features":[51]},{"name":"REGSTR_PATH_CONTROLPANEL","features":[51]},{"name":"REGSTR_PATH_CONTROLSFOLDER","features":[51]},{"name":"REGSTR_PATH_CRITICALDEVICEDATABASE","features":[51]},{"name":"REGSTR_PATH_CURRENTCONTROLSET","features":[51]},{"name":"REGSTR_PATH_CURRENT_CONTROL_SET","features":[51]},{"name":"REGSTR_PATH_CURSORS","features":[51]},{"name":"REGSTR_PATH_CVNETWORK","features":[51]},{"name":"REGSTR_PATH_DESKTOP","features":[51]},{"name":"REGSTR_PATH_DETECT","features":[51]},{"name":"REGSTR_PATH_DEVICEINSTALLER","features":[51]},{"name":"REGSTR_PATH_DEVICE_CLASSES","features":[51]},{"name":"REGSTR_PATH_DIFX","features":[51]},{"name":"REGSTR_PATH_DISPLAYSETTINGS","features":[51]},{"name":"REGSTR_PATH_DMAARB","features":[51]},{"name":"REGSTR_PATH_DRIVERSIGN","features":[51]},{"name":"REGSTR_PATH_DRIVERSIGN_POLICY","features":[51]},{"name":"REGSTR_PATH_ENUM","features":[51]},{"name":"REGSTR_PATH_ENVIRONMENTS","features":[51]},{"name":"REGSTR_PATH_EVENTLABELS","features":[51]},{"name":"REGSTR_PATH_EXPLORER","features":[51]},{"name":"REGSTR_PATH_FAULT","features":[51]},{"name":"REGSTR_PATH_FILESYSTEM","features":[51]},{"name":"REGSTR_PATH_FILESYSTEM_NOVOLTRACK","features":[51]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR","features":[51]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR0","features":[51]},{"name":"REGSTR_PATH_FONTS","features":[51]},{"name":"REGSTR_PATH_GRPCONV","features":[51]},{"name":"REGSTR_PATH_HACKINIFILE","features":[51]},{"name":"REGSTR_PATH_HWPROFILES","features":[51]},{"name":"REGSTR_PATH_HWPROFILESCURRENT","features":[51]},{"name":"REGSTR_PATH_ICONS","features":[51]},{"name":"REGSTR_PATH_IDCONFIGDB","features":[51]},{"name":"REGSTR_PATH_INSTALLEDFILES","features":[51]},{"name":"REGSTR_PATH_IOARB","features":[51]},{"name":"REGSTR_PATH_IOS","features":[51]},{"name":"REGSTR_PATH_IRQARB","features":[51]},{"name":"REGSTR_PATH_KEYBOARD","features":[51]},{"name":"REGSTR_PATH_KNOWN16DLLS","features":[51]},{"name":"REGSTR_PATH_KNOWNDLLS","features":[51]},{"name":"REGSTR_PATH_KNOWNVXDS","features":[51]},{"name":"REGSTR_PATH_LASTBACKUP","features":[51]},{"name":"REGSTR_PATH_LASTCHECK","features":[51]},{"name":"REGSTR_PATH_LASTGOOD","features":[51]},{"name":"REGSTR_PATH_LASTGOODTMP","features":[51]},{"name":"REGSTR_PATH_LASTOPTIMIZE","features":[51]},{"name":"REGSTR_PATH_LOOKSCHEMES","features":[51]},{"name":"REGSTR_PATH_METRICS","features":[51]},{"name":"REGSTR_PATH_MONITORS","features":[51]},{"name":"REGSTR_PATH_MOUSE","features":[51]},{"name":"REGSTR_PATH_MSDOSOPTS","features":[51]},{"name":"REGSTR_PATH_MULTIMEDIA_AUDIO","features":[51]},{"name":"REGSTR_PATH_MULTI_FUNCTION","features":[51]},{"name":"REGSTR_PATH_NCPSERVER","features":[51]},{"name":"REGSTR_PATH_NETEQUIV","features":[51]},{"name":"REGSTR_PATH_NETWORK_USERSETTINGS","features":[51]},{"name":"REGSTR_PATH_NEWDOSBOX","features":[51]},{"name":"REGSTR_PATH_NONDRIVERSIGN","features":[51]},{"name":"REGSTR_PATH_NONDRIVERSIGN_POLICY","features":[51]},{"name":"REGSTR_PATH_NOSUGGMSDOS","features":[51]},{"name":"REGSTR_PATH_NT_CURRENTVERSION","features":[51]},{"name":"REGSTR_PATH_NWREDIR","features":[51]},{"name":"REGSTR_PATH_PCIIR","features":[51]},{"name":"REGSTR_PATH_PER_HW_ID_STORAGE","features":[51]},{"name":"REGSTR_PATH_PIFCONVERT","features":[51]},{"name":"REGSTR_PATH_POLICIES","features":[51]},{"name":"REGSTR_PATH_PRINT","features":[51]},{"name":"REGSTR_PATH_PRINTERS","features":[51]},{"name":"REGSTR_PATH_PROPERTYSYSTEM","features":[51]},{"name":"REGSTR_PATH_PROVIDERS","features":[51]},{"name":"REGSTR_PATH_PWDPROVIDER","features":[51]},{"name":"REGSTR_PATH_REALMODENET","features":[51]},{"name":"REGSTR_PATH_REINSTALL","features":[51]},{"name":"REGSTR_PATH_RELIABILITY","features":[51]},{"name":"REGSTR_PATH_RELIABILITY_POLICY","features":[51]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_REPORTSNAPSHOT","features":[51]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SHUTDOWNREASONUI","features":[51]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SNAPSHOT","features":[51]},{"name":"REGSTR_PATH_ROOT","features":[51]},{"name":"REGSTR_PATH_RUN","features":[51]},{"name":"REGSTR_PATH_RUNONCE","features":[51]},{"name":"REGSTR_PATH_RUNONCEEX","features":[51]},{"name":"REGSTR_PATH_RUNSERVICES","features":[51]},{"name":"REGSTR_PATH_RUNSERVICESONCE","features":[51]},{"name":"REGSTR_PATH_SCHEMES","features":[51]},{"name":"REGSTR_PATH_SCREENSAVE","features":[51]},{"name":"REGSTR_PATH_SERVICES","features":[51]},{"name":"REGSTR_PATH_SETUP","features":[51]},{"name":"REGSTR_PATH_SHUTDOWN","features":[51]},{"name":"REGSTR_PATH_SOUND","features":[51]},{"name":"REGSTR_PATH_SYSTEMENUM","features":[51]},{"name":"REGSTR_PATH_SYSTRAY","features":[51]},{"name":"REGSTR_PATH_TIMEZONE","features":[51]},{"name":"REGSTR_PATH_UNINSTALL","features":[51]},{"name":"REGSTR_PATH_UPDATE","features":[51]},{"name":"REGSTR_PATH_VCOMM","features":[51]},{"name":"REGSTR_PATH_VMM","features":[51]},{"name":"REGSTR_PATH_VMM32FILES","features":[51]},{"name":"REGSTR_PATH_VNETSUP","features":[51]},{"name":"REGSTR_PATH_VOLUMECACHE","features":[51]},{"name":"REGSTR_PATH_VPOWERD","features":[51]},{"name":"REGSTR_PATH_VXD","features":[51]},{"name":"REGSTR_PATH_WARNVERDLLS","features":[51]},{"name":"REGSTR_PATH_WINBOOT","features":[51]},{"name":"REGSTR_PATH_WINDOWSAPPLETS","features":[51]},{"name":"REGSTR_PATH_WINLOGON","features":[51]},{"name":"REGSTR_PATH_WMI_SECURITY","features":[51]},{"name":"REGSTR_PCI_DUAL_IDE","features":[51]},{"name":"REGSTR_PCI_OPTIONS","features":[51]},{"name":"REGSTR_VALUE_DEFAULTLOC","features":[51]},{"name":"REGSTR_VALUE_ENABLE","features":[51]},{"name":"REGSTR_VALUE_LOWPOWERACTIVE","features":[51]},{"name":"REGSTR_VALUE_LOWPOWERTIMEOUT","features":[51]},{"name":"REGSTR_VALUE_NETPATH","features":[51]},{"name":"REGSTR_VALUE_POWEROFFACTIVE","features":[51]},{"name":"REGSTR_VALUE_POWEROFFTIMEOUT","features":[51]},{"name":"REGSTR_VALUE_SCRPASSWORD","features":[51]},{"name":"REGSTR_VALUE_USESCRPASSWORD","features":[51]},{"name":"REGSTR_VALUE_VERBOSE","features":[51]},{"name":"REGSTR_VAL_ACDRIVESPINDOWN","features":[51]},{"name":"REGSTR_VAL_ACSPINDOWNPREVIOUS","features":[51]},{"name":"REGSTR_VAL_ACTIVESERVICE","features":[51]},{"name":"REGSTR_VAL_ADDRESS","features":[51]},{"name":"REGSTR_VAL_AEDEBUG_AUTO","features":[51]},{"name":"REGSTR_VAL_AEDEBUG_DEBUGGER","features":[51]},{"name":"REGSTR_VAL_ALPHANUMPWDS","features":[51]},{"name":"REGSTR_VAL_APISUPPORT","features":[51]},{"name":"REGSTR_VAL_APMACTIMEOUT","features":[51]},{"name":"REGSTR_VAL_APMBATTIMEOUT","features":[51]},{"name":"REGSTR_VAL_APMBIOSVER","features":[51]},{"name":"REGSTR_VAL_APMFLAGS","features":[51]},{"name":"REGSTR_VAL_APMMENUSUSPEND","features":[51]},{"name":"REGSTR_VAL_APMSHUTDOWNPOWER","features":[51]},{"name":"REGSTR_VAL_APPINSTPATH","features":[51]},{"name":"REGSTR_VAL_ASKFORCONFIG","features":[51]},{"name":"REGSTR_VAL_ASKFORCONFIGFUNC","features":[51]},{"name":"REGSTR_VAL_ASYNCFILECOMMIT","features":[51]},{"name":"REGSTR_VAL_AUDIO_BITMAP","features":[51]},{"name":"REGSTR_VAL_AUDIO_ICON","features":[51]},{"name":"REGSTR_VAL_AUTHENT_AGENT","features":[51]},{"name":"REGSTR_VAL_AUTOEXEC","features":[51]},{"name":"REGSTR_VAL_AUTOINSNOTE","features":[51]},{"name":"REGSTR_VAL_AUTOLOGON","features":[51]},{"name":"REGSTR_VAL_AUTOMOUNT","features":[51]},{"name":"REGSTR_VAL_AUTOSTART","features":[51]},{"name":"REGSTR_VAL_BASICPROPERTIES","features":[51]},{"name":"REGSTR_VAL_BASICPROPERTIES_32","features":[51]},{"name":"REGSTR_VAL_BATDRIVESPINDOWN","features":[51]},{"name":"REGSTR_VAL_BATSPINDOWNPREVIOUS","features":[51]},{"name":"REGSTR_VAL_BEHAVIOR_ON_FAILED_VERIFY","features":[51]},{"name":"REGSTR_VAL_BIOSDATE","features":[51]},{"name":"REGSTR_VAL_BIOSNAME","features":[51]},{"name":"REGSTR_VAL_BIOSVERSION","features":[51]},{"name":"REGSTR_VAL_BITSPERPIXEL","features":[51]},{"name":"REGSTR_VAL_BOOTCONFIG","features":[51]},{"name":"REGSTR_VAL_BOOTCOUNT","features":[51]},{"name":"REGSTR_VAL_BOOTDIR","features":[51]},{"name":"REGSTR_VAL_BPP","features":[51]},{"name":"REGSTR_VAL_BT","features":[51]},{"name":"REGSTR_VAL_BUFFAGETIMEOUT","features":[51]},{"name":"REGSTR_VAL_BUFFIDLETIMEOUT","features":[51]},{"name":"REGSTR_VAL_BUSTYPE","features":[51]},{"name":"REGSTR_VAL_CAPABILITIES","features":[51]},{"name":"REGSTR_VAL_CARDSPECIFIC","features":[51]},{"name":"REGSTR_VAL_CDCACHESIZE","features":[51]},{"name":"REGSTR_VAL_CDCOMPATNAMES","features":[51]},{"name":"REGSTR_VAL_CDEXTERRORS","features":[51]},{"name":"REGSTR_VAL_CDNOREADAHEAD","features":[51]},{"name":"REGSTR_VAL_CDPREFETCH","features":[51]},{"name":"REGSTR_VAL_CDPREFETCHTAIL","features":[51]},{"name":"REGSTR_VAL_CDRAWCACHE","features":[51]},{"name":"REGSTR_VAL_CDROM","features":[51]},{"name":"REGSTR_VAL_CDROMCLASSNAME","features":[51]},{"name":"REGSTR_VAL_CDSHOWVERSIONS","features":[51]},{"name":"REGSTR_VAL_CDSVDSENSE","features":[51]},{"name":"REGSTR_VAL_CHECKSUM","features":[51]},{"name":"REGSTR_VAL_CLASS","features":[51]},{"name":"REGSTR_VAL_CLASSDESC","features":[51]},{"name":"REGSTR_VAL_CLASSGUID","features":[51]},{"name":"REGSTR_VAL_CMDRIVFLAGS","features":[51]},{"name":"REGSTR_VAL_CMENUMFLAGS","features":[51]},{"name":"REGSTR_VAL_COINSTALLERS_32","features":[51]},{"name":"REGSTR_VAL_COMINFO","features":[51]},{"name":"REGSTR_VAL_COMMENT","features":[51]},{"name":"REGSTR_VAL_COMPATIBLEIDS","features":[51]},{"name":"REGSTR_VAL_COMPRESSIONMETHOD","features":[51]},{"name":"REGSTR_VAL_COMPRESSIONTHRESHOLD","features":[51]},{"name":"REGSTR_VAL_COMPUTERNAME","features":[51]},{"name":"REGSTR_VAL_COMPUTRNAME","features":[51]},{"name":"REGSTR_VAL_COMVERIFYBASE","features":[51]},{"name":"REGSTR_VAL_CONFIG","features":[51]},{"name":"REGSTR_VAL_CONFIGFLAGS","features":[51]},{"name":"REGSTR_VAL_CONFIGMG","features":[51]},{"name":"REGSTR_VAL_CONFIGSYS","features":[51]},{"name":"REGSTR_VAL_CONNECTION_TYPE","features":[51]},{"name":"REGSTR_VAL_CONTAINERID","features":[51]},{"name":"REGSTR_VAL_CONTIGFILEALLOC","features":[51]},{"name":"REGSTR_VAL_CONVMEM","features":[51]},{"name":"REGSTR_VAL_CPU","features":[51]},{"name":"REGSTR_VAL_CRASHFUNCS","features":[51]},{"name":"REGSTR_VAL_CSCONFIGFLAGS","features":[51]},{"name":"REGSTR_VAL_CURCONFIG","features":[51]},{"name":"REGSTR_VAL_CURDRVLET","features":[51]},{"name":"REGSTR_VAL_CURRENTCONFIG","features":[51]},{"name":"REGSTR_VAL_CURRENT_BUILD","features":[51]},{"name":"REGSTR_VAL_CURRENT_CSDVERSION","features":[51]},{"name":"REGSTR_VAL_CURRENT_TYPE","features":[51]},{"name":"REGSTR_VAL_CURRENT_USER","features":[51]},{"name":"REGSTR_VAL_CURRENT_VERSION","features":[51]},{"name":"REGSTR_VAL_CUSTOMCOLORS","features":[51]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_CACHE_DATE","features":[51]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_HW_ID_KEY","features":[51]},{"name":"REGSTR_VAL_DEFAULT","features":[51]},{"name":"REGSTR_VAL_DETCONFIG","features":[51]},{"name":"REGSTR_VAL_DETECT","features":[51]},{"name":"REGSTR_VAL_DETECTFUNC","features":[51]},{"name":"REGSTR_VAL_DETFLAGS","features":[51]},{"name":"REGSTR_VAL_DETFUNC","features":[51]},{"name":"REGSTR_VAL_DEVDESC","features":[51]},{"name":"REGSTR_VAL_DEVICEDRIVER","features":[51]},{"name":"REGSTR_VAL_DEVICEPATH","features":[51]},{"name":"REGSTR_VAL_DEVICE_CHARACTERISTICS","features":[51]},{"name":"REGSTR_VAL_DEVICE_EXCLUSIVE","features":[51]},{"name":"REGSTR_VAL_DEVICE_INSTANCE","features":[51]},{"name":"REGSTR_VAL_DEVICE_SECURITY_DESCRIPTOR","features":[51]},{"name":"REGSTR_VAL_DEVICE_TYPE","features":[51]},{"name":"REGSTR_VAL_DEVLOADER","features":[51]},{"name":"REGSTR_VAL_DEVTYPE","features":[51]},{"name":"REGSTR_VAL_DIRECTHOST","features":[51]},{"name":"REGSTR_VAL_DIRTYSHUTDOWN","features":[51]},{"name":"REGSTR_VAL_DIRTYSHUTDOWNTIME","features":[51]},{"name":"REGSTR_VAL_DISABLECOUNT","features":[51]},{"name":"REGSTR_VAL_DISABLEPWDCACHING","features":[51]},{"name":"REGSTR_VAL_DISABLEREGTOOLS","features":[51]},{"name":"REGSTR_VAL_DISCONNECT","features":[51]},{"name":"REGSTR_VAL_DISK","features":[51]},{"name":"REGSTR_VAL_DISKCLASSNAME","features":[51]},{"name":"REGSTR_VAL_DISPCPL_NOAPPEARANCEPAGE","features":[51]},{"name":"REGSTR_VAL_DISPCPL_NOBACKGROUNDPAGE","features":[51]},{"name":"REGSTR_VAL_DISPCPL_NODISPCPL","features":[51]},{"name":"REGSTR_VAL_DISPCPL_NOSCRSAVPAGE","features":[51]},{"name":"REGSTR_VAL_DISPCPL_NOSETTINGSPAGE","features":[51]},{"name":"REGSTR_VAL_DISPLAY","features":[51]},{"name":"REGSTR_VAL_DISPLAYFLAGS","features":[51]},{"name":"REGSTR_VAL_DOCKED","features":[51]},{"name":"REGSTR_VAL_DOCKSTATE","features":[51]},{"name":"REGSTR_VAL_DOES_POLLING","features":[51]},{"name":"REGSTR_VAL_DONTLOADIFCONFLICT","features":[51]},{"name":"REGSTR_VAL_DONTUSEMEM","features":[51]},{"name":"REGSTR_VAL_DOSCP","features":[51]},{"name":"REGSTR_VAL_DOSOPTFLAGS","features":[51]},{"name":"REGSTR_VAL_DOSOPTGLOBALFLAGS","features":[51]},{"name":"REGSTR_VAL_DOSOPTTIP","features":[51]},{"name":"REGSTR_VAL_DOSPAGER","features":[51]},{"name":"REGSTR_VAL_DOS_SPOOL_MASK","features":[51]},{"name":"REGSTR_VAL_DOUBLEBUFFER","features":[51]},{"name":"REGSTR_VAL_DPI","features":[51]},{"name":"REGSTR_VAL_DPILOGICALX","features":[51]},{"name":"REGSTR_VAL_DPILOGICALY","features":[51]},{"name":"REGSTR_VAL_DPIPHYSICALX","features":[51]},{"name":"REGSTR_VAL_DPIPHYSICALY","features":[51]},{"name":"REGSTR_VAL_DPMS","features":[51]},{"name":"REGSTR_VAL_DRIVER","features":[51]},{"name":"REGSTR_VAL_DRIVERCACHEPATH","features":[51]},{"name":"REGSTR_VAL_DRIVERDATE","features":[51]},{"name":"REGSTR_VAL_DRIVERDATEDATA","features":[51]},{"name":"REGSTR_VAL_DRIVERVERSION","features":[51]},{"name":"REGSTR_VAL_DRIVESPINDOWN","features":[51]},{"name":"REGSTR_VAL_DRIVEWRITEBEHIND","features":[51]},{"name":"REGSTR_VAL_DRIVE_SPINDOWN","features":[51]},{"name":"REGSTR_VAL_DRV","features":[51]},{"name":"REGSTR_VAL_DRVDESC","features":[51]},{"name":"REGSTR_VAL_DYNAMIC","features":[51]},{"name":"REGSTR_VAL_EISA_FLAGS","features":[51]},{"name":"REGSTR_VAL_EISA_FUNCTIONS","features":[51]},{"name":"REGSTR_VAL_EISA_FUNCTIONS_MASK","features":[51]},{"name":"REGSTR_VAL_EISA_RANGES","features":[51]},{"name":"REGSTR_VAL_EISA_SIMULATE_INT15","features":[51]},{"name":"REGSTR_VAL_EJECT_PRIORITY","features":[51]},{"name":"REGSTR_VAL_ENABLEINTS","features":[51]},{"name":"REGSTR_VAL_ENUMERATOR","features":[51]},{"name":"REGSTR_VAL_ENUMPROPPAGES","features":[51]},{"name":"REGSTR_VAL_ENUMPROPPAGES_32","features":[51]},{"name":"REGSTR_VAL_ESDI","features":[51]},{"name":"REGSTR_VAL_EXISTS","features":[51]},{"name":"REGSTR_VAL_EXTMEM","features":[51]},{"name":"REGSTR_VAL_FAULT_LOGFILE","features":[51]},{"name":"REGSTR_VAL_FIFODEPTH","features":[51]},{"name":"REGSTR_VAL_FILESHARING","features":[51]},{"name":"REGSTR_VAL_FIRSTINSTALLDATETIME","features":[51]},{"name":"REGSTR_VAL_FIRSTNETDRIVE","features":[51]},{"name":"REGSTR_VAL_FLOP","features":[51]},{"name":"REGSTR_VAL_FLOPPY","features":[51]},{"name":"REGSTR_VAL_FONTSIZE","features":[51]},{"name":"REGSTR_VAL_FORCECL","features":[51]},{"name":"REGSTR_VAL_FORCEDCONFIG","features":[51]},{"name":"REGSTR_VAL_FORCEFIFO","features":[51]},{"name":"REGSTR_VAL_FORCELOAD","features":[51]},{"name":"REGSTR_VAL_FORCEPMIO","features":[51]},{"name":"REGSTR_VAL_FORCEREBOOT","features":[51]},{"name":"REGSTR_VAL_FORCERMIO","features":[51]},{"name":"REGSTR_VAL_FREESPACERATIO","features":[51]},{"name":"REGSTR_VAL_FRIENDLYNAME","features":[51]},{"name":"REGSTR_VAL_FSFILTERCLASS","features":[51]},{"name":"REGSTR_VAL_FULLTRACE","features":[51]},{"name":"REGSTR_VAL_FUNCDESC","features":[51]},{"name":"REGSTR_VAL_GAPTIME","features":[51]},{"name":"REGSTR_VAL_GRB","features":[51]},{"name":"REGSTR_VAL_HARDWAREID","features":[51]},{"name":"REGSTR_VAL_HIDESHAREPWDS","features":[51]},{"name":"REGSTR_VAL_HRES","features":[51]},{"name":"REGSTR_VAL_HWDETECT","features":[51]},{"name":"REGSTR_VAL_HWMECHANISM","features":[51]},{"name":"REGSTR_VAL_HWREV","features":[51]},{"name":"REGSTR_VAL_ID","features":[51]},{"name":"REGSTR_VAL_IDE_FORCE_SERIALIZE","features":[51]},{"name":"REGSTR_VAL_IDE_NO_SERIALIZE","features":[51]},{"name":"REGSTR_VAL_INFNAME","features":[51]},{"name":"REGSTR_VAL_INFPATH","features":[51]},{"name":"REGSTR_VAL_INFSECTION","features":[51]},{"name":"REGSTR_VAL_INFSECTIONEXT","features":[51]},{"name":"REGSTR_VAL_INHIBITRESULTS","features":[51]},{"name":"REGSTR_VAL_INSICON","features":[51]},{"name":"REGSTR_VAL_INSTALLER","features":[51]},{"name":"REGSTR_VAL_INSTALLER_32","features":[51]},{"name":"REGSTR_VAL_INSTALLTYPE","features":[51]},{"name":"REGSTR_VAL_INT13","features":[51]},{"name":"REGSTR_VAL_ISAPNP","features":[51]},{"name":"REGSTR_VAL_ISAPNP_RDP_OVERRIDE","features":[51]},{"name":"REGSTR_VAL_JOYCALLOUT","features":[51]},{"name":"REGSTR_VAL_JOYNCONFIG","features":[51]},{"name":"REGSTR_VAL_JOYNOEMCALLOUT","features":[51]},{"name":"REGSTR_VAL_JOYNOEMNAME","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL1","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL10","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL11","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL12","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL2","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL3","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL4","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL5","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL6","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL7","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL8","features":[51]},{"name":"REGSTR_VAL_JOYOEMCAL9","features":[51]},{"name":"REGSTR_VAL_JOYOEMCALCAP","features":[51]},{"name":"REGSTR_VAL_JOYOEMCALLOUT","features":[51]},{"name":"REGSTR_VAL_JOYOEMCALWINCAP","features":[51]},{"name":"REGSTR_VAL_JOYOEMDATA","features":[51]},{"name":"REGSTR_VAL_JOYOEMNAME","features":[51]},{"name":"REGSTR_VAL_JOYOEMPOVLABEL","features":[51]},{"name":"REGSTR_VAL_JOYOEMRLABEL","features":[51]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONCAP","features":[51]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONDESC","features":[51]},{"name":"REGSTR_VAL_JOYOEMTESTMOVECAP","features":[51]},{"name":"REGSTR_VAL_JOYOEMTESTMOVEDESC","features":[51]},{"name":"REGSTR_VAL_JOYOEMTESTWINCAP","features":[51]},{"name":"REGSTR_VAL_JOYOEMULABEL","features":[51]},{"name":"REGSTR_VAL_JOYOEMVLABEL","features":[51]},{"name":"REGSTR_VAL_JOYOEMXYLABEL","features":[51]},{"name":"REGSTR_VAL_JOYOEMZLABEL","features":[51]},{"name":"REGSTR_VAL_JOYUSERVALUES","features":[51]},{"name":"REGSTR_VAL_LASTALIVEBT","features":[51]},{"name":"REGSTR_VAL_LASTALIVEINTERVAL","features":[51]},{"name":"REGSTR_VAL_LASTALIVEPMPOLICY","features":[51]},{"name":"REGSTR_VAL_LASTALIVESTAMP","features":[51]},{"name":"REGSTR_VAL_LASTALIVESTAMPFORCED","features":[51]},{"name":"REGSTR_VAL_LASTALIVESTAMPINTERVAL","features":[51]},{"name":"REGSTR_VAL_LASTALIVESTAMPPOLICYINTERVAL","features":[51]},{"name":"REGSTR_VAL_LASTALIVEUPTIME","features":[51]},{"name":"REGSTR_VAL_LASTBOOTPMDRVS","features":[51]},{"name":"REGSTR_VAL_LASTCOMPUTERNAME","features":[51]},{"name":"REGSTR_VAL_LASTPCIBUSNUM","features":[51]},{"name":"REGSTR_VAL_LAST_UPDATE_TIME","features":[51]},{"name":"REGSTR_VAL_LEGALNOTICECAPTION","features":[51]},{"name":"REGSTR_VAL_LEGALNOTICETEXT","features":[51]},{"name":"REGSTR_VAL_LICENSINGINFO","features":[51]},{"name":"REGSTR_VAL_LINKED","features":[51]},{"name":"REGSTR_VAL_LOADHI","features":[51]},{"name":"REGSTR_VAL_LOADRMDRIVERS","features":[51]},{"name":"REGSTR_VAL_LOCATION_INFORMATION","features":[51]},{"name":"REGSTR_VAL_LOCATION_INFORMATION_OVERRIDE","features":[51]},{"name":"REGSTR_VAL_LOWERFILTERS","features":[51]},{"name":"REGSTR_VAL_LOWER_FILTER_DEFAULT_LEVEL","features":[51]},{"name":"REGSTR_VAL_LOWER_FILTER_LEVELS","features":[51]},{"name":"REGSTR_VAL_MACHINETYPE","features":[51]},{"name":"REGSTR_VAL_MANUFACTURER","features":[51]},{"name":"REGSTR_VAL_MAP","features":[51]},{"name":"REGSTR_VAL_MATCHINGDEVID","features":[51]},{"name":"REGSTR_VAL_MAXCONNECTIONS","features":[51]},{"name":"REGSTR_VAL_MAXLIP","features":[51]},{"name":"REGSTR_VAL_MAXRES","features":[51]},{"name":"REGSTR_VAL_MAXRETRY","features":[51]},{"name":"REGSTR_VAL_MAX_HCID_LEN","features":[51]},{"name":"REGSTR_VAL_MEDIA","features":[51]},{"name":"REGSTR_VAL_MFG","features":[51]},{"name":"REGSTR_VAL_MF_FLAGS","features":[51]},{"name":"REGSTR_VAL_MINIPORT_STAT","features":[51]},{"name":"REGSTR_VAL_MINPWDLEN","features":[51]},{"name":"REGSTR_VAL_MINRETRY","features":[51]},{"name":"REGSTR_VAL_MODE","features":[51]},{"name":"REGSTR_VAL_MODEL","features":[51]},{"name":"REGSTR_VAL_MSDOSMODE","features":[51]},{"name":"REGSTR_VAL_MSDOSMODEDISCARD","features":[51]},{"name":"REGSTR_VAL_MUSTBEVALIDATED","features":[51]},{"name":"REGSTR_VAL_NAMECACHECOUNT","features":[51]},{"name":"REGSTR_VAL_NAMENUMERICTAIL","features":[51]},{"name":"REGSTR_VAL_NCP_BROWSEMASTER","features":[51]},{"name":"REGSTR_VAL_NCP_USEPEERBROWSING","features":[51]},{"name":"REGSTR_VAL_NCP_USESAP","features":[51]},{"name":"REGSTR_VAL_NDP","features":[51]},{"name":"REGSTR_VAL_NETCARD","features":[51]},{"name":"REGSTR_VAL_NETCLEAN","features":[51]},{"name":"REGSTR_VAL_NETOSTYPE","features":[51]},{"name":"REGSTR_VAL_NETSETUP_DISABLE","features":[51]},{"name":"REGSTR_VAL_NETSETUP_NOCONFIGPAGE","features":[51]},{"name":"REGSTR_VAL_NETSETUP_NOIDPAGE","features":[51]},{"name":"REGSTR_VAL_NETSETUP_NOSECURITYPAGE","features":[51]},{"name":"REGSTR_VAL_NOCMOSORFDPT","features":[51]},{"name":"REGSTR_VAL_NODISPLAYCLASS","features":[51]},{"name":"REGSTR_VAL_NOENTIRENETWORK","features":[51]},{"name":"REGSTR_VAL_NOFILESHARING","features":[51]},{"name":"REGSTR_VAL_NOFILESHARINGCTRL","features":[51]},{"name":"REGSTR_VAL_NOIDE","features":[51]},{"name":"REGSTR_VAL_NOINSTALLCLASS","features":[51]},{"name":"REGSTR_VAL_NONSTANDARD_ATAPI","features":[51]},{"name":"REGSTR_VAL_NOPRINTSHARING","features":[51]},{"name":"REGSTR_VAL_NOPRINTSHARINGCTRL","features":[51]},{"name":"REGSTR_VAL_NOUSECLASS","features":[51]},{"name":"REGSTR_VAL_NOWORKGROUPCONTENTS","features":[51]},{"name":"REGSTR_VAL_OLDMSDOSVER","features":[51]},{"name":"REGSTR_VAL_OLDWINDIR","features":[51]},{"name":"REGSTR_VAL_OPTIMIZESFN","features":[51]},{"name":"REGSTR_VAL_OPTIONS","features":[51]},{"name":"REGSTR_VAL_OPTORDER","features":[51]},{"name":"REGSTR_VAL_P1284MDL","features":[51]},{"name":"REGSTR_VAL_P1284MFG","features":[51]},{"name":"REGSTR_VAL_PATHCACHECOUNT","features":[51]},{"name":"REGSTR_VAL_PCCARD_POWER","features":[51]},{"name":"REGSTR_VAL_PCI","features":[51]},{"name":"REGSTR_VAL_PCIBIOSVER","features":[51]},{"name":"REGSTR_VAL_PCICIRQMAP","features":[51]},{"name":"REGSTR_VAL_PCICOPTIONS","features":[51]},{"name":"REGSTR_VAL_PCMCIA_ALLOC","features":[51]},{"name":"REGSTR_VAL_PCMCIA_ATAD","features":[51]},{"name":"REGSTR_VAL_PCMCIA_MEM","features":[51]},{"name":"REGSTR_VAL_PCMCIA_OPT","features":[51]},{"name":"REGSTR_VAL_PCMCIA_SIZ","features":[51]},{"name":"REGSTR_VAL_PCMTDRIVER","features":[51]},{"name":"REGSTR_VAL_PCSSDRIVER","features":[51]},{"name":"REGSTR_VAL_PHYSICALDEVICEOBJECT","features":[51]},{"name":"REGSTR_VAL_PMODE_INT13","features":[51]},{"name":"REGSTR_VAL_PNPBIOSVER","features":[51]},{"name":"REGSTR_VAL_PNPSTRUCOFFSET","features":[51]},{"name":"REGSTR_VAL_POLICY","features":[51]},{"name":"REGSTR_VAL_POLLING","features":[51]},{"name":"REGSTR_VAL_PORTNAME","features":[51]},{"name":"REGSTR_VAL_PORTSUBCLASS","features":[51]},{"name":"REGSTR_VAL_PREFREDIR","features":[51]},{"name":"REGSTR_VAL_PRESERVECASE","features":[51]},{"name":"REGSTR_VAL_PRESERVELONGNAMES","features":[51]},{"name":"REGSTR_VAL_PRINTERS_HIDETABS","features":[51]},{"name":"REGSTR_VAL_PRINTERS_MASK","features":[51]},{"name":"REGSTR_VAL_PRINTERS_NOADD","features":[51]},{"name":"REGSTR_VAL_PRINTERS_NODELETE","features":[51]},{"name":"REGSTR_VAL_PRINTSHARING","features":[51]},{"name":"REGSTR_VAL_PRIORITY","features":[51]},{"name":"REGSTR_VAL_PRIVATE","features":[51]},{"name":"REGSTR_VAL_PRIVATEFUNC","features":[51]},{"name":"REGSTR_VAL_PRIVATEPROBLEM","features":[51]},{"name":"REGSTR_VAL_PRODUCTID","features":[51]},{"name":"REGSTR_VAL_PRODUCTTYPE","features":[51]},{"name":"REGSTR_VAL_PROFILEFLAGS","features":[51]},{"name":"REGSTR_VAL_PROPERTIES","features":[51]},{"name":"REGSTR_VAL_PROTINIPATH","features":[51]},{"name":"REGSTR_VAL_PROVIDER_NAME","features":[51]},{"name":"REGSTR_VAL_PWDEXPIRATION","features":[51]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEORDER","features":[51]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWD","features":[51]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWDHWND","features":[51]},{"name":"REGSTR_VAL_PWDPROVIDER_DESC","features":[51]},{"name":"REGSTR_VAL_PWDPROVIDER_GETPWDSTATUS","features":[51]},{"name":"REGSTR_VAL_PWDPROVIDER_ISNP","features":[51]},{"name":"REGSTR_VAL_PWDPROVIDER_PATH","features":[51]},{"name":"REGSTR_VAL_RDINTTHRESHOLD","features":[51]},{"name":"REGSTR_VAL_READAHEADTHRESHOLD","features":[51]},{"name":"REGSTR_VAL_READCACHING","features":[51]},{"name":"REGSTR_VAL_REALNETSTART","features":[51]},{"name":"REGSTR_VAL_REASONCODE","features":[51]},{"name":"REGSTR_VAL_REFRESHRATE","features":[51]},{"name":"REGSTR_VAL_REGITEMDELETEMESSAGE","features":[51]},{"name":"REGSTR_VAL_REGORGANIZATION","features":[51]},{"name":"REGSTR_VAL_REGOWNER","features":[51]},{"name":"REGSTR_VAL_REINSTALL_DEVICEINSTANCEIDS","features":[51]},{"name":"REGSTR_VAL_REINSTALL_DISPLAYNAME","features":[51]},{"name":"REGSTR_VAL_REINSTALL_STRING","features":[51]},{"name":"REGSTR_VAL_REMOTE_PATH","features":[51]},{"name":"REGSTR_VAL_REMOVABLE","features":[51]},{"name":"REGSTR_VAL_REMOVAL_POLICY","features":[51]},{"name":"REGSTR_VAL_REMOVEROMOKAY","features":[51]},{"name":"REGSTR_VAL_REMOVEROMOKAYFUNC","features":[51]},{"name":"REGSTR_VAL_RESERVED_DEVNODE","features":[51]},{"name":"REGSTR_VAL_RESOLUTION","features":[51]},{"name":"REGSTR_VAL_RESOURCES","features":[51]},{"name":"REGSTR_VAL_RESOURCE_MAP","features":[51]},{"name":"REGSTR_VAL_RESOURCE_PICKER_EXCEPTIONS","features":[51]},{"name":"REGSTR_VAL_RESOURCE_PICKER_TAGS","features":[51]},{"name":"REGSTR_VAL_RESTRICTRUN","features":[51]},{"name":"REGSTR_VAL_RESUMERESET","features":[51]},{"name":"REGSTR_VAL_REVISION","features":[51]},{"name":"REGSTR_VAL_REVLEVEL","features":[51]},{"name":"REGSTR_VAL_ROOT_DEVNODE","features":[51]},{"name":"REGSTR_VAL_RUNLOGINSCRIPT","features":[51]},{"name":"REGSTR_VAL_SCANNER","features":[51]},{"name":"REGSTR_VAL_SCAN_ONLY_FIRST","features":[51]},{"name":"REGSTR_VAL_SCSI","features":[51]},{"name":"REGSTR_VAL_SCSILUN","features":[51]},{"name":"REGSTR_VAL_SCSITID","features":[51]},{"name":"REGSTR_VAL_SEARCHMODE","features":[51]},{"name":"REGSTR_VAL_SEARCHOPTIONS","features":[51]},{"name":"REGSTR_VAL_SECCPL_NOADMINPAGE","features":[51]},{"name":"REGSTR_VAL_SECCPL_NOPROFILEPAGE","features":[51]},{"name":"REGSTR_VAL_SECCPL_NOPWDPAGE","features":[51]},{"name":"REGSTR_VAL_SECCPL_NOSECCPL","features":[51]},{"name":"REGSTR_VAL_SERVICE","features":[51]},{"name":"REGSTR_VAL_SETUPFLAGS","features":[51]},{"name":"REGSTR_VAL_SETUPMACHINETYPE","features":[51]},{"name":"REGSTR_VAL_SETUPN","features":[51]},{"name":"REGSTR_VAL_SETUPNPATH","features":[51]},{"name":"REGSTR_VAL_SETUPPROGRAMRAN","features":[51]},{"name":"REGSTR_VAL_SHARES_FLAGS","features":[51]},{"name":"REGSTR_VAL_SHARES_PATH","features":[51]},{"name":"REGSTR_VAL_SHARES_REMARK","features":[51]},{"name":"REGSTR_VAL_SHARES_RO_PASS","features":[51]},{"name":"REGSTR_VAL_SHARES_RW_PASS","features":[51]},{"name":"REGSTR_VAL_SHARES_TYPE","features":[51]},{"name":"REGSTR_VAL_SHARE_IRQ","features":[51]},{"name":"REGSTR_VAL_SHELLVERSION","features":[51]},{"name":"REGSTR_VAL_SHOWDOTS","features":[51]},{"name":"REGSTR_VAL_SHOWREASONUI","features":[51]},{"name":"REGSTR_VAL_SHUTDOWNREASON","features":[51]},{"name":"REGSTR_VAL_SHUTDOWNREASON_CODE","features":[51]},{"name":"REGSTR_VAL_SHUTDOWNREASON_COMMENT","features":[51]},{"name":"REGSTR_VAL_SHUTDOWNREASON_PROCESS","features":[51]},{"name":"REGSTR_VAL_SHUTDOWNREASON_USERNAME","features":[51]},{"name":"REGSTR_VAL_SHUTDOWN_FLAGS","features":[51]},{"name":"REGSTR_VAL_SHUTDOWN_IGNORE_PREDEFINED","features":[51]},{"name":"REGSTR_VAL_SHUTDOWN_STATE_SNAPSHOT","features":[51]},{"name":"REGSTR_VAL_SILENTINSTALL","features":[51]},{"name":"REGSTR_VAL_SLSUPPORT","features":[51]},{"name":"REGSTR_VAL_SOFTCOMPATMODE","features":[51]},{"name":"REGSTR_VAL_SRCPATH","features":[51]},{"name":"REGSTR_VAL_SRVNAMECACHE","features":[51]},{"name":"REGSTR_VAL_SRVNAMECACHECOUNT","features":[51]},{"name":"REGSTR_VAL_SRVNAMECACHENETPROV","features":[51]},{"name":"REGSTR_VAL_START_ON_BOOT","features":[51]},{"name":"REGSTR_VAL_STAT","features":[51]},{"name":"REGSTR_VAL_STATICDRIVE","features":[51]},{"name":"REGSTR_VAL_STATICVXD","features":[51]},{"name":"REGSTR_VAL_STDDOSOPTION","features":[51]},{"name":"REGSTR_VAL_SUBMODEL","features":[51]},{"name":"REGSTR_VAL_SUPPORTBURST","features":[51]},{"name":"REGSTR_VAL_SUPPORTLFN","features":[51]},{"name":"REGSTR_VAL_SUPPORTTUNNELLING","features":[51]},{"name":"REGSTR_VAL_SYMBOLIC_LINK","features":[51]},{"name":"REGSTR_VAL_SYNCDATAXFER","features":[51]},{"name":"REGSTR_VAL_SYSDM","features":[51]},{"name":"REGSTR_VAL_SYSDMFUNC","features":[51]},{"name":"REGSTR_VAL_SYSTEMCPL_NOCONFIGPAGE","features":[51]},{"name":"REGSTR_VAL_SYSTEMCPL_NODEVMGRPAGE","features":[51]},{"name":"REGSTR_VAL_SYSTEMCPL_NOFILESYSPAGE","features":[51]},{"name":"REGSTR_VAL_SYSTEMCPL_NOVIRTMEMPAGE","features":[51]},{"name":"REGSTR_VAL_SYSTEMROOT","features":[51]},{"name":"REGSTR_VAL_SYSTRAYBATFLAGS","features":[51]},{"name":"REGSTR_VAL_SYSTRAYPCCARDFLAGS","features":[51]},{"name":"REGSTR_VAL_SYSTRAYSVCS","features":[51]},{"name":"REGSTR_VAL_TABLE_STAT","features":[51]},{"name":"REGSTR_VAL_TAPE","features":[51]},{"name":"REGSTR_VAL_TRANSITION","features":[51]},{"name":"REGSTR_VAL_TRANSPORT","features":[51]},{"name":"REGSTR_VAL_TZACTBIAS","features":[51]},{"name":"REGSTR_VAL_TZBIAS","features":[51]},{"name":"REGSTR_VAL_TZDLTBIAS","features":[51]},{"name":"REGSTR_VAL_TZDLTFLAG","features":[51]},{"name":"REGSTR_VAL_TZDLTNAME","features":[51]},{"name":"REGSTR_VAL_TZDLTSTART","features":[51]},{"name":"REGSTR_VAL_TZNOAUTOTIME","features":[51]},{"name":"REGSTR_VAL_TZNOCHANGEEND","features":[51]},{"name":"REGSTR_VAL_TZNOCHANGESTART","features":[51]},{"name":"REGSTR_VAL_TZSTDBIAS","features":[51]},{"name":"REGSTR_VAL_TZSTDNAME","features":[51]},{"name":"REGSTR_VAL_TZSTDSTART","features":[51]},{"name":"REGSTR_VAL_UI_NUMBER","features":[51]},{"name":"REGSTR_VAL_UI_NUMBER_DESC_FORMAT","features":[51]},{"name":"REGSTR_VAL_UNDOCK_WITHOUT_LOGON","features":[51]},{"name":"REGSTR_VAL_UNINSTALLER_COMMANDLINE","features":[51]},{"name":"REGSTR_VAL_UNINSTALLER_DISPLAYNAME","features":[51]},{"name":"REGSTR_VAL_UPGRADE","features":[51]},{"name":"REGSTR_VAL_UPPERFILTERS","features":[51]},{"name":"REGSTR_VAL_UPPER_FILTER_DEFAULT_LEVEL","features":[51]},{"name":"REGSTR_VAL_UPPER_FILTER_LEVELS","features":[51]},{"name":"REGSTR_VAL_USERSETTINGS","features":[51]},{"name":"REGSTR_VAL_USER_NAME","features":[51]},{"name":"REGSTR_VAL_USRDRVLET","features":[51]},{"name":"REGSTR_VAL_VDD","features":[51]},{"name":"REGSTR_VAL_VER","features":[51]},{"name":"REGSTR_VAL_VERIFYKEY","features":[51]},{"name":"REGSTR_VAL_VIRTUALHDIRQ","features":[51]},{"name":"REGSTR_VAL_VOLIDLETIMEOUT","features":[51]},{"name":"REGSTR_VAL_VPOWERDFLAGS","features":[51]},{"name":"REGSTR_VAL_VRES","features":[51]},{"name":"REGSTR_VAL_VXDGROUPS","features":[51]},{"name":"REGSTR_VAL_WAITFORUNDOCK","features":[51]},{"name":"REGSTR_VAL_WAITFORUNDOCKFUNC","features":[51]},{"name":"REGSTR_VAL_WIN31FILESYSTEM","features":[51]},{"name":"REGSTR_VAL_WIN31PROVIDER","features":[51]},{"name":"REGSTR_VAL_WINBOOTDIR","features":[51]},{"name":"REGSTR_VAL_WINCP","features":[51]},{"name":"REGSTR_VAL_WINDIR","features":[51]},{"name":"REGSTR_VAL_WINOLDAPP_DISABLED","features":[51]},{"name":"REGSTR_VAL_WINOLDAPP_NOREALMODE","features":[51]},{"name":"REGSTR_VAL_WORKGROUP","features":[51]},{"name":"REGSTR_VAL_WRAPPER","features":[51]},{"name":"REGSTR_VAL_WRINTTHRESHOLD","features":[51]},{"name":"REGSTR_VAL_WRKGRP_FORCEMAPPING","features":[51]},{"name":"REGSTR_VAL_WRKGRP_REQUIRED","features":[51]},{"name":"REG_BINARY","features":[51]},{"name":"REG_CREATED_NEW_KEY","features":[51]},{"name":"REG_CREATE_KEY_DISPOSITION","features":[51]},{"name":"REG_DWORD","features":[51]},{"name":"REG_DWORD_BIG_ENDIAN","features":[51]},{"name":"REG_DWORD_LITTLE_ENDIAN","features":[51]},{"name":"REG_EXPAND_SZ","features":[51]},{"name":"REG_FORCE_RESTORE","features":[51]},{"name":"REG_FULL_RESOURCE_DESCRIPTOR","features":[51]},{"name":"REG_KEY_INSTDEV","features":[51]},{"name":"REG_LATEST_FORMAT","features":[51]},{"name":"REG_LINK","features":[51]},{"name":"REG_MUI_STRING_TRUNCATE","features":[51]},{"name":"REG_MULTI_SZ","features":[51]},{"name":"REG_NONE","features":[51]},{"name":"REG_NOTIFY_CHANGE_ATTRIBUTES","features":[51]},{"name":"REG_NOTIFY_CHANGE_LAST_SET","features":[51]},{"name":"REG_NOTIFY_CHANGE_NAME","features":[51]},{"name":"REG_NOTIFY_CHANGE_SECURITY","features":[51]},{"name":"REG_NOTIFY_FILTER","features":[51]},{"name":"REG_NOTIFY_THREAD_AGNOSTIC","features":[51]},{"name":"REG_NO_COMPRESSION","features":[51]},{"name":"REG_OPENED_EXISTING_KEY","features":[51]},{"name":"REG_OPEN_CREATE_OPTIONS","features":[51]},{"name":"REG_OPTION_BACKUP_RESTORE","features":[51]},{"name":"REG_OPTION_CREATE_LINK","features":[51]},{"name":"REG_OPTION_DONT_VIRTUALIZE","features":[51]},{"name":"REG_OPTION_NON_VOLATILE","features":[51]},{"name":"REG_OPTION_OPEN_LINK","features":[51]},{"name":"REG_OPTION_RESERVED","features":[51]},{"name":"REG_OPTION_VOLATILE","features":[51]},{"name":"REG_PROCESS_APPKEY","features":[51]},{"name":"REG_PROVIDER","features":[51]},{"name":"REG_QWORD","features":[51]},{"name":"REG_QWORD_LITTLE_ENDIAN","features":[51]},{"name":"REG_RESOURCE_LIST","features":[51]},{"name":"REG_RESOURCE_REQUIREMENTS_LIST","features":[51]},{"name":"REG_RESTORE_KEY_FLAGS","features":[51]},{"name":"REG_ROUTINE_FLAGS","features":[51]},{"name":"REG_SAM_FLAGS","features":[51]},{"name":"REG_SAVE_FORMAT","features":[51]},{"name":"REG_SECURE_CONNECTION","features":[51]},{"name":"REG_STANDARD_FORMAT","features":[51]},{"name":"REG_SZ","features":[51]},{"name":"REG_USE_CURRENT_SECURITY_CONTEXT","features":[51]},{"name":"REG_VALUE_TYPE","features":[51]},{"name":"REG_WHOLE_HIVE_VOLATILE","features":[51]},{"name":"RRF_NOEXPAND","features":[51]},{"name":"RRF_RT_ANY","features":[51]},{"name":"RRF_RT_DWORD","features":[51]},{"name":"RRF_RT_QWORD","features":[51]},{"name":"RRF_RT_REG_BINARY","features":[51]},{"name":"RRF_RT_REG_DWORD","features":[51]},{"name":"RRF_RT_REG_EXPAND_SZ","features":[51]},{"name":"RRF_RT_REG_MULTI_SZ","features":[51]},{"name":"RRF_RT_REG_NONE","features":[51]},{"name":"RRF_RT_REG_QWORD","features":[51]},{"name":"RRF_RT_REG_SZ","features":[51]},{"name":"RRF_SUBKEY_WOW6432KEY","features":[51]},{"name":"RRF_SUBKEY_WOW6464KEY","features":[51]},{"name":"RRF_WOW64_MASK","features":[51]},{"name":"RRF_ZEROONFAILURE","features":[51]},{"name":"RegCloseKey","features":[3,51]},{"name":"RegConnectRegistryA","features":[3,51]},{"name":"RegConnectRegistryExA","features":[51]},{"name":"RegConnectRegistryExW","features":[51]},{"name":"RegConnectRegistryW","features":[3,51]},{"name":"RegCopyTreeA","features":[3,51]},{"name":"RegCopyTreeW","features":[3,51]},{"name":"RegCreateKeyA","features":[3,51]},{"name":"RegCreateKeyExA","features":[3,6,51]},{"name":"RegCreateKeyExW","features":[3,6,51]},{"name":"RegCreateKeyTransactedA","features":[3,6,51]},{"name":"RegCreateKeyTransactedW","features":[3,6,51]},{"name":"RegCreateKeyW","features":[3,51]},{"name":"RegDeleteKeyA","features":[3,51]},{"name":"RegDeleteKeyExA","features":[3,51]},{"name":"RegDeleteKeyExW","features":[3,51]},{"name":"RegDeleteKeyTransactedA","features":[3,51]},{"name":"RegDeleteKeyTransactedW","features":[3,51]},{"name":"RegDeleteKeyValueA","features":[3,51]},{"name":"RegDeleteKeyValueW","features":[3,51]},{"name":"RegDeleteKeyW","features":[3,51]},{"name":"RegDeleteTreeA","features":[3,51]},{"name":"RegDeleteTreeW","features":[3,51]},{"name":"RegDeleteValueA","features":[3,51]},{"name":"RegDeleteValueW","features":[3,51]},{"name":"RegDisablePredefinedCache","features":[3,51]},{"name":"RegDisablePredefinedCacheEx","features":[3,51]},{"name":"RegDisableReflectionKey","features":[3,51]},{"name":"RegEnableReflectionKey","features":[3,51]},{"name":"RegEnumKeyA","features":[3,51]},{"name":"RegEnumKeyExA","features":[3,51]},{"name":"RegEnumKeyExW","features":[3,51]},{"name":"RegEnumKeyW","features":[3,51]},{"name":"RegEnumValueA","features":[3,51]},{"name":"RegEnumValueW","features":[3,51]},{"name":"RegFlushKey","features":[3,51]},{"name":"RegGetKeySecurity","features":[3,6,51]},{"name":"RegGetValueA","features":[3,51]},{"name":"RegGetValueW","features":[3,51]},{"name":"RegLoadAppKeyA","features":[3,51]},{"name":"RegLoadAppKeyW","features":[3,51]},{"name":"RegLoadKeyA","features":[3,51]},{"name":"RegLoadKeyW","features":[3,51]},{"name":"RegLoadMUIStringA","features":[3,51]},{"name":"RegLoadMUIStringW","features":[3,51]},{"name":"RegNotifyChangeKeyValue","features":[3,51]},{"name":"RegOpenCurrentUser","features":[3,51]},{"name":"RegOpenKeyA","features":[3,51]},{"name":"RegOpenKeyExA","features":[3,51]},{"name":"RegOpenKeyExW","features":[3,51]},{"name":"RegOpenKeyTransactedA","features":[3,51]},{"name":"RegOpenKeyTransactedW","features":[3,51]},{"name":"RegOpenKeyW","features":[3,51]},{"name":"RegOpenUserClassesRoot","features":[3,51]},{"name":"RegOverridePredefKey","features":[3,51]},{"name":"RegQueryInfoKeyA","features":[3,51]},{"name":"RegQueryInfoKeyW","features":[3,51]},{"name":"RegQueryMultipleValuesA","features":[3,51]},{"name":"RegQueryMultipleValuesW","features":[3,51]},{"name":"RegQueryReflectionKey","features":[3,51]},{"name":"RegQueryValueA","features":[3,51]},{"name":"RegQueryValueExA","features":[3,51]},{"name":"RegQueryValueExW","features":[3,51]},{"name":"RegQueryValueW","features":[3,51]},{"name":"RegRenameKey","features":[3,51]},{"name":"RegReplaceKeyA","features":[3,51]},{"name":"RegReplaceKeyW","features":[3,51]},{"name":"RegRestoreKeyA","features":[3,51]},{"name":"RegRestoreKeyW","features":[3,51]},{"name":"RegSaveKeyA","features":[3,6,51]},{"name":"RegSaveKeyExA","features":[3,6,51]},{"name":"RegSaveKeyExW","features":[3,6,51]},{"name":"RegSaveKeyW","features":[3,6,51]},{"name":"RegSetKeySecurity","features":[3,6,51]},{"name":"RegSetKeyValueA","features":[3,51]},{"name":"RegSetKeyValueW","features":[3,51]},{"name":"RegSetValueA","features":[3,51]},{"name":"RegSetValueExA","features":[3,51]},{"name":"RegSetValueExW","features":[3,51]},{"name":"RegSetValueW","features":[3,51]},{"name":"RegUnLoadKeyA","features":[3,51]},{"name":"RegUnLoadKeyW","features":[3,51]},{"name":"SUF_BATCHINF","features":[51]},{"name":"SUF_CLEAN","features":[51]},{"name":"SUF_EXPRESS","features":[51]},{"name":"SUF_FIRSTTIME","features":[51]},{"name":"SUF_INSETUP","features":[51]},{"name":"SUF_NETHDBOOT","features":[51]},{"name":"SUF_NETRPLBOOT","features":[51]},{"name":"SUF_NETSETUP","features":[51]},{"name":"SUF_SBSCOPYOK","features":[51]},{"name":"VALENTA","features":[51]},{"name":"VALENTW","features":[51]},{"name":"VPDF_DISABLEPWRMGMT","features":[51]},{"name":"VPDF_DISABLEPWRSTATUSPOLL","features":[51]},{"name":"VPDF_DISABLERINGRESUME","features":[51]},{"name":"VPDF_FORCEAPM10MODE","features":[51]},{"name":"VPDF_SHOWMULTIBATT","features":[51]},{"name":"VPDF_SKIPINTELSLCHECK","features":[51]},{"name":"val_context","features":[51]}],"599":[{"name":"AAAccountingData","features":[106]},{"name":"AAAccountingDataType","features":[106]},{"name":"AAAuthSchemes","features":[106]},{"name":"AATrustClassID","features":[106]},{"name":"AA_AUTH_ANY","features":[106]},{"name":"AA_AUTH_BASIC","features":[106]},{"name":"AA_AUTH_CONID","features":[106]},{"name":"AA_AUTH_COOKIE","features":[106]},{"name":"AA_AUTH_DIGEST","features":[106]},{"name":"AA_AUTH_LOGGEDONCREDENTIALS","features":[106]},{"name":"AA_AUTH_MAX","features":[106]},{"name":"AA_AUTH_MIN","features":[106]},{"name":"AA_AUTH_NEGOTIATE","features":[106]},{"name":"AA_AUTH_NTLM","features":[106]},{"name":"AA_AUTH_ORGID","features":[106]},{"name":"AA_AUTH_SC","features":[106]},{"name":"AA_AUTH_SSPI_NTLM","features":[106]},{"name":"AA_MAIN_SESSION_CLOSED","features":[106]},{"name":"AA_MAIN_SESSION_CREATION","features":[106]},{"name":"AA_SUB_SESSION_CLOSED","features":[106]},{"name":"AA_SUB_SESSION_CREATION","features":[106]},{"name":"AA_TRUSTEDUSER_TRUSTEDCLIENT","features":[106]},{"name":"AA_TRUSTEDUSER_UNTRUSTEDCLIENT","features":[106]},{"name":"AA_UNTRUSTED","features":[106]},{"name":"ACQUIRE_TARGET_LOCK_TIMEOUT","features":[106]},{"name":"ADsTSUserEx","features":[106]},{"name":"AE_CURRENT_POSITION","features":[106]},{"name":"AE_POSITION_FLAGS","features":[106]},{"name":"AllowOnlySDRServers","features":[106]},{"name":"BITMAP_RENDERER_STATISTICS","features":[106]},{"name":"CHANNEL_BUFFER_SIZE","features":[106]},{"name":"CHANNEL_CHUNK_LENGTH","features":[106]},{"name":"CHANNEL_DEF","features":[106]},{"name":"CHANNEL_ENTRY_POINTS","features":[106]},{"name":"CHANNEL_EVENT_CONNECTED","features":[106]},{"name":"CHANNEL_EVENT_DATA_RECEIVED","features":[106]},{"name":"CHANNEL_EVENT_DISCONNECTED","features":[106]},{"name":"CHANNEL_EVENT_INITIALIZED","features":[106]},{"name":"CHANNEL_EVENT_TERMINATED","features":[106]},{"name":"CHANNEL_EVENT_V1_CONNECTED","features":[106]},{"name":"CHANNEL_EVENT_WRITE_CANCELLED","features":[106]},{"name":"CHANNEL_EVENT_WRITE_COMPLETE","features":[106]},{"name":"CHANNEL_FLAG_FAIL","features":[106]},{"name":"CHANNEL_FLAG_FIRST","features":[106]},{"name":"CHANNEL_FLAG_LAST","features":[106]},{"name":"CHANNEL_FLAG_MIDDLE","features":[106]},{"name":"CHANNEL_MAX_COUNT","features":[106]},{"name":"CHANNEL_NAME_LEN","features":[106]},{"name":"CHANNEL_OPTION_COMPRESS","features":[106]},{"name":"CHANNEL_OPTION_COMPRESS_RDP","features":[106]},{"name":"CHANNEL_OPTION_ENCRYPT_CS","features":[106]},{"name":"CHANNEL_OPTION_ENCRYPT_RDP","features":[106]},{"name":"CHANNEL_OPTION_ENCRYPT_SC","features":[106]},{"name":"CHANNEL_OPTION_INITIALIZED","features":[106]},{"name":"CHANNEL_OPTION_PRI_HIGH","features":[106]},{"name":"CHANNEL_OPTION_PRI_LOW","features":[106]},{"name":"CHANNEL_OPTION_PRI_MED","features":[106]},{"name":"CHANNEL_OPTION_REMOTE_CONTROL_PERSISTENT","features":[106]},{"name":"CHANNEL_OPTION_SHOW_PROTOCOL","features":[106]},{"name":"CHANNEL_PDU_HEADER","features":[106]},{"name":"CHANNEL_RC_ALREADY_CONNECTED","features":[106]},{"name":"CHANNEL_RC_ALREADY_INITIALIZED","features":[106]},{"name":"CHANNEL_RC_ALREADY_OPEN","features":[106]},{"name":"CHANNEL_RC_BAD_CHANNEL","features":[106]},{"name":"CHANNEL_RC_BAD_CHANNEL_HANDLE","features":[106]},{"name":"CHANNEL_RC_BAD_INIT_HANDLE","features":[106]},{"name":"CHANNEL_RC_BAD_PROC","features":[106]},{"name":"CHANNEL_RC_INITIALIZATION_ERROR","features":[106]},{"name":"CHANNEL_RC_INVALID_INSTANCE","features":[106]},{"name":"CHANNEL_RC_NOT_CONNECTED","features":[106]},{"name":"CHANNEL_RC_NOT_INITIALIZED","features":[106]},{"name":"CHANNEL_RC_NOT_IN_VIRTUALCHANNELENTRY","features":[106]},{"name":"CHANNEL_RC_NOT_OPEN","features":[106]},{"name":"CHANNEL_RC_NO_BUFFER","features":[106]},{"name":"CHANNEL_RC_NO_MEMORY","features":[106]},{"name":"CHANNEL_RC_NULL_DATA","features":[106]},{"name":"CHANNEL_RC_OK","features":[106]},{"name":"CHANNEL_RC_TOO_MANY_CHANNELS","features":[106]},{"name":"CHANNEL_RC_UNKNOWN_CHANNEL_NAME","features":[106]},{"name":"CHANNEL_RC_UNSUPPORTED_VERSION","features":[106]},{"name":"CHANNEL_RC_ZERO_LENGTH","features":[106]},{"name":"CLIENTADDRESS_LENGTH","features":[106]},{"name":"CLIENTNAME_LENGTH","features":[106]},{"name":"CLIENT_DISPLAY","features":[106]},{"name":"CLIENT_MESSAGE_CONNECTION_ERROR","features":[106]},{"name":"CLIENT_MESSAGE_CONNECTION_INVALID","features":[106]},{"name":"CLIENT_MESSAGE_CONNECTION_STATUS","features":[106]},{"name":"CLIENT_MESSAGE_TYPE","features":[106]},{"name":"CONNECTION_CHANGE_NOTIFICATION","features":[106]},{"name":"CONNECTION_PROPERTY_CURSOR_BLINK_DISABLED","features":[106]},{"name":"CONNECTION_PROPERTY_IDLE_TIME_WARNING","features":[106]},{"name":"CONNECTION_REQUEST_CANCELLED","features":[106]},{"name":"CONNECTION_REQUEST_FAILED","features":[106]},{"name":"CONNECTION_REQUEST_INVALID","features":[106]},{"name":"CONNECTION_REQUEST_LB_COMPLETED","features":[106]},{"name":"CONNECTION_REQUEST_ORCH_COMPLETED","features":[106]},{"name":"CONNECTION_REQUEST_PENDING","features":[106]},{"name":"CONNECTION_REQUEST_QUERY_PL_COMPLETED","features":[106]},{"name":"CONNECTION_REQUEST_SUCCEEDED","features":[106]},{"name":"CONNECTION_REQUEST_TIMEDOUT","features":[106]},{"name":"ClipboardRedirectionDisabled","features":[106]},{"name":"DISPID_AX_ADMINMESSAGERECEIVED","features":[106]},{"name":"DISPID_AX_AUTORECONNECTED","features":[106]},{"name":"DISPID_AX_AUTORECONNECTING","features":[106]},{"name":"DISPID_AX_CONNECTED","features":[106]},{"name":"DISPID_AX_CONNECTING","features":[106]},{"name":"DISPID_AX_DIALOGDISMISSED","features":[106]},{"name":"DISPID_AX_DIALOGDISPLAYING","features":[106]},{"name":"DISPID_AX_DISCONNECTED","features":[106]},{"name":"DISPID_AX_KEYCOMBINATIONPRESSED","features":[106]},{"name":"DISPID_AX_LOGINCOMPLETED","features":[106]},{"name":"DISPID_AX_NETWORKSTATUSCHANGED","features":[106]},{"name":"DISPID_AX_REMOTEDESKTOPSIZECHANGED","features":[106]},{"name":"DISPID_AX_STATUSCHANGED","features":[106]},{"name":"DISPID_AX_TOUCHPOINTERCURSORMOVED","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_APPLY_SETTINGS","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_ATTACH_EVENT","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_CONNECT","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DELETE_SAVED_CREDENTIALS","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DETACH_EVENT","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DISCONNECT","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_EXECUTE_REMOTE_ACTION","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_RDPPROPERTY","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_SNAPSHOT","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RECONNECT","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RESUME_SCREEN_UPDATES","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RETRIEVE_SETTINGS","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SET_RDPPROPERTY","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SUSPEND_SCREEN_UPDATES","features":[106]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_UPDATE_SESSION_DISPLAYSETTINGS","features":[106]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_ACTIONS","features":[106]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_SETTINGS","features":[106]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_ENABLED","features":[106]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_EVENTSENABLED","features":[106]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_POINTERSPEED","features":[106]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCH_POINTER","features":[106]},{"name":"DOMAIN_LENGTH","features":[106]},{"name":"DisableAllRedirections","features":[106]},{"name":"DriveRedirectionDisabled","features":[106]},{"name":"EnableAllRedirections","features":[106]},{"name":"FARM","features":[106]},{"name":"FORCE_REJOIN","features":[106]},{"name":"FORCE_REJOIN_IN_CLUSTERMODE","features":[106]},{"name":"IADsTSUserEx","features":[106]},{"name":"IAudioDeviceEndpoint","features":[106]},{"name":"IAudioEndpoint","features":[106]},{"name":"IAudioEndpointControl","features":[106]},{"name":"IAudioEndpointRT","features":[106]},{"name":"IAudioInputEndpointRT","features":[106]},{"name":"IAudioOutputEndpointRT","features":[106]},{"name":"IRemoteDesktopClient","features":[106]},{"name":"IRemoteDesktopClientActions","features":[106]},{"name":"IRemoteDesktopClientSettings","features":[106]},{"name":"IRemoteDesktopClientTouchPointer","features":[106]},{"name":"IRemoteSystemAdditionalInfoProvider","features":[106]},{"name":"ITSGAccountingEngine","features":[106]},{"name":"ITSGAuthenticateUserSink","features":[106]},{"name":"ITSGAuthenticationEngine","features":[106]},{"name":"ITSGAuthorizeConnectionSink","features":[106]},{"name":"ITSGAuthorizeResourceSink","features":[106]},{"name":"ITSGPolicyEngine","features":[106]},{"name":"ITsSbBaseNotifySink","features":[106]},{"name":"ITsSbClientConnection","features":[106]},{"name":"ITsSbClientConnectionPropertySet","features":[106]},{"name":"ITsSbEnvironment","features":[106]},{"name":"ITsSbEnvironmentPropertySet","features":[106]},{"name":"ITsSbFilterPluginStore","features":[106]},{"name":"ITsSbGenericNotifySink","features":[106]},{"name":"ITsSbGlobalStore","features":[106]},{"name":"ITsSbLoadBalanceResult","features":[106]},{"name":"ITsSbLoadBalancing","features":[106]},{"name":"ITsSbLoadBalancingNotifySink","features":[106]},{"name":"ITsSbOrchestration","features":[106]},{"name":"ITsSbOrchestrationNotifySink","features":[106]},{"name":"ITsSbPlacement","features":[106]},{"name":"ITsSbPlacementNotifySink","features":[106]},{"name":"ITsSbPlugin","features":[106]},{"name":"ITsSbPluginNotifySink","features":[106]},{"name":"ITsSbPluginPropertySet","features":[106]},{"name":"ITsSbPropertySet","features":[106]},{"name":"ITsSbProvider","features":[106]},{"name":"ITsSbProvisioning","features":[106]},{"name":"ITsSbProvisioningPluginNotifySink","features":[106]},{"name":"ITsSbResourceNotification","features":[106]},{"name":"ITsSbResourceNotificationEx","features":[106]},{"name":"ITsSbResourcePlugin","features":[106]},{"name":"ITsSbResourcePluginStore","features":[106]},{"name":"ITsSbServiceNotification","features":[106]},{"name":"ITsSbSession","features":[106]},{"name":"ITsSbTarget","features":[106]},{"name":"ITsSbTargetPropertySet","features":[106]},{"name":"ITsSbTaskInfo","features":[106]},{"name":"ITsSbTaskPlugin","features":[106]},{"name":"ITsSbTaskPluginNotifySink","features":[106]},{"name":"IWRdsEnhancedFastReconnectArbitrator","features":[106]},{"name":"IWRdsGraphicsChannel","features":[106]},{"name":"IWRdsGraphicsChannelEvents","features":[106]},{"name":"IWRdsGraphicsChannelManager","features":[106]},{"name":"IWRdsProtocolConnection","features":[106]},{"name":"IWRdsProtocolConnectionCallback","features":[106]},{"name":"IWRdsProtocolConnectionSettings","features":[106]},{"name":"IWRdsProtocolLicenseConnection","features":[106]},{"name":"IWRdsProtocolListener","features":[106]},{"name":"IWRdsProtocolListenerCallback","features":[106]},{"name":"IWRdsProtocolLogonErrorRedirector","features":[106]},{"name":"IWRdsProtocolManager","features":[106]},{"name":"IWRdsProtocolSettings","features":[106]},{"name":"IWRdsProtocolShadowCallback","features":[106]},{"name":"IWRdsProtocolShadowConnection","features":[106]},{"name":"IWRdsWddmIddProps","features":[106]},{"name":"IWRdsWddmIddProps1","features":[106]},{"name":"IWTSBitmapRenderService","features":[106]},{"name":"IWTSBitmapRenderer","features":[106]},{"name":"IWTSBitmapRendererCallback","features":[106]},{"name":"IWTSListener","features":[106]},{"name":"IWTSListenerCallback","features":[106]},{"name":"IWTSPlugin","features":[106]},{"name":"IWTSPluginServiceProvider","features":[106]},{"name":"IWTSProtocolConnection","features":[106]},{"name":"IWTSProtocolConnectionCallback","features":[106]},{"name":"IWTSProtocolLicenseConnection","features":[106]},{"name":"IWTSProtocolListener","features":[106]},{"name":"IWTSProtocolListenerCallback","features":[106]},{"name":"IWTSProtocolLogonErrorRedirector","features":[106]},{"name":"IWTSProtocolManager","features":[106]},{"name":"IWTSProtocolShadowCallback","features":[106]},{"name":"IWTSProtocolShadowConnection","features":[106]},{"name":"IWTSSBPlugin","features":[106]},{"name":"IWTSVirtualChannel","features":[106]},{"name":"IWTSVirtualChannelCallback","features":[106]},{"name":"IWTSVirtualChannelManager","features":[106]},{"name":"IWorkspace","features":[106]},{"name":"IWorkspace2","features":[106]},{"name":"IWorkspace3","features":[106]},{"name":"IWorkspaceClientExt","features":[106]},{"name":"IWorkspaceRegistration","features":[106]},{"name":"IWorkspaceRegistration2","features":[106]},{"name":"IWorkspaceReportMessage","features":[106]},{"name":"IWorkspaceResTypeRegistry","features":[106]},{"name":"IWorkspaceScriptable","features":[106]},{"name":"IWorkspaceScriptable2","features":[106]},{"name":"IWorkspaceScriptable3","features":[106]},{"name":"ItsPubPlugin","features":[106]},{"name":"ItsPubPlugin2","features":[106]},{"name":"KEEP_EXISTING_SESSIONS","features":[106]},{"name":"KeyCombinationDown","features":[106]},{"name":"KeyCombinationHome","features":[106]},{"name":"KeyCombinationLeft","features":[106]},{"name":"KeyCombinationRight","features":[106]},{"name":"KeyCombinationScroll","features":[106]},{"name":"KeyCombinationType","features":[106]},{"name":"KeyCombinationUp","features":[106]},{"name":"LOAD_BALANCING_PLUGIN","features":[106]},{"name":"MAX_DATE_TIME_LENGTH","features":[106]},{"name":"MAX_ELAPSED_TIME_LENGTH","features":[106]},{"name":"MAX_POLICY_ATTRIBUTES","features":[106]},{"name":"MaxAppName_Len","features":[106]},{"name":"MaxDomainName_Len","features":[106]},{"name":"MaxFQDN_Len","features":[106]},{"name":"MaxFarm_Len","features":[106]},{"name":"MaxNetBiosName_Len","features":[106]},{"name":"MaxNumOfExposed_IPs","features":[106]},{"name":"MaxUserName_Len","features":[106]},{"name":"NONFARM","features":[106]},{"name":"NOTIFY_FOR_ALL_SESSIONS","features":[106]},{"name":"NOTIFY_FOR_THIS_SESSION","features":[106]},{"name":"ORCHESTRATION_PLUGIN","features":[106]},{"name":"OWNER_MS_TS_PLUGIN","features":[106]},{"name":"OWNER_MS_VM_PLUGIN","features":[106]},{"name":"OWNER_UNKNOWN","features":[106]},{"name":"PCHANNEL_INIT_EVENT_FN","features":[106]},{"name":"PCHANNEL_OPEN_EVENT_FN","features":[106]},{"name":"PLACEMENT_PLUGIN","features":[106]},{"name":"PLUGIN_CAPABILITY_EXTERNAL_REDIRECTION","features":[106]},{"name":"PLUGIN_TYPE","features":[106]},{"name":"POLICY_PLUGIN","features":[106]},{"name":"POSITION_CONTINUOUS","features":[106]},{"name":"POSITION_DISCONTINUOUS","features":[106]},{"name":"POSITION_INVALID","features":[106]},{"name":"POSITION_QPC_ERROR","features":[106]},{"name":"PRODUCTINFO_COMPANYNAME_LENGTH","features":[106]},{"name":"PRODUCTINFO_PRODUCTID_LENGTH","features":[106]},{"name":"PRODUCT_INFOA","features":[106]},{"name":"PRODUCT_INFOW","features":[106]},{"name":"PROPERTY_DYNAMIC_TIME_ZONE_INFORMATION","features":[106]},{"name":"PROPERTY_TYPE_ENABLE_UNIVERSAL_APPS_FOR_CUSTOM_SHELL","features":[106]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT","features":[106]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT_USER_SID","features":[106]},{"name":"PROVISIONING_PLUGIN","features":[106]},{"name":"PVIRTUALCHANNELCLOSE","features":[106]},{"name":"PVIRTUALCHANNELENTRY","features":[3,106]},{"name":"PVIRTUALCHANNELINIT","features":[106]},{"name":"PVIRTUALCHANNELOPEN","features":[106]},{"name":"PVIRTUALCHANNELWRITE","features":[106]},{"name":"PasswordEncodingType","features":[106]},{"name":"PasswordEncodingUTF16BE","features":[106]},{"name":"PasswordEncodingUTF16LE","features":[106]},{"name":"PasswordEncodingUTF8","features":[106]},{"name":"PnpRedirectionDisabled","features":[106]},{"name":"PolicyAttributeType","features":[106]},{"name":"PortRedirectionDisabled","features":[106]},{"name":"PrinterRedirectionDisabled","features":[106]},{"name":"ProcessIdToSessionId","features":[3,106]},{"name":"RDCLIENT_BITMAP_RENDER_SERVICE","features":[106]},{"name":"RDV_TASK_STATUS","features":[106]},{"name":"RDV_TASK_STATUS_APPLYING","features":[106]},{"name":"RDV_TASK_STATUS_DOWNLOADING","features":[106]},{"name":"RDV_TASK_STATUS_FAILED","features":[106]},{"name":"RDV_TASK_STATUS_REBOOTED","features":[106]},{"name":"RDV_TASK_STATUS_REBOOTING","features":[106]},{"name":"RDV_TASK_STATUS_SEARCHING","features":[106]},{"name":"RDV_TASK_STATUS_SUCCESS","features":[106]},{"name":"RDV_TASK_STATUS_TIMEOUT","features":[106]},{"name":"RDV_TASK_STATUS_UNKNOWN","features":[106]},{"name":"RD_FARM_AUTO_PERSONAL_RDSH","features":[106]},{"name":"RD_FARM_AUTO_PERSONAL_VM","features":[106]},{"name":"RD_FARM_MANUAL_PERSONAL_RDSH","features":[106]},{"name":"RD_FARM_MANUAL_PERSONAL_VM","features":[106]},{"name":"RD_FARM_RDSH","features":[106]},{"name":"RD_FARM_TEMP_VM","features":[106]},{"name":"RD_FARM_TYPE","features":[106]},{"name":"RD_FARM_TYPE_UNKNOWN","features":[106]},{"name":"REMOTECONTROL_KBDALT_HOTKEY","features":[106]},{"name":"REMOTECONTROL_KBDCTRL_HOTKEY","features":[106]},{"name":"REMOTECONTROL_KBDSHIFT_HOTKEY","features":[106]},{"name":"RENDER_HINT_CLEAR","features":[106]},{"name":"RENDER_HINT_MAPPEDWINDOW","features":[106]},{"name":"RENDER_HINT_VIDEO","features":[106]},{"name":"RESERVED_FOR_LEGACY","features":[106]},{"name":"RESOURCE_PLUGIN","features":[106]},{"name":"RFX_CLIENT_ID_LENGTH","features":[106]},{"name":"RFX_GFX_MAX_SUPPORTED_MONITORS","features":[106]},{"name":"RFX_GFX_MONITOR_INFO","features":[3,106]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST","features":[106]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE","features":[3,106]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM","features":[106]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY","features":[106]},{"name":"RFX_GFX_MSG_DESKTOP_INPUT_RESET","features":[106]},{"name":"RFX_GFX_MSG_DESKTOP_RESEND_REQUEST","features":[106]},{"name":"RFX_GFX_MSG_DISCONNECT_NOTIFY","features":[106]},{"name":"RFX_GFX_MSG_HEADER","features":[106]},{"name":"RFX_GFX_MSG_PREFIX","features":[106]},{"name":"RFX_GFX_MSG_PREFIX_MASK","features":[106]},{"name":"RFX_GFX_MSG_RDP_DATA","features":[106]},{"name":"RFX_GFX_RECT","features":[106]},{"name":"RFX_RDP_MSG_PREFIX","features":[106]},{"name":"RemoteActionAppSwitch","features":[106]},{"name":"RemoteActionAppbar","features":[106]},{"name":"RemoteActionCharms","features":[106]},{"name":"RemoteActionSnap","features":[106]},{"name":"RemoteActionStartScreen","features":[106]},{"name":"RemoteActionType","features":[106]},{"name":"SB_SYNCH_CONFLICT_MAX_WRITE_ATTEMPTS","features":[106]},{"name":"SESSION_TIMEOUT_ACTION_DISCONNECT","features":[106]},{"name":"SESSION_TIMEOUT_ACTION_SILENT_REAUTH","features":[106]},{"name":"SESSION_TIMEOUT_ACTION_TYPE","features":[106]},{"name":"SINGLE_SESSION","features":[106]},{"name":"STATE_ACTIVE","features":[106]},{"name":"STATE_CONNECTED","features":[106]},{"name":"STATE_CONNECTQUERY","features":[106]},{"name":"STATE_DISCONNECTED","features":[106]},{"name":"STATE_DOWN","features":[106]},{"name":"STATE_IDLE","features":[106]},{"name":"STATE_INIT","features":[106]},{"name":"STATE_INVALID","features":[106]},{"name":"STATE_LISTEN","features":[106]},{"name":"STATE_MAX","features":[106]},{"name":"STATE_RESET","features":[106]},{"name":"STATE_SHADOW","features":[106]},{"name":"SnapshotEncodingDataUri","features":[106]},{"name":"SnapshotEncodingType","features":[106]},{"name":"SnapshotFormatBmp","features":[106]},{"name":"SnapshotFormatJpeg","features":[106]},{"name":"SnapshotFormatPng","features":[106]},{"name":"SnapshotFormatType","features":[106]},{"name":"TARGET_CHANGE_TYPE","features":[106]},{"name":"TARGET_CHANGE_UNSPEC","features":[106]},{"name":"TARGET_CHECKED_OUT","features":[106]},{"name":"TARGET_DOWN","features":[106]},{"name":"TARGET_EXTERNALIP_CHANGED","features":[106]},{"name":"TARGET_FARM_MEMBERSHIP_CHANGED","features":[106]},{"name":"TARGET_HIBERNATED","features":[106]},{"name":"TARGET_IDLE","features":[106]},{"name":"TARGET_INITIALIZING","features":[106]},{"name":"TARGET_INTERNALIP_CHANGED","features":[106]},{"name":"TARGET_INUSE","features":[106]},{"name":"TARGET_INVALID","features":[106]},{"name":"TARGET_JOINED","features":[106]},{"name":"TARGET_MAXSTATE","features":[106]},{"name":"TARGET_OWNER","features":[106]},{"name":"TARGET_PATCH_COMPLETED","features":[106]},{"name":"TARGET_PATCH_FAILED","features":[106]},{"name":"TARGET_PATCH_IN_PROGRESS","features":[106]},{"name":"TARGET_PATCH_NOT_STARTED","features":[106]},{"name":"TARGET_PATCH_STATE","features":[106]},{"name":"TARGET_PATCH_STATE_CHANGED","features":[106]},{"name":"TARGET_PATCH_UNKNOWN","features":[106]},{"name":"TARGET_PENDING","features":[106]},{"name":"TARGET_REMOVED","features":[106]},{"name":"TARGET_RUNNING","features":[106]},{"name":"TARGET_STARTING","features":[106]},{"name":"TARGET_STATE","features":[106]},{"name":"TARGET_STATE_CHANGED","features":[106]},{"name":"TARGET_STOPPED","features":[106]},{"name":"TARGET_STOPPING","features":[106]},{"name":"TARGET_TYPE","features":[106]},{"name":"TARGET_UNKNOWN","features":[106]},{"name":"TASK_PLUGIN","features":[106]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_EXISTING","features":[106]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_NEW","features":[106]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE","features":[106]},{"name":"TSPUB_PLUGIN_PD_QUERY_EXISTING","features":[106]},{"name":"TSPUB_PLUGIN_PD_QUERY_OR_CREATE","features":[106]},{"name":"TSPUB_PLUGIN_PD_RESOLUTION_TYPE","features":[106]},{"name":"TSSB_NOTIFICATION_TYPE","features":[106]},{"name":"TSSB_NOTIFY_CONNECTION_REQUEST_CHANGE","features":[106]},{"name":"TSSB_NOTIFY_INVALID","features":[106]},{"name":"TSSB_NOTIFY_SESSION_CHANGE","features":[106]},{"name":"TSSB_NOTIFY_TARGET_CHANGE","features":[106]},{"name":"TSSD_ADDR_IPv4","features":[106]},{"name":"TSSD_ADDR_IPv6","features":[106]},{"name":"TSSD_ADDR_UNDEFINED","features":[106]},{"name":"TSSD_AddrV46Type","features":[106]},{"name":"TSSD_ConnectionPoint","features":[106]},{"name":"TSSESSION_STATE","features":[106]},{"name":"TSUserExInterfaces","features":[106]},{"name":"TS_SB_SORT_BY","features":[106]},{"name":"TS_SB_SORT_BY_NAME","features":[106]},{"name":"TS_SB_SORT_BY_NONE","features":[106]},{"name":"TS_SB_SORT_BY_PROP","features":[106]},{"name":"TS_VC_LISTENER_STATIC_CHANNEL","features":[106]},{"name":"UNKNOWN","features":[106]},{"name":"UNKNOWN_PLUGIN","features":[106]},{"name":"USERNAME_LENGTH","features":[106]},{"name":"VALIDATIONINFORMATION_HARDWAREID_LENGTH","features":[106]},{"name":"VALIDATIONINFORMATION_LICENSE_LENGTH","features":[106]},{"name":"VIRTUAL_CHANNEL_VERSION_WIN2000","features":[106]},{"name":"VM_HOST_NOTIFY_STATUS","features":[106]},{"name":"VM_HOST_STATUS_INIT_COMPLETE","features":[106]},{"name":"VM_HOST_STATUS_INIT_FAILED","features":[106]},{"name":"VM_HOST_STATUS_INIT_IN_PROGRESS","features":[106]},{"name":"VM_HOST_STATUS_INIT_PENDING","features":[106]},{"name":"VM_NOTIFY_ENTRY","features":[106]},{"name":"VM_NOTIFY_INFO","features":[106]},{"name":"VM_NOTIFY_STATUS","features":[106]},{"name":"VM_NOTIFY_STATUS_CANCELED","features":[106]},{"name":"VM_NOTIFY_STATUS_COMPLETE","features":[106]},{"name":"VM_NOTIFY_STATUS_FAILED","features":[106]},{"name":"VM_NOTIFY_STATUS_IN_PROGRESS","features":[106]},{"name":"VM_NOTIFY_STATUS_PENDING","features":[106]},{"name":"VM_PATCH_INFO","features":[106]},{"name":"WINSTATIONNAME_LENGTH","features":[106]},{"name":"WKS_FLAG_CLEAR_CREDS_ON_LAST_RESOURCE","features":[106]},{"name":"WKS_FLAG_CREDS_AUTHENTICATED","features":[106]},{"name":"WKS_FLAG_PASSWORD_ENCRYPTED","features":[106]},{"name":"WRDS_CLIENTADDRESS_LENGTH","features":[106]},{"name":"WRDS_CLIENTNAME_LENGTH","features":[106]},{"name":"WRDS_CLIENT_PRODUCT_ID_LENGTH","features":[106]},{"name":"WRDS_CONNECTION_SETTING","features":[3,106]},{"name":"WRDS_CONNECTION_SETTINGS","features":[3,106]},{"name":"WRDS_CONNECTION_SETTINGS_1","features":[3,106]},{"name":"WRDS_CONNECTION_SETTING_LEVEL","features":[106]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_1","features":[106]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_INVALID","features":[106]},{"name":"WRDS_DEVICE_NAME_LENGTH","features":[106]},{"name":"WRDS_DIRECTORY_LENGTH","features":[106]},{"name":"WRDS_DOMAIN_LENGTH","features":[106]},{"name":"WRDS_DRIVER_NAME_LENGTH","features":[106]},{"name":"WRDS_DYNAMIC_TIME_ZONE_INFORMATION","features":[106]},{"name":"WRDS_IMEFILENAME_LENGTH","features":[106]},{"name":"WRDS_INITIALPROGRAM_LENGTH","features":[106]},{"name":"WRDS_KEY_EXCHANGE_ALG_DH","features":[106]},{"name":"WRDS_KEY_EXCHANGE_ALG_RSA","features":[106]},{"name":"WRDS_LICENSE_PREAMBLE_VERSION","features":[106]},{"name":"WRDS_LICENSE_PROTOCOL_VERSION","features":[106]},{"name":"WRDS_LISTENER_SETTING","features":[106]},{"name":"WRDS_LISTENER_SETTINGS","features":[106]},{"name":"WRDS_LISTENER_SETTINGS_1","features":[106]},{"name":"WRDS_LISTENER_SETTING_LEVEL","features":[106]},{"name":"WRDS_LISTENER_SETTING_LEVEL_1","features":[106]},{"name":"WRDS_LISTENER_SETTING_LEVEL_INVALID","features":[106]},{"name":"WRDS_MAX_CACHE_RESERVED","features":[106]},{"name":"WRDS_MAX_COUNTERS","features":[106]},{"name":"WRDS_MAX_DISPLAY_IOCTL_DATA","features":[106]},{"name":"WRDS_MAX_PROTOCOL_CACHE","features":[106]},{"name":"WRDS_MAX_RESERVED","features":[106]},{"name":"WRDS_PASSWORD_LENGTH","features":[106]},{"name":"WRDS_PERF_DISABLE_CURSORSETTINGS","features":[106]},{"name":"WRDS_PERF_DISABLE_CURSOR_SHADOW","features":[106]},{"name":"WRDS_PERF_DISABLE_FULLWINDOWDRAG","features":[106]},{"name":"WRDS_PERF_DISABLE_MENUANIMATIONS","features":[106]},{"name":"WRDS_PERF_DISABLE_NOTHING","features":[106]},{"name":"WRDS_PERF_DISABLE_THEMING","features":[106]},{"name":"WRDS_PERF_DISABLE_WALLPAPER","features":[106]},{"name":"WRDS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[106]},{"name":"WRDS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[106]},{"name":"WRDS_PERF_ENABLE_FONT_SMOOTHING","features":[106]},{"name":"WRDS_PROTOCOL_NAME_LENGTH","features":[106]},{"name":"WRDS_SERVICE_ID_GRAPHICS_GUID","features":[106]},{"name":"WRDS_SETTING","features":[3,106]},{"name":"WRDS_SETTINGS","features":[3,106]},{"name":"WRDS_SETTINGS_1","features":[3,106]},{"name":"WRDS_SETTING_LEVEL","features":[106]},{"name":"WRDS_SETTING_LEVEL_1","features":[106]},{"name":"WRDS_SETTING_LEVEL_INVALID","features":[106]},{"name":"WRDS_SETTING_STATUS","features":[106]},{"name":"WRDS_SETTING_STATUS_DISABLED","features":[106]},{"name":"WRDS_SETTING_STATUS_ENABLED","features":[106]},{"name":"WRDS_SETTING_STATUS_NOTAPPLICABLE","features":[106]},{"name":"WRDS_SETTING_STATUS_NOTCONFIGURED","features":[106]},{"name":"WRDS_SETTING_TYPE","features":[106]},{"name":"WRDS_SETTING_TYPE_INVALID","features":[106]},{"name":"WRDS_SETTING_TYPE_MACHINE","features":[106]},{"name":"WRDS_SETTING_TYPE_SAM","features":[106]},{"name":"WRDS_SETTING_TYPE_USER","features":[106]},{"name":"WRDS_USERNAME_LENGTH","features":[106]},{"name":"WRDS_VALUE_TYPE_BINARY","features":[106]},{"name":"WRDS_VALUE_TYPE_GUID","features":[106]},{"name":"WRDS_VALUE_TYPE_STRING","features":[106]},{"name":"WRDS_VALUE_TYPE_ULONG","features":[106]},{"name":"WRdsGraphicsChannelType","features":[106]},{"name":"WRdsGraphicsChannelType_BestEffortDelivery","features":[106]},{"name":"WRdsGraphicsChannelType_GuaranteedDelivery","features":[106]},{"name":"WRdsGraphicsChannels_LossyChannelMaxMessageSize","features":[106]},{"name":"WTSActive","features":[106]},{"name":"WTSApplicationName","features":[106]},{"name":"WTSCLIENTA","features":[106]},{"name":"WTSCLIENTW","features":[106]},{"name":"WTSCONFIGINFOA","features":[106]},{"name":"WTSCONFIGINFOW","features":[106]},{"name":"WTSClientAddress","features":[106]},{"name":"WTSClientBuildNumber","features":[106]},{"name":"WTSClientDirectory","features":[106]},{"name":"WTSClientDisplay","features":[106]},{"name":"WTSClientHardwareId","features":[106]},{"name":"WTSClientInfo","features":[106]},{"name":"WTSClientName","features":[106]},{"name":"WTSClientProductId","features":[106]},{"name":"WTSClientProtocolType","features":[106]},{"name":"WTSCloseServer","features":[3,106]},{"name":"WTSConfigInfo","features":[106]},{"name":"WTSConnectQuery","features":[106]},{"name":"WTSConnectSessionA","features":[3,106]},{"name":"WTSConnectSessionW","features":[3,106]},{"name":"WTSConnectState","features":[106]},{"name":"WTSConnected","features":[106]},{"name":"WTSCreateListenerA","features":[3,106]},{"name":"WTSCreateListenerW","features":[3,106]},{"name":"WTSDisconnectSession","features":[3,106]},{"name":"WTSDisconnected","features":[106]},{"name":"WTSDomainName","features":[106]},{"name":"WTSDown","features":[106]},{"name":"WTSEnableChildSessions","features":[3,106]},{"name":"WTSEnumerateListenersA","features":[3,106]},{"name":"WTSEnumerateListenersW","features":[3,106]},{"name":"WTSEnumerateProcessesA","features":[3,6,106]},{"name":"WTSEnumerateProcessesExA","features":[3,106]},{"name":"WTSEnumerateProcessesExW","features":[3,106]},{"name":"WTSEnumerateProcessesW","features":[3,6,106]},{"name":"WTSEnumerateServersA","features":[3,106]},{"name":"WTSEnumerateServersW","features":[3,106]},{"name":"WTSEnumerateSessionsA","features":[3,106]},{"name":"WTSEnumerateSessionsExA","features":[3,106]},{"name":"WTSEnumerateSessionsExW","features":[3,106]},{"name":"WTSEnumerateSessionsW","features":[3,106]},{"name":"WTSFreeMemory","features":[106]},{"name":"WTSFreeMemoryExA","features":[3,106]},{"name":"WTSFreeMemoryExW","features":[3,106]},{"name":"WTSGetActiveConsoleSessionId","features":[106]},{"name":"WTSGetChildSessionId","features":[3,106]},{"name":"WTSGetListenerSecurityA","features":[3,6,106]},{"name":"WTSGetListenerSecurityW","features":[3,6,106]},{"name":"WTSINFOA","features":[106]},{"name":"WTSINFOEXA","features":[106]},{"name":"WTSINFOEXW","features":[106]},{"name":"WTSINFOEX_LEVEL1_A","features":[106]},{"name":"WTSINFOEX_LEVEL1_W","features":[106]},{"name":"WTSINFOEX_LEVEL_A","features":[106]},{"name":"WTSINFOEX_LEVEL_W","features":[106]},{"name":"WTSINFOW","features":[106]},{"name":"WTSIdle","features":[106]},{"name":"WTSIdleTime","features":[106]},{"name":"WTSIncomingBytes","features":[106]},{"name":"WTSIncomingFrames","features":[106]},{"name":"WTSInit","features":[106]},{"name":"WTSInitialProgram","features":[106]},{"name":"WTSIsChildSessionsEnabled","features":[3,106]},{"name":"WTSIsRemoteSession","features":[106]},{"name":"WTSLISTENERCONFIGA","features":[106]},{"name":"WTSLISTENERCONFIGW","features":[106]},{"name":"WTSListen","features":[106]},{"name":"WTSLogoffSession","features":[3,106]},{"name":"WTSLogonTime","features":[106]},{"name":"WTSOEMId","features":[106]},{"name":"WTSOpenServerA","features":[3,106]},{"name":"WTSOpenServerExA","features":[3,106]},{"name":"WTSOpenServerExW","features":[3,106]},{"name":"WTSOpenServerW","features":[3,106]},{"name":"WTSOutgoingBytes","features":[106]},{"name":"WTSOutgoingFrames","features":[106]},{"name":"WTSQueryListenerConfigA","features":[3,106]},{"name":"WTSQueryListenerConfigW","features":[3,106]},{"name":"WTSQuerySessionInformationA","features":[3,106]},{"name":"WTSQuerySessionInformationW","features":[3,106]},{"name":"WTSQueryUserConfigA","features":[3,106]},{"name":"WTSQueryUserConfigW","features":[3,106]},{"name":"WTSQueryUserToken","features":[3,106]},{"name":"WTSRegisterSessionNotification","features":[3,106]},{"name":"WTSRegisterSessionNotificationEx","features":[3,106]},{"name":"WTSReset","features":[106]},{"name":"WTSSBX_ADDRESS_FAMILY","features":[106]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET","features":[106]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET6","features":[106]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_IPX","features":[106]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_NETBIOS","features":[106]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_UNSPEC","features":[106]},{"name":"WTSSBX_IP_ADDRESS","features":[106]},{"name":"WTSSBX_MACHINE_CONNECT_INFO","features":[106]},{"name":"WTSSBX_MACHINE_DRAIN","features":[106]},{"name":"WTSSBX_MACHINE_DRAIN_OFF","features":[106]},{"name":"WTSSBX_MACHINE_DRAIN_ON","features":[106]},{"name":"WTSSBX_MACHINE_DRAIN_UNSPEC","features":[106]},{"name":"WTSSBX_MACHINE_INFO","features":[106]},{"name":"WTSSBX_MACHINE_SESSION_MODE","features":[106]},{"name":"WTSSBX_MACHINE_SESSION_MODE_MULTIPLE","features":[106]},{"name":"WTSSBX_MACHINE_SESSION_MODE_SINGLE","features":[106]},{"name":"WTSSBX_MACHINE_SESSION_MODE_UNSPEC","features":[106]},{"name":"WTSSBX_MACHINE_STATE","features":[106]},{"name":"WTSSBX_MACHINE_STATE_READY","features":[106]},{"name":"WTSSBX_MACHINE_STATE_SYNCHRONIZING","features":[106]},{"name":"WTSSBX_MACHINE_STATE_UNSPEC","features":[106]},{"name":"WTSSBX_NOTIFICATION_ADDED","features":[106]},{"name":"WTSSBX_NOTIFICATION_CHANGED","features":[106]},{"name":"WTSSBX_NOTIFICATION_REMOVED","features":[106]},{"name":"WTSSBX_NOTIFICATION_RESYNC","features":[106]},{"name":"WTSSBX_NOTIFICATION_TYPE","features":[106]},{"name":"WTSSBX_SESSION_INFO","features":[3,106]},{"name":"WTSSBX_SESSION_STATE","features":[106]},{"name":"WTSSBX_SESSION_STATE_ACTIVE","features":[106]},{"name":"WTSSBX_SESSION_STATE_DISCONNECTED","features":[106]},{"name":"WTSSBX_SESSION_STATE_UNSPEC","features":[106]},{"name":"WTSSESSION_NOTIFICATION","features":[106]},{"name":"WTSSendMessageA","features":[3,106,52]},{"name":"WTSSendMessageW","features":[3,106,52]},{"name":"WTSSessionAddressV4","features":[106]},{"name":"WTSSessionId","features":[106]},{"name":"WTSSessionInfo","features":[106]},{"name":"WTSSessionInfoEx","features":[106]},{"name":"WTSSetListenerSecurityA","features":[3,6,106]},{"name":"WTSSetListenerSecurityW","features":[3,6,106]},{"name":"WTSSetRenderHint","features":[3,106]},{"name":"WTSSetUserConfigA","features":[3,106]},{"name":"WTSSetUserConfigW","features":[3,106]},{"name":"WTSShadow","features":[106]},{"name":"WTSShutdownSystem","features":[3,106]},{"name":"WTSStartRemoteControlSessionA","features":[3,106]},{"name":"WTSStartRemoteControlSessionW","features":[3,106]},{"name":"WTSStopRemoteControlSession","features":[3,106]},{"name":"WTSTerminateProcess","features":[3,106]},{"name":"WTSTypeProcessInfoLevel0","features":[106]},{"name":"WTSTypeProcessInfoLevel1","features":[106]},{"name":"WTSTypeSessionInfoLevel1","features":[106]},{"name":"WTSUSERCONFIGA","features":[106]},{"name":"WTSUSERCONFIGW","features":[106]},{"name":"WTSUnRegisterSessionNotification","features":[3,106]},{"name":"WTSUnRegisterSessionNotificationEx","features":[3,106]},{"name":"WTSUserConfigBrokenTimeoutSettings","features":[106]},{"name":"WTSUserConfigInitialProgram","features":[106]},{"name":"WTSUserConfigModemCallbackPhoneNumber","features":[106]},{"name":"WTSUserConfigModemCallbackSettings","features":[106]},{"name":"WTSUserConfigReconnectSettings","features":[106]},{"name":"WTSUserConfigShadowingSettings","features":[106]},{"name":"WTSUserConfigSourceSAM","features":[106]},{"name":"WTSUserConfigTerminalServerHomeDir","features":[106]},{"name":"WTSUserConfigTerminalServerHomeDirDrive","features":[106]},{"name":"WTSUserConfigTerminalServerProfilePath","features":[106]},{"name":"WTSUserConfigTimeoutSettingsConnections","features":[106]},{"name":"WTSUserConfigTimeoutSettingsDisconnections","features":[106]},{"name":"WTSUserConfigTimeoutSettingsIdle","features":[106]},{"name":"WTSUserConfigUser","features":[106]},{"name":"WTSUserConfigWorkingDirectory","features":[106]},{"name":"WTSUserConfigfAllowLogonTerminalServer","features":[106]},{"name":"WTSUserConfigfDeviceClientDefaultPrinter","features":[106]},{"name":"WTSUserConfigfDeviceClientDrives","features":[106]},{"name":"WTSUserConfigfDeviceClientPrinters","features":[106]},{"name":"WTSUserConfigfInheritInitialProgram","features":[106]},{"name":"WTSUserConfigfTerminalServerRemoteHomeDir","features":[106]},{"name":"WTSUserName","features":[106]},{"name":"WTSValidationInfo","features":[106]},{"name":"WTSVirtualChannelClose","features":[3,106]},{"name":"WTSVirtualChannelOpen","features":[3,106]},{"name":"WTSVirtualChannelOpenEx","features":[3,106]},{"name":"WTSVirtualChannelPurgeInput","features":[3,106]},{"name":"WTSVirtualChannelPurgeOutput","features":[3,106]},{"name":"WTSVirtualChannelQuery","features":[3,106]},{"name":"WTSVirtualChannelRead","features":[3,106]},{"name":"WTSVirtualChannelWrite","features":[3,106]},{"name":"WTSVirtualClientData","features":[106]},{"name":"WTSVirtualFileHandle","features":[106]},{"name":"WTSWaitSystemEvent","features":[3,106]},{"name":"WTSWinStationName","features":[106]},{"name":"WTSWorkingDirectory","features":[106]},{"name":"WTS_CACHE_STATS","features":[106]},{"name":"WTS_CACHE_STATS_UN","features":[106]},{"name":"WTS_CERT_TYPE","features":[106]},{"name":"WTS_CERT_TYPE_INVALID","features":[106]},{"name":"WTS_CERT_TYPE_PROPRIETORY","features":[106]},{"name":"WTS_CERT_TYPE_X509","features":[106]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC","features":[106]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_NO_COMPRESS","features":[106]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_HIGH","features":[106]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_LOW","features":[106]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_MED","features":[106]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_REAL","features":[106]},{"name":"WTS_CLIENTADDRESS_LENGTH","features":[106]},{"name":"WTS_CLIENTNAME_LENGTH","features":[106]},{"name":"WTS_CLIENT_ADDRESS","features":[106]},{"name":"WTS_CLIENT_DATA","features":[3,106]},{"name":"WTS_CLIENT_DISPLAY","features":[106]},{"name":"WTS_CLIENT_PRODUCT_ID_LENGTH","features":[106]},{"name":"WTS_COMMENT_LENGTH","features":[106]},{"name":"WTS_CONFIG_CLASS","features":[106]},{"name":"WTS_CONFIG_SOURCE","features":[106]},{"name":"WTS_CONNECTSTATE_CLASS","features":[106]},{"name":"WTS_CURRENT_SERVER","features":[3,106]},{"name":"WTS_CURRENT_SERVER_HANDLE","features":[3,106]},{"name":"WTS_CURRENT_SERVER_NAME","features":[106]},{"name":"WTS_CURRENT_SESSION","features":[106]},{"name":"WTS_DEVICE_NAME_LENGTH","features":[106]},{"name":"WTS_DIRECTORY_LENGTH","features":[106]},{"name":"WTS_DISPLAY_IOCTL","features":[106]},{"name":"WTS_DOMAIN_LENGTH","features":[106]},{"name":"WTS_DRAIN_IN_DRAIN","features":[106]},{"name":"WTS_DRAIN_NOT_IN_DRAIN","features":[106]},{"name":"WTS_DRAIN_STATE_NONE","features":[106]},{"name":"WTS_DRIVER_NAME_LENGTH","features":[106]},{"name":"WTS_DRIVE_LENGTH","features":[106]},{"name":"WTS_EVENT_ALL","features":[106]},{"name":"WTS_EVENT_CONNECT","features":[106]},{"name":"WTS_EVENT_CREATE","features":[106]},{"name":"WTS_EVENT_DELETE","features":[106]},{"name":"WTS_EVENT_DISCONNECT","features":[106]},{"name":"WTS_EVENT_FLUSH","features":[106]},{"name":"WTS_EVENT_LICENSE","features":[106]},{"name":"WTS_EVENT_LOGOFF","features":[106]},{"name":"WTS_EVENT_LOGON","features":[106]},{"name":"WTS_EVENT_NONE","features":[106]},{"name":"WTS_EVENT_RENAME","features":[106]},{"name":"WTS_EVENT_STATECHANGE","features":[106]},{"name":"WTS_IMEFILENAME_LENGTH","features":[106]},{"name":"WTS_INFO_CLASS","features":[106]},{"name":"WTS_INITIALPROGRAM_LENGTH","features":[106]},{"name":"WTS_KEY_EXCHANGE_ALG_DH","features":[106]},{"name":"WTS_KEY_EXCHANGE_ALG_RSA","features":[106]},{"name":"WTS_LICENSE_CAPABILITIES","features":[3,106]},{"name":"WTS_LICENSE_PREAMBLE_VERSION","features":[106]},{"name":"WTS_LICENSE_PROTOCOL_VERSION","features":[106]},{"name":"WTS_LISTENER_CREATE","features":[106]},{"name":"WTS_LISTENER_NAME_LENGTH","features":[106]},{"name":"WTS_LISTENER_UPDATE","features":[106]},{"name":"WTS_LOGON_ERROR_REDIRECTOR_RESPONSE","features":[106]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW","features":[106]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW_START_OVER","features":[106]},{"name":"WTS_LOGON_ERR_HANDLED_SHOW","features":[106]},{"name":"WTS_LOGON_ERR_INVALID","features":[106]},{"name":"WTS_LOGON_ERR_NOT_HANDLED","features":[106]},{"name":"WTS_MAX_CACHE_RESERVED","features":[106]},{"name":"WTS_MAX_COUNTERS","features":[106]},{"name":"WTS_MAX_DISPLAY_IOCTL_DATA","features":[106]},{"name":"WTS_MAX_PROTOCOL_CACHE","features":[106]},{"name":"WTS_MAX_RESERVED","features":[106]},{"name":"WTS_PASSWORD_LENGTH","features":[106]},{"name":"WTS_PERF_DISABLE_CURSORSETTINGS","features":[106]},{"name":"WTS_PERF_DISABLE_CURSOR_SHADOW","features":[106]},{"name":"WTS_PERF_DISABLE_FULLWINDOWDRAG","features":[106]},{"name":"WTS_PERF_DISABLE_MENUANIMATIONS","features":[106]},{"name":"WTS_PERF_DISABLE_NOTHING","features":[106]},{"name":"WTS_PERF_DISABLE_THEMING","features":[106]},{"name":"WTS_PERF_DISABLE_WALLPAPER","features":[106]},{"name":"WTS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[106]},{"name":"WTS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[106]},{"name":"WTS_PERF_ENABLE_FONT_SMOOTHING","features":[106]},{"name":"WTS_POLICY_DATA","features":[3,106]},{"name":"WTS_PROCESS_INFOA","features":[6,106]},{"name":"WTS_PROCESS_INFOW","features":[6,106]},{"name":"WTS_PROCESS_INFO_EXA","features":[6,106]},{"name":"WTS_PROCESS_INFO_EXW","features":[6,106]},{"name":"WTS_PROCESS_INFO_LEVEL_0","features":[106]},{"name":"WTS_PROCESS_INFO_LEVEL_1","features":[106]},{"name":"WTS_PROPERTY_DEFAULT_CONFIG","features":[106]},{"name":"WTS_PROPERTY_VALUE","features":[106]},{"name":"WTS_PROTOCOL_CACHE","features":[106]},{"name":"WTS_PROTOCOL_COUNTERS","features":[106]},{"name":"WTS_PROTOCOL_NAME_LENGTH","features":[106]},{"name":"WTS_PROTOCOL_STATUS","features":[106]},{"name":"WTS_PROTOCOL_TYPE_CONSOLE","features":[106]},{"name":"WTS_PROTOCOL_TYPE_ICA","features":[106]},{"name":"WTS_PROTOCOL_TYPE_RDP","features":[106]},{"name":"WTS_QUERY_ALLOWED_INITIAL_APP","features":[106]},{"name":"WTS_QUERY_AUDIOENUM_DLL","features":[106]},{"name":"WTS_QUERY_LOGON_SCREEN_SIZE","features":[106]},{"name":"WTS_QUERY_MF_FORMAT_SUPPORT","features":[106]},{"name":"WTS_RCM_DRAIN_STATE","features":[106]},{"name":"WTS_RCM_SERVICE_STATE","features":[106]},{"name":"WTS_SECURITY_ALL_ACCESS","features":[106]},{"name":"WTS_SECURITY_CONNECT","features":[106]},{"name":"WTS_SECURITY_CURRENT_GUEST_ACCESS","features":[106]},{"name":"WTS_SECURITY_CURRENT_USER_ACCESS","features":[106]},{"name":"WTS_SECURITY_DISCONNECT","features":[106]},{"name":"WTS_SECURITY_FLAGS","features":[106]},{"name":"WTS_SECURITY_GUEST_ACCESS","features":[106]},{"name":"WTS_SECURITY_LOGOFF","features":[106]},{"name":"WTS_SECURITY_LOGON","features":[106]},{"name":"WTS_SECURITY_MESSAGE","features":[106]},{"name":"WTS_SECURITY_QUERY_INFORMATION","features":[106]},{"name":"WTS_SECURITY_REMOTE_CONTROL","features":[106]},{"name":"WTS_SECURITY_RESET","features":[106]},{"name":"WTS_SECURITY_SET_INFORMATION","features":[106]},{"name":"WTS_SECURITY_USER_ACCESS","features":[106]},{"name":"WTS_SECURITY_VIRTUAL_CHANNELS","features":[106]},{"name":"WTS_SERVER_INFOA","features":[106]},{"name":"WTS_SERVER_INFOW","features":[106]},{"name":"WTS_SERVICE_NONE","features":[106]},{"name":"WTS_SERVICE_START","features":[106]},{"name":"WTS_SERVICE_STATE","features":[106]},{"name":"WTS_SERVICE_STOP","features":[106]},{"name":"WTS_SESSIONSTATE_LOCK","features":[106]},{"name":"WTS_SESSIONSTATE_UNKNOWN","features":[106]},{"name":"WTS_SESSIONSTATE_UNLOCK","features":[106]},{"name":"WTS_SESSION_ADDRESS","features":[106]},{"name":"WTS_SESSION_ID","features":[106]},{"name":"WTS_SESSION_INFOA","features":[106]},{"name":"WTS_SESSION_INFOW","features":[106]},{"name":"WTS_SESSION_INFO_1A","features":[106]},{"name":"WTS_SESSION_INFO_1W","features":[106]},{"name":"WTS_SMALL_RECT","features":[106]},{"name":"WTS_SOCKADDR","features":[106]},{"name":"WTS_SYSTEMTIME","features":[106]},{"name":"WTS_TIME_ZONE_INFORMATION","features":[106]},{"name":"WTS_TYPE_CLASS","features":[106]},{"name":"WTS_USERNAME_LENGTH","features":[106]},{"name":"WTS_USER_CREDENTIAL","features":[106]},{"name":"WTS_USER_DATA","features":[106]},{"name":"WTS_VALIDATION_INFORMATIONA","features":[106]},{"name":"WTS_VALIDATION_INFORMATIONW","features":[106]},{"name":"WTS_VALUE_TYPE_BINARY","features":[106]},{"name":"WTS_VALUE_TYPE_GUID","features":[106]},{"name":"WTS_VALUE_TYPE_STRING","features":[106]},{"name":"WTS_VALUE_TYPE_ULONG","features":[106]},{"name":"WTS_VIRTUAL_CLASS","features":[106]},{"name":"WTS_WSD_FASTREBOOT","features":[106]},{"name":"WTS_WSD_LOGOFF","features":[106]},{"name":"WTS_WSD_POWEROFF","features":[106]},{"name":"WTS_WSD_REBOOT","features":[106]},{"name":"WTS_WSD_SHUTDOWN","features":[106]},{"name":"Workspace","features":[106]},{"name":"_ITSWkspEvents","features":[106]},{"name":"pluginResource","features":[106]},{"name":"pluginResource2","features":[106]},{"name":"pluginResource2FileAssociation","features":[106]}],"600":[{"name":"ERROR_REDIRECT_LOCATION_INVALID","features":[197]},{"name":"ERROR_REDIRECT_LOCATION_TOO_LONG","features":[197]},{"name":"ERROR_SERVICE_CBT_HARDENING_INVALID","features":[197]},{"name":"ERROR_WINRS_CLIENT_CLOSERECEIVEHANDLE_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_CLOSESENDHANDLE_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_CLOSESHELL_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_CREATESHELL_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_FREECREATESHELLRESULT_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_FREEPULLRESULT_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_FREERUNCOMMANDRESULT_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_GET_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_INVALID_FLAG","features":[197]},{"name":"ERROR_WINRS_CLIENT_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_PULL_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_PUSH_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_RECEIVE_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_RUNCOMMAND_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_SEND_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CLIENT_SIGNAL_NULL_PARAM","features":[197]},{"name":"ERROR_WINRS_CODE_PAGE_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WINRS_CONNECT_RESPONSE_BAD_BODY","features":[197]},{"name":"ERROR_WINRS_IDLETIMEOUT_OUTOFBOUNDS","features":[197]},{"name":"ERROR_WINRS_RECEIVE_IN_PROGRESS","features":[197]},{"name":"ERROR_WINRS_RECEIVE_NO_RESPONSE_DATA","features":[197]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_NOT_VALID","features":[197]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_RESOURCE_CONFLICT","features":[197]},{"name":"ERROR_WINRS_SHELLCOMMAND_DISCONNECT_OPERATION_NOT_VALID","features":[197]},{"name":"ERROR_WINRS_SHELLCOMMAND_RECONNECT_OPERATION_NOT_VALID","features":[197]},{"name":"ERROR_WINRS_SHELL_CLIENTID_NOT_VALID","features":[197]},{"name":"ERROR_WINRS_SHELL_CLIENTID_RESOURCE_CONFLICT","features":[197]},{"name":"ERROR_WINRS_SHELL_CLIENTSESSIONID_MISMATCH","features":[197]},{"name":"ERROR_WINRS_SHELL_CONNECTED_TO_DIFFERENT_CLIENT","features":[197]},{"name":"ERROR_WINRS_SHELL_DISCONNECTED","features":[197]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_GRACEFUL","features":[197]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_VALID","features":[197]},{"name":"ERROR_WINRS_SHELL_RECONNECT_OPERATION_NOT_VALID","features":[197]},{"name":"ERROR_WINRS_SHELL_URI_INVALID","features":[197]},{"name":"ERROR_WSMAN_ACK_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_ACTION_MISMATCH","features":[197]},{"name":"ERROR_WSMAN_ACTION_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_EPR","features":[197]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_OBJECT","features":[197]},{"name":"ERROR_WSMAN_ALREADY_EXISTS","features":[197]},{"name":"ERROR_WSMAN_AMBIGUOUS_SELECTORS","features":[197]},{"name":"ERROR_WSMAN_AUTHENTICATION_INVALID_FLAG","features":[197]},{"name":"ERROR_WSMAN_AUTHORIZATION_MODE_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_BAD_METHOD","features":[197]},{"name":"ERROR_WSMAN_BATCHSIZE_TOO_SMALL","features":[197]},{"name":"ERROR_WSMAN_BATCH_COMPLETE","features":[197]},{"name":"ERROR_WSMAN_BOOKMARKS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_BOOKMARK_EXPIRED","features":[197]},{"name":"ERROR_WSMAN_CANNOT_CHANGE_KEYS","features":[197]},{"name":"ERROR_WSMAN_CANNOT_DECRYPT","features":[197]},{"name":"ERROR_WSMAN_CANNOT_PROCESS_FILTER","features":[197]},{"name":"ERROR_WSMAN_CANNOT_USE_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS_FOR_HTTP","features":[197]},{"name":"ERROR_WSMAN_CANNOT_USE_CERTIFICATES_FOR_HTTP","features":[197]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_CREDSSP","features":[197]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_HTTP","features":[197]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_KERBEROS","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_CONFIGLIMIT_EXCEEDED","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_CREDENTIAL_MANAGEMENT_FAILIED","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDISSUERKEY","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDSUBJECTKEY","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDUSERCREDENTIALS","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDBLANK","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDTOOLONG","features":[197]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDUSERTUPLE","features":[197]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE","features":[197]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE_CLIENT","features":[197]},{"name":"ERROR_WSMAN_CERT_MISSING_AUTH_FLAG","features":[197]},{"name":"ERROR_WSMAN_CERT_MULTIPLE_CREDENTIALS_FLAG","features":[197]},{"name":"ERROR_WSMAN_CERT_NOT_FOUND","features":[197]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_BLANK","features":[197]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_NOT_BLANK","features":[197]},{"name":"ERROR_WSMAN_CHARACTER_SET","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS_NTLMONLY","features":[197]},{"name":"ERROR_WSMAN_CLIENT_BASIC_AUTHENTICATION_DISABLED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_BATCH_ITEMS_TOO_SMALL","features":[197]},{"name":"ERROR_WSMAN_CLIENT_BLANK_ACTION_URI","features":[197]},{"name":"ERROR_WSMAN_CLIENT_BLANK_INPUT_XML","features":[197]},{"name":"ERROR_WSMAN_CLIENT_BLANK_URI","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CERTIFICATES_AUTHENTICATION_DISABLED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CERT_NEEDED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_LOCATION","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_TYPE","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_CREDS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_USERNAME","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CLOSECOMMAND_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CLOSESHELL_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_COMPRESSION_INVALID_OPTION","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CONNECTCOMMAND_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CONNECTSHELL_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CONSTRUCTERROR_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREATESESSION_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NAME_INVALID","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FLAG_NEEDED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_DEFAULT_AUTHENTICATION","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_PROXY_AUTHENTICATION","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_NEEDED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_CREDSSP_AUTHENTICATION_DISABLED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_DECODEOBJECT_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_DELIVERENDSUBSCRIPTION_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_DELIVEREVENTS_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_DIGEST_AUTHENTICATION_DISABLED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_DISABLE_LOOPBACK_WITH_EXPLICIT_CREDENTIALS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_DISCONNECTSHELL_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ENCODEOBJECT_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATE_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDEVENT_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDOBJECT_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORNEXTOBJECT_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ENUM_RECEIVED_TOO_MANY_ITEMS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_GETBOOKMARK_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_GETERRORMESSAGE_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_INVALID_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_INVALID_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_STRING_INVALID_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INITIALIZE_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT_DNS_OR_UPN","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_COMMAND_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_SHELL_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CREATE_SHELL_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DEINIT_APPLICATION_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DELIVERY_RETRY","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISABLE_LOOPBACK","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISCONNECT_SHELL_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_GETERRORMESSAGE_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_INIT_APPLICATION_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LANGUAGE_CODE","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LOCALE","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RECEIVE_SHELL_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RESOURCE_LOCATOR","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RUNCOMMAND_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_PARAMETER","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SHELL_COMMAND_PAIR","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SIGNAL_SHELL_FLAG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_INVALID_UI_LANGUAGE","features":[197]},{"name":"ERROR_WSMAN_CLIENT_KERBEROS_AUTHENTICATION_DISABLED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CONNECTION_OPTIONS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CREDS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_MAX_CHARS_TOO_SMALL","features":[197]},{"name":"ERROR_WSMAN_CLIENT_MISSING_EXPIRATION","features":[197]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_AUTH_FLAGS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_DELIVERY_MODES","features":[197]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENUM_MODE_FLAGS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENVELOPE_POLICIES","features":[197]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_PROXY_AUTH_FLAGS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_NEGOTIATE_AUTHENTICATION_DISABLED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_NO_HANDLE","features":[197]},{"name":"ERROR_WSMAN_CLIENT_NO_SOURCES","features":[197]},{"name":"ERROR_WSMAN_CLIENT_NULL_ISSUERS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_NULL_PUBLISHERS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_NULL_RESULT_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_PULL_INVALID_FLAGS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_PUSH_HOST_TOO_LONG","features":[197]},{"name":"ERROR_WSMAN_CLIENT_PUSH_UNSUPPORTED_TRANSPORT","features":[197]},{"name":"ERROR_WSMAN_CLIENT_RECEIVE_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELLCOMMAND_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELL_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NOTCOMPLETED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_SEND_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_SESSION_UNUSABLE","features":[197]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_INVALID_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_SIGNAL_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_SPN_WRONG_AUTH","features":[197]},{"name":"ERROR_WSMAN_CLIENT_SUBSCRIBE_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_DISABLED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_HTTP_ONLY","features":[197]},{"name":"ERROR_WSMAN_CLIENT_UNKNOWN_EXPIRATION_TYPE","features":[197]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_AND_PASSWORD_NEEDED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_PASSWORD_NEEDED","features":[197]},{"name":"ERROR_WSMAN_CLIENT_WORKGROUP_NO_KERBEROS","features":[197]},{"name":"ERROR_WSMAN_CLIENT_ZERO_HEARTBEAT","features":[197]},{"name":"ERROR_WSMAN_COMMAND_ALREADY_CLOSED","features":[197]},{"name":"ERROR_WSMAN_COMMAND_TERMINATED","features":[197]},{"name":"ERROR_WSMAN_CONCURRENCY","features":[197]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_CERTMAPPING_KEYS","features":[197]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_GPO_CONTROLLED_SETTING","features":[197]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_MUTUAL","features":[197]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_SHARE_SSL_CONFIG","features":[197]},{"name":"ERROR_WSMAN_CONFIG_CERT_CN_DOES_NOT_MATCH_HOSTNAME","features":[197]},{"name":"ERROR_WSMAN_CONFIG_CORRUPTED","features":[197]},{"name":"ERROR_WSMAN_CONFIG_GROUP_POLICY_CHANGE_NOTIFICATION_SUBSCRIPTION_FAILED","features":[197]},{"name":"ERROR_WSMAN_CONFIG_HOSTNAME_CHANGE_WITHOUT_CERT","features":[197]},{"name":"ERROR_WSMAN_CONFIG_PORT_INVALID","features":[197]},{"name":"ERROR_WSMAN_CONFIG_READONLY_PROPERTY","features":[197]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_OPERATION_ON_KEY","features":[197]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_PROCESSPATH","features":[197]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_CMDSHELLURI_NOTPERMITTED","features":[197]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_INVALID","features":[197]},{"name":"ERROR_WSMAN_CONFIG_THUMBPRINT_SHOULD_BE_EMPTY","features":[197]},{"name":"ERROR_WSMAN_CONNECTIONSTR_INVALID","features":[197]},{"name":"ERROR_WSMAN_CONNECTOR_GET","features":[197]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_ENVIRONMENT_VARIABLE_NAME","features":[197]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_STREAMID","features":[197]},{"name":"ERROR_WSMAN_CREATESHELL_RUNAS_FAILED","features":[197]},{"name":"ERROR_WSMAN_CREATE_RESPONSE_NO_EPR","features":[197]},{"name":"ERROR_WSMAN_CREDSSP_USERNAME_PASSWORD_NEEDED","features":[197]},{"name":"ERROR_WSMAN_CREDS_PASSED_WITH_NO_AUTH_FLAG","features":[197]},{"name":"ERROR_WSMAN_CUSTOMREMOTESHELL_DEPRECATED","features":[197]},{"name":"ERROR_WSMAN_DEFAULTAUTH_IPADDRESS","features":[197]},{"name":"ERROR_WSMAN_DELIVERY_REFUSED","features":[197]},{"name":"ERROR_WSMAN_DELIVERY_RETRIES_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_DELIVER_IN_PROGRESS","features":[197]},{"name":"ERROR_WSMAN_DEPRECATED_CONFIG_SETTING","features":[197]},{"name":"ERROR_WSMAN_DESERIALIZE_CLASS","features":[197]},{"name":"ERROR_WSMAN_DESTINATION_INVALID","features":[197]},{"name":"ERROR_WSMAN_DESTINATION_UNREACHABLE","features":[197]},{"name":"ERROR_WSMAN_DIFFERENT_AUTHZ_TOKEN","features":[197]},{"name":"ERROR_WSMAN_DIFFERENT_CIM_SELECTOR","features":[197]},{"name":"ERROR_WSMAN_DUPLICATE_SELECTORS","features":[197]},{"name":"ERROR_WSMAN_ENCODING_LIMIT","features":[197]},{"name":"ERROR_WSMAN_ENCODING_TYPE","features":[197]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE","features":[197]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE_INVALID_VALUE","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_CANNOT_PROCESS_FILTER","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_FILTERING_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_FILTER_DIALECT_REQUESTED_UNAVAILABLE","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_ENUMERATION_CONTEXT","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_EXPIRATION_TIME","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMAMNDS_FILTER_EXPECTED","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMMANDS_EPRS_NOTSUPPORTED","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_TIMED_OUT","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_UNABLE_TO_RENEW","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TIME","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TYPE","features":[197]},{"name":"ERROR_WSMAN_ENUMERATE_WMI_INVALID_KEY","features":[197]},{"name":"ERROR_WSMAN_ENUMERATION_CLOSED","features":[197]},{"name":"ERROR_WSMAN_ENUMERATION_INITIALIZING","features":[197]},{"name":"ERROR_WSMAN_ENUMERATION_INVALID","features":[197]},{"name":"ERROR_WSMAN_ENUMERATION_MODE_UNSUPPORTED","features":[197]},{"name":"ERROR_WSMAN_ENVELOPE_TOO_LARGE","features":[197]},{"name":"ERROR_WSMAN_EPR_NESTING_EXCEEDED","features":[197]},{"name":"ERROR_WSMAN_EVENTING_CONCURRENT_CLIENT_RECEIVE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_DELIVERYFAILED_FROMSOURCE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_INVALID","features":[197]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_UNAVAILABLE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_FAST_SENDER","features":[197]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_REQUESTED_UNAVAILABLE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INCOMPATIBLE_BATCHPARAMS_AND_DELIVERYMODE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INSECURE_PUSHSUBSCRIPTION_CONNECTION","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENCODING_IN_DELIVERY","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENDTO_ADDRESSS","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EVENTSOURCE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EXPIRATION_TIME","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_HEARTBEAT","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_INCOMING_EVENT_PACKET_HEADER","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_LOCALE_IN_DELIVERY","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_MESSAGE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_INVALID_NOTIFYTO_ADDRESSS","features":[197]},{"name":"ERROR_WSMAN_EVENTING_LOOPBACK_TESTFAILED","features":[197]},{"name":"ERROR_WSMAN_EVENTING_MISSING_LOCALE_IN_DELIVERY","features":[197]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO","features":[197]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO_ADDRESSS","features":[197]},{"name":"ERROR_WSMAN_EVENTING_NOMATCHING_LISTENER","features":[197]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_COLLECTOR","features":[197]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_PUBLISHER","features":[197]},{"name":"ERROR_WSMAN_EVENTING_PUSH_SUBSCRIPTION_NOACTIVATE_EVENTSOURCE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_SOURCE_UNABLE_TO_PROCESS","features":[197]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTIONCLOSED_BYREMOTESERVICE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTION_CANCELLED_BYSOURCE","features":[197]},{"name":"ERROR_WSMAN_EVENTING_UNABLE_TO_RENEW","features":[197]},{"name":"ERROR_WSMAN_EVENTING_UNSUPPORTED_EXPIRATION_TYPE","features":[197]},{"name":"ERROR_WSMAN_EXPIRATION_TIME_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_EXPLICIT_CREDENTIALS_REQUIRED","features":[197]},{"name":"ERROR_WSMAN_FAILED_AUTHENTICATION","features":[197]},{"name":"ERROR_WSMAN_FEATURE_DEPRECATED","features":[197]},{"name":"ERROR_WSMAN_FILE_NOT_PRESENT","features":[197]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED","features":[197]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_FORMAT_MISMATCH_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_FORMAT_SECURITY_TOKEN_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_FRAGMENT_DIALECT_REQUESTED_UNAVAILABLE","features":[197]},{"name":"ERROR_WSMAN_FRAGMENT_TRANSFER_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_GETCLASS","features":[197]},{"name":"ERROR_WSMAN_HEARTBEATS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_HTML_ERROR","features":[197]},{"name":"ERROR_WSMAN_HTTP_CONTENT_TYPE_MISSMATCH_RESPONSE_DATA","features":[197]},{"name":"ERROR_WSMAN_HTTP_INVALID_CONTENT_TYPE_IN_RESPONSE_DATA","features":[197]},{"name":"ERROR_WSMAN_HTTP_NOT_FOUND_STATUS","features":[197]},{"name":"ERROR_WSMAN_HTTP_NO_RESPONSE_DATA","features":[197]},{"name":"ERROR_WSMAN_HTTP_REQUEST_TOO_LARGE_STATUS","features":[197]},{"name":"ERROR_WSMAN_HTTP_SERVICE_UNAVAILABLE_STATUS","features":[197]},{"name":"ERROR_WSMAN_HTTP_STATUS_BAD_REQUEST","features":[197]},{"name":"ERROR_WSMAN_HTTP_STATUS_SERVER_ERROR","features":[197]},{"name":"ERROR_WSMAN_IISCONFIGURATION_READ_FAILED","features":[197]},{"name":"ERROR_WSMAN_INCOMPATIBLE_EPR","features":[197]},{"name":"ERROR_WSMAN_INEXISTENT_MAC_ADDRESS","features":[197]},{"name":"ERROR_WSMAN_INSECURE_ADDRESS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_INSUFFCIENT_SELECTORS","features":[197]},{"name":"ERROR_WSMAN_INSUFFICIENT_METADATA_FOR_BASIC","features":[197]},{"name":"ERROR_WSMAN_INVALID_ACTIONURI","features":[197]},{"name":"ERROR_WSMAN_INVALID_BATCH_PARAMETER","features":[197]},{"name":"ERROR_WSMAN_INVALID_BATCH_SETTINGS_PARAMETER","features":[197]},{"name":"ERROR_WSMAN_INVALID_BOOKMARK","features":[197]},{"name":"ERROR_WSMAN_INVALID_CHARACTERS_IN_RESPONSE","features":[197]},{"name":"ERROR_WSMAN_INVALID_CONFIGSDDL_URL","features":[197]},{"name":"ERROR_WSMAN_INVALID_CONNECTIONRETRY","features":[197]},{"name":"ERROR_WSMAN_INVALID_FILEPATH","features":[197]},{"name":"ERROR_WSMAN_INVALID_FILTER_XML","features":[197]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_DIALECT","features":[197]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH","features":[197]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH_BLANK","features":[197]},{"name":"ERROR_WSMAN_INVALID_HEADER","features":[197]},{"name":"ERROR_WSMAN_INVALID_HOSTNAME_PATTERN","features":[197]},{"name":"ERROR_WSMAN_INVALID_IPFILTER","features":[197]},{"name":"ERROR_WSMAN_INVALID_KEY","features":[197]},{"name":"ERROR_WSMAN_INVALID_LITERAL_URI","features":[197]},{"name":"ERROR_WSMAN_INVALID_MESSAGE_INFORMATION_HEADER","features":[197]},{"name":"ERROR_WSMAN_INVALID_OPTIONS","features":[197]},{"name":"ERROR_WSMAN_INVALID_OPTIONSET","features":[197]},{"name":"ERROR_WSMAN_INVALID_OPTION_NO_PROXY_SERVER","features":[197]},{"name":"ERROR_WSMAN_INVALID_PARAMETER","features":[197]},{"name":"ERROR_WSMAN_INVALID_PARAMETER_NAME","features":[197]},{"name":"ERROR_WSMAN_INVALID_PROPOSED_ID","features":[197]},{"name":"ERROR_WSMAN_INVALID_PROVIDER_RESPONSE","features":[197]},{"name":"ERROR_WSMAN_INVALID_PUBLISHERS_TYPE","features":[197]},{"name":"ERROR_WSMAN_INVALID_REDIRECT_ERROR","features":[197]},{"name":"ERROR_WSMAN_INVALID_REPRESENTATION","features":[197]},{"name":"ERROR_WSMAN_INVALID_RESOURCE_URI","features":[197]},{"name":"ERROR_WSMAN_INVALID_RESUMPTION_CONTEXT","features":[197]},{"name":"ERROR_WSMAN_INVALID_SECURITY_DESCRIPTOR","features":[197]},{"name":"ERROR_WSMAN_INVALID_SELECTORS","features":[197]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_NAME","features":[197]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_VALUE","features":[197]},{"name":"ERROR_WSMAN_INVALID_SOAP_BODY","features":[197]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIBE_OBJECT","features":[197]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIPTION_MANAGER","features":[197]},{"name":"ERROR_WSMAN_INVALID_SYSTEM","features":[197]},{"name":"ERROR_WSMAN_INVALID_TARGET_RESOURCEURI","features":[197]},{"name":"ERROR_WSMAN_INVALID_TARGET_SELECTORS","features":[197]},{"name":"ERROR_WSMAN_INVALID_TARGET_SYSTEM","features":[197]},{"name":"ERROR_WSMAN_INVALID_TIMEOUT_HEADER","features":[197]},{"name":"ERROR_WSMAN_INVALID_URI","features":[197]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_ENUM_WQL","features":[197]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_SINGLETON","features":[197]},{"name":"ERROR_WSMAN_INVALID_USESSL_PARAM","features":[197]},{"name":"ERROR_WSMAN_INVALID_XML","features":[197]},{"name":"ERROR_WSMAN_INVALID_XML_FRAGMENT","features":[197]},{"name":"ERROR_WSMAN_INVALID_XML_MISSING_VALUES","features":[197]},{"name":"ERROR_WSMAN_INVALID_XML_NAMESPACE","features":[197]},{"name":"ERROR_WSMAN_INVALID_XML_RUNAS_DISABLED","features":[197]},{"name":"ERROR_WSMAN_INVALID_XML_VALUES","features":[197]},{"name":"ERROR_WSMAN_KERBEROS_IPADDRESS","features":[197]},{"name":"ERROR_WSMAN_LISTENER_ADDRESS_INVALID","features":[197]},{"name":"ERROR_WSMAN_LOCALE_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_MACHINE_OPTION_REQUIRED","features":[197]},{"name":"ERROR_WSMAN_MAXENVELOPE_POLICY_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_MAXENVELOPE_SIZE_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_MAXITEMS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_MAXTIME_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_MAX_ELEMENTS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE","features":[197]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE_EXCEEDED","features":[197]},{"name":"ERROR_WSMAN_MESSAGE_INFORMATION_HEADER_REQUIRED","features":[197]},{"name":"ERROR_WSMAN_METADATA_REDIRECT","features":[197]},{"name":"ERROR_WSMAN_MIN_ENVELOPE_SIZE","features":[197]},{"name":"ERROR_WSMAN_MISSING_CLASSNAME","features":[197]},{"name":"ERROR_WSMAN_MISSING_FRAGMENT_PATH","features":[197]},{"name":"ERROR_WSMAN_MULTIPLE_CREDENTIALS","features":[197]},{"name":"ERROR_WSMAN_MUSTUNDERSTAND_ON_LOCALE_UNSUPPORTED","features":[197]},{"name":"ERROR_WSMAN_MUTUAL_AUTH_FAILED","features":[197]},{"name":"ERROR_WSMAN_NAME_NOT_RESOLVED","features":[197]},{"name":"ERROR_WSMAN_NETWORK_TIMEDOUT","features":[197]},{"name":"ERROR_WSMAN_NEW_DESERIALIZER","features":[197]},{"name":"ERROR_WSMAN_NEW_SESSION","features":[197]},{"name":"ERROR_WSMAN_NON_PULL_SUBSCRIPTION_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_NO_ACK","features":[197]},{"name":"ERROR_WSMAN_NO_CERTMAPPING_OPERATION_FOR_LOCAL_SESSION","features":[197]},{"name":"ERROR_WSMAN_NO_COMMANDID","features":[197]},{"name":"ERROR_WSMAN_NO_COMMAND_RESPONSE","features":[197]},{"name":"ERROR_WSMAN_NO_DHCP_ADDRESSES","features":[197]},{"name":"ERROR_WSMAN_NO_IDENTIFY_FOR_LOCAL_SESSION","features":[197]},{"name":"ERROR_WSMAN_NO_PUSH_SUBSCRIPTION_FOR_LOCAL_SESSION","features":[197]},{"name":"ERROR_WSMAN_NO_RECEIVE_RESPONSE","features":[197]},{"name":"ERROR_WSMAN_NO_UNICAST_ADDRESSES","features":[197]},{"name":"ERROR_WSMAN_NULL_KEY","features":[197]},{"name":"ERROR_WSMAN_OBJECTONLY_INVALID","features":[197]},{"name":"ERROR_WSMAN_OPERATION_TIMEDOUT","features":[197]},{"name":"ERROR_WSMAN_OPERATION_TIMEOUT_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_NAME","features":[197]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_VALUE","features":[197]},{"name":"ERROR_WSMAN_OPTIONS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_OPTION_LIMIT","features":[197]},{"name":"ERROR_WSMAN_PARAMETER_TYPE_MISMATCH","features":[197]},{"name":"ERROR_WSMAN_PLUGIN_CONFIGURATION_CORRUPTED","features":[197]},{"name":"ERROR_WSMAN_PLUGIN_FAILED","features":[197]},{"name":"ERROR_WSMAN_POLICY_CANNOT_COMPLY","features":[197]},{"name":"ERROR_WSMAN_POLICY_CORRUPTED","features":[197]},{"name":"ERROR_WSMAN_POLICY_TOO_COMPLEX","features":[197]},{"name":"ERROR_WSMAN_POLYMORPHISM_MODE_UNSUPPORTED","features":[197]},{"name":"ERROR_WSMAN_PORT_INVALID","features":[197]},{"name":"ERROR_WSMAN_PROVIDER_FAILURE","features":[197]},{"name":"ERROR_WSMAN_PROVIDER_LOAD_FAILED","features":[197]},{"name":"ERROR_WSMAN_PROVSYS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_PROXY_ACCESS_TYPE","features":[197]},{"name":"ERROR_WSMAN_PROXY_AUTHENTICATION_INVALID_FLAG","features":[197]},{"name":"ERROR_WSMAN_PUBLIC_FIREWALL_PROFILE_ACTIVE","features":[197]},{"name":"ERROR_WSMAN_PULL_IN_PROGRESS","features":[197]},{"name":"ERROR_WSMAN_PULL_PARAMS_NOT_SAME_AS_ENUM","features":[197]},{"name":"ERROR_WSMAN_PUSHSUBSCRIPTION_INVALIDUSERACCOUNT","features":[197]},{"name":"ERROR_WSMAN_PUSH_SUBSCRIPTION_CONFIG_INVALID","features":[197]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FAILED_CERT_REQUIRED","features":[197]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FIREWALL_EXCEPTIONS_DISALLOWED","features":[197]},{"name":"ERROR_WSMAN_QUICK_CONFIG_LOCAL_POLICY_CHANGE_DISALLOWED","features":[197]},{"name":"ERROR_WSMAN_QUOTA_LIMIT","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_COMMANDS_PER_SHELL_PPQ","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS_USER_PPQ","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINOPERATIONS_PPQ","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINSHELLS_PPQ","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS_PPQ","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLUSERS","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MAX_USERS_PPQ","features":[197]},{"name":"ERROR_WSMAN_QUOTA_MIN_REQUIREMENT_NOT_AVAILABLE_PPQ","features":[197]},{"name":"ERROR_WSMAN_QUOTA_SYSTEM","features":[197]},{"name":"ERROR_WSMAN_QUOTA_USER","features":[197]},{"name":"ERROR_WSMAN_REDIRECT_LOCATION_NOT_AVAILABLE","features":[197]},{"name":"ERROR_WSMAN_REDIRECT_REQUESTED","features":[197]},{"name":"ERROR_WSMAN_REMOTESHELLS_NOT_ALLOWED","features":[197]},{"name":"ERROR_WSMAN_REMOTE_CIMPATH_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_REMOTE_CONNECTION_NOT_ALLOWED","features":[197]},{"name":"ERROR_WSMAN_RENAME_FAILURE","features":[197]},{"name":"ERROR_WSMAN_REQUEST_INIT_ERROR","features":[197]},{"name":"ERROR_WSMAN_REQUEST_NOT_SUPPORTED_AT_SERVICE","features":[197]},{"name":"ERROR_WSMAN_RESOURCE_NOT_FOUND","features":[197]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_ENUMERATION_CONTEXT","features":[197]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_MESSAGE_INFORMATION_HEADER","features":[197]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_SOAP_FAULT","features":[197]},{"name":"ERROR_WSMAN_RESPONSE_NO_RESULTS","features":[197]},{"name":"ERROR_WSMAN_RESPONSE_NO_SOAP_HEADER_BODY","features":[197]},{"name":"ERROR_WSMAN_RESPONSE_NO_XML_FRAGMENT_WRAPPER","features":[197]},{"name":"ERROR_WSMAN_RESUMPTION_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_RESUMPTION_TYPE_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_RUNASUSER_MANAGEDACCOUNT_LOGON_FAILED","features":[197]},{"name":"ERROR_WSMAN_RUNAS_INVALIDUSERCREDENTIALS","features":[197]},{"name":"ERROR_WSMAN_RUNSHELLCOMMAND_NULL_ARGUMENT","features":[197]},{"name":"ERROR_WSMAN_SCHEMA_VALIDATION_ERROR","features":[197]},{"name":"ERROR_WSMAN_SECURITY_UNMAPPED","features":[197]},{"name":"ERROR_WSMAN_SELECTOR_LIMIT","features":[197]},{"name":"ERROR_WSMAN_SELECTOR_TYPEMISMATCH","features":[197]},{"name":"ERROR_WSMAN_SEMANTICCALLBACK_TIMEDOUT","features":[197]},{"name":"ERROR_WSMAN_SENDHEARBEAT_EMPTY_ENUMERATOR","features":[197]},{"name":"ERROR_WSMAN_SENDSHELLINPUT_INVALID_STREAMID_INDEX","features":[197]},{"name":"ERROR_WSMAN_SERVER_DESTINATION_LOCALHOST","features":[197]},{"name":"ERROR_WSMAN_SERVER_ENVELOPE_LIMIT","features":[197]},{"name":"ERROR_WSMAN_SERVER_NONPULLSUBSCRIBE_NULL_PARAM","features":[197]},{"name":"ERROR_WSMAN_SERVER_NOT_TRUSTED","features":[197]},{"name":"ERROR_WSMAN_SERVICE_REMOTE_ACCESS_DISABLED","features":[197]},{"name":"ERROR_WSMAN_SERVICE_STREAM_DISCONNECTED","features":[197]},{"name":"ERROR_WSMAN_SESSION_ALREADY_CLOSED","features":[197]},{"name":"ERROR_WSMAN_SHELL_ALREADY_CLOSED","features":[197]},{"name":"ERROR_WSMAN_SHELL_INVALID_COMMAND_HANDLE","features":[197]},{"name":"ERROR_WSMAN_SHELL_INVALID_DESIRED_STREAMS","features":[197]},{"name":"ERROR_WSMAN_SHELL_INVALID_INPUT_STREAM","features":[197]},{"name":"ERROR_WSMAN_SHELL_INVALID_SHELL_HANDLE","features":[197]},{"name":"ERROR_WSMAN_SHELL_NOT_INITIALIZED","features":[197]},{"name":"ERROR_WSMAN_SHELL_SYNCHRONOUS_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_SOAP_DATA_ENCODING_UNKNOWN","features":[197]},{"name":"ERROR_WSMAN_SOAP_FAULT_MUST_UNDERSTAND","features":[197]},{"name":"ERROR_WSMAN_SOAP_VERSION_MISMATCH","features":[197]},{"name":"ERROR_WSMAN_SSL_CONNECTION_ABORTED","features":[197]},{"name":"ERROR_WSMAN_SUBSCRIBE_WMI_INVALID_KEY","features":[197]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLIENT_DID_NOT_CALL_WITHIN_HEARTBEAT","features":[197]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSED","features":[197]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSE_IN_PROGRESS","features":[197]},{"name":"ERROR_WSMAN_SUBSCRIPTION_LISTENER_NOLONGERVALID","features":[197]},{"name":"ERROR_WSMAN_SUBSCRIPTION_NO_HEARTBEAT","features":[197]},{"name":"ERROR_WSMAN_SYSTEM_NOT_FOUND","features":[197]},{"name":"ERROR_WSMAN_TARGET_ALREADY_EXISTS","features":[197]},{"name":"ERROR_WSMAN_TRANSPORT_NOT_SUPPORTED","features":[197]},{"name":"ERROR_WSMAN_UNEXPECTED_SELECTORS","features":[197]},{"name":"ERROR_WSMAN_UNKNOWN_HTTP_STATUS_RETURNED","features":[197]},{"name":"ERROR_WSMAN_UNREPORTABLE_SUCCESS","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_ADDRESSING_MODE","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_ENCODING","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_IDENTIFY","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_OPTIONS","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_HTTP_STATUS_REDIRECT","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_MEDIA","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_OCTETTYPE","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_TIMEOUT","features":[197]},{"name":"ERROR_WSMAN_UNSUPPORTED_TYPE","features":[197]},{"name":"ERROR_WSMAN_URISECURITY_INVALIDURIKEY","features":[197]},{"name":"ERROR_WSMAN_URI_LIMIT","features":[197]},{"name":"ERROR_WSMAN_URI_NON_DMTF_CLASS","features":[197]},{"name":"ERROR_WSMAN_URI_QUERY_STRING_SYNTAX_ERROR","features":[197]},{"name":"ERROR_WSMAN_URI_SECURITY_URI","features":[197]},{"name":"ERROR_WSMAN_URI_WRONG_DMTF_VERSION","features":[197]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED","features":[197]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED_DOWNLEVEL","features":[197]},{"name":"ERROR_WSMAN_WHITESPACE","features":[197]},{"name":"ERROR_WSMAN_WMI_CANNOT_CONNECT_ACCESS_DENIED","features":[197]},{"name":"ERROR_WSMAN_WMI_INVALID_VALUE","features":[197]},{"name":"ERROR_WSMAN_WMI_MAX_NESTED","features":[197]},{"name":"ERROR_WSMAN_WMI_PROVIDER_ACCESS_DENIED","features":[197]},{"name":"ERROR_WSMAN_WMI_PROVIDER_INVALID_PARAMETER","features":[197]},{"name":"ERROR_WSMAN_WMI_PROVIDER_NOT_CAPABLE","features":[197]},{"name":"ERROR_WSMAN_WMI_SVC_ACCESS_DENIED","features":[197]},{"name":"ERROR_WSMAN_WRONG_METADATA","features":[197]},{"name":"IWSMan","features":[197]},{"name":"IWSManConnectionOptions","features":[197]},{"name":"IWSManConnectionOptionsEx","features":[197]},{"name":"IWSManConnectionOptionsEx2","features":[197]},{"name":"IWSManEnumerator","features":[197]},{"name":"IWSManEx","features":[197]},{"name":"IWSManEx2","features":[197]},{"name":"IWSManEx3","features":[197]},{"name":"IWSManInternal","features":[197]},{"name":"IWSManResourceLocator","features":[197]},{"name":"IWSManResourceLocatorInternal","features":[197]},{"name":"IWSManSession","features":[197]},{"name":"WSMAN_API_HANDLE","features":[197]},{"name":"WSMAN_AUTHENTICATION_CREDENTIALS","features":[197]},{"name":"WSMAN_AUTHZ_QUOTA","features":[197]},{"name":"WSMAN_CERTIFICATE_DETAILS","features":[197]},{"name":"WSMAN_CMDSHELL_OPTION_CODEPAGE","features":[197]},{"name":"WSMAN_CMDSHELL_OPTION_CONSOLEMODE_STDIN","features":[197]},{"name":"WSMAN_CMDSHELL_OPTION_SKIP_CMD_SHELL","features":[197]},{"name":"WSMAN_COMMAND_ARG_SET","features":[197]},{"name":"WSMAN_COMMAND_HANDLE","features":[197]},{"name":"WSMAN_CONNECT_DATA","features":[197]},{"name":"WSMAN_CREATE_SHELL_DATA","features":[197]},{"name":"WSMAN_DATA","features":[197]},{"name":"WSMAN_DATA_BINARY","features":[197]},{"name":"WSMAN_DATA_NONE","features":[197]},{"name":"WSMAN_DATA_TEXT","features":[197]},{"name":"WSMAN_DATA_TYPE_BINARY","features":[197]},{"name":"WSMAN_DATA_TYPE_DWORD","features":[197]},{"name":"WSMAN_DATA_TYPE_TEXT","features":[197]},{"name":"WSMAN_DEFAULT_TIMEOUT_MS","features":[197]},{"name":"WSMAN_ENVIRONMENT_VARIABLE","features":[197]},{"name":"WSMAN_ENVIRONMENT_VARIABLE_SET","features":[197]},{"name":"WSMAN_ERROR","features":[197]},{"name":"WSMAN_FILTER","features":[197]},{"name":"WSMAN_FLAG_AUTH_BASIC","features":[197]},{"name":"WSMAN_FLAG_AUTH_CLIENT_CERTIFICATE","features":[197]},{"name":"WSMAN_FLAG_AUTH_CREDSSP","features":[197]},{"name":"WSMAN_FLAG_AUTH_DIGEST","features":[197]},{"name":"WSMAN_FLAG_AUTH_KERBEROS","features":[197]},{"name":"WSMAN_FLAG_AUTH_NEGOTIATE","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_OPERATION","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_STREAM","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_NETWORK_FAILURE_DETECTED","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_RECEIVE_DELAY_STREAM_REQUEST_PROCESSED","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_RECONNECTED_AFTER_NETWORK_FAILURE","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_RETRYING_AFTER_NETWORK_FAILURE","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_RETRY_ABORTED_DUE_TO_INTERNAL_ERROR","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTED","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTING","features":[197]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_SUPPORTS_DISCONNECT","features":[197]},{"name":"WSMAN_FLAG_DEFAULT_AUTHENTICATION","features":[197]},{"name":"WSMAN_FLAG_DELETE_SERVER_SESSION","features":[197]},{"name":"WSMAN_FLAG_NO_AUTHENTICATION","features":[197]},{"name":"WSMAN_FLAG_NO_COMPRESSION","features":[197]},{"name":"WSMAN_FLAG_RECEIVE_DELAY_OUTPUT_STREAM","features":[197]},{"name":"WSMAN_FLAG_RECEIVE_FLUSH","features":[197]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_DATA_BOUNDARY","features":[197]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_NO_MORE_DATA","features":[197]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_0","features":[197]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_1","features":[197]},{"name":"WSMAN_FLAG_SEND_NO_MORE_DATA","features":[197]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_BLOCK","features":[197]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_DROP","features":[197]},{"name":"WSMAN_FRAGMENT","features":[197]},{"name":"WSMAN_KEY","features":[197]},{"name":"WSMAN_OPERATION_HANDLE","features":[197]},{"name":"WSMAN_OPERATION_INFO","features":[3,197]},{"name":"WSMAN_OPERATION_INFOEX","features":[3,197]},{"name":"WSMAN_OPERATION_INFOV1","features":[197]},{"name":"WSMAN_OPERATION_INFOV2","features":[197]},{"name":"WSMAN_OPTION","features":[3,197]},{"name":"WSMAN_OPTION_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS","features":[197]},{"name":"WSMAN_OPTION_DEFAULT_OPERATION_TIMEOUTMS","features":[197]},{"name":"WSMAN_OPTION_ENABLE_SPN_SERVER_PORT","features":[197]},{"name":"WSMAN_OPTION_LOCALE","features":[197]},{"name":"WSMAN_OPTION_MACHINE_ID","features":[197]},{"name":"WSMAN_OPTION_MAX_ENVELOPE_SIZE_KB","features":[197]},{"name":"WSMAN_OPTION_MAX_RETRY_TIME","features":[197]},{"name":"WSMAN_OPTION_PROXY_AUTO_DETECT","features":[197]},{"name":"WSMAN_OPTION_PROXY_IE_PROXY_CONFIG","features":[197]},{"name":"WSMAN_OPTION_PROXY_NO_PROXY_SERVER","features":[197]},{"name":"WSMAN_OPTION_PROXY_WINHTTP_PROXY_CONFIG","features":[197]},{"name":"WSMAN_OPTION_REDIRECT_LOCATION","features":[197]},{"name":"WSMAN_OPTION_SET","features":[3,197]},{"name":"WSMAN_OPTION_SETEX","features":[3,197]},{"name":"WSMAN_OPTION_SHELL_MAX_DATA_SIZE_PER_MESSAGE_KB","features":[197]},{"name":"WSMAN_OPTION_SKIP_CA_CHECK","features":[197]},{"name":"WSMAN_OPTION_SKIP_CN_CHECK","features":[197]},{"name":"WSMAN_OPTION_SKIP_REVOCATION_CHECK","features":[197]},{"name":"WSMAN_OPTION_TIMEOUTMS_CLOSE_SHELL","features":[197]},{"name":"WSMAN_OPTION_TIMEOUTMS_CREATE_SHELL","features":[197]},{"name":"WSMAN_OPTION_TIMEOUTMS_RECEIVE_SHELL_OUTPUT","features":[197]},{"name":"WSMAN_OPTION_TIMEOUTMS_RUN_SHELL_COMMAND","features":[197]},{"name":"WSMAN_OPTION_TIMEOUTMS_SEND_SHELL_INPUT","features":[197]},{"name":"WSMAN_OPTION_TIMEOUTMS_SIGNAL_SHELL","features":[197]},{"name":"WSMAN_OPTION_UI_LANGUAGE","features":[197]},{"name":"WSMAN_OPTION_UNENCRYPTED_MESSAGES","features":[197]},{"name":"WSMAN_OPTION_USE_INTEARACTIVE_TOKEN","features":[197]},{"name":"WSMAN_OPTION_USE_SSL","features":[197]},{"name":"WSMAN_OPTION_UTF16","features":[197]},{"name":"WSMAN_PLUGIN_AUTHORIZE_OPERATION","features":[3,197]},{"name":"WSMAN_PLUGIN_AUTHORIZE_QUERY_QUOTA","features":[3,197]},{"name":"WSMAN_PLUGIN_AUTHORIZE_RELEASE_CONTEXT","features":[197]},{"name":"WSMAN_PLUGIN_AUTHORIZE_USER","features":[3,197]},{"name":"WSMAN_PLUGIN_COMMAND","features":[3,197]},{"name":"WSMAN_PLUGIN_CONNECT","features":[3,197]},{"name":"WSMAN_PLUGIN_PARAMS_AUTORESTART","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_DATA_LOCALE","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_LOCALE","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_HOSTIDLETIMEOUTSECONDS","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_LARGEST_RESULT_SIZE","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_MAX_ENVELOPE_SIZE","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_NAME","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_REMAINING_RESULT_SIZE","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_RUNAS_USER","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_SHAREDHOST","features":[197]},{"name":"WSMAN_PLUGIN_PARAMS_TIMEOUT","features":[197]},{"name":"WSMAN_PLUGIN_RECEIVE","features":[3,197]},{"name":"WSMAN_PLUGIN_RELEASE_COMMAND_CONTEXT","features":[197]},{"name":"WSMAN_PLUGIN_RELEASE_SHELL_CONTEXT","features":[197]},{"name":"WSMAN_PLUGIN_REQUEST","features":[3,197]},{"name":"WSMAN_PLUGIN_SEND","features":[3,197]},{"name":"WSMAN_PLUGIN_SHELL","features":[3,197]},{"name":"WSMAN_PLUGIN_SHUTDOWN","features":[197]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IDLETIMEOUT_ELAPSED","features":[197]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IISHOST","features":[197]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SERVICE","features":[197]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SYSTEM","features":[197]},{"name":"WSMAN_PLUGIN_SIGNAL","features":[3,197]},{"name":"WSMAN_PLUGIN_STARTUP","features":[197]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_CRASH","features":[197]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_REBOOT","features":[197]},{"name":"WSMAN_PLUGIN_STARTUP_REQUEST_RECEIVED","features":[197]},{"name":"WSMAN_PROXY_INFO","features":[197]},{"name":"WSMAN_RECEIVE_DATA_RESULT","features":[197]},{"name":"WSMAN_RESPONSE_DATA","features":[197]},{"name":"WSMAN_SELECTOR_SET","features":[197]},{"name":"WSMAN_SENDER_DETAILS","features":[3,197]},{"name":"WSMAN_SESSION_HANDLE","features":[197]},{"name":"WSMAN_SHELL_ASYNC","features":[197]},{"name":"WSMAN_SHELL_COMPLETION_FUNCTION","features":[197]},{"name":"WSMAN_SHELL_DISCONNECT_INFO","features":[197]},{"name":"WSMAN_SHELL_HANDLE","features":[197]},{"name":"WSMAN_SHELL_NS","features":[197]},{"name":"WSMAN_SHELL_OPTION_NOPROFILE","features":[197]},{"name":"WSMAN_SHELL_STARTUP_INFO_V10","features":[197]},{"name":"WSMAN_SHELL_STARTUP_INFO_V11","features":[197]},{"name":"WSMAN_STREAM_ID_SET","features":[197]},{"name":"WSMAN_STREAM_ID_STDERR","features":[197]},{"name":"WSMAN_STREAM_ID_STDIN","features":[197]},{"name":"WSMAN_STREAM_ID_STDOUT","features":[197]},{"name":"WSMAN_USERNAME_PASSWORD_CREDS","features":[197]},{"name":"WSMan","features":[197]},{"name":"WSManAuthenticationFlags","features":[197]},{"name":"WSManCallbackFlags","features":[197]},{"name":"WSManCloseCommand","features":[197]},{"name":"WSManCloseOperation","features":[197]},{"name":"WSManCloseSession","features":[197]},{"name":"WSManCloseShell","features":[197]},{"name":"WSManConnectShell","features":[3,197]},{"name":"WSManConnectShellCommand","features":[3,197]},{"name":"WSManCreateSession","features":[197]},{"name":"WSManCreateShell","features":[3,197]},{"name":"WSManCreateShellEx","features":[3,197]},{"name":"WSManDataType","features":[197]},{"name":"WSManDeinitialize","features":[197]},{"name":"WSManDisconnectShell","features":[197]},{"name":"WSManEnumFlags","features":[197]},{"name":"WSManFlagAllowNegotiateImplicitCredentials","features":[197]},{"name":"WSManFlagAssociatedInstance","features":[197]},{"name":"WSManFlagAssociationInstance","features":[197]},{"name":"WSManFlagCredUsernamePassword","features":[197]},{"name":"WSManFlagEnableSPNServerPort","features":[197]},{"name":"WSManFlagHierarchyDeep","features":[197]},{"name":"WSManFlagHierarchyDeepBasePropsOnly","features":[197]},{"name":"WSManFlagHierarchyShallow","features":[197]},{"name":"WSManFlagNoEncryption","features":[197]},{"name":"WSManFlagNonXmlText","features":[197]},{"name":"WSManFlagProxyAuthenticationUseBasic","features":[197]},{"name":"WSManFlagProxyAuthenticationUseDigest","features":[197]},{"name":"WSManFlagProxyAuthenticationUseNegotiate","features":[197]},{"name":"WSManFlagReturnEPR","features":[197]},{"name":"WSManFlagReturnObject","features":[197]},{"name":"WSManFlagReturnObjectAndEPR","features":[197]},{"name":"WSManFlagSkipCACheck","features":[197]},{"name":"WSManFlagSkipCNCheck","features":[197]},{"name":"WSManFlagSkipRevocationCheck","features":[197]},{"name":"WSManFlagUTF16","features":[197]},{"name":"WSManFlagUTF8","features":[197]},{"name":"WSManFlagUseBasic","features":[197]},{"name":"WSManFlagUseClientCertificate","features":[197]},{"name":"WSManFlagUseCredSsp","features":[197]},{"name":"WSManFlagUseDigest","features":[197]},{"name":"WSManFlagUseKerberos","features":[197]},{"name":"WSManFlagUseNegotiate","features":[197]},{"name":"WSManFlagUseNoAuthentication","features":[197]},{"name":"WSManFlagUseSsl","features":[197]},{"name":"WSManGetErrorMessage","features":[197]},{"name":"WSManGetSessionOptionAsDword","features":[197]},{"name":"WSManGetSessionOptionAsString","features":[197]},{"name":"WSManInitialize","features":[197]},{"name":"WSManInternal","features":[197]},{"name":"WSManPluginAuthzOperationComplete","features":[3,197]},{"name":"WSManPluginAuthzQueryQuotaComplete","features":[3,197]},{"name":"WSManPluginAuthzUserComplete","features":[3,197]},{"name":"WSManPluginFreeRequestDetails","features":[3,197]},{"name":"WSManPluginGetConfiguration","features":[197]},{"name":"WSManPluginGetOperationParameters","features":[3,197]},{"name":"WSManPluginOperationComplete","features":[3,197]},{"name":"WSManPluginReceiveResult","features":[3,197]},{"name":"WSManPluginReportCompletion","features":[197]},{"name":"WSManPluginReportContext","features":[3,197]},{"name":"WSManProxyAccessType","features":[197]},{"name":"WSManProxyAccessTypeFlags","features":[197]},{"name":"WSManProxyAuthenticationFlags","features":[197]},{"name":"WSManProxyAutoDetect","features":[197]},{"name":"WSManProxyIEConfig","features":[197]},{"name":"WSManProxyNoProxyServer","features":[197]},{"name":"WSManProxyWinHttpConfig","features":[197]},{"name":"WSManReceiveShellOutput","features":[197]},{"name":"WSManReconnectShell","features":[197]},{"name":"WSManReconnectShellCommand","features":[197]},{"name":"WSManRunShellCommand","features":[3,197]},{"name":"WSManRunShellCommandEx","features":[3,197]},{"name":"WSManSendShellInput","features":[3,197]},{"name":"WSManSessionFlags","features":[197]},{"name":"WSManSessionOption","features":[197]},{"name":"WSManSetSessionOption","features":[197]},{"name":"WSManShellFlag","features":[197]},{"name":"WSManSignalShell","features":[197]}],"601":[{"name":"CCH_RM_MAX_APP_NAME","features":[198]},{"name":"CCH_RM_MAX_SVC_NAME","features":[198]},{"name":"CCH_RM_SESSION_KEY","features":[198]},{"name":"RM_APP_STATUS","features":[198]},{"name":"RM_APP_TYPE","features":[198]},{"name":"RM_FILTER_ACTION","features":[198]},{"name":"RM_FILTER_INFO","features":[3,198]},{"name":"RM_FILTER_TRIGGER","features":[198]},{"name":"RM_INVALID_PROCESS","features":[198]},{"name":"RM_INVALID_TS_SESSION","features":[198]},{"name":"RM_PROCESS_INFO","features":[3,198]},{"name":"RM_REBOOT_REASON","features":[198]},{"name":"RM_SHUTDOWN_TYPE","features":[198]},{"name":"RM_UNIQUE_PROCESS","features":[3,198]},{"name":"RM_WRITE_STATUS_CALLBACK","features":[198]},{"name":"RmAddFilter","features":[3,198]},{"name":"RmCancelCurrentTask","features":[3,198]},{"name":"RmConsole","features":[198]},{"name":"RmCritical","features":[198]},{"name":"RmEndSession","features":[3,198]},{"name":"RmExplorer","features":[198]},{"name":"RmFilterTriggerFile","features":[198]},{"name":"RmFilterTriggerInvalid","features":[198]},{"name":"RmFilterTriggerProcess","features":[198]},{"name":"RmFilterTriggerService","features":[198]},{"name":"RmForceShutdown","features":[198]},{"name":"RmGetFilterList","features":[3,198]},{"name":"RmGetList","features":[3,198]},{"name":"RmInvalidFilterAction","features":[198]},{"name":"RmJoinSession","features":[3,198]},{"name":"RmMainWindow","features":[198]},{"name":"RmNoRestart","features":[198]},{"name":"RmNoShutdown","features":[198]},{"name":"RmOtherWindow","features":[198]},{"name":"RmRebootReasonCriticalProcess","features":[198]},{"name":"RmRebootReasonCriticalService","features":[198]},{"name":"RmRebootReasonDetectedSelf","features":[198]},{"name":"RmRebootReasonNone","features":[198]},{"name":"RmRebootReasonPermissionDenied","features":[198]},{"name":"RmRebootReasonSessionMismatch","features":[198]},{"name":"RmRegisterResources","features":[3,198]},{"name":"RmRemoveFilter","features":[3,198]},{"name":"RmRestart","features":[3,198]},{"name":"RmService","features":[198]},{"name":"RmShutdown","features":[3,198]},{"name":"RmShutdownOnlyRegistered","features":[198]},{"name":"RmStartSession","features":[3,198]},{"name":"RmStatusErrorOnRestart","features":[198]},{"name":"RmStatusErrorOnStop","features":[198]},{"name":"RmStatusRestartMasked","features":[198]},{"name":"RmStatusRestarted","features":[198]},{"name":"RmStatusRunning","features":[198]},{"name":"RmStatusShutdownMasked","features":[198]},{"name":"RmStatusStopped","features":[198]},{"name":"RmStatusStoppedOther","features":[198]},{"name":"RmStatusUnknown","features":[198]},{"name":"RmUnknownApp","features":[198]}],"602":[{"name":"ACCESSIBILITY_SETTING","features":[199]},{"name":"APPLICATION_INSTALL","features":[199]},{"name":"APPLICATION_RUN","features":[199]},{"name":"APPLICATION_UNINSTALL","features":[199]},{"name":"BACKUP","features":[199]},{"name":"BACKUP_RECOVERY","features":[199]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE","features":[199]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE_NORP","features":[199]},{"name":"BEGIN_SYSTEM_CHANGE","features":[199]},{"name":"CANCELLED_OPERATION","features":[199]},{"name":"CHECKPOINT","features":[199]},{"name":"CRITICAL_UPDATE","features":[199]},{"name":"DESKTOP_SETTING","features":[199]},{"name":"DEVICE_DRIVER_INSTALL","features":[199]},{"name":"END_NESTED_SYSTEM_CHANGE","features":[199]},{"name":"END_SYSTEM_CHANGE","features":[199]},{"name":"FIRSTRUN","features":[199]},{"name":"MANUAL_CHECKPOINT","features":[199]},{"name":"MAX_DESC","features":[199]},{"name":"MAX_DESC_W","features":[199]},{"name":"MAX_EVENT","features":[199]},{"name":"MAX_RPT","features":[199]},{"name":"MIN_EVENT","features":[199]},{"name":"MIN_RPT","features":[199]},{"name":"MODIFY_SETTINGS","features":[199]},{"name":"OE_SETTING","features":[199]},{"name":"RESTORE","features":[199]},{"name":"RESTOREPOINTINFOA","features":[199]},{"name":"RESTOREPOINTINFOEX","features":[3,199]},{"name":"RESTOREPOINTINFOW","features":[199]},{"name":"RESTOREPOINTINFO_EVENT_TYPE","features":[199]},{"name":"RESTOREPOINTINFO_TYPE","features":[199]},{"name":"SRRemoveRestorePoint","features":[199]},{"name":"SRSetRestorePointA","features":[3,199]},{"name":"SRSetRestorePointW","features":[3,199]},{"name":"STATEMGRSTATUS","features":[3,199]},{"name":"WINDOWS_BOOT","features":[199]},{"name":"WINDOWS_SHUTDOWN","features":[199]},{"name":"WINDOWS_UPDATE","features":[199]}],"603":[{"name":"ARRAY_INFO","features":[21]},{"name":"BinaryParam","features":[21]},{"name":"CLIENT_CALL_RETURN","features":[21]},{"name":"COMM_FAULT_OFFSETS","features":[21]},{"name":"CS_TAG_GETTING_ROUTINE","features":[21]},{"name":"CS_TYPE_FROM_NETCS_ROUTINE","features":[21]},{"name":"CS_TYPE_LOCAL_SIZE_ROUTINE","features":[21]},{"name":"CS_TYPE_NET_SIZE_ROUTINE","features":[21]},{"name":"CS_TYPE_TO_NETCS_ROUTINE","features":[21]},{"name":"DCE_C_ERROR_STRING_LEN","features":[21]},{"name":"DceErrorInqTextA","features":[21]},{"name":"DceErrorInqTextW","features":[21]},{"name":"EEInfoGCCOM","features":[21]},{"name":"EEInfoGCFRS","features":[21]},{"name":"EEInfoNextRecordsMissing","features":[21]},{"name":"EEInfoPreviousRecordsMissing","features":[21]},{"name":"EEInfoUseFileTime","features":[21]},{"name":"EPT_S_CANT_CREATE","features":[21]},{"name":"EPT_S_CANT_PERFORM_OP","features":[21]},{"name":"EPT_S_INVALID_ENTRY","features":[21]},{"name":"EPT_S_NOT_REGISTERED","features":[21]},{"name":"EXPR_EVAL","features":[21]},{"name":"EXPR_TOKEN","features":[21]},{"name":"ExtendedErrorParamTypes","features":[21]},{"name":"FC_EXPR_CONST32","features":[21]},{"name":"FC_EXPR_CONST64","features":[21]},{"name":"FC_EXPR_END","features":[21]},{"name":"FC_EXPR_ILLEGAL","features":[21]},{"name":"FC_EXPR_NOOP","features":[21]},{"name":"FC_EXPR_OPER","features":[21]},{"name":"FC_EXPR_START","features":[21]},{"name":"FC_EXPR_VAR","features":[21]},{"name":"FULL_PTR_XLAT_TABLES","features":[21]},{"name":"GENERIC_BINDING_INFO","features":[21]},{"name":"GENERIC_BINDING_ROUTINE","features":[21]},{"name":"GENERIC_BINDING_ROUTINE_PAIR","features":[21]},{"name":"GENERIC_UNBIND_ROUTINE","features":[21]},{"name":"GROUP_NAME_SYNTAX","features":[21]},{"name":"IDL_CS_CONVERT","features":[21]},{"name":"IDL_CS_IN_PLACE_CONVERT","features":[21]},{"name":"IDL_CS_NEW_BUFFER_CONVERT","features":[21]},{"name":"IDL_CS_NO_CONVERT","features":[21]},{"name":"INVALID_FRAGMENT_ID","features":[21]},{"name":"IUnknown_AddRef_Proxy","features":[21]},{"name":"IUnknown_QueryInterface_Proxy","features":[21]},{"name":"IUnknown_Release_Proxy","features":[21]},{"name":"I_RpcAllocate","features":[21]},{"name":"I_RpcAsyncAbortCall","features":[3,8,21]},{"name":"I_RpcAsyncSetHandle","features":[3,8,21]},{"name":"I_RpcBindingCopy","features":[21]},{"name":"I_RpcBindingCreateNP","features":[21]},{"name":"I_RpcBindingHandleToAsyncHandle","features":[21]},{"name":"I_RpcBindingInqClientTokenAttributes","features":[3,21]},{"name":"I_RpcBindingInqDynamicEndpointA","features":[21]},{"name":"I_RpcBindingInqDynamicEndpointW","features":[21]},{"name":"I_RpcBindingInqLocalClientPID","features":[21]},{"name":"I_RpcBindingInqMarshalledTargetInfo","features":[21]},{"name":"I_RpcBindingInqSecurityContext","features":[21]},{"name":"I_RpcBindingInqSecurityContextKeyInfo","features":[21]},{"name":"I_RpcBindingInqTransportType","features":[21]},{"name":"I_RpcBindingInqWireIdForSnego","features":[21]},{"name":"I_RpcBindingIsClientLocal","features":[21]},{"name":"I_RpcBindingIsServerLocal","features":[21]},{"name":"I_RpcBindingSetPrivateOption","features":[21]},{"name":"I_RpcBindingToStaticStringBindingW","features":[21]},{"name":"I_RpcClearMutex","features":[21]},{"name":"I_RpcDeleteMutex","features":[21]},{"name":"I_RpcExceptionFilter","features":[21]},{"name":"I_RpcFree","features":[21]},{"name":"I_RpcFreeBuffer","features":[21]},{"name":"I_RpcFreeCalloutStateFn","features":[21]},{"name":"I_RpcFreePipeBuffer","features":[21]},{"name":"I_RpcGetBuffer","features":[21]},{"name":"I_RpcGetBufferWithObject","features":[21]},{"name":"I_RpcGetCurrentCallHandle","features":[21]},{"name":"I_RpcGetDefaultSD","features":[21]},{"name":"I_RpcGetExtendedError","features":[21]},{"name":"I_RpcIfInqTransferSyntaxes","features":[21]},{"name":"I_RpcMapWin32Status","features":[21]},{"name":"I_RpcMgmtEnableDedicatedThreadPool","features":[21]},{"name":"I_RpcNegotiateTransferSyntax","features":[21]},{"name":"I_RpcNsBindingSetEntryNameA","features":[21]},{"name":"I_RpcNsBindingSetEntryNameW","features":[21]},{"name":"I_RpcNsGetBuffer","features":[21]},{"name":"I_RpcNsInterfaceExported","features":[21]},{"name":"I_RpcNsInterfaceUnexported","features":[21]},{"name":"I_RpcNsRaiseException","features":[21]},{"name":"I_RpcNsSendReceive","features":[21]},{"name":"I_RpcOpenClientProcess","features":[21]},{"name":"I_RpcPauseExecution","features":[21]},{"name":"I_RpcPerformCalloutFn","features":[21]},{"name":"I_RpcProxyCallbackInterface","features":[21]},{"name":"I_RpcProxyFilterIfFn","features":[21]},{"name":"I_RpcProxyGetClientAddressFn","features":[21]},{"name":"I_RpcProxyGetClientSessionAndResourceUUID","features":[21]},{"name":"I_RpcProxyGetConnectionTimeoutFn","features":[21]},{"name":"I_RpcProxyIsValidMachineFn","features":[21]},{"name":"I_RpcProxyUpdatePerfCounterBackendServerFn","features":[21]},{"name":"I_RpcProxyUpdatePerfCounterFn","features":[21]},{"name":"I_RpcReBindBuffer","features":[21]},{"name":"I_RpcReallocPipeBuffer","features":[21]},{"name":"I_RpcReceive","features":[21]},{"name":"I_RpcRecordCalloutFailure","features":[21]},{"name":"I_RpcRequestMutex","features":[21]},{"name":"I_RpcSend","features":[21]},{"name":"I_RpcSendReceive","features":[21]},{"name":"I_RpcServerCheckClientRestriction","features":[21]},{"name":"I_RpcServerDisableExceptionFilter","features":[21]},{"name":"I_RpcServerGetAssociationID","features":[21]},{"name":"I_RpcServerInqAddressChangeFn","features":[21]},{"name":"I_RpcServerInqLocalConnAddress","features":[21]},{"name":"I_RpcServerInqRemoteConnAddress","features":[21]},{"name":"I_RpcServerInqTransportType","features":[21]},{"name":"I_RpcServerRegisterForwardFunction","features":[21]},{"name":"I_RpcServerSetAddressChangeFn","features":[21]},{"name":"I_RpcServerStartService","features":[21]},{"name":"I_RpcServerSubscribeForDisconnectNotification","features":[21]},{"name":"I_RpcServerSubscribeForDisconnectNotification2","features":[21]},{"name":"I_RpcServerUnsubscribeForDisconnectNotification","features":[21]},{"name":"I_RpcServerUseProtseq2A","features":[21]},{"name":"I_RpcServerUseProtseq2W","features":[21]},{"name":"I_RpcServerUseProtseqEp2A","features":[21]},{"name":"I_RpcServerUseProtseqEp2W","features":[21]},{"name":"I_RpcSessionStrictContextHandle","features":[21]},{"name":"I_RpcSsDontSerializeContext","features":[21]},{"name":"I_RpcSystemHandleTypeSpecificWork","features":[21]},{"name":"I_RpcTurnOnEEInfoPropagation","features":[21]},{"name":"I_UuidCreate","features":[21]},{"name":"LRPC_SYSTEM_HANDLE_MARSHAL_DIRECTION","features":[21]},{"name":"MALLOC_FREE_STRUCT","features":[21]},{"name":"MES_DECODE","features":[21]},{"name":"MES_DYNAMIC_BUFFER_HANDLE","features":[21]},{"name":"MES_ENCODE","features":[21]},{"name":"MES_ENCODE_NDR64","features":[21]},{"name":"MES_FIXED_BUFFER_HANDLE","features":[21]},{"name":"MES_INCREMENTAL_HANDLE","features":[21]},{"name":"MIDL_ES_ALLOC","features":[21]},{"name":"MIDL_ES_CODE","features":[21]},{"name":"MIDL_ES_HANDLE_STYLE","features":[21]},{"name":"MIDL_ES_READ","features":[21]},{"name":"MIDL_ES_WRITE","features":[21]},{"name":"MIDL_FORMAT_STRING","features":[21]},{"name":"MIDL_INTERCEPTION_INFO","features":[21]},{"name":"MIDL_INTERFACE_METHOD_PROPERTIES","features":[21]},{"name":"MIDL_METHOD_PROPERTY","features":[21]},{"name":"MIDL_METHOD_PROPERTY_MAP","features":[21]},{"name":"MIDL_SERVER_INFO","features":[21]},{"name":"MIDL_STUBLESS_PROXY_INFO","features":[21]},{"name":"MIDL_STUB_DESC","features":[21]},{"name":"MIDL_STUB_MESSAGE","features":[21]},{"name":"MIDL_SYNTAX_INFO","features":[21]},{"name":"MIDL_TYPE_PICKLING_INFO","features":[21]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO","features":[21]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO_CURRENT_VERSION","features":[21]},{"name":"MarshalDirectionMarshal","features":[21]},{"name":"MarshalDirectionUnmarshal","features":[21]},{"name":"MaxNumberOfEEInfoParams","features":[21]},{"name":"MesBufferHandleReset","features":[21]},{"name":"MesDecodeBufferHandleCreate","features":[21]},{"name":"MesDecodeIncrementalHandleCreate","features":[21]},{"name":"MesEncodeDynBufferHandleCreate","features":[21]},{"name":"MesEncodeFixedBufferHandleCreate","features":[21]},{"name":"MesEncodeIncrementalHandleCreate","features":[21]},{"name":"MesHandleFree","features":[21]},{"name":"MesIncrementalHandleReset","features":[21]},{"name":"MesInqProcEncodingId","features":[21]},{"name":"MidlInterceptionInfoVersionOne","features":[21]},{"name":"MidlWinrtTypeSerializationInfoVersionOne","features":[21]},{"name":"NDR64_ARRAY_ELEMENT_INFO","features":[21]},{"name":"NDR64_ARRAY_FLAGS","features":[21]},{"name":"NDR64_BINDINGS","features":[21]},{"name":"NDR64_BIND_AND_NOTIFY_EXTENSION","features":[21]},{"name":"NDR64_BIND_CONTEXT","features":[21]},{"name":"NDR64_BIND_GENERIC","features":[21]},{"name":"NDR64_BIND_PRIMITIVE","features":[21]},{"name":"NDR64_BOGUS_ARRAY_HEADER_FORMAT","features":[21]},{"name":"NDR64_BOGUS_STRUCTURE_HEADER_FORMAT","features":[21]},{"name":"NDR64_BUFFER_ALIGN_FORMAT","features":[21]},{"name":"NDR64_CONFORMANT_STRING_FORMAT","features":[21]},{"name":"NDR64_CONF_ARRAY_HEADER_FORMAT","features":[21]},{"name":"NDR64_CONF_BOGUS_STRUCTURE_HEADER_FORMAT","features":[21]},{"name":"NDR64_CONF_STRUCTURE_HEADER_FORMAT","features":[21]},{"name":"NDR64_CONF_VAR_ARRAY_HEADER_FORMAT","features":[21]},{"name":"NDR64_CONF_VAR_BOGUS_ARRAY_HEADER_FORMAT","features":[21]},{"name":"NDR64_CONSTANT_IID_FORMAT","features":[21]},{"name":"NDR64_CONTEXT_HANDLE_FLAGS","features":[21]},{"name":"NDR64_CONTEXT_HANDLE_FORMAT","features":[21]},{"name":"NDR64_EMBEDDED_COMPLEX_FORMAT","features":[21]},{"name":"NDR64_ENCAPSULATED_UNION","features":[21]},{"name":"NDR64_EXPR_CONST32","features":[21]},{"name":"NDR64_EXPR_CONST64","features":[21]},{"name":"NDR64_EXPR_NOOP","features":[21]},{"name":"NDR64_EXPR_OPERATOR","features":[21]},{"name":"NDR64_EXPR_VAR","features":[21]},{"name":"NDR64_FC_AUTO_HANDLE","features":[21]},{"name":"NDR64_FC_BIND_GENERIC","features":[21]},{"name":"NDR64_FC_BIND_PRIMITIVE","features":[21]},{"name":"NDR64_FC_CALLBACK_HANDLE","features":[21]},{"name":"NDR64_FC_EXPLICIT_HANDLE","features":[21]},{"name":"NDR64_FC_NO_HANDLE","features":[21]},{"name":"NDR64_FIXED_REPEAT_FORMAT","features":[21]},{"name":"NDR64_FIX_ARRAY_HEADER_FORMAT","features":[21]},{"name":"NDR64_IID_FLAGS","features":[21]},{"name":"NDR64_IID_FORMAT","features":[21]},{"name":"NDR64_MEMPAD_FORMAT","features":[21]},{"name":"NDR64_NON_CONFORMANT_STRING_FORMAT","features":[21]},{"name":"NDR64_NON_ENCAPSULATED_UNION","features":[21]},{"name":"NDR64_NO_REPEAT_FORMAT","features":[21]},{"name":"NDR64_PARAM_FLAGS","features":[21]},{"name":"NDR64_PARAM_FORMAT","features":[21]},{"name":"NDR64_PIPE_FLAGS","features":[21]},{"name":"NDR64_PIPE_FORMAT","features":[21]},{"name":"NDR64_POINTER_FORMAT","features":[21]},{"name":"NDR64_POINTER_INSTANCE_HEADER_FORMAT","features":[21]},{"name":"NDR64_POINTER_REPEAT_FLAGS","features":[21]},{"name":"NDR64_PROC_FLAGS","features":[21]},{"name":"NDR64_PROC_FORMAT","features":[21]},{"name":"NDR64_RANGED_STRING_FORMAT","features":[21]},{"name":"NDR64_RANGE_FORMAT","features":[21]},{"name":"NDR64_RANGE_PIPE_FORMAT","features":[21]},{"name":"NDR64_REPEAT_FORMAT","features":[21]},{"name":"NDR64_RPC_FLAGS","features":[21]},{"name":"NDR64_SIMPLE_MEMBER_FORMAT","features":[21]},{"name":"NDR64_SIMPLE_REGION_FORMAT","features":[21]},{"name":"NDR64_SIZED_CONFORMANT_STRING_FORMAT","features":[21]},{"name":"NDR64_STRING_FLAGS","features":[21]},{"name":"NDR64_STRING_HEADER_FORMAT","features":[21]},{"name":"NDR64_STRUCTURE_FLAGS","features":[21]},{"name":"NDR64_STRUCTURE_HEADER_FORMAT","features":[21]},{"name":"NDR64_SYSTEM_HANDLE_FORMAT","features":[21]},{"name":"NDR64_TRANSMIT_AS_FLAGS","features":[21]},{"name":"NDR64_TRANSMIT_AS_FORMAT","features":[21]},{"name":"NDR64_TYPE_STRICT_CONTEXT_HANDLE","features":[21]},{"name":"NDR64_UNION_ARM","features":[21]},{"name":"NDR64_UNION_ARM_SELECTOR","features":[21]},{"name":"NDR64_USER_MARSHAL_FLAGS","features":[21]},{"name":"NDR64_USER_MARSHAL_FORMAT","features":[21]},{"name":"NDR64_VAR_ARRAY_HEADER_FORMAT","features":[21]},{"name":"NDRCContextBinding","features":[21]},{"name":"NDRCContextMarshall","features":[21]},{"name":"NDRCContextUnmarshall","features":[21]},{"name":"NDRSContextMarshall","features":[21]},{"name":"NDRSContextMarshall2","features":[21]},{"name":"NDRSContextMarshallEx","features":[21]},{"name":"NDRSContextUnmarshall","features":[21]},{"name":"NDRSContextUnmarshall2","features":[21]},{"name":"NDRSContextUnmarshallEx","features":[21]},{"name":"NDR_ALLOC_ALL_NODES_CONTEXT","features":[21]},{"name":"NDR_CS_ROUTINES","features":[21]},{"name":"NDR_CS_SIZE_CONVERT_ROUTINES","features":[21]},{"name":"NDR_CUSTOM_OR_DEFAULT_ALLOCATOR","features":[21]},{"name":"NDR_DEFAULT_ALLOCATOR","features":[21]},{"name":"NDR_EXPR_DESC","features":[21]},{"name":"NDR_NOTIFY2_ROUTINE","features":[21]},{"name":"NDR_NOTIFY_ROUTINE","features":[21]},{"name":"NDR_POINTER_QUEUE_STATE","features":[21]},{"name":"NDR_RUNDOWN","features":[21]},{"name":"NDR_SCONTEXT","features":[21]},{"name":"NDR_USER_MARSHAL_INFO","features":[21]},{"name":"NDR_USER_MARSHAL_INFO_LEVEL1","features":[21]},{"name":"NT351_INTERFACE_SIZE","features":[21]},{"name":"Ndr64AsyncClientCall","features":[21]},{"name":"Ndr64AsyncServerCall64","features":[21]},{"name":"Ndr64AsyncServerCallAll","features":[21]},{"name":"Ndr64DcomAsyncClientCall","features":[21]},{"name":"Ndr64DcomAsyncStubCall","features":[21]},{"name":"NdrAllocate","features":[21]},{"name":"NdrAsyncClientCall","features":[21]},{"name":"NdrAsyncServerCall","features":[21]},{"name":"NdrByteCountPointerBufferSize","features":[21]},{"name":"NdrByteCountPointerFree","features":[21]},{"name":"NdrByteCountPointerMarshall","features":[21]},{"name":"NdrByteCountPointerUnmarshall","features":[21]},{"name":"NdrClearOutParameters","features":[21]},{"name":"NdrClientCall2","features":[21]},{"name":"NdrClientCall3","features":[21]},{"name":"NdrClientContextMarshall","features":[21]},{"name":"NdrClientContextUnmarshall","features":[21]},{"name":"NdrClientInitialize","features":[21]},{"name":"NdrClientInitializeNew","features":[21]},{"name":"NdrComplexArrayBufferSize","features":[21]},{"name":"NdrComplexArrayFree","features":[21]},{"name":"NdrComplexArrayMarshall","features":[21]},{"name":"NdrComplexArrayMemorySize","features":[21]},{"name":"NdrComplexArrayUnmarshall","features":[21]},{"name":"NdrComplexStructBufferSize","features":[21]},{"name":"NdrComplexStructFree","features":[21]},{"name":"NdrComplexStructMarshall","features":[21]},{"name":"NdrComplexStructMemorySize","features":[21]},{"name":"NdrComplexStructUnmarshall","features":[21]},{"name":"NdrConformantArrayBufferSize","features":[21]},{"name":"NdrConformantArrayFree","features":[21]},{"name":"NdrConformantArrayMarshall","features":[21]},{"name":"NdrConformantArrayMemorySize","features":[21]},{"name":"NdrConformantArrayUnmarshall","features":[21]},{"name":"NdrConformantStringBufferSize","features":[21]},{"name":"NdrConformantStringMarshall","features":[21]},{"name":"NdrConformantStringMemorySize","features":[21]},{"name":"NdrConformantStringUnmarshall","features":[21]},{"name":"NdrConformantStructBufferSize","features":[21]},{"name":"NdrConformantStructFree","features":[21]},{"name":"NdrConformantStructMarshall","features":[21]},{"name":"NdrConformantStructMemorySize","features":[21]},{"name":"NdrConformantStructUnmarshall","features":[21]},{"name":"NdrConformantVaryingArrayBufferSize","features":[21]},{"name":"NdrConformantVaryingArrayFree","features":[21]},{"name":"NdrConformantVaryingArrayMarshall","features":[21]},{"name":"NdrConformantVaryingArrayMemorySize","features":[21]},{"name":"NdrConformantVaryingArrayUnmarshall","features":[21]},{"name":"NdrConformantVaryingStructBufferSize","features":[21]},{"name":"NdrConformantVaryingStructFree","features":[21]},{"name":"NdrConformantVaryingStructMarshall","features":[21]},{"name":"NdrConformantVaryingStructMemorySize","features":[21]},{"name":"NdrConformantVaryingStructUnmarshall","features":[21]},{"name":"NdrContextHandleInitialize","features":[21]},{"name":"NdrContextHandleSize","features":[21]},{"name":"NdrConvert","features":[21]},{"name":"NdrConvert2","features":[21]},{"name":"NdrCorrelationFree","features":[21]},{"name":"NdrCorrelationInitialize","features":[21]},{"name":"NdrCorrelationPass","features":[21]},{"name":"NdrCreateServerInterfaceFromStub","features":[21]},{"name":"NdrDcomAsyncClientCall","features":[21]},{"name":"NdrDcomAsyncStubCall","features":[21]},{"name":"NdrEncapsulatedUnionBufferSize","features":[21]},{"name":"NdrEncapsulatedUnionFree","features":[21]},{"name":"NdrEncapsulatedUnionMarshall","features":[21]},{"name":"NdrEncapsulatedUnionMemorySize","features":[21]},{"name":"NdrEncapsulatedUnionUnmarshall","features":[21]},{"name":"NdrFixedArrayBufferSize","features":[21]},{"name":"NdrFixedArrayFree","features":[21]},{"name":"NdrFixedArrayMarshall","features":[21]},{"name":"NdrFixedArrayMemorySize","features":[21]},{"name":"NdrFixedArrayUnmarshall","features":[21]},{"name":"NdrFreeBuffer","features":[21]},{"name":"NdrFullPointerXlatFree","features":[21]},{"name":"NdrFullPointerXlatInit","features":[21]},{"name":"NdrGetBuffer","features":[21]},{"name":"NdrGetDcomProtocolVersion","features":[21]},{"name":"NdrGetUserMarshalInfo","features":[21]},{"name":"NdrInterfacePointerBufferSize","features":[21]},{"name":"NdrInterfacePointerFree","features":[21]},{"name":"NdrInterfacePointerMarshall","features":[21]},{"name":"NdrInterfacePointerMemorySize","features":[21]},{"name":"NdrInterfacePointerUnmarshall","features":[21]},{"name":"NdrMapCommAndFaultStatus","features":[21]},{"name":"NdrMesProcEncodeDecode","features":[21]},{"name":"NdrMesProcEncodeDecode2","features":[21]},{"name":"NdrMesProcEncodeDecode3","features":[21]},{"name":"NdrMesSimpleTypeAlignSize","features":[21]},{"name":"NdrMesSimpleTypeAlignSizeAll","features":[21]},{"name":"NdrMesSimpleTypeDecode","features":[21]},{"name":"NdrMesSimpleTypeDecodeAll","features":[21]},{"name":"NdrMesSimpleTypeEncode","features":[21]},{"name":"NdrMesSimpleTypeEncodeAll","features":[21]},{"name":"NdrMesTypeAlignSize","features":[21]},{"name":"NdrMesTypeAlignSize2","features":[21]},{"name":"NdrMesTypeAlignSize3","features":[21]},{"name":"NdrMesTypeDecode","features":[21]},{"name":"NdrMesTypeDecode2","features":[21]},{"name":"NdrMesTypeDecode3","features":[21]},{"name":"NdrMesTypeEncode","features":[21]},{"name":"NdrMesTypeEncode2","features":[21]},{"name":"NdrMesTypeEncode3","features":[21]},{"name":"NdrMesTypeFree2","features":[21]},{"name":"NdrMesTypeFree3","features":[21]},{"name":"NdrNonConformantStringBufferSize","features":[21]},{"name":"NdrNonConformantStringMarshall","features":[21]},{"name":"NdrNonConformantStringMemorySize","features":[21]},{"name":"NdrNonConformantStringUnmarshall","features":[21]},{"name":"NdrNonEncapsulatedUnionBufferSize","features":[21]},{"name":"NdrNonEncapsulatedUnionFree","features":[21]},{"name":"NdrNonEncapsulatedUnionMarshall","features":[21]},{"name":"NdrNonEncapsulatedUnionMemorySize","features":[21]},{"name":"NdrNonEncapsulatedUnionUnmarshall","features":[21]},{"name":"NdrNsGetBuffer","features":[21]},{"name":"NdrNsSendReceive","features":[21]},{"name":"NdrOleAllocate","features":[21]},{"name":"NdrOleFree","features":[21]},{"name":"NdrPartialIgnoreClientBufferSize","features":[21]},{"name":"NdrPartialIgnoreClientMarshall","features":[21]},{"name":"NdrPartialIgnoreServerInitialize","features":[21]},{"name":"NdrPartialIgnoreServerUnmarshall","features":[21]},{"name":"NdrPointerBufferSize","features":[21]},{"name":"NdrPointerFree","features":[21]},{"name":"NdrPointerMarshall","features":[21]},{"name":"NdrPointerMemorySize","features":[21]},{"name":"NdrPointerUnmarshall","features":[21]},{"name":"NdrRangeUnmarshall","features":[21]},{"name":"NdrRpcSmClientAllocate","features":[21]},{"name":"NdrRpcSmClientFree","features":[21]},{"name":"NdrRpcSmSetClientToOsf","features":[21]},{"name":"NdrRpcSsDefaultAllocate","features":[21]},{"name":"NdrRpcSsDefaultFree","features":[21]},{"name":"NdrRpcSsDisableAllocate","features":[21]},{"name":"NdrRpcSsEnableAllocate","features":[21]},{"name":"NdrSendReceive","features":[21]},{"name":"NdrServerCall2","features":[21]},{"name":"NdrServerCallAll","features":[21]},{"name":"NdrServerCallNdr64","features":[21]},{"name":"NdrServerContextMarshall","features":[21]},{"name":"NdrServerContextNewMarshall","features":[21]},{"name":"NdrServerContextNewUnmarshall","features":[21]},{"name":"NdrServerContextUnmarshall","features":[21]},{"name":"NdrServerInitialize","features":[21]},{"name":"NdrServerInitializeMarshall","features":[21]},{"name":"NdrServerInitializeNew","features":[21]},{"name":"NdrServerInitializePartial","features":[21]},{"name":"NdrServerInitializeUnmarshall","features":[21]},{"name":"NdrSimpleStructBufferSize","features":[21]},{"name":"NdrSimpleStructFree","features":[21]},{"name":"NdrSimpleStructMarshall","features":[21]},{"name":"NdrSimpleStructMemorySize","features":[21]},{"name":"NdrSimpleStructUnmarshall","features":[21]},{"name":"NdrSimpleTypeMarshall","features":[21]},{"name":"NdrSimpleTypeUnmarshall","features":[21]},{"name":"NdrStubCall2","features":[21]},{"name":"NdrStubCall3","features":[21]},{"name":"NdrUserMarshalBufferSize","features":[21]},{"name":"NdrUserMarshalFree","features":[21]},{"name":"NdrUserMarshalMarshall","features":[21]},{"name":"NdrUserMarshalMemorySize","features":[21]},{"name":"NdrUserMarshalSimpleTypeConvert","features":[21]},{"name":"NdrUserMarshalUnmarshall","features":[21]},{"name":"NdrVaryingArrayBufferSize","features":[21]},{"name":"NdrVaryingArrayFree","features":[21]},{"name":"NdrVaryingArrayMarshall","features":[21]},{"name":"NdrVaryingArrayMemorySize","features":[21]},{"name":"NdrVaryingArrayUnmarshall","features":[21]},{"name":"NdrXmitOrRepAsBufferSize","features":[21]},{"name":"NdrXmitOrRepAsFree","features":[21]},{"name":"NdrXmitOrRepAsMarshall","features":[21]},{"name":"NdrXmitOrRepAsMemorySize","features":[21]},{"name":"NdrXmitOrRepAsUnmarshall","features":[21]},{"name":"PFN_RPCNOTIFICATION_ROUTINE","features":[3,8,21]},{"name":"PFN_RPC_ALLOCATE","features":[21]},{"name":"PFN_RPC_FREE","features":[21]},{"name":"PNDR_ASYNC_MESSAGE","features":[21]},{"name":"PNDR_CORRELATION_INFO","features":[21]},{"name":"PROTOCOL_ADDRESS_CHANGE","features":[21]},{"name":"PROTOCOL_LOADED","features":[21]},{"name":"PROTOCOL_NOT_LOADED","features":[21]},{"name":"PROXY_CALCSIZE","features":[21]},{"name":"PROXY_GETBUFFER","features":[21]},{"name":"PROXY_MARSHAL","features":[21]},{"name":"PROXY_PHASE","features":[21]},{"name":"PROXY_SENDRECEIVE","features":[21]},{"name":"PROXY_UNMARSHAL","features":[21]},{"name":"PRPC_RUNDOWN","features":[21]},{"name":"RDR_CALLOUT_STATE","features":[21]},{"name":"RPCFLG_ACCESSIBILITY_BIT1","features":[21]},{"name":"RPCFLG_ACCESSIBILITY_BIT2","features":[21]},{"name":"RPCFLG_ACCESS_LOCAL","features":[21]},{"name":"RPCFLG_ASYNCHRONOUS","features":[21]},{"name":"RPCFLG_AUTO_COMPLETE","features":[21]},{"name":"RPCFLG_HAS_CALLBACK","features":[21]},{"name":"RPCFLG_HAS_GUARANTEE","features":[21]},{"name":"RPCFLG_HAS_MULTI_SYNTAXES","features":[21]},{"name":"RPCFLG_INPUT_SYNCHRONOUS","features":[21]},{"name":"RPCFLG_LOCAL_CALL","features":[21]},{"name":"RPCFLG_MESSAGE","features":[21]},{"name":"RPCFLG_NDR64_CONTAINS_ARM_LAYOUT","features":[21]},{"name":"RPCFLG_NON_NDR","features":[21]},{"name":"RPCFLG_SENDER_WAITING_FOR_REPLY","features":[21]},{"name":"RPCFLG_WINRT_REMOTE_ASYNC","features":[21]},{"name":"RPCHTTP_RS_ACCESS_1","features":[21]},{"name":"RPCHTTP_RS_ACCESS_2","features":[21]},{"name":"RPCHTTP_RS_INTERFACE","features":[21]},{"name":"RPCHTTP_RS_REDIRECT","features":[21]},{"name":"RPCHTTP_RS_SESSION","features":[21]},{"name":"RPCLT_PDU_FILTER_FUNC","features":[21]},{"name":"RPC_ADDRESS_CHANGE_FN","features":[21]},{"name":"RPC_ADDRESS_CHANGE_TYPE","features":[21]},{"name":"RPC_ASYNC_EVENT","features":[21]},{"name":"RPC_ASYNC_NOTIFICATION_INFO","features":[3,8,21]},{"name":"RPC_ASYNC_STATE","features":[3,8,21]},{"name":"RPC_AUTH_KEY_RETRIEVAL_FN","features":[21]},{"name":"RPC_BHO_DONTLINGER","features":[21]},{"name":"RPC_BHO_EXCLUSIVE_AND_GUARANTEED","features":[21]},{"name":"RPC_BHO_NONCAUSAL","features":[21]},{"name":"RPC_BHT_OBJECT_UUID_VALID","features":[21]},{"name":"RPC_BINDING_HANDLE_OPTIONS_FLAGS","features":[21]},{"name":"RPC_BINDING_HANDLE_OPTIONS_V1","features":[21]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_A","features":[43,21]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_W","features":[43,21]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_A","features":[21]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_W","features":[21]},{"name":"RPC_BINDING_VECTOR","features":[21]},{"name":"RPC_BLOCKING_FN","features":[21]},{"name":"RPC_BUFFER_ASYNC","features":[21]},{"name":"RPC_BUFFER_COMPLETE","features":[21]},{"name":"RPC_BUFFER_EXTRA","features":[21]},{"name":"RPC_BUFFER_NONOTIFY","features":[21]},{"name":"RPC_BUFFER_PARTIAL","features":[21]},{"name":"RPC_CALL_ATTRIBUTES_V1_A","features":[3,21]},{"name":"RPC_CALL_ATTRIBUTES_V1_W","features":[3,21]},{"name":"RPC_CALL_ATTRIBUTES_V2_A","features":[3,21]},{"name":"RPC_CALL_ATTRIBUTES_V2_W","features":[3,21]},{"name":"RPC_CALL_ATTRIBUTES_V3_A","features":[3,21]},{"name":"RPC_CALL_ATTRIBUTES_V3_W","features":[3,21]},{"name":"RPC_CALL_ATTRIBUTES_VERSION","features":[21]},{"name":"RPC_CALL_LOCAL_ADDRESS_V1","features":[21]},{"name":"RPC_CALL_STATUS_CANCELLED","features":[21]},{"name":"RPC_CALL_STATUS_DISCONNECTED","features":[21]},{"name":"RPC_CLIENT_ALLOC","features":[21]},{"name":"RPC_CLIENT_FREE","features":[21]},{"name":"RPC_CLIENT_INFORMATION1","features":[21]},{"name":"RPC_CLIENT_INTERFACE","features":[21]},{"name":"RPC_CONTEXT_HANDLE_DEFAULT_FLAGS","features":[21]},{"name":"RPC_CONTEXT_HANDLE_DONT_SERIALIZE","features":[21]},{"name":"RPC_CONTEXT_HANDLE_FLAGS","features":[21]},{"name":"RPC_CONTEXT_HANDLE_SERIALIZE","features":[21]},{"name":"RPC_C_AUTHN_CLOUD_AP","features":[21]},{"name":"RPC_C_AUTHN_DCE_PRIVATE","features":[21]},{"name":"RPC_C_AUTHN_DCE_PUBLIC","features":[21]},{"name":"RPC_C_AUTHN_DEC_PUBLIC","features":[21]},{"name":"RPC_C_AUTHN_DEFAULT","features":[21]},{"name":"RPC_C_AUTHN_DIGEST","features":[21]},{"name":"RPC_C_AUTHN_DPA","features":[21]},{"name":"RPC_C_AUTHN_GSS_KERBEROS","features":[21]},{"name":"RPC_C_AUTHN_GSS_NEGOTIATE","features":[21]},{"name":"RPC_C_AUTHN_GSS_SCHANNEL","features":[21]},{"name":"RPC_C_AUTHN_INFO_NONE","features":[21]},{"name":"RPC_C_AUTHN_INFO_TYPE","features":[21]},{"name":"RPC_C_AUTHN_INFO_TYPE_HTTP","features":[21]},{"name":"RPC_C_AUTHN_KERNEL","features":[21]},{"name":"RPC_C_AUTHN_LIVEXP_SSP","features":[21]},{"name":"RPC_C_AUTHN_LIVE_SSP","features":[21]},{"name":"RPC_C_AUTHN_MQ","features":[21]},{"name":"RPC_C_AUTHN_MSN","features":[21]},{"name":"RPC_C_AUTHN_MSONLINE","features":[21]},{"name":"RPC_C_AUTHN_NEGO_EXTENDER","features":[21]},{"name":"RPC_C_AUTHN_NONE","features":[21]},{"name":"RPC_C_AUTHN_PKU2U","features":[21]},{"name":"RPC_C_AUTHN_WINNT","features":[21]},{"name":"RPC_C_AUTHZ_DCE","features":[21]},{"name":"RPC_C_AUTHZ_DEFAULT","features":[21]},{"name":"RPC_C_AUTHZ_NAME","features":[21]},{"name":"RPC_C_AUTHZ_NONE","features":[21]},{"name":"RPC_C_BINDING_DEFAULT_TIMEOUT","features":[21]},{"name":"RPC_C_BINDING_INFINITE_TIMEOUT","features":[21]},{"name":"RPC_C_BINDING_MAX_TIMEOUT","features":[21]},{"name":"RPC_C_BINDING_MIN_TIMEOUT","features":[21]},{"name":"RPC_C_BIND_TO_ALL_NICS","features":[21]},{"name":"RPC_C_CANCEL_INFINITE_TIMEOUT","features":[21]},{"name":"RPC_C_DONT_FAIL","features":[21]},{"name":"RPC_C_EP_ALL_ELTS","features":[21]},{"name":"RPC_C_EP_MATCH_BY_BOTH","features":[21]},{"name":"RPC_C_EP_MATCH_BY_IF","features":[21]},{"name":"RPC_C_EP_MATCH_BY_OBJ","features":[21]},{"name":"RPC_C_FULL_CERT_CHAIN","features":[21]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_BASIC","features":[21]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_CERT","features":[21]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_DIGEST","features":[21]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NEGOTIATE","features":[21]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NTLM","features":[21]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_PASSPORT","features":[21]},{"name":"RPC_C_HTTP_AUTHN_TARGET","features":[21]},{"name":"RPC_C_HTTP_AUTHN_TARGET_PROXY","features":[21]},{"name":"RPC_C_HTTP_AUTHN_TARGET_SERVER","features":[21]},{"name":"RPC_C_HTTP_FLAGS","features":[21]},{"name":"RPC_C_HTTP_FLAG_ENABLE_CERT_REVOCATION_CHECK","features":[21]},{"name":"RPC_C_HTTP_FLAG_IGNORE_CERT_CN_INVALID","features":[21]},{"name":"RPC_C_HTTP_FLAG_USE_FIRST_AUTH_SCHEME","features":[21]},{"name":"RPC_C_HTTP_FLAG_USE_SSL","features":[21]},{"name":"RPC_C_LISTEN_MAX_CALLS_DEFAULT","features":[21]},{"name":"RPC_C_MGMT_INQ_IF_IDS","features":[21]},{"name":"RPC_C_MGMT_INQ_PRINC_NAME","features":[21]},{"name":"RPC_C_MGMT_INQ_STATS","features":[21]},{"name":"RPC_C_MGMT_IS_SERVER_LISTEN","features":[21]},{"name":"RPC_C_MGMT_STOP_SERVER_LISTEN","features":[21]},{"name":"RPC_C_MQ_AUTHN_LEVEL_NONE","features":[21]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_INTEGRITY","features":[21]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_PRIVACY","features":[21]},{"name":"RPC_C_MQ_CLEAR_ON_OPEN","features":[21]},{"name":"RPC_C_MQ_EXPRESS","features":[21]},{"name":"RPC_C_MQ_JOURNAL_ALWAYS","features":[21]},{"name":"RPC_C_MQ_JOURNAL_DEADLETTER","features":[21]},{"name":"RPC_C_MQ_JOURNAL_NONE","features":[21]},{"name":"RPC_C_MQ_PERMANENT","features":[21]},{"name":"RPC_C_MQ_RECOVERABLE","features":[21]},{"name":"RPC_C_MQ_TEMPORARY","features":[21]},{"name":"RPC_C_MQ_USE_EXISTING_SECURITY","features":[21]},{"name":"RPC_C_NOTIFY_ON_SEND_COMPLETE","features":[21]},{"name":"RPC_C_NS_DEFAULT_EXP_AGE","features":[21]},{"name":"RPC_C_NS_SYNTAX_DCE","features":[21]},{"name":"RPC_C_NS_SYNTAX_DEFAULT","features":[21]},{"name":"RPC_C_OPT_ASYNC_BLOCK","features":[21]},{"name":"RPC_C_OPT_BINDING_NONCAUSAL","features":[21]},{"name":"RPC_C_OPT_CALL_TIMEOUT","features":[21]},{"name":"RPC_C_OPT_COOKIE_AUTH","features":[21]},{"name":"RPC_C_OPT_COOKIE_AUTH_DESCRIPTOR","features":[21]},{"name":"RPC_C_OPT_DONT_LINGER","features":[21]},{"name":"RPC_C_OPT_MAX_OPTIONS","features":[21]},{"name":"RPC_C_OPT_MQ_ACKNOWLEDGE","features":[21]},{"name":"RPC_C_OPT_MQ_AUTHN_LEVEL","features":[21]},{"name":"RPC_C_OPT_MQ_AUTHN_SERVICE","features":[21]},{"name":"RPC_C_OPT_MQ_DELIVERY","features":[21]},{"name":"RPC_C_OPT_MQ_JOURNAL","features":[21]},{"name":"RPC_C_OPT_MQ_PRIORITY","features":[21]},{"name":"RPC_C_OPT_MQ_TIME_TO_BE_RECEIVED","features":[21]},{"name":"RPC_C_OPT_MQ_TIME_TO_REACH_QUEUE","features":[21]},{"name":"RPC_C_OPT_OPTIMIZE_TIME","features":[21]},{"name":"RPC_C_OPT_PRIVATE_BREAK_ON_SUSPEND","features":[21]},{"name":"RPC_C_OPT_PRIVATE_DO_NOT_DISTURB","features":[21]},{"name":"RPC_C_OPT_PRIVATE_SUPPRESS_WAKE","features":[21]},{"name":"RPC_C_OPT_RESOURCE_TYPE_UUID","features":[21]},{"name":"RPC_C_OPT_SECURITY_CALLBACK","features":[21]},{"name":"RPC_C_OPT_SESSION_ID","features":[21]},{"name":"RPC_C_OPT_TRANS_SEND_BUFFER_SIZE","features":[21]},{"name":"RPC_C_OPT_TRUST_PEER","features":[21]},{"name":"RPC_C_OPT_UNIQUE_BINDING","features":[21]},{"name":"RPC_C_PARM_BUFFER_LENGTH","features":[21]},{"name":"RPC_C_PARM_MAX_PACKET_LENGTH","features":[21]},{"name":"RPC_C_PROFILE_ALL_ELT","features":[21]},{"name":"RPC_C_PROFILE_ALL_ELTS","features":[21]},{"name":"RPC_C_PROFILE_DEFAULT_ELT","features":[21]},{"name":"RPC_C_PROFILE_MATCH_BY_BOTH","features":[21]},{"name":"RPC_C_PROFILE_MATCH_BY_IF","features":[21]},{"name":"RPC_C_PROFILE_MATCH_BY_MBR","features":[21]},{"name":"RPC_C_PROTSEQ_MAX_REQS_DEFAULT","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES_ANY_AUTHORITY","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES_DEFAULT","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES_IGNORE_DELEGATE_FAILURE","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES_LOCAL_MA_HINT","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES_MAKE_FULLSIC","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH","features":[21]},{"name":"RPC_C_QOS_CAPABILITIES_SCHANNEL_FULL_AUTH_IDENTITY","features":[21]},{"name":"RPC_C_QOS_IDENTITY","features":[21]},{"name":"RPC_C_QOS_IDENTITY_DYNAMIC","features":[21]},{"name":"RPC_C_QOS_IDENTITY_STATIC","features":[21]},{"name":"RPC_C_RPCHTTP_USE_LOAD_BALANCE","features":[21]},{"name":"RPC_C_SECURITY_QOS_VERSION","features":[21]},{"name":"RPC_C_SECURITY_QOS_VERSION_1","features":[21]},{"name":"RPC_C_SECURITY_QOS_VERSION_2","features":[21]},{"name":"RPC_C_SECURITY_QOS_VERSION_3","features":[21]},{"name":"RPC_C_SECURITY_QOS_VERSION_4","features":[21]},{"name":"RPC_C_SECURITY_QOS_VERSION_5","features":[21]},{"name":"RPC_C_STATS_CALLS_IN","features":[21]},{"name":"RPC_C_STATS_CALLS_OUT","features":[21]},{"name":"RPC_C_STATS_PKTS_IN","features":[21]},{"name":"RPC_C_STATS_PKTS_OUT","features":[21]},{"name":"RPC_C_TRY_ENFORCE_MAX_CALLS","features":[21]},{"name":"RPC_C_USE_INTERNET_PORT","features":[21]},{"name":"RPC_C_USE_INTRANET_PORT","features":[21]},{"name":"RPC_C_VERS_ALL","features":[21]},{"name":"RPC_C_VERS_COMPATIBLE","features":[21]},{"name":"RPC_C_VERS_EXACT","features":[21]},{"name":"RPC_C_VERS_MAJOR_ONLY","features":[21]},{"name":"RPC_C_VERS_UPTO","features":[21]},{"name":"RPC_DISPATCH_FUNCTION","features":[21]},{"name":"RPC_DISPATCH_TABLE","features":[21]},{"name":"RPC_EEINFO_VERSION","features":[21]},{"name":"RPC_EE_INFO_PARAM","features":[21]},{"name":"RPC_ENDPOINT_TEMPLATEA","features":[21]},{"name":"RPC_ENDPOINT_TEMPLATEW","features":[21]},{"name":"RPC_ERROR_ENUM_HANDLE","features":[21]},{"name":"RPC_EXTENDED_ERROR_INFO","features":[3,21]},{"name":"RPC_FLAGS_VALID_BIT","features":[21]},{"name":"RPC_FORWARD_FUNCTION","features":[21]},{"name":"RPC_FW_IF_FLAG_DCOM","features":[21]},{"name":"RPC_HTTP_PROXY_FREE_STRING","features":[21]},{"name":"RPC_HTTP_REDIRECTOR_STAGE","features":[21]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_A","features":[21]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_A","features":[21]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_W","features":[21]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_A","features":[21]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_W","features":[21]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_W","features":[21]},{"name":"RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH","features":[21]},{"name":"RPC_IF_ALLOW_LOCAL_ONLY","features":[21]},{"name":"RPC_IF_ALLOW_SECURE_ONLY","features":[21]},{"name":"RPC_IF_ALLOW_UNKNOWN_AUTHORITY","features":[21]},{"name":"RPC_IF_ASYNC_CALLBACK","features":[21]},{"name":"RPC_IF_AUTOLISTEN","features":[21]},{"name":"RPC_IF_CALLBACK_FN","features":[21]},{"name":"RPC_IF_ID","features":[21]},{"name":"RPC_IF_ID_VECTOR","features":[21]},{"name":"RPC_IF_OLE","features":[21]},{"name":"RPC_IF_SEC_CACHE_PER_PROC","features":[21]},{"name":"RPC_IF_SEC_NO_CACHE","features":[21]},{"name":"RPC_IMPORT_CONTEXT_P","features":[21]},{"name":"RPC_INTERFACE_GROUP_IDLE_CALLBACK_FN","features":[21]},{"name":"RPC_INTERFACE_HAS_PIPES","features":[21]},{"name":"RPC_INTERFACE_TEMPLATEA","features":[21]},{"name":"RPC_INTERFACE_TEMPLATEW","features":[21]},{"name":"RPC_MESSAGE","features":[21]},{"name":"RPC_MGMT_AUTHORIZATION_FN","features":[21]},{"name":"RPC_NCA_FLAGS_BROADCAST","features":[21]},{"name":"RPC_NCA_FLAGS_DEFAULT","features":[21]},{"name":"RPC_NCA_FLAGS_IDEMPOTENT","features":[21]},{"name":"RPC_NCA_FLAGS_MAYBE","features":[21]},{"name":"RPC_NEW_HTTP_PROXY_CHANNEL","features":[21]},{"name":"RPC_NOTIFICATIONS","features":[21]},{"name":"RPC_NOTIFICATION_TYPES","features":[21]},{"name":"RPC_OBJECT_INQ_FN","features":[21]},{"name":"RPC_POLICY","features":[21]},{"name":"RPC_PROTSEQ_ENDPOINT","features":[21]},{"name":"RPC_PROTSEQ_HTTP","features":[21]},{"name":"RPC_PROTSEQ_LRPC","features":[21]},{"name":"RPC_PROTSEQ_NMP","features":[21]},{"name":"RPC_PROTSEQ_TCP","features":[21]},{"name":"RPC_PROTSEQ_VECTORA","features":[21]},{"name":"RPC_PROTSEQ_VECTORW","features":[21]},{"name":"RPC_PROXY_CONNECTION_TYPE_IN_PROXY","features":[21]},{"name":"RPC_PROXY_CONNECTION_TYPE_OUT_PROXY","features":[21]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV4","features":[21]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV6","features":[21]},{"name":"RPC_QUERY_CALL_LOCAL_ADDRESS","features":[21]},{"name":"RPC_QUERY_CLIENT_ID","features":[21]},{"name":"RPC_QUERY_CLIENT_PID","features":[21]},{"name":"RPC_QUERY_CLIENT_PRINCIPAL_NAME","features":[21]},{"name":"RPC_QUERY_IS_CLIENT_LOCAL","features":[21]},{"name":"RPC_QUERY_NO_AUTH_REQUIRED","features":[21]},{"name":"RPC_QUERY_SERVER_PRINCIPAL_NAME","features":[21]},{"name":"RPC_SECURITY_CALLBACK_FN","features":[21]},{"name":"RPC_SECURITY_QOS","features":[43,21]},{"name":"RPC_SECURITY_QOS_V2_A","features":[43,21]},{"name":"RPC_SECURITY_QOS_V2_W","features":[43,21]},{"name":"RPC_SECURITY_QOS_V3_A","features":[43,21]},{"name":"RPC_SECURITY_QOS_V3_W","features":[43,21]},{"name":"RPC_SECURITY_QOS_V4_A","features":[43,21]},{"name":"RPC_SECURITY_QOS_V4_W","features":[43,21]},{"name":"RPC_SECURITY_QOS_V5_A","features":[43,21]},{"name":"RPC_SECURITY_QOS_V5_W","features":[43,21]},{"name":"RPC_SEC_CONTEXT_KEY_INFO","features":[21]},{"name":"RPC_SERVER_INTERFACE","features":[21]},{"name":"RPC_SETFILTER_FUNC","features":[21]},{"name":"RPC_STATS_VECTOR","features":[21]},{"name":"RPC_STATUS","features":[21]},{"name":"RPC_SYNTAX_IDENTIFIER","features":[21]},{"name":"RPC_SYSTEM_HANDLE_FREE_ALL","features":[21]},{"name":"RPC_SYSTEM_HANDLE_FREE_ERROR_ON_CLOSE","features":[21]},{"name":"RPC_SYSTEM_HANDLE_FREE_RETRIEVED","features":[21]},{"name":"RPC_SYSTEM_HANDLE_FREE_UNRETRIEVED","features":[21]},{"name":"RPC_S_ACCESS_DENIED","features":[21]},{"name":"RPC_S_ADDRESS_ERROR","features":[21]},{"name":"RPC_S_ALREADY_LISTENING","features":[21]},{"name":"RPC_S_ALREADY_REGISTERED","features":[21]},{"name":"RPC_S_ASYNC_CALL_PENDING","features":[21]},{"name":"RPC_S_BINDING_HAS_NO_AUTH","features":[21]},{"name":"RPC_S_BINDING_INCOMPLETE","features":[21]},{"name":"RPC_S_BUFFER_TOO_SMALL","features":[21]},{"name":"RPC_S_CALL_CANCELLED","features":[21]},{"name":"RPC_S_CALL_FAILED","features":[21]},{"name":"RPC_S_CALL_FAILED_DNE","features":[21]},{"name":"RPC_S_CALL_IN_PROGRESS","features":[21]},{"name":"RPC_S_CANNOT_SUPPORT","features":[21]},{"name":"RPC_S_CANT_CREATE_ENDPOINT","features":[21]},{"name":"RPC_S_COMM_FAILURE","features":[21]},{"name":"RPC_S_COOKIE_AUTH_FAILED","features":[21]},{"name":"RPC_S_DO_NOT_DISTURB","features":[21]},{"name":"RPC_S_DUPLICATE_ENDPOINT","features":[21]},{"name":"RPC_S_ENTRY_ALREADY_EXISTS","features":[21]},{"name":"RPC_S_ENTRY_NOT_FOUND","features":[21]},{"name":"RPC_S_ENTRY_TYPE_MISMATCH","features":[21]},{"name":"RPC_S_FP_DIV_ZERO","features":[21]},{"name":"RPC_S_FP_OVERFLOW","features":[21]},{"name":"RPC_S_FP_UNDERFLOW","features":[21]},{"name":"RPC_S_GROUP_MEMBER_NOT_FOUND","features":[21]},{"name":"RPC_S_GRP_ELT_NOT_ADDED","features":[21]},{"name":"RPC_S_GRP_ELT_NOT_REMOVED","features":[21]},{"name":"RPC_S_INCOMPLETE_NAME","features":[21]},{"name":"RPC_S_INTERFACE_NOT_EXPORTED","features":[21]},{"name":"RPC_S_INTERFACE_NOT_FOUND","features":[21]},{"name":"RPC_S_INTERNAL_ERROR","features":[21]},{"name":"RPC_S_INVALID_ARG","features":[21]},{"name":"RPC_S_INVALID_ASYNC_CALL","features":[21]},{"name":"RPC_S_INVALID_ASYNC_HANDLE","features":[21]},{"name":"RPC_S_INVALID_AUTH_IDENTITY","features":[21]},{"name":"RPC_S_INVALID_BINDING","features":[21]},{"name":"RPC_S_INVALID_BOUND","features":[21]},{"name":"RPC_S_INVALID_ENDPOINT_FORMAT","features":[21]},{"name":"RPC_S_INVALID_LEVEL","features":[21]},{"name":"RPC_S_INVALID_NAF_ID","features":[21]},{"name":"RPC_S_INVALID_NAME_SYNTAX","features":[21]},{"name":"RPC_S_INVALID_NETWORK_OPTIONS","features":[21]},{"name":"RPC_S_INVALID_NET_ADDR","features":[21]},{"name":"RPC_S_INVALID_OBJECT","features":[21]},{"name":"RPC_S_INVALID_RPC_PROTSEQ","features":[21]},{"name":"RPC_S_INVALID_SECURITY_DESC","features":[21]},{"name":"RPC_S_INVALID_STRING_BINDING","features":[21]},{"name":"RPC_S_INVALID_STRING_UUID","features":[21]},{"name":"RPC_S_INVALID_TAG","features":[21]},{"name":"RPC_S_INVALID_TIMEOUT","features":[21]},{"name":"RPC_S_INVALID_VERS_OPTION","features":[21]},{"name":"RPC_S_MAX_CALLS_TOO_SMALL","features":[21]},{"name":"RPC_S_NAME_SERVICE_UNAVAILABLE","features":[21]},{"name":"RPC_S_NOTHING_TO_EXPORT","features":[21]},{"name":"RPC_S_NOT_ALL_OBJS_EXPORTED","features":[21]},{"name":"RPC_S_NOT_ALL_OBJS_UNEXPORTED","features":[21]},{"name":"RPC_S_NOT_CANCELLED","features":[21]},{"name":"RPC_S_NOT_ENOUGH_QUOTA","features":[21]},{"name":"RPC_S_NOT_LISTENING","features":[21]},{"name":"RPC_S_NOT_RPC_ERROR","features":[21]},{"name":"RPC_S_NO_BINDINGS","features":[21]},{"name":"RPC_S_NO_CALL_ACTIVE","features":[21]},{"name":"RPC_S_NO_CONTEXT_AVAILABLE","features":[21]},{"name":"RPC_S_NO_ENDPOINT_FOUND","features":[21]},{"name":"RPC_S_NO_ENTRY_NAME","features":[21]},{"name":"RPC_S_NO_INTERFACES","features":[21]},{"name":"RPC_S_NO_MORE_BINDINGS","features":[21]},{"name":"RPC_S_NO_MORE_MEMBERS","features":[21]},{"name":"RPC_S_NO_PRINC_NAME","features":[21]},{"name":"RPC_S_NO_PROTSEQS","features":[21]},{"name":"RPC_S_NO_PROTSEQS_REGISTERED","features":[21]},{"name":"RPC_S_OBJECT_NOT_FOUND","features":[21]},{"name":"RPC_S_OK","features":[21]},{"name":"RPC_S_OUT_OF_MEMORY","features":[21]},{"name":"RPC_S_OUT_OF_RESOURCES","features":[21]},{"name":"RPC_S_OUT_OF_THREADS","features":[21]},{"name":"RPC_S_PRF_ELT_NOT_ADDED","features":[21]},{"name":"RPC_S_PRF_ELT_NOT_REMOVED","features":[21]},{"name":"RPC_S_PROCNUM_OUT_OF_RANGE","features":[21]},{"name":"RPC_S_PROFILE_NOT_ADDED","features":[21]},{"name":"RPC_S_PROTOCOL_ERROR","features":[21]},{"name":"RPC_S_PROTSEQ_NOT_FOUND","features":[21]},{"name":"RPC_S_PROTSEQ_NOT_SUPPORTED","features":[21]},{"name":"RPC_S_PROXY_ACCESS_DENIED","features":[21]},{"name":"RPC_S_RUNTIME_UNINITIALIZED","features":[21]},{"name":"RPC_S_SEC_PKG_ERROR","features":[21]},{"name":"RPC_S_SEND_INCOMPLETE","features":[21]},{"name":"RPC_S_SERVER_OUT_OF_MEMORY","features":[21]},{"name":"RPC_S_SERVER_TOO_BUSY","features":[21]},{"name":"RPC_S_SERVER_UNAVAILABLE","features":[21]},{"name":"RPC_S_STRING_TOO_LONG","features":[21]},{"name":"RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED","features":[21]},{"name":"RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH","features":[21]},{"name":"RPC_S_TIMEOUT","features":[21]},{"name":"RPC_S_TYPE_ALREADY_REGISTERED","features":[21]},{"name":"RPC_S_UNKNOWN_AUTHN_LEVEL","features":[21]},{"name":"RPC_S_UNKNOWN_AUTHN_SERVICE","features":[21]},{"name":"RPC_S_UNKNOWN_AUTHN_TYPE","features":[21]},{"name":"RPC_S_UNKNOWN_AUTHZ_SERVICE","features":[21]},{"name":"RPC_S_UNKNOWN_IF","features":[21]},{"name":"RPC_S_UNKNOWN_MGR_TYPE","features":[21]},{"name":"RPC_S_UNKNOWN_PRINCIPAL","features":[21]},{"name":"RPC_S_UNSUPPORTED_AUTHN_LEVEL","features":[21]},{"name":"RPC_S_UNSUPPORTED_NAME_SYNTAX","features":[21]},{"name":"RPC_S_UNSUPPORTED_TRANS_SYN","features":[21]},{"name":"RPC_S_UNSUPPORTED_TYPE","features":[21]},{"name":"RPC_S_UUID_LOCAL_ONLY","features":[21]},{"name":"RPC_S_UUID_NO_ADDRESS","features":[21]},{"name":"RPC_S_WRONG_KIND_OF_BINDING","features":[21]},{"name":"RPC_S_ZERO_DIVIDE","features":[21]},{"name":"RPC_TRANSFER_SYNTAX","features":[21]},{"name":"RPC_TYPE_DISCONNECT_EVENT_CONTEXT_HANDLE","features":[21]},{"name":"RPC_TYPE_STRICT_CONTEXT_HANDLE","features":[21]},{"name":"RPC_VERSION","features":[21]},{"name":"RpcAsyncAbortCall","features":[3,8,21]},{"name":"RpcAsyncCancelCall","features":[3,8,21]},{"name":"RpcAsyncCompleteCall","features":[3,8,21]},{"name":"RpcAsyncGetCallStatus","features":[3,8,21]},{"name":"RpcAsyncInitializeHandle","features":[3,8,21]},{"name":"RpcAsyncRegisterInfo","features":[3,8,21]},{"name":"RpcAttemptedLbsDecisions","features":[21]},{"name":"RpcAttemptedLbsMessages","features":[21]},{"name":"RpcBackEndConnectionAttempts","features":[21]},{"name":"RpcBackEndConnectionFailed","features":[21]},{"name":"RpcBindingBind","features":[3,8,21]},{"name":"RpcBindingCopy","features":[21]},{"name":"RpcBindingCreateA","features":[43,21]},{"name":"RpcBindingCreateW","features":[43,21]},{"name":"RpcBindingFree","features":[21]},{"name":"RpcBindingFromStringBindingA","features":[21]},{"name":"RpcBindingFromStringBindingW","features":[21]},{"name":"RpcBindingInqAuthClientA","features":[21]},{"name":"RpcBindingInqAuthClientExA","features":[21]},{"name":"RpcBindingInqAuthClientExW","features":[21]},{"name":"RpcBindingInqAuthClientW","features":[21]},{"name":"RpcBindingInqAuthInfoA","features":[21]},{"name":"RpcBindingInqAuthInfoExA","features":[43,21]},{"name":"RpcBindingInqAuthInfoExW","features":[43,21]},{"name":"RpcBindingInqAuthInfoW","features":[21]},{"name":"RpcBindingInqMaxCalls","features":[21]},{"name":"RpcBindingInqObject","features":[21]},{"name":"RpcBindingInqOption","features":[21]},{"name":"RpcBindingReset","features":[21]},{"name":"RpcBindingServerFromClient","features":[21]},{"name":"RpcBindingSetAuthInfoA","features":[21]},{"name":"RpcBindingSetAuthInfoExA","features":[43,21]},{"name":"RpcBindingSetAuthInfoExW","features":[43,21]},{"name":"RpcBindingSetAuthInfoW","features":[21]},{"name":"RpcBindingSetObject","features":[21]},{"name":"RpcBindingSetOption","features":[21]},{"name":"RpcBindingToStringBindingA","features":[21]},{"name":"RpcBindingToStringBindingW","features":[21]},{"name":"RpcBindingUnbind","features":[21]},{"name":"RpcBindingVectorFree","features":[21]},{"name":"RpcCallClientLocality","features":[21]},{"name":"RpcCallComplete","features":[21]},{"name":"RpcCallType","features":[21]},{"name":"RpcCancelThread","features":[21]},{"name":"RpcCancelThreadEx","features":[21]},{"name":"RpcCertGeneratePrincipalNameA","features":[3,70,21]},{"name":"RpcCertGeneratePrincipalNameW","features":[3,70,21]},{"name":"RpcClientCancel","features":[21]},{"name":"RpcClientDisconnect","features":[21]},{"name":"RpcCurrentUniqueUser","features":[21]},{"name":"RpcEpRegisterA","features":[21]},{"name":"RpcEpRegisterNoReplaceA","features":[21]},{"name":"RpcEpRegisterNoReplaceW","features":[21]},{"name":"RpcEpRegisterW","features":[21]},{"name":"RpcEpResolveBinding","features":[21]},{"name":"RpcEpUnregister","features":[21]},{"name":"RpcErrorAddRecord","features":[3,21]},{"name":"RpcErrorClearInformation","features":[21]},{"name":"RpcErrorEndEnumeration","features":[21]},{"name":"RpcErrorGetNextRecord","features":[3,21]},{"name":"RpcErrorGetNumberOfRecords","features":[21]},{"name":"RpcErrorLoadErrorInfo","features":[21]},{"name":"RpcErrorResetEnumeration","features":[21]},{"name":"RpcErrorSaveErrorInfo","features":[21]},{"name":"RpcErrorStartEnumeration","features":[21]},{"name":"RpcExceptionFilter","features":[21]},{"name":"RpcFailedLbsDecisions","features":[21]},{"name":"RpcFailedLbsMessages","features":[21]},{"name":"RpcFreeAuthorizationContext","features":[21]},{"name":"RpcGetAuthorizationContextForClient","features":[3,21]},{"name":"RpcIfIdVectorFree","features":[21]},{"name":"RpcIfInqId","features":[21]},{"name":"RpcImpersonateClient","features":[21]},{"name":"RpcImpersonateClient2","features":[21]},{"name":"RpcImpersonateClientContainer","features":[21]},{"name":"RpcIncomingBandwidth","features":[21]},{"name":"RpcIncomingConnections","features":[21]},{"name":"RpcLastCounter","features":[21]},{"name":"RpcLocalAddressFormat","features":[21]},{"name":"RpcMgmtEnableIdleCleanup","features":[21]},{"name":"RpcMgmtEpEltInqBegin","features":[21]},{"name":"RpcMgmtEpEltInqDone","features":[21]},{"name":"RpcMgmtEpEltInqNextA","features":[21]},{"name":"RpcMgmtEpEltInqNextW","features":[21]},{"name":"RpcMgmtEpUnregister","features":[21]},{"name":"RpcMgmtInqComTimeout","features":[21]},{"name":"RpcMgmtInqDefaultProtectLevel","features":[21]},{"name":"RpcMgmtInqIfIds","features":[21]},{"name":"RpcMgmtInqServerPrincNameA","features":[21]},{"name":"RpcMgmtInqServerPrincNameW","features":[21]},{"name":"RpcMgmtInqStats","features":[21]},{"name":"RpcMgmtIsServerListening","features":[21]},{"name":"RpcMgmtSetAuthorizationFn","features":[21]},{"name":"RpcMgmtSetCancelTimeout","features":[21]},{"name":"RpcMgmtSetComTimeout","features":[21]},{"name":"RpcMgmtSetServerStackSize","features":[21]},{"name":"RpcMgmtStatsVectorFree","features":[21]},{"name":"RpcMgmtStopServerListening","features":[21]},{"name":"RpcMgmtWaitServerListen","features":[21]},{"name":"RpcNetworkInqProtseqsA","features":[21]},{"name":"RpcNetworkInqProtseqsW","features":[21]},{"name":"RpcNetworkIsProtseqValidA","features":[21]},{"name":"RpcNetworkIsProtseqValidW","features":[21]},{"name":"RpcNotificationCallCancel","features":[21]},{"name":"RpcNotificationCallNone","features":[21]},{"name":"RpcNotificationClientDisconnect","features":[21]},{"name":"RpcNotificationTypeApc","features":[21]},{"name":"RpcNotificationTypeCallback","features":[21]},{"name":"RpcNotificationTypeEvent","features":[21]},{"name":"RpcNotificationTypeHwnd","features":[21]},{"name":"RpcNotificationTypeIoc","features":[21]},{"name":"RpcNotificationTypeNone","features":[21]},{"name":"RpcNsBindingExportA","features":[21]},{"name":"RpcNsBindingExportPnPA","features":[21]},{"name":"RpcNsBindingExportPnPW","features":[21]},{"name":"RpcNsBindingExportW","features":[21]},{"name":"RpcNsBindingImportBeginA","features":[21]},{"name":"RpcNsBindingImportBeginW","features":[21]},{"name":"RpcNsBindingImportDone","features":[21]},{"name":"RpcNsBindingImportNext","features":[21]},{"name":"RpcNsBindingInqEntryNameA","features":[21]},{"name":"RpcNsBindingInqEntryNameW","features":[21]},{"name":"RpcNsBindingLookupBeginA","features":[21]},{"name":"RpcNsBindingLookupBeginW","features":[21]},{"name":"RpcNsBindingLookupDone","features":[21]},{"name":"RpcNsBindingLookupNext","features":[21]},{"name":"RpcNsBindingSelect","features":[21]},{"name":"RpcNsBindingUnexportA","features":[21]},{"name":"RpcNsBindingUnexportPnPA","features":[21]},{"name":"RpcNsBindingUnexportPnPW","features":[21]},{"name":"RpcNsBindingUnexportW","features":[21]},{"name":"RpcNsEntryExpandNameA","features":[21]},{"name":"RpcNsEntryExpandNameW","features":[21]},{"name":"RpcNsEntryObjectInqBeginA","features":[21]},{"name":"RpcNsEntryObjectInqBeginW","features":[21]},{"name":"RpcNsEntryObjectInqDone","features":[21]},{"name":"RpcNsEntryObjectInqNext","features":[21]},{"name":"RpcNsGroupDeleteA","features":[21]},{"name":"RpcNsGroupDeleteW","features":[21]},{"name":"RpcNsGroupMbrAddA","features":[21]},{"name":"RpcNsGroupMbrAddW","features":[21]},{"name":"RpcNsGroupMbrInqBeginA","features":[21]},{"name":"RpcNsGroupMbrInqBeginW","features":[21]},{"name":"RpcNsGroupMbrInqDone","features":[21]},{"name":"RpcNsGroupMbrInqNextA","features":[21]},{"name":"RpcNsGroupMbrInqNextW","features":[21]},{"name":"RpcNsGroupMbrRemoveA","features":[21]},{"name":"RpcNsGroupMbrRemoveW","features":[21]},{"name":"RpcNsMgmtBindingUnexportA","features":[21]},{"name":"RpcNsMgmtBindingUnexportW","features":[21]},{"name":"RpcNsMgmtEntryCreateA","features":[21]},{"name":"RpcNsMgmtEntryCreateW","features":[21]},{"name":"RpcNsMgmtEntryDeleteA","features":[21]},{"name":"RpcNsMgmtEntryDeleteW","features":[21]},{"name":"RpcNsMgmtEntryInqIfIdsA","features":[21]},{"name":"RpcNsMgmtEntryInqIfIdsW","features":[21]},{"name":"RpcNsMgmtHandleSetExpAge","features":[21]},{"name":"RpcNsMgmtInqExpAge","features":[21]},{"name":"RpcNsMgmtSetExpAge","features":[21]},{"name":"RpcNsProfileDeleteA","features":[21]},{"name":"RpcNsProfileDeleteW","features":[21]},{"name":"RpcNsProfileEltAddA","features":[21]},{"name":"RpcNsProfileEltAddW","features":[21]},{"name":"RpcNsProfileEltInqBeginA","features":[21]},{"name":"RpcNsProfileEltInqBeginW","features":[21]},{"name":"RpcNsProfileEltInqDone","features":[21]},{"name":"RpcNsProfileEltInqNextA","features":[21]},{"name":"RpcNsProfileEltInqNextW","features":[21]},{"name":"RpcNsProfileEltRemoveA","features":[21]},{"name":"RpcNsProfileEltRemoveW","features":[21]},{"name":"RpcObjectInqType","features":[21]},{"name":"RpcObjectSetInqFn","features":[21]},{"name":"RpcObjectSetType","features":[21]},{"name":"RpcOutgoingBandwidth","features":[21]},{"name":"RpcPerfCounters","features":[21]},{"name":"RpcProtseqVectorFreeA","features":[21]},{"name":"RpcProtseqVectorFreeW","features":[21]},{"name":"RpcRaiseException","features":[21]},{"name":"RpcReceiveComplete","features":[21]},{"name":"RpcRequestsPerSecond","features":[21]},{"name":"RpcRevertContainerImpersonation","features":[21]},{"name":"RpcRevertToSelf","features":[21]},{"name":"RpcRevertToSelfEx","features":[21]},{"name":"RpcSendComplete","features":[21]},{"name":"RpcServerCompleteSecurityCallback","features":[21]},{"name":"RpcServerInqBindingHandle","features":[21]},{"name":"RpcServerInqBindings","features":[21]},{"name":"RpcServerInqBindingsEx","features":[21]},{"name":"RpcServerInqCallAttributesA","features":[21]},{"name":"RpcServerInqCallAttributesW","features":[21]},{"name":"RpcServerInqDefaultPrincNameA","features":[21]},{"name":"RpcServerInqDefaultPrincNameW","features":[21]},{"name":"RpcServerInqIf","features":[21]},{"name":"RpcServerInterfaceGroupActivate","features":[21]},{"name":"RpcServerInterfaceGroupClose","features":[21]},{"name":"RpcServerInterfaceGroupCreateA","features":[21]},{"name":"RpcServerInterfaceGroupCreateW","features":[21]},{"name":"RpcServerInterfaceGroupDeactivate","features":[21]},{"name":"RpcServerInterfaceGroupInqBindings","features":[21]},{"name":"RpcServerListen","features":[21]},{"name":"RpcServerRegisterAuthInfoA","features":[21]},{"name":"RpcServerRegisterAuthInfoW","features":[21]},{"name":"RpcServerRegisterIf","features":[21]},{"name":"RpcServerRegisterIf2","features":[21]},{"name":"RpcServerRegisterIf3","features":[21]},{"name":"RpcServerRegisterIfEx","features":[21]},{"name":"RpcServerSubscribeForNotification","features":[3,8,21]},{"name":"RpcServerTestCancel","features":[21]},{"name":"RpcServerUnregisterIf","features":[21]},{"name":"RpcServerUnregisterIfEx","features":[21]},{"name":"RpcServerUnsubscribeForNotification","features":[21]},{"name":"RpcServerUseAllProtseqs","features":[21]},{"name":"RpcServerUseAllProtseqsEx","features":[21]},{"name":"RpcServerUseAllProtseqsIf","features":[21]},{"name":"RpcServerUseAllProtseqsIfEx","features":[21]},{"name":"RpcServerUseProtseqA","features":[21]},{"name":"RpcServerUseProtseqEpA","features":[21]},{"name":"RpcServerUseProtseqEpExA","features":[21]},{"name":"RpcServerUseProtseqEpExW","features":[21]},{"name":"RpcServerUseProtseqEpW","features":[21]},{"name":"RpcServerUseProtseqExA","features":[21]},{"name":"RpcServerUseProtseqExW","features":[21]},{"name":"RpcServerUseProtseqIfA","features":[21]},{"name":"RpcServerUseProtseqIfExA","features":[21]},{"name":"RpcServerUseProtseqIfExW","features":[21]},{"name":"RpcServerUseProtseqIfW","features":[21]},{"name":"RpcServerUseProtseqW","features":[21]},{"name":"RpcServerYield","features":[21]},{"name":"RpcSmAllocate","features":[21]},{"name":"RpcSmClientFree","features":[21]},{"name":"RpcSmDestroyClientContext","features":[21]},{"name":"RpcSmDisableAllocate","features":[21]},{"name":"RpcSmEnableAllocate","features":[21]},{"name":"RpcSmFree","features":[21]},{"name":"RpcSmGetThreadHandle","features":[21]},{"name":"RpcSmSetClientAllocFree","features":[21]},{"name":"RpcSmSetThreadHandle","features":[21]},{"name":"RpcSmSwapClientAllocFree","features":[21]},{"name":"RpcSsAllocate","features":[21]},{"name":"RpcSsContextLockExclusive","features":[21]},{"name":"RpcSsContextLockShared","features":[21]},{"name":"RpcSsDestroyClientContext","features":[21]},{"name":"RpcSsDisableAllocate","features":[21]},{"name":"RpcSsDontSerializeContext","features":[21]},{"name":"RpcSsEnableAllocate","features":[21]},{"name":"RpcSsFree","features":[21]},{"name":"RpcSsGetContextBinding","features":[21]},{"name":"RpcSsGetThreadHandle","features":[21]},{"name":"RpcSsSetClientAllocFree","features":[21]},{"name":"RpcSsSetThreadHandle","features":[21]},{"name":"RpcSsSwapClientAllocFree","features":[21]},{"name":"RpcStringBindingComposeA","features":[21]},{"name":"RpcStringBindingComposeW","features":[21]},{"name":"RpcStringBindingParseA","features":[21]},{"name":"RpcStringBindingParseW","features":[21]},{"name":"RpcStringFreeA","features":[21]},{"name":"RpcStringFreeW","features":[21]},{"name":"RpcTestCancel","features":[21]},{"name":"RpcUserFree","features":[21]},{"name":"SCONTEXT_QUEUE","features":[21]},{"name":"SEC_WINNT_AUTH_IDENTITY","features":[21]},{"name":"SEC_WINNT_AUTH_IDENTITY_A","features":[21]},{"name":"SEC_WINNT_AUTH_IDENTITY_ANSI","features":[21]},{"name":"SEC_WINNT_AUTH_IDENTITY_UNICODE","features":[21]},{"name":"SEC_WINNT_AUTH_IDENTITY_W","features":[21]},{"name":"SERVER_ROUTINE","features":[21]},{"name":"STUB_CALL_SERVER","features":[21]},{"name":"STUB_CALL_SERVER_NO_HRESULT","features":[21]},{"name":"STUB_MARSHAL","features":[21]},{"name":"STUB_PHASE","features":[21]},{"name":"STUB_THUNK","features":[21]},{"name":"STUB_UNMARSHAL","features":[21]},{"name":"SYSTEM_HANDLE_COMPOSITION_OBJECT","features":[21]},{"name":"SYSTEM_HANDLE_EVENT","features":[21]},{"name":"SYSTEM_HANDLE_FILE","features":[21]},{"name":"SYSTEM_HANDLE_INVALID","features":[21]},{"name":"SYSTEM_HANDLE_JOB","features":[21]},{"name":"SYSTEM_HANDLE_MAX","features":[21]},{"name":"SYSTEM_HANDLE_MUTEX","features":[21]},{"name":"SYSTEM_HANDLE_PIPE","features":[21]},{"name":"SYSTEM_HANDLE_PROCESS","features":[21]},{"name":"SYSTEM_HANDLE_REG_KEY","features":[21]},{"name":"SYSTEM_HANDLE_SECTION","features":[21]},{"name":"SYSTEM_HANDLE_SEMAPHORE","features":[21]},{"name":"SYSTEM_HANDLE_SOCKET","features":[21]},{"name":"SYSTEM_HANDLE_THREAD","features":[21]},{"name":"SYSTEM_HANDLE_TOKEN","features":[21]},{"name":"TARGET_IS_NT100_OR_LATER","features":[21]},{"name":"TARGET_IS_NT1012_OR_LATER","features":[21]},{"name":"TARGET_IS_NT102_OR_LATER","features":[21]},{"name":"TARGET_IS_NT351_OR_WIN95_OR_LATER","features":[21]},{"name":"TARGET_IS_NT40_OR_LATER","features":[21]},{"name":"TARGET_IS_NT50_OR_LATER","features":[21]},{"name":"TARGET_IS_NT51_OR_LATER","features":[21]},{"name":"TARGET_IS_NT60_OR_LATER","features":[21]},{"name":"TARGET_IS_NT61_OR_LATER","features":[21]},{"name":"TARGET_IS_NT62_OR_LATER","features":[21]},{"name":"TARGET_IS_NT63_OR_LATER","features":[21]},{"name":"TRANSPORT_TYPE_CN","features":[21]},{"name":"TRANSPORT_TYPE_DG","features":[21]},{"name":"TRANSPORT_TYPE_LPC","features":[21]},{"name":"TRANSPORT_TYPE_WMSG","features":[21]},{"name":"USER_CALL_IS_ASYNC","features":[21]},{"name":"USER_CALL_NEW_CORRELATION_DESC","features":[21]},{"name":"USER_MARSHAL_CB","features":[21]},{"name":"USER_MARSHAL_CB_BUFFER_SIZE","features":[21]},{"name":"USER_MARSHAL_CB_FREE","features":[21]},{"name":"USER_MARSHAL_CB_MARSHALL","features":[21]},{"name":"USER_MARSHAL_CB_TYPE","features":[21]},{"name":"USER_MARSHAL_CB_UNMARSHALL","features":[21]},{"name":"USER_MARSHAL_FC_BYTE","features":[21]},{"name":"USER_MARSHAL_FC_CHAR","features":[21]},{"name":"USER_MARSHAL_FC_DOUBLE","features":[21]},{"name":"USER_MARSHAL_FC_FLOAT","features":[21]},{"name":"USER_MARSHAL_FC_HYPER","features":[21]},{"name":"USER_MARSHAL_FC_LONG","features":[21]},{"name":"USER_MARSHAL_FC_SHORT","features":[21]},{"name":"USER_MARSHAL_FC_SMALL","features":[21]},{"name":"USER_MARSHAL_FC_ULONG","features":[21]},{"name":"USER_MARSHAL_FC_USHORT","features":[21]},{"name":"USER_MARSHAL_FC_USMALL","features":[21]},{"name":"USER_MARSHAL_FC_WCHAR","features":[21]},{"name":"USER_MARSHAL_FREEING_ROUTINE","features":[21]},{"name":"USER_MARSHAL_MARSHALLING_ROUTINE","features":[21]},{"name":"USER_MARSHAL_ROUTINE_QUADRUPLE","features":[21]},{"name":"USER_MARSHAL_SIZING_ROUTINE","features":[21]},{"name":"USER_MARSHAL_UNMARSHALLING_ROUTINE","features":[21]},{"name":"UUID_VECTOR","features":[21]},{"name":"UuidCompare","features":[21]},{"name":"UuidCreate","features":[21]},{"name":"UuidCreateNil","features":[21]},{"name":"UuidCreateSequential","features":[21]},{"name":"UuidEqual","features":[21]},{"name":"UuidFromStringA","features":[21]},{"name":"UuidFromStringW","features":[21]},{"name":"UuidHash","features":[21]},{"name":"UuidIsNil","features":[21]},{"name":"UuidToStringA","features":[21]},{"name":"UuidToStringW","features":[21]},{"name":"XLAT_CLIENT","features":[21]},{"name":"XLAT_SERVER","features":[21]},{"name":"XLAT_SIDE","features":[21]},{"name":"XMIT_HELPER_ROUTINE","features":[21]},{"name":"XMIT_ROUTINE_QUINTUPLE","features":[21]},{"name":"_NDR_PROC_CONTEXT","features":[21]},{"name":"__RPCPROXY_H_VERSION__","features":[21]},{"name":"cbNDRContext","features":[21]},{"name":"eeptAnsiString","features":[21]},{"name":"eeptBinary","features":[21]},{"name":"eeptLongVal","features":[21]},{"name":"eeptNone","features":[21]},{"name":"eeptPointerVal","features":[21]},{"name":"eeptShortVal","features":[21]},{"name":"eeptUnicodeString","features":[21]},{"name":"rcclClientUnknownLocality","features":[21]},{"name":"rcclInvalid","features":[21]},{"name":"rcclLocal","features":[21]},{"name":"rcclRemote","features":[21]},{"name":"rctGuaranteed","features":[21]},{"name":"rctInvalid","features":[21]},{"name":"rctNormal","features":[21]},{"name":"rctTraining","features":[21]},{"name":"rlafIPv4","features":[21]},{"name":"rlafIPv6","features":[21]},{"name":"rlafInvalid","features":[21]},{"name":"system_handle_t","features":[21]}],"604":[{"name":"ACCESS_MASKENUM","features":[200]},{"name":"AUTHENTICATION_INFO","features":[200]},{"name":"AUTH_TYPE","features":[200]},{"name":"BCP6xFILEFMT","features":[200]},{"name":"BCPABORT","features":[200]},{"name":"BCPBATCH","features":[200]},{"name":"BCPFILECP","features":[200]},{"name":"BCPFILECP_ACP","features":[200]},{"name":"BCPFILECP_OEMCP","features":[200]},{"name":"BCPFILECP_RAW","features":[200]},{"name":"BCPFILEFMT","features":[200]},{"name":"BCPFIRST","features":[200]},{"name":"BCPHINTS","features":[200]},{"name":"BCPHINTSA","features":[200]},{"name":"BCPHINTSW","features":[200]},{"name":"BCPKEEPIDENTITY","features":[200]},{"name":"BCPKEEPNULLS","features":[200]},{"name":"BCPLAST","features":[200]},{"name":"BCPMAXERRS","features":[200]},{"name":"BCPODBC","features":[200]},{"name":"BCPTEXTFILE","features":[200]},{"name":"BCPUNICODEFILE","features":[200]},{"name":"BCP_FMT_COLLATION","features":[200]},{"name":"BCP_FMT_COLLATION_ID","features":[200]},{"name":"BCP_FMT_DATA_LEN","features":[200]},{"name":"BCP_FMT_INDICATOR_LEN","features":[200]},{"name":"BCP_FMT_SERVER_COL","features":[200]},{"name":"BCP_FMT_TERMINATOR","features":[200]},{"name":"BCP_FMT_TYPE","features":[200]},{"name":"BIO_BINDER","features":[200]},{"name":"BMK_DURABILITY_INTRANSACTION","features":[200]},{"name":"BMK_DURABILITY_REORGANIZATION","features":[200]},{"name":"BMK_DURABILITY_ROWSET","features":[200]},{"name":"BMK_DURABILITY_XTRANSACTION","features":[200]},{"name":"BUCKETCATEGORIZE","features":[200]},{"name":"BUCKET_EXPONENTIAL","features":[200]},{"name":"BUCKET_LINEAR","features":[200]},{"name":"CASE_REQUIREMENT","features":[200]},{"name":"CASE_REQUIREMENT_ANY","features":[200]},{"name":"CASE_REQUIREMENT_UPPER_IF_AQS","features":[200]},{"name":"CATALOG_PAUSED_REASON_DELAYED_RECOVERY","features":[200]},{"name":"CATALOG_PAUSED_REASON_EXTERNAL","features":[200]},{"name":"CATALOG_PAUSED_REASON_HIGH_CPU","features":[200]},{"name":"CATALOG_PAUSED_REASON_HIGH_IO","features":[200]},{"name":"CATALOG_PAUSED_REASON_HIGH_NTF_RATE","features":[200]},{"name":"CATALOG_PAUSED_REASON_LOW_BATTERY","features":[200]},{"name":"CATALOG_PAUSED_REASON_LOW_DISK","features":[200]},{"name":"CATALOG_PAUSED_REASON_LOW_MEMORY","features":[200]},{"name":"CATALOG_PAUSED_REASON_NONE","features":[200]},{"name":"CATALOG_PAUSED_REASON_UPGRADING","features":[200]},{"name":"CATALOG_PAUSED_REASON_USER_ACTIVE","features":[200]},{"name":"CATALOG_STATUS_FULL_CRAWL","features":[200]},{"name":"CATALOG_STATUS_IDLE","features":[200]},{"name":"CATALOG_STATUS_INCREMENTAL_CRAWL","features":[200]},{"name":"CATALOG_STATUS_PAUSED","features":[200]},{"name":"CATALOG_STATUS_PROCESSING_NOTIFICATIONS","features":[200]},{"name":"CATALOG_STATUS_RECOVERING","features":[200]},{"name":"CATALOG_STATUS_SHUTTING_DOWN","features":[200]},{"name":"CATEGORIZATION","features":[3,146,65,200,44]},{"name":"CATEGORIZATIONSET","features":[3,146,65,200,44]},{"name":"CATEGORIZE_BUCKETS","features":[200]},{"name":"CATEGORIZE_CLUSTER","features":[200]},{"name":"CATEGORIZE_RANGE","features":[200]},{"name":"CATEGORIZE_UNIQUE","features":[200]},{"name":"CATEGORY_COLLATOR","features":[200]},{"name":"CATEGORY_GATHERER","features":[200]},{"name":"CATEGORY_INDEXER","features":[200]},{"name":"CATEGORY_SEARCH","features":[200]},{"name":"CDBBMKDISPIDS","features":[200]},{"name":"CDBCOLDISPIDS","features":[200]},{"name":"CDBSELFDISPIDS","features":[200]},{"name":"CERT_E_NOT_FOUND_OR_NO_PERMISSSION","features":[200]},{"name":"CHANNEL_AGENT_DYNAMIC_SCHEDULE","features":[200]},{"name":"CHANNEL_AGENT_FLAGS","features":[200]},{"name":"CHANNEL_AGENT_PRECACHE_ALL","features":[200]},{"name":"CHANNEL_AGENT_PRECACHE_SCRNSAVER","features":[200]},{"name":"CHANNEL_AGENT_PRECACHE_SOME","features":[200]},{"name":"CI_E_CORRUPT_FWIDX","features":[200]},{"name":"CI_E_DIACRITIC_SETTINGS_DIFFER","features":[200]},{"name":"CI_E_INCONSISTENT_TRANSACTION","features":[200]},{"name":"CI_E_INVALID_CATALOG_LIST_VERSION","features":[200]},{"name":"CI_E_MULTIPLE_PROTECTED_USERS_UNSUPPORTED","features":[200]},{"name":"CI_E_NO_AUXMETADATA","features":[200]},{"name":"CI_E_NO_CATALOG_MANAGER","features":[200]},{"name":"CI_E_NO_PROTECTED_USER","features":[200]},{"name":"CI_E_PROTECTED_CATALOG_NON_INTERACTIVE_USER","features":[200]},{"name":"CI_E_PROTECTED_CATALOG_NOT_AVAILABLE","features":[200]},{"name":"CI_E_PROTECTED_CATALOG_SID_MISMATCH","features":[200]},{"name":"CI_S_CATALOG_RESET","features":[200]},{"name":"CI_S_CLIENT_REQUESTED_ABORT","features":[200]},{"name":"CI_S_NEW_AUXMETADATA","features":[200]},{"name":"CI_S_RETRY_DOCUMENT","features":[200]},{"name":"CLSID_CISimpleCommandCreator","features":[200]},{"name":"CLSID_DataShapeProvider","features":[200]},{"name":"CLSID_MSDASQL","features":[200]},{"name":"CLSID_MSDASQL_ENUMERATOR","features":[200]},{"name":"CLSID_MSPersist","features":[200]},{"name":"CLSID_SQLOLEDB","features":[200]},{"name":"CLSID_SQLOLEDB_ENUMERATOR","features":[200]},{"name":"CLSID_SQLOLEDB_ERROR","features":[200]},{"name":"CLUSIONREASON_DEFAULT","features":[200]},{"name":"CLUSIONREASON_GROUPPOLICY","features":[200]},{"name":"CLUSIONREASON_UNKNOWNSCOPE","features":[200]},{"name":"CLUSIONREASON_USER","features":[200]},{"name":"CLUSION_REASON","features":[200]},{"name":"CMDLINE_E_ALREADY_INIT","features":[200]},{"name":"CMDLINE_E_NOT_INIT","features":[200]},{"name":"CMDLINE_E_NUM_PARAMS","features":[200]},{"name":"CMDLINE_E_PARAM_SIZE","features":[200]},{"name":"CMDLINE_E_PAREN","features":[200]},{"name":"CMDLINE_E_UNEXPECTED","features":[200]},{"name":"CM_E_CONNECTIONTIMEOUT","features":[200]},{"name":"CM_E_DATASOURCENOTAVAILABLE","features":[200]},{"name":"CM_E_INSUFFICIENTBUFFER","features":[200]},{"name":"CM_E_INVALIDDATASOURCE","features":[200]},{"name":"CM_E_NOQUERYCONNECTIONS","features":[200]},{"name":"CM_E_REGISTRY","features":[200]},{"name":"CM_E_SERVERNOTFOUND","features":[200]},{"name":"CM_E_TIMEOUT","features":[200]},{"name":"CM_E_TOOMANYDATASERVERS","features":[200]},{"name":"CM_E_TOOMANYDATASOURCES","features":[200]},{"name":"CM_S_NODATASERVERS","features":[200]},{"name":"COLL_E_BADRESULT","features":[200]},{"name":"COLL_E_BADSEQUENCE","features":[200]},{"name":"COLL_E_BUFFERTOOSMALL","features":[200]},{"name":"COLL_E_DUPLICATEDBID","features":[200]},{"name":"COLL_E_INCOMPATIBLECOLUMNS","features":[200]},{"name":"COLL_E_MAXCONNEXCEEDED","features":[200]},{"name":"COLL_E_NODEFAULTCATALOG","features":[200]},{"name":"COLL_E_NOMOREDATA","features":[200]},{"name":"COLL_E_NOSORTCOLUMN","features":[200]},{"name":"COLL_E_TOOMANYMERGECOLUMNS","features":[200]},{"name":"COLUMNSET","features":[146,65,200]},{"name":"CONDITION_CREATION_DEFAULT","features":[200]},{"name":"CONDITION_CREATION_NONE","features":[200]},{"name":"CONDITION_CREATION_OPTIONS","features":[200]},{"name":"CONDITION_CREATION_SIMPLIFY","features":[200]},{"name":"CONDITION_CREATION_USE_CONTENT_LOCALE","features":[200]},{"name":"CONDITION_CREATION_VECTOR_AND","features":[200]},{"name":"CONDITION_CREATION_VECTOR_LEAF","features":[200]},{"name":"CONDITION_CREATION_VECTOR_OR","features":[200]},{"name":"CONTENTRESTRICTION","features":[146,65,200]},{"name":"CONTENT_SOURCE_E_CONTENT_CLASS_READ","features":[200]},{"name":"CONTENT_SOURCE_E_CONTENT_SOURCE_COLUMN_TYPE","features":[200]},{"name":"CONTENT_SOURCE_E_NULL_CONTENT_CLASS_BSTR","features":[200]},{"name":"CONTENT_SOURCE_E_NULL_URI","features":[200]},{"name":"CONTENT_SOURCE_E_OUT_OF_RANGE","features":[200]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_BAD_VECTOR_SIZE","features":[200]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_READ","features":[200]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_EXCEPTION","features":[200]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_NULL_POINTER","features":[200]},{"name":"CQUERYDISPIDS","features":[200]},{"name":"CQUERYMETADISPIDS","features":[200]},{"name":"CQUERYPROPERTY","features":[200]},{"name":"CREATESUBSCRIPTIONFLAGS","features":[200]},{"name":"CREATESUBS_ADDTOFAVORITES","features":[200]},{"name":"CREATESUBS_FROMFAVORITES","features":[200]},{"name":"CREATESUBS_NOSAVE","features":[200]},{"name":"CREATESUBS_NOUI","features":[200]},{"name":"CREATESUBS_SOFTWAREUPDATE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_ASSERTIONS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_CATALOGS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_CHARACTER_SETS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_COLLATIONS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMNS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_DOMAIN_USAGE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_PRIVILEGES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_COLUMN_USAGE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_TABLE_USAGE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_FOREIGN_KEYS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_INDEXES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_KEY_COLUMN_USAGE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_LINKEDSERVERS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECTS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECT_ACTIONS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_PRIMARY_KEYS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_COLUMNS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_PARAMETERS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_PROVIDER_TYPES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_REFERENTIAL_CONSTRAINTS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_SCHEMATA","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_SQL_LANGUAGES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_STATISTICS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES_INFO","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_CONSTRAINTS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_PRIVILEGES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_STATISTICS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_TRANSLATIONS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_TRUSTEE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_USAGE_PRIVILEGES","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEWS","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_COLUMN_USAGE","features":[200]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_TABLE_USAGE","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_ACTIONS","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_COMMANDS","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_CUBES","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_DIMENSIONS","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_FUNCTIONS","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_HIERARCHIES","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_LEVELS","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_MEASURES","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_MEMBERS","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_PROPERTIES","features":[200]},{"name":"CRESTRICTIONS_MDSCHEMA_SETS","features":[200]},{"name":"CSTORAGEPROPERTY","features":[200]},{"name":"CSearchLanguageSupport","features":[200]},{"name":"CSearchManager","features":[200]},{"name":"CSearchRoot","features":[200]},{"name":"CSearchScopeRule","features":[200]},{"name":"CatalogPausedReason","features":[200]},{"name":"CatalogStatus","features":[200]},{"name":"CompoundCondition","features":[200]},{"name":"ConditionFactory","features":[200]},{"name":"DATE_STRUCT","features":[200]},{"name":"DBACCESSORFLAGSENUM","features":[200]},{"name":"DBACCESSOR_INHERITED","features":[200]},{"name":"DBACCESSOR_INVALID","features":[200]},{"name":"DBACCESSOR_OPTIMIZED","features":[200]},{"name":"DBACCESSOR_PARAMETERDATA","features":[200]},{"name":"DBACCESSOR_PASSBYREF","features":[200]},{"name":"DBACCESSOR_ROWDATA","features":[200]},{"name":"DBASYNCHOPENUM","features":[200]},{"name":"DBASYNCHOP_OPEN","features":[200]},{"name":"DBASYNCHPHASEENUM","features":[200]},{"name":"DBASYNCHPHASE_CANCELED","features":[200]},{"name":"DBASYNCHPHASE_COMPLETE","features":[200]},{"name":"DBASYNCHPHASE_INITIALIZATION","features":[200]},{"name":"DBASYNCHPHASE_POPULATION","features":[200]},{"name":"DBBINDEXT","features":[200]},{"name":"DBBINDEXT","features":[200]},{"name":"DBBINDFLAGENUM","features":[200]},{"name":"DBBINDFLAG_HTML","features":[200]},{"name":"DBBINDING","features":[200]},{"name":"DBBINDING","features":[200]},{"name":"DBBINDSTATUSENUM","features":[200]},{"name":"DBBINDSTATUS_BADBINDINFO","features":[200]},{"name":"DBBINDSTATUS_BADORDINAL","features":[200]},{"name":"DBBINDSTATUS_BADSTORAGEFLAGS","features":[200]},{"name":"DBBINDSTATUS_MULTIPLESTORAGE","features":[200]},{"name":"DBBINDSTATUS_NOINTERFACE","features":[200]},{"name":"DBBINDSTATUS_OK","features":[200]},{"name":"DBBINDSTATUS_UNSUPPORTEDCONVERSION","features":[200]},{"name":"DBBINDURLFLAGENUM","features":[200]},{"name":"DBBINDURLFLAG_ASYNCHRONOUS","features":[200]},{"name":"DBBINDURLFLAG_COLLECTION","features":[200]},{"name":"DBBINDURLFLAG_DELAYFETCHCOLUMNS","features":[200]},{"name":"DBBINDURLFLAG_DELAYFETCHSTREAM","features":[200]},{"name":"DBBINDURLFLAG_ISSTRUCTUREDDOCUMENT","features":[200]},{"name":"DBBINDURLFLAG_OPENIFEXISTS","features":[200]},{"name":"DBBINDURLFLAG_OUTPUT","features":[200]},{"name":"DBBINDURLFLAG_OVERWRITE","features":[200]},{"name":"DBBINDURLFLAG_READ","features":[200]},{"name":"DBBINDURLFLAG_READWRITE","features":[200]},{"name":"DBBINDURLFLAG_RECURSIVE","features":[200]},{"name":"DBBINDURLFLAG_SHARE_DENY_NONE","features":[200]},{"name":"DBBINDURLFLAG_SHARE_DENY_READ","features":[200]},{"name":"DBBINDURLFLAG_SHARE_DENY_WRITE","features":[200]},{"name":"DBBINDURLFLAG_SHARE_EXCLUSIVE","features":[200]},{"name":"DBBINDURLFLAG_WAITFORINIT","features":[200]},{"name":"DBBINDURLFLAG_WRITE","features":[200]},{"name":"DBBINDURLSTATUSENUM","features":[200]},{"name":"DBBINDURLSTATUS_S_DENYNOTSUPPORTED","features":[200]},{"name":"DBBINDURLSTATUS_S_DENYTYPENOTSUPPORTED","features":[200]},{"name":"DBBINDURLSTATUS_S_OK","features":[200]},{"name":"DBBINDURLSTATUS_S_REDIRECTED","features":[200]},{"name":"DBBMKGUID","features":[200]},{"name":"DBBMK_FIRST","features":[200]},{"name":"DBBMK_INVALID","features":[200]},{"name":"DBBMK_LAST","features":[200]},{"name":"DBBOOKMARK","features":[200]},{"name":"DBCIDGUID","features":[200]},{"name":"DBCOLUMNACCESS","features":[146,200]},{"name":"DBCOLUMNACCESS","features":[146,200]},{"name":"DBCOLUMNDESC","features":[3,146,43,200,44]},{"name":"DBCOLUMNDESC","features":[3,146,43,200,44]},{"name":"DBCOLUMNDESCFLAGSENUM","features":[200]},{"name":"DBCOLUMNDESCFLAGS_CLSID","features":[200]},{"name":"DBCOLUMNDESCFLAGS_COLSIZE","features":[200]},{"name":"DBCOLUMNDESCFLAGS_DBCID","features":[200]},{"name":"DBCOLUMNDESCFLAGS_ITYPEINFO","features":[200]},{"name":"DBCOLUMNDESCFLAGS_PRECISION","features":[200]},{"name":"DBCOLUMNDESCFLAGS_PROPERTIES","features":[200]},{"name":"DBCOLUMNDESCFLAGS_SCALE","features":[200]},{"name":"DBCOLUMNDESCFLAGS_TYPENAME","features":[200]},{"name":"DBCOLUMNDESCFLAGS_WTYPE","features":[200]},{"name":"DBCOLUMNFLAGS15ENUM","features":[200]},{"name":"DBCOLUMNFLAGSDEPRECATED","features":[200]},{"name":"DBCOLUMNFLAGSENUM","features":[200]},{"name":"DBCOLUMNFLAGSENUM20","features":[200]},{"name":"DBCOLUMNFLAGSENUM21","features":[200]},{"name":"DBCOLUMNFLAGSENUM26","features":[200]},{"name":"DBCOLUMNFLAGS_CACHEDEFERRED","features":[200]},{"name":"DBCOLUMNFLAGS_ISBOOKMARK","features":[200]},{"name":"DBCOLUMNFLAGS_ISCHAPTER","features":[200]},{"name":"DBCOLUMNFLAGS_ISCOLLECTION","features":[200]},{"name":"DBCOLUMNFLAGS_ISDEFAULTSTREAM","features":[200]},{"name":"DBCOLUMNFLAGS_ISFIXEDLENGTH","features":[200]},{"name":"DBCOLUMNFLAGS_ISLONG","features":[200]},{"name":"DBCOLUMNFLAGS_ISNULLABLE","features":[200]},{"name":"DBCOLUMNFLAGS_ISROW","features":[200]},{"name":"DBCOLUMNFLAGS_ISROWID","features":[200]},{"name":"DBCOLUMNFLAGS_ISROWSET","features":[200]},{"name":"DBCOLUMNFLAGS_ISROWURL","features":[200]},{"name":"DBCOLUMNFLAGS_ISROWVER","features":[200]},{"name":"DBCOLUMNFLAGS_ISSTREAM","features":[200]},{"name":"DBCOLUMNFLAGS_KEYCOLUMN","features":[200]},{"name":"DBCOLUMNFLAGS_MAYBENULL","features":[200]},{"name":"DBCOLUMNFLAGS_MAYDEFER","features":[200]},{"name":"DBCOLUMNFLAGS_RESERVED","features":[200]},{"name":"DBCOLUMNFLAGS_ROWSPECIFICCOLUMN","features":[200]},{"name":"DBCOLUMNFLAGS_SCALEISNEGATIVE","features":[200]},{"name":"DBCOLUMNFLAGS_WRITE","features":[200]},{"name":"DBCOLUMNFLAGS_WRITEUNKNOWN","features":[200]},{"name":"DBCOLUMNINFO","features":[146,200]},{"name":"DBCOLUMNINFO","features":[146,200]},{"name":"DBCOMMANDPERSISTFLAGENUM","features":[200]},{"name":"DBCOMMANDPERSISTFLAGENUM21","features":[200]},{"name":"DBCOMMANDPERSISTFLAG_DEFAULT","features":[200]},{"name":"DBCOMMANDPERSISTFLAG_NOSAVE","features":[200]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTPROCEDURE","features":[200]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTVIEW","features":[200]},{"name":"DBCOMPAREENUM","features":[200]},{"name":"DBCOMPAREOPSENUM","features":[200]},{"name":"DBCOMPAREOPSENUM20","features":[200]},{"name":"DBCOMPAREOPS_BEGINSWITH","features":[200]},{"name":"DBCOMPAREOPS_CASEINSENSITIVE","features":[200]},{"name":"DBCOMPAREOPS_CASESENSITIVE","features":[200]},{"name":"DBCOMPAREOPS_CONTAINS","features":[200]},{"name":"DBCOMPAREOPS_EQ","features":[200]},{"name":"DBCOMPAREOPS_GE","features":[200]},{"name":"DBCOMPAREOPS_GT","features":[200]},{"name":"DBCOMPAREOPS_IGNORE","features":[200]},{"name":"DBCOMPAREOPS_LE","features":[200]},{"name":"DBCOMPAREOPS_LT","features":[200]},{"name":"DBCOMPAREOPS_NE","features":[200]},{"name":"DBCOMPAREOPS_NOTBEGINSWITH","features":[200]},{"name":"DBCOMPAREOPS_NOTCONTAINS","features":[200]},{"name":"DBCOMPARE_EQ","features":[200]},{"name":"DBCOMPARE_GT","features":[200]},{"name":"DBCOMPARE_LT","features":[200]},{"name":"DBCOMPARE_NE","features":[200]},{"name":"DBCOMPARE_NOTCOMPARABLE","features":[200]},{"name":"DBCOMPUTEMODE_COMPUTED","features":[200]},{"name":"DBCOMPUTEMODE_DYNAMIC","features":[200]},{"name":"DBCOMPUTEMODE_NOTCOMPUTED","features":[200]},{"name":"DBCONSTRAINTDESC","features":[3,146,43,200,44]},{"name":"DBCONSTRAINTDESC","features":[3,146,43,200,44]},{"name":"DBCONSTRAINTTYPEENUM","features":[200]},{"name":"DBCONSTRAINTTYPE_CHECK","features":[200]},{"name":"DBCONSTRAINTTYPE_FOREIGNKEY","features":[200]},{"name":"DBCONSTRAINTTYPE_PRIMARYKEY","features":[200]},{"name":"DBCONSTRAINTTYPE_UNIQUE","features":[200]},{"name":"DBCONVERTFLAGSENUM","features":[200]},{"name":"DBCONVERTFLAGSENUM20","features":[200]},{"name":"DBCONVERTFLAGS_COLUMN","features":[200]},{"name":"DBCONVERTFLAGS_FROMVARIANT","features":[200]},{"name":"DBCONVERTFLAGS_ISFIXEDLENGTH","features":[200]},{"name":"DBCONVERTFLAGS_ISLONG","features":[200]},{"name":"DBCONVERTFLAGS_PARAMETER","features":[200]},{"name":"DBCOPYFLAGSENUM","features":[200]},{"name":"DBCOPY_ALLOW_EMULATION","features":[200]},{"name":"DBCOPY_ASYNC","features":[200]},{"name":"DBCOPY_ATOMIC","features":[200]},{"name":"DBCOPY_NON_RECURSIVE","features":[200]},{"name":"DBCOPY_REPLACE_EXISTING","features":[200]},{"name":"DBCOST","features":[200]},{"name":"DBCOST","features":[200]},{"name":"DBCOSTUNITENUM","features":[200]},{"name":"DBDATACONVERTENUM","features":[200]},{"name":"DBDATACONVERT_DECIMALSCALE","features":[200]},{"name":"DBDATACONVERT_DEFAULT","features":[200]},{"name":"DBDATACONVERT_DSTISFIXEDLENGTH","features":[200]},{"name":"DBDATACONVERT_LENGTHFROMNTS","features":[200]},{"name":"DBDATACONVERT_SETDATABEHAVIOR","features":[200]},{"name":"DBDATE","features":[200]},{"name":"DBDATETIM4","features":[200]},{"name":"DBDATETIME","features":[200]},{"name":"DBDEFERRABILITYENUM","features":[200]},{"name":"DBDEFERRABILITY_DEFERRABLE","features":[200]},{"name":"DBDEFERRABILITY_DEFERRED","features":[200]},{"name":"DBDELETEFLAGSENUM","features":[200]},{"name":"DBDELETE_ASYNC","features":[200]},{"name":"DBDELETE_ATOMIC","features":[200]},{"name":"DBEVENTPHASEENUM","features":[200]},{"name":"DBEVENTPHASE_ABOUTTODO","features":[200]},{"name":"DBEVENTPHASE_DIDEVENT","features":[200]},{"name":"DBEVENTPHASE_FAILEDTODO","features":[200]},{"name":"DBEVENTPHASE_OKTODO","features":[200]},{"name":"DBEVENTPHASE_SYNCHAFTER","features":[200]},{"name":"DBEXECLIMITSENUM","features":[200]},{"name":"DBEXECLIMITS_ABORT","features":[200]},{"name":"DBEXECLIMITS_STOP","features":[200]},{"name":"DBEXECLIMITS_SUSPEND","features":[200]},{"name":"DBFAILUREINFO","features":[200]},{"name":"DBFAILUREINFO","features":[200]},{"name":"DBGUID_MSSQLXML","features":[200]},{"name":"DBGUID_ROWDEFAULTSTREAM","features":[200]},{"name":"DBGUID_ROWURL","features":[200]},{"name":"DBGUID_XPATH","features":[200]},{"name":"DBIMPLICITSESSION","features":[200]},{"name":"DBIMPLICITSESSION","features":[200]},{"name":"DBINDEXCOLUMNDESC","features":[146,200]},{"name":"DBINDEXCOLUMNDESC","features":[146,200]},{"name":"DBINDEX_COL_ORDERENUM","features":[200]},{"name":"DBINDEX_COL_ORDER_ASC","features":[200]},{"name":"DBINDEX_COL_ORDER_DESC","features":[200]},{"name":"DBLITERALENUM","features":[200]},{"name":"DBLITERALENUM20","features":[200]},{"name":"DBLITERALENUM21","features":[200]},{"name":"DBLITERALINFO","features":[3,200]},{"name":"DBLITERALINFO","features":[3,200]},{"name":"DBLITERAL_BINARY_LITERAL","features":[200]},{"name":"DBLITERAL_CATALOG_NAME","features":[200]},{"name":"DBLITERAL_CATALOG_SEPARATOR","features":[200]},{"name":"DBLITERAL_CHAR_LITERAL","features":[200]},{"name":"DBLITERAL_COLUMN_ALIAS","features":[200]},{"name":"DBLITERAL_COLUMN_NAME","features":[200]},{"name":"DBLITERAL_CORRELATION_NAME","features":[200]},{"name":"DBLITERAL_CUBE_NAME","features":[200]},{"name":"DBLITERAL_CURSOR_NAME","features":[200]},{"name":"DBLITERAL_DIMENSION_NAME","features":[200]},{"name":"DBLITERAL_ESCAPE_PERCENT","features":[200]},{"name":"DBLITERAL_ESCAPE_PERCENT_SUFFIX","features":[200]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE","features":[200]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE_SUFFIX","features":[200]},{"name":"DBLITERAL_HIERARCHY_NAME","features":[200]},{"name":"DBLITERAL_INDEX_NAME","features":[200]},{"name":"DBLITERAL_INVALID","features":[200]},{"name":"DBLITERAL_LEVEL_NAME","features":[200]},{"name":"DBLITERAL_LIKE_PERCENT","features":[200]},{"name":"DBLITERAL_LIKE_UNDERSCORE","features":[200]},{"name":"DBLITERAL_MEMBER_NAME","features":[200]},{"name":"DBLITERAL_PROCEDURE_NAME","features":[200]},{"name":"DBLITERAL_PROPERTY_NAME","features":[200]},{"name":"DBLITERAL_QUOTE","features":[200]},{"name":"DBLITERAL_QUOTE_SUFFIX","features":[200]},{"name":"DBLITERAL_SCHEMA_NAME","features":[200]},{"name":"DBLITERAL_SCHEMA_SEPARATOR","features":[200]},{"name":"DBLITERAL_TABLE_NAME","features":[200]},{"name":"DBLITERAL_TEXT_COMMAND","features":[200]},{"name":"DBLITERAL_USER_NAME","features":[200]},{"name":"DBLITERAL_VIEW_NAME","features":[200]},{"name":"DBMATCHTYPEENUM","features":[200]},{"name":"DBMATCHTYPE_FULL","features":[200]},{"name":"DBMATCHTYPE_NONE","features":[200]},{"name":"DBMATCHTYPE_PARTIAL","features":[200]},{"name":"DBMAXCHAR","features":[200]},{"name":"DBMEMOWNERENUM","features":[200]},{"name":"DBMEMOWNER_CLIENTOWNED","features":[200]},{"name":"DBMEMOWNER_PROVIDEROWNED","features":[200]},{"name":"DBMONEY","features":[200]},{"name":"DBMOVEFLAGSENUM","features":[200]},{"name":"DBMOVE_ALLOW_EMULATION","features":[200]},{"name":"DBMOVE_ASYNC","features":[200]},{"name":"DBMOVE_ATOMIC","features":[200]},{"name":"DBMOVE_DONT_UPDATE_LINKS","features":[200]},{"name":"DBMOVE_REPLACE_EXISTING","features":[200]},{"name":"DBOBJECT","features":[200]},{"name":"DBOBJECT","features":[200]},{"name":"DBPARAMBINDINFO","features":[200]},{"name":"DBPARAMBINDINFO","features":[200]},{"name":"DBPARAMFLAGSENUM","features":[200]},{"name":"DBPARAMFLAGSENUM20","features":[200]},{"name":"DBPARAMFLAGS_ISINPUT","features":[200]},{"name":"DBPARAMFLAGS_ISLONG","features":[200]},{"name":"DBPARAMFLAGS_ISNULLABLE","features":[200]},{"name":"DBPARAMFLAGS_ISOUTPUT","features":[200]},{"name":"DBPARAMFLAGS_ISSIGNED","features":[200]},{"name":"DBPARAMFLAGS_SCALEISNEGATIVE","features":[200]},{"name":"DBPARAMINFO","features":[200]},{"name":"DBPARAMINFO","features":[200]},{"name":"DBPARAMIOENUM","features":[200]},{"name":"DBPARAMIO_INPUT","features":[200]},{"name":"DBPARAMIO_NOTPARAM","features":[200]},{"name":"DBPARAMIO_OUTPUT","features":[200]},{"name":"DBPARAMS","features":[200]},{"name":"DBPARAMS","features":[200]},{"name":"DBPARAMTYPE_INPUT","features":[200]},{"name":"DBPARAMTYPE_INPUTOUTPUT","features":[200]},{"name":"DBPARAMTYPE_OUTPUT","features":[200]},{"name":"DBPARAMTYPE_RETURNVALUE","features":[200]},{"name":"DBPARTENUM","features":[200]},{"name":"DBPART_INVALID","features":[200]},{"name":"DBPART_LENGTH","features":[200]},{"name":"DBPART_STATUS","features":[200]},{"name":"DBPART_VALUE","features":[200]},{"name":"DBPENDINGSTATUSENUM","features":[200]},{"name":"DBPENDINGSTATUS_CHANGED","features":[200]},{"name":"DBPENDINGSTATUS_DELETED","features":[200]},{"name":"DBPENDINGSTATUS_INVALIDROW","features":[200]},{"name":"DBPENDINGSTATUS_NEW","features":[200]},{"name":"DBPENDINGSTATUS_UNCHANGED","features":[200]},{"name":"DBPOSITIONFLAGSENUM","features":[200]},{"name":"DBPOSITION_BOF","features":[200]},{"name":"DBPOSITION_EOF","features":[200]},{"name":"DBPOSITION_NOROW","features":[200]},{"name":"DBPOSITION_OK","features":[200]},{"name":"DBPROMPTOPTIONSENUM","features":[200]},{"name":"DBPROMPTOPTIONS_BROWSEONLY","features":[200]},{"name":"DBPROMPTOPTIONS_DISABLESAVEPASSWORD","features":[200]},{"name":"DBPROMPTOPTIONS_DISABLE_PROVIDER_SELECTION","features":[200]},{"name":"DBPROMPTOPTIONS_NONE","features":[200]},{"name":"DBPROMPTOPTIONS_PROPERTYSHEET","features":[200]},{"name":"DBPROMPTOPTIONS_WIZARDSHEET","features":[200]},{"name":"DBPROMPT_COMPLETE","features":[200]},{"name":"DBPROMPT_COMPLETEREQUIRED","features":[200]},{"name":"DBPROMPT_NOPROMPT","features":[200]},{"name":"DBPROMPT_PROMPT","features":[200]},{"name":"DBPROP","features":[3,146,43,200,44]},{"name":"DBPROP","features":[3,146,43,200,44]},{"name":"DBPROPENUM","features":[200]},{"name":"DBPROPENUM15","features":[200]},{"name":"DBPROPENUM20","features":[200]},{"name":"DBPROPENUM21","features":[200]},{"name":"DBPROPENUM25","features":[200]},{"name":"DBPROPENUM25_DEPRECATED","features":[200]},{"name":"DBPROPENUM26","features":[200]},{"name":"DBPROPENUMDEPRECATED","features":[200]},{"name":"DBPROPFLAGSENUM","features":[200]},{"name":"DBPROPFLAGSENUM21","features":[200]},{"name":"DBPROPFLAGSENUM25","features":[200]},{"name":"DBPROPFLAGSENUM26","features":[200]},{"name":"DBPROPFLAGS_COLUMN","features":[200]},{"name":"DBPROPFLAGS_COLUMNOK","features":[200]},{"name":"DBPROPFLAGS_DATASOURCE","features":[200]},{"name":"DBPROPFLAGS_DATASOURCECREATE","features":[200]},{"name":"DBPROPFLAGS_DATASOURCEINFO","features":[200]},{"name":"DBPROPFLAGS_DBINIT","features":[200]},{"name":"DBPROPFLAGS_INDEX","features":[200]},{"name":"DBPROPFLAGS_NOTSUPPORTED","features":[200]},{"name":"DBPROPFLAGS_PERSIST","features":[200]},{"name":"DBPROPFLAGS_READ","features":[200]},{"name":"DBPROPFLAGS_REQUIRED","features":[200]},{"name":"DBPROPFLAGS_ROWSET","features":[200]},{"name":"DBPROPFLAGS_SESSION","features":[200]},{"name":"DBPROPFLAGS_STREAM","features":[200]},{"name":"DBPROPFLAGS_TABLE","features":[200]},{"name":"DBPROPFLAGS_TRUSTEE","features":[200]},{"name":"DBPROPFLAGS_VIEW","features":[200]},{"name":"DBPROPFLAGS_WRITE","features":[200]},{"name":"DBPROPIDSET","features":[200]},{"name":"DBPROPIDSET","features":[200]},{"name":"DBPROPINFO","features":[3,43,200,44]},{"name":"DBPROPINFO","features":[3,43,200,44]},{"name":"DBPROPINFOSET","features":[3,43,200,44]},{"name":"DBPROPINFOSET","features":[3,43,200,44]},{"name":"DBPROPOPTIONSENUM","features":[200]},{"name":"DBPROPOPTIONS_OPTIONAL","features":[200]},{"name":"DBPROPOPTIONS_REQUIRED","features":[200]},{"name":"DBPROPOPTIONS_SETIFCHEAP","features":[200]},{"name":"DBPROPSET","features":[3,146,43,200,44]},{"name":"DBPROPSET","features":[3,146,43,200,44]},{"name":"DBPROPSET_MSDAORA8_ROWSET","features":[200]},{"name":"DBPROPSET_MSDAORA_ROWSET","features":[200]},{"name":"DBPROPSET_MSDSDBINIT","features":[200]},{"name":"DBPROPSET_MSDSSESSION","features":[200]},{"name":"DBPROPSET_PERSIST","features":[200]},{"name":"DBPROPSET_PROVIDERCONNATTR","features":[200]},{"name":"DBPROPSET_PROVIDERDATASOURCEINFO","features":[200]},{"name":"DBPROPSET_PROVIDERDBINIT","features":[200]},{"name":"DBPROPSET_PROVIDERROWSET","features":[200]},{"name":"DBPROPSET_PROVIDERSTMTATTR","features":[200]},{"name":"DBPROPSET_SQLSERVERCOLUMN","features":[200]},{"name":"DBPROPSET_SQLSERVERDATASOURCE","features":[200]},{"name":"DBPROPSET_SQLSERVERDATASOURCEINFO","features":[200]},{"name":"DBPROPSET_SQLSERVERDBINIT","features":[200]},{"name":"DBPROPSET_SQLSERVERROWSET","features":[200]},{"name":"DBPROPSET_SQLSERVERSESSION","features":[200]},{"name":"DBPROPSET_SQLSERVERSTREAM","features":[200]},{"name":"DBPROPSTATUSENUM","features":[200]},{"name":"DBPROPSTATUSENUM21","features":[200]},{"name":"DBPROPSTATUS_BADCOLUMN","features":[200]},{"name":"DBPROPSTATUS_BADOPTION","features":[200]},{"name":"DBPROPSTATUS_BADVALUE","features":[200]},{"name":"DBPROPSTATUS_CONFLICTING","features":[200]},{"name":"DBPROPSTATUS_NOTALLSETTABLE","features":[200]},{"name":"DBPROPSTATUS_NOTAVAILABLE","features":[200]},{"name":"DBPROPSTATUS_NOTSET","features":[200]},{"name":"DBPROPSTATUS_NOTSETTABLE","features":[200]},{"name":"DBPROPSTATUS_NOTSUPPORTED","features":[200]},{"name":"DBPROPSTATUS_OK","features":[200]},{"name":"DBPROPVAL_AO_RANDOM","features":[200]},{"name":"DBPROPVAL_AO_SEQUENTIAL","features":[200]},{"name":"DBPROPVAL_AO_SEQUENTIALSTORAGEOBJECTS","features":[200]},{"name":"DBPROPVAL_ASYNCH_BACKGROUNDPOPULATION","features":[200]},{"name":"DBPROPVAL_ASYNCH_INITIALIZE","features":[200]},{"name":"DBPROPVAL_ASYNCH_POPULATEONDEMAND","features":[200]},{"name":"DBPROPVAL_ASYNCH_PREPOPULATE","features":[200]},{"name":"DBPROPVAL_ASYNCH_RANDOMPOPULATION","features":[200]},{"name":"DBPROPVAL_ASYNCH_SEQUENTIALPOPULATION","features":[200]},{"name":"DBPROPVAL_BD_INTRANSACTION","features":[200]},{"name":"DBPROPVAL_BD_REORGANIZATION","features":[200]},{"name":"DBPROPVAL_BD_ROWSET","features":[200]},{"name":"DBPROPVAL_BD_XTRANSACTION","features":[200]},{"name":"DBPROPVAL_BI_CROSSROWSET","features":[200]},{"name":"DBPROPVAL_BMK_KEY","features":[200]},{"name":"DBPROPVAL_BMK_NUMERIC","features":[200]},{"name":"DBPROPVAL_BO_NOINDEXUPDATE","features":[200]},{"name":"DBPROPVAL_BO_NOLOG","features":[200]},{"name":"DBPROPVAL_BO_REFINTEGRITY","features":[200]},{"name":"DBPROPVAL_CB_DELETE","features":[200]},{"name":"DBPROPVAL_CB_NON_NULL","features":[200]},{"name":"DBPROPVAL_CB_NULL","features":[200]},{"name":"DBPROPVAL_CB_PRESERVE","features":[200]},{"name":"DBPROPVAL_CD_NOTNULL","features":[200]},{"name":"DBPROPVAL_CL_END","features":[200]},{"name":"DBPROPVAL_CL_START","features":[200]},{"name":"DBPROPVAL_CM_TRANSACTIONS","features":[200]},{"name":"DBPROPVAL_CO_BEGINSWITH","features":[200]},{"name":"DBPROPVAL_CO_CASEINSENSITIVE","features":[200]},{"name":"DBPROPVAL_CO_CASESENSITIVE","features":[200]},{"name":"DBPROPVAL_CO_CONTAINS","features":[200]},{"name":"DBPROPVAL_CO_EQUALITY","features":[200]},{"name":"DBPROPVAL_CO_STRING","features":[200]},{"name":"DBPROPVAL_CS_COMMUNICATIONFAILURE","features":[200]},{"name":"DBPROPVAL_CS_INITIALIZED","features":[200]},{"name":"DBPROPVAL_CS_UNINITIALIZED","features":[200]},{"name":"DBPROPVAL_CU_DML_STATEMENTS","features":[200]},{"name":"DBPROPVAL_CU_INDEX_DEFINITION","features":[200]},{"name":"DBPROPVAL_CU_PRIVILEGE_DEFINITION","features":[200]},{"name":"DBPROPVAL_CU_TABLE_DEFINITION","features":[200]},{"name":"DBPROPVAL_DF_INITIALLY_DEFERRED","features":[200]},{"name":"DBPROPVAL_DF_INITIALLY_IMMEDIATE","features":[200]},{"name":"DBPROPVAL_DF_NOT_DEFERRABLE","features":[200]},{"name":"DBPROPVAL_DST_DOCSOURCE","features":[200]},{"name":"DBPROPVAL_DST_MDP","features":[200]},{"name":"DBPROPVAL_DST_TDP","features":[200]},{"name":"DBPROPVAL_DST_TDPANDMDP","features":[200]},{"name":"DBPROPVAL_FU_CATALOG","features":[200]},{"name":"DBPROPVAL_FU_COLUMN","features":[200]},{"name":"DBPROPVAL_FU_NOT_SUPPORTED","features":[200]},{"name":"DBPROPVAL_FU_TABLE","features":[200]},{"name":"DBPROPVAL_GB_COLLATE","features":[200]},{"name":"DBPROPVAL_GB_CONTAINS_SELECT","features":[200]},{"name":"DBPROPVAL_GB_EQUALS_SELECT","features":[200]},{"name":"DBPROPVAL_GB_NOT_SUPPORTED","features":[200]},{"name":"DBPROPVAL_GB_NO_RELATION","features":[200]},{"name":"DBPROPVAL_GU_NOTSUPPORTED","features":[200]},{"name":"DBPROPVAL_GU_SUFFIX","features":[200]},{"name":"DBPROPVAL_HT_DIFFERENT_CATALOGS","features":[200]},{"name":"DBPROPVAL_HT_DIFFERENT_PROVIDERS","features":[200]},{"name":"DBPROPVAL_IC_LOWER","features":[200]},{"name":"DBPROPVAL_IC_MIXED","features":[200]},{"name":"DBPROPVAL_IC_SENSITIVE","features":[200]},{"name":"DBPROPVAL_IC_UPPER","features":[200]},{"name":"DBPROPVAL_IN_ALLOWNULL","features":[200]},{"name":"DBPROPVAL_IN_DISALLOWNULL","features":[200]},{"name":"DBPROPVAL_IN_IGNOREANYNULL","features":[200]},{"name":"DBPROPVAL_IN_IGNORENULL","features":[200]},{"name":"DBPROPVAL_IT_BTREE","features":[200]},{"name":"DBPROPVAL_IT_CONTENT","features":[200]},{"name":"DBPROPVAL_IT_HASH","features":[200]},{"name":"DBPROPVAL_IT_OTHER","features":[200]},{"name":"DBPROPVAL_LM_INTENT","features":[200]},{"name":"DBPROPVAL_LM_NONE","features":[200]},{"name":"DBPROPVAL_LM_READ","features":[200]},{"name":"DBPROPVAL_LM_RITE","features":[200]},{"name":"DBPROPVAL_LM_SINGLEROW","features":[200]},{"name":"DBPROPVAL_MR_CONCURRENT","features":[200]},{"name":"DBPROPVAL_MR_NOTSUPPORTED","features":[200]},{"name":"DBPROPVAL_MR_SUPPORTED","features":[200]},{"name":"DBPROPVAL_NC_END","features":[200]},{"name":"DBPROPVAL_NC_HIGH","features":[200]},{"name":"DBPROPVAL_NC_LOW","features":[200]},{"name":"DBPROPVAL_NC_START","features":[200]},{"name":"DBPROPVAL_NP_ABOUTTODO","features":[200]},{"name":"DBPROPVAL_NP_DIDEVENT","features":[200]},{"name":"DBPROPVAL_NP_FAILEDTODO","features":[200]},{"name":"DBPROPVAL_NP_OKTODO","features":[200]},{"name":"DBPROPVAL_NP_SYNCHAFTER","features":[200]},{"name":"DBPROPVAL_NT_MULTIPLEROWS","features":[200]},{"name":"DBPROPVAL_NT_SINGLEROW","features":[200]},{"name":"DBPROPVAL_OA_ATEXECUTE","features":[200]},{"name":"DBPROPVAL_OA_ATROWRELEASE","features":[200]},{"name":"DBPROPVAL_OA_NOTSUPPORTED","features":[200]},{"name":"DBPROPVAL_OO_BLOB","features":[200]},{"name":"DBPROPVAL_OO_DIRECTBIND","features":[200]},{"name":"DBPROPVAL_OO_IPERSIST","features":[200]},{"name":"DBPROPVAL_OO_ROWOBJECT","features":[200]},{"name":"DBPROPVAL_OO_SCOPED","features":[200]},{"name":"DBPROPVAL_OO_SINGLETON","features":[200]},{"name":"DBPROPVAL_OP_EQUAL","features":[200]},{"name":"DBPROPVAL_OP_RELATIVE","features":[200]},{"name":"DBPROPVAL_OP_STRING","features":[200]},{"name":"DBPROPVAL_ORS_HISTOGRAM","features":[200]},{"name":"DBPROPVAL_ORS_INDEX","features":[200]},{"name":"DBPROPVAL_ORS_INTEGRATEDINDEX","features":[200]},{"name":"DBPROPVAL_ORS_STOREDPROC","features":[200]},{"name":"DBPROPVAL_ORS_TABLE","features":[200]},{"name":"DBPROPVAL_OS_AGR_AFTERSESSION","features":[200]},{"name":"DBPROPVAL_OS_CLIENTCURSOR","features":[200]},{"name":"DBPROPVAL_OS_DISABLEALL","features":[200]},{"name":"DBPROPVAL_OS_ENABLEALL","features":[200]},{"name":"DBPROPVAL_OS_RESOURCEPOOLING","features":[200]},{"name":"DBPROPVAL_OS_TXNENLISTMENT","features":[200]},{"name":"DBPROPVAL_PERSIST_ADTG","features":[200]},{"name":"DBPROPVAL_PERSIST_XML","features":[200]},{"name":"DBPROPVAL_PT_GUID","features":[200]},{"name":"DBPROPVAL_PT_GUID_NAME","features":[200]},{"name":"DBPROPVAL_PT_GUID_PROPID","features":[200]},{"name":"DBPROPVAL_PT_NAME","features":[200]},{"name":"DBPROPVAL_PT_PGUID_NAME","features":[200]},{"name":"DBPROPVAL_PT_PGUID_PROPID","features":[200]},{"name":"DBPROPVAL_PT_PROPID","features":[200]},{"name":"DBPROPVAL_RD_RESETALL","features":[200]},{"name":"DBPROPVAL_RT_APTMTTHREAD","features":[200]},{"name":"DBPROPVAL_RT_FREETHREAD","features":[200]},{"name":"DBPROPVAL_RT_SINGLETHREAD","features":[200]},{"name":"DBPROPVAL_SQL_ANSI89_IEF","features":[200]},{"name":"DBPROPVAL_SQL_ANSI92_ENTRY","features":[200]},{"name":"DBPROPVAL_SQL_ANSI92_FULL","features":[200]},{"name":"DBPROPVAL_SQL_ANSI92_INTERMEDIATE","features":[200]},{"name":"DBPROPVAL_SQL_ESCAPECLAUSES","features":[200]},{"name":"DBPROPVAL_SQL_FIPS_TRANSITIONAL","features":[200]},{"name":"DBPROPVAL_SQL_NONE","features":[200]},{"name":"DBPROPVAL_SQL_ODBC_CORE","features":[200]},{"name":"DBPROPVAL_SQL_ODBC_EXTENDED","features":[200]},{"name":"DBPROPVAL_SQL_ODBC_MINIMUM","features":[200]},{"name":"DBPROPVAL_SQL_SUBMINIMUM","features":[200]},{"name":"DBPROPVAL_SQ_COMPARISON","features":[200]},{"name":"DBPROPVAL_SQ_CORRELATEDSUBQUERIES","features":[200]},{"name":"DBPROPVAL_SQ_EXISTS","features":[200]},{"name":"DBPROPVAL_SQ_IN","features":[200]},{"name":"DBPROPVAL_SQ_QUANTIFIED","features":[200]},{"name":"DBPROPVAL_SQ_TABLE","features":[200]},{"name":"DBPROPVAL_SS_ILOCKBYTES","features":[200]},{"name":"DBPROPVAL_SS_ISEQUENTIALSTREAM","features":[200]},{"name":"DBPROPVAL_SS_ISTORAGE","features":[200]},{"name":"DBPROPVAL_SS_ISTREAM","features":[200]},{"name":"DBPROPVAL_STGM_CONVERT","features":[200]},{"name":"DBPROPVAL_STGM_DELETEONRELEASE","features":[200]},{"name":"DBPROPVAL_STGM_DIRECT","features":[200]},{"name":"DBPROPVAL_STGM_FAILIFTHERE","features":[200]},{"name":"DBPROPVAL_STGM_PRIORITY","features":[200]},{"name":"DBPROPVAL_STGM_TRANSACTED","features":[200]},{"name":"DBPROPVAL_SU_DML_STATEMENTS","features":[200]},{"name":"DBPROPVAL_SU_INDEX_DEFINITION","features":[200]},{"name":"DBPROPVAL_SU_PRIVILEGE_DEFINITION","features":[200]},{"name":"DBPROPVAL_SU_TABLE_DEFINITION","features":[200]},{"name":"DBPROPVAL_TC_ALL","features":[200]},{"name":"DBPROPVAL_TC_DDL_COMMIT","features":[200]},{"name":"DBPROPVAL_TC_DDL_IGNORE","features":[200]},{"name":"DBPROPVAL_TC_DDL_LOCK","features":[200]},{"name":"DBPROPVAL_TC_DML","features":[200]},{"name":"DBPROPVAL_TC_NONE","features":[200]},{"name":"DBPROPVAL_TI_BROWSE","features":[200]},{"name":"DBPROPVAL_TI_CHAOS","features":[200]},{"name":"DBPROPVAL_TI_CURSORSTABILITY","features":[200]},{"name":"DBPROPVAL_TI_ISOLATED","features":[200]},{"name":"DBPROPVAL_TI_READCOMMITTED","features":[200]},{"name":"DBPROPVAL_TI_READUNCOMMITTED","features":[200]},{"name":"DBPROPVAL_TI_REPEATABLEREAD","features":[200]},{"name":"DBPROPVAL_TI_SERIALIZABLE","features":[200]},{"name":"DBPROPVAL_TR_ABORT","features":[200]},{"name":"DBPROPVAL_TR_ABORT_DC","features":[200]},{"name":"DBPROPVAL_TR_ABORT_NO","features":[200]},{"name":"DBPROPVAL_TR_BOTH","features":[200]},{"name":"DBPROPVAL_TR_COMMIT","features":[200]},{"name":"DBPROPVAL_TR_COMMIT_DC","features":[200]},{"name":"DBPROPVAL_TR_COMMIT_NO","features":[200]},{"name":"DBPROPVAL_TR_DONTCARE","features":[200]},{"name":"DBPROPVAL_TR_NONE","features":[200]},{"name":"DBPROPVAL_TR_OPTIMISTIC","features":[200]},{"name":"DBPROPVAL_TS_CARDINALITY","features":[200]},{"name":"DBPROPVAL_TS_HISTOGRAM","features":[200]},{"name":"DBPROPVAL_UP_CHANGE","features":[200]},{"name":"DBPROPVAL_UP_DELETE","features":[200]},{"name":"DBPROPVAL_UP_INSERT","features":[200]},{"name":"DBPROP_ABORTPRESERVE","features":[200]},{"name":"DBPROP_ACCESSORDER","features":[200]},{"name":"DBPROP_ACTIVESESSIONS","features":[200]},{"name":"DBPROP_ALTERCOLUMN","features":[200]},{"name":"DBPROP_APPENDONLY","features":[200]},{"name":"DBPROP_ASYNCTXNABORT","features":[200]},{"name":"DBPROP_ASYNCTXNCOMMIT","features":[200]},{"name":"DBPROP_AUTH_CACHE_AUTHINFO","features":[200]},{"name":"DBPROP_AUTH_ENCRYPT_PASSWORD","features":[200]},{"name":"DBPROP_AUTH_INTEGRATED","features":[200]},{"name":"DBPROP_AUTH_MASK_PASSWORD","features":[200]},{"name":"DBPROP_AUTH_PASSWORD","features":[200]},{"name":"DBPROP_AUTH_PERSIST_ENCRYPTED","features":[200]},{"name":"DBPROP_AUTH_PERSIST_SENSITIVE_AUTHINFO","features":[200]},{"name":"DBPROP_AUTH_USERID","features":[200]},{"name":"DBPROP_BLOCKINGSTORAGEOBJECTS","features":[200]},{"name":"DBPROP_BOOKMARKINFO","features":[200]},{"name":"DBPROP_BOOKMARKS","features":[200]},{"name":"DBPROP_BOOKMARKSKIPPED","features":[200]},{"name":"DBPROP_BOOKMARKTYPE","features":[200]},{"name":"DBPROP_BYREFACCESSORS","features":[200]},{"name":"DBPROP_CACHEDEFERRED","features":[200]},{"name":"DBPROP_CANFETCHBACKWARDS","features":[200]},{"name":"DBPROP_CANHOLDROWS","features":[200]},{"name":"DBPROP_CANSCROLLBACKWARDS","features":[200]},{"name":"DBPROP_CATALOGLOCATION","features":[200]},{"name":"DBPROP_CATALOGTERM","features":[200]},{"name":"DBPROP_CATALOGUSAGE","features":[200]},{"name":"DBPROP_CHANGEINSERTEDROWS","features":[200]},{"name":"DBPROP_CLIENTCURSOR","features":[200]},{"name":"DBPROP_COLUMNDEFINITION","features":[200]},{"name":"DBPROP_COLUMNLCID","features":[200]},{"name":"DBPROP_COLUMNRESTRICT","features":[200]},{"name":"DBPROP_COL_AUTOINCREMENT","features":[200]},{"name":"DBPROP_COL_DEFAULT","features":[200]},{"name":"DBPROP_COL_DESCRIPTION","features":[200]},{"name":"DBPROP_COL_FIXEDLENGTH","features":[200]},{"name":"DBPROP_COL_INCREMENT","features":[200]},{"name":"DBPROP_COL_ISLONG","features":[200]},{"name":"DBPROP_COL_NULLABLE","features":[200]},{"name":"DBPROP_COL_PRIMARYKEY","features":[200]},{"name":"DBPROP_COL_SEED","features":[200]},{"name":"DBPROP_COL_UNIQUE","features":[200]},{"name":"DBPROP_COMMANDTIMEOUT","features":[200]},{"name":"DBPROP_COMMITPRESERVE","features":[200]},{"name":"DBPROP_COMSERVICES","features":[200]},{"name":"DBPROP_CONCATNULLBEHAVIOR","features":[200]},{"name":"DBPROP_CONNECTIONSTATUS","features":[200]},{"name":"DBPROP_CURRENTCATALOG","features":[200]},{"name":"DBPROP_DATASOURCENAME","features":[200]},{"name":"DBPROP_DATASOURCEREADONLY","features":[200]},{"name":"DBPROP_DATASOURCE_TYPE","features":[200]},{"name":"DBPROP_DBMSNAME","features":[200]},{"name":"DBPROP_DBMSVER","features":[200]},{"name":"DBPROP_DEFERRED","features":[200]},{"name":"DBPROP_DELAYSTORAGEOBJECTS","features":[200]},{"name":"DBPROP_DSOTHREADMODEL","features":[200]},{"name":"DBPROP_FILTERCOMPAREOPS","features":[200]},{"name":"DBPROP_FILTEROPS","features":[200]},{"name":"DBPROP_FINDCOMPAREOPS","features":[200]},{"name":"DBPROP_GENERATEURL","features":[200]},{"name":"DBPROP_GROUPBY","features":[200]},{"name":"DBPROP_HCHAPTER","features":[200]},{"name":"DBPROP_HETEROGENEOUSTABLES","features":[200]},{"name":"DBPROP_HIDDENCOLUMNS","features":[200]},{"name":"DBPROP_IAccessor","features":[200]},{"name":"DBPROP_IBindResource","features":[200]},{"name":"DBPROP_IChapteredRowset","features":[200]},{"name":"DBPROP_IColumnsInfo","features":[200]},{"name":"DBPROP_IColumnsInfo2","features":[200]},{"name":"DBPROP_IColumnsRowset","features":[200]},{"name":"DBPROP_ICommandCost","features":[200]},{"name":"DBPROP_ICommandTree","features":[200]},{"name":"DBPROP_ICommandValidate","features":[200]},{"name":"DBPROP_IConnectionPointContainer","features":[200]},{"name":"DBPROP_IConvertType","features":[200]},{"name":"DBPROP_ICreateRow","features":[200]},{"name":"DBPROP_IDBAsynchStatus","features":[200]},{"name":"DBPROP_IDBBinderProperties","features":[200]},{"name":"DBPROP_IDBSchemaCommand","features":[200]},{"name":"DBPROP_IDENTIFIERCASE","features":[200]},{"name":"DBPROP_IGetRow","features":[200]},{"name":"DBPROP_IGetSession","features":[200]},{"name":"DBPROP_IGetSourceRow","features":[200]},{"name":"DBPROP_ILockBytes","features":[200]},{"name":"DBPROP_IMMOBILEROWS","features":[200]},{"name":"DBPROP_IMultipleResults","features":[200]},{"name":"DBPROP_INDEX_AUTOUPDATE","features":[200]},{"name":"DBPROP_INDEX_CLUSTERED","features":[200]},{"name":"DBPROP_INDEX_FILLFACTOR","features":[200]},{"name":"DBPROP_INDEX_INITIALSIZE","features":[200]},{"name":"DBPROP_INDEX_NULLCOLLATION","features":[200]},{"name":"DBPROP_INDEX_NULLS","features":[200]},{"name":"DBPROP_INDEX_PRIMARYKEY","features":[200]},{"name":"DBPROP_INDEX_SORTBOOKMARKS","features":[200]},{"name":"DBPROP_INDEX_TEMPINDEX","features":[200]},{"name":"DBPROP_INDEX_TYPE","features":[200]},{"name":"DBPROP_INDEX_UNIQUE","features":[200]},{"name":"DBPROP_INIT_ASYNCH","features":[200]},{"name":"DBPROP_INIT_BINDFLAGS","features":[200]},{"name":"DBPROP_INIT_CATALOG","features":[200]},{"name":"DBPROP_INIT_DATASOURCE","features":[200]},{"name":"DBPROP_INIT_GENERALTIMEOUT","features":[200]},{"name":"DBPROP_INIT_HWND","features":[200]},{"name":"DBPROP_INIT_IMPERSONATION_LEVEL","features":[200]},{"name":"DBPROP_INIT_LCID","features":[200]},{"name":"DBPROP_INIT_LOCATION","features":[200]},{"name":"DBPROP_INIT_LOCKOWNER","features":[200]},{"name":"DBPROP_INIT_MODE","features":[200]},{"name":"DBPROP_INIT_OLEDBSERVICES","features":[200]},{"name":"DBPROP_INIT_PROMPT","features":[200]},{"name":"DBPROP_INIT_PROTECTION_LEVEL","features":[200]},{"name":"DBPROP_INIT_PROVIDERSTRING","features":[200]},{"name":"DBPROP_INIT_TIMEOUT","features":[200]},{"name":"DBPROP_INTERLEAVEDROWS","features":[200]},{"name":"DBPROP_IParentRowset","features":[200]},{"name":"DBPROP_IProvideMoniker","features":[200]},{"name":"DBPROP_IQuery","features":[200]},{"name":"DBPROP_IReadData","features":[200]},{"name":"DBPROP_IRegisterProvider","features":[200]},{"name":"DBPROP_IRow","features":[200]},{"name":"DBPROP_IRowChange","features":[200]},{"name":"DBPROP_IRowSchemaChange","features":[200]},{"name":"DBPROP_IRowset","features":[200]},{"name":"DBPROP_IRowsetAsynch","features":[200]},{"name":"DBPROP_IRowsetBookmark","features":[200]},{"name":"DBPROP_IRowsetChange","features":[200]},{"name":"DBPROP_IRowsetCopyRows","features":[200]},{"name":"DBPROP_IRowsetCurrentIndex","features":[200]},{"name":"DBPROP_IRowsetExactScroll","features":[200]},{"name":"DBPROP_IRowsetFind","features":[200]},{"name":"DBPROP_IRowsetIdentity","features":[200]},{"name":"DBPROP_IRowsetIndex","features":[200]},{"name":"DBPROP_IRowsetInfo","features":[200]},{"name":"DBPROP_IRowsetKeys","features":[200]},{"name":"DBPROP_IRowsetLocate","features":[200]},{"name":"DBPROP_IRowsetNewRowAfter","features":[200]},{"name":"DBPROP_IRowsetNextRowset","features":[200]},{"name":"DBPROP_IRowsetRefresh","features":[200]},{"name":"DBPROP_IRowsetResynch","features":[200]},{"name":"DBPROP_IRowsetScroll","features":[200]},{"name":"DBPROP_IRowsetUpdate","features":[200]},{"name":"DBPROP_IRowsetView","features":[200]},{"name":"DBPROP_IRowsetWatchAll","features":[200]},{"name":"DBPROP_IRowsetWatchNotify","features":[200]},{"name":"DBPROP_IRowsetWatchRegion","features":[200]},{"name":"DBPROP_IRowsetWithParameters","features":[200]},{"name":"DBPROP_IScopedOperations","features":[200]},{"name":"DBPROP_ISequentialStream","features":[200]},{"name":"DBPROP_IStorage","features":[200]},{"name":"DBPROP_IStream","features":[200]},{"name":"DBPROP_ISupportErrorInfo","features":[200]},{"name":"DBPROP_IViewChapter","features":[200]},{"name":"DBPROP_IViewFilter","features":[200]},{"name":"DBPROP_IViewRowset","features":[200]},{"name":"DBPROP_IViewSort","features":[200]},{"name":"DBPROP_LITERALBOOKMARKS","features":[200]},{"name":"DBPROP_LITERALIDENTITY","features":[200]},{"name":"DBPROP_LOCKMODE","features":[200]},{"name":"DBPROP_MAINTAINPROPS","features":[200]},{"name":"DBPROP_MARSHALLABLE","features":[200]},{"name":"DBPROP_MAXINDEXSIZE","features":[200]},{"name":"DBPROP_MAXOPENCHAPTERS","features":[200]},{"name":"DBPROP_MAXOPENROWS","features":[200]},{"name":"DBPROP_MAXORSINFILTER","features":[200]},{"name":"DBPROP_MAXPENDINGROWS","features":[200]},{"name":"DBPROP_MAXROWS","features":[200]},{"name":"DBPROP_MAXROWSIZE","features":[200]},{"name":"DBPROP_MAXROWSIZEINCLUDESBLOB","features":[200]},{"name":"DBPROP_MAXSORTCOLUMNS","features":[200]},{"name":"DBPROP_MAXTABLESINSELECT","features":[200]},{"name":"DBPROP_MAYWRITECOLUMN","features":[200]},{"name":"DBPROP_MEMORYUSAGE","features":[200]},{"name":"DBPROP_MSDAORA8_DETERMINEKEYCOLUMNS","features":[200]},{"name":"DBPROP_MSDAORA_DETERMINEKEYCOLUMNS","features":[200]},{"name":"DBPROP_MSDS_DBINIT_DATAPROVIDER","features":[200]},{"name":"DBPROP_MSDS_SESS_UNIQUENAMES","features":[200]},{"name":"DBPROP_MULTIPLECONNECTIONS","features":[200]},{"name":"DBPROP_MULTIPLEPARAMSETS","features":[200]},{"name":"DBPROP_MULTIPLERESULTS","features":[200]},{"name":"DBPROP_MULTIPLESTORAGEOBJECTS","features":[200]},{"name":"DBPROP_MULTITABLEUPDATE","features":[200]},{"name":"DBPROP_NOTIFICATIONGRANULARITY","features":[200]},{"name":"DBPROP_NOTIFICATIONPHASES","features":[200]},{"name":"DBPROP_NOTIFYCOLUMNSET","features":[200]},{"name":"DBPROP_NOTIFYROWDELETE","features":[200]},{"name":"DBPROP_NOTIFYROWFIRSTCHANGE","features":[200]},{"name":"DBPROP_NOTIFYROWINSERT","features":[200]},{"name":"DBPROP_NOTIFYROWRESYNCH","features":[200]},{"name":"DBPROP_NOTIFYROWSETCHANGED","features":[200]},{"name":"DBPROP_NOTIFYROWSETFETCHPOSITIONCHANGE","features":[200]},{"name":"DBPROP_NOTIFYROWSETRELEASE","features":[200]},{"name":"DBPROP_NOTIFYROWUNDOCHANGE","features":[200]},{"name":"DBPROP_NOTIFYROWUNDODELETE","features":[200]},{"name":"DBPROP_NOTIFYROWUNDOINSERT","features":[200]},{"name":"DBPROP_NOTIFYROWUPDATE","features":[200]},{"name":"DBPROP_NULLCOLLATION","features":[200]},{"name":"DBPROP_OLEOBJECTS","features":[200]},{"name":"DBPROP_OPENROWSETSUPPORT","features":[200]},{"name":"DBPROP_ORDERBYCOLUMNSINSELECT","features":[200]},{"name":"DBPROP_ORDEREDBOOKMARKS","features":[200]},{"name":"DBPROP_OTHERINSERT","features":[200]},{"name":"DBPROP_OTHERUPDATEDELETE","features":[200]},{"name":"DBPROP_OUTPUTENCODING","features":[200]},{"name":"DBPROP_OUTPUTPARAMETERAVAILABILITY","features":[200]},{"name":"DBPROP_OUTPUTSTREAM","features":[200]},{"name":"DBPROP_OWNINSERT","features":[200]},{"name":"DBPROP_OWNUPDATEDELETE","features":[200]},{"name":"DBPROP_PERSISTENTIDTYPE","features":[200]},{"name":"DBPROP_PREPAREABORTBEHAVIOR","features":[200]},{"name":"DBPROP_PREPARECOMMITBEHAVIOR","features":[200]},{"name":"DBPROP_PROCEDURETERM","features":[200]},{"name":"DBPROP_PROVIDERFRIENDLYNAME","features":[200]},{"name":"DBPROP_PROVIDERMEMORY","features":[200]},{"name":"DBPROP_PROVIDERNAME","features":[200]},{"name":"DBPROP_PROVIDEROLEDBVER","features":[200]},{"name":"DBPROP_PROVIDERVER","features":[200]},{"name":"DBPROP_PersistFormat","features":[200]},{"name":"DBPROP_PersistSchema","features":[200]},{"name":"DBPROP_QUICKRESTART","features":[200]},{"name":"DBPROP_QUOTEDIDENTIFIERCASE","features":[200]},{"name":"DBPROP_REENTRANTEVENTS","features":[200]},{"name":"DBPROP_REMOVEDELETED","features":[200]},{"name":"DBPROP_REPORTMULTIPLECHANGES","features":[200]},{"name":"DBPROP_RESETDATASOURCE","features":[200]},{"name":"DBPROP_RETURNPENDINGINSERTS","features":[200]},{"name":"DBPROP_ROWRESTRICT","features":[200]},{"name":"DBPROP_ROWSETCONVERSIONSONCOMMAND","features":[200]},{"name":"DBPROP_ROWSET_ASYNCH","features":[200]},{"name":"DBPROP_ROWTHREADMODEL","features":[200]},{"name":"DBPROP_ROW_BULKOPS","features":[200]},{"name":"DBPROP_SCHEMATERM","features":[200]},{"name":"DBPROP_SCHEMAUSAGE","features":[200]},{"name":"DBPROP_SERVERCURSOR","features":[200]},{"name":"DBPROP_SERVERDATAONINSERT","features":[200]},{"name":"DBPROP_SERVERNAME","features":[200]},{"name":"DBPROP_SESS_AUTOCOMMITISOLEVELS","features":[200]},{"name":"DBPROP_SKIPROWCOUNTRESULTS","features":[200]},{"name":"DBPROP_SORTONINDEX","features":[200]},{"name":"DBPROP_SQLSUPPORT","features":[200]},{"name":"DBPROP_STORAGEFLAGS","features":[200]},{"name":"DBPROP_STRONGIDENTITY","features":[200]},{"name":"DBPROP_STRUCTUREDSTORAGE","features":[200]},{"name":"DBPROP_SUBQUERIES","features":[200]},{"name":"DBPROP_SUPPORTEDTXNDDL","features":[200]},{"name":"DBPROP_SUPPORTEDTXNISOLEVELS","features":[200]},{"name":"DBPROP_SUPPORTEDTXNISORETAIN","features":[200]},{"name":"DBPROP_TABLESTATISTICS","features":[200]},{"name":"DBPROP_TABLETERM","features":[200]},{"name":"DBPROP_TBL_TEMPTABLE","features":[200]},{"name":"DBPROP_TRANSACTEDOBJECT","features":[200]},{"name":"DBPROP_TRUSTEE_AUTHENTICATION","features":[200]},{"name":"DBPROP_TRUSTEE_NEWAUTHENTICATION","features":[200]},{"name":"DBPROP_TRUSTEE_USERNAME","features":[200]},{"name":"DBPROP_UNIQUEROWS","features":[200]},{"name":"DBPROP_UPDATABILITY","features":[200]},{"name":"DBPROP_USERNAME","features":[200]},{"name":"DBPROP_Unicode","features":[200]},{"name":"DBQUERYGUID","features":[200]},{"name":"DBRANGEENUM","features":[200]},{"name":"DBRANGEENUM20","features":[200]},{"name":"DBRANGE_EXCLUDENULLS","features":[200]},{"name":"DBRANGE_EXCLUSIVEEND","features":[200]},{"name":"DBRANGE_EXCLUSIVESTART","features":[200]},{"name":"DBRANGE_INCLUSIVEEND","features":[200]},{"name":"DBRANGE_INCLUSIVESTART","features":[200]},{"name":"DBRANGE_MATCH","features":[200]},{"name":"DBRANGE_MATCH_N_MASK","features":[200]},{"name":"DBRANGE_MATCH_N_SHIFT","features":[200]},{"name":"DBRANGE_PREFIX","features":[200]},{"name":"DBREASONENUM","features":[200]},{"name":"DBREASONENUM15","features":[200]},{"name":"DBREASONENUM25","features":[200]},{"name":"DBREASON_COLUMN_RECALCULATED","features":[200]},{"name":"DBREASON_COLUMN_SET","features":[200]},{"name":"DBREASON_ROWPOSITION_CHANGED","features":[200]},{"name":"DBREASON_ROWPOSITION_CHAPTERCHANGED","features":[200]},{"name":"DBREASON_ROWPOSITION_CLEARED","features":[200]},{"name":"DBREASON_ROWSET_CHANGED","features":[200]},{"name":"DBREASON_ROWSET_FETCHPOSITIONCHANGE","features":[200]},{"name":"DBREASON_ROWSET_POPULATIONCOMPLETE","features":[200]},{"name":"DBREASON_ROWSET_POPULATIONSTOPPED","features":[200]},{"name":"DBREASON_ROWSET_RELEASE","features":[200]},{"name":"DBREASON_ROWSET_ROWSADDED","features":[200]},{"name":"DBREASON_ROW_ACTIVATE","features":[200]},{"name":"DBREASON_ROW_ASYNCHINSERT","features":[200]},{"name":"DBREASON_ROW_DELETE","features":[200]},{"name":"DBREASON_ROW_FIRSTCHANGE","features":[200]},{"name":"DBREASON_ROW_INSERT","features":[200]},{"name":"DBREASON_ROW_RELEASE","features":[200]},{"name":"DBREASON_ROW_RESYNCH","features":[200]},{"name":"DBREASON_ROW_UNDOCHANGE","features":[200]},{"name":"DBREASON_ROW_UNDODELETE","features":[200]},{"name":"DBREASON_ROW_UNDOINSERT","features":[200]},{"name":"DBREASON_ROW_UPDATE","features":[200]},{"name":"DBRESOURCEKINDENUM","features":[200]},{"name":"DBRESOURCE_CPU","features":[200]},{"name":"DBRESOURCE_DISK","features":[200]},{"name":"DBRESOURCE_INVALID","features":[200]},{"name":"DBRESOURCE_MEMORY","features":[200]},{"name":"DBRESOURCE_NETWORK","features":[200]},{"name":"DBRESOURCE_OTHER","features":[200]},{"name":"DBRESOURCE_RESPONSE","features":[200]},{"name":"DBRESOURCE_ROWS","features":[200]},{"name":"DBRESOURCE_TOTAL","features":[200]},{"name":"DBRESULTFLAGENUM","features":[200]},{"name":"DBRESULTFLAG_DEFAULT","features":[200]},{"name":"DBRESULTFLAG_ROW","features":[200]},{"name":"DBRESULTFLAG_ROWSET","features":[200]},{"name":"DBROWCHANGEKINDENUM","features":[200]},{"name":"DBROWCHANGEKIND_COUNT","features":[200]},{"name":"DBROWCHANGEKIND_DELETE","features":[200]},{"name":"DBROWCHANGEKIND_INSERT","features":[200]},{"name":"DBROWCHANGEKIND_UPDATE","features":[200]},{"name":"DBROWSTATUSENUM","features":[200]},{"name":"DBROWSTATUSENUM20","features":[200]},{"name":"DBROWSTATUS_E_CANCELED","features":[200]},{"name":"DBROWSTATUS_E_CANTRELEASE","features":[200]},{"name":"DBROWSTATUS_E_CONCURRENCYVIOLATION","features":[200]},{"name":"DBROWSTATUS_E_DELETED","features":[200]},{"name":"DBROWSTATUS_E_FAIL","features":[200]},{"name":"DBROWSTATUS_E_INTEGRITYVIOLATION","features":[200]},{"name":"DBROWSTATUS_E_INVALID","features":[200]},{"name":"DBROWSTATUS_E_LIMITREACHED","features":[200]},{"name":"DBROWSTATUS_E_MAXPENDCHANGESEXCEEDED","features":[200]},{"name":"DBROWSTATUS_E_NEWLYINSERTED","features":[200]},{"name":"DBROWSTATUS_E_OBJECTOPEN","features":[200]},{"name":"DBROWSTATUS_E_OUTOFMEMORY","features":[200]},{"name":"DBROWSTATUS_E_PENDINGINSERT","features":[200]},{"name":"DBROWSTATUS_E_PERMISSIONDENIED","features":[200]},{"name":"DBROWSTATUS_E_SCHEMAVIOLATION","features":[200]},{"name":"DBROWSTATUS_S_MULTIPLECHANGES","features":[200]},{"name":"DBROWSTATUS_S_NOCHANGE","features":[200]},{"name":"DBROWSTATUS_S_OK","features":[200]},{"name":"DBROWSTATUS_S_PENDINGCHANGES","features":[200]},{"name":"DBROWWATCHCHANGE","features":[200]},{"name":"DBROWWATCHCHANGE","features":[200]},{"name":"DBSCHEMA_LINKEDSERVERS","features":[200]},{"name":"DBSEEKENUM","features":[200]},{"name":"DBSEEK_AFTER","features":[200]},{"name":"DBSEEK_AFTEREQ","features":[200]},{"name":"DBSEEK_BEFORE","features":[200]},{"name":"DBSEEK_BEFOREEQ","features":[200]},{"name":"DBSEEK_FIRSTEQ","features":[200]},{"name":"DBSEEK_INVALID","features":[200]},{"name":"DBSEEK_LASTEQ","features":[200]},{"name":"DBSELFGUID","features":[200]},{"name":"DBSORTENUM","features":[200]},{"name":"DBSORT_ASCENDING","features":[200]},{"name":"DBSORT_DESCENDING","features":[200]},{"name":"DBSOURCETYPEENUM","features":[200]},{"name":"DBSOURCETYPEENUM20","features":[200]},{"name":"DBSOURCETYPEENUM25","features":[200]},{"name":"DBSOURCETYPE_BINDER","features":[200]},{"name":"DBSOURCETYPE_DATASOURCE","features":[200]},{"name":"DBSOURCETYPE_DATASOURCE_MDP","features":[200]},{"name":"DBSOURCETYPE_DATASOURCE_TDP","features":[200]},{"name":"DBSOURCETYPE_ENUMERATOR","features":[200]},{"name":"DBSTATUSENUM","features":[200]},{"name":"DBSTATUSENUM20","features":[200]},{"name":"DBSTATUSENUM21","features":[200]},{"name":"DBSTATUSENUM25","features":[200]},{"name":"DBSTATUSENUM26","features":[200]},{"name":"DBSTATUS_E_BADACCESSOR","features":[200]},{"name":"DBSTATUS_E_BADSTATUS","features":[200]},{"name":"DBSTATUS_E_CANCELED","features":[200]},{"name":"DBSTATUS_E_CANNOTCOMPLETE","features":[200]},{"name":"DBSTATUS_E_CANTCONVERTVALUE","features":[200]},{"name":"DBSTATUS_E_CANTCREATE","features":[200]},{"name":"DBSTATUS_E_DATAOVERFLOW","features":[200]},{"name":"DBSTATUS_E_DOESNOTEXIST","features":[200]},{"name":"DBSTATUS_E_INTEGRITYVIOLATION","features":[200]},{"name":"DBSTATUS_E_INVALIDURL","features":[200]},{"name":"DBSTATUS_E_NOTCOLLECTION","features":[200]},{"name":"DBSTATUS_E_OUTOFSPACE","features":[200]},{"name":"DBSTATUS_E_PERMISSIONDENIED","features":[200]},{"name":"DBSTATUS_E_READONLY","features":[200]},{"name":"DBSTATUS_E_RESOURCEEXISTS","features":[200]},{"name":"DBSTATUS_E_RESOURCELOCKED","features":[200]},{"name":"DBSTATUS_E_RESOURCEOUTOFSCOPE","features":[200]},{"name":"DBSTATUS_E_SCHEMAVIOLATION","features":[200]},{"name":"DBSTATUS_E_SIGNMISMATCH","features":[200]},{"name":"DBSTATUS_E_UNAVAILABLE","features":[200]},{"name":"DBSTATUS_E_VOLUMENOTFOUND","features":[200]},{"name":"DBSTATUS_S_ALREADYEXISTS","features":[200]},{"name":"DBSTATUS_S_CANNOTDELETESOURCE","features":[200]},{"name":"DBSTATUS_S_DEFAULT","features":[200]},{"name":"DBSTATUS_S_IGNORE","features":[200]},{"name":"DBSTATUS_S_ISNULL","features":[200]},{"name":"DBSTATUS_S_OK","features":[200]},{"name":"DBSTATUS_S_ROWSETCOLUMN","features":[200]},{"name":"DBSTATUS_S_TRUNCATED","features":[200]},{"name":"DBSTAT_COLUMN_CARDINALITY","features":[200]},{"name":"DBSTAT_HISTOGRAM","features":[200]},{"name":"DBSTAT_TUPLE_CARDINALITY","features":[200]},{"name":"DBTABLESTATISTICSTYPE26","features":[200]},{"name":"DBTIME","features":[200]},{"name":"DBTIMESTAMP","features":[200]},{"name":"DBTIMESTAMP","features":[200]},{"name":"DBTYPEENUM","features":[200]},{"name":"DBTYPEENUM15","features":[200]},{"name":"DBTYPEENUM20","features":[200]},{"name":"DBTYPE_ARRAY","features":[200]},{"name":"DBTYPE_BOOL","features":[200]},{"name":"DBTYPE_BSTR","features":[200]},{"name":"DBTYPE_BYREF","features":[200]},{"name":"DBTYPE_BYTES","features":[200]},{"name":"DBTYPE_CY","features":[200]},{"name":"DBTYPE_DATE","features":[200]},{"name":"DBTYPE_DBDATE","features":[200]},{"name":"DBTYPE_DBTIME","features":[200]},{"name":"DBTYPE_DBTIMESTAMP","features":[200]},{"name":"DBTYPE_DECIMAL","features":[200]},{"name":"DBTYPE_EMPTY","features":[200]},{"name":"DBTYPE_ERROR","features":[200]},{"name":"DBTYPE_FILETIME","features":[200]},{"name":"DBTYPE_GUID","features":[200]},{"name":"DBTYPE_HCHAPTER","features":[200]},{"name":"DBTYPE_I1","features":[200]},{"name":"DBTYPE_I2","features":[200]},{"name":"DBTYPE_I4","features":[200]},{"name":"DBTYPE_I8","features":[200]},{"name":"DBTYPE_IDISPATCH","features":[200]},{"name":"DBTYPE_IUNKNOWN","features":[200]},{"name":"DBTYPE_NULL","features":[200]},{"name":"DBTYPE_NUMERIC","features":[200]},{"name":"DBTYPE_PROPVARIANT","features":[200]},{"name":"DBTYPE_R4","features":[200]},{"name":"DBTYPE_R8","features":[200]},{"name":"DBTYPE_RESERVED","features":[200]},{"name":"DBTYPE_SQLVARIANT","features":[200]},{"name":"DBTYPE_STR","features":[200]},{"name":"DBTYPE_UDT","features":[200]},{"name":"DBTYPE_UI1","features":[200]},{"name":"DBTYPE_UI2","features":[200]},{"name":"DBTYPE_UI4","features":[200]},{"name":"DBTYPE_UI8","features":[200]},{"name":"DBTYPE_VARIANT","features":[200]},{"name":"DBTYPE_VARNUMERIC","features":[200]},{"name":"DBTYPE_VECTOR","features":[200]},{"name":"DBTYPE_WSTR","features":[200]},{"name":"DBUNIT_BYTE","features":[200]},{"name":"DBUNIT_GIGA_BYTE","features":[200]},{"name":"DBUNIT_HOUR","features":[200]},{"name":"DBUNIT_INVALID","features":[200]},{"name":"DBUNIT_KILO_BYTE","features":[200]},{"name":"DBUNIT_MAXIMUM","features":[200]},{"name":"DBUNIT_MEGA_BYTE","features":[200]},{"name":"DBUNIT_MICRO_SECOND","features":[200]},{"name":"DBUNIT_MILLI_SECOND","features":[200]},{"name":"DBUNIT_MINIMUM","features":[200]},{"name":"DBUNIT_MINUTE","features":[200]},{"name":"DBUNIT_NUM_LOCKS","features":[200]},{"name":"DBUNIT_NUM_MSGS","features":[200]},{"name":"DBUNIT_NUM_ROWS","features":[200]},{"name":"DBUNIT_OTHER","features":[200]},{"name":"DBUNIT_PERCENT","features":[200]},{"name":"DBUNIT_SECOND","features":[200]},{"name":"DBUNIT_WEIGHT","features":[200]},{"name":"DBUPDELRULEENUM","features":[200]},{"name":"DBUPDELRULE_CASCADE","features":[200]},{"name":"DBUPDELRULE_NOACTION","features":[200]},{"name":"DBUPDELRULE_SETDEFAULT","features":[200]},{"name":"DBUPDELRULE_SETNULL","features":[200]},{"name":"DBVARYBIN","features":[200]},{"name":"DBVARYCHAR","features":[200]},{"name":"DBVECTOR","features":[200]},{"name":"DBVECTOR","features":[200]},{"name":"DBWATCHMODEENUM","features":[200]},{"name":"DBWATCHMODE_ALL","features":[200]},{"name":"DBWATCHMODE_COUNT","features":[200]},{"name":"DBWATCHMODE_EXTEND","features":[200]},{"name":"DBWATCHMODE_MOVE","features":[200]},{"name":"DBWATCHNOTIFYENUM","features":[200]},{"name":"DBWATCHNOTIFY_QUERYDONE","features":[200]},{"name":"DBWATCHNOTIFY_QUERYREEXECUTED","features":[200]},{"name":"DBWATCHNOTIFY_ROWSCHANGED","features":[200]},{"name":"DB_ALL_EXCEPT_LIKE","features":[200]},{"name":"DB_BINDFLAGS_COLLECTION","features":[200]},{"name":"DB_BINDFLAGS_DELAYFETCHCOLUMNS","features":[200]},{"name":"DB_BINDFLAGS_DELAYFETCHSTREAM","features":[200]},{"name":"DB_BINDFLAGS_ISSTRUCTUREDDOCUMENT","features":[200]},{"name":"DB_BINDFLAGS_OPENIFEXISTS","features":[200]},{"name":"DB_BINDFLAGS_OUTPUT","features":[200]},{"name":"DB_BINDFLAGS_OVERWRITE","features":[200]},{"name":"DB_BINDFLAGS_RECURSIVE","features":[200]},{"name":"DB_COLLATION_ASC","features":[200]},{"name":"DB_COLLATION_DESC","features":[200]},{"name":"DB_COUNTUNAVAILABLE","features":[200]},{"name":"DB_E_ABORTLIMITREACHED","features":[200]},{"name":"DB_E_ALREADYINITIALIZED","features":[200]},{"name":"DB_E_ALTERRESTRICTED","features":[200]},{"name":"DB_E_ASYNCNOTSUPPORTED","features":[200]},{"name":"DB_E_BADACCESSORFLAGS","features":[200]},{"name":"DB_E_BADACCESSORHANDLE","features":[200]},{"name":"DB_E_BADACCESSORTYPE","features":[200]},{"name":"DB_E_BADBINDINFO","features":[200]},{"name":"DB_E_BADBOOKMARK","features":[200]},{"name":"DB_E_BADCHAPTER","features":[200]},{"name":"DB_E_BADCOLUMNID","features":[200]},{"name":"DB_E_BADCOMMANDFLAGS","features":[200]},{"name":"DB_E_BADCOMMANDID","features":[200]},{"name":"DB_E_BADCOMPAREOP","features":[200]},{"name":"DB_E_BADCONSTRAINTFORM","features":[200]},{"name":"DB_E_BADCONSTRAINTID","features":[200]},{"name":"DB_E_BADCONSTRAINTTYPE","features":[200]},{"name":"DB_E_BADCONVERTFLAG","features":[200]},{"name":"DB_E_BADCOPY","features":[200]},{"name":"DB_E_BADDEFERRABILITY","features":[200]},{"name":"DB_E_BADDYNAMICERRORID","features":[200]},{"name":"DB_E_BADHRESULT","features":[200]},{"name":"DB_E_BADID","features":[200]},{"name":"DB_E_BADINDEXID","features":[200]},{"name":"DB_E_BADINITSTRING","features":[200]},{"name":"DB_E_BADLOCKMODE","features":[200]},{"name":"DB_E_BADLOOKUPID","features":[200]},{"name":"DB_E_BADMATCHTYPE","features":[200]},{"name":"DB_E_BADORDINAL","features":[200]},{"name":"DB_E_BADPARAMETERNAME","features":[200]},{"name":"DB_E_BADPRECISION","features":[200]},{"name":"DB_E_BADPROPERTYVALUE","features":[200]},{"name":"DB_E_BADRATIO","features":[200]},{"name":"DB_E_BADRECORDNUM","features":[200]},{"name":"DB_E_BADREGIONHANDLE","features":[200]},{"name":"DB_E_BADROWHANDLE","features":[200]},{"name":"DB_E_BADSCALE","features":[200]},{"name":"DB_E_BADSOURCEHANDLE","features":[200]},{"name":"DB_E_BADSTARTPOSITION","features":[200]},{"name":"DB_E_BADSTATUSVALUE","features":[200]},{"name":"DB_E_BADSTORAGEFLAG","features":[200]},{"name":"DB_E_BADSTORAGEFLAGS","features":[200]},{"name":"DB_E_BADTABLEID","features":[200]},{"name":"DB_E_BADTYPE","features":[200]},{"name":"DB_E_BADTYPENAME","features":[200]},{"name":"DB_E_BADUPDATEDELETERULE","features":[200]},{"name":"DB_E_BADVALUES","features":[200]},{"name":"DB_E_BOGUS","features":[200]},{"name":"DB_E_BOOKMARKSKIPPED","features":[200]},{"name":"DB_E_BYREFACCESSORNOTSUPPORTED","features":[200]},{"name":"DB_E_CANCELED","features":[200]},{"name":"DB_E_CANNOTCONNECT","features":[200]},{"name":"DB_E_CANNOTFREE","features":[200]},{"name":"DB_E_CANNOTRESTART","features":[200]},{"name":"DB_E_CANTCANCEL","features":[200]},{"name":"DB_E_CANTCONVERTVALUE","features":[200]},{"name":"DB_E_CANTFETCHBACKWARDS","features":[200]},{"name":"DB_E_CANTFILTER","features":[200]},{"name":"DB_E_CANTORDER","features":[200]},{"name":"DB_E_CANTSCROLLBACKWARDS","features":[200]},{"name":"DB_E_CANTTRANSLATE","features":[200]},{"name":"DB_E_CHAPTERNOTRELEASED","features":[200]},{"name":"DB_E_COLUMNUNAVAILABLE","features":[200]},{"name":"DB_E_COMMANDNOTPERSISTED","features":[200]},{"name":"DB_E_CONCURRENCYVIOLATION","features":[200]},{"name":"DB_E_COSTLIMIT","features":[200]},{"name":"DB_E_DATAOVERFLOW","features":[200]},{"name":"DB_E_DELETEDROW","features":[200]},{"name":"DB_E_DIALECTNOTSUPPORTED","features":[200]},{"name":"DB_E_DROPRESTRICTED","features":[200]},{"name":"DB_E_DUPLICATECOLUMNID","features":[200]},{"name":"DB_E_DUPLICATECONSTRAINTID","features":[200]},{"name":"DB_E_DUPLICATEDATASOURCE","features":[200]},{"name":"DB_E_DUPLICATEID","features":[200]},{"name":"DB_E_DUPLICATEINDEXID","features":[200]},{"name":"DB_E_DUPLICATETABLEID","features":[200]},{"name":"DB_E_ERRORSINCOMMAND","features":[200]},{"name":"DB_E_ERRORSOCCURRED","features":[200]},{"name":"DB_E_GOALREJECTED","features":[200]},{"name":"DB_E_INDEXINUSE","features":[200]},{"name":"DB_E_INTEGRITYVIOLATION","features":[200]},{"name":"DB_E_INVALID","features":[200]},{"name":"DB_E_INVALIDTRANSITION","features":[200]},{"name":"DB_E_LIMITREJECTED","features":[200]},{"name":"DB_E_MAXPENDCHANGESEXCEEDED","features":[200]},{"name":"DB_E_MISMATCHEDPROVIDER","features":[200]},{"name":"DB_E_MULTIPLESTATEMENTS","features":[200]},{"name":"DB_E_MULTIPLESTORAGE","features":[200]},{"name":"DB_E_NEWLYINSERTED","features":[200]},{"name":"DB_E_NOAGGREGATION","features":[200]},{"name":"DB_E_NOCOLUMN","features":[200]},{"name":"DB_E_NOCOMMAND","features":[200]},{"name":"DB_E_NOCONSTRAINT","features":[200]},{"name":"DB_E_NOINDEX","features":[200]},{"name":"DB_E_NOLOCALE","features":[200]},{"name":"DB_E_NONCONTIGUOUSRANGE","features":[200]},{"name":"DB_E_NOPROVIDERSREGISTERED","features":[200]},{"name":"DB_E_NOQUERY","features":[200]},{"name":"DB_E_NOSOURCEOBJECT","features":[200]},{"name":"DB_E_NOSTATISTIC","features":[200]},{"name":"DB_E_NOTABLE","features":[200]},{"name":"DB_E_NOTAREFERENCECOLUMN","features":[200]},{"name":"DB_E_NOTASUBREGION","features":[200]},{"name":"DB_E_NOTCOLLECTION","features":[200]},{"name":"DB_E_NOTFOUND","features":[200]},{"name":"DB_E_NOTPREPARED","features":[200]},{"name":"DB_E_NOTREENTRANT","features":[200]},{"name":"DB_E_NOTSUPPORTED","features":[200]},{"name":"DB_E_NULLACCESSORNOTSUPPORTED","features":[200]},{"name":"DB_E_OBJECTCREATIONLIMITREACHED","features":[200]},{"name":"DB_E_OBJECTMISMATCH","features":[200]},{"name":"DB_E_OBJECTOPEN","features":[200]},{"name":"DB_E_OUTOFSPACE","features":[200]},{"name":"DB_E_PARAMNOTOPTIONAL","features":[200]},{"name":"DB_E_PARAMUNAVAILABLE","features":[200]},{"name":"DB_E_PENDINGCHANGES","features":[200]},{"name":"DB_E_PENDINGINSERT","features":[200]},{"name":"DB_E_READONLY","features":[200]},{"name":"DB_E_READONLYACCESSOR","features":[200]},{"name":"DB_E_RESOURCEEXISTS","features":[200]},{"name":"DB_E_RESOURCELOCKED","features":[200]},{"name":"DB_E_RESOURCENOTSUPPORTED","features":[200]},{"name":"DB_E_RESOURCEOUTOFSCOPE","features":[200]},{"name":"DB_E_ROWLIMITEXCEEDED","features":[200]},{"name":"DB_E_ROWSETINCOMMAND","features":[200]},{"name":"DB_E_ROWSNOTRELEASED","features":[200]},{"name":"DB_E_SCHEMAVIOLATION","features":[200]},{"name":"DB_E_TABLEINUSE","features":[200]},{"name":"DB_E_TIMEOUT","features":[200]},{"name":"DB_E_UNSUPPORTEDCONVERSION","features":[200]},{"name":"DB_E_WRITEONLYACCESSOR","features":[200]},{"name":"DB_IMP_LEVEL_ANONYMOUS","features":[200]},{"name":"DB_IMP_LEVEL_DELEGATE","features":[200]},{"name":"DB_IMP_LEVEL_IDENTIFY","features":[200]},{"name":"DB_IMP_LEVEL_IMPERSONATE","features":[200]},{"name":"DB_IN","features":[200]},{"name":"DB_INVALID_HACCESSOR","features":[200]},{"name":"DB_INVALID_HCHAPTER","features":[200]},{"name":"DB_LIKE_ONLY","features":[200]},{"name":"DB_LOCAL_EXCLUSIVE","features":[200]},{"name":"DB_LOCAL_SHARED","features":[200]},{"name":"DB_MODE_READ","features":[200]},{"name":"DB_MODE_READWRITE","features":[200]},{"name":"DB_MODE_SHARE_DENY_NONE","features":[200]},{"name":"DB_MODE_SHARE_DENY_READ","features":[200]},{"name":"DB_MODE_SHARE_DENY_WRITE","features":[200]},{"name":"DB_MODE_SHARE_EXCLUSIVE","features":[200]},{"name":"DB_MODE_WRITE","features":[200]},{"name":"DB_NULLGUID","features":[200]},{"name":"DB_NULL_HACCESSOR","features":[200]},{"name":"DB_NULL_HCHAPTER","features":[200]},{"name":"DB_NULL_HROW","features":[200]},{"name":"DB_NUMERIC","features":[200]},{"name":"DB_OUT","features":[200]},{"name":"DB_PROT_LEVEL_CALL","features":[200]},{"name":"DB_PROT_LEVEL_CONNECT","features":[200]},{"name":"DB_PROT_LEVEL_NONE","features":[200]},{"name":"DB_PROT_LEVEL_PKT","features":[200]},{"name":"DB_PROT_LEVEL_PKT_INTEGRITY","features":[200]},{"name":"DB_PROT_LEVEL_PKT_PRIVACY","features":[200]},{"name":"DB_PT_FUNCTION","features":[200]},{"name":"DB_PT_PROCEDURE","features":[200]},{"name":"DB_PT_UNKNOWN","features":[200]},{"name":"DB_REMOTE","features":[200]},{"name":"DB_SEARCHABLE","features":[200]},{"name":"DB_SEC_E_AUTH_FAILED","features":[200]},{"name":"DB_SEC_E_PERMISSIONDENIED","features":[200]},{"name":"DB_SEC_E_SAFEMODE_DENIED","features":[200]},{"name":"DB_S_ASYNCHRONOUS","features":[200]},{"name":"DB_S_BADROWHANDLE","features":[200]},{"name":"DB_S_BOOKMARKSKIPPED","features":[200]},{"name":"DB_S_BUFFERFULL","features":[200]},{"name":"DB_S_CANTRELEASE","features":[200]},{"name":"DB_S_COLUMNSCHANGED","features":[200]},{"name":"DB_S_COLUMNTYPEMISMATCH","features":[200]},{"name":"DB_S_COMMANDREEXECUTED","features":[200]},{"name":"DB_S_DELETEDROW","features":[200]},{"name":"DB_S_DIALECTIGNORED","features":[200]},{"name":"DB_S_ENDOFROWSET","features":[200]},{"name":"DB_S_ERRORSOCCURRED","features":[200]},{"name":"DB_S_ERRORSRETURNED","features":[200]},{"name":"DB_S_GOALCHANGED","features":[200]},{"name":"DB_S_LOCKUPGRADED","features":[200]},{"name":"DB_S_MULTIPLECHANGES","features":[200]},{"name":"DB_S_NONEXTROWSET","features":[200]},{"name":"DB_S_NORESULT","features":[200]},{"name":"DB_S_NOROWSPECIFICCOLUMNS","features":[200]},{"name":"DB_S_NOTSINGLETON","features":[200]},{"name":"DB_S_PARAMUNAVAILABLE","features":[200]},{"name":"DB_S_PROPERTIESCHANGED","features":[200]},{"name":"DB_S_ROWLIMITEXCEEDED","features":[200]},{"name":"DB_S_STOPLIMITREACHED","features":[200]},{"name":"DB_S_TOOMANYCHANGES","features":[200]},{"name":"DB_S_TYPEINFOOVERRIDDEN","features":[200]},{"name":"DB_S_UNWANTEDOPERATION","features":[200]},{"name":"DB_S_UNWANTEDPHASE","features":[200]},{"name":"DB_S_UNWANTEDREASON","features":[200]},{"name":"DB_UNSEARCHABLE","features":[200]},{"name":"DB_VARNUMERIC","features":[200]},{"name":"DCINFO","features":[3,43,200,44]},{"name":"DCINFOTYPEENUM","features":[200]},{"name":"DCINFOTYPE_VERSION","features":[200]},{"name":"DELIVERY_AGENT_FLAGS","features":[200]},{"name":"DELIVERY_AGENT_FLAG_NO_BROADCAST","features":[200]},{"name":"DELIVERY_AGENT_FLAG_NO_RESTRICTIONS","features":[200]},{"name":"DELIVERY_AGENT_FLAG_SILENT_DIAL","features":[200]},{"name":"DISPID_QUERY_ALL","features":[200]},{"name":"DISPID_QUERY_HITCOUNT","features":[200]},{"name":"DISPID_QUERY_LASTSEENTIME","features":[200]},{"name":"DISPID_QUERY_METADATA_PROPDISPID","features":[200]},{"name":"DISPID_QUERY_METADATA_PROPGUID","features":[200]},{"name":"DISPID_QUERY_METADATA_PROPMODIFIABLE","features":[200]},{"name":"DISPID_QUERY_METADATA_PROPNAME","features":[200]},{"name":"DISPID_QUERY_METADATA_STORELEVEL","features":[200]},{"name":"DISPID_QUERY_METADATA_VROOTAUTOMATIC","features":[200]},{"name":"DISPID_QUERY_METADATA_VROOTMANUAL","features":[200]},{"name":"DISPID_QUERY_METADATA_VROOTUSED","features":[200]},{"name":"DISPID_QUERY_RANK","features":[200]},{"name":"DISPID_QUERY_RANKVECTOR","features":[200]},{"name":"DISPID_QUERY_REVNAME","features":[200]},{"name":"DISPID_QUERY_UNFILTERED","features":[200]},{"name":"DISPID_QUERY_VIRTUALPATH","features":[200]},{"name":"DISPID_QUERY_WORKID","features":[200]},{"name":"DS_E_ALREADYDISABLED","features":[200]},{"name":"DS_E_ALREADYENABLED","features":[200]},{"name":"DS_E_BADREQUEST","features":[200]},{"name":"DS_E_BADRESULT","features":[200]},{"name":"DS_E_BADSEQUENCE","features":[200]},{"name":"DS_E_BUFFERTOOSMALL","features":[200]},{"name":"DS_E_CANNOTREMOVECONCURRENT","features":[200]},{"name":"DS_E_CANNOTWRITEREGISTRY","features":[200]},{"name":"DS_E_CONFIGBAD","features":[200]},{"name":"DS_E_CONFIGNOTRIGHTTYPE","features":[200]},{"name":"DS_E_DATANOTPRESENT","features":[200]},{"name":"DS_E_DATASOURCENOTAVAILABLE","features":[200]},{"name":"DS_E_DATASOURCENOTDISABLED","features":[200]},{"name":"DS_E_DUPLICATEID","features":[200]},{"name":"DS_E_INDEXDIRECTORY","features":[200]},{"name":"DS_E_INVALIDCATALOGNAME","features":[200]},{"name":"DS_E_INVALIDDATASOURCE","features":[200]},{"name":"DS_E_INVALIDTAGDB","features":[200]},{"name":"DS_E_MESSAGETOOLONG","features":[200]},{"name":"DS_E_MISSINGCATALOG","features":[200]},{"name":"DS_E_NOMOREDATA","features":[200]},{"name":"DS_E_PARAMOUTOFRANGE","features":[200]},{"name":"DS_E_PROPVERSIONMISMATCH","features":[200]},{"name":"DS_E_PROTOCOLVERSION","features":[200]},{"name":"DS_E_QUERYCANCELED","features":[200]},{"name":"DS_E_QUERYHUNG","features":[200]},{"name":"DS_E_REGISTRY","features":[200]},{"name":"DS_E_SEARCHCATNAMECOLLISION","features":[200]},{"name":"DS_E_SERVERCAPACITY","features":[200]},{"name":"DS_E_SERVERERROR","features":[200]},{"name":"DS_E_SETSTATUSINPROGRESS","features":[200]},{"name":"DS_E_TOOMANYDATASOURCES","features":[200]},{"name":"DS_E_UNKNOWNPARAM","features":[200]},{"name":"DS_E_UNKNOWNREQUEST","features":[200]},{"name":"DS_E_VALUETOOLARGE","features":[200]},{"name":"DataLinks","features":[200]},{"name":"DataSource","features":[200]},{"name":"DataSourceListener","features":[200]},{"name":"DataSourceObject","features":[200]},{"name":"EBindInfoOptions","features":[200]},{"name":"ERRORINFO","features":[200]},{"name":"ERRORINFO","features":[200]},{"name":"ERROR_FTE","features":[200]},{"name":"ERROR_FTE_CB","features":[200]},{"name":"ERROR_FTE_FD","features":[200]},{"name":"ERROR_SOURCE_CMDLINE","features":[200]},{"name":"ERROR_SOURCE_COLLATOR","features":[200]},{"name":"ERROR_SOURCE_CONNMGR","features":[200]},{"name":"ERROR_SOURCE_CONTENT_SOURCE","features":[200]},{"name":"ERROR_SOURCE_DATASOURCE","features":[200]},{"name":"ERROR_SOURCE_DAV","features":[200]},{"name":"ERROR_SOURCE_EXSTOREPH","features":[200]},{"name":"ERROR_SOURCE_FLTRDMN","features":[200]},{"name":"ERROR_SOURCE_GATHERER","features":[200]},{"name":"ERROR_SOURCE_INDEXER","features":[200]},{"name":"ERROR_SOURCE_MSS","features":[200]},{"name":"ERROR_SOURCE_NETWORKING","features":[200]},{"name":"ERROR_SOURCE_NLADMIN","features":[200]},{"name":"ERROR_SOURCE_NOTESPH","features":[200]},{"name":"ERROR_SOURCE_OLEDB_BINDER","features":[200]},{"name":"ERROR_SOURCE_PEOPLE_IMPORT","features":[200]},{"name":"ERROR_SOURCE_PROTHNDLR","features":[200]},{"name":"ERROR_SOURCE_QUERY","features":[200]},{"name":"ERROR_SOURCE_REMOTE_EXSTOREPH","features":[200]},{"name":"ERROR_SOURCE_SCHEMA","features":[200]},{"name":"ERROR_SOURCE_SCRIPTPI","features":[200]},{"name":"ERROR_SOURCE_SECURITY","features":[200]},{"name":"ERROR_SOURCE_SETUP","features":[200]},{"name":"ERROR_SOURCE_SRCH_SCHEMA_CACHE","features":[200]},{"name":"ERROR_SOURCE_XML","features":[200]},{"name":"EVENT_AUDIENCECOMPUTATION_CANNOTSTART","features":[200]},{"name":"EVENT_AUTOCAT_CANT_CREATE_FILE_SHARE","features":[200]},{"name":"EVENT_AUTOCAT_PERFMON","features":[200]},{"name":"EVENT_CONFIG_ERROR","features":[200]},{"name":"EVENT_CONFIG_SYNTAX","features":[200]},{"name":"EVENT_CRAWL_SCHEDULED","features":[200]},{"name":"EVENT_DETAILED_FILTERPOOL_ADD_FAILED","features":[200]},{"name":"EVENT_DSS_NOT_ENABLED","features":[200]},{"name":"EVENT_ENUMERATE_SESSIONS_FAILED","features":[200]},{"name":"EVENT_EXCEPTION","features":[200]},{"name":"EVENT_FAILED_CREATE_GATHERER_LOG","features":[200]},{"name":"EVENT_FAILED_INITIALIZE_CRAWL","features":[200]},{"name":"EVENT_FILTERPOOL_ADD_FAILED","features":[200]},{"name":"EVENT_FILTERPOOL_DELETE_FAILED","features":[200]},{"name":"EVENT_FILTER_HOST_FORCE_TERMINATE","features":[200]},{"name":"EVENT_FILTER_HOST_NOT_INITIALIZED","features":[200]},{"name":"EVENT_FILTER_HOST_NOT_TERMINATED","features":[200]},{"name":"EVENT_GATHERER_DATASOURCE","features":[200]},{"name":"EVENT_GATHERER_PERFMON","features":[200]},{"name":"EVENT_GATHERSVC_PERFMON","features":[200]},{"name":"EVENT_GATHER_ADVISE_FAILED","features":[200]},{"name":"EVENT_GATHER_APP_INIT_FAILED","features":[200]},{"name":"EVENT_GATHER_AUTODESCENCODE_INVALID","features":[200]},{"name":"EVENT_GATHER_AUTODESCLEN_ADJUSTED","features":[200]},{"name":"EVENT_GATHER_BACKUPAPP_COMPLETE","features":[200]},{"name":"EVENT_GATHER_BACKUPAPP_ERROR","features":[200]},{"name":"EVENT_GATHER_CANT_CREATE_DOCID","features":[200]},{"name":"EVENT_GATHER_CANT_DELETE_DOCID","features":[200]},{"name":"EVENT_GATHER_CHECKPOINT_CORRUPT","features":[200]},{"name":"EVENT_GATHER_CHECKPOINT_FAILED","features":[200]},{"name":"EVENT_GATHER_CHECKPOINT_FILE_MISSING","features":[200]},{"name":"EVENT_GATHER_CRAWL_IN_PROGRESS","features":[200]},{"name":"EVENT_GATHER_CRAWL_NOT_STARTED","features":[200]},{"name":"EVENT_GATHER_CRAWL_SEED_ERROR","features":[200]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED","features":[200]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED_INIT","features":[200]},{"name":"EVENT_GATHER_CRITICAL_ERROR","features":[200]},{"name":"EVENT_GATHER_DAEMON_TERMINATED","features":[200]},{"name":"EVENT_GATHER_DELETING_HISTORY_ITEMS","features":[200]},{"name":"EVENT_GATHER_DIRTY_STARTUP","features":[200]},{"name":"EVENT_GATHER_DISK_FULL","features":[200]},{"name":"EVENT_GATHER_END_ADAPTIVE","features":[200]},{"name":"EVENT_GATHER_END_CRAWL","features":[200]},{"name":"EVENT_GATHER_END_INCREMENTAL","features":[200]},{"name":"EVENT_GATHER_EXCEPTION","features":[200]},{"name":"EVENT_GATHER_FLUSH_FAILED","features":[200]},{"name":"EVENT_GATHER_FROM_NOT_SET","features":[200]},{"name":"EVENT_GATHER_HISTORY_CORRUPTION_DETECTED","features":[200]},{"name":"EVENT_GATHER_INPLACE_INDEX_REBUILD","features":[200]},{"name":"EVENT_GATHER_INTERNAL","features":[200]},{"name":"EVENT_GATHER_INVALID_NETWORK_ACCESS_ACCOUNT","features":[200]},{"name":"EVENT_GATHER_LOCK_FAILED","features":[200]},{"name":"EVENT_GATHER_NO_CRAWL_SEEDS","features":[200]},{"name":"EVENT_GATHER_NO_SCHEMA","features":[200]},{"name":"EVENT_GATHER_OBJ_INIT_FAILED","features":[200]},{"name":"EVENT_GATHER_PLUGINMGR_INIT_FAILED","features":[200]},{"name":"EVENT_GATHER_PLUGIN_INIT_FAILED","features":[200]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_INIT_FAILED","features":[200]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_LOAD_FAILED","features":[200]},{"name":"EVENT_GATHER_READ_CHECKPOINT_FAILED","features":[200]},{"name":"EVENT_GATHER_RECOVERY_FAILURE","features":[200]},{"name":"EVENT_GATHER_REG_MISSING","features":[200]},{"name":"EVENT_GATHER_RESET_START","features":[200]},{"name":"EVENT_GATHER_RESTOREAPP_COMPLETE","features":[200]},{"name":"EVENT_GATHER_RESTOREAPP_ERROR","features":[200]},{"name":"EVENT_GATHER_RESTORE_CHECKPOINT_FAILED","features":[200]},{"name":"EVENT_GATHER_RESTORE_COMPLETE","features":[200]},{"name":"EVENT_GATHER_RESTORE_ERROR","features":[200]},{"name":"EVENT_GATHER_RESUME","features":[200]},{"name":"EVENT_GATHER_SAVE_FAILED","features":[200]},{"name":"EVENT_GATHER_SERVICE_INIT","features":[200]},{"name":"EVENT_GATHER_START_CRAWL","features":[200]},{"name":"EVENT_GATHER_START_CRAWL_IF_RESET","features":[200]},{"name":"EVENT_GATHER_START_PAUSE","features":[200]},{"name":"EVENT_GATHER_STOP_START","features":[200]},{"name":"EVENT_GATHER_SYSTEM_LCID_CHANGED","features":[200]},{"name":"EVENT_GATHER_THROTTLE","features":[200]},{"name":"EVENT_GATHER_TRANSACTION_FAIL","features":[200]},{"name":"EVENT_HASHMAP_INSERT","features":[200]},{"name":"EVENT_HASHMAP_UPDATE","features":[200]},{"name":"EVENT_INDEXER_ADD_DSS_DISCONNECT","features":[200]},{"name":"EVENT_INDEXER_ADD_DSS_FAILED","features":[200]},{"name":"EVENT_INDEXER_ADD_DSS_SUCCEEDED","features":[200]},{"name":"EVENT_INDEXER_BUILD_ENDED","features":[200]},{"name":"EVENT_INDEXER_BUILD_FAILED","features":[200]},{"name":"EVENT_INDEXER_BUILD_START","features":[200]},{"name":"EVENT_INDEXER_CI_LOAD_ERROR","features":[200]},{"name":"EVENT_INDEXER_DSS_ALREADY_ADDED","features":[200]},{"name":"EVENT_INDEXER_DSS_CONTACT_FAILED","features":[200]},{"name":"EVENT_INDEXER_DSS_UNABLE_TO_REMOVE","features":[200]},{"name":"EVENT_INDEXER_FAIL_TO_CREATE_PER_USER_CATALOG","features":[200]},{"name":"EVENT_INDEXER_FAIL_TO_SET_MAX_JETINSTANCE","features":[200]},{"name":"EVENT_INDEXER_FAIL_TO_UNLOAD_PER_USER_CATALOG","features":[200]},{"name":"EVENT_INDEXER_INIT_ERROR","features":[200]},{"name":"EVENT_INDEXER_INVALID_DIRECTORY","features":[200]},{"name":"EVENT_INDEXER_LOAD_FAIL","features":[200]},{"name":"EVENT_INDEXER_MISSING_APP_DIRECTORY","features":[200]},{"name":"EVENT_INDEXER_NEW_PROJECT","features":[200]},{"name":"EVENT_INDEXER_NO_SEARCH_SERVERS","features":[200]},{"name":"EVENT_INDEXER_OUT_OF_DATABASE_INSTANCE","features":[200]},{"name":"EVENT_INDEXER_PAUSED_FOR_DISKFULL","features":[200]},{"name":"EVENT_INDEXER_PERFMON","features":[200]},{"name":"EVENT_INDEXER_PROPSTORE_INIT_FAILED","features":[200]},{"name":"EVENT_INDEXER_PROP_ABORTED","features":[200]},{"name":"EVENT_INDEXER_PROP_COMMITTED","features":[200]},{"name":"EVENT_INDEXER_PROP_COMMIT_FAILED","features":[200]},{"name":"EVENT_INDEXER_PROP_ERROR","features":[200]},{"name":"EVENT_INDEXER_PROP_STARTED","features":[200]},{"name":"EVENT_INDEXER_PROP_STATE_CORRUPT","features":[200]},{"name":"EVENT_INDEXER_PROP_STOPPED","features":[200]},{"name":"EVENT_INDEXER_PROP_SUCCEEDED","features":[200]},{"name":"EVENT_INDEXER_REG_ERROR","features":[200]},{"name":"EVENT_INDEXER_REG_MISSING","features":[200]},{"name":"EVENT_INDEXER_REMOVED_PROJECT","features":[200]},{"name":"EVENT_INDEXER_REMOVE_DSS_FAILED","features":[200]},{"name":"EVENT_INDEXER_REMOVE_DSS_SUCCEEDED","features":[200]},{"name":"EVENT_INDEXER_RESET_FOR_CORRUPTION","features":[200]},{"name":"EVENT_INDEXER_SCHEMA_COPY_ERROR","features":[200]},{"name":"EVENT_INDEXER_SHUTDOWN","features":[200]},{"name":"EVENT_INDEXER_STARTED","features":[200]},{"name":"EVENT_INDEXER_VERIFY_PROP_ACCOUNT","features":[200]},{"name":"EVENT_LEARN_COMPILE_FAILED","features":[200]},{"name":"EVENT_LEARN_CREATE_DB_FAILED","features":[200]},{"name":"EVENT_LEARN_PROPAGATION_COPY_FAILED","features":[200]},{"name":"EVENT_LEARN_PROPAGATION_FAILED","features":[200]},{"name":"EVENT_LOCAL_GROUPS_CACHE_FLUSHED","features":[200]},{"name":"EVENT_LOCAL_GROUP_NOT_EXPANDED","features":[200]},{"name":"EVENT_NOTIFICATION_FAILURE","features":[200]},{"name":"EVENT_NOTIFICATION_FAILURE_SCOPE_EXCEEDED_LOGGING","features":[200]},{"name":"EVENT_NOTIFICATION_RESTORED","features":[200]},{"name":"EVENT_NOTIFICATION_RESTORED_SCOPE_EXCEEDED_LOGGING","features":[200]},{"name":"EVENT_NOTIFICATION_THREAD_EXIT_FAILED","features":[200]},{"name":"EVENT_OUTOFMEMORY","features":[200]},{"name":"EVENT_PERF_COUNTERS_ALREADY_EXISTS","features":[200]},{"name":"EVENT_PERF_COUNTERS_NOT_LOADED","features":[200]},{"name":"EVENT_PERF_COUNTERS_REGISTRY_TROUBLE","features":[200]},{"name":"EVENT_PROTOCOL_HOST_FORCE_TERMINATE","features":[200]},{"name":"EVENT_REG_VERSION","features":[200]},{"name":"EVENT_SSSEARCH_CREATE_PATH_RULES_FAILED","features":[200]},{"name":"EVENT_SSSEARCH_CSM_SAVE_FAILED","features":[200]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_FAILED","features":[200]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_ROLLBACK_ERRORS","features":[200]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_SUCCEEDED","features":[200]},{"name":"EVENT_SSSEARCH_DROPPED_EVENTS","features":[200]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_FAILED","features":[200]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_STARTED","features":[200]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_SUCCEEDED","features":[200]},{"name":"EVENT_SSSEARCH_SETUP_FAILED","features":[200]},{"name":"EVENT_SSSEARCH_SETUP_SUCCEEDED","features":[200]},{"name":"EVENT_SSSEARCH_STARTED","features":[200]},{"name":"EVENT_SSSEARCH_STARTING_SETUP","features":[200]},{"name":"EVENT_SSSEARCH_STOPPED","features":[200]},{"name":"EVENT_STS_INIT_SECURITY_FAILED","features":[200]},{"name":"EVENT_SYSTEM_EXCEPTION","features":[200]},{"name":"EVENT_TRANSACTION_READ","features":[200]},{"name":"EVENT_TRANSLOG_APPEND","features":[200]},{"name":"EVENT_TRANSLOG_CREATE","features":[200]},{"name":"EVENT_TRANSLOG_CREATE_TRX","features":[200]},{"name":"EVENT_TRANSLOG_UPDATE","features":[200]},{"name":"EVENT_UNPRIVILEGED_SERVICE_ACCOUNT","features":[200]},{"name":"EVENT_USING_DIFFERENT_WORD_BREAKER","features":[200]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILE","features":[200]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILES","features":[200]},{"name":"EVENT_WBREAKER_NOT_LOADED","features":[200]},{"name":"EVENT_WIN32_ERROR","features":[200]},{"name":"EXCI_E_ACCESS_DENIED","features":[200]},{"name":"EXCI_E_BADCONFIG_OR_ACCESSDENIED","features":[200]},{"name":"EXCI_E_INVALID_ACCOUNT_INFO","features":[200]},{"name":"EXCI_E_INVALID_EXCHANGE_SERVER","features":[200]},{"name":"EXCI_E_INVALID_SERVER_CONFIG","features":[200]},{"name":"EXCI_E_NOT_ADMIN_OR_WRONG_SITE","features":[200]},{"name":"EXCI_E_NO_CONFIG","features":[200]},{"name":"EXCI_E_NO_MAPI","features":[200]},{"name":"EXCI_E_WRONG_SERVER_OR_ACCT","features":[200]},{"name":"EXSTOREPH_E_UNEXPECTED","features":[200]},{"name":"EX_ANY","features":[200]},{"name":"EX_CMDFATAL","features":[200]},{"name":"EX_CONTROL","features":[200]},{"name":"EX_DBCORRUPT","features":[200]},{"name":"EX_DBFATAL","features":[200]},{"name":"EX_DEADLOCK","features":[200]},{"name":"EX_HARDWARE","features":[200]},{"name":"EX_INFO","features":[200]},{"name":"EX_INTOK","features":[200]},{"name":"EX_LIMIT","features":[200]},{"name":"EX_MAXISEVERITY","features":[200]},{"name":"EX_MISSING","features":[200]},{"name":"EX_PERMIT","features":[200]},{"name":"EX_RESOURCE","features":[200]},{"name":"EX_SYNTAX","features":[200]},{"name":"EX_TABCORRUPT","features":[200]},{"name":"EX_TYPE","features":[200]},{"name":"EX_USER","features":[200]},{"name":"FAIL","features":[200]},{"name":"FF_INDEXCOMPLEXURLS","features":[200]},{"name":"FF_SUPPRESSINDEXING","features":[200]},{"name":"FILTERED_DATA_SOURCES","features":[200]},{"name":"FLTRDMN_E_CANNOT_DECRYPT_PASSWORD","features":[200]},{"name":"FLTRDMN_E_ENCRYPTED_DOCUMENT","features":[200]},{"name":"FLTRDMN_E_FILTER_INIT_FAILED","features":[200]},{"name":"FLTRDMN_E_QI_FILTER_FAILED","features":[200]},{"name":"FLTRDMN_E_UNEXPECTED","features":[200]},{"name":"FOLLOW_FLAGS","features":[200]},{"name":"FTE_E_ADMIN_BLOB_CORRUPT","features":[200]},{"name":"FTE_E_AFFINITY_MASK","features":[200]},{"name":"FTE_E_ALREADY_INITIALIZED","features":[200]},{"name":"FTE_E_ANOTHER_STATUS_CHANGE_IS_ALREADY_ACTIVE","features":[200]},{"name":"FTE_E_BATCH_ABORTED","features":[200]},{"name":"FTE_E_CATALOG_ALREADY_EXISTS","features":[200]},{"name":"FTE_E_CATALOG_DOES_NOT_EXIST","features":[200]},{"name":"FTE_E_CB_CBID_OUT_OF_BOUND","features":[200]},{"name":"FTE_E_CB_NOT_ENOUGH_AVAIL_PHY_MEM","features":[200]},{"name":"FTE_E_CB_NOT_ENOUGH_OCC_BUFFER","features":[200]},{"name":"FTE_E_CB_OUT_OF_MEMORY","features":[200]},{"name":"FTE_E_COM_SIGNATURE_VALIDATION","features":[200]},{"name":"FTE_E_CORRUPT_GATHERER_HASH_MAP","features":[200]},{"name":"FTE_E_CORRUPT_PROPERTY_STORE","features":[200]},{"name":"FTE_E_CORRUPT_WORDLIST","features":[200]},{"name":"FTE_E_DATATYPE_MISALIGNMENT","features":[200]},{"name":"FTE_E_DEPENDENT_TRAN_FAILED_TO_PERSIST","features":[200]},{"name":"FTE_E_DOC_TOO_HUGE","features":[200]},{"name":"FTE_E_DUPLICATE_OBJECT","features":[200]},{"name":"FTE_E_ERROR_WRITING_REGISTRY","features":[200]},{"name":"FTE_E_EXCEEDED_MAX_PLUGINS","features":[200]},{"name":"FTE_E_FAILED_TO_CREATE_ACCESSOR","features":[200]},{"name":"FTE_E_FAILURE_TO_POST_SETCOMPLETION_STATUS","features":[200]},{"name":"FTE_E_FD_DID_NOT_CONNECT","features":[200]},{"name":"FTE_E_FD_DOC_TIMEOUT","features":[200]},{"name":"FTE_E_FD_DOC_UNEXPECTED_EXIT","features":[200]},{"name":"FTE_E_FD_FAILED_TO_LOAD_IFILTER","features":[200]},{"name":"FTE_E_FD_FILTER_CAUSED_SHARING_VIOLATION","features":[200]},{"name":"FTE_E_FD_IDLE","features":[200]},{"name":"FTE_E_FD_IFILTER_INIT_FAILED","features":[200]},{"name":"FTE_E_FD_NOISE_NO_IPERSISTSTREAM_ON_TEXT_FILTER","features":[200]},{"name":"FTE_E_FD_NOISE_NO_TEXT_FILTER","features":[200]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_INIT_FAILED","features":[200]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_LOAD_FAILED","features":[200]},{"name":"FTE_E_FD_NO_IPERSIST_INTERFACE","features":[200]},{"name":"FTE_E_FD_OCCURRENCE_OVERFLOW","features":[200]},{"name":"FTE_E_FD_OWNERSHIP_OBSOLETE","features":[200]},{"name":"FTE_E_FD_SHUTDOWN","features":[200]},{"name":"FTE_E_FD_TIMEOUT","features":[200]},{"name":"FTE_E_FD_UNEXPECTED_EXIT","features":[200]},{"name":"FTE_E_FD_UNRESPONSIVE","features":[200]},{"name":"FTE_E_FD_USED_TOO_MUCH_MEMORY","features":[200]},{"name":"FTE_E_FILTER_SINGLE_THREADED","features":[200]},{"name":"FTE_E_HIGH_MEMORY_PRESSURE","features":[200]},{"name":"FTE_E_INVALID_CODEPAGE","features":[200]},{"name":"FTE_E_INVALID_DOCID","features":[200]},{"name":"FTE_E_INVALID_ISOLATE_ERROR_BATCH","features":[200]},{"name":"FTE_E_INVALID_PROG_ID","features":[200]},{"name":"FTE_E_INVALID_PROJECT_ID","features":[200]},{"name":"FTE_E_INVALID_PROPERTY","features":[200]},{"name":"FTE_E_INVALID_TYPE","features":[200]},{"name":"FTE_E_KEY_NOT_CACHED","features":[200]},{"name":"FTE_E_LIBRARY_NOT_LOADED","features":[200]},{"name":"FTE_E_NOT_PROCESSED_DUE_TO_PREVIOUS_ERRORS","features":[200]},{"name":"FTE_E_NO_MORE_PROPERTIES","features":[200]},{"name":"FTE_E_NO_PLUGINS","features":[200]},{"name":"FTE_E_NO_PROPERTY_STORE","features":[200]},{"name":"FTE_E_OUT_OF_RANGE","features":[200]},{"name":"FTE_E_PATH_TOO_LONG","features":[200]},{"name":"FTE_E_PAUSE_EXTERNAL","features":[200]},{"name":"FTE_E_PERFMON_FULL","features":[200]},{"name":"FTE_E_PERF_NOT_LOADED","features":[200]},{"name":"FTE_E_PIPE_DATA_CORRUPTED","features":[200]},{"name":"FTE_E_PIPE_NOT_CONNECTED","features":[200]},{"name":"FTE_E_PROGID_REQUIRED","features":[200]},{"name":"FTE_E_PROJECT_NOT_INITALIZED","features":[200]},{"name":"FTE_E_PROJECT_SHUTDOWN","features":[200]},{"name":"FTE_E_PROPERTY_STORE_WORKID_NOTVALID","features":[200]},{"name":"FTE_E_READONLY_CATALOG","features":[200]},{"name":"FTE_E_REDUNDANT_TRAN_FAILURE","features":[200]},{"name":"FTE_E_REJECTED_DUE_TO_PROJECT_STATUS","features":[200]},{"name":"FTE_E_RESOURCE_SHUTDOWN","features":[200]},{"name":"FTE_E_RETRY_HUGE_DOC","features":[200]},{"name":"FTE_E_RETRY_SINGLE_DOC_PER_BATCH","features":[200]},{"name":"FTE_E_SECRET_NOT_FOUND","features":[200]},{"name":"FTE_E_SERIAL_STREAM_CORRUPT","features":[200]},{"name":"FTE_E_STACK_CORRUPTED","features":[200]},{"name":"FTE_E_STATIC_THREAD_INVALID_ARGUMENTS","features":[200]},{"name":"FTE_E_UNEXPECTED_EXIT","features":[200]},{"name":"FTE_E_UNKNOWN_FD_TYPE","features":[200]},{"name":"FTE_E_UNKNOWN_PLUGIN","features":[200]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_INSTANTIATED","features":[200]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_SHUTDOWN","features":[200]},{"name":"FTE_E_URB_TOO_BIG","features":[200]},{"name":"FTE_INVALID_ADMIN_CLIENT","features":[200]},{"name":"FTE_S_BEYOND_QUOTA","features":[200]},{"name":"FTE_S_CATALOG_BLOB_MISMATCHED","features":[200]},{"name":"FTE_S_PROPERTY_RESET","features":[200]},{"name":"FTE_S_PROPERTY_STORE_END_OF_ENUMERATION","features":[200]},{"name":"FTE_S_READONLY_CATALOG","features":[200]},{"name":"FTE_S_REDUNDANT","features":[200]},{"name":"FTE_S_RESOURCES_STARTING_TO_GET_LOW","features":[200]},{"name":"FTE_S_RESUME","features":[200]},{"name":"FTE_S_STATUS_CHANGE_REQUEST","features":[200]},{"name":"FTE_S_TRY_TO_FLUSH","features":[200]},{"name":"FilterRegistration","features":[200]},{"name":"GENERATE_METHOD_PREFIXMATCH","features":[200]},{"name":"GENERATE_METHOD_STEMMED","features":[200]},{"name":"GHTR_E_INSUFFICIENT_DISK_SPACE","features":[200]},{"name":"GHTR_E_LOCAL_SERVER_UNAVAILABLE","features":[200]},{"name":"GTHR_E_ADDLINKS_FAILED_WILL_RETRY_PARENT","features":[200]},{"name":"GTHR_E_APPLICATION_NOT_FOUND","features":[200]},{"name":"GTHR_E_AUTOCAT_UNEXPECTED","features":[200]},{"name":"GTHR_E_BACKUP_VALIDATION_FAIL","features":[200]},{"name":"GTHR_E_BAD_FILTER_DAEMON","features":[200]},{"name":"GTHR_E_BAD_FILTER_HOST","features":[200]},{"name":"GTHR_E_CANNOT_ENABLE_CHECKPOINT","features":[200]},{"name":"GTHR_E_CANNOT_REMOVE_PLUGINMGR","features":[200]},{"name":"GTHR_E_CONFIG_DUP_EXTENSION","features":[200]},{"name":"GTHR_E_CONFIG_DUP_PROJECT","features":[200]},{"name":"GTHR_E_CONTENT_ID_CONFLICT","features":[200]},{"name":"GTHR_E_DIRMON_NOT_INITIALZED","features":[200]},{"name":"GTHR_E_DUPLICATE_OBJECT","features":[200]},{"name":"GTHR_E_DUPLICATE_PROJECT","features":[200]},{"name":"GTHR_E_DUPLICATE_URL","features":[200]},{"name":"GTHR_E_DUP_PROPERTY_MAPPING","features":[200]},{"name":"GTHR_E_EMPTY_DACL","features":[200]},{"name":"GTHR_E_ERROR_INITIALIZING_PERFMON","features":[200]},{"name":"GTHR_E_ERROR_OBJECT_NOT_FOUND","features":[200]},{"name":"GTHR_E_ERROR_WRITING_REGISTRY","features":[200]},{"name":"GTHR_E_FILTERPOOL_NOTFOUND","features":[200]},{"name":"GTHR_E_FILTER_FAULT","features":[200]},{"name":"GTHR_E_FILTER_INIT","features":[200]},{"name":"GTHR_E_FILTER_INTERRUPTED","features":[200]},{"name":"GTHR_E_FILTER_INVALID_MESSAGE","features":[200]},{"name":"GTHR_E_FILTER_NOT_FOUND","features":[200]},{"name":"GTHR_E_FILTER_NO_CODEPAGE","features":[200]},{"name":"GTHR_E_FILTER_NO_MORE_THREADS","features":[200]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED","features":[200]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED_QUOTA","features":[200]},{"name":"GTHR_E_FILTER_SINGLE_THREADED","features":[200]},{"name":"GTHR_E_FOLDER_CRAWLED_BY_ANOTHER_WORKSPACE","features":[200]},{"name":"GTHR_E_FORCE_NOTIFICATION_RESET","features":[200]},{"name":"GTHR_E_FROM_NOT_SPECIFIED","features":[200]},{"name":"GTHR_E_IE_OFFLINE","features":[200]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_CATEGORIES","features":[200]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_DOCUMENTS","features":[200]},{"name":"GTHR_E_INSUFFICIENT_FEATURE_TERMS","features":[200]},{"name":"GTHR_E_INVALIDFUNCTION","features":[200]},{"name":"GTHR_E_INVALID_ACCOUNT","features":[200]},{"name":"GTHR_E_INVALID_ACCOUNT_SYNTAX","features":[200]},{"name":"GTHR_E_INVALID_APPLICATION_NAME","features":[200]},{"name":"GTHR_E_INVALID_CALL_FROM_WBREAKER","features":[200]},{"name":"GTHR_E_INVALID_DIRECTORY","features":[200]},{"name":"GTHR_E_INVALID_EXTENSION","features":[200]},{"name":"GTHR_E_INVALID_GROW_FACTOR","features":[200]},{"name":"GTHR_E_INVALID_HOST_NAME","features":[200]},{"name":"GTHR_E_INVALID_LOG_FILE_NAME","features":[200]},{"name":"GTHR_E_INVALID_MAPPING","features":[200]},{"name":"GTHR_E_INVALID_PATH","features":[200]},{"name":"GTHR_E_INVALID_PATH_EXPRESSION","features":[200]},{"name":"GTHR_E_INVALID_PATH_SPEC","features":[200]},{"name":"GTHR_E_INVALID_PROJECT_NAME","features":[200]},{"name":"GTHR_E_INVALID_PROXY_PORT","features":[200]},{"name":"GTHR_E_INVALID_RESOURCE_ID","features":[200]},{"name":"GTHR_E_INVALID_RETRIES","features":[200]},{"name":"GTHR_E_INVALID_START_ADDRESS","features":[200]},{"name":"GTHR_E_INVALID_START_PAGE","features":[200]},{"name":"GTHR_E_INVALID_START_PAGE_HOST","features":[200]},{"name":"GTHR_E_INVALID_START_PAGE_PATH","features":[200]},{"name":"GTHR_E_INVALID_STREAM_LOGS_COUNT","features":[200]},{"name":"GTHR_E_INVALID_TIME_OUT","features":[200]},{"name":"GTHR_E_JET_BACKUP_ERROR","features":[200]},{"name":"GTHR_E_JET_RESTORE_ERROR","features":[200]},{"name":"GTHR_E_LOCAL_GROUPS_EXPANSION_INTERNAL_ERROR","features":[200]},{"name":"GTHR_E_NAME_TOO_LONG","features":[200]},{"name":"GTHR_E_NESTED_HIERARCHICAL_START_ADDRESSES","features":[200]},{"name":"GTHR_E_NOFILTERSINK","features":[200]},{"name":"GTHR_E_NON_FIXED_DRIVE","features":[200]},{"name":"GTHR_E_NOTIFICATION_FILE_SHARE_INFO_NOT_AVAILABLE","features":[200]},{"name":"GTHR_E_NOTIFICATION_LOCAL_PATH_MUST_USE_FIXED_DRIVE","features":[200]},{"name":"GTHR_E_NOTIFICATION_START_ADDRESS_INVALID","features":[200]},{"name":"GTHR_E_NOTIFICATION_START_PAGE","features":[200]},{"name":"GTHR_E_NOTIFICATION_TYPE_NOT_SUPPORTED","features":[200]},{"name":"GTHR_E_NOTIF_ACCESS_TOKEN_UPDATED","features":[200]},{"name":"GTHR_E_NOTIF_BEING_REMOVED","features":[200]},{"name":"GTHR_E_NOTIF_EXCESSIVE_THROUGHPUT","features":[200]},{"name":"GTHR_E_NO_IDENTITY","features":[200]},{"name":"GTHR_E_NO_PRTCLHNLR","features":[200]},{"name":"GTHR_E_NTF_CLIENT_NOT_SUBSCRIBED","features":[200]},{"name":"GTHR_E_OBJECT_NOT_VALID","features":[200]},{"name":"GTHR_E_OUT_OF_DOC_ID","features":[200]},{"name":"GTHR_E_PIPE_NOT_CONNECTTED","features":[200]},{"name":"GTHR_E_PLUGIN_NOT_REGISTERED","features":[200]},{"name":"GTHR_E_PROJECT_NOT_INITIALIZED","features":[200]},{"name":"GTHR_E_PROPERTIES_EXCEEDED","features":[200]},{"name":"GTHR_E_PROPERTY_LIST_NOT_INITIALIZED","features":[200]},{"name":"GTHR_E_PROXY_NAME","features":[200]},{"name":"GTHR_E_PRT_HNDLR_PROGID_MISSING","features":[200]},{"name":"GTHR_E_RECOVERABLE_EXOLEDB_ERROR","features":[200]},{"name":"GTHR_E_RETRY","features":[200]},{"name":"GTHR_E_SCHEMA_ERRORS_OCCURRED","features":[200]},{"name":"GTHR_E_SCOPES_EXCEEDED","features":[200]},{"name":"GTHR_E_SECRET_NOT_FOUND","features":[200]},{"name":"GTHR_E_SERVER_UNAVAILABLE","features":[200]},{"name":"GTHR_E_SHUTTING_DOWN","features":[200]},{"name":"GTHR_E_SINGLE_THREADED_EMBEDDING","features":[200]},{"name":"GTHR_E_TIMEOUT","features":[200]},{"name":"GTHR_E_TOO_MANY_PLUGINS","features":[200]},{"name":"GTHR_E_UNABLE_TO_READ_EXCHANGE_STORE","features":[200]},{"name":"GTHR_E_UNABLE_TO_READ_REGISTRY","features":[200]},{"name":"GTHR_E_UNKNOWN_PROTOCOL","features":[200]},{"name":"GTHR_E_UNSUPPORTED_PROPERTY_TYPE","features":[200]},{"name":"GTHR_E_URL_EXCLUDED","features":[200]},{"name":"GTHR_E_URL_UNIDENTIFIED","features":[200]},{"name":"GTHR_E_USER_AGENT_NOT_SPECIFIED","features":[200]},{"name":"GTHR_E_VALUE_NOT_AVAILABLE","features":[200]},{"name":"GTHR_S_BAD_FILE_LINK","features":[200]},{"name":"GTHR_S_CANNOT_FILTER","features":[200]},{"name":"GTHR_S_CANNOT_WORDBREAK","features":[200]},{"name":"GTHR_S_CONFIG_HAS_ACCOUNTS","features":[200]},{"name":"GTHR_S_CRAWL_ADAPTIVE","features":[200]},{"name":"GTHR_S_CRAWL_FULL","features":[200]},{"name":"GTHR_S_CRAWL_INCREMENTAL","features":[200]},{"name":"GTHR_S_CRAWL_SCHEDULED","features":[200]},{"name":"GTHR_S_END_PROCESS_LOOP_NOTIFY_QUEUE","features":[200]},{"name":"GTHR_S_END_STD_CHUNKS","features":[200]},{"name":"GTHR_S_MODIFIED_PARTS","features":[200]},{"name":"GTHR_S_NOT_ALL_PARTS","features":[200]},{"name":"GTHR_S_NO_CRAWL_SEEDS","features":[200]},{"name":"GTHR_S_NO_INDEX","features":[200]},{"name":"GTHR_S_OFFICE_CHILD","features":[200]},{"name":"GTHR_S_PAUSE_REASON_BACKOFF","features":[200]},{"name":"GTHR_S_PAUSE_REASON_EXTERNAL","features":[200]},{"name":"GTHR_S_PAUSE_REASON_PROFILE_IMPORT","features":[200]},{"name":"GTHR_S_PAUSE_REASON_UPGRADING","features":[200]},{"name":"GTHR_S_PROB_NOT_MODIFIED","features":[200]},{"name":"GTHR_S_START_FILTER_FROM_BODY","features":[200]},{"name":"GTHR_S_START_FILTER_FROM_PROTOCOL","features":[200]},{"name":"GTHR_S_STATUS_CHANGE_IGNORED","features":[200]},{"name":"GTHR_S_STATUS_END_CRAWL","features":[200]},{"name":"GTHR_S_STATUS_PAUSE","features":[200]},{"name":"GTHR_S_STATUS_RESET","features":[200]},{"name":"GTHR_S_STATUS_RESUME","features":[200]},{"name":"GTHR_S_STATUS_START","features":[200]},{"name":"GTHR_S_STATUS_STOP","features":[200]},{"name":"GTHR_S_STATUS_THROTTLE","features":[200]},{"name":"GTHR_S_TRANSACTION_IGNORED","features":[200]},{"name":"GTHR_S_USE_MIME_FILTER","features":[200]},{"name":"HACCESSOR","features":[200]},{"name":"HITRANGE","features":[200]},{"name":"IAccessor","features":[200]},{"name":"IAlterIndex","features":[200]},{"name":"IAlterTable","features":[200]},{"name":"IBindResource","features":[200]},{"name":"IChapteredRowset","features":[200]},{"name":"IColumnMapper","features":[200]},{"name":"IColumnMapperCreator","features":[200]},{"name":"IColumnsInfo","features":[200]},{"name":"IColumnsInfo2","features":[200]},{"name":"IColumnsRowset","features":[200]},{"name":"ICommand","features":[200]},{"name":"ICommandCost","features":[200]},{"name":"ICommandPersist","features":[200]},{"name":"ICommandPrepare","features":[200]},{"name":"ICommandProperties","features":[200]},{"name":"ICommandStream","features":[200]},{"name":"ICommandText","features":[200]},{"name":"ICommandValidate","features":[200]},{"name":"ICommandWithParameters","features":[200]},{"name":"ICondition","features":[200]},{"name":"ICondition2","features":[200]},{"name":"IConditionFactory","features":[200]},{"name":"IConditionFactory2","features":[200]},{"name":"IConditionGenerator","features":[200]},{"name":"IConvertType","features":[200]},{"name":"ICreateRow","features":[200]},{"name":"IDBAsynchNotify","features":[200]},{"name":"IDBAsynchStatus","features":[200]},{"name":"IDBBinderProperties","features":[200]},{"name":"IDBCreateCommand","features":[200]},{"name":"IDBCreateSession","features":[200]},{"name":"IDBDataSourceAdmin","features":[200]},{"name":"IDBInfo","features":[200]},{"name":"IDBInitialize","features":[200]},{"name":"IDBPromptInitialize","features":[200]},{"name":"IDBProperties","features":[200]},{"name":"IDBSchemaCommand","features":[200]},{"name":"IDBSchemaRowset","features":[200]},{"name":"IDCInfo","features":[200]},{"name":"IDENTIFIER_SDK_ERROR","features":[200]},{"name":"IDENTIFIER_SDK_MASK","features":[200]},{"name":"IDS_MON_BUILTIN_PROPERTY","features":[200]},{"name":"IDS_MON_BUILTIN_VIEW","features":[200]},{"name":"IDS_MON_CANNOT_CAST","features":[200]},{"name":"IDS_MON_CANNOT_CONVERT","features":[200]},{"name":"IDS_MON_COLUMN_NOT_DEFINED","features":[200]},{"name":"IDS_MON_DATE_OUT_OF_RANGE","features":[200]},{"name":"IDS_MON_DEFAULT_ERROR","features":[200]},{"name":"IDS_MON_ILLEGAL_PASSTHROUGH","features":[200]},{"name":"IDS_MON_INVALIDSELECT_COALESCE","features":[200]},{"name":"IDS_MON_INVALID_CATALOG","features":[200]},{"name":"IDS_MON_INVALID_IN_GROUP_CLAUSE","features":[200]},{"name":"IDS_MON_MATCH_STRING","features":[200]},{"name":"IDS_MON_NOT_COLUMN_OF_VIEW","features":[200]},{"name":"IDS_MON_ORDINAL_OUT_OF_RANGE","features":[200]},{"name":"IDS_MON_OR_NOT","features":[200]},{"name":"IDS_MON_OUT_OF_MEMORY","features":[200]},{"name":"IDS_MON_OUT_OF_RANGE","features":[200]},{"name":"IDS_MON_PARSE_ERR_1_PARAM","features":[200]},{"name":"IDS_MON_PARSE_ERR_2_PARAM","features":[200]},{"name":"IDS_MON_PROPERTY_NAME_IN_VIEW","features":[200]},{"name":"IDS_MON_RELATIVE_INTERVAL","features":[200]},{"name":"IDS_MON_SELECT_STAR","features":[200]},{"name":"IDS_MON_SEMI_COLON","features":[200]},{"name":"IDS_MON_VIEW_ALREADY_DEFINED","features":[200]},{"name":"IDS_MON_VIEW_NOT_DEFINED","features":[200]},{"name":"IDS_MON_WEIGHT_OUT_OF_RANGE","features":[200]},{"name":"IDX_E_BUILD_IN_PROGRESS","features":[200]},{"name":"IDX_E_CATALOG_DISMOUNTED","features":[200]},{"name":"IDX_E_CORRUPT_INDEX","features":[200]},{"name":"IDX_E_DISKFULL","features":[200]},{"name":"IDX_E_DOCUMENT_ABORTED","features":[200]},{"name":"IDX_E_DSS_NOT_CONNECTED","features":[200]},{"name":"IDX_E_IDXLSTFILE_CORRUPT","features":[200]},{"name":"IDX_E_INVALIDTAG","features":[200]},{"name":"IDX_E_INVALID_INDEX","features":[200]},{"name":"IDX_E_METAFILE_CORRUPT","features":[200]},{"name":"IDX_E_NOISELIST_NOTFOUND","features":[200]},{"name":"IDX_E_NOT_LOADED","features":[200]},{"name":"IDX_E_OBJECT_NOT_FOUND","features":[200]},{"name":"IDX_E_PROPSTORE_INIT_FAILED","features":[200]},{"name":"IDX_E_PROP_MAJOR_VERSION_MISMATCH","features":[200]},{"name":"IDX_E_PROP_MINOR_VERSION_MISMATCH","features":[200]},{"name":"IDX_E_PROP_STATE_CORRUPT","features":[200]},{"name":"IDX_E_PROP_STOPPED","features":[200]},{"name":"IDX_E_REGISTRY_ENTRY","features":[200]},{"name":"IDX_E_SEARCH_SERVER_ALREADY_EXISTS","features":[200]},{"name":"IDX_E_SEARCH_SERVER_NOT_FOUND","features":[200]},{"name":"IDX_E_STEMMER_NOTFOUND","features":[200]},{"name":"IDX_E_TOO_MANY_SEARCH_SERVERS","features":[200]},{"name":"IDX_E_USE_APPGLOBAL_PROPTABLE","features":[200]},{"name":"IDX_E_USE_DEFAULT_CONTENTCLASS","features":[200]},{"name":"IDX_E_WB_NOTFOUND","features":[200]},{"name":"IDX_S_DSS_NOT_AVAILABLE","features":[200]},{"name":"IDX_S_NO_BUILD_IN_PROGRESS","features":[200]},{"name":"IDX_S_SEARCH_SERVER_ALREADY_EXISTS","features":[200]},{"name":"IDX_S_SEARCH_SERVER_DOES_NOT_EXIST","features":[200]},{"name":"IDataConvert","features":[200]},{"name":"IDataInitialize","features":[200]},{"name":"IDataSourceLocator","features":[200]},{"name":"IEntity","features":[200]},{"name":"IEnumItemProperties","features":[200]},{"name":"IEnumSearchRoots","features":[200]},{"name":"IEnumSearchScopeRules","features":[200]},{"name":"IEnumSubscription","features":[200]},{"name":"IErrorLookup","features":[200]},{"name":"IErrorRecords","features":[200]},{"name":"IGetDataSource","features":[200]},{"name":"IGetRow","features":[200]},{"name":"IGetSession","features":[200]},{"name":"IGetSourceRow","features":[200]},{"name":"IIndexDefinition","features":[200]},{"name":"IInterval","features":[200]},{"name":"ILK_EXPLICIT_EXCLUDED","features":[200]},{"name":"ILK_EXPLICIT_INCLUDED","features":[200]},{"name":"ILK_NEGATIVE_INFINITY","features":[200]},{"name":"ILK_POSITIVE_INFINITY","features":[200]},{"name":"ILoadFilter","features":[200]},{"name":"ILoadFilterWithPrivateComActivation","features":[200]},{"name":"IMDDataset","features":[200]},{"name":"IMDFind","features":[200]},{"name":"IMDRangeRowset","features":[200]},{"name":"IMetaData","features":[200]},{"name":"IMultipleResults","features":[200]},{"name":"INCREMENTAL_ACCESS_INFO","features":[3,200]},{"name":"INET_E_AGENT_CACHE_SIZE_EXCEEDED","features":[200]},{"name":"INET_E_AGENT_CONNECTION_FAILED","features":[200]},{"name":"INET_E_AGENT_EXCEEDING_CACHE_SIZE","features":[200]},{"name":"INET_E_AGENT_MAX_SIZE_EXCEEDED","features":[200]},{"name":"INET_E_SCHEDULED_EXCLUDE_RANGE","features":[200]},{"name":"INET_E_SCHEDULED_UPDATES_DISABLED","features":[200]},{"name":"INET_E_SCHEDULED_UPDATES_RESTRICTED","features":[200]},{"name":"INET_E_SCHEDULED_UPDATE_INTERVAL","features":[200]},{"name":"INET_S_AGENT_INCREASED_CACHE_SIZE","features":[200]},{"name":"INET_S_AGENT_PART_FAIL","features":[200]},{"name":"INTERVAL_LIMIT_KIND","features":[200]},{"name":"INamedEntity","features":[200]},{"name":"INamedEntityCollector","features":[200]},{"name":"IObjectAccessControl","features":[200]},{"name":"IOpLockStatus","features":[200]},{"name":"IOpenRowset","features":[200]},{"name":"IParentRowset","features":[200]},{"name":"IProtocolHandlerSite","features":[200]},{"name":"IProvideMoniker","features":[200]},{"name":"IQueryParser","features":[200]},{"name":"IQueryParserManager","features":[200]},{"name":"IQuerySolution","features":[200]},{"name":"IReadData","features":[200]},{"name":"IRegisterProvider","features":[200]},{"name":"IRelationship","features":[200]},{"name":"IRichChunk","features":[200]},{"name":"IRow","features":[200]},{"name":"IRowChange","features":[200]},{"name":"IRowPosition","features":[200]},{"name":"IRowPositionChange","features":[200]},{"name":"IRowSchemaChange","features":[200]},{"name":"IRowset","features":[200]},{"name":"IRowsetAsynch","features":[200]},{"name":"IRowsetBookmark","features":[200]},{"name":"IRowsetChange","features":[200]},{"name":"IRowsetChangeExtInfo","features":[200]},{"name":"IRowsetChapterMember","features":[200]},{"name":"IRowsetCopyRows","features":[200]},{"name":"IRowsetCurrentIndex","features":[200]},{"name":"IRowsetEvents","features":[200]},{"name":"IRowsetExactScroll","features":[200]},{"name":"IRowsetFastLoad","features":[200]},{"name":"IRowsetFind","features":[200]},{"name":"IRowsetIdentity","features":[200]},{"name":"IRowsetIndex","features":[200]},{"name":"IRowsetInfo","features":[200]},{"name":"IRowsetKeys","features":[200]},{"name":"IRowsetLocate","features":[200]},{"name":"IRowsetNewRowAfter","features":[200]},{"name":"IRowsetNextRowset","features":[200]},{"name":"IRowsetNotify","features":[200]},{"name":"IRowsetPrioritization","features":[200]},{"name":"IRowsetQueryStatus","features":[200]},{"name":"IRowsetRefresh","features":[200]},{"name":"IRowsetResynch","features":[200]},{"name":"IRowsetScroll","features":[200]},{"name":"IRowsetUpdate","features":[200]},{"name":"IRowsetView","features":[200]},{"name":"IRowsetWatchAll","features":[200]},{"name":"IRowsetWatchNotify","features":[200]},{"name":"IRowsetWatchRegion","features":[200]},{"name":"IRowsetWithParameters","features":[200]},{"name":"ISQLErrorInfo","features":[200]},{"name":"ISQLGetDiagField","features":[200]},{"name":"ISQLRequestDiagFields","features":[200]},{"name":"ISQLServerErrorInfo","features":[200]},{"name":"ISchemaLocalizerSupport","features":[200]},{"name":"ISchemaLock","features":[200]},{"name":"ISchemaProvider","features":[200]},{"name":"IScopedOperations","features":[200]},{"name":"ISearchCatalogManager","features":[200]},{"name":"ISearchCatalogManager2","features":[200]},{"name":"ISearchCrawlScopeManager","features":[200]},{"name":"ISearchCrawlScopeManager2","features":[200]},{"name":"ISearchItemsChangedSink","features":[200]},{"name":"ISearchLanguageSupport","features":[200]},{"name":"ISearchManager","features":[200]},{"name":"ISearchManager2","features":[200]},{"name":"ISearchNotifyInlineSite","features":[200]},{"name":"ISearchPersistentItemsChangedSink","features":[200]},{"name":"ISearchProtocol","features":[200]},{"name":"ISearchProtocol2","features":[200]},{"name":"ISearchProtocolThreadContext","features":[200]},{"name":"ISearchQueryHelper","features":[200]},{"name":"ISearchQueryHits","features":[200]},{"name":"ISearchRoot","features":[200]},{"name":"ISearchScopeRule","features":[200]},{"name":"ISearchViewChangedSink","features":[200]},{"name":"ISecurityInfo","features":[200]},{"name":"IService","features":[200]},{"name":"ISessionProperties","features":[200]},{"name":"ISimpleCommandCreator","features":[200]},{"name":"ISourcesRowset","features":[200]},{"name":"IStemmer","features":[200]},{"name":"ISubscriptionItem","features":[200]},{"name":"ISubscriptionMgr","features":[200]},{"name":"ISubscriptionMgr2","features":[200]},{"name":"ITEMPROP","features":[3,43,200,44]},{"name":"ITEM_INFO","features":[200]},{"name":"ITableCreation","features":[200]},{"name":"ITableDefinition","features":[200]},{"name":"ITableDefinitionWithConstraints","features":[200]},{"name":"ITableRename","features":[200]},{"name":"ITokenCollection","features":[200]},{"name":"ITransactionJoin","features":[200]},{"name":"ITransactionLocal","features":[200]},{"name":"ITransactionObject","features":[200]},{"name":"ITrusteeAdmin","features":[200]},{"name":"ITrusteeGroupAdmin","features":[200]},{"name":"IUMS","features":[200]},{"name":"IUMSInitialize","features":[200]},{"name":"IUrlAccessor","features":[200]},{"name":"IUrlAccessor2","features":[200]},{"name":"IUrlAccessor3","features":[200]},{"name":"IUrlAccessor4","features":[200]},{"name":"IViewChapter","features":[200]},{"name":"IViewFilter","features":[200]},{"name":"IViewRowset","features":[200]},{"name":"IViewSort","features":[200]},{"name":"IWordBreaker","features":[200]},{"name":"IWordFormSink","features":[200]},{"name":"IWordSink","features":[200]},{"name":"Interval","features":[200]},{"name":"JET_GET_PROP_STORE_ERROR","features":[200]},{"name":"JET_INIT_ERROR","features":[200]},{"name":"JET_MULTIINSTANCE_DISABLED","features":[200]},{"name":"JET_NEW_PROP_STORE_ERROR","features":[200]},{"name":"JPS_E_CATALOG_DECSRIPTION_MISSING","features":[200]},{"name":"JPS_E_INSUFFICIENT_DATABASE_RESOURCES","features":[200]},{"name":"JPS_E_INSUFFICIENT_DATABASE_SESSIONS","features":[200]},{"name":"JPS_E_INSUFFICIENT_VERSION_STORAGE","features":[200]},{"name":"JPS_E_JET_ERR","features":[200]},{"name":"JPS_E_MISSING_INFORMATION","features":[200]},{"name":"JPS_E_PROPAGATION_CORRUPTION","features":[200]},{"name":"JPS_E_PROPAGATION_FILE","features":[200]},{"name":"JPS_E_PROPAGATION_VERSION_MISMATCH","features":[200]},{"name":"JPS_E_SCHEMA_ERROR","features":[200]},{"name":"JPS_E_SHARING_VIOLATION","features":[200]},{"name":"JPS_S_DUPLICATE_DOC_DETECTED","features":[200]},{"name":"KAGGETDIAG","features":[3,43,200,44]},{"name":"KAGPROPVAL_CONCUR_LOCK","features":[200]},{"name":"KAGPROPVAL_CONCUR_READ_ONLY","features":[200]},{"name":"KAGPROPVAL_CONCUR_ROWVER","features":[200]},{"name":"KAGPROPVAL_CONCUR_VALUES","features":[200]},{"name":"KAGPROP_ACCESSIBLEPROCEDURES","features":[200]},{"name":"KAGPROP_ACCESSIBLETABLES","features":[200]},{"name":"KAGPROP_ACTIVESTATEMENTS","features":[200]},{"name":"KAGPROP_AUTH_SERVERINTEGRATED","features":[200]},{"name":"KAGPROP_AUTH_TRUSTEDCONNECTION","features":[200]},{"name":"KAGPROP_BLOBSONFOCURSOR","features":[200]},{"name":"KAGPROP_CONCURRENCY","features":[200]},{"name":"KAGPROP_CURSOR","features":[200]},{"name":"KAGPROP_DRIVERNAME","features":[200]},{"name":"KAGPROP_DRIVERODBCVER","features":[200]},{"name":"KAGPROP_DRIVERVER","features":[200]},{"name":"KAGPROP_FILEUSAGE","features":[200]},{"name":"KAGPROP_FORCENOPARAMETERREBIND","features":[200]},{"name":"KAGPROP_FORCENOPREPARE","features":[200]},{"name":"KAGPROP_FORCENOREEXECUTE","features":[200]},{"name":"KAGPROP_FORCESSFIREHOSEMODE","features":[200]},{"name":"KAGPROP_INCLUDENONEXACT","features":[200]},{"name":"KAGPROP_IRowsetChangeExtInfo","features":[200]},{"name":"KAGPROP_LIKEESCAPECLAUSE","features":[200]},{"name":"KAGPROP_MARSHALLABLE","features":[200]},{"name":"KAGPROP_MAXCOLUMNSINGROUPBY","features":[200]},{"name":"KAGPROP_MAXCOLUMNSININDEX","features":[200]},{"name":"KAGPROP_MAXCOLUMNSINORDERBY","features":[200]},{"name":"KAGPROP_MAXCOLUMNSINSELECT","features":[200]},{"name":"KAGPROP_MAXCOLUMNSINTABLE","features":[200]},{"name":"KAGPROP_NUMERICFUNCTIONS","features":[200]},{"name":"KAGPROP_ODBCSQLCONFORMANCE","features":[200]},{"name":"KAGPROP_ODBCSQLOPTIEF","features":[200]},{"name":"KAGPROP_OJCAPABILITY","features":[200]},{"name":"KAGPROP_OUTERJOINS","features":[200]},{"name":"KAGPROP_POSITIONONNEWROW","features":[200]},{"name":"KAGPROP_PROCEDURES","features":[200]},{"name":"KAGPROP_QUERYBASEDUPDATES","features":[200]},{"name":"KAGPROP_SPECIALCHARACTERS","features":[200]},{"name":"KAGPROP_STRINGFUNCTIONS","features":[200]},{"name":"KAGPROP_SYSTEMFUNCTIONS","features":[200]},{"name":"KAGPROP_TIMEDATEFUNCTIONS","features":[200]},{"name":"KAGREQDIAG","features":[200,44]},{"name":"KAGREQDIAGFLAGSENUM","features":[200]},{"name":"KAGREQDIAGFLAGS_HEADER","features":[200]},{"name":"KAGREQDIAGFLAGS_RECORD","features":[200]},{"name":"LOCKMODEENUM","features":[200]},{"name":"LOCKMODE_EXCLUSIVE","features":[200]},{"name":"LOCKMODE_INVALID","features":[200]},{"name":"LOCKMODE_SHARED","features":[200]},{"name":"LeafCondition","features":[200]},{"name":"MAXNAME","features":[200]},{"name":"MAXNUMERICLEN","features":[200]},{"name":"MAXUSEVERITY","features":[200]},{"name":"MAX_QUERY_RANK","features":[200]},{"name":"MDAXISINFO","features":[200]},{"name":"MDAXISINFO","features":[200]},{"name":"MDAXIS_CHAPTERS","features":[200]},{"name":"MDAXIS_COLUMNS","features":[200]},{"name":"MDAXIS_PAGES","features":[200]},{"name":"MDAXIS_ROWS","features":[200]},{"name":"MDAXIS_SECTIONS","features":[200]},{"name":"MDAXIS_SLICERS","features":[200]},{"name":"MDDISPINFO_DRILLED_DOWN","features":[200]},{"name":"MDDISPINFO_PARENT_SAME_AS_PREV","features":[200]},{"name":"MDFF_BOLD","features":[200]},{"name":"MDFF_ITALIC","features":[200]},{"name":"MDFF_STRIKEOUT","features":[200]},{"name":"MDFF_UNDERLINE","features":[200]},{"name":"MDLEVEL_TYPE_ALL","features":[200]},{"name":"MDLEVEL_TYPE_CALCULATED","features":[200]},{"name":"MDLEVEL_TYPE_REGULAR","features":[200]},{"name":"MDLEVEL_TYPE_RESERVED1","features":[200]},{"name":"MDLEVEL_TYPE_TIME","features":[200]},{"name":"MDLEVEL_TYPE_TIME_DAYS","features":[200]},{"name":"MDLEVEL_TYPE_TIME_HALF_YEAR","features":[200]},{"name":"MDLEVEL_TYPE_TIME_HOURS","features":[200]},{"name":"MDLEVEL_TYPE_TIME_MINUTES","features":[200]},{"name":"MDLEVEL_TYPE_TIME_MONTHS","features":[200]},{"name":"MDLEVEL_TYPE_TIME_QUARTERS","features":[200]},{"name":"MDLEVEL_TYPE_TIME_SECONDS","features":[200]},{"name":"MDLEVEL_TYPE_TIME_UNDEFINED","features":[200]},{"name":"MDLEVEL_TYPE_TIME_WEEKS","features":[200]},{"name":"MDLEVEL_TYPE_TIME_YEARS","features":[200]},{"name":"MDLEVEL_TYPE_UNKNOWN","features":[200]},{"name":"MDMEASURE_AGGR_AVG","features":[200]},{"name":"MDMEASURE_AGGR_CALCULATED","features":[200]},{"name":"MDMEASURE_AGGR_COUNT","features":[200]},{"name":"MDMEASURE_AGGR_MAX","features":[200]},{"name":"MDMEASURE_AGGR_MIN","features":[200]},{"name":"MDMEASURE_AGGR_STD","features":[200]},{"name":"MDMEASURE_AGGR_SUM","features":[200]},{"name":"MDMEASURE_AGGR_UNKNOWN","features":[200]},{"name":"MDMEASURE_AGGR_VAR","features":[200]},{"name":"MDMEMBER_TYPE_ALL","features":[200]},{"name":"MDMEMBER_TYPE_FORMULA","features":[200]},{"name":"MDMEMBER_TYPE_MEASURE","features":[200]},{"name":"MDMEMBER_TYPE_REGULAR","features":[200]},{"name":"MDMEMBER_TYPE_RESERVE1","features":[200]},{"name":"MDMEMBER_TYPE_RESERVE2","features":[200]},{"name":"MDMEMBER_TYPE_RESERVE3","features":[200]},{"name":"MDMEMBER_TYPE_RESERVE4","features":[200]},{"name":"MDMEMBER_TYPE_UNKNOWN","features":[200]},{"name":"MDPROPVAL_AU_UNCHANGED","features":[200]},{"name":"MDPROPVAL_AU_UNKNOWN","features":[200]},{"name":"MDPROPVAL_AU_UNSUPPORTED","features":[200]},{"name":"MDPROPVAL_FS_FULL_SUPPORT","features":[200]},{"name":"MDPROPVAL_FS_GENERATED_COLUMN","features":[200]},{"name":"MDPROPVAL_FS_GENERATED_DIMENSION","features":[200]},{"name":"MDPROPVAL_FS_NO_SUPPORT","features":[200]},{"name":"MDPROPVAL_MC_SEARCHEDCASE","features":[200]},{"name":"MDPROPVAL_MC_SINGLECASE","features":[200]},{"name":"MDPROPVAL_MD_AFTER","features":[200]},{"name":"MDPROPVAL_MD_BEFORE","features":[200]},{"name":"MDPROPVAL_MD_SELF","features":[200]},{"name":"MDPROPVAL_MF_CREATE_CALCMEMBERS","features":[200]},{"name":"MDPROPVAL_MF_CREATE_NAMEDSETS","features":[200]},{"name":"MDPROPVAL_MF_SCOPE_GLOBAL","features":[200]},{"name":"MDPROPVAL_MF_SCOPE_SESSION","features":[200]},{"name":"MDPROPVAL_MF_WITH_CALCMEMBERS","features":[200]},{"name":"MDPROPVAL_MF_WITH_NAMEDSETS","features":[200]},{"name":"MDPROPVAL_MJC_IMPLICITCUBE","features":[200]},{"name":"MDPROPVAL_MJC_MULTICUBES","features":[200]},{"name":"MDPROPVAL_MJC_SINGLECUBE","features":[200]},{"name":"MDPROPVAL_MMF_CLOSINGPERIOD","features":[200]},{"name":"MDPROPVAL_MMF_COUSIN","features":[200]},{"name":"MDPROPVAL_MMF_OPENINGPERIOD","features":[200]},{"name":"MDPROPVAL_MMF_PARALLELPERIOD","features":[200]},{"name":"MDPROPVAL_MNF_AGGREGATE","features":[200]},{"name":"MDPROPVAL_MNF_CORRELATION","features":[200]},{"name":"MDPROPVAL_MNF_COVARIANCE","features":[200]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVEL","features":[200]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELBOTTOM","features":[200]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELTOP","features":[200]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERBOTTOM","features":[200]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERTOP","features":[200]},{"name":"MDPROPVAL_MNF_DRILLUPLEVEL","features":[200]},{"name":"MDPROPVAL_MNF_DRILLUPMEMBER","features":[200]},{"name":"MDPROPVAL_MNF_LINREG2","features":[200]},{"name":"MDPROPVAL_MNF_LINREGPOINT","features":[200]},{"name":"MDPROPVAL_MNF_LINREGSLOPE","features":[200]},{"name":"MDPROPVAL_MNF_LINREGVARIANCE","features":[200]},{"name":"MDPROPVAL_MNF_MEDIAN","features":[200]},{"name":"MDPROPVAL_MNF_RANK","features":[200]},{"name":"MDPROPVAL_MNF_STDDEV","features":[200]},{"name":"MDPROPVAL_MNF_VAR","features":[200]},{"name":"MDPROPVAL_MOQ_CATALOG_CUBE","features":[200]},{"name":"MDPROPVAL_MOQ_CUBE_DIM","features":[200]},{"name":"MDPROPVAL_MOQ_DATASOURCE_CUBE","features":[200]},{"name":"MDPROPVAL_MOQ_DIMHIER_LEVEL","features":[200]},{"name":"MDPROPVAL_MOQ_DIMHIER_MEMBER","features":[200]},{"name":"MDPROPVAL_MOQ_DIM_HIER","features":[200]},{"name":"MDPROPVAL_MOQ_LEVEL_MEMBER","features":[200]},{"name":"MDPROPVAL_MOQ_MEMBER_MEMBER","features":[200]},{"name":"MDPROPVAL_MOQ_OUTERREFERENCE","features":[200]},{"name":"MDPROPVAL_MOQ_SCHEMA_CUBE","features":[200]},{"name":"MDPROPVAL_MSC_GREATERTHAN","features":[200]},{"name":"MDPROPVAL_MSC_GREATERTHANEQUAL","features":[200]},{"name":"MDPROPVAL_MSC_LESSTHAN","features":[200]},{"name":"MDPROPVAL_MSC_LESSTHANEQUAL","features":[200]},{"name":"MDPROPVAL_MSF_BOTTOMPERCENT","features":[200]},{"name":"MDPROPVAL_MSF_BOTTOMSUM","features":[200]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVEL","features":[200]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELBOTTOM","features":[200]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELTOP","features":[200]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBBER","features":[200]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERBOTTOM","features":[200]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERTOP","features":[200]},{"name":"MDPROPVAL_MSF_DRILLUPLEVEL","features":[200]},{"name":"MDPROPVAL_MSF_DRILLUPMEMBER","features":[200]},{"name":"MDPROPVAL_MSF_LASTPERIODS","features":[200]},{"name":"MDPROPVAL_MSF_MTD","features":[200]},{"name":"MDPROPVAL_MSF_PERIODSTODATE","features":[200]},{"name":"MDPROPVAL_MSF_QTD","features":[200]},{"name":"MDPROPVAL_MSF_TOGGLEDRILLSTATE","features":[200]},{"name":"MDPROPVAL_MSF_TOPPERCENT","features":[200]},{"name":"MDPROPVAL_MSF_TOPSUM","features":[200]},{"name":"MDPROPVAL_MSF_WTD","features":[200]},{"name":"MDPROPVAL_MSF_YTD","features":[200]},{"name":"MDPROPVAL_MS_MULTIPLETUPLES","features":[200]},{"name":"MDPROPVAL_MS_SINGLETUPLE","features":[200]},{"name":"MDPROPVAL_NL_NAMEDLEVELS","features":[200]},{"name":"MDPROPVAL_NL_NUMBEREDLEVELS","features":[200]},{"name":"MDPROPVAL_NL_SCHEMAONLY","features":[200]},{"name":"MDPROPVAL_NME_ALLDIMENSIONS","features":[200]},{"name":"MDPROPVAL_NME_MEASURESONLY","features":[200]},{"name":"MDPROPVAL_RR_NORANGEROWSET","features":[200]},{"name":"MDPROPVAL_RR_READONLY","features":[200]},{"name":"MDPROPVAL_RR_UPDATE","features":[200]},{"name":"MDPROPVAL_VISUAL_MODE_DEFAULT","features":[200]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL","features":[200]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL_OFF","features":[200]},{"name":"MDPROP_AGGREGATECELL_UPDATE","features":[200]},{"name":"MDPROP_AXES","features":[200]},{"name":"MDPROP_CELL","features":[200]},{"name":"MDPROP_FLATTENING_SUPPORT","features":[200]},{"name":"MDPROP_MDX_AGGREGATECELL_UPDATE","features":[200]},{"name":"MDPROP_MDX_CASESUPPORT","features":[200]},{"name":"MDPROP_MDX_CUBEQUALIFICATION","features":[200]},{"name":"MDPROP_MDX_DESCFLAGS","features":[200]},{"name":"MDPROP_MDX_FORMULAS","features":[200]},{"name":"MDPROP_MDX_JOINCUBES","features":[200]},{"name":"MDPROP_MDX_MEMBER_FUNCTIONS","features":[200]},{"name":"MDPROP_MDX_NONMEASURE_EXPRESSIONS","features":[200]},{"name":"MDPROP_MDX_NUMERIC_FUNCTIONS","features":[200]},{"name":"MDPROP_MDX_OBJQUALIFICATION","features":[200]},{"name":"MDPROP_MDX_OUTERREFERENCE","features":[200]},{"name":"MDPROP_MDX_QUERYBYPROPERTY","features":[200]},{"name":"MDPROP_MDX_SET_FUNCTIONS","features":[200]},{"name":"MDPROP_MDX_SLICER","features":[200]},{"name":"MDPROP_MDX_STRING_COMPOP","features":[200]},{"name":"MDPROP_MEMBER","features":[200]},{"name":"MDPROP_NAMED_LEVELS","features":[200]},{"name":"MDPROP_RANGEROWSET","features":[200]},{"name":"MDPROP_VISUALMODE","features":[200]},{"name":"MDSTATUS_S_CELLEMPTY","features":[200]},{"name":"MDTREEOP_ANCESTORS","features":[200]},{"name":"MDTREEOP_CHILDREN","features":[200]},{"name":"MDTREEOP_DESCENDANTS","features":[200]},{"name":"MDTREEOP_PARENT","features":[200]},{"name":"MDTREEOP_SELF","features":[200]},{"name":"MDTREEOP_SIBLINGS","features":[200]},{"name":"MD_DIMTYPE_MEASURE","features":[200]},{"name":"MD_DIMTYPE_OTHER","features":[200]},{"name":"MD_DIMTYPE_TIME","features":[200]},{"name":"MD_DIMTYPE_UNKNOWN","features":[200]},{"name":"MD_E_BADCOORDINATE","features":[200]},{"name":"MD_E_BADTUPLE","features":[200]},{"name":"MD_E_INVALIDAXIS","features":[200]},{"name":"MD_E_INVALIDCELLRANGE","features":[200]},{"name":"MINFATALERR","features":[200]},{"name":"MIN_USER_DATATYPE","features":[200]},{"name":"MSDAINITIALIZE","features":[200]},{"name":"MSDAORA","features":[200]},{"name":"MSDAORA8","features":[200]},{"name":"MSDAORA8_ERROR","features":[200]},{"name":"MSDAORA_ERROR","features":[200]},{"name":"MSDSDBINITPROPENUM","features":[200]},{"name":"MSDSSESSIONPROPENUM","features":[200]},{"name":"MSG_CI_CORRUPT_INDEX_COMPONENT","features":[200]},{"name":"MSG_CI_CREATE_SEVER_ITEM_FAILED","features":[200]},{"name":"MSG_CI_MASTER_MERGE_ABORTED","features":[200]},{"name":"MSG_CI_MASTER_MERGE_ABORTED_LOW_DISK","features":[200]},{"name":"MSG_CI_MASTER_MERGE_CANT_RESTART","features":[200]},{"name":"MSG_CI_MASTER_MERGE_CANT_START","features":[200]},{"name":"MSG_CI_MASTER_MERGE_COMPLETED","features":[200]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXPECTED_DOCS","features":[200]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXTERNAL","features":[200]},{"name":"MSG_CI_MASTER_MERGE_REASON_INDEX_LIMIT","features":[200]},{"name":"MSG_CI_MASTER_MERGE_REASON_NUMBER","features":[200]},{"name":"MSG_CI_MASTER_MERGE_RESTARTED","features":[200]},{"name":"MSG_CI_MASTER_MERGE_STARTED","features":[200]},{"name":"MSG_TEST_MESSAGE","features":[200]},{"name":"MSS_E_APPALREADYEXISTS","features":[200]},{"name":"MSS_E_APPNOTFOUND","features":[200]},{"name":"MSS_E_CATALOGALREADYEXISTS","features":[200]},{"name":"MSS_E_CATALOGNOTFOUND","features":[200]},{"name":"MSS_E_CATALOGSTOPPING","features":[200]},{"name":"MSS_E_INVALIDAPPNAME","features":[200]},{"name":"MSS_E_UNICODEFILEHEADERMISSING","features":[200]},{"name":"MS_PERSIST_PROGID","features":[200]},{"name":"NAMED_ENTITY_CERTAINTY","features":[200]},{"name":"NATLANGUAGERESTRICTION","features":[146,65,200]},{"name":"NEC_HIGH","features":[200]},{"name":"NEC_LOW","features":[200]},{"name":"NEC_MEDIUM","features":[200]},{"name":"NET_E_DISCONNECTED","features":[200]},{"name":"NET_E_GENERAL","features":[200]},{"name":"NET_E_INVALIDPARAMS","features":[200]},{"name":"NET_E_OPERATIONINPROGRESS","features":[200]},{"name":"NLADMIN_E_BUILD_CATALOG_NOT_INITIALIZED","features":[200]},{"name":"NLADMIN_E_DUPLICATE_CATALOG","features":[200]},{"name":"NLADMIN_E_FAILED_TO_GIVE_ACCOUNT_PRIVILEGE","features":[200]},{"name":"NLADMIN_S_NOT_ALL_BUILD_CATALOGS_INITIALIZED","features":[200]},{"name":"NODERESTRICTION","features":[3,146,65,200,44]},{"name":"NOTESPH_E_ATTACHMENTS","features":[200]},{"name":"NOTESPH_E_DB_ACCESS_DENIED","features":[200]},{"name":"NOTESPH_E_FAIL","features":[200]},{"name":"NOTESPH_E_ITEM_NOT_FOUND","features":[200]},{"name":"NOTESPH_E_NOTESSETUP_ID_MAPPING_ERROR","features":[200]},{"name":"NOTESPH_E_NO_NTID","features":[200]},{"name":"NOTESPH_E_SERVER_CONFIG","features":[200]},{"name":"NOTESPH_E_UNEXPECTED_STATE","features":[200]},{"name":"NOTESPH_E_UNSUPPORTED_CONTENT_FIELD_TYPE","features":[200]},{"name":"NOTESPH_S_IGNORE_ID","features":[200]},{"name":"NOTESPH_S_LISTKNOWNFIELDS","features":[200]},{"name":"NOTRESTRICTION","features":[3,146,65,200,44]},{"name":"NOT_N_PARSE_ERROR","features":[200]},{"name":"NegationCondition","features":[200]},{"name":"OCC_INVALID","features":[200]},{"name":"ODBCGetTryWaitValue","features":[200]},{"name":"ODBCSetTryWaitValue","features":[3,200]},{"name":"ODBCVER","features":[200]},{"name":"ODBC_ADD_DSN","features":[200]},{"name":"ODBC_ADD_SYS_DSN","features":[200]},{"name":"ODBC_BOTH_DSN","features":[200]},{"name":"ODBC_CONFIG_DRIVER","features":[200]},{"name":"ODBC_CONFIG_DRIVER_MAX","features":[200]},{"name":"ODBC_CONFIG_DSN","features":[200]},{"name":"ODBC_CONFIG_SYS_DSN","features":[200]},{"name":"ODBC_ERROR_COMPONENT_NOT_FOUND","features":[200]},{"name":"ODBC_ERROR_CREATE_DSN_FAILED","features":[200]},{"name":"ODBC_ERROR_GENERAL_ERR","features":[200]},{"name":"ODBC_ERROR_INVALID_BUFF_LEN","features":[200]},{"name":"ODBC_ERROR_INVALID_DSN","features":[200]},{"name":"ODBC_ERROR_INVALID_HWND","features":[200]},{"name":"ODBC_ERROR_INVALID_INF","features":[200]},{"name":"ODBC_ERROR_INVALID_KEYWORD_VALUE","features":[200]},{"name":"ODBC_ERROR_INVALID_LOG_FILE","features":[200]},{"name":"ODBC_ERROR_INVALID_NAME","features":[200]},{"name":"ODBC_ERROR_INVALID_PARAM_SEQUENCE","features":[200]},{"name":"ODBC_ERROR_INVALID_PATH","features":[200]},{"name":"ODBC_ERROR_INVALID_REQUEST_TYPE","features":[200]},{"name":"ODBC_ERROR_INVALID_STR","features":[200]},{"name":"ODBC_ERROR_LOAD_LIB_FAILED","features":[200]},{"name":"ODBC_ERROR_MAX","features":[200]},{"name":"ODBC_ERROR_NOTRANINFO","features":[200]},{"name":"ODBC_ERROR_OUTPUT_STRING_TRUNCATED","features":[200]},{"name":"ODBC_ERROR_OUT_OF_MEM","features":[200]},{"name":"ODBC_ERROR_REMOVE_DSN_FAILED","features":[200]},{"name":"ODBC_ERROR_REQUEST_FAILED","features":[200]},{"name":"ODBC_ERROR_USAGE_UPDATE_FAILED","features":[200]},{"name":"ODBC_ERROR_USER_CANCELED","features":[200]},{"name":"ODBC_ERROR_WRITING_SYSINFO_FAILED","features":[200]},{"name":"ODBC_INSTALL_COMPLETE","features":[200]},{"name":"ODBC_INSTALL_DRIVER","features":[200]},{"name":"ODBC_INSTALL_INQUIRY","features":[200]},{"name":"ODBC_REMOVE_DEFAULT_DSN","features":[200]},{"name":"ODBC_REMOVE_DRIVER","features":[200]},{"name":"ODBC_REMOVE_DSN","features":[200]},{"name":"ODBC_REMOVE_SYS_DSN","features":[200]},{"name":"ODBC_SYSTEM_DSN","features":[200]},{"name":"ODBC_USER_DSN","features":[200]},{"name":"ODBC_VS_ARGS","features":[200]},{"name":"ODBC_VS_FLAG_RETCODE","features":[200]},{"name":"ODBC_VS_FLAG_STOP","features":[200]},{"name":"ODBC_VS_FLAG_UNICODE_ARG","features":[200]},{"name":"ODBC_VS_FLAG_UNICODE_COR","features":[200]},{"name":"OLEDBSimpleProvider","features":[200]},{"name":"OLEDBSimpleProviderListener","features":[200]},{"name":"OLEDBVER","features":[200]},{"name":"OLEDB_BINDER_CUSTOM_ERROR","features":[200]},{"name":"OSPCOMP","features":[200]},{"name":"OSPCOMP_DEFAULT","features":[200]},{"name":"OSPCOMP_EQ","features":[200]},{"name":"OSPCOMP_GE","features":[200]},{"name":"OSPCOMP_GT","features":[200]},{"name":"OSPCOMP_LE","features":[200]},{"name":"OSPCOMP_LT","features":[200]},{"name":"OSPCOMP_NE","features":[200]},{"name":"OSPFIND","features":[200]},{"name":"OSPFIND_CASESENSITIVE","features":[200]},{"name":"OSPFIND_DEFAULT","features":[200]},{"name":"OSPFIND_UP","features":[200]},{"name":"OSPFIND_UPCASESENSITIVE","features":[200]},{"name":"OSPFORMAT","features":[200]},{"name":"OSPFORMAT_DEFAULT","features":[200]},{"name":"OSPFORMAT_FORMATTED","features":[200]},{"name":"OSPFORMAT_HTML","features":[200]},{"name":"OSPFORMAT_RAW","features":[200]},{"name":"OSPRW","features":[200]},{"name":"OSPRW_DEFAULT","features":[200]},{"name":"OSPRW_MIXED","features":[200]},{"name":"OSPRW_READONLY","features":[200]},{"name":"OSPRW_READWRITE","features":[200]},{"name":"OSPXFER","features":[200]},{"name":"OSPXFER_ABORT","features":[200]},{"name":"OSPXFER_COMPLETE","features":[200]},{"name":"OSPXFER_ERROR","features":[200]},{"name":"OSP_IndexLabel","features":[200]},{"name":"PDPO","features":[200]},{"name":"PEOPLE_IMPORT_E_CANONICALURL_TOOLONG","features":[200]},{"name":"PEOPLE_IMPORT_E_DATATYPENOTSUPPORTED","features":[200]},{"name":"PEOPLE_IMPORT_E_DBCONNFAIL","features":[200]},{"name":"PEOPLE_IMPORT_E_DC_NOT_AVAILABLE","features":[200]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_NOTREFRESHED","features":[200]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_ZERO_COOKIE","features":[200]},{"name":"PEOPLE_IMPORT_E_DOMAIN_DISCOVER_FAILED","features":[200]},{"name":"PEOPLE_IMPORT_E_DOMAIN_REMOVED","features":[200]},{"name":"PEOPLE_IMPORT_E_ENUM_ACCESSDENIED","features":[200]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSDEF","features":[200]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSMAPPING","features":[200]},{"name":"PEOPLE_IMPORT_E_FAILTOGETLCID","features":[200]},{"name":"PEOPLE_IMPORT_E_LDAPPATH_TOOLONG","features":[200]},{"name":"PEOPLE_IMPORT_E_NOCASTINGSUPPORTED","features":[200]},{"name":"PEOPLE_IMPORT_E_UPDATE_DIRSYNC_COOKIE","features":[200]},{"name":"PEOPLE_IMPORT_E_USERNAME_NOTRESOLVED","features":[200]},{"name":"PEOPLE_IMPORT_NODSDEFINED","features":[200]},{"name":"PEOPLE_IMPORT_NOMAPPINGDEFINED","features":[200]},{"name":"PERM_ALL","features":[200]},{"name":"PERM_CREATE","features":[200]},{"name":"PERM_DELETE","features":[200]},{"name":"PERM_DROP","features":[200]},{"name":"PERM_EXCLUSIVE","features":[200]},{"name":"PERM_EXECUTE","features":[200]},{"name":"PERM_INSERT","features":[200]},{"name":"PERM_MAXIMUM_ALLOWED","features":[200]},{"name":"PERM_READ","features":[200]},{"name":"PERM_READCONTROL","features":[200]},{"name":"PERM_READDESIGN","features":[200]},{"name":"PERM_REFERENCE","features":[200]},{"name":"PERM_UPDATE","features":[200]},{"name":"PERM_WITHGRANT","features":[200]},{"name":"PERM_WRITEDESIGN","features":[200]},{"name":"PERM_WRITEOWNER","features":[200]},{"name":"PERM_WRITEPERMISSIONS","features":[200]},{"name":"PFNFILLTEXTBUFFER","features":[200]},{"name":"PRAll","features":[200]},{"name":"PRAllBits","features":[200]},{"name":"PRAny","features":[200]},{"name":"PRIORITIZE_FLAGS","features":[200]},{"name":"PRIORITIZE_FLAG_IGNOREFAILURECOUNT","features":[200]},{"name":"PRIORITIZE_FLAG_RETRYFAILEDITEMS","features":[200]},{"name":"PRIORITY_LEVEL","features":[200]},{"name":"PRIORITY_LEVEL_DEFAULT","features":[200]},{"name":"PRIORITY_LEVEL_FOREGROUND","features":[200]},{"name":"PRIORITY_LEVEL_HIGH","features":[200]},{"name":"PRIORITY_LEVEL_LOW","features":[200]},{"name":"PROGID_MSPersist_Version_W","features":[200]},{"name":"PROGID_MSPersist_W","features":[200]},{"name":"PROPERTYRESTRICTION","features":[3,146,65,200,44]},{"name":"PROPID_DBBMK_BOOKMARK","features":[200]},{"name":"PROPID_DBBMK_CHAPTER","features":[200]},{"name":"PROPID_DBSELF_SELF","features":[200]},{"name":"PROXY_ACCESS","features":[200]},{"name":"PROXY_ACCESS_DIRECT","features":[200]},{"name":"PROXY_ACCESS_PRECONFIG","features":[200]},{"name":"PROXY_ACCESS_PROXY","features":[200]},{"name":"PROXY_INFO","features":[3,200]},{"name":"PRRE","features":[200]},{"name":"PRSomeBits","features":[200]},{"name":"PRTH_E_ACCESS_DENIED","features":[200]},{"name":"PRTH_E_ACL_IS_READ_NONE","features":[200]},{"name":"PRTH_E_ACL_TOO_BIG","features":[200]},{"name":"PRTH_E_BAD_REQUEST","features":[200]},{"name":"PRTH_E_CANT_TRANSFORM_DENIED_ACE","features":[200]},{"name":"PRTH_E_CANT_TRANSFORM_EXTERNAL_ACL","features":[200]},{"name":"PRTH_E_COMM_ERROR","features":[200]},{"name":"PRTH_E_DATABASE_OPEN_ERROR","features":[200]},{"name":"PRTH_E_HTTPS_CERTIFICATE_ERROR","features":[200]},{"name":"PRTH_E_HTTPS_REQUIRE_CERTIFICATE","features":[200]},{"name":"PRTH_E_HTTP_CANNOT_CONNECT","features":[200]},{"name":"PRTH_E_INIT_FAILED","features":[200]},{"name":"PRTH_E_INTERNAL_ERROR","features":[200]},{"name":"PRTH_E_LOAD_FAILED","features":[200]},{"name":"PRTH_E_MIME_EXCLUDED","features":[200]},{"name":"PRTH_E_NOT_REDIRECTED","features":[200]},{"name":"PRTH_E_NO_PROPERTY","features":[200]},{"name":"PRTH_E_OBJ_NOT_FOUND","features":[200]},{"name":"PRTH_E_OPLOCK_BROKEN","features":[200]},{"name":"PRTH_E_REQUEST_ERROR","features":[200]},{"name":"PRTH_E_RETRY","features":[200]},{"name":"PRTH_E_SERVER_ERROR","features":[200]},{"name":"PRTH_E_TRUNCATED","features":[200]},{"name":"PRTH_E_VOLUME_MOUNT_POINT","features":[200]},{"name":"PRTH_E_WININET","features":[200]},{"name":"PRTH_S_ACL_IS_READ_EVERYONE","features":[200]},{"name":"PRTH_S_MAX_DOWNLOAD","features":[200]},{"name":"PRTH_S_MAX_GROWTH","features":[200]},{"name":"PRTH_S_NOT_ALL_PARTS","features":[200]},{"name":"PRTH_S_NOT_MODIFIED","features":[200]},{"name":"PRTH_S_TRY_IMPERSONATING","features":[200]},{"name":"PRTH_S_USE_ROSEBUD","features":[200]},{"name":"PSGUID_CHARACTERIZATION","features":[200]},{"name":"PSGUID_QUERY_METADATA","features":[200]},{"name":"PSGUID_STORAGE","features":[200]},{"name":"PWPROP_OSPVALUE","features":[200]},{"name":"QPMO_APPEND_LCID_TO_LOCALIZED_PATH","features":[200]},{"name":"QPMO_LOCALIZED_SCHEMA_BINARY_PATH","features":[200]},{"name":"QPMO_LOCALIZER_SUPPORT","features":[200]},{"name":"QPMO_PRELOCALIZED_SCHEMA_BINARY_PATH","features":[200]},{"name":"QPMO_SCHEMA_BINARY_NAME","features":[200]},{"name":"QPMO_UNLOCALIZED_SCHEMA_BINARY_PATH","features":[200]},{"name":"QRY_E_COLUMNNOTSEARCHABLE","features":[200]},{"name":"QRY_E_COLUMNNOTSORTABLE","features":[200]},{"name":"QRY_E_ENGINEFAILED","features":[200]},{"name":"QRY_E_INFIXWILDCARD","features":[200]},{"name":"QRY_E_INVALIDCATALOG","features":[200]},{"name":"QRY_E_INVALIDCOLUMN","features":[200]},{"name":"QRY_E_INVALIDINTERVAL","features":[200]},{"name":"QRY_E_INVALIDPATH","features":[200]},{"name":"QRY_E_INVALIDSCOPES","features":[200]},{"name":"QRY_E_LMNOTINITIALIZED","features":[200]},{"name":"QRY_E_NOCOLUMNS","features":[200]},{"name":"QRY_E_NODATASOURCES","features":[200]},{"name":"QRY_E_NOLOGMANAGER","features":[200]},{"name":"QRY_E_NULLQUERY","features":[200]},{"name":"QRY_E_PREFIXWILDCARD","features":[200]},{"name":"QRY_E_QUERYCORRUPT","features":[200]},{"name":"QRY_E_QUERYSYNTAX","features":[200]},{"name":"QRY_E_SCOPECARDINALIDY","features":[200]},{"name":"QRY_E_SEARCHTOOBIG","features":[200]},{"name":"QRY_E_STARTHITTOBIG","features":[200]},{"name":"QRY_E_TIMEOUT","features":[200]},{"name":"QRY_E_TOOMANYCOLUMNS","features":[200]},{"name":"QRY_E_TOOMANYDATABASES","features":[200]},{"name":"QRY_E_TOOMANYQUERYTERMS","features":[200]},{"name":"QRY_E_TYPEMISMATCH","features":[200]},{"name":"QRY_E_UNEXPECTED","features":[200]},{"name":"QRY_E_UNHANDLEDTYPE","features":[200]},{"name":"QRY_E_WILDCARDPREFIXLENGTH","features":[200]},{"name":"QRY_S_INEXACTRESULTS","features":[200]},{"name":"QRY_S_NOROWSFOUND","features":[200]},{"name":"QRY_S_TERMIGNORED","features":[200]},{"name":"QUERY_E_AGGREGATE_NOT_SUPPORTED","features":[200]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELDOC","features":[200]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELPROP","features":[200]},{"name":"QUERY_E_DUPLICATE_RANGE_NAME","features":[200]},{"name":"QUERY_E_INCORRECT_VERSION","features":[200]},{"name":"QUERY_E_INVALIDCOALESCE","features":[200]},{"name":"QUERY_E_INVALIDSCOPE_COALESCE","features":[200]},{"name":"QUERY_E_INVALIDSORT_COALESCE","features":[200]},{"name":"QUERY_E_INVALID_DOCUMENT_IDENTIFIER","features":[200]},{"name":"QUERY_E_NO_RELDOC","features":[200]},{"name":"QUERY_E_NO_RELPROP","features":[200]},{"name":"QUERY_E_RELDOC_SYNTAX_NOT_SUPPORTED","features":[200]},{"name":"QUERY_E_REPEATED_RELDOC","features":[200]},{"name":"QUERY_E_TOP_LEVEL_IN_GROUP","features":[200]},{"name":"QUERY_E_UPGRADEINPROGRESS","features":[200]},{"name":"QUERY_PARSER_MANAGER_OPTION","features":[200]},{"name":"QUERY_SORTDEFAULT","features":[200]},{"name":"QUERY_SORTXASCEND","features":[200]},{"name":"QUERY_SORTXDESCEND","features":[200]},{"name":"QUERY_VALIDBITS","features":[200]},{"name":"QueryParser","features":[200]},{"name":"QueryParserManager","features":[200]},{"name":"RANGECATEGORIZE","features":[3,65,200,44]},{"name":"RESTRICTION","features":[3,146,65,200,44]},{"name":"REXSPH_E_DUPLICATE_PROPERTY","features":[200]},{"name":"REXSPH_E_INVALID_CALL","features":[200]},{"name":"REXSPH_E_MULTIPLE_REDIRECT","features":[200]},{"name":"REXSPH_E_NO_PROPERTY_ON_ROW","features":[200]},{"name":"REXSPH_E_REDIRECT_ON_SECURITY_UPDATE","features":[200]},{"name":"REXSPH_E_TYPE_MISMATCH_ON_READ","features":[200]},{"name":"REXSPH_E_UNEXPECTED_DATA_STATUS","features":[200]},{"name":"REXSPH_E_UNEXPECTED_FILTER_STATE","features":[200]},{"name":"REXSPH_E_UNKNOWN_DATA_TYPE","features":[200]},{"name":"REXSPH_S_REDIRECTED","features":[200]},{"name":"RMTPACK","features":[3,65,200,44]},{"name":"RMTPACK","features":[3,65,200,44]},{"name":"ROWSETEVENT_ITEMSTATE","features":[200]},{"name":"ROWSETEVENT_ITEMSTATE_INROWSET","features":[200]},{"name":"ROWSETEVENT_ITEMSTATE_NOTINROWSET","features":[200]},{"name":"ROWSETEVENT_ITEMSTATE_UNKNOWN","features":[200]},{"name":"ROWSETEVENT_TYPE","features":[200]},{"name":"ROWSETEVENT_TYPE_DATAEXPIRED","features":[200]},{"name":"ROWSETEVENT_TYPE_FOREGROUNDLOST","features":[200]},{"name":"ROWSETEVENT_TYPE_SCOPESTATISTICS","features":[200]},{"name":"RS_COMPLETED","features":[200]},{"name":"RS_MAYBOTHERUSER","features":[200]},{"name":"RS_READY","features":[200]},{"name":"RS_SUSPENDED","features":[200]},{"name":"RS_SUSPENDONIDLE","features":[200]},{"name":"RS_UPDATING","features":[200]},{"name":"RTAnd","features":[200]},{"name":"RTContent","features":[200]},{"name":"RTNatLanguage","features":[200]},{"name":"RTNone","features":[200]},{"name":"RTNot","features":[200]},{"name":"RTOr","features":[200]},{"name":"RTProperty","features":[200]},{"name":"RTProximity","features":[200]},{"name":"RTVector","features":[200]},{"name":"RootBinder","features":[200]},{"name":"SCHEMA_E_ADDSTOPWORDS","features":[200]},{"name":"SCHEMA_E_BADATTRIBUTE","features":[200]},{"name":"SCHEMA_E_BADCOLUMNNAME","features":[200]},{"name":"SCHEMA_E_BADFILENAME","features":[200]},{"name":"SCHEMA_E_BADPROPPID","features":[200]},{"name":"SCHEMA_E_BADPROPSPEC","features":[200]},{"name":"SCHEMA_E_CANNOTCREATEFILE","features":[200]},{"name":"SCHEMA_E_CANNOTCREATENOISEWORDFILE","features":[200]},{"name":"SCHEMA_E_CANNOTWRITEFILE","features":[200]},{"name":"SCHEMA_E_DUPLICATENOISE","features":[200]},{"name":"SCHEMA_E_EMPTYFILE","features":[200]},{"name":"SCHEMA_E_FILECHANGED","features":[200]},{"name":"SCHEMA_E_FILENOTFOUND","features":[200]},{"name":"SCHEMA_E_INVALIDDATATYPE","features":[200]},{"name":"SCHEMA_E_INVALIDFILETYPE","features":[200]},{"name":"SCHEMA_E_INVALIDVALUE","features":[200]},{"name":"SCHEMA_E_LOAD_SPECIAL","features":[200]},{"name":"SCHEMA_E_NAMEEXISTS","features":[200]},{"name":"SCHEMA_E_NESTEDTAG","features":[200]},{"name":"SCHEMA_E_NOMORECOLUMNS","features":[200]},{"name":"SCHEMA_E_PROPEXISTS","features":[200]},{"name":"SCHEMA_E_UNEXPECTEDTAG","features":[200]},{"name":"SCHEMA_E_VERSIONMISMATCH","features":[200]},{"name":"SCRIPTPI_E_ALREADY_COMPLETED","features":[200]},{"name":"SCRIPTPI_E_CANNOT_ALTER_CHUNK","features":[200]},{"name":"SCRIPTPI_E_CHUNK_NOT_TEXT","features":[200]},{"name":"SCRIPTPI_E_CHUNK_NOT_VALUE","features":[200]},{"name":"SCRIPTPI_E_PID_NOT_NAME","features":[200]},{"name":"SCRIPTPI_E_PID_NOT_NUMERIC","features":[200]},{"name":"SEARCH_ADVANCED_QUERY_SYNTAX","features":[200]},{"name":"SEARCH_CHANGE_ADD","features":[200]},{"name":"SEARCH_CHANGE_DELETE","features":[200]},{"name":"SEARCH_CHANGE_MODIFY","features":[200]},{"name":"SEARCH_CHANGE_MOVE_RENAME","features":[200]},{"name":"SEARCH_CHANGE_SEMANTICS_DIRECTORY","features":[200]},{"name":"SEARCH_CHANGE_SEMANTICS_SHALLOW","features":[200]},{"name":"SEARCH_CHANGE_SEMANTICS_UPDATE_SECURITY","features":[200]},{"name":"SEARCH_COLUMN_PROPERTIES","features":[3,65,200,44]},{"name":"SEARCH_HIGH_PRIORITY","features":[200]},{"name":"SEARCH_INDEXING_PHASE","features":[200]},{"name":"SEARCH_INDEXING_PHASE_GATHERER","features":[200]},{"name":"SEARCH_INDEXING_PHASE_PERSISTED","features":[200]},{"name":"SEARCH_INDEXING_PHASE_QUERYABLE","features":[200]},{"name":"SEARCH_ITEM_CHANGE","features":[43,200]},{"name":"SEARCH_ITEM_INDEXING_STATUS","features":[200]},{"name":"SEARCH_ITEM_PERSISTENT_CHANGE","features":[200]},{"name":"SEARCH_KIND_OF_CHANGE","features":[200]},{"name":"SEARCH_NATURAL_QUERY_SYNTAX","features":[200]},{"name":"SEARCH_NORMAL_PRIORITY","features":[200]},{"name":"SEARCH_NOTIFICATION_PRIORITY","features":[200]},{"name":"SEARCH_NO_QUERY_SYNTAX","features":[200]},{"name":"SEARCH_QUERY_SYNTAX","features":[200]},{"name":"SEARCH_TERM_EXPANSION","features":[200]},{"name":"SEARCH_TERM_NO_EXPANSION","features":[200]},{"name":"SEARCH_TERM_PREFIX_ALL","features":[200]},{"name":"SEARCH_TERM_STEM_ALL","features":[200]},{"name":"SEC_E_ACCESSDENIED","features":[200]},{"name":"SEC_E_BADTRUSTEEID","features":[200]},{"name":"SEC_E_INITFAILED","features":[200]},{"name":"SEC_E_INVALIDACCESSENTRY","features":[200]},{"name":"SEC_E_INVALIDACCESSENTRYLIST","features":[200]},{"name":"SEC_E_INVALIDCONTEXT","features":[200]},{"name":"SEC_E_INVALIDOBJECT","features":[200]},{"name":"SEC_E_INVALIDOWNER","features":[200]},{"name":"SEC_E_NOMEMBERSHIPSUPPORT","features":[200]},{"name":"SEC_E_NOOWNER","features":[200]},{"name":"SEC_E_NOTINITIALIZED","features":[200]},{"name":"SEC_E_NOTRUSTEEID","features":[200]},{"name":"SEC_E_PERMISSIONDENIED","features":[200]},{"name":"SEC_OBJECT","features":[146,200]},{"name":"SEC_OBJECT","features":[146,200]},{"name":"SEC_OBJECT_ELEMENT","features":[146,200]},{"name":"SEC_OBJECT_ELEMENT","features":[146,200]},{"name":"SI_TEMPORARY","features":[200]},{"name":"SORTKEY","features":[146,65,200]},{"name":"SORTSET","features":[146,65,200]},{"name":"SPS_WS_ERROR","features":[200]},{"name":"SQLAOPANY","features":[200]},{"name":"SQLAOPAVG","features":[200]},{"name":"SQLAOPCNT","features":[200]},{"name":"SQLAOPMAX","features":[200]},{"name":"SQLAOPMIN","features":[200]},{"name":"SQLAOPNOOP","features":[200]},{"name":"SQLAOPSTDEV","features":[200]},{"name":"SQLAOPSTDEVP","features":[200]},{"name":"SQLAOPSUM","features":[200]},{"name":"SQLAOPVAR","features":[200]},{"name":"SQLAOPVARP","features":[200]},{"name":"SQLAllocConnect","features":[200]},{"name":"SQLAllocEnv","features":[200]},{"name":"SQLAllocHandle","features":[200]},{"name":"SQLAllocHandleStd","features":[200]},{"name":"SQLAllocStmt","features":[200]},{"name":"SQLBIGBINARY","features":[200]},{"name":"SQLBIGCHAR","features":[200]},{"name":"SQLBIGVARBINARY","features":[200]},{"name":"SQLBIGVARCHAR","features":[200]},{"name":"SQLBINARY","features":[200]},{"name":"SQLBIT","features":[200]},{"name":"SQLBITN","features":[200]},{"name":"SQLBindCol","features":[200]},{"name":"SQLBindCol","features":[200]},{"name":"SQLBindParam","features":[200]},{"name":"SQLBindParam","features":[200]},{"name":"SQLBindParameter","features":[200]},{"name":"SQLBindParameter","features":[200]},{"name":"SQLBrowseConnect","features":[200]},{"name":"SQLBrowseConnectA","features":[200]},{"name":"SQLBrowseConnectW","features":[200]},{"name":"SQLBulkOperations","features":[200]},{"name":"SQLCHARACTER","features":[200]},{"name":"SQLCancel","features":[200]},{"name":"SQLCancelHandle","features":[200]},{"name":"SQLCloseCursor","features":[200]},{"name":"SQLCloseEnumServers","features":[3,200]},{"name":"SQLColAttribute","features":[200]},{"name":"SQLColAttribute","features":[200]},{"name":"SQLColAttributeA","features":[200]},{"name":"SQLColAttributeA","features":[200]},{"name":"SQLColAttributeW","features":[200]},{"name":"SQLColAttributeW","features":[200]},{"name":"SQLColAttributes","features":[200]},{"name":"SQLColAttributes","features":[200]},{"name":"SQLColAttributesA","features":[200]},{"name":"SQLColAttributesA","features":[200]},{"name":"SQLColAttributesW","features":[200]},{"name":"SQLColAttributesW","features":[200]},{"name":"SQLColumnPrivileges","features":[200]},{"name":"SQLColumnPrivilegesA","features":[200]},{"name":"SQLColumnPrivilegesW","features":[200]},{"name":"SQLColumns","features":[200]},{"name":"SQLColumnsA","features":[200]},{"name":"SQLColumnsW","features":[200]},{"name":"SQLCompleteAsync","features":[200]},{"name":"SQLConnect","features":[200]},{"name":"SQLConnectA","features":[200]},{"name":"SQLConnectW","features":[200]},{"name":"SQLCopyDesc","features":[200]},{"name":"SQLDATETIM4","features":[200]},{"name":"SQLDATETIME","features":[200]},{"name":"SQLDATETIMN","features":[200]},{"name":"SQLDECIMAL","features":[200]},{"name":"SQLDECIMALN","features":[200]},{"name":"SQLDataSources","features":[200]},{"name":"SQLDataSourcesA","features":[200]},{"name":"SQLDataSourcesW","features":[200]},{"name":"SQLDescribeCol","features":[200]},{"name":"SQLDescribeCol","features":[200]},{"name":"SQLDescribeColA","features":[200]},{"name":"SQLDescribeColA","features":[200]},{"name":"SQLDescribeColW","features":[200]},{"name":"SQLDescribeColW","features":[200]},{"name":"SQLDescribeParam","features":[200]},{"name":"SQLDescribeParam","features":[200]},{"name":"SQLDisconnect","features":[200]},{"name":"SQLDriverConnect","features":[200]},{"name":"SQLDriverConnectA","features":[200]},{"name":"SQLDriverConnectW","features":[200]},{"name":"SQLDrivers","features":[200]},{"name":"SQLDriversA","features":[200]},{"name":"SQLDriversW","features":[200]},{"name":"SQLEndTran","features":[200]},{"name":"SQLError","features":[200]},{"name":"SQLErrorA","features":[200]},{"name":"SQLErrorW","features":[200]},{"name":"SQLExecDirect","features":[200]},{"name":"SQLExecDirectA","features":[200]},{"name":"SQLExecDirectW","features":[200]},{"name":"SQLExecute","features":[200]},{"name":"SQLExtendedFetch","features":[200]},{"name":"SQLExtendedFetch","features":[200]},{"name":"SQLFLT4","features":[200]},{"name":"SQLFLT8","features":[200]},{"name":"SQLFLTN","features":[200]},{"name":"SQLFetch","features":[200]},{"name":"SQLFetchScroll","features":[200]},{"name":"SQLFetchScroll","features":[200]},{"name":"SQLForeignKeys","features":[200]},{"name":"SQLForeignKeysA","features":[200]},{"name":"SQLForeignKeysW","features":[200]},{"name":"SQLFreeConnect","features":[200]},{"name":"SQLFreeEnv","features":[200]},{"name":"SQLFreeHandle","features":[200]},{"name":"SQLFreeStmt","features":[200]},{"name":"SQLGetConnectAttr","features":[200]},{"name":"SQLGetConnectAttrA","features":[200]},{"name":"SQLGetConnectAttrW","features":[200]},{"name":"SQLGetConnectOption","features":[200]},{"name":"SQLGetConnectOptionA","features":[200]},{"name":"SQLGetConnectOptionW","features":[200]},{"name":"SQLGetCursorName","features":[200]},{"name":"SQLGetCursorNameA","features":[200]},{"name":"SQLGetCursorNameW","features":[200]},{"name":"SQLGetData","features":[200]},{"name":"SQLGetData","features":[200]},{"name":"SQLGetDescField","features":[200]},{"name":"SQLGetDescFieldA","features":[200]},{"name":"SQLGetDescFieldW","features":[200]},{"name":"SQLGetDescRec","features":[200]},{"name":"SQLGetDescRec","features":[200]},{"name":"SQLGetDescRecA","features":[200]},{"name":"SQLGetDescRecA","features":[200]},{"name":"SQLGetDescRecW","features":[200]},{"name":"SQLGetDescRecW","features":[200]},{"name":"SQLGetDiagField","features":[200]},{"name":"SQLGetDiagFieldA","features":[200]},{"name":"SQLGetDiagFieldW","features":[200]},{"name":"SQLGetDiagRec","features":[200]},{"name":"SQLGetDiagRecA","features":[200]},{"name":"SQLGetDiagRecW","features":[200]},{"name":"SQLGetEnvAttr","features":[200]},{"name":"SQLGetFunctions","features":[200]},{"name":"SQLGetInfo","features":[200]},{"name":"SQLGetInfoA","features":[200]},{"name":"SQLGetInfoW","features":[200]},{"name":"SQLGetNextEnumeration","features":[3,200]},{"name":"SQLGetStmtAttr","features":[200]},{"name":"SQLGetStmtAttrA","features":[200]},{"name":"SQLGetStmtAttrW","features":[200]},{"name":"SQLGetStmtOption","features":[200]},{"name":"SQLGetTypeInfo","features":[200]},{"name":"SQLGetTypeInfoA","features":[200]},{"name":"SQLGetTypeInfoW","features":[200]},{"name":"SQLIMAGE","features":[200]},{"name":"SQLINT1","features":[200]},{"name":"SQLINT2","features":[200]},{"name":"SQLINT4","features":[200]},{"name":"SQLINT8","features":[200]},{"name":"SQLINTERVAL","features":[200]},{"name":"SQLINTN","features":[200]},{"name":"SQLInitEnumServers","features":[3,200]},{"name":"SQLLinkedCatalogsA","features":[200]},{"name":"SQLLinkedCatalogsW","features":[200]},{"name":"SQLLinkedServers","features":[200]},{"name":"SQLMONEY","features":[200]},{"name":"SQLMONEY4","features":[200]},{"name":"SQLMONEYN","features":[200]},{"name":"SQLMoreResults","features":[200]},{"name":"SQLNCHAR","features":[200]},{"name":"SQLNTEXT","features":[200]},{"name":"SQLNUMERIC","features":[200]},{"name":"SQLNUMERICN","features":[200]},{"name":"SQLNVARCHAR","features":[200]},{"name":"SQLNativeSql","features":[200]},{"name":"SQLNativeSqlA","features":[200]},{"name":"SQLNativeSqlW","features":[200]},{"name":"SQLNumParams","features":[200]},{"name":"SQLNumResultCols","features":[200]},{"name":"SQLPERF","features":[200]},{"name":"SQLParamData","features":[200]},{"name":"SQLParamOptions","features":[200]},{"name":"SQLParamOptions","features":[200]},{"name":"SQLPrepare","features":[200]},{"name":"SQLPrepareA","features":[200]},{"name":"SQLPrepareW","features":[200]},{"name":"SQLPrimaryKeys","features":[200]},{"name":"SQLPrimaryKeysA","features":[200]},{"name":"SQLPrimaryKeysW","features":[200]},{"name":"SQLProcedureColumns","features":[200]},{"name":"SQLProcedureColumnsA","features":[200]},{"name":"SQLProcedureColumnsW","features":[200]},{"name":"SQLProcedures","features":[200]},{"name":"SQLProceduresA","features":[200]},{"name":"SQLProceduresW","features":[200]},{"name":"SQLPutData","features":[200]},{"name":"SQLPutData","features":[200]},{"name":"SQLRowCount","features":[200]},{"name":"SQLRowCount","features":[200]},{"name":"SQLSetConnectAttr","features":[200]},{"name":"SQLSetConnectAttrA","features":[200]},{"name":"SQLSetConnectAttrW","features":[200]},{"name":"SQLSetConnectOption","features":[200]},{"name":"SQLSetConnectOption","features":[200]},{"name":"SQLSetConnectOptionA","features":[200]},{"name":"SQLSetConnectOptionA","features":[200]},{"name":"SQLSetConnectOptionW","features":[200]},{"name":"SQLSetConnectOptionW","features":[200]},{"name":"SQLSetCursorName","features":[200]},{"name":"SQLSetCursorNameA","features":[200]},{"name":"SQLSetCursorNameW","features":[200]},{"name":"SQLSetDescField","features":[200]},{"name":"SQLSetDescFieldW","features":[200]},{"name":"SQLSetDescRec","features":[200]},{"name":"SQLSetDescRec","features":[200]},{"name":"SQLSetEnvAttr","features":[200]},{"name":"SQLSetParam","features":[200]},{"name":"SQLSetParam","features":[200]},{"name":"SQLSetPos","features":[200]},{"name":"SQLSetPos","features":[200]},{"name":"SQLSetScrollOptions","features":[200]},{"name":"SQLSetScrollOptions","features":[200]},{"name":"SQLSetStmtAttr","features":[200]},{"name":"SQLSetStmtAttrW","features":[200]},{"name":"SQLSetStmtOption","features":[200]},{"name":"SQLSetStmtOption","features":[200]},{"name":"SQLSpecialColumns","features":[200]},{"name":"SQLSpecialColumnsA","features":[200]},{"name":"SQLSpecialColumnsW","features":[200]},{"name":"SQLStatistics","features":[200]},{"name":"SQLStatisticsA","features":[200]},{"name":"SQLStatisticsW","features":[200]},{"name":"SQLTEXT","features":[200]},{"name":"SQLTablePrivileges","features":[200]},{"name":"SQLTablePrivilegesA","features":[200]},{"name":"SQLTablePrivilegesW","features":[200]},{"name":"SQLTables","features":[200]},{"name":"SQLTablesA","features":[200]},{"name":"SQLTablesW","features":[200]},{"name":"SQLTransact","features":[200]},{"name":"SQLUNIQUEID","features":[200]},{"name":"SQLVARBINARY","features":[200]},{"name":"SQLVARCHAR","features":[200]},{"name":"SQLVARENUM","features":[200]},{"name":"SQLVARIANT","features":[200]},{"name":"SQL_AA_FALSE","features":[200]},{"name":"SQL_AA_TRUE","features":[200]},{"name":"SQL_ACCESSIBLE_PROCEDURES","features":[200]},{"name":"SQL_ACCESSIBLE_TABLES","features":[200]},{"name":"SQL_ACCESS_MODE","features":[200]},{"name":"SQL_ACTIVE_CONNECTIONS","features":[200]},{"name":"SQL_ACTIVE_ENVIRONMENTS","features":[200]},{"name":"SQL_ACTIVE_STATEMENTS","features":[200]},{"name":"SQL_ADD","features":[200]},{"name":"SQL_AD_ADD_CONSTRAINT_DEFERRABLE","features":[200]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","features":[200]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","features":[200]},{"name":"SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","features":[200]},{"name":"SQL_AD_ADD_DOMAIN_CONSTRAINT","features":[200]},{"name":"SQL_AD_ADD_DOMAIN_DEFAULT","features":[200]},{"name":"SQL_AD_CONSTRAINT_NAME_DEFINITION","features":[200]},{"name":"SQL_AD_DEFAULT","features":[200]},{"name":"SQL_AD_DROP_DOMAIN_CONSTRAINT","features":[200]},{"name":"SQL_AD_DROP_DOMAIN_DEFAULT","features":[200]},{"name":"SQL_AD_OFF","features":[200]},{"name":"SQL_AD_ON","features":[200]},{"name":"SQL_AF_ALL","features":[200]},{"name":"SQL_AF_AVG","features":[200]},{"name":"SQL_AF_COUNT","features":[200]},{"name":"SQL_AF_DISTINCT","features":[200]},{"name":"SQL_AF_MAX","features":[200]},{"name":"SQL_AF_MIN","features":[200]},{"name":"SQL_AF_SUM","features":[200]},{"name":"SQL_AGGREGATE_FUNCTIONS","features":[200]},{"name":"SQL_ALL_CATALOGS","features":[200]},{"name":"SQL_ALL_EXCEPT_LIKE","features":[200]},{"name":"SQL_ALL_SCHEMAS","features":[200]},{"name":"SQL_ALL_TABLE_TYPES","features":[200]},{"name":"SQL_ALL_TYPES","features":[200]},{"name":"SQL_ALTER_DOMAIN","features":[200]},{"name":"SQL_ALTER_TABLE","features":[200]},{"name":"SQL_AM_CONNECTION","features":[200]},{"name":"SQL_AM_NONE","features":[200]},{"name":"SQL_AM_STATEMENT","features":[200]},{"name":"SQL_AO_DEFAULT","features":[200]},{"name":"SQL_AO_OFF","features":[200]},{"name":"SQL_AO_ON","features":[200]},{"name":"SQL_APD_TYPE","features":[200]},{"name":"SQL_API_ALL_FUNCTIONS","features":[200]},{"name":"SQL_API_LOADBYORDINAL","features":[200]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS","features":[200]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS_SIZE","features":[200]},{"name":"SQL_API_SQLALLOCCONNECT","features":[200]},{"name":"SQL_API_SQLALLOCENV","features":[200]},{"name":"SQL_API_SQLALLOCHANDLE","features":[200]},{"name":"SQL_API_SQLALLOCHANDLESTD","features":[200]},{"name":"SQL_API_SQLALLOCSTMT","features":[200]},{"name":"SQL_API_SQLBINDCOL","features":[200]},{"name":"SQL_API_SQLBINDPARAM","features":[200]},{"name":"SQL_API_SQLBINDPARAMETER","features":[200]},{"name":"SQL_API_SQLBROWSECONNECT","features":[200]},{"name":"SQL_API_SQLBULKOPERATIONS","features":[200]},{"name":"SQL_API_SQLCANCEL","features":[200]},{"name":"SQL_API_SQLCANCELHANDLE","features":[200]},{"name":"SQL_API_SQLCLOSECURSOR","features":[200]},{"name":"SQL_API_SQLCOLATTRIBUTE","features":[200]},{"name":"SQL_API_SQLCOLATTRIBUTES","features":[200]},{"name":"SQL_API_SQLCOLUMNPRIVILEGES","features":[200]},{"name":"SQL_API_SQLCOLUMNS","features":[200]},{"name":"SQL_API_SQLCOMPLETEASYNC","features":[200]},{"name":"SQL_API_SQLCONNECT","features":[200]},{"name":"SQL_API_SQLCOPYDESC","features":[200]},{"name":"SQL_API_SQLDATASOURCES","features":[200]},{"name":"SQL_API_SQLDESCRIBECOL","features":[200]},{"name":"SQL_API_SQLDESCRIBEPARAM","features":[200]},{"name":"SQL_API_SQLDISCONNECT","features":[200]},{"name":"SQL_API_SQLDRIVERCONNECT","features":[200]},{"name":"SQL_API_SQLDRIVERS","features":[200]},{"name":"SQL_API_SQLENDTRAN","features":[200]},{"name":"SQL_API_SQLERROR","features":[200]},{"name":"SQL_API_SQLEXECDIRECT","features":[200]},{"name":"SQL_API_SQLEXECUTE","features":[200]},{"name":"SQL_API_SQLEXTENDEDFETCH","features":[200]},{"name":"SQL_API_SQLFETCH","features":[200]},{"name":"SQL_API_SQLFETCHSCROLL","features":[200]},{"name":"SQL_API_SQLFOREIGNKEYS","features":[200]},{"name":"SQL_API_SQLFREECONNECT","features":[200]},{"name":"SQL_API_SQLFREEENV","features":[200]},{"name":"SQL_API_SQLFREEHANDLE","features":[200]},{"name":"SQL_API_SQLFREESTMT","features":[200]},{"name":"SQL_API_SQLGETCONNECTATTR","features":[200]},{"name":"SQL_API_SQLGETCONNECTOPTION","features":[200]},{"name":"SQL_API_SQLGETCURSORNAME","features":[200]},{"name":"SQL_API_SQLGETDATA","features":[200]},{"name":"SQL_API_SQLGETDESCFIELD","features":[200]},{"name":"SQL_API_SQLGETDESCREC","features":[200]},{"name":"SQL_API_SQLGETDIAGFIELD","features":[200]},{"name":"SQL_API_SQLGETDIAGREC","features":[200]},{"name":"SQL_API_SQLGETENVATTR","features":[200]},{"name":"SQL_API_SQLGETFUNCTIONS","features":[200]},{"name":"SQL_API_SQLGETINFO","features":[200]},{"name":"SQL_API_SQLGETSTMTATTR","features":[200]},{"name":"SQL_API_SQLGETSTMTOPTION","features":[200]},{"name":"SQL_API_SQLGETTYPEINFO","features":[200]},{"name":"SQL_API_SQLMORERESULTS","features":[200]},{"name":"SQL_API_SQLNATIVESQL","features":[200]},{"name":"SQL_API_SQLNUMPARAMS","features":[200]},{"name":"SQL_API_SQLNUMRESULTCOLS","features":[200]},{"name":"SQL_API_SQLPARAMDATA","features":[200]},{"name":"SQL_API_SQLPARAMOPTIONS","features":[200]},{"name":"SQL_API_SQLPREPARE","features":[200]},{"name":"SQL_API_SQLPRIMARYKEYS","features":[200]},{"name":"SQL_API_SQLPRIVATEDRIVERS","features":[200]},{"name":"SQL_API_SQLPROCEDURECOLUMNS","features":[200]},{"name":"SQL_API_SQLPROCEDURES","features":[200]},{"name":"SQL_API_SQLPUTDATA","features":[200]},{"name":"SQL_API_SQLROWCOUNT","features":[200]},{"name":"SQL_API_SQLSETCONNECTATTR","features":[200]},{"name":"SQL_API_SQLSETCONNECTOPTION","features":[200]},{"name":"SQL_API_SQLSETCURSORNAME","features":[200]},{"name":"SQL_API_SQLSETDESCFIELD","features":[200]},{"name":"SQL_API_SQLSETDESCREC","features":[200]},{"name":"SQL_API_SQLSETENVATTR","features":[200]},{"name":"SQL_API_SQLSETPARAM","features":[200]},{"name":"SQL_API_SQLSETPOS","features":[200]},{"name":"SQL_API_SQLSETSCROLLOPTIONS","features":[200]},{"name":"SQL_API_SQLSETSTMTATTR","features":[200]},{"name":"SQL_API_SQLSETSTMTOPTION","features":[200]},{"name":"SQL_API_SQLSPECIALCOLUMNS","features":[200]},{"name":"SQL_API_SQLSTATISTICS","features":[200]},{"name":"SQL_API_SQLTABLEPRIVILEGES","features":[200]},{"name":"SQL_API_SQLTABLES","features":[200]},{"name":"SQL_API_SQLTRANSACT","features":[200]},{"name":"SQL_ARD_TYPE","features":[200]},{"name":"SQL_ASYNC_DBC_CAPABLE","features":[200]},{"name":"SQL_ASYNC_DBC_ENABLE_DEFAULT","features":[200]},{"name":"SQL_ASYNC_DBC_ENABLE_OFF","features":[200]},{"name":"SQL_ASYNC_DBC_ENABLE_ON","features":[200]},{"name":"SQL_ASYNC_DBC_FUNCTIONS","features":[200]},{"name":"SQL_ASYNC_DBC_NOT_CAPABLE","features":[200]},{"name":"SQL_ASYNC_ENABLE","features":[200]},{"name":"SQL_ASYNC_ENABLE_DEFAULT","features":[200]},{"name":"SQL_ASYNC_ENABLE_OFF","features":[200]},{"name":"SQL_ASYNC_ENABLE_ON","features":[200]},{"name":"SQL_ASYNC_MODE","features":[200]},{"name":"SQL_ASYNC_NOTIFICATION","features":[200]},{"name":"SQL_ASYNC_NOTIFICATION_CALLBACK","features":[3,200]},{"name":"SQL_ASYNC_NOTIFICATION_CAPABLE","features":[200]},{"name":"SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","features":[200]},{"name":"SQL_ATTR_ACCESS_MODE","features":[200]},{"name":"SQL_ATTR_ANSI_APP","features":[200]},{"name":"SQL_ATTR_APPLICATION_KEY","features":[200]},{"name":"SQL_ATTR_APP_PARAM_DESC","features":[200]},{"name":"SQL_ATTR_APP_ROW_DESC","features":[200]},{"name":"SQL_ATTR_ASYNC_DBC_EVENT","features":[200]},{"name":"SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","features":[200]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CALLBACK","features":[200]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CONTEXT","features":[200]},{"name":"SQL_ATTR_ASYNC_ENABLE","features":[200]},{"name":"SQL_ATTR_ASYNC_STMT_EVENT","features":[200]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CALLBACK","features":[200]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CONTEXT","features":[200]},{"name":"SQL_ATTR_AUTOCOMMIT","features":[200]},{"name":"SQL_ATTR_AUTO_IPD","features":[200]},{"name":"SQL_ATTR_CONCURRENCY","features":[200]},{"name":"SQL_ATTR_CONNECTION_DEAD","features":[200]},{"name":"SQL_ATTR_CONNECTION_POOLING","features":[200]},{"name":"SQL_ATTR_CONNECTION_TIMEOUT","features":[200]},{"name":"SQL_ATTR_CP_MATCH","features":[200]},{"name":"SQL_ATTR_CURRENT_CATALOG","features":[200]},{"name":"SQL_ATTR_CURSOR_SCROLLABLE","features":[200]},{"name":"SQL_ATTR_CURSOR_SENSITIVITY","features":[200]},{"name":"SQL_ATTR_CURSOR_TYPE","features":[200]},{"name":"SQL_ATTR_DBC_INFO_TOKEN","features":[200]},{"name":"SQL_ATTR_DISCONNECT_BEHAVIOR","features":[200]},{"name":"SQL_ATTR_ENABLE_AUTO_IPD","features":[200]},{"name":"SQL_ATTR_ENLIST_IN_DTC","features":[200]},{"name":"SQL_ATTR_ENLIST_IN_XA","features":[200]},{"name":"SQL_ATTR_FETCH_BOOKMARK_PTR","features":[200]},{"name":"SQL_ATTR_IMP_PARAM_DESC","features":[200]},{"name":"SQL_ATTR_IMP_ROW_DESC","features":[200]},{"name":"SQL_ATTR_KEYSET_SIZE","features":[200]},{"name":"SQL_ATTR_LOGIN_TIMEOUT","features":[200]},{"name":"SQL_ATTR_MAX_LENGTH","features":[200]},{"name":"SQL_ATTR_MAX_ROWS","features":[200]},{"name":"SQL_ATTR_METADATA_ID","features":[200]},{"name":"SQL_ATTR_NOSCAN","features":[200]},{"name":"SQL_ATTR_ODBC_CURSORS","features":[200]},{"name":"SQL_ATTR_ODBC_VERSION","features":[200]},{"name":"SQL_ATTR_OUTPUT_NTS","features":[200]},{"name":"SQL_ATTR_PACKET_SIZE","features":[200]},{"name":"SQL_ATTR_PARAMSET_SIZE","features":[200]},{"name":"SQL_ATTR_PARAMS_PROCESSED_PTR","features":[200]},{"name":"SQL_ATTR_PARAM_BIND_OFFSET_PTR","features":[200]},{"name":"SQL_ATTR_PARAM_BIND_TYPE","features":[200]},{"name":"SQL_ATTR_PARAM_OPERATION_PTR","features":[200]},{"name":"SQL_ATTR_PARAM_STATUS_PTR","features":[200]},{"name":"SQL_ATTR_QUERY_TIMEOUT","features":[200]},{"name":"SQL_ATTR_QUIET_MODE","features":[200]},{"name":"SQL_ATTR_READONLY","features":[200]},{"name":"SQL_ATTR_READWRITE_UNKNOWN","features":[200]},{"name":"SQL_ATTR_RESET_CONNECTION","features":[200]},{"name":"SQL_ATTR_RETRIEVE_DATA","features":[200]},{"name":"SQL_ATTR_ROWS_FETCHED_PTR","features":[200]},{"name":"SQL_ATTR_ROW_ARRAY_SIZE","features":[200]},{"name":"SQL_ATTR_ROW_BIND_OFFSET_PTR","features":[200]},{"name":"SQL_ATTR_ROW_BIND_TYPE","features":[200]},{"name":"SQL_ATTR_ROW_NUMBER","features":[200]},{"name":"SQL_ATTR_ROW_OPERATION_PTR","features":[200]},{"name":"SQL_ATTR_ROW_STATUS_PTR","features":[200]},{"name":"SQL_ATTR_SIMULATE_CURSOR","features":[200]},{"name":"SQL_ATTR_TRACE","features":[200]},{"name":"SQL_ATTR_TRACEFILE","features":[200]},{"name":"SQL_ATTR_TRANSLATE_LIB","features":[200]},{"name":"SQL_ATTR_TRANSLATE_OPTION","features":[200]},{"name":"SQL_ATTR_TXN_ISOLATION","features":[200]},{"name":"SQL_ATTR_USE_BOOKMARKS","features":[200]},{"name":"SQL_ATTR_WRITE","features":[200]},{"name":"SQL_AT_ADD_COLUMN","features":[200]},{"name":"SQL_AT_ADD_COLUMN_COLLATION","features":[200]},{"name":"SQL_AT_ADD_COLUMN_DEFAULT","features":[200]},{"name":"SQL_AT_ADD_COLUMN_SINGLE","features":[200]},{"name":"SQL_AT_ADD_CONSTRAINT","features":[200]},{"name":"SQL_AT_ADD_TABLE_CONSTRAINT","features":[200]},{"name":"SQL_AT_CONSTRAINT_DEFERRABLE","features":[200]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","features":[200]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[200]},{"name":"SQL_AT_CONSTRAINT_NAME_DEFINITION","features":[200]},{"name":"SQL_AT_CONSTRAINT_NON_DEFERRABLE","features":[200]},{"name":"SQL_AT_DROP_COLUMN","features":[200]},{"name":"SQL_AT_DROP_COLUMN_CASCADE","features":[200]},{"name":"SQL_AT_DROP_COLUMN_DEFAULT","features":[200]},{"name":"SQL_AT_DROP_COLUMN_RESTRICT","features":[200]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","features":[200]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","features":[200]},{"name":"SQL_AT_SET_COLUMN_DEFAULT","features":[200]},{"name":"SQL_AUTOCOMMIT","features":[200]},{"name":"SQL_AUTOCOMMIT_DEFAULT","features":[200]},{"name":"SQL_AUTOCOMMIT_OFF","features":[200]},{"name":"SQL_AUTOCOMMIT_ON","features":[200]},{"name":"SQL_BATCH_ROW_COUNT","features":[200]},{"name":"SQL_BATCH_SUPPORT","features":[200]},{"name":"SQL_BCP_DEFAULT","features":[200]},{"name":"SQL_BCP_OFF","features":[200]},{"name":"SQL_BCP_ON","features":[200]},{"name":"SQL_BEST_ROWID","features":[200]},{"name":"SQL_BIGINT","features":[200]},{"name":"SQL_BINARY","features":[200]},{"name":"SQL_BIND_BY_COLUMN","features":[200]},{"name":"SQL_BIND_TYPE","features":[200]},{"name":"SQL_BIND_TYPE_DEFAULT","features":[200]},{"name":"SQL_BIT","features":[200]},{"name":"SQL_BOOKMARK_PERSISTENCE","features":[200]},{"name":"SQL_BP_CLOSE","features":[200]},{"name":"SQL_BP_DELETE","features":[200]},{"name":"SQL_BP_DROP","features":[200]},{"name":"SQL_BP_OTHER_HSTMT","features":[200]},{"name":"SQL_BP_SCROLL","features":[200]},{"name":"SQL_BP_TRANSACTION","features":[200]},{"name":"SQL_BP_UPDATE","features":[200]},{"name":"SQL_BRC_EXPLICIT","features":[200]},{"name":"SQL_BRC_PROCEDURES","features":[200]},{"name":"SQL_BRC_ROLLED_UP","features":[200]},{"name":"SQL_BS_ROW_COUNT_EXPLICIT","features":[200]},{"name":"SQL_BS_ROW_COUNT_PROC","features":[200]},{"name":"SQL_BS_SELECT_EXPLICIT","features":[200]},{"name":"SQL_BS_SELECT_PROC","features":[200]},{"name":"SQL_CA1_ABSOLUTE","features":[200]},{"name":"SQL_CA1_BOOKMARK","features":[200]},{"name":"SQL_CA1_BULK_ADD","features":[200]},{"name":"SQL_CA1_BULK_DELETE_BY_BOOKMARK","features":[200]},{"name":"SQL_CA1_BULK_FETCH_BY_BOOKMARK","features":[200]},{"name":"SQL_CA1_BULK_UPDATE_BY_BOOKMARK","features":[200]},{"name":"SQL_CA1_LOCK_EXCLUSIVE","features":[200]},{"name":"SQL_CA1_LOCK_NO_CHANGE","features":[200]},{"name":"SQL_CA1_LOCK_UNLOCK","features":[200]},{"name":"SQL_CA1_NEXT","features":[200]},{"name":"SQL_CA1_POSITIONED_DELETE","features":[200]},{"name":"SQL_CA1_POSITIONED_UPDATE","features":[200]},{"name":"SQL_CA1_POS_DELETE","features":[200]},{"name":"SQL_CA1_POS_POSITION","features":[200]},{"name":"SQL_CA1_POS_REFRESH","features":[200]},{"name":"SQL_CA1_POS_UPDATE","features":[200]},{"name":"SQL_CA1_RELATIVE","features":[200]},{"name":"SQL_CA1_SELECT_FOR_UPDATE","features":[200]},{"name":"SQL_CA2_CRC_APPROXIMATE","features":[200]},{"name":"SQL_CA2_CRC_EXACT","features":[200]},{"name":"SQL_CA2_LOCK_CONCURRENCY","features":[200]},{"name":"SQL_CA2_MAX_ROWS_CATALOG","features":[200]},{"name":"SQL_CA2_MAX_ROWS_DELETE","features":[200]},{"name":"SQL_CA2_MAX_ROWS_INSERT","features":[200]},{"name":"SQL_CA2_MAX_ROWS_SELECT","features":[200]},{"name":"SQL_CA2_MAX_ROWS_UPDATE","features":[200]},{"name":"SQL_CA2_OPT_ROWVER_CONCURRENCY","features":[200]},{"name":"SQL_CA2_OPT_VALUES_CONCURRENCY","features":[200]},{"name":"SQL_CA2_READ_ONLY_CONCURRENCY","features":[200]},{"name":"SQL_CA2_SENSITIVITY_ADDITIONS","features":[200]},{"name":"SQL_CA2_SENSITIVITY_DELETIONS","features":[200]},{"name":"SQL_CA2_SENSITIVITY_UPDATES","features":[200]},{"name":"SQL_CA2_SIMULATE_NON_UNIQUE","features":[200]},{"name":"SQL_CA2_SIMULATE_TRY_UNIQUE","features":[200]},{"name":"SQL_CA2_SIMULATE_UNIQUE","features":[200]},{"name":"SQL_CACHE_DATA_NO","features":[200]},{"name":"SQL_CACHE_DATA_YES","features":[200]},{"name":"SQL_CASCADE","features":[200]},{"name":"SQL_CATALOG_LOCATION","features":[200]},{"name":"SQL_CATALOG_NAME","features":[200]},{"name":"SQL_CATALOG_NAME_SEPARATOR","features":[200]},{"name":"SQL_CATALOG_TERM","features":[200]},{"name":"SQL_CATALOG_USAGE","features":[200]},{"name":"SQL_CA_CONSTRAINT_DEFERRABLE","features":[200]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","features":[200]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","features":[200]},{"name":"SQL_CA_CONSTRAINT_NON_DEFERRABLE","features":[200]},{"name":"SQL_CA_CREATE_ASSERTION","features":[200]},{"name":"SQL_CA_SS_BASE","features":[200]},{"name":"SQL_CA_SS_COLUMN_COLLATION","features":[200]},{"name":"SQL_CA_SS_COLUMN_HIDDEN","features":[200]},{"name":"SQL_CA_SS_COLUMN_ID","features":[200]},{"name":"SQL_CA_SS_COLUMN_KEY","features":[200]},{"name":"SQL_CA_SS_COLUMN_OP","features":[200]},{"name":"SQL_CA_SS_COLUMN_ORDER","features":[200]},{"name":"SQL_CA_SS_COLUMN_SIZE","features":[200]},{"name":"SQL_CA_SS_COLUMN_SSTYPE","features":[200]},{"name":"SQL_CA_SS_COLUMN_UTYPE","features":[200]},{"name":"SQL_CA_SS_COLUMN_VARYLEN","features":[200]},{"name":"SQL_CA_SS_COMPUTE_BYLIST","features":[200]},{"name":"SQL_CA_SS_COMPUTE_ID","features":[200]},{"name":"SQL_CA_SS_MAX_USED","features":[200]},{"name":"SQL_CA_SS_NUM_COMPUTES","features":[200]},{"name":"SQL_CA_SS_NUM_ORDERS","features":[200]},{"name":"SQL_CA_SS_VARIANT_SERVER_TYPE","features":[200]},{"name":"SQL_CA_SS_VARIANT_SQL_TYPE","features":[200]},{"name":"SQL_CA_SS_VARIANT_TYPE","features":[200]},{"name":"SQL_CB_CLOSE","features":[200]},{"name":"SQL_CB_DELETE","features":[200]},{"name":"SQL_CB_NON_NULL","features":[200]},{"name":"SQL_CB_NULL","features":[200]},{"name":"SQL_CB_PRESERVE","features":[200]},{"name":"SQL_CCOL_CREATE_COLLATION","features":[200]},{"name":"SQL_CCS_COLLATE_CLAUSE","features":[200]},{"name":"SQL_CCS_CREATE_CHARACTER_SET","features":[200]},{"name":"SQL_CCS_LIMITED_COLLATION","features":[200]},{"name":"SQL_CC_CLOSE","features":[200]},{"name":"SQL_CC_DELETE","features":[200]},{"name":"SQL_CC_PRESERVE","features":[200]},{"name":"SQL_CDO_COLLATION","features":[200]},{"name":"SQL_CDO_CONSTRAINT","features":[200]},{"name":"SQL_CDO_CONSTRAINT_DEFERRABLE","features":[200]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","features":[200]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","features":[200]},{"name":"SQL_CDO_CONSTRAINT_NAME_DEFINITION","features":[200]},{"name":"SQL_CDO_CONSTRAINT_NON_DEFERRABLE","features":[200]},{"name":"SQL_CDO_CREATE_DOMAIN","features":[200]},{"name":"SQL_CDO_DEFAULT","features":[200]},{"name":"SQL_CD_FALSE","features":[200]},{"name":"SQL_CD_TRUE","features":[200]},{"name":"SQL_CHAR","features":[200]},{"name":"SQL_CLOSE","features":[200]},{"name":"SQL_CL_END","features":[200]},{"name":"SQL_CL_START","features":[200]},{"name":"SQL_CN_ANY","features":[200]},{"name":"SQL_CN_DEFAULT","features":[200]},{"name":"SQL_CN_DIFFERENT","features":[200]},{"name":"SQL_CN_NONE","features":[200]},{"name":"SQL_CN_OFF","features":[200]},{"name":"SQL_CN_ON","features":[200]},{"name":"SQL_CODE_DATE","features":[200]},{"name":"SQL_CODE_DAY","features":[200]},{"name":"SQL_CODE_DAY_TO_HOUR","features":[200]},{"name":"SQL_CODE_DAY_TO_MINUTE","features":[200]},{"name":"SQL_CODE_DAY_TO_SECOND","features":[200]},{"name":"SQL_CODE_HOUR","features":[200]},{"name":"SQL_CODE_HOUR_TO_MINUTE","features":[200]},{"name":"SQL_CODE_HOUR_TO_SECOND","features":[200]},{"name":"SQL_CODE_MINUTE","features":[200]},{"name":"SQL_CODE_MINUTE_TO_SECOND","features":[200]},{"name":"SQL_CODE_MONTH","features":[200]},{"name":"SQL_CODE_SECOND","features":[200]},{"name":"SQL_CODE_TIME","features":[200]},{"name":"SQL_CODE_TIMESTAMP","features":[200]},{"name":"SQL_CODE_YEAR","features":[200]},{"name":"SQL_CODE_YEAR_TO_MONTH","features":[200]},{"name":"SQL_COLATT_OPT_MAX","features":[200]},{"name":"SQL_COLATT_OPT_MIN","features":[200]},{"name":"SQL_COLLATION_SEQ","features":[200]},{"name":"SQL_COLUMN_ALIAS","features":[200]},{"name":"SQL_COLUMN_AUTO_INCREMENT","features":[200]},{"name":"SQL_COLUMN_CASE_SENSITIVE","features":[200]},{"name":"SQL_COLUMN_COUNT","features":[200]},{"name":"SQL_COLUMN_DISPLAY_SIZE","features":[200]},{"name":"SQL_COLUMN_DRIVER_START","features":[200]},{"name":"SQL_COLUMN_IGNORE","features":[200]},{"name":"SQL_COLUMN_LABEL","features":[200]},{"name":"SQL_COLUMN_LENGTH","features":[200]},{"name":"SQL_COLUMN_MONEY","features":[200]},{"name":"SQL_COLUMN_NAME","features":[200]},{"name":"SQL_COLUMN_NULLABLE","features":[200]},{"name":"SQL_COLUMN_NUMBER_UNKNOWN","features":[200]},{"name":"SQL_COLUMN_OWNER_NAME","features":[200]},{"name":"SQL_COLUMN_PRECISION","features":[200]},{"name":"SQL_COLUMN_QUALIFIER_NAME","features":[200]},{"name":"SQL_COLUMN_SCALE","features":[200]},{"name":"SQL_COLUMN_SEARCHABLE","features":[200]},{"name":"SQL_COLUMN_TABLE_NAME","features":[200]},{"name":"SQL_COLUMN_TYPE","features":[200]},{"name":"SQL_COLUMN_TYPE_NAME","features":[200]},{"name":"SQL_COLUMN_UNSIGNED","features":[200]},{"name":"SQL_COLUMN_UPDATABLE","features":[200]},{"name":"SQL_COMMIT","features":[200]},{"name":"SQL_CONCAT_NULL_BEHAVIOR","features":[200]},{"name":"SQL_CONCURRENCY","features":[200]},{"name":"SQL_CONCUR_DEFAULT","features":[200]},{"name":"SQL_CONCUR_LOCK","features":[200]},{"name":"SQL_CONCUR_READ_ONLY","features":[200]},{"name":"SQL_CONCUR_ROWVER","features":[200]},{"name":"SQL_CONCUR_TIMESTAMP","features":[200]},{"name":"SQL_CONCUR_VALUES","features":[200]},{"name":"SQL_CONNECT_OPT_DRVR_START","features":[200]},{"name":"SQL_CONN_OPT_MAX","features":[200]},{"name":"SQL_CONN_OPT_MIN","features":[200]},{"name":"SQL_CONN_POOL_RATING_BEST","features":[200]},{"name":"SQL_CONN_POOL_RATING_GOOD_ENOUGH","features":[200]},{"name":"SQL_CONN_POOL_RATING_USELESS","features":[200]},{"name":"SQL_CONVERT_BIGINT","features":[200]},{"name":"SQL_CONVERT_BINARY","features":[200]},{"name":"SQL_CONVERT_BIT","features":[200]},{"name":"SQL_CONVERT_CHAR","features":[200]},{"name":"SQL_CONVERT_DATE","features":[200]},{"name":"SQL_CONVERT_DECIMAL","features":[200]},{"name":"SQL_CONVERT_DOUBLE","features":[200]},{"name":"SQL_CONVERT_FLOAT","features":[200]},{"name":"SQL_CONVERT_FUNCTIONS","features":[200]},{"name":"SQL_CONVERT_GUID","features":[200]},{"name":"SQL_CONVERT_INTEGER","features":[200]},{"name":"SQL_CONVERT_INTERVAL_DAY_TIME","features":[200]},{"name":"SQL_CONVERT_INTERVAL_YEAR_MONTH","features":[200]},{"name":"SQL_CONVERT_LONGVARBINARY","features":[200]},{"name":"SQL_CONVERT_LONGVARCHAR","features":[200]},{"name":"SQL_CONVERT_NUMERIC","features":[200]},{"name":"SQL_CONVERT_REAL","features":[200]},{"name":"SQL_CONVERT_SMALLINT","features":[200]},{"name":"SQL_CONVERT_TIME","features":[200]},{"name":"SQL_CONVERT_TIMESTAMP","features":[200]},{"name":"SQL_CONVERT_TINYINT","features":[200]},{"name":"SQL_CONVERT_VARBINARY","features":[200]},{"name":"SQL_CONVERT_VARCHAR","features":[200]},{"name":"SQL_CONVERT_WCHAR","features":[200]},{"name":"SQL_CONVERT_WLONGVARCHAR","features":[200]},{"name":"SQL_CONVERT_WVARCHAR","features":[200]},{"name":"SQL_COPT_SS_ANSI_NPW","features":[200]},{"name":"SQL_COPT_SS_ANSI_OEM","features":[200]},{"name":"SQL_COPT_SS_ATTACHDBFILENAME","features":[200]},{"name":"SQL_COPT_SS_BASE","features":[200]},{"name":"SQL_COPT_SS_BASE_EX","features":[200]},{"name":"SQL_COPT_SS_BCP","features":[200]},{"name":"SQL_COPT_SS_BROWSE_CACHE_DATA","features":[200]},{"name":"SQL_COPT_SS_BROWSE_CONNECT","features":[200]},{"name":"SQL_COPT_SS_BROWSE_SERVER","features":[200]},{"name":"SQL_COPT_SS_CONCAT_NULL","features":[200]},{"name":"SQL_COPT_SS_CONNECTION_DEAD","features":[200]},{"name":"SQL_COPT_SS_ENCRYPT","features":[200]},{"name":"SQL_COPT_SS_EX_MAX_USED","features":[200]},{"name":"SQL_COPT_SS_FALLBACK_CONNECT","features":[200]},{"name":"SQL_COPT_SS_INTEGRATED_SECURITY","features":[200]},{"name":"SQL_COPT_SS_MAX_USED","features":[200]},{"name":"SQL_COPT_SS_PERF_DATA","features":[200]},{"name":"SQL_COPT_SS_PERF_DATA_LOG","features":[200]},{"name":"SQL_COPT_SS_PERF_DATA_LOG_NOW","features":[200]},{"name":"SQL_COPT_SS_PERF_QUERY","features":[200]},{"name":"SQL_COPT_SS_PERF_QUERY_INTERVAL","features":[200]},{"name":"SQL_COPT_SS_PERF_QUERY_LOG","features":[200]},{"name":"SQL_COPT_SS_PRESERVE_CURSORS","features":[200]},{"name":"SQL_COPT_SS_QUOTED_IDENT","features":[200]},{"name":"SQL_COPT_SS_REMOTE_PWD","features":[200]},{"name":"SQL_COPT_SS_RESET_CONNECTION","features":[200]},{"name":"SQL_COPT_SS_TRANSLATE","features":[200]},{"name":"SQL_COPT_SS_USER_DATA","features":[200]},{"name":"SQL_COPT_SS_USE_PROC_FOR_PREP","features":[200]},{"name":"SQL_COPT_SS_WARN_ON_CP_ERROR","features":[200]},{"name":"SQL_CORRELATION_NAME","features":[200]},{"name":"SQL_CO_AF","features":[200]},{"name":"SQL_CO_DEFAULT","features":[200]},{"name":"SQL_CO_FFO","features":[200]},{"name":"SQL_CO_FIREHOSE_AF","features":[200]},{"name":"SQL_CO_OFF","features":[200]},{"name":"SQL_CP_DEFAULT","features":[200]},{"name":"SQL_CP_DRIVER_AWARE","features":[200]},{"name":"SQL_CP_MATCH_DEFAULT","features":[200]},{"name":"SQL_CP_OFF","features":[200]},{"name":"SQL_CP_ONE_PER_DRIVER","features":[200]},{"name":"SQL_CP_ONE_PER_HENV","features":[200]},{"name":"SQL_CP_RELAXED_MATCH","features":[200]},{"name":"SQL_CP_STRICT_MATCH","features":[200]},{"name":"SQL_CREATE_ASSERTION","features":[200]},{"name":"SQL_CREATE_CHARACTER_SET","features":[200]},{"name":"SQL_CREATE_COLLATION","features":[200]},{"name":"SQL_CREATE_DOMAIN","features":[200]},{"name":"SQL_CREATE_SCHEMA","features":[200]},{"name":"SQL_CREATE_TABLE","features":[200]},{"name":"SQL_CREATE_TRANSLATION","features":[200]},{"name":"SQL_CREATE_VIEW","features":[200]},{"name":"SQL_CR_CLOSE","features":[200]},{"name":"SQL_CR_DELETE","features":[200]},{"name":"SQL_CR_PRESERVE","features":[200]},{"name":"SQL_CS_AUTHORIZATION","features":[200]},{"name":"SQL_CS_CREATE_SCHEMA","features":[200]},{"name":"SQL_CS_DEFAULT_CHARACTER_SET","features":[200]},{"name":"SQL_CTR_CREATE_TRANSLATION","features":[200]},{"name":"SQL_CT_COLUMN_COLLATION","features":[200]},{"name":"SQL_CT_COLUMN_CONSTRAINT","features":[200]},{"name":"SQL_CT_COLUMN_DEFAULT","features":[200]},{"name":"SQL_CT_COMMIT_DELETE","features":[200]},{"name":"SQL_CT_COMMIT_PRESERVE","features":[200]},{"name":"SQL_CT_CONSTRAINT_DEFERRABLE","features":[200]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","features":[200]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[200]},{"name":"SQL_CT_CONSTRAINT_NAME_DEFINITION","features":[200]},{"name":"SQL_CT_CONSTRAINT_NON_DEFERRABLE","features":[200]},{"name":"SQL_CT_CREATE_TABLE","features":[200]},{"name":"SQL_CT_GLOBAL_TEMPORARY","features":[200]},{"name":"SQL_CT_LOCAL_TEMPORARY","features":[200]},{"name":"SQL_CT_TABLE_CONSTRAINT","features":[200]},{"name":"SQL_CURRENT_QUALIFIER","features":[200]},{"name":"SQL_CURSOR_COMMIT_BEHAVIOR","features":[200]},{"name":"SQL_CURSOR_DYNAMIC","features":[200]},{"name":"SQL_CURSOR_FAST_FORWARD_ONLY","features":[200]},{"name":"SQL_CURSOR_FORWARD_ONLY","features":[200]},{"name":"SQL_CURSOR_KEYSET_DRIVEN","features":[200]},{"name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","features":[200]},{"name":"SQL_CURSOR_SENSITIVITY","features":[200]},{"name":"SQL_CURSOR_STATIC","features":[200]},{"name":"SQL_CURSOR_TYPE","features":[200]},{"name":"SQL_CURSOR_TYPE_DEFAULT","features":[200]},{"name":"SQL_CUR_DEFAULT","features":[200]},{"name":"SQL_CUR_USE_DRIVER","features":[200]},{"name":"SQL_CUR_USE_IF_NEEDED","features":[200]},{"name":"SQL_CUR_USE_ODBC","features":[200]},{"name":"SQL_CU_DML_STATEMENTS","features":[200]},{"name":"SQL_CU_INDEX_DEFINITION","features":[200]},{"name":"SQL_CU_PRIVILEGE_DEFINITION","features":[200]},{"name":"SQL_CU_PROCEDURE_INVOCATION","features":[200]},{"name":"SQL_CU_TABLE_DEFINITION","features":[200]},{"name":"SQL_CVT_BIGINT","features":[200]},{"name":"SQL_CVT_BINARY","features":[200]},{"name":"SQL_CVT_BIT","features":[200]},{"name":"SQL_CVT_CHAR","features":[200]},{"name":"SQL_CVT_DATE","features":[200]},{"name":"SQL_CVT_DECIMAL","features":[200]},{"name":"SQL_CVT_DOUBLE","features":[200]},{"name":"SQL_CVT_FLOAT","features":[200]},{"name":"SQL_CVT_GUID","features":[200]},{"name":"SQL_CVT_INTEGER","features":[200]},{"name":"SQL_CVT_INTERVAL_DAY_TIME","features":[200]},{"name":"SQL_CVT_INTERVAL_YEAR_MONTH","features":[200]},{"name":"SQL_CVT_LONGVARBINARY","features":[200]},{"name":"SQL_CVT_LONGVARCHAR","features":[200]},{"name":"SQL_CVT_NUMERIC","features":[200]},{"name":"SQL_CVT_REAL","features":[200]},{"name":"SQL_CVT_SMALLINT","features":[200]},{"name":"SQL_CVT_TIME","features":[200]},{"name":"SQL_CVT_TIMESTAMP","features":[200]},{"name":"SQL_CVT_TINYINT","features":[200]},{"name":"SQL_CVT_VARBINARY","features":[200]},{"name":"SQL_CVT_VARCHAR","features":[200]},{"name":"SQL_CVT_WCHAR","features":[200]},{"name":"SQL_CVT_WLONGVARCHAR","features":[200]},{"name":"SQL_CVT_WVARCHAR","features":[200]},{"name":"SQL_CV_CASCADED","features":[200]},{"name":"SQL_CV_CHECK_OPTION","features":[200]},{"name":"SQL_CV_CREATE_VIEW","features":[200]},{"name":"SQL_CV_LOCAL","features":[200]},{"name":"SQL_C_BINARY","features":[200]},{"name":"SQL_C_BIT","features":[200]},{"name":"SQL_C_CHAR","features":[200]},{"name":"SQL_C_DATE","features":[200]},{"name":"SQL_C_DEFAULT","features":[200]},{"name":"SQL_C_DOUBLE","features":[200]},{"name":"SQL_C_FLOAT","features":[200]},{"name":"SQL_C_GUID","features":[200]},{"name":"SQL_C_INTERVAL_DAY","features":[200]},{"name":"SQL_C_INTERVAL_DAY_TO_HOUR","features":[200]},{"name":"SQL_C_INTERVAL_DAY_TO_MINUTE","features":[200]},{"name":"SQL_C_INTERVAL_DAY_TO_SECOND","features":[200]},{"name":"SQL_C_INTERVAL_HOUR","features":[200]},{"name":"SQL_C_INTERVAL_HOUR_TO_MINUTE","features":[200]},{"name":"SQL_C_INTERVAL_HOUR_TO_SECOND","features":[200]},{"name":"SQL_C_INTERVAL_MINUTE","features":[200]},{"name":"SQL_C_INTERVAL_MINUTE_TO_SECOND","features":[200]},{"name":"SQL_C_INTERVAL_MONTH","features":[200]},{"name":"SQL_C_INTERVAL_SECOND","features":[200]},{"name":"SQL_C_INTERVAL_YEAR","features":[200]},{"name":"SQL_C_INTERVAL_YEAR_TO_MONTH","features":[200]},{"name":"SQL_C_LONG","features":[200]},{"name":"SQL_C_NUMERIC","features":[200]},{"name":"SQL_C_SHORT","features":[200]},{"name":"SQL_C_TCHAR","features":[200]},{"name":"SQL_C_TIME","features":[200]},{"name":"SQL_C_TIMESTAMP","features":[200]},{"name":"SQL_C_TINYINT","features":[200]},{"name":"SQL_C_TYPE_DATE","features":[200]},{"name":"SQL_C_TYPE_TIME","features":[200]},{"name":"SQL_C_TYPE_TIMESTAMP","features":[200]},{"name":"SQL_C_VARBOOKMARK","features":[200]},{"name":"SQL_C_WCHAR","features":[200]},{"name":"SQL_DATABASE_NAME","features":[200]},{"name":"SQL_DATA_AT_EXEC","features":[200]},{"name":"SQL_DATA_SOURCE_NAME","features":[200]},{"name":"SQL_DATA_SOURCE_READ_ONLY","features":[200]},{"name":"SQL_DATE","features":[200]},{"name":"SQL_DATETIME","features":[200]},{"name":"SQL_DATETIME_LITERALS","features":[200]},{"name":"SQL_DATE_LEN","features":[200]},{"name":"SQL_DAY","features":[200]},{"name":"SQL_DAY_SECOND_STRUCT","features":[200]},{"name":"SQL_DAY_TO_HOUR","features":[200]},{"name":"SQL_DAY_TO_MINUTE","features":[200]},{"name":"SQL_DAY_TO_SECOND","features":[200]},{"name":"SQL_DA_DROP_ASSERTION","features":[200]},{"name":"SQL_DBMS_NAME","features":[200]},{"name":"SQL_DBMS_VER","features":[200]},{"name":"SQL_DB_DEFAULT","features":[200]},{"name":"SQL_DB_DISCONNECT","features":[200]},{"name":"SQL_DB_RETURN_TO_POOL","features":[200]},{"name":"SQL_DCS_DROP_CHARACTER_SET","features":[200]},{"name":"SQL_DC_DROP_COLLATION","features":[200]},{"name":"SQL_DDL_INDEX","features":[200]},{"name":"SQL_DD_CASCADE","features":[200]},{"name":"SQL_DD_DROP_DOMAIN","features":[200]},{"name":"SQL_DD_RESTRICT","features":[200]},{"name":"SQL_DECIMAL","features":[200]},{"name":"SQL_DEFAULT","features":[200]},{"name":"SQL_DEFAULT_PARAM","features":[200]},{"name":"SQL_DEFAULT_TXN_ISOLATION","features":[200]},{"name":"SQL_DELETE","features":[200]},{"name":"SQL_DELETE_BY_BOOKMARK","features":[200]},{"name":"SQL_DESCRIBE_PARAMETER","features":[200]},{"name":"SQL_DESC_ALLOC_AUTO","features":[200]},{"name":"SQL_DESC_ALLOC_TYPE","features":[200]},{"name":"SQL_DESC_ALLOC_USER","features":[200]},{"name":"SQL_DESC_ARRAY_SIZE","features":[200]},{"name":"SQL_DESC_ARRAY_STATUS_PTR","features":[200]},{"name":"SQL_DESC_BASE_COLUMN_NAME","features":[200]},{"name":"SQL_DESC_BASE_TABLE_NAME","features":[200]},{"name":"SQL_DESC_BIND_OFFSET_PTR","features":[200]},{"name":"SQL_DESC_BIND_TYPE","features":[200]},{"name":"SQL_DESC_COUNT","features":[200]},{"name":"SQL_DESC_DATA_PTR","features":[200]},{"name":"SQL_DESC_DATETIME_INTERVAL_CODE","features":[200]},{"name":"SQL_DESC_DATETIME_INTERVAL_PRECISION","features":[200]},{"name":"SQL_DESC_INDICATOR_PTR","features":[200]},{"name":"SQL_DESC_LENGTH","features":[200]},{"name":"SQL_DESC_LITERAL_PREFIX","features":[200]},{"name":"SQL_DESC_LITERAL_SUFFIX","features":[200]},{"name":"SQL_DESC_LOCAL_TYPE_NAME","features":[200]},{"name":"SQL_DESC_MAXIMUM_SCALE","features":[200]},{"name":"SQL_DESC_MINIMUM_SCALE","features":[200]},{"name":"SQL_DESC_NAME","features":[200]},{"name":"SQL_DESC_NULLABLE","features":[200]},{"name":"SQL_DESC_NUM_PREC_RADIX","features":[200]},{"name":"SQL_DESC_OCTET_LENGTH","features":[200]},{"name":"SQL_DESC_OCTET_LENGTH_PTR","features":[200]},{"name":"SQL_DESC_PARAMETER_TYPE","features":[200]},{"name":"SQL_DESC_PRECISION","features":[200]},{"name":"SQL_DESC_ROWS_PROCESSED_PTR","features":[200]},{"name":"SQL_DESC_ROWVER","features":[200]},{"name":"SQL_DESC_SCALE","features":[200]},{"name":"SQL_DESC_TYPE","features":[200]},{"name":"SQL_DESC_UNNAMED","features":[200]},{"name":"SQL_DIAG_ALTER_DOMAIN","features":[200]},{"name":"SQL_DIAG_ALTER_TABLE","features":[200]},{"name":"SQL_DIAG_CALL","features":[200]},{"name":"SQL_DIAG_CLASS_ORIGIN","features":[200]},{"name":"SQL_DIAG_COLUMN_NUMBER","features":[200]},{"name":"SQL_DIAG_CONNECTION_NAME","features":[200]},{"name":"SQL_DIAG_CREATE_ASSERTION","features":[200]},{"name":"SQL_DIAG_CREATE_CHARACTER_SET","features":[200]},{"name":"SQL_DIAG_CREATE_COLLATION","features":[200]},{"name":"SQL_DIAG_CREATE_DOMAIN","features":[200]},{"name":"SQL_DIAG_CREATE_INDEX","features":[200]},{"name":"SQL_DIAG_CREATE_SCHEMA","features":[200]},{"name":"SQL_DIAG_CREATE_TABLE","features":[200]},{"name":"SQL_DIAG_CREATE_TRANSLATION","features":[200]},{"name":"SQL_DIAG_CREATE_VIEW","features":[200]},{"name":"SQL_DIAG_CURSOR_ROW_COUNT","features":[200]},{"name":"SQL_DIAG_DELETE_WHERE","features":[200]},{"name":"SQL_DIAG_DFC_SS_ALTER_DATABASE","features":[200]},{"name":"SQL_DIAG_DFC_SS_BASE","features":[200]},{"name":"SQL_DIAG_DFC_SS_CHECKPOINT","features":[200]},{"name":"SQL_DIAG_DFC_SS_CONDITION","features":[200]},{"name":"SQL_DIAG_DFC_SS_CREATE_DATABASE","features":[200]},{"name":"SQL_DIAG_DFC_SS_CREATE_DEFAULT","features":[200]},{"name":"SQL_DIAG_DFC_SS_CREATE_PROCEDURE","features":[200]},{"name":"SQL_DIAG_DFC_SS_CREATE_RULE","features":[200]},{"name":"SQL_DIAG_DFC_SS_CREATE_TRIGGER","features":[200]},{"name":"SQL_DIAG_DFC_SS_CURSOR_CLOSE","features":[200]},{"name":"SQL_DIAG_DFC_SS_CURSOR_DECLARE","features":[200]},{"name":"SQL_DIAG_DFC_SS_CURSOR_FETCH","features":[200]},{"name":"SQL_DIAG_DFC_SS_CURSOR_OPEN","features":[200]},{"name":"SQL_DIAG_DFC_SS_DBCC","features":[200]},{"name":"SQL_DIAG_DFC_SS_DEALLOCATE_CURSOR","features":[200]},{"name":"SQL_DIAG_DFC_SS_DENY","features":[200]},{"name":"SQL_DIAG_DFC_SS_DISK","features":[200]},{"name":"SQL_DIAG_DFC_SS_DROP_DATABASE","features":[200]},{"name":"SQL_DIAG_DFC_SS_DROP_DEFAULT","features":[200]},{"name":"SQL_DIAG_DFC_SS_DROP_PROCEDURE","features":[200]},{"name":"SQL_DIAG_DFC_SS_DROP_RULE","features":[200]},{"name":"SQL_DIAG_DFC_SS_DROP_TRIGGER","features":[200]},{"name":"SQL_DIAG_DFC_SS_DUMP_DATABASE","features":[200]},{"name":"SQL_DIAG_DFC_SS_DUMP_TABLE","features":[200]},{"name":"SQL_DIAG_DFC_SS_DUMP_TRANSACTION","features":[200]},{"name":"SQL_DIAG_DFC_SS_GOTO","features":[200]},{"name":"SQL_DIAG_DFC_SS_INSERT_BULK","features":[200]},{"name":"SQL_DIAG_DFC_SS_KILL","features":[200]},{"name":"SQL_DIAG_DFC_SS_LOAD_DATABASE","features":[200]},{"name":"SQL_DIAG_DFC_SS_LOAD_HEADERONLY","features":[200]},{"name":"SQL_DIAG_DFC_SS_LOAD_TABLE","features":[200]},{"name":"SQL_DIAG_DFC_SS_LOAD_TRANSACTION","features":[200]},{"name":"SQL_DIAG_DFC_SS_PRINT","features":[200]},{"name":"SQL_DIAG_DFC_SS_RAISERROR","features":[200]},{"name":"SQL_DIAG_DFC_SS_READTEXT","features":[200]},{"name":"SQL_DIAG_DFC_SS_RECONFIGURE","features":[200]},{"name":"SQL_DIAG_DFC_SS_RETURN","features":[200]},{"name":"SQL_DIAG_DFC_SS_SELECT_INTO","features":[200]},{"name":"SQL_DIAG_DFC_SS_SET","features":[200]},{"name":"SQL_DIAG_DFC_SS_SETUSER","features":[200]},{"name":"SQL_DIAG_DFC_SS_SET_IDENTITY_INSERT","features":[200]},{"name":"SQL_DIAG_DFC_SS_SET_ROW_COUNT","features":[200]},{"name":"SQL_DIAG_DFC_SS_SET_STATISTICS","features":[200]},{"name":"SQL_DIAG_DFC_SS_SET_TEXTSIZE","features":[200]},{"name":"SQL_DIAG_DFC_SS_SET_XCTLVL","features":[200]},{"name":"SQL_DIAG_DFC_SS_SHUTDOWN","features":[200]},{"name":"SQL_DIAG_DFC_SS_TRANS_BEGIN","features":[200]},{"name":"SQL_DIAG_DFC_SS_TRANS_COMMIT","features":[200]},{"name":"SQL_DIAG_DFC_SS_TRANS_PREPARE","features":[200]},{"name":"SQL_DIAG_DFC_SS_TRANS_ROLLBACK","features":[200]},{"name":"SQL_DIAG_DFC_SS_TRANS_SAVE","features":[200]},{"name":"SQL_DIAG_DFC_SS_TRUNCATE_TABLE","features":[200]},{"name":"SQL_DIAG_DFC_SS_UPDATETEXT","features":[200]},{"name":"SQL_DIAG_DFC_SS_UPDATE_STATISTICS","features":[200]},{"name":"SQL_DIAG_DFC_SS_USE","features":[200]},{"name":"SQL_DIAG_DFC_SS_WAITFOR","features":[200]},{"name":"SQL_DIAG_DFC_SS_WRITETEXT","features":[200]},{"name":"SQL_DIAG_DROP_ASSERTION","features":[200]},{"name":"SQL_DIAG_DROP_CHARACTER_SET","features":[200]},{"name":"SQL_DIAG_DROP_COLLATION","features":[200]},{"name":"SQL_DIAG_DROP_DOMAIN","features":[200]},{"name":"SQL_DIAG_DROP_INDEX","features":[200]},{"name":"SQL_DIAG_DROP_SCHEMA","features":[200]},{"name":"SQL_DIAG_DROP_TABLE","features":[200]},{"name":"SQL_DIAG_DROP_TRANSLATION","features":[200]},{"name":"SQL_DIAG_DROP_VIEW","features":[200]},{"name":"SQL_DIAG_DYNAMIC_DELETE_CURSOR","features":[200]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION","features":[200]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION_CODE","features":[200]},{"name":"SQL_DIAG_DYNAMIC_UPDATE_CURSOR","features":[200]},{"name":"SQL_DIAG_GRANT","features":[200]},{"name":"SQL_DIAG_INSERT","features":[200]},{"name":"SQL_DIAG_MESSAGE_TEXT","features":[200]},{"name":"SQL_DIAG_NATIVE","features":[200]},{"name":"SQL_DIAG_NUMBER","features":[200]},{"name":"SQL_DIAG_RETURNCODE","features":[200]},{"name":"SQL_DIAG_REVOKE","features":[200]},{"name":"SQL_DIAG_ROW_COUNT","features":[200]},{"name":"SQL_DIAG_ROW_NUMBER","features":[200]},{"name":"SQL_DIAG_SELECT_CURSOR","features":[200]},{"name":"SQL_DIAG_SERVER_NAME","features":[200]},{"name":"SQL_DIAG_SQLSTATE","features":[200]},{"name":"SQL_DIAG_SS_BASE","features":[200]},{"name":"SQL_DIAG_SS_LINE","features":[200]},{"name":"SQL_DIAG_SS_MSGSTATE","features":[200]},{"name":"SQL_DIAG_SS_PROCNAME","features":[200]},{"name":"SQL_DIAG_SS_SEVERITY","features":[200]},{"name":"SQL_DIAG_SS_SRVNAME","features":[200]},{"name":"SQL_DIAG_SUBCLASS_ORIGIN","features":[200]},{"name":"SQL_DIAG_UNKNOWN_STATEMENT","features":[200]},{"name":"SQL_DIAG_UPDATE_WHERE","features":[200]},{"name":"SQL_DI_CREATE_INDEX","features":[200]},{"name":"SQL_DI_DROP_INDEX","features":[200]},{"name":"SQL_DL_SQL92_DATE","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_DAY","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_MONTH","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_SECOND","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR","features":[200]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","features":[200]},{"name":"SQL_DL_SQL92_TIME","features":[200]},{"name":"SQL_DL_SQL92_TIMESTAMP","features":[200]},{"name":"SQL_DM_VER","features":[200]},{"name":"SQL_DOUBLE","features":[200]},{"name":"SQL_DP_OFF","features":[200]},{"name":"SQL_DP_ON","features":[200]},{"name":"SQL_DRIVER_AWARE_POOLING_CAPABLE","features":[200]},{"name":"SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","features":[200]},{"name":"SQL_DRIVER_AWARE_POOLING_SUPPORTED","features":[200]},{"name":"SQL_DRIVER_COMPLETE","features":[200]},{"name":"SQL_DRIVER_COMPLETE_REQUIRED","features":[200]},{"name":"SQL_DRIVER_CONN_ATTR_BASE","features":[200]},{"name":"SQL_DRIVER_C_TYPE_BASE","features":[200]},{"name":"SQL_DRIVER_DESC_FIELD_BASE","features":[200]},{"name":"SQL_DRIVER_DIAG_FIELD_BASE","features":[200]},{"name":"SQL_DRIVER_HDBC","features":[200]},{"name":"SQL_DRIVER_HDESC","features":[200]},{"name":"SQL_DRIVER_HENV","features":[200]},{"name":"SQL_DRIVER_HLIB","features":[200]},{"name":"SQL_DRIVER_HSTMT","features":[200]},{"name":"SQL_DRIVER_INFO_TYPE_BASE","features":[200]},{"name":"SQL_DRIVER_NAME","features":[200]},{"name":"SQL_DRIVER_NOPROMPT","features":[200]},{"name":"SQL_DRIVER_ODBC_VER","features":[200]},{"name":"SQL_DRIVER_PROMPT","features":[200]},{"name":"SQL_DRIVER_SQL_TYPE_BASE","features":[200]},{"name":"SQL_DRIVER_STMT_ATTR_BASE","features":[200]},{"name":"SQL_DRIVER_VER","features":[200]},{"name":"SQL_DROP","features":[200]},{"name":"SQL_DROP_ASSERTION","features":[200]},{"name":"SQL_DROP_CHARACTER_SET","features":[200]},{"name":"SQL_DROP_COLLATION","features":[200]},{"name":"SQL_DROP_DOMAIN","features":[200]},{"name":"SQL_DROP_SCHEMA","features":[200]},{"name":"SQL_DROP_TABLE","features":[200]},{"name":"SQL_DROP_TRANSLATION","features":[200]},{"name":"SQL_DROP_VIEW","features":[200]},{"name":"SQL_DS_CASCADE","features":[200]},{"name":"SQL_DS_DROP_SCHEMA","features":[200]},{"name":"SQL_DS_RESTRICT","features":[200]},{"name":"SQL_DTC_DONE","features":[200]},{"name":"SQL_DTC_ENLIST_EXPENSIVE","features":[200]},{"name":"SQL_DTC_TRANSITION_COST","features":[200]},{"name":"SQL_DTC_UNENLIST_EXPENSIVE","features":[200]},{"name":"SQL_DTR_DROP_TRANSLATION","features":[200]},{"name":"SQL_DT_CASCADE","features":[200]},{"name":"SQL_DT_DROP_TABLE","features":[200]},{"name":"SQL_DT_RESTRICT","features":[200]},{"name":"SQL_DV_CASCADE","features":[200]},{"name":"SQL_DV_DROP_VIEW","features":[200]},{"name":"SQL_DV_RESTRICT","features":[200]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES1","features":[200]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES2","features":[200]},{"name":"SQL_ENSURE","features":[200]},{"name":"SQL_ENTIRE_ROWSET","features":[200]},{"name":"SQL_EN_OFF","features":[200]},{"name":"SQL_EN_ON","features":[200]},{"name":"SQL_ERROR","features":[200]},{"name":"SQL_EXPRESSIONS_IN_ORDERBY","features":[200]},{"name":"SQL_EXT_API_LAST","features":[200]},{"name":"SQL_EXT_API_START","features":[200]},{"name":"SQL_FALSE","features":[200]},{"name":"SQL_FAST_CONNECT","features":[200]},{"name":"SQL_FB_DEFAULT","features":[200]},{"name":"SQL_FB_OFF","features":[200]},{"name":"SQL_FB_ON","features":[200]},{"name":"SQL_FC_DEFAULT","features":[200]},{"name":"SQL_FC_OFF","features":[200]},{"name":"SQL_FC_ON","features":[200]},{"name":"SQL_FD_FETCH_ABSOLUTE","features":[200]},{"name":"SQL_FD_FETCH_BOOKMARK","features":[200]},{"name":"SQL_FD_FETCH_FIRST","features":[200]},{"name":"SQL_FD_FETCH_LAST","features":[200]},{"name":"SQL_FD_FETCH_NEXT","features":[200]},{"name":"SQL_FD_FETCH_PREV","features":[200]},{"name":"SQL_FD_FETCH_PRIOR","features":[200]},{"name":"SQL_FD_FETCH_RELATIVE","features":[200]},{"name":"SQL_FD_FETCH_RESUME","features":[200]},{"name":"SQL_FETCH_ABSOLUTE","features":[200]},{"name":"SQL_FETCH_BOOKMARK","features":[200]},{"name":"SQL_FETCH_BY_BOOKMARK","features":[200]},{"name":"SQL_FETCH_DIRECTION","features":[200]},{"name":"SQL_FETCH_FIRST","features":[200]},{"name":"SQL_FETCH_FIRST_SYSTEM","features":[200]},{"name":"SQL_FETCH_FIRST_USER","features":[200]},{"name":"SQL_FETCH_LAST","features":[200]},{"name":"SQL_FETCH_NEXT","features":[200]},{"name":"SQL_FETCH_PREV","features":[200]},{"name":"SQL_FETCH_PRIOR","features":[200]},{"name":"SQL_FETCH_RELATIVE","features":[200]},{"name":"SQL_FETCH_RESUME","features":[200]},{"name":"SQL_FILE_CATALOG","features":[200]},{"name":"SQL_FILE_NOT_SUPPORTED","features":[200]},{"name":"SQL_FILE_QUALIFIER","features":[200]},{"name":"SQL_FILE_TABLE","features":[200]},{"name":"SQL_FILE_USAGE","features":[200]},{"name":"SQL_FLOAT","features":[200]},{"name":"SQL_FN_CVT_CAST","features":[200]},{"name":"SQL_FN_CVT_CONVERT","features":[200]},{"name":"SQL_FN_NUM_ABS","features":[200]},{"name":"SQL_FN_NUM_ACOS","features":[200]},{"name":"SQL_FN_NUM_ASIN","features":[200]},{"name":"SQL_FN_NUM_ATAN","features":[200]},{"name":"SQL_FN_NUM_ATAN2","features":[200]},{"name":"SQL_FN_NUM_CEILING","features":[200]},{"name":"SQL_FN_NUM_COS","features":[200]},{"name":"SQL_FN_NUM_COT","features":[200]},{"name":"SQL_FN_NUM_DEGREES","features":[200]},{"name":"SQL_FN_NUM_EXP","features":[200]},{"name":"SQL_FN_NUM_FLOOR","features":[200]},{"name":"SQL_FN_NUM_LOG","features":[200]},{"name":"SQL_FN_NUM_LOG10","features":[200]},{"name":"SQL_FN_NUM_MOD","features":[200]},{"name":"SQL_FN_NUM_PI","features":[200]},{"name":"SQL_FN_NUM_POWER","features":[200]},{"name":"SQL_FN_NUM_RADIANS","features":[200]},{"name":"SQL_FN_NUM_RAND","features":[200]},{"name":"SQL_FN_NUM_ROUND","features":[200]},{"name":"SQL_FN_NUM_SIGN","features":[200]},{"name":"SQL_FN_NUM_SIN","features":[200]},{"name":"SQL_FN_NUM_SQRT","features":[200]},{"name":"SQL_FN_NUM_TAN","features":[200]},{"name":"SQL_FN_NUM_TRUNCATE","features":[200]},{"name":"SQL_FN_STR_ASCII","features":[200]},{"name":"SQL_FN_STR_BIT_LENGTH","features":[200]},{"name":"SQL_FN_STR_CHAR","features":[200]},{"name":"SQL_FN_STR_CHARACTER_LENGTH","features":[200]},{"name":"SQL_FN_STR_CHAR_LENGTH","features":[200]},{"name":"SQL_FN_STR_CONCAT","features":[200]},{"name":"SQL_FN_STR_DIFFERENCE","features":[200]},{"name":"SQL_FN_STR_INSERT","features":[200]},{"name":"SQL_FN_STR_LCASE","features":[200]},{"name":"SQL_FN_STR_LEFT","features":[200]},{"name":"SQL_FN_STR_LENGTH","features":[200]},{"name":"SQL_FN_STR_LOCATE","features":[200]},{"name":"SQL_FN_STR_LOCATE_2","features":[200]},{"name":"SQL_FN_STR_LTRIM","features":[200]},{"name":"SQL_FN_STR_OCTET_LENGTH","features":[200]},{"name":"SQL_FN_STR_POSITION","features":[200]},{"name":"SQL_FN_STR_REPEAT","features":[200]},{"name":"SQL_FN_STR_REPLACE","features":[200]},{"name":"SQL_FN_STR_RIGHT","features":[200]},{"name":"SQL_FN_STR_RTRIM","features":[200]},{"name":"SQL_FN_STR_SOUNDEX","features":[200]},{"name":"SQL_FN_STR_SPACE","features":[200]},{"name":"SQL_FN_STR_SUBSTRING","features":[200]},{"name":"SQL_FN_STR_UCASE","features":[200]},{"name":"SQL_FN_SYS_DBNAME","features":[200]},{"name":"SQL_FN_SYS_IFNULL","features":[200]},{"name":"SQL_FN_SYS_USERNAME","features":[200]},{"name":"SQL_FN_TD_CURDATE","features":[200]},{"name":"SQL_FN_TD_CURRENT_DATE","features":[200]},{"name":"SQL_FN_TD_CURRENT_TIME","features":[200]},{"name":"SQL_FN_TD_CURRENT_TIMESTAMP","features":[200]},{"name":"SQL_FN_TD_CURTIME","features":[200]},{"name":"SQL_FN_TD_DAYNAME","features":[200]},{"name":"SQL_FN_TD_DAYOFMONTH","features":[200]},{"name":"SQL_FN_TD_DAYOFWEEK","features":[200]},{"name":"SQL_FN_TD_DAYOFYEAR","features":[200]},{"name":"SQL_FN_TD_EXTRACT","features":[200]},{"name":"SQL_FN_TD_HOUR","features":[200]},{"name":"SQL_FN_TD_MINUTE","features":[200]},{"name":"SQL_FN_TD_MONTH","features":[200]},{"name":"SQL_FN_TD_MONTHNAME","features":[200]},{"name":"SQL_FN_TD_NOW","features":[200]},{"name":"SQL_FN_TD_QUARTER","features":[200]},{"name":"SQL_FN_TD_SECOND","features":[200]},{"name":"SQL_FN_TD_TIMESTAMPADD","features":[200]},{"name":"SQL_FN_TD_TIMESTAMPDIFF","features":[200]},{"name":"SQL_FN_TD_WEEK","features":[200]},{"name":"SQL_FN_TD_YEAR","features":[200]},{"name":"SQL_FN_TSI_DAY","features":[200]},{"name":"SQL_FN_TSI_FRAC_SECOND","features":[200]},{"name":"SQL_FN_TSI_HOUR","features":[200]},{"name":"SQL_FN_TSI_MINUTE","features":[200]},{"name":"SQL_FN_TSI_MONTH","features":[200]},{"name":"SQL_FN_TSI_QUARTER","features":[200]},{"name":"SQL_FN_TSI_SECOND","features":[200]},{"name":"SQL_FN_TSI_WEEK","features":[200]},{"name":"SQL_FN_TSI_YEAR","features":[200]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","features":[200]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","features":[200]},{"name":"SQL_GB_COLLATE","features":[200]},{"name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","features":[200]},{"name":"SQL_GB_GROUP_BY_EQUALS_SELECT","features":[200]},{"name":"SQL_GB_NOT_SUPPORTED","features":[200]},{"name":"SQL_GB_NO_RELATION","features":[200]},{"name":"SQL_GD_ANY_COLUMN","features":[200]},{"name":"SQL_GD_ANY_ORDER","features":[200]},{"name":"SQL_GD_BLOCK","features":[200]},{"name":"SQL_GD_BOUND","features":[200]},{"name":"SQL_GD_OUTPUT_PARAMS","features":[200]},{"name":"SQL_GETDATA_EXTENSIONS","features":[200]},{"name":"SQL_GET_BOOKMARK","features":[200]},{"name":"SQL_GROUP_BY","features":[200]},{"name":"SQL_GUID","features":[200]},{"name":"SQL_HANDLE_DBC","features":[200]},{"name":"SQL_HANDLE_DBC_INFO_TOKEN","features":[200]},{"name":"SQL_HANDLE_DESC","features":[200]},{"name":"SQL_HANDLE_ENV","features":[200]},{"name":"SQL_HANDLE_SENV","features":[200]},{"name":"SQL_HANDLE_STMT","features":[200]},{"name":"SQL_HC_DEFAULT","features":[200]},{"name":"SQL_HC_OFF","features":[200]},{"name":"SQL_HC_ON","features":[200]},{"name":"SQL_HOUR","features":[200]},{"name":"SQL_HOUR_TO_MINUTE","features":[200]},{"name":"SQL_HOUR_TO_SECOND","features":[200]},{"name":"SQL_IC_LOWER","features":[200]},{"name":"SQL_IC_MIXED","features":[200]},{"name":"SQL_IC_SENSITIVE","features":[200]},{"name":"SQL_IC_UPPER","features":[200]},{"name":"SQL_IDENTIFIER_CASE","features":[200]},{"name":"SQL_IDENTIFIER_QUOTE_CHAR","features":[200]},{"name":"SQL_IGNORE","features":[200]},{"name":"SQL_IK_ASC","features":[200]},{"name":"SQL_IK_DESC","features":[200]},{"name":"SQL_IK_NONE","features":[200]},{"name":"SQL_INDEX_ALL","features":[200]},{"name":"SQL_INDEX_CLUSTERED","features":[200]},{"name":"SQL_INDEX_HASHED","features":[200]},{"name":"SQL_INDEX_KEYWORDS","features":[200]},{"name":"SQL_INDEX_OTHER","features":[200]},{"name":"SQL_INDEX_UNIQUE","features":[200]},{"name":"SQL_INFO_DRIVER_START","features":[200]},{"name":"SQL_INFO_FIRST","features":[200]},{"name":"SQL_INFO_LAST","features":[200]},{"name":"SQL_INFO_SCHEMA_VIEWS","features":[200]},{"name":"SQL_INFO_SS_FIRST","features":[200]},{"name":"SQL_INFO_SS_MAX_USED","features":[200]},{"name":"SQL_INFO_SS_NETLIB_NAME","features":[200]},{"name":"SQL_INFO_SS_NETLIB_NAMEA","features":[200]},{"name":"SQL_INFO_SS_NETLIB_NAMEW","features":[200]},{"name":"SQL_INITIALLY_DEFERRED","features":[200]},{"name":"SQL_INITIALLY_IMMEDIATE","features":[200]},{"name":"SQL_INSENSITIVE","features":[200]},{"name":"SQL_INSERT_STATEMENT","features":[200]},{"name":"SQL_INTEGER","features":[200]},{"name":"SQL_INTEGRATED_SECURITY","features":[200]},{"name":"SQL_INTEGRITY","features":[200]},{"name":"SQL_INTERVAL","features":[200]},{"name":"SQL_INTERVAL_DAY","features":[200]},{"name":"SQL_INTERVAL_DAY_TO_HOUR","features":[200]},{"name":"SQL_INTERVAL_DAY_TO_MINUTE","features":[200]},{"name":"SQL_INTERVAL_DAY_TO_SECOND","features":[200]},{"name":"SQL_INTERVAL_HOUR","features":[200]},{"name":"SQL_INTERVAL_HOUR_TO_MINUTE","features":[200]},{"name":"SQL_INTERVAL_HOUR_TO_SECOND","features":[200]},{"name":"SQL_INTERVAL_MINUTE","features":[200]},{"name":"SQL_INTERVAL_MINUTE_TO_SECOND","features":[200]},{"name":"SQL_INTERVAL_MONTH","features":[200]},{"name":"SQL_INTERVAL_SECOND","features":[200]},{"name":"SQL_INTERVAL_STRUCT","features":[200]},{"name":"SQL_INTERVAL_YEAR","features":[200]},{"name":"SQL_INTERVAL_YEAR_TO_MONTH","features":[200]},{"name":"SQL_INVALID_HANDLE","features":[200]},{"name":"SQL_ISV_ASSERTIONS","features":[200]},{"name":"SQL_ISV_CHARACTER_SETS","features":[200]},{"name":"SQL_ISV_CHECK_CONSTRAINTS","features":[200]},{"name":"SQL_ISV_COLLATIONS","features":[200]},{"name":"SQL_ISV_COLUMNS","features":[200]},{"name":"SQL_ISV_COLUMN_DOMAIN_USAGE","features":[200]},{"name":"SQL_ISV_COLUMN_PRIVILEGES","features":[200]},{"name":"SQL_ISV_CONSTRAINT_COLUMN_USAGE","features":[200]},{"name":"SQL_ISV_CONSTRAINT_TABLE_USAGE","features":[200]},{"name":"SQL_ISV_DOMAINS","features":[200]},{"name":"SQL_ISV_DOMAIN_CONSTRAINTS","features":[200]},{"name":"SQL_ISV_KEY_COLUMN_USAGE","features":[200]},{"name":"SQL_ISV_REFERENTIAL_CONSTRAINTS","features":[200]},{"name":"SQL_ISV_SCHEMATA","features":[200]},{"name":"SQL_ISV_SQL_LANGUAGES","features":[200]},{"name":"SQL_ISV_TABLES","features":[200]},{"name":"SQL_ISV_TABLE_CONSTRAINTS","features":[200]},{"name":"SQL_ISV_TABLE_PRIVILEGES","features":[200]},{"name":"SQL_ISV_TRANSLATIONS","features":[200]},{"name":"SQL_ISV_USAGE_PRIVILEGES","features":[200]},{"name":"SQL_ISV_VIEWS","features":[200]},{"name":"SQL_ISV_VIEW_COLUMN_USAGE","features":[200]},{"name":"SQL_ISV_VIEW_TABLE_USAGE","features":[200]},{"name":"SQL_IS_DAY","features":[200]},{"name":"SQL_IS_DAY_TO_HOUR","features":[200]},{"name":"SQL_IS_DAY_TO_MINUTE","features":[200]},{"name":"SQL_IS_DAY_TO_SECOND","features":[200]},{"name":"SQL_IS_DEFAULT","features":[200]},{"name":"SQL_IS_HOUR","features":[200]},{"name":"SQL_IS_HOUR_TO_MINUTE","features":[200]},{"name":"SQL_IS_HOUR_TO_SECOND","features":[200]},{"name":"SQL_IS_INSERT_LITERALS","features":[200]},{"name":"SQL_IS_INSERT_SEARCHED","features":[200]},{"name":"SQL_IS_INTEGER","features":[200]},{"name":"SQL_IS_MINUTE","features":[200]},{"name":"SQL_IS_MINUTE_TO_SECOND","features":[200]},{"name":"SQL_IS_MONTH","features":[200]},{"name":"SQL_IS_OFF","features":[200]},{"name":"SQL_IS_ON","features":[200]},{"name":"SQL_IS_POINTER","features":[200]},{"name":"SQL_IS_SECOND","features":[200]},{"name":"SQL_IS_SELECT_INTO","features":[200]},{"name":"SQL_IS_SMALLINT","features":[200]},{"name":"SQL_IS_UINTEGER","features":[200]},{"name":"SQL_IS_USMALLINT","features":[200]},{"name":"SQL_IS_YEAR","features":[200]},{"name":"SQL_IS_YEAR_TO_MONTH","features":[200]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES1","features":[200]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES2","features":[200]},{"name":"SQL_KEYSET_SIZE","features":[200]},{"name":"SQL_KEYSET_SIZE_DEFAULT","features":[200]},{"name":"SQL_KEYWORDS","features":[200]},{"name":"SQL_LCK_EXCLUSIVE","features":[200]},{"name":"SQL_LCK_NO_CHANGE","features":[200]},{"name":"SQL_LCK_UNLOCK","features":[200]},{"name":"SQL_LEN_BINARY_ATTR_OFFSET","features":[200]},{"name":"SQL_LEN_DATA_AT_EXEC_OFFSET","features":[200]},{"name":"SQL_LIKE_ESCAPE_CLAUSE","features":[200]},{"name":"SQL_LIKE_ONLY","features":[200]},{"name":"SQL_LOCK_EXCLUSIVE","features":[200]},{"name":"SQL_LOCK_NO_CHANGE","features":[200]},{"name":"SQL_LOCK_TYPES","features":[200]},{"name":"SQL_LOCK_UNLOCK","features":[200]},{"name":"SQL_LOGIN_TIMEOUT","features":[200]},{"name":"SQL_LOGIN_TIMEOUT_DEFAULT","features":[200]},{"name":"SQL_LONGVARBINARY","features":[200]},{"name":"SQL_LONGVARCHAR","features":[200]},{"name":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","features":[200]},{"name":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","features":[200]},{"name":"SQL_MAXIMUM_COLUMNS_IN_INDEX","features":[200]},{"name":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","features":[200]},{"name":"SQL_MAXIMUM_COLUMNS_IN_SELECT","features":[200]},{"name":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","features":[200]},{"name":"SQL_MAXIMUM_CONCURRENT_ACTIVITIES","features":[200]},{"name":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","features":[200]},{"name":"SQL_MAXIMUM_DRIVER_CONNECTIONS","features":[200]},{"name":"SQL_MAXIMUM_IDENTIFIER_LENGTH","features":[200]},{"name":"SQL_MAXIMUM_INDEX_SIZE","features":[200]},{"name":"SQL_MAXIMUM_ROW_SIZE","features":[200]},{"name":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","features":[200]},{"name":"SQL_MAXIMUM_STATEMENT_LENGTH","features":[200]},{"name":"SQL_MAXIMUM_TABLES_IN_SELECT","features":[200]},{"name":"SQL_MAXIMUM_USER_NAME_LENGTH","features":[200]},{"name":"SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","features":[200]},{"name":"SQL_MAX_BINARY_LITERAL_LEN","features":[200]},{"name":"SQL_MAX_CATALOG_NAME_LEN","features":[200]},{"name":"SQL_MAX_CHAR_LITERAL_LEN","features":[200]},{"name":"SQL_MAX_COLUMNS_IN_GROUP_BY","features":[200]},{"name":"SQL_MAX_COLUMNS_IN_INDEX","features":[200]},{"name":"SQL_MAX_COLUMNS_IN_ORDER_BY","features":[200]},{"name":"SQL_MAX_COLUMNS_IN_SELECT","features":[200]},{"name":"SQL_MAX_COLUMNS_IN_TABLE","features":[200]},{"name":"SQL_MAX_COLUMN_NAME_LEN","features":[200]},{"name":"SQL_MAX_CONCURRENT_ACTIVITIES","features":[200]},{"name":"SQL_MAX_CURSOR_NAME_LEN","features":[200]},{"name":"SQL_MAX_DRIVER_CONNECTIONS","features":[200]},{"name":"SQL_MAX_DSN_LENGTH","features":[200]},{"name":"SQL_MAX_IDENTIFIER_LEN","features":[200]},{"name":"SQL_MAX_INDEX_SIZE","features":[200]},{"name":"SQL_MAX_LENGTH","features":[200]},{"name":"SQL_MAX_LENGTH_DEFAULT","features":[200]},{"name":"SQL_MAX_MESSAGE_LENGTH","features":[200]},{"name":"SQL_MAX_NUMERIC_LEN","features":[200]},{"name":"SQL_MAX_OPTION_STRING_LENGTH","features":[200]},{"name":"SQL_MAX_OWNER_NAME_LEN","features":[200]},{"name":"SQL_MAX_PROCEDURE_NAME_LEN","features":[200]},{"name":"SQL_MAX_QUALIFIER_NAME_LEN","features":[200]},{"name":"SQL_MAX_ROWS","features":[200]},{"name":"SQL_MAX_ROWS_DEFAULT","features":[200]},{"name":"SQL_MAX_ROW_SIZE","features":[200]},{"name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","features":[200]},{"name":"SQL_MAX_SCHEMA_NAME_LEN","features":[200]},{"name":"SQL_MAX_SQLSERVERNAME","features":[200]},{"name":"SQL_MAX_STATEMENT_LEN","features":[200]},{"name":"SQL_MAX_TABLES_IN_SELECT","features":[200]},{"name":"SQL_MAX_TABLE_NAME_LEN","features":[200]},{"name":"SQL_MAX_USER_NAME_LEN","features":[200]},{"name":"SQL_MINUTE","features":[200]},{"name":"SQL_MINUTE_TO_SECOND","features":[200]},{"name":"SQL_MODE_DEFAULT","features":[200]},{"name":"SQL_MODE_READ_ONLY","features":[200]},{"name":"SQL_MODE_READ_WRITE","features":[200]},{"name":"SQL_MONTH","features":[200]},{"name":"SQL_MORE_INFO_NO","features":[200]},{"name":"SQL_MORE_INFO_YES","features":[200]},{"name":"SQL_MULTIPLE_ACTIVE_TXN","features":[200]},{"name":"SQL_MULT_RESULT_SETS","features":[200]},{"name":"SQL_NAMED","features":[200]},{"name":"SQL_NB_DEFAULT","features":[200]},{"name":"SQL_NB_OFF","features":[200]},{"name":"SQL_NB_ON","features":[200]},{"name":"SQL_NC_END","features":[200]},{"name":"SQL_NC_HIGH","features":[200]},{"name":"SQL_NC_LOW","features":[200]},{"name":"SQL_NC_OFF","features":[200]},{"name":"SQL_NC_ON","features":[200]},{"name":"SQL_NC_START","features":[200]},{"name":"SQL_NEED_DATA","features":[200]},{"name":"SQL_NEED_LONG_DATA_LEN","features":[200]},{"name":"SQL_NNC_NON_NULL","features":[200]},{"name":"SQL_NNC_NULL","features":[200]},{"name":"SQL_NONSCROLLABLE","features":[200]},{"name":"SQL_NON_NULLABLE_COLUMNS","features":[200]},{"name":"SQL_NOSCAN","features":[200]},{"name":"SQL_NOSCAN_DEFAULT","features":[200]},{"name":"SQL_NOSCAN_OFF","features":[200]},{"name":"SQL_NOSCAN_ON","features":[200]},{"name":"SQL_NOT_DEFERRABLE","features":[200]},{"name":"SQL_NO_ACTION","features":[200]},{"name":"SQL_NO_COLUMN_NUMBER","features":[200]},{"name":"SQL_NO_DATA","features":[200]},{"name":"SQL_NO_DATA_FOUND","features":[200]},{"name":"SQL_NO_NULLS","features":[200]},{"name":"SQL_NO_ROW_NUMBER","features":[200]},{"name":"SQL_NO_TOTAL","features":[200]},{"name":"SQL_NTS","features":[200]},{"name":"SQL_NTSL","features":[200]},{"name":"SQL_NULLABLE","features":[200]},{"name":"SQL_NULLABLE_UNKNOWN","features":[200]},{"name":"SQL_NULL_COLLATION","features":[200]},{"name":"SQL_NULL_DATA","features":[200]},{"name":"SQL_NULL_HANDLE","features":[200]},{"name":"SQL_NULL_HDBC","features":[200]},{"name":"SQL_NULL_HDESC","features":[200]},{"name":"SQL_NULL_HENV","features":[200]},{"name":"SQL_NULL_HSTMT","features":[200]},{"name":"SQL_NUMERIC","features":[200]},{"name":"SQL_NUMERIC_FUNCTIONS","features":[200]},{"name":"SQL_NUMERIC_STRUCT","features":[200]},{"name":"SQL_NUM_FUNCTIONS","features":[200]},{"name":"SQL_OAC_LEVEL1","features":[200]},{"name":"SQL_OAC_LEVEL2","features":[200]},{"name":"SQL_OAC_NONE","features":[200]},{"name":"SQL_ODBC_API_CONFORMANCE","features":[200]},{"name":"SQL_ODBC_CURSORS","features":[200]},{"name":"SQL_ODBC_INTERFACE_CONFORMANCE","features":[200]},{"name":"SQL_ODBC_KEYWORDS","features":[200]},{"name":"SQL_ODBC_SAG_CLI_CONFORMANCE","features":[200]},{"name":"SQL_ODBC_SQL_CONFORMANCE","features":[200]},{"name":"SQL_ODBC_SQL_OPT_IEF","features":[200]},{"name":"SQL_ODBC_VER","features":[200]},{"name":"SQL_OIC_CORE","features":[200]},{"name":"SQL_OIC_LEVEL1","features":[200]},{"name":"SQL_OIC_LEVEL2","features":[200]},{"name":"SQL_OJ_ALL_COMPARISON_OPS","features":[200]},{"name":"SQL_OJ_CAPABILITIES","features":[200]},{"name":"SQL_OJ_FULL","features":[200]},{"name":"SQL_OJ_INNER","features":[200]},{"name":"SQL_OJ_LEFT","features":[200]},{"name":"SQL_OJ_NESTED","features":[200]},{"name":"SQL_OJ_NOT_ORDERED","features":[200]},{"name":"SQL_OJ_RIGHT","features":[200]},{"name":"SQL_OPT_TRACE","features":[200]},{"name":"SQL_OPT_TRACEFILE","features":[200]},{"name":"SQL_OPT_TRACE_DEFAULT","features":[200]},{"name":"SQL_OPT_TRACE_FILE_DEFAULT","features":[200]},{"name":"SQL_OPT_TRACE_OFF","features":[200]},{"name":"SQL_OPT_TRACE_ON","features":[200]},{"name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","features":[200]},{"name":"SQL_OSCC_COMPLIANT","features":[200]},{"name":"SQL_OSCC_NOT_COMPLIANT","features":[200]},{"name":"SQL_OSC_CORE","features":[200]},{"name":"SQL_OSC_EXTENDED","features":[200]},{"name":"SQL_OSC_MINIMUM","features":[200]},{"name":"SQL_OUTER_JOINS","features":[200]},{"name":"SQL_OUTER_JOIN_CAPABILITIES","features":[200]},{"name":"SQL_OU_DML_STATEMENTS","features":[200]},{"name":"SQL_OU_INDEX_DEFINITION","features":[200]},{"name":"SQL_OU_PRIVILEGE_DEFINITION","features":[200]},{"name":"SQL_OU_PROCEDURE_INVOCATION","features":[200]},{"name":"SQL_OU_TABLE_DEFINITION","features":[200]},{"name":"SQL_OV_ODBC2","features":[200]},{"name":"SQL_OV_ODBC3","features":[200]},{"name":"SQL_OV_ODBC3_80","features":[200]},{"name":"SQL_OWNER_TERM","features":[200]},{"name":"SQL_OWNER_USAGE","features":[200]},{"name":"SQL_PACKET_SIZE","features":[200]},{"name":"SQL_PARAM_ARRAY_ROW_COUNTS","features":[200]},{"name":"SQL_PARAM_ARRAY_SELECTS","features":[200]},{"name":"SQL_PARAM_BIND_BY_COLUMN","features":[200]},{"name":"SQL_PARAM_BIND_TYPE_DEFAULT","features":[200]},{"name":"SQL_PARAM_DATA_AVAILABLE","features":[200]},{"name":"SQL_PARAM_DIAG_UNAVAILABLE","features":[200]},{"name":"SQL_PARAM_ERROR","features":[200]},{"name":"SQL_PARAM_IGNORE","features":[200]},{"name":"SQL_PARAM_INPUT","features":[200]},{"name":"SQL_PARAM_INPUT_OUTPUT","features":[200]},{"name":"SQL_PARAM_INPUT_OUTPUT_STREAM","features":[200]},{"name":"SQL_PARAM_OUTPUT","features":[200]},{"name":"SQL_PARAM_OUTPUT_STREAM","features":[200]},{"name":"SQL_PARAM_PROCEED","features":[200]},{"name":"SQL_PARAM_SUCCESS","features":[200]},{"name":"SQL_PARAM_SUCCESS_WITH_INFO","features":[200]},{"name":"SQL_PARAM_TYPE_UNKNOWN","features":[200]},{"name":"SQL_PARAM_UNUSED","features":[200]},{"name":"SQL_PARC_BATCH","features":[200]},{"name":"SQL_PARC_NO_BATCH","features":[200]},{"name":"SQL_PAS_BATCH","features":[200]},{"name":"SQL_PAS_NO_BATCH","features":[200]},{"name":"SQL_PAS_NO_SELECT","features":[200]},{"name":"SQL_PC_DEFAULT","features":[200]},{"name":"SQL_PC_NON_PSEUDO","features":[200]},{"name":"SQL_PC_NOT_PSEUDO","features":[200]},{"name":"SQL_PC_OFF","features":[200]},{"name":"SQL_PC_ON","features":[200]},{"name":"SQL_PC_PSEUDO","features":[200]},{"name":"SQL_PC_UNKNOWN","features":[200]},{"name":"SQL_PERF_START","features":[200]},{"name":"SQL_PERF_STOP","features":[200]},{"name":"SQL_POSITION","features":[200]},{"name":"SQL_POSITIONED_STATEMENTS","features":[200]},{"name":"SQL_POS_ADD","features":[200]},{"name":"SQL_POS_DELETE","features":[200]},{"name":"SQL_POS_OPERATIONS","features":[200]},{"name":"SQL_POS_POSITION","features":[200]},{"name":"SQL_POS_REFRESH","features":[200]},{"name":"SQL_POS_UPDATE","features":[200]},{"name":"SQL_PRED_BASIC","features":[200]},{"name":"SQL_PRED_CHAR","features":[200]},{"name":"SQL_PRED_NONE","features":[200]},{"name":"SQL_PRED_SEARCHABLE","features":[200]},{"name":"SQL_PRESERVE_CURSORS","features":[200]},{"name":"SQL_PROCEDURES","features":[200]},{"name":"SQL_PROCEDURE_TERM","features":[200]},{"name":"SQL_PS_POSITIONED_DELETE","features":[200]},{"name":"SQL_PS_POSITIONED_UPDATE","features":[200]},{"name":"SQL_PS_SELECT_FOR_UPDATE","features":[200]},{"name":"SQL_PT_FUNCTION","features":[200]},{"name":"SQL_PT_PROCEDURE","features":[200]},{"name":"SQL_PT_UNKNOWN","features":[200]},{"name":"SQL_QI_DEFAULT","features":[200]},{"name":"SQL_QI_OFF","features":[200]},{"name":"SQL_QI_ON","features":[200]},{"name":"SQL_QL_END","features":[200]},{"name":"SQL_QL_START","features":[200]},{"name":"SQL_QUALIFIER_LOCATION","features":[200]},{"name":"SQL_QUALIFIER_NAME_SEPARATOR","features":[200]},{"name":"SQL_QUALIFIER_TERM","features":[200]},{"name":"SQL_QUALIFIER_USAGE","features":[200]},{"name":"SQL_QUERY_TIMEOUT","features":[200]},{"name":"SQL_QUERY_TIMEOUT_DEFAULT","features":[200]},{"name":"SQL_QUICK","features":[200]},{"name":"SQL_QUIET_MODE","features":[200]},{"name":"SQL_QUOTED_IDENTIFIER_CASE","features":[200]},{"name":"SQL_QU_DML_STATEMENTS","features":[200]},{"name":"SQL_QU_INDEX_DEFINITION","features":[200]},{"name":"SQL_QU_PRIVILEGE_DEFINITION","features":[200]},{"name":"SQL_QU_PROCEDURE_INVOCATION","features":[200]},{"name":"SQL_QU_TABLE_DEFINITION","features":[200]},{"name":"SQL_RD_DEFAULT","features":[200]},{"name":"SQL_RD_OFF","features":[200]},{"name":"SQL_RD_ON","features":[200]},{"name":"SQL_REAL","features":[200]},{"name":"SQL_REFRESH","features":[200]},{"name":"SQL_REMOTE_PWD","features":[200]},{"name":"SQL_RESET_CONNECTION_YES","features":[200]},{"name":"SQL_RESET_PARAMS","features":[200]},{"name":"SQL_RESET_YES","features":[200]},{"name":"SQL_RESTRICT","features":[200]},{"name":"SQL_RESULT_COL","features":[200]},{"name":"SQL_RETRIEVE_DATA","features":[200]},{"name":"SQL_RETURN_VALUE","features":[200]},{"name":"SQL_RE_DEFAULT","features":[200]},{"name":"SQL_RE_OFF","features":[200]},{"name":"SQL_RE_ON","features":[200]},{"name":"SQL_ROLLBACK","features":[200]},{"name":"SQL_ROWSET_SIZE","features":[200]},{"name":"SQL_ROWSET_SIZE_DEFAULT","features":[200]},{"name":"SQL_ROWVER","features":[200]},{"name":"SQL_ROW_ADDED","features":[200]},{"name":"SQL_ROW_DELETED","features":[200]},{"name":"SQL_ROW_ERROR","features":[200]},{"name":"SQL_ROW_IDENTIFIER","features":[200]},{"name":"SQL_ROW_IGNORE","features":[200]},{"name":"SQL_ROW_NOROW","features":[200]},{"name":"SQL_ROW_NUMBER","features":[200]},{"name":"SQL_ROW_NUMBER_UNKNOWN","features":[200]},{"name":"SQL_ROW_PROCEED","features":[200]},{"name":"SQL_ROW_SUCCESS","features":[200]},{"name":"SQL_ROW_SUCCESS_WITH_INFO","features":[200]},{"name":"SQL_ROW_UPDATED","features":[200]},{"name":"SQL_ROW_UPDATES","features":[200]},{"name":"SQL_SCCO_LOCK","features":[200]},{"name":"SQL_SCCO_OPT_ROWVER","features":[200]},{"name":"SQL_SCCO_OPT_TIMESTAMP","features":[200]},{"name":"SQL_SCCO_OPT_VALUES","features":[200]},{"name":"SQL_SCCO_READ_ONLY","features":[200]},{"name":"SQL_SCC_ISO92_CLI","features":[200]},{"name":"SQL_SCC_XOPEN_CLI_VERSION1","features":[200]},{"name":"SQL_SCHEMA_TERM","features":[200]},{"name":"SQL_SCHEMA_USAGE","features":[200]},{"name":"SQL_SCOPE_CURROW","features":[200]},{"name":"SQL_SCOPE_SESSION","features":[200]},{"name":"SQL_SCOPE_TRANSACTION","features":[200]},{"name":"SQL_SCROLLABLE","features":[200]},{"name":"SQL_SCROLL_CONCURRENCY","features":[200]},{"name":"SQL_SCROLL_DYNAMIC","features":[200]},{"name":"SQL_SCROLL_FORWARD_ONLY","features":[200]},{"name":"SQL_SCROLL_KEYSET_DRIVEN","features":[200]},{"name":"SQL_SCROLL_OPTIONS","features":[200]},{"name":"SQL_SCROLL_STATIC","features":[200]},{"name":"SQL_SC_FIPS127_2_TRANSITIONAL","features":[200]},{"name":"SQL_SC_NON_UNIQUE","features":[200]},{"name":"SQL_SC_SQL92_ENTRY","features":[200]},{"name":"SQL_SC_SQL92_FULL","features":[200]},{"name":"SQL_SC_SQL92_INTERMEDIATE","features":[200]},{"name":"SQL_SC_TRY_UNIQUE","features":[200]},{"name":"SQL_SC_UNIQUE","features":[200]},{"name":"SQL_SDF_CURRENT_DATE","features":[200]},{"name":"SQL_SDF_CURRENT_TIME","features":[200]},{"name":"SQL_SDF_CURRENT_TIMESTAMP","features":[200]},{"name":"SQL_SEARCHABLE","features":[200]},{"name":"SQL_SEARCH_PATTERN_ESCAPE","features":[200]},{"name":"SQL_SECOND","features":[200]},{"name":"SQL_SENSITIVE","features":[200]},{"name":"SQL_SERVER_NAME","features":[200]},{"name":"SQL_SETPARAM_VALUE_MAX","features":[200]},{"name":"SQL_SETPOS_MAX_LOCK_VALUE","features":[200]},{"name":"SQL_SETPOS_MAX_OPTION_VALUE","features":[200]},{"name":"SQL_SET_DEFAULT","features":[200]},{"name":"SQL_SET_NULL","features":[200]},{"name":"SQL_SFKD_CASCADE","features":[200]},{"name":"SQL_SFKD_NO_ACTION","features":[200]},{"name":"SQL_SFKD_SET_DEFAULT","features":[200]},{"name":"SQL_SFKD_SET_NULL","features":[200]},{"name":"SQL_SFKU_CASCADE","features":[200]},{"name":"SQL_SFKU_NO_ACTION","features":[200]},{"name":"SQL_SFKU_SET_DEFAULT","features":[200]},{"name":"SQL_SFKU_SET_NULL","features":[200]},{"name":"SQL_SG_DELETE_TABLE","features":[200]},{"name":"SQL_SG_INSERT_COLUMN","features":[200]},{"name":"SQL_SG_INSERT_TABLE","features":[200]},{"name":"SQL_SG_REFERENCES_COLUMN","features":[200]},{"name":"SQL_SG_REFERENCES_TABLE","features":[200]},{"name":"SQL_SG_SELECT_TABLE","features":[200]},{"name":"SQL_SG_UPDATE_COLUMN","features":[200]},{"name":"SQL_SG_UPDATE_TABLE","features":[200]},{"name":"SQL_SG_USAGE_ON_CHARACTER_SET","features":[200]},{"name":"SQL_SG_USAGE_ON_COLLATION","features":[200]},{"name":"SQL_SG_USAGE_ON_DOMAIN","features":[200]},{"name":"SQL_SG_USAGE_ON_TRANSLATION","features":[200]},{"name":"SQL_SG_WITH_GRANT_OPTION","features":[200]},{"name":"SQL_SIGNED_OFFSET","features":[200]},{"name":"SQL_SIMULATE_CURSOR","features":[200]},{"name":"SQL_SMALLINT","features":[200]},{"name":"SQL_SNVF_BIT_LENGTH","features":[200]},{"name":"SQL_SNVF_CHARACTER_LENGTH","features":[200]},{"name":"SQL_SNVF_CHAR_LENGTH","features":[200]},{"name":"SQL_SNVF_EXTRACT","features":[200]},{"name":"SQL_SNVF_OCTET_LENGTH","features":[200]},{"name":"SQL_SNVF_POSITION","features":[200]},{"name":"SQL_SOPT_SS_BASE","features":[200]},{"name":"SQL_SOPT_SS_CURRENT_COMMAND","features":[200]},{"name":"SQL_SOPT_SS_CURSOR_OPTIONS","features":[200]},{"name":"SQL_SOPT_SS_DEFER_PREPARE","features":[200]},{"name":"SQL_SOPT_SS_HIDDEN_COLUMNS","features":[200]},{"name":"SQL_SOPT_SS_MAX_USED","features":[200]},{"name":"SQL_SOPT_SS_NOBROWSETABLE","features":[200]},{"name":"SQL_SOPT_SS_NOCOUNT_STATUS","features":[200]},{"name":"SQL_SOPT_SS_REGIONALIZE","features":[200]},{"name":"SQL_SOPT_SS_TEXTPTR_LOGGING","features":[200]},{"name":"SQL_SO_DYNAMIC","features":[200]},{"name":"SQL_SO_FORWARD_ONLY","features":[200]},{"name":"SQL_SO_KEYSET_DRIVEN","features":[200]},{"name":"SQL_SO_MIXED","features":[200]},{"name":"SQL_SO_STATIC","features":[200]},{"name":"SQL_SPECIAL_CHARACTERS","features":[200]},{"name":"SQL_SPEC_MAJOR","features":[200]},{"name":"SQL_SPEC_MINOR","features":[200]},{"name":"SQL_SPEC_STRING","features":[200]},{"name":"SQL_SP_BETWEEN","features":[200]},{"name":"SQL_SP_COMPARISON","features":[200]},{"name":"SQL_SP_EXISTS","features":[200]},{"name":"SQL_SP_IN","features":[200]},{"name":"SQL_SP_ISNOTNULL","features":[200]},{"name":"SQL_SP_ISNULL","features":[200]},{"name":"SQL_SP_LIKE","features":[200]},{"name":"SQL_SP_MATCH_FULL","features":[200]},{"name":"SQL_SP_MATCH_PARTIAL","features":[200]},{"name":"SQL_SP_MATCH_UNIQUE_FULL","features":[200]},{"name":"SQL_SP_MATCH_UNIQUE_PARTIAL","features":[200]},{"name":"SQL_SP_OVERLAPS","features":[200]},{"name":"SQL_SP_QUANTIFIED_COMPARISON","features":[200]},{"name":"SQL_SP_UNIQUE","features":[200]},{"name":"SQL_SQL92_DATETIME_FUNCTIONS","features":[200]},{"name":"SQL_SQL92_FOREIGN_KEY_DELETE_RULE","features":[200]},{"name":"SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","features":[200]},{"name":"SQL_SQL92_GRANT","features":[200]},{"name":"SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","features":[200]},{"name":"SQL_SQL92_PREDICATES","features":[200]},{"name":"SQL_SQL92_RELATIONAL_JOIN_OPERATORS","features":[200]},{"name":"SQL_SQL92_REVOKE","features":[200]},{"name":"SQL_SQL92_ROW_VALUE_CONSTRUCTOR","features":[200]},{"name":"SQL_SQL92_STRING_FUNCTIONS","features":[200]},{"name":"SQL_SQL92_VALUE_EXPRESSIONS","features":[200]},{"name":"SQL_SQLSTATE_SIZE","features":[200]},{"name":"SQL_SQLSTATE_SIZEW","features":[200]},{"name":"SQL_SQL_CONFORMANCE","features":[200]},{"name":"SQL_SQ_COMPARISON","features":[200]},{"name":"SQL_SQ_CORRELATED_SUBQUERIES","features":[200]},{"name":"SQL_SQ_EXISTS","features":[200]},{"name":"SQL_SQ_IN","features":[200]},{"name":"SQL_SQ_QUANTIFIED","features":[200]},{"name":"SQL_SRJO_CORRESPONDING_CLAUSE","features":[200]},{"name":"SQL_SRJO_CROSS_JOIN","features":[200]},{"name":"SQL_SRJO_EXCEPT_JOIN","features":[200]},{"name":"SQL_SRJO_FULL_OUTER_JOIN","features":[200]},{"name":"SQL_SRJO_INNER_JOIN","features":[200]},{"name":"SQL_SRJO_INTERSECT_JOIN","features":[200]},{"name":"SQL_SRJO_LEFT_OUTER_JOIN","features":[200]},{"name":"SQL_SRJO_NATURAL_JOIN","features":[200]},{"name":"SQL_SRJO_RIGHT_OUTER_JOIN","features":[200]},{"name":"SQL_SRJO_UNION_JOIN","features":[200]},{"name":"SQL_SRVC_DEFAULT","features":[200]},{"name":"SQL_SRVC_NULL","features":[200]},{"name":"SQL_SRVC_ROW_SUBQUERY","features":[200]},{"name":"SQL_SRVC_VALUE_EXPRESSION","features":[200]},{"name":"SQL_SR_CASCADE","features":[200]},{"name":"SQL_SR_DELETE_TABLE","features":[200]},{"name":"SQL_SR_GRANT_OPTION_FOR","features":[200]},{"name":"SQL_SR_INSERT_COLUMN","features":[200]},{"name":"SQL_SR_INSERT_TABLE","features":[200]},{"name":"SQL_SR_REFERENCES_COLUMN","features":[200]},{"name":"SQL_SR_REFERENCES_TABLE","features":[200]},{"name":"SQL_SR_RESTRICT","features":[200]},{"name":"SQL_SR_SELECT_TABLE","features":[200]},{"name":"SQL_SR_UPDATE_COLUMN","features":[200]},{"name":"SQL_SR_UPDATE_TABLE","features":[200]},{"name":"SQL_SR_USAGE_ON_CHARACTER_SET","features":[200]},{"name":"SQL_SR_USAGE_ON_COLLATION","features":[200]},{"name":"SQL_SR_USAGE_ON_DOMAIN","features":[200]},{"name":"SQL_SR_USAGE_ON_TRANSLATION","features":[200]},{"name":"SQL_SSF_CONVERT","features":[200]},{"name":"SQL_SSF_LOWER","features":[200]},{"name":"SQL_SSF_SUBSTRING","features":[200]},{"name":"SQL_SSF_TRANSLATE","features":[200]},{"name":"SQL_SSF_TRIM_BOTH","features":[200]},{"name":"SQL_SSF_TRIM_LEADING","features":[200]},{"name":"SQL_SSF_TRIM_TRAILING","features":[200]},{"name":"SQL_SSF_UPPER","features":[200]},{"name":"SQL_SS_ADDITIONS","features":[200]},{"name":"SQL_SS_DELETIONS","features":[200]},{"name":"SQL_SS_DL_DEFAULT","features":[200]},{"name":"SQL_SS_QI_DEFAULT","features":[200]},{"name":"SQL_SS_QL_DEFAULT","features":[200]},{"name":"SQL_SS_UPDATES","features":[200]},{"name":"SQL_SS_VARIANT","features":[200]},{"name":"SQL_STANDARD_CLI_CONFORMANCE","features":[200]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES1","features":[200]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES2","features":[200]},{"name":"SQL_STATIC_SENSITIVITY","features":[200]},{"name":"SQL_STILL_EXECUTING","features":[200]},{"name":"SQL_STMT_OPT_MAX","features":[200]},{"name":"SQL_STMT_OPT_MIN","features":[200]},{"name":"SQL_STRING_FUNCTIONS","features":[200]},{"name":"SQL_SUBQUERIES","features":[200]},{"name":"SQL_SUCCESS","features":[200]},{"name":"SQL_SUCCESS_WITH_INFO","features":[200]},{"name":"SQL_SU_DML_STATEMENTS","features":[200]},{"name":"SQL_SU_INDEX_DEFINITION","features":[200]},{"name":"SQL_SU_PRIVILEGE_DEFINITION","features":[200]},{"name":"SQL_SU_PROCEDURE_INVOCATION","features":[200]},{"name":"SQL_SU_TABLE_DEFINITION","features":[200]},{"name":"SQL_SVE_CASE","features":[200]},{"name":"SQL_SVE_CAST","features":[200]},{"name":"SQL_SVE_COALESCE","features":[200]},{"name":"SQL_SVE_NULLIF","features":[200]},{"name":"SQL_SYSTEM_FUNCTIONS","features":[200]},{"name":"SQL_TABLE_STAT","features":[200]},{"name":"SQL_TABLE_TERM","features":[200]},{"name":"SQL_TC_ALL","features":[200]},{"name":"SQL_TC_DDL_COMMIT","features":[200]},{"name":"SQL_TC_DDL_IGNORE","features":[200]},{"name":"SQL_TC_DML","features":[200]},{"name":"SQL_TC_NONE","features":[200]},{"name":"SQL_TEXTPTR_LOGGING","features":[200]},{"name":"SQL_TIME","features":[200]},{"name":"SQL_TIMEDATE_ADD_INTERVALS","features":[200]},{"name":"SQL_TIMEDATE_DIFF_INTERVALS","features":[200]},{"name":"SQL_TIMEDATE_FUNCTIONS","features":[200]},{"name":"SQL_TIMESTAMP","features":[200]},{"name":"SQL_TIMESTAMP_LEN","features":[200]},{"name":"SQL_TIME_LEN","features":[200]},{"name":"SQL_TINYINT","features":[200]},{"name":"SQL_TL_DEFAULT","features":[200]},{"name":"SQL_TL_OFF","features":[200]},{"name":"SQL_TL_ON","features":[200]},{"name":"SQL_TRANSACTION_CAPABLE","features":[200]},{"name":"SQL_TRANSACTION_ISOLATION_OPTION","features":[200]},{"name":"SQL_TRANSACTION_READ_COMMITTED","features":[200]},{"name":"SQL_TRANSACTION_READ_UNCOMMITTED","features":[200]},{"name":"SQL_TRANSACTION_REPEATABLE_READ","features":[200]},{"name":"SQL_TRANSACTION_SERIALIZABLE","features":[200]},{"name":"SQL_TRANSLATE_DLL","features":[200]},{"name":"SQL_TRANSLATE_OPTION","features":[200]},{"name":"SQL_TRUE","features":[200]},{"name":"SQL_TXN_CAPABLE","features":[200]},{"name":"SQL_TXN_ISOLATION","features":[200]},{"name":"SQL_TXN_ISOLATION_OPTION","features":[200]},{"name":"SQL_TXN_READ_COMMITTED","features":[200]},{"name":"SQL_TXN_READ_UNCOMMITTED","features":[200]},{"name":"SQL_TXN_REPEATABLE_READ","features":[200]},{"name":"SQL_TXN_SERIALIZABLE","features":[200]},{"name":"SQL_TXN_VERSIONING","features":[200]},{"name":"SQL_TYPE_DATE","features":[200]},{"name":"SQL_TYPE_DRIVER_END","features":[200]},{"name":"SQL_TYPE_DRIVER_START","features":[200]},{"name":"SQL_TYPE_MAX","features":[200]},{"name":"SQL_TYPE_MIN","features":[200]},{"name":"SQL_TYPE_NULL","features":[200]},{"name":"SQL_TYPE_TIME","features":[200]},{"name":"SQL_TYPE_TIMESTAMP","features":[200]},{"name":"SQL_UB_DEFAULT","features":[200]},{"name":"SQL_UB_FIXED","features":[200]},{"name":"SQL_UB_OFF","features":[200]},{"name":"SQL_UB_ON","features":[200]},{"name":"SQL_UB_VARIABLE","features":[200]},{"name":"SQL_UNBIND","features":[200]},{"name":"SQL_UNICODE","features":[200]},{"name":"SQL_UNICODE_CHAR","features":[200]},{"name":"SQL_UNICODE_LONGVARCHAR","features":[200]},{"name":"SQL_UNICODE_VARCHAR","features":[200]},{"name":"SQL_UNION","features":[200]},{"name":"SQL_UNION_STATEMENT","features":[200]},{"name":"SQL_UNKNOWN_TYPE","features":[200]},{"name":"SQL_UNNAMED","features":[200]},{"name":"SQL_UNSEARCHABLE","features":[200]},{"name":"SQL_UNSIGNED_OFFSET","features":[200]},{"name":"SQL_UNSPECIFIED","features":[200]},{"name":"SQL_UPDATE","features":[200]},{"name":"SQL_UPDATE_BY_BOOKMARK","features":[200]},{"name":"SQL_UP_DEFAULT","features":[200]},{"name":"SQL_UP_OFF","features":[200]},{"name":"SQL_UP_ON","features":[200]},{"name":"SQL_UP_ON_DROP","features":[200]},{"name":"SQL_USER_NAME","features":[200]},{"name":"SQL_USE_BOOKMARKS","features":[200]},{"name":"SQL_USE_PROCEDURE_FOR_PREPARE","features":[200]},{"name":"SQL_US_UNION","features":[200]},{"name":"SQL_US_UNION_ALL","features":[200]},{"name":"SQL_U_UNION","features":[200]},{"name":"SQL_U_UNION_ALL","features":[200]},{"name":"SQL_VARBINARY","features":[200]},{"name":"SQL_VARCHAR","features":[200]},{"name":"SQL_VARLEN_DATA","features":[200]},{"name":"SQL_WARN_NO","features":[200]},{"name":"SQL_WARN_YES","features":[200]},{"name":"SQL_WCHAR","features":[200]},{"name":"SQL_WLONGVARCHAR","features":[200]},{"name":"SQL_WVARCHAR","features":[200]},{"name":"SQL_XL_DEFAULT","features":[200]},{"name":"SQL_XL_OFF","features":[200]},{"name":"SQL_XL_ON","features":[200]},{"name":"SQL_XOPEN_CLI_YEAR","features":[200]},{"name":"SQL_YEAR","features":[200]},{"name":"SQL_YEAR_MONTH_STRUCT","features":[200]},{"name":"SQL_YEAR_TO_MONTH","features":[200]},{"name":"SQLudtBINARY","features":[200]},{"name":"SQLudtBIT","features":[200]},{"name":"SQLudtBITN","features":[200]},{"name":"SQLudtCHAR","features":[200]},{"name":"SQLudtDATETIM4","features":[200]},{"name":"SQLudtDATETIME","features":[200]},{"name":"SQLudtDATETIMN","features":[200]},{"name":"SQLudtDECML","features":[200]},{"name":"SQLudtDECMLN","features":[200]},{"name":"SQLudtFLT4","features":[200]},{"name":"SQLudtFLT8","features":[200]},{"name":"SQLudtFLTN","features":[200]},{"name":"SQLudtIMAGE","features":[200]},{"name":"SQLudtINT1","features":[200]},{"name":"SQLudtINT2","features":[200]},{"name":"SQLudtINT4","features":[200]},{"name":"SQLudtINTN","features":[200]},{"name":"SQLudtMONEY","features":[200]},{"name":"SQLudtMONEY4","features":[200]},{"name":"SQLudtMONEYN","features":[200]},{"name":"SQLudtNUM","features":[200]},{"name":"SQLudtNUMN","features":[200]},{"name":"SQLudtSYSNAME","features":[200]},{"name":"SQLudtTEXT","features":[200]},{"name":"SQLudtTIMESTAMP","features":[200]},{"name":"SQLudtUNIQUEIDENTIFIER","features":[200]},{"name":"SQLudtVARBINARY","features":[200]},{"name":"SQLudtVARCHAR","features":[200]},{"name":"SQMO_DEFAULT_PROPERTY","features":[200]},{"name":"SQMO_GENERATOR_FOR_TYPE","features":[200]},{"name":"SQMO_MAP_PROPERTY","features":[200]},{"name":"SQMO_VIRTUAL_PROPERTY","features":[200]},{"name":"SQPE_EXTRA_CLOSING_PARENTHESIS","features":[200]},{"name":"SQPE_EXTRA_OPENING_PARENTHESIS","features":[200]},{"name":"SQPE_IGNORED_CONNECTOR","features":[200]},{"name":"SQPE_IGNORED_KEYWORD","features":[200]},{"name":"SQPE_IGNORED_MODIFIER","features":[200]},{"name":"SQPE_NONE","features":[200]},{"name":"SQPE_UNHANDLED","features":[200]},{"name":"SQRO_ADD_ROBUST_ITEM_NAME","features":[200]},{"name":"SQRO_ADD_VALUE_TYPE_FOR_PLAIN_VALUES","features":[200]},{"name":"SQRO_ALWAYS_ONE_INTERVAL","features":[200]},{"name":"SQRO_DEFAULT","features":[200]},{"name":"SQRO_DONT_MAP_RELATIONS","features":[200]},{"name":"SQRO_DONT_REMOVE_UNRESTRICTED_KEYWORDS","features":[200]},{"name":"SQRO_DONT_RESOLVE_DATETIME","features":[200]},{"name":"SQRO_DONT_RESOLVE_RANGES","features":[200]},{"name":"SQRO_DONT_SIMPLIFY_CONDITION_TREES","features":[200]},{"name":"SQRO_DONT_SPLIT_WORDS","features":[200]},{"name":"SQRO_IGNORE_PHRASE_ORDER","features":[200]},{"name":"SQSO_AUTOMATIC_WILDCARD","features":[200]},{"name":"SQSO_CONNECTOR_CASE","features":[200]},{"name":"SQSO_IMPLICIT_CONNECTOR","features":[200]},{"name":"SQSO_LANGUAGE_KEYWORDS","features":[200]},{"name":"SQSO_LOCALE_WORD_BREAKING","features":[200]},{"name":"SQSO_NATURAL_SYNTAX","features":[200]},{"name":"SQSO_SCHEMA","features":[200]},{"name":"SQSO_SYNTAX","features":[200]},{"name":"SQSO_TIME_ZONE","features":[200]},{"name":"SQSO_TRACE_LEVEL","features":[200]},{"name":"SQSO_WORD_BREAKER","features":[200]},{"name":"SQS_ADVANCED_QUERY_SYNTAX","features":[200]},{"name":"SQS_NATURAL_QUERY_SYNTAX","features":[200]},{"name":"SQS_NO_SYNTAX","features":[200]},{"name":"SRCH_SCHEMA_CACHE_E_UNEXPECTED","features":[200]},{"name":"SSERRORINFO","features":[200]},{"name":"SSPROPVAL_COMMANDTYPE_BULKLOAD","features":[200]},{"name":"SSPROPVAL_COMMANDTYPE_REGULAR","features":[200]},{"name":"SSPROPVAL_USEPROCFORPREP_OFF","features":[200]},{"name":"SSPROPVAL_USEPROCFORPREP_ON","features":[200]},{"name":"SSPROPVAL_USEPROCFORPREP_ON_DROP","features":[200]},{"name":"SSPROP_ALLOWNATIVEVARIANT","features":[200]},{"name":"SSPROP_AUTH_REPL_SERVER_NAME","features":[200]},{"name":"SSPROP_CHARACTERSET","features":[200]},{"name":"SSPROP_COLUMNLEVELCOLLATION","features":[200]},{"name":"SSPROP_COL_COLLATIONNAME","features":[200]},{"name":"SSPROP_CURRENTCOLLATION","features":[200]},{"name":"SSPROP_CURSORAUTOFETCH","features":[200]},{"name":"SSPROP_DEFERPREPARE","features":[200]},{"name":"SSPROP_ENABLEFASTLOAD","features":[200]},{"name":"SSPROP_FASTLOADKEEPIDENTITY","features":[200]},{"name":"SSPROP_FASTLOADKEEPNULLS","features":[200]},{"name":"SSPROP_FASTLOADOPTIONS","features":[200]},{"name":"SSPROP_INIT_APPNAME","features":[200]},{"name":"SSPROP_INIT_AUTOTRANSLATE","features":[200]},{"name":"SSPROP_INIT_CURRENTLANGUAGE","features":[200]},{"name":"SSPROP_INIT_ENCRYPT","features":[200]},{"name":"SSPROP_INIT_FILENAME","features":[200]},{"name":"SSPROP_INIT_NETWORKADDRESS","features":[200]},{"name":"SSPROP_INIT_NETWORKLIBRARY","features":[200]},{"name":"SSPROP_INIT_PACKETSIZE","features":[200]},{"name":"SSPROP_INIT_TAGCOLUMNCOLLATION","features":[200]},{"name":"SSPROP_INIT_USEPROCFORPREP","features":[200]},{"name":"SSPROP_INIT_WSID","features":[200]},{"name":"SSPROP_IRowsetFastLoad","features":[200]},{"name":"SSPROP_MAXBLOBLENGTH","features":[200]},{"name":"SSPROP_QUOTEDCATALOGNAMES","features":[200]},{"name":"SSPROP_SORTORDER","features":[200]},{"name":"SSPROP_SQLXMLXPROGID","features":[200]},{"name":"SSPROP_STREAM_BASEPATH","features":[200]},{"name":"SSPROP_STREAM_COMMANDTYPE","features":[200]},{"name":"SSPROP_STREAM_CONTENTTYPE","features":[200]},{"name":"SSPROP_STREAM_FLAGS","features":[200]},{"name":"SSPROP_STREAM_MAPPINGSCHEMA","features":[200]},{"name":"SSPROP_STREAM_XMLROOT","features":[200]},{"name":"SSPROP_STREAM_XSL","features":[200]},{"name":"SSPROP_UNICODECOMPARISONSTYLE","features":[200]},{"name":"SSPROP_UNICODELCID","features":[200]},{"name":"SSVARIANT","features":[3,43,200]},{"name":"STD_BOOKMARKLENGTH","features":[200]},{"name":"STGM_COLLECTION","features":[200]},{"name":"STGM_OPEN","features":[200]},{"name":"STGM_OUTPUT","features":[200]},{"name":"STGM_RECURSIVE","features":[200]},{"name":"STGM_STRICTOPEN","features":[200]},{"name":"STREAM_FLAGS_DISALLOW_ABSOLUTE_PATH","features":[200]},{"name":"STREAM_FLAGS_DISALLOW_QUERY","features":[200]},{"name":"STREAM_FLAGS_DISALLOW_UPDATEGRAMS","features":[200]},{"name":"STREAM_FLAGS_DISALLOW_URL","features":[200]},{"name":"STREAM_FLAGS_DONTCACHEMAPPINGSCHEMA","features":[200]},{"name":"STREAM_FLAGS_DONTCACHETEMPLATE","features":[200]},{"name":"STREAM_FLAGS_DONTCACHEXSL","features":[200]},{"name":"STREAM_FLAGS_RESERVED","features":[200]},{"name":"STRUCTURED_QUERY_MULTIOPTION","features":[200]},{"name":"STRUCTURED_QUERY_PARSE_ERROR","features":[200]},{"name":"STRUCTURED_QUERY_RESOLVE_OPTION","features":[200]},{"name":"STRUCTURED_QUERY_SINGLE_OPTION","features":[200]},{"name":"STRUCTURED_QUERY_SYNTAX","features":[200]},{"name":"STS_ABORTXMLPARSE","features":[200]},{"name":"STS_WS_ERROR","features":[200]},{"name":"SUBSCRIPTIONINFO","features":[3,200]},{"name":"SUBSCRIPTIONINFOFLAGS","features":[200]},{"name":"SUBSCRIPTIONITEMINFO","features":[200]},{"name":"SUBSCRIPTIONSCHEDULE","features":[200]},{"name":"SUBSCRIPTIONTYPE","features":[200]},{"name":"SUBSINFO_ALLFLAGS","features":[200]},{"name":"SUBSINFO_CHANGESONLY","features":[200]},{"name":"SUBSINFO_CHANNELFLAGS","features":[200]},{"name":"SUBSINFO_FRIENDLYNAME","features":[200]},{"name":"SUBSINFO_GLEAM","features":[200]},{"name":"SUBSINFO_MAILNOT","features":[200]},{"name":"SUBSINFO_MAXSIZEKB","features":[200]},{"name":"SUBSINFO_NEEDPASSWORD","features":[200]},{"name":"SUBSINFO_PASSWORD","features":[200]},{"name":"SUBSINFO_RECURSE","features":[200]},{"name":"SUBSINFO_SCHEDULE","features":[200]},{"name":"SUBSINFO_TASKFLAGS","features":[200]},{"name":"SUBSINFO_TYPE","features":[200]},{"name":"SUBSINFO_USER","features":[200]},{"name":"SUBSINFO_WEBCRAWL","features":[200]},{"name":"SUBSMGRENUM_MASK","features":[200]},{"name":"SUBSMGRENUM_TEMP","features":[200]},{"name":"SUBSMGRUPDATE_MASK","features":[200]},{"name":"SUBSMGRUPDATE_MINIMIZE","features":[200]},{"name":"SUBSSCHED_AUTO","features":[200]},{"name":"SUBSSCHED_CUSTOM","features":[200]},{"name":"SUBSSCHED_DAILY","features":[200]},{"name":"SUBSSCHED_MANUAL","features":[200]},{"name":"SUBSSCHED_WEEKLY","features":[200]},{"name":"SUBSTYPE_CHANNEL","features":[200]},{"name":"SUBSTYPE_DESKTOPCHANNEL","features":[200]},{"name":"SUBSTYPE_DESKTOPURL","features":[200]},{"name":"SUBSTYPE_EXTERNAL","features":[200]},{"name":"SUBSTYPE_URL","features":[200]},{"name":"SUCCEED","features":[200]},{"name":"SUCCEED_ABORT","features":[200]},{"name":"SUCCEED_ASYNC","features":[200]},{"name":"SubscriptionMgr","features":[200]},{"name":"TEXT_SOURCE","features":[200]},{"name":"TIMEOUT_INFO","features":[200]},{"name":"TIMESTAMP_STRUCT","features":[200]},{"name":"TIME_STRUCT","features":[200]},{"name":"TRACE_ON","features":[200]},{"name":"TRACE_VERSION","features":[200]},{"name":"TRACE_VS_EVENT_ON","features":[200]},{"name":"VECTORRESTRICTION","features":[3,146,65,200,44]},{"name":"VT_SS_BINARY","features":[200]},{"name":"VT_SS_BIT","features":[200]},{"name":"VT_SS_DATETIME","features":[200]},{"name":"VT_SS_DECIMAL","features":[200]},{"name":"VT_SS_EMPTY","features":[200]},{"name":"VT_SS_GUID","features":[200]},{"name":"VT_SS_I2","features":[200]},{"name":"VT_SS_I4","features":[200]},{"name":"VT_SS_I8","features":[200]},{"name":"VT_SS_MONEY","features":[200]},{"name":"VT_SS_NULL","features":[200]},{"name":"VT_SS_NUMERIC","features":[200]},{"name":"VT_SS_R4","features":[200]},{"name":"VT_SS_R8","features":[200]},{"name":"VT_SS_SMALLDATETIME","features":[200]},{"name":"VT_SS_SMALLMONEY","features":[200]},{"name":"VT_SS_STRING","features":[200]},{"name":"VT_SS_UI1","features":[200]},{"name":"VT_SS_UNKNOWN","features":[200]},{"name":"VT_SS_VARBINARY","features":[200]},{"name":"VT_SS_VARSTRING","features":[200]},{"name":"VT_SS_WSTRING","features":[200]},{"name":"VT_SS_WVARSTRING","features":[200]},{"name":"WEBCRAWL_DONT_MAKE_STICKY","features":[200]},{"name":"WEBCRAWL_GET_BGSOUNDS","features":[200]},{"name":"WEBCRAWL_GET_CONTROLS","features":[200]},{"name":"WEBCRAWL_GET_IMAGES","features":[200]},{"name":"WEBCRAWL_GET_VIDEOS","features":[200]},{"name":"WEBCRAWL_IGNORE_ROBOTSTXT","features":[200]},{"name":"WEBCRAWL_LINKS_ELSEWHERE","features":[200]},{"name":"WEBCRAWL_ONLY_LINKS_TO_HTML","features":[200]},{"name":"WEBCRAWL_RECURSEFLAGS","features":[200]},{"name":"XML_E_BADSXQL","features":[200]},{"name":"XML_E_NODEFAULTNS","features":[200]},{"name":"_MAPI_E_ACCOUNT_DISABLED","features":[200]},{"name":"_MAPI_E_BAD_CHARWIDTH","features":[200]},{"name":"_MAPI_E_BAD_COLUMN","features":[200]},{"name":"_MAPI_E_BUSY","features":[200]},{"name":"_MAPI_E_COMPUTED","features":[200]},{"name":"_MAPI_E_CORRUPT_DATA","features":[200]},{"name":"_MAPI_E_DISK_ERROR","features":[200]},{"name":"_MAPI_E_END_OF_SESSION","features":[200]},{"name":"_MAPI_E_EXTENDED_ERROR","features":[200]},{"name":"_MAPI_E_FAILONEPROVIDER","features":[200]},{"name":"_MAPI_E_INVALID_ACCESS_TIME","features":[200]},{"name":"_MAPI_E_INVALID_ENTRYID","features":[200]},{"name":"_MAPI_E_INVALID_OBJECT","features":[200]},{"name":"_MAPI_E_INVALID_WORKSTATION_ACCOUNT","features":[200]},{"name":"_MAPI_E_LOGON_FAILED","features":[200]},{"name":"_MAPI_E_MISSING_REQUIRED_COLUMN","features":[200]},{"name":"_MAPI_E_NETWORK_ERROR","features":[200]},{"name":"_MAPI_E_NOT_ENOUGH_DISK","features":[200]},{"name":"_MAPI_E_NOT_ENOUGH_RESOURCES","features":[200]},{"name":"_MAPI_E_NOT_FOUND","features":[200]},{"name":"_MAPI_E_NO_SUPPORT","features":[200]},{"name":"_MAPI_E_OBJECT_CHANGED","features":[200]},{"name":"_MAPI_E_OBJECT_DELETED","features":[200]},{"name":"_MAPI_E_PASSWORD_CHANGE_REQUIRED","features":[200]},{"name":"_MAPI_E_PASSWORD_EXPIRED","features":[200]},{"name":"_MAPI_E_SESSION_LIMIT","features":[200]},{"name":"_MAPI_E_STRING_TOO_LONG","features":[200]},{"name":"_MAPI_E_TOO_COMPLEX","features":[200]},{"name":"_MAPI_E_UNABLE_TO_ABORT","features":[200]},{"name":"_MAPI_E_UNCONFIGURED","features":[200]},{"name":"_MAPI_E_UNKNOWN_CPID","features":[200]},{"name":"_MAPI_E_UNKNOWN_ENTRYID","features":[200]},{"name":"_MAPI_E_UNKNOWN_FLAGS","features":[200]},{"name":"_MAPI_E_UNKNOWN_LCID","features":[200]},{"name":"_MAPI_E_USER_CANCEL","features":[200]},{"name":"_MAPI_E_VERSION","features":[200]},{"name":"_MAPI_W_NO_SERVICE","features":[200]},{"name":"bcp_batch","features":[200]},{"name":"bcp_bind","features":[200]},{"name":"bcp_colfmt","features":[200]},{"name":"bcp_collen","features":[200]},{"name":"bcp_colptr","features":[200]},{"name":"bcp_columns","features":[200]},{"name":"bcp_control","features":[200]},{"name":"bcp_done","features":[200]},{"name":"bcp_exec","features":[200]},{"name":"bcp_getcolfmt","features":[200]},{"name":"bcp_initA","features":[200]},{"name":"bcp_initW","features":[200]},{"name":"bcp_moretext","features":[200]},{"name":"bcp_readfmtA","features":[200]},{"name":"bcp_readfmtW","features":[200]},{"name":"bcp_sendrow","features":[200]},{"name":"bcp_setcolfmt","features":[200]},{"name":"bcp_writefmtA","features":[200]},{"name":"bcp_writefmtW","features":[200]},{"name":"dbprtypeA","features":[200]},{"name":"dbprtypeW","features":[200]},{"name":"eAUTH_TYPE_ANONYMOUS","features":[200]},{"name":"eAUTH_TYPE_BASIC","features":[200]},{"name":"eAUTH_TYPE_NTLM","features":[200]}],"605":[{"name":"CONDITION_OPERATION","features":[201]},{"name":"CONDITION_TYPE","features":[201]},{"name":"COP_APPLICATION_SPECIFIC","features":[201]},{"name":"COP_DOSWILDCARDS","features":[201]},{"name":"COP_EQUAL","features":[201]},{"name":"COP_GREATERTHAN","features":[201]},{"name":"COP_GREATERTHANOREQUAL","features":[201]},{"name":"COP_IMPLICIT","features":[201]},{"name":"COP_LESSTHAN","features":[201]},{"name":"COP_LESSTHANOREQUAL","features":[201]},{"name":"COP_NOTEQUAL","features":[201]},{"name":"COP_VALUE_CONTAINS","features":[201]},{"name":"COP_VALUE_ENDSWITH","features":[201]},{"name":"COP_VALUE_NOTCONTAINS","features":[201]},{"name":"COP_VALUE_STARTSWITH","features":[201]},{"name":"COP_WORD_EQUAL","features":[201]},{"name":"COP_WORD_STARTSWITH","features":[201]},{"name":"CT_AND_CONDITION","features":[201]},{"name":"CT_LEAF_CONDITION","features":[201]},{"name":"CT_NOT_CONDITION","features":[201]},{"name":"CT_OR_CONDITION","features":[201]}],"606":[{"name":"IWSCDefaultProduct","features":[202]},{"name":"IWSCProductList","features":[202]},{"name":"IWscProduct","features":[202]},{"name":"IWscProduct2","features":[202]},{"name":"IWscProduct3","features":[202]},{"name":"SECURITY_PRODUCT_TYPE","features":[202]},{"name":"SECURITY_PRODUCT_TYPE_ANTISPYWARE","features":[202]},{"name":"SECURITY_PRODUCT_TYPE_ANTIVIRUS","features":[202]},{"name":"SECURITY_PRODUCT_TYPE_FIREWALL","features":[202]},{"name":"WSCDefaultProduct","features":[202]},{"name":"WSCProductList","features":[202]},{"name":"WSC_SECURITY_PRODUCT_OUT_OF_DATE","features":[202]},{"name":"WSC_SECURITY_PRODUCT_STATE","features":[202]},{"name":"WSC_SECURITY_PRODUCT_STATE_EXPIRED","features":[202]},{"name":"WSC_SECURITY_PRODUCT_STATE_OFF","features":[202]},{"name":"WSC_SECURITY_PRODUCT_STATE_ON","features":[202]},{"name":"WSC_SECURITY_PRODUCT_STATE_SNOOZED","features":[202]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS","features":[202]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_NEEDED","features":[202]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_RECOMMENDED","features":[202]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NOT_SET","features":[202]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NO_ACTION","features":[202]},{"name":"WSC_SECURITY_PRODUCT_UP_TO_DATE","features":[202]},{"name":"WSC_SECURITY_PROVIDER","features":[202]},{"name":"WSC_SECURITY_PROVIDER_ALL","features":[202]},{"name":"WSC_SECURITY_PROVIDER_ANTISPYWARE","features":[202]},{"name":"WSC_SECURITY_PROVIDER_ANTIVIRUS","features":[202]},{"name":"WSC_SECURITY_PROVIDER_AUTOUPDATE_SETTINGS","features":[202]},{"name":"WSC_SECURITY_PROVIDER_FIREWALL","features":[202]},{"name":"WSC_SECURITY_PROVIDER_HEALTH","features":[202]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_GOOD","features":[202]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_NOTMONITORED","features":[202]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_POOR","features":[202]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_SNOOZE","features":[202]},{"name":"WSC_SECURITY_PROVIDER_INTERNET_SETTINGS","features":[202]},{"name":"WSC_SECURITY_PROVIDER_NONE","features":[202]},{"name":"WSC_SECURITY_PROVIDER_SERVICE","features":[202]},{"name":"WSC_SECURITY_PROVIDER_USER_ACCOUNT_CONTROL","features":[202]},{"name":"WSC_SECURITY_SIGNATURE_STATUS","features":[202]},{"name":"WscGetAntiMalwareUri","features":[202]},{"name":"WscGetSecurityProviderHealth","features":[202]},{"name":"WscQueryAntiMalwareUri","features":[202]},{"name":"WscRegisterForChanges","features":[3,202,39]},{"name":"WscRegisterForUserNotifications","features":[202]},{"name":"WscUnRegisterChanges","features":[3,202]}],"608":[{"name":"CUSTOM_SYSTEM_STATE_CHANGE_EVENT_GUID","features":[113]},{"name":"ChangeServiceConfig2A","features":[3,113]},{"name":"ChangeServiceConfig2W","features":[3,113]},{"name":"ChangeServiceConfigA","features":[3,113]},{"name":"ChangeServiceConfigW","features":[3,113]},{"name":"CloseServiceHandle","features":[3,113]},{"name":"ControlService","features":[3,113]},{"name":"ControlServiceExA","features":[3,113]},{"name":"ControlServiceExW","features":[3,113]},{"name":"CreateServiceA","features":[113]},{"name":"CreateServiceW","features":[113]},{"name":"DOMAIN_JOIN_GUID","features":[113]},{"name":"DOMAIN_LEAVE_GUID","features":[113]},{"name":"DeleteService","features":[3,113]},{"name":"ENUM_SERVICE_STATE","features":[113]},{"name":"ENUM_SERVICE_STATUSA","features":[113]},{"name":"ENUM_SERVICE_STATUSW","features":[113]},{"name":"ENUM_SERVICE_STATUS_PROCESSA","features":[113]},{"name":"ENUM_SERVICE_STATUS_PROCESSW","features":[113]},{"name":"ENUM_SERVICE_TYPE","features":[113]},{"name":"EnumDependentServicesA","features":[3,113]},{"name":"EnumDependentServicesW","features":[3,113]},{"name":"EnumServicesStatusA","features":[3,113]},{"name":"EnumServicesStatusExA","features":[3,113]},{"name":"EnumServicesStatusExW","features":[3,113]},{"name":"EnumServicesStatusW","features":[3,113]},{"name":"FIREWALL_PORT_CLOSE_GUID","features":[113]},{"name":"FIREWALL_PORT_OPEN_GUID","features":[113]},{"name":"GetServiceDirectory","features":[113]},{"name":"GetServiceDisplayNameA","features":[3,113]},{"name":"GetServiceDisplayNameW","features":[3,113]},{"name":"GetServiceKeyNameA","features":[3,113]},{"name":"GetServiceKeyNameW","features":[3,113]},{"name":"GetServiceRegistryStateKey","features":[51,113]},{"name":"GetSharedServiceDirectory","features":[113]},{"name":"GetSharedServiceRegistryStateKey","features":[51,113]},{"name":"HANDLER_FUNCTION","features":[113]},{"name":"HANDLER_FUNCTION_EX","features":[113]},{"name":"LPHANDLER_FUNCTION","features":[113]},{"name":"LPHANDLER_FUNCTION_EX","features":[113]},{"name":"LPSERVICE_MAIN_FUNCTIONA","features":[113]},{"name":"LPSERVICE_MAIN_FUNCTIONW","features":[113]},{"name":"LockServiceDatabase","features":[113]},{"name":"MACHINE_POLICY_PRESENT_GUID","features":[113]},{"name":"MaxServiceRegistryStateType","features":[113]},{"name":"NAMED_PIPE_EVENT_GUID","features":[113]},{"name":"NETWORK_MANAGER_FIRST_IP_ADDRESS_ARRIVAL_GUID","features":[113]},{"name":"NETWORK_MANAGER_LAST_IP_ADDRESS_REMOVAL_GUID","features":[113]},{"name":"NotifyBootConfigStatus","features":[3,113]},{"name":"NotifyServiceStatusChangeA","features":[113]},{"name":"NotifyServiceStatusChangeW","features":[113]},{"name":"OpenSCManagerA","features":[113]},{"name":"OpenSCManagerW","features":[113]},{"name":"OpenServiceA","features":[113]},{"name":"OpenServiceW","features":[113]},{"name":"PFN_SC_NOTIFY_CALLBACK","features":[113]},{"name":"PSC_NOTIFICATION_CALLBACK","features":[113]},{"name":"PSC_NOTIFICATION_REGISTRATION","features":[113]},{"name":"QUERY_SERVICE_CONFIGA","features":[113]},{"name":"QUERY_SERVICE_CONFIGW","features":[113]},{"name":"QUERY_SERVICE_LOCK_STATUSA","features":[113]},{"name":"QUERY_SERVICE_LOCK_STATUSW","features":[113]},{"name":"QueryServiceConfig2A","features":[3,113]},{"name":"QueryServiceConfig2W","features":[3,113]},{"name":"QueryServiceConfigA","features":[3,113]},{"name":"QueryServiceConfigW","features":[3,113]},{"name":"QueryServiceDynamicInformation","features":[3,113]},{"name":"QueryServiceLockStatusA","features":[3,113]},{"name":"QueryServiceLockStatusW","features":[3,113]},{"name":"QueryServiceObjectSecurity","features":[3,6,113]},{"name":"QueryServiceStatus","features":[3,113]},{"name":"QueryServiceStatusEx","features":[3,113]},{"name":"RPC_INTERFACE_EVENT_GUID","features":[113]},{"name":"RegisterServiceCtrlHandlerA","features":[113]},{"name":"RegisterServiceCtrlHandlerExA","features":[113]},{"name":"RegisterServiceCtrlHandlerExW","features":[113]},{"name":"RegisterServiceCtrlHandlerW","features":[113]},{"name":"SC_ACTION","features":[113]},{"name":"SC_ACTION_NONE","features":[113]},{"name":"SC_ACTION_OWN_RESTART","features":[113]},{"name":"SC_ACTION_REBOOT","features":[113]},{"name":"SC_ACTION_RESTART","features":[113]},{"name":"SC_ACTION_RUN_COMMAND","features":[113]},{"name":"SC_ACTION_TYPE","features":[113]},{"name":"SC_AGGREGATE_STORAGE_KEY","features":[113]},{"name":"SC_ENUM_PROCESS_INFO","features":[113]},{"name":"SC_ENUM_TYPE","features":[113]},{"name":"SC_EVENT_DATABASE_CHANGE","features":[113]},{"name":"SC_EVENT_PROPERTY_CHANGE","features":[113]},{"name":"SC_EVENT_STATUS_CHANGE","features":[113]},{"name":"SC_EVENT_TYPE","features":[113]},{"name":"SC_HANDLE","features":[113]},{"name":"SC_MANAGER_ALL_ACCESS","features":[113]},{"name":"SC_MANAGER_CONNECT","features":[113]},{"name":"SC_MANAGER_CREATE_SERVICE","features":[113]},{"name":"SC_MANAGER_ENUMERATE_SERVICE","features":[113]},{"name":"SC_MANAGER_LOCK","features":[113]},{"name":"SC_MANAGER_MODIFY_BOOT_CONFIG","features":[113]},{"name":"SC_MANAGER_QUERY_LOCK_STATUS","features":[113]},{"name":"SC_STATUS_PROCESS_INFO","features":[113]},{"name":"SC_STATUS_TYPE","features":[113]},{"name":"SERVICES_ACTIVE_DATABASE","features":[113]},{"name":"SERVICES_ACTIVE_DATABASEA","features":[113]},{"name":"SERVICES_ACTIVE_DATABASEW","features":[113]},{"name":"SERVICES_FAILED_DATABASE","features":[113]},{"name":"SERVICES_FAILED_DATABASEA","features":[113]},{"name":"SERVICES_FAILED_DATABASEW","features":[113]},{"name":"SERVICE_ACCEPT_HARDWAREPROFILECHANGE","features":[113]},{"name":"SERVICE_ACCEPT_LOWRESOURCES","features":[113]},{"name":"SERVICE_ACCEPT_NETBINDCHANGE","features":[113]},{"name":"SERVICE_ACCEPT_PARAMCHANGE","features":[113]},{"name":"SERVICE_ACCEPT_PAUSE_CONTINUE","features":[113]},{"name":"SERVICE_ACCEPT_POWEREVENT","features":[113]},{"name":"SERVICE_ACCEPT_PRESHUTDOWN","features":[113]},{"name":"SERVICE_ACCEPT_SESSIONCHANGE","features":[113]},{"name":"SERVICE_ACCEPT_SHUTDOWN","features":[113]},{"name":"SERVICE_ACCEPT_STOP","features":[113]},{"name":"SERVICE_ACCEPT_SYSTEMLOWRESOURCES","features":[113]},{"name":"SERVICE_ACCEPT_TIMECHANGE","features":[113]},{"name":"SERVICE_ACCEPT_TRIGGEREVENT","features":[113]},{"name":"SERVICE_ACCEPT_USER_LOGOFF","features":[113]},{"name":"SERVICE_ACTIVE","features":[113]},{"name":"SERVICE_ADAPTER","features":[113]},{"name":"SERVICE_ALL_ACCESS","features":[113]},{"name":"SERVICE_AUTO_START","features":[113]},{"name":"SERVICE_BOOT_START","features":[113]},{"name":"SERVICE_CHANGE_CONFIG","features":[113]},{"name":"SERVICE_CONFIG","features":[113]},{"name":"SERVICE_CONFIG_DELAYED_AUTO_START_INFO","features":[113]},{"name":"SERVICE_CONFIG_DESCRIPTION","features":[113]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS","features":[113]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS_FLAG","features":[113]},{"name":"SERVICE_CONFIG_LAUNCH_PROTECTED","features":[113]},{"name":"SERVICE_CONFIG_PREFERRED_NODE","features":[113]},{"name":"SERVICE_CONFIG_PRESHUTDOWN_INFO","features":[113]},{"name":"SERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO","features":[113]},{"name":"SERVICE_CONFIG_SERVICE_SID_INFO","features":[113]},{"name":"SERVICE_CONFIG_TRIGGER_INFO","features":[113]},{"name":"SERVICE_CONTINUE_PENDING","features":[113]},{"name":"SERVICE_CONTROL_CONTINUE","features":[113]},{"name":"SERVICE_CONTROL_DEVICEEVENT","features":[113]},{"name":"SERVICE_CONTROL_HARDWAREPROFILECHANGE","features":[113]},{"name":"SERVICE_CONTROL_INTERROGATE","features":[113]},{"name":"SERVICE_CONTROL_LOWRESOURCES","features":[113]},{"name":"SERVICE_CONTROL_NETBINDADD","features":[113]},{"name":"SERVICE_CONTROL_NETBINDDISABLE","features":[113]},{"name":"SERVICE_CONTROL_NETBINDENABLE","features":[113]},{"name":"SERVICE_CONTROL_NETBINDREMOVE","features":[113]},{"name":"SERVICE_CONTROL_PARAMCHANGE","features":[113]},{"name":"SERVICE_CONTROL_PAUSE","features":[113]},{"name":"SERVICE_CONTROL_POWEREVENT","features":[113]},{"name":"SERVICE_CONTROL_PRESHUTDOWN","features":[113]},{"name":"SERVICE_CONTROL_SESSIONCHANGE","features":[113]},{"name":"SERVICE_CONTROL_SHUTDOWN","features":[113]},{"name":"SERVICE_CONTROL_STATUS_REASON_INFO","features":[113]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSA","features":[113]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSW","features":[113]},{"name":"SERVICE_CONTROL_STOP","features":[113]},{"name":"SERVICE_CONTROL_SYSTEMLOWRESOURCES","features":[113]},{"name":"SERVICE_CONTROL_TIMECHANGE","features":[113]},{"name":"SERVICE_CONTROL_TRIGGEREVENT","features":[113]},{"name":"SERVICE_CUSTOM_SYSTEM_STATE_CHANGE_DATA_ITEM","features":[113]},{"name":"SERVICE_DELAYED_AUTO_START_INFO","features":[3,113]},{"name":"SERVICE_DEMAND_START","features":[113]},{"name":"SERVICE_DESCRIPTIONA","features":[113]},{"name":"SERVICE_DESCRIPTIONW","features":[113]},{"name":"SERVICE_DIRECTORY_TYPE","features":[113]},{"name":"SERVICE_DISABLED","features":[113]},{"name":"SERVICE_DRIVER","features":[113]},{"name":"SERVICE_DYNAMIC_INFORMATION_LEVEL_START_REASON","features":[113]},{"name":"SERVICE_ENUMERATE_DEPENDENTS","features":[113]},{"name":"SERVICE_ERROR","features":[113]},{"name":"SERVICE_ERROR_CRITICAL","features":[113]},{"name":"SERVICE_ERROR_IGNORE","features":[113]},{"name":"SERVICE_ERROR_NORMAL","features":[113]},{"name":"SERVICE_ERROR_SEVERE","features":[113]},{"name":"SERVICE_FAILURE_ACTIONSA","features":[113]},{"name":"SERVICE_FAILURE_ACTIONSW","features":[113]},{"name":"SERVICE_FAILURE_ACTIONS_FLAG","features":[3,113]},{"name":"SERVICE_FILE_SYSTEM_DRIVER","features":[113]},{"name":"SERVICE_INACTIVE","features":[113]},{"name":"SERVICE_INTERROGATE","features":[113]},{"name":"SERVICE_KERNEL_DRIVER","features":[113]},{"name":"SERVICE_LAUNCH_PROTECTED_ANTIMALWARE_LIGHT","features":[113]},{"name":"SERVICE_LAUNCH_PROTECTED_INFO","features":[113]},{"name":"SERVICE_LAUNCH_PROTECTED_NONE","features":[113]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS","features":[113]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS_LIGHT","features":[113]},{"name":"SERVICE_MAIN_FUNCTIONA","features":[113]},{"name":"SERVICE_MAIN_FUNCTIONW","features":[113]},{"name":"SERVICE_NOTIFY","features":[113]},{"name":"SERVICE_NOTIFY_1","features":[113]},{"name":"SERVICE_NOTIFY_2A","features":[113]},{"name":"SERVICE_NOTIFY_2W","features":[113]},{"name":"SERVICE_NOTIFY_CONTINUE_PENDING","features":[113]},{"name":"SERVICE_NOTIFY_CREATED","features":[113]},{"name":"SERVICE_NOTIFY_DELETED","features":[113]},{"name":"SERVICE_NOTIFY_DELETE_PENDING","features":[113]},{"name":"SERVICE_NOTIFY_PAUSED","features":[113]},{"name":"SERVICE_NOTIFY_PAUSE_PENDING","features":[113]},{"name":"SERVICE_NOTIFY_RUNNING","features":[113]},{"name":"SERVICE_NOTIFY_START_PENDING","features":[113]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE","features":[113]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_1","features":[113]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_2","features":[113]},{"name":"SERVICE_NOTIFY_STOPPED","features":[113]},{"name":"SERVICE_NOTIFY_STOP_PENDING","features":[113]},{"name":"SERVICE_NO_CHANGE","features":[113]},{"name":"SERVICE_PAUSED","features":[113]},{"name":"SERVICE_PAUSE_CONTINUE","features":[113]},{"name":"SERVICE_PAUSE_PENDING","features":[113]},{"name":"SERVICE_PREFERRED_NODE_INFO","features":[3,113]},{"name":"SERVICE_PRESHUTDOWN_INFO","features":[113]},{"name":"SERVICE_QUERY_CONFIG","features":[113]},{"name":"SERVICE_QUERY_STATUS","features":[113]},{"name":"SERVICE_RECOGNIZER_DRIVER","features":[113]},{"name":"SERVICE_REGISTRY_STATE_TYPE","features":[113]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOA","features":[113]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOW","features":[113]},{"name":"SERVICE_RUNNING","features":[113]},{"name":"SERVICE_RUNS_IN_NON_SYSTEM_OR_NOT_RUNNING","features":[113]},{"name":"SERVICE_RUNS_IN_PROCESS","features":[113]},{"name":"SERVICE_RUNS_IN_SYSTEM_PROCESS","features":[113]},{"name":"SERVICE_SHARED_DIRECTORY_TYPE","features":[113]},{"name":"SERVICE_SHARED_REGISTRY_STATE_TYPE","features":[113]},{"name":"SERVICE_SID_INFO","features":[113]},{"name":"SERVICE_SID_TYPE_NONE","features":[113]},{"name":"SERVICE_SID_TYPE_UNRESTRICTED","features":[113]},{"name":"SERVICE_START","features":[113]},{"name":"SERVICE_START_PENDING","features":[113]},{"name":"SERVICE_START_REASON","features":[113]},{"name":"SERVICE_START_REASON_AUTO","features":[113]},{"name":"SERVICE_START_REASON_DELAYEDAUTO","features":[113]},{"name":"SERVICE_START_REASON_DEMAND","features":[113]},{"name":"SERVICE_START_REASON_RESTART_ON_FAILURE","features":[113]},{"name":"SERVICE_START_REASON_TRIGGER","features":[113]},{"name":"SERVICE_START_TYPE","features":[113]},{"name":"SERVICE_STATE_ALL","features":[113]},{"name":"SERVICE_STATUS","features":[113]},{"name":"SERVICE_STATUS_CURRENT_STATE","features":[113]},{"name":"SERVICE_STATUS_HANDLE","features":[113]},{"name":"SERVICE_STATUS_PROCESS","features":[113]},{"name":"SERVICE_STOP","features":[113]},{"name":"SERVICE_STOPPED","features":[113]},{"name":"SERVICE_STOP_PENDING","features":[113]},{"name":"SERVICE_STOP_REASON_FLAG_CUSTOM","features":[113]},{"name":"SERVICE_STOP_REASON_FLAG_MAX","features":[113]},{"name":"SERVICE_STOP_REASON_FLAG_MIN","features":[113]},{"name":"SERVICE_STOP_REASON_FLAG_PLANNED","features":[113]},{"name":"SERVICE_STOP_REASON_FLAG_UNPLANNED","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_APPLICATION","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_HARDWARE","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX_CUSTOM","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN_CUSTOM","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_NONE","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_OPERATINGSYSTEM","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_OTHER","features":[113]},{"name":"SERVICE_STOP_REASON_MAJOR_SOFTWARE","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_DISK","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_ENVIRONMENT","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_HARDWARE_DRIVER","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_HUNG","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_INSTALLATION","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_MAINTENANCE","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_MAX","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_MAX_CUSTOM","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_MEMOTYLIMIT","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_MIN","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_MIN_CUSTOM","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_MMC","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORKCARD","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORK_CONNECTIVITY","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_NONE","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_OTHER","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_OTHERDRIVER","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_RECONFIG","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITY","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE_UNINSTALL","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_UNSTABLE","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_UPGRADE","features":[113]},{"name":"SERVICE_STOP_REASON_MINOR_WMI","features":[113]},{"name":"SERVICE_SYSTEM_START","features":[113]},{"name":"SERVICE_TABLE_ENTRYA","features":[113]},{"name":"SERVICE_TABLE_ENTRYW","features":[113]},{"name":"SERVICE_TIMECHANGE_INFO","features":[113]},{"name":"SERVICE_TRIGGER","features":[113]},{"name":"SERVICE_TRIGGER_ACTION","features":[113]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_START","features":[113]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_STOP","features":[113]},{"name":"SERVICE_TRIGGER_CUSTOM_STATE_ID","features":[113]},{"name":"SERVICE_TRIGGER_DATA_TYPE_BINARY","features":[113]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ALL","features":[113]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ANY","features":[113]},{"name":"SERVICE_TRIGGER_DATA_TYPE_LEVEL","features":[113]},{"name":"SERVICE_TRIGGER_DATA_TYPE_STRING","features":[113]},{"name":"SERVICE_TRIGGER_INFO","features":[113]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM","features":[113]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM_DATA_TYPE","features":[113]},{"name":"SERVICE_TRIGGER_STARTED_ARGUMENT","features":[113]},{"name":"SERVICE_TRIGGER_TYPE","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_AGGREGATE","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM_SYSTEM_STATE_CHANGE","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_DEVICE_INTERFACE_ARRIVAL","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_DOMAIN_JOIN","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_FIREWALL_PORT_EVENT","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_GROUP_POLICY","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_IP_ADDRESS_AVAILABILITY","features":[113]},{"name":"SERVICE_TRIGGER_TYPE_NETWORK_ENDPOINT","features":[113]},{"name":"SERVICE_USER_DEFINED_CONTROL","features":[113]},{"name":"SERVICE_USER_OWN_PROCESS","features":[113]},{"name":"SERVICE_USER_SHARE_PROCESS","features":[113]},{"name":"SERVICE_WIN32","features":[113]},{"name":"SERVICE_WIN32_OWN_PROCESS","features":[113]},{"name":"SERVICE_WIN32_SHARE_PROCESS","features":[113]},{"name":"ServiceDirectoryPersistentState","features":[113]},{"name":"ServiceDirectoryTypeMax","features":[113]},{"name":"ServiceRegistryStateParameters","features":[113]},{"name":"ServiceRegistryStatePersistent","features":[113]},{"name":"ServiceSharedDirectoryPersistentState","features":[113]},{"name":"ServiceSharedRegistryPersistentState","features":[113]},{"name":"SetServiceBits","features":[3,113]},{"name":"SetServiceObjectSecurity","features":[3,6,113]},{"name":"SetServiceStatus","features":[3,113]},{"name":"StartServiceA","features":[3,113]},{"name":"StartServiceCtrlDispatcherA","features":[3,113]},{"name":"StartServiceCtrlDispatcherW","features":[3,113]},{"name":"StartServiceW","features":[3,113]},{"name":"SubscribeServiceChangeNotifications","features":[113]},{"name":"USER_POLICY_PRESENT_GUID","features":[113]},{"name":"UnlockServiceDatabase","features":[3,113]},{"name":"UnsubscribeServiceChangeNotifications","features":[113]},{"name":"WaitServiceState","features":[3,113]}],"610":[{"name":"OOBEComplete","features":[3,203]},{"name":"OOBE_COMPLETED_CALLBACK","features":[203]},{"name":"RegisterWaitUntilOOBECompleted","features":[3,203]},{"name":"UnregisterWaitUntilOOBECompleted","features":[3,203]}],"611":[{"name":"AbortSystemShutdownA","features":[3,204]},{"name":"AbortSystemShutdownW","features":[3,204]},{"name":"CheckForHiberboot","features":[3,204]},{"name":"EWX_ARSO","features":[204]},{"name":"EWX_BOOTOPTIONS","features":[204]},{"name":"EWX_CHECK_SAFE_FOR_SERVER","features":[204]},{"name":"EWX_FORCE","features":[204]},{"name":"EWX_FORCEIFHUNG","features":[204]},{"name":"EWX_HYBRID_SHUTDOWN","features":[204]},{"name":"EWX_LOGOFF","features":[204]},{"name":"EWX_POWEROFF","features":[204]},{"name":"EWX_QUICKRESOLVE","features":[204]},{"name":"EWX_REBOOT","features":[204]},{"name":"EWX_RESTARTAPPS","features":[204]},{"name":"EWX_SHUTDOWN","features":[204]},{"name":"EWX_SYSTEM_INITIATED","features":[204]},{"name":"EXIT_WINDOWS_FLAGS","features":[204]},{"name":"ExitWindowsEx","features":[3,204]},{"name":"InitiateShutdownA","features":[204]},{"name":"InitiateShutdownW","features":[204]},{"name":"InitiateSystemShutdownA","features":[3,204]},{"name":"InitiateSystemShutdownExA","features":[3,204]},{"name":"InitiateSystemShutdownExW","features":[3,204]},{"name":"InitiateSystemShutdownW","features":[3,204]},{"name":"LockWorkStation","features":[3,204]},{"name":"MAX_NUM_REASONS","features":[204]},{"name":"MAX_REASON_BUGID_LEN","features":[204]},{"name":"MAX_REASON_COMMENT_LEN","features":[204]},{"name":"MAX_REASON_DESC_LEN","features":[204]},{"name":"MAX_REASON_NAME_LEN","features":[204]},{"name":"POLICY_SHOWREASONUI_ALWAYS","features":[204]},{"name":"POLICY_SHOWREASONUI_NEVER","features":[204]},{"name":"POLICY_SHOWREASONUI_SERVERONLY","features":[204]},{"name":"POLICY_SHOWREASONUI_WORKSTATIONONLY","features":[204]},{"name":"SHTDN_REASON_FLAG_CLEAN_UI","features":[204]},{"name":"SHTDN_REASON_FLAG_COMMENT_REQUIRED","features":[204]},{"name":"SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED","features":[204]},{"name":"SHTDN_REASON_FLAG_DIRTY_UI","features":[204]},{"name":"SHTDN_REASON_FLAG_MOBILE_UI_RESERVED","features":[204]},{"name":"SHTDN_REASON_FLAG_PLANNED","features":[204]},{"name":"SHTDN_REASON_FLAG_USER_DEFINED","features":[204]},{"name":"SHTDN_REASON_LEGACY_API","features":[204]},{"name":"SHTDN_REASON_MAJOR_APPLICATION","features":[204]},{"name":"SHTDN_REASON_MAJOR_HARDWARE","features":[204]},{"name":"SHTDN_REASON_MAJOR_LEGACY_API","features":[204]},{"name":"SHTDN_REASON_MAJOR_NONE","features":[204]},{"name":"SHTDN_REASON_MAJOR_OPERATINGSYSTEM","features":[204]},{"name":"SHTDN_REASON_MAJOR_OTHER","features":[204]},{"name":"SHTDN_REASON_MAJOR_POWER","features":[204]},{"name":"SHTDN_REASON_MAJOR_SOFTWARE","features":[204]},{"name":"SHTDN_REASON_MAJOR_SYSTEM","features":[204]},{"name":"SHTDN_REASON_MINOR_BLUESCREEN","features":[204]},{"name":"SHTDN_REASON_MINOR_CORDUNPLUGGED","features":[204]},{"name":"SHTDN_REASON_MINOR_DC_DEMOTION","features":[204]},{"name":"SHTDN_REASON_MINOR_DC_PROMOTION","features":[204]},{"name":"SHTDN_REASON_MINOR_DISK","features":[204]},{"name":"SHTDN_REASON_MINOR_ENVIRONMENT","features":[204]},{"name":"SHTDN_REASON_MINOR_HARDWARE_DRIVER","features":[204]},{"name":"SHTDN_REASON_MINOR_HOTFIX","features":[204]},{"name":"SHTDN_REASON_MINOR_HOTFIX_UNINSTALL","features":[204]},{"name":"SHTDN_REASON_MINOR_HUNG","features":[204]},{"name":"SHTDN_REASON_MINOR_INSTALLATION","features":[204]},{"name":"SHTDN_REASON_MINOR_MAINTENANCE","features":[204]},{"name":"SHTDN_REASON_MINOR_MMC","features":[204]},{"name":"SHTDN_REASON_MINOR_NETWORKCARD","features":[204]},{"name":"SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY","features":[204]},{"name":"SHTDN_REASON_MINOR_NONE","features":[204]},{"name":"SHTDN_REASON_MINOR_OTHER","features":[204]},{"name":"SHTDN_REASON_MINOR_OTHERDRIVER","features":[204]},{"name":"SHTDN_REASON_MINOR_POWER_SUPPLY","features":[204]},{"name":"SHTDN_REASON_MINOR_PROCESSOR","features":[204]},{"name":"SHTDN_REASON_MINOR_RECONFIG","features":[204]},{"name":"SHTDN_REASON_MINOR_SECURITY","features":[204]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX","features":[204]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[204]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK","features":[204]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[204]},{"name":"SHTDN_REASON_MINOR_SYSTEMRESTORE","features":[204]},{"name":"SHTDN_REASON_MINOR_TERMSRV","features":[204]},{"name":"SHTDN_REASON_MINOR_UNSTABLE","features":[204]},{"name":"SHTDN_REASON_MINOR_UPGRADE","features":[204]},{"name":"SHTDN_REASON_MINOR_WMI","features":[204]},{"name":"SHTDN_REASON_NONE","features":[204]},{"name":"SHTDN_REASON_UNKNOWN","features":[204]},{"name":"SHTDN_REASON_VALID_BIT_MASK","features":[204]},{"name":"SHUTDOWN_ARSO","features":[204]},{"name":"SHUTDOWN_CHECK_SAFE_FOR_SERVER","features":[204]},{"name":"SHUTDOWN_FLAGS","features":[204]},{"name":"SHUTDOWN_FORCE_OTHERS","features":[204]},{"name":"SHUTDOWN_FORCE_SELF","features":[204]},{"name":"SHUTDOWN_GRACE_OVERRIDE","features":[204]},{"name":"SHUTDOWN_HYBRID","features":[204]},{"name":"SHUTDOWN_INSTALL_UPDATES","features":[204]},{"name":"SHUTDOWN_MOBILE_UI","features":[204]},{"name":"SHUTDOWN_NOREBOOT","features":[204]},{"name":"SHUTDOWN_POWEROFF","features":[204]},{"name":"SHUTDOWN_REASON","features":[204]},{"name":"SHUTDOWN_RESTART","features":[204]},{"name":"SHUTDOWN_RESTARTAPPS","features":[204]},{"name":"SHUTDOWN_RESTART_BOOTOPTIONS","features":[204]},{"name":"SHUTDOWN_SKIP_SVC_PRESHUTDOWN","features":[204]},{"name":"SHUTDOWN_SOFT_REBOOT","features":[204]},{"name":"SHUTDOWN_SYSTEM_INITIATED","features":[204]},{"name":"SHUTDOWN_TYPE_LEN","features":[204]},{"name":"SHUTDOWN_VAIL_CONTAINER","features":[204]},{"name":"SNAPSHOT_POLICY_ALWAYS","features":[204]},{"name":"SNAPSHOT_POLICY_NEVER","features":[204]},{"name":"SNAPSHOT_POLICY_UNPLANNED","features":[204]},{"name":"ShutdownBlockReasonCreate","features":[3,204]},{"name":"ShutdownBlockReasonDestroy","features":[3,204]},{"name":"ShutdownBlockReasonQuery","features":[3,204]}],"613":[{"name":"BROADCAST_SYSTEM_MESSAGE_FLAGS","features":[137]},{"name":"BROADCAST_SYSTEM_MESSAGE_INFO","features":[137]},{"name":"BSF_ALLOWSFW","features":[137]},{"name":"BSF_FLUSHDISK","features":[137]},{"name":"BSF_FORCEIFHUNG","features":[137]},{"name":"BSF_IGNORECURRENTTASK","features":[137]},{"name":"BSF_LUID","features":[137]},{"name":"BSF_NOHANG","features":[137]},{"name":"BSF_NOTIMEOUTIFNOTHUNG","features":[137]},{"name":"BSF_POSTMESSAGE","features":[137]},{"name":"BSF_QUERY","features":[137]},{"name":"BSF_RETURNHDESK","features":[137]},{"name":"BSF_SENDNOTIFYMESSAGE","features":[137]},{"name":"BSMINFO","features":[3,137]},{"name":"BSM_ALLCOMPONENTS","features":[137]},{"name":"BSM_ALLDESKTOPS","features":[137]},{"name":"BSM_APPLICATIONS","features":[137]},{"name":"BroadcastSystemMessageA","features":[3,137]},{"name":"BroadcastSystemMessageExA","features":[3,137]},{"name":"BroadcastSystemMessageExW","features":[3,137]},{"name":"BroadcastSystemMessageW","features":[3,137]},{"name":"CloseDesktop","features":[3,137]},{"name":"CloseWindowStation","features":[3,137]},{"name":"CreateDesktopA","features":[3,14,6,137]},{"name":"CreateDesktopExA","features":[3,14,6,137]},{"name":"CreateDesktopExW","features":[3,14,6,137]},{"name":"CreateDesktopW","features":[3,14,6,137]},{"name":"CreateWindowStationA","features":[3,6,137]},{"name":"CreateWindowStationW","features":[3,6,137]},{"name":"DESKTOPENUMPROCA","features":[3,137]},{"name":"DESKTOPENUMPROCW","features":[3,137]},{"name":"DESKTOP_ACCESS_FLAGS","features":[137]},{"name":"DESKTOP_CONTROL_FLAGS","features":[137]},{"name":"DESKTOP_CREATEMENU","features":[137]},{"name":"DESKTOP_CREATEWINDOW","features":[137]},{"name":"DESKTOP_DELETE","features":[137]},{"name":"DESKTOP_ENUMERATE","features":[137]},{"name":"DESKTOP_HOOKCONTROL","features":[137]},{"name":"DESKTOP_JOURNALPLAYBACK","features":[137]},{"name":"DESKTOP_JOURNALRECORD","features":[137]},{"name":"DESKTOP_READOBJECTS","features":[137]},{"name":"DESKTOP_READ_CONTROL","features":[137]},{"name":"DESKTOP_SWITCHDESKTOP","features":[137]},{"name":"DESKTOP_SYNCHRONIZE","features":[137]},{"name":"DESKTOP_WRITEOBJECTS","features":[137]},{"name":"DESKTOP_WRITE_DAC","features":[137]},{"name":"DESKTOP_WRITE_OWNER","features":[137]},{"name":"DF_ALLOWOTHERACCOUNTHOOK","features":[137]},{"name":"EnumDesktopWindows","features":[3,137,52]},{"name":"EnumDesktopsA","features":[3,137]},{"name":"EnumDesktopsW","features":[3,137]},{"name":"EnumWindowStationsA","features":[3,137]},{"name":"EnumWindowStationsW","features":[3,137]},{"name":"GetProcessWindowStation","features":[137]},{"name":"GetThreadDesktop","features":[137]},{"name":"GetUserObjectInformationA","features":[3,137]},{"name":"GetUserObjectInformationW","features":[3,137]},{"name":"HDESK","features":[137]},{"name":"HWINSTA","features":[137]},{"name":"OpenDesktopA","features":[3,137]},{"name":"OpenDesktopW","features":[3,137]},{"name":"OpenInputDesktop","features":[3,137]},{"name":"OpenWindowStationA","features":[3,137]},{"name":"OpenWindowStationW","features":[3,137]},{"name":"SetProcessWindowStation","features":[3,137]},{"name":"SetThreadDesktop","features":[3,137]},{"name":"SetUserObjectInformationA","features":[3,137]},{"name":"SetUserObjectInformationW","features":[3,137]},{"name":"SwitchDesktop","features":[3,137]},{"name":"UOI_FLAGS","features":[137]},{"name":"UOI_HEAPSIZE","features":[137]},{"name":"UOI_IO","features":[137]},{"name":"UOI_NAME","features":[137]},{"name":"UOI_TYPE","features":[137]},{"name":"UOI_USER_SID","features":[137]},{"name":"USEROBJECTFLAGS","features":[3,137]},{"name":"USER_OBJECT_INFORMATION_INDEX","features":[137]},{"name":"WINSTAENUMPROCA","features":[3,137]},{"name":"WINSTAENUMPROCW","features":[3,137]}],"614":[{"name":"WSL_DISTRIBUTION_FLAGS","features":[205]},{"name":"WSL_DISTRIBUTION_FLAGS_APPEND_NT_PATH","features":[205]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_DRIVE_MOUNTING","features":[205]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_INTEROP","features":[205]},{"name":"WSL_DISTRIBUTION_FLAGS_NONE","features":[205]},{"name":"WslConfigureDistribution","features":[205]},{"name":"WslGetDistributionConfiguration","features":[205]},{"name":"WslIsDistributionRegistered","features":[3,205]},{"name":"WslLaunch","features":[3,205]},{"name":"WslLaunchInteractive","features":[3,205]},{"name":"WslRegisterDistribution","features":[205]},{"name":"WslUnregisterDistribution","features":[205]}],"615":[{"name":"ACPI","features":[35]},{"name":"CACHE_DESCRIPTOR","features":[35]},{"name":"CACHE_RELATIONSHIP","features":[35]},{"name":"COMPUTER_NAME_FORMAT","features":[35]},{"name":"CPU_SET_INFORMATION_TYPE","features":[35]},{"name":"CacheData","features":[35]},{"name":"CacheInstruction","features":[35]},{"name":"CacheTrace","features":[35]},{"name":"CacheUnified","features":[35]},{"name":"ComputerNameDnsDomain","features":[35]},{"name":"ComputerNameDnsFullyQualified","features":[35]},{"name":"ComputerNameDnsHostname","features":[35]},{"name":"ComputerNameMax","features":[35]},{"name":"ComputerNameNetBIOS","features":[35]},{"name":"ComputerNamePhysicalDnsDomain","features":[35]},{"name":"ComputerNamePhysicalDnsFullyQualified","features":[35]},{"name":"ComputerNamePhysicalDnsHostname","features":[35]},{"name":"ComputerNamePhysicalNetBIOS","features":[35]},{"name":"CpuSetInformation","features":[35]},{"name":"DEPPolicyAlwaysOff","features":[35]},{"name":"DEPPolicyAlwaysOn","features":[35]},{"name":"DEPPolicyOptIn","features":[35]},{"name":"DEPPolicyOptOut","features":[35]},{"name":"DEPTotalPolicyCount","features":[35]},{"name":"DEP_SYSTEM_POLICY_TYPE","features":[35]},{"name":"DEVELOPER_DRIVE_ENABLEMENT_STATE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_ALLINONE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_BANKING","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_CONVERTIBLE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_DESKTOP","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_DETACHABLE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_GAMING","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_HMD","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_KIOSK","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_LARGESCREEN","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_MAKER_BOARD","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_MAX","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_MEDICAL","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_NETWORKING","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_NOTEBOOK","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_PHONE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_PRINTING","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_PUCK","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_STICKPC","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_TABLET","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_THIN_CLIENT","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_TOY","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_UNKNOWN","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_VENDING","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_S","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X_DEVKIT","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_01","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_02","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_03","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_04","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_05","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_06","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_07","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_08","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_09","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_S","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X","features":[35]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X_DEVKIT","features":[35]},{"name":"DEVICEFAMILYINFOENUM","features":[35]},{"name":"DEVICEFAMILYINFOENUM_7067329","features":[35]},{"name":"DEVICEFAMILYINFOENUM_8828080","features":[35]},{"name":"DEVICEFAMILYINFOENUM_DESKTOP","features":[35]},{"name":"DEVICEFAMILYINFOENUM_HOLOGRAPHIC","features":[35]},{"name":"DEVICEFAMILYINFOENUM_IOT","features":[35]},{"name":"DEVICEFAMILYINFOENUM_IOT_HEADLESS","features":[35]},{"name":"DEVICEFAMILYINFOENUM_MAX","features":[35]},{"name":"DEVICEFAMILYINFOENUM_MOBILE","features":[35]},{"name":"DEVICEFAMILYINFOENUM_SERVER","features":[35]},{"name":"DEVICEFAMILYINFOENUM_SERVER_NANO","features":[35]},{"name":"DEVICEFAMILYINFOENUM_TEAM","features":[35]},{"name":"DEVICEFAMILYINFOENUM_UAP","features":[35]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_8X","features":[35]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE","features":[35]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE_HEADLESS","features":[35]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X","features":[35]},{"name":"DEVICEFAMILYINFOENUM_XBOX","features":[35]},{"name":"DEVICEFAMILYINFOENUM_XBOXERA","features":[35]},{"name":"DEVICEFAMILYINFOENUM_XBOXSRA","features":[35]},{"name":"DeveloperDriveDisabledByGroupPolicy","features":[35]},{"name":"DeveloperDriveDisabledBySystemPolicy","features":[35]},{"name":"DeveloperDriveEnabled","features":[35]},{"name":"DeveloperDriveEnablementStateError","features":[35]},{"name":"DnsHostnameToComputerNameExW","features":[3,35]},{"name":"EnumSystemFirmwareTables","features":[35]},{"name":"FIRM","features":[35]},{"name":"FIRMWARE_TABLE_PROVIDER","features":[35]},{"name":"FIRMWARE_TYPE","features":[35]},{"name":"FirmwareTypeBios","features":[35]},{"name":"FirmwareTypeMax","features":[35]},{"name":"FirmwareTypeUefi","features":[35]},{"name":"FirmwareTypeUnknown","features":[35]},{"name":"GROUP_AFFINITY","features":[35]},{"name":"GROUP_RELATIONSHIP","features":[35]},{"name":"GetComputerNameExA","features":[3,35]},{"name":"GetComputerNameExW","features":[3,35]},{"name":"GetDeveloperDriveEnablementState","features":[35]},{"name":"GetFirmwareType","features":[3,35]},{"name":"GetIntegratedDisplaySize","features":[35]},{"name":"GetLocalTime","features":[3,35]},{"name":"GetLogicalProcessorInformation","features":[3,35]},{"name":"GetLogicalProcessorInformationEx","features":[3,35]},{"name":"GetNativeSystemInfo","features":[35]},{"name":"GetOsManufacturingMode","features":[3,35]},{"name":"GetOsSafeBootMode","features":[3,35]},{"name":"GetPhysicallyInstalledSystemMemory","features":[3,35]},{"name":"GetProcessorSystemCycleTime","features":[3,35]},{"name":"GetProductInfo","features":[3,35]},{"name":"GetSystemCpuSetInformation","features":[3,35]},{"name":"GetSystemDEPPolicy","features":[35]},{"name":"GetSystemDirectoryA","features":[35]},{"name":"GetSystemDirectoryW","features":[35]},{"name":"GetSystemFirmwareTable","features":[35]},{"name":"GetSystemInfo","features":[35]},{"name":"GetSystemLeapSecondInformation","features":[3,35]},{"name":"GetSystemTime","features":[3,35]},{"name":"GetSystemTimeAdjustment","features":[3,35]},{"name":"GetSystemTimeAdjustmentPrecise","features":[3,35]},{"name":"GetSystemTimeAsFileTime","features":[3,35]},{"name":"GetSystemTimePreciseAsFileTime","features":[3,35]},{"name":"GetSystemWindowsDirectoryA","features":[35]},{"name":"GetSystemWindowsDirectoryW","features":[35]},{"name":"GetSystemWow64Directory2A","features":[35]},{"name":"GetSystemWow64Directory2W","features":[35]},{"name":"GetSystemWow64DirectoryA","features":[35]},{"name":"GetSystemWow64DirectoryW","features":[35]},{"name":"GetTickCount","features":[35]},{"name":"GetTickCount64","features":[35]},{"name":"GetVersion","features":[35]},{"name":"GetVersionExA","features":[3,35]},{"name":"GetVersionExW","features":[3,35]},{"name":"GetWindowsDirectoryA","features":[35]},{"name":"GetWindowsDirectoryW","features":[35]},{"name":"GlobalDataIdConsoleSharedDataFlags","features":[35]},{"name":"GlobalDataIdCyclesPerYield","features":[35]},{"name":"GlobalDataIdImageNumberHigh","features":[35]},{"name":"GlobalDataIdImageNumberLow","features":[35]},{"name":"GlobalDataIdInterruptTime","features":[35]},{"name":"GlobalDataIdKdDebuggerEnabled","features":[35]},{"name":"GlobalDataIdLastSystemRITEventTickCount","features":[35]},{"name":"GlobalDataIdNtMajorVersion","features":[35]},{"name":"GlobalDataIdNtMinorVersion","features":[35]},{"name":"GlobalDataIdNtSystemRootDrive","features":[35]},{"name":"GlobalDataIdQpcBias","features":[35]},{"name":"GlobalDataIdQpcBypassEnabled","features":[35]},{"name":"GlobalDataIdQpcData","features":[35]},{"name":"GlobalDataIdQpcShift","features":[35]},{"name":"GlobalDataIdRngSeedVersion","features":[35]},{"name":"GlobalDataIdSafeBootMode","features":[35]},{"name":"GlobalDataIdSystemExpirationDate","features":[35]},{"name":"GlobalDataIdTimeZoneBias","features":[35]},{"name":"GlobalDataIdTimeZoneId","features":[35]},{"name":"GlobalDataIdUnknown","features":[35]},{"name":"GlobalMemoryStatus","features":[35]},{"name":"GlobalMemoryStatusEx","features":[3,35]},{"name":"IMAGE_FILE_MACHINE","features":[35]},{"name":"IMAGE_FILE_MACHINE_ALPHA","features":[35]},{"name":"IMAGE_FILE_MACHINE_ALPHA64","features":[35]},{"name":"IMAGE_FILE_MACHINE_AM33","features":[35]},{"name":"IMAGE_FILE_MACHINE_AMD64","features":[35]},{"name":"IMAGE_FILE_MACHINE_ARM","features":[35]},{"name":"IMAGE_FILE_MACHINE_ARM64","features":[35]},{"name":"IMAGE_FILE_MACHINE_ARMNT","features":[35]},{"name":"IMAGE_FILE_MACHINE_AXP64","features":[35]},{"name":"IMAGE_FILE_MACHINE_CEE","features":[35]},{"name":"IMAGE_FILE_MACHINE_CEF","features":[35]},{"name":"IMAGE_FILE_MACHINE_EBC","features":[35]},{"name":"IMAGE_FILE_MACHINE_I386","features":[35]},{"name":"IMAGE_FILE_MACHINE_IA64","features":[35]},{"name":"IMAGE_FILE_MACHINE_M32R","features":[35]},{"name":"IMAGE_FILE_MACHINE_MIPS16","features":[35]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU","features":[35]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU16","features":[35]},{"name":"IMAGE_FILE_MACHINE_POWERPC","features":[35]},{"name":"IMAGE_FILE_MACHINE_POWERPCFP","features":[35]},{"name":"IMAGE_FILE_MACHINE_R10000","features":[35]},{"name":"IMAGE_FILE_MACHINE_R3000","features":[35]},{"name":"IMAGE_FILE_MACHINE_R4000","features":[35]},{"name":"IMAGE_FILE_MACHINE_SH3","features":[35]},{"name":"IMAGE_FILE_MACHINE_SH3DSP","features":[35]},{"name":"IMAGE_FILE_MACHINE_SH3E","features":[35]},{"name":"IMAGE_FILE_MACHINE_SH4","features":[35]},{"name":"IMAGE_FILE_MACHINE_SH5","features":[35]},{"name":"IMAGE_FILE_MACHINE_TARGET_HOST","features":[35]},{"name":"IMAGE_FILE_MACHINE_THUMB","features":[35]},{"name":"IMAGE_FILE_MACHINE_TRICORE","features":[35]},{"name":"IMAGE_FILE_MACHINE_UNKNOWN","features":[35]},{"name":"IMAGE_FILE_MACHINE_WCEMIPSV2","features":[35]},{"name":"IsUserCetAvailableInEnvironment","features":[3,35]},{"name":"IsWow64GuestMachineSupported","features":[3,35]},{"name":"LOGICAL_PROCESSOR_RELATIONSHIP","features":[35]},{"name":"MEMORYSTATUS","features":[35]},{"name":"MEMORYSTATUSEX","features":[35]},{"name":"NTDDI_LONGHORN","features":[35]},{"name":"NTDDI_VERSION","features":[35]},{"name":"NTDDI_VISTA","features":[35]},{"name":"NTDDI_VISTASP1","features":[35]},{"name":"NTDDI_VISTASP2","features":[35]},{"name":"NTDDI_VISTASP3","features":[35]},{"name":"NTDDI_VISTASP4","features":[35]},{"name":"NTDDI_WIN10","features":[35]},{"name":"NTDDI_WIN10_19H1","features":[35]},{"name":"NTDDI_WIN10_CO","features":[35]},{"name":"NTDDI_WIN10_FE","features":[35]},{"name":"NTDDI_WIN10_MN","features":[35]},{"name":"NTDDI_WIN10_NI","features":[35]},{"name":"NTDDI_WIN10_RS1","features":[35]},{"name":"NTDDI_WIN10_RS2","features":[35]},{"name":"NTDDI_WIN10_RS3","features":[35]},{"name":"NTDDI_WIN10_RS4","features":[35]},{"name":"NTDDI_WIN10_RS5","features":[35]},{"name":"NTDDI_WIN10_TH2","features":[35]},{"name":"NTDDI_WIN10_VB","features":[35]},{"name":"NTDDI_WIN2K","features":[35]},{"name":"NTDDI_WIN2KSP1","features":[35]},{"name":"NTDDI_WIN2KSP2","features":[35]},{"name":"NTDDI_WIN2KSP3","features":[35]},{"name":"NTDDI_WIN2KSP4","features":[35]},{"name":"NTDDI_WIN4","features":[35]},{"name":"NTDDI_WIN6","features":[35]},{"name":"NTDDI_WIN6SP1","features":[35]},{"name":"NTDDI_WIN6SP2","features":[35]},{"name":"NTDDI_WIN6SP3","features":[35]},{"name":"NTDDI_WIN6SP4","features":[35]},{"name":"NTDDI_WIN7","features":[35]},{"name":"NTDDI_WIN8","features":[35]},{"name":"NTDDI_WINBLUE","features":[35]},{"name":"NTDDI_WINTHRESHOLD","features":[35]},{"name":"NTDDI_WINXP","features":[35]},{"name":"NTDDI_WINXPSP1","features":[35]},{"name":"NTDDI_WINXPSP2","features":[35]},{"name":"NTDDI_WINXPSP3","features":[35]},{"name":"NTDDI_WINXPSP4","features":[35]},{"name":"NTDDI_WS03","features":[35]},{"name":"NTDDI_WS03SP1","features":[35]},{"name":"NTDDI_WS03SP2","features":[35]},{"name":"NTDDI_WS03SP3","features":[35]},{"name":"NTDDI_WS03SP4","features":[35]},{"name":"NTDDI_WS08","features":[35]},{"name":"NTDDI_WS08SP2","features":[35]},{"name":"NTDDI_WS08SP3","features":[35]},{"name":"NTDDI_WS08SP4","features":[35]},{"name":"NUMA_NODE_RELATIONSHIP","features":[35]},{"name":"OSVERSIONINFOA","features":[35]},{"name":"OSVERSIONINFOEXA","features":[35]},{"name":"OSVERSIONINFOEXW","features":[35]},{"name":"OSVERSIONINFOW","features":[35]},{"name":"OSVERSION_MASK","features":[35]},{"name":"OS_DEPLOYEMENT_STATE_VALUES","features":[35]},{"name":"OS_DEPLOYMENT_COMPACT","features":[35]},{"name":"OS_DEPLOYMENT_STANDARD","features":[35]},{"name":"OS_PRODUCT_TYPE","features":[35]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_A","features":[35]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_W","features":[35]},{"name":"PROCESSOR_ARCHITECTURE","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA64","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_AMD64","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_ARM","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_ARM32_ON_WIN64","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_ARM64","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_ARM64","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_WIN64","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_IA64","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_INTEL","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_MIPS","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_MSIL","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_NEUTRAL","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_PPC","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_SHX","features":[35]},{"name":"PROCESSOR_ARCHITECTURE_UNKNOWN","features":[35]},{"name":"PROCESSOR_CACHE_TYPE","features":[35]},{"name":"PROCESSOR_GROUP_INFO","features":[35]},{"name":"PROCESSOR_RELATIONSHIP","features":[35]},{"name":"PRODUCT_BUSINESS","features":[35]},{"name":"PRODUCT_BUSINESS_N","features":[35]},{"name":"PRODUCT_CLUSTER_SERVER","features":[35]},{"name":"PRODUCT_CLUSTER_SERVER_V","features":[35]},{"name":"PRODUCT_CORE","features":[35]},{"name":"PRODUCT_CORE_COUNTRYSPECIFIC","features":[35]},{"name":"PRODUCT_CORE_N","features":[35]},{"name":"PRODUCT_CORE_SINGLELANGUAGE","features":[35]},{"name":"PRODUCT_DATACENTER_A_SERVER_CORE","features":[35]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER","features":[35]},{"name":"PRODUCT_DATACENTER_SERVER","features":[35]},{"name":"PRODUCT_DATACENTER_SERVER_CORE","features":[35]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_V","features":[35]},{"name":"PRODUCT_DATACENTER_SERVER_V","features":[35]},{"name":"PRODUCT_EDUCATION","features":[35]},{"name":"PRODUCT_EDUCATION_N","features":[35]},{"name":"PRODUCT_ENTERPRISE","features":[35]},{"name":"PRODUCT_ENTERPRISE_E","features":[35]},{"name":"PRODUCT_ENTERPRISE_EVALUATION","features":[35]},{"name":"PRODUCT_ENTERPRISE_N","features":[35]},{"name":"PRODUCT_ENTERPRISE_N_EVALUATION","features":[35]},{"name":"PRODUCT_ENTERPRISE_S","features":[35]},{"name":"PRODUCT_ENTERPRISE_SERVER","features":[35]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE","features":[35]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE_V","features":[35]},{"name":"PRODUCT_ENTERPRISE_SERVER_IA64","features":[35]},{"name":"PRODUCT_ENTERPRISE_SERVER_V","features":[35]},{"name":"PRODUCT_ENTERPRISE_S_EVALUATION","features":[35]},{"name":"PRODUCT_ENTERPRISE_S_N","features":[35]},{"name":"PRODUCT_ENTERPRISE_S_N_EVALUATION","features":[35]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDL","features":[35]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDLSVC","features":[35]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMT","features":[35]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMTSVC","features":[35]},{"name":"PRODUCT_HOME_BASIC","features":[35]},{"name":"PRODUCT_HOME_BASIC_E","features":[35]},{"name":"PRODUCT_HOME_BASIC_N","features":[35]},{"name":"PRODUCT_HOME_PREMIUM","features":[35]},{"name":"PRODUCT_HOME_PREMIUM_E","features":[35]},{"name":"PRODUCT_HOME_PREMIUM_N","features":[35]},{"name":"PRODUCT_HOME_PREMIUM_SERVER","features":[35]},{"name":"PRODUCT_HOME_SERVER","features":[35]},{"name":"PRODUCT_HYPERV","features":[35]},{"name":"PRODUCT_IOTUAP","features":[35]},{"name":"PRODUCT_IOTUAPCOMMERCIAL","features":[35]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MANAGEMENT","features":[35]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING","features":[35]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_SECURITY","features":[35]},{"name":"PRODUCT_MOBILE_CORE","features":[35]},{"name":"PRODUCT_MOBILE_ENTERPRISE","features":[35]},{"name":"PRODUCT_MULTIPOINT_PREMIUM_SERVER","features":[35]},{"name":"PRODUCT_MULTIPOINT_STANDARD_SERVER","features":[35]},{"name":"PRODUCT_PROFESSIONAL","features":[35]},{"name":"PRODUCT_PROFESSIONAL_E","features":[35]},{"name":"PRODUCT_PROFESSIONAL_N","features":[35]},{"name":"PRODUCT_PROFESSIONAL_WMC","features":[35]},{"name":"PRODUCT_PRO_WORKSTATION","features":[35]},{"name":"PRODUCT_PRO_WORKSTATION_N","features":[35]},{"name":"PRODUCT_SB_SOLUTION_SERVER","features":[35]},{"name":"PRODUCT_SB_SOLUTION_SERVER_EM","features":[35]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS","features":[35]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS_EM","features":[35]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS","features":[35]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS_V","features":[35]},{"name":"PRODUCT_SERVER_FOUNDATION","features":[35]},{"name":"PRODUCT_SMALLBUSINESS_SERVER","features":[35]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM","features":[35]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM_CORE","features":[35]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER","features":[35]},{"name":"PRODUCT_STANDARD_A_SERVER_CORE","features":[35]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER","features":[35]},{"name":"PRODUCT_STANDARD_SERVER","features":[35]},{"name":"PRODUCT_STANDARD_SERVER_CORE_","features":[35]},{"name":"PRODUCT_STANDARD_SERVER_CORE_V","features":[35]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS","features":[35]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS_CORE","features":[35]},{"name":"PRODUCT_STANDARD_SERVER_V","features":[35]},{"name":"PRODUCT_STARTER","features":[35]},{"name":"PRODUCT_STARTER_E","features":[35]},{"name":"PRODUCT_STARTER_N","features":[35]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER","features":[35]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER_CORE","features":[35]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER","features":[35]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER_CORE","features":[35]},{"name":"PRODUCT_STORAGE_STANDARD_EVALUATION_SERVER","features":[35]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER","features":[35]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER_CORE","features":[35]},{"name":"PRODUCT_STORAGE_WORKGROUP_EVALUATION_SERVER","features":[35]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER","features":[35]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER_CORE","features":[35]},{"name":"PRODUCT_ULTIMATE","features":[35]},{"name":"PRODUCT_ULTIMATE_E","features":[35]},{"name":"PRODUCT_ULTIMATE_N","features":[35]},{"name":"PRODUCT_UNDEFINED","features":[35]},{"name":"PRODUCT_WEB_SERVER","features":[35]},{"name":"PRODUCT_WEB_SERVER_CORE","features":[35]},{"name":"RSMB","features":[35]},{"name":"RTL_SYSTEM_GLOBAL_DATA_ID","features":[35]},{"name":"RelationAll","features":[35]},{"name":"RelationCache","features":[35]},{"name":"RelationGroup","features":[35]},{"name":"RelationNumaNode","features":[35]},{"name":"RelationNumaNodeEx","features":[35]},{"name":"RelationProcessorCore","features":[35]},{"name":"RelationProcessorDie","features":[35]},{"name":"RelationProcessorModule","features":[35]},{"name":"RelationProcessorPackage","features":[35]},{"name":"RtlConvertDeviceFamilyInfoToString","features":[35]},{"name":"RtlGetDeviceFamilyInfoEnum","features":[35]},{"name":"RtlGetProductInfo","features":[3,35]},{"name":"RtlGetSystemGlobalData","features":[35]},{"name":"RtlOsDeploymentState","features":[35]},{"name":"RtlSwitchedVVI","features":[35]},{"name":"SCEX2_ALT_NETBIOS_NAME","features":[35]},{"name":"SPVERSION_MASK","features":[35]},{"name":"SUBVERSION_MASK","features":[35]},{"name":"SYSTEM_CPU_SET_INFORMATION","features":[35]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED","features":[35]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED_TO_TARGET_PROCESS","features":[35]},{"name":"SYSTEM_CPU_SET_INFORMATION_PARKED","features":[35]},{"name":"SYSTEM_CPU_SET_INFORMATION_REALTIME","features":[35]},{"name":"SYSTEM_INFO","features":[35]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION","features":[35]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX","features":[35]},{"name":"SYSTEM_POOL_ZEROING_INFORMATION","features":[3,35]},{"name":"SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION","features":[35]},{"name":"SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION","features":[35]},{"name":"SetComputerNameA","features":[3,35]},{"name":"SetComputerNameEx2W","features":[3,35]},{"name":"SetComputerNameExA","features":[3,35]},{"name":"SetComputerNameExW","features":[3,35]},{"name":"SetComputerNameW","features":[3,35]},{"name":"SetLocalTime","features":[3,35]},{"name":"SetSystemTime","features":[3,35]},{"name":"SetSystemTimeAdjustment","features":[3,35]},{"name":"SetSystemTimeAdjustmentPrecise","features":[3,35]},{"name":"USER_CET_ENVIRONMENT","features":[35]},{"name":"USER_CET_ENVIRONMENT_SGX2_ENCLAVE","features":[35]},{"name":"USER_CET_ENVIRONMENT_VBS_BASIC_ENCLAVE","features":[35]},{"name":"USER_CET_ENVIRONMENT_VBS_ENCLAVE","features":[35]},{"name":"USER_CET_ENVIRONMENT_WIN32_PROCESS","features":[35]},{"name":"VER_BUILDNUMBER","features":[35]},{"name":"VER_FLAGS","features":[35]},{"name":"VER_MAJORVERSION","features":[35]},{"name":"VER_MINORVERSION","features":[35]},{"name":"VER_PLATFORMID","features":[35]},{"name":"VER_PRODUCT_TYPE","features":[35]},{"name":"VER_SERVICEPACKMAJOR","features":[35]},{"name":"VER_SERVICEPACKMINOR","features":[35]},{"name":"VER_SUITENAME","features":[35]},{"name":"VerSetConditionMask","features":[35]},{"name":"VerifyVersionInfoA","features":[3,35]},{"name":"VerifyVersionInfoW","features":[3,35]},{"name":"WDK_NTDDI_VERSION","features":[35]},{"name":"_WIN32_IE_IE100","features":[35]},{"name":"_WIN32_IE_IE110","features":[35]},{"name":"_WIN32_IE_IE20","features":[35]},{"name":"_WIN32_IE_IE30","features":[35]},{"name":"_WIN32_IE_IE302","features":[35]},{"name":"_WIN32_IE_IE40","features":[35]},{"name":"_WIN32_IE_IE401","features":[35]},{"name":"_WIN32_IE_IE50","features":[35]},{"name":"_WIN32_IE_IE501","features":[35]},{"name":"_WIN32_IE_IE55","features":[35]},{"name":"_WIN32_IE_IE60","features":[35]},{"name":"_WIN32_IE_IE60SP1","features":[35]},{"name":"_WIN32_IE_IE60SP2","features":[35]},{"name":"_WIN32_IE_IE70","features":[35]},{"name":"_WIN32_IE_IE80","features":[35]},{"name":"_WIN32_IE_IE90","features":[35]},{"name":"_WIN32_IE_LONGHORN","features":[35]},{"name":"_WIN32_IE_NT4","features":[35]},{"name":"_WIN32_IE_NT4SP1","features":[35]},{"name":"_WIN32_IE_NT4SP2","features":[35]},{"name":"_WIN32_IE_NT4SP3","features":[35]},{"name":"_WIN32_IE_NT4SP4","features":[35]},{"name":"_WIN32_IE_NT4SP5","features":[35]},{"name":"_WIN32_IE_NT4SP6","features":[35]},{"name":"_WIN32_IE_WIN10","features":[35]},{"name":"_WIN32_IE_WIN2K","features":[35]},{"name":"_WIN32_IE_WIN2KSP1","features":[35]},{"name":"_WIN32_IE_WIN2KSP2","features":[35]},{"name":"_WIN32_IE_WIN2KSP3","features":[35]},{"name":"_WIN32_IE_WIN2KSP4","features":[35]},{"name":"_WIN32_IE_WIN6","features":[35]},{"name":"_WIN32_IE_WIN7","features":[35]},{"name":"_WIN32_IE_WIN8","features":[35]},{"name":"_WIN32_IE_WIN98","features":[35]},{"name":"_WIN32_IE_WIN98SE","features":[35]},{"name":"_WIN32_IE_WINBLUE","features":[35]},{"name":"_WIN32_IE_WINME","features":[35]},{"name":"_WIN32_IE_WINTHRESHOLD","features":[35]},{"name":"_WIN32_IE_WS03","features":[35]},{"name":"_WIN32_IE_WS03SP1","features":[35]},{"name":"_WIN32_IE_XP","features":[35]},{"name":"_WIN32_IE_XPSP1","features":[35]},{"name":"_WIN32_IE_XPSP2","features":[35]},{"name":"_WIN32_WINNT_LONGHORN","features":[35]},{"name":"_WIN32_WINNT_NT4","features":[35]},{"name":"_WIN32_WINNT_VISTA","features":[35]},{"name":"_WIN32_WINNT_WIN10","features":[35]},{"name":"_WIN32_WINNT_WIN2K","features":[35]},{"name":"_WIN32_WINNT_WIN6","features":[35]},{"name":"_WIN32_WINNT_WIN7","features":[35]},{"name":"_WIN32_WINNT_WIN8","features":[35]},{"name":"_WIN32_WINNT_WINBLUE","features":[35]},{"name":"_WIN32_WINNT_WINTHRESHOLD","features":[35]},{"name":"_WIN32_WINNT_WINXP","features":[35]},{"name":"_WIN32_WINNT_WS03","features":[35]},{"name":"_WIN32_WINNT_WS08","features":[35]}],"616":[{"name":"ACCESS_ALLOWED_ACE_TYPE","features":[38]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE_TYPE","features":[38]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE_TYPE","features":[38]},{"name":"ACCESS_ALLOWED_COMPOUND_ACE_TYPE","features":[38]},{"name":"ACCESS_ALLOWED_OBJECT_ACE_TYPE","features":[38]},{"name":"ACCESS_DENIED_ACE_TYPE","features":[38]},{"name":"ACCESS_DENIED_CALLBACK_ACE_TYPE","features":[38]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE_TYPE","features":[38]},{"name":"ACCESS_DENIED_OBJECT_ACE_TYPE","features":[38]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_A","features":[38]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_W","features":[38]},{"name":"ACCESS_DS_SOURCE_A","features":[38]},{"name":"ACCESS_DS_SOURCE_W","features":[38]},{"name":"ACCESS_FILTER_SECURITY_INFORMATION","features":[38]},{"name":"ACCESS_MAX_LEVEL","features":[38]},{"name":"ACCESS_MAX_MS_ACE_TYPE","features":[38]},{"name":"ACCESS_MAX_MS_OBJECT_ACE_TYPE","features":[38]},{"name":"ACCESS_MAX_MS_V2_ACE_TYPE","features":[38]},{"name":"ACCESS_MAX_MS_V3_ACE_TYPE","features":[38]},{"name":"ACCESS_MAX_MS_V4_ACE_TYPE","features":[38]},{"name":"ACCESS_MAX_MS_V5_ACE_TYPE","features":[38]},{"name":"ACCESS_MIN_MS_ACE_TYPE","features":[38]},{"name":"ACCESS_MIN_MS_OBJECT_ACE_TYPE","features":[38]},{"name":"ACCESS_OBJECT_GUID","features":[38]},{"name":"ACCESS_PROPERTY_GUID","features":[38]},{"name":"ACCESS_PROPERTY_SET_GUID","features":[38]},{"name":"ACCESS_REASON_DATA_MASK","features":[38]},{"name":"ACCESS_REASON_EXDATA_MASK","features":[38]},{"name":"ACCESS_REASON_STAGING_MASK","features":[38]},{"name":"ACCESS_REASON_TYPE","features":[38]},{"name":"ACCESS_REASON_TYPE_MASK","features":[38]},{"name":"ACCESS_SYSTEM_SECURITY","features":[38]},{"name":"ACL_REVISION1","features":[38]},{"name":"ACL_REVISION2","features":[38]},{"name":"ACL_REVISION3","features":[38]},{"name":"ACL_REVISION4","features":[38]},{"name":"ACPI_PPM_HARDWARE_ALL","features":[38]},{"name":"ACPI_PPM_SOFTWARE_ALL","features":[38]},{"name":"ACPI_PPM_SOFTWARE_ANY","features":[38]},{"name":"ACTIVATION_CONTEXT_INFO_CLASS","features":[38]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF","features":[38]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_NONE","features":[38]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_URL","features":[38]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_APPLICATION_SETTINGS","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_COMPATIBILITY_INFO","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION","features":[38]},{"name":"ACTIVATION_CONTEXT_SECTION_WINRT_ACTIVATABLE_CLASSES","features":[38]},{"name":"ALERT_SYSTEM_CRITICAL","features":[38]},{"name":"ALERT_SYSTEM_ERROR","features":[38]},{"name":"ALERT_SYSTEM_INFORMATIONAL","features":[38]},{"name":"ALERT_SYSTEM_QUERY","features":[38]},{"name":"ALERT_SYSTEM_SEV","features":[38]},{"name":"ALERT_SYSTEM_WARNING","features":[38]},{"name":"ALL_POWERSCHEMES_GUID","features":[38]},{"name":"ANON_OBJECT_HEADER","features":[38]},{"name":"ANON_OBJECT_HEADER_BIGOBJ","features":[38]},{"name":"ANON_OBJECT_HEADER_V2","features":[38]},{"name":"ANYSIZE_ARRAY","features":[38]},{"name":"APPCOMMAND_BASS_BOOST","features":[38]},{"name":"APPCOMMAND_BASS_DOWN","features":[38]},{"name":"APPCOMMAND_BASS_UP","features":[38]},{"name":"APPCOMMAND_BROWSER_BACKWARD","features":[38]},{"name":"APPCOMMAND_BROWSER_FAVORITES","features":[38]},{"name":"APPCOMMAND_BROWSER_FORWARD","features":[38]},{"name":"APPCOMMAND_BROWSER_HOME","features":[38]},{"name":"APPCOMMAND_BROWSER_REFRESH","features":[38]},{"name":"APPCOMMAND_BROWSER_SEARCH","features":[38]},{"name":"APPCOMMAND_BROWSER_STOP","features":[38]},{"name":"APPCOMMAND_CLOSE","features":[38]},{"name":"APPCOMMAND_COPY","features":[38]},{"name":"APPCOMMAND_CORRECTION_LIST","features":[38]},{"name":"APPCOMMAND_CUT","features":[38]},{"name":"APPCOMMAND_DELETE","features":[38]},{"name":"APPCOMMAND_DICTATE_OR_COMMAND_CONTROL_TOGGLE","features":[38]},{"name":"APPCOMMAND_DWM_FLIP3D","features":[38]},{"name":"APPCOMMAND_FIND","features":[38]},{"name":"APPCOMMAND_FORWARD_MAIL","features":[38]},{"name":"APPCOMMAND_HELP","features":[38]},{"name":"APPCOMMAND_ID","features":[38]},{"name":"APPCOMMAND_LAUNCH_APP1","features":[38]},{"name":"APPCOMMAND_LAUNCH_APP2","features":[38]},{"name":"APPCOMMAND_LAUNCH_MAIL","features":[38]},{"name":"APPCOMMAND_LAUNCH_MEDIA_SELECT","features":[38]},{"name":"APPCOMMAND_MEDIA_CHANNEL_DOWN","features":[38]},{"name":"APPCOMMAND_MEDIA_CHANNEL_UP","features":[38]},{"name":"APPCOMMAND_MEDIA_FAST_FORWARD","features":[38]},{"name":"APPCOMMAND_MEDIA_NEXTTRACK","features":[38]},{"name":"APPCOMMAND_MEDIA_PAUSE","features":[38]},{"name":"APPCOMMAND_MEDIA_PLAY","features":[38]},{"name":"APPCOMMAND_MEDIA_PLAY_PAUSE","features":[38]},{"name":"APPCOMMAND_MEDIA_PREVIOUSTRACK","features":[38]},{"name":"APPCOMMAND_MEDIA_RECORD","features":[38]},{"name":"APPCOMMAND_MEDIA_REWIND","features":[38]},{"name":"APPCOMMAND_MEDIA_STOP","features":[38]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_DOWN","features":[38]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_MUTE","features":[38]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_UP","features":[38]},{"name":"APPCOMMAND_MIC_ON_OFF_TOGGLE","features":[38]},{"name":"APPCOMMAND_NEW","features":[38]},{"name":"APPCOMMAND_OPEN","features":[38]},{"name":"APPCOMMAND_PASTE","features":[38]},{"name":"APPCOMMAND_PRINT","features":[38]},{"name":"APPCOMMAND_REDO","features":[38]},{"name":"APPCOMMAND_REPLY_TO_MAIL","features":[38]},{"name":"APPCOMMAND_SAVE","features":[38]},{"name":"APPCOMMAND_SEND_MAIL","features":[38]},{"name":"APPCOMMAND_SPELL_CHECK","features":[38]},{"name":"APPCOMMAND_TREBLE_DOWN","features":[38]},{"name":"APPCOMMAND_TREBLE_UP","features":[38]},{"name":"APPCOMMAND_UNDO","features":[38]},{"name":"APPCOMMAND_VOLUME_DOWN","features":[38]},{"name":"APPCOMMAND_VOLUME_MUTE","features":[38]},{"name":"APPCOMMAND_VOLUME_UP","features":[38]},{"name":"APPLICATIONLAUNCH_SETTING_VALUE","features":[38]},{"name":"APPLICATION_ERROR_MASK","features":[38]},{"name":"ARM64_FNPDATA_CR","features":[38]},{"name":"ARM64_FNPDATA_FLAGS","features":[38]},{"name":"ARM64_MAX_BREAKPOINTS","features":[38]},{"name":"ARM64_MAX_WATCHPOINTS","features":[38]},{"name":"ARM64_MULT_INTRINSICS_SUPPORTED","features":[38]},{"name":"ARM64_PREFETCH_KEEP","features":[38]},{"name":"ARM64_PREFETCH_L1","features":[38]},{"name":"ARM64_PREFETCH_L2","features":[38]},{"name":"ARM64_PREFETCH_L3","features":[38]},{"name":"ARM64_PREFETCH_PLD","features":[38]},{"name":"ARM64_PREFETCH_PLI","features":[38]},{"name":"ARM64_PREFETCH_PST","features":[38]},{"name":"ARM64_PREFETCH_STRM","features":[38]},{"name":"ARM_CACHE_ALIGNMENT_SIZE","features":[38]},{"name":"ARM_MAX_BREAKPOINTS","features":[38]},{"name":"ARM_MAX_WATCHPOINTS","features":[38]},{"name":"ASSERT_BREAKPOINT","features":[38]},{"name":"ATF_FLAGS","features":[38]},{"name":"ATF_ONOFFFEEDBACK","features":[38]},{"name":"ATF_TIMEOUTON","features":[38]},{"name":"AUDIT_ALLOW_NO_PRIVILEGE","features":[38]},{"name":"AccessReasonAllowedAce","features":[38]},{"name":"AccessReasonAllowedParentAce","features":[38]},{"name":"AccessReasonDeniedAce","features":[38]},{"name":"AccessReasonDeniedParentAce","features":[38]},{"name":"AccessReasonEmptyDacl","features":[38]},{"name":"AccessReasonFilterAce","features":[38]},{"name":"AccessReasonFromPrivilege","features":[38]},{"name":"AccessReasonIntegrityLevel","features":[38]},{"name":"AccessReasonMissingPrivilege","features":[38]},{"name":"AccessReasonNoGrant","features":[38]},{"name":"AccessReasonNoSD","features":[38]},{"name":"AccessReasonNone","features":[38]},{"name":"AccessReasonNotGrantedByCape","features":[38]},{"name":"AccessReasonNotGrantedByParentCape","features":[38]},{"name":"AccessReasonNotGrantedToAppContainer","features":[38]},{"name":"AccessReasonNullDacl","features":[38]},{"name":"AccessReasonOwnership","features":[38]},{"name":"AccessReasonTrustLabel","features":[38]},{"name":"ActivationContextBasicInformation","features":[38]},{"name":"ActivationContextDetailedInformation","features":[38]},{"name":"ActivationContextManifestResourceName","features":[38]},{"name":"AdapterType","features":[38]},{"name":"AssemblyDetailedInformationInActivationContext","features":[38]},{"name":"AssemblyDetailedInformationInActivationContxt","features":[38]},{"name":"AutoLoad","features":[38]},{"name":"BATTERY_DISCHARGE_FLAGS_ENABLE","features":[38]},{"name":"BATTERY_DISCHARGE_FLAGS_EVENTCODE_MASK","features":[38]},{"name":"BREAK_DEBUG_BASE","features":[38]},{"name":"BootLoad","features":[38]},{"name":"CACHE_FULLY_ASSOCIATIVE","features":[38]},{"name":"CFE_UNDERLINE","features":[38]},{"name":"CFG_CALL_TARGET_CONVERT_EXPORT_SUPPRESSED_TO_VALID","features":[38]},{"name":"CFG_CALL_TARGET_CONVERT_XFG_TO_CFG","features":[38]},{"name":"CFG_CALL_TARGET_PROCESSED","features":[38]},{"name":"CFG_CALL_TARGET_VALID","features":[38]},{"name":"CFG_CALL_TARGET_VALID_XFG","features":[38]},{"name":"CFU_CF1UNDERLINE","features":[38]},{"name":"CFU_INVERT","features":[38]},{"name":"CFU_UNDERLINE","features":[38]},{"name":"CFU_UNDERLINEDASH","features":[38]},{"name":"CFU_UNDERLINEDASHDOT","features":[38]},{"name":"CFU_UNDERLINEDASHDOTDOT","features":[38]},{"name":"CFU_UNDERLINEDOTTED","features":[38]},{"name":"CFU_UNDERLINEDOUBLE","features":[38]},{"name":"CFU_UNDERLINEDOUBLEWAVE","features":[38]},{"name":"CFU_UNDERLINEHAIRLINE","features":[38]},{"name":"CFU_UNDERLINEHEAVYWAVE","features":[38]},{"name":"CFU_UNDERLINELONGDASH","features":[38]},{"name":"CFU_UNDERLINENONE","features":[38]},{"name":"CFU_UNDERLINETHICK","features":[38]},{"name":"CFU_UNDERLINETHICKDASH","features":[38]},{"name":"CFU_UNDERLINETHICKDASHDOT","features":[38]},{"name":"CFU_UNDERLINETHICKDASHDOTDOT","features":[38]},{"name":"CFU_UNDERLINETHICKDOTTED","features":[38]},{"name":"CFU_UNDERLINETHICKLONGDASH","features":[38]},{"name":"CFU_UNDERLINEWAVE","features":[38]},{"name":"CFU_UNDERLINEWORD","features":[38]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[38]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[38]},{"name":"CLAIM_SECURITY_ATTRIBUTE_CUSTOM_FLAGS","features":[38]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[38]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_NETWORK_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_RAM_DISK_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_SD_DISK_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_USB3_DISK_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_USB_DISK_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_VERIFIER_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD","features":[38]},{"name":"CM_SERVICE_WINPE_BOOT_LOAD","features":[38]},{"name":"COMIMAGE_FLAGS_32BITPREFERRED","features":[38]},{"name":"COMIMAGE_FLAGS_32BITREQUIRED","features":[38]},{"name":"COMIMAGE_FLAGS_ILONLY","features":[38]},{"name":"COMIMAGE_FLAGS_IL_LIBRARY","features":[38]},{"name":"COMIMAGE_FLAGS_NATIVE_ENTRYPOINT","features":[38]},{"name":"COMIMAGE_FLAGS_STRONGNAMESIGNED","features":[38]},{"name":"COMIMAGE_FLAGS_TRACKDEBUGDATA","features":[38]},{"name":"COMPONENT_FILTER","features":[38]},{"name":"COMPONENT_KTM","features":[38]},{"name":"COMPONENT_VALID_FLAGS","features":[38]},{"name":"COMPRESSION_ENGINE_HIBER","features":[38]},{"name":"COMPRESSION_ENGINE_MAXIMUM","features":[38]},{"name":"COMPRESSION_ENGINE_STANDARD","features":[38]},{"name":"CORE_PARKING_POLICY_CHANGE_IDEAL","features":[38]},{"name":"CORE_PARKING_POLICY_CHANGE_MAX","features":[38]},{"name":"CORE_PARKING_POLICY_CHANGE_MULTISTEP","features":[38]},{"name":"CORE_PARKING_POLICY_CHANGE_ROCKET","features":[38]},{"name":"CORE_PARKING_POLICY_CHANGE_SINGLE","features":[38]},{"name":"COR_DELETED_NAME_LENGTH","features":[38]},{"name":"COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE","features":[38]},{"name":"COR_VERSION_MAJOR","features":[38]},{"name":"COR_VERSION_MAJOR_V2","features":[38]},{"name":"COR_VERSION_MINOR","features":[38]},{"name":"COR_VTABLEGAP_NAME_LENGTH","features":[38]},{"name":"COR_VTABLE_32BIT","features":[38]},{"name":"COR_VTABLE_64BIT","features":[38]},{"name":"COR_VTABLE_CALL_MOST_DERIVED","features":[38]},{"name":"COR_VTABLE_FROM_UNMANAGED","features":[38]},{"name":"COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN","features":[38]},{"name":"CREATE_BOUNDARY_DESCRIPTOR_ADD_APPCONTAINER_SID","features":[38]},{"name":"CRITICAL_ACE_FLAG","features":[38]},{"name":"CTMF_INCLUDE_APPCONTAINER","features":[38]},{"name":"CTMF_INCLUDE_LPAC","features":[38]},{"name":"CompatibilityInformationInActivationContext","features":[38]},{"name":"CriticalError","features":[38]},{"name":"DECIMAL_NEG","features":[38]},{"name":"DEDICATED_MEMORY_CACHE_ELIGIBLE","features":[38]},{"name":"DEVICEFAMILYDEVICEFORM_KEY","features":[38]},{"name":"DEVICEFAMILYDEVICEFORM_VALUE","features":[38]},{"name":"DIAGNOSTIC_REASON_DETAILED_STRING","features":[38]},{"name":"DIAGNOSTIC_REASON_NOT_SPECIFIED","features":[38]},{"name":"DIAGNOSTIC_REASON_SIMPLE_STRING","features":[38]},{"name":"DIAGNOSTIC_REASON_VERSION","features":[38]},{"name":"DISCHARGE_POLICY_CRITICAL","features":[38]},{"name":"DISCHARGE_POLICY_LOW","features":[38]},{"name":"DISPATCHER_CONTEXT_NONVOLREG_ARM64","features":[38]},{"name":"DLL_PROCESS_ATTACH","features":[38]},{"name":"DLL_PROCESS_DETACH","features":[38]},{"name":"DLL_THREAD_ATTACH","features":[38]},{"name":"DLL_THREAD_DETACH","features":[38]},{"name":"DOMAIN_ALIAS_RID_ACCESS_CONTROL_ASSISTANCE_OPS","features":[38]},{"name":"DOMAIN_ALIAS_RID_ACCOUNT_OPS","features":[38]},{"name":"DOMAIN_ALIAS_RID_ADMINS","features":[38]},{"name":"DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS","features":[38]},{"name":"DOMAIN_ALIAS_RID_BACKUP_OPS","features":[38]},{"name":"DOMAIN_ALIAS_RID_CACHEABLE_PRINCIPALS_GROUP","features":[38]},{"name":"DOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP","features":[38]},{"name":"DOMAIN_ALIAS_RID_CRYPTO_OPERATORS","features":[38]},{"name":"DOMAIN_ALIAS_RID_DCOM_USERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_DEFAULT_ACCOUNT","features":[38]},{"name":"DOMAIN_ALIAS_RID_DEVICE_OWNERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP","features":[38]},{"name":"DOMAIN_ALIAS_RID_GUESTS","features":[38]},{"name":"DOMAIN_ALIAS_RID_HYPER_V_ADMINS","features":[38]},{"name":"DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_IUSERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_LOGGING_USERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_MONITORING_USERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS","features":[38]},{"name":"DOMAIN_ALIAS_RID_NON_CACHEABLE_PRINCIPALS_GROUP","features":[38]},{"name":"DOMAIN_ALIAS_RID_POWER_USERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_PREW2KCOMPACCESS","features":[38]},{"name":"DOMAIN_ALIAS_RID_PRINT_OPS","features":[38]},{"name":"DOMAIN_ALIAS_RID_RAS_SERVERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_RDS_ENDPOINT_SERVERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_RDS_MANAGEMENT_SERVERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_RDS_REMOTE_ACCESS_SERVERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_REMOTE_MANAGEMENT_USERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_REPLICATOR","features":[38]},{"name":"DOMAIN_ALIAS_RID_STORAGE_REPLICA_ADMINS","features":[38]},{"name":"DOMAIN_ALIAS_RID_SYSTEM_OPS","features":[38]},{"name":"DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS","features":[38]},{"name":"DOMAIN_ALIAS_RID_USERS","features":[38]},{"name":"DOMAIN_GROUP_RID_ADMINS","features":[38]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_CONTAINS_CLAIMS","features":[38]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_IS_COMPOUNDED","features":[38]},{"name":"DOMAIN_GROUP_RID_CDC_RESERVED","features":[38]},{"name":"DOMAIN_GROUP_RID_CERT_ADMINS","features":[38]},{"name":"DOMAIN_GROUP_RID_CLONEABLE_CONTROLLERS","features":[38]},{"name":"DOMAIN_GROUP_RID_COMPUTERS","features":[38]},{"name":"DOMAIN_GROUP_RID_CONTROLLERS","features":[38]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_ADMINS","features":[38]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_KEY_ADMINS","features":[38]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_READONLY_DOMAIN_CONTROLLERS","features":[38]},{"name":"DOMAIN_GROUP_RID_GUESTS","features":[38]},{"name":"DOMAIN_GROUP_RID_KEY_ADMINS","features":[38]},{"name":"DOMAIN_GROUP_RID_POLICY_ADMINS","features":[38]},{"name":"DOMAIN_GROUP_RID_PROTECTED_USERS","features":[38]},{"name":"DOMAIN_GROUP_RID_READONLY_CONTROLLERS","features":[38]},{"name":"DOMAIN_GROUP_RID_SCHEMA_ADMINS","features":[38]},{"name":"DOMAIN_GROUP_RID_USERS","features":[38]},{"name":"DOMAIN_USER_RID_ADMIN","features":[38]},{"name":"DOMAIN_USER_RID_DEFAULT_ACCOUNT","features":[38]},{"name":"DOMAIN_USER_RID_GUEST","features":[38]},{"name":"DOMAIN_USER_RID_KRBTGT","features":[38]},{"name":"DOMAIN_USER_RID_MAX","features":[38]},{"name":"DOMAIN_USER_RID_WDAG_ACCOUNT","features":[38]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_ADD","features":[38]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_PROCESSED","features":[38]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_ADD","features":[38]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_PROCESSED","features":[38]},{"name":"DemandLoad","features":[38]},{"name":"DisableLoad","features":[38]},{"name":"DriverType","features":[38]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_IC_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_IC_VAL_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41a_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41a_VAL_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41b_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41b_VAL_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41c_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM41c_VAL_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM5C_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM5C_VAL_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM7B_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM7B_VAL_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM9D_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_IMM9D_VAL_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_POS_X","features":[38]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_X","features":[38]},{"name":"EMARCH_ENC_I17_SIGN_SIZE_X","features":[38]},{"name":"EMARCH_ENC_I17_SIGN_VAL_POS_X","features":[38]},{"name":"ENCLAVE_LONG_ID_LENGTH","features":[38]},{"name":"ENCLAVE_SHORT_ID_LENGTH","features":[38]},{"name":"ENCLAVE_TYPE_SGX","features":[38]},{"name":"ENCLAVE_TYPE_SGX2","features":[38]},{"name":"ENCLAVE_TYPE_VBS","features":[38]},{"name":"ENCLAVE_TYPE_VBS_BASIC","features":[38]},{"name":"ENCLAVE_VBS_FLAG_DEBUG","features":[38]},{"name":"ENLISTMENT_BASIC_INFORMATION","features":[38]},{"name":"ENLISTMENT_CRM_INFORMATION","features":[38]},{"name":"ENLISTMENT_INFORMATION_CLASS","features":[38]},{"name":"ENLISTMENT_QUERY_INFORMATION","features":[38]},{"name":"ENLISTMENT_RECOVER","features":[38]},{"name":"ENLISTMENT_SET_INFORMATION","features":[38]},{"name":"ENLISTMENT_SUBORDINATE_RIGHTS","features":[38]},{"name":"ENLISTMENT_SUPERIOR_RIGHTS","features":[38]},{"name":"ERROR_SEVERITY_ERROR","features":[38]},{"name":"ERROR_SEVERITY_INFORMATIONAL","features":[38]},{"name":"ERROR_SEVERITY_SUCCESS","features":[38]},{"name":"ERROR_SEVERITY_WARNING","features":[38]},{"name":"EVENTLOG_BACKWARDS_READ","features":[38]},{"name":"EVENTLOG_END_ALL_PAIRED_EVENTS","features":[38]},{"name":"EVENTLOG_END_PAIRED_EVENT","features":[38]},{"name":"EVENTLOG_FORWARDS_READ","features":[38]},{"name":"EVENTLOG_PAIRED_EVENT_ACTIVE","features":[38]},{"name":"EVENTLOG_PAIRED_EVENT_INACTIVE","features":[38]},{"name":"EVENTLOG_START_PAIRED_EVENT","features":[38]},{"name":"EXCEPTION_COLLIDED_UNWIND","features":[38]},{"name":"EXCEPTION_EXECUTE_FAULT","features":[38]},{"name":"EXCEPTION_EXIT_UNWIND","features":[38]},{"name":"EXCEPTION_MAXIMUM_PARAMETERS","features":[38]},{"name":"EXCEPTION_NESTED_CALL","features":[38]},{"name":"EXCEPTION_NONCONTINUABLE","features":[38]},{"name":"EXCEPTION_READ_FAULT","features":[38]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[38]},{"name":"EXCEPTION_STACK_INVALID","features":[38]},{"name":"EXCEPTION_TARGET_UNWIND","features":[38]},{"name":"EXCEPTION_UNWINDING","features":[38]},{"name":"EXCEPTION_WRITE_FAULT","features":[38]},{"name":"EnlistmentBasicInformation","features":[38]},{"name":"EnlistmentCrmInformation","features":[38]},{"name":"EnlistmentRecoveryInformation","features":[38]},{"name":"FAST_FAIL_ADMINLESS_ACCESS_DENIED","features":[38]},{"name":"FAST_FAIL_APCS_DISABLED","features":[38]},{"name":"FAST_FAIL_CAST_GUARD","features":[38]},{"name":"FAST_FAIL_CERTIFICATION_FAILURE","features":[38]},{"name":"FAST_FAIL_CONTROL_INVALID_RETURN_ADDRESS","features":[38]},{"name":"FAST_FAIL_CORRUPT_LIST_ENTRY","features":[38]},{"name":"FAST_FAIL_CRYPTO_LIBRARY","features":[38]},{"name":"FAST_FAIL_DEPRECATED_SERVICE_INVOKED","features":[38]},{"name":"FAST_FAIL_DLOAD_PROTECTION_FAILURE","features":[38]},{"name":"FAST_FAIL_ENCLAVE_CALL_FAILURE","features":[38]},{"name":"FAST_FAIL_ETW_CORRUPTION","features":[38]},{"name":"FAST_FAIL_FATAL_APP_EXIT","features":[38]},{"name":"FAST_FAIL_FLAGS_CORRUPTION","features":[38]},{"name":"FAST_FAIL_GS_COOKIE_INIT","features":[38]},{"name":"FAST_FAIL_GUARD_EXPORT_SUPPRESSION_FAILURE","features":[38]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE","features":[38]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE_XFG","features":[38]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_SUPPRESSED","features":[38]},{"name":"FAST_FAIL_GUARD_JUMPTABLE","features":[38]},{"name":"FAST_FAIL_GUARD_SS_FAILURE","features":[38]},{"name":"FAST_FAIL_GUARD_WRITE_CHECK_FAILURE","features":[38]},{"name":"FAST_FAIL_HEAP_METADATA_CORRUPTION","features":[38]},{"name":"FAST_FAIL_HOST_VISIBILITY_CHANGE","features":[38]},{"name":"FAST_FAIL_INCORRECT_STACK","features":[38]},{"name":"FAST_FAIL_INVALID_ARG","features":[38]},{"name":"FAST_FAIL_INVALID_BALANCED_TREE","features":[38]},{"name":"FAST_FAIL_INVALID_BUFFER_ACCESS","features":[38]},{"name":"FAST_FAIL_INVALID_CALL_IN_DLL_CALLOUT","features":[38]},{"name":"FAST_FAIL_INVALID_CONTROL_STACK","features":[38]},{"name":"FAST_FAIL_INVALID_DISPATCH_CONTEXT","features":[38]},{"name":"FAST_FAIL_INVALID_EXCEPTION_CHAIN","features":[38]},{"name":"FAST_FAIL_INVALID_FAST_FAIL_CODE","features":[38]},{"name":"FAST_FAIL_INVALID_FIBER_SWITCH","features":[38]},{"name":"FAST_FAIL_INVALID_FILE_OPERATION","features":[38]},{"name":"FAST_FAIL_INVALID_FLS_DATA","features":[38]},{"name":"FAST_FAIL_INVALID_IAT","features":[38]},{"name":"FAST_FAIL_INVALID_IDLE_STATE","features":[38]},{"name":"FAST_FAIL_INVALID_IMAGE_BASE","features":[38]},{"name":"FAST_FAIL_INVALID_JUMP_BUFFER","features":[38]},{"name":"FAST_FAIL_INVALID_LOCK_STATE","features":[38]},{"name":"FAST_FAIL_INVALID_LONGJUMP_TARGET","features":[38]},{"name":"FAST_FAIL_INVALID_NEXT_THREAD","features":[38]},{"name":"FAST_FAIL_INVALID_PFN","features":[38]},{"name":"FAST_FAIL_INVALID_REFERENCE_COUNT","features":[38]},{"name":"FAST_FAIL_INVALID_SET_OF_CONTEXT","features":[38]},{"name":"FAST_FAIL_INVALID_SYSCALL_NUMBER","features":[38]},{"name":"FAST_FAIL_INVALID_THREAD","features":[38]},{"name":"FAST_FAIL_KERNEL_CET_SHADOW_STACK_ASSIST","features":[38]},{"name":"FAST_FAIL_LEGACY_GS_VIOLATION","features":[38]},{"name":"FAST_FAIL_LOADER_CONTINUITY_FAILURE","features":[38]},{"name":"FAST_FAIL_LOW_LABEL_ACCESS_DENIED","features":[38]},{"name":"FAST_FAIL_LPAC_ACCESS_DENIED","features":[38]},{"name":"FAST_FAIL_MRDATA_MODIFIED","features":[38]},{"name":"FAST_FAIL_MRDATA_PROTECTION_FAILURE","features":[38]},{"name":"FAST_FAIL_NTDLL_PATCH_FAILED","features":[38]},{"name":"FAST_FAIL_PATCH_CALLBACK_FAILED","features":[38]},{"name":"FAST_FAIL_PAYLOAD_RESTRICTION_VIOLATION","features":[38]},{"name":"FAST_FAIL_RANGE_CHECK_FAILURE","features":[38]},{"name":"FAST_FAIL_RIO_ABORT","features":[38]},{"name":"FAST_FAIL_SET_CONTEXT_DENIED","features":[38]},{"name":"FAST_FAIL_STACK_COOKIE_CHECK_FAILURE","features":[38]},{"name":"FAST_FAIL_UNEXPECTED_CALL","features":[38]},{"name":"FAST_FAIL_UNEXPECTED_HEAP_EXCEPTION","features":[38]},{"name":"FAST_FAIL_UNEXPECTED_HOST_BEHAVIOR","features":[38]},{"name":"FAST_FAIL_UNHANDLED_LSS_EXCEPTON","features":[38]},{"name":"FAST_FAIL_UNSAFE_EXTENSION_CALL","features":[38]},{"name":"FAST_FAIL_UNSAFE_REGISTRY_ACCESS","features":[38]},{"name":"FAST_FAIL_VEH_CORRUPTION","features":[38]},{"name":"FAST_FAIL_VTGUARD_CHECK_FAILURE","features":[38]},{"name":"FILE_ATTRIBUTE_STRICTLY_SEQUENTIAL","features":[38]},{"name":"FILE_CASE_PRESERVED_NAMES","features":[38]},{"name":"FILE_CASE_SENSITIVE_SEARCH","features":[38]},{"name":"FILE_CS_FLAG_CASE_SENSITIVE_DIR","features":[38]},{"name":"FILE_DAX_VOLUME","features":[38]},{"name":"FILE_FILE_COMPRESSION","features":[38]},{"name":"FILE_NAMED_STREAMS","features":[38]},{"name":"FILE_NAME_FLAGS_UNSPECIFIED","features":[38]},{"name":"FILE_NAME_FLAG_BOTH","features":[38]},{"name":"FILE_NAME_FLAG_DOS","features":[38]},{"name":"FILE_NAME_FLAG_HARDLINK","features":[38]},{"name":"FILE_NAME_FLAG_NTFS","features":[38]},{"name":"FILE_NOTIFY_FULL_INFORMATION","features":[38]},{"name":"FILE_PERSISTENT_ACLS","features":[38]},{"name":"FILE_READ_ONLY_VOLUME","features":[38]},{"name":"FILE_RETURNS_CLEANUP_RESULT_INFO","features":[38]},{"name":"FILE_SEQUENTIAL_WRITE_ONCE","features":[38]},{"name":"FILE_SUPPORTS_BLOCK_REFCOUNTING","features":[38]},{"name":"FILE_SUPPORTS_BYPASS_IO","features":[38]},{"name":"FILE_SUPPORTS_CASE_SENSITIVE_DIRS","features":[38]},{"name":"FILE_SUPPORTS_ENCRYPTION","features":[38]},{"name":"FILE_SUPPORTS_EXTENDED_ATTRIBUTES","features":[38]},{"name":"FILE_SUPPORTS_GHOSTING","features":[38]},{"name":"FILE_SUPPORTS_HARD_LINKS","features":[38]},{"name":"FILE_SUPPORTS_INTEGRITY_STREAMS","features":[38]},{"name":"FILE_SUPPORTS_OBJECT_IDS","features":[38]},{"name":"FILE_SUPPORTS_OPEN_BY_FILE_ID","features":[38]},{"name":"FILE_SUPPORTS_POSIX_UNLINK_RENAME","features":[38]},{"name":"FILE_SUPPORTS_REMOTE_STORAGE","features":[38]},{"name":"FILE_SUPPORTS_REPARSE_POINTS","features":[38]},{"name":"FILE_SUPPORTS_SPARSE_FILES","features":[38]},{"name":"FILE_SUPPORTS_SPARSE_VDL","features":[38]},{"name":"FILE_SUPPORTS_STREAM_SNAPSHOTS","features":[38]},{"name":"FILE_SUPPORTS_TRANSACTIONS","features":[38]},{"name":"FILE_SUPPORTS_USN_JOURNAL","features":[38]},{"name":"FILE_UNICODE_ON_DISK","features":[38]},{"name":"FILE_VOLUME_IS_COMPRESSED","features":[38]},{"name":"FILE_VOLUME_QUOTAS","features":[38]},{"name":"FILL_NV_MEMORY_FLAG_FLUSH","features":[38]},{"name":"FILL_NV_MEMORY_FLAG_NON_TEMPORAL","features":[38]},{"name":"FILL_NV_MEMORY_FLAG_NO_DRAIN","features":[38]},{"name":"FLS_MAXIMUM_AVAILABLE","features":[38]},{"name":"FLUSH_FLAGS_FILE_DATA_ONLY","features":[38]},{"name":"FLUSH_FLAGS_FILE_DATA_SYNC_ONLY","features":[38]},{"name":"FLUSH_FLAGS_NO_SYNC","features":[38]},{"name":"FLUSH_NV_MEMORY_IN_FLAG_NO_DRAIN","features":[38]},{"name":"FOREST_USER_RID_MAX","features":[38]},{"name":"FRAME_FPO","features":[38]},{"name":"FRAME_NONFPO","features":[38]},{"name":"FRAME_TRAP","features":[38]},{"name":"FRAME_TSS","features":[38]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContext","features":[38]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContxt","features":[38]},{"name":"FileSystemType","features":[38]},{"name":"GC_ALLGESTURES","features":[38]},{"name":"GC_PAN","features":[38]},{"name":"GC_PAN_WITH_GUTTER","features":[38]},{"name":"GC_PAN_WITH_INERTIA","features":[38]},{"name":"GC_PAN_WITH_SINGLE_FINGER_HORIZONTALLY","features":[38]},{"name":"GC_PAN_WITH_SINGLE_FINGER_VERTICALLY","features":[38]},{"name":"GC_PRESSANDTAP","features":[38]},{"name":"GC_ROLLOVER","features":[38]},{"name":"GC_ROTATE","features":[38]},{"name":"GC_TWOFINGERTAP","features":[38]},{"name":"GC_ZOOM","features":[38]},{"name":"GDI_NONREMOTE","features":[43,38]},{"name":"GESTURECONFIG_FLAGS","features":[38]},{"name":"GUID_ACDC_POWER_SOURCE","features":[38]},{"name":"GUID_ACTIVE_POWERSCHEME","features":[38]},{"name":"GUID_ADAPTIVE_INPUT_CONTROLLER_STATE","features":[38]},{"name":"GUID_ADAPTIVE_POWER_BEHAVIOR_SUBGROUP","features":[38]},{"name":"GUID_ADVANCED_COLOR_QUALITY_BIAS","features":[38]},{"name":"GUID_ALLOW_AWAYMODE","features":[38]},{"name":"GUID_ALLOW_DISPLAY_REQUIRED","features":[38]},{"name":"GUID_ALLOW_RTC_WAKE","features":[38]},{"name":"GUID_ALLOW_STANDBY_STATES","features":[38]},{"name":"GUID_ALLOW_SYSTEM_REQUIRED","features":[38]},{"name":"GUID_APPLAUNCH_BUTTON","features":[38]},{"name":"GUID_BACKGROUND_TASK_NOTIFICATION","features":[38]},{"name":"GUID_BATTERY_COUNT","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_0","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_1","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_2","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_3","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_0","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_1","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_2","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_3","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_0","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_1","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_2","features":[38]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_3","features":[38]},{"name":"GUID_BATTERY_PERCENTAGE_REMAINING","features":[38]},{"name":"GUID_BATTERY_SUBGROUP","features":[38]},{"name":"GUID_CONNECTIVITY_IN_STANDBY","features":[38]},{"name":"GUID_CONSOLE_DISPLAY_STATE","features":[38]},{"name":"GUID_CRITICAL_POWER_TRANSITION","features":[38]},{"name":"GUID_DEEP_SLEEP_ENABLED","features":[38]},{"name":"GUID_DEEP_SLEEP_PLATFORM_STATE","features":[38]},{"name":"GUID_DEVICE_IDLE_POLICY","features":[38]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_BRIGHTNESS","features":[38]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_DIM_BRIGHTNESS","features":[38]},{"name":"GUID_DISCONNECTED_STANDBY_MODE","features":[38]},{"name":"GUID_DISK_ADAPTIVE_POWERDOWN","features":[38]},{"name":"GUID_DISK_BURST_IGNORE_THRESHOLD","features":[38]},{"name":"GUID_DISK_COALESCING_POWERDOWN_TIMEOUT","features":[38]},{"name":"GUID_DISK_IDLE_TIMEOUT","features":[38]},{"name":"GUID_DISK_MAX_POWER","features":[38]},{"name":"GUID_DISK_NVME_NOPPME","features":[38]},{"name":"GUID_DISK_POWERDOWN_TIMEOUT","features":[38]},{"name":"GUID_DISK_SUBGROUP","features":[38]},{"name":"GUID_ENABLE_SWITCH_FORCED_SHUTDOWN","features":[38]},{"name":"GUID_ENERGY_SAVER_BATTERY_THRESHOLD","features":[38]},{"name":"GUID_ENERGY_SAVER_BRIGHTNESS","features":[38]},{"name":"GUID_ENERGY_SAVER_POLICY","features":[38]},{"name":"GUID_ENERGY_SAVER_SUBGROUP","features":[38]},{"name":"GUID_EXECUTION_REQUIRED_REQUEST_TIMEOUT","features":[38]},{"name":"GUID_GLOBAL_USER_PRESENCE","features":[38]},{"name":"GUID_GPU_PREFERENCE_POLICY","features":[38]},{"name":"GUID_GRAPHICS_SUBGROUP","features":[38]},{"name":"GUID_HIBERNATE_FASTS4_POLICY","features":[38]},{"name":"GUID_HIBERNATE_TIMEOUT","features":[38]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DIM_TIMEOUT","features":[38]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DISPLAY_TIMEOUT","features":[38]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DIM_TIMEOUT","features":[38]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DISPLAY_TIMEOUT","features":[38]},{"name":"GUID_IDLE_BACKGROUND_TASK","features":[38]},{"name":"GUID_IDLE_RESILIENCY_PERIOD","features":[38]},{"name":"GUID_IDLE_RESILIENCY_SUBGROUP","features":[38]},{"name":"GUID_INTSTEER_LOAD_PER_PROC_TRIGGER","features":[38]},{"name":"GUID_INTSTEER_MODE","features":[38]},{"name":"GUID_INTSTEER_SUBGROUP","features":[38]},{"name":"GUID_INTSTEER_TIME_UNPARK_TRIGGER","features":[38]},{"name":"GUID_LEGACY_RTC_MITIGATION","features":[38]},{"name":"GUID_LIDCLOSE_ACTION","features":[38]},{"name":"GUID_LIDOPEN_POWERSTATE","features":[38]},{"name":"GUID_LIDSWITCH_STATE_CHANGE","features":[38]},{"name":"GUID_LIDSWITCH_STATE_RELIABILITY","features":[38]},{"name":"GUID_LOCK_CONSOLE_ON_WAKE","features":[38]},{"name":"GUID_MAX_POWER_SAVINGS","features":[38]},{"name":"GUID_MIN_POWER_SAVINGS","features":[38]},{"name":"GUID_MIXED_REALITY_MODE","features":[38]},{"name":"GUID_MONITOR_POWER_ON","features":[38]},{"name":"GUID_NON_ADAPTIVE_INPUT_TIMEOUT","features":[38]},{"name":"GUID_PCIEXPRESS_ASPM_POLICY","features":[38]},{"name":"GUID_PCIEXPRESS_SETTINGS_SUBGROUP","features":[38]},{"name":"GUID_POWERBUTTON_ACTION","features":[38]},{"name":"GUID_POWERSCHEME_PERSONALITY","features":[38]},{"name":"GUID_POWER_SAVING_STATUS","features":[38]},{"name":"GUID_PROCESSOR_ALLOW_THROTTLING","features":[38]},{"name":"GUID_PROCESSOR_CLASS0_FLOOR_PERF","features":[38]},{"name":"GUID_PROCESSOR_CLASS1_INITIAL_PERF","features":[38]},{"name":"GUID_PROCESSOR_COMPLEX_PARKING_POLICY","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_DECREASE_FACTOR","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_WEIGHTING","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_POLICY","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_TIME","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_POLICY","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_TIME","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES_1","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES_1","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_DECREASE_FACTOR","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_WEIGHTING","features":[38]},{"name":"GUID_PROCESSOR_DISTRIBUTE_UTILITY","features":[38]},{"name":"GUID_PROCESSOR_DUTY_CYCLING","features":[38]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT","features":[38]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT_1","features":[38]},{"name":"GUID_PROCESSOR_HETEROGENEOUS_POLICY","features":[38]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD_1","features":[38]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_TIME","features":[38]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD_1","features":[38]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_TIME","features":[38]},{"name":"GUID_PROCESSOR_IDLESTATE_POLICY","features":[38]},{"name":"GUID_PROCESSOR_IDLE_ALLOW_SCALING","features":[38]},{"name":"GUID_PROCESSOR_IDLE_DEMOTE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_IDLE_DISABLE","features":[38]},{"name":"GUID_PROCESSOR_IDLE_PROMOTE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_IDLE_STATE_MAXIMUM","features":[38]},{"name":"GUID_PROCESSOR_IDLE_TIME_CHECK","features":[38]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK","features":[38]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK_1","features":[38]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_MODULE_PARKING_POLICY","features":[38]},{"name":"GUID_PROCESSOR_PARKING_CONCURRENCY_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_PARKING_CORE_OVERRIDE","features":[38]},{"name":"GUID_PROCESSOR_PARKING_DISTRIBUTION_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_PARKING_HEADROOM_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE","features":[38]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE_1","features":[38]},{"name":"GUID_PROCESSOR_PERFSTATE_POLICY","features":[38]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_ACTIVITY_WINDOW","features":[38]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_MODE","features":[38]},{"name":"GUID_PROCESSOR_PERF_BOOST_MODE","features":[38]},{"name":"GUID_PROCESSOR_PERF_BOOST_POLICY","features":[38]},{"name":"GUID_PROCESSOR_PERF_CORE_PARKING_HISTORY","features":[38]},{"name":"GUID_PROCESSOR_PERF_DECREASE_HISTORY","features":[38]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY","features":[38]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME","features":[38]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE","features":[38]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_HISTORY","features":[38]},{"name":"GUID_PROCESSOR_PERF_HISTORY_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_INCREASE_HISTORY","features":[38]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY","features":[38]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME","features":[38]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT","features":[38]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF","features":[38]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF_1","features":[38]},{"name":"GUID_PROCESSOR_PERF_TIME_CHECK","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD_1","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME_1","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD_1","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME_1","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING_1","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR","features":[38]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR_1","features":[38]},{"name":"GUID_PROCESSOR_SETTINGS_SUBGROUP","features":[38]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_SHORT_THREAD_RUNTIME_THRESHOLD","features":[38]},{"name":"GUID_PROCESSOR_SHORT_THREAD_SCHEDULING_POLICY","features":[38]},{"name":"GUID_PROCESSOR_SMT_UNPARKING_POLICY","features":[38]},{"name":"GUID_PROCESSOR_SOFT_PARKING_LATENCY","features":[38]},{"name":"GUID_PROCESSOR_THREAD_SCHEDULING_POLICY","features":[38]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM","features":[38]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM_1","features":[38]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM","features":[38]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM_1","features":[38]},{"name":"GUID_PROCESSOR_THROTTLE_POLICY","features":[38]},{"name":"GUID_SESSION_DISPLAY_STATUS","features":[38]},{"name":"GUID_SESSION_USER_PRESENCE","features":[38]},{"name":"GUID_SLEEPBUTTON_ACTION","features":[38]},{"name":"GUID_SLEEP_IDLE_THRESHOLD","features":[38]},{"name":"GUID_SLEEP_SUBGROUP","features":[38]},{"name":"GUID_SPR_ACTIVE_SESSION_CHANGE","features":[38]},{"name":"GUID_STANDBY_BUDGET_GRACE_PERIOD","features":[38]},{"name":"GUID_STANDBY_BUDGET_PERCENT","features":[38]},{"name":"GUID_STANDBY_RESERVE_GRACE_PERIOD","features":[38]},{"name":"GUID_STANDBY_RESERVE_TIME","features":[38]},{"name":"GUID_STANDBY_RESET_PERCENT","features":[38]},{"name":"GUID_STANDBY_TIMEOUT","features":[38]},{"name":"GUID_SYSTEM_AWAYMODE","features":[38]},{"name":"GUID_SYSTEM_BUTTON_SUBGROUP","features":[38]},{"name":"GUID_SYSTEM_COOLING_POLICY","features":[38]},{"name":"GUID_TYPICAL_POWER_SAVINGS","features":[38]},{"name":"GUID_UNATTEND_SLEEP_TIMEOUT","features":[38]},{"name":"GUID_USERINTERFACEBUTTON_ACTION","features":[38]},{"name":"GUID_USER_PRESENCE_PREDICTION","features":[38]},{"name":"GUID_VIDEO_ADAPTIVE_DISPLAY_BRIGHTNESS","features":[38]},{"name":"GUID_VIDEO_ADAPTIVE_PERCENT_INCREASE","features":[38]},{"name":"GUID_VIDEO_ADAPTIVE_POWERDOWN","features":[38]},{"name":"GUID_VIDEO_ANNOYANCE_TIMEOUT","features":[38]},{"name":"GUID_VIDEO_CONSOLE_LOCK_TIMEOUT","features":[38]},{"name":"GUID_VIDEO_CURRENT_MONITOR_BRIGHTNESS","features":[38]},{"name":"GUID_VIDEO_DIM_TIMEOUT","features":[38]},{"name":"GUID_VIDEO_POWERDOWN_TIMEOUT","features":[38]},{"name":"GUID_VIDEO_SUBGROUP","features":[38]},{"name":"HEAP_OPTIMIZE_RESOURCES_CURRENT_VERSION","features":[38]},{"name":"HEAP_OPTIMIZE_RESOURCES_INFORMATION","features":[38]},{"name":"HIBERFILE_BUCKET","features":[38]},{"name":"HIBERFILE_BUCKET_SIZE","features":[38]},{"name":"HIBERFILE_TYPE_FULL","features":[38]},{"name":"HIBERFILE_TYPE_MAX","features":[38]},{"name":"HIBERFILE_TYPE_NONE","features":[38]},{"name":"HIBERFILE_TYPE_REDUCED","features":[38]},{"name":"HiberFileBucket16GB","features":[38]},{"name":"HiberFileBucket1GB","features":[38]},{"name":"HiberFileBucket2GB","features":[38]},{"name":"HiberFileBucket32GB","features":[38]},{"name":"HiberFileBucket4GB","features":[38]},{"name":"HiberFileBucket8GB","features":[38]},{"name":"HiberFileBucketMax","features":[38]},{"name":"HiberFileBucketUnlimited","features":[38]},{"name":"IGP_CONVERSION","features":[38]},{"name":"IGP_GETIMEVERSION","features":[38]},{"name":"IGP_ID","features":[38]},{"name":"IGP_PROPERTY","features":[38]},{"name":"IGP_SELECT","features":[38]},{"name":"IGP_SENTENCE","features":[38]},{"name":"IGP_SETCOMPSTR","features":[38]},{"name":"IGP_UI","features":[38]},{"name":"IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY","features":[38]},{"name":"IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY","features":[38]},{"name":"IMAGE_ARCHITECTURE_ENTRY","features":[38]},{"name":"IMAGE_ARCHITECTURE_HEADER","features":[38]},{"name":"IMAGE_ARCHIVE_END","features":[38]},{"name":"IMAGE_ARCHIVE_HYBRIDMAP_MEMBER","features":[38]},{"name":"IMAGE_ARCHIVE_LINKER_MEMBER","features":[38]},{"name":"IMAGE_ARCHIVE_LONGNAMES_MEMBER","features":[38]},{"name":"IMAGE_ARCHIVE_MEMBER_HEADER","features":[38]},{"name":"IMAGE_ARCHIVE_PAD","features":[38]},{"name":"IMAGE_ARCHIVE_START","features":[38]},{"name":"IMAGE_ARCHIVE_START_SIZE","features":[38]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY_XDATA","features":[38]},{"name":"IMAGE_ARM_RUNTIME_FUNCTION_ENTRY","features":[38]},{"name":"IMAGE_AUX_SYMBOL","features":[38]},{"name":"IMAGE_AUX_SYMBOL_EX","features":[38]},{"name":"IMAGE_AUX_SYMBOL_TOKEN_DEF","features":[38]},{"name":"IMAGE_AUX_SYMBOL_TYPE","features":[38]},{"name":"IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF","features":[38]},{"name":"IMAGE_BASE_RELOCATION","features":[38]},{"name":"IMAGE_BDD_DYNAMIC_RELOCATION","features":[38]},{"name":"IMAGE_BDD_INFO","features":[38]},{"name":"IMAGE_BOUND_FORWARDER_REF","features":[38]},{"name":"IMAGE_BOUND_IMPORT_DESCRIPTOR","features":[38]},{"name":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","features":[38]},{"name":"IMAGE_COMDAT_SELECT_ANY","features":[38]},{"name":"IMAGE_COMDAT_SELECT_ASSOCIATIVE","features":[38]},{"name":"IMAGE_COMDAT_SELECT_EXACT_MATCH","features":[38]},{"name":"IMAGE_COMDAT_SELECT_LARGEST","features":[38]},{"name":"IMAGE_COMDAT_SELECT_NEWEST","features":[38]},{"name":"IMAGE_COMDAT_SELECT_NODUPLICATES","features":[38]},{"name":"IMAGE_COMDAT_SELECT_SAME_SIZE","features":[38]},{"name":"IMAGE_COR_EATJ_THUNK_SIZE","features":[38]},{"name":"IMAGE_COR_MIH_BASICBLOCK","features":[38]},{"name":"IMAGE_COR_MIH_EHRVA","features":[38]},{"name":"IMAGE_COR_MIH_METHODRVA","features":[38]},{"name":"IMAGE_DEBUG_MISC","features":[3,38]},{"name":"IMAGE_DEBUG_MISC_EXENAME","features":[38]},{"name":"IMAGE_DEBUG_TYPE_BBT","features":[38]},{"name":"IMAGE_DEBUG_TYPE_CLSID","features":[38]},{"name":"IMAGE_DEBUG_TYPE_EX_DLLCHARACTERISTICS","features":[38]},{"name":"IMAGE_DEBUG_TYPE_ILTCG","features":[38]},{"name":"IMAGE_DEBUG_TYPE_MPX","features":[38]},{"name":"IMAGE_DEBUG_TYPE_OMAP_FROM_SRC","features":[38]},{"name":"IMAGE_DEBUG_TYPE_OMAP_TO_SRC","features":[38]},{"name":"IMAGE_DEBUG_TYPE_POGO","features":[38]},{"name":"IMAGE_DEBUG_TYPE_REPRO","features":[38]},{"name":"IMAGE_DEBUG_TYPE_RESERVED10","features":[38]},{"name":"IMAGE_DEBUG_TYPE_SPGO","features":[38]},{"name":"IMAGE_DEBUG_TYPE_VC_FEATURE","features":[38]},{"name":"IMAGE_DOS_HEADER","features":[38]},{"name":"IMAGE_DOS_SIGNATURE","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION32","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION32_V2","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION64","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION64_V2","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION_FUNCTION_OVERRIDE","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH","features":[38]},{"name":"IMAGE_DYNAMIC_RELOCATION_TABLE","features":[38]},{"name":"IMAGE_ENCLAVE_FLAG_PRIMARY_IMAGE","features":[38]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_AUTHOR_ID","features":[38]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_FAMILY_ID","features":[38]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_IMAGE_ID","features":[38]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_NONE","features":[38]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_UNIQUE_ID","features":[38]},{"name":"IMAGE_ENCLAVE_LONG_ID_LENGTH","features":[38]},{"name":"IMAGE_ENCLAVE_POLICY_DEBUGGABLE","features":[38]},{"name":"IMAGE_ENCLAVE_SHORT_ID_LENGTH","features":[38]},{"name":"IMAGE_EPILOGUE_DYNAMIC_RELOCATION_HEADER","features":[38]},{"name":"IMAGE_EXPORT_DIRECTORY","features":[38]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_BRANCH26","features":[38]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_THUNK","features":[38]},{"name":"IMAGE_FUNCTION_OVERRIDE_DYNAMIC_RELOCATION","features":[38]},{"name":"IMAGE_FUNCTION_OVERRIDE_HEADER","features":[38]},{"name":"IMAGE_FUNCTION_OVERRIDE_INVALID","features":[38]},{"name":"IMAGE_FUNCTION_OVERRIDE_X64_REL32","features":[38]},{"name":"IMAGE_GUARD_CASTGUARD_PRESENT","features":[38]},{"name":"IMAGE_GUARD_CFW_INSTRUMENTED","features":[38]},{"name":"IMAGE_GUARD_CF_ENABLE_EXPORT_SUPPRESSION","features":[38]},{"name":"IMAGE_GUARD_CF_EXPORT_SUPPRESSION_INFO_PRESENT","features":[38]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_PRESENT","features":[38]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_MASK","features":[38]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_SHIFT","features":[38]},{"name":"IMAGE_GUARD_CF_INSTRUMENTED","features":[38]},{"name":"IMAGE_GUARD_CF_LONGJUMP_TABLE_PRESENT","features":[38]},{"name":"IMAGE_GUARD_DELAYLOAD_IAT_IN_ITS_OWN_SECTION","features":[38]},{"name":"IMAGE_GUARD_EH_CONTINUATION_TABLE_PRESENT","features":[38]},{"name":"IMAGE_GUARD_FLAG_EXPORT_SUPPRESSED","features":[38]},{"name":"IMAGE_GUARD_FLAG_FID_LANGEXCPTHANDLER","features":[38]},{"name":"IMAGE_GUARD_FLAG_FID_SUPPRESSED","features":[38]},{"name":"IMAGE_GUARD_FLAG_FID_XFG","features":[38]},{"name":"IMAGE_GUARD_MEMCPY_PRESENT","features":[38]},{"name":"IMAGE_GUARD_PROTECT_DELAYLOAD_IAT","features":[38]},{"name":"IMAGE_GUARD_RETPOLINE_PRESENT","features":[38]},{"name":"IMAGE_GUARD_RF_ENABLE","features":[38]},{"name":"IMAGE_GUARD_RF_INSTRUMENTED","features":[38]},{"name":"IMAGE_GUARD_RF_STRICT","features":[38]},{"name":"IMAGE_GUARD_SECURITY_COOKIE_UNUSED","features":[38]},{"name":"IMAGE_GUARD_XFG_ENABLED","features":[38]},{"name":"IMAGE_HOT_PATCH_ABSOLUTE","features":[38]},{"name":"IMAGE_HOT_PATCH_BASE","features":[38]},{"name":"IMAGE_HOT_PATCH_BASE_CAN_ROLL_BACK","features":[38]},{"name":"IMAGE_HOT_PATCH_BASE_OBLIGATORY","features":[38]},{"name":"IMAGE_HOT_PATCH_CALL_TARGET","features":[38]},{"name":"IMAGE_HOT_PATCH_CHUNK_INVERSE","features":[38]},{"name":"IMAGE_HOT_PATCH_CHUNK_OBLIGATORY","features":[38]},{"name":"IMAGE_HOT_PATCH_CHUNK_RESERVED","features":[38]},{"name":"IMAGE_HOT_PATCH_CHUNK_SIZE","features":[38]},{"name":"IMAGE_HOT_PATCH_CHUNK_SOURCE_RVA","features":[38]},{"name":"IMAGE_HOT_PATCH_CHUNK_TARGET_RVA","features":[38]},{"name":"IMAGE_HOT_PATCH_CHUNK_TYPE","features":[38]},{"name":"IMAGE_HOT_PATCH_DYNAMIC_VALUE","features":[38]},{"name":"IMAGE_HOT_PATCH_FUNCTION","features":[38]},{"name":"IMAGE_HOT_PATCH_HASHES","features":[38]},{"name":"IMAGE_HOT_PATCH_INDIRECT","features":[38]},{"name":"IMAGE_HOT_PATCH_INFO","features":[38]},{"name":"IMAGE_HOT_PATCH_NONE","features":[38]},{"name":"IMAGE_HOT_PATCH_NO_CALL_TARGET","features":[38]},{"name":"IMAGE_HOT_PATCH_REL32","features":[38]},{"name":"IMAGE_IMPORT_BY_NAME","features":[38]},{"name":"IMAGE_IMPORT_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[38]},{"name":"IMAGE_IMPORT_DESCRIPTOR","features":[38]},{"name":"IMAGE_INDIR_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[38]},{"name":"IMAGE_LINENUMBER","features":[38]},{"name":"IMAGE_NT_SIGNATURE","features":[38]},{"name":"IMAGE_NUMBEROF_DIRECTORY_ENTRIES","features":[38]},{"name":"IMAGE_ORDINAL_FLAG32","features":[38]},{"name":"IMAGE_ORDINAL_FLAG64","features":[38]},{"name":"IMAGE_OS2_HEADER","features":[38]},{"name":"IMAGE_OS2_SIGNATURE","features":[38]},{"name":"IMAGE_OS2_SIGNATURE_LE","features":[38]},{"name":"IMAGE_POLICY_ENTRY","features":[3,38]},{"name":"IMAGE_POLICY_ENTRY_TYPE","features":[38]},{"name":"IMAGE_POLICY_ID","features":[38]},{"name":"IMAGE_POLICY_METADATA","features":[3,38]},{"name":"IMAGE_POLICY_METADATA_VERSION","features":[38]},{"name":"IMAGE_POLICY_SECTION_NAME","features":[38]},{"name":"IMAGE_PROLOGUE_DYNAMIC_RELOCATION_HEADER","features":[38]},{"name":"IMAGE_RELOCATION","features":[38]},{"name":"IMAGE_REL_ALPHA_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_ALPHA_BRADDR","features":[38]},{"name":"IMAGE_REL_ALPHA_GPDISP","features":[38]},{"name":"IMAGE_REL_ALPHA_GPREL32","features":[38]},{"name":"IMAGE_REL_ALPHA_GPRELHI","features":[38]},{"name":"IMAGE_REL_ALPHA_GPRELLO","features":[38]},{"name":"IMAGE_REL_ALPHA_HINT","features":[38]},{"name":"IMAGE_REL_ALPHA_INLINE_REFLONG","features":[38]},{"name":"IMAGE_REL_ALPHA_LITERAL","features":[38]},{"name":"IMAGE_REL_ALPHA_LITUSE","features":[38]},{"name":"IMAGE_REL_ALPHA_MATCH","features":[38]},{"name":"IMAGE_REL_ALPHA_PAIR","features":[38]},{"name":"IMAGE_REL_ALPHA_REFHI","features":[38]},{"name":"IMAGE_REL_ALPHA_REFLO","features":[38]},{"name":"IMAGE_REL_ALPHA_REFLONG","features":[38]},{"name":"IMAGE_REL_ALPHA_REFLONGNB","features":[38]},{"name":"IMAGE_REL_ALPHA_REFQ1","features":[38]},{"name":"IMAGE_REL_ALPHA_REFQ2","features":[38]},{"name":"IMAGE_REL_ALPHA_REFQ3","features":[38]},{"name":"IMAGE_REL_ALPHA_REFQUAD","features":[38]},{"name":"IMAGE_REL_ALPHA_SECREL","features":[38]},{"name":"IMAGE_REL_ALPHA_SECRELHI","features":[38]},{"name":"IMAGE_REL_ALPHA_SECRELLO","features":[38]},{"name":"IMAGE_REL_ALPHA_SECTION","features":[38]},{"name":"IMAGE_REL_AMD64_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_AMD64_ADDR32","features":[38]},{"name":"IMAGE_REL_AMD64_ADDR32NB","features":[38]},{"name":"IMAGE_REL_AMD64_ADDR64","features":[38]},{"name":"IMAGE_REL_AMD64_CFG_BR","features":[38]},{"name":"IMAGE_REL_AMD64_CFG_BR_REX","features":[38]},{"name":"IMAGE_REL_AMD64_CFG_CALL","features":[38]},{"name":"IMAGE_REL_AMD64_EHANDLER","features":[38]},{"name":"IMAGE_REL_AMD64_IMPORT_BR","features":[38]},{"name":"IMAGE_REL_AMD64_IMPORT_CALL","features":[38]},{"name":"IMAGE_REL_AMD64_INDIR_BR","features":[38]},{"name":"IMAGE_REL_AMD64_INDIR_BR_REX","features":[38]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_FIRST","features":[38]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_LAST","features":[38]},{"name":"IMAGE_REL_AMD64_INDIR_CALL","features":[38]},{"name":"IMAGE_REL_AMD64_PAIR","features":[38]},{"name":"IMAGE_REL_AMD64_REL32","features":[38]},{"name":"IMAGE_REL_AMD64_REL32_1","features":[38]},{"name":"IMAGE_REL_AMD64_REL32_2","features":[38]},{"name":"IMAGE_REL_AMD64_REL32_3","features":[38]},{"name":"IMAGE_REL_AMD64_REL32_4","features":[38]},{"name":"IMAGE_REL_AMD64_REL32_5","features":[38]},{"name":"IMAGE_REL_AMD64_SECREL","features":[38]},{"name":"IMAGE_REL_AMD64_SECREL7","features":[38]},{"name":"IMAGE_REL_AMD64_SECTION","features":[38]},{"name":"IMAGE_REL_AMD64_SREL32","features":[38]},{"name":"IMAGE_REL_AMD64_SSPAN32","features":[38]},{"name":"IMAGE_REL_AMD64_TOKEN","features":[38]},{"name":"IMAGE_REL_AM_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_AM_ADDR32","features":[38]},{"name":"IMAGE_REL_AM_ADDR32NB","features":[38]},{"name":"IMAGE_REL_AM_CALL32","features":[38]},{"name":"IMAGE_REL_AM_FUNCINFO","features":[38]},{"name":"IMAGE_REL_AM_REL32_1","features":[38]},{"name":"IMAGE_REL_AM_REL32_2","features":[38]},{"name":"IMAGE_REL_AM_SECREL","features":[38]},{"name":"IMAGE_REL_AM_SECTION","features":[38]},{"name":"IMAGE_REL_AM_TOKEN","features":[38]},{"name":"IMAGE_REL_ARM64_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_ARM64_ADDR32","features":[38]},{"name":"IMAGE_REL_ARM64_ADDR32NB","features":[38]},{"name":"IMAGE_REL_ARM64_ADDR64","features":[38]},{"name":"IMAGE_REL_ARM64_BRANCH19","features":[38]},{"name":"IMAGE_REL_ARM64_BRANCH26","features":[38]},{"name":"IMAGE_REL_ARM64_PAGEBASE_REL21","features":[38]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12A","features":[38]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12L","features":[38]},{"name":"IMAGE_REL_ARM64_REL21","features":[38]},{"name":"IMAGE_REL_ARM64_SECREL","features":[38]},{"name":"IMAGE_REL_ARM64_SECREL_HIGH12A","features":[38]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12A","features":[38]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12L","features":[38]},{"name":"IMAGE_REL_ARM64_SECTION","features":[38]},{"name":"IMAGE_REL_ARM64_TOKEN","features":[38]},{"name":"IMAGE_REL_ARM_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_ARM_ADDR32","features":[38]},{"name":"IMAGE_REL_ARM_ADDR32NB","features":[38]},{"name":"IMAGE_REL_ARM_BLX11","features":[38]},{"name":"IMAGE_REL_ARM_BLX23T","features":[38]},{"name":"IMAGE_REL_ARM_BLX24","features":[38]},{"name":"IMAGE_REL_ARM_BRANCH11","features":[38]},{"name":"IMAGE_REL_ARM_BRANCH20T","features":[38]},{"name":"IMAGE_REL_ARM_BRANCH24","features":[38]},{"name":"IMAGE_REL_ARM_BRANCH24T","features":[38]},{"name":"IMAGE_REL_ARM_GPREL12","features":[38]},{"name":"IMAGE_REL_ARM_GPREL7","features":[38]},{"name":"IMAGE_REL_ARM_MOV32","features":[38]},{"name":"IMAGE_REL_ARM_MOV32A","features":[38]},{"name":"IMAGE_REL_ARM_MOV32T","features":[38]},{"name":"IMAGE_REL_ARM_SECREL","features":[38]},{"name":"IMAGE_REL_ARM_SECTION","features":[38]},{"name":"IMAGE_REL_ARM_TOKEN","features":[38]},{"name":"IMAGE_REL_BASED_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_BASED_ARM_MOV32","features":[38]},{"name":"IMAGE_REL_BASED_DIR64","features":[38]},{"name":"IMAGE_REL_BASED_HIGH","features":[38]},{"name":"IMAGE_REL_BASED_HIGHADJ","features":[38]},{"name":"IMAGE_REL_BASED_HIGHLOW","features":[38]},{"name":"IMAGE_REL_BASED_IA64_IMM64","features":[38]},{"name":"IMAGE_REL_BASED_LOW","features":[38]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_5","features":[38]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_7","features":[38]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_8","features":[38]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_9","features":[38]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR","features":[38]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR16","features":[38]},{"name":"IMAGE_REL_BASED_RESERVED","features":[38]},{"name":"IMAGE_REL_BASED_THUMB_MOV32","features":[38]},{"name":"IMAGE_REL_CEE_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_CEE_ADDR32","features":[38]},{"name":"IMAGE_REL_CEE_ADDR32NB","features":[38]},{"name":"IMAGE_REL_CEE_ADDR64","features":[38]},{"name":"IMAGE_REL_CEE_SECREL","features":[38]},{"name":"IMAGE_REL_CEE_SECTION","features":[38]},{"name":"IMAGE_REL_CEE_TOKEN","features":[38]},{"name":"IMAGE_REL_CEF_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_CEF_ADDR32","features":[38]},{"name":"IMAGE_REL_CEF_ADDR32NB","features":[38]},{"name":"IMAGE_REL_CEF_ADDR64","features":[38]},{"name":"IMAGE_REL_CEF_SECREL","features":[38]},{"name":"IMAGE_REL_CEF_SECTION","features":[38]},{"name":"IMAGE_REL_CEF_TOKEN","features":[38]},{"name":"IMAGE_REL_EBC_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_EBC_ADDR32NB","features":[38]},{"name":"IMAGE_REL_EBC_REL32","features":[38]},{"name":"IMAGE_REL_EBC_SECREL","features":[38]},{"name":"IMAGE_REL_EBC_SECTION","features":[38]},{"name":"IMAGE_REL_I386_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_I386_DIR16","features":[38]},{"name":"IMAGE_REL_I386_DIR32","features":[38]},{"name":"IMAGE_REL_I386_DIR32NB","features":[38]},{"name":"IMAGE_REL_I386_REL16","features":[38]},{"name":"IMAGE_REL_I386_REL32","features":[38]},{"name":"IMAGE_REL_I386_SECREL","features":[38]},{"name":"IMAGE_REL_I386_SECREL7","features":[38]},{"name":"IMAGE_REL_I386_SECTION","features":[38]},{"name":"IMAGE_REL_I386_SEG12","features":[38]},{"name":"IMAGE_REL_I386_TOKEN","features":[38]},{"name":"IMAGE_REL_IA64_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_IA64_ADDEND","features":[38]},{"name":"IMAGE_REL_IA64_DIR32","features":[38]},{"name":"IMAGE_REL_IA64_DIR32NB","features":[38]},{"name":"IMAGE_REL_IA64_DIR64","features":[38]},{"name":"IMAGE_REL_IA64_GPREL22","features":[38]},{"name":"IMAGE_REL_IA64_GPREL32","features":[38]},{"name":"IMAGE_REL_IA64_IMM14","features":[38]},{"name":"IMAGE_REL_IA64_IMM22","features":[38]},{"name":"IMAGE_REL_IA64_IMM64","features":[38]},{"name":"IMAGE_REL_IA64_IMMGPREL64","features":[38]},{"name":"IMAGE_REL_IA64_LTOFF22","features":[38]},{"name":"IMAGE_REL_IA64_PCREL21B","features":[38]},{"name":"IMAGE_REL_IA64_PCREL21F","features":[38]},{"name":"IMAGE_REL_IA64_PCREL21M","features":[38]},{"name":"IMAGE_REL_IA64_PCREL60B","features":[38]},{"name":"IMAGE_REL_IA64_PCREL60F","features":[38]},{"name":"IMAGE_REL_IA64_PCREL60I","features":[38]},{"name":"IMAGE_REL_IA64_PCREL60M","features":[38]},{"name":"IMAGE_REL_IA64_PCREL60X","features":[38]},{"name":"IMAGE_REL_IA64_SECREL22","features":[38]},{"name":"IMAGE_REL_IA64_SECREL32","features":[38]},{"name":"IMAGE_REL_IA64_SECREL64I","features":[38]},{"name":"IMAGE_REL_IA64_SECTION","features":[38]},{"name":"IMAGE_REL_IA64_SREL14","features":[38]},{"name":"IMAGE_REL_IA64_SREL22","features":[38]},{"name":"IMAGE_REL_IA64_SREL32","features":[38]},{"name":"IMAGE_REL_IA64_TOKEN","features":[38]},{"name":"IMAGE_REL_IA64_UREL32","features":[38]},{"name":"IMAGE_REL_M32R_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_M32R_ADDR24","features":[38]},{"name":"IMAGE_REL_M32R_ADDR32","features":[38]},{"name":"IMAGE_REL_M32R_ADDR32NB","features":[38]},{"name":"IMAGE_REL_M32R_GPREL16","features":[38]},{"name":"IMAGE_REL_M32R_PAIR","features":[38]},{"name":"IMAGE_REL_M32R_PCREL16","features":[38]},{"name":"IMAGE_REL_M32R_PCREL24","features":[38]},{"name":"IMAGE_REL_M32R_PCREL8","features":[38]},{"name":"IMAGE_REL_M32R_REFHALF","features":[38]},{"name":"IMAGE_REL_M32R_REFHI","features":[38]},{"name":"IMAGE_REL_M32R_REFLO","features":[38]},{"name":"IMAGE_REL_M32R_SECREL32","features":[38]},{"name":"IMAGE_REL_M32R_SECTION","features":[38]},{"name":"IMAGE_REL_M32R_TOKEN","features":[38]},{"name":"IMAGE_REL_MIPS_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_MIPS_GPREL","features":[38]},{"name":"IMAGE_REL_MIPS_JMPADDR","features":[38]},{"name":"IMAGE_REL_MIPS_JMPADDR16","features":[38]},{"name":"IMAGE_REL_MIPS_LITERAL","features":[38]},{"name":"IMAGE_REL_MIPS_PAIR","features":[38]},{"name":"IMAGE_REL_MIPS_REFHALF","features":[38]},{"name":"IMAGE_REL_MIPS_REFHI","features":[38]},{"name":"IMAGE_REL_MIPS_REFLO","features":[38]},{"name":"IMAGE_REL_MIPS_REFWORD","features":[38]},{"name":"IMAGE_REL_MIPS_REFWORDNB","features":[38]},{"name":"IMAGE_REL_MIPS_SECREL","features":[38]},{"name":"IMAGE_REL_MIPS_SECRELHI","features":[38]},{"name":"IMAGE_REL_MIPS_SECRELLO","features":[38]},{"name":"IMAGE_REL_MIPS_SECTION","features":[38]},{"name":"IMAGE_REL_MIPS_TOKEN","features":[38]},{"name":"IMAGE_REL_PPC_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_PPC_ADDR14","features":[38]},{"name":"IMAGE_REL_PPC_ADDR16","features":[38]},{"name":"IMAGE_REL_PPC_ADDR24","features":[38]},{"name":"IMAGE_REL_PPC_ADDR32","features":[38]},{"name":"IMAGE_REL_PPC_ADDR32NB","features":[38]},{"name":"IMAGE_REL_PPC_ADDR64","features":[38]},{"name":"IMAGE_REL_PPC_BRNTAKEN","features":[38]},{"name":"IMAGE_REL_PPC_BRTAKEN","features":[38]},{"name":"IMAGE_REL_PPC_GPREL","features":[38]},{"name":"IMAGE_REL_PPC_IFGLUE","features":[38]},{"name":"IMAGE_REL_PPC_IMGLUE","features":[38]},{"name":"IMAGE_REL_PPC_NEG","features":[38]},{"name":"IMAGE_REL_PPC_PAIR","features":[38]},{"name":"IMAGE_REL_PPC_REFHI","features":[38]},{"name":"IMAGE_REL_PPC_REFLO","features":[38]},{"name":"IMAGE_REL_PPC_REL14","features":[38]},{"name":"IMAGE_REL_PPC_REL24","features":[38]},{"name":"IMAGE_REL_PPC_SECREL","features":[38]},{"name":"IMAGE_REL_PPC_SECREL16","features":[38]},{"name":"IMAGE_REL_PPC_SECRELHI","features":[38]},{"name":"IMAGE_REL_PPC_SECRELLO","features":[38]},{"name":"IMAGE_REL_PPC_SECTION","features":[38]},{"name":"IMAGE_REL_PPC_TOCDEFN","features":[38]},{"name":"IMAGE_REL_PPC_TOCREL14","features":[38]},{"name":"IMAGE_REL_PPC_TOCREL16","features":[38]},{"name":"IMAGE_REL_PPC_TOKEN","features":[38]},{"name":"IMAGE_REL_PPC_TYPEMASK","features":[38]},{"name":"IMAGE_REL_SH3_ABSOLUTE","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT16","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT32","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT32_NB","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT4","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT4_LONG","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT4_WORD","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT8","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT8_LONG","features":[38]},{"name":"IMAGE_REL_SH3_DIRECT8_WORD","features":[38]},{"name":"IMAGE_REL_SH3_GPREL4_LONG","features":[38]},{"name":"IMAGE_REL_SH3_PCREL12_WORD","features":[38]},{"name":"IMAGE_REL_SH3_PCREL8_LONG","features":[38]},{"name":"IMAGE_REL_SH3_PCREL8_WORD","features":[38]},{"name":"IMAGE_REL_SH3_SECREL","features":[38]},{"name":"IMAGE_REL_SH3_SECTION","features":[38]},{"name":"IMAGE_REL_SH3_SIZEOF_SECTION","features":[38]},{"name":"IMAGE_REL_SH3_STARTOF_SECTION","features":[38]},{"name":"IMAGE_REL_SH3_TOKEN","features":[38]},{"name":"IMAGE_REL_SHM_PAIR","features":[38]},{"name":"IMAGE_REL_SHM_PCRELPT","features":[38]},{"name":"IMAGE_REL_SHM_REFHALF","features":[38]},{"name":"IMAGE_REL_SHM_REFLO","features":[38]},{"name":"IMAGE_REL_SHM_RELHALF","features":[38]},{"name":"IMAGE_REL_SHM_RELLO","features":[38]},{"name":"IMAGE_REL_SH_NOMODE","features":[38]},{"name":"IMAGE_REL_THUMB_BLX23","features":[38]},{"name":"IMAGE_REL_THUMB_BRANCH20","features":[38]},{"name":"IMAGE_REL_THUMB_BRANCH24","features":[38]},{"name":"IMAGE_REL_THUMB_MOV32","features":[38]},{"name":"IMAGE_RESOURCE_DATA_ENTRY","features":[38]},{"name":"IMAGE_RESOURCE_DATA_IS_DIRECTORY","features":[38]},{"name":"IMAGE_RESOURCE_DIRECTORY","features":[38]},{"name":"IMAGE_RESOURCE_DIRECTORY_ENTRY","features":[38]},{"name":"IMAGE_RESOURCE_DIRECTORY_STRING","features":[38]},{"name":"IMAGE_RESOURCE_DIR_STRING_U","features":[38]},{"name":"IMAGE_RESOURCE_NAME_IS_STRING","features":[38]},{"name":"IMAGE_SEPARATE_DEBUG_FLAGS_MASK","features":[38]},{"name":"IMAGE_SEPARATE_DEBUG_HEADER","features":[38]},{"name":"IMAGE_SEPARATE_DEBUG_MISMATCH","features":[38]},{"name":"IMAGE_SEPARATE_DEBUG_SIGNATURE","features":[38]},{"name":"IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR","features":[38]},{"name":"IMAGE_SIZEOF_FILE_HEADER","features":[38]},{"name":"IMAGE_SIZEOF_SECTION_HEADER","features":[38]},{"name":"IMAGE_SIZEOF_SHORT_NAME","features":[38]},{"name":"IMAGE_SIZEOF_SYMBOL","features":[38]},{"name":"IMAGE_SWITCHTABLE_BRANCH_DYNAMIC_RELOCATION","features":[38]},{"name":"IMAGE_SYMBOL","features":[38]},{"name":"IMAGE_SYMBOL_EX","features":[38]},{"name":"IMAGE_SYM_CLASS_ARGUMENT","features":[38]},{"name":"IMAGE_SYM_CLASS_AUTOMATIC","features":[38]},{"name":"IMAGE_SYM_CLASS_BIT_FIELD","features":[38]},{"name":"IMAGE_SYM_CLASS_BLOCK","features":[38]},{"name":"IMAGE_SYM_CLASS_CLR_TOKEN","features":[38]},{"name":"IMAGE_SYM_CLASS_END_OF_STRUCT","features":[38]},{"name":"IMAGE_SYM_CLASS_ENUM_TAG","features":[38]},{"name":"IMAGE_SYM_CLASS_EXTERNAL","features":[38]},{"name":"IMAGE_SYM_CLASS_EXTERNAL_DEF","features":[38]},{"name":"IMAGE_SYM_CLASS_FAR_EXTERNAL","features":[38]},{"name":"IMAGE_SYM_CLASS_FILE","features":[38]},{"name":"IMAGE_SYM_CLASS_FUNCTION","features":[38]},{"name":"IMAGE_SYM_CLASS_LABEL","features":[38]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_ENUM","features":[38]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_STRUCT","features":[38]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_UNION","features":[38]},{"name":"IMAGE_SYM_CLASS_NULL","features":[38]},{"name":"IMAGE_SYM_CLASS_REGISTER","features":[38]},{"name":"IMAGE_SYM_CLASS_REGISTER_PARAM","features":[38]},{"name":"IMAGE_SYM_CLASS_SECTION","features":[38]},{"name":"IMAGE_SYM_CLASS_STATIC","features":[38]},{"name":"IMAGE_SYM_CLASS_STRUCT_TAG","features":[38]},{"name":"IMAGE_SYM_CLASS_TYPE_DEFINITION","features":[38]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_LABEL","features":[38]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_STATIC","features":[38]},{"name":"IMAGE_SYM_CLASS_UNION_TAG","features":[38]},{"name":"IMAGE_SYM_CLASS_WEAK_EXTERNAL","features":[38]},{"name":"IMAGE_SYM_DTYPE_ARRAY","features":[38]},{"name":"IMAGE_SYM_DTYPE_FUNCTION","features":[38]},{"name":"IMAGE_SYM_DTYPE_NULL","features":[38]},{"name":"IMAGE_SYM_DTYPE_POINTER","features":[38]},{"name":"IMAGE_SYM_SECTION_MAX","features":[38]},{"name":"IMAGE_SYM_SECTION_MAX_EX","features":[38]},{"name":"IMAGE_SYM_TYPE_BYTE","features":[38]},{"name":"IMAGE_SYM_TYPE_CHAR","features":[38]},{"name":"IMAGE_SYM_TYPE_DOUBLE","features":[38]},{"name":"IMAGE_SYM_TYPE_DWORD","features":[38]},{"name":"IMAGE_SYM_TYPE_ENUM","features":[38]},{"name":"IMAGE_SYM_TYPE_FLOAT","features":[38]},{"name":"IMAGE_SYM_TYPE_INT","features":[38]},{"name":"IMAGE_SYM_TYPE_LONG","features":[38]},{"name":"IMAGE_SYM_TYPE_MOE","features":[38]},{"name":"IMAGE_SYM_TYPE_NULL","features":[38]},{"name":"IMAGE_SYM_TYPE_PCODE","features":[38]},{"name":"IMAGE_SYM_TYPE_SHORT","features":[38]},{"name":"IMAGE_SYM_TYPE_STRUCT","features":[38]},{"name":"IMAGE_SYM_TYPE_UINT","features":[38]},{"name":"IMAGE_SYM_TYPE_UNION","features":[38]},{"name":"IMAGE_SYM_TYPE_VOID","features":[38]},{"name":"IMAGE_SYM_TYPE_WORD","features":[38]},{"name":"IMAGE_TLS_DIRECTORY32","features":[38]},{"name":"IMAGE_TLS_DIRECTORY64","features":[38]},{"name":"IMAGE_VXD_HEADER","features":[38]},{"name":"IMAGE_VXD_SIGNATURE","features":[38]},{"name":"IMAGE_WEAK_EXTERN_ANTI_DEPENDENCY","features":[38]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_ALIAS","features":[38]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_LIBRARY","features":[38]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY","features":[38]},{"name":"IMPORT_OBJECT_CODE","features":[38]},{"name":"IMPORT_OBJECT_CONST","features":[38]},{"name":"IMPORT_OBJECT_DATA","features":[38]},{"name":"IMPORT_OBJECT_HDR_SIG2","features":[38]},{"name":"IMPORT_OBJECT_HEADER","features":[38]},{"name":"IMPORT_OBJECT_NAME","features":[38]},{"name":"IMPORT_OBJECT_NAME_EXPORTAS","features":[38]},{"name":"IMPORT_OBJECT_NAME_NO_PREFIX","features":[38]},{"name":"IMPORT_OBJECT_NAME_TYPE","features":[38]},{"name":"IMPORT_OBJECT_NAME_UNDECORATE","features":[38]},{"name":"IMPORT_OBJECT_ORDINAL","features":[38]},{"name":"IMPORT_OBJECT_TYPE","features":[38]},{"name":"INITIAL_CPSR","features":[38]},{"name":"INITIAL_FPCSR","features":[38]},{"name":"INITIAL_FPSCR","features":[38]},{"name":"INITIAL_MXCSR","features":[38]},{"name":"IO_COMPLETION_MODIFY_STATE","features":[38]},{"name":"IO_REPARSE_TAG_AF_UNIX","features":[38]},{"name":"IO_REPARSE_TAG_APPEXECLINK","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_1","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_2","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_3","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_4","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_5","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_6","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_7","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_8","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_9","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_A","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_B","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_C","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_D","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_E","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_F","features":[38]},{"name":"IO_REPARSE_TAG_CLOUD_MASK","features":[38]},{"name":"IO_REPARSE_TAG_CSV","features":[38]},{"name":"IO_REPARSE_TAG_DATALESS_CIM","features":[38]},{"name":"IO_REPARSE_TAG_DEDUP","features":[38]},{"name":"IO_REPARSE_TAG_DFS","features":[38]},{"name":"IO_REPARSE_TAG_DFSR","features":[38]},{"name":"IO_REPARSE_TAG_FILE_PLACEHOLDER","features":[38]},{"name":"IO_REPARSE_TAG_GLOBAL_REPARSE","features":[38]},{"name":"IO_REPARSE_TAG_HSM","features":[38]},{"name":"IO_REPARSE_TAG_HSM2","features":[38]},{"name":"IO_REPARSE_TAG_MOUNT_POINT","features":[38]},{"name":"IO_REPARSE_TAG_NFS","features":[38]},{"name":"IO_REPARSE_TAG_ONEDRIVE","features":[38]},{"name":"IO_REPARSE_TAG_PROJFS","features":[38]},{"name":"IO_REPARSE_TAG_PROJFS_TOMBSTONE","features":[38]},{"name":"IO_REPARSE_TAG_RESERVED_INVALID","features":[38]},{"name":"IO_REPARSE_TAG_RESERVED_ONE","features":[38]},{"name":"IO_REPARSE_TAG_RESERVED_RANGE","features":[38]},{"name":"IO_REPARSE_TAG_RESERVED_TWO","features":[38]},{"name":"IO_REPARSE_TAG_RESERVED_ZERO","features":[38]},{"name":"IO_REPARSE_TAG_SIS","features":[38]},{"name":"IO_REPARSE_TAG_STORAGE_SYNC","features":[38]},{"name":"IO_REPARSE_TAG_SYMLINK","features":[38]},{"name":"IO_REPARSE_TAG_UNHANDLED","features":[38]},{"name":"IO_REPARSE_TAG_WCI","features":[38]},{"name":"IO_REPARSE_TAG_WCI_1","features":[38]},{"name":"IO_REPARSE_TAG_WCI_LINK","features":[38]},{"name":"IO_REPARSE_TAG_WCI_LINK_1","features":[38]},{"name":"IO_REPARSE_TAG_WCI_TOMBSTONE","features":[38]},{"name":"IO_REPARSE_TAG_WIM","features":[38]},{"name":"IO_REPARSE_TAG_WOF","features":[38]},{"name":"IS_TEXT_UNICODE_DBCS_LEADBYTE","features":[38]},{"name":"IS_TEXT_UNICODE_UTF8","features":[38]},{"name":"ITWW_OPEN_CONNECT","features":[38]},{"name":"IgnoreError","features":[38]},{"name":"ImagePolicyEntryTypeAnsiString","features":[38]},{"name":"ImagePolicyEntryTypeBool","features":[38]},{"name":"ImagePolicyEntryTypeInt16","features":[38]},{"name":"ImagePolicyEntryTypeInt32","features":[38]},{"name":"ImagePolicyEntryTypeInt64","features":[38]},{"name":"ImagePolicyEntryTypeInt8","features":[38]},{"name":"ImagePolicyEntryTypeMaximum","features":[38]},{"name":"ImagePolicyEntryTypeNone","features":[38]},{"name":"ImagePolicyEntryTypeOverride","features":[38]},{"name":"ImagePolicyEntryTypeUInt16","features":[38]},{"name":"ImagePolicyEntryTypeUInt32","features":[38]},{"name":"ImagePolicyEntryTypeUInt64","features":[38]},{"name":"ImagePolicyEntryTypeUInt8","features":[38]},{"name":"ImagePolicyEntryTypeUnicodeString","features":[38]},{"name":"ImagePolicyIdCapability","features":[38]},{"name":"ImagePolicyIdCrashDump","features":[38]},{"name":"ImagePolicyIdCrashDumpKey","features":[38]},{"name":"ImagePolicyIdCrashDumpKeyGuid","features":[38]},{"name":"ImagePolicyIdDebug","features":[38]},{"name":"ImagePolicyIdDeviceId","features":[38]},{"name":"ImagePolicyIdEtw","features":[38]},{"name":"ImagePolicyIdMaximum","features":[38]},{"name":"ImagePolicyIdNone","features":[38]},{"name":"ImagePolicyIdParentSd","features":[38]},{"name":"ImagePolicyIdParentSdRev","features":[38]},{"name":"ImagePolicyIdScenarioId","features":[38]},{"name":"ImagePolicyIdSvn","features":[38]},{"name":"JOB_OBJECT_ASSIGN_PROCESS","features":[38]},{"name":"JOB_OBJECT_IMPERSONATE","features":[38]},{"name":"JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS","features":[38]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT","features":[38]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO","features":[38]},{"name":"JOB_OBJECT_MSG_END_OF_JOB_TIME","features":[38]},{"name":"JOB_OBJECT_MSG_END_OF_PROCESS_TIME","features":[38]},{"name":"JOB_OBJECT_MSG_EXIT_PROCESS","features":[38]},{"name":"JOB_OBJECT_MSG_JOB_CYCLE_TIME_LIMIT","features":[38]},{"name":"JOB_OBJECT_MSG_JOB_MEMORY_LIMIT","features":[38]},{"name":"JOB_OBJECT_MSG_MAXIMUM","features":[38]},{"name":"JOB_OBJECT_MSG_MINIMUM","features":[38]},{"name":"JOB_OBJECT_MSG_NEW_PROCESS","features":[38]},{"name":"JOB_OBJECT_MSG_NOTIFICATION_LIMIT","features":[38]},{"name":"JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT","features":[38]},{"name":"JOB_OBJECT_MSG_SILO_TERMINATED","features":[38]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_DSCP_TAG","features":[38]},{"name":"JOB_OBJECT_QUERY","features":[38]},{"name":"JOB_OBJECT_SET_ATTRIBUTES","features":[38]},{"name":"JOB_OBJECT_SET_SECURITY_ATTRIBUTES","features":[38]},{"name":"JOB_OBJECT_TERMINATE","features":[38]},{"name":"JOB_OBJECT_UILIMIT_ALL","features":[38]},{"name":"JOB_OBJECT_UILIMIT_IME","features":[38]},{"name":"JOB_OBJECT_UI_VALID_FLAGS","features":[38]},{"name":"KERNEL_CET_CONTEXT","features":[38]},{"name":"KTMOBJECT_CURSOR","features":[38]},{"name":"KTMOBJECT_ENLISTMENT","features":[38]},{"name":"KTMOBJECT_INVALID","features":[38]},{"name":"KTMOBJECT_RESOURCE_MANAGER","features":[38]},{"name":"KTMOBJECT_TRANSACTION","features":[38]},{"name":"KTMOBJECT_TRANSACTION_MANAGER","features":[38]},{"name":"KTMOBJECT_TYPE","features":[38]},{"name":"LANG_AFRIKAANS","features":[38]},{"name":"LANG_ALBANIAN","features":[38]},{"name":"LANG_ALSATIAN","features":[38]},{"name":"LANG_AMHARIC","features":[38]},{"name":"LANG_ARABIC","features":[38]},{"name":"LANG_ARMENIAN","features":[38]},{"name":"LANG_ASSAMESE","features":[38]},{"name":"LANG_AZERBAIJANI","features":[38]},{"name":"LANG_AZERI","features":[38]},{"name":"LANG_BANGLA","features":[38]},{"name":"LANG_BASHKIR","features":[38]},{"name":"LANG_BASQUE","features":[38]},{"name":"LANG_BELARUSIAN","features":[38]},{"name":"LANG_BENGALI","features":[38]},{"name":"LANG_BOSNIAN","features":[38]},{"name":"LANG_BOSNIAN_NEUTRAL","features":[38]},{"name":"LANG_BRETON","features":[38]},{"name":"LANG_BULGARIAN","features":[38]},{"name":"LANG_CATALAN","features":[38]},{"name":"LANG_CENTRAL_KURDISH","features":[38]},{"name":"LANG_CHEROKEE","features":[38]},{"name":"LANG_CHINESE","features":[38]},{"name":"LANG_CHINESE_SIMPLIFIED","features":[38]},{"name":"LANG_CHINESE_TRADITIONAL","features":[38]},{"name":"LANG_CORSICAN","features":[38]},{"name":"LANG_CROATIAN","features":[38]},{"name":"LANG_CZECH","features":[38]},{"name":"LANG_DANISH","features":[38]},{"name":"LANG_DARI","features":[38]},{"name":"LANG_DIVEHI","features":[38]},{"name":"LANG_DUTCH","features":[38]},{"name":"LANG_ENGLISH","features":[38]},{"name":"LANG_ESTONIAN","features":[38]},{"name":"LANG_FAEROESE","features":[38]},{"name":"LANG_FARSI","features":[38]},{"name":"LANG_FILIPINO","features":[38]},{"name":"LANG_FINNISH","features":[38]},{"name":"LANG_FRENCH","features":[38]},{"name":"LANG_FRISIAN","features":[38]},{"name":"LANG_FULAH","features":[38]},{"name":"LANG_GALICIAN","features":[38]},{"name":"LANG_GEORGIAN","features":[38]},{"name":"LANG_GERMAN","features":[38]},{"name":"LANG_GREEK","features":[38]},{"name":"LANG_GREENLANDIC","features":[38]},{"name":"LANG_GUJARATI","features":[38]},{"name":"LANG_HAUSA","features":[38]},{"name":"LANG_HAWAIIAN","features":[38]},{"name":"LANG_HEBREW","features":[38]},{"name":"LANG_HINDI","features":[38]},{"name":"LANG_HUNGARIAN","features":[38]},{"name":"LANG_ICELANDIC","features":[38]},{"name":"LANG_IGBO","features":[38]},{"name":"LANG_INDONESIAN","features":[38]},{"name":"LANG_INUKTITUT","features":[38]},{"name":"LANG_INVARIANT","features":[38]},{"name":"LANG_IRISH","features":[38]},{"name":"LANG_ITALIAN","features":[38]},{"name":"LANG_JAPANESE","features":[38]},{"name":"LANG_KANNADA","features":[38]},{"name":"LANG_KASHMIRI","features":[38]},{"name":"LANG_KAZAK","features":[38]},{"name":"LANG_KHMER","features":[38]},{"name":"LANG_KICHE","features":[38]},{"name":"LANG_KINYARWANDA","features":[38]},{"name":"LANG_KONKANI","features":[38]},{"name":"LANG_KOREAN","features":[38]},{"name":"LANG_KYRGYZ","features":[38]},{"name":"LANG_LAO","features":[38]},{"name":"LANG_LATVIAN","features":[38]},{"name":"LANG_LITHUANIAN","features":[38]},{"name":"LANG_LOWER_SORBIAN","features":[38]},{"name":"LANG_LUXEMBOURGISH","features":[38]},{"name":"LANG_MACEDONIAN","features":[38]},{"name":"LANG_MALAY","features":[38]},{"name":"LANG_MALAYALAM","features":[38]},{"name":"LANG_MALTESE","features":[38]},{"name":"LANG_MANIPURI","features":[38]},{"name":"LANG_MAORI","features":[38]},{"name":"LANG_MAPUDUNGUN","features":[38]},{"name":"LANG_MARATHI","features":[38]},{"name":"LANG_MOHAWK","features":[38]},{"name":"LANG_MONGOLIAN","features":[38]},{"name":"LANG_NEPALI","features":[38]},{"name":"LANG_NEUTRAL","features":[38]},{"name":"LANG_NORWEGIAN","features":[38]},{"name":"LANG_OCCITAN","features":[38]},{"name":"LANG_ODIA","features":[38]},{"name":"LANG_ORIYA","features":[38]},{"name":"LANG_PASHTO","features":[38]},{"name":"LANG_PERSIAN","features":[38]},{"name":"LANG_POLISH","features":[38]},{"name":"LANG_PORTUGUESE","features":[38]},{"name":"LANG_PULAR","features":[38]},{"name":"LANG_PUNJABI","features":[38]},{"name":"LANG_QUECHUA","features":[38]},{"name":"LANG_ROMANIAN","features":[38]},{"name":"LANG_ROMANSH","features":[38]},{"name":"LANG_RUSSIAN","features":[38]},{"name":"LANG_SAKHA","features":[38]},{"name":"LANG_SAMI","features":[38]},{"name":"LANG_SANSKRIT","features":[38]},{"name":"LANG_SCOTTISH_GAELIC","features":[38]},{"name":"LANG_SERBIAN","features":[38]},{"name":"LANG_SERBIAN_NEUTRAL","features":[38]},{"name":"LANG_SINDHI","features":[38]},{"name":"LANG_SINHALESE","features":[38]},{"name":"LANG_SLOVAK","features":[38]},{"name":"LANG_SLOVENIAN","features":[38]},{"name":"LANG_SOTHO","features":[38]},{"name":"LANG_SPANISH","features":[38]},{"name":"LANG_SWAHILI","features":[38]},{"name":"LANG_SWEDISH","features":[38]},{"name":"LANG_SYRIAC","features":[38]},{"name":"LANG_TAJIK","features":[38]},{"name":"LANG_TAMAZIGHT","features":[38]},{"name":"LANG_TAMIL","features":[38]},{"name":"LANG_TATAR","features":[38]},{"name":"LANG_TELUGU","features":[38]},{"name":"LANG_THAI","features":[38]},{"name":"LANG_TIBETAN","features":[38]},{"name":"LANG_TIGRIGNA","features":[38]},{"name":"LANG_TIGRINYA","features":[38]},{"name":"LANG_TSWANA","features":[38]},{"name":"LANG_TURKISH","features":[38]},{"name":"LANG_TURKMEN","features":[38]},{"name":"LANG_UIGHUR","features":[38]},{"name":"LANG_UKRAINIAN","features":[38]},{"name":"LANG_UPPER_SORBIAN","features":[38]},{"name":"LANG_URDU","features":[38]},{"name":"LANG_UZBEK","features":[38]},{"name":"LANG_VALENCIAN","features":[38]},{"name":"LANG_VIETNAMESE","features":[38]},{"name":"LANG_WELSH","features":[38]},{"name":"LANG_WOLOF","features":[38]},{"name":"LANG_XHOSA","features":[38]},{"name":"LANG_YAKUT","features":[38]},{"name":"LANG_YI","features":[38]},{"name":"LANG_YORUBA","features":[38]},{"name":"LANG_ZULU","features":[38]},{"name":"LMEM_DISCARDABLE","features":[38]},{"name":"LMEM_DISCARDED","features":[38]},{"name":"LMEM_INVALID_HANDLE","features":[38]},{"name":"LMEM_LOCKCOUNT","features":[38]},{"name":"LMEM_MODIFY","features":[38]},{"name":"LMEM_NOCOMPACT","features":[38]},{"name":"LMEM_NODISCARD","features":[38]},{"name":"LMEM_VALID_FLAGS","features":[38]},{"name":"LOCALE_NAME_MAX_LENGTH","features":[38]},{"name":"LOCALE_TRANSIENT_KEYBOARD1","features":[38]},{"name":"LOCALE_TRANSIENT_KEYBOARD2","features":[38]},{"name":"LOCALE_TRANSIENT_KEYBOARD3","features":[38]},{"name":"LOCALE_TRANSIENT_KEYBOARD4","features":[38]},{"name":"LTP_PC_SMT","features":[38]},{"name":"MAILSLOT_NO_MESSAGE","features":[38]},{"name":"MAILSLOT_WAIT_FOREVER","features":[38]},{"name":"MAXBYTE","features":[38]},{"name":"MAXCHAR","features":[38]},{"name":"MAXDWORD","features":[38]},{"name":"MAXIMUM_ALLOWED","features":[38]},{"name":"MAXIMUM_PROCESSORS","features":[38]},{"name":"MAXIMUM_PROC_PER_GROUP","features":[38]},{"name":"MAXIMUM_SUPPORTED_EXTENSION","features":[38]},{"name":"MAXIMUM_SUSPEND_COUNT","features":[38]},{"name":"MAXIMUM_WAIT_OBJECTS","features":[38]},{"name":"MAXIMUM_XSTATE_FEATURES","features":[38]},{"name":"MAXLOGICALLOGNAMESIZE","features":[38]},{"name":"MAXLONG","features":[38]},{"name":"MAXLONGLONG","features":[38]},{"name":"MAXSHORT","features":[38]},{"name":"MAXVERSIONTESTED_INFO","features":[38]},{"name":"MAXWORD","features":[38]},{"name":"MAX_ACL_REVISION","features":[38]},{"name":"MAX_CLASS_NAME","features":[38]},{"name":"MAX_HW_COUNTERS","features":[38]},{"name":"MAX_PACKAGE_NAME","features":[38]},{"name":"MAX_UCSCHAR","features":[38]},{"name":"MEMORY_ALLOCATION_ALIGNMENT","features":[38]},{"name":"MEMORY_PARTITION_MODIFY_ACCESS","features":[38]},{"name":"MEMORY_PARTITION_QUERY_ACCESS","features":[38]},{"name":"MEMORY_PRIORITY_LOWEST","features":[38]},{"name":"MEM_4MB_PAGES","features":[38]},{"name":"MEM_COALESCE_PLACEHOLDERS","features":[38]},{"name":"MEM_DIFFERENT_IMAGE_BASE_OK","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_GRAPHICS","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_IMAGE_NO_HPAT","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_HUGE","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_LARGE","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_SOFT_FAULT_PAGES","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[38]},{"name":"MEM_EXTENDED_PARAMETER_ZERO_PAGES_OPTIONAL","features":[38]},{"name":"MEM_PHYSICAL","features":[38]},{"name":"MEM_ROTATE","features":[38]},{"name":"MEM_TOP_DOWN","features":[38]},{"name":"MEM_WRITE_WATCH","features":[38]},{"name":"MESSAGE_RESOURCE_UNICODE","features":[38]},{"name":"MESSAGE_RESOURCE_UTF8","features":[38]},{"name":"MINCHAR","features":[38]},{"name":"MINLONG","features":[38]},{"name":"MINSHORT","features":[38]},{"name":"MIN_UCSCHAR","features":[38]},{"name":"MK_CONTROL","features":[38]},{"name":"MK_LBUTTON","features":[38]},{"name":"MK_MBUTTON","features":[38]},{"name":"MK_RBUTTON","features":[38]},{"name":"MK_SHIFT","features":[38]},{"name":"MK_XBUTTON1","features":[38]},{"name":"MK_XBUTTON2","features":[38]},{"name":"MODIFIERKEYS_FLAGS","features":[38]},{"name":"MONITOR_DISPLAY_STATE","features":[38]},{"name":"MS_PPM_SOFTWARE_ALL","features":[38]},{"name":"MUTANT_QUERY_STATE","features":[38]},{"name":"MaxActivationContextInfoClass","features":[38]},{"name":"NATIVE_TYPE_MAX_CB","features":[38]},{"name":"NETWORK_APP_INSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[38]},{"name":"NETWORK_APP_INSTANCE_EA","features":[38]},{"name":"NLS_VALID_LOCALE_MASK","features":[38]},{"name":"NONVOL_FP_NUMREG_ARM64","features":[38]},{"name":"NONVOL_INT_NUMREG_ARM64","features":[38]},{"name":"NON_PAGED_DEBUG_INFO","features":[38]},{"name":"NON_PAGED_DEBUG_SIGNATURE","features":[38]},{"name":"NOTIFY_USER_POWER_SETTING","features":[38]},{"name":"NO_SUBGROUP_GUID","features":[38]},{"name":"NT_TIB32","features":[38]},{"name":"NT_TIB64","features":[38]},{"name":"NUMA_NO_PREFERRED_NODE","features":[38]},{"name":"NUM_DISCHARGE_POLICIES","features":[38]},{"name":"N_BTMASK","features":[38]},{"name":"N_BTSHFT","features":[38]},{"name":"N_TMASK","features":[38]},{"name":"N_TMASK1","features":[38]},{"name":"N_TMASK2","features":[38]},{"name":"N_TSHIFT","features":[38]},{"name":"NormalError","features":[38]},{"name":"OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME","features":[38]},{"name":"PACKEDEVENTINFO","features":[38]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[38]},{"name":"PARKING_TOPOLOGY_POLICY_ROUNDROBIN","features":[38]},{"name":"PARKING_TOPOLOGY_POLICY_SEQUENTIAL","features":[38]},{"name":"PERFORMANCE_DATA_VERSION","features":[38]},{"name":"PERFSTATE_POLICY_CHANGE_DECREASE_MAX","features":[38]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL","features":[38]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL_AGGRESSIVE","features":[38]},{"name":"PERFSTATE_POLICY_CHANGE_INCREASE_MAX","features":[38]},{"name":"PERFSTATE_POLICY_CHANGE_ROCKET","features":[38]},{"name":"PERFSTATE_POLICY_CHANGE_SINGLE","features":[38]},{"name":"PEXCEPTION_FILTER","features":[3,33,9,38]},{"name":"PF_NON_TEMPORAL_LEVEL_ALL","features":[38]},{"name":"PF_TEMPORAL_LEVEL_1","features":[38]},{"name":"PF_TEMPORAL_LEVEL_2","features":[38]},{"name":"PF_TEMPORAL_LEVEL_3","features":[38]},{"name":"PIMAGE_TLS_CALLBACK","features":[38]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[38]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[3,33,38]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[3,33,38]},{"name":"POWERBUTTON_ACTION_INDEX_HIBERNATE","features":[38]},{"name":"POWERBUTTON_ACTION_INDEX_NOTHING","features":[38]},{"name":"POWERBUTTON_ACTION_INDEX_SHUTDOWN","features":[38]},{"name":"POWERBUTTON_ACTION_INDEX_SLEEP","features":[38]},{"name":"POWERBUTTON_ACTION_INDEX_TURN_OFF_THE_DISPLAY","features":[38]},{"name":"POWERBUTTON_ACTION_VALUE_HIBERNATE","features":[38]},{"name":"POWERBUTTON_ACTION_VALUE_NOTHING","features":[38]},{"name":"POWERBUTTON_ACTION_VALUE_SHUTDOWN","features":[38]},{"name":"POWERBUTTON_ACTION_VALUE_SLEEP","features":[38]},{"name":"POWERBUTTON_ACTION_VALUE_TURN_OFF_THE_DISPLAY","features":[38]},{"name":"POWER_ACTION_ACPI_CRITICAL","features":[38]},{"name":"POWER_ACTION_ACPI_USER_NOTIFY","features":[38]},{"name":"POWER_ACTION_CRITICAL","features":[38]},{"name":"POWER_ACTION_DIRECTED_DRIPS","features":[38]},{"name":"POWER_ACTION_DISABLE_WAKES","features":[38]},{"name":"POWER_ACTION_DOZE_TO_HIBERNATE","features":[38]},{"name":"POWER_ACTION_HIBERBOOT","features":[38]},{"name":"POWER_ACTION_LIGHTEST_FIRST","features":[38]},{"name":"POWER_ACTION_LOCK_CONSOLE","features":[38]},{"name":"POWER_ACTION_OVERRIDE_APPS","features":[38]},{"name":"POWER_ACTION_PSEUDO_TRANSITION","features":[38]},{"name":"POWER_ACTION_QUERY_ALLOWED","features":[38]},{"name":"POWER_ACTION_UI_ALLOWED","features":[38]},{"name":"POWER_ACTION_USER_NOTIFY","features":[38]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_DISABLED","features":[38]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_ENABLED","features":[38]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_SYSTEM_MANAGED","features":[38]},{"name":"POWER_DEVICE_IDLE_POLICY_CONSERVATIVE","features":[38]},{"name":"POWER_DEVICE_IDLE_POLICY_PERFORMANCE","features":[38]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_AGGRESSIVE","features":[38]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_NORMAL","features":[38]},{"name":"POWER_REQUEST_CONTEXT_VERSION","features":[38]},{"name":"POWER_SETTING_VALUE_VERSION","features":[38]},{"name":"POWER_SYSTEM_MAXIMUM","features":[38]},{"name":"POWER_USER_NOTIFY_FORCED_SHUTDOWN","features":[38]},{"name":"PO_THROTTLE_ADAPTIVE","features":[38]},{"name":"PO_THROTTLE_CONSTANT","features":[38]},{"name":"PO_THROTTLE_DEGRADE","features":[38]},{"name":"PO_THROTTLE_MAXIMUM","features":[38]},{"name":"PO_THROTTLE_NONE","features":[38]},{"name":"PRAGMA_DEPRECATED_DDK","features":[38]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[38]},{"name":"PROCESSOR_ALPHA_21064","features":[38]},{"name":"PROCESSOR_AMD_X8664","features":[38]},{"name":"PROCESSOR_ARM720","features":[38]},{"name":"PROCESSOR_ARM820","features":[38]},{"name":"PROCESSOR_ARM920","features":[38]},{"name":"PROCESSOR_ARM_7TDMI","features":[38]},{"name":"PROCESSOR_DUTY_CYCLING_DISABLED","features":[38]},{"name":"PROCESSOR_DUTY_CYCLING_ENABLED","features":[38]},{"name":"PROCESSOR_HITACHI_SH3","features":[38]},{"name":"PROCESSOR_HITACHI_SH3E","features":[38]},{"name":"PROCESSOR_HITACHI_SH4","features":[38]},{"name":"PROCESSOR_IDLESTATE_INFO","features":[38]},{"name":"PROCESSOR_IDLESTATE_POLICY","features":[38]},{"name":"PROCESSOR_IDLESTATE_POLICY_COUNT","features":[38]},{"name":"PROCESSOR_INTEL_386","features":[38]},{"name":"PROCESSOR_INTEL_486","features":[38]},{"name":"PROCESSOR_INTEL_IA64","features":[38]},{"name":"PROCESSOR_INTEL_PENTIUM","features":[38]},{"name":"PROCESSOR_MIPS_R4000","features":[38]},{"name":"PROCESSOR_MOTOROLA_821","features":[38]},{"name":"PROCESSOR_OPTIL","features":[38]},{"name":"PROCESSOR_PERFSTATE_POLICY","features":[38]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_DISABLED","features":[38]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_ENABLED","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE_AT_GUARANTEED","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_DISABLED","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE_AT_GUARANTEED","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_ENABLED","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_ENABLED","features":[38]},{"name":"PROCESSOR_PERF_BOOST_MODE_MAX","features":[38]},{"name":"PROCESSOR_PERF_BOOST_POLICY_DISABLED","features":[38]},{"name":"PROCESSOR_PERF_BOOST_POLICY_MAX","features":[38]},{"name":"PROCESSOR_PERF_ENERGY_PREFERENCE","features":[38]},{"name":"PROCESSOR_PERF_MAXIMUM_ACTIVITY_WINDOW","features":[38]},{"name":"PROCESSOR_PERF_MINIMUM_ACTIVITY_WINDOW","features":[38]},{"name":"PROCESSOR_PERF_PERFORMANCE_PREFERENCE","features":[38]},{"name":"PROCESSOR_PPC_601","features":[38]},{"name":"PROCESSOR_PPC_603","features":[38]},{"name":"PROCESSOR_PPC_604","features":[38]},{"name":"PROCESSOR_PPC_620","features":[38]},{"name":"PROCESSOR_SHx_SH3","features":[38]},{"name":"PROCESSOR_SHx_SH4","features":[38]},{"name":"PROCESSOR_STRONGARM","features":[38]},{"name":"PROCESSOR_THROTTLE_AUTOMATIC","features":[38]},{"name":"PROCESSOR_THROTTLE_DISABLED","features":[38]},{"name":"PROCESSOR_THROTTLE_ENABLED","features":[38]},{"name":"PROCESS_HEAP_ENTRY_BUSY","features":[38]},{"name":"PROCESS_HEAP_ENTRY_DDESHARE","features":[38]},{"name":"PROCESS_HEAP_ENTRY_MOVEABLE","features":[38]},{"name":"PROCESS_HEAP_REGION","features":[38]},{"name":"PROCESS_HEAP_SEG_ALLOC","features":[38]},{"name":"PROCESS_HEAP_UNCOMMITTED_RANGE","features":[38]},{"name":"PROCESS_MITIGATION_ACTIVATION_CONTEXT_TRUST_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_ASLR_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_CHILD_PROCESS_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_DEP_POLICY","features":[3,38]},{"name":"PROCESS_MITIGATION_DYNAMIC_CODE_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_FONT_DISABLE_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_IMAGE_LOAD_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_REDIRECTION_TRUST_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_SEHOP_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_SIDE_CHANNEL_ISOLATION_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_USER_POINTER_AUTH_POLICY","features":[38]},{"name":"PROCESS_MITIGATION_USER_SHADOW_STACK_POLICY","features":[38]},{"name":"PROCESS_TRUST_LABEL_SECURITY_INFORMATION","features":[38]},{"name":"PROC_IDLE_BUCKET_COUNT","features":[38]},{"name":"PROC_IDLE_BUCKET_COUNT_EX","features":[38]},{"name":"PRODUCT_ARM64_SERVER","features":[38]},{"name":"PRODUCT_AZURESTACKHCI_SERVER_CORE","features":[38]},{"name":"PRODUCT_AZURE_NANO_SERVER","features":[38]},{"name":"PRODUCT_AZURE_SERVER_CLOUDHOST","features":[38]},{"name":"PRODUCT_AZURE_SERVER_CLOUDMOS","features":[38]},{"name":"PRODUCT_AZURE_SERVER_CORE","features":[38]},{"name":"PRODUCT_CLOUD","features":[38]},{"name":"PRODUCT_CLOUDE","features":[38]},{"name":"PRODUCT_CLOUDEDITION","features":[38]},{"name":"PRODUCT_CLOUDEDITIONN","features":[38]},{"name":"PRODUCT_CLOUDEN","features":[38]},{"name":"PRODUCT_CLOUDN","features":[38]},{"name":"PRODUCT_CLOUD_HOST_INFRASTRUCTURE_SERVER","features":[38]},{"name":"PRODUCT_CLOUD_STORAGE_SERVER","features":[38]},{"name":"PRODUCT_CONNECTED_CAR","features":[38]},{"name":"PRODUCT_CORE_ARM","features":[38]},{"name":"PRODUCT_CORE_CONNECTED","features":[38]},{"name":"PRODUCT_CORE_CONNECTED_COUNTRYSPECIFIC","features":[38]},{"name":"PRODUCT_CORE_CONNECTED_N","features":[38]},{"name":"PRODUCT_CORE_CONNECTED_SINGLELANGUAGE","features":[38]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER_CORE","features":[38]},{"name":"PRODUCT_DATACENTER_NANO_SERVER","features":[38]},{"name":"PRODUCT_DATACENTER_SERVER_AZURE_EDITION","features":[38]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_AZURE_EDITION","features":[38]},{"name":"PRODUCT_DATACENTER_WS_SERVER_CORE","features":[38]},{"name":"PRODUCT_EMBEDDED","features":[38]},{"name":"PRODUCT_EMBEDDED_A","features":[38]},{"name":"PRODUCT_EMBEDDED_AUTOMOTIVE","features":[38]},{"name":"PRODUCT_EMBEDDED_E","features":[38]},{"name":"PRODUCT_EMBEDDED_EVAL","features":[38]},{"name":"PRODUCT_EMBEDDED_E_EVAL","features":[38]},{"name":"PRODUCT_EMBEDDED_INDUSTRY","features":[38]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A","features":[38]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A_E","features":[38]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E","features":[38]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_EVAL","features":[38]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E_EVAL","features":[38]},{"name":"PRODUCT_ENTERPRISEG","features":[38]},{"name":"PRODUCT_ENTERPRISEGN","features":[38]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION","features":[38]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION_N","features":[38]},{"name":"PRODUCT_HOLOGRAPHIC","features":[38]},{"name":"PRODUCT_HOLOGRAPHIC_BUSINESS","features":[38]},{"name":"PRODUCT_HUBOS","features":[38]},{"name":"PRODUCT_INDUSTRY_HANDHELD","features":[38]},{"name":"PRODUCT_IOTEDGEOS","features":[38]},{"name":"PRODUCT_IOTENTERPRISE","features":[38]},{"name":"PRODUCT_IOTENTERPRISES","features":[38]},{"name":"PRODUCT_IOTOS","features":[38]},{"name":"PRODUCT_LITE","features":[38]},{"name":"PRODUCT_NANO_SERVER","features":[38]},{"name":"PRODUCT_ONECOREUPDATEOS","features":[38]},{"name":"PRODUCT_PPI_PRO","features":[38]},{"name":"PRODUCT_PROFESSIONAL_EMBEDDED","features":[38]},{"name":"PRODUCT_PROFESSIONAL_S","features":[38]},{"name":"PRODUCT_PROFESSIONAL_STUDENT","features":[38]},{"name":"PRODUCT_PROFESSIONAL_STUDENT_N","features":[38]},{"name":"PRODUCT_PROFESSIONAL_S_N","features":[38]},{"name":"PRODUCT_PRO_CHINA","features":[38]},{"name":"PRODUCT_PRO_FOR_EDUCATION","features":[38]},{"name":"PRODUCT_PRO_FOR_EDUCATION_N","features":[38]},{"name":"PRODUCT_PRO_SINGLE_LANGUAGE","features":[38]},{"name":"PRODUCT_SERVERRDSH","features":[38]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER_CORE","features":[38]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER_CORE","features":[38]},{"name":"PRODUCT_STANDARD_NANO_SERVER","features":[38]},{"name":"PRODUCT_STANDARD_SERVER_CORE","features":[38]},{"name":"PRODUCT_STANDARD_WS_SERVER_CORE","features":[38]},{"name":"PRODUCT_THINPC","features":[38]},{"name":"PRODUCT_UNLICENSED","features":[38]},{"name":"PRODUCT_UTILITY_VM","features":[38]},{"name":"PRODUCT_XBOX_DURANGOHOSTOS","features":[38]},{"name":"PRODUCT_XBOX_ERAOS","features":[38]},{"name":"PRODUCT_XBOX_GAMEOS","features":[38]},{"name":"PRODUCT_XBOX_KEYSTONE","features":[38]},{"name":"PRODUCT_XBOX_SCARLETTHOSTOS","features":[38]},{"name":"PRODUCT_XBOX_SYSTEMOS","features":[38]},{"name":"PTERMINATION_HANDLER","features":[3,38]},{"name":"PTERMINATION_HANDLER","features":[3,38]},{"name":"PUMS_SCHEDULER_ENTRY_POINT","features":[38]},{"name":"PcTeb","features":[38]},{"name":"PdataCrChained","features":[38]},{"name":"PdataCrChainedWithPac","features":[38]},{"name":"PdataCrUnchained","features":[38]},{"name":"PdataCrUnchainedSavedLr","features":[38]},{"name":"PdataPackedUnwindFragment","features":[38]},{"name":"PdataPackedUnwindFunction","features":[38]},{"name":"PdataRefToFullXdata","features":[38]},{"name":"PowerMonitorDim","features":[38]},{"name":"PowerMonitorOff","features":[38]},{"name":"PowerMonitorOn","features":[38]},{"name":"QUOTA_LIMITS_EX","features":[38]},{"name":"QUOTA_LIMITS_USE_DEFAULT_LIMITS","features":[38]},{"name":"RATE_QUOTA_LIMIT","features":[38]},{"name":"READ_THREAD_PROFILING_FLAG_DISPATCHING","features":[38]},{"name":"READ_THREAD_PROFILING_FLAG_HARDWARE_COUNTERS","features":[38]},{"name":"REARRANGE_FILE_DATA","features":[3,38]},{"name":"REARRANGE_FILE_DATA32","features":[38]},{"name":"RECO_COPY","features":[38]},{"name":"RECO_CUT","features":[38]},{"name":"RECO_DRAG","features":[38]},{"name":"RECO_DROP","features":[38]},{"name":"RECO_FLAGS","features":[38]},{"name":"RECO_PASTE","features":[38]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO","features":[38]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO_VERSION","features":[38]},{"name":"REG_APP_HIVE","features":[38]},{"name":"REG_APP_HIVE_OPEN_READ_ONLY","features":[38]},{"name":"REG_BOOT_HIVE","features":[38]},{"name":"REG_FLUSH_HIVE_FILE_GROWTH","features":[38]},{"name":"REG_FORCE_UNLOAD","features":[38]},{"name":"REG_HIVE_EXACT_FILE_GROWTH","features":[38]},{"name":"REG_HIVE_NO_RM","features":[38]},{"name":"REG_HIVE_SINGLE_LOG","features":[38]},{"name":"REG_IMMUTABLE","features":[38]},{"name":"REG_LOAD_HIVE_OPEN_HANDLE","features":[38]},{"name":"REG_NO_IMPERSONATION_FALLBACK","features":[38]},{"name":"REG_NO_LAZY_FLUSH","features":[38]},{"name":"REG_OPEN_READ_ONLY","features":[38]},{"name":"REG_PROCESS_PRIVATE","features":[38]},{"name":"REG_REFRESH_HIVE","features":[38]},{"name":"REG_START_JOURNAL","features":[38]},{"name":"REG_UNLOAD_LEGAL_FLAGS","features":[38]},{"name":"RESOURCEMANAGER_BASIC_INFORMATION","features":[38]},{"name":"RESOURCEMANAGER_COMPLETE_PROPAGATION","features":[38]},{"name":"RESOURCEMANAGER_COMPLETION_INFORMATION","features":[3,38]},{"name":"RESOURCEMANAGER_ENLIST","features":[38]},{"name":"RESOURCEMANAGER_GET_NOTIFICATION","features":[38]},{"name":"RESOURCEMANAGER_INFORMATION_CLASS","features":[38]},{"name":"RESOURCEMANAGER_QUERY_INFORMATION","features":[38]},{"name":"RESOURCEMANAGER_RECOVER","features":[38]},{"name":"RESOURCEMANAGER_REGISTER_PROTOCOL","features":[38]},{"name":"RESOURCEMANAGER_SET_INFORMATION","features":[38]},{"name":"ROT_COMPARE_MAX","features":[38]},{"name":"RTL_UMS_SCHEDULER_REASON","features":[38]},{"name":"RTL_UMS_VERSION","features":[38]},{"name":"RTL_VIRTUAL_UNWIND2_VALIDATE_PAC","features":[38]},{"name":"RUNTIME_FUNCTION_INDIRECT","features":[38]},{"name":"RecognizerType","features":[38]},{"name":"RemHBITMAP","features":[38]},{"name":"RemHBRUSH","features":[38]},{"name":"RemHENHMETAFILE","features":[38]},{"name":"RemHGLOBAL","features":[38]},{"name":"RemHMETAFILEPICT","features":[38]},{"name":"RemHPALETTE","features":[38]},{"name":"RemotableHandle","features":[38]},{"name":"ReplacesCorHdrNumericDefines","features":[38]},{"name":"ResourceManagerBasicInformation","features":[38]},{"name":"ResourceManagerCompletionInformation","features":[38]},{"name":"RunlevelInformationInActivationContext","features":[38]},{"name":"SCOPE_TABLE_AMD64","features":[38]},{"name":"SCOPE_TABLE_ARM","features":[38]},{"name":"SCOPE_TABLE_ARM64","features":[38]},{"name":"SCRUB_DATA_INPUT","features":[38]},{"name":"SCRUB_DATA_INPUT_FLAG_IGNORE_REDUNDANCY","features":[38]},{"name":"SCRUB_DATA_INPUT_FLAG_OPLOCK_NOT_ACQUIRED","features":[38]},{"name":"SCRUB_DATA_INPUT_FLAG_RESUME","features":[38]},{"name":"SCRUB_DATA_INPUT_FLAG_SCRUB_BY_OBJECT_ID","features":[38]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_DATA","features":[38]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_IN_SYNC","features":[38]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_NON_INTEGRITY_DATA","features":[38]},{"name":"SCRUB_DATA_OUTPUT","features":[38]},{"name":"SCRUB_DATA_OUTPUT_FLAG_INCOMPLETE","features":[38]},{"name":"SCRUB_DATA_OUTPUT_FLAG_NON_USER_DATA_RANGE","features":[38]},{"name":"SCRUB_DATA_OUTPUT_FLAG_PARITY_EXTENT_DATA_RETURNED","features":[38]},{"name":"SCRUB_DATA_OUTPUT_FLAG_RESUME_CONTEXT_LENGTH_SPECIFIED","features":[38]},{"name":"SCRUB_PARITY_EXTENT","features":[38]},{"name":"SCRUB_PARITY_EXTENT_DATA","features":[38]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[38]},{"name":"SECURITY_APPPOOL_ID_BASE_RID","features":[38]},{"name":"SECURITY_APPPOOL_ID_RID_COUNT","features":[38]},{"name":"SECURITY_APP_PACKAGE_BASE_RID","features":[38]},{"name":"SECURITY_APP_PACKAGE_RID_COUNT","features":[38]},{"name":"SECURITY_AUTHENTICATED_USER_RID","features":[38]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_ASSERTED_RID","features":[38]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_RID_COUNT","features":[38]},{"name":"SECURITY_AUTHENTICATION_FRESH_KEY_AUTH_RID","features":[38]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_ATTESTATION_RID","features":[38]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_MFA_RID","features":[38]},{"name":"SECURITY_AUTHENTICATION_KEY_TRUST_RID","features":[38]},{"name":"SECURITY_AUTHENTICATION_SERVICE_ASSERTED_RID","features":[38]},{"name":"SECURITY_BATCH_RID","features":[38]},{"name":"SECURITY_BUILTIN_APP_PACKAGE_RID_COUNT","features":[38]},{"name":"SECURITY_BUILTIN_CAPABILITY_RID_COUNT","features":[38]},{"name":"SECURITY_BUILTIN_DOMAIN_RID","features":[38]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE","features":[38]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_RESTRICTED_PACKAGE","features":[38]},{"name":"SECURITY_CAPABILITY_APPOINTMENTS","features":[38]},{"name":"SECURITY_CAPABILITY_APP_RID","features":[38]},{"name":"SECURITY_CAPABILITY_APP_SILO_RID","features":[38]},{"name":"SECURITY_CAPABILITY_BASE_RID","features":[38]},{"name":"SECURITY_CAPABILITY_CONTACTS","features":[38]},{"name":"SECURITY_CAPABILITY_DOCUMENTS_LIBRARY","features":[38]},{"name":"SECURITY_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[38]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT","features":[38]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT_SERVER","features":[38]},{"name":"SECURITY_CAPABILITY_INTERNET_EXPLORER","features":[38]},{"name":"SECURITY_CAPABILITY_MUSIC_LIBRARY","features":[38]},{"name":"SECURITY_CAPABILITY_PICTURES_LIBRARY","features":[38]},{"name":"SECURITY_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[38]},{"name":"SECURITY_CAPABILITY_REMOVABLE_STORAGE","features":[38]},{"name":"SECURITY_CAPABILITY_RID_COUNT","features":[38]},{"name":"SECURITY_CAPABILITY_SHARED_USER_CERTIFICATES","features":[38]},{"name":"SECURITY_CAPABILITY_VIDEOS_LIBRARY","features":[38]},{"name":"SECURITY_CCG_ID_BASE_RID","features":[38]},{"name":"SECURITY_CHILD_PACKAGE_RID_COUNT","features":[38]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_BASE_RID","features":[38]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_RID_COUNT","features":[38]},{"name":"SECURITY_COM_ID_BASE_RID","features":[38]},{"name":"SECURITY_CREATOR_GROUP_RID","features":[38]},{"name":"SECURITY_CREATOR_GROUP_SERVER_RID","features":[38]},{"name":"SECURITY_CREATOR_OWNER_RID","features":[38]},{"name":"SECURITY_CREATOR_OWNER_RIGHTS_RID","features":[38]},{"name":"SECURITY_CREATOR_OWNER_SERVER_RID","features":[38]},{"name":"SECURITY_CRED_TYPE_BASE_RID","features":[38]},{"name":"SECURITY_CRED_TYPE_RID_COUNT","features":[38]},{"name":"SECURITY_CRED_TYPE_THIS_ORG_CERT_RID","features":[38]},{"name":"SECURITY_DASHOST_ID_BASE_RID","features":[38]},{"name":"SECURITY_DASHOST_ID_RID_COUNT","features":[38]},{"name":"SECURITY_DESCRIPTOR_REVISION","features":[38]},{"name":"SECURITY_DESCRIPTOR_REVISION1","features":[38]},{"name":"SECURITY_DIALUP_RID","features":[38]},{"name":"SECURITY_ENTERPRISE_CONTROLLERS_RID","features":[38]},{"name":"SECURITY_ENTERPRISE_READONLY_CONTROLLERS_RID","features":[38]},{"name":"SECURITY_INSTALLER_CAPABILITY_RID_COUNT","features":[38]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_BASE","features":[38]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_RID_COUNT","features":[38]},{"name":"SECURITY_INTERACTIVE_RID","features":[38]},{"name":"SECURITY_IUSER_RID","features":[38]},{"name":"SECURITY_LOCAL_ACCOUNT_AND_ADMIN_RID","features":[38]},{"name":"SECURITY_LOCAL_ACCOUNT_RID","features":[38]},{"name":"SECURITY_LOCAL_LOGON_RID","features":[38]},{"name":"SECURITY_LOCAL_RID","features":[38]},{"name":"SECURITY_LOCAL_SERVICE_RID","features":[38]},{"name":"SECURITY_LOCAL_SYSTEM_RID","features":[38]},{"name":"SECURITY_LOGON_IDS_RID","features":[38]},{"name":"SECURITY_LOGON_IDS_RID_COUNT","features":[38]},{"name":"SECURITY_MANDATORY_HIGH_RID","features":[38]},{"name":"SECURITY_MANDATORY_LOW_RID","features":[38]},{"name":"SECURITY_MANDATORY_MAXIMUM_USER_RID","features":[38]},{"name":"SECURITY_MANDATORY_MEDIUM_PLUS_RID","features":[38]},{"name":"SECURITY_MANDATORY_MEDIUM_RID","features":[38]},{"name":"SECURITY_MANDATORY_PROTECTED_PROCESS_RID","features":[38]},{"name":"SECURITY_MANDATORY_SYSTEM_RID","features":[38]},{"name":"SECURITY_MANDATORY_UNTRUSTED_RID","features":[38]},{"name":"SECURITY_MAX_ALWAYS_FILTERED","features":[38]},{"name":"SECURITY_MAX_BASE_RID","features":[38]},{"name":"SECURITY_MIN_BASE_RID","features":[38]},{"name":"SECURITY_MIN_NEVER_FILTERED","features":[38]},{"name":"SECURITY_NETWORK_RID","features":[38]},{"name":"SECURITY_NETWORK_SERVICE_RID","features":[38]},{"name":"SECURITY_NFS_ID_BASE_RID","features":[38]},{"name":"SECURITY_NT_NON_UNIQUE","features":[38]},{"name":"SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT","features":[38]},{"name":"SECURITY_NULL_RID","features":[38]},{"name":"SECURITY_OBJECT_AI_PARAMS","features":[38]},{"name":"SECURITY_OTHER_ORGANIZATION_RID","features":[38]},{"name":"SECURITY_PACKAGE_BASE_RID","features":[38]},{"name":"SECURITY_PACKAGE_DIGEST_RID","features":[38]},{"name":"SECURITY_PACKAGE_NTLM_RID","features":[38]},{"name":"SECURITY_PACKAGE_RID_COUNT","features":[38]},{"name":"SECURITY_PACKAGE_SCHANNEL_RID","features":[38]},{"name":"SECURITY_PARENT_PACKAGE_RID_COUNT","features":[38]},{"name":"SECURITY_PRINCIPAL_SELF_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_ANTIMALWARE_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_APP_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_AUTHENTICODE_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_NONE_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINDOWS_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINTCB_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_FULL_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_LITE_RID","features":[38]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_NONE_RID","features":[38]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY_RID_COUNT","features":[38]},{"name":"SECURITY_PROXY_RID","features":[38]},{"name":"SECURITY_RDV_GFX_BASE_RID","features":[38]},{"name":"SECURITY_REMOTE_LOGON_RID","features":[38]},{"name":"SECURITY_RESERVED_ID_BASE_RID","features":[38]},{"name":"SECURITY_RESTRICTED_CODE_RID","features":[38]},{"name":"SECURITY_SERVER_LOGON_RID","features":[38]},{"name":"SECURITY_SERVICE_ID_BASE_RID","features":[38]},{"name":"SECURITY_SERVICE_ID_RID_COUNT","features":[38]},{"name":"SECURITY_SERVICE_RID","features":[38]},{"name":"SECURITY_TASK_ID_BASE_RID","features":[38]},{"name":"SECURITY_TERMINAL_SERVER_RID","features":[38]},{"name":"SECURITY_THIS_ORGANIZATION_RID","features":[38]},{"name":"SECURITY_TRUSTED_INSTALLER_RID1","features":[38]},{"name":"SECURITY_TRUSTED_INSTALLER_RID2","features":[38]},{"name":"SECURITY_TRUSTED_INSTALLER_RID3","features":[38]},{"name":"SECURITY_TRUSTED_INSTALLER_RID4","features":[38]},{"name":"SECURITY_TRUSTED_INSTALLER_RID5","features":[38]},{"name":"SECURITY_UMFD_BASE_RID","features":[38]},{"name":"SECURITY_USERMANAGER_ID_BASE_RID","features":[38]},{"name":"SECURITY_USERMANAGER_ID_RID_COUNT","features":[38]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_BASE_RID","features":[38]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_RID_COUNT","features":[38]},{"name":"SECURITY_VIRTUALACCOUNT_ID_RID_COUNT","features":[38]},{"name":"SECURITY_VIRTUALSERVER_ID_BASE_RID","features":[38]},{"name":"SECURITY_VIRTUALSERVER_ID_RID_COUNT","features":[38]},{"name":"SECURITY_WINDOWSMOBILE_ID_BASE_RID","features":[38]},{"name":"SECURITY_WINDOW_MANAGER_BASE_RID","features":[38]},{"name":"SECURITY_WINRM_ID_BASE_RID","features":[38]},{"name":"SECURITY_WINRM_ID_RID_COUNT","features":[38]},{"name":"SECURITY_WMIHOST_ID_BASE_RID","features":[38]},{"name":"SECURITY_WMIHOST_ID_RID_COUNT","features":[38]},{"name":"SECURITY_WORLD_RID","features":[38]},{"name":"SECURITY_WRITE_RESTRICTED_CODE_RID","features":[38]},{"name":"SEC_HUGE_PAGES","features":[38]},{"name":"SEF_AI_USE_EXTRA_PARAMS","features":[38]},{"name":"SEF_FORCE_USER_MODE","features":[38]},{"name":"SEF_NORMALIZE_OUTPUT_DESCRIPTOR","features":[38]},{"name":"SERVERSILO_BASIC_INFORMATION","features":[3,38]},{"name":"SERVERSILO_INITING","features":[38]},{"name":"SERVERSILO_SHUTTING_DOWN","features":[38]},{"name":"SERVERSILO_STARTED","features":[38]},{"name":"SERVERSILO_STATE","features":[38]},{"name":"SERVERSILO_TERMINATED","features":[38]},{"name":"SERVERSILO_TERMINATING","features":[38]},{"name":"SERVICE_ERROR_TYPE","features":[38]},{"name":"SERVICE_INTERACTIVE_PROCESS","features":[38]},{"name":"SERVICE_LOAD_TYPE","features":[38]},{"name":"SERVICE_NODE_TYPE","features":[38]},{"name":"SERVICE_PKG_SERVICE","features":[38]},{"name":"SERVICE_USERSERVICE_INSTANCE","features":[38]},{"name":"SERVICE_USER_SERVICE","features":[38]},{"name":"SESSION_MODIFY_ACCESS","features":[38]},{"name":"SESSION_QUERY_ACCESS","features":[38]},{"name":"SE_ACCESS_CHECK_FLAG_NO_LEARNING_MODE_LOGGING","features":[38]},{"name":"SE_ACCESS_CHECK_VALID_FLAGS","features":[38]},{"name":"SE_ACTIVATE_AS_USER_CAPABILITY","features":[38]},{"name":"SE_APP_SILO_PRINT_CAPABILITY","features":[38]},{"name":"SE_APP_SILO_PROFILES_ROOT_MINIMAL_CAPABILITY","features":[38]},{"name":"SE_APP_SILO_USER_PROFILE_MINIMAL_CAPABILITY","features":[38]},{"name":"SE_APP_SILO_VOLUME_ROOT_MINIMAL_CAPABILITY","features":[38]},{"name":"SE_CONSTRAINED_IMPERSONATION_CAPABILITY","features":[38]},{"name":"SE_DEVELOPMENT_MODE_NETWORK_CAPABILITY","features":[38]},{"name":"SE_GROUP_ENABLED","features":[38]},{"name":"SE_GROUP_ENABLED_BY_DEFAULT","features":[38]},{"name":"SE_GROUP_INTEGRITY","features":[38]},{"name":"SE_GROUP_INTEGRITY_ENABLED","features":[38]},{"name":"SE_GROUP_LOGON_ID","features":[38]},{"name":"SE_GROUP_MANDATORY","features":[38]},{"name":"SE_GROUP_OWNER","features":[38]},{"name":"SE_GROUP_RESOURCE","features":[38]},{"name":"SE_GROUP_USE_FOR_DENY_ONLY","features":[38]},{"name":"SE_IMAGE_SIGNATURE_TYPE","features":[38]},{"name":"SE_LEARNING_MODE_LOGGING_CAPABILITY","features":[38]},{"name":"SE_MUMA_CAPABILITY","features":[38]},{"name":"SE_PERMISSIVE_LEARNING_MODE_CAPABILITY","features":[38]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_ACCESS_FILTER_ACE","features":[38]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_LABEL_ACE","features":[38]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_OWNER_ACE","features":[38]},{"name":"SE_SECURITY_DESCRIPTOR_VALID_FLAGS","features":[38]},{"name":"SE_SESSION_IMPERSONATION_CAPABILITY","features":[38]},{"name":"SE_SIGNING_LEVEL_ANTIMALWARE","features":[38]},{"name":"SE_SIGNING_LEVEL_AUTHENTICODE","features":[38]},{"name":"SE_SIGNING_LEVEL_CUSTOM_1","features":[38]},{"name":"SE_SIGNING_LEVEL_CUSTOM_2","features":[38]},{"name":"SE_SIGNING_LEVEL_CUSTOM_3","features":[38]},{"name":"SE_SIGNING_LEVEL_CUSTOM_4","features":[38]},{"name":"SE_SIGNING_LEVEL_CUSTOM_5","features":[38]},{"name":"SE_SIGNING_LEVEL_CUSTOM_6","features":[38]},{"name":"SE_SIGNING_LEVEL_CUSTOM_7","features":[38]},{"name":"SE_SIGNING_LEVEL_DEVELOPER","features":[38]},{"name":"SE_SIGNING_LEVEL_DYNAMIC_CODEGEN","features":[38]},{"name":"SE_SIGNING_LEVEL_ENTERPRISE","features":[38]},{"name":"SE_SIGNING_LEVEL_MICROSOFT","features":[38]},{"name":"SE_SIGNING_LEVEL_STORE","features":[38]},{"name":"SE_SIGNING_LEVEL_UNCHECKED","features":[38]},{"name":"SE_SIGNING_LEVEL_UNSIGNED","features":[38]},{"name":"SE_SIGNING_LEVEL_WINDOWS","features":[38]},{"name":"SE_SIGNING_LEVEL_WINDOWS_TCB","features":[38]},{"name":"SE_TOKEN_USER","features":[6,38]},{"name":"SFGAO_BROWSABLE","features":[38]},{"name":"SFGAO_CANCOPY","features":[38]},{"name":"SFGAO_CANDELETE","features":[38]},{"name":"SFGAO_CANLINK","features":[38]},{"name":"SFGAO_CANMONIKER","features":[38]},{"name":"SFGAO_CANMOVE","features":[38]},{"name":"SFGAO_CANRENAME","features":[38]},{"name":"SFGAO_CAPABILITYMASK","features":[38]},{"name":"SFGAO_COMPRESSED","features":[38]},{"name":"SFGAO_CONTENTSMASK","features":[38]},{"name":"SFGAO_DISPLAYATTRMASK","features":[38]},{"name":"SFGAO_DROPTARGET","features":[38]},{"name":"SFGAO_ENCRYPTED","features":[38]},{"name":"SFGAO_FILESYSANCESTOR","features":[38]},{"name":"SFGAO_FILESYSTEM","features":[38]},{"name":"SFGAO_FLAGS","features":[38]},{"name":"SFGAO_FOLDER","features":[38]},{"name":"SFGAO_GHOSTED","features":[38]},{"name":"SFGAO_HASPROPSHEET","features":[38]},{"name":"SFGAO_HASSTORAGE","features":[38]},{"name":"SFGAO_HASSUBFOLDER","features":[38]},{"name":"SFGAO_HIDDEN","features":[38]},{"name":"SFGAO_ISSLOW","features":[38]},{"name":"SFGAO_LINK","features":[38]},{"name":"SFGAO_NEWCONTENT","features":[38]},{"name":"SFGAO_NONENUMERATED","features":[38]},{"name":"SFGAO_PKEYSFGAOMASK","features":[38]},{"name":"SFGAO_PLACEHOLDER","features":[38]},{"name":"SFGAO_READONLY","features":[38]},{"name":"SFGAO_REMOVABLE","features":[38]},{"name":"SFGAO_SHARE","features":[38]},{"name":"SFGAO_STORAGE","features":[38]},{"name":"SFGAO_STORAGEANCESTOR","features":[38]},{"name":"SFGAO_STORAGECAPMASK","features":[38]},{"name":"SFGAO_STREAM","features":[38]},{"name":"SFGAO_SYSTEM","features":[38]},{"name":"SFGAO_VALIDATE","features":[38]},{"name":"SHARED_VIRTUAL_DISK_SUPPORT","features":[38]},{"name":"SHUFFLE_FILE_DATA","features":[38]},{"name":"SHUFFLE_FILE_FLAG_SKIP_INITIALIZING_NEW_CLUSTERS","features":[38]},{"name":"SID_HASH_SIZE","features":[38]},{"name":"SID_MAX_SUB_AUTHORITIES","features":[38]},{"name":"SID_RECOMMENDED_SUB_AUTHORITIES","features":[38]},{"name":"SID_REVISION","features":[38]},{"name":"SILOOBJECT_BASIC_INFORMATION","features":[3,38]},{"name":"SIZEOF_RFPO_DATA","features":[38]},{"name":"SIZE_OF_80387_REGISTERS","features":[38]},{"name":"SMB_CCF_APP_INSTANCE_EA_NAME","features":[38]},{"name":"SMT_UNPARKING_POLICY_CORE","features":[38]},{"name":"SMT_UNPARKING_POLICY_CORE_PER_THREAD","features":[38]},{"name":"SMT_UNPARKING_POLICY_LP_ROUNDROBIN","features":[38]},{"name":"SMT_UNPARKING_POLICY_LP_SEQUENTIAL","features":[38]},{"name":"SORT_CHINESE_BIG5","features":[38]},{"name":"SORT_CHINESE_BOPOMOFO","features":[38]},{"name":"SORT_CHINESE_PRC","features":[38]},{"name":"SORT_CHINESE_PRCP","features":[38]},{"name":"SORT_CHINESE_RADICALSTROKE","features":[38]},{"name":"SORT_CHINESE_UNICODE","features":[38]},{"name":"SORT_DEFAULT","features":[38]},{"name":"SORT_GEORGIAN_MODERN","features":[38]},{"name":"SORT_GEORGIAN_TRADITIONAL","features":[38]},{"name":"SORT_GERMAN_PHONE_BOOK","features":[38]},{"name":"SORT_HUNGARIAN_DEFAULT","features":[38]},{"name":"SORT_HUNGARIAN_TECHNICAL","features":[38]},{"name":"SORT_INVARIANT_MATH","features":[38]},{"name":"SORT_JAPANESE_RADICALSTROKE","features":[38]},{"name":"SORT_JAPANESE_UNICODE","features":[38]},{"name":"SORT_JAPANESE_XJIS","features":[38]},{"name":"SORT_KOREAN_KSC","features":[38]},{"name":"SORT_KOREAN_UNICODE","features":[38]},{"name":"SS_BITMAP","features":[38]},{"name":"SS_BLACKFRAME","features":[38]},{"name":"SS_BLACKRECT","features":[38]},{"name":"SS_CENTER","features":[38]},{"name":"SS_CENTERIMAGE","features":[38]},{"name":"SS_EDITCONTROL","features":[38]},{"name":"SS_ELLIPSISMASK","features":[38]},{"name":"SS_ENDELLIPSIS","features":[38]},{"name":"SS_ENHMETAFILE","features":[38]},{"name":"SS_ETCHEDFRAME","features":[38]},{"name":"SS_ETCHEDHORZ","features":[38]},{"name":"SS_ETCHEDVERT","features":[38]},{"name":"SS_GRAYFRAME","features":[38]},{"name":"SS_GRAYRECT","features":[38]},{"name":"SS_ICON","features":[38]},{"name":"SS_LEFT","features":[38]},{"name":"SS_LEFTNOWORDWRAP","features":[38]},{"name":"SS_NOPREFIX","features":[38]},{"name":"SS_NOTIFY","features":[38]},{"name":"SS_OWNERDRAW","features":[38]},{"name":"SS_PATHELLIPSIS","features":[38]},{"name":"SS_REALSIZECONTROL","features":[38]},{"name":"SS_REALSIZEIMAGE","features":[38]},{"name":"SS_RIGHT","features":[38]},{"name":"SS_RIGHTJUST","features":[38]},{"name":"SS_SIMPLE","features":[38]},{"name":"SS_SUNKEN","features":[38]},{"name":"SS_TYPEMASK","features":[38]},{"name":"SS_USERITEM","features":[38]},{"name":"SS_WHITEFRAME","features":[38]},{"name":"SS_WHITERECT","features":[38]},{"name":"SS_WORDELLIPSIS","features":[38]},{"name":"STATIC_STYLES","features":[38]},{"name":"SUBLANG_AFRIKAANS_SOUTH_AFRICA","features":[38]},{"name":"SUBLANG_ALBANIAN_ALBANIA","features":[38]},{"name":"SUBLANG_ALSATIAN_FRANCE","features":[38]},{"name":"SUBLANG_AMHARIC_ETHIOPIA","features":[38]},{"name":"SUBLANG_ARABIC_ALGERIA","features":[38]},{"name":"SUBLANG_ARABIC_BAHRAIN","features":[38]},{"name":"SUBLANG_ARABIC_EGYPT","features":[38]},{"name":"SUBLANG_ARABIC_IRAQ","features":[38]},{"name":"SUBLANG_ARABIC_JORDAN","features":[38]},{"name":"SUBLANG_ARABIC_KUWAIT","features":[38]},{"name":"SUBLANG_ARABIC_LEBANON","features":[38]},{"name":"SUBLANG_ARABIC_LIBYA","features":[38]},{"name":"SUBLANG_ARABIC_MOROCCO","features":[38]},{"name":"SUBLANG_ARABIC_OMAN","features":[38]},{"name":"SUBLANG_ARABIC_QATAR","features":[38]},{"name":"SUBLANG_ARABIC_SAUDI_ARABIA","features":[38]},{"name":"SUBLANG_ARABIC_SYRIA","features":[38]},{"name":"SUBLANG_ARABIC_TUNISIA","features":[38]},{"name":"SUBLANG_ARABIC_UAE","features":[38]},{"name":"SUBLANG_ARABIC_YEMEN","features":[38]},{"name":"SUBLANG_ARMENIAN_ARMENIA","features":[38]},{"name":"SUBLANG_ASSAMESE_INDIA","features":[38]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_CYRILLIC","features":[38]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_LATIN","features":[38]},{"name":"SUBLANG_AZERI_CYRILLIC","features":[38]},{"name":"SUBLANG_AZERI_LATIN","features":[38]},{"name":"SUBLANG_BANGLA_BANGLADESH","features":[38]},{"name":"SUBLANG_BANGLA_INDIA","features":[38]},{"name":"SUBLANG_BASHKIR_RUSSIA","features":[38]},{"name":"SUBLANG_BASQUE_BASQUE","features":[38]},{"name":"SUBLANG_BELARUSIAN_BELARUS","features":[38]},{"name":"SUBLANG_BENGALI_BANGLADESH","features":[38]},{"name":"SUBLANG_BENGALI_INDIA","features":[38]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[38]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN","features":[38]},{"name":"SUBLANG_BRETON_FRANCE","features":[38]},{"name":"SUBLANG_BULGARIAN_BULGARIA","features":[38]},{"name":"SUBLANG_CATALAN_CATALAN","features":[38]},{"name":"SUBLANG_CENTRAL_KURDISH_IRAQ","features":[38]},{"name":"SUBLANG_CHEROKEE_CHEROKEE","features":[38]},{"name":"SUBLANG_CHINESE_HONGKONG","features":[38]},{"name":"SUBLANG_CHINESE_MACAU","features":[38]},{"name":"SUBLANG_CHINESE_SIMPLIFIED","features":[38]},{"name":"SUBLANG_CHINESE_SINGAPORE","features":[38]},{"name":"SUBLANG_CHINESE_TRADITIONAL","features":[38]},{"name":"SUBLANG_CORSICAN_FRANCE","features":[38]},{"name":"SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN","features":[38]},{"name":"SUBLANG_CROATIAN_CROATIA","features":[38]},{"name":"SUBLANG_CUSTOM_DEFAULT","features":[38]},{"name":"SUBLANG_CUSTOM_UNSPECIFIED","features":[38]},{"name":"SUBLANG_CZECH_CZECH_REPUBLIC","features":[38]},{"name":"SUBLANG_DANISH_DENMARK","features":[38]},{"name":"SUBLANG_DARI_AFGHANISTAN","features":[38]},{"name":"SUBLANG_DEFAULT","features":[38]},{"name":"SUBLANG_DIVEHI_MALDIVES","features":[38]},{"name":"SUBLANG_DUTCH","features":[38]},{"name":"SUBLANG_DUTCH_BELGIAN","features":[38]},{"name":"SUBLANG_ENGLISH_AUS","features":[38]},{"name":"SUBLANG_ENGLISH_BELIZE","features":[38]},{"name":"SUBLANG_ENGLISH_CAN","features":[38]},{"name":"SUBLANG_ENGLISH_CARIBBEAN","features":[38]},{"name":"SUBLANG_ENGLISH_EIRE","features":[38]},{"name":"SUBLANG_ENGLISH_INDIA","features":[38]},{"name":"SUBLANG_ENGLISH_JAMAICA","features":[38]},{"name":"SUBLANG_ENGLISH_MALAYSIA","features":[38]},{"name":"SUBLANG_ENGLISH_NZ","features":[38]},{"name":"SUBLANG_ENGLISH_PHILIPPINES","features":[38]},{"name":"SUBLANG_ENGLISH_SINGAPORE","features":[38]},{"name":"SUBLANG_ENGLISH_SOUTH_AFRICA","features":[38]},{"name":"SUBLANG_ENGLISH_TRINIDAD","features":[38]},{"name":"SUBLANG_ENGLISH_UK","features":[38]},{"name":"SUBLANG_ENGLISH_US","features":[38]},{"name":"SUBLANG_ENGLISH_ZIMBABWE","features":[38]},{"name":"SUBLANG_ESTONIAN_ESTONIA","features":[38]},{"name":"SUBLANG_FAEROESE_FAROE_ISLANDS","features":[38]},{"name":"SUBLANG_FILIPINO_PHILIPPINES","features":[38]},{"name":"SUBLANG_FINNISH_FINLAND","features":[38]},{"name":"SUBLANG_FRENCH","features":[38]},{"name":"SUBLANG_FRENCH_BELGIAN","features":[38]},{"name":"SUBLANG_FRENCH_CANADIAN","features":[38]},{"name":"SUBLANG_FRENCH_LUXEMBOURG","features":[38]},{"name":"SUBLANG_FRENCH_MONACO","features":[38]},{"name":"SUBLANG_FRENCH_SWISS","features":[38]},{"name":"SUBLANG_FRISIAN_NETHERLANDS","features":[38]},{"name":"SUBLANG_FULAH_SENEGAL","features":[38]},{"name":"SUBLANG_GALICIAN_GALICIAN","features":[38]},{"name":"SUBLANG_GEORGIAN_GEORGIA","features":[38]},{"name":"SUBLANG_GERMAN","features":[38]},{"name":"SUBLANG_GERMAN_AUSTRIAN","features":[38]},{"name":"SUBLANG_GERMAN_LIECHTENSTEIN","features":[38]},{"name":"SUBLANG_GERMAN_LUXEMBOURG","features":[38]},{"name":"SUBLANG_GERMAN_SWISS","features":[38]},{"name":"SUBLANG_GREEK_GREECE","features":[38]},{"name":"SUBLANG_GREENLANDIC_GREENLAND","features":[38]},{"name":"SUBLANG_GUJARATI_INDIA","features":[38]},{"name":"SUBLANG_HAUSA_NIGERIA_LATIN","features":[38]},{"name":"SUBLANG_HAWAIIAN_US","features":[38]},{"name":"SUBLANG_HEBREW_ISRAEL","features":[38]},{"name":"SUBLANG_HINDI_INDIA","features":[38]},{"name":"SUBLANG_HUNGARIAN_HUNGARY","features":[38]},{"name":"SUBLANG_ICELANDIC_ICELAND","features":[38]},{"name":"SUBLANG_IGBO_NIGERIA","features":[38]},{"name":"SUBLANG_INDONESIAN_INDONESIA","features":[38]},{"name":"SUBLANG_INUKTITUT_CANADA","features":[38]},{"name":"SUBLANG_INUKTITUT_CANADA_LATIN","features":[38]},{"name":"SUBLANG_IRISH_IRELAND","features":[38]},{"name":"SUBLANG_ITALIAN","features":[38]},{"name":"SUBLANG_ITALIAN_SWISS","features":[38]},{"name":"SUBLANG_JAPANESE_JAPAN","features":[38]},{"name":"SUBLANG_KANNADA_INDIA","features":[38]},{"name":"SUBLANG_KASHMIRI_INDIA","features":[38]},{"name":"SUBLANG_KASHMIRI_SASIA","features":[38]},{"name":"SUBLANG_KAZAK_KAZAKHSTAN","features":[38]},{"name":"SUBLANG_KHMER_CAMBODIA","features":[38]},{"name":"SUBLANG_KICHE_GUATEMALA","features":[38]},{"name":"SUBLANG_KINYARWANDA_RWANDA","features":[38]},{"name":"SUBLANG_KONKANI_INDIA","features":[38]},{"name":"SUBLANG_KOREAN","features":[38]},{"name":"SUBLANG_KYRGYZ_KYRGYZSTAN","features":[38]},{"name":"SUBLANG_LAO_LAO","features":[38]},{"name":"SUBLANG_LATVIAN_LATVIA","features":[38]},{"name":"SUBLANG_LITHUANIAN","features":[38]},{"name":"SUBLANG_LOWER_SORBIAN_GERMANY","features":[38]},{"name":"SUBLANG_LUXEMBOURGISH_LUXEMBOURG","features":[38]},{"name":"SUBLANG_MACEDONIAN_MACEDONIA","features":[38]},{"name":"SUBLANG_MALAYALAM_INDIA","features":[38]},{"name":"SUBLANG_MALAY_BRUNEI_DARUSSALAM","features":[38]},{"name":"SUBLANG_MALAY_MALAYSIA","features":[38]},{"name":"SUBLANG_MALTESE_MALTA","features":[38]},{"name":"SUBLANG_MAORI_NEW_ZEALAND","features":[38]},{"name":"SUBLANG_MAPUDUNGUN_CHILE","features":[38]},{"name":"SUBLANG_MARATHI_INDIA","features":[38]},{"name":"SUBLANG_MOHAWK_MOHAWK","features":[38]},{"name":"SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA","features":[38]},{"name":"SUBLANG_MONGOLIAN_PRC","features":[38]},{"name":"SUBLANG_NEPALI_INDIA","features":[38]},{"name":"SUBLANG_NEPALI_NEPAL","features":[38]},{"name":"SUBLANG_NEUTRAL","features":[38]},{"name":"SUBLANG_NORWEGIAN_BOKMAL","features":[38]},{"name":"SUBLANG_NORWEGIAN_NYNORSK","features":[38]},{"name":"SUBLANG_OCCITAN_FRANCE","features":[38]},{"name":"SUBLANG_ODIA_INDIA","features":[38]},{"name":"SUBLANG_ORIYA_INDIA","features":[38]},{"name":"SUBLANG_PASHTO_AFGHANISTAN","features":[38]},{"name":"SUBLANG_PERSIAN_IRAN","features":[38]},{"name":"SUBLANG_POLISH_POLAND","features":[38]},{"name":"SUBLANG_PORTUGUESE","features":[38]},{"name":"SUBLANG_PORTUGUESE_BRAZILIAN","features":[38]},{"name":"SUBLANG_PULAR_SENEGAL","features":[38]},{"name":"SUBLANG_PUNJABI_INDIA","features":[38]},{"name":"SUBLANG_PUNJABI_PAKISTAN","features":[38]},{"name":"SUBLANG_QUECHUA_BOLIVIA","features":[38]},{"name":"SUBLANG_QUECHUA_ECUADOR","features":[38]},{"name":"SUBLANG_QUECHUA_PERU","features":[38]},{"name":"SUBLANG_ROMANIAN_ROMANIA","features":[38]},{"name":"SUBLANG_ROMANSH_SWITZERLAND","features":[38]},{"name":"SUBLANG_RUSSIAN_RUSSIA","features":[38]},{"name":"SUBLANG_SAKHA_RUSSIA","features":[38]},{"name":"SUBLANG_SAMI_INARI_FINLAND","features":[38]},{"name":"SUBLANG_SAMI_LULE_NORWAY","features":[38]},{"name":"SUBLANG_SAMI_LULE_SWEDEN","features":[38]},{"name":"SUBLANG_SAMI_NORTHERN_FINLAND","features":[38]},{"name":"SUBLANG_SAMI_NORTHERN_NORWAY","features":[38]},{"name":"SUBLANG_SAMI_NORTHERN_SWEDEN","features":[38]},{"name":"SUBLANG_SAMI_SKOLT_FINLAND","features":[38]},{"name":"SUBLANG_SAMI_SOUTHERN_NORWAY","features":[38]},{"name":"SUBLANG_SAMI_SOUTHERN_SWEDEN","features":[38]},{"name":"SUBLANG_SANSKRIT_INDIA","features":[38]},{"name":"SUBLANG_SCOTTISH_GAELIC","features":[38]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[38]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN","features":[38]},{"name":"SUBLANG_SERBIAN_CROATIA","features":[38]},{"name":"SUBLANG_SERBIAN_CYRILLIC","features":[38]},{"name":"SUBLANG_SERBIAN_LATIN","features":[38]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_CYRILLIC","features":[38]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_LATIN","features":[38]},{"name":"SUBLANG_SERBIAN_SERBIA_CYRILLIC","features":[38]},{"name":"SUBLANG_SERBIAN_SERBIA_LATIN","features":[38]},{"name":"SUBLANG_SINDHI_AFGHANISTAN","features":[38]},{"name":"SUBLANG_SINDHI_INDIA","features":[38]},{"name":"SUBLANG_SINDHI_PAKISTAN","features":[38]},{"name":"SUBLANG_SINHALESE_SRI_LANKA","features":[38]},{"name":"SUBLANG_SLOVAK_SLOVAKIA","features":[38]},{"name":"SUBLANG_SLOVENIAN_SLOVENIA","features":[38]},{"name":"SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA","features":[38]},{"name":"SUBLANG_SPANISH","features":[38]},{"name":"SUBLANG_SPANISH_ARGENTINA","features":[38]},{"name":"SUBLANG_SPANISH_BOLIVIA","features":[38]},{"name":"SUBLANG_SPANISH_CHILE","features":[38]},{"name":"SUBLANG_SPANISH_COLOMBIA","features":[38]},{"name":"SUBLANG_SPANISH_COSTA_RICA","features":[38]},{"name":"SUBLANG_SPANISH_DOMINICAN_REPUBLIC","features":[38]},{"name":"SUBLANG_SPANISH_ECUADOR","features":[38]},{"name":"SUBLANG_SPANISH_EL_SALVADOR","features":[38]},{"name":"SUBLANG_SPANISH_GUATEMALA","features":[38]},{"name":"SUBLANG_SPANISH_HONDURAS","features":[38]},{"name":"SUBLANG_SPANISH_MEXICAN","features":[38]},{"name":"SUBLANG_SPANISH_MODERN","features":[38]},{"name":"SUBLANG_SPANISH_NICARAGUA","features":[38]},{"name":"SUBLANG_SPANISH_PANAMA","features":[38]},{"name":"SUBLANG_SPANISH_PARAGUAY","features":[38]},{"name":"SUBLANG_SPANISH_PERU","features":[38]},{"name":"SUBLANG_SPANISH_PUERTO_RICO","features":[38]},{"name":"SUBLANG_SPANISH_URUGUAY","features":[38]},{"name":"SUBLANG_SPANISH_US","features":[38]},{"name":"SUBLANG_SPANISH_VENEZUELA","features":[38]},{"name":"SUBLANG_SWAHILI_KENYA","features":[38]},{"name":"SUBLANG_SWEDISH","features":[38]},{"name":"SUBLANG_SWEDISH_FINLAND","features":[38]},{"name":"SUBLANG_SYRIAC_SYRIA","features":[38]},{"name":"SUBLANG_SYS_DEFAULT","features":[38]},{"name":"SUBLANG_TAJIK_TAJIKISTAN","features":[38]},{"name":"SUBLANG_TAMAZIGHT_ALGERIA_LATIN","features":[38]},{"name":"SUBLANG_TAMAZIGHT_MOROCCO_TIFINAGH","features":[38]},{"name":"SUBLANG_TAMIL_INDIA","features":[38]},{"name":"SUBLANG_TAMIL_SRI_LANKA","features":[38]},{"name":"SUBLANG_TATAR_RUSSIA","features":[38]},{"name":"SUBLANG_TELUGU_INDIA","features":[38]},{"name":"SUBLANG_THAI_THAILAND","features":[38]},{"name":"SUBLANG_TIBETAN_PRC","features":[38]},{"name":"SUBLANG_TIGRIGNA_ERITREA","features":[38]},{"name":"SUBLANG_TIGRINYA_ERITREA","features":[38]},{"name":"SUBLANG_TIGRINYA_ETHIOPIA","features":[38]},{"name":"SUBLANG_TSWANA_BOTSWANA","features":[38]},{"name":"SUBLANG_TSWANA_SOUTH_AFRICA","features":[38]},{"name":"SUBLANG_TURKISH_TURKEY","features":[38]},{"name":"SUBLANG_TURKMEN_TURKMENISTAN","features":[38]},{"name":"SUBLANG_UIGHUR_PRC","features":[38]},{"name":"SUBLANG_UI_CUSTOM_DEFAULT","features":[38]},{"name":"SUBLANG_UKRAINIAN_UKRAINE","features":[38]},{"name":"SUBLANG_UPPER_SORBIAN_GERMANY","features":[38]},{"name":"SUBLANG_URDU_INDIA","features":[38]},{"name":"SUBLANG_URDU_PAKISTAN","features":[38]},{"name":"SUBLANG_UZBEK_CYRILLIC","features":[38]},{"name":"SUBLANG_UZBEK_LATIN","features":[38]},{"name":"SUBLANG_VALENCIAN_VALENCIA","features":[38]},{"name":"SUBLANG_VIETNAMESE_VIETNAM","features":[38]},{"name":"SUBLANG_WELSH_UNITED_KINGDOM","features":[38]},{"name":"SUBLANG_WOLOF_SENEGAL","features":[38]},{"name":"SUBLANG_XHOSA_SOUTH_AFRICA","features":[38]},{"name":"SUBLANG_YAKUT_RUSSIA","features":[38]},{"name":"SUBLANG_YI_PRC","features":[38]},{"name":"SUBLANG_YORUBA_NIGERIA","features":[38]},{"name":"SUBLANG_ZULU_SOUTH_AFRICA","features":[38]},{"name":"SUPPORTED_OS_INFO","features":[38]},{"name":"SYSTEM_ACCESS_FILTER_ACE_TYPE","features":[38]},{"name":"SYSTEM_ACCESS_FILTER_NOCONSTRAINT_MASK","features":[38]},{"name":"SYSTEM_ACCESS_FILTER_VALID_MASK","features":[38]},{"name":"SYSTEM_ALARM_ACE_TYPE","features":[38]},{"name":"SYSTEM_ALARM_CALLBACK_ACE_TYPE","features":[38]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE","features":[38]},{"name":"SYSTEM_ALARM_OBJECT_ACE_TYPE","features":[38]},{"name":"SYSTEM_AUDIT_ACE_TYPE","features":[38]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE_TYPE","features":[38]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE_TYPE","features":[38]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_TYPE","features":[38]},{"name":"SYSTEM_CACHE_ALIGNMENT_SIZE","features":[38]},{"name":"SYSTEM_MANDATORY_LABEL_ACE_TYPE","features":[38]},{"name":"SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP","features":[38]},{"name":"SYSTEM_MANDATORY_LABEL_NO_READ_UP","features":[38]},{"name":"SYSTEM_MANDATORY_LABEL_NO_WRITE_UP","features":[38]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE_TYPE","features":[38]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_VALID_MASK","features":[38]},{"name":"SYSTEM_PROCESS_TRUST_NOCONSTRAINT_MASK","features":[38]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE_TYPE","features":[38]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE_TYPE","features":[38]},{"name":"SeImageSignatureCache","features":[38]},{"name":"SeImageSignatureCatalogCached","features":[38]},{"name":"SeImageSignatureCatalogHint","features":[38]},{"name":"SeImageSignatureCatalogNotCached","features":[38]},{"name":"SeImageSignatureEmbedded","features":[38]},{"name":"SeImageSignatureNone","features":[38]},{"name":"SeImageSignaturePackageCatalog","features":[38]},{"name":"SeImageSignaturePplMitigated","features":[38]},{"name":"SevereError","features":[38]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[38]},{"name":"SharedVirtualDiskHandleState","features":[38]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[38]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[38]},{"name":"SharedVirtualDiskHandleStateNone","features":[38]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[38]},{"name":"SharedVirtualDiskSupportType","features":[38]},{"name":"SharedVirtualDisksSupported","features":[38]},{"name":"SharedVirtualDisksUnsupported","features":[38]},{"name":"SystemLoad","features":[38]},{"name":"TAPE_CHECK_FOR_DRIVE_PROBLEM","features":[38]},{"name":"TAPE_CREATE_PARTITION","features":[38]},{"name":"TAPE_DRIVE_ABSOLUTE_BLK","features":[38]},{"name":"TAPE_DRIVE_ABS_BLK_IMMED","features":[38]},{"name":"TAPE_DRIVE_CLEAN_REQUESTS","features":[38]},{"name":"TAPE_DRIVE_COMPRESSION","features":[38]},{"name":"TAPE_DRIVE_ECC","features":[38]},{"name":"TAPE_DRIVE_EJECT_MEDIA","features":[38]},{"name":"TAPE_DRIVE_END_OF_DATA","features":[38]},{"name":"TAPE_DRIVE_EOT_WZ_SIZE","features":[38]},{"name":"TAPE_DRIVE_ERASE_BOP_ONLY","features":[38]},{"name":"TAPE_DRIVE_ERASE_IMMEDIATE","features":[38]},{"name":"TAPE_DRIVE_ERASE_LONG","features":[38]},{"name":"TAPE_DRIVE_ERASE_SHORT","features":[38]},{"name":"TAPE_DRIVE_FILEMARKS","features":[38]},{"name":"TAPE_DRIVE_FIXED","features":[38]},{"name":"TAPE_DRIVE_FIXED_BLOCK","features":[38]},{"name":"TAPE_DRIVE_FORMAT","features":[38]},{"name":"TAPE_DRIVE_FORMAT_IMMEDIATE","features":[38]},{"name":"TAPE_DRIVE_GET_ABSOLUTE_BLK","features":[38]},{"name":"TAPE_DRIVE_GET_LOGICAL_BLK","features":[38]},{"name":"TAPE_DRIVE_HIGH_FEATURES","features":[38]},{"name":"TAPE_DRIVE_INITIATOR","features":[38]},{"name":"TAPE_DRIVE_LOAD_UNLD_IMMED","features":[38]},{"name":"TAPE_DRIVE_LOAD_UNLOAD","features":[38]},{"name":"TAPE_DRIVE_LOCK_UNLK_IMMED","features":[38]},{"name":"TAPE_DRIVE_LOCK_UNLOCK","features":[38]},{"name":"TAPE_DRIVE_LOGICAL_BLK","features":[38]},{"name":"TAPE_DRIVE_LOG_BLK_IMMED","features":[38]},{"name":"TAPE_DRIVE_PADDING","features":[38]},{"name":"TAPE_DRIVE_PROBLEM_TYPE","features":[38]},{"name":"TAPE_DRIVE_RELATIVE_BLKS","features":[38]},{"name":"TAPE_DRIVE_REPORT_SMKS","features":[38]},{"name":"TAPE_DRIVE_RESERVED_BIT","features":[38]},{"name":"TAPE_DRIVE_REVERSE_POSITION","features":[38]},{"name":"TAPE_DRIVE_REWIND_IMMEDIATE","features":[38]},{"name":"TAPE_DRIVE_SELECT","features":[38]},{"name":"TAPE_DRIVE_SEQUENTIAL_FMKS","features":[38]},{"name":"TAPE_DRIVE_SEQUENTIAL_SMKS","features":[38]},{"name":"TAPE_DRIVE_SETMARKS","features":[38]},{"name":"TAPE_DRIVE_SET_BLOCK_SIZE","features":[38]},{"name":"TAPE_DRIVE_SET_CMP_BOP_ONLY","features":[38]},{"name":"TAPE_DRIVE_SET_COMPRESSION","features":[38]},{"name":"TAPE_DRIVE_SET_ECC","features":[38]},{"name":"TAPE_DRIVE_SET_EOT_WZ_SIZE","features":[38]},{"name":"TAPE_DRIVE_SET_PADDING","features":[38]},{"name":"TAPE_DRIVE_SET_REPORT_SMKS","features":[38]},{"name":"TAPE_DRIVE_SPACE_IMMEDIATE","features":[38]},{"name":"TAPE_DRIVE_TAPE_CAPACITY","features":[38]},{"name":"TAPE_DRIVE_TAPE_REMAINING","features":[38]},{"name":"TAPE_DRIVE_TENSION","features":[38]},{"name":"TAPE_DRIVE_TENSION_IMMED","features":[38]},{"name":"TAPE_DRIVE_VARIABLE_BLOCK","features":[38]},{"name":"TAPE_DRIVE_WRITE_FILEMARKS","features":[38]},{"name":"TAPE_DRIVE_WRITE_LONG_FMKS","features":[38]},{"name":"TAPE_DRIVE_WRITE_MARK_IMMED","features":[38]},{"name":"TAPE_DRIVE_WRITE_PROTECT","features":[38]},{"name":"TAPE_DRIVE_WRITE_SETMARKS","features":[38]},{"name":"TAPE_DRIVE_WRITE_SHORT_FMKS","features":[38]},{"name":"TAPE_GET_DRIVE_PARAMETERS","features":[3,38]},{"name":"TAPE_GET_DRIVE_PARAMETERS_FEATURES_HIGH","features":[38]},{"name":"TAPE_GET_MEDIA_PARAMETERS","features":[3,38]},{"name":"TAPE_PSEUDO_LOGICAL_BLOCK","features":[38]},{"name":"TAPE_PSEUDO_LOGICAL_POSITION","features":[38]},{"name":"TAPE_QUERY_DEVICE_ERROR_DATA","features":[38]},{"name":"TAPE_QUERY_DRIVE_PARAMETERS","features":[38]},{"name":"TAPE_QUERY_IO_ERROR_DATA","features":[38]},{"name":"TAPE_QUERY_MEDIA_CAPACITY","features":[38]},{"name":"TAPE_SET_DRIVE_PARAMETERS","features":[3,38]},{"name":"TAPE_SET_MEDIA_PARAMETERS","features":[38]},{"name":"TAPE_WMI_OPERATIONS","features":[38]},{"name":"THREAD_BASE_PRIORITY_IDLE","features":[38]},{"name":"THREAD_BASE_PRIORITY_LOWRT","features":[38]},{"name":"THREAD_BASE_PRIORITY_MAX","features":[38]},{"name":"THREAD_BASE_PRIORITY_MIN","features":[38]},{"name":"THREAD_DYNAMIC_CODE_ALLOW","features":[38]},{"name":"THREAD_PROFILING_FLAG_DISPATCH","features":[38]},{"name":"TIME_ZONE_ID_DAYLIGHT","features":[38]},{"name":"TIME_ZONE_ID_STANDARD","features":[38]},{"name":"TIME_ZONE_ID_UNKNOWN","features":[38]},{"name":"TLS_MINIMUM_AVAILABLE","features":[38]},{"name":"TOKEN_BNO_ISOLATION_INFORMATION","features":[3,38]},{"name":"TOKEN_SID_INFORMATION","features":[6,38]},{"name":"TOKEN_SOURCE_LENGTH","features":[38]},{"name":"TRANSACTIONMANAGER_BASIC_INFORMATION","features":[38]},{"name":"TRANSACTIONMANAGER_BIND_TRANSACTION","features":[38]},{"name":"TRANSACTIONMANAGER_CREATE_RM","features":[38]},{"name":"TRANSACTIONMANAGER_INFORMATION_CLASS","features":[38]},{"name":"TRANSACTIONMANAGER_LOGPATH_INFORMATION","features":[38]},{"name":"TRANSACTIONMANAGER_LOG_INFORMATION","features":[38]},{"name":"TRANSACTIONMANAGER_OLDEST_INFORMATION","features":[38]},{"name":"TRANSACTIONMANAGER_QUERY_INFORMATION","features":[38]},{"name":"TRANSACTIONMANAGER_RECOVER","features":[38]},{"name":"TRANSACTIONMANAGER_RECOVERY_INFORMATION","features":[38]},{"name":"TRANSACTIONMANAGER_RENAME","features":[38]},{"name":"TRANSACTIONMANAGER_SET_INFORMATION","features":[38]},{"name":"TRANSACTION_BASIC_INFORMATION","features":[38]},{"name":"TRANSACTION_BIND_INFORMATION","features":[3,38]},{"name":"TRANSACTION_COMMIT","features":[38]},{"name":"TRANSACTION_ENLIST","features":[38]},{"name":"TRANSACTION_ENLISTMENTS_INFORMATION","features":[38]},{"name":"TRANSACTION_ENLISTMENT_PAIR","features":[38]},{"name":"TRANSACTION_INFORMATION_CLASS","features":[38]},{"name":"TRANSACTION_LIST_ENTRY","features":[38]},{"name":"TRANSACTION_LIST_INFORMATION","features":[38]},{"name":"TRANSACTION_PROPAGATE","features":[38]},{"name":"TRANSACTION_PROPERTIES_INFORMATION","features":[38]},{"name":"TRANSACTION_QUERY_INFORMATION","features":[38]},{"name":"TRANSACTION_RIGHT_RESERVED1","features":[38]},{"name":"TRANSACTION_ROLLBACK","features":[38]},{"name":"TRANSACTION_SET_INFORMATION","features":[38]},{"name":"TRANSACTION_STATE","features":[38]},{"name":"TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION","features":[38]},{"name":"TREE_CONNECT_ATTRIBUTE_GLOBAL","features":[38]},{"name":"TREE_CONNECT_ATTRIBUTE_INTEGRITY","features":[38]},{"name":"TREE_CONNECT_ATTRIBUTE_PINNED","features":[38]},{"name":"TREE_CONNECT_ATTRIBUTE_PRIVACY","features":[38]},{"name":"TRUST_PROTECTED_FILTER_ACE_FLAG","features":[38]},{"name":"TapeDriveCleanDriveNow","features":[38]},{"name":"TapeDriveHardwareError","features":[38]},{"name":"TapeDriveMediaLifeExpired","features":[38]},{"name":"TapeDriveProblemNone","features":[38]},{"name":"TapeDriveReadError","features":[38]},{"name":"TapeDriveReadWarning","features":[38]},{"name":"TapeDriveReadWriteError","features":[38]},{"name":"TapeDriveReadWriteWarning","features":[38]},{"name":"TapeDriveScsiConnectionError","features":[38]},{"name":"TapeDriveSnappedTape","features":[38]},{"name":"TapeDriveTimetoClean","features":[38]},{"name":"TapeDriveUnsupportedMedia","features":[38]},{"name":"TapeDriveWriteError","features":[38]},{"name":"TapeDriveWriteWarning","features":[38]},{"name":"TransactionBasicInformation","features":[38]},{"name":"TransactionBindInformation","features":[38]},{"name":"TransactionDTCPrivateInformation","features":[38]},{"name":"TransactionEnlistmentInformation","features":[38]},{"name":"TransactionManagerBasicInformation","features":[38]},{"name":"TransactionManagerLogInformation","features":[38]},{"name":"TransactionManagerLogPathInformation","features":[38]},{"name":"TransactionManagerOldestTransactionInformation","features":[38]},{"name":"TransactionManagerOnlineProbeInformation","features":[38]},{"name":"TransactionManagerRecoveryInformation","features":[38]},{"name":"TransactionPropertiesInformation","features":[38]},{"name":"TransactionStateCommittedNotify","features":[38]},{"name":"TransactionStateIndoubt","features":[38]},{"name":"TransactionStateNormal","features":[38]},{"name":"TransactionSuperiorEnlistmentInformation","features":[38]},{"name":"UCSCHAR_INVALID_CHARACTER","features":[38]},{"name":"UMS_CREATE_THREAD_ATTRIBUTES","features":[38]},{"name":"UNICODE_STRING_MAX_CHARS","features":[38]},{"name":"UNIFIEDBUILDREVISION_KEY","features":[38]},{"name":"UNIFIEDBUILDREVISION_MIN","features":[38]},{"name":"UNIFIEDBUILDREVISION_VALUE","features":[38]},{"name":"UNWIND_CHAIN_LIMIT","features":[38]},{"name":"UNWIND_HISTORY_TABLE_SIZE","features":[38]},{"name":"UNW_FLAG_NO_EPILOGUE","features":[38]},{"name":"UmsSchedulerStartup","features":[38]},{"name":"UmsSchedulerThreadBlocked","features":[38]},{"name":"UmsSchedulerThreadYield","features":[38]},{"name":"VALID_INHERIT_FLAGS","features":[38]},{"name":"VBS_BASIC_PAGE_MEASURED_DATA","features":[38]},{"name":"VBS_BASIC_PAGE_SYSTEM_CALL","features":[38]},{"name":"VBS_BASIC_PAGE_THREAD_DESCRIPTOR","features":[38]},{"name":"VBS_BASIC_PAGE_UNMEASURED_DATA","features":[38]},{"name":"VBS_BASIC_PAGE_ZERO_FILL","features":[38]},{"name":"VER_AND","features":[38]},{"name":"VER_CONDITION_MASK","features":[38]},{"name":"VER_EQUAL","features":[38]},{"name":"VER_GREATER","features":[38]},{"name":"VER_GREATER_EQUAL","features":[38]},{"name":"VER_LESS","features":[38]},{"name":"VER_LESS_EQUAL","features":[38]},{"name":"VER_NT_DOMAIN_CONTROLLER","features":[38]},{"name":"VER_NT_SERVER","features":[38]},{"name":"VER_NT_WORKSTATION","features":[38]},{"name":"VER_NUM_BITS_PER_CONDITION_MASK","features":[38]},{"name":"VER_OR","features":[38]},{"name":"VER_SERVER_NT","features":[38]},{"name":"VER_SUITE_BACKOFFICE","features":[38]},{"name":"VER_SUITE_BLADE","features":[38]},{"name":"VER_SUITE_COMMUNICATIONS","features":[38]},{"name":"VER_SUITE_COMPUTE_SERVER","features":[38]},{"name":"VER_SUITE_DATACENTER","features":[38]},{"name":"VER_SUITE_EMBEDDEDNT","features":[38]},{"name":"VER_SUITE_EMBEDDED_RESTRICTED","features":[38]},{"name":"VER_SUITE_ENTERPRISE","features":[38]},{"name":"VER_SUITE_MULTIUSERTS","features":[38]},{"name":"VER_SUITE_PERSONAL","features":[38]},{"name":"VER_SUITE_SECURITY_APPLIANCE","features":[38]},{"name":"VER_SUITE_SINGLEUSERTS","features":[38]},{"name":"VER_SUITE_SMALLBUSINESS","features":[38]},{"name":"VER_SUITE_SMALLBUSINESS_RESTRICTED","features":[38]},{"name":"VER_SUITE_STORAGE_SERVER","features":[38]},{"name":"VER_SUITE_TERMINAL","features":[38]},{"name":"VER_SUITE_WH_SERVER","features":[38]},{"name":"VER_WORKSTATION_NT","features":[38]},{"name":"VRL_CUSTOM_CLASS_BEGIN","features":[38]},{"name":"VRL_ENABLE_KERNEL_BREAKS","features":[38]},{"name":"VRL_PREDEFINED_CLASS_BEGIN","features":[38]},{"name":"WDT_INPROC64_CALL","features":[38]},{"name":"WDT_INPROC_CALL","features":[38]},{"name":"WDT_REMOTE_CALL","features":[38]},{"name":"WORD_WHEEL_OPEN_FLAGS","features":[38]},{"name":"WRITE_NV_MEMORY_FLAG_FLUSH","features":[38]},{"name":"WRITE_NV_MEMORY_FLAG_NON_TEMPORAL","features":[38]},{"name":"WRITE_NV_MEMORY_FLAG_NO_DRAIN","features":[38]},{"name":"WRITE_WATCH_FLAG_RESET","features":[38]},{"name":"WT_EXECUTEDELETEWAIT","features":[38]},{"name":"WT_EXECUTEINLONGTHREAD","features":[38]},{"name":"WT_EXECUTEINPERSISTENTIOTHREAD","features":[38]},{"name":"WT_EXECUTEINUITHREAD","features":[38]},{"name":"Win32ServiceOwnProcess","features":[38]},{"name":"Win32ServiceShareProcess","features":[38]},{"name":"X3_BTYPE_QP_INST_VAL_POS_X","features":[38]},{"name":"X3_BTYPE_QP_INST_WORD_POS_X","features":[38]},{"name":"X3_BTYPE_QP_INST_WORD_X","features":[38]},{"name":"X3_BTYPE_QP_SIZE_X","features":[38]},{"name":"X3_D_WH_INST_WORD_POS_X","features":[38]},{"name":"X3_D_WH_INST_WORD_X","features":[38]},{"name":"X3_D_WH_SIGN_VAL_POS_X","features":[38]},{"name":"X3_D_WH_SIZE_X","features":[38]},{"name":"X3_EMPTY_INST_VAL_POS_X","features":[38]},{"name":"X3_EMPTY_INST_WORD_POS_X","features":[38]},{"name":"X3_EMPTY_INST_WORD_X","features":[38]},{"name":"X3_EMPTY_SIZE_X","features":[38]},{"name":"X3_IMM20_INST_WORD_POS_X","features":[38]},{"name":"X3_IMM20_INST_WORD_X","features":[38]},{"name":"X3_IMM20_SIGN_VAL_POS_X","features":[38]},{"name":"X3_IMM20_SIZE_X","features":[38]},{"name":"X3_IMM39_1_INST_WORD_POS_X","features":[38]},{"name":"X3_IMM39_1_INST_WORD_X","features":[38]},{"name":"X3_IMM39_1_SIGN_VAL_POS_X","features":[38]},{"name":"X3_IMM39_1_SIZE_X","features":[38]},{"name":"X3_IMM39_2_INST_WORD_POS_X","features":[38]},{"name":"X3_IMM39_2_INST_WORD_X","features":[38]},{"name":"X3_IMM39_2_SIGN_VAL_POS_X","features":[38]},{"name":"X3_IMM39_2_SIZE_X","features":[38]},{"name":"X3_I_INST_WORD_POS_X","features":[38]},{"name":"X3_I_INST_WORD_X","features":[38]},{"name":"X3_I_SIGN_VAL_POS_X","features":[38]},{"name":"X3_I_SIZE_X","features":[38]},{"name":"X3_OPCODE_INST_WORD_POS_X","features":[38]},{"name":"X3_OPCODE_INST_WORD_X","features":[38]},{"name":"X3_OPCODE_SIGN_VAL_POS_X","features":[38]},{"name":"X3_OPCODE_SIZE_X","features":[38]},{"name":"X3_P_INST_WORD_POS_X","features":[38]},{"name":"X3_P_INST_WORD_X","features":[38]},{"name":"X3_P_SIGN_VAL_POS_X","features":[38]},{"name":"X3_P_SIZE_X","features":[38]},{"name":"X3_TMPLT_INST_WORD_POS_X","features":[38]},{"name":"X3_TMPLT_INST_WORD_X","features":[38]},{"name":"X3_TMPLT_SIGN_VAL_POS_X","features":[38]},{"name":"X3_TMPLT_SIZE_X","features":[38]},{"name":"X86_CACHE_ALIGNMENT_SIZE","features":[38]},{"name":"XSAVE_CET_U_FORMAT","features":[38]},{"name":"XSTATE_ALIGN_BIT","features":[38]},{"name":"XSTATE_AMX_TILE_CONFIG","features":[38]},{"name":"XSTATE_AMX_TILE_DATA","features":[38]},{"name":"XSTATE_AVX","features":[38]},{"name":"XSTATE_AVX512_KMASK","features":[38]},{"name":"XSTATE_AVX512_ZMM","features":[38]},{"name":"XSTATE_AVX512_ZMM_H","features":[38]},{"name":"XSTATE_CET_S","features":[38]},{"name":"XSTATE_CET_U","features":[38]},{"name":"XSTATE_COMPACTION_ENABLE","features":[38]},{"name":"XSTATE_CONTROLFLAG_XFD_MASK","features":[38]},{"name":"XSTATE_CONTROLFLAG_XSAVEC_MASK","features":[38]},{"name":"XSTATE_CONTROLFLAG_XSAVEOPT_MASK","features":[38]},{"name":"XSTATE_GSSE","features":[38]},{"name":"XSTATE_IPT","features":[38]},{"name":"XSTATE_LEGACY_FLOATING_POINT","features":[38]},{"name":"XSTATE_LEGACY_SSE","features":[38]},{"name":"XSTATE_LWP","features":[38]},{"name":"XSTATE_MPX_BNDCSR","features":[38]},{"name":"XSTATE_MPX_BNDREGS","features":[38]},{"name":"XSTATE_PASID","features":[38]},{"name":"XSTATE_XFD_BIT","features":[38]},{"name":"_MM_HINT_NTA","features":[38]},{"name":"_MM_HINT_T0","features":[38]},{"name":"_MM_HINT_T1","features":[38]},{"name":"_MM_HINT_T2","features":[38]},{"name":"remoteMETAFILEPICT","features":[43,38]},{"name":"userBITMAP","features":[38]},{"name":"userCLIPFORMAT","features":[38]},{"name":"userHBITMAP","features":[38]},{"name":"userHENHMETAFILE","features":[43,38]},{"name":"userHGLOBAL","features":[43,38]},{"name":"userHMETAFILE","features":[43,38]},{"name":"userHMETAFILEPICT","features":[43,38]},{"name":"userHPALETTE","features":[14,38]}],"618":[{"name":"ABOVE_NORMAL_PRIORITY_CLASS","features":[39]},{"name":"ALL_PROCESSOR_GROUPS","features":[39]},{"name":"APC_CALLBACK_FUNCTION","features":[39]},{"name":"APP_MEMORY_INFORMATION","features":[39]},{"name":"AVRT_PRIORITY","features":[39]},{"name":"AVRT_PRIORITY_CRITICAL","features":[39]},{"name":"AVRT_PRIORITY_HIGH","features":[39]},{"name":"AVRT_PRIORITY_LOW","features":[39]},{"name":"AVRT_PRIORITY_NORMAL","features":[39]},{"name":"AVRT_PRIORITY_VERYLOW","features":[39]},{"name":"AcquireSRWLockExclusive","features":[39]},{"name":"AcquireSRWLockShared","features":[39]},{"name":"AddIntegrityLabelToBoundaryDescriptor","features":[3,6,39]},{"name":"AddSIDToBoundaryDescriptor","features":[3,6,39]},{"name":"AttachThreadInput","features":[3,39]},{"name":"AvQuerySystemResponsiveness","features":[3,39]},{"name":"AvRevertMmThreadCharacteristics","features":[3,39]},{"name":"AvRtCreateThreadOrderingGroup","features":[3,39]},{"name":"AvRtCreateThreadOrderingGroupExA","features":[3,39]},{"name":"AvRtCreateThreadOrderingGroupExW","features":[3,39]},{"name":"AvRtDeleteThreadOrderingGroup","features":[3,39]},{"name":"AvRtJoinThreadOrderingGroup","features":[3,39]},{"name":"AvRtLeaveThreadOrderingGroup","features":[3,39]},{"name":"AvRtWaitOnThreadOrderingGroup","features":[3,39]},{"name":"AvSetMmMaxThreadCharacteristicsA","features":[3,39]},{"name":"AvSetMmMaxThreadCharacteristicsW","features":[3,39]},{"name":"AvSetMmThreadCharacteristicsA","features":[3,39]},{"name":"AvSetMmThreadCharacteristicsW","features":[3,39]},{"name":"AvSetMmThreadPriority","features":[3,39]},{"name":"BELOW_NORMAL_PRIORITY_CLASS","features":[39]},{"name":"CONDITION_VARIABLE","features":[39]},{"name":"CONDITION_VARIABLE_INIT","features":[39]},{"name":"CONDITION_VARIABLE_LOCKMODE_SHARED","features":[39]},{"name":"CREATE_BREAKAWAY_FROM_JOB","features":[39]},{"name":"CREATE_DEFAULT_ERROR_MODE","features":[39]},{"name":"CREATE_EVENT","features":[39]},{"name":"CREATE_EVENT_INITIAL_SET","features":[39]},{"name":"CREATE_EVENT_MANUAL_RESET","features":[39]},{"name":"CREATE_FORCEDOS","features":[39]},{"name":"CREATE_IGNORE_SYSTEM_DEFAULT","features":[39]},{"name":"CREATE_MUTEX_INITIAL_OWNER","features":[39]},{"name":"CREATE_NEW_CONSOLE","features":[39]},{"name":"CREATE_NEW_PROCESS_GROUP","features":[39]},{"name":"CREATE_NO_WINDOW","features":[39]},{"name":"CREATE_PRESERVE_CODE_AUTHZ_LEVEL","features":[39]},{"name":"CREATE_PROCESS_LOGON_FLAGS","features":[39]},{"name":"CREATE_PROTECTED_PROCESS","features":[39]},{"name":"CREATE_SECURE_PROCESS","features":[39]},{"name":"CREATE_SEPARATE_WOW_VDM","features":[39]},{"name":"CREATE_SHARED_WOW_VDM","features":[39]},{"name":"CREATE_SUSPENDED","features":[39]},{"name":"CREATE_UNICODE_ENVIRONMENT","features":[39]},{"name":"CREATE_WAITABLE_TIMER_HIGH_RESOLUTION","features":[39]},{"name":"CREATE_WAITABLE_TIMER_MANUAL_RESET","features":[39]},{"name":"CRITICAL_SECTION","features":[3,9,39]},{"name":"CRITICAL_SECTION_DEBUG","features":[3,9,39]},{"name":"CallbackMayRunLong","features":[3,39]},{"name":"CancelThreadpoolIo","features":[39]},{"name":"CancelTimerQueueTimer","features":[3,39]},{"name":"CancelWaitableTimer","features":[3,39]},{"name":"ChangeTimerQueueTimer","features":[3,39]},{"name":"ClosePrivateNamespace","features":[3,39]},{"name":"CloseThreadpool","features":[39]},{"name":"CloseThreadpoolCleanupGroup","features":[39]},{"name":"CloseThreadpoolCleanupGroupMembers","features":[3,39]},{"name":"CloseThreadpoolIo","features":[39]},{"name":"CloseThreadpoolTimer","features":[39]},{"name":"CloseThreadpoolWait","features":[39]},{"name":"CloseThreadpoolWork","features":[39]},{"name":"ConvertFiberToThread","features":[3,39]},{"name":"ConvertThreadToFiber","features":[39]},{"name":"ConvertThreadToFiberEx","features":[39]},{"name":"CreateBoundaryDescriptorA","features":[3,39]},{"name":"CreateBoundaryDescriptorW","features":[3,39]},{"name":"CreateEventA","features":[3,6,39]},{"name":"CreateEventExA","features":[3,6,39]},{"name":"CreateEventExW","features":[3,6,39]},{"name":"CreateEventW","features":[3,6,39]},{"name":"CreateFiber","features":[39]},{"name":"CreateFiberEx","features":[39]},{"name":"CreateMutexA","features":[3,6,39]},{"name":"CreateMutexExA","features":[3,6,39]},{"name":"CreateMutexExW","features":[3,6,39]},{"name":"CreateMutexW","features":[3,6,39]},{"name":"CreatePrivateNamespaceA","features":[3,6,39]},{"name":"CreatePrivateNamespaceW","features":[3,6,39]},{"name":"CreateProcessA","features":[3,6,39]},{"name":"CreateProcessAsUserA","features":[3,6,39]},{"name":"CreateProcessAsUserW","features":[3,6,39]},{"name":"CreateProcessW","features":[3,6,39]},{"name":"CreateProcessWithLogonW","features":[3,39]},{"name":"CreateProcessWithTokenW","features":[3,39]},{"name":"CreateRemoteThread","features":[3,6,39]},{"name":"CreateRemoteThreadEx","features":[3,6,39]},{"name":"CreateSemaphoreA","features":[3,6,39]},{"name":"CreateSemaphoreExA","features":[3,6,39]},{"name":"CreateSemaphoreExW","features":[3,6,39]},{"name":"CreateSemaphoreW","features":[3,6,39]},{"name":"CreateThread","features":[3,6,39]},{"name":"CreateThreadpool","features":[39]},{"name":"CreateThreadpoolCleanupGroup","features":[39]},{"name":"CreateThreadpoolIo","features":[3,39]},{"name":"CreateThreadpoolTimer","features":[39]},{"name":"CreateThreadpoolWait","features":[39]},{"name":"CreateThreadpoolWork","features":[39]},{"name":"CreateTimerQueue","features":[3,39]},{"name":"CreateTimerQueueTimer","features":[3,39]},{"name":"CreateUmsCompletionList","features":[3,39]},{"name":"CreateUmsThreadContext","features":[3,39]},{"name":"CreateWaitableTimerA","features":[3,6,39]},{"name":"CreateWaitableTimerExA","features":[3,6,39]},{"name":"CreateWaitableTimerExW","features":[3,6,39]},{"name":"CreateWaitableTimerW","features":[3,6,39]},{"name":"DEBUG_ONLY_THIS_PROCESS","features":[39]},{"name":"DEBUG_PROCESS","features":[39]},{"name":"DETACHED_PROCESS","features":[39]},{"name":"DeleteBoundaryDescriptor","features":[3,39]},{"name":"DeleteCriticalSection","features":[3,9,39]},{"name":"DeleteFiber","features":[39]},{"name":"DeleteProcThreadAttributeList","features":[39]},{"name":"DeleteSynchronizationBarrier","features":[3,39]},{"name":"DeleteTimerQueue","features":[3,39]},{"name":"DeleteTimerQueueEx","features":[3,39]},{"name":"DeleteTimerQueueTimer","features":[3,39]},{"name":"DeleteUmsCompletionList","features":[3,39]},{"name":"DeleteUmsThreadContext","features":[3,39]},{"name":"DequeueUmsCompletionListItems","features":[3,39]},{"name":"DisassociateCurrentThreadFromCallback","features":[39]},{"name":"EVENT_ALL_ACCESS","features":[39]},{"name":"EVENT_MODIFY_STATE","features":[39]},{"name":"EXTENDED_STARTUPINFO_PRESENT","features":[39]},{"name":"EnterCriticalSection","features":[3,9,39]},{"name":"EnterSynchronizationBarrier","features":[3,39]},{"name":"EnterUmsSchedulingMode","features":[3,38,39]},{"name":"ExecuteUmsThread","features":[3,39]},{"name":"ExitProcess","features":[39]},{"name":"ExitThread","features":[39]},{"name":"FLS_OUT_OF_INDEXES","features":[39]},{"name":"FlsAlloc","features":[39]},{"name":"FlsFree","features":[3,39]},{"name":"FlsGetValue","features":[39]},{"name":"FlsSetValue","features":[3,39]},{"name":"FlushProcessWriteBuffers","features":[39]},{"name":"FreeLibraryWhenCallbackReturns","features":[3,39]},{"name":"GET_GUI_RESOURCES_FLAGS","features":[39]},{"name":"GR_GDIOBJECTS","features":[39]},{"name":"GR_GDIOBJECTS_PEAK","features":[39]},{"name":"GR_GLOBAL","features":[39]},{"name":"GR_USEROBJECTS","features":[39]},{"name":"GR_USEROBJECTS_PEAK","features":[39]},{"name":"GetActiveProcessorCount","features":[39]},{"name":"GetActiveProcessorGroupCount","features":[39]},{"name":"GetCurrentProcess","features":[3,39]},{"name":"GetCurrentProcessId","features":[39]},{"name":"GetCurrentProcessToken","features":[3,39]},{"name":"GetCurrentProcessorNumber","features":[39]},{"name":"GetCurrentProcessorNumberEx","features":[9,39]},{"name":"GetCurrentThread","features":[3,39]},{"name":"GetCurrentThreadEffectiveToken","features":[3,39]},{"name":"GetCurrentThreadId","features":[39]},{"name":"GetCurrentThreadStackLimits","features":[39]},{"name":"GetCurrentThreadToken","features":[3,39]},{"name":"GetCurrentUmsThread","features":[39]},{"name":"GetExitCodeProcess","features":[3,39]},{"name":"GetExitCodeThread","features":[3,39]},{"name":"GetGuiResources","features":[3,39]},{"name":"GetMachineTypeAttributes","features":[39]},{"name":"GetMaximumProcessorCount","features":[39]},{"name":"GetMaximumProcessorGroupCount","features":[39]},{"name":"GetNextUmsListItem","features":[39]},{"name":"GetNumaAvailableMemoryNode","features":[3,39]},{"name":"GetNumaAvailableMemoryNodeEx","features":[3,39]},{"name":"GetNumaHighestNodeNumber","features":[3,39]},{"name":"GetNumaNodeNumberFromHandle","features":[3,39]},{"name":"GetNumaNodeProcessorMask","features":[3,39]},{"name":"GetNumaNodeProcessorMask2","features":[3,35,39]},{"name":"GetNumaNodeProcessorMaskEx","features":[3,35,39]},{"name":"GetNumaProcessorNode","features":[3,39]},{"name":"GetNumaProcessorNodeEx","features":[3,9,39]},{"name":"GetNumaProximityNode","features":[3,39]},{"name":"GetNumaProximityNodeEx","features":[3,39]},{"name":"GetPriorityClass","features":[3,39]},{"name":"GetProcessAffinityMask","features":[3,39]},{"name":"GetProcessDEPPolicy","features":[3,39]},{"name":"GetProcessDefaultCpuSetMasks","features":[3,35,39]},{"name":"GetProcessDefaultCpuSets","features":[3,39]},{"name":"GetProcessGroupAffinity","features":[3,39]},{"name":"GetProcessHandleCount","features":[3,39]},{"name":"GetProcessHandleFromHwnd","features":[3,39]},{"name":"GetProcessId","features":[3,39]},{"name":"GetProcessIdOfThread","features":[3,39]},{"name":"GetProcessInformation","features":[3,39]},{"name":"GetProcessIoCounters","features":[3,39]},{"name":"GetProcessMitigationPolicy","features":[3,39]},{"name":"GetProcessPriorityBoost","features":[3,39]},{"name":"GetProcessShutdownParameters","features":[3,39]},{"name":"GetProcessTimes","features":[3,39]},{"name":"GetProcessVersion","features":[39]},{"name":"GetProcessWorkingSetSize","features":[3,39]},{"name":"GetStartupInfoA","features":[3,39]},{"name":"GetStartupInfoW","features":[3,39]},{"name":"GetSystemTimes","features":[3,39]},{"name":"GetThreadDescription","features":[3,39]},{"name":"GetThreadGroupAffinity","features":[3,35,39]},{"name":"GetThreadIOPendingFlag","features":[3,39]},{"name":"GetThreadId","features":[3,39]},{"name":"GetThreadIdealProcessorEx","features":[3,9,39]},{"name":"GetThreadInformation","features":[3,39]},{"name":"GetThreadPriority","features":[3,39]},{"name":"GetThreadPriorityBoost","features":[3,39]},{"name":"GetThreadSelectedCpuSetMasks","features":[3,35,39]},{"name":"GetThreadSelectedCpuSets","features":[3,39]},{"name":"GetThreadTimes","features":[3,39]},{"name":"GetUmsCompletionListEvent","features":[3,39]},{"name":"GetUmsSystemThreadInformation","features":[3,39]},{"name":"HIGH_PRIORITY_CLASS","features":[39]},{"name":"IDLE_PRIORITY_CLASS","features":[39]},{"name":"INFINITE","features":[39]},{"name":"INHERIT_CALLER_PRIORITY","features":[39]},{"name":"INHERIT_PARENT_AFFINITY","features":[39]},{"name":"INIT_ONCE","features":[39]},{"name":"INIT_ONCE_ASYNC","features":[39]},{"name":"INIT_ONCE_CHECK_ONLY","features":[39]},{"name":"INIT_ONCE_CTX_RESERVED_BITS","features":[39]},{"name":"INIT_ONCE_INIT_FAILED","features":[39]},{"name":"INIT_ONCE_STATIC_INIT","features":[39]},{"name":"IO_COUNTERS","features":[39]},{"name":"IRtwqAsyncCallback","features":[39]},{"name":"IRtwqAsyncResult","features":[39]},{"name":"IRtwqPlatformEvents","features":[39]},{"name":"InitOnceBeginInitialize","features":[3,39]},{"name":"InitOnceComplete","features":[3,39]},{"name":"InitOnceExecuteOnce","features":[3,39]},{"name":"InitOnceInitialize","features":[39]},{"name":"InitializeConditionVariable","features":[39]},{"name":"InitializeCriticalSection","features":[3,9,39]},{"name":"InitializeCriticalSectionAndSpinCount","features":[3,9,39]},{"name":"InitializeCriticalSectionEx","features":[3,9,39]},{"name":"InitializeProcThreadAttributeList","features":[3,39]},{"name":"InitializeSListHead","features":[9,39]},{"name":"InitializeSRWLock","features":[39]},{"name":"InitializeSynchronizationBarrier","features":[3,39]},{"name":"InterlockedFlushSList","features":[9,39]},{"name":"InterlockedPopEntrySList","features":[9,39]},{"name":"InterlockedPushEntrySList","features":[9,39]},{"name":"InterlockedPushListSListEx","features":[9,39]},{"name":"IsImmersiveProcess","features":[3,39]},{"name":"IsProcessCritical","features":[3,39]},{"name":"IsProcessorFeaturePresent","features":[3,39]},{"name":"IsThreadAFiber","features":[3,39]},{"name":"IsThreadpoolTimerSet","features":[3,39]},{"name":"IsWow64Process","features":[3,39]},{"name":"IsWow64Process2","features":[3,35,39]},{"name":"KernelEnabled","features":[39]},{"name":"LOGON_NETCREDENTIALS_ONLY","features":[39]},{"name":"LOGON_WITH_PROFILE","features":[39]},{"name":"LPFIBER_START_ROUTINE","features":[39]},{"name":"LPPROC_THREAD_ATTRIBUTE_LIST","features":[39]},{"name":"LPTHREAD_START_ROUTINE","features":[39]},{"name":"LeaveCriticalSection","features":[3,9,39]},{"name":"LeaveCriticalSectionWhenCallbackReturns","features":[3,9,39]},{"name":"MACHINE_ATTRIBUTES","features":[39]},{"name":"MEMORY_PRIORITY","features":[39]},{"name":"MEMORY_PRIORITY_BELOW_NORMAL","features":[39]},{"name":"MEMORY_PRIORITY_INFORMATION","features":[39]},{"name":"MEMORY_PRIORITY_LOW","features":[39]},{"name":"MEMORY_PRIORITY_MEDIUM","features":[39]},{"name":"MEMORY_PRIORITY_NORMAL","features":[39]},{"name":"MEMORY_PRIORITY_VERY_LOW","features":[39]},{"name":"MUTEX_ALL_ACCESS","features":[39]},{"name":"MUTEX_MODIFY_STATE","features":[39]},{"name":"MaxProcessMitigationPolicy","features":[39]},{"name":"NORMAL_PRIORITY_CLASS","features":[39]},{"name":"OVERRIDE_PREFETCH_PARAMETER","features":[39]},{"name":"OpenEventA","features":[3,39]},{"name":"OpenEventW","features":[3,39]},{"name":"OpenMutexW","features":[3,39]},{"name":"OpenPrivateNamespaceA","features":[3,39]},{"name":"OpenPrivateNamespaceW","features":[3,39]},{"name":"OpenProcess","features":[3,39]},{"name":"OpenProcessToken","features":[3,6,39]},{"name":"OpenSemaphoreW","features":[3,39]},{"name":"OpenThread","features":[3,39]},{"name":"OpenThreadToken","features":[3,6,39]},{"name":"OpenWaitableTimerA","features":[3,39]},{"name":"OpenWaitableTimerW","features":[3,39]},{"name":"PEB","features":[3,9,39]},{"name":"PEB_LDR_DATA","features":[9,39]},{"name":"PFLS_CALLBACK_FUNCTION","features":[39]},{"name":"PF_3DNOW_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ALPHA_BYTE_INSTRUCTIONS","features":[39]},{"name":"PF_ARM_64BIT_LOADSTORE_ATOMIC","features":[39]},{"name":"PF_ARM_DIVIDE_INSTRUCTION_AVAILABLE","features":[39]},{"name":"PF_ARM_EXTERNAL_CACHE_AVAILABLE","features":[39]},{"name":"PF_ARM_FMAC_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_NEON_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_V81_ATOMIC_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_V83_LRCPC_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_V8_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_ARM_VFP_32_REGISTERS_AVAILABLE","features":[39]},{"name":"PF_AVX2_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_AVX512F_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_AVX_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_CHANNELS_ENABLED","features":[39]},{"name":"PF_COMPARE64_EXCHANGE128","features":[39]},{"name":"PF_COMPARE_EXCHANGE128","features":[39]},{"name":"PF_COMPARE_EXCHANGE_DOUBLE","features":[39]},{"name":"PF_ERMS_AVAILABLE","features":[39]},{"name":"PF_FASTFAIL_AVAILABLE","features":[39]},{"name":"PF_FLOATING_POINT_EMULATED","features":[39]},{"name":"PF_FLOATING_POINT_PRECISION_ERRATA","features":[39]},{"name":"PF_MMX_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_MONITORX_INSTRUCTION_AVAILABLE","features":[39]},{"name":"PF_NX_ENABLED","features":[39]},{"name":"PF_PAE_ENABLED","features":[39]},{"name":"PF_PPC_MOVEMEM_64BIT_OK","features":[39]},{"name":"PF_RDPID_INSTRUCTION_AVAILABLE","features":[39]},{"name":"PF_RDRAND_INSTRUCTION_AVAILABLE","features":[39]},{"name":"PF_RDTSCP_INSTRUCTION_AVAILABLE","features":[39]},{"name":"PF_RDTSC_INSTRUCTION_AVAILABLE","features":[39]},{"name":"PF_RDWRFSGSBASE_AVAILABLE","features":[39]},{"name":"PF_SECOND_LEVEL_ADDRESS_TRANSLATION","features":[39]},{"name":"PF_SSE3_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_SSE4_1_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_SSE4_2_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_SSE_DAZ_MODE_AVAILABLE","features":[39]},{"name":"PF_SSSE3_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_VIRT_FIRMWARE_ENABLED","features":[39]},{"name":"PF_XMMI64_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_XMMI_INSTRUCTIONS_AVAILABLE","features":[39]},{"name":"PF_XSAVE_ENABLED","features":[39]},{"name":"PINIT_ONCE_FN","features":[3,39]},{"name":"PMETypeFailFastOnCommitFailure","features":[39]},{"name":"PMETypeMax","features":[39]},{"name":"PME_CURRENT_VERSION","features":[39]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_DISABLE","features":[39]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_ENABLE","features":[39]},{"name":"POWER_REQUEST_CONTEXT_DETAILED_STRING","features":[39]},{"name":"POWER_REQUEST_CONTEXT_FLAGS","features":[39]},{"name":"POWER_REQUEST_CONTEXT_SIMPLE_STRING","features":[39]},{"name":"PPS_POST_PROCESS_INIT_ROUTINE","features":[39]},{"name":"PRIVATE_NAMESPACE_FLAG_DESTROY","features":[39]},{"name":"PROCESSOR_FEATURE_ID","features":[39]},{"name":"PROCESS_ACCESS_RIGHTS","features":[39]},{"name":"PROCESS_AFFINITY_AUTO_UPDATE_FLAGS","features":[39]},{"name":"PROCESS_AFFINITY_DISABLE_AUTO_UPDATE","features":[39]},{"name":"PROCESS_AFFINITY_ENABLE_AUTO_UPDATE","features":[39]},{"name":"PROCESS_ALL_ACCESS","features":[39]},{"name":"PROCESS_BASIC_INFORMATION","features":[3,9,39]},{"name":"PROCESS_CREATE_PROCESS","features":[39]},{"name":"PROCESS_CREATE_THREAD","features":[39]},{"name":"PROCESS_CREATION_FLAGS","features":[39]},{"name":"PROCESS_DELETE","features":[39]},{"name":"PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION","features":[39]},{"name":"PROCESS_DEP_ENABLE","features":[39]},{"name":"PROCESS_DEP_FLAGS","features":[39]},{"name":"PROCESS_DEP_NONE","features":[39]},{"name":"PROCESS_DUP_HANDLE","features":[39]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGET","features":[39]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGETS_INFORMATION","features":[39]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGE","features":[39]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGES_INFORMATION","features":[39]},{"name":"PROCESS_INFORMATION","features":[3,39]},{"name":"PROCESS_INFORMATION_CLASS","features":[39]},{"name":"PROCESS_LEAP_SECOND_INFO","features":[39]},{"name":"PROCESS_LEAP_SECOND_INFO_FLAG_ENABLE_SIXTY_SECOND","features":[39]},{"name":"PROCESS_LEAP_SECOND_INFO_VALID_FLAGS","features":[39]},{"name":"PROCESS_MACHINE_INFORMATION","features":[35,39]},{"name":"PROCESS_MEMORY_EXHAUSTION_INFO","features":[39]},{"name":"PROCESS_MEMORY_EXHAUSTION_TYPE","features":[39]},{"name":"PROCESS_MITIGATION_POLICY","features":[39]},{"name":"PROCESS_MODE_BACKGROUND_BEGIN","features":[39]},{"name":"PROCESS_MODE_BACKGROUND_END","features":[39]},{"name":"PROCESS_NAME_FORMAT","features":[39]},{"name":"PROCESS_NAME_NATIVE","features":[39]},{"name":"PROCESS_NAME_WIN32","features":[39]},{"name":"PROCESS_POWER_THROTTLING_CURRENT_VERSION","features":[39]},{"name":"PROCESS_POWER_THROTTLING_EXECUTION_SPEED","features":[39]},{"name":"PROCESS_POWER_THROTTLING_IGNORE_TIMER_RESOLUTION","features":[39]},{"name":"PROCESS_POWER_THROTTLING_STATE","features":[39]},{"name":"PROCESS_PROTECTION_LEVEL","features":[39]},{"name":"PROCESS_PROTECTION_LEVEL_INFORMATION","features":[39]},{"name":"PROCESS_QUERY_INFORMATION","features":[39]},{"name":"PROCESS_QUERY_LIMITED_INFORMATION","features":[39]},{"name":"PROCESS_READ_CONTROL","features":[39]},{"name":"PROCESS_SET_INFORMATION","features":[39]},{"name":"PROCESS_SET_LIMITED_INFORMATION","features":[39]},{"name":"PROCESS_SET_QUOTA","features":[39]},{"name":"PROCESS_SET_SESSIONID","features":[39]},{"name":"PROCESS_STANDARD_RIGHTS_REQUIRED","features":[39]},{"name":"PROCESS_SUSPEND_RESUME","features":[39]},{"name":"PROCESS_SYNCHRONIZE","features":[39]},{"name":"PROCESS_TERMINATE","features":[39]},{"name":"PROCESS_VM_OPERATION","features":[39]},{"name":"PROCESS_VM_READ","features":[39]},{"name":"PROCESS_VM_WRITE","features":[39]},{"name":"PROCESS_WRITE_DAC","features":[39]},{"name":"PROCESS_WRITE_OWNER","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_ALL_APPLICATION_PACKAGES_POLICY","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_CHILD_PROCESS_POLICY","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_COMPONENT_FILTER","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_DESKTOP_APP_POLICY","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_ENABLE_OPTIONAL_XSTATE_FEATURES","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_GROUP_AFFINITY","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_HANDLE_LIST","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_IDEAL_PROCESSOR","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_JOB_LIST","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_MACHINE_TYPE","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_AUDIT_POLICY","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_POLICY","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_NUM","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_PARENT_PROCESS","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_PREFERRED_NODE","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_PROTECTION_LEVEL","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_REPLACE_VALUE","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_SECURITY_CAPABILITIES","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_UMS_THREAD","features":[39]},{"name":"PROC_THREAD_ATTRIBUTE_WIN32K_FILTER","features":[39]},{"name":"PROFILE_KERNEL","features":[39]},{"name":"PROFILE_SERVER","features":[39]},{"name":"PROFILE_USER","features":[39]},{"name":"PROTECTION_LEVEL_ANTIMALWARE_LIGHT","features":[39]},{"name":"PROTECTION_LEVEL_AUTHENTICODE","features":[39]},{"name":"PROTECTION_LEVEL_CODEGEN_LIGHT","features":[39]},{"name":"PROTECTION_LEVEL_LSA_LIGHT","features":[39]},{"name":"PROTECTION_LEVEL_NONE","features":[39]},{"name":"PROTECTION_LEVEL_PPL_APP","features":[39]},{"name":"PROTECTION_LEVEL_WINDOWS","features":[39]},{"name":"PROTECTION_LEVEL_WINDOWS_LIGHT","features":[39]},{"name":"PROTECTION_LEVEL_WINTCB","features":[39]},{"name":"PROTECTION_LEVEL_WINTCB_LIGHT","features":[39]},{"name":"PRTL_UMS_SCHEDULER_ENTRY_POINT","features":[38,39]},{"name":"PTIMERAPCROUTINE","features":[39]},{"name":"PTP_CALLBACK_INSTANCE","features":[39]},{"name":"PTP_CLEANUP_GROUP","features":[39]},{"name":"PTP_CLEANUP_GROUP_CANCEL_CALLBACK","features":[39]},{"name":"PTP_IO","features":[39]},{"name":"PTP_POOL","features":[39]},{"name":"PTP_SIMPLE_CALLBACK","features":[39]},{"name":"PTP_TIMER","features":[39]},{"name":"PTP_TIMER_CALLBACK","features":[39]},{"name":"PTP_WAIT","features":[39]},{"name":"PTP_WAIT_CALLBACK","features":[39]},{"name":"PTP_WIN32_IO_CALLBACK","features":[39]},{"name":"PTP_WORK","features":[39]},{"name":"PTP_WORK_CALLBACK","features":[39]},{"name":"ProcThreadAttributeAllApplicationPackagesPolicy","features":[39]},{"name":"ProcThreadAttributeChildProcessPolicy","features":[39]},{"name":"ProcThreadAttributeComponentFilter","features":[39]},{"name":"ProcThreadAttributeDesktopAppPolicy","features":[39]},{"name":"ProcThreadAttributeEnableOptionalXStateFeatures","features":[39]},{"name":"ProcThreadAttributeGroupAffinity","features":[39]},{"name":"ProcThreadAttributeHandleList","features":[39]},{"name":"ProcThreadAttributeIdealProcessor","features":[39]},{"name":"ProcThreadAttributeJobList","features":[39]},{"name":"ProcThreadAttributeMachineType","features":[39]},{"name":"ProcThreadAttributeMitigationAuditPolicy","features":[39]},{"name":"ProcThreadAttributeMitigationPolicy","features":[39]},{"name":"ProcThreadAttributeParentProcess","features":[39]},{"name":"ProcThreadAttributePreferredNode","features":[39]},{"name":"ProcThreadAttributeProtectionLevel","features":[39]},{"name":"ProcThreadAttributePseudoConsole","features":[39]},{"name":"ProcThreadAttributeSafeOpenPromptOriginClaim","features":[39]},{"name":"ProcThreadAttributeSecurityCapabilities","features":[39]},{"name":"ProcThreadAttributeTrustedApp","features":[39]},{"name":"ProcThreadAttributeUmsThread","features":[39]},{"name":"ProcThreadAttributeWin32kFilter","features":[39]},{"name":"ProcessASLRPolicy","features":[39]},{"name":"ProcessActivationContextTrustPolicy","features":[39]},{"name":"ProcessAppMemoryInfo","features":[39]},{"name":"ProcessChildProcessPolicy","features":[39]},{"name":"ProcessControlFlowGuardPolicy","features":[39]},{"name":"ProcessDEPPolicy","features":[39]},{"name":"ProcessDynamicCodePolicy","features":[39]},{"name":"ProcessExtensionPointDisablePolicy","features":[39]},{"name":"ProcessFontDisablePolicy","features":[39]},{"name":"ProcessImageLoadPolicy","features":[39]},{"name":"ProcessInPrivateInfo","features":[39]},{"name":"ProcessInformationClassMax","features":[39]},{"name":"ProcessLeapSecondInfo","features":[39]},{"name":"ProcessMachineTypeInfo","features":[39]},{"name":"ProcessMaxOverridePrefetchParameter","features":[39]},{"name":"ProcessMemoryExhaustionInfo","features":[39]},{"name":"ProcessMemoryPriority","features":[39]},{"name":"ProcessMitigationOptionsMask","features":[39]},{"name":"ProcessOverrideSubsequentPrefetchParameter","features":[39]},{"name":"ProcessPayloadRestrictionPolicy","features":[39]},{"name":"ProcessPowerThrottling","features":[39]},{"name":"ProcessProtectionLevelInfo","features":[39]},{"name":"ProcessRedirectionTrustPolicy","features":[39]},{"name":"ProcessReservedValue1","features":[39]},{"name":"ProcessSEHOPPolicy","features":[39]},{"name":"ProcessSideChannelIsolationPolicy","features":[39]},{"name":"ProcessSignaturePolicy","features":[39]},{"name":"ProcessStrictHandleCheckPolicy","features":[39]},{"name":"ProcessSystemCallDisablePolicy","features":[39]},{"name":"ProcessSystemCallFilterPolicy","features":[39]},{"name":"ProcessTelemetryCoverageInfo","features":[39]},{"name":"ProcessUserPointerAuthPolicy","features":[39]},{"name":"ProcessUserShadowStackPolicy","features":[39]},{"name":"PulseEvent","features":[3,39]},{"name":"QUEUE_USER_APC_CALLBACK_DATA_CONTEXT","features":[39]},{"name":"QUEUE_USER_APC_FLAGS","features":[39]},{"name":"QUEUE_USER_APC_FLAGS_NONE","features":[39]},{"name":"QUEUE_USER_APC_FLAGS_SPECIAL_USER_APC","features":[39]},{"name":"QueryDepthSList","features":[9,39]},{"name":"QueryFullProcessImageNameA","features":[3,39]},{"name":"QueryFullProcessImageNameW","features":[3,39]},{"name":"QueryProcessAffinityUpdateMode","features":[3,39]},{"name":"QueryProtectedPolicy","features":[3,39]},{"name":"QueryThreadpoolStackInformation","features":[3,39]},{"name":"QueryUmsThreadInformation","features":[3,39]},{"name":"QueueUserAPC","features":[3,39]},{"name":"QueueUserAPC2","features":[3,39]},{"name":"QueueUserWorkItem","features":[3,39]},{"name":"REALTIME_PRIORITY_CLASS","features":[39]},{"name":"REASON_CONTEXT","features":[3,39]},{"name":"RTL_CRITICAL_SECTION_ALL_FLAG_BITS","features":[39]},{"name":"RTL_CRITICAL_SECTION_DEBUG_FLAG_STATIC_INIT","features":[39]},{"name":"RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN","features":[39]},{"name":"RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO","features":[39]},{"name":"RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO","features":[39]},{"name":"RTL_CRITICAL_SECTION_FLAG_RESOURCE_TYPE","features":[39]},{"name":"RTL_CRITICAL_SECTION_FLAG_STATIC_INIT","features":[39]},{"name":"RTL_USER_PROCESS_PARAMETERS","features":[3,39]},{"name":"RTWQASYNCRESULT","features":[39]},{"name":"RTWQPERIODICCALLBACK","features":[39]},{"name":"RTWQ_MULTITHREADED_WORKQUEUE","features":[39]},{"name":"RTWQ_STANDARD_WORKQUEUE","features":[39]},{"name":"RTWQ_WINDOW_WORKQUEUE","features":[39]},{"name":"RTWQ_WORKQUEUE_TYPE","features":[39]},{"name":"RegisterWaitForSingleObject","features":[3,39]},{"name":"ReleaseMutex","features":[3,39]},{"name":"ReleaseMutexWhenCallbackReturns","features":[3,39]},{"name":"ReleaseSRWLockExclusive","features":[39]},{"name":"ReleaseSRWLockShared","features":[39]},{"name":"ReleaseSemaphore","features":[3,39]},{"name":"ReleaseSemaphoreWhenCallbackReturns","features":[3,39]},{"name":"ResetEvent","features":[3,39]},{"name":"ResumeThread","features":[3,39]},{"name":"RtwqAddPeriodicCallback","features":[39]},{"name":"RtwqAllocateSerialWorkQueue","features":[39]},{"name":"RtwqAllocateWorkQueue","features":[39]},{"name":"RtwqBeginRegisterWorkQueueWithMMCSS","features":[39]},{"name":"RtwqBeginUnregisterWorkQueueWithMMCSS","features":[39]},{"name":"RtwqCancelDeadline","features":[3,39]},{"name":"RtwqCancelWorkItem","features":[39]},{"name":"RtwqCreateAsyncResult","features":[39]},{"name":"RtwqEndRegisterWorkQueueWithMMCSS","features":[39]},{"name":"RtwqGetWorkQueueMMCSSClass","features":[39]},{"name":"RtwqGetWorkQueueMMCSSPriority","features":[39]},{"name":"RtwqGetWorkQueueMMCSSTaskId","features":[39]},{"name":"RtwqInvokeCallback","features":[39]},{"name":"RtwqJoinWorkQueue","features":[3,39]},{"name":"RtwqLockPlatform","features":[39]},{"name":"RtwqLockSharedWorkQueue","features":[39]},{"name":"RtwqLockWorkQueue","features":[39]},{"name":"RtwqPutWaitingWorkItem","features":[3,39]},{"name":"RtwqPutWorkItem","features":[39]},{"name":"RtwqRegisterPlatformEvents","features":[39]},{"name":"RtwqRegisterPlatformWithMMCSS","features":[39]},{"name":"RtwqRemovePeriodicCallback","features":[39]},{"name":"RtwqScheduleWorkItem","features":[39]},{"name":"RtwqSetDeadline","features":[3,39]},{"name":"RtwqSetDeadline2","features":[3,39]},{"name":"RtwqSetLongRunning","features":[3,39]},{"name":"RtwqShutdown","features":[39]},{"name":"RtwqStartup","features":[39]},{"name":"RtwqUnjoinWorkQueue","features":[3,39]},{"name":"RtwqUnlockPlatform","features":[39]},{"name":"RtwqUnlockWorkQueue","features":[39]},{"name":"RtwqUnregisterPlatformEvents","features":[39]},{"name":"RtwqUnregisterPlatformFromMMCSS","features":[39]},{"name":"SEMAPHORE_ALL_ACCESS","features":[39]},{"name":"SEMAPHORE_MODIFY_STATE","features":[39]},{"name":"SRWLOCK","features":[39]},{"name":"SRWLOCK_INIT","features":[39]},{"name":"STACK_SIZE_PARAM_IS_A_RESERVATION","features":[39]},{"name":"STARTF_FORCEOFFFEEDBACK","features":[39]},{"name":"STARTF_FORCEONFEEDBACK","features":[39]},{"name":"STARTF_PREVENTPINNING","features":[39]},{"name":"STARTF_RUNFULLSCREEN","features":[39]},{"name":"STARTF_TITLEISAPPID","features":[39]},{"name":"STARTF_TITLEISLINKNAME","features":[39]},{"name":"STARTF_UNTRUSTEDSOURCE","features":[39]},{"name":"STARTF_USECOUNTCHARS","features":[39]},{"name":"STARTF_USEFILLATTRIBUTE","features":[39]},{"name":"STARTF_USEHOTKEY","features":[39]},{"name":"STARTF_USEPOSITION","features":[39]},{"name":"STARTF_USESHOWWINDOW","features":[39]},{"name":"STARTF_USESIZE","features":[39]},{"name":"STARTF_USESTDHANDLES","features":[39]},{"name":"STARTUPINFOA","features":[3,39]},{"name":"STARTUPINFOEXA","features":[3,39]},{"name":"STARTUPINFOEXW","features":[3,39]},{"name":"STARTUPINFOW","features":[3,39]},{"name":"STARTUPINFOW_FLAGS","features":[39]},{"name":"SYNCHRONIZATION_ACCESS_RIGHTS","features":[39]},{"name":"SYNCHRONIZATION_BARRIER","features":[39]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_BLOCK_ONLY","features":[39]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_NO_DELETE","features":[39]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_SPIN_ONLY","features":[39]},{"name":"SYNCHRONIZATION_DELETE","features":[39]},{"name":"SYNCHRONIZATION_READ_CONTROL","features":[39]},{"name":"SYNCHRONIZATION_SYNCHRONIZE","features":[39]},{"name":"SYNCHRONIZATION_WRITE_DAC","features":[39]},{"name":"SYNCHRONIZATION_WRITE_OWNER","features":[39]},{"name":"SetCriticalSectionSpinCount","features":[3,9,39]},{"name":"SetEvent","features":[3,39]},{"name":"SetEventWhenCallbackReturns","features":[3,39]},{"name":"SetPriorityClass","features":[3,39]},{"name":"SetProcessAffinityMask","features":[3,39]},{"name":"SetProcessAffinityUpdateMode","features":[3,39]},{"name":"SetProcessDEPPolicy","features":[3,39]},{"name":"SetProcessDefaultCpuSetMasks","features":[3,35,39]},{"name":"SetProcessDefaultCpuSets","features":[3,39]},{"name":"SetProcessDynamicEHContinuationTargets","features":[3,39]},{"name":"SetProcessDynamicEnforcedCetCompatibleRanges","features":[3,39]},{"name":"SetProcessInformation","features":[3,39]},{"name":"SetProcessMitigationPolicy","features":[3,39]},{"name":"SetProcessPriorityBoost","features":[3,39]},{"name":"SetProcessRestrictionExemption","features":[3,39]},{"name":"SetProcessShutdownParameters","features":[3,39]},{"name":"SetProcessWorkingSetSize","features":[3,39]},{"name":"SetProtectedPolicy","features":[3,39]},{"name":"SetThreadAffinityMask","features":[3,39]},{"name":"SetThreadDescription","features":[3,39]},{"name":"SetThreadGroupAffinity","features":[3,35,39]},{"name":"SetThreadIdealProcessor","features":[3,39]},{"name":"SetThreadIdealProcessorEx","features":[3,9,39]},{"name":"SetThreadInformation","features":[3,39]},{"name":"SetThreadPriority","features":[3,39]},{"name":"SetThreadPriorityBoost","features":[3,39]},{"name":"SetThreadSelectedCpuSetMasks","features":[3,35,39]},{"name":"SetThreadSelectedCpuSets","features":[3,39]},{"name":"SetThreadStackGuarantee","features":[3,39]},{"name":"SetThreadToken","features":[3,39]},{"name":"SetThreadpoolStackInformation","features":[3,39]},{"name":"SetThreadpoolThreadMaximum","features":[39]},{"name":"SetThreadpoolThreadMinimum","features":[3,39]},{"name":"SetThreadpoolTimer","features":[3,39]},{"name":"SetThreadpoolTimerEx","features":[3,39]},{"name":"SetThreadpoolWait","features":[3,39]},{"name":"SetThreadpoolWaitEx","features":[3,39]},{"name":"SetTimerQueueTimer","features":[3,39]},{"name":"SetUmsThreadInformation","features":[3,39]},{"name":"SetWaitableTimer","features":[3,39]},{"name":"SetWaitableTimerEx","features":[3,39]},{"name":"SignalObjectAndWait","features":[3,39]},{"name":"Sleep","features":[39]},{"name":"SleepConditionVariableCS","features":[3,9,39]},{"name":"SleepConditionVariableSRW","features":[3,39]},{"name":"SleepEx","features":[3,39]},{"name":"StartThreadpoolIo","features":[39]},{"name":"SubmitThreadpoolWork","features":[39]},{"name":"SuspendThread","features":[3,39]},{"name":"SwitchToFiber","features":[39]},{"name":"SwitchToThread","features":[3,39]},{"name":"TEB","features":[3,9,39]},{"name":"THREAD_ACCESS_RIGHTS","features":[39]},{"name":"THREAD_ALL_ACCESS","features":[39]},{"name":"THREAD_CREATE_RUN_IMMEDIATELY","features":[39]},{"name":"THREAD_CREATE_SUSPENDED","features":[39]},{"name":"THREAD_CREATION_FLAGS","features":[39]},{"name":"THREAD_DELETE","features":[39]},{"name":"THREAD_DIRECT_IMPERSONATION","features":[39]},{"name":"THREAD_GET_CONTEXT","features":[39]},{"name":"THREAD_IMPERSONATE","features":[39]},{"name":"THREAD_INFORMATION_CLASS","features":[39]},{"name":"THREAD_MODE_BACKGROUND_BEGIN","features":[39]},{"name":"THREAD_MODE_BACKGROUND_END","features":[39]},{"name":"THREAD_POWER_THROTTLING_CURRENT_VERSION","features":[39]},{"name":"THREAD_POWER_THROTTLING_EXECUTION_SPEED","features":[39]},{"name":"THREAD_POWER_THROTTLING_STATE","features":[39]},{"name":"THREAD_POWER_THROTTLING_VALID_FLAGS","features":[39]},{"name":"THREAD_PRIORITY","features":[39]},{"name":"THREAD_PRIORITY_ABOVE_NORMAL","features":[39]},{"name":"THREAD_PRIORITY_BELOW_NORMAL","features":[39]},{"name":"THREAD_PRIORITY_HIGHEST","features":[39]},{"name":"THREAD_PRIORITY_IDLE","features":[39]},{"name":"THREAD_PRIORITY_LOWEST","features":[39]},{"name":"THREAD_PRIORITY_MIN","features":[39]},{"name":"THREAD_PRIORITY_NORMAL","features":[39]},{"name":"THREAD_PRIORITY_TIME_CRITICAL","features":[39]},{"name":"THREAD_QUERY_INFORMATION","features":[39]},{"name":"THREAD_QUERY_LIMITED_INFORMATION","features":[39]},{"name":"THREAD_READ_CONTROL","features":[39]},{"name":"THREAD_RESUME","features":[39]},{"name":"THREAD_SET_CONTEXT","features":[39]},{"name":"THREAD_SET_INFORMATION","features":[39]},{"name":"THREAD_SET_LIMITED_INFORMATION","features":[39]},{"name":"THREAD_SET_THREAD_TOKEN","features":[39]},{"name":"THREAD_STANDARD_RIGHTS_REQUIRED","features":[39]},{"name":"THREAD_SUSPEND_RESUME","features":[39]},{"name":"THREAD_SYNCHRONIZE","features":[39]},{"name":"THREAD_TERMINATE","features":[39]},{"name":"THREAD_WRITE_DAC","features":[39]},{"name":"THREAD_WRITE_OWNER","features":[39]},{"name":"TIMER_ALL_ACCESS","features":[39]},{"name":"TIMER_MODIFY_STATE","features":[39]},{"name":"TIMER_QUERY_STATE","features":[39]},{"name":"TLS_OUT_OF_INDEXES","features":[39]},{"name":"TP_CALLBACK_ENVIRON_V3","features":[39]},{"name":"TP_CALLBACK_PRIORITY","features":[39]},{"name":"TP_CALLBACK_PRIORITY_COUNT","features":[39]},{"name":"TP_CALLBACK_PRIORITY_HIGH","features":[39]},{"name":"TP_CALLBACK_PRIORITY_INVALID","features":[39]},{"name":"TP_CALLBACK_PRIORITY_LOW","features":[39]},{"name":"TP_CALLBACK_PRIORITY_NORMAL","features":[39]},{"name":"TP_POOL_STACK_INFORMATION","features":[39]},{"name":"TerminateProcess","features":[3,39]},{"name":"TerminateThread","features":[3,39]},{"name":"ThreadAbsoluteCpuPriority","features":[39]},{"name":"ThreadDynamicCodePolicy","features":[39]},{"name":"ThreadInformationClassMax","features":[39]},{"name":"ThreadMemoryPriority","features":[39]},{"name":"ThreadPowerThrottling","features":[39]},{"name":"TlsAlloc","features":[39]},{"name":"TlsFree","features":[3,39]},{"name":"TlsGetValue","features":[39]},{"name":"TlsSetValue","features":[3,39]},{"name":"TryAcquireSRWLockExclusive","features":[3,39]},{"name":"TryAcquireSRWLockShared","features":[3,39]},{"name":"TryEnterCriticalSection","features":[3,9,39]},{"name":"TrySubmitThreadpoolCallback","features":[3,39]},{"name":"UMS_SCHEDULER_STARTUP_INFO","features":[38,39]},{"name":"UMS_SYSTEM_THREAD_INFORMATION","features":[39]},{"name":"UMS_THREAD_INFO_CLASS","features":[39]},{"name":"UmsThreadAffinity","features":[39]},{"name":"UmsThreadInvalidInfoClass","features":[39]},{"name":"UmsThreadIsSuspended","features":[39]},{"name":"UmsThreadIsTerminated","features":[39]},{"name":"UmsThreadMaxInfoClass","features":[39]},{"name":"UmsThreadPriority","features":[39]},{"name":"UmsThreadTeb","features":[39]},{"name":"UmsThreadUserContext","features":[39]},{"name":"UmsThreadYield","features":[3,39]},{"name":"UnregisterWait","features":[3,39]},{"name":"UnregisterWaitEx","features":[3,39]},{"name":"UpdateProcThreadAttribute","features":[3,39]},{"name":"UserEnabled","features":[39]},{"name":"WAITORTIMERCALLBACK","features":[3,39]},{"name":"WORKERCALLBACKFUNC","features":[39]},{"name":"WORKER_THREAD_FLAGS","features":[39]},{"name":"WT_EXECUTEDEFAULT","features":[39]},{"name":"WT_EXECUTEINIOTHREAD","features":[39]},{"name":"WT_EXECUTEINPERSISTENTTHREAD","features":[39]},{"name":"WT_EXECUTEINTIMERTHREAD","features":[39]},{"name":"WT_EXECUTEINWAITTHREAD","features":[39]},{"name":"WT_EXECUTELONGFUNCTION","features":[39]},{"name":"WT_EXECUTEONLYONCE","features":[39]},{"name":"WT_TRANSFER_IMPERSONATION","features":[39]},{"name":"WaitForInputIdle","features":[3,39]},{"name":"WaitForMultipleObjects","features":[3,39]},{"name":"WaitForMultipleObjectsEx","features":[3,39]},{"name":"WaitForSingleObject","features":[3,39]},{"name":"WaitForSingleObjectEx","features":[3,39]},{"name":"WaitForThreadpoolIoCallbacks","features":[3,39]},{"name":"WaitForThreadpoolTimerCallbacks","features":[3,39]},{"name":"WaitForThreadpoolWaitCallbacks","features":[3,39]},{"name":"WaitForThreadpoolWorkCallbacks","features":[3,39]},{"name":"WaitOnAddress","features":[3,39]},{"name":"WakeAllConditionVariable","features":[39]},{"name":"WakeByAddressAll","features":[39]},{"name":"WakeByAddressSingle","features":[39]},{"name":"WakeConditionVariable","features":[39]},{"name":"WinExec","features":[39]},{"name":"Wow64Container","features":[39]},{"name":"Wow64SetThreadDefaultGuestMachine","features":[39]},{"name":"Wow64SuspendThread","features":[3,39]}],"619":[{"name":"DYNAMIC_TIME_ZONE_INFORMATION","features":[3,166]},{"name":"EnumDynamicTimeZoneInformation","features":[3,166]},{"name":"FileTimeToSystemTime","features":[3,166]},{"name":"GetDynamicTimeZoneInformation","features":[3,166]},{"name":"GetDynamicTimeZoneInformationEffectiveYears","features":[3,166]},{"name":"GetTimeZoneInformation","features":[3,166]},{"name":"GetTimeZoneInformationForYear","features":[3,166]},{"name":"LocalFileTimeToLocalSystemTime","features":[3,166]},{"name":"LocalSystemTimeToLocalFileTime","features":[3,166]},{"name":"SetDynamicTimeZoneInformation","features":[3,166]},{"name":"SetTimeZoneInformation","features":[3,166]},{"name":"SystemTimeToFileTime","features":[3,166]},{"name":"SystemTimeToTzSpecificLocalTime","features":[3,166]},{"name":"SystemTimeToTzSpecificLocalTimeEx","features":[3,166]},{"name":"TIME_ZONE_ID_INVALID","features":[166]},{"name":"TIME_ZONE_INFORMATION","features":[3,166]},{"name":"TSF_Authenticated","features":[166]},{"name":"TSF_Hardware","features":[166]},{"name":"TSF_IPv6","features":[166]},{"name":"TSF_SignatureAuthenticated","features":[166]},{"name":"TzSpecificLocalTimeToSystemTime","features":[3,166]},{"name":"TzSpecificLocalTimeToSystemTimeEx","features":[3,166]},{"name":"wszW32TimeRegKeyPolicyTimeProviders","features":[166]},{"name":"wszW32TimeRegKeyTimeProviders","features":[166]},{"name":"wszW32TimeRegValueDllName","features":[166]},{"name":"wszW32TimeRegValueEnabled","features":[166]},{"name":"wszW32TimeRegValueInputProvider","features":[166]},{"name":"wszW32TimeRegValueMetaDataProvider","features":[166]}],"620":[{"name":"GetDeviceID","features":[3,206]},{"name":"GetDeviceIDString","features":[3,206]},{"name":"TBS_COMMAND_LOCALITY","features":[206]},{"name":"TBS_COMMAND_LOCALITY_FOUR","features":[206]},{"name":"TBS_COMMAND_LOCALITY_ONE","features":[206]},{"name":"TBS_COMMAND_LOCALITY_THREE","features":[206]},{"name":"TBS_COMMAND_LOCALITY_TWO","features":[206]},{"name":"TBS_COMMAND_LOCALITY_ZERO","features":[206]},{"name":"TBS_COMMAND_PRIORITY","features":[206]},{"name":"TBS_COMMAND_PRIORITY_HIGH","features":[206]},{"name":"TBS_COMMAND_PRIORITY_LOW","features":[206]},{"name":"TBS_COMMAND_PRIORITY_MAX","features":[206]},{"name":"TBS_COMMAND_PRIORITY_NORMAL","features":[206]},{"name":"TBS_COMMAND_PRIORITY_SYSTEM","features":[206]},{"name":"TBS_CONTEXT_PARAMS","features":[206]},{"name":"TBS_CONTEXT_PARAMS2","features":[206]},{"name":"TBS_CONTEXT_VERSION_ONE","features":[206]},{"name":"TBS_CONTEXT_VERSION_TWO","features":[206]},{"name":"TBS_OWNERAUTH_TYPE_ADMIN","features":[206]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT","features":[206]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT_20","features":[206]},{"name":"TBS_OWNERAUTH_TYPE_FULL","features":[206]},{"name":"TBS_OWNERAUTH_TYPE_STORAGE_20","features":[206]},{"name":"TBS_OWNERAUTH_TYPE_USER","features":[206]},{"name":"TBS_SUCCESS","features":[206]},{"name":"TBS_TCGLOG_DRTM_BOOT","features":[206]},{"name":"TBS_TCGLOG_DRTM_CURRENT","features":[206]},{"name":"TBS_TCGLOG_DRTM_RESUME","features":[206]},{"name":"TBS_TCGLOG_SRTM_BOOT","features":[206]},{"name":"TBS_TCGLOG_SRTM_CURRENT","features":[206]},{"name":"TBS_TCGLOG_SRTM_RESUME","features":[206]},{"name":"TPM_DEVICE_INFO","features":[206]},{"name":"TPM_IFTYPE_1","features":[206]},{"name":"TPM_IFTYPE_EMULATOR","features":[206]},{"name":"TPM_IFTYPE_HW","features":[206]},{"name":"TPM_IFTYPE_SPB","features":[206]},{"name":"TPM_IFTYPE_TRUSTZONE","features":[206]},{"name":"TPM_IFTYPE_UNKNOWN","features":[206]},{"name":"TPM_VERSION_12","features":[206]},{"name":"TPM_VERSION_20","features":[206]},{"name":"TPM_VERSION_UNKNOWN","features":[206]},{"name":"TPM_WNF_INFO_CLEAR_SUCCESSFUL","features":[206]},{"name":"TPM_WNF_INFO_NO_REBOOT_REQUIRED","features":[206]},{"name":"TPM_WNF_INFO_OWNERSHIP_SUCCESSFUL","features":[206]},{"name":"TPM_WNF_PROVISIONING","features":[206]},{"name":"Tbsi_Context_Create","features":[206]},{"name":"Tbsi_Create_Windows_Key","features":[206]},{"name":"Tbsi_GetDeviceInfo","features":[206]},{"name":"Tbsi_Get_OwnerAuth","features":[206]},{"name":"Tbsi_Get_TCG_Log","features":[206]},{"name":"Tbsi_Get_TCG_Log_Ex","features":[206]},{"name":"Tbsi_Is_Tpm_Present","features":[3,206]},{"name":"Tbsi_Physical_Presence_Command","features":[206]},{"name":"Tbsi_Revoke_Attestation","features":[206]},{"name":"Tbsip_Cancel_Commands","features":[206]},{"name":"Tbsip_Context_Close","features":[206]},{"name":"Tbsip_Submit_Command","features":[206]}],"624":[{"name":"UAL_DATA_BLOB","features":[17,207]},{"name":"UalInstrument","features":[17,207]},{"name":"UalRegisterProduct","features":[207]},{"name":"UalStart","features":[17,207]},{"name":"UalStop","features":[17,207]}],"625":[{"name":"ClearVariantArray","features":[3,43,44]},{"name":"DPF_ERROR","features":[44]},{"name":"DPF_MARQUEE","features":[44]},{"name":"DPF_MARQUEE_COMPLETE","features":[44]},{"name":"DPF_NONE","features":[44]},{"name":"DPF_STOPPED","features":[44]},{"name":"DPF_WARNING","features":[44]},{"name":"DRAWPROGRESSFLAGS","features":[44]},{"name":"DosDateTimeToVariantTime","features":[44]},{"name":"InitVariantFromBooleanArray","features":[3,43,44]},{"name":"InitVariantFromBuffer","features":[3,43,44]},{"name":"InitVariantFromDoubleArray","features":[3,43,44]},{"name":"InitVariantFromFileTime","features":[3,43,44]},{"name":"InitVariantFromFileTimeArray","features":[3,43,44]},{"name":"InitVariantFromGUIDAsString","features":[3,43,44]},{"name":"InitVariantFromInt16Array","features":[3,43,44]},{"name":"InitVariantFromInt32Array","features":[3,43,44]},{"name":"InitVariantFromInt64Array","features":[3,43,44]},{"name":"InitVariantFromResource","features":[3,43,44]},{"name":"InitVariantFromStringArray","features":[3,43,44]},{"name":"InitVariantFromUInt16Array","features":[3,43,44]},{"name":"InitVariantFromUInt32Array","features":[3,43,44]},{"name":"InitVariantFromUInt64Array","features":[3,43,44]},{"name":"InitVariantFromVariantArrayElem","features":[3,43,44]},{"name":"PSTF_LOCAL","features":[44]},{"name":"PSTF_UTC","features":[44]},{"name":"PSTIME_FLAGS","features":[44]},{"name":"SystemTimeToVariantTime","features":[3,44]},{"name":"VARENUM","features":[44]},{"name":"VARIANT","features":[3,43,44]},{"name":"VARIANT_ALPHABOOL","features":[44]},{"name":"VARIANT_CALENDAR_GREGORIAN","features":[44]},{"name":"VARIANT_CALENDAR_HIJRI","features":[44]},{"name":"VARIANT_CALENDAR_THAI","features":[44]},{"name":"VARIANT_LOCALBOOL","features":[44]},{"name":"VARIANT_NOUSEROVERRIDE","features":[44]},{"name":"VARIANT_NOVALUEPROP","features":[44]},{"name":"VARIANT_USE_NLS","features":[44]},{"name":"VARIANT_UserFree","features":[3,43,44]},{"name":"VARIANT_UserFree64","features":[3,43,44]},{"name":"VARIANT_UserMarshal","features":[3,43,44]},{"name":"VARIANT_UserMarshal64","features":[3,43,44]},{"name":"VARIANT_UserSize","features":[3,43,44]},{"name":"VARIANT_UserSize64","features":[3,43,44]},{"name":"VARIANT_UserUnmarshal","features":[3,43,44]},{"name":"VARIANT_UserUnmarshal64","features":[3,43,44]},{"name":"VAR_CHANGE_FLAGS","features":[44]},{"name":"VT_ARRAY","features":[44]},{"name":"VT_BLOB","features":[44]},{"name":"VT_BLOB_OBJECT","features":[44]},{"name":"VT_BOOL","features":[44]},{"name":"VT_BSTR","features":[44]},{"name":"VT_BSTR_BLOB","features":[44]},{"name":"VT_BYREF","features":[44]},{"name":"VT_CARRAY","features":[44]},{"name":"VT_CF","features":[44]},{"name":"VT_CLSID","features":[44]},{"name":"VT_CY","features":[44]},{"name":"VT_DATE","features":[44]},{"name":"VT_DECIMAL","features":[44]},{"name":"VT_DISPATCH","features":[44]},{"name":"VT_EMPTY","features":[44]},{"name":"VT_ERROR","features":[44]},{"name":"VT_FILETIME","features":[44]},{"name":"VT_HRESULT","features":[44]},{"name":"VT_I1","features":[44]},{"name":"VT_I2","features":[44]},{"name":"VT_I4","features":[44]},{"name":"VT_I8","features":[44]},{"name":"VT_ILLEGAL","features":[44]},{"name":"VT_ILLEGALMASKED","features":[44]},{"name":"VT_INT","features":[44]},{"name":"VT_INT_PTR","features":[44]},{"name":"VT_LPSTR","features":[44]},{"name":"VT_LPWSTR","features":[44]},{"name":"VT_NULL","features":[44]},{"name":"VT_PTR","features":[44]},{"name":"VT_R4","features":[44]},{"name":"VT_R8","features":[44]},{"name":"VT_RECORD","features":[44]},{"name":"VT_RESERVED","features":[44]},{"name":"VT_SAFEARRAY","features":[44]},{"name":"VT_STORAGE","features":[44]},{"name":"VT_STORED_OBJECT","features":[44]},{"name":"VT_STREAM","features":[44]},{"name":"VT_STREAMED_OBJECT","features":[44]},{"name":"VT_TYPEMASK","features":[44]},{"name":"VT_UI1","features":[44]},{"name":"VT_UI2","features":[44]},{"name":"VT_UI4","features":[44]},{"name":"VT_UI8","features":[44]},{"name":"VT_UINT","features":[44]},{"name":"VT_UINT_PTR","features":[44]},{"name":"VT_UNKNOWN","features":[44]},{"name":"VT_USERDEFINED","features":[44]},{"name":"VT_VARIANT","features":[44]},{"name":"VT_VECTOR","features":[44]},{"name":"VT_VERSIONED_STREAM","features":[44]},{"name":"VT_VOID","features":[44]},{"name":"VariantChangeType","features":[3,43,44]},{"name":"VariantChangeTypeEx","features":[3,43,44]},{"name":"VariantClear","features":[3,43,44]},{"name":"VariantCompare","features":[3,43,44]},{"name":"VariantCopy","features":[3,43,44]},{"name":"VariantCopyInd","features":[3,43,44]},{"name":"VariantGetBooleanElem","features":[3,43,44]},{"name":"VariantGetDoubleElem","features":[3,43,44]},{"name":"VariantGetElementCount","features":[3,43,44]},{"name":"VariantGetInt16Elem","features":[3,43,44]},{"name":"VariantGetInt32Elem","features":[3,43,44]},{"name":"VariantGetInt64Elem","features":[3,43,44]},{"name":"VariantGetStringElem","features":[3,43,44]},{"name":"VariantGetUInt16Elem","features":[3,43,44]},{"name":"VariantGetUInt32Elem","features":[3,43,44]},{"name":"VariantGetUInt64Elem","features":[3,43,44]},{"name":"VariantInit","features":[3,43,44]},{"name":"VariantTimeToDosDateTime","features":[44]},{"name":"VariantTimeToSystemTime","features":[3,44]},{"name":"VariantToBoolean","features":[3,43,44]},{"name":"VariantToBooleanArray","features":[3,43,44]},{"name":"VariantToBooleanArrayAlloc","features":[3,43,44]},{"name":"VariantToBooleanWithDefault","features":[3,43,44]},{"name":"VariantToBuffer","features":[3,43,44]},{"name":"VariantToDosDateTime","features":[3,43,44]},{"name":"VariantToDouble","features":[3,43,44]},{"name":"VariantToDoubleArray","features":[3,43,44]},{"name":"VariantToDoubleArrayAlloc","features":[3,43,44]},{"name":"VariantToDoubleWithDefault","features":[3,43,44]},{"name":"VariantToFileTime","features":[3,43,44]},{"name":"VariantToGUID","features":[3,43,44]},{"name":"VariantToInt16","features":[3,43,44]},{"name":"VariantToInt16Array","features":[3,43,44]},{"name":"VariantToInt16ArrayAlloc","features":[3,43,44]},{"name":"VariantToInt16WithDefault","features":[3,43,44]},{"name":"VariantToInt32","features":[3,43,44]},{"name":"VariantToInt32Array","features":[3,43,44]},{"name":"VariantToInt32ArrayAlloc","features":[3,43,44]},{"name":"VariantToInt32WithDefault","features":[3,43,44]},{"name":"VariantToInt64","features":[3,43,44]},{"name":"VariantToInt64Array","features":[3,43,44]},{"name":"VariantToInt64ArrayAlloc","features":[3,43,44]},{"name":"VariantToInt64WithDefault","features":[3,43,44]},{"name":"VariantToString","features":[3,43,44]},{"name":"VariantToStringAlloc","features":[3,43,44]},{"name":"VariantToStringArray","features":[3,43,44]},{"name":"VariantToStringArrayAlloc","features":[3,43,44]},{"name":"VariantToStringWithDefault","features":[3,43,44]},{"name":"VariantToUInt16","features":[3,43,44]},{"name":"VariantToUInt16Array","features":[3,43,44]},{"name":"VariantToUInt16ArrayAlloc","features":[3,43,44]},{"name":"VariantToUInt16WithDefault","features":[3,43,44]},{"name":"VariantToUInt32","features":[3,43,44]},{"name":"VariantToUInt32Array","features":[3,43,44]},{"name":"VariantToUInt32ArrayAlloc","features":[3,43,44]},{"name":"VariantToUInt32WithDefault","features":[3,43,44]},{"name":"VariantToUInt64","features":[3,43,44]},{"name":"VariantToUInt64Array","features":[3,43,44]},{"name":"VariantToUInt64ArrayAlloc","features":[3,43,44]},{"name":"VariantToUInt64WithDefault","features":[3,43,44]}],"626":[{"name":"DBG_ATTACH","features":[208]},{"name":"DBG_BREAK","features":[208]},{"name":"DBG_DIVOVERFLOW","features":[208]},{"name":"DBG_DLLSTART","features":[208]},{"name":"DBG_DLLSTOP","features":[208]},{"name":"DBG_GPFAULT","features":[208]},{"name":"DBG_GPFAULT2","features":[208]},{"name":"DBG_INIT","features":[208]},{"name":"DBG_INSTRFAULT","features":[208]},{"name":"DBG_MODFREE","features":[208]},{"name":"DBG_MODLOAD","features":[208]},{"name":"DBG_MODMOVE","features":[208]},{"name":"DBG_SEGFREE","features":[208]},{"name":"DBG_SEGLOAD","features":[208]},{"name":"DBG_SEGMOVE","features":[208]},{"name":"DBG_SINGLESTEP","features":[208]},{"name":"DBG_STACKFAULT","features":[208]},{"name":"DBG_TASKSTART","features":[208]},{"name":"DBG_TASKSTOP","features":[208]},{"name":"DBG_TEMPBP","features":[208]},{"name":"DBG_TOOLHELP","features":[208]},{"name":"DBG_WOWINIT","features":[208]},{"name":"DEBUGEVENTPROC","features":[3,33,39,208]},{"name":"GD_ACCELERATORS","features":[208]},{"name":"GD_BITMAP","features":[208]},{"name":"GD_CURSOR","features":[208]},{"name":"GD_CURSORCOMPONENT","features":[208]},{"name":"GD_DIALOG","features":[208]},{"name":"GD_ERRTABLE","features":[208]},{"name":"GD_FONT","features":[208]},{"name":"GD_FONTDIR","features":[208]},{"name":"GD_ICON","features":[208]},{"name":"GD_ICONCOMPONENT","features":[208]},{"name":"GD_MAX_RESOURCE","features":[208]},{"name":"GD_MENU","features":[208]},{"name":"GD_NAMETABLE","features":[208]},{"name":"GD_RCDATA","features":[208]},{"name":"GD_STRING","features":[208]},{"name":"GD_USERDEFINED","features":[208]},{"name":"GLOBALENTRY","features":[3,208]},{"name":"GLOBAL_ALL","features":[208]},{"name":"GLOBAL_FREE","features":[208]},{"name":"GLOBAL_LRU","features":[208]},{"name":"GT_BURGERMASTER","features":[208]},{"name":"GT_CODE","features":[208]},{"name":"GT_DATA","features":[208]},{"name":"GT_DGROUP","features":[208]},{"name":"GT_FREE","features":[208]},{"name":"GT_INTERNAL","features":[208]},{"name":"GT_MODULE","features":[208]},{"name":"GT_RESOURCE","features":[208]},{"name":"GT_SENTINEL","features":[208]},{"name":"GT_TASK","features":[208]},{"name":"GT_UNKNOWN","features":[208]},{"name":"IMAGE_NOTE","features":[208]},{"name":"MAX_MODULE_NAME","features":[208]},{"name":"MAX_PATH16","features":[208]},{"name":"MODULEENTRY","features":[3,208]},{"name":"PROCESSENUMPROC","features":[3,208]},{"name":"SEGMENT_NOTE","features":[208]},{"name":"SN_CODE","features":[208]},{"name":"SN_DATA","features":[208]},{"name":"SN_V86","features":[208]},{"name":"STATUS_VDM_EVENT","features":[208]},{"name":"TASKENUMPROC","features":[3,208]},{"name":"TASKENUMPROCEX","features":[3,208]},{"name":"TEMP_BP_NOTE","features":[3,208]},{"name":"V86FLAGS_ALIGNMENT","features":[208]},{"name":"V86FLAGS_AUXCARRY","features":[208]},{"name":"V86FLAGS_CARRY","features":[208]},{"name":"V86FLAGS_DIRECTION","features":[208]},{"name":"V86FLAGS_INTERRUPT","features":[208]},{"name":"V86FLAGS_IOPL","features":[208]},{"name":"V86FLAGS_IOPL_BITS","features":[208]},{"name":"V86FLAGS_OVERFLOW","features":[208]},{"name":"V86FLAGS_PARITY","features":[208]},{"name":"V86FLAGS_RESUME","features":[208]},{"name":"V86FLAGS_SIGN","features":[208]},{"name":"V86FLAGS_TRACE","features":[208]},{"name":"V86FLAGS_V86","features":[208]},{"name":"V86FLAGS_ZERO","features":[208]},{"name":"VDMADDR_PM16","features":[208]},{"name":"VDMADDR_PM32","features":[208]},{"name":"VDMADDR_V86","features":[208]},{"name":"VDMBREAKTHREADPROC","features":[3,208]},{"name":"VDMCONTEXT","features":[9,208]},{"name":"VDMCONTEXT_WITHOUT_XSAVE","features":[9,208]},{"name":"VDMCONTEXT_i386","features":[208]},{"name":"VDMCONTEXT_i486","features":[208]},{"name":"VDMDBG_BREAK_DEBUGGER","features":[208]},{"name":"VDMDBG_BREAK_DIVIDEBYZERO","features":[208]},{"name":"VDMDBG_BREAK_DOSTASK","features":[208]},{"name":"VDMDBG_BREAK_EXCEPTIONS","features":[208]},{"name":"VDMDBG_BREAK_LOADDLL","features":[208]},{"name":"VDMDBG_BREAK_WOWTASK","features":[208]},{"name":"VDMDBG_INITIAL_FLAGS","features":[208]},{"name":"VDMDBG_MAX_SYMBOL_BUFFER","features":[208]},{"name":"VDMDBG_TRACE_HISTORY","features":[208]},{"name":"VDMDETECTWOWPROC","features":[3,208]},{"name":"VDMENUMPROCESSWOWPROC","features":[3,208]},{"name":"VDMENUMTASKWOWEXPROC","features":[3,208]},{"name":"VDMENUMTASKWOWPROC","features":[3,208]},{"name":"VDMEVENT_ALLFLAGS","features":[208]},{"name":"VDMEVENT_NEEDS_INTERACTIVE","features":[208]},{"name":"VDMEVENT_PE","features":[208]},{"name":"VDMEVENT_PM16","features":[208]},{"name":"VDMEVENT_V86","features":[208]},{"name":"VDMEVENT_VERBOSE","features":[208]},{"name":"VDMGETADDREXPRESSIONPROC","features":[3,208]},{"name":"VDMGETCONTEXTPROC","features":[3,9,208]},{"name":"VDMGETCONTEXTPROC","features":[3,33,9,208]},{"name":"VDMGETDBGFLAGSPROC","features":[3,208]},{"name":"VDMGETMODULESELECTORPROC","features":[3,208]},{"name":"VDMGETPOINTERPROC","features":[3,208]},{"name":"VDMGETSEGMENTINFOPROC","features":[3,208]},{"name":"VDMGETSELECTORMODULEPROC","features":[3,208]},{"name":"VDMGETSYMBOLPROC","features":[3,208]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[3,208]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[3,33,208]},{"name":"VDMGLOBALFIRSTPROC","features":[3,33,39,208]},{"name":"VDMGLOBALNEXTPROC","features":[3,33,39,208]},{"name":"VDMISMODULELOADEDPROC","features":[3,208]},{"name":"VDMKILLWOWPROC","features":[3,208]},{"name":"VDMLDT_ENTRY","features":[208]},{"name":"VDMMODULEFIRSTPROC","features":[3,33,39,208]},{"name":"VDMMODULENEXTPROC","features":[3,33,39,208]},{"name":"VDMPROCESSEXCEPTIONPROC","features":[3,33,39,208]},{"name":"VDMSETCONTEXTPROC","features":[3,9,208]},{"name":"VDMSETCONTEXTPROC","features":[3,33,9,208]},{"name":"VDMSETDBGFLAGSPROC","features":[3,208]},{"name":"VDMSTARTTASKINWOWPROC","features":[3,208]},{"name":"VDMTERMINATETASKINWOWPROC","features":[3,208]},{"name":"VDM_KGDT_R3_CODE","features":[208]},{"name":"VDM_MAXIMUM_SUPPORTED_EXTENSION","features":[208]},{"name":"VDM_SEGINFO","features":[208]},{"name":"WOW_SYSTEM","features":[208]}],"646":[{"name":"AADBE_ADD_ENTRY","features":[37]},{"name":"AADBE_DEL_ENTRY","features":[37]},{"name":"ACTCTX_FLAG_APPLICATION_NAME_VALID","features":[37]},{"name":"ACTCTX_FLAG_ASSEMBLY_DIRECTORY_VALID","features":[37]},{"name":"ACTCTX_FLAG_HMODULE_VALID","features":[37]},{"name":"ACTCTX_FLAG_LANGID_VALID","features":[37]},{"name":"ACTCTX_FLAG_PROCESSOR_ARCHITECTURE_VALID","features":[37]},{"name":"ACTCTX_FLAG_RESOURCE_NAME_VALID","features":[37]},{"name":"ACTCTX_FLAG_SET_PROCESS_DEFAULT","features":[37]},{"name":"ACTCTX_FLAG_SOURCE_IS_ASSEMBLYREF","features":[37]},{"name":"ACTCTX_SECTION_KEYED_DATA_2600","features":[3,37]},{"name":"ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA","features":[37]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION","features":[3,37]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION_DEFINED","features":[37]},{"name":"AC_LINE_BACKUP_POWER","features":[37]},{"name":"AC_LINE_OFFLINE","features":[37]},{"name":"AC_LINE_ONLINE","features":[37]},{"name":"AC_LINE_UNKNOWN","features":[37]},{"name":"ADN_DEL_IF_EMPTY","features":[37]},{"name":"ADN_DEL_UNC_PATHS","features":[37]},{"name":"ADN_DONT_DEL_DIR","features":[37]},{"name":"ADN_DONT_DEL_SUBDIRS","features":[37]},{"name":"AFSR_BACKNEW","features":[37]},{"name":"AFSR_EXTRAINCREFCNT","features":[37]},{"name":"AFSR_NODELETENEW","features":[37]},{"name":"AFSR_NOMESSAGES","features":[37]},{"name":"AFSR_NOPROGRESS","features":[37]},{"name":"AFSR_RESTORE","features":[37]},{"name":"AFSR_UPDREFCNT","features":[37]},{"name":"AFSR_USEREFCNT","features":[37]},{"name":"AIF_FORCE_FILE_IN_USE","features":[37]},{"name":"AIF_NOLANGUAGECHECK","features":[37]},{"name":"AIF_NOOVERWRITE","features":[37]},{"name":"AIF_NOSKIP","features":[37]},{"name":"AIF_NOVERSIONCHECK","features":[37]},{"name":"AIF_NO_VERSION_DIALOG","features":[37]},{"name":"AIF_QUIET","features":[37]},{"name":"AIF_REPLACEONLY","features":[37]},{"name":"AIF_WARNIFSKIP","features":[37]},{"name":"ALINF_BKINSTALL","features":[37]},{"name":"ALINF_CHECKBKDATA","features":[37]},{"name":"ALINF_DELAYREGISTEROCX","features":[37]},{"name":"ALINF_NGCONV","features":[37]},{"name":"ALINF_QUIET","features":[37]},{"name":"ALINF_ROLLBACK","features":[37]},{"name":"ALINF_ROLLBKDOALL","features":[37]},{"name":"ALINF_UPDHLPDLLS","features":[37]},{"name":"APPLICATION_RECOVERY_CALLBACK","features":[37]},{"name":"ARSR_NOMESSAGES","features":[37]},{"name":"ARSR_REGSECTION","features":[37]},{"name":"ARSR_REMOVREGBKDATA","features":[37]},{"name":"ARSR_RESTORE","features":[37]},{"name":"ATOM_FLAG_GLOBAL","features":[37]},{"name":"AT_ARP","features":[37]},{"name":"AT_ENTITY","features":[37]},{"name":"AT_NULL","features":[37]},{"name":"AddDelBackupEntryA","features":[37]},{"name":"AddDelBackupEntryW","features":[37]},{"name":"AdvInstallFileA","features":[3,37]},{"name":"AdvInstallFileW","features":[3,37]},{"name":"ApphelpCheckShellObject","features":[3,37]},{"name":"BACKUP_GHOSTED_FILE_EXTENTS","features":[37]},{"name":"BACKUP_INVALID","features":[37]},{"name":"BASE_SEARCH_PATH_DISABLE_SAFE_SEARCHMODE","features":[37]},{"name":"BASE_SEARCH_PATH_ENABLE_SAFE_SEARCHMODE","features":[37]},{"name":"BASE_SEARCH_PATH_PERMANENT","features":[37]},{"name":"BATTERY_FLAG_CHARGING","features":[37]},{"name":"BATTERY_FLAG_CRITICAL","features":[37]},{"name":"BATTERY_FLAG_HIGH","features":[37]},{"name":"BATTERY_FLAG_LOW","features":[37]},{"name":"BATTERY_FLAG_NO_BATTERY","features":[37]},{"name":"BATTERY_FLAG_UNKNOWN","features":[37]},{"name":"BATTERY_LIFE_UNKNOWN","features":[37]},{"name":"BATTERY_PERCENTAGE_UNKNOWN","features":[37]},{"name":"BAUD_075","features":[37]},{"name":"BAUD_110","features":[37]},{"name":"BAUD_115200","features":[37]},{"name":"BAUD_1200","features":[37]},{"name":"BAUD_128K","features":[37]},{"name":"BAUD_134_5","features":[37]},{"name":"BAUD_14400","features":[37]},{"name":"BAUD_150","features":[37]},{"name":"BAUD_1800","features":[37]},{"name":"BAUD_19200","features":[37]},{"name":"BAUD_2400","features":[37]},{"name":"BAUD_300","features":[37]},{"name":"BAUD_38400","features":[37]},{"name":"BAUD_4800","features":[37]},{"name":"BAUD_56K","features":[37]},{"name":"BAUD_57600","features":[37]},{"name":"BAUD_600","features":[37]},{"name":"BAUD_7200","features":[37]},{"name":"BAUD_9600","features":[37]},{"name":"BAUD_USER","features":[37]},{"name":"CABINFOA","features":[37]},{"name":"CABINFOW","features":[37]},{"name":"CATID_DeleteBrowsingHistory","features":[37]},{"name":"CBR_110","features":[37]},{"name":"CBR_115200","features":[37]},{"name":"CBR_1200","features":[37]},{"name":"CBR_128000","features":[37]},{"name":"CBR_14400","features":[37]},{"name":"CBR_19200","features":[37]},{"name":"CBR_2400","features":[37]},{"name":"CBR_256000","features":[37]},{"name":"CBR_300","features":[37]},{"name":"CBR_38400","features":[37]},{"name":"CBR_4800","features":[37]},{"name":"CBR_56000","features":[37]},{"name":"CBR_57600","features":[37]},{"name":"CBR_600","features":[37]},{"name":"CBR_9600","features":[37]},{"name":"CE_DNS","features":[37]},{"name":"CE_IOE","features":[37]},{"name":"CE_MODE","features":[37]},{"name":"CE_OOP","features":[37]},{"name":"CE_PTO","features":[37]},{"name":"CE_TXFULL","features":[37]},{"name":"CLIENT_ID","features":[3,37]},{"name":"CL_NL_ENTITY","features":[37]},{"name":"CL_NL_IP","features":[37]},{"name":"CL_NL_IPX","features":[37]},{"name":"CL_TL_ENTITY","features":[37]},{"name":"CL_TL_NBF","features":[37]},{"name":"CL_TL_UDP","features":[37]},{"name":"CODEINTEGRITY_OPTION_DEBUGMODE_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_FLIGHTING_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_FLIGHT_BUILD","features":[37]},{"name":"CODEINTEGRITY_OPTION_HVCI_IUM_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_AUDITMODE_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_STRICTMODE_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_PREPRODUCTION_BUILD","features":[37]},{"name":"CODEINTEGRITY_OPTION_TESTSIGN","features":[37]},{"name":"CODEINTEGRITY_OPTION_TEST_BUILD","features":[37]},{"name":"CODEINTEGRITY_OPTION_UMCI_AUDITMODE_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_UMCI_ENABLED","features":[37]},{"name":"CODEINTEGRITY_OPTION_UMCI_EXCLUSIONPATHS_ENABLED","features":[37]},{"name":"COMMPROP_INITIALIZED","features":[37]},{"name":"CONTEXT_SIZE","features":[37]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MAX","features":[37]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MIN","features":[37]},{"name":"COPYFILE2_IO_RATE_MIN","features":[37]},{"name":"COPYFILE2_MESSAGE_COPY_OFFLOAD","features":[37]},{"name":"COPY_FILE2_V2_DONT_COPY_JUNCTIONS","features":[37]},{"name":"COPY_FILE2_V2_VALID_FLAGS","features":[37]},{"name":"COPY_FILE_ALLOW_DECRYPTED_DESTINATION","features":[37]},{"name":"COPY_FILE_COPY_SYMLINK","features":[37]},{"name":"COPY_FILE_DIRECTORY","features":[37]},{"name":"COPY_FILE_DISABLE_PRE_ALLOCATION","features":[37]},{"name":"COPY_FILE_DONT_REQUEST_DEST_WRITE_DAC","features":[37]},{"name":"COPY_FILE_ENABLE_LOW_FREE_SPACE_MODE","features":[37]},{"name":"COPY_FILE_ENABLE_SPARSE_COPY","features":[37]},{"name":"COPY_FILE_FAIL_IF_EXISTS","features":[37]},{"name":"COPY_FILE_IGNORE_EDP_BLOCK","features":[37]},{"name":"COPY_FILE_IGNORE_SOURCE_ENCRYPTION","features":[37]},{"name":"COPY_FILE_NO_BUFFERING","features":[37]},{"name":"COPY_FILE_NO_OFFLOAD","features":[37]},{"name":"COPY_FILE_OPEN_AND_COPY_REPARSE_POINT","features":[37]},{"name":"COPY_FILE_OPEN_SOURCE_FOR_WRITE","features":[37]},{"name":"COPY_FILE_REQUEST_COMPRESSED_TRAFFIC","features":[37]},{"name":"COPY_FILE_REQUEST_SECURITY_PRIVILEGES","features":[37]},{"name":"COPY_FILE_RESTARTABLE","features":[37]},{"name":"COPY_FILE_RESUME_FROM_PAUSE","features":[37]},{"name":"COPY_FILE_SKIP_ALTERNATE_STREAMS","features":[37]},{"name":"CO_NL_ENTITY","features":[37]},{"name":"CO_TL_ENTITY","features":[37]},{"name":"CO_TL_NBF","features":[37]},{"name":"CO_TL_SPP","features":[37]},{"name":"CO_TL_SPX","features":[37]},{"name":"CO_TL_TCP","features":[37]},{"name":"CP_DIRECT","features":[37]},{"name":"CP_HWND","features":[37]},{"name":"CP_LEVEL","features":[37]},{"name":"CP_OPEN","features":[37]},{"name":"CREATE_FOR_DIR","features":[37]},{"name":"CREATE_FOR_IMPORT","features":[37]},{"name":"CRITICAL_SECTION_NO_DEBUG_INFO","features":[37]},{"name":"CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG","features":[37]},{"name":"CameraUIControl","features":[37]},{"name":"CameraUIControlCaptureMode","features":[37]},{"name":"CameraUIControlLinearSelectionMode","features":[37]},{"name":"CameraUIControlMode","features":[37]},{"name":"CameraUIControlPhotoFormat","features":[37]},{"name":"CameraUIControlVideoFormat","features":[37]},{"name":"CameraUIControlViewType","features":[37]},{"name":"CancelDeviceWakeupRequest","features":[3,37]},{"name":"CloseINFEngine","features":[37]},{"name":"ConvertAuxiliaryCounterToPerformanceCounter","features":[37]},{"name":"ConvertPerformanceCounterToAuxiliaryCounter","features":[37]},{"name":"DATETIME","features":[37]},{"name":"DCIBeginAccess","features":[37]},{"name":"DCICMD","features":[37]},{"name":"DCICREATEINPUT","features":[37]},{"name":"DCICREATEOFFSCREENSURFACE","features":[37]},{"name":"DCICREATEOVERLAYSURFACE","features":[37]},{"name":"DCICREATEPRIMARYSURFACE","features":[37]},{"name":"DCICloseProvider","features":[14,37]},{"name":"DCICreateOffscreen","features":[14,37]},{"name":"DCICreateOverlay","features":[14,37]},{"name":"DCICreatePrimary","features":[14,37]},{"name":"DCIDestroy","features":[37]},{"name":"DCIDraw","features":[37]},{"name":"DCIENUMINPUT","features":[3,37]},{"name":"DCIENUMSURFACE","features":[37]},{"name":"DCIESCAPE","features":[37]},{"name":"DCIEndAccess","features":[37]},{"name":"DCIEnum","features":[3,14,37]},{"name":"DCIOFFSCREEN","features":[37]},{"name":"DCIOVERLAY","features":[37]},{"name":"DCIOpenProvider","features":[14,37]},{"name":"DCISURFACEINFO","features":[37]},{"name":"DCISetClipList","features":[3,14,37]},{"name":"DCISetDestination","features":[3,37]},{"name":"DCISetSrcDestClip","features":[3,14,37]},{"name":"DCI_1632_ACCESS","features":[37]},{"name":"DCI_ASYNC","features":[37]},{"name":"DCI_CANOVERLAY","features":[37]},{"name":"DCI_CAN_STRETCHX","features":[37]},{"name":"DCI_CAN_STRETCHXN","features":[37]},{"name":"DCI_CAN_STRETCHY","features":[37]},{"name":"DCI_CAN_STRETCHYN","features":[37]},{"name":"DCI_CHROMAKEY","features":[37]},{"name":"DCI_DWORDALIGN","features":[37]},{"name":"DCI_DWORDSIZE","features":[37]},{"name":"DCI_ERR_CURRENTLYNOTAVAIL","features":[37]},{"name":"DCI_ERR_HEIGHTALIGN","features":[37]},{"name":"DCI_ERR_INVALIDCLIPLIST","features":[37]},{"name":"DCI_ERR_INVALIDPOSITION","features":[37]},{"name":"DCI_ERR_INVALIDRECT","features":[37]},{"name":"DCI_ERR_INVALIDSTRETCH","features":[37]},{"name":"DCI_ERR_OUTOFMEMORY","features":[37]},{"name":"DCI_ERR_SURFACEISOBSCURED","features":[37]},{"name":"DCI_ERR_TOOBIGHEIGHT","features":[37]},{"name":"DCI_ERR_TOOBIGSIZE","features":[37]},{"name":"DCI_ERR_TOOBIGWIDTH","features":[37]},{"name":"DCI_ERR_UNSUPPORTEDFORMAT","features":[37]},{"name":"DCI_ERR_UNSUPPORTEDMASK","features":[37]},{"name":"DCI_ERR_WIDTHALIGN","features":[37]},{"name":"DCI_ERR_XALIGN","features":[37]},{"name":"DCI_ERR_XYALIGN","features":[37]},{"name":"DCI_ERR_YALIGN","features":[37]},{"name":"DCI_FAIL_GENERIC","features":[37]},{"name":"DCI_FAIL_INVALIDSURFACE","features":[37]},{"name":"DCI_FAIL_UNSUPPORTED","features":[37]},{"name":"DCI_FAIL_UNSUPPORTEDVERSION","features":[37]},{"name":"DCI_OFFSCREEN","features":[37]},{"name":"DCI_OK","features":[37]},{"name":"DCI_OVERLAY","features":[37]},{"name":"DCI_PRIMARY","features":[37]},{"name":"DCI_STATUS_CHROMAKEYCHANGED","features":[37]},{"name":"DCI_STATUS_FORMATCHANGED","features":[37]},{"name":"DCI_STATUS_POINTERCHANGED","features":[37]},{"name":"DCI_STATUS_STRIDECHANGED","features":[37]},{"name":"DCI_STATUS_SURFACEINFOCHANGED","features":[37]},{"name":"DCI_STATUS_WASSTILLDRAWING","features":[37]},{"name":"DCI_SURFACE_TYPE","features":[37]},{"name":"DCI_VERSION","features":[37]},{"name":"DCI_VISIBLE","features":[37]},{"name":"DCI_WRITEONLY","features":[37]},{"name":"DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION","features":[37]},{"name":"DECISION_LOCATION","features":[37]},{"name":"DECISION_LOCATION_AUDIT","features":[37]},{"name":"DECISION_LOCATION_ENFORCE_STATE_LIST","features":[37]},{"name":"DECISION_LOCATION_ENTERPRISE_DEFINED_CLASS_ID","features":[37]},{"name":"DECISION_LOCATION_FAILED_CONVERT_GUID","features":[37]},{"name":"DECISION_LOCATION_GLOBAL_BUILT_IN_LIST","features":[37]},{"name":"DECISION_LOCATION_NOT_FOUND","features":[37]},{"name":"DECISION_LOCATION_PARAMETER_VALIDATION","features":[37]},{"name":"DECISION_LOCATION_PROVIDER_BUILT_IN_LIST","features":[37]},{"name":"DECISION_LOCATION_REFRESH_GLOBAL_DATA","features":[37]},{"name":"DECISION_LOCATION_UNKNOWN","features":[37]},{"name":"DELAYLOAD_GPA_FAILURE","features":[37]},{"name":"DELAYLOAD_INFO","features":[37]},{"name":"DELAYLOAD_INFO","features":[37]},{"name":"DELAYLOAD_PROC_DESCRIPTOR","features":[37]},{"name":"DELETE_BROWSING_HISTORY_COOKIES","features":[37]},{"name":"DELETE_BROWSING_HISTORY_DOWNLOADHISTORY","features":[37]},{"name":"DELETE_BROWSING_HISTORY_FORMDATA","features":[37]},{"name":"DELETE_BROWSING_HISTORY_HISTORY","features":[37]},{"name":"DELETE_BROWSING_HISTORY_PASSWORDS","features":[37]},{"name":"DELETE_BROWSING_HISTORY_PRESERVEFAVORITES","features":[37]},{"name":"DELETE_BROWSING_HISTORY_TIF","features":[37]},{"name":"DOCKINFO_DOCKED","features":[37]},{"name":"DOCKINFO_UNDOCKED","features":[37]},{"name":"DOCKINFO_USER_SUPPLIED","features":[37]},{"name":"DRIVE_CDROM","features":[37]},{"name":"DRIVE_FIXED","features":[37]},{"name":"DRIVE_NO_ROOT_DIR","features":[37]},{"name":"DRIVE_RAMDISK","features":[37]},{"name":"DRIVE_REMOTE","features":[37]},{"name":"DRIVE_REMOVABLE","features":[37]},{"name":"DRIVE_UNKNOWN","features":[37]},{"name":"DTR_CONTROL_DISABLE","features":[37]},{"name":"DTR_CONTROL_ENABLE","features":[37]},{"name":"DTR_CONTROL_HANDSHAKE","features":[37]},{"name":"DefaultBrowserSyncSettings","features":[37]},{"name":"DelNodeA","features":[37]},{"name":"DelNodeRunDLL32W","features":[3,37]},{"name":"DelNodeW","features":[37]},{"name":"DnsHostnameToComputerNameA","features":[3,37]},{"name":"DnsHostnameToComputerNameW","features":[3,37]},{"name":"DosDateTimeToFileTime","features":[3,37]},{"name":"EFSRPC_SECURE_ONLY","features":[37]},{"name":"EFS_DROP_ALTERNATE_STREAMS","features":[37]},{"name":"EFS_USE_RECOVERY_KEYS","features":[37]},{"name":"ENTITY_LIST_ID","features":[37]},{"name":"ENTITY_TYPE_ID","features":[37]},{"name":"ENUM_CALLBACK","features":[37]},{"name":"ER_ENTITY","features":[37]},{"name":"ER_ICMP","features":[37]},{"name":"EVENTLOG_FULL_INFO","features":[37]},{"name":"EditionUpgradeBroker","features":[37]},{"name":"EditionUpgradeHelper","features":[37]},{"name":"EnableProcessOptionalXStateFeatures","features":[3,37]},{"name":"EndpointIoControlType","features":[37]},{"name":"ExecuteCabA","features":[3,37]},{"name":"ExecuteCabW","features":[3,37]},{"name":"ExtractFilesA","features":[37]},{"name":"ExtractFilesW","features":[37]},{"name":"FAIL_FAST_GENERATE_EXCEPTION_ADDRESS","features":[37]},{"name":"FAIL_FAST_NO_HARD_ERROR_DLG","features":[37]},{"name":"FEATURE_CHANGE_TIME","features":[37]},{"name":"FEATURE_CHANGE_TIME_MODULE_RELOAD","features":[37]},{"name":"FEATURE_CHANGE_TIME_READ","features":[37]},{"name":"FEATURE_CHANGE_TIME_REBOOT","features":[37]},{"name":"FEATURE_CHANGE_TIME_SESSION","features":[37]},{"name":"FEATURE_ENABLED_STATE","features":[37]},{"name":"FEATURE_ENABLED_STATE_DEFAULT","features":[37]},{"name":"FEATURE_ENABLED_STATE_DISABLED","features":[37]},{"name":"FEATURE_ENABLED_STATE_ENABLED","features":[37]},{"name":"FEATURE_ERROR","features":[37]},{"name":"FEATURE_STATE_CHANGE_SUBSCRIPTION","features":[37]},{"name":"FIBER_FLAG_FLOAT_SWITCH","features":[37]},{"name":"FILE_CASE_SENSITIVE_INFO","features":[37]},{"name":"FILE_CREATED","features":[37]},{"name":"FILE_DIR_DISALLOWED","features":[37]},{"name":"FILE_DOES_NOT_EXIST","features":[37]},{"name":"FILE_ENCRYPTABLE","features":[37]},{"name":"FILE_EXISTS","features":[37]},{"name":"FILE_FLAG_IGNORE_IMPERSONATED_DEVICEMAP","features":[37]},{"name":"FILE_FLAG_OPEN_REQUIRING_OPLOCK","features":[37]},{"name":"FILE_IS_ENCRYPTED","features":[37]},{"name":"FILE_MAXIMUM_DISPOSITION","features":[37]},{"name":"FILE_NO_COMPRESSION","features":[37]},{"name":"FILE_OPENED","features":[37]},{"name":"FILE_OPEN_NO_RECALL","features":[37]},{"name":"FILE_OPEN_REMOTE_INSTANCE","features":[37]},{"name":"FILE_OVERWRITTEN","features":[37]},{"name":"FILE_READ_ONLY","features":[37]},{"name":"FILE_RENAME_FLAG_POSIX_SEMANTICS","features":[37]},{"name":"FILE_RENAME_FLAG_REPLACE_IF_EXISTS","features":[37]},{"name":"FILE_RENAME_FLAG_SUPPRESS_PIN_STATE_INHERITANCE","features":[37]},{"name":"FILE_ROOT_DIR","features":[37]},{"name":"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS","features":[37]},{"name":"FILE_SKIP_SET_EVENT_ON_HANDLE","features":[37]},{"name":"FILE_SUPERSEDED","features":[37]},{"name":"FILE_SYSTEM_ATTR","features":[37]},{"name":"FILE_SYSTEM_DIR","features":[37]},{"name":"FILE_SYSTEM_NOT_SUPPORT","features":[37]},{"name":"FILE_UNKNOWN","features":[37]},{"name":"FILE_USER_DISALLOWED","features":[37]},{"name":"FILE_VALID_MAILSLOT_OPTION_FLAGS","features":[37]},{"name":"FILE_VALID_OPTION_FLAGS","features":[37]},{"name":"FILE_VALID_PIPE_OPTION_FLAGS","features":[37]},{"name":"FILE_VALID_SET_FLAGS","features":[37]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_ASSEMBLY_METADATA","features":[37]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_FLAGS","features":[37]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX","features":[37]},{"name":"FORMAT_MESSAGE_MAX_WIDTH_MASK","features":[37]},{"name":"FS_CASE_IS_PRESERVED","features":[37]},{"name":"FS_CASE_SENSITIVE","features":[37]},{"name":"FS_FILE_COMPRESSION","features":[37]},{"name":"FS_FILE_ENCRYPTION","features":[37]},{"name":"FS_PERSISTENT_ACLS","features":[37]},{"name":"FS_UNICODE_STORED_ON_DISK","features":[37]},{"name":"FS_VOL_IS_COMPRESSED","features":[37]},{"name":"FileSaveMarkNotExistA","features":[37]},{"name":"FileSaveMarkNotExistW","features":[37]},{"name":"FileSaveRestoreOnINFA","features":[3,37]},{"name":"FileSaveRestoreOnINFW","features":[3,37]},{"name":"FileSaveRestoreW","features":[3,37]},{"name":"FileTimeToDosDateTime","features":[3,37]},{"name":"GENERIC_ENTITY","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_A","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_T","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_W","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_A","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_T","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_W","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_A","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_T","features":[37]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_W","features":[37]},{"name":"GMEM_DDESHARE","features":[37]},{"name":"GMEM_DISCARDABLE","features":[37]},{"name":"GMEM_DISCARDED","features":[37]},{"name":"GMEM_INVALID_HANDLE","features":[37]},{"name":"GMEM_LOCKCOUNT","features":[37]},{"name":"GMEM_LOWER","features":[37]},{"name":"GMEM_MODIFY","features":[37]},{"name":"GMEM_NOCOMPACT","features":[37]},{"name":"GMEM_NODISCARD","features":[37]},{"name":"GMEM_NOTIFY","features":[37]},{"name":"GMEM_NOT_BANKED","features":[37]},{"name":"GMEM_SHARE","features":[37]},{"name":"GMEM_VALID_FLAGS","features":[37]},{"name":"GdiEntry13","features":[37]},{"name":"GetComputerNameA","features":[3,37]},{"name":"GetComputerNameW","features":[3,37]},{"name":"GetCurrentHwProfileA","features":[3,37]},{"name":"GetCurrentHwProfileW","features":[3,37]},{"name":"GetDCRegionData","features":[3,14,37]},{"name":"GetFeatureEnabledState","features":[37]},{"name":"GetFeatureVariant","features":[3,37]},{"name":"GetFirmwareEnvironmentVariableA","features":[37]},{"name":"GetFirmwareEnvironmentVariableExA","features":[37]},{"name":"GetFirmwareEnvironmentVariableExW","features":[37]},{"name":"GetFirmwareEnvironmentVariableW","features":[37]},{"name":"GetPrivateProfileIntA","features":[37]},{"name":"GetPrivateProfileIntW","features":[37]},{"name":"GetPrivateProfileSectionA","features":[37]},{"name":"GetPrivateProfileSectionNamesA","features":[37]},{"name":"GetPrivateProfileSectionNamesW","features":[37]},{"name":"GetPrivateProfileSectionW","features":[37]},{"name":"GetPrivateProfileStringA","features":[37]},{"name":"GetPrivateProfileStringW","features":[37]},{"name":"GetPrivateProfileStructA","features":[3,37]},{"name":"GetPrivateProfileStructW","features":[3,37]},{"name":"GetProfileIntA","features":[37]},{"name":"GetProfileIntW","features":[37]},{"name":"GetProfileSectionA","features":[37]},{"name":"GetProfileSectionW","features":[37]},{"name":"GetProfileStringA","features":[37]},{"name":"GetProfileStringW","features":[37]},{"name":"GetSockOptIoControlType","features":[37]},{"name":"GetSystemRegistryQuota","features":[3,37]},{"name":"GetThreadEnabledXStateFeatures","features":[37]},{"name":"GetUserNameA","features":[3,37]},{"name":"GetUserNameW","features":[3,37]},{"name":"GetVersionFromFileA","features":[3,37]},{"name":"GetVersionFromFileExA","features":[3,37]},{"name":"GetVersionFromFileExW","features":[3,37]},{"name":"GetVersionFromFileW","features":[3,37]},{"name":"GetWindowRegionData","features":[3,14,37]},{"name":"GlobalCompact","features":[37]},{"name":"GlobalFix","features":[3,37]},{"name":"GlobalUnWire","features":[3,37]},{"name":"GlobalUnfix","features":[3,37]},{"name":"GlobalWire","features":[3,37]},{"name":"HANJA_WINDOW","features":[37]},{"name":"HINSTANCE_ERROR","features":[37]},{"name":"HWINWATCH","features":[37]},{"name":"HW_PROFILE_GUIDLEN","features":[37]},{"name":"HW_PROFILE_INFOA","features":[37]},{"name":"HW_PROFILE_INFOW","features":[37]},{"name":"ICameraUIControl","features":[37]},{"name":"ICameraUIControlEventCallback","features":[37]},{"name":"IClipServiceNotificationHelper","features":[37]},{"name":"IContainerActivationHelper","features":[37]},{"name":"IDefaultBrowserSyncSettings","features":[37]},{"name":"IDeleteBrowsingHistory","features":[37]},{"name":"IE4_BACKNEW","features":[37]},{"name":"IE4_EXTRAINCREFCNT","features":[37]},{"name":"IE4_FRDOALL","features":[37]},{"name":"IE4_NODELETENEW","features":[37]},{"name":"IE4_NOENUMKEY","features":[37]},{"name":"IE4_NOMESSAGES","features":[37]},{"name":"IE4_NOPROGRESS","features":[37]},{"name":"IE4_NO_CRC_MAPPING","features":[37]},{"name":"IE4_REGSECTION","features":[37]},{"name":"IE4_REMOVREGBKDATA","features":[37]},{"name":"IE4_RESTORE","features":[37]},{"name":"IE4_UPDREFCNT","features":[37]},{"name":"IE4_USEREFCNT","features":[37]},{"name":"IE_BADID","features":[37]},{"name":"IE_BAUDRATE","features":[37]},{"name":"IE_BYTESIZE","features":[37]},{"name":"IE_DEFAULT","features":[37]},{"name":"IE_HARDWARE","features":[37]},{"name":"IE_MEMORY","features":[37]},{"name":"IE_NOPEN","features":[37]},{"name":"IE_OPEN","features":[37]},{"name":"IEditionUpgradeBroker","features":[37]},{"name":"IEditionUpgradeHelper","features":[37]},{"name":"IFClipNotificationHelper","features":[37]},{"name":"IF_ENTITY","features":[37]},{"name":"IF_GENERIC","features":[37]},{"name":"IF_MIB","features":[37]},{"name":"IGNORE","features":[37]},{"name":"IMAGE_DELAYLOAD_DESCRIPTOR","features":[37]},{"name":"IMAGE_THUNK_DATA32","features":[37]},{"name":"IMAGE_THUNK_DATA64","features":[37]},{"name":"IMEA_INIT","features":[37]},{"name":"IMEA_NEXT","features":[37]},{"name":"IMEA_PREV","features":[37]},{"name":"IMEPROA","features":[3,37]},{"name":"IMEPROW","features":[3,37]},{"name":"IMESTRUCT","features":[3,37]},{"name":"IME_BANJAtoJUNJA","features":[37]},{"name":"IME_ENABLE_CONVERT","features":[37]},{"name":"IME_ENTERWORDREGISTERMODE","features":[37]},{"name":"IME_GETCONVERSIONMODE","features":[37]},{"name":"IME_GETIMECAPS","features":[37]},{"name":"IME_GETOPEN","features":[37]},{"name":"IME_GETVERSION","features":[37]},{"name":"IME_JOHABtoKS","features":[37]},{"name":"IME_JUNJAtoBANJA","features":[37]},{"name":"IME_KStoJOHAB","features":[37]},{"name":"IME_MAXPROCESS","features":[37]},{"name":"IME_MODE_ALPHANUMERIC","features":[37]},{"name":"IME_MODE_CODEINPUT","features":[37]},{"name":"IME_MODE_DBCSCHAR","features":[37]},{"name":"IME_MODE_HANJACONVERT","features":[37]},{"name":"IME_MODE_HIRAGANA","features":[37]},{"name":"IME_MODE_KATAKANA","features":[37]},{"name":"IME_MODE_NOCODEINPUT","features":[37]},{"name":"IME_MODE_NOROMAN","features":[37]},{"name":"IME_MODE_ROMAN","features":[37]},{"name":"IME_MODE_SBCSCHAR","features":[37]},{"name":"IME_MOVEIMEWINDOW","features":[37]},{"name":"IME_REQUEST_CONVERT","features":[37]},{"name":"IME_RS_DISKERROR","features":[37]},{"name":"IME_RS_ERROR","features":[37]},{"name":"IME_RS_ILLEGAL","features":[37]},{"name":"IME_RS_INVALID","features":[37]},{"name":"IME_RS_NEST","features":[37]},{"name":"IME_RS_NOIME","features":[37]},{"name":"IME_RS_NOROOM","features":[37]},{"name":"IME_RS_NOTFOUND","features":[37]},{"name":"IME_RS_SYSTEMMODAL","features":[37]},{"name":"IME_RS_TOOLONG","features":[37]},{"name":"IME_SENDVKEY","features":[37]},{"name":"IME_SETCONVERSIONFONTEX","features":[37]},{"name":"IME_SETCONVERSIONMODE","features":[37]},{"name":"IME_SETCONVERSIONWINDOW","features":[37]},{"name":"IME_SETOPEN","features":[37]},{"name":"IME_SET_MODE","features":[37]},{"name":"IMPGetIMEA","features":[3,37]},{"name":"IMPGetIMEW","features":[3,37]},{"name":"IMPQueryIMEA","features":[3,37]},{"name":"IMPQueryIMEW","features":[3,37]},{"name":"IMPSetIMEA","features":[3,37]},{"name":"IMPSetIMEW","features":[3,37]},{"name":"INFO_CLASS_GENERIC","features":[37]},{"name":"INFO_CLASS_IMPLEMENTATION","features":[37]},{"name":"INFO_CLASS_PROTOCOL","features":[37]},{"name":"INFO_TYPE_ADDRESS_OBJECT","features":[37]},{"name":"INFO_TYPE_CONNECTION","features":[37]},{"name":"INFO_TYPE_PROVIDER","features":[37]},{"name":"INTERIM_WINDOW","features":[37]},{"name":"INVALID_ENTITY_INSTANCE","features":[37]},{"name":"IOCTL_TDI_TL_IO_CONTROL_ENDPOINT","features":[37]},{"name":"IR_CHANGECONVERT","features":[37]},{"name":"IR_CLOSECONVERT","features":[37]},{"name":"IR_DBCSCHAR","features":[37]},{"name":"IR_FULLCONVERT","features":[37]},{"name":"IR_IMESELECT","features":[37]},{"name":"IR_MODEINFO","features":[37]},{"name":"IR_OPENCONVERT","features":[37]},{"name":"IR_STRING","features":[37]},{"name":"IR_STRINGEND","features":[37]},{"name":"IR_STRINGEX","features":[37]},{"name":"IR_STRINGSTART","features":[37]},{"name":"IR_UNDETERMINE","features":[37]},{"name":"IWindowsLockModeHelper","features":[37]},{"name":"IsApiSetImplemented","features":[3,37]},{"name":"IsBadHugeReadPtr","features":[3,37]},{"name":"IsBadHugeWritePtr","features":[3,37]},{"name":"IsNTAdmin","features":[3,37]},{"name":"IsNativeVhdBoot","features":[3,37]},{"name":"IsTokenUntrusted","features":[3,37]},{"name":"JAVA_TRUST","features":[3,37]},{"name":"JIT_DEBUG_INFO","features":[37]},{"name":"KEY_ALL_KEYS","features":[37]},{"name":"KEY_OVERRIDE","features":[37]},{"name":"KEY_UNKNOWN","features":[37]},{"name":"LDR_DATA_TABLE_ENTRY","features":[3,9,37]},{"name":"LIS_NOGRPCONV","features":[37]},{"name":"LIS_QUIET","features":[37]},{"name":"LOGON32_PROVIDER_VIRTUAL","features":[37]},{"name":"LOGON32_PROVIDER_WINNT35","features":[37]},{"name":"LOGON_ZERO_PASSWORD_BUFFER","features":[37]},{"name":"LPTx","features":[37]},{"name":"LaunchINFSectionExW","features":[3,37]},{"name":"LaunchINFSectionW","features":[3,37]},{"name":"LocalCompact","features":[37]},{"name":"LocalShrink","features":[3,37]},{"name":"MAXINTATOM","features":[37]},{"name":"MAX_COMPUTERNAME_LENGTH","features":[37]},{"name":"MAX_TDI_ENTITIES","features":[37]},{"name":"MCW_DEFAULT","features":[37]},{"name":"MCW_HIDDEN","features":[37]},{"name":"MCW_RECT","features":[37]},{"name":"MCW_SCREEN","features":[37]},{"name":"MCW_VERTICAL","features":[37]},{"name":"MCW_WINDOW","features":[37]},{"name":"MICROSOFT_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[37]},{"name":"MICROSOFT_WINDOWS_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[37]},{"name":"MODE_WINDOW","features":[37]},{"name":"MulDiv","features":[37]},{"name":"NeedReboot","features":[3,37]},{"name":"NeedRebootInit","features":[37]},{"name":"OFS_MAXPATHNAME","features":[37]},{"name":"OPERATION_API_VERSION","features":[37]},{"name":"OVERWRITE_HIDDEN","features":[37]},{"name":"OpenINFEngineA","features":[37]},{"name":"OpenINFEngineW","features":[37]},{"name":"OpenMutexA","features":[3,37]},{"name":"OpenSemaphoreA","features":[3,37]},{"name":"PCF_16BITMODE","features":[37]},{"name":"PCF_DTRDSR","features":[37]},{"name":"PCF_INTTIMEOUTS","features":[37]},{"name":"PCF_PARITY_CHECK","features":[37]},{"name":"PCF_RLSD","features":[37]},{"name":"PCF_RTSCTS","features":[37]},{"name":"PCF_SETXCHAR","features":[37]},{"name":"PCF_SPECIALCHARS","features":[37]},{"name":"PCF_TOTALTIMEOUTS","features":[37]},{"name":"PCF_XONXOFF","features":[37]},{"name":"PDELAYLOAD_FAILURE_DLL_CALLBACK","features":[37]},{"name":"PERUSERSECTIONA","features":[3,37]},{"name":"PERUSERSECTIONW","features":[3,37]},{"name":"PFEATURE_STATE_CHANGE_CALLBACK","features":[37]},{"name":"PFIBER_CALLOUT_ROUTINE","features":[37]},{"name":"PQUERYACTCTXW_FUNC","features":[3,37]},{"name":"PROCESS_CREATION_ALL_APPLICATION_PACKAGES_OPT_OUT","features":[37]},{"name":"PROCESS_CREATION_CHILD_PROCESS_OVERRIDE","features":[37]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED","features":[37]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED_UNLESS_SECURE","features":[37]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_DISABLE_PROCESS_TREE","features":[37]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_ENABLE_PROCESS_TREE","features":[37]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_OVERRIDE","features":[37]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ATL_THUNK_ENABLE","features":[37]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ENABLE","features":[37]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_SEHOP_ENABLE","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_ADDITIVE","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_INPUT","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_NUMBER","features":[37]},{"name":"PROC_THREAD_ATTRIBUTE_THREAD","features":[37]},{"name":"PROGRESS_CANCEL","features":[37]},{"name":"PROGRESS_CONTINUE","features":[37]},{"name":"PROGRESS_QUIET","features":[37]},{"name":"PROGRESS_STOP","features":[37]},{"name":"PROTECTION_LEVEL_SAME","features":[37]},{"name":"PST_FAX","features":[37]},{"name":"PST_LAT","features":[37]},{"name":"PST_MODEM","features":[37]},{"name":"PST_NETWORK_BRIDGE","features":[37]},{"name":"PST_PARALLELPORT","features":[37]},{"name":"PST_RS232","features":[37]},{"name":"PST_RS422","features":[37]},{"name":"PST_RS423","features":[37]},{"name":"PST_RS449","features":[37]},{"name":"PST_SCANNER","features":[37]},{"name":"PST_TCPIP_TELNET","features":[37]},{"name":"PST_UNSPECIFIED","features":[37]},{"name":"PST_X25","features":[37]},{"name":"PUBLIC_OBJECT_BASIC_INFORMATION","features":[37]},{"name":"PUBLIC_OBJECT_TYPE_INFORMATION","features":[3,37]},{"name":"PWINSTATIONQUERYINFORMATIONW","features":[3,37]},{"name":"PWLDP_CANEXECUTEBUFFER_API","features":[37]},{"name":"PWLDP_CANEXECUTEFILE_API","features":[3,37]},{"name":"PWLDP_CANEXECUTESTREAM_API","features":[37]},{"name":"PWLDP_ISAPPAPPROVEDBYPOLICY_API","features":[37]},{"name":"PWLDP_ISDYNAMICCODEPOLICYENABLED_API","features":[3,37]},{"name":"PWLDP_ISPRODUCTIONCONFIGURATION_API","features":[3,37]},{"name":"PWLDP_ISWCOSPRODUCTIONCONFIGURATION_API","features":[3,37]},{"name":"PWLDP_QUERYDEVICESECURITYINFORMATION_API","features":[37]},{"name":"PWLDP_QUERYDYNAMICODETRUST_API","features":[3,37]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED2_API","features":[3,37]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED_API","features":[3,37]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNMODE_API","features":[37]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_API","features":[37]},{"name":"PWLDP_RESETPRODUCTIONCONFIGURATION_API","features":[37]},{"name":"PWLDP_RESETWCOSPRODUCTIONCONFIGURATION_API","features":[37]},{"name":"PWLDP_SETDYNAMICCODETRUST_API","features":[3,37]},{"name":"PWLDP_SETWINDOWSLOCKDOWNRESTRICTION_API","features":[37]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS","features":[37]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE","features":[37]},{"name":"QUERY_ACTCTX_FLAG_NO_ADDREF","features":[37]},{"name":"QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX","features":[37]},{"name":"QueryAuxiliaryCounterFrequency","features":[37]},{"name":"QueryIdleProcessorCycleTime","features":[3,37]},{"name":"QueryIdleProcessorCycleTimeEx","features":[3,37]},{"name":"QueryInterruptTime","features":[37]},{"name":"QueryInterruptTimePrecise","features":[37]},{"name":"QueryProcessCycleTime","features":[3,37]},{"name":"QueryThreadCycleTime","features":[3,37]},{"name":"QueryUnbiasedInterruptTime","features":[3,37]},{"name":"QueryUnbiasedInterruptTimePrecise","features":[37]},{"name":"RECOVERY_DEFAULT_PING_INTERVAL","features":[37]},{"name":"REGINSTALLA","features":[3,37]},{"name":"REG_RESTORE_LOG_KEY","features":[37]},{"name":"REG_SAVE_LOG_KEY","features":[37]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_LOOPBACK","features":[37]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_OFFLINE","features":[37]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_PERSISTENT_HANDLE","features":[37]},{"name":"RESETDEV","features":[37]},{"name":"RESTART_MAX_CMD_LINE","features":[37]},{"name":"RPI_FLAG_SMB2_SHARECAP_CLUSTER","features":[37]},{"name":"RPI_FLAG_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[37]},{"name":"RPI_FLAG_SMB2_SHARECAP_DFS","features":[37]},{"name":"RPI_FLAG_SMB2_SHARECAP_SCALEOUT","features":[37]},{"name":"RPI_FLAG_SMB2_SHARECAP_TIMEWARP","features":[37]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DFS","features":[37]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DIRECTORY_LEASING","features":[37]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LARGEMTU","features":[37]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LEASING","features":[37]},{"name":"RPI_SMB2_FLAG_SERVERCAP_MULTICHANNEL","features":[37]},{"name":"RPI_SMB2_FLAG_SERVERCAP_PERSISTENT_HANDLES","features":[37]},{"name":"RPI_SMB2_SHAREFLAG_COMPRESS_DATA","features":[37]},{"name":"RPI_SMB2_SHAREFLAG_ENCRYPT_DATA","features":[37]},{"name":"RSC_FLAG_DELAYREGISTEROCX","features":[37]},{"name":"RSC_FLAG_INF","features":[37]},{"name":"RSC_FLAG_NGCONV","features":[37]},{"name":"RSC_FLAG_QUIET","features":[37]},{"name":"RSC_FLAG_SETUPAPI","features":[37]},{"name":"RSC_FLAG_SKIPDISKSPACECHECK","features":[37]},{"name":"RSC_FLAG_UPDHLPDLLS","features":[37]},{"name":"RTS_CONTROL_DISABLE","features":[37]},{"name":"RTS_CONTROL_ENABLE","features":[37]},{"name":"RTS_CONTROL_HANDSHAKE","features":[37]},{"name":"RTS_CONTROL_TOGGLE","features":[37]},{"name":"RUNCMDS_DELAYPOSTCMD","features":[37]},{"name":"RUNCMDS_NOWAIT","features":[37]},{"name":"RUNCMDS_QUIET","features":[37]},{"name":"RaiseCustomSystemEventTrigger","features":[37]},{"name":"RebootCheckOnInstallA","features":[3,37]},{"name":"RebootCheckOnInstallW","features":[3,37]},{"name":"RecordFeatureError","features":[37]},{"name":"RecordFeatureUsage","features":[37]},{"name":"RegInstallA","features":[3,37]},{"name":"RegInstallW","features":[3,37]},{"name":"RegRestoreAllA","features":[3,51,37]},{"name":"RegRestoreAllW","features":[3,51,37]},{"name":"RegSaveRestoreA","features":[3,51,37]},{"name":"RegSaveRestoreOnINFA","features":[3,51,37]},{"name":"RegSaveRestoreOnINFW","features":[3,51,37]},{"name":"RegSaveRestoreW","features":[3,51,37]},{"name":"ReplacePartitionUnit","features":[3,37]},{"name":"RequestDeviceWakeup","features":[3,37]},{"name":"RtlAnsiStringToUnicodeString","features":[3,9,37]},{"name":"RtlCharToInteger","features":[3,37]},{"name":"RtlFreeAnsiString","features":[9,37]},{"name":"RtlFreeOemString","features":[9,37]},{"name":"RtlFreeUnicodeString","features":[3,37]},{"name":"RtlGetReturnAddressHijackTarget","features":[37]},{"name":"RtlInitAnsiString","features":[9,37]},{"name":"RtlInitAnsiStringEx","features":[3,9,37]},{"name":"RtlInitString","features":[9,37]},{"name":"RtlInitStringEx","features":[3,9,37]},{"name":"RtlInitUnicodeString","features":[3,37]},{"name":"RtlIsNameLegalDOS8Dot3","features":[3,9,37]},{"name":"RtlLocalTimeToSystemTime","features":[3,37]},{"name":"RtlRaiseCustomSystemEventTrigger","features":[37]},{"name":"RtlTimeToSecondsSince1970","features":[3,37]},{"name":"RtlUnicodeStringToAnsiString","features":[3,9,37]},{"name":"RtlUnicodeStringToOemString","features":[3,9,37]},{"name":"RtlUnicodeToMultiByteSize","features":[3,37]},{"name":"RtlUniform","features":[37]},{"name":"RunSetupCommandA","features":[3,37]},{"name":"RunSetupCommandW","features":[3,37]},{"name":"SCS_32BIT_BINARY","features":[37]},{"name":"SCS_64BIT_BINARY","features":[37]},{"name":"SCS_DOS_BINARY","features":[37]},{"name":"SCS_OS216_BINARY","features":[37]},{"name":"SCS_PIF_BINARY","features":[37]},{"name":"SCS_POSIX_BINARY","features":[37]},{"name":"SCS_THIS_PLATFORM_BINARY","features":[37]},{"name":"SCS_WOW_BINARY","features":[37]},{"name":"SHUTDOWN_NORETRY","features":[37]},{"name":"SP_BAUD","features":[37]},{"name":"SP_DATABITS","features":[37]},{"name":"SP_HANDSHAKING","features":[37]},{"name":"SP_PARITY","features":[37]},{"name":"SP_PARITY_CHECK","features":[37]},{"name":"SP_RLSD","features":[37]},{"name":"SP_SERIALCOMM","features":[37]},{"name":"SP_STOPBITS","features":[37]},{"name":"STARTF_HOLOGRAPHIC","features":[37]},{"name":"STORAGE_INFO_FLAGS_ALIGNED_DEVICE","features":[37]},{"name":"STORAGE_INFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[37]},{"name":"STORAGE_INFO_OFFSET_UNKNOWN","features":[37]},{"name":"STREAM_CONTAINS_GHOSTED_FILE_EXTENTS","features":[37]},{"name":"STREAM_CONTAINS_PROPERTIES","features":[37]},{"name":"STREAM_CONTAINS_SECURITY","features":[37]},{"name":"STREAM_MODIFIED_WHEN_READ","features":[37]},{"name":"STREAM_NORMAL_ATTRIBUTE","features":[37]},{"name":"STREAM_SPARSE_ATTRIBUTE","features":[37]},{"name":"STRENTRYA","features":[37]},{"name":"STRENTRYW","features":[37]},{"name":"STRINGEXSTRUCT","features":[37]},{"name":"STRTABLEA","features":[37]},{"name":"STRTABLEW","features":[37]},{"name":"SYSTEM_BASIC_INFORMATION","features":[37]},{"name":"SYSTEM_CODEINTEGRITY_INFORMATION","features":[37]},{"name":"SYSTEM_EXCEPTION_INFORMATION","features":[37]},{"name":"SYSTEM_INTERRUPT_INFORMATION","features":[37]},{"name":"SYSTEM_LOOKASIDE_INFORMATION","features":[37]},{"name":"SYSTEM_PERFORMANCE_INFORMATION","features":[37]},{"name":"SYSTEM_POLICY_INFORMATION","features":[37]},{"name":"SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION","features":[37]},{"name":"SYSTEM_PROCESS_INFORMATION","features":[3,37]},{"name":"SYSTEM_REGISTRY_QUOTA_INFORMATION","features":[37]},{"name":"SYSTEM_STATUS_FLAG_POWER_SAVING_ON","features":[37]},{"name":"SYSTEM_THREAD_INFORMATION","features":[3,37]},{"name":"SYSTEM_TIMEOFDAY_INFORMATION","features":[37]},{"name":"S_ALLTHRESHOLD","features":[37]},{"name":"S_LEGATO","features":[37]},{"name":"S_NORMAL","features":[37]},{"name":"S_PERIOD1024","features":[37]},{"name":"S_PERIOD2048","features":[37]},{"name":"S_PERIOD512","features":[37]},{"name":"S_PERIODVOICE","features":[37]},{"name":"S_QUEUEEMPTY","features":[37]},{"name":"S_SERBDNT","features":[37]},{"name":"S_SERDCC","features":[37]},{"name":"S_SERDDR","features":[37]},{"name":"S_SERDFQ","features":[37]},{"name":"S_SERDLN","features":[37]},{"name":"S_SERDMD","features":[37]},{"name":"S_SERDPT","features":[37]},{"name":"S_SERDSH","features":[37]},{"name":"S_SERDSR","features":[37]},{"name":"S_SERDST","features":[37]},{"name":"S_SERDTP","features":[37]},{"name":"S_SERDVL","features":[37]},{"name":"S_SERDVNA","features":[37]},{"name":"S_SERMACT","features":[37]},{"name":"S_SEROFM","features":[37]},{"name":"S_SERQFUL","features":[37]},{"name":"S_STACCATO","features":[37]},{"name":"S_THRESHOLD","features":[37]},{"name":"S_WHITE1024","features":[37]},{"name":"S_WHITE2048","features":[37]},{"name":"S_WHITE512","features":[37]},{"name":"S_WHITEVOICE","features":[37]},{"name":"SendIMEMessageExA","features":[3,37]},{"name":"SendIMEMessageExW","features":[3,37]},{"name":"SetEnvironmentStringsA","features":[3,37]},{"name":"SetFirmwareEnvironmentVariableA","features":[3,37]},{"name":"SetFirmwareEnvironmentVariableExA","features":[3,37]},{"name":"SetFirmwareEnvironmentVariableExW","features":[3,37]},{"name":"SetFirmwareEnvironmentVariableW","features":[3,37]},{"name":"SetHandleCount","features":[37]},{"name":"SetMessageWaitingIndicator","features":[3,37]},{"name":"SetPerUserSecValuesA","features":[3,37]},{"name":"SetPerUserSecValuesW","features":[3,37]},{"name":"SetSockOptIoControlType","features":[37]},{"name":"SocketIoControlType","features":[37]},{"name":"SubscribeFeatureStateChangeNotification","features":[37]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX32_XP","features":[37]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_W2K","features":[37]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_XP","features":[37]},{"name":"TCP_REQUEST_SET_INFORMATION_EX","features":[37]},{"name":"TC_GP_TRAP","features":[37]},{"name":"TC_HARDERR","features":[37]},{"name":"TC_NORMAL","features":[37]},{"name":"TC_SIGNAL","features":[37]},{"name":"TDIENTITY_ENTITY_TYPE","features":[37]},{"name":"TDIEntityID","features":[37]},{"name":"TDIObjectID","features":[37]},{"name":"TDI_TL_IO_CONTROL_ENDPOINT","features":[37]},{"name":"TDI_TL_IO_CONTROL_TYPE","features":[37]},{"name":"THREAD_NAME_INFORMATION","features":[3,37]},{"name":"THREAD_PRIORITY_ERROR_RETURN","features":[37]},{"name":"TranslateInfStringA","features":[37]},{"name":"TranslateInfStringExA","features":[37]},{"name":"TranslateInfStringExW","features":[37]},{"name":"TranslateInfStringW","features":[37]},{"name":"UMS_VERSION","features":[37]},{"name":"UNDETERMINESTRUCT","features":[37]},{"name":"UnsubscribeFeatureStateChangeNotification","features":[37]},{"name":"UserInstStubWrapperA","features":[3,37]},{"name":"UserInstStubWrapperW","features":[3,37]},{"name":"UserUnInstStubWrapperA","features":[3,37]},{"name":"UserUnInstStubWrapperW","features":[3,37]},{"name":"VALUENAME","features":[37]},{"name":"VALUENAME_BUILT_IN_LIST","features":[37]},{"name":"VALUENAME_ENTERPRISE_DEFINED_CLASS_ID","features":[37]},{"name":"VALUENAME_UNKNOWN","features":[37]},{"name":"WINNLSEnableIME","features":[3,37]},{"name":"WINNLSGetEnableStatus","features":[3,37]},{"name":"WINNLSGetIMEHotkey","features":[3,37]},{"name":"WINSTATIONINFOCLASS","features":[37]},{"name":"WINSTATIONINFORMATIONW","features":[37]},{"name":"WINWATCHNOTIFYPROC","features":[3,37]},{"name":"WINWATCHNOTIFY_CHANGED","features":[37]},{"name":"WINWATCHNOTIFY_CHANGING","features":[37]},{"name":"WINWATCHNOTIFY_DESTROY","features":[37]},{"name":"WINWATCHNOTIFY_START","features":[37]},{"name":"WINWATCHNOTIFY_STOP","features":[37]},{"name":"WLDP_CANEXECUTEBUFFER_FN","features":[37]},{"name":"WLDP_CANEXECUTEFILE_FN","features":[37]},{"name":"WLDP_DEVICE_SECURITY_INFORMATION","features":[37]},{"name":"WLDP_DLL","features":[37]},{"name":"WLDP_EXECUTION_EVALUATION_OPTIONS","features":[37]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_EXECUTE_IN_INTERACTIVE_SESSION","features":[37]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_NONE","features":[37]},{"name":"WLDP_EXECUTION_POLICY","features":[37]},{"name":"WLDP_EXECUTION_POLICY_ALLOWED","features":[37]},{"name":"WLDP_EXECUTION_POLICY_BLOCKED","features":[37]},{"name":"WLDP_EXECUTION_POLICY_REQUIRE_SANDBOX","features":[37]},{"name":"WLDP_FLAGS_SKIPSIGNATUREVALIDATION","features":[37]},{"name":"WLDP_GETLOCKDOWNPOLICY_FN","features":[37]},{"name":"WLDP_HOST","features":[37]},{"name":"WLDP_HOST_CMD","features":[37]},{"name":"WLDP_HOST_HTML","features":[37]},{"name":"WLDP_HOST_ID","features":[37]},{"name":"WLDP_HOST_ID_ALL","features":[37]},{"name":"WLDP_HOST_ID_GLOBAL","features":[37]},{"name":"WLDP_HOST_ID_IE","features":[37]},{"name":"WLDP_HOST_ID_MAX","features":[37]},{"name":"WLDP_HOST_ID_MSI","features":[37]},{"name":"WLDP_HOST_ID_POWERSHELL","features":[37]},{"name":"WLDP_HOST_ID_UNKNOWN","features":[37]},{"name":"WLDP_HOST_ID_VBA","features":[37]},{"name":"WLDP_HOST_ID_WSH","features":[37]},{"name":"WLDP_HOST_INFORMATION","features":[3,37]},{"name":"WLDP_HOST_INFORMATION_REVISION","features":[37]},{"name":"WLDP_HOST_JAVASCRIPT","features":[37]},{"name":"WLDP_HOST_MAX","features":[37]},{"name":"WLDP_HOST_MSI","features":[37]},{"name":"WLDP_HOST_OTHER","features":[37]},{"name":"WLDP_HOST_POWERSHELL","features":[37]},{"name":"WLDP_HOST_PYTHON","features":[37]},{"name":"WLDP_HOST_RUNDLL32","features":[37]},{"name":"WLDP_HOST_SVCHOST","features":[37]},{"name":"WLDP_HOST_WINDOWS_SCRIPT_HOST","features":[37]},{"name":"WLDP_HOST_XML","features":[37]},{"name":"WLDP_ISAPPAPPROVEDBYPOLICY_FN","features":[37]},{"name":"WLDP_ISCLASSINAPPROVEDLIST_FN","features":[37]},{"name":"WLDP_ISDYNAMICCODEPOLICYENABLED_FN","features":[37]},{"name":"WLDP_ISPRODUCTIONCONFIGURATION_FN","features":[37]},{"name":"WLDP_ISWCOSPRODUCTIONCONFIGURATION_FN","features":[37]},{"name":"WLDP_KEY","features":[37]},{"name":"WLDP_LOCKDOWN_AUDIT_FLAG","features":[37]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_AUDIT_FLAG","features":[37]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_FLAG","features":[37]},{"name":"WLDP_LOCKDOWN_DEFINED_FLAG","features":[37]},{"name":"WLDP_LOCKDOWN_EXCLUSION_FLAG","features":[37]},{"name":"WLDP_LOCKDOWN_OFF","features":[37]},{"name":"WLDP_LOCKDOWN_UMCIENFORCE_FLAG","features":[37]},{"name":"WLDP_LOCKDOWN_UNDEFINED","features":[37]},{"name":"WLDP_POLICY_SETTING","features":[37]},{"name":"WLDP_POLICY_SETTING_AV_PERF_MODE","features":[37]},{"name":"WLDP_QUERYDANAMICCODETRUST_FN","features":[37]},{"name":"WLDP_QUERYDEVICESECURITYINFORMATION_FN","features":[37]},{"name":"WLDP_QUERYDYNAMICCODETRUST_FN","features":[37]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED2_FN","features":[37]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED_FN","features":[37]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNMODE_FN","features":[37]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_FN","features":[37]},{"name":"WLDP_RESETPRODUCTIONCONFIGURATION_FN","features":[37]},{"name":"WLDP_RESETWCOSPRODUCTIONCONFIGURATION_FN","features":[37]},{"name":"WLDP_SETDYNAMICCODETRUST_FN","features":[37]},{"name":"WLDP_SETWINDOWSLOCKDOWNRESTRICTION_FN","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_LOCKED","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_MAX","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_TRIAL","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_MAX","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NONE","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK","features":[37]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK_PERMANENT","features":[37]},{"name":"WM_CONVERTREQUEST","features":[37]},{"name":"WM_CONVERTRESULT","features":[37]},{"name":"WM_IMEKEYDOWN","features":[37]},{"name":"WM_IMEKEYUP","features":[37]},{"name":"WM_IME_REPORT","features":[37]},{"name":"WM_INTERIM","features":[37]},{"name":"WM_WNT_CONVERTREQUESTEX","features":[37]},{"name":"WinStationInformation","features":[37]},{"name":"WinWatchClose","features":[37]},{"name":"WinWatchDidStatusChange","features":[3,37]},{"name":"WinWatchGetClipList","features":[3,14,37]},{"name":"WinWatchNotify","features":[3,37]},{"name":"WinWatchOpen","features":[3,37]},{"name":"WldpCanExecuteBuffer","features":[37]},{"name":"WldpCanExecuteFile","features":[3,37]},{"name":"WldpCanExecuteStream","features":[37]},{"name":"WldpGetLockdownPolicy","features":[3,37]},{"name":"WldpIsClassInApprovedList","features":[3,37]},{"name":"WldpIsDynamicCodePolicyEnabled","features":[3,37]},{"name":"WldpQueryDeviceSecurityInformation","features":[37]},{"name":"WldpQueryDynamicCodeTrust","features":[3,37]},{"name":"WldpSetDynamicCodeTrust","features":[3,37]},{"name":"WritePrivateProfileSectionA","features":[3,37]},{"name":"WritePrivateProfileSectionW","features":[3,37]},{"name":"WritePrivateProfileStringA","features":[3,37]},{"name":"WritePrivateProfileStringW","features":[3,37]},{"name":"WritePrivateProfileStructA","features":[3,37]},{"name":"WritePrivateProfileStructW","features":[3,37]},{"name":"WriteProfileSectionA","features":[3,37]},{"name":"WriteProfileSectionW","features":[3,37]},{"name":"WriteProfileStringA","features":[3,37]},{"name":"WriteProfileStringW","features":[3,37]},{"name":"_hread","features":[37]},{"name":"_hwrite","features":[37]},{"name":"_lclose","features":[37]},{"name":"_lcreat","features":[37]},{"name":"_llseek","features":[37]},{"name":"_lopen","features":[37]},{"name":"_lread","features":[37]},{"name":"_lwrite","features":[37]},{"name":"uaw_lstrcmpW","features":[37]},{"name":"uaw_lstrcmpiW","features":[37]},{"name":"uaw_lstrlenW","features":[37]},{"name":"uaw_wcschr","features":[37]},{"name":"uaw_wcscpy","features":[37]},{"name":"uaw_wcsicmp","features":[37]},{"name":"uaw_wcslen","features":[37]},{"name":"uaw_wcsrchr","features":[37]}],"648":[{"name":"CIMTYPE_ENUMERATION","features":[209]},{"name":"CIM_BOOLEAN","features":[209]},{"name":"CIM_CHAR16","features":[209]},{"name":"CIM_DATETIME","features":[209]},{"name":"CIM_EMPTY","features":[209]},{"name":"CIM_FLAG_ARRAY","features":[209]},{"name":"CIM_ILLEGAL","features":[209]},{"name":"CIM_OBJECT","features":[209]},{"name":"CIM_REAL32","features":[209]},{"name":"CIM_REAL64","features":[209]},{"name":"CIM_REFERENCE","features":[209]},{"name":"CIM_SINT16","features":[209]},{"name":"CIM_SINT32","features":[209]},{"name":"CIM_SINT64","features":[209]},{"name":"CIM_SINT8","features":[209]},{"name":"CIM_STRING","features":[209]},{"name":"CIM_UINT16","features":[209]},{"name":"CIM_UINT32","features":[209]},{"name":"CIM_UINT64","features":[209]},{"name":"CIM_UINT8","features":[209]},{"name":"IEnumWbemClassObject","features":[209]},{"name":"IMofCompiler","features":[209]},{"name":"ISWbemDateTime","features":[209]},{"name":"ISWbemEventSource","features":[209]},{"name":"ISWbemLastError","features":[209]},{"name":"ISWbemLocator","features":[209]},{"name":"ISWbemMethod","features":[209]},{"name":"ISWbemMethodSet","features":[209]},{"name":"ISWbemNamedValue","features":[209]},{"name":"ISWbemNamedValueSet","features":[209]},{"name":"ISWbemObject","features":[209]},{"name":"ISWbemObjectEx","features":[209]},{"name":"ISWbemObjectPath","features":[209]},{"name":"ISWbemObjectSet","features":[209]},{"name":"ISWbemPrivilege","features":[209]},{"name":"ISWbemPrivilegeSet","features":[209]},{"name":"ISWbemProperty","features":[209]},{"name":"ISWbemPropertySet","features":[209]},{"name":"ISWbemQualifier","features":[209]},{"name":"ISWbemQualifierSet","features":[209]},{"name":"ISWbemRefreshableItem","features":[209]},{"name":"ISWbemRefresher","features":[209]},{"name":"ISWbemSecurity","features":[209]},{"name":"ISWbemServices","features":[209]},{"name":"ISWbemServicesEx","features":[209]},{"name":"ISWbemSink","features":[209]},{"name":"ISWbemSinkEvents","features":[209]},{"name":"IUnsecuredApartment","features":[209]},{"name":"IWMIExtension","features":[209]},{"name":"IWbemAddressResolution","features":[209]},{"name":"IWbemBackupRestore","features":[209]},{"name":"IWbemBackupRestoreEx","features":[209]},{"name":"IWbemCallResult","features":[209]},{"name":"IWbemClassObject","features":[209]},{"name":"IWbemClientConnectionTransport","features":[209]},{"name":"IWbemClientTransport","features":[209]},{"name":"IWbemConfigureRefresher","features":[209]},{"name":"IWbemConnectorLogin","features":[209]},{"name":"IWbemConstructClassObject","features":[209]},{"name":"IWbemContext","features":[209]},{"name":"IWbemDecoupledBasicEventProvider","features":[209]},{"name":"IWbemDecoupledRegistrar","features":[209]},{"name":"IWbemEventConsumerProvider","features":[209]},{"name":"IWbemEventProvider","features":[209]},{"name":"IWbemEventProviderQuerySink","features":[209]},{"name":"IWbemEventProviderSecurity","features":[209]},{"name":"IWbemEventSink","features":[209]},{"name":"IWbemHiPerfEnum","features":[209]},{"name":"IWbemHiPerfProvider","features":[209]},{"name":"IWbemLevel1Login","features":[209]},{"name":"IWbemLocator","features":[209]},{"name":"IWbemObjectAccess","features":[209]},{"name":"IWbemObjectSink","features":[209]},{"name":"IWbemObjectSinkEx","features":[209]},{"name":"IWbemObjectTextSrc","features":[209]},{"name":"IWbemPath","features":[209]},{"name":"IWbemPathKeyList","features":[209]},{"name":"IWbemPropertyProvider","features":[209]},{"name":"IWbemProviderIdentity","features":[209]},{"name":"IWbemProviderInit","features":[209]},{"name":"IWbemProviderInitSink","features":[209]},{"name":"IWbemQualifierSet","features":[209]},{"name":"IWbemQuery","features":[209]},{"name":"IWbemRefresher","features":[209]},{"name":"IWbemServices","features":[209]},{"name":"IWbemShutdown","features":[209]},{"name":"IWbemStatusCodeText","features":[209]},{"name":"IWbemTransport","features":[209]},{"name":"IWbemUnboundObjectSink","features":[209]},{"name":"IWbemUnsecuredApartment","features":[209]},{"name":"MI_ARRAY","features":[209]},{"name":"MI_Application","features":[209]},{"name":"MI_ApplicationFT","features":[209]},{"name":"MI_Application_InitializeV1","features":[209]},{"name":"MI_Array","features":[209]},{"name":"MI_ArrayField","features":[209]},{"name":"MI_BOOLEAN","features":[209]},{"name":"MI_BOOLEANA","features":[209]},{"name":"MI_BooleanA","features":[209]},{"name":"MI_BooleanAField","features":[209]},{"name":"MI_BooleanField","features":[209]},{"name":"MI_CALLBACKMODE_IGNORE","features":[209]},{"name":"MI_CALLBACKMODE_INQUIRE","features":[209]},{"name":"MI_CALLBACKMODE_REPORT","features":[209]},{"name":"MI_CALL_VERSION","features":[209]},{"name":"MI_CHAR16","features":[209]},{"name":"MI_CHAR16A","features":[209]},{"name":"MI_CHAR_TYPE","features":[209]},{"name":"MI_CallbackMode","features":[209]},{"name":"MI_CancelCallback","features":[209]},{"name":"MI_CancellationReason","features":[209]},{"name":"MI_Char16A","features":[209]},{"name":"MI_Char16AField","features":[209]},{"name":"MI_Char16Field","features":[209]},{"name":"MI_Class","features":[209]},{"name":"MI_ClassDecl","features":[209]},{"name":"MI_ClassFT","features":[209]},{"name":"MI_ClientFT_V1","features":[209]},{"name":"MI_ConstBooleanA","features":[209]},{"name":"MI_ConstBooleanAField","features":[209]},{"name":"MI_ConstBooleanField","features":[209]},{"name":"MI_ConstChar16A","features":[209]},{"name":"MI_ConstChar16AField","features":[209]},{"name":"MI_ConstChar16Field","features":[209]},{"name":"MI_ConstDatetimeA","features":[209]},{"name":"MI_ConstDatetimeAField","features":[209]},{"name":"MI_ConstDatetimeField","features":[209]},{"name":"MI_ConstInstanceA","features":[209]},{"name":"MI_ConstInstanceAField","features":[209]},{"name":"MI_ConstInstanceField","features":[209]},{"name":"MI_ConstReal32A","features":[209]},{"name":"MI_ConstReal32AField","features":[209]},{"name":"MI_ConstReal32Field","features":[209]},{"name":"MI_ConstReal64A","features":[209]},{"name":"MI_ConstReal64AField","features":[209]},{"name":"MI_ConstReal64Field","features":[209]},{"name":"MI_ConstReferenceA","features":[209]},{"name":"MI_ConstReferenceAField","features":[209]},{"name":"MI_ConstReferenceField","features":[209]},{"name":"MI_ConstSint16A","features":[209]},{"name":"MI_ConstSint16AField","features":[209]},{"name":"MI_ConstSint16Field","features":[209]},{"name":"MI_ConstSint32A","features":[209]},{"name":"MI_ConstSint32AField","features":[209]},{"name":"MI_ConstSint32Field","features":[209]},{"name":"MI_ConstSint64A","features":[209]},{"name":"MI_ConstSint64AField","features":[209]},{"name":"MI_ConstSint64Field","features":[209]},{"name":"MI_ConstSint8A","features":[209]},{"name":"MI_ConstSint8AField","features":[209]},{"name":"MI_ConstSint8Field","features":[209]},{"name":"MI_ConstStringA","features":[209]},{"name":"MI_ConstStringAField","features":[209]},{"name":"MI_ConstStringField","features":[209]},{"name":"MI_ConstUint16A","features":[209]},{"name":"MI_ConstUint16AField","features":[209]},{"name":"MI_ConstUint16Field","features":[209]},{"name":"MI_ConstUint32A","features":[209]},{"name":"MI_ConstUint32AField","features":[209]},{"name":"MI_ConstUint32Field","features":[209]},{"name":"MI_ConstUint64A","features":[209]},{"name":"MI_ConstUint64AField","features":[209]},{"name":"MI_ConstUint64Field","features":[209]},{"name":"MI_ConstUint8A","features":[209]},{"name":"MI_ConstUint8AField","features":[209]},{"name":"MI_ConstUint8Field","features":[209]},{"name":"MI_Context","features":[209]},{"name":"MI_ContextFT","features":[209]},{"name":"MI_DATETIME","features":[209]},{"name":"MI_DATETIMEA","features":[209]},{"name":"MI_Datetime","features":[209]},{"name":"MI_DatetimeA","features":[209]},{"name":"MI_DatetimeAField","features":[209]},{"name":"MI_DatetimeField","features":[209]},{"name":"MI_Deserializer","features":[209]},{"name":"MI_DeserializerFT","features":[209]},{"name":"MI_Deserializer_ClassObjectNeeded","features":[209]},{"name":"MI_DestinationOptions","features":[209]},{"name":"MI_DestinationOptionsFT","features":[209]},{"name":"MI_DestinationOptions_ImpersonationType","features":[209]},{"name":"MI_DestinationOptions_ImpersonationType_Default","features":[209]},{"name":"MI_DestinationOptions_ImpersonationType_Delegate","features":[209]},{"name":"MI_DestinationOptions_ImpersonationType_Identify","features":[209]},{"name":"MI_DestinationOptions_ImpersonationType_Impersonate","features":[209]},{"name":"MI_DestinationOptions_ImpersonationType_None","features":[209]},{"name":"MI_ERRORCATEGORY_ACCESS_DENIED","features":[209]},{"name":"MI_ERRORCATEGORY_AUTHENTICATION_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_CLOS_EERROR","features":[209]},{"name":"MI_ERRORCATEGORY_CONNECTION_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_DEADLOCK_DETECTED","features":[209]},{"name":"MI_ERRORCATEGORY_DEVICE_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_FROM_STDERR","features":[209]},{"name":"MI_ERRORCATEGORY_INVALID_ARGUMENT","features":[209]},{"name":"MI_ERRORCATEGORY_INVALID_DATA","features":[209]},{"name":"MI_ERRORCATEGORY_INVALID_OPERATION","features":[209]},{"name":"MI_ERRORCATEGORY_INVALID_RESULT","features":[209]},{"name":"MI_ERRORCATEGORY_INVALID_TYPE","features":[209]},{"name":"MI_ERRORCATEGORY_LIMITS_EXCEEDED","features":[209]},{"name":"MI_ERRORCATEGORY_METADATA_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_NOT_ENABLED","features":[209]},{"name":"MI_ERRORCATEGORY_NOT_IMPLEMENTED","features":[209]},{"name":"MI_ERRORCATEGORY_NOT_INSTALLED","features":[209]},{"name":"MI_ERRORCATEGORY_NOT_SPECIFIED","features":[209]},{"name":"MI_ERRORCATEGORY_OBJECT_NOT_FOUND","features":[209]},{"name":"MI_ERRORCATEGORY_OPEN_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_OPERATION_STOPPED","features":[209]},{"name":"MI_ERRORCATEGORY_OPERATION_TIMEOUT","features":[209]},{"name":"MI_ERRORCATEGORY_PARSER_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_PROTOCOL_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_QUOTA_EXCEEDED","features":[209]},{"name":"MI_ERRORCATEGORY_READ_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_RESOURCE_BUSY","features":[209]},{"name":"MI_ERRORCATEGORY_RESOURCE_EXISTS","features":[209]},{"name":"MI_ERRORCATEGORY_RESOURCE_UNAVAILABLE","features":[209]},{"name":"MI_ERRORCATEGORY_SECURITY_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_SYNTAX_ERROR","features":[209]},{"name":"MI_ERRORCATEGORY_WRITE_ERROR","features":[209]},{"name":"MI_ErrorCategory","features":[209]},{"name":"MI_FLAG_ABSTRACT","features":[209]},{"name":"MI_FLAG_ADOPT","features":[209]},{"name":"MI_FLAG_ANY","features":[209]},{"name":"MI_FLAG_ASSOCIATION","features":[209]},{"name":"MI_FLAG_BORROW","features":[209]},{"name":"MI_FLAG_CLASS","features":[209]},{"name":"MI_FLAG_DISABLEOVERRIDE","features":[209]},{"name":"MI_FLAG_ENABLEOVERRIDE","features":[209]},{"name":"MI_FLAG_EXPENSIVE","features":[209]},{"name":"MI_FLAG_EXTENDED","features":[209]},{"name":"MI_FLAG_IN","features":[209]},{"name":"MI_FLAG_INDICATION","features":[209]},{"name":"MI_FLAG_KEY","features":[209]},{"name":"MI_FLAG_METHOD","features":[209]},{"name":"MI_FLAG_NOT_MODIFIED","features":[209]},{"name":"MI_FLAG_NULL","features":[209]},{"name":"MI_FLAG_OUT","features":[209]},{"name":"MI_FLAG_PARAMETER","features":[209]},{"name":"MI_FLAG_PROPERTY","features":[209]},{"name":"MI_FLAG_READONLY","features":[209]},{"name":"MI_FLAG_REFERENCE","features":[209]},{"name":"MI_FLAG_REQUIRED","features":[209]},{"name":"MI_FLAG_RESTRICTED","features":[209]},{"name":"MI_FLAG_STATIC","features":[209]},{"name":"MI_FLAG_STREAM","features":[209]},{"name":"MI_FLAG_TERMINAL","features":[209]},{"name":"MI_FLAG_TOSUBCLASS","features":[209]},{"name":"MI_FLAG_TRANSLATABLE","features":[209]},{"name":"MI_FLAG_VERSION","features":[209]},{"name":"MI_FeatureDecl","features":[209]},{"name":"MI_Filter","features":[209]},{"name":"MI_FilterFT","features":[209]},{"name":"MI_HostedProvider","features":[209]},{"name":"MI_HostedProviderFT","features":[209]},{"name":"MI_INSTANCE","features":[209]},{"name":"MI_INSTANCEA","features":[209]},{"name":"MI_Instance","features":[209]},{"name":"MI_InstanceA","features":[209]},{"name":"MI_InstanceAField","features":[209]},{"name":"MI_InstanceExFT","features":[209]},{"name":"MI_InstanceFT","features":[209]},{"name":"MI_InstanceField","features":[209]},{"name":"MI_Interval","features":[209]},{"name":"MI_LOCALE_TYPE_CLOSEST_DATA","features":[209]},{"name":"MI_LOCALE_TYPE_CLOSEST_UI","features":[209]},{"name":"MI_LOCALE_TYPE_REQUESTED_DATA","features":[209]},{"name":"MI_LOCALE_TYPE_REQUESTED_UI","features":[209]},{"name":"MI_LocaleType","features":[209]},{"name":"MI_MAX_LOCALE_SIZE","features":[209]},{"name":"MI_MODULE_FLAG_BOOLEANS","features":[209]},{"name":"MI_MODULE_FLAG_CPLUSPLUS","features":[209]},{"name":"MI_MODULE_FLAG_DESCRIPTIONS","features":[209]},{"name":"MI_MODULE_FLAG_FILTER_SUPPORT","features":[209]},{"name":"MI_MODULE_FLAG_LOCALIZED","features":[209]},{"name":"MI_MODULE_FLAG_MAPPING_STRINGS","features":[209]},{"name":"MI_MODULE_FLAG_STANDARD_QUALIFIERS","features":[209]},{"name":"MI_MODULE_FLAG_VALUES","features":[209]},{"name":"MI_MainFunction","features":[209]},{"name":"MI_MethodDecl","features":[209]},{"name":"MI_MethodDecl_Invoke","features":[209]},{"name":"MI_Module","features":[209]},{"name":"MI_Module_Load","features":[209]},{"name":"MI_Module_Self","features":[209]},{"name":"MI_Module_Unload","features":[209]},{"name":"MI_OPERATIONFLAGS_BASIC_RTTI","features":[209]},{"name":"MI_OPERATIONFLAGS_DEFAULT_RTTI","features":[209]},{"name":"MI_OPERATIONFLAGS_EXPENSIVE_PROPERTIES","features":[209]},{"name":"MI_OPERATIONFLAGS_FULL_RTTI","features":[209]},{"name":"MI_OPERATIONFLAGS_LOCALIZED_QUALIFIERS","features":[209]},{"name":"MI_OPERATIONFLAGS_MANUAL_ACK_RESULTS","features":[209]},{"name":"MI_OPERATIONFLAGS_NO_RTTI","features":[209]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_DEEP_BASE_PROPS_ONLY","features":[209]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_SHALLOW","features":[209]},{"name":"MI_OPERATIONFLAGS_REPORT_OPERATION_STARTED","features":[209]},{"name":"MI_OPERATIONFLAGS_STANDARD_RTTI","features":[209]},{"name":"MI_ObjectDecl","features":[209]},{"name":"MI_Operation","features":[209]},{"name":"MI_OperationCallback_Class","features":[209]},{"name":"MI_OperationCallback_Indication","features":[209]},{"name":"MI_OperationCallback_Instance","features":[209]},{"name":"MI_OperationCallback_PromptUser","features":[209]},{"name":"MI_OperationCallback_ResponseType","features":[209]},{"name":"MI_OperationCallback_ResponseType_No","features":[209]},{"name":"MI_OperationCallback_ResponseType_NoToAll","features":[209]},{"name":"MI_OperationCallback_ResponseType_Yes","features":[209]},{"name":"MI_OperationCallback_ResponseType_YesToAll","features":[209]},{"name":"MI_OperationCallback_StreamedParameter","features":[209]},{"name":"MI_OperationCallback_WriteError","features":[209]},{"name":"MI_OperationCallback_WriteMessage","features":[209]},{"name":"MI_OperationCallback_WriteProgress","features":[209]},{"name":"MI_OperationCallbacks","features":[209]},{"name":"MI_OperationFT","features":[209]},{"name":"MI_OperationOptions","features":[209]},{"name":"MI_OperationOptionsFT","features":[209]},{"name":"MI_PROMPTTYPE_CRITICAL","features":[209]},{"name":"MI_PROMPTTYPE_NORMAL","features":[209]},{"name":"MI_PROVIDER_ARCHITECTURE_32BIT","features":[209]},{"name":"MI_PROVIDER_ARCHITECTURE_64BIT","features":[209]},{"name":"MI_ParameterDecl","features":[209]},{"name":"MI_ParameterSet","features":[209]},{"name":"MI_ParameterSetFT","features":[209]},{"name":"MI_PromptType","features":[209]},{"name":"MI_PropertyDecl","features":[209]},{"name":"MI_PropertySet","features":[209]},{"name":"MI_PropertySetFT","features":[209]},{"name":"MI_ProviderArchitecture","features":[209]},{"name":"MI_ProviderFT","features":[209]},{"name":"MI_ProviderFT_AssociatorInstances","features":[209]},{"name":"MI_ProviderFT_CreateInstance","features":[209]},{"name":"MI_ProviderFT_DeleteInstance","features":[209]},{"name":"MI_ProviderFT_DisableIndications","features":[209]},{"name":"MI_ProviderFT_EnableIndications","features":[209]},{"name":"MI_ProviderFT_EnumerateInstances","features":[209]},{"name":"MI_ProviderFT_GetInstance","features":[209]},{"name":"MI_ProviderFT_Invoke","features":[209]},{"name":"MI_ProviderFT_Load","features":[209]},{"name":"MI_ProviderFT_ModifyInstance","features":[209]},{"name":"MI_ProviderFT_ReferenceInstances","features":[209]},{"name":"MI_ProviderFT_Subscribe","features":[209]},{"name":"MI_ProviderFT_Unload","features":[209]},{"name":"MI_ProviderFT_Unsubscribe","features":[209]},{"name":"MI_Qualifier","features":[209]},{"name":"MI_QualifierDecl","features":[209]},{"name":"MI_QualifierSet","features":[209]},{"name":"MI_QualifierSetFT","features":[209]},{"name":"MI_REAL32","features":[209]},{"name":"MI_REAL32A","features":[209]},{"name":"MI_REAL64","features":[209]},{"name":"MI_REAL64A","features":[209]},{"name":"MI_REASON_NONE","features":[209]},{"name":"MI_REASON_SERVICESTOP","features":[209]},{"name":"MI_REASON_SHUTDOWN","features":[209]},{"name":"MI_REASON_TIMEOUT","features":[209]},{"name":"MI_REFERENCE","features":[209]},{"name":"MI_REFERENCEA","features":[209]},{"name":"MI_RESULT_ACCESS_DENIED","features":[209]},{"name":"MI_RESULT_ALREADY_EXISTS","features":[209]},{"name":"MI_RESULT_CLASS_HAS_CHILDREN","features":[209]},{"name":"MI_RESULT_CLASS_HAS_INSTANCES","features":[209]},{"name":"MI_RESULT_CONTINUATION_ON_ERROR_NOT_SUPPORTED","features":[209]},{"name":"MI_RESULT_FAILED","features":[209]},{"name":"MI_RESULT_FILTERED_ENUMERATION_NOT_SUPPORTED","features":[209]},{"name":"MI_RESULT_INVALID_CLASS","features":[209]},{"name":"MI_RESULT_INVALID_ENUMERATION_CONTEXT","features":[209]},{"name":"MI_RESULT_INVALID_NAMESPACE","features":[209]},{"name":"MI_RESULT_INVALID_OPERATION_TIMEOUT","features":[209]},{"name":"MI_RESULT_INVALID_PARAMETER","features":[209]},{"name":"MI_RESULT_INVALID_QUERY","features":[209]},{"name":"MI_RESULT_INVALID_SUPERCLASS","features":[209]},{"name":"MI_RESULT_METHOD_NOT_AVAILABLE","features":[209]},{"name":"MI_RESULT_METHOD_NOT_FOUND","features":[209]},{"name":"MI_RESULT_NAMESPACE_NOT_EMPTY","features":[209]},{"name":"MI_RESULT_NOT_FOUND","features":[209]},{"name":"MI_RESULT_NOT_SUPPORTED","features":[209]},{"name":"MI_RESULT_NO_SUCH_PROPERTY","features":[209]},{"name":"MI_RESULT_OK","features":[209]},{"name":"MI_RESULT_PULL_CANNOT_BE_ABANDONED","features":[209]},{"name":"MI_RESULT_PULL_HAS_BEEN_ABANDONED","features":[209]},{"name":"MI_RESULT_QUERY_LANGUAGE_NOT_SUPPORTED","features":[209]},{"name":"MI_RESULT_SERVER_IS_SHUTTING_DOWN","features":[209]},{"name":"MI_RESULT_SERVER_LIMITS_EXCEEDED","features":[209]},{"name":"MI_RESULT_TYPE_MISMATCH","features":[209]},{"name":"MI_Real32A","features":[209]},{"name":"MI_Real32AField","features":[209]},{"name":"MI_Real32Field","features":[209]},{"name":"MI_Real64A","features":[209]},{"name":"MI_Real64AField","features":[209]},{"name":"MI_Real64Field","features":[209]},{"name":"MI_ReferenceA","features":[209]},{"name":"MI_ReferenceAField","features":[209]},{"name":"MI_ReferenceField","features":[209]},{"name":"MI_Result","features":[209]},{"name":"MI_SERIALIZER_FLAGS_CLASS_DEEP","features":[209]},{"name":"MI_SERIALIZER_FLAGS_INSTANCE_WITH_CLASS","features":[209]},{"name":"MI_SINT16","features":[209]},{"name":"MI_SINT16A","features":[209]},{"name":"MI_SINT32","features":[209]},{"name":"MI_SINT32A","features":[209]},{"name":"MI_SINT64","features":[209]},{"name":"MI_SINT64A","features":[209]},{"name":"MI_SINT8","features":[209]},{"name":"MI_SINT8A","features":[209]},{"name":"MI_STRING","features":[209]},{"name":"MI_STRINGA","features":[209]},{"name":"MI_SUBSCRIBE_BOOKMARK_NEWEST","features":[209]},{"name":"MI_SUBSCRIBE_BOOKMARK_OLDEST","features":[209]},{"name":"MI_SchemaDecl","features":[209]},{"name":"MI_Serializer","features":[209]},{"name":"MI_SerializerFT","features":[209]},{"name":"MI_Server","features":[209]},{"name":"MI_ServerFT","features":[209]},{"name":"MI_Session","features":[209]},{"name":"MI_SessionCallbacks","features":[209]},{"name":"MI_SessionFT","features":[209]},{"name":"MI_Sint16A","features":[209]},{"name":"MI_Sint16AField","features":[209]},{"name":"MI_Sint16Field","features":[209]},{"name":"MI_Sint32A","features":[209]},{"name":"MI_Sint32AField","features":[209]},{"name":"MI_Sint32Field","features":[209]},{"name":"MI_Sint64A","features":[209]},{"name":"MI_Sint64AField","features":[209]},{"name":"MI_Sint64Field","features":[209]},{"name":"MI_Sint8A","features":[209]},{"name":"MI_Sint8AField","features":[209]},{"name":"MI_Sint8Field","features":[209]},{"name":"MI_StringA","features":[209]},{"name":"MI_StringAField","features":[209]},{"name":"MI_StringField","features":[209]},{"name":"MI_SubscriptionDeliveryOptions","features":[209]},{"name":"MI_SubscriptionDeliveryOptionsFT","features":[209]},{"name":"MI_SubscriptionDeliveryType","features":[209]},{"name":"MI_SubscriptionDeliveryType_Pull","features":[209]},{"name":"MI_SubscriptionDeliveryType_Push","features":[209]},{"name":"MI_Timestamp","features":[209]},{"name":"MI_Type","features":[209]},{"name":"MI_UINT16","features":[209]},{"name":"MI_UINT16A","features":[209]},{"name":"MI_UINT32","features":[209]},{"name":"MI_UINT32A","features":[209]},{"name":"MI_UINT64","features":[209]},{"name":"MI_UINT64A","features":[209]},{"name":"MI_UINT8","features":[209]},{"name":"MI_UINT8A","features":[209]},{"name":"MI_Uint16A","features":[209]},{"name":"MI_Uint16AField","features":[209]},{"name":"MI_Uint16Field","features":[209]},{"name":"MI_Uint32A","features":[209]},{"name":"MI_Uint32AField","features":[209]},{"name":"MI_Uint32Field","features":[209]},{"name":"MI_Uint64A","features":[209]},{"name":"MI_Uint64AField","features":[209]},{"name":"MI_Uint64Field","features":[209]},{"name":"MI_Uint8A","features":[209]},{"name":"MI_Uint8AField","features":[209]},{"name":"MI_Uint8Field","features":[209]},{"name":"MI_UserCredentials","features":[209]},{"name":"MI_UsernamePasswordCreds","features":[209]},{"name":"MI_UtilitiesFT","features":[209]},{"name":"MI_Value","features":[209]},{"name":"MI_WRITEMESSAGE_CHANNEL_DEBUG","features":[209]},{"name":"MI_WRITEMESSAGE_CHANNEL_VERBOSE","features":[209]},{"name":"MI_WRITEMESSAGE_CHANNEL_WARNING","features":[209]},{"name":"MofCompiler","features":[209]},{"name":"SWbemAnalysisMatrix","features":[3,209]},{"name":"SWbemAnalysisMatrixList","features":[3,209]},{"name":"SWbemAssocQueryInf","features":[209]},{"name":"SWbemDateTime","features":[209]},{"name":"SWbemEventSource","features":[209]},{"name":"SWbemLastError","features":[209]},{"name":"SWbemLocator","features":[209]},{"name":"SWbemMethod","features":[209]},{"name":"SWbemMethodSet","features":[209]},{"name":"SWbemNamedValue","features":[209]},{"name":"SWbemNamedValueSet","features":[209]},{"name":"SWbemObject","features":[209]},{"name":"SWbemObjectEx","features":[209]},{"name":"SWbemObjectPath","features":[209]},{"name":"SWbemObjectSet","features":[209]},{"name":"SWbemPrivilege","features":[209]},{"name":"SWbemPrivilegeSet","features":[209]},{"name":"SWbemProperty","features":[209]},{"name":"SWbemPropertySet","features":[209]},{"name":"SWbemQualifier","features":[209]},{"name":"SWbemQualifierSet","features":[209]},{"name":"SWbemQueryQualifiedName","features":[3,209]},{"name":"SWbemRefreshableItem","features":[209]},{"name":"SWbemRefresher","features":[209]},{"name":"SWbemRpnConst","features":[3,209]},{"name":"SWbemRpnEncodedQuery","features":[3,209]},{"name":"SWbemRpnQueryToken","features":[3,209]},{"name":"SWbemRpnTokenList","features":[209]},{"name":"SWbemSecurity","features":[209]},{"name":"SWbemServices","features":[209]},{"name":"SWbemServicesEx","features":[209]},{"name":"SWbemSink","features":[209]},{"name":"UnsecuredApartment","features":[209]},{"name":"WBEMESS_E_AUTHZ_NOT_PRIVILEGED","features":[209]},{"name":"WBEMESS_E_REGISTRATION_TOO_BROAD","features":[209]},{"name":"WBEMESS_E_REGISTRATION_TOO_PRECISE","features":[209]},{"name":"WBEMMOF_E_ALIASES_IN_EMBEDDED","features":[209]},{"name":"WBEMMOF_E_CIMTYPE_QUALIFIER","features":[209]},{"name":"WBEMMOF_E_DUPLICATE_PROPERTY","features":[209]},{"name":"WBEMMOF_E_DUPLICATE_QUALIFIER","features":[209]},{"name":"WBEMMOF_E_ERROR_CREATING_TEMP_FILE","features":[209]},{"name":"WBEMMOF_E_ERROR_INVALID_INCLUDE_FILE","features":[209]},{"name":"WBEMMOF_E_EXPECTED_ALIAS_NAME","features":[209]},{"name":"WBEMMOF_E_EXPECTED_BRACE_OR_BAD_TYPE","features":[209]},{"name":"WBEMMOF_E_EXPECTED_CLASS_NAME","features":[209]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACE","features":[209]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACKET","features":[209]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_PAREN","features":[209]},{"name":"WBEMMOF_E_EXPECTED_DOLLAR","features":[209]},{"name":"WBEMMOF_E_EXPECTED_FLAVOR_TYPE","features":[209]},{"name":"WBEMMOF_E_EXPECTED_OPEN_BRACE","features":[209]},{"name":"WBEMMOF_E_EXPECTED_OPEN_PAREN","features":[209]},{"name":"WBEMMOF_E_EXPECTED_PROPERTY_NAME","features":[209]},{"name":"WBEMMOF_E_EXPECTED_QUALIFIER_NAME","features":[209]},{"name":"WBEMMOF_E_EXPECTED_SEMI","features":[209]},{"name":"WBEMMOF_E_EXPECTED_TYPE_IDENTIFIER","features":[209]},{"name":"WBEMMOF_E_ILLEGAL_CONSTANT_VALUE","features":[209]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES","features":[209]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES2","features":[209]},{"name":"WBEMMOF_E_INVALID_AMENDMENT_SYNTAX","features":[209]},{"name":"WBEMMOF_E_INVALID_CLASS_DECLARATION","features":[209]},{"name":"WBEMMOF_E_INVALID_DELETECLASS_SYNTAX","features":[209]},{"name":"WBEMMOF_E_INVALID_DELETEINSTANCE_SYNTAX","features":[209]},{"name":"WBEMMOF_E_INVALID_DUPLICATE_AMENDMENT","features":[209]},{"name":"WBEMMOF_E_INVALID_FILE","features":[209]},{"name":"WBEMMOF_E_INVALID_FLAGS_SYNTAX","features":[209]},{"name":"WBEMMOF_E_INVALID_INSTANCE_DECLARATION","features":[209]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SPECIFICATION","features":[209]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SYNTAX","features":[209]},{"name":"WBEMMOF_E_INVALID_PRAGMA","features":[209]},{"name":"WBEMMOF_E_INVALID_QUALIFIER_SYNTAX","features":[209]},{"name":"WBEMMOF_E_MULTIPLE_ALIASES","features":[209]},{"name":"WBEMMOF_E_MUST_BE_IN_OR_OUT","features":[209]},{"name":"WBEMMOF_E_NO_ARRAYS_RETURNED","features":[209]},{"name":"WBEMMOF_E_NULL_ARRAY_ELEM","features":[209]},{"name":"WBEMMOF_E_OUT_OF_RANGE","features":[209]},{"name":"WBEMMOF_E_QUALIFIER_USED_OUTSIDE_SCOPE","features":[209]},{"name":"WBEMMOF_E_TYPEDEF_NOT_SUPPORTED","features":[209]},{"name":"WBEMMOF_E_TYPE_MISMATCH","features":[209]},{"name":"WBEMMOF_E_UNEXPECTED_ALIAS","features":[209]},{"name":"WBEMMOF_E_UNEXPECTED_ARRAY_INIT","features":[209]},{"name":"WBEMMOF_E_UNRECOGNIZED_TOKEN","features":[209]},{"name":"WBEMMOF_E_UNRECOGNIZED_TYPE","features":[209]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_DATA_TYPE","features":[209]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_QUAL_VALUE","features":[209]},{"name":"WBEMPATH_COMPRESSED","features":[209]},{"name":"WBEMPATH_CREATE_ACCEPT_ABSOLUTE","features":[209]},{"name":"WBEMPATH_CREATE_ACCEPT_ALL","features":[209]},{"name":"WBEMPATH_CREATE_ACCEPT_RELATIVE","features":[209]},{"name":"WBEMPATH_GET_NAMESPACE_ONLY","features":[209]},{"name":"WBEMPATH_GET_ORIGINAL","features":[209]},{"name":"WBEMPATH_GET_RELATIVE_ONLY","features":[209]},{"name":"WBEMPATH_GET_SERVER_AND_NAMESPACE_ONLY","features":[209]},{"name":"WBEMPATH_GET_SERVER_TOO","features":[209]},{"name":"WBEMPATH_INFO_ANON_LOCAL_MACHINE","features":[209]},{"name":"WBEMPATH_INFO_CIM_COMPLIANT","features":[209]},{"name":"WBEMPATH_INFO_CONTAINS_SINGLETON","features":[209]},{"name":"WBEMPATH_INFO_HAS_IMPLIED_KEY","features":[209]},{"name":"WBEMPATH_INFO_HAS_MACHINE_NAME","features":[209]},{"name":"WBEMPATH_INFO_HAS_SUBSCOPES","features":[209]},{"name":"WBEMPATH_INFO_HAS_V2_REF_PATHS","features":[209]},{"name":"WBEMPATH_INFO_IS_CLASS_REF","features":[209]},{"name":"WBEMPATH_INFO_IS_COMPOUND","features":[209]},{"name":"WBEMPATH_INFO_IS_INST_REF","features":[209]},{"name":"WBEMPATH_INFO_IS_PARENT","features":[209]},{"name":"WBEMPATH_INFO_IS_SINGLETON","features":[209]},{"name":"WBEMPATH_INFO_NATIVE_PATH","features":[209]},{"name":"WBEMPATH_INFO_PATH_HAD_SERVER","features":[209]},{"name":"WBEMPATH_INFO_SERVER_NAMESPACE_ONLY","features":[209]},{"name":"WBEMPATH_INFO_V1_COMPLIANT","features":[209]},{"name":"WBEMPATH_INFO_V2_COMPLIANT","features":[209]},{"name":"WBEMPATH_INFO_WMI_PATH","features":[209]},{"name":"WBEMPATH_QUOTEDTEXT","features":[209]},{"name":"WBEMPATH_TEXT","features":[209]},{"name":"WBEMPATH_TREAT_SINGLE_IDENT_AS_NS","features":[209]},{"name":"WBEMSTATUS","features":[209]},{"name":"WBEMSTATUS_FORMAT","features":[209]},{"name":"WBEMSTATUS_FORMAT_NEWLINE","features":[209]},{"name":"WBEMSTATUS_FORMAT_NO_NEWLINE","features":[209]},{"name":"WBEMS_DISPID_COMPLETED","features":[209]},{"name":"WBEMS_DISPID_CONNECTION_READY","features":[209]},{"name":"WBEMS_DISPID_DERIVATION","features":[209]},{"name":"WBEMS_DISPID_OBJECT_PUT","features":[209]},{"name":"WBEMS_DISPID_OBJECT_READY","features":[209]},{"name":"WBEMS_DISPID_PROGRESS","features":[209]},{"name":"WBEM_AUTHENTICATION_METHOD_MASK","features":[209]},{"name":"WBEM_BACKUP_RESTORE_FLAGS","features":[209]},{"name":"WBEM_BATCH_TYPE","features":[209]},{"name":"WBEM_CHANGE_FLAG_TYPE","features":[209]},{"name":"WBEM_COMPARISON_FLAG","features":[209]},{"name":"WBEM_COMPARISON_INCLUDE_ALL","features":[209]},{"name":"WBEM_COMPILER_OPTIONS","features":[209]},{"name":"WBEM_COMPILE_STATUS_INFO","features":[209]},{"name":"WBEM_CONDITION_FLAG_TYPE","features":[209]},{"name":"WBEM_CONNECT_OPTIONS","features":[209]},{"name":"WBEM_ENABLE","features":[209]},{"name":"WBEM_EXTRA_RETURN_CODES","features":[209]},{"name":"WBEM_E_ACCESS_DENIED","features":[209]},{"name":"WBEM_E_AGGREGATING_BY_OBJECT","features":[209]},{"name":"WBEM_E_ALREADY_EXISTS","features":[209]},{"name":"WBEM_E_AMBIGUOUS_OPERATION","features":[209]},{"name":"WBEM_E_AMENDED_OBJECT","features":[209]},{"name":"WBEM_E_BACKUP_RESTORE_WINMGMT_RUNNING","features":[209]},{"name":"WBEM_E_BUFFER_TOO_SMALL","features":[209]},{"name":"WBEM_E_CALL_CANCELLED","features":[209]},{"name":"WBEM_E_CANNOT_BE_ABSTRACT","features":[209]},{"name":"WBEM_E_CANNOT_BE_KEY","features":[209]},{"name":"WBEM_E_CANNOT_BE_SINGLETON","features":[209]},{"name":"WBEM_E_CANNOT_CHANGE_INDEX_INHERITANCE","features":[209]},{"name":"WBEM_E_CANNOT_CHANGE_KEY_INHERITANCE","features":[209]},{"name":"WBEM_E_CIRCULAR_REFERENCE","features":[209]},{"name":"WBEM_E_CLASS_HAS_CHILDREN","features":[209]},{"name":"WBEM_E_CLASS_HAS_INSTANCES","features":[209]},{"name":"WBEM_E_CLASS_NAME_TOO_WIDE","features":[209]},{"name":"WBEM_E_CLIENT_TOO_SLOW","features":[209]},{"name":"WBEM_E_CONNECTION_FAILED","features":[209]},{"name":"WBEM_E_CRITICAL_ERROR","features":[209]},{"name":"WBEM_E_DATABASE_VER_MISMATCH","features":[209]},{"name":"WBEM_E_ENCRYPTED_CONNECTION_REQUIRED","features":[209]},{"name":"WBEM_E_FAILED","features":[209]},{"name":"WBEM_E_FATAL_TRANSPORT_ERROR","features":[209]},{"name":"WBEM_E_HANDLE_OUT_OF_DATE","features":[209]},{"name":"WBEM_E_ILLEGAL_NULL","features":[209]},{"name":"WBEM_E_ILLEGAL_OPERATION","features":[209]},{"name":"WBEM_E_INCOMPLETE_CLASS","features":[209]},{"name":"WBEM_E_INITIALIZATION_FAILURE","features":[209]},{"name":"WBEM_E_INVALID_ASSOCIATION","features":[209]},{"name":"WBEM_E_INVALID_CIM_TYPE","features":[209]},{"name":"WBEM_E_INVALID_CLASS","features":[209]},{"name":"WBEM_E_INVALID_CONTEXT","features":[209]},{"name":"WBEM_E_INVALID_DUPLICATE_PARAMETER","features":[209]},{"name":"WBEM_E_INVALID_FLAVOR","features":[209]},{"name":"WBEM_E_INVALID_HANDLE_REQUEST","features":[209]},{"name":"WBEM_E_INVALID_LOCALE","features":[209]},{"name":"WBEM_E_INVALID_METHOD","features":[209]},{"name":"WBEM_E_INVALID_METHOD_PARAMETERS","features":[209]},{"name":"WBEM_E_INVALID_NAMESPACE","features":[209]},{"name":"WBEM_E_INVALID_OBJECT","features":[209]},{"name":"WBEM_E_INVALID_OBJECT_PATH","features":[209]},{"name":"WBEM_E_INVALID_OPERATION","features":[209]},{"name":"WBEM_E_INVALID_OPERATOR","features":[209]},{"name":"WBEM_E_INVALID_PARAMETER","features":[209]},{"name":"WBEM_E_INVALID_PARAMETER_ID","features":[209]},{"name":"WBEM_E_INVALID_PROPERTY","features":[209]},{"name":"WBEM_E_INVALID_PROPERTY_TYPE","features":[209]},{"name":"WBEM_E_INVALID_PROVIDER_REGISTRATION","features":[209]},{"name":"WBEM_E_INVALID_QUALIFIER","features":[209]},{"name":"WBEM_E_INVALID_QUALIFIER_TYPE","features":[209]},{"name":"WBEM_E_INVALID_QUERY","features":[209]},{"name":"WBEM_E_INVALID_QUERY_TYPE","features":[209]},{"name":"WBEM_E_INVALID_STREAM","features":[209]},{"name":"WBEM_E_INVALID_SUPERCLASS","features":[209]},{"name":"WBEM_E_INVALID_SYNTAX","features":[209]},{"name":"WBEM_E_LOCAL_CREDENTIALS","features":[209]},{"name":"WBEM_E_MARSHAL_INVALID_SIGNATURE","features":[209]},{"name":"WBEM_E_MARSHAL_VERSION_MISMATCH","features":[209]},{"name":"WBEM_E_METHOD_DISABLED","features":[209]},{"name":"WBEM_E_METHOD_NAME_TOO_WIDE","features":[209]},{"name":"WBEM_E_METHOD_NOT_IMPLEMENTED","features":[209]},{"name":"WBEM_E_MISSING_AGGREGATION_LIST","features":[209]},{"name":"WBEM_E_MISSING_GROUP_WITHIN","features":[209]},{"name":"WBEM_E_MISSING_PARAMETER_ID","features":[209]},{"name":"WBEM_E_NONCONSECUTIVE_PARAMETER_IDS","features":[209]},{"name":"WBEM_E_NONDECORATED_OBJECT","features":[209]},{"name":"WBEM_E_NOT_AVAILABLE","features":[209]},{"name":"WBEM_E_NOT_EVENT_CLASS","features":[209]},{"name":"WBEM_E_NOT_FOUND","features":[209]},{"name":"WBEM_E_NOT_SUPPORTED","features":[209]},{"name":"WBEM_E_NO_KEY","features":[209]},{"name":"WBEM_E_NO_SCHEMA","features":[209]},{"name":"WBEM_E_NULL_SECURITY_DESCRIPTOR","features":[209]},{"name":"WBEM_E_OUT_OF_DISK_SPACE","features":[209]},{"name":"WBEM_E_OUT_OF_MEMORY","features":[209]},{"name":"WBEM_E_OVERRIDE_NOT_ALLOWED","features":[209]},{"name":"WBEM_E_PARAMETER_ID_ON_RETVAL","features":[209]},{"name":"WBEM_E_PRIVILEGE_NOT_HELD","features":[209]},{"name":"WBEM_E_PROPAGATED_METHOD","features":[209]},{"name":"WBEM_E_PROPAGATED_PROPERTY","features":[209]},{"name":"WBEM_E_PROPAGATED_QUALIFIER","features":[209]},{"name":"WBEM_E_PROPERTY_NAME_TOO_WIDE","features":[209]},{"name":"WBEM_E_PROPERTY_NOT_AN_OBJECT","features":[209]},{"name":"WBEM_E_PROVIDER_ALREADY_REGISTERED","features":[209]},{"name":"WBEM_E_PROVIDER_DISABLED","features":[209]},{"name":"WBEM_E_PROVIDER_FAILURE","features":[209]},{"name":"WBEM_E_PROVIDER_LOAD_FAILURE","features":[209]},{"name":"WBEM_E_PROVIDER_NOT_CAPABLE","features":[209]},{"name":"WBEM_E_PROVIDER_NOT_FOUND","features":[209]},{"name":"WBEM_E_PROVIDER_NOT_REGISTERED","features":[209]},{"name":"WBEM_E_PROVIDER_SUSPENDED","features":[209]},{"name":"WBEM_E_PROVIDER_TIMED_OUT","features":[209]},{"name":"WBEM_E_QUALIFIER_NAME_TOO_WIDE","features":[209]},{"name":"WBEM_E_QUERY_NOT_IMPLEMENTED","features":[209]},{"name":"WBEM_E_QUEUE_OVERFLOW","features":[209]},{"name":"WBEM_E_QUOTA_VIOLATION","features":[209]},{"name":"WBEM_E_READ_ONLY","features":[209]},{"name":"WBEM_E_REFRESHER_BUSY","features":[209]},{"name":"WBEM_E_RERUN_COMMAND","features":[209]},{"name":"WBEM_E_RESERVED_001","features":[209]},{"name":"WBEM_E_RESERVED_002","features":[209]},{"name":"WBEM_E_RESOURCE_CONTENTION","features":[209]},{"name":"WBEM_E_RETRY_LATER","features":[209]},{"name":"WBEM_E_SERVER_TOO_BUSY","features":[209]},{"name":"WBEM_E_SHUTTING_DOWN","features":[209]},{"name":"WBEM_E_SYNCHRONIZATION_REQUIRED","features":[209]},{"name":"WBEM_E_SYSTEM_PROPERTY","features":[209]},{"name":"WBEM_E_TIMED_OUT","features":[209]},{"name":"WBEM_E_TOO_MANY_PROPERTIES","features":[209]},{"name":"WBEM_E_TOO_MUCH_DATA","features":[209]},{"name":"WBEM_E_TRANSPORT_FAILURE","features":[209]},{"name":"WBEM_E_TYPE_MISMATCH","features":[209]},{"name":"WBEM_E_UNEXPECTED","features":[209]},{"name":"WBEM_E_UNINTERPRETABLE_PROVIDER_QUERY","features":[209]},{"name":"WBEM_E_UNKNOWN_OBJECT_TYPE","features":[209]},{"name":"WBEM_E_UNKNOWN_PACKET_TYPE","features":[209]},{"name":"WBEM_E_UNPARSABLE_QUERY","features":[209]},{"name":"WBEM_E_UNSUPPORTED_CLASS_UPDATE","features":[209]},{"name":"WBEM_E_UNSUPPORTED_LOCALE","features":[209]},{"name":"WBEM_E_UNSUPPORTED_PARAMETER","features":[209]},{"name":"WBEM_E_UNSUPPORTED_PUT_EXTENSION","features":[209]},{"name":"WBEM_E_UPDATE_OVERRIDE_NOT_ALLOWED","features":[209]},{"name":"WBEM_E_UPDATE_PROPAGATED_METHOD","features":[209]},{"name":"WBEM_E_UPDATE_TYPE_MISMATCH","features":[209]},{"name":"WBEM_E_VALUE_OUT_OF_RANGE","features":[209]},{"name":"WBEM_E_VETO_DELETE","features":[209]},{"name":"WBEM_E_VETO_PUT","features":[209]},{"name":"WBEM_FLAG_ADVISORY","features":[209]},{"name":"WBEM_FLAG_ALLOW_READ","features":[209]},{"name":"WBEM_FLAG_ALWAYS","features":[209]},{"name":"WBEM_FLAG_AUTORECOVER","features":[209]},{"name":"WBEM_FLAG_BACKUP_RESTORE_DEFAULT","features":[209]},{"name":"WBEM_FLAG_BACKUP_RESTORE_FORCE_SHUTDOWN","features":[209]},{"name":"WBEM_FLAG_BATCH_IF_NEEDED","features":[209]},{"name":"WBEM_FLAG_BIDIRECTIONAL","features":[209]},{"name":"WBEM_FLAG_CHECK_ONLY","features":[209]},{"name":"WBEM_FLAG_CLASS_LOCAL_AND_OVERRIDES","features":[209]},{"name":"WBEM_FLAG_CLASS_OVERRIDES_ONLY","features":[209]},{"name":"WBEM_FLAG_CONNECT_PROVIDERS","features":[209]},{"name":"WBEM_FLAG_CONNECT_REPOSITORY_ONLY","features":[209]},{"name":"WBEM_FLAG_CONNECT_USE_MAX_WAIT","features":[209]},{"name":"WBEM_FLAG_CONSOLE_PRINT","features":[209]},{"name":"WBEM_FLAG_CREATE_ONLY","features":[209]},{"name":"WBEM_FLAG_CREATE_OR_UPDATE","features":[209]},{"name":"WBEM_FLAG_DEEP","features":[209]},{"name":"WBEM_FLAG_DIRECT_READ","features":[209]},{"name":"WBEM_FLAG_DONT_ADD_TO_LIST","features":[209]},{"name":"WBEM_FLAG_DONT_SEND_STATUS","features":[209]},{"name":"WBEM_FLAG_ENSURE_LOCATABLE","features":[209]},{"name":"WBEM_FLAG_EXCLUDE_OBJECT_QUALIFIERS","features":[209]},{"name":"WBEM_FLAG_EXCLUDE_PROPERTY_QUALIFIERS","features":[209]},{"name":"WBEM_FLAG_FORWARD_ONLY","features":[209]},{"name":"WBEM_FLAG_IGNORE_CASE","features":[209]},{"name":"WBEM_FLAG_IGNORE_CLASS","features":[209]},{"name":"WBEM_FLAG_IGNORE_DEFAULT_VALUES","features":[209]},{"name":"WBEM_FLAG_IGNORE_FLAVOR","features":[209]},{"name":"WBEM_FLAG_IGNORE_OBJECT_SOURCE","features":[209]},{"name":"WBEM_FLAG_IGNORE_QUALIFIERS","features":[209]},{"name":"WBEM_FLAG_INPROC_LOGIN","features":[209]},{"name":"WBEM_FLAG_KEYS_ONLY","features":[209]},{"name":"WBEM_FLAG_LOCAL_LOGIN","features":[209]},{"name":"WBEM_FLAG_LOCAL_ONLY","features":[209]},{"name":"WBEM_FLAG_LONG_NAME","features":[209]},{"name":"WBEM_FLAG_MUST_BATCH","features":[209]},{"name":"WBEM_FLAG_MUST_NOT_BATCH","features":[209]},{"name":"WBEM_FLAG_NONSYSTEM_ONLY","features":[209]},{"name":"WBEM_FLAG_NO_ERROR_OBJECT","features":[209]},{"name":"WBEM_FLAG_NO_FLAVORS","features":[209]},{"name":"WBEM_FLAG_ONLY_IF_FALSE","features":[209]},{"name":"WBEM_FLAG_ONLY_IF_IDENTICAL","features":[209]},{"name":"WBEM_FLAG_ONLY_IF_TRUE","features":[209]},{"name":"WBEM_FLAG_OWNER_UPDATE","features":[209]},{"name":"WBEM_FLAG_PROPAGATED_ONLY","features":[209]},{"name":"WBEM_FLAG_PROTOTYPE","features":[209]},{"name":"WBEM_FLAG_REFRESH_AUTO_RECONNECT","features":[209]},{"name":"WBEM_FLAG_REFRESH_NO_AUTO_RECONNECT","features":[209]},{"name":"WBEM_FLAG_REFS_ONLY","features":[209]},{"name":"WBEM_FLAG_REMOTE_LOGIN","features":[209]},{"name":"WBEM_FLAG_RETURN_ERROR_OBJECT","features":[209]},{"name":"WBEM_FLAG_RETURN_IMMEDIATELY","features":[209]},{"name":"WBEM_FLAG_RETURN_WBEM_COMPLETE","features":[209]},{"name":"WBEM_FLAG_SEND_ONLY_SELECTED","features":[209]},{"name":"WBEM_FLAG_SEND_STATUS","features":[209]},{"name":"WBEM_FLAG_SHALLOW","features":[209]},{"name":"WBEM_FLAG_SHORT_NAME","features":[209]},{"name":"WBEM_FLAG_SPLIT_FILES","features":[209]},{"name":"WBEM_FLAG_STORE_FILE","features":[209]},{"name":"WBEM_FLAG_STRONG_VALIDATION","features":[209]},{"name":"WBEM_FLAG_SYSTEM_ONLY","features":[209]},{"name":"WBEM_FLAG_UNSECAPP_CHECK_ACCESS","features":[209]},{"name":"WBEM_FLAG_UNSECAPP_DEFAULT_CHECK_ACCESS","features":[209]},{"name":"WBEM_FLAG_UNSECAPP_DONT_CHECK_ACCESS","features":[209]},{"name":"WBEM_FLAG_UPDATE_COMPATIBLE","features":[209]},{"name":"WBEM_FLAG_UPDATE_FORCE_MODE","features":[209]},{"name":"WBEM_FLAG_UPDATE_ONLY","features":[209]},{"name":"WBEM_FLAG_UPDATE_SAFE_MODE","features":[209]},{"name":"WBEM_FLAG_USE_AMENDED_QUALIFIERS","features":[209]},{"name":"WBEM_FLAG_USE_MULTIPLE_CHALLENGES","features":[209]},{"name":"WBEM_FLAG_WMI_CHECK","features":[209]},{"name":"WBEM_FLAVOR_AMENDED","features":[209]},{"name":"WBEM_FLAVOR_DONT_PROPAGATE","features":[209]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_DERIVED_CLASS","features":[209]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_INSTANCE","features":[209]},{"name":"WBEM_FLAVOR_MASK_AMENDED","features":[209]},{"name":"WBEM_FLAVOR_MASK_ORIGIN","features":[209]},{"name":"WBEM_FLAVOR_MASK_PERMISSIONS","features":[209]},{"name":"WBEM_FLAVOR_MASK_PROPAGATION","features":[209]},{"name":"WBEM_FLAVOR_NOT_AMENDED","features":[209]},{"name":"WBEM_FLAVOR_NOT_OVERRIDABLE","features":[209]},{"name":"WBEM_FLAVOR_ORIGIN_LOCAL","features":[209]},{"name":"WBEM_FLAVOR_ORIGIN_PROPAGATED","features":[209]},{"name":"WBEM_FLAVOR_ORIGIN_SYSTEM","features":[209]},{"name":"WBEM_FLAVOR_OVERRIDABLE","features":[209]},{"name":"WBEM_FLAVOR_TYPE","features":[209]},{"name":"WBEM_FULL_WRITE_REP","features":[209]},{"name":"WBEM_GENERIC_FLAG_TYPE","features":[209]},{"name":"WBEM_GENUS_CLASS","features":[209]},{"name":"WBEM_GENUS_INSTANCE","features":[209]},{"name":"WBEM_GENUS_TYPE","features":[209]},{"name":"WBEM_GET_KEY_FLAGS","features":[209]},{"name":"WBEM_GET_TEXT_FLAGS","features":[209]},{"name":"WBEM_INFINITE","features":[209]},{"name":"WBEM_INFORMATION_FLAG_TYPE","features":[209]},{"name":"WBEM_LIMITATION_FLAG_TYPE","features":[209]},{"name":"WBEM_LIMITS","features":[209]},{"name":"WBEM_LOCKING_FLAG_TYPE","features":[209]},{"name":"WBEM_LOGIN_TYPE","features":[209]},{"name":"WBEM_MASK_CLASS_CONDITION","features":[209]},{"name":"WBEM_MASK_CONDITION_ORIGIN","features":[209]},{"name":"WBEM_MASK_PRIMARY_CONDITION","features":[209]},{"name":"WBEM_MASK_RESERVED_FLAGS","features":[209]},{"name":"WBEM_MASK_UPDATE_MODE","features":[209]},{"name":"WBEM_MAX_IDENTIFIER","features":[209]},{"name":"WBEM_MAX_OBJECT_NESTING","features":[209]},{"name":"WBEM_MAX_PATH","features":[209]},{"name":"WBEM_MAX_QUERY","features":[209]},{"name":"WBEM_MAX_USER_PROPERTIES","features":[209]},{"name":"WBEM_METHOD_EXECUTE","features":[209]},{"name":"WBEM_NO_ERROR","features":[209]},{"name":"WBEM_NO_WAIT","features":[209]},{"name":"WBEM_PARTIAL_WRITE_REP","features":[209]},{"name":"WBEM_PATH_CREATE_FLAG","features":[209]},{"name":"WBEM_PATH_STATUS_FLAG","features":[209]},{"name":"WBEM_PROVIDER_FLAGS","features":[209]},{"name":"WBEM_PROVIDER_REQUIREMENTS_TYPE","features":[209]},{"name":"WBEM_QUERY_FLAG_TYPE","features":[209]},{"name":"WBEM_REFRESHER_FLAGS","features":[209]},{"name":"WBEM_REMOTE_ACCESS","features":[209]},{"name":"WBEM_REQUIREMENTS_RECHECK_SUBSCRIPTIONS","features":[209]},{"name":"WBEM_REQUIREMENTS_START_POSTFILTER","features":[209]},{"name":"WBEM_REQUIREMENTS_STOP_POSTFILTER","features":[209]},{"name":"WBEM_RETURN_IMMEDIATELY","features":[209]},{"name":"WBEM_RETURN_WHEN_COMPLETE","features":[209]},{"name":"WBEM_RIGHT_PUBLISH","features":[209]},{"name":"WBEM_RIGHT_SUBSCRIBE","features":[209]},{"name":"WBEM_SECURITY_FLAGS","features":[209]},{"name":"WBEM_SHUTDOWN_FLAGS","features":[209]},{"name":"WBEM_SHUTDOWN_OS","features":[209]},{"name":"WBEM_SHUTDOWN_UNLOAD_COMPONENT","features":[209]},{"name":"WBEM_SHUTDOWN_WMI","features":[209]},{"name":"WBEM_STATUS_COMPLETE","features":[209]},{"name":"WBEM_STATUS_LOGGING_INFORMATION","features":[209]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_ESS","features":[209]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_HOST","features":[209]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_PROVIDER","features":[209]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_REPOSITORY","features":[209]},{"name":"WBEM_STATUS_PROGRESS","features":[209]},{"name":"WBEM_STATUS_REQUIREMENTS","features":[209]},{"name":"WBEM_STATUS_TYPE","features":[209]},{"name":"WBEM_S_ACCESS_DENIED","features":[209]},{"name":"WBEM_S_ALREADY_EXISTS","features":[209]},{"name":"WBEM_S_DIFFERENT","features":[209]},{"name":"WBEM_S_DUPLICATE_OBJECTS","features":[209]},{"name":"WBEM_S_FALSE","features":[209]},{"name":"WBEM_S_INDIRECTLY_UPDATED","features":[209]},{"name":"WBEM_S_INITIALIZED","features":[209]},{"name":"WBEM_S_LIMITED_SERVICE","features":[209]},{"name":"WBEM_S_NO_ERROR","features":[209]},{"name":"WBEM_S_NO_MORE_DATA","features":[209]},{"name":"WBEM_S_OPERATION_CANCELLED","features":[209]},{"name":"WBEM_S_PARTIAL_RESULTS","features":[209]},{"name":"WBEM_S_PENDING","features":[209]},{"name":"WBEM_S_RESET_TO_DEFAULT","features":[209]},{"name":"WBEM_S_SAME","features":[209]},{"name":"WBEM_S_SOURCE_NOT_AVAILABLE","features":[209]},{"name":"WBEM_S_SUBJECT_TO_SDS","features":[209]},{"name":"WBEM_S_TIMEDOUT","features":[209]},{"name":"WBEM_TEXT_FLAG_TYPE","features":[209]},{"name":"WBEM_UNSECAPP_FLAG_TYPE","features":[209]},{"name":"WBEM_WRITE_PROVIDER","features":[209]},{"name":"WMIExtension","features":[209]},{"name":"WMIQ_ANALYSIS_ASSOC_QUERY","features":[209]},{"name":"WMIQ_ANALYSIS_PROP_ANALYSIS_MATRIX","features":[209]},{"name":"WMIQ_ANALYSIS_QUERY_TEXT","features":[209]},{"name":"WMIQ_ANALYSIS_RESERVED","features":[209]},{"name":"WMIQ_ANALYSIS_RPN_SEQUENCE","features":[209]},{"name":"WMIQ_ANALYSIS_TYPE","features":[209]},{"name":"WMIQ_ASSOCQ_ASSOCCLASS","features":[209]},{"name":"WMIQ_ASSOCQ_ASSOCIATORS","features":[209]},{"name":"WMIQ_ASSOCQ_CLASSDEFSONLY","features":[209]},{"name":"WMIQ_ASSOCQ_CLASSREFSONLY","features":[209]},{"name":"WMIQ_ASSOCQ_FLAGS","features":[209]},{"name":"WMIQ_ASSOCQ_KEYSONLY","features":[209]},{"name":"WMIQ_ASSOCQ_REFERENCES","features":[209]},{"name":"WMIQ_ASSOCQ_REQUIREDASSOCQUALIFIER","features":[209]},{"name":"WMIQ_ASSOCQ_REQUIREDQUALIFIER","features":[209]},{"name":"WMIQ_ASSOCQ_RESULTCLASS","features":[209]},{"name":"WMIQ_ASSOCQ_RESULTROLE","features":[209]},{"name":"WMIQ_ASSOCQ_ROLE","features":[209]},{"name":"WMIQ_ASSOCQ_SCHEMAONLY","features":[209]},{"name":"WMIQ_LANGUAGE_FEATURES","features":[209]},{"name":"WMIQ_LF10_COMPEX_SUBEXPRESSIONS","features":[209]},{"name":"WMIQ_LF11_ALIASING","features":[209]},{"name":"WMIQ_LF12_GROUP_BY_HAVING","features":[209]},{"name":"WMIQ_LF13_WMI_WITHIN","features":[209]},{"name":"WMIQ_LF14_SQL_WRITE_OPERATIONS","features":[209]},{"name":"WMIQ_LF15_GO","features":[209]},{"name":"WMIQ_LF16_SINGLE_LEVEL_TRANSACTIONS","features":[209]},{"name":"WMIQ_LF17_QUALIFIED_NAMES","features":[209]},{"name":"WMIQ_LF18_ASSOCIATONS","features":[209]},{"name":"WMIQ_LF19_SYSTEM_PROPERTIES","features":[209]},{"name":"WMIQ_LF1_BASIC_SELECT","features":[209]},{"name":"WMIQ_LF20_EXTENDED_SYSTEM_PROPERTIES","features":[209]},{"name":"WMIQ_LF21_SQL89_JOINS","features":[209]},{"name":"WMIQ_LF22_SQL92_JOINS","features":[209]},{"name":"WMIQ_LF23_SUBSELECTS","features":[209]},{"name":"WMIQ_LF24_UMI_EXTENSIONS","features":[209]},{"name":"WMIQ_LF25_DATEPART","features":[209]},{"name":"WMIQ_LF26_LIKE","features":[209]},{"name":"WMIQ_LF27_CIM_TEMPORAL_CONSTRUCTS","features":[209]},{"name":"WMIQ_LF28_STANDARD_AGGREGATES","features":[209]},{"name":"WMIQ_LF29_MULTI_LEVEL_ORDER_BY","features":[209]},{"name":"WMIQ_LF2_CLASS_NAME_IN_QUERY","features":[209]},{"name":"WMIQ_LF30_WMI_PRAGMAS","features":[209]},{"name":"WMIQ_LF31_QUALIFIER_TESTS","features":[209]},{"name":"WMIQ_LF32_SP_EXECUTE","features":[209]},{"name":"WMIQ_LF33_ARRAY_ACCESS","features":[209]},{"name":"WMIQ_LF34_UNION","features":[209]},{"name":"WMIQ_LF35_COMPLEX_SELECT_TARGET","features":[209]},{"name":"WMIQ_LF36_REFERENCE_TESTS","features":[209]},{"name":"WMIQ_LF37_SELECT_INTO","features":[209]},{"name":"WMIQ_LF38_BASIC_DATETIME_TESTS","features":[209]},{"name":"WMIQ_LF39_COUNT_COLUMN","features":[209]},{"name":"WMIQ_LF3_STRING_CASE_FUNCTIONS","features":[209]},{"name":"WMIQ_LF40_BETWEEN","features":[209]},{"name":"WMIQ_LF4_PROP_TO_PROP_TESTS","features":[209]},{"name":"WMIQ_LF5_COUNT_STAR","features":[209]},{"name":"WMIQ_LF6_ORDER_BY","features":[209]},{"name":"WMIQ_LF7_DISTINCT","features":[209]},{"name":"WMIQ_LF8_ISA","features":[209]},{"name":"WMIQ_LF9_THIS","features":[209]},{"name":"WMIQ_LF_LAST","features":[209]},{"name":"WMIQ_RPNF_ARRAY_ACCESS_USED","features":[209]},{"name":"WMIQ_RPNF_COUNT_STAR","features":[209]},{"name":"WMIQ_RPNF_EQUALITY_TESTS_ONLY","features":[209]},{"name":"WMIQ_RPNF_FEATURE","features":[209]},{"name":"WMIQ_RPNF_FEATURE_SELECT_STAR","features":[209]},{"name":"WMIQ_RPNF_GROUP_BY_HAVING","features":[209]},{"name":"WMIQ_RPNF_ISA_USED","features":[209]},{"name":"WMIQ_RPNF_ORDER_BY","features":[209]},{"name":"WMIQ_RPNF_PROJECTION","features":[209]},{"name":"WMIQ_RPNF_PROP_TO_PROP_TESTS","features":[209]},{"name":"WMIQ_RPNF_QUALIFIED_NAMES_USED","features":[209]},{"name":"WMIQ_RPNF_QUERY_IS_CONJUNCTIVE","features":[209]},{"name":"WMIQ_RPNF_QUERY_IS_DISJUNCTIVE","features":[209]},{"name":"WMIQ_RPNF_SYSPROP_CLASS_USED","features":[209]},{"name":"WMIQ_RPNF_WHERE_CLAUSE_PRESENT","features":[209]},{"name":"WMIQ_RPN_CONST","features":[209]},{"name":"WMIQ_RPN_CONST2","features":[209]},{"name":"WMIQ_RPN_FROM_CLASS_LIST","features":[209]},{"name":"WMIQ_RPN_FROM_MULTIPLE","features":[209]},{"name":"WMIQ_RPN_FROM_PATH","features":[209]},{"name":"WMIQ_RPN_FROM_UNARY","features":[209]},{"name":"WMIQ_RPN_GET_EXPR_SHAPE","features":[209]},{"name":"WMIQ_RPN_GET_LEFT_FUNCTION","features":[209]},{"name":"WMIQ_RPN_GET_RELOP","features":[209]},{"name":"WMIQ_RPN_GET_RIGHT_FUNCTION","features":[209]},{"name":"WMIQ_RPN_GET_TOKEN_TYPE","features":[209]},{"name":"WMIQ_RPN_LEFT_FUNCTION","features":[209]},{"name":"WMIQ_RPN_LEFT_PROPERTY_NAME","features":[209]},{"name":"WMIQ_RPN_NEXT_TOKEN","features":[209]},{"name":"WMIQ_RPN_OP_EQ","features":[209]},{"name":"WMIQ_RPN_OP_GE","features":[209]},{"name":"WMIQ_RPN_OP_GT","features":[209]},{"name":"WMIQ_RPN_OP_ISA","features":[209]},{"name":"WMIQ_RPN_OP_ISNOTA","features":[209]},{"name":"WMIQ_RPN_OP_ISNOTNULL","features":[209]},{"name":"WMIQ_RPN_OP_ISNULL","features":[209]},{"name":"WMIQ_RPN_OP_LE","features":[209]},{"name":"WMIQ_RPN_OP_LIKE","features":[209]},{"name":"WMIQ_RPN_OP_LT","features":[209]},{"name":"WMIQ_RPN_OP_NE","features":[209]},{"name":"WMIQ_RPN_OP_UNDEFINED","features":[209]},{"name":"WMIQ_RPN_RELOP","features":[209]},{"name":"WMIQ_RPN_RIGHT_FUNCTION","features":[209]},{"name":"WMIQ_RPN_RIGHT_PROPERTY_NAME","features":[209]},{"name":"WMIQ_RPN_TOKEN_AND","features":[209]},{"name":"WMIQ_RPN_TOKEN_EXPRESSION","features":[209]},{"name":"WMIQ_RPN_TOKEN_FLAGS","features":[209]},{"name":"WMIQ_RPN_TOKEN_NOT","features":[209]},{"name":"WMIQ_RPN_TOKEN_OR","features":[209]},{"name":"WMI_OBJ_TEXT","features":[209]},{"name":"WMI_OBJ_TEXT_CIM_DTD_2_0","features":[209]},{"name":"WMI_OBJ_TEXT_LAST","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_DTD_2_0","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT1","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT10","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT2","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT3","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT4","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT5","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT6","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT7","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT8","features":[209]},{"name":"WMI_OBJ_TEXT_WMI_EXT9","features":[209]},{"name":"WbemAdministrativeLocator","features":[209]},{"name":"WbemAuthenticatedLocator","features":[209]},{"name":"WbemAuthenticationLevelEnum","features":[209]},{"name":"WbemBackupRestore","features":[209]},{"name":"WbemChangeFlagEnum","features":[209]},{"name":"WbemCimtypeEnum","features":[209]},{"name":"WbemClassObject","features":[209]},{"name":"WbemComparisonFlagEnum","features":[209]},{"name":"WbemConnectOptionsEnum","features":[209]},{"name":"WbemContext","features":[209]},{"name":"WbemDCOMTransport","features":[209]},{"name":"WbemDecoupledBasicEventProvider","features":[209]},{"name":"WbemDecoupledRegistrar","features":[209]},{"name":"WbemDefPath","features":[209]},{"name":"WbemErrorEnum","features":[209]},{"name":"WbemFlagEnum","features":[209]},{"name":"WbemImpersonationLevelEnum","features":[209]},{"name":"WbemLevel1Login","features":[209]},{"name":"WbemLocalAddrRes","features":[209]},{"name":"WbemLocator","features":[209]},{"name":"WbemObjectTextFormatEnum","features":[209]},{"name":"WbemObjectTextSrc","features":[209]},{"name":"WbemPrivilegeEnum","features":[209]},{"name":"WbemQuery","features":[209]},{"name":"WbemQueryFlagEnum","features":[209]},{"name":"WbemRefresher","features":[209]},{"name":"WbemStatusCodeText","features":[209]},{"name":"WbemTextFlagEnum","features":[209]},{"name":"WbemTimeout","features":[209]},{"name":"WbemUnauthenticatedLocator","features":[209]},{"name":"WbemUninitializedClassObject","features":[209]},{"name":"wbemAuthenticationLevelCall","features":[209]},{"name":"wbemAuthenticationLevelConnect","features":[209]},{"name":"wbemAuthenticationLevelDefault","features":[209]},{"name":"wbemAuthenticationLevelNone","features":[209]},{"name":"wbemAuthenticationLevelPkt","features":[209]},{"name":"wbemAuthenticationLevelPktIntegrity","features":[209]},{"name":"wbemAuthenticationLevelPktPrivacy","features":[209]},{"name":"wbemChangeFlagAdvisory","features":[209]},{"name":"wbemChangeFlagCreateOnly","features":[209]},{"name":"wbemChangeFlagCreateOrUpdate","features":[209]},{"name":"wbemChangeFlagStrongValidation","features":[209]},{"name":"wbemChangeFlagUpdateCompatible","features":[209]},{"name":"wbemChangeFlagUpdateForceMode","features":[209]},{"name":"wbemChangeFlagUpdateOnly","features":[209]},{"name":"wbemChangeFlagUpdateSafeMode","features":[209]},{"name":"wbemCimtypeBoolean","features":[209]},{"name":"wbemCimtypeChar16","features":[209]},{"name":"wbemCimtypeDatetime","features":[209]},{"name":"wbemCimtypeObject","features":[209]},{"name":"wbemCimtypeReal32","features":[209]},{"name":"wbemCimtypeReal64","features":[209]},{"name":"wbemCimtypeReference","features":[209]},{"name":"wbemCimtypeSint16","features":[209]},{"name":"wbemCimtypeSint32","features":[209]},{"name":"wbemCimtypeSint64","features":[209]},{"name":"wbemCimtypeSint8","features":[209]},{"name":"wbemCimtypeString","features":[209]},{"name":"wbemCimtypeUint16","features":[209]},{"name":"wbemCimtypeUint32","features":[209]},{"name":"wbemCimtypeUint64","features":[209]},{"name":"wbemCimtypeUint8","features":[209]},{"name":"wbemComparisonFlagIgnoreCase","features":[209]},{"name":"wbemComparisonFlagIgnoreClass","features":[209]},{"name":"wbemComparisonFlagIgnoreDefaultValues","features":[209]},{"name":"wbemComparisonFlagIgnoreFlavor","features":[209]},{"name":"wbemComparisonFlagIgnoreObjectSource","features":[209]},{"name":"wbemComparisonFlagIgnoreQualifiers","features":[209]},{"name":"wbemComparisonFlagIncludeAll","features":[209]},{"name":"wbemConnectFlagUseMaxWait","features":[209]},{"name":"wbemErrAccessDenied","features":[209]},{"name":"wbemErrAggregatingByObject","features":[209]},{"name":"wbemErrAlreadyExists","features":[209]},{"name":"wbemErrAmbiguousOperation","features":[209]},{"name":"wbemErrAmendedObject","features":[209]},{"name":"wbemErrBackupRestoreWinmgmtRunning","features":[209]},{"name":"wbemErrBufferTooSmall","features":[209]},{"name":"wbemErrCallCancelled","features":[209]},{"name":"wbemErrCannotBeAbstract","features":[209]},{"name":"wbemErrCannotBeKey","features":[209]},{"name":"wbemErrCannotBeSingleton","features":[209]},{"name":"wbemErrCannotChangeIndexInheritance","features":[209]},{"name":"wbemErrCannotChangeKeyInheritance","features":[209]},{"name":"wbemErrCircularReference","features":[209]},{"name":"wbemErrClassHasChildren","features":[209]},{"name":"wbemErrClassHasInstances","features":[209]},{"name":"wbemErrClassNameTooWide","features":[209]},{"name":"wbemErrClientTooSlow","features":[209]},{"name":"wbemErrConnectionFailed","features":[209]},{"name":"wbemErrCriticalError","features":[209]},{"name":"wbemErrDatabaseVerMismatch","features":[209]},{"name":"wbemErrEncryptedConnectionRequired","features":[209]},{"name":"wbemErrFailed","features":[209]},{"name":"wbemErrFatalTransportError","features":[209]},{"name":"wbemErrForcedRollback","features":[209]},{"name":"wbemErrHandleOutOfDate","features":[209]},{"name":"wbemErrIllegalNull","features":[209]},{"name":"wbemErrIllegalOperation","features":[209]},{"name":"wbemErrIncompleteClass","features":[209]},{"name":"wbemErrInitializationFailure","features":[209]},{"name":"wbemErrInvalidAssociation","features":[209]},{"name":"wbemErrInvalidCimType","features":[209]},{"name":"wbemErrInvalidClass","features":[209]},{"name":"wbemErrInvalidContext","features":[209]},{"name":"wbemErrInvalidDuplicateParameter","features":[209]},{"name":"wbemErrInvalidFlavor","features":[209]},{"name":"wbemErrInvalidHandleRequest","features":[209]},{"name":"wbemErrInvalidLocale","features":[209]},{"name":"wbemErrInvalidMethod","features":[209]},{"name":"wbemErrInvalidMethodParameters","features":[209]},{"name":"wbemErrInvalidNamespace","features":[209]},{"name":"wbemErrInvalidObject","features":[209]},{"name":"wbemErrInvalidObjectPath","features":[209]},{"name":"wbemErrInvalidOperation","features":[209]},{"name":"wbemErrInvalidOperator","features":[209]},{"name":"wbemErrInvalidParameter","features":[209]},{"name":"wbemErrInvalidParameterId","features":[209]},{"name":"wbemErrInvalidProperty","features":[209]},{"name":"wbemErrInvalidPropertyType","features":[209]},{"name":"wbemErrInvalidProviderRegistration","features":[209]},{"name":"wbemErrInvalidQualifier","features":[209]},{"name":"wbemErrInvalidQualifierType","features":[209]},{"name":"wbemErrInvalidQuery","features":[209]},{"name":"wbemErrInvalidQueryType","features":[209]},{"name":"wbemErrInvalidStream","features":[209]},{"name":"wbemErrInvalidSuperclass","features":[209]},{"name":"wbemErrInvalidSyntax","features":[209]},{"name":"wbemErrLocalCredentials","features":[209]},{"name":"wbemErrMarshalInvalidSignature","features":[209]},{"name":"wbemErrMarshalVersionMismatch","features":[209]},{"name":"wbemErrMethodDisabled","features":[209]},{"name":"wbemErrMethodNameTooWide","features":[209]},{"name":"wbemErrMethodNotImplemented","features":[209]},{"name":"wbemErrMissingAggregationList","features":[209]},{"name":"wbemErrMissingGroupWithin","features":[209]},{"name":"wbemErrMissingParameter","features":[209]},{"name":"wbemErrNoSchema","features":[209]},{"name":"wbemErrNonConsecutiveParameterIds","features":[209]},{"name":"wbemErrNondecoratedObject","features":[209]},{"name":"wbemErrNotAvailable","features":[209]},{"name":"wbemErrNotEventClass","features":[209]},{"name":"wbemErrNotFound","features":[209]},{"name":"wbemErrNotSupported","features":[209]},{"name":"wbemErrNullSecurityDescriptor","features":[209]},{"name":"wbemErrOutOfDiskSpace","features":[209]},{"name":"wbemErrOutOfMemory","features":[209]},{"name":"wbemErrOverrideNotAllowed","features":[209]},{"name":"wbemErrParameterIdOnRetval","features":[209]},{"name":"wbemErrPrivilegeNotHeld","features":[209]},{"name":"wbemErrPropagatedMethod","features":[209]},{"name":"wbemErrPropagatedProperty","features":[209]},{"name":"wbemErrPropagatedQualifier","features":[209]},{"name":"wbemErrPropertyNameTooWide","features":[209]},{"name":"wbemErrPropertyNotAnObject","features":[209]},{"name":"wbemErrProviderAlreadyRegistered","features":[209]},{"name":"wbemErrProviderFailure","features":[209]},{"name":"wbemErrProviderLoadFailure","features":[209]},{"name":"wbemErrProviderNotCapable","features":[209]},{"name":"wbemErrProviderNotFound","features":[209]},{"name":"wbemErrProviderNotRegistered","features":[209]},{"name":"wbemErrProviderSuspended","features":[209]},{"name":"wbemErrQualifierNameTooWide","features":[209]},{"name":"wbemErrQueryNotImplemented","features":[209]},{"name":"wbemErrQueueOverflow","features":[209]},{"name":"wbemErrQuotaViolation","features":[209]},{"name":"wbemErrReadOnly","features":[209]},{"name":"wbemErrRefresherBusy","features":[209]},{"name":"wbemErrRegistrationTooBroad","features":[209]},{"name":"wbemErrRegistrationTooPrecise","features":[209]},{"name":"wbemErrRerunCommand","features":[209]},{"name":"wbemErrResetToDefault","features":[209]},{"name":"wbemErrServerTooBusy","features":[209]},{"name":"wbemErrShuttingDown","features":[209]},{"name":"wbemErrSynchronizationRequired","features":[209]},{"name":"wbemErrSystemProperty","features":[209]},{"name":"wbemErrTimedout","features":[209]},{"name":"wbemErrTimeout","features":[209]},{"name":"wbemErrTooManyProperties","features":[209]},{"name":"wbemErrTooMuchData","features":[209]},{"name":"wbemErrTransactionConflict","features":[209]},{"name":"wbemErrTransportFailure","features":[209]},{"name":"wbemErrTypeMismatch","features":[209]},{"name":"wbemErrUnexpected","features":[209]},{"name":"wbemErrUninterpretableProviderQuery","features":[209]},{"name":"wbemErrUnknownObjectType","features":[209]},{"name":"wbemErrUnknownPacketType","features":[209]},{"name":"wbemErrUnparsableQuery","features":[209]},{"name":"wbemErrUnsupportedClassUpdate","features":[209]},{"name":"wbemErrUnsupportedLocale","features":[209]},{"name":"wbemErrUnsupportedParameter","features":[209]},{"name":"wbemErrUnsupportedPutExtension","features":[209]},{"name":"wbemErrUpdateOverrideNotAllowed","features":[209]},{"name":"wbemErrUpdatePropagatedMethod","features":[209]},{"name":"wbemErrUpdateTypeMismatch","features":[209]},{"name":"wbemErrValueOutOfRange","features":[209]},{"name":"wbemErrVetoDelete","features":[209]},{"name":"wbemErrVetoPut","features":[209]},{"name":"wbemFlagBidirectional","features":[209]},{"name":"wbemFlagDirectRead","features":[209]},{"name":"wbemFlagDontSendStatus","features":[209]},{"name":"wbemFlagEnsureLocatable","features":[209]},{"name":"wbemFlagForwardOnly","features":[209]},{"name":"wbemFlagGetDefault","features":[209]},{"name":"wbemFlagNoErrorObject","features":[209]},{"name":"wbemFlagReturnErrorObject","features":[209]},{"name":"wbemFlagReturnImmediately","features":[209]},{"name":"wbemFlagReturnWhenComplete","features":[209]},{"name":"wbemFlagSendOnlySelected","features":[209]},{"name":"wbemFlagSendStatus","features":[209]},{"name":"wbemFlagSpawnInstance","features":[209]},{"name":"wbemFlagUseAmendedQualifiers","features":[209]},{"name":"wbemFlagUseCurrentTime","features":[209]},{"name":"wbemImpersonationLevelAnonymous","features":[209]},{"name":"wbemImpersonationLevelDelegate","features":[209]},{"name":"wbemImpersonationLevelIdentify","features":[209]},{"name":"wbemImpersonationLevelImpersonate","features":[209]},{"name":"wbemNoErr","features":[209]},{"name":"wbemObjectTextFormatCIMDTD20","features":[209]},{"name":"wbemObjectTextFormatWMIDTD20","features":[209]},{"name":"wbemPrivilegeAudit","features":[209]},{"name":"wbemPrivilegeBackup","features":[209]},{"name":"wbemPrivilegeChangeNotify","features":[209]},{"name":"wbemPrivilegeCreatePagefile","features":[209]},{"name":"wbemPrivilegeCreatePermanent","features":[209]},{"name":"wbemPrivilegeCreateToken","features":[209]},{"name":"wbemPrivilegeDebug","features":[209]},{"name":"wbemPrivilegeEnableDelegation","features":[209]},{"name":"wbemPrivilegeIncreaseBasePriority","features":[209]},{"name":"wbemPrivilegeIncreaseQuota","features":[209]},{"name":"wbemPrivilegeLoadDriver","features":[209]},{"name":"wbemPrivilegeLockMemory","features":[209]},{"name":"wbemPrivilegeMachineAccount","features":[209]},{"name":"wbemPrivilegeManageVolume","features":[209]},{"name":"wbemPrivilegePrimaryToken","features":[209]},{"name":"wbemPrivilegeProfileSingleProcess","features":[209]},{"name":"wbemPrivilegeRemoteShutdown","features":[209]},{"name":"wbemPrivilegeRestore","features":[209]},{"name":"wbemPrivilegeSecurity","features":[209]},{"name":"wbemPrivilegeShutdown","features":[209]},{"name":"wbemPrivilegeSyncAgent","features":[209]},{"name":"wbemPrivilegeSystemEnvironment","features":[209]},{"name":"wbemPrivilegeSystemProfile","features":[209]},{"name":"wbemPrivilegeSystemtime","features":[209]},{"name":"wbemPrivilegeTakeOwnership","features":[209]},{"name":"wbemPrivilegeTcb","features":[209]},{"name":"wbemPrivilegeUndock","features":[209]},{"name":"wbemQueryFlagDeep","features":[209]},{"name":"wbemQueryFlagPrototype","features":[209]},{"name":"wbemQueryFlagShallow","features":[209]},{"name":"wbemTextFlagNoFlavors","features":[209]},{"name":"wbemTimeoutInfinite","features":[209]}],"649":[{"name":"ACCESSTIMEOUT","features":[210]},{"name":"ACC_UTILITY_STATE_FLAGS","features":[210]},{"name":"ANNO_CONTAINER","features":[210]},{"name":"ANNO_THIS","features":[210]},{"name":"ANRUS_ON_SCREEN_KEYBOARD_ACTIVE","features":[210]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE","features":[210]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE_NODUCK","features":[210]},{"name":"ANRUS_PRIORITY_AUDIO_DYNAMIC_DUCK","features":[210]},{"name":"ANRUS_TOUCH_MODIFICATION_ACTIVE","features":[210]},{"name":"AccNotifyTouchInteraction","features":[3,210]},{"name":"AccSetRunningUtilityState","features":[3,210]},{"name":"AcceleratorKey_Property_GUID","features":[210]},{"name":"AccessKey_Property_GUID","features":[210]},{"name":"AccessibleChildren","features":[3,43,44,210]},{"name":"AccessibleObjectFromEvent","features":[3,43,44,210]},{"name":"AccessibleObjectFromPoint","features":[3,43,44,210]},{"name":"AccessibleObjectFromWindow","features":[3,210]},{"name":"ActiveEnd","features":[210]},{"name":"ActiveEnd_End","features":[210]},{"name":"ActiveEnd_None","features":[210]},{"name":"ActiveEnd_Start","features":[210]},{"name":"ActiveTextPositionChanged_Event_GUID","features":[210]},{"name":"AnimationStyle","features":[210]},{"name":"AnimationStyle_BlinkingBackground","features":[210]},{"name":"AnimationStyle_LasVegasLights","features":[210]},{"name":"AnimationStyle_MarchingBlackAnts","features":[210]},{"name":"AnimationStyle_MarchingRedAnts","features":[210]},{"name":"AnimationStyle_None","features":[210]},{"name":"AnimationStyle_Other","features":[210]},{"name":"AnimationStyle_Shimmer","features":[210]},{"name":"AnimationStyle_SparkleText","features":[210]},{"name":"AnnoScope","features":[210]},{"name":"AnnotationObjects_Property_GUID","features":[210]},{"name":"AnnotationType_AdvancedProofingIssue","features":[210]},{"name":"AnnotationType_Author","features":[210]},{"name":"AnnotationType_CircularReferenceError","features":[210]},{"name":"AnnotationType_Comment","features":[210]},{"name":"AnnotationType_ConflictingChange","features":[210]},{"name":"AnnotationType_DataValidationError","features":[210]},{"name":"AnnotationType_DeletionChange","features":[210]},{"name":"AnnotationType_EditingLockedChange","features":[210]},{"name":"AnnotationType_Endnote","features":[210]},{"name":"AnnotationType_ExternalChange","features":[210]},{"name":"AnnotationType_Footer","features":[210]},{"name":"AnnotationType_Footnote","features":[210]},{"name":"AnnotationType_FormatChange","features":[210]},{"name":"AnnotationType_FormulaError","features":[210]},{"name":"AnnotationType_GrammarError","features":[210]},{"name":"AnnotationType_Header","features":[210]},{"name":"AnnotationType_Highlighted","features":[210]},{"name":"AnnotationType_InsertionChange","features":[210]},{"name":"AnnotationType_Mathematics","features":[210]},{"name":"AnnotationType_MoveChange","features":[210]},{"name":"AnnotationType_Sensitive","features":[210]},{"name":"AnnotationType_SpellingError","features":[210]},{"name":"AnnotationType_TrackChanges","features":[210]},{"name":"AnnotationType_Unknown","features":[210]},{"name":"AnnotationType_UnsyncedChange","features":[210]},{"name":"AnnotationTypes_Property_GUID","features":[210]},{"name":"Annotation_AdvancedProofingIssue_GUID","features":[210]},{"name":"Annotation_AnnotationTypeId_Property_GUID","features":[210]},{"name":"Annotation_AnnotationTypeName_Property_GUID","features":[210]},{"name":"Annotation_Author_GUID","features":[210]},{"name":"Annotation_Author_Property_GUID","features":[210]},{"name":"Annotation_CircularReferenceError_GUID","features":[210]},{"name":"Annotation_Comment_GUID","features":[210]},{"name":"Annotation_ConflictingChange_GUID","features":[210]},{"name":"Annotation_Custom_GUID","features":[210]},{"name":"Annotation_DataValidationError_GUID","features":[210]},{"name":"Annotation_DateTime_Property_GUID","features":[210]},{"name":"Annotation_DeletionChange_GUID","features":[210]},{"name":"Annotation_EditingLockedChange_GUID","features":[210]},{"name":"Annotation_Endnote_GUID","features":[210]},{"name":"Annotation_ExternalChange_GUID","features":[210]},{"name":"Annotation_Footer_GUID","features":[210]},{"name":"Annotation_Footnote_GUID","features":[210]},{"name":"Annotation_FormatChange_GUID","features":[210]},{"name":"Annotation_FormulaError_GUID","features":[210]},{"name":"Annotation_GrammarError_GUID","features":[210]},{"name":"Annotation_Header_GUID","features":[210]},{"name":"Annotation_Highlighted_GUID","features":[210]},{"name":"Annotation_InsertionChange_GUID","features":[210]},{"name":"Annotation_Mathematics_GUID","features":[210]},{"name":"Annotation_MoveChange_GUID","features":[210]},{"name":"Annotation_Pattern_GUID","features":[210]},{"name":"Annotation_Sensitive_GUID","features":[210]},{"name":"Annotation_SpellingError_GUID","features":[210]},{"name":"Annotation_Target_Property_GUID","features":[210]},{"name":"Annotation_TrackChanges_GUID","features":[210]},{"name":"Annotation_UnsyncedChange_GUID","features":[210]},{"name":"AppBar_Control_GUID","features":[210]},{"name":"AriaProperties_Property_GUID","features":[210]},{"name":"AriaRole_Property_GUID","features":[210]},{"name":"Assertive","features":[210]},{"name":"AsyncContentLoadedState","features":[210]},{"name":"AsyncContentLoadedState_Beginning","features":[210]},{"name":"AsyncContentLoadedState_Completed","features":[210]},{"name":"AsyncContentLoadedState_Progress","features":[210]},{"name":"AsyncContentLoaded_Event_GUID","features":[210]},{"name":"AutomationElementMode","features":[210]},{"name":"AutomationElementMode_Full","features":[210]},{"name":"AutomationElementMode_None","features":[210]},{"name":"AutomationFocusChanged_Event_GUID","features":[210]},{"name":"AutomationId_Property_GUID","features":[210]},{"name":"AutomationIdentifierType","features":[210]},{"name":"AutomationIdentifierType_Annotation","features":[210]},{"name":"AutomationIdentifierType_Changes","features":[210]},{"name":"AutomationIdentifierType_ControlType","features":[210]},{"name":"AutomationIdentifierType_Event","features":[210]},{"name":"AutomationIdentifierType_LandmarkType","features":[210]},{"name":"AutomationIdentifierType_Pattern","features":[210]},{"name":"AutomationIdentifierType_Property","features":[210]},{"name":"AutomationIdentifierType_Style","features":[210]},{"name":"AutomationIdentifierType_TextAttribute","features":[210]},{"name":"AutomationPropertyChanged_Event_GUID","features":[210]},{"name":"BoundingRectangle_Property_GUID","features":[210]},{"name":"BulletStyle","features":[210]},{"name":"BulletStyle_DashBullet","features":[210]},{"name":"BulletStyle_FilledRoundBullet","features":[210]},{"name":"BulletStyle_FilledSquareBullet","features":[210]},{"name":"BulletStyle_HollowRoundBullet","features":[210]},{"name":"BulletStyle_HollowSquareBullet","features":[210]},{"name":"BulletStyle_None","features":[210]},{"name":"BulletStyle_Other","features":[210]},{"name":"Button_Control_GUID","features":[210]},{"name":"CAccPropServices","features":[210]},{"name":"CLSID_AccPropServices","features":[210]},{"name":"CUIAutomation","features":[210]},{"name":"CUIAutomation8","features":[210]},{"name":"CUIAutomationRegistrar","features":[210]},{"name":"Calendar_Control_GUID","features":[210]},{"name":"CapStyle","features":[210]},{"name":"CapStyle_AllCap","features":[210]},{"name":"CapStyle_AllPetiteCaps","features":[210]},{"name":"CapStyle_None","features":[210]},{"name":"CapStyle_Other","features":[210]},{"name":"CapStyle_PetiteCaps","features":[210]},{"name":"CapStyle_SmallCap","features":[210]},{"name":"CapStyle_Titling","features":[210]},{"name":"CapStyle_Unicase","features":[210]},{"name":"CaretBidiMode","features":[210]},{"name":"CaretBidiMode_LTR","features":[210]},{"name":"CaretBidiMode_RTL","features":[210]},{"name":"CaretPosition","features":[210]},{"name":"CaretPosition_BeginningOfLine","features":[210]},{"name":"CaretPosition_EndOfLine","features":[210]},{"name":"CaretPosition_Unknown","features":[210]},{"name":"CenterPoint_Property_GUID","features":[210]},{"name":"Changes_Event_GUID","features":[210]},{"name":"Changes_Summary_GUID","features":[210]},{"name":"CheckBox_Control_GUID","features":[210]},{"name":"ClassName_Property_GUID","features":[210]},{"name":"ClickablePoint_Property_GUID","features":[210]},{"name":"CoalesceEventsOptions","features":[210]},{"name":"CoalesceEventsOptions_Disabled","features":[210]},{"name":"CoalesceEventsOptions_Enabled","features":[210]},{"name":"ComboBox_Control_GUID","features":[210]},{"name":"ConditionType","features":[210]},{"name":"ConditionType_And","features":[210]},{"name":"ConditionType_False","features":[210]},{"name":"ConditionType_Not","features":[210]},{"name":"ConditionType_Or","features":[210]},{"name":"ConditionType_Property","features":[210]},{"name":"ConditionType_True","features":[210]},{"name":"ConnectionRecoveryBehaviorOptions","features":[210]},{"name":"ConnectionRecoveryBehaviorOptions_Disabled","features":[210]},{"name":"ConnectionRecoveryBehaviorOptions_Enabled","features":[210]},{"name":"ControlType_Property_GUID","features":[210]},{"name":"ControllerFor_Property_GUID","features":[210]},{"name":"CreateStdAccessibleObject","features":[3,210]},{"name":"CreateStdAccessibleProxyA","features":[3,210]},{"name":"CreateStdAccessibleProxyW","features":[3,210]},{"name":"Culture_Property_GUID","features":[210]},{"name":"CustomNavigation_Pattern_GUID","features":[210]},{"name":"Custom_Control_GUID","features":[210]},{"name":"DISPID_ACC_CHILD","features":[210]},{"name":"DISPID_ACC_CHILDCOUNT","features":[210]},{"name":"DISPID_ACC_DEFAULTACTION","features":[210]},{"name":"DISPID_ACC_DESCRIPTION","features":[210]},{"name":"DISPID_ACC_DODEFAULTACTION","features":[210]},{"name":"DISPID_ACC_FOCUS","features":[210]},{"name":"DISPID_ACC_HELP","features":[210]},{"name":"DISPID_ACC_HELPTOPIC","features":[210]},{"name":"DISPID_ACC_HITTEST","features":[210]},{"name":"DISPID_ACC_KEYBOARDSHORTCUT","features":[210]},{"name":"DISPID_ACC_LOCATION","features":[210]},{"name":"DISPID_ACC_NAME","features":[210]},{"name":"DISPID_ACC_NAVIGATE","features":[210]},{"name":"DISPID_ACC_PARENT","features":[210]},{"name":"DISPID_ACC_ROLE","features":[210]},{"name":"DISPID_ACC_SELECT","features":[210]},{"name":"DISPID_ACC_SELECTION","features":[210]},{"name":"DISPID_ACC_STATE","features":[210]},{"name":"DISPID_ACC_VALUE","features":[210]},{"name":"DataGrid_Control_GUID","features":[210]},{"name":"DataItem_Control_GUID","features":[210]},{"name":"DescribedBy_Property_GUID","features":[210]},{"name":"DockPattern_SetDockPosition","features":[210]},{"name":"DockPosition","features":[210]},{"name":"DockPosition_Bottom","features":[210]},{"name":"DockPosition_Fill","features":[210]},{"name":"DockPosition_Left","features":[210]},{"name":"DockPosition_None","features":[210]},{"name":"DockPosition_Right","features":[210]},{"name":"DockPosition_Top","features":[210]},{"name":"Dock_DockPosition_Property_GUID","features":[210]},{"name":"Dock_Pattern_GUID","features":[210]},{"name":"Document_Control_GUID","features":[210]},{"name":"Drag_DragCancel_Event_GUID","features":[210]},{"name":"Drag_DragComplete_Event_GUID","features":[210]},{"name":"Drag_DragStart_Event_GUID","features":[210]},{"name":"Drag_DropEffect_Property_GUID","features":[210]},{"name":"Drag_DropEffects_Property_GUID","features":[210]},{"name":"Drag_GrabbedItems_Property_GUID","features":[210]},{"name":"Drag_IsGrabbed_Property_GUID","features":[210]},{"name":"Drag_Pattern_GUID","features":[210]},{"name":"DropTarget_DragEnter_Event_GUID","features":[210]},{"name":"DropTarget_DragLeave_Event_GUID","features":[210]},{"name":"DropTarget_DropTargetEffect_Property_GUID","features":[210]},{"name":"DropTarget_DropTargetEffects_Property_GUID","features":[210]},{"name":"DropTarget_Dropped_Event_GUID","features":[210]},{"name":"DropTarget_Pattern_GUID","features":[210]},{"name":"Edit_Control_GUID","features":[210]},{"name":"EventArgsType","features":[210]},{"name":"EventArgsType_ActiveTextPositionChanged","features":[210]},{"name":"EventArgsType_AsyncContentLoaded","features":[210]},{"name":"EventArgsType_Changes","features":[210]},{"name":"EventArgsType_Notification","features":[210]},{"name":"EventArgsType_PropertyChanged","features":[210]},{"name":"EventArgsType_Simple","features":[210]},{"name":"EventArgsType_StructureChanged","features":[210]},{"name":"EventArgsType_StructuredMarkup","features":[210]},{"name":"EventArgsType_TextEditTextChanged","features":[210]},{"name":"EventArgsType_WindowClosed","features":[210]},{"name":"ExpandCollapsePattern_Collapse","features":[210]},{"name":"ExpandCollapsePattern_Expand","features":[210]},{"name":"ExpandCollapseState","features":[210]},{"name":"ExpandCollapseState_Collapsed","features":[210]},{"name":"ExpandCollapseState_Expanded","features":[210]},{"name":"ExpandCollapseState_LeafNode","features":[210]},{"name":"ExpandCollapseState_PartiallyExpanded","features":[210]},{"name":"ExpandCollapse_ExpandCollapseState_Property_GUID","features":[210]},{"name":"ExpandCollapse_Pattern_GUID","features":[210]},{"name":"ExtendedProperty","features":[210]},{"name":"FILTERKEYS","features":[210]},{"name":"FillColor_Property_GUID","features":[210]},{"name":"FillType","features":[210]},{"name":"FillType_Color","features":[210]},{"name":"FillType_Gradient","features":[210]},{"name":"FillType_None","features":[210]},{"name":"FillType_Pattern","features":[210]},{"name":"FillType_Picture","features":[210]},{"name":"FillType_Property_GUID","features":[210]},{"name":"FlowDirections","features":[210]},{"name":"FlowDirections_BottomToTop","features":[210]},{"name":"FlowDirections_Default","features":[210]},{"name":"FlowDirections_RightToLeft","features":[210]},{"name":"FlowDirections_Vertical","features":[210]},{"name":"FlowsFrom_Property_GUID","features":[210]},{"name":"FlowsTo_Property_GUID","features":[210]},{"name":"FrameworkId_Property_GUID","features":[210]},{"name":"FullDescription_Property_GUID","features":[210]},{"name":"GetOleaccVersionInfo","features":[210]},{"name":"GetRoleTextA","features":[210]},{"name":"GetRoleTextW","features":[210]},{"name":"GetStateTextA","features":[210]},{"name":"GetStateTextW","features":[210]},{"name":"GridItem_ColumnSpan_Property_GUID","features":[210]},{"name":"GridItem_Column_Property_GUID","features":[210]},{"name":"GridItem_Parent_Property_GUID","features":[210]},{"name":"GridItem_Pattern_GUID","features":[210]},{"name":"GridItem_RowSpan_Property_GUID","features":[210]},{"name":"GridItem_Row_Property_GUID","features":[210]},{"name":"GridPattern_GetItem","features":[210]},{"name":"Grid_ColumnCount_Property_GUID","features":[210]},{"name":"Grid_Pattern_GUID","features":[210]},{"name":"Grid_RowCount_Property_GUID","features":[210]},{"name":"Group_Control_GUID","features":[210]},{"name":"HCF_AVAILABLE","features":[210]},{"name":"HCF_CONFIRMHOTKEY","features":[210]},{"name":"HCF_HIGHCONTRASTON","features":[210]},{"name":"HCF_HOTKEYACTIVE","features":[210]},{"name":"HCF_HOTKEYAVAILABLE","features":[210]},{"name":"HCF_HOTKEYSOUND","features":[210]},{"name":"HCF_INDICATOR","features":[210]},{"name":"HCF_OPTION_NOTHEMECHANGE","features":[210]},{"name":"HIGHCONTRASTA","features":[210]},{"name":"HIGHCONTRASTW","features":[210]},{"name":"HIGHCONTRASTW_FLAGS","features":[210]},{"name":"HUIAEVENT","features":[210]},{"name":"HUIANODE","features":[210]},{"name":"HUIAPATTERNOBJECT","features":[210]},{"name":"HUIATEXTRANGE","features":[210]},{"name":"HWINEVENTHOOK","features":[210]},{"name":"HasKeyboardFocus_Property_GUID","features":[210]},{"name":"HeaderItem_Control_GUID","features":[210]},{"name":"Header_Control_GUID","features":[210]},{"name":"HeadingLevel1","features":[210]},{"name":"HeadingLevel2","features":[210]},{"name":"HeadingLevel3","features":[210]},{"name":"HeadingLevel4","features":[210]},{"name":"HeadingLevel5","features":[210]},{"name":"HeadingLevel6","features":[210]},{"name":"HeadingLevel7","features":[210]},{"name":"HeadingLevel8","features":[210]},{"name":"HeadingLevel9","features":[210]},{"name":"HeadingLevel_None","features":[210]},{"name":"HeadingLevel_Property_GUID","features":[210]},{"name":"HelpText_Property_GUID","features":[210]},{"name":"HorizontalTextAlignment","features":[210]},{"name":"HorizontalTextAlignment_Centered","features":[210]},{"name":"HorizontalTextAlignment_Justified","features":[210]},{"name":"HorizontalTextAlignment_Left","features":[210]},{"name":"HorizontalTextAlignment_Right","features":[210]},{"name":"HostedFragmentRootsInvalidated_Event_GUID","features":[210]},{"name":"Hyperlink_Control_GUID","features":[210]},{"name":"IAccIdentity","features":[210]},{"name":"IAccPropServer","features":[210]},{"name":"IAccPropServices","features":[210]},{"name":"IAccessible","features":[210]},{"name":"IAccessibleEx","features":[210]},{"name":"IAccessibleHandler","features":[210]},{"name":"IAccessibleHostingElementProviders","features":[210]},{"name":"IAccessibleWindowlessSite","features":[210]},{"name":"IAnnotationProvider","features":[210]},{"name":"ICustomNavigationProvider","features":[210]},{"name":"IDockProvider","features":[210]},{"name":"IDragProvider","features":[210]},{"name":"IDropTargetProvider","features":[210]},{"name":"IExpandCollapseProvider","features":[210]},{"name":"IGridItemProvider","features":[210]},{"name":"IGridProvider","features":[210]},{"name":"IIS_ControlAccessible","features":[210]},{"name":"IIS_IsOleaccProxy","features":[210]},{"name":"IInvokeProvider","features":[210]},{"name":"IItemContainerProvider","features":[210]},{"name":"ILegacyIAccessibleProvider","features":[210]},{"name":"IMultipleViewProvider","features":[210]},{"name":"IObjectModelProvider","features":[210]},{"name":"IProxyProviderWinEventHandler","features":[210]},{"name":"IProxyProviderWinEventSink","features":[210]},{"name":"IRangeValueProvider","features":[210]},{"name":"IRawElementProviderAdviseEvents","features":[210]},{"name":"IRawElementProviderFragment","features":[210]},{"name":"IRawElementProviderFragmentRoot","features":[210]},{"name":"IRawElementProviderHostingAccessibles","features":[210]},{"name":"IRawElementProviderHwndOverride","features":[210]},{"name":"IRawElementProviderSimple","features":[210]},{"name":"IRawElementProviderSimple2","features":[210]},{"name":"IRawElementProviderSimple3","features":[210]},{"name":"IRawElementProviderWindowlessSite","features":[210]},{"name":"IRichEditUiaInformation","features":[210]},{"name":"IRicheditWindowlessAccessibility","features":[210]},{"name":"IScrollItemProvider","features":[210]},{"name":"IScrollProvider","features":[210]},{"name":"ISelectionItemProvider","features":[210]},{"name":"ISelectionProvider","features":[210]},{"name":"ISelectionProvider2","features":[210]},{"name":"ISpreadsheetItemProvider","features":[210]},{"name":"ISpreadsheetProvider","features":[210]},{"name":"IStylesProvider","features":[210]},{"name":"ISynchronizedInputProvider","features":[210]},{"name":"ITableItemProvider","features":[210]},{"name":"ITableProvider","features":[210]},{"name":"ITextChildProvider","features":[210]},{"name":"ITextEditProvider","features":[210]},{"name":"ITextProvider","features":[210]},{"name":"ITextProvider2","features":[210]},{"name":"ITextRangeProvider","features":[210]},{"name":"ITextRangeProvider2","features":[210]},{"name":"IToggleProvider","features":[210]},{"name":"ITransformProvider","features":[210]},{"name":"ITransformProvider2","features":[210]},{"name":"IUIAutomation","features":[210]},{"name":"IUIAutomation2","features":[210]},{"name":"IUIAutomation3","features":[210]},{"name":"IUIAutomation4","features":[210]},{"name":"IUIAutomation5","features":[210]},{"name":"IUIAutomation6","features":[210]},{"name":"IUIAutomationActiveTextPositionChangedEventHandler","features":[210]},{"name":"IUIAutomationAndCondition","features":[210]},{"name":"IUIAutomationAnnotationPattern","features":[210]},{"name":"IUIAutomationBoolCondition","features":[210]},{"name":"IUIAutomationCacheRequest","features":[210]},{"name":"IUIAutomationChangesEventHandler","features":[210]},{"name":"IUIAutomationCondition","features":[210]},{"name":"IUIAutomationCustomNavigationPattern","features":[210]},{"name":"IUIAutomationDockPattern","features":[210]},{"name":"IUIAutomationDragPattern","features":[210]},{"name":"IUIAutomationDropTargetPattern","features":[210]},{"name":"IUIAutomationElement","features":[210]},{"name":"IUIAutomationElement2","features":[210]},{"name":"IUIAutomationElement3","features":[210]},{"name":"IUIAutomationElement4","features":[210]},{"name":"IUIAutomationElement5","features":[210]},{"name":"IUIAutomationElement6","features":[210]},{"name":"IUIAutomationElement7","features":[210]},{"name":"IUIAutomationElement8","features":[210]},{"name":"IUIAutomationElement9","features":[210]},{"name":"IUIAutomationElementArray","features":[210]},{"name":"IUIAutomationEventHandler","features":[210]},{"name":"IUIAutomationEventHandlerGroup","features":[210]},{"name":"IUIAutomationExpandCollapsePattern","features":[210]},{"name":"IUIAutomationFocusChangedEventHandler","features":[210]},{"name":"IUIAutomationGridItemPattern","features":[210]},{"name":"IUIAutomationGridPattern","features":[210]},{"name":"IUIAutomationInvokePattern","features":[210]},{"name":"IUIAutomationItemContainerPattern","features":[210]},{"name":"IUIAutomationLegacyIAccessiblePattern","features":[210]},{"name":"IUIAutomationMultipleViewPattern","features":[210]},{"name":"IUIAutomationNotCondition","features":[210]},{"name":"IUIAutomationNotificationEventHandler","features":[210]},{"name":"IUIAutomationObjectModelPattern","features":[210]},{"name":"IUIAutomationOrCondition","features":[210]},{"name":"IUIAutomationPatternHandler","features":[210]},{"name":"IUIAutomationPatternInstance","features":[210]},{"name":"IUIAutomationPropertyChangedEventHandler","features":[210]},{"name":"IUIAutomationPropertyCondition","features":[210]},{"name":"IUIAutomationProxyFactory","features":[210]},{"name":"IUIAutomationProxyFactoryEntry","features":[210]},{"name":"IUIAutomationProxyFactoryMapping","features":[210]},{"name":"IUIAutomationRangeValuePattern","features":[210]},{"name":"IUIAutomationRegistrar","features":[210]},{"name":"IUIAutomationScrollItemPattern","features":[210]},{"name":"IUIAutomationScrollPattern","features":[210]},{"name":"IUIAutomationSelectionItemPattern","features":[210]},{"name":"IUIAutomationSelectionPattern","features":[210]},{"name":"IUIAutomationSelectionPattern2","features":[210]},{"name":"IUIAutomationSpreadsheetItemPattern","features":[210]},{"name":"IUIAutomationSpreadsheetPattern","features":[210]},{"name":"IUIAutomationStructureChangedEventHandler","features":[210]},{"name":"IUIAutomationStylesPattern","features":[210]},{"name":"IUIAutomationSynchronizedInputPattern","features":[210]},{"name":"IUIAutomationTableItemPattern","features":[210]},{"name":"IUIAutomationTablePattern","features":[210]},{"name":"IUIAutomationTextChildPattern","features":[210]},{"name":"IUIAutomationTextEditPattern","features":[210]},{"name":"IUIAutomationTextEditTextChangedEventHandler","features":[210]},{"name":"IUIAutomationTextPattern","features":[210]},{"name":"IUIAutomationTextPattern2","features":[210]},{"name":"IUIAutomationTextRange","features":[210]},{"name":"IUIAutomationTextRange2","features":[210]},{"name":"IUIAutomationTextRange3","features":[210]},{"name":"IUIAutomationTextRangeArray","features":[210]},{"name":"IUIAutomationTogglePattern","features":[210]},{"name":"IUIAutomationTransformPattern","features":[210]},{"name":"IUIAutomationTransformPattern2","features":[210]},{"name":"IUIAutomationTreeWalker","features":[210]},{"name":"IUIAutomationValuePattern","features":[210]},{"name":"IUIAutomationVirtualizedItemPattern","features":[210]},{"name":"IUIAutomationWindowPattern","features":[210]},{"name":"IValueProvider","features":[210]},{"name":"IVirtualizedItemProvider","features":[210]},{"name":"IWindowProvider","features":[210]},{"name":"Image_Control_GUID","features":[210]},{"name":"InputDiscarded_Event_GUID","features":[210]},{"name":"InputReachedOtherElement_Event_GUID","features":[210]},{"name":"InputReachedTarget_Event_GUID","features":[210]},{"name":"InvokePattern_Invoke","features":[210]},{"name":"Invoke_Invoked_Event_GUID","features":[210]},{"name":"Invoke_Pattern_GUID","features":[210]},{"name":"IsAnnotationPatternAvailable_Property_GUID","features":[210]},{"name":"IsContentElement_Property_GUID","features":[210]},{"name":"IsControlElement_Property_GUID","features":[210]},{"name":"IsCustomNavigationPatternAvailable_Property_GUID","features":[210]},{"name":"IsDataValidForForm_Property_GUID","features":[210]},{"name":"IsDialog_Property_GUID","features":[210]},{"name":"IsDockPatternAvailable_Property_GUID","features":[210]},{"name":"IsDragPatternAvailable_Property_GUID","features":[210]},{"name":"IsDropTargetPatternAvailable_Property_GUID","features":[210]},{"name":"IsEnabled_Property_GUID","features":[210]},{"name":"IsExpandCollapsePatternAvailable_Property_GUID","features":[210]},{"name":"IsGridItemPatternAvailable_Property_GUID","features":[210]},{"name":"IsGridPatternAvailable_Property_GUID","features":[210]},{"name":"IsInvokePatternAvailable_Property_GUID","features":[210]},{"name":"IsItemContainerPatternAvailable_Property_GUID","features":[210]},{"name":"IsKeyboardFocusable_Property_GUID","features":[210]},{"name":"IsLegacyIAccessiblePatternAvailable_Property_GUID","features":[210]},{"name":"IsMultipleViewPatternAvailable_Property_GUID","features":[210]},{"name":"IsObjectModelPatternAvailable_Property_GUID","features":[210]},{"name":"IsOffscreen_Property_GUID","features":[210]},{"name":"IsPassword_Property_GUID","features":[210]},{"name":"IsPeripheral_Property_GUID","features":[210]},{"name":"IsRangeValuePatternAvailable_Property_GUID","features":[210]},{"name":"IsRequiredForForm_Property_GUID","features":[210]},{"name":"IsScrollItemPatternAvailable_Property_GUID","features":[210]},{"name":"IsScrollPatternAvailable_Property_GUID","features":[210]},{"name":"IsSelectionItemPatternAvailable_Property_GUID","features":[210]},{"name":"IsSelectionPattern2Available_Property_GUID","features":[210]},{"name":"IsSelectionPatternAvailable_Property_GUID","features":[210]},{"name":"IsSpreadsheetItemPatternAvailable_Property_GUID","features":[210]},{"name":"IsSpreadsheetPatternAvailable_Property_GUID","features":[210]},{"name":"IsStructuredMarkupPatternAvailable_Property_GUID","features":[210]},{"name":"IsStylesPatternAvailable_Property_GUID","features":[210]},{"name":"IsSynchronizedInputPatternAvailable_Property_GUID","features":[210]},{"name":"IsTableItemPatternAvailable_Property_GUID","features":[210]},{"name":"IsTablePatternAvailable_Property_GUID","features":[210]},{"name":"IsTextChildPatternAvailable_Property_GUID","features":[210]},{"name":"IsTextEditPatternAvailable_Property_GUID","features":[210]},{"name":"IsTextPattern2Available_Property_GUID","features":[210]},{"name":"IsTextPatternAvailable_Property_GUID","features":[210]},{"name":"IsTogglePatternAvailable_Property_GUID","features":[210]},{"name":"IsTransformPattern2Available_Property_GUID","features":[210]},{"name":"IsTransformPatternAvailable_Property_GUID","features":[210]},{"name":"IsValuePatternAvailable_Property_GUID","features":[210]},{"name":"IsVirtualizedItemPatternAvailable_Property_GUID","features":[210]},{"name":"IsWinEventHookInstalled","features":[3,210]},{"name":"IsWindowPatternAvailable_Property_GUID","features":[210]},{"name":"ItemContainerPattern_FindItemByProperty","features":[3,43,44,210]},{"name":"ItemContainer_Pattern_GUID","features":[210]},{"name":"ItemStatus_Property_GUID","features":[210]},{"name":"ItemType_Property_GUID","features":[210]},{"name":"LIBID_Accessibility","features":[210]},{"name":"LPFNACCESSIBLECHILDREN","features":[3,43,44,210]},{"name":"LPFNACCESSIBLEOBJECTFROMPOINT","features":[3,43,44,210]},{"name":"LPFNACCESSIBLEOBJECTFROMWINDOW","features":[3,210]},{"name":"LPFNCREATESTDACCESSIBLEOBJECT","features":[3,210]},{"name":"LPFNLRESULTFROMOBJECT","features":[3,210]},{"name":"LPFNOBJECTFROMLRESULT","features":[3,210]},{"name":"LabeledBy_Property_GUID","features":[210]},{"name":"LandmarkType_Property_GUID","features":[210]},{"name":"LayoutInvalidated_Event_GUID","features":[210]},{"name":"LegacyIAccessiblePattern_DoDefaultAction","features":[210]},{"name":"LegacyIAccessiblePattern_GetIAccessible","features":[210]},{"name":"LegacyIAccessiblePattern_Select","features":[210]},{"name":"LegacyIAccessiblePattern_SetValue","features":[210]},{"name":"LegacyIAccessible_ChildId_Property_GUID","features":[210]},{"name":"LegacyIAccessible_DefaultAction_Property_GUID","features":[210]},{"name":"LegacyIAccessible_Description_Property_GUID","features":[210]},{"name":"LegacyIAccessible_Help_Property_GUID","features":[210]},{"name":"LegacyIAccessible_KeyboardShortcut_Property_GUID","features":[210]},{"name":"LegacyIAccessible_Name_Property_GUID","features":[210]},{"name":"LegacyIAccessible_Pattern_GUID","features":[210]},{"name":"LegacyIAccessible_Role_Property_GUID","features":[210]},{"name":"LegacyIAccessible_Selection_Property_GUID","features":[210]},{"name":"LegacyIAccessible_State_Property_GUID","features":[210]},{"name":"LegacyIAccessible_Value_Property_GUID","features":[210]},{"name":"Level_Property_GUID","features":[210]},{"name":"ListItem_Control_GUID","features":[210]},{"name":"List_Control_GUID","features":[210]},{"name":"LiveRegionChanged_Event_GUID","features":[210]},{"name":"LiveSetting","features":[210]},{"name":"LiveSetting_Property_GUID","features":[210]},{"name":"LocalizedControlType_Property_GUID","features":[210]},{"name":"LocalizedLandmarkType_Property_GUID","features":[210]},{"name":"LresultFromObject","features":[3,210]},{"name":"MOUSEKEYS","features":[210]},{"name":"MSAAMENUINFO","features":[210]},{"name":"MSAA_MENU_SIG","features":[210]},{"name":"MenuBar_Control_GUID","features":[210]},{"name":"MenuClosed_Event_GUID","features":[210]},{"name":"MenuItem_Control_GUID","features":[210]},{"name":"MenuModeEnd_Event_GUID","features":[210]},{"name":"MenuModeStart_Event_GUID","features":[210]},{"name":"MenuOpened_Event_GUID","features":[210]},{"name":"Menu_Control_GUID","features":[210]},{"name":"MultipleViewPattern_GetViewName","features":[210]},{"name":"MultipleViewPattern_SetCurrentView","features":[210]},{"name":"MultipleView_CurrentView_Property_GUID","features":[210]},{"name":"MultipleView_Pattern_GUID","features":[210]},{"name":"MultipleView_SupportedViews_Property_GUID","features":[210]},{"name":"NAVDIR_DOWN","features":[210]},{"name":"NAVDIR_FIRSTCHILD","features":[210]},{"name":"NAVDIR_LASTCHILD","features":[210]},{"name":"NAVDIR_LEFT","features":[210]},{"name":"NAVDIR_MAX","features":[210]},{"name":"NAVDIR_MIN","features":[210]},{"name":"NAVDIR_NEXT","features":[210]},{"name":"NAVDIR_PREVIOUS","features":[210]},{"name":"NAVDIR_RIGHT","features":[210]},{"name":"NAVDIR_UP","features":[210]},{"name":"Name_Property_GUID","features":[210]},{"name":"NavigateDirection","features":[210]},{"name":"NavigateDirection_FirstChild","features":[210]},{"name":"NavigateDirection_LastChild","features":[210]},{"name":"NavigateDirection_NextSibling","features":[210]},{"name":"NavigateDirection_Parent","features":[210]},{"name":"NavigateDirection_PreviousSibling","features":[210]},{"name":"NewNativeWindowHandle_Property_GUID","features":[210]},{"name":"NormalizeState","features":[210]},{"name":"NormalizeState_Custom","features":[210]},{"name":"NormalizeState_None","features":[210]},{"name":"NormalizeState_View","features":[210]},{"name":"NotificationKind","features":[210]},{"name":"NotificationKind_ActionAborted","features":[210]},{"name":"NotificationKind_ActionCompleted","features":[210]},{"name":"NotificationKind_ItemAdded","features":[210]},{"name":"NotificationKind_ItemRemoved","features":[210]},{"name":"NotificationKind_Other","features":[210]},{"name":"NotificationProcessing","features":[210]},{"name":"NotificationProcessing_All","features":[210]},{"name":"NotificationProcessing_CurrentThenMostRecent","features":[210]},{"name":"NotificationProcessing_ImportantAll","features":[210]},{"name":"NotificationProcessing_ImportantMostRecent","features":[210]},{"name":"NotificationProcessing_MostRecent","features":[210]},{"name":"Notification_Event_GUID","features":[210]},{"name":"NotifyWinEvent","features":[3,210]},{"name":"ObjectFromLresult","features":[3,210]},{"name":"ObjectModel_Pattern_GUID","features":[210]},{"name":"Off","features":[210]},{"name":"OptimizeForVisualContent_Property_GUID","features":[210]},{"name":"OrientationType","features":[210]},{"name":"OrientationType_Horizontal","features":[210]},{"name":"OrientationType_None","features":[210]},{"name":"OrientationType_Vertical","features":[210]},{"name":"Orientation_Property_GUID","features":[210]},{"name":"OutlineColor_Property_GUID","features":[210]},{"name":"OutlineStyles","features":[210]},{"name":"OutlineStyles_Embossed","features":[210]},{"name":"OutlineStyles_Engraved","features":[210]},{"name":"OutlineStyles_None","features":[210]},{"name":"OutlineStyles_Outline","features":[210]},{"name":"OutlineStyles_Shadow","features":[210]},{"name":"OutlineThickness_Property_GUID","features":[210]},{"name":"PROPID_ACC_DEFAULTACTION","features":[210]},{"name":"PROPID_ACC_DESCRIPTION","features":[210]},{"name":"PROPID_ACC_DESCRIPTIONMAP","features":[210]},{"name":"PROPID_ACC_DODEFAULTACTION","features":[210]},{"name":"PROPID_ACC_FOCUS","features":[210]},{"name":"PROPID_ACC_HELP","features":[210]},{"name":"PROPID_ACC_HELPTOPIC","features":[210]},{"name":"PROPID_ACC_KEYBOARDSHORTCUT","features":[210]},{"name":"PROPID_ACC_NAME","features":[210]},{"name":"PROPID_ACC_NAV_DOWN","features":[210]},{"name":"PROPID_ACC_NAV_FIRSTCHILD","features":[210]},{"name":"PROPID_ACC_NAV_LASTCHILD","features":[210]},{"name":"PROPID_ACC_NAV_LEFT","features":[210]},{"name":"PROPID_ACC_NAV_NEXT","features":[210]},{"name":"PROPID_ACC_NAV_PREV","features":[210]},{"name":"PROPID_ACC_NAV_RIGHT","features":[210]},{"name":"PROPID_ACC_NAV_UP","features":[210]},{"name":"PROPID_ACC_PARENT","features":[210]},{"name":"PROPID_ACC_ROLE","features":[210]},{"name":"PROPID_ACC_ROLEMAP","features":[210]},{"name":"PROPID_ACC_SELECTION","features":[210]},{"name":"PROPID_ACC_STATE","features":[210]},{"name":"PROPID_ACC_STATEMAP","features":[210]},{"name":"PROPID_ACC_VALUE","features":[210]},{"name":"PROPID_ACC_VALUEMAP","features":[210]},{"name":"Pane_Control_GUID","features":[210]},{"name":"Polite","features":[210]},{"name":"PositionInSet_Property_GUID","features":[210]},{"name":"ProcessId_Property_GUID","features":[210]},{"name":"ProgressBar_Control_GUID","features":[210]},{"name":"PropertyConditionFlags","features":[210]},{"name":"PropertyConditionFlags_IgnoreCase","features":[210]},{"name":"PropertyConditionFlags_MatchSubstring","features":[210]},{"name":"PropertyConditionFlags_None","features":[210]},{"name":"ProviderDescription_Property_GUID","features":[210]},{"name":"ProviderOptions","features":[210]},{"name":"ProviderOptions_ClientSideProvider","features":[210]},{"name":"ProviderOptions_HasNativeIAccessible","features":[210]},{"name":"ProviderOptions_NonClientAreaProvider","features":[210]},{"name":"ProviderOptions_OverrideProvider","features":[210]},{"name":"ProviderOptions_ProviderOwnsSetFocus","features":[210]},{"name":"ProviderOptions_RefuseNonClientSupport","features":[210]},{"name":"ProviderOptions_ServerSideProvider","features":[210]},{"name":"ProviderOptions_UseClientCoordinates","features":[210]},{"name":"ProviderOptions_UseComThreading","features":[210]},{"name":"ProviderType","features":[210]},{"name":"ProviderType_BaseHwnd","features":[210]},{"name":"ProviderType_NonClientArea","features":[210]},{"name":"ProviderType_Proxy","features":[210]},{"name":"ROLE_SYSTEM_ALERT","features":[210]},{"name":"ROLE_SYSTEM_ANIMATION","features":[210]},{"name":"ROLE_SYSTEM_APPLICATION","features":[210]},{"name":"ROLE_SYSTEM_BORDER","features":[210]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWN","features":[210]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWNGRID","features":[210]},{"name":"ROLE_SYSTEM_BUTTONMENU","features":[210]},{"name":"ROLE_SYSTEM_CARET","features":[210]},{"name":"ROLE_SYSTEM_CELL","features":[210]},{"name":"ROLE_SYSTEM_CHARACTER","features":[210]},{"name":"ROLE_SYSTEM_CHART","features":[210]},{"name":"ROLE_SYSTEM_CHECKBUTTON","features":[210]},{"name":"ROLE_SYSTEM_CLIENT","features":[210]},{"name":"ROLE_SYSTEM_CLOCK","features":[210]},{"name":"ROLE_SYSTEM_COLUMN","features":[210]},{"name":"ROLE_SYSTEM_COLUMNHEADER","features":[210]},{"name":"ROLE_SYSTEM_COMBOBOX","features":[210]},{"name":"ROLE_SYSTEM_CURSOR","features":[210]},{"name":"ROLE_SYSTEM_DIAGRAM","features":[210]},{"name":"ROLE_SYSTEM_DIAL","features":[210]},{"name":"ROLE_SYSTEM_DIALOG","features":[210]},{"name":"ROLE_SYSTEM_DOCUMENT","features":[210]},{"name":"ROLE_SYSTEM_DROPLIST","features":[210]},{"name":"ROLE_SYSTEM_EQUATION","features":[210]},{"name":"ROLE_SYSTEM_GRAPHIC","features":[210]},{"name":"ROLE_SYSTEM_GRIP","features":[210]},{"name":"ROLE_SYSTEM_GROUPING","features":[210]},{"name":"ROLE_SYSTEM_HELPBALLOON","features":[210]},{"name":"ROLE_SYSTEM_HOTKEYFIELD","features":[210]},{"name":"ROLE_SYSTEM_INDICATOR","features":[210]},{"name":"ROLE_SYSTEM_IPADDRESS","features":[210]},{"name":"ROLE_SYSTEM_LINK","features":[210]},{"name":"ROLE_SYSTEM_LIST","features":[210]},{"name":"ROLE_SYSTEM_LISTITEM","features":[210]},{"name":"ROLE_SYSTEM_MENUBAR","features":[210]},{"name":"ROLE_SYSTEM_MENUITEM","features":[210]},{"name":"ROLE_SYSTEM_MENUPOPUP","features":[210]},{"name":"ROLE_SYSTEM_OUTLINE","features":[210]},{"name":"ROLE_SYSTEM_OUTLINEBUTTON","features":[210]},{"name":"ROLE_SYSTEM_OUTLINEITEM","features":[210]},{"name":"ROLE_SYSTEM_PAGETAB","features":[210]},{"name":"ROLE_SYSTEM_PAGETABLIST","features":[210]},{"name":"ROLE_SYSTEM_PANE","features":[210]},{"name":"ROLE_SYSTEM_PROGRESSBAR","features":[210]},{"name":"ROLE_SYSTEM_PROPERTYPAGE","features":[210]},{"name":"ROLE_SYSTEM_PUSHBUTTON","features":[210]},{"name":"ROLE_SYSTEM_RADIOBUTTON","features":[210]},{"name":"ROLE_SYSTEM_ROW","features":[210]},{"name":"ROLE_SYSTEM_ROWHEADER","features":[210]},{"name":"ROLE_SYSTEM_SCROLLBAR","features":[210]},{"name":"ROLE_SYSTEM_SEPARATOR","features":[210]},{"name":"ROLE_SYSTEM_SLIDER","features":[210]},{"name":"ROLE_SYSTEM_SOUND","features":[210]},{"name":"ROLE_SYSTEM_SPINBUTTON","features":[210]},{"name":"ROLE_SYSTEM_SPLITBUTTON","features":[210]},{"name":"ROLE_SYSTEM_STATICTEXT","features":[210]},{"name":"ROLE_SYSTEM_STATUSBAR","features":[210]},{"name":"ROLE_SYSTEM_TABLE","features":[210]},{"name":"ROLE_SYSTEM_TEXT","features":[210]},{"name":"ROLE_SYSTEM_TITLEBAR","features":[210]},{"name":"ROLE_SYSTEM_TOOLBAR","features":[210]},{"name":"ROLE_SYSTEM_TOOLTIP","features":[210]},{"name":"ROLE_SYSTEM_WHITESPACE","features":[210]},{"name":"ROLE_SYSTEM_WINDOW","features":[210]},{"name":"RadioButton_Control_GUID","features":[210]},{"name":"RangeValuePattern_SetValue","features":[210]},{"name":"RangeValue_IsReadOnly_Property_GUID","features":[210]},{"name":"RangeValue_LargeChange_Property_GUID","features":[210]},{"name":"RangeValue_Maximum_Property_GUID","features":[210]},{"name":"RangeValue_Minimum_Property_GUID","features":[210]},{"name":"RangeValue_Pattern_GUID","features":[210]},{"name":"RangeValue_SmallChange_Property_GUID","features":[210]},{"name":"RangeValue_Value_Property_GUID","features":[210]},{"name":"RegisterPointerInputTarget","features":[3,210,52]},{"name":"RegisterPointerInputTargetEx","features":[3,210,52]},{"name":"Rotation_Property_GUID","features":[210]},{"name":"RowOrColumnMajor","features":[210]},{"name":"RowOrColumnMajor_ColumnMajor","features":[210]},{"name":"RowOrColumnMajor_Indeterminate","features":[210]},{"name":"RowOrColumnMajor_RowMajor","features":[210]},{"name":"RuntimeId_Property_GUID","features":[210]},{"name":"SELFLAG_ADDSELECTION","features":[210]},{"name":"SELFLAG_EXTENDSELECTION","features":[210]},{"name":"SELFLAG_NONE","features":[210]},{"name":"SELFLAG_REMOVESELECTION","features":[210]},{"name":"SELFLAG_TAKEFOCUS","features":[210]},{"name":"SELFLAG_TAKESELECTION","features":[210]},{"name":"SELFLAG_VALID","features":[210]},{"name":"SERIALKEYSA","features":[210]},{"name":"SERIALKEYSW","features":[210]},{"name":"SERIALKEYS_FLAGS","features":[210]},{"name":"SERKF_AVAILABLE","features":[210]},{"name":"SERKF_INDICATOR","features":[210]},{"name":"SERKF_SERIALKEYSON","features":[210]},{"name":"SID_ControlElementProvider","features":[210]},{"name":"SID_IsUIAutomationObject","features":[210]},{"name":"SKF_AUDIBLEFEEDBACK","features":[210]},{"name":"SKF_AVAILABLE","features":[210]},{"name":"SKF_CONFIRMHOTKEY","features":[210]},{"name":"SKF_HOTKEYACTIVE","features":[210]},{"name":"SKF_HOTKEYSOUND","features":[210]},{"name":"SKF_INDICATOR","features":[210]},{"name":"SKF_LALTLATCHED","features":[210]},{"name":"SKF_LALTLOCKED","features":[210]},{"name":"SKF_LCTLLATCHED","features":[210]},{"name":"SKF_LCTLLOCKED","features":[210]},{"name":"SKF_LSHIFTLATCHED","features":[210]},{"name":"SKF_LSHIFTLOCKED","features":[210]},{"name":"SKF_LWINLATCHED","features":[210]},{"name":"SKF_LWINLOCKED","features":[210]},{"name":"SKF_RALTLATCHED","features":[210]},{"name":"SKF_RALTLOCKED","features":[210]},{"name":"SKF_RCTLLATCHED","features":[210]},{"name":"SKF_RCTLLOCKED","features":[210]},{"name":"SKF_RSHIFTLATCHED","features":[210]},{"name":"SKF_RSHIFTLOCKED","features":[210]},{"name":"SKF_RWINLATCHED","features":[210]},{"name":"SKF_RWINLOCKED","features":[210]},{"name":"SKF_STICKYKEYSON","features":[210]},{"name":"SKF_TRISTATE","features":[210]},{"name":"SKF_TWOKEYSOFF","features":[210]},{"name":"SOUNDSENTRYA","features":[210]},{"name":"SOUNDSENTRYW","features":[210]},{"name":"SOUNDSENTRY_FLAGS","features":[210]},{"name":"SOUNDSENTRY_TEXT_EFFECT","features":[210]},{"name":"SOUNDSENTRY_WINDOWS_EFFECT","features":[210]},{"name":"SOUND_SENTRY_GRAPHICS_EFFECT","features":[210]},{"name":"SSF_AVAILABLE","features":[210]},{"name":"SSF_INDICATOR","features":[210]},{"name":"SSF_SOUNDSENTRYON","features":[210]},{"name":"SSGF_DISPLAY","features":[210]},{"name":"SSGF_NONE","features":[210]},{"name":"SSTF_BORDER","features":[210]},{"name":"SSTF_CHARS","features":[210]},{"name":"SSTF_DISPLAY","features":[210]},{"name":"SSTF_NONE","features":[210]},{"name":"SSWF_CUSTOM","features":[210]},{"name":"SSWF_DISPLAY","features":[210]},{"name":"SSWF_NONE","features":[210]},{"name":"SSWF_TITLE","features":[210]},{"name":"SSWF_WINDOW","features":[210]},{"name":"STATE_SYSTEM_HASPOPUP","features":[210]},{"name":"STATE_SYSTEM_NORMAL","features":[210]},{"name":"STICKYKEYS","features":[210]},{"name":"STICKYKEYS_FLAGS","features":[210]},{"name":"SayAsInterpretAs","features":[210]},{"name":"SayAsInterpretAs_Address","features":[210]},{"name":"SayAsInterpretAs_Alphanumeric","features":[210]},{"name":"SayAsInterpretAs_Cardinal","features":[210]},{"name":"SayAsInterpretAs_Currency","features":[210]},{"name":"SayAsInterpretAs_Date","features":[210]},{"name":"SayAsInterpretAs_Date_DayMonth","features":[210]},{"name":"SayAsInterpretAs_Date_DayMonthYear","features":[210]},{"name":"SayAsInterpretAs_Date_MonthDay","features":[210]},{"name":"SayAsInterpretAs_Date_MonthDayYear","features":[210]},{"name":"SayAsInterpretAs_Date_MonthYear","features":[210]},{"name":"SayAsInterpretAs_Date_Year","features":[210]},{"name":"SayAsInterpretAs_Date_YearMonth","features":[210]},{"name":"SayAsInterpretAs_Date_YearMonthDay","features":[210]},{"name":"SayAsInterpretAs_Media","features":[210]},{"name":"SayAsInterpretAs_Name","features":[210]},{"name":"SayAsInterpretAs_Net","features":[210]},{"name":"SayAsInterpretAs_None","features":[210]},{"name":"SayAsInterpretAs_Number","features":[210]},{"name":"SayAsInterpretAs_Ordinal","features":[210]},{"name":"SayAsInterpretAs_Spell","features":[210]},{"name":"SayAsInterpretAs_Telephone","features":[210]},{"name":"SayAsInterpretAs_Time","features":[210]},{"name":"SayAsInterpretAs_Time_HoursMinutes12","features":[210]},{"name":"SayAsInterpretAs_Time_HoursMinutes24","features":[210]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds12","features":[210]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds24","features":[210]},{"name":"SayAsInterpretAs_Url","features":[210]},{"name":"ScrollAmount","features":[210]},{"name":"ScrollAmount_LargeDecrement","features":[210]},{"name":"ScrollAmount_LargeIncrement","features":[210]},{"name":"ScrollAmount_NoAmount","features":[210]},{"name":"ScrollAmount_SmallDecrement","features":[210]},{"name":"ScrollAmount_SmallIncrement","features":[210]},{"name":"ScrollBar_Control_GUID","features":[210]},{"name":"ScrollItemPattern_ScrollIntoView","features":[210]},{"name":"ScrollItem_Pattern_GUID","features":[210]},{"name":"ScrollPattern_Scroll","features":[210]},{"name":"ScrollPattern_SetScrollPercent","features":[210]},{"name":"Scroll_HorizontalScrollPercent_Property_GUID","features":[210]},{"name":"Scroll_HorizontalViewSize_Property_GUID","features":[210]},{"name":"Scroll_HorizontallyScrollable_Property_GUID","features":[210]},{"name":"Scroll_Pattern_GUID","features":[210]},{"name":"Scroll_VerticalScrollPercent_Property_GUID","features":[210]},{"name":"Scroll_VerticalViewSize_Property_GUID","features":[210]},{"name":"Scroll_VerticallyScrollable_Property_GUID","features":[210]},{"name":"Selection2_CurrentSelectedItem_Property_GUID","features":[210]},{"name":"Selection2_FirstSelectedItem_Property_GUID","features":[210]},{"name":"Selection2_ItemCount_Property_GUID","features":[210]},{"name":"Selection2_LastSelectedItem_Property_GUID","features":[210]},{"name":"SelectionItemPattern_AddToSelection","features":[210]},{"name":"SelectionItemPattern_RemoveFromSelection","features":[210]},{"name":"SelectionItemPattern_Select","features":[210]},{"name":"SelectionItem_ElementAddedToSelectionEvent_Event_GUID","features":[210]},{"name":"SelectionItem_ElementRemovedFromSelectionEvent_Event_GUID","features":[210]},{"name":"SelectionItem_ElementSelectedEvent_Event_GUID","features":[210]},{"name":"SelectionItem_IsSelected_Property_GUID","features":[210]},{"name":"SelectionItem_Pattern_GUID","features":[210]},{"name":"SelectionItem_SelectionContainer_Property_GUID","features":[210]},{"name":"Selection_CanSelectMultiple_Property_GUID","features":[210]},{"name":"Selection_InvalidatedEvent_Event_GUID","features":[210]},{"name":"Selection_IsSelectionRequired_Property_GUID","features":[210]},{"name":"Selection_Pattern2_GUID","features":[210]},{"name":"Selection_Pattern_GUID","features":[210]},{"name":"Selection_Selection_Property_GUID","features":[210]},{"name":"SemanticZoom_Control_GUID","features":[210]},{"name":"Separator_Control_GUID","features":[210]},{"name":"SetWinEventHook","features":[3,210]},{"name":"SizeOfSet_Property_GUID","features":[210]},{"name":"Size_Property_GUID","features":[210]},{"name":"Slider_Control_GUID","features":[210]},{"name":"Spinner_Control_GUID","features":[210]},{"name":"SplitButton_Control_GUID","features":[210]},{"name":"SpreadsheetItem_AnnotationObjects_Property_GUID","features":[210]},{"name":"SpreadsheetItem_AnnotationTypes_Property_GUID","features":[210]},{"name":"SpreadsheetItem_Formula_Property_GUID","features":[210]},{"name":"SpreadsheetItem_Pattern_GUID","features":[210]},{"name":"Spreadsheet_Pattern_GUID","features":[210]},{"name":"StatusBar_Control_GUID","features":[210]},{"name":"StructureChangeType","features":[210]},{"name":"StructureChangeType_ChildAdded","features":[210]},{"name":"StructureChangeType_ChildRemoved","features":[210]},{"name":"StructureChangeType_ChildrenBulkAdded","features":[210]},{"name":"StructureChangeType_ChildrenBulkRemoved","features":[210]},{"name":"StructureChangeType_ChildrenInvalidated","features":[210]},{"name":"StructureChangeType_ChildrenReordered","features":[210]},{"name":"StructureChanged_Event_GUID","features":[210]},{"name":"StructuredMarkup_CompositionComplete_Event_GUID","features":[210]},{"name":"StructuredMarkup_Deleted_Event_GUID","features":[210]},{"name":"StructuredMarkup_Pattern_GUID","features":[210]},{"name":"StructuredMarkup_SelectionChanged_Event_GUID","features":[210]},{"name":"StyleId_BulletedList","features":[210]},{"name":"StyleId_BulletedList_GUID","features":[210]},{"name":"StyleId_Custom","features":[210]},{"name":"StyleId_Custom_GUID","features":[210]},{"name":"StyleId_Emphasis","features":[210]},{"name":"StyleId_Emphasis_GUID","features":[210]},{"name":"StyleId_Heading1","features":[210]},{"name":"StyleId_Heading1_GUID","features":[210]},{"name":"StyleId_Heading2","features":[210]},{"name":"StyleId_Heading2_GUID","features":[210]},{"name":"StyleId_Heading3","features":[210]},{"name":"StyleId_Heading3_GUID","features":[210]},{"name":"StyleId_Heading4","features":[210]},{"name":"StyleId_Heading4_GUID","features":[210]},{"name":"StyleId_Heading5","features":[210]},{"name":"StyleId_Heading5_GUID","features":[210]},{"name":"StyleId_Heading6","features":[210]},{"name":"StyleId_Heading6_GUID","features":[210]},{"name":"StyleId_Heading7","features":[210]},{"name":"StyleId_Heading7_GUID","features":[210]},{"name":"StyleId_Heading8","features":[210]},{"name":"StyleId_Heading8_GUID","features":[210]},{"name":"StyleId_Heading9","features":[210]},{"name":"StyleId_Heading9_GUID","features":[210]},{"name":"StyleId_Normal","features":[210]},{"name":"StyleId_Normal_GUID","features":[210]},{"name":"StyleId_NumberedList","features":[210]},{"name":"StyleId_NumberedList_GUID","features":[210]},{"name":"StyleId_Quote","features":[210]},{"name":"StyleId_Quote_GUID","features":[210]},{"name":"StyleId_Subtitle","features":[210]},{"name":"StyleId_Subtitle_GUID","features":[210]},{"name":"StyleId_Title","features":[210]},{"name":"StyleId_Title_GUID","features":[210]},{"name":"Styles_ExtendedProperties_Property_GUID","features":[210]},{"name":"Styles_FillColor_Property_GUID","features":[210]},{"name":"Styles_FillPatternColor_Property_GUID","features":[210]},{"name":"Styles_FillPatternStyle_Property_GUID","features":[210]},{"name":"Styles_Pattern_GUID","features":[210]},{"name":"Styles_Shape_Property_GUID","features":[210]},{"name":"Styles_StyleId_Property_GUID","features":[210]},{"name":"Styles_StyleName_Property_GUID","features":[210]},{"name":"SupportedTextSelection","features":[210]},{"name":"SupportedTextSelection_Multiple","features":[210]},{"name":"SupportedTextSelection_None","features":[210]},{"name":"SupportedTextSelection_Single","features":[210]},{"name":"SynchronizedInputPattern_Cancel","features":[210]},{"name":"SynchronizedInputPattern_StartListening","features":[210]},{"name":"SynchronizedInputType","features":[210]},{"name":"SynchronizedInputType_KeyDown","features":[210]},{"name":"SynchronizedInputType_KeyUp","features":[210]},{"name":"SynchronizedInputType_LeftMouseDown","features":[210]},{"name":"SynchronizedInputType_LeftMouseUp","features":[210]},{"name":"SynchronizedInputType_RightMouseDown","features":[210]},{"name":"SynchronizedInputType_RightMouseUp","features":[210]},{"name":"SynchronizedInput_Pattern_GUID","features":[210]},{"name":"SystemAlert_Event_GUID","features":[210]},{"name":"TOGGLEKEYS","features":[210]},{"name":"TabItem_Control_GUID","features":[210]},{"name":"Tab_Control_GUID","features":[210]},{"name":"TableItem_ColumnHeaderItems_Property_GUID","features":[210]},{"name":"TableItem_Pattern_GUID","features":[210]},{"name":"TableItem_RowHeaderItems_Property_GUID","features":[210]},{"name":"Table_ColumnHeaders_Property_GUID","features":[210]},{"name":"Table_Control_GUID","features":[210]},{"name":"Table_Pattern_GUID","features":[210]},{"name":"Table_RowHeaders_Property_GUID","features":[210]},{"name":"Table_RowOrColumnMajor_Property_GUID","features":[210]},{"name":"TextChild_Pattern_GUID","features":[210]},{"name":"TextDecorationLineStyle","features":[210]},{"name":"TextDecorationLineStyle_Dash","features":[210]},{"name":"TextDecorationLineStyle_DashDot","features":[210]},{"name":"TextDecorationLineStyle_DashDotDot","features":[210]},{"name":"TextDecorationLineStyle_Dot","features":[210]},{"name":"TextDecorationLineStyle_Double","features":[210]},{"name":"TextDecorationLineStyle_DoubleWavy","features":[210]},{"name":"TextDecorationLineStyle_LongDash","features":[210]},{"name":"TextDecorationLineStyle_None","features":[210]},{"name":"TextDecorationLineStyle_Other","features":[210]},{"name":"TextDecorationLineStyle_Single","features":[210]},{"name":"TextDecorationLineStyle_ThickDash","features":[210]},{"name":"TextDecorationLineStyle_ThickDashDot","features":[210]},{"name":"TextDecorationLineStyle_ThickDashDotDot","features":[210]},{"name":"TextDecorationLineStyle_ThickDot","features":[210]},{"name":"TextDecorationLineStyle_ThickLongDash","features":[210]},{"name":"TextDecorationLineStyle_ThickSingle","features":[210]},{"name":"TextDecorationLineStyle_ThickWavy","features":[210]},{"name":"TextDecorationLineStyle_Wavy","features":[210]},{"name":"TextDecorationLineStyle_WordsOnly","features":[210]},{"name":"TextEditChangeType","features":[210]},{"name":"TextEditChangeType_AutoComplete","features":[210]},{"name":"TextEditChangeType_AutoCorrect","features":[210]},{"name":"TextEditChangeType_Composition","features":[210]},{"name":"TextEditChangeType_CompositionFinalized","features":[210]},{"name":"TextEditChangeType_None","features":[210]},{"name":"TextEdit_ConversionTargetChanged_Event_GUID","features":[210]},{"name":"TextEdit_Pattern_GUID","features":[210]},{"name":"TextEdit_TextChanged_Event_GUID","features":[210]},{"name":"TextPatternRangeEndpoint","features":[210]},{"name":"TextPatternRangeEndpoint_End","features":[210]},{"name":"TextPatternRangeEndpoint_Start","features":[210]},{"name":"TextPattern_GetSelection","features":[43,210]},{"name":"TextPattern_GetVisibleRanges","features":[43,210]},{"name":"TextPattern_RangeFromChild","features":[210]},{"name":"TextPattern_RangeFromPoint","features":[210]},{"name":"TextPattern_get_DocumentRange","features":[210]},{"name":"TextPattern_get_SupportedTextSelection","features":[210]},{"name":"TextRange_AddToSelection","features":[210]},{"name":"TextRange_Clone","features":[210]},{"name":"TextRange_Compare","features":[3,210]},{"name":"TextRange_CompareEndpoints","features":[210]},{"name":"TextRange_ExpandToEnclosingUnit","features":[210]},{"name":"TextRange_FindAttribute","features":[3,43,44,210]},{"name":"TextRange_FindText","features":[3,210]},{"name":"TextRange_GetAttributeValue","features":[3,43,44,210]},{"name":"TextRange_GetBoundingRectangles","features":[43,210]},{"name":"TextRange_GetChildren","features":[43,210]},{"name":"TextRange_GetEnclosingElement","features":[210]},{"name":"TextRange_GetText","features":[210]},{"name":"TextRange_Move","features":[210]},{"name":"TextRange_MoveEndpointByRange","features":[210]},{"name":"TextRange_MoveEndpointByUnit","features":[210]},{"name":"TextRange_RemoveFromSelection","features":[210]},{"name":"TextRange_ScrollIntoView","features":[3,210]},{"name":"TextRange_Select","features":[210]},{"name":"TextUnit","features":[210]},{"name":"TextUnit_Character","features":[210]},{"name":"TextUnit_Document","features":[210]},{"name":"TextUnit_Format","features":[210]},{"name":"TextUnit_Line","features":[210]},{"name":"TextUnit_Page","features":[210]},{"name":"TextUnit_Paragraph","features":[210]},{"name":"TextUnit_Word","features":[210]},{"name":"Text_AfterParagraphSpacing_Attribute_GUID","features":[210]},{"name":"Text_AfterSpacing_Attribute_GUID","features":[210]},{"name":"Text_AnimationStyle_Attribute_GUID","features":[210]},{"name":"Text_AnnotationObjects_Attribute_GUID","features":[210]},{"name":"Text_AnnotationTypes_Attribute_GUID","features":[210]},{"name":"Text_BackgroundColor_Attribute_GUID","features":[210]},{"name":"Text_BeforeParagraphSpacing_Attribute_GUID","features":[210]},{"name":"Text_BeforeSpacing_Attribute_GUID","features":[210]},{"name":"Text_BulletStyle_Attribute_GUID","features":[210]},{"name":"Text_CapStyle_Attribute_GUID","features":[210]},{"name":"Text_CaretBidiMode_Attribute_GUID","features":[210]},{"name":"Text_CaretPosition_Attribute_GUID","features":[210]},{"name":"Text_Control_GUID","features":[210]},{"name":"Text_Culture_Attribute_GUID","features":[210]},{"name":"Text_FontName_Attribute_GUID","features":[210]},{"name":"Text_FontSize_Attribute_GUID","features":[210]},{"name":"Text_FontWeight_Attribute_GUID","features":[210]},{"name":"Text_ForegroundColor_Attribute_GUID","features":[210]},{"name":"Text_HorizontalTextAlignment_Attribute_GUID","features":[210]},{"name":"Text_IndentationFirstLine_Attribute_GUID","features":[210]},{"name":"Text_IndentationLeading_Attribute_GUID","features":[210]},{"name":"Text_IndentationTrailing_Attribute_GUID","features":[210]},{"name":"Text_IsActive_Attribute_GUID","features":[210]},{"name":"Text_IsHidden_Attribute_GUID","features":[210]},{"name":"Text_IsItalic_Attribute_GUID","features":[210]},{"name":"Text_IsReadOnly_Attribute_GUID","features":[210]},{"name":"Text_IsSubscript_Attribute_GUID","features":[210]},{"name":"Text_IsSuperscript_Attribute_GUID","features":[210]},{"name":"Text_LineSpacing_Attribute_GUID","features":[210]},{"name":"Text_Link_Attribute_GUID","features":[210]},{"name":"Text_MarginBottom_Attribute_GUID","features":[210]},{"name":"Text_MarginLeading_Attribute_GUID","features":[210]},{"name":"Text_MarginTop_Attribute_GUID","features":[210]},{"name":"Text_MarginTrailing_Attribute_GUID","features":[210]},{"name":"Text_OutlineStyles_Attribute_GUID","features":[210]},{"name":"Text_OverlineColor_Attribute_GUID","features":[210]},{"name":"Text_OverlineStyle_Attribute_GUID","features":[210]},{"name":"Text_Pattern2_GUID","features":[210]},{"name":"Text_Pattern_GUID","features":[210]},{"name":"Text_SayAsInterpretAs_Attribute_GUID","features":[210]},{"name":"Text_SelectionActiveEnd_Attribute_GUID","features":[210]},{"name":"Text_StrikethroughColor_Attribute_GUID","features":[210]},{"name":"Text_StrikethroughStyle_Attribute_GUID","features":[210]},{"name":"Text_StyleId_Attribute_GUID","features":[210]},{"name":"Text_StyleName_Attribute_GUID","features":[210]},{"name":"Text_Tabs_Attribute_GUID","features":[210]},{"name":"Text_TextChangedEvent_Event_GUID","features":[210]},{"name":"Text_TextFlowDirections_Attribute_GUID","features":[210]},{"name":"Text_TextSelectionChangedEvent_Event_GUID","features":[210]},{"name":"Text_UnderlineColor_Attribute_GUID","features":[210]},{"name":"Text_UnderlineStyle_Attribute_GUID","features":[210]},{"name":"Thumb_Control_GUID","features":[210]},{"name":"TitleBar_Control_GUID","features":[210]},{"name":"TogglePattern_Toggle","features":[210]},{"name":"ToggleState","features":[210]},{"name":"ToggleState_Indeterminate","features":[210]},{"name":"ToggleState_Off","features":[210]},{"name":"ToggleState_On","features":[210]},{"name":"Toggle_Pattern_GUID","features":[210]},{"name":"Toggle_ToggleState_Property_GUID","features":[210]},{"name":"ToolBar_Control_GUID","features":[210]},{"name":"ToolTipClosed_Event_GUID","features":[210]},{"name":"ToolTipOpened_Event_GUID","features":[210]},{"name":"ToolTip_Control_GUID","features":[210]},{"name":"Tranform_Pattern2_GUID","features":[210]},{"name":"Transform2_CanZoom_Property_GUID","features":[210]},{"name":"Transform2_ZoomLevel_Property_GUID","features":[210]},{"name":"Transform2_ZoomMaximum_Property_GUID","features":[210]},{"name":"Transform2_ZoomMinimum_Property_GUID","features":[210]},{"name":"TransformPattern_Move","features":[210]},{"name":"TransformPattern_Resize","features":[210]},{"name":"TransformPattern_Rotate","features":[210]},{"name":"Transform_CanMove_Property_GUID","features":[210]},{"name":"Transform_CanResize_Property_GUID","features":[210]},{"name":"Transform_CanRotate_Property_GUID","features":[210]},{"name":"Transform_Pattern_GUID","features":[210]},{"name":"TreeItem_Control_GUID","features":[210]},{"name":"TreeScope","features":[210]},{"name":"TreeScope_Ancestors","features":[210]},{"name":"TreeScope_Children","features":[210]},{"name":"TreeScope_Descendants","features":[210]},{"name":"TreeScope_Element","features":[210]},{"name":"TreeScope_None","features":[210]},{"name":"TreeScope_Parent","features":[210]},{"name":"TreeScope_Subtree","features":[210]},{"name":"TreeTraversalOptions","features":[210]},{"name":"TreeTraversalOptions_Default","features":[210]},{"name":"TreeTraversalOptions_LastToFirstOrder","features":[210]},{"name":"TreeTraversalOptions_PostOrder","features":[210]},{"name":"Tree_Control_GUID","features":[210]},{"name":"UIA_ANNOTATIONTYPE","features":[210]},{"name":"UIA_AcceleratorKeyPropertyId","features":[210]},{"name":"UIA_AccessKeyPropertyId","features":[210]},{"name":"UIA_ActiveTextPositionChangedEventId","features":[210]},{"name":"UIA_AfterParagraphSpacingAttributeId","features":[210]},{"name":"UIA_AnimationStyleAttributeId","features":[210]},{"name":"UIA_AnnotationAnnotationTypeIdPropertyId","features":[210]},{"name":"UIA_AnnotationAnnotationTypeNamePropertyId","features":[210]},{"name":"UIA_AnnotationAuthorPropertyId","features":[210]},{"name":"UIA_AnnotationDateTimePropertyId","features":[210]},{"name":"UIA_AnnotationObjectsAttributeId","features":[210]},{"name":"UIA_AnnotationObjectsPropertyId","features":[210]},{"name":"UIA_AnnotationPatternId","features":[210]},{"name":"UIA_AnnotationTargetPropertyId","features":[210]},{"name":"UIA_AnnotationTypesAttributeId","features":[210]},{"name":"UIA_AnnotationTypesPropertyId","features":[210]},{"name":"UIA_AppBarControlTypeId","features":[210]},{"name":"UIA_AriaPropertiesPropertyId","features":[210]},{"name":"UIA_AriaRolePropertyId","features":[210]},{"name":"UIA_AsyncContentLoadedEventId","features":[210]},{"name":"UIA_AutomationFocusChangedEventId","features":[210]},{"name":"UIA_AutomationIdPropertyId","features":[210]},{"name":"UIA_AutomationPropertyChangedEventId","features":[210]},{"name":"UIA_BackgroundColorAttributeId","features":[210]},{"name":"UIA_BeforeParagraphSpacingAttributeId","features":[210]},{"name":"UIA_BoundingRectanglePropertyId","features":[210]},{"name":"UIA_BulletStyleAttributeId","features":[210]},{"name":"UIA_ButtonControlTypeId","features":[210]},{"name":"UIA_CHANGE_ID","features":[210]},{"name":"UIA_CONTROLTYPE_ID","features":[210]},{"name":"UIA_CalendarControlTypeId","features":[210]},{"name":"UIA_CapStyleAttributeId","features":[210]},{"name":"UIA_CaretBidiModeAttributeId","features":[210]},{"name":"UIA_CaretPositionAttributeId","features":[210]},{"name":"UIA_CenterPointPropertyId","features":[210]},{"name":"UIA_ChangesEventId","features":[210]},{"name":"UIA_CheckBoxControlTypeId","features":[210]},{"name":"UIA_ClassNamePropertyId","features":[210]},{"name":"UIA_ClickablePointPropertyId","features":[210]},{"name":"UIA_ComboBoxControlTypeId","features":[210]},{"name":"UIA_ControlTypePropertyId","features":[210]},{"name":"UIA_ControllerForPropertyId","features":[210]},{"name":"UIA_CultureAttributeId","features":[210]},{"name":"UIA_CulturePropertyId","features":[210]},{"name":"UIA_CustomControlTypeId","features":[210]},{"name":"UIA_CustomLandmarkTypeId","features":[210]},{"name":"UIA_CustomNavigationPatternId","features":[210]},{"name":"UIA_DataGridControlTypeId","features":[210]},{"name":"UIA_DataItemControlTypeId","features":[210]},{"name":"UIA_DescribedByPropertyId","features":[210]},{"name":"UIA_DockDockPositionPropertyId","features":[210]},{"name":"UIA_DockPatternId","features":[210]},{"name":"UIA_DocumentControlTypeId","features":[210]},{"name":"UIA_DragDropEffectPropertyId","features":[210]},{"name":"UIA_DragDropEffectsPropertyId","features":[210]},{"name":"UIA_DragGrabbedItemsPropertyId","features":[210]},{"name":"UIA_DragIsGrabbedPropertyId","features":[210]},{"name":"UIA_DragPatternId","features":[210]},{"name":"UIA_Drag_DragCancelEventId","features":[210]},{"name":"UIA_Drag_DragCompleteEventId","features":[210]},{"name":"UIA_Drag_DragStartEventId","features":[210]},{"name":"UIA_DropTargetDropTargetEffectPropertyId","features":[210]},{"name":"UIA_DropTargetDropTargetEffectsPropertyId","features":[210]},{"name":"UIA_DropTargetPatternId","features":[210]},{"name":"UIA_DropTarget_DragEnterEventId","features":[210]},{"name":"UIA_DropTarget_DragLeaveEventId","features":[210]},{"name":"UIA_DropTarget_DroppedEventId","features":[210]},{"name":"UIA_EVENT_ID","features":[210]},{"name":"UIA_E_ELEMENTNOTAVAILABLE","features":[210]},{"name":"UIA_E_ELEMENTNOTENABLED","features":[210]},{"name":"UIA_E_INVALIDOPERATION","features":[210]},{"name":"UIA_E_NOCLICKABLEPOINT","features":[210]},{"name":"UIA_E_NOTSUPPORTED","features":[210]},{"name":"UIA_E_PROXYASSEMBLYNOTLOADED","features":[210]},{"name":"UIA_E_TIMEOUT","features":[210]},{"name":"UIA_EditControlTypeId","features":[210]},{"name":"UIA_ExpandCollapseExpandCollapseStatePropertyId","features":[210]},{"name":"UIA_ExpandCollapsePatternId","features":[210]},{"name":"UIA_FillColorPropertyId","features":[210]},{"name":"UIA_FillTypePropertyId","features":[210]},{"name":"UIA_FlowsFromPropertyId","features":[210]},{"name":"UIA_FlowsToPropertyId","features":[210]},{"name":"UIA_FontNameAttributeId","features":[210]},{"name":"UIA_FontSizeAttributeId","features":[210]},{"name":"UIA_FontWeightAttributeId","features":[210]},{"name":"UIA_ForegroundColorAttributeId","features":[210]},{"name":"UIA_FormLandmarkTypeId","features":[210]},{"name":"UIA_FrameworkIdPropertyId","features":[210]},{"name":"UIA_FullDescriptionPropertyId","features":[210]},{"name":"UIA_GridColumnCountPropertyId","features":[210]},{"name":"UIA_GridItemColumnPropertyId","features":[210]},{"name":"UIA_GridItemColumnSpanPropertyId","features":[210]},{"name":"UIA_GridItemContainingGridPropertyId","features":[210]},{"name":"UIA_GridItemPatternId","features":[210]},{"name":"UIA_GridItemRowPropertyId","features":[210]},{"name":"UIA_GridItemRowSpanPropertyId","features":[210]},{"name":"UIA_GridPatternId","features":[210]},{"name":"UIA_GridRowCountPropertyId","features":[210]},{"name":"UIA_GroupControlTypeId","features":[210]},{"name":"UIA_HEADINGLEVEL_ID","features":[210]},{"name":"UIA_HasKeyboardFocusPropertyId","features":[210]},{"name":"UIA_HeaderControlTypeId","features":[210]},{"name":"UIA_HeaderItemControlTypeId","features":[210]},{"name":"UIA_HeadingLevelPropertyId","features":[210]},{"name":"UIA_HelpTextPropertyId","features":[210]},{"name":"UIA_HorizontalTextAlignmentAttributeId","features":[210]},{"name":"UIA_HostedFragmentRootsInvalidatedEventId","features":[210]},{"name":"UIA_HyperlinkControlTypeId","features":[210]},{"name":"UIA_IAFP_DEFAULT","features":[210]},{"name":"UIA_IAFP_UNWRAP_BRIDGE","features":[210]},{"name":"UIA_ImageControlTypeId","features":[210]},{"name":"UIA_IndentationFirstLineAttributeId","features":[210]},{"name":"UIA_IndentationLeadingAttributeId","features":[210]},{"name":"UIA_IndentationTrailingAttributeId","features":[210]},{"name":"UIA_InputDiscardedEventId","features":[210]},{"name":"UIA_InputReachedOtherElementEventId","features":[210]},{"name":"UIA_InputReachedTargetEventId","features":[210]},{"name":"UIA_InvokePatternId","features":[210]},{"name":"UIA_Invoke_InvokedEventId","features":[210]},{"name":"UIA_IsActiveAttributeId","features":[210]},{"name":"UIA_IsAnnotationPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsContentElementPropertyId","features":[210]},{"name":"UIA_IsControlElementPropertyId","features":[210]},{"name":"UIA_IsCustomNavigationPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsDataValidForFormPropertyId","features":[210]},{"name":"UIA_IsDialogPropertyId","features":[210]},{"name":"UIA_IsDockPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsDragPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsDropTargetPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsEnabledPropertyId","features":[210]},{"name":"UIA_IsExpandCollapsePatternAvailablePropertyId","features":[210]},{"name":"UIA_IsGridItemPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsGridPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsHiddenAttributeId","features":[210]},{"name":"UIA_IsInvokePatternAvailablePropertyId","features":[210]},{"name":"UIA_IsItalicAttributeId","features":[210]},{"name":"UIA_IsItemContainerPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsKeyboardFocusablePropertyId","features":[210]},{"name":"UIA_IsLegacyIAccessiblePatternAvailablePropertyId","features":[210]},{"name":"UIA_IsMultipleViewPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsObjectModelPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsOffscreenPropertyId","features":[210]},{"name":"UIA_IsPasswordPropertyId","features":[210]},{"name":"UIA_IsPeripheralPropertyId","features":[210]},{"name":"UIA_IsRangeValuePatternAvailablePropertyId","features":[210]},{"name":"UIA_IsReadOnlyAttributeId","features":[210]},{"name":"UIA_IsRequiredForFormPropertyId","features":[210]},{"name":"UIA_IsScrollItemPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsScrollPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsSelectionItemPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsSelectionPattern2AvailablePropertyId","features":[210]},{"name":"UIA_IsSelectionPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsSpreadsheetItemPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsSpreadsheetPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsStylesPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsSubscriptAttributeId","features":[210]},{"name":"UIA_IsSuperscriptAttributeId","features":[210]},{"name":"UIA_IsSynchronizedInputPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsTableItemPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsTablePatternAvailablePropertyId","features":[210]},{"name":"UIA_IsTextChildPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsTextEditPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsTextPattern2AvailablePropertyId","features":[210]},{"name":"UIA_IsTextPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsTogglePatternAvailablePropertyId","features":[210]},{"name":"UIA_IsTransformPattern2AvailablePropertyId","features":[210]},{"name":"UIA_IsTransformPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsValuePatternAvailablePropertyId","features":[210]},{"name":"UIA_IsVirtualizedItemPatternAvailablePropertyId","features":[210]},{"name":"UIA_IsWindowPatternAvailablePropertyId","features":[210]},{"name":"UIA_ItemContainerPatternId","features":[210]},{"name":"UIA_ItemStatusPropertyId","features":[210]},{"name":"UIA_ItemTypePropertyId","features":[210]},{"name":"UIA_LANDMARKTYPE_ID","features":[210]},{"name":"UIA_LabeledByPropertyId","features":[210]},{"name":"UIA_LandmarkTypePropertyId","features":[210]},{"name":"UIA_LayoutInvalidatedEventId","features":[210]},{"name":"UIA_LegacyIAccessibleChildIdPropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleDefaultActionPropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleDescriptionPropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleHelpPropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleKeyboardShortcutPropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleNamePropertyId","features":[210]},{"name":"UIA_LegacyIAccessiblePatternId","features":[210]},{"name":"UIA_LegacyIAccessibleRolePropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleSelectionPropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleStatePropertyId","features":[210]},{"name":"UIA_LegacyIAccessibleValuePropertyId","features":[210]},{"name":"UIA_LevelPropertyId","features":[210]},{"name":"UIA_LineSpacingAttributeId","features":[210]},{"name":"UIA_LinkAttributeId","features":[210]},{"name":"UIA_ListControlTypeId","features":[210]},{"name":"UIA_ListItemControlTypeId","features":[210]},{"name":"UIA_LiveRegionChangedEventId","features":[210]},{"name":"UIA_LiveSettingPropertyId","features":[210]},{"name":"UIA_LocalizedControlTypePropertyId","features":[210]},{"name":"UIA_LocalizedLandmarkTypePropertyId","features":[210]},{"name":"UIA_METADATA_ID","features":[210]},{"name":"UIA_MainLandmarkTypeId","features":[210]},{"name":"UIA_MarginBottomAttributeId","features":[210]},{"name":"UIA_MarginLeadingAttributeId","features":[210]},{"name":"UIA_MarginTopAttributeId","features":[210]},{"name":"UIA_MarginTrailingAttributeId","features":[210]},{"name":"UIA_MenuBarControlTypeId","features":[210]},{"name":"UIA_MenuClosedEventId","features":[210]},{"name":"UIA_MenuControlTypeId","features":[210]},{"name":"UIA_MenuItemControlTypeId","features":[210]},{"name":"UIA_MenuModeEndEventId","features":[210]},{"name":"UIA_MenuModeStartEventId","features":[210]},{"name":"UIA_MenuOpenedEventId","features":[210]},{"name":"UIA_MultipleViewCurrentViewPropertyId","features":[210]},{"name":"UIA_MultipleViewPatternId","features":[210]},{"name":"UIA_MultipleViewSupportedViewsPropertyId","features":[210]},{"name":"UIA_NamePropertyId","features":[210]},{"name":"UIA_NativeWindowHandlePropertyId","features":[210]},{"name":"UIA_NavigationLandmarkTypeId","features":[210]},{"name":"UIA_NotificationEventId","features":[210]},{"name":"UIA_ObjectModelPatternId","features":[210]},{"name":"UIA_OptimizeForVisualContentPropertyId","features":[210]},{"name":"UIA_OrientationPropertyId","features":[210]},{"name":"UIA_OutlineColorPropertyId","features":[210]},{"name":"UIA_OutlineStylesAttributeId","features":[210]},{"name":"UIA_OutlineThicknessPropertyId","features":[210]},{"name":"UIA_OverlineColorAttributeId","features":[210]},{"name":"UIA_OverlineStyleAttributeId","features":[210]},{"name":"UIA_PATTERN_ID","features":[210]},{"name":"UIA_PFIA_DEFAULT","features":[210]},{"name":"UIA_PFIA_UNWRAP_BRIDGE","features":[210]},{"name":"UIA_PROPERTY_ID","features":[210]},{"name":"UIA_PaneControlTypeId","features":[210]},{"name":"UIA_PositionInSetPropertyId","features":[210]},{"name":"UIA_ProcessIdPropertyId","features":[210]},{"name":"UIA_ProgressBarControlTypeId","features":[210]},{"name":"UIA_ProviderDescriptionPropertyId","features":[210]},{"name":"UIA_RadioButtonControlTypeId","features":[210]},{"name":"UIA_RangeValueIsReadOnlyPropertyId","features":[210]},{"name":"UIA_RangeValueLargeChangePropertyId","features":[210]},{"name":"UIA_RangeValueMaximumPropertyId","features":[210]},{"name":"UIA_RangeValueMinimumPropertyId","features":[210]},{"name":"UIA_RangeValuePatternId","features":[210]},{"name":"UIA_RangeValueSmallChangePropertyId","features":[210]},{"name":"UIA_RangeValueValuePropertyId","features":[210]},{"name":"UIA_RotationPropertyId","features":[210]},{"name":"UIA_RuntimeIdPropertyId","features":[210]},{"name":"UIA_STYLE_ID","features":[210]},{"name":"UIA_SayAsInterpretAsAttributeId","features":[210]},{"name":"UIA_SayAsInterpretAsMetadataId","features":[210]},{"name":"UIA_ScrollBarControlTypeId","features":[210]},{"name":"UIA_ScrollHorizontalScrollPercentPropertyId","features":[210]},{"name":"UIA_ScrollHorizontalViewSizePropertyId","features":[210]},{"name":"UIA_ScrollHorizontallyScrollablePropertyId","features":[210]},{"name":"UIA_ScrollItemPatternId","features":[210]},{"name":"UIA_ScrollPatternId","features":[210]},{"name":"UIA_ScrollPatternNoScroll","features":[210]},{"name":"UIA_ScrollVerticalScrollPercentPropertyId","features":[210]},{"name":"UIA_ScrollVerticalViewSizePropertyId","features":[210]},{"name":"UIA_ScrollVerticallyScrollablePropertyId","features":[210]},{"name":"UIA_SearchLandmarkTypeId","features":[210]},{"name":"UIA_Selection2CurrentSelectedItemPropertyId","features":[210]},{"name":"UIA_Selection2FirstSelectedItemPropertyId","features":[210]},{"name":"UIA_Selection2ItemCountPropertyId","features":[210]},{"name":"UIA_Selection2LastSelectedItemPropertyId","features":[210]},{"name":"UIA_SelectionActiveEndAttributeId","features":[210]},{"name":"UIA_SelectionCanSelectMultiplePropertyId","features":[210]},{"name":"UIA_SelectionIsSelectionRequiredPropertyId","features":[210]},{"name":"UIA_SelectionItemIsSelectedPropertyId","features":[210]},{"name":"UIA_SelectionItemPatternId","features":[210]},{"name":"UIA_SelectionItemSelectionContainerPropertyId","features":[210]},{"name":"UIA_SelectionItem_ElementAddedToSelectionEventId","features":[210]},{"name":"UIA_SelectionItem_ElementRemovedFromSelectionEventId","features":[210]},{"name":"UIA_SelectionItem_ElementSelectedEventId","features":[210]},{"name":"UIA_SelectionPattern2Id","features":[210]},{"name":"UIA_SelectionPatternId","features":[210]},{"name":"UIA_SelectionSelectionPropertyId","features":[210]},{"name":"UIA_Selection_InvalidatedEventId","features":[210]},{"name":"UIA_SemanticZoomControlTypeId","features":[210]},{"name":"UIA_SeparatorControlTypeId","features":[210]},{"name":"UIA_SizeOfSetPropertyId","features":[210]},{"name":"UIA_SizePropertyId","features":[210]},{"name":"UIA_SliderControlTypeId","features":[210]},{"name":"UIA_SpinnerControlTypeId","features":[210]},{"name":"UIA_SplitButtonControlTypeId","features":[210]},{"name":"UIA_SpreadsheetItemAnnotationObjectsPropertyId","features":[210]},{"name":"UIA_SpreadsheetItemAnnotationTypesPropertyId","features":[210]},{"name":"UIA_SpreadsheetItemFormulaPropertyId","features":[210]},{"name":"UIA_SpreadsheetItemPatternId","features":[210]},{"name":"UIA_SpreadsheetPatternId","features":[210]},{"name":"UIA_StatusBarControlTypeId","features":[210]},{"name":"UIA_StrikethroughColorAttributeId","features":[210]},{"name":"UIA_StrikethroughStyleAttributeId","features":[210]},{"name":"UIA_StructureChangedEventId","features":[210]},{"name":"UIA_StyleIdAttributeId","features":[210]},{"name":"UIA_StyleNameAttributeId","features":[210]},{"name":"UIA_StylesExtendedPropertiesPropertyId","features":[210]},{"name":"UIA_StylesFillColorPropertyId","features":[210]},{"name":"UIA_StylesFillPatternColorPropertyId","features":[210]},{"name":"UIA_StylesFillPatternStylePropertyId","features":[210]},{"name":"UIA_StylesPatternId","features":[210]},{"name":"UIA_StylesShapePropertyId","features":[210]},{"name":"UIA_StylesStyleIdPropertyId","features":[210]},{"name":"UIA_StylesStyleNamePropertyId","features":[210]},{"name":"UIA_SummaryChangeId","features":[210]},{"name":"UIA_SynchronizedInputPatternId","features":[210]},{"name":"UIA_SystemAlertEventId","features":[210]},{"name":"UIA_TEXTATTRIBUTE_ID","features":[210]},{"name":"UIA_TabControlTypeId","features":[210]},{"name":"UIA_TabItemControlTypeId","features":[210]},{"name":"UIA_TableColumnHeadersPropertyId","features":[210]},{"name":"UIA_TableControlTypeId","features":[210]},{"name":"UIA_TableItemColumnHeaderItemsPropertyId","features":[210]},{"name":"UIA_TableItemPatternId","features":[210]},{"name":"UIA_TableItemRowHeaderItemsPropertyId","features":[210]},{"name":"UIA_TablePatternId","features":[210]},{"name":"UIA_TableRowHeadersPropertyId","features":[210]},{"name":"UIA_TableRowOrColumnMajorPropertyId","features":[210]},{"name":"UIA_TabsAttributeId","features":[210]},{"name":"UIA_TextChildPatternId","features":[210]},{"name":"UIA_TextControlTypeId","features":[210]},{"name":"UIA_TextEditPatternId","features":[210]},{"name":"UIA_TextEdit_ConversionTargetChangedEventId","features":[210]},{"name":"UIA_TextEdit_TextChangedEventId","features":[210]},{"name":"UIA_TextFlowDirectionsAttributeId","features":[210]},{"name":"UIA_TextPattern2Id","features":[210]},{"name":"UIA_TextPatternId","features":[210]},{"name":"UIA_Text_TextChangedEventId","features":[210]},{"name":"UIA_Text_TextSelectionChangedEventId","features":[210]},{"name":"UIA_ThumbControlTypeId","features":[210]},{"name":"UIA_TitleBarControlTypeId","features":[210]},{"name":"UIA_TogglePatternId","features":[210]},{"name":"UIA_ToggleToggleStatePropertyId","features":[210]},{"name":"UIA_ToolBarControlTypeId","features":[210]},{"name":"UIA_ToolTipClosedEventId","features":[210]},{"name":"UIA_ToolTipControlTypeId","features":[210]},{"name":"UIA_ToolTipOpenedEventId","features":[210]},{"name":"UIA_Transform2CanZoomPropertyId","features":[210]},{"name":"UIA_Transform2ZoomLevelPropertyId","features":[210]},{"name":"UIA_Transform2ZoomMaximumPropertyId","features":[210]},{"name":"UIA_Transform2ZoomMinimumPropertyId","features":[210]},{"name":"UIA_TransformCanMovePropertyId","features":[210]},{"name":"UIA_TransformCanResizePropertyId","features":[210]},{"name":"UIA_TransformCanRotatePropertyId","features":[210]},{"name":"UIA_TransformPattern2Id","features":[210]},{"name":"UIA_TransformPatternId","features":[210]},{"name":"UIA_TreeControlTypeId","features":[210]},{"name":"UIA_TreeItemControlTypeId","features":[210]},{"name":"UIA_UnderlineColorAttributeId","features":[210]},{"name":"UIA_UnderlineStyleAttributeId","features":[210]},{"name":"UIA_ValueIsReadOnlyPropertyId","features":[210]},{"name":"UIA_ValuePatternId","features":[210]},{"name":"UIA_ValueValuePropertyId","features":[210]},{"name":"UIA_VirtualizedItemPatternId","features":[210]},{"name":"UIA_VisualEffectsPropertyId","features":[210]},{"name":"UIA_WindowCanMaximizePropertyId","features":[210]},{"name":"UIA_WindowCanMinimizePropertyId","features":[210]},{"name":"UIA_WindowControlTypeId","features":[210]},{"name":"UIA_WindowIsModalPropertyId","features":[210]},{"name":"UIA_WindowIsTopmostPropertyId","features":[210]},{"name":"UIA_WindowPatternId","features":[210]},{"name":"UIA_WindowWindowInteractionStatePropertyId","features":[210]},{"name":"UIA_WindowWindowVisualStatePropertyId","features":[210]},{"name":"UIA_Window_WindowClosedEventId","features":[210]},{"name":"UIA_Window_WindowOpenedEventId","features":[210]},{"name":"UIAutomationEventInfo","features":[210]},{"name":"UIAutomationMethodInfo","features":[3,210]},{"name":"UIAutomationParameter","features":[210]},{"name":"UIAutomationPatternInfo","features":[3,210]},{"name":"UIAutomationPropertyInfo","features":[210]},{"name":"UIAutomationType","features":[210]},{"name":"UIAutomationType_Array","features":[210]},{"name":"UIAutomationType_Bool","features":[210]},{"name":"UIAutomationType_BoolArray","features":[210]},{"name":"UIAutomationType_Double","features":[210]},{"name":"UIAutomationType_DoubleArray","features":[210]},{"name":"UIAutomationType_Element","features":[210]},{"name":"UIAutomationType_ElementArray","features":[210]},{"name":"UIAutomationType_Int","features":[210]},{"name":"UIAutomationType_IntArray","features":[210]},{"name":"UIAutomationType_Out","features":[210]},{"name":"UIAutomationType_OutBool","features":[210]},{"name":"UIAutomationType_OutBoolArray","features":[210]},{"name":"UIAutomationType_OutDouble","features":[210]},{"name":"UIAutomationType_OutDoubleArray","features":[210]},{"name":"UIAutomationType_OutElement","features":[210]},{"name":"UIAutomationType_OutElementArray","features":[210]},{"name":"UIAutomationType_OutInt","features":[210]},{"name":"UIAutomationType_OutIntArray","features":[210]},{"name":"UIAutomationType_OutPoint","features":[210]},{"name":"UIAutomationType_OutPointArray","features":[210]},{"name":"UIAutomationType_OutRect","features":[210]},{"name":"UIAutomationType_OutRectArray","features":[210]},{"name":"UIAutomationType_OutString","features":[210]},{"name":"UIAutomationType_OutStringArray","features":[210]},{"name":"UIAutomationType_Point","features":[210]},{"name":"UIAutomationType_PointArray","features":[210]},{"name":"UIAutomationType_Rect","features":[210]},{"name":"UIAutomationType_RectArray","features":[210]},{"name":"UIAutomationType_String","features":[210]},{"name":"UIAutomationType_StringArray","features":[210]},{"name":"UiaAddEvent","features":[43,210]},{"name":"UiaAndOrCondition","features":[210]},{"name":"UiaAppendRuntimeId","features":[210]},{"name":"UiaAsyncContentLoadedEventArgs","features":[210]},{"name":"UiaCacheRequest","features":[210]},{"name":"UiaChangeInfo","features":[3,43,44,210]},{"name":"UiaChangesEventArgs","features":[3,43,44,210]},{"name":"UiaClientsAreListening","features":[3,210]},{"name":"UiaCondition","features":[210]},{"name":"UiaDisconnectAllProviders","features":[210]},{"name":"UiaDisconnectProvider","features":[210]},{"name":"UiaEventAddWindow","features":[3,210]},{"name":"UiaEventArgs","features":[210]},{"name":"UiaEventCallback","features":[43,210]},{"name":"UiaEventRemoveWindow","features":[3,210]},{"name":"UiaFind","features":[3,43,210]},{"name":"UiaFindParams","features":[3,210]},{"name":"UiaGetErrorDescription","features":[3,210]},{"name":"UiaGetPatternProvider","features":[210]},{"name":"UiaGetPropertyValue","features":[3,43,44,210]},{"name":"UiaGetReservedMixedAttributeValue","features":[210]},{"name":"UiaGetReservedNotSupportedValue","features":[210]},{"name":"UiaGetRootNode","features":[210]},{"name":"UiaGetRuntimeId","features":[43,210]},{"name":"UiaGetUpdatedCache","features":[43,210]},{"name":"UiaHPatternObjectFromVariant","features":[3,43,44,210]},{"name":"UiaHTextRangeFromVariant","features":[3,43,44,210]},{"name":"UiaHUiaNodeFromVariant","features":[3,43,44,210]},{"name":"UiaHasServerSideProvider","features":[3,210]},{"name":"UiaHostProviderFromHwnd","features":[3,210]},{"name":"UiaIAccessibleFromProvider","features":[3,43,44,210]},{"name":"UiaLookupId","features":[210]},{"name":"UiaNavigate","features":[43,210]},{"name":"UiaNodeFromFocus","features":[43,210]},{"name":"UiaNodeFromHandle","features":[3,210]},{"name":"UiaNodeFromPoint","features":[43,210]},{"name":"UiaNodeFromProvider","features":[210]},{"name":"UiaNodeRelease","features":[3,210]},{"name":"UiaNotCondition","features":[210]},{"name":"UiaPatternRelease","features":[3,210]},{"name":"UiaPoint","features":[210]},{"name":"UiaPropertyChangedEventArgs","features":[3,43,44,210]},{"name":"UiaPropertyCondition","features":[3,43,44,210]},{"name":"UiaProviderCallback","features":[3,43,210]},{"name":"UiaProviderForNonClient","features":[3,210]},{"name":"UiaProviderFromIAccessible","features":[210]},{"name":"UiaRaiseActiveTextPositionChangedEvent","features":[210]},{"name":"UiaRaiseAsyncContentLoadedEvent","features":[210]},{"name":"UiaRaiseAutomationEvent","features":[210]},{"name":"UiaRaiseAutomationPropertyChangedEvent","features":[3,43,44,210]},{"name":"UiaRaiseChangesEvent","features":[3,43,44,210]},{"name":"UiaRaiseNotificationEvent","features":[210]},{"name":"UiaRaiseStructureChangedEvent","features":[210]},{"name":"UiaRaiseTextEditTextChangedEvent","features":[43,210]},{"name":"UiaRect","features":[210]},{"name":"UiaRegisterProviderCallback","features":[3,43,210]},{"name":"UiaRemoveEvent","features":[210]},{"name":"UiaReturnRawElementProvider","features":[3,210]},{"name":"UiaRootObjectId","features":[210]},{"name":"UiaSetFocus","features":[210]},{"name":"UiaStructureChangedEventArgs","features":[210]},{"name":"UiaTextEditTextChangedEventArgs","features":[43,210]},{"name":"UiaTextRangeRelease","features":[3,210]},{"name":"UiaWindowClosedEventArgs","features":[210]},{"name":"UnhookWinEvent","features":[3,210]},{"name":"UnregisterPointerInputTarget","features":[3,210,52]},{"name":"UnregisterPointerInputTargetEx","features":[3,210,52]},{"name":"ValuePattern_SetValue","features":[210]},{"name":"Value_IsReadOnly_Property_GUID","features":[210]},{"name":"Value_Pattern_GUID","features":[210]},{"name":"Value_Value_Property_GUID","features":[210]},{"name":"VirtualizedItemPattern_Realize","features":[210]},{"name":"VirtualizedItem_Pattern_GUID","features":[210]},{"name":"VisualEffects","features":[210]},{"name":"VisualEffects_Bevel","features":[210]},{"name":"VisualEffects_Glow","features":[210]},{"name":"VisualEffects_None","features":[210]},{"name":"VisualEffects_Property_GUID","features":[210]},{"name":"VisualEffects_Reflection","features":[210]},{"name":"VisualEffects_Shadow","features":[210]},{"name":"VisualEffects_SoftEdges","features":[210]},{"name":"WINEVENTPROC","features":[3,210]},{"name":"WindowFromAccessibleObject","features":[3,210]},{"name":"WindowInteractionState","features":[210]},{"name":"WindowInteractionState_BlockedByModalWindow","features":[210]},{"name":"WindowInteractionState_Closing","features":[210]},{"name":"WindowInteractionState_NotResponding","features":[210]},{"name":"WindowInteractionState_ReadyForUserInteraction","features":[210]},{"name":"WindowInteractionState_Running","features":[210]},{"name":"WindowPattern_Close","features":[210]},{"name":"WindowPattern_SetWindowVisualState","features":[210]},{"name":"WindowPattern_WaitForInputIdle","features":[3,210]},{"name":"WindowVisualState","features":[210]},{"name":"WindowVisualState_Maximized","features":[210]},{"name":"WindowVisualState_Minimized","features":[210]},{"name":"WindowVisualState_Normal","features":[210]},{"name":"Window_CanMaximize_Property_GUID","features":[210]},{"name":"Window_CanMinimize_Property_GUID","features":[210]},{"name":"Window_Control_GUID","features":[210]},{"name":"Window_IsModal_Property_GUID","features":[210]},{"name":"Window_IsTopmost_Property_GUID","features":[210]},{"name":"Window_Pattern_GUID","features":[210]},{"name":"Window_WindowClosed_Event_GUID","features":[210]},{"name":"Window_WindowInteractionState_Property_GUID","features":[210]},{"name":"Window_WindowOpened_Event_GUID","features":[210]},{"name":"Window_WindowVisualState_Property_GUID","features":[210]},{"name":"ZoomUnit","features":[210]},{"name":"ZoomUnit_LargeDecrement","features":[210]},{"name":"ZoomUnit_LargeIncrement","features":[210]},{"name":"ZoomUnit_NoAmount","features":[210]},{"name":"ZoomUnit_SmallDecrement","features":[210]},{"name":"ZoomUnit_SmallIncrement","features":[210]}],"651":[{"name":"ATTRIB_MATTE","features":[57]},{"name":"ATTRIB_TRANSPARENCY","features":[57]},{"name":"AssociateColorProfileWithDeviceA","features":[3,57]},{"name":"AssociateColorProfileWithDeviceW","features":[3,57]},{"name":"BEST_MODE","features":[57]},{"name":"BMFORMAT","features":[57]},{"name":"BM_10b_G3CH","features":[57]},{"name":"BM_10b_Lab","features":[57]},{"name":"BM_10b_RGB","features":[57]},{"name":"BM_10b_XYZ","features":[57]},{"name":"BM_10b_Yxy","features":[57]},{"name":"BM_16b_G3CH","features":[57]},{"name":"BM_16b_GRAY","features":[57]},{"name":"BM_16b_Lab","features":[57]},{"name":"BM_16b_RGB","features":[57]},{"name":"BM_16b_XYZ","features":[57]},{"name":"BM_16b_Yxy","features":[57]},{"name":"BM_32b_scARGB","features":[57]},{"name":"BM_32b_scRGB","features":[57]},{"name":"BM_565RGB","features":[57]},{"name":"BM_5CHANNEL","features":[57]},{"name":"BM_6CHANNEL","features":[57]},{"name":"BM_7CHANNEL","features":[57]},{"name":"BM_8CHANNEL","features":[57]},{"name":"BM_BGRTRIPLETS","features":[57]},{"name":"BM_CMYKQUADS","features":[57]},{"name":"BM_G3CHTRIPLETS","features":[57]},{"name":"BM_GRAY","features":[57]},{"name":"BM_KYMCQUADS","features":[57]},{"name":"BM_LabTRIPLETS","features":[57]},{"name":"BM_NAMED_INDEX","features":[57]},{"name":"BM_R10G10B10A2","features":[57]},{"name":"BM_R10G10B10A2_XR","features":[57]},{"name":"BM_R16G16B16A16_FLOAT","features":[57]},{"name":"BM_RGBTRIPLETS","features":[57]},{"name":"BM_S2DOT13FIXED_scARGB","features":[57]},{"name":"BM_S2DOT13FIXED_scRGB","features":[57]},{"name":"BM_XYZTRIPLETS","features":[57]},{"name":"BM_YxyTRIPLETS","features":[57]},{"name":"BM_x555G3CH","features":[57]},{"name":"BM_x555Lab","features":[57]},{"name":"BM_x555RGB","features":[57]},{"name":"BM_x555XYZ","features":[57]},{"name":"BM_x555Yxy","features":[57]},{"name":"BM_xBGRQUADS","features":[57]},{"name":"BM_xG3CHQUADS","features":[57]},{"name":"BM_xRGBQUADS","features":[57]},{"name":"BlackInformation","features":[3,57]},{"name":"CATID_WcsPlugin","features":[57]},{"name":"CMCheckColors","features":[3,57]},{"name":"CMCheckColorsInGamut","features":[3,14,57]},{"name":"CMCheckRGBs","features":[3,57]},{"name":"CMConvertColorNameToIndex","features":[3,57]},{"name":"CMConvertIndexToColorName","features":[3,57]},{"name":"CMCreateDeviceLinkProfile","features":[3,57]},{"name":"CMCreateMultiProfileTransform","features":[57]},{"name":"CMCreateProfile","features":[3,14,57]},{"name":"CMCreateProfileW","features":[3,14,57]},{"name":"CMCreateTransform","features":[14,57]},{"name":"CMCreateTransformExt","features":[14,57]},{"name":"CMCreateTransformExtW","features":[14,57]},{"name":"CMCreateTransformW","features":[14,57]},{"name":"CMDeleteTransform","features":[3,57]},{"name":"CMGetInfo","features":[57]},{"name":"CMGetNamedProfileInfo","features":[3,57]},{"name":"CMIsProfileValid","features":[3,57]},{"name":"CMM_DESCRIPTION","features":[57]},{"name":"CMM_DLL_VERSION","features":[57]},{"name":"CMM_DRIVER_VERSION","features":[57]},{"name":"CMM_FROM_PROFILE","features":[57]},{"name":"CMM_IDENT","features":[57]},{"name":"CMM_LOGOICON","features":[57]},{"name":"CMM_VERSION","features":[57]},{"name":"CMM_WIN_VERSION","features":[57]},{"name":"CMS_BACKWARD","features":[57]},{"name":"CMS_DISABLEICM","features":[57]},{"name":"CMS_DISABLEINTENT","features":[57]},{"name":"CMS_DISABLERENDERINTENT","features":[57]},{"name":"CMS_ENABLEPROOFING","features":[57]},{"name":"CMS_FORWARD","features":[57]},{"name":"CMS_MONITOROVERFLOW","features":[57]},{"name":"CMS_PRINTEROVERFLOW","features":[57]},{"name":"CMS_SETMONITORPROFILE","features":[57]},{"name":"CMS_SETPRINTERPROFILE","features":[57]},{"name":"CMS_SETPROOFINTENT","features":[57]},{"name":"CMS_SETRENDERINTENT","features":[57]},{"name":"CMS_SETTARGETPROFILE","features":[57]},{"name":"CMS_TARGETOVERFLOW","features":[57]},{"name":"CMS_USEAPPLYCALLBACK","features":[57]},{"name":"CMS_USEDESCRIPTION","features":[57]},{"name":"CMS_USEHOOK","features":[57]},{"name":"CMTranslateColors","features":[3,57]},{"name":"CMTranslateRGB","features":[3,57]},{"name":"CMTranslateRGBs","features":[3,57]},{"name":"CMTranslateRGBsExt","features":[3,57]},{"name":"CMYKCOLOR","features":[57]},{"name":"COLOR","features":[57]},{"name":"COLORDATATYPE","features":[57]},{"name":"COLORMATCHSETUPA","features":[3,57,52]},{"name":"COLORMATCHSETUPW","features":[3,57,52]},{"name":"COLORPROFILESUBTYPE","features":[57]},{"name":"COLORPROFILETYPE","features":[57]},{"name":"COLORTYPE","features":[57]},{"name":"COLOR_10b_R10G10B10A2","features":[57]},{"name":"COLOR_10b_R10G10B10A2_XR","features":[57]},{"name":"COLOR_3_CHANNEL","features":[57]},{"name":"COLOR_5_CHANNEL","features":[57]},{"name":"COLOR_6_CHANNEL","features":[57]},{"name":"COLOR_7_CHANNEL","features":[57]},{"name":"COLOR_8_CHANNEL","features":[57]},{"name":"COLOR_BYTE","features":[57]},{"name":"COLOR_CMYK","features":[57]},{"name":"COLOR_FLOAT","features":[57]},{"name":"COLOR_FLOAT16","features":[57]},{"name":"COLOR_GRAY","features":[57]},{"name":"COLOR_Lab","features":[57]},{"name":"COLOR_MATCH_TO_TARGET_ACTION","features":[57]},{"name":"COLOR_MATCH_VERSION","features":[57]},{"name":"COLOR_NAMED","features":[57]},{"name":"COLOR_RGB","features":[57]},{"name":"COLOR_S2DOT13FIXED","features":[57]},{"name":"COLOR_WORD","features":[57]},{"name":"COLOR_XYZ","features":[57]},{"name":"COLOR_Yxy","features":[57]},{"name":"CPST_ABSOLUTE_COLORIMETRIC","features":[57]},{"name":"CPST_CUSTOM_WORKING_SPACE","features":[57]},{"name":"CPST_EXTENDED_DISPLAY_COLOR_MODE","features":[57]},{"name":"CPST_NONE","features":[57]},{"name":"CPST_PERCEPTUAL","features":[57]},{"name":"CPST_RELATIVE_COLORIMETRIC","features":[57]},{"name":"CPST_RGB_WORKING_SPACE","features":[57]},{"name":"CPST_SATURATION","features":[57]},{"name":"CPST_STANDARD_DISPLAY_COLOR_MODE","features":[57]},{"name":"CPT_CAMP","features":[57]},{"name":"CPT_DMP","features":[57]},{"name":"CPT_GMMP","features":[57]},{"name":"CPT_ICC","features":[57]},{"name":"CSA_A","features":[57]},{"name":"CSA_ABC","features":[57]},{"name":"CSA_CMYK","features":[57]},{"name":"CSA_DEF","features":[57]},{"name":"CSA_DEFG","features":[57]},{"name":"CSA_GRAY","features":[57]},{"name":"CSA_Lab","features":[57]},{"name":"CSA_RGB","features":[57]},{"name":"CS_DELETE_TRANSFORM","features":[57]},{"name":"CS_DISABLE","features":[57]},{"name":"CS_ENABLE","features":[57]},{"name":"CheckBitmapBits","features":[3,57]},{"name":"CheckColors","features":[3,57]},{"name":"CheckColorsInGamut","features":[3,14,57]},{"name":"CloseColorProfile","features":[3,57]},{"name":"ColorCorrectPalette","features":[3,14,57]},{"name":"ColorMatchToTarget","features":[3,14,57]},{"name":"ColorProfileAddDisplayAssociation","features":[3,57]},{"name":"ColorProfileGetDisplayDefault","features":[3,57]},{"name":"ColorProfileGetDisplayList","features":[3,57]},{"name":"ColorProfileGetDisplayUserScope","features":[3,57]},{"name":"ColorProfileRemoveDisplayAssociation","features":[3,57]},{"name":"ColorProfileSetDisplayDefaultAssociation","features":[3,57]},{"name":"ConvertColorNameToIndex","features":[3,57]},{"name":"ConvertIndexToColorName","features":[3,57]},{"name":"CreateColorSpaceA","features":[14,57]},{"name":"CreateColorSpaceW","features":[14,57]},{"name":"CreateColorTransformA","features":[14,57]},{"name":"CreateColorTransformW","features":[14,57]},{"name":"CreateDeviceLinkProfile","features":[3,57]},{"name":"CreateMultiProfileTransform","features":[57]},{"name":"CreateProfileFromLogColorSpaceA","features":[3,14,57]},{"name":"CreateProfileFromLogColorSpaceW","features":[3,14,57]},{"name":"DONT_USE_EMBEDDED_WCS_PROFILES","features":[57]},{"name":"DeleteColorSpace","features":[3,57]},{"name":"DeleteColorTransform","features":[3,57]},{"name":"DisassociateColorProfileFromDeviceA","features":[3,57]},{"name":"DisassociateColorProfileFromDeviceW","features":[3,57]},{"name":"EMRCREATECOLORSPACE","features":[14,57]},{"name":"EMRCREATECOLORSPACEW","features":[14,57]},{"name":"ENABLE_GAMUT_CHECKING","features":[57]},{"name":"ENUMTYPEA","features":[57]},{"name":"ENUMTYPEW","features":[57]},{"name":"ENUM_TYPE_VERSION","features":[57]},{"name":"ET_ATTRIBUTES","features":[57]},{"name":"ET_CLASS","features":[57]},{"name":"ET_CMMTYPE","features":[57]},{"name":"ET_CONNECTIONSPACE","features":[57]},{"name":"ET_CREATOR","features":[57]},{"name":"ET_DATACOLORSPACE","features":[57]},{"name":"ET_DEVICECLASS","features":[57]},{"name":"ET_DEVICENAME","features":[57]},{"name":"ET_DITHERMODE","features":[57]},{"name":"ET_EXTENDEDDISPLAYCOLOR","features":[57]},{"name":"ET_MANUFACTURER","features":[57]},{"name":"ET_MEDIATYPE","features":[57]},{"name":"ET_MODEL","features":[57]},{"name":"ET_PLATFORM","features":[57]},{"name":"ET_PROFILEFLAGS","features":[57]},{"name":"ET_RENDERINGINTENT","features":[57]},{"name":"ET_RESOLUTION","features":[57]},{"name":"ET_SIGNATURE","features":[57]},{"name":"ET_STANDARDDISPLAYCOLOR","features":[57]},{"name":"EnumColorProfilesA","features":[3,57]},{"name":"EnumColorProfilesW","features":[3,57]},{"name":"EnumICMProfilesA","features":[3,14,57]},{"name":"EnumICMProfilesW","features":[3,14,57]},{"name":"FAST_TRANSLATE","features":[57]},{"name":"FLAG_DEPENDENTONDATA","features":[57]},{"name":"FLAG_EMBEDDEDPROFILE","features":[57]},{"name":"FLAG_ENABLE_CHROMATIC_ADAPTATION","features":[57]},{"name":"GENERIC3CHANNEL","features":[57]},{"name":"GRAYCOLOR","features":[57]},{"name":"GamutBoundaryDescription","features":[57]},{"name":"GamutShell","features":[57]},{"name":"GamutShellTriangle","features":[57]},{"name":"GetCMMInfo","features":[57]},{"name":"GetColorDirectoryA","features":[3,57]},{"name":"GetColorDirectoryW","features":[3,57]},{"name":"GetColorProfileElement","features":[3,57]},{"name":"GetColorProfileElementTag","features":[3,57]},{"name":"GetColorProfileFromHandle","features":[3,57]},{"name":"GetColorProfileHeader","features":[3,14,57]},{"name":"GetColorSpace","features":[14,57]},{"name":"GetCountColorProfileElements","features":[3,57]},{"name":"GetDeviceGammaRamp","features":[3,14,57]},{"name":"GetICMProfileA","features":[3,14,57]},{"name":"GetICMProfileW","features":[3,14,57]},{"name":"GetLogColorSpaceA","features":[3,14,57]},{"name":"GetLogColorSpaceW","features":[3,14,57]},{"name":"GetNamedProfileInfo","features":[3,57]},{"name":"GetPS2ColorRenderingDictionary","features":[3,57]},{"name":"GetPS2ColorRenderingIntent","features":[3,57]},{"name":"GetPS2ColorSpaceArray","features":[3,57]},{"name":"GetStandardColorSpaceProfileA","features":[3,57]},{"name":"GetStandardColorSpaceProfileW","features":[3,57]},{"name":"HCOLORSPACE","features":[57]},{"name":"HiFiCOLOR","features":[57]},{"name":"ICMENUMPROCA","features":[3,57]},{"name":"ICMENUMPROCW","features":[3,57]},{"name":"ICM_ADDPROFILE","features":[57]},{"name":"ICM_COMMAND","features":[57]},{"name":"ICM_DELETEPROFILE","features":[57]},{"name":"ICM_DONE_OUTSIDEDC","features":[57]},{"name":"ICM_MODE","features":[57]},{"name":"ICM_OFF","features":[57]},{"name":"ICM_ON","features":[57]},{"name":"ICM_QUERY","features":[57]},{"name":"ICM_QUERYMATCH","features":[57]},{"name":"ICM_QUERYPROFILE","features":[57]},{"name":"ICM_REGISTERICMATCHER","features":[57]},{"name":"ICM_SETDEFAULTPROFILE","features":[57]},{"name":"ICM_UNREGISTERICMATCHER","features":[57]},{"name":"IDeviceModelPlugIn","features":[57]},{"name":"IGamutMapModelPlugIn","features":[57]},{"name":"INDEX_DONT_CARE","features":[57]},{"name":"INTENT_ABSOLUTE_COLORIMETRIC","features":[57]},{"name":"INTENT_PERCEPTUAL","features":[57]},{"name":"INTENT_RELATIVE_COLORIMETRIC","features":[57]},{"name":"INTENT_SATURATION","features":[57]},{"name":"InstallColorProfileA","features":[3,57]},{"name":"InstallColorProfileW","features":[3,57]},{"name":"IsColorProfileTagPresent","features":[3,57]},{"name":"IsColorProfileValid","features":[3,57]},{"name":"JChColorF","features":[57]},{"name":"JabColorF","features":[57]},{"name":"LCSCSTYPE","features":[57]},{"name":"LCS_CALIBRATED_RGB","features":[57]},{"name":"LCS_WINDOWS_COLOR_SPACE","features":[57]},{"name":"LCS_sRGB","features":[57]},{"name":"LOGCOLORSPACEA","features":[14,57]},{"name":"LOGCOLORSPACEW","features":[14,57]},{"name":"LPBMCALLBACKFN","features":[3,57]},{"name":"LabCOLOR","features":[57]},{"name":"MAX_COLOR_CHANNELS","features":[57]},{"name":"MicrosoftHardwareColorV2","features":[57]},{"name":"NAMEDCOLOR","features":[57]},{"name":"NAMED_PROFILE_INFO","features":[57]},{"name":"NORMAL_MODE","features":[57]},{"name":"OpenColorProfileA","features":[57]},{"name":"OpenColorProfileW","features":[57]},{"name":"PCMSCALLBACKA","features":[3,57,52]},{"name":"PCMSCALLBACKW","features":[3,57,52]},{"name":"PRESERVEBLACK","features":[57]},{"name":"PROFILE","features":[57]},{"name":"PROFILEHEADER","features":[14,57]},{"name":"PROFILE_FILENAME","features":[57]},{"name":"PROFILE_MEMBUFFER","features":[57]},{"name":"PROFILE_READ","features":[57]},{"name":"PROFILE_READWRITE","features":[57]},{"name":"PROOF_MODE","features":[57]},{"name":"PrimaryJabColors","features":[57]},{"name":"PrimaryXYZColors","features":[57]},{"name":"RESERVED","features":[57]},{"name":"RGBCOLOR","features":[57]},{"name":"RegisterCMMA","features":[3,57]},{"name":"RegisterCMMW","features":[3,57]},{"name":"SEQUENTIAL_TRANSFORM","features":[57]},{"name":"SelectCMM","features":[3,57]},{"name":"SetColorProfileElement","features":[3,57]},{"name":"SetColorProfileElementReference","features":[3,57]},{"name":"SetColorProfileElementSize","features":[3,57]},{"name":"SetColorProfileHeader","features":[3,14,57]},{"name":"SetColorSpace","features":[14,57]},{"name":"SetDeviceGammaRamp","features":[3,14,57]},{"name":"SetICMMode","features":[14,57]},{"name":"SetICMProfileA","features":[3,14,57]},{"name":"SetICMProfileW","features":[3,14,57]},{"name":"SetStandardColorSpaceProfileA","features":[3,57]},{"name":"SetStandardColorSpaceProfileW","features":[3,57]},{"name":"SetupColorMatchingA","features":[3,57,52]},{"name":"SetupColorMatchingW","features":[3,57,52]},{"name":"TranslateBitmapBits","features":[3,57]},{"name":"TranslateColors","features":[3,57]},{"name":"USE_RELATIVE_COLORIMETRIC","features":[57]},{"name":"UninstallColorProfileA","features":[3,57]},{"name":"UninstallColorProfileW","features":[3,57]},{"name":"UnregisterCMMA","features":[3,57]},{"name":"UnregisterCMMW","features":[3,57]},{"name":"UpdateICMRegKeyA","features":[3,57]},{"name":"UpdateICMRegKeyW","features":[3,57]},{"name":"VideoCardGammaTable","features":[57]},{"name":"WCS_ALWAYS","features":[57]},{"name":"WCS_DEFAULT","features":[57]},{"name":"WCS_DEVICE_CAPABILITIES_TYPE","features":[57]},{"name":"WCS_DEVICE_MHC2_CAPABILITIES","features":[3,57]},{"name":"WCS_DEVICE_VCGT_CAPABILITIES","features":[3,57]},{"name":"WCS_ICCONLY","features":[57]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE","features":[57]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_CURRENT_USER","features":[57]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_SYSTEM_WIDE","features":[57]},{"name":"WcsAssociateColorProfileWithDevice","features":[3,57]},{"name":"WcsCheckColors","features":[3,57]},{"name":"WcsCreateIccProfile","features":[57]},{"name":"WcsDisassociateColorProfileFromDevice","features":[3,57]},{"name":"WcsEnumColorProfiles","features":[3,57]},{"name":"WcsEnumColorProfilesSize","features":[3,57]},{"name":"WcsGetCalibrationManagementState","features":[3,57]},{"name":"WcsGetDefaultColorProfile","features":[3,57]},{"name":"WcsGetDefaultColorProfileSize","features":[3,57]},{"name":"WcsGetDefaultRenderingIntent","features":[3,57]},{"name":"WcsGetUsePerUserProfiles","features":[3,57]},{"name":"WcsOpenColorProfileA","features":[57]},{"name":"WcsOpenColorProfileW","features":[57]},{"name":"WcsSetCalibrationManagementState","features":[3,57]},{"name":"WcsSetDefaultColorProfile","features":[3,57]},{"name":"WcsSetDefaultRenderingIntent","features":[3,57]},{"name":"WcsSetUsePerUserProfiles","features":[3,57]},{"name":"WcsTranslateColors","features":[3,57]},{"name":"XYZCOLOR","features":[57]},{"name":"XYZColorF","features":[57]},{"name":"YxyCOLOR","features":[57]}],"652":[{"name":"ABS_DOWNDISABLED","features":[42]},{"name":"ABS_DOWNHOT","features":[42]},{"name":"ABS_DOWNHOVER","features":[42]},{"name":"ABS_DOWNNORMAL","features":[42]},{"name":"ABS_DOWNPRESSED","features":[42]},{"name":"ABS_LEFTDISABLED","features":[42]},{"name":"ABS_LEFTHOT","features":[42]},{"name":"ABS_LEFTHOVER","features":[42]},{"name":"ABS_LEFTNORMAL","features":[42]},{"name":"ABS_LEFTPRESSED","features":[42]},{"name":"ABS_RIGHTDISABLED","features":[42]},{"name":"ABS_RIGHTHOT","features":[42]},{"name":"ABS_RIGHTHOVER","features":[42]},{"name":"ABS_RIGHTNORMAL","features":[42]},{"name":"ABS_RIGHTPRESSED","features":[42]},{"name":"ABS_UPDISABLED","features":[42]},{"name":"ABS_UPHOT","features":[42]},{"name":"ABS_UPHOVER","features":[42]},{"name":"ABS_UPNORMAL","features":[42]},{"name":"ABS_UPPRESSED","features":[42]},{"name":"ACM_ISPLAYING","features":[42]},{"name":"ACM_OPEN","features":[42]},{"name":"ACM_OPENA","features":[42]},{"name":"ACM_OPENW","features":[42]},{"name":"ACM_PLAY","features":[42]},{"name":"ACM_STOP","features":[42]},{"name":"ACN_START","features":[42]},{"name":"ACN_STOP","features":[42]},{"name":"ACS_AUTOPLAY","features":[42]},{"name":"ACS_CENTER","features":[42]},{"name":"ACS_TIMER","features":[42]},{"name":"ACS_TRANSPARENT","features":[42]},{"name":"AEROWIZARDPARTS","features":[42]},{"name":"ALLOW_CONTROLS","features":[42]},{"name":"ALLOW_NONCLIENT","features":[42]},{"name":"ALLOW_WEBCONTENT","features":[42]},{"name":"ANIMATE_CLASS","features":[42]},{"name":"ANIMATE_CLASSA","features":[42]},{"name":"ANIMATE_CLASSW","features":[42]},{"name":"ARROWBTNSTATES","features":[42]},{"name":"AW_BUTTON","features":[42]},{"name":"AW_COMMANDAREA","features":[42]},{"name":"AW_CONTENTAREA","features":[42]},{"name":"AW_HEADERAREA","features":[42]},{"name":"AW_S_CONTENTAREA_NOMARGIN","features":[42]},{"name":"AW_S_HEADERAREA_NOMARGIN","features":[42]},{"name":"AW_S_TITLEBAR_ACTIVE","features":[42]},{"name":"AW_S_TITLEBAR_INACTIVE","features":[42]},{"name":"AW_TITLEBAR","features":[42]},{"name":"BACKGROUNDSTATES","features":[42]},{"name":"BACKGROUNDWITHBORDERSTATES","features":[42]},{"name":"BALLOONSTATES","features":[42]},{"name":"BALLOONSTEMSTATES","features":[42]},{"name":"BARBACKGROUNDSTATES","features":[42]},{"name":"BARITEMSTATES","features":[42]},{"name":"BCM_FIRST","features":[42]},{"name":"BCM_GETIDEALSIZE","features":[42]},{"name":"BCM_GETIMAGELIST","features":[42]},{"name":"BCM_GETNOTE","features":[42]},{"name":"BCM_GETNOTELENGTH","features":[42]},{"name":"BCM_GETSPLITINFO","features":[42]},{"name":"BCM_GETTEXTMARGIN","features":[42]},{"name":"BCM_SETDROPDOWNSTATE","features":[42]},{"name":"BCM_SETIMAGELIST","features":[42]},{"name":"BCM_SETNOTE","features":[42]},{"name":"BCM_SETSHIELD","features":[42]},{"name":"BCM_SETSPLITINFO","features":[42]},{"name":"BCM_SETTEXTMARGIN","features":[42]},{"name":"BCN_DROPDOWN","features":[42]},{"name":"BCN_FIRST","features":[42]},{"name":"BCN_HOTITEMCHANGE","features":[42]},{"name":"BCN_LAST","features":[42]},{"name":"BCSIF_GLYPH","features":[42]},{"name":"BCSIF_IMAGE","features":[42]},{"name":"BCSIF_SIZE","features":[42]},{"name":"BCSIF_STYLE","features":[42]},{"name":"BCSS_ALIGNLEFT","features":[42]},{"name":"BCSS_IMAGE","features":[42]},{"name":"BCSS_NOSPLIT","features":[42]},{"name":"BCSS_STRETCH","features":[42]},{"name":"BGTYPE","features":[42]},{"name":"BODYSTATES","features":[42]},{"name":"BORDERSTATES","features":[42]},{"name":"BORDERTYPE","features":[42]},{"name":"BORDER_HSCROLLSTATES","features":[42]},{"name":"BORDER_HVSCROLLSTATES","features":[42]},{"name":"BORDER_NOSCROLLSTATES","features":[42]},{"name":"BORDER_VSCROLLSTATES","features":[42]},{"name":"BPAS_CUBIC","features":[42]},{"name":"BPAS_LINEAR","features":[42]},{"name":"BPAS_NONE","features":[42]},{"name":"BPAS_SINE","features":[42]},{"name":"BPBF_COMPATIBLEBITMAP","features":[42]},{"name":"BPBF_DIB","features":[42]},{"name":"BPBF_TOPDOWNDIB","features":[42]},{"name":"BPBF_TOPDOWNMONODIB","features":[42]},{"name":"BPPF_ERASE","features":[42]},{"name":"BPPF_NOCLIP","features":[42]},{"name":"BPPF_NONCLIENT","features":[42]},{"name":"BP_ANIMATIONPARAMS","features":[42]},{"name":"BP_ANIMATIONSTYLE","features":[42]},{"name":"BP_BUFFERFORMAT","features":[42]},{"name":"BP_CHECKBOX","features":[42]},{"name":"BP_CHECKBOX_HCDISABLED","features":[42]},{"name":"BP_COMMANDLINK","features":[42]},{"name":"BP_COMMANDLINKGLYPH","features":[42]},{"name":"BP_GROUPBOX","features":[42]},{"name":"BP_GROUPBOX_HCDISABLED","features":[42]},{"name":"BP_PAINTPARAMS","features":[3,14,42]},{"name":"BP_PAINTPARAMS_FLAGS","features":[42]},{"name":"BP_PUSHBUTTON","features":[42]},{"name":"BP_PUSHBUTTONDROPDOWN","features":[42]},{"name":"BP_RADIOBUTTON","features":[42]},{"name":"BP_RADIOBUTTON_HCDISABLED","features":[42]},{"name":"BP_USERBUTTON","features":[42]},{"name":"BST_CHECKED","features":[42]},{"name":"BST_DROPDOWNPUSHED","features":[42]},{"name":"BST_HOT","features":[42]},{"name":"BST_INDETERMINATE","features":[42]},{"name":"BST_UNCHECKED","features":[42]},{"name":"BS_COMMANDLINK","features":[42]},{"name":"BS_DEFCOMMANDLINK","features":[42]},{"name":"BS_DEFSPLITBUTTON","features":[42]},{"name":"BS_SPLITBUTTON","features":[42]},{"name":"BTNS_AUTOSIZE","features":[42]},{"name":"BTNS_BUTTON","features":[42]},{"name":"BTNS_CHECK","features":[42]},{"name":"BTNS_DROPDOWN","features":[42]},{"name":"BTNS_GROUP","features":[42]},{"name":"BTNS_NOPREFIX","features":[42]},{"name":"BTNS_SEP","features":[42]},{"name":"BTNS_SHOWTEXT","features":[42]},{"name":"BTNS_WHOLEDROPDOWN","features":[42]},{"name":"BT_BORDERFILL","features":[42]},{"name":"BT_ELLIPSE","features":[42]},{"name":"BT_IMAGEFILE","features":[42]},{"name":"BT_NONE","features":[42]},{"name":"BT_RECT","features":[42]},{"name":"BT_ROUNDRECT","features":[42]},{"name":"BUTTONPARTS","features":[42]},{"name":"BUTTON_IMAGELIST","features":[3,42]},{"name":"BUTTON_IMAGELIST_ALIGN","features":[42]},{"name":"BUTTON_IMAGELIST_ALIGN_BOTTOM","features":[42]},{"name":"BUTTON_IMAGELIST_ALIGN_CENTER","features":[42]},{"name":"BUTTON_IMAGELIST_ALIGN_LEFT","features":[42]},{"name":"BUTTON_IMAGELIST_ALIGN_RIGHT","features":[42]},{"name":"BUTTON_IMAGELIST_ALIGN_TOP","features":[42]},{"name":"BUTTON_SPLITINFO","features":[3,42]},{"name":"BeginBufferedAnimation","features":[3,14,42]},{"name":"BeginBufferedPaint","features":[3,14,42]},{"name":"BeginPanningFeedback","features":[3,42]},{"name":"BufferedPaintClear","features":[3,42]},{"name":"BufferedPaintInit","features":[42]},{"name":"BufferedPaintRenderAnimation","features":[3,14,42]},{"name":"BufferedPaintSetAlpha","features":[3,42]},{"name":"BufferedPaintStopAllAnimations","features":[3,42]},{"name":"BufferedPaintUnInit","features":[42]},{"name":"CAPTIONSTATES","features":[42]},{"name":"CA_CENTER","features":[42]},{"name":"CA_LEFT","features":[42]},{"name":"CA_RIGHT","features":[42]},{"name":"CBB_DISABLED","features":[42]},{"name":"CBB_FOCUSED","features":[42]},{"name":"CBB_HOT","features":[42]},{"name":"CBB_NORMAL","features":[42]},{"name":"CBCB_DISABLED","features":[42]},{"name":"CBCB_HOT","features":[42]},{"name":"CBCB_NORMAL","features":[42]},{"name":"CBCB_PRESSED","features":[42]},{"name":"CBDI_HIGHLIGHTED","features":[42]},{"name":"CBDI_NORMAL","features":[42]},{"name":"CBEIF_DI_SETITEM","features":[42]},{"name":"CBEIF_IMAGE","features":[42]},{"name":"CBEIF_INDENT","features":[42]},{"name":"CBEIF_LPARAM","features":[42]},{"name":"CBEIF_OVERLAY","features":[42]},{"name":"CBEIF_SELECTEDIMAGE","features":[42]},{"name":"CBEIF_TEXT","features":[42]},{"name":"CBEMAXSTRLEN","features":[42]},{"name":"CBEM_GETCOMBOCONTROL","features":[42]},{"name":"CBEM_GETEDITCONTROL","features":[42]},{"name":"CBEM_GETEXSTYLE","features":[42]},{"name":"CBEM_GETEXTENDEDSTYLE","features":[42]},{"name":"CBEM_GETIMAGELIST","features":[42]},{"name":"CBEM_GETITEM","features":[42]},{"name":"CBEM_GETITEMA","features":[42]},{"name":"CBEM_GETITEMW","features":[42]},{"name":"CBEM_GETUNICODEFORMAT","features":[42]},{"name":"CBEM_HASEDITCHANGED","features":[42]},{"name":"CBEM_INSERTITEM","features":[42]},{"name":"CBEM_INSERTITEMA","features":[42]},{"name":"CBEM_INSERTITEMW","features":[42]},{"name":"CBEM_SETEXSTYLE","features":[42]},{"name":"CBEM_SETEXTENDEDSTYLE","features":[42]},{"name":"CBEM_SETIMAGELIST","features":[42]},{"name":"CBEM_SETITEM","features":[42]},{"name":"CBEM_SETITEMA","features":[42]},{"name":"CBEM_SETITEMW","features":[42]},{"name":"CBEM_SETUNICODEFORMAT","features":[42]},{"name":"CBEM_SETWINDOWTHEME","features":[42]},{"name":"CBENF_DROPDOWN","features":[42]},{"name":"CBENF_ESCAPE","features":[42]},{"name":"CBENF_KILLFOCUS","features":[42]},{"name":"CBENF_RETURN","features":[42]},{"name":"CBEN_BEGINEDIT","features":[42]},{"name":"CBEN_DELETEITEM","features":[42]},{"name":"CBEN_DRAGBEGIN","features":[42]},{"name":"CBEN_DRAGBEGINA","features":[42]},{"name":"CBEN_DRAGBEGINW","features":[42]},{"name":"CBEN_ENDEDIT","features":[42]},{"name":"CBEN_ENDEDITA","features":[42]},{"name":"CBEN_ENDEDITW","features":[42]},{"name":"CBEN_FIRST","features":[42]},{"name":"CBEN_GETDISPINFOA","features":[42]},{"name":"CBEN_GETDISPINFOW","features":[42]},{"name":"CBEN_INSERTITEM","features":[42]},{"name":"CBEN_LAST","features":[42]},{"name":"CBES_EX_CASESENSITIVE","features":[42]},{"name":"CBES_EX_NOEDITIMAGE","features":[42]},{"name":"CBES_EX_NOEDITIMAGEINDENT","features":[42]},{"name":"CBES_EX_NOSIZELIMIT","features":[42]},{"name":"CBES_EX_PATHWORDBREAKPROC","features":[42]},{"name":"CBES_EX_TEXTENDELLIPSIS","features":[42]},{"name":"CBM_FIRST","features":[42]},{"name":"CBRO_DISABLED","features":[42]},{"name":"CBRO_HOT","features":[42]},{"name":"CBRO_NORMAL","features":[42]},{"name":"CBRO_PRESSED","features":[42]},{"name":"CBS_CHECKEDDISABLED","features":[42]},{"name":"CBS_CHECKEDHOT","features":[42]},{"name":"CBS_CHECKEDNORMAL","features":[42]},{"name":"CBS_CHECKEDPRESSED","features":[42]},{"name":"CBS_DISABLED","features":[42]},{"name":"CBS_EXCLUDEDDISABLED","features":[42]},{"name":"CBS_EXCLUDEDHOT","features":[42]},{"name":"CBS_EXCLUDEDNORMAL","features":[42]},{"name":"CBS_EXCLUDEDPRESSED","features":[42]},{"name":"CBS_HOT","features":[42]},{"name":"CBS_IMPLICITDISABLED","features":[42]},{"name":"CBS_IMPLICITHOT","features":[42]},{"name":"CBS_IMPLICITNORMAL","features":[42]},{"name":"CBS_IMPLICITPRESSED","features":[42]},{"name":"CBS_MIXEDDISABLED","features":[42]},{"name":"CBS_MIXEDHOT","features":[42]},{"name":"CBS_MIXEDNORMAL","features":[42]},{"name":"CBS_MIXEDPRESSED","features":[42]},{"name":"CBS_NORMAL","features":[42]},{"name":"CBS_PUSHED","features":[42]},{"name":"CBS_UNCHECKEDDISABLED","features":[42]},{"name":"CBS_UNCHECKEDHOT","features":[42]},{"name":"CBS_UNCHECKEDNORMAL","features":[42]},{"name":"CBS_UNCHECKEDPRESSED","features":[42]},{"name":"CBTBS_DISABLED","features":[42]},{"name":"CBTBS_FOCUSED","features":[42]},{"name":"CBTBS_HOT","features":[42]},{"name":"CBTBS_NORMAL","features":[42]},{"name":"CBXSL_DISABLED","features":[42]},{"name":"CBXSL_HOT","features":[42]},{"name":"CBXSL_NORMAL","features":[42]},{"name":"CBXSL_PRESSED","features":[42]},{"name":"CBXSR_DISABLED","features":[42]},{"name":"CBXSR_HOT","features":[42]},{"name":"CBXSR_NORMAL","features":[42]},{"name":"CBXSR_PRESSED","features":[42]},{"name":"CBXS_DISABLED","features":[42]},{"name":"CBXS_HOT","features":[42]},{"name":"CBXS_NORMAL","features":[42]},{"name":"CBXS_PRESSED","features":[42]},{"name":"CB_GETCUEBANNER","features":[42]},{"name":"CB_GETMINVISIBLE","features":[42]},{"name":"CB_SETCUEBANNER","features":[42]},{"name":"CB_SETMINVISIBLE","features":[42]},{"name":"CCF_NOTEXT","features":[42]},{"name":"CCHCCCLASS","features":[42]},{"name":"CCHCCDESC","features":[42]},{"name":"CCHCCTEXT","features":[42]},{"name":"CCINFOA","features":[3,14,42]},{"name":"CCINFOW","features":[3,14,42]},{"name":"CCM_DPISCALE","features":[42]},{"name":"CCM_FIRST","features":[42]},{"name":"CCM_GETCOLORSCHEME","features":[42]},{"name":"CCM_GETDROPTARGET","features":[42]},{"name":"CCM_GETUNICODEFORMAT","features":[42]},{"name":"CCM_GETVERSION","features":[42]},{"name":"CCM_LAST","features":[42]},{"name":"CCM_SETBKCOLOR","features":[42]},{"name":"CCM_SETCOLORSCHEME","features":[42]},{"name":"CCM_SETNOTIFYWINDOW","features":[42]},{"name":"CCM_SETUNICODEFORMAT","features":[42]},{"name":"CCM_SETVERSION","features":[42]},{"name":"CCM_SETWINDOWTHEME","features":[42]},{"name":"CCSTYLEA","features":[42]},{"name":"CCSTYLEFLAGA","features":[42]},{"name":"CCSTYLEFLAGW","features":[42]},{"name":"CCSTYLEW","features":[42]},{"name":"CCS_ADJUSTABLE","features":[42]},{"name":"CCS_BOTTOM","features":[42]},{"name":"CCS_NODIVIDER","features":[42]},{"name":"CCS_NOMOVEY","features":[42]},{"name":"CCS_NOPARENTALIGN","features":[42]},{"name":"CCS_NORESIZE","features":[42]},{"name":"CCS_TOP","features":[42]},{"name":"CCS_VERT","features":[42]},{"name":"CDDS_ITEM","features":[42]},{"name":"CDDS_ITEMPOSTERASE","features":[42]},{"name":"CDDS_ITEMPOSTPAINT","features":[42]},{"name":"CDDS_ITEMPREERASE","features":[42]},{"name":"CDDS_ITEMPREPAINT","features":[42]},{"name":"CDDS_POSTERASE","features":[42]},{"name":"CDDS_POSTPAINT","features":[42]},{"name":"CDDS_PREERASE","features":[42]},{"name":"CDDS_PREPAINT","features":[42]},{"name":"CDDS_SUBITEM","features":[42]},{"name":"CDIS_CHECKED","features":[42]},{"name":"CDIS_DEFAULT","features":[42]},{"name":"CDIS_DISABLED","features":[42]},{"name":"CDIS_DROPHILITED","features":[42]},{"name":"CDIS_FOCUS","features":[42]},{"name":"CDIS_GRAYED","features":[42]},{"name":"CDIS_HOT","features":[42]},{"name":"CDIS_INDETERMINATE","features":[42]},{"name":"CDIS_MARKED","features":[42]},{"name":"CDIS_NEARHOT","features":[42]},{"name":"CDIS_OTHERSIDEHOT","features":[42]},{"name":"CDIS_SELECTED","features":[42]},{"name":"CDIS_SHOWKEYBOARDCUES","features":[42]},{"name":"CDN_FIRST","features":[42]},{"name":"CDN_LAST","features":[42]},{"name":"CDRF_DODEFAULT","features":[42]},{"name":"CDRF_DOERASE","features":[42]},{"name":"CDRF_NEWFONT","features":[42]},{"name":"CDRF_NOTIFYITEMDRAW","features":[42]},{"name":"CDRF_NOTIFYPOSTERASE","features":[42]},{"name":"CDRF_NOTIFYPOSTPAINT","features":[42]},{"name":"CDRF_NOTIFYSUBITEMDRAW","features":[42]},{"name":"CDRF_SKIPDEFAULT","features":[42]},{"name":"CDRF_SKIPPOSTPAINT","features":[42]},{"name":"CHECKBOXSTATES","features":[42]},{"name":"CHEVRONSTATES","features":[42]},{"name":"CHEVRONVERTSTATES","features":[42]},{"name":"CHEVSV_HOT","features":[42]},{"name":"CHEVSV_NORMAL","features":[42]},{"name":"CHEVSV_PRESSED","features":[42]},{"name":"CHEVS_HOT","features":[42]},{"name":"CHEVS_NORMAL","features":[42]},{"name":"CHEVS_PRESSED","features":[42]},{"name":"CLOCKPARTS","features":[42]},{"name":"CLOCKSTATES","features":[42]},{"name":"CLOSEBUTTONSTATES","features":[42]},{"name":"CLOSESTATES","features":[42]},{"name":"CLP_TIME","features":[42]},{"name":"CLR_DEFAULT","features":[42]},{"name":"CLR_HILIGHT","features":[42]},{"name":"CLR_NONE","features":[42]},{"name":"CLS_HOT","features":[42]},{"name":"CLS_NORMAL","features":[42]},{"name":"CLS_PRESSED","features":[42]},{"name":"CMB_MASKED","features":[42]},{"name":"CMDLGS_DEFAULTED","features":[42]},{"name":"CMDLGS_DISABLED","features":[42]},{"name":"CMDLGS_HOT","features":[42]},{"name":"CMDLGS_NORMAL","features":[42]},{"name":"CMDLGS_PRESSED","features":[42]},{"name":"CMDLS_DEFAULTED","features":[42]},{"name":"CMDLS_DEFAULTED_ANIMATING","features":[42]},{"name":"CMDLS_DISABLED","features":[42]},{"name":"CMDLS_HOT","features":[42]},{"name":"CMDLS_NORMAL","features":[42]},{"name":"CMDLS_PRESSED","features":[42]},{"name":"COLLAPSEBUTTONSTATES","features":[42]},{"name":"COLORMAP","features":[3,42]},{"name":"COLORMGMTDLGORD","features":[42]},{"name":"COLORSCHEME","features":[3,42]},{"name":"COMBOBOXEXITEMA","features":[3,42]},{"name":"COMBOBOXEXITEMW","features":[3,42]},{"name":"COMBOBOXINFO","features":[3,42]},{"name":"COMBOBOXINFO_BUTTON_STATE","features":[42]},{"name":"COMBOBOXPARTS","features":[42]},{"name":"COMBOBOXSTYLESTATES","features":[42]},{"name":"COMBOBOX_EX_ITEM_FLAGS","features":[42]},{"name":"COMCTL32_VERSION","features":[42]},{"name":"COMMANDLINKGLYPHSTATES","features":[42]},{"name":"COMMANDLINKSTATES","features":[42]},{"name":"COMMUNICATIONSPARTS","features":[42]},{"name":"COMPAREITEMSTRUCT","features":[3,42]},{"name":"CONTENTALIGNMENT","features":[42]},{"name":"CONTENTAREASTATES","features":[42]},{"name":"CONTENTLINKSTATES","features":[42]},{"name":"CONTENTPANESTATES","features":[42]},{"name":"CONTROLLABELSTATES","features":[42]},{"name":"CONTROLPANELPARTS","features":[42]},{"name":"COPYSTATES","features":[42]},{"name":"CPANEL_BANNERAREA","features":[42]},{"name":"CPANEL_BODYTEXT","features":[42]},{"name":"CPANEL_BODYTITLE","features":[42]},{"name":"CPANEL_BUTTON","features":[42]},{"name":"CPANEL_CONTENTLINK","features":[42]},{"name":"CPANEL_CONTENTPANE","features":[42]},{"name":"CPANEL_CONTENTPANELABEL","features":[42]},{"name":"CPANEL_CONTENTPANELINE","features":[42]},{"name":"CPANEL_GROUPTEXT","features":[42]},{"name":"CPANEL_HELPLINK","features":[42]},{"name":"CPANEL_LARGECOMMANDAREA","features":[42]},{"name":"CPANEL_MESSAGETEXT","features":[42]},{"name":"CPANEL_NAVIGATIONPANE","features":[42]},{"name":"CPANEL_NAVIGATIONPANELABEL","features":[42]},{"name":"CPANEL_NAVIGATIONPANELINE","features":[42]},{"name":"CPANEL_SECTIONTITLELINK","features":[42]},{"name":"CPANEL_SMALLCOMMANDAREA","features":[42]},{"name":"CPANEL_TASKLINK","features":[42]},{"name":"CPANEL_TITLE","features":[42]},{"name":"CPCL_DISABLED","features":[42]},{"name":"CPCL_HOT","features":[42]},{"name":"CPCL_NORMAL","features":[42]},{"name":"CPCL_PRESSED","features":[42]},{"name":"CPHL_DISABLED","features":[42]},{"name":"CPHL_HOT","features":[42]},{"name":"CPHL_NORMAL","features":[42]},{"name":"CPHL_PRESSED","features":[42]},{"name":"CPSTL_HOT","features":[42]},{"name":"CPSTL_NORMAL","features":[42]},{"name":"CPTL_DISABLED","features":[42]},{"name":"CPTL_HOT","features":[42]},{"name":"CPTL_NORMAL","features":[42]},{"name":"CPTL_PAGE","features":[42]},{"name":"CPTL_PRESSED","features":[42]},{"name":"CP_BACKGROUND","features":[42]},{"name":"CP_BORDER","features":[42]},{"name":"CP_CUEBANNER","features":[42]},{"name":"CP_DROPDOWNBUTTON","features":[42]},{"name":"CP_DROPDOWNBUTTONLEFT","features":[42]},{"name":"CP_DROPDOWNBUTTONRIGHT","features":[42]},{"name":"CP_DROPDOWNITEM","features":[42]},{"name":"CP_READONLY","features":[42]},{"name":"CP_TRANSPARENTBACKGROUND","features":[42]},{"name":"CREATELINKSTATES","features":[42]},{"name":"CSST_TAB","features":[42]},{"name":"CSTB_HOT","features":[42]},{"name":"CSTB_NORMAL","features":[42]},{"name":"CSTB_SELECTED","features":[42]},{"name":"CS_ACTIVE","features":[42]},{"name":"CS_DISABLED","features":[42]},{"name":"CS_INACTIVE","features":[42]},{"name":"CUEBANNERSTATES","features":[42]},{"name":"CheckDlgButton","features":[3,42]},{"name":"CheckRadioButton","features":[3,42]},{"name":"CloseThemeData","features":[42]},{"name":"CreateMappedBitmap","features":[3,14,42]},{"name":"CreatePropertySheetPageA","features":[3,14,42,52]},{"name":"CreatePropertySheetPageW","features":[3,14,42,52]},{"name":"CreateStatusWindowA","features":[3,42]},{"name":"CreateStatusWindowW","features":[3,42]},{"name":"CreateSyntheticPointerDevice","features":[42,52]},{"name":"CreateToolbarEx","features":[3,42]},{"name":"CreateUpDownControl","features":[3,42]},{"name":"DATEBORDERSTATES","features":[42]},{"name":"DATEPICKERPARTS","features":[42]},{"name":"DATETEXTSTATES","features":[42]},{"name":"DATETIMEPICKERINFO","features":[3,42]},{"name":"DATETIMEPICK_CLASS","features":[42]},{"name":"DATETIMEPICK_CLASSA","features":[42]},{"name":"DATETIMEPICK_CLASSW","features":[42]},{"name":"DA_ERR","features":[42]},{"name":"DA_LAST","features":[42]},{"name":"DDCOPY_HIGHLIGHT","features":[42]},{"name":"DDCOPY_NOHIGHLIGHT","features":[42]},{"name":"DDCREATELINK_HIGHLIGHT","features":[42]},{"name":"DDCREATELINK_NOHIGHLIGHT","features":[42]},{"name":"DDL_ARCHIVE","features":[42]},{"name":"DDL_DIRECTORY","features":[42]},{"name":"DDL_DRIVES","features":[42]},{"name":"DDL_EXCLUSIVE","features":[42]},{"name":"DDL_HIDDEN","features":[42]},{"name":"DDL_POSTMSGS","features":[42]},{"name":"DDL_READONLY","features":[42]},{"name":"DDL_READWRITE","features":[42]},{"name":"DDL_SYSTEM","features":[42]},{"name":"DDMOVE_HIGHLIGHT","features":[42]},{"name":"DDMOVE_NOHIGHLIGHT","features":[42]},{"name":"DDNONE_HIGHLIGHT","features":[42]},{"name":"DDNONE_NOHIGHLIGHT","features":[42]},{"name":"DDUPDATEMETADATA_HIGHLIGHT","features":[42]},{"name":"DDUPDATEMETADATA_NOHIGHLIGHT","features":[42]},{"name":"DDWARNING_HIGHLIGHT","features":[42]},{"name":"DDWARNING_NOHIGHLIGHT","features":[42]},{"name":"DD_COPY","features":[42]},{"name":"DD_CREATELINK","features":[42]},{"name":"DD_IMAGEBG","features":[42]},{"name":"DD_MOVE","features":[42]},{"name":"DD_NONE","features":[42]},{"name":"DD_TEXTBG","features":[42]},{"name":"DD_UPDATEMETADATA","features":[42]},{"name":"DD_WARNING","features":[42]},{"name":"DELETEITEMSTRUCT","features":[3,42]},{"name":"DLG_BUTTON_CHECK_STATE","features":[42]},{"name":"DLG_DIR_LIST_FILE_TYPE","features":[42]},{"name":"DL_BEGINDRAG","features":[42]},{"name":"DL_CANCELDRAG","features":[42]},{"name":"DL_COPYCURSOR","features":[42]},{"name":"DL_CURSORSET","features":[42]},{"name":"DL_DRAGGING","features":[42]},{"name":"DL_DROPPED","features":[42]},{"name":"DL_MOVECURSOR","features":[42]},{"name":"DL_STOPCURSOR","features":[42]},{"name":"DNHZS_DISABLED","features":[42]},{"name":"DNHZS_HOT","features":[42]},{"name":"DNHZS_NORMAL","features":[42]},{"name":"DNHZS_PRESSED","features":[42]},{"name":"DNS_DISABLED","features":[42]},{"name":"DNS_HOT","features":[42]},{"name":"DNS_NORMAL","features":[42]},{"name":"DNS_PRESSED","features":[42]},{"name":"DOWNHORZSTATES","features":[42]},{"name":"DOWNSTATES","features":[42]},{"name":"DPAMM_DELETE","features":[42]},{"name":"DPAMM_INSERT","features":[42]},{"name":"DPAMM_MERGE","features":[42]},{"name":"DPAMM_MESSAGE","features":[42]},{"name":"DPAM_INTERSECT","features":[42]},{"name":"DPAM_NORMAL","features":[42]},{"name":"DPAM_SORTED","features":[42]},{"name":"DPAM_UNION","features":[42]},{"name":"DPASTREAMINFO","features":[42]},{"name":"DPAS_INSERTAFTER","features":[42]},{"name":"DPAS_INSERTBEFORE","features":[42]},{"name":"DPAS_SORTED","features":[42]},{"name":"DPA_APPEND","features":[42]},{"name":"DPA_Clone","features":[42]},{"name":"DPA_Create","features":[42]},{"name":"DPA_CreateEx","features":[3,42]},{"name":"DPA_DeleteAllPtrs","features":[3,42]},{"name":"DPA_DeletePtr","features":[42]},{"name":"DPA_Destroy","features":[3,42]},{"name":"DPA_DestroyCallback","features":[42]},{"name":"DPA_ERR","features":[42]},{"name":"DPA_EnumCallback","features":[42]},{"name":"DPA_GetPtr","features":[42]},{"name":"DPA_GetPtrIndex","features":[42]},{"name":"DPA_GetSize","features":[42]},{"name":"DPA_Grow","features":[3,42]},{"name":"DPA_InsertPtr","features":[42]},{"name":"DPA_LoadStream","features":[42]},{"name":"DPA_Merge","features":[3,42]},{"name":"DPA_SaveStream","features":[42]},{"name":"DPA_Search","features":[3,42]},{"name":"DPA_SetPtr","features":[3,42]},{"name":"DPA_Sort","features":[3,42]},{"name":"DPDB_DISABLED","features":[42]},{"name":"DPDB_FOCUSED","features":[42]},{"name":"DPDB_HOT","features":[42]},{"name":"DPDB_NORMAL","features":[42]},{"name":"DPDT_DISABLED","features":[42]},{"name":"DPDT_NORMAL","features":[42]},{"name":"DPDT_SELECTED","features":[42]},{"name":"DPSCBR_DISABLED","features":[42]},{"name":"DPSCBR_HOT","features":[42]},{"name":"DPSCBR_NORMAL","features":[42]},{"name":"DPSCBR_PRESSED","features":[42]},{"name":"DP_DATEBORDER","features":[42]},{"name":"DP_DATETEXT","features":[42]},{"name":"DP_SHOWCALENDARBUTTONRIGHT","features":[42]},{"name":"DRAGDROPPARTS","features":[42]},{"name":"DRAGLISTINFO","features":[3,42]},{"name":"DRAGLISTINFO_NOTIFICATION_FLAGS","features":[42]},{"name":"DRAGLISTMSGSTRING","features":[42]},{"name":"DRAWITEMSTRUCT","features":[3,14,42]},{"name":"DRAWITEMSTRUCT_CTL_TYPE","features":[42]},{"name":"DRAW_THEME_PARENT_BACKGROUND_FLAGS","features":[42]},{"name":"DROPDOWNBUTTONLEFTSTATES","features":[42]},{"name":"DROPDOWNBUTTONRIGHTSTATES","features":[42]},{"name":"DROPDOWNITEMSTATES","features":[42]},{"name":"DSA_APPEND","features":[42]},{"name":"DSA_Clone","features":[42]},{"name":"DSA_Create","features":[42]},{"name":"DSA_DeleteAllItems","features":[3,42]},{"name":"DSA_DeleteItem","features":[3,42]},{"name":"DSA_Destroy","features":[3,42]},{"name":"DSA_DestroyCallback","features":[42]},{"name":"DSA_ERR","features":[42]},{"name":"DSA_EnumCallback","features":[42]},{"name":"DSA_GetItem","features":[3,42]},{"name":"DSA_GetItemPtr","features":[42]},{"name":"DSA_GetSize","features":[42]},{"name":"DSA_InsertItem","features":[42]},{"name":"DSA_SetItem","features":[3,42]},{"name":"DSA_Sort","features":[3,42]},{"name":"DTBGOPTS","features":[3,42]},{"name":"DTBG_CLIPRECT","features":[42]},{"name":"DTBG_COMPUTINGREGION","features":[42]},{"name":"DTBG_DRAWSOLID","features":[42]},{"name":"DTBG_MIRRORDC","features":[42]},{"name":"DTBG_NOMIRROR","features":[42]},{"name":"DTBG_OMITBORDER","features":[42]},{"name":"DTBG_OMITCONTENT","features":[42]},{"name":"DTM_CLOSEMONTHCAL","features":[42]},{"name":"DTM_FIRST","features":[42]},{"name":"DTM_GETDATETIMEPICKERINFO","features":[42]},{"name":"DTM_GETIDEALSIZE","features":[42]},{"name":"DTM_GETMCCOLOR","features":[42]},{"name":"DTM_GETMCFONT","features":[42]},{"name":"DTM_GETMCSTYLE","features":[42]},{"name":"DTM_GETMONTHCAL","features":[42]},{"name":"DTM_GETRANGE","features":[42]},{"name":"DTM_GETSYSTEMTIME","features":[42]},{"name":"DTM_SETFORMAT","features":[42]},{"name":"DTM_SETFORMATA","features":[42]},{"name":"DTM_SETFORMATW","features":[42]},{"name":"DTM_SETMCCOLOR","features":[42]},{"name":"DTM_SETMCFONT","features":[42]},{"name":"DTM_SETMCSTYLE","features":[42]},{"name":"DTM_SETRANGE","features":[42]},{"name":"DTM_SETSYSTEMTIME","features":[42]},{"name":"DTN_CLOSEUP","features":[42]},{"name":"DTN_DATETIMECHANGE","features":[42]},{"name":"DTN_DROPDOWN","features":[42]},{"name":"DTN_FIRST","features":[42]},{"name":"DTN_FIRST2","features":[42]},{"name":"DTN_FORMAT","features":[42]},{"name":"DTN_FORMATA","features":[42]},{"name":"DTN_FORMATQUERY","features":[42]},{"name":"DTN_FORMATQUERYA","features":[42]},{"name":"DTN_FORMATQUERYW","features":[42]},{"name":"DTN_FORMATW","features":[42]},{"name":"DTN_LAST","features":[42]},{"name":"DTN_LAST2","features":[42]},{"name":"DTN_USERSTRING","features":[42]},{"name":"DTN_USERSTRINGA","features":[42]},{"name":"DTN_USERSTRINGW","features":[42]},{"name":"DTN_WMKEYDOWN","features":[42]},{"name":"DTN_WMKEYDOWNA","features":[42]},{"name":"DTN_WMKEYDOWNW","features":[42]},{"name":"DTPB_USECTLCOLORSTATIC","features":[42]},{"name":"DTPB_USEERASEBKGND","features":[42]},{"name":"DTPB_WINDOWDC","features":[42]},{"name":"DTS_APPCANPARSE","features":[42]},{"name":"DTS_LONGDATEFORMAT","features":[42]},{"name":"DTS_RIGHTALIGN","features":[42]},{"name":"DTS_SHORTDATECENTURYFORMAT","features":[42]},{"name":"DTS_SHORTDATEFORMAT","features":[42]},{"name":"DTS_SHOWNONE","features":[42]},{"name":"DTS_TIMEFORMAT","features":[42]},{"name":"DTS_UPDOWN","features":[42]},{"name":"DTTOPTS","features":[3,14,42]},{"name":"DTTOPTS_FLAGS","features":[42]},{"name":"DTT_APPLYOVERLAY","features":[42]},{"name":"DTT_BORDERCOLOR","features":[42]},{"name":"DTT_BORDERSIZE","features":[42]},{"name":"DTT_CALCRECT","features":[42]},{"name":"DTT_CALLBACK","features":[42]},{"name":"DTT_CALLBACK_PROC","features":[3,14,42]},{"name":"DTT_COLORPROP","features":[42]},{"name":"DTT_COMPOSITED","features":[42]},{"name":"DTT_FLAGS2VALIDBITS","features":[42]},{"name":"DTT_FONTPROP","features":[42]},{"name":"DTT_GLOWSIZE","features":[42]},{"name":"DTT_GRAYED","features":[42]},{"name":"DTT_SHADOWCOLOR","features":[42]},{"name":"DTT_SHADOWOFFSET","features":[42]},{"name":"DTT_SHADOWTYPE","features":[42]},{"name":"DTT_STATEID","features":[42]},{"name":"DTT_TEXTCOLOR","features":[42]},{"name":"DTT_VALIDBITS","features":[42]},{"name":"DestroyPropertySheetPage","features":[3,42]},{"name":"DestroySyntheticPointerDevice","features":[42]},{"name":"DlgDirListA","features":[3,42]},{"name":"DlgDirListComboBoxA","features":[3,42]},{"name":"DlgDirListComboBoxW","features":[3,42]},{"name":"DlgDirListW","features":[3,42]},{"name":"DlgDirSelectComboBoxExA","features":[3,42]},{"name":"DlgDirSelectComboBoxExW","features":[3,42]},{"name":"DlgDirSelectExA","features":[3,42]},{"name":"DlgDirSelectExW","features":[3,42]},{"name":"DrawInsert","features":[3,42]},{"name":"DrawShadowText","features":[3,14,42]},{"name":"DrawStatusTextA","features":[3,14,42]},{"name":"DrawStatusTextW","features":[3,14,42]},{"name":"DrawThemeBackground","features":[3,14,42]},{"name":"DrawThemeBackgroundEx","features":[3,14,42]},{"name":"DrawThemeEdge","features":[3,14,42]},{"name":"DrawThemeIcon","features":[3,14,42]},{"name":"DrawThemeParentBackground","features":[3,14,42]},{"name":"DrawThemeParentBackgroundEx","features":[3,14,42]},{"name":"DrawThemeText","features":[3,14,42]},{"name":"DrawThemeTextEx","features":[3,14,42]},{"name":"EBHC_HOT","features":[42]},{"name":"EBHC_NORMAL","features":[42]},{"name":"EBHC_PRESSED","features":[42]},{"name":"EBHP_HOT","features":[42]},{"name":"EBHP_NORMAL","features":[42]},{"name":"EBHP_PRESSED","features":[42]},{"name":"EBHP_SELECTEDHOT","features":[42]},{"name":"EBHP_SELECTEDNORMAL","features":[42]},{"name":"EBHP_SELECTEDPRESSED","features":[42]},{"name":"EBM_HOT","features":[42]},{"name":"EBM_NORMAL","features":[42]},{"name":"EBM_PRESSED","features":[42]},{"name":"EBNGC_HOT","features":[42]},{"name":"EBNGC_NORMAL","features":[42]},{"name":"EBNGC_PRESSED","features":[42]},{"name":"EBNGE_HOT","features":[42]},{"name":"EBNGE_NORMAL","features":[42]},{"name":"EBNGE_PRESSED","features":[42]},{"name":"EBP_HEADERBACKGROUND","features":[42]},{"name":"EBP_HEADERCLOSE","features":[42]},{"name":"EBP_HEADERPIN","features":[42]},{"name":"EBP_IEBARMENU","features":[42]},{"name":"EBP_NORMALGROUPBACKGROUND","features":[42]},{"name":"EBP_NORMALGROUPCOLLAPSE","features":[42]},{"name":"EBP_NORMALGROUPEXPAND","features":[42]},{"name":"EBP_NORMALGROUPHEAD","features":[42]},{"name":"EBP_SPECIALGROUPBACKGROUND","features":[42]},{"name":"EBP_SPECIALGROUPCOLLAPSE","features":[42]},{"name":"EBP_SPECIALGROUPEXPAND","features":[42]},{"name":"EBP_SPECIALGROUPHEAD","features":[42]},{"name":"EBSGC_HOT","features":[42]},{"name":"EBSGC_NORMAL","features":[42]},{"name":"EBSGC_PRESSED","features":[42]},{"name":"EBSGE_HOT","features":[42]},{"name":"EBSGE_NORMAL","features":[42]},{"name":"EBSGE_PRESSED","features":[42]},{"name":"EBS_ASSIST","features":[42]},{"name":"EBS_DISABLED","features":[42]},{"name":"EBS_FOCUSED","features":[42]},{"name":"EBS_HOT","features":[42]},{"name":"EBS_NORMAL","features":[42]},{"name":"EBS_READONLY","features":[42]},{"name":"EBWBS_DISABLED","features":[42]},{"name":"EBWBS_FOCUSED","features":[42]},{"name":"EBWBS_HOT","features":[42]},{"name":"EBWBS_NORMAL","features":[42]},{"name":"ECM_FIRST","features":[42]},{"name":"EC_ENDOFLINE","features":[42]},{"name":"EC_ENDOFLINE_CR","features":[42]},{"name":"EC_ENDOFLINE_CRLF","features":[42]},{"name":"EC_ENDOFLINE_DETECTFROMCONTENT","features":[42]},{"name":"EC_ENDOFLINE_LF","features":[42]},{"name":"EC_SEARCHWEB_ENTRYPOINT","features":[42]},{"name":"EC_SEARCHWEB_ENTRYPOINT_CONTEXTMENU","features":[42]},{"name":"EC_SEARCHWEB_ENTRYPOINT_EXTERNAL","features":[42]},{"name":"EDITBALLOONTIP","features":[42]},{"name":"EDITBALLOONTIP_ICON","features":[42]},{"name":"EDITBORDER_HSCROLLSTATES","features":[42]},{"name":"EDITBORDER_HVSCROLLSTATES","features":[42]},{"name":"EDITBORDER_NOSCROLLSTATES","features":[42]},{"name":"EDITBORDER_VSCROLLSTATES","features":[42]},{"name":"EDITPARTS","features":[42]},{"name":"EDITTEXTSTATES","features":[42]},{"name":"EDITWORDBREAKPROCA","features":[42]},{"name":"EDITWORDBREAKPROCW","features":[42]},{"name":"EMF_CENTERED","features":[42]},{"name":"EMPTYMARKUPPARTS","features":[42]},{"name":"EMP_MARKUPTEXT","features":[42]},{"name":"EMT_LINKTEXT","features":[42]},{"name":"EMT_NORMALTEXT","features":[42]},{"name":"EM_CANUNDO","features":[42]},{"name":"EM_CHARFROMPOS","features":[42]},{"name":"EM_EMPTYUNDOBUFFER","features":[42]},{"name":"EM_ENABLEFEATURE","features":[42]},{"name":"EM_ENABLESEARCHWEB","features":[42]},{"name":"EM_FILELINEFROMCHAR","features":[42]},{"name":"EM_FILELINEINDEX","features":[42]},{"name":"EM_FILELINELENGTH","features":[42]},{"name":"EM_FMTLINES","features":[42]},{"name":"EM_GETCARETINDEX","features":[42]},{"name":"EM_GETCUEBANNER","features":[42]},{"name":"EM_GETENDOFLINE","features":[42]},{"name":"EM_GETEXTENDEDSTYLE","features":[42]},{"name":"EM_GETFILELINE","features":[42]},{"name":"EM_GETFILELINECOUNT","features":[42]},{"name":"EM_GETFIRSTVISIBLELINE","features":[42]},{"name":"EM_GETHANDLE","features":[42]},{"name":"EM_GETHILITE","features":[42]},{"name":"EM_GETIMESTATUS","features":[42]},{"name":"EM_GETLIMITTEXT","features":[42]},{"name":"EM_GETLINE","features":[42]},{"name":"EM_GETLINECOUNT","features":[42]},{"name":"EM_GETMARGINS","features":[42]},{"name":"EM_GETMODIFY","features":[42]},{"name":"EM_GETPASSWORDCHAR","features":[42]},{"name":"EM_GETRECT","features":[42]},{"name":"EM_GETSEL","features":[42]},{"name":"EM_GETTHUMB","features":[42]},{"name":"EM_GETWORDBREAKPROC","features":[42]},{"name":"EM_HIDEBALLOONTIP","features":[42]},{"name":"EM_LIMITTEXT","features":[42]},{"name":"EM_LINEFROMCHAR","features":[42]},{"name":"EM_LINEINDEX","features":[42]},{"name":"EM_LINELENGTH","features":[42]},{"name":"EM_LINESCROLL","features":[42]},{"name":"EM_NOSETFOCUS","features":[42]},{"name":"EM_POSFROMCHAR","features":[42]},{"name":"EM_REPLACESEL","features":[42]},{"name":"EM_SCROLL","features":[42]},{"name":"EM_SCROLLCARET","features":[42]},{"name":"EM_SEARCHWEB","features":[42]},{"name":"EM_SETCARETINDEX","features":[42]},{"name":"EM_SETCUEBANNER","features":[42]},{"name":"EM_SETENDOFLINE","features":[42]},{"name":"EM_SETEXTENDEDSTYLE","features":[42]},{"name":"EM_SETHANDLE","features":[42]},{"name":"EM_SETHILITE","features":[42]},{"name":"EM_SETIMESTATUS","features":[42]},{"name":"EM_SETLIMITTEXT","features":[42]},{"name":"EM_SETMARGINS","features":[42]},{"name":"EM_SETMODIFY","features":[42]},{"name":"EM_SETPASSWORDCHAR","features":[42]},{"name":"EM_SETREADONLY","features":[42]},{"name":"EM_SETRECT","features":[42]},{"name":"EM_SETRECTNP","features":[42]},{"name":"EM_SETSEL","features":[42]},{"name":"EM_SETTABSTOPS","features":[42]},{"name":"EM_SETWORDBREAKPROC","features":[42]},{"name":"EM_SHOWBALLOONTIP","features":[42]},{"name":"EM_TAKEFOCUS","features":[42]},{"name":"EM_UNDO","features":[42]},{"name":"ENABLE_SCROLL_BAR_ARROWS","features":[42]},{"name":"EN_FIRST","features":[42]},{"name":"EN_LAST","features":[42]},{"name":"EN_SEARCHWEB","features":[42]},{"name":"EPSHV_DISABLED","features":[42]},{"name":"EPSHV_FOCUSED","features":[42]},{"name":"EPSHV_HOT","features":[42]},{"name":"EPSHV_NORMAL","features":[42]},{"name":"EPSH_DISABLED","features":[42]},{"name":"EPSH_FOCUSED","features":[42]},{"name":"EPSH_HOT","features":[42]},{"name":"EPSH_NORMAL","features":[42]},{"name":"EPSN_DISABLED","features":[42]},{"name":"EPSN_FOCUSED","features":[42]},{"name":"EPSN_HOT","features":[42]},{"name":"EPSN_NORMAL","features":[42]},{"name":"EPSV_DISABLED","features":[42]},{"name":"EPSV_FOCUSED","features":[42]},{"name":"EPSV_HOT","features":[42]},{"name":"EPSV_NORMAL","features":[42]},{"name":"EP_BACKGROUND","features":[42]},{"name":"EP_BACKGROUNDWITHBORDER","features":[42]},{"name":"EP_CARET","features":[42]},{"name":"EP_EDITBORDER_HSCROLL","features":[42]},{"name":"EP_EDITBORDER_HVSCROLL","features":[42]},{"name":"EP_EDITBORDER_NOSCROLL","features":[42]},{"name":"EP_EDITBORDER_VSCROLL","features":[42]},{"name":"EP_EDITTEXT","features":[42]},{"name":"EP_PASSWORD","features":[42]},{"name":"ESB_DISABLE_BOTH","features":[42]},{"name":"ESB_DISABLE_DOWN","features":[42]},{"name":"ESB_DISABLE_LEFT","features":[42]},{"name":"ESB_DISABLE_LTUP","features":[42]},{"name":"ESB_DISABLE_RIGHT","features":[42]},{"name":"ESB_DISABLE_RTDN","features":[42]},{"name":"ESB_DISABLE_UP","features":[42]},{"name":"ESB_ENABLE_BOTH","features":[42]},{"name":"ES_EX_ALLOWEOL_CR","features":[42]},{"name":"ES_EX_ALLOWEOL_LF","features":[42]},{"name":"ES_EX_CONVERT_EOL_ON_PASTE","features":[42]},{"name":"ES_EX_ZOOMABLE","features":[42]},{"name":"ETDT_DISABLE","features":[42]},{"name":"ETDT_ENABLE","features":[42]},{"name":"ETDT_USEAEROWIZARDTABTEXTURE","features":[42]},{"name":"ETDT_USETABTEXTURE","features":[42]},{"name":"ETS_ASSIST","features":[42]},{"name":"ETS_CUEBANNER","features":[42]},{"name":"ETS_DISABLED","features":[42]},{"name":"ETS_FOCUSED","features":[42]},{"name":"ETS_HOT","features":[42]},{"name":"ETS_NORMAL","features":[42]},{"name":"ETS_READONLY","features":[42]},{"name":"ETS_SELECTED","features":[42]},{"name":"EXPANDBUTTONSTATES","features":[42]},{"name":"EXPANDOBUTTONSTATES","features":[42]},{"name":"EXPLORERBARPARTS","features":[42]},{"name":"EnableScrollBar","features":[3,42]},{"name":"EnableThemeDialogTexture","features":[3,42]},{"name":"EnableTheming","features":[3,42]},{"name":"EndBufferedAnimation","features":[3,42]},{"name":"EndBufferedPaint","features":[3,42]},{"name":"EndPanningFeedback","features":[3,42]},{"name":"EvaluateProximityToPolygon","features":[3,42]},{"name":"EvaluateProximityToRect","features":[3,42]},{"name":"FBS_EMPHASIZED","features":[42]},{"name":"FBS_NORMAL","features":[42]},{"name":"FEEDBACK_GESTURE_PRESSANDTAP","features":[42]},{"name":"FEEDBACK_MAX","features":[42]},{"name":"FEEDBACK_PEN_BARRELVISUALIZATION","features":[42]},{"name":"FEEDBACK_PEN_DOUBLETAP","features":[42]},{"name":"FEEDBACK_PEN_PRESSANDHOLD","features":[42]},{"name":"FEEDBACK_PEN_RIGHTTAP","features":[42]},{"name":"FEEDBACK_PEN_TAP","features":[42]},{"name":"FEEDBACK_TOUCH_CONTACTVISUALIZATION","features":[42]},{"name":"FEEDBACK_TOUCH_DOUBLETAP","features":[42]},{"name":"FEEDBACK_TOUCH_PRESSANDHOLD","features":[42]},{"name":"FEEDBACK_TOUCH_RIGHTTAP","features":[42]},{"name":"FEEDBACK_TOUCH_TAP","features":[42]},{"name":"FEEDBACK_TYPE","features":[42]},{"name":"FILEOPENORD","features":[42]},{"name":"FILLSTATES","features":[42]},{"name":"FILLTYPE","features":[42]},{"name":"FILLVERTSTATES","features":[42]},{"name":"FINDDLGORD","features":[42]},{"name":"FLH_HOVER","features":[42]},{"name":"FLH_NORMAL","features":[42]},{"name":"FLS_DISABLED","features":[42]},{"name":"FLS_EMPHASIZED","features":[42]},{"name":"FLS_NORMAL","features":[42]},{"name":"FLS_SELECTED","features":[42]},{"name":"FLYOUTLINK_HOVER","features":[42]},{"name":"FLYOUTLINK_NORMAL","features":[42]},{"name":"FLYOUTPARTS","features":[42]},{"name":"FLYOUT_BODY","features":[42]},{"name":"FLYOUT_DIVIDER","features":[42]},{"name":"FLYOUT_HEADER","features":[42]},{"name":"FLYOUT_LABEL","features":[42]},{"name":"FLYOUT_LINK","features":[42]},{"name":"FLYOUT_LINKAREA","features":[42]},{"name":"FLYOUT_LINKHEADER","features":[42]},{"name":"FLYOUT_WINDOW","features":[42]},{"name":"FONTDLGORD","features":[42]},{"name":"FORMATDLGORD30","features":[42]},{"name":"FORMATDLGORD31","features":[42]},{"name":"FRAMEBOTTOMSTATES","features":[42]},{"name":"FRAMELEFTSTATES","features":[42]},{"name":"FRAMERIGHTSTATES","features":[42]},{"name":"FRAMESTATES","features":[42]},{"name":"FRB_ACTIVE","features":[42]},{"name":"FRB_INACTIVE","features":[42]},{"name":"FRL_ACTIVE","features":[42]},{"name":"FRL_INACTIVE","features":[42]},{"name":"FRR_ACTIVE","features":[42]},{"name":"FRR_INACTIVE","features":[42]},{"name":"FSB_ENCARTA_MODE","features":[42]},{"name":"FSB_FLAT_MODE","features":[42]},{"name":"FSB_REGULAR_MODE","features":[42]},{"name":"FS_ACTIVE","features":[42]},{"name":"FS_INACTIVE","features":[42]},{"name":"FT_HORZGRADIENT","features":[42]},{"name":"FT_RADIALGRADIENT","features":[42]},{"name":"FT_SOLID","features":[42]},{"name":"FT_TILEIMAGE","features":[42]},{"name":"FT_VERTGRADIENT","features":[42]},{"name":"FlatSB_EnableScrollBar","features":[3,42]},{"name":"FlatSB_GetScrollInfo","features":[3,42,52]},{"name":"FlatSB_GetScrollPos","features":[3,42,52]},{"name":"FlatSB_GetScrollProp","features":[3,42]},{"name":"FlatSB_GetScrollRange","features":[3,42,52]},{"name":"FlatSB_SetScrollInfo","features":[3,42,52]},{"name":"FlatSB_SetScrollPos","features":[3,42,52]},{"name":"FlatSB_SetScrollProp","features":[3,42]},{"name":"FlatSB_SetScrollRange","features":[3,42,52]},{"name":"FlatSB_ShowScrollBar","features":[3,42,52]},{"name":"GBF_COPY","features":[42]},{"name":"GBF_DIRECT","features":[42]},{"name":"GBF_VALIDBITS","features":[42]},{"name":"GBS_DISABLED","features":[42]},{"name":"GBS_NORMAL","features":[42]},{"name":"GDTR_MAX","features":[42]},{"name":"GDTR_MIN","features":[42]},{"name":"GDT_ERROR","features":[42]},{"name":"GDT_NONE","features":[42]},{"name":"GDT_VALID","features":[42]},{"name":"GET_THEME_BITMAP_FLAGS","features":[42]},{"name":"GFST_DPI","features":[42]},{"name":"GFST_NONE","features":[42]},{"name":"GFST_SIZE","features":[42]},{"name":"GLPS_CLOSED","features":[42]},{"name":"GLPS_OPENED","features":[42]},{"name":"GLYPHFONTSIZINGTYPE","features":[42]},{"name":"GLYPHSTATES","features":[42]},{"name":"GLYPHTYPE","features":[42]},{"name":"GMR_DAYSTATE","features":[42]},{"name":"GMR_VISIBLE","features":[42]},{"name":"GRIDCELLBACKGROUNDSTATES","features":[42]},{"name":"GRIDCELLSTATES","features":[42]},{"name":"GRIDCELLUPPERSTATES","features":[42]},{"name":"GRIPPERSTATES","features":[42]},{"name":"GROUPBOXSTATES","features":[42]},{"name":"GROUPHEADERLINESTATES","features":[42]},{"name":"GROUPHEADERSTATES","features":[42]},{"name":"GT_FONTGLYPH","features":[42]},{"name":"GT_IMAGEGLYPH","features":[42]},{"name":"GT_NONE","features":[42]},{"name":"GetBufferedPaintBits","features":[14,42]},{"name":"GetBufferedPaintDC","features":[14,42]},{"name":"GetBufferedPaintTargetDC","features":[14,42]},{"name":"GetBufferedPaintTargetRect","features":[3,42]},{"name":"GetComboBoxInfo","features":[3,42]},{"name":"GetCurrentThemeName","features":[42]},{"name":"GetEffectiveClientRect","features":[3,42]},{"name":"GetListBoxInfo","features":[3,42]},{"name":"GetMUILanguage","features":[42]},{"name":"GetThemeAnimationProperty","features":[42]},{"name":"GetThemeAnimationTransform","features":[42]},{"name":"GetThemeAppProperties","features":[42]},{"name":"GetThemeBackgroundContentRect","features":[3,14,42]},{"name":"GetThemeBackgroundExtent","features":[3,14,42]},{"name":"GetThemeBackgroundRegion","features":[3,14,42]},{"name":"GetThemeBitmap","features":[14,42]},{"name":"GetThemeBool","features":[3,42]},{"name":"GetThemeColor","features":[3,42]},{"name":"GetThemeDocumentationProperty","features":[42]},{"name":"GetThemeEnumValue","features":[42]},{"name":"GetThemeFilename","features":[42]},{"name":"GetThemeFont","features":[14,42]},{"name":"GetThemeInt","features":[42]},{"name":"GetThemeIntList","features":[42]},{"name":"GetThemeMargins","features":[3,14,42]},{"name":"GetThemeMetric","features":[14,42]},{"name":"GetThemePartSize","features":[3,14,42]},{"name":"GetThemePosition","features":[3,42]},{"name":"GetThemePropertyOrigin","features":[42]},{"name":"GetThemeRect","features":[3,42]},{"name":"GetThemeStream","features":[3,42]},{"name":"GetThemeString","features":[42]},{"name":"GetThemeSysBool","features":[3,42]},{"name":"GetThemeSysColor","features":[3,42]},{"name":"GetThemeSysColorBrush","features":[14,42]},{"name":"GetThemeSysFont","features":[14,42]},{"name":"GetThemeSysInt","features":[42]},{"name":"GetThemeSysSize","features":[42]},{"name":"GetThemeSysString","features":[42]},{"name":"GetThemeTextExtent","features":[3,14,42]},{"name":"GetThemeTextMetrics","features":[14,42]},{"name":"GetThemeTimingFunction","features":[42]},{"name":"GetThemeTransitionDuration","features":[42]},{"name":"GetWindowFeedbackSetting","features":[3,42]},{"name":"GetWindowTheme","features":[3,42]},{"name":"HALIGN","features":[42]},{"name":"HA_CENTER","features":[42]},{"name":"HA_LEFT","features":[42]},{"name":"HA_RIGHT","features":[42]},{"name":"HBG_DETAILS","features":[42]},{"name":"HBG_ICON","features":[42]},{"name":"HBS_DISABLED","features":[42]},{"name":"HBS_HOT","features":[42]},{"name":"HBS_NORMAL","features":[42]},{"name":"HBS_PUSHED","features":[42]},{"name":"HDDFS_HOT","features":[42]},{"name":"HDDFS_NORMAL","features":[42]},{"name":"HDDFS_SOFTHOT","features":[42]},{"name":"HDDS_HOT","features":[42]},{"name":"HDDS_NORMAL","features":[42]},{"name":"HDDS_SOFTHOT","features":[42]},{"name":"HDFT_HASNOVALUE","features":[42]},{"name":"HDFT_ISDATE","features":[42]},{"name":"HDFT_ISNUMBER","features":[42]},{"name":"HDFT_ISSTRING","features":[42]},{"name":"HDF_BITMAP","features":[42]},{"name":"HDF_BITMAP_ON_RIGHT","features":[42]},{"name":"HDF_CENTER","features":[42]},{"name":"HDF_CHECKBOX","features":[42]},{"name":"HDF_CHECKED","features":[42]},{"name":"HDF_FIXEDWIDTH","features":[42]},{"name":"HDF_IMAGE","features":[42]},{"name":"HDF_JUSTIFYMASK","features":[42]},{"name":"HDF_LEFT","features":[42]},{"name":"HDF_OWNERDRAW","features":[42]},{"name":"HDF_RIGHT","features":[42]},{"name":"HDF_RTLREADING","features":[42]},{"name":"HDF_SORTDOWN","features":[42]},{"name":"HDF_SORTUP","features":[42]},{"name":"HDF_SPLITBUTTON","features":[42]},{"name":"HDF_STRING","features":[42]},{"name":"HDHITTESTINFO","features":[3,42]},{"name":"HDIS_FOCUSED","features":[42]},{"name":"HDITEMA","features":[3,14,42]},{"name":"HDITEMW","features":[3,14,42]},{"name":"HDI_BITMAP","features":[42]},{"name":"HDI_DI_SETITEM","features":[42]},{"name":"HDI_FILTER","features":[42]},{"name":"HDI_FORMAT","features":[42]},{"name":"HDI_HEIGHT","features":[42]},{"name":"HDI_IMAGE","features":[42]},{"name":"HDI_LPARAM","features":[42]},{"name":"HDI_MASK","features":[42]},{"name":"HDI_ORDER","features":[42]},{"name":"HDI_STATE","features":[42]},{"name":"HDI_TEXT","features":[42]},{"name":"HDI_WIDTH","features":[42]},{"name":"HDLAYOUT","features":[3,42,52]},{"name":"HDM_CLEARFILTER","features":[42]},{"name":"HDM_CREATEDRAGIMAGE","features":[42]},{"name":"HDM_DELETEITEM","features":[42]},{"name":"HDM_EDITFILTER","features":[42]},{"name":"HDM_FIRST","features":[42]},{"name":"HDM_GETBITMAPMARGIN","features":[42]},{"name":"HDM_GETFOCUSEDITEM","features":[42]},{"name":"HDM_GETIMAGELIST","features":[42]},{"name":"HDM_GETITEM","features":[42]},{"name":"HDM_GETITEMA","features":[42]},{"name":"HDM_GETITEMCOUNT","features":[42]},{"name":"HDM_GETITEMDROPDOWNRECT","features":[42]},{"name":"HDM_GETITEMRECT","features":[42]},{"name":"HDM_GETITEMW","features":[42]},{"name":"HDM_GETORDERARRAY","features":[42]},{"name":"HDM_GETOVERFLOWRECT","features":[42]},{"name":"HDM_GETUNICODEFORMAT","features":[42]},{"name":"HDM_HITTEST","features":[42]},{"name":"HDM_INSERTITEM","features":[42]},{"name":"HDM_INSERTITEMA","features":[42]},{"name":"HDM_INSERTITEMW","features":[42]},{"name":"HDM_LAYOUT","features":[42]},{"name":"HDM_ORDERTOINDEX","features":[42]},{"name":"HDM_SETBITMAPMARGIN","features":[42]},{"name":"HDM_SETFILTERCHANGETIMEOUT","features":[42]},{"name":"HDM_SETFOCUSEDITEM","features":[42]},{"name":"HDM_SETHOTDIVIDER","features":[42]},{"name":"HDM_SETIMAGELIST","features":[42]},{"name":"HDM_SETITEM","features":[42]},{"name":"HDM_SETITEMA","features":[42]},{"name":"HDM_SETITEMW","features":[42]},{"name":"HDM_SETORDERARRAY","features":[42]},{"name":"HDM_SETUNICODEFORMAT","features":[42]},{"name":"HDN_BEGINDRAG","features":[42]},{"name":"HDN_BEGINFILTEREDIT","features":[42]},{"name":"HDN_BEGINTRACK","features":[42]},{"name":"HDN_BEGINTRACKA","features":[42]},{"name":"HDN_BEGINTRACKW","features":[42]},{"name":"HDN_DIVIDERDBLCLICK","features":[42]},{"name":"HDN_DIVIDERDBLCLICKA","features":[42]},{"name":"HDN_DIVIDERDBLCLICKW","features":[42]},{"name":"HDN_DROPDOWN","features":[42]},{"name":"HDN_ENDDRAG","features":[42]},{"name":"HDN_ENDFILTEREDIT","features":[42]},{"name":"HDN_ENDTRACK","features":[42]},{"name":"HDN_ENDTRACKA","features":[42]},{"name":"HDN_ENDTRACKW","features":[42]},{"name":"HDN_FILTERBTNCLICK","features":[42]},{"name":"HDN_FILTERCHANGE","features":[42]},{"name":"HDN_FIRST","features":[42]},{"name":"HDN_GETDISPINFO","features":[42]},{"name":"HDN_GETDISPINFOA","features":[42]},{"name":"HDN_GETDISPINFOW","features":[42]},{"name":"HDN_ITEMCHANGED","features":[42]},{"name":"HDN_ITEMCHANGEDA","features":[42]},{"name":"HDN_ITEMCHANGEDW","features":[42]},{"name":"HDN_ITEMCHANGING","features":[42]},{"name":"HDN_ITEMCHANGINGA","features":[42]},{"name":"HDN_ITEMCHANGINGW","features":[42]},{"name":"HDN_ITEMCLICK","features":[42]},{"name":"HDN_ITEMCLICKA","features":[42]},{"name":"HDN_ITEMCLICKW","features":[42]},{"name":"HDN_ITEMDBLCLICK","features":[42]},{"name":"HDN_ITEMDBLCLICKA","features":[42]},{"name":"HDN_ITEMDBLCLICKW","features":[42]},{"name":"HDN_ITEMKEYDOWN","features":[42]},{"name":"HDN_ITEMSTATEICONCLICK","features":[42]},{"name":"HDN_LAST","features":[42]},{"name":"HDN_OVERFLOWCLICK","features":[42]},{"name":"HDN_TRACK","features":[42]},{"name":"HDN_TRACKA","features":[42]},{"name":"HDN_TRACKW","features":[42]},{"name":"HDPA","features":[42]},{"name":"HDSA","features":[42]},{"name":"HDSIL_NORMAL","features":[42]},{"name":"HDSIL_STATE","features":[42]},{"name":"HDS_BUTTONS","features":[42]},{"name":"HDS_CHECKBOXES","features":[42]},{"name":"HDS_DRAGDROP","features":[42]},{"name":"HDS_FILTERBAR","features":[42]},{"name":"HDS_FLAT","features":[42]},{"name":"HDS_FULLDRAG","features":[42]},{"name":"HDS_HIDDEN","features":[42]},{"name":"HDS_HORZ","features":[42]},{"name":"HDS_HOTTRACK","features":[42]},{"name":"HDS_NOSIZING","features":[42]},{"name":"HDS_OVERFLOW","features":[42]},{"name":"HD_TEXTFILTERA","features":[42]},{"name":"HD_TEXTFILTERW","features":[42]},{"name":"HEADERAREASTATES","features":[42]},{"name":"HEADERCLOSESTATES","features":[42]},{"name":"HEADERDROPDOWNFILTERSTATES","features":[42]},{"name":"HEADERDROPDOWNSTATES","features":[42]},{"name":"HEADERITEMLEFTSTATES","features":[42]},{"name":"HEADERITEMRIGHTSTATES","features":[42]},{"name":"HEADERITEMSTATES","features":[42]},{"name":"HEADEROVERFLOWSTATES","features":[42]},{"name":"HEADERPARTS","features":[42]},{"name":"HEADERPINSTATES","features":[42]},{"name":"HEADERSORTARROWSTATES","features":[42]},{"name":"HEADERSTYLESTATES","features":[42]},{"name":"HEADER_CONTROL_FORMAT_FLAGS","features":[42]},{"name":"HEADER_CONTROL_FORMAT_STATE","features":[42]},{"name":"HEADER_CONTROL_FORMAT_TYPE","features":[42]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON","features":[42]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_LEFT","features":[42]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_MIDDLE","features":[42]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_RIGHT","features":[42]},{"name":"HEADER_HITTEST_INFO_FLAGS","features":[42]},{"name":"HELPBUTTONSTATES","features":[42]},{"name":"HELPLINKSTATES","features":[42]},{"name":"HGLPS_CLOSED","features":[42]},{"name":"HGLPS_OPENED","features":[42]},{"name":"HHT_ABOVE","features":[42]},{"name":"HHT_BELOW","features":[42]},{"name":"HHT_NOWHERE","features":[42]},{"name":"HHT_ONDIVIDER","features":[42]},{"name":"HHT_ONDIVOPEN","features":[42]},{"name":"HHT_ONDROPDOWN","features":[42]},{"name":"HHT_ONFILTER","features":[42]},{"name":"HHT_ONFILTERBUTTON","features":[42]},{"name":"HHT_ONHEADER","features":[42]},{"name":"HHT_ONITEMSTATEICON","features":[42]},{"name":"HHT_ONOVERFLOW","features":[42]},{"name":"HHT_TOLEFT","features":[42]},{"name":"HHT_TORIGHT","features":[42]},{"name":"HICF_ACCELERATOR","features":[42]},{"name":"HICF_ARROWKEYS","features":[42]},{"name":"HICF_DUPACCEL","features":[42]},{"name":"HICF_ENTERING","features":[42]},{"name":"HICF_LEAVING","features":[42]},{"name":"HICF_LMOUSE","features":[42]},{"name":"HICF_MOUSE","features":[42]},{"name":"HICF_OTHER","features":[42]},{"name":"HICF_RESELECT","features":[42]},{"name":"HICF_TOGGLEDROPDOWN","features":[42]},{"name":"HILS_HOT","features":[42]},{"name":"HILS_NORMAL","features":[42]},{"name":"HILS_PRESSED","features":[42]},{"name":"HIMAGELIST","features":[42]},{"name":"HIMAGELIST_QueryInterface","features":[42]},{"name":"HIRS_HOT","features":[42]},{"name":"HIRS_NORMAL","features":[42]},{"name":"HIRS_PRESSED","features":[42]},{"name":"HIST_ADDTOFAVORITES","features":[42]},{"name":"HIST_BACK","features":[42]},{"name":"HIST_FAVORITES","features":[42]},{"name":"HIST_FORWARD","features":[42]},{"name":"HIST_VIEWTREE","features":[42]},{"name":"HIS_HOT","features":[42]},{"name":"HIS_ICONHOT","features":[42]},{"name":"HIS_ICONNORMAL","features":[42]},{"name":"HIS_ICONPRESSED","features":[42]},{"name":"HIS_ICONSORTEDHOT","features":[42]},{"name":"HIS_ICONSORTEDNORMAL","features":[42]},{"name":"HIS_ICONSORTEDPRESSED","features":[42]},{"name":"HIS_NORMAL","features":[42]},{"name":"HIS_PRESSED","features":[42]},{"name":"HIS_SORTEDHOT","features":[42]},{"name":"HIS_SORTEDNORMAL","features":[42]},{"name":"HIS_SORTEDPRESSED","features":[42]},{"name":"HIT_TEST_BACKGROUND_OPTIONS","features":[42]},{"name":"HKCOMB_A","features":[42]},{"name":"HKCOMB_C","features":[42]},{"name":"HKCOMB_CA","features":[42]},{"name":"HKCOMB_NONE","features":[42]},{"name":"HKCOMB_S","features":[42]},{"name":"HKCOMB_SA","features":[42]},{"name":"HKCOMB_SC","features":[42]},{"name":"HKCOMB_SCA","features":[42]},{"name":"HKM_GETHOTKEY","features":[42]},{"name":"HKM_SETHOTKEY","features":[42]},{"name":"HKM_SETRULES","features":[42]},{"name":"HLS_LINKTEXT","features":[42]},{"name":"HLS_NORMALTEXT","features":[42]},{"name":"HOFS_HOT","features":[42]},{"name":"HOFS_NORMAL","features":[42]},{"name":"HORZSCROLLSTATES","features":[42]},{"name":"HORZTHUMBSTATES","features":[42]},{"name":"HOTGLYPHSTATES","features":[42]},{"name":"HOTKEYF_ALT","features":[42]},{"name":"HOTKEYF_CONTROL","features":[42]},{"name":"HOTKEYF_EXT","features":[42]},{"name":"HOTKEYF_SHIFT","features":[42]},{"name":"HOTKEY_CLASS","features":[42]},{"name":"HOTKEY_CLASSA","features":[42]},{"name":"HOTKEY_CLASSW","features":[42]},{"name":"HOVERBACKGROUNDSTATES","features":[42]},{"name":"HOVER_DEFAULT","features":[42]},{"name":"HPROPSHEETPAGE","features":[42]},{"name":"HP_HEADERDROPDOWN","features":[42]},{"name":"HP_HEADERDROPDOWNFILTER","features":[42]},{"name":"HP_HEADERITEM","features":[42]},{"name":"HP_HEADERITEMLEFT","features":[42]},{"name":"HP_HEADERITEMRIGHT","features":[42]},{"name":"HP_HEADEROVERFLOW","features":[42]},{"name":"HP_HEADERSORTARROW","features":[42]},{"name":"HSAS_SORTEDDOWN","features":[42]},{"name":"HSAS_SORTEDUP","features":[42]},{"name":"HSS_DISABLED","features":[42]},{"name":"HSS_HOT","features":[42]},{"name":"HSS_NORMAL","features":[42]},{"name":"HSS_PUSHED","features":[42]},{"name":"HSYNTHETICPOINTERDEVICE","features":[42]},{"name":"HTHEME","features":[42]},{"name":"HTREEITEM","features":[42]},{"name":"HTS_DISABLED","features":[42]},{"name":"HTS_HOT","features":[42]},{"name":"HTS_NORMAL","features":[42]},{"name":"HTS_PUSHED","features":[42]},{"name":"HTTB_BACKGROUNDSEG","features":[42]},{"name":"HTTB_CAPTION","features":[42]},{"name":"HTTB_FIXEDBORDER","features":[42]},{"name":"HTTB_RESIZINGBORDER","features":[42]},{"name":"HTTB_RESIZINGBORDER_BOTTOM","features":[42]},{"name":"HTTB_RESIZINGBORDER_LEFT","features":[42]},{"name":"HTTB_RESIZINGBORDER_RIGHT","features":[42]},{"name":"HTTB_RESIZINGBORDER_TOP","features":[42]},{"name":"HTTB_SIZINGTEMPLATE","features":[42]},{"name":"HTTB_SYSTEMSIZINGMARGINS","features":[42]},{"name":"HYPERLINKSTATES","features":[42]},{"name":"HYPERLINKTEXTSTATES","features":[42]},{"name":"HitTestThemeBackground","features":[3,14,42]},{"name":"ICC_ANIMATE_CLASS","features":[42]},{"name":"ICC_BAR_CLASSES","features":[42]},{"name":"ICC_COOL_CLASSES","features":[42]},{"name":"ICC_DATE_CLASSES","features":[42]},{"name":"ICC_HOTKEY_CLASS","features":[42]},{"name":"ICC_INTERNET_CLASSES","features":[42]},{"name":"ICC_LINK_CLASS","features":[42]},{"name":"ICC_LISTVIEW_CLASSES","features":[42]},{"name":"ICC_NATIVEFNTCTL_CLASS","features":[42]},{"name":"ICC_PAGESCROLLER_CLASS","features":[42]},{"name":"ICC_PROGRESS_CLASS","features":[42]},{"name":"ICC_STANDARD_CLASSES","features":[42]},{"name":"ICC_TAB_CLASSES","features":[42]},{"name":"ICC_TREEVIEW_CLASSES","features":[42]},{"name":"ICC_UPDOWN_CLASS","features":[42]},{"name":"ICC_USEREX_CLASSES","features":[42]},{"name":"ICC_WIN95_CLASSES","features":[42]},{"name":"ICE_ALPHA","features":[42]},{"name":"ICE_GLOW","features":[42]},{"name":"ICE_NONE","features":[42]},{"name":"ICE_PULSE","features":[42]},{"name":"ICE_SHADOW","features":[42]},{"name":"ICONEFFECT","features":[42]},{"name":"IDB_HIST_DISABLED","features":[42]},{"name":"IDB_HIST_HOT","features":[42]},{"name":"IDB_HIST_LARGE_COLOR","features":[42]},{"name":"IDB_HIST_NORMAL","features":[42]},{"name":"IDB_HIST_PRESSED","features":[42]},{"name":"IDB_HIST_SMALL_COLOR","features":[42]},{"name":"IDB_STD_LARGE_COLOR","features":[42]},{"name":"IDB_STD_SMALL_COLOR","features":[42]},{"name":"IDB_VIEW_LARGE_COLOR","features":[42]},{"name":"IDB_VIEW_SMALL_COLOR","features":[42]},{"name":"IDC_MANAGE_LINK","features":[42]},{"name":"ID_PSRESTARTWINDOWS","features":[42]},{"name":"IEBARMENUSTATES","features":[42]},{"name":"IImageList","features":[42]},{"name":"IImageList2","features":[42]},{"name":"ILCF_MOVE","features":[42]},{"name":"ILCF_SWAP","features":[42]},{"name":"ILC_COLOR","features":[42]},{"name":"ILC_COLOR16","features":[42]},{"name":"ILC_COLOR24","features":[42]},{"name":"ILC_COLOR32","features":[42]},{"name":"ILC_COLOR4","features":[42]},{"name":"ILC_COLOR8","features":[42]},{"name":"ILC_COLORDDB","features":[42]},{"name":"ILC_HIGHQUALITYSCALE","features":[42]},{"name":"ILC_MASK","features":[42]},{"name":"ILC_MIRROR","features":[42]},{"name":"ILC_ORIGINALSIZE","features":[42]},{"name":"ILC_PALETTE","features":[42]},{"name":"ILC_PERITEMMIRROR","features":[42]},{"name":"ILDI_PURGE","features":[42]},{"name":"ILDI_QUERYACCESS","features":[42]},{"name":"ILDI_RESETACCESS","features":[42]},{"name":"ILDI_STANDBY","features":[42]},{"name":"ILDRF_IMAGELOWQUALITY","features":[42]},{"name":"ILDRF_OVERLAYLOWQUALITY","features":[42]},{"name":"ILD_ASYNC","features":[42]},{"name":"ILD_BLEND","features":[42]},{"name":"ILD_BLEND25","features":[42]},{"name":"ILD_BLEND50","features":[42]},{"name":"ILD_DPISCALE","features":[42]},{"name":"ILD_FOCUS","features":[42]},{"name":"ILD_IMAGE","features":[42]},{"name":"ILD_MASK","features":[42]},{"name":"ILD_NORMAL","features":[42]},{"name":"ILD_OVERLAYMASK","features":[42]},{"name":"ILD_PRESERVEALPHA","features":[42]},{"name":"ILD_ROP","features":[42]},{"name":"ILD_SCALE","features":[42]},{"name":"ILD_SELECTED","features":[42]},{"name":"ILD_TRANSPARENT","features":[42]},{"name":"ILFIP_ALWAYS","features":[42]},{"name":"ILFIP_FROMSTANDBY","features":[42]},{"name":"ILGOS_ALWAYS","features":[42]},{"name":"ILGOS_FROMSTANDBY","features":[42]},{"name":"ILGT_ASYNC","features":[42]},{"name":"ILGT_NORMAL","features":[42]},{"name":"ILIF_ALPHA","features":[42]},{"name":"ILIF_LOWQUALITY","features":[42]},{"name":"ILP_DOWNLEVEL","features":[42]},{"name":"ILP_NORMAL","features":[42]},{"name":"ILR_DEFAULT","features":[42]},{"name":"ILR_HORIZONTAL_CENTER","features":[42]},{"name":"ILR_HORIZONTAL_LEFT","features":[42]},{"name":"ILR_HORIZONTAL_RIGHT","features":[42]},{"name":"ILR_SCALE_ASPECTRATIO","features":[42]},{"name":"ILR_SCALE_CLIP","features":[42]},{"name":"ILR_VERTICAL_BOTTOM","features":[42]},{"name":"ILR_VERTICAL_CENTER","features":[42]},{"name":"ILR_VERTICAL_TOP","features":[42]},{"name":"ILS_ALPHA","features":[42]},{"name":"ILS_GLOW","features":[42]},{"name":"ILS_NORMAL","features":[42]},{"name":"ILS_SATURATE","features":[42]},{"name":"ILS_SHADOW","features":[42]},{"name":"IL_HORIZONTAL","features":[42]},{"name":"IL_VERTICAL","features":[42]},{"name":"IMAGEINFO","features":[3,14,42]},{"name":"IMAGELAYOUT","features":[42]},{"name":"IMAGELISTDRAWPARAMS","features":[3,14,42]},{"name":"IMAGELISTSTATS","features":[42]},{"name":"IMAGELIST_CREATION_FLAGS","features":[42]},{"name":"IMAGESELECTTYPE","features":[42]},{"name":"IMAGE_LIST_COPY_FLAGS","features":[42]},{"name":"IMAGE_LIST_DRAW_STYLE","features":[42]},{"name":"IMAGE_LIST_ITEM_FLAGS","features":[42]},{"name":"IMAGE_LIST_WRITE_STREAM_FLAGS","features":[42]},{"name":"INFOTIPSIZE","features":[42]},{"name":"INITCOMMONCONTROLSEX","features":[42]},{"name":"INITCOMMONCONTROLSEX_ICC","features":[42]},{"name":"INTLIST","features":[42]},{"name":"INVALID_LINK_INDEX","features":[42]},{"name":"IPM_CLEARADDRESS","features":[42]},{"name":"IPM_GETADDRESS","features":[42]},{"name":"IPM_ISBLANK","features":[42]},{"name":"IPM_SETADDRESS","features":[42]},{"name":"IPM_SETFOCUS","features":[42]},{"name":"IPM_SETRANGE","features":[42]},{"name":"IPN_FIELDCHANGED","features":[42]},{"name":"IPN_FIRST","features":[42]},{"name":"IPN_LAST","features":[42]},{"name":"IST_DPI","features":[42]},{"name":"IST_NONE","features":[42]},{"name":"IST_SIZE","features":[42]},{"name":"ITEMSTATES","features":[42]},{"name":"I_CHILDRENAUTO","features":[42]},{"name":"I_CHILDRENCALLBACK","features":[42]},{"name":"I_GROUPIDCALLBACK","features":[42]},{"name":"I_GROUPIDNONE","features":[42]},{"name":"I_IMAGECALLBACK","features":[42]},{"name":"I_IMAGENONE","features":[42]},{"name":"I_INDENTCALLBACK","features":[42]},{"name":"I_ONE_OR_MORE","features":[42]},{"name":"I_ZERO","features":[42]},{"name":"ImageList","features":[42]},{"name":"ImageList_Add","features":[14,42]},{"name":"ImageList_AddMasked","features":[3,14,42]},{"name":"ImageList_BeginDrag","features":[3,42]},{"name":"ImageList_CoCreateInstance","features":[42]},{"name":"ImageList_Copy","features":[3,42]},{"name":"ImageList_Create","features":[42]},{"name":"ImageList_Destroy","features":[3,42]},{"name":"ImageList_DragEnter","features":[3,42]},{"name":"ImageList_DragLeave","features":[3,42]},{"name":"ImageList_DragMove","features":[3,42]},{"name":"ImageList_DragShowNolock","features":[3,42]},{"name":"ImageList_Draw","features":[3,14,42]},{"name":"ImageList_DrawEx","features":[3,14,42]},{"name":"ImageList_DrawIndirect","features":[3,14,42]},{"name":"ImageList_Duplicate","features":[42]},{"name":"ImageList_EndDrag","features":[42]},{"name":"ImageList_GetBkColor","features":[3,42]},{"name":"ImageList_GetDragImage","features":[3,42]},{"name":"ImageList_GetIcon","features":[42,52]},{"name":"ImageList_GetIconSize","features":[3,42]},{"name":"ImageList_GetImageCount","features":[42]},{"name":"ImageList_GetImageInfo","features":[3,14,42]},{"name":"ImageList_LoadImageA","features":[3,42,52]},{"name":"ImageList_LoadImageW","features":[3,42,52]},{"name":"ImageList_Merge","features":[42]},{"name":"ImageList_Read","features":[42]},{"name":"ImageList_ReadEx","features":[42]},{"name":"ImageList_Remove","features":[3,42]},{"name":"ImageList_Replace","features":[3,14,42]},{"name":"ImageList_ReplaceIcon","features":[42,52]},{"name":"ImageList_SetBkColor","features":[3,42]},{"name":"ImageList_SetDragCursorImage","features":[3,42]},{"name":"ImageList_SetIconSize","features":[3,42]},{"name":"ImageList_SetImageCount","features":[3,42]},{"name":"ImageList_SetOverlayImage","features":[3,42]},{"name":"ImageList_Write","features":[3,42]},{"name":"ImageList_WriteEx","features":[42]},{"name":"InitCommonControls","features":[42]},{"name":"InitCommonControlsEx","features":[3,42]},{"name":"InitMUILanguage","features":[42]},{"name":"InitializeFlatSB","features":[3,42]},{"name":"IsAppThemed","features":[3,42]},{"name":"IsCharLowerW","features":[3,42]},{"name":"IsCompositionActive","features":[3,42]},{"name":"IsDlgButtonChecked","features":[3,42]},{"name":"IsThemeActive","features":[3,42]},{"name":"IsThemeBackgroundPartiallyTransparent","features":[3,42]},{"name":"IsThemeDialogTextureEnabled","features":[3,42]},{"name":"IsThemePartDefined","features":[3,42]},{"name":"LABELSTATES","features":[42]},{"name":"LBCP_BORDER_HSCROLL","features":[42]},{"name":"LBCP_BORDER_HVSCROLL","features":[42]},{"name":"LBCP_BORDER_NOSCROLL","features":[42]},{"name":"LBCP_BORDER_VSCROLL","features":[42]},{"name":"LBCP_ITEM","features":[42]},{"name":"LBItemFromPt","features":[3,42]},{"name":"LBPSHV_DISABLED","features":[42]},{"name":"LBPSHV_FOCUSED","features":[42]},{"name":"LBPSHV_HOT","features":[42]},{"name":"LBPSHV_NORMAL","features":[42]},{"name":"LBPSH_DISABLED","features":[42]},{"name":"LBPSH_FOCUSED","features":[42]},{"name":"LBPSH_HOT","features":[42]},{"name":"LBPSH_NORMAL","features":[42]},{"name":"LBPSI_HOT","features":[42]},{"name":"LBPSI_HOTSELECTED","features":[42]},{"name":"LBPSI_SELECTED","features":[42]},{"name":"LBPSI_SELECTEDNOTFOCUS","features":[42]},{"name":"LBPSN_DISABLED","features":[42]},{"name":"LBPSN_FOCUSED","features":[42]},{"name":"LBPSN_HOT","features":[42]},{"name":"LBPSN_NORMAL","features":[42]},{"name":"LBPSV_DISABLED","features":[42]},{"name":"LBPSV_FOCUSED","features":[42]},{"name":"LBPSV_HOT","features":[42]},{"name":"LBPSV_NORMAL","features":[42]},{"name":"LHITTESTINFO","features":[3,42]},{"name":"LIF_ITEMID","features":[42]},{"name":"LIF_ITEMINDEX","features":[42]},{"name":"LIF_STATE","features":[42]},{"name":"LIF_URL","features":[42]},{"name":"LIM_LARGE","features":[42]},{"name":"LIM_SMALL","features":[42]},{"name":"LINKHEADERSTATES","features":[42]},{"name":"LINKPARTS","features":[42]},{"name":"LINKSTATES","features":[42]},{"name":"LISS_DISABLED","features":[42]},{"name":"LISS_HOT","features":[42]},{"name":"LISS_HOTSELECTED","features":[42]},{"name":"LISS_NORMAL","features":[42]},{"name":"LISS_SELECTED","features":[42]},{"name":"LISS_SELECTEDNOTFOCUS","features":[42]},{"name":"LISTBOXPARTS","features":[42]},{"name":"LISTITEMSTATES","features":[42]},{"name":"LISTVIEWPARTS","features":[42]},{"name":"LIST_ITEM_FLAGS","features":[42]},{"name":"LIST_ITEM_STATE_FLAGS","features":[42]},{"name":"LIST_VIEW_BACKGROUND_IMAGE_FLAGS","features":[42]},{"name":"LIST_VIEW_GROUP_ALIGN_FLAGS","features":[42]},{"name":"LIST_VIEW_GROUP_STATE_FLAGS","features":[42]},{"name":"LIST_VIEW_ITEM_COLUMN_FORMAT_FLAGS","features":[42]},{"name":"LIST_VIEW_ITEM_FLAGS","features":[42]},{"name":"LIST_VIEW_ITEM_STATE_FLAGS","features":[42]},{"name":"LIS_DEFAULTCOLORS","features":[42]},{"name":"LIS_ENABLED","features":[42]},{"name":"LIS_FOCUSED","features":[42]},{"name":"LIS_HOTTRACK","features":[42]},{"name":"LIS_VISITED","features":[42]},{"name":"LITEM","features":[42]},{"name":"LM_GETIDEALHEIGHT","features":[42]},{"name":"LM_GETIDEALSIZE","features":[42]},{"name":"LM_GETITEM","features":[42]},{"name":"LM_HITTEST","features":[42]},{"name":"LM_SETITEM","features":[42]},{"name":"LOGOFFBUTTONSSTATES","features":[42]},{"name":"LPFNADDPROPSHEETPAGES","features":[3,42]},{"name":"LPFNCCINFOA","features":[3,14,42]},{"name":"LPFNCCINFOW","features":[3,14,42]},{"name":"LPFNCCSIZETOTEXTA","features":[14,42]},{"name":"LPFNCCSIZETOTEXTW","features":[14,42]},{"name":"LPFNCCSTYLEA","features":[3,42]},{"name":"LPFNCCSTYLEW","features":[3,42]},{"name":"LPFNPSPCALLBACKA","features":[3,14,42,52]},{"name":"LPFNPSPCALLBACKW","features":[3,14,42,52]},{"name":"LPFNSVADDPROPSHEETPAGE","features":[3,42]},{"name":"LP_HYPERLINK","features":[42]},{"name":"LVA_ALIGNLEFT","features":[42]},{"name":"LVA_ALIGNTOP","features":[42]},{"name":"LVA_DEFAULT","features":[42]},{"name":"LVA_SNAPTOGRID","features":[42]},{"name":"LVBKIF_FLAG_ALPHABLEND","features":[42]},{"name":"LVBKIF_FLAG_TILEOFFSET","features":[42]},{"name":"LVBKIF_SOURCE_HBITMAP","features":[42]},{"name":"LVBKIF_SOURCE_MASK","features":[42]},{"name":"LVBKIF_SOURCE_NONE","features":[42]},{"name":"LVBKIF_SOURCE_URL","features":[42]},{"name":"LVBKIF_STYLE_MASK","features":[42]},{"name":"LVBKIF_STYLE_NORMAL","features":[42]},{"name":"LVBKIF_STYLE_TILE","features":[42]},{"name":"LVBKIF_TYPE_WATERMARK","features":[42]},{"name":"LVBKIMAGEA","features":[14,42]},{"name":"LVBKIMAGEW","features":[14,42]},{"name":"LVCB_HOVER","features":[42]},{"name":"LVCB_NORMAL","features":[42]},{"name":"LVCB_PUSHED","features":[42]},{"name":"LVCDI_GROUP","features":[42]},{"name":"LVCDI_ITEM","features":[42]},{"name":"LVCDI_ITEMSLIST","features":[42]},{"name":"LVCDRF_NOGROUPFRAME","features":[42]},{"name":"LVCDRF_NOSELECT","features":[42]},{"name":"LVCFMT_BITMAP_ON_RIGHT","features":[42]},{"name":"LVCFMT_CENTER","features":[42]},{"name":"LVCFMT_COL_HAS_IMAGES","features":[42]},{"name":"LVCFMT_FILL","features":[42]},{"name":"LVCFMT_FIXED_RATIO","features":[42]},{"name":"LVCFMT_FIXED_WIDTH","features":[42]},{"name":"LVCFMT_IMAGE","features":[42]},{"name":"LVCFMT_JUSTIFYMASK","features":[42]},{"name":"LVCFMT_LEFT","features":[42]},{"name":"LVCFMT_LINE_BREAK","features":[42]},{"name":"LVCFMT_NO_DPI_SCALE","features":[42]},{"name":"LVCFMT_NO_TITLE","features":[42]},{"name":"LVCFMT_RIGHT","features":[42]},{"name":"LVCFMT_SPLITBUTTON","features":[42]},{"name":"LVCFMT_TILE_PLACEMENTMASK","features":[42]},{"name":"LVCFMT_WRAP","features":[42]},{"name":"LVCF_DEFAULTWIDTH","features":[42]},{"name":"LVCF_FMT","features":[42]},{"name":"LVCF_IDEALWIDTH","features":[42]},{"name":"LVCF_IMAGE","features":[42]},{"name":"LVCF_MINWIDTH","features":[42]},{"name":"LVCF_ORDER","features":[42]},{"name":"LVCF_SUBITEM","features":[42]},{"name":"LVCF_TEXT","features":[42]},{"name":"LVCF_WIDTH","features":[42]},{"name":"LVCOLUMNA","features":[42]},{"name":"LVCOLUMNW","features":[42]},{"name":"LVCOLUMNW_FORMAT","features":[42]},{"name":"LVCOLUMNW_MASK","features":[42]},{"name":"LVEB_HOVER","features":[42]},{"name":"LVEB_NORMAL","features":[42]},{"name":"LVEB_PUSHED","features":[42]},{"name":"LVFF_ITEMCOUNT","features":[42]},{"name":"LVFIF_STATE","features":[42]},{"name":"LVFIF_TEXT","features":[42]},{"name":"LVFINDINFOA","features":[3,42]},{"name":"LVFINDINFOW","features":[3,42]},{"name":"LVFINDINFOW_FLAGS","features":[42]},{"name":"LVFIS_FOCUSED","features":[42]},{"name":"LVFI_NEARESTXY","features":[42]},{"name":"LVFI_PARAM","features":[42]},{"name":"LVFI_PARTIAL","features":[42]},{"name":"LVFI_STRING","features":[42]},{"name":"LVFI_SUBSTRING","features":[42]},{"name":"LVFI_WRAP","features":[42]},{"name":"LVFOOTERINFO","features":[42]},{"name":"LVFOOTERITEM","features":[42]},{"name":"LVFOOTERITEM_MASK","features":[42]},{"name":"LVGA_FOOTER_CENTER","features":[42]},{"name":"LVGA_FOOTER_LEFT","features":[42]},{"name":"LVGA_FOOTER_RIGHT","features":[42]},{"name":"LVGA_HEADER_CENTER","features":[42]},{"name":"LVGA_HEADER_LEFT","features":[42]},{"name":"LVGA_HEADER_RIGHT","features":[42]},{"name":"LVGF_ALIGN","features":[42]},{"name":"LVGF_DESCRIPTIONBOTTOM","features":[42]},{"name":"LVGF_DESCRIPTIONTOP","features":[42]},{"name":"LVGF_EXTENDEDIMAGE","features":[42]},{"name":"LVGF_FOOTER","features":[42]},{"name":"LVGF_GROUPID","features":[42]},{"name":"LVGF_HEADER","features":[42]},{"name":"LVGF_ITEMS","features":[42]},{"name":"LVGF_NONE","features":[42]},{"name":"LVGF_STATE","features":[42]},{"name":"LVGF_SUBSET","features":[42]},{"name":"LVGF_SUBSETITEMS","features":[42]},{"name":"LVGF_SUBTITLE","features":[42]},{"name":"LVGF_TASK","features":[42]},{"name":"LVGF_TITLEIMAGE","features":[42]},{"name":"LVGGR_GROUP","features":[42]},{"name":"LVGGR_HEADER","features":[42]},{"name":"LVGGR_LABEL","features":[42]},{"name":"LVGGR_SUBSETLINK","features":[42]},{"name":"LVGHL_CLOSE","features":[42]},{"name":"LVGHL_CLOSEHOT","features":[42]},{"name":"LVGHL_CLOSEMIXEDSELECTION","features":[42]},{"name":"LVGHL_CLOSEMIXEDSELECTIONHOT","features":[42]},{"name":"LVGHL_CLOSESELECTED","features":[42]},{"name":"LVGHL_CLOSESELECTEDHOT","features":[42]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSED","features":[42]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSEDHOT","features":[42]},{"name":"LVGHL_OPEN","features":[42]},{"name":"LVGHL_OPENHOT","features":[42]},{"name":"LVGHL_OPENMIXEDSELECTION","features":[42]},{"name":"LVGHL_OPENMIXEDSELECTIONHOT","features":[42]},{"name":"LVGHL_OPENSELECTED","features":[42]},{"name":"LVGHL_OPENSELECTEDHOT","features":[42]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSED","features":[42]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSEDHOT","features":[42]},{"name":"LVGH_CLOSE","features":[42]},{"name":"LVGH_CLOSEHOT","features":[42]},{"name":"LVGH_CLOSEMIXEDSELECTION","features":[42]},{"name":"LVGH_CLOSEMIXEDSELECTIONHOT","features":[42]},{"name":"LVGH_CLOSESELECTED","features":[42]},{"name":"LVGH_CLOSESELECTEDHOT","features":[42]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSED","features":[42]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSEDHOT","features":[42]},{"name":"LVGH_OPEN","features":[42]},{"name":"LVGH_OPENHOT","features":[42]},{"name":"LVGH_OPENMIXEDSELECTION","features":[42]},{"name":"LVGH_OPENMIXEDSELECTIONHOT","features":[42]},{"name":"LVGH_OPENSELECTED","features":[42]},{"name":"LVGH_OPENSELECTEDHOT","features":[42]},{"name":"LVGH_OPENSELECTEDNOTFOCUSED","features":[42]},{"name":"LVGH_OPENSELECTEDNOTFOCUSEDHOT","features":[42]},{"name":"LVGIT_UNFOLDED","features":[42]},{"name":"LVGIT_ZERO","features":[42]},{"name":"LVGMF_BORDERCOLOR","features":[42]},{"name":"LVGMF_BORDERSIZE","features":[42]},{"name":"LVGMF_NONE","features":[42]},{"name":"LVGMF_TEXTCOLOR","features":[42]},{"name":"LVGROUP","features":[42]},{"name":"LVGROUPMETRICS","features":[3,42]},{"name":"LVGROUP_MASK","features":[42]},{"name":"LVGS_COLLAPSED","features":[42]},{"name":"LVGS_COLLAPSIBLE","features":[42]},{"name":"LVGS_FOCUSED","features":[42]},{"name":"LVGS_HIDDEN","features":[42]},{"name":"LVGS_NOHEADER","features":[42]},{"name":"LVGS_NORMAL","features":[42]},{"name":"LVGS_SELECTED","features":[42]},{"name":"LVGS_SUBSETED","features":[42]},{"name":"LVGS_SUBSETLINKFOCUSED","features":[42]},{"name":"LVHITTESTINFO","features":[3,42]},{"name":"LVHITTESTINFO_FLAGS","features":[42]},{"name":"LVHT_ABOVE","features":[42]},{"name":"LVHT_BELOW","features":[42]},{"name":"LVHT_EX_FOOTER","features":[42]},{"name":"LVHT_EX_GROUP","features":[42]},{"name":"LVHT_EX_GROUP_BACKGROUND","features":[42]},{"name":"LVHT_EX_GROUP_COLLAPSE","features":[42]},{"name":"LVHT_EX_GROUP_FOOTER","features":[42]},{"name":"LVHT_EX_GROUP_HEADER","features":[42]},{"name":"LVHT_EX_GROUP_STATEICON","features":[42]},{"name":"LVHT_EX_GROUP_SUBSETLINK","features":[42]},{"name":"LVHT_EX_ONCONTENTS","features":[42]},{"name":"LVHT_NOWHERE","features":[42]},{"name":"LVHT_ONITEMICON","features":[42]},{"name":"LVHT_ONITEMLABEL","features":[42]},{"name":"LVHT_ONITEMSTATEICON","features":[42]},{"name":"LVHT_TOLEFT","features":[42]},{"name":"LVHT_TORIGHT","features":[42]},{"name":"LVIF_COLFMT","features":[42]},{"name":"LVIF_COLUMNS","features":[42]},{"name":"LVIF_DI_SETITEM","features":[42]},{"name":"LVIF_GROUPID","features":[42]},{"name":"LVIF_IMAGE","features":[42]},{"name":"LVIF_INDENT","features":[42]},{"name":"LVIF_NORECOMPUTE","features":[42]},{"name":"LVIF_PARAM","features":[42]},{"name":"LVIF_STATE","features":[42]},{"name":"LVIF_TEXT","features":[42]},{"name":"LVIM_AFTER","features":[42]},{"name":"LVINSERTGROUPSORTED","features":[42]},{"name":"LVINSERTMARK","features":[42]},{"name":"LVIR_BOUNDS","features":[42]},{"name":"LVIR_ICON","features":[42]},{"name":"LVIR_LABEL","features":[42]},{"name":"LVIR_SELECTBOUNDS","features":[42]},{"name":"LVIS_ACTIVATING","features":[42]},{"name":"LVIS_CUT","features":[42]},{"name":"LVIS_DROPHILITED","features":[42]},{"name":"LVIS_FOCUSED","features":[42]},{"name":"LVIS_GLOW","features":[42]},{"name":"LVIS_OVERLAYMASK","features":[42]},{"name":"LVIS_SELECTED","features":[42]},{"name":"LVIS_STATEIMAGEMASK","features":[42]},{"name":"LVITEMA","features":[3,42]},{"name":"LVITEMA_GROUP_ID","features":[42]},{"name":"LVITEMINDEX","features":[42]},{"name":"LVITEMW","features":[3,42]},{"name":"LVKF_ALT","features":[42]},{"name":"LVKF_CONTROL","features":[42]},{"name":"LVKF_SHIFT","features":[42]},{"name":"LVM_APPROXIMATEVIEWRECT","features":[42]},{"name":"LVM_ARRANGE","features":[42]},{"name":"LVM_CANCELEDITLABEL","features":[42]},{"name":"LVM_CREATEDRAGIMAGE","features":[42]},{"name":"LVM_DELETEALLITEMS","features":[42]},{"name":"LVM_DELETECOLUMN","features":[42]},{"name":"LVM_DELETEITEM","features":[42]},{"name":"LVM_EDITLABEL","features":[42]},{"name":"LVM_EDITLABELA","features":[42]},{"name":"LVM_EDITLABELW","features":[42]},{"name":"LVM_ENABLEGROUPVIEW","features":[42]},{"name":"LVM_ENSUREVISIBLE","features":[42]},{"name":"LVM_FINDITEM","features":[42]},{"name":"LVM_FINDITEMA","features":[42]},{"name":"LVM_FINDITEMW","features":[42]},{"name":"LVM_FIRST","features":[42]},{"name":"LVM_GETBKCOLOR","features":[42]},{"name":"LVM_GETBKIMAGE","features":[42]},{"name":"LVM_GETBKIMAGEA","features":[42]},{"name":"LVM_GETBKIMAGEW","features":[42]},{"name":"LVM_GETCALLBACKMASK","features":[42]},{"name":"LVM_GETCOLUMN","features":[42]},{"name":"LVM_GETCOLUMNA","features":[42]},{"name":"LVM_GETCOLUMNORDERARRAY","features":[42]},{"name":"LVM_GETCOLUMNW","features":[42]},{"name":"LVM_GETCOLUMNWIDTH","features":[42]},{"name":"LVM_GETCOUNTPERPAGE","features":[42]},{"name":"LVM_GETEDITCONTROL","features":[42]},{"name":"LVM_GETEMPTYTEXT","features":[42]},{"name":"LVM_GETEXTENDEDLISTVIEWSTYLE","features":[42]},{"name":"LVM_GETFOCUSEDGROUP","features":[42]},{"name":"LVM_GETFOOTERINFO","features":[42]},{"name":"LVM_GETFOOTERITEM","features":[42]},{"name":"LVM_GETFOOTERITEMRECT","features":[42]},{"name":"LVM_GETFOOTERRECT","features":[42]},{"name":"LVM_GETGROUPCOUNT","features":[42]},{"name":"LVM_GETGROUPINFO","features":[42]},{"name":"LVM_GETGROUPINFOBYINDEX","features":[42]},{"name":"LVM_GETGROUPMETRICS","features":[42]},{"name":"LVM_GETGROUPRECT","features":[42]},{"name":"LVM_GETGROUPSTATE","features":[42]},{"name":"LVM_GETHEADER","features":[42]},{"name":"LVM_GETHOTCURSOR","features":[42]},{"name":"LVM_GETHOTITEM","features":[42]},{"name":"LVM_GETHOVERTIME","features":[42]},{"name":"LVM_GETIMAGELIST","features":[42]},{"name":"LVM_GETINSERTMARK","features":[42]},{"name":"LVM_GETINSERTMARKCOLOR","features":[42]},{"name":"LVM_GETINSERTMARKRECT","features":[42]},{"name":"LVM_GETISEARCHSTRING","features":[42]},{"name":"LVM_GETISEARCHSTRINGA","features":[42]},{"name":"LVM_GETISEARCHSTRINGW","features":[42]},{"name":"LVM_GETITEM","features":[42]},{"name":"LVM_GETITEMA","features":[42]},{"name":"LVM_GETITEMCOUNT","features":[42]},{"name":"LVM_GETITEMINDEXRECT","features":[42]},{"name":"LVM_GETITEMPOSITION","features":[42]},{"name":"LVM_GETITEMRECT","features":[42]},{"name":"LVM_GETITEMSPACING","features":[42]},{"name":"LVM_GETITEMSTATE","features":[42]},{"name":"LVM_GETITEMTEXT","features":[42]},{"name":"LVM_GETITEMTEXTA","features":[42]},{"name":"LVM_GETITEMTEXTW","features":[42]},{"name":"LVM_GETITEMW","features":[42]},{"name":"LVM_GETNEXTITEM","features":[42]},{"name":"LVM_GETNEXTITEMINDEX","features":[42]},{"name":"LVM_GETNUMBEROFWORKAREAS","features":[42]},{"name":"LVM_GETORIGIN","features":[42]},{"name":"LVM_GETOUTLINECOLOR","features":[42]},{"name":"LVM_GETSELECTEDCOLUMN","features":[42]},{"name":"LVM_GETSELECTEDCOUNT","features":[42]},{"name":"LVM_GETSELECTIONMARK","features":[42]},{"name":"LVM_GETSTRINGWIDTH","features":[42]},{"name":"LVM_GETSTRINGWIDTHA","features":[42]},{"name":"LVM_GETSTRINGWIDTHW","features":[42]},{"name":"LVM_GETSUBITEMRECT","features":[42]},{"name":"LVM_GETTEXTBKCOLOR","features":[42]},{"name":"LVM_GETTEXTCOLOR","features":[42]},{"name":"LVM_GETTILEINFO","features":[42]},{"name":"LVM_GETTILEVIEWINFO","features":[42]},{"name":"LVM_GETTOOLTIPS","features":[42]},{"name":"LVM_GETTOPINDEX","features":[42]},{"name":"LVM_GETUNICODEFORMAT","features":[42]},{"name":"LVM_GETVIEW","features":[42]},{"name":"LVM_GETVIEWRECT","features":[42]},{"name":"LVM_GETWORKAREAS","features":[42]},{"name":"LVM_HASGROUP","features":[42]},{"name":"LVM_HITTEST","features":[42]},{"name":"LVM_INSERTCOLUMN","features":[42]},{"name":"LVM_INSERTCOLUMNA","features":[42]},{"name":"LVM_INSERTCOLUMNW","features":[42]},{"name":"LVM_INSERTGROUP","features":[42]},{"name":"LVM_INSERTGROUPSORTED","features":[42]},{"name":"LVM_INSERTITEM","features":[42]},{"name":"LVM_INSERTITEMA","features":[42]},{"name":"LVM_INSERTITEMW","features":[42]},{"name":"LVM_INSERTMARKHITTEST","features":[42]},{"name":"LVM_ISGROUPVIEWENABLED","features":[42]},{"name":"LVM_ISITEMVISIBLE","features":[42]},{"name":"LVM_MAPIDTOINDEX","features":[42]},{"name":"LVM_MAPINDEXTOID","features":[42]},{"name":"LVM_MOVEGROUP","features":[42]},{"name":"LVM_MOVEITEMTOGROUP","features":[42]},{"name":"LVM_REDRAWITEMS","features":[42]},{"name":"LVM_REMOVEALLGROUPS","features":[42]},{"name":"LVM_REMOVEGROUP","features":[42]},{"name":"LVM_SCROLL","features":[42]},{"name":"LVM_SETBKCOLOR","features":[42]},{"name":"LVM_SETBKIMAGE","features":[42]},{"name":"LVM_SETBKIMAGEA","features":[42]},{"name":"LVM_SETBKIMAGEW","features":[42]},{"name":"LVM_SETCALLBACKMASK","features":[42]},{"name":"LVM_SETCOLUMN","features":[42]},{"name":"LVM_SETCOLUMNA","features":[42]},{"name":"LVM_SETCOLUMNORDERARRAY","features":[42]},{"name":"LVM_SETCOLUMNW","features":[42]},{"name":"LVM_SETCOLUMNWIDTH","features":[42]},{"name":"LVM_SETEXTENDEDLISTVIEWSTYLE","features":[42]},{"name":"LVM_SETGROUPINFO","features":[42]},{"name":"LVM_SETGROUPMETRICS","features":[42]},{"name":"LVM_SETHOTCURSOR","features":[42]},{"name":"LVM_SETHOTITEM","features":[42]},{"name":"LVM_SETHOVERTIME","features":[42]},{"name":"LVM_SETICONSPACING","features":[42]},{"name":"LVM_SETIMAGELIST","features":[42]},{"name":"LVM_SETINFOTIP","features":[42]},{"name":"LVM_SETINSERTMARK","features":[42]},{"name":"LVM_SETINSERTMARKCOLOR","features":[42]},{"name":"LVM_SETITEM","features":[42]},{"name":"LVM_SETITEMA","features":[42]},{"name":"LVM_SETITEMCOUNT","features":[42]},{"name":"LVM_SETITEMINDEXSTATE","features":[42]},{"name":"LVM_SETITEMPOSITION","features":[42]},{"name":"LVM_SETITEMPOSITION32","features":[42]},{"name":"LVM_SETITEMSTATE","features":[42]},{"name":"LVM_SETITEMTEXT","features":[42]},{"name":"LVM_SETITEMTEXTA","features":[42]},{"name":"LVM_SETITEMTEXTW","features":[42]},{"name":"LVM_SETITEMW","features":[42]},{"name":"LVM_SETOUTLINECOLOR","features":[42]},{"name":"LVM_SETSELECTEDCOLUMN","features":[42]},{"name":"LVM_SETSELECTIONMARK","features":[42]},{"name":"LVM_SETTEXTBKCOLOR","features":[42]},{"name":"LVM_SETTEXTCOLOR","features":[42]},{"name":"LVM_SETTILEINFO","features":[42]},{"name":"LVM_SETTILEVIEWINFO","features":[42]},{"name":"LVM_SETTOOLTIPS","features":[42]},{"name":"LVM_SETUNICODEFORMAT","features":[42]},{"name":"LVM_SETVIEW","features":[42]},{"name":"LVM_SETWORKAREAS","features":[42]},{"name":"LVM_SORTGROUPS","features":[42]},{"name":"LVM_SORTITEMS","features":[42]},{"name":"LVM_SORTITEMSEX","features":[42]},{"name":"LVM_SUBITEMHITTEST","features":[42]},{"name":"LVM_UPDATE","features":[42]},{"name":"LVNI_ABOVE","features":[42]},{"name":"LVNI_ALL","features":[42]},{"name":"LVNI_BELOW","features":[42]},{"name":"LVNI_CUT","features":[42]},{"name":"LVNI_DROPHILITED","features":[42]},{"name":"LVNI_FOCUSED","features":[42]},{"name":"LVNI_PREVIOUS","features":[42]},{"name":"LVNI_SAMEGROUPONLY","features":[42]},{"name":"LVNI_SELECTED","features":[42]},{"name":"LVNI_TOLEFT","features":[42]},{"name":"LVNI_TORIGHT","features":[42]},{"name":"LVNI_VISIBLEONLY","features":[42]},{"name":"LVNI_VISIBLEORDER","features":[42]},{"name":"LVNSCH_DEFAULT","features":[42]},{"name":"LVNSCH_ERROR","features":[42]},{"name":"LVNSCH_IGNORE","features":[42]},{"name":"LVN_BEGINDRAG","features":[42]},{"name":"LVN_BEGINLABELEDIT","features":[42]},{"name":"LVN_BEGINLABELEDITA","features":[42]},{"name":"LVN_BEGINLABELEDITW","features":[42]},{"name":"LVN_BEGINRDRAG","features":[42]},{"name":"LVN_BEGINSCROLL","features":[42]},{"name":"LVN_COLUMNCLICK","features":[42]},{"name":"LVN_COLUMNDROPDOWN","features":[42]},{"name":"LVN_COLUMNOVERFLOWCLICK","features":[42]},{"name":"LVN_DELETEALLITEMS","features":[42]},{"name":"LVN_DELETEITEM","features":[42]},{"name":"LVN_ENDLABELEDIT","features":[42]},{"name":"LVN_ENDLABELEDITA","features":[42]},{"name":"LVN_ENDLABELEDITW","features":[42]},{"name":"LVN_ENDSCROLL","features":[42]},{"name":"LVN_FIRST","features":[42]},{"name":"LVN_GETDISPINFO","features":[42]},{"name":"LVN_GETDISPINFOA","features":[42]},{"name":"LVN_GETDISPINFOW","features":[42]},{"name":"LVN_GETEMPTYMARKUP","features":[42]},{"name":"LVN_GETINFOTIP","features":[42]},{"name":"LVN_GETINFOTIPA","features":[42]},{"name":"LVN_GETINFOTIPW","features":[42]},{"name":"LVN_HOTTRACK","features":[42]},{"name":"LVN_INCREMENTALSEARCH","features":[42]},{"name":"LVN_INCREMENTALSEARCHA","features":[42]},{"name":"LVN_INCREMENTALSEARCHW","features":[42]},{"name":"LVN_INSERTITEM","features":[42]},{"name":"LVN_ITEMACTIVATE","features":[42]},{"name":"LVN_ITEMCHANGED","features":[42]},{"name":"LVN_ITEMCHANGING","features":[42]},{"name":"LVN_KEYDOWN","features":[42]},{"name":"LVN_LAST","features":[42]},{"name":"LVN_LINKCLICK","features":[42]},{"name":"LVN_MARQUEEBEGIN","features":[42]},{"name":"LVN_ODCACHEHINT","features":[42]},{"name":"LVN_ODFINDITEM","features":[42]},{"name":"LVN_ODFINDITEMA","features":[42]},{"name":"LVN_ODFINDITEMW","features":[42]},{"name":"LVN_ODSTATECHANGED","features":[42]},{"name":"LVN_SETDISPINFO","features":[42]},{"name":"LVN_SETDISPINFOA","features":[42]},{"name":"LVN_SETDISPINFOW","features":[42]},{"name":"LVP_COLLAPSEBUTTON","features":[42]},{"name":"LVP_COLUMNDETAIL","features":[42]},{"name":"LVP_EMPTYTEXT","features":[42]},{"name":"LVP_EXPANDBUTTON","features":[42]},{"name":"LVP_GROUPHEADER","features":[42]},{"name":"LVP_GROUPHEADERLINE","features":[42]},{"name":"LVP_LISTDETAIL","features":[42]},{"name":"LVP_LISTGROUP","features":[42]},{"name":"LVP_LISTITEM","features":[42]},{"name":"LVP_LISTSORTEDDETAIL","features":[42]},{"name":"LVSCW_AUTOSIZE","features":[42]},{"name":"LVSCW_AUTOSIZE_USEHEADER","features":[42]},{"name":"LVSETINFOTIP","features":[42]},{"name":"LVSICF_NOINVALIDATEALL","features":[42]},{"name":"LVSICF_NOSCROLL","features":[42]},{"name":"LVSIL_GROUPHEADER","features":[42]},{"name":"LVSIL_NORMAL","features":[42]},{"name":"LVSIL_SMALL","features":[42]},{"name":"LVSIL_STATE","features":[42]},{"name":"LVS_ALIGNLEFT","features":[42]},{"name":"LVS_ALIGNMASK","features":[42]},{"name":"LVS_ALIGNTOP","features":[42]},{"name":"LVS_AUTOARRANGE","features":[42]},{"name":"LVS_EDITLABELS","features":[42]},{"name":"LVS_EX_AUTOAUTOARRANGE","features":[42]},{"name":"LVS_EX_AUTOCHECKSELECT","features":[42]},{"name":"LVS_EX_AUTOSIZECOLUMNS","features":[42]},{"name":"LVS_EX_BORDERSELECT","features":[42]},{"name":"LVS_EX_CHECKBOXES","features":[42]},{"name":"LVS_EX_COLUMNOVERFLOW","features":[42]},{"name":"LVS_EX_COLUMNSNAPPOINTS","features":[42]},{"name":"LVS_EX_DOUBLEBUFFER","features":[42]},{"name":"LVS_EX_FLATSB","features":[42]},{"name":"LVS_EX_FULLROWSELECT","features":[42]},{"name":"LVS_EX_GRIDLINES","features":[42]},{"name":"LVS_EX_HEADERDRAGDROP","features":[42]},{"name":"LVS_EX_HEADERINALLVIEWS","features":[42]},{"name":"LVS_EX_HIDELABELS","features":[42]},{"name":"LVS_EX_INFOTIP","features":[42]},{"name":"LVS_EX_JUSTIFYCOLUMNS","features":[42]},{"name":"LVS_EX_LABELTIP","features":[42]},{"name":"LVS_EX_MULTIWORKAREAS","features":[42]},{"name":"LVS_EX_ONECLICKACTIVATE","features":[42]},{"name":"LVS_EX_REGIONAL","features":[42]},{"name":"LVS_EX_SIMPLESELECT","features":[42]},{"name":"LVS_EX_SINGLEROW","features":[42]},{"name":"LVS_EX_SNAPTOGRID","features":[42]},{"name":"LVS_EX_SUBITEMIMAGES","features":[42]},{"name":"LVS_EX_TRACKSELECT","features":[42]},{"name":"LVS_EX_TRANSPARENTBKGND","features":[42]},{"name":"LVS_EX_TRANSPARENTSHADOWTEXT","features":[42]},{"name":"LVS_EX_TWOCLICKACTIVATE","features":[42]},{"name":"LVS_EX_UNDERLINECOLD","features":[42]},{"name":"LVS_EX_UNDERLINEHOT","features":[42]},{"name":"LVS_ICON","features":[42]},{"name":"LVS_LIST","features":[42]},{"name":"LVS_NOCOLUMNHEADER","features":[42]},{"name":"LVS_NOLABELWRAP","features":[42]},{"name":"LVS_NOSCROLL","features":[42]},{"name":"LVS_NOSORTHEADER","features":[42]},{"name":"LVS_OWNERDATA","features":[42]},{"name":"LVS_OWNERDRAWFIXED","features":[42]},{"name":"LVS_REPORT","features":[42]},{"name":"LVS_SHAREIMAGELISTS","features":[42]},{"name":"LVS_SHOWSELALWAYS","features":[42]},{"name":"LVS_SINGLESEL","features":[42]},{"name":"LVS_SMALLICON","features":[42]},{"name":"LVS_SORTASCENDING","features":[42]},{"name":"LVS_SORTDESCENDING","features":[42]},{"name":"LVS_TYPEMASK","features":[42]},{"name":"LVS_TYPESTYLEMASK","features":[42]},{"name":"LVTILEINFO","features":[42]},{"name":"LVTILEVIEWINFO","features":[3,42]},{"name":"LVTILEVIEWINFO_FLAGS","features":[42]},{"name":"LVTILEVIEWINFO_MASK","features":[42]},{"name":"LVTVIF_AUTOSIZE","features":[42]},{"name":"LVTVIF_EXTENDED","features":[42]},{"name":"LVTVIF_FIXEDHEIGHT","features":[42]},{"name":"LVTVIF_FIXEDSIZE","features":[42]},{"name":"LVTVIF_FIXEDWIDTH","features":[42]},{"name":"LVTVIM_COLUMNS","features":[42]},{"name":"LVTVIM_LABELMARGIN","features":[42]},{"name":"LVTVIM_TILESIZE","features":[42]},{"name":"LV_MAX_WORKAREAS","features":[42]},{"name":"LV_VIEW_DETAILS","features":[42]},{"name":"LV_VIEW_ICON","features":[42]},{"name":"LV_VIEW_LIST","features":[42]},{"name":"LV_VIEW_MAX","features":[42]},{"name":"LV_VIEW_SMALLICON","features":[42]},{"name":"LV_VIEW_TILE","features":[42]},{"name":"LWS_IGNORERETURN","features":[42]},{"name":"LWS_NOPREFIX","features":[42]},{"name":"LWS_RIGHT","features":[42]},{"name":"LWS_TRANSPARENT","features":[42]},{"name":"LWS_USECUSTOMTEXT","features":[42]},{"name":"LWS_USEVISUALSTYLE","features":[42]},{"name":"LoadIconMetric","features":[3,42,52]},{"name":"LoadIconWithScaleDown","features":[3,42,52]},{"name":"MARGINS","features":[42]},{"name":"MARKUPTEXTSTATES","features":[42]},{"name":"MAXBS_DISABLED","features":[42]},{"name":"MAXBS_HOT","features":[42]},{"name":"MAXBS_NORMAL","features":[42]},{"name":"MAXBS_PUSHED","features":[42]},{"name":"MAXBUTTONSTATES","features":[42]},{"name":"MAXCAPTIONSTATES","features":[42]},{"name":"MAXPROPPAGES","features":[42]},{"name":"MAX_INTLIST_COUNT","features":[42]},{"name":"MAX_LINKID_TEXT","features":[42]},{"name":"MAX_THEMECOLOR","features":[42]},{"name":"MAX_THEMESIZE","features":[42]},{"name":"MBI_DISABLED","features":[42]},{"name":"MBI_DISABLEDHOT","features":[42]},{"name":"MBI_DISABLEDPUSHED","features":[42]},{"name":"MBI_HOT","features":[42]},{"name":"MBI_NORMAL","features":[42]},{"name":"MBI_PUSHED","features":[42]},{"name":"MB_ACTIVE","features":[42]},{"name":"MB_INACTIVE","features":[42]},{"name":"MCB_BITMAP","features":[42]},{"name":"MCB_DISABLED","features":[42]},{"name":"MCB_NORMAL","features":[42]},{"name":"MCGCB_HOT","features":[42]},{"name":"MCGCB_SELECTED","features":[42]},{"name":"MCGCB_SELECTEDHOT","features":[42]},{"name":"MCGCB_SELECTEDNOTFOCUSED","features":[42]},{"name":"MCGCB_TODAY","features":[42]},{"name":"MCGCB_TODAYSELECTED","features":[42]},{"name":"MCGCU_HASSTATE","features":[42]},{"name":"MCGCU_HASSTATEHOT","features":[42]},{"name":"MCGCU_HOT","features":[42]},{"name":"MCGCU_SELECTED","features":[42]},{"name":"MCGCU_SELECTEDHOT","features":[42]},{"name":"MCGC_HASSTATE","features":[42]},{"name":"MCGC_HASSTATEHOT","features":[42]},{"name":"MCGC_HOT","features":[42]},{"name":"MCGC_SELECTED","features":[42]},{"name":"MCGC_SELECTEDHOT","features":[42]},{"name":"MCGC_TODAY","features":[42]},{"name":"MCGC_TODAYSELECTED","features":[42]},{"name":"MCGIF_DATE","features":[42]},{"name":"MCGIF_NAME","features":[42]},{"name":"MCGIF_RECT","features":[42]},{"name":"MCGIP_CALENDAR","features":[42]},{"name":"MCGIP_CALENDARBODY","features":[42]},{"name":"MCGIP_CALENDARCELL","features":[42]},{"name":"MCGIP_CALENDARCONTROL","features":[42]},{"name":"MCGIP_CALENDARHEADER","features":[42]},{"name":"MCGIP_CALENDARROW","features":[42]},{"name":"MCGIP_FOOTER","features":[42]},{"name":"MCGIP_NEXT","features":[42]},{"name":"MCGIP_PREV","features":[42]},{"name":"MCGRIDINFO","features":[3,42]},{"name":"MCGRIDINFO_FLAGS","features":[42]},{"name":"MCGRIDINFO_PART","features":[42]},{"name":"MCHITTESTINFO","features":[3,42]},{"name":"MCHITTESTINFO_HIT_FLAGS","features":[42]},{"name":"MCHT_CALENDAR","features":[42]},{"name":"MCHT_CALENDARBK","features":[42]},{"name":"MCHT_CALENDARCONTROL","features":[42]},{"name":"MCHT_CALENDARDATE","features":[42]},{"name":"MCHT_CALENDARDATEMAX","features":[42]},{"name":"MCHT_CALENDARDATEMIN","features":[42]},{"name":"MCHT_CALENDARDATENEXT","features":[42]},{"name":"MCHT_CALENDARDATEPREV","features":[42]},{"name":"MCHT_CALENDARDAY","features":[42]},{"name":"MCHT_CALENDARWEEKNUM","features":[42]},{"name":"MCHT_NEXT","features":[42]},{"name":"MCHT_NOWHERE","features":[42]},{"name":"MCHT_PREV","features":[42]},{"name":"MCHT_TITLE","features":[42]},{"name":"MCHT_TITLEBK","features":[42]},{"name":"MCHT_TITLEBTNNEXT","features":[42]},{"name":"MCHT_TITLEBTNPREV","features":[42]},{"name":"MCHT_TITLEMONTH","features":[42]},{"name":"MCHT_TITLEYEAR","features":[42]},{"name":"MCHT_TODAYLINK","features":[42]},{"name":"MCMV_CENTURY","features":[42]},{"name":"MCMV_DECADE","features":[42]},{"name":"MCMV_MAX","features":[42]},{"name":"MCMV_MONTH","features":[42]},{"name":"MCMV_YEAR","features":[42]},{"name":"MCM_FIRST","features":[42]},{"name":"MCM_GETCALENDARBORDER","features":[42]},{"name":"MCM_GETCALENDARCOUNT","features":[42]},{"name":"MCM_GETCALENDARGRIDINFO","features":[42]},{"name":"MCM_GETCALID","features":[42]},{"name":"MCM_GETCOLOR","features":[42]},{"name":"MCM_GETCURRENTVIEW","features":[42]},{"name":"MCM_GETCURSEL","features":[42]},{"name":"MCM_GETFIRSTDAYOFWEEK","features":[42]},{"name":"MCM_GETMAXSELCOUNT","features":[42]},{"name":"MCM_GETMAXTODAYWIDTH","features":[42]},{"name":"MCM_GETMINREQRECT","features":[42]},{"name":"MCM_GETMONTHDELTA","features":[42]},{"name":"MCM_GETMONTHRANGE","features":[42]},{"name":"MCM_GETRANGE","features":[42]},{"name":"MCM_GETSELRANGE","features":[42]},{"name":"MCM_GETTODAY","features":[42]},{"name":"MCM_GETUNICODEFORMAT","features":[42]},{"name":"MCM_HITTEST","features":[42]},{"name":"MCM_SETCALENDARBORDER","features":[42]},{"name":"MCM_SETCALID","features":[42]},{"name":"MCM_SETCOLOR","features":[42]},{"name":"MCM_SETCURRENTVIEW","features":[42]},{"name":"MCM_SETCURSEL","features":[42]},{"name":"MCM_SETDAYSTATE","features":[42]},{"name":"MCM_SETFIRSTDAYOFWEEK","features":[42]},{"name":"MCM_SETMAXSELCOUNT","features":[42]},{"name":"MCM_SETMONTHDELTA","features":[42]},{"name":"MCM_SETRANGE","features":[42]},{"name":"MCM_SETSELRANGE","features":[42]},{"name":"MCM_SETTODAY","features":[42]},{"name":"MCM_SETUNICODEFORMAT","features":[42]},{"name":"MCM_SIZERECTTOMIN","features":[42]},{"name":"MCNN_DISABLED","features":[42]},{"name":"MCNN_HOT","features":[42]},{"name":"MCNN_NORMAL","features":[42]},{"name":"MCNN_PRESSED","features":[42]},{"name":"MCNP_DISABLED","features":[42]},{"name":"MCNP_HOT","features":[42]},{"name":"MCNP_NORMAL","features":[42]},{"name":"MCNP_PRESSED","features":[42]},{"name":"MCN_FIRST","features":[42]},{"name":"MCN_GETDAYSTATE","features":[42]},{"name":"MCN_LAST","features":[42]},{"name":"MCN_SELCHANGE","features":[42]},{"name":"MCN_SELECT","features":[42]},{"name":"MCN_VIEWCHANGE","features":[42]},{"name":"MCSC_BACKGROUND","features":[42]},{"name":"MCSC_MONTHBK","features":[42]},{"name":"MCSC_TEXT","features":[42]},{"name":"MCSC_TITLEBK","features":[42]},{"name":"MCSC_TITLETEXT","features":[42]},{"name":"MCSC_TRAILINGTEXT","features":[42]},{"name":"MCS_DAYSTATE","features":[42]},{"name":"MCS_MULTISELECT","features":[42]},{"name":"MCS_NOSELCHANGEONNAV","features":[42]},{"name":"MCS_NOTODAY","features":[42]},{"name":"MCS_NOTODAYCIRCLE","features":[42]},{"name":"MCS_NOTRAILINGDATES","features":[42]},{"name":"MCS_SHORTDAYSOFWEEK","features":[42]},{"name":"MCS_WEEKNUMBERS","features":[42]},{"name":"MCTGCU_HASSTATE","features":[42]},{"name":"MCTGCU_HASSTATEHOT","features":[42]},{"name":"MCTGCU_HOT","features":[42]},{"name":"MCTGCU_SELECTED","features":[42]},{"name":"MCTGCU_SELECTEDHOT","features":[42]},{"name":"MCTGC_HASSTATE","features":[42]},{"name":"MCTGC_HASSTATEHOT","features":[42]},{"name":"MCTGC_HOT","features":[42]},{"name":"MCTGC_SELECTED","features":[42]},{"name":"MCTGC_SELECTEDHOT","features":[42]},{"name":"MCTGC_TODAY","features":[42]},{"name":"MCTGC_TODAYSELECTED","features":[42]},{"name":"MC_BACKGROUND","features":[42]},{"name":"MC_BORDERS","features":[42]},{"name":"MC_BULLETDISABLED","features":[42]},{"name":"MC_BULLETNORMAL","features":[42]},{"name":"MC_CHECKMARKDISABLED","features":[42]},{"name":"MC_CHECKMARKNORMAL","features":[42]},{"name":"MC_COLHEADERSPLITTER","features":[42]},{"name":"MC_GRIDBACKGROUND","features":[42]},{"name":"MC_GRIDCELL","features":[42]},{"name":"MC_GRIDCELLBACKGROUND","features":[42]},{"name":"MC_GRIDCELLUPPER","features":[42]},{"name":"MC_NAVNEXT","features":[42]},{"name":"MC_NAVPREV","features":[42]},{"name":"MC_TRAILINGGRIDCELL","features":[42]},{"name":"MC_TRAILINGGRIDCELLUPPER","features":[42]},{"name":"MDCL_DISABLED","features":[42]},{"name":"MDCL_HOT","features":[42]},{"name":"MDCL_NORMAL","features":[42]},{"name":"MDCL_PUSHED","features":[42]},{"name":"MDICLOSEBUTTONSTATES","features":[42]},{"name":"MDIMINBUTTONSTATES","features":[42]},{"name":"MDIRESTOREBUTTONSTATES","features":[42]},{"name":"MDMI_DISABLED","features":[42]},{"name":"MDMI_HOT","features":[42]},{"name":"MDMI_NORMAL","features":[42]},{"name":"MDMI_PUSHED","features":[42]},{"name":"MDP_NEWAPPBUTTON","features":[42]},{"name":"MDP_SEPERATOR","features":[42]},{"name":"MDRE_DISABLED","features":[42]},{"name":"MDRE_HOT","features":[42]},{"name":"MDRE_NORMAL","features":[42]},{"name":"MDRE_PUSHED","features":[42]},{"name":"MDS_CHECKED","features":[42]},{"name":"MDS_DISABLED","features":[42]},{"name":"MDS_HOT","features":[42]},{"name":"MDS_HOTCHECKED","features":[42]},{"name":"MDS_NORMAL","features":[42]},{"name":"MDS_PRESSED","features":[42]},{"name":"MEASUREITEMSTRUCT","features":[42]},{"name":"MENUBANDPARTS","features":[42]},{"name":"MENUBANDSTATES","features":[42]},{"name":"MENUPARTS","features":[42]},{"name":"MENU_BARBACKGROUND","features":[42]},{"name":"MENU_BARITEM","features":[42]},{"name":"MENU_CHEVRON_TMSCHEMA","features":[42]},{"name":"MENU_MENUBARDROPDOWN_TMSCHEMA","features":[42]},{"name":"MENU_MENUBARITEM_TMSCHEMA","features":[42]},{"name":"MENU_MENUDROPDOWN_TMSCHEMA","features":[42]},{"name":"MENU_MENUITEM_TMSCHEMA","features":[42]},{"name":"MENU_POPUPBACKGROUND","features":[42]},{"name":"MENU_POPUPBORDERS","features":[42]},{"name":"MENU_POPUPCHECK","features":[42]},{"name":"MENU_POPUPCHECKBACKGROUND","features":[42]},{"name":"MENU_POPUPGUTTER","features":[42]},{"name":"MENU_POPUPITEM","features":[42]},{"name":"MENU_POPUPITEMKBFOCUS","features":[42]},{"name":"MENU_POPUPITEM_FOCUSABLE","features":[42]},{"name":"MENU_POPUPSEPARATOR","features":[42]},{"name":"MENU_POPUPSUBMENU","features":[42]},{"name":"MENU_POPUPSUBMENU_HCHOT","features":[42]},{"name":"MENU_SEPARATOR_TMSCHEMA","features":[42]},{"name":"MENU_SYSTEMCLOSE","features":[42]},{"name":"MENU_SYSTEMCLOSE_HCHOT","features":[42]},{"name":"MENU_SYSTEMMAXIMIZE","features":[42]},{"name":"MENU_SYSTEMMAXIMIZE_HCHOT","features":[42]},{"name":"MENU_SYSTEMMINIMIZE","features":[42]},{"name":"MENU_SYSTEMMINIMIZE_HCHOT","features":[42]},{"name":"MENU_SYSTEMRESTORE","features":[42]},{"name":"MENU_SYSTEMRESTORE_HCHOT","features":[42]},{"name":"MINBS_DISABLED","features":[42]},{"name":"MINBS_HOT","features":[42]},{"name":"MINBS_NORMAL","features":[42]},{"name":"MINBS_PUSHED","features":[42]},{"name":"MINBUTTONSTATES","features":[42]},{"name":"MINCAPTIONSTATES","features":[42]},{"name":"MNCS_ACTIVE","features":[42]},{"name":"MNCS_DISABLED","features":[42]},{"name":"MNCS_INACTIVE","features":[42]},{"name":"MONTHCALPARTS","features":[42]},{"name":"MONTHCAL_CLASS","features":[42]},{"name":"MONTHCAL_CLASSA","features":[42]},{"name":"MONTHCAL_CLASSW","features":[42]},{"name":"MONTH_CALDENDAR_MESSAGES_VIEW","features":[42]},{"name":"MOREPROGRAMSARROWBACKSTATES","features":[42]},{"name":"MOREPROGRAMSARROWSTATES","features":[42]},{"name":"MOREPROGRAMSTABSTATES","features":[42]},{"name":"MOVESTATES","features":[42]},{"name":"MPIF_DISABLED","features":[42]},{"name":"MPIF_DISABLEDHOT","features":[42]},{"name":"MPIF_HOT","features":[42]},{"name":"MPIF_NORMAL","features":[42]},{"name":"MPIKBFOCUS_NORMAL","features":[42]},{"name":"MPI_DISABLED","features":[42]},{"name":"MPI_DISABLEDHOT","features":[42]},{"name":"MPI_HOT","features":[42]},{"name":"MPI_NORMAL","features":[42]},{"name":"MSGF_COMMCTRL_BEGINDRAG","features":[42]},{"name":"MSGF_COMMCTRL_DRAGSELECT","features":[42]},{"name":"MSGF_COMMCTRL_SIZEHEADER","features":[42]},{"name":"MSGF_COMMCTRL_TOOLBARCUST","features":[42]},{"name":"MSMHC_HOT","features":[42]},{"name":"MSM_DISABLED","features":[42]},{"name":"MSM_NORMAL","features":[42]},{"name":"MSYSCHC_HOT","features":[42]},{"name":"MSYSC_DISABLED","features":[42]},{"name":"MSYSC_NORMAL","features":[42]},{"name":"MSYSMNHC_HOT","features":[42]},{"name":"MSYSMN_DISABLED","features":[42]},{"name":"MSYSMN_NORMAL","features":[42]},{"name":"MSYSMXHC_HOT","features":[42]},{"name":"MSYSMX_DISABLED","features":[42]},{"name":"MSYSMX_NORMAL","features":[42]},{"name":"MSYSRHC_HOT","features":[42]},{"name":"MSYSR_DISABLED","features":[42]},{"name":"MSYSR_NORMAL","features":[42]},{"name":"MULTIFILEOPENORD","features":[42]},{"name":"MXCS_ACTIVE","features":[42]},{"name":"MXCS_DISABLED","features":[42]},{"name":"MXCS_INACTIVE","features":[42]},{"name":"MakeDragList","features":[3,42]},{"name":"MenuHelp","features":[3,42,52]},{"name":"NAVIGATIONPARTS","features":[42]},{"name":"NAVNEXTSTATES","features":[42]},{"name":"NAVPREVSTATES","features":[42]},{"name":"NAV_BACKBUTTON","features":[42]},{"name":"NAV_BACKBUTTONSTATES","features":[42]},{"name":"NAV_BB_DISABLED","features":[42]},{"name":"NAV_BB_HOT","features":[42]},{"name":"NAV_BB_NORMAL","features":[42]},{"name":"NAV_BB_PRESSED","features":[42]},{"name":"NAV_FB_DISABLED","features":[42]},{"name":"NAV_FB_HOT","features":[42]},{"name":"NAV_FB_NORMAL","features":[42]},{"name":"NAV_FB_PRESSED","features":[42]},{"name":"NAV_FORWARDBUTTON","features":[42]},{"name":"NAV_FORWARDBUTTONSTATES","features":[42]},{"name":"NAV_MB_DISABLED","features":[42]},{"name":"NAV_MB_HOT","features":[42]},{"name":"NAV_MB_NORMAL","features":[42]},{"name":"NAV_MB_PRESSED","features":[42]},{"name":"NAV_MENUBUTTON","features":[42]},{"name":"NAV_MENUBUTTONSTATES","features":[42]},{"name":"NEWFILEOPENORD","features":[42]},{"name":"NEWFILEOPENV2ORD","features":[42]},{"name":"NEWFILEOPENV3ORD","features":[42]},{"name":"NEWFORMATDLGWITHLINK","features":[42]},{"name":"NFS_ALL","features":[42]},{"name":"NFS_BUTTON","features":[42]},{"name":"NFS_EDIT","features":[42]},{"name":"NFS_LISTCOMBO","features":[42]},{"name":"NFS_STATIC","features":[42]},{"name":"NFS_USEFONTASSOC","features":[42]},{"name":"NMBCDROPDOWN","features":[3,42]},{"name":"NMBCHOTITEM","features":[3,42]},{"name":"NMCBEDRAGBEGINA","features":[3,42]},{"name":"NMCBEDRAGBEGINW","features":[3,42]},{"name":"NMCBEENDEDITA","features":[3,42]},{"name":"NMCBEENDEDITW","features":[3,42]},{"name":"NMCHAR","features":[3,42]},{"name":"NMCOMBOBOXEXA","features":[3,42]},{"name":"NMCOMBOBOXEXW","features":[3,42]},{"name":"NMCUSTOMDRAW","features":[3,14,42]},{"name":"NMCUSTOMDRAW_DRAW_STAGE","features":[42]},{"name":"NMCUSTOMDRAW_DRAW_STATE_FLAGS","features":[42]},{"name":"NMCUSTOMSPLITRECTINFO","features":[3,42]},{"name":"NMCUSTOMTEXT","features":[3,14,42]},{"name":"NMDATETIMECHANGE","features":[3,42]},{"name":"NMDATETIMECHANGE_FLAGS","features":[42]},{"name":"NMDATETIMEFORMATA","features":[3,42]},{"name":"NMDATETIMEFORMATQUERYA","features":[3,42]},{"name":"NMDATETIMEFORMATQUERYW","features":[3,42]},{"name":"NMDATETIMEFORMATW","features":[3,42]},{"name":"NMDATETIMESTRINGA","features":[3,42]},{"name":"NMDATETIMESTRINGW","features":[3,42]},{"name":"NMDATETIMEWMKEYDOWNA","features":[3,42]},{"name":"NMDATETIMEWMKEYDOWNW","features":[3,42]},{"name":"NMDAYSTATE","features":[3,42]},{"name":"NMHDDISPINFOA","features":[3,42]},{"name":"NMHDDISPINFOW","features":[3,42]},{"name":"NMHDFILTERBTNCLICK","features":[3,42]},{"name":"NMHDR","features":[3,42]},{"name":"NMHEADERA","features":[3,14,42]},{"name":"NMHEADERW","features":[3,14,42]},{"name":"NMIPADDRESS","features":[3,42]},{"name":"NMITEMACTIVATE","features":[3,42]},{"name":"NMKEY","features":[3,42]},{"name":"NMLINK","features":[3,42]},{"name":"NMLISTVIEW","features":[3,42]},{"name":"NMLVCACHEHINT","features":[3,42]},{"name":"NMLVCUSTOMDRAW","features":[3,14,42]},{"name":"NMLVCUSTOMDRAW_ITEM_TYPE","features":[42]},{"name":"NMLVDISPINFOA","features":[3,42]},{"name":"NMLVDISPINFOW","features":[3,42]},{"name":"NMLVEMPTYMARKUP","features":[3,42]},{"name":"NMLVEMPTYMARKUP_FLAGS","features":[42]},{"name":"NMLVFINDITEMA","features":[3,42]},{"name":"NMLVFINDITEMW","features":[3,42]},{"name":"NMLVGETINFOTIPA","features":[3,42]},{"name":"NMLVGETINFOTIPW","features":[3,42]},{"name":"NMLVGETINFOTIP_FLAGS","features":[42]},{"name":"NMLVKEYDOWN","features":[3,42]},{"name":"NMLVLINK","features":[3,42]},{"name":"NMLVODSTATECHANGE","features":[3,42]},{"name":"NMLVSCROLL","features":[3,42]},{"name":"NMMOUSE","features":[3,42]},{"name":"NMOBJECTNOTIFY","features":[3,42]},{"name":"NMPGCALCSIZE","features":[3,42]},{"name":"NMPGCALCSIZE_FLAGS","features":[42]},{"name":"NMPGHOTITEM","features":[3,42]},{"name":"NMPGSCROLL","features":[3,42]},{"name":"NMPGSCROLL_DIR","features":[42]},{"name":"NMPGSCROLL_KEYS","features":[42]},{"name":"NMRBAUTOSIZE","features":[3,42]},{"name":"NMREBAR","features":[3,42]},{"name":"NMREBARAUTOBREAK","features":[3,42]},{"name":"NMREBARCHEVRON","features":[3,42]},{"name":"NMREBARCHILDSIZE","features":[3,42]},{"name":"NMREBARSPLITTER","features":[3,42]},{"name":"NMREBAR_MASK_FLAGS","features":[42]},{"name":"NMSEARCHWEB","features":[3,42]},{"name":"NMSELCHANGE","features":[3,42]},{"name":"NMTBCUSTOMDRAW","features":[3,14,42]},{"name":"NMTBDISPINFOA","features":[3,42]},{"name":"NMTBDISPINFOW","features":[3,42]},{"name":"NMTBDISPINFOW_MASK","features":[42]},{"name":"NMTBGETINFOTIPA","features":[3,42]},{"name":"NMTBGETINFOTIPW","features":[3,42]},{"name":"NMTBHOTITEM","features":[3,42]},{"name":"NMTBHOTITEM_FLAGS","features":[42]},{"name":"NMTBRESTORE","features":[3,42]},{"name":"NMTBSAVE","features":[3,42]},{"name":"NMTCKEYDOWN","features":[3,42]},{"name":"NMTOOLBARA","features":[3,42]},{"name":"NMTOOLBARW","features":[3,42]},{"name":"NMTOOLTIPSCREATED","features":[3,42]},{"name":"NMTRBTHUMBPOSCHANGING","features":[3,42]},{"name":"NMTREEVIEWA","features":[3,42]},{"name":"NMTREEVIEWW","features":[3,42]},{"name":"NMTTCUSTOMDRAW","features":[3,14,42]},{"name":"NMTTDISPINFOA","features":[3,42]},{"name":"NMTTDISPINFOW","features":[3,42]},{"name":"NMTVASYNCDRAW","features":[3,14,42]},{"name":"NMTVCUSTOMDRAW","features":[3,14,42]},{"name":"NMTVDISPINFOA","features":[3,42]},{"name":"NMTVDISPINFOEXA","features":[3,42]},{"name":"NMTVDISPINFOEXW","features":[3,42]},{"name":"NMTVDISPINFOW","features":[3,42]},{"name":"NMTVGETINFOTIPA","features":[3,42]},{"name":"NMTVGETINFOTIPW","features":[3,42]},{"name":"NMTVITEMCHANGE","features":[3,42]},{"name":"NMTVKEYDOWN","features":[3,42]},{"name":"NMTVSTATEIMAGECHANGING","features":[3,42]},{"name":"NMUPDOWN","features":[3,42]},{"name":"NMVIEWCHANGE","features":[3,42]},{"name":"NM_CHAR","features":[42]},{"name":"NM_CLICK","features":[42]},{"name":"NM_CUSTOMDRAW","features":[42]},{"name":"NM_CUSTOMTEXT","features":[42]},{"name":"NM_DBLCLK","features":[42]},{"name":"NM_FIRST","features":[42]},{"name":"NM_FONTCHANGED","features":[42]},{"name":"NM_GETCUSTOMSPLITRECT","features":[42]},{"name":"NM_HOVER","features":[42]},{"name":"NM_KEYDOWN","features":[42]},{"name":"NM_KILLFOCUS","features":[42]},{"name":"NM_LAST","features":[42]},{"name":"NM_LDOWN","features":[42]},{"name":"NM_NCHITTEST","features":[42]},{"name":"NM_OUTOFMEMORY","features":[42]},{"name":"NM_RCLICK","features":[42]},{"name":"NM_RDBLCLK","features":[42]},{"name":"NM_RDOWN","features":[42]},{"name":"NM_RELEASEDCAPTURE","features":[42]},{"name":"NM_RETURN","features":[42]},{"name":"NM_SETCURSOR","features":[42]},{"name":"NM_SETFOCUS","features":[42]},{"name":"NM_THEMECHANGED","features":[42]},{"name":"NM_TOOLTIPSCREATED","features":[42]},{"name":"NM_TREEVIEW_ACTION","features":[42]},{"name":"NM_TVSTATEIMAGECHANGING","features":[42]},{"name":"NONESTATES","features":[42]},{"name":"NORMALGROUPCOLLAPSESTATES","features":[42]},{"name":"NORMALGROUPEXPANDSTATES","features":[42]},{"name":"ODA_DRAWENTIRE","features":[42]},{"name":"ODA_FLAGS","features":[42]},{"name":"ODA_FOCUS","features":[42]},{"name":"ODA_SELECT","features":[42]},{"name":"ODS_CHECKED","features":[42]},{"name":"ODS_COMBOBOXEDIT","features":[42]},{"name":"ODS_DEFAULT","features":[42]},{"name":"ODS_DISABLED","features":[42]},{"name":"ODS_FLAGS","features":[42]},{"name":"ODS_FOCUS","features":[42]},{"name":"ODS_GRAYED","features":[42]},{"name":"ODS_HOTLIGHT","features":[42]},{"name":"ODS_INACTIVE","features":[42]},{"name":"ODS_NOACCEL","features":[42]},{"name":"ODS_NOFOCUSRECT","features":[42]},{"name":"ODS_SELECTED","features":[42]},{"name":"ODT_BUTTON","features":[42]},{"name":"ODT_COMBOBOX","features":[42]},{"name":"ODT_HEADER","features":[42]},{"name":"ODT_LISTBOX","features":[42]},{"name":"ODT_LISTVIEW","features":[42]},{"name":"ODT_MENU","features":[42]},{"name":"ODT_STATIC","features":[42]},{"name":"ODT_TAB","features":[42]},{"name":"OFFSETTYPE","features":[42]},{"name":"OPENBOXSTATES","features":[42]},{"name":"OPEN_THEME_DATA_FLAGS","features":[42]},{"name":"OTD_FORCE_RECT_SIZING","features":[42]},{"name":"OTD_NONCLIENT","features":[42]},{"name":"OT_ABOVELASTBUTTON","features":[42]},{"name":"OT_BELOWLASTBUTTON","features":[42]},{"name":"OT_BOTTOMLEFT","features":[42]},{"name":"OT_BOTTOMMIDDLE","features":[42]},{"name":"OT_BOTTOMRIGHT","features":[42]},{"name":"OT_LEFTOFCAPTION","features":[42]},{"name":"OT_LEFTOFLASTBUTTON","features":[42]},{"name":"OT_MIDDLELEFT","features":[42]},{"name":"OT_MIDDLERIGHT","features":[42]},{"name":"OT_RIGHTOFCAPTION","features":[42]},{"name":"OT_RIGHTOFLASTBUTTON","features":[42]},{"name":"OT_TOPLEFT","features":[42]},{"name":"OT_TOPMIDDLE","features":[42]},{"name":"OT_TOPRIGHT","features":[42]},{"name":"OpenThemeData","features":[3,42]},{"name":"OpenThemeDataEx","features":[3,42]},{"name":"PAGEPARTS","features":[42]},{"name":"PAGESETUPDLGORD","features":[42]},{"name":"PAGESETUPDLGORDMOTIF","features":[42]},{"name":"PBBS_NORMAL","features":[42]},{"name":"PBBS_PARTIAL","features":[42]},{"name":"PBBVS_NORMAL","features":[42]},{"name":"PBBVS_PARTIAL","features":[42]},{"name":"PBDDS_DISABLED","features":[42]},{"name":"PBDDS_NORMAL","features":[42]},{"name":"PBFS_ERROR","features":[42]},{"name":"PBFS_NORMAL","features":[42]},{"name":"PBFS_PARTIAL","features":[42]},{"name":"PBFS_PAUSED","features":[42]},{"name":"PBFVS_ERROR","features":[42]},{"name":"PBFVS_NORMAL","features":[42]},{"name":"PBFVS_PARTIAL","features":[42]},{"name":"PBFVS_PAUSED","features":[42]},{"name":"PBM_DELTAPOS","features":[42]},{"name":"PBM_GETBARCOLOR","features":[42]},{"name":"PBM_GETBKCOLOR","features":[42]},{"name":"PBM_GETPOS","features":[42]},{"name":"PBM_GETRANGE","features":[42]},{"name":"PBM_GETSTATE","features":[42]},{"name":"PBM_GETSTEP","features":[42]},{"name":"PBM_SETBARCOLOR","features":[42]},{"name":"PBM_SETBKCOLOR","features":[42]},{"name":"PBM_SETMARQUEE","features":[42]},{"name":"PBM_SETPOS","features":[42]},{"name":"PBM_SETRANGE","features":[42]},{"name":"PBM_SETRANGE32","features":[42]},{"name":"PBM_SETSTATE","features":[42]},{"name":"PBM_SETSTEP","features":[42]},{"name":"PBM_STEPIT","features":[42]},{"name":"PBRANGE","features":[42]},{"name":"PBST_ERROR","features":[42]},{"name":"PBST_NORMAL","features":[42]},{"name":"PBST_PAUSED","features":[42]},{"name":"PBS_DEFAULTED","features":[42]},{"name":"PBS_DEFAULTED_ANIMATING","features":[42]},{"name":"PBS_DISABLED","features":[42]},{"name":"PBS_HOT","features":[42]},{"name":"PBS_MARQUEE","features":[42]},{"name":"PBS_NORMAL","features":[42]},{"name":"PBS_PRESSED","features":[42]},{"name":"PBS_SMOOTH","features":[42]},{"name":"PBS_SMOOTHREVERSE","features":[42]},{"name":"PBS_VERTICAL","features":[42]},{"name":"PFNDACOMPARE","features":[3,42]},{"name":"PFNDACOMPARECONST","features":[3,42]},{"name":"PFNDAENUMCALLBACK","features":[42]},{"name":"PFNDAENUMCALLBACKCONST","features":[42]},{"name":"PFNDPAMERGE","features":[3,42]},{"name":"PFNDPAMERGECONST","features":[3,42]},{"name":"PFNDPASTREAM","features":[42]},{"name":"PFNLVCOMPARE","features":[3,42]},{"name":"PFNLVGROUPCOMPARE","features":[42]},{"name":"PFNPROPSHEETCALLBACK","features":[3,42]},{"name":"PFNTVCOMPARE","features":[3,42]},{"name":"PFTASKDIALOGCALLBACK","features":[3,42]},{"name":"PGB_BOTTOMORRIGHT","features":[42]},{"name":"PGB_TOPORLEFT","features":[42]},{"name":"PGF_CALCHEIGHT","features":[42]},{"name":"PGF_CALCWIDTH","features":[42]},{"name":"PGF_DEPRESSED","features":[42]},{"name":"PGF_GRAYED","features":[42]},{"name":"PGF_HOT","features":[42]},{"name":"PGF_INVISIBLE","features":[42]},{"name":"PGF_NORMAL","features":[42]},{"name":"PGF_SCROLLDOWN","features":[42]},{"name":"PGF_SCROLLLEFT","features":[42]},{"name":"PGF_SCROLLRIGHT","features":[42]},{"name":"PGF_SCROLLUP","features":[42]},{"name":"PGK_CONTROL","features":[42]},{"name":"PGK_MENU","features":[42]},{"name":"PGK_NONE","features":[42]},{"name":"PGK_SHIFT","features":[42]},{"name":"PGM_FIRST","features":[42]},{"name":"PGM_FORWARDMOUSE","features":[42]},{"name":"PGM_GETBKCOLOR","features":[42]},{"name":"PGM_GETBORDER","features":[42]},{"name":"PGM_GETBUTTONSIZE","features":[42]},{"name":"PGM_GETBUTTONSTATE","features":[42]},{"name":"PGM_GETDROPTARGET","features":[42]},{"name":"PGM_GETPOS","features":[42]},{"name":"PGM_RECALCSIZE","features":[42]},{"name":"PGM_SETBKCOLOR","features":[42]},{"name":"PGM_SETBORDER","features":[42]},{"name":"PGM_SETBUTTONSIZE","features":[42]},{"name":"PGM_SETCHILD","features":[42]},{"name":"PGM_SETPOS","features":[42]},{"name":"PGM_SETSCROLLINFO","features":[42]},{"name":"PGN_CALCSIZE","features":[42]},{"name":"PGN_FIRST","features":[42]},{"name":"PGN_HOTITEMCHANGE","features":[42]},{"name":"PGN_LAST","features":[42]},{"name":"PGN_SCROLL","features":[42]},{"name":"PGRP_DOWN","features":[42]},{"name":"PGRP_DOWNHORZ","features":[42]},{"name":"PGRP_UP","features":[42]},{"name":"PGRP_UPHORZ","features":[42]},{"name":"PGS_AUTOSCROLL","features":[42]},{"name":"PGS_DRAGNDROP","features":[42]},{"name":"PGS_HORZ","features":[42]},{"name":"PGS_VERT","features":[42]},{"name":"POINTER_DEVICE_CURSOR_INFO","features":[42]},{"name":"POINTER_DEVICE_CURSOR_TYPE","features":[42]},{"name":"POINTER_DEVICE_CURSOR_TYPE_ERASER","features":[42]},{"name":"POINTER_DEVICE_CURSOR_TYPE_MAX","features":[42]},{"name":"POINTER_DEVICE_CURSOR_TYPE_TIP","features":[42]},{"name":"POINTER_DEVICE_CURSOR_TYPE_UNKNOWN","features":[42]},{"name":"POINTER_DEVICE_INFO","features":[3,14,42]},{"name":"POINTER_DEVICE_PROPERTY","features":[42]},{"name":"POINTER_DEVICE_TYPE","features":[42]},{"name":"POINTER_DEVICE_TYPE_EXTERNAL_PEN","features":[42]},{"name":"POINTER_DEVICE_TYPE_INTEGRATED_PEN","features":[42]},{"name":"POINTER_DEVICE_TYPE_MAX","features":[42]},{"name":"POINTER_DEVICE_TYPE_TOUCH","features":[42]},{"name":"POINTER_DEVICE_TYPE_TOUCH_PAD","features":[42]},{"name":"POINTER_FEEDBACK_DEFAULT","features":[42]},{"name":"POINTER_FEEDBACK_INDIRECT","features":[42]},{"name":"POINTER_FEEDBACK_MODE","features":[42]},{"name":"POINTER_FEEDBACK_NONE","features":[42]},{"name":"POINTER_TYPE_INFO","features":[3,42,211,52]},{"name":"POPUPCHECKBACKGROUNDSTATES","features":[42]},{"name":"POPUPCHECKSTATES","features":[42]},{"name":"POPUPITEMFOCUSABLESTATES","features":[42]},{"name":"POPUPITEMKBFOCUSSTATES","features":[42]},{"name":"POPUPITEMSTATES","features":[42]},{"name":"POPUPSUBMENUHCHOTSTATES","features":[42]},{"name":"POPUPSUBMENUSTATES","features":[42]},{"name":"PO_CLASS","features":[42]},{"name":"PO_GLOBAL","features":[42]},{"name":"PO_NOTFOUND","features":[42]},{"name":"PO_PART","features":[42]},{"name":"PO_STATE","features":[42]},{"name":"PP_BAR","features":[42]},{"name":"PP_BARVERT","features":[42]},{"name":"PP_CHUNK","features":[42]},{"name":"PP_CHUNKVERT","features":[42]},{"name":"PP_FILL","features":[42]},{"name":"PP_FILLVERT","features":[42]},{"name":"PP_MOVEOVERLAY","features":[42]},{"name":"PP_MOVEOVERLAYVERT","features":[42]},{"name":"PP_PULSEOVERLAY","features":[42]},{"name":"PP_PULSEOVERLAYVERT","features":[42]},{"name":"PP_TRANSPARENTBAR","features":[42]},{"name":"PP_TRANSPARENTBARVERT","features":[42]},{"name":"PRINTDLGEXORD","features":[42]},{"name":"PRINTDLGORD","features":[42]},{"name":"PRNSETUPDLGORD","features":[42]},{"name":"PROGRESSPARTS","features":[42]},{"name":"PROGRESS_CLASS","features":[42]},{"name":"PROGRESS_CLASSA","features":[42]},{"name":"PROGRESS_CLASSW","features":[42]},{"name":"PROPERTYORIGIN","features":[42]},{"name":"PROPSHEETHEADERA_V1","features":[3,14,42,52]},{"name":"PROPSHEETHEADERA_V2","features":[3,14,42,52]},{"name":"PROPSHEETHEADERW_V1","features":[3,14,42,52]},{"name":"PROPSHEETHEADERW_V2","features":[3,14,42,52]},{"name":"PROPSHEETPAGEA","features":[3,14,42,52]},{"name":"PROPSHEETPAGEA_V1","features":[3,14,42,52]},{"name":"PROPSHEETPAGEA_V2","features":[3,14,42,52]},{"name":"PROPSHEETPAGEA_V3","features":[3,14,42,52]},{"name":"PROPSHEETPAGEW","features":[3,14,42,52]},{"name":"PROPSHEETPAGEW_V1","features":[3,14,42,52]},{"name":"PROPSHEETPAGEW_V2","features":[3,14,42,52]},{"name":"PROPSHEETPAGEW_V3","features":[3,14,42,52]},{"name":"PROP_LG_CXDLG","features":[42]},{"name":"PROP_LG_CYDLG","features":[42]},{"name":"PROP_MED_CXDLG","features":[42]},{"name":"PROP_MED_CYDLG","features":[42]},{"name":"PROP_SM_CXDLG","features":[42]},{"name":"PROP_SM_CYDLG","features":[42]},{"name":"PSBTN_APPLYNOW","features":[42]},{"name":"PSBTN_BACK","features":[42]},{"name":"PSBTN_CANCEL","features":[42]},{"name":"PSBTN_FINISH","features":[42]},{"name":"PSBTN_HELP","features":[42]},{"name":"PSBTN_MAX","features":[42]},{"name":"PSBTN_NEXT","features":[42]},{"name":"PSBTN_OK","features":[42]},{"name":"PSCB_BUTTONPRESSED","features":[42]},{"name":"PSCB_INITIALIZED","features":[42]},{"name":"PSCB_PRECREATE","features":[42]},{"name":"PSHNOTIFY","features":[3,42]},{"name":"PSH_AEROWIZARD","features":[42]},{"name":"PSH_DEFAULT","features":[42]},{"name":"PSH_HASHELP","features":[42]},{"name":"PSH_HEADER","features":[42]},{"name":"PSH_HEADERBITMAP","features":[42]},{"name":"PSH_MODELESS","features":[42]},{"name":"PSH_NOAPPLYNOW","features":[42]},{"name":"PSH_NOCONTEXTHELP","features":[42]},{"name":"PSH_NOMARGIN","features":[42]},{"name":"PSH_PROPSHEETPAGE","features":[42]},{"name":"PSH_PROPTITLE","features":[42]},{"name":"PSH_RESIZABLE","features":[42]},{"name":"PSH_RTLREADING","features":[42]},{"name":"PSH_STRETCHWATERMARK","features":[42]},{"name":"PSH_USECALLBACK","features":[42]},{"name":"PSH_USEHBMHEADER","features":[42]},{"name":"PSH_USEHBMWATERMARK","features":[42]},{"name":"PSH_USEHICON","features":[42]},{"name":"PSH_USEHPLWATERMARK","features":[42]},{"name":"PSH_USEICONID","features":[42]},{"name":"PSH_USEPAGELANG","features":[42]},{"name":"PSH_USEPSTARTPAGE","features":[42]},{"name":"PSH_WATERMARK","features":[42]},{"name":"PSH_WIZARD","features":[42]},{"name":"PSH_WIZARD97","features":[42]},{"name":"PSH_WIZARDCONTEXTHELP","features":[42]},{"name":"PSH_WIZARDHASFINISH","features":[42]},{"name":"PSH_WIZARD_LITE","features":[42]},{"name":"PSM_ADDPAGE","features":[42]},{"name":"PSM_APPLY","features":[42]},{"name":"PSM_CANCELTOCLOSE","features":[42]},{"name":"PSM_CHANGED","features":[42]},{"name":"PSM_ENABLEWIZBUTTONS","features":[42]},{"name":"PSM_GETCURRENTPAGEHWND","features":[42]},{"name":"PSM_GETRESULT","features":[42]},{"name":"PSM_GETTABCONTROL","features":[42]},{"name":"PSM_HWNDTOINDEX","features":[42]},{"name":"PSM_IDTOINDEX","features":[42]},{"name":"PSM_INDEXTOHWND","features":[42]},{"name":"PSM_INDEXTOID","features":[42]},{"name":"PSM_INDEXTOPAGE","features":[42]},{"name":"PSM_INSERTPAGE","features":[42]},{"name":"PSM_ISDIALOGMESSAGE","features":[42]},{"name":"PSM_PAGETOINDEX","features":[42]},{"name":"PSM_PRESSBUTTON","features":[42]},{"name":"PSM_QUERYSIBLINGS","features":[42]},{"name":"PSM_REBOOTSYSTEM","features":[42]},{"name":"PSM_RECALCPAGESIZES","features":[42]},{"name":"PSM_REMOVEPAGE","features":[42]},{"name":"PSM_RESTARTWINDOWS","features":[42]},{"name":"PSM_SETBUTTONTEXT","features":[42]},{"name":"PSM_SETBUTTONTEXTW","features":[42]},{"name":"PSM_SETCURSEL","features":[42]},{"name":"PSM_SETCURSELID","features":[42]},{"name":"PSM_SETFINISHTEXT","features":[42]},{"name":"PSM_SETFINISHTEXTA","features":[42]},{"name":"PSM_SETFINISHTEXTW","features":[42]},{"name":"PSM_SETHEADERSUBTITLE","features":[42]},{"name":"PSM_SETHEADERSUBTITLEA","features":[42]},{"name":"PSM_SETHEADERSUBTITLEW","features":[42]},{"name":"PSM_SETHEADERTITLE","features":[42]},{"name":"PSM_SETHEADERTITLEA","features":[42]},{"name":"PSM_SETHEADERTITLEW","features":[42]},{"name":"PSM_SETNEXTTEXT","features":[42]},{"name":"PSM_SETNEXTTEXTW","features":[42]},{"name":"PSM_SETTITLE","features":[42]},{"name":"PSM_SETTITLEA","features":[42]},{"name":"PSM_SETTITLEW","features":[42]},{"name":"PSM_SETWIZBUTTONS","features":[42]},{"name":"PSM_SHOWWIZBUTTONS","features":[42]},{"name":"PSM_UNCHANGED","features":[42]},{"name":"PSNRET_INVALID","features":[42]},{"name":"PSNRET_INVALID_NOCHANGEPAGE","features":[42]},{"name":"PSNRET_MESSAGEHANDLED","features":[42]},{"name":"PSNRET_NOERROR","features":[42]},{"name":"PSN_APPLY","features":[42]},{"name":"PSN_FIRST","features":[42]},{"name":"PSN_GETOBJECT","features":[42]},{"name":"PSN_HELP","features":[42]},{"name":"PSN_KILLACTIVE","features":[42]},{"name":"PSN_LAST","features":[42]},{"name":"PSN_QUERYCANCEL","features":[42]},{"name":"PSN_QUERYINITIALFOCUS","features":[42]},{"name":"PSN_RESET","features":[42]},{"name":"PSN_SETACTIVE","features":[42]},{"name":"PSN_TRANSLATEACCELERATOR","features":[42]},{"name":"PSN_WIZBACK","features":[42]},{"name":"PSN_WIZFINISH","features":[42]},{"name":"PSN_WIZNEXT","features":[42]},{"name":"PSPCB_ADDREF","features":[42]},{"name":"PSPCB_CREATE","features":[42]},{"name":"PSPCB_MESSAGE","features":[42]},{"name":"PSPCB_RELEASE","features":[42]},{"name":"PSPCB_SI_INITDIALOG","features":[42]},{"name":"PSP_DEFAULT","features":[42]},{"name":"PSP_DLGINDIRECT","features":[42]},{"name":"PSP_HASHELP","features":[42]},{"name":"PSP_HIDEHEADER","features":[42]},{"name":"PSP_PREMATURE","features":[42]},{"name":"PSP_RTLREADING","features":[42]},{"name":"PSP_USECALLBACK","features":[42]},{"name":"PSP_USEFUSIONCONTEXT","features":[42]},{"name":"PSP_USEHEADERSUBTITLE","features":[42]},{"name":"PSP_USEHEADERTITLE","features":[42]},{"name":"PSP_USEHICON","features":[42]},{"name":"PSP_USEICONID","features":[42]},{"name":"PSP_USEREFPARENT","features":[42]},{"name":"PSP_USETITLE","features":[42]},{"name":"PSWIZBF_ELEVATIONREQUIRED","features":[42]},{"name":"PSWIZB_BACK","features":[42]},{"name":"PSWIZB_CANCEL","features":[42]},{"name":"PSWIZB_DISABLEDFINISH","features":[42]},{"name":"PSWIZB_FINISH","features":[42]},{"name":"PSWIZB_NEXT","features":[42]},{"name":"PSWIZB_RESTORE","features":[42]},{"name":"PSWIZB_SHOW","features":[42]},{"name":"PUSHBUTTONDROPDOWNSTATES","features":[42]},{"name":"PUSHBUTTONSTATES","features":[42]},{"name":"PackTouchHitTestingProximityEvaluation","features":[3,42]},{"name":"PropertySheetA","features":[3,14,42,52]},{"name":"PropertySheetW","features":[3,14,42,52]},{"name":"RADIOBUTTONSTATES","features":[42]},{"name":"RBAB_ADDBAND","features":[42]},{"name":"RBAB_AUTOSIZE","features":[42]},{"name":"RBBIM_BACKGROUND","features":[42]},{"name":"RBBIM_CHEVRONLOCATION","features":[42]},{"name":"RBBIM_CHEVRONSTATE","features":[42]},{"name":"RBBIM_CHILD","features":[42]},{"name":"RBBIM_CHILDSIZE","features":[42]},{"name":"RBBIM_COLORS","features":[42]},{"name":"RBBIM_HEADERSIZE","features":[42]},{"name":"RBBIM_ID","features":[42]},{"name":"RBBIM_IDEALSIZE","features":[42]},{"name":"RBBIM_IMAGE","features":[42]},{"name":"RBBIM_LPARAM","features":[42]},{"name":"RBBIM_SIZE","features":[42]},{"name":"RBBIM_STYLE","features":[42]},{"name":"RBBIM_TEXT","features":[42]},{"name":"RBBS_BREAK","features":[42]},{"name":"RBBS_CHILDEDGE","features":[42]},{"name":"RBBS_FIXEDBMP","features":[42]},{"name":"RBBS_FIXEDSIZE","features":[42]},{"name":"RBBS_GRIPPERALWAYS","features":[42]},{"name":"RBBS_HIDDEN","features":[42]},{"name":"RBBS_HIDETITLE","features":[42]},{"name":"RBBS_NOGRIPPER","features":[42]},{"name":"RBBS_NOVERT","features":[42]},{"name":"RBBS_TOPALIGN","features":[42]},{"name":"RBBS_USECHEVRON","features":[42]},{"name":"RBBS_VARIABLEHEIGHT","features":[42]},{"name":"RBHITTESTINFO","features":[3,42]},{"name":"RBHT_CAPTION","features":[42]},{"name":"RBHT_CHEVRON","features":[42]},{"name":"RBHT_CLIENT","features":[42]},{"name":"RBHT_GRABBER","features":[42]},{"name":"RBHT_NOWHERE","features":[42]},{"name":"RBHT_SPLITTER","features":[42]},{"name":"RBIM_IMAGELIST","features":[42]},{"name":"RBNM_ID","features":[42]},{"name":"RBNM_LPARAM","features":[42]},{"name":"RBNM_STYLE","features":[42]},{"name":"RBN_AUTOBREAK","features":[42]},{"name":"RBN_AUTOSIZE","features":[42]},{"name":"RBN_BEGINDRAG","features":[42]},{"name":"RBN_CHEVRONPUSHED","features":[42]},{"name":"RBN_CHILDSIZE","features":[42]},{"name":"RBN_DELETEDBAND","features":[42]},{"name":"RBN_DELETINGBAND","features":[42]},{"name":"RBN_ENDDRAG","features":[42]},{"name":"RBN_FIRST","features":[42]},{"name":"RBN_GETOBJECT","features":[42]},{"name":"RBN_HEIGHTCHANGE","features":[42]},{"name":"RBN_LAST","features":[42]},{"name":"RBN_LAYOUTCHANGED","features":[42]},{"name":"RBN_MINMAX","features":[42]},{"name":"RBN_SPLITTERDRAG","features":[42]},{"name":"RBSTR_CHANGERECT","features":[42]},{"name":"RBS_AUTOSIZE","features":[42]},{"name":"RBS_BANDBORDERS","features":[42]},{"name":"RBS_CHECKEDDISABLED","features":[42]},{"name":"RBS_CHECKEDHOT","features":[42]},{"name":"RBS_CHECKEDNORMAL","features":[42]},{"name":"RBS_CHECKEDPRESSED","features":[42]},{"name":"RBS_DBLCLKTOGGLE","features":[42]},{"name":"RBS_DISABLED","features":[42]},{"name":"RBS_FIXEDORDER","features":[42]},{"name":"RBS_HOT","features":[42]},{"name":"RBS_NORMAL","features":[42]},{"name":"RBS_PUSHED","features":[42]},{"name":"RBS_REGISTERDROP","features":[42]},{"name":"RBS_TOOLTIPS","features":[42]},{"name":"RBS_UNCHECKEDDISABLED","features":[42]},{"name":"RBS_UNCHECKEDHOT","features":[42]},{"name":"RBS_UNCHECKEDNORMAL","features":[42]},{"name":"RBS_UNCHECKEDPRESSED","features":[42]},{"name":"RBS_VARHEIGHT","features":[42]},{"name":"RBS_VERTICALGRIPPER","features":[42]},{"name":"RB_BEGINDRAG","features":[42]},{"name":"RB_DELETEBAND","features":[42]},{"name":"RB_DRAGMOVE","features":[42]},{"name":"RB_ENDDRAG","features":[42]},{"name":"RB_GETBANDBORDERS","features":[42]},{"name":"RB_GETBANDCOUNT","features":[42]},{"name":"RB_GETBANDINFO","features":[42]},{"name":"RB_GETBANDINFOA","features":[42]},{"name":"RB_GETBANDINFOW","features":[42]},{"name":"RB_GETBANDMARGINS","features":[42]},{"name":"RB_GETBARHEIGHT","features":[42]},{"name":"RB_GETBARINFO","features":[42]},{"name":"RB_GETBKCOLOR","features":[42]},{"name":"RB_GETCOLORSCHEME","features":[42]},{"name":"RB_GETDROPTARGET","features":[42]},{"name":"RB_GETEXTENDEDSTYLE","features":[42]},{"name":"RB_GETPALETTE","features":[42]},{"name":"RB_GETRECT","features":[42]},{"name":"RB_GETROWCOUNT","features":[42]},{"name":"RB_GETROWHEIGHT","features":[42]},{"name":"RB_GETTEXTCOLOR","features":[42]},{"name":"RB_GETTOOLTIPS","features":[42]},{"name":"RB_GETUNICODEFORMAT","features":[42]},{"name":"RB_HITTEST","features":[42]},{"name":"RB_IDTOINDEX","features":[42]},{"name":"RB_INSERTBAND","features":[42]},{"name":"RB_INSERTBANDA","features":[42]},{"name":"RB_INSERTBANDW","features":[42]},{"name":"RB_MAXIMIZEBAND","features":[42]},{"name":"RB_MINIMIZEBAND","features":[42]},{"name":"RB_MOVEBAND","features":[42]},{"name":"RB_PUSHCHEVRON","features":[42]},{"name":"RB_SETBANDINFO","features":[42]},{"name":"RB_SETBANDINFOA","features":[42]},{"name":"RB_SETBANDINFOW","features":[42]},{"name":"RB_SETBANDWIDTH","features":[42]},{"name":"RB_SETBARINFO","features":[42]},{"name":"RB_SETBKCOLOR","features":[42]},{"name":"RB_SETCOLORSCHEME","features":[42]},{"name":"RB_SETEXTENDEDSTYLE","features":[42]},{"name":"RB_SETPALETTE","features":[42]},{"name":"RB_SETPARENT","features":[42]},{"name":"RB_SETTEXTCOLOR","features":[42]},{"name":"RB_SETTOOLTIPS","features":[42]},{"name":"RB_SETUNICODEFORMAT","features":[42]},{"name":"RB_SETWINDOWTHEME","features":[42]},{"name":"RB_SHOWBAND","features":[42]},{"name":"RB_SIZETORECT","features":[42]},{"name":"READONLYSTATES","features":[42]},{"name":"REBARBANDINFOA","features":[3,14,42]},{"name":"REBARBANDINFOW","features":[3,14,42]},{"name":"REBARCLASSNAME","features":[42]},{"name":"REBARCLASSNAMEA","features":[42]},{"name":"REBARCLASSNAMEW","features":[42]},{"name":"REBARINFO","features":[42]},{"name":"REBARPARTS","features":[42]},{"name":"REPLACEDLGORD","features":[42]},{"name":"RESTOREBUTTONSTATES","features":[42]},{"name":"RP_BACKGROUND","features":[42]},{"name":"RP_BAND","features":[42]},{"name":"RP_CHEVRON","features":[42]},{"name":"RP_CHEVRONVERT","features":[42]},{"name":"RP_GRIPPER","features":[42]},{"name":"RP_GRIPPERVERT","features":[42]},{"name":"RP_SPLITTER","features":[42]},{"name":"RP_SPLITTERVERT","features":[42]},{"name":"RUNDLGORD","features":[42]},{"name":"RegisterPointerDeviceNotifications","features":[3,42]},{"name":"RegisterTouchHitTestingWindow","features":[3,42]},{"name":"SBARS_SIZEGRIP","features":[42]},{"name":"SBARS_TOOLTIPS","features":[42]},{"name":"SBN_FIRST","features":[42]},{"name":"SBN_LAST","features":[42]},{"name":"SBN_SIMPLEMODECHANGE","features":[42]},{"name":"SBP_ARROWBTN","features":[42]},{"name":"SBP_GRIPPERHORZ","features":[42]},{"name":"SBP_GRIPPERVERT","features":[42]},{"name":"SBP_LOWERTRACKHORZ","features":[42]},{"name":"SBP_LOWERTRACKVERT","features":[42]},{"name":"SBP_SIZEBOX","features":[42]},{"name":"SBP_SIZEBOXBKGND","features":[42]},{"name":"SBP_THUMBBTNHORZ","features":[42]},{"name":"SBP_THUMBBTNVERT","features":[42]},{"name":"SBP_UPPERTRACKHORZ","features":[42]},{"name":"SBP_UPPERTRACKVERT","features":[42]},{"name":"SBS_DISABLED","features":[42]},{"name":"SBS_HOT","features":[42]},{"name":"SBS_NORMAL","features":[42]},{"name":"SBS_PUSHED","features":[42]},{"name":"SBT_NOBORDERS","features":[42]},{"name":"SBT_NOTABPARSING","features":[42]},{"name":"SBT_OWNERDRAW","features":[42]},{"name":"SBT_POPOUT","features":[42]},{"name":"SBT_RTLREADING","features":[42]},{"name":"SBT_TOOLTIPS","features":[42]},{"name":"SB_GETBORDERS","features":[42]},{"name":"SB_GETICON","features":[42]},{"name":"SB_GETPARTS","features":[42]},{"name":"SB_GETRECT","features":[42]},{"name":"SB_GETTEXT","features":[42]},{"name":"SB_GETTEXTA","features":[42]},{"name":"SB_GETTEXTLENGTH","features":[42]},{"name":"SB_GETTEXTLENGTHA","features":[42]},{"name":"SB_GETTEXTLENGTHW","features":[42]},{"name":"SB_GETTEXTW","features":[42]},{"name":"SB_GETTIPTEXTA","features":[42]},{"name":"SB_GETTIPTEXTW","features":[42]},{"name":"SB_GETUNICODEFORMAT","features":[42]},{"name":"SB_ISSIMPLE","features":[42]},{"name":"SB_SETBKCOLOR","features":[42]},{"name":"SB_SETICON","features":[42]},{"name":"SB_SETMINHEIGHT","features":[42]},{"name":"SB_SETPARTS","features":[42]},{"name":"SB_SETTEXT","features":[42]},{"name":"SB_SETTEXTA","features":[42]},{"name":"SB_SETTEXTW","features":[42]},{"name":"SB_SETTIPTEXTA","features":[42]},{"name":"SB_SETTIPTEXTW","features":[42]},{"name":"SB_SETUNICODEFORMAT","features":[42]},{"name":"SB_SIMPLE","features":[42]},{"name":"SB_SIMPLEID","features":[42]},{"name":"SCBS_DISABLED","features":[42]},{"name":"SCBS_HOT","features":[42]},{"name":"SCBS_NORMAL","features":[42]},{"name":"SCBS_PUSHED","features":[42]},{"name":"SCRBS_DISABLED","features":[42]},{"name":"SCRBS_HOT","features":[42]},{"name":"SCRBS_HOVER","features":[42]},{"name":"SCRBS_NORMAL","features":[42]},{"name":"SCRBS_PRESSED","features":[42]},{"name":"SCROLLBARPARTS","features":[42]},{"name":"SCROLLBARSTYLESTATES","features":[42]},{"name":"SCS_ACTIVE","features":[42]},{"name":"SCS_DISABLED","features":[42]},{"name":"SCS_INACTIVE","features":[42]},{"name":"SECTIONTITLELINKSTATES","features":[42]},{"name":"SET_THEME_APP_PROPERTIES_FLAGS","features":[42]},{"name":"SFRB_ACTIVE","features":[42]},{"name":"SFRB_INACTIVE","features":[42]},{"name":"SFRL_ACTIVE","features":[42]},{"name":"SFRL_INACTIVE","features":[42]},{"name":"SFRR_ACTIVE","features":[42]},{"name":"SFRR_INACTIVE","features":[42]},{"name":"SHOWCALENDARBUTTONRIGHTSTATES","features":[42]},{"name":"SIZEBOXSTATES","features":[42]},{"name":"SIZINGTYPE","features":[42]},{"name":"SMALLCAPTIONSTATES","features":[42]},{"name":"SMALLCLOSEBUTTONSTATES","features":[42]},{"name":"SMALLFRAMEBOTTOMSTATES","features":[42]},{"name":"SMALLFRAMELEFTSTATES","features":[42]},{"name":"SMALLFRAMERIGHTSTATES","features":[42]},{"name":"SOFTWAREEXPLORERSTATES","features":[42]},{"name":"SPECIALGROUPCOLLAPSESTATES","features":[42]},{"name":"SPECIALGROUPEXPANDSTATES","features":[42]},{"name":"SPINPARTS","features":[42]},{"name":"SPLITSV_HOT","features":[42]},{"name":"SPLITSV_NORMAL","features":[42]},{"name":"SPLITSV_PRESSED","features":[42]},{"name":"SPLITS_HOT","features":[42]},{"name":"SPLITS_NORMAL","features":[42]},{"name":"SPLITS_PRESSED","features":[42]},{"name":"SPLITTERSTATES","features":[42]},{"name":"SPLITTERVERTSTATES","features":[42]},{"name":"SPLS_HOT","features":[42]},{"name":"SPLS_NORMAL","features":[42]},{"name":"SPLS_PRESSED","features":[42]},{"name":"SPMPT_DISABLED","features":[42]},{"name":"SPMPT_FOCUSED","features":[42]},{"name":"SPMPT_HOT","features":[42]},{"name":"SPMPT_NORMAL","features":[42]},{"name":"SPMPT_SELECTED","features":[42]},{"name":"SPNP_DOWN","features":[42]},{"name":"SPNP_DOWNHORZ","features":[42]},{"name":"SPNP_UP","features":[42]},{"name":"SPNP_UPHORZ","features":[42]},{"name":"SPOB_DISABLED","features":[42]},{"name":"SPOB_FOCUSED","features":[42]},{"name":"SPOB_HOT","features":[42]},{"name":"SPOB_NORMAL","features":[42]},{"name":"SPOB_SELECTED","features":[42]},{"name":"SPP_LOGOFF","features":[42]},{"name":"SPP_LOGOFFBUTTONS","features":[42]},{"name":"SPP_LOGOFFSPLITBUTTONDROPDOWN","features":[42]},{"name":"SPP_MOREPROGRAMS","features":[42]},{"name":"SPP_MOREPROGRAMSARROW","features":[42]},{"name":"SPP_MOREPROGRAMSARROWBACK","features":[42]},{"name":"SPP_MOREPROGRAMSTAB","features":[42]},{"name":"SPP_NSCHOST","features":[42]},{"name":"SPP_OPENBOX","features":[42]},{"name":"SPP_PLACESLIST","features":[42]},{"name":"SPP_PLACESLISTSEPARATOR","features":[42]},{"name":"SPP_PREVIEW","features":[42]},{"name":"SPP_PROGLIST","features":[42]},{"name":"SPP_PROGLISTSEPARATOR","features":[42]},{"name":"SPP_SEARCHVIEW","features":[42]},{"name":"SPP_SOFTWAREEXPLORER","features":[42]},{"name":"SPP_TOPMATCH","features":[42]},{"name":"SPP_USERPANE","features":[42]},{"name":"SPP_USERPICTURE","features":[42]},{"name":"SPSB_HOT","features":[42]},{"name":"SPSB_NORMAL","features":[42]},{"name":"SPSB_PRESSED","features":[42]},{"name":"SPSE_DISABLED","features":[42]},{"name":"SPSE_FOCUSED","features":[42]},{"name":"SPSE_HOT","features":[42]},{"name":"SPSE_NORMAL","features":[42]},{"name":"SPSE_SELECTED","features":[42]},{"name":"SPS_HOT","features":[42]},{"name":"SPS_NORMAL","features":[42]},{"name":"SPS_PRESSED","features":[42]},{"name":"SP_GRIPPER","features":[42]},{"name":"SP_GRIPPERPANE","features":[42]},{"name":"SP_PANE","features":[42]},{"name":"STANDARDSTATES","features":[42]},{"name":"STARTPANELPARTS","features":[42]},{"name":"STATE_SYSTEM_FOCUSABLE","features":[42]},{"name":"STATE_SYSTEM_INVISIBLE","features":[42]},{"name":"STATE_SYSTEM_OFFSCREEN","features":[42]},{"name":"STATE_SYSTEM_PRESSED","features":[42]},{"name":"STATE_SYSTEM_UNAVAILABLE","features":[42]},{"name":"STATICPARTS","features":[42]},{"name":"STATUSCLASSNAME","features":[42]},{"name":"STATUSCLASSNAMEA","features":[42]},{"name":"STATUSCLASSNAMEW","features":[42]},{"name":"STATUSPARTS","features":[42]},{"name":"STAT_TEXT","features":[42]},{"name":"STD_COPY","features":[42]},{"name":"STD_CUT","features":[42]},{"name":"STD_DELETE","features":[42]},{"name":"STD_FILENEW","features":[42]},{"name":"STD_FILEOPEN","features":[42]},{"name":"STD_FILESAVE","features":[42]},{"name":"STD_FIND","features":[42]},{"name":"STD_HELP","features":[42]},{"name":"STD_PASTE","features":[42]},{"name":"STD_PRINT","features":[42]},{"name":"STD_PRINTPRE","features":[42]},{"name":"STD_PROPERTIES","features":[42]},{"name":"STD_REDOW","features":[42]},{"name":"STD_REPLACE","features":[42]},{"name":"STD_UNDO","features":[42]},{"name":"ST_STRETCH","features":[42]},{"name":"ST_TILE","features":[42]},{"name":"ST_TRUESIZE","features":[42]},{"name":"SYSBUTTONSTATES","features":[42]},{"name":"SYSTEMCLOSEHCHOTSTATES","features":[42]},{"name":"SYSTEMCLOSESTATES","features":[42]},{"name":"SYSTEMMAXIMIZEHCHOTSTATES","features":[42]},{"name":"SYSTEMMAXIMIZESTATES","features":[42]},{"name":"SYSTEMMINIMIZEHCHOTSTATES","features":[42]},{"name":"SYSTEMMINIMIZESTATES","features":[42]},{"name":"SYSTEMRESTOREHCHOTSTATES","features":[42]},{"name":"SYSTEMRESTORESTATES","features":[42]},{"name":"SZB_HALFBOTTOMLEFTALIGN","features":[42]},{"name":"SZB_HALFBOTTOMRIGHTALIGN","features":[42]},{"name":"SZB_HALFTOPLEFTALIGN","features":[42]},{"name":"SZB_HALFTOPRIGHTALIGN","features":[42]},{"name":"SZB_LEFTALIGN","features":[42]},{"name":"SZB_RIGHTALIGN","features":[42]},{"name":"SZB_TOPLEFTALIGN","features":[42]},{"name":"SZB_TOPRIGHTALIGN","features":[42]},{"name":"SZ_THDOCPROP_AUTHOR","features":[42]},{"name":"SZ_THDOCPROP_CANONICALNAME","features":[42]},{"name":"SZ_THDOCPROP_DISPLAYNAME","features":[42]},{"name":"SZ_THDOCPROP_TOOLTIP","features":[42]},{"name":"SetScrollInfo","features":[3,42,52]},{"name":"SetScrollPos","features":[3,42,52]},{"name":"SetScrollRange","features":[3,42,52]},{"name":"SetThemeAppProperties","features":[42]},{"name":"SetWindowFeedbackSetting","features":[3,42]},{"name":"SetWindowTheme","features":[3,42]},{"name":"SetWindowThemeAttribute","features":[3,42]},{"name":"ShowHideMenuCtl","features":[3,42]},{"name":"ShowScrollBar","features":[3,42,52]},{"name":"Str_SetPtrW","features":[3,42]},{"name":"TABITEMBOTHEDGESTATES","features":[42]},{"name":"TABITEMLEFTEDGESTATES","features":[42]},{"name":"TABITEMRIGHTEDGESTATES","features":[42]},{"name":"TABITEMSTATES","features":[42]},{"name":"TABPARTS","features":[42]},{"name":"TABP_AEROWIZARDBODY","features":[42]},{"name":"TABP_BODY","features":[42]},{"name":"TABP_PANE","features":[42]},{"name":"TABP_TABITEM","features":[42]},{"name":"TABP_TABITEMBOTHEDGE","features":[42]},{"name":"TABP_TABITEMLEFTEDGE","features":[42]},{"name":"TABP_TABITEMRIGHTEDGE","features":[42]},{"name":"TABP_TOPTABITEM","features":[42]},{"name":"TABP_TOPTABITEMBOTHEDGE","features":[42]},{"name":"TABP_TOPTABITEMLEFTEDGE","features":[42]},{"name":"TABP_TOPTABITEMRIGHTEDGE","features":[42]},{"name":"TABSTATES","features":[42]},{"name":"TAB_CONTROL_ITEM_STATE","features":[42]},{"name":"TAPF_ALLOWCOLLECTION","features":[42]},{"name":"TAPF_HASBACKGROUND","features":[42]},{"name":"TAPF_HASPERSPECTIVE","features":[42]},{"name":"TAPF_HASSTAGGER","features":[42]},{"name":"TAPF_ISRTLAWARE","features":[42]},{"name":"TAPF_NONE","features":[42]},{"name":"TAP_FLAGS","features":[42]},{"name":"TAP_STAGGERDELAY","features":[42]},{"name":"TAP_STAGGERDELAYCAP","features":[42]},{"name":"TAP_STAGGERDELAYFACTOR","features":[42]},{"name":"TAP_TRANSFORMCOUNT","features":[42]},{"name":"TAP_ZORDER","features":[42]},{"name":"TASKBANDPARTS","features":[42]},{"name":"TASKBARPARTS","features":[42]},{"name":"TASKDIALOGCONFIG","features":[3,42,52]},{"name":"TASKDIALOGPARTS","features":[42]},{"name":"TASKDIALOG_BUTTON","features":[42]},{"name":"TASKDIALOG_COMMON_BUTTON_FLAGS","features":[42]},{"name":"TASKDIALOG_ELEMENTS","features":[42]},{"name":"TASKDIALOG_FLAGS","features":[42]},{"name":"TASKDIALOG_ICON_ELEMENTS","features":[42]},{"name":"TASKDIALOG_MESSAGES","features":[42]},{"name":"TASKDIALOG_NOTIFICATIONS","features":[42]},{"name":"TASKLINKSTATES","features":[42]},{"name":"TATF_HASINITIALVALUES","features":[42]},{"name":"TATF_HASORIGINVALUES","features":[42]},{"name":"TATF_NONE","features":[42]},{"name":"TATF_TARGETVALUES_USER","features":[42]},{"name":"TATT_CLIP","features":[42]},{"name":"TATT_OPACITY","features":[42]},{"name":"TATT_SCALE_2D","features":[42]},{"name":"TATT_TRANSLATE_2D","features":[42]},{"name":"TA_CUBIC_BEZIER","features":[42]},{"name":"TA_PROPERTY","features":[42]},{"name":"TA_PROPERTY_FLAG","features":[42]},{"name":"TA_TIMINGFUNCTION","features":[42]},{"name":"TA_TIMINGFUNCTION_TYPE","features":[42]},{"name":"TA_TRANSFORM","features":[42]},{"name":"TA_TRANSFORM_2D","features":[42]},{"name":"TA_TRANSFORM_CLIP","features":[42]},{"name":"TA_TRANSFORM_FLAG","features":[42]},{"name":"TA_TRANSFORM_OPACITY","features":[42]},{"name":"TA_TRANSFORM_TYPE","features":[42]},{"name":"TBADDBITMAP","features":[3,42]},{"name":"TBBF_LARGE","features":[42]},{"name":"TBBUTTON","features":[42]},{"name":"TBBUTTON","features":[42]},{"name":"TBBUTTONINFOA","features":[42]},{"name":"TBBUTTONINFOW","features":[42]},{"name":"TBBUTTONINFOW_MASK","features":[42]},{"name":"TBCDRF_BLENDICON","features":[42]},{"name":"TBCDRF_HILITEHOTTRACK","features":[42]},{"name":"TBCDRF_NOBACKGROUND","features":[42]},{"name":"TBCDRF_NOEDGES","features":[42]},{"name":"TBCDRF_NOETCHEDEFFECT","features":[42]},{"name":"TBCDRF_NOMARK","features":[42]},{"name":"TBCDRF_NOOFFSET","features":[42]},{"name":"TBCDRF_USECDCOLORS","features":[42]},{"name":"TBCD_CHANNEL","features":[42]},{"name":"TBCD_THUMB","features":[42]},{"name":"TBCD_TICS","features":[42]},{"name":"TBDDRET_DEFAULT","features":[42]},{"name":"TBDDRET_NODEFAULT","features":[42]},{"name":"TBDDRET_TREATPRESSED","features":[42]},{"name":"TBIF_BYINDEX","features":[42]},{"name":"TBIF_COMMAND","features":[42]},{"name":"TBIF_IMAGE","features":[42]},{"name":"TBIF_LPARAM","features":[42]},{"name":"TBIF_SIZE","features":[42]},{"name":"TBIF_STATE","features":[42]},{"name":"TBIF_STYLE","features":[42]},{"name":"TBIF_TEXT","features":[42]},{"name":"TBIMHT_AFTER","features":[42]},{"name":"TBIMHT_BACKGROUND","features":[42]},{"name":"TBIMHT_NONE","features":[42]},{"name":"TBINSERTMARK","features":[42]},{"name":"TBINSERTMARK_FLAGS","features":[42]},{"name":"TBMETRICS","features":[42]},{"name":"TBMF_BARPAD","features":[42]},{"name":"TBMF_BUTTONSPACING","features":[42]},{"name":"TBMF_PAD","features":[42]},{"name":"TBM_CLEARSEL","features":[42]},{"name":"TBM_CLEARTICS","features":[42]},{"name":"TBM_GETBUDDY","features":[42]},{"name":"TBM_GETCHANNELRECT","features":[42]},{"name":"TBM_GETLINESIZE","features":[42]},{"name":"TBM_GETNUMTICS","features":[42]},{"name":"TBM_GETPAGESIZE","features":[42]},{"name":"TBM_GETPTICS","features":[42]},{"name":"TBM_GETRANGEMAX","features":[42]},{"name":"TBM_GETRANGEMIN","features":[42]},{"name":"TBM_GETSELEND","features":[42]},{"name":"TBM_GETSELSTART","features":[42]},{"name":"TBM_GETTHUMBLENGTH","features":[42]},{"name":"TBM_GETTHUMBRECT","features":[42]},{"name":"TBM_GETTIC","features":[42]},{"name":"TBM_GETTICPOS","features":[42]},{"name":"TBM_GETTOOLTIPS","features":[42]},{"name":"TBM_GETUNICODEFORMAT","features":[42]},{"name":"TBM_SETBUDDY","features":[42]},{"name":"TBM_SETLINESIZE","features":[42]},{"name":"TBM_SETPAGESIZE","features":[42]},{"name":"TBM_SETPOS","features":[42]},{"name":"TBM_SETPOSNOTIFY","features":[42]},{"name":"TBM_SETRANGE","features":[42]},{"name":"TBM_SETRANGEMAX","features":[42]},{"name":"TBM_SETRANGEMIN","features":[42]},{"name":"TBM_SETSEL","features":[42]},{"name":"TBM_SETSELEND","features":[42]},{"name":"TBM_SETSELSTART","features":[42]},{"name":"TBM_SETTHUMBLENGTH","features":[42]},{"name":"TBM_SETTIC","features":[42]},{"name":"TBM_SETTICFREQ","features":[42]},{"name":"TBM_SETTIPSIDE","features":[42]},{"name":"TBM_SETTOOLTIPS","features":[42]},{"name":"TBM_SETUNICODEFORMAT","features":[42]},{"name":"TBNF_DI_SETITEM","features":[42]},{"name":"TBNF_IMAGE","features":[42]},{"name":"TBNF_TEXT","features":[42]},{"name":"TBNRF_ENDCUSTOMIZE","features":[42]},{"name":"TBNRF_HIDEHELP","features":[42]},{"name":"TBN_BEGINADJUST","features":[42]},{"name":"TBN_BEGINDRAG","features":[42]},{"name":"TBN_CUSTHELP","features":[42]},{"name":"TBN_DELETINGBUTTON","features":[42]},{"name":"TBN_DRAGOUT","features":[42]},{"name":"TBN_DRAGOVER","features":[42]},{"name":"TBN_DROPDOWN","features":[42]},{"name":"TBN_DUPACCELERATOR","features":[42]},{"name":"TBN_ENDADJUST","features":[42]},{"name":"TBN_ENDDRAG","features":[42]},{"name":"TBN_FIRST","features":[42]},{"name":"TBN_GETBUTTONINFO","features":[42]},{"name":"TBN_GETBUTTONINFOA","features":[42]},{"name":"TBN_GETBUTTONINFOW","features":[42]},{"name":"TBN_GETDISPINFO","features":[42]},{"name":"TBN_GETDISPINFOA","features":[42]},{"name":"TBN_GETDISPINFOW","features":[42]},{"name":"TBN_GETINFOTIP","features":[42]},{"name":"TBN_GETINFOTIPA","features":[42]},{"name":"TBN_GETINFOTIPW","features":[42]},{"name":"TBN_GETOBJECT","features":[42]},{"name":"TBN_HOTITEMCHANGE","features":[42]},{"name":"TBN_INITCUSTOMIZE","features":[42]},{"name":"TBN_LAST","features":[42]},{"name":"TBN_MAPACCELERATOR","features":[42]},{"name":"TBN_QUERYDELETE","features":[42]},{"name":"TBN_QUERYINSERT","features":[42]},{"name":"TBN_RESET","features":[42]},{"name":"TBN_RESTORE","features":[42]},{"name":"TBN_SAVE","features":[42]},{"name":"TBN_TOOLBARCHANGE","features":[42]},{"name":"TBN_WRAPACCELERATOR","features":[42]},{"name":"TBN_WRAPHOTITEM","features":[42]},{"name":"TBP_BACKGROUNDBOTTOM","features":[42]},{"name":"TBP_BACKGROUNDLEFT","features":[42]},{"name":"TBP_BACKGROUNDRIGHT","features":[42]},{"name":"TBP_BACKGROUNDTOP","features":[42]},{"name":"TBP_SIZINGBARBOTTOM","features":[42]},{"name":"TBP_SIZINGBARLEFT","features":[42]},{"name":"TBP_SIZINGBARRIGHT","features":[42]},{"name":"TBP_SIZINGBARTOP","features":[42]},{"name":"TBREPLACEBITMAP","features":[3,42]},{"name":"TBSAVEPARAMSA","features":[51,42]},{"name":"TBSAVEPARAMSW","features":[51,42]},{"name":"TBSTATE_CHECKED","features":[42]},{"name":"TBSTATE_ELLIPSES","features":[42]},{"name":"TBSTATE_ENABLED","features":[42]},{"name":"TBSTATE_HIDDEN","features":[42]},{"name":"TBSTATE_INDETERMINATE","features":[42]},{"name":"TBSTATE_MARKED","features":[42]},{"name":"TBSTATE_PRESSED","features":[42]},{"name":"TBSTATE_WRAP","features":[42]},{"name":"TBSTYLE_ALTDRAG","features":[42]},{"name":"TBSTYLE_AUTOSIZE","features":[42]},{"name":"TBSTYLE_BUTTON","features":[42]},{"name":"TBSTYLE_CHECK","features":[42]},{"name":"TBSTYLE_CUSTOMERASE","features":[42]},{"name":"TBSTYLE_DROPDOWN","features":[42]},{"name":"TBSTYLE_EX_DOUBLEBUFFER","features":[42]},{"name":"TBSTYLE_EX_DRAWDDARROWS","features":[42]},{"name":"TBSTYLE_EX_HIDECLIPPEDBUTTONS","features":[42]},{"name":"TBSTYLE_EX_MIXEDBUTTONS","features":[42]},{"name":"TBSTYLE_EX_MULTICOLUMN","features":[42]},{"name":"TBSTYLE_EX_VERTICAL","features":[42]},{"name":"TBSTYLE_FLAT","features":[42]},{"name":"TBSTYLE_GROUP","features":[42]},{"name":"TBSTYLE_LIST","features":[42]},{"name":"TBSTYLE_NOPREFIX","features":[42]},{"name":"TBSTYLE_REGISTERDROP","features":[42]},{"name":"TBSTYLE_SEP","features":[42]},{"name":"TBSTYLE_TOOLTIPS","features":[42]},{"name":"TBSTYLE_TRANSPARENT","features":[42]},{"name":"TBSTYLE_WRAPABLE","features":[42]},{"name":"TBS_AUTOTICKS","features":[42]},{"name":"TBS_BOTH","features":[42]},{"name":"TBS_BOTTOM","features":[42]},{"name":"TBS_DOWNISLEFT","features":[42]},{"name":"TBS_ENABLESELRANGE","features":[42]},{"name":"TBS_FIXEDLENGTH","features":[42]},{"name":"TBS_HORZ","features":[42]},{"name":"TBS_LEFT","features":[42]},{"name":"TBS_NOTHUMB","features":[42]},{"name":"TBS_NOTICKS","features":[42]},{"name":"TBS_NOTIFYBEFOREMOVE","features":[42]},{"name":"TBS_REVERSED","features":[42]},{"name":"TBS_RIGHT","features":[42]},{"name":"TBS_TOOLTIPS","features":[42]},{"name":"TBS_TOP","features":[42]},{"name":"TBS_TRANSPARENTBKGND","features":[42]},{"name":"TBS_VERT","features":[42]},{"name":"TBTS_BOTTOM","features":[42]},{"name":"TBTS_LEFT","features":[42]},{"name":"TBTS_RIGHT","features":[42]},{"name":"TBTS_TOP","features":[42]},{"name":"TB_ADDBITMAP","features":[42]},{"name":"TB_ADDBUTTONS","features":[42]},{"name":"TB_ADDBUTTONSA","features":[42]},{"name":"TB_ADDBUTTONSW","features":[42]},{"name":"TB_ADDSTRING","features":[42]},{"name":"TB_ADDSTRINGA","features":[42]},{"name":"TB_ADDSTRINGW","features":[42]},{"name":"TB_AUTOSIZE","features":[42]},{"name":"TB_BOTTOM","features":[42]},{"name":"TB_BUTTONCOUNT","features":[42]},{"name":"TB_BUTTONSTRUCTSIZE","features":[42]},{"name":"TB_CHANGEBITMAP","features":[42]},{"name":"TB_CHECKBUTTON","features":[42]},{"name":"TB_COMMANDTOINDEX","features":[42]},{"name":"TB_CUSTOMIZE","features":[42]},{"name":"TB_DELETEBUTTON","features":[42]},{"name":"TB_ENABLEBUTTON","features":[42]},{"name":"TB_ENDTRACK","features":[42]},{"name":"TB_GETANCHORHIGHLIGHT","features":[42]},{"name":"TB_GETBITMAP","features":[42]},{"name":"TB_GETBITMAPFLAGS","features":[42]},{"name":"TB_GETBUTTON","features":[42]},{"name":"TB_GETBUTTONINFO","features":[42]},{"name":"TB_GETBUTTONINFOA","features":[42]},{"name":"TB_GETBUTTONINFOW","features":[42]},{"name":"TB_GETBUTTONSIZE","features":[42]},{"name":"TB_GETBUTTONTEXT","features":[42]},{"name":"TB_GETBUTTONTEXTA","features":[42]},{"name":"TB_GETBUTTONTEXTW","features":[42]},{"name":"TB_GETCOLORSCHEME","features":[42]},{"name":"TB_GETDISABLEDIMAGELIST","features":[42]},{"name":"TB_GETEXTENDEDSTYLE","features":[42]},{"name":"TB_GETHOTIMAGELIST","features":[42]},{"name":"TB_GETHOTITEM","features":[42]},{"name":"TB_GETIDEALSIZE","features":[42]},{"name":"TB_GETIMAGELIST","features":[42]},{"name":"TB_GETIMAGELISTCOUNT","features":[42]},{"name":"TB_GETINSERTMARK","features":[42]},{"name":"TB_GETINSERTMARKCOLOR","features":[42]},{"name":"TB_GETITEMDROPDOWNRECT","features":[42]},{"name":"TB_GETITEMRECT","features":[42]},{"name":"TB_GETMAXSIZE","features":[42]},{"name":"TB_GETMETRICS","features":[42]},{"name":"TB_GETOBJECT","features":[42]},{"name":"TB_GETPADDING","features":[42]},{"name":"TB_GETPRESSEDIMAGELIST","features":[42]},{"name":"TB_GETRECT","features":[42]},{"name":"TB_GETROWS","features":[42]},{"name":"TB_GETSTATE","features":[42]},{"name":"TB_GETSTRING","features":[42]},{"name":"TB_GETSTRINGA","features":[42]},{"name":"TB_GETSTRINGW","features":[42]},{"name":"TB_GETSTYLE","features":[42]},{"name":"TB_GETTEXTROWS","features":[42]},{"name":"TB_GETTOOLTIPS","features":[42]},{"name":"TB_GETUNICODEFORMAT","features":[42]},{"name":"TB_HASACCELERATOR","features":[42]},{"name":"TB_HIDEBUTTON","features":[42]},{"name":"TB_HITTEST","features":[42]},{"name":"TB_INDETERMINATE","features":[42]},{"name":"TB_INSERTBUTTON","features":[42]},{"name":"TB_INSERTBUTTONA","features":[42]},{"name":"TB_INSERTBUTTONW","features":[42]},{"name":"TB_INSERTMARKHITTEST","features":[42]},{"name":"TB_ISBUTTONCHECKED","features":[42]},{"name":"TB_ISBUTTONENABLED","features":[42]},{"name":"TB_ISBUTTONHIDDEN","features":[42]},{"name":"TB_ISBUTTONHIGHLIGHTED","features":[42]},{"name":"TB_ISBUTTONINDETERMINATE","features":[42]},{"name":"TB_ISBUTTONPRESSED","features":[42]},{"name":"TB_LINEDOWN","features":[42]},{"name":"TB_LINEUP","features":[42]},{"name":"TB_LOADIMAGES","features":[42]},{"name":"TB_MAPACCELERATOR","features":[42]},{"name":"TB_MAPACCELERATORA","features":[42]},{"name":"TB_MAPACCELERATORW","features":[42]},{"name":"TB_MARKBUTTON","features":[42]},{"name":"TB_MOVEBUTTON","features":[42]},{"name":"TB_PAGEDOWN","features":[42]},{"name":"TB_PAGEUP","features":[42]},{"name":"TB_PRESSBUTTON","features":[42]},{"name":"TB_REPLACEBITMAP","features":[42]},{"name":"TB_SAVERESTORE","features":[42]},{"name":"TB_SAVERESTOREA","features":[42]},{"name":"TB_SAVERESTOREW","features":[42]},{"name":"TB_SETANCHORHIGHLIGHT","features":[42]},{"name":"TB_SETBITMAPSIZE","features":[42]},{"name":"TB_SETBOUNDINGSIZE","features":[42]},{"name":"TB_SETBUTTONINFO","features":[42]},{"name":"TB_SETBUTTONINFOA","features":[42]},{"name":"TB_SETBUTTONINFOW","features":[42]},{"name":"TB_SETBUTTONSIZE","features":[42]},{"name":"TB_SETBUTTONWIDTH","features":[42]},{"name":"TB_SETCMDID","features":[42]},{"name":"TB_SETCOLORSCHEME","features":[42]},{"name":"TB_SETDISABLEDIMAGELIST","features":[42]},{"name":"TB_SETDRAWTEXTFLAGS","features":[42]},{"name":"TB_SETEXTENDEDSTYLE","features":[42]},{"name":"TB_SETHOTIMAGELIST","features":[42]},{"name":"TB_SETHOTITEM","features":[42]},{"name":"TB_SETHOTITEM2","features":[42]},{"name":"TB_SETIMAGELIST","features":[42]},{"name":"TB_SETINDENT","features":[42]},{"name":"TB_SETINSERTMARK","features":[42]},{"name":"TB_SETINSERTMARKCOLOR","features":[42]},{"name":"TB_SETLISTGAP","features":[42]},{"name":"TB_SETMAXTEXTROWS","features":[42]},{"name":"TB_SETMETRICS","features":[42]},{"name":"TB_SETPADDING","features":[42]},{"name":"TB_SETPARENT","features":[42]},{"name":"TB_SETPRESSEDIMAGELIST","features":[42]},{"name":"TB_SETROWS","features":[42]},{"name":"TB_SETSTATE","features":[42]},{"name":"TB_SETSTYLE","features":[42]},{"name":"TB_SETTOOLTIPS","features":[42]},{"name":"TB_SETUNICODEFORMAT","features":[42]},{"name":"TB_SETWINDOWTHEME","features":[42]},{"name":"TB_THUMBPOSITION","features":[42]},{"name":"TB_THUMBTRACK","features":[42]},{"name":"TB_TOP","features":[42]},{"name":"TCHITTESTINFO","features":[3,42]},{"name":"TCHITTESTINFO_FLAGS","features":[42]},{"name":"TCHT_NOWHERE","features":[42]},{"name":"TCHT_ONITEM","features":[42]},{"name":"TCHT_ONITEMICON","features":[42]},{"name":"TCHT_ONITEMLABEL","features":[42]},{"name":"TCIF_IMAGE","features":[42]},{"name":"TCIF_PARAM","features":[42]},{"name":"TCIF_RTLREADING","features":[42]},{"name":"TCIF_STATE","features":[42]},{"name":"TCIF_TEXT","features":[42]},{"name":"TCIS_BUTTONPRESSED","features":[42]},{"name":"TCIS_HIGHLIGHTED","features":[42]},{"name":"TCITEMA","features":[3,42]},{"name":"TCITEMHEADERA","features":[42]},{"name":"TCITEMHEADERA_MASK","features":[42]},{"name":"TCITEMHEADERW","features":[42]},{"name":"TCITEMW","features":[3,42]},{"name":"TCM_ADJUSTRECT","features":[42]},{"name":"TCM_DELETEALLITEMS","features":[42]},{"name":"TCM_DELETEITEM","features":[42]},{"name":"TCM_DESELECTALL","features":[42]},{"name":"TCM_FIRST","features":[42]},{"name":"TCM_GETCURFOCUS","features":[42]},{"name":"TCM_GETCURSEL","features":[42]},{"name":"TCM_GETEXTENDEDSTYLE","features":[42]},{"name":"TCM_GETIMAGELIST","features":[42]},{"name":"TCM_GETITEM","features":[42]},{"name":"TCM_GETITEMA","features":[42]},{"name":"TCM_GETITEMCOUNT","features":[42]},{"name":"TCM_GETITEMRECT","features":[42]},{"name":"TCM_GETITEMW","features":[42]},{"name":"TCM_GETROWCOUNT","features":[42]},{"name":"TCM_GETTOOLTIPS","features":[42]},{"name":"TCM_GETUNICODEFORMAT","features":[42]},{"name":"TCM_HIGHLIGHTITEM","features":[42]},{"name":"TCM_HITTEST","features":[42]},{"name":"TCM_INSERTITEM","features":[42]},{"name":"TCM_INSERTITEMA","features":[42]},{"name":"TCM_INSERTITEMW","features":[42]},{"name":"TCM_REMOVEIMAGE","features":[42]},{"name":"TCM_SETCURFOCUS","features":[42]},{"name":"TCM_SETCURSEL","features":[42]},{"name":"TCM_SETEXTENDEDSTYLE","features":[42]},{"name":"TCM_SETIMAGELIST","features":[42]},{"name":"TCM_SETITEM","features":[42]},{"name":"TCM_SETITEMA","features":[42]},{"name":"TCM_SETITEMEXTRA","features":[42]},{"name":"TCM_SETITEMSIZE","features":[42]},{"name":"TCM_SETITEMW","features":[42]},{"name":"TCM_SETMINTABWIDTH","features":[42]},{"name":"TCM_SETPADDING","features":[42]},{"name":"TCM_SETTOOLTIPS","features":[42]},{"name":"TCM_SETUNICODEFORMAT","features":[42]},{"name":"TCN_FIRST","features":[42]},{"name":"TCN_FOCUSCHANGE","features":[42]},{"name":"TCN_GETOBJECT","features":[42]},{"name":"TCN_KEYDOWN","features":[42]},{"name":"TCN_LAST","features":[42]},{"name":"TCN_SELCHANGE","features":[42]},{"name":"TCN_SELCHANGING","features":[42]},{"name":"TCS_BOTTOM","features":[42]},{"name":"TCS_BUTTONS","features":[42]},{"name":"TCS_EX_FLATSEPARATORS","features":[42]},{"name":"TCS_EX_REGISTERDROP","features":[42]},{"name":"TCS_FIXEDWIDTH","features":[42]},{"name":"TCS_FLATBUTTONS","features":[42]},{"name":"TCS_FOCUSNEVER","features":[42]},{"name":"TCS_FOCUSONBUTTONDOWN","features":[42]},{"name":"TCS_FORCEICONLEFT","features":[42]},{"name":"TCS_FORCELABELLEFT","features":[42]},{"name":"TCS_HOTTRACK","features":[42]},{"name":"TCS_MULTILINE","features":[42]},{"name":"TCS_MULTISELECT","features":[42]},{"name":"TCS_OWNERDRAWFIXED","features":[42]},{"name":"TCS_RAGGEDRIGHT","features":[42]},{"name":"TCS_RIGHT","features":[42]},{"name":"TCS_RIGHTJUSTIFY","features":[42]},{"name":"TCS_SCROLLOPPOSITE","features":[42]},{"name":"TCS_SINGLELINE","features":[42]},{"name":"TCS_TABS","features":[42]},{"name":"TCS_TOOLTIPS","features":[42]},{"name":"TCS_VERTICAL","features":[42]},{"name":"TDCBF_ABORT_BUTTON","features":[42]},{"name":"TDCBF_CANCEL_BUTTON","features":[42]},{"name":"TDCBF_CLOSE_BUTTON","features":[42]},{"name":"TDCBF_CONTINUE_BUTTON","features":[42]},{"name":"TDCBF_HELP_BUTTON","features":[42]},{"name":"TDCBF_IGNORE_BUTTON","features":[42]},{"name":"TDCBF_NO_BUTTON","features":[42]},{"name":"TDCBF_OK_BUTTON","features":[42]},{"name":"TDCBF_RETRY_BUTTON","features":[42]},{"name":"TDCBF_TRYAGAIN_BUTTON","features":[42]},{"name":"TDCBF_YES_BUTTON","features":[42]},{"name":"TDE_CONTENT","features":[42]},{"name":"TDE_EXPANDED_INFORMATION","features":[42]},{"name":"TDE_FOOTER","features":[42]},{"name":"TDE_MAIN_INSTRUCTION","features":[42]},{"name":"TDF_ALLOW_DIALOG_CANCELLATION","features":[42]},{"name":"TDF_CALLBACK_TIMER","features":[42]},{"name":"TDF_CAN_BE_MINIMIZED","features":[42]},{"name":"TDF_ENABLE_HYPERLINKS","features":[42]},{"name":"TDF_EXPANDED_BY_DEFAULT","features":[42]},{"name":"TDF_EXPAND_FOOTER_AREA","features":[42]},{"name":"TDF_NO_DEFAULT_RADIO_BUTTON","features":[42]},{"name":"TDF_NO_SET_FOREGROUND","features":[42]},{"name":"TDF_POSITION_RELATIVE_TO_WINDOW","features":[42]},{"name":"TDF_RTL_LAYOUT","features":[42]},{"name":"TDF_SHOW_MARQUEE_PROGRESS_BAR","features":[42]},{"name":"TDF_SHOW_PROGRESS_BAR","features":[42]},{"name":"TDF_SIZE_TO_CONTENT","features":[42]},{"name":"TDF_USE_COMMAND_LINKS","features":[42]},{"name":"TDF_USE_COMMAND_LINKS_NO_ICON","features":[42]},{"name":"TDF_USE_HICON_FOOTER","features":[42]},{"name":"TDF_USE_HICON_MAIN","features":[42]},{"name":"TDF_VERIFICATION_FLAG_CHECKED","features":[42]},{"name":"TDIE_ICON_FOOTER","features":[42]},{"name":"TDIE_ICON_MAIN","features":[42]},{"name":"TDLGCPS_STANDALONE","features":[42]},{"name":"TDLGEBS_EXPANDEDDISABLED","features":[42]},{"name":"TDLGEBS_EXPANDEDHOVER","features":[42]},{"name":"TDLGEBS_EXPANDEDNORMAL","features":[42]},{"name":"TDLGEBS_EXPANDEDPRESSED","features":[42]},{"name":"TDLGEBS_HOVER","features":[42]},{"name":"TDLGEBS_NORMAL","features":[42]},{"name":"TDLGEBS_NORMALDISABLED","features":[42]},{"name":"TDLGEBS_PRESSED","features":[42]},{"name":"TDLG_BUTTONSECTION","features":[42]},{"name":"TDLG_BUTTONWRAPPER","features":[42]},{"name":"TDLG_COMMANDLINKPANE","features":[42]},{"name":"TDLG_CONTENTICON","features":[42]},{"name":"TDLG_CONTENTPANE","features":[42]},{"name":"TDLG_CONTROLPANE","features":[42]},{"name":"TDLG_EXPANDEDCONTENT","features":[42]},{"name":"TDLG_EXPANDEDFOOTERAREA","features":[42]},{"name":"TDLG_EXPANDOBUTTON","features":[42]},{"name":"TDLG_EXPANDOTEXT","features":[42]},{"name":"TDLG_FOOTNOTEAREA","features":[42]},{"name":"TDLG_FOOTNOTEPANE","features":[42]},{"name":"TDLG_FOOTNOTESEPARATOR","features":[42]},{"name":"TDLG_IMAGEALIGNMENT","features":[42]},{"name":"TDLG_MAINICON","features":[42]},{"name":"TDLG_MAININSTRUCTIONPANE","features":[42]},{"name":"TDLG_PRIMARYPANEL","features":[42]},{"name":"TDLG_PROGRESSBAR","features":[42]},{"name":"TDLG_RADIOBUTTONPANE","features":[42]},{"name":"TDLG_SECONDARYPANEL","features":[42]},{"name":"TDLG_VERIFICATIONTEXT","features":[42]},{"name":"TDM_CLICK_BUTTON","features":[42]},{"name":"TDM_CLICK_RADIO_BUTTON","features":[42]},{"name":"TDM_CLICK_VERIFICATION","features":[42]},{"name":"TDM_ENABLE_BUTTON","features":[42]},{"name":"TDM_ENABLE_RADIO_BUTTON","features":[42]},{"name":"TDM_NAVIGATE_PAGE","features":[42]},{"name":"TDM_SET_BUTTON_ELEVATION_REQUIRED_STATE","features":[42]},{"name":"TDM_SET_ELEMENT_TEXT","features":[42]},{"name":"TDM_SET_MARQUEE_PROGRESS_BAR","features":[42]},{"name":"TDM_SET_PROGRESS_BAR_MARQUEE","features":[42]},{"name":"TDM_SET_PROGRESS_BAR_POS","features":[42]},{"name":"TDM_SET_PROGRESS_BAR_RANGE","features":[42]},{"name":"TDM_SET_PROGRESS_BAR_STATE","features":[42]},{"name":"TDM_UPDATE_ELEMENT_TEXT","features":[42]},{"name":"TDM_UPDATE_ICON","features":[42]},{"name":"TDN_BUTTON_CLICKED","features":[42]},{"name":"TDN_CREATED","features":[42]},{"name":"TDN_DESTROYED","features":[42]},{"name":"TDN_DIALOG_CONSTRUCTED","features":[42]},{"name":"TDN_EXPANDO_BUTTON_CLICKED","features":[42]},{"name":"TDN_HELP","features":[42]},{"name":"TDN_HYPERLINK_CLICKED","features":[42]},{"name":"TDN_NAVIGATED","features":[42]},{"name":"TDN_RADIO_BUTTON_CLICKED","features":[42]},{"name":"TDN_TIMER","features":[42]},{"name":"TDN_VERIFICATION_CLICKED","features":[42]},{"name":"TDP_FLASHBUTTON","features":[42]},{"name":"TDP_FLASHBUTTONGROUPMENU","features":[42]},{"name":"TDP_GROUPCOUNT","features":[42]},{"name":"TD_ERROR_ICON","features":[42]},{"name":"TD_INFORMATION_ICON","features":[42]},{"name":"TD_SHIELD_ICON","features":[42]},{"name":"TD_WARNING_ICON","features":[42]},{"name":"TEXTSELECTIONGRIPPERPARTS","features":[42]},{"name":"TEXTSHADOWTYPE","features":[42]},{"name":"TEXTSTYLEPARTS","features":[42]},{"name":"TEXT_BODYTEXT","features":[42]},{"name":"TEXT_BODYTITLE","features":[42]},{"name":"TEXT_CONTROLLABEL","features":[42]},{"name":"TEXT_EXPANDED","features":[42]},{"name":"TEXT_HYPERLINKTEXT","features":[42]},{"name":"TEXT_INSTRUCTION","features":[42]},{"name":"TEXT_LABEL","features":[42]},{"name":"TEXT_MAININSTRUCTION","features":[42]},{"name":"TEXT_SECONDARYTEXT","features":[42]},{"name":"THEMESIZE","features":[42]},{"name":"THEME_PROPERTY_SYMBOL_ID","features":[42]},{"name":"THUMBBOTTOMSTATES","features":[42]},{"name":"THUMBLEFTSTATES","features":[42]},{"name":"THUMBRIGHTSTATES","features":[42]},{"name":"THUMBSTATES","features":[42]},{"name":"THUMBTOPSTATES","features":[42]},{"name":"THUMBVERTSTATES","features":[42]},{"name":"TIBES_DISABLED","features":[42]},{"name":"TIBES_FOCUSED","features":[42]},{"name":"TIBES_HOT","features":[42]},{"name":"TIBES_NORMAL","features":[42]},{"name":"TIBES_SELECTED","features":[42]},{"name":"TICSSTATES","features":[42]},{"name":"TICSVERTSTATES","features":[42]},{"name":"TILES_DISABLED","features":[42]},{"name":"TILES_FOCUSED","features":[42]},{"name":"TILES_HOT","features":[42]},{"name":"TILES_NORMAL","features":[42]},{"name":"TILES_SELECTED","features":[42]},{"name":"TIRES_DISABLED","features":[42]},{"name":"TIRES_FOCUSED","features":[42]},{"name":"TIRES_HOT","features":[42]},{"name":"TIRES_NORMAL","features":[42]},{"name":"TIRES_SELECTED","features":[42]},{"name":"TIS_DISABLED","features":[42]},{"name":"TIS_FOCUSED","features":[42]},{"name":"TIS_HOT","features":[42]},{"name":"TIS_NORMAL","features":[42]},{"name":"TIS_SELECTED","features":[42]},{"name":"TITLEBARSTATES","features":[42]},{"name":"TKP_THUMB","features":[42]},{"name":"TKP_THUMBBOTTOM","features":[42]},{"name":"TKP_THUMBLEFT","features":[42]},{"name":"TKP_THUMBRIGHT","features":[42]},{"name":"TKP_THUMBTOP","features":[42]},{"name":"TKP_THUMBVERT","features":[42]},{"name":"TKP_TICS","features":[42]},{"name":"TKP_TICSVERT","features":[42]},{"name":"TKP_TRACK","features":[42]},{"name":"TKP_TRACKVERT","features":[42]},{"name":"TKS_NORMAL","features":[42]},{"name":"TMTVS_RESERVEDHIGH","features":[42]},{"name":"TMTVS_RESERVEDLOW","features":[42]},{"name":"TMT_ACCENTCOLORHINT","features":[42]},{"name":"TMT_ACTIVEBORDER","features":[42]},{"name":"TMT_ACTIVECAPTION","features":[42]},{"name":"TMT_ALIAS","features":[42]},{"name":"TMT_ALPHALEVEL","features":[42]},{"name":"TMT_ALPHATHRESHOLD","features":[42]},{"name":"TMT_ALWAYSSHOWSIZINGBAR","features":[42]},{"name":"TMT_ANIMATIONBUTTONRECT","features":[42]},{"name":"TMT_ANIMATIONDELAY","features":[42]},{"name":"TMT_ANIMATIONDURATION","features":[42]},{"name":"TMT_APPWORKSPACE","features":[42]},{"name":"TMT_ATLASIMAGE","features":[42]},{"name":"TMT_ATLASINPUTIMAGE","features":[42]},{"name":"TMT_ATLASRECT","features":[42]},{"name":"TMT_AUTHOR","features":[42]},{"name":"TMT_AUTOSIZE","features":[42]},{"name":"TMT_BACKGROUND","features":[42]},{"name":"TMT_BGFILL","features":[42]},{"name":"TMT_BGTYPE","features":[42]},{"name":"TMT_BITMAPREF","features":[42]},{"name":"TMT_BLENDCOLOR","features":[42]},{"name":"TMT_BODYFONT","features":[42]},{"name":"TMT_BODYTEXTCOLOR","features":[42]},{"name":"TMT_BOOL","features":[42]},{"name":"TMT_BORDERCOLOR","features":[42]},{"name":"TMT_BORDERCOLORHINT","features":[42]},{"name":"TMT_BORDERONLY","features":[42]},{"name":"TMT_BORDERSIZE","features":[42]},{"name":"TMT_BORDERTYPE","features":[42]},{"name":"TMT_BTNFACE","features":[42]},{"name":"TMT_BTNHIGHLIGHT","features":[42]},{"name":"TMT_BTNSHADOW","features":[42]},{"name":"TMT_BTNTEXT","features":[42]},{"name":"TMT_BUTTONALTERNATEFACE","features":[42]},{"name":"TMT_CAPTIONBARHEIGHT","features":[42]},{"name":"TMT_CAPTIONBARWIDTH","features":[42]},{"name":"TMT_CAPTIONFONT","features":[42]},{"name":"TMT_CAPTIONMARGINS","features":[42]},{"name":"TMT_CAPTIONTEXT","features":[42]},{"name":"TMT_CHARSET","features":[42]},{"name":"TMT_CLASSICVALUE","features":[42]},{"name":"TMT_COLOR","features":[42]},{"name":"TMT_COLORIZATIONCOLOR","features":[42]},{"name":"TMT_COLORIZATIONOPACITY","features":[42]},{"name":"TMT_COLORSCHEMES","features":[42]},{"name":"TMT_COMPANY","features":[42]},{"name":"TMT_COMPOSITED","features":[42]},{"name":"TMT_COMPOSITEDOPAQUE","features":[42]},{"name":"TMT_CONTENTALIGNMENT","features":[42]},{"name":"TMT_CONTENTMARGINS","features":[42]},{"name":"TMT_COPYRIGHT","features":[42]},{"name":"TMT_CSSNAME","features":[42]},{"name":"TMT_CUSTOMSPLITRECT","features":[42]},{"name":"TMT_DEFAULTPANESIZE","features":[42]},{"name":"TMT_DESCRIPTION","features":[42]},{"name":"TMT_DIBDATA","features":[42]},{"name":"TMT_DISKSTREAM","features":[42]},{"name":"TMT_DISPLAYNAME","features":[42]},{"name":"TMT_DKSHADOW3D","features":[42]},{"name":"TMT_DRAWBORDERS","features":[42]},{"name":"TMT_EDGEDKSHADOWCOLOR","features":[42]},{"name":"TMT_EDGEFILLCOLOR","features":[42]},{"name":"TMT_EDGEHIGHLIGHTCOLOR","features":[42]},{"name":"TMT_EDGELIGHTCOLOR","features":[42]},{"name":"TMT_EDGESHADOWCOLOR","features":[42]},{"name":"TMT_ENUM","features":[42]},{"name":"TMT_FILENAME","features":[42]},{"name":"TMT_FILLCOLOR","features":[42]},{"name":"TMT_FILLCOLORHINT","features":[42]},{"name":"TMT_FILLTYPE","features":[42]},{"name":"TMT_FIRSTBOOL","features":[42]},{"name":"TMT_FIRSTCOLOR","features":[42]},{"name":"TMT_FIRSTFONT","features":[42]},{"name":"TMT_FIRSTINT","features":[42]},{"name":"TMT_FIRSTSIZE","features":[42]},{"name":"TMT_FIRSTSTRING","features":[42]},{"name":"TMT_FIRST_RCSTRING_NAME","features":[42]},{"name":"TMT_FLATMENUS","features":[42]},{"name":"TMT_FLOAT","features":[42]},{"name":"TMT_FLOATLIST","features":[42]},{"name":"TMT_FONT","features":[42]},{"name":"TMT_FRAMESPERSECOND","features":[42]},{"name":"TMT_FROMCOLOR1","features":[42]},{"name":"TMT_FROMCOLOR2","features":[42]},{"name":"TMT_FROMCOLOR3","features":[42]},{"name":"TMT_FROMCOLOR4","features":[42]},{"name":"TMT_FROMCOLOR5","features":[42]},{"name":"TMT_FROMHUE1","features":[42]},{"name":"TMT_FROMHUE2","features":[42]},{"name":"TMT_FROMHUE3","features":[42]},{"name":"TMT_FROMHUE4","features":[42]},{"name":"TMT_FROMHUE5","features":[42]},{"name":"TMT_GLOWCOLOR","features":[42]},{"name":"TMT_GLOWINTENSITY","features":[42]},{"name":"TMT_GLYPHDIBDATA","features":[42]},{"name":"TMT_GLYPHFONT","features":[42]},{"name":"TMT_GLYPHFONTSIZINGTYPE","features":[42]},{"name":"TMT_GLYPHIMAGEFILE","features":[42]},{"name":"TMT_GLYPHINDEX","features":[42]},{"name":"TMT_GLYPHONLY","features":[42]},{"name":"TMT_GLYPHTEXTCOLOR","features":[42]},{"name":"TMT_GLYPHTRANSPARENT","features":[42]},{"name":"TMT_GLYPHTRANSPARENTCOLOR","features":[42]},{"name":"TMT_GLYPHTYPE","features":[42]},{"name":"TMT_GRADIENTACTIVECAPTION","features":[42]},{"name":"TMT_GRADIENTCOLOR1","features":[42]},{"name":"TMT_GRADIENTCOLOR2","features":[42]},{"name":"TMT_GRADIENTCOLOR3","features":[42]},{"name":"TMT_GRADIENTCOLOR4","features":[42]},{"name":"TMT_GRADIENTCOLOR5","features":[42]},{"name":"TMT_GRADIENTINACTIVECAPTION","features":[42]},{"name":"TMT_GRADIENTRATIO1","features":[42]},{"name":"TMT_GRADIENTRATIO2","features":[42]},{"name":"TMT_GRADIENTRATIO3","features":[42]},{"name":"TMT_GRADIENTRATIO4","features":[42]},{"name":"TMT_GRADIENTRATIO5","features":[42]},{"name":"TMT_GRAYTEXT","features":[42]},{"name":"TMT_HALIGN","features":[42]},{"name":"TMT_HBITMAP","features":[42]},{"name":"TMT_HEADING1FONT","features":[42]},{"name":"TMT_HEADING1TEXTCOLOR","features":[42]},{"name":"TMT_HEADING2FONT","features":[42]},{"name":"TMT_HEADING2TEXTCOLOR","features":[42]},{"name":"TMT_HEIGHT","features":[42]},{"name":"TMT_HIGHLIGHT","features":[42]},{"name":"TMT_HIGHLIGHTTEXT","features":[42]},{"name":"TMT_HOTTRACKING","features":[42]},{"name":"TMT_ICONEFFECT","features":[42]},{"name":"TMT_ICONTITLEFONT","features":[42]},{"name":"TMT_IMAGECOUNT","features":[42]},{"name":"TMT_IMAGEFILE","features":[42]},{"name":"TMT_IMAGEFILE1","features":[42]},{"name":"TMT_IMAGEFILE2","features":[42]},{"name":"TMT_IMAGEFILE3","features":[42]},{"name":"TMT_IMAGEFILE4","features":[42]},{"name":"TMT_IMAGEFILE5","features":[42]},{"name":"TMT_IMAGEFILE6","features":[42]},{"name":"TMT_IMAGEFILE7","features":[42]},{"name":"TMT_IMAGELAYOUT","features":[42]},{"name":"TMT_IMAGESELECTTYPE","features":[42]},{"name":"TMT_INACTIVEBORDER","features":[42]},{"name":"TMT_INACTIVECAPTION","features":[42]},{"name":"TMT_INACTIVECAPTIONTEXT","features":[42]},{"name":"TMT_INFOBK","features":[42]},{"name":"TMT_INFOTEXT","features":[42]},{"name":"TMT_INT","features":[42]},{"name":"TMT_INTEGRALSIZING","features":[42]},{"name":"TMT_INTLIST","features":[42]},{"name":"TMT_LASTBOOL","features":[42]},{"name":"TMT_LASTCOLOR","features":[42]},{"name":"TMT_LASTFONT","features":[42]},{"name":"TMT_LASTINT","features":[42]},{"name":"TMT_LASTSIZE","features":[42]},{"name":"TMT_LASTSTRING","features":[42]},{"name":"TMT_LASTUPDATED","features":[42]},{"name":"TMT_LAST_RCSTRING_NAME","features":[42]},{"name":"TMT_LIGHT3D","features":[42]},{"name":"TMT_LOCALIZEDMIRRORIMAGE","features":[42]},{"name":"TMT_MARGINS","features":[42]},{"name":"TMT_MENU","features":[42]},{"name":"TMT_MENUBAR","features":[42]},{"name":"TMT_MENUBARHEIGHT","features":[42]},{"name":"TMT_MENUBARWIDTH","features":[42]},{"name":"TMT_MENUFONT","features":[42]},{"name":"TMT_MENUHILIGHT","features":[42]},{"name":"TMT_MENUTEXT","features":[42]},{"name":"TMT_MINCOLORDEPTH","features":[42]},{"name":"TMT_MINDPI1","features":[42]},{"name":"TMT_MINDPI2","features":[42]},{"name":"TMT_MINDPI3","features":[42]},{"name":"TMT_MINDPI4","features":[42]},{"name":"TMT_MINDPI5","features":[42]},{"name":"TMT_MINDPI6","features":[42]},{"name":"TMT_MINDPI7","features":[42]},{"name":"TMT_MINSIZE","features":[42]},{"name":"TMT_MINSIZE1","features":[42]},{"name":"TMT_MINSIZE2","features":[42]},{"name":"TMT_MINSIZE3","features":[42]},{"name":"TMT_MINSIZE4","features":[42]},{"name":"TMT_MINSIZE5","features":[42]},{"name":"TMT_MINSIZE6","features":[42]},{"name":"TMT_MINSIZE7","features":[42]},{"name":"TMT_MIRRORIMAGE","features":[42]},{"name":"TMT_MSGBOXFONT","features":[42]},{"name":"TMT_NAME","features":[42]},{"name":"TMT_NOETCHEDEFFECT","features":[42]},{"name":"TMT_NORMALSIZE","features":[42]},{"name":"TMT_OFFSET","features":[42]},{"name":"TMT_OFFSETTYPE","features":[42]},{"name":"TMT_OPACITY","features":[42]},{"name":"TMT_PADDEDBORDERWIDTH","features":[42]},{"name":"TMT_PIXELSPERFRAME","features":[42]},{"name":"TMT_POSITION","features":[42]},{"name":"TMT_PROGRESSCHUNKSIZE","features":[42]},{"name":"TMT_PROGRESSSPACESIZE","features":[42]},{"name":"TMT_RECT","features":[42]},{"name":"TMT_RESERVEDHIGH","features":[42]},{"name":"TMT_RESERVEDLOW","features":[42]},{"name":"TMT_ROUNDCORNERHEIGHT","features":[42]},{"name":"TMT_ROUNDCORNERWIDTH","features":[42]},{"name":"TMT_SATURATION","features":[42]},{"name":"TMT_SCALEDBACKGROUND","features":[42]},{"name":"TMT_SCROLLBAR","features":[42]},{"name":"TMT_SCROLLBARHEIGHT","features":[42]},{"name":"TMT_SCROLLBARWIDTH","features":[42]},{"name":"TMT_SHADOWCOLOR","features":[42]},{"name":"TMT_SIZE","features":[42]},{"name":"TMT_SIZES","features":[42]},{"name":"TMT_SIZINGBORDERWIDTH","features":[42]},{"name":"TMT_SIZINGMARGINS","features":[42]},{"name":"TMT_SIZINGTYPE","features":[42]},{"name":"TMT_SMALLCAPTIONFONT","features":[42]},{"name":"TMT_SMCAPTIONBARHEIGHT","features":[42]},{"name":"TMT_SMCAPTIONBARWIDTH","features":[42]},{"name":"TMT_SOURCEGROW","features":[42]},{"name":"TMT_SOURCESHRINK","features":[42]},{"name":"TMT_STATUSFONT","features":[42]},{"name":"TMT_STREAM","features":[42]},{"name":"TMT_STRING","features":[42]},{"name":"TMT_TEXT","features":[42]},{"name":"TMT_TEXTAPPLYOVERLAY","features":[42]},{"name":"TMT_TEXTBORDERCOLOR","features":[42]},{"name":"TMT_TEXTBORDERSIZE","features":[42]},{"name":"TMT_TEXTCOLOR","features":[42]},{"name":"TMT_TEXTCOLORHINT","features":[42]},{"name":"TMT_TEXTGLOW","features":[42]},{"name":"TMT_TEXTGLOWSIZE","features":[42]},{"name":"TMT_TEXTITALIC","features":[42]},{"name":"TMT_TEXTSHADOWCOLOR","features":[42]},{"name":"TMT_TEXTSHADOWOFFSET","features":[42]},{"name":"TMT_TEXTSHADOWTYPE","features":[42]},{"name":"TMT_TOCOLOR1","features":[42]},{"name":"TMT_TOCOLOR2","features":[42]},{"name":"TMT_TOCOLOR3","features":[42]},{"name":"TMT_TOCOLOR4","features":[42]},{"name":"TMT_TOCOLOR5","features":[42]},{"name":"TMT_TOHUE1","features":[42]},{"name":"TMT_TOHUE2","features":[42]},{"name":"TMT_TOHUE3","features":[42]},{"name":"TMT_TOHUE4","features":[42]},{"name":"TMT_TOHUE5","features":[42]},{"name":"TMT_TOOLTIP","features":[42]},{"name":"TMT_TRANSITIONDURATIONS","features":[42]},{"name":"TMT_TRANSPARENT","features":[42]},{"name":"TMT_TRANSPARENTCOLOR","features":[42]},{"name":"TMT_TRUESIZESCALINGTYPE","features":[42]},{"name":"TMT_TRUESIZESTRETCHMARK","features":[42]},{"name":"TMT_UNIFORMSIZING","features":[42]},{"name":"TMT_URL","features":[42]},{"name":"TMT_USERPICTURE","features":[42]},{"name":"TMT_VALIGN","features":[42]},{"name":"TMT_VERSION","features":[42]},{"name":"TMT_WIDTH","features":[42]},{"name":"TMT_WINDOW","features":[42]},{"name":"TMT_WINDOWFRAME","features":[42]},{"name":"TMT_WINDOWTEXT","features":[42]},{"name":"TMT_XMLNAME","features":[42]},{"name":"TNP_ANIMBACKGROUND","features":[42]},{"name":"TNP_BACKGROUND","features":[42]},{"name":"TOOLBARCLASSNAME","features":[42]},{"name":"TOOLBARCLASSNAMEA","features":[42]},{"name":"TOOLBARCLASSNAMEW","features":[42]},{"name":"TOOLBARPARTS","features":[42]},{"name":"TOOLBARSTYLESTATES","features":[42]},{"name":"TOOLTIPPARTS","features":[42]},{"name":"TOOLTIPS_CLASS","features":[42]},{"name":"TOOLTIPS_CLASSA","features":[42]},{"name":"TOOLTIPS_CLASSW","features":[42]},{"name":"TOOLTIP_FLAGS","features":[42]},{"name":"TOPTABITEMBOTHEDGESTATES","features":[42]},{"name":"TOPTABITEMLEFTEDGESTATES","features":[42]},{"name":"TOPTABITEMRIGHTEDGESTATES","features":[42]},{"name":"TOPTABITEMSTATES","features":[42]},{"name":"TOUCH_HIT_TESTING_INPUT","features":[3,42]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_EVALUATION","features":[3,42]},{"name":"TP_BUTTON","features":[42]},{"name":"TP_DROPDOWNBUTTON","features":[42]},{"name":"TP_DROPDOWNBUTTONGLYPH","features":[42]},{"name":"TP_SEPARATOR","features":[42]},{"name":"TP_SEPARATORVERT","features":[42]},{"name":"TP_SPLITBUTTON","features":[42]},{"name":"TP_SPLITBUTTONDROPDOWN","features":[42]},{"name":"TRACKBARPARTS","features":[42]},{"name":"TRACKBARSTYLESTATES","features":[42]},{"name":"TRACKBAR_CLASS","features":[42]},{"name":"TRACKBAR_CLASSA","features":[42]},{"name":"TRACKBAR_CLASSW","features":[42]},{"name":"TRACKSTATES","features":[42]},{"name":"TRACKVERTSTATES","features":[42]},{"name":"TRAILINGGRIDCELLSTATES","features":[42]},{"name":"TRAILINGGRIDCELLUPPERSTATES","features":[42]},{"name":"TRANSPARENTBACKGROUNDSTATES","features":[42]},{"name":"TRANSPARENTBARSTATES","features":[42]},{"name":"TRANSPARENTBARVERTSTATES","features":[42]},{"name":"TRAYNOTIFYPARTS","features":[42]},{"name":"TRBN_FIRST","features":[42]},{"name":"TRBN_LAST","features":[42]},{"name":"TRBN_THUMBPOSCHANGING","features":[42]},{"name":"TREEITEMSTATES","features":[42]},{"name":"TREEVIEWPARTS","features":[42]},{"name":"TREE_VIEW_ITEM_STATE_FLAGS","features":[42]},{"name":"TREIS_DISABLED","features":[42]},{"name":"TREIS_HOT","features":[42]},{"name":"TREIS_HOTSELECTED","features":[42]},{"name":"TREIS_NORMAL","features":[42]},{"name":"TREIS_SELECTED","features":[42]},{"name":"TREIS_SELECTEDNOTFOCUS","features":[42]},{"name":"TRS_NORMAL","features":[42]},{"name":"TRUESIZESCALINGTYPE","features":[42]},{"name":"TRVS_NORMAL","features":[42]},{"name":"TSGP_GRIPPER","features":[42]},{"name":"TSGS_CENTERED","features":[42]},{"name":"TSGS_NORMAL","features":[42]},{"name":"TSST_DPI","features":[42]},{"name":"TSST_NONE","features":[42]},{"name":"TSST_SIZE","features":[42]},{"name":"TSS_NORMAL","features":[42]},{"name":"TST_CONTINUOUS","features":[42]},{"name":"TST_NONE","features":[42]},{"name":"TST_SINGLE","features":[42]},{"name":"TSVS_NORMAL","features":[42]},{"name":"TS_CHECKED","features":[42]},{"name":"TS_CONTROLLABEL_DISABLED","features":[42]},{"name":"TS_CONTROLLABEL_NORMAL","features":[42]},{"name":"TS_DISABLED","features":[42]},{"name":"TS_DRAW","features":[42]},{"name":"TS_HOT","features":[42]},{"name":"TS_HOTCHECKED","features":[42]},{"name":"TS_HYPERLINK_DISABLED","features":[42]},{"name":"TS_HYPERLINK_HOT","features":[42]},{"name":"TS_HYPERLINK_NORMAL","features":[42]},{"name":"TS_HYPERLINK_PRESSED","features":[42]},{"name":"TS_MIN","features":[42]},{"name":"TS_NEARHOT","features":[42]},{"name":"TS_NORMAL","features":[42]},{"name":"TS_OTHERSIDEHOT","features":[42]},{"name":"TS_PRESSED","features":[42]},{"name":"TS_TRUE","features":[42]},{"name":"TTBSS_POINTINGDOWNCENTERED","features":[42]},{"name":"TTBSS_POINTINGDOWNLEFTWALL","features":[42]},{"name":"TTBSS_POINTINGDOWNRIGHTWALL","features":[42]},{"name":"TTBSS_POINTINGUPCENTERED","features":[42]},{"name":"TTBSS_POINTINGUPLEFTWALL","features":[42]},{"name":"TTBSS_POINTINGUPRIGHTWALL","features":[42]},{"name":"TTBS_LINK","features":[42]},{"name":"TTBS_NORMAL","features":[42]},{"name":"TTCS_HOT","features":[42]},{"name":"TTCS_NORMAL","features":[42]},{"name":"TTCS_PRESSED","features":[42]},{"name":"TTDT_AUTOMATIC","features":[42]},{"name":"TTDT_AUTOPOP","features":[42]},{"name":"TTDT_INITIAL","features":[42]},{"name":"TTDT_RESHOW","features":[42]},{"name":"TTFT_CUBIC_BEZIER","features":[42]},{"name":"TTFT_UNDEFINED","features":[42]},{"name":"TTF_ABSOLUTE","features":[42]},{"name":"TTF_CENTERTIP","features":[42]},{"name":"TTF_DI_SETITEM","features":[42]},{"name":"TTF_IDISHWND","features":[42]},{"name":"TTF_PARSELINKS","features":[42]},{"name":"TTF_RTLREADING","features":[42]},{"name":"TTF_SUBCLASS","features":[42]},{"name":"TTF_TRACK","features":[42]},{"name":"TTF_TRANSPARENT","features":[42]},{"name":"TTGETTITLE","features":[42]},{"name":"TTHITTESTINFOA","features":[3,42]},{"name":"TTHITTESTINFOW","features":[3,42]},{"name":"TTIBES_DISABLED","features":[42]},{"name":"TTIBES_FOCUSED","features":[42]},{"name":"TTIBES_HOT","features":[42]},{"name":"TTIBES_NORMAL","features":[42]},{"name":"TTIBES_SELECTED","features":[42]},{"name":"TTILES_DISABLED","features":[42]},{"name":"TTILES_FOCUSED","features":[42]},{"name":"TTILES_HOT","features":[42]},{"name":"TTILES_NORMAL","features":[42]},{"name":"TTILES_SELECTED","features":[42]},{"name":"TTIRES_DISABLED","features":[42]},{"name":"TTIRES_FOCUSED","features":[42]},{"name":"TTIRES_HOT","features":[42]},{"name":"TTIRES_NORMAL","features":[42]},{"name":"TTIRES_SELECTED","features":[42]},{"name":"TTIS_DISABLED","features":[42]},{"name":"TTIS_FOCUSED","features":[42]},{"name":"TTIS_HOT","features":[42]},{"name":"TTIS_NORMAL","features":[42]},{"name":"TTIS_SELECTED","features":[42]},{"name":"TTI_ERROR","features":[42]},{"name":"TTI_ERROR_LARGE","features":[42]},{"name":"TTI_INFO","features":[42]},{"name":"TTI_INFO_LARGE","features":[42]},{"name":"TTI_NONE","features":[42]},{"name":"TTI_WARNING","features":[42]},{"name":"TTI_WARNING_LARGE","features":[42]},{"name":"TTM_ACTIVATE","features":[42]},{"name":"TTM_ADDTOOL","features":[42]},{"name":"TTM_ADDTOOLA","features":[42]},{"name":"TTM_ADDTOOLW","features":[42]},{"name":"TTM_ADJUSTRECT","features":[42]},{"name":"TTM_DELTOOL","features":[42]},{"name":"TTM_DELTOOLA","features":[42]},{"name":"TTM_DELTOOLW","features":[42]},{"name":"TTM_ENUMTOOLS","features":[42]},{"name":"TTM_ENUMTOOLSA","features":[42]},{"name":"TTM_ENUMTOOLSW","features":[42]},{"name":"TTM_GETBUBBLESIZE","features":[42]},{"name":"TTM_GETCURRENTTOOL","features":[42]},{"name":"TTM_GETCURRENTTOOLA","features":[42]},{"name":"TTM_GETCURRENTTOOLW","features":[42]},{"name":"TTM_GETDELAYTIME","features":[42]},{"name":"TTM_GETMARGIN","features":[42]},{"name":"TTM_GETMAXTIPWIDTH","features":[42]},{"name":"TTM_GETTEXT","features":[42]},{"name":"TTM_GETTEXTA","features":[42]},{"name":"TTM_GETTEXTW","features":[42]},{"name":"TTM_GETTIPBKCOLOR","features":[42]},{"name":"TTM_GETTIPTEXTCOLOR","features":[42]},{"name":"TTM_GETTITLE","features":[42]},{"name":"TTM_GETTOOLCOUNT","features":[42]},{"name":"TTM_GETTOOLINFO","features":[42]},{"name":"TTM_GETTOOLINFOA","features":[42]},{"name":"TTM_GETTOOLINFOW","features":[42]},{"name":"TTM_HITTEST","features":[42]},{"name":"TTM_HITTESTA","features":[42]},{"name":"TTM_HITTESTW","features":[42]},{"name":"TTM_NEWTOOLRECT","features":[42]},{"name":"TTM_NEWTOOLRECTA","features":[42]},{"name":"TTM_NEWTOOLRECTW","features":[42]},{"name":"TTM_POP","features":[42]},{"name":"TTM_POPUP","features":[42]},{"name":"TTM_RELAYEVENT","features":[42]},{"name":"TTM_SETDELAYTIME","features":[42]},{"name":"TTM_SETMARGIN","features":[42]},{"name":"TTM_SETMAXTIPWIDTH","features":[42]},{"name":"TTM_SETTIPBKCOLOR","features":[42]},{"name":"TTM_SETTIPTEXTCOLOR","features":[42]},{"name":"TTM_SETTITLE","features":[42]},{"name":"TTM_SETTITLEA","features":[42]},{"name":"TTM_SETTITLEW","features":[42]},{"name":"TTM_SETTOOLINFO","features":[42]},{"name":"TTM_SETTOOLINFOA","features":[42]},{"name":"TTM_SETTOOLINFOW","features":[42]},{"name":"TTM_SETWINDOWTHEME","features":[42]},{"name":"TTM_TRACKACTIVATE","features":[42]},{"name":"TTM_TRACKPOSITION","features":[42]},{"name":"TTM_UPDATE","features":[42]},{"name":"TTM_UPDATETIPTEXT","features":[42]},{"name":"TTM_UPDATETIPTEXTA","features":[42]},{"name":"TTM_UPDATETIPTEXTW","features":[42]},{"name":"TTM_WINDOWFROMPOINT","features":[42]},{"name":"TTN_FIRST","features":[42]},{"name":"TTN_GETDISPINFO","features":[42]},{"name":"TTN_GETDISPINFOA","features":[42]},{"name":"TTN_GETDISPINFOW","features":[42]},{"name":"TTN_LAST","features":[42]},{"name":"TTN_LINKCLICK","features":[42]},{"name":"TTN_NEEDTEXT","features":[42]},{"name":"TTN_NEEDTEXTA","features":[42]},{"name":"TTN_NEEDTEXTW","features":[42]},{"name":"TTN_POP","features":[42]},{"name":"TTN_SHOW","features":[42]},{"name":"TTP_BALLOON","features":[42]},{"name":"TTP_BALLOONSTEM","features":[42]},{"name":"TTP_BALLOONTITLE","features":[42]},{"name":"TTP_CLOSE","features":[42]},{"name":"TTP_STANDARD","features":[42]},{"name":"TTP_STANDARDTITLE","features":[42]},{"name":"TTP_WRENCH","features":[42]},{"name":"TTSS_LINK","features":[42]},{"name":"TTSS_NORMAL","features":[42]},{"name":"TTS_ALWAYSTIP","features":[42]},{"name":"TTS_BALLOON","features":[42]},{"name":"TTS_CLOSE","features":[42]},{"name":"TTS_NOANIMATE","features":[42]},{"name":"TTS_NOFADE","features":[42]},{"name":"TTS_NOPREFIX","features":[42]},{"name":"TTS_USEVISUALSTYLE","features":[42]},{"name":"TTTOOLINFOA","features":[3,42]},{"name":"TTTOOLINFOW","features":[3,42]},{"name":"TTWS_HOT","features":[42]},{"name":"TTWS_NORMAL","features":[42]},{"name":"TTWS_PRESSED","features":[42]},{"name":"TUBS_DISABLED","features":[42]},{"name":"TUBS_FOCUSED","features":[42]},{"name":"TUBS_HOT","features":[42]},{"name":"TUBS_NORMAL","features":[42]},{"name":"TUBS_PRESSED","features":[42]},{"name":"TUS_DISABLED","features":[42]},{"name":"TUS_FOCUSED","features":[42]},{"name":"TUS_HOT","features":[42]},{"name":"TUS_NORMAL","features":[42]},{"name":"TUS_PRESSED","features":[42]},{"name":"TUTS_DISABLED","features":[42]},{"name":"TUTS_FOCUSED","features":[42]},{"name":"TUTS_HOT","features":[42]},{"name":"TUTS_NORMAL","features":[42]},{"name":"TUTS_PRESSED","features":[42]},{"name":"TUVLS_DISABLED","features":[42]},{"name":"TUVLS_FOCUSED","features":[42]},{"name":"TUVLS_HOT","features":[42]},{"name":"TUVLS_NORMAL","features":[42]},{"name":"TUVLS_PRESSED","features":[42]},{"name":"TUVRS_DISABLED","features":[42]},{"name":"TUVRS_FOCUSED","features":[42]},{"name":"TUVRS_HOT","features":[42]},{"name":"TUVRS_NORMAL","features":[42]},{"name":"TUVRS_PRESSED","features":[42]},{"name":"TUVS_DISABLED","features":[42]},{"name":"TUVS_FOCUSED","features":[42]},{"name":"TUVS_HOT","features":[42]},{"name":"TUVS_NORMAL","features":[42]},{"name":"TUVS_PRESSED","features":[42]},{"name":"TVCDRF_NOIMAGES","features":[42]},{"name":"TVC_BYKEYBOARD","features":[42]},{"name":"TVC_BYMOUSE","features":[42]},{"name":"TVC_UNKNOWN","features":[42]},{"name":"TVE_COLLAPSE","features":[42]},{"name":"TVE_COLLAPSERESET","features":[42]},{"name":"TVE_EXPAND","features":[42]},{"name":"TVE_EXPANDPARTIAL","features":[42]},{"name":"TVE_TOGGLE","features":[42]},{"name":"TVGETITEMPARTRECTINFO","features":[3,42]},{"name":"TVGIPR_BUTTON","features":[42]},{"name":"TVGN_CARET","features":[42]},{"name":"TVGN_CHILD","features":[42]},{"name":"TVGN_DROPHILITE","features":[42]},{"name":"TVGN_FIRSTVISIBLE","features":[42]},{"name":"TVGN_LASTVISIBLE","features":[42]},{"name":"TVGN_NEXT","features":[42]},{"name":"TVGN_NEXTSELECTED","features":[42]},{"name":"TVGN_NEXTVISIBLE","features":[42]},{"name":"TVGN_PARENT","features":[42]},{"name":"TVGN_PREVIOUS","features":[42]},{"name":"TVGN_PREVIOUSVISIBLE","features":[42]},{"name":"TVGN_ROOT","features":[42]},{"name":"TVHITTESTINFO","features":[3,42]},{"name":"TVHITTESTINFO_FLAGS","features":[42]},{"name":"TVHT_ABOVE","features":[42]},{"name":"TVHT_BELOW","features":[42]},{"name":"TVHT_NOWHERE","features":[42]},{"name":"TVHT_ONITEM","features":[42]},{"name":"TVHT_ONITEMBUTTON","features":[42]},{"name":"TVHT_ONITEMICON","features":[42]},{"name":"TVHT_ONITEMINDENT","features":[42]},{"name":"TVHT_ONITEMLABEL","features":[42]},{"name":"TVHT_ONITEMRIGHT","features":[42]},{"name":"TVHT_ONITEMSTATEICON","features":[42]},{"name":"TVHT_TOLEFT","features":[42]},{"name":"TVHT_TORIGHT","features":[42]},{"name":"TVIF_CHILDREN","features":[42]},{"name":"TVIF_DI_SETITEM","features":[42]},{"name":"TVIF_EXPANDEDIMAGE","features":[42]},{"name":"TVIF_HANDLE","features":[42]},{"name":"TVIF_IMAGE","features":[42]},{"name":"TVIF_INTEGRAL","features":[42]},{"name":"TVIF_PARAM","features":[42]},{"name":"TVIF_SELECTEDIMAGE","features":[42]},{"name":"TVIF_STATE","features":[42]},{"name":"TVIF_STATEEX","features":[42]},{"name":"TVIF_TEXT","features":[42]},{"name":"TVINSERTSTRUCTA","features":[3,42]},{"name":"TVINSERTSTRUCTW","features":[3,42]},{"name":"TVIS_BOLD","features":[42]},{"name":"TVIS_CUT","features":[42]},{"name":"TVIS_DROPHILITED","features":[42]},{"name":"TVIS_EXPANDED","features":[42]},{"name":"TVIS_EXPANDEDONCE","features":[42]},{"name":"TVIS_EXPANDPARTIAL","features":[42]},{"name":"TVIS_EX_ALL","features":[42]},{"name":"TVIS_EX_DISABLED","features":[42]},{"name":"TVIS_EX_FLAT","features":[42]},{"name":"TVIS_OVERLAYMASK","features":[42]},{"name":"TVIS_SELECTED","features":[42]},{"name":"TVIS_STATEIMAGEMASK","features":[42]},{"name":"TVIS_USERMASK","features":[42]},{"name":"TVITEMA","features":[3,42]},{"name":"TVITEMEXA","features":[3,42]},{"name":"TVITEMEXW","features":[3,42]},{"name":"TVITEMEXW_CHILDREN","features":[42]},{"name":"TVITEMPART","features":[42]},{"name":"TVITEMW","features":[3,42]},{"name":"TVITEM_MASK","features":[42]},{"name":"TVI_FIRST","features":[42]},{"name":"TVI_LAST","features":[42]},{"name":"TVI_ROOT","features":[42]},{"name":"TVI_SORT","features":[42]},{"name":"TVM_CREATEDRAGIMAGE","features":[42]},{"name":"TVM_DELETEITEM","features":[42]},{"name":"TVM_EDITLABEL","features":[42]},{"name":"TVM_EDITLABELA","features":[42]},{"name":"TVM_EDITLABELW","features":[42]},{"name":"TVM_ENDEDITLABELNOW","features":[42]},{"name":"TVM_ENSUREVISIBLE","features":[42]},{"name":"TVM_EXPAND","features":[42]},{"name":"TVM_GETBKCOLOR","features":[42]},{"name":"TVM_GETCOUNT","features":[42]},{"name":"TVM_GETEDITCONTROL","features":[42]},{"name":"TVM_GETEXTENDEDSTYLE","features":[42]},{"name":"TVM_GETIMAGELIST","features":[42]},{"name":"TVM_GETINDENT","features":[42]},{"name":"TVM_GETINSERTMARKCOLOR","features":[42]},{"name":"TVM_GETISEARCHSTRING","features":[42]},{"name":"TVM_GETISEARCHSTRINGA","features":[42]},{"name":"TVM_GETISEARCHSTRINGW","features":[42]},{"name":"TVM_GETITEM","features":[42]},{"name":"TVM_GETITEMA","features":[42]},{"name":"TVM_GETITEMHEIGHT","features":[42]},{"name":"TVM_GETITEMPARTRECT","features":[42]},{"name":"TVM_GETITEMRECT","features":[42]},{"name":"TVM_GETITEMSTATE","features":[42]},{"name":"TVM_GETITEMW","features":[42]},{"name":"TVM_GETLINECOLOR","features":[42]},{"name":"TVM_GETNEXTITEM","features":[42]},{"name":"TVM_GETSCROLLTIME","features":[42]},{"name":"TVM_GETSELECTEDCOUNT","features":[42]},{"name":"TVM_GETTEXTCOLOR","features":[42]},{"name":"TVM_GETTOOLTIPS","features":[42]},{"name":"TVM_GETUNICODEFORMAT","features":[42]},{"name":"TVM_GETVISIBLECOUNT","features":[42]},{"name":"TVM_HITTEST","features":[42]},{"name":"TVM_INSERTITEM","features":[42]},{"name":"TVM_INSERTITEMA","features":[42]},{"name":"TVM_INSERTITEMW","features":[42]},{"name":"TVM_MAPACCIDTOHTREEITEM","features":[42]},{"name":"TVM_MAPHTREEITEMTOACCID","features":[42]},{"name":"TVM_SELECTITEM","features":[42]},{"name":"TVM_SETAUTOSCROLLINFO","features":[42]},{"name":"TVM_SETBKCOLOR","features":[42]},{"name":"TVM_SETBORDER","features":[42]},{"name":"TVM_SETEXTENDEDSTYLE","features":[42]},{"name":"TVM_SETHOT","features":[42]},{"name":"TVM_SETIMAGELIST","features":[42]},{"name":"TVM_SETINDENT","features":[42]},{"name":"TVM_SETINSERTMARK","features":[42]},{"name":"TVM_SETINSERTMARKCOLOR","features":[42]},{"name":"TVM_SETITEM","features":[42]},{"name":"TVM_SETITEMA","features":[42]},{"name":"TVM_SETITEMHEIGHT","features":[42]},{"name":"TVM_SETITEMW","features":[42]},{"name":"TVM_SETLINECOLOR","features":[42]},{"name":"TVM_SETSCROLLTIME","features":[42]},{"name":"TVM_SETTEXTCOLOR","features":[42]},{"name":"TVM_SETTOOLTIPS","features":[42]},{"name":"TVM_SETUNICODEFORMAT","features":[42]},{"name":"TVM_SHOWINFOTIP","features":[42]},{"name":"TVM_SORTCHILDREN","features":[42]},{"name":"TVM_SORTCHILDRENCB","features":[42]},{"name":"TVNRET_DEFAULT","features":[42]},{"name":"TVNRET_SKIPNEW","features":[42]},{"name":"TVNRET_SKIPOLD","features":[42]},{"name":"TVN_ASYNCDRAW","features":[42]},{"name":"TVN_BEGINDRAG","features":[42]},{"name":"TVN_BEGINDRAGA","features":[42]},{"name":"TVN_BEGINDRAGW","features":[42]},{"name":"TVN_BEGINLABELEDIT","features":[42]},{"name":"TVN_BEGINLABELEDITA","features":[42]},{"name":"TVN_BEGINLABELEDITW","features":[42]},{"name":"TVN_BEGINRDRAG","features":[42]},{"name":"TVN_BEGINRDRAGA","features":[42]},{"name":"TVN_BEGINRDRAGW","features":[42]},{"name":"TVN_DELETEITEM","features":[42]},{"name":"TVN_DELETEITEMA","features":[42]},{"name":"TVN_DELETEITEMW","features":[42]},{"name":"TVN_ENDLABELEDIT","features":[42]},{"name":"TVN_ENDLABELEDITA","features":[42]},{"name":"TVN_ENDLABELEDITW","features":[42]},{"name":"TVN_FIRST","features":[42]},{"name":"TVN_GETDISPINFO","features":[42]},{"name":"TVN_GETDISPINFOA","features":[42]},{"name":"TVN_GETDISPINFOW","features":[42]},{"name":"TVN_GETINFOTIP","features":[42]},{"name":"TVN_GETINFOTIPA","features":[42]},{"name":"TVN_GETINFOTIPW","features":[42]},{"name":"TVN_ITEMCHANGED","features":[42]},{"name":"TVN_ITEMCHANGEDA","features":[42]},{"name":"TVN_ITEMCHANGEDW","features":[42]},{"name":"TVN_ITEMCHANGING","features":[42]},{"name":"TVN_ITEMCHANGINGA","features":[42]},{"name":"TVN_ITEMCHANGINGW","features":[42]},{"name":"TVN_ITEMEXPANDED","features":[42]},{"name":"TVN_ITEMEXPANDEDA","features":[42]},{"name":"TVN_ITEMEXPANDEDW","features":[42]},{"name":"TVN_ITEMEXPANDING","features":[42]},{"name":"TVN_ITEMEXPANDINGA","features":[42]},{"name":"TVN_ITEMEXPANDINGW","features":[42]},{"name":"TVN_KEYDOWN","features":[42]},{"name":"TVN_LAST","features":[42]},{"name":"TVN_SELCHANGED","features":[42]},{"name":"TVN_SELCHANGEDA","features":[42]},{"name":"TVN_SELCHANGEDW","features":[42]},{"name":"TVN_SELCHANGING","features":[42]},{"name":"TVN_SELCHANGINGA","features":[42]},{"name":"TVN_SELCHANGINGW","features":[42]},{"name":"TVN_SETDISPINFO","features":[42]},{"name":"TVN_SETDISPINFOA","features":[42]},{"name":"TVN_SETDISPINFOW","features":[42]},{"name":"TVN_SINGLEEXPAND","features":[42]},{"name":"TVP_BRANCH","features":[42]},{"name":"TVP_GLYPH","features":[42]},{"name":"TVP_HOTGLYPH","features":[42]},{"name":"TVP_TREEITEM","features":[42]},{"name":"TVSBF_XBORDER","features":[42]},{"name":"TVSBF_YBORDER","features":[42]},{"name":"TVSIL_NORMAL","features":[42]},{"name":"TVSIL_STATE","features":[42]},{"name":"TVSI_NOSINGLEEXPAND","features":[42]},{"name":"TVSORTCB","features":[3,42]},{"name":"TVS_CHECKBOXES","features":[42]},{"name":"TVS_DISABLEDRAGDROP","features":[42]},{"name":"TVS_EDITLABELS","features":[42]},{"name":"TVS_EX_AUTOHSCROLL","features":[42]},{"name":"TVS_EX_DIMMEDCHECKBOXES","features":[42]},{"name":"TVS_EX_DOUBLEBUFFER","features":[42]},{"name":"TVS_EX_DRAWIMAGEASYNC","features":[42]},{"name":"TVS_EX_EXCLUSIONCHECKBOXES","features":[42]},{"name":"TVS_EX_FADEINOUTEXPANDOS","features":[42]},{"name":"TVS_EX_MULTISELECT","features":[42]},{"name":"TVS_EX_NOINDENTSTATE","features":[42]},{"name":"TVS_EX_NOSINGLECOLLAPSE","features":[42]},{"name":"TVS_EX_PARTIALCHECKBOXES","features":[42]},{"name":"TVS_EX_RICHTOOLTIP","features":[42]},{"name":"TVS_FULLROWSELECT","features":[42]},{"name":"TVS_HASBUTTONS","features":[42]},{"name":"TVS_HASLINES","features":[42]},{"name":"TVS_INFOTIP","features":[42]},{"name":"TVS_LINESATROOT","features":[42]},{"name":"TVS_NOHSCROLL","features":[42]},{"name":"TVS_NONEVENHEIGHT","features":[42]},{"name":"TVS_NOSCROLL","features":[42]},{"name":"TVS_NOTOOLTIPS","features":[42]},{"name":"TVS_RTLREADING","features":[42]},{"name":"TVS_SHOWSELALWAYS","features":[42]},{"name":"TVS_SINGLEEXPAND","features":[42]},{"name":"TVS_TRACKSELECT","features":[42]},{"name":"TV_FIRST","features":[42]},{"name":"TaskDialog","features":[3,42]},{"name":"TaskDialogIndirect","features":[3,42,52]},{"name":"UDACCEL","features":[42]},{"name":"UDM_GETACCEL","features":[42]},{"name":"UDM_GETBASE","features":[42]},{"name":"UDM_GETBUDDY","features":[42]},{"name":"UDM_GETPOS","features":[42]},{"name":"UDM_GETPOS32","features":[42]},{"name":"UDM_GETRANGE","features":[42]},{"name":"UDM_GETRANGE32","features":[42]},{"name":"UDM_GETUNICODEFORMAT","features":[42]},{"name":"UDM_SETACCEL","features":[42]},{"name":"UDM_SETBASE","features":[42]},{"name":"UDM_SETBUDDY","features":[42]},{"name":"UDM_SETPOS","features":[42]},{"name":"UDM_SETPOS32","features":[42]},{"name":"UDM_SETRANGE","features":[42]},{"name":"UDM_SETRANGE32","features":[42]},{"name":"UDM_SETUNICODEFORMAT","features":[42]},{"name":"UDN_DELTAPOS","features":[42]},{"name":"UDN_FIRST","features":[42]},{"name":"UDN_LAST","features":[42]},{"name":"UDS_ALIGNLEFT","features":[42]},{"name":"UDS_ALIGNRIGHT","features":[42]},{"name":"UDS_ARROWKEYS","features":[42]},{"name":"UDS_AUTOBUDDY","features":[42]},{"name":"UDS_HORZ","features":[42]},{"name":"UDS_HOTTRACK","features":[42]},{"name":"UDS_NOTHOUSANDS","features":[42]},{"name":"UDS_SETBUDDYINT","features":[42]},{"name":"UDS_WRAP","features":[42]},{"name":"UD_MAXVAL","features":[42]},{"name":"UPDATEMETADATASTATES","features":[42]},{"name":"UPDOWN_CLASS","features":[42]},{"name":"UPDOWN_CLASSA","features":[42]},{"name":"UPDOWN_CLASSW","features":[42]},{"name":"UPHORZSTATES","features":[42]},{"name":"UPHZS_DISABLED","features":[42]},{"name":"UPHZS_HOT","features":[42]},{"name":"UPHZS_NORMAL","features":[42]},{"name":"UPHZS_PRESSED","features":[42]},{"name":"UPSTATES","features":[42]},{"name":"UPS_DISABLED","features":[42]},{"name":"UPS_HOT","features":[42]},{"name":"UPS_NORMAL","features":[42]},{"name":"UPS_PRESSED","features":[42]},{"name":"USAGE_PROPERTIES","features":[42]},{"name":"USERTILEPARTS","features":[42]},{"name":"UTP_HOVERBACKGROUND","features":[42]},{"name":"UTP_STROKEBACKGROUND","features":[42]},{"name":"UTS_HOT","features":[42]},{"name":"UTS_NORMAL","features":[42]},{"name":"UTS_PRESSED","features":[42]},{"name":"UninitializeFlatSB","features":[3,42]},{"name":"UpdatePanningFeedback","features":[3,42]},{"name":"VALIDBITS","features":[42]},{"name":"VALIGN","features":[42]},{"name":"VA_BOTTOM","features":[42]},{"name":"VA_CENTER","features":[42]},{"name":"VA_TOP","features":[42]},{"name":"VERTSCROLLSTATES","features":[42]},{"name":"VERTTHUMBSTATES","features":[42]},{"name":"VIEW_DETAILS","features":[42]},{"name":"VIEW_LARGEICONS","features":[42]},{"name":"VIEW_LIST","features":[42]},{"name":"VIEW_NETCONNECT","features":[42]},{"name":"VIEW_NETDISCONNECT","features":[42]},{"name":"VIEW_NEWFOLDER","features":[42]},{"name":"VIEW_PARENTFOLDER","features":[42]},{"name":"VIEW_SMALLICONS","features":[42]},{"name":"VIEW_SORTDATE","features":[42]},{"name":"VIEW_SORTNAME","features":[42]},{"name":"VIEW_SORTSIZE","features":[42]},{"name":"VIEW_SORTTYPE","features":[42]},{"name":"VIEW_VIEWMENU","features":[42]},{"name":"VSCLASS_AEROWIZARD","features":[42]},{"name":"VSCLASS_AEROWIZARDSTYLE","features":[42]},{"name":"VSCLASS_BUTTON","features":[42]},{"name":"VSCLASS_BUTTONSTYLE","features":[42]},{"name":"VSCLASS_CLOCK","features":[42]},{"name":"VSCLASS_COMBOBOX","features":[42]},{"name":"VSCLASS_COMBOBOXSTYLE","features":[42]},{"name":"VSCLASS_COMMUNICATIONS","features":[42]},{"name":"VSCLASS_COMMUNICATIONSSTYLE","features":[42]},{"name":"VSCLASS_CONTROLPANEL","features":[42]},{"name":"VSCLASS_CONTROLPANELSTYLE","features":[42]},{"name":"VSCLASS_DATEPICKER","features":[42]},{"name":"VSCLASS_DATEPICKERSTYLE","features":[42]},{"name":"VSCLASS_DRAGDROP","features":[42]},{"name":"VSCLASS_DRAGDROPSTYLE","features":[42]},{"name":"VSCLASS_EDIT","features":[42]},{"name":"VSCLASS_EDITSTYLE","features":[42]},{"name":"VSCLASS_EMPTYMARKUP","features":[42]},{"name":"VSCLASS_EXPLORERBAR","features":[42]},{"name":"VSCLASS_EXPLORERBARSTYLE","features":[42]},{"name":"VSCLASS_FLYOUT","features":[42]},{"name":"VSCLASS_FLYOUTSTYLE","features":[42]},{"name":"VSCLASS_HEADER","features":[42]},{"name":"VSCLASS_HEADERSTYLE","features":[42]},{"name":"VSCLASS_LINK","features":[42]},{"name":"VSCLASS_LISTBOX","features":[42]},{"name":"VSCLASS_LISTBOXSTYLE","features":[42]},{"name":"VSCLASS_LISTVIEW","features":[42]},{"name":"VSCLASS_LISTVIEWSTYLE","features":[42]},{"name":"VSCLASS_MENU","features":[42]},{"name":"VSCLASS_MENUBAND","features":[42]},{"name":"VSCLASS_MENUSTYLE","features":[42]},{"name":"VSCLASS_MONTHCAL","features":[42]},{"name":"VSCLASS_NAVIGATION","features":[42]},{"name":"VSCLASS_PAGE","features":[42]},{"name":"VSCLASS_PROGRESS","features":[42]},{"name":"VSCLASS_PROGRESSSTYLE","features":[42]},{"name":"VSCLASS_REBAR","features":[42]},{"name":"VSCLASS_REBARSTYLE","features":[42]},{"name":"VSCLASS_SCROLLBAR","features":[42]},{"name":"VSCLASS_SCROLLBARSTYLE","features":[42]},{"name":"VSCLASS_SPIN","features":[42]},{"name":"VSCLASS_SPINSTYLE","features":[42]},{"name":"VSCLASS_STARTPANEL","features":[42]},{"name":"VSCLASS_STATIC","features":[42]},{"name":"VSCLASS_STATUS","features":[42]},{"name":"VSCLASS_STATUSSTYLE","features":[42]},{"name":"VSCLASS_TAB","features":[42]},{"name":"VSCLASS_TABSTYLE","features":[42]},{"name":"VSCLASS_TASKBAND","features":[42]},{"name":"VSCLASS_TASKBAR","features":[42]},{"name":"VSCLASS_TASKDIALOG","features":[42]},{"name":"VSCLASS_TASKDIALOGSTYLE","features":[42]},{"name":"VSCLASS_TEXTSELECTIONGRIPPER","features":[42]},{"name":"VSCLASS_TEXTSTYLE","features":[42]},{"name":"VSCLASS_TOOLBAR","features":[42]},{"name":"VSCLASS_TOOLBARSTYLE","features":[42]},{"name":"VSCLASS_TOOLTIP","features":[42]},{"name":"VSCLASS_TOOLTIPSTYLE","features":[42]},{"name":"VSCLASS_TRACKBAR","features":[42]},{"name":"VSCLASS_TRACKBARSTYLE","features":[42]},{"name":"VSCLASS_TRAYNOTIFY","features":[42]},{"name":"VSCLASS_TREEVIEW","features":[42]},{"name":"VSCLASS_TREEVIEWSTYLE","features":[42]},{"name":"VSCLASS_USERTILE","features":[42]},{"name":"VSCLASS_WINDOW","features":[42]},{"name":"VSCLASS_WINDOWSTYLE","features":[42]},{"name":"VSS_DISABLED","features":[42]},{"name":"VSS_HOT","features":[42]},{"name":"VSS_NORMAL","features":[42]},{"name":"VSS_PUSHED","features":[42]},{"name":"VTS_DISABLED","features":[42]},{"name":"VTS_HOT","features":[42]},{"name":"VTS_NORMAL","features":[42]},{"name":"VTS_PUSHED","features":[42]},{"name":"WARNINGSTATES","features":[42]},{"name":"WB_CLASSIFY","features":[42]},{"name":"WB_ISDELIMITER","features":[42]},{"name":"WB_LEFT","features":[42]},{"name":"WB_LEFTBREAK","features":[42]},{"name":"WB_MOVEWORDLEFT","features":[42]},{"name":"WB_MOVEWORDRIGHT","features":[42]},{"name":"WB_RIGHT","features":[42]},{"name":"WB_RIGHTBREAK","features":[42]},{"name":"WC_BUTTON","features":[42]},{"name":"WC_BUTTONA","features":[42]},{"name":"WC_BUTTONW","features":[42]},{"name":"WC_COMBOBOX","features":[42]},{"name":"WC_COMBOBOXA","features":[42]},{"name":"WC_COMBOBOXEX","features":[42]},{"name":"WC_COMBOBOXEXA","features":[42]},{"name":"WC_COMBOBOXEXW","features":[42]},{"name":"WC_COMBOBOXW","features":[42]},{"name":"WC_EDIT","features":[42]},{"name":"WC_EDITA","features":[42]},{"name":"WC_EDITW","features":[42]},{"name":"WC_HEADER","features":[42]},{"name":"WC_HEADERA","features":[42]},{"name":"WC_HEADERW","features":[42]},{"name":"WC_IPADDRESS","features":[42]},{"name":"WC_IPADDRESSA","features":[42]},{"name":"WC_IPADDRESSW","features":[42]},{"name":"WC_LINK","features":[42]},{"name":"WC_LISTBOX","features":[42]},{"name":"WC_LISTBOXA","features":[42]},{"name":"WC_LISTBOXW","features":[42]},{"name":"WC_LISTVIEW","features":[42]},{"name":"WC_LISTVIEWA","features":[42]},{"name":"WC_LISTVIEWW","features":[42]},{"name":"WC_NATIVEFONTCTL","features":[42]},{"name":"WC_NATIVEFONTCTLA","features":[42]},{"name":"WC_NATIVEFONTCTLW","features":[42]},{"name":"WC_PAGESCROLLER","features":[42]},{"name":"WC_PAGESCROLLERA","features":[42]},{"name":"WC_PAGESCROLLERW","features":[42]},{"name":"WC_SCROLLBAR","features":[42]},{"name":"WC_SCROLLBARA","features":[42]},{"name":"WC_SCROLLBARW","features":[42]},{"name":"WC_STATIC","features":[42]},{"name":"WC_STATICA","features":[42]},{"name":"WC_STATICW","features":[42]},{"name":"WC_TABCONTROL","features":[42]},{"name":"WC_TABCONTROLA","features":[42]},{"name":"WC_TABCONTROLW","features":[42]},{"name":"WC_TREEVIEW","features":[42]},{"name":"WC_TREEVIEWA","features":[42]},{"name":"WC_TREEVIEWW","features":[42]},{"name":"WINDOWPARTS","features":[42]},{"name":"WINDOWTHEMEATTRIBUTETYPE","features":[42]},{"name":"WIZ_BODYCX","features":[42]},{"name":"WIZ_BODYX","features":[42]},{"name":"WIZ_CXBMP","features":[42]},{"name":"WIZ_CXDLG","features":[42]},{"name":"WIZ_CYDLG","features":[42]},{"name":"WMN_FIRST","features":[42]},{"name":"WMN_LAST","features":[42]},{"name":"WM_CTLCOLOR","features":[42]},{"name":"WM_MOUSEHOVER","features":[42]},{"name":"WM_MOUSELEAVE","features":[42]},{"name":"WORD_BREAK_ACTION","features":[42]},{"name":"WP_BORDER","features":[42]},{"name":"WP_CAPTION","features":[42]},{"name":"WP_CAPTIONSIZINGTEMPLATE","features":[42]},{"name":"WP_CLOSEBUTTON","features":[42]},{"name":"WP_DIALOG","features":[42]},{"name":"WP_FRAME","features":[42]},{"name":"WP_FRAMEBOTTOM","features":[42]},{"name":"WP_FRAMEBOTTOMSIZINGTEMPLATE","features":[42]},{"name":"WP_FRAMELEFT","features":[42]},{"name":"WP_FRAMELEFTSIZINGTEMPLATE","features":[42]},{"name":"WP_FRAMERIGHT","features":[42]},{"name":"WP_FRAMERIGHTSIZINGTEMPLATE","features":[42]},{"name":"WP_HELPBUTTON","features":[42]},{"name":"WP_HORZSCROLL","features":[42]},{"name":"WP_HORZTHUMB","features":[42]},{"name":"WP_MAXBUTTON","features":[42]},{"name":"WP_MAXCAPTION","features":[42]},{"name":"WP_MDICLOSEBUTTON","features":[42]},{"name":"WP_MDIHELPBUTTON","features":[42]},{"name":"WP_MDIMINBUTTON","features":[42]},{"name":"WP_MDIRESTOREBUTTON","features":[42]},{"name":"WP_MDISYSBUTTON","features":[42]},{"name":"WP_MINBUTTON","features":[42]},{"name":"WP_MINCAPTION","features":[42]},{"name":"WP_RESTOREBUTTON","features":[42]},{"name":"WP_SMALLCAPTION","features":[42]},{"name":"WP_SMALLCAPTIONSIZINGTEMPLATE","features":[42]},{"name":"WP_SMALLCLOSEBUTTON","features":[42]},{"name":"WP_SMALLFRAMEBOTTOM","features":[42]},{"name":"WP_SMALLFRAMEBOTTOMSIZINGTEMPLATE","features":[42]},{"name":"WP_SMALLFRAMELEFT","features":[42]},{"name":"WP_SMALLFRAMELEFTSIZINGTEMPLATE","features":[42]},{"name":"WP_SMALLFRAMERIGHT","features":[42]},{"name":"WP_SMALLFRAMERIGHTSIZINGTEMPLATE","features":[42]},{"name":"WP_SMALLMAXCAPTION","features":[42]},{"name":"WP_SMALLMINCAPTION","features":[42]},{"name":"WP_SYSBUTTON","features":[42]},{"name":"WP_VERTSCROLL","features":[42]},{"name":"WP_VERTTHUMB","features":[42]},{"name":"WRENCHSTATES","features":[42]},{"name":"WSB_PROP","features":[42]},{"name":"WSB_PROP_CXHSCROLL","features":[42]},{"name":"WSB_PROP_CXHTHUMB","features":[42]},{"name":"WSB_PROP_CXVSCROLL","features":[42]},{"name":"WSB_PROP_CYHSCROLL","features":[42]},{"name":"WSB_PROP_CYVSCROLL","features":[42]},{"name":"WSB_PROP_CYVTHUMB","features":[42]},{"name":"WSB_PROP_HBKGCOLOR","features":[42]},{"name":"WSB_PROP_HSTYLE","features":[42]},{"name":"WSB_PROP_MASK","features":[42]},{"name":"WSB_PROP_PALETTE","features":[42]},{"name":"WSB_PROP_VBKGCOLOR","features":[42]},{"name":"WSB_PROP_VSTYLE","features":[42]},{"name":"WSB_PROP_WINSTYLE","features":[42]},{"name":"WTA_NONCLIENT","features":[42]},{"name":"WTA_OPTIONS","features":[42]},{"name":"WTNCA_NODRAWCAPTION","features":[42]},{"name":"WTNCA_NODRAWICON","features":[42]},{"name":"WTNCA_NOMIRRORHELP","features":[42]},{"name":"WTNCA_NOSYSMENU","features":[42]},{"name":"_LI_METRIC","features":[42]},{"name":"chx1","features":[42]},{"name":"chx10","features":[42]},{"name":"chx11","features":[42]},{"name":"chx12","features":[42]},{"name":"chx13","features":[42]},{"name":"chx14","features":[42]},{"name":"chx15","features":[42]},{"name":"chx16","features":[42]},{"name":"chx2","features":[42]},{"name":"chx3","features":[42]},{"name":"chx4","features":[42]},{"name":"chx5","features":[42]},{"name":"chx6","features":[42]},{"name":"chx7","features":[42]},{"name":"chx8","features":[42]},{"name":"chx9","features":[42]},{"name":"cmb1","features":[42]},{"name":"cmb10","features":[42]},{"name":"cmb11","features":[42]},{"name":"cmb12","features":[42]},{"name":"cmb13","features":[42]},{"name":"cmb14","features":[42]},{"name":"cmb15","features":[42]},{"name":"cmb16","features":[42]},{"name":"cmb2","features":[42]},{"name":"cmb3","features":[42]},{"name":"cmb4","features":[42]},{"name":"cmb5","features":[42]},{"name":"cmb6","features":[42]},{"name":"cmb7","features":[42]},{"name":"cmb8","features":[42]},{"name":"cmb9","features":[42]},{"name":"ctl1","features":[42]},{"name":"ctlFirst","features":[42]},{"name":"ctlLast","features":[42]},{"name":"edt1","features":[42]},{"name":"edt10","features":[42]},{"name":"edt11","features":[42]},{"name":"edt12","features":[42]},{"name":"edt13","features":[42]},{"name":"edt14","features":[42]},{"name":"edt15","features":[42]},{"name":"edt16","features":[42]},{"name":"edt2","features":[42]},{"name":"edt3","features":[42]},{"name":"edt4","features":[42]},{"name":"edt5","features":[42]},{"name":"edt6","features":[42]},{"name":"edt7","features":[42]},{"name":"edt8","features":[42]},{"name":"edt9","features":[42]},{"name":"frm1","features":[42]},{"name":"frm2","features":[42]},{"name":"frm3","features":[42]},{"name":"frm4","features":[42]},{"name":"grp1","features":[42]},{"name":"grp2","features":[42]},{"name":"grp3","features":[42]},{"name":"grp4","features":[42]},{"name":"ico1","features":[42]},{"name":"ico2","features":[42]},{"name":"ico3","features":[42]},{"name":"ico4","features":[42]},{"name":"lst1","features":[42]},{"name":"lst10","features":[42]},{"name":"lst11","features":[42]},{"name":"lst12","features":[42]},{"name":"lst13","features":[42]},{"name":"lst14","features":[42]},{"name":"lst15","features":[42]},{"name":"lst16","features":[42]},{"name":"lst2","features":[42]},{"name":"lst3","features":[42]},{"name":"lst4","features":[42]},{"name":"lst5","features":[42]},{"name":"lst6","features":[42]},{"name":"lst7","features":[42]},{"name":"lst8","features":[42]},{"name":"lst9","features":[42]},{"name":"psh1","features":[42]},{"name":"psh10","features":[42]},{"name":"psh11","features":[42]},{"name":"psh12","features":[42]},{"name":"psh13","features":[42]},{"name":"psh14","features":[42]},{"name":"psh15","features":[42]},{"name":"psh16","features":[42]},{"name":"psh2","features":[42]},{"name":"psh3","features":[42]},{"name":"psh4","features":[42]},{"name":"psh5","features":[42]},{"name":"psh6","features":[42]},{"name":"psh7","features":[42]},{"name":"psh8","features":[42]},{"name":"psh9","features":[42]},{"name":"pshHelp","features":[42]},{"name":"rad1","features":[42]},{"name":"rad10","features":[42]},{"name":"rad11","features":[42]},{"name":"rad12","features":[42]},{"name":"rad13","features":[42]},{"name":"rad14","features":[42]},{"name":"rad15","features":[42]},{"name":"rad16","features":[42]},{"name":"rad2","features":[42]},{"name":"rad3","features":[42]},{"name":"rad4","features":[42]},{"name":"rad5","features":[42]},{"name":"rad6","features":[42]},{"name":"rad7","features":[42]},{"name":"rad8","features":[42]},{"name":"rad9","features":[42]},{"name":"rct1","features":[42]},{"name":"rct2","features":[42]},{"name":"rct3","features":[42]},{"name":"rct4","features":[42]},{"name":"scr1","features":[42]},{"name":"scr2","features":[42]},{"name":"scr3","features":[42]},{"name":"scr4","features":[42]},{"name":"scr5","features":[42]},{"name":"scr6","features":[42]},{"name":"scr7","features":[42]},{"name":"scr8","features":[42]},{"name":"stc1","features":[42]},{"name":"stc10","features":[42]},{"name":"stc11","features":[42]},{"name":"stc12","features":[42]},{"name":"stc13","features":[42]},{"name":"stc14","features":[42]},{"name":"stc15","features":[42]},{"name":"stc16","features":[42]},{"name":"stc17","features":[42]},{"name":"stc18","features":[42]},{"name":"stc19","features":[42]},{"name":"stc2","features":[42]},{"name":"stc20","features":[42]},{"name":"stc21","features":[42]},{"name":"stc22","features":[42]},{"name":"stc23","features":[42]},{"name":"stc24","features":[42]},{"name":"stc25","features":[42]},{"name":"stc26","features":[42]},{"name":"stc27","features":[42]},{"name":"stc28","features":[42]},{"name":"stc29","features":[42]},{"name":"stc3","features":[42]},{"name":"stc30","features":[42]},{"name":"stc31","features":[42]},{"name":"stc32","features":[42]},{"name":"stc4","features":[42]},{"name":"stc5","features":[42]},{"name":"stc6","features":[42]},{"name":"stc7","features":[42]},{"name":"stc8","features":[42]},{"name":"stc9","features":[42]}],"653":[{"name":"BOLD_FONTTYPE","features":[86]},{"name":"CCERR_CHOOSECOLORCODES","features":[86]},{"name":"CC_ANYCOLOR","features":[86]},{"name":"CC_ENABLEHOOK","features":[86]},{"name":"CC_ENABLETEMPLATE","features":[86]},{"name":"CC_ENABLETEMPLATEHANDLE","features":[86]},{"name":"CC_FULLOPEN","features":[86]},{"name":"CC_PREVENTFULLOPEN","features":[86]},{"name":"CC_RGBINIT","features":[86]},{"name":"CC_SHOWHELP","features":[86]},{"name":"CC_SOLIDCOLOR","features":[86]},{"name":"CDERR_DIALOGFAILURE","features":[86]},{"name":"CDERR_FINDRESFAILURE","features":[86]},{"name":"CDERR_GENERALCODES","features":[86]},{"name":"CDERR_INITIALIZATION","features":[86]},{"name":"CDERR_LOADRESFAILURE","features":[86]},{"name":"CDERR_LOADSTRFAILURE","features":[86]},{"name":"CDERR_LOCKRESFAILURE","features":[86]},{"name":"CDERR_MEMALLOCFAILURE","features":[86]},{"name":"CDERR_MEMLOCKFAILURE","features":[86]},{"name":"CDERR_NOHINSTANCE","features":[86]},{"name":"CDERR_NOHOOK","features":[86]},{"name":"CDERR_NOTEMPLATE","features":[86]},{"name":"CDERR_REGISTERMSGFAIL","features":[86]},{"name":"CDERR_STRUCTSIZE","features":[86]},{"name":"CDM_FIRST","features":[86]},{"name":"CDM_GETFILEPATH","features":[86]},{"name":"CDM_GETFOLDERIDLIST","features":[86]},{"name":"CDM_GETFOLDERPATH","features":[86]},{"name":"CDM_GETSPEC","features":[86]},{"name":"CDM_HIDECONTROL","features":[86]},{"name":"CDM_LAST","features":[86]},{"name":"CDM_SETCONTROLTEXT","features":[86]},{"name":"CDM_SETDEFEXT","features":[86]},{"name":"CDN_FILEOK","features":[86]},{"name":"CDN_FOLDERCHANGE","features":[86]},{"name":"CDN_HELP","features":[86]},{"name":"CDN_INCLUDEITEM","features":[86]},{"name":"CDN_INITDONE","features":[86]},{"name":"CDN_SELCHANGE","features":[86]},{"name":"CDN_SHAREVIOLATION","features":[86]},{"name":"CDN_TYPECHANGE","features":[86]},{"name":"CD_LBSELADD","features":[86]},{"name":"CD_LBSELCHANGE","features":[86]},{"name":"CD_LBSELNOITEMS","features":[86]},{"name":"CD_LBSELSUB","features":[86]},{"name":"CFERR_CHOOSEFONTCODES","features":[86]},{"name":"CFERR_MAXLESSTHANMIN","features":[86]},{"name":"CFERR_NOFONTS","features":[86]},{"name":"CF_ANSIONLY","features":[86]},{"name":"CF_APPLY","features":[86]},{"name":"CF_BOTH","features":[86]},{"name":"CF_EFFECTS","features":[86]},{"name":"CF_ENABLEHOOK","features":[86]},{"name":"CF_ENABLETEMPLATE","features":[86]},{"name":"CF_ENABLETEMPLATEHANDLE","features":[86]},{"name":"CF_FIXEDPITCHONLY","features":[86]},{"name":"CF_FORCEFONTEXIST","features":[86]},{"name":"CF_INACTIVEFONTS","features":[86]},{"name":"CF_INITTOLOGFONTSTRUCT","features":[86]},{"name":"CF_LIMITSIZE","features":[86]},{"name":"CF_NOFACESEL","features":[86]},{"name":"CF_NOOEMFONTS","features":[86]},{"name":"CF_NOSCRIPTSEL","features":[86]},{"name":"CF_NOSIMULATIONS","features":[86]},{"name":"CF_NOSIZESEL","features":[86]},{"name":"CF_NOSTYLESEL","features":[86]},{"name":"CF_NOVECTORFONTS","features":[86]},{"name":"CF_NOVERTFONTS","features":[86]},{"name":"CF_PRINTERFONTS","features":[86]},{"name":"CF_SCALABLEONLY","features":[86]},{"name":"CF_SCREENFONTS","features":[86]},{"name":"CF_SCRIPTSONLY","features":[86]},{"name":"CF_SELECTSCRIPT","features":[86]},{"name":"CF_SHOWHELP","features":[86]},{"name":"CF_TTONLY","features":[86]},{"name":"CF_USESTYLE","features":[86]},{"name":"CF_WYSIWYG","features":[86]},{"name":"CHOOSECOLORA","features":[3,86]},{"name":"CHOOSECOLORA","features":[3,86]},{"name":"CHOOSECOLORW","features":[3,86]},{"name":"CHOOSECOLORW","features":[3,86]},{"name":"CHOOSECOLOR_FLAGS","features":[86]},{"name":"CHOOSEFONTA","features":[3,14,86]},{"name":"CHOOSEFONTA","features":[3,14,86]},{"name":"CHOOSEFONTW","features":[3,14,86]},{"name":"CHOOSEFONTW","features":[3,14,86]},{"name":"CHOOSEFONT_FLAGS","features":[86]},{"name":"CHOOSEFONT_FONT_TYPE","features":[86]},{"name":"COLOROKSTRING","features":[86]},{"name":"COLOROKSTRINGA","features":[86]},{"name":"COLOROKSTRINGW","features":[86]},{"name":"COLOR_ADD","features":[86]},{"name":"COLOR_BLUE","features":[86]},{"name":"COLOR_BLUEACCEL","features":[86]},{"name":"COLOR_BOX1","features":[86]},{"name":"COLOR_CURRENT","features":[86]},{"name":"COLOR_CUSTOM1","features":[86]},{"name":"COLOR_ELEMENT","features":[86]},{"name":"COLOR_GREEN","features":[86]},{"name":"COLOR_GREENACCEL","features":[86]},{"name":"COLOR_HUE","features":[86]},{"name":"COLOR_HUEACCEL","features":[86]},{"name":"COLOR_HUESCROLL","features":[86]},{"name":"COLOR_LUM","features":[86]},{"name":"COLOR_LUMACCEL","features":[86]},{"name":"COLOR_LUMSCROLL","features":[86]},{"name":"COLOR_MIX","features":[86]},{"name":"COLOR_PALETTE","features":[86]},{"name":"COLOR_RAINBOW","features":[86]},{"name":"COLOR_RED","features":[86]},{"name":"COLOR_REDACCEL","features":[86]},{"name":"COLOR_SAMPLES","features":[86]},{"name":"COLOR_SAT","features":[86]},{"name":"COLOR_SATACCEL","features":[86]},{"name":"COLOR_SATSCROLL","features":[86]},{"name":"COLOR_SAVE","features":[86]},{"name":"COLOR_SCHEMES","features":[86]},{"name":"COLOR_SOLID","features":[86]},{"name":"COLOR_SOLID_LEFT","features":[86]},{"name":"COLOR_SOLID_RIGHT","features":[86]},{"name":"COLOR_TUNE","features":[86]},{"name":"COMMON_DLG_ERRORS","features":[86]},{"name":"ChooseColorA","features":[3,86]},{"name":"ChooseColorW","features":[3,86]},{"name":"ChooseFontA","features":[3,14,86]},{"name":"ChooseFontW","features":[3,14,86]},{"name":"CommDlgExtendedError","features":[86]},{"name":"DEVNAMES","features":[86]},{"name":"DEVNAMES","features":[86]},{"name":"DLG_COLOR","features":[86]},{"name":"DN_DEFAULTPRN","features":[86]},{"name":"FILEOKSTRING","features":[86]},{"name":"FILEOKSTRINGA","features":[86]},{"name":"FILEOKSTRINGW","features":[86]},{"name":"FINDMSGSTRING","features":[86]},{"name":"FINDMSGSTRINGA","features":[86]},{"name":"FINDMSGSTRINGW","features":[86]},{"name":"FINDREPLACEA","features":[3,86]},{"name":"FINDREPLACEA","features":[3,86]},{"name":"FINDREPLACEW","features":[3,86]},{"name":"FINDREPLACEW","features":[3,86]},{"name":"FINDREPLACE_FLAGS","features":[86]},{"name":"FNERR_BUFFERTOOSMALL","features":[86]},{"name":"FNERR_FILENAMECODES","features":[86]},{"name":"FNERR_INVALIDFILENAME","features":[86]},{"name":"FNERR_SUBCLASSFAILURE","features":[86]},{"name":"FRERR_BUFFERLENGTHZERO","features":[86]},{"name":"FRERR_FINDREPLACECODES","features":[86]},{"name":"FRM_FIRST","features":[86]},{"name":"FRM_LAST","features":[86]},{"name":"FRM_SETOPERATIONRESULT","features":[86]},{"name":"FRM_SETOPERATIONRESULTTEXT","features":[86]},{"name":"FR_DIALOGTERM","features":[86]},{"name":"FR_DOWN","features":[86]},{"name":"FR_ENABLEHOOK","features":[86]},{"name":"FR_ENABLETEMPLATE","features":[86]},{"name":"FR_ENABLETEMPLATEHANDLE","features":[86]},{"name":"FR_FINDNEXT","features":[86]},{"name":"FR_HIDEMATCHCASE","features":[86]},{"name":"FR_HIDEUPDOWN","features":[86]},{"name":"FR_HIDEWHOLEWORD","features":[86]},{"name":"FR_MATCHALEFHAMZA","features":[86]},{"name":"FR_MATCHCASE","features":[86]},{"name":"FR_MATCHDIAC","features":[86]},{"name":"FR_MATCHKASHIDA","features":[86]},{"name":"FR_NOMATCHCASE","features":[86]},{"name":"FR_NOUPDOWN","features":[86]},{"name":"FR_NOWHOLEWORD","features":[86]},{"name":"FR_NOWRAPAROUND","features":[86]},{"name":"FR_RAW","features":[86]},{"name":"FR_REPLACE","features":[86]},{"name":"FR_REPLACEALL","features":[86]},{"name":"FR_SHOWHELP","features":[86]},{"name":"FR_SHOWWRAPAROUND","features":[86]},{"name":"FR_WHOLEWORD","features":[86]},{"name":"FR_WRAPAROUND","features":[86]},{"name":"FindTextA","features":[3,86]},{"name":"FindTextW","features":[3,86]},{"name":"GetFileTitleA","features":[86]},{"name":"GetFileTitleW","features":[86]},{"name":"GetOpenFileNameA","features":[3,86]},{"name":"GetOpenFileNameW","features":[3,86]},{"name":"GetSaveFileNameA","features":[3,86]},{"name":"GetSaveFileNameW","features":[3,86]},{"name":"HELPMSGSTRING","features":[86]},{"name":"HELPMSGSTRINGA","features":[86]},{"name":"HELPMSGSTRINGW","features":[86]},{"name":"IPrintDialogCallback","features":[86]},{"name":"IPrintDialogServices","features":[86]},{"name":"ITALIC_FONTTYPE","features":[86]},{"name":"LBSELCHSTRING","features":[86]},{"name":"LBSELCHSTRINGA","features":[86]},{"name":"LBSELCHSTRINGW","features":[86]},{"name":"LPCCHOOKPROC","features":[3,86]},{"name":"LPCFHOOKPROC","features":[3,86]},{"name":"LPFRHOOKPROC","features":[3,86]},{"name":"LPOFNHOOKPROC","features":[3,86]},{"name":"LPPAGEPAINTHOOK","features":[3,86]},{"name":"LPPAGESETUPHOOK","features":[3,86]},{"name":"LPPRINTHOOKPROC","features":[3,86]},{"name":"LPSETUPHOOKPROC","features":[3,86]},{"name":"NUM_BASIC_COLORS","features":[86]},{"name":"NUM_CUSTOM_COLORS","features":[86]},{"name":"OFNOTIFYA","features":[3,86]},{"name":"OFNOTIFYA","features":[3,86]},{"name":"OFNOTIFYEXA","features":[3,86]},{"name":"OFNOTIFYEXA","features":[3,86]},{"name":"OFNOTIFYEXW","features":[3,86]},{"name":"OFNOTIFYEXW","features":[3,86]},{"name":"OFNOTIFYW","features":[3,86]},{"name":"OFNOTIFYW","features":[3,86]},{"name":"OFN_ALLOWMULTISELECT","features":[86]},{"name":"OFN_CREATEPROMPT","features":[86]},{"name":"OFN_DONTADDTORECENT","features":[86]},{"name":"OFN_ENABLEHOOK","features":[86]},{"name":"OFN_ENABLEINCLUDENOTIFY","features":[86]},{"name":"OFN_ENABLESIZING","features":[86]},{"name":"OFN_ENABLETEMPLATE","features":[86]},{"name":"OFN_ENABLETEMPLATEHANDLE","features":[86]},{"name":"OFN_EXPLORER","features":[86]},{"name":"OFN_EXTENSIONDIFFERENT","features":[86]},{"name":"OFN_EX_NONE","features":[86]},{"name":"OFN_EX_NOPLACESBAR","features":[86]},{"name":"OFN_FILEMUSTEXIST","features":[86]},{"name":"OFN_FORCESHOWHIDDEN","features":[86]},{"name":"OFN_HIDEREADONLY","features":[86]},{"name":"OFN_LONGNAMES","features":[86]},{"name":"OFN_NOCHANGEDIR","features":[86]},{"name":"OFN_NODEREFERENCELINKS","features":[86]},{"name":"OFN_NOLONGNAMES","features":[86]},{"name":"OFN_NONETWORKBUTTON","features":[86]},{"name":"OFN_NOREADONLYRETURN","features":[86]},{"name":"OFN_NOTESTFILECREATE","features":[86]},{"name":"OFN_NOVALIDATE","features":[86]},{"name":"OFN_OVERWRITEPROMPT","features":[86]},{"name":"OFN_PATHMUSTEXIST","features":[86]},{"name":"OFN_READONLY","features":[86]},{"name":"OFN_SHAREAWARE","features":[86]},{"name":"OFN_SHAREFALLTHROUGH","features":[86]},{"name":"OFN_SHARENOWARN","features":[86]},{"name":"OFN_SHAREWARN","features":[86]},{"name":"OFN_SHOWHELP","features":[86]},{"name":"OPENFILENAMEA","features":[3,86]},{"name":"OPENFILENAMEA","features":[3,86]},{"name":"OPENFILENAMEW","features":[3,86]},{"name":"OPENFILENAMEW","features":[3,86]},{"name":"OPENFILENAME_NT4A","features":[3,86]},{"name":"OPENFILENAME_NT4A","features":[3,86]},{"name":"OPENFILENAME_NT4W","features":[3,86]},{"name":"OPENFILENAME_NT4W","features":[3,86]},{"name":"OPEN_FILENAME_FLAGS","features":[86]},{"name":"OPEN_FILENAME_FLAGS_EX","features":[86]},{"name":"PAGESETUPDLGA","features":[3,86]},{"name":"PAGESETUPDLGA","features":[3,86]},{"name":"PAGESETUPDLGW","features":[3,86]},{"name":"PAGESETUPDLGW","features":[3,86]},{"name":"PAGESETUPDLG_FLAGS","features":[86]},{"name":"PDERR_CREATEICFAILURE","features":[86]},{"name":"PDERR_DEFAULTDIFFERENT","features":[86]},{"name":"PDERR_DNDMMISMATCH","features":[86]},{"name":"PDERR_GETDEVMODEFAIL","features":[86]},{"name":"PDERR_INITFAILURE","features":[86]},{"name":"PDERR_LOADDRVFAILURE","features":[86]},{"name":"PDERR_NODEFAULTPRN","features":[86]},{"name":"PDERR_NODEVICES","features":[86]},{"name":"PDERR_PARSEFAILURE","features":[86]},{"name":"PDERR_PRINTERCODES","features":[86]},{"name":"PDERR_PRINTERNOTFOUND","features":[86]},{"name":"PDERR_RETDEFFAILURE","features":[86]},{"name":"PDERR_SETUPFAILURE","features":[86]},{"name":"PD_ALLPAGES","features":[86]},{"name":"PD_COLLATE","features":[86]},{"name":"PD_CURRENTPAGE","features":[86]},{"name":"PD_DISABLEPRINTTOFILE","features":[86]},{"name":"PD_ENABLEPRINTHOOK","features":[86]},{"name":"PD_ENABLEPRINTTEMPLATE","features":[86]},{"name":"PD_ENABLEPRINTTEMPLATEHANDLE","features":[86]},{"name":"PD_ENABLESETUPHOOK","features":[86]},{"name":"PD_ENABLESETUPTEMPLATE","features":[86]},{"name":"PD_ENABLESETUPTEMPLATEHANDLE","features":[86]},{"name":"PD_EXCLUSIONFLAGS","features":[86]},{"name":"PD_HIDEPRINTTOFILE","features":[86]},{"name":"PD_NOCURRENTPAGE","features":[86]},{"name":"PD_NONETWORKBUTTON","features":[86]},{"name":"PD_NOPAGENUMS","features":[86]},{"name":"PD_NOSELECTION","features":[86]},{"name":"PD_NOWARNING","features":[86]},{"name":"PD_PAGENUMS","features":[86]},{"name":"PD_PRINTSETUP","features":[86]},{"name":"PD_PRINTTOFILE","features":[86]},{"name":"PD_RESULT_APPLY","features":[86]},{"name":"PD_RESULT_CANCEL","features":[86]},{"name":"PD_RESULT_PRINT","features":[86]},{"name":"PD_RETURNDC","features":[86]},{"name":"PD_RETURNDEFAULT","features":[86]},{"name":"PD_RETURNIC","features":[86]},{"name":"PD_SELECTION","features":[86]},{"name":"PD_SHOWHELP","features":[86]},{"name":"PD_USEDEVMODECOPIES","features":[86]},{"name":"PD_USEDEVMODECOPIESANDCOLLATE","features":[86]},{"name":"PD_USELARGETEMPLATE","features":[86]},{"name":"PRINTDLGA","features":[3,14,86]},{"name":"PRINTDLGA","features":[3,14,86]},{"name":"PRINTDLGEXA","features":[3,14,86]},{"name":"PRINTDLGEXA","features":[3,14,86]},{"name":"PRINTDLGEXW","features":[3,14,86]},{"name":"PRINTDLGEXW","features":[3,14,86]},{"name":"PRINTDLGEX_FLAGS","features":[86]},{"name":"PRINTDLGW","features":[3,14,86]},{"name":"PRINTDLGW","features":[3,14,86]},{"name":"PRINTER_FONTTYPE","features":[86]},{"name":"PRINTPAGERANGE","features":[86]},{"name":"PRINTPAGERANGE","features":[86]},{"name":"PSD_DEFAULTMINMARGINS","features":[86]},{"name":"PSD_DISABLEMARGINS","features":[86]},{"name":"PSD_DISABLEORIENTATION","features":[86]},{"name":"PSD_DISABLEPAGEPAINTING","features":[86]},{"name":"PSD_DISABLEPAPER","features":[86]},{"name":"PSD_DISABLEPRINTER","features":[86]},{"name":"PSD_ENABLEPAGEPAINTHOOK","features":[86]},{"name":"PSD_ENABLEPAGESETUPHOOK","features":[86]},{"name":"PSD_ENABLEPAGESETUPTEMPLATE","features":[86]},{"name":"PSD_ENABLEPAGESETUPTEMPLATEHANDLE","features":[86]},{"name":"PSD_INHUNDREDTHSOFMILLIMETERS","features":[86]},{"name":"PSD_INTHOUSANDTHSOFINCHES","features":[86]},{"name":"PSD_INWININIINTLMEASURE","features":[86]},{"name":"PSD_MARGINS","features":[86]},{"name":"PSD_MINMARGINS","features":[86]},{"name":"PSD_NONETWORKBUTTON","features":[86]},{"name":"PSD_NOWARNING","features":[86]},{"name":"PSD_RETURNDEFAULT","features":[86]},{"name":"PSD_SHOWHELP","features":[86]},{"name":"PS_OPENTYPE_FONTTYPE","features":[86]},{"name":"PageSetupDlgA","features":[3,86]},{"name":"PageSetupDlgW","features":[3,86]},{"name":"PrintDlgA","features":[3,14,86]},{"name":"PrintDlgExA","features":[3,14,86]},{"name":"PrintDlgExW","features":[3,14,86]},{"name":"PrintDlgW","features":[3,14,86]},{"name":"REGULAR_FONTTYPE","features":[86]},{"name":"ReplaceTextA","features":[3,86]},{"name":"ReplaceTextW","features":[3,86]},{"name":"SCREEN_FONTTYPE","features":[86]},{"name":"SETRGBSTRING","features":[86]},{"name":"SETRGBSTRINGA","features":[86]},{"name":"SETRGBSTRINGW","features":[86]},{"name":"SHAREVISTRING","features":[86]},{"name":"SHAREVISTRINGA","features":[86]},{"name":"SHAREVISTRINGW","features":[86]},{"name":"SIMULATED_FONTTYPE","features":[86]},{"name":"START_PAGE_GENERAL","features":[86]},{"name":"SYMBOL_FONTTYPE","features":[86]},{"name":"TT_OPENTYPE_FONTTYPE","features":[86]},{"name":"TYPE1_FONTTYPE","features":[86]},{"name":"WM_CHOOSEFONT_GETLOGFONT","features":[86]},{"name":"WM_CHOOSEFONT_SETFLAGS","features":[86]},{"name":"WM_CHOOSEFONT_SETLOGFONT","features":[86]},{"name":"WM_PSD_ENVSTAMPRECT","features":[86]},{"name":"WM_PSD_FULLPAGERECT","features":[86]},{"name":"WM_PSD_GREEKTEXTRECT","features":[86]},{"name":"WM_PSD_MARGINRECT","features":[86]},{"name":"WM_PSD_MINMARGINRECT","features":[86]},{"name":"WM_PSD_YAFULLPAGERECT","features":[86]}],"655":[{"name":"AdjustWindowRectExForDpi","features":[3,212,52]},{"name":"AreDpiAwarenessContextsEqual","features":[3,212]},{"name":"DCDC_DEFAULT","features":[212]},{"name":"DCDC_DISABLE_FONT_UPDATE","features":[212]},{"name":"DCDC_DISABLE_RELAYOUT","features":[212]},{"name":"DDC_DEFAULT","features":[212]},{"name":"DDC_DISABLE_ALL","features":[212]},{"name":"DDC_DISABLE_CONTROL_RELAYOUT","features":[212]},{"name":"DDC_DISABLE_RESIZE","features":[212]},{"name":"DIALOG_CONTROL_DPI_CHANGE_BEHAVIORS","features":[212]},{"name":"DIALOG_DPI_CHANGE_BEHAVIORS","features":[212]},{"name":"DPI_AWARENESS","features":[212]},{"name":"DPI_AWARENESS_CONTEXT","features":[212]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE","features":[212]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2","features":[212]},{"name":"DPI_AWARENESS_CONTEXT_SYSTEM_AWARE","features":[212]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE","features":[212]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE_GDISCALED","features":[212]},{"name":"DPI_AWARENESS_INVALID","features":[212]},{"name":"DPI_AWARENESS_PER_MONITOR_AWARE","features":[212]},{"name":"DPI_AWARENESS_SYSTEM_AWARE","features":[212]},{"name":"DPI_AWARENESS_UNAWARE","features":[212]},{"name":"DPI_HOSTING_BEHAVIOR","features":[212]},{"name":"DPI_HOSTING_BEHAVIOR_DEFAULT","features":[212]},{"name":"DPI_HOSTING_BEHAVIOR_INVALID","features":[212]},{"name":"DPI_HOSTING_BEHAVIOR_MIXED","features":[212]},{"name":"EnableNonClientDpiScaling","features":[3,212]},{"name":"GetAwarenessFromDpiAwarenessContext","features":[212]},{"name":"GetDialogControlDpiChangeBehavior","features":[3,212]},{"name":"GetDialogDpiChangeBehavior","features":[3,212]},{"name":"GetDpiAwarenessContextForProcess","features":[3,212]},{"name":"GetDpiForMonitor","features":[14,212]},{"name":"GetDpiForSystem","features":[212]},{"name":"GetDpiForWindow","features":[3,212]},{"name":"GetDpiFromDpiAwarenessContext","features":[212]},{"name":"GetProcessDpiAwareness","features":[3,212]},{"name":"GetSystemDpiForProcess","features":[3,212]},{"name":"GetSystemMetricsForDpi","features":[212,52]},{"name":"GetThreadDpiAwarenessContext","features":[212]},{"name":"GetThreadDpiHostingBehavior","features":[212]},{"name":"GetWindowDpiAwarenessContext","features":[3,212]},{"name":"GetWindowDpiHostingBehavior","features":[3,212]},{"name":"IsValidDpiAwarenessContext","features":[3,212]},{"name":"LogicalToPhysicalPointForPerMonitorDPI","features":[3,212]},{"name":"MDT_ANGULAR_DPI","features":[212]},{"name":"MDT_DEFAULT","features":[212]},{"name":"MDT_EFFECTIVE_DPI","features":[212]},{"name":"MDT_RAW_DPI","features":[212]},{"name":"MONITOR_DPI_TYPE","features":[212]},{"name":"OpenThemeDataForDpi","features":[3,42,212]},{"name":"PROCESS_DPI_AWARENESS","features":[212]},{"name":"PROCESS_DPI_UNAWARE","features":[212]},{"name":"PROCESS_PER_MONITOR_DPI_AWARE","features":[212]},{"name":"PROCESS_SYSTEM_DPI_AWARE","features":[212]},{"name":"PhysicalToLogicalPointForPerMonitorDPI","features":[3,212]},{"name":"SetDialogControlDpiChangeBehavior","features":[3,212]},{"name":"SetDialogDpiChangeBehavior","features":[3,212]},{"name":"SetProcessDpiAwareness","features":[212]},{"name":"SetProcessDpiAwarenessContext","features":[3,212]},{"name":"SetThreadDpiAwarenessContext","features":[212]},{"name":"SetThreadDpiHostingBehavior","features":[212]},{"name":"SystemParametersInfoForDpi","features":[3,212]}],"656":[{"name":"DefRawInputProc","features":[3,213]},{"name":"GetCIMSSM","features":[3,213]},{"name":"GetCurrentInputMessageSource","features":[3,213]},{"name":"GetRawInputBuffer","features":[3,213]},{"name":"GetRawInputData","features":[213]},{"name":"GetRawInputDeviceInfoA","features":[3,213]},{"name":"GetRawInputDeviceInfoW","features":[3,213]},{"name":"GetRawInputDeviceList","features":[3,213]},{"name":"GetRegisteredRawInputDevices","features":[3,213]},{"name":"HRAWINPUT","features":[213]},{"name":"IMDT_KEYBOARD","features":[213]},{"name":"IMDT_MOUSE","features":[213]},{"name":"IMDT_PEN","features":[213]},{"name":"IMDT_TOUCH","features":[213]},{"name":"IMDT_TOUCHPAD","features":[213]},{"name":"IMDT_UNAVAILABLE","features":[213]},{"name":"IMO_HARDWARE","features":[213]},{"name":"IMO_INJECTED","features":[213]},{"name":"IMO_SYSTEM","features":[213]},{"name":"IMO_UNAVAILABLE","features":[213]},{"name":"INPUT_MESSAGE_DEVICE_TYPE","features":[213]},{"name":"INPUT_MESSAGE_ORIGIN_ID","features":[213]},{"name":"INPUT_MESSAGE_SOURCE","features":[213]},{"name":"MOUSE_ATTRIBUTES_CHANGED","features":[213]},{"name":"MOUSE_MOVE_ABSOLUTE","features":[213]},{"name":"MOUSE_MOVE_NOCOALESCE","features":[213]},{"name":"MOUSE_MOVE_RELATIVE","features":[213]},{"name":"MOUSE_STATE","features":[213]},{"name":"MOUSE_VIRTUAL_DESKTOP","features":[213]},{"name":"RAWHID","features":[213]},{"name":"RAWINPUT","features":[3,213]},{"name":"RAWINPUTDEVICE","features":[3,213]},{"name":"RAWINPUTDEVICELIST","features":[3,213]},{"name":"RAWINPUTDEVICE_FLAGS","features":[213]},{"name":"RAWINPUTHEADER","features":[3,213]},{"name":"RAWKEYBOARD","features":[213]},{"name":"RAWMOUSE","features":[213]},{"name":"RAW_INPUT_DATA_COMMAND_FLAGS","features":[213]},{"name":"RAW_INPUT_DEVICE_INFO_COMMAND","features":[213]},{"name":"RIDEV_APPKEYS","features":[213]},{"name":"RIDEV_CAPTUREMOUSE","features":[213]},{"name":"RIDEV_DEVNOTIFY","features":[213]},{"name":"RIDEV_EXCLUDE","features":[213]},{"name":"RIDEV_EXINPUTSINK","features":[213]},{"name":"RIDEV_INPUTSINK","features":[213]},{"name":"RIDEV_NOHOTKEYS","features":[213]},{"name":"RIDEV_NOLEGACY","features":[213]},{"name":"RIDEV_PAGEONLY","features":[213]},{"name":"RIDEV_REMOVE","features":[213]},{"name":"RIDI_DEVICEINFO","features":[213]},{"name":"RIDI_DEVICENAME","features":[213]},{"name":"RIDI_PREPARSEDDATA","features":[213]},{"name":"RID_DEVICE_INFO","features":[3,213]},{"name":"RID_DEVICE_INFO_HID","features":[213]},{"name":"RID_DEVICE_INFO_KEYBOARD","features":[213]},{"name":"RID_DEVICE_INFO_MOUSE","features":[3,213]},{"name":"RID_DEVICE_INFO_TYPE","features":[213]},{"name":"RID_HEADER","features":[213]},{"name":"RID_INPUT","features":[213]},{"name":"RIM_TYPEHID","features":[213]},{"name":"RIM_TYPEKEYBOARD","features":[213]},{"name":"RIM_TYPEMOUSE","features":[213]},{"name":"RegisterRawInputDevices","features":[3,213]}],"657":[{"name":"APPLETIDLIST","features":[214]},{"name":"APPLYCANDEXPARAM","features":[214]},{"name":"ATTR_CONVERTED","features":[214]},{"name":"ATTR_FIXEDCONVERTED","features":[214]},{"name":"ATTR_INPUT","features":[214]},{"name":"ATTR_INPUT_ERROR","features":[214]},{"name":"ATTR_TARGET_CONVERTED","features":[214]},{"name":"ATTR_TARGET_NOTCONVERTED","features":[214]},{"name":"CANDIDATEFORM","features":[3,214]},{"name":"CANDIDATEINFO","features":[214]},{"name":"CANDIDATELIST","features":[214]},{"name":"CATID_MSIME_IImePadApplet","features":[214]},{"name":"CATID_MSIME_IImePadApplet1000","features":[214]},{"name":"CATID_MSIME_IImePadApplet1200","features":[214]},{"name":"CATID_MSIME_IImePadApplet900","features":[214]},{"name":"CATID_MSIME_IImePadApplet_VER7","features":[214]},{"name":"CATID_MSIME_IImePadApplet_VER80","features":[214]},{"name":"CATID_MSIME_IImePadApplet_VER81","features":[214]},{"name":"CActiveIMM","features":[214]},{"name":"CFS_CANDIDATEPOS","features":[214]},{"name":"CFS_DEFAULT","features":[214]},{"name":"CFS_EXCLUDE","features":[214]},{"name":"CFS_FORCE_POSITION","features":[214]},{"name":"CFS_POINT","features":[214]},{"name":"CFS_RECT","features":[214]},{"name":"CHARINFO_APPLETID_MASK","features":[214]},{"name":"CHARINFO_CHARID_MASK","features":[214]},{"name":"CHARINFO_FEID_MASK","features":[214]},{"name":"CLSID_ImePlugInDictDictionaryList_CHS","features":[214]},{"name":"CLSID_ImePlugInDictDictionaryList_JPN","features":[214]},{"name":"CLSID_VERSION_DEPENDENT_MSIME_JAPANESE","features":[214]},{"name":"COMPOSITIONFORM","features":[3,214]},{"name":"COMPOSITIONSTRING","features":[214]},{"name":"CPS_CANCEL","features":[214]},{"name":"CPS_COMPLETE","features":[214]},{"name":"CPS_CONVERT","features":[214]},{"name":"CPS_REVERT","features":[214]},{"name":"CS_INSERTCHAR","features":[214]},{"name":"CS_NOMOVECARET","features":[214]},{"name":"E_LARGEINPUT","features":[214]},{"name":"E_NOCAND","features":[214]},{"name":"E_NOTENOUGH_BUFFER","features":[214]},{"name":"E_NOTENOUGH_WDD","features":[214]},{"name":"FEID_CHINESE_HONGKONG","features":[214]},{"name":"FEID_CHINESE_SIMPLIFIED","features":[214]},{"name":"FEID_CHINESE_SINGAPORE","features":[214]},{"name":"FEID_CHINESE_TRADITIONAL","features":[214]},{"name":"FEID_JAPANESE","features":[214]},{"name":"FEID_KOREAN","features":[214]},{"name":"FEID_KOREAN_JOHAB","features":[214]},{"name":"FEID_NONE","features":[214]},{"name":"FELANG_CLMN_FIXD","features":[214]},{"name":"FELANG_CLMN_FIXR","features":[214]},{"name":"FELANG_CLMN_NOPBREAK","features":[214]},{"name":"FELANG_CLMN_NOWBREAK","features":[214]},{"name":"FELANG_CLMN_PBREAK","features":[214]},{"name":"FELANG_CLMN_WBREAK","features":[214]},{"name":"FELANG_CMODE_AUTOMATIC","features":[214]},{"name":"FELANG_CMODE_BESTFIRST","features":[214]},{"name":"FELANG_CMODE_BOPOMOFO","features":[214]},{"name":"FELANG_CMODE_CONVERSATION","features":[214]},{"name":"FELANG_CMODE_FULLWIDTHOUT","features":[214]},{"name":"FELANG_CMODE_HALFWIDTHOUT","features":[214]},{"name":"FELANG_CMODE_HANGUL","features":[214]},{"name":"FELANG_CMODE_HIRAGANAOUT","features":[214]},{"name":"FELANG_CMODE_KATAKANAOUT","features":[214]},{"name":"FELANG_CMODE_MERGECAND","features":[214]},{"name":"FELANG_CMODE_MONORUBY","features":[214]},{"name":"FELANG_CMODE_NAME","features":[214]},{"name":"FELANG_CMODE_NOINVISIBLECHAR","features":[214]},{"name":"FELANG_CMODE_NONE","features":[214]},{"name":"FELANG_CMODE_NOPRUNING","features":[214]},{"name":"FELANG_CMODE_PHRASEPREDICT","features":[214]},{"name":"FELANG_CMODE_PINYIN","features":[214]},{"name":"FELANG_CMODE_PLAURALCLAUSE","features":[214]},{"name":"FELANG_CMODE_PRECONV","features":[214]},{"name":"FELANG_CMODE_RADICAL","features":[214]},{"name":"FELANG_CMODE_ROMAN","features":[214]},{"name":"FELANG_CMODE_SINGLECONVERT","features":[214]},{"name":"FELANG_CMODE_UNKNOWNREADING","features":[214]},{"name":"FELANG_CMODE_USENOREVWORDS","features":[214]},{"name":"FELANG_INVALD_PO","features":[214]},{"name":"FELANG_REQ_CONV","features":[214]},{"name":"FELANG_REQ_RECONV","features":[214]},{"name":"FELANG_REQ_REV","features":[214]},{"name":"FID_MSIME_KMS_DEL_KEYLIST","features":[214]},{"name":"FID_MSIME_KMS_FUNCDESC","features":[214]},{"name":"FID_MSIME_KMS_GETMAP","features":[214]},{"name":"FID_MSIME_KMS_GETMAPFAST","features":[214]},{"name":"FID_MSIME_KMS_GETMAPSEAMLESS","features":[214]},{"name":"FID_MSIME_KMS_INIT","features":[214]},{"name":"FID_MSIME_KMS_INVOKE","features":[214]},{"name":"FID_MSIME_KMS_NOTIFY","features":[214]},{"name":"FID_MSIME_KMS_SETMAP","features":[214]},{"name":"FID_MSIME_KMS_TERM","features":[214]},{"name":"FID_MSIME_KMS_VERSION","features":[214]},{"name":"FID_MSIME_VERSION","features":[214]},{"name":"FID_RECONVERT_VERSION","features":[214]},{"name":"GCL_CONVERSION","features":[214]},{"name":"GCL_REVERSECONVERSION","features":[214]},{"name":"GCL_REVERSE_LENGTH","features":[214]},{"name":"GCSEX_CANCELRECONVERT","features":[214]},{"name":"GCS_COMPATTR","features":[214]},{"name":"GCS_COMPCLAUSE","features":[214]},{"name":"GCS_COMPREADATTR","features":[214]},{"name":"GCS_COMPREADCLAUSE","features":[214]},{"name":"GCS_COMPREADSTR","features":[214]},{"name":"GCS_COMPSTR","features":[214]},{"name":"GCS_CURSORPOS","features":[214]},{"name":"GCS_DELTASTART","features":[214]},{"name":"GCS_RESULTCLAUSE","features":[214]},{"name":"GCS_RESULTREADCLAUSE","features":[214]},{"name":"GCS_RESULTREADSTR","features":[214]},{"name":"GCS_RESULTSTR","features":[214]},{"name":"GET_CONVERSION_LIST_FLAG","features":[214]},{"name":"GET_GUIDE_LINE_TYPE","features":[214]},{"name":"GGL_INDEX","features":[214]},{"name":"GGL_LEVEL","features":[214]},{"name":"GGL_PRIVATE","features":[214]},{"name":"GGL_STRING","features":[214]},{"name":"GL_ID_CANNOTSAVE","features":[214]},{"name":"GL_ID_CHOOSECANDIDATE","features":[214]},{"name":"GL_ID_INPUTCODE","features":[214]},{"name":"GL_ID_INPUTRADICAL","features":[214]},{"name":"GL_ID_INPUTREADING","features":[214]},{"name":"GL_ID_INPUTSYMBOL","features":[214]},{"name":"GL_ID_NOCONVERT","features":[214]},{"name":"GL_ID_NODICTIONARY","features":[214]},{"name":"GL_ID_NOMODULE","features":[214]},{"name":"GL_ID_PRIVATE_FIRST","features":[214]},{"name":"GL_ID_PRIVATE_LAST","features":[214]},{"name":"GL_ID_READINGCONFLICT","features":[214]},{"name":"GL_ID_REVERSECONVERSION","features":[214]},{"name":"GL_ID_TOOMANYSTROKE","features":[214]},{"name":"GL_ID_TYPINGERROR","features":[214]},{"name":"GL_ID_UNKNOWN","features":[214]},{"name":"GL_LEVEL_ERROR","features":[214]},{"name":"GL_LEVEL_FATAL","features":[214]},{"name":"GL_LEVEL_INFORMATION","features":[214]},{"name":"GL_LEVEL_NOGUIDELINE","features":[214]},{"name":"GL_LEVEL_WARNING","features":[214]},{"name":"GUIDELINE","features":[214]},{"name":"HIMC","features":[214]},{"name":"HIMCC","features":[214]},{"name":"IACE_CHILDREN","features":[214]},{"name":"IACE_DEFAULT","features":[214]},{"name":"IACE_IGNORENOCONTEXT","features":[214]},{"name":"IActiveIME","features":[214]},{"name":"IActiveIME2","features":[214]},{"name":"IActiveIMMApp","features":[214]},{"name":"IActiveIMMIME","features":[214]},{"name":"IActiveIMMMessagePumpOwner","features":[214]},{"name":"IActiveIMMRegistrar","features":[214]},{"name":"IEnumInputContext","features":[214]},{"name":"IEnumRegisterWordA","features":[214]},{"name":"IEnumRegisterWordW","features":[214]},{"name":"IFEC_S_ALREADY_DEFAULT","features":[214]},{"name":"IFEClassFactory","features":[214]},{"name":"IFECommon","features":[214]},{"name":"IFED_ACTIVE_DICT","features":[214]},{"name":"IFED_ATOK10","features":[214]},{"name":"IFED_ATOK9","features":[214]},{"name":"IFED_E_INVALID_FORMAT","features":[214]},{"name":"IFED_E_NOT_FOUND","features":[214]},{"name":"IFED_E_NOT_SUPPORTED","features":[214]},{"name":"IFED_E_NOT_USER_DIC","features":[214]},{"name":"IFED_E_NO_ENTRY","features":[214]},{"name":"IFED_E_OPEN_FAILED","features":[214]},{"name":"IFED_E_REGISTER_DISCONNECTED","features":[214]},{"name":"IFED_E_REGISTER_FAILED","features":[214]},{"name":"IFED_E_REGISTER_ILLEGAL_POS","features":[214]},{"name":"IFED_E_REGISTER_IMPROPER_WORD","features":[214]},{"name":"IFED_E_USER_COMMENT","features":[214]},{"name":"IFED_E_WRITE_FAILED","features":[214]},{"name":"IFED_MSIME2_BIN_SYSTEM","features":[214]},{"name":"IFED_MSIME2_BIN_USER","features":[214]},{"name":"IFED_MSIME2_TEXT_USER","features":[214]},{"name":"IFED_MSIME95_BIN_SYSTEM","features":[214]},{"name":"IFED_MSIME95_BIN_USER","features":[214]},{"name":"IFED_MSIME95_TEXT_USER","features":[214]},{"name":"IFED_MSIME97_BIN_SYSTEM","features":[214]},{"name":"IFED_MSIME97_BIN_USER","features":[214]},{"name":"IFED_MSIME97_TEXT_USER","features":[214]},{"name":"IFED_MSIME98_BIN_SYSTEM","features":[214]},{"name":"IFED_MSIME98_BIN_USER","features":[214]},{"name":"IFED_MSIME98_SYSTEM_CE","features":[214]},{"name":"IFED_MSIME98_TEXT_USER","features":[214]},{"name":"IFED_MSIME_BIN_SYSTEM","features":[214]},{"name":"IFED_MSIME_BIN_USER","features":[214]},{"name":"IFED_MSIME_TEXT_USER","features":[214]},{"name":"IFED_NEC_AI_","features":[214]},{"name":"IFED_PIME2_BIN_STANDARD_SYSTEM","features":[214]},{"name":"IFED_PIME2_BIN_SYSTEM","features":[214]},{"name":"IFED_PIME2_BIN_USER","features":[214]},{"name":"IFED_POS_ADJECTIVE","features":[214]},{"name":"IFED_POS_ADJECTIVE_VERB","features":[214]},{"name":"IFED_POS_ADNOUN","features":[214]},{"name":"IFED_POS_ADVERB","features":[214]},{"name":"IFED_POS_AFFIX","features":[214]},{"name":"IFED_POS_ALL","features":[214]},{"name":"IFED_POS_AUXILIARY_VERB","features":[214]},{"name":"IFED_POS_CONJUNCTION","features":[214]},{"name":"IFED_POS_DEPENDENT","features":[214]},{"name":"IFED_POS_IDIOMS","features":[214]},{"name":"IFED_POS_INDEPENDENT","features":[214]},{"name":"IFED_POS_INFLECTIONALSUFFIX","features":[214]},{"name":"IFED_POS_INTERJECTION","features":[214]},{"name":"IFED_POS_NONE","features":[214]},{"name":"IFED_POS_NOUN","features":[214]},{"name":"IFED_POS_PARTICLE","features":[214]},{"name":"IFED_POS_PREFIX","features":[214]},{"name":"IFED_POS_SUB_VERB","features":[214]},{"name":"IFED_POS_SUFFIX","features":[214]},{"name":"IFED_POS_SYMBOLS","features":[214]},{"name":"IFED_POS_TANKANJI","features":[214]},{"name":"IFED_POS_VERB","features":[214]},{"name":"IFED_REG_ALL","features":[214]},{"name":"IFED_REG_AUTO","features":[214]},{"name":"IFED_REG_DEL","features":[214]},{"name":"IFED_REG_GRAMMAR","features":[214]},{"name":"IFED_REG_HEAD","features":[214]},{"name":"IFED_REG_NONE","features":[214]},{"name":"IFED_REG_TAIL","features":[214]},{"name":"IFED_REG_USER","features":[214]},{"name":"IFED_REL_ALL","features":[214]},{"name":"IFED_REL_DE","features":[214]},{"name":"IFED_REL_FUKU_YOUGEN","features":[214]},{"name":"IFED_REL_GA","features":[214]},{"name":"IFED_REL_HE","features":[214]},{"name":"IFED_REL_IDEOM","features":[214]},{"name":"IFED_REL_KARA","features":[214]},{"name":"IFED_REL_KEIDOU1_YOUGEN","features":[214]},{"name":"IFED_REL_KEIDOU2_YOUGEN","features":[214]},{"name":"IFED_REL_KEIYOU_TARU_YOUGEN","features":[214]},{"name":"IFED_REL_KEIYOU_TO_YOUGEN","features":[214]},{"name":"IFED_REL_KEIYOU_YOUGEN","features":[214]},{"name":"IFED_REL_MADE","features":[214]},{"name":"IFED_REL_NI","features":[214]},{"name":"IFED_REL_NO","features":[214]},{"name":"IFED_REL_NONE","features":[214]},{"name":"IFED_REL_RENSOU","features":[214]},{"name":"IFED_REL_RENTAI_MEI","features":[214]},{"name":"IFED_REL_TAIGEN","features":[214]},{"name":"IFED_REL_TO","features":[214]},{"name":"IFED_REL_UNKNOWN1","features":[214]},{"name":"IFED_REL_UNKNOWN2","features":[214]},{"name":"IFED_REL_WO","features":[214]},{"name":"IFED_REL_YORI","features":[214]},{"name":"IFED_REL_YOUGEN","features":[214]},{"name":"IFED_SELECT_ALL","features":[214]},{"name":"IFED_SELECT_COMMENT","features":[214]},{"name":"IFED_SELECT_DISPLAY","features":[214]},{"name":"IFED_SELECT_NONE","features":[214]},{"name":"IFED_SELECT_POS","features":[214]},{"name":"IFED_SELECT_READING","features":[214]},{"name":"IFED_S_COMMENT_CHANGED","features":[214]},{"name":"IFED_S_EMPTY_DICTIONARY","features":[214]},{"name":"IFED_S_MORE_ENTRIES","features":[214]},{"name":"IFED_S_WORD_EXISTS","features":[214]},{"name":"IFED_TYPE_ALL","features":[214]},{"name":"IFED_TYPE_ENGLISH","features":[214]},{"name":"IFED_TYPE_GENERAL","features":[214]},{"name":"IFED_TYPE_NAMEPLACE","features":[214]},{"name":"IFED_TYPE_NONE","features":[214]},{"name":"IFED_TYPE_REVERSE","features":[214]},{"name":"IFED_TYPE_SPEECH","features":[214]},{"name":"IFED_UCT_MAX","features":[214]},{"name":"IFED_UCT_NONE","features":[214]},{"name":"IFED_UCT_STRING_SJIS","features":[214]},{"name":"IFED_UCT_STRING_UNICODE","features":[214]},{"name":"IFED_UCT_USER_DEFINED","features":[214]},{"name":"IFED_UNKNOWN","features":[214]},{"name":"IFED_VJE_20","features":[214]},{"name":"IFED_WX_II","features":[214]},{"name":"IFED_WX_III","features":[214]},{"name":"IFEDictionary","features":[214]},{"name":"IFELanguage","features":[214]},{"name":"IGIMIF_RIGHTMENU","features":[214]},{"name":"IGIMII_CMODE","features":[214]},{"name":"IGIMII_CONFIGURE","features":[214]},{"name":"IGIMII_HELP","features":[214]},{"name":"IGIMII_INPUTTOOLS","features":[214]},{"name":"IGIMII_OTHER","features":[214]},{"name":"IGIMII_SMODE","features":[214]},{"name":"IGIMII_TOOLS","features":[214]},{"name":"IImePad","features":[214]},{"name":"IImePadApplet","features":[214]},{"name":"IImePlugInDictDictionaryList","features":[214]},{"name":"IImeSpecifyApplets","features":[214]},{"name":"IMCENUMPROC","features":[3,214]},{"name":"IMC_CLOSESTATUSWINDOW","features":[214]},{"name":"IMC_GETCANDIDATEPOS","features":[214]},{"name":"IMC_GETCOMPOSITIONFONT","features":[214]},{"name":"IMC_GETCOMPOSITIONWINDOW","features":[214]},{"name":"IMC_GETSOFTKBDFONT","features":[214]},{"name":"IMC_GETSOFTKBDPOS","features":[214]},{"name":"IMC_GETSOFTKBDSUBTYPE","features":[214]},{"name":"IMC_GETSTATUSWINDOWPOS","features":[214]},{"name":"IMC_OPENSTATUSWINDOW","features":[214]},{"name":"IMC_SETCANDIDATEPOS","features":[214]},{"name":"IMC_SETCOMPOSITIONFONT","features":[214]},{"name":"IMC_SETCOMPOSITIONWINDOW","features":[214]},{"name":"IMC_SETCONVERSIONMODE","features":[214]},{"name":"IMC_SETOPENSTATUS","features":[214]},{"name":"IMC_SETSENTENCEMODE","features":[214]},{"name":"IMC_SETSOFTKBDDATA","features":[214]},{"name":"IMC_SETSOFTKBDFONT","features":[214]},{"name":"IMC_SETSOFTKBDPOS","features":[214]},{"name":"IMC_SETSOFTKBDSUBTYPE","features":[214]},{"name":"IMC_SETSTATUSWINDOWPOS","features":[214]},{"name":"IMEAPPLETCFG","features":[3,214,52]},{"name":"IMEAPPLETUI","features":[3,214]},{"name":"IMECHARINFO","features":[214]},{"name":"IMECHARPOSITION","features":[3,214]},{"name":"IMECOMPOSITIONSTRINGINFO","features":[214]},{"name":"IMEDLG","features":[3,214]},{"name":"IMEDP","features":[214]},{"name":"IMEFAREASTINFO","features":[214]},{"name":"IMEFAREASTINFO_TYPE_COMMENT","features":[214]},{"name":"IMEFAREASTINFO_TYPE_COSTTIME","features":[214]},{"name":"IMEFAREASTINFO_TYPE_DEFAULT","features":[214]},{"name":"IMEFAREASTINFO_TYPE_READING","features":[214]},{"name":"IMEFMT","features":[214]},{"name":"IMEINFO","features":[214]},{"name":"IMEITEM","features":[214]},{"name":"IMEITEMCANDIDATE","features":[214]},{"name":"IMEKEYCTRLMASK_ALT","features":[214]},{"name":"IMEKEYCTRLMASK_CTRL","features":[214]},{"name":"IMEKEYCTRLMASK_SHIFT","features":[214]},{"name":"IMEKEYCTRL_DOWN","features":[214]},{"name":"IMEKEYCTRL_UP","features":[214]},{"name":"IMEKMS","features":[214]},{"name":"IMEKMSFUNCDESC","features":[214]},{"name":"IMEKMSINIT","features":[3,214]},{"name":"IMEKMSINVK","features":[214]},{"name":"IMEKMSKEY","features":[214]},{"name":"IMEKMSKMP","features":[214]},{"name":"IMEKMSNTFY","features":[3,214]},{"name":"IMEKMS_2NDLEVEL","features":[214]},{"name":"IMEKMS_CANDIDATE","features":[214]},{"name":"IMEKMS_COMPOSITION","features":[214]},{"name":"IMEKMS_IMEOFF","features":[214]},{"name":"IMEKMS_INPTGL","features":[214]},{"name":"IMEKMS_NOCOMPOSITION","features":[214]},{"name":"IMEKMS_SELECTION","features":[214]},{"name":"IMEKMS_TYPECAND","features":[214]},{"name":"IMEMENUITEMINFOA","features":[14,214]},{"name":"IMEMENUITEMINFOW","features":[14,214]},{"name":"IMEMENUITEM_STRING_SIZE","features":[214]},{"name":"IMEMOUSERET_NOTHANDLED","features":[214]},{"name":"IMEMOUSE_LDOWN","features":[214]},{"name":"IMEMOUSE_MDOWN","features":[214]},{"name":"IMEMOUSE_NONE","features":[214]},{"name":"IMEMOUSE_RDOWN","features":[214]},{"name":"IMEMOUSE_VERSION","features":[214]},{"name":"IMEMOUSE_WDOWN","features":[214]},{"name":"IMEMOUSE_WUP","features":[214]},{"name":"IMEPADCTRL_CARETBACKSPACE","features":[214]},{"name":"IMEPADCTRL_CARETBOTTOM","features":[214]},{"name":"IMEPADCTRL_CARETDELETE","features":[214]},{"name":"IMEPADCTRL_CARETLEFT","features":[214]},{"name":"IMEPADCTRL_CARETRIGHT","features":[214]},{"name":"IMEPADCTRL_CARETSET","features":[214]},{"name":"IMEPADCTRL_CARETTOP","features":[214]},{"name":"IMEPADCTRL_CLEARALL","features":[214]},{"name":"IMEPADCTRL_CONVERTALL","features":[214]},{"name":"IMEPADCTRL_DETERMINALL","features":[214]},{"name":"IMEPADCTRL_DETERMINCHAR","features":[214]},{"name":"IMEPADCTRL_INSERTFULLSPACE","features":[214]},{"name":"IMEPADCTRL_INSERTHALFSPACE","features":[214]},{"name":"IMEPADCTRL_INSERTSPACE","features":[214]},{"name":"IMEPADCTRL_OFFIME","features":[214]},{"name":"IMEPADCTRL_OFFPRECONVERSION","features":[214]},{"name":"IMEPADCTRL_ONIME","features":[214]},{"name":"IMEPADCTRL_ONPRECONVERSION","features":[214]},{"name":"IMEPADCTRL_PHONETICCANDIDATE","features":[214]},{"name":"IMEPADCTRL_PHRASEDELETE","features":[214]},{"name":"IMEPADREQ_CHANGESTRING","features":[214]},{"name":"IMEPADREQ_CHANGESTRINGCANDIDATEINFO","features":[214]},{"name":"IMEPADREQ_CHANGESTRINGINFO","features":[214]},{"name":"IMEPADREQ_DELETESTRING","features":[214]},{"name":"IMEPADREQ_FIRST","features":[214]},{"name":"IMEPADREQ_FORCEIMEPADWINDOWSHOW","features":[214]},{"name":"IMEPADREQ_GETAPPLETDATA","features":[214]},{"name":"IMEPADREQ_GETAPPLETUISTYLE","features":[214]},{"name":"IMEPADREQ_GETAPPLHWND","features":[214]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRING","features":[214]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGID","features":[214]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGINFO","features":[214]},{"name":"IMEPADREQ_GETCONVERSIONSTATUS","features":[214]},{"name":"IMEPADREQ_GETCURRENTIMEINFO","features":[214]},{"name":"IMEPADREQ_GETCURRENTUILANGID","features":[214]},{"name":"IMEPADREQ_GETDEFAULTUILANGID","features":[214]},{"name":"IMEPADREQ_GETSELECTEDSTRING","features":[214]},{"name":"IMEPADREQ_GETVERSION","features":[214]},{"name":"IMEPADREQ_INSERTITEMCANDIDATE","features":[214]},{"name":"IMEPADREQ_INSERTSTRING","features":[214]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATE","features":[214]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATEINFO","features":[214]},{"name":"IMEPADREQ_INSERTSTRINGINFO","features":[214]},{"name":"IMEPADREQ_ISAPPLETACTIVE","features":[214]},{"name":"IMEPADREQ_ISIMEPADWINDOWVISIBLE","features":[214]},{"name":"IMEPADREQ_POSTMODALNOTIFY","features":[214]},{"name":"IMEPADREQ_SENDCONTROL","features":[214]},{"name":"IMEPADREQ_SENDKEYCONTROL","features":[214]},{"name":"IMEPADREQ_SETAPPLETDATA","features":[214]},{"name":"IMEPADREQ_SETAPPLETMINMAXSIZE","features":[214]},{"name":"IMEPADREQ_SETAPPLETSIZE","features":[214]},{"name":"IMEPADREQ_SETAPPLETUISTYLE","features":[214]},{"name":"IMEPADREQ_SETTITLEFONT","features":[214]},{"name":"IMEPN_ACTIVATE","features":[214]},{"name":"IMEPN_APPLYCAND","features":[214]},{"name":"IMEPN_APPLYCANDEX","features":[214]},{"name":"IMEPN_CONFIG","features":[214]},{"name":"IMEPN_FIRST","features":[214]},{"name":"IMEPN_HELP","features":[214]},{"name":"IMEPN_HIDE","features":[214]},{"name":"IMEPN_INACTIVATE","features":[214]},{"name":"IMEPN_QUERYCAND","features":[214]},{"name":"IMEPN_SETTINGCHANGED","features":[214]},{"name":"IMEPN_SHOW","features":[214]},{"name":"IMEPN_SIZECHANGED","features":[214]},{"name":"IMEPN_SIZECHANGING","features":[214]},{"name":"IMEPN_USER","features":[214]},{"name":"IMEREG","features":[214]},{"name":"IMEREL","features":[214]},{"name":"IMESHF","features":[214]},{"name":"IMESTRINGCANDIDATE","features":[214]},{"name":"IMESTRINGCANDIDATEINFO","features":[214]},{"name":"IMESTRINGINFO","features":[214]},{"name":"IMEUCT","features":[214]},{"name":"IMEVER_0310","features":[214]},{"name":"IMEVER_0400","features":[214]},{"name":"IMEWRD","features":[214]},{"name":"IME_CAND_CODE","features":[214]},{"name":"IME_CAND_MEANING","features":[214]},{"name":"IME_CAND_RADICAL","features":[214]},{"name":"IME_CAND_READ","features":[214]},{"name":"IME_CAND_STROKE","features":[214]},{"name":"IME_CAND_UNKNOWN","features":[214]},{"name":"IME_CHOTKEY_IME_NONIME_TOGGLE","features":[214]},{"name":"IME_CHOTKEY_SHAPE_TOGGLE","features":[214]},{"name":"IME_CHOTKEY_SYMBOL_TOGGLE","features":[214]},{"name":"IME_CMODE_ALPHANUMERIC","features":[214]},{"name":"IME_CMODE_CHARCODE","features":[214]},{"name":"IME_CMODE_CHINESE","features":[214]},{"name":"IME_CMODE_EUDC","features":[214]},{"name":"IME_CMODE_FIXED","features":[214]},{"name":"IME_CMODE_FULLSHAPE","features":[214]},{"name":"IME_CMODE_HANGEUL","features":[214]},{"name":"IME_CMODE_HANGUL","features":[214]},{"name":"IME_CMODE_HANJACONVERT","features":[214]},{"name":"IME_CMODE_JAPANESE","features":[214]},{"name":"IME_CMODE_KATAKANA","features":[214]},{"name":"IME_CMODE_LANGUAGE","features":[214]},{"name":"IME_CMODE_NATIVE","features":[214]},{"name":"IME_CMODE_NATIVESYMBOL","features":[214]},{"name":"IME_CMODE_NOCONVERSION","features":[214]},{"name":"IME_CMODE_RESERVED","features":[214]},{"name":"IME_CMODE_ROMAN","features":[214]},{"name":"IME_CMODE_SOFTKBD","features":[214]},{"name":"IME_CMODE_SYMBOL","features":[214]},{"name":"IME_COMPOSITION_STRING","features":[214]},{"name":"IME_CONFIG_GENERAL","features":[214]},{"name":"IME_CONFIG_REGISTERWORD","features":[214]},{"name":"IME_CONFIG_SELECTDICTIONARY","features":[214]},{"name":"IME_CONVERSION_MODE","features":[214]},{"name":"IME_ESCAPE","features":[214]},{"name":"IME_ESC_AUTOMATA","features":[214]},{"name":"IME_ESC_GETHELPFILENAME","features":[214]},{"name":"IME_ESC_GET_EUDC_DICTIONARY","features":[214]},{"name":"IME_ESC_HANJA_MODE","features":[214]},{"name":"IME_ESC_IME_NAME","features":[214]},{"name":"IME_ESC_MAX_KEY","features":[214]},{"name":"IME_ESC_PRIVATE_FIRST","features":[214]},{"name":"IME_ESC_PRIVATE_HOTKEY","features":[214]},{"name":"IME_ESC_PRIVATE_LAST","features":[214]},{"name":"IME_ESC_QUERY_SUPPORT","features":[214]},{"name":"IME_ESC_RESERVED_FIRST","features":[214]},{"name":"IME_ESC_RESERVED_LAST","features":[214]},{"name":"IME_ESC_SEQUENCE_TO_INTERNAL","features":[214]},{"name":"IME_ESC_SET_EUDC_DICTIONARY","features":[214]},{"name":"IME_ESC_STRING_BUFFER_SIZE","features":[214]},{"name":"IME_ESC_SYNC_HOTKEY","features":[214]},{"name":"IME_HOTKEY_DSWITCH_FIRST","features":[214]},{"name":"IME_HOTKEY_DSWITCH_LAST","features":[214]},{"name":"IME_HOTKEY_IDENTIFIER","features":[214]},{"name":"IME_HOTKEY_PRIVATE_FIRST","features":[214]},{"name":"IME_HOTKEY_PRIVATE_LAST","features":[214]},{"name":"IME_ITHOTKEY_PREVIOUS_COMPOSITION","features":[214]},{"name":"IME_ITHOTKEY_RECONVERTSTRING","features":[214]},{"name":"IME_ITHOTKEY_RESEND_RESULTSTR","features":[214]},{"name":"IME_ITHOTKEY_UISTYLE_TOGGLE","features":[214]},{"name":"IME_JHOTKEY_CLOSE_OPEN","features":[214]},{"name":"IME_KHOTKEY_ENGLISH","features":[214]},{"name":"IME_KHOTKEY_HANJACONVERT","features":[214]},{"name":"IME_KHOTKEY_SHAPE_TOGGLE","features":[214]},{"name":"IME_PAD_REQUEST_FLAGS","features":[214]},{"name":"IME_PROP_ACCEPT_WIDE_VKEY","features":[214]},{"name":"IME_PROP_AT_CARET","features":[214]},{"name":"IME_PROP_CANDLIST_START_FROM_1","features":[214]},{"name":"IME_PROP_COMPLETE_ON_UNSELECT","features":[214]},{"name":"IME_PROP_END_UNLOAD","features":[214]},{"name":"IME_PROP_IGNORE_UPKEYS","features":[214]},{"name":"IME_PROP_KBD_CHAR_FIRST","features":[214]},{"name":"IME_PROP_NEED_ALTKEY","features":[214]},{"name":"IME_PROP_NO_KEYS_ON_CLOSE","features":[214]},{"name":"IME_PROP_SPECIAL_UI","features":[214]},{"name":"IME_PROP_UNICODE","features":[214]},{"name":"IME_REGWORD_STYLE_EUDC","features":[214]},{"name":"IME_REGWORD_STYLE_USER_FIRST","features":[214]},{"name":"IME_REGWORD_STYLE_USER_LAST","features":[214]},{"name":"IME_SENTENCE_MODE","features":[214]},{"name":"IME_SMODE_AUTOMATIC","features":[214]},{"name":"IME_SMODE_CONVERSATION","features":[214]},{"name":"IME_SMODE_NONE","features":[214]},{"name":"IME_SMODE_PHRASEPREDICT","features":[214]},{"name":"IME_SMODE_PLAURALCLAUSE","features":[214]},{"name":"IME_SMODE_RESERVED","features":[214]},{"name":"IME_SMODE_SINGLECONVERT","features":[214]},{"name":"IME_SYSINFO_WINLOGON","features":[214]},{"name":"IME_THOTKEY_IME_NONIME_TOGGLE","features":[214]},{"name":"IME_THOTKEY_SHAPE_TOGGLE","features":[214]},{"name":"IME_THOTKEY_SYMBOL_TOGGLE","features":[214]},{"name":"IME_UI_CLASS_NAME_SIZE","features":[214]},{"name":"IMFT_RADIOCHECK","features":[214]},{"name":"IMFT_SEPARATOR","features":[214]},{"name":"IMFT_SUBMENU","features":[214]},{"name":"IMMGWLP_IMC","features":[214]},{"name":"IMMGWL_IMC","features":[214]},{"name":"IMM_ERROR_GENERAL","features":[214]},{"name":"IMM_ERROR_NODATA","features":[214]},{"name":"IMN_CHANGECANDIDATE","features":[214]},{"name":"IMN_CLOSECANDIDATE","features":[214]},{"name":"IMN_CLOSESTATUSWINDOW","features":[214]},{"name":"IMN_GUIDELINE","features":[214]},{"name":"IMN_OPENCANDIDATE","features":[214]},{"name":"IMN_OPENSTATUSWINDOW","features":[214]},{"name":"IMN_PRIVATE","features":[214]},{"name":"IMN_SETCANDIDATEPOS","features":[214]},{"name":"IMN_SETCOMPOSITIONFONT","features":[214]},{"name":"IMN_SETCOMPOSITIONWINDOW","features":[214]},{"name":"IMN_SETCONVERSIONMODE","features":[214]},{"name":"IMN_SETOPENSTATUS","features":[214]},{"name":"IMN_SETSENTENCEMODE","features":[214]},{"name":"IMN_SETSTATUSWINDOWPOS","features":[214]},{"name":"IMN_SOFTKBDDESTROYED","features":[214]},{"name":"IMR_CANDIDATEWINDOW","features":[214]},{"name":"IMR_COMPOSITIONFONT","features":[214]},{"name":"IMR_COMPOSITIONWINDOW","features":[214]},{"name":"IMR_CONFIRMRECONVERTSTRING","features":[214]},{"name":"IMR_DOCUMENTFEED","features":[214]},{"name":"IMR_QUERYCHARPOSITION","features":[214]},{"name":"IMR_RECONVERTSTRING","features":[214]},{"name":"INFOMASK_APPLY_CAND","features":[214]},{"name":"INFOMASK_APPLY_CAND_EX","features":[214]},{"name":"INFOMASK_BLOCK_CAND","features":[214]},{"name":"INFOMASK_HIDE_CAND","features":[214]},{"name":"INFOMASK_NONE","features":[214]},{"name":"INFOMASK_QUERY_CAND","features":[214]},{"name":"INFOMASK_STRING_FIX","features":[214]},{"name":"INIT_COMPFORM","features":[214]},{"name":"INIT_CONVERSION","features":[214]},{"name":"INIT_LOGFONT","features":[214]},{"name":"INIT_SENTENCE","features":[214]},{"name":"INIT_SOFTKBDPOS","features":[214]},{"name":"INIT_STATUSWNDPOS","features":[214]},{"name":"INPUTCONTEXT","features":[3,14,214]},{"name":"IPACFG_CATEGORY","features":[214]},{"name":"IPACFG_HELP","features":[214]},{"name":"IPACFG_LANG","features":[214]},{"name":"IPACFG_NONE","features":[214]},{"name":"IPACFG_PROPERTY","features":[214]},{"name":"IPACFG_TITLE","features":[214]},{"name":"IPACFG_TITLEFONTFACE","features":[214]},{"name":"IPACID_CHARLIST","features":[214]},{"name":"IPACID_EPWING","features":[214]},{"name":"IPACID_HANDWRITING","features":[214]},{"name":"IPACID_NONE","features":[214]},{"name":"IPACID_OCR","features":[214]},{"name":"IPACID_RADICALSEARCH","features":[214]},{"name":"IPACID_SOFTKEY","features":[214]},{"name":"IPACID_STROKESEARCH","features":[214]},{"name":"IPACID_SYMBOLSEARCH","features":[214]},{"name":"IPACID_USER","features":[214]},{"name":"IPACID_VOICE","features":[214]},{"name":"IPAWS_ENABLED","features":[214]},{"name":"IPAWS_HORIZONTALFIXED","features":[214]},{"name":"IPAWS_MAXHEIGHTFIXED","features":[214]},{"name":"IPAWS_MAXSIZEFIXED","features":[214]},{"name":"IPAWS_MAXWIDTHFIXED","features":[214]},{"name":"IPAWS_MINHEIGHTFIXED","features":[214]},{"name":"IPAWS_MINSIZEFIXED","features":[214]},{"name":"IPAWS_MINWIDTHFIXED","features":[214]},{"name":"IPAWS_SIZEFIXED","features":[214]},{"name":"IPAWS_SIZINGNOTIFY","features":[214]},{"name":"IPAWS_VERTICALFIXED","features":[214]},{"name":"ISC_SHOWUIALL","features":[214]},{"name":"ISC_SHOWUIALLCANDIDATEWINDOW","features":[214]},{"name":"ISC_SHOWUICANDIDATEWINDOW","features":[214]},{"name":"ISC_SHOWUICOMPOSITIONWINDOW","features":[214]},{"name":"ISC_SHOWUIGUIDELINE","features":[214]},{"name":"ImmAssociateContext","features":[3,214]},{"name":"ImmAssociateContextEx","features":[3,214]},{"name":"ImmConfigureIMEA","features":[3,214,215]},{"name":"ImmConfigureIMEW","features":[3,214,215]},{"name":"ImmCreateContext","features":[214]},{"name":"ImmCreateIMCC","features":[214]},{"name":"ImmCreateSoftKeyboard","features":[3,214]},{"name":"ImmDestroyContext","features":[3,214]},{"name":"ImmDestroyIMCC","features":[214]},{"name":"ImmDestroySoftKeyboard","features":[3,214]},{"name":"ImmDisableIME","features":[3,214]},{"name":"ImmDisableLegacyIME","features":[3,214]},{"name":"ImmDisableTextFrameService","features":[3,214]},{"name":"ImmEnumInputContext","features":[3,214]},{"name":"ImmEnumRegisterWordA","features":[214,215]},{"name":"ImmEnumRegisterWordW","features":[214,215]},{"name":"ImmEscapeA","features":[3,214,215]},{"name":"ImmEscapeW","features":[3,214,215]},{"name":"ImmGenerateMessage","features":[3,214]},{"name":"ImmGetCandidateListA","features":[214]},{"name":"ImmGetCandidateListCountA","features":[214]},{"name":"ImmGetCandidateListCountW","features":[214]},{"name":"ImmGetCandidateListW","features":[214]},{"name":"ImmGetCandidateWindow","features":[3,214]},{"name":"ImmGetCompositionFontA","features":[3,14,214]},{"name":"ImmGetCompositionFontW","features":[3,14,214]},{"name":"ImmGetCompositionStringA","features":[214]},{"name":"ImmGetCompositionStringW","features":[214]},{"name":"ImmGetCompositionWindow","features":[3,214]},{"name":"ImmGetContext","features":[3,214]},{"name":"ImmGetConversionListA","features":[214,215]},{"name":"ImmGetConversionListW","features":[214,215]},{"name":"ImmGetConversionStatus","features":[3,214]},{"name":"ImmGetDefaultIMEWnd","features":[3,214]},{"name":"ImmGetDescriptionA","features":[214,215]},{"name":"ImmGetDescriptionW","features":[214,215]},{"name":"ImmGetGuideLineA","features":[214]},{"name":"ImmGetGuideLineW","features":[214]},{"name":"ImmGetHotKey","features":[3,214,215]},{"name":"ImmGetIMCCLockCount","features":[214]},{"name":"ImmGetIMCCSize","features":[214]},{"name":"ImmGetIMCLockCount","features":[214]},{"name":"ImmGetIMEFileNameA","features":[214,215]},{"name":"ImmGetIMEFileNameW","features":[214,215]},{"name":"ImmGetImeMenuItemsA","features":[14,214]},{"name":"ImmGetImeMenuItemsW","features":[14,214]},{"name":"ImmGetOpenStatus","features":[3,214]},{"name":"ImmGetProperty","features":[214,215]},{"name":"ImmGetRegisterWordStyleA","features":[214,215]},{"name":"ImmGetRegisterWordStyleW","features":[214,215]},{"name":"ImmGetStatusWindowPos","features":[3,214]},{"name":"ImmGetVirtualKey","features":[3,214]},{"name":"ImmInstallIMEA","features":[214,215]},{"name":"ImmInstallIMEW","features":[214,215]},{"name":"ImmIsIME","features":[3,214,215]},{"name":"ImmIsUIMessageA","features":[3,214]},{"name":"ImmIsUIMessageW","features":[3,214]},{"name":"ImmLockIMC","features":[3,14,214]},{"name":"ImmLockIMCC","features":[214]},{"name":"ImmNotifyIME","features":[3,214]},{"name":"ImmReSizeIMCC","features":[214]},{"name":"ImmRegisterWordA","features":[3,214,215]},{"name":"ImmRegisterWordW","features":[3,214,215]},{"name":"ImmReleaseContext","features":[3,214]},{"name":"ImmRequestMessageA","features":[3,214]},{"name":"ImmRequestMessageW","features":[3,214]},{"name":"ImmSetCandidateWindow","features":[3,214]},{"name":"ImmSetCompositionFontA","features":[3,14,214]},{"name":"ImmSetCompositionFontW","features":[3,14,214]},{"name":"ImmSetCompositionStringA","features":[3,214]},{"name":"ImmSetCompositionStringW","features":[3,214]},{"name":"ImmSetCompositionWindow","features":[3,214]},{"name":"ImmSetConversionStatus","features":[3,214]},{"name":"ImmSetHotKey","features":[3,214,215]},{"name":"ImmSetOpenStatus","features":[3,214]},{"name":"ImmSetStatusWindowPos","features":[3,214]},{"name":"ImmShowSoftKeyboard","features":[3,214]},{"name":"ImmSimulateHotKey","features":[3,214]},{"name":"ImmUnlockIMC","features":[3,214]},{"name":"ImmUnlockIMCC","features":[3,214]},{"name":"ImmUnregisterWordA","features":[3,214,215]},{"name":"ImmUnregisterWordW","features":[3,214,215]},{"name":"JPOS_1DAN","features":[214]},{"name":"JPOS_4DAN_HA","features":[214]},{"name":"JPOS_5DAN_AWA","features":[214]},{"name":"JPOS_5DAN_AWAUON","features":[214]},{"name":"JPOS_5DAN_BA","features":[214]},{"name":"JPOS_5DAN_GA","features":[214]},{"name":"JPOS_5DAN_KA","features":[214]},{"name":"JPOS_5DAN_KASOKUON","features":[214]},{"name":"JPOS_5DAN_MA","features":[214]},{"name":"JPOS_5DAN_NA","features":[214]},{"name":"JPOS_5DAN_RA","features":[214]},{"name":"JPOS_5DAN_RAHEN","features":[214]},{"name":"JPOS_5DAN_SA","features":[214]},{"name":"JPOS_5DAN_TA","features":[214]},{"name":"JPOS_BUPPIN","features":[214]},{"name":"JPOS_CHIMEI","features":[214]},{"name":"JPOS_CHIMEI_EKI","features":[214]},{"name":"JPOS_CHIMEI_GUN","features":[214]},{"name":"JPOS_CHIMEI_KEN","features":[214]},{"name":"JPOS_CHIMEI_KU","features":[214]},{"name":"JPOS_CHIMEI_KUNI","features":[214]},{"name":"JPOS_CHIMEI_MACHI","features":[214]},{"name":"JPOS_CHIMEI_MURA","features":[214]},{"name":"JPOS_CHIMEI_SHI","features":[214]},{"name":"JPOS_CLOSEBRACE","features":[214]},{"name":"JPOS_DAIMEISHI","features":[214]},{"name":"JPOS_DAIMEISHI_NINSHOU","features":[214]},{"name":"JPOS_DAIMEISHI_SHIJI","features":[214]},{"name":"JPOS_DOKURITSUGO","features":[214]},{"name":"JPOS_EIJI","features":[214]},{"name":"JPOS_FUKUSHI","features":[214]},{"name":"JPOS_FUKUSHI_DA","features":[214]},{"name":"JPOS_FUKUSHI_NANO","features":[214]},{"name":"JPOS_FUKUSHI_NI","features":[214]},{"name":"JPOS_FUKUSHI_SAHEN","features":[214]},{"name":"JPOS_FUKUSHI_TO","features":[214]},{"name":"JPOS_FUKUSHI_TOSURU","features":[214]},{"name":"JPOS_FUTEIGO","features":[214]},{"name":"JPOS_HUKUSIMEISHI","features":[214]},{"name":"JPOS_JINMEI","features":[214]},{"name":"JPOS_JINMEI_MEI","features":[214]},{"name":"JPOS_JINMEI_SEI","features":[214]},{"name":"JPOS_KANDOUSHI","features":[214]},{"name":"JPOS_KANJI","features":[214]},{"name":"JPOS_KANYOUKU","features":[214]},{"name":"JPOS_KAZU","features":[214]},{"name":"JPOS_KAZU_SURYOU","features":[214]},{"name":"JPOS_KAZU_SUSHI","features":[214]},{"name":"JPOS_KEIDOU","features":[214]},{"name":"JPOS_KEIDOU_GARU","features":[214]},{"name":"JPOS_KEIDOU_NO","features":[214]},{"name":"JPOS_KEIDOU_TARU","features":[214]},{"name":"JPOS_KEIYOU","features":[214]},{"name":"JPOS_KEIYOU_GARU","features":[214]},{"name":"JPOS_KEIYOU_GE","features":[214]},{"name":"JPOS_KEIYOU_ME","features":[214]},{"name":"JPOS_KEIYOU_U","features":[214]},{"name":"JPOS_KEIYOU_YUU","features":[214]},{"name":"JPOS_KENCHIKU","features":[214]},{"name":"JPOS_KIGOU","features":[214]},{"name":"JPOS_KURU_KI","features":[214]},{"name":"JPOS_KURU_KITA","features":[214]},{"name":"JPOS_KURU_KITARA","features":[214]},{"name":"JPOS_KURU_KITARI","features":[214]},{"name":"JPOS_KURU_KITAROU","features":[214]},{"name":"JPOS_KURU_KITE","features":[214]},{"name":"JPOS_KURU_KO","features":[214]},{"name":"JPOS_KURU_KOI","features":[214]},{"name":"JPOS_KURU_KOYOU","features":[214]},{"name":"JPOS_KURU_KUREBA","features":[214]},{"name":"JPOS_KUTEN","features":[214]},{"name":"JPOS_MEISA_KEIDOU","features":[214]},{"name":"JPOS_MEISHI_FUTSU","features":[214]},{"name":"JPOS_MEISHI_KEIYOUDOUSHI","features":[214]},{"name":"JPOS_MEISHI_SAHEN","features":[214]},{"name":"JPOS_MEISHI_ZAHEN","features":[214]},{"name":"JPOS_OPENBRACE","features":[214]},{"name":"JPOS_RENTAISHI","features":[214]},{"name":"JPOS_RENTAISHI_SHIJI","features":[214]},{"name":"JPOS_RENYOU_SETSUBI","features":[214]},{"name":"JPOS_SETSUBI","features":[214]},{"name":"JPOS_SETSUBI_CHIMEI","features":[214]},{"name":"JPOS_SETSUBI_CHOU","features":[214]},{"name":"JPOS_SETSUBI_CHU","features":[214]},{"name":"JPOS_SETSUBI_DONO","features":[214]},{"name":"JPOS_SETSUBI_EKI","features":[214]},{"name":"JPOS_SETSUBI_FU","features":[214]},{"name":"JPOS_SETSUBI_FUKUSU","features":[214]},{"name":"JPOS_SETSUBI_GUN","features":[214]},{"name":"JPOS_SETSUBI_JIKAN","features":[214]},{"name":"JPOS_SETSUBI_JIKANPLUS","features":[214]},{"name":"JPOS_SETSUBI_JINMEI","features":[214]},{"name":"JPOS_SETSUBI_JOSUSHI","features":[214]},{"name":"JPOS_SETSUBI_JOSUSHIPLUS","features":[214]},{"name":"JPOS_SETSUBI_KA","features":[214]},{"name":"JPOS_SETSUBI_KATA","features":[214]},{"name":"JPOS_SETSUBI_KEN","features":[214]},{"name":"JPOS_SETSUBI_KENCHIKU","features":[214]},{"name":"JPOS_SETSUBI_KU","features":[214]},{"name":"JPOS_SETSUBI_KUN","features":[214]},{"name":"JPOS_SETSUBI_KUNI","features":[214]},{"name":"JPOS_SETSUBI_MACHI","features":[214]},{"name":"JPOS_SETSUBI_MEISHIRENDAKU","features":[214]},{"name":"JPOS_SETSUBI_MURA","features":[214]},{"name":"JPOS_SETSUBI_RA","features":[214]},{"name":"JPOS_SETSUBI_RYU","features":[214]},{"name":"JPOS_SETSUBI_SAMA","features":[214]},{"name":"JPOS_SETSUBI_SAN","features":[214]},{"name":"JPOS_SETSUBI_SEI","features":[214]},{"name":"JPOS_SETSUBI_SHAMEI","features":[214]},{"name":"JPOS_SETSUBI_SHI","features":[214]},{"name":"JPOS_SETSUBI_SON","features":[214]},{"name":"JPOS_SETSUBI_SONOTA","features":[214]},{"name":"JPOS_SETSUBI_SOSHIKI","features":[214]},{"name":"JPOS_SETSUBI_TACHI","features":[214]},{"name":"JPOS_SETSUBI_TEINEI","features":[214]},{"name":"JPOS_SETSUBI_TEKI","features":[214]},{"name":"JPOS_SETSUBI_YOU","features":[214]},{"name":"JPOS_SETSUZOKUSHI","features":[214]},{"name":"JPOS_SETTOU","features":[214]},{"name":"JPOS_SETTOU_CHIMEI","features":[214]},{"name":"JPOS_SETTOU_CHOUTAN","features":[214]},{"name":"JPOS_SETTOU_DAISHOU","features":[214]},{"name":"JPOS_SETTOU_FUKU","features":[214]},{"name":"JPOS_SETTOU_JINMEI","features":[214]},{"name":"JPOS_SETTOU_JOSUSHI","features":[214]},{"name":"JPOS_SETTOU_KAKU","features":[214]},{"name":"JPOS_SETTOU_KOUTEI","features":[214]},{"name":"JPOS_SETTOU_MI","features":[214]},{"name":"JPOS_SETTOU_SAI","features":[214]},{"name":"JPOS_SETTOU_SHINKYU","features":[214]},{"name":"JPOS_SETTOU_SONOTA","features":[214]},{"name":"JPOS_SETTOU_TEINEI_GO","features":[214]},{"name":"JPOS_SETTOU_TEINEI_O","features":[214]},{"name":"JPOS_SETTOU_TEINEI_ON","features":[214]},{"name":"JPOS_SHAMEI","features":[214]},{"name":"JPOS_SONOTA","features":[214]},{"name":"JPOS_SOSHIKI","features":[214]},{"name":"JPOS_SURU_SA","features":[214]},{"name":"JPOS_SURU_SE","features":[214]},{"name":"JPOS_SURU_SEYO","features":[214]},{"name":"JPOS_SURU_SI","features":[214]},{"name":"JPOS_SURU_SIATRI","features":[214]},{"name":"JPOS_SURU_SITA","features":[214]},{"name":"JPOS_SURU_SITARA","features":[214]},{"name":"JPOS_SURU_SITAROU","features":[214]},{"name":"JPOS_SURU_SITE","features":[214]},{"name":"JPOS_SURU_SIYOU","features":[214]},{"name":"JPOS_SURU_SUREBA","features":[214]},{"name":"JPOS_TANKANJI","features":[214]},{"name":"JPOS_TANKANJI_KAO","features":[214]},{"name":"JPOS_TANSHUKU","features":[214]},{"name":"JPOS_TOKUSHU_KAHEN","features":[214]},{"name":"JPOS_TOKUSHU_NAHEN","features":[214]},{"name":"JPOS_TOKUSHU_SAHEN","features":[214]},{"name":"JPOS_TOKUSHU_SAHENSURU","features":[214]},{"name":"JPOS_TOKUSHU_ZAHEN","features":[214]},{"name":"JPOS_TOUTEN","features":[214]},{"name":"JPOS_UNDEFINED","features":[214]},{"name":"JPOS_YOKUSEI","features":[214]},{"name":"MAX_APPLETTITLE","features":[214]},{"name":"MAX_FONTFACE","features":[214]},{"name":"MODEBIASMODE_DEFAULT","features":[214]},{"name":"MODEBIASMODE_DIGIT","features":[214]},{"name":"MODEBIASMODE_FILENAME","features":[214]},{"name":"MODEBIASMODE_READING","features":[214]},{"name":"MODEBIAS_GETVALUE","features":[214]},{"name":"MODEBIAS_GETVERSION","features":[214]},{"name":"MODEBIAS_SETVALUE","features":[214]},{"name":"MOD_IGNORE_ALL_MODIFIER","features":[214]},{"name":"MOD_LEFT","features":[214]},{"name":"MOD_ON_KEYUP","features":[214]},{"name":"MOD_RIGHT","features":[214]},{"name":"MORRSLT","features":[214]},{"name":"NI_CHANGECANDIDATELIST","features":[214]},{"name":"NI_CLOSECANDIDATE","features":[214]},{"name":"NI_COMPOSITIONSTR","features":[214]},{"name":"NI_CONTEXTUPDATED","features":[214]},{"name":"NI_FINALIZECONVERSIONRESULT","features":[214]},{"name":"NI_IMEMENUSELECTED","features":[214]},{"name":"NI_OPENCANDIDATE","features":[214]},{"name":"NI_SELECTCANDIDATESTR","features":[214]},{"name":"NI_SETCANDIDATE_PAGESIZE","features":[214]},{"name":"NI_SETCANDIDATE_PAGESTART","features":[214]},{"name":"NOTIFY_IME_ACTION","features":[214]},{"name":"NOTIFY_IME_INDEX","features":[214]},{"name":"PFNLOG","features":[3,214]},{"name":"POSTBL","features":[214]},{"name":"POS_UNDEFINED","features":[214]},{"name":"RECONVERTSTRING","features":[214]},{"name":"RECONVOPT_NONE","features":[214]},{"name":"RECONVOPT_USECANCELNOTIFY","features":[214]},{"name":"REGISTERWORDA","features":[214]},{"name":"REGISTERWORDENUMPROCA","features":[214]},{"name":"REGISTERWORDENUMPROCW","features":[214]},{"name":"REGISTERWORDW","features":[214]},{"name":"RWM_CHGKEYMAP","features":[214]},{"name":"RWM_DOCUMENTFEED","features":[214]},{"name":"RWM_KEYMAP","features":[214]},{"name":"RWM_MODEBIAS","features":[214]},{"name":"RWM_MOUSE","features":[214]},{"name":"RWM_NTFYKEYMAP","features":[214]},{"name":"RWM_QUERYPOSITION","features":[214]},{"name":"RWM_RECONVERT","features":[214]},{"name":"RWM_RECONVERTOPTIONS","features":[214]},{"name":"RWM_RECONVERTREQUEST","features":[214]},{"name":"RWM_SERVICE","features":[214]},{"name":"RWM_SHOWIMEPAD","features":[214]},{"name":"RWM_UIREADY","features":[214]},{"name":"SCS_CAP_COMPSTR","features":[214]},{"name":"SCS_CAP_MAKEREAD","features":[214]},{"name":"SCS_CAP_SETRECONVERTSTRING","features":[214]},{"name":"SCS_CHANGEATTR","features":[214]},{"name":"SCS_CHANGECLAUSE","features":[214]},{"name":"SCS_QUERYRECONVERTSTRING","features":[214]},{"name":"SCS_SETRECONVERTSTRING","features":[214]},{"name":"SCS_SETSTR","features":[214]},{"name":"SELECT_CAP_CONVERSION","features":[214]},{"name":"SELECT_CAP_SENTENCE","features":[214]},{"name":"SET_COMPOSITION_STRING_TYPE","features":[214]},{"name":"SHOWIMEPAD_CATEGORY","features":[214]},{"name":"SHOWIMEPAD_DEFAULT","features":[214]},{"name":"SHOWIMEPAD_GUID","features":[214]},{"name":"SOFTKBDDATA","features":[214]},{"name":"SOFTKEYBOARD_TYPE_C1","features":[214]},{"name":"SOFTKEYBOARD_TYPE_T1","features":[214]},{"name":"STYLEBUFA","features":[214]},{"name":"STYLEBUFW","features":[214]},{"name":"STYLE_DESCRIPTION_SIZE","features":[214]},{"name":"TRANSMSG","features":[3,214]},{"name":"TRANSMSGLIST","features":[3,214]},{"name":"UI_CAP_2700","features":[214]},{"name":"UI_CAP_ROT90","features":[214]},{"name":"UI_CAP_ROTANY","features":[214]},{"name":"UI_CAP_SOFTKBD","features":[214]},{"name":"VERSION_DOCUMENTFEED","features":[214]},{"name":"VERSION_ID_CHINESE_SIMPLIFIED","features":[214]},{"name":"VERSION_ID_CHINESE_TRADITIONAL","features":[214]},{"name":"VERSION_ID_JAPANESE","features":[214]},{"name":"VERSION_ID_KOREAN","features":[214]},{"name":"VERSION_MODEBIAS","features":[214]},{"name":"VERSION_MOUSE_OPERATION","features":[214]},{"name":"VERSION_QUERYPOSITION","features":[214]},{"name":"VERSION_RECONVERSION","features":[214]},{"name":"WDD","features":[214]},{"name":"cbCommentMax","features":[214]},{"name":"fpCreateIFECommonInstanceType","features":[214]},{"name":"fpCreateIFEDictionaryInstanceType","features":[214]},{"name":"fpCreateIFELanguageInstanceType","features":[214]},{"name":"szImeChina","features":[214]},{"name":"szImeJapan","features":[214]},{"name":"szImeKorea","features":[214]},{"name":"szImeTaiwan","features":[214]},{"name":"wchPrivate1","features":[214]}],"659":[{"name":"ACTIVATE_KEYBOARD_LAYOUT_FLAGS","features":[215]},{"name":"ACUTE","features":[215]},{"name":"AX_KBD_DESKTOP_TYPE","features":[215]},{"name":"ActivateKeyboardLayout","features":[215]},{"name":"BREVE","features":[215]},{"name":"BlockInput","features":[3,215]},{"name":"CAPLOK","features":[215]},{"name":"CAPLOKALTGR","features":[215]},{"name":"CEDILLA","features":[215]},{"name":"CIRCUMFLEX","features":[215]},{"name":"DEADKEY","features":[215]},{"name":"DEC_KBD_ANSI_LAYOUT_TYPE","features":[215]},{"name":"DEC_KBD_JIS_LAYOUT_TYPE","features":[215]},{"name":"DIARESIS","features":[215]},{"name":"DIARESIS_TONOS","features":[215]},{"name":"DKF_DEAD","features":[215]},{"name":"DONTCARE_BIT","features":[215]},{"name":"DOT_ABOVE","features":[215]},{"name":"DOUBLE_ACUTE","features":[215]},{"name":"DragDetect","features":[3,215]},{"name":"EXTENDED_BIT","features":[215]},{"name":"EnableWindow","features":[3,215]},{"name":"FAKE_KEYSTROKE","features":[215]},{"name":"FMR_KBD_JIS_TYPE","features":[215]},{"name":"FMR_KBD_OASYS_TYPE","features":[215]},{"name":"FMV_KBD_OASYS_TYPE","features":[215]},{"name":"GET_MOUSE_MOVE_POINTS_EX_RESOLUTION","features":[215]},{"name":"GMMP_USE_DISPLAY_POINTS","features":[215]},{"name":"GMMP_USE_HIGH_RESOLUTION_POINTS","features":[215]},{"name":"GRAVE","features":[215]},{"name":"GRPSELTAP","features":[215]},{"name":"GetActiveWindow","features":[3,215]},{"name":"GetAsyncKeyState","features":[215]},{"name":"GetCapture","features":[3,215]},{"name":"GetDoubleClickTime","features":[215]},{"name":"GetFocus","features":[3,215]},{"name":"GetKBCodePage","features":[215]},{"name":"GetKeyNameTextA","features":[215]},{"name":"GetKeyNameTextW","features":[215]},{"name":"GetKeyState","features":[215]},{"name":"GetKeyboardLayout","features":[215]},{"name":"GetKeyboardLayoutList","features":[215]},{"name":"GetKeyboardLayoutNameA","features":[3,215]},{"name":"GetKeyboardLayoutNameW","features":[3,215]},{"name":"GetKeyboardState","features":[3,215]},{"name":"GetKeyboardType","features":[215]},{"name":"GetLastInputInfo","features":[3,215]},{"name":"GetMouseMovePointsEx","features":[215]},{"name":"HACEK","features":[215]},{"name":"HARDWAREINPUT","features":[215]},{"name":"HKL","features":[215]},{"name":"HOOK_ABOVE","features":[215]},{"name":"HOT_KEY_MODIFIERS","features":[215]},{"name":"INPUT","features":[215]},{"name":"INPUT_HARDWARE","features":[215]},{"name":"INPUT_KEYBOARD","features":[215]},{"name":"INPUT_MOUSE","features":[215]},{"name":"INPUT_TYPE","features":[215]},{"name":"IsWindowEnabled","features":[3,215]},{"name":"KANALOK","features":[215]},{"name":"KBDALT","features":[215]},{"name":"KBDBASE","features":[215]},{"name":"KBDCTRL","features":[215]},{"name":"KBDGRPSELTAP","features":[215]},{"name":"KBDKANA","features":[215]},{"name":"KBDLOYA","features":[215]},{"name":"KBDNLSTABLES","features":[215]},{"name":"KBDNLS_ALPHANUM","features":[215]},{"name":"KBDNLS_CODEINPUT","features":[215]},{"name":"KBDNLS_CONV_OR_NONCONV","features":[215]},{"name":"KBDNLS_HELP_OR_END","features":[215]},{"name":"KBDNLS_HIRAGANA","features":[215]},{"name":"KBDNLS_HOME_OR_CLEAR","features":[215]},{"name":"KBDNLS_INDEX_ALT","features":[215]},{"name":"KBDNLS_INDEX_NORMAL","features":[215]},{"name":"KBDNLS_KANAEVENT","features":[215]},{"name":"KBDNLS_KANALOCK","features":[215]},{"name":"KBDNLS_KATAKANA","features":[215]},{"name":"KBDNLS_NOEVENT","features":[215]},{"name":"KBDNLS_NULL","features":[215]},{"name":"KBDNLS_NUMPAD","features":[215]},{"name":"KBDNLS_ROMAN","features":[215]},{"name":"KBDNLS_SBCSDBCS","features":[215]},{"name":"KBDNLS_SEND_BASE_VK","features":[215]},{"name":"KBDNLS_SEND_PARAM_VK","features":[215]},{"name":"KBDNLS_TYPE_NORMAL","features":[215]},{"name":"KBDNLS_TYPE_NULL","features":[215]},{"name":"KBDNLS_TYPE_TOGGLE","features":[215]},{"name":"KBDROYA","features":[215]},{"name":"KBDSHIFT","features":[215]},{"name":"KBDTABLES","features":[215]},{"name":"KBDTABLE_DESC","features":[215]},{"name":"KBDTABLE_MULTI","features":[215]},{"name":"KBDTABLE_MULTI_MAX","features":[215]},{"name":"KBD_TYPE","features":[215]},{"name":"KBD_TYPE_INFO","features":[215]},{"name":"KBD_VERSION","features":[215]},{"name":"KEYBDINPUT","features":[215]},{"name":"KEYBD_EVENT_FLAGS","features":[215]},{"name":"KEYBOARD_TYPE_GENERIC_101","features":[215]},{"name":"KEYBOARD_TYPE_JAPAN","features":[215]},{"name":"KEYBOARD_TYPE_KOREA","features":[215]},{"name":"KEYBOARD_TYPE_UNKNOWN","features":[215]},{"name":"KEYEVENTF_EXTENDEDKEY","features":[215]},{"name":"KEYEVENTF_KEYUP","features":[215]},{"name":"KEYEVENTF_SCANCODE","features":[215]},{"name":"KEYEVENTF_UNICODE","features":[215]},{"name":"KLF_ACTIVATE","features":[215]},{"name":"KLF_NOTELLSHELL","features":[215]},{"name":"KLF_REORDER","features":[215]},{"name":"KLF_REPLACELANG","features":[215]},{"name":"KLF_RESET","features":[215]},{"name":"KLF_SETFORPROCESS","features":[215]},{"name":"KLF_SHIFTLOCK","features":[215]},{"name":"KLF_SUBSTITUTE_OK","features":[215]},{"name":"KLLF_ALTGR","features":[215]},{"name":"KLLF_GLOBAL_ATTRS","features":[215]},{"name":"KLLF_LRM_RLM","features":[215]},{"name":"KLLF_SHIFTLOCK","features":[215]},{"name":"LASTINPUTINFO","features":[215]},{"name":"LIGATURE1","features":[215]},{"name":"LIGATURE2","features":[215]},{"name":"LIGATURE3","features":[215]},{"name":"LIGATURE4","features":[215]},{"name":"LIGATURE5","features":[215]},{"name":"LoadKeyboardLayoutA","features":[215]},{"name":"LoadKeyboardLayoutW","features":[215]},{"name":"MACRON","features":[215]},{"name":"MAPVK_VK_TO_CHAR","features":[215]},{"name":"MAPVK_VK_TO_VSC","features":[215]},{"name":"MAPVK_VK_TO_VSC_EX","features":[215]},{"name":"MAPVK_VSC_TO_VK","features":[215]},{"name":"MAPVK_VSC_TO_VK_EX","features":[215]},{"name":"MAP_VIRTUAL_KEY_TYPE","features":[215]},{"name":"MICROSOFT_KBD_001_TYPE","features":[215]},{"name":"MICROSOFT_KBD_002_TYPE","features":[215]},{"name":"MICROSOFT_KBD_101A_TYPE","features":[215]},{"name":"MICROSOFT_KBD_101B_TYPE","features":[215]},{"name":"MICROSOFT_KBD_101C_TYPE","features":[215]},{"name":"MICROSOFT_KBD_101_TYPE","features":[215]},{"name":"MICROSOFT_KBD_103_TYPE","features":[215]},{"name":"MICROSOFT_KBD_106_TYPE","features":[215]},{"name":"MICROSOFT_KBD_AX_TYPE","features":[215]},{"name":"MICROSOFT_KBD_FUNC","features":[215]},{"name":"MODIFIERS","features":[215]},{"name":"MOD_ALT","features":[215]},{"name":"MOD_CONTROL","features":[215]},{"name":"MOD_NOREPEAT","features":[215]},{"name":"MOD_SHIFT","features":[215]},{"name":"MOD_WIN","features":[215]},{"name":"MOUSEEVENTF_ABSOLUTE","features":[215]},{"name":"MOUSEEVENTF_HWHEEL","features":[215]},{"name":"MOUSEEVENTF_LEFTDOWN","features":[215]},{"name":"MOUSEEVENTF_LEFTUP","features":[215]},{"name":"MOUSEEVENTF_MIDDLEDOWN","features":[215]},{"name":"MOUSEEVENTF_MIDDLEUP","features":[215]},{"name":"MOUSEEVENTF_MOVE","features":[215]},{"name":"MOUSEEVENTF_MOVE_NOCOALESCE","features":[215]},{"name":"MOUSEEVENTF_RIGHTDOWN","features":[215]},{"name":"MOUSEEVENTF_RIGHTUP","features":[215]},{"name":"MOUSEEVENTF_VIRTUALDESK","features":[215]},{"name":"MOUSEEVENTF_WHEEL","features":[215]},{"name":"MOUSEEVENTF_XDOWN","features":[215]},{"name":"MOUSEEVENTF_XUP","features":[215]},{"name":"MOUSEINPUT","features":[215]},{"name":"MOUSEMOVEPOINT","features":[215]},{"name":"MOUSE_EVENT_FLAGS","features":[215]},{"name":"MapVirtualKeyA","features":[215]},{"name":"MapVirtualKeyExA","features":[215]},{"name":"MapVirtualKeyExW","features":[215]},{"name":"MapVirtualKeyW","features":[215]},{"name":"NEC_KBD_106_TYPE","features":[215]},{"name":"NEC_KBD_H_MODE_TYPE","features":[215]},{"name":"NEC_KBD_LAPTOP_TYPE","features":[215]},{"name":"NEC_KBD_NORMAL_TYPE","features":[215]},{"name":"NEC_KBD_N_MODE_TYPE","features":[215]},{"name":"NLSKBD_INFO_ACCESSIBILITY_KEYMAP","features":[215]},{"name":"NLSKBD_INFO_EMURATE_101_KEYBOARD","features":[215]},{"name":"NLSKBD_INFO_EMURATE_106_KEYBOARD","features":[215]},{"name":"NLSKBD_INFO_SEND_IME_NOTIFICATION","features":[215]},{"name":"NLSKBD_OEM_AX","features":[215]},{"name":"NLSKBD_OEM_DEC","features":[215]},{"name":"NLSKBD_OEM_EPSON","features":[215]},{"name":"NLSKBD_OEM_FUJITSU","features":[215]},{"name":"NLSKBD_OEM_IBM","features":[215]},{"name":"NLSKBD_OEM_MATSUSHITA","features":[215]},{"name":"NLSKBD_OEM_MICROSOFT","features":[215]},{"name":"NLSKBD_OEM_NEC","features":[215]},{"name":"NLSKBD_OEM_TOSHIBA","features":[215]},{"name":"OGONEK","features":[215]},{"name":"OVERSCORE","features":[215]},{"name":"OemKeyScan","features":[215]},{"name":"RING","features":[215]},{"name":"RegisterHotKey","features":[3,215]},{"name":"ReleaseCapture","features":[3,215]},{"name":"SCANCODE_ALT","features":[215]},{"name":"SCANCODE_CTRL","features":[215]},{"name":"SCANCODE_LSHIFT","features":[215]},{"name":"SCANCODE_LWIN","features":[215]},{"name":"SCANCODE_NUMPAD_FIRST","features":[215]},{"name":"SCANCODE_NUMPAD_LAST","features":[215]},{"name":"SCANCODE_RSHIFT","features":[215]},{"name":"SCANCODE_RWIN","features":[215]},{"name":"SCANCODE_THAI_LAYOUT_TOGGLE","features":[215]},{"name":"SGCAPS","features":[215]},{"name":"SHFT_INVALID","features":[215]},{"name":"SendInput","features":[215]},{"name":"SetActiveWindow","features":[3,215]},{"name":"SetCapture","features":[3,215]},{"name":"SetDoubleClickTime","features":[3,215]},{"name":"SetFocus","features":[3,215]},{"name":"SetKeyboardState","features":[3,215]},{"name":"SwapMouseButton","features":[3,215]},{"name":"TILDE","features":[215]},{"name":"TME_CANCEL","features":[215]},{"name":"TME_HOVER","features":[215]},{"name":"TME_LEAVE","features":[215]},{"name":"TME_NONCLIENT","features":[215]},{"name":"TME_QUERY","features":[215]},{"name":"TONOS","features":[215]},{"name":"TOSHIBA_KBD_DESKTOP_TYPE","features":[215]},{"name":"TOSHIBA_KBD_LAPTOP_TYPE","features":[215]},{"name":"TRACKMOUSEEVENT","features":[3,215]},{"name":"TRACKMOUSEEVENT_FLAGS","features":[215]},{"name":"ToAscii","features":[215]},{"name":"ToAsciiEx","features":[215]},{"name":"ToUnicode","features":[215]},{"name":"ToUnicodeEx","features":[215]},{"name":"TrackMouseEvent","features":[3,215]},{"name":"UMLAUT","features":[215]},{"name":"UnloadKeyboardLayout","features":[3,215]},{"name":"UnregisterHotKey","features":[3,215]},{"name":"VIRTUAL_KEY","features":[215]},{"name":"VK_0","features":[215]},{"name":"VK_1","features":[215]},{"name":"VK_2","features":[215]},{"name":"VK_3","features":[215]},{"name":"VK_4","features":[215]},{"name":"VK_5","features":[215]},{"name":"VK_6","features":[215]},{"name":"VK_7","features":[215]},{"name":"VK_8","features":[215]},{"name":"VK_9","features":[215]},{"name":"VK_A","features":[215]},{"name":"VK_ABNT_C1","features":[215]},{"name":"VK_ABNT_C2","features":[215]},{"name":"VK_ACCEPT","features":[215]},{"name":"VK_ADD","features":[215]},{"name":"VK_APPS","features":[215]},{"name":"VK_ATTN","features":[215]},{"name":"VK_B","features":[215]},{"name":"VK_BACK","features":[215]},{"name":"VK_BROWSER_BACK","features":[215]},{"name":"VK_BROWSER_FAVORITES","features":[215]},{"name":"VK_BROWSER_FORWARD","features":[215]},{"name":"VK_BROWSER_HOME","features":[215]},{"name":"VK_BROWSER_REFRESH","features":[215]},{"name":"VK_BROWSER_SEARCH","features":[215]},{"name":"VK_BROWSER_STOP","features":[215]},{"name":"VK_C","features":[215]},{"name":"VK_CANCEL","features":[215]},{"name":"VK_CAPITAL","features":[215]},{"name":"VK_CLEAR","features":[215]},{"name":"VK_CONTROL","features":[215]},{"name":"VK_CONVERT","features":[215]},{"name":"VK_CRSEL","features":[215]},{"name":"VK_D","features":[215]},{"name":"VK_DBE_ALPHANUMERIC","features":[215]},{"name":"VK_DBE_CODEINPUT","features":[215]},{"name":"VK_DBE_DBCSCHAR","features":[215]},{"name":"VK_DBE_DETERMINESTRING","features":[215]},{"name":"VK_DBE_ENTERDLGCONVERSIONMODE","features":[215]},{"name":"VK_DBE_ENTERIMECONFIGMODE","features":[215]},{"name":"VK_DBE_ENTERWORDREGISTERMODE","features":[215]},{"name":"VK_DBE_FLUSHSTRING","features":[215]},{"name":"VK_DBE_HIRAGANA","features":[215]},{"name":"VK_DBE_KATAKANA","features":[215]},{"name":"VK_DBE_NOCODEINPUT","features":[215]},{"name":"VK_DBE_NOROMAN","features":[215]},{"name":"VK_DBE_ROMAN","features":[215]},{"name":"VK_DBE_SBCSCHAR","features":[215]},{"name":"VK_DECIMAL","features":[215]},{"name":"VK_DELETE","features":[215]},{"name":"VK_DIVIDE","features":[215]},{"name":"VK_DOWN","features":[215]},{"name":"VK_E","features":[215]},{"name":"VK_END","features":[215]},{"name":"VK_EREOF","features":[215]},{"name":"VK_ESCAPE","features":[215]},{"name":"VK_EXECUTE","features":[215]},{"name":"VK_EXSEL","features":[215]},{"name":"VK_F","features":[215]},{"name":"VK_F","features":[215]},{"name":"VK_F1","features":[215]},{"name":"VK_F10","features":[215]},{"name":"VK_F11","features":[215]},{"name":"VK_F12","features":[215]},{"name":"VK_F13","features":[215]},{"name":"VK_F14","features":[215]},{"name":"VK_F15","features":[215]},{"name":"VK_F16","features":[215]},{"name":"VK_F17","features":[215]},{"name":"VK_F18","features":[215]},{"name":"VK_F19","features":[215]},{"name":"VK_F2","features":[215]},{"name":"VK_F20","features":[215]},{"name":"VK_F21","features":[215]},{"name":"VK_F22","features":[215]},{"name":"VK_F23","features":[215]},{"name":"VK_F24","features":[215]},{"name":"VK_F3","features":[215]},{"name":"VK_F4","features":[215]},{"name":"VK_F5","features":[215]},{"name":"VK_F6","features":[215]},{"name":"VK_F7","features":[215]},{"name":"VK_F8","features":[215]},{"name":"VK_F9","features":[215]},{"name":"VK_FINAL","features":[215]},{"name":"VK_FPARAM","features":[215]},{"name":"VK_G","features":[215]},{"name":"VK_GAMEPAD_A","features":[215]},{"name":"VK_GAMEPAD_B","features":[215]},{"name":"VK_GAMEPAD_DPAD_DOWN","features":[215]},{"name":"VK_GAMEPAD_DPAD_LEFT","features":[215]},{"name":"VK_GAMEPAD_DPAD_RIGHT","features":[215]},{"name":"VK_GAMEPAD_DPAD_UP","features":[215]},{"name":"VK_GAMEPAD_LEFT_SHOULDER","features":[215]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_BUTTON","features":[215]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_DOWN","features":[215]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_LEFT","features":[215]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_RIGHT","features":[215]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_UP","features":[215]},{"name":"VK_GAMEPAD_LEFT_TRIGGER","features":[215]},{"name":"VK_GAMEPAD_MENU","features":[215]},{"name":"VK_GAMEPAD_RIGHT_SHOULDER","features":[215]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_BUTTON","features":[215]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_DOWN","features":[215]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_LEFT","features":[215]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_RIGHT","features":[215]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_UP","features":[215]},{"name":"VK_GAMEPAD_RIGHT_TRIGGER","features":[215]},{"name":"VK_GAMEPAD_VIEW","features":[215]},{"name":"VK_GAMEPAD_X","features":[215]},{"name":"VK_GAMEPAD_Y","features":[215]},{"name":"VK_H","features":[215]},{"name":"VK_HANGEUL","features":[215]},{"name":"VK_HANGUL","features":[215]},{"name":"VK_HANJA","features":[215]},{"name":"VK_HELP","features":[215]},{"name":"VK_HOME","features":[215]},{"name":"VK_I","features":[215]},{"name":"VK_ICO_00","features":[215]},{"name":"VK_ICO_CLEAR","features":[215]},{"name":"VK_ICO_HELP","features":[215]},{"name":"VK_IME_OFF","features":[215]},{"name":"VK_IME_ON","features":[215]},{"name":"VK_INSERT","features":[215]},{"name":"VK_J","features":[215]},{"name":"VK_JUNJA","features":[215]},{"name":"VK_K","features":[215]},{"name":"VK_KANA","features":[215]},{"name":"VK_KANJI","features":[215]},{"name":"VK_L","features":[215]},{"name":"VK_LAUNCH_APP1","features":[215]},{"name":"VK_LAUNCH_APP2","features":[215]},{"name":"VK_LAUNCH_MAIL","features":[215]},{"name":"VK_LAUNCH_MEDIA_SELECT","features":[215]},{"name":"VK_LBUTTON","features":[215]},{"name":"VK_LCONTROL","features":[215]},{"name":"VK_LEFT","features":[215]},{"name":"VK_LMENU","features":[215]},{"name":"VK_LSHIFT","features":[215]},{"name":"VK_LWIN","features":[215]},{"name":"VK_M","features":[215]},{"name":"VK_MBUTTON","features":[215]},{"name":"VK_MEDIA_NEXT_TRACK","features":[215]},{"name":"VK_MEDIA_PLAY_PAUSE","features":[215]},{"name":"VK_MEDIA_PREV_TRACK","features":[215]},{"name":"VK_MEDIA_STOP","features":[215]},{"name":"VK_MENU","features":[215]},{"name":"VK_MODECHANGE","features":[215]},{"name":"VK_MULTIPLY","features":[215]},{"name":"VK_N","features":[215]},{"name":"VK_NAVIGATION_ACCEPT","features":[215]},{"name":"VK_NAVIGATION_CANCEL","features":[215]},{"name":"VK_NAVIGATION_DOWN","features":[215]},{"name":"VK_NAVIGATION_LEFT","features":[215]},{"name":"VK_NAVIGATION_MENU","features":[215]},{"name":"VK_NAVIGATION_RIGHT","features":[215]},{"name":"VK_NAVIGATION_UP","features":[215]},{"name":"VK_NAVIGATION_VIEW","features":[215]},{"name":"VK_NEXT","features":[215]},{"name":"VK_NONAME","features":[215]},{"name":"VK_NONCONVERT","features":[215]},{"name":"VK_NUMLOCK","features":[215]},{"name":"VK_NUMPAD0","features":[215]},{"name":"VK_NUMPAD1","features":[215]},{"name":"VK_NUMPAD2","features":[215]},{"name":"VK_NUMPAD3","features":[215]},{"name":"VK_NUMPAD4","features":[215]},{"name":"VK_NUMPAD5","features":[215]},{"name":"VK_NUMPAD6","features":[215]},{"name":"VK_NUMPAD7","features":[215]},{"name":"VK_NUMPAD8","features":[215]},{"name":"VK_NUMPAD9","features":[215]},{"name":"VK_O","features":[215]},{"name":"VK_OEM_1","features":[215]},{"name":"VK_OEM_102","features":[215]},{"name":"VK_OEM_2","features":[215]},{"name":"VK_OEM_3","features":[215]},{"name":"VK_OEM_4","features":[215]},{"name":"VK_OEM_5","features":[215]},{"name":"VK_OEM_6","features":[215]},{"name":"VK_OEM_7","features":[215]},{"name":"VK_OEM_8","features":[215]},{"name":"VK_OEM_ATTN","features":[215]},{"name":"VK_OEM_AUTO","features":[215]},{"name":"VK_OEM_AX","features":[215]},{"name":"VK_OEM_BACKTAB","features":[215]},{"name":"VK_OEM_CLEAR","features":[215]},{"name":"VK_OEM_COMMA","features":[215]},{"name":"VK_OEM_COPY","features":[215]},{"name":"VK_OEM_CUSEL","features":[215]},{"name":"VK_OEM_ENLW","features":[215]},{"name":"VK_OEM_FINISH","features":[215]},{"name":"VK_OEM_FJ_JISHO","features":[215]},{"name":"VK_OEM_FJ_LOYA","features":[215]},{"name":"VK_OEM_FJ_MASSHOU","features":[215]},{"name":"VK_OEM_FJ_ROYA","features":[215]},{"name":"VK_OEM_FJ_TOUROKU","features":[215]},{"name":"VK_OEM_JUMP","features":[215]},{"name":"VK_OEM_MINUS","features":[215]},{"name":"VK_OEM_NEC_EQUAL","features":[215]},{"name":"VK_OEM_PA1","features":[215]},{"name":"VK_OEM_PA2","features":[215]},{"name":"VK_OEM_PA3","features":[215]},{"name":"VK_OEM_PERIOD","features":[215]},{"name":"VK_OEM_PLUS","features":[215]},{"name":"VK_OEM_RESET","features":[215]},{"name":"VK_OEM_WSCTRL","features":[215]},{"name":"VK_P","features":[215]},{"name":"VK_PA1","features":[215]},{"name":"VK_PACKET","features":[215]},{"name":"VK_PAUSE","features":[215]},{"name":"VK_PLAY","features":[215]},{"name":"VK_PRINT","features":[215]},{"name":"VK_PRIOR","features":[215]},{"name":"VK_PROCESSKEY","features":[215]},{"name":"VK_Q","features":[215]},{"name":"VK_R","features":[215]},{"name":"VK_RBUTTON","features":[215]},{"name":"VK_RCONTROL","features":[215]},{"name":"VK_RETURN","features":[215]},{"name":"VK_RIGHT","features":[215]},{"name":"VK_RMENU","features":[215]},{"name":"VK_RSHIFT","features":[215]},{"name":"VK_RWIN","features":[215]},{"name":"VK_S","features":[215]},{"name":"VK_SCROLL","features":[215]},{"name":"VK_SELECT","features":[215]},{"name":"VK_SEPARATOR","features":[215]},{"name":"VK_SHIFT","features":[215]},{"name":"VK_SLEEP","features":[215]},{"name":"VK_SNAPSHOT","features":[215]},{"name":"VK_SPACE","features":[215]},{"name":"VK_SUBTRACT","features":[215]},{"name":"VK_T","features":[215]},{"name":"VK_TAB","features":[215]},{"name":"VK_TO_BIT","features":[215]},{"name":"VK_TO_WCHARS1","features":[215]},{"name":"VK_TO_WCHARS10","features":[215]},{"name":"VK_TO_WCHARS2","features":[215]},{"name":"VK_TO_WCHARS3","features":[215]},{"name":"VK_TO_WCHARS4","features":[215]},{"name":"VK_TO_WCHARS5","features":[215]},{"name":"VK_TO_WCHARS6","features":[215]},{"name":"VK_TO_WCHARS7","features":[215]},{"name":"VK_TO_WCHARS8","features":[215]},{"name":"VK_TO_WCHARS9","features":[215]},{"name":"VK_TO_WCHAR_TABLE","features":[215]},{"name":"VK_U","features":[215]},{"name":"VK_UP","features":[215]},{"name":"VK_V","features":[215]},{"name":"VK_VOLUME_DOWN","features":[215]},{"name":"VK_VOLUME_MUTE","features":[215]},{"name":"VK_VOLUME_UP","features":[215]},{"name":"VK_VSC","features":[215]},{"name":"VK_W","features":[215]},{"name":"VK_X","features":[215]},{"name":"VK_XBUTTON1","features":[215]},{"name":"VK_XBUTTON2","features":[215]},{"name":"VK_Y","features":[215]},{"name":"VK_Z","features":[215]},{"name":"VK_ZOOM","features":[215]},{"name":"VK__none_","features":[215]},{"name":"VSC_LPWSTR","features":[215]},{"name":"VSC_VK","features":[215]},{"name":"VkKeyScanA","features":[215]},{"name":"VkKeyScanExA","features":[215]},{"name":"VkKeyScanExW","features":[215]},{"name":"VkKeyScanW","features":[215]},{"name":"WCH_DEAD","features":[215]},{"name":"WCH_LGTR","features":[215]},{"name":"WCH_NONE","features":[215]},{"name":"_TrackMouseEvent","features":[3,215]},{"name":"keybd_event","features":[215]},{"name":"mouse_event","features":[215]},{"name":"wszACUTE","features":[215]},{"name":"wszBREVE","features":[215]},{"name":"wszCEDILLA","features":[215]},{"name":"wszCIRCUMFLEX","features":[215]},{"name":"wszDIARESIS_TONOS","features":[215]},{"name":"wszDOT_ABOVE","features":[215]},{"name":"wszDOUBLE_ACUTE","features":[215]},{"name":"wszGRAVE","features":[215]},{"name":"wszHACEK","features":[215]},{"name":"wszHOOK_ABOVE","features":[215]},{"name":"wszMACRON","features":[215]},{"name":"wszOGONEK","features":[215]},{"name":"wszOVERSCORE","features":[215]},{"name":"wszRING","features":[215]},{"name":"wszTILDE","features":[215]},{"name":"wszTONOS","features":[215]},{"name":"wszUMLAUT","features":[215]}],"660":[{"name":"EnableMouseInPointer","features":[3,211]},{"name":"GetPointerCursorId","features":[3,211]},{"name":"GetPointerDevice","features":[3,14,42,211]},{"name":"GetPointerDeviceCursors","features":[3,42,211]},{"name":"GetPointerDeviceProperties","features":[3,42,211]},{"name":"GetPointerDeviceRects","features":[3,211]},{"name":"GetPointerDevices","features":[3,14,42,211]},{"name":"GetPointerFrameInfo","features":[3,211,52]},{"name":"GetPointerFrameInfoHistory","features":[3,211,52]},{"name":"GetPointerFramePenInfo","features":[3,211,52]},{"name":"GetPointerFramePenInfoHistory","features":[3,211,52]},{"name":"GetPointerFrameTouchInfo","features":[3,211,52]},{"name":"GetPointerFrameTouchInfoHistory","features":[3,211,52]},{"name":"GetPointerInfo","features":[3,211,52]},{"name":"GetPointerInfoHistory","features":[3,211,52]},{"name":"GetPointerInputTransform","features":[3,211]},{"name":"GetPointerPenInfo","features":[3,211,52]},{"name":"GetPointerPenInfoHistory","features":[3,211,52]},{"name":"GetPointerTouchInfo","features":[3,211,52]},{"name":"GetPointerTouchInfoHistory","features":[3,211,52]},{"name":"GetPointerType","features":[3,211,52]},{"name":"GetRawPointerDeviceData","features":[3,42,211]},{"name":"GetUnpredictedMessagePos","features":[211]},{"name":"INPUT_INJECTION_VALUE","features":[211]},{"name":"INPUT_TRANSFORM","features":[211]},{"name":"InitializeTouchInjection","features":[3,211]},{"name":"InjectSyntheticPointerInput","features":[3,42,211,52]},{"name":"InjectTouchInput","features":[3,211,52]},{"name":"IsMouseInPointerEnabled","features":[3,211]},{"name":"POINTER_BUTTON_CHANGE_TYPE","features":[211]},{"name":"POINTER_CHANGE_FIFTHBUTTON_DOWN","features":[211]},{"name":"POINTER_CHANGE_FIFTHBUTTON_UP","features":[211]},{"name":"POINTER_CHANGE_FIRSTBUTTON_DOWN","features":[211]},{"name":"POINTER_CHANGE_FIRSTBUTTON_UP","features":[211]},{"name":"POINTER_CHANGE_FOURTHBUTTON_DOWN","features":[211]},{"name":"POINTER_CHANGE_FOURTHBUTTON_UP","features":[211]},{"name":"POINTER_CHANGE_NONE","features":[211]},{"name":"POINTER_CHANGE_SECONDBUTTON_DOWN","features":[211]},{"name":"POINTER_CHANGE_SECONDBUTTON_UP","features":[211]},{"name":"POINTER_CHANGE_THIRDBUTTON_DOWN","features":[211]},{"name":"POINTER_CHANGE_THIRDBUTTON_UP","features":[211]},{"name":"POINTER_FLAGS","features":[211]},{"name":"POINTER_FLAG_CANCELED","features":[211]},{"name":"POINTER_FLAG_CAPTURECHANGED","features":[211]},{"name":"POINTER_FLAG_CONFIDENCE","features":[211]},{"name":"POINTER_FLAG_DOWN","features":[211]},{"name":"POINTER_FLAG_FIFTHBUTTON","features":[211]},{"name":"POINTER_FLAG_FIRSTBUTTON","features":[211]},{"name":"POINTER_FLAG_FOURTHBUTTON","features":[211]},{"name":"POINTER_FLAG_HASTRANSFORM","features":[211]},{"name":"POINTER_FLAG_HWHEEL","features":[211]},{"name":"POINTER_FLAG_INCONTACT","features":[211]},{"name":"POINTER_FLAG_INRANGE","features":[211]},{"name":"POINTER_FLAG_NEW","features":[211]},{"name":"POINTER_FLAG_NONE","features":[211]},{"name":"POINTER_FLAG_PRIMARY","features":[211]},{"name":"POINTER_FLAG_SECONDBUTTON","features":[211]},{"name":"POINTER_FLAG_THIRDBUTTON","features":[211]},{"name":"POINTER_FLAG_UP","features":[211]},{"name":"POINTER_FLAG_UPDATE","features":[211]},{"name":"POINTER_FLAG_WHEEL","features":[211]},{"name":"POINTER_INFO","features":[3,211,52]},{"name":"POINTER_PEN_INFO","features":[3,211,52]},{"name":"POINTER_TOUCH_INFO","features":[3,211,52]},{"name":"SkipPointerFrameMessages","features":[3,211]},{"name":"TOUCH_FEEDBACK_DEFAULT","features":[211]},{"name":"TOUCH_FEEDBACK_INDIRECT","features":[211]},{"name":"TOUCH_FEEDBACK_MODE","features":[211]},{"name":"TOUCH_FEEDBACK_NONE","features":[211]}],"662":[{"name":"CloseGestureInfoHandle","features":[3,216]},{"name":"CloseTouchInputHandle","features":[3,216]},{"name":"GESTURECONFIG","features":[216]},{"name":"GESTURECONFIG_ID","features":[216]},{"name":"GESTUREINFO","features":[3,216]},{"name":"GESTURENOTIFYSTRUCT","features":[3,216]},{"name":"GID_BEGIN","features":[216]},{"name":"GID_END","features":[216]},{"name":"GID_PAN","features":[216]},{"name":"GID_PRESSANDTAP","features":[216]},{"name":"GID_ROLLOVER","features":[216]},{"name":"GID_ROTATE","features":[216]},{"name":"GID_TWOFINGERTAP","features":[216]},{"name":"GID_ZOOM","features":[216]},{"name":"GetGestureConfig","features":[3,216]},{"name":"GetGestureExtraArgs","features":[3,216]},{"name":"GetGestureInfo","features":[3,216]},{"name":"GetTouchInputInfo","features":[3,216]},{"name":"HGESTUREINFO","features":[216]},{"name":"HTOUCHINPUT","features":[216]},{"name":"IInertiaProcessor","features":[216]},{"name":"IManipulationProcessor","features":[216]},{"name":"InertiaProcessor","features":[216]},{"name":"IsTouchWindow","features":[3,216]},{"name":"MANIPULATION_ALL","features":[216]},{"name":"MANIPULATION_NONE","features":[216]},{"name":"MANIPULATION_PROCESSOR_MANIPULATIONS","features":[216]},{"name":"MANIPULATION_ROTATE","features":[216]},{"name":"MANIPULATION_SCALE","features":[216]},{"name":"MANIPULATION_TRANSLATE_X","features":[216]},{"name":"MANIPULATION_TRANSLATE_Y","features":[216]},{"name":"ManipulationProcessor","features":[216]},{"name":"REGISTER_TOUCH_WINDOW_FLAGS","features":[216]},{"name":"RegisterTouchWindow","features":[3,216]},{"name":"SetGestureConfig","features":[3,216]},{"name":"TOUCHEVENTF_DOWN","features":[216]},{"name":"TOUCHEVENTF_FLAGS","features":[216]},{"name":"TOUCHEVENTF_INRANGE","features":[216]},{"name":"TOUCHEVENTF_MOVE","features":[216]},{"name":"TOUCHEVENTF_NOCOALESCE","features":[216]},{"name":"TOUCHEVENTF_PALM","features":[216]},{"name":"TOUCHEVENTF_PEN","features":[216]},{"name":"TOUCHEVENTF_PRIMARY","features":[216]},{"name":"TOUCHEVENTF_UP","features":[216]},{"name":"TOUCHINPUT","features":[3,216]},{"name":"TOUCHINPUTMASKF_CONTACTAREA","features":[216]},{"name":"TOUCHINPUTMASKF_EXTRAINFO","features":[216]},{"name":"TOUCHINPUTMASKF_MASK","features":[216]},{"name":"TOUCHINPUTMASKF_TIMEFROMSYSTEM","features":[216]},{"name":"TWF_FINETOUCH","features":[216]},{"name":"TWF_WANTPALM","features":[216]},{"name":"UnregisterTouchWindow","features":[3,216]},{"name":"_IManipulationEvents","features":[216]}],"663":[{"name":"BATTERY_DEVTYPE","features":[217]},{"name":"BATTERY_DEVTYPE_GAMEPAD","features":[217]},{"name":"BATTERY_DEVTYPE_HEADSET","features":[217]},{"name":"BATTERY_LEVEL","features":[217]},{"name":"BATTERY_LEVEL_EMPTY","features":[217]},{"name":"BATTERY_LEVEL_FULL","features":[217]},{"name":"BATTERY_LEVEL_LOW","features":[217]},{"name":"BATTERY_LEVEL_MEDIUM","features":[217]},{"name":"BATTERY_TYPE","features":[217]},{"name":"BATTERY_TYPE_ALKALINE","features":[217]},{"name":"BATTERY_TYPE_DISCONNECTED","features":[217]},{"name":"BATTERY_TYPE_NIMH","features":[217]},{"name":"BATTERY_TYPE_UNKNOWN","features":[217]},{"name":"BATTERY_TYPE_WIRED","features":[217]},{"name":"VK_PAD_A","features":[217]},{"name":"VK_PAD_B","features":[217]},{"name":"VK_PAD_BACK","features":[217]},{"name":"VK_PAD_DPAD_DOWN","features":[217]},{"name":"VK_PAD_DPAD_LEFT","features":[217]},{"name":"VK_PAD_DPAD_RIGHT","features":[217]},{"name":"VK_PAD_DPAD_UP","features":[217]},{"name":"VK_PAD_LSHOULDER","features":[217]},{"name":"VK_PAD_LTHUMB_DOWN","features":[217]},{"name":"VK_PAD_LTHUMB_DOWNLEFT","features":[217]},{"name":"VK_PAD_LTHUMB_DOWNRIGHT","features":[217]},{"name":"VK_PAD_LTHUMB_LEFT","features":[217]},{"name":"VK_PAD_LTHUMB_PRESS","features":[217]},{"name":"VK_PAD_LTHUMB_RIGHT","features":[217]},{"name":"VK_PAD_LTHUMB_UP","features":[217]},{"name":"VK_PAD_LTHUMB_UPLEFT","features":[217]},{"name":"VK_PAD_LTHUMB_UPRIGHT","features":[217]},{"name":"VK_PAD_LTRIGGER","features":[217]},{"name":"VK_PAD_RSHOULDER","features":[217]},{"name":"VK_PAD_RTHUMB_DOWN","features":[217]},{"name":"VK_PAD_RTHUMB_DOWNLEFT","features":[217]},{"name":"VK_PAD_RTHUMB_DOWNRIGHT","features":[217]},{"name":"VK_PAD_RTHUMB_LEFT","features":[217]},{"name":"VK_PAD_RTHUMB_PRESS","features":[217]},{"name":"VK_PAD_RTHUMB_RIGHT","features":[217]},{"name":"VK_PAD_RTHUMB_UP","features":[217]},{"name":"VK_PAD_RTHUMB_UPLEFT","features":[217]},{"name":"VK_PAD_RTHUMB_UPRIGHT","features":[217]},{"name":"VK_PAD_RTRIGGER","features":[217]},{"name":"VK_PAD_START","features":[217]},{"name":"VK_PAD_X","features":[217]},{"name":"VK_PAD_Y","features":[217]},{"name":"XINPUT_BATTERY_INFORMATION","features":[217]},{"name":"XINPUT_CAPABILITIES","features":[217]},{"name":"XINPUT_CAPABILITIES_FLAGS","features":[217]},{"name":"XINPUT_CAPS_FFB_SUPPORTED","features":[217]},{"name":"XINPUT_CAPS_NO_NAVIGATION","features":[217]},{"name":"XINPUT_CAPS_PMD_SUPPORTED","features":[217]},{"name":"XINPUT_CAPS_VOICE_SUPPORTED","features":[217]},{"name":"XINPUT_CAPS_WIRELESS","features":[217]},{"name":"XINPUT_DEVSUBTYPE","features":[217]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_PAD","features":[217]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_STICK","features":[217]},{"name":"XINPUT_DEVSUBTYPE_DANCE_PAD","features":[217]},{"name":"XINPUT_DEVSUBTYPE_DRUM_KIT","features":[217]},{"name":"XINPUT_DEVSUBTYPE_FLIGHT_STICK","features":[217]},{"name":"XINPUT_DEVSUBTYPE_GAMEPAD","features":[217]},{"name":"XINPUT_DEVSUBTYPE_GUITAR","features":[217]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_ALTERNATE","features":[217]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_BASS","features":[217]},{"name":"XINPUT_DEVSUBTYPE_UNKNOWN","features":[217]},{"name":"XINPUT_DEVSUBTYPE_WHEEL","features":[217]},{"name":"XINPUT_DEVTYPE","features":[217]},{"name":"XINPUT_DEVTYPE_GAMEPAD","features":[217]},{"name":"XINPUT_DLL","features":[217]},{"name":"XINPUT_DLL_A","features":[217]},{"name":"XINPUT_DLL_W","features":[217]},{"name":"XINPUT_FLAG","features":[217]},{"name":"XINPUT_FLAG_ALL","features":[217]},{"name":"XINPUT_FLAG_GAMEPAD","features":[217]},{"name":"XINPUT_GAMEPAD","features":[217]},{"name":"XINPUT_GAMEPAD_A","features":[217]},{"name":"XINPUT_GAMEPAD_B","features":[217]},{"name":"XINPUT_GAMEPAD_BACK","features":[217]},{"name":"XINPUT_GAMEPAD_BUTTON_FLAGS","features":[217]},{"name":"XINPUT_GAMEPAD_DPAD_DOWN","features":[217]},{"name":"XINPUT_GAMEPAD_DPAD_LEFT","features":[217]},{"name":"XINPUT_GAMEPAD_DPAD_RIGHT","features":[217]},{"name":"XINPUT_GAMEPAD_DPAD_UP","features":[217]},{"name":"XINPUT_GAMEPAD_LEFT_SHOULDER","features":[217]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB","features":[217]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE","features":[217]},{"name":"XINPUT_GAMEPAD_RIGHT_SHOULDER","features":[217]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB","features":[217]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE","features":[217]},{"name":"XINPUT_GAMEPAD_START","features":[217]},{"name":"XINPUT_GAMEPAD_TRIGGER_THRESHOLD","features":[217]},{"name":"XINPUT_GAMEPAD_X","features":[217]},{"name":"XINPUT_GAMEPAD_Y","features":[217]},{"name":"XINPUT_KEYSTROKE","features":[217]},{"name":"XINPUT_KEYSTROKE_FLAGS","features":[217]},{"name":"XINPUT_KEYSTROKE_KEYDOWN","features":[217]},{"name":"XINPUT_KEYSTROKE_KEYUP","features":[217]},{"name":"XINPUT_KEYSTROKE_REPEAT","features":[217]},{"name":"XINPUT_STATE","features":[217]},{"name":"XINPUT_VIBRATION","features":[217]},{"name":"XINPUT_VIRTUAL_KEY","features":[217]},{"name":"XInputEnable","features":[3,217]},{"name":"XInputGetAudioDeviceIds","features":[217]},{"name":"XInputGetBatteryInformation","features":[217]},{"name":"XInputGetCapabilities","features":[217]},{"name":"XInputGetKeystroke","features":[217]},{"name":"XInputGetState","features":[217]},{"name":"XInputSetState","features":[217]},{"name":"XUSER_INDEX_ANY","features":[217]},{"name":"XUSER_MAX_COUNT","features":[217]}],"664":[{"name":"AddPointerInteractionContext","features":[218]},{"name":"BufferPointerPacketsInteractionContext","features":[3,211,218,52]},{"name":"CROSS_SLIDE_FLAGS","features":[218]},{"name":"CROSS_SLIDE_FLAGS_MAX","features":[218]},{"name":"CROSS_SLIDE_FLAGS_NONE","features":[218]},{"name":"CROSS_SLIDE_FLAGS_REARRANGE","features":[218]},{"name":"CROSS_SLIDE_FLAGS_SELECT","features":[218]},{"name":"CROSS_SLIDE_FLAGS_SPEED_BUMP","features":[218]},{"name":"CROSS_SLIDE_PARAMETER","features":[218]},{"name":"CROSS_SLIDE_THRESHOLD","features":[218]},{"name":"CROSS_SLIDE_THRESHOLD_COUNT","features":[218]},{"name":"CROSS_SLIDE_THRESHOLD_MAX","features":[218]},{"name":"CROSS_SLIDE_THRESHOLD_REARRANGE_START","features":[218]},{"name":"CROSS_SLIDE_THRESHOLD_SELECT_START","features":[218]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_END","features":[218]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_START","features":[218]},{"name":"CreateInteractionContext","features":[218]},{"name":"DestroyInteractionContext","features":[218]},{"name":"GetCrossSlideParameterInteractionContext","features":[218]},{"name":"GetHoldParameterInteractionContext","features":[218]},{"name":"GetInertiaParameterInteractionContext","features":[218]},{"name":"GetInteractionConfigurationInteractionContext","features":[218]},{"name":"GetMouseWheelParameterInteractionContext","features":[218]},{"name":"GetPropertyInteractionContext","features":[218]},{"name":"GetStateInteractionContext","features":[3,211,218,52]},{"name":"GetTapParameterInteractionContext","features":[218]},{"name":"GetTranslationParameterInteractionContext","features":[218]},{"name":"HINTERACTIONCONTEXT","features":[218]},{"name":"HOLD_PARAMETER","features":[218]},{"name":"HOLD_PARAMETER_MAX","features":[218]},{"name":"HOLD_PARAMETER_MAX_CONTACT_COUNT","features":[218]},{"name":"HOLD_PARAMETER_MIN_CONTACT_COUNT","features":[218]},{"name":"HOLD_PARAMETER_THRESHOLD_RADIUS","features":[218]},{"name":"HOLD_PARAMETER_THRESHOLD_START_DELAY","features":[218]},{"name":"INERTIA_PARAMETER","features":[218]},{"name":"INERTIA_PARAMETER_EXPANSION_DECELERATION","features":[218]},{"name":"INERTIA_PARAMETER_EXPANSION_EXPANSION","features":[218]},{"name":"INERTIA_PARAMETER_MAX","features":[218]},{"name":"INERTIA_PARAMETER_ROTATION_ANGLE","features":[218]},{"name":"INERTIA_PARAMETER_ROTATION_DECELERATION","features":[218]},{"name":"INERTIA_PARAMETER_TRANSLATION_DECELERATION","features":[218]},{"name":"INERTIA_PARAMETER_TRANSLATION_DISPLACEMENT","features":[218]},{"name":"INTERACTION_ARGUMENTS_CROSS_SLIDE","features":[218]},{"name":"INTERACTION_ARGUMENTS_MANIPULATION","features":[218]},{"name":"INTERACTION_ARGUMENTS_TAP","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAGS","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_EXACT","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_HORIZONTAL","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_REARRANGE","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SELECT","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SPEED_BUMP","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_DRAG","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MOUSE","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MULTIPLE_FINGER","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_EXACT","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_MULTIPLE_FINGER_PANNING","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_X","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_Y","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION_INERTIA","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING_INERTIA","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_INERTIA","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_X","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_Y","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_MAX","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_NONE","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_SECONDARY_TAP","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_DOUBLE","features":[218]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_MULTIPLE_FINGER","features":[218]},{"name":"INTERACTION_CONTEXT_CONFIGURATION","features":[218]},{"name":"INTERACTION_CONTEXT_OUTPUT","features":[218,52]},{"name":"INTERACTION_CONTEXT_OUTPUT2","features":[218,52]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK","features":[218,52]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK2","features":[218,52]},{"name":"INTERACTION_CONTEXT_PROPERTY","features":[218]},{"name":"INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS","features":[218]},{"name":"INTERACTION_CONTEXT_PROPERTY_INTERACTION_UI_FEEDBACK","features":[218]},{"name":"INTERACTION_CONTEXT_PROPERTY_MAX","features":[218]},{"name":"INTERACTION_CONTEXT_PROPERTY_MEASUREMENT_UNITS","features":[218]},{"name":"INTERACTION_FLAGS","features":[218]},{"name":"INTERACTION_FLAG_BEGIN","features":[218]},{"name":"INTERACTION_FLAG_CANCEL","features":[218]},{"name":"INTERACTION_FLAG_END","features":[218]},{"name":"INTERACTION_FLAG_INERTIA","features":[218]},{"name":"INTERACTION_FLAG_MAX","features":[218]},{"name":"INTERACTION_FLAG_NONE","features":[218]},{"name":"INTERACTION_ID","features":[218]},{"name":"INTERACTION_ID_CROSS_SLIDE","features":[218]},{"name":"INTERACTION_ID_DRAG","features":[218]},{"name":"INTERACTION_ID_HOLD","features":[218]},{"name":"INTERACTION_ID_MANIPULATION","features":[218]},{"name":"INTERACTION_ID_MAX","features":[218]},{"name":"INTERACTION_ID_NONE","features":[218]},{"name":"INTERACTION_ID_SECONDARY_TAP","features":[218]},{"name":"INTERACTION_ID_TAP","features":[218]},{"name":"INTERACTION_STATE","features":[218]},{"name":"INTERACTION_STATE_IDLE","features":[218]},{"name":"INTERACTION_STATE_IN_INTERACTION","features":[218]},{"name":"INTERACTION_STATE_MAX","features":[218]},{"name":"INTERACTION_STATE_POSSIBLE_DOUBLE_TAP","features":[218]},{"name":"MANIPULATION_RAILS_STATE","features":[218]},{"name":"MANIPULATION_RAILS_STATE_FREE","features":[218]},{"name":"MANIPULATION_RAILS_STATE_MAX","features":[218]},{"name":"MANIPULATION_RAILS_STATE_RAILED","features":[218]},{"name":"MANIPULATION_RAILS_STATE_UNDECIDED","features":[218]},{"name":"MANIPULATION_TRANSFORM","features":[218]},{"name":"MANIPULATION_VELOCITY","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_X","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_Y","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_ROTATION","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_SCALE","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER_MAX","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_X","features":[218]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_Y","features":[218]},{"name":"ProcessBufferedPacketsInteractionContext","features":[218]},{"name":"ProcessInertiaInteractionContext","features":[218]},{"name":"ProcessPointerFramesInteractionContext","features":[3,211,218,52]},{"name":"RegisterOutputCallbackInteractionContext","features":[218,52]},{"name":"RegisterOutputCallbackInteractionContext2","features":[218,52]},{"name":"RemovePointerInteractionContext","features":[218]},{"name":"ResetInteractionContext","features":[218]},{"name":"SetCrossSlideParametersInteractionContext","features":[218]},{"name":"SetHoldParameterInteractionContext","features":[218]},{"name":"SetInertiaParameterInteractionContext","features":[218]},{"name":"SetInteractionConfigurationInteractionContext","features":[218]},{"name":"SetMouseWheelParameterInteractionContext","features":[218]},{"name":"SetPivotInteractionContext","features":[218]},{"name":"SetPropertyInteractionContext","features":[218]},{"name":"SetTapParameterInteractionContext","features":[218]},{"name":"SetTranslationParameterInteractionContext","features":[218]},{"name":"StopInteractionContext","features":[218]},{"name":"TAP_PARAMETER","features":[218]},{"name":"TAP_PARAMETER_MAX","features":[218]},{"name":"TAP_PARAMETER_MAX_CONTACT_COUNT","features":[218]},{"name":"TAP_PARAMETER_MIN_CONTACT_COUNT","features":[218]},{"name":"TRANSLATION_PARAMETER","features":[218]},{"name":"TRANSLATION_PARAMETER_MAX","features":[218]},{"name":"TRANSLATION_PARAMETER_MAX_CONTACT_COUNT","features":[218]},{"name":"TRANSLATION_PARAMETER_MIN_CONTACT_COUNT","features":[218]}],"666":[{"name":"MAGCOLOREFFECT","features":[219]},{"name":"MAGIMAGEHEADER","features":[219]},{"name":"MAGTRANSFORM","features":[219]},{"name":"MS_CLIPAROUNDCURSOR","features":[219]},{"name":"MS_INVERTCOLORS","features":[219]},{"name":"MS_SHOWMAGNIFIEDCURSOR","features":[219]},{"name":"MW_FILTERMODE","features":[219]},{"name":"MW_FILTERMODE_EXCLUDE","features":[219]},{"name":"MW_FILTERMODE_INCLUDE","features":[219]},{"name":"MagGetColorEffect","features":[3,219]},{"name":"MagGetFullscreenColorEffect","features":[3,219]},{"name":"MagGetFullscreenTransform","features":[3,219]},{"name":"MagGetImageScalingCallback","features":[3,14,219]},{"name":"MagGetInputTransform","features":[3,219]},{"name":"MagGetWindowFilterList","features":[3,219]},{"name":"MagGetWindowSource","features":[3,219]},{"name":"MagGetWindowTransform","features":[3,219]},{"name":"MagImageScalingCallback","features":[3,14,219]},{"name":"MagInitialize","features":[3,219]},{"name":"MagSetColorEffect","features":[3,219]},{"name":"MagSetFullscreenColorEffect","features":[3,219]},{"name":"MagSetFullscreenTransform","features":[3,219]},{"name":"MagSetImageScalingCallback","features":[3,14,219]},{"name":"MagSetInputTransform","features":[3,219]},{"name":"MagSetWindowFilterList","features":[3,219]},{"name":"MagSetWindowSource","features":[3,219]},{"name":"MagSetWindowTransform","features":[3,219]},{"name":"MagShowSystemCursor","features":[3,219]},{"name":"MagUninitialize","features":[3,219]},{"name":"WC_MAGNIFIER","features":[219]},{"name":"WC_MAGNIFIERA","features":[219]},{"name":"WC_MAGNIFIERW","features":[219]}],"669":[{"name":"AASHELLMENUFILENAME","features":[111]},{"name":"AASHELLMENUITEM","features":[111]},{"name":"ABE_BOTTOM","features":[111]},{"name":"ABE_LEFT","features":[111]},{"name":"ABE_RIGHT","features":[111]},{"name":"ABE_TOP","features":[111]},{"name":"ABM_ACTIVATE","features":[111]},{"name":"ABM_GETAUTOHIDEBAR","features":[111]},{"name":"ABM_GETAUTOHIDEBAREX","features":[111]},{"name":"ABM_GETSTATE","features":[111]},{"name":"ABM_GETTASKBARPOS","features":[111]},{"name":"ABM_NEW","features":[111]},{"name":"ABM_QUERYPOS","features":[111]},{"name":"ABM_REMOVE","features":[111]},{"name":"ABM_SETAUTOHIDEBAR","features":[111]},{"name":"ABM_SETAUTOHIDEBAREX","features":[111]},{"name":"ABM_SETPOS","features":[111]},{"name":"ABM_SETSTATE","features":[111]},{"name":"ABM_WINDOWPOSCHANGED","features":[111]},{"name":"ABN_FULLSCREENAPP","features":[111]},{"name":"ABN_POSCHANGED","features":[111]},{"name":"ABN_STATECHANGE","features":[111]},{"name":"ABN_WINDOWARRANGE","features":[111]},{"name":"ABS_ALWAYSONTOP","features":[111]},{"name":"ABS_AUTOHIDE","features":[111]},{"name":"ACDD_VISIBLE","features":[111]},{"name":"ACENUMOPTION","features":[111]},{"name":"ACEO_FIRSTUNUSED","features":[111]},{"name":"ACEO_MOSTRECENTFIRST","features":[111]},{"name":"ACEO_NONE","features":[111]},{"name":"ACLO_CURRENTDIR","features":[111]},{"name":"ACLO_DESKTOP","features":[111]},{"name":"ACLO_FAVORITES","features":[111]},{"name":"ACLO_FILESYSDIRS","features":[111]},{"name":"ACLO_FILESYSONLY","features":[111]},{"name":"ACLO_MYCOMPUTER","features":[111]},{"name":"ACLO_NONE","features":[111]},{"name":"ACLO_VIRTUALNAMESPACE","features":[111]},{"name":"ACO_AUTOAPPEND","features":[111]},{"name":"ACO_AUTOSUGGEST","features":[111]},{"name":"ACO_FILTERPREFIXES","features":[111]},{"name":"ACO_NONE","features":[111]},{"name":"ACO_NOPREFIXFILTERING","features":[111]},{"name":"ACO_RTLREADING","features":[111]},{"name":"ACO_SEARCH","features":[111]},{"name":"ACO_UPDOWNKEYDROPSLIST","features":[111]},{"name":"ACO_USETAB","features":[111]},{"name":"ACO_WORD_FILTER","features":[111]},{"name":"ACTIVATEOPTIONS","features":[111]},{"name":"ADDURL_SILENT","features":[111]},{"name":"ADE_LEFT","features":[111]},{"name":"ADE_NONE","features":[111]},{"name":"ADE_RIGHT","features":[111]},{"name":"ADJACENT_DISPLAY_EDGES","features":[111]},{"name":"ADLT_FREQUENT","features":[111]},{"name":"ADLT_RECENT","features":[111]},{"name":"AD_APPLY_BUFFERED_REFRESH","features":[111]},{"name":"AD_APPLY_DYNAMICREFRESH","features":[111]},{"name":"AD_APPLY_FORCE","features":[111]},{"name":"AD_APPLY_HTMLGEN","features":[111]},{"name":"AD_APPLY_REFRESH","features":[111]},{"name":"AD_APPLY_SAVE","features":[111]},{"name":"AD_GETWP_BMP","features":[111]},{"name":"AD_GETWP_IMAGE","features":[111]},{"name":"AD_GETWP_LAST_APPLIED","features":[111]},{"name":"AHE_DESKTOP","features":[111]},{"name":"AHE_IMMERSIVE","features":[111]},{"name":"AHE_TYPE","features":[111]},{"name":"AHTYPE","features":[111]},{"name":"AHTYPE_ANY_APPLICATION","features":[111]},{"name":"AHTYPE_ANY_PROGID","features":[111]},{"name":"AHTYPE_APPLICATION","features":[111]},{"name":"AHTYPE_CLASS_APPLICATION","features":[111]},{"name":"AHTYPE_MACHINEDEFAULT","features":[111]},{"name":"AHTYPE_PROGID","features":[111]},{"name":"AHTYPE_UNDEFINED","features":[111]},{"name":"AHTYPE_USER_APPLICATION","features":[111]},{"name":"AIM_COMMENTS","features":[111]},{"name":"AIM_CONTACT","features":[111]},{"name":"AIM_DISPLAYNAME","features":[111]},{"name":"AIM_HELPLINK","features":[111]},{"name":"AIM_IMAGE","features":[111]},{"name":"AIM_INSTALLDATE","features":[111]},{"name":"AIM_INSTALLLOCATION","features":[111]},{"name":"AIM_INSTALLSOURCE","features":[111]},{"name":"AIM_LANGUAGE","features":[111]},{"name":"AIM_PRODUCTID","features":[111]},{"name":"AIM_PUBLISHER","features":[111]},{"name":"AIM_READMEURL","features":[111]},{"name":"AIM_REGISTEREDCOMPANY","features":[111]},{"name":"AIM_REGISTEREDOWNER","features":[111]},{"name":"AIM_SUPPORTTELEPHONE","features":[111]},{"name":"AIM_SUPPORTURL","features":[111]},{"name":"AIM_UPDATEINFOURL","features":[111]},{"name":"AIM_VERSION","features":[111]},{"name":"AL_EFFECTIVE","features":[111]},{"name":"AL_MACHINE","features":[111]},{"name":"AL_USER","features":[111]},{"name":"AO_DESIGNMODE","features":[111]},{"name":"AO_NOERRORUI","features":[111]},{"name":"AO_NONE","features":[111]},{"name":"AO_NOSPLASHSCREEN","features":[111]},{"name":"AO_PRELAUNCH","features":[111]},{"name":"APPACTIONFLAGS","features":[111]},{"name":"APPACTION_ADDLATER","features":[111]},{"name":"APPACTION_CANGETSIZE","features":[111]},{"name":"APPACTION_INSTALL","features":[111]},{"name":"APPACTION_MODIFY","features":[111]},{"name":"APPACTION_MODIFYREMOVE","features":[111]},{"name":"APPACTION_REPAIR","features":[111]},{"name":"APPACTION_UNINSTALL","features":[111]},{"name":"APPACTION_UNSCHEDULE","features":[111]},{"name":"APPACTION_UPGRADE","features":[111]},{"name":"APPBARDATA","features":[3,111]},{"name":"APPBARDATA","features":[3,111]},{"name":"APPCATEGORYINFO","features":[111]},{"name":"APPCATEGORYINFOLIST","features":[111]},{"name":"APPDOCLISTTYPE","features":[111]},{"name":"APPINFODATA","features":[111]},{"name":"APPINFODATAFLAGS","features":[111]},{"name":"APPLET_PROC","features":[3,111]},{"name":"APPLICATION_VIEW_MIN_WIDTH","features":[111]},{"name":"APPLICATION_VIEW_ORIENTATION","features":[111]},{"name":"APPLICATION_VIEW_SIZE_PREFERENCE","features":[111]},{"name":"APPLICATION_VIEW_STATE","features":[111]},{"name":"APPNAMEBUFFERLEN","features":[111]},{"name":"ARCONTENT_AUDIOCD","features":[111]},{"name":"ARCONTENT_AUTOPLAYMUSIC","features":[111]},{"name":"ARCONTENT_AUTOPLAYPIX","features":[111]},{"name":"ARCONTENT_AUTOPLAYVIDEO","features":[111]},{"name":"ARCONTENT_AUTORUNINF","features":[111]},{"name":"ARCONTENT_BLANKBD","features":[111]},{"name":"ARCONTENT_BLANKCD","features":[111]},{"name":"ARCONTENT_BLANKDVD","features":[111]},{"name":"ARCONTENT_BLURAY","features":[111]},{"name":"ARCONTENT_CAMERASTORAGE","features":[111]},{"name":"ARCONTENT_CUSTOMEVENT","features":[111]},{"name":"ARCONTENT_DVDAUDIO","features":[111]},{"name":"ARCONTENT_DVDMOVIE","features":[111]},{"name":"ARCONTENT_MASK","features":[111]},{"name":"ARCONTENT_NONE","features":[111]},{"name":"ARCONTENT_PHASE_FINAL","features":[111]},{"name":"ARCONTENT_PHASE_MASK","features":[111]},{"name":"ARCONTENT_PHASE_PRESNIFF","features":[111]},{"name":"ARCONTENT_PHASE_SNIFFING","features":[111]},{"name":"ARCONTENT_PHASE_UNKNOWN","features":[111]},{"name":"ARCONTENT_SVCD","features":[111]},{"name":"ARCONTENT_UNKNOWNCONTENT","features":[111]},{"name":"ARCONTENT_VCD","features":[111]},{"name":"ASSOCCLASS","features":[111]},{"name":"ASSOCCLASS_APP_KEY","features":[111]},{"name":"ASSOCCLASS_APP_STR","features":[111]},{"name":"ASSOCCLASS_CLSID_KEY","features":[111]},{"name":"ASSOCCLASS_CLSID_STR","features":[111]},{"name":"ASSOCCLASS_FIXED_PROGID_STR","features":[111]},{"name":"ASSOCCLASS_FOLDER","features":[111]},{"name":"ASSOCCLASS_PROGID_KEY","features":[111]},{"name":"ASSOCCLASS_PROGID_STR","features":[111]},{"name":"ASSOCCLASS_PROTOCOL_STR","features":[111]},{"name":"ASSOCCLASS_SHELL_KEY","features":[111]},{"name":"ASSOCCLASS_STAR","features":[111]},{"name":"ASSOCCLASS_SYSTEM_STR","features":[111]},{"name":"ASSOCDATA","features":[111]},{"name":"ASSOCDATA_EDITFLAGS","features":[111]},{"name":"ASSOCDATA_HASPERUSERASSOC","features":[111]},{"name":"ASSOCDATA_MAX","features":[111]},{"name":"ASSOCDATA_MSIDESCRIPTOR","features":[111]},{"name":"ASSOCDATA_NOACTIVATEHANDLER","features":[111]},{"name":"ASSOCDATA_UNUSED1","features":[111]},{"name":"ASSOCDATA_VALUE","features":[111]},{"name":"ASSOCENUM","features":[111]},{"name":"ASSOCENUM_NONE","features":[111]},{"name":"ASSOCF","features":[111]},{"name":"ASSOCF_APP_TO_APP","features":[111]},{"name":"ASSOCF_IGNOREBASECLASS","features":[111]},{"name":"ASSOCF_INIT_BYEXENAME","features":[111]},{"name":"ASSOCF_INIT_DEFAULTTOFOLDER","features":[111]},{"name":"ASSOCF_INIT_DEFAULTTOSTAR","features":[111]},{"name":"ASSOCF_INIT_FIXED_PROGID","features":[111]},{"name":"ASSOCF_INIT_FOR_FILE","features":[111]},{"name":"ASSOCF_INIT_IGNOREUNKNOWN","features":[111]},{"name":"ASSOCF_INIT_NOREMAPCLSID","features":[111]},{"name":"ASSOCF_IS_FULL_URI","features":[111]},{"name":"ASSOCF_IS_PROTOCOL","features":[111]},{"name":"ASSOCF_NOFIXUPS","features":[111]},{"name":"ASSOCF_NONE","features":[111]},{"name":"ASSOCF_NOTRUNCATE","features":[111]},{"name":"ASSOCF_NOUSERSETTINGS","features":[111]},{"name":"ASSOCF_OPEN_BYEXENAME","features":[111]},{"name":"ASSOCF_PER_MACHINE_ONLY","features":[111]},{"name":"ASSOCF_REMAPRUNDLL","features":[111]},{"name":"ASSOCF_VERIFY","features":[111]},{"name":"ASSOCIATIONELEMENT","features":[51,111]},{"name":"ASSOCIATIONELEMENT","features":[51,111]},{"name":"ASSOCIATIONLEVEL","features":[111]},{"name":"ASSOCIATIONTYPE","features":[111]},{"name":"ASSOCKEY","features":[111]},{"name":"ASSOCKEY_APP","features":[111]},{"name":"ASSOCKEY_BASECLASS","features":[111]},{"name":"ASSOCKEY_CLASS","features":[111]},{"name":"ASSOCKEY_MAX","features":[111]},{"name":"ASSOCKEY_SHELLEXECCLASS","features":[111]},{"name":"ASSOCSTR","features":[111]},{"name":"ASSOCSTR_APPICONREFERENCE","features":[111]},{"name":"ASSOCSTR_APPID","features":[111]},{"name":"ASSOCSTR_APPPUBLISHER","features":[111]},{"name":"ASSOCSTR_COMMAND","features":[111]},{"name":"ASSOCSTR_CONTENTTYPE","features":[111]},{"name":"ASSOCSTR_DDEAPPLICATION","features":[111]},{"name":"ASSOCSTR_DDECOMMAND","features":[111]},{"name":"ASSOCSTR_DDEIFEXEC","features":[111]},{"name":"ASSOCSTR_DDETOPIC","features":[111]},{"name":"ASSOCSTR_DEFAULTICON","features":[111]},{"name":"ASSOCSTR_DELEGATEEXECUTE","features":[111]},{"name":"ASSOCSTR_DROPTARGET","features":[111]},{"name":"ASSOCSTR_EXECUTABLE","features":[111]},{"name":"ASSOCSTR_FRIENDLYAPPNAME","features":[111]},{"name":"ASSOCSTR_FRIENDLYDOCNAME","features":[111]},{"name":"ASSOCSTR_INFOTIP","features":[111]},{"name":"ASSOCSTR_MAX","features":[111]},{"name":"ASSOCSTR_NOOPEN","features":[111]},{"name":"ASSOCSTR_PROGID","features":[111]},{"name":"ASSOCSTR_QUICKTIP","features":[111]},{"name":"ASSOCSTR_SHELLEXTENSION","features":[111]},{"name":"ASSOCSTR_SHELLNEWVALUE","features":[111]},{"name":"ASSOCSTR_SUPPORTED_URI_PROTOCOLS","features":[111]},{"name":"ASSOCSTR_TILEINFO","features":[111]},{"name":"ASSOC_FILTER","features":[111]},{"name":"ASSOC_FILTER_NONE","features":[111]},{"name":"ASSOC_FILTER_RECOMMENDED","features":[111]},{"name":"ATTACHMENT_ACTION","features":[111]},{"name":"ATTACHMENT_ACTION_CANCEL","features":[111]},{"name":"ATTACHMENT_ACTION_EXEC","features":[111]},{"name":"ATTACHMENT_ACTION_SAVE","features":[111]},{"name":"ATTACHMENT_PROMPT","features":[111]},{"name":"ATTACHMENT_PROMPT_EXEC","features":[111]},{"name":"ATTACHMENT_PROMPT_EXEC_OR_SAVE","features":[111]},{"name":"ATTACHMENT_PROMPT_NONE","features":[111]},{"name":"ATTACHMENT_PROMPT_SAVE","features":[111]},{"name":"AT_FILEEXTENSION","features":[111]},{"name":"AT_MIMETYPE","features":[111]},{"name":"AT_STARTMENUCLIENT","features":[111]},{"name":"AT_URLPROTOCOL","features":[111]},{"name":"AUTOCOMPLETELISTOPTIONS","features":[111]},{"name":"AUTOCOMPLETEOPTIONS","features":[111]},{"name":"AUTO_SCROLL_DATA","features":[3,111]},{"name":"AVMW_320","features":[111]},{"name":"AVMW_500","features":[111]},{"name":"AVMW_DEFAULT","features":[111]},{"name":"AVO_LANDSCAPE","features":[111]},{"name":"AVO_PORTRAIT","features":[111]},{"name":"AVSP_CUSTOM","features":[111]},{"name":"AVSP_DEFAULT","features":[111]},{"name":"AVSP_USE_HALF","features":[111]},{"name":"AVSP_USE_LESS","features":[111]},{"name":"AVSP_USE_MINIMUM","features":[111]},{"name":"AVSP_USE_MORE","features":[111]},{"name":"AVSP_USE_NONE","features":[111]},{"name":"AVS_FILLED","features":[111]},{"name":"AVS_FULLSCREEN_LANDSCAPE","features":[111]},{"name":"AVS_FULLSCREEN_PORTRAIT","features":[111]},{"name":"AVS_SNAPPED","features":[111]},{"name":"AccessibilityDockingService","features":[111]},{"name":"AllowSmallerSize","features":[111]},{"name":"AlphabeticalCategorizer","features":[111]},{"name":"AppShellVerbHandler","features":[111]},{"name":"AppStartupLink","features":[111]},{"name":"AppVisibility","features":[111]},{"name":"ApplicationActivationManager","features":[111]},{"name":"ApplicationAssociationRegistration","features":[111]},{"name":"ApplicationAssociationRegistrationUI","features":[111]},{"name":"ApplicationDesignModeSettings","features":[111]},{"name":"ApplicationDestinations","features":[111]},{"name":"ApplicationDocumentLists","features":[111]},{"name":"AssocCreate","features":[111]},{"name":"AssocCreateForClasses","features":[51,111]},{"name":"AssocGetDetailsOfPropKey","features":[3,43,44,220,62]},{"name":"AssocGetPerceivedType","features":[220]},{"name":"AssocIsDangerous","features":[3,111]},{"name":"AssocQueryKeyA","features":[51,111]},{"name":"AssocQueryKeyW","features":[51,111]},{"name":"AssocQueryStringA","features":[111]},{"name":"AssocQueryStringByKeyA","features":[51,111]},{"name":"AssocQueryStringByKeyW","features":[51,111]},{"name":"AssocQueryStringW","features":[111]},{"name":"AttachmentServices","features":[111]},{"name":"BANDINFOSFB","features":[3,220]},{"name":"BANDSITECID","features":[111]},{"name":"BANDSITEINFO","features":[111]},{"name":"BANNER_NOTIFICATION","features":[111]},{"name":"BANNER_NOTIFICATION_EVENT","features":[111]},{"name":"BASEBROWSERDATALH","features":[3,220]},{"name":"BASEBROWSERDATAXP","features":[3,220]},{"name":"BFFCALLBACK","features":[3,111]},{"name":"BFFM_ENABLEOK","features":[111]},{"name":"BFFM_INITIALIZED","features":[111]},{"name":"BFFM_IUNKNOWN","features":[111]},{"name":"BFFM_SELCHANGED","features":[111]},{"name":"BFFM_SETEXPANDED","features":[111]},{"name":"BFFM_SETOKTEXT","features":[111]},{"name":"BFFM_SETSELECTION","features":[111]},{"name":"BFFM_SETSELECTIONA","features":[111]},{"name":"BFFM_SETSELECTIONW","features":[111]},{"name":"BFFM_SETSTATUSTEXT","features":[111]},{"name":"BFFM_SETSTATUSTEXTA","features":[111]},{"name":"BFFM_SETSTATUSTEXTW","features":[111]},{"name":"BFFM_VALIDATEFAILED","features":[111]},{"name":"BFFM_VALIDATEFAILEDA","features":[111]},{"name":"BFFM_VALIDATEFAILEDW","features":[111]},{"name":"BFO_ADD_IE_TOCAPTIONBAR","features":[111]},{"name":"BFO_BOTH_OPTIONS","features":[111]},{"name":"BFO_BROWSER_PERSIST_SETTINGS","features":[111]},{"name":"BFO_BROWSE_NO_IN_NEW_PROCESS","features":[111]},{"name":"BFO_ENABLE_HYPERLINK_TRACKING","features":[111]},{"name":"BFO_GO_HOME_PAGE","features":[111]},{"name":"BFO_NONE","features":[111]},{"name":"BFO_NO_PARENT_FOLDER_SUPPORT","features":[111]},{"name":"BFO_NO_REOPEN_NEXT_RESTART","features":[111]},{"name":"BFO_PREFER_IEPROCESS","features":[111]},{"name":"BFO_QUERY_ALL","features":[111]},{"name":"BFO_RENAME_FOLDER_OPTIONS_TOINTERNET","features":[111]},{"name":"BFO_SHOW_NAVIGATION_CANCELLED","features":[111]},{"name":"BFO_SUBSTITUE_INTERNET_START_PAGE","features":[111]},{"name":"BFO_USE_DIALUP_REF","features":[111]},{"name":"BFO_USE_IE_LOGOBANDING","features":[111]},{"name":"BFO_USE_IE_OFFLINE_SUPPORT","features":[111]},{"name":"BFO_USE_IE_STATUSBAR","features":[111]},{"name":"BFO_USE_IE_TOOLBAR","features":[111]},{"name":"BHID_AssociationArray","features":[111]},{"name":"BHID_DataObject","features":[111]},{"name":"BHID_EnumAssocHandlers","features":[111]},{"name":"BHID_EnumItems","features":[111]},{"name":"BHID_FilePlaceholder","features":[111]},{"name":"BHID_Filter","features":[111]},{"name":"BHID_LinkTargetItem","features":[111]},{"name":"BHID_PropertyStore","features":[111]},{"name":"BHID_RandomAccessStream","features":[111]},{"name":"BHID_SFObject","features":[111]},{"name":"BHID_SFUIObject","features":[111]},{"name":"BHID_SFViewObject","features":[111]},{"name":"BHID_Storage","features":[111]},{"name":"BHID_StorageEnum","features":[111]},{"name":"BHID_StorageItem","features":[111]},{"name":"BHID_Stream","features":[111]},{"name":"BHID_ThumbnailHandler","features":[111]},{"name":"BHID_Transfer","features":[111]},{"name":"BIF_BROWSEFILEJUNCTIONS","features":[111]},{"name":"BIF_BROWSEFORCOMPUTER","features":[111]},{"name":"BIF_BROWSEFORPRINTER","features":[111]},{"name":"BIF_BROWSEINCLUDEFILES","features":[111]},{"name":"BIF_BROWSEINCLUDEURLS","features":[111]},{"name":"BIF_DONTGOBELOWDOMAIN","features":[111]},{"name":"BIF_EDITBOX","features":[111]},{"name":"BIF_NEWDIALOGSTYLE","features":[111]},{"name":"BIF_NONEWFOLDERBUTTON","features":[111]},{"name":"BIF_NOTRANSLATETARGETS","features":[111]},{"name":"BIF_PREFER_INTERNET_SHORTCUT","features":[111]},{"name":"BIF_RETURNFSANCESTORS","features":[111]},{"name":"BIF_RETURNONLYFSDIRS","features":[111]},{"name":"BIF_SHAREABLE","features":[111]},{"name":"BIF_STATUSTEXT","features":[111]},{"name":"BIF_UAHINT","features":[111]},{"name":"BIF_VALIDATE","features":[111]},{"name":"BIND_INTERRUPTABLE","features":[111]},{"name":"BMICON_LARGE","features":[111]},{"name":"BMICON_SMALL","features":[111]},{"name":"BNE_Button1Clicked","features":[111]},{"name":"BNE_Button2Clicked","features":[111]},{"name":"BNE_Closed","features":[111]},{"name":"BNE_Dismissed","features":[111]},{"name":"BNE_Hovered","features":[111]},{"name":"BNE_Rendered","features":[111]},{"name":"BNSTATE","features":[111]},{"name":"BNS_BEGIN_NAVIGATE","features":[111]},{"name":"BNS_NAVIGATE","features":[111]},{"name":"BNS_NORMAL","features":[111]},{"name":"BROWSEINFOA","features":[3,220]},{"name":"BROWSEINFOW","features":[3,220]},{"name":"BSF_CANMAXIMIZE","features":[111]},{"name":"BSF_DELEGATEDNAVIGATION","features":[111]},{"name":"BSF_DONTSHOWNAVCANCELPAGE","features":[111]},{"name":"BSF_FEEDNAVIGATION","features":[111]},{"name":"BSF_FEEDSUBSCRIBED","features":[111]},{"name":"BSF_HTMLNAVCANCELED","features":[111]},{"name":"BSF_MERGEDMENUS","features":[111]},{"name":"BSF_NAVNOHISTORY","features":[111]},{"name":"BSF_NOLOCALFILEWARNING","features":[111]},{"name":"BSF_REGISTERASDROPTARGET","features":[111]},{"name":"BSF_RESIZABLE","features":[111]},{"name":"BSF_SETNAVIGATABLECODEPAGE","features":[111]},{"name":"BSF_THEATERMODE","features":[111]},{"name":"BSF_TOPBROWSER","features":[111]},{"name":"BSF_TRUSTEDFORACTIVEX","features":[111]},{"name":"BSF_UISETBYAUTOMATION","features":[111]},{"name":"BSID_BANDADDED","features":[111]},{"name":"BSID_BANDREMOVED","features":[111]},{"name":"BSIM_STATE","features":[111]},{"name":"BSIM_STYLE","features":[111]},{"name":"BSIS_ALWAYSGRIPPER","features":[111]},{"name":"BSIS_AUTOGRIPPER","features":[111]},{"name":"BSIS_FIXEDORDER","features":[111]},{"name":"BSIS_LEFTALIGN","features":[111]},{"name":"BSIS_LOCKED","features":[111]},{"name":"BSIS_NOCAPTION","features":[111]},{"name":"BSIS_NOCONTEXTMENU","features":[111]},{"name":"BSIS_NODROPTARGET","features":[111]},{"name":"BSIS_NOGRIPPER","features":[111]},{"name":"BSIS_PREFERNOLINEBREAK","features":[111]},{"name":"BSIS_PRESERVEORDERDURINGLAYOUT","features":[111]},{"name":"BSIS_SINGLECLICK","features":[111]},{"name":"BSSF_NOTITLE","features":[111]},{"name":"BSSF_UNDELETEABLE","features":[111]},{"name":"BSSF_VISIBLE","features":[111]},{"name":"BUFFLEN","features":[111]},{"name":"BrowserNavConstants","features":[111]},{"name":"CABINETSTATE","features":[111]},{"name":"CABINETSTATE_VERSION","features":[111]},{"name":"CAMERAROLL_E_NO_DOWNSAMPLING_REQUIRED","features":[111]},{"name":"CATEGORYINFO_FLAGS","features":[111]},{"name":"CATEGORY_INFO","features":[111]},{"name":"CATID_BrowsableShellExt","features":[111]},{"name":"CATID_BrowseInPlace","features":[111]},{"name":"CATID_CommBand","features":[111]},{"name":"CATID_DeskBand","features":[111]},{"name":"CATID_FilePlaceholderMergeHandler","features":[111]},{"name":"CATID_InfoBand","features":[111]},{"name":"CATID_LocationFactory","features":[111]},{"name":"CATID_LocationProvider","features":[111]},{"name":"CATID_SearchableApplication","features":[111]},{"name":"CATINFO_COLLAPSED","features":[111]},{"name":"CATINFO_EXPANDED","features":[111]},{"name":"CATINFO_HIDDEN","features":[111]},{"name":"CATINFO_NOHEADER","features":[111]},{"name":"CATINFO_NOHEADERCOUNT","features":[111]},{"name":"CATINFO_NORMAL","features":[111]},{"name":"CATINFO_NOTCOLLAPSIBLE","features":[111]},{"name":"CATINFO_SEPARATE_IMAGES","features":[111]},{"name":"CATINFO_SHOWEMPTY","features":[111]},{"name":"CATINFO_SUBSETTED","features":[111]},{"name":"CATSORT_DEFAULT","features":[111]},{"name":"CATSORT_FLAGS","features":[111]},{"name":"CATSORT_NAME","features":[111]},{"name":"CDB2GVF_ADDSHIELD","features":[111]},{"name":"CDB2GVF_ALLOWPREVIEWPANE","features":[111]},{"name":"CDB2GVF_ISFILESAVE","features":[111]},{"name":"CDB2GVF_ISFOLDERPICKER","features":[111]},{"name":"CDB2GVF_NOINCLUDEITEM","features":[111]},{"name":"CDB2GVF_NOSELECTVERB","features":[111]},{"name":"CDB2GVF_SHOWALLFILES","features":[111]},{"name":"CDB2N_CONTEXTMENU_DONE","features":[111]},{"name":"CDB2N_CONTEXTMENU_START","features":[111]},{"name":"CDBE_RET_DEFAULT","features":[111]},{"name":"CDBE_RET_DONTRUNOTHEREXTS","features":[111]},{"name":"CDBE_RET_STOPWIZARD","features":[111]},{"name":"CDBE_TYPE_ALL","features":[111]},{"name":"CDBE_TYPE_DATA","features":[111]},{"name":"CDBE_TYPE_MUSIC","features":[111]},{"name":"CDBOSC_KILLFOCUS","features":[111]},{"name":"CDBOSC_RENAME","features":[111]},{"name":"CDBOSC_SELCHANGE","features":[111]},{"name":"CDBOSC_SETFOCUS","features":[111]},{"name":"CDBOSC_STATECHANGE","features":[111]},{"name":"CDBURNINGEXTENSIONRET","features":[111]},{"name":"CDBurn","features":[111]},{"name":"CDCONTROLSTATEF","features":[111]},{"name":"CDCS_ENABLED","features":[111]},{"name":"CDCS_ENABLEDVISIBLE","features":[111]},{"name":"CDCS_INACTIVE","features":[111]},{"name":"CDCS_VISIBLE","features":[111]},{"name":"CDefFolderMenu_Create2","features":[3,51,220]},{"name":"CFSTR_AUTOPLAY_SHELLIDLISTS","features":[111]},{"name":"CFSTR_DROPDESCRIPTION","features":[111]},{"name":"CFSTR_FILECONTENTS","features":[111]},{"name":"CFSTR_FILEDESCRIPTOR","features":[111]},{"name":"CFSTR_FILEDESCRIPTORA","features":[111]},{"name":"CFSTR_FILEDESCRIPTORW","features":[111]},{"name":"CFSTR_FILENAME","features":[111]},{"name":"CFSTR_FILENAMEA","features":[111]},{"name":"CFSTR_FILENAMEMAP","features":[111]},{"name":"CFSTR_FILENAMEMAPA","features":[111]},{"name":"CFSTR_FILENAMEMAPW","features":[111]},{"name":"CFSTR_FILENAMEW","features":[111]},{"name":"CFSTR_FILE_ATTRIBUTES_ARRAY","features":[111]},{"name":"CFSTR_INDRAGLOOP","features":[111]},{"name":"CFSTR_INETURL","features":[111]},{"name":"CFSTR_INETURLA","features":[111]},{"name":"CFSTR_INETURLW","features":[111]},{"name":"CFSTR_INVOKECOMMAND_DROPPARAM","features":[111]},{"name":"CFSTR_LOGICALPERFORMEDDROPEFFECT","features":[111]},{"name":"CFSTR_MOUNTEDVOLUME","features":[111]},{"name":"CFSTR_NETRESOURCES","features":[111]},{"name":"CFSTR_PASTESUCCEEDED","features":[111]},{"name":"CFSTR_PERFORMEDDROPEFFECT","features":[111]},{"name":"CFSTR_PERSISTEDDATAOBJECT","features":[111]},{"name":"CFSTR_PREFERREDDROPEFFECT","features":[111]},{"name":"CFSTR_PRINTERGROUP","features":[111]},{"name":"CFSTR_SHELLDROPHANDLER","features":[111]},{"name":"CFSTR_SHELLIDLIST","features":[111]},{"name":"CFSTR_SHELLIDLISTOFFSET","features":[111]},{"name":"CFSTR_SHELLURL","features":[111]},{"name":"CFSTR_TARGETCLSID","features":[111]},{"name":"CFSTR_UNTRUSTEDDRAGDROP","features":[111]},{"name":"CFSTR_ZONEIDENTIFIER","features":[111]},{"name":"CGID_DefView","features":[111]},{"name":"CGID_Explorer","features":[111]},{"name":"CGID_ExplorerBarDoc","features":[111]},{"name":"CGID_MENUDESKBAR","features":[111]},{"name":"CGID_ShellDocView","features":[111]},{"name":"CGID_ShellServiceObject","features":[111]},{"name":"CGID_ShortCut","features":[111]},{"name":"CIDA","features":[111]},{"name":"CIDLData_CreateFromIDArray","features":[220]},{"name":"CIE4ConnectionPoint","features":[111]},{"name":"CLOSEPROPS_DISCARD","features":[111]},{"name":"CLOSEPROPS_NONE","features":[111]},{"name":"CLSID_ACLCustomMRU","features":[111]},{"name":"CLSID_ACLHistory","features":[111]},{"name":"CLSID_ACLMRU","features":[111]},{"name":"CLSID_ACLMulti","features":[111]},{"name":"CLSID_ACListISF","features":[111]},{"name":"CLSID_ActiveDesktop","features":[111]},{"name":"CLSID_AutoComplete","features":[111]},{"name":"CLSID_CAnchorBrowsePropertyPage","features":[111]},{"name":"CLSID_CDocBrowsePropertyPage","features":[111]},{"name":"CLSID_CFSIconOverlayManager","features":[111]},{"name":"CLSID_CImageBrowsePropertyPage","features":[111]},{"name":"CLSID_CURLSearchHook","features":[111]},{"name":"CLSID_CUrlHistory","features":[111]},{"name":"CLSID_CUrlHistoryBoth","features":[111]},{"name":"CLSID_ControlPanel","features":[111]},{"name":"CLSID_DarwinAppPublisher","features":[111]},{"name":"CLSID_DocHostUIHandler","features":[111]},{"name":"CLSID_DragDropHelper","features":[111]},{"name":"CLSID_FileTypes","features":[111]},{"name":"CLSID_FolderItemsMultiLevel","features":[111]},{"name":"CLSID_FolderShortcut","features":[111]},{"name":"CLSID_HWShellExecute","features":[111]},{"name":"CLSID_ISFBand","features":[111]},{"name":"CLSID_Internet","features":[111]},{"name":"CLSID_InternetButtons","features":[111]},{"name":"CLSID_InternetShortcut","features":[111]},{"name":"CLSID_LinkColumnProvider","features":[111]},{"name":"CLSID_MSOButtons","features":[111]},{"name":"CLSID_MenuBand","features":[111]},{"name":"CLSID_MenuBandSite","features":[111]},{"name":"CLSID_MenuToolbarBase","features":[111]},{"name":"CLSID_MyComputer","features":[111]},{"name":"CLSID_MyDocuments","features":[111]},{"name":"CLSID_NetworkDomain","features":[111]},{"name":"CLSID_NetworkServer","features":[111]},{"name":"CLSID_NetworkShare","features":[111]},{"name":"CLSID_NewMenu","features":[111]},{"name":"CLSID_Printers","features":[111]},{"name":"CLSID_ProgressDialog","features":[111]},{"name":"CLSID_QueryAssociations","features":[111]},{"name":"CLSID_QuickLinks","features":[111]},{"name":"CLSID_RecycleBin","features":[111]},{"name":"CLSID_ShellFldSetExt","features":[111]},{"name":"CLSID_ShellThumbnailDiskCache","features":[111]},{"name":"CLSID_ToolbarExtButtons","features":[111]},{"name":"CMDID_INTSHORTCUTCREATE","features":[111]},{"name":"CMDSTR_NEWFOLDER","features":[111]},{"name":"CMDSTR_NEWFOLDERA","features":[111]},{"name":"CMDSTR_NEWFOLDERW","features":[111]},{"name":"CMDSTR_VIEWDETAILS","features":[111]},{"name":"CMDSTR_VIEWDETAILSA","features":[111]},{"name":"CMDSTR_VIEWDETAILSW","features":[111]},{"name":"CMDSTR_VIEWLIST","features":[111]},{"name":"CMDSTR_VIEWLISTA","features":[111]},{"name":"CMDSTR_VIEWLISTW","features":[111]},{"name":"CMF_ASYNCVERBSTATE","features":[111]},{"name":"CMF_CANRENAME","features":[111]},{"name":"CMF_DEFAULTONLY","features":[111]},{"name":"CMF_DISABLEDVERBS","features":[111]},{"name":"CMF_DONOTPICKDEFAULT","features":[111]},{"name":"CMF_EXPLORE","features":[111]},{"name":"CMF_EXTENDEDVERBS","features":[111]},{"name":"CMF_INCLUDESTATIC","features":[111]},{"name":"CMF_ITEMMENU","features":[111]},{"name":"CMF_NODEFAULT","features":[111]},{"name":"CMF_NORMAL","features":[111]},{"name":"CMF_NOVERBS","features":[111]},{"name":"CMF_OPTIMIZEFORINVOKE","features":[111]},{"name":"CMF_RESERVED","features":[111]},{"name":"CMF_SYNCCASCADEMENU","features":[111]},{"name":"CMF_VERBSONLY","features":[111]},{"name":"CMIC_MASK_CONTROL_DOWN","features":[111]},{"name":"CMIC_MASK_PTINVOKE","features":[111]},{"name":"CMIC_MASK_SHIFT_DOWN","features":[111]},{"name":"CMINVOKECOMMANDINFO","features":[3,111]},{"name":"CMINVOKECOMMANDINFOEX","features":[3,111]},{"name":"CMINVOKECOMMANDINFOEX_REMOTE","features":[3,111]},{"name":"CM_COLUMNINFO","features":[111]},{"name":"CM_ENUM_ALL","features":[111]},{"name":"CM_ENUM_FLAGS","features":[111]},{"name":"CM_ENUM_VISIBLE","features":[111]},{"name":"CM_MASK","features":[111]},{"name":"CM_MASK_DEFAULTWIDTH","features":[111]},{"name":"CM_MASK_IDEALWIDTH","features":[111]},{"name":"CM_MASK_NAME","features":[111]},{"name":"CM_MASK_STATE","features":[111]},{"name":"CM_MASK_WIDTH","features":[111]},{"name":"CM_SET_WIDTH_VALUE","features":[111]},{"name":"CM_STATE","features":[111]},{"name":"CM_STATE_ALWAYSVISIBLE","features":[111]},{"name":"CM_STATE_FIXEDWIDTH","features":[111]},{"name":"CM_STATE_NONE","features":[111]},{"name":"CM_STATE_NOSORTBYFOLDERNESS","features":[111]},{"name":"CM_STATE_VISIBLE","features":[111]},{"name":"CM_WIDTH_AUTOSIZE","features":[111]},{"name":"CM_WIDTH_USEDEFAULT","features":[111]},{"name":"COMPONENT_DEFAULT_LEFT","features":[111]},{"name":"COMPONENT_DEFAULT_TOP","features":[111]},{"name":"COMPONENT_TOP","features":[111]},{"name":"COMP_ELEM_CHECKED","features":[111]},{"name":"COMP_ELEM_CURITEMSTATE","features":[111]},{"name":"COMP_ELEM_DIRTY","features":[111]},{"name":"COMP_ELEM_FRIENDLYNAME","features":[111]},{"name":"COMP_ELEM_NOSCROLL","features":[111]},{"name":"COMP_ELEM_ORIGINAL_CSI","features":[111]},{"name":"COMP_ELEM_POS_LEFT","features":[111]},{"name":"COMP_ELEM_POS_TOP","features":[111]},{"name":"COMP_ELEM_POS_ZINDEX","features":[111]},{"name":"COMP_ELEM_RESTORED_CSI","features":[111]},{"name":"COMP_ELEM_SIZE_HEIGHT","features":[111]},{"name":"COMP_ELEM_SIZE_WIDTH","features":[111]},{"name":"COMP_ELEM_SOURCE","features":[111]},{"name":"COMP_ELEM_SUBSCRIBEDURL","features":[111]},{"name":"COMP_ELEM_TYPE","features":[111]},{"name":"COMP_TYPE_CFHTML","features":[111]},{"name":"COMP_TYPE_CONTROL","features":[111]},{"name":"COMP_TYPE_HTMLDOC","features":[111]},{"name":"COMP_TYPE_MAX","features":[111]},{"name":"COMP_TYPE_PICTURE","features":[111]},{"name":"COMP_TYPE_WEBSITE","features":[111]},{"name":"CONFIRM_CONFLICT_ITEM","features":[111]},{"name":"CONFIRM_CONFLICT_RESULT_INFO","features":[111]},{"name":"CONFLICT_RESOLUTION_CLSID_KEY","features":[111]},{"name":"COPYENGINE_E_ACCESSDENIED_READONLY","features":[111]},{"name":"COPYENGINE_E_ACCESS_DENIED_DEST","features":[111]},{"name":"COPYENGINE_E_ACCESS_DENIED_SRC","features":[111]},{"name":"COPYENGINE_E_ALREADY_EXISTS_FOLDER","features":[111]},{"name":"COPYENGINE_E_ALREADY_EXISTS_NORMAL","features":[111]},{"name":"COPYENGINE_E_ALREADY_EXISTS_READONLY","features":[111]},{"name":"COPYENGINE_E_ALREADY_EXISTS_SYSTEM","features":[111]},{"name":"COPYENGINE_E_BLOCKED_BY_DLP_POLICY","features":[111]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[111]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_POLICY","features":[111]},{"name":"COPYENGINE_E_CANCELLED","features":[111]},{"name":"COPYENGINE_E_CANNOT_MOVE_FROM_RECYCLE_BIN","features":[111]},{"name":"COPYENGINE_E_CANNOT_MOVE_SHARED_FOLDER","features":[111]},{"name":"COPYENGINE_E_CANT_REACH_SOURCE","features":[111]},{"name":"COPYENGINE_E_DEST_IS_RO_CD","features":[111]},{"name":"COPYENGINE_E_DEST_IS_RO_DVD","features":[111]},{"name":"COPYENGINE_E_DEST_IS_RW_CD","features":[111]},{"name":"COPYENGINE_E_DEST_IS_RW_DVD","features":[111]},{"name":"COPYENGINE_E_DEST_IS_R_CD","features":[111]},{"name":"COPYENGINE_E_DEST_IS_R_DVD","features":[111]},{"name":"COPYENGINE_E_DEST_SAME_TREE","features":[111]},{"name":"COPYENGINE_E_DEST_SUBTREE","features":[111]},{"name":"COPYENGINE_E_DIFF_DIR","features":[111]},{"name":"COPYENGINE_E_DIR_NOT_EMPTY","features":[111]},{"name":"COPYENGINE_E_DISK_FULL","features":[111]},{"name":"COPYENGINE_E_DISK_FULL_CLEAN","features":[111]},{"name":"COPYENGINE_E_EA_LOSS","features":[111]},{"name":"COPYENGINE_E_EA_NOT_SUPPORTED","features":[111]},{"name":"COPYENGINE_E_ENCRYPTION_LOSS","features":[111]},{"name":"COPYENGINE_E_FAT_MAX_IN_ROOT","features":[111]},{"name":"COPYENGINE_E_FILE_IS_FLD_DEST","features":[111]},{"name":"COPYENGINE_E_FILE_TOO_LARGE","features":[111]},{"name":"COPYENGINE_E_FLD_IS_FILE_DEST","features":[111]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_ERROR","features":[111]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_PAUSED","features":[111]},{"name":"COPYENGINE_E_INTERNET_ITEM_UNAVAILABLE","features":[111]},{"name":"COPYENGINE_E_INVALID_FILES_DEST","features":[111]},{"name":"COPYENGINE_E_INVALID_FILES_SRC","features":[111]},{"name":"COPYENGINE_E_MANY_SRC_1_DEST","features":[111]},{"name":"COPYENGINE_E_NET_DISCONNECT_DEST","features":[111]},{"name":"COPYENGINE_E_NET_DISCONNECT_SRC","features":[111]},{"name":"COPYENGINE_E_NEWFILE_NAME_TOO_LONG","features":[111]},{"name":"COPYENGINE_E_NEWFOLDER_NAME_TOO_LONG","features":[111]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_DEST","features":[111]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_SRC","features":[111]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_DEST","features":[111]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_SRC","features":[111]},{"name":"COPYENGINE_E_PROPERTIES_LOSS","features":[111]},{"name":"COPYENGINE_E_PROPERTY_LOSS","features":[111]},{"name":"COPYENGINE_E_RECYCLE_BIN_NOT_FOUND","features":[111]},{"name":"COPYENGINE_E_RECYCLE_FORCE_NUKE","features":[111]},{"name":"COPYENGINE_E_RECYCLE_PATH_TOO_LONG","features":[111]},{"name":"COPYENGINE_E_RECYCLE_SIZE_TOO_BIG","features":[111]},{"name":"COPYENGINE_E_RECYCLE_UNKNOWN_ERROR","features":[111]},{"name":"COPYENGINE_E_REDIRECTED_TO_WEBPAGE","features":[111]},{"name":"COPYENGINE_E_REMOVABLE_FULL","features":[111]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT","features":[111]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[111]},{"name":"COPYENGINE_E_REQUIRES_ELEVATION","features":[111]},{"name":"COPYENGINE_E_RMS_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[111]},{"name":"COPYENGINE_E_RMS_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[111]},{"name":"COPYENGINE_E_ROOT_DIR_DEST","features":[111]},{"name":"COPYENGINE_E_ROOT_DIR_SRC","features":[111]},{"name":"COPYENGINE_E_SAME_FILE","features":[111]},{"name":"COPYENGINE_E_SERVER_BAD_FILE_TYPE","features":[111]},{"name":"COPYENGINE_E_SHARING_VIOLATION_DEST","features":[111]},{"name":"COPYENGINE_E_SHARING_VIOLATION_SRC","features":[111]},{"name":"COPYENGINE_E_SILENT_FAIL_BY_DLP_POLICY","features":[111]},{"name":"COPYENGINE_E_SRC_IS_RO_CD","features":[111]},{"name":"COPYENGINE_E_SRC_IS_RO_DVD","features":[111]},{"name":"COPYENGINE_E_SRC_IS_RW_CD","features":[111]},{"name":"COPYENGINE_E_SRC_IS_RW_DVD","features":[111]},{"name":"COPYENGINE_E_SRC_IS_R_CD","features":[111]},{"name":"COPYENGINE_E_SRC_IS_R_DVD","features":[111]},{"name":"COPYENGINE_E_STREAM_LOSS","features":[111]},{"name":"COPYENGINE_E_USER_CANCELLED","features":[111]},{"name":"COPYENGINE_E_WARNED_BY_DLP_POLICY","features":[111]},{"name":"COPYENGINE_S_ALREADY_DONE","features":[111]},{"name":"COPYENGINE_S_CLOSE_PROGRAM","features":[111]},{"name":"COPYENGINE_S_COLLISIONRESOLVED","features":[111]},{"name":"COPYENGINE_S_DONT_PROCESS_CHILDREN","features":[111]},{"name":"COPYENGINE_S_KEEP_BOTH","features":[111]},{"name":"COPYENGINE_S_MERGE","features":[111]},{"name":"COPYENGINE_S_NOT_HANDLED","features":[111]},{"name":"COPYENGINE_S_PENDING","features":[111]},{"name":"COPYENGINE_S_PENDING_DELETE","features":[111]},{"name":"COPYENGINE_S_PROGRESS_PAUSE","features":[111]},{"name":"COPYENGINE_S_USER_IGNORED","features":[111]},{"name":"COPYENGINE_S_USER_RETRY","features":[111]},{"name":"COPYENGINE_S_YES","features":[111]},{"name":"CPAO_EMPTY_CONNECTED","features":[111]},{"name":"CPAO_EMPTY_LOCAL","features":[111]},{"name":"CPAO_NONE","features":[111]},{"name":"CPCFO_ENABLE_PASSWORD_REVEAL","features":[111]},{"name":"CPCFO_ENABLE_TOUCH_KEYBOARD_AUTO_INVOKE","features":[111]},{"name":"CPCFO_IS_EMAIL_ADDRESS","features":[111]},{"name":"CPCFO_NONE","features":[111]},{"name":"CPCFO_NUMBERS_ONLY","features":[111]},{"name":"CPCFO_SHOW_ENGLISH_KEYBOARD","features":[111]},{"name":"CPFG_CREDENTIAL_PROVIDER_LABEL","features":[111]},{"name":"CPFG_CREDENTIAL_PROVIDER_LOGO","features":[111]},{"name":"CPFG_LOGON_PASSWORD","features":[111]},{"name":"CPFG_LOGON_USERNAME","features":[111]},{"name":"CPFG_SMARTCARD_PIN","features":[111]},{"name":"CPFG_SMARTCARD_USERNAME","features":[111]},{"name":"CPFG_STANDALONE_SUBMIT_BUTTON","features":[111]},{"name":"CPFG_STYLE_LINK_AS_BUTTON","features":[111]},{"name":"CPFIS_DISABLED","features":[111]},{"name":"CPFIS_FOCUSED","features":[111]},{"name":"CPFIS_NONE","features":[111]},{"name":"CPFIS_READONLY","features":[111]},{"name":"CPFS_DISPLAY_IN_BOTH","features":[111]},{"name":"CPFS_DISPLAY_IN_DESELECTED_TILE","features":[111]},{"name":"CPFS_DISPLAY_IN_SELECTED_TILE","features":[111]},{"name":"CPFS_HIDDEN","features":[111]},{"name":"CPFT_CHECKBOX","features":[111]},{"name":"CPFT_COMBOBOX","features":[111]},{"name":"CPFT_COMMAND_LINK","features":[111]},{"name":"CPFT_EDIT_TEXT","features":[111]},{"name":"CPFT_INVALID","features":[111]},{"name":"CPFT_LARGE_TEXT","features":[111]},{"name":"CPFT_PASSWORD_TEXT","features":[111]},{"name":"CPFT_SMALL_TEXT","features":[111]},{"name":"CPFT_SUBMIT_BUTTON","features":[111]},{"name":"CPFT_TILE_IMAGE","features":[111]},{"name":"CPGSR_NO_CREDENTIAL_FINISHED","features":[111]},{"name":"CPGSR_NO_CREDENTIAL_NOT_FINISHED","features":[111]},{"name":"CPGSR_RETURN_CREDENTIAL_FINISHED","features":[111]},{"name":"CPGSR_RETURN_NO_CREDENTIAL_FINISHED","features":[111]},{"name":"CPLINFO","features":[111]},{"name":"CPLPAGE_DISPLAY_BACKGROUND","features":[111]},{"name":"CPLPAGE_KEYBOARD_SPEED","features":[111]},{"name":"CPLPAGE_MOUSE_BUTTONS","features":[111]},{"name":"CPLPAGE_MOUSE_PTRMOTION","features":[111]},{"name":"CPLPAGE_MOUSE_WHEEL","features":[111]},{"name":"CPL_DBLCLK","features":[111]},{"name":"CPL_DYNAMIC_RES","features":[111]},{"name":"CPL_EXIT","features":[111]},{"name":"CPL_GETCOUNT","features":[111]},{"name":"CPL_INIT","features":[111]},{"name":"CPL_INQUIRE","features":[111]},{"name":"CPL_NEWINQUIRE","features":[111]},{"name":"CPL_SELECT","features":[111]},{"name":"CPL_SETUP","features":[111]},{"name":"CPL_STARTWPARMS","features":[111]},{"name":"CPL_STARTWPARMSA","features":[111]},{"name":"CPL_STARTWPARMSW","features":[111]},{"name":"CPL_STOP","features":[111]},{"name":"CPSI_ERROR","features":[111]},{"name":"CPSI_NONE","features":[111]},{"name":"CPSI_SUCCESS","features":[111]},{"name":"CPSI_WARNING","features":[111]},{"name":"CPUS_CHANGE_PASSWORD","features":[111]},{"name":"CPUS_CREDUI","features":[111]},{"name":"CPUS_INVALID","features":[111]},{"name":"CPUS_LOGON","features":[111]},{"name":"CPUS_PLAP","features":[111]},{"name":"CPUS_UNLOCK_WORKSTATION","features":[111]},{"name":"CPVIEW","features":[111]},{"name":"CPVIEW_ALLITEMS","features":[111]},{"name":"CPVIEW_CATEGORY","features":[111]},{"name":"CPVIEW_CLASSIC","features":[111]},{"name":"CPVIEW_HOME","features":[111]},{"name":"CREDENTIAL_PROVIDER_ACCOUNT_OPTIONS","features":[111]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_FIELD_OPTIONS","features":[111]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION","features":[111]},{"name":"CREDENTIAL_PROVIDER_FIELD_DESCRIPTOR","features":[111]},{"name":"CREDENTIAL_PROVIDER_FIELD_INTERACTIVE_STATE","features":[111]},{"name":"CREDENTIAL_PROVIDER_FIELD_STATE","features":[111]},{"name":"CREDENTIAL_PROVIDER_FIELD_TYPE","features":[111]},{"name":"CREDENTIAL_PROVIDER_GET_SERIALIZATION_RESPONSE","features":[111]},{"name":"CREDENTIAL_PROVIDER_NO_DEFAULT","features":[111]},{"name":"CREDENTIAL_PROVIDER_STATUS_ICON","features":[111]},{"name":"CREDENTIAL_PROVIDER_USAGE_SCENARIO","features":[111]},{"name":"CSC_NAVIGATEBACK","features":[111]},{"name":"CSC_NAVIGATEFORWARD","features":[111]},{"name":"CSC_UPDATECOMMANDS","features":[111]},{"name":"CSFV","features":[3,220]},{"name":"CSIDL_ADMINTOOLS","features":[111]},{"name":"CSIDL_ALTSTARTUP","features":[111]},{"name":"CSIDL_APPDATA","features":[111]},{"name":"CSIDL_BITBUCKET","features":[111]},{"name":"CSIDL_CDBURN_AREA","features":[111]},{"name":"CSIDL_COMMON_ADMINTOOLS","features":[111]},{"name":"CSIDL_COMMON_ALTSTARTUP","features":[111]},{"name":"CSIDL_COMMON_APPDATA","features":[111]},{"name":"CSIDL_COMMON_DESKTOPDIRECTORY","features":[111]},{"name":"CSIDL_COMMON_DOCUMENTS","features":[111]},{"name":"CSIDL_COMMON_FAVORITES","features":[111]},{"name":"CSIDL_COMMON_MUSIC","features":[111]},{"name":"CSIDL_COMMON_OEM_LINKS","features":[111]},{"name":"CSIDL_COMMON_PICTURES","features":[111]},{"name":"CSIDL_COMMON_PROGRAMS","features":[111]},{"name":"CSIDL_COMMON_STARTMENU","features":[111]},{"name":"CSIDL_COMMON_STARTUP","features":[111]},{"name":"CSIDL_COMMON_TEMPLATES","features":[111]},{"name":"CSIDL_COMMON_VIDEO","features":[111]},{"name":"CSIDL_COMPUTERSNEARME","features":[111]},{"name":"CSIDL_CONNECTIONS","features":[111]},{"name":"CSIDL_CONTROLS","features":[111]},{"name":"CSIDL_COOKIES","features":[111]},{"name":"CSIDL_DESKTOP","features":[111]},{"name":"CSIDL_DESKTOPDIRECTORY","features":[111]},{"name":"CSIDL_DRIVES","features":[111]},{"name":"CSIDL_FAVORITES","features":[111]},{"name":"CSIDL_FLAG_CREATE","features":[111]},{"name":"CSIDL_FLAG_DONT_UNEXPAND","features":[111]},{"name":"CSIDL_FLAG_DONT_VERIFY","features":[111]},{"name":"CSIDL_FLAG_MASK","features":[111]},{"name":"CSIDL_FLAG_NO_ALIAS","features":[111]},{"name":"CSIDL_FLAG_PER_USER_INIT","features":[111]},{"name":"CSIDL_FLAG_PFTI_TRACKTARGET","features":[111]},{"name":"CSIDL_FONTS","features":[111]},{"name":"CSIDL_HISTORY","features":[111]},{"name":"CSIDL_INTERNET","features":[111]},{"name":"CSIDL_INTERNET_CACHE","features":[111]},{"name":"CSIDL_LOCAL_APPDATA","features":[111]},{"name":"CSIDL_MYDOCUMENTS","features":[111]},{"name":"CSIDL_MYMUSIC","features":[111]},{"name":"CSIDL_MYPICTURES","features":[111]},{"name":"CSIDL_MYVIDEO","features":[111]},{"name":"CSIDL_NETHOOD","features":[111]},{"name":"CSIDL_NETWORK","features":[111]},{"name":"CSIDL_PERSONAL","features":[111]},{"name":"CSIDL_PRINTERS","features":[111]},{"name":"CSIDL_PRINTHOOD","features":[111]},{"name":"CSIDL_PROFILE","features":[111]},{"name":"CSIDL_PROGRAMS","features":[111]},{"name":"CSIDL_PROGRAM_FILES","features":[111]},{"name":"CSIDL_PROGRAM_FILESX86","features":[111]},{"name":"CSIDL_PROGRAM_FILES_COMMON","features":[111]},{"name":"CSIDL_PROGRAM_FILES_COMMONX86","features":[111]},{"name":"CSIDL_RECENT","features":[111]},{"name":"CSIDL_RESOURCES","features":[111]},{"name":"CSIDL_RESOURCES_LOCALIZED","features":[111]},{"name":"CSIDL_SENDTO","features":[111]},{"name":"CSIDL_STARTMENU","features":[111]},{"name":"CSIDL_STARTUP","features":[111]},{"name":"CSIDL_SYSTEM","features":[111]},{"name":"CSIDL_SYSTEMX86","features":[111]},{"name":"CSIDL_TEMPLATES","features":[111]},{"name":"CSIDL_WINDOWS","features":[111]},{"name":"CScriptErrorList","features":[111]},{"name":"CTF_COINIT","features":[111]},{"name":"CTF_COINIT_MTA","features":[111]},{"name":"CTF_COINIT_STA","features":[111]},{"name":"CTF_FREELIBANDEXIT","features":[111]},{"name":"CTF_INHERITWOW64","features":[111]},{"name":"CTF_INSIST","features":[111]},{"name":"CTF_KEYBOARD_LOCALE","features":[111]},{"name":"CTF_NOADDREFLIB","features":[111]},{"name":"CTF_OLEINITIALIZE","features":[111]},{"name":"CTF_PROCESS_REF","features":[111]},{"name":"CTF_REF_COUNTED","features":[111]},{"name":"CTF_THREAD_REF","features":[111]},{"name":"CTF_UNUSED","features":[111]},{"name":"CTF_WAIT_ALLOWCOM","features":[111]},{"name":"CTF_WAIT_NO_REENTRANCY","features":[111]},{"name":"ChrCmpIA","features":[3,111]},{"name":"ChrCmpIW","features":[3,111]},{"name":"ColorAdjustLuma","features":[3,111]},{"name":"ColorHLSToRGB","features":[3,111]},{"name":"ColorRGBToHLS","features":[3,111]},{"name":"CommandLineToArgvW","features":[111]},{"name":"CommandStateChangeConstants","features":[111]},{"name":"ConflictFolder","features":[111]},{"name":"ConnectToConnectionPoint","features":[3,111]},{"name":"CreateProfile","features":[111]},{"name":"DAD_AutoScroll","features":[3,111]},{"name":"DAD_DragEnterEx","features":[3,111]},{"name":"DAD_DragEnterEx2","features":[3,111]},{"name":"DAD_DragLeave","features":[3,111]},{"name":"DAD_DragMove","features":[3,111]},{"name":"DAD_SetDragImage","features":[3,42,111]},{"name":"DAD_ShowDragImage","features":[3,111]},{"name":"DATABLOCK_HEADER","features":[111]},{"name":"DATAOBJ_GET_ITEM_FLAGS","features":[111]},{"name":"DBCID_CLSIDOFBAR","features":[111]},{"name":"DBCID_EMPTY","features":[111]},{"name":"DBCID_GETBAR","features":[111]},{"name":"DBCID_ONDRAG","features":[111]},{"name":"DBCID_RESIZE","features":[111]},{"name":"DBCID_UPDATESIZE","features":[111]},{"name":"DBC_GS_IDEAL","features":[111]},{"name":"DBC_GS_SIZEDOWN","features":[111]},{"name":"DBC_HIDE","features":[111]},{"name":"DBC_SHOW","features":[111]},{"name":"DBC_SHOWOBSCURE","features":[111]},{"name":"DBID_BANDINFOCHANGED","features":[111]},{"name":"DBID_DELAYINIT","features":[111]},{"name":"DBID_FINISHINIT","features":[111]},{"name":"DBID_MAXIMIZEBAND","features":[111]},{"name":"DBID_PERMITAUTOHIDE","features":[111]},{"name":"DBID_PUSHCHEVRON","features":[111]},{"name":"DBID_SETWINDOWTHEME","features":[111]},{"name":"DBID_SHOWONLY","features":[111]},{"name":"DBIF_VIEWMODE_FLOATING","features":[111]},{"name":"DBIF_VIEWMODE_NORMAL","features":[111]},{"name":"DBIF_VIEWMODE_TRANSPARENT","features":[111]},{"name":"DBIF_VIEWMODE_VERTICAL","features":[111]},{"name":"DBIMF_ADDTOFRONT","features":[111]},{"name":"DBIMF_ALWAYSGRIPPER","features":[111]},{"name":"DBIMF_BKCOLOR","features":[111]},{"name":"DBIMF_BREAK","features":[111]},{"name":"DBIMF_DEBOSSED","features":[111]},{"name":"DBIMF_FIXED","features":[111]},{"name":"DBIMF_FIXEDBMP","features":[111]},{"name":"DBIMF_NOGRIPPER","features":[111]},{"name":"DBIMF_NOMARGINS","features":[111]},{"name":"DBIMF_NORMAL","features":[111]},{"name":"DBIMF_TOPALIGN","features":[111]},{"name":"DBIMF_UNDELETEABLE","features":[111]},{"name":"DBIMF_USECHEVRON","features":[111]},{"name":"DBIMF_VARIABLEHEIGHT","features":[111]},{"name":"DBIM_ACTUAL","features":[111]},{"name":"DBIM_BKCOLOR","features":[111]},{"name":"DBIM_INTEGRAL","features":[111]},{"name":"DBIM_MAXSIZE","features":[111]},{"name":"DBIM_MINSIZE","features":[111]},{"name":"DBIM_MODEFLAGS","features":[111]},{"name":"DBIM_TITLE","features":[111]},{"name":"DBPC_SELECTFIRST","features":[111]},{"name":"DEFAULTSAVEFOLDERTYPE","features":[111]},{"name":"DEFAULT_FOLDER_MENU_RESTRICTIONS","features":[111]},{"name":"DEFCONTEXTMENU","features":[3,51,220]},{"name":"DEFSHAREID_PUBLIC","features":[111]},{"name":"DEFSHAREID_USERS","features":[111]},{"name":"DEF_SHARE_ID","features":[111]},{"name":"DELEGATEITEMID","features":[111]},{"name":"DESKBANDCID","features":[111]},{"name":"DESKBANDINFO","features":[3,111]},{"name":"DESKTOP_SLIDESHOW_DIRECTION","features":[111]},{"name":"DESKTOP_SLIDESHOW_OPTIONS","features":[111]},{"name":"DESKTOP_SLIDESHOW_STATE","features":[111]},{"name":"DESKTOP_WALLPAPER_POSITION","features":[111]},{"name":"DETAILSINFO","features":[220]},{"name":"DEVICE_IMMERSIVE","features":[111]},{"name":"DEVICE_PRIMARY","features":[111]},{"name":"DFConstraint","features":[111]},{"name":"DFMICS","features":[3,111]},{"name":"DFMR_DEFAULT","features":[111]},{"name":"DFMR_NO_ASYNC_VERBS","features":[111]},{"name":"DFMR_NO_NATIVECPU_VERBS","features":[111]},{"name":"DFMR_NO_NONWOW_VERBS","features":[111]},{"name":"DFMR_NO_RESOURCE_VERBS","features":[111]},{"name":"DFMR_NO_STATIC_VERBS","features":[111]},{"name":"DFMR_OPTIN_HANDLERS_ONLY","features":[111]},{"name":"DFMR_RESOURCE_AND_FOLDER_VERBS_ONLY","features":[111]},{"name":"DFMR_STATIC_VERBS_ONLY","features":[111]},{"name":"DFMR_USE_SPECIFIED_HANDLERS","features":[111]},{"name":"DFMR_USE_SPECIFIED_VERBS","features":[111]},{"name":"DFM_CMD","features":[111]},{"name":"DFM_CMD_COPY","features":[111]},{"name":"DFM_CMD_DELETE","features":[111]},{"name":"DFM_CMD_LINK","features":[111]},{"name":"DFM_CMD_MODALPROP","features":[111]},{"name":"DFM_CMD_MOVE","features":[111]},{"name":"DFM_CMD_NEWFOLDER","features":[111]},{"name":"DFM_CMD_PASTE","features":[111]},{"name":"DFM_CMD_PASTELINK","features":[111]},{"name":"DFM_CMD_PASTESPECIAL","features":[111]},{"name":"DFM_CMD_PROPERTIES","features":[111]},{"name":"DFM_CMD_RENAME","features":[111]},{"name":"DFM_CMD_VIEWDETAILS","features":[111]},{"name":"DFM_CMD_VIEWLIST","features":[111]},{"name":"DFM_GETDEFSTATICID","features":[111]},{"name":"DFM_GETHELPTEXT","features":[111]},{"name":"DFM_GETHELPTEXTW","features":[111]},{"name":"DFM_GETVERBA","features":[111]},{"name":"DFM_GETVERBW","features":[111]},{"name":"DFM_INVOKECOMMAND","features":[111]},{"name":"DFM_INVOKECOMMANDEX","features":[111]},{"name":"DFM_MAPCOMMANDNAME","features":[111]},{"name":"DFM_MERGECONTEXTMENU","features":[111]},{"name":"DFM_MERGECONTEXTMENU_BOTTOM","features":[111]},{"name":"DFM_MERGECONTEXTMENU_TOP","features":[111]},{"name":"DFM_MESSAGE_ID","features":[111]},{"name":"DFM_MODIFYQCMFLAGS","features":[111]},{"name":"DFM_VALIDATECMD","features":[111]},{"name":"DFM_WM_DRAWITEM","features":[111]},{"name":"DFM_WM_INITMENUPOPUP","features":[111]},{"name":"DFM_WM_MEASUREITEM","features":[111]},{"name":"DISPID_BEGINDRAG","features":[111]},{"name":"DISPID_CHECKSTATECHANGED","features":[111]},{"name":"DISPID_COLUMNSCHANGED","features":[111]},{"name":"DISPID_CONTENTSCHANGED","features":[111]},{"name":"DISPID_CTRLMOUSEWHEEL","features":[111]},{"name":"DISPID_DEFAULTVERBINVOKED","features":[111]},{"name":"DISPID_ENTERPRESSED","features":[111]},{"name":"DISPID_ENTERPRISEIDCHANGED","features":[111]},{"name":"DISPID_EXPLORERWINDOWREADY","features":[111]},{"name":"DISPID_FILELISTENUMDONE","features":[111]},{"name":"DISPID_FILTERINVOKED","features":[111]},{"name":"DISPID_FOCUSCHANGED","features":[111]},{"name":"DISPID_FOLDERCHANGED","features":[111]},{"name":"DISPID_IADCCTL_DEFAULTCAT","features":[111]},{"name":"DISPID_IADCCTL_DIRTY","features":[111]},{"name":"DISPID_IADCCTL_FORCEX86","features":[111]},{"name":"DISPID_IADCCTL_ONDOMAIN","features":[111]},{"name":"DISPID_IADCCTL_PUBCAT","features":[111]},{"name":"DISPID_IADCCTL_SHOWPOSTSETUP","features":[111]},{"name":"DISPID_IADCCTL_SORT","features":[111]},{"name":"DISPID_ICONSIZECHANGED","features":[111]},{"name":"DISPID_INITIALENUMERATIONDONE","features":[111]},{"name":"DISPID_NOITEMSTATE_CHANGED","features":[111]},{"name":"DISPID_ORDERCHANGED","features":[111]},{"name":"DISPID_SEARCHCOMMAND_ABORT","features":[111]},{"name":"DISPID_SEARCHCOMMAND_COMPLETE","features":[111]},{"name":"DISPID_SEARCHCOMMAND_ERROR","features":[111]},{"name":"DISPID_SEARCHCOMMAND_PROGRESSTEXT","features":[111]},{"name":"DISPID_SEARCHCOMMAND_RESTORE","features":[111]},{"name":"DISPID_SEARCHCOMMAND_START","features":[111]},{"name":"DISPID_SEARCHCOMMAND_UPDATE","features":[111]},{"name":"DISPID_SELECTEDITEMCHANGED","features":[111]},{"name":"DISPID_SELECTIONCHANGED","features":[111]},{"name":"DISPID_SORTDONE","features":[111]},{"name":"DISPID_UPDATEIMAGE","features":[111]},{"name":"DISPID_VERBINVOKED","features":[111]},{"name":"DISPID_VIEWMODECHANGED","features":[111]},{"name":"DISPID_VIEWPAINTDONE","features":[111]},{"name":"DISPID_WORDWHEELEDITED","features":[111]},{"name":"DISPLAY_DEVICE_TYPE","features":[111]},{"name":"DI_GETDRAGIMAGE","features":[111]},{"name":"DLG_SCRNSAVECONFIGURE","features":[111]},{"name":"DLLGETVERSIONPROC","features":[111]},{"name":"DLLVERSIONINFO","features":[111]},{"name":"DLLVERSIONINFO2","features":[111]},{"name":"DLLVER_BUILD_MASK","features":[111]},{"name":"DLLVER_MAJOR_MASK","features":[111]},{"name":"DLLVER_MINOR_MASK","features":[111]},{"name":"DLLVER_PLATFORM_NT","features":[111]},{"name":"DLLVER_PLATFORM_WINDOWS","features":[111]},{"name":"DLLVER_QFE_MASK","features":[111]},{"name":"DOGIF_DEFAULT","features":[111]},{"name":"DOGIF_NO_HDROP","features":[111]},{"name":"DOGIF_NO_URL","features":[111]},{"name":"DOGIF_ONLY_IF_ONE","features":[111]},{"name":"DOGIF_TRAVERSE_LINK","features":[111]},{"name":"DRAGINFOA","features":[3,111]},{"name":"DRAGINFOA","features":[3,111]},{"name":"DRAGINFOW","features":[3,111]},{"name":"DRAGINFOW","features":[3,111]},{"name":"DROPDESCRIPTION","features":[111]},{"name":"DROPFILES","features":[3,111]},{"name":"DROPIMAGETYPE","features":[111]},{"name":"DROPIMAGE_COPY","features":[111]},{"name":"DROPIMAGE_INVALID","features":[111]},{"name":"DROPIMAGE_LABEL","features":[111]},{"name":"DROPIMAGE_LINK","features":[111]},{"name":"DROPIMAGE_MOVE","features":[111]},{"name":"DROPIMAGE_NOIMAGE","features":[111]},{"name":"DROPIMAGE_NONE","features":[111]},{"name":"DROPIMAGE_WARNING","features":[111]},{"name":"DSD_BACKWARD","features":[111]},{"name":"DSD_FORWARD","features":[111]},{"name":"DSFT_DETECT","features":[111]},{"name":"DSFT_PRIVATE","features":[111]},{"name":"DSFT_PUBLIC","features":[111]},{"name":"DSH_ALLOWDROPDESCRIPTIONTEXT","features":[111]},{"name":"DSH_FLAGS","features":[111]},{"name":"DSO_SHUFFLEIMAGES","features":[111]},{"name":"DSS_DISABLED_BY_REMOTE_SESSION","features":[111]},{"name":"DSS_ENABLED","features":[111]},{"name":"DSS_SLIDESHOW","features":[111]},{"name":"DShellFolderViewEvents","features":[111]},{"name":"DShellNameSpaceEvents","features":[111]},{"name":"DShellWindowsEvents","features":[111]},{"name":"DVASPECT_COPY","features":[111]},{"name":"DVASPECT_LINK","features":[111]},{"name":"DVASPECT_SHORTNAME","features":[111]},{"name":"DWFAF_AUTOHIDE","features":[111]},{"name":"DWFAF_GROUP1","features":[111]},{"name":"DWFAF_GROUP2","features":[111]},{"name":"DWFAF_HIDDEN","features":[111]},{"name":"DWFRF_DELETECONFIGDATA","features":[111]},{"name":"DWFRF_NORMAL","features":[111]},{"name":"DWPOS_CENTER","features":[111]},{"name":"DWPOS_FILL","features":[111]},{"name":"DWPOS_FIT","features":[111]},{"name":"DWPOS_SPAN","features":[111]},{"name":"DWPOS_STRETCH","features":[111]},{"name":"DWPOS_TILE","features":[111]},{"name":"DWebBrowserEvents","features":[111]},{"name":"DWebBrowserEvents2","features":[111]},{"name":"DefFolderMenu","features":[111]},{"name":"DefSubclassProc","features":[3,111]},{"name":"DeleteProfileA","features":[3,111]},{"name":"DeleteProfileW","features":[3,111]},{"name":"DesktopGadget","features":[111]},{"name":"DesktopWallpaper","features":[111]},{"name":"DestinationList","features":[111]},{"name":"DoEnvironmentSubstA","features":[111]},{"name":"DoEnvironmentSubstW","features":[111]},{"name":"DocPropShellExtension","features":[111]},{"name":"DragAcceptFiles","features":[3,111]},{"name":"DragFinish","features":[111]},{"name":"DragQueryFileA","features":[111]},{"name":"DragQueryFileW","features":[111]},{"name":"DragQueryPoint","features":[3,111]},{"name":"DriveSizeCategorizer","features":[111]},{"name":"DriveType","features":[111]},{"name":"DriveTypeCategorizer","features":[111]},{"name":"DuplicateIcon","features":[3,111,52]},{"name":"EBF_NODROPTARGET","features":[111]},{"name":"EBF_NONE","features":[111]},{"name":"EBF_SELECTFROMDATAOBJECT","features":[111]},{"name":"EBO_ALWAYSNAVIGATE","features":[111]},{"name":"EBO_HTMLSHAREPOINTVIEW","features":[111]},{"name":"EBO_NAVIGATEONCE","features":[111]},{"name":"EBO_NOBORDER","features":[111]},{"name":"EBO_NONE","features":[111]},{"name":"EBO_NOPERSISTVIEWSTATE","features":[111]},{"name":"EBO_NOTRAVELLOG","features":[111]},{"name":"EBO_NOWRAPPERWINDOW","features":[111]},{"name":"EBO_SHOWFRAMES","features":[111]},{"name":"ECF_AUTOMENUICONS","features":[111]},{"name":"ECF_DEFAULT","features":[111]},{"name":"ECF_HASLUASHIELD","features":[111]},{"name":"ECF_HASSPLITBUTTON","features":[111]},{"name":"ECF_HASSUBCOMMANDS","features":[111]},{"name":"ECF_HIDELABEL","features":[111]},{"name":"ECF_ISDROPDOWN","features":[111]},{"name":"ECF_ISSEPARATOR","features":[111]},{"name":"ECF_SEPARATORAFTER","features":[111]},{"name":"ECF_SEPARATORBEFORE","features":[111]},{"name":"ECF_TOGGLEABLE","features":[111]},{"name":"ECHUIM_DESKTOP","features":[111]},{"name":"ECHUIM_IMMERSIVE","features":[111]},{"name":"ECHUIM_SYSTEM_LAUNCHER","features":[111]},{"name":"ECS_CHECKBOX","features":[111]},{"name":"ECS_CHECKED","features":[111]},{"name":"ECS_DISABLED","features":[111]},{"name":"ECS_ENABLED","features":[111]},{"name":"ECS_HIDDEN","features":[111]},{"name":"ECS_RADIOCHECK","features":[111]},{"name":"EC_HOST_UI_MODE","features":[111]},{"name":"EDGE_GESTURE_KIND","features":[111]},{"name":"EGK_KEYBOARD","features":[111]},{"name":"EGK_MOUSE","features":[111]},{"name":"EGK_TOUCH","features":[111]},{"name":"EPS_DEFAULT_OFF","features":[111]},{"name":"EPS_DEFAULT_ON","features":[111]},{"name":"EPS_DONTCARE","features":[111]},{"name":"EPS_FORCE","features":[111]},{"name":"EPS_INITIALSTATE","features":[111]},{"name":"EPS_STATEMASK","features":[111]},{"name":"EP_AdvQueryPane","features":[111]},{"name":"EP_Commands","features":[111]},{"name":"EP_Commands_Organize","features":[111]},{"name":"EP_Commands_View","features":[111]},{"name":"EP_DetailsPane","features":[111]},{"name":"EP_NavPane","features":[111]},{"name":"EP_PreviewPane","features":[111]},{"name":"EP_QueryPane","features":[111]},{"name":"EP_Ribbon","features":[111]},{"name":"EP_StatusBar","features":[111]},{"name":"EXECUTE_E_LAUNCH_APPLICATION","features":[111]},{"name":"EXPLORER_BROWSER_FILL_FLAGS","features":[111]},{"name":"EXPLORER_BROWSER_OPTIONS","features":[111]},{"name":"EXPPS_FILETYPES","features":[111]},{"name":"EXP_DARWIN_ID_SIG","features":[111]},{"name":"EXP_DARWIN_LINK","features":[111]},{"name":"EXP_PROPERTYSTORAGE","features":[111]},{"name":"EXP_PROPERTYSTORAGE_SIG","features":[111]},{"name":"EXP_SPECIAL_FOLDER","features":[111]},{"name":"EXP_SPECIAL_FOLDER_SIG","features":[111]},{"name":"EXP_SZ_ICON_SIG","features":[111]},{"name":"EXP_SZ_LINK","features":[111]},{"name":"EXP_SZ_LINK_SIG","features":[111]},{"name":"EXTRASEARCH","features":[111]},{"name":"E_ACTIVATIONDENIED_SHELLERROR","features":[111]},{"name":"E_ACTIVATIONDENIED_SHELLNOTREADY","features":[111]},{"name":"E_ACTIVATIONDENIED_SHELLRESTART","features":[111]},{"name":"E_ACTIVATIONDENIED_UNEXPECTED","features":[111]},{"name":"E_ACTIVATIONDENIED_USERCLOSE","features":[111]},{"name":"E_FILE_PLACEHOLDER_NOT_INITIALIZED","features":[111]},{"name":"E_FILE_PLACEHOLDER_SERVER_TIMED_OUT","features":[111]},{"name":"E_FILE_PLACEHOLDER_STORAGEPROVIDER_NOT_FOUND","features":[111]},{"name":"E_FILE_PLACEHOLDER_VERSION_MISMATCH","features":[111]},{"name":"E_FLAGS","features":[111]},{"name":"E_IMAGEFEED_CHANGEDISABLED","features":[111]},{"name":"E_NOTVALIDFORANIMATEDIMAGE","features":[111]},{"name":"E_PREVIEWHANDLER_CORRUPT","features":[111]},{"name":"E_PREVIEWHANDLER_DRM_FAIL","features":[111]},{"name":"E_PREVIEWHANDLER_NOAUTH","features":[111]},{"name":"E_PREVIEWHANDLER_NOTFOUND","features":[111]},{"name":"E_SHELL_EXTENSION_BLOCKED","features":[111]},{"name":"E_TILE_NOTIFICATIONS_PLATFORM_FAILURE","features":[111]},{"name":"E_USERTILE_CHANGEDISABLED","features":[111]},{"name":"E_USERTILE_FILESIZE","features":[111]},{"name":"E_USERTILE_LARGEORDYNAMIC","features":[111]},{"name":"E_USERTILE_UNSUPPORTEDFILETYPE","features":[111]},{"name":"E_USERTILE_VIDEOFRAMESIZE","features":[111]},{"name":"EnumerableObjectCollection","features":[111]},{"name":"ExecuteFolder","features":[111]},{"name":"ExecuteUnknown","features":[111]},{"name":"ExplorerBrowser","features":[111]},{"name":"ExtractAssociatedIconA","features":[3,111,52]},{"name":"ExtractAssociatedIconExA","features":[3,111,52]},{"name":"ExtractAssociatedIconExW","features":[3,111,52]},{"name":"ExtractAssociatedIconW","features":[3,111,52]},{"name":"ExtractIconA","features":[3,111,52]},{"name":"ExtractIconExA","features":[111,52]},{"name":"ExtractIconExW","features":[111,52]},{"name":"ExtractIconW","features":[3,111,52]},{"name":"ExtractIfNotCached","features":[111]},{"name":"FCIDM_BROWSERFIRST","features":[111]},{"name":"FCIDM_BROWSERLAST","features":[111]},{"name":"FCIDM_GLOBALFIRST","features":[111]},{"name":"FCIDM_GLOBALLAST","features":[111]},{"name":"FCIDM_MENU_EDIT","features":[111]},{"name":"FCIDM_MENU_EXPLORE","features":[111]},{"name":"FCIDM_MENU_FAVORITES","features":[111]},{"name":"FCIDM_MENU_FILE","features":[111]},{"name":"FCIDM_MENU_FIND","features":[111]},{"name":"FCIDM_MENU_HELP","features":[111]},{"name":"FCIDM_MENU_TOOLS","features":[111]},{"name":"FCIDM_MENU_TOOLS_SEP_GOTO","features":[111]},{"name":"FCIDM_MENU_VIEW","features":[111]},{"name":"FCIDM_MENU_VIEW_SEP_OPTIONS","features":[111]},{"name":"FCIDM_SHVIEWFIRST","features":[111]},{"name":"FCIDM_SHVIEWLAST","features":[111]},{"name":"FCIDM_STATUS","features":[111]},{"name":"FCIDM_TOOLBAR","features":[111]},{"name":"FCSM_CLSID","features":[111]},{"name":"FCSM_FLAGS","features":[111]},{"name":"FCSM_ICONFILE","features":[111]},{"name":"FCSM_INFOTIP","features":[111]},{"name":"FCSM_LOGO","features":[111]},{"name":"FCSM_VIEWID","features":[111]},{"name":"FCSM_WEBVIEWTEMPLATE","features":[111]},{"name":"FCS_FLAG_DRAGDROP","features":[111]},{"name":"FCS_FORCEWRITE","features":[111]},{"name":"FCS_READ","features":[111]},{"name":"FCT_ADDTOEND","features":[111]},{"name":"FCT_CONFIGABLE","features":[111]},{"name":"FCT_MERGE","features":[111]},{"name":"FCW_INTERNETBAR","features":[111]},{"name":"FCW_PROGRESS","features":[111]},{"name":"FCW_STATUS","features":[111]},{"name":"FCW_TOOLBAR","features":[111]},{"name":"FCW_TREE","features":[111]},{"name":"FDAP","features":[111]},{"name":"FDAP_BOTTOM","features":[111]},{"name":"FDAP_TOP","features":[111]},{"name":"FDEOR_ACCEPT","features":[111]},{"name":"FDEOR_DEFAULT","features":[111]},{"name":"FDEOR_REFUSE","features":[111]},{"name":"FDESVR_ACCEPT","features":[111]},{"name":"FDESVR_DEFAULT","features":[111]},{"name":"FDESVR_REFUSE","features":[111]},{"name":"FDE_OVERWRITE_RESPONSE","features":[111]},{"name":"FDE_SHAREVIOLATION_RESPONSE","features":[111]},{"name":"FDTF_LONGDATE","features":[111]},{"name":"FDTF_LONGTIME","features":[111]},{"name":"FDTF_LTRDATE","features":[111]},{"name":"FDTF_NOAUTOREADINGORDER","features":[111]},{"name":"FDTF_RELATIVE","features":[111]},{"name":"FDTF_RTLDATE","features":[111]},{"name":"FDTF_SHORTDATE","features":[111]},{"name":"FDTF_SHORTTIME","features":[111]},{"name":"FD_ACCESSTIME","features":[111]},{"name":"FD_ATTRIBUTES","features":[111]},{"name":"FD_CLSID","features":[111]},{"name":"FD_CREATETIME","features":[111]},{"name":"FD_FILESIZE","features":[111]},{"name":"FD_FLAGS","features":[111]},{"name":"FD_LINKUI","features":[111]},{"name":"FD_PROGRESSUI","features":[111]},{"name":"FD_SIZEPOINT","features":[111]},{"name":"FD_UNICODE","features":[111]},{"name":"FD_WRITESTIME","features":[111]},{"name":"FEM_NAVIGATION","features":[111]},{"name":"FEM_VIEWRESULT","features":[111]},{"name":"FFFP_EXACTMATCH","features":[111]},{"name":"FFFP_MODE","features":[111]},{"name":"FFFP_NEARESTPARENTMATCH","features":[111]},{"name":"FILEDESCRIPTORA","features":[3,111]},{"name":"FILEDESCRIPTORW","features":[3,111]},{"name":"FILEGROUPDESCRIPTORA","features":[3,111]},{"name":"FILEGROUPDESCRIPTORW","features":[3,111]},{"name":"FILEOPENDIALOGOPTIONS","features":[111]},{"name":"FILEOPERATION_FLAGS","features":[111]},{"name":"FILETYPEATTRIBUTEFLAGS","features":[111]},{"name":"FILE_ATTRIBUTES_ARRAY","features":[111]},{"name":"FILE_OPERATION_FLAGS2","features":[111]},{"name":"FILE_USAGE_TYPE","features":[111]},{"name":"FLVM_CONTENT","features":[111]},{"name":"FLVM_DETAILS","features":[111]},{"name":"FLVM_FIRST","features":[111]},{"name":"FLVM_ICONS","features":[111]},{"name":"FLVM_LAST","features":[111]},{"name":"FLVM_LIST","features":[111]},{"name":"FLVM_TILES","features":[111]},{"name":"FLVM_UNSPECIFIED","features":[111]},{"name":"FLYOUT_PLACEMENT","features":[111]},{"name":"FMTID_Briefcase","features":[111]},{"name":"FMTID_CustomImageProperties","features":[111]},{"name":"FMTID_DRM","features":[111]},{"name":"FMTID_Displaced","features":[111]},{"name":"FMTID_ImageProperties","features":[111]},{"name":"FMTID_InternetSite","features":[111]},{"name":"FMTID_Intshcut","features":[111]},{"name":"FMTID_LibraryProperties","features":[111]},{"name":"FMTID_MUSIC","features":[111]},{"name":"FMTID_Misc","features":[111]},{"name":"FMTID_Query","features":[111]},{"name":"FMTID_ShellDetails","features":[111]},{"name":"FMTID_Storage","features":[111]},{"name":"FMTID_Volume","features":[111]},{"name":"FMTID_WebView","features":[111]},{"name":"FOF2_MERGEFOLDERSONCOLLISION","features":[111]},{"name":"FOF2_NONE","features":[111]},{"name":"FOFX_ADDUNDORECORD","features":[111]},{"name":"FOFX_COPYASDOWNLOAD","features":[111]},{"name":"FOFX_DONTDISPLAYDESTPATH","features":[111]},{"name":"FOFX_DONTDISPLAYLOCATIONS","features":[111]},{"name":"FOFX_DONTDISPLAYSOURCEPATH","features":[111]},{"name":"FOFX_EARLYFAILURE","features":[111]},{"name":"FOFX_KEEPNEWERFILE","features":[111]},{"name":"FOFX_MOVEACLSACROSSVOLUMES","features":[111]},{"name":"FOFX_NOCOPYHOOKS","features":[111]},{"name":"FOFX_NOMINIMIZEBOX","features":[111]},{"name":"FOFX_NOSKIPJUNCTIONS","features":[111]},{"name":"FOFX_PREFERHARDLINK","features":[111]},{"name":"FOFX_PRESERVEFILEEXTENSIONS","features":[111]},{"name":"FOFX_RECYCLEONDELETE","features":[111]},{"name":"FOFX_REQUIREELEVATION","features":[111]},{"name":"FOFX_SHOWELEVATIONPROMPT","features":[111]},{"name":"FOF_ALLOWUNDO","features":[111]},{"name":"FOF_CONFIRMMOUSE","features":[111]},{"name":"FOF_FILESONLY","features":[111]},{"name":"FOF_MULTIDESTFILES","features":[111]},{"name":"FOF_NOCONFIRMATION","features":[111]},{"name":"FOF_NOCONFIRMMKDIR","features":[111]},{"name":"FOF_NOCOPYSECURITYATTRIBS","features":[111]},{"name":"FOF_NOERRORUI","features":[111]},{"name":"FOF_NORECURSEREPARSE","features":[111]},{"name":"FOF_NORECURSION","features":[111]},{"name":"FOF_NO_CONNECTED_ELEMENTS","features":[111]},{"name":"FOF_NO_UI","features":[111]},{"name":"FOF_RENAMEONCOLLISION","features":[111]},{"name":"FOF_SILENT","features":[111]},{"name":"FOF_SIMPLEPROGRESS","features":[111]},{"name":"FOF_WANTMAPPINGHANDLE","features":[111]},{"name":"FOF_WANTNUKEWARNING","features":[111]},{"name":"FOLDERFLAGS","features":[111]},{"name":"FOLDERID_AccountPictures","features":[111]},{"name":"FOLDERID_AddNewPrograms","features":[111]},{"name":"FOLDERID_AdminTools","features":[111]},{"name":"FOLDERID_AllAppMods","features":[111]},{"name":"FOLDERID_AppCaptures","features":[111]},{"name":"FOLDERID_AppDataDesktop","features":[111]},{"name":"FOLDERID_AppDataDocuments","features":[111]},{"name":"FOLDERID_AppDataFavorites","features":[111]},{"name":"FOLDERID_AppDataProgramData","features":[111]},{"name":"FOLDERID_AppUpdates","features":[111]},{"name":"FOLDERID_ApplicationShortcuts","features":[111]},{"name":"FOLDERID_AppsFolder","features":[111]},{"name":"FOLDERID_CDBurning","features":[111]},{"name":"FOLDERID_CameraRoll","features":[111]},{"name":"FOLDERID_CameraRollLibrary","features":[111]},{"name":"FOLDERID_ChangeRemovePrograms","features":[111]},{"name":"FOLDERID_CommonAdminTools","features":[111]},{"name":"FOLDERID_CommonOEMLinks","features":[111]},{"name":"FOLDERID_CommonPrograms","features":[111]},{"name":"FOLDERID_CommonStartMenu","features":[111]},{"name":"FOLDERID_CommonStartMenuPlaces","features":[111]},{"name":"FOLDERID_CommonStartup","features":[111]},{"name":"FOLDERID_CommonTemplates","features":[111]},{"name":"FOLDERID_ComputerFolder","features":[111]},{"name":"FOLDERID_ConflictFolder","features":[111]},{"name":"FOLDERID_ConnectionsFolder","features":[111]},{"name":"FOLDERID_Contacts","features":[111]},{"name":"FOLDERID_ControlPanelFolder","features":[111]},{"name":"FOLDERID_Cookies","features":[111]},{"name":"FOLDERID_CurrentAppMods","features":[111]},{"name":"FOLDERID_Desktop","features":[111]},{"name":"FOLDERID_DevelopmentFiles","features":[111]},{"name":"FOLDERID_Device","features":[111]},{"name":"FOLDERID_DeviceMetadataStore","features":[111]},{"name":"FOLDERID_Documents","features":[111]},{"name":"FOLDERID_DocumentsLibrary","features":[111]},{"name":"FOLDERID_Downloads","features":[111]},{"name":"FOLDERID_Favorites","features":[111]},{"name":"FOLDERID_Fonts","features":[111]},{"name":"FOLDERID_GameTasks","features":[111]},{"name":"FOLDERID_Games","features":[111]},{"name":"FOLDERID_History","features":[111]},{"name":"FOLDERID_HomeGroup","features":[111]},{"name":"FOLDERID_HomeGroupCurrentUser","features":[111]},{"name":"FOLDERID_ImplicitAppShortcuts","features":[111]},{"name":"FOLDERID_InternetCache","features":[111]},{"name":"FOLDERID_InternetFolder","features":[111]},{"name":"FOLDERID_Libraries","features":[111]},{"name":"FOLDERID_Links","features":[111]},{"name":"FOLDERID_LocalAppData","features":[111]},{"name":"FOLDERID_LocalAppDataLow","features":[111]},{"name":"FOLDERID_LocalDocuments","features":[111]},{"name":"FOLDERID_LocalDownloads","features":[111]},{"name":"FOLDERID_LocalMusic","features":[111]},{"name":"FOLDERID_LocalPictures","features":[111]},{"name":"FOLDERID_LocalStorage","features":[111]},{"name":"FOLDERID_LocalVideos","features":[111]},{"name":"FOLDERID_LocalizedResourcesDir","features":[111]},{"name":"FOLDERID_Music","features":[111]},{"name":"FOLDERID_MusicLibrary","features":[111]},{"name":"FOLDERID_NetHood","features":[111]},{"name":"FOLDERID_NetworkFolder","features":[111]},{"name":"FOLDERID_Objects3D","features":[111]},{"name":"FOLDERID_OneDrive","features":[111]},{"name":"FOLDERID_OriginalImages","features":[111]},{"name":"FOLDERID_PhotoAlbums","features":[111]},{"name":"FOLDERID_Pictures","features":[111]},{"name":"FOLDERID_PicturesLibrary","features":[111]},{"name":"FOLDERID_Playlists","features":[111]},{"name":"FOLDERID_PrintHood","features":[111]},{"name":"FOLDERID_PrintersFolder","features":[111]},{"name":"FOLDERID_Profile","features":[111]},{"name":"FOLDERID_ProgramData","features":[111]},{"name":"FOLDERID_ProgramFiles","features":[111]},{"name":"FOLDERID_ProgramFilesCommon","features":[111]},{"name":"FOLDERID_ProgramFilesCommonX64","features":[111]},{"name":"FOLDERID_ProgramFilesCommonX86","features":[111]},{"name":"FOLDERID_ProgramFilesX64","features":[111]},{"name":"FOLDERID_ProgramFilesX86","features":[111]},{"name":"FOLDERID_Programs","features":[111]},{"name":"FOLDERID_Public","features":[111]},{"name":"FOLDERID_PublicDesktop","features":[111]},{"name":"FOLDERID_PublicDocuments","features":[111]},{"name":"FOLDERID_PublicDownloads","features":[111]},{"name":"FOLDERID_PublicGameTasks","features":[111]},{"name":"FOLDERID_PublicLibraries","features":[111]},{"name":"FOLDERID_PublicMusic","features":[111]},{"name":"FOLDERID_PublicPictures","features":[111]},{"name":"FOLDERID_PublicRingtones","features":[111]},{"name":"FOLDERID_PublicUserTiles","features":[111]},{"name":"FOLDERID_PublicVideos","features":[111]},{"name":"FOLDERID_QuickLaunch","features":[111]},{"name":"FOLDERID_Recent","features":[111]},{"name":"FOLDERID_RecordedCalls","features":[111]},{"name":"FOLDERID_RecordedTVLibrary","features":[111]},{"name":"FOLDERID_RecycleBinFolder","features":[111]},{"name":"FOLDERID_ResourceDir","features":[111]},{"name":"FOLDERID_RetailDemo","features":[111]},{"name":"FOLDERID_Ringtones","features":[111]},{"name":"FOLDERID_RoamedTileImages","features":[111]},{"name":"FOLDERID_RoamingAppData","features":[111]},{"name":"FOLDERID_RoamingTiles","features":[111]},{"name":"FOLDERID_SEARCH_CSC","features":[111]},{"name":"FOLDERID_SEARCH_MAPI","features":[111]},{"name":"FOLDERID_SampleMusic","features":[111]},{"name":"FOLDERID_SamplePictures","features":[111]},{"name":"FOLDERID_SamplePlaylists","features":[111]},{"name":"FOLDERID_SampleVideos","features":[111]},{"name":"FOLDERID_SavedGames","features":[111]},{"name":"FOLDERID_SavedPictures","features":[111]},{"name":"FOLDERID_SavedPicturesLibrary","features":[111]},{"name":"FOLDERID_SavedSearches","features":[111]},{"name":"FOLDERID_Screenshots","features":[111]},{"name":"FOLDERID_SearchHistory","features":[111]},{"name":"FOLDERID_SearchHome","features":[111]},{"name":"FOLDERID_SearchTemplates","features":[111]},{"name":"FOLDERID_SendTo","features":[111]},{"name":"FOLDERID_SidebarDefaultParts","features":[111]},{"name":"FOLDERID_SidebarParts","features":[111]},{"name":"FOLDERID_SkyDrive","features":[111]},{"name":"FOLDERID_SkyDriveCameraRoll","features":[111]},{"name":"FOLDERID_SkyDriveDocuments","features":[111]},{"name":"FOLDERID_SkyDriveMusic","features":[111]},{"name":"FOLDERID_SkyDrivePictures","features":[111]},{"name":"FOLDERID_StartMenu","features":[111]},{"name":"FOLDERID_StartMenuAllPrograms","features":[111]},{"name":"FOLDERID_Startup","features":[111]},{"name":"FOLDERID_SyncManagerFolder","features":[111]},{"name":"FOLDERID_SyncResultsFolder","features":[111]},{"name":"FOLDERID_SyncSetupFolder","features":[111]},{"name":"FOLDERID_System","features":[111]},{"name":"FOLDERID_SystemX86","features":[111]},{"name":"FOLDERID_Templates","features":[111]},{"name":"FOLDERID_UserPinned","features":[111]},{"name":"FOLDERID_UserProfiles","features":[111]},{"name":"FOLDERID_UserProgramFiles","features":[111]},{"name":"FOLDERID_UserProgramFilesCommon","features":[111]},{"name":"FOLDERID_UsersFiles","features":[111]},{"name":"FOLDERID_UsersLibraries","features":[111]},{"name":"FOLDERID_Videos","features":[111]},{"name":"FOLDERID_VideosLibrary","features":[111]},{"name":"FOLDERID_Windows","features":[111]},{"name":"FOLDERLOGICALVIEWMODE","features":[111]},{"name":"FOLDERSETDATA","features":[111]},{"name":"FOLDERSETTINGS","features":[111]},{"name":"FOLDERTYPEID_AccountPictures","features":[111]},{"name":"FOLDERTYPEID_Communications","features":[111]},{"name":"FOLDERTYPEID_CompressedFolder","features":[111]},{"name":"FOLDERTYPEID_Contacts","features":[111]},{"name":"FOLDERTYPEID_ControlPanelCategory","features":[111]},{"name":"FOLDERTYPEID_ControlPanelClassic","features":[111]},{"name":"FOLDERTYPEID_Documents","features":[111]},{"name":"FOLDERTYPEID_Downloads","features":[111]},{"name":"FOLDERTYPEID_Games","features":[111]},{"name":"FOLDERTYPEID_Generic","features":[111]},{"name":"FOLDERTYPEID_GenericLibrary","features":[111]},{"name":"FOLDERTYPEID_GenericSearchResults","features":[111]},{"name":"FOLDERTYPEID_Invalid","features":[111]},{"name":"FOLDERTYPEID_Music","features":[111]},{"name":"FOLDERTYPEID_NetworkExplorer","features":[111]},{"name":"FOLDERTYPEID_OpenSearch","features":[111]},{"name":"FOLDERTYPEID_OtherUsers","features":[111]},{"name":"FOLDERTYPEID_Pictures","features":[111]},{"name":"FOLDERTYPEID_Printers","features":[111]},{"name":"FOLDERTYPEID_PublishedItems","features":[111]},{"name":"FOLDERTYPEID_RecordedTV","features":[111]},{"name":"FOLDERTYPEID_RecycleBin","features":[111]},{"name":"FOLDERTYPEID_SavedGames","features":[111]},{"name":"FOLDERTYPEID_SearchConnector","features":[111]},{"name":"FOLDERTYPEID_SearchHome","features":[111]},{"name":"FOLDERTYPEID_Searches","features":[111]},{"name":"FOLDERTYPEID_SoftwareExplorer","features":[111]},{"name":"FOLDERTYPEID_StartMenu","features":[111]},{"name":"FOLDERTYPEID_StorageProviderDocuments","features":[111]},{"name":"FOLDERTYPEID_StorageProviderGeneric","features":[111]},{"name":"FOLDERTYPEID_StorageProviderMusic","features":[111]},{"name":"FOLDERTYPEID_StorageProviderPictures","features":[111]},{"name":"FOLDERTYPEID_StorageProviderVideos","features":[111]},{"name":"FOLDERTYPEID_UserFiles","features":[111]},{"name":"FOLDERTYPEID_UsersLibraries","features":[111]},{"name":"FOLDERTYPEID_Videos","features":[111]},{"name":"FOLDERVIEWMODE","features":[111]},{"name":"FOLDERVIEWOPTIONS","features":[111]},{"name":"FOLDER_ENUM_MODE","features":[111]},{"name":"FOS_ALLNONSTORAGEITEMS","features":[111]},{"name":"FOS_ALLOWMULTISELECT","features":[111]},{"name":"FOS_CREATEPROMPT","features":[111]},{"name":"FOS_DEFAULTNOMINIMODE","features":[111]},{"name":"FOS_DONTADDTORECENT","features":[111]},{"name":"FOS_FILEMUSTEXIST","features":[111]},{"name":"FOS_FORCEFILESYSTEM","features":[111]},{"name":"FOS_FORCEPREVIEWPANEON","features":[111]},{"name":"FOS_FORCESHOWHIDDEN","features":[111]},{"name":"FOS_HIDEMRUPLACES","features":[111]},{"name":"FOS_HIDEPINNEDPLACES","features":[111]},{"name":"FOS_NOCHANGEDIR","features":[111]},{"name":"FOS_NODEREFERENCELINKS","features":[111]},{"name":"FOS_NOREADONLYRETURN","features":[111]},{"name":"FOS_NOTESTFILECREATE","features":[111]},{"name":"FOS_NOVALIDATE","features":[111]},{"name":"FOS_OKBUTTONNEEDSINTERACTION","features":[111]},{"name":"FOS_OVERWRITEPROMPT","features":[111]},{"name":"FOS_PATHMUSTEXIST","features":[111]},{"name":"FOS_PICKFOLDERS","features":[111]},{"name":"FOS_SHAREAWARE","features":[111]},{"name":"FOS_STRICTFILETYPES","features":[111]},{"name":"FOS_SUPPORTSTREAMABLEITEMS","features":[111]},{"name":"FO_COPY","features":[111]},{"name":"FO_DELETE","features":[111]},{"name":"FO_MOVE","features":[111]},{"name":"FO_RENAME","features":[111]},{"name":"FP_ABOVE","features":[111]},{"name":"FP_BELOW","features":[111]},{"name":"FP_DEFAULT","features":[111]},{"name":"FP_LEFT","features":[111]},{"name":"FP_RIGHT","features":[111]},{"name":"FSCopyHandler","features":[111]},{"name":"FTA_AlwaysUnsafe","features":[111]},{"name":"FTA_AlwaysUseDirectInvoke","features":[111]},{"name":"FTA_Exclude","features":[111]},{"name":"FTA_HasExtension","features":[111]},{"name":"FTA_NoDDE","features":[111]},{"name":"FTA_NoEdit","features":[111]},{"name":"FTA_NoEditDesc","features":[111]},{"name":"FTA_NoEditDflt","features":[111]},{"name":"FTA_NoEditIcon","features":[111]},{"name":"FTA_NoEditMIME","features":[111]},{"name":"FTA_NoEditVerb","features":[111]},{"name":"FTA_NoEditVerbCmd","features":[111]},{"name":"FTA_NoEditVerbExe","features":[111]},{"name":"FTA_NoNewVerb","features":[111]},{"name":"FTA_NoRecentDocs","features":[111]},{"name":"FTA_NoRemove","features":[111]},{"name":"FTA_NoRemoveVerb","features":[111]},{"name":"FTA_None","features":[111]},{"name":"FTA_OpenIsSafe","features":[111]},{"name":"FTA_SafeForElevation","features":[111]},{"name":"FTA_Show","features":[111]},{"name":"FUT_EDITING","features":[111]},{"name":"FUT_GENERIC","features":[111]},{"name":"FUT_PLAYING","features":[111]},{"name":"FVM_AUTO","features":[111]},{"name":"FVM_CONTENT","features":[111]},{"name":"FVM_DETAILS","features":[111]},{"name":"FVM_FIRST","features":[111]},{"name":"FVM_ICON","features":[111]},{"name":"FVM_LAST","features":[111]},{"name":"FVM_LIST","features":[111]},{"name":"FVM_SMALLICON","features":[111]},{"name":"FVM_THUMBNAIL","features":[111]},{"name":"FVM_THUMBSTRIP","features":[111]},{"name":"FVM_TILE","features":[111]},{"name":"FVO_CUSTOMORDERING","features":[111]},{"name":"FVO_CUSTOMPOSITION","features":[111]},{"name":"FVO_DEFAULT","features":[111]},{"name":"FVO_NOANIMATIONS","features":[111]},{"name":"FVO_NOSCROLLTIPS","features":[111]},{"name":"FVO_SUPPORTHYPERLINKS","features":[111]},{"name":"FVO_VISTALAYOUT","features":[111]},{"name":"FVSIF_CANVIEWIT","features":[111]},{"name":"FVSIF_NEWFAILED","features":[111]},{"name":"FVSIF_NEWFILE","features":[111]},{"name":"FVSIF_PINNED","features":[111]},{"name":"FVSIF_RECT","features":[111]},{"name":"FVST_EMPTYTEXT","features":[111]},{"name":"FVTEXTTYPE","features":[111]},{"name":"FWF_ABBREVIATEDNAMES","features":[111]},{"name":"FWF_ALIGNLEFT","features":[111]},{"name":"FWF_ALLOWRTLREADING","features":[111]},{"name":"FWF_AUTOARRANGE","features":[111]},{"name":"FWF_AUTOCHECKSELECT","features":[111]},{"name":"FWF_BESTFITWINDOW","features":[111]},{"name":"FWF_CHECKSELECT","features":[111]},{"name":"FWF_DESKTOP","features":[111]},{"name":"FWF_EXTENDEDTILES","features":[111]},{"name":"FWF_FULLROWSELECT","features":[111]},{"name":"FWF_HIDEFILENAMES","features":[111]},{"name":"FWF_NOBROWSERVIEWSTATE","features":[111]},{"name":"FWF_NOCLIENTEDGE","features":[111]},{"name":"FWF_NOCOLUMNHEADER","features":[111]},{"name":"FWF_NOENUMREFRESH","features":[111]},{"name":"FWF_NOFILTERS","features":[111]},{"name":"FWF_NOGROUPING","features":[111]},{"name":"FWF_NOHEADERINALLVIEWS","features":[111]},{"name":"FWF_NOICONS","features":[111]},{"name":"FWF_NONE","features":[111]},{"name":"FWF_NOSCROLL","features":[111]},{"name":"FWF_NOSUBFOLDERS","features":[111]},{"name":"FWF_NOVISIBLE","features":[111]},{"name":"FWF_NOWEBVIEW","features":[111]},{"name":"FWF_OWNERDATA","features":[111]},{"name":"FWF_SHOWSELALWAYS","features":[111]},{"name":"FWF_SINGLECLICKACTIVATE","features":[111]},{"name":"FWF_SINGLESEL","features":[111]},{"name":"FWF_SNAPTOGRID","features":[111]},{"name":"FWF_SUBSETGROUPS","features":[111]},{"name":"FWF_TRANSPARENT","features":[111]},{"name":"FWF_TRICHECKSELECT","features":[111]},{"name":"FWF_USESEARCHFOLDER","features":[111]},{"name":"FileIconInit","features":[3,111]},{"name":"FileOpenDialog","features":[111]},{"name":"FileOperation","features":[111]},{"name":"FileSaveDialog","features":[111]},{"name":"FileSearchBand","features":[111]},{"name":"FindExecutableA","features":[3,111]},{"name":"FindExecutableW","features":[3,111]},{"name":"Folder","features":[111]},{"name":"Folder2","features":[111]},{"name":"Folder3","features":[111]},{"name":"FolderItem","features":[111]},{"name":"FolderItem2","features":[111]},{"name":"FolderItemVerb","features":[111]},{"name":"FolderItemVerbs","features":[111]},{"name":"FolderItems","features":[111]},{"name":"FolderItems2","features":[111]},{"name":"FolderItems3","features":[111]},{"name":"FolderViewHost","features":[111]},{"name":"FrameworkInputPane","features":[111]},{"name":"FreeSpaceCategorizer","features":[111]},{"name":"GADOF_DIRTY","features":[111]},{"name":"GCS_HELPTEXT","features":[111]},{"name":"GCS_HELPTEXTA","features":[111]},{"name":"GCS_HELPTEXTW","features":[111]},{"name":"GCS_UNICODE","features":[111]},{"name":"GCS_VALIDATE","features":[111]},{"name":"GCS_VALIDATEA","features":[111]},{"name":"GCS_VALIDATEW","features":[111]},{"name":"GCS_VERB","features":[111]},{"name":"GCS_VERBA","features":[111]},{"name":"GCS_VERBICONW","features":[111]},{"name":"GCS_VERBW","features":[111]},{"name":"GCT_INVALID","features":[111]},{"name":"GCT_LFNCHAR","features":[111]},{"name":"GCT_SEPARATOR","features":[111]},{"name":"GCT_SHORTCHAR","features":[111]},{"name":"GCT_WILD","features":[111]},{"name":"GETPROPS_NONE","features":[111]},{"name":"GIL_ASYNC","features":[111]},{"name":"GIL_CHECKSHIELD","features":[111]},{"name":"GIL_DEFAULTICON","features":[111]},{"name":"GIL_DONTCACHE","features":[111]},{"name":"GIL_FORCENOSHIELD","features":[111]},{"name":"GIL_FORSHELL","features":[111]},{"name":"GIL_FORSHORTCUT","features":[111]},{"name":"GIL_NOTFILENAME","features":[111]},{"name":"GIL_OPENICON","features":[111]},{"name":"GIL_PERCLASS","features":[111]},{"name":"GIL_PERINSTANCE","features":[111]},{"name":"GIL_SHIELD","features":[111]},{"name":"GIL_SIMULATEDOC","features":[111]},{"name":"GLOBALCOUNTER_APPLICATION_DESTINATIONS","features":[111]},{"name":"GLOBALCOUNTER_APPROVEDSITES","features":[111]},{"name":"GLOBALCOUNTER_APPSFOLDER_FILETYPEASSOCIATION_COUNTER","features":[111]},{"name":"GLOBALCOUNTER_APP_ITEMS_STATE_STORE_CACHE","features":[111]},{"name":"GLOBALCOUNTER_ASSOCCHANGED","features":[111]},{"name":"GLOBALCOUNTER_BANNERS_DATAMODEL_CACHE_MACHINEWIDE","features":[111]},{"name":"GLOBALCOUNTER_BITBUCKETNUMDELETERS","features":[111]},{"name":"GLOBALCOUNTER_COMMONPLACES_LIST_CACHE","features":[111]},{"name":"GLOBALCOUNTER_FOLDERDEFINITION_CACHE","features":[111]},{"name":"GLOBALCOUNTER_FOLDERSETTINGSCHANGE","features":[111]},{"name":"GLOBALCOUNTER_IEONLY_SESSIONS","features":[111]},{"name":"GLOBALCOUNTER_IESESSIONS","features":[111]},{"name":"GLOBALCOUNTER_INTERNETTOOLBAR_LAYOUT","features":[111]},{"name":"GLOBALCOUNTER_MAXIMUMVALUE","features":[111]},{"name":"GLOBALCOUNTER_OVERLAYMANAGER","features":[111]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE","features":[111]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE_MACHINEWIDE","features":[111]},{"name":"GLOBALCOUNTER_QUERYASSOCIATIONS","features":[111]},{"name":"GLOBALCOUNTER_RATINGS","features":[111]},{"name":"GLOBALCOUNTER_RATINGS_STATECOUNTER","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEBINCORRUPTED","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEBINENUM","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_A","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_B","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_C","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_D","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_E","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_F","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_G","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_H","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_I","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_J","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_K","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_L","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_M","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_N","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_O","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_P","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Q","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_R","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_S","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_T","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_U","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_V","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_W","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_X","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Y","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Z","features":[111]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SHARES","features":[111]},{"name":"GLOBALCOUNTER_RESTRICTIONS","features":[111]},{"name":"GLOBALCOUNTER_SEARCHMANAGER","features":[111]},{"name":"GLOBALCOUNTER_SEARCHOPTIONS","features":[111]},{"name":"GLOBALCOUNTER_SETTINGSYNC_ENABLED","features":[111]},{"name":"GLOBALCOUNTER_SHELLSETTINGSCHANGED","features":[111]},{"name":"GLOBALCOUNTER_SYNC_ENGINE_INFORMATION_CACHE_MACHINEWIDE","features":[111]},{"name":"GLOBALCOUNTER_SYSTEMPIDLCHANGE","features":[111]},{"name":"GLOBALCOUNTER_USERINFOCHANGED","features":[111]},{"name":"GPFIDL_ALTNAME","features":[111]},{"name":"GPFIDL_DEFAULT","features":[111]},{"name":"GPFIDL_FLAGS","features":[111]},{"name":"GPFIDL_UNCPRINTER","features":[111]},{"name":"GenericCredentialProvider","features":[111]},{"name":"GetAcceptLanguagesA","features":[111]},{"name":"GetAcceptLanguagesW","features":[111]},{"name":"GetAllUsersProfileDirectoryA","features":[3,111]},{"name":"GetAllUsersProfileDirectoryW","features":[3,111]},{"name":"GetCurrentProcessExplicitAppUserModelID","features":[111]},{"name":"GetDefaultUserProfileDirectoryA","features":[3,111]},{"name":"GetDefaultUserProfileDirectoryW","features":[3,111]},{"name":"GetDpiForShellUIComponent","features":[111]},{"name":"GetFileNameFromBrowse","features":[3,111]},{"name":"GetMenuContextHelpId","features":[111,52]},{"name":"GetMenuPosFromID","features":[111,52]},{"name":"GetProfileType","features":[3,111]},{"name":"GetProfilesDirectoryA","features":[3,111]},{"name":"GetProfilesDirectoryW","features":[3,111]},{"name":"GetScaleFactorForDevice","features":[220]},{"name":"GetScaleFactorForMonitor","features":[14,220]},{"name":"GetUserProfileDirectoryA","features":[3,111]},{"name":"GetUserProfileDirectoryW","features":[3,111]},{"name":"GetWindowContextHelpId","features":[3,111]},{"name":"GetWindowSubclass","features":[3,111]},{"name":"HDROP","features":[111]},{"name":"HELPINFO","features":[3,111]},{"name":"HELPINFO_MENUITEM","features":[111]},{"name":"HELPINFO_WINDOW","features":[111]},{"name":"HELPWININFOA","features":[111]},{"name":"HELPWININFOW","features":[111]},{"name":"HELP_INFO_TYPE","features":[111]},{"name":"HGSC_DOCUMENTSLIBRARY","features":[111]},{"name":"HGSC_MUSICLIBRARY","features":[111]},{"name":"HGSC_NONE","features":[111]},{"name":"HGSC_PICTURESLIBRARY","features":[111]},{"name":"HGSC_PRINTERS","features":[111]},{"name":"HGSC_VIDEOSLIBRARY","features":[111]},{"name":"HLBWIF_DOCWNDMAXIMIZED","features":[111]},{"name":"HLBWIF_FLAGS","features":[111]},{"name":"HLBWIF_FRAMEWNDMAXIMIZED","features":[111]},{"name":"HLBWIF_HASDOCWNDINFO","features":[111]},{"name":"HLBWIF_HASFRAMEWNDINFO","features":[111]},{"name":"HLBWIF_HASWEBTOOLBARINFO","features":[111]},{"name":"HLBWIF_WEBTOOLBARHIDDEN","features":[111]},{"name":"HLBWINFO","features":[3,111]},{"name":"HLFNAMEF","features":[111]},{"name":"HLFNAMEF_DEFAULT","features":[111]},{"name":"HLFNAMEF_TRYCACHE","features":[111]},{"name":"HLFNAMEF_TRYFULLTARGET","features":[111]},{"name":"HLFNAMEF_TRYPRETTYTARGET","features":[111]},{"name":"HLFNAMEF_TRYWIN95SHORTCUT","features":[111]},{"name":"HLID_CURRENT","features":[111]},{"name":"HLID_INFO","features":[111]},{"name":"HLID_INVALID","features":[111]},{"name":"HLID_NEXT","features":[111]},{"name":"HLID_PREVIOUS","features":[111]},{"name":"HLID_STACKBOTTOM","features":[111]},{"name":"HLID_STACKTOP","features":[111]},{"name":"HLINKGETREF","features":[111]},{"name":"HLINKGETREF_ABSOLUTE","features":[111]},{"name":"HLINKGETREF_DEFAULT","features":[111]},{"name":"HLINKGETREF_RELATIVE","features":[111]},{"name":"HLINKMISC","features":[111]},{"name":"HLINKMISC_RELATIVE","features":[111]},{"name":"HLINKSETF","features":[111]},{"name":"HLINKSETF_LOCATION","features":[111]},{"name":"HLINKSETF_TARGET","features":[111]},{"name":"HLINKWHICHMK","features":[111]},{"name":"HLINKWHICHMK_BASE","features":[111]},{"name":"HLINKWHICHMK_CONTAINER","features":[111]},{"name":"HLINK_E_FIRST","features":[111]},{"name":"HLINK_S_DONTHIDE","features":[111]},{"name":"HLINK_S_FIRST","features":[111]},{"name":"HLITEM","features":[111]},{"name":"HLNF","features":[111]},{"name":"HLNF_ALLOW_AUTONAVIGATE","features":[111]},{"name":"HLNF_CALLERUNTRUSTED","features":[111]},{"name":"HLNF_CREATENOHISTORY","features":[111]},{"name":"HLNF_DISABLEWINDOWRESTRICTIONS","features":[111]},{"name":"HLNF_EXTERNALNAVIGATE","features":[111]},{"name":"HLNF_INTERNALJUMP","features":[111]},{"name":"HLNF_NAVIGATINGBACK","features":[111]},{"name":"HLNF_NAVIGATINGFORWARD","features":[111]},{"name":"HLNF_NAVIGATINGTOSTACKITEM","features":[111]},{"name":"HLNF_NEWWINDOWSMANAGED","features":[111]},{"name":"HLNF_OPENINNEWWINDOW","features":[111]},{"name":"HLNF_TRUSTEDFORACTIVEX","features":[111]},{"name":"HLNF_TRUSTFIRSTDOWNLOAD","features":[111]},{"name":"HLNF_UNTRUSTEDFORDOWNLOAD","features":[111]},{"name":"HLQF_INFO","features":[111]},{"name":"HLQF_ISCURRENT","features":[111]},{"name":"HLQF_ISVALID","features":[111]},{"name":"HLSHORTCUTF","features":[111]},{"name":"HLSHORTCUTF_DEFAULT","features":[111]},{"name":"HLSHORTCUTF_DONTACTUALLYCREATE","features":[111]},{"name":"HLSHORTCUTF_MAYUSEEXISTINGSHORTCUT","features":[111]},{"name":"HLSHORTCUTF_USEFILENAMEFROMFRIENDLYNAME","features":[111]},{"name":"HLSHORTCUTF_USEUNIQUEFILENAME","features":[111]},{"name":"HLSR","features":[111]},{"name":"HLSR_HISTORYFOLDER","features":[111]},{"name":"HLSR_HOME","features":[111]},{"name":"HLSR_SEARCHPAGE","features":[111]},{"name":"HLTBINFO","features":[3,111]},{"name":"HLTB_DOCKEDBOTTOM","features":[111]},{"name":"HLTB_DOCKEDLEFT","features":[111]},{"name":"HLTB_DOCKEDRIGHT","features":[111]},{"name":"HLTB_DOCKEDTOP","features":[111]},{"name":"HLTB_FLOATING","features":[111]},{"name":"HLTB_INFO","features":[111]},{"name":"HLTRANSLATEF","features":[111]},{"name":"HLTRANSLATEF_DEFAULT","features":[111]},{"name":"HLTRANSLATEF_DONTAPPLYDEFAULTPREFIX","features":[111]},{"name":"HMONITOR_UserFree","features":[14,111]},{"name":"HMONITOR_UserFree64","features":[14,111]},{"name":"HMONITOR_UserMarshal","features":[14,111]},{"name":"HMONITOR_UserMarshal64","features":[14,111]},{"name":"HMONITOR_UserSize","features":[14,111]},{"name":"HMONITOR_UserSize64","features":[14,111]},{"name":"HMONITOR_UserUnmarshal","features":[14,111]},{"name":"HMONITOR_UserUnmarshal64","features":[14,111]},{"name":"HOMEGROUPSHARINGCHOICES","features":[111]},{"name":"HOMEGROUP_SECURITY_GROUP","features":[111]},{"name":"HOMEGROUP_SECURITY_GROUP_MULTI","features":[111]},{"name":"HPSXA","features":[111]},{"name":"HashData","features":[111]},{"name":"HideInputPaneAnimationCoordinator","features":[111]},{"name":"HlinkClone","features":[111]},{"name":"HlinkCreateBrowseContext","features":[111]},{"name":"HlinkCreateExtensionServices","features":[3,111]},{"name":"HlinkCreateFromData","features":[111]},{"name":"HlinkCreateFromMoniker","features":[111]},{"name":"HlinkCreateFromString","features":[111]},{"name":"HlinkCreateShortcut","features":[111]},{"name":"HlinkCreateShortcutFromMoniker","features":[111]},{"name":"HlinkCreateShortcutFromString","features":[111]},{"name":"HlinkGetSpecialReference","features":[111]},{"name":"HlinkGetValueFromParams","features":[111]},{"name":"HlinkIsShortcut","features":[111]},{"name":"HlinkNavigate","features":[111]},{"name":"HlinkNavigateToStringReference","features":[111]},{"name":"HlinkOnNavigate","features":[111]},{"name":"HlinkOnRenameDocument","features":[111]},{"name":"HlinkParseDisplayName","features":[3,111]},{"name":"HlinkPreprocessMoniker","features":[111]},{"name":"HlinkQueryCreateFromData","features":[111]},{"name":"HlinkResolveMonikerForData","features":[43,111]},{"name":"HlinkResolveShortcut","features":[111]},{"name":"HlinkResolveShortcutToMoniker","features":[111]},{"name":"HlinkResolveShortcutToString","features":[111]},{"name":"HlinkResolveStringForData","features":[43,111]},{"name":"HlinkSetSpecialReference","features":[111]},{"name":"HlinkTranslateURL","features":[111]},{"name":"HlinkUpdateStackItem","features":[111]},{"name":"HomeGroup","features":[111]},{"name":"IACList","features":[111]},{"name":"IACList2","features":[111]},{"name":"IAccessibilityDockingService","features":[111]},{"name":"IAccessibilityDockingServiceCallback","features":[111]},{"name":"IAccessibleObject","features":[111]},{"name":"IActionProgress","features":[111]},{"name":"IActionProgressDialog","features":[111]},{"name":"IAppActivationUIInfo","features":[111]},{"name":"IAppPublisher","features":[111]},{"name":"IAppVisibility","features":[111]},{"name":"IAppVisibilityEvents","features":[111]},{"name":"IApplicationActivationManager","features":[111]},{"name":"IApplicationAssociationRegistration","features":[111]},{"name":"IApplicationAssociationRegistrationUI","features":[111]},{"name":"IApplicationDesignModeSettings","features":[111]},{"name":"IApplicationDesignModeSettings2","features":[111]},{"name":"IApplicationDestinations","features":[111]},{"name":"IApplicationDocumentLists","features":[111]},{"name":"IAssocHandler","features":[111]},{"name":"IAssocHandlerInvoker","features":[111]},{"name":"IAttachmentExecute","features":[111]},{"name":"IAutoComplete","features":[111]},{"name":"IAutoComplete2","features":[111]},{"name":"IAutoCompleteDropDown","features":[111]},{"name":"IBandHost","features":[111]},{"name":"IBandSite","features":[111]},{"name":"IBannerNotificationHandler","features":[111]},{"name":"IBanneredBar","features":[111]},{"name":"IBrowserFrameOptions","features":[111]},{"name":"IBrowserService","features":[111]},{"name":"IBrowserService2","features":[111]},{"name":"IBrowserService3","features":[111]},{"name":"IBrowserService4","features":[111]},{"name":"ICDBurn","features":[111]},{"name":"ICDBurnExt","features":[111]},{"name":"ICategorizer","features":[111]},{"name":"ICategoryProvider","features":[111]},{"name":"IColumnManager","features":[111]},{"name":"IColumnProvider","features":[111]},{"name":"ICommDlgBrowser","features":[111]},{"name":"ICommDlgBrowser2","features":[111]},{"name":"ICommDlgBrowser3","features":[111]},{"name":"IComputerInfoChangeNotify","features":[111]},{"name":"IConnectableCredentialProviderCredential","features":[111]},{"name":"IContactManagerInterop","features":[111]},{"name":"IContextMenu","features":[111]},{"name":"IContextMenu2","features":[111]},{"name":"IContextMenu3","features":[111]},{"name":"IContextMenuCB","features":[111]},{"name":"IContextMenuSite","features":[111]},{"name":"ICopyHookA","features":[111]},{"name":"ICopyHookW","features":[111]},{"name":"ICreateProcessInputs","features":[111]},{"name":"ICreatingProcess","features":[111]},{"name":"ICredentialProvider","features":[111]},{"name":"ICredentialProviderCredential","features":[111]},{"name":"ICredentialProviderCredential2","features":[111]},{"name":"ICredentialProviderCredentialEvents","features":[111]},{"name":"ICredentialProviderCredentialEvents2","features":[111]},{"name":"ICredentialProviderCredentialWithFieldOptions","features":[111]},{"name":"ICredentialProviderEvents","features":[111]},{"name":"ICredentialProviderFilter","features":[111]},{"name":"ICredentialProviderSetUserArray","features":[111]},{"name":"ICredentialProviderUser","features":[111]},{"name":"ICredentialProviderUserArray","features":[111]},{"name":"ICurrentItem","features":[111]},{"name":"ICurrentWorkingDirectory","features":[111]},{"name":"ICustomDestinationList","features":[111]},{"name":"IDC_OFFLINE_HAND","features":[111]},{"name":"IDC_PANTOOL_HAND_CLOSED","features":[111]},{"name":"IDC_PANTOOL_HAND_OPEN","features":[111]},{"name":"IDD_WIZEXTN_FIRST","features":[111]},{"name":"IDD_WIZEXTN_LAST","features":[111]},{"name":"IDO_SHGIOI_DEFAULT","features":[111]},{"name":"IDO_SHGIOI_LINK","features":[111]},{"name":"IDO_SHGIOI_SHARE","features":[111]},{"name":"IDO_SHGIOI_SLOWFILE","features":[111]},{"name":"IDS_DESCRIPTION","features":[111]},{"name":"ID_APP","features":[111]},{"name":"IDataObjectAsyncCapability","features":[111]},{"name":"IDataObjectProvider","features":[111]},{"name":"IDataTransferManagerInterop","features":[111]},{"name":"IDefaultExtractIconInit","features":[111]},{"name":"IDefaultFolderMenuInitialize","features":[111]},{"name":"IDelegateFolder","features":[111]},{"name":"IDelegateItem","features":[111]},{"name":"IDeskBand","features":[111]},{"name":"IDeskBand2","features":[111]},{"name":"IDeskBandInfo","features":[111]},{"name":"IDeskBar","features":[111]},{"name":"IDeskBarClient","features":[111]},{"name":"IDesktopGadget","features":[111]},{"name":"IDesktopWallpaper","features":[111]},{"name":"IDestinationStreamFactory","features":[111]},{"name":"IDisplayItem","features":[111]},{"name":"IDocViewSite","features":[111]},{"name":"IDockingWindow","features":[111]},{"name":"IDockingWindowFrame","features":[111]},{"name":"IDockingWindowSite","features":[111]},{"name":"IDragSourceHelper","features":[111]},{"name":"IDragSourceHelper2","features":[111]},{"name":"IDropTargetHelper","features":[111]},{"name":"IDynamicHWHandler","features":[111]},{"name":"IEIFLAG_ASPECT","features":[111]},{"name":"IEIFLAG_ASYNC","features":[111]},{"name":"IEIFLAG_CACHE","features":[111]},{"name":"IEIFLAG_GLEAM","features":[111]},{"name":"IEIFLAG_NOBORDER","features":[111]},{"name":"IEIFLAG_NOSTAMP","features":[111]},{"name":"IEIFLAG_OFFLINE","features":[111]},{"name":"IEIFLAG_ORIGSIZE","features":[111]},{"name":"IEIFLAG_QUALITY","features":[111]},{"name":"IEIFLAG_REFRESH","features":[111]},{"name":"IEIFLAG_SCREEN","features":[111]},{"name":"IEIT_PRIORITY_NORMAL","features":[111]},{"name":"IEI_PRIORITY_MAX","features":[111]},{"name":"IEI_PRIORITY_MIN","features":[111]},{"name":"IENamespaceTreeControl","features":[111]},{"name":"IEPDNFLAGS","features":[111]},{"name":"IEPDN_BINDINGUI","features":[111]},{"name":"IESHORTCUTFLAGS","features":[111]},{"name":"IESHORTCUT_BACKGROUNDTAB","features":[111]},{"name":"IESHORTCUT_FORCENAVIGATE","features":[111]},{"name":"IESHORTCUT_NEWBROWSER","features":[111]},{"name":"IESHORTCUT_OPENNEWTAB","features":[111]},{"name":"IEnumACString","features":[111]},{"name":"IEnumAssocHandlers","features":[111]},{"name":"IEnumExplorerCommand","features":[111]},{"name":"IEnumExtraSearch","features":[111]},{"name":"IEnumFullIDList","features":[111]},{"name":"IEnumHLITEM","features":[111]},{"name":"IEnumIDList","features":[111]},{"name":"IEnumObjects","features":[111]},{"name":"IEnumPublishedApps","features":[111]},{"name":"IEnumReadyCallback","features":[111]},{"name":"IEnumResources","features":[111]},{"name":"IEnumShellItems","features":[111]},{"name":"IEnumSyncMgrConflict","features":[111]},{"name":"IEnumSyncMgrEvents","features":[111]},{"name":"IEnumSyncMgrSyncItems","features":[111]},{"name":"IEnumTravelLogEntry","features":[111]},{"name":"IEnumerableView","features":[111]},{"name":"IExecuteCommand","features":[111]},{"name":"IExecuteCommandApplicationHostEnvironment","features":[111]},{"name":"IExecuteCommandHost","features":[111]},{"name":"IExpDispSupport","features":[111]},{"name":"IExpDispSupportXP","features":[111]},{"name":"IExplorerBrowser","features":[111]},{"name":"IExplorerBrowserEvents","features":[111]},{"name":"IExplorerCommand","features":[111]},{"name":"IExplorerCommandProvider","features":[111]},{"name":"IExplorerCommandState","features":[111]},{"name":"IExplorerPaneVisibility","features":[111]},{"name":"IExtensionServices","features":[111]},{"name":"IExtractIconA","features":[111]},{"name":"IExtractIconW","features":[111]},{"name":"IExtractImage","features":[111]},{"name":"IExtractImage2","features":[111]},{"name":"IFileDialog","features":[111]},{"name":"IFileDialog2","features":[111]},{"name":"IFileDialogControlEvents","features":[111]},{"name":"IFileDialogCustomize","features":[111]},{"name":"IFileDialogEvents","features":[111]},{"name":"IFileIsInUse","features":[111]},{"name":"IFileOpenDialog","features":[111]},{"name":"IFileOperation","features":[111]},{"name":"IFileOperation2","features":[111]},{"name":"IFileOperationProgressSink","features":[111]},{"name":"IFileSaveDialog","features":[111]},{"name":"IFileSearchBand","features":[111]},{"name":"IFileSyncMergeHandler","features":[111]},{"name":"IFileSystemBindData","features":[111]},{"name":"IFileSystemBindData2","features":[111]},{"name":"IFolderBandPriv","features":[111]},{"name":"IFolderFilter","features":[111]},{"name":"IFolderFilterSite","features":[111]},{"name":"IFolderView","features":[111]},{"name":"IFolderView2","features":[111]},{"name":"IFolderViewHost","features":[111]},{"name":"IFolderViewOC","features":[111]},{"name":"IFolderViewOptions","features":[111]},{"name":"IFolderViewSettings","features":[111]},{"name":"IFrameworkInputPane","features":[111]},{"name":"IFrameworkInputPaneHandler","features":[111]},{"name":"IGetServiceIds","features":[111]},{"name":"IHWEventHandler","features":[111]},{"name":"IHWEventHandler2","features":[111]},{"name":"IHandlerActivationHost","features":[111]},{"name":"IHandlerInfo","features":[111]},{"name":"IHandlerInfo2","features":[111]},{"name":"IHlink","features":[111]},{"name":"IHlinkBrowseContext","features":[111]},{"name":"IHlinkFrame","features":[111]},{"name":"IHlinkSite","features":[111]},{"name":"IHlinkTarget","features":[111]},{"name":"IHomeGroup","features":[111]},{"name":"IIOCancelInformation","features":[111]},{"name":"IIdentityName","features":[111]},{"name":"IImageRecompress","features":[111]},{"name":"IInitializeCommand","features":[111]},{"name":"IInitializeNetworkFolder","features":[111]},{"name":"IInitializeObject","features":[111]},{"name":"IInitializeWithBindCtx","features":[111]},{"name":"IInitializeWithItem","features":[111]},{"name":"IInitializeWithPropertyStore","features":[111]},{"name":"IInitializeWithWindow","features":[111]},{"name":"IInputObject","features":[111]},{"name":"IInputObject2","features":[111]},{"name":"IInputObjectSite","features":[111]},{"name":"IInputPaneAnimationCoordinator","features":[111]},{"name":"IInputPanelConfiguration","features":[111]},{"name":"IInputPanelInvocationConfiguration","features":[111]},{"name":"IInsertItem","features":[111]},{"name":"IItemNameLimits","features":[111]},{"name":"IKnownFolder","features":[111]},{"name":"IKnownFolderManager","features":[111]},{"name":"ILAppendID","features":[3,220]},{"name":"ILClone","features":[220]},{"name":"ILCloneFirst","features":[220]},{"name":"ILCombine","features":[220]},{"name":"ILCreateFromPathA","features":[220]},{"name":"ILCreateFromPathW","features":[220]},{"name":"ILFindChild","features":[220]},{"name":"ILFindLastID","features":[220]},{"name":"ILFree","features":[220]},{"name":"ILGetNext","features":[220]},{"name":"ILGetSize","features":[220]},{"name":"ILIsEqual","features":[3,220]},{"name":"ILIsParent","features":[3,220]},{"name":"ILLoadFromStreamEx","features":[220]},{"name":"ILMM_IE4","features":[111]},{"name":"ILRemoveLastID","features":[3,220]},{"name":"ILSaveToStream","features":[220]},{"name":"ILaunchSourceAppUserModelId","features":[111]},{"name":"ILaunchSourceViewSizePreference","features":[111]},{"name":"ILaunchTargetMonitor","features":[111]},{"name":"ILaunchTargetViewSizePreference","features":[111]},{"name":"ILaunchUIContext","features":[111]},{"name":"ILaunchUIContextProvider","features":[111]},{"name":"IMM_ACC_DOCKING_E_DOCKOCCUPIED","features":[111]},{"name":"IMM_ACC_DOCKING_E_INSUFFICIENTHEIGHT","features":[111]},{"name":"IMSC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[111]},{"name":"IMenuBand","features":[111]},{"name":"IMenuPopup","features":[111]},{"name":"IModalWindow","features":[111]},{"name":"INTERNET_MAX_PATH_LENGTH","features":[111]},{"name":"INTERNET_MAX_SCHEME_LENGTH","features":[111]},{"name":"INameSpaceTreeAccessible","features":[111]},{"name":"INameSpaceTreeControl","features":[111]},{"name":"INameSpaceTreeControl2","features":[111]},{"name":"INameSpaceTreeControlCustomDraw","features":[111]},{"name":"INameSpaceTreeControlDropHandler","features":[111]},{"name":"INameSpaceTreeControlEvents","features":[111]},{"name":"INameSpaceTreeControlFolderCapabilities","features":[111]},{"name":"INamedPropertyBag","features":[111]},{"name":"INamespaceWalk","features":[111]},{"name":"INamespaceWalkCB","features":[111]},{"name":"INamespaceWalkCB2","features":[111]},{"name":"INetworkFolderInternal","features":[111]},{"name":"INewMenuClient","features":[111]},{"name":"INewShortcutHookA","features":[111]},{"name":"INewShortcutHookW","features":[111]},{"name":"INewWDEvents","features":[111]},{"name":"INewWindowManager","features":[111]},{"name":"INotifyReplica","features":[111]},{"name":"IObjMgr","features":[111]},{"name":"IObjectProvider","features":[111]},{"name":"IObjectWithAppUserModelID","features":[111]},{"name":"IObjectWithBackReferences","features":[111]},{"name":"IObjectWithCancelEvent","features":[111]},{"name":"IObjectWithFolderEnumMode","features":[111]},{"name":"IObjectWithProgID","features":[111]},{"name":"IObjectWithSelection","features":[111]},{"name":"IOpenControlPanel","features":[111]},{"name":"IOpenSearchSource","features":[111]},{"name":"IOperationsProgressDialog","features":[111]},{"name":"IPackageDebugSettings","features":[111]},{"name":"IPackageDebugSettings2","features":[111]},{"name":"IPackageExecutionStateChangeNotification","features":[111]},{"name":"IParentAndItem","features":[111]},{"name":"IParseAndCreateItem","features":[111]},{"name":"IPersistFolder","features":[111]},{"name":"IPersistFolder2","features":[111]},{"name":"IPersistFolder3","features":[111]},{"name":"IPersistIDList","features":[111]},{"name":"IPreviewHandler","features":[111]},{"name":"IPreviewHandlerFrame","features":[111]},{"name":"IPreviewHandlerVisuals","features":[111]},{"name":"IPreviewItem","features":[111]},{"name":"IPreviousVersionsInfo","features":[111]},{"name":"IProfferService","features":[111]},{"name":"IProgressDialog","features":[111]},{"name":"IPropertyKeyStore","features":[111]},{"name":"IPublishedApp","features":[111]},{"name":"IPublishedApp2","features":[111]},{"name":"IPublishingWizard","features":[111]},{"name":"IQueryAssociations","features":[111]},{"name":"IQueryCancelAutoPlay","features":[111]},{"name":"IQueryCodePage","features":[111]},{"name":"IQueryContinue","features":[111]},{"name":"IQueryContinueWithStatus","features":[111]},{"name":"IQueryInfo","features":[111]},{"name":"IRTIR_TASK_FINISHED","features":[111]},{"name":"IRTIR_TASK_NOT_RUNNING","features":[111]},{"name":"IRTIR_TASK_PENDING","features":[111]},{"name":"IRTIR_TASK_RUNNING","features":[111]},{"name":"IRTIR_TASK_SUSPENDED","features":[111]},{"name":"IRegTreeItem","features":[111]},{"name":"IRelatedItem","features":[111]},{"name":"IRemoteComputer","features":[111]},{"name":"IResolveShellLink","features":[111]},{"name":"IResultsFolder","features":[111]},{"name":"IRunnableTask","features":[111]},{"name":"ISFBVIEWMODE_LARGEICONS","features":[111]},{"name":"ISFBVIEWMODE_LOGOS","features":[111]},{"name":"ISFBVIEWMODE_SMALLICONS","features":[111]},{"name":"ISFB_MASK_BKCOLOR","features":[111]},{"name":"ISFB_MASK_COLORS","features":[111]},{"name":"ISFB_MASK_IDLIST","features":[111]},{"name":"ISFB_MASK_SHELLFOLDER","features":[111]},{"name":"ISFB_MASK_STATE","features":[111]},{"name":"ISFB_MASK_VIEWMODE","features":[111]},{"name":"ISFB_STATE_ALLOWRENAME","features":[111]},{"name":"ISFB_STATE_BTNMINSIZE","features":[111]},{"name":"ISFB_STATE_CHANNELBAR","features":[111]},{"name":"ISFB_STATE_DEBOSSED","features":[111]},{"name":"ISFB_STATE_DEFAULT","features":[111]},{"name":"ISFB_STATE_FULLOPEN","features":[111]},{"name":"ISFB_STATE_NONAMESORT","features":[111]},{"name":"ISFB_STATE_NOSHOWTEXT","features":[111]},{"name":"ISFB_STATE_QLINKSMODE","features":[111]},{"name":"ISHCUTCMDID_COMMITHISTORY","features":[111]},{"name":"ISHCUTCMDID_DOWNLOADICON","features":[111]},{"name":"ISHCUTCMDID_INTSHORTCUTCREATE","features":[111]},{"name":"ISHCUTCMDID_SETUSERAWURL","features":[111]},{"name":"ISIOI_ICONFILE","features":[111]},{"name":"ISIOI_ICONINDEX","features":[111]},{"name":"IS_E_EXEC_FAILED","features":[111]},{"name":"IS_FULLSCREEN","features":[111]},{"name":"IS_NORMAL","features":[111]},{"name":"IS_SPLIT","features":[111]},{"name":"IScriptErrorList","features":[111]},{"name":"ISearchBoxInfo","features":[111]},{"name":"ISearchContext","features":[111]},{"name":"ISearchFolderItemFactory","features":[111]},{"name":"ISharedBitmap","features":[111]},{"name":"ISharingConfigurationManager","features":[111]},{"name":"IShellApp","features":[111]},{"name":"IShellBrowser","features":[111]},{"name":"IShellChangeNotify","features":[111]},{"name":"IShellDetails","features":[111]},{"name":"IShellDispatch","features":[111]},{"name":"IShellDispatch2","features":[111]},{"name":"IShellDispatch3","features":[111]},{"name":"IShellDispatch4","features":[111]},{"name":"IShellDispatch5","features":[111]},{"name":"IShellDispatch6","features":[111]},{"name":"IShellExtInit","features":[111]},{"name":"IShellFavoritesNameSpace","features":[111]},{"name":"IShellFolder","features":[111]},{"name":"IShellFolder2","features":[111]},{"name":"IShellFolderBand","features":[111]},{"name":"IShellFolderView","features":[111]},{"name":"IShellFolderViewCB","features":[111]},{"name":"IShellFolderViewDual","features":[111]},{"name":"IShellFolderViewDual2","features":[111]},{"name":"IShellFolderViewDual3","features":[111]},{"name":"IShellIcon","features":[111]},{"name":"IShellIconOverlay","features":[111]},{"name":"IShellIconOverlayIdentifier","features":[111]},{"name":"IShellIconOverlayManager","features":[111]},{"name":"IShellImageData","features":[111]},{"name":"IShellImageDataAbort","features":[111]},{"name":"IShellImageDataFactory","features":[111]},{"name":"IShellItem","features":[111]},{"name":"IShellItem2","features":[111]},{"name":"IShellItemArray","features":[111]},{"name":"IShellItemFilter","features":[111]},{"name":"IShellItemImageFactory","features":[111]},{"name":"IShellItemResources","features":[111]},{"name":"IShellLibrary","features":[111]},{"name":"IShellLinkA","features":[111]},{"name":"IShellLinkDataList","features":[111]},{"name":"IShellLinkDual","features":[111]},{"name":"IShellLinkDual2","features":[111]},{"name":"IShellLinkW","features":[111]},{"name":"IShellMenu","features":[111]},{"name":"IShellMenuCallback","features":[111]},{"name":"IShellNameSpace","features":[111]},{"name":"IShellPropSheetExt","features":[111]},{"name":"IShellRunDll","features":[111]},{"name":"IShellService","features":[111]},{"name":"IShellTaskScheduler","features":[111]},{"name":"IShellUIHelper","features":[111]},{"name":"IShellUIHelper2","features":[111]},{"name":"IShellUIHelper3","features":[111]},{"name":"IShellUIHelper4","features":[111]},{"name":"IShellUIHelper5","features":[111]},{"name":"IShellUIHelper6","features":[111]},{"name":"IShellUIHelper7","features":[111]},{"name":"IShellUIHelper8","features":[111]},{"name":"IShellUIHelper9","features":[111]},{"name":"IShellView","features":[111]},{"name":"IShellView2","features":[111]},{"name":"IShellView3","features":[111]},{"name":"IShellWindows","features":[111]},{"name":"ISortColumnArray","features":[111]},{"name":"IStartMenuPinnedList","features":[111]},{"name":"IStorageProviderBanners","features":[111]},{"name":"IStorageProviderCopyHook","features":[111]},{"name":"IStorageProviderHandler","features":[111]},{"name":"IStorageProviderPropertyHandler","features":[111]},{"name":"IStreamAsync","features":[111]},{"name":"IStreamUnbufferedInfo","features":[111]},{"name":"IStream_Copy","features":[111]},{"name":"IStream_Read","features":[111]},{"name":"IStream_ReadPidl","features":[220]},{"name":"IStream_ReadStr","features":[111]},{"name":"IStream_Reset","features":[111]},{"name":"IStream_Size","features":[111]},{"name":"IStream_Write","features":[111]},{"name":"IStream_WritePidl","features":[220]},{"name":"IStream_WriteStr","features":[111]},{"name":"ISuspensionDependencyManager","features":[111]},{"name":"ISyncMgrConflict","features":[111]},{"name":"ISyncMgrConflictFolder","features":[111]},{"name":"ISyncMgrConflictItems","features":[111]},{"name":"ISyncMgrConflictPresenter","features":[111]},{"name":"ISyncMgrConflictResolutionItems","features":[111]},{"name":"ISyncMgrConflictResolveInfo","features":[111]},{"name":"ISyncMgrConflictStore","features":[111]},{"name":"ISyncMgrControl","features":[111]},{"name":"ISyncMgrEnumItems","features":[111]},{"name":"ISyncMgrEvent","features":[111]},{"name":"ISyncMgrEventLinkUIOperation","features":[111]},{"name":"ISyncMgrEventStore","features":[111]},{"name":"ISyncMgrHandler","features":[111]},{"name":"ISyncMgrHandlerCollection","features":[111]},{"name":"ISyncMgrHandlerInfo","features":[111]},{"name":"ISyncMgrRegister","features":[111]},{"name":"ISyncMgrResolutionHandler","features":[111]},{"name":"ISyncMgrScheduleWizardUIOperation","features":[111]},{"name":"ISyncMgrSessionCreator","features":[111]},{"name":"ISyncMgrSyncCallback","features":[111]},{"name":"ISyncMgrSyncItem","features":[111]},{"name":"ISyncMgrSyncItemContainer","features":[111]},{"name":"ISyncMgrSyncItemInfo","features":[111]},{"name":"ISyncMgrSyncResult","features":[111]},{"name":"ISyncMgrSynchronize","features":[111]},{"name":"ISyncMgrSynchronizeCallback","features":[111]},{"name":"ISyncMgrSynchronizeInvoke","features":[111]},{"name":"ISyncMgrUIOperation","features":[111]},{"name":"ITEMSPACING","features":[111]},{"name":"ITSAT_DEFAULT_PRIORITY","features":[111]},{"name":"ITSAT_MAX_PRIORITY","features":[111]},{"name":"ITSAT_MIN_PRIORITY","features":[111]},{"name":"ITSSFLAG_COMPLETE_ON_DESTROY","features":[111]},{"name":"ITSSFLAG_FLAGS_MASK","features":[111]},{"name":"ITSSFLAG_KILL_ON_DESTROY","features":[111]},{"name":"ITSS_THREAD_TIMEOUT_NO_CHANGE","features":[111]},{"name":"ITaskbarList","features":[111]},{"name":"ITaskbarList2","features":[111]},{"name":"ITaskbarList3","features":[111]},{"name":"ITaskbarList4","features":[111]},{"name":"IThumbnailCache","features":[111]},{"name":"IThumbnailCachePrimer","features":[111]},{"name":"IThumbnailCapture","features":[111]},{"name":"IThumbnailHandlerFactory","features":[111]},{"name":"IThumbnailProvider","features":[111]},{"name":"IThumbnailSettings","features":[111]},{"name":"IThumbnailStreamCache","features":[111]},{"name":"ITrackShellMenu","features":[111]},{"name":"ITranscodeImage","features":[111]},{"name":"ITransferAdviseSink","features":[111]},{"name":"ITransferDestination","features":[111]},{"name":"ITransferMediumItem","features":[111]},{"name":"ITransferSource","features":[111]},{"name":"ITravelEntry","features":[111]},{"name":"ITravelLog","features":[111]},{"name":"ITravelLogClient","features":[111]},{"name":"ITravelLogEntry","features":[111]},{"name":"ITravelLogStg","features":[111]},{"name":"ITrayDeskBand","features":[111]},{"name":"IURLSearchHook","features":[111]},{"name":"IURLSearchHook2","features":[111]},{"name":"IURL_INVOKECOMMAND_FLAGS","features":[111]},{"name":"IURL_INVOKECOMMAND_FL_ALLOW_UI","features":[111]},{"name":"IURL_INVOKECOMMAND_FL_ASYNCOK","features":[111]},{"name":"IURL_INVOKECOMMAND_FL_DDEWAIT","features":[111]},{"name":"IURL_INVOKECOMMAND_FL_LOG_USAGE","features":[111]},{"name":"IURL_INVOKECOMMAND_FL_USE_DEFAULT_VERB","features":[111]},{"name":"IURL_SETURL_FLAGS","features":[111]},{"name":"IURL_SETURL_FL_GUESS_PROTOCOL","features":[111]},{"name":"IURL_SETURL_FL_USE_DEFAULT_PROTOCOL","features":[111]},{"name":"IUniformResourceLocatorA","features":[111]},{"name":"IUniformResourceLocatorW","features":[111]},{"name":"IUnknown_AtomicRelease","features":[111]},{"name":"IUnknown_GetSite","features":[111]},{"name":"IUnknown_GetWindow","features":[3,111]},{"name":"IUnknown_QueryService","features":[111]},{"name":"IUnknown_Set","features":[111]},{"name":"IUnknown_SetSite","features":[111]},{"name":"IUpdateIDList","features":[111]},{"name":"IUseToBrowseItem","features":[111]},{"name":"IUserAccountChangeCallback","features":[111]},{"name":"IUserNotification","features":[111]},{"name":"IUserNotification2","features":[111]},{"name":"IUserNotificationCallback","features":[111]},{"name":"IViewStateIdentityItem","features":[111]},{"name":"IVirtualDesktopManager","features":[111]},{"name":"IVisualProperties","features":[111]},{"name":"IWebBrowser","features":[111]},{"name":"IWebBrowser2","features":[111]},{"name":"IWebBrowserApp","features":[111]},{"name":"IWebWizardExtension","features":[111]},{"name":"IWebWizardHost","features":[111]},{"name":"IWebWizardHost2","features":[111]},{"name":"IWizardExtension","features":[111]},{"name":"IWizardSite","features":[111]},{"name":"Identity_LocalUserProvider","features":[111]},{"name":"ImageProperties","features":[111]},{"name":"ImageRecompress","features":[111]},{"name":"ImageTranscode","features":[111]},{"name":"ImportPrivacySettings","features":[3,111]},{"name":"InitNetworkAddressControl","features":[3,111]},{"name":"InitPropVariantFromStrRet","features":[3,65,44,220]},{"name":"InitVariantFromStrRet","features":[3,43,44,220]},{"name":"InputPanelConfiguration","features":[111]},{"name":"InternetExplorer","features":[111]},{"name":"InternetExplorerMedium","features":[111]},{"name":"InternetPrintOrdering","features":[111]},{"name":"IntlStrEqWorkerA","features":[3,111]},{"name":"IntlStrEqWorkerW","features":[3,111]},{"name":"IsCharSpaceA","features":[3,111]},{"name":"IsCharSpaceW","features":[3,111]},{"name":"IsInternetESCEnabled","features":[3,111]},{"name":"IsLFNDriveA","features":[3,111]},{"name":"IsLFNDriveW","features":[3,111]},{"name":"IsNetDrive","features":[111]},{"name":"IsOS","features":[3,111]},{"name":"IsUserAnAdmin","features":[3,111]},{"name":"ItemCount_Property_GUID","features":[111]},{"name":"ItemIndex_Property_GUID","features":[111]},{"name":"KDC_FREQUENT","features":[111]},{"name":"KDC_RECENT","features":[111]},{"name":"KFDF_LOCAL_REDIRECT_ONLY","features":[111]},{"name":"KFDF_NO_REDIRECT_UI","features":[111]},{"name":"KFDF_PRECREATE","features":[111]},{"name":"KFDF_PUBLISHEXPANDEDPATH","features":[111]},{"name":"KFDF_ROAMABLE","features":[111]},{"name":"KFDF_STREAM","features":[111]},{"name":"KF_CATEGORY","features":[111]},{"name":"KF_CATEGORY_COMMON","features":[111]},{"name":"KF_CATEGORY_FIXED","features":[111]},{"name":"KF_CATEGORY_PERUSER","features":[111]},{"name":"KF_CATEGORY_VIRTUAL","features":[111]},{"name":"KF_FLAG_ALIAS_ONLY","features":[111]},{"name":"KF_FLAG_CREATE","features":[111]},{"name":"KF_FLAG_DEFAULT","features":[111]},{"name":"KF_FLAG_DEFAULT_PATH","features":[111]},{"name":"KF_FLAG_DONT_UNEXPAND","features":[111]},{"name":"KF_FLAG_DONT_VERIFY","features":[111]},{"name":"KF_FLAG_FORCE_APPCONTAINER_REDIRECTION","features":[111]},{"name":"KF_FLAG_FORCE_APP_DATA_REDIRECTION","features":[111]},{"name":"KF_FLAG_FORCE_PACKAGE_REDIRECTION","features":[111]},{"name":"KF_FLAG_INIT","features":[111]},{"name":"KF_FLAG_NOT_PARENT_RELATIVE","features":[111]},{"name":"KF_FLAG_NO_ALIAS","features":[111]},{"name":"KF_FLAG_NO_APPCONTAINER_REDIRECTION","features":[111]},{"name":"KF_FLAG_NO_PACKAGE_REDIRECTION","features":[111]},{"name":"KF_FLAG_RETURN_FILTER_REDIRECTION_TARGET","features":[111]},{"name":"KF_FLAG_SIMPLE_IDLIST","features":[111]},{"name":"KF_REDIRECTION_CAPABILITIES_ALLOW_ALL","features":[111]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_ALL","features":[111]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_PERMISSIONS","features":[111]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY","features":[111]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY_REDIRECTED","features":[111]},{"name":"KF_REDIRECTION_CAPABILITIES_REDIRECTABLE","features":[111]},{"name":"KF_REDIRECT_CHECK_ONLY","features":[111]},{"name":"KF_REDIRECT_COPY_CONTENTS","features":[111]},{"name":"KF_REDIRECT_COPY_SOURCE_DACL","features":[111]},{"name":"KF_REDIRECT_DEL_SOURCE_CONTENTS","features":[111]},{"name":"KF_REDIRECT_EXCLUDE_ALL_KNOWN_SUBFOLDERS","features":[111]},{"name":"KF_REDIRECT_OWNER_USER","features":[111]},{"name":"KF_REDIRECT_PIN","features":[111]},{"name":"KF_REDIRECT_SET_OWNER_EXPLICIT","features":[111]},{"name":"KF_REDIRECT_UNPIN","features":[111]},{"name":"KF_REDIRECT_USER_EXCLUSIVE","features":[111]},{"name":"KF_REDIRECT_WITH_UI","features":[111]},{"name":"KNOWNDESTCATEGORY","features":[111]},{"name":"KNOWNFOLDER_DEFINITION","features":[111]},{"name":"KNOWN_FOLDER_FLAG","features":[111]},{"name":"KnownFolderManager","features":[111]},{"name":"LFF_ALLITEMS","features":[111]},{"name":"LFF_FORCEFILESYSTEM","features":[111]},{"name":"LFF_STORAGEITEMS","features":[111]},{"name":"LIBRARYFOLDERFILTER","features":[111]},{"name":"LIBRARYMANAGEDIALOGOPTIONS","features":[111]},{"name":"LIBRARYOPTIONFLAGS","features":[111]},{"name":"LIBRARYSAVEFLAGS","features":[111]},{"name":"LIBRARY_E_NO_ACCESSIBLE_LOCATION","features":[111]},{"name":"LIBRARY_E_NO_SAVE_LOCATION","features":[111]},{"name":"LINK_E_DELETE","features":[111]},{"name":"LMD_ALLOWUNINDEXABLENETWORKLOCATIONS","features":[111]},{"name":"LMD_DEFAULT","features":[111]},{"name":"LOF_DEFAULT","features":[111]},{"name":"LOF_MASK_ALL","features":[111]},{"name":"LOF_PINNEDTONAVPANE","features":[111]},{"name":"LPFNDFMCALLBACK","features":[3,111]},{"name":"LPFNVIEWCALLBACK","features":[3,111]},{"name":"LSF_FAILIFTHERE","features":[111]},{"name":"LSF_MAKEUNIQUENAME","features":[111]},{"name":"LSF_OVERRIDEEXISTING","features":[111]},{"name":"LoadUserProfileA","features":[3,111]},{"name":"LoadUserProfileW","features":[3,111]},{"name":"LocalThumbnailCache","features":[111]},{"name":"MAV_APP_VISIBLE","features":[111]},{"name":"MAV_NO_APP_VISIBLE","features":[111]},{"name":"MAV_UNKNOWN","features":[111]},{"name":"MAXFILELEN","features":[111]},{"name":"MAX_COLUMN_DESC_LEN","features":[111]},{"name":"MAX_COLUMN_NAME_LEN","features":[111]},{"name":"MAX_SYNCMGRHANDLERNAME","features":[111]},{"name":"MAX_SYNCMGRITEMNAME","features":[111]},{"name":"MAX_SYNCMGR_ID","features":[111]},{"name":"MAX_SYNCMGR_NAME","features":[111]},{"name":"MAX_SYNCMGR_PROGRESSTEXT","features":[111]},{"name":"MBHANDCID_PIDLSELECT","features":[111]},{"name":"MENUBANDHANDLERCID","features":[111]},{"name":"MENUPOPUPPOPUPFLAGS","features":[111]},{"name":"MENUPOPUPSELECT","features":[111]},{"name":"MERGE_UPDATE_STATUS","features":[111]},{"name":"MIMEASSOCDLG_FL_REGISTER_ASSOC","features":[111]},{"name":"MIMEASSOCIATIONDIALOG_IN_FLAGS","features":[111]},{"name":"MM_ADDSEPARATOR","features":[111]},{"name":"MM_DONTREMOVESEPS","features":[111]},{"name":"MM_FLAGS","features":[111]},{"name":"MM_SUBMENUSHAVEIDS","features":[111]},{"name":"MONITOR_APP_VISIBILITY","features":[111]},{"name":"MPOS_CANCELLEVEL","features":[111]},{"name":"MPOS_CHILDTRACKING","features":[111]},{"name":"MPOS_EXECUTE","features":[111]},{"name":"MPOS_FULLCANCEL","features":[111]},{"name":"MPOS_SELECTLEFT","features":[111]},{"name":"MPOS_SELECTRIGHT","features":[111]},{"name":"MPPF_ALIGN_LEFT","features":[111]},{"name":"MPPF_ALIGN_RIGHT","features":[111]},{"name":"MPPF_BOTTOM","features":[111]},{"name":"MPPF_FINALSELECT","features":[111]},{"name":"MPPF_FORCEZORDER","features":[111]},{"name":"MPPF_INITIALSELECT","features":[111]},{"name":"MPPF_KEYBOARD","features":[111]},{"name":"MPPF_LEFT","features":[111]},{"name":"MPPF_NOANIMATE","features":[111]},{"name":"MPPF_POS_MASK","features":[111]},{"name":"MPPF_REPOSITION","features":[111]},{"name":"MPPF_RIGHT","features":[111]},{"name":"MPPF_SETFOCUS","features":[111]},{"name":"MPPF_TOP","features":[111]},{"name":"MULTIKEYHELPA","features":[111]},{"name":"MULTIKEYHELPW","features":[111]},{"name":"MUS_COMPLETE","features":[111]},{"name":"MUS_FAILED","features":[111]},{"name":"MUS_USERINPUTNEEDED","features":[111]},{"name":"MailRecipient","features":[111]},{"name":"MergedCategorizer","features":[111]},{"name":"NAMESPACEWALKFLAG","features":[111]},{"name":"NATIVE_DISPLAY_ORIENTATION","features":[111]},{"name":"NCM_DISPLAYERRORTIP","features":[111]},{"name":"NCM_GETADDRESS","features":[111]},{"name":"NCM_GETALLOWTYPE","features":[111]},{"name":"NCM_SETALLOWTYPE","features":[111]},{"name":"NC_ADDRESS","features":[92,17,111]},{"name":"NDO_LANDSCAPE","features":[111]},{"name":"NDO_PORTRAIT","features":[111]},{"name":"NETCACHE_E_NEGATIVE_CACHE","features":[111]},{"name":"NEWCPLINFOA","features":[111,52]},{"name":"NEWCPLINFOW","features":[111,52]},{"name":"NIF_GUID","features":[111]},{"name":"NIF_ICON","features":[111]},{"name":"NIF_INFO","features":[111]},{"name":"NIF_MESSAGE","features":[111]},{"name":"NIF_REALTIME","features":[111]},{"name":"NIF_SHOWTIP","features":[111]},{"name":"NIF_STATE","features":[111]},{"name":"NIF_TIP","features":[111]},{"name":"NIIF_ERROR","features":[111]},{"name":"NIIF_ICON_MASK","features":[111]},{"name":"NIIF_INFO","features":[111]},{"name":"NIIF_LARGE_ICON","features":[111]},{"name":"NIIF_NONE","features":[111]},{"name":"NIIF_NOSOUND","features":[111]},{"name":"NIIF_RESPECT_QUIET_TIME","features":[111]},{"name":"NIIF_USER","features":[111]},{"name":"NIIF_WARNING","features":[111]},{"name":"NIM_ADD","features":[111]},{"name":"NIM_DELETE","features":[111]},{"name":"NIM_MODIFY","features":[111]},{"name":"NIM_SETFOCUS","features":[111]},{"name":"NIM_SETVERSION","features":[111]},{"name":"NINF_KEY","features":[111]},{"name":"NIN_BALLOONHIDE","features":[111]},{"name":"NIN_BALLOONSHOW","features":[111]},{"name":"NIN_BALLOONTIMEOUT","features":[111]},{"name":"NIN_BALLOONUSERCLICK","features":[111]},{"name":"NIN_POPUPCLOSE","features":[111]},{"name":"NIN_POPUPOPEN","features":[111]},{"name":"NIN_SELECT","features":[111]},{"name":"NIS_HIDDEN","features":[111]},{"name":"NIS_SHAREDICON","features":[111]},{"name":"NMCII_FOLDERS","features":[111]},{"name":"NMCII_ITEMS","features":[111]},{"name":"NMCII_NONE","features":[111]},{"name":"NMCSAEI_EDIT","features":[111]},{"name":"NMCSAEI_SELECT","features":[111]},{"name":"NOTIFYICONDATAA","features":[3,111,52]},{"name":"NOTIFYICONDATAA","features":[3,111,52]},{"name":"NOTIFYICONDATAW","features":[3,111,52]},{"name":"NOTIFYICONDATAW","features":[3,111,52]},{"name":"NOTIFYICONIDENTIFIER","features":[3,111]},{"name":"NOTIFYICONIDENTIFIER","features":[3,111]},{"name":"NOTIFYICON_VERSION","features":[111]},{"name":"NOTIFYICON_VERSION_4","features":[111]},{"name":"NOTIFY_ICON_DATA_FLAGS","features":[111]},{"name":"NOTIFY_ICON_INFOTIP_FLAGS","features":[111]},{"name":"NOTIFY_ICON_MESSAGE","features":[111]},{"name":"NOTIFY_ICON_STATE","features":[111]},{"name":"NPCredentialProvider","features":[111]},{"name":"NRESARRAY","features":[102,111]},{"name":"NSTCCUSTOMDRAW","features":[42,111]},{"name":"NSTCDHPOS_ONTOP","features":[111]},{"name":"NSTCECT_BUTTON","features":[111]},{"name":"NSTCECT_DBLCLICK","features":[111]},{"name":"NSTCECT_LBUTTON","features":[111]},{"name":"NSTCECT_MBUTTON","features":[111]},{"name":"NSTCECT_RBUTTON","features":[111]},{"name":"NSTCEHT_NOWHERE","features":[111]},{"name":"NSTCEHT_ONITEM","features":[111]},{"name":"NSTCEHT_ONITEMBUTTON","features":[111]},{"name":"NSTCEHT_ONITEMICON","features":[111]},{"name":"NSTCEHT_ONITEMINDENT","features":[111]},{"name":"NSTCEHT_ONITEMLABEL","features":[111]},{"name":"NSTCEHT_ONITEMRIGHT","features":[111]},{"name":"NSTCEHT_ONITEMSTATEICON","features":[111]},{"name":"NSTCEHT_ONITEMTABBUTTON","features":[111]},{"name":"NSTCFC_DELAY_REGISTER_NOTIFY","features":[111]},{"name":"NSTCFC_NONE","features":[111]},{"name":"NSTCFC_PINNEDITEMFILTERING","features":[111]},{"name":"NSTCFOLDERCAPABILITIES","features":[111]},{"name":"NSTCGNI","features":[111]},{"name":"NSTCGNI_CHILD","features":[111]},{"name":"NSTCGNI_FIRSTVISIBLE","features":[111]},{"name":"NSTCGNI_LASTVISIBLE","features":[111]},{"name":"NSTCGNI_NEXT","features":[111]},{"name":"NSTCGNI_NEXTVISIBLE","features":[111]},{"name":"NSTCGNI_PARENT","features":[111]},{"name":"NSTCGNI_PREV","features":[111]},{"name":"NSTCGNI_PREVVISIBLE","features":[111]},{"name":"NSTCIS_BOLD","features":[111]},{"name":"NSTCIS_DISABLED","features":[111]},{"name":"NSTCIS_EXPANDED","features":[111]},{"name":"NSTCIS_NONE","features":[111]},{"name":"NSTCIS_SELECTED","features":[111]},{"name":"NSTCIS_SELECTEDNOEXPAND","features":[111]},{"name":"NSTCRS_EXPANDED","features":[111]},{"name":"NSTCRS_HIDDEN","features":[111]},{"name":"NSTCRS_VISIBLE","features":[111]},{"name":"NSTCS2_DEFAULT","features":[111]},{"name":"NSTCS2_DISPLAYPADDING","features":[111]},{"name":"NSTCS2_DISPLAYPINNEDONLY","features":[111]},{"name":"NSTCS2_INTERRUPTNOTIFICATIONS","features":[111]},{"name":"NSTCS2_SHOWNULLSPACEMENU","features":[111]},{"name":"NSTCSTYLE2","features":[111]},{"name":"NSTCS_ALLOWJUNCTIONS","features":[111]},{"name":"NSTCS_AUTOHSCROLL","features":[111]},{"name":"NSTCS_BORDER","features":[111]},{"name":"NSTCS_CHECKBOXES","features":[111]},{"name":"NSTCS_DIMMEDCHECKBOXES","features":[111]},{"name":"NSTCS_DISABLEDRAGDROP","features":[111]},{"name":"NSTCS_EMPTYTEXT","features":[111]},{"name":"NSTCS_EVENHEIGHT","features":[111]},{"name":"NSTCS_EXCLUSIONCHECKBOXES","features":[111]},{"name":"NSTCS_FADEINOUTEXPANDOS","features":[111]},{"name":"NSTCS_FAVORITESMODE","features":[111]},{"name":"NSTCS_FULLROWSELECT","features":[111]},{"name":"NSTCS_HASEXPANDOS","features":[111]},{"name":"NSTCS_HASLINES","features":[111]},{"name":"NSTCS_HORIZONTALSCROLL","features":[111]},{"name":"NSTCS_NOEDITLABELS","features":[111]},{"name":"NSTCS_NOINDENTCHECKS","features":[111]},{"name":"NSTCS_NOINFOTIP","features":[111]},{"name":"NSTCS_NOORDERSTREAM","features":[111]},{"name":"NSTCS_NOREPLACEOPEN","features":[111]},{"name":"NSTCS_PARTIALCHECKBOXES","features":[111]},{"name":"NSTCS_RICHTOOLTIP","features":[111]},{"name":"NSTCS_ROOTHASEXPANDO","features":[111]},{"name":"NSTCS_SHOWDELETEBUTTON","features":[111]},{"name":"NSTCS_SHOWREFRESHBUTTON","features":[111]},{"name":"NSTCS_SHOWSELECTIONALWAYS","features":[111]},{"name":"NSTCS_SHOWTABSBUTTON","features":[111]},{"name":"NSTCS_SINGLECLICKEXPAND","features":[111]},{"name":"NSTCS_SPRINGEXPAND","features":[111]},{"name":"NSTCS_TABSTOP","features":[111]},{"name":"NSWF_ACCUMULATE_FOLDERS","features":[111]},{"name":"NSWF_ANY_IMPLIES_ALL","features":[111]},{"name":"NSWF_ASYNC","features":[111]},{"name":"NSWF_DEFAULT","features":[111]},{"name":"NSWF_DONT_ACCUMULATE_RESULT","features":[111]},{"name":"NSWF_DONT_RESOLVE_LINKS","features":[111]},{"name":"NSWF_DONT_SORT","features":[111]},{"name":"NSWF_DONT_TRAVERSE_LINKS","features":[111]},{"name":"NSWF_DONT_TRAVERSE_STREAM_JUNCTIONS","features":[111]},{"name":"NSWF_FILESYSTEM_ONLY","features":[111]},{"name":"NSWF_FLAG_VIEWORDER","features":[111]},{"name":"NSWF_IGNORE_AUTOPLAY_HIDA","features":[111]},{"name":"NSWF_NONE_IMPLIES_ALL","features":[111]},{"name":"NSWF_ONE_IMPLIES_ALL","features":[111]},{"name":"NSWF_SHOW_PROGRESS","features":[111]},{"name":"NSWF_TRAVERSE_STREAM_JUNCTIONS","features":[111]},{"name":"NSWF_USE_TRANSFER_MEDIUM","features":[111]},{"name":"NTSCS2_NEVERINSERTNONENUMERATED","features":[111]},{"name":"NTSCS2_NOSINGLETONAUTOEXPAND","features":[111]},{"name":"NT_CONSOLE_PROPS","features":[3,55,111]},{"name":"NT_CONSOLE_PROPS_SIG","features":[111]},{"name":"NT_FE_CONSOLE_PROPS","features":[111]},{"name":"NT_FE_CONSOLE_PROPS_SIG","features":[111]},{"name":"NUM_POINTS","features":[111]},{"name":"NWMF","features":[111]},{"name":"NWMF_FIRST","features":[111]},{"name":"NWMF_FORCETAB","features":[111]},{"name":"NWMF_FORCEWINDOW","features":[111]},{"name":"NWMF_FROMDIALOGCHILD","features":[111]},{"name":"NWMF_HTMLDIALOG","features":[111]},{"name":"NWMF_INACTIVETAB","features":[111]},{"name":"NWMF_OVERRIDEKEY","features":[111]},{"name":"NWMF_SHOWHELP","features":[111]},{"name":"NWMF_SUGGESTTAB","features":[111]},{"name":"NWMF_SUGGESTWINDOW","features":[111]},{"name":"NWMF_UNLOADING","features":[111]},{"name":"NWMF_USERALLOWED","features":[111]},{"name":"NWMF_USERINITED","features":[111]},{"name":"NWMF_USERREQUESTED","features":[111]},{"name":"NamespaceTreeControl","features":[111]},{"name":"NamespaceWalker","features":[111]},{"name":"NetworkConnections","features":[111]},{"name":"NetworkExplorerFolder","features":[111]},{"name":"NetworkPlaces","features":[111]},{"name":"NewProcessCauseConstants","features":[111]},{"name":"OAIF_ALLOW_REGISTRATION","features":[111]},{"name":"OAIF_EXEC","features":[111]},{"name":"OAIF_FILE_IS_URI","features":[111]},{"name":"OAIF_FORCE_REGISTRATION","features":[111]},{"name":"OAIF_HIDE_REGISTRATION","features":[111]},{"name":"OAIF_REGISTER_EXT","features":[111]},{"name":"OAIF_URL_PROTOCOL","features":[111]},{"name":"OFASI_EDIT","features":[111]},{"name":"OFASI_OPENDESKTOP","features":[111]},{"name":"OFFLINE_STATUS_INCOMPLETE","features":[111]},{"name":"OFFLINE_STATUS_LOCAL","features":[111]},{"name":"OFFLINE_STATUS_REMOTE","features":[111]},{"name":"OFS_DIRTYCACHE","features":[111]},{"name":"OFS_INACTIVE","features":[111]},{"name":"OFS_OFFLINE","features":[111]},{"name":"OFS_ONLINE","features":[111]},{"name":"OFS_SERVERBACK","features":[111]},{"name":"OF_CAP_CANCLOSE","features":[111]},{"name":"OF_CAP_CANSWITCHTO","features":[111]},{"name":"OI_ASYNC","features":[111]},{"name":"OI_DEFAULT","features":[111]},{"name":"OPENASINFO","features":[111]},{"name":"OPENPROPS_INHIBITPIF","features":[111]},{"name":"OPENPROPS_NONE","features":[111]},{"name":"OPEN_AS_INFO_FLAGS","features":[111]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[3,111]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[3,111]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[3,111]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[3,111]},{"name":"OPPROGDLG_ALLOWUNDO","features":[111]},{"name":"OPPROGDLG_DEFAULT","features":[111]},{"name":"OPPROGDLG_DONTDISPLAYDESTPATH","features":[111]},{"name":"OPPROGDLG_DONTDISPLAYLOCATIONS","features":[111]},{"name":"OPPROGDLG_DONTDISPLAYSOURCEPATH","features":[111]},{"name":"OPPROGDLG_ENABLEPAUSE","features":[111]},{"name":"OPPROGDLG_NOMULTIDAYESTIMATES","features":[111]},{"name":"OS","features":[111]},{"name":"OS_ADVSERVER","features":[111]},{"name":"OS_ANYSERVER","features":[111]},{"name":"OS_APPLIANCE","features":[111]},{"name":"OS_DATACENTER","features":[111]},{"name":"OS_DOMAINMEMBER","features":[111]},{"name":"OS_EMBEDDED","features":[111]},{"name":"OS_FASTUSERSWITCHING","features":[111]},{"name":"OS_HOME","features":[111]},{"name":"OS_MEDIACENTER","features":[111]},{"name":"OS_MEORGREATER","features":[111]},{"name":"OS_NT","features":[111]},{"name":"OS_NT4ORGREATER","features":[111]},{"name":"OS_PERSONALTERMINALSERVER","features":[111]},{"name":"OS_PROFESSIONAL","features":[111]},{"name":"OS_SERVER","features":[111]},{"name":"OS_SERVERADMINUI","features":[111]},{"name":"OS_SMALLBUSINESSSERVER","features":[111]},{"name":"OS_TABLETPC","features":[111]},{"name":"OS_TERMINALCLIENT","features":[111]},{"name":"OS_TERMINALREMOTEADMIN","features":[111]},{"name":"OS_TERMINALSERVER","features":[111]},{"name":"OS_WEBSERVER","features":[111]},{"name":"OS_WELCOMELOGONUI","features":[111]},{"name":"OS_WIN2000ADVSERVER","features":[111]},{"name":"OS_WIN2000DATACENTER","features":[111]},{"name":"OS_WIN2000ORGREATER","features":[111]},{"name":"OS_WIN2000PRO","features":[111]},{"name":"OS_WIN2000SERVER","features":[111]},{"name":"OS_WIN2000TERMINAL","features":[111]},{"name":"OS_WIN95ORGREATER","features":[111]},{"name":"OS_WIN95_GOLD","features":[111]},{"name":"OS_WIN98ORGREATER","features":[111]},{"name":"OS_WIN98_GOLD","features":[111]},{"name":"OS_WINDOWS","features":[111]},{"name":"OS_WOW6432","features":[111]},{"name":"OS_XPORGREATER","features":[111]},{"name":"OfflineFolderStatus","features":[111]},{"name":"OleSaveToStreamEx","features":[3,111]},{"name":"OnexCredentialProvider","features":[111]},{"name":"OnexPlapSmartcardCredentialProvider","features":[111]},{"name":"OpenControlPanel","features":[111]},{"name":"OpenRegStream","features":[51,111]},{"name":"PACKAGE_EXECUTION_STATE","features":[111]},{"name":"PAI_ASSIGNEDTIME","features":[111]},{"name":"PAI_EXPIRETIME","features":[111]},{"name":"PAI_PUBLISHEDTIME","features":[111]},{"name":"PAI_SCHEDULEDTIME","features":[111]},{"name":"PAI_SOURCE","features":[111]},{"name":"PANE_NAVIGATION","features":[111]},{"name":"PANE_NONE","features":[111]},{"name":"PANE_OFFLINE","features":[111]},{"name":"PANE_PRINTER","features":[111]},{"name":"PANE_PRIVACY","features":[111]},{"name":"PANE_PROGRESS","features":[111]},{"name":"PANE_SSL","features":[111]},{"name":"PANE_ZONE","features":[111]},{"name":"PAPPCONSTRAIN_CHANGE_ROUTINE","features":[3,111]},{"name":"PAPPCONSTRAIN_REGISTRATION","features":[111]},{"name":"PAPPSTATE_CHANGE_ROUTINE","features":[3,111]},{"name":"PAPPSTATE_REGISTRATION","features":[111]},{"name":"PARSEDURLA","features":[111]},{"name":"PARSEDURLW","features":[111]},{"name":"PATHCCH_ALLOW_LONG_PATHS","features":[111]},{"name":"PATHCCH_CANONICALIZE_SLASHES","features":[111]},{"name":"PATHCCH_DO_NOT_NORMALIZE_SEGMENTS","features":[111]},{"name":"PATHCCH_ENSURE_IS_EXTENDED_LENGTH_PATH","features":[111]},{"name":"PATHCCH_ENSURE_TRAILING_SLASH","features":[111]},{"name":"PATHCCH_FORCE_DISABLE_LONG_NAME_PROCESS","features":[111]},{"name":"PATHCCH_FORCE_ENABLE_LONG_NAME_PROCESS","features":[111]},{"name":"PATHCCH_MAX_CCH","features":[111]},{"name":"PATHCCH_NONE","features":[111]},{"name":"PATHCCH_OPTIONS","features":[111]},{"name":"PCS_FATAL","features":[111]},{"name":"PCS_PATHTOOLONG","features":[111]},{"name":"PCS_REMOVEDCHAR","features":[111]},{"name":"PCS_REPLACEDCHAR","features":[111]},{"name":"PCS_RET","features":[111]},{"name":"PCS_TRUNCATED","features":[111]},{"name":"PDM_DEFAULT","features":[111]},{"name":"PDM_ERRORSBLOCKING","features":[111]},{"name":"PDM_INDETERMINATE","features":[111]},{"name":"PDM_PREFLIGHT","features":[111]},{"name":"PDM_RUN","features":[111]},{"name":"PDM_UNDOING","features":[111]},{"name":"PDTIMER_PAUSE","features":[111]},{"name":"PDTIMER_RESET","features":[111]},{"name":"PDTIMER_RESUME","features":[111]},{"name":"PERSIST_FOLDER_TARGET_INFO","features":[220]},{"name":"PES_RUNNING","features":[111]},{"name":"PES_SUSPENDED","features":[111]},{"name":"PES_SUSPENDING","features":[111]},{"name":"PES_TERMINATED","features":[111]},{"name":"PES_UNKNOWN","features":[111]},{"name":"PFNCANSHAREFOLDERW","features":[111]},{"name":"PFNSHOWSHAREFOLDERUIW","features":[3,111]},{"name":"PIDASI_AVG_DATA_RATE","features":[111]},{"name":"PIDASI_CHANNEL_COUNT","features":[111]},{"name":"PIDASI_COMPRESSION","features":[111]},{"name":"PIDASI_FORMAT","features":[111]},{"name":"PIDASI_SAMPLE_RATE","features":[111]},{"name":"PIDASI_SAMPLE_SIZE","features":[111]},{"name":"PIDASI_STREAM_NAME","features":[111]},{"name":"PIDASI_STREAM_NUMBER","features":[111]},{"name":"PIDASI_TIMELENGTH","features":[111]},{"name":"PIDDRSI_DESCRIPTION","features":[111]},{"name":"PIDDRSI_PLAYCOUNT","features":[111]},{"name":"PIDDRSI_PLAYEXPIRES","features":[111]},{"name":"PIDDRSI_PLAYSTARTS","features":[111]},{"name":"PIDDRSI_PROTECTED","features":[111]},{"name":"PIDISF_CACHEDSTICKY","features":[111]},{"name":"PIDISF_CACHEIMAGES","features":[111]},{"name":"PIDISF_FLAGS","features":[111]},{"name":"PIDISF_FOLLOWALLLINKS","features":[111]},{"name":"PIDISF_RECENTLYCHANGED","features":[111]},{"name":"PIDISM_DONTWATCH","features":[111]},{"name":"PIDISM_GLOBAL","features":[111]},{"name":"PIDISM_OPTIONS","features":[111]},{"name":"PIDISM_WATCH","features":[111]},{"name":"PIDISR_INFO","features":[111]},{"name":"PIDISR_NEEDS_ADD","features":[111]},{"name":"PIDISR_NEEDS_DELETE","features":[111]},{"name":"PIDISR_NEEDS_UPDATE","features":[111]},{"name":"PIDISR_UP_TO_DATE","features":[111]},{"name":"PIDSI_ALBUM","features":[111]},{"name":"PIDSI_ARTIST","features":[111]},{"name":"PIDSI_COMMENT","features":[111]},{"name":"PIDSI_GENRE","features":[111]},{"name":"PIDSI_LYRICS","features":[111]},{"name":"PIDSI_SONGTITLE","features":[111]},{"name":"PIDSI_TRACK","features":[111]},{"name":"PIDSI_YEAR","features":[111]},{"name":"PIDVSI_COMPRESSION","features":[111]},{"name":"PIDVSI_DATA_RATE","features":[111]},{"name":"PIDVSI_FRAME_COUNT","features":[111]},{"name":"PIDVSI_FRAME_HEIGHT","features":[111]},{"name":"PIDVSI_FRAME_RATE","features":[111]},{"name":"PIDVSI_FRAME_WIDTH","features":[111]},{"name":"PIDVSI_SAMPLE_SIZE","features":[111]},{"name":"PIDVSI_STREAM_NAME","features":[111]},{"name":"PIDVSI_STREAM_NUMBER","features":[111]},{"name":"PIDVSI_TIMELENGTH","features":[111]},{"name":"PID_COMPUTERNAME","features":[111]},{"name":"PID_CONTROLPANEL_CATEGORY","features":[111]},{"name":"PID_DESCRIPTIONID","features":[111]},{"name":"PID_DISPLACED_DATE","features":[111]},{"name":"PID_DISPLACED_FROM","features":[111]},{"name":"PID_DISPLAY_PROPERTIES","features":[111]},{"name":"PID_FINDDATA","features":[111]},{"name":"PID_HTMLINFOTIPFILE","features":[111]},{"name":"PID_INTROTEXT","features":[111]},{"name":"PID_INTSITE","features":[111]},{"name":"PID_INTSITE_AUTHOR","features":[111]},{"name":"PID_INTSITE_CODEPAGE","features":[111]},{"name":"PID_INTSITE_COMMENT","features":[111]},{"name":"PID_INTSITE_CONTENTCODE","features":[111]},{"name":"PID_INTSITE_CONTENTLEN","features":[111]},{"name":"PID_INTSITE_DESCRIPTION","features":[111]},{"name":"PID_INTSITE_FLAGS","features":[111]},{"name":"PID_INTSITE_ICONFILE","features":[111]},{"name":"PID_INTSITE_ICONINDEX","features":[111]},{"name":"PID_INTSITE_LASTMOD","features":[111]},{"name":"PID_INTSITE_LASTVISIT","features":[111]},{"name":"PID_INTSITE_RECURSE","features":[111]},{"name":"PID_INTSITE_ROAMED","features":[111]},{"name":"PID_INTSITE_SUBSCRIPTION","features":[111]},{"name":"PID_INTSITE_TITLE","features":[111]},{"name":"PID_INTSITE_TRACKING","features":[111]},{"name":"PID_INTSITE_URL","features":[111]},{"name":"PID_INTSITE_VISITCOUNT","features":[111]},{"name":"PID_INTSITE_WATCH","features":[111]},{"name":"PID_INTSITE_WHATSNEW","features":[111]},{"name":"PID_IS","features":[111]},{"name":"PID_IS_AUTHOR","features":[111]},{"name":"PID_IS_COMMENT","features":[111]},{"name":"PID_IS_DESCRIPTION","features":[111]},{"name":"PID_IS_HOTKEY","features":[111]},{"name":"PID_IS_ICONFILE","features":[111]},{"name":"PID_IS_ICONINDEX","features":[111]},{"name":"PID_IS_NAME","features":[111]},{"name":"PID_IS_ROAMED","features":[111]},{"name":"PID_IS_SHOWCMD","features":[111]},{"name":"PID_IS_URL","features":[111]},{"name":"PID_IS_WHATSNEW","features":[111]},{"name":"PID_IS_WORKINGDIR","features":[111]},{"name":"PID_LINK_TARGET","features":[111]},{"name":"PID_LINK_TARGET_TYPE","features":[111]},{"name":"PID_MISC_ACCESSCOUNT","features":[111]},{"name":"PID_MISC_OWNER","features":[111]},{"name":"PID_MISC_PICS","features":[111]},{"name":"PID_MISC_STATUS","features":[111]},{"name":"PID_NETRESOURCE","features":[111]},{"name":"PID_NETWORKLOCATION","features":[111]},{"name":"PID_QUERY_RANK","features":[111]},{"name":"PID_SHARE_CSC_STATUS","features":[111]},{"name":"PID_SYNC_COPY_IN","features":[111]},{"name":"PID_VOLUME_CAPACITY","features":[111]},{"name":"PID_VOLUME_FILESYSTEM","features":[111]},{"name":"PID_VOLUME_FREE","features":[111]},{"name":"PID_WHICHFOLDER","features":[111]},{"name":"PIFDEFFILESIZE","features":[111]},{"name":"PIFDEFPATHSIZE","features":[111]},{"name":"PIFMAXFILEPATH","features":[111]},{"name":"PIFNAMESIZE","features":[111]},{"name":"PIFPARAMSSIZE","features":[111]},{"name":"PIFSHDATASIZE","features":[111]},{"name":"PIFSHPROGSIZE","features":[111]},{"name":"PIFSTARTLOCSIZE","features":[111]},{"name":"PINLogonCredentialProvider","features":[111]},{"name":"PLATFORM_BROWSERONLY","features":[111]},{"name":"PLATFORM_IE3","features":[111]},{"name":"PLATFORM_INTEGRATED","features":[111]},{"name":"PLATFORM_UNKNOWN","features":[111]},{"name":"PMSF_DONT_STRIP_SPACES","features":[111]},{"name":"PMSF_MULTIPLE","features":[111]},{"name":"PMSF_NORMAL","features":[111]},{"name":"PO_DELETE","features":[111]},{"name":"PO_PORTCHANGE","features":[111]},{"name":"PO_RENAME","features":[111]},{"name":"PO_REN_PORT","features":[111]},{"name":"PPCF_ADDARGUMENTS","features":[111]},{"name":"PPCF_ADDQUOTES","features":[111]},{"name":"PPCF_FORCEQUALIFY","features":[111]},{"name":"PPCF_LONGESTPOSSIBLE","features":[111]},{"name":"PPCF_NODIRECTORIES","features":[111]},{"name":"PREVIEWHANDLERFRAMEINFO","features":[111,52]},{"name":"PRF_DONTFINDLNK","features":[111]},{"name":"PRF_FIRSTDIRDEF","features":[111]},{"name":"PRF_FLAGS","features":[111]},{"name":"PRF_REQUIREABSOLUTE","features":[111]},{"name":"PRF_TRYPROGRAMEXTENSIONS","features":[111]},{"name":"PRF_VERIFYEXISTS","features":[111]},{"name":"PRINTACTION_DOCUMENTDEFAULTS","features":[111]},{"name":"PRINTACTION_NETINSTALL","features":[111]},{"name":"PRINTACTION_NETINSTALLLINK","features":[111]},{"name":"PRINTACTION_OPEN","features":[111]},{"name":"PRINTACTION_OPENNETPRN","features":[111]},{"name":"PRINTACTION_PROPERTIES","features":[111]},{"name":"PRINTACTION_SERVERPROPERTIES","features":[111]},{"name":"PRINTACTION_TESTPAGE","features":[111]},{"name":"PRINT_PROP_FORCE_NAME","features":[111]},{"name":"PROFILEINFOA","features":[3,111]},{"name":"PROFILEINFOW","features":[3,111]},{"name":"PROGDLG_AUTOTIME","features":[111]},{"name":"PROGDLG_MARQUEEPROGRESS","features":[111]},{"name":"PROGDLG_MODAL","features":[111]},{"name":"PROGDLG_NOCANCEL","features":[111]},{"name":"PROGDLG_NOMINIMIZE","features":[111]},{"name":"PROGDLG_NOPROGRESSBAR","features":[111]},{"name":"PROGDLG_NORMAL","features":[111]},{"name":"PROGDLG_NOTIME","features":[111]},{"name":"PROPSTR_EXTENSIONCOMPLETIONSTATE","features":[111]},{"name":"PROP_CONTRACT_DELEGATE","features":[111]},{"name":"PSGUID_AUDIO","features":[111]},{"name":"PSGUID_BRIEFCASE","features":[111]},{"name":"PSGUID_CONTROLPANEL","features":[111]},{"name":"PSGUID_CUSTOMIMAGEPROPERTIES","features":[111]},{"name":"PSGUID_DISPLACED","features":[111]},{"name":"PSGUID_DOCUMENTSUMMARYINFORMATION","features":[111]},{"name":"PSGUID_DRM","features":[111]},{"name":"PSGUID_IMAGEPROPERTIES","features":[111]},{"name":"PSGUID_IMAGESUMMARYINFORMATION","features":[111]},{"name":"PSGUID_LIBRARYPROPERTIES","features":[111]},{"name":"PSGUID_LINK","features":[111]},{"name":"PSGUID_MEDIAFILESUMMARYINFORMATION","features":[111]},{"name":"PSGUID_MISC","features":[111]},{"name":"PSGUID_MUSIC","features":[111]},{"name":"PSGUID_QUERY_D","features":[111]},{"name":"PSGUID_SHARE","features":[111]},{"name":"PSGUID_SHELLDETAILS","features":[111]},{"name":"PSGUID_SUMMARYINFORMATION","features":[111]},{"name":"PSGUID_VIDEO","features":[111]},{"name":"PSGUID_VOLUME","features":[111]},{"name":"PSGUID_WEBVIEW","features":[111]},{"name":"PUBAPPINFO","features":[3,111]},{"name":"PUBAPPINFOFLAGS","features":[111]},{"name":"PackageDebugSettings","features":[111]},{"name":"ParseURLA","features":[111]},{"name":"ParseURLW","features":[111]},{"name":"PasswordCredentialProvider","features":[111]},{"name":"PathAddBackslashA","features":[111]},{"name":"PathAddBackslashW","features":[111]},{"name":"PathAddExtensionA","features":[3,111]},{"name":"PathAddExtensionW","features":[3,111]},{"name":"PathAllocCanonicalize","features":[111]},{"name":"PathAllocCombine","features":[111]},{"name":"PathAppendA","features":[3,111]},{"name":"PathAppendW","features":[3,111]},{"name":"PathBuildRootA","features":[111]},{"name":"PathBuildRootW","features":[111]},{"name":"PathCanonicalizeA","features":[3,111]},{"name":"PathCanonicalizeW","features":[3,111]},{"name":"PathCchAddBackslash","features":[111]},{"name":"PathCchAddBackslashEx","features":[111]},{"name":"PathCchAddExtension","features":[111]},{"name":"PathCchAppend","features":[111]},{"name":"PathCchAppendEx","features":[111]},{"name":"PathCchCanonicalize","features":[111]},{"name":"PathCchCanonicalizeEx","features":[111]},{"name":"PathCchCombine","features":[111]},{"name":"PathCchCombineEx","features":[111]},{"name":"PathCchFindExtension","features":[111]},{"name":"PathCchIsRoot","features":[3,111]},{"name":"PathCchRemoveBackslash","features":[111]},{"name":"PathCchRemoveBackslashEx","features":[111]},{"name":"PathCchRemoveExtension","features":[111]},{"name":"PathCchRemoveFileSpec","features":[111]},{"name":"PathCchRenameExtension","features":[111]},{"name":"PathCchSkipRoot","features":[111]},{"name":"PathCchStripPrefix","features":[111]},{"name":"PathCchStripToRoot","features":[111]},{"name":"PathCleanupSpec","features":[111]},{"name":"PathCombineA","features":[111]},{"name":"PathCombineW","features":[111]},{"name":"PathCommonPrefixA","features":[111]},{"name":"PathCommonPrefixW","features":[111]},{"name":"PathCompactPathA","features":[3,14,111]},{"name":"PathCompactPathExA","features":[3,111]},{"name":"PathCompactPathExW","features":[3,111]},{"name":"PathCompactPathW","features":[3,14,111]},{"name":"PathCreateFromUrlA","features":[111]},{"name":"PathCreateFromUrlAlloc","features":[111]},{"name":"PathCreateFromUrlW","features":[111]},{"name":"PathFileExistsA","features":[3,111]},{"name":"PathFileExistsW","features":[3,111]},{"name":"PathFindExtensionA","features":[111]},{"name":"PathFindExtensionW","features":[111]},{"name":"PathFindFileNameA","features":[111]},{"name":"PathFindFileNameW","features":[111]},{"name":"PathFindNextComponentA","features":[111]},{"name":"PathFindNextComponentW","features":[111]},{"name":"PathFindOnPathA","features":[3,111]},{"name":"PathFindOnPathW","features":[3,111]},{"name":"PathFindSuffixArrayA","features":[111]},{"name":"PathFindSuffixArrayW","features":[111]},{"name":"PathGetArgsA","features":[111]},{"name":"PathGetArgsW","features":[111]},{"name":"PathGetCharTypeA","features":[111]},{"name":"PathGetCharTypeW","features":[111]},{"name":"PathGetDriveNumberA","features":[111]},{"name":"PathGetDriveNumberW","features":[111]},{"name":"PathGetShortPath","features":[111]},{"name":"PathIsContentTypeA","features":[3,111]},{"name":"PathIsContentTypeW","features":[3,111]},{"name":"PathIsDirectoryA","features":[3,111]},{"name":"PathIsDirectoryEmptyA","features":[3,111]},{"name":"PathIsDirectoryEmptyW","features":[3,111]},{"name":"PathIsDirectoryW","features":[3,111]},{"name":"PathIsExe","features":[3,111]},{"name":"PathIsFileSpecA","features":[3,111]},{"name":"PathIsFileSpecW","features":[3,111]},{"name":"PathIsLFNFileSpecA","features":[3,111]},{"name":"PathIsLFNFileSpecW","features":[3,111]},{"name":"PathIsNetworkPathA","features":[3,111]},{"name":"PathIsNetworkPathW","features":[3,111]},{"name":"PathIsPrefixA","features":[3,111]},{"name":"PathIsPrefixW","features":[3,111]},{"name":"PathIsRelativeA","features":[3,111]},{"name":"PathIsRelativeW","features":[3,111]},{"name":"PathIsRootA","features":[3,111]},{"name":"PathIsRootW","features":[3,111]},{"name":"PathIsSameRootA","features":[3,111]},{"name":"PathIsSameRootW","features":[3,111]},{"name":"PathIsSlowA","features":[3,111]},{"name":"PathIsSlowW","features":[3,111]},{"name":"PathIsSystemFolderA","features":[3,111]},{"name":"PathIsSystemFolderW","features":[3,111]},{"name":"PathIsUNCA","features":[3,111]},{"name":"PathIsUNCEx","features":[3,111]},{"name":"PathIsUNCServerA","features":[3,111]},{"name":"PathIsUNCServerShareA","features":[3,111]},{"name":"PathIsUNCServerShareW","features":[3,111]},{"name":"PathIsUNCServerW","features":[3,111]},{"name":"PathIsUNCW","features":[3,111]},{"name":"PathIsURLA","features":[3,111]},{"name":"PathIsURLW","features":[3,111]},{"name":"PathMakePrettyA","features":[3,111]},{"name":"PathMakePrettyW","features":[3,111]},{"name":"PathMakeSystemFolderA","features":[3,111]},{"name":"PathMakeSystemFolderW","features":[3,111]},{"name":"PathMakeUniqueName","features":[3,111]},{"name":"PathMatchSpecA","features":[3,111]},{"name":"PathMatchSpecExA","features":[111]},{"name":"PathMatchSpecExW","features":[111]},{"name":"PathMatchSpecW","features":[3,111]},{"name":"PathParseIconLocationA","features":[111]},{"name":"PathParseIconLocationW","features":[111]},{"name":"PathQualify","features":[111]},{"name":"PathQuoteSpacesA","features":[3,111]},{"name":"PathQuoteSpacesW","features":[3,111]},{"name":"PathRelativePathToA","features":[3,111]},{"name":"PathRelativePathToW","features":[3,111]},{"name":"PathRemoveArgsA","features":[111]},{"name":"PathRemoveArgsW","features":[111]},{"name":"PathRemoveBackslashA","features":[111]},{"name":"PathRemoveBackslashW","features":[111]},{"name":"PathRemoveBlanksA","features":[111]},{"name":"PathRemoveBlanksW","features":[111]},{"name":"PathRemoveExtensionA","features":[111]},{"name":"PathRemoveExtensionW","features":[111]},{"name":"PathRemoveFileSpecA","features":[3,111]},{"name":"PathRemoveFileSpecW","features":[3,111]},{"name":"PathRenameExtensionA","features":[3,111]},{"name":"PathRenameExtensionW","features":[3,111]},{"name":"PathResolve","features":[111]},{"name":"PathSearchAndQualifyA","features":[3,111]},{"name":"PathSearchAndQualifyW","features":[3,111]},{"name":"PathSetDlgItemPathA","features":[3,111]},{"name":"PathSetDlgItemPathW","features":[3,111]},{"name":"PathSkipRootA","features":[111]},{"name":"PathSkipRootW","features":[111]},{"name":"PathStripPathA","features":[111]},{"name":"PathStripPathW","features":[111]},{"name":"PathStripToRootA","features":[3,111]},{"name":"PathStripToRootW","features":[3,111]},{"name":"PathUnExpandEnvStringsA","features":[3,111]},{"name":"PathUnExpandEnvStringsW","features":[3,111]},{"name":"PathUndecorateA","features":[111]},{"name":"PathUndecorateW","features":[111]},{"name":"PathUnmakeSystemFolderA","features":[3,111]},{"name":"PathUnmakeSystemFolderW","features":[3,111]},{"name":"PathUnquoteSpacesA","features":[3,111]},{"name":"PathUnquoteSpacesW","features":[3,111]},{"name":"PathYetAnotherMakeUniqueName","features":[3,111]},{"name":"PickIconDlg","features":[3,111]},{"name":"PreviousVersions","features":[111]},{"name":"PropVariantToStrRet","features":[3,65,44,220]},{"name":"PropertiesUI","features":[111]},{"name":"ProtectedModeRedirect","features":[111]},{"name":"PublishDropTarget","features":[111]},{"name":"PublishingWizard","features":[111]},{"name":"QCMINFO","features":[111,52]},{"name":"QCMINFO_IDMAP","features":[111]},{"name":"QCMINFO_IDMAP_PLACEMENT","features":[111]},{"name":"QCMINFO_PLACE_AFTER","features":[111]},{"name":"QCMINFO_PLACE_BEFORE","features":[111]},{"name":"QIF_CACHED","features":[111]},{"name":"QIF_DONTEXPANDFOLDER","features":[111]},{"name":"QISearch","features":[111]},{"name":"QITAB","features":[111]},{"name":"QITIPF_DEFAULT","features":[111]},{"name":"QITIPF_FLAGS","features":[111]},{"name":"QITIPF_LINKNOTARGET","features":[111]},{"name":"QITIPF_LINKUSETARGET","features":[111]},{"name":"QITIPF_SINGLELINE","features":[111]},{"name":"QITIPF_USENAME","features":[111]},{"name":"QITIPF_USESLOWTIP","features":[111]},{"name":"QUERY_USER_NOTIFICATION_STATE","features":[111]},{"name":"QUNS_ACCEPTS_NOTIFICATIONS","features":[111]},{"name":"QUNS_APP","features":[111]},{"name":"QUNS_BUSY","features":[111]},{"name":"QUNS_NOT_PRESENT","features":[111]},{"name":"QUNS_PRESENTATION_MODE","features":[111]},{"name":"QUNS_QUIET_TIME","features":[111]},{"name":"QUNS_RUNNING_D3D_FULL_SCREEN","features":[111]},{"name":"QueryCancelAutoPlay","features":[111]},{"name":"RASProvider","features":[111]},{"name":"REFRESH_COMPLETELY","features":[111]},{"name":"REFRESH_IFEXPIRED","features":[111]},{"name":"REFRESH_NORMAL","features":[111]},{"name":"RESTRICTIONS","features":[111]},{"name":"REST_ALLOWBITBUCKDRIVES","features":[111]},{"name":"REST_ALLOWCOMMENTTOGGLE","features":[111]},{"name":"REST_ALLOWFILECLSIDJUNCTIONS","features":[111]},{"name":"REST_ALLOWLEGACYWEBVIEW","features":[111]},{"name":"REST_ALLOWUNHASHEDWEBVIEW","features":[111]},{"name":"REST_ARP_DONTGROUPPATCHES","features":[111]},{"name":"REST_ARP_NOADDPAGE","features":[111]},{"name":"REST_ARP_NOARP","features":[111]},{"name":"REST_ARP_NOCHOOSEPROGRAMSPAGE","features":[111]},{"name":"REST_ARP_NOREMOVEPAGE","features":[111]},{"name":"REST_ARP_NOWINSETUPPAGE","features":[111]},{"name":"REST_ARP_ShowPostSetup","features":[111]},{"name":"REST_BITBUCKCONFIRMDELETE","features":[111]},{"name":"REST_BITBUCKNOPROP","features":[111]},{"name":"REST_BITBUCKNUKEONDELETE","features":[111]},{"name":"REST_CLASSICSHELL","features":[111]},{"name":"REST_CLEARRECENTDOCSONEXIT","features":[111]},{"name":"REST_DISALLOWCPL","features":[111]},{"name":"REST_DISALLOWRUN","features":[111]},{"name":"REST_DONTRETRYBADNETNAME","features":[111]},{"name":"REST_DONTSHOWSUPERHIDDEN","features":[111]},{"name":"REST_ENFORCESHELLEXTSECURITY","features":[111]},{"name":"REST_ENUMWORKGROUP","features":[111]},{"name":"REST_FORCEACTIVEDESKTOPON","features":[111]},{"name":"REST_FORCECOPYACLWITHFILE","features":[111]},{"name":"REST_FORCESTARTMENULOGOFF","features":[111]},{"name":"REST_GREYMSIADS","features":[111]},{"name":"REST_HASFINDCOMPUTERS","features":[111]},{"name":"REST_HIDECLOCK","features":[111]},{"name":"REST_HIDERUNASVERB","features":[111]},{"name":"REST_INHERITCONSOLEHANDLES","features":[111]},{"name":"REST_INTELLIMENUS","features":[111]},{"name":"REST_LINKRESOLVEIGNORELINKINFO","features":[111]},{"name":"REST_MYCOMPNOPROP","features":[111]},{"name":"REST_MYDOCSNOPROP","features":[111]},{"name":"REST_MYDOCSONNET","features":[111]},{"name":"REST_MaxRecentDocs","features":[111]},{"name":"REST_NOACTIVEDESKTOP","features":[111]},{"name":"REST_NOACTIVEDESKTOPCHANGES","features":[111]},{"name":"REST_NOADDDESKCOMP","features":[111]},{"name":"REST_NOAUTOTRAYNOTIFY","features":[111]},{"name":"REST_NOCDBURNING","features":[111]},{"name":"REST_NOCHANGEMAPPEDDRIVECOMMENT","features":[111]},{"name":"REST_NOCHANGEMAPPEDDRIVELABEL","features":[111]},{"name":"REST_NOCHANGESTARMENU","features":[111]},{"name":"REST_NOCHANGINGWALLPAPER","features":[111]},{"name":"REST_NOCLOSE","features":[111]},{"name":"REST_NOCLOSEDESKCOMP","features":[111]},{"name":"REST_NOCLOSE_DRAGDROPBAND","features":[111]},{"name":"REST_NOCOLORCHOICE","features":[111]},{"name":"REST_NOCOMMONGROUPS","features":[111]},{"name":"REST_NOCONTROLPANEL","features":[111]},{"name":"REST_NOCONTROLPANELBARRICADE","features":[111]},{"name":"REST_NOCSC","features":[111]},{"name":"REST_NOCURRENTUSERRUN","features":[111]},{"name":"REST_NOCURRENTUSERRUNONCE","features":[111]},{"name":"REST_NOCUSTOMIZETHISFOLDER","features":[111]},{"name":"REST_NOCUSTOMIZEWEBVIEW","features":[111]},{"name":"REST_NODELDESKCOMP","features":[111]},{"name":"REST_NODESKCOMP","features":[111]},{"name":"REST_NODESKTOP","features":[111]},{"name":"REST_NODESKTOPCLEANUP","features":[111]},{"name":"REST_NODISCONNECT","features":[111]},{"name":"REST_NODISPBACKGROUND","features":[111]},{"name":"REST_NODISPLAYAPPEARANCEPAGE","features":[111]},{"name":"REST_NODISPLAYCPL","features":[111]},{"name":"REST_NODISPSCREENSAVEPG","features":[111]},{"name":"REST_NODISPSCREENSAVEPREVIEW","features":[111]},{"name":"REST_NODISPSETTINGSPG","features":[111]},{"name":"REST_NODRIVEAUTORUN","features":[111]},{"name":"REST_NODRIVES","features":[111]},{"name":"REST_NODRIVETYPEAUTORUN","features":[111]},{"name":"REST_NOEDITDESKCOMP","features":[111]},{"name":"REST_NOENCRYPTION","features":[111]},{"name":"REST_NOENCRYPTONMOVE","features":[111]},{"name":"REST_NOENTIRENETWORK","features":[111]},{"name":"REST_NOENUMENTIRENETWORK","features":[111]},{"name":"REST_NOEXITTODOS","features":[111]},{"name":"REST_NOFAVORITESMENU","features":[111]},{"name":"REST_NOFILEASSOCIATE","features":[111]},{"name":"REST_NOFILEMENU","features":[111]},{"name":"REST_NOFIND","features":[111]},{"name":"REST_NOFOLDEROPTIONS","features":[111]},{"name":"REST_NOFORGETSOFTWAREUPDATE","features":[111]},{"name":"REST_NOHARDWARETAB","features":[111]},{"name":"REST_NOHTMLWALLPAPER","features":[111]},{"name":"REST_NOINTERNETICON","features":[111]},{"name":"REST_NOINTERNETOPENWITH","features":[111]},{"name":"REST_NOLOCALMACHINERUN","features":[111]},{"name":"REST_NOLOCALMACHINERUNONCE","features":[111]},{"name":"REST_NOLOWDISKSPACECHECKS","features":[111]},{"name":"REST_NOMANAGEMYCOMPUTERVERB","features":[111]},{"name":"REST_NOMOVINGBAND","features":[111]},{"name":"REST_NOMYCOMPUTERICON","features":[111]},{"name":"REST_NONE","features":[111]},{"name":"REST_NONETCONNECTDISCONNECT","features":[111]},{"name":"REST_NONETCRAWL","features":[111]},{"name":"REST_NONETHOOD","features":[111]},{"name":"REST_NONETWORKCONNECTIONS","features":[111]},{"name":"REST_NONLEGACYSHELLMODE","features":[111]},{"name":"REST_NOONLINEPRINTSWIZARD","features":[111]},{"name":"REST_NOPRINTERADD","features":[111]},{"name":"REST_NOPRINTERDELETE","features":[111]},{"name":"REST_NOPRINTERTABS","features":[111]},{"name":"REST_NOPUBLISHWIZARD","features":[111]},{"name":"REST_NORECENTDOCSHISTORY","features":[111]},{"name":"REST_NORECENTDOCSMENU","features":[111]},{"name":"REST_NOREMOTECHANGENOTIFY","features":[111]},{"name":"REST_NOREMOTERECURSIVEEVENTS","features":[111]},{"name":"REST_NORESOLVESEARCH","features":[111]},{"name":"REST_NORESOLVETRACK","features":[111]},{"name":"REST_NORUN","features":[111]},{"name":"REST_NORUNASINSTALLPROMPT","features":[111]},{"name":"REST_NOSAVESET","features":[111]},{"name":"REST_NOSECURITY","features":[111]},{"name":"REST_NOSETACTIVEDESKTOP","features":[111]},{"name":"REST_NOSETFOLDERS","features":[111]},{"name":"REST_NOSETTASKBAR","features":[111]},{"name":"REST_NOSETTINGSASSIST","features":[111]},{"name":"REST_NOSHAREDDOCUMENTS","features":[111]},{"name":"REST_NOSHELLSEARCHBUTTON","features":[111]},{"name":"REST_NOSIZECHOICE","features":[111]},{"name":"REST_NOSMBALLOONTIP","features":[111]},{"name":"REST_NOSMCONFIGUREPROGRAMS","features":[111]},{"name":"REST_NOSMEJECTPC","features":[111]},{"name":"REST_NOSMHELP","features":[111]},{"name":"REST_NOSMMFUPROGRAMS","features":[111]},{"name":"REST_NOSMMOREPROGRAMS","features":[111]},{"name":"REST_NOSMMYDOCS","features":[111]},{"name":"REST_NOSMMYMUSIC","features":[111]},{"name":"REST_NOSMMYPICS","features":[111]},{"name":"REST_NOSMNETWORKPLACES","features":[111]},{"name":"REST_NOSMPINNEDLIST","features":[111]},{"name":"REST_NOSTARTMENUSUBFOLDERS","features":[111]},{"name":"REST_NOSTARTPAGE","features":[111]},{"name":"REST_NOSTARTPANEL","features":[111]},{"name":"REST_NOSTRCMPLOGICAL","features":[111]},{"name":"REST_NOTASKGROUPING","features":[111]},{"name":"REST_NOTHEMESTAB","features":[111]},{"name":"REST_NOTHUMBNAILCACHE","features":[111]},{"name":"REST_NOTOOLBARSONTASKBAR","features":[111]},{"name":"REST_NOTRAYCONTEXTMENU","features":[111]},{"name":"REST_NOTRAYITEMSDISPLAY","features":[111]},{"name":"REST_NOUPDATEWINDOWS","features":[111]},{"name":"REST_NOUPNPINSTALL","features":[111]},{"name":"REST_NOUSERNAMEINSTARTPANEL","features":[111]},{"name":"REST_NOVIEWCONTEXTMENU","features":[111]},{"name":"REST_NOVIEWONDRIVE","features":[111]},{"name":"REST_NOVISUALSTYLECHOICE","features":[111]},{"name":"REST_NOWEB","features":[111]},{"name":"REST_NOWEBSERVICES","features":[111]},{"name":"REST_NOWEBVIEW","features":[111]},{"name":"REST_NOWELCOMESCREEN","features":[111]},{"name":"REST_NOWINKEYS","features":[111]},{"name":"REST_PROMPTRUNASINSTALLNETPATH","features":[111]},{"name":"REST_RESTRICTCPL","features":[111]},{"name":"REST_RESTRICTRUN","features":[111]},{"name":"REST_REVERTWEBVIEWSECURITY","features":[111]},{"name":"REST_RUNDLGMEMCHECKBOX","features":[111]},{"name":"REST_SEPARATEDESKTOPPROCESS","features":[111]},{"name":"REST_SETVISUALSTYLE","features":[111]},{"name":"REST_STARTBANNER","features":[111]},{"name":"REST_STARTMENULOGOFF","features":[111]},{"name":"REST_STARTRUNNOHOMEPATH","features":[111]},{"name":"ReadCabinetState","features":[3,111]},{"name":"RealDriveType","features":[3,111]},{"name":"RefreshConstants","features":[111]},{"name":"RegisterAppConstrainedChangeNotification","features":[3,111]},{"name":"RegisterAppStateChangeNotification","features":[3,111]},{"name":"RegisterScaleChangeEvent","features":[3,111]},{"name":"RegisterScaleChangeNotifications","features":[3,111]},{"name":"RemoveWindowSubclass","features":[3,111]},{"name":"ResizeThumbnail","features":[111]},{"name":"RestartDialog","features":[3,111]},{"name":"RestartDialogEx","features":[3,111]},{"name":"ReturnOnlyIfCached","features":[111]},{"name":"RevokeScaleChangeNotifications","features":[111]},{"name":"SBSC_HIDE","features":[111]},{"name":"SBSC_QUERY","features":[111]},{"name":"SBSC_SHOW","features":[111]},{"name":"SBSC_TOGGLE","features":[111]},{"name":"SBSP_ABSOLUTE","features":[111]},{"name":"SBSP_ACTIVATE_NOFOCUS","features":[111]},{"name":"SBSP_ALLOW_AUTONAVIGATE","features":[111]},{"name":"SBSP_CALLERUNTRUSTED","features":[111]},{"name":"SBSP_CREATENOHISTORY","features":[111]},{"name":"SBSP_DEFBROWSER","features":[111]},{"name":"SBSP_DEFMODE","features":[111]},{"name":"SBSP_EXPLOREMODE","features":[111]},{"name":"SBSP_FEEDNAVIGATION","features":[111]},{"name":"SBSP_HELPMODE","features":[111]},{"name":"SBSP_INITIATEDBYHLINKFRAME","features":[111]},{"name":"SBSP_KEEPSAMETEMPLATE","features":[111]},{"name":"SBSP_KEEPWORDWHEELTEXT","features":[111]},{"name":"SBSP_NAVIGATEBACK","features":[111]},{"name":"SBSP_NAVIGATEFORWARD","features":[111]},{"name":"SBSP_NEWBROWSER","features":[111]},{"name":"SBSP_NOAUTOSELECT","features":[111]},{"name":"SBSP_NOTRANSFERHIST","features":[111]},{"name":"SBSP_OPENMODE","features":[111]},{"name":"SBSP_PARENT","features":[111]},{"name":"SBSP_PLAYNOSOUND","features":[111]},{"name":"SBSP_REDIRECT","features":[111]},{"name":"SBSP_RELATIVE","features":[111]},{"name":"SBSP_SAMEBROWSER","features":[111]},{"name":"SBSP_TRUSTEDFORACTIVEX","features":[111]},{"name":"SBSP_TRUSTFIRSTDOWNLOAD","features":[111]},{"name":"SBSP_UNTRUSTEDFORDOWNLOAD","features":[111]},{"name":"SBSP_WRITENOHISTORY","features":[111]},{"name":"SCALE_CHANGE_FLAGS","features":[111]},{"name":"SCF_PHYSICAL","features":[111]},{"name":"SCF_SCALE","features":[111]},{"name":"SCF_VALUE_NONE","features":[111]},{"name":"SCHEME_CREATE","features":[111]},{"name":"SCHEME_DISPLAY","features":[111]},{"name":"SCHEME_DONOTUSE","features":[111]},{"name":"SCHEME_EDIT","features":[111]},{"name":"SCHEME_GLOBAL","features":[111]},{"name":"SCHEME_LOCAL","features":[111]},{"name":"SCHEME_REFRESH","features":[111]},{"name":"SCHEME_UPDATE","features":[111]},{"name":"SCNRT_DISABLE","features":[111]},{"name":"SCNRT_ENABLE","features":[111]},{"name":"SCNRT_STATUS","features":[111]},{"name":"SCRM_VERIFYPW","features":[111]},{"name":"SECURELOCKCODE","features":[111]},{"name":"SECURELOCK_FIRSTSUGGEST","features":[111]},{"name":"SECURELOCK_NOCHANGE","features":[111]},{"name":"SECURELOCK_SET_FORTEZZA","features":[111]},{"name":"SECURELOCK_SET_MIXED","features":[111]},{"name":"SECURELOCK_SET_SECURE128BIT","features":[111]},{"name":"SECURELOCK_SET_SECURE40BIT","features":[111]},{"name":"SECURELOCK_SET_SECURE56BIT","features":[111]},{"name":"SECURELOCK_SET_SECUREUNKNOWNBIT","features":[111]},{"name":"SECURELOCK_SET_UNSECURE","features":[111]},{"name":"SECURELOCK_SUGGEST_FORTEZZA","features":[111]},{"name":"SECURELOCK_SUGGEST_MIXED","features":[111]},{"name":"SECURELOCK_SUGGEST_SECURE128BIT","features":[111]},{"name":"SECURELOCK_SUGGEST_SECURE40BIT","features":[111]},{"name":"SECURELOCK_SUGGEST_SECURE56BIT","features":[111]},{"name":"SECURELOCK_SUGGEST_SECUREUNKNOWNBIT","features":[111]},{"name":"SECURELOCK_SUGGEST_UNSECURE","features":[111]},{"name":"SEE_MASK_ASYNCOK","features":[111]},{"name":"SEE_MASK_CLASSKEY","features":[111]},{"name":"SEE_MASK_CLASSNAME","features":[111]},{"name":"SEE_MASK_CONNECTNETDRV","features":[111]},{"name":"SEE_MASK_DEFAULT","features":[111]},{"name":"SEE_MASK_DOENVSUBST","features":[111]},{"name":"SEE_MASK_FLAG_DDEWAIT","features":[111]},{"name":"SEE_MASK_FLAG_HINST_IS_SITE","features":[111]},{"name":"SEE_MASK_FLAG_LOG_USAGE","features":[111]},{"name":"SEE_MASK_FLAG_NO_UI","features":[111]},{"name":"SEE_MASK_HMONITOR","features":[111]},{"name":"SEE_MASK_HOTKEY","features":[111]},{"name":"SEE_MASK_ICON","features":[111]},{"name":"SEE_MASK_IDLIST","features":[111]},{"name":"SEE_MASK_INVOKEIDLIST","features":[111]},{"name":"SEE_MASK_NOASYNC","features":[111]},{"name":"SEE_MASK_NOCLOSEPROCESS","features":[111]},{"name":"SEE_MASK_NOQUERYCLASSSTORE","features":[111]},{"name":"SEE_MASK_NOZONECHECKS","features":[111]},{"name":"SEE_MASK_NO_CONSOLE","features":[111]},{"name":"SEE_MASK_UNICODE","features":[111]},{"name":"SEE_MASK_WAITFORINPUTIDLE","features":[111]},{"name":"SETPROPS_NONE","features":[111]},{"name":"SE_ERR_ACCESSDENIED","features":[111]},{"name":"SE_ERR_ASSOCINCOMPLETE","features":[111]},{"name":"SE_ERR_DDEBUSY","features":[111]},{"name":"SE_ERR_DDEFAIL","features":[111]},{"name":"SE_ERR_DDETIMEOUT","features":[111]},{"name":"SE_ERR_DLLNOTFOUND","features":[111]},{"name":"SE_ERR_FNF","features":[111]},{"name":"SE_ERR_NOASSOC","features":[111]},{"name":"SE_ERR_OOM","features":[111]},{"name":"SE_ERR_PNF","features":[111]},{"name":"SE_ERR_SHARE","features":[111]},{"name":"SFBID_PIDLCHANGED","features":[111]},{"name":"SFBS_FLAGS","features":[111]},{"name":"SFBS_FLAGS_ROUND_TO_NEAREST_DISPLAYED_DIGIT","features":[111]},{"name":"SFBS_FLAGS_TRUNCATE_UNDISPLAYED_DECIMAL_DIGITS","features":[111]},{"name":"SFVM_ADDOBJECT","features":[111]},{"name":"SFVM_ADDPROPERTYPAGES","features":[111]},{"name":"SFVM_BACKGROUNDENUM","features":[111]},{"name":"SFVM_BACKGROUNDENUMDONE","features":[111]},{"name":"SFVM_COLUMNCLICK","features":[111]},{"name":"SFVM_DEFITEMCOUNT","features":[111]},{"name":"SFVM_DEFVIEWMODE","features":[111]},{"name":"SFVM_DIDDRAGDROP","features":[111]},{"name":"SFVM_FSNOTIFY","features":[111]},{"name":"SFVM_GETANIMATION","features":[111]},{"name":"SFVM_GETBUTTONINFO","features":[111]},{"name":"SFVM_GETBUTTONS","features":[111]},{"name":"SFVM_GETDETAILSOF","features":[111]},{"name":"SFVM_GETHELPTEXT","features":[111]},{"name":"SFVM_GETHELPTOPIC","features":[111]},{"name":"SFVM_GETNOTIFY","features":[111]},{"name":"SFVM_GETPANE","features":[111]},{"name":"SFVM_GETSELECTEDOBJECTS","features":[111]},{"name":"SFVM_GETSORTDEFAULTS","features":[111]},{"name":"SFVM_GETTOOLTIPTEXT","features":[111]},{"name":"SFVM_GETZONE","features":[111]},{"name":"SFVM_HELPTOPIC_DATA","features":[111]},{"name":"SFVM_INITMENUPOPUP","features":[111]},{"name":"SFVM_INVOKECOMMAND","features":[111]},{"name":"SFVM_MERGEMENU","features":[111]},{"name":"SFVM_MESSAGE_ID","features":[111]},{"name":"SFVM_PROPPAGE_DATA","features":[3,42,111]},{"name":"SFVM_QUERYFSNOTIFY","features":[111]},{"name":"SFVM_REARRANGE","features":[111]},{"name":"SFVM_REMOVEOBJECT","features":[111]},{"name":"SFVM_SETCLIPBOARD","features":[111]},{"name":"SFVM_SETISFV","features":[111]},{"name":"SFVM_SETITEMPOS","features":[111]},{"name":"SFVM_SETPOINTS","features":[111]},{"name":"SFVM_SIZE","features":[111]},{"name":"SFVM_THISIDLIST","features":[111]},{"name":"SFVM_UNMERGEMENU","features":[111]},{"name":"SFVM_UPDATEOBJECT","features":[111]},{"name":"SFVM_UPDATESTATUSBAR","features":[111]},{"name":"SFVM_WINDOWCREATED","features":[111]},{"name":"SFVSOC_INVALIDATE_ALL","features":[111]},{"name":"SFVSOC_NOSCROLL","features":[111]},{"name":"SFVS_SELECT","features":[111]},{"name":"SFVS_SELECT_ALLITEMS","features":[111]},{"name":"SFVS_SELECT_INVERT","features":[111]},{"name":"SFVS_SELECT_NONE","features":[111]},{"name":"SFVVO_DESKTOPHTML","features":[111]},{"name":"SFVVO_DOUBLECLICKINWEBVIEW","features":[111]},{"name":"SFVVO_SHOWALLOBJECTS","features":[111]},{"name":"SFVVO_SHOWCOMPCOLOR","features":[111]},{"name":"SFVVO_SHOWEXTENSIONS","features":[111]},{"name":"SFVVO_SHOWSYSFILES","features":[111]},{"name":"SFVVO_WIN95CLASSIC","features":[111]},{"name":"SFV_CREATE","features":[111]},{"name":"SFV_SETITEMPOS","features":[3,220]},{"name":"SHACF_AUTOAPPEND_FORCE_OFF","features":[111]},{"name":"SHACF_AUTOAPPEND_FORCE_ON","features":[111]},{"name":"SHACF_AUTOSUGGEST_FORCE_OFF","features":[111]},{"name":"SHACF_AUTOSUGGEST_FORCE_ON","features":[111]},{"name":"SHACF_DEFAULT","features":[111]},{"name":"SHACF_FILESYSTEM","features":[111]},{"name":"SHACF_FILESYS_DIRS","features":[111]},{"name":"SHACF_FILESYS_ONLY","features":[111]},{"name":"SHACF_URLALL","features":[111]},{"name":"SHACF_URLHISTORY","features":[111]},{"name":"SHACF_URLMRU","features":[111]},{"name":"SHACF_USETAB","features":[111]},{"name":"SHACF_VIRTUAL_NAMESPACE","features":[111]},{"name":"SHARD","features":[111]},{"name":"SHARDAPPIDINFO","features":[111]},{"name":"SHARDAPPIDINFOIDLIST","features":[220]},{"name":"SHARDAPPIDINFOLINK","features":[111]},{"name":"SHARD_APPIDINFO","features":[111]},{"name":"SHARD_APPIDINFOIDLIST","features":[111]},{"name":"SHARD_APPIDINFOLINK","features":[111]},{"name":"SHARD_LINK","features":[111]},{"name":"SHARD_PATHA","features":[111]},{"name":"SHARD_PATHW","features":[111]},{"name":"SHARD_PIDL","features":[111]},{"name":"SHARD_SHELLITEM","features":[111]},{"name":"SHARE_ROLE","features":[111]},{"name":"SHARE_ROLE_CONTRIBUTOR","features":[111]},{"name":"SHARE_ROLE_CO_OWNER","features":[111]},{"name":"SHARE_ROLE_CUSTOM","features":[111]},{"name":"SHARE_ROLE_INVALID","features":[111]},{"name":"SHARE_ROLE_MIXED","features":[111]},{"name":"SHARE_ROLE_OWNER","features":[111]},{"name":"SHARE_ROLE_READER","features":[111]},{"name":"SHAddFromPropSheetExtArray","features":[3,42,111]},{"name":"SHAddToRecentDocs","features":[111]},{"name":"SHAlloc","features":[111]},{"name":"SHAllocShared","features":[3,111]},{"name":"SHAnsiToAnsi","features":[111]},{"name":"SHAnsiToUnicode","features":[111]},{"name":"SHAppBarMessage","features":[3,111]},{"name":"SHAssocEnumHandlers","features":[111]},{"name":"SHAssocEnumHandlersForProtocolByApplication","features":[111]},{"name":"SHAutoComplete","features":[3,111]},{"name":"SHBindToFolderIDListParent","features":[220]},{"name":"SHBindToFolderIDListParentEx","features":[220]},{"name":"SHBindToObject","features":[220]},{"name":"SHBindToParent","features":[220]},{"name":"SHBrowseForFolderA","features":[3,220]},{"name":"SHBrowseForFolderW","features":[3,220]},{"name":"SHCDF_UPDATEITEM","features":[111]},{"name":"SHCIDS_ALLFIELDS","features":[111]},{"name":"SHCIDS_BITMASK","features":[111]},{"name":"SHCIDS_CANONICALONLY","features":[111]},{"name":"SHCIDS_COLUMNMASK","features":[111]},{"name":"SHCLSIDFromString","features":[111]},{"name":"SHCNEE_MSI_CHANGE","features":[111]},{"name":"SHCNEE_MSI_UNINSTALL","features":[111]},{"name":"SHCNEE_ORDERCHANGED","features":[111]},{"name":"SHCNE_ALLEVENTS","features":[111]},{"name":"SHCNE_ASSOCCHANGED","features":[111]},{"name":"SHCNE_ATTRIBUTES","features":[111]},{"name":"SHCNE_CREATE","features":[111]},{"name":"SHCNE_DELETE","features":[111]},{"name":"SHCNE_DISKEVENTS","features":[111]},{"name":"SHCNE_DRIVEADD","features":[111]},{"name":"SHCNE_DRIVEADDGUI","features":[111]},{"name":"SHCNE_DRIVEREMOVED","features":[111]},{"name":"SHCNE_EXTENDED_EVENT","features":[111]},{"name":"SHCNE_FREESPACE","features":[111]},{"name":"SHCNE_GLOBALEVENTS","features":[111]},{"name":"SHCNE_ID","features":[111]},{"name":"SHCNE_INTERRUPT","features":[111]},{"name":"SHCNE_MEDIAINSERTED","features":[111]},{"name":"SHCNE_MEDIAREMOVED","features":[111]},{"name":"SHCNE_MKDIR","features":[111]},{"name":"SHCNE_NETSHARE","features":[111]},{"name":"SHCNE_NETUNSHARE","features":[111]},{"name":"SHCNE_RENAMEFOLDER","features":[111]},{"name":"SHCNE_RENAMEITEM","features":[111]},{"name":"SHCNE_RMDIR","features":[111]},{"name":"SHCNE_SERVERDISCONNECT","features":[111]},{"name":"SHCNE_UPDATEDIR","features":[111]},{"name":"SHCNE_UPDATEIMAGE","features":[111]},{"name":"SHCNE_UPDATEITEM","features":[111]},{"name":"SHCNF_DWORD","features":[111]},{"name":"SHCNF_FLAGS","features":[111]},{"name":"SHCNF_FLUSH","features":[111]},{"name":"SHCNF_FLUSHNOWAIT","features":[111]},{"name":"SHCNF_IDLIST","features":[111]},{"name":"SHCNF_NOTIFYRECURSIVE","features":[111]},{"name":"SHCNF_PATH","features":[111]},{"name":"SHCNF_PATHA","features":[111]},{"name":"SHCNF_PATHW","features":[111]},{"name":"SHCNF_PRINTER","features":[111]},{"name":"SHCNF_PRINTERA","features":[111]},{"name":"SHCNF_PRINTERW","features":[111]},{"name":"SHCNF_TYPE","features":[111]},{"name":"SHCNRF_InterruptLevel","features":[111]},{"name":"SHCNRF_NewDelivery","features":[111]},{"name":"SHCNRF_RecursiveInterrupt","features":[111]},{"name":"SHCNRF_SOURCE","features":[111]},{"name":"SHCNRF_ShellLevel","features":[111]},{"name":"SHCOLUMNDATA","features":[111]},{"name":"SHCOLUMNINFO","features":[44,62]},{"name":"SHCOLUMNINIT","features":[111]},{"name":"SHCONTF_CHECKING_FOR_CHILDREN","features":[111]},{"name":"SHCONTF_ENABLE_ASYNC","features":[111]},{"name":"SHCONTF_FASTITEMS","features":[111]},{"name":"SHCONTF_FLATLIST","features":[111]},{"name":"SHCONTF_FOLDERS","features":[111]},{"name":"SHCONTF_INCLUDEHIDDEN","features":[111]},{"name":"SHCONTF_INCLUDESUPERHIDDEN","features":[111]},{"name":"SHCONTF_INIT_ON_FIRST_NEXT","features":[111]},{"name":"SHCONTF_NAVIGATION_ENUM","features":[111]},{"name":"SHCONTF_NETPRINTERSRCH","features":[111]},{"name":"SHCONTF_NONFOLDERS","features":[111]},{"name":"SHCONTF_SHAREABLE","features":[111]},{"name":"SHCONTF_STORAGE","features":[111]},{"name":"SHCREATEPROCESSINFOW","features":[3,6,39,111]},{"name":"SHCREATEPROCESSINFOW","features":[3,6,39,111]},{"name":"SHC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[111]},{"name":"SHChangeDWORDAsIDList","features":[111]},{"name":"SHChangeNotification_Lock","features":[3,220]},{"name":"SHChangeNotification_Unlock","features":[3,111]},{"name":"SHChangeNotify","features":[111]},{"name":"SHChangeNotifyDeregister","features":[3,111]},{"name":"SHChangeNotifyEntry","features":[3,220]},{"name":"SHChangeNotifyRegister","features":[3,220]},{"name":"SHChangeNotifyRegisterThread","features":[111]},{"name":"SHChangeProductKeyAsIDList","features":[111]},{"name":"SHChangeUpdateImageIDList","features":[111]},{"name":"SHCloneSpecialIDList","features":[3,220]},{"name":"SHCoCreateInstance","features":[111]},{"name":"SHCopyKeyA","features":[3,51,111]},{"name":"SHCopyKeyW","features":[3,51,111]},{"name":"SHCreateAssociationRegistration","features":[111]},{"name":"SHCreateDataObject","features":[220]},{"name":"SHCreateDefaultContextMenu","features":[3,51,220]},{"name":"SHCreateDefaultExtractIcon","features":[111]},{"name":"SHCreateDefaultPropertiesOp","features":[111]},{"name":"SHCreateDirectory","features":[3,111]},{"name":"SHCreateDirectoryExA","features":[3,6,111]},{"name":"SHCreateDirectoryExW","features":[3,6,111]},{"name":"SHCreateFileExtractIconW","features":[111]},{"name":"SHCreateItemFromIDList","features":[220]},{"name":"SHCreateItemFromParsingName","features":[111]},{"name":"SHCreateItemFromRelativeName","features":[111]},{"name":"SHCreateItemInKnownFolder","features":[111]},{"name":"SHCreateItemWithParent","features":[220]},{"name":"SHCreateMemStream","features":[111]},{"name":"SHCreateProcessAsUserW","features":[3,6,39,111]},{"name":"SHCreatePropSheetExtArray","features":[51,111]},{"name":"SHCreateQueryCancelAutoPlayMoniker","features":[111]},{"name":"SHCreateShellFolderView","features":[111]},{"name":"SHCreateShellFolderViewEx","features":[3,220]},{"name":"SHCreateShellItem","features":[220]},{"name":"SHCreateShellItemArray","features":[220]},{"name":"SHCreateShellItemArrayFromDataObject","features":[111]},{"name":"SHCreateShellItemArrayFromIDLists","features":[220]},{"name":"SHCreateShellItemArrayFromShellItem","features":[111]},{"name":"SHCreateShellPalette","features":[14,111]},{"name":"SHCreateStdEnumFmtEtc","features":[43,111]},{"name":"SHCreateStreamOnFileA","features":[111]},{"name":"SHCreateStreamOnFileEx","features":[3,111]},{"name":"SHCreateStreamOnFileW","features":[111]},{"name":"SHCreateThread","features":[3,39,111]},{"name":"SHCreateThreadRef","features":[111]},{"name":"SHCreateThreadWithHandle","features":[3,39,111]},{"name":"SHDESCRIPTIONID","features":[111]},{"name":"SHDID_COMPUTER_AUDIO","features":[111]},{"name":"SHDID_COMPUTER_CDROM","features":[111]},{"name":"SHDID_COMPUTER_DRIVE35","features":[111]},{"name":"SHDID_COMPUTER_DRIVE525","features":[111]},{"name":"SHDID_COMPUTER_FIXED","features":[111]},{"name":"SHDID_COMPUTER_IMAGING","features":[111]},{"name":"SHDID_COMPUTER_NETDRIVE","features":[111]},{"name":"SHDID_COMPUTER_OTHER","features":[111]},{"name":"SHDID_COMPUTER_RAMDISK","features":[111]},{"name":"SHDID_COMPUTER_REMOVABLE","features":[111]},{"name":"SHDID_COMPUTER_SHAREDDOCS","features":[111]},{"name":"SHDID_FS_DIRECTORY","features":[111]},{"name":"SHDID_FS_FILE","features":[111]},{"name":"SHDID_FS_OTHER","features":[111]},{"name":"SHDID_ID","features":[111]},{"name":"SHDID_MOBILE_DEVICE","features":[111]},{"name":"SHDID_NET_DOMAIN","features":[111]},{"name":"SHDID_NET_OTHER","features":[111]},{"name":"SHDID_NET_RESTOFNET","features":[111]},{"name":"SHDID_NET_SERVER","features":[111]},{"name":"SHDID_NET_SHARE","features":[111]},{"name":"SHDID_REMOTE_DESKTOP_DRIVE","features":[111]},{"name":"SHDID_ROOT_REGITEM","features":[111]},{"name":"SHDRAGIMAGE","features":[3,14,111]},{"name":"SHDefExtractIconA","features":[111,52]},{"name":"SHDefExtractIconW","features":[111,52]},{"name":"SHDeleteEmptyKeyA","features":[3,51,111]},{"name":"SHDeleteEmptyKeyW","features":[3,51,111]},{"name":"SHDeleteKeyA","features":[3,51,111]},{"name":"SHDeleteKeyW","features":[3,51,111]},{"name":"SHDeleteValueA","features":[3,51,111]},{"name":"SHDeleteValueW","features":[3,51,111]},{"name":"SHDestroyPropSheetExtArray","features":[111]},{"name":"SHDoDragDrop","features":[3,158,111]},{"name":"SHELLBROWSERSHOWCONTROL","features":[111]},{"name":"SHELLEXECUTEINFOA","features":[3,51,111]},{"name":"SHELLEXECUTEINFOA","features":[3,51,111]},{"name":"SHELLEXECUTEINFOW","features":[3,51,111]},{"name":"SHELLEXECUTEINFOW","features":[3,51,111]},{"name":"SHELLFLAGSTATE","features":[111]},{"name":"SHELLSTATEA","features":[111]},{"name":"SHELLSTATEVERSION_IE4","features":[111]},{"name":"SHELLSTATEVERSION_WIN2K","features":[111]},{"name":"SHELLSTATEW","features":[111]},{"name":"SHELL_AUTOCOMPLETE_FLAGS","features":[111]},{"name":"SHELL_E_WRONG_BITDEPTH","features":[111]},{"name":"SHELL_ITEM_RESOURCE","features":[111]},{"name":"SHELL_LINK_DATA_FLAGS","features":[111]},{"name":"SHELL_UI_COMPONENT","features":[111]},{"name":"SHELL_UI_COMPONENT_DESKBAND","features":[111]},{"name":"SHELL_UI_COMPONENT_NOTIFICATIONAREA","features":[111]},{"name":"SHELL_UI_COMPONENT_TASKBARS","features":[111]},{"name":"SHERB_NOCONFIRMATION","features":[111]},{"name":"SHERB_NOPROGRESSUI","features":[111]},{"name":"SHERB_NOSOUND","features":[111]},{"name":"SHEmptyRecycleBinA","features":[3,111]},{"name":"SHEmptyRecycleBinW","features":[3,111]},{"name":"SHEnumKeyExA","features":[3,51,111]},{"name":"SHEnumKeyExW","features":[3,51,111]},{"name":"SHEnumValueA","features":[3,51,111]},{"name":"SHEnumValueW","features":[3,51,111]},{"name":"SHEnumerateUnreadMailAccountsW","features":[51,111]},{"name":"SHEvaluateSystemCommandTemplate","features":[111]},{"name":"SHFILEINFOA","features":[111,52]},{"name":"SHFILEINFOA","features":[111,52]},{"name":"SHFILEINFOW","features":[111,52]},{"name":"SHFILEINFOW","features":[111,52]},{"name":"SHFILEOPSTRUCTA","features":[3,111]},{"name":"SHFILEOPSTRUCTA","features":[3,111]},{"name":"SHFILEOPSTRUCTW","features":[3,111]},{"name":"SHFILEOPSTRUCTW","features":[3,111]},{"name":"SHFMT_CANCEL","features":[111]},{"name":"SHFMT_ERROR","features":[111]},{"name":"SHFMT_ID","features":[111]},{"name":"SHFMT_ID_DEFAULT","features":[111]},{"name":"SHFMT_NOFORMAT","features":[111]},{"name":"SHFMT_OPT","features":[111]},{"name":"SHFMT_OPT_FULL","features":[111]},{"name":"SHFMT_OPT_NONE","features":[111]},{"name":"SHFMT_OPT_SYSONLY","features":[111]},{"name":"SHFMT_RET","features":[111]},{"name":"SHFOLDERCUSTOMSETTINGS","features":[111]},{"name":"SHFileOperationA","features":[3,111]},{"name":"SHFileOperationW","features":[3,111]},{"name":"SHFindFiles","features":[3,220]},{"name":"SHFind_InitMenuPopup","features":[3,111,52]},{"name":"SHFlushSFCache","features":[111]},{"name":"SHFormatDateTimeA","features":[3,111]},{"name":"SHFormatDateTimeW","features":[3,111]},{"name":"SHFormatDrive","features":[3,111]},{"name":"SHFree","features":[111]},{"name":"SHFreeNameMappings","features":[3,111]},{"name":"SHFreeShared","features":[3,111]},{"name":"SHGDFIL_DESCRIPTIONID","features":[111]},{"name":"SHGDFIL_FINDDATA","features":[111]},{"name":"SHGDFIL_FORMAT","features":[111]},{"name":"SHGDFIL_NETRESOURCE","features":[111]},{"name":"SHGDNF","features":[111]},{"name":"SHGDN_FORADDRESSBAR","features":[111]},{"name":"SHGDN_FOREDITING","features":[111]},{"name":"SHGDN_FORPARSING","features":[111]},{"name":"SHGDN_INFOLDER","features":[111]},{"name":"SHGDN_NORMAL","features":[111]},{"name":"SHGFI_ADDOVERLAYS","features":[111]},{"name":"SHGFI_ATTRIBUTES","features":[111]},{"name":"SHGFI_ATTR_SPECIFIED","features":[111]},{"name":"SHGFI_DISPLAYNAME","features":[111]},{"name":"SHGFI_EXETYPE","features":[111]},{"name":"SHGFI_FLAGS","features":[111]},{"name":"SHGFI_ICON","features":[111]},{"name":"SHGFI_ICONLOCATION","features":[111]},{"name":"SHGFI_LARGEICON","features":[111]},{"name":"SHGFI_LINKOVERLAY","features":[111]},{"name":"SHGFI_OPENICON","features":[111]},{"name":"SHGFI_OVERLAYINDEX","features":[111]},{"name":"SHGFI_PIDL","features":[111]},{"name":"SHGFI_SELECTED","features":[111]},{"name":"SHGFI_SHELLICONSIZE","features":[111]},{"name":"SHGFI_SMALLICON","features":[111]},{"name":"SHGFI_SYSICONINDEX","features":[111]},{"name":"SHGFI_TYPENAME","features":[111]},{"name":"SHGFI_USEFILEATTRIBUTES","features":[111]},{"name":"SHGFP_TYPE","features":[111]},{"name":"SHGFP_TYPE_CURRENT","features":[111]},{"name":"SHGFP_TYPE_DEFAULT","features":[111]},{"name":"SHGLOBALCOUNTER","features":[111]},{"name":"SHGNLI_NOLNK","features":[111]},{"name":"SHGNLI_NOLOCNAME","features":[111]},{"name":"SHGNLI_NOUNIQUE","features":[111]},{"name":"SHGNLI_PIDL","features":[111]},{"name":"SHGNLI_PREFIXNAME","features":[111]},{"name":"SHGNLI_USEURLEXT","features":[111]},{"name":"SHGSI_FLAGS","features":[111]},{"name":"SHGSI_ICON","features":[111]},{"name":"SHGSI_ICONLOCATION","features":[111]},{"name":"SHGSI_LARGEICON","features":[111]},{"name":"SHGSI_LINKOVERLAY","features":[111]},{"name":"SHGSI_SELECTED","features":[111]},{"name":"SHGSI_SHELLICONSIZE","features":[111]},{"name":"SHGSI_SMALLICON","features":[111]},{"name":"SHGSI_SYSICONINDEX","features":[111]},{"name":"SHGVSPB_ALLFOLDERS","features":[111]},{"name":"SHGVSPB_ALLUSERS","features":[111]},{"name":"SHGVSPB_INHERIT","features":[111]},{"name":"SHGVSPB_NOAUTODEFAULTS","features":[111]},{"name":"SHGVSPB_PERFOLDER","features":[111]},{"name":"SHGVSPB_PERUSER","features":[111]},{"name":"SHGVSPB_ROAM","features":[111]},{"name":"SHGetAttributesFromDataObject","features":[111]},{"name":"SHGetDataFromIDListA","features":[220]},{"name":"SHGetDataFromIDListW","features":[220]},{"name":"SHGetDesktopFolder","features":[111]},{"name":"SHGetDiskFreeSpaceExA","features":[3,111]},{"name":"SHGetDiskFreeSpaceExW","features":[3,111]},{"name":"SHGetDriveMedia","features":[111]},{"name":"SHGetFileInfoA","features":[23,111,52]},{"name":"SHGetFileInfoW","features":[23,111,52]},{"name":"SHGetFolderLocation","features":[3,220]},{"name":"SHGetFolderPathA","features":[3,111]},{"name":"SHGetFolderPathAndSubDirA","features":[3,111]},{"name":"SHGetFolderPathAndSubDirW","features":[3,111]},{"name":"SHGetFolderPathW","features":[3,111]},{"name":"SHGetIDListFromObject","features":[220]},{"name":"SHGetIconOverlayIndexA","features":[111]},{"name":"SHGetIconOverlayIndexW","features":[111]},{"name":"SHGetImageList","features":[111]},{"name":"SHGetInstanceExplorer","features":[111]},{"name":"SHGetInverseCMAP","features":[111]},{"name":"SHGetItemFromDataObject","features":[111]},{"name":"SHGetItemFromObject","features":[111]},{"name":"SHGetKnownFolderIDList","features":[3,220]},{"name":"SHGetKnownFolderItem","features":[3,111]},{"name":"SHGetKnownFolderPath","features":[3,111]},{"name":"SHGetLocalizedName","features":[111]},{"name":"SHGetMalloc","features":[111]},{"name":"SHGetNameFromIDList","features":[220]},{"name":"SHGetNewLinkInfoA","features":[3,111]},{"name":"SHGetNewLinkInfoW","features":[3,111]},{"name":"SHGetPathFromIDListA","features":[3,220]},{"name":"SHGetPathFromIDListEx","features":[3,220]},{"name":"SHGetPathFromIDListW","features":[3,220]},{"name":"SHGetRealIDL","features":[220]},{"name":"SHGetSetFolderCustomSettings","features":[111]},{"name":"SHGetSetSettings","features":[3,111]},{"name":"SHGetSettings","features":[111]},{"name":"SHGetSpecialFolderLocation","features":[3,220]},{"name":"SHGetSpecialFolderPathA","features":[3,111]},{"name":"SHGetSpecialFolderPathW","features":[3,111]},{"name":"SHGetStockIconInfo","features":[111,52]},{"name":"SHGetTemporaryPropertyForItem","features":[3,65,44,62]},{"name":"SHGetThreadRef","features":[111]},{"name":"SHGetUnreadMailCountW","features":[3,51,111]},{"name":"SHGetValueA","features":[3,51,111]},{"name":"SHGetValueW","features":[3,51,111]},{"name":"SHGetViewStatePropertyBag","features":[220]},{"name":"SHGlobalCounterDecrement","features":[111]},{"name":"SHGlobalCounterGetValue","features":[111]},{"name":"SHGlobalCounterIncrement","features":[111]},{"name":"SHHLNF_NOAUTOSELECT","features":[111]},{"name":"SHHLNF_WRITENOHISTORY","features":[111]},{"name":"SHHandleUpdateImage","features":[220]},{"name":"SHILCreateFromPath","features":[220]},{"name":"SHIL_EXTRALARGE","features":[111]},{"name":"SHIL_JUMBO","features":[111]},{"name":"SHIL_LARGE","features":[111]},{"name":"SHIL_LAST","features":[111]},{"name":"SHIL_SMALL","features":[111]},{"name":"SHIL_SYSSMALL","features":[111]},{"name":"SHIMGDEC_DEFAULT","features":[111]},{"name":"SHIMGDEC_LOADFULL","features":[111]},{"name":"SHIMGDEC_THUMBNAIL","features":[111]},{"name":"SHIMGKEY_QUALITY","features":[111]},{"name":"SHIMGKEY_RAWFORMAT","features":[111]},{"name":"SHIMSTCAPFLAG_LOCKABLE","features":[111]},{"name":"SHIMSTCAPFLAG_PURGEABLE","features":[111]},{"name":"SHInvokePrinterCommandA","features":[3,111]},{"name":"SHInvokePrinterCommandW","features":[3,111]},{"name":"SHIsFileAvailableOffline","features":[111]},{"name":"SHIsLowMemoryMachine","features":[3,111]},{"name":"SHLimitInputEdit","features":[3,111]},{"name":"SHLoadInProc","features":[111]},{"name":"SHLoadIndirectString","features":[111]},{"name":"SHLoadNonloadedIconOverlayIdentifiers","features":[111]},{"name":"SHLockShared","features":[3,111]},{"name":"SHMapPIDLToSystemImageListIndex","features":[220]},{"name":"SHMessageBoxCheckA","features":[3,111]},{"name":"SHMessageBoxCheckW","features":[3,111]},{"name":"SHMultiFileProperties","features":[111]},{"name":"SHNAMEMAPPINGA","features":[111]},{"name":"SHNAMEMAPPINGA","features":[111]},{"name":"SHNAMEMAPPINGW","features":[111]},{"name":"SHNAMEMAPPINGW","features":[111]},{"name":"SHOP_FILEPATH","features":[111]},{"name":"SHOP_PRINTERNAME","features":[111]},{"name":"SHOP_TYPE","features":[111]},{"name":"SHOP_VOLUMEGUID","features":[111]},{"name":"SHObjectProperties","features":[3,111]},{"name":"SHOpenFolderAndSelectItems","features":[220]},{"name":"SHOpenPropSheetW","features":[3,51,111]},{"name":"SHOpenRegStream2A","features":[51,111]},{"name":"SHOpenRegStream2W","features":[51,111]},{"name":"SHOpenRegStreamA","features":[51,111]},{"name":"SHOpenRegStreamW","features":[51,111]},{"name":"SHOpenWithDialog","features":[3,111]},{"name":"SHPPFW_ASKDIRCREATE","features":[111]},{"name":"SHPPFW_DIRCREATE","features":[111]},{"name":"SHPPFW_IGNOREFILENAME","features":[111]},{"name":"SHPPFW_MEDIACHECKONLY","features":[111]},{"name":"SHPPFW_NONE","features":[111]},{"name":"SHPPFW_NOWRITECHECK","features":[111]},{"name":"SHPWHF_ANYLOCATION","features":[111]},{"name":"SHPWHF_NOFILESELECTOR","features":[111]},{"name":"SHPWHF_NONETPLACECREATE","features":[111]},{"name":"SHPWHF_NORECOMPRESS","features":[111]},{"name":"SHPWHF_USEMRU","features":[111]},{"name":"SHPWHF_VALIDATEVIAWEBFOLDERS","features":[111]},{"name":"SHParseDisplayName","features":[220]},{"name":"SHPathPrepareForWriteA","features":[3,111]},{"name":"SHPathPrepareForWriteW","features":[3,111]},{"name":"SHQUERYRBINFO","features":[111]},{"name":"SHQUERYRBINFO","features":[111]},{"name":"SHQueryInfoKeyA","features":[3,51,111]},{"name":"SHQueryInfoKeyW","features":[3,51,111]},{"name":"SHQueryRecycleBinA","features":[111]},{"name":"SHQueryRecycleBinW","features":[111]},{"name":"SHQueryUserNotificationState","features":[111]},{"name":"SHQueryValueExA","features":[3,51,111]},{"name":"SHQueryValueExW","features":[3,51,111]},{"name":"SHREGDEL_BOTH","features":[111]},{"name":"SHREGDEL_DEFAULT","features":[111]},{"name":"SHREGDEL_FLAGS","features":[111]},{"name":"SHREGDEL_HKCU","features":[111]},{"name":"SHREGDEL_HKLM","features":[111]},{"name":"SHREGENUM_BOTH","features":[111]},{"name":"SHREGENUM_DEFAULT","features":[111]},{"name":"SHREGENUM_FLAGS","features":[111]},{"name":"SHREGENUM_HKCU","features":[111]},{"name":"SHREGENUM_HKLM","features":[111]},{"name":"SHREGSET_FORCE_HKCU","features":[111]},{"name":"SHREGSET_FORCE_HKLM","features":[111]},{"name":"SHREGSET_HKCU","features":[111]},{"name":"SHREGSET_HKLM","features":[111]},{"name":"SHRegCloseUSKey","features":[3,111]},{"name":"SHRegCreateUSKeyA","features":[3,111]},{"name":"SHRegCreateUSKeyW","features":[3,111]},{"name":"SHRegDeleteEmptyUSKeyA","features":[3,111]},{"name":"SHRegDeleteEmptyUSKeyW","features":[3,111]},{"name":"SHRegDeleteUSValueA","features":[3,111]},{"name":"SHRegDeleteUSValueW","features":[3,111]},{"name":"SHRegDuplicateHKey","features":[51,111]},{"name":"SHRegEnumUSKeyA","features":[3,111]},{"name":"SHRegEnumUSKeyW","features":[3,111]},{"name":"SHRegEnumUSValueA","features":[3,111]},{"name":"SHRegEnumUSValueW","features":[3,111]},{"name":"SHRegGetBoolUSValueA","features":[3,111]},{"name":"SHRegGetBoolUSValueW","features":[3,111]},{"name":"SHRegGetIntW","features":[51,111]},{"name":"SHRegGetPathA","features":[3,51,111]},{"name":"SHRegGetPathW","features":[3,51,111]},{"name":"SHRegGetUSValueA","features":[3,111]},{"name":"SHRegGetUSValueW","features":[3,111]},{"name":"SHRegGetValueA","features":[3,51,111]},{"name":"SHRegGetValueFromHKCUHKLM","features":[3,111]},{"name":"SHRegGetValueW","features":[3,51,111]},{"name":"SHRegOpenUSKeyA","features":[3,111]},{"name":"SHRegOpenUSKeyW","features":[3,111]},{"name":"SHRegQueryInfoUSKeyA","features":[3,111]},{"name":"SHRegQueryInfoUSKeyW","features":[3,111]},{"name":"SHRegQueryUSValueA","features":[3,111]},{"name":"SHRegQueryUSValueW","features":[3,111]},{"name":"SHRegSetPathA","features":[3,51,111]},{"name":"SHRegSetPathW","features":[3,51,111]},{"name":"SHRegSetUSValueA","features":[3,111]},{"name":"SHRegSetUSValueW","features":[3,111]},{"name":"SHRegWriteUSValueA","features":[3,111]},{"name":"SHRegWriteUSValueW","features":[3,111]},{"name":"SHReleaseThreadRef","features":[111]},{"name":"SHRemoveLocalizedName","features":[111]},{"name":"SHReplaceFromPropSheetExtArray","features":[3,42,111]},{"name":"SHResolveLibrary","features":[111]},{"name":"SHRestricted","features":[111]},{"name":"SHSTOCKICONID","features":[111]},{"name":"SHSTOCKICONINFO","features":[111,52]},{"name":"SHSTOCKICONINFO","features":[111,52]},{"name":"SHSendMessageBroadcastA","features":[3,111]},{"name":"SHSendMessageBroadcastW","features":[3,111]},{"name":"SHSetDefaultProperties","features":[3,111]},{"name":"SHSetFolderPathA","features":[3,111]},{"name":"SHSetFolderPathW","features":[3,111]},{"name":"SHSetInstanceExplorer","features":[111]},{"name":"SHSetKnownFolderPath","features":[3,111]},{"name":"SHSetLocalizedName","features":[111]},{"name":"SHSetTemporaryPropertyForItem","features":[3,65,44,62]},{"name":"SHSetThreadRef","features":[111]},{"name":"SHSetUnreadMailCountW","features":[111]},{"name":"SHSetValueA","features":[51,111]},{"name":"SHSetValueW","features":[51,111]},{"name":"SHShellFolderView_Message","features":[3,111]},{"name":"SHShowManageLibraryUI","features":[3,111]},{"name":"SHSimpleIDListFromPath","features":[220]},{"name":"SHSkipJunction","features":[3,111]},{"name":"SHStartNetConnectionDialogW","features":[3,111]},{"name":"SHStrDupA","features":[111]},{"name":"SHStrDupW","features":[111]},{"name":"SHStripMneumonicA","features":[111]},{"name":"SHStripMneumonicW","features":[111]},{"name":"SHTestTokenMembership","features":[3,111]},{"name":"SHUnicodeToAnsi","features":[111]},{"name":"SHUnicodeToUnicode","features":[111]},{"name":"SHUnlockShared","features":[3,111]},{"name":"SHUpdateImageA","features":[111]},{"name":"SHUpdateImageW","features":[111]},{"name":"SHValidateUNC","features":[3,111]},{"name":"SIATTRIBFLAGS","features":[111]},{"name":"SIATTRIBFLAGS_ALLITEMS","features":[111]},{"name":"SIATTRIBFLAGS_AND","features":[111]},{"name":"SIATTRIBFLAGS_APPCOMPAT","features":[111]},{"name":"SIATTRIBFLAGS_MASK","features":[111]},{"name":"SIATTRIBFLAGS_OR","features":[111]},{"name":"SICHINT_ALLFIELDS","features":[111]},{"name":"SICHINT_CANONICAL","features":[111]},{"name":"SICHINT_DISPLAY","features":[111]},{"name":"SICHINT_TEST_FILESYSPATH_IF_NOT_EQUAL","features":[111]},{"name":"SID_CommandsPropertyBag","features":[111]},{"name":"SID_CtxQueryAssociations","features":[111]},{"name":"SID_DefView","features":[111]},{"name":"SID_LaunchSourceAppUserModelId","features":[111]},{"name":"SID_LaunchSourceViewSizePreference","features":[111]},{"name":"SID_LaunchTargetViewSizePreference","features":[111]},{"name":"SID_MenuShellFolder","features":[111]},{"name":"SID_SCommDlgBrowser","features":[111]},{"name":"SID_SCommandBarState","features":[111]},{"name":"SID_SGetViewFromViewDual","features":[111]},{"name":"SID_SInPlaceBrowser","features":[111]},{"name":"SID_SMenuBandBKContextMenu","features":[111]},{"name":"SID_SMenuBandBottom","features":[111]},{"name":"SID_SMenuBandBottomSelected","features":[111]},{"name":"SID_SMenuBandChild","features":[111]},{"name":"SID_SMenuBandContextMenuModifier","features":[111]},{"name":"SID_SMenuBandParent","features":[111]},{"name":"SID_SMenuBandTop","features":[111]},{"name":"SID_SMenuPopup","features":[111]},{"name":"SID_SSearchBoxInfo","features":[111]},{"name":"SID_STopLevelBrowser","features":[111]},{"name":"SID_STopWindow","features":[111]},{"name":"SID_ShellExecuteNamedPropertyStore","features":[111]},{"name":"SID_URLExecutionContext","features":[111]},{"name":"SIGDN","features":[111]},{"name":"SIGDN_DESKTOPABSOLUTEEDITING","features":[111]},{"name":"SIGDN_DESKTOPABSOLUTEPARSING","features":[111]},{"name":"SIGDN_FILESYSPATH","features":[111]},{"name":"SIGDN_NORMALDISPLAY","features":[111]},{"name":"SIGDN_PARENTRELATIVE","features":[111]},{"name":"SIGDN_PARENTRELATIVEEDITING","features":[111]},{"name":"SIGDN_PARENTRELATIVEFORADDRESSBAR","features":[111]},{"name":"SIGDN_PARENTRELATIVEFORUI","features":[111]},{"name":"SIGDN_PARENTRELATIVEPARSING","features":[111]},{"name":"SIGDN_URL","features":[111]},{"name":"SIID_APPLICATION","features":[111]},{"name":"SIID_AUDIOFILES","features":[111]},{"name":"SIID_AUTOLIST","features":[111]},{"name":"SIID_CLUSTEREDDRIVE","features":[111]},{"name":"SIID_DELETE","features":[111]},{"name":"SIID_DESKTOPPC","features":[111]},{"name":"SIID_DEVICEAUDIOPLAYER","features":[111]},{"name":"SIID_DEVICECAMERA","features":[111]},{"name":"SIID_DEVICECELLPHONE","features":[111]},{"name":"SIID_DEVICEVIDEOCAMERA","features":[111]},{"name":"SIID_DOCASSOC","features":[111]},{"name":"SIID_DOCNOASSOC","features":[111]},{"name":"SIID_DRIVE35","features":[111]},{"name":"SIID_DRIVE525","features":[111]},{"name":"SIID_DRIVEBD","features":[111]},{"name":"SIID_DRIVECD","features":[111]},{"name":"SIID_DRIVEDVD","features":[111]},{"name":"SIID_DRIVEFIXED","features":[111]},{"name":"SIID_DRIVEHDDVD","features":[111]},{"name":"SIID_DRIVENET","features":[111]},{"name":"SIID_DRIVENETDISABLED","features":[111]},{"name":"SIID_DRIVERAM","features":[111]},{"name":"SIID_DRIVEREMOVE","features":[111]},{"name":"SIID_DRIVEUNKNOWN","features":[111]},{"name":"SIID_ERROR","features":[111]},{"name":"SIID_FIND","features":[111]},{"name":"SIID_FOLDER","features":[111]},{"name":"SIID_FOLDERBACK","features":[111]},{"name":"SIID_FOLDERFRONT","features":[111]},{"name":"SIID_FOLDEROPEN","features":[111]},{"name":"SIID_HELP","features":[111]},{"name":"SIID_IMAGEFILES","features":[111]},{"name":"SIID_INFO","features":[111]},{"name":"SIID_INTERNET","features":[111]},{"name":"SIID_KEY","features":[111]},{"name":"SIID_LINK","features":[111]},{"name":"SIID_LOCK","features":[111]},{"name":"SIID_MAX_ICONS","features":[111]},{"name":"SIID_MEDIAAUDIODVD","features":[111]},{"name":"SIID_MEDIABDR","features":[111]},{"name":"SIID_MEDIABDRE","features":[111]},{"name":"SIID_MEDIABDROM","features":[111]},{"name":"SIID_MEDIABLANKCD","features":[111]},{"name":"SIID_MEDIABLURAY","features":[111]},{"name":"SIID_MEDIACDAUDIO","features":[111]},{"name":"SIID_MEDIACDAUDIOPLUS","features":[111]},{"name":"SIID_MEDIACDBURN","features":[111]},{"name":"SIID_MEDIACDR","features":[111]},{"name":"SIID_MEDIACDROM","features":[111]},{"name":"SIID_MEDIACDRW","features":[111]},{"name":"SIID_MEDIACOMPACTFLASH","features":[111]},{"name":"SIID_MEDIADVD","features":[111]},{"name":"SIID_MEDIADVDPLUSR","features":[111]},{"name":"SIID_MEDIADVDPLUSRW","features":[111]},{"name":"SIID_MEDIADVDR","features":[111]},{"name":"SIID_MEDIADVDRAM","features":[111]},{"name":"SIID_MEDIADVDROM","features":[111]},{"name":"SIID_MEDIADVDRW","features":[111]},{"name":"SIID_MEDIAENHANCEDCD","features":[111]},{"name":"SIID_MEDIAENHANCEDDVD","features":[111]},{"name":"SIID_MEDIAHDDVD","features":[111]},{"name":"SIID_MEDIAHDDVDR","features":[111]},{"name":"SIID_MEDIAHDDVDRAM","features":[111]},{"name":"SIID_MEDIAHDDVDROM","features":[111]},{"name":"SIID_MEDIAMOVIEDVD","features":[111]},{"name":"SIID_MEDIASMARTMEDIA","features":[111]},{"name":"SIID_MEDIASVCD","features":[111]},{"name":"SIID_MEDIAVCD","features":[111]},{"name":"SIID_MIXEDFILES","features":[111]},{"name":"SIID_MOBILEPC","features":[111]},{"name":"SIID_MYNETWORK","features":[111]},{"name":"SIID_NETWORKCONNECT","features":[111]},{"name":"SIID_PRINTER","features":[111]},{"name":"SIID_PRINTERFAX","features":[111]},{"name":"SIID_PRINTERFAXNET","features":[111]},{"name":"SIID_PRINTERFILE","features":[111]},{"name":"SIID_PRINTERNET","features":[111]},{"name":"SIID_RECYCLER","features":[111]},{"name":"SIID_RECYCLERFULL","features":[111]},{"name":"SIID_RENAME","features":[111]},{"name":"SIID_SERVER","features":[111]},{"name":"SIID_SERVERSHARE","features":[111]},{"name":"SIID_SETTINGS","features":[111]},{"name":"SIID_SHARE","features":[111]},{"name":"SIID_SHIELD","features":[111]},{"name":"SIID_SLOWFILE","features":[111]},{"name":"SIID_SOFTWARE","features":[111]},{"name":"SIID_STACK","features":[111]},{"name":"SIID_STUFFEDFOLDER","features":[111]},{"name":"SIID_USERS","features":[111]},{"name":"SIID_VIDEOFILES","features":[111]},{"name":"SIID_WARNING","features":[111]},{"name":"SIID_WORLD","features":[111]},{"name":"SIID_ZIPFILE","features":[111]},{"name":"SIIGBF","features":[111]},{"name":"SIIGBF_BIGGERSIZEOK","features":[111]},{"name":"SIIGBF_CROPTOSQUARE","features":[111]},{"name":"SIIGBF_ICONBACKGROUND","features":[111]},{"name":"SIIGBF_ICONONLY","features":[111]},{"name":"SIIGBF_INCACHEONLY","features":[111]},{"name":"SIIGBF_MEMORYONLY","features":[111]},{"name":"SIIGBF_RESIZETOFIT","features":[111]},{"name":"SIIGBF_SCALEUP","features":[111]},{"name":"SIIGBF_THUMBNAILONLY","features":[111]},{"name":"SIIGBF_WIDETHUMBNAILS","features":[111]},{"name":"SIOM_ICONINDEX","features":[111]},{"name":"SIOM_OVERLAYINDEX","features":[111]},{"name":"SIOM_RESERVED_DEFAULT","features":[111]},{"name":"SIOM_RESERVED_LINK","features":[111]},{"name":"SIOM_RESERVED_SHARED","features":[111]},{"name":"SIOM_RESERVED_SLOWFILE","features":[111]},{"name":"SLDF_ALLOW_LINK_TO_LINK","features":[111]},{"name":"SLDF_DEFAULT","features":[111]},{"name":"SLDF_DISABLE_KNOWNFOLDER_RELATIVE_TRACKING","features":[111]},{"name":"SLDF_DISABLE_LINK_PATH_TRACKING","features":[111]},{"name":"SLDF_ENABLE_TARGET_METADATA","features":[111]},{"name":"SLDF_FORCE_NO_LINKINFO","features":[111]},{"name":"SLDF_FORCE_NO_LINKTRACK","features":[111]},{"name":"SLDF_FORCE_UNCNAME","features":[111]},{"name":"SLDF_HAS_ARGS","features":[111]},{"name":"SLDF_HAS_DARWINID","features":[111]},{"name":"SLDF_HAS_EXP_ICON_SZ","features":[111]},{"name":"SLDF_HAS_EXP_SZ","features":[111]},{"name":"SLDF_HAS_ICONLOCATION","features":[111]},{"name":"SLDF_HAS_ID_LIST","features":[111]},{"name":"SLDF_HAS_LINK_INFO","features":[111]},{"name":"SLDF_HAS_NAME","features":[111]},{"name":"SLDF_HAS_RELPATH","features":[111]},{"name":"SLDF_HAS_WORKINGDIR","features":[111]},{"name":"SLDF_KEEP_LOCAL_IDLIST_FOR_UNC_TARGET","features":[111]},{"name":"SLDF_NO_KF_ALIAS","features":[111]},{"name":"SLDF_NO_PIDL_ALIAS","features":[111]},{"name":"SLDF_PERSIST_VOLUME_ID_RELATIVE","features":[111]},{"name":"SLDF_PREFER_ENVIRONMENT_PATH","features":[111]},{"name":"SLDF_RESERVED","features":[111]},{"name":"SLDF_RUNAS_USER","features":[111]},{"name":"SLDF_RUN_IN_SEPARATE","features":[111]},{"name":"SLDF_RUN_WITH_SHIMLAYER","features":[111]},{"name":"SLDF_UNALIAS_ON_SAVE","features":[111]},{"name":"SLDF_UNICODE","features":[111]},{"name":"SLDF_VALID","features":[111]},{"name":"SLGP_FLAGS","features":[111]},{"name":"SLGP_RAWPATH","features":[111]},{"name":"SLGP_RELATIVEPRIORITY","features":[111]},{"name":"SLGP_SHORTPATH","features":[111]},{"name":"SLGP_UNCPRIORITY","features":[111]},{"name":"SLOWAPPINFO","features":[3,111]},{"name":"SLR_ANY_MATCH","features":[111]},{"name":"SLR_FLAGS","features":[111]},{"name":"SLR_INVOKE_MSI","features":[111]},{"name":"SLR_KNOWNFOLDER","features":[111]},{"name":"SLR_MACHINE_IN_LOCAL_TARGET","features":[111]},{"name":"SLR_NOLINKINFO","features":[111]},{"name":"SLR_NONE","features":[111]},{"name":"SLR_NOSEARCH","features":[111]},{"name":"SLR_NOTRACK","features":[111]},{"name":"SLR_NOUPDATE","features":[111]},{"name":"SLR_NO_OBJECT_ID","features":[111]},{"name":"SLR_NO_UI","features":[111]},{"name":"SLR_NO_UI_WITH_MSG_PUMP","features":[111]},{"name":"SLR_OFFER_DELETE_WITHOUT_FILE","features":[111]},{"name":"SLR_UPDATE","features":[111]},{"name":"SLR_UPDATE_MACHINE_AND_SID","features":[111]},{"name":"SMAE_CONTRACTED","features":[111]},{"name":"SMAE_EXPANDED","features":[111]},{"name":"SMAE_USER","features":[111]},{"name":"SMAE_VALID","features":[111]},{"name":"SMCSHCHANGENOTIFYSTRUCT","features":[220]},{"name":"SMC_AUTOEXPANDCHANGE","features":[111]},{"name":"SMC_CHEVRONEXPAND","features":[111]},{"name":"SMC_CHEVRONGETTIP","features":[111]},{"name":"SMC_CREATE","features":[111]},{"name":"SMC_DEFAULTICON","features":[111]},{"name":"SMC_DEMOTE","features":[111]},{"name":"SMC_DISPLAYCHEVRONTIP","features":[111]},{"name":"SMC_EXITMENU","features":[111]},{"name":"SMC_GETAUTOEXPANDSTATE","features":[111]},{"name":"SMC_GETBKCONTEXTMENU","features":[111]},{"name":"SMC_GETCONTEXTMENUMODIFIER","features":[111]},{"name":"SMC_GETINFO","features":[111]},{"name":"SMC_GETOBJECT","features":[111]},{"name":"SMC_GETSFINFO","features":[111]},{"name":"SMC_GETSFOBJECT","features":[111]},{"name":"SMC_INITMENU","features":[111]},{"name":"SMC_NEWITEM","features":[111]},{"name":"SMC_OPEN","features":[111]},{"name":"SMC_PROMOTE","features":[111]},{"name":"SMC_REFRESH","features":[111]},{"name":"SMC_SETSFOBJECT","features":[111]},{"name":"SMC_SFDDRESTRICTED","features":[111]},{"name":"SMC_SFEXEC","features":[111]},{"name":"SMC_SFEXEC_MIDDLE","features":[111]},{"name":"SMC_SFSELECTITEM","features":[111]},{"name":"SMC_SHCHANGENOTIFY","features":[111]},{"name":"SMDATA","features":[3,220,52]},{"name":"SMDM_HMENU","features":[111]},{"name":"SMDM_SHELLFOLDER","features":[111]},{"name":"SMDM_TOOLBAR","features":[111]},{"name":"SMIF_ACCELERATOR","features":[111]},{"name":"SMIF_ALTSTATE","features":[111]},{"name":"SMIF_CHECKED","features":[111]},{"name":"SMIF_DEMOTED","features":[111]},{"name":"SMIF_DISABLED","features":[111]},{"name":"SMIF_DRAGNDROP","features":[111]},{"name":"SMIF_DROPCASCADE","features":[111]},{"name":"SMIF_DROPTARGET","features":[111]},{"name":"SMIF_HIDDEN","features":[111]},{"name":"SMIF_ICON","features":[111]},{"name":"SMIF_NEW","features":[111]},{"name":"SMIF_SUBMENU","features":[111]},{"name":"SMIF_TRACKPOPUP","features":[111]},{"name":"SMIM_FLAGS","features":[111]},{"name":"SMIM_ICON","features":[111]},{"name":"SMIM_TYPE","features":[111]},{"name":"SMINFO","features":[111]},{"name":"SMINFOFLAGS","features":[111]},{"name":"SMINFOMASK","features":[111]},{"name":"SMINFOTYPE","features":[111]},{"name":"SMINIT_AUTOEXPAND","features":[111]},{"name":"SMINIT_AUTOTOOLTIP","features":[111]},{"name":"SMINIT_CACHED","features":[111]},{"name":"SMINIT_DEFAULT","features":[111]},{"name":"SMINIT_DROPONCONTAINER","features":[111]},{"name":"SMINIT_HORIZONTAL","features":[111]},{"name":"SMINIT_RESTRICT_DRAGDROP","features":[111]},{"name":"SMINIT_TOPLEVEL","features":[111]},{"name":"SMINIT_VERTICAL","features":[111]},{"name":"SMINV_ID","features":[111]},{"name":"SMINV_REFRESH","features":[111]},{"name":"SMIT_SEPARATOR","features":[111]},{"name":"SMIT_STRING","features":[111]},{"name":"SMSET_BOTTOM","features":[111]},{"name":"SMSET_DONTOWN","features":[111]},{"name":"SMSET_TOP","features":[111]},{"name":"SORTCOLUMN","features":[62]},{"name":"SORTDIRECTION","features":[111]},{"name":"SORT_ASCENDING","features":[111]},{"name":"SORT_DESCENDING","features":[111]},{"name":"SORT_ORDER_TYPE","features":[111]},{"name":"SOT_DEFAULT","features":[111]},{"name":"SOT_IGNORE_FOLDERNESS","features":[111]},{"name":"SPACTION","features":[111]},{"name":"SPACTION_APPLYINGATTRIBS","features":[111]},{"name":"SPACTION_CALCULATING","features":[111]},{"name":"SPACTION_COPYING","features":[111]},{"name":"SPACTION_COPY_MOVING","features":[111]},{"name":"SPACTION_DELETING","features":[111]},{"name":"SPACTION_DOWNLOADING","features":[111]},{"name":"SPACTION_FORMATTING","features":[111]},{"name":"SPACTION_MOVING","features":[111]},{"name":"SPACTION_NONE","features":[111]},{"name":"SPACTION_RECYCLING","features":[111]},{"name":"SPACTION_RENAMING","features":[111]},{"name":"SPACTION_SEARCHING_FILES","features":[111]},{"name":"SPACTION_SEARCHING_INTERNET","features":[111]},{"name":"SPACTION_UPLOADING","features":[111]},{"name":"SPBEGINF_AUTOTIME","features":[111]},{"name":"SPBEGINF_MARQUEEPROGRESS","features":[111]},{"name":"SPBEGINF_NOCANCELBUTTON","features":[111]},{"name":"SPBEGINF_NOPROGRESSBAR","features":[111]},{"name":"SPBEGINF_NORMAL","features":[111]},{"name":"SPFF_CREATED_ON_THIS_DEVICE","features":[111]},{"name":"SPFF_DOWNLOAD_BY_DEFAULT","features":[111]},{"name":"SPFF_NONE","features":[111]},{"name":"SPINITF_MODAL","features":[111]},{"name":"SPINITF_NOMINIMIZE","features":[111]},{"name":"SPINITF_NORMAL","features":[111]},{"name":"SPMODE_BROWSER","features":[111]},{"name":"SPMODE_DBMON","features":[111]},{"name":"SPMODE_DEBUGBREAK","features":[111]},{"name":"SPMODE_DEBUGOUT","features":[111]},{"name":"SPMODE_EVENT","features":[111]},{"name":"SPMODE_EVENTTRACE","features":[111]},{"name":"SPMODE_FLUSH","features":[111]},{"name":"SPMODE_FORMATTEXT","features":[111]},{"name":"SPMODE_MEMWATCH","features":[111]},{"name":"SPMODE_MSGTRACE","features":[111]},{"name":"SPMODE_MSVM","features":[111]},{"name":"SPMODE_MULTISTOP","features":[111]},{"name":"SPMODE_PERFTAGS","features":[111]},{"name":"SPMODE_PROFILE","features":[111]},{"name":"SPMODE_SHELL","features":[111]},{"name":"SPMODE_TEST","features":[111]},{"name":"SPTEXT","features":[111]},{"name":"SPTEXT_ACTIONDESCRIPTION","features":[111]},{"name":"SPTEXT_ACTIONDETAIL","features":[111]},{"name":"SRRF_NOEXPAND","features":[111]},{"name":"SRRF_NOVIRT","features":[111]},{"name":"SRRF_RM_ANY","features":[111]},{"name":"SRRF_RM_NORMAL","features":[111]},{"name":"SRRF_RM_SAFE","features":[111]},{"name":"SRRF_RM_SAFENETWORK","features":[111]},{"name":"SRRF_RT_ANY","features":[111]},{"name":"SRRF_RT_REG_BINARY","features":[111]},{"name":"SRRF_RT_REG_DWORD","features":[111]},{"name":"SRRF_RT_REG_EXPAND_SZ","features":[111]},{"name":"SRRF_RT_REG_MULTI_SZ","features":[111]},{"name":"SRRF_RT_REG_NONE","features":[111]},{"name":"SRRF_RT_REG_QWORD","features":[111]},{"name":"SRRF_RT_REG_SZ","features":[111]},{"name":"SRRF_ZEROONFAILURE","features":[111]},{"name":"SSF_AUTOCHECKSELECT","features":[111]},{"name":"SSF_DESKTOPHTML","features":[111]},{"name":"SSF_DONTPRETTYPATH","features":[111]},{"name":"SSF_DOUBLECLICKINWEBVIEW","features":[111]},{"name":"SSF_FILTER","features":[111]},{"name":"SSF_HIDDENFILEEXTS","features":[111]},{"name":"SSF_HIDEICONS","features":[111]},{"name":"SSF_ICONSONLY","features":[111]},{"name":"SSF_MAPNETDRVBUTTON","features":[111]},{"name":"SSF_MASK","features":[111]},{"name":"SSF_NOCONFIRMRECYCLE","features":[111]},{"name":"SSF_NONETCRAWLING","features":[111]},{"name":"SSF_SEPPROCESS","features":[111]},{"name":"SSF_SERVERADMINUI","features":[111]},{"name":"SSF_SHOWALLOBJECTS","features":[111]},{"name":"SSF_SHOWATTRIBCOL","features":[111]},{"name":"SSF_SHOWCOMPCOLOR","features":[111]},{"name":"SSF_SHOWEXTENSIONS","features":[111]},{"name":"SSF_SHOWINFOTIP","features":[111]},{"name":"SSF_SHOWSTARTPAGE","features":[111]},{"name":"SSF_SHOWSTATUSBAR","features":[111]},{"name":"SSF_SHOWSUPERHIDDEN","features":[111]},{"name":"SSF_SHOWSYSFILES","features":[111]},{"name":"SSF_SHOWTYPEOVERLAY","features":[111]},{"name":"SSF_SORTCOLUMNS","features":[111]},{"name":"SSF_STARTPANELON","features":[111]},{"name":"SSF_WEBVIEW","features":[111]},{"name":"SSF_WIN95CLASSIC","features":[111]},{"name":"SSM_CLEAR","features":[111]},{"name":"SSM_REFRESH","features":[111]},{"name":"SSM_SET","features":[111]},{"name":"SSM_UPDATE","features":[111]},{"name":"STGOP","features":[111]},{"name":"STGOP_APPLYPROPERTIES","features":[111]},{"name":"STGOP_COPY","features":[111]},{"name":"STGOP_MOVE","features":[111]},{"name":"STGOP_NEW","features":[111]},{"name":"STGOP_REMOVE","features":[111]},{"name":"STGOP_RENAME","features":[111]},{"name":"STGOP_SYNC","features":[111]},{"name":"STIF_DEFAULT","features":[111]},{"name":"STIF_SUPPORT_HEX","features":[111]},{"name":"STORAGE_PROVIDER_FILE_FLAGS","features":[111]},{"name":"STORE_E_NEWER_VERSION_AVAILABLE","features":[111]},{"name":"STPFLAG","features":[111]},{"name":"STPF_NONE","features":[111]},{"name":"STPF_USEAPPPEEKALWAYS","features":[111]},{"name":"STPF_USEAPPPEEKWHENACTIVE","features":[111]},{"name":"STPF_USEAPPTHUMBNAILALWAYS","features":[111]},{"name":"STPF_USEAPPTHUMBNAILWHENACTIVE","features":[111]},{"name":"STR_AVOID_DRIVE_RESTRICTION_POLICY","features":[111]},{"name":"STR_BIND_DELEGATE_CREATE_OBJECT","features":[111]},{"name":"STR_BIND_FOLDERS_READ_ONLY","features":[111]},{"name":"STR_BIND_FOLDER_ENUM_MODE","features":[111]},{"name":"STR_BIND_FORCE_FOLDER_SHORTCUT_RESOLVE","features":[111]},{"name":"STR_DONT_PARSE_RELATIVE","features":[111]},{"name":"STR_DONT_RESOLVE_LINK","features":[111]},{"name":"STR_ENUM_ITEMS_FLAGS","features":[111]},{"name":"STR_FILE_SYS_BIND_DATA","features":[111]},{"name":"STR_FILE_SYS_BIND_DATA_WIN7_FORMAT","features":[111]},{"name":"STR_GET_ASYNC_HANDLER","features":[111]},{"name":"STR_GPS_BESTEFFORT","features":[111]},{"name":"STR_GPS_DELAYCREATION","features":[111]},{"name":"STR_GPS_FASTPROPERTIESONLY","features":[111]},{"name":"STR_GPS_HANDLERPROPERTIESONLY","features":[111]},{"name":"STR_GPS_NO_OPLOCK","features":[111]},{"name":"STR_GPS_OPENSLOWITEM","features":[111]},{"name":"STR_INTERNAL_NAVIGATE","features":[111]},{"name":"STR_INTERNETFOLDER_PARSE_ONLY_URLMON_BINDABLE","features":[111]},{"name":"STR_ITEM_CACHE_CONTEXT","features":[111]},{"name":"STR_MYDOCS_CLSID","features":[111]},{"name":"STR_NO_VALIDATE_FILENAME_CHARS","features":[111]},{"name":"STR_PARSE_ALLOW_INTERNET_SHELL_FOLDERS","features":[111]},{"name":"STR_PARSE_AND_CREATE_ITEM","features":[111]},{"name":"STR_PARSE_DONT_REQUIRE_VALIDATED_URLS","features":[111]},{"name":"STR_PARSE_EXPLICIT_ASSOCIATION_SUCCESSFUL","features":[111]},{"name":"STR_PARSE_PARTIAL_IDLIST","features":[111]},{"name":"STR_PARSE_PREFER_FOLDER_BROWSING","features":[111]},{"name":"STR_PARSE_PREFER_WEB_BROWSING","features":[111]},{"name":"STR_PARSE_PROPERTYSTORE","features":[111]},{"name":"STR_PARSE_SHELL_PROTOCOL_TO_FILE_OBJECTS","features":[111]},{"name":"STR_PARSE_SHOW_NET_DIAGNOSTICS_UI","features":[111]},{"name":"STR_PARSE_SKIP_NET_CACHE","features":[111]},{"name":"STR_PARSE_TRANSLATE_ALIASES","features":[111]},{"name":"STR_PARSE_WITH_EXPLICIT_ASSOCAPP","features":[111]},{"name":"STR_PARSE_WITH_EXPLICIT_PROGID","features":[111]},{"name":"STR_PARSE_WITH_PROPERTIES","features":[111]},{"name":"STR_PROPERTYBAG_PARAM","features":[111]},{"name":"STR_REFERRER_IDENTIFIER","features":[111]},{"name":"STR_SKIP_BINDING_CLSID","features":[111]},{"name":"STR_STORAGEITEM_CREATION_FLAGS","features":[111]},{"name":"STR_TAB_REUSE_IDENTIFIER","features":[111]},{"name":"STR_TRACK_CLSID","features":[111]},{"name":"SUBCLASSPROC","features":[3,111]},{"name":"SV2CVW2_PARAMS","features":[3,111]},{"name":"SV3CVW3_DEFAULT","features":[111]},{"name":"SV3CVW3_FORCEFOLDERFLAGS","features":[111]},{"name":"SV3CVW3_FORCEVIEWMODE","features":[111]},{"name":"SV3CVW3_NONINTERACTIVE","features":[111]},{"name":"SVGIO_ALLVIEW","features":[111]},{"name":"SVGIO_BACKGROUND","features":[111]},{"name":"SVGIO_CHECKED","features":[111]},{"name":"SVGIO_FLAG_VIEWORDER","features":[111]},{"name":"SVGIO_SELECTION","features":[111]},{"name":"SVGIO_TYPE_MASK","features":[111]},{"name":"SVSI_CHECK","features":[111]},{"name":"SVSI_CHECK2","features":[111]},{"name":"SVSI_DESELECT","features":[111]},{"name":"SVSI_DESELECTOTHERS","features":[111]},{"name":"SVSI_EDIT","features":[111]},{"name":"SVSI_ENSUREVISIBLE","features":[111]},{"name":"SVSI_FOCUSED","features":[111]},{"name":"SVSI_KEYBOARDSELECT","features":[111]},{"name":"SVSI_NOTAKEFOCUS","features":[111]},{"name":"SVSI_POSITIONITEM","features":[111]},{"name":"SVSI_SELECT","features":[111]},{"name":"SVSI_SELECTIONMARK","features":[111]},{"name":"SVSI_TRANSLATEPT","features":[111]},{"name":"SVUIA_ACTIVATE_FOCUS","features":[111]},{"name":"SVUIA_ACTIVATE_NOFOCUS","features":[111]},{"name":"SVUIA_DEACTIVATE","features":[111]},{"name":"SVUIA_INPLACEACTIVATE","features":[111]},{"name":"SVUIA_STATUS","features":[111]},{"name":"SWC_3RDPARTY","features":[111]},{"name":"SWC_BROWSER","features":[111]},{"name":"SWC_CALLBACK","features":[111]},{"name":"SWC_DESKTOP","features":[111]},{"name":"SWC_EXPLORER","features":[111]},{"name":"SWFO_COOKIEPASSED","features":[111]},{"name":"SWFO_INCLUDEPENDING","features":[111]},{"name":"SWFO_NEEDDISPATCH","features":[111]},{"name":"SYNCMGRERRORFLAGS","features":[111]},{"name":"SYNCMGRERRORFLAG_ENABLEJUMPTEXT","features":[111]},{"name":"SYNCMGRFLAG","features":[111]},{"name":"SYNCMGRFLAG_CONNECT","features":[111]},{"name":"SYNCMGRFLAG_EVENTMASK","features":[111]},{"name":"SYNCMGRFLAG_IDLE","features":[111]},{"name":"SYNCMGRFLAG_INVOKE","features":[111]},{"name":"SYNCMGRFLAG_MANUAL","features":[111]},{"name":"SYNCMGRFLAG_MAYBOTHERUSER","features":[111]},{"name":"SYNCMGRFLAG_PENDINGDISCONNECT","features":[111]},{"name":"SYNCMGRFLAG_SCHEDULED","features":[111]},{"name":"SYNCMGRFLAG_SETTINGS","features":[111]},{"name":"SYNCMGRHANDLERFLAGS","features":[111]},{"name":"SYNCMGRHANDLERFLAG_MASK","features":[111]},{"name":"SYNCMGRHANDLERINFO","features":[111,52]},{"name":"SYNCMGRHANDLER_ALWAYSLISTHANDLER","features":[111]},{"name":"SYNCMGRHANDLER_HASPROPERTIES","features":[111]},{"name":"SYNCMGRHANDLER_HIDDEN","features":[111]},{"name":"SYNCMGRHANDLER_MAYESTABLISHCONNECTION","features":[111]},{"name":"SYNCMGRINVOKEFLAGS","features":[111]},{"name":"SYNCMGRINVOKE_MINIMIZED","features":[111]},{"name":"SYNCMGRINVOKE_STARTSYNC","features":[111]},{"name":"SYNCMGRITEM","features":[3,111,52]},{"name":"SYNCMGRITEMFLAGS","features":[111]},{"name":"SYNCMGRITEMSTATE","features":[111]},{"name":"SYNCMGRITEMSTATE_CHECKED","features":[111]},{"name":"SYNCMGRITEMSTATE_UNCHECKED","features":[111]},{"name":"SYNCMGRITEM_HASPROPERTIES","features":[111]},{"name":"SYNCMGRITEM_HIDDEN","features":[111]},{"name":"SYNCMGRITEM_ITEMFLAGMASK","features":[111]},{"name":"SYNCMGRITEM_LASTUPDATETIME","features":[111]},{"name":"SYNCMGRITEM_MAYDELETEITEM","features":[111]},{"name":"SYNCMGRITEM_ROAMINGUSER","features":[111]},{"name":"SYNCMGRITEM_TEMPORARY","features":[111]},{"name":"SYNCMGRLOGERRORINFO","features":[111]},{"name":"SYNCMGRLOGERROR_ERRORFLAGS","features":[111]},{"name":"SYNCMGRLOGERROR_ERRORID","features":[111]},{"name":"SYNCMGRLOGERROR_ITEMID","features":[111]},{"name":"SYNCMGRLOGLEVEL","features":[111]},{"name":"SYNCMGRLOGLEVEL_ERROR","features":[111]},{"name":"SYNCMGRLOGLEVEL_INFORMATION","features":[111]},{"name":"SYNCMGRLOGLEVEL_LOGLEVELMAX","features":[111]},{"name":"SYNCMGRLOGLEVEL_WARNING","features":[111]},{"name":"SYNCMGRPROGRESSITEM","features":[111]},{"name":"SYNCMGRPROGRESSITEM_MAXVALUE","features":[111]},{"name":"SYNCMGRPROGRESSITEM_PROGVALUE","features":[111]},{"name":"SYNCMGRPROGRESSITEM_STATUSTEXT","features":[111]},{"name":"SYNCMGRPROGRESSITEM_STATUSTYPE","features":[111]},{"name":"SYNCMGRREGISTERFLAGS","features":[111]},{"name":"SYNCMGRREGISTERFLAGS_MASK","features":[111]},{"name":"SYNCMGRREGISTERFLAG_CONNECT","features":[111]},{"name":"SYNCMGRREGISTERFLAG_IDLE","features":[111]},{"name":"SYNCMGRREGISTERFLAG_PENDINGDISCONNECT","features":[111]},{"name":"SYNCMGRSTATUS","features":[111]},{"name":"SYNCMGRSTATUS_DELETED","features":[111]},{"name":"SYNCMGRSTATUS_FAILED","features":[111]},{"name":"SYNCMGRSTATUS_PAUSED","features":[111]},{"name":"SYNCMGRSTATUS_PENDING","features":[111]},{"name":"SYNCMGRSTATUS_RESUMING","features":[111]},{"name":"SYNCMGRSTATUS_SKIPPED","features":[111]},{"name":"SYNCMGRSTATUS_STOPPED","features":[111]},{"name":"SYNCMGRSTATUS_SUCCEEDED","features":[111]},{"name":"SYNCMGRSTATUS_UPDATING","features":[111]},{"name":"SYNCMGRSTATUS_UPDATING_INDETERMINATE","features":[111]},{"name":"SYNCMGR_CANCEL_REQUEST","features":[111]},{"name":"SYNCMGR_CF_NONE","features":[111]},{"name":"SYNCMGR_CF_NOUI","features":[111]},{"name":"SYNCMGR_CF_NOWAIT","features":[111]},{"name":"SYNCMGR_CF_VALID","features":[111]},{"name":"SYNCMGR_CF_WAIT","features":[111]},{"name":"SYNCMGR_CIT_DELETED","features":[111]},{"name":"SYNCMGR_CIT_UPDATED","features":[111]},{"name":"SYNCMGR_CONFLICT_ID_INFO","features":[43,111]},{"name":"SYNCMGR_CONFLICT_ITEM_TYPE","features":[111]},{"name":"SYNCMGR_CONTROL_FLAGS","features":[111]},{"name":"SYNCMGR_CR_CANCEL_ALL","features":[111]},{"name":"SYNCMGR_CR_CANCEL_ITEM","features":[111]},{"name":"SYNCMGR_CR_MAX","features":[111]},{"name":"SYNCMGR_CR_NONE","features":[111]},{"name":"SYNCMGR_EF_NONE","features":[111]},{"name":"SYNCMGR_EF_VALID","features":[111]},{"name":"SYNCMGR_EL_ERROR","features":[111]},{"name":"SYNCMGR_EL_INFORMATION","features":[111]},{"name":"SYNCMGR_EL_MAX","features":[111]},{"name":"SYNCMGR_EL_WARNING","features":[111]},{"name":"SYNCMGR_EVENT_FLAGS","features":[111]},{"name":"SYNCMGR_EVENT_LEVEL","features":[111]},{"name":"SYNCMGR_HANDLER_CAPABILITIES","features":[111]},{"name":"SYNCMGR_HANDLER_POLICIES","features":[111]},{"name":"SYNCMGR_HANDLER_TYPE","features":[111]},{"name":"SYNCMGR_HCM_CAN_BROWSE_CONTENT","features":[111]},{"name":"SYNCMGR_HCM_CAN_SHOW_SCHEDULE","features":[111]},{"name":"SYNCMGR_HCM_CONFLICT_STORE","features":[111]},{"name":"SYNCMGR_HCM_EVENT_STORE","features":[111]},{"name":"SYNCMGR_HCM_NONE","features":[111]},{"name":"SYNCMGR_HCM_PROVIDES_ICON","features":[111]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ACTIVATE","features":[111]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DEACTIVATE","features":[111]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DISABLE","features":[111]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ENABLE","features":[111]},{"name":"SYNCMGR_HCM_SUPPORTS_CONCURRENT_SESSIONS","features":[111]},{"name":"SYNCMGR_HCM_VALID_MASK","features":[111]},{"name":"SYNCMGR_HPM_BACKGROUND_SYNC_ONLY","features":[111]},{"name":"SYNCMGR_HPM_DISABLE_BROWSE","features":[111]},{"name":"SYNCMGR_HPM_DISABLE_DISABLE","features":[111]},{"name":"SYNCMGR_HPM_DISABLE_ENABLE","features":[111]},{"name":"SYNCMGR_HPM_DISABLE_SCHEDULE","features":[111]},{"name":"SYNCMGR_HPM_DISABLE_START_SYNC","features":[111]},{"name":"SYNCMGR_HPM_DISABLE_STOP_SYNC","features":[111]},{"name":"SYNCMGR_HPM_HIDDEN_BY_DEFAULT","features":[111]},{"name":"SYNCMGR_HPM_NONE","features":[111]},{"name":"SYNCMGR_HPM_PREVENT_ACTIVATE","features":[111]},{"name":"SYNCMGR_HPM_PREVENT_DEACTIVATE","features":[111]},{"name":"SYNCMGR_HPM_PREVENT_DISABLE","features":[111]},{"name":"SYNCMGR_HPM_PREVENT_ENABLE","features":[111]},{"name":"SYNCMGR_HPM_PREVENT_START_SYNC","features":[111]},{"name":"SYNCMGR_HPM_PREVENT_STOP_SYNC","features":[111]},{"name":"SYNCMGR_HPM_VALID_MASK","features":[111]},{"name":"SYNCMGR_HT_APPLICATION","features":[111]},{"name":"SYNCMGR_HT_COMPUTER","features":[111]},{"name":"SYNCMGR_HT_DEVICE","features":[111]},{"name":"SYNCMGR_HT_FOLDER","features":[111]},{"name":"SYNCMGR_HT_MAX","features":[111]},{"name":"SYNCMGR_HT_MIN","features":[111]},{"name":"SYNCMGR_HT_SERVICE","features":[111]},{"name":"SYNCMGR_HT_UNSPECIFIED","features":[111]},{"name":"SYNCMGR_ICM_CAN_BROWSE_CONTENT","features":[111]},{"name":"SYNCMGR_ICM_CAN_DELETE","features":[111]},{"name":"SYNCMGR_ICM_CONFLICT_STORE","features":[111]},{"name":"SYNCMGR_ICM_EVENT_STORE","features":[111]},{"name":"SYNCMGR_ICM_NONE","features":[111]},{"name":"SYNCMGR_ICM_PROVIDES_ICON","features":[111]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DELETE","features":[111]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DISABLE","features":[111]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_ENABLE","features":[111]},{"name":"SYNCMGR_ICM_VALID_MASK","features":[111]},{"name":"SYNCMGR_IPM_DISABLE_BROWSE","features":[111]},{"name":"SYNCMGR_IPM_DISABLE_DELETE","features":[111]},{"name":"SYNCMGR_IPM_DISABLE_DISABLE","features":[111]},{"name":"SYNCMGR_IPM_DISABLE_ENABLE","features":[111]},{"name":"SYNCMGR_IPM_DISABLE_START_SYNC","features":[111]},{"name":"SYNCMGR_IPM_DISABLE_STOP_SYNC","features":[111]},{"name":"SYNCMGR_IPM_HIDDEN_BY_DEFAULT","features":[111]},{"name":"SYNCMGR_IPM_NONE","features":[111]},{"name":"SYNCMGR_IPM_PREVENT_DISABLE","features":[111]},{"name":"SYNCMGR_IPM_PREVENT_ENABLE","features":[111]},{"name":"SYNCMGR_IPM_PREVENT_START_SYNC","features":[111]},{"name":"SYNCMGR_IPM_PREVENT_STOP_SYNC","features":[111]},{"name":"SYNCMGR_IPM_VALID_MASK","features":[111]},{"name":"SYNCMGR_ITEM_CAPABILITIES","features":[111]},{"name":"SYNCMGR_ITEM_POLICIES","features":[111]},{"name":"SYNCMGR_OBJECTID_BrowseContent","features":[111]},{"name":"SYNCMGR_OBJECTID_ConflictStore","features":[111]},{"name":"SYNCMGR_OBJECTID_EventLinkClick","features":[111]},{"name":"SYNCMGR_OBJECTID_EventStore","features":[111]},{"name":"SYNCMGR_OBJECTID_Icon","features":[111]},{"name":"SYNCMGR_OBJECTID_QueryBeforeActivate","features":[111]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDeactivate","features":[111]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDelete","features":[111]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDisable","features":[111]},{"name":"SYNCMGR_OBJECTID_QueryBeforeEnable","features":[111]},{"name":"SYNCMGR_OBJECTID_ShowSchedule","features":[111]},{"name":"SYNCMGR_PC_KEEP_MULTIPLE","features":[111]},{"name":"SYNCMGR_PC_KEEP_ONE","features":[111]},{"name":"SYNCMGR_PC_KEEP_RECENT","features":[111]},{"name":"SYNCMGR_PC_NO_CHOICE","features":[111]},{"name":"SYNCMGR_PC_REMOVE_FROM_SYNC_SET","features":[111]},{"name":"SYNCMGR_PC_SKIP","features":[111]},{"name":"SYNCMGR_PNS_CANCEL","features":[111]},{"name":"SYNCMGR_PNS_CONTINUE","features":[111]},{"name":"SYNCMGR_PNS_DEFAULT","features":[111]},{"name":"SYNCMGR_PRESENTER_CHOICE","features":[111]},{"name":"SYNCMGR_PRESENTER_NEXT_STEP","features":[111]},{"name":"SYNCMGR_PROGRESS_STATUS","features":[111]},{"name":"SYNCMGR_PS_CANCELED","features":[111]},{"name":"SYNCMGR_PS_DISCONNECTED","features":[111]},{"name":"SYNCMGR_PS_FAILED","features":[111]},{"name":"SYNCMGR_PS_MAX","features":[111]},{"name":"SYNCMGR_PS_SUCCEEDED","features":[111]},{"name":"SYNCMGR_PS_UPDATING","features":[111]},{"name":"SYNCMGR_PS_UPDATING_INDETERMINATE","features":[111]},{"name":"SYNCMGR_RA_KEEPOTHER","features":[111]},{"name":"SYNCMGR_RA_KEEPRECENT","features":[111]},{"name":"SYNCMGR_RA_KEEP_MULTIPLE","features":[111]},{"name":"SYNCMGR_RA_KEEP_SINGLE","features":[111]},{"name":"SYNCMGR_RA_REMOVEFROMSYNCSET","features":[111]},{"name":"SYNCMGR_RA_VALID","features":[111]},{"name":"SYNCMGR_RESOLUTION_ABILITIES","features":[111]},{"name":"SYNCMGR_RESOLUTION_FEEDBACK","features":[111]},{"name":"SYNCMGR_RF_CANCEL","features":[111]},{"name":"SYNCMGR_RF_CONTINUE","features":[111]},{"name":"SYNCMGR_RF_REFRESH","features":[111]},{"name":"SYNCMGR_SCF_IGNORE_IF_ALREADY_SYNCING","features":[111]},{"name":"SYNCMGR_SCF_NONE","features":[111]},{"name":"SYNCMGR_SCF_VALID","features":[111]},{"name":"SYNCMGR_SYNC_CONTROL_FLAGS","features":[111]},{"name":"SYNCMGR_UPDATE_REASON","features":[111]},{"name":"SYNCMGR_UR_ADDED","features":[111]},{"name":"SYNCMGR_UR_CHANGED","features":[111]},{"name":"SYNCMGR_UR_MAX","features":[111]},{"name":"SYNCMGR_UR_REMOVED","features":[111]},{"name":"SZ_CONTENTTYPE_CDF","features":[111]},{"name":"SZ_CONTENTTYPE_CDFA","features":[111]},{"name":"SZ_CONTENTTYPE_CDFW","features":[111]},{"name":"SZ_CONTENTTYPE_HTML","features":[111]},{"name":"SZ_CONTENTTYPE_HTMLA","features":[111]},{"name":"SZ_CONTENTTYPE_HTMLW","features":[111]},{"name":"S_SYNCMGR_CANCELALL","features":[111]},{"name":"S_SYNCMGR_CANCELITEM","features":[111]},{"name":"S_SYNCMGR_ENUMITEMS","features":[111]},{"name":"S_SYNCMGR_ITEMDELETED","features":[111]},{"name":"S_SYNCMGR_MISSINGITEMS","features":[111]},{"name":"S_SYNCMGR_RETRYSYNC","features":[111]},{"name":"ScheduledTasks","features":[111]},{"name":"SearchFolderItemFactory","features":[111]},{"name":"SecureLockIconConstants","features":[111]},{"name":"SelectedItemCount_Property_GUID","features":[111]},{"name":"SetCurrentProcessExplicitAppUserModelID","features":[111]},{"name":"SetMenuContextHelpId","features":[3,111,52]},{"name":"SetWindowContextHelpId","features":[3,111]},{"name":"SetWindowSubclass","features":[3,111]},{"name":"SharedBitmap","features":[111]},{"name":"SharingConfigurationManager","features":[111]},{"name":"Shell","features":[111]},{"name":"ShellAboutA","features":[3,111,52]},{"name":"ShellAboutW","features":[3,111,52]},{"name":"ShellBrowserWindow","features":[111]},{"name":"ShellDesktop","features":[111]},{"name":"ShellDispatchInproc","features":[111]},{"name":"ShellExecuteA","features":[3,111,52]},{"name":"ShellExecuteExA","features":[3,51,111]},{"name":"ShellExecuteExW","features":[3,51,111]},{"name":"ShellExecuteW","features":[3,111,52]},{"name":"ShellFSFolder","features":[111]},{"name":"ShellFolderItem","features":[111]},{"name":"ShellFolderView","features":[111]},{"name":"ShellFolderViewOC","features":[111]},{"name":"ShellFolderViewOptions","features":[111]},{"name":"ShellImageDataFactory","features":[111]},{"name":"ShellItem","features":[111]},{"name":"ShellLibrary","features":[111]},{"name":"ShellLink","features":[111]},{"name":"ShellLinkObject","features":[111]},{"name":"ShellMessageBoxA","features":[3,111,52]},{"name":"ShellMessageBoxW","features":[3,111,52]},{"name":"ShellNameSpace","features":[111]},{"name":"ShellSpecialFolderConstants","features":[111]},{"name":"ShellUIHelper","features":[111]},{"name":"ShellWindowFindWindowOptions","features":[111]},{"name":"ShellWindowTypeConstants","features":[111]},{"name":"ShellWindows","features":[111]},{"name":"Shell_GetCachedImageIndex","features":[111]},{"name":"Shell_GetCachedImageIndexA","features":[111]},{"name":"Shell_GetCachedImageIndexW","features":[111]},{"name":"Shell_GetImageLists","features":[3,42,111]},{"name":"Shell_MergeMenus","features":[111,52]},{"name":"Shell_NotifyIconA","features":[3,111,52]},{"name":"Shell_NotifyIconGetRect","features":[3,111]},{"name":"Shell_NotifyIconW","features":[3,111,52]},{"name":"ShowInputPaneAnimationCoordinator","features":[111]},{"name":"SignalFileOpen","features":[3,220]},{"name":"SimpleConflictPresenter","features":[111]},{"name":"SizeCategorizer","features":[111]},{"name":"SmartcardCredentialProvider","features":[111]},{"name":"SmartcardPinProvider","features":[111]},{"name":"SmartcardReaderSelectionProvider","features":[111]},{"name":"SmartcardWinRTProvider","features":[111]},{"name":"SoftwareUpdateMessageBox","features":[3,160,111]},{"name":"StartMenuPin","features":[111]},{"name":"StgMakeUniqueName","features":[111]},{"name":"StorageProviderBanners","features":[111]},{"name":"StrCSpnA","features":[111]},{"name":"StrCSpnIA","features":[111]},{"name":"StrCSpnIW","features":[111]},{"name":"StrCSpnW","features":[111]},{"name":"StrCatBuffA","features":[111]},{"name":"StrCatBuffW","features":[111]},{"name":"StrCatChainW","features":[111]},{"name":"StrCatW","features":[111]},{"name":"StrChrA","features":[111]},{"name":"StrChrIA","features":[111]},{"name":"StrChrIW","features":[111]},{"name":"StrChrNIW","features":[111]},{"name":"StrChrNW","features":[111]},{"name":"StrChrW","features":[111]},{"name":"StrCmpCA","features":[111]},{"name":"StrCmpCW","features":[111]},{"name":"StrCmpICA","features":[111]},{"name":"StrCmpICW","features":[111]},{"name":"StrCmpIW","features":[111]},{"name":"StrCmpLogicalW","features":[111]},{"name":"StrCmpNA","features":[111]},{"name":"StrCmpNCA","features":[111]},{"name":"StrCmpNCW","features":[111]},{"name":"StrCmpNIA","features":[111]},{"name":"StrCmpNICA","features":[111]},{"name":"StrCmpNICW","features":[111]},{"name":"StrCmpNIW","features":[111]},{"name":"StrCmpNW","features":[111]},{"name":"StrCmpW","features":[111]},{"name":"StrCpyNW","features":[111]},{"name":"StrCpyW","features":[111]},{"name":"StrDupA","features":[111]},{"name":"StrDupW","features":[111]},{"name":"StrFormatByteSize64A","features":[111]},{"name":"StrFormatByteSizeA","features":[111]},{"name":"StrFormatByteSizeEx","features":[111]},{"name":"StrFormatByteSizeW","features":[111]},{"name":"StrFormatKBSizeA","features":[111]},{"name":"StrFormatKBSizeW","features":[111]},{"name":"StrFromTimeIntervalA","features":[111]},{"name":"StrFromTimeIntervalW","features":[111]},{"name":"StrIsIntlEqualA","features":[3,111]},{"name":"StrIsIntlEqualW","features":[3,111]},{"name":"StrNCatA","features":[111]},{"name":"StrNCatW","features":[111]},{"name":"StrPBrkA","features":[111]},{"name":"StrPBrkW","features":[111]},{"name":"StrRChrA","features":[111]},{"name":"StrRChrIA","features":[111]},{"name":"StrRChrIW","features":[111]},{"name":"StrRChrW","features":[111]},{"name":"StrRStrIA","features":[111]},{"name":"StrRStrIW","features":[111]},{"name":"StrRetToBSTR","features":[220]},{"name":"StrRetToBufA","features":[220]},{"name":"StrRetToBufW","features":[220]},{"name":"StrRetToStrA","features":[220]},{"name":"StrRetToStrW","features":[220]},{"name":"StrSpnA","features":[111]},{"name":"StrSpnW","features":[111]},{"name":"StrStrA","features":[111]},{"name":"StrStrIA","features":[111]},{"name":"StrStrIW","features":[111]},{"name":"StrStrNIW","features":[111]},{"name":"StrStrNW","features":[111]},{"name":"StrStrW","features":[111]},{"name":"StrToInt64ExA","features":[3,111]},{"name":"StrToInt64ExW","features":[3,111]},{"name":"StrToIntA","features":[111]},{"name":"StrToIntExA","features":[3,111]},{"name":"StrToIntExW","features":[3,111]},{"name":"StrToIntW","features":[111]},{"name":"StrTrimA","features":[3,111]},{"name":"StrTrimW","features":[3,111]},{"name":"SuspensionDependencyManager","features":[111]},{"name":"SyncMgr","features":[111]},{"name":"SyncMgrClient","features":[111]},{"name":"SyncMgrControl","features":[111]},{"name":"SyncMgrFolder","features":[111]},{"name":"SyncMgrScheduleWizard","features":[111]},{"name":"SyncResultsFolder","features":[111]},{"name":"SyncSetupFolder","features":[111]},{"name":"TBIF_APPEND","features":[111]},{"name":"TBIF_DEFAULT","features":[111]},{"name":"TBIF_INTERNETBAR","features":[111]},{"name":"TBIF_NOTOOLBAR","features":[111]},{"name":"TBIF_PREPEND","features":[111]},{"name":"TBIF_REPLACE","features":[111]},{"name":"TBIF_STANDARDTOOLBAR","features":[111]},{"name":"TBINFO","features":[111]},{"name":"TBPFLAG","features":[111]},{"name":"TBPF_ERROR","features":[111]},{"name":"TBPF_INDETERMINATE","features":[111]},{"name":"TBPF_NOPROGRESS","features":[111]},{"name":"TBPF_NORMAL","features":[111]},{"name":"TBPF_PAUSED","features":[111]},{"name":"THBF_DISABLED","features":[111]},{"name":"THBF_DISMISSONCLICK","features":[111]},{"name":"THBF_ENABLED","features":[111]},{"name":"THBF_HIDDEN","features":[111]},{"name":"THBF_NOBACKGROUND","features":[111]},{"name":"THBF_NONINTERACTIVE","features":[111]},{"name":"THBN_CLICKED","features":[111]},{"name":"THB_BITMAP","features":[111]},{"name":"THB_FLAGS","features":[111]},{"name":"THB_ICON","features":[111]},{"name":"THB_TOOLTIP","features":[111]},{"name":"THUMBBUTTON","features":[111,52]},{"name":"THUMBBUTTONFLAGS","features":[111]},{"name":"THUMBBUTTONMASK","features":[111]},{"name":"TITLEBARNAMELEN","features":[111]},{"name":"TI_BITMAP","features":[111]},{"name":"TI_FLAGS","features":[111]},{"name":"TI_JPEG","features":[111]},{"name":"TLEF_ABSOLUTE","features":[111]},{"name":"TLEF_EXCLUDE_ABOUT_PAGES","features":[111]},{"name":"TLEF_EXCLUDE_SUBFRAME_ENTRIES","features":[111]},{"name":"TLEF_INCLUDE_UNINVOKEABLE","features":[111]},{"name":"TLEF_RELATIVE_BACK","features":[111]},{"name":"TLEF_RELATIVE_FORE","features":[111]},{"name":"TLEF_RELATIVE_INCLUDE_CURRENT","features":[111]},{"name":"TLENUMF","features":[111]},{"name":"TLMENUF_BACK","features":[111]},{"name":"TLMENUF_FORE","features":[111]},{"name":"TLMENUF_INCLUDECURRENT","features":[111]},{"name":"TLOG_BACK","features":[111]},{"name":"TLOG_CURRENT","features":[111]},{"name":"TLOG_FORE","features":[111]},{"name":"TOOLBARITEM","features":[3,14,111]},{"name":"TRANSLATEURL_FL_GUESS_PROTOCOL","features":[111]},{"name":"TRANSLATEURL_FL_USE_DEFAULT_PROTOCOL","features":[111]},{"name":"TRANSLATEURL_IN_FLAGS","features":[111]},{"name":"TSF_ALLOW_DECRYPTION","features":[111]},{"name":"TSF_COPY_CREATION_TIME","features":[111]},{"name":"TSF_COPY_HARD_LINK","features":[111]},{"name":"TSF_COPY_LOCALIZED_NAME","features":[111]},{"name":"TSF_COPY_WRITE_TIME","features":[111]},{"name":"TSF_DELETE_RECYCLE_IF_POSSIBLE","features":[111]},{"name":"TSF_FAIL_EXIST","features":[111]},{"name":"TSF_MOVE_AS_COPY_DELETE","features":[111]},{"name":"TSF_NORMAL","features":[111]},{"name":"TSF_NO_SECURITY","features":[111]},{"name":"TSF_OVERWRITE_EXIST","features":[111]},{"name":"TSF_RENAME_EXIST","features":[111]},{"name":"TSF_SUSPEND_SHELLEVENTS","features":[111]},{"name":"TSF_USE_FULL_ACCESS","features":[111]},{"name":"TS_INDETERMINATE","features":[111]},{"name":"TS_NONE","features":[111]},{"name":"TS_PERFORMING","features":[111]},{"name":"TS_PREPARING","features":[111]},{"name":"TaskbarList","features":[111]},{"name":"ThumbnailStreamCache","features":[111]},{"name":"ThumbnailStreamCacheOptions","features":[111]},{"name":"TimeCategorizer","features":[111]},{"name":"TrackShellMenu","features":[111]},{"name":"TrayBandSiteService","features":[111]},{"name":"TrayDeskBand","features":[111]},{"name":"UNDOCK_REASON","features":[111]},{"name":"URLASSOCDLG_FL_REGISTER_ASSOC","features":[111]},{"name":"URLASSOCDLG_FL_USE_DEFAULT_NAME","features":[111]},{"name":"URLASSOCIATIONDIALOG_IN_FLAGS","features":[111]},{"name":"URLINVOKECOMMANDINFOA","features":[3,111]},{"name":"URLINVOKECOMMANDINFOW","features":[3,111]},{"name":"URLIS","features":[111]},{"name":"URLIS_APPLIABLE","features":[111]},{"name":"URLIS_DIRECTORY","features":[111]},{"name":"URLIS_FILEURL","features":[111]},{"name":"URLIS_HASQUERY","features":[111]},{"name":"URLIS_NOHISTORY","features":[111]},{"name":"URLIS_OPAQUE","features":[111]},{"name":"URLIS_URL","features":[111]},{"name":"URL_APPLY_DEFAULT","features":[111]},{"name":"URL_APPLY_FORCEAPPLY","features":[111]},{"name":"URL_APPLY_GUESSFILE","features":[111]},{"name":"URL_APPLY_GUESSSCHEME","features":[111]},{"name":"URL_BROWSER_MODE","features":[111]},{"name":"URL_CONVERT_IF_DOSPATH","features":[111]},{"name":"URL_DONT_ESCAPE_EXTRA_INFO","features":[111]},{"name":"URL_DONT_SIMPLIFY","features":[111]},{"name":"URL_DONT_UNESCAPE","features":[111]},{"name":"URL_DONT_UNESCAPE_EXTRA_INFO","features":[111]},{"name":"URL_ESCAPE_ASCII_URI_COMPONENT","features":[111]},{"name":"URL_ESCAPE_AS_UTF8","features":[111]},{"name":"URL_ESCAPE_PERCENT","features":[111]},{"name":"URL_ESCAPE_SEGMENT_ONLY","features":[111]},{"name":"URL_ESCAPE_SPACES_ONLY","features":[111]},{"name":"URL_ESCAPE_UNSAFE","features":[111]},{"name":"URL_E_INVALID_SYNTAX","features":[111]},{"name":"URL_E_UNREGISTERED_PROTOCOL","features":[111]},{"name":"URL_FILE_USE_PATHURL","features":[111]},{"name":"URL_INTERNAL_PATH","features":[111]},{"name":"URL_NO_META","features":[111]},{"name":"URL_PART","features":[111]},{"name":"URL_PARTFLAG_KEEPSCHEME","features":[111]},{"name":"URL_PART_HOSTNAME","features":[111]},{"name":"URL_PART_NONE","features":[111]},{"name":"URL_PART_PASSWORD","features":[111]},{"name":"URL_PART_PORT","features":[111]},{"name":"URL_PART_QUERY","features":[111]},{"name":"URL_PART_SCHEME","features":[111]},{"name":"URL_PART_USERNAME","features":[111]},{"name":"URL_PLUGGABLE_PROTOCOL","features":[111]},{"name":"URL_SCHEME","features":[111]},{"name":"URL_SCHEME_ABOUT","features":[111]},{"name":"URL_SCHEME_FILE","features":[111]},{"name":"URL_SCHEME_FTP","features":[111]},{"name":"URL_SCHEME_GOPHER","features":[111]},{"name":"URL_SCHEME_HTTP","features":[111]},{"name":"URL_SCHEME_HTTPS","features":[111]},{"name":"URL_SCHEME_INVALID","features":[111]},{"name":"URL_SCHEME_JAVASCRIPT","features":[111]},{"name":"URL_SCHEME_KNOWNFOLDER","features":[111]},{"name":"URL_SCHEME_LOCAL","features":[111]},{"name":"URL_SCHEME_MAILTO","features":[111]},{"name":"URL_SCHEME_MAXVALUE","features":[111]},{"name":"URL_SCHEME_MK","features":[111]},{"name":"URL_SCHEME_MSHELP","features":[111]},{"name":"URL_SCHEME_MSSHELLDEVICE","features":[111]},{"name":"URL_SCHEME_MSSHELLIDLIST","features":[111]},{"name":"URL_SCHEME_MSSHELLROOTED","features":[111]},{"name":"URL_SCHEME_NEWS","features":[111]},{"name":"URL_SCHEME_NNTP","features":[111]},{"name":"URL_SCHEME_RES","features":[111]},{"name":"URL_SCHEME_SEARCH","features":[111]},{"name":"URL_SCHEME_SEARCH_MS","features":[111]},{"name":"URL_SCHEME_SHELL","features":[111]},{"name":"URL_SCHEME_SNEWS","features":[111]},{"name":"URL_SCHEME_TELNET","features":[111]},{"name":"URL_SCHEME_UNKNOWN","features":[111]},{"name":"URL_SCHEME_VBSCRIPT","features":[111]},{"name":"URL_SCHEME_WAIS","features":[111]},{"name":"URL_SCHEME_WILDCARD","features":[111]},{"name":"URL_UNESCAPE","features":[111]},{"name":"URL_UNESCAPE_AS_UTF8","features":[111]},{"name":"URL_UNESCAPE_HIGH_ANSI_ONLY","features":[111]},{"name":"URL_UNESCAPE_INPLACE","features":[111]},{"name":"URL_UNESCAPE_URI_COMPONENT","features":[111]},{"name":"URL_WININET_COMPATIBILITY","features":[111]},{"name":"UR_MONITOR_DISCONNECT","features":[111]},{"name":"UR_RESOLUTION_CHANGE","features":[111]},{"name":"UnloadUserProfile","features":[3,111]},{"name":"UnregisterAppConstrainedChangeNotification","features":[111]},{"name":"UnregisterAppStateChangeNotification","features":[111]},{"name":"UnregisterScaleChangeEvent","features":[111]},{"name":"UrlApplySchemeA","features":[111]},{"name":"UrlApplySchemeW","features":[111]},{"name":"UrlCanonicalizeA","features":[111]},{"name":"UrlCanonicalizeW","features":[111]},{"name":"UrlCombineA","features":[111]},{"name":"UrlCombineW","features":[111]},{"name":"UrlCompareA","features":[3,111]},{"name":"UrlCompareW","features":[3,111]},{"name":"UrlCreateFromPathA","features":[111]},{"name":"UrlCreateFromPathW","features":[111]},{"name":"UrlEscapeA","features":[111]},{"name":"UrlEscapeW","features":[111]},{"name":"UrlFixupW","features":[111]},{"name":"UrlGetLocationA","features":[111]},{"name":"UrlGetLocationW","features":[111]},{"name":"UrlGetPartA","features":[111]},{"name":"UrlGetPartW","features":[111]},{"name":"UrlHashA","features":[111]},{"name":"UrlHashW","features":[111]},{"name":"UrlIsA","features":[3,111]},{"name":"UrlIsNoHistoryA","features":[3,111]},{"name":"UrlIsNoHistoryW","features":[3,111]},{"name":"UrlIsOpaqueA","features":[3,111]},{"name":"UrlIsOpaqueW","features":[3,111]},{"name":"UrlIsW","features":[3,111]},{"name":"UrlUnescapeA","features":[111]},{"name":"UrlUnescapeW","features":[111]},{"name":"UserNotification","features":[111]},{"name":"V1PasswordCredentialProvider","features":[111]},{"name":"V1SmartcardCredentialProvider","features":[111]},{"name":"V1WinBioCredentialProvider","features":[111]},{"name":"VALIDATEUNC_CONNECT","features":[111]},{"name":"VALIDATEUNC_NOUI","features":[111]},{"name":"VALIDATEUNC_OPTION","features":[111]},{"name":"VALIDATEUNC_PERSIST","features":[111]},{"name":"VALIDATEUNC_PRINT","features":[111]},{"name":"VALIDATEUNC_VALID","features":[111]},{"name":"VID_Content","features":[111]},{"name":"VID_Details","features":[111]},{"name":"VID_LargeIcons","features":[111]},{"name":"VID_List","features":[111]},{"name":"VID_SmallIcons","features":[111]},{"name":"VID_ThumbStrip","features":[111]},{"name":"VID_Thumbnails","features":[111]},{"name":"VID_Tile","features":[111]},{"name":"VIEW_PRIORITY_CACHEHIT","features":[111]},{"name":"VIEW_PRIORITY_CACHEMISS","features":[111]},{"name":"VIEW_PRIORITY_DESPERATE","features":[111]},{"name":"VIEW_PRIORITY_INHERIT","features":[111]},{"name":"VIEW_PRIORITY_NONE","features":[111]},{"name":"VIEW_PRIORITY_RESTRICTED","features":[111]},{"name":"VIEW_PRIORITY_SHELLEXT","features":[111]},{"name":"VIEW_PRIORITY_SHELLEXT_ASBACKUP","features":[111]},{"name":"VIEW_PRIORITY_STALECACHEHIT","features":[111]},{"name":"VIEW_PRIORITY_USEASDEFAULT","features":[111]},{"name":"VOLUME_PREFIX","features":[111]},{"name":"VPCF_BACKGROUND","features":[111]},{"name":"VPCF_SORTCOLUMN","features":[111]},{"name":"VPCF_SUBTEXT","features":[111]},{"name":"VPCF_TEXT","features":[111]},{"name":"VPCF_TEXTBACKGROUND","features":[111]},{"name":"VPCOLORFLAGS","features":[111]},{"name":"VPWATERMARKFLAGS","features":[111]},{"name":"VPWF_ALPHABLEND","features":[111]},{"name":"VPWF_DEFAULT","features":[111]},{"name":"VariantToStrRet","features":[3,43,44,220]},{"name":"VaultProvider","features":[111]},{"name":"VirtualDesktopManager","features":[111]},{"name":"WC_NETADDRESS","features":[111]},{"name":"WINDOWDATA","features":[220]},{"name":"WM_CPL_LAUNCH","features":[111]},{"name":"WM_CPL_LAUNCHED","features":[111]},{"name":"WPSTYLE_CENTER","features":[111]},{"name":"WPSTYLE_CROPTOFIT","features":[111]},{"name":"WPSTYLE_KEEPASPECT","features":[111]},{"name":"WPSTYLE_MAX","features":[111]},{"name":"WPSTYLE_SPAN","features":[111]},{"name":"WPSTYLE_STRETCH","features":[111]},{"name":"WPSTYLE_TILE","features":[111]},{"name":"WTSAT_ARGB","features":[111]},{"name":"WTSAT_RGB","features":[111]},{"name":"WTSAT_UNKNOWN","features":[111]},{"name":"WTSCF_APPSTYLE","features":[111]},{"name":"WTSCF_DEFAULT","features":[111]},{"name":"WTSCF_FAST","features":[111]},{"name":"WTSCF_SQUARE","features":[111]},{"name":"WTSCF_WIDE","features":[111]},{"name":"WTS_ALPHATYPE","features":[111]},{"name":"WTS_APPSTYLE","features":[111]},{"name":"WTS_CACHED","features":[111]},{"name":"WTS_CACHEFLAGS","features":[111]},{"name":"WTS_CONTEXTFLAGS","features":[111]},{"name":"WTS_CROPTOSQUARE","features":[111]},{"name":"WTS_DEFAULT","features":[111]},{"name":"WTS_EXTRACT","features":[111]},{"name":"WTS_EXTRACTDONOTCACHE","features":[111]},{"name":"WTS_EXTRACTINPROC","features":[111]},{"name":"WTS_E_DATAFILEUNAVAILABLE","features":[111]},{"name":"WTS_E_EXTRACTIONBLOCKED","features":[111]},{"name":"WTS_E_EXTRACTIONPENDING","features":[111]},{"name":"WTS_E_EXTRACTIONTIMEDOUT","features":[111]},{"name":"WTS_E_FAILEDEXTRACTION","features":[111]},{"name":"WTS_E_FASTEXTRACTIONNOTSUPPORTED","features":[111]},{"name":"WTS_E_NOSTORAGEPROVIDERTHUMBNAILHANDLER","features":[111]},{"name":"WTS_E_SURROGATEUNAVAILABLE","features":[111]},{"name":"WTS_FASTEXTRACT","features":[111]},{"name":"WTS_FLAGS","features":[111]},{"name":"WTS_FORCEEXTRACTION","features":[111]},{"name":"WTS_IDEALCACHESIZEONLY","features":[111]},{"name":"WTS_INCACHEONLY","features":[111]},{"name":"WTS_INSTANCESURROGATE","features":[111]},{"name":"WTS_LOWQUALITY","features":[111]},{"name":"WTS_NONE","features":[111]},{"name":"WTS_REQUIRESURROGATE","features":[111]},{"name":"WTS_SCALETOREQUESTEDSIZE","features":[111]},{"name":"WTS_SCALEUP","features":[111]},{"name":"WTS_SKIPFASTEXTRACT","features":[111]},{"name":"WTS_SLOWRECLAIM","features":[111]},{"name":"WTS_THUMBNAILID","features":[111]},{"name":"WTS_WIDETHUMBNAILS","features":[111]},{"name":"WebBrowser","features":[111]},{"name":"WebBrowser_V1","features":[111]},{"name":"WebWizardHost","features":[111]},{"name":"WhichPlatform","features":[111]},{"name":"Win32DeleteFile","features":[3,111]},{"name":"WinBioCredentialProvider","features":[111]},{"name":"WinHelpA","features":[3,111]},{"name":"WinHelpW","features":[3,111]},{"name":"WriteCabinetState","features":[3,111]},{"name":"_BROWSERFRAMEOPTIONS","features":[111]},{"name":"_CDBE_ACTIONS","features":[111]},{"name":"_EXPCMDFLAGS","features":[111]},{"name":"_EXPCMDSTATE","features":[111]},{"name":"_EXPLORERPANESTATE","features":[111]},{"name":"_EXPPS","features":[111]},{"name":"_KF_DEFINITION_FLAGS","features":[111]},{"name":"_KF_REDIRECTION_CAPABILITIES","features":[111]},{"name":"_KF_REDIRECT_FLAGS","features":[111]},{"name":"_NMCII_FLAGS","features":[111]},{"name":"_NMCSAEI_FLAGS","features":[111]},{"name":"_NSTCECLICKTYPE","features":[111]},{"name":"_NSTCEHITTEST","features":[111]},{"name":"_NSTCITEMSTATE","features":[111]},{"name":"_NSTCROOTSTYLE","features":[111]},{"name":"_NSTCSTYLE","features":[111]},{"name":"_OPPROGDLGF","features":[111]},{"name":"_PDMODE","features":[111]},{"name":"_SHCONTF","features":[111]},{"name":"_SICHINTF","features":[111]},{"name":"_SPBEGINF","features":[111]},{"name":"_SPINITF","features":[111]},{"name":"_SV3CVW3_FLAGS","features":[111]},{"name":"_SVGIO","features":[111]},{"name":"_SVSIF","features":[111]},{"name":"_TRANSFER_ADVISE_STATE","features":[111]},{"name":"_TRANSFER_SOURCE_FLAGS","features":[111]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_CSCSYNCINPROGRESS","features":[111]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SERVERDRIVE","features":[111]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEGLOBALDIRTYCOUNT","features":[111]},{"name":"idsAppName","features":[111]},{"name":"idsBadOldPW","features":[111]},{"name":"idsChangePW","features":[111]},{"name":"idsDefKeyword","features":[111]},{"name":"idsDifferentPW","features":[111]},{"name":"idsHelpFile","features":[111]},{"name":"idsIniFile","features":[111]},{"name":"idsIsPassword","features":[111]},{"name":"idsNoHelpMemory","features":[111]},{"name":"idsPassword","features":[111]},{"name":"idsScreenSaver","features":[111]},{"name":"navAllowAutosearch","features":[111]},{"name":"navBlockRedirectsXDomain","features":[111]},{"name":"navBrowserBar","features":[111]},{"name":"navDeferUnload","features":[111]},{"name":"navEnforceRestricted","features":[111]},{"name":"navHomepageNavigate","features":[111]},{"name":"navHostNavigation","features":[111]},{"name":"navHyperlink","features":[111]},{"name":"navKeepWordWheelText","features":[111]},{"name":"navNewWindowsManaged","features":[111]},{"name":"navNoHistory","features":[111]},{"name":"navNoReadFromCache","features":[111]},{"name":"navNoWriteToCache","features":[111]},{"name":"navOpenInBackgroundTab","features":[111]},{"name":"navOpenInNewTab","features":[111]},{"name":"navOpenInNewWindow","features":[111]},{"name":"navOpenNewForegroundTab","features":[111]},{"name":"navRefresh","features":[111]},{"name":"navReserved1","features":[111]},{"name":"navReserved2","features":[111]},{"name":"navReserved3","features":[111]},{"name":"navReserved4","features":[111]},{"name":"navReserved5","features":[111]},{"name":"navReserved6","features":[111]},{"name":"navReserved7","features":[111]},{"name":"navSpeculative","features":[111]},{"name":"navSuggestNewTab","features":[111]},{"name":"navSuggestNewWindow","features":[111]},{"name":"navTravelLogScreenshot","features":[111]},{"name":"navTrustedForActiveX","features":[111]},{"name":"navUntrustedForDownload","features":[111]},{"name":"navVirtualTab","features":[111]},{"name":"secureLockIconMixed","features":[111]},{"name":"secureLockIconSecure128Bit","features":[111]},{"name":"secureLockIconSecure40Bit","features":[111]},{"name":"secureLockIconSecure56Bit","features":[111]},{"name":"secureLockIconSecureFortezza","features":[111]},{"name":"secureLockIconSecureUnknownBits","features":[111]},{"name":"secureLockIconUnsecure","features":[111]},{"name":"ssfALTSTARTUP","features":[111]},{"name":"ssfAPPDATA","features":[111]},{"name":"ssfBITBUCKET","features":[111]},{"name":"ssfCOMMONALTSTARTUP","features":[111]},{"name":"ssfCOMMONAPPDATA","features":[111]},{"name":"ssfCOMMONDESKTOPDIR","features":[111]},{"name":"ssfCOMMONFAVORITES","features":[111]},{"name":"ssfCOMMONPROGRAMS","features":[111]},{"name":"ssfCOMMONSTARTMENU","features":[111]},{"name":"ssfCOMMONSTARTUP","features":[111]},{"name":"ssfCONTROLS","features":[111]},{"name":"ssfCOOKIES","features":[111]},{"name":"ssfDESKTOP","features":[111]},{"name":"ssfDESKTOPDIRECTORY","features":[111]},{"name":"ssfDRIVES","features":[111]},{"name":"ssfFAVORITES","features":[111]},{"name":"ssfFONTS","features":[111]},{"name":"ssfHISTORY","features":[111]},{"name":"ssfINTERNETCACHE","features":[111]},{"name":"ssfLOCALAPPDATA","features":[111]},{"name":"ssfMYPICTURES","features":[111]},{"name":"ssfNETHOOD","features":[111]},{"name":"ssfNETWORK","features":[111]},{"name":"ssfPERSONAL","features":[111]},{"name":"ssfPRINTERS","features":[111]},{"name":"ssfPRINTHOOD","features":[111]},{"name":"ssfPROFILE","features":[111]},{"name":"ssfPROGRAMFILES","features":[111]},{"name":"ssfPROGRAMFILESx86","features":[111]},{"name":"ssfPROGRAMS","features":[111]},{"name":"ssfRECENT","features":[111]},{"name":"ssfSENDTO","features":[111]},{"name":"ssfSTARTMENU","features":[111]},{"name":"ssfSTARTUP","features":[111]},{"name":"ssfSYSTEM","features":[111]},{"name":"ssfSYSTEMx86","features":[111]},{"name":"ssfTEMPLATES","features":[111]},{"name":"ssfWINDOWS","features":[111]},{"name":"wnsprintfA","features":[111]},{"name":"wnsprintfW","features":[111]},{"name":"wvnsprintfA","features":[111]},{"name":"wvnsprintfW","features":[111]}],"670":[{"name":"COMDLG_FILTERSPEC","features":[220]},{"name":"DEVICE_SCALE_FACTOR","features":[220]},{"name":"DEVICE_SCALE_FACTOR_INVALID","features":[220]},{"name":"IObjectArray","features":[220]},{"name":"IObjectCollection","features":[220]},{"name":"ITEMIDLIST","features":[220]},{"name":"PERCEIVED","features":[220]},{"name":"PERCEIVEDFLAG_GDIPLUS","features":[220]},{"name":"PERCEIVEDFLAG_HARDCODED","features":[220]},{"name":"PERCEIVEDFLAG_NATIVESUPPORT","features":[220]},{"name":"PERCEIVEDFLAG_SOFTCODED","features":[220]},{"name":"PERCEIVEDFLAG_UNDEFINED","features":[220]},{"name":"PERCEIVEDFLAG_WMSDK","features":[220]},{"name":"PERCEIVEDFLAG_ZIPFOLDER","features":[220]},{"name":"PERCEIVED_TYPE_APPLICATION","features":[220]},{"name":"PERCEIVED_TYPE_AUDIO","features":[220]},{"name":"PERCEIVED_TYPE_COMPRESSED","features":[220]},{"name":"PERCEIVED_TYPE_CONTACTS","features":[220]},{"name":"PERCEIVED_TYPE_CUSTOM","features":[220]},{"name":"PERCEIVED_TYPE_DOCUMENT","features":[220]},{"name":"PERCEIVED_TYPE_FIRST","features":[220]},{"name":"PERCEIVED_TYPE_FOLDER","features":[220]},{"name":"PERCEIVED_TYPE_GAMEMEDIA","features":[220]},{"name":"PERCEIVED_TYPE_IMAGE","features":[220]},{"name":"PERCEIVED_TYPE_LAST","features":[220]},{"name":"PERCEIVED_TYPE_SYSTEM","features":[220]},{"name":"PERCEIVED_TYPE_TEXT","features":[220]},{"name":"PERCEIVED_TYPE_UNKNOWN","features":[220]},{"name":"PERCEIVED_TYPE_UNSPECIFIED","features":[220]},{"name":"PERCEIVED_TYPE_VIDEO","features":[220]},{"name":"SCALE_100_PERCENT","features":[220]},{"name":"SCALE_120_PERCENT","features":[220]},{"name":"SCALE_125_PERCENT","features":[220]},{"name":"SCALE_140_PERCENT","features":[220]},{"name":"SCALE_150_PERCENT","features":[220]},{"name":"SCALE_160_PERCENT","features":[220]},{"name":"SCALE_175_PERCENT","features":[220]},{"name":"SCALE_180_PERCENT","features":[220]},{"name":"SCALE_200_PERCENT","features":[220]},{"name":"SCALE_225_PERCENT","features":[220]},{"name":"SCALE_250_PERCENT","features":[220]},{"name":"SCALE_300_PERCENT","features":[220]},{"name":"SCALE_350_PERCENT","features":[220]},{"name":"SCALE_400_PERCENT","features":[220]},{"name":"SCALE_450_PERCENT","features":[220]},{"name":"SCALE_500_PERCENT","features":[220]},{"name":"SHCOLSTATE","features":[220]},{"name":"SHCOLSTATE_BATCHREAD","features":[220]},{"name":"SHCOLSTATE_DEFAULT","features":[220]},{"name":"SHCOLSTATE_DISPLAYMASK","features":[220]},{"name":"SHCOLSTATE_EXTENDED","features":[220]},{"name":"SHCOLSTATE_FIXED_RATIO","features":[220]},{"name":"SHCOLSTATE_FIXED_WIDTH","features":[220]},{"name":"SHCOLSTATE_HIDDEN","features":[220]},{"name":"SHCOLSTATE_NODPISCALE","features":[220]},{"name":"SHCOLSTATE_NOSORTBYFOLDERNESS","features":[220]},{"name":"SHCOLSTATE_NO_GROUPBY","features":[220]},{"name":"SHCOLSTATE_ONBYDEFAULT","features":[220]},{"name":"SHCOLSTATE_PREFER_FMTCMP","features":[220]},{"name":"SHCOLSTATE_PREFER_VARCMP","features":[220]},{"name":"SHCOLSTATE_SECONDARYUI","features":[220]},{"name":"SHCOLSTATE_SLOW","features":[220]},{"name":"SHCOLSTATE_TYPEMASK","features":[220]},{"name":"SHCOLSTATE_TYPE_DATE","features":[220]},{"name":"SHCOLSTATE_TYPE_INT","features":[220]},{"name":"SHCOLSTATE_TYPE_STR","features":[220]},{"name":"SHCOLSTATE_VIEWONLY","features":[220]},{"name":"SHELLDETAILS","features":[220]},{"name":"SHITEMID","features":[220]},{"name":"STRRET","features":[220]},{"name":"STRRET_CSTR","features":[220]},{"name":"STRRET_OFFSET","features":[220]},{"name":"STRRET_TYPE","features":[220]},{"name":"STRRET_WSTR","features":[220]}],"671":[{"name":"FPSPS_DEFAULT","features":[62]},{"name":"FPSPS_READONLY","features":[62]},{"name":"FPSPS_TREAT_NEW_VALUES_AS_DIRTY","features":[62]},{"name":"GETPROPERTYSTOREFLAGS","features":[62]},{"name":"GPS_BESTEFFORT","features":[62]},{"name":"GPS_DEFAULT","features":[62]},{"name":"GPS_DELAYCREATION","features":[62]},{"name":"GPS_EXTRINSICPROPERTIES","features":[62]},{"name":"GPS_EXTRINSICPROPERTIESONLY","features":[62]},{"name":"GPS_FASTPROPERTIESONLY","features":[62]},{"name":"GPS_HANDLERPROPERTIESONLY","features":[62]},{"name":"GPS_MASK_VALID","features":[62]},{"name":"GPS_NO_OPLOCK","features":[62]},{"name":"GPS_OPENSLOWITEM","features":[62]},{"name":"GPS_PREFERQUERYPROPERTIES","features":[62]},{"name":"GPS_READWRITE","features":[62]},{"name":"GPS_TEMPORARY","features":[62]},{"name":"GPS_VOLATILEPROPERTIES","features":[62]},{"name":"GPS_VOLATILEPROPERTIESONLY","features":[62]},{"name":"ICreateObject","features":[62]},{"name":"IDelayedPropertyStoreFactory","features":[62]},{"name":"IInitializeWithFile","features":[62]},{"name":"IInitializeWithStream","features":[62]},{"name":"INamedPropertyStore","features":[62]},{"name":"IObjectWithPropertyKey","features":[62]},{"name":"IPersistSerializedPropStorage","features":[62]},{"name":"IPersistSerializedPropStorage2","features":[62]},{"name":"IPropertyChange","features":[62]},{"name":"IPropertyChangeArray","features":[62]},{"name":"IPropertyDescription","features":[62]},{"name":"IPropertyDescription2","features":[62]},{"name":"IPropertyDescriptionAliasInfo","features":[62]},{"name":"IPropertyDescriptionList","features":[62]},{"name":"IPropertyDescriptionRelatedPropertyInfo","features":[62]},{"name":"IPropertyDescriptionSearchInfo","features":[62]},{"name":"IPropertyEnumType","features":[62]},{"name":"IPropertyEnumType2","features":[62]},{"name":"IPropertyEnumTypeList","features":[62]},{"name":"IPropertyStore","features":[62]},{"name":"IPropertyStoreCache","features":[62]},{"name":"IPropertyStoreCapabilities","features":[62]},{"name":"IPropertyStoreFactory","features":[62]},{"name":"IPropertySystem","features":[62]},{"name":"IPropertySystemChangeNotify","features":[62]},{"name":"IPropertyUI","features":[62]},{"name":"InMemoryPropertyStore","features":[62]},{"name":"InMemoryPropertyStoreMarshalByValue","features":[62]},{"name":"PCUSERIALIZEDPROPSTORAGE","features":[62]},{"name":"PDAT_AVERAGE","features":[62]},{"name":"PDAT_DATERANGE","features":[62]},{"name":"PDAT_DEFAULT","features":[62]},{"name":"PDAT_FIRST","features":[62]},{"name":"PDAT_MAX","features":[62]},{"name":"PDAT_MIN","features":[62]},{"name":"PDAT_SUM","features":[62]},{"name":"PDAT_UNION","features":[62]},{"name":"PDCIT_INMEMORY","features":[62]},{"name":"PDCIT_NONE","features":[62]},{"name":"PDCIT_ONDEMAND","features":[62]},{"name":"PDCIT_ONDISK","features":[62]},{"name":"PDCIT_ONDISKALL","features":[62]},{"name":"PDCIT_ONDISKVECTOR","features":[62]},{"name":"PDCOT_BOOLEAN","features":[62]},{"name":"PDCOT_DATETIME","features":[62]},{"name":"PDCOT_NONE","features":[62]},{"name":"PDCOT_NUMBER","features":[62]},{"name":"PDCOT_SIZE","features":[62]},{"name":"PDCOT_STRING","features":[62]},{"name":"PDDT_BOOLEAN","features":[62]},{"name":"PDDT_DATETIME","features":[62]},{"name":"PDDT_ENUMERATED","features":[62]},{"name":"PDDT_NUMBER","features":[62]},{"name":"PDDT_STRING","features":[62]},{"name":"PDEF_ALL","features":[62]},{"name":"PDEF_COLUMN","features":[62]},{"name":"PDEF_INFULLTEXTQUERY","features":[62]},{"name":"PDEF_NONSYSTEM","features":[62]},{"name":"PDEF_QUERYABLE","features":[62]},{"name":"PDEF_SYSTEM","features":[62]},{"name":"PDEF_VIEWABLE","features":[62]},{"name":"PDFF_ALWAYSKB","features":[62]},{"name":"PDFF_DEFAULT","features":[62]},{"name":"PDFF_FILENAME","features":[62]},{"name":"PDFF_HIDEDATE","features":[62]},{"name":"PDFF_HIDETIME","features":[62]},{"name":"PDFF_LONGDATE","features":[62]},{"name":"PDFF_LONGTIME","features":[62]},{"name":"PDFF_NOAUTOREADINGORDER","features":[62]},{"name":"PDFF_PREFIXNAME","features":[62]},{"name":"PDFF_READONLY","features":[62]},{"name":"PDFF_RELATIVEDATE","features":[62]},{"name":"PDFF_RESERVED_RIGHTTOLEFT","features":[62]},{"name":"PDFF_SHORTDATE","features":[62]},{"name":"PDFF_SHORTTIME","features":[62]},{"name":"PDFF_USEEDITINVITATION","features":[62]},{"name":"PDGR_ALPHANUMERIC","features":[62]},{"name":"PDGR_DATE","features":[62]},{"name":"PDGR_DISCRETE","features":[62]},{"name":"PDGR_DYNAMIC","features":[62]},{"name":"PDGR_ENUMERATED","features":[62]},{"name":"PDGR_PERCENT","features":[62]},{"name":"PDGR_SIZE","features":[62]},{"name":"PDOPSTATUS","features":[62]},{"name":"PDOPS_CANCELLED","features":[62]},{"name":"PDOPS_ERRORS","features":[62]},{"name":"PDOPS_PAUSED","features":[62]},{"name":"PDOPS_RUNNING","features":[62]},{"name":"PDOPS_STOPPED","features":[62]},{"name":"PDRDT_COUNT","features":[62]},{"name":"PDRDT_DATE","features":[62]},{"name":"PDRDT_DURATION","features":[62]},{"name":"PDRDT_GENERAL","features":[62]},{"name":"PDRDT_LENGTH","features":[62]},{"name":"PDRDT_PRIORITY","features":[62]},{"name":"PDRDT_RATE","features":[62]},{"name":"PDRDT_RATING","features":[62]},{"name":"PDRDT_REVISION","features":[62]},{"name":"PDRDT_SIZE","features":[62]},{"name":"PDRDT_SPEED","features":[62]},{"name":"PDSD_A_Z","features":[62]},{"name":"PDSD_GENERAL","features":[62]},{"name":"PDSD_LOWEST_HIGHEST","features":[62]},{"name":"PDSD_OLDEST_NEWEST","features":[62]},{"name":"PDSD_SMALLEST_BIGGEST","features":[62]},{"name":"PDSIF_ALWAYSINCLUDE","features":[62]},{"name":"PDSIF_DEFAULT","features":[62]},{"name":"PDSIF_ININVERTEDINDEX","features":[62]},{"name":"PDSIF_ISCOLUMN","features":[62]},{"name":"PDSIF_ISCOLUMNSPARSE","features":[62]},{"name":"PDSIF_USEFORTYPEAHEAD","features":[62]},{"name":"PDTF_ALWAYSINSUPPLEMENTALSTORE","features":[62]},{"name":"PDTF_CANBEPURGED","features":[62]},{"name":"PDTF_CANGROUPBY","features":[62]},{"name":"PDTF_CANSTACKBY","features":[62]},{"name":"PDTF_DEFAULT","features":[62]},{"name":"PDTF_DONTCOERCEEMPTYSTRINGS","features":[62]},{"name":"PDTF_INCLUDEINFULLTEXTQUERY","features":[62]},{"name":"PDTF_ISGROUP","features":[62]},{"name":"PDTF_ISINNATE","features":[62]},{"name":"PDTF_ISQUERYABLE","features":[62]},{"name":"PDTF_ISSYSTEMPROPERTY","features":[62]},{"name":"PDTF_ISTREEPROPERTY","features":[62]},{"name":"PDTF_ISVIEWABLE","features":[62]},{"name":"PDTF_MASK_ALL","features":[62]},{"name":"PDTF_MULTIPLEVALUES","features":[62]},{"name":"PDTF_SEARCHRAWVALUE","features":[62]},{"name":"PDVF_BEGINNEWGROUP","features":[62]},{"name":"PDVF_CANWRAP","features":[62]},{"name":"PDVF_CENTERALIGN","features":[62]},{"name":"PDVF_DEFAULT","features":[62]},{"name":"PDVF_FILLAREA","features":[62]},{"name":"PDVF_HIDDEN","features":[62]},{"name":"PDVF_HIDELABEL","features":[62]},{"name":"PDVF_MASK_ALL","features":[62]},{"name":"PDVF_RIGHTALIGN","features":[62]},{"name":"PDVF_SHOWBYDEFAULT","features":[62]},{"name":"PDVF_SHOWINPRIMARYLIST","features":[62]},{"name":"PDVF_SHOWINSECONDARYLIST","features":[62]},{"name":"PDVF_SHOWONLYIFPRESENT","features":[62]},{"name":"PDVF_SORTDESCENDING","features":[62]},{"name":"PET_DEFAULTVALUE","features":[62]},{"name":"PET_DISCRETEVALUE","features":[62]},{"name":"PET_ENDRANGE","features":[62]},{"name":"PET_RANGEDVALUE","features":[62]},{"name":"PKA_APPEND","features":[62]},{"name":"PKA_DELETE","features":[62]},{"name":"PKA_FLAGS","features":[62]},{"name":"PKA_SET","features":[62]},{"name":"PKEY_PIDSTR_MAX","features":[62]},{"name":"PLACEHOLDER_STATES","features":[62]},{"name":"PROPDESC_AGGREGATION_TYPE","features":[62]},{"name":"PROPDESC_COLUMNINDEX_TYPE","features":[62]},{"name":"PROPDESC_CONDITION_TYPE","features":[62]},{"name":"PROPDESC_DISPLAYTYPE","features":[62]},{"name":"PROPDESC_ENUMFILTER","features":[62]},{"name":"PROPDESC_FORMAT_FLAGS","features":[62]},{"name":"PROPDESC_GROUPING_RANGE","features":[62]},{"name":"PROPDESC_RELATIVEDESCRIPTION_TYPE","features":[62]},{"name":"PROPDESC_SEARCHINFO_FLAGS","features":[62]},{"name":"PROPDESC_SORTDESCRIPTION","features":[62]},{"name":"PROPDESC_TYPE_FLAGS","features":[62]},{"name":"PROPDESC_VIEW_FLAGS","features":[62]},{"name":"PROPENUMTYPE","features":[62]},{"name":"PROPERTYKEY","features":[62]},{"name":"PROPERTYUI_FLAGS","features":[62]},{"name":"PROPERTYUI_FORMAT_FLAGS","features":[62]},{"name":"PROPERTYUI_NAME_FLAGS","features":[62]},{"name":"PROPPRG","features":[62]},{"name":"PSC_DIRTY","features":[62]},{"name":"PSC_NORMAL","features":[62]},{"name":"PSC_NOTINSOURCE","features":[62]},{"name":"PSC_READONLY","features":[62]},{"name":"PSC_STATE","features":[62]},{"name":"PSCoerceToCanonicalValue","features":[3,65,44,62]},{"name":"PSCreateAdapterFromPropertyStore","features":[62]},{"name":"PSCreateDelayedMultiplexPropertyStore","features":[62]},{"name":"PSCreateMemoryPropertyStore","features":[62]},{"name":"PSCreateMultiplexPropertyStore","features":[62]},{"name":"PSCreatePropertyChangeArray","features":[3,65,44,62]},{"name":"PSCreatePropertyStoreFromObject","features":[62]},{"name":"PSCreatePropertyStoreFromPropertySetStorage","features":[62]},{"name":"PSCreateSimplePropertyChange","features":[3,65,44,62]},{"name":"PSEnumeratePropertyDescriptions","features":[62]},{"name":"PSFormatForDisplay","features":[3,65,44,62]},{"name":"PSFormatForDisplayAlloc","features":[3,65,44,62]},{"name":"PSFormatPropertyValue","features":[62]},{"name":"PSGetImageReferenceForValue","features":[3,65,44,62]},{"name":"PSGetItemPropertyHandler","features":[3,62]},{"name":"PSGetItemPropertyHandlerWithCreateObject","features":[3,62]},{"name":"PSGetNameFromPropertyKey","features":[62]},{"name":"PSGetNamedPropertyFromPropertyStorage","features":[3,65,44,62]},{"name":"PSGetPropertyDescription","features":[62]},{"name":"PSGetPropertyDescriptionByName","features":[62]},{"name":"PSGetPropertyDescriptionListFromString","features":[62]},{"name":"PSGetPropertyFromPropertyStorage","features":[3,65,44,62]},{"name":"PSGetPropertyKeyFromName","features":[62]},{"name":"PSGetPropertySystem","features":[62]},{"name":"PSGetPropertyValue","features":[3,65,44,62]},{"name":"PSLookupPropertyHandlerCLSID","features":[62]},{"name":"PSPropertyBag_Delete","features":[62]},{"name":"PSPropertyBag_ReadBOOL","features":[3,62]},{"name":"PSPropertyBag_ReadBSTR","features":[62]},{"name":"PSPropertyBag_ReadDWORD","features":[62]},{"name":"PSPropertyBag_ReadGUID","features":[62]},{"name":"PSPropertyBag_ReadInt","features":[62]},{"name":"PSPropertyBag_ReadLONG","features":[62]},{"name":"PSPropertyBag_ReadPOINTL","features":[3,62]},{"name":"PSPropertyBag_ReadPOINTS","features":[3,62]},{"name":"PSPropertyBag_ReadPropertyKey","features":[62]},{"name":"PSPropertyBag_ReadRECTL","features":[3,62]},{"name":"PSPropertyBag_ReadSHORT","features":[62]},{"name":"PSPropertyBag_ReadStr","features":[62]},{"name":"PSPropertyBag_ReadStrAlloc","features":[62]},{"name":"PSPropertyBag_ReadStream","features":[62]},{"name":"PSPropertyBag_ReadType","features":[3,43,44,62]},{"name":"PSPropertyBag_ReadULONGLONG","features":[62]},{"name":"PSPropertyBag_ReadUnknown","features":[62]},{"name":"PSPropertyBag_WriteBOOL","features":[3,62]},{"name":"PSPropertyBag_WriteBSTR","features":[62]},{"name":"PSPropertyBag_WriteDWORD","features":[62]},{"name":"PSPropertyBag_WriteGUID","features":[62]},{"name":"PSPropertyBag_WriteInt","features":[62]},{"name":"PSPropertyBag_WriteLONG","features":[62]},{"name":"PSPropertyBag_WritePOINTL","features":[3,62]},{"name":"PSPropertyBag_WritePOINTS","features":[3,62]},{"name":"PSPropertyBag_WritePropertyKey","features":[62]},{"name":"PSPropertyBag_WriteRECTL","features":[3,62]},{"name":"PSPropertyBag_WriteSHORT","features":[62]},{"name":"PSPropertyBag_WriteStr","features":[62]},{"name":"PSPropertyBag_WriteStream","features":[62]},{"name":"PSPropertyBag_WriteULONGLONG","features":[62]},{"name":"PSPropertyBag_WriteUnknown","features":[62]},{"name":"PSPropertyKeyFromString","features":[62]},{"name":"PSRefreshPropertySchema","features":[62]},{"name":"PSRegisterPropertySchema","features":[62]},{"name":"PSSetPropertyValue","features":[3,65,44,62]},{"name":"PSStringFromPropertyKey","features":[62]},{"name":"PSUnregisterPropertySchema","features":[62]},{"name":"PS_ALL","features":[62]},{"name":"PS_CLOUDFILE_PLACEHOLDER","features":[62]},{"name":"PS_CREATE_FILE_ACCESSIBLE","features":[62]},{"name":"PS_DEFAULT","features":[62]},{"name":"PS_FULL_PRIMARY_STREAM_AVAILABLE","features":[62]},{"name":"PS_MARKED_FOR_OFFLINE_AVAILABILITY","features":[62]},{"name":"PS_NONE","features":[62]},{"name":"PUIFFDF_DEFAULT","features":[62]},{"name":"PUIFFDF_FRIENDLYDATE","features":[62]},{"name":"PUIFFDF_NOTIME","features":[62]},{"name":"PUIFFDF_RIGHTTOLEFT","features":[62]},{"name":"PUIFFDF_SHORTFORMAT","features":[62]},{"name":"PUIFNF_DEFAULT","features":[62]},{"name":"PUIFNF_MNEMONIC","features":[62]},{"name":"PUIF_DEFAULT","features":[62]},{"name":"PUIF_NOLABELININFOTIP","features":[62]},{"name":"PUIF_RIGHTALIGN","features":[62]},{"name":"PifMgr_CloseProperties","features":[3,62]},{"name":"PifMgr_GetProperties","features":[3,62]},{"name":"PifMgr_OpenProperties","features":[3,62]},{"name":"PifMgr_SetProperties","features":[3,62]},{"name":"PropertySystem","features":[62]},{"name":"SERIALIZEDPROPSTORAGE","features":[62]},{"name":"SESF_ALL_FLAGS","features":[62]},{"name":"SESF_AUTHENTICATION_ERROR","features":[62]},{"name":"SESF_NONE","features":[62]},{"name":"SESF_PAUSED_DUE_TO_CLIENT_POLICY","features":[62]},{"name":"SESF_PAUSED_DUE_TO_DISK_SPACE_FULL","features":[62]},{"name":"SESF_PAUSED_DUE_TO_METERED_NETWORK","features":[62]},{"name":"SESF_PAUSED_DUE_TO_SERVICE_POLICY","features":[62]},{"name":"SESF_PAUSED_DUE_TO_USER_REQUEST","features":[62]},{"name":"SESF_SERVICE_QUOTA_EXCEEDED_LIMIT","features":[62]},{"name":"SESF_SERVICE_QUOTA_NEARING_LIMIT","features":[62]},{"name":"SESF_SERVICE_UNAVAILABLE","features":[62]},{"name":"SHAddDefaultPropertiesByExt","features":[62]},{"name":"SHGetPropertyStoreForWindow","features":[3,62]},{"name":"SHGetPropertyStoreFromIDList","features":[220,62]},{"name":"SHGetPropertyStoreFromParsingName","features":[62]},{"name":"SHPropStgCreate","features":[62]},{"name":"SHPropStgReadMultiple","features":[3,65,44,62]},{"name":"SHPropStgWriteMultiple","features":[3,65,44,62]},{"name":"STS_EXCLUDED","features":[62]},{"name":"STS_FETCHING_METADATA","features":[62]},{"name":"STS_HASERROR","features":[62]},{"name":"STS_HASWARNING","features":[62]},{"name":"STS_INCOMPLETE","features":[62]},{"name":"STS_NEEDSDOWNLOAD","features":[62]},{"name":"STS_NEEDSUPLOAD","features":[62]},{"name":"STS_NONE","features":[62]},{"name":"STS_PAUSED","features":[62]},{"name":"STS_PLACEHOLDER_IFEMPTY","features":[62]},{"name":"STS_TRANSFERRING","features":[62]},{"name":"STS_USER_REQUESTED_REFRESH","features":[62]},{"name":"SYNC_ENGINE_STATE_FLAGS","features":[62]},{"name":"SYNC_TRANSFER_STATUS","features":[62]},{"name":"_PERSIST_SPROPSTORE_FLAGS","features":[62]}],"672":[{"name":"ALT_BREAKS","features":[221]},{"name":"ALT_BREAKS_FULL","features":[221]},{"name":"ALT_BREAKS_SAME","features":[221]},{"name":"ALT_BREAKS_UNIQUE","features":[221]},{"name":"ASYNC_RECO_ADDSTROKE_FAILED","features":[221]},{"name":"ASYNC_RECO_INTERRUPTED","features":[221]},{"name":"ASYNC_RECO_PROCESS_FAILED","features":[221]},{"name":"ASYNC_RECO_RESETCONTEXT_FAILED","features":[221]},{"name":"ASYNC_RECO_SETCACMODE_FAILED","features":[221]},{"name":"ASYNC_RECO_SETFACTOID_FAILED","features":[221]},{"name":"ASYNC_RECO_SETFLAGS_FAILED","features":[221]},{"name":"ASYNC_RECO_SETGUIDE_FAILED","features":[221]},{"name":"ASYNC_RECO_SETTEXTCONTEXT_FAILED","features":[221]},{"name":"ASYNC_RECO_SETWORDLIST_FAILED","features":[221]},{"name":"AddStroke","features":[14,221]},{"name":"AddWordsToWordList","features":[221]},{"name":"AdviseInkChange","features":[3,221]},{"name":"AppearanceConstants","features":[221]},{"name":"AsyncStylusQueue","features":[221]},{"name":"AsyncStylusQueueImmediate","features":[221]},{"name":"BEST_COMPLETE","features":[221]},{"name":"BorderStyleConstants","features":[221]},{"name":"CAC_FULL","features":[221]},{"name":"CAC_PREFIX","features":[221]},{"name":"CAC_RANDOM","features":[221]},{"name":"CFL_INTERMEDIATE","features":[221]},{"name":"CFL_POOR","features":[221]},{"name":"CFL_STRONG","features":[221]},{"name":"CHARACTER_RANGE","features":[221]},{"name":"CONFIDENCE_LEVEL","features":[221]},{"name":"Closed","features":[221]},{"name":"CorrectionMode","features":[221]},{"name":"CorrectionMode_NotVisible","features":[221]},{"name":"CorrectionMode_PostInsertionCollapsed","features":[221]},{"name":"CorrectionMode_PostInsertionExpanded","features":[221]},{"name":"CorrectionMode_PreInsertion","features":[221]},{"name":"CorrectionPosition","features":[221]},{"name":"CorrectionPosition_Auto","features":[221]},{"name":"CorrectionPosition_Bottom","features":[221]},{"name":"CorrectionPosition_Top","features":[221]},{"name":"CreateContext","features":[221]},{"name":"CreateRecognizer","features":[221]},{"name":"DISPID_DAAntiAliased","features":[221]},{"name":"DISPID_DAClone","features":[221]},{"name":"DISPID_DAColor","features":[221]},{"name":"DISPID_DAExtendedProperties","features":[221]},{"name":"DISPID_DAFitToCurve","features":[221]},{"name":"DISPID_DAHeight","features":[221]},{"name":"DISPID_DAIgnorePressure","features":[221]},{"name":"DISPID_DAPenTip","features":[221]},{"name":"DISPID_DARasterOperation","features":[221]},{"name":"DISPID_DATransparency","features":[221]},{"name":"DISPID_DAWidth","features":[221]},{"name":"DISPID_DisableNoScroll","features":[221]},{"name":"DISPID_DragIcon","features":[221]},{"name":"DISPID_DrawAttr","features":[221]},{"name":"DISPID_Enabled","features":[221]},{"name":"DISPID_Factoid","features":[221]},{"name":"DISPID_GetGestStatus","features":[221]},{"name":"DISPID_Hwnd","features":[221]},{"name":"DISPID_IAddStrokesAtRectangle","features":[221]},{"name":"DISPID_ICAutoRedraw","features":[221]},{"name":"DISPID_ICBId","features":[221]},{"name":"DISPID_ICBName","features":[221]},{"name":"DISPID_ICBState","features":[221]},{"name":"DISPID_ICBsCount","features":[221]},{"name":"DISPID_ICBsItem","features":[221]},{"name":"DISPID_ICBs_NewEnum","features":[221]},{"name":"DISPID_ICCollectingInk","features":[221]},{"name":"DISPID_ICCollectionMode","features":[221]},{"name":"DISPID_ICCursors","features":[221]},{"name":"DISPID_ICDefaultDrawingAttributes","features":[221]},{"name":"DISPID_ICDesiredPacketDescription","features":[221]},{"name":"DISPID_ICDynamicRendering","features":[221]},{"name":"DISPID_ICECursorButtonDown","features":[221]},{"name":"DISPID_ICECursorButtonUp","features":[221]},{"name":"DISPID_ICECursorDown","features":[221]},{"name":"DISPID_ICECursorInRange","features":[221]},{"name":"DISPID_ICECursorOutOfRange","features":[221]},{"name":"DISPID_ICEGesture","features":[221]},{"name":"DISPID_ICENewInAirPackets","features":[221]},{"name":"DISPID_ICENewPackets","features":[221]},{"name":"DISPID_ICEStroke","features":[221]},{"name":"DISPID_ICESystemGesture","features":[221]},{"name":"DISPID_ICETabletAdded","features":[221]},{"name":"DISPID_ICETabletRemoved","features":[221]},{"name":"DISPID_ICEnabled","features":[221]},{"name":"DISPID_ICGetEventInterest","features":[221]},{"name":"DISPID_ICGetGestureStatus","features":[221]},{"name":"DISPID_ICGetWindowInputRectangle","features":[221]},{"name":"DISPID_ICHwnd","features":[221]},{"name":"DISPID_ICInk","features":[221]},{"name":"DISPID_ICMarginX","features":[221]},{"name":"DISPID_ICMarginY","features":[221]},{"name":"DISPID_ICMouseIcon","features":[221]},{"name":"DISPID_ICMousePointer","features":[221]},{"name":"DISPID_ICPaint","features":[221]},{"name":"DISPID_ICRenderer","features":[221]},{"name":"DISPID_ICSetAllTabletsMode","features":[221]},{"name":"DISPID_ICSetEventInterest","features":[221]},{"name":"DISPID_ICSetGestureStatus","features":[221]},{"name":"DISPID_ICSetSingleTabletIntegratedMode","features":[221]},{"name":"DISPID_ICSetWindowInputRectangle","features":[221]},{"name":"DISPID_ICSsAdd","features":[221]},{"name":"DISPID_ICSsClear","features":[221]},{"name":"DISPID_ICSsCount","features":[221]},{"name":"DISPID_ICSsItem","features":[221]},{"name":"DISPID_ICSsRemove","features":[221]},{"name":"DISPID_ICSs_NewEnum","features":[221]},{"name":"DISPID_ICSupportHighContrastInk","features":[221]},{"name":"DISPID_ICTablet","features":[221]},{"name":"DISPID_ICText","features":[221]},{"name":"DISPID_ICanPaste","features":[221]},{"name":"DISPID_IClip","features":[221]},{"name":"DISPID_IClipboardCopy","features":[221]},{"name":"DISPID_IClipboardCopyWithRectangle","features":[221]},{"name":"DISPID_IClipboardPaste","features":[221]},{"name":"DISPID_IClone","features":[221]},{"name":"DISPID_ICreateStroke","features":[221]},{"name":"DISPID_ICreateStrokeFromPoints","features":[221]},{"name":"DISPID_ICreateStrokes","features":[221]},{"name":"DISPID_ICsCount","features":[221]},{"name":"DISPID_ICsItem","features":[221]},{"name":"DISPID_ICs_NewEnum","features":[221]},{"name":"DISPID_ICsrButtons","features":[221]},{"name":"DISPID_ICsrDrawingAttributes","features":[221]},{"name":"DISPID_ICsrId","features":[221]},{"name":"DISPID_ICsrInverted","features":[221]},{"name":"DISPID_ICsrName","features":[221]},{"name":"DISPID_ICsrTablet","features":[221]},{"name":"DISPID_ICustomStrokes","features":[221]},{"name":"DISPID_IDeleteStroke","features":[221]},{"name":"DISPID_IDeleteStrokes","features":[221]},{"name":"DISPID_IDirty","features":[221]},{"name":"DISPID_IEInkAdded","features":[221]},{"name":"DISPID_IEInkDeleted","features":[221]},{"name":"DISPID_IEPData","features":[221]},{"name":"DISPID_IEPGuid","features":[221]},{"name":"DISPID_IEPsAdd","features":[221]},{"name":"DISPID_IEPsClear","features":[221]},{"name":"DISPID_IEPsCount","features":[221]},{"name":"DISPID_IEPsDoesPropertyExist","features":[221]},{"name":"DISPID_IEPsItem","features":[221]},{"name":"DISPID_IEPsRemove","features":[221]},{"name":"DISPID_IEPs_NewEnum","features":[221]},{"name":"DISPID_IExtendedProperties","features":[221]},{"name":"DISPID_IExtractStrokes","features":[221]},{"name":"DISPID_IExtractWithRectangle","features":[221]},{"name":"DISPID_IGConfidence","features":[221]},{"name":"DISPID_IGGetHotPoint","features":[221]},{"name":"DISPID_IGId","features":[221]},{"name":"DISPID_IGetBoundingBox","features":[221]},{"name":"DISPID_IHitTestCircle","features":[221]},{"name":"DISPID_IHitTestWithLasso","features":[221]},{"name":"DISPID_IHitTestWithRectangle","features":[221]},{"name":"DISPID_IInkDivider_Divide","features":[221]},{"name":"DISPID_IInkDivider_LineHeight","features":[221]},{"name":"DISPID_IInkDivider_RecognizerContext","features":[221]},{"name":"DISPID_IInkDivider_Strokes","features":[221]},{"name":"DISPID_IInkDivisionResult_ResultByType","features":[221]},{"name":"DISPID_IInkDivisionResult_Strokes","features":[221]},{"name":"DISPID_IInkDivisionUnit_DivisionType","features":[221]},{"name":"DISPID_IInkDivisionUnit_RecognizedString","features":[221]},{"name":"DISPID_IInkDivisionUnit_RotationTransform","features":[221]},{"name":"DISPID_IInkDivisionUnit_Strokes","features":[221]},{"name":"DISPID_IInkDivisionUnits_Count","features":[221]},{"name":"DISPID_IInkDivisionUnits_Item","features":[221]},{"name":"DISPID_IInkDivisionUnits_NewEnum","features":[221]},{"name":"DISPID_ILoad","features":[221]},{"name":"DISPID_INearestPoint","features":[221]},{"name":"DISPID_IOAttachMode","features":[221]},{"name":"DISPID_IODraw","features":[221]},{"name":"DISPID_IOEPainted","features":[221]},{"name":"DISPID_IOEPainting","features":[221]},{"name":"DISPID_IOESelectionChanged","features":[221]},{"name":"DISPID_IOESelectionChanging","features":[221]},{"name":"DISPID_IOESelectionMoved","features":[221]},{"name":"DISPID_IOESelectionMoving","features":[221]},{"name":"DISPID_IOESelectionResized","features":[221]},{"name":"DISPID_IOESelectionResizing","features":[221]},{"name":"DISPID_IOEStrokesDeleted","features":[221]},{"name":"DISPID_IOEStrokesDeleting","features":[221]},{"name":"DISPID_IOEditingMode","features":[221]},{"name":"DISPID_IOEraserMode","features":[221]},{"name":"DISPID_IOEraserWidth","features":[221]},{"name":"DISPID_IOHitTestSelection","features":[221]},{"name":"DISPID_IOSelection","features":[221]},{"name":"DISPID_IOSupportHighContrastSelectionUI","features":[221]},{"name":"DISPID_IPBackColor","features":[221]},{"name":"DISPID_IPEChangeUICues","features":[221]},{"name":"DISPID_IPEClick","features":[221]},{"name":"DISPID_IPEDblClick","features":[221]},{"name":"DISPID_IPEInvalidated","features":[221]},{"name":"DISPID_IPEKeyDown","features":[221]},{"name":"DISPID_IPEKeyPress","features":[221]},{"name":"DISPID_IPEKeyUp","features":[221]},{"name":"DISPID_IPEMouseDown","features":[221]},{"name":"DISPID_IPEMouseEnter","features":[221]},{"name":"DISPID_IPEMouseHover","features":[221]},{"name":"DISPID_IPEMouseLeave","features":[221]},{"name":"DISPID_IPEMouseMove","features":[221]},{"name":"DISPID_IPEMouseUp","features":[221]},{"name":"DISPID_IPEMouseWheel","features":[221]},{"name":"DISPID_IPEResize","features":[221]},{"name":"DISPID_IPESizeChanged","features":[221]},{"name":"DISPID_IPESizeModeChanged","features":[221]},{"name":"DISPID_IPEStyleChanged","features":[221]},{"name":"DISPID_IPESystemColorsChanged","features":[221]},{"name":"DISPID_IPInkEnabled","features":[221]},{"name":"DISPID_IPPicture","features":[221]},{"name":"DISPID_IPSizeMode","features":[221]},{"name":"DISPID_IRBottom","features":[221]},{"name":"DISPID_IRData","features":[221]},{"name":"DISPID_IRDraw","features":[221]},{"name":"DISPID_IRDrawStroke","features":[221]},{"name":"DISPID_IRERecognition","features":[221]},{"name":"DISPID_IRERecognitionWithAlternates","features":[221]},{"name":"DISPID_IRGColumns","features":[221]},{"name":"DISPID_IRGDrawnBox","features":[221]},{"name":"DISPID_IRGGuideData","features":[221]},{"name":"DISPID_IRGMidline","features":[221]},{"name":"DISPID_IRGRows","features":[221]},{"name":"DISPID_IRGWritingBox","features":[221]},{"name":"DISPID_IRGetObjectTransform","features":[221]},{"name":"DISPID_IRGetRectangle","features":[221]},{"name":"DISPID_IRGetViewTransform","features":[221]},{"name":"DISPID_IRInkSpaceToPixel","features":[221]},{"name":"DISPID_IRInkSpaceToPixelFromPoints","features":[221]},{"name":"DISPID_IRLeft","features":[221]},{"name":"DISPID_IRMeasure","features":[221]},{"name":"DISPID_IRMeasureStroke","features":[221]},{"name":"DISPID_IRMove","features":[221]},{"name":"DISPID_IRPixelToInkSpace","features":[221]},{"name":"DISPID_IRPixelToInkSpaceFromPoints","features":[221]},{"name":"DISPID_IRRight","features":[221]},{"name":"DISPID_IRRotate","features":[221]},{"name":"DISPID_IRScale","features":[221]},{"name":"DISPID_IRSetObjectTransform","features":[221]},{"name":"DISPID_IRSetRectangle","features":[221]},{"name":"DISPID_IRSetViewTransform","features":[221]},{"name":"DISPID_IRTop","features":[221]},{"name":"DISPID_IRecoCtx2_EnabledUnicodeRanges","features":[221]},{"name":"DISPID_IRecoCtx_BackgroundRecognize","features":[221]},{"name":"DISPID_IRecoCtx_BackgroundRecognizeWithAlternates","features":[221]},{"name":"DISPID_IRecoCtx_CharacterAutoCompletionMode","features":[221]},{"name":"DISPID_IRecoCtx_Clone","features":[221]},{"name":"DISPID_IRecoCtx_EndInkInput","features":[221]},{"name":"DISPID_IRecoCtx_Factoid","features":[221]},{"name":"DISPID_IRecoCtx_Flags","features":[221]},{"name":"DISPID_IRecoCtx_Guide","features":[221]},{"name":"DISPID_IRecoCtx_IsStringSupported","features":[221]},{"name":"DISPID_IRecoCtx_PrefixText","features":[221]},{"name":"DISPID_IRecoCtx_Recognize","features":[221]},{"name":"DISPID_IRecoCtx_Recognizer","features":[221]},{"name":"DISPID_IRecoCtx_StopBackgroundRecognition","features":[221]},{"name":"DISPID_IRecoCtx_StopRecognition","features":[221]},{"name":"DISPID_IRecoCtx_Strokes","features":[221]},{"name":"DISPID_IRecoCtx_SuffixText","features":[221]},{"name":"DISPID_IRecoCtx_WordList","features":[221]},{"name":"DISPID_IRecosCount","features":[221]},{"name":"DISPID_IRecosGetDefaultRecognizer","features":[221]},{"name":"DISPID_IRecosItem","features":[221]},{"name":"DISPID_IRecos_NewEnum","features":[221]},{"name":"DISPID_ISDBezierCusps","features":[221]},{"name":"DISPID_ISDBezierPoints","features":[221]},{"name":"DISPID_ISDClip","features":[221]},{"name":"DISPID_ISDDeleted","features":[221]},{"name":"DISPID_ISDDrawingAttributes","features":[221]},{"name":"DISPID_ISDExtendedProperties","features":[221]},{"name":"DISPID_ISDFindIntersections","features":[221]},{"name":"DISPID_ISDGetBoundingBox","features":[221]},{"name":"DISPID_ISDGetFlattenedBezierPoints","features":[221]},{"name":"DISPID_ISDGetPacketData","features":[221]},{"name":"DISPID_ISDGetPacketDescriptionPropertyMetrics","features":[221]},{"name":"DISPID_ISDGetPacketValuesByProperty","features":[221]},{"name":"DISPID_ISDGetPoints","features":[221]},{"name":"DISPID_ISDGetRectangleIntersections","features":[221]},{"name":"DISPID_ISDHitTestCircle","features":[221]},{"name":"DISPID_ISDID","features":[221]},{"name":"DISPID_ISDInk","features":[221]},{"name":"DISPID_ISDInkIndex","features":[221]},{"name":"DISPID_ISDMove","features":[221]},{"name":"DISPID_ISDNearestPoint","features":[221]},{"name":"DISPID_ISDPacketCount","features":[221]},{"name":"DISPID_ISDPacketDescription","features":[221]},{"name":"DISPID_ISDPacketSize","features":[221]},{"name":"DISPID_ISDPolylineCusps","features":[221]},{"name":"DISPID_ISDRotate","features":[221]},{"name":"DISPID_ISDScale","features":[221]},{"name":"DISPID_ISDScaleToRectangle","features":[221]},{"name":"DISPID_ISDSelfIntersections","features":[221]},{"name":"DISPID_ISDSetPacketValuesByProperty","features":[221]},{"name":"DISPID_ISDSetPoints","features":[221]},{"name":"DISPID_ISDShear","features":[221]},{"name":"DISPID_ISDSplit","features":[221]},{"name":"DISPID_ISDTransform","features":[221]},{"name":"DISPID_ISave","features":[221]},{"name":"DISPID_ISsAdd","features":[221]},{"name":"DISPID_ISsAddStrokes","features":[221]},{"name":"DISPID_ISsClip","features":[221]},{"name":"DISPID_ISsCount","features":[221]},{"name":"DISPID_ISsGetBoundingBox","features":[221]},{"name":"DISPID_ISsInk","features":[221]},{"name":"DISPID_ISsItem","features":[221]},{"name":"DISPID_ISsModifyDrawingAttributes","features":[221]},{"name":"DISPID_ISsMove","features":[221]},{"name":"DISPID_ISsRecognitionResult","features":[221]},{"name":"DISPID_ISsRemove","features":[221]},{"name":"DISPID_ISsRemoveRecognitionResult","features":[221]},{"name":"DISPID_ISsRemoveStrokes","features":[221]},{"name":"DISPID_ISsRotate","features":[221]},{"name":"DISPID_ISsScale","features":[221]},{"name":"DISPID_ISsScaleToRectangle","features":[221]},{"name":"DISPID_ISsShear","features":[221]},{"name":"DISPID_ISsToString","features":[221]},{"name":"DISPID_ISsTransform","features":[221]},{"name":"DISPID_ISsValid","features":[221]},{"name":"DISPID_ISs_NewEnum","features":[221]},{"name":"DISPID_IStrokes","features":[221]},{"name":"DISPID_IT2DeviceKind","features":[221]},{"name":"DISPID_IT3IsMultiTouch","features":[221]},{"name":"DISPID_IT3MaximumCursors","features":[221]},{"name":"DISPID_ITData","features":[221]},{"name":"DISPID_ITGetTransform","features":[221]},{"name":"DISPID_ITHardwareCapabilities","features":[221]},{"name":"DISPID_ITIsPacketPropertySupported","features":[221]},{"name":"DISPID_ITMaximumInputRectangle","features":[221]},{"name":"DISPID_ITName","features":[221]},{"name":"DISPID_ITPlugAndPlayId","features":[221]},{"name":"DISPID_ITPropertyMetrics","features":[221]},{"name":"DISPID_ITReflect","features":[221]},{"name":"DISPID_ITReset","features":[221]},{"name":"DISPID_ITRotate","features":[221]},{"name":"DISPID_ITScale","features":[221]},{"name":"DISPID_ITSetTransform","features":[221]},{"name":"DISPID_ITShear","features":[221]},{"name":"DISPID_ITTranslate","features":[221]},{"name":"DISPID_ITeDx","features":[221]},{"name":"DISPID_ITeDy","features":[221]},{"name":"DISPID_ITeM11","features":[221]},{"name":"DISPID_ITeM12","features":[221]},{"name":"DISPID_ITeM21","features":[221]},{"name":"DISPID_ITeM22","features":[221]},{"name":"DISPID_ITsCount","features":[221]},{"name":"DISPID_ITsDefaultTablet","features":[221]},{"name":"DISPID_ITsIsPacketPropertySupported","features":[221]},{"name":"DISPID_ITsItem","features":[221]},{"name":"DISPID_ITs_NewEnum","features":[221]},{"name":"DISPID_IeeChange","features":[221]},{"name":"DISPID_IeeClick","features":[221]},{"name":"DISPID_IeeCursorDown","features":[221]},{"name":"DISPID_IeeDblClick","features":[221]},{"name":"DISPID_IeeGesture","features":[221]},{"name":"DISPID_IeeKeyDown","features":[221]},{"name":"DISPID_IeeKeyPress","features":[221]},{"name":"DISPID_IeeKeyUp","features":[221]},{"name":"DISPID_IeeMouseDown","features":[221]},{"name":"DISPID_IeeMouseMove","features":[221]},{"name":"DISPID_IeeMouseUp","features":[221]},{"name":"DISPID_IeeRecognitionResult","features":[221]},{"name":"DISPID_IeeSelChange","features":[221]},{"name":"DISPID_IeeStroke","features":[221]},{"name":"DISPID_Ink","features":[221]},{"name":"DISPID_InkCollector","features":[221]},{"name":"DISPID_InkCollectorEvent","features":[221]},{"name":"DISPID_InkCursor","features":[221]},{"name":"DISPID_InkCursorButton","features":[221]},{"name":"DISPID_InkCursorButtons","features":[221]},{"name":"DISPID_InkCursors","features":[221]},{"name":"DISPID_InkCustomStrokes","features":[221]},{"name":"DISPID_InkDivider","features":[221]},{"name":"DISPID_InkDivisionResult","features":[221]},{"name":"DISPID_InkDivisionUnit","features":[221]},{"name":"DISPID_InkDivisionUnits","features":[221]},{"name":"DISPID_InkDrawingAttributes","features":[221]},{"name":"DISPID_InkEdit","features":[221]},{"name":"DISPID_InkEditEvents","features":[221]},{"name":"DISPID_InkEvent","features":[221]},{"name":"DISPID_InkExtendedProperties","features":[221]},{"name":"DISPID_InkExtendedProperty","features":[221]},{"name":"DISPID_InkGesture","features":[221]},{"name":"DISPID_InkInsertMode","features":[221]},{"name":"DISPID_InkMode","features":[221]},{"name":"DISPID_InkRecoAlternate","features":[221]},{"name":"DISPID_InkRecoAlternate_AlternatesWithConstantPropertyValues","features":[221]},{"name":"DISPID_InkRecoAlternate_Ascender","features":[221]},{"name":"DISPID_InkRecoAlternate_Baseline","features":[221]},{"name":"DISPID_InkRecoAlternate_Confidence","features":[221]},{"name":"DISPID_InkRecoAlternate_ConfidenceAlternates","features":[221]},{"name":"DISPID_InkRecoAlternate_Descender","features":[221]},{"name":"DISPID_InkRecoAlternate_GetPropertyValue","features":[221]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromStrokeRanges","features":[221]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromTextRange","features":[221]},{"name":"DISPID_InkRecoAlternate_GetTextRangeFromStrokes","features":[221]},{"name":"DISPID_InkRecoAlternate_LineAlternates","features":[221]},{"name":"DISPID_InkRecoAlternate_LineNumber","features":[221]},{"name":"DISPID_InkRecoAlternate_Midline","features":[221]},{"name":"DISPID_InkRecoAlternate_String","features":[221]},{"name":"DISPID_InkRecoAlternate_Strokes","features":[221]},{"name":"DISPID_InkRecoContext","features":[221]},{"name":"DISPID_InkRecoContext2","features":[221]},{"name":"DISPID_InkRecognitionAlternates","features":[221]},{"name":"DISPID_InkRecognitionAlternates_Count","features":[221]},{"name":"DISPID_InkRecognitionAlternates_Item","features":[221]},{"name":"DISPID_InkRecognitionAlternates_NewEnum","features":[221]},{"name":"DISPID_InkRecognitionAlternates_Strokes","features":[221]},{"name":"DISPID_InkRecognitionEvent","features":[221]},{"name":"DISPID_InkRecognitionResult","features":[221]},{"name":"DISPID_InkRecognitionResult_AlternatesFromSelection","features":[221]},{"name":"DISPID_InkRecognitionResult_ModifyTopAlternate","features":[221]},{"name":"DISPID_InkRecognitionResult_SetResultOnStrokes","features":[221]},{"name":"DISPID_InkRecognitionResult_Strokes","features":[221]},{"name":"DISPID_InkRecognitionResult_TopAlternate","features":[221]},{"name":"DISPID_InkRecognitionResult_TopConfidence","features":[221]},{"name":"DISPID_InkRecognitionResult_TopString","features":[221]},{"name":"DISPID_InkRecognizer","features":[221]},{"name":"DISPID_InkRecognizer2","features":[221]},{"name":"DISPID_InkRecognizerGuide","features":[221]},{"name":"DISPID_InkRecognizers","features":[221]},{"name":"DISPID_InkRectangle","features":[221]},{"name":"DISPID_InkRenderer","features":[221]},{"name":"DISPID_InkStrokeDisp","features":[221]},{"name":"DISPID_InkStrokes","features":[221]},{"name":"DISPID_InkTablet","features":[221]},{"name":"DISPID_InkTablet2","features":[221]},{"name":"DISPID_InkTablet3","features":[221]},{"name":"DISPID_InkTablets","features":[221]},{"name":"DISPID_InkTransform","features":[221]},{"name":"DISPID_InkWordList","features":[221]},{"name":"DISPID_InkWordList2","features":[221]},{"name":"DISPID_InkWordList2_AddWords","features":[221]},{"name":"DISPID_InkWordList_AddWord","features":[221]},{"name":"DISPID_InkWordList_Merge","features":[221]},{"name":"DISPID_InkWordList_RemoveWord","features":[221]},{"name":"DISPID_Locked","features":[221]},{"name":"DISPID_MICClear","features":[221]},{"name":"DISPID_MICClose","features":[221]},{"name":"DISPID_MICInsert","features":[221]},{"name":"DISPID_MICPaint","features":[221]},{"name":"DISPID_MathInputControlEvents","features":[221]},{"name":"DISPID_MaxLength","features":[221]},{"name":"DISPID_MultiLine","features":[221]},{"name":"DISPID_PIPAttachedEditWindow","features":[221]},{"name":"DISPID_PIPAutoShow","features":[221]},{"name":"DISPID_PIPBusy","features":[221]},{"name":"DISPID_PIPCommitPendingInput","features":[221]},{"name":"DISPID_PIPCurrentPanel","features":[221]},{"name":"DISPID_PIPDefaultPanel","features":[221]},{"name":"DISPID_PIPEInputFailed","features":[221]},{"name":"DISPID_PIPEPanelChanged","features":[221]},{"name":"DISPID_PIPEPanelMoving","features":[221]},{"name":"DISPID_PIPEVisibleChanged","features":[221]},{"name":"DISPID_PIPEnableTsf","features":[221]},{"name":"DISPID_PIPFactoid","features":[221]},{"name":"DISPID_PIPHeight","features":[221]},{"name":"DISPID_PIPHorizontalOffset","features":[221]},{"name":"DISPID_PIPLeft","features":[221]},{"name":"DISPID_PIPMoveTo","features":[221]},{"name":"DISPID_PIPRefresh","features":[221]},{"name":"DISPID_PIPTop","features":[221]},{"name":"DISPID_PIPVerticalOffset","features":[221]},{"name":"DISPID_PIPVisible","features":[221]},{"name":"DISPID_PIPWidth","features":[221]},{"name":"DISPID_PenInputPanel","features":[221]},{"name":"DISPID_PenInputPanelEvents","features":[221]},{"name":"DISPID_RTSelLength","features":[221]},{"name":"DISPID_RTSelStart","features":[221]},{"name":"DISPID_RTSelText","features":[221]},{"name":"DISPID_RecoCapabilities","features":[221]},{"name":"DISPID_RecoClsid","features":[221]},{"name":"DISPID_RecoCreateRecognizerContext","features":[221]},{"name":"DISPID_RecoId","features":[221]},{"name":"DISPID_RecoLanguageID","features":[221]},{"name":"DISPID_RecoName","features":[221]},{"name":"DISPID_RecoPreferredPacketDescription","features":[221]},{"name":"DISPID_RecoSupportedProperties","features":[221]},{"name":"DISPID_RecoTimeout","features":[221]},{"name":"DISPID_RecoUnicodeRanges","features":[221]},{"name":"DISPID_RecoVendor","features":[221]},{"name":"DISPID_Recognize","features":[221]},{"name":"DISPID_Recognizer","features":[221]},{"name":"DISPID_Refresh","features":[221]},{"name":"DISPID_SEStrokesAdded","features":[221]},{"name":"DISPID_SEStrokesRemoved","features":[221]},{"name":"DISPID_ScrollBars","features":[221]},{"name":"DISPID_SelAlignment","features":[221]},{"name":"DISPID_SelBold","features":[221]},{"name":"DISPID_SelCharOffset","features":[221]},{"name":"DISPID_SelColor","features":[221]},{"name":"DISPID_SelFontName","features":[221]},{"name":"DISPID_SelFontSize","features":[221]},{"name":"DISPID_SelInk","features":[221]},{"name":"DISPID_SelInksDisplayMode","features":[221]},{"name":"DISPID_SelItalic","features":[221]},{"name":"DISPID_SelRTF","features":[221]},{"name":"DISPID_SelUnderline","features":[221]},{"name":"DISPID_SetGestStatus","features":[221]},{"name":"DISPID_Status","features":[221]},{"name":"DISPID_StrokeEvent","features":[221]},{"name":"DISPID_Text","features":[221]},{"name":"DISPID_TextRTF","features":[221]},{"name":"DISPID_UseMouseForInput","features":[221]},{"name":"DYNAMIC_RENDERER_CACHED_DATA","features":[221]},{"name":"DestroyContext","features":[221]},{"name":"DestroyRecognizer","features":[221]},{"name":"DestroyWordList","features":[221]},{"name":"DockedBottom","features":[221]},{"name":"DockedTop","features":[221]},{"name":"DynamicRenderer","features":[221]},{"name":"EM_GETDRAWATTR","features":[221]},{"name":"EM_GETFACTOID","features":[221]},{"name":"EM_GETGESTURESTATUS","features":[221]},{"name":"EM_GETINKINSERTMODE","features":[221]},{"name":"EM_GETINKMODE","features":[221]},{"name":"EM_GETMOUSEICON","features":[221]},{"name":"EM_GETMOUSEPOINTER","features":[221]},{"name":"EM_GETRECOGNIZER","features":[221]},{"name":"EM_GETRECOTIMEOUT","features":[221]},{"name":"EM_GETSELINK","features":[221]},{"name":"EM_GETSELINKDISPLAYMODE","features":[221]},{"name":"EM_GETSTATUS","features":[221]},{"name":"EM_GETUSEMOUSEFORINPUT","features":[221]},{"name":"EM_RECOGNIZE","features":[221]},{"name":"EM_SETDRAWATTR","features":[221]},{"name":"EM_SETFACTOID","features":[221]},{"name":"EM_SETGESTURESTATUS","features":[221]},{"name":"EM_SETINKINSERTMODE","features":[221]},{"name":"EM_SETINKMODE","features":[221]},{"name":"EM_SETMOUSEICON","features":[221]},{"name":"EM_SETMOUSEPOINTER","features":[221]},{"name":"EM_SETRECOGNIZER","features":[221]},{"name":"EM_SETRECOTIMEOUT","features":[221]},{"name":"EM_SETSELINK","features":[221]},{"name":"EM_SETSELINKDISPLAYMODE","features":[221]},{"name":"EM_SETUSEMOUSEFORINPUT","features":[221]},{"name":"EndInkInput","features":[221]},{"name":"EventMask","features":[221]},{"name":"EventMask_All","features":[221]},{"name":"EventMask_CorrectionModeChanged","features":[221]},{"name":"EventMask_CorrectionModeChanging","features":[221]},{"name":"EventMask_InPlaceSizeChanged","features":[221]},{"name":"EventMask_InPlaceSizeChanging","features":[221]},{"name":"EventMask_InPlaceStateChanged","features":[221]},{"name":"EventMask_InPlaceStateChanging","features":[221]},{"name":"EventMask_InPlaceVisibilityChanged","features":[221]},{"name":"EventMask_InPlaceVisibilityChanging","features":[221]},{"name":"EventMask_InputAreaChanged","features":[221]},{"name":"EventMask_InputAreaChanging","features":[221]},{"name":"EventMask_TextInserted","features":[221]},{"name":"EventMask_TextInserting","features":[221]},{"name":"FACILITY_INK","features":[221]},{"name":"FACTOID_BOPOMOFO","features":[221]},{"name":"FACTOID_CHINESESIMPLECOMMON","features":[221]},{"name":"FACTOID_CHINESETRADITIONALCOMMON","features":[221]},{"name":"FACTOID_CURRENCY","features":[221]},{"name":"FACTOID_DATE","features":[221]},{"name":"FACTOID_DEFAULT","features":[221]},{"name":"FACTOID_DIGIT","features":[221]},{"name":"FACTOID_EMAIL","features":[221]},{"name":"FACTOID_FILENAME","features":[221]},{"name":"FACTOID_HANGULCOMMON","features":[221]},{"name":"FACTOID_HANGULRARE","features":[221]},{"name":"FACTOID_HIRAGANA","features":[221]},{"name":"FACTOID_JAMO","features":[221]},{"name":"FACTOID_JAPANESECOMMON","features":[221]},{"name":"FACTOID_KANJICOMMON","features":[221]},{"name":"FACTOID_KANJIRARE","features":[221]},{"name":"FACTOID_KATAKANA","features":[221]},{"name":"FACTOID_KOREANCOMMON","features":[221]},{"name":"FACTOID_LOWERCHAR","features":[221]},{"name":"FACTOID_NONE","features":[221]},{"name":"FACTOID_NUMBER","features":[221]},{"name":"FACTOID_NUMBERSIMPLE","features":[221]},{"name":"FACTOID_ONECHAR","features":[221]},{"name":"FACTOID_PERCENT","features":[221]},{"name":"FACTOID_POSTALCODE","features":[221]},{"name":"FACTOID_PUNCCHAR","features":[221]},{"name":"FACTOID_SYSTEMDICTIONARY","features":[221]},{"name":"FACTOID_TELEPHONE","features":[221]},{"name":"FACTOID_TIME","features":[221]},{"name":"FACTOID_UPPERCHAR","features":[221]},{"name":"FACTOID_WEB","features":[221]},{"name":"FACTOID_WORDLIST","features":[221]},{"name":"FLICKACTION_COMMANDCODE","features":[221]},{"name":"FLICKACTION_COMMANDCODE_APPCOMMAND","features":[221]},{"name":"FLICKACTION_COMMANDCODE_CUSTOMKEY","features":[221]},{"name":"FLICKACTION_COMMANDCODE_KEYMODIFIER","features":[221]},{"name":"FLICKACTION_COMMANDCODE_NULL","features":[221]},{"name":"FLICKACTION_COMMANDCODE_SCROLL","features":[221]},{"name":"FLICKDIRECTION","features":[221]},{"name":"FLICKDIRECTION_DOWN","features":[221]},{"name":"FLICKDIRECTION_DOWNLEFT","features":[221]},{"name":"FLICKDIRECTION_DOWNRIGHT","features":[221]},{"name":"FLICKDIRECTION_INVALID","features":[221]},{"name":"FLICKDIRECTION_LEFT","features":[221]},{"name":"FLICKDIRECTION_MIN","features":[221]},{"name":"FLICKDIRECTION_RIGHT","features":[221]},{"name":"FLICKDIRECTION_UP","features":[221]},{"name":"FLICKDIRECTION_UPLEFT","features":[221]},{"name":"FLICKDIRECTION_UPRIGHT","features":[221]},{"name":"FLICKMODE","features":[221]},{"name":"FLICKMODE_DEFAULT","features":[221]},{"name":"FLICKMODE_LEARNING","features":[221]},{"name":"FLICKMODE_MAX","features":[221]},{"name":"FLICKMODE_MIN","features":[221]},{"name":"FLICKMODE_OFF","features":[221]},{"name":"FLICKMODE_ON","features":[221]},{"name":"FLICK_DATA","features":[221]},{"name":"FLICK_POINT","features":[221]},{"name":"FLICK_WM_HANDLED_MASK","features":[221]},{"name":"Floating","features":[221]},{"name":"GESTURE_ARROW_DOWN","features":[221]},{"name":"GESTURE_ARROW_LEFT","features":[221]},{"name":"GESTURE_ARROW_RIGHT","features":[221]},{"name":"GESTURE_ARROW_UP","features":[221]},{"name":"GESTURE_ASTERISK","features":[221]},{"name":"GESTURE_BRACE_LEFT","features":[221]},{"name":"GESTURE_BRACE_OVER","features":[221]},{"name":"GESTURE_BRACE_RIGHT","features":[221]},{"name":"GESTURE_BRACE_UNDER","features":[221]},{"name":"GESTURE_BRACKET_LEFT","features":[221]},{"name":"GESTURE_BRACKET_OVER","features":[221]},{"name":"GESTURE_BRACKET_RIGHT","features":[221]},{"name":"GESTURE_BRACKET_UNDER","features":[221]},{"name":"GESTURE_BULLET","features":[221]},{"name":"GESTURE_BULLET_CROSS","features":[221]},{"name":"GESTURE_CHECK","features":[221]},{"name":"GESTURE_CHEVRON_DOWN","features":[221]},{"name":"GESTURE_CHEVRON_LEFT","features":[221]},{"name":"GESTURE_CHEVRON_RIGHT","features":[221]},{"name":"GESTURE_CHEVRON_UP","features":[221]},{"name":"GESTURE_CIRCLE","features":[221]},{"name":"GESTURE_CIRCLE_CIRCLE","features":[221]},{"name":"GESTURE_CIRCLE_CROSS","features":[221]},{"name":"GESTURE_CIRCLE_LINE_HORZ","features":[221]},{"name":"GESTURE_CIRCLE_LINE_VERT","features":[221]},{"name":"GESTURE_CIRCLE_TAP","features":[221]},{"name":"GESTURE_CLOSEUP","features":[221]},{"name":"GESTURE_CROSS","features":[221]},{"name":"GESTURE_CURLICUE","features":[221]},{"name":"GESTURE_DATA","features":[221]},{"name":"GESTURE_DIAGONAL_LEFTDOWN","features":[221]},{"name":"GESTURE_DIAGONAL_LEFTUP","features":[221]},{"name":"GESTURE_DIAGONAL_RIGHTDOWN","features":[221]},{"name":"GESTURE_DIAGONAL_RIGHTUP","features":[221]},{"name":"GESTURE_DIGIT_0","features":[221]},{"name":"GESTURE_DIGIT_1","features":[221]},{"name":"GESTURE_DIGIT_2","features":[221]},{"name":"GESTURE_DIGIT_3","features":[221]},{"name":"GESTURE_DIGIT_4","features":[221]},{"name":"GESTURE_DIGIT_5","features":[221]},{"name":"GESTURE_DIGIT_6","features":[221]},{"name":"GESTURE_DIGIT_7","features":[221]},{"name":"GESTURE_DIGIT_8","features":[221]},{"name":"GESTURE_DIGIT_9","features":[221]},{"name":"GESTURE_DOLLAR","features":[221]},{"name":"GESTURE_DOUBLE_ARROW_DOWN","features":[221]},{"name":"GESTURE_DOUBLE_ARROW_LEFT","features":[221]},{"name":"GESTURE_DOUBLE_ARROW_RIGHT","features":[221]},{"name":"GESTURE_DOUBLE_ARROW_UP","features":[221]},{"name":"GESTURE_DOUBLE_CIRCLE","features":[221]},{"name":"GESTURE_DOUBLE_CURLICUE","features":[221]},{"name":"GESTURE_DOUBLE_DOWN","features":[221]},{"name":"GESTURE_DOUBLE_LEFT","features":[221]},{"name":"GESTURE_DOUBLE_RIGHT","features":[221]},{"name":"GESTURE_DOUBLE_TAP","features":[221]},{"name":"GESTURE_DOUBLE_UP","features":[221]},{"name":"GESTURE_DOWN","features":[221]},{"name":"GESTURE_DOWN_ARROW_LEFT","features":[221]},{"name":"GESTURE_DOWN_ARROW_RIGHT","features":[221]},{"name":"GESTURE_DOWN_LEFT","features":[221]},{"name":"GESTURE_DOWN_LEFT_LONG","features":[221]},{"name":"GESTURE_DOWN_RIGHT","features":[221]},{"name":"GESTURE_DOWN_RIGHT_LONG","features":[221]},{"name":"GESTURE_DOWN_UP","features":[221]},{"name":"GESTURE_EXCLAMATION","features":[221]},{"name":"GESTURE_INFINITY","features":[221]},{"name":"GESTURE_LEFT","features":[221]},{"name":"GESTURE_LEFT_ARROW_DOWN","features":[221]},{"name":"GESTURE_LEFT_ARROW_UP","features":[221]},{"name":"GESTURE_LEFT_DOWN","features":[221]},{"name":"GESTURE_LEFT_RIGHT","features":[221]},{"name":"GESTURE_LEFT_UP","features":[221]},{"name":"GESTURE_LETTER_A","features":[221]},{"name":"GESTURE_LETTER_B","features":[221]},{"name":"GESTURE_LETTER_C","features":[221]},{"name":"GESTURE_LETTER_D","features":[221]},{"name":"GESTURE_LETTER_E","features":[221]},{"name":"GESTURE_LETTER_F","features":[221]},{"name":"GESTURE_LETTER_G","features":[221]},{"name":"GESTURE_LETTER_H","features":[221]},{"name":"GESTURE_LETTER_I","features":[221]},{"name":"GESTURE_LETTER_J","features":[221]},{"name":"GESTURE_LETTER_K","features":[221]},{"name":"GESTURE_LETTER_L","features":[221]},{"name":"GESTURE_LETTER_M","features":[221]},{"name":"GESTURE_LETTER_N","features":[221]},{"name":"GESTURE_LETTER_O","features":[221]},{"name":"GESTURE_LETTER_P","features":[221]},{"name":"GESTURE_LETTER_Q","features":[221]},{"name":"GESTURE_LETTER_R","features":[221]},{"name":"GESTURE_LETTER_S","features":[221]},{"name":"GESTURE_LETTER_T","features":[221]},{"name":"GESTURE_LETTER_U","features":[221]},{"name":"GESTURE_LETTER_V","features":[221]},{"name":"GESTURE_LETTER_W","features":[221]},{"name":"GESTURE_LETTER_X","features":[221]},{"name":"GESTURE_LETTER_Y","features":[221]},{"name":"GESTURE_LETTER_Z","features":[221]},{"name":"GESTURE_NULL","features":[221]},{"name":"GESTURE_OPENUP","features":[221]},{"name":"GESTURE_PARAGRAPH","features":[221]},{"name":"GESTURE_PLUS","features":[221]},{"name":"GESTURE_QUAD_TAP","features":[221]},{"name":"GESTURE_QUESTION","features":[221]},{"name":"GESTURE_RECTANGLE","features":[221]},{"name":"GESTURE_RIGHT","features":[221]},{"name":"GESTURE_RIGHT_ARROW_DOWN","features":[221]},{"name":"GESTURE_RIGHT_ARROW_UP","features":[221]},{"name":"GESTURE_RIGHT_DOWN","features":[221]},{"name":"GESTURE_RIGHT_LEFT","features":[221]},{"name":"GESTURE_RIGHT_UP","features":[221]},{"name":"GESTURE_SCRATCHOUT","features":[221]},{"name":"GESTURE_SECTION","features":[221]},{"name":"GESTURE_SEMICIRCLE_LEFT","features":[221]},{"name":"GESTURE_SEMICIRCLE_RIGHT","features":[221]},{"name":"GESTURE_SHARP","features":[221]},{"name":"GESTURE_SQUARE","features":[221]},{"name":"GESTURE_SQUIGGLE","features":[221]},{"name":"GESTURE_STAR","features":[221]},{"name":"GESTURE_SWAP","features":[221]},{"name":"GESTURE_TAP","features":[221]},{"name":"GESTURE_TRIANGLE","features":[221]},{"name":"GESTURE_TRIPLE_DOWN","features":[221]},{"name":"GESTURE_TRIPLE_LEFT","features":[221]},{"name":"GESTURE_TRIPLE_RIGHT","features":[221]},{"name":"GESTURE_TRIPLE_TAP","features":[221]},{"name":"GESTURE_TRIPLE_UP","features":[221]},{"name":"GESTURE_UP","features":[221]},{"name":"GESTURE_UP_ARROW_LEFT","features":[221]},{"name":"GESTURE_UP_ARROW_RIGHT","features":[221]},{"name":"GESTURE_UP_DOWN","features":[221]},{"name":"GESTURE_UP_LEFT","features":[221]},{"name":"GESTURE_UP_LEFT_LONG","features":[221]},{"name":"GESTURE_UP_RIGHT","features":[221]},{"name":"GESTURE_UP_RIGHT_LONG","features":[221]},{"name":"GET_DANDIDATE_FLAGS","features":[221]},{"name":"GUID_DYNAMIC_RENDERER_CACHED_DATA","features":[221]},{"name":"GUID_GESTURE_DATA","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_ALTITUDE_ORIENTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_AZIMUTH_ORIENTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_BUTTON_PRESSURE","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_DEVICE_CONTACT_ID","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_FINGERCONTACTCONFIDENCE","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_HEIGHT","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_NORMAL_PRESSURE","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_PACKET_STATUS","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_PITCH_ROTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_ROLL_ROTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_SERIAL_NUMBER","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_TANGENT_PRESSURE","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_TIMER_TICK","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_TWIST_ORIENTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_WIDTH","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_X","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_X_TILT_ORIENTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_Y","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_YAW_ROTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_Y_TILT_ORIENTATION","features":[221]},{"name":"GUID_PACKETPROPERTY_GUID_Z","features":[221]},{"name":"GestureRecognizer","features":[221]},{"name":"GetAllRecognizers","features":[221]},{"name":"GetBestResultString","features":[221]},{"name":"GetLatticePtr","features":[221]},{"name":"GetLeftSeparator","features":[221]},{"name":"GetRecoAttributes","features":[221]},{"name":"GetResultPropertyList","features":[221]},{"name":"GetRightSeparator","features":[221]},{"name":"GetUnicodeRanges","features":[221]},{"name":"HRECOALT","features":[221]},{"name":"HRECOCONTEXT","features":[221]},{"name":"HRECOGNIZER","features":[221]},{"name":"HRECOLATTICE","features":[221]},{"name":"HRECOWORDLIST","features":[221]},{"name":"HandwrittenTextInsertion","features":[221]},{"name":"IAG_AllGestures","features":[221]},{"name":"IAG_ArrowDown","features":[221]},{"name":"IAG_ArrowLeft","features":[221]},{"name":"IAG_ArrowRight","features":[221]},{"name":"IAG_ArrowUp","features":[221]},{"name":"IAG_Check","features":[221]},{"name":"IAG_ChevronDown","features":[221]},{"name":"IAG_ChevronLeft","features":[221]},{"name":"IAG_ChevronRight","features":[221]},{"name":"IAG_ChevronUp","features":[221]},{"name":"IAG_Circle","features":[221]},{"name":"IAG_Curlicue","features":[221]},{"name":"IAG_DoubleCircle","features":[221]},{"name":"IAG_DoubleCurlicue","features":[221]},{"name":"IAG_DoubleTap","features":[221]},{"name":"IAG_Down","features":[221]},{"name":"IAG_DownLeft","features":[221]},{"name":"IAG_DownLeftLong","features":[221]},{"name":"IAG_DownRight","features":[221]},{"name":"IAG_DownRightLong","features":[221]},{"name":"IAG_DownUp","features":[221]},{"name":"IAG_Exclamation","features":[221]},{"name":"IAG_Left","features":[221]},{"name":"IAG_LeftDown","features":[221]},{"name":"IAG_LeftRight","features":[221]},{"name":"IAG_LeftUp","features":[221]},{"name":"IAG_NoGesture","features":[221]},{"name":"IAG_Right","features":[221]},{"name":"IAG_RightDown","features":[221]},{"name":"IAG_RightLeft","features":[221]},{"name":"IAG_RightUp","features":[221]},{"name":"IAG_Scratchout","features":[221]},{"name":"IAG_SemiCircleLeft","features":[221]},{"name":"IAG_SemiCircleRight","features":[221]},{"name":"IAG_Square","features":[221]},{"name":"IAG_Star","features":[221]},{"name":"IAG_Tap","features":[221]},{"name":"IAG_Triangle","features":[221]},{"name":"IAG_Up","features":[221]},{"name":"IAG_UpDown","features":[221]},{"name":"IAG_UpLeft","features":[221]},{"name":"IAG_UpLeftLong","features":[221]},{"name":"IAG_UpRight","features":[221]},{"name":"IAG_UpRightLong","features":[221]},{"name":"IBBM_CurveFit","features":[221]},{"name":"IBBM_Default","features":[221]},{"name":"IBBM_NoCurveFit","features":[221]},{"name":"IBBM_PointsOnly","features":[221]},{"name":"IBBM_Union","features":[221]},{"name":"ICBS_Down","features":[221]},{"name":"ICBS_Unavailable","features":[221]},{"name":"ICBS_Up","features":[221]},{"name":"ICB_Copy","features":[221]},{"name":"ICB_Cut","features":[221]},{"name":"ICB_Default","features":[221]},{"name":"ICB_DelayedCopy","features":[221]},{"name":"ICB_ExtractOnly","features":[221]},{"name":"ICEI_AllEvents","features":[221]},{"name":"ICEI_CursorButtonDown","features":[221]},{"name":"ICEI_CursorButtonUp","features":[221]},{"name":"ICEI_CursorDown","features":[221]},{"name":"ICEI_CursorInRange","features":[221]},{"name":"ICEI_CursorOutOfRange","features":[221]},{"name":"ICEI_DblClick","features":[221]},{"name":"ICEI_DefaultEvents","features":[221]},{"name":"ICEI_MouseDown","features":[221]},{"name":"ICEI_MouseMove","features":[221]},{"name":"ICEI_MouseUp","features":[221]},{"name":"ICEI_MouseWheel","features":[221]},{"name":"ICEI_NewInAirPackets","features":[221]},{"name":"ICEI_NewPackets","features":[221]},{"name":"ICEI_Stroke","features":[221]},{"name":"ICEI_SystemGesture","features":[221]},{"name":"ICEI_TabletAdded","features":[221]},{"name":"ICEI_TabletRemoved","features":[221]},{"name":"ICF_Bitmap","features":[221]},{"name":"ICF_CopyMask","features":[221]},{"name":"ICF_Default","features":[221]},{"name":"ICF_EnhancedMetafile","features":[221]},{"name":"ICF_InkSerializedFormat","features":[221]},{"name":"ICF_Metafile","features":[221]},{"name":"ICF_None","features":[221]},{"name":"ICF_PasteMask","features":[221]},{"name":"ICF_SketchInk","features":[221]},{"name":"ICF_TextInk","features":[221]},{"name":"ICM_GestureOnly","features":[221]},{"name":"ICM_InkAndGesture","features":[221]},{"name":"ICM_InkOnly","features":[221]},{"name":"IDM_Ink","features":[221]},{"name":"IDM_Text","features":[221]},{"name":"IDT_Drawing","features":[221]},{"name":"IDT_Line","features":[221]},{"name":"IDT_Paragraph","features":[221]},{"name":"IDT_Segment","features":[221]},{"name":"IDynamicRenderer","features":[221]},{"name":"IECN_GESTURE","features":[221]},{"name":"IECN_RECOGNITIONRESULT","features":[221]},{"name":"IECN_STROKE","features":[221]},{"name":"IECN__BASE","features":[221]},{"name":"IEC_GESTUREINFO","features":[3,43,44,42,221]},{"name":"IEC_RECOGNITIONRESULTINFO","features":[3,42,221]},{"name":"IEC_STROKEINFO","features":[3,42,221]},{"name":"IEC__BASE","features":[221]},{"name":"IEF_CopyFromOriginal","features":[221]},{"name":"IEF_Default","features":[221]},{"name":"IEF_RemoveFromOriginal","features":[221]},{"name":"IEM_Disabled","features":[221]},{"name":"IEM_Ink","features":[221]},{"name":"IEM_InkAndGesture","features":[221]},{"name":"IEM_InsertInk","features":[221]},{"name":"IEM_InsertText","features":[221]},{"name":"IES_Collecting","features":[221]},{"name":"IES_Idle","features":[221]},{"name":"IES_Recognizing","features":[221]},{"name":"IGestureRecognizer","features":[221]},{"name":"IHandwrittenTextInsertion","features":[221]},{"name":"IInk","features":[221]},{"name":"IInkCollector","features":[221]},{"name":"IInkCursor","features":[221]},{"name":"IInkCursorButton","features":[221]},{"name":"IInkCursorButtons","features":[221]},{"name":"IInkCursors","features":[221]},{"name":"IInkCustomStrokes","features":[221]},{"name":"IInkDisp","features":[221]},{"name":"IInkDivider","features":[221]},{"name":"IInkDivisionResult","features":[221]},{"name":"IInkDivisionUnit","features":[221]},{"name":"IInkDivisionUnits","features":[221]},{"name":"IInkDrawingAttributes","features":[221]},{"name":"IInkEdit","features":[221]},{"name":"IInkExtendedProperties","features":[221]},{"name":"IInkExtendedProperty","features":[221]},{"name":"IInkGesture","features":[221]},{"name":"IInkLineInfo","features":[221]},{"name":"IInkOverlay","features":[221]},{"name":"IInkPicture","features":[221]},{"name":"IInkRecognitionAlternate","features":[221]},{"name":"IInkRecognitionAlternates","features":[221]},{"name":"IInkRecognitionResult","features":[221]},{"name":"IInkRecognizer","features":[221]},{"name":"IInkRecognizer2","features":[221]},{"name":"IInkRecognizerContext","features":[221]},{"name":"IInkRecognizerContext2","features":[221]},{"name":"IInkRecognizerGuide","features":[221]},{"name":"IInkRecognizers","features":[221]},{"name":"IInkRectangle","features":[221]},{"name":"IInkRenderer","features":[221]},{"name":"IInkStrokeDisp","features":[221]},{"name":"IInkStrokes","features":[221]},{"name":"IInkTablet","features":[221]},{"name":"IInkTablet2","features":[221]},{"name":"IInkTablet3","features":[221]},{"name":"IInkTablets","features":[221]},{"name":"IInkTransform","features":[221]},{"name":"IInkWordList","features":[221]},{"name":"IInkWordList2","features":[221]},{"name":"IInputPanelWindowHandle","features":[221]},{"name":"IKM_Alt","features":[221]},{"name":"IKM_Control","features":[221]},{"name":"IKM_Shift","features":[221]},{"name":"IMF_BOLD","features":[221]},{"name":"IMF_FONT_SELECTED_IN_HDC","features":[221]},{"name":"IMF_ITALIC","features":[221]},{"name":"IMF_Left","features":[221]},{"name":"IMF_Middle","features":[221]},{"name":"IMF_Right","features":[221]},{"name":"IMP_Arrow","features":[221]},{"name":"IMP_ArrowHourglass","features":[221]},{"name":"IMP_ArrowQuestion","features":[221]},{"name":"IMP_Crosshair","features":[221]},{"name":"IMP_Custom","features":[221]},{"name":"IMP_Default","features":[221]},{"name":"IMP_Hand","features":[221]},{"name":"IMP_Hourglass","features":[221]},{"name":"IMP_Ibeam","features":[221]},{"name":"IMP_NoDrop","features":[221]},{"name":"IMP_SizeAll","features":[221]},{"name":"IMP_SizeNESW","features":[221]},{"name":"IMP_SizeNS","features":[221]},{"name":"IMP_SizeNWSE","features":[221]},{"name":"IMP_SizeWE","features":[221]},{"name":"IMP_UpArrow","features":[221]},{"name":"IMathInputControl","features":[221]},{"name":"INKEDIT_CLASS","features":[221]},{"name":"INKEDIT_CLASSW","features":[221]},{"name":"INKMETRIC","features":[3,221]},{"name":"INKRECOGNITIONPROPERTY_BOXNUMBER","features":[221]},{"name":"INKRECOGNITIONPROPERTY_CONFIDENCELEVEL","features":[221]},{"name":"INKRECOGNITIONPROPERTY_HOTPOINT","features":[221]},{"name":"INKRECOGNITIONPROPERTY_LINEMETRICS","features":[221]},{"name":"INKRECOGNITIONPROPERTY_LINENUMBER","features":[221]},{"name":"INKRECOGNITIONPROPERTY_MAXIMUMSTROKECOUNT","features":[221]},{"name":"INKRECOGNITIONPROPERTY_POINTSPERINCH","features":[221]},{"name":"INKRECOGNITIONPROPERTY_SEGMENTATION","features":[221]},{"name":"INK_METRIC_FLAGS","features":[221]},{"name":"INK_SERIALIZED_FORMAT","features":[221]},{"name":"IOAM_Behind","features":[221]},{"name":"IOAM_InFront","features":[221]},{"name":"IOEM_Delete","features":[221]},{"name":"IOEM_Ink","features":[221]},{"name":"IOEM_Select","features":[221]},{"name":"IOERM_PointErase","features":[221]},{"name":"IOERM_StrokeErase","features":[221]},{"name":"IPCM_Default","features":[221]},{"name":"IPCM_MaximumCompression","features":[221]},{"name":"IPCM_NoCompression","features":[221]},{"name":"IPF_Base64GIF","features":[221]},{"name":"IPF_Base64InkSerializedFormat","features":[221]},{"name":"IPF_GIF","features":[221]},{"name":"IPF_InkSerializedFormat","features":[221]},{"name":"IPSM_AutoSize","features":[221]},{"name":"IPSM_CenterImage","features":[221]},{"name":"IPSM_Normal","features":[221]},{"name":"IPSM_StretchImage","features":[221]},{"name":"IPT_Ball","features":[221]},{"name":"IPT_Rectangle","features":[221]},{"name":"IP_CURSOR_DOWN","features":[221]},{"name":"IP_INVERTED","features":[221]},{"name":"IP_MARGIN","features":[221]},{"name":"IPenInputPanel","features":[221]},{"name":"IRAS_All","features":[221]},{"name":"IRAS_DefaultCount","features":[221]},{"name":"IRAS_Start","features":[221]},{"name":"IRCACM_Full","features":[221]},{"name":"IRCACM_Prefix","features":[221]},{"name":"IRCACM_Random","features":[221]},{"name":"IRC_AdviseInkChange","features":[221]},{"name":"IRC_Alpha","features":[221]},{"name":"IRC_ArbitraryAngle","features":[221]},{"name":"IRC_Beta","features":[221]},{"name":"IRC_BoxedInput","features":[221]},{"name":"IRC_CharacterAutoCompletionInput","features":[221]},{"name":"IRC_Cursive","features":[221]},{"name":"IRC_DontCare","features":[221]},{"name":"IRC_DownAndLeft","features":[221]},{"name":"IRC_DownAndRight","features":[221]},{"name":"IRC_FreeInput","features":[221]},{"name":"IRC_Intermediate","features":[221]},{"name":"IRC_Lattice","features":[221]},{"name":"IRC_LeftAndDown","features":[221]},{"name":"IRC_LinedInput","features":[221]},{"name":"IRC_Object","features":[221]},{"name":"IRC_Personalizable","features":[221]},{"name":"IRC_Poor","features":[221]},{"name":"IRC_PrefersArbitraryAngle","features":[221]},{"name":"IRC_PrefersParagraphBreaking","features":[221]},{"name":"IRC_PrefersSegmentation","features":[221]},{"name":"IRC_RightAndDown","features":[221]},{"name":"IRC_StrokeReorder","features":[221]},{"name":"IRC_Strong","features":[221]},{"name":"IRC_TextPrediction","features":[221]},{"name":"IRM_AutoSpace","features":[221]},{"name":"IRM_Coerce","features":[221]},{"name":"IRM_DisablePersonalization","features":[221]},{"name":"IRM_LineMode","features":[221]},{"name":"IRM_Max","features":[221]},{"name":"IRM_None","features":[221]},{"name":"IRM_PrefixOk","features":[221]},{"name":"IRM_TopInkBreaksOnly","features":[221]},{"name":"IRM_WordModeOnly","features":[221]},{"name":"IRO_Black","features":[221]},{"name":"IRO_CopyPen","features":[221]},{"name":"IRO_MaskNotPen","features":[221]},{"name":"IRO_MaskPen","features":[221]},{"name":"IRO_MaskPenNot","features":[221]},{"name":"IRO_MergeNotPen","features":[221]},{"name":"IRO_MergePen","features":[221]},{"name":"IRO_MergePenNot","features":[221]},{"name":"IRO_NoOperation","features":[221]},{"name":"IRO_Not","features":[221]},{"name":"IRO_NotCopyPen","features":[221]},{"name":"IRO_NotMaskPen","features":[221]},{"name":"IRO_NotMergePen","features":[221]},{"name":"IRO_NotXOrPen","features":[221]},{"name":"IRO_White","features":[221]},{"name":"IRO_XOrPen","features":[221]},{"name":"IRS_InkAddedFailed","features":[221]},{"name":"IRS_Interrupted","features":[221]},{"name":"IRS_NoError","features":[221]},{"name":"IRS_ProcessFailed","features":[221]},{"name":"IRS_SetAutoCompletionModeFailed","features":[221]},{"name":"IRS_SetFactoidFailed","features":[221]},{"name":"IRS_SetFlagsFailed","features":[221]},{"name":"IRS_SetGuideFailed","features":[221]},{"name":"IRS_SetPrefixSuffixFailed","features":[221]},{"name":"IRS_SetStrokesFailed","features":[221]},{"name":"IRS_SetWordListFailed","features":[221]},{"name":"IRealTimeStylus","features":[221]},{"name":"IRealTimeStylus2","features":[221]},{"name":"IRealTimeStylus3","features":[221]},{"name":"IRealTimeStylusSynchronization","features":[221]},{"name":"ISC_AllElements","features":[221]},{"name":"ISC_FirstElement","features":[221]},{"name":"ISG_DoubleTap","features":[221]},{"name":"ISG_Drag","features":[221]},{"name":"ISG_Flick","features":[221]},{"name":"ISG_HoldEnter","features":[221]},{"name":"ISG_HoldLeave","features":[221]},{"name":"ISG_HoverEnter","features":[221]},{"name":"ISG_HoverLeave","features":[221]},{"name":"ISG_RightDrag","features":[221]},{"name":"ISG_RightTap","features":[221]},{"name":"ISG_Tap","features":[221]},{"name":"ISketchInk","features":[221]},{"name":"IStrokeBuilder","features":[221]},{"name":"IStylusAsyncPlugin","features":[221]},{"name":"IStylusPlugin","features":[221]},{"name":"IStylusSyncPlugin","features":[221]},{"name":"ITextInputPanel","features":[221]},{"name":"ITextInputPanelEventSink","features":[221]},{"name":"ITextInputPanelRunInfo","features":[221]},{"name":"ITipAutoCompleteClient","features":[221]},{"name":"ITipAutoCompleteProvider","features":[221]},{"name":"InPlace","features":[221]},{"name":"InPlaceDirection","features":[221]},{"name":"InPlaceDirection_Auto","features":[221]},{"name":"InPlaceDirection_Bottom","features":[221]},{"name":"InPlaceDirection_Top","features":[221]},{"name":"InPlaceState","features":[221]},{"name":"InPlaceState_Auto","features":[221]},{"name":"InPlaceState_Expanded","features":[221]},{"name":"InPlaceState_HoverTarget","features":[221]},{"name":"Ink","features":[221]},{"name":"InkApplicationGesture","features":[221]},{"name":"InkBoundingBoxMode","features":[221]},{"name":"InkClipboardFormats","features":[221]},{"name":"InkClipboardModes","features":[221]},{"name":"InkCollectionMode","features":[221]},{"name":"InkCollector","features":[221]},{"name":"InkCollectorClipInkToMargin","features":[221]},{"name":"InkCollectorDefaultMargin","features":[221]},{"name":"InkCollectorEventInterest","features":[221]},{"name":"InkCursorButtonState","features":[221]},{"name":"InkDisp","features":[221]},{"name":"InkDisplayMode","features":[221]},{"name":"InkDivider","features":[221]},{"name":"InkDivisionType","features":[221]},{"name":"InkDrawingAttributes","features":[221]},{"name":"InkEdit","features":[221]},{"name":"InkEditStatus","features":[221]},{"name":"InkExtractFlags","features":[221]},{"name":"InkInsertMode","features":[221]},{"name":"InkMaxTransparencyValue","features":[221]},{"name":"InkMinTransparencyValue","features":[221]},{"name":"InkMode","features":[221]},{"name":"InkMouseButton","features":[221]},{"name":"InkMousePointer","features":[221]},{"name":"InkOverlay","features":[221]},{"name":"InkOverlayAttachMode","features":[221]},{"name":"InkOverlayEditingMode","features":[221]},{"name":"InkOverlayEraserMode","features":[221]},{"name":"InkPenTip","features":[221]},{"name":"InkPersistenceCompressionMode","features":[221]},{"name":"InkPersistenceFormat","features":[221]},{"name":"InkPicture","features":[221]},{"name":"InkPictureSizeMode","features":[221]},{"name":"InkRasterOperation","features":[221]},{"name":"InkRecoGuide","features":[3,221]},{"name":"InkRecognitionAlternatesSelection","features":[221]},{"name":"InkRecognitionConfidence","features":[221]},{"name":"InkRecognitionModes","features":[221]},{"name":"InkRecognitionStatus","features":[221]},{"name":"InkRecognizerCapabilities","features":[221]},{"name":"InkRecognizerCharacterAutoCompletionMode","features":[221]},{"name":"InkRecognizerContext","features":[221]},{"name":"InkRecognizerGuide","features":[221]},{"name":"InkRecognizers","features":[221]},{"name":"InkRectangle","features":[221]},{"name":"InkRenderer","features":[221]},{"name":"InkSelectionConstants","features":[221]},{"name":"InkShiftKeyModifierFlags","features":[221]},{"name":"InkStrokes","features":[221]},{"name":"InkSystemGesture","features":[221]},{"name":"InkTablets","features":[221]},{"name":"InkTransform","features":[221]},{"name":"InkWordList","features":[221]},{"name":"InteractionMode","features":[221]},{"name":"InteractionMode_DockedBottom","features":[221]},{"name":"InteractionMode_DockedTop","features":[221]},{"name":"InteractionMode_Floating","features":[221]},{"name":"InteractionMode_InPlace","features":[221]},{"name":"IsStringSupported","features":[221]},{"name":"KEYMODIFIER","features":[221]},{"name":"KEYMODIFIER_ALTGR","features":[221]},{"name":"KEYMODIFIER_CONTROL","features":[221]},{"name":"KEYMODIFIER_EXT","features":[221]},{"name":"KEYMODIFIER_MENU","features":[221]},{"name":"KEYMODIFIER_SHIFT","features":[221]},{"name":"KEYMODIFIER_WIN","features":[221]},{"name":"LATTICE_METRICS","features":[3,221]},{"name":"LEFT_BUTTON","features":[221]},{"name":"LINE_METRICS","features":[221]},{"name":"LINE_SEGMENT","features":[3,221]},{"name":"LM_ASCENDER","features":[221]},{"name":"LM_BASELINE","features":[221]},{"name":"LM_DESCENDER","features":[221]},{"name":"LM_MIDLINE","features":[221]},{"name":"LoadCachedAttributes","features":[221]},{"name":"MAX_FRIENDLYNAME","features":[221]},{"name":"MAX_LANGUAGES","features":[221]},{"name":"MAX_PACKET_BUTTON_COUNT","features":[221]},{"name":"MAX_PACKET_PROPERTY_COUNT","features":[221]},{"name":"MAX_VENDORNAME","features":[221]},{"name":"MICROSOFT_PENINPUT_PANEL_PROPERTY_T","features":[221]},{"name":"MICROSOFT_TIP_COMBOBOXLIST_PROPERTY","features":[221]},{"name":"MICROSOFT_TIP_NO_INSERT_BUTTON_PROPERTY","features":[221]},{"name":"MICROSOFT_TIP_OPENING_MSG","features":[221]},{"name":"MICROSOFT_URL_EXPERIENCE_PROPERTY","features":[221]},{"name":"MICUIELEMENT","features":[221]},{"name":"MICUIELEMENTSTATE","features":[221]},{"name":"MICUIELEMENTSTATE_DISABLED","features":[221]},{"name":"MICUIELEMENTSTATE_HOT","features":[221]},{"name":"MICUIELEMENTSTATE_NORMAL","features":[221]},{"name":"MICUIELEMENTSTATE_PRESSED","features":[221]},{"name":"MICUIELEMENT_BUTTON_CANCEL","features":[221]},{"name":"MICUIELEMENT_BUTTON_CLEAR","features":[221]},{"name":"MICUIELEMENT_BUTTON_CORRECT","features":[221]},{"name":"MICUIELEMENT_BUTTON_ERASE","features":[221]},{"name":"MICUIELEMENT_BUTTON_INSERT","features":[221]},{"name":"MICUIELEMENT_BUTTON_REDO","features":[221]},{"name":"MICUIELEMENT_BUTTON_UNDO","features":[221]},{"name":"MICUIELEMENT_BUTTON_WRITE","features":[221]},{"name":"MICUIELEMENT_INKPANEL_BACKGROUND","features":[221]},{"name":"MICUIELEMENT_RESULTPANEL_BACKGROUND","features":[221]},{"name":"MIDDLE_BUTTON","features":[221]},{"name":"MakeWordList","features":[221]},{"name":"MathInputControl","features":[221]},{"name":"MouseButton","features":[221]},{"name":"NO_BUTTON","features":[221]},{"name":"NUM_FLICK_DIRECTIONS","features":[221]},{"name":"PACKET_DESCRIPTION","features":[221]},{"name":"PACKET_PROPERTY","features":[221]},{"name":"PROPERTY_METRICS","features":[221]},{"name":"PROPERTY_UNITS","features":[221]},{"name":"PROPERTY_UNITS_AMPERE","features":[221]},{"name":"PROPERTY_UNITS_CANDELA","features":[221]},{"name":"PROPERTY_UNITS_CENTIMETERS","features":[221]},{"name":"PROPERTY_UNITS_DEFAULT","features":[221]},{"name":"PROPERTY_UNITS_DEGREES","features":[221]},{"name":"PROPERTY_UNITS_ENGLINEAR","features":[221]},{"name":"PROPERTY_UNITS_ENGROTATION","features":[221]},{"name":"PROPERTY_UNITS_FAHRENHEIT","features":[221]},{"name":"PROPERTY_UNITS_GRAMS","features":[221]},{"name":"PROPERTY_UNITS_INCHES","features":[221]},{"name":"PROPERTY_UNITS_KELVIN","features":[221]},{"name":"PROPERTY_UNITS_POUNDS","features":[221]},{"name":"PROPERTY_UNITS_RADIANS","features":[221]},{"name":"PROPERTY_UNITS_SECONDS","features":[221]},{"name":"PROPERTY_UNITS_SILINEAR","features":[221]},{"name":"PROPERTY_UNITS_SIROTATION","features":[221]},{"name":"PROPERTY_UNITS_SLUGS","features":[221]},{"name":"PT_Default","features":[221]},{"name":"PT_Handwriting","features":[221]},{"name":"PT_Inactive","features":[221]},{"name":"PT_Keyboard","features":[221]},{"name":"PanelInputArea","features":[221]},{"name":"PanelInputArea_Auto","features":[221]},{"name":"PanelInputArea_CharacterPad","features":[221]},{"name":"PanelInputArea_Keyboard","features":[221]},{"name":"PanelInputArea_WritingPad","features":[221]},{"name":"PanelType","features":[221]},{"name":"PenInputPanel","features":[221]},{"name":"PenInputPanel_Internal","features":[221]},{"name":"PfnRecoCallback","features":[221]},{"name":"Process","features":[3,221]},{"name":"RECOCONF_HIGHCONFIDENCE","features":[221]},{"name":"RECOCONF_LOWCONFIDENCE","features":[221]},{"name":"RECOCONF_MEDIUMCONFIDENCE","features":[221]},{"name":"RECOCONF_NOTSET","features":[221]},{"name":"RECOFLAG_AUTOSPACE","features":[221]},{"name":"RECOFLAG_COERCE","features":[221]},{"name":"RECOFLAG_DISABLEPERSONALIZATION","features":[221]},{"name":"RECOFLAG_LINEMODE","features":[221]},{"name":"RECOFLAG_PREFIXOK","features":[221]},{"name":"RECOFLAG_SINGLESEG","features":[221]},{"name":"RECOFLAG_WORDMODE","features":[221]},{"name":"RECO_ATTRS","features":[221]},{"name":"RECO_GUIDE","features":[221]},{"name":"RECO_LATTICE","features":[221]},{"name":"RECO_LATTICE_COLUMN","features":[221]},{"name":"RECO_LATTICE_ELEMENT","features":[221]},{"name":"RECO_LATTICE_PROPERTIES","features":[221]},{"name":"RECO_LATTICE_PROPERTY","features":[221]},{"name":"RECO_RANGE","features":[221]},{"name":"RECO_TYPE","features":[221]},{"name":"RECO_TYPE_WCHAR","features":[221]},{"name":"RECO_TYPE_WSTRING","features":[221]},{"name":"RF_ADVISEINKCHANGE","features":[221]},{"name":"RF_ARBITRARY_ANGLE","features":[221]},{"name":"RF_BOXED_INPUT","features":[221]},{"name":"RF_CAC_INPUT","features":[221]},{"name":"RF_DONTCARE","features":[221]},{"name":"RF_DOWN_AND_LEFT","features":[221]},{"name":"RF_DOWN_AND_RIGHT","features":[221]},{"name":"RF_FREE_INPUT","features":[221]},{"name":"RF_LATTICE","features":[221]},{"name":"RF_LEFT_AND_DOWN","features":[221]},{"name":"RF_LINED_INPUT","features":[221]},{"name":"RF_OBJECT","features":[221]},{"name":"RF_PERFORMSLINEBREAKING","features":[221]},{"name":"RF_PERSONALIZABLE","features":[221]},{"name":"RF_REQUIRESSEGMENTATIONBREAKING","features":[221]},{"name":"RF_RIGHT_AND_DOWN","features":[221]},{"name":"RF_STROKEREORDER","features":[221]},{"name":"RIGHT_BUTTON","features":[221]},{"name":"RTSDI_AllData","features":[221]},{"name":"RTSDI_CustomStylusDataAdded","features":[221]},{"name":"RTSDI_DefaultEvents","features":[221]},{"name":"RTSDI_Error","features":[221]},{"name":"RTSDI_InAirPackets","features":[221]},{"name":"RTSDI_None","features":[221]},{"name":"RTSDI_Packets","features":[221]},{"name":"RTSDI_RealTimeStylusDisabled","features":[221]},{"name":"RTSDI_RealTimeStylusEnabled","features":[221]},{"name":"RTSDI_StylusButtonDown","features":[221]},{"name":"RTSDI_StylusButtonUp","features":[221]},{"name":"RTSDI_StylusDown","features":[221]},{"name":"RTSDI_StylusInRange","features":[221]},{"name":"RTSDI_StylusNew","features":[221]},{"name":"RTSDI_StylusOutOfRange","features":[221]},{"name":"RTSDI_StylusUp","features":[221]},{"name":"RTSDI_SystemEvents","features":[221]},{"name":"RTSDI_TabletAdded","features":[221]},{"name":"RTSDI_TabletRemoved","features":[221]},{"name":"RTSDI_UpdateMapping","features":[221]},{"name":"RTSLT_AsyncEventLock","features":[221]},{"name":"RTSLT_AsyncObjLock","features":[221]},{"name":"RTSLT_ExcludeCallback","features":[221]},{"name":"RTSLT_ObjLock","features":[221]},{"name":"RTSLT_SyncEventLock","features":[221]},{"name":"RTSLT_SyncObjLock","features":[221]},{"name":"RealTimeStylus","features":[221]},{"name":"RealTimeStylusDataInterest","features":[221]},{"name":"RealTimeStylusLockType","features":[221]},{"name":"SAFE_PARTIAL","features":[221]},{"name":"SCROLLDIRECTION","features":[221]},{"name":"SCROLLDIRECTION_DOWN","features":[221]},{"name":"SCROLLDIRECTION_UP","features":[221]},{"name":"SHR_E","features":[221]},{"name":"SHR_N","features":[221]},{"name":"SHR_NE","features":[221]},{"name":"SHR_NW","features":[221]},{"name":"SHR_None","features":[221]},{"name":"SHR_S","features":[221]},{"name":"SHR_SE","features":[221]},{"name":"SHR_SW","features":[221]},{"name":"SHR_Selection","features":[221]},{"name":"SHR_W","features":[221]},{"name":"STROKE_RANGE","features":[221]},{"name":"STR_GUID_ALTITUDEORIENTATION","features":[221]},{"name":"STR_GUID_AZIMUTHORIENTATION","features":[221]},{"name":"STR_GUID_BUTTONPRESSURE","features":[221]},{"name":"STR_GUID_DEVICE_CONTACT_ID","features":[221]},{"name":"STR_GUID_FINGERCONTACTCONFIDENCE","features":[221]},{"name":"STR_GUID_HEIGHT","features":[221]},{"name":"STR_GUID_NORMALPRESSURE","features":[221]},{"name":"STR_GUID_PAKETSTATUS","features":[221]},{"name":"STR_GUID_PITCHROTATION","features":[221]},{"name":"STR_GUID_ROLLROTATION","features":[221]},{"name":"STR_GUID_SERIALNUMBER","features":[221]},{"name":"STR_GUID_TANGENTPRESSURE","features":[221]},{"name":"STR_GUID_TIMERTICK","features":[221]},{"name":"STR_GUID_TWISTORIENTATION","features":[221]},{"name":"STR_GUID_WIDTH","features":[221]},{"name":"STR_GUID_X","features":[221]},{"name":"STR_GUID_XTILTORIENTATION","features":[221]},{"name":"STR_GUID_Y","features":[221]},{"name":"STR_GUID_YAWROTATION","features":[221]},{"name":"STR_GUID_YTILTORIENTATION","features":[221]},{"name":"STR_GUID_Z","features":[221]},{"name":"SYSTEM_EVENT_DATA","features":[221]},{"name":"ScrollBarsConstants","features":[221]},{"name":"SelAlignmentConstants","features":[221]},{"name":"SelectionHitResult","features":[221]},{"name":"SetEnabledUnicodeRanges","features":[221]},{"name":"SetFactoid","features":[221]},{"name":"SetFlags","features":[221]},{"name":"SetGuide","features":[221]},{"name":"SetTextContext","features":[221]},{"name":"SetWordList","features":[221]},{"name":"SketchInk","features":[221]},{"name":"StrokeBuilder","features":[221]},{"name":"StylusInfo","features":[3,221]},{"name":"StylusQueue","features":[221]},{"name":"SyncStylusQueue","features":[221]},{"name":"TABLET_DISABLE_FLICKFALLBACKKEYS","features":[221]},{"name":"TABLET_DISABLE_FLICKS","features":[221]},{"name":"TABLET_DISABLE_PENBARRELFEEDBACK","features":[221]},{"name":"TABLET_DISABLE_PENTAPFEEDBACK","features":[221]},{"name":"TABLET_DISABLE_PRESSANDHOLD","features":[221]},{"name":"TABLET_DISABLE_SMOOTHSCROLLING","features":[221]},{"name":"TABLET_DISABLE_TOUCHSWITCH","features":[221]},{"name":"TABLET_DISABLE_TOUCHUIFORCEOFF","features":[221]},{"name":"TABLET_DISABLE_TOUCHUIFORCEON","features":[221]},{"name":"TABLET_ENABLE_FLICKLEARNINGMODE","features":[221]},{"name":"TABLET_ENABLE_FLICKSONCONTEXT","features":[221]},{"name":"TABLET_ENABLE_MULTITOUCHDATA","features":[221]},{"name":"TCF_ALLOW_RECOGNITION","features":[221]},{"name":"TCF_FORCE_RECOGNITION","features":[221]},{"name":"TDK_Mouse","features":[221]},{"name":"TDK_Pen","features":[221]},{"name":"TDK_Touch","features":[221]},{"name":"THWC_CursorMustTouch","features":[221]},{"name":"THWC_CursorsHavePhysicalIds","features":[221]},{"name":"THWC_HardProximity","features":[221]},{"name":"THWC_Integrated","features":[221]},{"name":"TPMU_Centimeters","features":[221]},{"name":"TPMU_Default","features":[221]},{"name":"TPMU_Degrees","features":[221]},{"name":"TPMU_Grams","features":[221]},{"name":"TPMU_Inches","features":[221]},{"name":"TPMU_Pounds","features":[221]},{"name":"TPMU_Radians","features":[221]},{"name":"TPMU_Seconds","features":[221]},{"name":"TabletDeviceKind","features":[221]},{"name":"TabletHardwareCapabilities","features":[221]},{"name":"TabletPropertyMetricUnit","features":[221]},{"name":"TextInputPanel","features":[221]},{"name":"TipAutoCompleteClient","features":[221]},{"name":"VisualState","features":[221]},{"name":"WM_TABLET_ADDED","features":[221]},{"name":"WM_TABLET_DEFBASE","features":[221]},{"name":"WM_TABLET_DELETED","features":[221]},{"name":"WM_TABLET_FLICK","features":[221]},{"name":"WM_TABLET_MAXOFFSET","features":[221]},{"name":"WM_TABLET_QUERYSYSTEMGESTURESTATUS","features":[221]},{"name":"_IInkCollectorEvents","features":[221]},{"name":"_IInkEditEvents","features":[221]},{"name":"_IInkEvents","features":[221]},{"name":"_IInkOverlayEvents","features":[221]},{"name":"_IInkPictureEvents","features":[221]},{"name":"_IInkRecognitionEvents","features":[221]},{"name":"_IInkStrokesEvents","features":[221]},{"name":"_IMathInputControlEvents","features":[221]},{"name":"_IPenInputPanelEvents","features":[221]},{"name":"rtfBoth","features":[221]},{"name":"rtfCenter","features":[221]},{"name":"rtfFixedSingle","features":[221]},{"name":"rtfFlat","features":[221]},{"name":"rtfHorizontal","features":[221]},{"name":"rtfLeft","features":[221]},{"name":"rtfNoBorder","features":[221]},{"name":"rtfNone","features":[221]},{"name":"rtfRight","features":[221]},{"name":"rtfThreeD","features":[221]},{"name":"rtfVertical","features":[221]}],"673":[{"name":"ANCHOR_CHANGE_HISTORY_FLAGS","features":[222]},{"name":"AccClientDocMgr","features":[222]},{"name":"AccDictionary","features":[222]},{"name":"AccServerDocMgr","features":[222]},{"name":"AccStore","features":[222]},{"name":"CAND_CANCELED","features":[222]},{"name":"CAND_FINALIZED","features":[222]},{"name":"CAND_SELECTED","features":[222]},{"name":"CLSID_TF_CategoryMgr","features":[222]},{"name":"CLSID_TF_ClassicLangBar","features":[222]},{"name":"CLSID_TF_DisplayAttributeMgr","features":[222]},{"name":"CLSID_TF_InputProcessorProfiles","features":[222]},{"name":"CLSID_TF_LangBarItemMgr","features":[222]},{"name":"CLSID_TF_LangBarMgr","features":[222]},{"name":"CLSID_TF_ThreadMgr","features":[222]},{"name":"CLSID_TF_TransitoryExtensionUIEntry","features":[222]},{"name":"CLSID_TsfServices","features":[222]},{"name":"DCM_FLAGS_CTFMON","features":[222]},{"name":"DCM_FLAGS_LOCALTHREADTSF","features":[222]},{"name":"DCM_FLAGS_TASKENG","features":[222]},{"name":"DoMsCtfMonitor","features":[3,222]},{"name":"DocWrap","features":[222]},{"name":"GETIF_DICTGRAM","features":[222]},{"name":"GETIF_RECOCONTEXT","features":[222]},{"name":"GETIF_RECOGNIZER","features":[222]},{"name":"GETIF_RECOGNIZERNOINIT","features":[222]},{"name":"GETIF_RESMGR","features":[222]},{"name":"GETIF_VOICE","features":[222]},{"name":"GET_TEXT_AND_PROPERTY_UPDATES_FLAGS","features":[222]},{"name":"GUID_APP_FUNCTIONPROVIDER","features":[222]},{"name":"GUID_COMPARTMENT_CONVERSIONMODEBIAS","features":[222]},{"name":"GUID_COMPARTMENT_EMPTYCONTEXT","features":[222]},{"name":"GUID_COMPARTMENT_ENABLED_PROFILES_UPDATED","features":[222]},{"name":"GUID_COMPARTMENT_HANDWRITING_OPENCLOSE","features":[222]},{"name":"GUID_COMPARTMENT_KEYBOARD_DISABLED","features":[222]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE","features":[222]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_CONVERSION","features":[222]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_SENTENCE","features":[222]},{"name":"GUID_COMPARTMENT_KEYBOARD_OPENCLOSE","features":[222]},{"name":"GUID_COMPARTMENT_SAPI_AUDIO","features":[222]},{"name":"GUID_COMPARTMENT_SPEECH_CFGMENU","features":[222]},{"name":"GUID_COMPARTMENT_SPEECH_DISABLED","features":[222]},{"name":"GUID_COMPARTMENT_SPEECH_GLOBALSTATE","features":[222]},{"name":"GUID_COMPARTMENT_SPEECH_OPENCLOSE","features":[222]},{"name":"GUID_COMPARTMENT_SPEECH_UI_STATUS","features":[222]},{"name":"GUID_COMPARTMENT_TIPUISTATUS","features":[222]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION","features":[222]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_DOCUMENTMANAGER","features":[222]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_PARENT","features":[222]},{"name":"GUID_INTEGRATIONSTYLE_SEARCHBOX","features":[222]},{"name":"GUID_LBI_INPUTMODE","features":[222]},{"name":"GUID_LBI_SAPILAYR_CFGMENUBUTTON","features":[222]},{"name":"GUID_MODEBIAS_CHINESE","features":[222]},{"name":"GUID_MODEBIAS_CONVERSATION","features":[222]},{"name":"GUID_MODEBIAS_DATETIME","features":[222]},{"name":"GUID_MODEBIAS_FILENAME","features":[222]},{"name":"GUID_MODEBIAS_FULLWIDTHALPHANUMERIC","features":[222]},{"name":"GUID_MODEBIAS_FULLWIDTHHANGUL","features":[222]},{"name":"GUID_MODEBIAS_HALFWIDTHKATAKANA","features":[222]},{"name":"GUID_MODEBIAS_HANGUL","features":[222]},{"name":"GUID_MODEBIAS_HIRAGANA","features":[222]},{"name":"GUID_MODEBIAS_KATAKANA","features":[222]},{"name":"GUID_MODEBIAS_NAME","features":[222]},{"name":"GUID_MODEBIAS_NONE","features":[222]},{"name":"GUID_MODEBIAS_NUMERIC","features":[222]},{"name":"GUID_MODEBIAS_READING","features":[222]},{"name":"GUID_MODEBIAS_URLHISTORY","features":[222]},{"name":"GUID_PROP_ATTRIBUTE","features":[222]},{"name":"GUID_PROP_COMPOSING","features":[222]},{"name":"GUID_PROP_INPUTSCOPE","features":[222]},{"name":"GUID_PROP_LANGID","features":[222]},{"name":"GUID_PROP_MODEBIAS","features":[222]},{"name":"GUID_PROP_READING","features":[222]},{"name":"GUID_PROP_TEXTOWNER","features":[222]},{"name":"GUID_PROP_TKB_ALTERNATES","features":[222]},{"name":"GUID_SYSTEM_FUNCTIONPROVIDER","features":[222]},{"name":"GUID_TFCAT_CATEGORY_OF_TIP","features":[222]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROPERTY","features":[222]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROVIDER","features":[222]},{"name":"GUID_TFCAT_PROPSTYLE_STATIC","features":[222]},{"name":"GUID_TFCAT_PROP_AUDIODATA","features":[222]},{"name":"GUID_TFCAT_PROP_INKDATA","features":[222]},{"name":"GUID_TFCAT_TIPCAP_COMLESS","features":[222]},{"name":"GUID_TFCAT_TIPCAP_DUALMODE","features":[222]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVEONLY","features":[222]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVESUPPORT","features":[222]},{"name":"GUID_TFCAT_TIPCAP_INPUTMODECOMPARTMENT","features":[222]},{"name":"GUID_TFCAT_TIPCAP_LOCALSERVER","features":[222]},{"name":"GUID_TFCAT_TIPCAP_SECUREMODE","features":[222]},{"name":"GUID_TFCAT_TIPCAP_SYSTRAYSUPPORT","features":[222]},{"name":"GUID_TFCAT_TIPCAP_TSF3","features":[222]},{"name":"GUID_TFCAT_TIPCAP_UIELEMENTENABLED","features":[222]},{"name":"GUID_TFCAT_TIPCAP_WOW16","features":[222]},{"name":"GUID_TFCAT_TIP_HANDWRITING","features":[222]},{"name":"GUID_TFCAT_TIP_KEYBOARD","features":[222]},{"name":"GUID_TFCAT_TIP_SPEECH","features":[222]},{"name":"GUID_TFCAT_TRANSITORYEXTENSIONUI","features":[222]},{"name":"GUID_TS_SERVICE_ACCESSIBLE","features":[222]},{"name":"GUID_TS_SERVICE_ACTIVEX","features":[222]},{"name":"GUID_TS_SERVICE_DATAOBJECT","features":[222]},{"name":"GXFPF_NEAREST","features":[222]},{"name":"GXFPF_ROUND_NEAREST","features":[222]},{"name":"IAccClientDocMgr","features":[222]},{"name":"IAccDictionary","features":[222]},{"name":"IAccServerDocMgr","features":[222]},{"name":"IAccStore","features":[222]},{"name":"IAnchor","features":[222]},{"name":"IClonableWrapper","features":[222]},{"name":"ICoCreateLocally","features":[222]},{"name":"ICoCreatedLocally","features":[222]},{"name":"IDocWrap","features":[222]},{"name":"IEnumITfCompositionView","features":[222]},{"name":"IEnumSpeechCommands","features":[222]},{"name":"IEnumTfCandidates","features":[222]},{"name":"IEnumTfContextViews","features":[222]},{"name":"IEnumTfContexts","features":[222]},{"name":"IEnumTfDisplayAttributeInfo","features":[222]},{"name":"IEnumTfDocumentMgrs","features":[222]},{"name":"IEnumTfFunctionProviders","features":[222]},{"name":"IEnumTfInputProcessorProfiles","features":[222]},{"name":"IEnumTfLangBarItems","features":[222]},{"name":"IEnumTfLanguageProfiles","features":[222]},{"name":"IEnumTfLatticeElements","features":[222]},{"name":"IEnumTfProperties","features":[222]},{"name":"IEnumTfPropertyValue","features":[222]},{"name":"IEnumTfRanges","features":[222]},{"name":"IEnumTfUIElements","features":[222]},{"name":"IInternalDocWrap","features":[222]},{"name":"ILMCM_CHECKLAYOUTANDTIPENABLED","features":[222]},{"name":"ILMCM_LANGUAGEBAROFF","features":[222]},{"name":"INSERT_TEXT_AT_SELECTION_FLAGS","features":[222]},{"name":"IS_ADDRESS_CITY","features":[222]},{"name":"IS_ADDRESS_COUNTRYNAME","features":[222]},{"name":"IS_ADDRESS_COUNTRYSHORTNAME","features":[222]},{"name":"IS_ADDRESS_FULLPOSTALADDRESS","features":[222]},{"name":"IS_ADDRESS_POSTALCODE","features":[222]},{"name":"IS_ADDRESS_STATEORPROVINCE","features":[222]},{"name":"IS_ADDRESS_STREET","features":[222]},{"name":"IS_ALPHANUMERIC_FULLWIDTH","features":[222]},{"name":"IS_ALPHANUMERIC_HALFWIDTH","features":[222]},{"name":"IS_ALPHANUMERIC_PIN","features":[222]},{"name":"IS_ALPHANUMERIC_PIN_SET","features":[222]},{"name":"IS_BOPOMOFO","features":[222]},{"name":"IS_CHAT","features":[222]},{"name":"IS_CHAT_WITHOUT_EMOJI","features":[222]},{"name":"IS_CHINESE_FULLWIDTH","features":[222]},{"name":"IS_CHINESE_HALFWIDTH","features":[222]},{"name":"IS_CURRENCY_AMOUNT","features":[222]},{"name":"IS_CURRENCY_AMOUNTANDSYMBOL","features":[222]},{"name":"IS_CURRENCY_CHINESE","features":[222]},{"name":"IS_DATE_DAY","features":[222]},{"name":"IS_DATE_DAYNAME","features":[222]},{"name":"IS_DATE_FULLDATE","features":[222]},{"name":"IS_DATE_MONTH","features":[222]},{"name":"IS_DATE_MONTHNAME","features":[222]},{"name":"IS_DATE_YEAR","features":[222]},{"name":"IS_DEFAULT","features":[222]},{"name":"IS_DIGITS","features":[222]},{"name":"IS_EMAILNAME_OR_ADDRESS","features":[222]},{"name":"IS_EMAIL_SMTPEMAILADDRESS","features":[222]},{"name":"IS_EMAIL_USERNAME","features":[222]},{"name":"IS_ENUMSTRING","features":[222]},{"name":"IS_FILE_FILENAME","features":[222]},{"name":"IS_FILE_FULLFILEPATH","features":[222]},{"name":"IS_FORMULA","features":[222]},{"name":"IS_FORMULA_NUMBER","features":[222]},{"name":"IS_HANGUL_FULLWIDTH","features":[222]},{"name":"IS_HANGUL_HALFWIDTH","features":[222]},{"name":"IS_HANJA","features":[222]},{"name":"IS_HIRAGANA","features":[222]},{"name":"IS_KATAKANA_FULLWIDTH","features":[222]},{"name":"IS_KATAKANA_HALFWIDTH","features":[222]},{"name":"IS_LOGINNAME","features":[222]},{"name":"IS_MAPS","features":[222]},{"name":"IS_NAME_OR_PHONENUMBER","features":[222]},{"name":"IS_NATIVE_SCRIPT","features":[222]},{"name":"IS_NUMBER","features":[222]},{"name":"IS_NUMBER_FULLWIDTH","features":[222]},{"name":"IS_NUMERIC_PASSWORD","features":[222]},{"name":"IS_NUMERIC_PIN","features":[222]},{"name":"IS_ONECHAR","features":[222]},{"name":"IS_PASSWORD","features":[222]},{"name":"IS_PERSONALNAME_FULLNAME","features":[222]},{"name":"IS_PERSONALNAME_GIVENNAME","features":[222]},{"name":"IS_PERSONALNAME_MIDDLENAME","features":[222]},{"name":"IS_PERSONALNAME_PREFIX","features":[222]},{"name":"IS_PERSONALNAME_SUFFIX","features":[222]},{"name":"IS_PERSONALNAME_SURNAME","features":[222]},{"name":"IS_PHRASELIST","features":[222]},{"name":"IS_PRIVATE","features":[222]},{"name":"IS_REGULAREXPRESSION","features":[222]},{"name":"IS_SEARCH","features":[222]},{"name":"IS_SEARCH_INCREMENTAL","features":[222]},{"name":"IS_SRGS","features":[222]},{"name":"IS_TELEPHONE_AREACODE","features":[222]},{"name":"IS_TELEPHONE_COUNTRYCODE","features":[222]},{"name":"IS_TELEPHONE_FULLTELEPHONENUMBER","features":[222]},{"name":"IS_TELEPHONE_LOCALNUMBER","features":[222]},{"name":"IS_TEXT","features":[222]},{"name":"IS_TIME_FULLTIME","features":[222]},{"name":"IS_TIME_HOUR","features":[222]},{"name":"IS_TIME_MINORSEC","features":[222]},{"name":"IS_URL","features":[222]},{"name":"IS_XML","features":[222]},{"name":"IS_YOMI","features":[222]},{"name":"ISpeechCommandProvider","features":[222]},{"name":"ITextStoreACP","features":[222]},{"name":"ITextStoreACP2","features":[222]},{"name":"ITextStoreACPEx","features":[222]},{"name":"ITextStoreACPServices","features":[222]},{"name":"ITextStoreACPSink","features":[222]},{"name":"ITextStoreACPSinkEx","features":[222]},{"name":"ITextStoreAnchor","features":[222]},{"name":"ITextStoreAnchorEx","features":[222]},{"name":"ITextStoreAnchorSink","features":[222]},{"name":"ITextStoreSinkAnchorEx","features":[222]},{"name":"ITfActiveLanguageProfileNotifySink","features":[222]},{"name":"ITfCandidateList","features":[222]},{"name":"ITfCandidateListUIElement","features":[222]},{"name":"ITfCandidateListUIElementBehavior","features":[222]},{"name":"ITfCandidateString","features":[222]},{"name":"ITfCategoryMgr","features":[222]},{"name":"ITfCleanupContextDurationSink","features":[222]},{"name":"ITfCleanupContextSink","features":[222]},{"name":"ITfClientId","features":[222]},{"name":"ITfCompartment","features":[222]},{"name":"ITfCompartmentEventSink","features":[222]},{"name":"ITfCompartmentMgr","features":[222]},{"name":"ITfComposition","features":[222]},{"name":"ITfCompositionSink","features":[222]},{"name":"ITfCompositionView","features":[222]},{"name":"ITfConfigureSystemKeystrokeFeed","features":[222]},{"name":"ITfContext","features":[222]},{"name":"ITfContextComposition","features":[222]},{"name":"ITfContextKeyEventSink","features":[222]},{"name":"ITfContextOwner","features":[222]},{"name":"ITfContextOwnerCompositionServices","features":[222]},{"name":"ITfContextOwnerCompositionSink","features":[222]},{"name":"ITfContextOwnerServices","features":[222]},{"name":"ITfContextView","features":[222]},{"name":"ITfCreatePropertyStore","features":[222]},{"name":"ITfDisplayAttributeInfo","features":[222]},{"name":"ITfDisplayAttributeMgr","features":[222]},{"name":"ITfDisplayAttributeNotifySink","features":[222]},{"name":"ITfDisplayAttributeProvider","features":[222]},{"name":"ITfDocumentMgr","features":[222]},{"name":"ITfEditRecord","features":[222]},{"name":"ITfEditSession","features":[222]},{"name":"ITfEditTransactionSink","features":[222]},{"name":"ITfFnAdviseText","features":[222]},{"name":"ITfFnBalloon","features":[222]},{"name":"ITfFnConfigure","features":[222]},{"name":"ITfFnConfigureRegisterEudc","features":[222]},{"name":"ITfFnConfigureRegisterWord","features":[222]},{"name":"ITfFnCustomSpeechCommand","features":[222]},{"name":"ITfFnGetLinguisticAlternates","features":[222]},{"name":"ITfFnGetPreferredTouchKeyboardLayout","features":[222]},{"name":"ITfFnGetSAPIObject","features":[222]},{"name":"ITfFnLMInternal","features":[222]},{"name":"ITfFnLMProcessor","features":[222]},{"name":"ITfFnLangProfileUtil","features":[222]},{"name":"ITfFnPlayBack","features":[222]},{"name":"ITfFnPropertyUIStatus","features":[222]},{"name":"ITfFnReconversion","features":[222]},{"name":"ITfFnSearchCandidateProvider","features":[222]},{"name":"ITfFnShowHelp","features":[222]},{"name":"ITfFunction","features":[222]},{"name":"ITfFunctionProvider","features":[222]},{"name":"ITfInputProcessorProfileActivationSink","features":[222]},{"name":"ITfInputProcessorProfileMgr","features":[222]},{"name":"ITfInputProcessorProfileSubstituteLayout","features":[222]},{"name":"ITfInputProcessorProfiles","features":[222]},{"name":"ITfInputProcessorProfilesEx","features":[222]},{"name":"ITfInputScope","features":[222]},{"name":"ITfInputScope2","features":[222]},{"name":"ITfInsertAtSelection","features":[222]},{"name":"ITfIntegratableCandidateListUIElement","features":[222]},{"name":"ITfKeyEventSink","features":[222]},{"name":"ITfKeyTraceEventSink","features":[222]},{"name":"ITfKeystrokeMgr","features":[222]},{"name":"ITfLMLattice","features":[222]},{"name":"ITfLangBarEventSink","features":[222]},{"name":"ITfLangBarItem","features":[222]},{"name":"ITfLangBarItemBalloon","features":[222]},{"name":"ITfLangBarItemBitmap","features":[222]},{"name":"ITfLangBarItemBitmapButton","features":[222]},{"name":"ITfLangBarItemButton","features":[222]},{"name":"ITfLangBarItemMgr","features":[222]},{"name":"ITfLangBarItemSink","features":[222]},{"name":"ITfLangBarMgr","features":[222]},{"name":"ITfLanguageProfileNotifySink","features":[222]},{"name":"ITfMSAAControl","features":[222]},{"name":"ITfMenu","features":[222]},{"name":"ITfMessagePump","features":[222]},{"name":"ITfMouseSink","features":[222]},{"name":"ITfMouseTracker","features":[222]},{"name":"ITfMouseTrackerACP","features":[222]},{"name":"ITfPersistentPropertyLoaderACP","features":[222]},{"name":"ITfPreservedKeyNotifySink","features":[222]},{"name":"ITfProperty","features":[222]},{"name":"ITfPropertyStore","features":[222]},{"name":"ITfQueryEmbedded","features":[222]},{"name":"ITfRange","features":[222]},{"name":"ITfRangeACP","features":[222]},{"name":"ITfRangeBackup","features":[222]},{"name":"ITfReadOnlyProperty","features":[222]},{"name":"ITfReadingInformationUIElement","features":[222]},{"name":"ITfReverseConversion","features":[222]},{"name":"ITfReverseConversionList","features":[222]},{"name":"ITfReverseConversionMgr","features":[222]},{"name":"ITfSource","features":[222]},{"name":"ITfSourceSingle","features":[222]},{"name":"ITfSpeechUIServer","features":[222]},{"name":"ITfStatusSink","features":[222]},{"name":"ITfSystemDeviceTypeLangBarItem","features":[222]},{"name":"ITfSystemLangBarItem","features":[222]},{"name":"ITfSystemLangBarItemSink","features":[222]},{"name":"ITfSystemLangBarItemText","features":[222]},{"name":"ITfTextEditSink","features":[222]},{"name":"ITfTextInputProcessor","features":[222]},{"name":"ITfTextInputProcessorEx","features":[222]},{"name":"ITfTextLayoutSink","features":[222]},{"name":"ITfThreadFocusSink","features":[222]},{"name":"ITfThreadMgr","features":[222]},{"name":"ITfThreadMgr2","features":[222]},{"name":"ITfThreadMgrEventSink","features":[222]},{"name":"ITfThreadMgrEx","features":[222]},{"name":"ITfToolTipUIElement","features":[222]},{"name":"ITfTransitoryExtensionSink","features":[222]},{"name":"ITfTransitoryExtensionUIElement","features":[222]},{"name":"ITfUIElement","features":[222]},{"name":"ITfUIElementMgr","features":[222]},{"name":"ITfUIElementSink","features":[222]},{"name":"IUIManagerEventSink","features":[222]},{"name":"IVersionInfo","features":[222]},{"name":"InitLocalMsCtfMonitor","features":[222]},{"name":"InputScope","features":[222]},{"name":"LANG_BAR_ITEM_ICON_MODE_FLAGS","features":[222]},{"name":"LIBID_MSAATEXTLib","features":[222]},{"name":"MSAAControl","features":[222]},{"name":"STYLE_ACTIVE_SELECTION","features":[222]},{"name":"STYLE_IMPLIED_SELECTION","features":[222]},{"name":"TEXT_STORE_CHANGE_FLAGS","features":[222]},{"name":"TEXT_STORE_LOCK_FLAGS","features":[222]},{"name":"TEXT_STORE_TEXT_CHANGE_FLAGS","features":[222]},{"name":"TF_AE_END","features":[222]},{"name":"TF_AE_NONE","features":[222]},{"name":"TF_AE_START","features":[222]},{"name":"TF_ANCHOR_END","features":[222]},{"name":"TF_ANCHOR_START","features":[222]},{"name":"TF_ATTR_CONVERTED","features":[222]},{"name":"TF_ATTR_FIXEDCONVERTED","features":[222]},{"name":"TF_ATTR_INPUT","features":[222]},{"name":"TF_ATTR_INPUT_ERROR","features":[222]},{"name":"TF_ATTR_OTHER","features":[222]},{"name":"TF_ATTR_TARGET_CONVERTED","features":[222]},{"name":"TF_ATTR_TARGET_NOTCONVERTED","features":[222]},{"name":"TF_CHAR_EMBEDDED","features":[222]},{"name":"TF_CLUIE_COUNT","features":[222]},{"name":"TF_CLUIE_CURRENTPAGE","features":[222]},{"name":"TF_CLUIE_DOCUMENTMGR","features":[222]},{"name":"TF_CLUIE_PAGEINDEX","features":[222]},{"name":"TF_CLUIE_SELECTION","features":[222]},{"name":"TF_CLUIE_STRING","features":[222]},{"name":"TF_COMMANDING_ENABLED","features":[222]},{"name":"TF_COMMANDING_ON","features":[222]},{"name":"TF_CONTEXT_EDIT_CONTEXT_FLAGS","features":[222]},{"name":"TF_CONVERSIONMODE_ALPHANUMERIC","features":[222]},{"name":"TF_CONVERSIONMODE_CHARCODE","features":[222]},{"name":"TF_CONVERSIONMODE_EUDC","features":[222]},{"name":"TF_CONVERSIONMODE_FIXED","features":[222]},{"name":"TF_CONVERSIONMODE_FULLSHAPE","features":[222]},{"name":"TF_CONVERSIONMODE_KATAKANA","features":[222]},{"name":"TF_CONVERSIONMODE_NATIVE","features":[222]},{"name":"TF_CONVERSIONMODE_NOCONVERSION","features":[222]},{"name":"TF_CONVERSIONMODE_ROMAN","features":[222]},{"name":"TF_CONVERSIONMODE_SOFTKEYBOARD","features":[222]},{"name":"TF_CONVERSIONMODE_SYMBOL","features":[222]},{"name":"TF_CT_COLORREF","features":[222]},{"name":"TF_CT_NONE","features":[222]},{"name":"TF_CT_SYSCOLOR","features":[222]},{"name":"TF_DA_ATTR_INFO","features":[222]},{"name":"TF_DA_COLOR","features":[3,222]},{"name":"TF_DA_COLORTYPE","features":[222]},{"name":"TF_DA_LINESTYLE","features":[222]},{"name":"TF_DEFAULT_SELECTION","features":[222]},{"name":"TF_DICTATION_ENABLED","features":[222]},{"name":"TF_DICTATION_ON","features":[222]},{"name":"TF_DISABLE_BALLOON","features":[222]},{"name":"TF_DISABLE_COMMANDING","features":[222]},{"name":"TF_DISABLE_DICTATION","features":[222]},{"name":"TF_DISABLE_SPEECH","features":[222]},{"name":"TF_DISPLAYATTRIBUTE","features":[3,222]},{"name":"TF_DTLBI_NONE","features":[222]},{"name":"TF_DTLBI_USEPROFILEICON","features":[222]},{"name":"TF_ENABLE_PROCESS_ATOM","features":[222]},{"name":"TF_ES_ASYNC","features":[222]},{"name":"TF_ES_ASYNCDONTCARE","features":[222]},{"name":"TF_ES_READ","features":[222]},{"name":"TF_ES_READWRITE","features":[222]},{"name":"TF_ES_SYNC","features":[222]},{"name":"TF_E_ALREADY_EXISTS","features":[222]},{"name":"TF_E_COMPOSITION_REJECTED","features":[222]},{"name":"TF_E_DISCONNECTED","features":[222]},{"name":"TF_E_EMPTYCONTEXT","features":[222]},{"name":"TF_E_FORMAT","features":[222]},{"name":"TF_E_INVALIDPOINT","features":[222]},{"name":"TF_E_INVALIDPOS","features":[222]},{"name":"TF_E_INVALIDVIEW","features":[222]},{"name":"TF_E_LOCKED","features":[222]},{"name":"TF_E_NOCONVERSION","features":[222]},{"name":"TF_E_NOINTERFACE","features":[222]},{"name":"TF_E_NOLAYOUT","features":[222]},{"name":"TF_E_NOLOCK","features":[222]},{"name":"TF_E_NOOBJECT","features":[222]},{"name":"TF_E_NOPROVIDER","features":[222]},{"name":"TF_E_NOSELECTION","features":[222]},{"name":"TF_E_NOSERVICE","features":[222]},{"name":"TF_E_NOTOWNEDRANGE","features":[222]},{"name":"TF_E_RANGE_NOT_COVERED","features":[222]},{"name":"TF_E_READONLY","features":[222]},{"name":"TF_E_STACKFULL","features":[222]},{"name":"TF_E_SYNCHRONOUS","features":[222]},{"name":"TF_FLOATINGLANGBAR_WNDTITLE","features":[222]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEA","features":[222]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEW","features":[222]},{"name":"TF_GRAVITY_BACKWARD","features":[222]},{"name":"TF_GRAVITY_FORWARD","features":[222]},{"name":"TF_GTP_INCL_TEXT","features":[222]},{"name":"TF_GTP_NONE","features":[222]},{"name":"TF_HALTCOND","features":[222]},{"name":"TF_HF_OBJECT","features":[222]},{"name":"TF_IAS_NOQUERY","features":[222]},{"name":"TF_IAS_NO_DEFAULT_COMPOSITION","features":[222]},{"name":"TF_IAS_QUERYONLY","features":[222]},{"name":"TF_IE_CORRECTION","features":[222]},{"name":"TF_INPUTPROCESSORPROFILE","features":[215,222]},{"name":"TF_INVALID_COOKIE","features":[222]},{"name":"TF_INVALID_EDIT_COOKIE","features":[222]},{"name":"TF_IPPMF_DISABLEPROFILE","features":[222]},{"name":"TF_IPPMF_DONTCARECURRENTINPUTLANGUAGE","features":[222]},{"name":"TF_IPPMF_ENABLEPROFILE","features":[222]},{"name":"TF_IPPMF_FORPROCESS","features":[222]},{"name":"TF_IPPMF_FORSESSION","features":[222]},{"name":"TF_IPPMF_FORSYSTEMALL","features":[222]},{"name":"TF_IPP_CAPS_COMLESSSUPPORT","features":[222]},{"name":"TF_IPP_CAPS_DISABLEONTRANSITORY","features":[222]},{"name":"TF_IPP_CAPS_IMMERSIVESUPPORT","features":[222]},{"name":"TF_IPP_CAPS_SECUREMODESUPPORT","features":[222]},{"name":"TF_IPP_CAPS_SYSTRAYSUPPORT","features":[222]},{"name":"TF_IPP_CAPS_UIELEMENTENABLED","features":[222]},{"name":"TF_IPP_CAPS_WOW16SUPPORT","features":[222]},{"name":"TF_IPP_FLAG_ACTIVE","features":[222]},{"name":"TF_IPP_FLAG_ENABLED","features":[222]},{"name":"TF_IPP_FLAG_SUBSTITUTEDBYINPUTPROCESSOR","features":[222]},{"name":"TF_IPSINK_FLAG_ACTIVE","features":[222]},{"name":"TF_LANGBARITEMINFO","features":[222]},{"name":"TF_LANGUAGEPROFILE","features":[3,222]},{"name":"TF_LBBALLOONINFO","features":[222]},{"name":"TF_LBI_BALLOON","features":[222]},{"name":"TF_LBI_BITMAP","features":[222]},{"name":"TF_LBI_BMPF_VERTICAL","features":[222]},{"name":"TF_LBI_CLK_LEFT","features":[222]},{"name":"TF_LBI_CLK_RIGHT","features":[222]},{"name":"TF_LBI_CUSTOMUI","features":[222]},{"name":"TF_LBI_DESC_MAXLEN","features":[222]},{"name":"TF_LBI_ICON","features":[222]},{"name":"TF_LBI_STATUS","features":[222]},{"name":"TF_LBI_STATUS_BTN_TOGGLED","features":[222]},{"name":"TF_LBI_STATUS_DISABLED","features":[222]},{"name":"TF_LBI_STATUS_HIDDEN","features":[222]},{"name":"TF_LBI_STYLE_BTN_BUTTON","features":[222]},{"name":"TF_LBI_STYLE_BTN_MENU","features":[222]},{"name":"TF_LBI_STYLE_BTN_TOGGLE","features":[222]},{"name":"TF_LBI_STYLE_HIDDENBYDEFAULT","features":[222]},{"name":"TF_LBI_STYLE_HIDDENSTATUSCONTROL","features":[222]},{"name":"TF_LBI_STYLE_HIDEONNOOTHERITEMS","features":[222]},{"name":"TF_LBI_STYLE_SHOWNINTRAY","features":[222]},{"name":"TF_LBI_STYLE_SHOWNINTRAYONLY","features":[222]},{"name":"TF_LBI_STYLE_TEXTCOLORICON","features":[222]},{"name":"TF_LBI_TEXT","features":[222]},{"name":"TF_LBI_TOOLTIP","features":[222]},{"name":"TF_LBMENUF_CHECKED","features":[222]},{"name":"TF_LBMENUF_GRAYED","features":[222]},{"name":"TF_LBMENUF_RADIOCHECKED","features":[222]},{"name":"TF_LBMENUF_SEPARATOR","features":[222]},{"name":"TF_LBMENUF_SUBMENU","features":[222]},{"name":"TF_LB_BALLOON_MISS","features":[222]},{"name":"TF_LB_BALLOON_RECO","features":[222]},{"name":"TF_LB_BALLOON_SHOW","features":[222]},{"name":"TF_LC_CHANGE","features":[222]},{"name":"TF_LC_CREATE","features":[222]},{"name":"TF_LC_DESTROY","features":[222]},{"name":"TF_LMLATTELEMENT","features":[222]},{"name":"TF_LS_DASH","features":[222]},{"name":"TF_LS_DOT","features":[222]},{"name":"TF_LS_NONE","features":[222]},{"name":"TF_LS_SOLID","features":[222]},{"name":"TF_LS_SQUIGGLE","features":[222]},{"name":"TF_MENUREADY","features":[222]},{"name":"TF_MOD_ALT","features":[222]},{"name":"TF_MOD_CONTROL","features":[222]},{"name":"TF_MOD_IGNORE_ALL_MODIFIER","features":[222]},{"name":"TF_MOD_LALT","features":[222]},{"name":"TF_MOD_LCONTROL","features":[222]},{"name":"TF_MOD_LSHIFT","features":[222]},{"name":"TF_MOD_ON_KEYUP","features":[222]},{"name":"TF_MOD_RALT","features":[222]},{"name":"TF_MOD_RCONTROL","features":[222]},{"name":"TF_MOD_RSHIFT","features":[222]},{"name":"TF_MOD_SHIFT","features":[222]},{"name":"TF_PERSISTENT_PROPERTY_HEADER_ACP","features":[222]},{"name":"TF_POPF_ALL","features":[222]},{"name":"TF_PRESERVEDKEY","features":[222]},{"name":"TF_PROCESS_ATOM","features":[222]},{"name":"TF_PROFILETYPE_INPUTPROCESSOR","features":[222]},{"name":"TF_PROFILETYPE_KEYBOARDLAYOUT","features":[222]},{"name":"TF_PROFILE_ARRAY","features":[222]},{"name":"TF_PROFILE_CANTONESE","features":[222]},{"name":"TF_PROFILE_CHANGJIE","features":[222]},{"name":"TF_PROFILE_DAYI","features":[222]},{"name":"TF_PROFILE_NEWCHANGJIE","features":[222]},{"name":"TF_PROFILE_NEWPHONETIC","features":[222]},{"name":"TF_PROFILE_NEWQUICK","features":[222]},{"name":"TF_PROFILE_PHONETIC","features":[222]},{"name":"TF_PROFILE_PINYIN","features":[222]},{"name":"TF_PROFILE_QUICK","features":[222]},{"name":"TF_PROFILE_SIMPLEFAST","features":[222]},{"name":"TF_PROFILE_TIGRINYA","features":[222]},{"name":"TF_PROFILE_WUBI","features":[222]},{"name":"TF_PROFILE_YI","features":[222]},{"name":"TF_PROPERTYVAL","features":[3,43,44,222]},{"name":"TF_PROPUI_STATUS_SAVETOFILE","features":[222]},{"name":"TF_RCM_COMLESS","features":[222]},{"name":"TF_RCM_HINT_COLLISION","features":[222]},{"name":"TF_RCM_HINT_READING_LENGTH","features":[222]},{"name":"TF_RCM_VKEY","features":[222]},{"name":"TF_RIP_FLAG_FREEUNUSEDLIBRARIES","features":[222]},{"name":"TF_RIUIE_CONTEXT","features":[222]},{"name":"TF_RIUIE_ERRORINDEX","features":[222]},{"name":"TF_RIUIE_MAXREADINGSTRINGLENGTH","features":[222]},{"name":"TF_RIUIE_STRING","features":[222]},{"name":"TF_RIUIE_VERTICALORDER","features":[222]},{"name":"TF_RP_HIDDENINSETTINGUI","features":[222]},{"name":"TF_RP_LOCALPROCESS","features":[222]},{"name":"TF_RP_LOCALTHREAD","features":[222]},{"name":"TF_RP_SUBITEMINSETTINGUI","features":[222]},{"name":"TF_SD_BACKWARD","features":[222]},{"name":"TF_SD_FORWARD","features":[222]},{"name":"TF_SD_LOADING","features":[222]},{"name":"TF_SD_READONLY","features":[222]},{"name":"TF_SELECTION","features":[3,222]},{"name":"TF_SELECTIONSTYLE","features":[3,222]},{"name":"TF_SENTENCEMODE_AUTOMATIC","features":[222]},{"name":"TF_SENTENCEMODE_CONVERSATION","features":[222]},{"name":"TF_SENTENCEMODE_NONE","features":[222]},{"name":"TF_SENTENCEMODE_PHRASEPREDICT","features":[222]},{"name":"TF_SENTENCEMODE_PLAURALCLAUSE","features":[222]},{"name":"TF_SENTENCEMODE_SINGLECONVERT","features":[222]},{"name":"TF_SFT_DESKBAND","features":[222]},{"name":"TF_SFT_DOCK","features":[222]},{"name":"TF_SFT_EXTRAICONSONMINIMIZED","features":[222]},{"name":"TF_SFT_HIDDEN","features":[222]},{"name":"TF_SFT_HIGHTRANSPARENCY","features":[222]},{"name":"TF_SFT_LABELS","features":[222]},{"name":"TF_SFT_LOWTRANSPARENCY","features":[222]},{"name":"TF_SFT_MINIMIZED","features":[222]},{"name":"TF_SFT_NOEXTRAICONSONMINIMIZED","features":[222]},{"name":"TF_SFT_NOLABELS","features":[222]},{"name":"TF_SFT_NOTRANSPARENCY","features":[222]},{"name":"TF_SFT_SHOWNORMAL","features":[222]},{"name":"TF_SHOW_BALLOON","features":[222]},{"name":"TF_SPEECHUI_SHOWN","features":[222]},{"name":"TF_SS_DISJOINTSEL","features":[222]},{"name":"TF_SS_REGIONS","features":[222]},{"name":"TF_SS_TKBAUTOCORRECTENABLE","features":[222]},{"name":"TF_SS_TKBPREDICTIONENABLE","features":[222]},{"name":"TF_SS_TRANSITORY","features":[222]},{"name":"TF_ST_CORRECTION","features":[222]},{"name":"TF_S_ASYNC","features":[222]},{"name":"TF_TF_IGNOREEND","features":[222]},{"name":"TF_TF_MOVESTART","features":[222]},{"name":"TF_TMAE_COMLESS","features":[222]},{"name":"TF_TMAE_CONSOLE","features":[222]},{"name":"TF_TMAE_NOACTIVATEKEYBOARDLAYOUT","features":[222]},{"name":"TF_TMAE_NOACTIVATETIP","features":[222]},{"name":"TF_TMAE_SECUREMODE","features":[222]},{"name":"TF_TMAE_UIELEMENTENABLEDONLY","features":[222]},{"name":"TF_TMAE_WOW16","features":[222]},{"name":"TF_TMF_ACTIVATED","features":[222]},{"name":"TF_TMF_COMLESS","features":[222]},{"name":"TF_TMF_CONSOLE","features":[222]},{"name":"TF_TMF_IMMERSIVEMODE","features":[222]},{"name":"TF_TMF_NOACTIVATETIP","features":[222]},{"name":"TF_TMF_SECUREMODE","features":[222]},{"name":"TF_TMF_UIELEMENTENABLEDONLY","features":[222]},{"name":"TF_TMF_WOW16","features":[222]},{"name":"TF_TRANSITORYEXTENSION_ATSELECTION","features":[222]},{"name":"TF_TRANSITORYEXTENSION_FLOATING","features":[222]},{"name":"TF_TRANSITORYEXTENSION_NONE","features":[222]},{"name":"TF_TU_CORRECTION","features":[222]},{"name":"TF_URP_ALLPROFILES","features":[222]},{"name":"TF_URP_LOCALPROCESS","features":[222]},{"name":"TF_URP_LOCALTHREAD","features":[222]},{"name":"TF_US_HIDETIPUI","features":[222]},{"name":"TKBLT_CLASSIC","features":[222]},{"name":"TKBLT_OPTIMIZED","features":[222]},{"name":"TKBLT_UNDEFINED","features":[222]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_CHANGJIE","features":[222]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_DAYI","features":[222]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_PHONETIC","features":[222]},{"name":"TKBL_OPT_JAPANESE_ABC","features":[222]},{"name":"TKBL_OPT_KOREAN_HANGUL_2_BULSIK","features":[222]},{"name":"TKBL_OPT_SIMPLIFIED_CHINESE_PINYIN","features":[222]},{"name":"TKBL_OPT_TRADITIONAL_CHINESE_PHONETIC","features":[222]},{"name":"TKBL_UNDEFINED","features":[222]},{"name":"TKBLayoutType","features":[222]},{"name":"TKB_ALTERNATES_AUTOCORRECTION_APPLIED","features":[222]},{"name":"TKB_ALTERNATES_FOR_AUTOCORRECTION","features":[222]},{"name":"TKB_ALTERNATES_FOR_PREDICTION","features":[222]},{"name":"TKB_ALTERNATES_STANDARD","features":[222]},{"name":"TSATTRID_App","features":[222]},{"name":"TSATTRID_App_IncorrectGrammar","features":[222]},{"name":"TSATTRID_App_IncorrectSpelling","features":[222]},{"name":"TSATTRID_Font","features":[222]},{"name":"TSATTRID_Font_FaceName","features":[222]},{"name":"TSATTRID_Font_SizePts","features":[222]},{"name":"TSATTRID_Font_Style","features":[222]},{"name":"TSATTRID_Font_Style_Animation","features":[222]},{"name":"TSATTRID_Font_Style_Animation_BlinkingBackground","features":[222]},{"name":"TSATTRID_Font_Style_Animation_LasVegasLights","features":[222]},{"name":"TSATTRID_Font_Style_Animation_MarchingBlackAnts","features":[222]},{"name":"TSATTRID_Font_Style_Animation_MarchingRedAnts","features":[222]},{"name":"TSATTRID_Font_Style_Animation_Shimmer","features":[222]},{"name":"TSATTRID_Font_Style_Animation_SparkleText","features":[222]},{"name":"TSATTRID_Font_Style_Animation_WipeDown","features":[222]},{"name":"TSATTRID_Font_Style_Animation_WipeRight","features":[222]},{"name":"TSATTRID_Font_Style_BackgroundColor","features":[222]},{"name":"TSATTRID_Font_Style_Blink","features":[222]},{"name":"TSATTRID_Font_Style_Bold","features":[222]},{"name":"TSATTRID_Font_Style_Capitalize","features":[222]},{"name":"TSATTRID_Font_Style_Color","features":[222]},{"name":"TSATTRID_Font_Style_Emboss","features":[222]},{"name":"TSATTRID_Font_Style_Engrave","features":[222]},{"name":"TSATTRID_Font_Style_Height","features":[222]},{"name":"TSATTRID_Font_Style_Hidden","features":[222]},{"name":"TSATTRID_Font_Style_Italic","features":[222]},{"name":"TSATTRID_Font_Style_Kerning","features":[222]},{"name":"TSATTRID_Font_Style_Lowercase","features":[222]},{"name":"TSATTRID_Font_Style_Outlined","features":[222]},{"name":"TSATTRID_Font_Style_Overline","features":[222]},{"name":"TSATTRID_Font_Style_Overline_Double","features":[222]},{"name":"TSATTRID_Font_Style_Overline_Single","features":[222]},{"name":"TSATTRID_Font_Style_Position","features":[222]},{"name":"TSATTRID_Font_Style_Protected","features":[222]},{"name":"TSATTRID_Font_Style_Shadow","features":[222]},{"name":"TSATTRID_Font_Style_SmallCaps","features":[222]},{"name":"TSATTRID_Font_Style_Spacing","features":[222]},{"name":"TSATTRID_Font_Style_Strikethrough","features":[222]},{"name":"TSATTRID_Font_Style_Strikethrough_Double","features":[222]},{"name":"TSATTRID_Font_Style_Strikethrough_Single","features":[222]},{"name":"TSATTRID_Font_Style_Subscript","features":[222]},{"name":"TSATTRID_Font_Style_Superscript","features":[222]},{"name":"TSATTRID_Font_Style_Underline","features":[222]},{"name":"TSATTRID_Font_Style_Underline_Double","features":[222]},{"name":"TSATTRID_Font_Style_Underline_Single","features":[222]},{"name":"TSATTRID_Font_Style_Uppercase","features":[222]},{"name":"TSATTRID_Font_Style_Weight","features":[222]},{"name":"TSATTRID_List","features":[222]},{"name":"TSATTRID_List_LevelIndel","features":[222]},{"name":"TSATTRID_List_Type","features":[222]},{"name":"TSATTRID_List_Type_Arabic","features":[222]},{"name":"TSATTRID_List_Type_Bullet","features":[222]},{"name":"TSATTRID_List_Type_LowerLetter","features":[222]},{"name":"TSATTRID_List_Type_LowerRoman","features":[222]},{"name":"TSATTRID_List_Type_UpperLetter","features":[222]},{"name":"TSATTRID_List_Type_UpperRoman","features":[222]},{"name":"TSATTRID_OTHERS","features":[222]},{"name":"TSATTRID_Text","features":[222]},{"name":"TSATTRID_Text_Alignment","features":[222]},{"name":"TSATTRID_Text_Alignment_Center","features":[222]},{"name":"TSATTRID_Text_Alignment_Justify","features":[222]},{"name":"TSATTRID_Text_Alignment_Left","features":[222]},{"name":"TSATTRID_Text_Alignment_Right","features":[222]},{"name":"TSATTRID_Text_EmbeddedObject","features":[222]},{"name":"TSATTRID_Text_Hyphenation","features":[222]},{"name":"TSATTRID_Text_Language","features":[222]},{"name":"TSATTRID_Text_Link","features":[222]},{"name":"TSATTRID_Text_Orientation","features":[222]},{"name":"TSATTRID_Text_Para","features":[222]},{"name":"TSATTRID_Text_Para_FirstLineIndent","features":[222]},{"name":"TSATTRID_Text_Para_LeftIndent","features":[222]},{"name":"TSATTRID_Text_Para_LineSpacing","features":[222]},{"name":"TSATTRID_Text_Para_LineSpacing_AtLeast","features":[222]},{"name":"TSATTRID_Text_Para_LineSpacing_Double","features":[222]},{"name":"TSATTRID_Text_Para_LineSpacing_Exactly","features":[222]},{"name":"TSATTRID_Text_Para_LineSpacing_Multiple","features":[222]},{"name":"TSATTRID_Text_Para_LineSpacing_OnePtFive","features":[222]},{"name":"TSATTRID_Text_Para_LineSpacing_Single","features":[222]},{"name":"TSATTRID_Text_Para_RightIndent","features":[222]},{"name":"TSATTRID_Text_Para_SpaceAfter","features":[222]},{"name":"TSATTRID_Text_Para_SpaceBefore","features":[222]},{"name":"TSATTRID_Text_ReadOnly","features":[222]},{"name":"TSATTRID_Text_RightToLeft","features":[222]},{"name":"TSATTRID_Text_VerticalWriting","features":[222]},{"name":"TS_AE_END","features":[222]},{"name":"TS_AE_NONE","features":[222]},{"name":"TS_AE_START","features":[222]},{"name":"TS_AS_ATTR_CHANGE","features":[222]},{"name":"TS_AS_LAYOUT_CHANGE","features":[222]},{"name":"TS_AS_SEL_CHANGE","features":[222]},{"name":"TS_AS_STATUS_CHANGE","features":[222]},{"name":"TS_AS_TEXT_CHANGE","features":[222]},{"name":"TS_ATTRVAL","features":[3,43,44,222]},{"name":"TS_ATTR_FIND_BACKWARDS","features":[222]},{"name":"TS_ATTR_FIND_HIDDEN","features":[222]},{"name":"TS_ATTR_FIND_UPDATESTART","features":[222]},{"name":"TS_ATTR_FIND_WANT_END","features":[222]},{"name":"TS_ATTR_FIND_WANT_OFFSET","features":[222]},{"name":"TS_ATTR_FIND_WANT_VALUE","features":[222]},{"name":"TS_CHAR_EMBEDDED","features":[222]},{"name":"TS_CHAR_REGION","features":[222]},{"name":"TS_CHAR_REPLACEMENT","features":[222]},{"name":"TS_CH_FOLLOWING_DEL","features":[222]},{"name":"TS_CH_PRECEDING_DEL","features":[222]},{"name":"TS_DEFAULT_SELECTION","features":[222]},{"name":"TS_E_FORMAT","features":[222]},{"name":"TS_E_INVALIDPOINT","features":[222]},{"name":"TS_E_INVALIDPOS","features":[222]},{"name":"TS_E_NOINTERFACE","features":[222]},{"name":"TS_E_NOLAYOUT","features":[222]},{"name":"TS_E_NOLOCK","features":[222]},{"name":"TS_E_NOOBJECT","features":[222]},{"name":"TS_E_NOSELECTION","features":[222]},{"name":"TS_E_NOSERVICE","features":[222]},{"name":"TS_E_READONLY","features":[222]},{"name":"TS_E_SYNCHRONOUS","features":[222]},{"name":"TS_GEA_HIDDEN","features":[222]},{"name":"TS_GR_BACKWARD","features":[222]},{"name":"TS_GR_FORWARD","features":[222]},{"name":"TS_GTA_HIDDEN","features":[222]},{"name":"TS_IAS_NOQUERY","features":[222]},{"name":"TS_IAS_QUERYONLY","features":[222]},{"name":"TS_IE_COMPOSITION","features":[222]},{"name":"TS_IE_CORRECTION","features":[222]},{"name":"TS_LC_CHANGE","features":[222]},{"name":"TS_LC_CREATE","features":[222]},{"name":"TS_LC_DESTROY","features":[222]},{"name":"TS_LF_READ","features":[222]},{"name":"TS_LF_READWRITE","features":[222]},{"name":"TS_LF_SYNC","features":[222]},{"name":"TS_RT_HIDDEN","features":[222]},{"name":"TS_RT_OPAQUE","features":[222]},{"name":"TS_RT_PLAIN","features":[222]},{"name":"TS_RUNINFO","features":[222]},{"name":"TS_SD_BACKWARD","features":[222]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_ENABLED","features":[222]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_VISIBLE","features":[222]},{"name":"TS_SD_FORWARD","features":[222]},{"name":"TS_SD_INPUTPANEMANUALDISPLAYENABLE","features":[222]},{"name":"TS_SD_LOADING","features":[222]},{"name":"TS_SD_READONLY","features":[222]},{"name":"TS_SD_RESERVED","features":[222]},{"name":"TS_SD_TKBAUTOCORRECTENABLE","features":[222]},{"name":"TS_SD_TKBPREDICTIONENABLE","features":[222]},{"name":"TS_SD_UIINTEGRATIONENABLE","features":[222]},{"name":"TS_SELECTIONSTYLE","features":[3,222]},{"name":"TS_SELECTION_ACP","features":[3,222]},{"name":"TS_SELECTION_ANCHOR","features":[3,222]},{"name":"TS_SHIFT_COUNT_HIDDEN","features":[222]},{"name":"TS_SHIFT_COUNT_ONLY","features":[222]},{"name":"TS_SHIFT_HALT_HIDDEN","features":[222]},{"name":"TS_SHIFT_HALT_VISIBLE","features":[222]},{"name":"TS_SS_DISJOINTSEL","features":[222]},{"name":"TS_SS_NOHIDDENTEXT","features":[222]},{"name":"TS_SS_REGIONS","features":[222]},{"name":"TS_SS_TKBAUTOCORRECTENABLE","features":[222]},{"name":"TS_SS_TKBPREDICTIONENABLE","features":[222]},{"name":"TS_SS_TRANSITORY","features":[222]},{"name":"TS_SS_UWPCONTROL","features":[222]},{"name":"TS_STATUS","features":[222]},{"name":"TS_STRF_END","features":[222]},{"name":"TS_STRF_MID","features":[222]},{"name":"TS_STRF_START","features":[222]},{"name":"TS_ST_CORRECTION","features":[222]},{"name":"TS_ST_NONE","features":[222]},{"name":"TS_S_ASYNC","features":[222]},{"name":"TS_TC_CORRECTION","features":[222]},{"name":"TS_TC_NONE","features":[222]},{"name":"TS_TEXTCHANGE","features":[222]},{"name":"TS_VCOOKIE_NUL","features":[222]},{"name":"TfActiveSelEnd","features":[222]},{"name":"TfAnchor","features":[222]},{"name":"TfCandidateResult","features":[222]},{"name":"TfGravity","features":[222]},{"name":"TfIntegratableCandidateListSelectionStyle","features":[222]},{"name":"TfLBBalloonStyle","features":[222]},{"name":"TfLBIClick","features":[222]},{"name":"TfLayoutCode","features":[222]},{"name":"TfSapiObject","features":[222]},{"name":"TfShiftDir","features":[222]},{"name":"TsActiveSelEnd","features":[222]},{"name":"TsGravity","features":[222]},{"name":"TsLayoutCode","features":[222]},{"name":"TsRunType","features":[222]},{"name":"TsShiftDir","features":[222]},{"name":"UninitLocalMsCtfMonitor","features":[222]}],"674":[{"name":"ACCEL","features":[52]},{"name":"ACCEL_VIRT_FLAGS","features":[52]},{"name":"ALTTABINFO","features":[3,52]},{"name":"ANIMATE_WINDOW_FLAGS","features":[52]},{"name":"ANIMATIONINFO","features":[52]},{"name":"ARW_BOTTOMLEFT","features":[52]},{"name":"ARW_BOTTOMRIGHT","features":[52]},{"name":"ARW_DOWN","features":[52]},{"name":"ARW_HIDE","features":[52]},{"name":"ARW_LEFT","features":[52]},{"name":"ARW_RIGHT","features":[52]},{"name":"ARW_STARTMASK","features":[52]},{"name":"ARW_STARTRIGHT","features":[52]},{"name":"ARW_STARTTOP","features":[52]},{"name":"ARW_TOPLEFT","features":[52]},{"name":"ARW_TOPRIGHT","features":[52]},{"name":"ARW_UP","features":[52]},{"name":"ASFW_ANY","features":[52]},{"name":"AUDIODESCRIPTION","features":[3,52]},{"name":"AW_ACTIVATE","features":[52]},{"name":"AW_BLEND","features":[52]},{"name":"AW_CENTER","features":[52]},{"name":"AW_HIDE","features":[52]},{"name":"AW_HOR_NEGATIVE","features":[52]},{"name":"AW_HOR_POSITIVE","features":[52]},{"name":"AW_SLIDE","features":[52]},{"name":"AW_VER_NEGATIVE","features":[52]},{"name":"AW_VER_POSITIVE","features":[52]},{"name":"AdjustWindowRect","features":[3,52]},{"name":"AdjustWindowRectEx","features":[3,52]},{"name":"AllowSetForegroundWindow","features":[3,52]},{"name":"AnimateWindow","features":[3,52]},{"name":"AnyPopup","features":[3,52]},{"name":"AppendMenuA","features":[3,52]},{"name":"AppendMenuW","features":[3,52]},{"name":"ArrangeIconicWindows","features":[3,52]},{"name":"BM_CLICK","features":[52]},{"name":"BM_GETCHECK","features":[52]},{"name":"BM_GETIMAGE","features":[52]},{"name":"BM_GETSTATE","features":[52]},{"name":"BM_SETCHECK","features":[52]},{"name":"BM_SETDONTCLICK","features":[52]},{"name":"BM_SETIMAGE","features":[52]},{"name":"BM_SETSTATE","features":[52]},{"name":"BM_SETSTYLE","features":[52]},{"name":"BN_CLICKED","features":[52]},{"name":"BN_DBLCLK","features":[52]},{"name":"BN_DISABLE","features":[52]},{"name":"BN_DOUBLECLICKED","features":[52]},{"name":"BN_HILITE","features":[52]},{"name":"BN_KILLFOCUS","features":[52]},{"name":"BN_PAINT","features":[52]},{"name":"BN_PUSHED","features":[52]},{"name":"BN_SETFOCUS","features":[52]},{"name":"BN_UNHILITE","features":[52]},{"name":"BN_UNPUSHED","features":[52]},{"name":"BROADCAST_QUERY_DENY","features":[52]},{"name":"BSF_MSGSRV32ISOK","features":[52]},{"name":"BSF_MSGSRV32ISOK_BIT","features":[52]},{"name":"BSM_INSTALLABLEDRIVERS","features":[52]},{"name":"BSM_NETDRIVER","features":[52]},{"name":"BSM_VXDS","features":[52]},{"name":"BST_FOCUS","features":[52]},{"name":"BST_PUSHED","features":[52]},{"name":"BS_3STATE","features":[52]},{"name":"BS_AUTO3STATE","features":[52]},{"name":"BS_AUTOCHECKBOX","features":[52]},{"name":"BS_AUTORADIOBUTTON","features":[52]},{"name":"BS_BITMAP","features":[52]},{"name":"BS_BOTTOM","features":[52]},{"name":"BS_CENTER","features":[52]},{"name":"BS_CHECKBOX","features":[52]},{"name":"BS_DEFPUSHBUTTON","features":[52]},{"name":"BS_FLAT","features":[52]},{"name":"BS_GROUPBOX","features":[52]},{"name":"BS_ICON","features":[52]},{"name":"BS_LEFT","features":[52]},{"name":"BS_LEFTTEXT","features":[52]},{"name":"BS_MULTILINE","features":[52]},{"name":"BS_NOTIFY","features":[52]},{"name":"BS_OWNERDRAW","features":[52]},{"name":"BS_PUSHBOX","features":[52]},{"name":"BS_PUSHBUTTON","features":[52]},{"name":"BS_PUSHLIKE","features":[52]},{"name":"BS_RADIOBUTTON","features":[52]},{"name":"BS_RIGHT","features":[52]},{"name":"BS_RIGHTBUTTON","features":[52]},{"name":"BS_TEXT","features":[52]},{"name":"BS_TOP","features":[52]},{"name":"BS_TYPEMASK","features":[52]},{"name":"BS_USERBUTTON","features":[52]},{"name":"BS_VCENTER","features":[52]},{"name":"BeginDeferWindowPos","features":[52]},{"name":"BringWindowToTop","features":[3,52]},{"name":"CALERT_SYSTEM","features":[52]},{"name":"CASCADE_WINDOWS_HOW","features":[52]},{"name":"CBN_CLOSEUP","features":[52]},{"name":"CBN_DBLCLK","features":[52]},{"name":"CBN_DROPDOWN","features":[52]},{"name":"CBN_EDITCHANGE","features":[52]},{"name":"CBN_EDITUPDATE","features":[52]},{"name":"CBN_ERRSPACE","features":[52]},{"name":"CBN_KILLFOCUS","features":[52]},{"name":"CBN_SELCHANGE","features":[52]},{"name":"CBN_SELENDCANCEL","features":[52]},{"name":"CBN_SELENDOK","features":[52]},{"name":"CBN_SETFOCUS","features":[52]},{"name":"CBS_AUTOHSCROLL","features":[52]},{"name":"CBS_DISABLENOSCROLL","features":[52]},{"name":"CBS_DROPDOWN","features":[52]},{"name":"CBS_DROPDOWNLIST","features":[52]},{"name":"CBS_HASSTRINGS","features":[52]},{"name":"CBS_LOWERCASE","features":[52]},{"name":"CBS_NOINTEGRALHEIGHT","features":[52]},{"name":"CBS_OEMCONVERT","features":[52]},{"name":"CBS_OWNERDRAWFIXED","features":[52]},{"name":"CBS_OWNERDRAWVARIABLE","features":[52]},{"name":"CBS_SIMPLE","features":[52]},{"name":"CBS_SORT","features":[52]},{"name":"CBS_UPPERCASE","features":[52]},{"name":"CBTACTIVATESTRUCT","features":[3,52]},{"name":"CBT_CREATEWNDA","features":[3,52]},{"name":"CBT_CREATEWNDW","features":[3,52]},{"name":"CB_ADDSTRING","features":[52]},{"name":"CB_DELETESTRING","features":[52]},{"name":"CB_DIR","features":[52]},{"name":"CB_ERR","features":[52]},{"name":"CB_ERRSPACE","features":[52]},{"name":"CB_FINDSTRING","features":[52]},{"name":"CB_FINDSTRINGEXACT","features":[52]},{"name":"CB_GETCOMBOBOXINFO","features":[52]},{"name":"CB_GETCOUNT","features":[52]},{"name":"CB_GETCURSEL","features":[52]},{"name":"CB_GETDROPPEDCONTROLRECT","features":[52]},{"name":"CB_GETDROPPEDSTATE","features":[52]},{"name":"CB_GETDROPPEDWIDTH","features":[52]},{"name":"CB_GETEDITSEL","features":[52]},{"name":"CB_GETEXTENDEDUI","features":[52]},{"name":"CB_GETHORIZONTALEXTENT","features":[52]},{"name":"CB_GETITEMDATA","features":[52]},{"name":"CB_GETITEMHEIGHT","features":[52]},{"name":"CB_GETLBTEXT","features":[52]},{"name":"CB_GETLBTEXTLEN","features":[52]},{"name":"CB_GETLOCALE","features":[52]},{"name":"CB_GETTOPINDEX","features":[52]},{"name":"CB_INITSTORAGE","features":[52]},{"name":"CB_INSERTSTRING","features":[52]},{"name":"CB_LIMITTEXT","features":[52]},{"name":"CB_MSGMAX","features":[52]},{"name":"CB_MULTIPLEADDSTRING","features":[52]},{"name":"CB_OKAY","features":[52]},{"name":"CB_RESETCONTENT","features":[52]},{"name":"CB_SELECTSTRING","features":[52]},{"name":"CB_SETCURSEL","features":[52]},{"name":"CB_SETDROPPEDWIDTH","features":[52]},{"name":"CB_SETEDITSEL","features":[52]},{"name":"CB_SETEXTENDEDUI","features":[52]},{"name":"CB_SETHORIZONTALEXTENT","features":[52]},{"name":"CB_SETITEMDATA","features":[52]},{"name":"CB_SETITEMHEIGHT","features":[52]},{"name":"CB_SETLOCALE","features":[52]},{"name":"CB_SETTOPINDEX","features":[52]},{"name":"CB_SHOWDROPDOWN","features":[52]},{"name":"CCHILDREN_SCROLLBAR","features":[52]},{"name":"CCHILDREN_TITLEBAR","features":[52]},{"name":"CHANGEFILTERSTRUCT","features":[52]},{"name":"CHANGE_WINDOW_MESSAGE_FILTER_FLAGS","features":[52]},{"name":"CHILDID_SELF","features":[52]},{"name":"CLIENTCREATESTRUCT","features":[3,52]},{"name":"CONSOLE_APPLICATION_16BIT","features":[52]},{"name":"CONSOLE_CARET_SELECTION","features":[52]},{"name":"CONSOLE_CARET_VISIBLE","features":[52]},{"name":"CONTACTVISUALIZATION_OFF","features":[52]},{"name":"CONTACTVISUALIZATION_ON","features":[52]},{"name":"CONTACTVISUALIZATION_PRESENTATIONMODE","features":[52]},{"name":"CREATEPROCESS_MANIFEST_RESOURCE_ID","features":[52]},{"name":"CREATESTRUCTA","features":[3,52]},{"name":"CREATESTRUCTW","features":[3,52]},{"name":"CSOUND_SYSTEM","features":[52]},{"name":"CS_BYTEALIGNCLIENT","features":[52]},{"name":"CS_BYTEALIGNWINDOW","features":[52]},{"name":"CS_CLASSDC","features":[52]},{"name":"CS_DBLCLKS","features":[52]},{"name":"CS_DROPSHADOW","features":[52]},{"name":"CS_GLOBALCLASS","features":[52]},{"name":"CS_HREDRAW","features":[52]},{"name":"CS_IME","features":[52]},{"name":"CS_NOCLOSE","features":[52]},{"name":"CS_OWNDC","features":[52]},{"name":"CS_PARENTDC","features":[52]},{"name":"CS_SAVEBITS","features":[52]},{"name":"CS_VREDRAW","features":[52]},{"name":"CTLCOLOR_BTN","features":[52]},{"name":"CTLCOLOR_DLG","features":[52]},{"name":"CTLCOLOR_EDIT","features":[52]},{"name":"CTLCOLOR_LISTBOX","features":[52]},{"name":"CTLCOLOR_MAX","features":[52]},{"name":"CTLCOLOR_MSGBOX","features":[52]},{"name":"CTLCOLOR_SCROLLBAR","features":[52]},{"name":"CTLCOLOR_STATIC","features":[52]},{"name":"CURSORINFO","features":[3,52]},{"name":"CURSORINFO_FLAGS","features":[52]},{"name":"CURSORSHAPE","features":[52]},{"name":"CURSOR_CREATION_SCALING_DEFAULT","features":[52]},{"name":"CURSOR_CREATION_SCALING_NONE","features":[52]},{"name":"CURSOR_SHOWING","features":[52]},{"name":"CURSOR_SUPPRESSED","features":[52]},{"name":"CWF_CREATE_ONLY","features":[52]},{"name":"CWPRETSTRUCT","features":[3,52]},{"name":"CWPSTRUCT","features":[3,52]},{"name":"CWP_ALL","features":[52]},{"name":"CWP_FLAGS","features":[52]},{"name":"CWP_SKIPDISABLED","features":[52]},{"name":"CWP_SKIPINVISIBLE","features":[52]},{"name":"CWP_SKIPTRANSPARENT","features":[52]},{"name":"CW_USEDEFAULT","features":[52]},{"name":"CalculatePopupWindowPosition","features":[3,52]},{"name":"CallMsgFilterA","features":[3,52]},{"name":"CallMsgFilterW","features":[3,52]},{"name":"CallNextHookEx","features":[3,52]},{"name":"CallWindowProcA","features":[3,52]},{"name":"CallWindowProcW","features":[3,52]},{"name":"CancelShutdown","features":[3,52]},{"name":"CascadeWindows","features":[3,52]},{"name":"ChangeMenuA","features":[3,52]},{"name":"ChangeMenuW","features":[3,52]},{"name":"ChangeWindowMessageFilter","features":[3,52]},{"name":"ChangeWindowMessageFilterEx","features":[3,52]},{"name":"CharLowerA","features":[52]},{"name":"CharLowerBuffA","features":[52]},{"name":"CharLowerBuffW","features":[52]},{"name":"CharLowerW","features":[52]},{"name":"CharNextA","features":[52]},{"name":"CharNextExA","features":[52]},{"name":"CharNextW","features":[52]},{"name":"CharPrevA","features":[52]},{"name":"CharPrevExA","features":[52]},{"name":"CharPrevW","features":[52]},{"name":"CharToOemA","features":[3,52]},{"name":"CharToOemBuffA","features":[3,52]},{"name":"CharToOemBuffW","features":[3,52]},{"name":"CharToOemW","features":[3,52]},{"name":"CharUpperA","features":[52]},{"name":"CharUpperBuffA","features":[52]},{"name":"CharUpperBuffW","features":[52]},{"name":"CharUpperW","features":[52]},{"name":"CheckMenuItem","features":[52]},{"name":"CheckMenuRadioItem","features":[3,52]},{"name":"ChildWindowFromPoint","features":[3,52]},{"name":"ChildWindowFromPointEx","features":[3,52]},{"name":"ClipCursor","features":[3,52]},{"name":"CloseWindow","features":[3,52]},{"name":"CopyAcceleratorTableA","features":[52]},{"name":"CopyAcceleratorTableW","features":[52]},{"name":"CopyIcon","features":[52]},{"name":"CopyImage","features":[3,52]},{"name":"CreateAcceleratorTableA","features":[52]},{"name":"CreateAcceleratorTableW","features":[52]},{"name":"CreateCaret","features":[3,14,52]},{"name":"CreateCursor","features":[3,52]},{"name":"CreateDialogIndirectParamA","features":[3,52]},{"name":"CreateDialogIndirectParamW","features":[3,52]},{"name":"CreateDialogParamA","features":[3,52]},{"name":"CreateDialogParamW","features":[3,52]},{"name":"CreateIcon","features":[3,52]},{"name":"CreateIconFromResource","features":[3,52]},{"name":"CreateIconFromResourceEx","features":[3,52]},{"name":"CreateIconIndirect","features":[3,14,52]},{"name":"CreateMDIWindowA","features":[3,52]},{"name":"CreateMDIWindowW","features":[3,52]},{"name":"CreateMenu","features":[52]},{"name":"CreatePopupMenu","features":[52]},{"name":"CreateResourceIndexer","features":[52]},{"name":"CreateWindowExA","features":[3,52]},{"name":"CreateWindowExW","features":[3,52]},{"name":"DBTF_MEDIA","features":[52]},{"name":"DBTF_NET","features":[52]},{"name":"DBTF_RESOURCE","features":[52]},{"name":"DBTF_SLOWNET","features":[52]},{"name":"DBTF_XPORT","features":[52]},{"name":"DBT_APPYBEGIN","features":[52]},{"name":"DBT_APPYEND","features":[52]},{"name":"DBT_CONFIGCHANGECANCELED","features":[52]},{"name":"DBT_CONFIGCHANGED","features":[52]},{"name":"DBT_CONFIGMGAPI32","features":[52]},{"name":"DBT_CONFIGMGPRIVATE","features":[52]},{"name":"DBT_CUSTOMEVENT","features":[52]},{"name":"DBT_DEVICEARRIVAL","features":[52]},{"name":"DBT_DEVICEQUERYREMOVE","features":[52]},{"name":"DBT_DEVICEQUERYREMOVEFAILED","features":[52]},{"name":"DBT_DEVICEREMOVECOMPLETE","features":[52]},{"name":"DBT_DEVICEREMOVEPENDING","features":[52]},{"name":"DBT_DEVICETYPESPECIFIC","features":[52]},{"name":"DBT_DEVNODES_CHANGED","features":[52]},{"name":"DBT_DEVTYP_DEVICEINTERFACE","features":[52]},{"name":"DBT_DEVTYP_DEVNODE","features":[52]},{"name":"DBT_DEVTYP_HANDLE","features":[52]},{"name":"DBT_DEVTYP_NET","features":[52]},{"name":"DBT_DEVTYP_OEM","features":[52]},{"name":"DBT_DEVTYP_PORT","features":[52]},{"name":"DBT_DEVTYP_VOLUME","features":[52]},{"name":"DBT_LOW_DISK_SPACE","features":[52]},{"name":"DBT_MONITORCHANGE","features":[52]},{"name":"DBT_NO_DISK_SPACE","features":[52]},{"name":"DBT_QUERYCHANGECONFIG","features":[52]},{"name":"DBT_SHELLLOGGEDON","features":[52]},{"name":"DBT_USERDEFINED","features":[52]},{"name":"DBT_VOLLOCKLOCKFAILED","features":[52]},{"name":"DBT_VOLLOCKLOCKRELEASED","features":[52]},{"name":"DBT_VOLLOCKLOCKTAKEN","features":[52]},{"name":"DBT_VOLLOCKQUERYLOCK","features":[52]},{"name":"DBT_VOLLOCKQUERYUNLOCK","features":[52]},{"name":"DBT_VOLLOCKUNLOCKFAILED","features":[52]},{"name":"DBT_VPOWERDAPI","features":[52]},{"name":"DBT_VXDINITCOMPLETE","features":[52]},{"name":"DCX_EXCLUDEUPDATE","features":[52]},{"name":"DC_HASDEFID","features":[52]},{"name":"DEBUGHOOKINFO","features":[3,52]},{"name":"DEVICE_EVENT_BECOMING_READY","features":[52]},{"name":"DEVICE_EVENT_EXTERNAL_REQUEST","features":[52]},{"name":"DEVICE_EVENT_GENERIC_DATA","features":[52]},{"name":"DEVICE_EVENT_MOUNT","features":[52]},{"name":"DEVICE_EVENT_RBC_DATA","features":[52]},{"name":"DEVICE_NOTIFY_ALL_INTERFACE_CLASSES","features":[52]},{"name":"DEVICE_NOTIFY_CALLBACK","features":[52]},{"name":"DEVICE_NOTIFY_SERVICE_HANDLE","features":[52]},{"name":"DEVICE_NOTIFY_WINDOW_HANDLE","features":[52]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_A","features":[52]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_W","features":[52]},{"name":"DEV_BROADCAST_DEVNODE","features":[52]},{"name":"DEV_BROADCAST_HANDLE","features":[3,52]},{"name":"DEV_BROADCAST_HANDLE32","features":[52]},{"name":"DEV_BROADCAST_HANDLE64","features":[52]},{"name":"DEV_BROADCAST_HDR","features":[52]},{"name":"DEV_BROADCAST_HDR_DEVICE_TYPE","features":[52]},{"name":"DEV_BROADCAST_NET","features":[52]},{"name":"DEV_BROADCAST_OEM","features":[52]},{"name":"DEV_BROADCAST_PORT_A","features":[52]},{"name":"DEV_BROADCAST_PORT_W","features":[52]},{"name":"DEV_BROADCAST_VOLUME","features":[52]},{"name":"DEV_BROADCAST_VOLUME_FLAGS","features":[52]},{"name":"DIFFERENCE","features":[52]},{"name":"DISK_HEALTH_NOTIFICATION_DATA","features":[52]},{"name":"DI_COMPAT","features":[52]},{"name":"DI_DEFAULTSIZE","features":[52]},{"name":"DI_FLAGS","features":[52]},{"name":"DI_IMAGE","features":[52]},{"name":"DI_MASK","features":[52]},{"name":"DI_NOMIRROR","features":[52]},{"name":"DI_NORMAL","features":[52]},{"name":"DLGC_BUTTON","features":[52]},{"name":"DLGC_DEFPUSHBUTTON","features":[52]},{"name":"DLGC_HASSETSEL","features":[52]},{"name":"DLGC_RADIOBUTTON","features":[52]},{"name":"DLGC_STATIC","features":[52]},{"name":"DLGC_UNDEFPUSHBUTTON","features":[52]},{"name":"DLGC_WANTALLKEYS","features":[52]},{"name":"DLGC_WANTARROWS","features":[52]},{"name":"DLGC_WANTCHARS","features":[52]},{"name":"DLGC_WANTMESSAGE","features":[52]},{"name":"DLGC_WANTTAB","features":[52]},{"name":"DLGITEMTEMPLATE","features":[52]},{"name":"DLGPROC","features":[3,52]},{"name":"DLGTEMPLATE","features":[52]},{"name":"DLGWINDOWEXTRA","features":[52]},{"name":"DM_GETDEFID","features":[52]},{"name":"DM_POINTERHITTEST","features":[52]},{"name":"DM_REPOSITION","features":[52]},{"name":"DM_SETDEFID","features":[52]},{"name":"DOF_DIRECTORY","features":[52]},{"name":"DOF_DOCUMENT","features":[52]},{"name":"DOF_EXECUTABLE","features":[52]},{"name":"DOF_MULTIPLE","features":[52]},{"name":"DOF_PROGMAN","features":[52]},{"name":"DOF_SHELLDATA","features":[52]},{"name":"DO_DROPFILE","features":[52]},{"name":"DO_PRINTFILE","features":[52]},{"name":"DROPSTRUCT","features":[3,52]},{"name":"DS_3DLOOK","features":[52]},{"name":"DS_ABSALIGN","features":[52]},{"name":"DS_CENTER","features":[52]},{"name":"DS_CENTERMOUSE","features":[52]},{"name":"DS_CONTEXTHELP","features":[52]},{"name":"DS_CONTROL","features":[52]},{"name":"DS_FIXEDSYS","features":[52]},{"name":"DS_LOCALEDIT","features":[52]},{"name":"DS_MODALFRAME","features":[52]},{"name":"DS_NOFAILCREATE","features":[52]},{"name":"DS_NOIDLEMSG","features":[52]},{"name":"DS_SETFONT","features":[52]},{"name":"DS_SETFOREGROUND","features":[52]},{"name":"DS_SYSMODAL","features":[52]},{"name":"DS_USEPIXELS","features":[52]},{"name":"DWLP_MSGRESULT","features":[52]},{"name":"DWL_DLGPROC","features":[52]},{"name":"DWL_MSGRESULT","features":[52]},{"name":"DWL_USER","features":[52]},{"name":"DefDlgProcA","features":[3,52]},{"name":"DefDlgProcW","features":[3,52]},{"name":"DefFrameProcA","features":[3,52]},{"name":"DefFrameProcW","features":[3,52]},{"name":"DefMDIChildProcA","features":[3,52]},{"name":"DefMDIChildProcW","features":[3,52]},{"name":"DefWindowProcA","features":[3,52]},{"name":"DefWindowProcW","features":[3,52]},{"name":"DeferWindowPos","features":[3,52]},{"name":"DeleteMenu","features":[3,52]},{"name":"DeregisterShellHookWindow","features":[3,52]},{"name":"DestroyAcceleratorTable","features":[3,52]},{"name":"DestroyCaret","features":[3,52]},{"name":"DestroyCursor","features":[3,52]},{"name":"DestroyIcon","features":[3,52]},{"name":"DestroyIndexedResults","features":[52]},{"name":"DestroyMenu","features":[3,52]},{"name":"DestroyResourceIndexer","features":[52]},{"name":"DestroyWindow","features":[3,52]},{"name":"DialogBoxIndirectParamA","features":[3,52]},{"name":"DialogBoxIndirectParamW","features":[3,52]},{"name":"DialogBoxParamA","features":[3,52]},{"name":"DialogBoxParamW","features":[3,52]},{"name":"DisableProcessWindowsGhosting","features":[52]},{"name":"DispatchMessageA","features":[3,52]},{"name":"DispatchMessageW","features":[3,52]},{"name":"DragObject","features":[3,52]},{"name":"DrawIcon","features":[3,14,52]},{"name":"DrawIconEx","features":[3,14,52]},{"name":"DrawMenuBar","features":[3,52]},{"name":"EC_LEFTMARGIN","features":[52]},{"name":"EC_RIGHTMARGIN","features":[52]},{"name":"EC_USEFONTINFO","features":[52]},{"name":"EDD_GET_DEVICE_INTERFACE_NAME","features":[52]},{"name":"EDIT_CONTROL_FEATURE","features":[52]},{"name":"EDIT_CONTROL_FEATURE_ENTERPRISE_DATA_PROTECTION_PASTE_SUPPORT","features":[52]},{"name":"EDIT_CONTROL_FEATURE_PASTE_NOTIFICATIONS","features":[52]},{"name":"EIMES_CANCELCOMPSTRINFOCUS","features":[52]},{"name":"EIMES_COMPLETECOMPSTRKILLFOCUS","features":[52]},{"name":"EIMES_GETCOMPSTRATONCE","features":[52]},{"name":"EMSIS_COMPOSITIONSTRING","features":[52]},{"name":"ENDSESSION_CLOSEAPP","features":[52]},{"name":"ENDSESSION_CRITICAL","features":[52]},{"name":"ENDSESSION_LOGOFF","features":[52]},{"name":"EN_AFTER_PASTE","features":[52]},{"name":"EN_ALIGN_LTR_EC","features":[52]},{"name":"EN_ALIGN_RTL_EC","features":[52]},{"name":"EN_BEFORE_PASTE","features":[52]},{"name":"EN_CHANGE","features":[52]},{"name":"EN_ERRSPACE","features":[52]},{"name":"EN_HSCROLL","features":[52]},{"name":"EN_KILLFOCUS","features":[52]},{"name":"EN_MAXTEXT","features":[52]},{"name":"EN_SETFOCUS","features":[52]},{"name":"EN_UPDATE","features":[52]},{"name":"EN_VSCROLL","features":[52]},{"name":"ES_AUTOHSCROLL","features":[52]},{"name":"ES_AUTOVSCROLL","features":[52]},{"name":"ES_CENTER","features":[52]},{"name":"ES_LEFT","features":[52]},{"name":"ES_LOWERCASE","features":[52]},{"name":"ES_MULTILINE","features":[52]},{"name":"ES_NOHIDESEL","features":[52]},{"name":"ES_NUMBER","features":[52]},{"name":"ES_OEMCONVERT","features":[52]},{"name":"ES_PASSWORD","features":[52]},{"name":"ES_READONLY","features":[52]},{"name":"ES_RIGHT","features":[52]},{"name":"ES_UPPERCASE","features":[52]},{"name":"ES_WANTRETURN","features":[52]},{"name":"EVENTMSG","features":[3,52]},{"name":"EVENT_AIA_END","features":[52]},{"name":"EVENT_AIA_START","features":[52]},{"name":"EVENT_CONSOLE_CARET","features":[52]},{"name":"EVENT_CONSOLE_END","features":[52]},{"name":"EVENT_CONSOLE_END_APPLICATION","features":[52]},{"name":"EVENT_CONSOLE_LAYOUT","features":[52]},{"name":"EVENT_CONSOLE_START_APPLICATION","features":[52]},{"name":"EVENT_CONSOLE_UPDATE_REGION","features":[52]},{"name":"EVENT_CONSOLE_UPDATE_SCROLL","features":[52]},{"name":"EVENT_CONSOLE_UPDATE_SIMPLE","features":[52]},{"name":"EVENT_MAX","features":[52]},{"name":"EVENT_MIN","features":[52]},{"name":"EVENT_OBJECT_ACCELERATORCHANGE","features":[52]},{"name":"EVENT_OBJECT_CLOAKED","features":[52]},{"name":"EVENT_OBJECT_CONTENTSCROLLED","features":[52]},{"name":"EVENT_OBJECT_CREATE","features":[52]},{"name":"EVENT_OBJECT_DEFACTIONCHANGE","features":[52]},{"name":"EVENT_OBJECT_DESCRIPTIONCHANGE","features":[52]},{"name":"EVENT_OBJECT_DESTROY","features":[52]},{"name":"EVENT_OBJECT_DRAGCANCEL","features":[52]},{"name":"EVENT_OBJECT_DRAGCOMPLETE","features":[52]},{"name":"EVENT_OBJECT_DRAGDROPPED","features":[52]},{"name":"EVENT_OBJECT_DRAGENTER","features":[52]},{"name":"EVENT_OBJECT_DRAGLEAVE","features":[52]},{"name":"EVENT_OBJECT_DRAGSTART","features":[52]},{"name":"EVENT_OBJECT_END","features":[52]},{"name":"EVENT_OBJECT_FOCUS","features":[52]},{"name":"EVENT_OBJECT_HELPCHANGE","features":[52]},{"name":"EVENT_OBJECT_HIDE","features":[52]},{"name":"EVENT_OBJECT_HOSTEDOBJECTSINVALIDATED","features":[52]},{"name":"EVENT_OBJECT_IME_CHANGE","features":[52]},{"name":"EVENT_OBJECT_IME_HIDE","features":[52]},{"name":"EVENT_OBJECT_IME_SHOW","features":[52]},{"name":"EVENT_OBJECT_INVOKED","features":[52]},{"name":"EVENT_OBJECT_LIVEREGIONCHANGED","features":[52]},{"name":"EVENT_OBJECT_LOCATIONCHANGE","features":[52]},{"name":"EVENT_OBJECT_NAMECHANGE","features":[52]},{"name":"EVENT_OBJECT_PARENTCHANGE","features":[52]},{"name":"EVENT_OBJECT_REORDER","features":[52]},{"name":"EVENT_OBJECT_SELECTION","features":[52]},{"name":"EVENT_OBJECT_SELECTIONADD","features":[52]},{"name":"EVENT_OBJECT_SELECTIONREMOVE","features":[52]},{"name":"EVENT_OBJECT_SELECTIONWITHIN","features":[52]},{"name":"EVENT_OBJECT_SHOW","features":[52]},{"name":"EVENT_OBJECT_STATECHANGE","features":[52]},{"name":"EVENT_OBJECT_TEXTEDIT_CONVERSIONTARGETCHANGED","features":[52]},{"name":"EVENT_OBJECT_TEXTSELECTIONCHANGED","features":[52]},{"name":"EVENT_OBJECT_UNCLOAKED","features":[52]},{"name":"EVENT_OBJECT_VALUECHANGE","features":[52]},{"name":"EVENT_OEM_DEFINED_END","features":[52]},{"name":"EVENT_OEM_DEFINED_START","features":[52]},{"name":"EVENT_SYSTEM_ALERT","features":[52]},{"name":"EVENT_SYSTEM_ARRANGMENTPREVIEW","features":[52]},{"name":"EVENT_SYSTEM_CAPTUREEND","features":[52]},{"name":"EVENT_SYSTEM_CAPTURESTART","features":[52]},{"name":"EVENT_SYSTEM_CONTEXTHELPEND","features":[52]},{"name":"EVENT_SYSTEM_CONTEXTHELPSTART","features":[52]},{"name":"EVENT_SYSTEM_DESKTOPSWITCH","features":[52]},{"name":"EVENT_SYSTEM_DIALOGEND","features":[52]},{"name":"EVENT_SYSTEM_DIALOGSTART","features":[52]},{"name":"EVENT_SYSTEM_DRAGDROPEND","features":[52]},{"name":"EVENT_SYSTEM_DRAGDROPSTART","features":[52]},{"name":"EVENT_SYSTEM_END","features":[52]},{"name":"EVENT_SYSTEM_FOREGROUND","features":[52]},{"name":"EVENT_SYSTEM_IME_KEY_NOTIFICATION","features":[52]},{"name":"EVENT_SYSTEM_MENUEND","features":[52]},{"name":"EVENT_SYSTEM_MENUPOPUPEND","features":[52]},{"name":"EVENT_SYSTEM_MENUPOPUPSTART","features":[52]},{"name":"EVENT_SYSTEM_MENUSTART","features":[52]},{"name":"EVENT_SYSTEM_MINIMIZEEND","features":[52]},{"name":"EVENT_SYSTEM_MINIMIZESTART","features":[52]},{"name":"EVENT_SYSTEM_MOVESIZEEND","features":[52]},{"name":"EVENT_SYSTEM_MOVESIZESTART","features":[52]},{"name":"EVENT_SYSTEM_SCROLLINGEND","features":[52]},{"name":"EVENT_SYSTEM_SCROLLINGSTART","features":[52]},{"name":"EVENT_SYSTEM_SOUND","features":[52]},{"name":"EVENT_SYSTEM_SWITCHEND","features":[52]},{"name":"EVENT_SYSTEM_SWITCHER_APPDROPPED","features":[52]},{"name":"EVENT_SYSTEM_SWITCHER_APPGRABBED","features":[52]},{"name":"EVENT_SYSTEM_SWITCHER_APPOVERTARGET","features":[52]},{"name":"EVENT_SYSTEM_SWITCHER_CANCELLED","features":[52]},{"name":"EVENT_SYSTEM_SWITCHSTART","features":[52]},{"name":"EVENT_UIA_EVENTID_END","features":[52]},{"name":"EVENT_UIA_EVENTID_START","features":[52]},{"name":"EVENT_UIA_PROPID_END","features":[52]},{"name":"EVENT_UIA_PROPID_START","features":[52]},{"name":"EnableMenuItem","features":[3,52]},{"name":"EndDeferWindowPos","features":[3,52]},{"name":"EndDialog","features":[3,52]},{"name":"EndMenu","features":[3,52]},{"name":"EnumChildWindows","features":[3,52]},{"name":"EnumPropsA","features":[3,52]},{"name":"EnumPropsExA","features":[3,52]},{"name":"EnumPropsExW","features":[3,52]},{"name":"EnumPropsW","features":[3,52]},{"name":"EnumThreadWindows","features":[3,52]},{"name":"EnumWindows","features":[3,52]},{"name":"FALT","features":[52]},{"name":"FAPPCOMMAND_KEY","features":[52]},{"name":"FAPPCOMMAND_MASK","features":[52]},{"name":"FAPPCOMMAND_MOUSE","features":[52]},{"name":"FAPPCOMMAND_OEM","features":[52]},{"name":"FCONTROL","features":[52]},{"name":"FE_FONTSMOOTHINGCLEARTYPE","features":[52]},{"name":"FE_FONTSMOOTHINGORIENTATIONBGR","features":[52]},{"name":"FE_FONTSMOOTHINGORIENTATIONRGB","features":[52]},{"name":"FE_FONTSMOOTHINGSTANDARD","features":[52]},{"name":"FKF_AVAILABLE","features":[52]},{"name":"FKF_CLICKON","features":[52]},{"name":"FKF_CONFIRMHOTKEY","features":[52]},{"name":"FKF_FILTERKEYSON","features":[52]},{"name":"FKF_HOTKEYACTIVE","features":[52]},{"name":"FKF_HOTKEYSOUND","features":[52]},{"name":"FKF_INDICATOR","features":[52]},{"name":"FLASHWINFO","features":[3,52]},{"name":"FLASHWINFO_FLAGS","features":[52]},{"name":"FLASHW_ALL","features":[52]},{"name":"FLASHW_CAPTION","features":[52]},{"name":"FLASHW_STOP","features":[52]},{"name":"FLASHW_TIMER","features":[52]},{"name":"FLASHW_TIMERNOFG","features":[52]},{"name":"FLASHW_TRAY","features":[52]},{"name":"FNOINVERT","features":[52]},{"name":"FOREGROUND_WINDOW_LOCK_CODE","features":[52]},{"name":"FSHIFT","features":[52]},{"name":"FVIRTKEY","features":[52]},{"name":"FindWindowA","features":[3,52]},{"name":"FindWindowExA","features":[3,52]},{"name":"FindWindowExW","features":[3,52]},{"name":"FindWindowW","features":[3,52]},{"name":"FlashWindow","features":[3,52]},{"name":"FlashWindowEx","features":[3,52]},{"name":"GA_PARENT","features":[52]},{"name":"GA_ROOT","features":[52]},{"name":"GA_ROOTOWNER","features":[52]},{"name":"GCF_INCLUDE_ANCESTORS","features":[52]},{"name":"GCLP_HBRBACKGROUND","features":[52]},{"name":"GCLP_HCURSOR","features":[52]},{"name":"GCLP_HICON","features":[52]},{"name":"GCLP_HICONSM","features":[52]},{"name":"GCLP_HMODULE","features":[52]},{"name":"GCLP_MENUNAME","features":[52]},{"name":"GCLP_WNDPROC","features":[52]},{"name":"GCL_CBCLSEXTRA","features":[52]},{"name":"GCL_CBWNDEXTRA","features":[52]},{"name":"GCL_HBRBACKGROUND","features":[52]},{"name":"GCL_HCURSOR","features":[52]},{"name":"GCL_HICON","features":[52]},{"name":"GCL_HICONSM","features":[52]},{"name":"GCL_HMODULE","features":[52]},{"name":"GCL_MENUNAME","features":[52]},{"name":"GCL_STYLE","features":[52]},{"name":"GCL_WNDPROC","features":[52]},{"name":"GCW_ATOM","features":[52]},{"name":"GDI_IMAGE_TYPE","features":[52]},{"name":"GESTURECONFIGMAXCOUNT","features":[52]},{"name":"GESTUREVISUALIZATION_DOUBLETAP","features":[52]},{"name":"GESTUREVISUALIZATION_OFF","features":[52]},{"name":"GESTUREVISUALIZATION_ON","features":[52]},{"name":"GESTUREVISUALIZATION_PRESSANDHOLD","features":[52]},{"name":"GESTUREVISUALIZATION_PRESSANDTAP","features":[52]},{"name":"GESTUREVISUALIZATION_RIGHTTAP","features":[52]},{"name":"GESTUREVISUALIZATION_TAP","features":[52]},{"name":"GETCLIPBMETADATA","features":[3,52]},{"name":"GET_ANCESTOR_FLAGS","features":[52]},{"name":"GET_CLASS_LONG_INDEX","features":[52]},{"name":"GET_MENU_DEFAULT_ITEM_FLAGS","features":[52]},{"name":"GET_WINDOW_CMD","features":[52]},{"name":"GF_BEGIN","features":[52]},{"name":"GF_END","features":[52]},{"name":"GF_INERTIA","features":[52]},{"name":"GIDC_ARRIVAL","features":[52]},{"name":"GIDC_REMOVAL","features":[52]},{"name":"GMDI_GOINTOPOPUPS","features":[52]},{"name":"GMDI_USEDISABLED","features":[52]},{"name":"GUID_DEVICE_EVENT_RBC","features":[52]},{"name":"GUID_IO_CDROM_EXCLUSIVE_LOCK","features":[52]},{"name":"GUID_IO_CDROM_EXCLUSIVE_UNLOCK","features":[52]},{"name":"GUID_IO_DEVICE_BECOMING_READY","features":[52]},{"name":"GUID_IO_DEVICE_EXTERNAL_REQUEST","features":[52]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL","features":[52]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL_INFORMATION","features":[52]},{"name":"GUID_IO_DISK_HEALTH_NOTIFICATION","features":[52]},{"name":"GUID_IO_DISK_LAYOUT_CHANGE","features":[52]},{"name":"GUID_IO_DRIVE_REQUIRES_CLEANING","features":[52]},{"name":"GUID_IO_MEDIA_ARRIVAL","features":[52]},{"name":"GUID_IO_MEDIA_EJECT_REQUEST","features":[52]},{"name":"GUID_IO_MEDIA_REMOVAL","features":[52]},{"name":"GUID_IO_TAPE_ERASE","features":[52]},{"name":"GUID_IO_VOLUME_BACKGROUND_FORMAT","features":[52]},{"name":"GUID_IO_VOLUME_CHANGE","features":[52]},{"name":"GUID_IO_VOLUME_CHANGE_SIZE","features":[52]},{"name":"GUID_IO_VOLUME_DEVICE_INTERFACE","features":[52]},{"name":"GUID_IO_VOLUME_DISMOUNT","features":[52]},{"name":"GUID_IO_VOLUME_DISMOUNT_FAILED","features":[52]},{"name":"GUID_IO_VOLUME_FORCE_CLOSED","features":[52]},{"name":"GUID_IO_VOLUME_FVE_STATUS_CHANGE","features":[52]},{"name":"GUID_IO_VOLUME_INFO_MAKE_COMPAT","features":[52]},{"name":"GUID_IO_VOLUME_LOCK","features":[52]},{"name":"GUID_IO_VOLUME_LOCK_FAILED","features":[52]},{"name":"GUID_IO_VOLUME_MOUNT","features":[52]},{"name":"GUID_IO_VOLUME_NAME_CHANGE","features":[52]},{"name":"GUID_IO_VOLUME_NEED_CHKDSK","features":[52]},{"name":"GUID_IO_VOLUME_PHYSICAL_CONFIGURATION_CHANGE","features":[52]},{"name":"GUID_IO_VOLUME_PREPARING_EJECT","features":[52]},{"name":"GUID_IO_VOLUME_UNIQUE_ID_CHANGE","features":[52]},{"name":"GUID_IO_VOLUME_UNLOCK","features":[52]},{"name":"GUID_IO_VOLUME_WEARING_OUT","features":[52]},{"name":"GUID_IO_VOLUME_WORM_NEAR_FULL","features":[52]},{"name":"GUITHREADINFO","features":[3,52]},{"name":"GUITHREADINFO_FLAGS","features":[52]},{"name":"GUI_16BITTASK","features":[52]},{"name":"GUI_CARETBLINKING","features":[52]},{"name":"GUI_INMENUMODE","features":[52]},{"name":"GUI_INMOVESIZE","features":[52]},{"name":"GUI_POPUPMENUMODE","features":[52]},{"name":"GUI_SYSTEMMENUMODE","features":[52]},{"name":"GWFS_INCLUDE_ANCESTORS","features":[52]},{"name":"GWLP_HINSTANCE","features":[52]},{"name":"GWLP_HWNDPARENT","features":[52]},{"name":"GWLP_ID","features":[52]},{"name":"GWLP_USERDATA","features":[52]},{"name":"GWLP_WNDPROC","features":[52]},{"name":"GWL_EXSTYLE","features":[52]},{"name":"GWL_HINSTANCE","features":[52]},{"name":"GWL_HWNDPARENT","features":[52]},{"name":"GWL_ID","features":[52]},{"name":"GWL_STYLE","features":[52]},{"name":"GWL_USERDATA","features":[52]},{"name":"GWL_WNDPROC","features":[52]},{"name":"GW_CHILD","features":[52]},{"name":"GW_ENABLEDPOPUP","features":[52]},{"name":"GW_HWNDFIRST","features":[52]},{"name":"GW_HWNDLAST","features":[52]},{"name":"GW_HWNDNEXT","features":[52]},{"name":"GW_HWNDPREV","features":[52]},{"name":"GW_MAX","features":[52]},{"name":"GW_OWNER","features":[52]},{"name":"GetAltTabInfoA","features":[3,52]},{"name":"GetAltTabInfoW","features":[3,52]},{"name":"GetAncestor","features":[3,52]},{"name":"GetCaretBlinkTime","features":[52]},{"name":"GetCaretPos","features":[3,52]},{"name":"GetClassInfoA","features":[3,14,52]},{"name":"GetClassInfoExA","features":[3,14,52]},{"name":"GetClassInfoExW","features":[3,14,52]},{"name":"GetClassInfoW","features":[3,14,52]},{"name":"GetClassLongA","features":[3,52]},{"name":"GetClassLongPtrA","features":[3,52]},{"name":"GetClassLongPtrW","features":[3,52]},{"name":"GetClassLongW","features":[3,52]},{"name":"GetClassNameA","features":[3,52]},{"name":"GetClassNameW","features":[3,52]},{"name":"GetClassWord","features":[3,52]},{"name":"GetClientRect","features":[3,52]},{"name":"GetClipCursor","features":[3,52]},{"name":"GetCursor","features":[52]},{"name":"GetCursorInfo","features":[3,52]},{"name":"GetCursorPos","features":[3,52]},{"name":"GetDesktopWindow","features":[3,52]},{"name":"GetDialogBaseUnits","features":[52]},{"name":"GetDlgCtrlID","features":[3,52]},{"name":"GetDlgItem","features":[3,52]},{"name":"GetDlgItemInt","features":[3,52]},{"name":"GetDlgItemTextA","features":[3,52]},{"name":"GetDlgItemTextW","features":[3,52]},{"name":"GetForegroundWindow","features":[3,52]},{"name":"GetGUIThreadInfo","features":[3,52]},{"name":"GetIconInfo","features":[3,14,52]},{"name":"GetIconInfoExA","features":[3,14,52]},{"name":"GetIconInfoExW","features":[3,14,52]},{"name":"GetInputState","features":[3,52]},{"name":"GetLastActivePopup","features":[3,52]},{"name":"GetLayeredWindowAttributes","features":[3,52]},{"name":"GetMenu","features":[3,52]},{"name":"GetMenuBarInfo","features":[3,52]},{"name":"GetMenuCheckMarkDimensions","features":[52]},{"name":"GetMenuDefaultItem","features":[52]},{"name":"GetMenuInfo","features":[3,14,52]},{"name":"GetMenuItemCount","features":[52]},{"name":"GetMenuItemID","features":[52]},{"name":"GetMenuItemInfoA","features":[3,14,52]},{"name":"GetMenuItemInfoW","features":[3,14,52]},{"name":"GetMenuItemRect","features":[3,52]},{"name":"GetMenuState","features":[52]},{"name":"GetMenuStringA","features":[52]},{"name":"GetMenuStringW","features":[52]},{"name":"GetMessageA","features":[3,52]},{"name":"GetMessageExtraInfo","features":[3,52]},{"name":"GetMessagePos","features":[52]},{"name":"GetMessageTime","features":[52]},{"name":"GetMessageW","features":[3,52]},{"name":"GetNextDlgGroupItem","features":[3,52]},{"name":"GetNextDlgTabItem","features":[3,52]},{"name":"GetParent","features":[3,52]},{"name":"GetPhysicalCursorPos","features":[3,52]},{"name":"GetProcessDefaultLayout","features":[3,52]},{"name":"GetPropA","features":[3,52]},{"name":"GetPropW","features":[3,52]},{"name":"GetQueueStatus","features":[52]},{"name":"GetScrollBarInfo","features":[3,52]},{"name":"GetScrollInfo","features":[3,52]},{"name":"GetScrollPos","features":[3,52]},{"name":"GetScrollRange","features":[3,52]},{"name":"GetShellWindow","features":[3,52]},{"name":"GetSubMenu","features":[52]},{"name":"GetSystemMenu","features":[3,52]},{"name":"GetSystemMetrics","features":[52]},{"name":"GetTitleBarInfo","features":[3,52]},{"name":"GetTopWindow","features":[3,52]},{"name":"GetWindow","features":[3,52]},{"name":"GetWindowDisplayAffinity","features":[3,52]},{"name":"GetWindowInfo","features":[3,52]},{"name":"GetWindowLongA","features":[3,52]},{"name":"GetWindowLongPtrA","features":[3,52]},{"name":"GetWindowLongPtrW","features":[3,52]},{"name":"GetWindowLongW","features":[3,52]},{"name":"GetWindowModuleFileNameA","features":[3,52]},{"name":"GetWindowModuleFileNameW","features":[3,52]},{"name":"GetWindowPlacement","features":[3,52]},{"name":"GetWindowRect","features":[3,52]},{"name":"GetWindowTextA","features":[3,52]},{"name":"GetWindowTextLengthA","features":[3,52]},{"name":"GetWindowTextLengthW","features":[3,52]},{"name":"GetWindowTextW","features":[3,52]},{"name":"GetWindowThreadProcessId","features":[3,52]},{"name":"GetWindowWord","features":[3,52]},{"name":"HACCEL","features":[52]},{"name":"HANDEDNESS","features":[52]},{"name":"HANDEDNESS_LEFT","features":[52]},{"name":"HANDEDNESS_RIGHT","features":[52]},{"name":"HARDWAREHOOKSTRUCT","features":[3,52]},{"name":"HBMMENU_CALLBACK","features":[14,52]},{"name":"HBMMENU_MBAR_CLOSE","features":[14,52]},{"name":"HBMMENU_MBAR_CLOSE_D","features":[14,52]},{"name":"HBMMENU_MBAR_MINIMIZE","features":[14,52]},{"name":"HBMMENU_MBAR_MINIMIZE_D","features":[14,52]},{"name":"HBMMENU_MBAR_RESTORE","features":[14,52]},{"name":"HBMMENU_POPUP_CLOSE","features":[14,52]},{"name":"HBMMENU_POPUP_MAXIMIZE","features":[14,52]},{"name":"HBMMENU_POPUP_MINIMIZE","features":[14,52]},{"name":"HBMMENU_POPUP_RESTORE","features":[14,52]},{"name":"HBMMENU_SYSTEM","features":[14,52]},{"name":"HCBT_ACTIVATE","features":[52]},{"name":"HCBT_CLICKSKIPPED","features":[52]},{"name":"HCBT_CREATEWND","features":[52]},{"name":"HCBT_DESTROYWND","features":[52]},{"name":"HCBT_KEYSKIPPED","features":[52]},{"name":"HCBT_MINMAX","features":[52]},{"name":"HCBT_MOVESIZE","features":[52]},{"name":"HCBT_QS","features":[52]},{"name":"HCBT_SETFOCUS","features":[52]},{"name":"HCBT_SYSCOMMAND","features":[52]},{"name":"HCF_DEFAULTDESKTOP","features":[52]},{"name":"HCF_LOGONDESKTOP","features":[52]},{"name":"HCURSOR","features":[52]},{"name":"HC_ACTION","features":[52]},{"name":"HC_GETNEXT","features":[52]},{"name":"HC_NOREM","features":[52]},{"name":"HC_NOREMOVE","features":[52]},{"name":"HC_SKIP","features":[52]},{"name":"HC_SYSMODALOFF","features":[52]},{"name":"HC_SYSMODALON","features":[52]},{"name":"HDEVNOTIFY","features":[52]},{"name":"HDWP","features":[52]},{"name":"HELP_COMMAND","features":[52]},{"name":"HELP_CONTENTS","features":[52]},{"name":"HELP_CONTEXT","features":[52]},{"name":"HELP_CONTEXTMENU","features":[52]},{"name":"HELP_CONTEXTPOPUP","features":[52]},{"name":"HELP_FINDER","features":[52]},{"name":"HELP_FORCEFILE","features":[52]},{"name":"HELP_HELPONHELP","features":[52]},{"name":"HELP_INDEX","features":[52]},{"name":"HELP_KEY","features":[52]},{"name":"HELP_MULTIKEY","features":[52]},{"name":"HELP_PARTIALKEY","features":[52]},{"name":"HELP_QUIT","features":[52]},{"name":"HELP_SETCONTENTS","features":[52]},{"name":"HELP_SETINDEX","features":[52]},{"name":"HELP_SETPOPUP_POS","features":[52]},{"name":"HELP_SETWINPOS","features":[52]},{"name":"HELP_TCARD","features":[52]},{"name":"HELP_TCARD_DATA","features":[52]},{"name":"HELP_TCARD_OTHER_CALLER","features":[52]},{"name":"HELP_WM_HELP","features":[52]},{"name":"HHOOK","features":[52]},{"name":"HICON","features":[52]},{"name":"HIDE_WINDOW","features":[52]},{"name":"HKL_NEXT","features":[52]},{"name":"HKL_PREV","features":[52]},{"name":"HMENU","features":[52]},{"name":"HOOKPROC","features":[3,52]},{"name":"HSHELL_ACCESSIBILITYSTATE","features":[52]},{"name":"HSHELL_ACTIVATESHELLWINDOW","features":[52]},{"name":"HSHELL_APPCOMMAND","features":[52]},{"name":"HSHELL_ENDTASK","features":[52]},{"name":"HSHELL_GETMINRECT","features":[52]},{"name":"HSHELL_HIGHBIT","features":[52]},{"name":"HSHELL_LANGUAGE","features":[52]},{"name":"HSHELL_MONITORCHANGED","features":[52]},{"name":"HSHELL_REDRAW","features":[52]},{"name":"HSHELL_SYSMENU","features":[52]},{"name":"HSHELL_TASKMAN","features":[52]},{"name":"HSHELL_WINDOWACTIVATED","features":[52]},{"name":"HSHELL_WINDOWCREATED","features":[52]},{"name":"HSHELL_WINDOWDESTROYED","features":[52]},{"name":"HSHELL_WINDOWREPLACED","features":[52]},{"name":"HSHELL_WINDOWREPLACING","features":[52]},{"name":"HTBORDER","features":[52]},{"name":"HTBOTTOM","features":[52]},{"name":"HTBOTTOMLEFT","features":[52]},{"name":"HTBOTTOMRIGHT","features":[52]},{"name":"HTCAPTION","features":[52]},{"name":"HTCLIENT","features":[52]},{"name":"HTCLOSE","features":[52]},{"name":"HTERROR","features":[52]},{"name":"HTGROWBOX","features":[52]},{"name":"HTHELP","features":[52]},{"name":"HTHSCROLL","features":[52]},{"name":"HTLEFT","features":[52]},{"name":"HTMAXBUTTON","features":[52]},{"name":"HTMENU","features":[52]},{"name":"HTMINBUTTON","features":[52]},{"name":"HTNOWHERE","features":[52]},{"name":"HTOBJECT","features":[52]},{"name":"HTREDUCE","features":[52]},{"name":"HTRIGHT","features":[52]},{"name":"HTSIZE","features":[52]},{"name":"HTSIZEFIRST","features":[52]},{"name":"HTSIZELAST","features":[52]},{"name":"HTSYSMENU","features":[52]},{"name":"HTTOP","features":[52]},{"name":"HTTOPLEFT","features":[52]},{"name":"HTTOPRIGHT","features":[52]},{"name":"HTTRANSPARENT","features":[52]},{"name":"HTVSCROLL","features":[52]},{"name":"HTZOOM","features":[52]},{"name":"HWND_BOTTOM","features":[3,52]},{"name":"HWND_BROADCAST","features":[3,52]},{"name":"HWND_DESKTOP","features":[3,52]},{"name":"HWND_MESSAGE","features":[3,52]},{"name":"HWND_NOTOPMOST","features":[3,52]},{"name":"HWND_TOP","features":[3,52]},{"name":"HWND_TOPMOST","features":[3,52]},{"name":"HideCaret","features":[3,52]},{"name":"HiliteMenuItem","features":[3,52]},{"name":"ICONINFO","features":[3,14,52]},{"name":"ICONINFOEXA","features":[3,14,52]},{"name":"ICONINFOEXW","features":[3,14,52]},{"name":"ICONMETRICSA","features":[14,52]},{"name":"ICONMETRICSW","features":[14,52]},{"name":"ICON_BIG","features":[52]},{"name":"ICON_SMALL","features":[52]},{"name":"ICON_SMALL2","features":[52]},{"name":"IDABORT","features":[52]},{"name":"IDANI_CAPTION","features":[52]},{"name":"IDANI_OPEN","features":[52]},{"name":"IDASYNC","features":[52]},{"name":"IDCANCEL","features":[52]},{"name":"IDCLOSE","features":[52]},{"name":"IDCONTINUE","features":[52]},{"name":"IDC_APPSTARTING","features":[52]},{"name":"IDC_ARROW","features":[52]},{"name":"IDC_CROSS","features":[52]},{"name":"IDC_HAND","features":[52]},{"name":"IDC_HELP","features":[52]},{"name":"IDC_IBEAM","features":[52]},{"name":"IDC_ICON","features":[52]},{"name":"IDC_NO","features":[52]},{"name":"IDC_PERSON","features":[52]},{"name":"IDC_PIN","features":[52]},{"name":"IDC_SIZE","features":[52]},{"name":"IDC_SIZEALL","features":[52]},{"name":"IDC_SIZENESW","features":[52]},{"name":"IDC_SIZENS","features":[52]},{"name":"IDC_SIZENWSE","features":[52]},{"name":"IDC_SIZEWE","features":[52]},{"name":"IDC_STATIC","features":[52]},{"name":"IDC_UPARROW","features":[52]},{"name":"IDC_WAIT","features":[52]},{"name":"IDHELP","features":[52]},{"name":"IDHOT_SNAPDESKTOP","features":[52]},{"name":"IDHOT_SNAPWINDOW","features":[52]},{"name":"IDH_CANCEL","features":[52]},{"name":"IDH_GENERIC_HELP_BUTTON","features":[52]},{"name":"IDH_HELP","features":[52]},{"name":"IDH_MISSING_CONTEXT","features":[52]},{"name":"IDH_NO_HELP","features":[52]},{"name":"IDH_OK","features":[52]},{"name":"IDIGNORE","features":[52]},{"name":"IDI_APPLICATION","features":[52]},{"name":"IDI_ASTERISK","features":[52]},{"name":"IDI_ERROR","features":[52]},{"name":"IDI_EXCLAMATION","features":[52]},{"name":"IDI_HAND","features":[52]},{"name":"IDI_INFORMATION","features":[52]},{"name":"IDI_QUESTION","features":[52]},{"name":"IDI_SHIELD","features":[52]},{"name":"IDI_WARNING","features":[52]},{"name":"IDI_WINLOGO","features":[52]},{"name":"IDNO","features":[52]},{"name":"IDOK","features":[52]},{"name":"IDRETRY","features":[52]},{"name":"IDTIMEOUT","features":[52]},{"name":"IDTRYAGAIN","features":[52]},{"name":"IDYES","features":[52]},{"name":"IMAGE_BITMAP","features":[52]},{"name":"IMAGE_CURSOR","features":[52]},{"name":"IMAGE_ENHMETAFILE","features":[52]},{"name":"IMAGE_FLAGS","features":[52]},{"name":"IMAGE_ICON","features":[52]},{"name":"INDEXID_CONTAINER","features":[52]},{"name":"INDEXID_OBJECT","features":[52]},{"name":"INPUTLANGCHANGE_BACKWARD","features":[52]},{"name":"INPUTLANGCHANGE_FORWARD","features":[52]},{"name":"INPUTLANGCHANGE_SYSCHARSET","features":[52]},{"name":"ISMEX_CALLBACK","features":[52]},{"name":"ISMEX_NOSEND","features":[52]},{"name":"ISMEX_NOTIFY","features":[52]},{"name":"ISMEX_REPLIED","features":[52]},{"name":"ISMEX_SEND","features":[52]},{"name":"ISOLATIONAWARE_MANIFEST_RESOURCE_ID","features":[52]},{"name":"ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID","features":[52]},{"name":"ISOLATIONPOLICY_BROWSER_MANIFEST_RESOURCE_ID","features":[52]},{"name":"ISOLATIONPOLICY_MANIFEST_RESOURCE_ID","features":[52]},{"name":"InSendMessage","features":[3,52]},{"name":"InSendMessageEx","features":[52]},{"name":"IndexFilePath","features":[52]},{"name":"IndexedResourceQualifier","features":[52]},{"name":"InheritWindowMonitor","features":[3,52]},{"name":"InsertMenuA","features":[3,52]},{"name":"InsertMenuItemA","features":[3,14,52]},{"name":"InsertMenuItemW","features":[3,14,52]},{"name":"InsertMenuW","features":[3,52]},{"name":"InternalGetWindowText","features":[3,52]},{"name":"IsCharAlphaA","features":[3,52]},{"name":"IsCharAlphaNumericA","features":[3,52]},{"name":"IsCharAlphaNumericW","features":[3,52]},{"name":"IsCharAlphaW","features":[3,52]},{"name":"IsCharLowerA","features":[3,52]},{"name":"IsCharUpperA","features":[3,52]},{"name":"IsCharUpperW","features":[3,52]},{"name":"IsChild","features":[3,52]},{"name":"IsDialogMessageA","features":[3,52]},{"name":"IsDialogMessageW","features":[3,52]},{"name":"IsGUIThread","features":[3,52]},{"name":"IsHungAppWindow","features":[3,52]},{"name":"IsIconic","features":[3,52]},{"name":"IsMenu","features":[3,52]},{"name":"IsProcessDPIAware","features":[3,52]},{"name":"IsWindow","features":[3,52]},{"name":"IsWindowArranged","features":[3,52]},{"name":"IsWindowUnicode","features":[3,52]},{"name":"IsWindowVisible","features":[3,52]},{"name":"IsWow64Message","features":[3,52]},{"name":"IsZoomed","features":[3,52]},{"name":"KBDLLHOOKSTRUCT","features":[52]},{"name":"KBDLLHOOKSTRUCT_FLAGS","features":[52]},{"name":"KF_ALTDOWN","features":[52]},{"name":"KF_DLGMODE","features":[52]},{"name":"KF_EXTENDED","features":[52]},{"name":"KF_MENUMODE","features":[52]},{"name":"KF_REPEAT","features":[52]},{"name":"KF_UP","features":[52]},{"name":"KL_NAMELENGTH","features":[52]},{"name":"KillTimer","features":[3,52]},{"name":"LAYERED_WINDOW_ATTRIBUTES_FLAGS","features":[52]},{"name":"LBN_DBLCLK","features":[52]},{"name":"LBN_ERRSPACE","features":[52]},{"name":"LBN_KILLFOCUS","features":[52]},{"name":"LBN_SELCANCEL","features":[52]},{"name":"LBN_SELCHANGE","features":[52]},{"name":"LBN_SETFOCUS","features":[52]},{"name":"LBS_COMBOBOX","features":[52]},{"name":"LBS_DISABLENOSCROLL","features":[52]},{"name":"LBS_EXTENDEDSEL","features":[52]},{"name":"LBS_HASSTRINGS","features":[52]},{"name":"LBS_MULTICOLUMN","features":[52]},{"name":"LBS_MULTIPLESEL","features":[52]},{"name":"LBS_NODATA","features":[52]},{"name":"LBS_NOINTEGRALHEIGHT","features":[52]},{"name":"LBS_NOREDRAW","features":[52]},{"name":"LBS_NOSEL","features":[52]},{"name":"LBS_NOTIFY","features":[52]},{"name":"LBS_OWNERDRAWFIXED","features":[52]},{"name":"LBS_OWNERDRAWVARIABLE","features":[52]},{"name":"LBS_SORT","features":[52]},{"name":"LBS_STANDARD","features":[52]},{"name":"LBS_USETABSTOPS","features":[52]},{"name":"LBS_WANTKEYBOARDINPUT","features":[52]},{"name":"LB_ADDFILE","features":[52]},{"name":"LB_ADDSTRING","features":[52]},{"name":"LB_CTLCODE","features":[52]},{"name":"LB_DELETESTRING","features":[52]},{"name":"LB_DIR","features":[52]},{"name":"LB_ERR","features":[52]},{"name":"LB_ERRSPACE","features":[52]},{"name":"LB_FINDSTRING","features":[52]},{"name":"LB_FINDSTRINGEXACT","features":[52]},{"name":"LB_GETANCHORINDEX","features":[52]},{"name":"LB_GETCARETINDEX","features":[52]},{"name":"LB_GETCOUNT","features":[52]},{"name":"LB_GETCURSEL","features":[52]},{"name":"LB_GETHORIZONTALEXTENT","features":[52]},{"name":"LB_GETITEMDATA","features":[52]},{"name":"LB_GETITEMHEIGHT","features":[52]},{"name":"LB_GETITEMRECT","features":[52]},{"name":"LB_GETLISTBOXINFO","features":[52]},{"name":"LB_GETLOCALE","features":[52]},{"name":"LB_GETSEL","features":[52]},{"name":"LB_GETSELCOUNT","features":[52]},{"name":"LB_GETSELITEMS","features":[52]},{"name":"LB_GETTEXT","features":[52]},{"name":"LB_GETTEXTLEN","features":[52]},{"name":"LB_GETTOPINDEX","features":[52]},{"name":"LB_INITSTORAGE","features":[52]},{"name":"LB_INSERTSTRING","features":[52]},{"name":"LB_ITEMFROMPOINT","features":[52]},{"name":"LB_MSGMAX","features":[52]},{"name":"LB_MULTIPLEADDSTRING","features":[52]},{"name":"LB_OKAY","features":[52]},{"name":"LB_RESETCONTENT","features":[52]},{"name":"LB_SELECTSTRING","features":[52]},{"name":"LB_SELITEMRANGE","features":[52]},{"name":"LB_SELITEMRANGEEX","features":[52]},{"name":"LB_SETANCHORINDEX","features":[52]},{"name":"LB_SETCARETINDEX","features":[52]},{"name":"LB_SETCOLUMNWIDTH","features":[52]},{"name":"LB_SETCOUNT","features":[52]},{"name":"LB_SETCURSEL","features":[52]},{"name":"LB_SETHORIZONTALEXTENT","features":[52]},{"name":"LB_SETITEMDATA","features":[52]},{"name":"LB_SETITEMHEIGHT","features":[52]},{"name":"LB_SETLOCALE","features":[52]},{"name":"LB_SETSEL","features":[52]},{"name":"LB_SETTABSTOPS","features":[52]},{"name":"LB_SETTOPINDEX","features":[52]},{"name":"LLKHF_ALTDOWN","features":[52]},{"name":"LLKHF_EXTENDED","features":[52]},{"name":"LLKHF_INJECTED","features":[52]},{"name":"LLKHF_LOWER_IL_INJECTED","features":[52]},{"name":"LLKHF_UP","features":[52]},{"name":"LLMHF_INJECTED","features":[52]},{"name":"LLMHF_LOWER_IL_INJECTED","features":[52]},{"name":"LOCKF_LOGICAL_LOCK","features":[52]},{"name":"LOCKF_PHYSICAL_LOCK","features":[52]},{"name":"LOCKP_ALLOW_MEM_MAPPING","features":[52]},{"name":"LOCKP_ALLOW_WRITES","features":[52]},{"name":"LOCKP_FAIL_MEM_MAPPING","features":[52]},{"name":"LOCKP_FAIL_WRITES","features":[52]},{"name":"LOCKP_LOCK_FOR_FORMAT","features":[52]},{"name":"LOCKP_USER_MASK","features":[52]},{"name":"LR_COLOR","features":[52]},{"name":"LR_COPYDELETEORG","features":[52]},{"name":"LR_COPYFROMRESOURCE","features":[52]},{"name":"LR_COPYRETURNORG","features":[52]},{"name":"LR_CREATEDIBSECTION","features":[52]},{"name":"LR_DEFAULTCOLOR","features":[52]},{"name":"LR_DEFAULTSIZE","features":[52]},{"name":"LR_LOADFROMFILE","features":[52]},{"name":"LR_LOADMAP3DCOLORS","features":[52]},{"name":"LR_LOADTRANSPARENT","features":[52]},{"name":"LR_MONOCHROME","features":[52]},{"name":"LR_SHARED","features":[52]},{"name":"LR_VGACOLOR","features":[52]},{"name":"LSFW_LOCK","features":[52]},{"name":"LSFW_UNLOCK","features":[52]},{"name":"LWA_ALPHA","features":[52]},{"name":"LWA_COLORKEY","features":[52]},{"name":"LoadAcceleratorsA","features":[3,52]},{"name":"LoadAcceleratorsW","features":[3,52]},{"name":"LoadCursorA","features":[3,52]},{"name":"LoadCursorFromFileA","features":[52]},{"name":"LoadCursorFromFileW","features":[52]},{"name":"LoadCursorW","features":[3,52]},{"name":"LoadIconA","features":[3,52]},{"name":"LoadIconW","features":[3,52]},{"name":"LoadImageA","features":[3,52]},{"name":"LoadImageW","features":[3,52]},{"name":"LoadMenuA","features":[3,52]},{"name":"LoadMenuIndirectA","features":[52]},{"name":"LoadMenuIndirectW","features":[52]},{"name":"LoadMenuW","features":[3,52]},{"name":"LoadStringA","features":[3,52]},{"name":"LoadStringW","features":[3,52]},{"name":"LockSetForegroundWindow","features":[3,52]},{"name":"LogicalToPhysicalPoint","features":[3,52]},{"name":"LookupIconIdFromDirectory","features":[3,52]},{"name":"LookupIconIdFromDirectoryEx","features":[3,52]},{"name":"MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[52]},{"name":"MAX_LOGICALDPIOVERRIDE","features":[52]},{"name":"MAX_STR_BLOCKREASON","features":[52]},{"name":"MAX_TOUCH_COUNT","features":[52]},{"name":"MAX_TOUCH_PREDICTION_FILTER_TAPS","features":[52]},{"name":"MA_ACTIVATE","features":[52]},{"name":"MA_ACTIVATEANDEAT","features":[52]},{"name":"MA_NOACTIVATE","features":[52]},{"name":"MA_NOACTIVATEANDEAT","features":[52]},{"name":"MB_ABORTRETRYIGNORE","features":[52]},{"name":"MB_APPLMODAL","features":[52]},{"name":"MB_CANCELTRYCONTINUE","features":[52]},{"name":"MB_DEFAULT_DESKTOP_ONLY","features":[52]},{"name":"MB_DEFBUTTON1","features":[52]},{"name":"MB_DEFBUTTON2","features":[52]},{"name":"MB_DEFBUTTON3","features":[52]},{"name":"MB_DEFBUTTON4","features":[52]},{"name":"MB_DEFMASK","features":[52]},{"name":"MB_HELP","features":[52]},{"name":"MB_ICONASTERISK","features":[52]},{"name":"MB_ICONERROR","features":[52]},{"name":"MB_ICONEXCLAMATION","features":[52]},{"name":"MB_ICONHAND","features":[52]},{"name":"MB_ICONINFORMATION","features":[52]},{"name":"MB_ICONMASK","features":[52]},{"name":"MB_ICONQUESTION","features":[52]},{"name":"MB_ICONSTOP","features":[52]},{"name":"MB_ICONWARNING","features":[52]},{"name":"MB_MISCMASK","features":[52]},{"name":"MB_MODEMASK","features":[52]},{"name":"MB_NOFOCUS","features":[52]},{"name":"MB_OK","features":[52]},{"name":"MB_OKCANCEL","features":[52]},{"name":"MB_RETRYCANCEL","features":[52]},{"name":"MB_RIGHT","features":[52]},{"name":"MB_RTLREADING","features":[52]},{"name":"MB_SERVICE_NOTIFICATION","features":[52]},{"name":"MB_SERVICE_NOTIFICATION_NT3X","features":[52]},{"name":"MB_SETFOREGROUND","features":[52]},{"name":"MB_SYSTEMMODAL","features":[52]},{"name":"MB_TASKMODAL","features":[52]},{"name":"MB_TOPMOST","features":[52]},{"name":"MB_TYPEMASK","features":[52]},{"name":"MB_USERICON","features":[52]},{"name":"MB_YESNO","features":[52]},{"name":"MB_YESNOCANCEL","features":[52]},{"name":"MDICREATESTRUCTA","features":[3,52]},{"name":"MDICREATESTRUCTW","features":[3,52]},{"name":"MDINEXTMENU","features":[3,52]},{"name":"MDIS_ALLCHILDSTYLES","features":[52]},{"name":"MDITILE_HORIZONTAL","features":[52]},{"name":"MDITILE_SKIPDISABLED","features":[52]},{"name":"MDITILE_VERTICAL","features":[52]},{"name":"MDITILE_ZORDER","features":[52]},{"name":"MENUBARINFO","features":[3,52]},{"name":"MENUEX_TEMPLATE_HEADER","features":[52]},{"name":"MENUEX_TEMPLATE_ITEM","features":[52]},{"name":"MENUGETOBJECTINFO","features":[52]},{"name":"MENUGETOBJECTINFO_FLAGS","features":[52]},{"name":"MENUINFO","features":[14,52]},{"name":"MENUINFO_MASK","features":[52]},{"name":"MENUINFO_STYLE","features":[52]},{"name":"MENUITEMINFOA","features":[14,52]},{"name":"MENUITEMINFOW","features":[14,52]},{"name":"MENUITEMTEMPLATE","features":[52]},{"name":"MENUITEMTEMPLATEHEADER","features":[52]},{"name":"MENUTEMPLATEEX","features":[52]},{"name":"MENU_ITEM_FLAGS","features":[52]},{"name":"MENU_ITEM_MASK","features":[52]},{"name":"MENU_ITEM_STATE","features":[52]},{"name":"MENU_ITEM_TYPE","features":[52]},{"name":"MESSAGEBOX_RESULT","features":[52]},{"name":"MESSAGEBOX_STYLE","features":[52]},{"name":"MESSAGE_RESOURCE_BLOCK","features":[52]},{"name":"MESSAGE_RESOURCE_DATA","features":[52]},{"name":"MESSAGE_RESOURCE_ENTRY","features":[52]},{"name":"METRICS_USEDEFAULT","features":[52]},{"name":"MFS_CHECKED","features":[52]},{"name":"MFS_DEFAULT","features":[52]},{"name":"MFS_DISABLED","features":[52]},{"name":"MFS_ENABLED","features":[52]},{"name":"MFS_GRAYED","features":[52]},{"name":"MFS_HILITE","features":[52]},{"name":"MFS_UNCHECKED","features":[52]},{"name":"MFS_UNHILITE","features":[52]},{"name":"MFT_BITMAP","features":[52]},{"name":"MFT_MENUBARBREAK","features":[52]},{"name":"MFT_MENUBREAK","features":[52]},{"name":"MFT_OWNERDRAW","features":[52]},{"name":"MFT_RADIOCHECK","features":[52]},{"name":"MFT_RIGHTJUSTIFY","features":[52]},{"name":"MFT_RIGHTORDER","features":[52]},{"name":"MFT_SEPARATOR","features":[52]},{"name":"MFT_STRING","features":[52]},{"name":"MF_APPEND","features":[52]},{"name":"MF_BITMAP","features":[52]},{"name":"MF_BYCOMMAND","features":[52]},{"name":"MF_BYPOSITION","features":[52]},{"name":"MF_CHANGE","features":[52]},{"name":"MF_CHECKED","features":[52]},{"name":"MF_DEFAULT","features":[52]},{"name":"MF_DELETE","features":[52]},{"name":"MF_DISABLED","features":[52]},{"name":"MF_ENABLED","features":[52]},{"name":"MF_END","features":[52]},{"name":"MF_GRAYED","features":[52]},{"name":"MF_HELP","features":[52]},{"name":"MF_HILITE","features":[52]},{"name":"MF_INSERT","features":[52]},{"name":"MF_MENUBARBREAK","features":[52]},{"name":"MF_MENUBREAK","features":[52]},{"name":"MF_MOUSESELECT","features":[52]},{"name":"MF_OWNERDRAW","features":[52]},{"name":"MF_POPUP","features":[52]},{"name":"MF_REMOVE","features":[52]},{"name":"MF_RIGHTJUSTIFY","features":[52]},{"name":"MF_SEPARATOR","features":[52]},{"name":"MF_STRING","features":[52]},{"name":"MF_SYSMENU","features":[52]},{"name":"MF_UNCHECKED","features":[52]},{"name":"MF_UNHILITE","features":[52]},{"name":"MF_USECHECKBITMAPS","features":[52]},{"name":"MIIM_BITMAP","features":[52]},{"name":"MIIM_CHECKMARKS","features":[52]},{"name":"MIIM_DATA","features":[52]},{"name":"MIIM_FTYPE","features":[52]},{"name":"MIIM_ID","features":[52]},{"name":"MIIM_STATE","features":[52]},{"name":"MIIM_STRING","features":[52]},{"name":"MIIM_SUBMENU","features":[52]},{"name":"MIIM_TYPE","features":[52]},{"name":"MIM_APPLYTOSUBMENUS","features":[52]},{"name":"MIM_BACKGROUND","features":[52]},{"name":"MIM_HELPID","features":[52]},{"name":"MIM_MAXHEIGHT","features":[52]},{"name":"MIM_MENUDATA","features":[52]},{"name":"MIM_STYLE","features":[52]},{"name":"MINIMIZEDMETRICS","features":[52]},{"name":"MINIMIZEDMETRICS_ARRANGE","features":[52]},{"name":"MINIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[52]},{"name":"MINMAXINFO","features":[3,52]},{"name":"MIN_LOGICALDPIOVERRIDE","features":[52]},{"name":"MKF_AVAILABLE","features":[52]},{"name":"MKF_CONFIRMHOTKEY","features":[52]},{"name":"MKF_HOTKEYACTIVE","features":[52]},{"name":"MKF_HOTKEYSOUND","features":[52]},{"name":"MKF_INDICATOR","features":[52]},{"name":"MKF_LEFTBUTTONDOWN","features":[52]},{"name":"MKF_LEFTBUTTONSEL","features":[52]},{"name":"MKF_MODIFIERS","features":[52]},{"name":"MKF_MOUSEKEYSON","features":[52]},{"name":"MKF_MOUSEMODE","features":[52]},{"name":"MKF_REPLACENUMBERS","features":[52]},{"name":"MKF_RIGHTBUTTONDOWN","features":[52]},{"name":"MKF_RIGHTBUTTONSEL","features":[52]},{"name":"MNC_CLOSE","features":[52]},{"name":"MNC_EXECUTE","features":[52]},{"name":"MNC_IGNORE","features":[52]},{"name":"MNC_SELECT","features":[52]},{"name":"MND_CONTINUE","features":[52]},{"name":"MND_ENDMENU","features":[52]},{"name":"MNGOF_BOTTOMGAP","features":[52]},{"name":"MNGOF_TOPGAP","features":[52]},{"name":"MNGO_NOERROR","features":[52]},{"name":"MNGO_NOINTERFACE","features":[52]},{"name":"MNS_AUTODISMISS","features":[52]},{"name":"MNS_CHECKORBMP","features":[52]},{"name":"MNS_DRAGDROP","features":[52]},{"name":"MNS_MODELESS","features":[52]},{"name":"MNS_NOCHECK","features":[52]},{"name":"MNS_NOTIFYBYPOS","features":[52]},{"name":"MN_GETHMENU","features":[52]},{"name":"MONITORINFOF_PRIMARY","features":[52]},{"name":"MOUSEHOOKSTRUCT","features":[3,52]},{"name":"MOUSEHOOKSTRUCTEX","features":[3,52]},{"name":"MOUSEWHEEL_ROUTING_FOCUS","features":[52]},{"name":"MOUSEWHEEL_ROUTING_HYBRID","features":[52]},{"name":"MOUSEWHEEL_ROUTING_MOUSE_POS","features":[52]},{"name":"MSG","features":[3,52]},{"name":"MSGBOXCALLBACK","features":[3,111,52]},{"name":"MSGBOXPARAMSA","features":[3,111,52]},{"name":"MSGBOXPARAMSW","features":[3,111,52]},{"name":"MSGFLTINFO_ALLOWED_HIGHER","features":[52]},{"name":"MSGFLTINFO_ALREADYALLOWED_FORWND","features":[52]},{"name":"MSGFLTINFO_ALREADYDISALLOWED_FORWND","features":[52]},{"name":"MSGFLTINFO_NONE","features":[52]},{"name":"MSGFLTINFO_STATUS","features":[52]},{"name":"MSGFLT_ADD","features":[52]},{"name":"MSGFLT_ALLOW","features":[52]},{"name":"MSGFLT_DISALLOW","features":[52]},{"name":"MSGFLT_REMOVE","features":[52]},{"name":"MSGFLT_RESET","features":[52]},{"name":"MSGF_DIALOGBOX","features":[52]},{"name":"MSGF_MAX","features":[52]},{"name":"MSGF_MENU","features":[52]},{"name":"MSGF_MESSAGEBOX","features":[52]},{"name":"MSGF_NEXTWINDOW","features":[52]},{"name":"MSGF_SCROLLBAR","features":[52]},{"name":"MSGF_USER","features":[52]},{"name":"MSG_WAIT_FOR_MULTIPLE_OBJECTS_EX_FLAGS","features":[52]},{"name":"MSLLHOOKSTRUCT","features":[3,52]},{"name":"MWMO_ALERTABLE","features":[52]},{"name":"MWMO_INPUTAVAILABLE","features":[52]},{"name":"MWMO_NONE","features":[52]},{"name":"MWMO_WAITALL","features":[52]},{"name":"MapDialogRect","features":[3,52]},{"name":"MenuItemFromPoint","features":[3,52]},{"name":"MessageBoxA","features":[3,52]},{"name":"MessageBoxExA","features":[3,52]},{"name":"MessageBoxExW","features":[3,52]},{"name":"MessageBoxIndirectA","features":[3,111,52]},{"name":"MessageBoxIndirectW","features":[3,111,52]},{"name":"MessageBoxW","features":[3,52]},{"name":"ModifyMenuA","features":[3,52]},{"name":"ModifyMenuW","features":[3,52]},{"name":"MoveWindow","features":[3,52]},{"name":"MrmCreateConfig","features":[52]},{"name":"MrmCreateConfigInMemory","features":[52]},{"name":"MrmCreateResourceFile","features":[52]},{"name":"MrmCreateResourceFileInMemory","features":[52]},{"name":"MrmCreateResourceFileWithChecksum","features":[52]},{"name":"MrmCreateResourceIndexer","features":[52]},{"name":"MrmCreateResourceIndexerFromPreviousPriData","features":[52]},{"name":"MrmCreateResourceIndexerFromPreviousPriFile","features":[52]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaData","features":[52]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaFile","features":[52]},{"name":"MrmCreateResourceIndexerWithFlags","features":[52]},{"name":"MrmDestroyIndexerAndMessages","features":[52]},{"name":"MrmDumpPriDataInMemory","features":[52]},{"name":"MrmDumpPriFile","features":[52]},{"name":"MrmDumpPriFileInMemory","features":[52]},{"name":"MrmDumpType","features":[52]},{"name":"MrmDumpType_Basic","features":[52]},{"name":"MrmDumpType_Detailed","features":[52]},{"name":"MrmDumpType_Schema","features":[52]},{"name":"MrmFreeMemory","features":[52]},{"name":"MrmGetPriFileContentChecksum","features":[52]},{"name":"MrmIndexEmbeddedData","features":[52]},{"name":"MrmIndexFile","features":[52]},{"name":"MrmIndexFileAutoQualifiers","features":[52]},{"name":"MrmIndexResourceContainerAutoQualifiers","features":[52]},{"name":"MrmIndexString","features":[52]},{"name":"MrmIndexerFlags","features":[52]},{"name":"MrmIndexerFlagsAutoMerge","features":[52]},{"name":"MrmIndexerFlagsCreateContentChecksum","features":[52]},{"name":"MrmIndexerFlagsNone","features":[52]},{"name":"MrmPackagingMode","features":[52]},{"name":"MrmPackagingModeAutoSplit","features":[52]},{"name":"MrmPackagingModeResourcePack","features":[52]},{"name":"MrmPackagingModeStandaloneFile","features":[52]},{"name":"MrmPackagingOptions","features":[52]},{"name":"MrmPackagingOptionsNone","features":[52]},{"name":"MrmPackagingOptionsOmitSchemaFromResourcePacks","features":[52]},{"name":"MrmPackagingOptionsSplitLanguageVariants","features":[52]},{"name":"MrmPeekResourceIndexerMessages","features":[52]},{"name":"MrmPlatformVersion","features":[52]},{"name":"MrmPlatformVersion_Default","features":[52]},{"name":"MrmPlatformVersion_Windows10_0_0_0","features":[52]},{"name":"MrmPlatformVersion_Windows10_0_0_5","features":[52]},{"name":"MrmResourceIndexerHandle","features":[52]},{"name":"MrmResourceIndexerMessage","features":[52]},{"name":"MrmResourceIndexerMessageSeverity","features":[52]},{"name":"MrmResourceIndexerMessageSeverityError","features":[52]},{"name":"MrmResourceIndexerMessageSeverityInfo","features":[52]},{"name":"MrmResourceIndexerMessageSeverityVerbose","features":[52]},{"name":"MrmResourceIndexerMessageSeverityWarning","features":[52]},{"name":"MsgWaitForMultipleObjects","features":[3,52]},{"name":"MsgWaitForMultipleObjectsEx","features":[3,52]},{"name":"NAMEENUMPROCA","features":[3,52]},{"name":"NAMEENUMPROCW","features":[3,52]},{"name":"NCCALCSIZE_PARAMS","features":[3,52]},{"name":"NFR_ANSI","features":[52]},{"name":"NFR_UNICODE","features":[52]},{"name":"NF_QUERY","features":[52]},{"name":"NF_REQUERY","features":[52]},{"name":"NID_EXTERNAL_PEN","features":[52]},{"name":"NID_EXTERNAL_TOUCH","features":[52]},{"name":"NID_INTEGRATED_PEN","features":[52]},{"name":"NID_INTEGRATED_TOUCH","features":[52]},{"name":"NID_MULTI_INPUT","features":[52]},{"name":"NID_READY","features":[52]},{"name":"NONCLIENTMETRICSA","features":[14,52]},{"name":"NONCLIENTMETRICSW","features":[14,52]},{"name":"OBJECT_IDENTIFIER","features":[52]},{"name":"OBJID_ALERT","features":[52]},{"name":"OBJID_CARET","features":[52]},{"name":"OBJID_CLIENT","features":[52]},{"name":"OBJID_CURSOR","features":[52]},{"name":"OBJID_HSCROLL","features":[52]},{"name":"OBJID_MENU","features":[52]},{"name":"OBJID_NATIVEOM","features":[52]},{"name":"OBJID_QUERYCLASSNAMEIDX","features":[52]},{"name":"OBJID_SIZEGRIP","features":[52]},{"name":"OBJID_SOUND","features":[52]},{"name":"OBJID_SYSMENU","features":[52]},{"name":"OBJID_TITLEBAR","features":[52]},{"name":"OBJID_VSCROLL","features":[52]},{"name":"OBJID_WINDOW","features":[52]},{"name":"OBM_BTNCORNERS","features":[52]},{"name":"OBM_BTSIZE","features":[52]},{"name":"OBM_CHECK","features":[52]},{"name":"OBM_CHECKBOXES","features":[52]},{"name":"OBM_CLOSE","features":[52]},{"name":"OBM_COMBO","features":[52]},{"name":"OBM_DNARROW","features":[52]},{"name":"OBM_DNARROWD","features":[52]},{"name":"OBM_DNARROWI","features":[52]},{"name":"OBM_LFARROW","features":[52]},{"name":"OBM_LFARROWD","features":[52]},{"name":"OBM_LFARROWI","features":[52]},{"name":"OBM_MNARROW","features":[52]},{"name":"OBM_OLD_CLOSE","features":[52]},{"name":"OBM_OLD_DNARROW","features":[52]},{"name":"OBM_OLD_LFARROW","features":[52]},{"name":"OBM_OLD_REDUCE","features":[52]},{"name":"OBM_OLD_RESTORE","features":[52]},{"name":"OBM_OLD_RGARROW","features":[52]},{"name":"OBM_OLD_UPARROW","features":[52]},{"name":"OBM_OLD_ZOOM","features":[52]},{"name":"OBM_REDUCE","features":[52]},{"name":"OBM_REDUCED","features":[52]},{"name":"OBM_RESTORE","features":[52]},{"name":"OBM_RESTORED","features":[52]},{"name":"OBM_RGARROW","features":[52]},{"name":"OBM_RGARROWD","features":[52]},{"name":"OBM_RGARROWI","features":[52]},{"name":"OBM_SIZE","features":[52]},{"name":"OBM_UPARROW","features":[52]},{"name":"OBM_UPARROWD","features":[52]},{"name":"OBM_UPARROWI","features":[52]},{"name":"OBM_ZOOM","features":[52]},{"name":"OBM_ZOOMD","features":[52]},{"name":"OCR_APPSTARTING","features":[52]},{"name":"OCR_CROSS","features":[52]},{"name":"OCR_HAND","features":[52]},{"name":"OCR_HELP","features":[52]},{"name":"OCR_IBEAM","features":[52]},{"name":"OCR_ICOCUR","features":[52]},{"name":"OCR_ICON","features":[52]},{"name":"OCR_NO","features":[52]},{"name":"OCR_NORMAL","features":[52]},{"name":"OCR_SIZE","features":[52]},{"name":"OCR_SIZEALL","features":[52]},{"name":"OCR_SIZENESW","features":[52]},{"name":"OCR_SIZENS","features":[52]},{"name":"OCR_SIZENWSE","features":[52]},{"name":"OCR_SIZEWE","features":[52]},{"name":"OCR_UP","features":[52]},{"name":"OCR_WAIT","features":[52]},{"name":"OIC_BANG","features":[52]},{"name":"OIC_ERROR","features":[52]},{"name":"OIC_HAND","features":[52]},{"name":"OIC_INFORMATION","features":[52]},{"name":"OIC_NOTE","features":[52]},{"name":"OIC_QUES","features":[52]},{"name":"OIC_SAMPLE","features":[52]},{"name":"OIC_SHIELD","features":[52]},{"name":"OIC_WARNING","features":[52]},{"name":"OIC_WINLOGO","features":[52]},{"name":"ORD_LANGDRIVER","features":[52]},{"name":"OemToCharA","features":[3,52]},{"name":"OemToCharBuffA","features":[3,52]},{"name":"OemToCharBuffW","features":[3,52]},{"name":"OemToCharW","features":[3,52]},{"name":"OpenIcon","features":[3,52]},{"name":"PA_ACTIVATE","features":[52]},{"name":"PA_NOACTIVATE","features":[52]},{"name":"PBTF_APMRESUMEFROMFAILURE","features":[52]},{"name":"PBT_APMBATTERYLOW","features":[52]},{"name":"PBT_APMOEMEVENT","features":[52]},{"name":"PBT_APMPOWERSTATUSCHANGE","features":[52]},{"name":"PBT_APMQUERYSTANDBY","features":[52]},{"name":"PBT_APMQUERYSTANDBYFAILED","features":[52]},{"name":"PBT_APMQUERYSUSPEND","features":[52]},{"name":"PBT_APMQUERYSUSPENDFAILED","features":[52]},{"name":"PBT_APMRESUMEAUTOMATIC","features":[52]},{"name":"PBT_APMRESUMECRITICAL","features":[52]},{"name":"PBT_APMRESUMESTANDBY","features":[52]},{"name":"PBT_APMRESUMESUSPEND","features":[52]},{"name":"PBT_APMSTANDBY","features":[52]},{"name":"PBT_APMSUSPEND","features":[52]},{"name":"PBT_POWERSETTINGCHANGE","features":[52]},{"name":"PDC_ARRIVAL","features":[52]},{"name":"PDC_MAPPING_CHANGE","features":[52]},{"name":"PDC_MODE_ASPECTRATIOPRESERVED","features":[52]},{"name":"PDC_MODE_CENTERED","features":[52]},{"name":"PDC_MODE_DEFAULT","features":[52]},{"name":"PDC_ORIENTATION_0","features":[52]},{"name":"PDC_ORIENTATION_180","features":[52]},{"name":"PDC_ORIENTATION_270","features":[52]},{"name":"PDC_ORIENTATION_90","features":[52]},{"name":"PDC_ORIGIN","features":[52]},{"name":"PDC_REMOVAL","features":[52]},{"name":"PDC_RESOLUTION","features":[52]},{"name":"PEEK_MESSAGE_REMOVE_TYPE","features":[52]},{"name":"PENARBITRATIONTYPE_FIS","features":[52]},{"name":"PENARBITRATIONTYPE_MAX","features":[52]},{"name":"PENARBITRATIONTYPE_NONE","features":[52]},{"name":"PENARBITRATIONTYPE_SPT","features":[52]},{"name":"PENARBITRATIONTYPE_WIN8","features":[52]},{"name":"PENVISUALIZATION_CURSOR","features":[52]},{"name":"PENVISUALIZATION_DOUBLETAP","features":[52]},{"name":"PENVISUALIZATION_OFF","features":[52]},{"name":"PENVISUALIZATION_ON","features":[52]},{"name":"PENVISUALIZATION_TAP","features":[52]},{"name":"PEN_FLAG_BARREL","features":[52]},{"name":"PEN_FLAG_ERASER","features":[52]},{"name":"PEN_FLAG_INVERTED","features":[52]},{"name":"PEN_FLAG_NONE","features":[52]},{"name":"PEN_MASK_NONE","features":[52]},{"name":"PEN_MASK_PRESSURE","features":[52]},{"name":"PEN_MASK_ROTATION","features":[52]},{"name":"PEN_MASK_TILT_X","features":[52]},{"name":"PEN_MASK_TILT_Y","features":[52]},{"name":"PMB_ACTIVE","features":[52]},{"name":"PM_NOREMOVE","features":[52]},{"name":"PM_NOYIELD","features":[52]},{"name":"PM_QS_INPUT","features":[52]},{"name":"PM_QS_PAINT","features":[52]},{"name":"PM_QS_POSTMESSAGE","features":[52]},{"name":"PM_QS_SENDMESSAGE","features":[52]},{"name":"PM_REMOVE","features":[52]},{"name":"POINTER_DEVICE_PRODUCT_STRING_MAX","features":[52]},{"name":"POINTER_INPUT_TYPE","features":[52]},{"name":"POINTER_MESSAGE_FLAG_CANCELED","features":[52]},{"name":"POINTER_MESSAGE_FLAG_CONFIDENCE","features":[52]},{"name":"POINTER_MESSAGE_FLAG_FIFTHBUTTON","features":[52]},{"name":"POINTER_MESSAGE_FLAG_FIRSTBUTTON","features":[52]},{"name":"POINTER_MESSAGE_FLAG_FOURTHBUTTON","features":[52]},{"name":"POINTER_MESSAGE_FLAG_INCONTACT","features":[52]},{"name":"POINTER_MESSAGE_FLAG_INRANGE","features":[52]},{"name":"POINTER_MESSAGE_FLAG_NEW","features":[52]},{"name":"POINTER_MESSAGE_FLAG_PRIMARY","features":[52]},{"name":"POINTER_MESSAGE_FLAG_SECONDBUTTON","features":[52]},{"name":"POINTER_MESSAGE_FLAG_THIRDBUTTON","features":[52]},{"name":"POINTER_MOD_CTRL","features":[52]},{"name":"POINTER_MOD_SHIFT","features":[52]},{"name":"PREGISTERCLASSNAMEW","features":[3,52]},{"name":"PRF_CHECKVISIBLE","features":[52]},{"name":"PRF_CHILDREN","features":[52]},{"name":"PRF_CLIENT","features":[52]},{"name":"PRF_ERASEBKGND","features":[52]},{"name":"PRF_NONCLIENT","features":[52]},{"name":"PRF_OWNED","features":[52]},{"name":"PROPENUMPROCA","features":[3,52]},{"name":"PROPENUMPROCEXA","features":[3,52]},{"name":"PROPENUMPROCEXW","features":[3,52]},{"name":"PROPENUMPROCW","features":[3,52]},{"name":"PT_MOUSE","features":[52]},{"name":"PT_PEN","features":[52]},{"name":"PT_POINTER","features":[52]},{"name":"PT_TOUCH","features":[52]},{"name":"PT_TOUCHPAD","features":[52]},{"name":"PWR_CRITICALRESUME","features":[52]},{"name":"PWR_FAIL","features":[52]},{"name":"PWR_OK","features":[52]},{"name":"PWR_SUSPENDREQUEST","features":[52]},{"name":"PWR_SUSPENDRESUME","features":[52]},{"name":"PW_RENDERFULLCONTENT","features":[52]},{"name":"PeekMessageA","features":[3,52]},{"name":"PeekMessageW","features":[3,52]},{"name":"PhysicalToLogicalPoint","features":[3,52]},{"name":"PostMessageA","features":[3,52]},{"name":"PostMessageW","features":[3,52]},{"name":"PostQuitMessage","features":[52]},{"name":"PostThreadMessageA","features":[3,52]},{"name":"PostThreadMessageW","features":[3,52]},{"name":"PrivateExtractIconsA","features":[52]},{"name":"PrivateExtractIconsW","features":[52]},{"name":"QS_ALLEVENTS","features":[52]},{"name":"QS_ALLINPUT","features":[52]},{"name":"QS_ALLPOSTMESSAGE","features":[52]},{"name":"QS_HOTKEY","features":[52]},{"name":"QS_INPUT","features":[52]},{"name":"QS_KEY","features":[52]},{"name":"QS_MOUSE","features":[52]},{"name":"QS_MOUSEBUTTON","features":[52]},{"name":"QS_MOUSEMOVE","features":[52]},{"name":"QS_PAINT","features":[52]},{"name":"QS_POINTER","features":[52]},{"name":"QS_POSTMESSAGE","features":[52]},{"name":"QS_RAWINPUT","features":[52]},{"name":"QS_SENDMESSAGE","features":[52]},{"name":"QS_TIMER","features":[52]},{"name":"QS_TOUCH","features":[52]},{"name":"QUEUE_STATUS_FLAGS","features":[52]},{"name":"REGISTER_NOTIFICATION_FLAGS","features":[52]},{"name":"RES_CURSOR","features":[52]},{"name":"RES_ICON","features":[52]},{"name":"RIDEV_EXMODEMASK","features":[52]},{"name":"RIM_INPUT","features":[52]},{"name":"RIM_INPUTSINK","features":[52]},{"name":"RIM_TYPEMAX","features":[52]},{"name":"RI_KEY_BREAK","features":[52]},{"name":"RI_KEY_E0","features":[52]},{"name":"RI_KEY_E1","features":[52]},{"name":"RI_KEY_MAKE","features":[52]},{"name":"RI_KEY_TERMSRV_SET_LED","features":[52]},{"name":"RI_KEY_TERMSRV_SHADOW","features":[52]},{"name":"RI_MOUSE_BUTTON_1_DOWN","features":[52]},{"name":"RI_MOUSE_BUTTON_1_UP","features":[52]},{"name":"RI_MOUSE_BUTTON_2_DOWN","features":[52]},{"name":"RI_MOUSE_BUTTON_2_UP","features":[52]},{"name":"RI_MOUSE_BUTTON_3_DOWN","features":[52]},{"name":"RI_MOUSE_BUTTON_3_UP","features":[52]},{"name":"RI_MOUSE_BUTTON_4_DOWN","features":[52]},{"name":"RI_MOUSE_BUTTON_4_UP","features":[52]},{"name":"RI_MOUSE_BUTTON_5_DOWN","features":[52]},{"name":"RI_MOUSE_BUTTON_5_UP","features":[52]},{"name":"RI_MOUSE_HWHEEL","features":[52]},{"name":"RI_MOUSE_LEFT_BUTTON_DOWN","features":[52]},{"name":"RI_MOUSE_LEFT_BUTTON_UP","features":[52]},{"name":"RI_MOUSE_MIDDLE_BUTTON_DOWN","features":[52]},{"name":"RI_MOUSE_MIDDLE_BUTTON_UP","features":[52]},{"name":"RI_MOUSE_RIGHT_BUTTON_DOWN","features":[52]},{"name":"RI_MOUSE_RIGHT_BUTTON_UP","features":[52]},{"name":"RI_MOUSE_WHEEL","features":[52]},{"name":"RT_ACCELERATOR","features":[52]},{"name":"RT_ANICURSOR","features":[52]},{"name":"RT_ANIICON","features":[52]},{"name":"RT_BITMAP","features":[52]},{"name":"RT_CURSOR","features":[52]},{"name":"RT_DIALOG","features":[52]},{"name":"RT_DLGINCLUDE","features":[52]},{"name":"RT_FONT","features":[52]},{"name":"RT_FONTDIR","features":[52]},{"name":"RT_GROUP_CURSOR","features":[52]},{"name":"RT_GROUP_ICON","features":[52]},{"name":"RT_HTML","features":[52]},{"name":"RT_ICON","features":[52]},{"name":"RT_MANIFEST","features":[52]},{"name":"RT_MENU","features":[52]},{"name":"RT_MESSAGETABLE","features":[52]},{"name":"RT_PLUGPLAY","features":[52]},{"name":"RT_VERSION","features":[52]},{"name":"RT_VXD","features":[52]},{"name":"RealChildWindowFromPoint","features":[3,52]},{"name":"RealGetWindowClassA","features":[3,52]},{"name":"RealGetWindowClassW","features":[3,52]},{"name":"RegisterClassA","features":[3,14,52]},{"name":"RegisterClassExA","features":[3,14,52]},{"name":"RegisterClassExW","features":[3,14,52]},{"name":"RegisterClassW","features":[3,14,52]},{"name":"RegisterDeviceNotificationA","features":[3,52]},{"name":"RegisterDeviceNotificationW","features":[3,52]},{"name":"RegisterForTooltipDismissNotification","features":[3,52]},{"name":"RegisterShellHookWindow","features":[3,52]},{"name":"RegisterWindowMessageA","features":[52]},{"name":"RegisterWindowMessageW","features":[52]},{"name":"RemoveMenu","features":[3,52]},{"name":"RemovePropA","features":[3,52]},{"name":"RemovePropW","features":[3,52]},{"name":"ReplyMessage","features":[3,52]},{"name":"SBM_ENABLE_ARROWS","features":[52]},{"name":"SBM_GETPOS","features":[52]},{"name":"SBM_GETRANGE","features":[52]},{"name":"SBM_GETSCROLLBARINFO","features":[52]},{"name":"SBM_GETSCROLLINFO","features":[52]},{"name":"SBM_SETPOS","features":[52]},{"name":"SBM_SETRANGE","features":[52]},{"name":"SBM_SETRANGEREDRAW","features":[52]},{"name":"SBM_SETSCROLLINFO","features":[52]},{"name":"SBS_BOTTOMALIGN","features":[52]},{"name":"SBS_HORZ","features":[52]},{"name":"SBS_LEFTALIGN","features":[52]},{"name":"SBS_RIGHTALIGN","features":[52]},{"name":"SBS_SIZEBOX","features":[52]},{"name":"SBS_SIZEBOXBOTTOMRIGHTALIGN","features":[52]},{"name":"SBS_SIZEBOXTOPLEFTALIGN","features":[52]},{"name":"SBS_SIZEGRIP","features":[52]},{"name":"SBS_TOPALIGN","features":[52]},{"name":"SBS_VERT","features":[52]},{"name":"SB_BOTH","features":[52]},{"name":"SB_BOTTOM","features":[52]},{"name":"SB_CTL","features":[52]},{"name":"SB_ENDSCROLL","features":[52]},{"name":"SB_HORZ","features":[52]},{"name":"SB_LEFT","features":[52]},{"name":"SB_LINEDOWN","features":[52]},{"name":"SB_LINELEFT","features":[52]},{"name":"SB_LINERIGHT","features":[52]},{"name":"SB_LINEUP","features":[52]},{"name":"SB_PAGEDOWN","features":[52]},{"name":"SB_PAGELEFT","features":[52]},{"name":"SB_PAGERIGHT","features":[52]},{"name":"SB_PAGEUP","features":[52]},{"name":"SB_RIGHT","features":[52]},{"name":"SB_THUMBPOSITION","features":[52]},{"name":"SB_THUMBTRACK","features":[52]},{"name":"SB_TOP","features":[52]},{"name":"SB_VERT","features":[52]},{"name":"SCF_ISSECURE","features":[52]},{"name":"SCROLLBARINFO","features":[3,52]},{"name":"SCROLLBAR_COMMAND","features":[52]},{"name":"SCROLLBAR_CONSTANTS","features":[52]},{"name":"SCROLLINFO","features":[52]},{"name":"SCROLLINFO_MASK","features":[52]},{"name":"SCROLL_WINDOW_FLAGS","features":[52]},{"name":"SC_ARRANGE","features":[52]},{"name":"SC_CLOSE","features":[52]},{"name":"SC_CONTEXTHELP","features":[52]},{"name":"SC_DEFAULT","features":[52]},{"name":"SC_HOTKEY","features":[52]},{"name":"SC_HSCROLL","features":[52]},{"name":"SC_ICON","features":[52]},{"name":"SC_KEYMENU","features":[52]},{"name":"SC_MAXIMIZE","features":[52]},{"name":"SC_MINIMIZE","features":[52]},{"name":"SC_MONITORPOWER","features":[52]},{"name":"SC_MOUSEMENU","features":[52]},{"name":"SC_MOVE","features":[52]},{"name":"SC_NEXTWINDOW","features":[52]},{"name":"SC_PREVWINDOW","features":[52]},{"name":"SC_RESTORE","features":[52]},{"name":"SC_SEPARATOR","features":[52]},{"name":"SC_SIZE","features":[52]},{"name":"SC_TASKLIST","features":[52]},{"name":"SC_VSCROLL","features":[52]},{"name":"SC_ZOOM","features":[52]},{"name":"SENDASYNCPROC","features":[3,52]},{"name":"SEND_MESSAGE_TIMEOUT_FLAGS","features":[52]},{"name":"SET_WINDOW_POS_FLAGS","features":[52]},{"name":"SHELLHOOKINFO","features":[3,52]},{"name":"SHOW_FULLSCREEN","features":[52]},{"name":"SHOW_ICONWINDOW","features":[52]},{"name":"SHOW_OPENNOACTIVATE","features":[52]},{"name":"SHOW_OPENWINDOW","features":[52]},{"name":"SHOW_WINDOW_CMD","features":[52]},{"name":"SHOW_WINDOW_STATUS","features":[52]},{"name":"SIF_ALL","features":[52]},{"name":"SIF_DISABLENOSCROLL","features":[52]},{"name":"SIF_PAGE","features":[52]},{"name":"SIF_POS","features":[52]},{"name":"SIF_RANGE","features":[52]},{"name":"SIF_TRACKPOS","features":[52]},{"name":"SIZEFULLSCREEN","features":[52]},{"name":"SIZEICONIC","features":[52]},{"name":"SIZENORMAL","features":[52]},{"name":"SIZEZOOMHIDE","features":[52]},{"name":"SIZEZOOMSHOW","features":[52]},{"name":"SIZE_MAXHIDE","features":[52]},{"name":"SIZE_MAXIMIZED","features":[52]},{"name":"SIZE_MAXSHOW","features":[52]},{"name":"SIZE_MINIMIZED","features":[52]},{"name":"SIZE_RESTORED","features":[52]},{"name":"SMTO_ABORTIFHUNG","features":[52]},{"name":"SMTO_BLOCK","features":[52]},{"name":"SMTO_ERRORONEXIT","features":[52]},{"name":"SMTO_NORMAL","features":[52]},{"name":"SMTO_NOTIMEOUTIFNOTHUNG","features":[52]},{"name":"SM_ARRANGE","features":[52]},{"name":"SM_CARETBLINKINGENABLED","features":[52]},{"name":"SM_CLEANBOOT","features":[52]},{"name":"SM_CMETRICS","features":[52]},{"name":"SM_CMONITORS","features":[52]},{"name":"SM_CMOUSEBUTTONS","features":[52]},{"name":"SM_CONVERTIBLESLATEMODE","features":[52]},{"name":"SM_CXBORDER","features":[52]},{"name":"SM_CXCURSOR","features":[52]},{"name":"SM_CXDLGFRAME","features":[52]},{"name":"SM_CXDOUBLECLK","features":[52]},{"name":"SM_CXDRAG","features":[52]},{"name":"SM_CXEDGE","features":[52]},{"name":"SM_CXFIXEDFRAME","features":[52]},{"name":"SM_CXFOCUSBORDER","features":[52]},{"name":"SM_CXFRAME","features":[52]},{"name":"SM_CXFULLSCREEN","features":[52]},{"name":"SM_CXHSCROLL","features":[52]},{"name":"SM_CXHTHUMB","features":[52]},{"name":"SM_CXICON","features":[52]},{"name":"SM_CXICONSPACING","features":[52]},{"name":"SM_CXMAXIMIZED","features":[52]},{"name":"SM_CXMAXTRACK","features":[52]},{"name":"SM_CXMENUCHECK","features":[52]},{"name":"SM_CXMENUSIZE","features":[52]},{"name":"SM_CXMIN","features":[52]},{"name":"SM_CXMINIMIZED","features":[52]},{"name":"SM_CXMINSPACING","features":[52]},{"name":"SM_CXMINTRACK","features":[52]},{"name":"SM_CXPADDEDBORDER","features":[52]},{"name":"SM_CXSCREEN","features":[52]},{"name":"SM_CXSIZE","features":[52]},{"name":"SM_CXSIZEFRAME","features":[52]},{"name":"SM_CXSMICON","features":[52]},{"name":"SM_CXSMSIZE","features":[52]},{"name":"SM_CXVIRTUALSCREEN","features":[52]},{"name":"SM_CXVSCROLL","features":[52]},{"name":"SM_CYBORDER","features":[52]},{"name":"SM_CYCAPTION","features":[52]},{"name":"SM_CYCURSOR","features":[52]},{"name":"SM_CYDLGFRAME","features":[52]},{"name":"SM_CYDOUBLECLK","features":[52]},{"name":"SM_CYDRAG","features":[52]},{"name":"SM_CYEDGE","features":[52]},{"name":"SM_CYFIXEDFRAME","features":[52]},{"name":"SM_CYFOCUSBORDER","features":[52]},{"name":"SM_CYFRAME","features":[52]},{"name":"SM_CYFULLSCREEN","features":[52]},{"name":"SM_CYHSCROLL","features":[52]},{"name":"SM_CYICON","features":[52]},{"name":"SM_CYICONSPACING","features":[52]},{"name":"SM_CYKANJIWINDOW","features":[52]},{"name":"SM_CYMAXIMIZED","features":[52]},{"name":"SM_CYMAXTRACK","features":[52]},{"name":"SM_CYMENU","features":[52]},{"name":"SM_CYMENUCHECK","features":[52]},{"name":"SM_CYMENUSIZE","features":[52]},{"name":"SM_CYMIN","features":[52]},{"name":"SM_CYMINIMIZED","features":[52]},{"name":"SM_CYMINSPACING","features":[52]},{"name":"SM_CYMINTRACK","features":[52]},{"name":"SM_CYSCREEN","features":[52]},{"name":"SM_CYSIZE","features":[52]},{"name":"SM_CYSIZEFRAME","features":[52]},{"name":"SM_CYSMCAPTION","features":[52]},{"name":"SM_CYSMICON","features":[52]},{"name":"SM_CYSMSIZE","features":[52]},{"name":"SM_CYVIRTUALSCREEN","features":[52]},{"name":"SM_CYVSCROLL","features":[52]},{"name":"SM_CYVTHUMB","features":[52]},{"name":"SM_DBCSENABLED","features":[52]},{"name":"SM_DEBUG","features":[52]},{"name":"SM_DIGITIZER","features":[52]},{"name":"SM_IMMENABLED","features":[52]},{"name":"SM_MAXIMUMTOUCHES","features":[52]},{"name":"SM_MEDIACENTER","features":[52]},{"name":"SM_MENUDROPALIGNMENT","features":[52]},{"name":"SM_MIDEASTENABLED","features":[52]},{"name":"SM_MOUSEHORIZONTALWHEELPRESENT","features":[52]},{"name":"SM_MOUSEPRESENT","features":[52]},{"name":"SM_MOUSEWHEELPRESENT","features":[52]},{"name":"SM_NETWORK","features":[52]},{"name":"SM_PENWINDOWS","features":[52]},{"name":"SM_REMOTECONTROL","features":[52]},{"name":"SM_REMOTESESSION","features":[52]},{"name":"SM_RESERVED1","features":[52]},{"name":"SM_RESERVED2","features":[52]},{"name":"SM_RESERVED3","features":[52]},{"name":"SM_RESERVED4","features":[52]},{"name":"SM_SAMEDISPLAYFORMAT","features":[52]},{"name":"SM_SECURE","features":[52]},{"name":"SM_SERVERR2","features":[52]},{"name":"SM_SHOWSOUNDS","features":[52]},{"name":"SM_SHUTTINGDOWN","features":[52]},{"name":"SM_SLOWMACHINE","features":[52]},{"name":"SM_STARTER","features":[52]},{"name":"SM_SWAPBUTTON","features":[52]},{"name":"SM_SYSTEMDOCKED","features":[52]},{"name":"SM_TABLETPC","features":[52]},{"name":"SM_XVIRTUALSCREEN","features":[52]},{"name":"SM_YVIRTUALSCREEN","features":[52]},{"name":"SOUND_SYSTEM_APPEND","features":[52]},{"name":"SOUND_SYSTEM_APPSTART","features":[52]},{"name":"SOUND_SYSTEM_BEEP","features":[52]},{"name":"SOUND_SYSTEM_ERROR","features":[52]},{"name":"SOUND_SYSTEM_FAULT","features":[52]},{"name":"SOUND_SYSTEM_INFORMATION","features":[52]},{"name":"SOUND_SYSTEM_MAXIMIZE","features":[52]},{"name":"SOUND_SYSTEM_MENUCOMMAND","features":[52]},{"name":"SOUND_SYSTEM_MENUPOPUP","features":[52]},{"name":"SOUND_SYSTEM_MINIMIZE","features":[52]},{"name":"SOUND_SYSTEM_QUESTION","features":[52]},{"name":"SOUND_SYSTEM_RESTOREDOWN","features":[52]},{"name":"SOUND_SYSTEM_RESTOREUP","features":[52]},{"name":"SOUND_SYSTEM_SHUTDOWN","features":[52]},{"name":"SOUND_SYSTEM_STARTUP","features":[52]},{"name":"SOUND_SYSTEM_WARNING","features":[52]},{"name":"SPIF_SENDCHANGE","features":[52]},{"name":"SPIF_SENDWININICHANGE","features":[52]},{"name":"SPIF_UPDATEINIFILE","features":[52]},{"name":"SPI_GETACCESSTIMEOUT","features":[52]},{"name":"SPI_GETACTIVEWINDOWTRACKING","features":[52]},{"name":"SPI_GETACTIVEWNDTRKTIMEOUT","features":[52]},{"name":"SPI_GETACTIVEWNDTRKZORDER","features":[52]},{"name":"SPI_GETANIMATION","features":[52]},{"name":"SPI_GETAUDIODESCRIPTION","features":[52]},{"name":"SPI_GETBEEP","features":[52]},{"name":"SPI_GETBLOCKSENDINPUTRESETS","features":[52]},{"name":"SPI_GETBORDER","features":[52]},{"name":"SPI_GETCARETBROWSING","features":[52]},{"name":"SPI_GETCARETTIMEOUT","features":[52]},{"name":"SPI_GETCARETWIDTH","features":[52]},{"name":"SPI_GETCLEARTYPE","features":[52]},{"name":"SPI_GETCLIENTAREAANIMATION","features":[52]},{"name":"SPI_GETCOMBOBOXANIMATION","features":[52]},{"name":"SPI_GETCONTACTVISUALIZATION","features":[52]},{"name":"SPI_GETCURSORSHADOW","features":[52]},{"name":"SPI_GETDEFAULTINPUTLANG","features":[52]},{"name":"SPI_GETDESKWALLPAPER","features":[52]},{"name":"SPI_GETDISABLEOVERLAPPEDCONTENT","features":[52]},{"name":"SPI_GETDOCKMOVING","features":[52]},{"name":"SPI_GETDRAGFROMMAXIMIZE","features":[52]},{"name":"SPI_GETDRAGFULLWINDOWS","features":[52]},{"name":"SPI_GETDROPSHADOW","features":[52]},{"name":"SPI_GETFASTTASKSWITCH","features":[52]},{"name":"SPI_GETFILTERKEYS","features":[52]},{"name":"SPI_GETFLATMENU","features":[52]},{"name":"SPI_GETFOCUSBORDERHEIGHT","features":[52]},{"name":"SPI_GETFOCUSBORDERWIDTH","features":[52]},{"name":"SPI_GETFONTSMOOTHING","features":[52]},{"name":"SPI_GETFONTSMOOTHINGCONTRAST","features":[52]},{"name":"SPI_GETFONTSMOOTHINGORIENTATION","features":[52]},{"name":"SPI_GETFONTSMOOTHINGTYPE","features":[52]},{"name":"SPI_GETFOREGROUNDFLASHCOUNT","features":[52]},{"name":"SPI_GETFOREGROUNDLOCKTIMEOUT","features":[52]},{"name":"SPI_GETGESTUREVISUALIZATION","features":[52]},{"name":"SPI_GETGRADIENTCAPTIONS","features":[52]},{"name":"SPI_GETGRIDGRANULARITY","features":[52]},{"name":"SPI_GETHANDEDNESS","features":[52]},{"name":"SPI_GETHIGHCONTRAST","features":[52]},{"name":"SPI_GETHOTTRACKING","features":[52]},{"name":"SPI_GETHUNGAPPTIMEOUT","features":[52]},{"name":"SPI_GETICONMETRICS","features":[52]},{"name":"SPI_GETICONTITLELOGFONT","features":[52]},{"name":"SPI_GETICONTITLEWRAP","features":[52]},{"name":"SPI_GETKEYBOARDCUES","features":[52]},{"name":"SPI_GETKEYBOARDDELAY","features":[52]},{"name":"SPI_GETKEYBOARDPREF","features":[52]},{"name":"SPI_GETKEYBOARDSPEED","features":[52]},{"name":"SPI_GETLISTBOXSMOOTHSCROLLING","features":[52]},{"name":"SPI_GETLOGICALDPIOVERRIDE","features":[52]},{"name":"SPI_GETLOWPOWERACTIVE","features":[52]},{"name":"SPI_GETLOWPOWERTIMEOUT","features":[52]},{"name":"SPI_GETMENUANIMATION","features":[52]},{"name":"SPI_GETMENUDROPALIGNMENT","features":[52]},{"name":"SPI_GETMENUFADE","features":[52]},{"name":"SPI_GETMENURECT","features":[52]},{"name":"SPI_GETMENUSHOWDELAY","features":[52]},{"name":"SPI_GETMENUUNDERLINES","features":[52]},{"name":"SPI_GETMESSAGEDURATION","features":[52]},{"name":"SPI_GETMINIMIZEDMETRICS","features":[52]},{"name":"SPI_GETMINIMUMHITRADIUS","features":[52]},{"name":"SPI_GETMOUSE","features":[52]},{"name":"SPI_GETMOUSECLICKLOCK","features":[52]},{"name":"SPI_GETMOUSECLICKLOCKTIME","features":[52]},{"name":"SPI_GETMOUSEDOCKTHRESHOLD","features":[52]},{"name":"SPI_GETMOUSEDRAGOUTTHRESHOLD","features":[52]},{"name":"SPI_GETMOUSEHOVERHEIGHT","features":[52]},{"name":"SPI_GETMOUSEHOVERTIME","features":[52]},{"name":"SPI_GETMOUSEHOVERWIDTH","features":[52]},{"name":"SPI_GETMOUSEKEYS","features":[52]},{"name":"SPI_GETMOUSESIDEMOVETHRESHOLD","features":[52]},{"name":"SPI_GETMOUSESONAR","features":[52]},{"name":"SPI_GETMOUSESPEED","features":[52]},{"name":"SPI_GETMOUSETRAILS","features":[52]},{"name":"SPI_GETMOUSEVANISH","features":[52]},{"name":"SPI_GETMOUSEWHEELROUTING","features":[52]},{"name":"SPI_GETNONCLIENTMETRICS","features":[52]},{"name":"SPI_GETPENARBITRATIONTYPE","features":[52]},{"name":"SPI_GETPENDOCKTHRESHOLD","features":[52]},{"name":"SPI_GETPENDRAGOUTTHRESHOLD","features":[52]},{"name":"SPI_GETPENSIDEMOVETHRESHOLD","features":[52]},{"name":"SPI_GETPENVISUALIZATION","features":[52]},{"name":"SPI_GETPOWEROFFACTIVE","features":[52]},{"name":"SPI_GETPOWEROFFTIMEOUT","features":[52]},{"name":"SPI_GETSCREENREADER","features":[52]},{"name":"SPI_GETSCREENSAVEACTIVE","features":[52]},{"name":"SPI_GETSCREENSAVERRUNNING","features":[52]},{"name":"SPI_GETSCREENSAVESECURE","features":[52]},{"name":"SPI_GETSCREENSAVETIMEOUT","features":[52]},{"name":"SPI_GETSELECTIONFADE","features":[52]},{"name":"SPI_GETSERIALKEYS","features":[52]},{"name":"SPI_GETSHOWIMEUI","features":[52]},{"name":"SPI_GETSHOWSOUNDS","features":[52]},{"name":"SPI_GETSNAPSIZING","features":[52]},{"name":"SPI_GETSNAPTODEFBUTTON","features":[52]},{"name":"SPI_GETSOUNDSENTRY","features":[52]},{"name":"SPI_GETSPEECHRECOGNITION","features":[52]},{"name":"SPI_GETSTICKYKEYS","features":[52]},{"name":"SPI_GETSYSTEMLANGUAGEBAR","features":[52]},{"name":"SPI_GETTHREADLOCALINPUTSETTINGS","features":[52]},{"name":"SPI_GETTOGGLEKEYS","features":[52]},{"name":"SPI_GETTOOLTIPANIMATION","features":[52]},{"name":"SPI_GETTOOLTIPFADE","features":[52]},{"name":"SPI_GETTOUCHPREDICTIONPARAMETERS","features":[52]},{"name":"SPI_GETUIEFFECTS","features":[52]},{"name":"SPI_GETWAITTOKILLSERVICETIMEOUT","features":[52]},{"name":"SPI_GETWAITTOKILLTIMEOUT","features":[52]},{"name":"SPI_GETWHEELSCROLLCHARS","features":[52]},{"name":"SPI_GETWHEELSCROLLLINES","features":[52]},{"name":"SPI_GETWINARRANGING","features":[52]},{"name":"SPI_GETWINDOWSEXTENSION","features":[52]},{"name":"SPI_GETWORKAREA","features":[52]},{"name":"SPI_ICONHORIZONTALSPACING","features":[52]},{"name":"SPI_ICONVERTICALSPACING","features":[52]},{"name":"SPI_LANGDRIVER","features":[52]},{"name":"SPI_SCREENSAVERRUNNING","features":[52]},{"name":"SPI_SETACCESSTIMEOUT","features":[52]},{"name":"SPI_SETACTIVEWINDOWTRACKING","features":[52]},{"name":"SPI_SETACTIVEWNDTRKTIMEOUT","features":[52]},{"name":"SPI_SETACTIVEWNDTRKZORDER","features":[52]},{"name":"SPI_SETANIMATION","features":[52]},{"name":"SPI_SETAUDIODESCRIPTION","features":[52]},{"name":"SPI_SETBEEP","features":[52]},{"name":"SPI_SETBLOCKSENDINPUTRESETS","features":[52]},{"name":"SPI_SETBORDER","features":[52]},{"name":"SPI_SETCARETBROWSING","features":[52]},{"name":"SPI_SETCARETTIMEOUT","features":[52]},{"name":"SPI_SETCARETWIDTH","features":[52]},{"name":"SPI_SETCLEARTYPE","features":[52]},{"name":"SPI_SETCLIENTAREAANIMATION","features":[52]},{"name":"SPI_SETCOMBOBOXANIMATION","features":[52]},{"name":"SPI_SETCONTACTVISUALIZATION","features":[52]},{"name":"SPI_SETCURSORS","features":[52]},{"name":"SPI_SETCURSORSHADOW","features":[52]},{"name":"SPI_SETDEFAULTINPUTLANG","features":[52]},{"name":"SPI_SETDESKPATTERN","features":[52]},{"name":"SPI_SETDESKWALLPAPER","features":[52]},{"name":"SPI_SETDISABLEOVERLAPPEDCONTENT","features":[52]},{"name":"SPI_SETDOCKMOVING","features":[52]},{"name":"SPI_SETDOUBLECLICKTIME","features":[52]},{"name":"SPI_SETDOUBLECLKHEIGHT","features":[52]},{"name":"SPI_SETDOUBLECLKWIDTH","features":[52]},{"name":"SPI_SETDRAGFROMMAXIMIZE","features":[52]},{"name":"SPI_SETDRAGFULLWINDOWS","features":[52]},{"name":"SPI_SETDRAGHEIGHT","features":[52]},{"name":"SPI_SETDRAGWIDTH","features":[52]},{"name":"SPI_SETDROPSHADOW","features":[52]},{"name":"SPI_SETFASTTASKSWITCH","features":[52]},{"name":"SPI_SETFILTERKEYS","features":[52]},{"name":"SPI_SETFLATMENU","features":[52]},{"name":"SPI_SETFOCUSBORDERHEIGHT","features":[52]},{"name":"SPI_SETFOCUSBORDERWIDTH","features":[52]},{"name":"SPI_SETFONTSMOOTHING","features":[52]},{"name":"SPI_SETFONTSMOOTHINGCONTRAST","features":[52]},{"name":"SPI_SETFONTSMOOTHINGORIENTATION","features":[52]},{"name":"SPI_SETFONTSMOOTHINGTYPE","features":[52]},{"name":"SPI_SETFOREGROUNDFLASHCOUNT","features":[52]},{"name":"SPI_SETFOREGROUNDLOCKTIMEOUT","features":[52]},{"name":"SPI_SETGESTUREVISUALIZATION","features":[52]},{"name":"SPI_SETGRADIENTCAPTIONS","features":[52]},{"name":"SPI_SETGRIDGRANULARITY","features":[52]},{"name":"SPI_SETHANDEDNESS","features":[52]},{"name":"SPI_SETHANDHELD","features":[52]},{"name":"SPI_SETHIGHCONTRAST","features":[52]},{"name":"SPI_SETHOTTRACKING","features":[52]},{"name":"SPI_SETHUNGAPPTIMEOUT","features":[52]},{"name":"SPI_SETICONMETRICS","features":[52]},{"name":"SPI_SETICONS","features":[52]},{"name":"SPI_SETICONTITLELOGFONT","features":[52]},{"name":"SPI_SETICONTITLEWRAP","features":[52]},{"name":"SPI_SETKEYBOARDCUES","features":[52]},{"name":"SPI_SETKEYBOARDDELAY","features":[52]},{"name":"SPI_SETKEYBOARDPREF","features":[52]},{"name":"SPI_SETKEYBOARDSPEED","features":[52]},{"name":"SPI_SETLANGTOGGLE","features":[52]},{"name":"SPI_SETLISTBOXSMOOTHSCROLLING","features":[52]},{"name":"SPI_SETLOGICALDPIOVERRIDE","features":[52]},{"name":"SPI_SETLOWPOWERACTIVE","features":[52]},{"name":"SPI_SETLOWPOWERTIMEOUT","features":[52]},{"name":"SPI_SETMENUANIMATION","features":[52]},{"name":"SPI_SETMENUDROPALIGNMENT","features":[52]},{"name":"SPI_SETMENUFADE","features":[52]},{"name":"SPI_SETMENURECT","features":[52]},{"name":"SPI_SETMENUSHOWDELAY","features":[52]},{"name":"SPI_SETMENUUNDERLINES","features":[52]},{"name":"SPI_SETMESSAGEDURATION","features":[52]},{"name":"SPI_SETMINIMIZEDMETRICS","features":[52]},{"name":"SPI_SETMINIMUMHITRADIUS","features":[52]},{"name":"SPI_SETMOUSE","features":[52]},{"name":"SPI_SETMOUSEBUTTONSWAP","features":[52]},{"name":"SPI_SETMOUSECLICKLOCK","features":[52]},{"name":"SPI_SETMOUSECLICKLOCKTIME","features":[52]},{"name":"SPI_SETMOUSEDOCKTHRESHOLD","features":[52]},{"name":"SPI_SETMOUSEDRAGOUTTHRESHOLD","features":[52]},{"name":"SPI_SETMOUSEHOVERHEIGHT","features":[52]},{"name":"SPI_SETMOUSEHOVERTIME","features":[52]},{"name":"SPI_SETMOUSEHOVERWIDTH","features":[52]},{"name":"SPI_SETMOUSEKEYS","features":[52]},{"name":"SPI_SETMOUSESIDEMOVETHRESHOLD","features":[52]},{"name":"SPI_SETMOUSESONAR","features":[52]},{"name":"SPI_SETMOUSESPEED","features":[52]},{"name":"SPI_SETMOUSETRAILS","features":[52]},{"name":"SPI_SETMOUSEVANISH","features":[52]},{"name":"SPI_SETMOUSEWHEELROUTING","features":[52]},{"name":"SPI_SETNONCLIENTMETRICS","features":[52]},{"name":"SPI_SETPENARBITRATIONTYPE","features":[52]},{"name":"SPI_SETPENDOCKTHRESHOLD","features":[52]},{"name":"SPI_SETPENDRAGOUTTHRESHOLD","features":[52]},{"name":"SPI_SETPENSIDEMOVETHRESHOLD","features":[52]},{"name":"SPI_SETPENVISUALIZATION","features":[52]},{"name":"SPI_SETPENWINDOWS","features":[52]},{"name":"SPI_SETPOWEROFFACTIVE","features":[52]},{"name":"SPI_SETPOWEROFFTIMEOUT","features":[52]},{"name":"SPI_SETSCREENREADER","features":[52]},{"name":"SPI_SETSCREENSAVEACTIVE","features":[52]},{"name":"SPI_SETSCREENSAVERRUNNING","features":[52]},{"name":"SPI_SETSCREENSAVESECURE","features":[52]},{"name":"SPI_SETSCREENSAVETIMEOUT","features":[52]},{"name":"SPI_SETSELECTIONFADE","features":[52]},{"name":"SPI_SETSERIALKEYS","features":[52]},{"name":"SPI_SETSHOWIMEUI","features":[52]},{"name":"SPI_SETSHOWSOUNDS","features":[52]},{"name":"SPI_SETSNAPSIZING","features":[52]},{"name":"SPI_SETSNAPTODEFBUTTON","features":[52]},{"name":"SPI_SETSOUNDSENTRY","features":[52]},{"name":"SPI_SETSPEECHRECOGNITION","features":[52]},{"name":"SPI_SETSTICKYKEYS","features":[52]},{"name":"SPI_SETSYSTEMLANGUAGEBAR","features":[52]},{"name":"SPI_SETTHREADLOCALINPUTSETTINGS","features":[52]},{"name":"SPI_SETTOGGLEKEYS","features":[52]},{"name":"SPI_SETTOOLTIPANIMATION","features":[52]},{"name":"SPI_SETTOOLTIPFADE","features":[52]},{"name":"SPI_SETTOUCHPREDICTIONPARAMETERS","features":[52]},{"name":"SPI_SETUIEFFECTS","features":[52]},{"name":"SPI_SETWAITTOKILLSERVICETIMEOUT","features":[52]},{"name":"SPI_SETWAITTOKILLTIMEOUT","features":[52]},{"name":"SPI_SETWHEELSCROLLCHARS","features":[52]},{"name":"SPI_SETWHEELSCROLLLINES","features":[52]},{"name":"SPI_SETWINARRANGING","features":[52]},{"name":"SPI_SETWORKAREA","features":[52]},{"name":"STATE_SYSTEM_ALERT_HIGH","features":[52]},{"name":"STATE_SYSTEM_ALERT_LOW","features":[52]},{"name":"STATE_SYSTEM_ALERT_MEDIUM","features":[52]},{"name":"STATE_SYSTEM_ANIMATED","features":[52]},{"name":"STATE_SYSTEM_BUSY","features":[52]},{"name":"STATE_SYSTEM_CHECKED","features":[52]},{"name":"STATE_SYSTEM_COLLAPSED","features":[52]},{"name":"STATE_SYSTEM_DEFAULT","features":[52]},{"name":"STATE_SYSTEM_EXPANDED","features":[52]},{"name":"STATE_SYSTEM_EXTSELECTABLE","features":[52]},{"name":"STATE_SYSTEM_FLOATING","features":[52]},{"name":"STATE_SYSTEM_FOCUSED","features":[52]},{"name":"STATE_SYSTEM_HOTTRACKED","features":[52]},{"name":"STATE_SYSTEM_INDETERMINATE","features":[52]},{"name":"STATE_SYSTEM_LINKED","features":[52]},{"name":"STATE_SYSTEM_MARQUEED","features":[52]},{"name":"STATE_SYSTEM_MIXED","features":[52]},{"name":"STATE_SYSTEM_MOVEABLE","features":[52]},{"name":"STATE_SYSTEM_MULTISELECTABLE","features":[52]},{"name":"STATE_SYSTEM_PROTECTED","features":[52]},{"name":"STATE_SYSTEM_READONLY","features":[52]},{"name":"STATE_SYSTEM_SELECTABLE","features":[52]},{"name":"STATE_SYSTEM_SELECTED","features":[52]},{"name":"STATE_SYSTEM_SELFVOICING","features":[52]},{"name":"STATE_SYSTEM_SIZEABLE","features":[52]},{"name":"STATE_SYSTEM_TRAVERSED","features":[52]},{"name":"STATE_SYSTEM_VALID","features":[52]},{"name":"STM_GETICON","features":[52]},{"name":"STM_GETIMAGE","features":[52]},{"name":"STM_MSGMAX","features":[52]},{"name":"STM_SETICON","features":[52]},{"name":"STM_SETIMAGE","features":[52]},{"name":"STN_CLICKED","features":[52]},{"name":"STN_DBLCLK","features":[52]},{"name":"STN_DISABLE","features":[52]},{"name":"STN_ENABLE","features":[52]},{"name":"STRSAFE_E_END_OF_FILE","features":[52]},{"name":"STRSAFE_E_INSUFFICIENT_BUFFER","features":[52]},{"name":"STRSAFE_E_INVALID_PARAMETER","features":[52]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[52]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[52]},{"name":"STRSAFE_IGNORE_NULLS","features":[52]},{"name":"STRSAFE_MAX_CCH","features":[52]},{"name":"STRSAFE_MAX_LENGTH","features":[52]},{"name":"STRSAFE_NO_TRUNCATION","features":[52]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[52]},{"name":"STRSAFE_USE_SECURE_CRT","features":[52]},{"name":"STYLESTRUCT","features":[52]},{"name":"SWP_ASYNCWINDOWPOS","features":[52]},{"name":"SWP_DEFERERASE","features":[52]},{"name":"SWP_DRAWFRAME","features":[52]},{"name":"SWP_FRAMECHANGED","features":[52]},{"name":"SWP_HIDEWINDOW","features":[52]},{"name":"SWP_NOACTIVATE","features":[52]},{"name":"SWP_NOCOPYBITS","features":[52]},{"name":"SWP_NOMOVE","features":[52]},{"name":"SWP_NOOWNERZORDER","features":[52]},{"name":"SWP_NOREDRAW","features":[52]},{"name":"SWP_NOREPOSITION","features":[52]},{"name":"SWP_NOSENDCHANGING","features":[52]},{"name":"SWP_NOSIZE","features":[52]},{"name":"SWP_NOZORDER","features":[52]},{"name":"SWP_SHOWWINDOW","features":[52]},{"name":"SW_ERASE","features":[52]},{"name":"SW_FORCEMINIMIZE","features":[52]},{"name":"SW_HIDE","features":[52]},{"name":"SW_INVALIDATE","features":[52]},{"name":"SW_MAX","features":[52]},{"name":"SW_MAXIMIZE","features":[52]},{"name":"SW_MINIMIZE","features":[52]},{"name":"SW_NORMAL","features":[52]},{"name":"SW_OTHERUNZOOM","features":[52]},{"name":"SW_OTHERZOOM","features":[52]},{"name":"SW_PARENTCLOSING","features":[52]},{"name":"SW_PARENTOPENING","features":[52]},{"name":"SW_RESTORE","features":[52]},{"name":"SW_SCROLLCHILDREN","features":[52]},{"name":"SW_SHOW","features":[52]},{"name":"SW_SHOWDEFAULT","features":[52]},{"name":"SW_SHOWMAXIMIZED","features":[52]},{"name":"SW_SHOWMINIMIZED","features":[52]},{"name":"SW_SHOWMINNOACTIVE","features":[52]},{"name":"SW_SHOWNA","features":[52]},{"name":"SW_SHOWNOACTIVATE","features":[52]},{"name":"SW_SHOWNORMAL","features":[52]},{"name":"SW_SMOOTHSCROLL","features":[52]},{"name":"SYSTEM_CURSOR_ID","features":[52]},{"name":"SYSTEM_METRICS_INDEX","features":[52]},{"name":"SYSTEM_PARAMETERS_INFO_ACTION","features":[52]},{"name":"SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS","features":[52]},{"name":"ScrollDC","features":[3,14,52]},{"name":"ScrollWindow","features":[3,52]},{"name":"ScrollWindowEx","features":[3,14,52]},{"name":"SendDlgItemMessageA","features":[3,52]},{"name":"SendDlgItemMessageW","features":[3,52]},{"name":"SendMessageA","features":[3,52]},{"name":"SendMessageCallbackA","features":[3,52]},{"name":"SendMessageCallbackW","features":[3,52]},{"name":"SendMessageTimeoutA","features":[3,52]},{"name":"SendMessageTimeoutW","features":[3,52]},{"name":"SendMessageW","features":[3,52]},{"name":"SendNotifyMessageA","features":[3,52]},{"name":"SendNotifyMessageW","features":[3,52]},{"name":"SetAdditionalForegroundBoostProcesses","features":[3,52]},{"name":"SetCaretBlinkTime","features":[3,52]},{"name":"SetCaretPos","features":[3,52]},{"name":"SetClassLongA","features":[3,52]},{"name":"SetClassLongPtrA","features":[3,52]},{"name":"SetClassLongPtrW","features":[3,52]},{"name":"SetClassLongW","features":[3,52]},{"name":"SetClassWord","features":[3,52]},{"name":"SetCoalescableTimer","features":[3,52]},{"name":"SetCursor","features":[52]},{"name":"SetCursorPos","features":[3,52]},{"name":"SetDebugErrorLevel","features":[52]},{"name":"SetDlgItemInt","features":[3,52]},{"name":"SetDlgItemTextA","features":[3,52]},{"name":"SetDlgItemTextW","features":[3,52]},{"name":"SetForegroundWindow","features":[3,52]},{"name":"SetLayeredWindowAttributes","features":[3,52]},{"name":"SetMenu","features":[3,52]},{"name":"SetMenuDefaultItem","features":[3,52]},{"name":"SetMenuInfo","features":[3,14,52]},{"name":"SetMenuItemBitmaps","features":[3,14,52]},{"name":"SetMenuItemInfoA","features":[3,14,52]},{"name":"SetMenuItemInfoW","features":[3,14,52]},{"name":"SetMessageExtraInfo","features":[3,52]},{"name":"SetMessageQueue","features":[3,52]},{"name":"SetParent","features":[3,52]},{"name":"SetPhysicalCursorPos","features":[3,52]},{"name":"SetProcessDPIAware","features":[3,52]},{"name":"SetProcessDefaultLayout","features":[3,52]},{"name":"SetPropA","features":[3,52]},{"name":"SetPropW","features":[3,52]},{"name":"SetSystemCursor","features":[3,52]},{"name":"SetTimer","features":[3,52]},{"name":"SetWindowDisplayAffinity","features":[3,52]},{"name":"SetWindowLongA","features":[3,52]},{"name":"SetWindowLongPtrA","features":[3,52]},{"name":"SetWindowLongPtrW","features":[3,52]},{"name":"SetWindowLongW","features":[3,52]},{"name":"SetWindowPlacement","features":[3,52]},{"name":"SetWindowPos","features":[3,52]},{"name":"SetWindowTextA","features":[3,52]},{"name":"SetWindowTextW","features":[3,52]},{"name":"SetWindowWord","features":[3,52]},{"name":"SetWindowsHookA","features":[3,52]},{"name":"SetWindowsHookExA","features":[3,52]},{"name":"SetWindowsHookExW","features":[3,52]},{"name":"SetWindowsHookW","features":[3,52]},{"name":"ShowCaret","features":[3,52]},{"name":"ShowCursor","features":[3,52]},{"name":"ShowOwnedPopups","features":[3,52]},{"name":"ShowWindow","features":[3,52]},{"name":"ShowWindowAsync","features":[3,52]},{"name":"SoundSentry","features":[3,52]},{"name":"SwitchToThisWindow","features":[3,52]},{"name":"SystemParametersInfoA","features":[3,52]},{"name":"SystemParametersInfoW","features":[3,52]},{"name":"TDF_REGISTER","features":[52]},{"name":"TDF_UNREGISTER","features":[52]},{"name":"TILE_WINDOWS_HOW","features":[52]},{"name":"TIMERPROC","features":[3,52]},{"name":"TIMERV_COALESCING_MAX","features":[52]},{"name":"TIMERV_COALESCING_MIN","features":[52]},{"name":"TIMERV_DEFAULT_COALESCING","features":[52]},{"name":"TIMERV_NO_COALESCING","features":[52]},{"name":"TITLEBARINFO","features":[3,52]},{"name":"TITLEBARINFOEX","features":[3,52]},{"name":"TKF_AVAILABLE","features":[52]},{"name":"TKF_CONFIRMHOTKEY","features":[52]},{"name":"TKF_HOTKEYACTIVE","features":[52]},{"name":"TKF_HOTKEYSOUND","features":[52]},{"name":"TKF_INDICATOR","features":[52]},{"name":"TKF_TOGGLEKEYSON","features":[52]},{"name":"TOOLTIP_DISMISS_FLAGS","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_LATENCY","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_DELTA","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_EXPO_SMOOTH_ALPHA","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_LEARNING_RATE","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MAX","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MIN","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_SAMPLETIME","features":[52]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_USE_HW_TIMESTAMP","features":[52]},{"name":"TOUCH_FLAG_NONE","features":[52]},{"name":"TOUCH_HIT_TESTING_CLIENT","features":[52]},{"name":"TOUCH_HIT_TESTING_DEFAULT","features":[52]},{"name":"TOUCH_HIT_TESTING_NONE","features":[52]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_CLOSEST","features":[52]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_FARTHEST","features":[52]},{"name":"TOUCH_MASK_CONTACTAREA","features":[52]},{"name":"TOUCH_MASK_NONE","features":[52]},{"name":"TOUCH_MASK_ORIENTATION","features":[52]},{"name":"TOUCH_MASK_PRESSURE","features":[52]},{"name":"TPMPARAMS","features":[3,52]},{"name":"TPM_BOTTOMALIGN","features":[52]},{"name":"TPM_CENTERALIGN","features":[52]},{"name":"TPM_HORIZONTAL","features":[52]},{"name":"TPM_HORNEGANIMATION","features":[52]},{"name":"TPM_HORPOSANIMATION","features":[52]},{"name":"TPM_LAYOUTRTL","features":[52]},{"name":"TPM_LEFTALIGN","features":[52]},{"name":"TPM_LEFTBUTTON","features":[52]},{"name":"TPM_NOANIMATION","features":[52]},{"name":"TPM_NONOTIFY","features":[52]},{"name":"TPM_RECURSE","features":[52]},{"name":"TPM_RETURNCMD","features":[52]},{"name":"TPM_RIGHTALIGN","features":[52]},{"name":"TPM_RIGHTBUTTON","features":[52]},{"name":"TPM_TOPALIGN","features":[52]},{"name":"TPM_VCENTERALIGN","features":[52]},{"name":"TPM_VERNEGANIMATION","features":[52]},{"name":"TPM_VERPOSANIMATION","features":[52]},{"name":"TPM_VERTICAL","features":[52]},{"name":"TPM_WORKAREA","features":[52]},{"name":"TRACK_POPUP_MENU_FLAGS","features":[52]},{"name":"TileWindows","features":[3,52]},{"name":"TrackPopupMenu","features":[3,52]},{"name":"TrackPopupMenuEx","features":[3,52]},{"name":"TranslateAcceleratorA","features":[3,52]},{"name":"TranslateAcceleratorW","features":[3,52]},{"name":"TranslateMDISysAccel","features":[3,52]},{"name":"TranslateMessage","features":[3,52]},{"name":"UISF_ACTIVE","features":[52]},{"name":"UISF_HIDEACCEL","features":[52]},{"name":"UISF_HIDEFOCUS","features":[52]},{"name":"UIS_CLEAR","features":[52]},{"name":"UIS_INITIALIZE","features":[52]},{"name":"UIS_SET","features":[52]},{"name":"ULW_ALPHA","features":[52]},{"name":"ULW_COLORKEY","features":[52]},{"name":"ULW_EX_NORESIZE","features":[52]},{"name":"ULW_OPAQUE","features":[52]},{"name":"UNICODE_NOCHAR","features":[52]},{"name":"UOI_TIMERPROC_EXCEPTION_SUPPRESSION","features":[52]},{"name":"UPDATELAYEREDWINDOWINFO","features":[3,14,52]},{"name":"UPDATE_LAYERED_WINDOW_FLAGS","features":[52]},{"name":"USER_DEFAULT_SCREEN_DPI","features":[52]},{"name":"USER_TIMER_MAXIMUM","features":[52]},{"name":"USER_TIMER_MINIMUM","features":[52]},{"name":"UnhookWindowsHook","features":[3,52]},{"name":"UnhookWindowsHookEx","features":[3,52]},{"name":"UnregisterClassA","features":[3,52]},{"name":"UnregisterClassW","features":[3,52]},{"name":"UnregisterDeviceNotification","features":[3,52]},{"name":"UpdateLayeredWindow","features":[3,14,52]},{"name":"UpdateLayeredWindowIndirect","features":[3,14,52]},{"name":"VolLockBroadcast","features":[52]},{"name":"WA_ACTIVE","features":[52]},{"name":"WA_CLICKACTIVE","features":[52]},{"name":"WA_INACTIVE","features":[52]},{"name":"WDA_EXCLUDEFROMCAPTURE","features":[52]},{"name":"WDA_MONITOR","features":[52]},{"name":"WDA_NONE","features":[52]},{"name":"WHEEL_DELTA","features":[52]},{"name":"WH_CALLWNDPROC","features":[52]},{"name":"WH_CALLWNDPROCRET","features":[52]},{"name":"WH_CBT","features":[52]},{"name":"WH_DEBUG","features":[52]},{"name":"WH_FOREGROUNDIDLE","features":[52]},{"name":"WH_GETMESSAGE","features":[52]},{"name":"WH_HARDWARE","features":[52]},{"name":"WH_JOURNALPLAYBACK","features":[52]},{"name":"WH_JOURNALRECORD","features":[52]},{"name":"WH_KEYBOARD","features":[52]},{"name":"WH_KEYBOARD_LL","features":[52]},{"name":"WH_MAX","features":[52]},{"name":"WH_MAXHOOK","features":[52]},{"name":"WH_MIN","features":[52]},{"name":"WH_MINHOOK","features":[52]},{"name":"WH_MOUSE","features":[52]},{"name":"WH_MOUSE_LL","features":[52]},{"name":"WH_MSGFILTER","features":[52]},{"name":"WH_SHELL","features":[52]},{"name":"WH_SYSMSGFILTER","features":[52]},{"name":"WINDOWINFO","features":[3,52]},{"name":"WINDOWPLACEMENT","features":[3,52]},{"name":"WINDOWPLACEMENT_FLAGS","features":[52]},{"name":"WINDOWPOS","features":[3,52]},{"name":"WINDOWS_HOOK_ID","features":[52]},{"name":"WINDOW_DISPLAY_AFFINITY","features":[52]},{"name":"WINDOW_EX_STYLE","features":[52]},{"name":"WINDOW_LONG_PTR_INDEX","features":[52]},{"name":"WINDOW_MESSAGE_FILTER_ACTION","features":[52]},{"name":"WINDOW_STYLE","features":[52]},{"name":"WINEVENT_INCONTEXT","features":[52]},{"name":"WINEVENT_OUTOFCONTEXT","features":[52]},{"name":"WINEVENT_SKIPOWNPROCESS","features":[52]},{"name":"WINEVENT_SKIPOWNTHREAD","features":[52]},{"name":"WINSTA_ACCESSCLIPBOARD","features":[52]},{"name":"WINSTA_ACCESSGLOBALATOMS","features":[52]},{"name":"WINSTA_ALL_ACCESS","features":[52]},{"name":"WINSTA_CREATEDESKTOP","features":[52]},{"name":"WINSTA_ENUMDESKTOPS","features":[52]},{"name":"WINSTA_ENUMERATE","features":[52]},{"name":"WINSTA_EXITWINDOWS","features":[52]},{"name":"WINSTA_READATTRIBUTES","features":[52]},{"name":"WINSTA_READSCREEN","features":[52]},{"name":"WINSTA_WRITEATTRIBUTES","features":[52]},{"name":"WMSZ_BOTTOM","features":[52]},{"name":"WMSZ_BOTTOMLEFT","features":[52]},{"name":"WMSZ_BOTTOMRIGHT","features":[52]},{"name":"WMSZ_LEFT","features":[52]},{"name":"WMSZ_RIGHT","features":[52]},{"name":"WMSZ_TOP","features":[52]},{"name":"WMSZ_TOPLEFT","features":[52]},{"name":"WMSZ_TOPRIGHT","features":[52]},{"name":"WM_ACTIVATE","features":[52]},{"name":"WM_ACTIVATEAPP","features":[52]},{"name":"WM_AFXFIRST","features":[52]},{"name":"WM_AFXLAST","features":[52]},{"name":"WM_APP","features":[52]},{"name":"WM_APPCOMMAND","features":[52]},{"name":"WM_ASKCBFORMATNAME","features":[52]},{"name":"WM_CANCELJOURNAL","features":[52]},{"name":"WM_CANCELMODE","features":[52]},{"name":"WM_CAPTURECHANGED","features":[52]},{"name":"WM_CHANGECBCHAIN","features":[52]},{"name":"WM_CHANGEUISTATE","features":[52]},{"name":"WM_CHAR","features":[52]},{"name":"WM_CHARTOITEM","features":[52]},{"name":"WM_CHILDACTIVATE","features":[52]},{"name":"WM_CLEAR","features":[52]},{"name":"WM_CLIPBOARDUPDATE","features":[52]},{"name":"WM_CLOSE","features":[52]},{"name":"WM_COMMAND","features":[52]},{"name":"WM_COMMNOTIFY","features":[52]},{"name":"WM_COMPACTING","features":[52]},{"name":"WM_COMPAREITEM","features":[52]},{"name":"WM_CONTEXTMENU","features":[52]},{"name":"WM_COPY","features":[52]},{"name":"WM_COPYDATA","features":[52]},{"name":"WM_CREATE","features":[52]},{"name":"WM_CTLCOLORBTN","features":[52]},{"name":"WM_CTLCOLORDLG","features":[52]},{"name":"WM_CTLCOLOREDIT","features":[52]},{"name":"WM_CTLCOLORLISTBOX","features":[52]},{"name":"WM_CTLCOLORMSGBOX","features":[52]},{"name":"WM_CTLCOLORSCROLLBAR","features":[52]},{"name":"WM_CTLCOLORSTATIC","features":[52]},{"name":"WM_CUT","features":[52]},{"name":"WM_DEADCHAR","features":[52]},{"name":"WM_DELETEITEM","features":[52]},{"name":"WM_DESTROY","features":[52]},{"name":"WM_DESTROYCLIPBOARD","features":[52]},{"name":"WM_DEVICECHANGE","features":[52]},{"name":"WM_DEVMODECHANGE","features":[52]},{"name":"WM_DISPLAYCHANGE","features":[52]},{"name":"WM_DPICHANGED","features":[52]},{"name":"WM_DPICHANGED_AFTERPARENT","features":[52]},{"name":"WM_DPICHANGED_BEFOREPARENT","features":[52]},{"name":"WM_DRAWCLIPBOARD","features":[52]},{"name":"WM_DRAWITEM","features":[52]},{"name":"WM_DROPFILES","features":[52]},{"name":"WM_DWMCOLORIZATIONCOLORCHANGED","features":[52]},{"name":"WM_DWMCOMPOSITIONCHANGED","features":[52]},{"name":"WM_DWMNCRENDERINGCHANGED","features":[52]},{"name":"WM_DWMSENDICONICLIVEPREVIEWBITMAP","features":[52]},{"name":"WM_DWMSENDICONICTHUMBNAIL","features":[52]},{"name":"WM_DWMWINDOWMAXIMIZEDCHANGE","features":[52]},{"name":"WM_ENABLE","features":[52]},{"name":"WM_ENDSESSION","features":[52]},{"name":"WM_ENTERIDLE","features":[52]},{"name":"WM_ENTERMENULOOP","features":[52]},{"name":"WM_ENTERSIZEMOVE","features":[52]},{"name":"WM_ERASEBKGND","features":[52]},{"name":"WM_EXITMENULOOP","features":[52]},{"name":"WM_EXITSIZEMOVE","features":[52]},{"name":"WM_FONTCHANGE","features":[52]},{"name":"WM_GESTURE","features":[52]},{"name":"WM_GESTURENOTIFY","features":[52]},{"name":"WM_GETDLGCODE","features":[52]},{"name":"WM_GETDPISCALEDSIZE","features":[52]},{"name":"WM_GETFONT","features":[52]},{"name":"WM_GETHOTKEY","features":[52]},{"name":"WM_GETICON","features":[52]},{"name":"WM_GETMINMAXINFO","features":[52]},{"name":"WM_GETOBJECT","features":[52]},{"name":"WM_GETTEXT","features":[52]},{"name":"WM_GETTEXTLENGTH","features":[52]},{"name":"WM_GETTITLEBARINFOEX","features":[52]},{"name":"WM_HANDHELDFIRST","features":[52]},{"name":"WM_HANDHELDLAST","features":[52]},{"name":"WM_HELP","features":[52]},{"name":"WM_HOTKEY","features":[52]},{"name":"WM_HSCROLL","features":[52]},{"name":"WM_HSCROLLCLIPBOARD","features":[52]},{"name":"WM_ICONERASEBKGND","features":[52]},{"name":"WM_IME_CHAR","features":[52]},{"name":"WM_IME_COMPOSITION","features":[52]},{"name":"WM_IME_COMPOSITIONFULL","features":[52]},{"name":"WM_IME_CONTROL","features":[52]},{"name":"WM_IME_ENDCOMPOSITION","features":[52]},{"name":"WM_IME_KEYDOWN","features":[52]},{"name":"WM_IME_KEYLAST","features":[52]},{"name":"WM_IME_KEYUP","features":[52]},{"name":"WM_IME_NOTIFY","features":[52]},{"name":"WM_IME_REQUEST","features":[52]},{"name":"WM_IME_SELECT","features":[52]},{"name":"WM_IME_SETCONTEXT","features":[52]},{"name":"WM_IME_STARTCOMPOSITION","features":[52]},{"name":"WM_INITDIALOG","features":[52]},{"name":"WM_INITMENU","features":[52]},{"name":"WM_INITMENUPOPUP","features":[52]},{"name":"WM_INPUT","features":[52]},{"name":"WM_INPUTLANGCHANGE","features":[52]},{"name":"WM_INPUTLANGCHANGEREQUEST","features":[52]},{"name":"WM_INPUT_DEVICE_CHANGE","features":[52]},{"name":"WM_KEYDOWN","features":[52]},{"name":"WM_KEYFIRST","features":[52]},{"name":"WM_KEYLAST","features":[52]},{"name":"WM_KEYUP","features":[52]},{"name":"WM_KILLFOCUS","features":[52]},{"name":"WM_LBUTTONDBLCLK","features":[52]},{"name":"WM_LBUTTONDOWN","features":[52]},{"name":"WM_LBUTTONUP","features":[52]},{"name":"WM_MBUTTONDBLCLK","features":[52]},{"name":"WM_MBUTTONDOWN","features":[52]},{"name":"WM_MBUTTONUP","features":[52]},{"name":"WM_MDIACTIVATE","features":[52]},{"name":"WM_MDICASCADE","features":[52]},{"name":"WM_MDICREATE","features":[52]},{"name":"WM_MDIDESTROY","features":[52]},{"name":"WM_MDIGETACTIVE","features":[52]},{"name":"WM_MDIICONARRANGE","features":[52]},{"name":"WM_MDIMAXIMIZE","features":[52]},{"name":"WM_MDINEXT","features":[52]},{"name":"WM_MDIREFRESHMENU","features":[52]},{"name":"WM_MDIRESTORE","features":[52]},{"name":"WM_MDISETMENU","features":[52]},{"name":"WM_MDITILE","features":[52]},{"name":"WM_MEASUREITEM","features":[52]},{"name":"WM_MENUCHAR","features":[52]},{"name":"WM_MENUCOMMAND","features":[52]},{"name":"WM_MENUDRAG","features":[52]},{"name":"WM_MENUGETOBJECT","features":[52]},{"name":"WM_MENURBUTTONUP","features":[52]},{"name":"WM_MENUSELECT","features":[52]},{"name":"WM_MOUSEACTIVATE","features":[52]},{"name":"WM_MOUSEFIRST","features":[52]},{"name":"WM_MOUSEHWHEEL","features":[52]},{"name":"WM_MOUSELAST","features":[52]},{"name":"WM_MOUSEMOVE","features":[52]},{"name":"WM_MOUSEWHEEL","features":[52]},{"name":"WM_MOVE","features":[52]},{"name":"WM_MOVING","features":[52]},{"name":"WM_NCACTIVATE","features":[52]},{"name":"WM_NCCALCSIZE","features":[52]},{"name":"WM_NCCREATE","features":[52]},{"name":"WM_NCDESTROY","features":[52]},{"name":"WM_NCHITTEST","features":[52]},{"name":"WM_NCLBUTTONDBLCLK","features":[52]},{"name":"WM_NCLBUTTONDOWN","features":[52]},{"name":"WM_NCLBUTTONUP","features":[52]},{"name":"WM_NCMBUTTONDBLCLK","features":[52]},{"name":"WM_NCMBUTTONDOWN","features":[52]},{"name":"WM_NCMBUTTONUP","features":[52]},{"name":"WM_NCMOUSEHOVER","features":[52]},{"name":"WM_NCMOUSELEAVE","features":[52]},{"name":"WM_NCMOUSEMOVE","features":[52]},{"name":"WM_NCPAINT","features":[52]},{"name":"WM_NCPOINTERDOWN","features":[52]},{"name":"WM_NCPOINTERUP","features":[52]},{"name":"WM_NCPOINTERUPDATE","features":[52]},{"name":"WM_NCRBUTTONDBLCLK","features":[52]},{"name":"WM_NCRBUTTONDOWN","features":[52]},{"name":"WM_NCRBUTTONUP","features":[52]},{"name":"WM_NCXBUTTONDBLCLK","features":[52]},{"name":"WM_NCXBUTTONDOWN","features":[52]},{"name":"WM_NCXBUTTONUP","features":[52]},{"name":"WM_NEXTDLGCTL","features":[52]},{"name":"WM_NEXTMENU","features":[52]},{"name":"WM_NOTIFY","features":[52]},{"name":"WM_NOTIFYFORMAT","features":[52]},{"name":"WM_NULL","features":[52]},{"name":"WM_PAINT","features":[52]},{"name":"WM_PAINTCLIPBOARD","features":[52]},{"name":"WM_PAINTICON","features":[52]},{"name":"WM_PALETTECHANGED","features":[52]},{"name":"WM_PALETTEISCHANGING","features":[52]},{"name":"WM_PARENTNOTIFY","features":[52]},{"name":"WM_PASTE","features":[52]},{"name":"WM_PENWINFIRST","features":[52]},{"name":"WM_PENWINLAST","features":[52]},{"name":"WM_POINTERACTIVATE","features":[52]},{"name":"WM_POINTERCAPTURECHANGED","features":[52]},{"name":"WM_POINTERDEVICECHANGE","features":[52]},{"name":"WM_POINTERDEVICEINRANGE","features":[52]},{"name":"WM_POINTERDEVICEOUTOFRANGE","features":[52]},{"name":"WM_POINTERDOWN","features":[52]},{"name":"WM_POINTERENTER","features":[52]},{"name":"WM_POINTERHWHEEL","features":[52]},{"name":"WM_POINTERLEAVE","features":[52]},{"name":"WM_POINTERROUTEDAWAY","features":[52]},{"name":"WM_POINTERROUTEDRELEASED","features":[52]},{"name":"WM_POINTERROUTEDTO","features":[52]},{"name":"WM_POINTERUP","features":[52]},{"name":"WM_POINTERUPDATE","features":[52]},{"name":"WM_POINTERWHEEL","features":[52]},{"name":"WM_POWER","features":[52]},{"name":"WM_POWERBROADCAST","features":[52]},{"name":"WM_PRINT","features":[52]},{"name":"WM_PRINTCLIENT","features":[52]},{"name":"WM_QUERYDRAGICON","features":[52]},{"name":"WM_QUERYENDSESSION","features":[52]},{"name":"WM_QUERYNEWPALETTE","features":[52]},{"name":"WM_QUERYOPEN","features":[52]},{"name":"WM_QUERYUISTATE","features":[52]},{"name":"WM_QUEUESYNC","features":[52]},{"name":"WM_QUIT","features":[52]},{"name":"WM_RBUTTONDBLCLK","features":[52]},{"name":"WM_RBUTTONDOWN","features":[52]},{"name":"WM_RBUTTONUP","features":[52]},{"name":"WM_RENDERALLFORMATS","features":[52]},{"name":"WM_RENDERFORMAT","features":[52]},{"name":"WM_SETCURSOR","features":[52]},{"name":"WM_SETFOCUS","features":[52]},{"name":"WM_SETFONT","features":[52]},{"name":"WM_SETHOTKEY","features":[52]},{"name":"WM_SETICON","features":[52]},{"name":"WM_SETREDRAW","features":[52]},{"name":"WM_SETTEXT","features":[52]},{"name":"WM_SETTINGCHANGE","features":[52]},{"name":"WM_SHOWWINDOW","features":[52]},{"name":"WM_SIZE","features":[52]},{"name":"WM_SIZECLIPBOARD","features":[52]},{"name":"WM_SIZING","features":[52]},{"name":"WM_SPOOLERSTATUS","features":[52]},{"name":"WM_STYLECHANGED","features":[52]},{"name":"WM_STYLECHANGING","features":[52]},{"name":"WM_SYNCPAINT","features":[52]},{"name":"WM_SYSCHAR","features":[52]},{"name":"WM_SYSCOLORCHANGE","features":[52]},{"name":"WM_SYSCOMMAND","features":[52]},{"name":"WM_SYSDEADCHAR","features":[52]},{"name":"WM_SYSKEYDOWN","features":[52]},{"name":"WM_SYSKEYUP","features":[52]},{"name":"WM_TABLET_FIRST","features":[52]},{"name":"WM_TABLET_LAST","features":[52]},{"name":"WM_TCARD","features":[52]},{"name":"WM_THEMECHANGED","features":[52]},{"name":"WM_TIMECHANGE","features":[52]},{"name":"WM_TIMER","features":[52]},{"name":"WM_TOOLTIPDISMISS","features":[52]},{"name":"WM_TOUCH","features":[52]},{"name":"WM_TOUCHHITTESTING","features":[52]},{"name":"WM_UNDO","features":[52]},{"name":"WM_UNICHAR","features":[52]},{"name":"WM_UNINITMENUPOPUP","features":[52]},{"name":"WM_UPDATEUISTATE","features":[52]},{"name":"WM_USER","features":[52]},{"name":"WM_USERCHANGED","features":[52]},{"name":"WM_VKEYTOITEM","features":[52]},{"name":"WM_VSCROLL","features":[52]},{"name":"WM_VSCROLLCLIPBOARD","features":[52]},{"name":"WM_WINDOWPOSCHANGED","features":[52]},{"name":"WM_WINDOWPOSCHANGING","features":[52]},{"name":"WM_WININICHANGE","features":[52]},{"name":"WM_WTSSESSION_CHANGE","features":[52]},{"name":"WM_XBUTTONDBLCLK","features":[52]},{"name":"WM_XBUTTONDOWN","features":[52]},{"name":"WM_XBUTTONUP","features":[52]},{"name":"WNDCLASSA","features":[3,14,52]},{"name":"WNDCLASSEXA","features":[3,14,52]},{"name":"WNDCLASSEXW","features":[3,14,52]},{"name":"WNDCLASSW","features":[3,14,52]},{"name":"WNDCLASS_STYLES","features":[52]},{"name":"WNDENUMPROC","features":[3,52]},{"name":"WNDPROC","features":[3,52]},{"name":"WPF_ASYNCWINDOWPLACEMENT","features":[52]},{"name":"WPF_RESTORETOMAXIMIZED","features":[52]},{"name":"WPF_SETMINPOSITION","features":[52]},{"name":"WSF_VISIBLE","features":[52]},{"name":"WS_ACTIVECAPTION","features":[52]},{"name":"WS_BORDER","features":[52]},{"name":"WS_CAPTION","features":[52]},{"name":"WS_CHILD","features":[52]},{"name":"WS_CHILDWINDOW","features":[52]},{"name":"WS_CLIPCHILDREN","features":[52]},{"name":"WS_CLIPSIBLINGS","features":[52]},{"name":"WS_DISABLED","features":[52]},{"name":"WS_DLGFRAME","features":[52]},{"name":"WS_EX_ACCEPTFILES","features":[52]},{"name":"WS_EX_APPWINDOW","features":[52]},{"name":"WS_EX_CLIENTEDGE","features":[52]},{"name":"WS_EX_COMPOSITED","features":[52]},{"name":"WS_EX_CONTEXTHELP","features":[52]},{"name":"WS_EX_CONTROLPARENT","features":[52]},{"name":"WS_EX_DLGMODALFRAME","features":[52]},{"name":"WS_EX_LAYERED","features":[52]},{"name":"WS_EX_LAYOUTRTL","features":[52]},{"name":"WS_EX_LEFT","features":[52]},{"name":"WS_EX_LEFTSCROLLBAR","features":[52]},{"name":"WS_EX_LTRREADING","features":[52]},{"name":"WS_EX_MDICHILD","features":[52]},{"name":"WS_EX_NOACTIVATE","features":[52]},{"name":"WS_EX_NOINHERITLAYOUT","features":[52]},{"name":"WS_EX_NOPARENTNOTIFY","features":[52]},{"name":"WS_EX_NOREDIRECTIONBITMAP","features":[52]},{"name":"WS_EX_OVERLAPPEDWINDOW","features":[52]},{"name":"WS_EX_PALETTEWINDOW","features":[52]},{"name":"WS_EX_RIGHT","features":[52]},{"name":"WS_EX_RIGHTSCROLLBAR","features":[52]},{"name":"WS_EX_RTLREADING","features":[52]},{"name":"WS_EX_STATICEDGE","features":[52]},{"name":"WS_EX_TOOLWINDOW","features":[52]},{"name":"WS_EX_TOPMOST","features":[52]},{"name":"WS_EX_TRANSPARENT","features":[52]},{"name":"WS_EX_WINDOWEDGE","features":[52]},{"name":"WS_GROUP","features":[52]},{"name":"WS_HSCROLL","features":[52]},{"name":"WS_ICONIC","features":[52]},{"name":"WS_MAXIMIZE","features":[52]},{"name":"WS_MAXIMIZEBOX","features":[52]},{"name":"WS_MINIMIZE","features":[52]},{"name":"WS_MINIMIZEBOX","features":[52]},{"name":"WS_OVERLAPPED","features":[52]},{"name":"WS_OVERLAPPEDWINDOW","features":[52]},{"name":"WS_POPUP","features":[52]},{"name":"WS_POPUPWINDOW","features":[52]},{"name":"WS_SIZEBOX","features":[52]},{"name":"WS_SYSMENU","features":[52]},{"name":"WS_TABSTOP","features":[52]},{"name":"WS_THICKFRAME","features":[52]},{"name":"WS_TILED","features":[52]},{"name":"WS_TILEDWINDOW","features":[52]},{"name":"WS_VISIBLE","features":[52]},{"name":"WS_VSCROLL","features":[52]},{"name":"WTS_CONSOLE_CONNECT","features":[52]},{"name":"WTS_CONSOLE_DISCONNECT","features":[52]},{"name":"WTS_REMOTE_CONNECT","features":[52]},{"name":"WTS_REMOTE_DISCONNECT","features":[52]},{"name":"WTS_SESSION_CREATE","features":[52]},{"name":"WTS_SESSION_LOCK","features":[52]},{"name":"WTS_SESSION_LOGOFF","features":[52]},{"name":"WTS_SESSION_LOGON","features":[52]},{"name":"WTS_SESSION_REMOTE_CONTROL","features":[52]},{"name":"WTS_SESSION_TERMINATE","features":[52]},{"name":"WTS_SESSION_UNLOCK","features":[52]},{"name":"WVR_ALIGNBOTTOM","features":[52]},{"name":"WVR_ALIGNLEFT","features":[52]},{"name":"WVR_ALIGNRIGHT","features":[52]},{"name":"WVR_ALIGNTOP","features":[52]},{"name":"WVR_HREDRAW","features":[52]},{"name":"WVR_REDRAW","features":[52]},{"name":"WVR_VALIDRECTS","features":[52]},{"name":"WVR_VREDRAW","features":[52]},{"name":"WaitMessage","features":[3,52]},{"name":"WindowFromPhysicalPoint","features":[3,52]},{"name":"WindowFromPoint","features":[3,52]},{"name":"XBUTTON1","features":[52]},{"name":"XBUTTON2","features":[52]},{"name":"_DEV_BROADCAST_HEADER","features":[52]},{"name":"_DEV_BROADCAST_USERDEFINED","features":[52]},{"name":"__WARNING_BANNED_API_USAGE","features":[52]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[52]},{"name":"__WARNING_DEREF_NULL_PTR","features":[52]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[52]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[52]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[52]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[52]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[52]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[52]},{"name":"__WARNING_POST_EXPECTED","features":[52]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[52]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[52]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[52]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[52]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[52]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[52]},{"name":"__WARNING_USING_UNINIT_VAR","features":[52]},{"name":"wsprintfA","features":[52]},{"name":"wsprintfW","features":[52]},{"name":"wvsprintfA","features":[52]},{"name":"wvsprintfW","features":[52]}],"677":[{"name":"ADDRESSBAND","features":[223]},{"name":"ADDURL_ADDTOCACHE","features":[223]},{"name":"ADDURL_ADDTOHISTORYANDCACHE","features":[223]},{"name":"ADDURL_FIRST","features":[223]},{"name":"ADDURL_FLAG","features":[223]},{"name":"ADDURL_Max","features":[223]},{"name":"ActivityContentCount","features":[223]},{"name":"ActivityContentDocument","features":[223]},{"name":"ActivityContentLink","features":[223]},{"name":"ActivityContentNone","features":[223]},{"name":"ActivityContentSelection","features":[223]},{"name":"AnchorClick","features":[223]},{"name":"CATID_MSOfficeAntiVirus","features":[223]},{"name":"CDeviceRect","features":[223]},{"name":"CDownloadBehavior","features":[223]},{"name":"CHeaderFooter","features":[223]},{"name":"CLayoutRect","features":[223]},{"name":"COLOR_NO_TRANSPARENT","features":[223]},{"name":"CPersistDataPeer","features":[223]},{"name":"CPersistHistory","features":[223]},{"name":"CPersistShortcut","features":[223]},{"name":"CPersistSnapshot","features":[223]},{"name":"CPersistUserData","features":[223]},{"name":"CoDitherToRGB8","features":[223]},{"name":"CoMapMIMEToCLSID","features":[223]},{"name":"CoSniffStream","features":[223]},{"name":"ComputeInvCMAP","features":[14,223]},{"name":"CreateDDrawSurfaceOnDIB","features":[14,223]},{"name":"CreateMIMEMap","features":[223]},{"name":"DISPID_ACTIVEXFILTERINGENABLED","features":[223]},{"name":"DISPID_ADDCHANNEL","features":[223]},{"name":"DISPID_ADDDESKTOPCOMPONENT","features":[223]},{"name":"DISPID_ADDFAVORITE","features":[223]},{"name":"DISPID_ADDSEARCHPROVIDER","features":[223]},{"name":"DISPID_ADDSERVICE","features":[223]},{"name":"DISPID_ADDSITEMODE","features":[223]},{"name":"DISPID_ADDTHUMBNAILBUTTONS","features":[223]},{"name":"DISPID_ADDTOFAVORITESBAR","features":[223]},{"name":"DISPID_ADDTRACKINGPROTECTIONLIST","features":[223]},{"name":"DISPID_ADVANCEERROR","features":[223]},{"name":"DISPID_AMBIENT_OFFLINEIFNOTCONNECTED","features":[223]},{"name":"DISPID_AMBIENT_SILENT","features":[223]},{"name":"DISPID_AUTOCOMPLETEATTACH","features":[223]},{"name":"DISPID_AUTOCOMPLETESAVEFORM","features":[223]},{"name":"DISPID_AUTOSCAN","features":[223]},{"name":"DISPID_BEFORENAVIGATE","features":[223]},{"name":"DISPID_BEFORENAVIGATE2","features":[223]},{"name":"DISPID_BEFORESCRIPTEXECUTE","features":[223]},{"name":"DISPID_BRANDIMAGEURI","features":[223]},{"name":"DISPID_BUILDNEWTABPAGE","features":[223]},{"name":"DISPID_CANADVANCEERROR","features":[223]},{"name":"DISPID_CANRETREATERROR","features":[223]},{"name":"DISPID_CHANGEDEFAULTBROWSER","features":[223]},{"name":"DISPID_CLEARNOTIFICATION","features":[223]},{"name":"DISPID_CLEARSITEMODEICONOVERLAY","features":[223]},{"name":"DISPID_CLIENTTOHOSTWINDOW","features":[223]},{"name":"DISPID_COMMANDSTATECHANGE","features":[223]},{"name":"DISPID_CONTENTDISCOVERYRESET","features":[223]},{"name":"DISPID_COUNTVIEWTYPES","features":[223]},{"name":"DISPID_CREATESUBSCRIPTION","features":[223]},{"name":"DISPID_CUSTOMIZECLEARTYPE","features":[223]},{"name":"DISPID_CUSTOMIZESETTINGS","features":[223]},{"name":"DISPID_DEFAULTSEARCHPROVIDER","features":[223]},{"name":"DISPID_DELETESUBSCRIPTION","features":[223]},{"name":"DISPID_DEPTH","features":[223]},{"name":"DISPID_DIAGNOSECONNECTION","features":[223]},{"name":"DISPID_DIAGNOSECONNECTIONUILESS","features":[223]},{"name":"DISPID_DOCUMENTCOMPLETE","features":[223]},{"name":"DISPID_DOUBLECLICK","features":[223]},{"name":"DISPID_DOWNLOADBEGIN","features":[223]},{"name":"DISPID_DOWNLOADCOMPLETE","features":[223]},{"name":"DISPID_ENABLENOTIFICATIONQUEUE","features":[223]},{"name":"DISPID_ENABLENOTIFICATIONQUEUELARGE","features":[223]},{"name":"DISPID_ENABLENOTIFICATIONQUEUESQUARE","features":[223]},{"name":"DISPID_ENABLENOTIFICATIONQUEUEWIDE","features":[223]},{"name":"DISPID_ENABLESUGGESTEDSITES","features":[223]},{"name":"DISPID_ENUMOPTIONS","features":[223]},{"name":"DISPID_EXPAND","features":[223]},{"name":"DISPID_EXPORT","features":[223]},{"name":"DISPID_FAVSELECTIONCHANGE","features":[223]},{"name":"DISPID_FILEDOWNLOAD","features":[223]},{"name":"DISPID_FLAGS","features":[223]},{"name":"DISPID_FRAMEBEFORENAVIGATE","features":[223]},{"name":"DISPID_FRAMENAVIGATECOMPLETE","features":[223]},{"name":"DISPID_FRAMENEWWINDOW","features":[223]},{"name":"DISPID_GETALWAYSSHOWLOCKSTATE","features":[223]},{"name":"DISPID_GETCVLISTDATA","features":[223]},{"name":"DISPID_GETCVLISTLOCALDATA","features":[223]},{"name":"DISPID_GETDETAILSSTATE","features":[223]},{"name":"DISPID_GETEMIELISTDATA","features":[223]},{"name":"DISPID_GETEMIELISTLOCALDATA","features":[223]},{"name":"DISPID_GETERRORCHAR","features":[223]},{"name":"DISPID_GETERRORCODE","features":[223]},{"name":"DISPID_GETERRORLINE","features":[223]},{"name":"DISPID_GETERRORMSG","features":[223]},{"name":"DISPID_GETERRORURL","features":[223]},{"name":"DISPID_GETEXPERIMENTALFLAG","features":[223]},{"name":"DISPID_GETEXPERIMENTALVALUE","features":[223]},{"name":"DISPID_GETNEEDHVSIAUTOLAUNCHFLAG","features":[223]},{"name":"DISPID_GETNEEDIEAUTOLAUNCHFLAG","features":[223]},{"name":"DISPID_GETOSSKU","features":[223]},{"name":"DISPID_GETPERERRSTATE","features":[223]},{"name":"DISPID_HASNEEDHVSIAUTOLAUNCHFLAG","features":[223]},{"name":"DISPID_HASNEEDIEAUTOLAUNCHFLAG","features":[223]},{"name":"DISPID_IMPORT","features":[223]},{"name":"DISPID_IMPORTEXPORTFAVORITES","features":[223]},{"name":"DISPID_INITIALIZED","features":[223]},{"name":"DISPID_INPRIVATEFILTERINGENABLED","features":[223]},{"name":"DISPID_INVOKECONTEXTMENU","features":[223]},{"name":"DISPID_ISMETAREFERRERAVAILABLE","features":[223]},{"name":"DISPID_ISSEARCHMIGRATED","features":[223]},{"name":"DISPID_ISSEARCHPROVIDERINSTALLED","features":[223]},{"name":"DISPID_ISSERVICEINSTALLED","features":[223]},{"name":"DISPID_ISSITEMODE","features":[223]},{"name":"DISPID_ISSITEMODEFIRSTRUN","features":[223]},{"name":"DISPID_ISSUBSCRIBED","features":[223]},{"name":"DISPID_LAUNCHIE","features":[223]},{"name":"DISPID_LAUNCHINHVSI","features":[223]},{"name":"DISPID_LAUNCHINTERNETOPTIONS","features":[223]},{"name":"DISPID_LAUNCHNETWORKCLIENTHELP","features":[223]},{"name":"DISPID_MODE","features":[223]},{"name":"DISPID_MOVESELECTIONDOWN","features":[223]},{"name":"DISPID_MOVESELECTIONTO","features":[223]},{"name":"DISPID_MOVESELECTIONUP","features":[223]},{"name":"DISPID_NAVIGATEANDFIND","features":[223]},{"name":"DISPID_NAVIGATECOMPLETE","features":[223]},{"name":"DISPID_NAVIGATECOMPLETE2","features":[223]},{"name":"DISPID_NAVIGATEERROR","features":[223]},{"name":"DISPID_NAVIGATETOSUGGESTEDSITES","features":[223]},{"name":"DISPID_NEWFOLDER","features":[223]},{"name":"DISPID_NEWPROCESS","features":[223]},{"name":"DISPID_NEWWINDOW","features":[223]},{"name":"DISPID_NEWWINDOW2","features":[223]},{"name":"DISPID_NEWWINDOW3","features":[223]},{"name":"DISPID_NSCOLUMNS","features":[223]},{"name":"DISPID_ONADDRESSBAR","features":[223]},{"name":"DISPID_ONFULLSCREEN","features":[223]},{"name":"DISPID_ONMENUBAR","features":[223]},{"name":"DISPID_ONQUIT","features":[223]},{"name":"DISPID_ONSTATUSBAR","features":[223]},{"name":"DISPID_ONTHEATERMODE","features":[223]},{"name":"DISPID_ONTOOLBAR","features":[223]},{"name":"DISPID_ONVISIBLE","features":[223]},{"name":"DISPID_OPENFAVORITESPANE","features":[223]},{"name":"DISPID_OPENFAVORITESSETTINGS","features":[223]},{"name":"DISPID_PHISHINGENABLED","features":[223]},{"name":"DISPID_PINNEDSITESTATE","features":[223]},{"name":"DISPID_PRINTTEMPLATEINSTANTIATION","features":[223]},{"name":"DISPID_PRINTTEMPLATETEARDOWN","features":[223]},{"name":"DISPID_PRIVACYIMPACTEDSTATECHANGE","features":[223]},{"name":"DISPID_PROGRESSCHANGE","features":[223]},{"name":"DISPID_PROPERTYCHANGE","features":[223]},{"name":"DISPID_PROVISIONNETWORKS","features":[223]},{"name":"DISPID_QUIT","features":[223]},{"name":"DISPID_REDIRECTXDOMAINBLOCKED","features":[223]},{"name":"DISPID_REFRESHOFFLINEDESKTOP","features":[223]},{"name":"DISPID_REMOVESCHEDULEDTILENOTIFICATION","features":[223]},{"name":"DISPID_REPORTSAFEURL","features":[223]},{"name":"DISPID_RESETEXPERIMENTALFLAGS","features":[223]},{"name":"DISPID_RESETFIRSTBOOTMODE","features":[223]},{"name":"DISPID_RESETSAFEMODE","features":[223]},{"name":"DISPID_RESETSORT","features":[223]},{"name":"DISPID_RETREATERROR","features":[223]},{"name":"DISPID_ROOT","features":[223]},{"name":"DISPID_RUNONCEHASSHOWN","features":[223]},{"name":"DISPID_RUNONCEREQUIREDSETTINGSCOMPLETE","features":[223]},{"name":"DISPID_RUNONCESHOWN","features":[223]},{"name":"DISPID_SCHEDULEDTILENOTIFICATION","features":[223]},{"name":"DISPID_SEARCHGUIDEURL","features":[223]},{"name":"DISPID_SELECTEDITEM","features":[223]},{"name":"DISPID_SELECTEDITEMS","features":[223]},{"name":"DISPID_SELECTIONCHANGE","features":[223]},{"name":"DISPID_SETACTIVITIESVISIBLE","features":[223]},{"name":"DISPID_SETDETAILSSTATE","features":[223]},{"name":"DISPID_SETEXPERIMENTALFLAG","features":[223]},{"name":"DISPID_SETEXPERIMENTALVALUE","features":[223]},{"name":"DISPID_SETMSDEFAULTS","features":[223]},{"name":"DISPID_SETNEEDHVSIAUTOLAUNCHFLAG","features":[223]},{"name":"DISPID_SETNEEDIEAUTOLAUNCHFLAG","features":[223]},{"name":"DISPID_SETPERERRSTATE","features":[223]},{"name":"DISPID_SETPHISHINGFILTERSTATUS","features":[223]},{"name":"DISPID_SETRECENTLYCLOSEDVISIBLE","features":[223]},{"name":"DISPID_SETROOT","features":[223]},{"name":"DISPID_SETSECURELOCKICON","features":[223]},{"name":"DISPID_SETSITEMODEICONOVERLAY","features":[223]},{"name":"DISPID_SETSITEMODEPROPERTIES","features":[223]},{"name":"DISPID_SETTHUMBNAILBUTTONS","features":[223]},{"name":"DISPID_SETVIEWTYPE","features":[223]},{"name":"DISPID_SHELLUIHELPERLAST","features":[223]},{"name":"DISPID_SHOWBROWSERUI","features":[223]},{"name":"DISPID_SHOWINPRIVATEHELP","features":[223]},{"name":"DISPID_SHOWTABSHELP","features":[223]},{"name":"DISPID_SITEMODEACTIVATE","features":[223]},{"name":"DISPID_SITEMODEADDBUTTONSTYLE","features":[223]},{"name":"DISPID_SITEMODEADDJUMPLISTITEM","features":[223]},{"name":"DISPID_SITEMODECLEARBADGE","features":[223]},{"name":"DISPID_SITEMODECLEARJUMPLIST","features":[223]},{"name":"DISPID_SITEMODECREATEJUMPLIST","features":[223]},{"name":"DISPID_SITEMODEREFRESHBADGE","features":[223]},{"name":"DISPID_SITEMODESHOWBUTTONSTYLE","features":[223]},{"name":"DISPID_SITEMODESHOWJUMPLIST","features":[223]},{"name":"DISPID_SKIPRUNONCE","features":[223]},{"name":"DISPID_SKIPTABSWELCOME","features":[223]},{"name":"DISPID_SQMENABLED","features":[223]},{"name":"DISPID_STARTBADGEUPDATE","features":[223]},{"name":"DISPID_STARTPERIODICUPDATE","features":[223]},{"name":"DISPID_STARTPERIODICUPDATEBATCH","features":[223]},{"name":"DISPID_STATUSTEXTCHANGE","features":[223]},{"name":"DISPID_STOPBADGEUPDATE","features":[223]},{"name":"DISPID_STOPPERIODICUPDATE","features":[223]},{"name":"DISPID_SUBSCRIPTIONSENABLED","features":[223]},{"name":"DISPID_SUGGESTEDSITESENABLED","features":[223]},{"name":"DISPID_SYNCHRONIZE","features":[223]},{"name":"DISPID_THIRDPARTYURLBLOCKED","features":[223]},{"name":"DISPID_TITLECHANGE","features":[223]},{"name":"DISPID_TITLEICONCHANGE","features":[223]},{"name":"DISPID_TRACKINGPROTECTIONENABLED","features":[223]},{"name":"DISPID_TVFLAGS","features":[223]},{"name":"DISPID_UNSELECTALL","features":[223]},{"name":"DISPID_UPDATEPAGESTATUS","features":[223]},{"name":"DISPID_UPDATETHUMBNAILBUTTON","features":[223]},{"name":"DISPID_VIEWUPDATE","features":[223]},{"name":"DISPID_WEBWORKERFINISHED","features":[223]},{"name":"DISPID_WEBWORKERSTARTED","features":[223]},{"name":"DISPID_WINDOWACTIVATE","features":[223]},{"name":"DISPID_WINDOWCLOSING","features":[223]},{"name":"DISPID_WINDOWMOVE","features":[223]},{"name":"DISPID_WINDOWREGISTERED","features":[223]},{"name":"DISPID_WINDOWRESIZE","features":[223]},{"name":"DISPID_WINDOWREVOKED","features":[223]},{"name":"DISPID_WINDOWSETHEIGHT","features":[223]},{"name":"DISPID_WINDOWSETLEFT","features":[223]},{"name":"DISPID_WINDOWSETRESIZABLE","features":[223]},{"name":"DISPID_WINDOWSETTOP","features":[223]},{"name":"DISPID_WINDOWSETWIDTH","features":[223]},{"name":"DISPID_WINDOWSTATECHANGED","features":[223]},{"name":"DecodeImage","features":[223]},{"name":"DecodeImageEx","features":[223]},{"name":"DitherTo8","features":[14,223]},{"name":"E_SURFACE_DISCARDED","features":[223]},{"name":"E_SURFACE_NODC","features":[223]},{"name":"E_SURFACE_NOSURFACE","features":[223]},{"name":"E_SURFACE_NOTMYDC","features":[223]},{"name":"E_SURFACE_NOTMYPOINTER","features":[223]},{"name":"E_SURFACE_UNKNOWN_FORMAT","features":[223]},{"name":"ExtensionValidationContextDynamic","features":[223]},{"name":"ExtensionValidationContextNone","features":[223]},{"name":"ExtensionValidationContextParsed","features":[223]},{"name":"ExtensionValidationContexts","features":[223]},{"name":"ExtensionValidationResultArrestPageLoad","features":[223]},{"name":"ExtensionValidationResultDoNotInstantiate","features":[223]},{"name":"ExtensionValidationResultNone","features":[223]},{"name":"ExtensionValidationResults","features":[223]},{"name":"FINDFRAME_FLAGS","features":[223]},{"name":"FINDFRAME_INTERNAL","features":[223]},{"name":"FINDFRAME_JUSTTESTEXISTENCE","features":[223]},{"name":"FINDFRAME_NONE","features":[223]},{"name":"FRAMEOPTIONS_BROWSERBAND","features":[223]},{"name":"FRAMEOPTIONS_DESKTOP","features":[223]},{"name":"FRAMEOPTIONS_FLAGS","features":[223]},{"name":"FRAMEOPTIONS_NO3DBORDER","features":[223]},{"name":"FRAMEOPTIONS_NORESIZE","features":[223]},{"name":"FRAMEOPTIONS_SCROLL_AUTO","features":[223]},{"name":"FRAMEOPTIONS_SCROLL_NO","features":[223]},{"name":"FRAMEOPTIONS_SCROLL_YES","features":[223]},{"name":"GetMaxMIMEIDBytes","features":[223]},{"name":"HomePage","features":[223]},{"name":"HomePageSetting","features":[223]},{"name":"IActiveXUIHandlerSite","features":[223]},{"name":"IActiveXUIHandlerSite2","features":[223]},{"name":"IActiveXUIHandlerSite3","features":[223]},{"name":"IAnchorClick","features":[223]},{"name":"IAudioSessionSite","features":[223]},{"name":"ICaretPositionProvider","features":[223]},{"name":"IDeviceRect","features":[223]},{"name":"IDithererImpl","features":[223]},{"name":"IDocObjectService","features":[223]},{"name":"IDownloadBehavior","features":[223]},{"name":"IDownloadManager","features":[223]},{"name":"IEAssociateThreadWithTab","features":[223]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL","features":[223]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL_BUT_PASSWORDS","features":[223]},{"name":"IECMDID_ARG_CLEAR_FORMS_PASSWORDS_ONLY","features":[223]},{"name":"IECMDID_BEFORENAVIGATE_DOEXTERNALBROWSE","features":[223]},{"name":"IECMDID_BEFORENAVIGATE_GETIDLIST","features":[223]},{"name":"IECMDID_BEFORENAVIGATE_GETSHELLBROWSE","features":[223]},{"name":"IECMDID_CLEAR_AUTOCOMPLETE_FOR_FORMS","features":[223]},{"name":"IECMDID_GET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[223]},{"name":"IECMDID_SETID_AUTOCOMPLETE_FOR_FORMS","features":[223]},{"name":"IECMDID_SET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[223]},{"name":"IECancelSaveFile","features":[3,223]},{"name":"IECreateDirectory","features":[3,6,223]},{"name":"IECreateFile","features":[3,6,223]},{"name":"IEDeleteFile","features":[3,223]},{"name":"IEDisassociateThreadWithTab","features":[223]},{"name":"IEFindFirstFile","features":[3,23,223]},{"name":"IEGetFileAttributesEx","features":[3,23,223]},{"name":"IEGetProcessModule_PROC_NAME","features":[223]},{"name":"IEGetProtectedModeCookie","features":[223]},{"name":"IEGetTabWindowExports_PROC_NAME","features":[223]},{"name":"IEGetWriteableFolderPath","features":[223]},{"name":"IEGetWriteableLowHKCU","features":[51,223]},{"name":"IEInPrivateFilteringEnabled","features":[3,223]},{"name":"IEIsInPrivateBrowsing","features":[3,223]},{"name":"IEIsProtectedModeProcess","features":[3,223]},{"name":"IEIsProtectedModeURL","features":[223]},{"name":"IELAUNCHOPTION_FLAGS","features":[223]},{"name":"IELAUNCHOPTION_FORCE_COMPAT","features":[223]},{"name":"IELAUNCHOPTION_FORCE_EDGE","features":[223]},{"name":"IELAUNCHOPTION_LOCK_ENGINE","features":[223]},{"name":"IELAUNCHOPTION_SCRIPTDEBUG","features":[223]},{"name":"IELAUNCHURLINFO","features":[223]},{"name":"IELaunchURL","features":[3,39,223]},{"name":"IEMoveFileEx","features":[3,223]},{"name":"IEPROCESS_MODULE_NAME","features":[223]},{"name":"IERefreshElevationPolicy","features":[223]},{"name":"IERegCreateKeyEx","features":[3,6,51,223]},{"name":"IERegSetValueEx","features":[223]},{"name":"IERegisterWritableRegistryKey","features":[3,223]},{"name":"IERegisterWritableRegistryValue","features":[223]},{"name":"IERemoveDirectory","features":[3,223]},{"name":"IESaveFile","features":[3,223]},{"name":"IESetProtectedModeCookie","features":[223]},{"name":"IEShowOpenFileDialog","features":[3,223]},{"name":"IEShowSaveFileDialog","features":[3,223]},{"name":"IETrackingProtectionEnabled","features":[3,223]},{"name":"IEUnregisterWritableRegistry","features":[223]},{"name":"IEWebDriverManager","features":[223]},{"name":"IE_USE_OE_MAIL_HKEY","features":[223]},{"name":"IE_USE_OE_MAIL_KEY","features":[223]},{"name":"IE_USE_OE_MAIL_VALUE","features":[223]},{"name":"IE_USE_OE_NEWS_HKEY","features":[223]},{"name":"IE_USE_OE_NEWS_KEY","features":[223]},{"name":"IE_USE_OE_NEWS_VALUE","features":[223]},{"name":"IE_USE_OE_PRESENT_HKEY","features":[223]},{"name":"IE_USE_OE_PRESENT_KEY","features":[223]},{"name":"IEnumManagerFrames","features":[223]},{"name":"IEnumOpenServiceActivity","features":[223]},{"name":"IEnumOpenServiceActivityCategory","features":[223]},{"name":"IEnumSTATURL","features":[223]},{"name":"IExtensionValidation","features":[223]},{"name":"IHTMLPersistData","features":[223]},{"name":"IHTMLPersistDataOM","features":[223]},{"name":"IHTMLUserDataOM","features":[223]},{"name":"IHeaderFooter","features":[223]},{"name":"IHeaderFooter2","features":[223]},{"name":"IHomePage","features":[223]},{"name":"IHomePageSetting","features":[223]},{"name":"IIEWebDriverManager","features":[223]},{"name":"IIEWebDriverSite","features":[223]},{"name":"IImageDecodeEventSink","features":[223]},{"name":"IImageDecodeEventSink2","features":[223]},{"name":"IImageDecodeFilter","features":[223]},{"name":"IIntelliForms","features":[223]},{"name":"IInternetExplorerManager","features":[223]},{"name":"IInternetExplorerManager2","features":[223]},{"name":"ILayoutRect","features":[223]},{"name":"IMGDECODE_EVENT_BEGINBITS","features":[223]},{"name":"IMGDECODE_EVENT_BITSCOMPLETE","features":[223]},{"name":"IMGDECODE_EVENT_PALETTE","features":[223]},{"name":"IMGDECODE_EVENT_PROGRESS","features":[223]},{"name":"IMGDECODE_EVENT_USEDDRAW","features":[223]},{"name":"IMGDECODE_HINT_BOTTOMUP","features":[223]},{"name":"IMGDECODE_HINT_FULLWIDTH","features":[223]},{"name":"IMGDECODE_HINT_TOPDOWN","features":[223]},{"name":"IMapMIMEToCLSID","features":[223]},{"name":"IMediaActivityNotifySite","features":[223]},{"name":"INTERNETEXPLORERCONFIGURATION","features":[223]},{"name":"INTERNETEXPLORERCONFIGURATION_HOST","features":[223]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER","features":[223]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER_EDGE","features":[223]},{"name":"IOpenService","features":[223]},{"name":"IOpenServiceActivity","features":[223]},{"name":"IOpenServiceActivityCategory","features":[223]},{"name":"IOpenServiceActivityInput","features":[223]},{"name":"IOpenServiceActivityManager","features":[223]},{"name":"IOpenServiceActivityOutputContext","features":[223]},{"name":"IOpenServiceManager","features":[223]},{"name":"IPeerFactory","features":[223]},{"name":"IPersistHistory","features":[223]},{"name":"IPrintTaskRequestFactory","features":[223]},{"name":"IPrintTaskRequestHandler","features":[223]},{"name":"IScrollableContextMenu","features":[223]},{"name":"IScrollableContextMenu2","features":[223]},{"name":"ISniffStream","features":[223]},{"name":"ISurfacePresenterFlip","features":[223]},{"name":"ISurfacePresenterFlip2","features":[223]},{"name":"ISurfacePresenterFlipBuffer","features":[223]},{"name":"ITargetContainer","features":[223]},{"name":"ITargetEmbedding","features":[223]},{"name":"ITargetFrame","features":[223]},{"name":"ITargetFrame2","features":[223]},{"name":"ITargetFramePriv","features":[223]},{"name":"ITargetFramePriv2","features":[223]},{"name":"ITargetNotify","features":[223]},{"name":"ITargetNotify2","features":[223]},{"name":"ITimer","features":[223]},{"name":"ITimerEx","features":[223]},{"name":"ITimerService","features":[223]},{"name":"ITimerSink","features":[223]},{"name":"ITridentTouchInput","features":[223]},{"name":"ITridentTouchInputSite","features":[223]},{"name":"IUrlHistoryNotify","features":[223]},{"name":"IUrlHistoryStg","features":[223]},{"name":"IUrlHistoryStg2","features":[223]},{"name":"IViewObjectPresentFlip","features":[223]},{"name":"IViewObjectPresentFlip2","features":[223]},{"name":"IViewObjectPresentFlipSite","features":[223]},{"name":"IViewObjectPresentFlipSite2","features":[223]},{"name":"IWebBrowserEventsService","features":[223]},{"name":"IWebBrowserEventsUrlService","features":[223]},{"name":"IdentifyMIMEType","features":[223]},{"name":"IntelliForms","features":[223]},{"name":"InternetExplorerManager","features":[223]},{"name":"Iwfolders","features":[223]},{"name":"LINKSBAND","features":[223]},{"name":"MAPMIME_CLSID","features":[223]},{"name":"MAPMIME_DEFAULT","features":[223]},{"name":"MAPMIME_DEFAULT_ALWAYS","features":[223]},{"name":"MAPMIME_DISABLE","features":[223]},{"name":"MAX_SEARCH_FORMAT_STRING","features":[223]},{"name":"MEDIA_ACTIVITY_NOTIFY_TYPE","features":[223]},{"name":"MediaCasting","features":[223]},{"name":"MediaPlayback","features":[223]},{"name":"MediaRecording","features":[223]},{"name":"NAVIGATEDATA","features":[223]},{"name":"NAVIGATEFRAME_FLAGS","features":[223]},{"name":"NAVIGATEFRAME_FL_AUTH_FAIL_CACHE_OK","features":[223]},{"name":"NAVIGATEFRAME_FL_NO_DOC_CACHE","features":[223]},{"name":"NAVIGATEFRAME_FL_NO_IMAGE_CACHE","features":[223]},{"name":"NAVIGATEFRAME_FL_POST","features":[223]},{"name":"NAVIGATEFRAME_FL_REALLY_SENDING_FROM_FORM","features":[223]},{"name":"NAVIGATEFRAME_FL_RECORD","features":[223]},{"name":"NAVIGATEFRAME_FL_SENDING_FROM_FORM","features":[223]},{"name":"OS_E_CANCELLED","features":[223]},{"name":"OS_E_GPDISABLED","features":[223]},{"name":"OS_E_NOTFOUND","features":[223]},{"name":"OS_E_NOTSUPPORTED","features":[223]},{"name":"OpenServiceActivityContentType","features":[223]},{"name":"OpenServiceActivityManager","features":[223]},{"name":"OpenServiceErrors","features":[223]},{"name":"OpenServiceManager","features":[223]},{"name":"PeerFactory","features":[223]},{"name":"REGSTRA_VAL_STARTPAGE","features":[223]},{"name":"REGSTR_PATH_CURRENT","features":[223]},{"name":"REGSTR_PATH_DEFAULT","features":[223]},{"name":"REGSTR_PATH_INETCPL_RESTRICTIONS","features":[223]},{"name":"REGSTR_PATH_MIME_DATABASE","features":[223]},{"name":"REGSTR_PATH_REMOTEACCESS","features":[223]},{"name":"REGSTR_PATH_REMOTEACESS","features":[223]},{"name":"REGSTR_SHIFTQUICKSUFFIX","features":[223]},{"name":"REGSTR_VAL_ACCEPT_LANGUAGE","features":[223]},{"name":"REGSTR_VAL_ACCESSMEDIUM","features":[223]},{"name":"REGSTR_VAL_ACCESSTYPE","features":[223]},{"name":"REGSTR_VAL_ALIASTO","features":[223]},{"name":"REGSTR_VAL_ANCHORCOLOR","features":[223]},{"name":"REGSTR_VAL_ANCHORCOLORHOVER","features":[223]},{"name":"REGSTR_VAL_ANCHORCOLORVISITED","features":[223]},{"name":"REGSTR_VAL_ANCHORUNDERLINE","features":[223]},{"name":"REGSTR_VAL_AUTODETECT","features":[223]},{"name":"REGSTR_VAL_AUTODIALDLLNAME","features":[223]},{"name":"REGSTR_VAL_AUTODIALFCNNAME","features":[223]},{"name":"REGSTR_VAL_AUTODIAL_MONITORCLASSNAME","features":[223]},{"name":"REGSTR_VAL_AUTODIAL_TRYONLYONCE","features":[223]},{"name":"REGSTR_VAL_AUTONAVIGATE","features":[223]},{"name":"REGSTR_VAL_AUTOSEARCH","features":[223]},{"name":"REGSTR_VAL_BACKBITMAP","features":[223]},{"name":"REGSTR_VAL_BACKGROUNDCOLOR","features":[223]},{"name":"REGSTR_VAL_BODYCHARSET","features":[223]},{"name":"REGSTR_VAL_BYPASSAUTOCONFIG","features":[223]},{"name":"REGSTR_VAL_CACHEPREFIX","features":[223]},{"name":"REGSTR_VAL_CHECKASSOC","features":[223]},{"name":"REGSTR_VAL_CODEDOWNLOAD","features":[223]},{"name":"REGSTR_VAL_CODEDOWNLOAD_DEF","features":[223]},{"name":"REGSTR_VAL_CODEPAGE","features":[223]},{"name":"REGSTR_VAL_COVEREXCLUDE","features":[223]},{"name":"REGSTR_VAL_DAYSTOKEEP","features":[223]},{"name":"REGSTR_VAL_DEFAULT_CODEPAGE","features":[223]},{"name":"REGSTR_VAL_DEFAULT_SCRIPT","features":[223]},{"name":"REGSTR_VAL_DEF_ENCODING","features":[223]},{"name":"REGSTR_VAL_DEF_INETENCODING","features":[223]},{"name":"REGSTR_VAL_DESCRIPTION","features":[223]},{"name":"REGSTR_VAL_DIRECTORY","features":[223]},{"name":"REGSTR_VAL_DISCONNECTIDLETIME","features":[223]},{"name":"REGSTR_VAL_ENABLEAUTODIAL","features":[223]},{"name":"REGSTR_VAL_ENABLEAUTODIALDISCONNECT","features":[223]},{"name":"REGSTR_VAL_ENABLEAUTODISCONNECT","features":[223]},{"name":"REGSTR_VAL_ENABLEEXITDISCONNECT","features":[223]},{"name":"REGSTR_VAL_ENABLESECURITYCHECK","features":[223]},{"name":"REGSTR_VAL_ENABLEUNATTENDED","features":[223]},{"name":"REGSTR_VAL_ENCODENAME","features":[223]},{"name":"REGSTR_VAL_FAMILY","features":[223]},{"name":"REGSTR_VAL_FIXEDWIDTHFONT","features":[223]},{"name":"REGSTR_VAL_FIXED_FONT","features":[223]},{"name":"REGSTR_VAL_FONT_SCRIPT","features":[223]},{"name":"REGSTR_VAL_FONT_SCRIPTS","features":[223]},{"name":"REGSTR_VAL_FONT_SCRIPT_NAME","features":[223]},{"name":"REGSTR_VAL_FONT_SIZE","features":[223]},{"name":"REGSTR_VAL_FONT_SIZE_DEF","features":[223]},{"name":"REGSTR_VAL_HEADERCHARSET","features":[223]},{"name":"REGSTR_VAL_HTTP_ERRORS","features":[223]},{"name":"REGSTR_VAL_IE_CUSTOMCOLORS","features":[223]},{"name":"REGSTR_VAL_INETCPL_ADVANCEDTAB","features":[223]},{"name":"REGSTR_VAL_INETCPL_CONNECTIONSTAB","features":[223]},{"name":"REGSTR_VAL_INETCPL_CONTENTTAB","features":[223]},{"name":"REGSTR_VAL_INETCPL_GENERALTAB","features":[223]},{"name":"REGSTR_VAL_INETCPL_IEAK","features":[223]},{"name":"REGSTR_VAL_INETCPL_PRIVACYTAB","features":[223]},{"name":"REGSTR_VAL_INETCPL_PROGRAMSTAB","features":[223]},{"name":"REGSTR_VAL_INETCPL_SECURITYTAB","features":[223]},{"name":"REGSTR_VAL_INETENCODING","features":[223]},{"name":"REGSTR_VAL_INTERNETENTRY","features":[223]},{"name":"REGSTR_VAL_INTERNETENTRYBKUP","features":[223]},{"name":"REGSTR_VAL_INTERNETPROFILE","features":[223]},{"name":"REGSTR_VAL_JAVAJIT","features":[223]},{"name":"REGSTR_VAL_JAVAJIT_DEF","features":[223]},{"name":"REGSTR_VAL_JAVALOGGING","features":[223]},{"name":"REGSTR_VAL_JAVALOGGING_DEF","features":[223]},{"name":"REGSTR_VAL_LEVEL","features":[223]},{"name":"REGSTR_VAL_LOADIMAGES","features":[223]},{"name":"REGSTR_VAL_LOCALPAGE","features":[223]},{"name":"REGSTR_VAL_MOSDISCONNECT","features":[223]},{"name":"REGSTR_VAL_NEWDIRECTORY","features":[223]},{"name":"REGSTR_VAL_NONETAUTODIAL","features":[223]},{"name":"REGSTR_VAL_PLAYSOUNDS","features":[223]},{"name":"REGSTR_VAL_PLAYVIDEOS","features":[223]},{"name":"REGSTR_VAL_PRIVCONVERTER","features":[223]},{"name":"REGSTR_VAL_PROPORTIONALFONT","features":[223]},{"name":"REGSTR_VAL_PROP_FONT","features":[223]},{"name":"REGSTR_VAL_PROXYENABLE","features":[223]},{"name":"REGSTR_VAL_PROXYOVERRIDE","features":[223]},{"name":"REGSTR_VAL_PROXYSERVER","features":[223]},{"name":"REGSTR_VAL_REDIALATTEMPTS","features":[223]},{"name":"REGSTR_VAL_REDIALINTERVAL","features":[223]},{"name":"REGSTR_VAL_RNAINSTALLED","features":[223]},{"name":"REGSTR_VAL_SAFETYWARNINGLEVEL","features":[223]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL","features":[223]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL_DEF","features":[223]},{"name":"REGSTR_VAL_SCRIPT_FIXED_FONT","features":[223]},{"name":"REGSTR_VAL_SCRIPT_PROP_FONT","features":[223]},{"name":"REGSTR_VAL_SEARCHPAGE","features":[223]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS","features":[223]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYACTIVEX","features":[223]},{"name":"REGSTR_VAL_SECURITYACTIVEX_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES","features":[223]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES","features":[223]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYJAVA","features":[223]},{"name":"REGSTR_VAL_SECURITYJAVA_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONSEND","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONSEND_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW_DEF","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING","features":[223]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING_DEF","features":[223]},{"name":"REGSTR_VAL_SHOWADDRESSBAR","features":[223]},{"name":"REGSTR_VAL_SHOWFOCUS","features":[223]},{"name":"REGSTR_VAL_SHOWFOCUS_DEF","features":[223]},{"name":"REGSTR_VAL_SHOWFULLURLS","features":[223]},{"name":"REGSTR_VAL_SHOWTOOLBAR","features":[223]},{"name":"REGSTR_VAL_SMOOTHSCROLL","features":[223]},{"name":"REGSTR_VAL_SMOOTHSCROLL_DEF","features":[223]},{"name":"REGSTR_VAL_STARTPAGE","features":[223]},{"name":"REGSTR_VAL_TEXTCOLOR","features":[223]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_HIGH","features":[223]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_LOW","features":[223]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_MED","features":[223]},{"name":"REGSTR_VAL_USEAUTOAPPEND","features":[223]},{"name":"REGSTR_VAL_USEAUTOCOMPLETE","features":[223]},{"name":"REGSTR_VAL_USEAUTOSUGGEST","features":[223]},{"name":"REGSTR_VAL_USEDLGCOLORS","features":[223]},{"name":"REGSTR_VAL_USEHOVERCOLOR","features":[223]},{"name":"REGSTR_VAL_USEIBAR","features":[223]},{"name":"REGSTR_VAL_USEICM","features":[223]},{"name":"REGSTR_VAL_USEICM_DEF","features":[223]},{"name":"REGSTR_VAL_USERAGENT","features":[223]},{"name":"REGSTR_VAL_USESTYLESHEETS","features":[223]},{"name":"REGSTR_VAL_USESTYLESHEETS_DEF","features":[223]},{"name":"REGSTR_VAL_VISIBLEBANDS","features":[223]},{"name":"REGSTR_VAL_VISIBLEBANDS_DEF","features":[223]},{"name":"REGSTR_VAL_WEBCHARSET","features":[223]},{"name":"RatingAccessDeniedDialog","features":[3,223]},{"name":"RatingAccessDeniedDialog2","features":[3,223]},{"name":"RatingAccessDeniedDialog2W","features":[3,223]},{"name":"RatingAccessDeniedDialogW","features":[3,223]},{"name":"RatingAddToApprovedSites","features":[3,223]},{"name":"RatingCheckUserAccess","features":[223]},{"name":"RatingCheckUserAccessW","features":[223]},{"name":"RatingClickedOnPRFInternal","features":[3,223]},{"name":"RatingClickedOnRATInternal","features":[3,223]},{"name":"RatingEnable","features":[3,223]},{"name":"RatingEnableW","features":[3,223]},{"name":"RatingEnabledQuery","features":[223]},{"name":"RatingFreeDetails","features":[223]},{"name":"RatingInit","features":[223]},{"name":"RatingObtainCancel","features":[3,223]},{"name":"RatingObtainQuery","features":[3,223]},{"name":"RatingObtainQueryW","features":[3,223]},{"name":"RatingSetupUI","features":[3,223]},{"name":"RatingSetupUIW","features":[3,223]},{"name":"SCMP_BOTTOM","features":[223]},{"name":"SCMP_FULL","features":[223]},{"name":"SCMP_LEFT","features":[223]},{"name":"SCMP_RIGHT","features":[223]},{"name":"SCMP_TOP","features":[223]},{"name":"SCROLLABLECONTEXTMENU_PLACEMENT","features":[223]},{"name":"STATURL","features":[3,223]},{"name":"STATURLFLAG_ISCACHED","features":[223]},{"name":"STATURLFLAG_ISTOPLEVEL","features":[223]},{"name":"STATURL_QUERYFLAG_ISCACHED","features":[223]},{"name":"STATURL_QUERYFLAG_NOTITLE","features":[223]},{"name":"STATURL_QUERYFLAG_NOURL","features":[223]},{"name":"STATURL_QUERYFLAG_TOPLEVEL","features":[223]},{"name":"SURFACE_LOCK_ALLOW_DISCARD","features":[223]},{"name":"SURFACE_LOCK_EXCLUSIVE","features":[223]},{"name":"SURFACE_LOCK_WAIT","features":[223]},{"name":"SZBACKBITMAP","features":[223]},{"name":"SZJAVAVMPATH","features":[223]},{"name":"SZNOTEXT","features":[223]},{"name":"SZTOOLBAR","features":[223]},{"name":"SZTRUSTWARNLEVEL","features":[223]},{"name":"SZVISIBLE","features":[223]},{"name":"SZ_IE_DEFAULT_HTML_EDITOR","features":[223]},{"name":"SZ_IE_IBAR","features":[223]},{"name":"SZ_IE_IBAR_BANDS","features":[223]},{"name":"SZ_IE_MAIN","features":[223]},{"name":"SZ_IE_SEARCHSTRINGS","features":[223]},{"name":"SZ_IE_SECURITY","features":[223]},{"name":"SZ_IE_SETTINGS","features":[223]},{"name":"SZ_IE_THRESHOLDS","features":[223]},{"name":"S_SURFACE_DISCARDED","features":[223]},{"name":"SniffStream","features":[223]},{"name":"TARGET_NOTIFY_OBJECT_NAME","features":[223]},{"name":"TF_NAVIGATE","features":[223]},{"name":"TIMERMODE_NORMAL","features":[223]},{"name":"TIMERMODE_VISIBILITYAWARE","features":[223]},{"name":"TOOLSBAND","features":[223]},{"name":"TSZCALENDARPROTOCOL","features":[223]},{"name":"TSZCALLTOPROTOCOL","features":[223]},{"name":"TSZINTERNETCLIENTSPATH","features":[223]},{"name":"TSZLDAPPROTOCOL","features":[223]},{"name":"TSZMAILTOPROTOCOL","features":[223]},{"name":"TSZMICROSOFTPATH","features":[223]},{"name":"TSZNEWSPROTOCOL","features":[223]},{"name":"TSZPROTOCOLSPATH","features":[223]},{"name":"TSZSCHANNELPATH","features":[223]},{"name":"TSZVSOURCEPROTOCOL","features":[223]},{"name":"msodsvFailed","features":[223]},{"name":"msodsvLowSecurityLevel","features":[223]},{"name":"msodsvNoMacros","features":[223]},{"name":"msodsvPassedTrusted","features":[223]},{"name":"msodsvPassedTrustedCert","features":[223]},{"name":"msodsvUnsigned","features":[223]},{"name":"msoedmDisable","features":[223]},{"name":"msoedmDontOpen","features":[223]},{"name":"msoedmEnable","features":[223]},{"name":"msoslHigh","features":[223]},{"name":"msoslMedium","features":[223]},{"name":"msoslNone","features":[223]},{"name":"msoslUndefined","features":[223]},{"name":"wfolders","features":[223]}]}} \ No newline at end of file diff --git a/crates/libs/sys/src/Windows/Wdk/Devices/Bluetooth/mod.rs b/crates/libs/sys/src/Windows/Wdk/Devices/Bluetooth/mod.rs new file mode 100644 index 0000000000..dbeff8da14 --- /dev/null +++ b/crates/libs/sys/src/Windows/Wdk/Devices/Bluetooth/mod.rs @@ -0,0 +1,32 @@ +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_ClassOfDevice: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 10 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_ClassOfDevice_Deprecated: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 4 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceAddress: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 1 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceFlags: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 3 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceManufacturer: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 4 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceModelNumber: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 5 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DevicePID: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 8 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceProductVersion: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 9 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceVID: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 7 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceVIDSource: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 6 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_LastConnectedTime: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 11 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_LastConnectedTime_Deprecated: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 5 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_LastSeenTime: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 12 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_ServiceGUID: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_sys::core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 2 }; +pub const GUID_BTHDDI_PROFILE_DRIVER_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x94a59aa8_4383_4286_aa4f_34a160f40004); +pub const GUID_BTHDDI_SDP_NODE_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x81a7fdf3_86c1_4be8_a8c8_2a6d188b4177); +pub const GUID_BTHDDI_SDP_PARSE_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4e719439_9cf1_4bab_ac1d_3279865743d2); +pub const GUID_BTH_DEVICE_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x00f40965_e89d_4487_9890_87c3abb211f4); diff --git a/crates/libs/sys/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs b/crates/libs/sys/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs index f8d9e538f1..6930d317b1 100644 --- a/crates/libs/sys/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs @@ -25,18 +25,15 @@ pub struct VHF_CONFIG { pub InstanceID: windows_sys::core::PWSTR, pub ReportDescriptorLength: u16, pub ReportDescriptor: *mut u8, - pub EvtVhfReadyForNextReadReport: PEVT_VHF_READY_FOR_NEXT_READ_REPORT, - pub EvtVhfAsyncOperationGetFeature: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfAsyncOperationSetFeature: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfAsyncOperationWriteReport: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfAsyncOperationGetInputReport: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfCleanup: PEVT_VHF_CLEANUP, + pub EvtVhfReadyForNextReadReport: EVT_VHF_READY_FOR_NEXT_READ_REPORT, + pub EvtVhfAsyncOperationGetFeature: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfAsyncOperationSetFeature: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfAsyncOperationWriteReport: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfAsyncOperationGetInputReport: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfCleanup: EVT_VHF_CLEANUP, pub HardwareIDsLength: u16, pub HardwareIDs: windows_sys::core::PWSTR, } pub type EVT_VHF_ASYNC_OPERATION = Option; pub type EVT_VHF_CLEANUP = Option; pub type EVT_VHF_READY_FOR_NEXT_READ_REPORT = Option; -pub type PEVT_VHF_ASYNC_OPERATION = Option; -pub type PEVT_VHF_CLEANUP = Option; -pub type PEVT_VHF_READY_FOR_NEXT_READ_REPORT = Option; diff --git a/crates/libs/sys/src/Windows/Wdk/Devices/mod.rs b/crates/libs/sys/src/Windows/Wdk/Devices/mod.rs index c7fc277704..e90977f98b 100644 --- a/crates/libs/sys/src/Windows/Wdk/Devices/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/Devices/mod.rs @@ -1,2 +1,4 @@ +#[cfg(feature = "Wdk_Devices_Bluetooth")] +pub mod Bluetooth; #[cfg(feature = "Wdk_Devices_HumanInterfaceDevice")] pub mod HumanInterfaceDevice; diff --git a/crates/libs/sys/src/Windows/Wdk/Foundation/mod.rs b/crates/libs/sys/src/Windows/Wdk/Foundation/mod.rs index fae5fcb09a..a1574e0aef 100644 --- a/crates/libs/sys/src/Windows/Wdk/Foundation/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/Foundation/mod.rs @@ -325,7 +325,7 @@ pub type DMA_COMMON_BUFFER_VECTOR = isize; #[derive(Clone, Copy)] pub struct DRIVER_EXTENSION { pub DriverObject: *mut DRIVER_OBJECT, - pub AddDevice: *mut DRIVER_ADD_DEVICE, + pub AddDevice: DRIVER_ADD_DEVICE, pub Count: u32, pub ServiceKeyName: super::super::Win32::Foundation::UNICODE_STRING, } @@ -344,10 +344,10 @@ pub struct DRIVER_OBJECT { pub DriverName: super::super::Win32::Foundation::UNICODE_STRING, pub HardwareDatabase: *mut super::super::Win32::Foundation::UNICODE_STRING, pub FastIoDispatch: *mut FAST_IO_DISPATCH, - pub DriverInit: *mut DRIVER_INITIALIZE, - pub DriverStartIo: *mut DRIVER_STARTIO, - pub DriverUnload: *mut DRIVER_UNLOAD, - pub MajorFunction: [*mut DRIVER_DISPATCH; 28], + pub DriverInit: DRIVER_INITIALIZE, + pub DriverStartIo: DRIVER_STARTIO, + pub DriverUnload: DRIVER_UNLOAD, + pub MajorFunction: [DRIVER_DISPATCH; 28], } pub type ECP_HEADER = isize; pub type ECP_LIST = isize; @@ -395,33 +395,33 @@ pub union ERESOURCE_1 { #[derive(Clone, Copy)] pub struct FAST_IO_DISPATCH { pub SizeOfFastIoDispatch: u32, - pub FastIoCheckIfPossible: *mut FAST_IO_CHECK_IF_POSSIBLE, - pub FastIoRead: *mut FAST_IO_READ, - pub FastIoWrite: *mut FAST_IO_WRITE, - pub FastIoQueryBasicInfo: *mut FAST_IO_QUERY_BASIC_INFO, - pub FastIoQueryStandardInfo: *mut FAST_IO_QUERY_STANDARD_INFO, - pub FastIoLock: *mut FAST_IO_LOCK, - pub FastIoUnlockSingle: *mut FAST_IO_UNLOCK_SINGLE, - pub FastIoUnlockAll: *mut FAST_IO_UNLOCK_ALL, - pub FastIoUnlockAllByKey: *mut FAST_IO_UNLOCK_ALL_BY_KEY, - pub FastIoDeviceControl: *mut FAST_IO_DEVICE_CONTROL, - pub AcquireFileForNtCreateSection: *mut FAST_IO_ACQUIRE_FILE, - pub ReleaseFileForNtCreateSection: *mut FAST_IO_RELEASE_FILE, - pub FastIoDetachDevice: *mut FAST_IO_DETACH_DEVICE, - pub FastIoQueryNetworkOpenInfo: *mut FAST_IO_QUERY_NETWORK_OPEN_INFO, - pub AcquireForModWrite: *mut FAST_IO_ACQUIRE_FOR_MOD_WRITE, - pub MdlRead: *mut FAST_IO_MDL_READ, - pub MdlReadComplete: *mut FAST_IO_MDL_READ_COMPLETE, - pub PrepareMdlWrite: *mut FAST_IO_PREPARE_MDL_WRITE, - pub MdlWriteComplete: *mut FAST_IO_MDL_WRITE_COMPLETE, - pub FastIoReadCompressed: *mut FAST_IO_READ_COMPRESSED, - pub FastIoWriteCompressed: *mut FAST_IO_WRITE_COMPRESSED, - pub MdlReadCompleteCompressed: *mut FAST_IO_MDL_READ_COMPLETE_COMPRESSED, - pub MdlWriteCompleteCompressed: *mut FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED, - pub FastIoQueryOpen: *mut FAST_IO_QUERY_OPEN, - pub ReleaseForModWrite: *mut FAST_IO_RELEASE_FOR_MOD_WRITE, - pub AcquireForCcFlush: *mut FAST_IO_ACQUIRE_FOR_CCFLUSH, - pub ReleaseForCcFlush: *mut FAST_IO_RELEASE_FOR_CCFLUSH, + pub FastIoCheckIfPossible: FAST_IO_CHECK_IF_POSSIBLE, + pub FastIoRead: FAST_IO_READ, + pub FastIoWrite: FAST_IO_WRITE, + pub FastIoQueryBasicInfo: FAST_IO_QUERY_BASIC_INFO, + pub FastIoQueryStandardInfo: FAST_IO_QUERY_STANDARD_INFO, + pub FastIoLock: FAST_IO_LOCK, + pub FastIoUnlockSingle: FAST_IO_UNLOCK_SINGLE, + pub FastIoUnlockAll: FAST_IO_UNLOCK_ALL, + pub FastIoUnlockAllByKey: FAST_IO_UNLOCK_ALL_BY_KEY, + pub FastIoDeviceControl: FAST_IO_DEVICE_CONTROL, + pub AcquireFileForNtCreateSection: FAST_IO_ACQUIRE_FILE, + pub ReleaseFileForNtCreateSection: FAST_IO_RELEASE_FILE, + pub FastIoDetachDevice: FAST_IO_DETACH_DEVICE, + pub FastIoQueryNetworkOpenInfo: FAST_IO_QUERY_NETWORK_OPEN_INFO, + pub AcquireForModWrite: FAST_IO_ACQUIRE_FOR_MOD_WRITE, + pub MdlRead: FAST_IO_MDL_READ, + pub MdlReadComplete: FAST_IO_MDL_READ_COMPLETE, + pub PrepareMdlWrite: FAST_IO_PREPARE_MDL_WRITE, + pub MdlWriteComplete: FAST_IO_MDL_WRITE_COMPLETE, + pub FastIoReadCompressed: FAST_IO_READ_COMPRESSED, + pub FastIoWriteCompressed: FAST_IO_WRITE_COMPRESSED, + pub MdlReadCompleteCompressed: FAST_IO_MDL_READ_COMPLETE_COMPRESSED, + pub MdlWriteCompleteCompressed: FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED, + pub FastIoQueryOpen: FAST_IO_QUERY_OPEN, + pub ReleaseForModWrite: FAST_IO_RELEASE_FOR_MOD_WRITE, + pub AcquireForCcFlush: FAST_IO_ACQUIRE_FOR_CCFLUSH, + pub ReleaseForCcFlush: FAST_IO_RELEASE_FOR_CCFLUSH, } #[repr(C)] #[cfg(feature = "Win32_System_Kernel")] @@ -724,7 +724,7 @@ pub struct IO_STACK_LOCATION_0_20 { #[derive(Clone, Copy)] pub struct IO_STACK_LOCATION_0_21 { pub Length: u32, - pub StartSid: super::super::Win32::Foundation::PSID, + pub StartSid: super::super::Win32::Security::PSID, pub SidList: *mut super::Storage::FileSystem::FILE_GET_QUOTA_INFORMATION, pub SidListLength: u32, } @@ -888,7 +888,7 @@ pub struct IRP { pub Anonymous: IRP_0, pub UserEvent: *mut KEVENT, pub Overlay: IRP_2, - pub CancelRoutine: *mut DRIVER_CANCEL, + pub CancelRoutine: DRIVER_CANCEL, pub UserBuffer: *mut core::ffi::c_void, pub Tail: IRP_3, } @@ -1169,7 +1169,7 @@ pub type PKPROCESS = isize; pub type PKTHREAD = isize; pub type PNOTIFY_SYNC = isize; pub type POBJECT_TYPE = isize; -pub type POHANDLE = isize; +pub type POHANDLE = *mut core::ffi::c_void; pub type PPCW_BUFFER = isize; pub type PPCW_INSTANCE = isize; pub type PPCW_REGISTRATION = isize; diff --git a/crates/libs/sys/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs b/crates/libs/sys/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs index 3f123b968b..10d8839263 100644 --- a/crates/libs/sys/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs @@ -3039,9 +3039,9 @@ pub struct NDIS_PCI_DEVICE_CUSTOM_PROPERTIES { pub InterruptType: u32, pub MaxInterruptMessages: u32, } -pub type NDIS_PD_COUNTER_HANDLE = isize; -pub type NDIS_PD_FILTER_HANDLE = isize; -pub type NDIS_PD_PROVIDER_HANDLE = isize; +pub type NDIS_PD_COUNTER_HANDLE = *mut core::ffi::c_void; +pub type NDIS_PD_FILTER_HANDLE = *mut core::ffi::c_void; +pub type NDIS_PD_PROVIDER_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct NDIS_PHYSICAL_ADDRESS_UNIT { @@ -3071,7 +3071,7 @@ pub struct NDIS_PNP_CAPABILITIES { pub Flags: u32, pub WakeUpCapabilities: NDIS_PM_WAKE_UP_CAPABILITIES, } -pub type NDIS_POLL_HANDLE = isize; +pub type NDIS_POLL_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[cfg(feature = "Win32_NetworkManagement_Ndis")] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs b/crates/libs/sys/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs index 9475f962f1..8c44d3a282 100644 --- a/crates/libs/sys/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs @@ -17,7 +17,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetById0(enginehand #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, callout : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_CALLOUT0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutSetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] @@ -28,14 +28,14 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionEnum0(enginehand #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetById0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, id : u64, connection : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_CONNECTION0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionSetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineClose0(enginehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetOption0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, option : super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_ENGINE_OPTION, value : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWP_VALUE0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security", feature = "Win32_System_Rpc"))] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineOpen0(servername : windows_sys::core::PCWSTR, authnservice : u32, authidentity : *const super::super::super::Win32::System::Rpc:: SEC_WINNT_AUTH_IDENTITY_W, session : *const super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_SESSION0, enginehandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] @@ -56,7 +56,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetById0(enginehandl #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, filter : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_FILTER0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterSetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFreeMemory0(p : *mut *mut core::ffi::c_void)); @@ -79,7 +79,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetById0(enginehandle #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, layer : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_LAYER0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerSetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] @@ -98,7 +98,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum4(enginehandle #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum5(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_NET_EVENT5, numentriesreturned : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsSetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] @@ -141,7 +141,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey2(e #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey3(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, providercontext : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_PROVIDER_CONTEXT3) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextSetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] @@ -153,7 +153,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderEnum0(enginehandle #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, provider : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_PROVIDER0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderSetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] @@ -172,18 +172,18 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerEnum0(enginehandle #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, sublayer : *mut *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: FWPM_SUBLAYER0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerSetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmTransactionAbort0(enginehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmTransactionBegin0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmTransactionCommit0(enginehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsSetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetStatistics0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, idpstatistics : *mut super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: IPSEC_DOSP_STATISTICS0) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] @@ -233,7 +233,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextUpdate0(engineha #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaCreateEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumtemplate : *const super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: IPSEC_SA_ENUM_TEMPLATE0, enumhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbSetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -248,7 +248,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn IkeextGetStatistics1(enginehan #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaCreateEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumtemplate : *const super::super::super::Win32::NetworkManagement::WindowsFilteringPlatform:: IKEEXT_SA_ENUM_TEMPLATE0, enumhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbSetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::super::Win32::Security:: SID, sidgroup : *const super::super::super::Win32::Security:: SID, dacl : *const super::super::super::Win32::Security:: ACL, sacl : *const super::super::super::Win32::Security:: ACL) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDeleteById0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, id : u64) -> super::super::super::Win32::Foundation:: NTSTATUS); diff --git a/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs b/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs index fe40844d85..e6c11b8931 100644 --- a/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs @@ -1101,7 +1101,7 @@ pub struct FLT_PARAMETERS_20 { #[derive(Clone, Copy)] pub struct FLT_PARAMETERS_21 { pub Length: u32, - pub StartSid: super::super::super::super::Win32::Foundation::PSID, + pub StartSid: super::super::super::super::Win32::Security::PSID, pub SidList: *mut super::FILE_GET_QUOTA_INFORMATION, pub SidListLength: u32, pub QuotaBuffer: *mut core::ffi::c_void, diff --git a/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/mod.rs b/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/mod.rs index 92b34cbc04..fd1c80f791 100644 --- a/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/Storage/FileSystem/mod.rs @@ -504,9 +504,9 @@ windows_targets::link!("ntoskrnl.exe" "system" fn IoQueueThreadIrp(irp : *const #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFileSystem(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : *const super::super::Foundation:: DRIVER_FS_NOTIFICATION) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : super::super::Foundation:: DRIVER_FS_NOTIFICATION) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChangeMountAware(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : *const super::super::Foundation:: DRIVER_FS_NOTIFICATION, synchronizewithmounts : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChangeMountAware(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : super::super::Foundation:: DRIVER_FS_NOTIFICATION, synchronizewithmounts : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn IoReleaseVpbSpinLock(irql : u8)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoReplaceFileObjectName(fileobject : *const super::super::Foundation:: FILE_OBJECT, newfilename : windows_sys::core::PCWSTR, filenamelength : u16) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -527,7 +527,7 @@ windows_targets::link!("ntoskrnl.exe" "system" fn IoThreadToProcess(thread : sup #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoUnregisterFileSystem(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoUnregisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : *const super::super::Foundation:: DRIVER_FS_NOTIFICATION)); +windows_targets::link!("ntoskrnl.exe" "system" fn IoUnregisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : super::super::Foundation:: DRIVER_FS_NOTIFICATION)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoVerifyVolume(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, allowrawmount : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] @@ -591,44 +591,63 @@ windows_targets::link!("ntoskrnl.exe" "system" fn MmSetAddressRangeModified(addr #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, desiredaccess : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Foundation:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Foundation:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Foundation:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtAdjustGroupsToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, resettodefault : super::super::super::Win32::Foundation:: BOOLEAN, newstate : *const super::super::super::Win32::Security:: TOKEN_GROUPS, bufferlength : u32, previousstate : *mut super::super::super::Win32::Security:: TOKEN_GROUPS, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtAdjustPrivilegesToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, disableallprivileges : super::super::super::Win32::Foundation:: BOOLEAN, newstate : *const super::super::super::Win32::Security:: TOKEN_PRIVILEGES, bufferlength : u32, previousstate : *mut super::super::super::Win32::Security:: TOKEN_PRIVILEGES, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtAllocateVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, regionsize : *mut usize, allocationtype : u32, protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_Memory")] +windows_targets::link!("ntdll.dll" "system" fn NtAllocateVirtualMemoryEx(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, allocationtype : u32, pageprotection : u32, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtCancelIoFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, iorequesttocancel : *const super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtCloseObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtCreateDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] +windows_targets::link!("ntdll.dll" "system" fn NtCreateEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, eventtype : super::super::super::Win32::System::Kernel:: EVENT_TYPE, initialstate : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_Storage_FileSystem", feature = "Win32_System_IO"))] windows_targets::link!("ntdll.dll" "system" fn NtCreateFile(filehandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : super::super::super::Win32::Storage::FileSystem:: FILE_ACCESS_RIGHTS, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, allocationsize : *const i64, fileattributes : super::super::super::Win32::Storage::FileSystem:: FILE_FLAGS_AND_ATTRIBUTES, shareaccess : super::super::super::Win32::Storage::FileSystem:: FILE_SHARE_MODE, createdisposition : NTCREATEFILE_CREATE_DISPOSITION, createoptions : NTCREATEFILE_CREATE_OPTIONS, eabuffer : *const core::ffi::c_void, ealength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn NtCreateSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, maximumsize : *const i64, sectionpageprotection : u32, allocationattributes : u32, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Memory"))] windows_targets::link!("ntdll.dll" "system" fn NtCreateSectionEx(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, maximumsize : *const i64, sectionpageprotection : u32, allocationattributes : u32, filehandle : super::super::super::Win32::Foundation:: HANDLE, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtDeleteFile(objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtDeleteObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtDuplicateObject(sourceprocesshandle : super::super::super::Win32::Foundation:: HANDLE, sourcehandle : super::super::super::Win32::Foundation:: HANDLE, targetprocesshandle : super::super::super::Win32::Foundation:: HANDLE, targethandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, handleattributes : u32, options : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_Security"))] windows_targets::link!("ntdll.dll" "system" fn NtDuplicateToken(existingtokenhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, effectiveonly : super::super::super::Win32::Foundation:: BOOLEAN, tokentype : super::super::super::Win32::Security:: TOKEN_TYPE, newtokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtFilterToken(existingtokenhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32, sidstodisable : *const super::super::super::Win32::Security:: TOKEN_GROUPS, privilegestodelete : *const super::super::super::Win32::Security:: TOKEN_PRIVILEGES, restrictedsids : *const super::super::super::Win32::Security:: TOKEN_GROUPS, newtokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] +windows_targets::link!("ntdll.dll" "system" fn NtFlushBuffersFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtFlushBuffersFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32, parameters : *const core::ffi::c_void, parameterssize : u32, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_IO")] +windows_targets::link!("ntdll.dll" "system" fn NtFlushVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, iostatus : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtFreeVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, freetype : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtFsControlFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fscontrolcode : u32, inputbuffer : *const core::ffi::c_void, inputbufferlength : u32, outputbuffer : *mut core::ffi::c_void, outputbufferlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtImpersonateAnonymousToken(threadhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtLockFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, byteoffset : *const i64, length : *const i64, key : u32, failimmediately : super::super::super::Win32::Foundation:: BOOLEAN, exclusivelock : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_IO")] +windows_targets::link!("ntdll.dll" "system" fn NtNotifyChangeKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, completionfilter : u32, watchtree : super::super::super::Win32::Foundation:: BOOLEAN, buffer : *mut core::ffi::c_void, buffersize : u32, asynchronous : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] windows_targets::link!("ntdll.dll" "system" fn NtOpenFile(filehandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, shareaccess : u32, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtOpenObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, clienttoken : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, grantedaccess : u32, privileges : *const super::super::super::Win32::Security:: PRIVILEGE_SET, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, accessgranted : super::super::super::Win32::Foundation:: BOOLEAN, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtOpenProcessToken(processhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtOpenProcessTokenEx(processhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, handleattributes : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenSymbolicLinkObject(linkhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtOpenThreadToken(threadhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, openasself : super::super::super::Win32::Foundation:: BOOLEAN, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtOpenThreadTokenEx(threadhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, openasself : super::super::super::Win32::Foundation:: BOOLEAN, handleattributes : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] @@ -641,22 +660,31 @@ windows_targets::link!("ntdll.dll" "system" fn NtPrivilegedServiceAuditAlarm(sub windows_targets::link!("ntdll.dll" "system" fn NtQueryDirectoryFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, filename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtQueryDirectoryFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS, queryflags : u32, filename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtQueryDirectoryObject(directoryhandle : super::super::super::Win32::Foundation:: HANDLE, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, restartscan : super::super::super::Win32::Foundation:: BOOLEAN, context : *mut u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_IO")] +windows_targets::link!("ntdll.dll" "system" fn NtQueryEaFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, ealist : *const core::ffi::c_void, ealistlength : u32, eaindex : *const u32, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtQueryFullAttributesFile(objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, fileinformation : *mut FILE_NETWORK_OPEN_INFORMATION) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] windows_targets::link!("ntdll.dll" "system" fn NtQueryInformationByName(objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtQueryInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtQueryInformationToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, tokeninformationclass : super::super::super::Win32::Security:: TOKEN_INFORMATION_CLASS, tokeninformation : *mut core::ffi::c_void, tokeninformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Win32_System_IO")] -windows_targets::link!("ntdll.dll" "system" fn NtQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Foundation:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_IO"))] +windows_targets::link!("ntdll.dll" "system" fn NtQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Security:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtQuerySecurityObject(handle : super::super::super::Win32::Foundation:: HANDLE, securityinformation : u32, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, length : u32, lengthneeded : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtQuerySymbolicLinkObject(linkhandle : super::super::super::Win32::Foundation:: HANDLE, linktarget : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, returnedlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtQueryVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void, memoryinformationclass : MEMORY_INFORMATION_CLASS, memoryinformation : *mut core::ffi::c_void, memoryinformationlength : usize, returnlength : *mut usize) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtQueryVolumeInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fsinformation : *mut core::ffi::c_void, length : u32, fsinformationclass : FS_INFORMATION_CLASS) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtReadFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, byteoffset : *const i64, key : *const u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] +windows_targets::link!("ntdll.dll" "system" fn NtSetEaFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *const core::ffi::c_void, length : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtSetEvent(eventhandle : super::super::super::Win32::Foundation:: HANDLE, previousstate : *mut i32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn NtSetInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *const core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn NtSetInformationToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, tokeninformationclass : super::super::super::Win32::Security:: TOKEN_INFORMATION_CLASS, tokeninformation : *const core::ffi::c_void, tokeninformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -731,15 +759,15 @@ windows_targets::link!("secur32.dll" "system" fn QuerySecurityContextToken(phcon #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn RtlAbsoluteToSelfRelativeSD(absolutesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, selfrelativesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, bufferlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAce(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, accessmask : u32, sid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAce(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, accessmask : u32, sid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAceEx(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, aceflags : u32, accessmask : u32, sid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAceEx(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, aceflags : u32, accessmask : u32, sid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn RtlAddAce(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, startingaceindex : u32, acelist : *const core::ffi::c_void, acelistlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSid(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthority0 : u32, subauthority1 : u32, subauthority2 : u32, subauthority3 : u32, subauthority4 : u32, subauthority5 : u32, subauthority6 : u32, subauthority7 : u32, sid : *mut super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSid(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthority0 : u32, subauthority1 : u32, subauthority2 : u32, subauthority3 : u32, subauthority4 : u32, subauthority5 : u32, subauthority6 : u32, subauthority7 : u32, sid : *mut super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSidEx(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthorities : *const u32, sid : *mut super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSidEx(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthorities : *const u32, sid : *mut super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlAllocateHeap(heaphandle : *const core::ffi::c_void, flags : u32, size : usize) -> *mut core::ffi::c_void); #[cfg(feature = "Win32_System_Kernel")] windows_targets::link!("ntdll.dll" "system" fn RtlAppendStringToString(destination : *mut super::super::super::Win32::System::Kernel:: STRING, source : *const super::super::super::Win32::System::Kernel:: STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -748,14 +776,17 @@ windows_targets::link!("ntdll.dll" "system" fn RtlCompareMemoryUlong(source : *c windows_targets::link!("ntdll.dll" "system" fn RtlCompressBuffer(compressionformatandengine : u16, uncompressedbuffer : *const u8, uncompressedbuffersize : u32, compressedbuffer : *mut u8, compressedbuffersize : u32, uncompressedchunksize : u32, finalcompressedsize : *mut u32, workspace : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn RtlCompressChunks(uncompressedbuffer : *const u8, uncompressedbuffersize : u32, compressedbuffer : *mut u8, compressedbuffersize : u32, compresseddatainfo : *mut COMPRESSED_DATA_INFO, compresseddatainfolength : u32, workspace : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlCopyLuid(destinationluid : *mut super::super::super::Win32::Foundation:: LUID, sourceluid : *const super::super::super::Win32::Foundation:: LUID)); -windows_targets::link!("ntdll.dll" "system" fn RtlCopySid(destinationsidlength : u32, destinationsid : super::super::super::Win32::Foundation:: PSID, sourcesid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlCopySid(destinationsidlength : u32, destinationsid : super::super::super::Win32::Security:: PSID, sourcesid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn RtlCreateAcl(acl : *mut super::super::super::Win32::Security:: ACL, acllength : u32, aclrevision : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlCreateHeap(flags : u32, heapbase : *const core::ffi::c_void, reservesize : usize, commitsize : usize, lock : *const core::ffi::c_void, parameters : *const RTL_HEAP_PARAMETERS) -> *mut core::ffi::c_void); -windows_targets::link!("ntdll.dll" "system" fn RtlCreateServiceSid(servicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, servicesid : super::super::super::Win32::Foundation:: PSID, servicesidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlCreateServiceSid(servicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, servicesid : super::super::super::Win32::Security:: PSID, servicesidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlCreateSystemVolumeInformationFolder(volumerootpath : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlCreateUnicodeString(destinationstring : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, sourcestring : windows_sys::core::PCWSTR) -> super::super::super::Win32::Foundation:: BOOLEAN); -windows_targets::link!("ntdll.dll" "system" fn RtlCreateVirtualAccountSid(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, basesubauthority : u32, sid : super::super::super::Win32::Foundation:: PSID, sidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlCreateVirtualAccountSid(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, basesubauthority : u32, sid : super::super::super::Win32::Security:: PSID, sidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlCustomCPToUnicodeN(customcp : *const CPTABLEINFO, unicodestring : windows_sys::core::PWSTR, maxbytesinunicodestring : u32, bytesinunicodestring : *mut u32, customcpstring : windows_sys::core::PCSTR, bytesincustomcpstring : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlDecompressBuffer(compressionformat : u16, uncompressedbuffer : *mut u8, uncompressedbuffersize : u32, compressedbuffer : *const u8, compressedbuffersize : u32, finaluncompressedsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlDecompressBufferEx(compressionformat : u16, uncompressedbuffer : *mut u8, uncompressedbuffersize : u32, compressedbuffer : *const u8, compressedbuffersize : u32, finaluncompressedsize : *mut u32, workspace : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -769,12 +800,15 @@ windows_targets::link!("ntoskrnl.exe" "system" fn RtlDescribeChunk(compressionfo windows_targets::link!("ntdll.dll" "system" fn RtlDestroyHeap(heaphandle : *const core::ffi::c_void) -> *mut core::ffi::c_void); windows_targets::link!("ntdll.dll" "system" fn RtlDowncaseUnicodeString(destinationstring : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, sourcestring : *const super::super::super::Win32::Foundation:: UNICODE_STRING, allocatedestinationstring : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlDuplicateUnicodeString(flags : u32, stringin : *const super::super::super::Win32::Foundation:: UNICODE_STRING, stringout : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn RtlEqualPrefixSid(sid1 : super::super::super::Win32::Foundation:: PSID, sid2 : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); -windows_targets::link!("ntdll.dll" "system" fn RtlEqualSid(sid1 : super::super::super::Win32::Foundation:: PSID, sid2 : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlEqualPrefixSid(sid1 : super::super::super::Win32::Security:: PSID, sid2 : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlEqualSid(sid1 : super::super::super::Win32::Security:: PSID, sid2 : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntoskrnl.exe" "system" fn RtlFindUnicodePrefix(prefixtable : *const UNICODE_PREFIX_TABLE, fullname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, caseinsensitiveindex : u32) -> *mut UNICODE_PREFIX_TABLE_ENTRY); windows_targets::link!("ntdll.dll" "system" fn RtlFreeHeap(heaphandle : *const core::ffi::c_void, flags : u32, baseaddress : *const core::ffi::c_void) -> u32); -windows_targets::link!("ntdll.dll" "system" fn RtlFreeSid(sid : super::super::super::Win32::Foundation:: PSID) -> *mut core::ffi::c_void); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlFreeSid(sid : super::super::super::Win32::Security:: PSID) -> *mut core::ffi::c_void); windows_targets::link!("ntdll.dll" "system" fn RtlGenerate8dot3Name(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, allowextendedcharacters : super::super::super::Win32::Foundation:: BOOLEAN, context : *mut GENERATE_NAME_CONTEXT, name8dot3 : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn RtlGetAce(acl : *const super::super::super::Win32::Security:: ACL, aceindex : u32, ace : *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -782,22 +816,22 @@ windows_targets::link!("ntdll.dll" "system" fn RtlGetCompressionWorkSpaceSize(co #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn RtlGetDaclSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, daclpresent : *mut super::super::super::Win32::Foundation:: BOOLEAN, dacl : *mut *mut super::super::super::Win32::Security:: ACL, dacldefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlGetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : *mut super::super::super::Win32::Foundation:: PSID, groupdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlGetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : *mut super::super::super::Win32::Security:: PSID, groupdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlGetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : *mut super::super::super::Win32::Foundation:: PSID, ownerdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlGetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : *mut super::super::super::Win32::Security:: PSID, ownerdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn RtlGetSaclSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, saclpresent : *mut super::super::super::Win32::Foundation:: BOOLEAN, sacl : *mut *mut super::super::super::Win32::Security:: ACL, sacldefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlIdentifierAuthoritySid(sid : super::super::super::Win32::Foundation:: PSID) -> *mut super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY); +windows_targets::link!("ntdll.dll" "system" fn RtlIdentifierAuthoritySid(sid : super::super::super::Win32::Security:: PSID) -> *mut super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY); windows_targets::link!("ntdll.dll" "system" fn RtlIdnToAscii(flags : u32, sourcestring : windows_sys::core::PCWSTR, sourcestringlength : i32, destinationstring : windows_sys::core::PWSTR, destinationstringlength : *mut i32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlIdnToNameprepUnicode(flags : u32, sourcestring : windows_sys::core::PCWSTR, sourcestringlength : i32, destinationstring : windows_sys::core::PWSTR, destinationstringlength : *mut i32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlIdnToUnicode(flags : u32, sourcestring : windows_sys::core::PCWSTR, sourcestringlength : i32, destinationstring : windows_sys::core::PWSTR, destinationstringlength : *mut i32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlInitCodePageTable(tablebase : *const u16, codepagetable : *mut CPTABLEINFO)); windows_targets::link!("ntdll.dll" "system" fn RtlInitUnicodeStringEx(destinationstring : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, sourcestring : windows_sys::core::PCWSTR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlInitializeSid(sid : super::super::super::Win32::Foundation:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlInitializeSid(sid : super::super::super::Win32::Security:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "cdecl" fn RtlInitializeSidEx(sid : super::super::super::Win32::Foundation:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, ...) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "cdecl" fn RtlInitializeSidEx(sid : super::super::super::Win32::Security:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, ...) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntoskrnl.exe" "system" fn RtlInitializeUnicodePrefix(prefixtable : *mut UNICODE_PREFIX_TABLE)); #[cfg(feature = "Wdk_Foundation")] @@ -812,7 +846,8 @@ windows_targets::link!("ntdll.dll" "system" fn RtlIsPartialPlaceholderFileInfo(i windows_targets::link!("ntoskrnl.exe" "system" fn RtlIsSandboxedToken(context : *const super::super::Foundation:: SECURITY_SUBJECT_CONTEXT, previousmode : i8) -> super::super::super::Win32::Foundation:: BOOLEAN); windows_targets::link!("ntoskrnl.exe" "system" fn RtlIsValidOemCharacter(char : windows_sys::core::PWSTR) -> super::super::super::Win32::Foundation:: BOOLEAN); windows_targets::link!("ntdll.dll" "system" fn RtlLengthRequiredSid(subauthoritycount : u32) -> u32); -windows_targets::link!("ntdll.dll" "system" fn RtlLengthSid(sid : super::super::super::Win32::Foundation:: PSID) -> u32); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlLengthSid(sid : super::super::super::Win32::Security:: PSID) -> u32); windows_targets::link!("ntdll.dll" "system" fn RtlMultiByteToUnicodeN(unicodestring : windows_sys::core::PWSTR, maxbytesinunicodestring : u32, bytesinunicodestring : *mut u32, multibytestring : windows_sys::core::PCSTR, bytesinmultibytestring : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlMultiByteToUnicodeSize(bytesinunicodestring : *mut u32, multibytestring : windows_sys::core::PCSTR, bytesinmultibytestring : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] @@ -835,20 +870,22 @@ windows_targets::link!("ntdll.dll" "system" fn RtlRandomEx(seed : *mut u32) -> u #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntoskrnl.exe" "system" fn RtlRemoveUnicodePrefix(prefixtable : *const UNICODE_PREFIX_TABLE, prefixtableentry : *const UNICODE_PREFIX_TABLE_ENTRY)); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlReplaceSidInSd(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, oldsid : super::super::super::Win32::Foundation:: PSID, newsid : super::super::super::Win32::Foundation:: PSID, numchanges : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlReplaceSidInSd(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, oldsid : super::super::super::Win32::Security:: PSID, newsid : super::super::super::Win32::Security:: PSID, numchanges : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn RtlReserveChunk(compressionformat : u16, compressedbuffer : *mut *mut u8, endofcompressedbufferplus1 : *const u8, chunkbuffer : *mut *mut u8, chunksize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlSecondsSince1970ToTime(elapsedseconds : u32, time : *mut i64)); windows_targets::link!("ntdll.dll" "system" fn RtlSecondsSince1980ToTime(elapsedseconds : u32, time : *mut i64)); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlSelfRelativeToAbsoluteSD(selfrelativesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptorsize : *mut u32, dacl : *mut super::super::super::Win32::Security:: ACL, daclsize : *mut u32, sacl : *mut super::super::super::Win32::Security:: ACL, saclsize : *mut u32, owner : super::super::super::Win32::Foundation:: PSID, ownersize : *mut u32, primarygroup : super::super::super::Win32::Foundation:: PSID, primarygroupsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlSelfRelativeToAbsoluteSD(selfrelativesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptorsize : *mut u32, dacl : *mut super::super::super::Win32::Security:: ACL, daclsize : *mut u32, sacl : *mut super::super::super::Win32::Security:: ACL, saclsize : *mut u32, owner : super::super::super::Win32::Security:: PSID, ownersize : *mut u32, primarygroup : super::super::super::Win32::Security:: PSID, primarygroupsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlSetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : super::super::super::Win32::Foundation:: PSID, groupdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlSetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : super::super::super::Win32::Security:: PSID, groupdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ntdll.dll" "system" fn RtlSetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : super::super::super::Win32::Foundation:: PSID, ownerdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlSetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : super::super::super::Win32::Security:: PSID, ownerdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlSetProcessPlaceholderCompatibilityMode(mode : i8) -> i8); windows_targets::link!("ntdll.dll" "system" fn RtlSetThreadPlaceholderCompatibilityMode(mode : i8) -> i8); -windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthorityCountSid(sid : super::super::super::Win32::Foundation:: PSID) -> *mut u8); -windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthoritySid(sid : super::super::super::Win32::Foundation:: PSID, subauthority : u32) -> *mut u32); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthorityCountSid(sid : super::super::super::Win32::Security:: PSID) -> *mut u8); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthoritySid(sid : super::super::super::Win32::Security:: PSID, subauthority : u32) -> *mut u32); windows_targets::link!("ntdll.dll" "system" fn RtlTimeToSecondsSince1980(time : *const i64, elapsedseconds : *mut u32) -> super::super::super::Win32::Foundation:: BOOLEAN); #[cfg(feature = "Win32_System_Kernel")] windows_targets::link!("ntdll.dll" "system" fn RtlUnicodeStringToCountedOemString(destinationstring : *mut super::super::super::Win32::System::Kernel:: STRING, sourcestring : *const super::super::super::Win32::Foundation:: UNICODE_STRING, allocatedestinationstring : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -862,7 +899,8 @@ windows_targets::link!("ntdll.dll" "system" fn RtlUpcaseUnicodeStringToOemString windows_targets::link!("ntdll.dll" "system" fn RtlUpcaseUnicodeToCustomCPN(customcp : *const CPTABLEINFO, customcpstring : windows_sys::core::PSTR, maxbytesincustomcpstring : u32, bytesincustomcpstring : *mut u32, unicodestring : windows_sys::core::PCWSTR, bytesinunicodestring : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlUpcaseUnicodeToMultiByteN(multibytestring : windows_sys::core::PSTR, maxbytesinmultibytestring : u32, bytesinmultibytestring : *mut u32, unicodestring : *const u16, bytesinunicodestring : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlUpcaseUnicodeToOemN(oemstring : windows_sys::core::PSTR, maxbytesinoemstring : u32, bytesinoemstring : *mut u32, unicodestring : *const u16, bytesinunicodestring : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn RtlValidSid(sid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn RtlValidSid(sid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); windows_targets::link!("ntdll.dll" "system" fn RtlValidateUnicodeString(flags : u32, string : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_Kernel")] windows_targets::link!("ntdll.dll" "system" fn RtlxOemStringToUnicodeSize(oemstring : *const super::super::super::Win32::System::Kernel:: STRING) -> u32); @@ -948,7 +986,7 @@ windows_targets::link!("ntoskrnl.exe" "system" fn SeQuerySessionIdTokenEx(token windows_targets::link!("ntoskrnl.exe" "system" fn SeRegisterLogonSessionTerminatedRoutine(callbackroutine : PSE_LOGON_SESSION_TERMINATED_ROUTINE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn SeRegisterLogonSessionTerminatedRoutineEx(callbackroutine : PSE_LOGON_SESSION_TERMINATED_ROUTINE_EX, context : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security_Authentication_Identity")] -windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEventWithSubCategory(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Foundation:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY, auditsubcategoryid : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEventWithSubCategory(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Security:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY, auditsubcategoryid : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security"))] windows_targets::link!("ntoskrnl.exe" "system" fn SeSetAccessStateGenericMapping(accessstate : *mut super::super::Foundation:: ACCESS_STATE, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING)); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_Security"))] @@ -967,11 +1005,11 @@ windows_targets::link!("ntoskrnl.exe" "system" fn SeTokenType(token : *const cor windows_targets::link!("ntoskrnl.exe" "system" fn SeUnregisterLogonSessionTerminatedRoutine(callbackroutine : PSE_LOGON_SESSION_TERMINATED_ROUTINE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn SeUnregisterLogonSessionTerminatedRoutineEx(callbackroutine : PSE_LOGON_SESSION_TERMINATED_ROUTINE_EX, context : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountName(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, sidsize : *mut u32, sid : super::super::super::Win32::Foundation:: PSID, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE, domainsize : *mut u32, referenceddomain : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountName(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, sidsize : *mut u32, sid : super::super::super::Win32::Security:: PSID, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE, domainsize : *mut u32, referenceddomain : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountSid(sid : super::super::super::Win32::Foundation:: PSID, namesize : *mut u32, namebuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, domainsize : *mut u32, domainbuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountSid(sid : super::super::super::Win32::Security:: PSID, namesize : *mut u32, namebuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, domainsize : *mut u32, domainbuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] -windows_targets::link!("ksecdd.sys" "system" fn SecLookupWellKnownSid(sidtype : super::super::super::Win32::Security:: WELL_KNOWN_SID_TYPE, sid : super::super::super::Win32::Foundation:: PSID, sidbuffersize : u32, sidsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ksecdd.sys" "system" fn SecLookupWellKnownSid(sidtype : super::super::super::Win32::Security:: WELL_KNOWN_SID_TYPE, sid : super::super::super::Win32::Security:: PSID, sidbuffersize : u32, sidsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ksecdd.sys" "system" fn SecMakeSPN(serviceclass : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, servicename : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, instancename : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, instanceport : u16, referrer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, spn : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, length : *mut u32, allocate : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ksecdd.sys" "system" fn SecMakeSPNEx(serviceclass : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, servicename : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, instancename : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, instanceport : u16, referrer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, targetinfo : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, spn : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, length : *mut u32, allocate : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ksecdd.sys" "system" fn SecMakeSPNEx2(serviceclass : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, servicename : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, instancename : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, instanceport : u16, referrer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, intargetinfo : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, spn : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, totalsize : *mut u32, allocate : super::super::super::Win32::Foundation:: BOOLEAN, istargetinfomarshaled : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -1001,16 +1039,38 @@ windows_targets::link!("ksecdd.sys" "system" fn SspiReinitAsyncContext(handle : #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ksecdd.sys" "system" fn SspiSetAsyncNotifyCallback(context : *const super::super::Foundation:: SspiAsyncContext, callback : SspiAsyncNotifyCallback, callbackdata : *const core::ffi::c_void) -> windows_sys::core::HRESULT); windows_targets::link!("secur32.dll" "system" fn VerifySignature(phcontext : *const SecHandle, pmessage : *const SecBufferDesc, messageseqno : u32, pfqop : *mut u32) -> windows_sys::core::HRESULT); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, desiredaccess : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckByTypeAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckByTypeResultListAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwAdjustGroupsToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, resettodefault : super::super::super::Win32::Foundation:: BOOLEAN, newstate : *const super::super::super::Win32::Security:: TOKEN_GROUPS, bufferlength : u32, previousstate : *mut super::super::super::Win32::Security:: TOKEN_GROUPS, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwAdjustPrivilegesToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, disableallprivileges : super::super::super::Win32::Foundation:: BOOLEAN, newstate : *const super::super::super::Win32::Security:: TOKEN_PRIVILEGES, bufferlength : u32, previousstate : *mut super::super::super::Win32::Security:: TOKEN_PRIVILEGES, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwAllocateVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, regionsize : *mut usize, allocationtype : u32, protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_Memory")] windows_targets::link!("ntdll.dll" "system" fn ZwAllocateVirtualMemoryEx(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, allocationtype : u32, pageprotection : u32, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_IO")] +windows_targets::link!("ntdll.dll" "system" fn ZwCancelIoFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, iorequesttocancel : *const super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwCloseObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwCreateDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] windows_targets::link!("ntdll.dll" "system" fn ZwCreateEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, eventtype : super::super::super::Win32::System::Kernel:: EVENT_TYPE, initialstate : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Memory"))] +windows_targets::link!("ntdll.dll" "system" fn ZwCreateSectionEx(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, maximumsize : *const i64, sectionpageprotection : u32, allocationattributes : u32, filehandle : super::super::super::Win32::Foundation:: HANDLE, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwDeleteFile(objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwDeleteObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwDuplicateObject(sourceprocesshandle : super::super::super::Win32::Foundation:: HANDLE, sourcehandle : super::super::super::Win32::Foundation:: HANDLE, targetprocesshandle : super::super::super::Win32::Foundation:: HANDLE, targethandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, handleattributes : u32, options : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_Security"))] windows_targets::link!("ntdll.dll" "system" fn ZwDuplicateToken(existingtokenhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, effectiveonly : super::super::super::Win32::Foundation:: BOOLEAN, tokentype : super::super::super::Win32::Security:: TOKEN_TYPE, newtokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwFilterToken(existingtokenhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32, sidstodisable : *const super::super::super::Win32::Security:: TOKEN_GROUPS, privilegestodelete : *const super::super::super::Win32::Security:: TOKEN_PRIVILEGES, restrictedsids : *const super::super::super::Win32::Security:: TOKEN_GROUPS, newtokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwFlushBuffersFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] @@ -1020,18 +1080,30 @@ windows_targets::link!("ntdll.dll" "system" fn ZwFlushVirtualMemory(processhandl windows_targets::link!("ntdll.dll" "system" fn ZwFreeVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, freetype : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwFsControlFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fscontrolcode : u32, inputbuffer : *const core::ffi::c_void, inputbufferlength : u32, outputbuffer : *mut core::ffi::c_void, outputbufferlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwImpersonateAnonymousToken(threadhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwLockFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, byteoffset : *const i64, length : *const i64, key : u32, failimmediately : super::super::super::Win32::Foundation:: BOOLEAN, exclusivelock : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwNotifyChangeKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, completionfilter : u32, watchtree : super::super::super::Win32::Foundation:: BOOLEAN, buffer : *mut core::ffi::c_void, buffersize : u32, asynchronous : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwOpenDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, clienttoken : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, grantedaccess : u32, privileges : *const super::super::super::Win32::Security:: PRIVILEGE_SET, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, accessgranted : super::super::super::Win32::Foundation:: BOOLEAN, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwOpenProcessToken(processhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwOpenProcessTokenEx(processhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, handleattributes : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwOpenThreadToken(threadhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, openasself : super::super::super::Win32::Foundation:: BOOLEAN, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwOpenThreadTokenEx(threadhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, openasself : super::super::super::Win32::Foundation:: BOOLEAN, handleattributes : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwPrivilegeCheck(clienttoken : super::super::super::Win32::Foundation:: HANDLE, requiredprivileges : *mut super::super::super::Win32::Security:: PRIVILEGE_SET, result : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwPrivilegeObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, privileges : *const super::super::super::Win32::Security:: PRIVILEGE_SET, accessgranted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("ntdll.dll" "system" fn ZwPrivilegedServiceAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, servicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, clienttoken : super::super::super::Win32::Foundation:: HANDLE, privileges : *const super::super::super::Win32::Security:: PRIVILEGE_SET, accessgranted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwQueryDirectoryFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, filename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwQueryDirectoryFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS, queryflags : u32, filename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQueryDirectoryObject(directoryhandle : super::super::super::Win32::Foundation:: HANDLE, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, restartscan : super::super::super::Win32::Foundation:: BOOLEAN, context : *mut u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwQueryEaFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, ealist : *const core::ffi::c_void, ealistlength : u32, eaindex : *const u32, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] @@ -1040,8 +1112,8 @@ windows_targets::link!("ntdll.dll" "system" fn ZwQueryFullAttributesFile(objecta windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, tokeninformationclass : super::super::super::Win32::Security:: TOKEN_INFORMATION_CLASS, tokeninformation : *mut core::ffi::c_void, tokeninformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwQueryObject(handle : super::super::super::Win32::Foundation:: HANDLE, objectinformationclass : super::super::Foundation:: OBJECT_INFORMATION_CLASS, objectinformation : *mut core::ffi::c_void, objectinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Win32_System_IO")] -windows_targets::link!("ntdll.dll" "system" fn ZwQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Foundation:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_IO"))] +windows_targets::link!("ntdll.dll" "system" fn ZwQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Security:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security")] windows_targets::link!("ntdll.dll" "system" fn ZwQuerySecurityObject(handle : super::super::super::Win32::Foundation:: HANDLE, securityinformation : u32, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, length : u32, lengthneeded : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwQueryVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void, memoryinformationclass : MEMORY_INFORMATION_CLASS, memoryinformation : *mut core::ffi::c_void, memoryinformationlength : usize, returnlength : *mut usize) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -1061,7 +1133,6 @@ windows_targets::link!("ntdll.dll" "system" fn ZwSetSecurityObject(handle : supe windows_targets::link!("ntdll.dll" "system" fn ZwSetVolumeInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fsinformation : *const core::ffi::c_void, length : u32, fsinformationclass : FS_INFORMATION_CLASS) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwUnlockFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, byteoffset : *const i64, length : *const i64, key : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwWaitForSingleObject(handle : super::super::super::Win32::Foundation:: HANDLE, alertable : super::super::super::Win32::Foundation:: BOOLEAN, timeout : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); pub const ATOMIC_CREATE_ECP_IN_FLAG_BEST_EFFORT: u32 = 256u32; pub const ATOMIC_CREATE_ECP_IN_FLAG_EOF_SPECIFIED: u32 = 4u32; pub const ATOMIC_CREATE_ECP_IN_FLAG_FILE_ATTRIBUTES_SPECIFIED: u32 = 32u32; @@ -3433,7 +3504,7 @@ pub struct MSV1_0_GETUSERINFO_REQUEST { #[derive(Clone, Copy)] pub struct MSV1_0_GETUSERINFO_RESPONSE { pub MessageType: super::super::super::Win32::Security::Authentication::Identity::MSV1_0_PROTOCOL_MESSAGE_TYPE, - pub UserSid: super::super::super::Win32::Foundation::PSID, + pub UserSid: super::super::super::Win32::Security::PSID, pub UserName: super::super::super::Win32::Foundation::UNICODE_STRING, pub LogonDomainName: super::super::super::Win32::Foundation::UNICODE_STRING, pub LogonServer: super::super::super::Win32::Foundation::UNICODE_STRING, @@ -4110,6 +4181,7 @@ pub struct SE_AUDIT_INFO { pub GenerateOnClose: super::super::super::Win32::Foundation::BOOLEAN, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct SE_EXPORTS { pub SeCreateTokenPrivilege: super::super::super::Win32::Foundation::LUID, @@ -4135,33 +4207,33 @@ pub struct SE_EXPORTS { pub SeSystemEnvironmentPrivilege: super::super::super::Win32::Foundation::LUID, pub SeChangeNotifyPrivilege: super::super::super::Win32::Foundation::LUID, pub SeRemoteShutdownPrivilege: super::super::super::Win32::Foundation::LUID, - pub SeNullSid: super::super::super::Win32::Foundation::PSID, - pub SeWorldSid: super::super::super::Win32::Foundation::PSID, - pub SeLocalSid: super::super::super::Win32::Foundation::PSID, - pub SeCreatorOwnerSid: super::super::super::Win32::Foundation::PSID, - pub SeCreatorGroupSid: super::super::super::Win32::Foundation::PSID, - pub SeNtAuthoritySid: super::super::super::Win32::Foundation::PSID, - pub SeDialupSid: super::super::super::Win32::Foundation::PSID, - pub SeNetworkSid: super::super::super::Win32::Foundation::PSID, - pub SeBatchSid: super::super::super::Win32::Foundation::PSID, - pub SeInteractiveSid: super::super::super::Win32::Foundation::PSID, - pub SeLocalSystemSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasAdminsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasUsersSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasGuestsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasPowerUsersSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasAccountOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasSystemOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasPrintOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasBackupOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAuthenticatedUsersSid: super::super::super::Win32::Foundation::PSID, - pub SeRestrictedSid: super::super::super::Win32::Foundation::PSID, - pub SeAnonymousLogonSid: super::super::super::Win32::Foundation::PSID, + pub SeNullSid: super::super::super::Win32::Security::PSID, + pub SeWorldSid: super::super::super::Win32::Security::PSID, + pub SeLocalSid: super::super::super::Win32::Security::PSID, + pub SeCreatorOwnerSid: super::super::super::Win32::Security::PSID, + pub SeCreatorGroupSid: super::super::super::Win32::Security::PSID, + pub SeNtAuthoritySid: super::super::super::Win32::Security::PSID, + pub SeDialupSid: super::super::super::Win32::Security::PSID, + pub SeNetworkSid: super::super::super::Win32::Security::PSID, + pub SeBatchSid: super::super::super::Win32::Security::PSID, + pub SeInteractiveSid: super::super::super::Win32::Security::PSID, + pub SeLocalSystemSid: super::super::super::Win32::Security::PSID, + pub SeAliasAdminsSid: super::super::super::Win32::Security::PSID, + pub SeAliasUsersSid: super::super::super::Win32::Security::PSID, + pub SeAliasGuestsSid: super::super::super::Win32::Security::PSID, + pub SeAliasPowerUsersSid: super::super::super::Win32::Security::PSID, + pub SeAliasAccountOpsSid: super::super::super::Win32::Security::PSID, + pub SeAliasSystemOpsSid: super::super::super::Win32::Security::PSID, + pub SeAliasPrintOpsSid: super::super::super::Win32::Security::PSID, + pub SeAliasBackupOpsSid: super::super::super::Win32::Security::PSID, + pub SeAuthenticatedUsersSid: super::super::super::Win32::Security::PSID, + pub SeRestrictedSid: super::super::super::Win32::Security::PSID, + pub SeAnonymousLogonSid: super::super::super::Win32::Security::PSID, pub SeUndockPrivilege: super::super::super::Win32::Foundation::LUID, pub SeSyncAgentPrivilege: super::super::super::Win32::Foundation::LUID, pub SeEnableDelegationPrivilege: super::super::super::Win32::Foundation::LUID, - pub SeLocalServiceSid: super::super::super::Win32::Foundation::PSID, - pub SeNetworkServiceSid: super::super::super::Win32::Foundation::PSID, + pub SeLocalServiceSid: super::super::super::Win32::Security::PSID, + pub SeNetworkServiceSid: super::super::super::Win32::Security::PSID, pub SeManageVolumePrivilege: super::super::super::Win32::Foundation::LUID, pub SeImpersonatePrivilege: super::super::super::Win32::Foundation::LUID, pub SeCreateGlobalPrivilege: super::super::super::Win32::Foundation::LUID, @@ -4170,21 +4242,21 @@ pub struct SE_EXPORTS { pub SeIncreaseWorkingSetPrivilege: super::super::super::Win32::Foundation::LUID, pub SeTimeZonePrivilege: super::super::super::Win32::Foundation::LUID, pub SeCreateSymbolicLinkPrivilege: super::super::super::Win32::Foundation::LUID, - pub SeIUserSid: super::super::super::Win32::Foundation::PSID, - pub SeUntrustedMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeLowMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeMediumMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeHighMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeSystemMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeOwnerRightsSid: super::super::super::Win32::Foundation::PSID, - pub SeAllAppPackagesSid: super::super::super::Win32::Foundation::PSID, - pub SeUserModeDriversSid: super::super::super::Win32::Foundation::PSID, - pub SeProcTrustWinTcbSid: super::super::super::Win32::Foundation::PSID, - pub SeTrustedInstallerSid: super::super::super::Win32::Foundation::PSID, + pub SeIUserSid: super::super::super::Win32::Security::PSID, + pub SeUntrustedMandatorySid: super::super::super::Win32::Security::PSID, + pub SeLowMandatorySid: super::super::super::Win32::Security::PSID, + pub SeMediumMandatorySid: super::super::super::Win32::Security::PSID, + pub SeHighMandatorySid: super::super::super::Win32::Security::PSID, + pub SeSystemMandatorySid: super::super::super::Win32::Security::PSID, + pub SeOwnerRightsSid: super::super::super::Win32::Security::PSID, + pub SeAllAppPackagesSid: super::super::super::Win32::Security::PSID, + pub SeUserModeDriversSid: super::super::super::Win32::Security::PSID, + pub SeProcTrustWinTcbSid: super::super::super::Win32::Security::PSID, + pub SeTrustedInstallerSid: super::super::super::Win32::Security::PSID, pub SeDelegateSessionUserImpersonatePrivilege: super::super::super::Win32::Foundation::LUID, - pub SeAppSiloSid: super::super::super::Win32::Foundation::PSID, - pub SeAppSiloVolumeRootMinimalCapabilitySid: super::super::super::Win32::Foundation::PSID, - pub SeAppSiloProfilesRootMinimalCapabilitySid: super::super::super::Win32::Foundation::PSID, + pub SeAppSiloSid: super::super::super::Win32::Security::PSID, + pub SeAppSiloVolumeRootMinimalCapabilitySid: super::super::super::Win32::Security::PSID, + pub SeAppSiloProfilesRootMinimalCapabilitySid: super::super::super::Win32::Security::PSID, } #[repr(C)] #[cfg(feature = "Win32_Networking_WinSock")] diff --git a/crates/libs/sys/src/Windows/Wdk/System/Memory/mod.rs b/crates/libs/sys/src/Windows/Wdk/System/Memory/mod.rs new file mode 100644 index 0000000000..d126471950 --- /dev/null +++ b/crates/libs/sys/src/Windows/Wdk/System/Memory/mod.rs @@ -0,0 +1,11 @@ +windows_targets::link!("ntdll.dll" "system" fn NtMapViewOfSection(sectionhandle : super::super::super::Win32::Foundation:: HANDLE, processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, commitsize : usize, sectionoffset : *mut i64, viewsize : *mut usize, inheritdisposition : SECTION_INHERIT, allocationtype : u32, win32protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtUnmapViewOfSection(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwMapViewOfSection(sectionhandle : super::super::super::Win32::Foundation:: HANDLE, processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, commitsize : usize, sectionoffset : *mut i64, viewsize : *mut usize, inheritdisposition : SECTION_INHERIT, allocationtype : u32, win32protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwUnmapViewOfSection(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub const ViewShare: SECTION_INHERIT = 1i32; +pub const ViewUnmap: SECTION_INHERIT = 2i32; +pub type SECTION_INHERIT = i32; diff --git a/crates/libs/sys/src/Windows/Wdk/System/OfflineRegistry/mod.rs b/crates/libs/sys/src/Windows/Wdk/System/OfflineRegistry/mod.rs index e3231e9b4a..0f4d15af18 100644 --- a/crates/libs/sys/src/Windows/Wdk/System/OfflineRegistry/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/System/OfflineRegistry/mod.rs @@ -25,4 +25,4 @@ windows_targets::link!("offreg.dll" "system" fn ORSetValue(handle : ORHKEY, lpva windows_targets::link!("offreg.dll" "system" fn ORSetVirtualFlags(handle : ORHKEY, dwflags : u32) -> super::super::super::Win32::Foundation:: WIN32_ERROR); windows_targets::link!("offreg.dll" "system" fn ORShutdown() -> super::super::super::Win32::Foundation:: WIN32_ERROR); windows_targets::link!("offreg.dll" "system" fn ORStart() -> super::super::super::Win32::Foundation:: WIN32_ERROR); -pub type ORHKEY = isize; +pub type ORHKEY = *mut core::ffi::c_void; diff --git a/crates/libs/sys/src/Windows/Wdk/System/Registry/mod.rs b/crates/libs/sys/src/Windows/Wdk/System/Registry/mod.rs index eb5a1e2b76..36270d36d8 100644 --- a/crates/libs/sys/src/Windows/Wdk/System/Registry/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/System/Registry/mod.rs @@ -1,18 +1,100 @@ +windows_targets::link!("ntdll.dll" "system" fn NtCommitRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtCreateKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtCreateKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtCreateRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtDeleteKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtDeleteValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtEnumerateKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtEnumerateValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtFlushKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] windows_targets::link!("ntdll.dll" "system" fn NtNotifyChangeMultipleKeys(masterkeyhandle : super::super::super::Win32::Foundation:: HANDLE, count : u32, subordinateobjects : *const super::super::Foundation:: OBJECT_ATTRIBUTES, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, completionfilter : u32, watchtree : super::super::super::Win32::Foundation:: BOOLEAN, buffer : *mut core::ffi::c_void, buffersize : u32, asynchronous : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenKeyEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenKeyTransactedEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtQueryKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtQueryMultipleValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valueentries : *mut KEY_VALUE_ENTRY, entrycount : u32, valuebuffer : *mut core::ffi::c_void, bufferlength : *mut u32, requiredbufferlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtQueryValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtRenameKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, newname : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtRestoreKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtRollbackRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtSaveKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtSaveKeyEx(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, format : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtSetInformationKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keysetinformationclass : KEY_SET_INFORMATION_CLASS, keysetinformation : *const core::ffi::c_void, keysetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtSetValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, titleindex : u32, r#type : u32, data : *const core::ffi::c_void, datasize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwCommitRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwCreateKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwCreateKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwCreateRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwDeleteKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwDeleteValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwFlushKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] +windows_targets::link!("ntdll.dll" "system" fn ZwNotifyChangeMultipleKeys(masterkeyhandle : super::super::super::Win32::Foundation:: HANDLE, count : u32, subordinateobjects : *const super::super::Foundation:: OBJECT_ATTRIBUTES, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, completionfilter : u32, watchtree : super::super::super::Win32::Foundation:: BOOLEAN, buffer : *mut core::ffi::c_void, buffersize : u32, asynchronous : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransactedEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQueryKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQueryMultipleValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valueentries : *mut KEY_VALUE_ENTRY, entrycount : u32, valuebuffer : *mut core::ffi::c_void, bufferlength : *mut u32, requiredbufferlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQueryValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwRenameKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, newname : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwRestoreKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwRollbackRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwSaveKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwSaveKeyEx(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, format : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keysetinformationclass : KEY_SET_INFORMATION_CLASS, keysetinformation : *const core::ffi::c_void, keysetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwSetValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, titleindex : u32, r#type : u32, data : *const core::ffi::c_void, datasize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub const KeyBasicInformation: KEY_INFORMATION_CLASS = 0i32; +pub const KeyCachedInformation: KEY_INFORMATION_CLASS = 4i32; pub const KeyControlFlagsInformation: KEY_SET_INFORMATION_CLASS = 2i32; +pub const KeyFlagsInformation: KEY_INFORMATION_CLASS = 5i32; +pub const KeyFullInformation: KEY_INFORMATION_CLASS = 2i32; +pub const KeyHandleTagsInformation: KEY_INFORMATION_CLASS = 7i32; +pub const KeyLayerInformation: KEY_INFORMATION_CLASS = 9i32; +pub const KeyNameInformation: KEY_INFORMATION_CLASS = 3i32; +pub const KeyNodeInformation: KEY_INFORMATION_CLASS = 1i32; pub const KeySetDebugInformation: KEY_SET_INFORMATION_CLASS = 4i32; pub const KeySetHandleTagsInformation: KEY_SET_INFORMATION_CLASS = 5i32; pub const KeySetLayerInformation: KEY_SET_INFORMATION_CLASS = 6i32; pub const KeySetVirtualizationInformation: KEY_SET_INFORMATION_CLASS = 3i32; +pub const KeyTrustInformation: KEY_INFORMATION_CLASS = 8i32; +pub const KeyValueBasicInformation: KEY_VALUE_INFORMATION_CLASS = 0i32; +pub const KeyValueFullInformation: KEY_VALUE_INFORMATION_CLASS = 1i32; +pub const KeyValueFullInformationAlign64: KEY_VALUE_INFORMATION_CLASS = 3i32; +pub const KeyValueLayerInformation: KEY_VALUE_INFORMATION_CLASS = 5i32; +pub const KeyValuePartialInformation: KEY_VALUE_INFORMATION_CLASS = 2i32; +pub const KeyValuePartialInformationAlign64: KEY_VALUE_INFORMATION_CLASS = 4i32; +pub const KeyVirtualizationInformation: KEY_INFORMATION_CLASS = 6i32; pub const KeyWow64FlagsInformation: KEY_SET_INFORMATION_CLASS = 1i32; pub const KeyWriteTimeInformation: KEY_SET_INFORMATION_CLASS = 0i32; +pub const MaxKeyInfoClass: KEY_INFORMATION_CLASS = 10i32; pub const MaxKeySetInfoClass: KEY_SET_INFORMATION_CLASS = 7i32; +pub const MaxKeyValueInfoClass: KEY_VALUE_INFORMATION_CLASS = 6i32; +pub type KEY_INFORMATION_CLASS = i32; pub type KEY_SET_INFORMATION_CLASS = i32; +pub type KEY_VALUE_INFORMATION_CLASS = i32; #[repr(C)] #[derive(Clone, Copy)] pub struct KEY_VALUE_ENTRY { @@ -23,6 +105,44 @@ pub struct KEY_VALUE_ENTRY { } #[repr(C)] #[derive(Clone, Copy)] +pub struct REG_ENUMERATE_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub Index: u32, + pub KeyInformationClass: KEY_INFORMATION_CLASS, + pub KeyInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct REG_ENUMERATE_VALUE_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub Index: u32, + pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, + pub KeyValueInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct REG_QUERY_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub KeyInformationClass: KEY_INFORMATION_CLASS, + pub KeyInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION { pub Object: *mut core::ffi::c_void, pub ValueEntries: *mut KEY_VALUE_ENTRY, @@ -36,6 +156,19 @@ pub struct REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION { } #[repr(C)] #[derive(Clone, Copy)] +pub struct REG_QUERY_VALUE_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub ValueName: *mut super::super::super::Win32::Foundation::UNICODE_STRING, + pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, + pub KeyValueInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct REG_SET_INFORMATION_KEY_INFORMATION { pub Object: *mut core::ffi::c_void, pub KeySetInformationClass: KEY_SET_INFORMATION_CLASS, diff --git a/crates/libs/sys/src/Windows/Wdk/System/SystemInformation/mod.rs b/crates/libs/sys/src/Windows/Wdk/System/SystemInformation/mod.rs index 9ac053fcc7..b854ff7b3c 100644 --- a/crates/libs/sys/src/Windows/Wdk/System/SystemInformation/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/System/SystemInformation/mod.rs @@ -1,6 +1,9 @@ windows_targets::link!("ntdll.dll" "system" fn NtQuerySystemInformation(systeminformationclass : SYSTEM_INFORMATION_CLASS, systeminformation : *mut core::ffi::c_void, systeminformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtQuerySystemTime(systemtime : *mut i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtQueryTimerResolution(maximumtime : *mut u32, minimumtime : *mut u32, currenttime : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQuerySystemInformation(systeminformationclass : SYSTEM_INFORMATION_CLASS, systeminformation : *mut core::ffi::c_void, systeminformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQuerySystemTime(systemtime : *mut i64) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQueryTimerResolution(maximumtime : *mut u32, minimumtime : *mut u32, currenttime : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); pub const SystemBasicInformation: SYSTEM_INFORMATION_CLASS = 0i32; pub const SystemCodeIntegrityInformation: SYSTEM_INFORMATION_CLASS = 103i32; pub const SystemExceptionInformation: SYSTEM_INFORMATION_CLASS = 33i32; diff --git a/crates/libs/sys/src/Windows/Wdk/System/SystemServices/mod.rs b/crates/libs/sys/src/Windows/Wdk/System/SystemServices/mod.rs index 1be34e0fb0..965bfe2c6f 100644 --- a/crates/libs/sys/src/Windows/Wdk/System/SystemServices/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/System/SystemServices/mod.rs @@ -122,19 +122,22 @@ windows_targets::link!("ntdll.dll" "system" fn DbgSetDebugFilterState(componenti windows_targets::link!("ntoskrnl.exe" "system" fn DbgSetDebugPrintCallback(debugprintcallback : PDEBUG_PRINT_CALLBACK, enable : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn EtwActivityIdControl(controlcode : u32, activityid : *mut windows_sys::core::GUID) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_Diagnostics_Etw")] -windows_targets::link!("ntdll.dll" "system" fn EtwEventEnabled(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR) -> super::super::super::Win32::Foundation:: BOOLEAN); -windows_targets::link!("ntoskrnl.exe" "system" fn EtwProviderEnabled(reghandle : u64, level : u8, keyword : u64) -> super::super::super::Win32::Foundation:: BOOLEAN); +windows_targets::link!("ntdll.dll" "system" fn EtwEventEnabled(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR) -> super::super::super::Win32::Foundation:: BOOLEAN); +#[cfg(feature = "Win32_System_Diagnostics_Etw")] +windows_targets::link!("ntoskrnl.exe" "system" fn EtwProviderEnabled(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, level : u8, keyword : u64) -> super::super::super::Win32::Foundation:: BOOLEAN); windows_targets::link!("ntoskrnl.exe" "system" fn EtwRegister(providerid : *const windows_sys::core::GUID, enablecallback : PETWENABLECALLBACK, callbackcontext : *const core::ffi::c_void, reghandle : *mut u64) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_Diagnostics_Etw")] -windows_targets::link!("ntoskrnl.exe" "system" fn EtwSetInformation(reghandle : u64, informationclass : super::super::super::Win32::System::Diagnostics::Etw:: EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntoskrnl.exe" "system" fn EtwUnregister(reghandle : u64) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn EtwSetInformation(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, informationclass : super::super::super::Win32::System::Diagnostics::Etw:: EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_Diagnostics_Etw")] +windows_targets::link!("ntoskrnl.exe" "system" fn EtwUnregister(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_Diagnostics_Etw")] -windows_targets::link!("ntoskrnl.exe" "system" fn EtwWrite(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn EtwWrite(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_Diagnostics_Etw")] -windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteEx(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteString(reghandle : u64, level : u8, keyword : u64, activityid : *const windows_sys::core::GUID, string : windows_sys::core::PCWSTR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteEx(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_Diagnostics_Etw")] -windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteTransfer(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteString(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, level : u8, keyword : u64, activityid : *const windows_sys::core::GUID, string : windows_sys::core::PCWSTR) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Win32_System_Diagnostics_Etw")] +windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteTransfer(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] windows_targets::link!("ntoskrnl.exe" "system" fn ExAcquireFastMutex(fastmutex : *mut super::super::Foundation:: FAST_MUTEX)); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] @@ -299,7 +302,7 @@ windows_targets::link!("ntoskrnl.exe" "system" fn ExWaitForRundownProtectionRele windows_targets::link!("ntoskrnl.exe" "system" fn FsRtlIsTotalDeviceFailure(status : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: BOOLEAN); windows_targets::link!("hal.dll" "system" fn HalAcquireDisplayOwnership(resetdisplayparameters : PHAL_RESET_DISPLAY_PARAMETERS)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_Storage_IscsiDisc", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("hal.dll" "system" fn HalAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, wcb : *const WAIT_CONTEXT_BLOCK, numberofmapregisters : u32, executionroutine : *const super::super::Foundation:: DRIVER_CONTROL) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("hal.dll" "system" fn HalAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, wcb : *const WAIT_CONTEXT_BLOCK, numberofmapregisters : u32, executionroutine : super::super::Foundation:: DRIVER_CONTROL) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Storage_IscsiDisc")] windows_targets::link!("hal.dll" "system" fn HalAllocateCommonBuffer(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, length : u32, logicaladdress : *mut i64, cacheenabled : super::super::super::Win32::Foundation:: BOOLEAN) -> *mut core::ffi::c_void); #[cfg(feature = "Win32_Storage_IscsiDisc")] @@ -340,9 +343,9 @@ windows_targets::link!("ntoskrnl.exe" "system" fn IoAcquireKsrPersistentMemoryEx #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoAcquireRemoveLockEx(removelock : *mut IO_REMOVE_LOCK, tag : *const core::ffi::c_void, file : windows_sys::core::PCSTR, line : u32, remlocksize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_Storage_IscsiDisc", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, numberofmapregisters : u32, executionroutine : *const super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, numberofmapregisters : u32, executionroutine : super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateController(controllerobject : *const CONTROLLER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, executionroutine : *const super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void)); +windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateController(controllerobject : *const CONTROLLER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, executionroutine : super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateDriverObjectExtension(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, clientidentificationaddress : *const core::ffi::c_void, driverobjectextensionsize : u32, driverobjectextension : *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateErrorLogEntry(ioobject : *const core::ffi::c_void, entrysize : u8) -> *mut core::ffi::c_void); @@ -589,16 +592,16 @@ windows_targets::link!("ntoskrnl.exe" "system" fn IoReadPartitionTableEx(deviceo windows_targets::link!("ntoskrnl.exe" "system" fn IoRecordIoAttribution(opaquehandle : *mut core::ffi::c_void, attributioninformation : *const IO_ATTRIBUTION_INFORMATION) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterBootDriverCallback(callbackfunction : PBOOT_DRIVER_CALLBACK_FUNCTION, callbackcontext : *const core::ffi::c_void) -> *mut core::ffi::c_void); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterBootDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : *const super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); +windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterBootDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterContainerNotification(notificationclass : IO_CONTAINER_NOTIFICATION_CLASS, callbackfunction : PIO_CONTAINER_NOTIFICATION_FUNCTION, notificationinformation : *const core::ffi::c_void, notificationinformationlength : u32, callbackregistration : *mut core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterDeviceInterface(physicaldeviceobject : *const super::super::Foundation:: DEVICE_OBJECT, interfaceclassguid : *const windows_sys::core::GUID, referencestring : *const super::super::super::Win32::Foundation:: UNICODE_STRING, symboliclinkname : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : *const super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); +windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterLastChanceShutdownNotification(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterPlugPlayNotification(eventcategory : IO_NOTIFICATION_EVENT_CATEGORY, eventcategoryflags : u32, eventcategorydata : *const core::ffi::c_void, driverobject : *const super::super::Foundation:: DRIVER_OBJECT, callbackroutine : *const super::super::Foundation:: DRIVER_NOTIFICATION_CALLBACK_ROUTINE, context : *mut core::ffi::c_void, notificationentry : *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterPlugPlayNotification(eventcategory : IO_NOTIFICATION_EVENT_CATEGORY, eventcategoryflags : u32, eventcategorydata : *const core::ffi::c_void, driverobject : *const super::super::Foundation:: DRIVER_OBJECT, callbackroutine : super::super::Foundation:: DRIVER_NOTIFICATION_CALLBACK_ROUTINE, context : *mut core::ffi::c_void, notificationentry : *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterShutdownNotification(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn IoReleaseCancelSpinLock(irql : u8)); @@ -692,7 +695,7 @@ windows_targets::link!("ntoskrnl.exe" "system" fn IoStartNextPacket(deviceobject #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoStartNextPacketByKey(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, cancelable : super::super::super::Win32::Foundation:: BOOLEAN, key : u32)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -windows_targets::link!("ntoskrnl.exe" "system" fn IoStartPacket(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, irp : *const super::super::Foundation:: IRP, key : *const u32, cancelfunction : *const super::super::Foundation:: DRIVER_CANCEL)); +windows_targets::link!("ntoskrnl.exe" "system" fn IoStartPacket(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, irp : *const super::super::Foundation:: IRP, key : *const u32, cancelfunction : super::super::Foundation:: DRIVER_CANCEL)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] windows_targets::link!("ntoskrnl.exe" "system" fn IoStartTimer(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT)); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] @@ -1072,6 +1075,7 @@ windows_targets::link!("ntoskrnl.exe" "system" fn MmUnmapVideoDisplay(baseaddres windows_targets::link!("ntoskrnl.exe" "system" fn MmUnmapViewInSessionSpace(mappedbase : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn MmUnmapViewInSystemSpace(mappedbase : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn MmUnsecureVirtualMemory(securehandle : super::super::super::Win32::Foundation:: HANDLE)); +windows_targets::link!("ntdll.dll" "system" fn NtAllocateLocallyUniqueId(luid : *mut super::super::super::Win32::Foundation:: LUID) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtCommitComplete(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtCommitEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtCommitTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, wait : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -1083,17 +1087,16 @@ windows_targets::link!("ntdll.dll" "system" fn NtCreateResourceManager(resourcem windows_targets::link!("ntdll.dll" "system" fn NtCreateTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, uow : *const windows_sys::core::GUID, tmhandle : super::super::super::Win32::Foundation:: HANDLE, createoptions : u32, isolationlevel : u32, isolationflags : u32, timeout : *const i64, description : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn NtCreateTransactionManager(tmhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, commitstrength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtDisplayString(string : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_SystemServices")] windows_targets::link!("ntdll.dll" "system" fn NtEnumerateTransactionObject(rootobjecthandle : super::super::super::Win32::Foundation:: HANDLE, querytype : super::super::super::Win32::System::SystemServices:: KTMOBJECT_TYPE, objectcursor : *mut super::super::super::Win32::System::SystemServices:: KTMOBJECT_CURSOR, objectcursorlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Storage_FileSystem")] windows_targets::link!("ntdll.dll" "system" fn NtGetNotificationResourceManager(resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, transactionnotification : *mut super::super::super::Win32::Storage::FileSystem:: TRANSACTION_NOTIFICATION, notificationlength : u32, timeout : *const i64, returnlength : *mut u32, asynchronous : u32, asynchronouscontext : usize) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtLoadDriver(driverservicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtMakeTemporaryObject(handle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtManagePartition(targethandle : super::super::super::Win32::Foundation:: HANDLE, sourcehandle : super::super::super::Win32::Foundation:: HANDLE, partitioninformationclass : PARTITION_INFORMATION_CLASS, partitioninformation : *mut core::ffi::c_void, partitioninformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn NtOpenEnlistment(enlistmenthandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, enlistmentguid : *const windows_sys::core::GUID, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] -windows_targets::link!("ntdll.dll" "system" fn NtOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn NtOpenRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn NtOpenResourceManager(resourcemanagerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, tmhandle : super::super::super::Win32::Foundation:: HANDLE, resourcemanagerguid : *const windows_sys::core::GUID, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] @@ -1124,7 +1127,6 @@ windows_targets::link!("ntdll.dll" "system" fn NtRegisterProtocolAddressInformat windows_targets::link!("ntdll.dll" "system" fn NtRenameTransactionManager(logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, existingtransactionmanagerguid : *const windows_sys::core::GUID) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtRollbackComplete(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtRollbackEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn NtRollbackRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtRollbackTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, wait : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtRollforwardTransactionManager(transactionmanagerhandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_SystemServices")] @@ -1136,6 +1138,7 @@ windows_targets::link!("ntdll.dll" "system" fn NtSetInformationTransaction(trans #[cfg(feature = "Win32_System_SystemServices")] windows_targets::link!("ntdll.dll" "system" fn NtSetInformationTransactionManager(tmhandle : super::super::super::Win32::Foundation:: HANDLE, transactionmanagerinformationclass : super::super::super::Win32::System::SystemServices:: TRANSACTIONMANAGER_INFORMATION_CLASS, transactionmanagerinformation : *const core::ffi::c_void, transactionmanagerinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtSinglePhaseReject(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtUnloadDriver(driverservicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn ObCloseHandle(handle : super::super::super::Win32::Foundation:: HANDLE, previousmode : i8) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn ObDereferenceObjectDeferDelete(object : *const core::ffi::c_void)); windows_targets::link!("ntoskrnl.exe" "system" fn ObDereferenceObjectDeferDeleteWithTag(object : *const core::ffi::c_void, tag : u32)); @@ -1613,7 +1616,7 @@ windows_targets::link!("ntoskrnl.exe" "system" fn SeRegisterImageVerificationCal #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_Security"))] windows_targets::link!("ntoskrnl.exe" "system" fn SeReleaseSubjectContext(subjectcontext : *mut super::super::Foundation:: SECURITY_SUBJECT_CONTEXT)); #[cfg(feature = "Win32_Security_Authentication_Identity")] -windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEvent(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Foundation:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEvent(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Security:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security_Authentication_Identity")] windows_targets::link!("ntoskrnl.exe" "system" fn SeSetAuditParameter(auditparameters : *mut super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY, r#type : super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_TYPE, index : u32, data : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn SeSinglePrivilegeCheck(privilegevalue : super::super::super::Win32::Foundation:: LUID, previousmode : i8) -> super::super::super::Win32::Foundation:: BOOLEAN); @@ -1713,74 +1716,41 @@ windows_targets::link!("ntoskrnl.exe" "system" fn WheaUnconfigureErrorSource(sou windows_targets::link!("ntoskrnl.exe" "system" fn WheaUnregisterInUsePageOfflineNotification(callback : PFN_IN_USE_PAGE_OFFLINE_NOTIFY) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntoskrnl.exe" "system" fn WmiQueryTraceInformation(traceinformationclass : TRACE_INFORMATION_CLASS, traceinformation : *mut core::ffi::c_void, traceinformationlength : u32, requiredlength : *mut u32, buffer : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwAllocateLocallyUniqueId(luid : *mut super::super::super::Win32::Foundation:: LUID) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwCancelTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, currentstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwClose(handle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwCommitComplete(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwCommitEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwCommitRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwCommitTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, wait : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwCreateDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwCreateEnlistment(enlistmenthandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, transactionhandle : super::super::super::Win32::Foundation:: HANDLE, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32, notificationmask : u32, enlistmentkey : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] windows_targets::link!("ntdll.dll" "system" fn ZwCreateFile(filehandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, allocationsize : *const i64, fileattributes : u32, shareaccess : u32, createdisposition : u32, createoptions : u32, eabuffer : *const core::ffi::c_void, ealength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwCreateKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwCreateKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwCreateRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwCreateResourceManager(resourcemanagerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, tmhandle : super::super::super::Win32::Foundation:: HANDLE, resourcemanagerguid : *const windows_sys::core::GUID, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32, description : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwCreateSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, maximumsize : *const i64, sectionpageprotection : u32, allocationattributes : u32, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] -windows_targets::link!("ntdll.dll" "system" fn ZwCreateTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, timertype : super::super::super::Win32::System::Kernel:: TIMER_TYPE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwCreateTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, uow : *const windows_sys::core::GUID, tmhandle : super::super::super::Win32::Foundation:: HANDLE, createoptions : u32, isolationlevel : u32, isolationflags : u32, timeout : *const i64, description : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwCreateTransactionManager(tmhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, commitstrength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwDeleteKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwDeleteValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwDeviceIoControlFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, iocontrolcode : u32, inputbuffer : *const core::ffi::c_void, inputbufferlength : u32, outputbuffer : *mut core::ffi::c_void, outputbufferlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwDisplayString(string : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_SystemServices")] windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateTransactionObject(rootobjecthandle : super::super::super::Win32::Foundation:: HANDLE, querytype : super::super::super::Win32::System::SystemServices:: KTMOBJECT_TYPE, objectcursor : *mut super::super::super::Win32::System::SystemServices:: KTMOBJECT_CURSOR, objectcursorlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwFlushKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Storage_FileSystem")] windows_targets::link!("ntdll.dll" "system" fn ZwGetNotificationResourceManager(resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, transactionnotification : *mut super::super::super::Win32::Storage::FileSystem:: TRANSACTION_NOTIFICATION, notificationlength : u32, timeout : *const i64, returnlength : *mut u32, asynchronous : u32, asynchronouscontext : usize) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwLoadDriver(driverservicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwMakeTemporaryObject(handle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwMapViewOfSection(sectionhandle : super::super::super::Win32::Foundation:: HANDLE, processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, commitsize : usize, sectionoffset : *mut i64, viewsize : *mut usize, inheritdisposition : SECTION_INHERIT, allocationtype : u32, win32protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwManagePartition(targethandle : super::super::super::Win32::Foundation:: HANDLE, sourcehandle : super::super::super::Win32::Foundation:: HANDLE, partitioninformationclass : PARTITION_INFORMATION_CLASS, partitioninformation : *mut core::ffi::c_void, partitioninformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwOpenEnlistment(enlistmenthandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, rmhandle : super::super::super::Win32::Foundation:: HANDLE, enlistmentguid : *const windows_sys::core::GUID, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] windows_targets::link!("ntdll.dll" "system" fn ZwOpenFile(filehandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, shareaccess : u32, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransactedEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwOpenResourceManager(resourcemanagerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, tmhandle : super::super::super::Win32::Foundation:: HANDLE, resourcemanagerguid : *const windows_sys::core::GUID, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwOpenSymbolicLinkObject(linkhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] -windows_targets::link!("ntdll.dll" "system" fn ZwOpenTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); -#[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwOpenTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, uow : *const windows_sys::core::GUID, tmhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Wdk_Foundation")] windows_targets::link!("ntdll.dll" "system" fn ZwOpenTransactionManager(tmhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, tmidentity : *const windows_sys::core::GUID, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); @@ -1790,6 +1760,8 @@ windows_targets::link!("ntdll.dll" "system" fn ZwPrePrepareComplete(enlistmentha windows_targets::link!("ntdll.dll" "system" fn ZwPrePrepareEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwPrepareComplete(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwPrepareEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwPropagationComplete(resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, requestcookie : u32, bufferlength : u32, buffer : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwPropagationFailed(resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, requestcookie : u32, propstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_System_IO"))] windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationByName(objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : super::super::Storage::FileSystem:: FILE_INFORMATION_CLASS) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_SystemServices")] @@ -1802,23 +1774,19 @@ windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationResourceManager windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, transactioninformationclass : super::super::super::Win32::System::SystemServices:: TRANSACTION_INFORMATION_CLASS, transactioninformation : *mut core::ffi::c_void, transactioninformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_SystemServices")] windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationTransactionManager(transactionmanagerhandle : super::super::super::Win32::Foundation:: HANDLE, transactionmanagerinformationclass : super::super::super::Win32::System::SystemServices:: TRANSACTIONMANAGER_INFORMATION_CLASS, transactionmanagerinformation : *mut core::ffi::c_void, transactionmanagerinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwQueryKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwQuerySymbolicLinkObject(linkhandle : super::super::super::Win32::Foundation:: HANDLE, linktarget : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, returnedlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwQueryValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwReadFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, byteoffset : *const i64, key : *const u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwReadOnlyEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwRecoverEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, enlistmentkey : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwRecoverResourceManager(resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwRecoverTransactionManager(transactionmanagerhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwRenameKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, newname : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwRestoreKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwRegisterProtocolAddressInformation(resourcemanager : super::super::super::Win32::Foundation:: HANDLE, protocolid : *const windows_sys::core::GUID, protocolinformationsize : u32, protocolinformation : *const core::ffi::c_void, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwRenameTransactionManager(logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, existingtransactionmanagerguid : *const windows_sys::core::GUID) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwRollbackComplete(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwRollbackEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwRollbackTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, wait : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwRollforwardTransactionManager(transactionmanagerhandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwSaveKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwSaveKeyEx(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, format : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_SystemServices")] windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, enlistmentinformationclass : super::super::super::Win32::System::SystemServices:: ENLISTMENT_INFORMATION_CLASS, enlistmentinformation : *const core::ffi::c_void, enlistmentinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Win32_System_IO"))] @@ -1829,13 +1797,8 @@ windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationResourceManager(r windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, transactioninformationclass : super::super::super::Win32::System::SystemServices:: TRANSACTION_INFORMATION_CLASS, transactioninformation : *const core::ffi::c_void, transactioninformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_SystemServices")] windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationTransactionManager(tmhandle : super::super::super::Win32::Foundation:: HANDLE, transactionmanagerinformationclass : super::super::super::Win32::System::SystemServices:: TRANSACTIONMANAGER_INFORMATION_CLASS, transactionmanagerinformation : *const core::ffi::c_void, transactionmanagerinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwSetTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, duetime : *const i64, timerapcroutine : PTIMER_APC_ROUTINE, timercontext : *const core::ffi::c_void, resumetimer : super::super::super::Win32::Foundation:: BOOLEAN, period : i32, previousstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwSetTimerEx(timerhandle : super::super::super::Win32::Foundation:: HANDLE, timersetinformationclass : TIMER_SET_INFORMATION_CLASS, timersetinformation : *mut core::ffi::c_void, timersetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwSetValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, titleindex : u32, r#type : u32, data : *const core::ffi::c_void, datasize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwSinglePhaseReject(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwTerminateProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, exitstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwUnloadDriver(driverservicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); -windows_targets::link!("ntdll.dll" "system" fn ZwUnmapViewOfSection(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ntdll.dll" "system" fn ZwWriteFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *const core::ffi::c_void, length : u32, byteoffset : *const i64, key : *const u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn vDbgPrintEx(componentid : u32, level : u32, format : windows_sys::core::PCSTR, arglist : *const i8) -> u32); @@ -2893,22 +2856,6 @@ pub const KeProcessorAddFailureNotify: KE_PROCESSOR_CHANGE_NOTIFY_STATE = 2i32; pub const KeProcessorAddStartNotify: KE_PROCESSOR_CHANGE_NOTIFY_STATE = 0i32; pub const KeepObject: IO_ALLOCATION_ACTION = 1i32; pub const KernelMode: MODE = 0i32; -pub const KeyBasicInformation: KEY_INFORMATION_CLASS = 0i32; -pub const KeyCachedInformation: KEY_INFORMATION_CLASS = 4i32; -pub const KeyFlagsInformation: KEY_INFORMATION_CLASS = 5i32; -pub const KeyFullInformation: KEY_INFORMATION_CLASS = 2i32; -pub const KeyHandleTagsInformation: KEY_INFORMATION_CLASS = 7i32; -pub const KeyLayerInformation: KEY_INFORMATION_CLASS = 9i32; -pub const KeyNameInformation: KEY_INFORMATION_CLASS = 3i32; -pub const KeyNodeInformation: KEY_INFORMATION_CLASS = 1i32; -pub const KeyTrustInformation: KEY_INFORMATION_CLASS = 8i32; -pub const KeyValueBasicInformation: KEY_VALUE_INFORMATION_CLASS = 0i32; -pub const KeyValueFullInformation: KEY_VALUE_INFORMATION_CLASS = 1i32; -pub const KeyValueFullInformationAlign64: KEY_VALUE_INFORMATION_CLASS = 3i32; -pub const KeyValueLayerInformation: KEY_VALUE_INFORMATION_CLASS = 5i32; -pub const KeyValuePartialInformation: KEY_VALUE_INFORMATION_CLASS = 2i32; -pub const KeyValuePartialInformationAlign64: KEY_VALUE_INFORMATION_CLASS = 4i32; -pub const KeyVirtualizationInformation: KEY_INFORMATION_CLASS = 6i32; pub const KeyboardController: CONFIGURATION_TYPE = 22i32; pub const KeyboardPeripheral: CONFIGURATION_TYPE = 32i32; pub const L0sAndL1EntryDisabled: PCI_EXPRESS_ASPM_CONTROL = 0i32; @@ -3039,8 +2986,6 @@ pub const MapPhysicalAddressTypeMdl: IOMMU_MAP_PHYSICAL_ADDRESS_TYPE = 0i32; pub const MapPhysicalAddressTypePfn: IOMMU_MAP_PHYSICAL_ADDRESS_TYPE = 2i32; pub const MaxFaultType: FAULT_INFORMATION_ARM64_TYPE = 7i32; pub const MaxHardwareCounterType: HARDWARE_COUNTER_TYPE = 1i32; -pub const MaxKeyInfoClass: KEY_INFORMATION_CLASS = 10i32; -pub const MaxKeyValueInfoClass: KEY_VALUE_INFORMATION_CLASS = 6i32; pub const MaxPayload1024Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = 3i32; pub const MaxPayload128Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = 0i32; pub const MaxPayload2048Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = 4i32; @@ -3049,7 +2994,6 @@ pub const MaxPayload4096Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = 5i32; pub const MaxPayload512Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = 2i32; pub const MaxRegNtNotifyClass: REG_NOTIFY_CLASS = 51i32; pub const MaxSubsystemInformationType: SUBSYSTEM_INFORMATION_TYPE = 2i32; -pub const MaxTimerInfoClass: TIMER_SET_INFORMATION_CLASS = 1i32; pub const MaxTraceInformationClass: TRACE_INFORMATION_CLASS = 16i32; pub const MaximumBusDataType: BUS_DATA_TYPE = 12i32; pub const MaximumDmaSpeed: DMA_SPEED = 5i32; @@ -4051,7 +3995,6 @@ pub const TapePeripheral: CONFIGURATION_TYPE = 27i32; pub const TargetDeviceRelation: DEVICE_RELATION_TYPE = 4i32; pub const TcAdapter: CONFIGURATION_TYPE = 9i32; pub const TerminalPeripheral: CONFIGURATION_TYPE = 33i32; -pub const TimerSetCoalescableTimer: TIMER_SET_INFORMATION_CLASS = 0i32; pub const TlbMatchConflict: FAULT_INFORMATION_ARM64_TYPE = 2i32; pub const TraceEnableFlagsClass: TRACE_INFORMATION_CLASS = 2i32; pub const TraceEnableLevelClass: TRACE_INFORMATION_CLASS = 3i32; @@ -4087,8 +4030,6 @@ pub const VPB_MOUNTED: u32 = 1u32; pub const VPB_PERSISTENT: u32 = 4u32; pub const VPB_RAW_MOUNT: u32 = 16u32; pub const VPB_REMOVE_PENDING: u32 = 8u32; -pub const ViewShare: SECTION_INHERIT = 1i32; -pub const ViewUnmap: SECTION_INHERIT = 2i32; pub const Vmcs: INTERFACE_TYPE = 16i32; pub const WCS_RAS_REGISTER_NAME_MAX_LENGTH: u32 = 32u32; pub const WDM_MAJORVERSION: u32 = 6u32; @@ -4524,8 +4465,6 @@ pub type KDPC_IMPORTANCE = i32; pub type KD_CALLBACK_ACTION = i32; pub type KD_NAMESPACE_ENUM = i32; pub type KD_OPTION = i32; -pub type KEY_INFORMATION_CLASS = i32; -pub type KEY_VALUE_INFORMATION_CLASS = i32; pub type KE_PROCESSOR_CHANGE_NOTIFY_STATE = i32; pub type KINTERRUPT_MODE = i32; pub type KINTERRUPT_POLARITY = i32; @@ -4579,7 +4518,6 @@ pub type PSHED_PI_ERR_READING_PCIE_OVERRIDES = i32; pub type REG_NOTIFY_CLASS = i32; pub type RESOURCE_TRANSLATION_DIRECTION = i32; pub type RTL_GENERIC_COMPARE_RESULTS = i32; -pub type SECTION_INHERIT = i32; pub type SECURITY_OPERATION_CODE = i32; pub type SE_IMAGE_TYPE = i32; pub type SE_IMAGE_VERIFICATION_CALLBACK_TYPE = i32; @@ -4589,7 +4527,6 @@ pub type SUBSYSTEM_INFORMATION_TYPE = i32; pub type SYSTEM_FIRMWARE_TABLE_ACTION = i32; pub type SYSTEM_POWER_CONDITION = i32; pub type TABLE_SEARCH_RESULT = i32; -pub type TIMER_SET_INFORMATION_CLASS = i32; pub type TRACE_INFORMATION_CLASS = i32; pub type WHEAP_DPC_ERROR_EVENT_TYPE = i32; pub type WHEAP_PFA_OFFLINE_DECISION_TYPE = i32; @@ -5292,7 +5229,7 @@ pub struct CM_PNP_BIOS_INSTALLATION_CHECK { pub struct CM_POWER_DATA { pub PD_Size: u32, pub PD_MostRecentPowerState: super::super::super::Win32::System::Power::DEVICE_POWER_STATE, - pub PD_Capabilities: u32, + pub PD_Capabilities: super::super::super::Win32::System::Power::DEVICE_POWER_CAPABILITIES, pub PD_D1Latency: u32, pub PD_D2Latency: u32, pub PD_D3Latency: u32, @@ -10440,32 +10377,6 @@ pub struct REG_DELETE_VALUE_KEY_INFORMATION { } #[repr(C)] #[derive(Clone, Copy)] -pub struct REG_ENUMERATE_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub Index: u32, - pub KeyInformationClass: KEY_INFORMATION_CLASS, - pub KeyInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -#[repr(C)] -#[derive(Clone, Copy)] -pub struct REG_ENUMERATE_VALUE_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub Index: u32, - pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, - pub KeyValueInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -#[repr(C)] -#[derive(Clone, Copy)] pub struct REG_KEY_HANDLE_CLOSE_INFORMATION { pub Object: *mut core::ffi::c_void, pub CallContext: *mut core::ffi::c_void, @@ -10527,18 +10438,6 @@ pub struct REG_PRE_CREATE_KEY_INFORMATION { pub CompleteName: *mut super::super::super::Win32::Foundation::UNICODE_STRING, } #[repr(C)] -#[derive(Clone, Copy)] -pub struct REG_QUERY_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub KeyInformationClass: KEY_INFORMATION_CLASS, - pub KeyInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -#[repr(C)] #[cfg(feature = "Wdk_Foundation")] #[derive(Clone, Copy)] pub struct REG_QUERY_KEY_NAME { @@ -10564,19 +10463,6 @@ pub struct REG_QUERY_KEY_SECURITY_INFORMATION { } #[repr(C)] #[derive(Clone, Copy)] -pub struct REG_QUERY_VALUE_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub ValueName: *mut super::super::super::Win32::Foundation::UNICODE_STRING, - pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, - pub KeyValueInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -#[repr(C)] -#[derive(Clone, Copy)] pub struct REG_RENAME_KEY_INFORMATION { pub Object: *mut core::ffi::c_void, pub NewName: *mut super::super::super::Win32::Foundation::UNICODE_STRING, @@ -11075,7 +10961,7 @@ pub struct VM_COUNTERS_EX2 { #[derive(Clone, Copy)] pub struct WAIT_CONTEXT_BLOCK { pub Anonymous: WAIT_CONTEXT_BLOCK_0, - pub DeviceRoutine: *mut super::super::Foundation::DRIVER_CONTROL, + pub DeviceRoutine: super::super::Foundation::DRIVER_CONTROL, pub DeviceContext: *mut core::ffi::c_void, pub NumberOfMapRegisters: u32, pub DeviceObject: *mut core::ffi::c_void, @@ -13279,9 +13165,9 @@ pub type NPEM_CONTROL_SET_STANDARD_CONTROL = Option; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PALLOCATE_ADAPTER_CHANNEL = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PALLOCATE_ADAPTER_CHANNEL = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PALLOCATE_ADAPTER_CHANNEL_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PALLOCATE_ADAPTER_CHANNEL_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] pub type PALLOCATE_COMMON_BUFFER = Option *mut core::ffi::c_void>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] @@ -13301,9 +13187,9 @@ pub type PBOUND_CALLBACK = Option BOUND_CALLBACK_ #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] pub type PBUILD_MDL_FROM_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PBUILD_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PBUILD_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PBUILD_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PBUILD_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] pub type PCALCULATE_SCATTER_GATHER_LIST_SIZE = Option super::super::super::Win32::Foundation::NTSTATUS>; pub type PCALLBACK_FUNCTION = Option; @@ -13429,9 +13315,9 @@ pub type PGET_DMA_TRANSFER_INFO = Option super::super::super::Win32::Foundation::NTSTATUS>; pub type PGET_LOCATION_STRING = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PGET_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PGET_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PGET_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PGET_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; pub type PGET_SDEV_IDENTIFIER = Option u64>; pub type PGET_SET_DEVICE_DATA = Option u32>; pub type PGET_UPDATED_BUS_RESOURCE = Option super::super::super::Win32::Foundation::NTSTATUS>; diff --git a/crates/libs/sys/src/Windows/Wdk/System/Threading/mod.rs b/crates/libs/sys/src/Windows/Wdk/System/Threading/mod.rs index bd859e18bc..0cf3ccbe0f 100644 --- a/crates/libs/sys/src/Windows/Wdk/System/Threading/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/System/Threading/mod.rs @@ -1,10 +1,40 @@ +windows_targets::link!("ntdll.dll" "system" fn NtCancelTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, currentstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] +windows_targets::link!("ntdll.dll" "system" fn NtCreateTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, timertype : super::super::super::Win32::System::Kernel:: TIMER_TYPE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] +windows_targets::link!("ntdll.dll" "system" fn NtOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn NtOpenTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtQueryInformationProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, processinformationclass : PROCESSINFOCLASS, processinformation : *mut core::ffi::c_void, processinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtQueryInformationThread(threadhandle : super::super::super::Win32::Foundation:: HANDLE, threadinformationclass : THREADINFOCLASS, threadinformation : *mut core::ffi::c_void, threadinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtSetInformationThread(threadhandle : super::super::super::Win32::Foundation:: HANDLE, threadinformationclass : THREADINFOCLASS, threadinformation : *const core::ffi::c_void, threadinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_System_SystemServices")] +windows_targets::link!("ntdll.dll" "system" fn NtSetTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, duetime : *const i64, timerapcroutine : super::SystemServices:: PTIMER_APC_ROUTINE, timercontext : *const core::ffi::c_void, resumetimer : super::super::super::Win32::Foundation:: BOOLEAN, period : i32, previousstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtSetTimerEx(timerhandle : super::super::super::Win32::Foundation:: HANDLE, timersetinformationclass : TIMER_SET_INFORMATION_CLASS, timersetinformation : *mut core::ffi::c_void, timersetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn NtTerminateProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, exitstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn NtWaitForSingleObject(handle : super::super::super::Win32::Foundation:: HANDLE, alertable : super::super::super::Win32::Foundation:: BOOLEAN, timeout : *mut i64) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwCancelTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, currentstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] +windows_targets::link!("ntdll.dll" "system" fn ZwCreateTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, timertype : super::super::super::Win32::System::Kernel:: TIMER_TYPE) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_Foundation")] +windows_targets::link!("ntdll.dll" "system" fn ZwOpenTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, processinformationclass : PROCESSINFOCLASS, processinformation : *mut core::ffi::c_void, processinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationThread(threadhandle : super::super::super::Win32::Foundation:: HANDLE, threadinformationclass : THREADINFOCLASS, threadinformation : *mut core::ffi::c_void, threadinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationThread(threadhandle : super::super::super::Win32::Foundation:: HANDLE, threadinformationclass : THREADINFOCLASS, threadinformation : *const core::ffi::c_void, threadinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +#[cfg(feature = "Wdk_System_SystemServices")] +windows_targets::link!("ntdll.dll" "system" fn ZwSetTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, duetime : *const i64, timerapcroutine : super::SystemServices:: PTIMER_APC_ROUTINE, timercontext : *const core::ffi::c_void, resumetimer : super::super::super::Win32::Foundation:: BOOLEAN, period : i32, previousstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwSetTimerEx(timerhandle : super::super::super::Win32::Foundation:: HANDLE, timersetinformationclass : TIMER_SET_INFORMATION_CLASS, timersetinformation : *mut core::ffi::c_void, timersetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwTerminateProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, exitstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn ZwWaitForSingleObject(handle : super::super::super::Win32::Foundation:: HANDLE, alertable : super::super::super::Win32::Foundation:: BOOLEAN, timeout : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); pub const MaxProcessInfoClass: PROCESSINFOCLASS = 83i32; pub const MaxThreadInfoClass: THREADINFOCLASS = 56i32; +pub const MaxTimerInfoClass: TIMER_SET_INFORMATION_CLASS = 1i32; pub const ProcessAccessToken: PROCESSINFOCLASS = 9i32; pub const ProcessAffinityMask: PROCESSINFOCLASS = 21i32; pub const ProcessAffinityUpdateMode: PROCESSINFOCLASS = 45i32; @@ -104,6 +134,7 @@ pub const ThreadIoPriority: THREADINFOCLASS = 22i32; pub const ThreadIsIoPending: THREADINFOCLASS = 16i32; pub const ThreadIsTerminated: THREADINFOCLASS = 20i32; pub const ThreadLastSystemCall: THREADINFOCLASS = 21i32; +pub const ThreadNameInformation: THREADINFOCLASS = 38i32; pub const ThreadPagePriority: THREADINFOCLASS = 24i32; pub const ThreadPerformanceCount: THREADINFOCLASS = 11i32; pub const ThreadPriority: THREADINFOCLASS = 2i32; @@ -118,5 +149,7 @@ pub const ThreadTimes: THREADINFOCLASS = 1i32; pub const ThreadUmsInformation: THREADINFOCLASS = 31i32; pub const ThreadWow64Context: THREADINFOCLASS = 29i32; pub const ThreadZeroTlsCell: THREADINFOCLASS = 10i32; +pub const TimerSetCoalescableTimer: TIMER_SET_INFORMATION_CLASS = 0i32; pub type PROCESSINFOCLASS = i32; pub type THREADINFOCLASS = i32; +pub type TIMER_SET_INFORMATION_CLASS = i32; diff --git a/crates/libs/sys/src/Windows/Wdk/System/mod.rs b/crates/libs/sys/src/Windows/Wdk/System/mod.rs index 5296b0d30e..0ce8fbd2e3 100644 --- a/crates/libs/sys/src/Windows/Wdk/System/mod.rs +++ b/crates/libs/sys/src/Windows/Wdk/System/mod.rs @@ -1,5 +1,7 @@ #[cfg(feature = "Wdk_System_IO")] pub mod IO; +#[cfg(feature = "Wdk_System_Memory")] +pub mod Memory; #[cfg(feature = "Wdk_System_OfflineRegistry")] pub mod OfflineRegistry; #[cfg(feature = "Wdk_System_Registry")] diff --git a/crates/libs/sys/src/Windows/Win32/Devices/Bluetooth/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/Bluetooth/mod.rs index 17d32842d6..6076ec6682 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/Bluetooth/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/Bluetooth/mod.rs @@ -1276,8 +1276,8 @@ pub struct BTH_SET_SERVICE { pub pRecord: [u8; 1], } pub type HANDLE_SDP_TYPE = u64; -pub type HBLUETOOTH_DEVICE_FIND = isize; -pub type HBLUETOOTH_RADIO_FIND = isize; +pub type HBLUETOOTH_DEVICE_FIND = *mut core::ffi::c_void; +pub type HBLUETOOTH_RADIO_FIND = *mut core::ffi::c_void; #[repr(C, packed(1))] #[derive(Clone, Copy)] pub struct RFCOMM_COMMAND { diff --git a/crates/libs/sys/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs index 80198e9295..f2c9489a43 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs @@ -295,8 +295,8 @@ windows_targets::link!("setupapi.dll" "system" fn SetupCopyOEMInfA(sourceinffile windows_targets::link!("setupapi.dll" "system" fn SetupCopyOEMInfW(sourceinffilename : windows_sys::core::PCWSTR, oemsourcemedialocation : windows_sys::core::PCWSTR, oemsourcemediatype : OEM_SOURCE_MEDIA_TYPE, copystyle : SP_COPY_STYLE, destinationinffilename : windows_sys::core::PWSTR, destinationinffilenamesize : u32, requiredsize : *mut u32, destinationinffilenamecomponent : *mut windows_sys::core::PWSTR) -> super::super::Foundation:: BOOL); windows_targets::link!("setupapi.dll" "system" fn SetupCreateDiskSpaceListA(reserved1 : *const core::ffi::c_void, reserved2 : u32, flags : u32) -> *mut core::ffi::c_void); windows_targets::link!("setupapi.dll" "system" fn SetupCreateDiskSpaceListW(reserved1 : *const core::ffi::c_void, reserved2 : u32, flags : u32) -> *mut core::ffi::c_void); -windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileA(sourcefilename : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR, compressiontype : *const u32) -> u32); -windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileW(sourcefilename : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR, compressiontype : *const u32) -> u32); +windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileA(sourcefilename : windows_sys::core::PCSTR, targetfilename : windows_sys::core::PCSTR, compressiontype : *const FILE_COMPRESSION_TYPE) -> u32); +windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileW(sourcefilename : windows_sys::core::PCWSTR, targetfilename : windows_sys::core::PCWSTR, compressiontype : *const FILE_COMPRESSION_TYPE) -> u32); windows_targets::link!("setupapi.dll" "system" fn SetupDefaultQueueCallbackA(context : *const core::ffi::c_void, notification : u32, param1 : usize, param2 : usize) -> u32); windows_targets::link!("setupapi.dll" "system" fn SetupDefaultQueueCallbackW(context : *const core::ffi::c_void, notification : u32, param1 : usize, param2 : usize) -> u32); windows_targets::link!("setupapi.dll" "system" fn SetupDeleteErrorA(hwndparent : super::super::Foundation:: HWND, dialogtitle : windows_sys::core::PCSTR, file : windows_sys::core::PCSTR, win32errorcode : u32, style : u32) -> u32); @@ -501,10 +501,10 @@ windows_targets::link!("setupapi.dll" "system" fn SetupGetBackupInformationA(que windows_targets::link!("setupapi.dll" "system" fn SetupGetBackupInformationW(queuehandle : *const core::ffi::c_void, backupparams : *mut SP_BACKUP_QUEUE_PARAMS_V2_W) -> super::super::Foundation:: BOOL); windows_targets::link!("setupapi.dll" "system" fn SetupGetBinaryField(context : *const INFCONTEXT, fieldindex : u32, returnbuffer : *mut u8, returnbuffersize : u32, requiredsize : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("setupapi.dll" "system" fn SetupGetFieldCount(context : *const INFCONTEXT) -> u32); -windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoA(sourcefilename : windows_sys::core::PCSTR, actualsourcefilename : *mut windows_sys::core::PSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> u32); -windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExA(sourcefilename : windows_sys::core::PCSTR, actualsourcefilenamebuffer : windows_sys::core::PCSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> super::super::Foundation:: BOOL); -windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExW(sourcefilename : windows_sys::core::PCWSTR, actualsourcefilenamebuffer : windows_sys::core::PCWSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> super::super::Foundation:: BOOL); -windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoW(sourcefilename : windows_sys::core::PCWSTR, actualsourcefilename : *mut windows_sys::core::PWSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> u32); +windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoA(sourcefilename : windows_sys::core::PCSTR, actualsourcefilename : *mut windows_sys::core::PSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> u32); +windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExA(sourcefilename : windows_sys::core::PCSTR, actualsourcefilenamebuffer : windows_sys::core::PCSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> super::super::Foundation:: BOOL); +windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExW(sourcefilename : windows_sys::core::PCWSTR, actualsourcefilenamebuffer : windows_sys::core::PCWSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> super::super::Foundation:: BOOL); +windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoW(sourcefilename : windows_sys::core::PCWSTR, actualsourcefilename : *mut windows_sys::core::PWSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> u32); windows_targets::link!("setupapi.dll" "system" fn SetupGetFileQueueCount(filequeue : *const core::ffi::c_void, subqueuefileop : u32, numoperations : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("setupapi.dll" "system" fn SetupGetFileQueueFlags(filequeue : *const core::ffi::c_void, flags : *mut u32) -> super::super::Foundation:: BOOL); #[cfg(all(feature = "Win32_System_Diagnostics_Debug", feature = "Win32_System_SystemInformation"))] @@ -1353,10 +1353,10 @@ pub const FILEOP_NEWPATH: u32 = 4u32; pub const FILEOP_RENAME: u32 = 1u32; pub const FILEOP_RETRY: u32 = 1u32; pub const FILEOP_SKIP: u32 = 2u32; -pub const FILE_COMPRESSION_MSZIP: u32 = 2u32; -pub const FILE_COMPRESSION_NONE: u32 = 0u32; -pub const FILE_COMPRESSION_NTCAB: u32 = 3u32; -pub const FILE_COMPRESSION_WINLZA: u32 = 1u32; +pub const FILE_COMPRESSION_MSZIP: FILE_COMPRESSION_TYPE = 2u32; +pub const FILE_COMPRESSION_NONE: FILE_COMPRESSION_TYPE = 0u32; +pub const FILE_COMPRESSION_NTCAB: FILE_COMPRESSION_TYPE = 3u32; +pub const FILE_COMPRESSION_WINLZA: FILE_COMPRESSION_TYPE = 1u32; pub const FILTERED_LOG_CONF: CM_LOG_CONF = 1u32; pub const FLG_ADDPROPERTY_AND: u32 = 16u32; pub const FLG_ADDPROPERTY_APPEND: u32 = 4u32; @@ -2342,6 +2342,7 @@ pub type DIINSTALLDRIVER_FLAGS = u32; pub type DIROLLBACKDRIVER_FLAGS = u32; pub type DIUNINSTALLDRIVER_FLAGS = u32; pub type DI_FUNCTION = u32; +pub type FILE_COMPRESSION_TYPE = u32; pub type INF_STYLE = u32; pub type IOD_DESFLAGS = u32; pub type IRQD_FLAGS = u32; @@ -2737,7 +2738,7 @@ pub struct FILE_IN_CABINET_INFO_W { pub DosAttribs: u16, pub FullTargetName: [u16; 260], } -pub type HCMNOTIFICATION = isize; +pub type HCMNOTIFICATION = *mut core::ffi::c_void; pub type HDEVINFO = isize; #[repr(C, packed(1))] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/Devices/DeviceQuery/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/DeviceQuery/mod.rs index 66ff45fb7a..a88bdaa455 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/DeviceQuery/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/DeviceQuery/mod.rs @@ -136,6 +136,6 @@ pub union DEV_QUERY_RESULT_ACTION_DATA_0 { pub State: DEV_QUERY_STATE, pub DeviceObject: DEV_OBJECT, } -pub type HDEVQUERY = isize; +pub type HDEVQUERY = *mut core::ffi::c_void; #[cfg(feature = "Win32_Devices_Properties")] pub type PDEV_QUERY_RESULT_CALLBACK = Option; diff --git a/crates/libs/sys/src/Windows/Win32/Devices/Display/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/Display/mod.rs index 640759f285..fe3758d1b7 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/Display/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/Display/mod.rs @@ -1362,8 +1362,8 @@ pub struct DEVINFO { pub hpalDefault: super::super::Graphics::Gdi::HPALETTE, pub flGraphicsCaps2: u32, } -pub type DHPDEV = isize; -pub type DHSURF = isize; +pub type DHPDEV = *mut core::ffi::c_void; +pub type DHSURF = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct DISPLAYCONFIG_2DREGION { @@ -2087,12 +2087,12 @@ pub struct GLYPHPOS { pub pgdf: *mut GLYPHDEF, pub ptl: super::super::Foundation::POINTL, } -pub type HBM = isize; -pub type HDEV = isize; -pub type HDRVOBJ = isize; -pub type HFASTMUTEX = isize; -pub type HSEMAPHORE = isize; -pub type HSURF = isize; +pub type HBM = *mut core::ffi::c_void; +pub type HDEV = *mut core::ffi::c_void; +pub type HDRVOBJ = *mut core::ffi::c_void; +pub type HFASTMUTEX = *mut core::ffi::c_void; +pub type HSEMAPHORE = *mut core::ffi::c_void; +pub type HSURF = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct IFIEXTRA { diff --git a/crates/libs/sys/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs index 824a69df94..d1bab6e706 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs @@ -68,7 +68,7 @@ pub const UPNP_E_VARIABLE_VALUE_UNKNOWN: windows_sys::core::HRESULT = 0x80040212 pub const UPNP_SERVICE_DELAY_SCPD_AND_SUBSCRIPTION: u32 = 1u32; pub type SW_DEVICE_CAPABILITIES = i32; pub type SW_DEVICE_LIFETIME = i32; -pub type HSWDEVICE = isize; +pub type HSWDEVICE = *mut core::ffi::c_void; #[repr(C)] #[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/Devices/Fax/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/Fax/mod.rs index dfc58f3d18..415d369fcc 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/Fax/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/Fax/mod.rs @@ -36,12 +36,12 @@ windows_targets::link!("winfax.dll" "system" fn FaxOpenPort(faxhandle : super::s windows_targets::link!("winfax.dll" "system" fn FaxPrintCoverPageA(faxcontextinfo : *const FAX_CONTEXT_INFOA, coverpageinfo : *const FAX_COVERPAGE_INFOA) -> super::super::Foundation:: BOOL); #[cfg(feature = "Win32_Graphics_Gdi")] windows_targets::link!("winfax.dll" "system" fn FaxPrintCoverPageW(faxcontextinfo : *const FAX_CONTEXT_INFOW, coverpageinfo : *const FAX_COVERPAGE_INFOW) -> super::super::Foundation:: BOOL); -windows_targets::link!("winfax.dll" "system" fn FaxRegisterRoutingExtensionW(faxhandle : super::super::Foundation:: HANDLE, extensionname : windows_sys::core::PCWSTR, friendlyname : windows_sys::core::PCWSTR, imagename : windows_sys::core::PCWSTR, callback : PFAX_ROUTING_INSTALLATION_CALLBACKW, context : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("winfax.dll" "system" fn FaxRegisterRoutingExtensionW(faxhandle : super::super::Foundation:: HANDLE, extensionname : windows_sys::core::PCWSTR, friendlyname : windows_sys::core::PCWSTR, imagename : windows_sys::core::PCWSTR, callback : PFAX_ROUTING_INSTALLATION_CALLBACKW, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); windows_targets::link!("winfax.dll" "system" fn FaxRegisterServiceProviderW(deviceprovider : windows_sys::core::PCWSTR, friendlyname : windows_sys::core::PCWSTR, imagename : windows_sys::core::PCWSTR, tspname : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); -windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCSTR, jobparams : *mut FAX_JOB_PARAMA, coverpageinfo : *const FAX_COVERPAGE_INFOA, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); -windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKA, context : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); -windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCWSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKW, context : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); -windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCWSTR, jobparams : *mut FAX_JOB_PARAMW, coverpageinfo : *const FAX_COVERPAGE_INFOW, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCSTR, jobparams : *const FAX_JOB_PARAMA, coverpageinfo : *const FAX_COVERPAGE_INFOA, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKA, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCWSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKW, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_sys::core::PCWSTR, jobparams : *const FAX_JOB_PARAMW, coverpageinfo : *const FAX_COVERPAGE_INFOW, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("winfax.dll" "system" fn FaxSetConfigurationA(faxhandle : super::super::Foundation:: HANDLE, faxconfig : *const FAX_CONFIGURATIONA) -> super::super::Foundation:: BOOL); windows_targets::link!("winfax.dll" "system" fn FaxSetConfigurationW(faxhandle : super::super::Foundation:: HANDLE, faxconfig : *const FAX_CONFIGURATIONW) -> super::super::Foundation:: BOOL); windows_targets::link!("winfax.dll" "system" fn FaxSetGlobalRoutingInfoA(faxhandle : super::super::Foundation:: HANDLE, routinginfo : *const FAX_GLOBAL_ROUTING_INFOA) -> super::super::Foundation:: BOOL); @@ -1153,7 +1153,7 @@ pub type PFAXOPENPORT = Option super::super::Foundation::BOOL>; #[cfg(feature = "Win32_Graphics_Gdi")] pub type PFAXPRINTCOVERPAGEW = Option super::super::Foundation::BOOL>; -pub type PFAXREGISTERROUTINGEXTENSIONW = Option super::super::Foundation::BOOL>; +pub type PFAXREGISTERROUTINGEXTENSIONW = Option super::super::Foundation::BOOL>; pub type PFAXREGISTERSERVICEPROVIDERW = Option super::super::Foundation::BOOL>; pub type PFAXROUTEADDFILE = Option i32>; pub type PFAXROUTEDELETEFILE = Option i32>; @@ -1167,10 +1167,10 @@ pub type PFAXROUTEINITIALIZE = Option super::super::Foundation::BOOL>; pub type PFAXROUTEMODIFYROUTINGDATA = Option super::super::Foundation::BOOL>; pub type PFAXROUTESETROUTINGINFO = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTA = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTFORBROADCASTA = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTFORBROADCASTW = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTW = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTA = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTFORBROADCASTA = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTFORBROADCASTW = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTW = Option super::super::Foundation::BOOL>; pub type PFAXSETCONFIGURATIONA = Option super::super::Foundation::BOOL>; pub type PFAXSETCONFIGURATIONW = Option super::super::Foundation::BOOL>; pub type PFAXSETGLOBALROUTINGINFOA = Option super::super::Foundation::BOOL>; @@ -1196,8 +1196,8 @@ pub type PFAX_EXT_REGISTER_FOR_EVENTS = Option u32>; pub type PFAX_EXT_UNREGISTER_FOR_EVENTS = Option u32>; pub type PFAX_LINECALLBACK = Option; -pub type PFAX_RECIPIENT_CALLBACKA = Option super::super::Foundation::BOOL>; -pub type PFAX_RECIPIENT_CALLBACKW = Option super::super::Foundation::BOOL>; -pub type PFAX_ROUTING_INSTALLATION_CALLBACKW = Option super::super::Foundation::BOOL>; +pub type PFAX_RECIPIENT_CALLBACKA = Option super::super::Foundation::BOOL>; +pub type PFAX_RECIPIENT_CALLBACKW = Option super::super::Foundation::BOOL>; +pub type PFAX_ROUTING_INSTALLATION_CALLBACKW = Option super::super::Foundation::BOOL>; pub type PFAX_SEND_CALLBACK = Option super::super::Foundation::BOOL>; pub type PFAX_SERVICE_CALLBACK = Option super::super::Foundation::BOOL>; diff --git a/crates/libs/sys/src/Windows/Win32/Devices/SerialCommunication/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/SerialCommunication/mod.rs index c93edddc44..66cda22a15 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/SerialCommunication/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/SerialCommunication/mod.rs @@ -93,7 +93,7 @@ pub const SerenumFirstHalf: SERENUM_PORTION = 0i32; pub const SerenumSecondHalf: SERENUM_PORTION = 1i32; pub const SerenumWhole: SERENUM_PORTION = 2i32; pub type SERENUM_PORTION = i32; -pub type HCOMDB = isize; +pub type HCOMDB = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct SERENUM_PORT_DESC { diff --git a/crates/libs/sys/src/Windows/Win32/Devices/Tapi/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/Tapi/mod.rs index 39038c3212..6121773f02 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/Tapi/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/Tapi/mod.rs @@ -1914,15 +1914,15 @@ pub struct DTR { pub wDayOfWeek: u16, } pub const DispatchMapper: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe9225296_c759_11d1_a02b_00c04fb6809f); -pub type HDRVCALL = isize; -pub type HDRVDIALOGINSTANCE = isize; -pub type HDRVLINE = isize; -pub type HDRVMSPLINE = isize; -pub type HDRVPHONE = isize; -pub type HPROVIDER = isize; -pub type HTAPICALL = isize; -pub type HTAPILINE = isize; -pub type HTAPIPHONE = isize; +pub type HDRVCALL = *mut core::ffi::c_void; +pub type HDRVDIALOGINSTANCE = *mut core::ffi::c_void; +pub type HDRVLINE = *mut core::ffi::c_void; +pub type HDRVMSPLINE = *mut core::ffi::c_void; +pub type HDRVPHONE = *mut core::ffi::c_void; +pub type HPROVIDER = *mut core::ffi::c_void; +pub type HTAPICALL = *mut core::ffi::c_void; +pub type HTAPILINE = *mut core::ffi::c_void; +pub type HTAPIPHONE = *mut core::ffi::c_void; #[repr(C, packed(1))] #[derive(Clone, Copy)] pub struct LINEADDRESSCAPS { diff --git a/crates/libs/sys/src/Windows/Win32/Devices/Usb/mod.rs b/crates/libs/sys/src/Windows/Win32/Devices/Usb/mod.rs index c0be0a860b..7e38ef3fa5 100644 --- a/crates/libs/sys/src/Windows/Win32/Devices/Usb/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Devices/Usb/mod.rs @@ -1358,7 +1358,7 @@ pub struct USB_BUS_STATISTICS_0 { pub Unused: u8, pub NameIndex: u8, } -pub type USB_CHANGE_REGISTRATION_HANDLE = isize; +pub type USB_CHANGE_REGISTRATION_HANDLE = *mut core::ffi::c_void; #[repr(C, packed(1))] #[derive(Clone, Copy)] pub struct USB_CLOSE_RAW_DEVICE_PARAMETERS { @@ -2421,7 +2421,7 @@ pub struct USB_UNICODE_NAME { pub struct USB_USB2HW_VERSION_PARAMETERS { pub Usb2HwRevision: u8, } -pub type WINUSB_INTERFACE_HANDLE = isize; +pub type WINUSB_INTERFACE_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct WINUSB_PIPE_INFORMATION { diff --git a/crates/libs/sys/src/Windows/Win32/Foundation/mod.rs b/crates/libs/sys/src/Windows/Win32/Foundation/mod.rs index e96fc3ab27..c4336e1a01 100644 --- a/crates/libs/sys/src/Windows/Win32/Foundation/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Foundation/mod.rs @@ -6045,18 +6045,7 @@ pub const RPC_NT_WRONG_KIND_OF_BINDING: NTSTATUS = 0xC0020002_u32 as _; pub const RPC_NT_WRONG_PIPE_VERSION: NTSTATUS = 0xC003005E_u32 as _; pub const RPC_NT_WRONG_STUB_VERSION: NTSTATUS = 0xC003005B_u32 as _; pub const RPC_NT_ZERO_DIVIDE: NTSTATUS = 0xC0020044_u32 as _; -pub const RPC_S_ACCESS_DENIED: i32 = -1073741790i32; -pub const RPC_S_ASYNC_CALL_PENDING: i32 = 259i32; -pub const RPC_S_BUFFER_TOO_SMALL: i32 = -1073741789i32; pub const RPC_S_CALLPENDING: windows_sys::core::HRESULT = 0x80010115_u32 as _; -pub const RPC_S_INVALID_ARG: i32 = -1073741811i32; -pub const RPC_S_INVALID_LEVEL: i32 = -1073741811i32; -pub const RPC_S_INVALID_SECURITY_DESC: i32 = -1073741703i32; -pub const RPC_S_NOT_ENOUGH_QUOTA: i32 = -1073741756i32; -pub const RPC_S_OUT_OF_MEMORY: i32 = -1073741801i32; -pub const RPC_S_OUT_OF_THREADS: i32 = -1073741801i32; -pub const RPC_S_SERVER_OUT_OF_MEMORY: i32 = -1073741307i32; -pub const RPC_S_UNKNOWN_PRINCIPAL: i32 = -1073741709i32; pub const RPC_S_WAITONTIMER: windows_sys::core::HRESULT = 0x80010116_u32 as _; pub const RPC_X_BAD_STUB_DATA: i32 = 1783i32; pub const RPC_X_BYTE_COUNT_TOO_SMALL: i32 = 1782i32; @@ -10240,18 +10229,18 @@ pub struct FLOAT128 { pub LowPart: i64, pub HighPart: i64, } -pub type HANDLE = isize; +pub type HANDLE = *mut core::ffi::c_void; pub type HANDLE_PTR = usize; pub type HGLOBAL = *mut core::ffi::c_void; -pub type HINSTANCE = isize; +pub type HINSTANCE = *mut core::ffi::c_void; pub type HLOCAL = *mut core::ffi::c_void; -pub type HLSURF = isize; -pub type HMODULE = isize; -pub type HRSRC = isize; -pub type HSPRITE = isize; -pub type HSTR = isize; -pub type HUMPD = isize; -pub type HWND = isize; +pub type HLSURF = *mut core::ffi::c_void; +pub type HMODULE = *mut core::ffi::c_void; +pub type HRSRC = *mut core::ffi::c_void; +pub type HSPRITE = *mut core::ffi::c_void; +pub type HSTR = *mut core::ffi::c_void; +pub type HUMPD = *mut core::ffi::c_void; +pub type HWND = *mut core::ffi::c_void; pub type LPARAM = isize; pub type LRESULT = isize; #[repr(C)] @@ -10279,7 +10268,6 @@ pub struct POINTS { pub x: i16, pub y: i16, } -pub type PSID = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct RECT { diff --git a/crates/libs/sys/src/Windows/Win32/Globalization/mod.rs b/crates/libs/sys/src/Windows/Win32/Globalization/mod.rs index eac66ade97..bc13165725 100644 --- a/crates/libs/sys/src/Windows/Win32/Globalization/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Globalization/mod.rs @@ -1561,6 +1561,8 @@ pub const IS_TEXT_UNICODE_REVERSE_STATISTICS: IS_TEXT_UNICODE_RESULT = 32u32; pub const IS_TEXT_UNICODE_SIGNATURE: IS_TEXT_UNICODE_RESULT = 8u32; pub const IS_TEXT_UNICODE_STATISTICS: IS_TEXT_UNICODE_RESULT = 2u32; pub const IS_TEXT_UNICODE_UNICODE_MASK: IS_TEXT_UNICODE_RESULT = 15u32; +pub const LANG_SYSTEM_DEFAULT: i32 = 2048i32; +pub const LANG_USER_DEFAULT: i32 = 1024i32; pub const LCID_ALTERNATE_SORTS: u32 = 4u32; pub const LCID_INSTALLED: IS_VALID_LOCALE_FLAGS = 1u32; pub const LCID_SUPPORTED: IS_VALID_LOCALE_FLAGS = 2u32; @@ -1770,6 +1772,8 @@ pub const LOCALE_STIME: u32 = 30u32; pub const LOCALE_STIMEFORMAT: u32 = 4099u32; pub const LOCALE_SUPPLEMENTAL: u32 = 2u32; pub const LOCALE_SYEARMONTH: u32 = 4102u32; +pub const LOCALE_SYSTEM_DEFAULT: u32 = 2048u32; +pub const LOCALE_USER_DEFAULT: u32 = 1024u32; pub const LOCALE_USE_CP_ACP: u32 = 1073741824u32; pub const LOCALE_WINDOWS: u32 = 1u32; pub const LOWLEVEL_SERVICE_TYPES: u32 = 2u32; @@ -4571,9 +4575,7 @@ pub struct GOFFSET { pub du: i32, pub dv: i32, } -pub type HIMC = isize; -pub type HIMCC = isize; -pub type HSAVEDUILANGUAGES = isize; +pub type HSAVEDUILANGUAGES = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct LOCALESIGNATURE { diff --git a/crates/libs/sys/src/Windows/Win32/Graphics/Gdi/mod.rs b/crates/libs/sys/src/Windows/Win32/Graphics/Gdi/mod.rs index 47b141f944..02421c005a 100644 --- a/crates/libs/sys/src/Windows/Win32/Graphics/Gdi/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Graphics/Gdi/mod.rs @@ -3347,17 +3347,17 @@ pub struct GRADIENT_TRIANGLE { pub struct HANDLETABLE { pub objectHandle: [HGDIOBJ; 1], } -pub type HBITMAP = isize; -pub type HBRUSH = isize; -pub type HDC = isize; -pub type HENHMETAFILE = isize; -pub type HFONT = isize; -pub type HGDIOBJ = isize; -pub type HMETAFILE = isize; -pub type HMONITOR = isize; -pub type HPALETTE = isize; -pub type HPEN = isize; -pub type HRGN = isize; +pub type HBITMAP = *mut core::ffi::c_void; +pub type HBRUSH = *mut core::ffi::c_void; +pub type HDC = *mut core::ffi::c_void; +pub type HENHMETAFILE = *mut core::ffi::c_void; +pub type HFONT = *mut core::ffi::c_void; +pub type HGDIOBJ = *mut core::ffi::c_void; +pub type HMETAFILE = *mut core::ffi::c_void; +pub type HMONITOR = *mut core::ffi::c_void; +pub type HPALETTE = *mut core::ffi::c_void; +pub type HPEN = *mut core::ffi::c_void; +pub type HRGN = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct KERNINGPAIR { diff --git a/crates/libs/sys/src/Windows/Win32/Graphics/GdiPlus/mod.rs b/crates/libs/sys/src/Windows/Win32/Graphics/GdiPlus/mod.rs index 6c87db7b23..5e6fb2b45a 100644 --- a/crates/libs/sys/src/Windows/Win32/Graphics/GdiPlus/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Graphics/GdiPlus/mod.rs @@ -2042,30 +2042,78 @@ pub struct GdiplusStartupOutput { pub NotificationHook: isize, pub NotificationUnhook: isize, } -pub type GpAdjustableArrowCap = isize; -pub type GpBitmap = isize; -pub type GpBrush = isize; -pub type GpCachedBitmap = isize; -pub type GpCustomLineCap = isize; -pub type GpFont = isize; -pub type GpFontCollection = isize; -pub type GpFontFamily = isize; -pub type GpGraphics = isize; -pub type GpHatch = isize; -pub type GpImage = isize; -pub type GpImageAttributes = isize; -pub type GpInstalledFontCollection = isize; -pub type GpLineGradient = isize; -pub type GpMetafile = isize; -pub type GpPath = isize; -pub type GpPathGradient = isize; -pub type GpPathIterator = isize; -pub type GpPen = isize; -pub type GpPrivateFontCollection = isize; -pub type GpRegion = isize; -pub type GpSolidFill = isize; -pub type GpStringFormat = isize; -pub type GpTexture = isize; +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpAdjustableArrowCap(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpBitmap(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpBrush(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpCachedBitmap(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpCustomLineCap(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpFont(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpFontCollection(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpFontFamily(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpGraphics(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpHatch(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpImage(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpImageAttributes(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpInstalledFontCollection(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpLineGradient(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpMetafile(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpPath(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpPathGradient(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpPathIterator(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpPen(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpPrivateFontCollection(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpRegion(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpSolidFill(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpStringFormat(pub u8); +#[repr(C)] +#[derive(Clone, Copy)] +pub struct GpTexture(pub u8); #[repr(C)] #[derive(Clone, Copy)] pub struct HueSaturationLightness { diff --git a/crates/libs/sys/src/Windows/Win32/Graphics/OpenGL/mod.rs b/crates/libs/sys/src/Windows/Win32/Graphics/OpenGL/mod.rs index 6a09563ee8..6720fab77d 100644 --- a/crates/libs/sys/src/Windows/Win32/Graphics/OpenGL/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Graphics/OpenGL/mod.rs @@ -1178,7 +1178,7 @@ pub struct GLYPHMETRICSFLOAT { pub gmfCellIncX: f32, pub gmfCellIncY: f32, } -pub type HGLRC = isize; +pub type HGLRC = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct LAYERPLANEDESCRIPTOR { diff --git a/crates/libs/sys/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs b/crates/libs/sys/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs index 71796b4d15..fb0b059446 100644 --- a/crates/libs/sys/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs @@ -1,21 +1,14 @@ -#[cfg(feature = "Win32_Storage_Xps")] -windows_targets::link!("prntvpt.dll" "system" fn PTCloseProvider(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER) -> windows_sys::core::HRESULT); -#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_Storage_Xps"))] -windows_targets::link!("prntvpt.dll" "system" fn PTConvertDevModeToPrintTicket(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, cbdevmode : u32, pdevmode : *const super::super::Gdi:: DEVMODEA, scope : EPrintTicketScope, pprintticket : * mut core::ffi::c_void) -> windows_sys::core::HRESULT); -#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_Storage_Xps"))] -windows_targets::link!("prntvpt.dll" "system" fn PTConvertPrintTicketToDevMode(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pprintticket : * mut core::ffi::c_void, basedevmodetype : EDefaultDevmodeType, scope : EPrintTicketScope, pcbdevmode : *mut u32, ppdevmode : *mut *mut super::super::Gdi:: DEVMODEA, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_Storage_Xps")] -windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintCapabilities(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pcapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_Storage_Xps")] -windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceCapabilities(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pdevicecapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_Storage_Xps")] -windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceResources(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pszlocalename : windows_sys::core::PCWSTR, pprintticket : * mut core::ffi::c_void, pdeviceresources : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_Storage_Xps")] -windows_targets::link!("prntvpt.dll" "system" fn PTMergeAndValidatePrintTicket(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pbaseticket : * mut core::ffi::c_void, pdeltaticket : * mut core::ffi::c_void, scope : EPrintTicketScope, presultticket : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_Storage_Xps")] -windows_targets::link!("prntvpt.dll" "system" fn PTOpenProvider(pszprintername : windows_sys::core::PCWSTR, dwversion : u32, phprovider : *mut super::super::super::Storage::Xps:: HPTPROVIDER) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_Storage_Xps")] -windows_targets::link!("prntvpt.dll" "system" fn PTOpenProviderEx(pszprintername : windows_sys::core::PCWSTR, dwmaxversion : u32, dwprefversion : u32, phprovider : *mut super::super::super::Storage::Xps:: HPTPROVIDER, pusedversion : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("prntvpt.dll" "system" fn PTCloseProvider(hprovider : HPTPROVIDER) -> windows_sys::core::HRESULT); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("prntvpt.dll" "system" fn PTConvertDevModeToPrintTicket(hprovider : HPTPROVIDER, cbdevmode : u32, pdevmode : *const super::super::Gdi:: DEVMODEA, scope : EPrintTicketScope, pprintticket : * mut core::ffi::c_void) -> windows_sys::core::HRESULT); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("prntvpt.dll" "system" fn PTConvertPrintTicketToDevMode(hprovider : HPTPROVIDER, pprintticket : * mut core::ffi::c_void, basedevmodetype : EDefaultDevmodeType, scope : EPrintTicketScope, pcbdevmode : *mut u32, ppdevmode : *mut *mut super::super::Gdi:: DEVMODEA, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); +windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintCapabilities(hprovider : HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pcapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); +windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceCapabilities(hprovider : HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pdevicecapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); +windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceResources(hprovider : HPTPROVIDER, pszlocalename : windows_sys::core::PCWSTR, pprintticket : * mut core::ffi::c_void, pdeviceresources : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); +windows_targets::link!("prntvpt.dll" "system" fn PTMergeAndValidatePrintTicket(hprovider : HPTPROVIDER, pbaseticket : * mut core::ffi::c_void, pdeltaticket : * mut core::ffi::c_void, scope : EPrintTicketScope, presultticket : * mut core::ffi::c_void, pbstrerrormessage : *mut windows_sys::core::BSTR) -> windows_sys::core::HRESULT); +windows_targets::link!("prntvpt.dll" "system" fn PTOpenProvider(pszprintername : windows_sys::core::PCWSTR, dwversion : u32, phprovider : *mut HPTPROVIDER) -> windows_sys::core::HRESULT); +windows_targets::link!("prntvpt.dll" "system" fn PTOpenProviderEx(pszprintername : windows_sys::core::PCWSTR, dwmaxversion : u32, dwprefversion : u32, phprovider : *mut HPTPROVIDER, pusedversion : *mut u32) -> windows_sys::core::HRESULT); windows_targets::link!("prntvpt.dll" "system" fn PTQuerySchemaVersionSupport(pszprintername : windows_sys::core::PCWSTR, pmaxversion : *mut u32) -> windows_sys::core::HRESULT); windows_targets::link!("prntvpt.dll" "system" fn PTReleaseMemory(pbuffer : *const core::ffi::c_void) -> windows_sys::core::HRESULT); pub const E_DELTA_PRINTTICKET_FORMAT: u32 = 2147745797u32; @@ -32,3 +25,4 @@ pub const kPrinterDefaultDevmode: EDefaultDevmodeType = 1i32; pub const kUserDefaultDevmode: EDefaultDevmodeType = 0i32; pub type EDefaultDevmodeType = i32; pub type EPrintTicketScope = i32; +pub type HPTPROVIDER = *mut core::ffi::c_void; diff --git a/crates/libs/sys/src/Windows/Win32/Media/Audio/mod.rs b/crates/libs/sys/src/Windows/Win32/Media/Audio/mod.rs index 3babbd8e15..3f03b834fa 100644 --- a/crates/libs/sys/src/Windows/Win32/Media/Audio/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Media/Audio/mod.rs @@ -1302,19 +1302,19 @@ pub struct ECHOWAVEFILTER { pub dwVolume: u32, pub dwDelay: u32, } -pub type HACMDRIVER = isize; -pub type HACMDRIVERID = isize; -pub type HACMOBJ = isize; -pub type HACMSTREAM = isize; -pub type HMIDI = isize; -pub type HMIDIIN = isize; -pub type HMIDIOUT = isize; -pub type HMIDISTRM = isize; -pub type HMIXER = isize; -pub type HMIXEROBJ = isize; -pub type HWAVE = isize; -pub type HWAVEIN = isize; -pub type HWAVEOUT = isize; +pub type HACMDRIVER = *mut core::ffi::c_void; +pub type HACMDRIVERID = *mut core::ffi::c_void; +pub type HACMOBJ = *mut core::ffi::c_void; +pub type HACMSTREAM = *mut core::ffi::c_void; +pub type HMIDI = *mut core::ffi::c_void; +pub type HMIDIIN = *mut core::ffi::c_void; +pub type HMIDIOUT = *mut core::ffi::c_void; +pub type HMIDISTRM = *mut core::ffi::c_void; +pub type HMIXER = *mut core::ffi::c_void; +pub type HMIXEROBJ = *mut core::ffi::c_void; +pub type HWAVE = *mut core::ffi::c_void; +pub type HWAVEIN = *mut core::ffi::c_void; +pub type HWAVEOUT = *mut core::ffi::c_void; #[repr(C, packed(1))] #[derive(Clone, Copy)] pub struct MIDIEVENT { diff --git a/crates/libs/sys/src/Windows/Win32/Media/Multimedia/mod.rs b/crates/libs/sys/src/Windows/Win32/Media/Multimedia/mod.rs index d9906b3d6b..ed38344fc0 100644 --- a/crates/libs/sys/src/Windows/Win32/Media/Multimedia/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Media/Multimedia/mod.rs @@ -5249,10 +5249,10 @@ pub struct GSM610WAVEFORMAT { pub wfx: super::Audio::WAVEFORMATEX, pub wSamplesPerBlock: u16, } -pub type HDRVR = isize; -pub type HIC = isize; -pub type HMMIO = isize; -pub type HVIDEO = isize; +pub type HDRVR = *mut core::ffi::c_void; +pub type HIC = *mut core::ffi::c_void; +pub type HMMIO = *mut core::ffi::c_void; +pub type HVIDEO = *mut core::ffi::c_void; #[repr(C)] #[cfg(feature = "Win32_Graphics_Gdi")] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/Media/mod.rs b/crates/libs/sys/src/Windows/Win32/Media/mod.rs index 9c6a07fedf..86373ca02b 100644 --- a/crates/libs/sys/src/Windows/Win32/Media/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Media/mod.rs @@ -122,7 +122,7 @@ pub const TIME_SMPTE: u32 = 8u32; pub const TIME_TICKS: u32 = 32u32; pub const WAVERR_BASE: u32 = 32u32; pub type TIMECODE_SAMPLE_FLAGS = u32; -pub type HTASK = isize; +pub type HTASK = *mut core::ffi::c_void; #[repr(C, packed(1))] #[derive(Clone, Copy)] pub struct MMTIME { diff --git a/crates/libs/sys/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs b/crates/libs/sys/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs index 21568460be..5ede2a65e1 100644 --- a/crates/libs/sys/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs @@ -1033,7 +1033,7 @@ pub struct FIXED_INFO_W2KSP1 { pub EnableProxy: u32, pub EnableDns: u32, } -pub type HIFTIMESTAMPCHANGE = isize; +pub type HIFTIMESTAMPCHANGE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct ICMPV6_ECHO_REPLY_LH { diff --git a/crates/libs/sys/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs b/crates/libs/sys/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs index 06bb2d0ec6..df2149c35e 100644 --- a/crates/libs/sys/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs @@ -53,10 +53,12 @@ windows_targets::link!("netapi32.dll" "system" fn NetGroupSetUsers(servername : windows_targets::link!("netapi32.dll" "system" fn NetIsServiceAccount(servername : windows_sys::core::PCWSTR, accountname : windows_sys::core::PCWSTR, isservice : *mut super::super::Foundation:: BOOL) -> super::super::Foundation:: NTSTATUS); windows_targets::link!("netapi32.dll" "system" fn NetJoinDomain(lpserver : windows_sys::core::PCWSTR, lpdomain : windows_sys::core::PCWSTR, lpmachineaccountou : windows_sys::core::PCWSTR, lpaccount : windows_sys::core::PCWSTR, lppassword : windows_sys::core::PCWSTR, fjoinoptions : NET_JOIN_DOMAIN_JOIN_OPTIONS) -> u32); windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupAdd(servername : windows_sys::core::PCWSTR, level : u32, buf : *const u8, parm_err : *mut u32) -> u32); -windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupAddMember(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR, membersid : super::super::Foundation:: PSID) -> u32); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupAddMember(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR, membersid : super::super::Security:: PSID) -> u32); windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupAddMembers(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR, level : u32, buf : *const u8, totalentries : u32) -> u32); windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupDel(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR) -> u32); -windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupDelMember(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR, membersid : super::super::Foundation:: PSID) -> u32); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupDelMember(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR, membersid : super::super::Security:: PSID) -> u32); windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupDelMembers(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR, level : u32, buf : *const u8, totalentries : u32) -> u32); windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupEnum(servername : windows_sys::core::PCWSTR, level : u32, bufptr : *mut *mut u8, prefmaxlen : u32, entriesread : *mut u32, totalentries : *mut u32, resumehandle : *mut usize) -> u32); windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupGetInfo(servername : windows_sys::core::PCWSTR, groupname : windows_sys::core::PCWSTR, level : u32, bufptr : *mut *mut u8) -> u32); @@ -2788,11 +2790,12 @@ pub struct GROUP_INFO_2 { pub grpi2_attributes: u32, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct GROUP_INFO_3 { pub grpi3_name: windows_sys::core::PWSTR, pub grpi3_comment: windows_sys::core::PWSTR, - pub grpi3_group_sid: super::super::Foundation::PSID, + pub grpi3_group_sid: super::super::Security::PSID, pub grpi3_attributes: u32, } #[repr(C)] @@ -2836,15 +2839,16 @@ pub struct LOCALGROUP_INFO_1002 { pub lgrpi1002_comment: windows_sys::core::PWSTR, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct LOCALGROUP_MEMBERS_INFO_0 { - pub lgrmi0_sid: super::super::Foundation::PSID, + pub lgrmi0_sid: super::super::Security::PSID, } #[repr(C)] #[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct LOCALGROUP_MEMBERS_INFO_1 { - pub lgrmi1_sid: super::super::Foundation::PSID, + pub lgrmi1_sid: super::super::Security::PSID, pub lgrmi1_sidusage: super::super::Security::SID_NAME_USE, pub lgrmi1_name: windows_sys::core::PWSTR, } @@ -2852,7 +2856,7 @@ pub struct LOCALGROUP_MEMBERS_INFO_1 { #[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct LOCALGROUP_MEMBERS_INFO_2 { - pub lgrmi2_sid: super::super::Foundation::PSID, + pub lgrmi2_sid: super::super::Security::PSID, pub lgrmi2_sidusage: super::super::Security::SID_NAME_USE, pub lgrmi2_domainandname: windows_sys::core::PWSTR, } @@ -4264,22 +4268,24 @@ pub struct USER_INFO_22 { pub usri22_code_page: u32, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct USER_INFO_23 { pub usri23_name: windows_sys::core::PWSTR, pub usri23_full_name: windows_sys::core::PWSTR, pub usri23_comment: windows_sys::core::PWSTR, pub usri23_flags: USER_ACCOUNT_FLAGS, - pub usri23_user_sid: super::super::Foundation::PSID, + pub usri23_user_sid: super::super::Security::PSID, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct USER_INFO_24 { pub usri24_internet_identity: super::super::Foundation::BOOL, pub usri24_flags: u32, pub usri24_internet_provider_name: windows_sys::core::PWSTR, pub usri24_internet_principal_name: windows_sys::core::PWSTR, - pub usri24_user_sid: super::super::Foundation::PSID, + pub usri24_user_sid: super::super::Security::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -4315,6 +4321,7 @@ pub struct USER_INFO_3 { pub usri3_password_expired: u32, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct USER_INFO_4 { pub usri4_name: windows_sys::core::PWSTR, @@ -4341,7 +4348,7 @@ pub struct USER_INFO_4 { pub usri4_logon_server: windows_sys::core::PWSTR, pub usri4_country_code: u32, pub usri4_code_page: u32, - pub usri4_user_sid: super::super::Foundation::PSID, + pub usri4_user_sid: super::super::Security::PSID, pub usri4_primary_group_id: u32, pub usri4_profile: windows_sys::core::PWSTR, pub usri4_home_dir_drive: windows_sys::core::PWSTR, @@ -4398,10 +4405,11 @@ pub struct USER_MODALS_INFO_1007 { pub usrmod1007_primary: windows_sys::core::PWSTR, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct USER_MODALS_INFO_2 { pub usrmod2_domain_name: windows_sys::core::PWSTR, - pub usrmod2_domain_id: super::super::Foundation::PSID, + pub usrmod2_domain_id: super::super::Security::PSID, } #[repr(C)] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/NetworkManagement/QoS/mod.rs b/crates/libs/sys/src/Windows/Win32/NetworkManagement/QoS/mod.rs index ba9b3c048a..8d65071aed 100644 --- a/crates/libs/sys/src/Windows/Win32/NetworkManagement/QoS/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/NetworkManagement/QoS/mod.rs @@ -960,7 +960,7 @@ pub struct LPMIPTABLE { pub IfIpAddr: super::super::Networking::WinSock::IN_ADDR, pub IfNetMask: super::super::Networking::WinSock::IN_ADDR, } -pub type LPM_HANDLE = isize; +pub type LPM_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct LPM_INIT_INFO { @@ -1121,7 +1121,7 @@ pub struct RESV_STYLE { pub style_header: RsvpObjHdr, pub style_word: u32, } -pub type RHANDLE = isize; +pub type RHANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct RSVP_ADSPEC { diff --git a/crates/libs/sys/src/Windows/Win32/NetworkManagement/Rras/mod.rs b/crates/libs/sys/src/Windows/Win32/NetworkManagement/Rras/mod.rs index 85468ce897..f8f04fa7fa 100644 --- a/crates/libs/sys/src/Windows/Win32/NetworkManagement/Rras/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/NetworkManagement/Rras/mod.rs @@ -1201,7 +1201,7 @@ pub struct GRE_CONFIG_PARAMS0 { pub dwNumPorts: u32, pub dwPortFlags: u32, } -pub type HRASCONN = isize; +pub type HRASCONN = *mut core::ffi::c_void; #[repr(C)] #[cfg(feature = "Win32_Security_Cryptography")] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/NetworkManagement/WNet/mod.rs b/crates/libs/sys/src/Windows/Win32/NetworkManagement/WNet/mod.rs index 110ff37547..0a6825ae5e 100644 --- a/crates/libs/sys/src/Windows/Win32/NetworkManagement/WNet/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/NetworkManagement/WNet/mod.rs @@ -1,7 +1,7 @@ windows_targets::link!("mpr.dll" "system" fn MultinetGetConnectionPerformanceA(lpnetresource : *const NETRESOURCEA, lpnetconnectinfostruct : *mut NETCONNECTINFOSTRUCT) -> u32); windows_targets::link!("mpr.dll" "system" fn MultinetGetConnectionPerformanceW(lpnetresource : *const NETRESOURCEW, lpnetconnectinfostruct : *mut NETCONNECTINFOSTRUCT) -> u32); windows_targets::link!("davclnt.dll" "system" fn NPAddConnection(lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PCWSTR) -> u32); -windows_targets::link!("davclnt.dll" "system" fn NPAddConnection3(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PCWSTR, dwflags : NET_USE_CONNECT_FLAGS) -> u32); +windows_targets::link!("davclnt.dll" "system" fn NPAddConnection3(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PCWSTR, dwflags : NET_CONNECT_FLAGS) -> u32); windows_targets::link!("ntlanman.dll" "system" fn NPAddConnection4(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lpauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : u32, lpuseoptions : *const u8, cbuseoptions : u32) -> u32); windows_targets::link!("davclnt.dll" "system" fn NPCancelConnection(lpname : windows_sys::core::PCWSTR, fforce : super::super::Foundation:: BOOL) -> u32); windows_targets::link!("ntlanman.dll" "system" fn NPCancelConnection2(lpname : windows_sys::core::PCWSTR, fforce : super::super::Foundation:: BOOL, dwflags : u32) -> u32); @@ -18,16 +18,16 @@ windows_targets::link!("davclnt.dll" "system" fn NPGetResourceParent(lpnetresour windows_targets::link!("davclnt.dll" "system" fn NPGetUniversalName(lplocalpath : windows_sys::core::PCWSTR, dwinfolevel : UNC_INFO_LEVEL, lpbuffer : *mut core::ffi::c_void, lpbuffersize : *mut u32) -> u32); windows_targets::link!("davclnt.dll" "system" fn NPGetUser(lpname : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PWSTR, lpnbufferlen : *mut u32) -> u32); windows_targets::link!("davclnt.dll" "system" fn NPOpenEnum(dwscope : u32, dwtype : u32, dwusage : u32, lpnetresource : *const NETRESOURCEW, lphenum : *mut super::super::Foundation:: HANDLE) -> u32); -windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2A(lpnetresource : *const NETRESOURCEA, lppassword : windows_sys::core::PCSTR, lpusername : windows_sys::core::PCSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2W(lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PCWSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_sys::core::PCSTR, lpusername : windows_sys::core::PCSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PCWSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : u32, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : u32, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2A(lpnetresource : *const NETRESOURCEA, lppassword : windows_sys::core::PCSTR, lpusername : windows_sys::core::PCSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2W(lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PCWSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_sys::core::PCSTR, lpusername : windows_sys::core::PCSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpusername : windows_sys::core::PCWSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : NET_CONNECT_FLAGS, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : NET_CONNECT_FLAGS, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("mpr.dll" "system" fn WNetAddConnectionA(lpremotename : windows_sys::core::PCSTR, lppassword : windows_sys::core::PCSTR, lplocalname : windows_sys::core::PCSTR) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("mpr.dll" "system" fn WNetAddConnectionW(lpremotename : windows_sys::core::PCWSTR, lppassword : windows_sys::core::PCWSTR, lplocalname : windows_sys::core::PCWSTR) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2A(lpname : windows_sys::core::PCSTR, dwflags : u32, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2W(lpname : windows_sys::core::PCWSTR, dwflags : u32, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2A(lpname : windows_sys::core::PCSTR, dwflags : NET_CONNECT_FLAGS, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2W(lpname : windows_sys::core::PCWSTR, dwflags : NET_CONNECT_FLAGS, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("mpr.dll" "system" fn WNetCancelConnectionA(lpname : windows_sys::core::PCSTR, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("mpr.dll" "system" fn WNetCancelConnectionW(lpname : windows_sys::core::PCWSTR, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("mpr.dll" "system" fn WNetCloseEnum(henum : super::super::Foundation:: HANDLE) -> super::super::Foundation:: WIN32_ERROR); @@ -61,33 +61,33 @@ windows_targets::link!("mpr.dll" "system" fn WNetSetLastErrorA(err : u32, lperro windows_targets::link!("mpr.dll" "system" fn WNetSetLastErrorW(err : u32, lperror : windows_sys::core::PCWSTR, lpproviders : windows_sys::core::PCWSTR)); windows_targets::link!("mpr.dll" "system" fn WNetUseConnection4A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : u32, lpuseoptions : *const u8, cbuseoptions : u32, lpaccessname : windows_sys::core::PSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("mpr.dll" "system" fn WNetUseConnection4W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : u32, lpuseoptions : *const u8, cbuseoptions : u32, lpaccessname : windows_sys::core::PWSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionA(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_sys::core::PCSTR, lpuserid : windows_sys::core::PCSTR, dwflags : NET_USE_CONNECT_FLAGS, lpaccessname : windows_sys::core::PSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionW(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpuserid : windows_sys::core::PCWSTR, dwflags : NET_USE_CONNECT_FLAGS, lpaccessname : windows_sys::core::PWSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionA(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_sys::core::PCSTR, lpuserid : windows_sys::core::PCSTR, dwflags : NET_CONNECT_FLAGS, lpaccessname : windows_sys::core::PSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionW(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_sys::core::PCWSTR, lpuserid : windows_sys::core::PCWSTR, dwflags : NET_CONNECT_FLAGS, lpaccessname : windows_sys::core::PWSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); pub const CONNDLG_CONN_POINT: CONNECTDLGSTRUCT_FLAGS = 2u32; pub const CONNDLG_HIDE_BOX: CONNECTDLGSTRUCT_FLAGS = 8u32; pub const CONNDLG_NOT_PERSIST: CONNECTDLGSTRUCT_FLAGS = 32u32; pub const CONNDLG_PERSIST: CONNECTDLGSTRUCT_FLAGS = 16u32; pub const CONNDLG_RO_PATH: CONNECTDLGSTRUCT_FLAGS = 1u32; pub const CONNDLG_USE_MRU: CONNECTDLGSTRUCT_FLAGS = 4u32; -pub const CONNECT_CMD_SAVECRED: NET_USE_CONNECT_FLAGS = 4096u32; -pub const CONNECT_COMMANDLINE: NET_USE_CONNECT_FLAGS = 2048u32; -pub const CONNECT_CRED_RESET: u32 = 8192u32; -pub const CONNECT_CURRENT_MEDIA: u32 = 512u32; -pub const CONNECT_DEFERRED: NET_USE_CONNECT_FLAGS = 1024u32; -pub const CONNECT_GLOBAL_MAPPING: u32 = 262144u32; -pub const CONNECT_INTERACTIVE: NET_USE_CONNECT_FLAGS = 8u32; -pub const CONNECT_LOCALDRIVE: u32 = 256u32; -pub const CONNECT_NEED_DRIVE: u32 = 32u32; -pub const CONNECT_PROMPT: NET_USE_CONNECT_FLAGS = 16u32; -pub const CONNECT_REDIRECT: NET_USE_CONNECT_FLAGS = 128u32; -pub const CONNECT_REFCOUNT: u32 = 64u32; -pub const CONNECT_REQUIRE_INTEGRITY: u32 = 16384u32; -pub const CONNECT_REQUIRE_PRIVACY: u32 = 32768u32; -pub const CONNECT_RESERVED: u32 = 4278190080u32; -pub const CONNECT_TEMPORARY: NET_USE_CONNECT_FLAGS = 4u32; -pub const CONNECT_UPDATE_PROFILE: NET_USE_CONNECT_FLAGS = 1u32; -pub const CONNECT_UPDATE_RECENT: NET_USE_CONNECT_FLAGS = 2u32; -pub const CONNECT_WRITE_THROUGH_SEMANTICS: u32 = 65536u32; +pub const CONNECT_CMD_SAVECRED: NET_CONNECT_FLAGS = 4096u32; +pub const CONNECT_COMMANDLINE: NET_CONNECT_FLAGS = 2048u32; +pub const CONNECT_CRED_RESET: NET_CONNECT_FLAGS = 8192u32; +pub const CONNECT_CURRENT_MEDIA: NET_CONNECT_FLAGS = 512u32; +pub const CONNECT_DEFERRED: NET_CONNECT_FLAGS = 1024u32; +pub const CONNECT_GLOBAL_MAPPING: NET_CONNECT_FLAGS = 262144u32; +pub const CONNECT_INTERACTIVE: NET_CONNECT_FLAGS = 8u32; +pub const CONNECT_LOCALDRIVE: NET_CONNECT_FLAGS = 256u32; +pub const CONNECT_NEED_DRIVE: NET_CONNECT_FLAGS = 32u32; +pub const CONNECT_PROMPT: NET_CONNECT_FLAGS = 16u32; +pub const CONNECT_REDIRECT: NET_CONNECT_FLAGS = 128u32; +pub const CONNECT_REFCOUNT: NET_CONNECT_FLAGS = 64u32; +pub const CONNECT_REQUIRE_INTEGRITY: NET_CONNECT_FLAGS = 16384u32; +pub const CONNECT_REQUIRE_PRIVACY: NET_CONNECT_FLAGS = 32768u32; +pub const CONNECT_RESERVED: NET_CONNECT_FLAGS = 4278190080u32; +pub const CONNECT_TEMPORARY: NET_CONNECT_FLAGS = 4u32; +pub const CONNECT_UPDATE_PROFILE: NET_CONNECT_FLAGS = 1u32; +pub const CONNECT_UPDATE_RECENT: NET_CONNECT_FLAGS = 2u32; +pub const CONNECT_WRITE_THROUGH_SEMANTICS: NET_CONNECT_FLAGS = 65536u32; pub const DISC_NO_FORCE: DISCDLGSTRUCT_FLAGS = 64u32; pub const DISC_UPDATE_PROFILE: DISCDLGSTRUCT_FLAGS = 1u32; pub const NETINFO_DISKRED: NETINFOSTRUCT_CHARACTERISTICS = 4u32; @@ -195,9 +195,9 @@ pub type CONNECTDLGSTRUCT_FLAGS = u32; pub type DISCDLGSTRUCT_FLAGS = u32; pub type NETINFOSTRUCT_CHARACTERISTICS = u32; pub type NETWORK_NAME_FORMAT_FLAGS = u32; +pub type NET_CONNECT_FLAGS = u32; pub type NET_RESOURCE_SCOPE = u32; pub type NET_RESOURCE_TYPE = u32; -pub type NET_USE_CONNECT_FLAGS = u32; pub type NPDIRECTORY_NOTIFY_OPERATION = u32; pub type NP_PROPERTY_DIALOG_SELECTION = u32; pub type UNC_INFO_LEVEL = u32; @@ -289,7 +289,7 @@ pub struct NETRESOURCEW { pub struct NOTIFYADD { pub hwndOwner: super::super::Foundation::HWND, pub NetResource: NETRESOURCEA, - pub dwAddFlags: NET_USE_CONNECT_FLAGS, + pub dwAddFlags: NET_CONNECT_FLAGS, } #[repr(C)] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs b/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs index 160491a238..d0a66ff5cb 100644 --- a/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs @@ -8,7 +8,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutEnum0(enginehandle windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u32, callout : *mut *mut FWPM_CALLOUT0) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, callout : *mut *mut FWPM_CALLOUT0) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_CALLOUT_SUBSCRIPTION0, callback : FWPM_CALLOUT_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32); @@ -19,7 +19,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionDestroyEnumHandl windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_CONNECTION0, numentriesreturned : *mut u32) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u64, connection : *mut *mut FWPM_CONNECTION0) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionSubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_CONNECTION_SUBSCRIPTION0, callback : FWPM_CONNECTION_CALLBACK0, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32); @@ -30,7 +30,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineClose0(enginehandle #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetOption0(enginehandle : super::super::Foundation:: HANDLE, option : FWPM_ENGINE_OPTION, value : *mut *mut FWP_VALUE0) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(all(feature = "Win32_Security", feature = "Win32_System_Rpc"))] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineOpen0(servername : windows_sys::core::PCWSTR, authnservice : u32, authidentity : *const super::super::System::Rpc:: SEC_WINNT_AUTH_IDENTITY_W, session : *const FWPM_SESSION0, enginehandle : *mut super::super::Foundation:: HANDLE) -> u32); #[cfg(feature = "Win32_Security")] @@ -51,7 +51,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetById0(enginehandl #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, filter : *mut *mut FWPM_FILTER0) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); #[cfg(feature = "Win32_Security")] @@ -76,7 +76,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerEnum0(enginehandle : windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u16, layer : *mut *mut FWPM_LAYER0) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, layer : *mut *mut FWPM_LAYER0) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); #[cfg(feature = "Win32_Security")] @@ -108,7 +108,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscribe4(engineh windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut FWPM_NET_EVENT_SUBSCRIPTION0, numentries : *mut u32) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, eventshandle : super::super::Foundation:: HANDLE) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); #[cfg(feature = "Win32_Security")] @@ -150,7 +150,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey2(e #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey3(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT3) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0, callback : FWPM_PROVIDER_CONTEXT_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32); @@ -162,7 +162,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderDestroyEnumHandle0 windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_PROVIDER0, numentriesreturned : *mut u32) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, provider : *mut *mut FWPM_PROVIDER0) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_PROVIDER_SUBSCRIPTION0, callback : FWPM_PROVIDER_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32); @@ -180,7 +180,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerDestroyEnumHandle0 windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_SUBLAYER0, numentriesreturned : *mut u32) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, sublayer : *mut *mut FWPM_SUBLAYER0) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_SUBLAYER_SUBSCRIPTION0, callback : FWPM_SUBLAYER_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32); @@ -195,11 +195,11 @@ windows_targets::link!("fwpuclnt.dll" "system" fn FwpmTransactionCommit0(engineh windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventSubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_VSWITCH_EVENT_SUBSCRIPTION0, callback : FWPM_VSWITCH_EVENT_CALLBACK0, context : *const core::ffi::c_void, subscriptionhandle : *mut super::super::Foundation:: HANDLE) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscriptionhandle : super::super::Foundation:: HANDLE) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetStatistics0(enginehandle : super::super::Foundation:: HANDLE, idpstatistics : *mut IPSEC_DOSP_STATISTICS0) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); @@ -211,7 +211,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn IPsecGetStatistics1(enginehand #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerAddAndRegister0(enginehandle : super::super::Foundation:: HANDLE, keymanager : *const IPSEC_KEY_MANAGER0, keymanagercallbacks : *const IPSEC_KEY_MANAGER_CALLBACKS0, keymgmthandle : *mut super::super::Foundation:: HANDLE) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerUnregisterAndDelete0(enginehandle : super::super::Foundation:: HANDLE, keymgmthandle : super::super::Foundation:: HANDLE) -> u32); @@ -247,7 +247,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextUnsubscribe0(eng windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextUpdate0(enginehandle : super::super::Foundation:: HANDLE, flags : u64, newvalues : *const IPSEC_SA_CONTEXT1) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const IPSEC_SA_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); @@ -260,7 +260,7 @@ windows_targets::link!("fwpuclnt.dll" "system" fn IkeextGetStatistics1(enginehan #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const IKEEXT_SA_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32); #[cfg(feature = "Win32_Security")] -windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); +windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32); windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDeleteById0(enginehandle : super::super::Foundation:: HANDLE, id : u64) -> u32); diff --git a/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs b/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs index c08f36da93..509c1dbc63 100644 --- a/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs @@ -14,7 +14,8 @@ windows_targets::link!("firewallapi.dll" "system" fn NetworkIsolationGetEnterpri windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationRegisterForAppContainerChanges(flags : u32, callback : PAC_CHANGES_CALLBACK_FN, context : *const core::ffi::c_void, registrationobject : *mut super::super::Foundation:: HANDLE) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationSetAppContainerConfig(dwnumpublicappcs : u32, appcontainersids : *const super::super::Security:: SID_AND_ATTRIBUTES) -> u32); -windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationSetupAppContainerBinaries(applicationcontainersid : super::super::Foundation:: PSID, packagefullname : windows_sys::core::PCWSTR, packagefolder : windows_sys::core::PCWSTR, displayname : windows_sys::core::PCWSTR, bbinariesfullycomputed : super::super::Foundation:: BOOL, binaries : *const windows_sys::core::PCWSTR, binariescount : u32) -> windows_sys::core::HRESULT); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationSetupAppContainerBinaries(applicationcontainersid : super::super::Security:: PSID, packagefullname : windows_sys::core::PCWSTR, packagefolder : windows_sys::core::PCWSTR, displayname : windows_sys::core::PCWSTR, bbinariesfullycomputed : super::super::Foundation:: BOOL, binaries : *const windows_sys::core::PCWSTR, binariescount : u32) -> windows_sys::core::HRESULT); windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationUnregisterForAppContainerChanges(registrationobject : super::super::Foundation:: HANDLE) -> u32); pub const FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_ALL: FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS = 3i32; pub const FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_AUTO_RESOLVE: FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS = 1i32; diff --git a/crates/libs/sys/src/Windows/Win32/Networking/ActiveDirectory/mod.rs b/crates/libs/sys/src/Windows/Win32/Networking/ActiveDirectory/mod.rs index 300382b1c7..dff3d93c2a 100644 --- a/crates/libs/sys/src/Windows/Win32/Networking/ActiveDirectory/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Networking/ActiveDirectory/mod.rs @@ -67,7 +67,9 @@ windows_targets::link!("dsparse.dll" "system" fn DsCrackUnquotedMangledRdnA(pszr windows_targets::link!("dsparse.dll" "system" fn DsCrackUnquotedMangledRdnW(pszrdn : windows_sys::core::PCWSTR, cchrdn : u32, pguid : *mut windows_sys::core::GUID, pedsmanglefor : *mut DS_MANGLE_FOR) -> super::super::Foundation:: BOOL); windows_targets::link!("netapi32.dll" "system" fn DsDeregisterDnsHostRecordsA(servername : windows_sys::core::PCSTR, dnsdomainname : windows_sys::core::PCSTR, domainguid : *const windows_sys::core::GUID, dsaguid : *const windows_sys::core::GUID, dnshostname : windows_sys::core::PCSTR) -> u32); windows_targets::link!("netapi32.dll" "system" fn DsDeregisterDnsHostRecordsW(servername : windows_sys::core::PCWSTR, dnsdomainname : windows_sys::core::PCWSTR, domainguid : *const windows_sys::core::GUID, dsaguid : *const windows_sys::core::GUID, dnshostname : windows_sys::core::PCWSTR) -> u32); +#[cfg(feature = "Win32_Security")] windows_targets::link!("netapi32.dll" "system" fn DsEnumerateDomainTrustsA(servername : windows_sys::core::PCSTR, flags : u32, domains : *mut *mut DS_DOMAIN_TRUSTSA, domaincount : *mut u32) -> u32); +#[cfg(feature = "Win32_Security")] windows_targets::link!("netapi32.dll" "system" fn DsEnumerateDomainTrustsW(servername : windows_sys::core::PCWSTR, flags : u32, domains : *mut *mut DS_DOMAIN_TRUSTSW, domaincount : *mut u32) -> u32); windows_targets::link!("ntdsapi.dll" "system" fn DsFreeDomainControllerInfoA(infolevel : u32, cinfo : u32, pinfo : *const core::ffi::c_void)); windows_targets::link!("ntdsapi.dll" "system" fn DsFreeDomainControllerInfoW(infolevel : u32, cinfo : u32, pinfo : *const core::ffi::c_void)); @@ -1866,6 +1868,7 @@ pub struct DS_DOMAIN_CONTROLLER_INFO_3W { pub NtdsDsaObjectGuid: windows_sys::core::GUID, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct DS_DOMAIN_TRUSTSA { pub NetbiosDomainName: windows_sys::core::PSTR, @@ -1874,10 +1877,11 @@ pub struct DS_DOMAIN_TRUSTSA { pub ParentIndex: u32, pub TrustType: u32, pub TrustAttributes: u32, - pub DomainSid: super::super::Foundation::PSID, + pub DomainSid: super::super::Security::PSID, pub DomainGuid: windows_sys::core::GUID, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct DS_DOMAIN_TRUSTSW { pub NetbiosDomainName: windows_sys::core::PWSTR, @@ -1886,7 +1890,7 @@ pub struct DS_DOMAIN_TRUSTSW { pub ParentIndex: u32, pub TrustType: u32, pub TrustAttributes: u32, - pub DomainSid: super::super::Foundation::PSID, + pub DomainSid: super::super::Security::PSID, pub DomainGuid: windows_sys::core::GUID, } #[repr(C)] diff --git a/crates/libs/sys/src/Windows/Win32/Networking/Clustering/mod.rs b/crates/libs/sys/src/Windows/Win32/Networking/Clustering/mod.rs index f9b6c0858d..7bd93df046 100644 --- a/crates/libs/sys/src/Windows/Win32/Networking/Clustering/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Networking/Clustering/mod.rs @@ -410,27 +410,27 @@ windows_targets::link!("resutils.dll" "system" fn ResUtilSetPropertyTableEx(hkey #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("resutils.dll" "system" fn ResUtilSetQwordValue(hkeyclusterkey : super::super::System::Registry:: HKEY, pszvaluename : windows_sys::core::PCWSTR, qwnewvalue : u64, pqwoutvalue : *mut u64) -> u32); windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceEnvironment(pszservicename : windows_sys::core::PCWSTR, hresource : HRESOURCE, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParameters(pszservicename : windows_sys::core::PCWSTR, schscmhandle : super::super::Security:: SC_HANDLE, phservice : *mut super::super::Security:: SC_HANDLE, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParametersEx(pszservicename : windows_sys::core::PCWSTR, schscmhandle : super::super::Security:: SC_HANDLE, phservice : *mut super::super::Security:: SC_HANDLE, dwdesiredaccess : u32, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); +#[cfg(feature = "Win32_System_Services")] +windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParameters(pszservicename : windows_sys::core::PCWSTR, schscmhandle : super::super::System::Services:: SC_HANDLE, phservice : *mut super::super::System::Services:: SC_HANDLE, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); +#[cfg(feature = "Win32_System_Services")] +windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParametersEx(pszservicename : windows_sys::core::PCWSTR, schscmhandle : super::super::System::Services:: SC_HANDLE, phservice : *mut super::super::System::Services:: SC_HANDLE, dwdesiredaccess : u32, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("resutils.dll" "system" fn ResUtilSetSzValue(hkeyclusterkey : super::super::System::Registry:: HKEY, pszvaluename : windows_sys::core::PCWSTR, psznewvalue : windows_sys::core::PCWSTR, ppszoutstring : *mut windows_sys::core::PWSTR) -> u32); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("resutils.dll" "system" fn ResUtilSetUnknownProperties(hkeyclusterkey : super::super::System::Registry:: HKEY, ppropertytable : *const RESUTIL_PROPERTY_ITEM, pinpropertylist : *const core::ffi::c_void, cbinpropertylistsize : u32) -> u32); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("resutils.dll" "system" fn ResUtilSetValueEx(hkeyclusterkey : super::super::System::Registry:: HKEY, valuename : windows_sys::core::PCWSTR, valuetype : u32, valuedata : *const u8, valuesize : u32, flags : u32) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("resutils.dll" "system" fn ResUtilStartResourceService(pszservicename : windows_sys::core::PCWSTR, phservicehandle : *mut super::super::Security:: SC_HANDLE) -> u32); +#[cfg(feature = "Win32_System_Services")] +windows_targets::link!("resutils.dll" "system" fn ResUtilStartResourceService(pszservicename : windows_sys::core::PCWSTR, phservicehandle : *mut super::super::System::Services:: SC_HANDLE) -> u32); windows_targets::link!("resutils.dll" "system" fn ResUtilStopResourceService(pszservicename : windows_sys::core::PCWSTR) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("resutils.dll" "system" fn ResUtilStopService(hservicehandle : super::super::Security:: SC_HANDLE) -> u32); +#[cfg(feature = "Win32_System_Services")] +windows_targets::link!("resutils.dll" "system" fn ResUtilStopService(hservicehandle : super::super::System::Services:: SC_HANDLE) -> u32); windows_targets::link!("resutils.dll" "system" fn ResUtilTerminateServiceProcessFromResDll(dwservicepid : u32, boffline : super::super::Foundation:: BOOL, pdwresourcestate : *mut u32, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyPrivatePropertyList(pinpropertylist : *const core::ffi::c_void, cbinpropertylistsize : u32) -> u32); windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyPropertyTable(ppropertytable : *const RESUTIL_PROPERTY_ITEM, reserved : *const core::ffi::c_void, ballowunknownproperties : super::super::Foundation:: BOOL, pinpropertylist : *const core::ffi::c_void, cbinpropertylistsize : u32, poutparams : *mut u8) -> u32); windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyResourceService(pszservicename : windows_sys::core::PCWSTR) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyService(hservicehandle : super::super::Security:: SC_HANDLE) -> u32); +#[cfg(feature = "Win32_System_Services")] +windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyService(hservicehandle : super::super::System::Services:: SC_HANDLE) -> u32); windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyShutdownSafe(flags : u32, reason : u32, presult : *mut u32) -> u32); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("resutils.dll" "system" fn ResUtilsDeleteKeyTree(key : super::super::System::Registry:: HKEY, keyname : windows_sys::core::PCWSTR, treatnokeyaserror : super::super::Foundation:: BOOL) -> u32); @@ -3863,25 +3863,25 @@ pub type PRESUTIL_SET_PROPERTY_TABLE_EX = Option u32>; pub type PRESUTIL_SET_RESOURCE_SERVICE_ENVIRONMENT = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX = Option u32>; #[cfg(feature = "Win32_System_Registry")] pub type PRESUTIL_SET_SZ_VALUE = Option u32>; #[cfg(feature = "Win32_System_Registry")] pub type PRESUTIL_SET_UNKNOWN_PROPERTIES = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_START_RESOURCE_SERVICE = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_START_RESOURCE_SERVICE = Option u32>; pub type PRESUTIL_STOP_RESOURCE_SERVICE = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_STOP_SERVICE = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_STOP_SERVICE = Option u32>; pub type PRESUTIL_TERMINATE_SERVICE_PROCESS_FROM_RES_DLL = Option u32>; pub type PRESUTIL_VERIFY_PRIVATE_PROPERTY_LIST = Option u32>; pub type PRESUTIL_VERIFY_PROPERTY_TABLE = Option u32>; pub type PRESUTIL_VERIFY_RESOURCE_SERVICE = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_VERIFY_SERVICE = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_VERIFY_SERVICE = Option u32>; pub type PRES_UTIL_VERIFY_SHUTDOWN_SAFE = Option u32>; pub type PSET_INTERNAL_STATE = Option u32>; pub type PSET_RESOURCE_INMEMORY_NODELOCAL_PROPERTIES_ROUTINE = Option u32>; diff --git a/crates/libs/sys/src/Windows/Win32/Networking/HttpServer/mod.rs b/crates/libs/sys/src/Windows/Win32/Networking/HttpServer/mod.rs index 5a5ed31707..44504409f4 100644 --- a/crates/libs/sys/src/Windows/Win32/Networking/HttpServer/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Networking/HttpServer/mod.rs @@ -1,9 +1,9 @@ #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpAddFragmentToCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_sys::core::PCWSTR, datachunk : *const HTTP_DATA_CHUNK, cachepolicy : *const HTTP_CACHE_POLICY, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpAddFragmentToCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_sys::core::PCWSTR, datachunk : *const HTTP_DATA_CHUNK, cachepolicy : *const HTTP_CACHE_POLICY, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpAddUrl(requestqueuehandle : super::super::Foundation:: HANDLE, fullyqualifiedurl : windows_sys::core::PCWSTR, reserved : *const core::ffi::c_void) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpAddUrlToUrlGroup(urlgroupid : u64, pfullyqualifiedurl : windows_sys::core::PCWSTR, urlcontext : u64, reserved : u32) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpCancelHttpRequest(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpCancelHttpRequest(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpCloseRequestQueue(requestqueuehandle : super::super::Foundation:: HANDLE) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpCloseServerSession(serversessionid : u64) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpCloseUrlGroup(urlgroupid : u64) -> u32); @@ -18,7 +18,7 @@ windows_targets::link!("httpapi.dll" "system" fn HttpDelegateRequestEx(requestqu windows_targets::link!("httpapi.dll" "system" fn HttpDeleteServiceConfiguration(servicehandle : super::super::Foundation:: HANDLE, configid : HTTP_SERVICE_CONFIG_ID, pconfiginformation : *const core::ffi::c_void, configinformationlength : u32, poverlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpFindUrlGroupId(fullyqualifiedurl : windows_sys::core::PCWSTR, requestqueuehandle : super::super::Foundation:: HANDLE, urlgroupid : *mut u64) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpFlushResponseCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_sys::core::PCWSTR, flags : u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpFlushResponseCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_sys::core::PCWSTR, flags : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpGetExtension(version : HTTPAPI_VERSION, extension : u32, buffer : *mut core::ffi::c_void, buffersize : u32) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpInitialize(version : HTTPAPI_VERSION, flags : HTTP_INITIALIZE, preserved : *mut core::ffi::c_void) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpIsFeatureSupported(featureid : HTTP_FEATURE_ID) -> super::super::Foundation:: BOOL); @@ -29,19 +29,19 @@ windows_targets::link!("httpapi.dll" "system" fn HttpQueryServerSessionProperty( windows_targets::link!("httpapi.dll" "system" fn HttpQueryServiceConfiguration(servicehandle : super::super::Foundation:: HANDLE, configid : HTTP_SERVICE_CONFIG_ID, pinput : *const core::ffi::c_void, inputlength : u32, poutput : *mut core::ffi::c_void, outputlength : u32, preturnlength : *mut u32, poverlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpQueryUrlGroupProperty(urlgroupid : u64, property : HTTP_SERVER_PROPERTY, propertyinformation : *mut core::ffi::c_void, propertyinformationlength : u32, returnlength : *mut u32) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpReadFragmentFromCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_sys::core::PCWSTR, byterange : *const HTTP_BYTE_RANGE, buffer : *mut core::ffi::c_void, bufferlength : u32, bytesread : *mut u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpReadFragmentFromCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_sys::core::PCWSTR, byterange : *const HTTP_BYTE_RANGE, buffer : *mut core::ffi::c_void, bufferlength : u32, bytesread : *mut u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpReceiveClientCertificate(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, flags : u32, sslclientcertinfo : *mut HTTP_SSL_CLIENT_CERT_INFO, sslclientcertinfosize : u32, bytesreceived : *mut u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpReceiveClientCertificate(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, flags : u32, sslclientcertinfo : *mut HTTP_SSL_CLIENT_CERT_INFO, sslclientcertinfosize : u32, bytesreceived : *mut u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); #[cfg(all(feature = "Win32_Networking_WinSock", feature = "Win32_System_IO"))] windows_targets::link!("httpapi.dll" "system" fn HttpReceiveHttpRequest(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : HTTP_RECEIVE_HTTP_REQUEST_FLAGS, requestbuffer : *mut HTTP_REQUEST_V2, requestbufferlength : u32, bytesreturned : *mut u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpReceiveRequestEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitybuffer : *mut core::ffi::c_void, entitybufferlength : u32, bytesreturned : *mut u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpReceiveRequestEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitybuffer : *mut core::ffi::c_void, entitybufferlength : u32, bytesreturned : *mut u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpRemoveUrl(requestqueuehandle : super::super::Foundation:: HANDLE, fullyqualifiedurl : windows_sys::core::PCWSTR) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpRemoveUrlFromUrlGroup(urlgroupid : u64, pfullyqualifiedurl : windows_sys::core::PCWSTR, flags : u32) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpSendHttpResponse(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, httpresponse : *const HTTP_RESPONSE_V2, cachepolicy : *const HTTP_CACHE_POLICY, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *const super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpSendHttpResponse(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, httpresponse : *const HTTP_RESPONSE_V2, cachepolicy : *const HTTP_CACHE_POLICY, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpSendResponseEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitychunkcount : u16, entitychunks : *const HTTP_DATA_CHUNK, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *const super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpSendResponseEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitychunkcount : u16, entitychunks : *const HTTP_DATA_CHUNK, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("httpapi.dll" "system" fn HttpSetRequestProperty(requestqueuehandle : super::super::Foundation:: HANDLE, id : u64, propertyid : HTTP_REQUEST_PROPERTY, input : *const core::ffi::c_void, inputpropertysize : u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); windows_targets::link!("httpapi.dll" "system" fn HttpSetRequestQueueProperty(requestqueuehandle : super::super::Foundation:: HANDLE, property : HTTP_SERVER_PROPERTY, propertyinformation : *const core::ffi::c_void, propertyinformationlength : u32, reserved1 : u32, reserved2 : *const core::ffi::c_void) -> u32); @@ -54,11 +54,11 @@ windows_targets::link!("httpapi.dll" "system" fn HttpTerminate(flags : HTTP_INIT #[cfg(feature = "Win32_System_IO")] windows_targets::link!("httpapi.dll" "system" fn HttpUpdateServiceConfiguration(handle : super::super::Foundation:: HANDLE, configid : HTTP_SERVICE_CONFIG_ID, configinfo : *const core::ffi::c_void, configinfolength : u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDemandStart(requestqueuehandle : super::super::Foundation:: HANDLE, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDemandStart(requestqueuehandle : super::super::Foundation:: HANDLE, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnect(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnect(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); #[cfg(feature = "Win32_System_IO")] -windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnectEx(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, reserved : u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); +windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnectEx(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, reserved : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); pub const CacheRangeChunkSize: HTTP_SERVICE_CONFIG_CACHE_KEY = 1i32; pub const CreateRequestQueueExternalIdProperty: HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID = 1i32; pub const CreateRequestQueueMax: HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID = 2i32; diff --git a/crates/libs/sys/src/Windows/Win32/Networking/WebSocket/mod.rs b/crates/libs/sys/src/Windows/Win32/Networking/WebSocket/mod.rs index 61bf36b300..05d87cf320 100644 --- a/crates/libs/sys/src/Windows/Win32/Networking/WebSocket/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Networking/WebSocket/mod.rs @@ -70,7 +70,7 @@ pub struct WEB_SOCKET_BUFFER_1 { pub pbBuffer: *mut u8, pub ulBufferLength: u32, } -pub type WEB_SOCKET_HANDLE = isize; +pub type WEB_SOCKET_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct WEB_SOCKET_HTTP_HEADER { diff --git a/crates/libs/sys/src/Windows/Win32/Networking/WinInet/mod.rs b/crates/libs/sys/src/Windows/Win32/Networking/WinInet/mod.rs index 69df137bb9..fa5b852f44 100644 --- a/crates/libs/sys/src/Windows/Win32/Networking/WinInet/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Networking/WinInet/mod.rs @@ -1639,7 +1639,7 @@ pub struct HTTP_PUSH_TRANSPORT_SETTING { pub TransportSettingId: windows_sys::core::GUID, pub BrokerEventId: windows_sys::core::GUID, } -pub type HTTP_PUSH_WAIT_HANDLE = isize; +pub type HTTP_PUSH_WAIT_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct HTTP_REQUEST_TIMES { diff --git a/crates/libs/sys/src/Windows/Win32/Networking/WinSock/mod.rs b/crates/libs/sys/src/Windows/Win32/Networking/WinSock/mod.rs index ecb79184d4..68fd2db980 100644 --- a/crates/libs/sys/src/Windows/Win32/Networking/WinSock/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Networking/WinSock/mod.rs @@ -76,7 +76,7 @@ windows_targets::link!("ws2_32.dll" "system" fn WSAAsyncSelect(s : SOCKET, hwnd windows_targets::link!("ws2_32.dll" "system" fn WSACancelAsyncRequest(hasynctaskhandle : super::super::Foundation:: HANDLE) -> i32); windows_targets::link!("ws2_32.dll" "system" fn WSACancelBlockingCall() -> i32); windows_targets::link!("ws2_32.dll" "system" fn WSACleanup() -> i32); -windows_targets::link!("ws2_32.dll" "system" fn WSACloseEvent(hevent : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); +windows_targets::link!("ws2_32.dll" "system" fn WSACloseEvent(hevent : WSAEVENT) -> super::super::Foundation:: BOOL); windows_targets::link!("ws2_32.dll" "system" fn WSAConnect(s : SOCKET, name : *const SOCKADDR, namelen : i32, lpcallerdata : *const WSABUF, lpcalleedata : *mut WSABUF, lpsqos : *const QOS, lpgqos : *const QOS) -> i32); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ws2_32.dll" "system" fn WSAConnectByList(s : SOCKET, socketaddress : *const SOCKET_ADDRESS_LIST, localaddresslength : *mut u32, localaddress : *mut SOCKADDR, remoteaddresslength : *mut u32, remoteaddress : *mut SOCKADDR, timeout : *const TIMEVAL, reserved : *const super::super::System::IO:: OVERLAPPED) -> super::super::Foundation:: BOOL); @@ -84,7 +84,7 @@ windows_targets::link!("ws2_32.dll" "system" fn WSAConnectByList(s : SOCKET, soc windows_targets::link!("ws2_32.dll" "system" fn WSAConnectByNameA(s : SOCKET, nodename : windows_sys::core::PCSTR, servicename : windows_sys::core::PCSTR, localaddresslength : *mut u32, localaddress : *mut SOCKADDR, remoteaddresslength : *mut u32, remoteaddress : *mut SOCKADDR, timeout : *const TIMEVAL, reserved : *const super::super::System::IO:: OVERLAPPED) -> super::super::Foundation:: BOOL); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ws2_32.dll" "system" fn WSAConnectByNameW(s : SOCKET, nodename : windows_sys::core::PCWSTR, servicename : windows_sys::core::PCWSTR, localaddresslength : *mut u32, localaddress : *mut SOCKADDR, remoteaddresslength : *mut u32, remoteaddress : *mut SOCKADDR, timeout : *const TIMEVAL, reserved : *const super::super::System::IO:: OVERLAPPED) -> super::super::Foundation:: BOOL); -windows_targets::link!("ws2_32.dll" "system" fn WSACreateEvent() -> super::super::Foundation:: HANDLE); +windows_targets::link!("ws2_32.dll" "system" fn WSACreateEvent() -> WSAEVENT); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("fwpuclnt.dll" "system" fn WSADeleteSocketPeerTargetName(socket : SOCKET, peeraddr : *const SOCKADDR, peeraddrlen : u32, overlapped : *const super::super::System::IO:: OVERLAPPED, completionroutine : LPWSAOVERLAPPED_COMPLETION_ROUTINE) -> i32); windows_targets::link!("ws2_32.dll" "system" fn WSADuplicateSocketA(s : SOCKET, dwprocessid : u32, lpprotocolinfo : *mut WSAPROTOCOL_INFOA) -> i32); @@ -95,10 +95,10 @@ windows_targets::link!("ws2_32.dll" "system" fn WSAEnumNameSpaceProvidersExA(lpd #[cfg(feature = "Win32_System_Com")] windows_targets::link!("ws2_32.dll" "system" fn WSAEnumNameSpaceProvidersExW(lpdwbufferlength : *mut u32, lpnspbuffer : *mut WSANAMESPACE_INFOEXW) -> i32); windows_targets::link!("ws2_32.dll" "system" fn WSAEnumNameSpaceProvidersW(lpdwbufferlength : *mut u32, lpnspbuffer : *mut WSANAMESPACE_INFOW) -> i32); -windows_targets::link!("ws2_32.dll" "system" fn WSAEnumNetworkEvents(s : SOCKET, heventobject : super::super::Foundation:: HANDLE, lpnetworkevents : *mut WSANETWORKEVENTS) -> i32); +windows_targets::link!("ws2_32.dll" "system" fn WSAEnumNetworkEvents(s : SOCKET, heventobject : WSAEVENT, lpnetworkevents : *mut WSANETWORKEVENTS) -> i32); windows_targets::link!("ws2_32.dll" "system" fn WSAEnumProtocolsA(lpiprotocols : *const i32, lpprotocolbuffer : *mut WSAPROTOCOL_INFOA, lpdwbufferlength : *mut u32) -> i32); windows_targets::link!("ws2_32.dll" "system" fn WSAEnumProtocolsW(lpiprotocols : *const i32, lpprotocolbuffer : *mut WSAPROTOCOL_INFOW, lpdwbufferlength : *mut u32) -> i32); -windows_targets::link!("ws2_32.dll" "system" fn WSAEventSelect(s : SOCKET, heventobject : super::super::Foundation:: HANDLE, lnetworkevents : i32) -> i32); +windows_targets::link!("ws2_32.dll" "system" fn WSAEventSelect(s : SOCKET, heventobject : WSAEVENT, lnetworkevents : i32) -> i32); windows_targets::link!("ws2_32.dll" "system" fn WSAGetLastError() -> WSA_ERROR); #[cfg(feature = "Win32_System_IO")] windows_targets::link!("ws2_32.dll" "system" fn WSAGetOverlappedResult(s : SOCKET, lpoverlapped : *const super::super::System::IO:: OVERLAPPED, lpcbtransfer : *mut u32, fwait : super::super::Foundation:: BOOL, lpdwflags : *mut u32) -> super::super::Foundation:: BOOL); @@ -269,6 +269,7 @@ pub const ADDRINFOEX_VERSION_3: u32 = 3u32; pub const ADDRINFOEX_VERSION_4: u32 = 4u32; pub const ADDRINFOEX_VERSION_5: u32 = 5u32; pub const ADDRINFOEX_VERSION_6: u32 = 6u32; +pub const ADDR_ANY: u32 = 0u32; pub const AF_12844: u16 = 25u16; pub const AF_APPLETALK: u16 = 16u16; pub const AF_ATM: u16 = 22u16; @@ -572,6 +573,8 @@ pub const IGMP_VERSION3_REPORT_TYPE: u32 = 34u32; pub const IMPLINK_HIGHEXPER: u32 = 158u32; pub const IMPLINK_IP: u32 = 155u32; pub const IMPLINK_LOWEXPER: u32 = 156u32; +pub const IN4ADDR_ANY: u32 = 0u32; +pub const IN4ADDR_BROADCAST: u32 = 4294967295u32; pub const IN4ADDR_LINKLOCALPREFIX_LENGTH: u32 = 16u32; pub const IN4ADDR_LOOPBACK: u32 = 16777343u32; pub const IN4ADDR_LOOPBACKPREFIX_LENGTH: u32 = 8u32; @@ -584,6 +587,8 @@ pub const IN6ADDR_TEREDOPREFIX_LENGTH: u32 = 32u32; pub const IN6ADDR_V4MAPPEDPREFIX_LENGTH: u32 = 96u32; pub const IN6_EMBEDDEDV4_BITS_IN_BYTE: u32 = 8u32; pub const IN6_EMBEDDEDV4_UOCTET_POSITION: u32 = 8u32; +pub const INADDR_ANY: u32 = 0u32; +pub const INADDR_BROADCAST: u32 = 4294967295u32; pub const INADDR_LOOPBACK: u32 = 2130706433u32; pub const INADDR_NONE: u32 = 4294967295u32; pub const INCL_WINSOCK_API_PROTOTYPES: u32 = 1u32; @@ -1541,8 +1546,10 @@ pub const SO_DISCDATA: i32 = 28674i32; pub const SO_DISCDATALEN: i32 = 28678i32; pub const SO_DISCOPT: i32 = 28675i32; pub const SO_DISCOPTLEN: i32 = 28679i32; +pub const SO_DONTLINGER: i32 = -129i32; pub const SO_DONTROUTE: i32 = 16i32; pub const SO_ERROR: i32 = 4103i32; +pub const SO_EXCLUSIVEADDRUSE: i32 = -5i32; pub const SO_GROUP_ID: i32 = 8193i32; pub const SO_GROUP_PRIORITY: i32 = 8194i32; pub const SO_KEEPALIVE: i32 = 8i32; @@ -1782,6 +1789,7 @@ pub const WSA_FLAG_NO_HANDLE_INHERIT: u32 = 128u32; pub const WSA_FLAG_OVERLAPPED: u32 = 1u32; pub const WSA_FLAG_REGISTERED_IO: u32 = 256u32; pub const WSA_INFINITE: u32 = 4294967295u32; +pub const WSA_INVALID_EVENT: WSAEVENT = 0i32 as _; pub const WSA_INVALID_HANDLE: WSA_ERROR = 6i32; pub const WSA_INVALID_PARAMETER: WSA_ERROR = 87i32; pub const WSA_IO_INCOMPLETE: WSA_ERROR = 996i32; @@ -4708,12 +4716,12 @@ pub type LPNSPV2LOOKUPSERVICENEXTEX = Option; pub type LPNSPV2STARTUP = Option i32>; pub type LPSERVICE_CALLBACK_PROC = Option; -pub type LPWPUCLOSEEVENT = Option super::super::Foundation::BOOL>; +pub type LPWPUCLOSEEVENT = Option super::super::Foundation::BOOL>; pub type LPWPUCLOSESOCKETHANDLE = Option i32>; pub type LPWPUCLOSETHREAD = Option i32>; #[cfg(feature = "Win32_System_IO")] pub type LPWPUCOMPLETEOVERLAPPEDREQUEST = Option i32>; -pub type LPWPUCREATEEVENT = Option super::super::Foundation::HANDLE>; +pub type LPWPUCREATEEVENT = Option WSAEVENT>; pub type LPWPUCREATESOCKETHANDLE = Option SOCKET>; pub type LPWPUFDISSET = Option i32>; pub type LPWPUGETPROVIDERPATH = Option i32>; @@ -4723,8 +4731,8 @@ pub type LPWPUPOSTMESSAGE = Option i32>; pub type LPWPUQUERYSOCKETHANDLECONTEXT = Option i32>; pub type LPWPUQUEUEAPC = Option i32>; -pub type LPWPURESETEVENT = Option super::super::Foundation::BOOL>; -pub type LPWPUSETEVENT = Option super::super::Foundation::BOOL>; +pub type LPWPURESETEVENT = Option super::super::Foundation::BOOL>; +pub type LPWPUSETEVENT = Option super::super::Foundation::BOOL>; #[cfg(feature = "Win32_System_IO")] pub type LPWSAOVERLAPPED_COMPLETION_ROUTINE = Option; pub type LPWSAUSERAPC = Option; @@ -4748,7 +4756,7 @@ pub type LPWSPCLOSESOCKET = Option i32>; pub type LPWSPDUPLICATESOCKET = Option i32>; pub type LPWSPENUMNETWORKEVENTS = Option i32>; -pub type LPWSPEVENTSELECT = Option i32>; +pub type LPWSPEVENTSELECT = Option i32>; #[cfg(feature = "Win32_System_IO")] pub type LPWSPGETOVERLAPPEDRESULT = Option super::super::Foundation::BOOL>; pub type LPWSPGETPEERNAME = Option i32>; diff --git a/crates/libs/sys/src/Windows/Win32/Security/Authentication/Identity/mod.rs b/crates/libs/sys/src/Windows/Win32/Security/Authentication/Identity/mod.rs index 991378d989..f1de3eae76 100644 --- a/crates/libs/sys/src/Windows/Win32/Security/Authentication/Identity/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Security/Authentication/Identity/mod.rs @@ -12,7 +12,7 @@ windows_targets::link!("secur32.dll" "system" fn AddSecurityPackageA(pszpackagen windows_targets::link!("secur32.dll" "system" fn AddSecurityPackageW(pszpackagename : windows_sys::core::PCWSTR, poptions : *const SECURITY_PACKAGE_OPTIONS) -> windows_sys::core::HRESULT); #[cfg(feature = "Win32_Security_Credentials")] windows_targets::link!("secur32.dll" "system" fn ApplyControlToken(phcontext : *const super::super::Credentials:: SecHandle, pinput : *const SecBufferDesc) -> windows_sys::core::HRESULT); -windows_targets::link!("advapi32.dll" "system" fn AuditComputeEffectivePolicyBySid(psid : super::super::super::Foundation:: PSID, psubcategoryguids : *const windows_sys::core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); +windows_targets::link!("advapi32.dll" "system" fn AuditComputeEffectivePolicyBySid(psid : super::super:: PSID, psubcategoryguids : *const windows_sys::core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditComputeEffectivePolicyByToken(htokenhandle : super::super::super::Foundation:: HANDLE, psubcategoryguids : *const windows_sys::core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditEnumerateCategories(ppauditcategoriesarray : *mut *mut windows_sys::core::GUID, pdwcountreturned : *mut u32) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditEnumeratePerUserPolicy(ppauditsidarray : *mut *mut POLICY_AUDIT_SID_ARRAY) -> super::super::super::Foundation:: BOOLEAN); @@ -26,12 +26,12 @@ windows_targets::link!("advapi32.dll" "system" fn AuditLookupSubCategoryNameA(pa windows_targets::link!("advapi32.dll" "system" fn AuditLookupSubCategoryNameW(pauditsubcategoryguid : *const windows_sys::core::GUID, ppszsubcategoryname : *mut windows_sys::core::PWSTR) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditQueryGlobalSaclA(objecttypename : windows_sys::core::PCSTR, acl : *mut *mut super::super:: ACL) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditQueryGlobalSaclW(objecttypename : windows_sys::core::PCWSTR, acl : *mut *mut super::super:: ACL) -> super::super::super::Foundation:: BOOLEAN); -windows_targets::link!("advapi32.dll" "system" fn AuditQueryPerUserPolicy(psid : super::super::super::Foundation:: PSID, psubcategoryguids : *const windows_sys::core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); +windows_targets::link!("advapi32.dll" "system" fn AuditQueryPerUserPolicy(psid : super::super:: PSID, psubcategoryguids : *const windows_sys::core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditQuerySecurity(securityinformation : super::super:: OBJECT_SECURITY_INFORMATION, ppsecuritydescriptor : *mut super::super:: PSECURITY_DESCRIPTOR) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditQuerySystemPolicy(psubcategoryguids : *const windows_sys::core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditSetGlobalSaclA(objecttypename : windows_sys::core::PCSTR, acl : *const super::super:: ACL) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditSetGlobalSaclW(objecttypename : windows_sys::core::PCWSTR, acl : *const super::super:: ACL) -> super::super::super::Foundation:: BOOLEAN); -windows_targets::link!("advapi32.dll" "system" fn AuditSetPerUserPolicy(psid : super::super::super::Foundation:: PSID, pauditpolicy : *const AUDIT_POLICY_INFORMATION, dwpolicycount : u32) -> super::super::super::Foundation:: BOOLEAN); +windows_targets::link!("advapi32.dll" "system" fn AuditSetPerUserPolicy(psid : super::super:: PSID, pauditpolicy : *const AUDIT_POLICY_INFORMATION, dwpolicycount : u32) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditSetSecurity(securityinformation : super::super:: OBJECT_SECURITY_INFORMATION, psecuritydescriptor : super::super:: PSECURITY_DESCRIPTOR) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn AuditSetSystemPolicy(pauditpolicy : *const AUDIT_POLICY_INFORMATION, dwpolicycount : u32) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("secur32.dll" "system" fn ChangeAccountPasswordA(pszpackagename : *const i8, pszdomainname : *const i8, pszaccountname : *const i8, pszoldpassword : *const i8, psznewpassword : *const i8, bimpersonating : super::super::super::Foundation:: BOOLEAN, dwreserved : u32, poutput : *mut SecBufferDesc) -> windows_sys::core::HRESULT); @@ -75,41 +75,41 @@ windows_targets::link!("secur32.dll" "system" fn InitSecurityInterfaceW() -> *mu windows_targets::link!("secur32.dll" "system" fn InitializeSecurityContextA(phcredential : *const super::super::Credentials:: SecHandle, phcontext : *const super::super::Credentials:: SecHandle, psztargetname : *const i8, fcontextreq : ISC_REQ_FLAGS, reserved1 : u32, targetdatarep : u32, pinput : *const SecBufferDesc, reserved2 : u32, phnewcontext : *mut super::super::Credentials:: SecHandle, poutput : *mut SecBufferDesc, pfcontextattr : *mut u32, ptsexpiry : *mut i64) -> windows_sys::core::HRESULT); #[cfg(feature = "Win32_Security_Credentials")] windows_targets::link!("secur32.dll" "system" fn InitializeSecurityContextW(phcredential : *const super::super::Credentials:: SecHandle, phcontext : *const super::super::Credentials:: SecHandle, psztargetname : *const u16, fcontextreq : ISC_REQ_FLAGS, reserved1 : u32, targetdatarep : u32, pinput : *const SecBufferDesc, reserved2 : u32, phnewcontext : *mut super::super::Credentials:: SecHandle, poutput : *mut SecBufferDesc, pfcontextattr : *mut u32, ptsexpiry : *mut i64) -> windows_sys::core::HRESULT); -windows_targets::link!("advapi32.dll" "system" fn LsaAddAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super::super::Foundation:: PSID, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaAddAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super:: PSID, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaCallAuthenticationPackage(lsahandle : super::super::super::Foundation:: HANDLE, authenticationpackage : u32, protocolsubmitbuffer : *const core::ffi::c_void, submitbufferlength : u32, protocolreturnbuffer : *mut *mut core::ffi::c_void, returnbufferlength : *mut u32, protocolstatus : *mut i32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaClose(objecthandle : LSA_HANDLE) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaConnectUntrusted(lsahandle : *mut super::super::super::Foundation:: HANDLE) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaCreateTrustedDomainEx(policyhandle : LSA_HANDLE, trusteddomaininformation : *const TRUSTED_DOMAIN_INFORMATION_EX, authenticationinformation : *const TRUSTED_DOMAIN_AUTH_INFORMATION, desiredaccess : u32, trusteddomainhandle : *mut LSA_HANDLE) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaDeleteTrustedDomain(policyhandle : LSA_HANDLE, trusteddomainsid : super::super::super::Foundation:: PSID) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaDeleteTrustedDomain(policyhandle : LSA_HANDLE, trusteddomainsid : super::super:: PSID) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaDeregisterLogonProcess(lsahandle : super::super::super::Foundation:: HANDLE) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaEnumerateAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super::super::Foundation:: PSID, userrights : *mut *mut LSA_UNICODE_STRING, countofrights : *mut u32) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaEnumerateAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super:: PSID, userrights : *mut *mut LSA_UNICODE_STRING, countofrights : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaEnumerateAccountsWithUserRight(policyhandle : LSA_HANDLE, userright : *const LSA_UNICODE_STRING, buffer : *mut *mut core::ffi::c_void, countreturned : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaEnumerateLogonSessions(logonsessioncount : *mut u32, logonsessionlist : *mut *mut super::super::super::Foundation:: LUID) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaEnumerateTrustedDomains(policyhandle : LSA_HANDLE, enumerationcontext : *mut u32, buffer : *mut *mut core::ffi::c_void, preferedmaximumlength : u32, countreturned : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaEnumerateTrustedDomainsEx(policyhandle : LSA_HANDLE, enumerationcontext : *mut u32, buffer : *mut *mut core::ffi::c_void, preferedmaximumlength : u32, countreturned : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaFreeMemory(buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaFreeReturnBuffer(buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaGetAppliedCAPIDs(systemname : *const LSA_UNICODE_STRING, capids : *mut *mut super::super::super::Foundation:: PSID, capidcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaGetAppliedCAPIDs(systemname : *const LSA_UNICODE_STRING, capids : *mut *mut super::super:: PSID, capidcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaGetLogonSessionData(logonid : *const super::super::super::Foundation:: LUID, pplogonsessiondata : *mut *mut SECURITY_LOGON_SESSION_DATA) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaLogonUser(lsahandle : super::super::super::Foundation:: HANDLE, originname : *const LSA_STRING, logontype : SECURITY_LOGON_TYPE, authenticationpackage : u32, authenticationinformation : *const core::ffi::c_void, authenticationinformationlength : u32, localgroups : *const super::super:: TOKEN_GROUPS, sourcecontext : *const super::super:: TOKEN_SOURCE, profilebuffer : *mut *mut core::ffi::c_void, profilebufferlength : *mut u32, logonid : *mut super::super::super::Foundation:: LUID, token : *mut super::super::super::Foundation:: HANDLE, quotas : *mut super::super:: QUOTA_LIMITS, substatus : *mut i32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaLookupAuthenticationPackage(lsahandle : super::super::super::Foundation:: HANDLE, packagename : *const LSA_STRING, authenticationpackage : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaLookupNames(policyhandle : LSA_HANDLE, count : u32, names : *const LSA_UNICODE_STRING, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, sids : *mut *mut LSA_TRANSLATED_SID) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaLookupNames2(policyhandle : LSA_HANDLE, flags : u32, count : u32, names : *const LSA_UNICODE_STRING, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, sids : *mut *mut LSA_TRANSLATED_SID2) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids(policyhandle : LSA_HANDLE, count : u32, sids : *const super::super::super::Foundation:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids2(policyhandle : LSA_HANDLE, lookupoptions : u32, count : u32, sids : *const super::super::super::Foundation:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids(policyhandle : LSA_HANDLE, count : u32, sids : *const super::super:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids2(policyhandle : LSA_HANDLE, lookupoptions : u32, count : u32, sids : *const super::super:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaNtStatusToWinError(status : super::super::super::Foundation:: NTSTATUS) -> u32); windows_targets::link!("advapi32.dll" "system" fn LsaOpenPolicy(systemname : *const LSA_UNICODE_STRING, objectattributes : *const LSA_OBJECT_ATTRIBUTES, desiredaccess : u32, policyhandle : *mut LSA_HANDLE) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaOpenTrustedDomainByName(policyhandle : LSA_HANDLE, trusteddomainname : *const LSA_UNICODE_STRING, desiredaccess : u32, trusteddomainhandle : *mut LSA_HANDLE) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaQueryCAPs(capids : *const super::super::super::Foundation:: PSID, capidcount : u32, caps : *mut *mut CENTRAL_ACCESS_POLICY, capcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaQueryCAPs(capids : *const super::super:: PSID, capidcount : u32, caps : *mut *mut CENTRAL_ACCESS_POLICY, capcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaQueryDomainInformationPolicy(policyhandle : LSA_HANDLE, informationclass : POLICY_DOMAIN_INFORMATION_CLASS, buffer : *mut *mut core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaQueryForestTrustInformation(policyhandle : LSA_HANDLE, trusteddomainname : *const LSA_UNICODE_STRING, foresttrustinfo : *mut *mut LSA_FOREST_TRUST_INFORMATION) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaQueryForestTrustInformation2(policyhandle : LSA_HANDLE, trusteddomainname : *const LSA_UNICODE_STRING, highestrecordtype : LSA_FOREST_TRUST_RECORD_TYPE, foresttrustinfo : *mut *mut LSA_FOREST_TRUST_INFORMATION2) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaQueryInformationPolicy(policyhandle : LSA_HANDLE, informationclass : POLICY_INFORMATION_CLASS, buffer : *mut *mut core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaQueryTrustedDomainInfo(policyhandle : LSA_HANDLE, trusteddomainsid : super::super::super::Foundation:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *mut *mut core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaQueryTrustedDomainInfo(policyhandle : LSA_HANDLE, trusteddomainsid : super::super:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *mut *mut core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaQueryTrustedDomainInfoByName(policyhandle : LSA_HANDLE, trusteddomainname : *const LSA_UNICODE_STRING, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *mut *mut core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaRegisterLogonProcess(logonprocessname : *const LSA_STRING, lsahandle : *mut super::super::super::Foundation:: HANDLE, securitymode : *mut u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaRegisterPolicyChangeNotification(informationclass : POLICY_NOTIFICATION_INFORMATION_CLASS, notificationeventhandle : super::super::super::Foundation:: HANDLE) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaRemoveAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super::super::Foundation:: PSID, allrights : super::super::super::Foundation:: BOOLEAN, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaRemoveAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super:: PSID, allrights : super::super::super::Foundation:: BOOLEAN, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaRetrievePrivateData(policyhandle : LSA_HANDLE, keyname : *const LSA_UNICODE_STRING, privatedata : *mut *mut LSA_UNICODE_STRING) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaSetCAPs(capdns : *const LSA_UNICODE_STRING, capdncount : u32, flags : u32) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaSetDomainInformationPolicy(policyhandle : LSA_HANDLE, informationclass : POLICY_DOMAIN_INFORMATION_CLASS, buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); @@ -117,7 +117,7 @@ windows_targets::link!("advapi32.dll" "system" fn LsaSetForestTrustInformation(p windows_targets::link!("advapi32.dll" "system" fn LsaSetForestTrustInformation2(policyhandle : LSA_HANDLE, trusteddomainname : *const LSA_UNICODE_STRING, highestrecordtype : LSA_FOREST_TRUST_RECORD_TYPE, foresttrustinfo : *const LSA_FOREST_TRUST_INFORMATION2, checkonly : super::super::super::Foundation:: BOOLEAN, collisioninfo : *mut *mut LSA_FOREST_TRUST_COLLISION_INFORMATION) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaSetInformationPolicy(policyhandle : LSA_HANDLE, informationclass : POLICY_INFORMATION_CLASS, buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaSetTrustedDomainInfoByName(policyhandle : LSA_HANDLE, trusteddomainname : *const LSA_UNICODE_STRING, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); -windows_targets::link!("advapi32.dll" "system" fn LsaSetTrustedDomainInformation(policyhandle : LSA_HANDLE, trusteddomainsid : super::super::super::Foundation:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); +windows_targets::link!("advapi32.dll" "system" fn LsaSetTrustedDomainInformation(policyhandle : LSA_HANDLE, trusteddomainsid : super::super:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("advapi32.dll" "system" fn LsaStorePrivateData(policyhandle : LSA_HANDLE, keyname : *const LSA_UNICODE_STRING, privatedata : *const LSA_UNICODE_STRING) -> super::super::super::Foundation:: NTSTATUS); windows_targets::link!("secur32.dll" "system" fn LsaUnregisterPolicyChangeNotification(informationclass : POLICY_NOTIFICATION_INFORMATION_CLASS, notificationeventhandle : super::super::super::Foundation:: HANDLE) -> super::super::super::Foundation:: NTSTATUS); #[cfg(feature = "Win32_Security_Credentials")] @@ -2324,7 +2324,7 @@ pub struct AUDIT_POLICY_INFORMATION { #[repr(C)] #[derive(Clone, Copy)] pub struct CENTRAL_ACCESS_POLICY { - pub CAPID: super::super::super::Foundation::PSID, + pub CAPID: super::super::PSID, pub Name: LSA_UNICODE_STRING, pub Description: LSA_UNICODE_STRING, pub ChangeId: LSA_UNICODE_STRING, @@ -3020,7 +3020,7 @@ pub struct LSA_DISPATCH_TABLE { #[repr(C)] #[derive(Clone, Copy)] pub struct LSA_ENUMERATION_INFORMATION { - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -3045,7 +3045,7 @@ pub struct LSA_FOREST_TRUST_COLLISION_RECORD { #[repr(C)] #[derive(Clone, Copy)] pub struct LSA_FOREST_TRUST_DOMAIN_INFO { - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub DnsName: LSA_UNICODE_STRING, pub NetbiosName: LSA_UNICODE_STRING, } @@ -3095,7 +3095,7 @@ pub union LSA_FOREST_TRUST_RECORD2_0 { #[repr(C)] #[derive(Clone, Copy)] pub struct LSA_FOREST_TRUST_SCANNER_INFO { - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, pub DnsName: LSA_UNICODE_STRING, pub NetbiosName: LSA_UNICODE_STRING, } @@ -3248,7 +3248,7 @@ pub struct LSA_TRANSLATED_SID { #[derive(Clone, Copy)] pub struct LSA_TRANSLATED_SID2 { pub Use: super::super::SID_NAME_USE, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub DomainIndex: i32, pub Flags: u32, } @@ -3256,7 +3256,7 @@ pub struct LSA_TRANSLATED_SID2 { #[derive(Clone, Copy)] pub struct LSA_TRUST_INFORMATION { pub Name: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -3569,7 +3569,7 @@ pub struct PKU2U_CREDUI_CONTEXT { #[derive(Clone, Copy)] pub struct POLICY_ACCOUNT_DOMAIN_INFO { pub DomainName: LSA_UNICODE_STRING, - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -3609,7 +3609,7 @@ pub struct POLICY_AUDIT_LOG_INFO { #[derive(Clone, Copy)] pub struct POLICY_AUDIT_SID_ARRAY { pub UsersCount: u32, - pub UserSidArray: *mut super::super::super::Foundation::PSID, + pub UserSidArray: *mut super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -3629,7 +3629,7 @@ pub struct POLICY_DNS_DOMAIN_INFO { pub DnsDomainName: LSA_UNICODE_STRING, pub DnsForestName: LSA_UNICODE_STRING, pub DomainGuid: windows_sys::core::GUID, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -3656,13 +3656,13 @@ pub struct POLICY_LSA_SERVER_ROLE_INFO { #[derive(Clone, Copy)] pub struct POLICY_MACHINE_ACCT_INFO { pub Rid: u32, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] pub struct POLICY_MACHINE_ACCT_INFO2 { pub Rid: u32, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub ObjectGuid: windows_sys::core::GUID, } #[repr(C)] @@ -3680,7 +3680,7 @@ pub struct POLICY_PD_ACCOUNT_INFO { #[derive(Clone, Copy)] pub struct POLICY_PRIMARY_DOMAIN_INFO { pub Name: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -4096,7 +4096,7 @@ pub struct SECPKG_PARAMETERS { pub Version: u32, pub MachineState: u32, pub SetupMode: u32, - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, pub DomainName: LSA_UNICODE_STRING, pub DnsDomainName: LSA_UNICODE_STRING, pub DomainGuid: windows_sys::core::GUID, @@ -4116,7 +4116,7 @@ pub struct SECPKG_PRIMARY_CRED { pub DomainName: LSA_UNICODE_STRING, pub Password: LSA_UNICODE_STRING, pub OldPassword: LSA_UNICODE_STRING, - pub UserSid: super::super::super::Foundation::PSID, + pub UserSid: super::super::PSID, pub Flags: u32, pub DnsDomainName: LSA_UNICODE_STRING, pub Upn: LSA_UNICODE_STRING, @@ -4134,7 +4134,7 @@ pub struct SECPKG_PRIMARY_CRED_EX { pub DomainName: LSA_UNICODE_STRING, pub Password: LSA_UNICODE_STRING, pub OldPassword: LSA_UNICODE_STRING, - pub UserSid: super::super::super::Foundation::PSID, + pub UserSid: super::super::PSID, pub Flags: u32, pub DnsDomainName: LSA_UNICODE_STRING, pub Upn: LSA_UNICODE_STRING, @@ -4212,7 +4212,7 @@ pub struct SECPKG_SURROGATE_LOGON_ENTRY { #[repr(C)] #[derive(Clone, Copy)] pub struct SECPKG_TARGETINFO { - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, pub ComputerName: windows_sys::core::PCWSTR, } #[repr(C)] @@ -4249,7 +4249,7 @@ pub struct SECURITY_LOGON_SESSION_DATA { pub AuthenticationPackage: LSA_UNICODE_STRING, pub LogonType: u32, pub Session: u32, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub LogonTime: i64, pub LogonServer: LSA_UNICODE_STRING, pub DnsDomainName: LSA_UNICODE_STRING, @@ -4288,7 +4288,7 @@ pub struct SECURITY_USER_DATA { pub UserName: SECURITY_STRING, pub LogonDomainName: SECURITY_STRING, pub LogonServer: SECURITY_STRING, - pub pSid: super::super::super::Foundation::PSID, + pub pSid: super::super::PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -5310,7 +5310,7 @@ pub struct TRUSTED_DOMAIN_FULL_INFORMATION2 { pub struct TRUSTED_DOMAIN_INFORMATION_EX { pub Name: LSA_UNICODE_STRING, pub FlatName: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub TrustDirection: TRUSTED_DOMAIN_TRUST_DIRECTION, pub TrustType: TRUSTED_DOMAIN_TRUST_TYPE, pub TrustAttributes: TRUSTED_DOMAIN_TRUST_ATTRIBUTES, @@ -5320,7 +5320,7 @@ pub struct TRUSTED_DOMAIN_INFORMATION_EX { pub struct TRUSTED_DOMAIN_INFORMATION_EX2 { pub Name: LSA_UNICODE_STRING, pub FlatName: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub TrustDirection: u32, pub TrustType: u32, pub TrustAttributes: u32, @@ -5542,8 +5542,8 @@ pub type PLSA_AP_POST_LOGON_USER_SURROGATE = Option< >; pub type PLSA_AP_PRE_LOGON_USER_SURROGATE = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_AUDIT_ACCOUNT_LOGON = Option super::super::super::Foundation::NTSTATUS>; -pub type PLSA_AUDIT_LOGON = Option; -pub type PLSA_AUDIT_LOGON_EX = Option; +pub type PLSA_AUDIT_LOGON = Option; +pub type PLSA_AUDIT_LOGON_EX = Option; pub type PLSA_CALLBACK_FUNCTION = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_CALL_PACKAGE = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_CALL_PACKAGEEX = Option super::super::super::Foundation::NTSTATUS>; @@ -5591,7 +5591,7 @@ pub type PLSA_QUERY_CLIENT_REQUEST = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REDIRECTED_LOGON_CLEANUP_CALLBACK = Option; pub type PLSA_REDIRECTED_LOGON_GET_LOGON_CREDS = Option super::super::super::Foundation::NTSTATUS>; -pub type PLSA_REDIRECTED_LOGON_GET_SID = Option super::super::super::Foundation::NTSTATUS>; +pub type PLSA_REDIRECTED_LOGON_GET_SID = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REDIRECTED_LOGON_GET_SUPP_CREDS = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REDIRECTED_LOGON_INIT = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REGISTER_CALLBACK = Option super::super::super::Foundation::NTSTATUS>; diff --git a/crates/libs/sys/src/Windows/Win32/Security/Authorization/mod.rs b/crates/libs/sys/src/Windows/Win32/Security/Authorization/mod.rs index 8586be10bf..772504d571 100644 --- a/crates/libs/sys/src/Windows/Win32/Security/Authorization/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Security/Authorization/mod.rs @@ -11,7 +11,7 @@ windows_targets::link!("authz.dll" "system" fn AuthzFreeResourceManager(hauthzre windows_targets::link!("authz.dll" "system" fn AuthzGetInformationFromContext(hauthzclientcontext : AUTHZ_CLIENT_CONTEXT_HANDLE, infoclass : AUTHZ_CONTEXT_INFORMATION_CLASS, buffersize : u32, psizerequired : *mut u32, buffer : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "system" fn AuthzInitializeCompoundContext(usercontext : AUTHZ_CLIENT_CONTEXT_HANDLE, devicecontext : AUTHZ_CLIENT_CONTEXT_HANDLE, phcompoundcontext : *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "system" fn AuthzInitializeContextFromAuthzContext(flags : u32, hauthzclientcontext : AUTHZ_CLIENT_CONTEXT_HANDLE, pexpirationtime : *const i64, identifier : super::super::Foundation:: LUID, dynamicgroupargs : *const core::ffi::c_void, phnewauthzclientcontext : *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> super::super::Foundation:: BOOL); -windows_targets::link!("authz.dll" "system" fn AuthzInitializeContextFromSid(flags : u32, usersid : super::super::Foundation:: PSID, hauthzresourcemanager : AUTHZ_RESOURCE_MANAGER_HANDLE, pexpirationtime : *const i64, identifier : super::super::Foundation:: LUID, dynamicgroupargs : *const core::ffi::c_void, phauthzclientcontext : *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> super::super::Foundation:: BOOL); +windows_targets::link!("authz.dll" "system" fn AuthzInitializeContextFromSid(flags : u32, usersid : super:: PSID, hauthzresourcemanager : AUTHZ_RESOURCE_MANAGER_HANDLE, pexpirationtime : *const i64, identifier : super::super::Foundation:: LUID, dynamicgroupargs : *const core::ffi::c_void, phauthzclientcontext : *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "system" fn AuthzInitializeContextFromToken(flags : u32, tokenhandle : super::super::Foundation:: HANDLE, hauthzresourcemanager : AUTHZ_RESOURCE_MANAGER_HANDLE, pexpirationtime : *const i64, identifier : super::super::Foundation:: LUID, dynamicgroupargs : *const core::ffi::c_void, phauthzclientcontext : *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "cdecl" fn AuthzInitializeObjectAccessAuditEvent(flags : AUTHZ_INITIALIZE_OBJECT_ACCESS_AUDIT_EVENT_FLAGS, hauditeventtype : AUTHZ_AUDIT_EVENT_TYPE_HANDLE, szoperationtype : windows_sys::core::PCWSTR, szobjecttype : windows_sys::core::PCWSTR, szobjectname : windows_sys::core::PCWSTR, szadditionalinfo : windows_sys::core::PCWSTR, phauditevent : *mut AUTHZ_AUDIT_EVENT_HANDLE, dwadditionalparametercount : u32, ...) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "cdecl" fn AuthzInitializeObjectAccessAuditEvent2(flags : u32, hauditeventtype : AUTHZ_AUDIT_EVENT_TYPE_HANDLE, szoperationtype : windows_sys::core::PCWSTR, szobjecttype : windows_sys::core::PCWSTR, szobjectname : windows_sys::core::PCWSTR, szadditionalinfo : windows_sys::core::PCWSTR, szadditionalinfo2 : windows_sys::core::PCWSTR, phauditevent : *mut AUTHZ_AUDIT_EVENT_HANDLE, dwadditionalparametercount : u32, ...) -> super::super::Foundation:: BOOL); @@ -26,9 +26,9 @@ windows_targets::link!("authz.dll" "system" fn AuthzOpenObjectAudit(flags : u32, #[cfg(feature = "Win32_System_Threading")] windows_targets::link!("authz.dll" "system" fn AuthzRegisterCapChangeNotification(phcapchangesubscription : *mut AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE, pfncapchangecallback : super::super::System::Threading:: LPTHREAD_START_ROUTINE, pcallbackcontext : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "system" fn AuthzRegisterSecurityEventSource(dwflags : u32, szeventsourcename : windows_sys::core::PCWSTR, pheventprovider : *mut AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE) -> super::super::Foundation:: BOOL); -windows_targets::link!("authz.dll" "cdecl" fn AuthzReportSecurityEvent(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super::super::Foundation:: PSID, dwcount : u32, ...) -> super::super::Foundation:: BOOL); -windows_targets::link!("authz.dll" "system" fn AuthzReportSecurityEventFromParams(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super::super::Foundation:: PSID, pparams : *const AUDIT_PARAMS) -> super::super::Foundation:: BOOL); -windows_targets::link!("authz.dll" "system" fn AuthzSetAppContainerInformation(hauthzclientcontext : AUTHZ_CLIENT_CONTEXT_HANDLE, pappcontainersid : super::super::Foundation:: PSID, capabilitycount : u32, pcapabilitysids : *const super:: SID_AND_ATTRIBUTES) -> super::super::Foundation:: BOOL); +windows_targets::link!("authz.dll" "cdecl" fn AuthzReportSecurityEvent(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super:: PSID, dwcount : u32, ...) -> super::super::Foundation:: BOOL); +windows_targets::link!("authz.dll" "system" fn AuthzReportSecurityEventFromParams(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super:: PSID, pparams : *const AUDIT_PARAMS) -> super::super::Foundation:: BOOL); +windows_targets::link!("authz.dll" "system" fn AuthzSetAppContainerInformation(hauthzclientcontext : AUTHZ_CLIENT_CONTEXT_HANDLE, pappcontainersid : super:: PSID, capabilitycount : u32, pcapabilitysids : *const super:: SID_AND_ATTRIBUTES) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "system" fn AuthzUninstallSecurityEventSource(dwflags : u32, szeventsourcename : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "system" fn AuthzUnregisterCapChangeNotification(hcapchangesubscription : AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE) -> super::super::Foundation:: BOOL); windows_targets::link!("authz.dll" "system" fn AuthzUnregisterSecurityEventSource(dwflags : u32, pheventprovider : *mut AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE) -> super::super::Foundation:: BOOL); @@ -44,18 +44,18 @@ windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithNameA(ptrustee windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithNameW(ptrustee : *mut TRUSTEE_W, pname : windows_sys::core::PCWSTR)); windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndNameA(ptrustee : *mut TRUSTEE_A, pobjname : *const OBJECTS_AND_NAME_A, objecttype : SE_OBJECT_TYPE, objecttypename : windows_sys::core::PCSTR, inheritedobjecttypename : windows_sys::core::PCSTR, name : windows_sys::core::PCSTR)); windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndNameW(ptrustee : *mut TRUSTEE_W, pobjname : *const OBJECTS_AND_NAME_W, objecttype : SE_OBJECT_TYPE, objecttypename : windows_sys::core::PCWSTR, inheritedobjecttypename : windows_sys::core::PCWSTR, name : windows_sys::core::PCWSTR)); -windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidA(ptrustee : *mut TRUSTEE_A, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_sys::core::GUID, pinheritedobjectguid : *const windows_sys::core::GUID, psid : super::super::Foundation:: PSID)); -windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidW(ptrustee : *mut TRUSTEE_W, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_sys::core::GUID, pinheritedobjectguid : *const windows_sys::core::GUID, psid : super::super::Foundation:: PSID)); -windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidA(ptrustee : *mut TRUSTEE_A, psid : super::super::Foundation:: PSID)); -windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidW(ptrustee : *mut TRUSTEE_W, psid : super::super::Foundation:: PSID)); +windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidA(ptrustee : *mut TRUSTEE_A, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_sys::core::GUID, pinheritedobjectguid : *const windows_sys::core::GUID, psid : super:: PSID)); +windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidW(ptrustee : *mut TRUSTEE_W, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_sys::core::GUID, pinheritedobjectguid : *const windows_sys::core::GUID, psid : super:: PSID)); +windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidA(ptrustee : *mut TRUSTEE_A, psid : super:: PSID)); +windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidW(ptrustee : *mut TRUSTEE_W, psid : super:: PSID)); windows_targets::link!("advapi32.dll" "system" fn ConvertSecurityDescriptorToStringSecurityDescriptorA(securitydescriptor : super:: PSECURITY_DESCRIPTOR, requestedstringsdrevision : u32, securityinformation : super:: OBJECT_SECURITY_INFORMATION, stringsecuritydescriptor : *mut windows_sys::core::PSTR, stringsecuritydescriptorlen : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn ConvertSecurityDescriptorToStringSecurityDescriptorW(securitydescriptor : super:: PSECURITY_DESCRIPTOR, requestedstringsdrevision : u32, securityinformation : super:: OBJECT_SECURITY_INFORMATION, stringsecuritydescriptor : *mut windows_sys::core::PWSTR, stringsecuritydescriptorlen : *mut u32) -> super::super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidA(sid : super::super::Foundation:: PSID, stringsid : *mut windows_sys::core::PSTR) -> super::super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidW(sid : super::super::Foundation:: PSID, stringsid : *mut windows_sys::core::PWSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidA(sid : super:: PSID, stringsid : *mut windows_sys::core::PSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidW(sid : super:: PSID, stringsid : *mut windows_sys::core::PWSTR) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn ConvertStringSecurityDescriptorToSecurityDescriptorA(stringsecuritydescriptor : windows_sys::core::PCSTR, stringsdrevision : u32, securitydescriptor : *mut super:: PSECURITY_DESCRIPTOR, securitydescriptorsize : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn ConvertStringSecurityDescriptorToSecurityDescriptorW(stringsecuritydescriptor : windows_sys::core::PCWSTR, stringsdrevision : u32, securitydescriptor : *mut super:: PSECURITY_DESCRIPTOR, securitydescriptorsize : *mut u32) -> super::super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidA(stringsid : windows_sys::core::PCSTR, sid : *mut super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidW(stringsid : windows_sys::core::PCWSTR, sid : *mut super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidA(stringsid : windows_sys::core::PCSTR, sid : *mut super:: PSID) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidW(stringsid : windows_sys::core::PCWSTR, sid : *mut super:: PSID) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn FreeInheritedFromArray(pinheritarray : *const INHERITED_FROMW, acecnt : u16, pfnarray : *const FN_OBJECT_MGR_FUNCTS) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn GetAuditedPermissionsFromAclA(pacl : *const super:: ACL, ptrustee : *const TRUSTEE_A, psuccessfulauditedrights : *mut u32, pfailedauditrights : *mut u32) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn GetAuditedPermissionsFromAclW(pacl : *const super:: ACL, ptrustee : *const TRUSTEE_W, psuccessfulauditedrights : *mut u32, pfailedauditrights : *mut u32) -> super::super::Foundation:: WIN32_ERROR); @@ -69,9 +69,9 @@ windows_targets::link!("advapi32.dll" "system" fn GetMultipleTrusteeA(ptrustee : windows_targets::link!("advapi32.dll" "system" fn GetMultipleTrusteeOperationA(ptrustee : *const TRUSTEE_A) -> MULTIPLE_TRUSTEE_OPERATION); windows_targets::link!("advapi32.dll" "system" fn GetMultipleTrusteeOperationW(ptrustee : *const TRUSTEE_W) -> MULTIPLE_TRUSTEE_OPERATION); windows_targets::link!("advapi32.dll" "system" fn GetMultipleTrusteeW(ptrustee : *const TRUSTEE_W) -> *mut TRUSTEE_W); -windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super::super::Foundation:: PSID, ppsidgroup : *mut super::super::Foundation:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super::super::Foundation:: PSID, ppsidgroup : *mut super::super::Foundation:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn GetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super::super::Foundation:: PSID, ppsidgroup : *mut super::super::Foundation:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super:: PSID, ppsidgroup : *mut super:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super:: PSID, ppsidgroup : *mut super:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn GetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super:: PSID, ppsidgroup : *mut super:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn GetTrusteeFormA(ptrustee : *const TRUSTEE_A) -> TRUSTEE_FORM); windows_targets::link!("advapi32.dll" "system" fn GetTrusteeFormW(ptrustee : *const TRUSTEE_W) -> TRUSTEE_FORM); windows_targets::link!("advapi32.dll" "system" fn GetTrusteeNameA(ptrustee : *const TRUSTEE_A) -> windows_sys::core::PSTR); @@ -82,13 +82,13 @@ windows_targets::link!("advapi32.dll" "system" fn LookupSecurityDescriptorPartsA windows_targets::link!("advapi32.dll" "system" fn LookupSecurityDescriptorPartsW(ppowner : *mut *mut TRUSTEE_W, ppgroup : *mut *mut TRUSTEE_W, pccountofaccessentries : *mut u32, pplistofaccessentries : *mut *mut EXPLICIT_ACCESS_W, pccountofauditentries : *mut u32, pplistofauditentries : *mut *mut EXPLICIT_ACCESS_W, psd : super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn SetEntriesInAclA(ccountofexplicitentries : u32, plistofexplicitentries : *const EXPLICIT_ACCESS_A, oldacl : *const super:: ACL, newacl : *mut *mut super:: ACL) -> super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn SetEntriesInAclW(ccountofexplicitentries : u32, plistofexplicitentries : *const EXPLICIT_ACCESS_W, oldacl : *const super:: ACL, newacl : *mut *mut super:: ACL) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super::super::Foundation:: PSID, psidgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super::super::Foundation:: PSID, psidgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn SetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super::super::Foundation:: PSID, psidgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super:: PSID, psidgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super:: PSID, psidgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn SetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super:: PSID, psidgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoA(pobjectname : windows_sys::core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoW(pobjectname : windows_sys::core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); pub const ACCCTRL_DEFAULT_PROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("Windows NT Access Provider"); pub const ACCCTRL_DEFAULT_PROVIDERA: windows_sys::core::PCSTR = windows_sys::core::s!("Windows NT Access Provider"); pub const ACCCTRL_DEFAULT_PROVIDERW: windows_sys::core::PCWSTR = windows_sys::core::w!("Windows NT Access Provider"); @@ -743,7 +743,7 @@ pub struct AUDIT_PARAMS { pub Count: u16, pub Parameters: *mut AUDIT_PARAM, } -pub type AUTHZ_ACCESS_CHECK_RESULTS_HANDLE = isize; +pub type AUTHZ_ACCESS_CHECK_RESULTS_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct AUTHZ_ACCESS_REPLY { @@ -756,13 +756,13 @@ pub struct AUTHZ_ACCESS_REPLY { #[derive(Clone, Copy)] pub struct AUTHZ_ACCESS_REQUEST { pub DesiredAccess: u32, - pub PrincipalSelfSid: super::super::Foundation::PSID, + pub PrincipalSelfSid: super::PSID, pub ObjectTypeList: *mut super::OBJECT_TYPE_LIST, pub ObjectTypeListLength: u32, pub OptionalArguments: *mut core::ffi::c_void, } -pub type AUTHZ_AUDIT_EVENT_HANDLE = isize; -pub type AUTHZ_AUDIT_EVENT_TYPE_HANDLE = isize; +pub type AUTHZ_AUDIT_EVENT_HANDLE = *mut core::ffi::c_void; +pub type AUTHZ_AUDIT_EVENT_TYPE_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct AUTHZ_AUDIT_EVENT_TYPE_LEGACY { @@ -785,8 +785,8 @@ pub struct AUTHZ_AUDIT_EVENT_TYPE_OLD { pub union AUTHZ_AUDIT_EVENT_TYPE_UNION { pub Legacy: AUTHZ_AUDIT_EVENT_TYPE_LEGACY, } -pub type AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE = isize; -pub type AUTHZ_CLIENT_CONTEXT_HANDLE = isize; +pub type AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE = *mut core::ffi::c_void; +pub type AUTHZ_CLIENT_CONTEXT_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct AUTHZ_INIT_INFO { @@ -804,7 +804,7 @@ pub struct AUTHZ_REGISTRATION_OBJECT_TYPE_NAME_OFFSET { pub szObjectTypeName: windows_sys::core::PWSTR, pub dwOffset: u32, } -pub type AUTHZ_RESOURCE_MANAGER_HANDLE = isize; +pub type AUTHZ_RESOURCE_MANAGER_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct AUTHZ_RPC_INIT_INFO_CLIENT { @@ -860,7 +860,7 @@ pub union AUTHZ_SECURITY_ATTRIBUTE_V1_0 { pub pFqbn: *mut AUTHZ_SECURITY_ATTRIBUTE_FQBN_VALUE, pub pOctetString: *mut AUTHZ_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE, } -pub type AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE = isize; +pub type AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct AUTHZ_SOURCE_SCHEMA_REGISTRATION { @@ -981,4 +981,4 @@ pub type PFN_AUTHZ_COMPUTE_DYNAMIC_GROUPS = Option super::super::Foundation::BOOL>; pub type PFN_AUTHZ_FREE_CENTRAL_ACCESS_POLICY = Option; pub type PFN_AUTHZ_FREE_DYNAMIC_GROUPS = Option; -pub type PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY = Option super::super::Foundation::BOOL>; +pub type PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY = Option super::super::Foundation::BOOL>; diff --git a/crates/libs/sys/src/Windows/Win32/Security/Credentials/mod.rs b/crates/libs/sys/src/Windows/Win32/Security/Credentials/mod.rs index 0a69e01b6b..80eb42f32c 100644 --- a/crates/libs/sys/src/Windows/Win32/Security/Credentials/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Security/Credentials/mod.rs @@ -28,12 +28,12 @@ windows_targets::link!("credui.dll" "system" fn CredUICmdLinePromptForCredential windows_targets::link!("credui.dll" "system" fn CredUICmdLinePromptForCredentialsW(psztargetname : windows_sys::core::PCWSTR, pcontext : *const SecHandle, dwautherror : u32, username : windows_sys::core::PWSTR, uluserbuffersize : u32, pszpassword : windows_sys::core::PWSTR, ulpasswordbuffersize : u32, pfsave : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> u32); windows_targets::link!("credui.dll" "system" fn CredUIConfirmCredentialsA(psztargetname : windows_sys::core::PCSTR, bconfirm : super::super::Foundation:: BOOL) -> u32); windows_targets::link!("credui.dll" "system" fn CredUIConfirmCredentialsW(psztargetname : windows_sys::core::PCWSTR, bconfirm : super::super::Foundation:: BOOL) -> u32); -windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameA(username : windows_sys::core::PCSTR, user : windows_sys::core::PSTR, userbuffersize : u32, domain : windows_sys::core::PSTR, domainbuffersize : u32) -> u32); -windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameW(username : windows_sys::core::PCWSTR, user : windows_sys::core::PWSTR, userbuffersize : u32, domain : windows_sys::core::PWSTR, domainbuffersize : u32) -> u32); +windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameA(username : windows_sys::core::PCSTR, user : windows_sys::core::PSTR, userbuffersize : u32, domain : windows_sys::core::PSTR, domainbuffersize : u32) -> super::super::Foundation:: WIN32_ERROR); +windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameW(username : windows_sys::core::PCWSTR, user : windows_sys::core::PWSTR, userbuffersize : u32, domain : windows_sys::core::PWSTR, domainbuffersize : u32) -> super::super::Foundation:: WIN32_ERROR); #[cfg(feature = "Win32_Graphics_Gdi")] -windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsA(puiinfo : *const CREDUI_INFOA, psztargetname : windows_sys::core::PCSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_sys::core::PSTR, ulusernamebuffersize : u32, pszpassword : windows_sys::core::PSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> u32); +windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsA(puiinfo : *const CREDUI_INFOA, psztargetname : windows_sys::core::PCSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_sys::core::PSTR, ulusernamebuffersize : u32, pszpassword : windows_sys::core::PSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> super::super::Foundation:: WIN32_ERROR); #[cfg(feature = "Win32_Graphics_Gdi")] -windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsW(puiinfo : *const CREDUI_INFOW, psztargetname : windows_sys::core::PCWSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_sys::core::PWSTR, ulusernamebuffersize : u32, pszpassword : windows_sys::core::PWSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> u32); +windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsW(puiinfo : *const CREDUI_INFOW, psztargetname : windows_sys::core::PCWSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_sys::core::PWSTR, ulusernamebuffersize : u32, pszpassword : windows_sys::core::PWSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> super::super::Foundation:: WIN32_ERROR); #[cfg(feature = "Win32_Graphics_Gdi")] windows_targets::link!("credui.dll" "system" fn CredUIPromptForWindowsCredentialsA(puiinfo : *const CREDUI_INFOA, dwautherror : u32, pulauthpackage : *mut u32, pvinauthbuffer : *const core::ffi::c_void, ulinauthbuffersize : u32, ppvoutauthbuffer : *mut *mut core::ffi::c_void, puloutauthbuffersize : *mut u32, pfsave : *mut super::super::Foundation:: BOOL, dwflags : CREDUIWIN_FLAGS) -> u32); #[cfg(feature = "Win32_Graphics_Gdi")] diff --git a/crates/libs/sys/src/Windows/Win32/Security/Cryptography/mod.rs b/crates/libs/sys/src/Windows/Win32/Security/Cryptography/mod.rs index f69e09b805..fb392e4a57 100644 --- a/crates/libs/sys/src/Windows/Win32/Security/Cryptography/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Security/Cryptography/mod.rs @@ -313,7 +313,7 @@ windows_targets::link!("crypt32.dll" "system" fn CryptUnprotectMemory(pdatain : windows_targets::link!("crypt32.dll" "system" fn CryptUnregisterDefaultOIDFunction(dwencodingtype : u32, pszfuncname : windows_sys::core::PCSTR, pwszdll : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); windows_targets::link!("crypt32.dll" "system" fn CryptUnregisterOIDFunction(dwencodingtype : u32, pszfuncname : windows_sys::core::PCSTR, pszoid : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL); windows_targets::link!("crypt32.dll" "system" fn CryptUnregisterOIDInfo(pinfo : *const CRYPT_OID_INFO) -> super::super::Foundation:: BOOL); -windows_targets::link!("crypt32.dll" "system" fn CryptUpdateProtectedState(poldsid : super::super::Foundation:: PSID, pwszoldpassword : windows_sys::core::PCWSTR, dwflags : u32, pdwsuccesscount : *mut u32, pdwfailurecount : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("crypt32.dll" "system" fn CryptUpdateProtectedState(poldsid : super:: PSID, pwszoldpassword : windows_sys::core::PCWSTR, dwflags : u32, pdwsuccesscount : *mut u32, pdwfailurecount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("crypt32.dll" "system" fn CryptVerifyCertificateSignature(hcryptprov : HCRYPTPROV_LEGACY, dwcertencodingtype : CERT_QUERY_ENCODING_TYPE, pbencoded : *const u8, cbencoded : u32, ppublickey : *const CERT_PUBLIC_KEY_INFO) -> super::super::Foundation:: BOOL); windows_targets::link!("crypt32.dll" "system" fn CryptVerifyCertificateSignatureEx(hcryptprov : HCRYPTPROV_LEGACY, dwcertencodingtype : CERT_QUERY_ENCODING_TYPE, dwsubjecttype : u32, pvsubject : *const core::ffi::c_void, dwissuertype : u32, pvissuer : *const core::ffi::c_void, dwflags : CRYPT_VERIFY_CERT_FLAGS, pvextra : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); windows_targets::link!("crypt32.dll" "system" fn CryptVerifyDetachedMessageHash(phashpara : *const CRYPT_HASH_MESSAGE_PARA, pbdetachedhashblob : *const u8, cbdetachedhashblob : u32, ctobehashed : u32, rgpbtobehashed : *const *const u8, rgcbtobehashed : *const u32, pbcomputedhash : *mut u8, pcbcomputedhash : *mut u32) -> super::super::Foundation:: BOOL); @@ -350,7 +350,9 @@ windows_targets::link!("infocardapi.dll" "system" fn FreeToken(pallocmemory : *c windows_targets::link!("infocardapi.dll" "system" fn GenerateDerivedKey(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cblabel : u32, plabel : *const u8, cbnonce : u32, pnonce : *const u8, derivedkeylength : u32, offset : u32, algid : windows_sys::core::PCWSTR, pcbkey : *mut u32, ppkey : *mut *mut u8) -> windows_sys::core::HRESULT); windows_targets::link!("infocardapi.dll" "system" fn GetBrowserToken(dwparamtype : u32, pparam : *const core::ffi::c_void, pcbtoken : *mut u32, pptoken : *mut *mut u8) -> windows_sys::core::HRESULT); windows_targets::link!("infocardapi.dll" "system" fn GetCryptoTransform(hsymmetriccrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, mode : u32, padding : PaddingMode, feedbacksize : u32, direction : Direction, cbiv : u32, piv : *const u8, pphtransform : *mut *mut INFORMATIONCARD_CRYPTO_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn GetKeyStorageInterface(pszprovidername : windows_sys::core::PCWSTR, ppfunctiontable : *mut *mut NCRYPT_KEY_STORAGE_FUNCTION_TABLE, dwflags : u32) -> super::super::Foundation:: NTSTATUS); windows_targets::link!("infocardapi.dll" "system" fn GetKeyedHash(hsymmetriccrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, pphhash : *mut *mut INFORMATIONCARD_CRYPTO_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn GetSChannelInterface(pszprovidername : windows_sys::core::PCWSTR, ppfunctiontable : *mut *mut NCRYPT_SSL_FUNCTION_TABLE, dwflags : u32) -> super::super::Foundation:: NTSTATUS); windows_targets::link!("infocardapi.dll" "system" fn GetToken(cpolicychain : u32, ppolicychain : *const POLICY_ELEMENT, securitytoken : *mut *mut GENERIC_XML_TOKEN, phprooftokencrypto : *mut *mut INFORMATIONCARD_CRYPTO_HANDLE) -> windows_sys::core::HRESULT); windows_targets::link!("infocardapi.dll" "system" fn HashCore(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8) -> windows_sys::core::HRESULT); windows_targets::link!("infocardapi.dll" "system" fn HashFinal(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8, pcboutdata : *mut u32, ppoutdata : *mut *mut u8) -> windows_sys::core::HRESULT); @@ -412,6 +414,51 @@ windows_targets::link!("mssign32.dll" "system" fn SignerTimeStamp(psubjectinfo : windows_targets::link!("mssign32.dll" "system" fn SignerTimeStampEx(dwflags : u32, psubjectinfo : *const SIGNER_SUBJECT_INFO, pwszhttptimestamp : windows_sys::core::PCWSTR, psrequest : *const CRYPT_ATTRIBUTES, psipdata : *const core::ffi::c_void, ppsignercontext : *mut *mut SIGNER_CONTEXT) -> windows_sys::core::HRESULT); windows_targets::link!("mssign32.dll" "system" fn SignerTimeStampEx2(dwflags : SIGNER_TIMESTAMP_FLAGS, psubjectinfo : *const SIGNER_SUBJECT_INFO, pwszhttptimestamp : windows_sys::core::PCWSTR, dwalgid : ALG_ID, psrequest : *const CRYPT_ATTRIBUTES, psipdata : *const core::ffi::c_void, ppsignercontext : *mut *mut SIGNER_CONTEXT) -> windows_sys::core::HRESULT); windows_targets::link!("mssign32.dll" "system" fn SignerTimeStampEx3(dwflags : SIGNER_TIMESTAMP_FLAGS, dwindex : u32, psubjectinfo : *const SIGNER_SUBJECT_INFO, pwszhttptimestamp : windows_sys::core::PCWSTR, pszalgorithmoid : windows_sys::core::PCWSTR, psrequest : *const CRYPT_ATTRIBUTES, psipdata : *const core::ffi::c_void, ppsignercontext : *mut *mut SIGNER_CONTEXT, pcryptopolicy : *const CERT_STRONG_SIGN_PARA, preserved : *const core::ffi::c_void) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslChangeNotify(hevent : super::super::Foundation:: HANDLE, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslComputeClientAuthHash(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, pszalgid : windows_sys::core::PCWSTR, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslComputeEapKeyBlock(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, pbrandoms : *const u8, cbrandoms : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslComputeFinishedHash(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, pboutput : *mut u8, cboutput : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslComputeSessionHash(hsslprovider : NCRYPT_PROV_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, dwprotocol : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslCreateClientAuthHash(hsslprovider : NCRYPT_PROV_HANDLE, phhandshakehash : *mut NCRYPT_HASH_HANDLE, dwprotocol : u32, dwciphersuite : u32, pszhashalgid : windows_sys::core::PCWSTR, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslCreateEphemeralKey(hsslprovider : NCRYPT_PROV_HANDLE, phephemeralkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, dwkeybitlen : u32, pbparams : *const u8, cbparams : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslCreateHandshakeHash(hsslprovider : NCRYPT_PROV_HANDLE, phhandshakehash : *mut NCRYPT_HASH_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslDecrementProviderReferenceCount(hsslprovider : NCRYPT_PROV_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslDecryptPacket(hsslprovider : NCRYPT_PROV_HANDLE, hkey : NCRYPT_KEY_HANDLE, pbinput : *const u8, cbinput : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, sequencenumber : u64, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslDuplicateTranscriptHash(hsslprovider : NCRYPT_PROV_HANDLE, htranscripthash : NCRYPT_HASH_HANDLE, phtranscripthash : *mut NCRYPT_HASH_HANDLE, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslEncryptPacket(hsslprovider : NCRYPT_PROV_HANDLE, hkey : NCRYPT_KEY_HANDLE, pbinput : *const u8, cbinput : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, sequencenumber : u64, dwcontenttype : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslEnumCipherSuites(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, ppciphersuite : *mut *mut NCRYPT_SSL_CIPHER_SUITE, ppenumstate : *mut *mut core::ffi::c_void, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslEnumCipherSuitesEx(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, ppciphersuite : *mut *mut NCRYPT_SSL_CIPHER_SUITE_EX, ppenumstate : *mut *mut core::ffi::c_void, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslEnumEccCurves(hsslprovider : NCRYPT_PROV_HANDLE, pecccurvecount : *mut u32, ppecccurve : *mut *mut NCRYPT_SSL_ECC_CURVE, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslEnumProtocolProviders(pdwprovidercount : *mut u32, ppproviderlist : *mut *mut NCryptProviderName, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExpandBinderKey(hsslprovider : NCRYPT_PROV_HANDLE, hearlykey : NCRYPT_KEY_HANDLE, phbinderkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExpandExporterMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hbasekey : NCRYPT_KEY_HANDLE, hhashvalue : NCRYPT_HASH_HANDLE, phexportermasterkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExpandPreSharedKey(hsslprovider : NCRYPT_PROV_HANDLE, hresumptionmasterkey : NCRYPT_KEY_HANDLE, pbticketnonce : *const u8, cbticketnonce : u32, phpresharedkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExpandResumptionMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, hhashvalue : NCRYPT_HASH_HANDLE, phresumptionmasterkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExpandTrafficKeys(hsslprovider : NCRYPT_PROV_HANDLE, hbasekey : NCRYPT_KEY_HANDLE, hhashvalue : NCRYPT_HASH_HANDLE, phclienttraffickey : *mut NCRYPT_KEY_HANDLE, phservertraffickey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExpandWriteKey(hsslprovider : NCRYPT_PROV_HANDLE, hbasetraffickey : NCRYPT_KEY_HANDLE, phwritekey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExportKey(hsslprovider : NCRYPT_PROV_HANDLE, hkey : NCRYPT_KEY_HANDLE, pszblobtype : windows_sys::core::PCWSTR, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExportKeyingMaterial(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, slabel : windows_sys::core::PCSTR, pbrandoms : *const u8, cbrandoms : u32, pbcontextvalue : *const u8, cbcontextvalue : u16, pboutput : *mut u8, cboutput : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExtractEarlyKey(hsslprovider : NCRYPT_PROV_HANDLE, hpresharedkey : NCRYPT_KEY_HANDLE, phearlykey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExtractHandshakeKey(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, hearlykey : NCRYPT_KEY_HANDLE, phhandshakekey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslExtractMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hhandshakekey : NCRYPT_KEY_HANDLE, phmasterkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslFreeBuffer(pvinput : *mut core::ffi::c_void) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslFreeObject(hobject : NCRYPT_HANDLE, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslGenerateMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, phmasterkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslGeneratePreMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, phpremasterkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslGenerateSessionKeys(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, phreadkey : *mut NCRYPT_KEY_HANDLE, phwritekey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslGetCipherSuitePRFHashAlgorithm(hsslprovider : NCRYPT_PROV_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, szprfhash : windows_sys::core::PWSTR, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslGetKeyProperty(hkey : NCRYPT_KEY_HANDLE, pszproperty : windows_sys::core::PCWSTR, ppboutput : *mut *mut u8, pcboutput : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslGetProviderProperty(hsslprovider : NCRYPT_PROV_HANDLE, pszproperty : windows_sys::core::PCWSTR, ppboutput : *mut *mut u8, pcboutput : *mut u32, ppenumstate : *mut *mut core::ffi::c_void, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslHashHandshake(hsslprovider : NCRYPT_PROV_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, pbinput : *const u8, cbinput : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslImportKey(hsslprovider : NCRYPT_PROV_HANDLE, phkey : *mut NCRYPT_KEY_HANDLE, pszblobtype : windows_sys::core::PCWSTR, pbkeyblob : *const u8, cbkeyblob : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslImportMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, phmasterkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, pbencryptedkey : *const u8, cbencryptedkey : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslIncrementProviderReferenceCount(hsslprovider : NCRYPT_PROV_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslLookupCipherLengths(hsslprovider : NCRYPT_PROV_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, pcipherlengths : *mut NCRYPT_SSL_CIPHER_LENGTHS, cbcipherlengths : u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslLookupCipherSuiteInfo(hsslprovider : NCRYPT_PROV_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, pciphersuite : *mut NCRYPT_SSL_CIPHER_SUITE, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslOpenPrivateKey(hsslprovider : NCRYPT_PROV_HANDLE, phprivatekey : *mut NCRYPT_KEY_HANDLE, pcertcontext : *const CERT_CONTEXT, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslOpenProvider(phsslprovider : *mut NCRYPT_PROV_HANDLE, pszprovidername : windows_sys::core::PCWSTR, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslSignHash(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, pbhashvalue : *const u8, cbhashvalue : u32, pbsignature : *mut u8, cbsignature : u32, pcbresult : *mut u32, dwflags : u32) -> windows_sys::core::HRESULT); +windows_targets::link!("ncrypt.dll" "system" fn SslVerifySignature(hsslprovider : NCRYPT_PROV_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, pbhashvalue : *const u8, cbhashvalue : u32, pbsignature : *const u8, cbsignature : u32, dwflags : u32) -> windows_sys::core::HRESULT); windows_targets::link!("bcryptprimitives.dll" "system" fn SystemPrng(pbrandomdata : *mut u8, cbrandomdata : usize) -> super::super::Foundation:: BOOL); windows_targets::link!("infocardapi.dll" "system" fn TransformBlock(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8, pcboutdata : *mut u32, ppoutdata : *mut *mut u8) -> windows_sys::core::HRESULT); windows_targets::link!("infocardapi.dll" "system" fn TransformFinalBlock(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8, pcboutdata : *mut u32, ppoutdata : *mut *mut u8) -> windows_sys::core::HRESULT); @@ -492,6 +539,12 @@ pub const ALG_TYPE_RSA: u32 = 1024u32; pub const ALG_TYPE_SECURECHANNEL: u32 = 3072u32; pub const ALG_TYPE_STREAM: u32 = 2048u32; pub const ALG_TYPE_THIRDPARTY: u32 = 4096u32; +pub const AT_ECDHE_P256: u32 = 6u32; +pub const AT_ECDHE_P384: u32 = 7u32; +pub const AT_ECDHE_P521: u32 = 8u32; +pub const AT_ECDSA_P256: u32 = 3u32; +pub const AT_ECDSA_P384: u32 = 4u32; +pub const AT_ECDSA_P521: u32 = 5u32; pub const AT_KEYEXCHANGE: CERT_KEY_SPEC = 1u32; pub const AT_SIGNATURE: CERT_KEY_SPEC = 2u32; pub const AUDIT_CARD_DELETE: windows_sys::core::HRESULT = 0x40050201_u32 as _; @@ -503,6 +556,11 @@ pub const AUDIT_STORE_EXPORT: windows_sys::core::HRESULT = 0x40050204_u32 as _; pub const AUDIT_STORE_IMPORT: windows_sys::core::HRESULT = 0x40050203_u32 as _; pub const AUTHTYPE_CLIENT: HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE = 1u32; pub const AUTHTYPE_SERVER: HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE = 2u32; +pub const AdminCreateDeleteDirAc: CARD_DIRECTORY_ACCESS_CONDITION = 2i32; +pub const AdminReadWriteAc: CARD_FILE_ACCESS_CONDITION = 6i32; +pub const AdministratorPin: SECRET_PURPOSE = 4i32; +pub const AlphaNumericPinType: SECRET_TYPE = 0i32; +pub const AuthenticationPin: SECRET_PURPOSE = 0i32; pub const BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_CA_FLAG: u32 = 2147483648u32; pub const BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_END_ENTITY_FLAG: u32 = 1073741824u32; pub const BCRYPTBUFFER_VERSION: u32 = 0u32; @@ -551,6 +609,7 @@ pub const BCRYPT_CHAIN_MODE_GCM: windows_sys::core::PCWSTR = windows_sys::core:: pub const BCRYPT_CHAIN_MODE_NA: windows_sys::core::PCWSTR = windows_sys::core::w!("ChainingModeN/A"); pub const BCRYPT_CIPHER_INTERFACE: BCRYPT_INTERFACE = 1u32; pub const BCRYPT_CIPHER_OPERATION: BCRYPT_OPERATION = 1u32; +pub const BCRYPT_COPY_AFTER_PADDING_CHECK_FAILURE_FLAG: u32 = 256u32; pub const BCRYPT_DESX_ALGORITHM: windows_sys::core::PCWSTR = windows_sys::core::w!("DESX"); pub const BCRYPT_DESX_CBC_ALG_HANDLE: BCRYPT_ALG_HANDLE = 545u32 as _; pub const BCRYPT_DESX_CFB_ALG_HANDLE: BCRYPT_ALG_HANDLE = 577u32 as _; @@ -632,6 +691,7 @@ pub const BCRYPT_ECC_CURVE_X962P256V1: windows_sys::core::PCWSTR = windows_sys:: pub const BCRYPT_ECC_FULLKEY_BLOB_V1: u32 = 1u32; pub const BCRYPT_ECC_PARAMETERS: windows_sys::core::PCWSTR = windows_sys::core::w!("ECCParameters"); pub const BCRYPT_ECC_PARAMETERS_MAGIC: u32 = 1346585413u32; +pub const BCRYPT_ECC_PARAMETER_HEADER_V1: u32 = 1u32; pub const BCRYPT_ECC_PRIME_MONTGOMERY_CURVE: ECC_CURVE_TYPE_ENUM = 3i32; pub const BCRYPT_ECC_PRIME_SHORT_WEIERSTRASS_CURVE: ECC_CURVE_TYPE_ENUM = 1i32; pub const BCRYPT_ECC_PRIME_TWISTED_EDWARDS_CURVE: ECC_CURVE_TYPE_ENUM = 2i32; @@ -857,6 +917,66 @@ pub const CALG_THIRDPARTY_KEY_EXCHANGE: ALG_ID = 45056u32; pub const CALG_THIRDPARTY_SIGNATURE: ALG_ID = 12288u32; pub const CALG_TLS1PRF: ALG_ID = 32778u32; pub const CALG_TLS1_MASTER: ALG_ID = 19462u32; +pub const CARD_3DES_112_ALGORITHM: windows_sys::core::PCWSTR = windows_sys::core::w!("3DES_112"); +pub const CARD_3DES_ALGORITHM: windows_sys::core::PCWSTR = windows_sys::core::w!("3DES"); +pub const CARD_AES_ALGORITHM: windows_sys::core::PCWSTR = windows_sys::core::w!("AES"); +pub const CARD_ASYMMETRIC_OPERATION: u32 = 2u32; +pub const CARD_AUTHENTICATE_CURRENT_VERSION: u32 = 7u32; +pub const CARD_AUTHENTICATE_GENERATE_SESSION_PIN: u32 = 268435456u32; +pub const CARD_AUTHENTICATE_PIN_CHALLENGE_RESPONSE: u32 = 1u32; +pub const CARD_AUTHENTICATE_PIN_PIN: u32 = 2u32; +pub const CARD_AUTHENTICATE_RESPONSE_CURRENT_VERSION: u32 = 7u32; +pub const CARD_AUTHENTICATE_RESPONSE_VERSION_SEVEN: u32 = 7u32; +pub const CARD_AUTHENTICATE_SESSION_PIN: u32 = 536870912u32; +pub const CARD_AUTHENTICATE_VERSION_SEVEN: u32 = 7u32; +pub const CARD_BUFFER_SIZE_ONLY: u32 = 536870912u32; +pub const CARD_CACHE_FILE_CURRENT_VERSION: u32 = 1u32; +pub const CARD_CAPABILITIES_CURRENT_VERSION: u32 = 1u32; +pub const CARD_CHAIN_MODE_CBC: windows_sys::core::PCWSTR = windows_sys::core::w!("ChainingModeCBC"); +pub const CARD_CHANGE_AUTHENTICATOR_CURRENT_VERSION: u32 = 7u32; +pub const CARD_CHANGE_AUTHENTICATOR_RESPONSE_CURRENT_VERSION: u32 = 7u32; +pub const CARD_CHANGE_AUTHENTICATOR_RESPONSE_VERSION_SEVEN: u32 = 7u32; +pub const CARD_CHANGE_AUTHENTICATOR_VERSION_SEVEN: u32 = 7u32; +pub const CARD_CIPHER_OPERATION: u32 = 1u32; +pub const CARD_CREATE_CONTAINER_KEY_GEN: u32 = 1u32; +pub const CARD_CREATE_CONTAINER_KEY_IMPORT: u32 = 2u32; +pub const CARD_DATA_CURRENT_VERSION: u32 = 7u32; +pub const CARD_DATA_VALUE_UNKNOWN: u32 = 4294967295u32; +pub const CARD_DATA_VERSION_FIVE: u32 = 5u32; +pub const CARD_DATA_VERSION_FOUR: u32 = 4u32; +pub const CARD_DATA_VERSION_SEVEN: u32 = 7u32; +pub const CARD_DATA_VERSION_SIX: u32 = 6u32; +pub const CARD_DERIVE_KEY_CURRENT_VERSION: u32 = 2u32; +pub const CARD_DERIVE_KEY_VERSION: u32 = 1u32; +pub const CARD_DERIVE_KEY_VERSION_TWO: u32 = 2u32; +pub const CARD_DH_AGREEMENT_INFO_VERSION: u32 = 2u32; +pub const CARD_FILE_INFO_CURRENT_VERSION: u32 = 1u32; +pub const CARD_FREE_SPACE_INFO_CURRENT_VERSION: u32 = 1u32; +pub const CARD_IMPORT_KEYPAIR_CURRENT_VERSION: u32 = 7u32; +pub const CARD_IMPORT_KEYPAIR_VERSION_SEVEN: u32 = 7u32; +pub const CARD_KEY_IMPORT_ECC_KEYEST: u32 = 4u32; +pub const CARD_KEY_IMPORT_PLAIN_TEXT: u32 = 1u32; +pub const CARD_KEY_IMPORT_RSA_KEYEST: u32 = 2u32; +pub const CARD_KEY_IMPORT_SHARED_SYMMETRIC: u32 = 8u32; +pub const CARD_KEY_SIZES_CURRENT_VERSION: u32 = 1u32; +pub const CARD_PADDING_INFO_PRESENT: u32 = 1073741824u32; +pub const CARD_PADDING_NONE: u32 = 1u32; +pub const CARD_PADDING_OAEP: u32 = 8u32; +pub const CARD_PADDING_PKCS1: u32 = 2u32; +pub const CARD_PADDING_PSS: u32 = 4u32; +pub const CARD_PIN_SILENT_CONTEXT: u32 = 64u32; +pub const CARD_PIN_STRENGTH_PLAINTEXT: u32 = 1u32; +pub const CARD_PIN_STRENGTH_SESSION_PIN: u32 = 2u32; +pub const CARD_RETURN_KEY_HANDLE: u32 = 16777216u32; +pub const CARD_RSA_KEY_DECRYPT_INFO_CURRENT_VERSION: u32 = 2u32; +pub const CARD_RSA_KEY_DECRYPT_INFO_VERSION_ONE: u32 = 1u32; +pub const CARD_RSA_KEY_DECRYPT_INFO_VERSION_TWO: u32 = 2u32; +pub const CARD_SECURE_KEY_INJECTION_NO_CARD_MODE: u32 = 1u32; +pub const CARD_SIGNING_INFO_BASIC_VERSION: u32 = 1u32; +pub const CARD_SIGNING_INFO_CURRENT_VERSION: u32 = 2u32; +pub const CCP_ASSOCIATED_ECDH_KEY: windows_sys::core::PCWSTR = windows_sys::core::w!("Associated ECDH Key"); +pub const CCP_CONTAINER_INFO: windows_sys::core::PCWSTR = windows_sys::core::w!("Container Info"); +pub const CCP_PIN_IDENTIFIER: windows_sys::core::PCWSTR = windows_sys::core::w!("PIN Identifier"); pub const CERT_ACCESS_STATE_GP_SYSTEM_STORE_FLAG: u32 = 8u32; pub const CERT_ACCESS_STATE_LM_SYSTEM_STORE_FLAG: u32 = 4u32; pub const CERT_ACCESS_STATE_PROP_ID: u32 = 14u32; @@ -1588,9 +1708,11 @@ pub const CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID: u32 = 85u32; pub const CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID: u32 = 25u32; pub const CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID: u32 = 92u32; pub const CERT_SYSTEM_STORE_CURRENT_SERVICE_ID: u32 = 4u32; +pub const CERT_SYSTEM_STORE_CURRENT_USER: u32 = 65536u32; pub const CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY_ID: u32 = 7u32; pub const CERT_SYSTEM_STORE_CURRENT_USER_ID: u32 = 1u32; pub const CERT_SYSTEM_STORE_DEFER_READ_FLAG: u32 = 536870912u32; +pub const CERT_SYSTEM_STORE_LOCAL_MACHINE: u32 = 131072u32; pub const CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE_ID: u32 = 9u32; pub const CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY_ID: u32 = 8u32; pub const CERT_SYSTEM_STORE_LOCAL_MACHINE_ID: u32 = 2u32; @@ -1684,6 +1806,26 @@ pub const CERT_VERIFY_TRUSTED_SIGNERS_FLAG: u32 = 2u32; pub const CERT_VERIFY_UPDATED_CTL_FLAG: u32 = 1u32; pub const CERT_X500_NAME_STR: CERT_STRING_TYPE = 3u32; pub const CERT_XML_NAME_STR: u32 = 4u32; +pub const CKP_BLOCK_LENGTH: windows_sys::core::PCWSTR = windows_sys::core::w!("BlockLength"); +pub const CKP_CHAINING_MODE: windows_sys::core::PCWSTR = windows_sys::core::w!("ChainingMode"); +pub const CKP_INITIALIZATION_VECTOR: windows_sys::core::PCWSTR = windows_sys::core::w!("IV"); +pub const CLMD_FILE_TAG_CARD_AUTH_CERT: u32 = 6275329u32; +pub const CLMD_FILE_TAG_CARD_CAPABILITY_CONTAINER: u32 = 6275335u32; +pub const CLMD_FILE_TAG_CHUID: u32 = 6275330u32; +pub const CLMD_FILE_TAG_FACIAL_IMAGE: u32 = 6275336u32; +pub const CLMD_FILE_TAG_FINGERPRINT: u32 = 6275331u32; +pub const CLMD_FILE_TAG_FIRST_RETIRED_KEY_MGMT_KEY: u32 = 6275341u32; +pub const CLMD_FILE_TAG_KEY_HISTORY: u32 = 6275340u32; +pub const CLMD_FILE_TAG_KEY_MGMT_CERT: u32 = 6275339u32; +pub const CLMD_FILE_TAG_LAST_RETIRED_KEY_MGMT_KEY: u32 = 6275360u32; +pub const CLMD_FILE_TAG_PIV_AUTH_CERT: u32 = 6275333u32; +pub const CLMD_FILE_TAG_PRINTED_INFORMATION: u32 = 6275337u32; +pub const CLMD_FILE_TAG_SECURITY_OBJECT: u32 = 6275334u32; +pub const CLMD_FILE_TAG_SIG_CERT: u32 = 6275338u32; +pub const CLMD_FILE_TAG_UNSIGNED_CHUID: u32 = 6275332u32; +pub const CLMD_PIV_CERT_DATA_CURRENT_VERSION: u32 = 0u32; +pub const CLMD_PIV_GENERATE_ASYMMETRIC_KEY_CURRENT_VERSION: u32 = 0u32; +pub const CLMD_PIV_PUBLIC_KEY_DATA_CURRENT_VERSION: u32 = 0u32; pub const CMC_ADD_ATTRIBUTES: windows_sys::core::PCSTR = 63i32 as _; pub const CMC_ADD_EXTENSIONS: windows_sys::core::PCSTR = 62i32 as _; pub const CMC_DATA: windows_sys::core::PCSTR = 59i32 as _; @@ -1868,6 +2010,9 @@ pub const CMSG_VERSION_PARAM: u32 = 30u32; pub const CMS_SIGNER_INFO: windows_sys::core::PCSTR = 501i32 as _; pub const CNG_RSA_PRIVATE_KEY_BLOB: windows_sys::core::PCSTR = 83i32 as _; pub const CNG_RSA_PUBLIC_KEY_BLOB: windows_sys::core::PCSTR = 72i32 as _; +pub const CONTAINER_INFO_CURRENT_VERSION: u32 = 1u32; +pub const CONTAINER_MAP_DEFAULT_CONTAINER: u32 = 2u32; +pub const CONTAINER_MAP_VALID_CONTAINER: u32 = 1u32; pub const CONTEXT_OID_CAPI2_ANY: windows_sys::core::PCSTR = 5i32 as _; pub const CONTEXT_OID_CERTIFICATE: windows_sys::core::PCSTR = 1i32 as _; pub const CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC: windows_sys::core::PCSTR = windows_sys::core::s!("ContextDllCreateObjectContext"); @@ -1875,6 +2020,41 @@ pub const CONTEXT_OID_CRL: windows_sys::core::PCSTR = 2i32 as _; pub const CONTEXT_OID_CTL: windows_sys::core::PCSTR = 3i32 as _; pub const CONTEXT_OID_OCSP_RESP: windows_sys::core::PCSTR = 6i32 as _; pub const CONTEXT_OID_PKCS7: windows_sys::core::PCSTR = 4i32 as _; +pub const CP_CACHE_MODE_GLOBAL_CACHE: u32 = 1u32; +pub const CP_CACHE_MODE_NO_CACHE: u32 = 3u32; +pub const CP_CACHE_MODE_SESSION_ONLY: u32 = 2u32; +pub const CP_CARD_AUTHENTICATED_STATE: windows_sys::core::PCWSTR = windows_sys::core::w!("Authenticated State"); +pub const CP_CARD_CACHE_MODE: windows_sys::core::PCWSTR = windows_sys::core::w!("Cache Mode"); +pub const CP_CARD_CAPABILITIES: windows_sys::core::PCWSTR = windows_sys::core::w!("Capabilities"); +pub const CP_CARD_FREE_SPACE: windows_sys::core::PCWSTR = windows_sys::core::w!("Free Space"); +pub const CP_CARD_GUID: windows_sys::core::PCWSTR = windows_sys::core::w!("Card Identifier"); +pub const CP_CARD_KEYSIZES: windows_sys::core::PCWSTR = windows_sys::core::w!("Key Sizes"); +pub const CP_CARD_LIST_PINS: windows_sys::core::PCWSTR = windows_sys::core::w!("PIN List"); +pub const CP_CARD_PIN_INFO: windows_sys::core::PCWSTR = windows_sys::core::w!("PIN Information"); +pub const CP_CARD_PIN_STRENGTH_CHANGE: windows_sys::core::PCWSTR = windows_sys::core::w!("PIN Strength Change"); +pub const CP_CARD_PIN_STRENGTH_UNBLOCK: windows_sys::core::PCWSTR = windows_sys::core::w!("PIN Strength Unblock"); +pub const CP_CARD_PIN_STRENGTH_VERIFY: windows_sys::core::PCWSTR = windows_sys::core::w!("PIN Strength Verify"); +pub const CP_CARD_PIV: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Card"); +pub const CP_CARD_READ_ONLY: windows_sys::core::PCWSTR = windows_sys::core::w!("Read Only Mode"); +pub const CP_CARD_SERIAL_NO: windows_sys::core::PCWSTR = windows_sys::core::w!("Card Serial Number"); +pub const CP_CHAINING_MODES: windows_sys::core::PCWSTR = windows_sys::core::w!("Chaining Modes"); +pub const CP_ENUM_ALGORITHMS: windows_sys::core::PCWSTR = windows_sys::core::w!("Algorithms"); +pub const CP_KEY_IMPORT_SUPPORT: windows_sys::core::PCWSTR = windows_sys::core::w!("Key Import Support"); +pub const CP_PADDING_SCHEMES: windows_sys::core::PCWSTR = windows_sys::core::w!("Padding Schemes"); +pub const CP_PARENT_WINDOW: windows_sys::core::PCWSTR = windows_sys::core::w!("Parent Window"); +pub const CP_PIN_CONTEXT_STRING: windows_sys::core::PCWSTR = windows_sys::core::w!("PIN Context String"); +pub const CP_PIV_CARD_CAPABILITY_CONTAINER: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV CCC"); +pub const CP_PIV_CARD_HOLDER_UNIQUE_IDENTIFIER: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV CHUID"); +pub const CP_PIV_CARD_HOLDER_UNSIGNED_UNIQUE_IDENTIFIER: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV UCHUID"); +pub const CP_PIV_CERTIFICATE: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Certificate"); +pub const CP_PIV_FACIAL_IMAGE: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Facial Image"); +pub const CP_PIV_FINGERPRINT: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Fingerprint"); +pub const CP_PIV_GENERATE_KEY: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Generate Key"); +pub const CP_PIV_KEY_HISTORY_OBJECT: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Key History Object"); +pub const CP_PIV_PRINTED_INFORMATION: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Printed Information"); +pub const CP_PIV_PUBLIC_KEY: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Public Key"); +pub const CP_PIV_SECURITY_OBJECT: windows_sys::core::PCWSTR = windows_sys::core::w!("PIV Security Object"); +pub const CP_SUPPORTS_WIN_X509_ENROLLMENT: windows_sys::core::PCWSTR = windows_sys::core::w!("Supports Windows x.509 Enrollment"); pub const CREDENTIAL_OID_PASSWORD_CREDENTIALS: i32 = 2i32; pub const CREDENTIAL_OID_PASSWORD_CREDENTIALS_A: windows_sys::core::PCSTR = 1i32 as _; pub const CREDENTIAL_OID_PASSWORD_CREDENTIALS_W: windows_sys::core::PCSTR = 2i32 as _; @@ -2048,6 +2228,7 @@ pub const CRYPT_EXCLUSIVE: CRYPT_CONTEXT_CONFIG_FLAGS = 1u32; pub const CRYPT_EXPORT: u32 = 4u32; pub const CRYPT_EXPORTABLE: CRYPT_KEY_FLAGS = 1u32; pub const CRYPT_EXPORT_KEY: u32 = 64u32; +pub const CRYPT_EXTERNAL_SIGNATURE_LENGTH: u32 = 136u32; pub const CRYPT_EXT_OR_ATTR_OID_GROUP_ID: u32 = 6u32; pub const CRYPT_FAILED: u32 = 0u32; pub const CRYPT_FASTSGC: u32 = 2u32; @@ -2113,7 +2294,10 @@ pub const CRYPT_LOCALIZED_NAME_OID: windows_sys::core::PCSTR = windows_sys::core pub const CRYPT_MAC: u32 = 32u32; pub const CRYPT_MACHINE_DEFAULT: u32 = 1u32; pub const CRYPT_MACHINE_KEYSET: CRYPT_KEY_FLAGS = 32u32; +pub const CRYPT_MAC_RESOURCE: windows_sys::core::PCWSTR = windows_sys::core::w!("#667"); +pub const CRYPT_MAC_RESOURCE_NUMBER: u32 = 667u32; pub const CRYPT_MATCH_ANY_ENCODING_TYPE: u32 = 4294967295u32; +pub const CRYPT_MAX_PROVIDER_ID: u32 = 999u32; pub const CRYPT_MESSAGE_BARE_CONTENT_OUT_FLAG: u32 = 1u32; pub const CRYPT_MESSAGE_ENCAPSULATED_CONTENT_OUT_FLAG: u32 = 2u32; pub const CRYPT_MESSAGE_KEYID_RECIPIENT_FLAG: u32 = 4u32; @@ -2224,6 +2408,8 @@ pub const CRYPT_PREGEN: CRYPT_KEY_FLAGS = 64u32; pub const CRYPT_PRIORITY_BOTTOM: u32 = 4294967295u32; pub const CRYPT_PRIORITY_TOP: u32 = 0u32; pub const CRYPT_PROCESS_ISOLATE: CRYPT_IMAGE_REF_FLAGS = 65536u32; +pub const CRYPT_PROVIDER_IOCTL__GET_SCHANNEL_INTERFACE: u32 = 4145180u32; +pub const CRYPT_PROVSTRUC_VERSION_V3: u32 = 3u32; pub const CRYPT_PROXY_CACHE_RETRIEVAL: u32 = 2097152u32; pub const CRYPT_PSTORE: u32 = 2u32; pub const CRYPT_PUBKEY_ALG_OID_GROUP_ID: u32 = 3u32; @@ -2247,6 +2433,9 @@ pub const CRYPT_SGC: u32 = 1u32; pub const CRYPT_SGCKEY: CRYPT_KEY_FLAGS = 8192u32; pub const CRYPT_SGC_ENUM: u32 = 4u32; pub const CRYPT_SIGN_ALG_OID_GROUP_ID: u32 = 4u32; +pub const CRYPT_SIG_RESOURCE: windows_sys::core::PCWSTR = windows_sys::core::w!("#666"); +pub const CRYPT_SIG_RESOURCE_NUMBER: u32 = 666u32; +pub const CRYPT_SIG_RESOURCE_VERSION: u32 = 256u32; pub const CRYPT_SILENT: u32 = 64u32; pub const CRYPT_SORTED_CTL_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG: u32 = 65536u32; pub const CRYPT_SSL2_FALLBACK: CRYPT_KEY_FLAGS = 2u32; @@ -2398,6 +2587,9 @@ pub const CRYPT_XML_X509DATA_TYPE_ISSUER_SERIAL: CRYPT_XML_X509DATA_TYPE = 1u32; pub const CRYPT_XML_X509DATA_TYPE_SKI: CRYPT_XML_X509DATA_TYPE = 2u32; pub const CRYPT_XML_X509DATA_TYPE_SUBJECT_NAME: CRYPT_XML_X509DATA_TYPE = 3u32; pub const CRYPT_Y_ONLY: CRYPT_KEY_FLAGS = 1u32; +pub const CSF_AUTHENTICATE: windows_sys::core::PCWSTR = windows_sys::core::w!("Authenticate"); +pub const CSF_CHANGE_AUTHENTICATOR: windows_sys::core::PCWSTR = windows_sys::core::w!("Change Authenticator"); +pub const CSF_IMPORT_KEYPAIR: windows_sys::core::PCWSTR = windows_sys::core::w!("Import Key Pair"); pub const CTL_ANY_SUBJECT_TYPE: u32 = 1u32; pub const CTL_CERT_SUBJECT_TYPE: u32 = 2u32; pub const CTL_ENTRY_FROM_PROP_CHAIN_FLAG: u32 = 1u32; @@ -2411,11 +2603,16 @@ pub const CTL_FIND_SUBJECT: CERT_FIND_TYPE = 4u32; pub const CTL_FIND_USAGE: CERT_FIND_TYPE = 3u32; pub const CTL_V1: u32 = 0u32; pub const CUR_BLOB_VERSION: u32 = 2u32; +pub const CUR_OFFLOAD_VERSION: u32 = 1u32; +pub const ChallengeResponsePinType: SECRET_TYPE = 2i32; pub const DSA_FIPS186_2: DSAFIPSVERSION_ENUM = 0i32; pub const DSA_FIPS186_3: DSAFIPSVERSION_ENUM = 1i32; pub const DSA_HASH_ALGORITHM_SHA1: HASHALGORITHM_ENUM = 0i32; pub const DSA_HASH_ALGORITHM_SHA256: HASHALGORITHM_ENUM = 1i32; pub const DSA_HASH_ALGORITHM_SHA512: HASHALGORITHM_ENUM = 2i32; +pub const DTLS1_0_PROTOCOL_VERSION: u32 = 65279u32; +pub const DTLS1_2_PROTOCOL_VERSION: u32 = 65277u32; +pub const DigitalSignaturePin: SECRET_PURPOSE = 1i32; pub const DirectionDecrypt: Direction = 2i32; pub const DirectionEncrypt: Direction = 1i32; pub const ECC_CMS_SHARED_INFO: windows_sys::core::PCSTR = 77i32 as _; @@ -2493,6 +2690,11 @@ pub const E_ICARD_UI_INITIALIZATION: windows_sys::core::HRESULT = 0xC005011A_u32 pub const E_ICARD_UNKNOWN_REFERENCE: windows_sys::core::HRESULT = 0xC0050183_u32 as _; pub const E_ICARD_UNTRUSTED: windows_sys::core::HRESULT = 0xC0050112_u32 as _; pub const E_ICARD_USERCANCELLED: windows_sys::core::HRESULT = 0xC0050113_u32 as _; +pub const EmptyPinType: SECRET_TYPE = 3i32; +pub const EncryptionPin: SECRET_PURPOSE = 2i32; +pub const EveryoneReadAdminWriteAc: CARD_FILE_ACCESS_CONDITION = 3i32; +pub const EveryoneReadUserWriteAc: CARD_FILE_ACCESS_CONDITION = 1i32; +pub const ExternalPinType: SECRET_TYPE = 1i32; pub const HP_ALGID: u32 = 1u32; pub const HP_HASHSIZE: u32 = 4u32; pub const HP_HASHVAL: CRYPT_SET_HASH_PARAM = 2u32; @@ -2503,6 +2705,8 @@ pub const IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_1: u32 = 1u32; pub const IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_2: u32 = 2u32; pub const IFX_RSA_KEYGEN_VUL_NOT_AFFECTED: u32 = 0u32; pub const INTERNATIONAL_USAGE: u32 = 1u32; +pub const InvalidAc: CARD_FILE_ACCESS_CONDITION = 0i32; +pub const InvalidDirAc: CARD_DIRECTORY_ACCESS_CONDITION = 0i32; pub const KDF_ALGORITHMID: u32 = 8u32; pub const KDF_CONTEXT: u32 = 14u32; pub const KDF_GENERIC_PARAMETER: u32 = 17u32; @@ -2589,9 +2793,13 @@ pub const LEGACY_DSA_V2_PUBLIC_BLOB: windows_sys::core::PCWSTR = windows_sys::co pub const LEGACY_RSAPRIVATE_BLOB: windows_sys::core::PCWSTR = windows_sys::core::w!("CAPIPRIVATEBLOB"); pub const LEGACY_RSAPUBLIC_BLOB: windows_sys::core::PCWSTR = windows_sys::core::w!("CAPIPUBLICBLOB"); pub const MAXUIDLEN: u32 = 64u32; +pub const MAX_CONTAINER_NAME_LEN: u32 = 39u32; +pub const MAX_PINS: u32 = 8u32; pub const MICROSOFT_ROOT_CERT_CHAIN_POLICY_CHECK_APPLICATION_ROOT_FLAG: u32 = 131072u32; pub const MICROSOFT_ROOT_CERT_CHAIN_POLICY_DISABLE_FLIGHT_ROOT_FLAG: u32 = 262144u32; pub const MICROSOFT_ROOT_CERT_CHAIN_POLICY_ENABLE_TEST_ROOT_FLAG: u32 = 65536u32; +pub const MSCRYPT_ECC_MAX_CURVE_NAME_LENGTH: u32 = 255u32; +pub const MSCRYPT_ECC_MAX_OID_LENGTH: u32 = 255u32; pub const MS_DEF_DH_SCHANNEL_PROV: windows_sys::core::PCWSTR = windows_sys::core::w!("Microsoft DH SChannel Cryptographic Provider"); pub const MS_DEF_DH_SCHANNEL_PROV_A: windows_sys::core::PCSTR = windows_sys::core::s!("Microsoft DH SChannel Cryptographic Provider"); pub const MS_DEF_DH_SCHANNEL_PROV_W: windows_sys::core::PCWSTR = windows_sys::core::w!("Microsoft DH SChannel Cryptographic Provider"); @@ -2631,6 +2839,7 @@ pub const MS_PRIMITIVE_PROVIDER: windows_sys::core::PCWSTR = windows_sys::core:: pub const MS_SCARD_PROV: windows_sys::core::PCWSTR = windows_sys::core::w!("Microsoft Base Smart Card Crypto Provider"); pub const MS_SCARD_PROV_A: windows_sys::core::PCSTR = windows_sys::core::s!("Microsoft Base Smart Card Crypto Provider"); pub const MS_SCARD_PROV_W: windows_sys::core::PCWSTR = windows_sys::core::w!("Microsoft Base Smart Card Crypto Provider"); +pub const MS_SCHANNEL_PROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("Microsoft SSL Protocol Provider"); pub const MS_SMART_CARD_KEY_STORAGE_PROVIDER: windows_sys::core::PCWSTR = windows_sys::core::w!("Microsoft Smart Card Key Storage Provider"); pub const MS_STRONG_PROV: windows_sys::core::PCWSTR = windows_sys::core::w!("Microsoft Strong Cryptographic Provider"); pub const MS_STRONG_PROV_A: windows_sys::core::PCSTR = windows_sys::core::s!("Microsoft Strong Cryptographic Provider"); @@ -2922,6 +3131,20 @@ pub const NCRYPT_SILENT_FLAG: NCRYPT_FLAGS = 64u32; pub const NCRYPT_SMARTCARD_GUID_PROPERTY: windows_sys::core::PCWSTR = windows_sys::core::w!("SmartCardGuid"); pub const NCRYPT_SP800108_CTR_HMAC_ALGORITHM: windows_sys::core::PCWSTR = windows_sys::core::w!("SP800_108_CTR_HMAC"); pub const NCRYPT_SP80056A_CONCAT_ALGORITHM: windows_sys::core::PCWSTR = windows_sys::core::w!("SP800_56A_CONCAT"); +pub const NCRYPT_SSL_CIPHER_LENGTHS_BLOCK_PADDING: u32 = 1u32; +pub const NCRYPT_SSL_CIPHER_SUITE_EX_VERSION: u32 = 1u32; +pub const NCRYPT_SSL_CLIENT_FLAG: u32 = 1u32; +pub const NCRYPT_SSL_EAP_FAST_ID: u32 = 3u32; +pub const NCRYPT_SSL_EAP_ID: u32 = 0u32; +pub const NCRYPT_SSL_EAP_PRF_FIELD: u32 = 255u32; +pub const NCRYPT_SSL_EAP_TTLSV0_CHLNG_ID: u32 = 2u32; +pub const NCRYPT_SSL_EAP_TTLSV0_ID: u32 = 1u32; +pub const NCRYPT_SSL_EXTERNAL_PSK_FLAG: u32 = 1u32; +pub const NCRYPT_SSL_MAX_NAME_SIZE: u32 = 64u32; +pub const NCRYPT_SSL_RESUMPTION_PSK_FLAG: u32 = 2u32; +pub const NCRYPT_SSL_SERVER_FLAG: u32 = 2u32; +pub const NCRYPT_SSL_SIGN_INCLUDE_HASHOID: u32 = 1u32; +pub const NCRYPT_SSL_SIGN_USE_PSS_PADDING: u32 = 2u32; pub const NCRYPT_TPM12_PROVIDER: u32 = 65536u32; pub const NCRYPT_TPM_LOADABLE_KEY_BLOB: windows_sys::core::PCWSTR = windows_sys::core::w!("PcpTpmProtectedKeyBlob"); pub const NCRYPT_TPM_LOADABLE_KEY_BLOB_MAGIC: u32 = 1297371211u32; @@ -2962,6 +3185,7 @@ pub const NETSCAPE_SMIME_CERT_TYPE: u32 = 32u32; pub const NETSCAPE_SSL_CA_CERT_TYPE: u32 = 4u32; pub const NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE: u32 = 128u32; pub const NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE: u32 = 64u32; +pub const NonRepudiationPin: SECRET_PURPOSE = 3i32; pub const OCSP_BASIC_BY_KEY_RESPONDER_ID: u32 = 2u32; pub const OCSP_BASIC_BY_NAME_RESPONDER_ID: u32 = 1u32; pub const OCSP_BASIC_GOOD_CERT_STATUS: u32 = 0u32; @@ -2981,6 +3205,13 @@ pub const OCSP_SUCCESSFUL_RESPONSE: u32 = 0u32; pub const OCSP_TRY_LATER_RESPONSE: u32 = 3u32; pub const OCSP_UNAUTHORIZED_RESPONSE: u32 = 6u32; pub const OPAQUEKEYBLOB: u32 = 9u32; +pub const PIN_CACHE_POLICY_CURRENT_VERSION: u32 = 6u32; +pub const PIN_CHANGE_FLAG_CHANGEPIN: u32 = 2u32; +pub const PIN_CHANGE_FLAG_UNBLOCK: u32 = 1u32; +pub const PIN_INFO_CURRENT_VERSION: u32 = 6u32; +pub const PIN_INFO_REQUIRE_SECURE_ENTRY: u32 = 1u32; +pub const PIN_SET_ALL_ROLES: u32 = 255u32; +pub const PIN_SET_NONE: u32 = 0u32; pub const PKCS12_ALLOW_OVERWRITE_KEY: CRYPT_KEY_FLAGS = 16384u32; pub const PKCS12_ALWAYS_CNG_KSP: CRYPT_KEY_FLAGS = 512u32; pub const PKCS12_CONFIG_REGPATH: windows_sys::core::PCWSTR = windows_sys::core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\PFX"); @@ -3106,14 +3337,25 @@ pub const PUBLICKEYBLOB: u32 = 6u32; pub const PUBLICKEYBLOBEX: u32 = 10u32; pub const PVK_TYPE_FILE_NAME: SIGNER_PRIVATE_KEY_CHOICE = 1u32; pub const PVK_TYPE_KEYCONTAINER: SIGNER_PRIVATE_KEY_CHOICE = 2u32; +pub const PinCacheAlwaysPrompt: PIN_CACHE_POLICY_TYPE = 3i32; +pub const PinCacheNone: PIN_CACHE_POLICY_TYPE = 2i32; +pub const PinCacheNormal: PIN_CACHE_POLICY_TYPE = 0i32; +pub const PinCacheTimed: PIN_CACHE_POLICY_TYPE = 1i32; +pub const PrimaryCardPin: SECRET_PURPOSE = 5i32; pub const RANDOM_PADDING: u32 = 2u32; pub const RECIPIENTPOLICYV1: u32 = 1u32; pub const RECIPIENTPOLICYV2: u32 = 2u32; pub const REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY: u32 = 2u32; pub const REPORT_NO_PRIVATE_KEY: u32 = 1u32; pub const REVOCATION_OID_CRL_REVOCATION: windows_sys::core::PCSTR = 1i32 as _; +pub const ROLE_ADMIN: u32 = 2u32; +pub const ROLE_EVERYONE: u32 = 0u32; +pub const ROLE_PIN_ALWAYS: u32 = 3u32; +pub const ROLE_PUK: u32 = 4u32; +pub const ROLE_USER: u32 = 1u32; pub const RSA1024BIT_KEY: u32 = 67108864u32; pub const RSA_CSP_PUBLICKEYBLOB: windows_sys::core::PCSTR = 19i32 as _; +pub const SCARD_PROVIDER_CARD_MODULE: u32 = 2147483649u32; pub const SCHANNEL_ENC_KEY: u32 = 1u32; pub const SCHANNEL_MAC_KEY: u32 = 0u32; pub const SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC: windows_sys::core::PCSTR = windows_sys::core::s!("SchemeDllRetrieveEncodedObjectW"); @@ -3144,12 +3386,23 @@ pub const SPC_INC_PE_DEBUG_INFO_FLAG: SIGNER_SIGN_FLAGS = 64u32; pub const SPC_INC_PE_IMPORT_ADDR_TABLE_FLAG: SIGNER_SIGN_FLAGS = 32u32; pub const SPC_INC_PE_PAGE_HASHES_FLAG: SIGNER_SIGN_FLAGS = 256u32; pub const SPC_INC_PE_RESOURCES_FLAG: SIGNER_SIGN_FLAGS = 128u32; +pub const SSL2_PROTOCOL_VERSION: u32 = 2u32; +pub const SSL3_PROTOCOL_VERSION: u32 = 768u32; +pub const SSL_CK_DES_192_EDE3_CBC_WITH_MD5: u32 = 458944u32; +pub const SSL_CK_DES_64_CBC_WITH_MD5: u32 = 393280u32; +pub const SSL_CK_IDEA_128_CBC_WITH_MD5: u32 = 327808u32; +pub const SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5: u32 = 262272u32; +pub const SSL_CK_RC2_128_CBC_WITH_MD5: u32 = 196736u32; +pub const SSL_CK_RC4_128_EXPORT40_WITH_MD5: u32 = 131200u32; +pub const SSL_CK_RC4_128_WITH_MD5: u32 = 65664u32; pub const SSL_ECCPUBLIC_BLOB: windows_sys::core::PCWSTR = windows_sys::core::w!("SSLECCPUBLICBLOB"); +pub const SSL_ECDSA_ALGORITHM: windows_sys::core::PCWSTR = windows_sys::core::w!("ECDSA"); pub const SSL_F12_ERROR_TEXT_LENGTH: u32 = 256u32; pub const SSL_HPKP_HEADER_COUNT: u32 = 2u32; pub const SSL_HPKP_PKP_HEADER_INDEX: u32 = 0u32; pub const SSL_HPKP_PKP_RO_HEADER_INDEX: u32 = 1u32; pub const SSL_KEY_PIN_ERROR_TEXT_LENGTH: u32 = 512u32; +pub const SSL_KEY_TYPE_PROPERTY: windows_sys::core::PCWSTR = windows_sys::core::w!("KEYTYPE"); pub const SSL_OBJECT_LOCATOR_CERT_VALIDATION_CONFIG_FUNC: windows_sys::core::PCSTR = windows_sys::core::s!("SslObjectLocatorInitializeCertValidationConfig"); pub const SSL_OBJECT_LOCATOR_ISSUER_LIST_FUNC: windows_sys::core::PCSTR = windows_sys::core::s!("SslObjectLocatorInitializeIssuerList"); pub const SSL_OBJECT_LOCATOR_PFX_FUNC: windows_sys::core::PCSTR = windows_sys::core::s!("SslObjectLocatorInitializePfx"); @@ -3187,6 +3440,64 @@ pub const TIME_VALID_OID_GET_CTL: windows_sys::core::PCSTR = 1i32 as _; pub const TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CERT: windows_sys::core::PCSTR = 4i32 as _; pub const TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CRL: windows_sys::core::PCSTR = 5i32 as _; pub const TIME_VALID_OID_GET_OBJECT_FUNC: windows_sys::core::PCSTR = windows_sys::core::s!("TimeValidDllGetObject"); +pub const TLS1_0_PROTOCOL_VERSION: u32 = 769u32; +pub const TLS1_1_PROTOCOL_VERSION: u32 = 770u32; +pub const TLS1_2_PROTOCOL_VERSION: u32 = 771u32; +pub const TLS1_3_PROTOCOL_VERSION: u32 = 772u32; +pub const TLS1_PROTOCOL_VERSION: u32 = 769u32; +pub const TLS_AES_128_GCM_SHA256: u32 = 4865u32; +pub const TLS_AES_256_GCM_SHA384: u32 = 4866u32; +pub const TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA: u32 = 99u32; +pub const TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA: u32 = 19u32; +pub const TLS_DHE_DSS_WITH_AES_128_CBC_SHA: u32 = 50u32; +pub const TLS_DHE_DSS_WITH_AES_128_CBC_SHA256: u32 = 64u32; +pub const TLS_DHE_DSS_WITH_AES_256_CBC_SHA: u32 = 56u32; +pub const TLS_DHE_DSS_WITH_AES_256_CBC_SHA256: u32 = 106u32; +pub const TLS_DHE_DSS_WITH_DES_CBC_SHA: u32 = 18u32; +pub const TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA: u32 = 22u32; +pub const TLS_DHE_RSA_WITH_AES_128_CBC_SHA: u32 = 51u32; +pub const TLS_DHE_RSA_WITH_AES_128_GCM_SHA256: u32 = 158u32; +pub const TLS_DHE_RSA_WITH_AES_256_CBC_SHA: u32 = 57u32; +pub const TLS_DHE_RSA_WITH_AES_256_GCM_SHA384: u32 = 159u32; +pub const TLS_ECC_P256_CURVE_KEY_TYPE: u32 = 23u32; +pub const TLS_ECC_P384_CURVE_KEY_TYPE: u32 = 24u32; +pub const TLS_ECC_P521_CURVE_KEY_TYPE: u32 = 25u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA: u32 = 49161u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256: u32 = 49187u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256: u32 = 49195u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA: u32 = 49162u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384: u32 = 49188u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384: u32 = 49196u32; +pub const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA: u32 = 49171u32; +pub const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256: u32 = 49191u32; +pub const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256: u32 = 49199u32; +pub const TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA: u32 = 49172u32; +pub const TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384: u32 = 49192u32; +pub const TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384: u32 = 49200u32; +pub const TLS_PSK_EXCHANGE: windows_sys::core::PCWSTR = windows_sys::core::w!("PSK"); +pub const TLS_PSK_WITH_AES_128_CBC_SHA256: u32 = 174u32; +pub const TLS_PSK_WITH_AES_128_GCM_SHA256: u32 = 168u32; +pub const TLS_PSK_WITH_AES_256_CBC_SHA384: u32 = 175u32; +pub const TLS_PSK_WITH_AES_256_GCM_SHA384: u32 = 169u32; +pub const TLS_PSK_WITH_NULL_SHA256: u32 = 176u32; +pub const TLS_PSK_WITH_NULL_SHA384: u32 = 177u32; +pub const TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA: u32 = 98u32; +pub const TLS_RSA_EXPORT1024_WITH_RC4_56_SHA: u32 = 100u32; +pub const TLS_RSA_EXPORT_WITH_RC4_40_MD5: u32 = 3u32; +pub const TLS_RSA_PSK_EXCHANGE: windows_sys::core::PCWSTR = windows_sys::core::w!("RSA_PSK"); +pub const TLS_RSA_WITH_3DES_EDE_CBC_SHA: u32 = 10u32; +pub const TLS_RSA_WITH_AES_128_CBC_SHA: u32 = 47u32; +pub const TLS_RSA_WITH_AES_128_CBC_SHA256: u32 = 60u32; +pub const TLS_RSA_WITH_AES_128_GCM_SHA256: u32 = 156u32; +pub const TLS_RSA_WITH_AES_256_CBC_SHA: u32 = 53u32; +pub const TLS_RSA_WITH_AES_256_CBC_SHA256: u32 = 61u32; +pub const TLS_RSA_WITH_AES_256_GCM_SHA384: u32 = 157u32; +pub const TLS_RSA_WITH_DES_CBC_SHA: u32 = 9u32; +pub const TLS_RSA_WITH_NULL_MD5: u32 = 1u32; +pub const TLS_RSA_WITH_NULL_SHA: u32 = 2u32; +pub const TLS_RSA_WITH_NULL_SHA256: u32 = 59u32; +pub const TLS_RSA_WITH_RC4_128_MD5: u32 = 4u32; +pub const TLS_RSA_WITH_RC4_128_SHA: u32 = 5u32; pub const TPM_RSA_SRK_SEAL_KEY: windows_sys::core::PCWSTR = windows_sys::core::w!("MICROSOFT_PCP_KSP_RSA_SEAL_KEY_3BD1C4BF-004E-4E2F-8A4D-0BF633DCB074"); pub const URL_OID_CERTIFICATE_CRL_DIST_POINT: windows_sys::core::PCSTR = 2i32 as _; pub const URL_OID_CERTIFICATE_CRL_DIST_POINT_AND_OCSP: windows_sys::core::PCSTR = 11i32 as _; @@ -3204,6 +3515,11 @@ pub const URL_OID_CTL_NEXT_UPDATE: windows_sys::core::PCSTR = 4i32 as _; pub const URL_OID_GET_OBJECT_URL_FUNC: windows_sys::core::PCSTR = windows_sys::core::s!("UrlDllGetObjectUrl"); pub const USAGE_MATCH_TYPE_AND: u32 = 0u32; pub const USAGE_MATCH_TYPE_OR: u32 = 1u32; +pub const UnblockOnlyPin: SECRET_PURPOSE = 6i32; +pub const UnknownAc: CARD_FILE_ACCESS_CONDITION = 4i32; +pub const UserCreateDeleteDirAc: CARD_DIRECTORY_ACCESS_CONDITION = 1i32; +pub const UserReadWriteAc: CARD_FILE_ACCESS_CONDITION = 5i32; +pub const UserWriteExecuteAc: CARD_FILE_ACCESS_CONDITION = 2i32; pub const X509_ALGORITHM_IDENTIFIER: windows_sys::core::PCSTR = 74i32 as _; pub const X509_ALTERNATE_NAME: windows_sys::core::PCSTR = 12i32 as _; pub const X509_ANY_STRING: i32 = 6i32; @@ -3273,7 +3589,12 @@ pub const cPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS_DEFAULT: u32 = 86400u32; pub const dwFORCE_KEY_PROTECTION_DISABLED: u32 = 0u32; pub const dwFORCE_KEY_PROTECTION_HIGH: u32 = 2u32; pub const dwFORCE_KEY_PROTECTION_USER_SELECT: u32 = 1u32; +pub const szBASE_CSP_DIR: windows_sys::core::PCSTR = windows_sys::core::s!("mscp"); +pub const szCACHE_FILE: windows_sys::core::PCSTR = windows_sys::core::s!("cardcf"); +pub const szCARD_IDENTIFIER_FILE: windows_sys::core::PCSTR = windows_sys::core::s!("cardid"); +pub const szCONTAINER_MAP_FILE: windows_sys::core::PCSTR = windows_sys::core::s!("cmapfile"); pub const szFORCE_KEY_PROTECTION: windows_sys::core::PCSTR = windows_sys::core::s!("ForceKeyProtection"); +pub const szINTERMEDIATE_CERTS_DIR: windows_sys::core::PCSTR = windows_sys::core::s!("mscerts"); pub const szKEY_CACHE_ENABLED: windows_sys::core::PCSTR = windows_sys::core::s!("CachePrivateKeys"); pub const szKEY_CACHE_SECONDS: windows_sys::core::PCSTR = windows_sys::core::s!("PrivateKeyLifetimeSeconds"); pub const szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS: windows_sys::core::PCSTR = windows_sys::core::s!("Software\\Policies\\Microsoft\\Cryptography"); @@ -3808,6 +4129,13 @@ pub const szOID_X957_SHA1DSA: windows_sys::core::PCSTR = windows_sys::core::s!(" pub const szOID_YESNO_TRUST_ATTR: windows_sys::core::PCSTR = windows_sys::core::s!("1.3.6.1.4.1.311.10.4.1"); pub const szPRIV_KEY_CACHE_MAX_ITEMS: windows_sys::core::PCSTR = windows_sys::core::s!("PrivKeyCacheMaxItems"); pub const szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS: windows_sys::core::PCSTR = windows_sys::core::s!("PrivKeyCachePurgeIntervalSeconds"); +pub const szROOT_STORE_FILE: windows_sys::core::PCSTR = windows_sys::core::s!("msroots"); +pub const szUSER_KEYEXCHANGE_CERT_PREFIX: windows_sys::core::PCSTR = windows_sys::core::s!("kxc"); +pub const szUSER_KEYEXCHANGE_PRIVATE_KEY_PREFIX: windows_sys::core::PCSTR = windows_sys::core::s!("kxs"); +pub const szUSER_KEYEXCHANGE_PUBLIC_KEY_PREFIX: windows_sys::core::PCSTR = windows_sys::core::s!("kxp"); +pub const szUSER_SIGNATURE_CERT_PREFIX: windows_sys::core::PCSTR = windows_sys::core::s!("ksc"); +pub const szUSER_SIGNATURE_PRIVATE_KEY_PREFIX: windows_sys::core::PCSTR = windows_sys::core::s!("kss"); +pub const szUSER_SIGNATURE_PUBLIC_KEY_PREFIX: windows_sys::core::PCSTR = windows_sys::core::s!("ksp"); pub const sz_CERT_STORE_PROV_COLLECTION: windows_sys::core::PCSTR = windows_sys::core::s!("Collection"); pub const sz_CERT_STORE_PROV_FILENAME: windows_sys::core::PCWSTR = windows_sys::core::w!("File"); pub const sz_CERT_STORE_PROV_FILENAME_W: windows_sys::core::PCSTR = windows_sys::core::s!("File"); @@ -3825,6 +4153,9 @@ pub const sz_CERT_STORE_PROV_SYSTEM: windows_sys::core::PCWSTR = windows_sys::co pub const sz_CERT_STORE_PROV_SYSTEM_REGISTRY: windows_sys::core::PCWSTR = windows_sys::core::w!("SystemRegistry"); pub const sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W: windows_sys::core::PCSTR = windows_sys::core::s!("SystemRegistry"); pub const sz_CERT_STORE_PROV_SYSTEM_W: windows_sys::core::PCSTR = windows_sys::core::s!("System"); +pub const wszCARD_USER_ADMIN: windows_sys::core::PCWSTR = windows_sys::core::w!("admin"); +pub const wszCARD_USER_EVERYONE: windows_sys::core::PCWSTR = windows_sys::core::w!("anonymous"); +pub const wszCARD_USER_USER: windows_sys::core::PCWSTR = windows_sys::core::w!("user"); pub const wszURI_CANONICALIZATION_C14N: windows_sys::core::PCWSTR = windows_sys::core::w!("http://www.w3.org/TR/2001/REC-xml-c14n-20010315"); pub const wszURI_CANONICALIZATION_C14NC: windows_sys::core::PCWSTR = windows_sys::core::w!("http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments"); pub const wszURI_CANONICALIZATION_EXSLUSIVE_C14N: windows_sys::core::PCWSTR = windows_sys::core::w!("http://www.w3.org/2001/10/xml-exc-c14n#"); @@ -3868,6 +4199,8 @@ pub type BCRYPT_QUERY_PROVIDER_MODE = u32; pub type BCRYPT_RESOLVE_PROVIDERS_FLAGS = u32; pub type BCRYPT_RSAKEY_BLOB_MAGIC = u32; pub type BCRYPT_TABLE = u32; +pub type CARD_DIRECTORY_ACCESS_CONDITION = i32; +pub type CARD_FILE_ACCESS_CONDITION = i32; pub type CASetupProperty = i32; pub type CEPSetupProperty = i32; pub type CERT_BIOMETRIC_DATA_TYPE = u32; @@ -3952,6 +4285,7 @@ pub type MSCEPSetupProperty = i32; pub type NCRYPT_ALGORITHM_NAME_CLASS = u32; pub type NCRYPT_FLAGS = u32; pub type NCRYPT_OPERATION = u32; +pub type PIN_CACHE_POLICY_TYPE = i32; #[repr(transparent)] #[derive(Copy, Clone)] pub struct PaddingMode(pub i32); @@ -3962,6 +4296,8 @@ impl PaddingMode { pub const ANSIX923: Self = Self(4i32); pub const ISO10126: Self = Self(5i32); } +pub type SECRET_PURPOSE = i32; +pub type SECRET_TYPE = i32; pub type SIGNER_CERT_CHOICE = u32; pub type SIGNER_CERT_POLICY = u32; pub type SIGNER_PRIVATE_KEY_CHOICE = u32; @@ -3999,6 +4335,24 @@ pub struct BCRYPT_ALGORITHM_IDENTIFIER { pub type BCRYPT_ALG_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] +pub struct BCRYPT_ASYMMETRIC_ENCRYPTION_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKeyPair: BCryptGenerateKeyPairFn, + pub FinalizeKeyPair: BCryptFinalizeKeyPairFn, + pub Encrypt: BCryptEncryptFn, + pub Decrypt: BCryptDecryptFn, + pub ImportKeyPair: BCryptImportKeyPairFn, + pub ExportKey: BCryptExportKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, + pub SignHash: BCryptSignHashFn, + pub VerifySignature: BCryptVerifySignatureFn, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { pub cbSize: u32, pub dwInfoVersion: u32, @@ -4016,6 +4370,22 @@ pub struct BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { } #[repr(C)] #[derive(Clone, Copy)] +pub struct BCRYPT_CIPHER_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKey: BCryptGenerateSymmetricKeyFn, + pub Encrypt: BCryptEncryptFn, + pub Decrypt: BCryptDecryptFn, + pub ImportKey: BCryptImportKeyFn, + pub ExportKey: BCryptExportKeyFn, + pub DuplicateKey: BCryptDuplicateKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct BCRYPT_DH_KEY_BLOB { pub dwMagic: BCRYPT_DH_KEY_BLOB_MAGIC, pub cbKey: u32, @@ -4093,7 +4463,34 @@ pub struct BCRYPT_ECC_CURVE_NAMES { pub dwEccCurveNames: u32, pub pEccCurveNames: *mut windows_sys::core::PWSTR, } +#[repr(C)] +#[derive(Clone, Copy)] +pub struct BCRYPT_ECC_PARAMETER_HEADER { + pub dwVersion: u32, + pub dwCurveType: ECC_CURVE_TYPE_ENUM, + pub dwCurveGenerationAlgId: ECC_CURVE_ALG_ID_ENUM, + pub cbFieldLength: u32, + pub cbSubgroupOrder: u32, + pub cbCofactor: u32, + pub cbSeed: u32, +} pub type BCRYPT_HANDLE = *mut core::ffi::c_void; +#[repr(C)] +#[derive(Clone, Copy)] +pub struct BCRYPT_HASH_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub CreateHash: BCryptCreateHashFn, + pub HashData: BCryptHashDataFn, + pub FinishHash: BCryptFinishHashFn, + pub DuplicateHash: BCryptDuplicateHashFn, + pub DestroyHash: BCryptDestroyHashFn, + pub CreateMultiHash: BCryptCreateMultiHashFn, + pub ProcessMultiOperations: BCryptProcessMultiOperationsFn, +} pub type BCRYPT_HASH_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] @@ -4113,6 +4510,21 @@ pub struct BCRYPT_KEY_DATA_BLOB_HEADER { pub dwVersion: u32, pub cbKeyData: u32, } +#[repr(C)] +#[derive(Clone, Copy)] +pub struct BCRYPT_KEY_DERIVATION_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKey: BCryptGenerateSymmetricKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, + pub KeyDerivation: BCryptKeyDerivationFn, + pub ExportKey: BCryptExportKeyFn, + pub ImportKey: BCryptImportKeyFn, + pub DuplicateKey: BCryptDuplicateKeyFn, +} pub type BCRYPT_KEY_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] @@ -4172,6 +4584,16 @@ pub struct BCRYPT_PSS_PADDING_INFO { } #[repr(C)] #[derive(Clone, Copy)] +pub struct BCRYPT_RNG_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenRandom: BCryptGenRandomFn, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct BCRYPT_RSAKEY_BLOB { pub Magic: BCRYPT_RSAKEY_BLOB_MAGIC, pub BitLength: u32, @@ -4180,9 +4602,42 @@ pub struct BCRYPT_RSAKEY_BLOB { pub cbPrime1: u32, pub cbPrime2: u32, } +#[repr(C)] +#[derive(Clone, Copy)] +pub struct BCRYPT_SECRET_AGREEMENT_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub SecretAgreement: BCryptSecretAgreementFn, + pub DeriveKey: BCryptDeriveKeyFn, + pub DestroySecret: BCryptDestroySecretFn, + pub GenerateKeyPair: BCryptGenerateKeyPairFn, + pub FinalizeKeyPair: BCryptFinalizeKeyPairFn, + pub ImportKeyPair: BCryptImportKeyPairFn, + pub ExportKey: BCryptExportKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, +} pub type BCRYPT_SECRET_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] +pub struct BCRYPT_SIGNATURE_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKeyPair: BCryptGenerateKeyPairFn, + pub FinalizeKeyPair: BCryptFinalizeKeyPairFn, + pub SignHash: BCryptSignHashFn, + pub VerifySignature: BCryptVerifySignatureFn, + pub ImportKeyPair: BCryptImportKeyPairFn, + pub ExportKey: BCryptExportKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct BCryptBuffer { pub cbBuffer: u32, pub BufferType: u32, @@ -4195,6 +4650,216 @@ pub struct BCryptBufferDesc { pub cBuffers: u32, pub pBuffers: *mut BCryptBuffer, } +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_AUTHENTICATE { + pub dwVersion: u32, + pub dwFlags: u32, + pub PinId: u32, + pub cbPinData: u32, + pub pbPinData: [u8; 1], +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_AUTHENTICATE_RESPONSE { + pub dwVersion: u32, + pub cbSessionPin: u32, + pub cAttemptsRemaining: u32, + pub pbSessionPin: [u8; 1], +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_CACHE_FILE_FORMAT { + pub bVersion: u8, + pub bPinsFreshness: u8, + pub wContainersFreshness: u16, + pub wFilesFreshness: u16, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_CAPABILITIES { + pub dwVersion: u32, + pub fCertificateCompression: super::super::Foundation::BOOL, + pub fKeyGen: super::super::Foundation::BOOL, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_CHANGE_AUTHENTICATOR { + pub dwVersion: u32, + pub dwFlags: u32, + pub dwAuthenticatingPinId: u32, + pub cbAuthenticatingPinData: u32, + pub dwTargetPinId: u32, + pub cbTargetData: u32, + pub cRetryCount: u32, + pub pbData: [u8; 1], +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_CHANGE_AUTHENTICATOR_RESPONSE { + pub dwVersion: u32, + pub cAttemptsRemaining: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_DATA { + pub dwVersion: u32, + pub pbAtr: *mut u8, + pub cbAtr: u32, + pub pwszCardName: windows_sys::core::PWSTR, + pub pfnCspAlloc: PFN_CSP_ALLOC, + pub pfnCspReAlloc: PFN_CSP_REALLOC, + pub pfnCspFree: PFN_CSP_FREE, + pub pfnCspCacheAddFile: PFN_CSP_CACHE_ADD_FILE, + pub pfnCspCacheLookupFile: PFN_CSP_CACHE_LOOKUP_FILE, + pub pfnCspCacheDeleteFile: PFN_CSP_CACHE_DELETE_FILE, + pub pvCacheContext: *mut core::ffi::c_void, + pub pfnCspPadData: PFN_CSP_PAD_DATA, + pub hSCardCtx: usize, + pub hScard: usize, + pub pvVendorSpecific: *mut core::ffi::c_void, + pub pfnCardDeleteContext: PFN_CARD_DELETE_CONTEXT, + pub pfnCardQueryCapabilities: PFN_CARD_QUERY_CAPABILITIES, + pub pfnCardDeleteContainer: PFN_CARD_DELETE_CONTAINER, + pub pfnCardCreateContainer: PFN_CARD_CREATE_CONTAINER, + pub pfnCardGetContainerInfo: PFN_CARD_GET_CONTAINER_INFO, + pub pfnCardAuthenticatePin: PFN_CARD_AUTHENTICATE_PIN, + pub pfnCardGetChallenge: PFN_CARD_GET_CHALLENGE, + pub pfnCardAuthenticateChallenge: PFN_CARD_AUTHENTICATE_CHALLENGE, + pub pfnCardUnblockPin: PFN_CARD_UNBLOCK_PIN, + pub pfnCardChangeAuthenticator: PFN_CARD_CHANGE_AUTHENTICATOR, + pub pfnCardDeauthenticate: PFN_CARD_DEAUTHENTICATE, + pub pfnCardCreateDirectory: PFN_CARD_CREATE_DIRECTORY, + pub pfnCardDeleteDirectory: PFN_CARD_DELETE_DIRECTORY, + pub pvUnused3: *mut core::ffi::c_void, + pub pvUnused4: *mut core::ffi::c_void, + pub pfnCardCreateFile: PFN_CARD_CREATE_FILE, + pub pfnCardReadFile: PFN_CARD_READ_FILE, + pub pfnCardWriteFile: PFN_CARD_WRITE_FILE, + pub pfnCardDeleteFile: PFN_CARD_DELETE_FILE, + pub pfnCardEnumFiles: PFN_CARD_ENUM_FILES, + pub pfnCardGetFileInfo: PFN_CARD_GET_FILE_INFO, + pub pfnCardQueryFreeSpace: PFN_CARD_QUERY_FREE_SPACE, + pub pfnCardQueryKeySizes: PFN_CARD_QUERY_KEY_SIZES, + pub pfnCardSignData: PFN_CARD_SIGN_DATA, + pub pfnCardRSADecrypt: PFN_CARD_RSA_DECRYPT, + pub pfnCardConstructDHAgreement: PFN_CARD_CONSTRUCT_DH_AGREEMENT, + pub pfnCardDeriveKey: PFN_CARD_DERIVE_KEY, + pub pfnCardDestroyDHAgreement: PFN_CARD_DESTROY_DH_AGREEMENT, + pub pfnCspGetDHAgreement: PFN_CSP_GET_DH_AGREEMENT, + pub pfnCardGetChallengeEx: PFN_CARD_GET_CHALLENGE_EX, + pub pfnCardAuthenticateEx: PFN_CARD_AUTHENTICATE_EX, + pub pfnCardChangeAuthenticatorEx: PFN_CARD_CHANGE_AUTHENTICATOR_EX, + pub pfnCardDeauthenticateEx: PFN_CARD_DEAUTHENTICATE_EX, + pub pfnCardGetContainerProperty: PFN_CARD_GET_CONTAINER_PROPERTY, + pub pfnCardSetContainerProperty: PFN_CARD_SET_CONTAINER_PROPERTY, + pub pfnCardGetProperty: PFN_CARD_GET_PROPERTY, + pub pfnCardSetProperty: PFN_CARD_SET_PROPERTY, + pub pfnCspUnpadData: PFN_CSP_UNPAD_DATA, + pub pfnMDImportSessionKey: PFN_MD_IMPORT_SESSION_KEY, + pub pfnMDEncryptData: PFN_MD_ENCRYPT_DATA, + pub pfnCardImportSessionKey: PFN_CARD_IMPORT_SESSION_KEY, + pub pfnCardGetSharedKeyHandle: PFN_CARD_GET_SHARED_KEY_HANDLE, + pub pfnCardGetAlgorithmProperty: PFN_CARD_GET_ALGORITHM_PROPERTY, + pub pfnCardGetKeyProperty: PFN_CARD_GET_KEY_PROPERTY, + pub pfnCardSetKeyProperty: PFN_CARD_SET_KEY_PROPERTY, + pub pfnCardDestroyKey: PFN_CARD_DESTROY_KEY, + pub pfnCardProcessEncryptedData: PFN_CARD_PROCESS_ENCRYPTED_DATA, + pub pfnCardCreateContainerEx: PFN_CARD_CREATE_CONTAINER_EX, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_DERIVE_KEY { + pub dwVersion: u32, + pub dwFlags: u32, + pub pwszKDF: windows_sys::core::PWSTR, + pub bSecretAgreementIndex: u8, + pub pParameterList: *mut core::ffi::c_void, + pub pbDerivedKey: *mut u8, + pub cbDerivedKey: u32, + pub pwszAlgId: windows_sys::core::PWSTR, + pub dwKeyLen: u32, + pub hKey: usize, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_DH_AGREEMENT_INFO { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub dwFlags: u32, + pub dwPublicKey: u32, + pub pbPublicKey: *mut u8, + pub pbReserved: *mut u8, + pub cbReserved: u32, + pub bSecretAgreementIndex: u8, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_ENCRYPTED_DATA { + pub pbEncryptedData: *mut u8, + pub cbEncryptedData: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_FILE_INFO { + pub dwVersion: u32, + pub cbFileSize: u32, + pub AccessCondition: CARD_FILE_ACCESS_CONDITION, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_FREE_SPACE_INFO { + pub dwVersion: u32, + pub dwBytesAvailable: u32, + pub dwKeyContainersAvailable: u32, + pub dwMaxKeyContainers: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_IMPORT_KEYPAIR { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub PinId: u32, + pub dwKeySpec: u32, + pub dwKeySize: u32, + pub cbInput: u32, + pub pbInput: [u8; 1], +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_KEY_SIZES { + pub dwVersion: u32, + pub dwMinimumBitlen: u32, + pub dwDefaultBitlen: u32, + pub dwMaximumBitlen: u32, + pub dwIncrementalBitlen: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_RSA_DECRYPT_INFO { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub dwKeySpec: u32, + pub pbData: *mut u8, + pub cbData: u32, + pub pPaddingInfo: *mut core::ffi::c_void, + pub dwPaddingType: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CARD_SIGNING_INFO { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub dwKeySpec: u32, + pub dwSigningFlags: u32, + pub aiHashAlg: ALG_ID, + pub pbData: *mut u8, + pub cbData: u32, + pub pbSignedData: *mut u8, + pub cbSignedData: u32, + pub pPaddingInfo: *mut core::ffi::c_void, + pub dwPaddingType: u32, +} pub const CCertSrvSetup: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x961f180f_f55c_413d_a9b3_7d2af4d8e42f); pub const CCertSrvSetupKeyInformation: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x38373906_5433_4633_b0fb_29b7e78262e1); pub const CCertificateEnrollmentPolicyServerSetup: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xafe2fa32_41b1_459d_a5de_49add8a72182); @@ -5029,6 +5694,31 @@ pub struct CLAIMLIST { } #[repr(C)] #[derive(Clone, Copy)] +pub struct CLMD_PIV_CERT_DATA { + pub dwVersion: u32, + pub dwCertTag: u32, + pub pbCert: *mut u8, + pub cbCert: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CLMD_PIV_GENERATE_ASYMMETRIC_KEY { + pub dwVersion: u32, + pub bAlgorithmId: u8, + pub bKeyId: u8, + pub pbKey: *mut u8, + pub cbKey: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CLMD_PIV_PUBLIC_KEY_DATA { + pub dwVersion: u32, + pub bKeyId: u8, + pub pbPublicKey: *mut u8, + pub cbPublicKey: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct CMC_ADD_ATTRIBUTES_INFO { pub dwCmcDataReference: u32, pub cCertReference: u32, @@ -5551,6 +6241,25 @@ pub struct CMS_KEY_INFO { } #[repr(C)] #[derive(Clone, Copy)] +pub struct CONTAINER_INFO { + pub dwVersion: u32, + pub dwReserved: u32, + pub cbSigPublicKey: u32, + pub pbSigPublicKey: *mut u8, + pub cbKeyExPublicKey: u32, + pub pbKeyExPublicKey: *mut u8, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct CONTAINER_MAP_RECORD { + pub wszGuid: [u16; 40], + pub bFlags: u8, + pub bReserved: u8, + pub wSigKeySizeBits: u16, + pub wKeyExchangeKeySizeBits: u16, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct CPS_URLS { pub pszURL: windows_sys::core::PWSTR, pub pAlgorithm: *mut CRYPT_ALGORITHM_IDENTIFIER, @@ -6756,6 +7465,13 @@ pub struct INFORMATIONCARD_TRANSFORM_CRYPTO_PARAMETERS { } #[repr(C)] #[derive(Clone, Copy)] +pub struct InFileSignatureResource { + pub dwVersion: u32, + pub dwCrcOffset: u32, + pub rgbSignature: [u8; 88], +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct KEY_TYPE_SUBTYPE { pub dwKeySpec: u32, pub Type: windows_sys::core::GUID, @@ -6832,6 +7548,40 @@ pub struct NCRYPT_KEY_BLOB_HEADER { pub type NCRYPT_KEY_HANDLE = usize; #[repr(C)] #[derive(Clone, Copy)] +pub struct NCRYPT_KEY_STORAGE_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenProvider: NCryptOpenStorageProviderFn, + pub OpenKey: NCryptOpenKeyFn, + pub CreatePersistedKey: NCryptCreatePersistedKeyFn, + pub GetProviderProperty: NCryptGetProviderPropertyFn, + pub GetKeyProperty: NCryptGetKeyPropertyFn, + pub SetProviderProperty: NCryptSetProviderPropertyFn, + pub SetKeyProperty: NCryptSetKeyPropertyFn, + pub FinalizeKey: NCryptFinalizeKeyFn, + pub DeleteKey: NCryptDeleteKeyFn, + pub FreeProvider: NCryptFreeProviderFn, + pub FreeKey: NCryptFreeKeyFn, + pub FreeBuffer: NCryptFreeBufferFn, + pub Encrypt: NCryptEncryptFn, + pub Decrypt: NCryptDecryptFn, + pub IsAlgSupported: NCryptIsAlgSupportedFn, + pub EnumAlgorithms: NCryptEnumAlgorithmsFn, + pub EnumKeys: NCryptEnumKeysFn, + pub ImportKey: NCryptImportKeyFn, + pub ExportKey: NCryptExportKeyFn, + pub SignHash: NCryptSignHashFn, + pub VerifySignature: NCryptVerifySignatureFn, + pub PromptUser: NCryptPromptUserFn, + pub NotifyChangeKey: NCryptNotifyChangeKeyFn, + pub SecretAgreement: NCryptSecretAgreementFn, + pub DeriveKey: NCryptDeriveKeyFn, + pub FreeSecret: NCryptFreeSecretFn, + pub KeyDerivation: NCryptKeyDerivationFn, + pub CreateClaim: NCryptCreateClaimFn, + pub VerifyClaim: NCryptVerifyClaimFn, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct NCRYPT_PCP_HMAC_AUTH_SIGNATURE_INFO { pub dwVersion: u32, pub iExpiration: i32, @@ -6885,6 +7635,108 @@ pub type NCRYPT_PROV_HANDLE = usize; pub type NCRYPT_SECRET_HANDLE = usize; #[repr(C)] #[derive(Clone, Copy)] +pub struct NCRYPT_SSL_CIPHER_LENGTHS { + pub cbLength: u32, + pub dwHeaderLen: u32, + pub dwFixedTrailerLen: u32, + pub dwMaxVariableTrailerLen: u32, + pub dwFlags: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct NCRYPT_SSL_CIPHER_SUITE { + pub dwProtocol: u32, + pub dwCipherSuite: u32, + pub dwBaseCipherSuite: u32, + pub szCipherSuite: [u16; 64], + pub szCipher: [u16; 64], + pub dwCipherLen: u32, + pub dwCipherBlockLen: u32, + pub szHash: [u16; 64], + pub dwHashLen: u32, + pub szExchange: [u16; 64], + pub dwMinExchangeLen: u32, + pub dwMaxExchangeLen: u32, + pub szCertificate: [u16; 64], + pub dwKeyType: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct NCRYPT_SSL_CIPHER_SUITE_EX { + pub dwVersion: u32, + pub dwProtocol: u32, + pub dwCipherSuite: u32, + pub dwBaseCipherSuite: u32, + pub szCipherSuite: [u16; 64], + pub szCipher: [u16; 64], + pub dwCipherLen: u32, + pub dwCipherBlockLen: u32, + pub szHash: [u16; 64], + pub dwHashLen: u32, + pub szExchange: [u16; 64], + pub dwMinExchangeLen: u32, + pub dwMaxExchangeLen: u32, + pub szCertificate: [u16; 64], + pub dwKeyType: u32, + pub szCipherMode: [u16; 64], +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct NCRYPT_SSL_ECC_CURVE { + pub szCurveName: [u16; 255], + pub szOID: [i8; 255], + pub dwPublicKeyLength: u32, + pub dwCurveType: u32, + pub dwFlags: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct NCRYPT_SSL_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub ComputeClientAuthHash: SslComputeClientAuthHashFn, + pub ComputeEapKeyBlock: SslComputeEapKeyBlockFn, + pub ComputeFinishedHash: SslComputeFinishedHashFn, + pub CreateEphemeralKey: SslCreateEphemeralKeyFn, + pub CreateHandshakeHash: SslCreateHandshakeHashFn, + pub DecryptPacket: SslDecryptPacketFn, + pub EncryptPacket: SslEncryptPacketFn, + pub EnumCipherSuites: SslEnumCipherSuitesFn, + pub ExportKey: SslExportKeyFn, + pub FreeBuffer: SslFreeBufferFn, + pub FreeObject: SslFreeObjectFn, + pub GenerateMasterKey: SslGenerateMasterKeyFn, + pub GenerateSessionKeys: SslGenerateSessionKeysFn, + pub GetKeyProperty: SslGetKeyPropertyFn, + pub GetProviderProperty: SslGetProviderPropertyFn, + pub HashHandshake: SslHashHandshakeFn, + pub ImportMasterKey: SslImportMasterKeyFn, + pub ImportKey: SslImportKeyFn, + pub LookupCipherSuiteInfo: SslLookupCipherSuiteInfoFn, + pub OpenPrivateKey: SslOpenPrivateKeyFn, + pub OpenProvider: SslOpenProviderFn, + pub SignHash: SslSignHashFn, + pub VerifySignature: SslVerifySignatureFn, + pub LookupCipherLengths: SslLookupCipherLengthsFn, + pub CreateClientAuthHash: SslCreateClientAuthHashFn, + pub GetCipherSuitePRFHashAlgorithm: SslGetCipherSuitePRFHashAlgorithmFn, + pub ComputeSessionHash: SslComputeSessionHashFn, + pub GeneratePreMasterKey: SslGeneratePreMasterKeyFn, + pub EnumEccCurves: SslEnumEccCurvesFn, + pub ExportKeyingMaterial: SslExportKeyingMaterialFn, + pub ExtractEarlyKey: SslExtractEarlyKeyFn, + pub ExtractHandshakeKey: SslExtractHandshakeKeyFn, + pub ExtractMasterKey: SslExtractMasterKeyFn, + pub ExpandTrafficKeys: SslExpandTrafficKeysFn, + pub ExpandWriteKey: SslExpandWriteKeyFn, + pub ExpandExporterMasterKey: SslExpandExporterMasterKeyFn, + pub EnumCipherSuitesEx: SslEnumCipherSuitesExFn, + pub ExpandResumptionMasterKey: SslExpandResumptionMasterKeyFn, + pub DuplicateTranscriptHash: SslDuplicateTranscriptHashFn, + pub ExpandBinderKey: SslExpandBinderKeyFn, + pub ExpandPreSharedKey: SslExpandPreSharedKeyFn, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct NCRYPT_SUPPORTED_LENGTHS { pub dwMinLength: u32, pub dwMaxLength: u32, @@ -6921,6 +7773,15 @@ pub struct NCRYPT_UI_POLICY { } #[repr(C)] #[derive(Clone, Copy)] +pub struct NCRYPT_UI_POLICY_BLOB { + pub dwVersion: u32, + pub dwFlags: u32, + pub cbCreationTitle: u32, + pub cbFriendlyName: u32, + pub cbDescription: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS { pub Version: u32, pub TrustletId: u64, @@ -7054,6 +7915,33 @@ pub struct OCSP_SIGNED_REQUEST_INFO { } #[repr(C)] #[derive(Clone, Copy)] +pub struct OFFLOAD_PRIVATE_KEY { + pub dwVersion: u32, + pub cbPrime1: u32, + pub cbPrime2: u32, + pub pbPrime1: *mut u8, + pub pbPrime2: *mut u8, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct PIN_CACHE_POLICY { + pub dwVersion: u32, + pub PinCachePolicyType: PIN_CACHE_POLICY_TYPE, + pub dwPinCachePolicyInfo: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct PIN_INFO { + pub dwVersion: u32, + pub PinType: SECRET_TYPE, + pub PinPurpose: SECRET_PURPOSE, + pub dwChangePermission: u32, + pub dwUnblockPermission: u32, + pub PinCachePolicy: PIN_CACHE_POLICY, + pub dwFlags: u32, +} +#[repr(C)] +#[derive(Clone, Copy)] pub struct PKCS12_PBES2_EXPORT_PARAMS { pub dwSize: u32, pub hNcryptDescriptor: *mut core::ffi::c_void, @@ -7346,6 +8234,62 @@ pub struct SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_STATUS { pub lError: i32, pub wszErrorText: [u16; 512], } +#[repr(C)] +#[derive(Clone, Copy)] +pub struct VTableProvStruc { + pub Version: u32, + pub FuncVerifyImage: CRYPT_VERIFY_IMAGE_A, + pub FuncReturnhWnd: CRYPT_RETURN_HWND, + pub dwProvType: u32, + pub pbContextInfo: *mut u8, + pub cbContextInfo: u32, + pub pszProvName: windows_sys::core::PSTR, +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct VTableProvStrucW { + pub Version: u32, + pub FuncVerifyImage: CRYPT_VERIFY_IMAGE_W, + pub FuncReturnhWnd: CRYPT_RETURN_HWND, + pub dwProvType: u32, + pub pbContextInfo: *mut u8, + pub cbContextInfo: u32, + pub pszProvName: windows_sys::core::PWSTR, +} +pub type BCryptCloseAlgorithmProviderFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptCreateHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptCreateMultiHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDecryptFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDeriveKeyCapiFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDeriveKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDeriveKeyPBKDF2Fn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDestroyHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDestroyKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDestroySecretFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDuplicateHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDuplicateKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptEncryptFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptExportKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptFinalizeKeyPairFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptFinishHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptFreeBufferFn = Option; +pub type BCryptGenRandomFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptGenerateKeyPairFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptGenerateSymmetricKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptGetPropertyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptHashDataFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptImportKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptImportKeyPairFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptKeyDerivationFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptOpenAlgorithmProviderFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptProcessMultiOperationsFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptSecretAgreementFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptSetPropertyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptSignHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptVerifySignatureFn = Option super::super::Foundation::NTSTATUS>; +pub type CRYPT_RETURN_HWND = Option; +pub type CRYPT_VERIFY_IMAGE_A = Option super::super::Foundation::BOOL>; +pub type CRYPT_VERIFY_IMAGE_W = Option super::super::Foundation::BOOL>; pub type CryptXmlDllCloseDigest = Option windows_sys::core::HRESULT>; pub type CryptXmlDllCreateDigest = Option windows_sys::core::HRESULT>; pub type CryptXmlDllCreateKey = Option windows_sys::core::HRESULT>; @@ -7357,6 +8301,45 @@ pub type CryptXmlDllGetAlgorithmInfo = Option windows_sys::core::HRESULT>; pub type CryptXmlDllSignData = Option windows_sys::core::HRESULT>; pub type CryptXmlDllVerifySignature = Option windows_sys::core::HRESULT>; +pub type GetAsymmetricEncryptionInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetCipherInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetHashInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetKeyDerivationInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetKeyStorageInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetRngInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetSChannelInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetSecretAgreementInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetSignatureInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type NCryptCreateClaimFn = Option windows_sys::core::HRESULT>; +pub type NCryptCreatePersistedKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptDecryptFn = Option windows_sys::core::HRESULT>; +pub type NCryptDeleteKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptDeriveKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptEncryptFn = Option windows_sys::core::HRESULT>; +pub type NCryptEnumAlgorithmsFn = Option windows_sys::core::HRESULT>; +pub type NCryptEnumKeysFn = Option windows_sys::core::HRESULT>; +pub type NCryptEnumStorageProvidersFn = Option windows_sys::core::HRESULT>; +pub type NCryptExportKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptFinalizeKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptFreeBufferFn = Option windows_sys::core::HRESULT>; +pub type NCryptFreeKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptFreeProviderFn = Option windows_sys::core::HRESULT>; +pub type NCryptFreeSecretFn = Option windows_sys::core::HRESULT>; +pub type NCryptGetKeyPropertyFn = Option windows_sys::core::HRESULT>; +pub type NCryptGetProviderPropertyFn = Option windows_sys::core::HRESULT>; +pub type NCryptImportKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptIsAlgSupportedFn = Option windows_sys::core::HRESULT>; +pub type NCryptKeyDerivationFn = Option windows_sys::core::HRESULT>; +pub type NCryptNotifyChangeKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptOpenKeyFn = Option windows_sys::core::HRESULT>; +pub type NCryptOpenStorageProviderFn = Option windows_sys::core::HRESULT>; +pub type NCryptPromptUserFn = Option windows_sys::core::HRESULT>; +pub type NCryptSecretAgreementFn = Option windows_sys::core::HRESULT>; +pub type NCryptSetKeyPropertyFn = Option windows_sys::core::HRESULT>; +pub type NCryptSetProviderPropertyFn = Option windows_sys::core::HRESULT>; +pub type NCryptSignHashFn = Option windows_sys::core::HRESULT>; +pub type NCryptVerifyClaimFn = Option windows_sys::core::HRESULT>; +pub type NCryptVerifySignatureFn = Option windows_sys::core::HRESULT>; pub type PCRYPT_DECRYPT_PRIVATE_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PCRYPT_RESOLVE_HCRYPTPROV_FUNC = Option super::super::Foundation::BOOL>; @@ -7367,6 +8350,49 @@ pub type PFN_AUTHENTICODE_DIGEST_SIGN_EX = Option windows_sys::core::HRESULT>; pub type PFN_AUTHENTICODE_DIGEST_SIGN_WITHFILEHANDLE = Option windows_sys::core::HRESULT>; pub type PFN_CANCEL_ASYNC_RETRIEVAL_FUNC = Option super::super::Foundation::BOOL>; +pub type PFN_CARD_ACQUIRE_CONTEXT = Option u32>; +pub type PFN_CARD_AUTHENTICATE_CHALLENGE = Option u32>; +pub type PFN_CARD_AUTHENTICATE_EX = Option u32>; +pub type PFN_CARD_AUTHENTICATE_PIN = Option u32>; +pub type PFN_CARD_CHANGE_AUTHENTICATOR = Option u32>; +pub type PFN_CARD_CHANGE_AUTHENTICATOR_EX = Option u32>; +pub type PFN_CARD_CONSTRUCT_DH_AGREEMENT = Option u32>; +pub type PFN_CARD_CREATE_CONTAINER = Option u32>; +pub type PFN_CARD_CREATE_CONTAINER_EX = Option u32>; +pub type PFN_CARD_CREATE_DIRECTORY = Option u32>; +pub type PFN_CARD_CREATE_FILE = Option u32>; +pub type PFN_CARD_DEAUTHENTICATE = Option u32>; +pub type PFN_CARD_DEAUTHENTICATE_EX = Option u32>; +pub type PFN_CARD_DELETE_CONTAINER = Option u32>; +pub type PFN_CARD_DELETE_CONTEXT = Option u32>; +pub type PFN_CARD_DELETE_DIRECTORY = Option u32>; +pub type PFN_CARD_DELETE_FILE = Option u32>; +pub type PFN_CARD_DERIVE_KEY = Option u32>; +pub type PFN_CARD_DESTROY_DH_AGREEMENT = Option u32>; +pub type PFN_CARD_DESTROY_KEY = Option u32>; +pub type PFN_CARD_ENUM_FILES = Option u32>; +pub type PFN_CARD_GET_ALGORITHM_PROPERTY = Option u32>; +pub type PFN_CARD_GET_CHALLENGE = Option u32>; +pub type PFN_CARD_GET_CHALLENGE_EX = Option u32>; +pub type PFN_CARD_GET_CONTAINER_INFO = Option u32>; +pub type PFN_CARD_GET_CONTAINER_PROPERTY = Option u32>; +pub type PFN_CARD_GET_FILE_INFO = Option u32>; +pub type PFN_CARD_GET_KEY_PROPERTY = Option u32>; +pub type PFN_CARD_GET_PROPERTY = Option u32>; +pub type PFN_CARD_GET_SHARED_KEY_HANDLE = Option u32>; +pub type PFN_CARD_IMPORT_SESSION_KEY = Option u32>; +pub type PFN_CARD_PROCESS_ENCRYPTED_DATA = Option u32>; +pub type PFN_CARD_QUERY_CAPABILITIES = Option u32>; +pub type PFN_CARD_QUERY_FREE_SPACE = Option u32>; +pub type PFN_CARD_QUERY_KEY_SIZES = Option u32>; +pub type PFN_CARD_READ_FILE = Option u32>; +pub type PFN_CARD_RSA_DECRYPT = Option u32>; +pub type PFN_CARD_SET_CONTAINER_PROPERTY = Option u32>; +pub type PFN_CARD_SET_KEY_PROPERTY = Option u32>; +pub type PFN_CARD_SET_PROPERTY = Option u32>; +pub type PFN_CARD_SIGN_DATA = Option u32>; +pub type PFN_CARD_UNBLOCK_PIN = Option u32>; +pub type PFN_CARD_WRITE_FILE = Option u32>; pub type PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK = Option super::super::Foundation::BOOL>; pub type PFN_CERT_CREATE_CONTEXT_SORT_FUNC = Option super::super::Foundation::BOOL>; pub type PFN_CERT_DLL_OPEN_STORE_PROV_FUNC = Option super::super::Foundation::BOOL>; @@ -7440,9 +8466,63 @@ pub type PFN_CRYPT_XML_DATA_PROVIDER_CLOSE = Option windows_sys::core::HRESULT>; pub type PFN_CRYPT_XML_ENUM_ALG_INFO = Option super::super::Foundation::BOOL>; pub type PFN_CRYPT_XML_WRITE_CALLBACK = Option windows_sys::core::HRESULT>; +pub type PFN_CSP_ALLOC = Option *mut core::ffi::c_void>; +pub type PFN_CSP_CACHE_ADD_FILE = Option u32>; +pub type PFN_CSP_CACHE_DELETE_FILE = Option u32>; +pub type PFN_CSP_CACHE_LOOKUP_FILE = Option u32>; +pub type PFN_CSP_FREE = Option; +pub type PFN_CSP_GET_DH_AGREEMENT = Option u32>; +pub type PFN_CSP_PAD_DATA = Option u32>; +pub type PFN_CSP_REALLOC = Option *mut core::ffi::c_void>; +pub type PFN_CSP_UNPAD_DATA = Option u32>; pub type PFN_EXPORT_PRIV_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PFN_FREE_ENCODED_OBJECT_FUNC = Option; pub type PFN_IMPORT_PRIV_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PFN_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC = Option super::super::Foundation::BOOL>; +pub type PFN_MD_ENCRYPT_DATA = Option u32>; +pub type PFN_MD_IMPORT_SESSION_KEY = Option u32>; pub type PFN_NCRYPT_ALLOC = Option *mut core::ffi::c_void>; pub type PFN_NCRYPT_FREE = Option; +pub type PFN_OFFLOAD_MOD_EXPO = Option super::super::Foundation::BOOL>; +pub type SslComputeClientAuthHashFn = Option windows_sys::core::HRESULT>; +pub type SslComputeEapKeyBlockFn = Option windows_sys::core::HRESULT>; +pub type SslComputeFinishedHashFn = Option windows_sys::core::HRESULT>; +pub type SslComputeSessionHashFn = Option windows_sys::core::HRESULT>; +pub type SslCreateClientAuthHashFn = Option windows_sys::core::HRESULT>; +pub type SslCreateEphemeralKeyFn = Option windows_sys::core::HRESULT>; +pub type SslCreateHandshakeHashFn = Option windows_sys::core::HRESULT>; +pub type SslDecryptPacketFn = Option windows_sys::core::HRESULT>; +pub type SslDuplicateTranscriptHashFn = Option windows_sys::core::HRESULT>; +pub type SslEncryptPacketFn = Option windows_sys::core::HRESULT>; +pub type SslEnumCipherSuitesExFn = Option windows_sys::core::HRESULT>; +pub type SslEnumCipherSuitesFn = Option windows_sys::core::HRESULT>; +pub type SslEnumEccCurvesFn = Option windows_sys::core::HRESULT>; +pub type SslExpandBinderKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExpandExporterMasterKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExpandPreSharedKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExpandResumptionMasterKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExpandTrafficKeysFn = Option windows_sys::core::HRESULT>; +pub type SslExpandWriteKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExportKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExportKeyingMaterialFn = Option windows_sys::core::HRESULT>; +pub type SslExtractEarlyKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExtractHandshakeKeyFn = Option windows_sys::core::HRESULT>; +pub type SslExtractMasterKeyFn = Option windows_sys::core::HRESULT>; +pub type SslFreeBufferFn = Option windows_sys::core::HRESULT>; +pub type SslFreeObjectFn = Option windows_sys::core::HRESULT>; +pub type SslGenerateMasterKeyFn = Option windows_sys::core::HRESULT>; +pub type SslGeneratePreMasterKeyFn = Option windows_sys::core::HRESULT>; +pub type SslGenerateSessionKeysFn = Option windows_sys::core::HRESULT>; +pub type SslGetCipherSuitePRFHashAlgorithmFn = Option windows_sys::core::HRESULT>; +pub type SslGetKeyPropertyFn = Option windows_sys::core::HRESULT>; +pub type SslGetProviderPropertyFn = Option windows_sys::core::HRESULT>; +pub type SslHashHandshakeFn = Option windows_sys::core::HRESULT>; +pub type SslImportKeyFn = Option windows_sys::core::HRESULT>; +pub type SslImportMasterKeyFn = Option windows_sys::core::HRESULT>; +pub type SslInitializeInterfaceFn = Option windows_sys::core::HRESULT>; +pub type SslLookupCipherLengthsFn = Option windows_sys::core::HRESULT>; +pub type SslLookupCipherSuiteInfoFn = Option windows_sys::core::HRESULT>; +pub type SslOpenPrivateKeyFn = Option windows_sys::core::HRESULT>; +pub type SslOpenProviderFn = Option windows_sys::core::HRESULT>; +pub type SslSignHashFn = Option windows_sys::core::HRESULT>; +pub type SslVerifySignatureFn = Option windows_sys::core::HRESULT>; diff --git a/crates/libs/sys/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs b/crates/libs/sys/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs index 072d2fcb74..aafc5265c7 100644 --- a/crates/libs/sys/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs @@ -1,38 +1,38 @@ -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCancelDiagnosticRecordOperation(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCloseSession(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCreateSession(accesslevel : DdqAccessLevel, hsession : *mut super:: HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqExtractDiagnosticReport(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportkey : windows_sys::core::PCWSTR, destinationpath : windows_sys::core::PCWSTR) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordLocaleTags(htagdescription : super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordPage(hrecord : super:: HDIAGNOSTIC_RECORD) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducerCategories(hcategorydescription : super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducers(hproducerdescription : super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticReport(hreport : super:: HDIAGNOSTIC_REPORT) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCancelDiagnosticRecordOperation(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCloseSession(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCreateSession(accesslevel : DdqAccessLevel, hsession : *mut HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqExtractDiagnosticReport(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportkey : windows_sys::core::PCWSTR, destinationpath : windows_sys::core::PCWSTR) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordLocaleTags(htagdescription : HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordPage(hrecord : HDIAGNOSTIC_RECORD) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducerCategories(hcategorydescription : HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducers(hproducerdescription : HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticReport(hreport : HDIAGNOSTIC_REPORT) -> windows_sys::core::HRESULT); windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticDataAccessLevelAllowed(accesslevel : *mut DdqAccessLevel) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordAtIndex(hrecord : super:: HDIAGNOSTIC_RECORD, index : u32, record : *mut DIAGNOSTIC_DATA_RECORD) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordBinaryDistribution(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_sys::core::PCWSTR, producernamecount : u32, topnbinaries : u32, binarystats : *mut *mut DIAGNOSTIC_DATA_EVENT_BINARY_STATS, statcount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryAtIndex(hcategorydescription : super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, index : u32, categorydescription : *mut DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryCount(hcategorydescription : super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, categorydescriptioncount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCount(hrecord : super:: HDIAGNOSTIC_RECORD, recordcount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagAtIndex(htagdescription : super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, index : u32, tagdescription : *mut DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagCount(htagdescription : super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, tagdescriptioncount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTags(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, locale : windows_sys::core::PCWSTR, htagdescription : *mut super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPage(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, offset : u32, pagerecordcount : u32, baserowid : i64, hrecord : *mut super:: HDIAGNOSTIC_RECORD) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPayload(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, rowid : i64, payload : *mut windows_sys::core::PCWSTR) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerAtIndex(hproducerdescription : super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, index : u32, producerdescription : *mut DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCategories(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producername : windows_sys::core::PCWSTR, hcategorydescription : *mut super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCount(hproducerdescription : super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, producerdescriptioncount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducers(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, hproducerdescription : *mut super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordStats(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, recordcount : *mut u32, minrowid : *mut i64, maxrowid : *mut i64) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordSummary(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_sys::core::PCWSTR, producernamecount : u32, generalstats : *mut DIAGNOSTIC_DATA_GENERAL_STATS) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordTagDistribution(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_sys::core::PCWSTR, producernamecount : u32, tagstats : *mut *mut DIAGNOSTIC_DATA_EVENT_TAG_STATS, statcount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReport(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, hreport : *mut super:: HDIAGNOSTIC_REPORT) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportAtIndex(hreport : super:: HDIAGNOSTIC_REPORT, index : u32, report : *mut DIAGNOSTIC_REPORT_DATA) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportCount(hreport : super:: HDIAGNOSTIC_REPORT, reportcount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportStoreReportCount(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportcount : *mut u32) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetSessionAccessLevel(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, accesslevel : *mut DdqAccessLevel) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetTranscriptConfiguration(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, currentconfig : *mut DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqIsDiagnosticRecordSampledIn(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, providergroup : *const windows_sys::core::GUID, providerid : *const windows_sys::core::GUID, providername : windows_sys::core::PCWSTR, eventid : *const u32, eventname : windows_sys::core::PCWSTR, eventversion : *const u32, eventkeywords : *const u64, issampledin : *mut super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); -windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqSetTranscriptConfiguration(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, desiredconfig : *const DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordAtIndex(hrecord : HDIAGNOSTIC_RECORD, index : u32, record : *mut DIAGNOSTIC_DATA_RECORD) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordBinaryDistribution(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_sys::core::PCWSTR, producernamecount : u32, topnbinaries : u32, binarystats : *mut *mut DIAGNOSTIC_DATA_EVENT_BINARY_STATS, statcount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryAtIndex(hcategorydescription : HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, index : u32, categorydescription : *mut DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryCount(hcategorydescription : HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, categorydescriptioncount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCount(hrecord : HDIAGNOSTIC_RECORD, recordcount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagAtIndex(htagdescription : HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, index : u32, tagdescription : *mut DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagCount(htagdescription : HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, tagdescriptioncount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTags(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, locale : windows_sys::core::PCWSTR, htagdescription : *mut HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPage(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, offset : u32, pagerecordcount : u32, baserowid : i64, hrecord : *mut HDIAGNOSTIC_RECORD) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPayload(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, rowid : i64, payload : *mut windows_sys::core::PCWSTR) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerAtIndex(hproducerdescription : HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, index : u32, producerdescription : *mut DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCategories(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producername : windows_sys::core::PCWSTR, hcategorydescription : *mut HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCount(hproducerdescription : HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, producerdescriptioncount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducers(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, hproducerdescription : *mut HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordStats(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, recordcount : *mut u32, minrowid : *mut i64, maxrowid : *mut i64) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordSummary(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_sys::core::PCWSTR, producernamecount : u32, generalstats : *mut DIAGNOSTIC_DATA_GENERAL_STATS) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordTagDistribution(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_sys::core::PCWSTR, producernamecount : u32, tagstats : *mut *mut DIAGNOSTIC_DATA_EVENT_TAG_STATS, statcount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReport(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, hreport : *mut HDIAGNOSTIC_REPORT) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportAtIndex(hreport : HDIAGNOSTIC_REPORT, index : u32, report : *mut DIAGNOSTIC_REPORT_DATA) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportCount(hreport : HDIAGNOSTIC_REPORT, reportcount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportStoreReportCount(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportcount : *mut u32) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetSessionAccessLevel(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, accesslevel : *mut DdqAccessLevel) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetTranscriptConfiguration(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, currentconfig : *mut DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqIsDiagnosticRecordSampledIn(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, providergroup : *const windows_sys::core::GUID, providerid : *const windows_sys::core::GUID, providername : windows_sys::core::PCWSTR, eventid : *const u32, eventname : windows_sys::core::PCWSTR, eventversion : *const u32, eventkeywords : *const u64, issampledin : *mut super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); +windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqSetTranscriptConfiguration(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, desiredconfig : *const DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_sys::core::HRESULT); pub const AllUserData: DdqAccessLevel = 2i32; pub const CurrentUserData: DdqAccessLevel = 1i32; pub const NoData: DdqAccessLevel = 0i32; @@ -148,3 +148,9 @@ pub struct DIAGNOSTIC_REPORT_SIGNATURE { pub eventName: [u16; 65], pub parameters: [DIAGNOSTIC_REPORT_PARAMETER; 10], } +pub type HDIAGNOSTIC_DATA_QUERY_SESSION = *mut core::ffi::c_void; +pub type HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION = *mut core::ffi::c_void; +pub type HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION = *mut core::ffi::c_void; +pub type HDIAGNOSTIC_EVENT_TAG_DESCRIPTION = *mut core::ffi::c_void; +pub type HDIAGNOSTIC_RECORD = *mut core::ffi::c_void; +pub type HDIAGNOSTIC_REPORT = *mut core::ffi::c_void; diff --git a/crates/libs/sys/src/Windows/Win32/Security/Isolation/mod.rs b/crates/libs/sys/src/Windows/Win32/Security/Isolation/mod.rs index 72df909065..babc246853 100644 --- a/crates/libs/sys/src/Windows/Win32/Security/Isolation/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Security/Isolation/mod.rs @@ -1,9 +1,9 @@ -windows_targets::link!("userenv.dll" "system" fn CreateAppContainerProfile(pszappcontainername : windows_sys::core::PCWSTR, pszdisplayname : windows_sys::core::PCWSTR, pszdescription : windows_sys::core::PCWSTR, pcapabilities : *const super:: SID_AND_ATTRIBUTES, dwcapabilitycount : u32, ppsidappcontainersid : *mut super::super::Foundation:: PSID) -> windows_sys::core::HRESULT); +windows_targets::link!("userenv.dll" "system" fn CreateAppContainerProfile(pszappcontainername : windows_sys::core::PCWSTR, pszdisplayname : windows_sys::core::PCWSTR, pszdescription : windows_sys::core::PCWSTR, pcapabilities : *const super:: SID_AND_ATTRIBUTES, dwcapabilitycount : u32, ppsidappcontainersid : *mut super:: PSID) -> windows_sys::core::HRESULT); windows_targets::link!("userenv.dll" "system" fn DeleteAppContainerProfile(pszappcontainername : windows_sys::core::PCWSTR) -> windows_sys::core::HRESULT); -windows_targets::link!("userenv.dll" "system" fn DeriveAppContainerSidFromAppContainerName(pszappcontainername : windows_sys::core::PCWSTR, ppsidappcontainersid : *mut super::super::Foundation:: PSID) -> windows_sys::core::HRESULT); -windows_targets::link!("userenv.dll" "system" fn DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName(psidappcontainersid : super::super::Foundation:: PSID, pszrestrictedappcontainername : windows_sys::core::PCWSTR, ppsidrestrictedappcontainersid : *mut super::super::Foundation:: PSID) -> windows_sys::core::HRESULT); +windows_targets::link!("userenv.dll" "system" fn DeriveAppContainerSidFromAppContainerName(pszappcontainername : windows_sys::core::PCWSTR, ppsidappcontainersid : *mut super:: PSID) -> windows_sys::core::HRESULT); +windows_targets::link!("userenv.dll" "system" fn DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName(psidappcontainersid : super:: PSID, pszrestrictedappcontainername : windows_sys::core::PCWSTR, ppsidrestrictedappcontainersid : *mut super:: PSID) -> windows_sys::core::HRESULT); windows_targets::link!("userenv.dll" "system" fn GetAppContainerFolderPath(pszappcontainersid : windows_sys::core::PCWSTR, ppszpath : *mut windows_sys::core::PWSTR) -> windows_sys::core::HRESULT); -windows_targets::link!("kernel32.dll" "system" fn GetAppContainerNamedObjectPath(token : super::super::Foundation:: HANDLE, appcontainersid : super::super::Foundation:: PSID, objectpathlength : u32, objectpath : windows_sys::core::PWSTR, returnlength : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("kernel32.dll" "system" fn GetAppContainerNamedObjectPath(token : super::super::Foundation:: HANDLE, appcontainersid : super:: PSID, objectpathlength : u32, objectpath : windows_sys::core::PWSTR, returnlength : *mut u32) -> super::super::Foundation:: BOOL); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("userenv.dll" "system" fn GetAppContainerRegistryLocation(desiredaccess : u32, phappcontainerkey : *mut super::super::System::Registry:: HKEY) -> windows_sys::core::HRESULT); windows_targets::link!("isolatedwindowsenvironmentutils.dll" "system" fn IsCrossIsolatedEnvironmentClipboardContent(iscrossisolatedenvironmentclipboardcontent : *mut super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); diff --git a/crates/libs/sys/src/Windows/Win32/Security/mod.rs b/crates/libs/sys/src/Windows/Win32/Security/mod.rs index a1f21d8597..9afefd8a83 100644 --- a/crates/libs/sys/src/Windows/Win32/Security/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Security/mod.rs @@ -29,54 +29,54 @@ pub mod WinWlx; windows_targets::link!("advapi32.dll" "system" fn AccessCheck(psecuritydescriptor : PSECURITY_DESCRIPTOR, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AccessCheckAndAuditAlarmA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCSTR, objectname : windows_sys::core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, desiredaccess : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AccessCheckAndAuditAlarmW(subsystemname : windows_sys::core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCWSTR, objectname : windows_sys::core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, desiredaccess : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByType(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCSTR, objectname : windows_sys::core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmW(subsystemname : windows_sys::core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCWSTR, objectname : windows_sys::core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultList(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccesslist : *mut u32, accessstatuslist : *mut u32) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCSTR, objectname : windows_sys::core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_sys::core::PCSTR, objectname : windows_sys::core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleW(subsystemname : windows_sys::core::PCWSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_sys::core::PCWSTR, objectname : windows_sys::core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmW(subsystemname : windows_sys::core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCWSTR, objectname : windows_sys::core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_sys::core::GUID, inheritedobjecttypeguid : *const windows_sys::core::GUID, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_sys::core::GUID, inheritedobjecttypeguid : *const windows_sys::core::GUID, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByType(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCSTR, objectname : windows_sys::core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmW(subsystemname : windows_sys::core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCWSTR, objectname : windows_sys::core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultList(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccesslist : *mut u32, accessstatuslist : *mut u32) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCSTR, objectname : windows_sys::core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_sys::core::PCSTR, objectname : windows_sys::core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleW(subsystemname : windows_sys::core::PCWSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_sys::core::PCWSTR, objectname : windows_sys::core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmW(subsystemname : windows_sys::core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_sys::core::PCWSTR, objectname : windows_sys::core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_sys::core::GUID, inheritedobjecttypeguid : *const windows_sys::core::GUID, psid : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_sys::core::GUID, inheritedobjecttypeguid : *const windows_sys::core::GUID, psid : PSID) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AddAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, dwstartingaceindex : u32, pacelist : *const core::ffi::c_void, nacelistlength : u32) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, dwaccessmask : u32, psid : super::Foundation:: PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, dwaccessmask : u32, psid : super::Foundation:: PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_sys::core::GUID, inheritedobjecttypeguid : *const windows_sys::core::GUID, psid : super::Foundation:: PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddConditionalAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, acetype : u8, accessmask : u32, psid : super::Foundation:: PSID, conditionstr : windows_sys::core::PCWSTR, returnlength : *mut u32) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AddMandatoryAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, mandatorypolicy : u32, plabelsid : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("kernel32.dll" "system" fn AddResourceAttributeAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID, pattributeinfo : *const CLAIM_SECURITY_ATTRIBUTES_INFORMATION, preturnlength : *mut u32) -> super::Foundation:: BOOL); -windows_targets::link!("kernel32.dll" "system" fn AddScopedPolicyIDAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, dwaccessmask : u32, psid : PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, dwaccessmask : u32, psid : PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_sys::core::GUID, inheritedobjecttypeguid : *const windows_sys::core::GUID, psid : PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddConditionalAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, acetype : u8, accessmask : u32, psid : PSID, conditionstr : windows_sys::core::PCWSTR, returnlength : *mut u32) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AddMandatoryAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, mandatorypolicy : u32, plabelsid : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("kernel32.dll" "system" fn AddResourceAttributeAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID, pattributeinfo : *const CLAIM_SECURITY_ATTRIBUTES_INFORMATION, preturnlength : *mut u32) -> super::Foundation:: BOOL); +windows_targets::link!("kernel32.dll" "system" fn AddScopedPolicyIDAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AdjustTokenGroups(tokenhandle : super::Foundation:: HANDLE, resettodefault : super::Foundation:: BOOL, newstate : *const TOKEN_GROUPS, bufferlength : u32, previousstate : *mut TOKEN_GROUPS, returnlength : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AdjustTokenPrivileges(tokenhandle : super::Foundation:: HANDLE, disableallprivileges : super::Foundation:: BOOL, newstate : *const TOKEN_PRIVILEGES, bufferlength : u32, previousstate : *mut TOKEN_PRIVILEGES, returnlength : *mut u32) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn AllocateAndInitializeSid(pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8, nsubauthority0 : u32, nsubauthority1 : u32, nsubauthority2 : u32, nsubauthority3 : u32, nsubauthority4 : u32, nsubauthority5 : u32, nsubauthority6 : u32, nsubauthority7 : u32, psid : *mut super::Foundation:: PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn AllocateAndInitializeSid(pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8, nsubauthority0 : u32, nsubauthority1 : u32, nsubauthority2 : u32, nsubauthority3 : u32, nsubauthority4 : u32, nsubauthority5 : u32, nsubauthority6 : u32, nsubauthority7 : u32, psid : *mut PSID) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AllocateLocallyUniqueId(luid : *mut super::Foundation:: LUID) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AreAllAccessesGranted(grantedaccess : u32, desiredaccess : u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn AreAnyAccessesGranted(grantedaccess : u32, desiredaccess : u32) -> super::Foundation:: BOOL); -windows_targets::link!("kernel32.dll" "system" fn CheckTokenCapability(tokenhandle : super::Foundation:: HANDLE, capabilitysidtocheck : super::Foundation:: PSID, hascapability : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn CheckTokenMembership(tokenhandle : super::Foundation:: HANDLE, sidtocheck : super::Foundation:: PSID, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("kernel32.dll" "system" fn CheckTokenMembershipEx(tokenhandle : super::Foundation:: HANDLE, sidtocheck : super::Foundation:: PSID, flags : u32, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("kernel32.dll" "system" fn CheckTokenCapability(tokenhandle : super::Foundation:: HANDLE, capabilitysidtocheck : PSID, hascapability : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn CheckTokenMembership(tokenhandle : super::Foundation:: HANDLE, sidtocheck : PSID, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("kernel32.dll" "system" fn CheckTokenMembershipEx(tokenhandle : super::Foundation:: HANDLE, sidtocheck : PSID, flags : u32, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn ConvertToAutoInheritPrivateObjectSecurity(parentdescriptor : PSECURITY_DESCRIPTOR, currentsecuritydescriptor : PSECURITY_DESCRIPTOR, newsecuritydescriptor : *mut PSECURITY_DESCRIPTOR, objecttype : *const windows_sys::core::GUID, isdirectoryobject : super::Foundation:: BOOLEAN, genericmapping : *const GENERIC_MAPPING) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn CopySid(ndestinationsidlength : u32, pdestinationsid : super::Foundation:: PSID, psourcesid : super::Foundation:: PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn CopySid(ndestinationsidlength : u32, pdestinationsid : PSID, psourcesid : PSID) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn CreatePrivateObjectSecurity(parentdescriptor : PSECURITY_DESCRIPTOR, creatordescriptor : PSECURITY_DESCRIPTOR, newdescriptor : *mut PSECURITY_DESCRIPTOR, isdirectoryobject : super::Foundation:: BOOL, token : super::Foundation:: HANDLE, genericmapping : *const GENERIC_MAPPING) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn CreatePrivateObjectSecurityEx(parentdescriptor : PSECURITY_DESCRIPTOR, creatordescriptor : PSECURITY_DESCRIPTOR, newdescriptor : *mut PSECURITY_DESCRIPTOR, objecttype : *const windows_sys::core::GUID, iscontainerobject : super::Foundation:: BOOL, autoinheritflags : SECURITY_AUTO_INHERIT_FLAGS, token : super::Foundation:: HANDLE, genericmapping : *const GENERIC_MAPPING) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn CreatePrivateObjectSecurityWithMultipleInheritance(parentdescriptor : PSECURITY_DESCRIPTOR, creatordescriptor : PSECURITY_DESCRIPTOR, newdescriptor : *mut PSECURITY_DESCRIPTOR, objecttypes : *const *const windows_sys::core::GUID, guidcount : u32, iscontainerobject : super::Foundation:: BOOL, autoinheritflags : SECURITY_AUTO_INHERIT_FLAGS, token : super::Foundation:: HANDLE, genericmapping : *const GENERIC_MAPPING) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn CreateRestrictedToken(existingtokenhandle : super::Foundation:: HANDLE, flags : CREATE_RESTRICTED_TOKEN_FLAGS, disablesidcount : u32, sidstodisable : *const SID_AND_ATTRIBUTES, deleteprivilegecount : u32, privilegestodelete : *const LUID_AND_ATTRIBUTES, restrictedsidcount : u32, sidstorestrict : *const SID_AND_ATTRIBUTES, newtokenhandle : *mut super::Foundation:: HANDLE) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn CreateWellKnownSid(wellknownsidtype : WELL_KNOWN_SID_TYPE, domainsid : super::Foundation:: PSID, psid : super::Foundation:: PSID, cbsid : *mut u32) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn CreateWellKnownSid(wellknownsidtype : WELL_KNOWN_SID_TYPE, domainsid : PSID, psid : PSID, cbsid : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn DeleteAce(pacl : *mut ACL, dwaceindex : u32) -> super::Foundation:: BOOL); -windows_targets::link!("api-ms-win-security-base-l1-2-2.dll" "system" fn DeriveCapabilitySidsFromName(capname : windows_sys::core::PCWSTR, capabilitygroupsids : *mut *mut super::Foundation:: PSID, capabilitygroupsidcount : *mut u32, capabilitysids : *mut *mut super::Foundation:: PSID, capabilitysidcount : *mut u32) -> super::Foundation:: BOOL); +windows_targets::link!("api-ms-win-security-base-l1-2-2.dll" "system" fn DeriveCapabilitySidsFromName(capname : windows_sys::core::PCWSTR, capabilitygroupsids : *mut *mut PSID, capabilitygroupsidcount : *mut u32, capabilitysids : *mut *mut PSID, capabilitysidcount : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn DestroyPrivateObjectSecurity(objectdescriptor : *const PSECURITY_DESCRIPTOR) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn DuplicateToken(existingtokenhandle : super::Foundation:: HANDLE, impersonationlevel : SECURITY_IMPERSONATION_LEVEL, duplicatetokenhandle : *mut super::Foundation:: HANDLE) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn DuplicateTokenEx(hexistingtoken : super::Foundation:: HANDLE, dwdesiredaccess : TOKEN_ACCESS_MASK, lptokenattributes : *const SECURITY_ATTRIBUTES, impersonationlevel : SECURITY_IMPERSONATION_LEVEL, tokentype : TOKEN_TYPE, phnewtoken : *mut super::Foundation:: HANDLE) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn EqualDomainSid(psid1 : super::Foundation:: PSID, psid2 : super::Foundation:: PSID, pfequal : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn EqualPrefixSid(psid1 : super::Foundation:: PSID, psid2 : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn EqualSid(psid1 : super::Foundation:: PSID, psid2 : super::Foundation:: PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EqualDomainSid(psid1 : PSID, psid2 : PSID, pfequal : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EqualPrefixSid(psid1 : PSID, psid2 : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EqualSid(psid1 : PSID, psid2 : PSID) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn FindFirstFreeAce(pacl : *const ACL, pace : *mut *mut core::ffi::c_void) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn FreeSid(psid : super::Foundation:: PSID) -> *mut core::ffi::c_void); +windows_targets::link!("advapi32.dll" "system" fn FreeSid(psid : PSID) -> *mut core::ffi::c_void); windows_targets::link!("advapi32.dll" "system" fn GetAce(pacl : *const ACL, dwaceindex : u32, pace : *mut *mut core::ffi::c_void) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetAclInformation(pacl : *const ACL, paclinformation : *mut core::ffi::c_void, naclinformationlength : u32, dwaclinformationclass : ACL_INFORMATION_CLASS) -> super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn GetAppContainerAce(acl : *const ACL, startingaceindex : u32, appcontainerace : *mut *mut core::ffi::c_void, appcontaineraceindex : *mut u32) -> super::Foundation:: BOOL); @@ -84,48 +84,48 @@ windows_targets::link!("kernel32.dll" "system" fn GetCachedSigningLevel(file : s windows_targets::link!("advapi32.dll" "system" fn GetFileSecurityA(lpfilename : windows_sys::core::PCSTR, requestedinformation : u32, psecuritydescriptor : PSECURITY_DESCRIPTOR, nlength : u32, lpnlengthneeded : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetFileSecurityW(lpfilename : windows_sys::core::PCWSTR, requestedinformation : u32, psecuritydescriptor : PSECURITY_DESCRIPTOR, nlength : u32, lpnlengthneeded : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetKernelObjectSecurity(handle : super::Foundation:: HANDLE, requestedinformation : u32, psecuritydescriptor : PSECURITY_DESCRIPTOR, nlength : u32, lpnlengthneeded : *mut u32) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn GetLengthSid(psid : super::Foundation:: PSID) -> u32); +windows_targets::link!("advapi32.dll" "system" fn GetLengthSid(psid : PSID) -> u32); windows_targets::link!("advapi32.dll" "system" fn GetPrivateObjectSecurity(objectdescriptor : PSECURITY_DESCRIPTOR, securityinformation : OBJECT_SECURITY_INFORMATION, resultantdescriptor : PSECURITY_DESCRIPTOR, descriptorlength : u32, returnlength : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorControl(psecuritydescriptor : PSECURITY_DESCRIPTOR, pcontrol : *mut u16, lpdwrevision : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorDacl(psecuritydescriptor : PSECURITY_DESCRIPTOR, lpbdaclpresent : *mut super::Foundation:: BOOL, pdacl : *mut *mut ACL, lpbdacldefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : *mut super::Foundation:: PSID, lpbgroupdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : *mut PSID, lpbgroupdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorLength(psecuritydescriptor : PSECURITY_DESCRIPTOR) -> u32); -windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : *mut super::Foundation:: PSID, lpbownerdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : *mut PSID, lpbownerdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorRMControl(securitydescriptor : PSECURITY_DESCRIPTOR, rmcontrol : *mut u8) -> u32); windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorSacl(psecuritydescriptor : PSECURITY_DESCRIPTOR, lpbsaclpresent : *mut super::Foundation:: BOOL, psacl : *mut *mut ACL, lpbsacldefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn GetSidIdentifierAuthority(psid : super::Foundation:: PSID) -> *mut SID_IDENTIFIER_AUTHORITY); +windows_targets::link!("advapi32.dll" "system" fn GetSidIdentifierAuthority(psid : PSID) -> *mut SID_IDENTIFIER_AUTHORITY); windows_targets::link!("advapi32.dll" "system" fn GetSidLengthRequired(nsubauthoritycount : u8) -> u32); -windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthority(psid : super::Foundation:: PSID, nsubauthority : u32) -> *mut u32); -windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthorityCount(psid : super::Foundation:: PSID) -> *mut u8); +windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthority(psid : PSID, nsubauthority : u32) -> *mut u32); +windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthorityCount(psid : PSID) -> *mut u8); windows_targets::link!("advapi32.dll" "system" fn GetTokenInformation(tokenhandle : super::Foundation:: HANDLE, tokeninformationclass : TOKEN_INFORMATION_CLASS, tokeninformation : *mut core::ffi::c_void, tokeninformationlength : u32, returnlength : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn GetUserObjectSecurity(hobj : super::Foundation:: HANDLE, psirequested : *const u32, psid : PSECURITY_DESCRIPTOR, nlength : u32, lpnlengthneeded : *mut u32) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn GetWindowsAccountDomainSid(psid : super::Foundation:: PSID, pdomainsid : super::Foundation:: PSID, cbdomainsid : *mut u32) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn GetWindowsAccountDomainSid(psid : PSID, pdomainsid : PSID, cbdomainsid : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn ImpersonateAnonymousToken(threadhandle : super::Foundation:: HANDLE) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn ImpersonateLoggedOnUser(htoken : super::Foundation:: HANDLE) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn ImpersonateSelf(impersonationlevel : SECURITY_IMPERSONATION_LEVEL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn InitializeAcl(pacl : *mut ACL, nacllength : u32, dwaclrevision : ACE_REVISION) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn InitializeSecurityDescriptor(psecuritydescriptor : PSECURITY_DESCRIPTOR, dwrevision : u32) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn InitializeSid(sid : super::Foundation:: PSID, pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn InitializeSid(sid : PSID, pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn IsTokenRestricted(tokenhandle : super::Foundation:: HANDLE) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn IsValidAcl(pacl : *const ACL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn IsValidSecurityDescriptor(psecuritydescriptor : PSECURITY_DESCRIPTOR) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn IsValidSid(psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn IsWellKnownSid(psid : super::Foundation:: PSID, wellknownsidtype : WELL_KNOWN_SID_TYPE) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn IsValidSid(psid : PSID) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn IsWellKnownSid(psid : PSID, wellknownsidtype : WELL_KNOWN_SID_TYPE) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LogonUserA(lpszusername : windows_sys::core::PCSTR, lpszdomain : windows_sys::core::PCSTR, lpszpassword : windows_sys::core::PCSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn LogonUserExA(lpszusername : windows_sys::core::PCSTR, lpszdomain : windows_sys::core::PCSTR, lpszpassword : windows_sys::core::PCSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut super::Foundation:: PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn LogonUserExW(lpszusername : windows_sys::core::PCWSTR, lpszdomain : windows_sys::core::PCWSTR, lpszpassword : windows_sys::core::PCWSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut super::Foundation:: PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn LogonUserExA(lpszusername : windows_sys::core::PCSTR, lpszdomain : windows_sys::core::PCSTR, lpszpassword : windows_sys::core::PCSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn LogonUserExW(lpszusername : windows_sys::core::PCWSTR, lpszdomain : windows_sys::core::PCWSTR, lpszpassword : windows_sys::core::PCWSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LogonUserW(lpszusername : windows_sys::core::PCWSTR, lpszdomain : windows_sys::core::PCWSTR, lpszpassword : windows_sys::core::PCWSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameA(lpsystemname : windows_sys::core::PCSTR, lpaccountname : windows_sys::core::PCSTR, sid : super::Foundation:: PSID, cbsid : *mut u32, referenceddomainname : windows_sys::core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameW(lpsystemname : windows_sys::core::PCWSTR, lpaccountname : windows_sys::core::PCWSTR, sid : super::Foundation:: PSID, cbsid : *mut u32, referenceddomainname : windows_sys::core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidA(lpsystemname : windows_sys::core::PCSTR, sid : super::Foundation:: PSID, name : windows_sys::core::PSTR, cchname : *mut u32, referenceddomainname : windows_sys::core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidW(lpsystemname : windows_sys::core::PCWSTR, sid : super::Foundation:: PSID, name : windows_sys::core::PWSTR, cchname : *mut u32, referenceddomainname : windows_sys::core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameA(lpsystemname : windows_sys::core::PCSTR, lpaccountname : windows_sys::core::PCSTR, sid : PSID, cbsid : *mut u32, referenceddomainname : windows_sys::core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameW(lpsystemname : windows_sys::core::PCWSTR, lpaccountname : windows_sys::core::PCWSTR, sid : PSID, cbsid : *mut u32, referenceddomainname : windows_sys::core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidA(lpsystemname : windows_sys::core::PCSTR, sid : PSID, name : windows_sys::core::PSTR, cchname : *mut u32, referenceddomainname : windows_sys::core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidW(lpsystemname : windows_sys::core::PCWSTR, sid : PSID, name : windows_sys::core::PWSTR, cchname : *mut u32, referenceddomainname : windows_sys::core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LookupPrivilegeDisplayNameA(lpsystemname : windows_sys::core::PCSTR, lpname : windows_sys::core::PCSTR, lpdisplayname : windows_sys::core::PSTR, cchdisplayname : *mut u32, lplanguageid : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LookupPrivilegeDisplayNameW(lpsystemname : windows_sys::core::PCWSTR, lpname : windows_sys::core::PCWSTR, lpdisplayname : windows_sys::core::PWSTR, cchdisplayname : *mut u32, lplanguageid : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LookupPrivilegeNameA(lpsystemname : windows_sys::core::PCSTR, lpluid : *const super::Foundation:: LUID, lpname : windows_sys::core::PSTR, cchname : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LookupPrivilegeNameW(lpsystemname : windows_sys::core::PCWSTR, lpluid : *const super::Foundation:: LUID, lpname : windows_sys::core::PWSTR, cchname : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LookupPrivilegeValueA(lpsystemname : windows_sys::core::PCSTR, lpname : windows_sys::core::PCSTR, lpluid : *mut super::Foundation:: LUID) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn LookupPrivilegeValueW(lpsystemname : windows_sys::core::PCWSTR, lpname : windows_sys::core::PCWSTR, lpluid : *mut super::Foundation:: LUID) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn MakeAbsoluteSD(pselfrelativesecuritydescriptor : PSECURITY_DESCRIPTOR, pabsolutesecuritydescriptor : PSECURITY_DESCRIPTOR, lpdwabsolutesecuritydescriptorsize : *mut u32, pdacl : *mut ACL, lpdwdaclsize : *mut u32, psacl : *mut ACL, lpdwsaclsize : *mut u32, powner : super::Foundation:: PSID, lpdwownersize : *mut u32, pprimarygroup : super::Foundation:: PSID, lpdwprimarygroupsize : *mut u32) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn MakeAbsoluteSD(pselfrelativesecuritydescriptor : PSECURITY_DESCRIPTOR, pabsolutesecuritydescriptor : PSECURITY_DESCRIPTOR, lpdwabsolutesecuritydescriptorsize : *mut u32, pdacl : *mut ACL, lpdwdaclsize : *mut u32, psacl : *mut ACL, lpdwsaclsize : *mut u32, powner : PSID, lpdwownersize : *mut u32, pprimarygroup : PSID, lpdwprimarygroupsize : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn MakeSelfRelativeSD(pabsolutesecuritydescriptor : PSECURITY_DESCRIPTOR, pselfrelativesecuritydescriptor : PSECURITY_DESCRIPTOR, lpdwbufferlength : *mut u32) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn MapGenericMask(accessmask : *mut u32, genericmapping : *const GENERIC_MAPPING)); windows_targets::link!("advapi32.dll" "system" fn ObjectCloseAuditAlarmA(subsystemname : windows_sys::core::PCSTR, handleid : *const core::ffi::c_void, generateonclose : super::Foundation:: BOOL) -> super::Foundation:: BOOL); @@ -141,7 +141,7 @@ windows_targets::link!("advapi32.dll" "system" fn PrivilegedServiceAuditAlarmA(s windows_targets::link!("advapi32.dll" "system" fn PrivilegedServiceAuditAlarmW(subsystemname : windows_sys::core::PCWSTR, servicename : windows_sys::core::PCWSTR, clienttoken : super::Foundation:: HANDLE, privileges : *const PRIVILEGE_SET, accessgranted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn QuerySecurityAccessMask(securityinformation : OBJECT_SECURITY_INFORMATION, desiredaccess : *mut u32)); windows_targets::link!("advapi32.dll" "system" fn RevertToSelf() -> super::Foundation:: BOOL); -windows_targets::link!("ntdll.dll" "system" fn RtlConvertSidToUnicodeString(unicodestring : *mut super::Foundation:: UNICODE_STRING, sid : super::Foundation:: PSID, allocatedestinationstring : super::Foundation:: BOOLEAN) -> super::Foundation:: NTSTATUS); +windows_targets::link!("ntdll.dll" "system" fn RtlConvertSidToUnicodeString(unicodestring : *mut super::Foundation:: UNICODE_STRING, sid : PSID, allocatedestinationstring : super::Foundation:: BOOLEAN) -> super::Foundation:: NTSTATUS); windows_targets::link!("ntdll.dll" "system" fn RtlNormalizeSecurityDescriptor(securitydescriptor : *mut PSECURITY_DESCRIPTOR, securitydescriptorlength : u32, newsecuritydescriptor : *mut PSECURITY_DESCRIPTOR, newsecuritydescriptorlength : *mut u32, checkonly : super::Foundation:: BOOLEAN) -> super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn SetAclInformation(pacl : *mut ACL, paclinformation : *const core::ffi::c_void, naclinformationlength : u32, dwaclinformationclass : ACL_INFORMATION_CLASS) -> super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn SetCachedSigningLevel(sourcefiles : *const super::Foundation:: HANDLE, sourcefilecount : u32, flags : u32, targetfile : super::Foundation:: HANDLE) -> super::Foundation:: BOOL); @@ -153,8 +153,8 @@ windows_targets::link!("advapi32.dll" "system" fn SetPrivateObjectSecurityEx(sec windows_targets::link!("advapi32.dll" "system" fn SetSecurityAccessMask(securityinformation : OBJECT_SECURITY_INFORMATION, desiredaccess : *mut u32)); windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorControl(psecuritydescriptor : PSECURITY_DESCRIPTOR, controlbitsofinterest : SECURITY_DESCRIPTOR_CONTROL, controlbitstoset : SECURITY_DESCRIPTOR_CONTROL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorDacl(psecuritydescriptor : PSECURITY_DESCRIPTOR, bdaclpresent : super::Foundation:: BOOL, pdacl : *const ACL, bdacldefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : super::Foundation:: PSID, bgroupdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : super::Foundation:: PSID, bownerdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : PSID, bgroupdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : PSID, bownerdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorRMControl(securitydescriptor : PSECURITY_DESCRIPTOR, rmcontrol : *const u8) -> u32); windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorSacl(psecuritydescriptor : PSECURITY_DESCRIPTOR, bsaclpresent : super::Foundation:: BOOL, psacl : *const ACL, bsacldefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn SetTokenInformation(tokenhandle : super::Foundation:: HANDLE, tokeninformationclass : TOKEN_INFORMATION_CLASS, tokeninformation : *const core::ffi::c_void, tokeninformationlength : u32) -> super::Foundation:: BOOL); @@ -235,6 +235,7 @@ pub const SECURITY_CREATOR_SID_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIF pub const SECURITY_DYNAMIC_TRACKING: super::Foundation::BOOLEAN = 1u8; pub const SECURITY_LOCAL_SID_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 2] }; pub const SECURITY_MANDATORY_LABEL_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 16] }; +pub const SECURITY_MAX_SID_SIZE: u32 = 68u32; pub const SECURITY_NON_UNIQUE_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 4] }; pub const SECURITY_NT_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 5] }; pub const SECURITY_NULL_SID_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 0] }; @@ -752,12 +753,6 @@ pub struct GENERIC_MAPPING { pub GenericExecute: u32, pub GenericAll: u32, } -pub type HDIAGNOSTIC_DATA_QUERY_SESSION = isize; -pub type HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION = isize; -pub type HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION = isize; -pub type HDIAGNOSTIC_EVENT_TAG_DESCRIPTION = isize; -pub type HDIAGNOSTIC_RECORD = isize; -pub type HDIAGNOSTIC_REPORT = isize; #[repr(C)] #[derive(Clone, Copy)] pub struct LLFILETIME { @@ -775,8 +770,8 @@ pub struct LUID_AND_ATTRIBUTES { pub Luid: super::Foundation::LUID, pub Attributes: TOKEN_PRIVILEGES_ATTRIBUTES, } -pub type NCRYPT_DESCRIPTOR_HANDLE = isize; -pub type NCRYPT_STREAM_HANDLE = isize; +pub type NCRYPT_DESCRIPTOR_HANDLE = *mut core::ffi::c_void; +pub type NCRYPT_STREAM_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct OBJECT_TYPE_LIST { @@ -792,6 +787,7 @@ pub struct PRIVILEGE_SET { pub Privilege: [LUID_AND_ATTRIBUTES; 1], } pub type PSECURITY_DESCRIPTOR = *mut core::ffi::c_void; +pub type PSID = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct QUOTA_LIMITS { @@ -802,8 +798,7 @@ pub struct QUOTA_LIMITS { pub PagefileLimit: usize, pub TimeLimit: i64, } -pub type SAFER_LEVEL_HANDLE = isize; -pub type SC_HANDLE = isize; +pub type SAFER_LEVEL_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct SECURITY_ATTRIBUTES { @@ -814,7 +809,7 @@ pub struct SECURITY_ATTRIBUTES { #[repr(C)] #[derive(Clone, Copy)] pub struct SECURITY_CAPABILITIES { - pub AppContainerSid: super::Foundation::PSID, + pub AppContainerSid: PSID, pub Capabilities: *mut SID_AND_ATTRIBUTES, pub CapabilityCount: u32, pub Reserved: u32, @@ -825,8 +820,8 @@ pub struct SECURITY_DESCRIPTOR { pub Revision: u8, pub Sbz1: u8, pub Control: SECURITY_DESCRIPTOR_CONTROL, - pub Owner: super::Foundation::PSID, - pub Group: super::Foundation::PSID, + pub Owner: PSID, + pub Group: PSID, pub Sacl: *mut ACL, pub Dacl: *mut ACL, } @@ -866,7 +861,7 @@ pub struct SE_ACCESS_REQUEST { pub SeSecurityDescriptor: *mut SE_SECURITY_DESCRIPTOR, pub DesiredAccess: u32, pub PreviouslyGrantedAccess: u32, - pub PrincipalSelfSid: super::Foundation::PSID, + pub PrincipalSelfSid: PSID, pub GenericMapping: *mut GENERIC_MAPPING, pub ObjectTypeListCount: u32, pub ObjectTypeList: *mut OBJECT_TYPE_LIST, @@ -903,7 +898,7 @@ pub struct SID { #[repr(C)] #[derive(Clone, Copy)] pub struct SID_AND_ATTRIBUTES { - pub Sid: super::Foundation::PSID, + pub Sid: PSID, pub Attributes: u32, } #[repr(C)] @@ -1033,15 +1028,15 @@ pub struct TOKEN_ACCESS_INFORMATION { pub MandatoryPolicy: TOKEN_MANDATORY_POLICY, pub Flags: u32, pub AppContainerNumber: u32, - pub PackageSid: super::Foundation::PSID, + pub PackageSid: PSID, pub CapabilitiesHash: *mut SID_AND_ATTRIBUTES_HASH, - pub TrustLevelSid: super::Foundation::PSID, + pub TrustLevelSid: PSID, pub SecurityAttributes: *mut core::ffi::c_void, } #[repr(C)] #[derive(Clone, Copy)] pub struct TOKEN_APPCONTAINER_INFORMATION { - pub TokenAppContainer: super::Foundation::PSID, + pub TokenAppContainer: PSID, } #[repr(C)] #[derive(Clone, Copy)] @@ -1114,12 +1109,12 @@ pub struct TOKEN_ORIGIN { #[repr(C)] #[derive(Clone, Copy)] pub struct TOKEN_OWNER { - pub Owner: super::Foundation::PSID, + pub Owner: PSID, } #[repr(C)] #[derive(Clone, Copy)] pub struct TOKEN_PRIMARY_GROUP { - pub PrimaryGroup: super::Foundation::PSID, + pub PrimaryGroup: PSID, } #[repr(C)] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/Storage/Compression/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/Compression/mod.rs index b1b8cae122..53ddffcf9f 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/Compression/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/Compression/mod.rs @@ -1,15 +1,15 @@ windows_targets::link!("cabinet.dll" "system" fn CloseCompressor(compressorhandle : COMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); -windows_targets::link!("cabinet.dll" "system" fn CloseDecompressor(decompressorhandle : isize) -> super::super::Foundation:: BOOL); +windows_targets::link!("cabinet.dll" "system" fn CloseDecompressor(decompressorhandle : DECOMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); windows_targets::link!("cabinet.dll" "system" fn Compress(compressorhandle : COMPRESSOR_HANDLE, uncompresseddata : *const core::ffi::c_void, uncompresseddatasize : usize, compressedbuffer : *mut core::ffi::c_void, compressedbuffersize : usize, compresseddatasize : *mut usize) -> super::super::Foundation:: BOOL); windows_targets::link!("cabinet.dll" "system" fn CreateCompressor(algorithm : COMPRESS_ALGORITHM, allocationroutines : *const COMPRESS_ALLOCATION_ROUTINES, compressorhandle : *mut COMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); -windows_targets::link!("cabinet.dll" "system" fn CreateDecompressor(algorithm : COMPRESS_ALGORITHM, allocationroutines : *const COMPRESS_ALLOCATION_ROUTINES, decompressorhandle : *mut isize) -> super::super::Foundation:: BOOL); -windows_targets::link!("cabinet.dll" "system" fn Decompress(decompressorhandle : isize, compresseddata : *const core::ffi::c_void, compresseddatasize : usize, uncompressedbuffer : *mut core::ffi::c_void, uncompressedbuffersize : usize, uncompresseddatasize : *mut usize) -> super::super::Foundation:: BOOL); +windows_targets::link!("cabinet.dll" "system" fn CreateDecompressor(algorithm : COMPRESS_ALGORITHM, allocationroutines : *const COMPRESS_ALLOCATION_ROUTINES, decompressorhandle : *mut DECOMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); +windows_targets::link!("cabinet.dll" "system" fn Decompress(decompressorhandle : DECOMPRESSOR_HANDLE, compresseddata : *const core::ffi::c_void, compresseddatasize : usize, uncompressedbuffer : *mut core::ffi::c_void, uncompressedbuffersize : usize, uncompresseddatasize : *mut usize) -> super::super::Foundation:: BOOL); windows_targets::link!("cabinet.dll" "system" fn QueryCompressorInformation(compressorhandle : COMPRESSOR_HANDLE, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *mut core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); -windows_targets::link!("cabinet.dll" "system" fn QueryDecompressorInformation(decompressorhandle : isize, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *mut core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); +windows_targets::link!("cabinet.dll" "system" fn QueryDecompressorInformation(decompressorhandle : DECOMPRESSOR_HANDLE, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *mut core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); windows_targets::link!("cabinet.dll" "system" fn ResetCompressor(compressorhandle : COMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); -windows_targets::link!("cabinet.dll" "system" fn ResetDecompressor(decompressorhandle : isize) -> super::super::Foundation:: BOOL); +windows_targets::link!("cabinet.dll" "system" fn ResetDecompressor(decompressorhandle : DECOMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); windows_targets::link!("cabinet.dll" "system" fn SetCompressorInformation(compressorhandle : COMPRESSOR_HANDLE, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *const core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); -windows_targets::link!("cabinet.dll" "system" fn SetDecompressorInformation(decompressorhandle : isize, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *const core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); +windows_targets::link!("cabinet.dll" "system" fn SetDecompressorInformation(decompressorhandle : DECOMPRESSOR_HANDLE, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *const core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); pub const COMPRESS_ALGORITHM_INVALID: u32 = 0u32; pub const COMPRESS_ALGORITHM_LZMS: COMPRESS_ALGORITHM = 5u32; pub const COMPRESS_ALGORITHM_MAX: u32 = 6u32; @@ -23,7 +23,7 @@ pub const COMPRESS_INFORMATION_CLASS_LEVEL: COMPRESS_INFORMATION_CLASS = 2i32; pub const COMPRESS_RAW: u32 = 536870912u32; pub type COMPRESS_ALGORITHM = u32; pub type COMPRESS_INFORMATION_CLASS = i32; -pub type COMPRESSOR_HANDLE = isize; +pub type COMPRESSOR_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct COMPRESS_ALLOCATION_ROUTINES { @@ -31,5 +31,6 @@ pub struct COMPRESS_ALLOCATION_ROUTINES { pub Free: PFN_COMPRESS_FREE, pub UserContext: *mut core::ffi::c_void, } +pub type DECOMPRESSOR_HANDLE = *mut core::ffi::c_void; pub type PFN_COMPRESS_ALLOCATE = Option *mut core::ffi::c_void>; pub type PFN_COMPRESS_FREE = Option; diff --git a/crates/libs/sys/src/Windows/Win32/Storage/FileHistory/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/FileHistory/mod.rs index f643ee5711..1659afdf58 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/FileHistory/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/FileHistory/mod.rs @@ -1,17 +1,10 @@ -#[cfg(feature = "Win32_System_WindowsProgramming")] -windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceBlockBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_System_WindowsProgramming")] -windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceClosePipe(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_System_WindowsProgramming")] -windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceOpenPipe(startserviceifstopped : super::super::Foundation:: BOOL, pipe : *mut super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_System_WindowsProgramming")] -windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceReloadConfiguration(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_System_WindowsProgramming")] -windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStartBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE, lowpriorityio : super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_System_WindowsProgramming")] -windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStopBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE, stoptracking : super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); -#[cfg(feature = "Win32_System_WindowsProgramming")] -windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceUnblockBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceBlockBackup(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceClosePipe(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceOpenPipe(startserviceifstopped : super::super::Foundation:: BOOL, pipe : *mut FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceReloadConfiguration(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); +windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStartBackup(pipe : FH_SERVICE_PIPE_HANDLE, lowpriorityio : super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); +windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStopBackup(pipe : FH_SERVICE_PIPE_HANDLE, stoptracking : super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); +windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceUnblockBackup(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_sys::core::HRESULT); pub const BackupCancelled: FhBackupStopReason = 4i32; pub const BackupInvalidStopReason: FhBackupStopReason = 0i32; pub const BackupLimitUserBusyMachineOnAC: FhBackupStopReason = 1i32; @@ -99,5 +92,6 @@ pub type FH_RETENTION_TYPES = i32; pub type FH_TARGET_DRIVE_TYPES = i32; pub type FH_TARGET_PROPERTY_TYPE = i32; pub type FhBackupStopReason = i32; +pub type FH_SERVICE_PIPE_HANDLE = *mut core::ffi::c_void; pub const FhConfigMgr: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xed43bb3c_09e9_498a_9df6_2177244c6db4); pub const FhReassociation: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4d728e35_16fa_4320_9e8b_bfd7100a8846); diff --git a/crates/libs/sys/src/Windows/Win32/Storage/FileSystem/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/FileSystem/mod.rs index 9df9cdb642..1685a8329f 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/FileSystem/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/FileSystem/mod.rs @@ -2332,7 +2332,7 @@ pub struct FIO_CONTEXT { pub m_dwLinesOffset: u32, pub m_dwHeaderLength: u32, } -pub type HIORING = isize; +pub type HIORING = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct IORING_BUFFER_INFO { diff --git a/crates/libs/sys/src/Windows/Win32/Storage/Jet/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/Jet/mod.rs index 51459bbe0b..3b3c5d7198 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/Jet/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/Jet/mod.rs @@ -1,285 +1,217 @@ #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetAddColumnA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetAddColumnW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2A(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2W(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetAddColumnA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] +windows_targets::link!("esent.dll" "system" fn JetAddColumnW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2A(sesid : JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2W(sesid : JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseA(sesid : JET_SESID, szfilename : *const i8, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseW(sesid : JET_SESID, szfilename : *const u16, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetBackupA(szbackuppath : *const i8, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBackupInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szbackuppath : *const i8, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBackupInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, szbackuppath : *const u16, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] +windows_targets::link!("esent.dll" "system" fn JetBackupInstanceA(instance : JET_INSTANCE, szbackuppath : *const i8, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); +windows_targets::link!("esent.dll" "system" fn JetBackupInstanceW(instance : JET_INSTANCE, szbackuppath : *const u16, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); windows_targets::link!("esent.dll" "system" fn JetBackupW(szbackuppath : *const u16, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); windows_targets::link!("esent.dll" "system" fn JetBeginExternalBackup(grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBeginExternalBackupInstance(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBeginSessionA(instance : super::StructuredStorage:: JET_INSTANCE, psesid : *mut super::StructuredStorage:: JET_SESID, szusername : *const i8, szpassword : *const i8) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBeginSessionW(instance : super::StructuredStorage:: JET_INSTANCE, psesid : *mut super::StructuredStorage:: JET_SESID, szusername : *const u16, szpassword : *const u16) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBeginTransaction(sesid : super::StructuredStorage:: JET_SESID) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBeginTransaction2(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetBeginTransaction3(sesid : super::StructuredStorage:: JET_SESID, trxid : i64, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCloseDatabase(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetBeginExternalBackupInstance(instance : JET_INSTANCE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetBeginSessionA(instance : JET_INSTANCE, psesid : *mut JET_SESID, szusername : *const i8, szpassword : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetBeginSessionW(instance : JET_INSTANCE, psesid : *mut JET_SESID, szusername : *const u16, szpassword : *const u16) -> i32); +windows_targets::link!("esent.dll" "system" fn JetBeginTransaction(sesid : JET_SESID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetBeginTransaction2(sesid : JET_SESID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetBeginTransaction3(sesid : JET_SESID, trxid : i64, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCloseDatabase(sesid : JET_SESID, dbid : u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetCloseFile(hffile : super::StructuredStorage:: JET_HANDLE) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCloseFileInstance(instance : super::StructuredStorage:: JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCloseTable(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCommitTransaction(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCommitTransaction2(sesid : super::StructuredStorage:: JET_SESID, grbit : u32, cmsecdurablecommit : u32, pcommitid : *mut JET_COMMIT_ID) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCompactA(sesid : super::StructuredStorage:: JET_SESID, szdatabasesrc : *const i8, szdatabasedest : *const i8, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_A, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCloseFileInstance(instance : JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCompactW(sesid : super::StructuredStorage:: JET_SESID, szdatabasesrc : *const u16, szdatabasedest : *const u16, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_W, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCloseTable(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCommitTransaction(sesid : JET_SESID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCommitTransaction2(sesid : JET_SESID, grbit : u32, cmsecdurablecommit : u32, pcommitid : *mut JET_COMMIT_ID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCompactA(sesid : JET_SESID, szdatabasesrc : *const i8, szdatabasedest : *const i8, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_A, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCompactW(sesid : JET_SESID, szdatabasesrc : *const u16, szdatabasedest : *const u16, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_W, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetComputeStats(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetComputeStats(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); windows_targets::link!("esent.dll" "system" fn JetConfigureProcessForCrashDump(grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2A(sesid : JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2W(sesid : JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseA(sesid : JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseW(sesid : JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2A(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2W(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndex2A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_A, cindexcreate : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndex2W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_W, cindexcreate : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndex3A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_A, cindexcreate : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndex2A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_A, cindexcreate : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndex3W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_W, cindexcreate : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndex2W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_W, cindexcreate : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndex4A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_A, cindexcreate : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndex3A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_A, cindexcreate : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndex4W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_W, cindexcreate : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndex3W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_W, cindexcreate : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, szkey : windows_sys::core::PCSTR, cbkey : u32, ldensity : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndex4A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_A, cindexcreate : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, szkey : windows_sys::core::PCWSTR, cbkey : u32, ldensity : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndex4W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_W, cindexcreate : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateInstance2A(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const i8, szdisplayname : *const i8, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, szkey : windows_sys::core::PCSTR, cbkey : u32, ldensity : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateInstance2W(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const u16, szdisplayname : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, szkey : windows_sys::core::PCWSTR, cbkey : u32, ldensity : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateInstance2A(pinstance : *mut JET_INSTANCE, szinstancename : *const i8, szdisplayname : *const i8, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateInstance2W(pinstance : *mut JET_INSTANCE, szinstancename : *const u16, szdisplayname : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateInstanceA(pinstance : *mut JET_INSTANCE, szinstancename : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateInstanceW(pinstance : *mut JET_INSTANCE, szinstancename : *const u16) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateInstanceA(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateInstanceW(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const u16) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2A(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_A) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2W(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_W) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_A) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3A(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_A) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_W) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3W(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_W) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_A) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4A(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_A) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_W) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4W(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_W) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_A) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexA(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_A) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_W) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexW(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_W) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_A) -> i32); +windows_targets::link!("esent.dll" "system" fn JetCreateTableW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_W) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDefragment2A(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetCreateTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDefragment2W(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDefragment2A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDefragment3A(sesid : JET_SESID, szdatabasename : *const i8, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDefragment2W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDefragment3W(sesid : JET_SESID, szdatabasename : *const u16, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDefragmentA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDefragmentW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDefragment3A(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const i8, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDelete(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDefragment3W(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const u16, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDefragmentA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDefragmentW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteColumnA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDelete(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteColumnW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteTableA(sesid : JET_SESID, dbid : u32, sztablename : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDeleteTableW(sesid : JET_SESID, dbid : u32, sztablename : *const u16) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2A(sesid : JET_SESID, szfilename : *const i8, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2W(sesid : JET_SESID, szfilename : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseA(sesid : JET_SESID, szfilename : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseW(sesid : JET_SESID, szfilename : *const u16) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteColumnA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteColumnW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDeleteTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2A(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2W(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDupCursor(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ptableid : *mut super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetDupSession(sesid : super::StructuredStorage:: JET_SESID, psesid : *mut super::StructuredStorage:: JET_SESID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDupCursor(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ptableid : *mut super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetDupSession(sesid : JET_SESID, psesid : *mut JET_SESID) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetEnableMultiInstanceA(psetsysparam : *const JET_SETSYSPARAM_A, csetsysparam : u32, pcsetsucceed : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetEnableMultiInstanceW(psetsysparam : *const JET_SETSYSPARAM_W, csetsysparam : u32, pcsetsucceed : *mut u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetEndExternalBackup() -> i32); +windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance(instance : JET_INSTANCE) -> i32); +windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance2(instance : JET_INSTANCE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetEndSession(sesid : JET_SESID, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance2(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetEndSession(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetEnumerateColumns(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cenumcolumnid : u32, rgenumcolumnid : *const JET_ENUMCOLUMNID, pcenumcolumn : *mut u32, prgenumcolumn : *mut *mut JET_ENUMCOLUMN, pfnrealloc : JET_PFNREALLOC, pvrealloccontext : *const core::ffi::c_void, cbdatamost : u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetEscrowUpdate(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pv : *const core::ffi::c_void, cbmax : u32, pvold : *mut core::ffi::c_void, cboldmax : u32, pcboldactual : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetEnumerateColumns(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cenumcolumnid : u32, rgenumcolumnid : *const JET_ENUMCOLUMNID, pcenumcolumn : *mut u32, prgenumcolumn : *mut *mut JET_ENUMCOLUMN, pfnrealloc : JET_PFNREALLOC, pvrealloccontext : *const core::ffi::c_void, cbdatamost : u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] +windows_targets::link!("esent.dll" "system" fn JetEscrowUpdate(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pv : *const core::ffi::c_void, cbmax : u32, pvold : *mut core::ffi::c_void, cboldmax : u32, pcboldactual : *mut u32, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetExternalRestore2A(szcheckpointfilepath : *const i8, szlogpath : *const i8, rgrstmap : *const JET_RSTMAP_A, crstfilemap : i32, szbackuplogpath : *const i8, ploginfo : *mut JET_LOGINFO_A, sztargetinstancename : *const i8, sztargetinstancelogpath : *const i8, sztargetinstancecheckpointpath : *const i8, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetExternalRestore2W(szcheckpointfilepath : *const u16, szlogpath : *const u16, rgrstmap : *const JET_RSTMAP_W, crstfilemap : i32, szbackuplogpath : *const u16, ploginfo : *mut JET_LOGINFO_W, sztargetinstancename : *const u16, sztargetinstancelogpath : *const u16, sztargetinstancecheckpointpath : *const u16, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetExternalRestoreA(szcheckpointfilepath : *const i8, szlogpath : *const i8, rgrstmap : *const JET_RSTMAP_A, crstfilemap : i32, szbackuplogpath : *const i8, genlow : i32, genhigh : i32, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetExternalRestoreW(szcheckpointfilepath : *const u16, szlogpath : *const u16, rgrstmap : *const JET_RSTMAP_W, crstfilemap : i32, szbackuplogpath : *const u16, genlow : i32, genhigh : i32, pfn : JET_PFNSTATUS) -> i32); windows_targets::link!("esent.dll" "system" fn JetFreeBuffer(pbbuf : windows_sys::core::PCSTR) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoA(szzdatabases : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szzdatabases : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, szzdatabases : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceA(instance : JET_INSTANCE, szzdatabases : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceW(instance : JET_INSTANCE, szzdatabases : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoW(wszzdatabases : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pcolumnnameorid : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pcolumnnameorid : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pwcolumnnameorid : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pwcolumnnameorid : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut i8, cbindexname : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut i8, cbindexname : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut u16, cbindexname : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut u16, cbindexname : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetCursorInfo(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetCursorInfo(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetDatabaseFileInfoA(szdatabasename : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetDatabaseFileInfoW(szdatabasename : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoA(sesid : JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoW(sesid : JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetErrorInfoW(pvcontext : *const core::ffi::c_void, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetGetInstanceInfoA(pcinstanceinfo : *mut u32, painstanceinfo : *mut *mut JET_INSTANCE_INFO_A) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetGetInstanceInfoW(pcinstanceinfo : *mut u32, painstanceinfo : *mut *mut JET_INSTANCE_INFO_W) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetInstanceMiscInfo(instance : JET_INSTANCE, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetInstanceMiscInfo(instance : super::StructuredStorage:: JET_INSTANCE, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetLS(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pls : *mut JET_LS, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetLS(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pls : *mut JET_LS, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetLock(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetLock(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetLogInfoA(szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2A(instance : super::StructuredStorage:: JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_A) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2W(instance : super::StructuredStorage:: JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_W) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2A(instance : JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_A) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2W(instance : JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_W) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceA(instance : JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceW(instance : JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetLogInfoW(szzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoA(sesid : JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const i8, szobjectname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoW(sesid : JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const u16, szobjectname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const i8, szobjectname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetRecordPosition(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *mut JET_RECPOS, cbrecpos : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const u16, szobjectname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetRecordSize(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetRecordPosition(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *mut JET_RECPOS, cbrecpos : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetRecordSize2(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE2, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetRecordSize(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetSecondaryIndexBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *mut core::ffi::c_void, cbsecondarykeymax : u32, pcbsecondarykeyactual : *mut u32, pvprimarybookmark : *mut core::ffi::c_void, cbprimarybookmarkmax : u32, pcbprimarybookmarkactual : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetSessionParameter(sesid : JET_SESID, sesparamid : u32, pvparam : *mut core::ffi::c_void, cbparammax : u32, pcbparamactual : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetRecordSize2(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE2, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterA(instance : JET_INSTANCE, sesid : JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut i8, cbmax : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetSecondaryIndexBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *mut core::ffi::c_void, cbsecondarykeymax : u32, pcbsecondarykeyactual : *mut u32, pvprimarybookmark : *mut core::ffi::c_void, cbprimarybookmarkmax : u32, pcbprimarybookmarkactual : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterW(instance : JET_INSTANCE, sesid : JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut u16, cbmax : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetSessionParameter(sesid : super::StructuredStorage:: JET_SESID, sesparamid : u32, pvparam : *mut core::ffi::c_void, cbparammax : u32, pcbparamactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterA(instance : super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut i8, cbmax : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterW(instance : super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut u16, cbmax : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTableInfoA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTableInfoA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTableInfoW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTableInfoW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetGetThreadStats(pvresult : *mut core::ffi::c_void, cbmax : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceA(instance : JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceW(instance : JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGetVersion(sesid : JET_SESID, pwversion : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGetVersion(sesid : super::StructuredStorage:: JET_SESID, pwversion : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGotoBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *const core::ffi::c_void, cbbookmark : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGotoBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *const core::ffi::c_void, cbbookmark : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGotoPosition(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *const JET_RECPOS) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGotoPosition(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *const JET_RECPOS) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGotoSecondaryIndexBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *const core::ffi::c_void, cbsecondarykey : u32, pvprimarybookmark : *const core::ffi::c_void, cbprimarybookmark : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGotoSecondaryIndexBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *const core::ffi::c_void, cbsecondarykey : u32, pvprimarybookmark : *const core::ffi::c_void, cbprimarybookmark : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetGrowDatabase(sesid : JET_SESID, dbid : u32, cpg : u32, pcpgreal : *const u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetIdle(sesid : JET_SESID, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetGrowDatabase(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, cpg : u32, pcpgreal : *const u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetIndexRecordCount(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pcrec : *mut u32, crecmax : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetInit(pinstance : *mut JET_INSTANCE) -> i32); +windows_targets::link!("esent.dll" "system" fn JetInit2(pinstance : *mut JET_INSTANCE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetInit3A(pinstance : *mut JET_INSTANCE, prstinfo : *const JET_RSTINFO_A, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetInit3W(pinstance : *mut JET_INSTANCE, prstinfo : *const JET_RSTINFO_W, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetIdle(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetIntersectIndexes(sesid : JET_SESID, rgindexrange : *const JET_INDEXRANGE, cindexrange : u32, precordlist : *mut JET_RECORDLIST, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetIndexRecordCount(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pcrec : *mut u32, crecmax : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetMakeKey(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetInit(pinstance : *mut super::StructuredStorage:: JET_INSTANCE) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetInit2(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetInit3A(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, prstinfo : *const JET_RSTINFO_A, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetInit3W(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, prstinfo : *const JET_RSTINFO_W, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetIntersectIndexes(sesid : super::StructuredStorage:: JET_SESID, rgindexrange : *const JET_INDEXRANGE, cindexrange : u32, precordlist : *mut JET_RECORDLIST, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetMakeKey(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetMove(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, crow : i32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetMove(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, crow : i32, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetOSSnapshotAbort(snapid : JET_OSSNAPID, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetOSSnapshotEnd(snapid : JET_OSSNAPID, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] @@ -291,151 +223,125 @@ windows_targets::link!("esent.dll" "system" fn JetOSSnapshotGetFreezeInfoA(snapi #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetOSSnapshotGetFreezeInfoW(snapid : JET_OSSNAPID, pcinstanceinfo : *mut u32, painstanceinfo : *mut *mut JET_INSTANCE_INFO_W, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetOSSnapshotPrepare(psnapid : *mut JET_OSSNAPID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOSSnapshotPrepareInstance(snapid : JET_OSSNAPID, instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOSSnapshotPrepareInstance(snapid : JET_OSSNAPID, instance : JET_INSTANCE, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetOSSnapshotThaw(snapid : JET_OSSNAPID, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetOSSnapshotTruncateLog(snapid : JET_OSSNAPID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOSSnapshotTruncateLogInstance(snapid : JET_OSSNAPID, instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOSSnapshotTruncateLogInstance(snapid : JET_OSSNAPID, instance : JET_INSTANCE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseA(sesid : JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseW(sesid : JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetOpenFileA(szfilename : *const i8, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szfilename : *const i8, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceA(instance : JET_INSTANCE, szfilename : *const i8, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, szfilename : *const u16, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceW(instance : JET_INSTANCE, szfilename : *const u16, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetOpenFileW(szfilename : *const u16, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenTableA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenTableW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenTempTable(sesid : super::StructuredStorage:: JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenTempTable(sesid : JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenTempTable2(sesid : super::StructuredStorage:: JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, lcid : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenTempTable2(sesid : JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, lcid : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenTempTable3(sesid : super::StructuredStorage:: JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, pidxunicode : *const JET_UNICODEINDEX, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenTempTable3(sesid : JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, pidxunicode : *const JET_UNICODEINDEX, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable(sesid : super::StructuredStorage:: JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable(sesid : JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable2(sesid : super::StructuredStorage:: JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE2) -> i32); +windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable2(sesid : JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE2) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetPrepareUpdate(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, prep : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetPrepareUpdate(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, prep : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetPrereadIndexRanges(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgindexranges : *const JET_INDEX_RANGE, cindexranges : u32, pcrangespreread : *mut u32, rgcolumnidpreread : *const u32, ccolumnidpreread : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetPrereadIndexRanges(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgindexranges : *const JET_INDEX_RANGE, cindexranges : u32, pcrangespreread : *mut u32, rgcolumnidpreread : *const u32, ccolumnidpreread : u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetPrereadKeys(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgpvkeys : *const *const core::ffi::c_void, rgcbkeys : *const u32, ckeys : i32, pckeyspreread : *mut i32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetPrereadKeys(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgpvkeys : *const *const core::ffi::c_void, rgcbkeys : *const u32, ckeys : i32, pckeyspreread : *mut i32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetReadFile(hffile : super::StructuredStorage:: JET_HANDLE, pv : *mut core::ffi::c_void, cb : u32, pcbactual : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetReadFileInstance(instance : super::StructuredStorage:: JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE, pv : *mut core::ffi::c_void, cb : u32, pcbactual : *mut u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRegisterCallback(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, pcallback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, phcallbackid : *const super::StructuredStorage:: JET_HANDLE) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRenameColumnA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const i8, sznamenew : *const i8, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetReadFileInstance(instance : JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE, pv : *mut core::ffi::c_void, cb : u32, pcbactual : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRenameColumnW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const u16, sznamenew : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRegisterCallback(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, pcallback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, phcallbackid : *const super::StructuredStorage:: JET_HANDLE) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRenameTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, szname : *const i8, sznamenew : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRenameColumnA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const i8, sznamenew : *const i8, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRenameTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, szname : *const u16, sznamenew : *const u16) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetResetSessionContext(sesid : super::StructuredStorage:: JET_SESID) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetResetTableSequential(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetResizeDatabase(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, cpgtarget : u32, pcpgactual : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRenameColumnW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const u16, sznamenew : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRenameTableA(sesid : JET_SESID, dbid : u32, szname : *const i8, sznamenew : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRenameTableW(sesid : JET_SESID, dbid : u32, szname : *const u16, sznamenew : *const u16) -> i32); +windows_targets::link!("esent.dll" "system" fn JetResetSessionContext(sesid : JET_SESID) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] +windows_targets::link!("esent.dll" "system" fn JetResetTableSequential(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetResizeDatabase(sesid : JET_SESID, dbid : u32, cpgtarget : u32, pcpgactual : *mut u32, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetRestore2A(sz : *const i8, szdest : *const i8, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetRestore2W(sz : *const u16, szdest : *const u16, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] windows_targets::link!("esent.dll" "system" fn JetRestoreA(szsource : *const i8, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, sz : *const i8, szdest : *const i8, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, sz : *const u16, szdest : *const u16, pfn : JET_PFNSTATUS) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] +windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceA(instance : JET_INSTANCE, sz : *const i8, szdest : *const i8, pfn : JET_PFNSTATUS) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceW(instance : JET_INSTANCE, sz : *const u16, szdest : *const u16, pfn : JET_PFNSTATUS) -> i32); windows_targets::link!("esent.dll" "system" fn JetRestoreW(szsource : *const u16, pfn : JET_PFNSTATUS) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRetrieveColumn(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *mut core::ffi::c_void, cbdata : u32, pcbactual : *mut u32, grbit : u32, pretinfo : *mut JET_RETINFO) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRetrieveColumns(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pretrievecolumn : *mut JET_RETRIEVECOLUMN, cretrievecolumn : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRetrieveKey(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvkey : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetRollback(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSeek(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRetrieveColumn(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *mut core::ffi::c_void, cbdata : u32, pcbactual : *mut u32, grbit : u32, pretinfo : *mut JET_RETINFO) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetColumn(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32, psetinfo : *const JET_SETINFO) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRetrieveColumns(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pretrievecolumn : *mut JET_RETRIEVECOLUMN, cretrievecolumn : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, szcolumnname : *const i8, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRetrieveKey(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvkey : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetRollback(sesid : JET_SESID, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, szcolumnname : *const u16, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSeek(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetColumns(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, psetcolumn : *const JET_SETCOLUMN, csetcolumn : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetColumn(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32, psetinfo : *const JET_SETINFO) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, szcolumnname : *const i8, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, szcolumnname : *const u16, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetColumns(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, psetcolumn : *const JET_SETCOLUMN, csetcolumn : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, itagsequence : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, itagsequence : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, itagsequence : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, itagsequence : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetCursorFilter(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgcolumnfilters : *const JET_INDEX_COLUMN, ccolumnfilters : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeA(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const i8, cpg : u32, pcpgreal : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetCursorFilter(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgcolumnfilters : *const JET_INDEX_COLUMN, ccolumnfilters : u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeA(sesid : JET_SESID, szdatabasename : *const i8, cpg : u32, pcpgreal : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeW(sesid : JET_SESID, szdatabasename : *const u16, cpg : u32, pcpgreal : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeW(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const u16, cpg : u32, pcpgreal : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetIndexRange(sesid : JET_SESID, tableidsrc : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetIndexRange(sesid : super::StructuredStorage:: JET_SESID, tableidsrc : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetLS(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ls : JET_LS, grbit : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetLS(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ls : JET_LS, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetSessionContext(sesid : JET_SESID, ulcontext : super::StructuredStorage:: JET_API_PTR) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetSessionParameter(sesid : JET_SESID, sesparamid : u32, pvparam : *const core::ffi::c_void, cbparam : u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetSessionContext(sesid : super::StructuredStorage:: JET_SESID, ulcontext : super::StructuredStorage:: JET_API_PTR) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterA(pinstance : *mut JET_INSTANCE, sesid : JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const i8) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetSessionParameter(sesid : super::StructuredStorage:: JET_SESID, sesparamid : u32, pvparam : *const core::ffi::c_void, cbparam : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterW(pinstance : *mut JET_INSTANCE, sesid : JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const u16) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterA(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const i8) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterW(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const u16) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetSetTableSequential(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetSetTableSequential(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetStopBackup() -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetStopBackupInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); +windows_targets::link!("esent.dll" "system" fn JetStopBackupInstance(instance : JET_INSTANCE) -> i32); windows_targets::link!("esent.dll" "system" fn JetStopService() -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance2(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetTerm(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetTerm2(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance(instance : JET_INSTANCE) -> i32); +windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance2(instance : JET_INSTANCE, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetTerm(instance : JET_INSTANCE) -> i32); +windows_targets::link!("esent.dll" "system" fn JetTerm2(instance : JET_INSTANCE, grbit : u32) -> i32); windows_targets::link!("esent.dll" "system" fn JetTruncateLog() -> i32); +windows_targets::link!("esent.dll" "system" fn JetTruncateLogInstance(instance : JET_INSTANCE) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetTruncateLogInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); -#[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetUnregisterCallback(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, hcallbackid : super::StructuredStorage:: JET_HANDLE) -> i32); +windows_targets::link!("esent.dll" "system" fn JetUnregisterCallback(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, hcallbackid : super::StructuredStorage:: JET_HANDLE) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetUpdate(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetUpdate(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32) -> i32); #[cfg(feature = "Win32_Storage_StructuredStorage")] -windows_targets::link!("esent.dll" "system" fn JetUpdate2(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32, grbit : u32) -> i32); +windows_targets::link!("esent.dll" "system" fn JetUpdate2(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32, grbit : u32) -> i32); pub const JET_BASE_NAME_LENGTH: u32 = 3u32; pub const JET_ColInfoGrbitMinimalInfo: u32 = 1073741824u32; pub const JET_ColInfoGrbitNonDerivedColumnsOnly: u32 = 2147483648u32; @@ -2066,11 +1972,12 @@ pub struct JET_INDEX_RANGE { pub rgEndColumns: *mut JET_INDEX_COLUMN, pub cEndColumns: u32, } +pub type JET_INSTANCE = usize; #[repr(C)] #[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy)] pub struct JET_INSTANCE_INFO_A { - pub hInstanceId: super::StructuredStorage::JET_INSTANCE, + pub hInstanceId: JET_INSTANCE, pub szInstanceName: windows_sys::core::PSTR, pub cDatabases: super::StructuredStorage::JET_API_PTR, pub szDatabaseFileName: *mut *mut i8, @@ -2081,7 +1988,7 @@ pub struct JET_INSTANCE_INFO_A { #[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy)] pub struct JET_INSTANCE_INFO_W { - pub hInstanceId: super::StructuredStorage::JET_INSTANCE, + pub hInstanceId: JET_INSTANCE, pub szInstanceName: windows_sys::core::PWSTR, pub cDatabases: super::StructuredStorage::JET_API_PTR, pub szDatabaseFileName: *mut *mut u16, @@ -2346,7 +2253,6 @@ pub struct JET_RETRIEVECOLUMN { pub err: i32, } #[repr(C)] -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy)] pub struct JET_RSTINFO_A { pub cbStruct: u32, @@ -2357,7 +2263,6 @@ pub struct JET_RSTINFO_A { pub pfnStatus: JET_PFNSTATUS, } #[repr(C)] -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy)] pub struct JET_RSTINFO_W { pub cbStruct: u32, @@ -2379,6 +2284,7 @@ pub struct JET_RSTMAP_W { pub szDatabaseName: windows_sys::core::PWSTR, pub szNewDatabaseName: windows_sys::core::PWSTR, } +pub type JET_SESID = usize; #[repr(C)] #[derive(Clone, Copy)] pub struct JET_SETCOLUMN { @@ -2681,9 +2587,7 @@ pub struct JET_USERDEFINEDDEFAULT_W { pub szDependantColumns: windows_sys::core::PWSTR, } #[cfg(feature = "Win32_Storage_StructuredStorage")] -pub type JET_CALLBACK = Option i32>; -#[cfg(feature = "Win32_Storage_StructuredStorage")] -pub type JET_PFNDURABLECOMMITCALLBACK = Option i32>; +pub type JET_CALLBACK = Option i32>; +pub type JET_PFNDURABLECOMMITCALLBACK = Option i32>; pub type JET_PFNREALLOC = Option *mut core::ffi::c_void>; -#[cfg(feature = "Win32_Storage_StructuredStorage")] -pub type JET_PFNSTATUS = Option i32>; +pub type JET_PFNSTATUS = Option i32>; diff --git a/crates/libs/sys/src/Windows/Win32/Storage/Packaging/Appx/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/Packaging/Appx/mod.rs index 9aa3d1d310..0e71566c1d 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/Packaging/Appx/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/Packaging/Appx/mod.rs @@ -48,7 +48,8 @@ windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn GetS windows_targets::link!("kernel32.dll" "system" fn GetStagedPackagePathByFullName(packagefullname : windows_sys::core::PCWSTR, pathlength : *mut u32, path : windows_sys::core::PWSTR) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-3.dll" "system" fn GetStagedPackagePathByFullName2(packagefullname : windows_sys::core::PCWSTR, packagepathtype : PackagePathType, pathlength : *mut u32, path : windows_sys::core::PWSTR) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("kernel32.dll" "system" fn OpenPackageInfoByFullName(packagefullname : windows_sys::core::PCWSTR, reserved : u32, packageinforeference : *mut *mut _PACKAGE_INFO_REFERENCE) -> super::super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn OpenPackageInfoByFullNameForUser(usersid : super::super::super::Foundation:: PSID, packagefullname : windows_sys::core::PCWSTR, reserved : u32, packageinforeference : *mut *mut _PACKAGE_INFO_REFERENCE) -> super::super::super::Foundation:: WIN32_ERROR); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn OpenPackageInfoByFullNameForUser(usersid : super::super::super::Security:: PSID, packagefullname : windows_sys::core::PCWSTR, reserved : u32, packageinforeference : *mut *mut _PACKAGE_INFO_REFERENCE) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("kernel32.dll" "system" fn PackageFamilyNameFromFullName(packagefullname : windows_sys::core::PCWSTR, packagefamilynamelength : *mut u32, packagefamilyname : windows_sys::core::PWSTR) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("kernel32.dll" "system" fn PackageFamilyNameFromId(packageid : *const PACKAGE_ID, packagefamilynamelength : *mut u32, packagefamilyname : windows_sys::core::PWSTR) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("kernel32.dll" "system" fn PackageFullNameFromId(packageid : *const PACKAGE_ID, packagefullnamelength : *mut u32, packagefullname : windows_sys::core::PWSTR) -> super::super::super::Foundation:: WIN32_ERROR); @@ -57,7 +58,8 @@ windows_targets::link!("kernel32.dll" "system" fn PackageNameAndPublisherIdFromF windows_targets::link!("kernel32.dll" "system" fn ParseApplicationUserModelId(applicationusermodelid : windows_sys::core::PCWSTR, packagefamilynamelength : *mut u32, packagefamilyname : windows_sys::core::PWSTR, packagerelativeapplicationidlength : *mut u32, packagerelativeapplicationid : windows_sys::core::PWSTR) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("kernel32.dll" "system" fn ReleasePackageVirtualizationContext(context : PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE)); windows_targets::link!("kernelbase.dll" "system" fn RemovePackageDependency(packagedependencycontext : PACKAGEDEPENDENCY_CONTEXT) -> windows_sys::core::HRESULT); -windows_targets::link!("kernelbase.dll" "system" fn TryCreatePackageDependency(user : super::super::super::Foundation:: PSID, packagefamilyname : windows_sys::core::PCWSTR, minversion : PACKAGE_VERSION, packagedependencyprocessorarchitectures : PackageDependencyProcessorArchitectures, lifetimekind : PackageDependencyLifetimeKind, lifetimeartifact : windows_sys::core::PCWSTR, options : CreatePackageDependencyOptions, packagedependencyid : *mut windows_sys::core::PWSTR) -> windows_sys::core::HRESULT); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("kernelbase.dll" "system" fn TryCreatePackageDependency(user : super::super::super::Security:: PSID, packagefamilyname : windows_sys::core::PCWSTR, minversion : PACKAGE_VERSION, packagedependencyprocessorarchitectures : PackageDependencyProcessorArchitectures, lifetimekind : PackageDependencyLifetimeKind, lifetimeartifact : windows_sys::core::PCWSTR, options : CreatePackageDependencyOptions, packagedependencyid : *mut windows_sys::core::PWSTR) -> windows_sys::core::HRESULT); windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn VerifyApplicationUserModelId(applicationusermodelid : windows_sys::core::PCWSTR) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn VerifyPackageFamilyName(packagefamilyname : windows_sys::core::PCWSTR) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn VerifyPackageFullName(packagefullname : windows_sys::core::PCWSTR) -> super::super::super::Foundation:: WIN32_ERROR); @@ -301,7 +303,7 @@ pub const AppxEncryptionFactory: windows_sys::core::GUID = windows_sys::core::GU pub const AppxFactory: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5842a140_ff9f_4166_8f5c_62f5b7b0c781); pub const AppxPackageEditor: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf004f2ca_aebc_4b0d_bf58_e516d5bcc0ab); pub const AppxPackagingDiagnosticEventSinkManager: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x50ca0a46_1588_4161_8ed2_ef9e469ced5d); -pub type PACKAGEDEPENDENCY_CONTEXT = isize; +pub type PACKAGEDEPENDENCY_CONTEXT = *mut core::ffi::c_void; #[repr(C, packed(4))] #[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))] #[derive(Clone, Copy)] @@ -367,7 +369,7 @@ pub struct PACKAGE_VERSION_0_0 { pub Minor: u16, pub Major: u16, } -pub type PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE = isize; +pub type PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct _PACKAGE_INFO_REFERENCE { diff --git a/crates/libs/sys/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs index 26052e6a82..87c9dddaea 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs @@ -129,7 +129,7 @@ pub struct PRJ_COMPLETE_COMMAND_EXTENDED_PARAMETERS_0_0 { pub struct PRJ_COMPLETE_COMMAND_EXTENDED_PARAMETERS_0_1 { pub NotificationMask: PRJ_NOTIFY_TYPES, } -pub type PRJ_DIR_ENTRY_BUFFER_HANDLE = isize; +pub type PRJ_DIR_ENTRY_BUFFER_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct PRJ_EXTENDED_INFO { @@ -158,7 +158,7 @@ pub struct PRJ_FILE_BASIC_INFO { pub ChangeTime: i64, pub FileAttributes: u32, } -pub type PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT = isize; +pub type PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct PRJ_NOTIFICATION_MAPPING { diff --git a/crates/libs/sys/src/Windows/Win32/Storage/StructuredStorage/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/StructuredStorage/mod.rs index 44ebfc0938..b56885b896 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/StructuredStorage/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/StructuredStorage/mod.rs @@ -1,5 +1,3 @@ pub type JET_API_PTR = usize; pub type JET_HANDLE = usize; -pub type JET_INSTANCE = usize; -pub type JET_SESID = usize; pub type JET_TABLEID = usize; diff --git a/crates/libs/sys/src/Windows/Win32/Storage/Xps/mod.rs b/crates/libs/sys/src/Windows/Win32/Storage/Xps/mod.rs index f264cd98db..06febc6bf2 100644 --- a/crates/libs/sys/src/Windows/Win32/Storage/Xps/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/Storage/Xps/mod.rs @@ -299,7 +299,6 @@ pub struct DRAWPATRECT { pub wStyle: u16, pub wPattern: u16, } -pub type HPTPROVIDER = isize; #[repr(C)] #[derive(Clone, Copy)] pub struct PSFEATURE_CUSTPAPER { diff --git a/crates/libs/sys/src/Windows/Win32/System/Antimalware/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Antimalware/mod.rs index e323ad2bac..94be961c5b 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Antimalware/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Antimalware/mod.rs @@ -108,5 +108,5 @@ pub struct AMSI_UAC_REQUEST_PACKAGED_APP_INFO { pub lpApplicationId: windows_sys::core::PWSTR, } pub const CAntimalware: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfdb00e52_a214_4aa1_8fba_4357bb0072ec); -pub type HAMSICONTEXT = isize; -pub type HAMSISESSION = isize; +pub type HAMSICONTEXT = *mut core::ffi::c_void; +pub type HAMSISESSION = *mut core::ffi::c_void; diff --git a/crates/libs/sys/src/Windows/Win32/System/Com/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Com/mod.rs index 4f88519d64..42d7854958 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Com/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Com/mod.rs @@ -203,6 +203,7 @@ pub const CLSCTX_RESERVED4: CLSCTX = 512u32; pub const CLSCTX_RESERVED5: CLSCTX = 2048u32; pub const CLSCTX_RESERVED6: CLSCTX = 16777216u32; pub const CLSCTX_SERVER: CLSCTX = 21u32; +pub const CLSID_GlobalOptions: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0000034b_0000_0000_c000_000000000046); pub const COINITBASE_MULTITHREADED: COINITBASE = 0i32; pub const COINIT_APARTMENTTHREADED: COINIT = 2i32; pub const COINIT_DISABLE_OLE1DDE: COINIT = 4i32; @@ -753,8 +754,8 @@ pub struct COSERVERINFO { pub pAuthInfo: *mut COAUTHINFO, pub dwReserved2: u32, } -pub type CO_DEVICE_CATALOG_COOKIE = isize; -pub type CO_MTA_USAGE_COOKIE = isize; +pub type CO_DEVICE_CATALOG_COOKIE = *mut core::ffi::c_void; +pub type CO_MTA_USAGE_COOKIE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct CSPLATFORM { @@ -950,7 +951,7 @@ pub struct MULTI_QI { pub pItf: *mut core::ffi::c_void, pub hr: windows_sys::core::HRESULT, } -pub type MachineGlobalObjectTableRegistrationToken = isize; +pub type MachineGlobalObjectTableRegistrationToken = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct QUERYCONTEXT { diff --git a/crates/libs/sys/src/Windows/Win32/System/Console/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Console/mod.rs index 701a665fda..14829f5038 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Console/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Console/mod.rs @@ -85,7 +85,7 @@ windows_targets::link!("kernel32.dll" "system" fn SetConsoleWindowInfo(hconsoleo windows_targets::link!("kernel32.dll" "system" fn SetCurrentConsoleFontEx(hconsoleoutput : super::super::Foundation:: HANDLE, bmaximumwindow : super::super::Foundation:: BOOL, lpconsolecurrentfontex : *const CONSOLE_FONT_INFOEX) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn SetStdHandle(nstdhandle : STD_HANDLE, hhandle : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn SetStdHandleEx(nstdhandle : STD_HANDLE, hhandle : super::super::Foundation:: HANDLE, phprevvalue : *mut super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); -windows_targets::link!("kernel32.dll" "system" fn WriteConsoleA(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : *const core::ffi::c_void, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("kernel32.dll" "system" fn WriteConsoleA(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : windows_sys::core::PCSTR, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn WriteConsoleInputA(hconsoleinput : super::super::Foundation:: HANDLE, lpbuffer : *const INPUT_RECORD, nlength : u32, lpnumberofeventswritten : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn WriteConsoleInputW(hconsoleinput : super::super::Foundation:: HANDLE, lpbuffer : *const INPUT_RECORD, nlength : u32, lpnumberofeventswritten : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn WriteConsoleOutputA(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : *const CHAR_INFO, dwbuffersize : COORD, dwbuffercoord : COORD, lpwriteregion : *mut SMALL_RECT) -> super::super::Foundation:: BOOL); @@ -93,7 +93,7 @@ windows_targets::link!("kernel32.dll" "system" fn WriteConsoleOutputAttribute(hc windows_targets::link!("kernel32.dll" "system" fn WriteConsoleOutputCharacterA(hconsoleoutput : super::super::Foundation:: HANDLE, lpcharacter : windows_sys::core::PCSTR, nlength : u32, dwwritecoord : COORD, lpnumberofcharswritten : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn WriteConsoleOutputCharacterW(hconsoleoutput : super::super::Foundation:: HANDLE, lpcharacter : windows_sys::core::PCWSTR, nlength : u32, dwwritecoord : COORD, lpnumberofcharswritten : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn WriteConsoleOutputW(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : *const CHAR_INFO, dwbuffersize : COORD, dwbuffercoord : COORD, lpwriteregion : *mut SMALL_RECT) -> super::super::Foundation:: BOOL); -windows_targets::link!("kernel32.dll" "system" fn WriteConsoleW(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : *const core::ffi::c_void, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("kernel32.dll" "system" fn WriteConsoleW(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : windows_sys::core::PCWSTR, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); pub const ALTNUMPAD_BIT: u32 = 67108864u32; pub const ATTACH_PARENT_PROCESS: u32 = 4294967295u32; pub const BACKGROUND_BLUE: CONSOLE_CHARACTER_ATTRIBUTES = 16u16; diff --git a/crates/libs/sys/src/Windows/Win32/System/DataExchange/mod.rs b/crates/libs/sys/src/Windows/Win32/System/DataExchange/mod.rs index a98a5e0b88..27231c979e 100644 --- a/crates/libs/sys/src/Windows/Win32/System/DataExchange/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/DataExchange/mod.rs @@ -318,10 +318,10 @@ pub struct DDEUP { pub cfFormat: i16, pub rgb: [u8; 1], } -pub type HCONV = isize; -pub type HCONVLIST = isize; -pub type HDDEDATA = isize; -pub type HSZ = isize; +pub type HCONV = *mut core::ffi::c_void; +pub type HCONVLIST = *mut core::ffi::c_void; +pub type HDDEDATA = *mut core::ffi::c_void; +pub type HSZ = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct HSZPAIR { diff --git a/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Debug/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Debug/mod.rs index 9215d64531..8d8c6200e4 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Debug/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Debug/mod.rs @@ -187,14 +187,14 @@ windows_targets::link!("kernel32.dll" "system" fn RtlUnwind(targetframe : *const windows_targets::link!("kernel32.dll" "system" fn RtlUnwindEx(targetframe : *const core::ffi::c_void, targetip : *const core::ffi::c_void, exceptionrecord : *const EXCEPTION_RECORD, returnvalue : *const core::ffi::c_void, contextrecord : *const CONTEXT, historytable : *const UNWIND_HISTORY_TABLE)); #[cfg(target_arch = "aarch64")] #[cfg(feature = "Win32_System_Kernel")] -windows_targets::link!("kernel32.dll" "system" fn RtlVirtualUnwind(handlertype : RTL_VIRTUAL_UNWIND_HANDLER_TYPE, imagebase : usize, controlpc : usize, functionentry : *const IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, contextrecord : *mut CONTEXT, handlerdata : *mut *mut core::ffi::c_void, establisherframe : *mut usize, contextpointers : *mut KNONVOLATILE_CONTEXT_POINTERS_ARM64) -> super::super::Kernel:: EXCEPTION_ROUTINE); +windows_targets::link!("kernel32.dll" "system" fn RtlVirtualUnwind(handlertype : RTL_VIRTUAL_UNWIND_HANDLER_TYPE, imagebase : usize, controlpc : usize, functionentry : *const IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, contextrecord : *mut CONTEXT, handlerdata : *mut *mut core::ffi::c_void, establisherframe : *mut usize, contextpointers : *mut KNONVOLATILE_CONTEXT_POINTERS) -> super::super::Kernel:: EXCEPTION_ROUTINE); #[cfg(any(target_arch = "arm64ec", target_arch = "x86_64"))] #[cfg(feature = "Win32_System_Kernel")] windows_targets::link!("kernel32.dll" "system" fn RtlVirtualUnwind(handlertype : RTL_VIRTUAL_UNWIND_HANDLER_TYPE, imagebase : u64, controlpc : u64, functionentry : *const IMAGE_RUNTIME_FUNCTION_ENTRY, contextrecord : *mut CONTEXT, handlerdata : *mut *mut core::ffi::c_void, establisherframe : *mut u64, contextpointers : *mut KNONVOLATILE_CONTEXT_POINTERS) -> super::super::Kernel:: EXCEPTION_ROUTINE); windows_targets::link!("dbghelp.dll" "system" fn SearchTreeForFile(rootpath : windows_sys::core::PCSTR, inputpathname : windows_sys::core::PCSTR, outputpathbuffer : windows_sys::core::PSTR) -> super::super::super::Foundation:: BOOL); windows_targets::link!("dbghelp.dll" "system" fn SearchTreeForFileW(rootpath : windows_sys::core::PCWSTR, inputpathname : windows_sys::core::PCWSTR, outputpathbuffer : windows_sys::core::PWSTR) -> super::super::super::Foundation:: BOOL); windows_targets::link!("dbghelp.dll" "system" fn SetCheckUserInterruptShared(lpstartaddress : LPCALL_BACK_USER_INTERRUPT_ROUTINE)); -windows_targets::link!("kernel32.dll" "system" fn SetErrorMode(umode : THREAD_ERROR_MODE) -> u32); +windows_targets::link!("kernel32.dll" "system" fn SetErrorMode(umode : THREAD_ERROR_MODE) -> THREAD_ERROR_MODE); #[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))] #[cfg(all(feature = "Win32_System_Kernel", feature = "Win32_System_SystemInformation"))] windows_targets::link!("imagehlp.dll" "system" fn SetImageConfigInformation(loadedimage : *mut LOADED_IMAGE, imageconfiginformation : *const IMAGE_LOAD_CONFIG_DIRECTORY64) -> super::super::super::Foundation:: BOOL); @@ -3514,6 +3514,31 @@ pub struct KDHELP64 { pub Reserved0: [u64; 2], } #[repr(C)] +#[cfg(target_arch = "aarch64")] +#[derive(Clone, Copy)] +pub struct KNONVOLATILE_CONTEXT_POINTERS { + pub X19: *mut u64, + pub X20: *mut u64, + pub X21: *mut u64, + pub X22: *mut u64, + pub X23: *mut u64, + pub X24: *mut u64, + pub X25: *mut u64, + pub X26: *mut u64, + pub X27: *mut u64, + pub X28: *mut u64, + pub Fp: *mut u64, + pub Lr: *mut u64, + pub D8: *mut u64, + pub D9: *mut u64, + pub D10: *mut u64, + pub D11: *mut u64, + pub D12: *mut u64, + pub D13: *mut u64, + pub D14: *mut u64, + pub D15: *mut u64, +} +#[repr(C)] #[cfg(any(target_arch = "arm64ec", target_arch = "x86_64"))] #[derive(Clone, Copy)] pub struct KNONVOLATILE_CONTEXT_POINTERS { @@ -3583,31 +3608,6 @@ pub struct KNONVOLATILE_CONTEXT_POINTERS { pub Dummy: u32, } #[repr(C)] -#[cfg(target_arch = "aarch64")] -#[derive(Clone, Copy)] -pub struct KNONVOLATILE_CONTEXT_POINTERS_ARM64 { - pub X19: *mut u64, - pub X20: *mut u64, - pub X21: *mut u64, - pub X22: *mut u64, - pub X23: *mut u64, - pub X24: *mut u64, - pub X25: *mut u64, - pub X26: *mut u64, - pub X27: *mut u64, - pub X28: *mut u64, - pub Fp: *mut u64, - pub Lr: *mut u64, - pub D8: *mut u64, - pub D9: *mut u64, - pub D10: *mut u64, - pub D11: *mut u64, - pub D12: *mut u64, - pub D13: *mut u64, - pub D14: *mut u64, - pub D15: *mut u64, -} -#[repr(C)] #[derive(Clone, Copy)] pub struct LDT_ENTRY { pub LimitLow: u16, diff --git a/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Etw/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Etw/mod.rs index 8715528b93..1b942e91cd 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Etw/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Diagnostics/Etw/mod.rs @@ -8,20 +8,21 @@ windows_targets::link!("advapi32.dll" "system" fn EnableTraceEx(providerid : *co windows_targets::link!("advapi32.dll" "system" fn EnableTraceEx2(tracehandle : CONTROLTRACE_HANDLE, providerid : *const windows_sys::core::GUID, controlcode : u32, level : u8, matchanykeyword : u64, matchallkeyword : u64, timeout : u32, enableparameters : *const ENABLE_TRACE_PARAMETERS) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn EnumerateTraceGuids(guidpropertiesarray : *mut *mut TRACE_GUID_PROPERTIES, propertyarraycount : u32, guidcount : *mut u32) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn EnumerateTraceGuidsEx(tracequeryinfoclass : TRACE_QUERY_INFO_CLASS, inbuffer : *const core::ffi::c_void, inbuffersize : u32, outbuffer : *mut core::ffi::c_void, outbuffersize : u32, returnlength : *mut u32) -> super::super::super::Foundation:: WIN32_ERROR); -windows_targets::link!("advapi32.dll" "system" fn EventAccessControl(guid : *const windows_sys::core::GUID, operation : u32, sid : super::super::super::Foundation:: PSID, rights : u32, allowordeny : super::super::super::Foundation:: BOOLEAN) -> u32); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("advapi32.dll" "system" fn EventAccessControl(guid : *const windows_sys::core::GUID, operation : u32, sid : super::super::super::Security:: PSID, rights : u32, allowordeny : super::super::super::Foundation:: BOOLEAN) -> u32); #[cfg(feature = "Win32_Security")] windows_targets::link!("advapi32.dll" "system" fn EventAccessQuery(guid : *const windows_sys::core::GUID, buffer : super::super::super::Security:: PSECURITY_DESCRIPTOR, buffersize : *mut u32) -> u32); windows_targets::link!("advapi32.dll" "system" fn EventAccessRemove(guid : *const windows_sys::core::GUID) -> u32); windows_targets::link!("advapi32.dll" "system" fn EventActivityIdControl(controlcode : u32, activityid : *mut windows_sys::core::GUID) -> u32); -windows_targets::link!("advapi32.dll" "system" fn EventEnabled(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR) -> super::super::super::Foundation:: BOOLEAN); -windows_targets::link!("advapi32.dll" "system" fn EventProviderEnabled(reghandle : u64, level : u8, keyword : u64) -> super::super::super::Foundation:: BOOLEAN); +windows_targets::link!("advapi32.dll" "system" fn EventEnabled(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR) -> super::super::super::Foundation:: BOOLEAN); +windows_targets::link!("advapi32.dll" "system" fn EventProviderEnabled(reghandle : REGHANDLE, level : u8, keyword : u64) -> super::super::super::Foundation:: BOOLEAN); windows_targets::link!("advapi32.dll" "system" fn EventRegister(providerid : *const windows_sys::core::GUID, enablecallback : PENABLECALLBACK, callbackcontext : *const core::ffi::c_void, reghandle : *mut u64) -> u32); -windows_targets::link!("advapi32.dll" "system" fn EventSetInformation(reghandle : u64, informationclass : EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> u32); -windows_targets::link!("advapi32.dll" "system" fn EventUnregister(reghandle : u64) -> u32); -windows_targets::link!("advapi32.dll" "system" fn EventWrite(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); -windows_targets::link!("advapi32.dll" "system" fn EventWriteEx(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); -windows_targets::link!("advapi32.dll" "system" fn EventWriteString(reghandle : u64, level : u8, keyword : u64, string : windows_sys::core::PCWSTR) -> u32); -windows_targets::link!("advapi32.dll" "system" fn EventWriteTransfer(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); +windows_targets::link!("advapi32.dll" "system" fn EventSetInformation(reghandle : REGHANDLE, informationclass : EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> u32); +windows_targets::link!("advapi32.dll" "system" fn EventUnregister(reghandle : REGHANDLE) -> u32); +windows_targets::link!("advapi32.dll" "system" fn EventWrite(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); +windows_targets::link!("advapi32.dll" "system" fn EventWriteEx(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); +windows_targets::link!("advapi32.dll" "system" fn EventWriteString(reghandle : REGHANDLE, level : u8, keyword : u64, string : windows_sys::core::PCWSTR) -> u32); +windows_targets::link!("advapi32.dll" "system" fn EventWriteTransfer(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR, activityid : *const windows_sys::core::GUID, relatedactivityid : *const windows_sys::core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); windows_targets::link!("advapi32.dll" "system" fn FlushTraceA(tracehandle : CONTROLTRACE_HANDLE, instancename : windows_sys::core::PCSTR, properties : *mut EVENT_TRACE_PROPERTIES) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn FlushTraceW(tracehandle : CONTROLTRACE_HANDLE, instancename : windows_sys::core::PCWSTR, properties : *mut EVENT_TRACE_PROPERTIES) -> super::super::super::Foundation:: WIN32_ERROR); windows_targets::link!("advapi32.dll" "system" fn GetTraceEnableFlags(tracehandle : u64) -> u32); @@ -1599,6 +1600,7 @@ pub struct PROVIDER_FILTER_INFO { pub PropertyCount: u32, pub EventPropertyInfoArray: [EVENT_PROPERTY_INFO; 1], } +pub type REGHANDLE = i64; #[repr(C)] #[derive(Clone, Copy)] pub struct RELOGSTREAM_HANDLE { diff --git a/crates/libs/sys/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs index 4f00f4786e..564c9a6f87 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs @@ -73,8 +73,8 @@ pub type PSS_PROCESS_FLAGS = i32; pub type PSS_QUERY_INFORMATION_CLASS = i32; pub type PSS_THREAD_FLAGS = i32; pub type PSS_WALK_INFORMATION_CLASS = i32; -pub type HPSS = isize; -pub type HPSSWALK = isize; +pub type HPSS = *mut core::ffi::c_void; +pub type HPSSWALK = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct PSS_ALLOCATOR { diff --git a/crates/libs/sys/src/Windows/Win32/System/ErrorReporting/mod.rs b/crates/libs/sys/src/Windows/Win32/System/ErrorReporting/mod.rs index a8ca0f8700..4b0e088ad6 100644 --- a/crates/libs/sys/src/Windows/Win32/System/ErrorReporting/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/ErrorReporting/mod.rs @@ -189,8 +189,8 @@ pub type WER_REPORT_TYPE = i32; pub type WER_REPORT_UI = i32; pub type WER_SUBMIT_FLAGS = u32; pub type WER_SUBMIT_RESULT = i32; -pub type HREPORT = isize; -pub type HREPORTSTORE = isize; +pub type HREPORT = *mut core::ffi::c_void; +pub type HREPORTSTORE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct WER_DUMP_CUSTOM_OPTIONS { diff --git a/crates/libs/sys/src/Windows/Win32/System/EventLog/mod.rs b/crates/libs/sys/src/Windows/Win32/System/EventLog/mod.rs index 2b5773afa2..dfeab3cdb4 100644 --- a/crates/libs/sys/src/Windows/Win32/System/EventLog/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/EventLog/mod.rs @@ -11,15 +11,23 @@ windows_targets::link!("wevtapi.dll" "system" fn EvtClose(object : EVT_HANDLE) - windows_targets::link!("wevtapi.dll" "system" fn EvtCreateBookmark(bookmarkxml : windows_sys::core::PCWSTR) -> EVT_HANDLE); windows_targets::link!("wevtapi.dll" "system" fn EvtCreateRenderContext(valuepathscount : u32, valuepaths : *const windows_sys::core::PCWSTR, flags : u32) -> EVT_HANDLE); windows_targets::link!("wevtapi.dll" "system" fn EvtExportLog(session : EVT_HANDLE, path : windows_sys::core::PCWSTR, query : windows_sys::core::PCWSTR, targetfilepath : windows_sys::core::PCWSTR, flags : u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtFormatMessage(publishermetadata : EVT_HANDLE, event : EVT_HANDLE, messageid : u32, valuecount : u32, values : *const EVT_VARIANT, flags : u32, buffersize : u32, buffer : windows_sys::core::PWSTR, bufferused : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtGetChannelConfigProperty(channelconfig : EVT_HANDLE, propertyid : EVT_CHANNEL_CONFIG_PROPERTY_ID, flags : u32, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtGetEventInfo(event : EVT_HANDLE, propertyid : EVT_EVENT_PROPERTY_ID, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtGetEventMetadataProperty(eventmetadata : EVT_HANDLE, propertyid : EVT_EVENT_METADATA_PROPERTY_ID, flags : u32, eventmetadatapropertybuffersize : u32, eventmetadatapropertybuffer : *mut EVT_VARIANT, eventmetadatapropertybufferused : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wevtapi.dll" "system" fn EvtGetExtendedStatus(buffersize : u32, buffer : windows_sys::core::PWSTR, bufferused : *mut u32) -> u32); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtGetLogInfo(log : EVT_HANDLE, propertyid : EVT_LOG_PROPERTY_ID, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtGetObjectArrayProperty(objectarray : isize, propertyid : u32, arrayindex : u32, flags : u32, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wevtapi.dll" "system" fn EvtGetObjectArraySize(objectarray : isize, objectarraysize : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtGetPublisherMetadataProperty(publishermetadata : EVT_HANDLE, propertyid : EVT_PUBLISHER_METADATA_PROPERTY_ID, flags : u32, publishermetadatapropertybuffersize : u32, publishermetadatapropertybuffer : *mut EVT_VARIANT, publishermetadatapropertybufferused : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtGetQueryInfo(queryorsubscription : EVT_HANDLE, propertyid : EVT_QUERY_PROPERTY_ID, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wevtapi.dll" "system" fn EvtNext(resultset : EVT_HANDLE, eventssize : u32, events : *mut isize, timeout : u32, flags : u32, returned : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wevtapi.dll" "system" fn EvtNextChannelPath(channelenum : EVT_HANDLE, channelpathbuffersize : u32, channelpathbuffer : windows_sys::core::PWSTR, channelpathbufferused : *mut u32) -> super::super::Foundation:: BOOL); @@ -36,6 +44,7 @@ windows_targets::link!("wevtapi.dll" "system" fn EvtQuery(session : EVT_HANDLE, windows_targets::link!("wevtapi.dll" "system" fn EvtRender(context : EVT_HANDLE, fragment : EVT_HANDLE, flags : u32, buffersize : u32, buffer : *mut core::ffi::c_void, bufferused : *mut u32, propertycount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wevtapi.dll" "system" fn EvtSaveChannelConfig(channelconfig : EVT_HANDLE, flags : u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wevtapi.dll" "system" fn EvtSeek(resultset : EVT_HANDLE, position : i64, bookmark : EVT_HANDLE, timeout : u32, flags : u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wevtapi.dll" "system" fn EvtSetChannelConfigProperty(channelconfig : EVT_HANDLE, propertyid : EVT_CHANNEL_CONFIG_PROPERTY_ID, flags : u32, propertyvalue : *const EVT_VARIANT) -> super::super::Foundation:: BOOL); windows_targets::link!("wevtapi.dll" "system" fn EvtSubscribe(session : EVT_HANDLE, signalevent : super::super::Foundation:: HANDLE, channelpath : windows_sys::core::PCWSTR, query : windows_sys::core::PCWSTR, bookmark : EVT_HANDLE, context : *const core::ffi::c_void, callback : EVT_SUBSCRIBE_CALLBACK, flags : u32) -> EVT_HANDLE); windows_targets::link!("wevtapi.dll" "system" fn EvtUpdateBookmark(bookmark : EVT_HANDLE, event : EVT_HANDLE) -> super::super::Foundation:: BOOL); @@ -51,8 +60,10 @@ windows_targets::link!("advapi32.dll" "system" fn ReadEventLogA(heventlog : supe windows_targets::link!("advapi32.dll" "system" fn ReadEventLogW(heventlog : super::super::Foundation:: HANDLE, dwreadflags : READ_EVENT_LOG_READ_FLAGS, dwrecordoffset : u32, lpbuffer : *mut core::ffi::c_void, nnumberofbytestoread : u32, pnbytesread : *mut u32, pnminnumberofbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn RegisterEventSourceA(lpuncservername : windows_sys::core::PCSTR, lpsourcename : windows_sys::core::PCSTR) -> super::super::Foundation:: HANDLE); windows_targets::link!("advapi32.dll" "system" fn RegisterEventSourceW(lpuncservername : windows_sys::core::PCWSTR, lpsourcename : windows_sys::core::PCWSTR) -> super::super::Foundation:: HANDLE); -windows_targets::link!("advapi32.dll" "system" fn ReportEventA(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Foundation:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_sys::core::PCSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); -windows_targets::link!("advapi32.dll" "system" fn ReportEventW(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Foundation:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_sys::core::PCWSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("advapi32.dll" "system" fn ReportEventA(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Security:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_sys::core::PCSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("advapi32.dll" "system" fn ReportEventW(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Security:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_sys::core::PCWSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); pub const EVENTLOG_AUDIT_FAILURE: REPORT_EVENT_TYPE = 16u16; pub const EVENTLOG_AUDIT_SUCCESS: REPORT_EVENT_TYPE = 8u16; pub const EVENTLOG_ERROR_TYPE: REPORT_EVENT_TYPE = 1u16; @@ -313,6 +324,7 @@ pub struct EVT_RPC_LOGIN { pub Flags: u32, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct EVT_VARIANT { pub Anonymous: EVT_VARIANT_0, @@ -320,6 +332,7 @@ pub struct EVT_VARIANT { pub Type: u32, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub union EVT_VARIANT_0 { pub BooleanVal: super::super::Foundation::BOOL, @@ -339,7 +352,7 @@ pub union EVT_VARIANT_0 { pub StringVal: windows_sys::core::PCWSTR, pub AnsiStringVal: windows_sys::core::PCSTR, pub BinaryVal: *mut u8, - pub SidVal: super::super::Foundation::PSID, + pub SidVal: super::super::Security::PSID, pub SizeTVal: usize, pub BooleanArr: *mut super::super::Foundation::BOOL, pub SByteArr: *mut i8, @@ -357,7 +370,7 @@ pub union EVT_VARIANT_0 { pub GuidArr: *mut windows_sys::core::GUID, pub StringArr: *mut windows_sys::core::PWSTR, pub AnsiStringArr: *mut windows_sys::core::PSTR, - pub SidArr: *mut super::super::Foundation::PSID, + pub SidArr: *mut super::super::Security::PSID, pub SizeTArr: *mut usize, pub EvtHandleVal: EVT_HANDLE, pub XmlVal: windows_sys::core::PCWSTR, diff --git a/crates/libs/sys/src/Windows/Win32/System/GroupPolicy/mod.rs b/crates/libs/sys/src/Windows/Win32/System/GroupPolicy/mod.rs index e1f18caca5..134ec16aee 100644 --- a/crates/libs/sys/src/Windows/Win32/System/GroupPolicy/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/GroupPolicy/mod.rs @@ -8,8 +8,10 @@ windows_targets::link!("gpedit.dll" "system" fn ExportRSoPData(lpnamespace : win windows_targets::link!("userenv.dll" "system" fn FreeGPOListA(pgpolist : *const GROUP_POLICY_OBJECTA) -> super::super::Foundation:: BOOL); windows_targets::link!("userenv.dll" "system" fn FreeGPOListW(pgpolist : *const GROUP_POLICY_OBJECTW) -> super::super::Foundation:: BOOL); windows_targets::link!("userenv.dll" "system" fn GenerateGPNotification(bmachine : super::super::Foundation:: BOOL, lpwszmgmtproduct : windows_sys::core::PCWSTR, dwmgmtproductoptions : u32) -> u32); -windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListA(dwflags : u32, pmachinename : windows_sys::core::PCSTR, psiduser : super::super::Foundation:: PSID, pguidextension : *const windows_sys::core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTA) -> u32); -windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListW(dwflags : u32, pmachinename : windows_sys::core::PCWSTR, psiduser : super::super::Foundation:: PSID, pguidextension : *const windows_sys::core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTW) -> u32); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListA(dwflags : u32, pmachinename : windows_sys::core::PCSTR, psiduser : super::super::Security:: PSID, pguidextension : *const windows_sys::core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTA) -> u32); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListW(dwflags : u32, pmachinename : windows_sys::core::PCWSTR, psiduser : super::super::Security:: PSID, pguidextension : *const windows_sys::core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTW) -> u32); windows_targets::link!("userenv.dll" "system" fn GetGPOListA(htoken : super::super::Foundation:: HANDLE, lpname : windows_sys::core::PCSTR, lphostname : windows_sys::core::PCSTR, lpcomputername : windows_sys::core::PCSTR, dwflags : u32, pgpolist : *mut *mut GROUP_POLICY_OBJECTA) -> super::super::Foundation:: BOOL); windows_targets::link!("userenv.dll" "system" fn GetGPOListW(htoken : super::super::Foundation:: HANDLE, lpname : windows_sys::core::PCWSTR, lphostname : windows_sys::core::PCWSTR, lpcomputername : windows_sys::core::PCWSTR, dwflags : u32, pgpolist : *mut *mut GROUP_POLICY_OBJECTW) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn GetLocalManagedApplicationData(productcode : windows_sys::core::PCWSTR, displayname : *mut windows_sys::core::PWSTR, supporturl : *mut windows_sys::core::PWSTR)); @@ -26,7 +28,7 @@ windows_targets::link!("userenv.dll" "system" fn RefreshPolicy(bmachine : super: windows_targets::link!("userenv.dll" "system" fn RefreshPolicyEx(bmachine : super::super::Foundation:: BOOL, dwoptions : u32) -> super::super::Foundation:: BOOL); windows_targets::link!("userenv.dll" "system" fn RegisterGPNotification(hevent : super::super::Foundation:: HANDLE, bmachine : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL); #[cfg(feature = "Win32_Security")] -windows_targets::link!("userenv.dll" "system" fn RsopAccessCheckByType(psecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, pprincipalselfsid : super::super::Foundation:: PSID, prsoptoken : *const core::ffi::c_void, dwdesiredaccessmask : u32, pobjecttypelist : *const super::super::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, pgenericmapping : *const super::super::Security:: GENERIC_MAPPING, pprivilegeset : *const super::super::Security:: PRIVILEGE_SET, pdwprivilegesetlength : *const u32, pdwgrantedaccessmask : *mut u32, pbaccessstatus : *mut super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); +windows_targets::link!("userenv.dll" "system" fn RsopAccessCheckByType(psecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, pprincipalselfsid : super::super::Security:: PSID, prsoptoken : *const core::ffi::c_void, dwdesiredaccessmask : u32, pobjecttypelist : *const super::super::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, pgenericmapping : *const super::super::Security:: GENERIC_MAPPING, pprivilegeset : *const super::super::Security:: PRIVILEGE_SET, pdwprivilegesetlength : *const u32, pdwgrantedaccessmask : *mut u32, pbaccessstatus : *mut super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); windows_targets::link!("userenv.dll" "system" fn RsopFileAccessCheck(pszfilename : windows_sys::core::PCWSTR, prsoptoken : *const core::ffi::c_void, dwdesiredaccessmask : u32, pdwgrantedaccessmask : *mut u32, pbaccessstatus : *mut super::super::Foundation:: BOOL) -> windows_sys::core::HRESULT); windows_targets::link!("userenv.dll" "system" fn RsopResetPolicySettingStatus(dwflags : u32, pservices : * mut core::ffi::c_void, psettinginstance : * mut core::ffi::c_void) -> windows_sys::core::HRESULT); windows_targets::link!("userenv.dll" "system" fn RsopSetPolicySettingStatus(dwflags : u32, pservices : * mut core::ffi::c_void, psettinginstance : * mut core::ffi::c_void, ninfo : u32, pstatus : *const POLICYSETTINGSTATUSINFO) -> windows_sys::core::HRESULT); diff --git a/crates/libs/sys/src/Windows/Win32/System/HostCompute/mod.rs b/crates/libs/sys/src/Windows/Win32/System/HostCompute/mod.rs index 1cd1562418..eee1a19906 100644 --- a/crates/libs/sys/src/Windows/Win32/System/HostCompute/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/HostCompute/mod.rs @@ -1 +1 @@ -pub type HCS_CALLBACK = isize; +pub type HCS_CALLBACK = *mut core::ffi::c_void; diff --git a/crates/libs/sys/src/Windows/Win32/System/HostComputeSystem/mod.rs b/crates/libs/sys/src/Windows/Win32/System/HostComputeSystem/mod.rs index f6d163553b..012131bc5e 100644 --- a/crates/libs/sys/src/Windows/Win32/System/HostComputeSystem/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/HostComputeSystem/mod.rs @@ -154,8 +154,8 @@ pub struct HCS_EVENT { pub EventData: windows_sys::core::PCWSTR, pub Operation: HCS_OPERATION, } -pub type HCS_OPERATION = isize; -pub type HCS_PROCESS = isize; +pub type HCS_OPERATION = *mut core::ffi::c_void; +pub type HCS_PROCESS = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct HCS_PROCESS_INFORMATION { @@ -165,7 +165,7 @@ pub struct HCS_PROCESS_INFORMATION { pub StdOutput: super::super::Foundation::HANDLE, pub StdError: super::super::Foundation::HANDLE, } -pub type HCS_SYSTEM = isize; +pub type HCS_SYSTEM = *mut core::ffi::c_void; pub type HCS_EVENT_CALLBACK = Option; pub type HCS_NOTIFICATION_CALLBACK = Option; pub type HCS_OPERATION_COMPLETION = Option; diff --git a/crates/libs/sys/src/Windows/Win32/System/Power/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Power/mod.rs index 85c7885919..98a9dbeea8 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Power/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Power/mod.rs @@ -47,7 +47,7 @@ windows_targets::link!("powrprof.dll" "system" fn PowerReadACDefaultIndex(rootpo #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("powrprof.dll" "system" fn PowerReadACValue(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, r#type : *mut u32, buffer : *mut u8, buffersize : *mut u32) -> super::super::Foundation:: WIN32_ERROR); #[cfg(feature = "Win32_System_Registry")] -windows_targets::link!("powrprof.dll" "system" fn PowerReadACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, acvalueindex : *mut u32) -> u32); +windows_targets::link!("powrprof.dll" "system" fn PowerReadACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, acvalueindex : *mut u32) -> super::super::Foundation:: WIN32_ERROR); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("powrprof.dll" "system" fn PowerReadDCDefaultIndex(rootpowerkey : super::Registry:: HKEY, schemepersonalityguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, dcdefaultindex : *mut u32) -> u32); #[cfg(feature = "Win32_System_Registry")] @@ -97,7 +97,7 @@ windows_targets::link!("powrprof.dll" "system" fn PowerUnregisterSuspendResumeNo #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("powrprof.dll" "system" fn PowerWriteACDefaultIndex(rootsystempowerkey : super::Registry:: HKEY, schemepersonalityguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, defaultacindex : u32) -> u32); #[cfg(feature = "Win32_System_Registry")] -windows_targets::link!("powrprof.dll" "system" fn PowerWriteACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, acvalueindex : u32) -> u32); +windows_targets::link!("powrprof.dll" "system" fn PowerWriteACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, acvalueindex : u32) -> super::super::Foundation:: WIN32_ERROR); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("powrprof.dll" "system" fn PowerWriteDCDefaultIndex(rootsystempowerkey : super::Registry:: HKEY, schemepersonalityguid : *const windows_sys::core::GUID, subgroupofpowersettingsguid : *const windows_sys::core::GUID, powersettingguid : *const windows_sys::core::GUID, defaultdcindex : u32) -> u32); #[cfg(feature = "Win32_System_Registry")] @@ -395,16 +395,25 @@ pub const MonitorRequestTypeToggleOn: POWER_MONITOR_REQUEST_TYPE = 2i32; pub const NotifyUserModeLegacyPowerEvent: POWER_INFORMATION_LEVEL = 47i32; pub const NotifyUserPowerSetting: POWER_INFORMATION_LEVEL = 26i32; pub const PASSIVE_COOLING: u32 = 1u32; -pub const PDCAP_S0_SUPPORTED: u32 = 65536u32; -pub const PDCAP_S1_SUPPORTED: u32 = 131072u32; -pub const PDCAP_S2_SUPPORTED: u32 = 262144u32; -pub const PDCAP_S3_SUPPORTED: u32 = 524288u32; -pub const PDCAP_S4_SUPPORTED: u32 = 16777216u32; -pub const PDCAP_S5_SUPPORTED: u32 = 33554432u32; -pub const PDCAP_WAKE_FROM_S0_SUPPORTED: u32 = 1048576u32; -pub const PDCAP_WAKE_FROM_S1_SUPPORTED: u32 = 2097152u32; -pub const PDCAP_WAKE_FROM_S2_SUPPORTED: u32 = 4194304u32; -pub const PDCAP_WAKE_FROM_S3_SUPPORTED: u32 = 8388608u32; +pub const PDCAP_D0_SUPPORTED: DEVICE_POWER_CAPABILITIES = 1u32; +pub const PDCAP_D1_SUPPORTED: DEVICE_POWER_CAPABILITIES = 2u32; +pub const PDCAP_D2_SUPPORTED: DEVICE_POWER_CAPABILITIES = 4u32; +pub const PDCAP_D3_SUPPORTED: DEVICE_POWER_CAPABILITIES = 8u32; +pub const PDCAP_S0_SUPPORTED: DEVICE_POWER_CAPABILITIES = 65536u32; +pub const PDCAP_S1_SUPPORTED: DEVICE_POWER_CAPABILITIES = 131072u32; +pub const PDCAP_S2_SUPPORTED: DEVICE_POWER_CAPABILITIES = 262144u32; +pub const PDCAP_S3_SUPPORTED: DEVICE_POWER_CAPABILITIES = 524288u32; +pub const PDCAP_S4_SUPPORTED: DEVICE_POWER_CAPABILITIES = 16777216u32; +pub const PDCAP_S5_SUPPORTED: DEVICE_POWER_CAPABILITIES = 33554432u32; +pub const PDCAP_WAKE_FROM_D0_SUPPORTED: DEVICE_POWER_CAPABILITIES = 16u32; +pub const PDCAP_WAKE_FROM_D1_SUPPORTED: DEVICE_POWER_CAPABILITIES = 32u32; +pub const PDCAP_WAKE_FROM_D2_SUPPORTED: DEVICE_POWER_CAPABILITIES = 64u32; +pub const PDCAP_WAKE_FROM_D3_SUPPORTED: DEVICE_POWER_CAPABILITIES = 128u32; +pub const PDCAP_WAKE_FROM_S0_SUPPORTED: DEVICE_POWER_CAPABILITIES = 1048576u32; +pub const PDCAP_WAKE_FROM_S1_SUPPORTED: DEVICE_POWER_CAPABILITIES = 2097152u32; +pub const PDCAP_WAKE_FROM_S2_SUPPORTED: DEVICE_POWER_CAPABILITIES = 4194304u32; +pub const PDCAP_WAKE_FROM_S3_SUPPORTED: DEVICE_POWER_CAPABILITIES = 8388608u32; +pub const PDCAP_WARM_EJECT_SUPPORTED: DEVICE_POWER_CAPABILITIES = 256u32; pub const POWER_ATTRIBUTE_HIDE: u32 = 1u32; pub const POWER_ATTRIBUTE_SHOW_AOAC: u32 = 2u32; pub const POWER_FORCE_TRIGGER_RESET: POWER_ACTION_POLICY_EVENT_CODE = 2147483648u32; @@ -614,6 +623,7 @@ pub type ACPI_TIME_RESOLUTION = i32; pub type BATTERY_CHARGING_SOURCE_TYPE = i32; pub type BATTERY_QUERY_INFORMATION_LEVEL = i32; pub type BATTERY_SET_INFORMATION_LEVEL = i32; +pub type DEVICE_POWER_CAPABILITIES = u32; pub type DEVICE_POWER_STATE = i32; pub type EFFECTIVE_POWER_MODE = i32; pub type EMI_MEASUREMENT_UNIT = i32; diff --git a/crates/libs/sys/src/Windows/Win32/System/Registry/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Registry/mod.rs index 1c47484b16..8d5cc73889 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Registry/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Registry/mod.rs @@ -1061,7 +1061,7 @@ pub struct DSKTLSYSTEMTIME { pub wMilliseconds: u16, pub wResult: u16, } -pub type HKEY = isize; +pub type HKEY = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct PVALUEA { diff --git a/crates/libs/sys/src/Windows/Win32/System/RemoteDesktop/mod.rs b/crates/libs/sys/src/Windows/Win32/System/RemoteDesktop/mod.rs index 69633cace5..ea731f6d01 100644 --- a/crates/libs/sys/src/Windows/Win32/System/RemoteDesktop/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/RemoteDesktop/mod.rs @@ -8,9 +8,11 @@ windows_targets::link!("wtsapi32.dll" "system" fn WTSDisconnectSession(hserver : windows_targets::link!("wtsapi32.dll" "system" fn WTSEnableChildSessions(benable : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL); windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateListenersA(hserver : super::super::Foundation:: HANDLE, preserved : *const core::ffi::c_void, reserved : u32, plisteners : *mut *mut i8, pcount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateListenersW(hserver : super::super::Foundation:: HANDLE, preserved : *const core::ffi::c_void, reserved : u32, plisteners : *mut *mut u16, pcount : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateProcessesA(hserver : super::super::Foundation:: HANDLE, reserved : u32, version : u32, ppprocessinfo : *mut *mut WTS_PROCESS_INFOA, pcount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateProcessesExA(hserver : super::super::Foundation:: HANDLE, plevel : *mut u32, sessionid : u32, ppprocessinfo : *mut windows_sys::core::PSTR, pcount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateProcessesExW(hserver : super::super::Foundation:: HANDLE, plevel : *mut u32, sessionid : u32, ppprocessinfo : *mut windows_sys::core::PWSTR, pcount : *mut u32) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateProcessesW(hserver : super::super::Foundation:: HANDLE, reserved : u32, version : u32, ppprocessinfo : *mut *mut WTS_PROCESS_INFOW, pcount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateServersA(pdomainname : windows_sys::core::PCSTR, reserved : u32, version : u32, ppserverinfo : *mut *mut WTS_SERVER_INFOA, pcount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateServersW(pdomainname : windows_sys::core::PCWSTR, reserved : u32, version : u32, ppserverinfo : *mut *mut WTS_SERVER_INFOW, pcount : *mut u32) -> super::super::Foundation:: BOOL); @@ -1455,28 +1457,31 @@ pub struct WTS_POLICY_DATA { pub fDisablePNPRedir: super::super::Foundation::BOOLEAN, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct WTS_PROCESS_INFOA { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_sys::core::PSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct WTS_PROCESS_INFOW { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_sys::core::PWSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct WTS_PROCESS_INFO_EXA { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_sys::core::PSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, pub NumberOfThreads: u32, pub HandleCount: u32, pub PagefileUsage: u32, @@ -1487,12 +1492,13 @@ pub struct WTS_PROCESS_INFO_EXA { pub KernelTime: i64, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct WTS_PROCESS_INFO_EXW { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_sys::core::PWSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, pub NumberOfThreads: u32, pub HandleCount: u32, pub PagefileUsage: u32, diff --git a/crates/libs/sys/src/Windows/Win32/System/Rpc/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Rpc/mod.rs index b9de305e08..06564f1a80 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Rpc/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Rpc/mod.rs @@ -780,11 +780,14 @@ pub const RPC_SYSTEM_HANDLE_FREE_ALL: u32 = 3u32; pub const RPC_SYSTEM_HANDLE_FREE_ERROR_ON_CLOSE: u32 = 4u32; pub const RPC_SYSTEM_HANDLE_FREE_RETRIEVED: u32 = 2u32; pub const RPC_SYSTEM_HANDLE_FREE_UNRETRIEVED: u32 = 1u32; +pub const RPC_S_ACCESS_DENIED: RPC_STATUS = 5i32; pub const RPC_S_ADDRESS_ERROR: RPC_STATUS = 1768i32; pub const RPC_S_ALREADY_LISTENING: RPC_STATUS = 1713i32; pub const RPC_S_ALREADY_REGISTERED: RPC_STATUS = 1711i32; +pub const RPC_S_ASYNC_CALL_PENDING: RPC_STATUS = 997i32; pub const RPC_S_BINDING_HAS_NO_AUTH: RPC_STATUS = 1746i32; pub const RPC_S_BINDING_INCOMPLETE: RPC_STATUS = 1819i32; +pub const RPC_S_BUFFER_TOO_SMALL: RPC_STATUS = 122i32; pub const RPC_S_CALL_CANCELLED: RPC_STATUS = 1818i32; pub const RPC_S_CALL_FAILED: RPC_STATUS = 1726i32; pub const RPC_S_CALL_FAILED_DNE: RPC_STATUS = 1727i32; @@ -808,18 +811,21 @@ pub const RPC_S_INCOMPLETE_NAME: RPC_STATUS = 1755i32; pub const RPC_S_INTERFACE_NOT_EXPORTED: RPC_STATUS = 1924i32; pub const RPC_S_INTERFACE_NOT_FOUND: RPC_STATUS = 1759i32; pub const RPC_S_INTERNAL_ERROR: RPC_STATUS = 1766i32; +pub const RPC_S_INVALID_ARG: RPC_STATUS = 87i32; pub const RPC_S_INVALID_ASYNC_CALL: RPC_STATUS = 1915i32; pub const RPC_S_INVALID_ASYNC_HANDLE: RPC_STATUS = 1914i32; pub const RPC_S_INVALID_AUTH_IDENTITY: RPC_STATUS = 1749i32; pub const RPC_S_INVALID_BINDING: RPC_STATUS = 1702i32; pub const RPC_S_INVALID_BOUND: RPC_STATUS = 1734i32; pub const RPC_S_INVALID_ENDPOINT_FORMAT: RPC_STATUS = 1706i32; +pub const RPC_S_INVALID_LEVEL: RPC_STATUS = 87i32; pub const RPC_S_INVALID_NAF_ID: RPC_STATUS = 1763i32; pub const RPC_S_INVALID_NAME_SYNTAX: RPC_STATUS = 1736i32; pub const RPC_S_INVALID_NETWORK_OPTIONS: RPC_STATUS = 1724i32; pub const RPC_S_INVALID_NET_ADDR: RPC_STATUS = 1707i32; pub const RPC_S_INVALID_OBJECT: RPC_STATUS = 1900i32; pub const RPC_S_INVALID_RPC_PROTSEQ: RPC_STATUS = 1704i32; +pub const RPC_S_INVALID_SECURITY_DESC: RPC_STATUS = 1338i32; pub const RPC_S_INVALID_STRING_BINDING: RPC_STATUS = 1700i32; pub const RPC_S_INVALID_STRING_UUID: RPC_STATUS = 1705i32; pub const RPC_S_INVALID_TAG: RPC_STATUS = 1733i32; @@ -831,6 +837,7 @@ pub const RPC_S_NOTHING_TO_EXPORT: RPC_STATUS = 1754i32; pub const RPC_S_NOT_ALL_OBJS_EXPORTED: RPC_STATUS = 1923i32; pub const RPC_S_NOT_ALL_OBJS_UNEXPORTED: RPC_STATUS = 1758i32; pub const RPC_S_NOT_CANCELLED: RPC_STATUS = 1826i32; +pub const RPC_S_NOT_ENOUGH_QUOTA: RPC_STATUS = 1816i32; pub const RPC_S_NOT_LISTENING: RPC_STATUS = 1715i32; pub const RPC_S_NOT_RPC_ERROR: RPC_STATUS = 1823i32; pub const RPC_S_NO_BINDINGS: RPC_STATUS = 1718i32; @@ -846,7 +853,9 @@ pub const RPC_S_NO_PROTSEQS: RPC_STATUS = 1719i32; pub const RPC_S_NO_PROTSEQS_REGISTERED: RPC_STATUS = 1714i32; pub const RPC_S_OBJECT_NOT_FOUND: RPC_STATUS = 1710i32; pub const RPC_S_OK: RPC_STATUS = 0i32; +pub const RPC_S_OUT_OF_MEMORY: RPC_STATUS = 14i32; pub const RPC_S_OUT_OF_RESOURCES: RPC_STATUS = 1721i32; +pub const RPC_S_OUT_OF_THREADS: RPC_STATUS = 164i32; pub const RPC_S_PRF_ELT_NOT_ADDED: RPC_STATUS = 1926i32; pub const RPC_S_PRF_ELT_NOT_REMOVED: RPC_STATUS = 1927i32; pub const RPC_S_PROCNUM_OUT_OF_RANGE: RPC_STATUS = 1745i32; @@ -855,13 +864,16 @@ pub const RPC_S_PROTOCOL_ERROR: RPC_STATUS = 1728i32; pub const RPC_S_PROTSEQ_NOT_FOUND: RPC_STATUS = 1744i32; pub const RPC_S_PROTSEQ_NOT_SUPPORTED: RPC_STATUS = 1703i32; pub const RPC_S_PROXY_ACCESS_DENIED: RPC_STATUS = 1729i32; +pub const RPC_S_RUNTIME_UNINITIALIZED: RPC_STATUS = 1i32; pub const RPC_S_SEC_PKG_ERROR: RPC_STATUS = 1825i32; pub const RPC_S_SEND_INCOMPLETE: RPC_STATUS = 1913i32; +pub const RPC_S_SERVER_OUT_OF_MEMORY: RPC_STATUS = 1130i32; pub const RPC_S_SERVER_TOO_BUSY: RPC_STATUS = 1723i32; pub const RPC_S_SERVER_UNAVAILABLE: RPC_STATUS = 1722i32; pub const RPC_S_STRING_TOO_LONG: RPC_STATUS = 1743i32; pub const RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED: RPC_STATUS = 1835i32; pub const RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH: RPC_STATUS = 1836i32; +pub const RPC_S_TIMEOUT: RPC_STATUS = 1460i32; pub const RPC_S_TYPE_ALREADY_REGISTERED: RPC_STATUS = 1712i32; pub const RPC_S_UNKNOWN_AUTHN_LEVEL: RPC_STATUS = 1748i32; pub const RPC_S_UNKNOWN_AUTHN_SERVICE: RPC_STATUS = 1747i32; @@ -869,6 +881,7 @@ pub const RPC_S_UNKNOWN_AUTHN_TYPE: RPC_STATUS = 1741i32; pub const RPC_S_UNKNOWN_AUTHZ_SERVICE: RPC_STATUS = 1750i32; pub const RPC_S_UNKNOWN_IF: RPC_STATUS = 1717i32; pub const RPC_S_UNKNOWN_MGR_TYPE: RPC_STATUS = 1716i32; +pub const RPC_S_UNKNOWN_PRINCIPAL: RPC_STATUS = 1332i32; pub const RPC_S_UNSUPPORTED_AUTHN_LEVEL: RPC_STATUS = 1821i32; pub const RPC_S_UNSUPPORTED_NAME_SYNTAX: RPC_STATUS = 1737i32; pub const RPC_S_UNSUPPORTED_TRANS_SYN: RPC_STATUS = 1730i32; diff --git a/crates/libs/sys/src/Windows/Win32/System/Services/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Services/mod.rs index 44cd6555c5..53db527c29 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Services/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Services/mod.rs @@ -1,106 +1,65 @@ -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2A(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2W(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigA(hservice : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCSTR, lploadordergroup : windows_sys::core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCSTR, lpservicestartname : windows_sys::core::PCSTR, lppassword : windows_sys::core::PCSTR, lpdisplayname : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigW(hservice : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCWSTR, lploadordergroup : windows_sys::core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCWSTR, lpservicestartname : windows_sys::core::PCWSTR, lppassword : windows_sys::core::PCWSTR, lpdisplayname : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn CloseServiceHandle(hscobject : super::super::Security:: SC_HANDLE) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn ControlService(hservice : super::super::Security:: SC_HANDLE, dwcontrol : u32, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn ControlServiceExA(hservice : super::super::Security:: SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn ControlServiceExW(hservice : super::super::Security:: SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn CreateServiceA(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_sys::core::PCSTR, lpdisplayname : windows_sys::core::PCSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCSTR, lploadordergroup : windows_sys::core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCSTR, lpservicestartname : windows_sys::core::PCSTR, lppassword : windows_sys::core::PCSTR) -> super::super::Security:: SC_HANDLE); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn CreateServiceW(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_sys::core::PCWSTR, lpdisplayname : windows_sys::core::PCWSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCWSTR, lploadordergroup : windows_sys::core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCWSTR, lpservicestartname : windows_sys::core::PCWSTR, lppassword : windows_sys::core::PCWSTR) -> super::super::Security:: SC_HANDLE); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn DeleteService(hservice : super::super::Security:: SC_HANDLE) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesA(hservice : super::super::Security:: SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesW(hservice : super::super::Security:: SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusA(hscmanager : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExA(hscmanager : super::super::Security:: SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExW(hscmanager : super::super::Security:: SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusW(hscmanager : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2A(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2W(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigA(hservice : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCSTR, lploadordergroup : windows_sys::core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCSTR, lpservicestartname : windows_sys::core::PCSTR, lppassword : windows_sys::core::PCSTR, lpdisplayname : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigW(hservice : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCWSTR, lploadordergroup : windows_sys::core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCWSTR, lpservicestartname : windows_sys::core::PCWSTR, lppassword : windows_sys::core::PCWSTR, lpdisplayname : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn CloseServiceHandle(hscobject : SC_HANDLE) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ControlService(hservice : SC_HANDLE, dwcontrol : u32, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ControlServiceExA(hservice : SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn ControlServiceExW(hservice : SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn CreateServiceA(hscmanager : SC_HANDLE, lpservicename : windows_sys::core::PCSTR, lpdisplayname : windows_sys::core::PCSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCSTR, lploadordergroup : windows_sys::core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCSTR, lpservicestartname : windows_sys::core::PCSTR, lppassword : windows_sys::core::PCSTR) -> SC_HANDLE); +windows_targets::link!("advapi32.dll" "system" fn CreateServiceW(hscmanager : SC_HANDLE, lpservicename : windows_sys::core::PCWSTR, lpdisplayname : windows_sys::core::PCWSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_sys::core::PCWSTR, lploadordergroup : windows_sys::core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_sys::core::PCWSTR, lpservicestartname : windows_sys::core::PCWSTR, lppassword : windows_sys::core::PCWSTR) -> SC_HANDLE); +windows_targets::link!("advapi32.dll" "system" fn DeleteService(hservice : SC_HANDLE) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesA(hservice : SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesW(hservice : SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusA(hscmanager : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExA(hscmanager : SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExW(hscmanager : SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusW(hscmanager : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("api-ms-win-service-core-l1-1-4.dll" "system" fn GetServiceDirectory(hservicestatus : SERVICE_STATUS_HANDLE, edirectorytype : SERVICE_DIRECTORY_TYPE, lppathbuffer : windows_sys::core::PWSTR, cchpathbufferlength : u32, lpcchrequiredbufferlength : *mut u32) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameA(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_sys::core::PCSTR, lpdisplayname : windows_sys::core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameW(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_sys::core::PCWSTR, lpdisplayname : windows_sys::core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameA(hscmanager : super::super::Security:: SC_HANDLE, lpdisplayname : windows_sys::core::PCSTR, lpservicename : windows_sys::core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameW(hscmanager : super::super::Security:: SC_HANDLE, lpdisplayname : windows_sys::core::PCWSTR, lpservicename : windows_sys::core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameA(hscmanager : SC_HANDLE, lpservicename : windows_sys::core::PCSTR, lpdisplayname : windows_sys::core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameW(hscmanager : SC_HANDLE, lpservicename : windows_sys::core::PCWSTR, lpdisplayname : windows_sys::core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameA(hscmanager : SC_HANDLE, lpdisplayname : windows_sys::core::PCSTR, lpservicename : windows_sys::core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameW(hscmanager : SC_HANDLE, lpdisplayname : windows_sys::core::PCWSTR, lpservicename : windows_sys::core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); #[cfg(feature = "Win32_System_Registry")] windows_targets::link!("api-ms-win-service-core-l1-1-3.dll" "system" fn GetServiceRegistryStateKey(servicestatushandle : SERVICE_STATUS_HANDLE, statetype : SERVICE_REGISTRY_STATE_TYPE, accessmask : u32, servicestatekey : *mut super::Registry:: HKEY) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceDirectory(servicehandle : super::super::Security:: SC_HANDLE, directorytype : SERVICE_SHARED_DIRECTORY_TYPE, pathbuffer : windows_sys::core::PWSTR, pathbufferlength : u32, requiredbufferlength : *mut u32) -> u32); -#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Registry"))] -windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceRegistryStateKey(servicehandle : super::super::Security:: SC_HANDLE, statetype : SERVICE_SHARED_REGISTRY_STATE_TYPE, accessmask : u32, servicestatekey : *mut super::Registry:: HKEY) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn LockServiceDatabase(hscmanager : super::super::Security:: SC_HANDLE) -> *mut core::ffi::c_void); +windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceDirectory(servicehandle : SC_HANDLE, directorytype : SERVICE_SHARED_DIRECTORY_TYPE, pathbuffer : windows_sys::core::PWSTR, pathbufferlength : u32, requiredbufferlength : *mut u32) -> u32); +#[cfg(feature = "Win32_System_Registry")] +windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceRegistryStateKey(servicehandle : SC_HANDLE, statetype : SERVICE_SHARED_REGISTRY_STATE_TYPE, accessmask : u32, servicestatekey : *mut super::Registry:: HKEY) -> u32); +windows_targets::link!("advapi32.dll" "system" fn LockServiceDatabase(hscmanager : SC_HANDLE) -> *mut core::ffi::c_void); windows_targets::link!("advapi32.dll" "system" fn NotifyBootConfigStatus(bootacceptable : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeA(hservice : super::super::Security:: SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2A) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeW(hservice : super::super::Security:: SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2W) -> u32); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerA(lpmachinename : windows_sys::core::PCSTR, lpdatabasename : windows_sys::core::PCSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerW(lpmachinename : windows_sys::core::PCWSTR, lpdatabasename : windows_sys::core::PCWSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn OpenServiceA(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_sys::core::PCSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn OpenServiceW(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_sys::core::PCWSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2A(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2W(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigA(hservice : super::super::Security:: SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigW(hservice : super::super::Security:: SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeA(hservice : SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2A) -> u32); +windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeW(hservice : SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2W) -> u32); +windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerA(lpmachinename : windows_sys::core::PCSTR, lpdatabasename : windows_sys::core::PCSTR, dwdesiredaccess : u32) -> SC_HANDLE); +windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerW(lpmachinename : windows_sys::core::PCWSTR, lpdatabasename : windows_sys::core::PCWSTR, dwdesiredaccess : u32) -> SC_HANDLE); +windows_targets::link!("advapi32.dll" "system" fn OpenServiceA(hscmanager : SC_HANDLE, lpservicename : windows_sys::core::PCSTR, dwdesiredaccess : u32) -> SC_HANDLE); +windows_targets::link!("advapi32.dll" "system" fn OpenServiceW(hscmanager : SC_HANDLE, lpservicename : windows_sys::core::PCWSTR, dwdesiredaccess : u32) -> SC_HANDLE); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2A(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2W(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigA(hservice : SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigW(hservice : SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn QueryServiceDynamicInformation(hservicestatus : SERVICE_STATUS_HANDLE, dwinfolevel : u32, ppdynamicinfo : *mut *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusA(hscmanager : SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusW(hscmanager : SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); #[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusA(hscmanager : super::super::Security:: SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusW(hscmanager : super::super::Security:: SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceObjectSecurity(hservice : super::super::Security:: SC_HANDLE, dwsecurityinformation : u32, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatus(hservice : super::super::Security:: SC_HANDLE, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatusEx(hservice : super::super::Security:: SC_HANDLE, infolevel : SC_STATUS_TYPE, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceObjectSecurity(hservice : SC_HANDLE, dwsecurityinformation : u32, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatus(hservice : SC_HANDLE, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatusEx(hservice : SC_HANDLE, infolevel : SC_STATUS_TYPE, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn RegisterServiceCtrlHandlerA(lpservicename : windows_sys::core::PCSTR, lphandlerproc : LPHANDLER_FUNCTION) -> SERVICE_STATUS_HANDLE); windows_targets::link!("advapi32.dll" "system" fn RegisterServiceCtrlHandlerExA(lpservicename : windows_sys::core::PCSTR, lphandlerproc : LPHANDLER_FUNCTION_EX, lpcontext : *const core::ffi::c_void) -> SERVICE_STATUS_HANDLE); windows_targets::link!("advapi32.dll" "system" fn RegisterServiceCtrlHandlerExW(lpservicename : windows_sys::core::PCWSTR, lphandlerproc : LPHANDLER_FUNCTION_EX, lpcontext : *const core::ffi::c_void) -> SERVICE_STATUS_HANDLE); windows_targets::link!("advapi32.dll" "system" fn RegisterServiceCtrlHandlerW(lpservicename : windows_sys::core::PCWSTR, lphandlerproc : LPHANDLER_FUNCTION) -> SERVICE_STATUS_HANDLE); windows_targets::link!("advapi32.dll" "system" fn SetServiceBits(hservicestatus : SERVICE_STATUS_HANDLE, dwservicebits : u32, bsetbitson : super::super::Foundation:: BOOL, bupdateimmediately : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL); #[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn SetServiceObjectSecurity(hservice : super::super::Security:: SC_HANDLE, dwsecurityinformation : super::super::Security:: OBJECT_SECURITY_INFORMATION, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn SetServiceObjectSecurity(hservice : SC_HANDLE, dwsecurityinformation : super::super::Security:: OBJECT_SECURITY_INFORMATION, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn SetServiceStatus(hservicestatus : SERVICE_STATUS_HANDLE, lpservicestatus : *const SERVICE_STATUS) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn StartServiceA(hservice : super::super::Security:: SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("advapi32.dll" "system" fn StartServiceA(hservice : SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_sys::core::PCSTR) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn StartServiceCtrlDispatcherA(lpservicestarttable : *const SERVICE_TABLE_ENTRYA) -> super::super::Foundation:: BOOL); windows_targets::link!("advapi32.dll" "system" fn StartServiceCtrlDispatcherW(lpservicestarttable : *const SERVICE_TABLE_ENTRYW) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn StartServiceW(hservice : super::super::Security:: SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("sechost.dll" "system" fn SubscribeServiceChangeNotifications(hservice : super::super::Security:: SC_HANDLE, eeventtype : SC_EVENT_TYPE, pcallback : PSC_NOTIFICATION_CALLBACK, pcallbackcontext : *const core::ffi::c_void, psubscription : *mut PSC_NOTIFICATION_REGISTRATION) -> u32); +windows_targets::link!("advapi32.dll" "system" fn StartServiceW(hservice : SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_sys::core::PCWSTR) -> super::super::Foundation:: BOOL); +windows_targets::link!("sechost.dll" "system" fn SubscribeServiceChangeNotifications(hservice : SC_HANDLE, eeventtype : SC_EVENT_TYPE, pcallback : PSC_NOTIFICATION_CALLBACK, pcallbackcontext : *const core::ffi::c_void, psubscription : *mut PSC_NOTIFICATION_REGISTRATION) -> u32); windows_targets::link!("advapi32.dll" "system" fn UnlockServiceDatabase(sclock : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); windows_targets::link!("sechost.dll" "system" fn UnsubscribeServiceChangeNotifications(psubscription : PSC_NOTIFICATION_REGISTRATION)); -#[cfg(feature = "Win32_Security")] -windows_targets::link!("advapi32.dll" "system" fn WaitServiceState(hservice : super::super::Security:: SC_HANDLE, dwnotify : u32, dwtimeout : u32, hcancelevent : super::super::Foundation:: HANDLE) -> u32); +windows_targets::link!("advapi32.dll" "system" fn WaitServiceState(hservice : SC_HANDLE, dwnotify : u32, dwtimeout : u32, hcancelevent : super::super::Foundation:: HANDLE) -> u32); pub const CUSTOM_SYSTEM_STATE_CHANGE_EVENT_GUID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2d7a2816_0c5e_45fc_9ce7_570e5ecde9c9); pub const DOMAIN_JOIN_GUID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1ce20aba_9851_4421_9430_1ddeb766e809); pub const DOMAIN_LEAVE_GUID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xddaf516e_58c2_4866_9574_c3b615d42ea1); @@ -408,6 +367,7 @@ pub struct SC_ACTION { pub Type: SC_ACTION_TYPE, pub Delay: u32, } +pub type SC_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct SERVICE_CONTROL_STATUS_REASON_PARAMSA { @@ -555,7 +515,7 @@ pub struct SERVICE_STATUS { pub dwCheckPoint: u32, pub dwWaitHint: u32, } -pub type SERVICE_STATUS_HANDLE = isize; +pub type SERVICE_STATUS_HANDLE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct SERVICE_STATUS_PROCESS { diff --git a/crates/libs/sys/src/Windows/Win32/System/StationsAndDesktops/mod.rs b/crates/libs/sys/src/Windows/Win32/System/StationsAndDesktops/mod.rs index b143da6e3b..ca061ebfc0 100644 --- a/crates/libs/sys/src/Windows/Win32/System/StationsAndDesktops/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/StationsAndDesktops/mod.rs @@ -84,8 +84,8 @@ pub struct BSMINFO { pub hwnd: super::super::Foundation::HWND, pub luid: super::super::Foundation::LUID, } -pub type HDESK = isize; -pub type HWINSTA = isize; +pub type HDESK = *mut core::ffi::c_void; +pub type HWINSTA = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct USEROBJECTFLAGS { diff --git a/crates/libs/sys/src/Windows/Win32/System/SystemServices/mod.rs b/crates/libs/sys/src/Windows/Win32/System/SystemServices/mod.rs index d15f56c802..ef12ebfac8 100644 --- a/crates/libs/sys/src/Windows/Win32/System/SystemServices/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/SystemServices/mod.rs @@ -1530,15 +1530,6 @@ pub const OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME: windows_sys::core: pub const PARKING_TOPOLOGY_POLICY_DISABLED: u32 = 0u32; pub const PARKING_TOPOLOGY_POLICY_ROUNDROBIN: u32 = 1u32; pub const PARKING_TOPOLOGY_POLICY_SEQUENTIAL: u32 = 2u32; -pub const PDCAP_D0_SUPPORTED: u32 = 1u32; -pub const PDCAP_D1_SUPPORTED: u32 = 2u32; -pub const PDCAP_D2_SUPPORTED: u32 = 4u32; -pub const PDCAP_D3_SUPPORTED: u32 = 8u32; -pub const PDCAP_WAKE_FROM_D0_SUPPORTED: u32 = 16u32; -pub const PDCAP_WAKE_FROM_D1_SUPPORTED: u32 = 32u32; -pub const PDCAP_WAKE_FROM_D2_SUPPORTED: u32 = 64u32; -pub const PDCAP_WAKE_FROM_D3_SUPPORTED: u32 = 128u32; -pub const PDCAP_WARM_EJECT_SUPPORTED: u32 = 256u32; pub const PERFORMANCE_DATA_VERSION: u32 = 1u32; pub const PERFSTATE_POLICY_CHANGE_DECREASE_MAX: u32 = 2u32; pub const PERFSTATE_POLICY_CHANGE_IDEAL: u32 = 0u32; @@ -4317,9 +4308,10 @@ pub struct TOKEN_BNO_ISOLATION_INFORMATION { pub IsolationEnabled: super::super::Foundation::BOOLEAN, } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct TOKEN_SID_INFORMATION { - pub Sid: super::super::Foundation::PSID, + pub Sid: super::super::Security::PSID, } #[repr(C)] #[derive(Clone, Copy)] diff --git a/crates/libs/sys/src/Windows/Win32/System/Threading/mod.rs b/crates/libs/sys/src/Windows/Win32/System/Threading/mod.rs index 13a51cfd6b..462d978c24 100644 --- a/crates/libs/sys/src/Windows/Win32/System/Threading/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/Threading/mod.rs @@ -1,7 +1,9 @@ windows_targets::link!("kernel32.dll" "system" fn AcquireSRWLockExclusive(srwlock : *mut SRWLOCK)); windows_targets::link!("kernel32.dll" "system" fn AcquireSRWLockShared(srwlock : *mut SRWLOCK)); -windows_targets::link!("kernel32.dll" "system" fn AddIntegrityLabelToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, integritylabel : super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); -windows_targets::link!("kernel32.dll" "system" fn AddSIDToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, requiredsid : super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("kernel32.dll" "system" fn AddIntegrityLabelToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, integritylabel : super::super::Security:: PSID) -> super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Security")] +windows_targets::link!("kernel32.dll" "system" fn AddSIDToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, requiredsid : super::super::Security:: PSID) -> super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn AttachThreadInput(idattach : u32, idattachto : u32, fattach : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL); windows_targets::link!("avrt.dll" "system" fn AvQuerySystemResponsiveness(avrthandle : super::super::Foundation:: HANDLE, systemresponsivenessvalue : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("avrt.dll" "system" fn AvRevertMmThreadCharacteristics(avrthandle : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); @@ -166,6 +168,7 @@ windows_targets::link!("kernel32.dll" "system" fn GetProcessDefaultCpuSetMasks(p windows_targets::link!("kernel32.dll" "system" fn GetProcessDefaultCpuSets(process : super::super::Foundation:: HANDLE, cpusetids : *mut u32, cpusetidcount : u32, requiredidcount : *mut u32) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn GetProcessGroupAffinity(hprocess : super::super::Foundation:: HANDLE, groupcount : *mut u16, grouparray : *mut u16) -> super::super::Foundation:: BOOL); windows_targets::link!("kernel32.dll" "system" fn GetProcessHandleCount(hprocess : super::super::Foundation:: HANDLE, pdwhandlecount : *mut u32) -> super::super::Foundation:: BOOL); +windows_targets::link!("oleacc.dll" "system" fn GetProcessHandleFromHwnd(hwnd : super::super::Foundation:: HWND) -> super::super::Foundation:: HANDLE); windows_targets::link!("kernel32.dll" "system" fn GetProcessId(process : super::super::Foundation:: HANDLE) -> u32); windows_targets::link!("kernel32.dll" "system" fn GetProcessIdOfThread(thread : super::super::Foundation:: HANDLE) -> u32); windows_targets::link!("kernel32.dll" "system" fn GetProcessInformation(hprocess : super::super::Foundation:: HANDLE, processinformationclass : PROCESS_INFORMATION_CLASS, processinformation : *mut core::ffi::c_void, processinformationsize : u32) -> super::super::Foundation:: BOOL); @@ -426,6 +429,7 @@ pub const EXTENDED_STARTUPINFO_PRESENT: PROCESS_CREATION_FLAGS = 524288u32; pub const FLS_OUT_OF_INDEXES: u32 = 4294967295u32; pub const GR_GDIOBJECTS: GET_GUI_RESOURCES_FLAGS = 0u32; pub const GR_GDIOBJECTS_PEAK: GET_GUI_RESOURCES_FLAGS = 2u32; +pub const GR_GLOBAL: GET_GUI_RESOURCES_FLAGS = 4294967294u32; pub const GR_USEROBJECTS: GET_GUI_RESOURCES_FLAGS = 1u32; pub const GR_USEROBJECTS_PEAK: GET_GUI_RESOURCES_FLAGS = 4u32; pub const HIGH_PRIORITY_CLASS: PROCESS_CREATION_FLAGS = 128u32; diff --git a/crates/libs/sys/src/Windows/Win32/System/WindowsProgramming/mod.rs b/crates/libs/sys/src/Windows/Win32/System/WindowsProgramming/mod.rs index 18d2a6b827..f5969a869c 100644 --- a/crates/libs/sys/src/Windows/Win32/System/WindowsProgramming/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/System/WindowsProgramming/mod.rs @@ -1179,14 +1179,13 @@ pub struct FEATURE_ERROR { pub originCallerModule: windows_sys::core::PCSTR, pub originName: windows_sys::core::PCSTR, } -pub type FEATURE_STATE_CHANGE_SUBSCRIPTION = isize; -pub type FH_SERVICE_PIPE_HANDLE = isize; +pub type FEATURE_STATE_CHANGE_SUBSCRIPTION = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct FILE_CASE_SENSITIVE_INFO { pub Flags: u32, } -pub type HWINWATCH = isize; +pub type HWINWATCH = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct HW_PROFILE_INFOA { diff --git a/crates/libs/sys/src/Windows/Win32/UI/Accessibility/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/Accessibility/mod.rs index 866f62d3fb..aa6401c3ba 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/Accessibility/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/Accessibility/mod.rs @@ -1513,11 +1513,11 @@ pub struct HIGHCONTRASTW { pub dwFlags: HIGHCONTRASTW_FLAGS, pub lpszDefaultScheme: windows_sys::core::PWSTR, } -pub type HUIAEVENT = isize; -pub type HUIANODE = isize; -pub type HUIAPATTERNOBJECT = isize; -pub type HUIATEXTRANGE = isize; -pub type HWINEVENTHOOK = isize; +pub type HUIAEVENT = *mut core::ffi::c_void; +pub type HUIANODE = *mut core::ffi::c_void; +pub type HUIAPATTERNOBJECT = *mut core::ffi::c_void; +pub type HUIATEXTRANGE = *mut core::ffi::c_void; +pub type HWINEVENTHOOK = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct MOUSEKEYS { diff --git a/crates/libs/sys/src/Windows/Win32/UI/ColorSystem/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/ColorSystem/mod.rs index 1b4cfe0488..2e1aa796ca 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/ColorSystem/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/ColorSystem/mod.rs @@ -526,7 +526,7 @@ pub struct GamutShell { pub struct GamutShellTriangle { pub aVertexIndex: [u32; 3], } -pub type HCOLORSPACE = isize; +pub type HCOLORSPACE = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct HiFiCOLOR { diff --git a/crates/libs/sys/src/Windows/Win32/UI/Controls/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/Controls/mod.rs index 73ce01c90b..4883023e92 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/Controls/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/Controls/mod.rs @@ -5099,8 +5099,8 @@ pub struct HD_TEXTFILTERW { pub cchTextMax: i32, } pub type HIMAGELIST = isize; -pub type HPROPSHEETPAGE = isize; -pub type HSYNTHETICPOINTERDEVICE = isize; +pub type HPROPSHEETPAGE = *mut core::ffi::c_void; +pub type HSYNTHETICPOINTERDEVICE = *mut core::ffi::c_void; pub type HTHEME = isize; pub type HTREEITEM = isize; #[repr(C)] diff --git a/crates/libs/sys/src/Windows/Win32/UI/HiDpi/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/HiDpi/mod.rs index c795c7aeb2..fb4473b226 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/HiDpi/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/HiDpi/mod.rs @@ -63,4 +63,4 @@ pub type DPI_AWARENESS = i32; pub type DPI_HOSTING_BEHAVIOR = i32; pub type MONITOR_DPI_TYPE = i32; pub type PROCESS_DPI_AWARENESS = i32; -pub type DPI_AWARENESS_CONTEXT = isize; +pub type DPI_AWARENESS_CONTEXT = *mut core::ffi::c_void; diff --git a/crates/libs/sys/src/Windows/Win32/UI/Input/Ime/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/Input/Ime/mod.rs index 803f5fc21f..ef6dce98bb 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/Input/Ime/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/Input/Ime/mod.rs @@ -1,156 +1,116 @@ -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmAssociateContext(param0 : super::super::super::Foundation:: HWND, param1 : super::super::super::Globalization:: HIMC) -> super::super::super::Globalization:: HIMC); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmAssociateContextEx(param0 : super::super::super::Foundation:: HWND, param1 : super::super::super::Globalization:: HIMC, param2 : u32) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEA(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEW(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmCreateContext() -> super::super::super::Globalization:: HIMC); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmCreateIMCC(param0 : u32) -> super::super::super::Globalization:: HIMCC); +windows_targets::link!("imm32.dll" "system" fn ImmAssociateContext(param0 : super::super::super::Foundation:: HWND, param1 : HIMC) -> HIMC); +windows_targets::link!("imm32.dll" "system" fn ImmAssociateContextEx(param0 : super::super::super::Foundation:: HWND, param1 : HIMC, param2 : u32) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEA(param0 : super::KeyboardAndMouse:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEW(param0 : super::KeyboardAndMouse:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmCreateContext() -> HIMC); +windows_targets::link!("imm32.dll" "system" fn ImmCreateIMCC(param0 : u32) -> HIMCC); windows_targets::link!("imm32.dll" "system" fn ImmCreateSoftKeyboard(param0 : u32, param1 : super::super::super::Foundation:: HWND, param2 : i32, param3 : i32) -> super::super::super::Foundation:: HWND); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmDestroyContext(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmDestroyIMCC(param0 : super::super::super::Globalization:: HIMCC) -> super::super::super::Globalization:: HIMCC); +windows_targets::link!("imm32.dll" "system" fn ImmDestroyContext(param0 : HIMC) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmDestroyIMCC(param0 : HIMCC) -> HIMCC); windows_targets::link!("imm32.dll" "system" fn ImmDestroySoftKeyboard(param0 : super::super::super::Foundation:: HWND) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmDisableIME(param0 : u32) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmDisableLegacyIME() -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmDisableTextFrameService(idthread : u32) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] windows_targets::link!("imm32.dll" "system" fn ImmEnumInputContext(idthread : u32, lpfn : IMCENUMPROC, lparam : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordA(param0 : super::super::TextServices:: HKL, param1 : REGISTERWORDENUMPROCA, lpszreading : windows_sys::core::PCSTR, param3 : u32, lpszregister : windows_sys::core::PCSTR, param5 : *mut core::ffi::c_void) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordW(param0 : super::super::TextServices:: HKL, param1 : REGISTERWORDENUMPROCW, lpszreading : windows_sys::core::PCWSTR, param3 : u32, lpszregister : windows_sys::core::PCWSTR, param5 : *mut core::ffi::c_void) -> u32); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] -windows_targets::link!("imm32.dll" "system" fn ImmEscapeA(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] -windows_targets::link!("imm32.dll" "system" fn ImmEscapeW(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGenerateMessage(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListA(param0 : super::super::super::Globalization:: HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountA(param0 : super::super::super::Globalization:: HIMC, lpdwlistcount : *mut u32) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountW(param0 : super::super::super::Globalization:: HIMC, lpdwlistcount : *mut u32) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListW(param0 : super::super::super::Globalization:: HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateWindow(param0 : super::super::super::Globalization:: HIMC, param1 : u32, lpcandidate : *mut CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] -windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontA(param0 : super::super::super::Globalization:: HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] -windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontW(param0 : super::super::super::Globalization:: HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringA(param0 : super::super::super::Globalization:: HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringW(param0 : super::super::super::Globalization:: HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionWindow(param0 : super::super::super::Globalization:: HIMC, lpcompform : *mut COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetContext(param0 : super::super::super::Foundation:: HWND) -> super::super::super::Globalization:: HIMC); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] -windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListA(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, lpsrc : windows_sys::core::PCSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] -windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListW(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, lpsrc : windows_sys::core::PCWSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetConversionStatus(param0 : super::super::super::Globalization:: HIMC, lpfdwconversion : *mut IME_CONVERSION_MODE, lpfdwsentence : *mut IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordA(param0 : super::KeyboardAndMouse:: HKL, param1 : REGISTERWORDENUMPROCA, lpszreading : windows_sys::core::PCSTR, param3 : u32, lpszregister : windows_sys::core::PCSTR, param5 : *mut core::ffi::c_void) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordW(param0 : super::KeyboardAndMouse:: HKL, param1 : REGISTERWORDENUMPROCW, lpszreading : windows_sys::core::PCWSTR, param3 : u32, lpszregister : windows_sys::core::PCWSTR, param5 : *mut core::ffi::c_void) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmEscapeA(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmEscapeW(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); +windows_targets::link!("imm32.dll" "system" fn ImmGenerateMessage(param0 : HIMC) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListA(param0 : HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountA(param0 : HIMC, lpdwlistcount : *mut u32) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountW(param0 : HIMC, lpdwlistcount : *mut u32) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListW(param0 : HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateWindow(param0 : HIMC, param1 : u32, lpcandidate : *mut CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontA(param0 : HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontW(param0 : HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringA(param0 : HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); +windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringW(param0 : HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); +windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionWindow(param0 : HIMC, lpcompform : *mut COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmGetContext(param0 : super::super::super::Foundation:: HWND) -> HIMC); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListA(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, lpsrc : windows_sys::core::PCSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListW(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, lpsrc : windows_sys::core::PCWSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetConversionStatus(param0 : HIMC, lpfdwconversion : *mut IME_CONVERSION_MODE, lpfdwsentence : *mut IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmGetDefaultIMEWnd(param0 : super::super::super::Foundation:: HWND) -> super::super::super::Foundation:: HWND); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionA(param0 : super::super::TextServices:: HKL, lpszdescription : windows_sys::core::PSTR, ubuflen : u32) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionW(param0 : super::super::TextServices:: HKL, lpszdescription : windows_sys::core::PWSTR, ubuflen : u32) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineA(param0 : super::super::super::Globalization:: HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_sys::core::PSTR, dwbuflen : u32) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineW(param0 : super::super::super::Globalization:: HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_sys::core::PWSTR, dwbuflen : u32) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetHotKey(param0 : u32, lpumodifiers : *mut u32, lpuvkey : *mut u32, phkl : *mut super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCLockCount(param0 : super::super::super::Globalization:: HIMCC) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCSize(param0 : super::super::super::Globalization:: HIMCC) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetIMCLockCount(param0 : super::super::super::Globalization:: HIMC) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameA(param0 : super::super::TextServices:: HKL, lpszfilename : windows_sys::core::PSTR, ubuflen : u32) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameW(param0 : super::super::TextServices:: HKL, lpszfilename : windows_sys::core::PWSTR, ubuflen : u32) -> u32); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] -windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsA(param0 : super::super::super::Globalization:: HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOA, lpimemenu : *mut IMEMENUITEMINFOA, dwsize : u32) -> u32); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] -windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsW(param0 : super::super::super::Globalization:: HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOW, lpimemenu : *mut IMEMENUITEMINFOW, dwsize : u32) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetOpenStatus(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetProperty(param0 : super::super::TextServices:: HKL, param1 : u32) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleA(param0 : super::super::TextServices:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFA) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleW(param0 : super::super::TextServices:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFW) -> u32); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmGetStatusWindowPos(param0 : super::super::super::Globalization:: HIMC, lpptpos : *mut super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionA(param0 : super::KeyboardAndMouse:: HKL, lpszdescription : windows_sys::core::PSTR, ubuflen : u32) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionW(param0 : super::KeyboardAndMouse:: HKL, lpszdescription : windows_sys::core::PWSTR, ubuflen : u32) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineA(param0 : HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_sys::core::PSTR, dwbuflen : u32) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineW(param0 : HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_sys::core::PWSTR, dwbuflen : u32) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetHotKey(param0 : u32, lpumodifiers : *mut u32, lpuvkey : *mut u32, phkl : *mut super::KeyboardAndMouse:: HKL) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCLockCount(param0 : HIMCC) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCSize(param0 : HIMCC) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetIMCLockCount(param0 : HIMC) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameA(param0 : super::KeyboardAndMouse:: HKL, lpszfilename : windows_sys::core::PSTR, ubuflen : u32) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameW(param0 : super::KeyboardAndMouse:: HKL, lpszfilename : windows_sys::core::PWSTR, ubuflen : u32) -> u32); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsA(param0 : HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOA, lpimemenu : *mut IMEMENUITEMINFOA, dwsize : u32) -> u32); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsW(param0 : HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOW, lpimemenu : *mut IMEMENUITEMINFOW, dwsize : u32) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetOpenStatus(param0 : HIMC) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetProperty(param0 : super::KeyboardAndMouse:: HKL, param1 : u32) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleA(param0 : super::KeyboardAndMouse:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFA) -> u32); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleW(param0 : super::KeyboardAndMouse:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFW) -> u32); +windows_targets::link!("imm32.dll" "system" fn ImmGetStatusWindowPos(param0 : HIMC, lpptpos : *mut super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmGetVirtualKey(param0 : super::super::super::Foundation:: HWND) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEA(lpszimefilename : windows_sys::core::PCSTR, lpszlayouttext : windows_sys::core::PCSTR) -> super::super::TextServices:: HKL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEW(lpszimefilename : windows_sys::core::PCWSTR, lpszlayouttext : windows_sys::core::PCWSTR) -> super::super::TextServices:: HKL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmIsIME(param0 : super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEA(lpszimefilename : windows_sys::core::PCSTR, lpszlayouttext : windows_sys::core::PCSTR) -> super::KeyboardAndMouse:: HKL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEW(lpszimefilename : windows_sys::core::PCWSTR, lpszlayouttext : windows_sys::core::PCWSTR) -> super::KeyboardAndMouse:: HKL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmIsIME(param0 : super::KeyboardAndMouse:: HKL) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmIsUIMessageA(param0 : super::super::super::Foundation:: HWND, param1 : u32, param2 : super::super::super::Foundation:: WPARAM, param3 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmIsUIMessageW(param0 : super::super::super::Foundation:: HWND, param1 : u32, param2 : super::super::super::Foundation:: WPARAM, param3 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: BOOL); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] -windows_targets::link!("imm32.dll" "system" fn ImmLockIMC(param0 : super::super::super::Globalization:: HIMC) -> *mut INPUTCONTEXT); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmLockIMCC(param0 : super::super::super::Globalization:: HIMCC) -> *mut core::ffi::c_void); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmNotifyIME(param0 : super::super::super::Globalization:: HIMC, dwaction : NOTIFY_IME_ACTION, dwindex : NOTIFY_IME_INDEX, dwvalue : u32) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmReSizeIMCC(param0 : super::super::super::Globalization:: HIMCC, param1 : u32) -> super::super::super::Globalization:: HIMCC); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordA(param0 : super::super::TextServices:: HKL, lpszreading : windows_sys::core::PCSTR, param2 : u32, lpszregister : windows_sys::core::PCSTR) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordW(param0 : super::super::TextServices:: HKL, lpszreading : windows_sys::core::PCWSTR, param2 : u32, lpszregister : windows_sys::core::PCWSTR) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmReleaseContext(param0 : super::super::super::Foundation:: HWND, param1 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageA(param0 : super::super::super::Globalization:: HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageW(param0 : super::super::super::Globalization:: HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmSetCandidateWindow(param0 : super::super::super::Globalization:: HIMC, lpcandidate : *const CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] -windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontA(param0 : super::super::super::Globalization:: HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] -windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontW(param0 : super::super::super::Globalization:: HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringA(param0 : super::super::super::Globalization:: HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringW(param0 : super::super::super::Globalization:: HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionWindow(param0 : super::super::super::Globalization:: HIMC, lpcompform : *const COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmSetConversionStatus(param0 : super::super::super::Globalization:: HIMC, param1 : IME_CONVERSION_MODE, param2 : IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmSetHotKey(param0 : u32, param1 : u32, param2 : u32, param3 : super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmSetOpenStatus(param0 : super::super::super::Globalization:: HIMC, param1 : super::super::super::Foundation:: BOOL) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmSetStatusWindowPos(param0 : super::super::super::Globalization:: HIMC, lpptpos : *const super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("imm32.dll" "system" fn ImmLockIMC(param0 : HIMC) -> *mut INPUTCONTEXT); +windows_targets::link!("imm32.dll" "system" fn ImmLockIMCC(param0 : HIMCC) -> *mut core::ffi::c_void); +windows_targets::link!("imm32.dll" "system" fn ImmNotifyIME(param0 : HIMC, dwaction : NOTIFY_IME_ACTION, dwindex : NOTIFY_IME_INDEX, dwvalue : u32) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmReSizeIMCC(param0 : HIMCC, param1 : u32) -> HIMCC); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordA(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_sys::core::PCSTR, param2 : u32, lpszregister : windows_sys::core::PCSTR) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordW(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_sys::core::PCWSTR, param2 : u32, lpszregister : windows_sys::core::PCWSTR) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmReleaseContext(param0 : super::super::super::Foundation:: HWND, param1 : HIMC) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageA(param0 : HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); +windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageW(param0 : HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); +windows_targets::link!("imm32.dll" "system" fn ImmSetCandidateWindow(param0 : HIMC, lpcandidate : *const CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontA(param0 : HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_Graphics_Gdi")] +windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontW(param0 : HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringA(param0 : HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringW(param0 : HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionWindow(param0 : HIMC, lpcompform : *const COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmSetConversionStatus(param0 : HIMC, param1 : IME_CONVERSION_MODE, param2 : IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmSetHotKey(param0 : u32, param1 : u32, param2 : u32, param3 : super::KeyboardAndMouse:: HKL) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmSetOpenStatus(param0 : HIMC, param1 : super::super::super::Foundation:: BOOL) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmSetStatusWindowPos(param0 : HIMC, lpptpos : *const super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmShowSoftKeyboard(param0 : super::super::super::Foundation:: HWND, param1 : i32) -> super::super::super::Foundation:: BOOL); windows_targets::link!("imm32.dll" "system" fn ImmSimulateHotKey(param0 : super::super::super::Foundation:: HWND, param1 : IME_HOTKEY_IDENTIFIER) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMC(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_Globalization")] -windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMCC(param0 : super::super::super::Globalization:: HIMCC) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordA(param0 : super::super::TextServices:: HKL, lpszreading : windows_sys::core::PCSTR, param2 : u32, lpszunregister : windows_sys::core::PCSTR) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordW(param0 : super::super::TextServices:: HKL, lpszreading : windows_sys::core::PCWSTR, param2 : u32, lpszunregister : windows_sys::core::PCWSTR) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMC(param0 : HIMC) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMCC(param0 : HIMCC) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordA(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_sys::core::PCSTR, param2 : u32, lpszunregister : windows_sys::core::PCSTR) -> super::super::super::Foundation:: BOOL); +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] +windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordW(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_sys::core::PCWSTR, param2 : u32, lpszunregister : windows_sys::core::PCWSTR) -> super::super::super::Foundation:: BOOL); pub const ATTR_CONVERTED: u32 = 2u32; pub const ATTR_FIXEDCONVERTED: u32 = 5u32; pub const ATTR_INPUT: u32 = 0u32; @@ -1025,6 +985,8 @@ pub struct GUIDELINE { pub dwPrivateSize: u32, pub dwPrivateOffset: u32, } +pub type HIMC = *mut core::ffi::c_void; +pub type HIMCC = *mut core::ffi::c_void; #[repr(C)] #[cfg(feature = "Win32_UI_WindowsAndMessaging")] #[derive(Clone, Copy)] @@ -1125,11 +1087,10 @@ pub struct IMEITEMCANDIDATE { pub imeItem: [IMEITEM; 1], } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMS { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub cKeyList: u32, pub pKeyList: *mut IMEKMSKEY, } @@ -1148,11 +1109,10 @@ pub struct IMEKMSINIT { pub hWnd: super::super::super::Foundation::HWND, } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMSINVK { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub dwControl: u32, } #[repr(C, packed(1))] @@ -1177,11 +1137,10 @@ pub union IMEKMSKEY_1 { pub pwszNoUse: [u16; 31], } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMSKMP { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub idLang: u16, pub wVKStart: u16, pub wVKEnd: u16, @@ -1189,11 +1148,10 @@ pub struct IMEKMSKMP { pub pKeyList: *mut IMEKMSKEY, } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMSNTFY { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub fSelect: super::super::super::Foundation::BOOL, } #[repr(C)] @@ -1279,7 +1237,7 @@ pub struct IMEWRD_0_0 { pub nPos2: u16, } #[repr(C)] -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[derive(Clone, Copy)] pub struct INPUTCONTEXT { pub hWnd: super::super::super::Foundation::HWND, @@ -1291,17 +1249,17 @@ pub struct INPUTCONTEXT { pub lfFont: INPUTCONTEXT_0, pub cfCompForm: COMPOSITIONFORM, pub cfCandForm: [CANDIDATEFORM; 4], - pub hCompStr: super::super::super::Globalization::HIMCC, - pub hCandInfo: super::super::super::Globalization::HIMCC, - pub hGuideLine: super::super::super::Globalization::HIMCC, - pub hPrivate: super::super::super::Globalization::HIMCC, + pub hCompStr: HIMCC, + pub hCandInfo: HIMCC, + pub hGuideLine: HIMCC, + pub hPrivate: HIMCC, pub dwNumMsgBuf: u32, - pub hMsgBuf: super::super::super::Globalization::HIMCC, + pub hMsgBuf: HIMCC, pub fdwInit: u32, pub dwReserve: [u32; 3], } #[repr(C)] -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[derive(Clone, Copy)] pub union INPUTCONTEXT_0 { pub A: super::super::super::Graphics::Gdi::LOGFONTA, @@ -1427,8 +1385,7 @@ pub union WDD_1 { pub cchRead: u16, pub cchComp: u16, } -#[cfg(feature = "Win32_Globalization")] -pub type IMCENUMPROC = Option super::super::super::Foundation::BOOL>; +pub type IMCENUMPROC = Option super::super::super::Foundation::BOOL>; pub type PFNLOG = Option super::super::super::Foundation::BOOL>; pub type REGISTERWORDENUMPROCA = Option i32>; pub type REGISTERWORDENUMPROCW = Option i32>; diff --git a/crates/libs/sys/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs index a669a7c794..a112a73eae 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs @@ -1,5 +1,4 @@ -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn ActivateKeyboardLayout(hkl : super::super::TextServices:: HKL, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> super::super::TextServices:: HKL); +windows_targets::link!("user32.dll" "system" fn ActivateKeyboardLayout(hkl : HKL, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> HKL); windows_targets::link!("user32.dll" "system" fn BlockInput(fblockit : super::super::super::Foundation:: BOOL) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn DragDetect(hwnd : super::super::super::Foundation:: HWND, pt : super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn EnableWindow(hwnd : super::super::super::Foundation:: HWND, benable : super::super::super::Foundation:: BOOL) -> super::super::super::Foundation:: BOOL); @@ -12,10 +11,8 @@ windows_targets::link!("user32.dll" "system" fn GetKBCodePage() -> u32); windows_targets::link!("user32.dll" "system" fn GetKeyNameTextA(lparam : i32, lpstring : windows_sys::core::PSTR, cchsize : i32) -> i32); windows_targets::link!("user32.dll" "system" fn GetKeyNameTextW(lparam : i32, lpstring : windows_sys::core::PWSTR, cchsize : i32) -> i32); windows_targets::link!("user32.dll" "system" fn GetKeyState(nvirtkey : i32) -> i16); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn GetKeyboardLayout(idthread : u32) -> super::super::TextServices:: HKL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn GetKeyboardLayoutList(nbuff : i32, lplist : *mut super::super::TextServices:: HKL) -> i32); +windows_targets::link!("user32.dll" "system" fn GetKeyboardLayout(idthread : u32) -> HKL); +windows_targets::link!("user32.dll" "system" fn GetKeyboardLayoutList(nbuff : i32, lplist : *mut HKL) -> i32); windows_targets::link!("user32.dll" "system" fn GetKeyboardLayoutNameA(pwszklid : windows_sys::core::PSTR) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn GetKeyboardLayoutNameW(pwszklid : windows_sys::core::PWSTR) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn GetKeyboardState(lpkeystate : *mut u8) -> super::super::super::Foundation:: BOOL); @@ -23,15 +20,11 @@ windows_targets::link!("user32.dll" "system" fn GetKeyboardType(ntypeflag : i32) windows_targets::link!("user32.dll" "system" fn GetLastInputInfo(plii : *mut LASTINPUTINFO) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn GetMouseMovePointsEx(cbsize : u32, lppt : *const MOUSEMOVEPOINT, lpptbuf : *mut MOUSEMOVEPOINT, nbufpoints : i32, resolution : GET_MOUSE_MOVE_POINTS_EX_RESOLUTION) -> i32); windows_targets::link!("user32.dll" "system" fn IsWindowEnabled(hwnd : super::super::super::Foundation:: HWND) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutA(pwszklid : windows_sys::core::PCSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> super::super::TextServices:: HKL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutW(pwszklid : windows_sys::core::PCWSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> super::super::TextServices:: HKL); +windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutA(pwszklid : windows_sys::core::PCSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> HKL); +windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutW(pwszklid : windows_sys::core::PCWSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> HKL); windows_targets::link!("user32.dll" "system" fn MapVirtualKeyA(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExA(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : super::super::TextServices:: HKL) -> u32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExW(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : super::super::TextServices:: HKL) -> u32); +windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExA(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : HKL) -> u32); +windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExW(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : HKL) -> u32); windows_targets::link!("user32.dll" "system" fn MapVirtualKeyW(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE) -> u32); windows_targets::link!("user32.dll" "system" fn OemKeyScan(woemchar : u16) -> u32); windows_targets::link!("user32.dll" "system" fn RegisterHotKey(hwnd : super::super::super::Foundation:: HWND, id : i32, fsmodifiers : HOT_KEY_MODIFIERS, vk : u32) -> super::super::super::Foundation:: BOOL); @@ -44,20 +37,15 @@ windows_targets::link!("user32.dll" "system" fn SetFocus(hwnd : super::super::su windows_targets::link!("user32.dll" "system" fn SetKeyboardState(lpkeystate : *const u8) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn SwapMouseButton(fswap : super::super::super::Foundation:: BOOL) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn ToAscii(uvirtkey : u32, uscancode : u32, lpkeystate : *const u8, lpchar : *mut u16, uflags : u32) -> i32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn ToAsciiEx(uvirtkey : u32, uscancode : u32, lpkeystate : *const u8, lpchar : *mut u16, uflags : u32, dwhkl : super::super::TextServices:: HKL) -> i32); +windows_targets::link!("user32.dll" "system" fn ToAsciiEx(uvirtkey : u32, uscancode : u32, lpkeystate : *const u8, lpchar : *mut u16, uflags : u32, dwhkl : HKL) -> i32); windows_targets::link!("user32.dll" "system" fn ToUnicode(wvirtkey : u32, wscancode : u32, lpkeystate : *const u8, pwszbuff : windows_sys::core::PWSTR, cchbuff : i32, wflags : u32) -> i32); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn ToUnicodeEx(wvirtkey : u32, wscancode : u32, lpkeystate : *const u8, pwszbuff : windows_sys::core::PWSTR, cchbuff : i32, wflags : u32, dwhkl : super::super::TextServices:: HKL) -> i32); +windows_targets::link!("user32.dll" "system" fn ToUnicodeEx(wvirtkey : u32, wscancode : u32, lpkeystate : *const u8, pwszbuff : windows_sys::core::PWSTR, cchbuff : i32, wflags : u32, dwhkl : HKL) -> i32); windows_targets::link!("user32.dll" "system" fn TrackMouseEvent(lpeventtrack : *mut TRACKMOUSEEVENT) -> super::super::super::Foundation:: BOOL); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn UnloadKeyboardLayout(hkl : super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); +windows_targets::link!("user32.dll" "system" fn UnloadKeyboardLayout(hkl : HKL) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn UnregisterHotKey(hwnd : super::super::super::Foundation:: HWND, id : i32) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn VkKeyScanA(ch : i8) -> i16); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn VkKeyScanExA(ch : i8, dwhkl : super::super::TextServices:: HKL) -> i16); -#[cfg(feature = "Win32_UI_TextServices")] -windows_targets::link!("user32.dll" "system" fn VkKeyScanExW(ch : u16, dwhkl : super::super::TextServices:: HKL) -> i16); +windows_targets::link!("user32.dll" "system" fn VkKeyScanExA(ch : i8, dwhkl : HKL) -> i16); +windows_targets::link!("user32.dll" "system" fn VkKeyScanExW(ch : u16, dwhkl : HKL) -> i16); windows_targets::link!("user32.dll" "system" fn VkKeyScanW(ch : u16) -> i16); windows_targets::link!("comctl32.dll" "system" fn _TrackMouseEvent(lpeventtrack : *mut TRACKMOUSEEVENT) -> super::super::super::Foundation:: BOOL); windows_targets::link!("user32.dll" "system" fn keybd_event(bvk : u8, bscan : u8, dwflags : KEYBD_EVENT_FLAGS, dwextrainfo : usize)); @@ -511,6 +499,7 @@ pub struct HARDWAREINPUT { pub wParamL: u16, pub wParamH: u16, } +pub type HKL = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct INPUT { diff --git a/crates/libs/sys/src/Windows/Win32/UI/Input/Touch/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/Input/Touch/mod.rs index 969c03ece6..abc1ed0bca 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/Input/Touch/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/Input/Touch/mod.rs @@ -69,8 +69,8 @@ pub struct GESTURENOTIFYSTRUCT { pub ptsLocation: super::super::super::Foundation::POINTS, pub dwInstanceID: u32, } -pub type HGESTUREINFO = isize; -pub type HTOUCHINPUT = isize; +pub type HGESTUREINFO = *mut core::ffi::c_void; +pub type HTOUCHINPUT = *mut core::ffi::c_void; pub const InertiaProcessor: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xabb27087_4ce0_4e58_a0cb_e24df96814be); pub const ManipulationProcessor: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x597d4fb0_47fd_4aff_89b9_c6cfae8cf08e); #[repr(C)] diff --git a/crates/libs/sys/src/Windows/Win32/UI/Input/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/Input/mod.rs index 7990ee136e..7b9e92fff6 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/Input/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/Input/mod.rs @@ -58,7 +58,7 @@ pub type RAWINPUTDEVICE_FLAGS = u32; pub type RAW_INPUT_DATA_COMMAND_FLAGS = u32; pub type RAW_INPUT_DEVICE_INFO_COMMAND = u32; pub type RID_DEVICE_INFO_TYPE = u32; -pub type HRAWINPUT = isize; +pub type HRAWINPUT = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct INPUT_MESSAGE_SOURCE { diff --git a/crates/libs/sys/src/Windows/Win32/UI/InteractionContext/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/InteractionContext/mod.rs index 6fdc9f648e..88457d216e 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/InteractionContext/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/InteractionContext/mod.rs @@ -142,7 +142,7 @@ pub struct CROSS_SLIDE_PARAMETER { pub threshold: CROSS_SLIDE_THRESHOLD, pub distance: f32, } -pub type HINTERACTIONCONTEXT = isize; +pub type HINTERACTIONCONTEXT = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct INTERACTION_ARGUMENTS_CROSS_SLIDE { diff --git a/crates/libs/sys/src/Windows/Win32/UI/Shell/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/Shell/mod.rs index f1ef45a853..a0e71bcace 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/Shell/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/Shell/mod.rs @@ -5477,7 +5477,7 @@ pub const FolderViewHost: windows_sys::core::GUID = windows_sys::core::GUID::fro pub const FrameworkInputPane: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd5120aa3_46ba_44c5_822d_ca8092c1fc72); pub const FreeSpaceCategorizer: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb5607793_24ac_44c7_82e2_831726aa6cb7); pub const GenericCredentialProvider: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x25cbb996_92ed_457e_b28c_4774084bd562); -pub type HDROP = isize; +pub type HDROP = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct HELPINFO { @@ -5531,7 +5531,7 @@ pub struct HLTBINFO { pub uDockType: u32, pub rcTbPos: super::super::Foundation::RECT, } -pub type HPSXA = isize; +pub type HPSXA = *mut core::ffi::c_void; pub const HideInputPaneAnimationCoordinator: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x384742b1_2a77_4cb3_8cf8_1136f5e17e59); pub const HomeGroup: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xde77ba04_3c92_4d11_a1a5_42352a53e0e3); pub const IENamespaceTreeControl: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xace52d03_e5cd_4b20_82ff_e71b11beae1d); diff --git a/crates/libs/sys/src/Windows/Win32/UI/TabletPC/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/TabletPC/mod.rs index 8ce6c63c08..1224b59eec 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/TabletPC/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/TabletPC/mod.rs @@ -1332,11 +1332,11 @@ pub struct GESTURE_DATA { pub strokeCount: i32, } pub const GestureRecognizer: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xea30c654_c62c_441f_ac00_95f9a196782c); -pub type HRECOALT = isize; -pub type HRECOCONTEXT = isize; -pub type HRECOGNIZER = isize; -pub type HRECOLATTICE = isize; -pub type HRECOWORDLIST = isize; +pub type HRECOALT = *mut core::ffi::c_void; +pub type HRECOCONTEXT = *mut core::ffi::c_void; +pub type HRECOGNIZER = *mut core::ffi::c_void; +pub type HRECOLATTICE = *mut core::ffi::c_void; +pub type HRECOWORDLIST = *mut core::ffi::c_void; pub const HandwrittenTextInsertion: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9f074ee2_e6e9_4d8a_a047_eb5b5c3c55da); #[repr(C)] #[cfg(all(feature = "Win32_System_Com", feature = "Win32_System_Variant", feature = "Win32_UI_Controls"))] diff --git a/crates/libs/sys/src/Windows/Win32/UI/TextServices/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/TextServices/mod.rs index 52f4e4aeb6..1cd52d1071 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/TextServices/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/TextServices/mod.rs @@ -628,7 +628,6 @@ pub const AccDictionary: windows_sys::core::GUID = windows_sys::core::GUID::from pub const AccServerDocMgr: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6089a37e_eb8a_482d_bd6f_f9f46904d16d); pub const AccStore: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5440837f_4bff_4ae5_a1b1_7722ecc6332a); pub const DocWrap: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xbf426f7e_7a5e_44d6_830c_a390ea9462a3); -pub type HKL = isize; pub const MSAAControl: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x08cd963f_7a3e_4f5c_9bd8_d692bb043c5b); #[repr(C)] #[derive(Clone, Copy)] @@ -660,6 +659,7 @@ pub struct TF_HALTCOND { pub dwFlags: u32, } #[repr(C)] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[derive(Clone, Copy)] pub struct TF_INPUTPROCESSORPROFILE { pub dwProfileType: u32, @@ -667,9 +667,9 @@ pub struct TF_INPUTPROCESSORPROFILE { pub clsid: windows_sys::core::GUID, pub guidProfile: windows_sys::core::GUID, pub catid: windows_sys::core::GUID, - pub hklSubstitute: HKL, + pub hklSubstitute: super::Input::KeyboardAndMouse::HKL, pub dwCaps: u32, - pub hkl: HKL, + pub hkl: super::Input::KeyboardAndMouse::HKL, pub dwFlags: u32, } #[repr(C)] diff --git a/crates/libs/sys/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs b/crates/libs/sys/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs index 8271e63984..ed1b752a32 100644 --- a/crates/libs/sys/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs +++ b/crates/libs/sys/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs @@ -1126,6 +1126,7 @@ pub const IDC_SIZENESW: windows_sys::core::PCWSTR = 32643u16 as _; pub const IDC_SIZENS: windows_sys::core::PCWSTR = 32645u16 as _; pub const IDC_SIZENWSE: windows_sys::core::PCWSTR = 32642u16 as _; pub const IDC_SIZEWE: windows_sys::core::PCWSTR = 32644u16 as _; +pub const IDC_STATIC: i32 = -1i32; pub const IDC_UPARROW: windows_sys::core::PCWSTR = 32516u16 as _; pub const IDC_WAIT: windows_sys::core::PCWSTR = 32514u16 as _; pub const IDHELP: MESSAGEBOX_RESULT = 9i32; @@ -1696,9 +1697,11 @@ pub const RT_DIALOG: windows_sys::core::PCWSTR = 5u16 as _; pub const RT_DLGINCLUDE: windows_sys::core::PCWSTR = 17u16 as _; pub const RT_FONT: windows_sys::core::PCWSTR = 8u16 as _; pub const RT_FONTDIR: windows_sys::core::PCWSTR = 7u16 as _; +pub const RT_GROUP_CURSOR: windows_sys::core::PCWSTR = 12u16 as _; +pub const RT_GROUP_ICON: windows_sys::core::PCWSTR = 14u16 as _; pub const RT_HTML: windows_sys::core::PCWSTR = 23u16 as _; pub const RT_ICON: windows_sys::core::PCWSTR = 3u16 as _; -pub const RT_MANIFEST: u32 = 24u32; +pub const RT_MANIFEST: windows_sys::core::PCWSTR = 24u16 as _; pub const RT_MENU: windows_sys::core::PCWSTR = 4u16 as _; pub const RT_MESSAGETABLE: windows_sys::core::PCWSTR = 11u16 as _; pub const RT_PLUGPLAY: windows_sys::core::PCWSTR = 19u16 as _; @@ -2333,6 +2336,7 @@ pub const WINEVENT_SKIPOWNPROCESS: u32 = 2u32; pub const WINEVENT_SKIPOWNTHREAD: u32 = 1u32; pub const WINSTA_ACCESSCLIPBOARD: i32 = 4i32; pub const WINSTA_ACCESSGLOBALATOMS: i32 = 32i32; +pub const WINSTA_ALL_ACCESS: i32 = 895i32; pub const WINSTA_CREATEDESKTOP: i32 = 8i32; pub const WINSTA_ENUMDESKTOPS: i32 = 1i32; pub const WINSTA_ENUMERATE: i32 = 256i32; @@ -2678,6 +2682,7 @@ pub const WVR_ALIGNLEFT: u32 = 32u32; pub const WVR_ALIGNRIGHT: u32 = 128u32; pub const WVR_ALIGNTOP: u32 = 16u32; pub const WVR_HREDRAW: u32 = 256u32; +pub const WVR_REDRAW: u32 = 768u32; pub const WVR_VALIDRECTS: u32 = 1024u32; pub const WVR_VREDRAW: u32 = 512u32; pub const XBUTTON1: u16 = 1u16; @@ -2845,7 +2850,7 @@ pub struct CREATESTRUCTA { pub style: i32, pub lpszName: windows_sys::core::PCSTR, pub lpszClass: windows_sys::core::PCSTR, - pub dwExStyle: u32, + pub dwExStyle: WINDOW_EX_STYLE, } #[repr(C)] #[derive(Clone, Copy)] @@ -2861,7 +2866,7 @@ pub struct CREATESTRUCTW { pub style: i32, pub lpszName: windows_sys::core::PCWSTR, pub lpszClass: windows_sys::core::PCWSTR, - pub dwExStyle: u32, + pub dwExStyle: WINDOW_EX_STYLE, } #[repr(C)] #[derive(Clone, Copy)] @@ -3139,7 +3144,7 @@ pub struct GUITHREADINFO { pub hwndCaret: super::super::Foundation::HWND, pub rcCaret: super::super::Foundation::RECT, } -pub type HACCEL = isize; +pub type HACCEL = *mut core::ffi::c_void; #[repr(C)] #[derive(Clone, Copy)] pub struct HARDWAREHOOKSTRUCT { @@ -3148,12 +3153,12 @@ pub struct HARDWAREHOOKSTRUCT { pub wParam: super::super::Foundation::WPARAM, pub lParam: super::super::Foundation::LPARAM, } -pub type HCURSOR = isize; +pub type HCURSOR = *mut core::ffi::c_void; pub type HDEVNOTIFY = *mut core::ffi::c_void; -pub type HDWP = isize; -pub type HHOOK = isize; -pub type HICON = isize; -pub type HMENU = isize; +pub type HDWP = *mut core::ffi::c_void; +pub type HHOOK = *mut core::ffi::c_void; +pub type HICON = *mut core::ffi::c_void; +pub type HMENU = *mut core::ffi::c_void; #[repr(C)] #[cfg(feature = "Win32_Graphics_Gdi")] #[derive(Clone, Copy)] diff --git a/crates/libs/windows/Cargo.toml b/crates/libs/windows/Cargo.toml index 0be951d198..f1a15b9f9d 100644 --- a/crates/libs/windows/Cargo.toml +++ b/crates/libs/windows/Cargo.toml @@ -358,6 +358,7 @@ UI_WindowManagement = ["UI"] UI_WindowManagement_Preview = ["UI_WindowManagement"] Wdk = ["Win32_Foundation"] Wdk_Devices = ["Wdk"] +Wdk_Devices_Bluetooth = ["Wdk_Devices"] Wdk_Devices_HumanInterfaceDevice = ["Wdk_Devices"] Wdk_Foundation = ["Wdk"] Wdk_Graphics = ["Wdk"] @@ -370,6 +371,7 @@ Wdk_Storage_FileSystem = ["Wdk_Storage"] Wdk_Storage_FileSystem_Minifilters = ["Wdk_Storage_FileSystem"] Wdk_System = ["Wdk"] Wdk_System_IO = ["Wdk_System"] +Wdk_System_Memory = ["Wdk_System"] Wdk_System_OfflineRegistry = ["Wdk_System"] Wdk_System_Registry = ["Wdk_System"] Wdk_System_SystemInformation = ["Wdk_System"] diff --git a/crates/libs/windows/features.json b/crates/libs/windows/features.json index 9d1c180245..cd39d85d24 100644 --- a/crates/libs/windows/features.json +++ b/crates/libs/windows/features.json @@ -1 +1 @@ -{"namespace_map":["Windows.AI.MachineLearning","Windows.AI.MachineLearning.Preview","Windows.ApplicationModel","Windows.ApplicationModel.Activation","Windows.ApplicationModel.AppExtensions","Windows.ApplicationModel.AppService","Windows.ApplicationModel.Appointments","Windows.ApplicationModel.Appointments.AppointmentsProvider","Windows.ApplicationModel.Appointments.DataProvider","Windows.ApplicationModel.Background","Windows.ApplicationModel.Calls","Windows.ApplicationModel.Calls.Background","Windows.ApplicationModel.Calls.Provider","Windows.ApplicationModel.Chat","Windows.ApplicationModel.CommunicationBlocking","Windows.ApplicationModel.Contacts","Windows.ApplicationModel.Contacts.DataProvider","Windows.ApplicationModel.Contacts.Provider","Windows.ApplicationModel.ConversationalAgent","Windows.ApplicationModel.Core","Windows.ApplicationModel.DataTransfer","Windows.ApplicationModel.DataTransfer.DragDrop","Windows.ApplicationModel.DataTransfer.DragDrop.Core","Windows.ApplicationModel.DataTransfer.ShareTarget","Windows.ApplicationModel.Email","Windows.ApplicationModel.Email.DataProvider","Windows.ApplicationModel.ExtendedExecution","Windows.ApplicationModel.ExtendedExecution.Foreground","Windows.ApplicationModel.Holographic","Windows.ApplicationModel.LockScreen","Windows.ApplicationModel.Payments","Windows.ApplicationModel.Payments.Provider","Windows.ApplicationModel.Preview.Holographic","Windows.ApplicationModel.Preview.InkWorkspace","Windows.ApplicationModel.Preview.Notes","Windows.ApplicationModel.Resources","Windows.ApplicationModel.Resources.Core","Windows.ApplicationModel.Resources.Management","Windows.ApplicationModel.Search","Windows.ApplicationModel.Search.Core","Windows.ApplicationModel.SocialInfo","Windows.ApplicationModel.SocialInfo.Provider","Windows.ApplicationModel.Store","Windows.ApplicationModel.Store.LicenseManagement","Windows.ApplicationModel.Store.Preview","Windows.ApplicationModel.Store.Preview.InstallControl","Windows.ApplicationModel.UserActivities","Windows.ApplicationModel.UserActivities.Core","Windows.ApplicationModel.UserDataAccounts","Windows.ApplicationModel.UserDataAccounts.Provider","Windows.ApplicationModel.UserDataAccounts.SystemAccess","Windows.ApplicationModel.UserDataTasks","Windows.ApplicationModel.UserDataTasks.DataProvider","Windows.ApplicationModel.VoiceCommands","Windows.ApplicationModel.Wallet","Windows.ApplicationModel.Wallet.System","Windows.Data.Html","Windows.Data.Json","Windows.Data.Pdf","Windows.Data.Text","Windows.Data.Xml.Dom","Windows.Data.Xml.Xsl","Windows.Devices","Windows.Devices.Adc","Windows.Devices.Adc.Provider","Windows.Devices.AllJoyn","Windows.Devices.Background","Windows.Devices.Bluetooth","Windows.Devices.Bluetooth.Advertisement","Windows.Devices.Bluetooth.Background","Windows.Devices.Bluetooth.GenericAttributeProfile","Windows.Devices.Bluetooth.Rfcomm","Windows.Devices.Custom","Windows.Devices.Display","Windows.Devices.Display.Core","Windows.Devices.Enumeration","Windows.Devices.Enumeration.Pnp","Windows.Devices.Geolocation","Windows.Devices.Geolocation.Geofencing","Windows.Devices.Geolocation.Provider","Windows.Devices.Gpio","Windows.Devices.Gpio.Provider","Windows.Devices.Haptics","Windows.Devices.HumanInterfaceDevice","Windows.Devices.I2c","Windows.Devices.I2c.Provider","Windows.Devices.Input","Windows.Devices.Input.Preview","Windows.Devices.Lights","Windows.Devices.Lights.Effects","Windows.Devices.Midi","Windows.Devices.Perception","Windows.Devices.Perception.Provider","Windows.Devices.PointOfService","Windows.Devices.PointOfService.Provider","Windows.Devices.Portable","Windows.Devices.Power","Windows.Devices.Printers","Windows.Devices.Printers.Extensions","Windows.Devices.Pwm","Windows.Devices.Pwm.Provider","Windows.Devices.Radios","Windows.Devices.Scanners","Windows.Devices.Sensors","Windows.Devices.Sensors.Custom","Windows.Devices.SerialCommunication","Windows.Devices.SmartCards","Windows.Devices.Sms","Windows.Devices.Spi","Windows.Devices.Spi.Provider","Windows.Devices.Usb","Windows.Devices.WiFi","Windows.Devices.WiFiDirect","Windows.Devices.WiFiDirect.Services","Windows.Embedded.DeviceLockdown","Windows.Foundation","Windows.Foundation.Collections","Windows.Foundation.Diagnostics","Windows.Foundation.Metadata","Windows.Foundation.Numerics","Windows.Gaming.Input","Windows.Gaming.Input.Custom","Windows.Gaming.Input.ForceFeedback","Windows.Gaming.Input.Preview","Windows.Gaming.Preview","Windows.Gaming.Preview.GamesEnumeration","Windows.Gaming.UI","Windows.Gaming.XboxLive","Windows.Gaming.XboxLive.Storage","Windows.Globalization","Windows.Globalization.Collation","Windows.Globalization.DateTimeFormatting","Windows.Globalization.Fonts","Windows.Globalization.NumberFormatting","Windows.Globalization.PhoneNumberFormatting","Windows.Graphics","Windows.Graphics.Capture","Windows.Graphics.DirectX","Windows.Graphics.DirectX.Direct3D11","Windows.Graphics.Display","Windows.Graphics.Display.Core","Windows.Graphics.Effects","Windows.Graphics.Holographic","Windows.Graphics.Imaging","Windows.Graphics.Printing","Windows.Graphics.Printing.OptionDetails","Windows.Graphics.Printing.PrintSupport","Windows.Graphics.Printing.PrintTicket","Windows.Graphics.Printing.Workflow","Windows.Graphics.Printing3D","Windows.Management","Windows.Management.Core","Windows.Management.Deployment","Windows.Management.Deployment.Preview","Windows.Management.Policies","Windows.Management.Update","Windows.Management.Workplace","Windows.Media","Windows.Media.AppBroadcasting","Windows.Media.AppRecording","Windows.Media.Audio","Windows.Media.Capture","Windows.Media.Capture.Core","Windows.Media.Capture.Frames","Windows.Media.Casting","Windows.Media.ClosedCaptioning","Windows.Media.ContentRestrictions","Windows.Media.Control","Windows.Media.Core","Windows.Media.Core.Preview","Windows.Media.Devices","Windows.Media.Devices.Core","Windows.Media.DialProtocol","Windows.Media.Editing","Windows.Media.Effects","Windows.Media.FaceAnalysis","Windows.Media.Import","Windows.Media.MediaProperties","Windows.Media.Miracast","Windows.Media.Ocr","Windows.Media.PlayTo","Windows.Media.Playback","Windows.Media.Playlists","Windows.Media.Protection","Windows.Media.Protection.PlayReady","Windows.Media.Render","Windows.Media.SpeechRecognition","Windows.Media.SpeechSynthesis","Windows.Media.Streaming.Adaptive","Windows.Media.Transcoding","Windows.Networking","Windows.Networking.BackgroundTransfer","Windows.Networking.Connectivity","Windows.Networking.NetworkOperators","Windows.Networking.Proximity","Windows.Networking.PushNotifications","Windows.Networking.ServiceDiscovery.Dnssd","Windows.Networking.Sockets","Windows.Networking.Vpn","Windows.Networking.XboxLive","Windows.Perception","Windows.Perception.Automation.Core","Windows.Perception.People","Windows.Perception.Spatial","Windows.Perception.Spatial.Preview","Windows.Perception.Spatial.Surfaces","Windows.Phone","Windows.Phone.ApplicationModel","Windows.Phone.Devices.Notification","Windows.Phone.Devices.Power","Windows.Phone.Management.Deployment","Windows.Phone.Media.Devices","Windows.Phone.Notification.Management","Windows.Phone.PersonalInformation","Windows.Phone.PersonalInformation.Provisioning","Windows.Phone.Speech.Recognition","Windows.Phone.StartScreen","Windows.Phone.System","Windows.Phone.System.Power","Windows.Phone.System.Profile","Windows.Phone.System.UserProfile.GameServices.Core","Windows.Phone.UI.Input","Windows.Security.Authentication.Identity","Windows.Security.Authentication.Identity.Core","Windows.Security.Authentication.Identity.Provider","Windows.Security.Authentication.OnlineId","Windows.Security.Authentication.Web","Windows.Security.Authentication.Web.Core","Windows.Security.Authentication.Web.Provider","Windows.Security.Authorization.AppCapabilityAccess","Windows.Security.Credentials","Windows.Security.Credentials.UI","Windows.Security.Cryptography","Windows.Security.Cryptography.Certificates","Windows.Security.Cryptography.Core","Windows.Security.Cryptography.DataProtection","Windows.Security.DataProtection","Windows.Security.EnterpriseData","Windows.Security.ExchangeActiveSyncProvisioning","Windows.Security.Isolation","Windows.Services.Cortana","Windows.Services.Maps","Windows.Services.Maps.Guidance","Windows.Services.Maps.LocalSearch","Windows.Services.Maps.OfflineMaps","Windows.Services.Store","Windows.Services.TargetedContent","Windows.Storage","Windows.Storage.AccessCache","Windows.Storage.BulkAccess","Windows.Storage.Compression","Windows.Storage.FileProperties","Windows.Storage.Pickers","Windows.Storage.Pickers.Provider","Windows.Storage.Provider","Windows.Storage.Search","Windows.Storage.Streams","Windows.System","Windows.System.Diagnostics","Windows.System.Diagnostics.DevicePortal","Windows.System.Diagnostics.Telemetry","Windows.System.Diagnostics.TraceReporting","Windows.System.Display","Windows.System.Implementation.FileExplorer","Windows.System.Inventory","Windows.System.Power","Windows.System.Power.Diagnostics","Windows.System.Preview","Windows.System.Profile","Windows.System.Profile.SystemManufacturers","Windows.System.RemoteDesktop","Windows.System.RemoteDesktop.Input","Windows.System.RemoteDesktop.Provider","Windows.System.RemoteSystems","Windows.System.Threading","Windows.System.Threading.Core","Windows.System.Update","Windows.System.UserProfile","Windows.UI","Windows.UI.Accessibility","Windows.UI.ApplicationSettings","Windows.UI.Composition","Windows.UI.Composition.Core","Windows.UI.Composition.Desktop","Windows.UI.Composition.Diagnostics","Windows.UI.Composition.Effects","Windows.UI.Composition.Interactions","Windows.UI.Composition.Scenes","Windows.UI.Core","Windows.UI.Core.AnimationMetrics","Windows.UI.Core.Preview","Windows.UI.Input","Windows.UI.Input.Core","Windows.UI.Input.Inking","Windows.UI.Input.Inking.Analysis","Windows.UI.Input.Inking.Core","Windows.UI.Input.Inking.Preview","Windows.UI.Input.Preview","Windows.UI.Input.Preview.Injection","Windows.UI.Input.Spatial","Windows.UI.Notifications","Windows.UI.Notifications.Management","Windows.UI.Notifications.Preview","Windows.UI.Popups","Windows.UI.Shell","Windows.UI.StartScreen","Windows.UI.Text","Windows.UI.Text.Core","Windows.UI.UIAutomation","Windows.UI.UIAutomation.Core","Windows.UI.ViewManagement","Windows.UI.ViewManagement.Core","Windows.UI.WebUI","Windows.UI.WebUI.Core","Windows.UI.WindowManagement","Windows.UI.WindowManagement.Preview","Windows.UI.Xaml","Windows.UI.Xaml.Automation","Windows.UI.Xaml.Automation.Peers","Windows.UI.Xaml.Automation.Provider","Windows.UI.Xaml.Automation.Text","Windows.UI.Xaml.Controls","Windows.UI.Xaml.Controls.Maps","Windows.UI.Xaml.Controls.Primitives","Windows.UI.Xaml.Core.Direct","Windows.UI.Xaml.Data","Windows.UI.Xaml.Documents","Windows.UI.Xaml.Hosting","Windows.UI.Xaml.Input","Windows.UI.Xaml.Interop","Windows.UI.Xaml.Markup","Windows.UI.Xaml.Media","Windows.UI.Xaml.Media.Animation","Windows.UI.Xaml.Media.Imaging","Windows.UI.Xaml.Media.Media3D","Windows.UI.Xaml.Navigation","Windows.UI.Xaml.Printing","Windows.UI.Xaml.Resources","Windows.UI.Xaml.Shapes","Windows.Wdk.Devices.HumanInterfaceDevice","Windows.Wdk.Foundation","Windows.Wdk.Graphics.Direct3D","Windows.Wdk.NetworkManagement.Ndis","Windows.Wdk.NetworkManagement.WindowsFilteringPlatform","Windows.Wdk.Storage.FileSystem","Windows.Wdk.Storage.FileSystem.Minifilters","Windows.Wdk.System.IO","Windows.Wdk.System.OfflineRegistry","Windows.Wdk.System.Registry","Windows.Wdk.System.SystemInformation","Windows.Wdk.System.SystemServices","Windows.Wdk.System.Threading","Windows.Web","Windows.Web.AtomPub","Windows.Web.Http","Windows.Web.Http.Diagnostics","Windows.Web.Http.Filters","Windows.Web.Http.Headers","Windows.Web.Syndication","Windows.Web.UI","Windows.Web.UI.Interop","Windows.Win32.AI.MachineLearning.DirectML","Windows.Win32.AI.MachineLearning.WinML","Windows.Win32.Data.HtmlHelp","Windows.Win32.Data.RightsManagement","Windows.Win32.Data.Xml.MsXml","Windows.Win32.Data.Xml.XmlLite","Windows.Win32.Devices.AllJoyn","Windows.Win32.Devices.BiometricFramework","Windows.Win32.Devices.Bluetooth","Windows.Win32.Devices.Communication","Windows.Win32.Devices.DeviceAccess","Windows.Win32.Devices.DeviceAndDriverInstallation","Windows.Win32.Devices.DeviceQuery","Windows.Win32.Devices.Display","Windows.Win32.Devices.Enumeration.Pnp","Windows.Win32.Devices.Fax","Windows.Win32.Devices.FunctionDiscovery","Windows.Win32.Devices.Geolocation","Windows.Win32.Devices.HumanInterfaceDevice","Windows.Win32.Devices.ImageAcquisition","Windows.Win32.Devices.PortableDevices","Windows.Win32.Devices.Properties","Windows.Win32.Devices.Pwm","Windows.Win32.Devices.Sensors","Windows.Win32.Devices.SerialCommunication","Windows.Win32.Devices.Tapi","Windows.Win32.Devices.Usb","Windows.Win32.Devices.WebServicesOnDevices","Windows.Win32.Foundation","Windows.Win32.Foundation.Metadata","Windows.Win32.Gaming","Windows.Win32.Globalization","Windows.Win32.Graphics.CompositionSwapchain","Windows.Win32.Graphics.DXCore","Windows.Win32.Graphics.Direct2D","Windows.Win32.Graphics.Direct2D.Common","Windows.Win32.Graphics.Direct3D","Windows.Win32.Graphics.Direct3D.Dxc","Windows.Win32.Graphics.Direct3D.Fxc","Windows.Win32.Graphics.Direct3D10","Windows.Win32.Graphics.Direct3D11","Windows.Win32.Graphics.Direct3D11on12","Windows.Win32.Graphics.Direct3D12","Windows.Win32.Graphics.Direct3D9","Windows.Win32.Graphics.Direct3D9on12","Windows.Win32.Graphics.DirectComposition","Windows.Win32.Graphics.DirectDraw","Windows.Win32.Graphics.DirectManipulation","Windows.Win32.Graphics.DirectWrite","Windows.Win32.Graphics.Dwm","Windows.Win32.Graphics.Dxgi","Windows.Win32.Graphics.Dxgi.Common","Windows.Win32.Graphics.Gdi","Windows.Win32.Graphics.GdiPlus","Windows.Win32.Graphics.Hlsl","Windows.Win32.Graphics.Imaging","Windows.Win32.Graphics.Imaging.D2D","Windows.Win32.Graphics.OpenGL","Windows.Win32.Graphics.Printing","Windows.Win32.Graphics.Printing.PrintTicket","Windows.Win32.Management.MobileDeviceManagementRegistration","Windows.Win32.Media","Windows.Win32.Media.Audio","Windows.Win32.Media.Audio.Apo","Windows.Win32.Media.Audio.DirectMusic","Windows.Win32.Media.Audio.DirectSound","Windows.Win32.Media.Audio.Endpoints","Windows.Win32.Media.Audio.XAudio2","Windows.Win32.Media.DeviceManager","Windows.Win32.Media.DirectShow","Windows.Win32.Media.DirectShow.Tv","Windows.Win32.Media.DirectShow.Xml","Windows.Win32.Media.DxMediaObjects","Windows.Win32.Media.KernelStreaming","Windows.Win32.Media.LibrarySharingServices","Windows.Win32.Media.MediaFoundation","Windows.Win32.Media.MediaPlayer","Windows.Win32.Media.Multimedia","Windows.Win32.Media.PictureAcquisition","Windows.Win32.Media.Speech","Windows.Win32.Media.Streaming","Windows.Win32.Media.WindowsMediaFormat","Windows.Win32.NetworkManagement.Dhcp","Windows.Win32.NetworkManagement.Dns","Windows.Win32.NetworkManagement.InternetConnectionWizard","Windows.Win32.NetworkManagement.IpHelper","Windows.Win32.NetworkManagement.MobileBroadband","Windows.Win32.NetworkManagement.Multicast","Windows.Win32.NetworkManagement.Ndis","Windows.Win32.NetworkManagement.NetBios","Windows.Win32.NetworkManagement.NetManagement","Windows.Win32.NetworkManagement.NetShell","Windows.Win32.NetworkManagement.NetworkDiagnosticsFramework","Windows.Win32.NetworkManagement.NetworkPolicyServer","Windows.Win32.NetworkManagement.P2P","Windows.Win32.NetworkManagement.QoS","Windows.Win32.NetworkManagement.Rras","Windows.Win32.NetworkManagement.Snmp","Windows.Win32.NetworkManagement.WNet","Windows.Win32.NetworkManagement.WebDav","Windows.Win32.NetworkManagement.WiFi","Windows.Win32.NetworkManagement.WindowsConnectNow","Windows.Win32.NetworkManagement.WindowsConnectionManager","Windows.Win32.NetworkManagement.WindowsFilteringPlatform","Windows.Win32.NetworkManagement.WindowsFirewall","Windows.Win32.NetworkManagement.WindowsNetworkVirtualization","Windows.Win32.Networking.ActiveDirectory","Windows.Win32.Networking.BackgroundIntelligentTransferService","Windows.Win32.Networking.Clustering","Windows.Win32.Networking.HttpServer","Windows.Win32.Networking.Ldap","Windows.Win32.Networking.NetworkListManager","Windows.Win32.Networking.RemoteDifferentialCompression","Windows.Win32.Networking.WebSocket","Windows.Win32.Networking.WinHttp","Windows.Win32.Networking.WinInet","Windows.Win32.Networking.WinSock","Windows.Win32.Networking.WindowsWebServices","Windows.Win32.Security","Windows.Win32.Security.AppLocker","Windows.Win32.Security.Authentication.Identity","Windows.Win32.Security.Authentication.Identity.Provider","Windows.Win32.Security.Authorization","Windows.Win32.Security.Authorization.UI","Windows.Win32.Security.ConfigurationSnapin","Windows.Win32.Security.Credentials","Windows.Win32.Security.Cryptography","Windows.Win32.Security.Cryptography.Catalog","Windows.Win32.Security.Cryptography.Certificates","Windows.Win32.Security.Cryptography.Sip","Windows.Win32.Security.Cryptography.UI","Windows.Win32.Security.DiagnosticDataQuery","Windows.Win32.Security.DirectoryServices","Windows.Win32.Security.EnterpriseData","Windows.Win32.Security.ExtensibleAuthenticationProtocol","Windows.Win32.Security.Isolation","Windows.Win32.Security.LicenseProtection","Windows.Win32.Security.NetworkAccessProtection","Windows.Win32.Security.Tpm","Windows.Win32.Security.WinTrust","Windows.Win32.Security.WinWlx","Windows.Win32.Storage.Cabinets","Windows.Win32.Storage.CloudFilters","Windows.Win32.Storage.Compression","Windows.Win32.Storage.DataDeduplication","Windows.Win32.Storage.DistributedFileSystem","Windows.Win32.Storage.EnhancedStorage","Windows.Win32.Storage.FileHistory","Windows.Win32.Storage.FileServerResourceManager","Windows.Win32.Storage.FileSystem","Windows.Win32.Storage.Imapi","Windows.Win32.Storage.IndexServer","Windows.Win32.Storage.InstallableFileSystems","Windows.Win32.Storage.IscsiDisc","Windows.Win32.Storage.Jet","Windows.Win32.Storage.Nvme","Windows.Win32.Storage.OfflineFiles","Windows.Win32.Storage.OperationRecorder","Windows.Win32.Storage.Packaging.Appx","Windows.Win32.Storage.Packaging.Opc","Windows.Win32.Storage.ProjectedFileSystem","Windows.Win32.Storage.StructuredStorage","Windows.Win32.Storage.Vhd","Windows.Win32.Storage.VirtualDiskService","Windows.Win32.Storage.Vss","Windows.Win32.Storage.Xps","Windows.Win32.Storage.Xps.Printing","Windows.Win32.System.AddressBook","Windows.Win32.System.Antimalware","Windows.Win32.System.ApplicationInstallationAndServicing","Windows.Win32.System.ApplicationVerifier","Windows.Win32.System.AssessmentTool","Windows.Win32.System.ClrHosting","Windows.Win32.System.Com","Windows.Win32.System.Com.CallObj","Windows.Win32.System.Com.ChannelCredentials","Windows.Win32.System.Com.Events","Windows.Win32.System.Com.Marshal","Windows.Win32.System.Com.StructuredStorage","Windows.Win32.System.Com.UI","Windows.Win32.System.Com.Urlmon","Windows.Win32.System.ComponentServices","Windows.Win32.System.Console","Windows.Win32.System.Contacts","Windows.Win32.System.CorrelationVector","Windows.Win32.System.DataExchange","Windows.Win32.System.DeploymentServices","Windows.Win32.System.DesktopSharing","Windows.Win32.System.DeveloperLicensing","Windows.Win32.System.Diagnostics.Ceip","Windows.Win32.System.Diagnostics.ClrProfiling","Windows.Win32.System.Diagnostics.Debug","Windows.Win32.System.Diagnostics.Debug.ActiveScript","Windows.Win32.System.Diagnostics.Debug.Extensions","Windows.Win32.System.Diagnostics.Debug.WebApp","Windows.Win32.System.Diagnostics.Etw","Windows.Win32.System.Diagnostics.ProcessSnapshotting","Windows.Win32.System.Diagnostics.ToolHelp","Windows.Win32.System.Diagnostics.TraceLogging","Windows.Win32.System.DistributedTransactionCoordinator","Windows.Win32.System.Environment","Windows.Win32.System.ErrorReporting","Windows.Win32.System.EventCollector","Windows.Win32.System.EventLog","Windows.Win32.System.EventNotificationService","Windows.Win32.System.GroupPolicy","Windows.Win32.System.HostCompute","Windows.Win32.System.HostComputeNetwork","Windows.Win32.System.HostComputeSystem","Windows.Win32.System.Hypervisor","Windows.Win32.System.IO","Windows.Win32.System.Iis","Windows.Win32.System.Ioctl","Windows.Win32.System.JobObjects","Windows.Win32.System.Js","Windows.Win32.System.Kernel","Windows.Win32.System.LibraryLoader","Windows.Win32.System.Mailslots","Windows.Win32.System.Mapi","Windows.Win32.System.Memory","Windows.Win32.System.Memory.NonVolatile","Windows.Win32.System.MessageQueuing","Windows.Win32.System.MixedReality","Windows.Win32.System.Mmc","Windows.Win32.System.Ole","Windows.Win32.System.ParentalControls","Windows.Win32.System.PasswordManagement","Windows.Win32.System.Performance","Windows.Win32.System.Performance.HardwareCounterProfiling","Windows.Win32.System.Pipes","Windows.Win32.System.Power","Windows.Win32.System.ProcessStatus","Windows.Win32.System.RealTimeCommunications","Windows.Win32.System.Recovery","Windows.Win32.System.Registry","Windows.Win32.System.RemoteAssistance","Windows.Win32.System.RemoteDesktop","Windows.Win32.System.RemoteManagement","Windows.Win32.System.RestartManager","Windows.Win32.System.Restore","Windows.Win32.System.Rpc","Windows.Win32.System.Search","Windows.Win32.System.Search.Common","Windows.Win32.System.SecurityCenter","Windows.Win32.System.ServerBackup","Windows.Win32.System.Services","Windows.Win32.System.SettingsManagementInfrastructure","Windows.Win32.System.SetupAndMigration","Windows.Win32.System.Shutdown","Windows.Win32.System.SideShow","Windows.Win32.System.StationsAndDesktops","Windows.Win32.System.SubsystemForLinux","Windows.Win32.System.SystemInformation","Windows.Win32.System.SystemServices","Windows.Win32.System.TaskScheduler","Windows.Win32.System.Threading","Windows.Win32.System.Time","Windows.Win32.System.TpmBaseServices","Windows.Win32.System.TransactionServer","Windows.Win32.System.UpdateAgent","Windows.Win32.System.UpdateAssessment","Windows.Win32.System.UserAccessLogging","Windows.Win32.System.Variant","Windows.Win32.System.VirtualDosMachines","Windows.Win32.System.WinRT","Windows.Win32.System.WinRT.AllJoyn","Windows.Win32.System.WinRT.Composition","Windows.Win32.System.WinRT.CoreInputView","Windows.Win32.System.WinRT.Direct3D11","Windows.Win32.System.WinRT.Display","Windows.Win32.System.WinRT.Graphics.Capture","Windows.Win32.System.WinRT.Graphics.Direct2D","Windows.Win32.System.WinRT.Graphics.Imaging","Windows.Win32.System.WinRT.Holographic","Windows.Win32.System.WinRT.Isolation","Windows.Win32.System.WinRT.ML","Windows.Win32.System.WinRT.Media","Windows.Win32.System.WinRT.Metadata","Windows.Win32.System.WinRT.Pdf","Windows.Win32.System.WinRT.Printing","Windows.Win32.System.WinRT.Shell","Windows.Win32.System.WinRT.Storage","Windows.Win32.System.WinRT.Xaml","Windows.Win32.System.WindowsProgramming","Windows.Win32.System.WindowsSync","Windows.Win32.System.Wmi","Windows.Win32.UI.Accessibility","Windows.Win32.UI.Animation","Windows.Win32.UI.ColorSystem","Windows.Win32.UI.Controls","Windows.Win32.UI.Controls.Dialogs","Windows.Win32.UI.Controls.RichEdit","Windows.Win32.UI.HiDpi","Windows.Win32.UI.Input","Windows.Win32.UI.Input.Ime","Windows.Win32.UI.Input.Ink","Windows.Win32.UI.Input.KeyboardAndMouse","Windows.Win32.UI.Input.Pointer","Windows.Win32.UI.Input.Radial","Windows.Win32.UI.Input.Touch","Windows.Win32.UI.Input.XboxController","Windows.Win32.UI.InteractionContext","Windows.Win32.UI.LegacyWindowsEnvironmentFeatures","Windows.Win32.UI.Magnification","Windows.Win32.UI.Notifications","Windows.Win32.UI.Ribbon","Windows.Win32.UI.Shell","Windows.Win32.UI.Shell.Common","Windows.Win32.UI.Shell.PropertiesSystem","Windows.Win32.UI.TabletPC","Windows.Win32.UI.TextServices","Windows.Win32.UI.WindowsAndMessaging","Windows.Win32.UI.Wpf","Windows.Win32.UI.Xaml.Diagnostics","Windows.Win32.Web.InternetExplorer","Windows.Win32.Web.MsHtml"],"feature_map":["AI_MachineLearning","ApplicationModel","ApplicationModel_Activation","ApplicationModel_AppExtensions","ApplicationModel_AppService","ApplicationModel_Appointments","ApplicationModel_Appointments_AppointmentsProvider","ApplicationModel_Appointments_DataProvider","ApplicationModel_Background","ApplicationModel_Calls","ApplicationModel_Calls_Background","ApplicationModel_Calls_Provider","ApplicationModel_Chat","ApplicationModel_CommunicationBlocking","ApplicationModel_Contacts","ApplicationModel_Contacts_DataProvider","ApplicationModel_Contacts_Provider","ApplicationModel_ConversationalAgent","ApplicationModel_Core","ApplicationModel_DataTransfer","ApplicationModel_DataTransfer_DragDrop","ApplicationModel_DataTransfer_DragDrop_Core","ApplicationModel_DataTransfer_ShareTarget","ApplicationModel_Email","ApplicationModel_Email_DataProvider","ApplicationModel_ExtendedExecution","ApplicationModel_ExtendedExecution_Foreground","ApplicationModel_Holographic","ApplicationModel_LockScreen","ApplicationModel_Payments","ApplicationModel_Payments_Provider","ApplicationModel_Preview_Holographic","ApplicationModel_Preview_InkWorkspace","ApplicationModel_Preview_Notes","ApplicationModel_Resources","ApplicationModel_Resources_Core","Foundation_Collections","ApplicationModel_Resources_Management","ApplicationModel_Search","ApplicationModel_Search_Core","ApplicationModel_UserActivities","ApplicationModel_UserActivities_Core","ApplicationModel_UserDataAccounts","ApplicationModel_UserDataAccounts_Provider","ApplicationModel_UserDataAccounts_SystemAccess","ApplicationModel_UserDataTasks","ApplicationModel_UserDataTasks_DataProvider","ApplicationModel_VoiceCommands","ApplicationModel_Wallet","ApplicationModel_Wallet_System","Data_Html","Data_Json","Data_Pdf","Data_Text","Data_Xml_Dom","Data_Xml_Xsl","Devices","Devices_Adc","Devices_Adc_Provider","Devices_Background","Devices_Bluetooth","Devices_Bluetooth_Advertisement","Devices_Bluetooth_Background","Devices_Bluetooth_GenericAttributeProfile","Devices_Bluetooth_Rfcomm","Devices_Custom","Devices_Display","Devices_Display_Core","Foundation_Numerics","Devices_Enumeration","Storage_Streams","Devices_Enumeration_Pnp","Devices_Geolocation","Devices_Geolocation_Geofencing","Devices_Geolocation_Provider","Devices_Gpio","Foundation","Devices_Gpio_Provider","Devices_Haptics","Devices_HumanInterfaceDevice","Devices_I2c","Devices_I2c_Provider","Devices_Input","Devices_Input_Preview","Devices_Lights","Devices_Lights_Effects","Devices_Midi","Devices_PointOfService","Devices_PointOfService_Provider","Devices_Portable","Devices_Power","Devices_Printers","Devices_Printers_Extensions","Devices_Pwm","Devices_Pwm_Provider","Devices_Radios","Devices_Scanners","Devices_Sensors","Devices_Sensors_Custom","Devices_SerialCommunication","Devices_SmartCards","Devices_Sms","Devices_Spi","Devices_Spi_Provider","Devices_Usb","Devices_WiFi","Devices_WiFiDirect","Devices_WiFiDirect_Services","Embedded_DeviceLockdown","Foundation_Diagnostics","Foundation_Metadata","Gaming_Input","Gaming_Input_Custom","Gaming_Input_ForceFeedback","Gaming_Input_Preview","Gaming_Preview","Gaming_Preview_GamesEnumeration","Gaming_UI","Gaming_XboxLive","Gaming_XboxLive_Storage","Globalization","Globalization_Collation","Globalization_DateTimeFormatting","Globalization_Fonts","Globalization_NumberFormatting","Globalization_PhoneNumberFormatting","Graphics","Graphics_Capture","Graphics_DirectX","Graphics_DirectX_Direct3D11","Graphics_Display","Graphics_Display_Core","Graphics_Effects","Graphics_Holographic","Graphics_Imaging","Graphics_Printing","Graphics_Printing_OptionDetails","Graphics_Printing_PrintSupport","Graphics_Printing_PrintTicket","Graphics_Printing_Workflow","Graphics_Printing3D","Management","Management_Core","Management_Deployment","Management_Deployment_Preview","Management_Policies","Management_Update","Management_Workplace","Media","Media_AppBroadcasting","Media_AppRecording","Media_Audio","Media_Capture","Media_Capture_Core","Media_Capture_Frames","Media_Casting","Media_ClosedCaptioning","Media_ContentRestrictions","Media_Control","Media_Core","Media_Effects","Media_Core_Preview","Media_Devices","Media_Devices_Core","Media_DialProtocol","Media_Editing","Media_FaceAnalysis","Media_Import","Media_MediaProperties","Media_Miracast","Media_Ocr","Media_PlayTo","Media_Playback","Media_Playlists","Media_Protection","Media_Protection_PlayReady","Media_Render","Media_SpeechRecognition","Media_SpeechSynthesis","Media_Streaming_Adaptive","Media_Transcoding","Networking","Networking_BackgroundTransfer","Networking_Connectivity","Networking_NetworkOperators","Networking_Proximity","Networking_PushNotifications","Networking_ServiceDiscovery_Dnssd","Networking_Sockets","Networking_Vpn","Networking_XboxLive","Perception","Perception_Automation_Core","Perception_People","Perception_Spatial","Perception_Spatial_Preview","Perception_Spatial_Surfaces","Phone","Phone_ApplicationModel","Phone_Devices_Notification","Phone_Devices_Power","Phone_Management_Deployment","Phone_Media_Devices","Phone_Notification_Management","Phone_PersonalInformation","Phone_PersonalInformation_Provisioning","Phone_Speech_Recognition","Phone_StartScreen","Phone_System","Phone_System_Power","Phone_System_Profile","Phone_System_UserProfile_GameServices_Core","Phone_UI_Input","Security_Authentication_Identity","Security_Authentication_Identity_Core","Security_Authentication_OnlineId","Security_Authentication_Web","Security_Authentication_Web_Core","Security_Authentication_Web_Provider","Security_Authorization_AppCapabilityAccess","Security_Credentials","Security_Credentials_UI","Security_Cryptography","Security_Cryptography_Certificates","Security_Cryptography_Core","Security_Cryptography_DataProtection","Security_DataProtection","Security_EnterpriseData","Security_ExchangeActiveSyncProvisioning","Security_Isolation","Services_Maps","Services_Maps_Guidance","Services_Maps_LocalSearch","Services_Maps_OfflineMaps","Services_Store","Services_TargetedContent","Storage","Storage_AccessCache","Storage_BulkAccess","Storage_Compression","Storage_FileProperties","Storage_Pickers","Storage_Pickers_Provider","Storage_Provider","Storage_Search","System","System_Diagnostics","System_Diagnostics_DevicePortal","System_Diagnostics_Telemetry","System_Diagnostics_TraceReporting","System_Display","System_Implementation_FileExplorer","System_Inventory","System_Power","System_Profile","System_Profile_SystemManufacturers","System_RemoteDesktop","System_RemoteDesktop_Input","System_RemoteDesktop_Provider","System_RemoteSystems","System_Threading","System_Threading_Core","System_Update","System_UserProfile","UI","UI_Accessibility","UI_ApplicationSettings","UI_Popups","UI_Composition","UI_Composition_Core","UI_Composition_Desktop","UI_Composition_Diagnostics","UI_Composition_Effects","UI_Composition_Interactions","UI_Composition_Scenes","UI_Core","UI_Core_AnimationMetrics","UI_Core_Preview","UI_Input","UI_Input_Core","UI_Input_Inking","UI_Input_Inking_Analysis","UI_Input_Inking_Core","UI_Input_Inking_Preview","UI_Input_Preview","UI_Input_Preview_Injection","UI_Input_Spatial","UI_Notifications","UI_Notifications_Management","UI_Notifications_Preview","UI_Shell","UI_StartScreen","UI_Text","UI_Text_Core","UI_UIAutomation","UI_UIAutomation_Core","UI_ViewManagement","UI_ViewManagement_Core","UI_WebUI","UI_WebUI_Core","UI_WindowManagement","UI_WindowManagement_Preview","Wdk_Devices_HumanInterfaceDevice","Win32_Foundation","Wdk_Foundation","Wdk_System_SystemServices","Win32_Security","Wdk_Storage_FileSystem","Win32_System_IO","Win32_System_Kernel","Win32_System_Power","Wdk_Graphics_Direct3D","Win32_Graphics_Direct3D9","Win32_Graphics_DirectDraw","Win32_Graphics_Gdi","Wdk_NetworkManagement_Ndis","Win32_Networking_WinSock","Win32_NetworkManagement_Ndis","Wdk_NetworkManagement_WindowsFilteringPlatform","Win32_NetworkManagement_WindowsFilteringPlatform","Win32_System_Rpc","Win32_System_Memory","Win32_Storage_FileSystem","Win32_System_Ioctl","Win32_Security_Authentication_Identity","Wdk_Storage_FileSystem_Minifilters","Win32_Storage_InstallableFileSystems","Wdk_System_IO","Wdk_System_OfflineRegistry","Wdk_System_Registry","Wdk_System_SystemInformation","Win32_System_Diagnostics_Debug","Win32_System_Diagnostics_Etw","Win32_System_SystemInformation","Win32_Storage_IscsiDisc","Win32_System_WindowsProgramming","Win32_Devices_Properties","Win32_System_SystemServices","Win32_System_Threading","Wdk_System_Threading","Web","Web_AtomPub","Web_Http","Web_Http_Diagnostics","Web_Http_Filters","Web_Http_Headers","Web_Syndication","Web_UI","Web_UI_Interop","Win32_AI_MachineLearning_DirectML","Win32_Graphics_Direct3D12","Win32_AI_MachineLearning_WinML","Win32_Data_HtmlHelp","Win32_UI_Controls","Win32_System_Com","Win32_Data_RightsManagement","Win32_Data_Xml_MsXml","Win32_Data_Xml_XmlLite","Win32_Devices_AllJoyn","Win32_Devices_BiometricFramework","Win32_Devices_Bluetooth","Win32_Devices_Communication","Win32_Devices_DeviceAccess","Win32_Devices_DeviceAndDriverInstallation","Win32_System_Registry","Win32_UI_WindowsAndMessaging","Win32_Devices_DeviceQuery","Win32_Devices_Display","Win32_System_Console","Win32_Graphics_OpenGL","Win32_UI_ColorSystem","Win32_Devices_Enumeration_Pnp","Win32_Devices_Fax","Win32_Devices_FunctionDiscovery","Win32_UI_Shell_PropertiesSystem","Win32_Devices_Geolocation","Win32_Devices_HumanInterfaceDevice","Win32_Devices_ImageAcquisition","Win32_System_Variant","Win32_Devices_PortableDevices","Win32_Devices_Pwm","Win32_Devices_Sensors","Win32_Devices_SerialCommunication","Win32_Devices_Tapi","Win32_System_AddressBook","Win32_Devices_Usb","Win32_Devices_WebServicesOnDevices","Win32_Security_Cryptography","Win32_Gaming","Win32_Globalization","Win32_Graphics_CompositionSwapchain","Win32_Graphics_Dxgi_Common","Win32_Graphics_DXCore","Win32_Graphics_Direct2D","Win32_Graphics_Direct2D_Common","Win32_Graphics_Dxgi","Win32_Graphics_Direct3D","Win32_Graphics_Direct3D_Dxc","Win32_Graphics_Direct3D_Fxc","Win32_Graphics_Direct3D11","Win32_Graphics_Direct3D10","Win32_Graphics_Direct3D11on12","Win32_Graphics_Direct3D9on12","Win32_Graphics_DirectComposition","Win32_Graphics_DirectManipulation","Win32_Graphics_DirectWrite","Win32_Graphics_Dwm","Win32_Graphics_GdiPlus","Win32_Graphics_Hlsl","Win32_Graphics_Imaging","Win32_Graphics_Imaging_D2D","Win32_Graphics_Printing","Win32_Storage_Xps","Win32_System_Ole","Win32_Graphics_Printing_PrintTicket","Win32_Management_MobileDeviceManagementRegistration","Win32_Media","Win32_Media_Multimedia","Win32_Media_Audio","Win32_Media_Audio_Apo","Win32_Media_Audio_DirectMusic","Win32_Media_Audio_DirectSound","Win32_Media_Audio_Endpoints","Win32_Media_Audio_XAudio2","Win32_Media_DeviceManager","Win32_Media_DirectShow","Win32_Media_MediaFoundation","Win32_System_Com_StructuredStorage","Win32_Media_DirectShow_Tv","Win32_Media_KernelStreaming","Win32_Media_DirectShow_Xml","Win32_Media_DxMediaObjects","Win32_Media_LibrarySharingServices","Win32_Media_MediaPlayer","Win32_UI_Controls_Dialogs","Win32_Media_PictureAcquisition","Win32_Media_Speech","Win32_Media_Streaming","Win32_Media_WindowsMediaFormat","Win32_NetworkManagement_Dhcp","Win32_NetworkManagement_Dns","Win32_NetworkManagement_InternetConnectionWizard","Win32_NetworkManagement_IpHelper","Win32_NetworkManagement_MobileBroadband","Win32_NetworkManagement_Multicast","Win32_NetworkManagement_NetBios","Win32_NetworkManagement_NetManagement","Win32_NetworkManagement_NetShell","Win32_NetworkManagement_NetworkDiagnosticsFramework","Win32_NetworkManagement_NetworkPolicyServer","Win32_NetworkManagement_P2P","Win32_NetworkManagement_QoS","Win32_NetworkManagement_Rras","Win32_NetworkManagement_Snmp","Win32_NetworkManagement_WNet","Win32_NetworkManagement_WebDav","Win32_NetworkManagement_WiFi","Win32_Security_ExtensibleAuthenticationProtocol","Win32_System_RemoteDesktop","Win32_NetworkManagement_WindowsConnectNow","Win32_NetworkManagement_WindowsConnectionManager","Win32_NetworkManagement_WindowsFirewall","Win32_NetworkManagement_WindowsNetworkVirtualization","Win32_Networking_ActiveDirectory","Win32_UI_Shell","Win32_Networking_BackgroundIntelligentTransferService","Win32_Networking_Clustering","Win32_Networking_HttpServer","Win32_Networking_Ldap","Win32_Networking_NetworkListManager","Win32_Networking_RemoteDifferentialCompression","Win32_Networking_WebSocket","Win32_Networking_WinHttp","Win32_Networking_WinInet","Win32_Networking_WindowsWebServices","Win32_Security_AppLocker","Win32_Security_Credentials","Win32_System_PasswordManagement","Win32_Security_Authentication_Identity_Provider","Win32_Security_Authorization","Win32_Security_Authorization_UI","Win32_Security_ConfigurationSnapin","Win32_Security_Cryptography_Catalog","Win32_Security_Cryptography_Sip","Win32_Security_Cryptography_Certificates","Win32_Security_Cryptography_UI","Win32_Security_WinTrust","Win32_Security_DiagnosticDataQuery","Win32_Security_DirectoryServices","Win32_Security_EnterpriseData","Win32_Storage_Packaging_Appx","Win32_Security_Isolation","Win32_Security_LicenseProtection","Win32_Security_NetworkAccessProtection","Win32_Security_Tpm","Win32_Security_WinWlx","Win32_System_StationsAndDesktops","Win32_Storage_Cabinets","Win32_Storage_CloudFilters","Win32_System_CorrelationVector","Win32_Storage_Compression","Win32_Storage_DataDeduplication","Win32_Storage_DistributedFileSystem","Win32_Storage_EnhancedStorage","Win32_Storage_FileHistory","Win32_Storage_FileServerResourceManager","Win32_Storage_Imapi","Win32_Storage_IndexServer","Win32_Storage_Jet","Win32_Storage_StructuredStorage","Win32_Storage_Nvme","Win32_Storage_OfflineFiles","Win32_Storage_OperationRecorder","Win32_Storage_Packaging_Opc","Win32_Storage_ProjectedFileSystem","Win32_Storage_Vhd","Win32_Storage_VirtualDiskService","Win32_Storage_Vss","Win32_Storage_Xps_Printing","Win32_System_Antimalware","Win32_System_ApplicationInstallationAndServicing","Win32_System_ApplicationVerifier","Win32_System_AssessmentTool","Win32_UI_Accessibility","Win32_System_ClrHosting","Win32_System_Com_CallObj","Win32_System_Com_ChannelCredentials","Win32_System_Com_Events","Win32_System_Com_Marshal","Win32_System_Com_UI","Win32_System_Com_Urlmon","Win32_System_ComponentServices","Win32_System_Contacts","Win32_System_DataExchange","Win32_System_DeploymentServices","Win32_System_DesktopSharing","Win32_System_DeveloperLicensing","Win32_System_Diagnostics_Ceip","Win32_System_Diagnostics_ClrProfiling","Win32_System_WinRT_Metadata","Win32_System_Time","Win32_System_Diagnostics_Debug_ActiveScript","Win32_System_Diagnostics_Debug_Extensions","Win32_System_Diagnostics_ProcessSnapshotting","Win32_System_Diagnostics_ToolHelp","Win32_System_Diagnostics_TraceLogging","Win32_System_DistributedTransactionCoordinator","Win32_System_Environment","Win32_System_ErrorReporting","Win32_System_EventCollector","Win32_System_EventLog","Win32_System_EventNotificationService","Win32_System_GroupPolicy","Win32_System_Wmi","Win32_System_HostCompute","Win32_System_HostComputeNetwork","Win32_System_HostComputeSystem","Win32_System_Hypervisor","Win32_System_Iis","Win32_System_JobObjects","Win32_System_Js","Win32_System_LibraryLoader","Win32_System_Mailslots","Win32_System_Mapi","Win32_System_Memory_NonVolatile","Win32_System_MessageQueuing","Win32_System_MixedReality","Win32_System_Mmc","Win32_System_ParentalControls","Win32_System_Performance","Win32_System_Performance_HardwareCounterProfiling","Win32_System_Pipes","Win32_System_ProcessStatus","Win32_System_RealTimeCommunications","Win32_System_Recovery","Win32_System_RemoteAssistance","Win32_System_RemoteManagement","Win32_System_RestartManager","Win32_System_Restore","Win32_System_Search","Win32_System_Search_Common","Win32_System_SecurityCenter","Win32_System_ServerBackup","Win32_System_Services","Win32_System_SettingsManagementInfrastructure","Win32_System_SetupAndMigration","Win32_System_Shutdown","Win32_System_SideShow","Win32_System_SubsystemForLinux","Win32_System_TaskScheduler","Win32_System_TpmBaseServices","Win32_System_TransactionServer","Win32_System_UpdateAgent","Win32_System_UpdateAssessment","Win32_System_UserAccessLogging","Win32_System_VirtualDosMachines","Win32_System_WinRT","Win32_System_WinRT_AllJoyn","Win32_System_WinRT_Composition","Win32_System_WinRT_CoreInputView","Win32_System_WinRT_Direct3D11","Win32_System_WinRT_Display","Win32_System_WinRT_Graphics_Capture","Win32_System_WinRT_Graphics_Direct2D","Win32_System_WinRT_Graphics_Imaging","Win32_System_WinRT_Holographic","Win32_System_WinRT_Isolation","Win32_System_WinRT_ML","Win32_System_WinRT_Media","Win32_System_WinRT_Pdf","Win32_System_WinRT_Printing","Win32_System_WinRT_Shell","Win32_System_WinRT_Storage","Win32_System_WindowsSync","Win32_UI_Animation","Win32_UI_Input_Pointer","Win32_UI_Controls_RichEdit","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_Ime","Win32_UI_TextServices","Win32_UI_Input_Ink","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Input_Radial","Win32_UI_Input_Touch","Win32_UI_Input_XboxController","Win32_UI_InteractionContext","Win32_UI_LegacyWindowsEnvironmentFeatures","Win32_UI_Magnification","Win32_UI_Notifications","Win32_UI_Ribbon","Win32_UI_Shell_Common","Win32_UI_TabletPC","Win32_UI_Wpf","Win32_Web_InternetExplorer"],"namespaces":{"0":[{"name":"IImageFeatureDescriptor","features":[0]},{"name":"IImageFeatureDescriptor2","features":[0]},{"name":"IImageFeatureValue","features":[0]},{"name":"IImageFeatureValueStatics","features":[0]},{"name":"ILearningModel","features":[0]},{"name":"ILearningModelBinding","features":[0]},{"name":"ILearningModelBindingFactory","features":[0]},{"name":"ILearningModelDevice","features":[0]},{"name":"ILearningModelDeviceFactory","features":[0]},{"name":"ILearningModelDeviceStatics","features":[0]},{"name":"ILearningModelEvaluationResult","features":[0]},{"name":"ILearningModelFeatureDescriptor","features":[0]},{"name":"ILearningModelFeatureValue","features":[0]},{"name":"ILearningModelOperatorProvider","features":[0]},{"name":"ILearningModelSession","features":[0]},{"name":"ILearningModelSessionFactory","features":[0]},{"name":"ILearningModelSessionFactory2","features":[0]},{"name":"ILearningModelSessionOptions","features":[0]},{"name":"ILearningModelSessionOptions2","features":[0]},{"name":"ILearningModelSessionOptions3","features":[0]},{"name":"ILearningModelStatics","features":[0]},{"name":"IMapFeatureDescriptor","features":[0]},{"name":"ISequenceFeatureDescriptor","features":[0]},{"name":"ITensor","features":[0]},{"name":"ITensorBoolean","features":[0]},{"name":"ITensorBooleanStatics","features":[0]},{"name":"ITensorBooleanStatics2","features":[0]},{"name":"ITensorDouble","features":[0]},{"name":"ITensorDoubleStatics","features":[0]},{"name":"ITensorDoubleStatics2","features":[0]},{"name":"ITensorFeatureDescriptor","features":[0]},{"name":"ITensorFloat","features":[0]},{"name":"ITensorFloat16Bit","features":[0]},{"name":"ITensorFloat16BitStatics","features":[0]},{"name":"ITensorFloat16BitStatics2","features":[0]},{"name":"ITensorFloatStatics","features":[0]},{"name":"ITensorFloatStatics2","features":[0]},{"name":"ITensorInt16Bit","features":[0]},{"name":"ITensorInt16BitStatics","features":[0]},{"name":"ITensorInt16BitStatics2","features":[0]},{"name":"ITensorInt32Bit","features":[0]},{"name":"ITensorInt32BitStatics","features":[0]},{"name":"ITensorInt32BitStatics2","features":[0]},{"name":"ITensorInt64Bit","features":[0]},{"name":"ITensorInt64BitStatics","features":[0]},{"name":"ITensorInt64BitStatics2","features":[0]},{"name":"ITensorInt8Bit","features":[0]},{"name":"ITensorInt8BitStatics","features":[0]},{"name":"ITensorInt8BitStatics2","features":[0]},{"name":"ITensorString","features":[0]},{"name":"ITensorStringStatics","features":[0]},{"name":"ITensorStringStatics2","features":[0]},{"name":"ITensorUInt16Bit","features":[0]},{"name":"ITensorUInt16BitStatics","features":[0]},{"name":"ITensorUInt16BitStatics2","features":[0]},{"name":"ITensorUInt32Bit","features":[0]},{"name":"ITensorUInt32BitStatics","features":[0]},{"name":"ITensorUInt32BitStatics2","features":[0]},{"name":"ITensorUInt64Bit","features":[0]},{"name":"ITensorUInt64BitStatics","features":[0]},{"name":"ITensorUInt64BitStatics2","features":[0]},{"name":"ITensorUInt8Bit","features":[0]},{"name":"ITensorUInt8BitStatics","features":[0]},{"name":"ITensorUInt8BitStatics2","features":[0]},{"name":"ImageFeatureDescriptor","features":[0]},{"name":"ImageFeatureValue","features":[0]},{"name":"LearningModel","features":[0]},{"name":"LearningModelBinding","features":[0]},{"name":"LearningModelDevice","features":[0]},{"name":"LearningModelDeviceKind","features":[0]},{"name":"LearningModelEvaluationResult","features":[0]},{"name":"LearningModelFeatureKind","features":[0]},{"name":"LearningModelPixelRange","features":[0]},{"name":"LearningModelSession","features":[0]},{"name":"LearningModelSessionOptions","features":[0]},{"name":"MachineLearningContract","features":[0]},{"name":"MapFeatureDescriptor","features":[0]},{"name":"SequenceFeatureDescriptor","features":[0]},{"name":"TensorBoolean","features":[0]},{"name":"TensorDouble","features":[0]},{"name":"TensorFeatureDescriptor","features":[0]},{"name":"TensorFloat","features":[0]},{"name":"TensorFloat16Bit","features":[0]},{"name":"TensorInt16Bit","features":[0]},{"name":"TensorInt32Bit","features":[0]},{"name":"TensorInt64Bit","features":[0]},{"name":"TensorInt8Bit","features":[0]},{"name":"TensorKind","features":[0]},{"name":"TensorString","features":[0]},{"name":"TensorUInt16Bit","features":[0]},{"name":"TensorUInt32Bit","features":[0]},{"name":"TensorUInt64Bit","features":[0]},{"name":"TensorUInt8Bit","features":[0]}],"2":[{"name":"AddResourcePackageOptions","features":[1]},{"name":"AppDisplayInfo","features":[1]},{"name":"AppExecutionContext","features":[1]},{"name":"AppInfo","features":[1]},{"name":"AppInstallerInfo","features":[1]},{"name":"AppInstallerPolicySource","features":[1]},{"name":"AppInstance","features":[1]},{"name":"CameraApplicationManager","features":[1]},{"name":"DesignMode","features":[1]},{"name":"EnteredBackgroundEventArgs","features":[1]},{"name":"FindRelatedPackagesOptions","features":[1]},{"name":"FullTrustAppContract","features":[1]},{"name":"FullTrustLaunchResult","features":[1]},{"name":"FullTrustProcessLaunchResult","features":[1]},{"name":"FullTrustProcessLauncher","features":[1]},{"name":"IAppDisplayInfo","features":[1]},{"name":"IAppInfo","features":[1]},{"name":"IAppInfo2","features":[1]},{"name":"IAppInfo3","features":[1]},{"name":"IAppInfo4","features":[1]},{"name":"IAppInfoStatics","features":[1]},{"name":"IAppInstallerInfo","features":[1]},{"name":"IAppInstallerInfo2","features":[1]},{"name":"IAppInstance","features":[1]},{"name":"IAppInstanceStatics","features":[1]},{"name":"ICameraApplicationManagerStatics","features":[1]},{"name":"IDesignModeStatics","features":[1]},{"name":"IDesignModeStatics2","features":[1]},{"name":"IEnteredBackgroundEventArgs","features":[1]},{"name":"IFindRelatedPackagesOptions","features":[1]},{"name":"IFindRelatedPackagesOptionsFactory","features":[1]},{"name":"IFullTrustProcessLaunchResult","features":[1]},{"name":"IFullTrustProcessLauncherStatics","features":[1]},{"name":"IFullTrustProcessLauncherStatics2","features":[1]},{"name":"ILeavingBackgroundEventArgs","features":[1]},{"name":"ILimitedAccessFeatureRequestResult","features":[1]},{"name":"ILimitedAccessFeaturesStatics","features":[1]},{"name":"IPackage","features":[1]},{"name":"IPackage2","features":[1]},{"name":"IPackage3","features":[1]},{"name":"IPackage4","features":[1]},{"name":"IPackage5","features":[1]},{"name":"IPackage6","features":[1]},{"name":"IPackage7","features":[1]},{"name":"IPackage8","features":[1]},{"name":"IPackage9","features":[1]},{"name":"IPackageCatalog","features":[1]},{"name":"IPackageCatalog2","features":[1]},{"name":"IPackageCatalog3","features":[1]},{"name":"IPackageCatalog4","features":[1]},{"name":"IPackageCatalogAddOptionalPackageResult","features":[1]},{"name":"IPackageCatalogAddResourcePackageResult","features":[1]},{"name":"IPackageCatalogRemoveOptionalPackagesResult","features":[1]},{"name":"IPackageCatalogRemoveResourcePackagesResult","features":[1]},{"name":"IPackageCatalogStatics","features":[1]},{"name":"IPackageCatalogStatics2","features":[1]},{"name":"IPackageContentGroup","features":[1]},{"name":"IPackageContentGroupStagingEventArgs","features":[1]},{"name":"IPackageContentGroupStatics","features":[1]},{"name":"IPackageId","features":[1]},{"name":"IPackageIdWithMetadata","features":[1]},{"name":"IPackageInstallingEventArgs","features":[1]},{"name":"IPackageStagingEventArgs","features":[1]},{"name":"IPackageStatics","features":[1]},{"name":"IPackageStatus","features":[1]},{"name":"IPackageStatus2","features":[1]},{"name":"IPackageStatusChangedEventArgs","features":[1]},{"name":"IPackageUninstallingEventArgs","features":[1]},{"name":"IPackageUpdateAvailabilityResult","features":[1]},{"name":"IPackageUpdatingEventArgs","features":[1]},{"name":"IPackageWithMetadata","features":[1]},{"name":"IStartupTask","features":[1]},{"name":"IStartupTaskStatics","features":[1]},{"name":"ISuspendingDeferral","features":[1]},{"name":"ISuspendingEventArgs","features":[1]},{"name":"ISuspendingOperation","features":[1]},{"name":"LeavingBackgroundEventArgs","features":[1]},{"name":"LimitedAccessFeatureRequestResult","features":[1]},{"name":"LimitedAccessFeatureStatus","features":[1]},{"name":"LimitedAccessFeatures","features":[1]},{"name":"Package","features":[1]},{"name":"PackageCatalog","features":[1]},{"name":"PackageCatalogAddOptionalPackageResult","features":[1]},{"name":"PackageCatalogAddResourcePackageResult","features":[1]},{"name":"PackageCatalogRemoveOptionalPackagesResult","features":[1]},{"name":"PackageCatalogRemoveResourcePackagesResult","features":[1]},{"name":"PackageContentGroup","features":[1]},{"name":"PackageContentGroupStagingEventArgs","features":[1]},{"name":"PackageContentGroupState","features":[1]},{"name":"PackageId","features":[1]},{"name":"PackageInstallProgress","features":[1]},{"name":"PackageInstallingEventArgs","features":[1]},{"name":"PackageRelationship","features":[1]},{"name":"PackageSignatureKind","features":[1]},{"name":"PackageStagingEventArgs","features":[1]},{"name":"PackageStatus","features":[1]},{"name":"PackageStatusChangedEventArgs","features":[1]},{"name":"PackageUninstallingEventArgs","features":[1]},{"name":"PackageUpdateAvailability","features":[1]},{"name":"PackageUpdateAvailabilityResult","features":[1]},{"name":"PackageUpdatingEventArgs","features":[1]},{"name":"PackageVersion","features":[1]},{"name":"StartupTask","features":[1]},{"name":"StartupTaskContract","features":[1]},{"name":"StartupTaskState","features":[1]},{"name":"SuspendingDeferral","features":[1]},{"name":"SuspendingEventArgs","features":[1]},{"name":"SuspendingOperation","features":[1]}],"3":[{"name":"ActivatedEventsContract","features":[2]},{"name":"ActivationCameraSettingsContract","features":[2]},{"name":"ActivationKind","features":[2]},{"name":"ApplicationExecutionState","features":[2]},{"name":"AppointmentsProviderAddAppointmentActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderRemoveAppointmentActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderReplaceAppointmentActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderShowAppointmentDetailsActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderShowTimeFrameActivatedEventArgs","features":[2]},{"name":"BackgroundActivatedEventArgs","features":[2]},{"name":"BarcodeScannerPreviewActivatedEventArgs","features":[2]},{"name":"CachedFileUpdaterActivatedEventArgs","features":[2]},{"name":"CameraSettingsActivatedEventArgs","features":[2]},{"name":"CommandLineActivatedEventArgs","features":[2]},{"name":"CommandLineActivationOperation","features":[2]},{"name":"ContactActivatedEventsContract","features":[2]},{"name":"ContactCallActivatedEventArgs","features":[2]},{"name":"ContactMapActivatedEventArgs","features":[2]},{"name":"ContactMessageActivatedEventArgs","features":[2]},{"name":"ContactPanelActivatedEventArgs","features":[2]},{"name":"ContactPickerActivatedEventArgs","features":[2]},{"name":"ContactPostActivatedEventArgs","features":[2]},{"name":"ContactVideoCallActivatedEventArgs","features":[2]},{"name":"DeviceActivatedEventArgs","features":[2]},{"name":"DevicePairingActivatedEventArgs","features":[2]},{"name":"DialReceiverActivatedEventArgs","features":[2]},{"name":"FileActivatedEventArgs","features":[2]},{"name":"FileOpenPickerActivatedEventArgs","features":[2]},{"name":"FileOpenPickerContinuationEventArgs","features":[2]},{"name":"FileSavePickerActivatedEventArgs","features":[2]},{"name":"FileSavePickerContinuationEventArgs","features":[2]},{"name":"FolderPickerContinuationEventArgs","features":[2]},{"name":"IActivatedEventArgs","features":[2]},{"name":"IActivatedEventArgsWithUser","features":[2]},{"name":"IApplicationViewActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderAddAppointmentActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderRemoveAppointmentActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderReplaceAppointmentActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderShowTimeFrameActivatedEventArgs","features":[2]},{"name":"IBackgroundActivatedEventArgs","features":[2]},{"name":"IBarcodeScannerPreviewActivatedEventArgs","features":[2]},{"name":"ICachedFileUpdaterActivatedEventArgs","features":[2]},{"name":"ICameraSettingsActivatedEventArgs","features":[2]},{"name":"ICommandLineActivatedEventArgs","features":[2]},{"name":"ICommandLineActivationOperation","features":[2]},{"name":"IContactActivatedEventArgs","features":[2]},{"name":"IContactCallActivatedEventArgs","features":[2]},{"name":"IContactMapActivatedEventArgs","features":[2]},{"name":"IContactMessageActivatedEventArgs","features":[2]},{"name":"IContactPanelActivatedEventArgs","features":[2]},{"name":"IContactPickerActivatedEventArgs","features":[2]},{"name":"IContactPostActivatedEventArgs","features":[2]},{"name":"IContactVideoCallActivatedEventArgs","features":[2]},{"name":"IContactsProviderActivatedEventArgs","features":[2]},{"name":"IContinuationActivatedEventArgs","features":[2]},{"name":"IDeviceActivatedEventArgs","features":[2]},{"name":"IDevicePairingActivatedEventArgs","features":[2]},{"name":"IDialReceiverActivatedEventArgs","features":[2]},{"name":"IFileActivatedEventArgs","features":[2]},{"name":"IFileActivatedEventArgsWithCallerPackageFamilyName","features":[2]},{"name":"IFileActivatedEventArgsWithNeighboringFiles","features":[2]},{"name":"IFileOpenPickerActivatedEventArgs","features":[2]},{"name":"IFileOpenPickerActivatedEventArgs2","features":[2]},{"name":"IFileOpenPickerContinuationEventArgs","features":[2]},{"name":"IFileSavePickerActivatedEventArgs","features":[2]},{"name":"IFileSavePickerActivatedEventArgs2","features":[2]},{"name":"IFileSavePickerContinuationEventArgs","features":[2]},{"name":"IFolderPickerContinuationEventArgs","features":[2]},{"name":"ILaunchActivatedEventArgs","features":[2]},{"name":"ILaunchActivatedEventArgs2","features":[2]},{"name":"ILockScreenActivatedEventArgs","features":[2]},{"name":"ILockScreenCallActivatedEventArgs","features":[2]},{"name":"IPhoneCallActivatedEventArgs","features":[2]},{"name":"IPickerReturnedActivatedEventArgs","features":[2]},{"name":"IPrelaunchActivatedEventArgs","features":[2]},{"name":"IPrint3DWorkflowActivatedEventArgs","features":[2]},{"name":"IPrintTaskSettingsActivatedEventArgs","features":[2]},{"name":"IProtocolActivatedEventArgs","features":[2]},{"name":"IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData","features":[2]},{"name":"IProtocolForResultsActivatedEventArgs","features":[2]},{"name":"IRestrictedLaunchActivatedEventArgs","features":[2]},{"name":"ISearchActivatedEventArgs","features":[2]},{"name":"ISearchActivatedEventArgsWithLinguisticDetails","features":[2]},{"name":"IShareTargetActivatedEventArgs","features":[2]},{"name":"ISplashScreen","features":[2]},{"name":"IStartupTaskActivatedEventArgs","features":[2]},{"name":"ITileActivatedInfo","features":[2]},{"name":"IToastNotificationActivatedEventArgs","features":[2]},{"name":"IUserDataAccountProviderActivatedEventArgs","features":[2]},{"name":"IViewSwitcherProvider","features":[2]},{"name":"IVoiceCommandActivatedEventArgs","features":[2]},{"name":"IWalletActionActivatedEventArgs","features":[2]},{"name":"IWebAccountProviderActivatedEventArgs","features":[2]},{"name":"IWebAuthenticationBrokerContinuationEventArgs","features":[2]},{"name":"LaunchActivatedEventArgs","features":[2]},{"name":"LockScreenActivatedEventArgs","features":[2]},{"name":"LockScreenCallActivatedEventArgs","features":[2]},{"name":"LockScreenComponentActivatedEventArgs","features":[2]},{"name":"PhoneCallActivatedEventArgs","features":[2]},{"name":"PickerReturnedActivatedEventArgs","features":[2]},{"name":"Print3DWorkflowActivatedEventArgs","features":[2]},{"name":"PrintTaskSettingsActivatedEventArgs","features":[2]},{"name":"ProtocolActivatedEventArgs","features":[2]},{"name":"ProtocolForResultsActivatedEventArgs","features":[2]},{"name":"RestrictedLaunchActivatedEventArgs","features":[2]},{"name":"SearchActivatedEventArgs","features":[2]},{"name":"ShareTargetActivatedEventArgs","features":[2]},{"name":"SplashScreen","features":[2]},{"name":"StartupTaskActivatedEventArgs","features":[2]},{"name":"TileActivatedInfo","features":[2]},{"name":"ToastNotificationActivatedEventArgs","features":[2]},{"name":"UserDataAccountProviderActivatedEventArgs","features":[2]},{"name":"VoiceCommandActivatedEventArgs","features":[2]},{"name":"WalletActionActivatedEventArgs","features":[2]},{"name":"WebAccountProviderActivatedEventArgs","features":[2]},{"name":"WebAuthenticationBrokerContinuationEventArgs","features":[2]},{"name":"WebUISearchActivatedEventsContract","features":[2]}],"4":[{"name":"AppExtension","features":[3]},{"name":"AppExtensionCatalog","features":[3]},{"name":"AppExtensionPackageInstalledEventArgs","features":[3]},{"name":"AppExtensionPackageStatusChangedEventArgs","features":[3]},{"name":"AppExtensionPackageUninstallingEventArgs","features":[3]},{"name":"AppExtensionPackageUpdatedEventArgs","features":[3]},{"name":"AppExtensionPackageUpdatingEventArgs","features":[3]},{"name":"IAppExtension","features":[3]},{"name":"IAppExtension2","features":[3]},{"name":"IAppExtensionCatalog","features":[3]},{"name":"IAppExtensionCatalogStatics","features":[3]},{"name":"IAppExtensionPackageInstalledEventArgs","features":[3]},{"name":"IAppExtensionPackageStatusChangedEventArgs","features":[3]},{"name":"IAppExtensionPackageUninstallingEventArgs","features":[3]},{"name":"IAppExtensionPackageUpdatedEventArgs","features":[3]},{"name":"IAppExtensionPackageUpdatingEventArgs","features":[3]}],"5":[{"name":"AppServiceCatalog","features":[4]},{"name":"AppServiceClosedEventArgs","features":[4]},{"name":"AppServiceClosedStatus","features":[4]},{"name":"AppServiceConnection","features":[4]},{"name":"AppServiceConnectionStatus","features":[4]},{"name":"AppServiceDeferral","features":[4]},{"name":"AppServiceRequest","features":[4]},{"name":"AppServiceRequestReceivedEventArgs","features":[4]},{"name":"AppServiceResponse","features":[4]},{"name":"AppServiceResponseStatus","features":[4]},{"name":"AppServiceTriggerDetails","features":[4]},{"name":"IAppServiceCatalogStatics","features":[4]},{"name":"IAppServiceClosedEventArgs","features":[4]},{"name":"IAppServiceConnection","features":[4]},{"name":"IAppServiceConnection2","features":[4]},{"name":"IAppServiceConnectionStatics","features":[4]},{"name":"IAppServiceDeferral","features":[4]},{"name":"IAppServiceRequest","features":[4]},{"name":"IAppServiceRequestReceivedEventArgs","features":[4]},{"name":"IAppServiceResponse","features":[4]},{"name":"IAppServiceTriggerDetails","features":[4]},{"name":"IAppServiceTriggerDetails2","features":[4]},{"name":"IAppServiceTriggerDetails3","features":[4]},{"name":"IAppServiceTriggerDetails4","features":[4]},{"name":"IStatelessAppServiceResponse","features":[4]},{"name":"StatelessAppServiceResponse","features":[4]},{"name":"StatelessAppServiceResponseStatus","features":[4]}],"6":[{"name":"Appointment","features":[5]},{"name":"AppointmentBusyStatus","features":[5]},{"name":"AppointmentCalendar","features":[5]},{"name":"AppointmentCalendarOtherAppReadAccess","features":[5]},{"name":"AppointmentCalendarOtherAppWriteAccess","features":[5]},{"name":"AppointmentCalendarSyncManager","features":[5]},{"name":"AppointmentCalendarSyncStatus","features":[5]},{"name":"AppointmentConflictResult","features":[5]},{"name":"AppointmentConflictType","features":[5]},{"name":"AppointmentDaysOfWeek","features":[5]},{"name":"AppointmentDetailsKind","features":[5]},{"name":"AppointmentException","features":[5]},{"name":"AppointmentInvitee","features":[5]},{"name":"AppointmentManager","features":[5]},{"name":"AppointmentManagerForUser","features":[5]},{"name":"AppointmentOrganizer","features":[5]},{"name":"AppointmentParticipantResponse","features":[5]},{"name":"AppointmentParticipantRole","features":[5]},{"name":"AppointmentProperties","features":[5]},{"name":"AppointmentRecurrence","features":[5]},{"name":"AppointmentRecurrenceUnit","features":[5]},{"name":"AppointmentSensitivity","features":[5]},{"name":"AppointmentStore","features":[5]},{"name":"AppointmentStoreAccessType","features":[5]},{"name":"AppointmentStoreChange","features":[5]},{"name":"AppointmentStoreChangeReader","features":[5]},{"name":"AppointmentStoreChangeTracker","features":[5]},{"name":"AppointmentStoreChangeType","features":[5]},{"name":"AppointmentStoreChangedDeferral","features":[5]},{"name":"AppointmentStoreChangedEventArgs","features":[5]},{"name":"AppointmentStoreNotificationTriggerDetails","features":[5]},{"name":"AppointmentSummaryCardView","features":[5]},{"name":"AppointmentWeekOfMonth","features":[5]},{"name":"FindAppointmentCalendarsOptions","features":[5]},{"name":"FindAppointmentsOptions","features":[5]},{"name":"IAppointment","features":[5]},{"name":"IAppointment2","features":[5]},{"name":"IAppointment3","features":[5]},{"name":"IAppointmentCalendar","features":[5]},{"name":"IAppointmentCalendar2","features":[5]},{"name":"IAppointmentCalendar3","features":[5]},{"name":"IAppointmentCalendarSyncManager","features":[5]},{"name":"IAppointmentCalendarSyncManager2","features":[5]},{"name":"IAppointmentConflictResult","features":[5]},{"name":"IAppointmentException","features":[5]},{"name":"IAppointmentInvitee","features":[5]},{"name":"IAppointmentManagerForUser","features":[5]},{"name":"IAppointmentManagerStatics","features":[5]},{"name":"IAppointmentManagerStatics2","features":[5]},{"name":"IAppointmentManagerStatics3","features":[5]},{"name":"IAppointmentParticipant","features":[5]},{"name":"IAppointmentPropertiesStatics","features":[5]},{"name":"IAppointmentPropertiesStatics2","features":[5]},{"name":"IAppointmentRecurrence","features":[5]},{"name":"IAppointmentRecurrence2","features":[5]},{"name":"IAppointmentRecurrence3","features":[5]},{"name":"IAppointmentStore","features":[5]},{"name":"IAppointmentStore2","features":[5]},{"name":"IAppointmentStore3","features":[5]},{"name":"IAppointmentStoreChange","features":[5]},{"name":"IAppointmentStoreChange2","features":[5]},{"name":"IAppointmentStoreChangeReader","features":[5]},{"name":"IAppointmentStoreChangeTracker","features":[5]},{"name":"IAppointmentStoreChangeTracker2","features":[5]},{"name":"IAppointmentStoreChangedDeferral","features":[5]},{"name":"IAppointmentStoreChangedEventArgs","features":[5]},{"name":"IAppointmentStoreNotificationTriggerDetails","features":[5]},{"name":"IFindAppointmentsOptions","features":[5]},{"name":"RecurrenceType","features":[5]}],"7":[{"name":"AddAppointmentOperation","features":[6]},{"name":"AppointmentsProviderLaunchActionVerbs","features":[6]},{"name":"IAddAppointmentOperation","features":[6]},{"name":"IAppointmentsProviderLaunchActionVerbsStatics","features":[6]},{"name":"IAppointmentsProviderLaunchActionVerbsStatics2","features":[6]},{"name":"IRemoveAppointmentOperation","features":[6]},{"name":"IReplaceAppointmentOperation","features":[6]},{"name":"RemoveAppointmentOperation","features":[6]},{"name":"ReplaceAppointmentOperation","features":[6]}],"8":[{"name":"AppointmentCalendarCancelMeetingRequest","features":[7]},{"name":"AppointmentCalendarCancelMeetingRequestEventArgs","features":[7]},{"name":"AppointmentCalendarCreateOrUpdateAppointmentRequest","features":[7]},{"name":"AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs","features":[7]},{"name":"AppointmentCalendarForwardMeetingRequest","features":[7]},{"name":"AppointmentCalendarForwardMeetingRequestEventArgs","features":[7]},{"name":"AppointmentCalendarProposeNewTimeForMeetingRequest","features":[7]},{"name":"AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs","features":[7]},{"name":"AppointmentCalendarSyncManagerSyncRequest","features":[7]},{"name":"AppointmentCalendarSyncManagerSyncRequestEventArgs","features":[7]},{"name":"AppointmentCalendarUpdateMeetingResponseRequest","features":[7]},{"name":"AppointmentCalendarUpdateMeetingResponseRequestEventArgs","features":[7]},{"name":"AppointmentDataProviderConnection","features":[7]},{"name":"AppointmentDataProviderTriggerDetails","features":[7]},{"name":"IAppointmentCalendarCancelMeetingRequest","features":[7]},{"name":"IAppointmentCalendarCancelMeetingRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarCreateOrUpdateAppointmentRequest","features":[7]},{"name":"IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarForwardMeetingRequest","features":[7]},{"name":"IAppointmentCalendarForwardMeetingRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarProposeNewTimeForMeetingRequest","features":[7]},{"name":"IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarSyncManagerSyncRequest","features":[7]},{"name":"IAppointmentCalendarSyncManagerSyncRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarUpdateMeetingResponseRequest","features":[7]},{"name":"IAppointmentCalendarUpdateMeetingResponseRequestEventArgs","features":[7]},{"name":"IAppointmentDataProviderConnection","features":[7]},{"name":"IAppointmentDataProviderTriggerDetails","features":[7]}],"9":[{"name":"ActivitySensorTrigger","features":[8]},{"name":"AlarmAccessStatus","features":[8]},{"name":"AlarmApplicationManager","features":[8]},{"name":"AppBroadcastTrigger","features":[8]},{"name":"AppBroadcastTriggerProviderInfo","features":[8]},{"name":"ApplicationTrigger","features":[8]},{"name":"ApplicationTriggerDetails","features":[8]},{"name":"ApplicationTriggerResult","features":[8]},{"name":"AppointmentStoreNotificationTrigger","features":[8]},{"name":"BackgroundAccessRequestKind","features":[8]},{"name":"BackgroundAccessStatus","features":[8]},{"name":"BackgroundAlarmApplicationContract","features":[8]},{"name":"BackgroundExecutionManager","features":[8]},{"name":"BackgroundTaskBuilder","features":[8]},{"name":"BackgroundTaskCanceledEventHandler","features":[8]},{"name":"BackgroundTaskCancellationReason","features":[8]},{"name":"BackgroundTaskCompletedEventArgs","features":[8]},{"name":"BackgroundTaskCompletedEventHandler","features":[8]},{"name":"BackgroundTaskDeferral","features":[8]},{"name":"BackgroundTaskProgressEventArgs","features":[8]},{"name":"BackgroundTaskProgressEventHandler","features":[8]},{"name":"BackgroundTaskRegistration","features":[8]},{"name":"BackgroundTaskRegistrationGroup","features":[8]},{"name":"BackgroundTaskThrottleCounter","features":[8]},{"name":"BackgroundWorkCost","features":[8]},{"name":"BackgroundWorkCostValue","features":[8]},{"name":"BluetoothLEAdvertisementPublisherTrigger","features":[8]},{"name":"BluetoothLEAdvertisementWatcherTrigger","features":[8]},{"name":"CachedFileUpdaterTrigger","features":[8]},{"name":"CachedFileUpdaterTriggerDetails","features":[8]},{"name":"ChatMessageNotificationTrigger","features":[8]},{"name":"ChatMessageReceivedNotificationTrigger","features":[8]},{"name":"CommunicationBlockingAppSetAsActiveTrigger","features":[8]},{"name":"ContactStoreNotificationTrigger","features":[8]},{"name":"ContentPrefetchTrigger","features":[8]},{"name":"ConversationalAgentTrigger","features":[8]},{"name":"CustomSystemEventTrigger","features":[8]},{"name":"CustomSystemEventTriggerRecurrence","features":[8]},{"name":"DeviceConnectionChangeTrigger","features":[8]},{"name":"DeviceManufacturerNotificationTrigger","features":[8]},{"name":"DeviceServicingTrigger","features":[8]},{"name":"DeviceTriggerResult","features":[8]},{"name":"DeviceUseTrigger","features":[8]},{"name":"DeviceWatcherTrigger","features":[8]},{"name":"EmailStoreNotificationTrigger","features":[8]},{"name":"GattCharacteristicNotificationTrigger","features":[8]},{"name":"GattServiceProviderTrigger","features":[8]},{"name":"GattServiceProviderTriggerResult","features":[8]},{"name":"GeovisitTrigger","features":[8]},{"name":"IActivitySensorTrigger","features":[8]},{"name":"IActivitySensorTriggerFactory","features":[8]},{"name":"IAlarmApplicationManagerStatics","features":[8]},{"name":"IAppBroadcastTrigger","features":[8]},{"name":"IAppBroadcastTriggerFactory","features":[8]},{"name":"IAppBroadcastTriggerProviderInfo","features":[8]},{"name":"IApplicationTrigger","features":[8]},{"name":"IApplicationTriggerDetails","features":[8]},{"name":"IAppointmentStoreNotificationTrigger","features":[8]},{"name":"IBackgroundCondition","features":[8]},{"name":"IBackgroundExecutionManagerStatics","features":[8]},{"name":"IBackgroundExecutionManagerStatics2","features":[8]},{"name":"IBackgroundExecutionManagerStatics3","features":[8]},{"name":"IBackgroundTask","features":[8]},{"name":"IBackgroundTaskBuilder","features":[8]},{"name":"IBackgroundTaskBuilder2","features":[8]},{"name":"IBackgroundTaskBuilder3","features":[8]},{"name":"IBackgroundTaskBuilder4","features":[8]},{"name":"IBackgroundTaskBuilder5","features":[8]},{"name":"IBackgroundTaskCompletedEventArgs","features":[8]},{"name":"IBackgroundTaskDeferral","features":[8]},{"name":"IBackgroundTaskInstance","features":[8]},{"name":"IBackgroundTaskInstance2","features":[8]},{"name":"IBackgroundTaskInstance4","features":[8]},{"name":"IBackgroundTaskProgressEventArgs","features":[8]},{"name":"IBackgroundTaskRegistration","features":[8]},{"name":"IBackgroundTaskRegistration2","features":[8]},{"name":"IBackgroundTaskRegistration3","features":[8]},{"name":"IBackgroundTaskRegistrationGroup","features":[8]},{"name":"IBackgroundTaskRegistrationGroupFactory","features":[8]},{"name":"IBackgroundTaskRegistrationStatics","features":[8]},{"name":"IBackgroundTaskRegistrationStatics2","features":[8]},{"name":"IBackgroundTrigger","features":[8]},{"name":"IBackgroundWorkCostStatics","features":[8]},{"name":"IBluetoothLEAdvertisementPublisherTrigger","features":[8]},{"name":"IBluetoothLEAdvertisementPublisherTrigger2","features":[8]},{"name":"IBluetoothLEAdvertisementWatcherTrigger","features":[8]},{"name":"IBluetoothLEAdvertisementWatcherTrigger2","features":[8]},{"name":"ICachedFileUpdaterTrigger","features":[8]},{"name":"ICachedFileUpdaterTriggerDetails","features":[8]},{"name":"IChatMessageNotificationTrigger","features":[8]},{"name":"IChatMessageReceivedNotificationTrigger","features":[8]},{"name":"ICommunicationBlockingAppSetAsActiveTrigger","features":[8]},{"name":"IContactStoreNotificationTrigger","features":[8]},{"name":"IContentPrefetchTrigger","features":[8]},{"name":"IContentPrefetchTriggerFactory","features":[8]},{"name":"ICustomSystemEventTrigger","features":[8]},{"name":"ICustomSystemEventTriggerFactory","features":[8]},{"name":"IDeviceConnectionChangeTrigger","features":[8]},{"name":"IDeviceConnectionChangeTriggerStatics","features":[8]},{"name":"IDeviceManufacturerNotificationTrigger","features":[8]},{"name":"IDeviceManufacturerNotificationTriggerFactory","features":[8]},{"name":"IDeviceServicingTrigger","features":[8]},{"name":"IDeviceUseTrigger","features":[8]},{"name":"IDeviceWatcherTrigger","features":[8]},{"name":"IEmailStoreNotificationTrigger","features":[8]},{"name":"IGattCharacteristicNotificationTrigger","features":[8]},{"name":"IGattCharacteristicNotificationTrigger2","features":[8]},{"name":"IGattCharacteristicNotificationTriggerFactory","features":[8]},{"name":"IGattCharacteristicNotificationTriggerFactory2","features":[8]},{"name":"IGattServiceProviderTrigger","features":[8]},{"name":"IGattServiceProviderTriggerResult","features":[8]},{"name":"IGattServiceProviderTriggerStatics","features":[8]},{"name":"IGeovisitTrigger","features":[8]},{"name":"ILocationTrigger","features":[8]},{"name":"ILocationTriggerFactory","features":[8]},{"name":"IMaintenanceTrigger","features":[8]},{"name":"IMaintenanceTriggerFactory","features":[8]},{"name":"IMediaProcessingTrigger","features":[8]},{"name":"INetworkOperatorHotspotAuthenticationTrigger","features":[8]},{"name":"INetworkOperatorNotificationTrigger","features":[8]},{"name":"INetworkOperatorNotificationTriggerFactory","features":[8]},{"name":"IPhoneTrigger","features":[8]},{"name":"IPhoneTriggerFactory","features":[8]},{"name":"IPushNotificationTriggerFactory","features":[8]},{"name":"IRcsEndUserMessageAvailableTrigger","features":[8]},{"name":"IRfcommConnectionTrigger","features":[8]},{"name":"ISecondaryAuthenticationFactorAuthenticationTrigger","features":[8]},{"name":"ISensorDataThresholdTrigger","features":[8]},{"name":"ISensorDataThresholdTriggerFactory","features":[8]},{"name":"ISmartCardTrigger","features":[8]},{"name":"ISmartCardTriggerFactory","features":[8]},{"name":"ISmsMessageReceivedTriggerFactory","features":[8]},{"name":"ISocketActivityTrigger","features":[8]},{"name":"IStorageLibraryChangeTrackerTriggerFactory","features":[8]},{"name":"IStorageLibraryContentChangedTrigger","features":[8]},{"name":"IStorageLibraryContentChangedTriggerStatics","features":[8]},{"name":"ISystemCondition","features":[8]},{"name":"ISystemConditionFactory","features":[8]},{"name":"ISystemTrigger","features":[8]},{"name":"ISystemTriggerFactory","features":[8]},{"name":"ITimeTrigger","features":[8]},{"name":"ITimeTriggerFactory","features":[8]},{"name":"IToastNotificationActionTriggerFactory","features":[8]},{"name":"IToastNotificationHistoryChangedTriggerFactory","features":[8]},{"name":"IUserNotificationChangedTriggerFactory","features":[8]},{"name":"LocationTrigger","features":[8]},{"name":"LocationTriggerType","features":[8]},{"name":"MaintenanceTrigger","features":[8]},{"name":"MediaProcessingTrigger","features":[8]},{"name":"MediaProcessingTriggerResult","features":[8]},{"name":"MobileBroadbandDeviceServiceNotificationTrigger","features":[8]},{"name":"MobileBroadbandPcoDataChangeTrigger","features":[8]},{"name":"MobileBroadbandPinLockStateChangeTrigger","features":[8]},{"name":"MobileBroadbandRadioStateChangeTrigger","features":[8]},{"name":"MobileBroadbandRegistrationStateChangeTrigger","features":[8]},{"name":"NetworkOperatorDataUsageTrigger","features":[8]},{"name":"NetworkOperatorHotspotAuthenticationTrigger","features":[8]},{"name":"NetworkOperatorNotificationTrigger","features":[8]},{"name":"PaymentAppCanMakePaymentTrigger","features":[8]},{"name":"PhoneTrigger","features":[8]},{"name":"PushNotificationTrigger","features":[8]},{"name":"RcsEndUserMessageAvailableTrigger","features":[8]},{"name":"RfcommConnectionTrigger","features":[8]},{"name":"SecondaryAuthenticationFactorAuthenticationTrigger","features":[8]},{"name":"SensorDataThresholdTrigger","features":[8]},{"name":"SmartCardTrigger","features":[8]},{"name":"SmsMessageReceivedTrigger","features":[8]},{"name":"SocketActivityTrigger","features":[8]},{"name":"StorageLibraryChangeTrackerTrigger","features":[8]},{"name":"StorageLibraryContentChangedTrigger","features":[8]},{"name":"SystemCondition","features":[8]},{"name":"SystemConditionType","features":[8]},{"name":"SystemTrigger","features":[8]},{"name":"SystemTriggerType","features":[8]},{"name":"TetheringEntitlementCheckTrigger","features":[8]},{"name":"TimeTrigger","features":[8]},{"name":"ToastNotificationActionTrigger","features":[8]},{"name":"ToastNotificationHistoryChangedTrigger","features":[8]},{"name":"UserNotificationChangedTrigger","features":[8]},{"name":"WiFiOnDemandHotspotConnectTrigger","features":[8]},{"name":"WiFiOnDemandHotspotUpdateMetadataTrigger","features":[8]}],"10":[{"name":"CallAnswerEventArgs","features":[9]},{"name":"CallRejectEventArgs","features":[9]},{"name":"CallStateChangeEventArgs","features":[9]},{"name":"CallsPhoneContract","features":[9]},{"name":"CallsVoipContract","features":[9]},{"name":"CellularDtmfMode","features":[9]},{"name":"DtmfKey","features":[9]},{"name":"DtmfToneAudioPlayback","features":[9]},{"name":"ICallAnswerEventArgs","features":[9]},{"name":"ICallRejectEventArgs","features":[9]},{"name":"ICallStateChangeEventArgs","features":[9]},{"name":"ILockScreenCallEndCallDeferral","features":[9]},{"name":"ILockScreenCallEndRequestedEventArgs","features":[9]},{"name":"ILockScreenCallUI","features":[9]},{"name":"IMuteChangeEventArgs","features":[9]},{"name":"IPhoneCall","features":[9]},{"name":"IPhoneCallBlockingStatics","features":[9]},{"name":"IPhoneCallHistoryEntry","features":[9]},{"name":"IPhoneCallHistoryEntryAddress","features":[9]},{"name":"IPhoneCallHistoryEntryAddressFactory","features":[9]},{"name":"IPhoneCallHistoryEntryQueryOptions","features":[9]},{"name":"IPhoneCallHistoryEntryReader","features":[9]},{"name":"IPhoneCallHistoryManagerForUser","features":[9]},{"name":"IPhoneCallHistoryManagerStatics","features":[9]},{"name":"IPhoneCallHistoryManagerStatics2","features":[9]},{"name":"IPhoneCallHistoryStore","features":[9]},{"name":"IPhoneCallInfo","features":[9]},{"name":"IPhoneCallManagerStatics","features":[9]},{"name":"IPhoneCallManagerStatics2","features":[9]},{"name":"IPhoneCallStatics","features":[9]},{"name":"IPhoneCallStore","features":[9]},{"name":"IPhoneCallVideoCapabilities","features":[9]},{"name":"IPhoneCallVideoCapabilitiesManagerStatics","features":[9]},{"name":"IPhoneCallsResult","features":[9]},{"name":"IPhoneDialOptions","features":[9]},{"name":"IPhoneLine","features":[9]},{"name":"IPhoneLine2","features":[9]},{"name":"IPhoneLine3","features":[9]},{"name":"IPhoneLineCellularDetails","features":[9]},{"name":"IPhoneLineConfiguration","features":[9]},{"name":"IPhoneLineDialResult","features":[9]},{"name":"IPhoneLineStatics","features":[9]},{"name":"IPhoneLineTransportDevice","features":[9]},{"name":"IPhoneLineTransportDevice2","features":[9]},{"name":"IPhoneLineTransportDeviceStatics","features":[9]},{"name":"IPhoneLineWatcher","features":[9]},{"name":"IPhoneLineWatcherEventArgs","features":[9]},{"name":"IPhoneVoicemail","features":[9]},{"name":"IVoipCallCoordinator","features":[9]},{"name":"IVoipCallCoordinator2","features":[9]},{"name":"IVoipCallCoordinator3","features":[9]},{"name":"IVoipCallCoordinator4","features":[9]},{"name":"IVoipCallCoordinatorStatics","features":[9]},{"name":"IVoipPhoneCall","features":[9]},{"name":"IVoipPhoneCall2","features":[9]},{"name":"IVoipPhoneCall3","features":[9]},{"name":"LockScreenCallContract","features":[9]},{"name":"LockScreenCallEndCallDeferral","features":[9]},{"name":"LockScreenCallEndRequestedEventArgs","features":[9]},{"name":"LockScreenCallUI","features":[9]},{"name":"MuteChangeEventArgs","features":[9]},{"name":"PhoneAudioRoutingEndpoint","features":[9]},{"name":"PhoneCall","features":[9]},{"name":"PhoneCallAudioDevice","features":[9]},{"name":"PhoneCallBlocking","features":[9]},{"name":"PhoneCallDirection","features":[9]},{"name":"PhoneCallHistoryEntry","features":[9]},{"name":"PhoneCallHistoryEntryAddress","features":[9]},{"name":"PhoneCallHistoryEntryMedia","features":[9]},{"name":"PhoneCallHistoryEntryOtherAppReadAccess","features":[9]},{"name":"PhoneCallHistoryEntryQueryDesiredMedia","features":[9]},{"name":"PhoneCallHistoryEntryQueryOptions","features":[9]},{"name":"PhoneCallHistoryEntryRawAddressKind","features":[9]},{"name":"PhoneCallHistoryEntryReader","features":[9]},{"name":"PhoneCallHistoryManager","features":[9]},{"name":"PhoneCallHistoryManagerForUser","features":[9]},{"name":"PhoneCallHistorySourceIdKind","features":[9]},{"name":"PhoneCallHistoryStore","features":[9]},{"name":"PhoneCallHistoryStoreAccessType","features":[9]},{"name":"PhoneCallInfo","features":[9]},{"name":"PhoneCallManager","features":[9]},{"name":"PhoneCallMedia","features":[9]},{"name":"PhoneCallOperationStatus","features":[9]},{"name":"PhoneCallStatus","features":[9]},{"name":"PhoneCallStore","features":[9]},{"name":"PhoneCallVideoCapabilities","features":[9]},{"name":"PhoneCallVideoCapabilitiesManager","features":[9]},{"name":"PhoneCallsResult","features":[9]},{"name":"PhoneDialOptions","features":[9]},{"name":"PhoneLine","features":[9]},{"name":"PhoneLineCellularDetails","features":[9]},{"name":"PhoneLineConfiguration","features":[9]},{"name":"PhoneLineDialResult","features":[9]},{"name":"PhoneLineNetworkOperatorDisplayTextLocation","features":[9]},{"name":"PhoneLineOperationStatus","features":[9]},{"name":"PhoneLineTransport","features":[9]},{"name":"PhoneLineTransportDevice","features":[9]},{"name":"PhoneLineWatcher","features":[9]},{"name":"PhoneLineWatcherEventArgs","features":[9]},{"name":"PhoneLineWatcherStatus","features":[9]},{"name":"PhoneNetworkState","features":[9]},{"name":"PhoneSimState","features":[9]},{"name":"PhoneVoicemail","features":[9]},{"name":"PhoneVoicemailType","features":[9]},{"name":"TransportDeviceAudioRoutingStatus","features":[9]},{"name":"VoipCallCoordinator","features":[9]},{"name":"VoipPhoneCall","features":[9]},{"name":"VoipPhoneCallMedia","features":[9]},{"name":"VoipPhoneCallRejectReason","features":[9]},{"name":"VoipPhoneCallResourceReservationStatus","features":[9]},{"name":"VoipPhoneCallState","features":[9]}],"11":[{"name":"CallsBackgroundContract","features":[10]},{"name":"IPhoneCallBlockedTriggerDetails","features":[10]},{"name":"IPhoneCallOriginDataRequestTriggerDetails","features":[10]},{"name":"IPhoneIncomingCallDismissedTriggerDetails","features":[10]},{"name":"IPhoneIncomingCallNotificationTriggerDetails","features":[10]},{"name":"IPhoneLineChangedTriggerDetails","features":[10]},{"name":"IPhoneNewVoicemailMessageTriggerDetails","features":[10]},{"name":"PhoneCallBlockedReason","features":[10]},{"name":"PhoneCallBlockedTriggerDetails","features":[10]},{"name":"PhoneCallOriginDataRequestTriggerDetails","features":[10]},{"name":"PhoneIncomingCallDismissedReason","features":[10]},{"name":"PhoneIncomingCallDismissedTriggerDetails","features":[10]},{"name":"PhoneIncomingCallNotificationTriggerDetails","features":[10]},{"name":"PhoneLineChangeKind","features":[10]},{"name":"PhoneLineChangedTriggerDetails","features":[10]},{"name":"PhoneLineProperties","features":[10]},{"name":"PhoneNewVoicemailMessageTriggerDetails","features":[10]},{"name":"PhoneTriggerType","features":[10]}],"12":[{"name":"IPhoneCallOrigin","features":[11]},{"name":"IPhoneCallOrigin2","features":[11]},{"name":"IPhoneCallOrigin3","features":[11]},{"name":"IPhoneCallOriginManagerStatics","features":[11]},{"name":"IPhoneCallOriginManagerStatics2","features":[11]},{"name":"IPhoneCallOriginManagerStatics3","features":[11]},{"name":"PhoneCallOrigin","features":[11]},{"name":"PhoneCallOriginManager","features":[11]}],"13":[{"name":"ChatCapabilities","features":[12]},{"name":"ChatCapabilitiesManager","features":[12]},{"name":"ChatConversation","features":[12]},{"name":"ChatConversationReader","features":[12]},{"name":"ChatConversationThreadingInfo","features":[12]},{"name":"ChatConversationThreadingKind","features":[12]},{"name":"ChatItemKind","features":[12]},{"name":"ChatMessage","features":[12]},{"name":"ChatMessageAttachment","features":[12]},{"name":"ChatMessageBlocking","features":[12]},{"name":"ChatMessageChange","features":[12]},{"name":"ChatMessageChangeReader","features":[12]},{"name":"ChatMessageChangeTracker","features":[12]},{"name":"ChatMessageChangeType","features":[12]},{"name":"ChatMessageChangedDeferral","features":[12]},{"name":"ChatMessageChangedEventArgs","features":[12]},{"name":"ChatMessageKind","features":[12]},{"name":"ChatMessageManager","features":[12]},{"name":"ChatMessageNotificationTriggerDetails","features":[12]},{"name":"ChatMessageOperatorKind","features":[12]},{"name":"ChatMessageReader","features":[12]},{"name":"ChatMessageStatus","features":[12]},{"name":"ChatMessageStore","features":[12]},{"name":"ChatMessageStoreChangedEventArgs","features":[12]},{"name":"ChatMessageTransport","features":[12]},{"name":"ChatMessageTransportConfiguration","features":[12]},{"name":"ChatMessageTransportKind","features":[12]},{"name":"ChatMessageValidationResult","features":[12]},{"name":"ChatMessageValidationStatus","features":[12]},{"name":"ChatQueryOptions","features":[12]},{"name":"ChatRecipientDeliveryInfo","features":[12]},{"name":"ChatRestoreHistorySpan","features":[12]},{"name":"ChatSearchReader","features":[12]},{"name":"ChatStoreChangedEventKind","features":[12]},{"name":"ChatSyncConfiguration","features":[12]},{"name":"ChatSyncManager","features":[12]},{"name":"ChatTransportErrorCodeCategory","features":[12]},{"name":"ChatTransportInterpretedErrorCode","features":[12]},{"name":"IChatCapabilities","features":[12]},{"name":"IChatCapabilitiesManagerStatics","features":[12]},{"name":"IChatCapabilitiesManagerStatics2","features":[12]},{"name":"IChatConversation","features":[12]},{"name":"IChatConversation2","features":[12]},{"name":"IChatConversationReader","features":[12]},{"name":"IChatConversationThreadingInfo","features":[12]},{"name":"IChatItem","features":[12]},{"name":"IChatMessage","features":[12]},{"name":"IChatMessage2","features":[12]},{"name":"IChatMessage3","features":[12]},{"name":"IChatMessage4","features":[12]},{"name":"IChatMessageAttachment","features":[12]},{"name":"IChatMessageAttachment2","features":[12]},{"name":"IChatMessageAttachmentFactory","features":[12]},{"name":"IChatMessageBlockingStatic","features":[12]},{"name":"IChatMessageChange","features":[12]},{"name":"IChatMessageChangeReader","features":[12]},{"name":"IChatMessageChangeTracker","features":[12]},{"name":"IChatMessageChangedDeferral","features":[12]},{"name":"IChatMessageChangedEventArgs","features":[12]},{"name":"IChatMessageManager2Statics","features":[12]},{"name":"IChatMessageManagerStatic","features":[12]},{"name":"IChatMessageManagerStatics3","features":[12]},{"name":"IChatMessageNotificationTriggerDetails","features":[12]},{"name":"IChatMessageNotificationTriggerDetails2","features":[12]},{"name":"IChatMessageReader","features":[12]},{"name":"IChatMessageReader2","features":[12]},{"name":"IChatMessageStore","features":[12]},{"name":"IChatMessageStore2","features":[12]},{"name":"IChatMessageStore3","features":[12]},{"name":"IChatMessageStoreChangedEventArgs","features":[12]},{"name":"IChatMessageTransport","features":[12]},{"name":"IChatMessageTransport2","features":[12]},{"name":"IChatMessageTransportConfiguration","features":[12]},{"name":"IChatMessageValidationResult","features":[12]},{"name":"IChatQueryOptions","features":[12]},{"name":"IChatRecipientDeliveryInfo","features":[12]},{"name":"IChatSearchReader","features":[12]},{"name":"IChatSyncConfiguration","features":[12]},{"name":"IChatSyncManager","features":[12]},{"name":"IRcsEndUserMessage","features":[12]},{"name":"IRcsEndUserMessageAction","features":[12]},{"name":"IRcsEndUserMessageAvailableEventArgs","features":[12]},{"name":"IRcsEndUserMessageAvailableTriggerDetails","features":[12]},{"name":"IRcsEndUserMessageManager","features":[12]},{"name":"IRcsManagerStatics","features":[12]},{"name":"IRcsManagerStatics2","features":[12]},{"name":"IRcsServiceKindSupportedChangedEventArgs","features":[12]},{"name":"IRcsTransport","features":[12]},{"name":"IRcsTransportConfiguration","features":[12]},{"name":"IRemoteParticipantComposingChangedEventArgs","features":[12]},{"name":"RcsEndUserMessage","features":[12]},{"name":"RcsEndUserMessageAction","features":[12]},{"name":"RcsEndUserMessageAvailableEventArgs","features":[12]},{"name":"RcsEndUserMessageAvailableTriggerDetails","features":[12]},{"name":"RcsEndUserMessageManager","features":[12]},{"name":"RcsManager","features":[12]},{"name":"RcsServiceKind","features":[12]},{"name":"RcsServiceKindSupportedChangedEventArgs","features":[12]},{"name":"RcsTransport","features":[12]},{"name":"RcsTransportConfiguration","features":[12]},{"name":"RemoteParticipantComposingChangedEventArgs","features":[12]}],"14":[{"name":"CommunicationBlockingAccessManager","features":[13]},{"name":"CommunicationBlockingAppManager","features":[13]},{"name":"CommunicationBlockingContract","features":[13]},{"name":"ICommunicationBlockingAccessManagerStatics","features":[13]},{"name":"ICommunicationBlockingAppManagerStatics","features":[13]},{"name":"ICommunicationBlockingAppManagerStatics2","features":[13]}],"15":[{"name":"AggregateContactManager","features":[14]},{"name":"Contact","features":[14]},{"name":"ContactAddress","features":[14]},{"name":"ContactAddressKind","features":[14]},{"name":"ContactAnnotation","features":[14]},{"name":"ContactAnnotationList","features":[14]},{"name":"ContactAnnotationOperations","features":[14]},{"name":"ContactAnnotationStore","features":[14]},{"name":"ContactAnnotationStoreAccessType","features":[14]},{"name":"ContactBatch","features":[14]},{"name":"ContactBatchStatus","features":[14]},{"name":"ContactCardDelayedDataLoader","features":[14]},{"name":"ContactCardHeaderKind","features":[14]},{"name":"ContactCardOptions","features":[14]},{"name":"ContactCardTabKind","features":[14]},{"name":"ContactChange","features":[14]},{"name":"ContactChangeReader","features":[14]},{"name":"ContactChangeTracker","features":[14]},{"name":"ContactChangeType","features":[14]},{"name":"ContactChangedDeferral","features":[14]},{"name":"ContactChangedEventArgs","features":[14]},{"name":"ContactConnectedServiceAccount","features":[14]},{"name":"ContactDate","features":[14]},{"name":"ContactDateKind","features":[14]},{"name":"ContactEmail","features":[14]},{"name":"ContactEmailKind","features":[14]},{"name":"ContactField","features":[14]},{"name":"ContactFieldCategory","features":[14]},{"name":"ContactFieldFactory","features":[14]},{"name":"ContactFieldType","features":[14]},{"name":"ContactGroup","features":[14]},{"name":"ContactInformation","features":[14]},{"name":"ContactInstantMessageField","features":[14]},{"name":"ContactJobInfo","features":[14]},{"name":"ContactLaunchActionVerbs","features":[14]},{"name":"ContactList","features":[14]},{"name":"ContactListLimitedWriteOperations","features":[14]},{"name":"ContactListOtherAppReadAccess","features":[14]},{"name":"ContactListOtherAppWriteAccess","features":[14]},{"name":"ContactListSyncConstraints","features":[14]},{"name":"ContactListSyncManager","features":[14]},{"name":"ContactListSyncStatus","features":[14]},{"name":"ContactLocationField","features":[14]},{"name":"ContactManager","features":[14]},{"name":"ContactManagerForUser","features":[14]},{"name":"ContactMatchReason","features":[14]},{"name":"ContactMatchReasonKind","features":[14]},{"name":"ContactNameOrder","features":[14]},{"name":"ContactPanel","features":[14]},{"name":"ContactPanelClosingEventArgs","features":[14]},{"name":"ContactPanelLaunchFullAppRequestedEventArgs","features":[14]},{"name":"ContactPhone","features":[14]},{"name":"ContactPhoneKind","features":[14]},{"name":"ContactPicker","features":[14]},{"name":"ContactQueryDesiredFields","features":[14]},{"name":"ContactQueryOptions","features":[14]},{"name":"ContactQuerySearchFields","features":[14]},{"name":"ContactQuerySearchScope","features":[14]},{"name":"ContactQueryTextSearch","features":[14]},{"name":"ContactReader","features":[14]},{"name":"ContactRelationship","features":[14]},{"name":"ContactSelectionMode","features":[14]},{"name":"ContactSignificantOther","features":[14]},{"name":"ContactStore","features":[14]},{"name":"ContactStoreAccessType","features":[14]},{"name":"ContactStoreNotificationTriggerDetails","features":[14]},{"name":"ContactWebsite","features":[14]},{"name":"FullContactCardOptions","features":[14]},{"name":"IAggregateContactManager","features":[14]},{"name":"IAggregateContactManager2","features":[14]},{"name":"IContact","features":[14]},{"name":"IContact2","features":[14]},{"name":"IContact3","features":[14]},{"name":"IContactAddress","features":[14]},{"name":"IContactAnnotation","features":[14]},{"name":"IContactAnnotation2","features":[14]},{"name":"IContactAnnotationList","features":[14]},{"name":"IContactAnnotationStore","features":[14]},{"name":"IContactAnnotationStore2","features":[14]},{"name":"IContactBatch","features":[14]},{"name":"IContactCardDelayedDataLoader","features":[14]},{"name":"IContactCardOptions","features":[14]},{"name":"IContactCardOptions2","features":[14]},{"name":"IContactChange","features":[14]},{"name":"IContactChangeReader","features":[14]},{"name":"IContactChangeTracker","features":[14]},{"name":"IContactChangeTracker2","features":[14]},{"name":"IContactChangedDeferral","features":[14]},{"name":"IContactChangedEventArgs","features":[14]},{"name":"IContactConnectedServiceAccount","features":[14]},{"name":"IContactDate","features":[14]},{"name":"IContactEmail","features":[14]},{"name":"IContactField","features":[14]},{"name":"IContactFieldFactory","features":[14]},{"name":"IContactGroup","features":[14]},{"name":"IContactInformation","features":[14]},{"name":"IContactInstantMessageField","features":[14]},{"name":"IContactInstantMessageFieldFactory","features":[14]},{"name":"IContactJobInfo","features":[14]},{"name":"IContactLaunchActionVerbsStatics","features":[14]},{"name":"IContactList","features":[14]},{"name":"IContactList2","features":[14]},{"name":"IContactList3","features":[14]},{"name":"IContactListLimitedWriteOperations","features":[14]},{"name":"IContactListSyncConstraints","features":[14]},{"name":"IContactListSyncManager","features":[14]},{"name":"IContactListSyncManager2","features":[14]},{"name":"IContactLocationField","features":[14]},{"name":"IContactLocationFieldFactory","features":[14]},{"name":"IContactManagerForUser","features":[14]},{"name":"IContactManagerForUser2","features":[14]},{"name":"IContactManagerStatics","features":[14]},{"name":"IContactManagerStatics2","features":[14]},{"name":"IContactManagerStatics3","features":[14]},{"name":"IContactManagerStatics4","features":[14]},{"name":"IContactManagerStatics5","features":[14]},{"name":"IContactMatchReason","features":[14]},{"name":"IContactName","features":[14]},{"name":"IContactPanel","features":[14]},{"name":"IContactPanelClosingEventArgs","features":[14]},{"name":"IContactPanelLaunchFullAppRequestedEventArgs","features":[14]},{"name":"IContactPhone","features":[14]},{"name":"IContactPicker","features":[14]},{"name":"IContactPicker2","features":[14]},{"name":"IContactPicker3","features":[14]},{"name":"IContactPickerStatics","features":[14]},{"name":"IContactQueryOptions","features":[14]},{"name":"IContactQueryOptionsFactory","features":[14]},{"name":"IContactQueryTextSearch","features":[14]},{"name":"IContactReader","features":[14]},{"name":"IContactSignificantOther","features":[14]},{"name":"IContactSignificantOther2","features":[14]},{"name":"IContactStore","features":[14]},{"name":"IContactStore2","features":[14]},{"name":"IContactStore3","features":[14]},{"name":"IContactStoreNotificationTriggerDetails","features":[14]},{"name":"IContactWebsite","features":[14]},{"name":"IContactWebsite2","features":[14]},{"name":"IFullContactCardOptions","features":[14]},{"name":"IKnownContactFieldStatics","features":[14]},{"name":"IPinnedContactIdsQueryResult","features":[14]},{"name":"IPinnedContactManager","features":[14]},{"name":"IPinnedContactManagerStatics","features":[14]},{"name":"KnownContactField","features":[14]},{"name":"PinnedContactIdsQueryResult","features":[14]},{"name":"PinnedContactManager","features":[14]},{"name":"PinnedContactSurface","features":[14]}],"16":[{"name":"ContactDataProviderConnection","features":[15]},{"name":"ContactDataProviderTriggerDetails","features":[15]},{"name":"ContactListCreateOrUpdateContactRequest","features":[15]},{"name":"ContactListCreateOrUpdateContactRequestEventArgs","features":[15]},{"name":"ContactListDeleteContactRequest","features":[15]},{"name":"ContactListDeleteContactRequestEventArgs","features":[15]},{"name":"ContactListServerSearchReadBatchRequest","features":[15]},{"name":"ContactListServerSearchReadBatchRequestEventArgs","features":[15]},{"name":"ContactListSyncManagerSyncRequest","features":[15]},{"name":"ContactListSyncManagerSyncRequestEventArgs","features":[15]},{"name":"IContactDataProviderConnection","features":[15]},{"name":"IContactDataProviderConnection2","features":[15]},{"name":"IContactDataProviderTriggerDetails","features":[15]},{"name":"IContactListCreateOrUpdateContactRequest","features":[15]},{"name":"IContactListCreateOrUpdateContactRequestEventArgs","features":[15]},{"name":"IContactListDeleteContactRequest","features":[15]},{"name":"IContactListDeleteContactRequestEventArgs","features":[15]},{"name":"IContactListServerSearchReadBatchRequest","features":[15]},{"name":"IContactListServerSearchReadBatchRequestEventArgs","features":[15]},{"name":"IContactListSyncManagerSyncRequest","features":[15]},{"name":"IContactListSyncManagerSyncRequestEventArgs","features":[15]}],"17":[{"name":"AddContactResult","features":[16]},{"name":"ContactPickerUI","features":[16]},{"name":"ContactRemovedEventArgs","features":[16]},{"name":"IContactPickerUI","features":[16]},{"name":"IContactPickerUI2","features":[16]},{"name":"IContactRemovedEventArgs","features":[16]}],"18":[{"name":"ActivationSignalDetectionConfiguration","features":[17]},{"name":"ActivationSignalDetectionConfigurationCreationResult","features":[17]},{"name":"ActivationSignalDetectionConfigurationCreationStatus","features":[17]},{"name":"ActivationSignalDetectionConfigurationRemovalResult","features":[17]},{"name":"ActivationSignalDetectionConfigurationSetModelDataResult","features":[17]},{"name":"ActivationSignalDetectionConfigurationStateChangeResult","features":[17]},{"name":"ActivationSignalDetectionTrainingDataFormat","features":[17]},{"name":"ActivationSignalDetector","features":[17]},{"name":"ActivationSignalDetectorKind","features":[17]},{"name":"ActivationSignalDetectorPowerState","features":[17]},{"name":"ConversationalAgentActivationKind","features":[17]},{"name":"ConversationalAgentActivationResult","features":[17]},{"name":"ConversationalAgentDetectorManager","features":[17]},{"name":"ConversationalAgentSession","features":[17]},{"name":"ConversationalAgentSessionInterruptedEventArgs","features":[17]},{"name":"ConversationalAgentSessionUpdateResponse","features":[17]},{"name":"ConversationalAgentSignal","features":[17]},{"name":"ConversationalAgentSignalDetectedEventArgs","features":[17]},{"name":"ConversationalAgentState","features":[17]},{"name":"ConversationalAgentSystemStateChangeType","features":[17]},{"name":"ConversationalAgentSystemStateChangedEventArgs","features":[17]},{"name":"ConversationalAgentVoiceActivationPrerequisiteKind","features":[17]},{"name":"DetectionConfigurationAvailabilityChangeKind","features":[17]},{"name":"DetectionConfigurationAvailabilityChangedEventArgs","features":[17]},{"name":"DetectionConfigurationAvailabilityInfo","features":[17]},{"name":"DetectionConfigurationTrainingStatus","features":[17]},{"name":"IActivationSignalDetectionConfiguration","features":[17]},{"name":"IActivationSignalDetectionConfiguration2","features":[17]},{"name":"IActivationSignalDetectionConfigurationCreationResult","features":[17]},{"name":"IActivationSignalDetector","features":[17]},{"name":"IActivationSignalDetector2","features":[17]},{"name":"IConversationalAgentDetectorManager","features":[17]},{"name":"IConversationalAgentDetectorManager2","features":[17]},{"name":"IConversationalAgentDetectorManagerStatics","features":[17]},{"name":"IConversationalAgentSession","features":[17]},{"name":"IConversationalAgentSession2","features":[17]},{"name":"IConversationalAgentSessionInterruptedEventArgs","features":[17]},{"name":"IConversationalAgentSessionStatics","features":[17]},{"name":"IConversationalAgentSignal","features":[17]},{"name":"IConversationalAgentSignal2","features":[17]},{"name":"IConversationalAgentSignalDetectedEventArgs","features":[17]},{"name":"IConversationalAgentSystemStateChangedEventArgs","features":[17]},{"name":"IDetectionConfigurationAvailabilityChangedEventArgs","features":[17]},{"name":"IDetectionConfigurationAvailabilityInfo","features":[17]},{"name":"IDetectionConfigurationAvailabilityInfo2","features":[17]},{"name":"SignalDetectorResourceKind","features":[17]}],"19":[{"name":"AppListEntry","features":[18]},{"name":"AppRestartFailureReason","features":[18]},{"name":"CoreApplication","features":[18]},{"name":"CoreApplicationView","features":[18]},{"name":"CoreApplicationViewTitleBar","features":[18]},{"name":"HostedViewClosingEventArgs","features":[18]},{"name":"IAppListEntry","features":[18]},{"name":"IAppListEntry2","features":[18]},{"name":"IAppListEntry3","features":[18]},{"name":"IAppListEntry4","features":[18]},{"name":"ICoreApplication","features":[18]},{"name":"ICoreApplication2","features":[18]},{"name":"ICoreApplication3","features":[18]},{"name":"ICoreApplicationExit","features":[18]},{"name":"ICoreApplicationUnhandledError","features":[18]},{"name":"ICoreApplicationUseCount","features":[18]},{"name":"ICoreApplicationView","features":[18]},{"name":"ICoreApplicationView2","features":[18]},{"name":"ICoreApplicationView3","features":[18]},{"name":"ICoreApplicationView5","features":[18]},{"name":"ICoreApplicationView6","features":[18]},{"name":"ICoreApplicationViewTitleBar","features":[18]},{"name":"ICoreImmersiveApplication","features":[18]},{"name":"ICoreImmersiveApplication2","features":[18]},{"name":"ICoreImmersiveApplication3","features":[18]},{"name":"IFrameworkView","features":[18]},{"name":"IFrameworkViewSource","features":[18]},{"name":"IHostedViewClosingEventArgs","features":[18]},{"name":"IUnhandledError","features":[18]},{"name":"IUnhandledErrorDetectedEventArgs","features":[18]},{"name":"UnhandledError","features":[18]},{"name":"UnhandledErrorDetectedEventArgs","features":[18]}],"20":[{"name":"Clipboard","features":[19]},{"name":"ClipboardContentOptions","features":[19]},{"name":"ClipboardHistoryChangedEventArgs","features":[19]},{"name":"ClipboardHistoryItem","features":[19]},{"name":"ClipboardHistoryItemsResult","features":[19]},{"name":"ClipboardHistoryItemsResultStatus","features":[19]},{"name":"DataPackage","features":[19]},{"name":"DataPackageOperation","features":[19]},{"name":"DataPackagePropertySet","features":[19]},{"name":"DataPackagePropertySetView","features":[19]},{"name":"DataPackageView","features":[19]},{"name":"DataProviderDeferral","features":[19]},{"name":"DataProviderHandler","features":[19]},{"name":"DataProviderRequest","features":[19]},{"name":"DataRequest","features":[19]},{"name":"DataRequestDeferral","features":[19]},{"name":"DataRequestedEventArgs","features":[19]},{"name":"DataTransferManager","features":[19]},{"name":"HtmlFormatHelper","features":[19]},{"name":"IClipboardContentOptions","features":[19]},{"name":"IClipboardHistoryChangedEventArgs","features":[19]},{"name":"IClipboardHistoryItem","features":[19]},{"name":"IClipboardHistoryItemsResult","features":[19]},{"name":"IClipboardStatics","features":[19]},{"name":"IClipboardStatics2","features":[19]},{"name":"IDataPackage","features":[19]},{"name":"IDataPackage2","features":[19]},{"name":"IDataPackage3","features":[19]},{"name":"IDataPackage4","features":[19]},{"name":"IDataPackagePropertySet","features":[19]},{"name":"IDataPackagePropertySet2","features":[19]},{"name":"IDataPackagePropertySet3","features":[19]},{"name":"IDataPackagePropertySet4","features":[19]},{"name":"IDataPackagePropertySetView","features":[19]},{"name":"IDataPackagePropertySetView2","features":[19]},{"name":"IDataPackagePropertySetView3","features":[19]},{"name":"IDataPackagePropertySetView4","features":[19]},{"name":"IDataPackagePropertySetView5","features":[19]},{"name":"IDataPackageView","features":[19]},{"name":"IDataPackageView2","features":[19]},{"name":"IDataPackageView3","features":[19]},{"name":"IDataPackageView4","features":[19]},{"name":"IDataProviderDeferral","features":[19]},{"name":"IDataProviderRequest","features":[19]},{"name":"IDataRequest","features":[19]},{"name":"IDataRequestDeferral","features":[19]},{"name":"IDataRequestedEventArgs","features":[19]},{"name":"IDataTransferManager","features":[19]},{"name":"IDataTransferManager2","features":[19]},{"name":"IDataTransferManagerStatics","features":[19]},{"name":"IDataTransferManagerStatics2","features":[19]},{"name":"IDataTransferManagerStatics3","features":[19]},{"name":"IHtmlFormatHelperStatics","features":[19]},{"name":"IOperationCompletedEventArgs","features":[19]},{"name":"IOperationCompletedEventArgs2","features":[19]},{"name":"IShareCompletedEventArgs","features":[19]},{"name":"IShareProvider","features":[19]},{"name":"IShareProviderFactory","features":[19]},{"name":"IShareProviderOperation","features":[19]},{"name":"IShareProvidersRequestedEventArgs","features":[19]},{"name":"IShareTargetInfo","features":[19]},{"name":"IShareUIOptions","features":[19]},{"name":"ISharedStorageAccessManagerStatics","features":[19]},{"name":"IStandardDataFormatsStatics","features":[19]},{"name":"IStandardDataFormatsStatics2","features":[19]},{"name":"IStandardDataFormatsStatics3","features":[19]},{"name":"ITargetApplicationChosenEventArgs","features":[19]},{"name":"OperationCompletedEventArgs","features":[19]},{"name":"SetHistoryItemAsContentStatus","features":[19]},{"name":"ShareCompletedEventArgs","features":[19]},{"name":"ShareProvider","features":[19]},{"name":"ShareProviderHandler","features":[19]},{"name":"ShareProviderOperation","features":[19]},{"name":"ShareProvidersRequestedEventArgs","features":[19]},{"name":"ShareTargetInfo","features":[19]},{"name":"ShareUIOptions","features":[19]},{"name":"ShareUITheme","features":[19]},{"name":"SharedStorageAccessManager","features":[19]},{"name":"StandardDataFormats","features":[19]},{"name":"TargetApplicationChosenEventArgs","features":[19]}],"21":[{"name":"DragDropModifiers","features":[20]}],"22":[{"name":"CoreDragDropManager","features":[21]},{"name":"CoreDragInfo","features":[21]},{"name":"CoreDragOperation","features":[21]},{"name":"CoreDragUIContentMode","features":[21]},{"name":"CoreDragUIOverride","features":[21]},{"name":"CoreDropOperationTargetRequestedEventArgs","features":[21]},{"name":"ICoreDragDropManager","features":[21]},{"name":"ICoreDragDropManagerStatics","features":[21]},{"name":"ICoreDragInfo","features":[21]},{"name":"ICoreDragInfo2","features":[21]},{"name":"ICoreDragOperation","features":[21]},{"name":"ICoreDragOperation2","features":[21]},{"name":"ICoreDragUIOverride","features":[21]},{"name":"ICoreDropOperationTarget","features":[21]},{"name":"ICoreDropOperationTargetRequestedEventArgs","features":[21]}],"23":[{"name":"IQuickLink","features":[22]},{"name":"IShareOperation","features":[22]},{"name":"IShareOperation2","features":[22]},{"name":"IShareOperation3","features":[22]},{"name":"QuickLink","features":[22]},{"name":"ShareOperation","features":[22]}],"24":[{"name":"EmailAttachment","features":[23]},{"name":"EmailAttachmentDownloadState","features":[23]},{"name":"EmailBatchStatus","features":[23]},{"name":"EmailCertificateValidationStatus","features":[23]},{"name":"EmailConversation","features":[23]},{"name":"EmailConversationBatch","features":[23]},{"name":"EmailConversationReader","features":[23]},{"name":"EmailFlagState","features":[23]},{"name":"EmailFolder","features":[23]},{"name":"EmailImportance","features":[23]},{"name":"EmailIrmInfo","features":[23]},{"name":"EmailIrmTemplate","features":[23]},{"name":"EmailItemCounts","features":[23]},{"name":"EmailMailbox","features":[23]},{"name":"EmailMailboxAction","features":[23]},{"name":"EmailMailboxActionKind","features":[23]},{"name":"EmailMailboxAllowedSmimeEncryptionAlgorithmNegotiation","features":[23]},{"name":"EmailMailboxAutoReply","features":[23]},{"name":"EmailMailboxAutoReplyMessageResponseKind","features":[23]},{"name":"EmailMailboxAutoReplySettings","features":[23]},{"name":"EmailMailboxCapabilities","features":[23]},{"name":"EmailMailboxChange","features":[23]},{"name":"EmailMailboxChangeReader","features":[23]},{"name":"EmailMailboxChangeTracker","features":[23]},{"name":"EmailMailboxChangeType","features":[23]},{"name":"EmailMailboxChangedDeferral","features":[23]},{"name":"EmailMailboxChangedEventArgs","features":[23]},{"name":"EmailMailboxCreateFolderResult","features":[23]},{"name":"EmailMailboxCreateFolderStatus","features":[23]},{"name":"EmailMailboxDeleteFolderStatus","features":[23]},{"name":"EmailMailboxEmptyFolderStatus","features":[23]},{"name":"EmailMailboxOtherAppReadAccess","features":[23]},{"name":"EmailMailboxOtherAppWriteAccess","features":[23]},{"name":"EmailMailboxPolicies","features":[23]},{"name":"EmailMailboxSmimeEncryptionAlgorithm","features":[23]},{"name":"EmailMailboxSmimeSigningAlgorithm","features":[23]},{"name":"EmailMailboxSyncManager","features":[23]},{"name":"EmailMailboxSyncStatus","features":[23]},{"name":"EmailManager","features":[23]},{"name":"EmailManagerForUser","features":[23]},{"name":"EmailMeetingInfo","features":[23]},{"name":"EmailMeetingResponseType","features":[23]},{"name":"EmailMessage","features":[23]},{"name":"EmailMessageBatch","features":[23]},{"name":"EmailMessageBodyKind","features":[23]},{"name":"EmailMessageDownloadState","features":[23]},{"name":"EmailMessageReader","features":[23]},{"name":"EmailMessageResponseKind","features":[23]},{"name":"EmailMessageSmimeKind","features":[23]},{"name":"EmailQueryKind","features":[23]},{"name":"EmailQueryOptions","features":[23]},{"name":"EmailQuerySearchFields","features":[23]},{"name":"EmailQuerySearchScope","features":[23]},{"name":"EmailQuerySortDirection","features":[23]},{"name":"EmailQuerySortProperty","features":[23]},{"name":"EmailQueryTextSearch","features":[23]},{"name":"EmailRecipient","features":[23]},{"name":"EmailRecipientResolutionResult","features":[23]},{"name":"EmailRecipientResolutionStatus","features":[23]},{"name":"EmailSpecialFolderKind","features":[23]},{"name":"EmailStore","features":[23]},{"name":"EmailStoreAccessType","features":[23]},{"name":"EmailStoreNotificationTriggerDetails","features":[23]},{"name":"IEmailAttachment","features":[23]},{"name":"IEmailAttachment2","features":[23]},{"name":"IEmailAttachmentFactory","features":[23]},{"name":"IEmailAttachmentFactory2","features":[23]},{"name":"IEmailConversation","features":[23]},{"name":"IEmailConversationBatch","features":[23]},{"name":"IEmailConversationReader","features":[23]},{"name":"IEmailFolder","features":[23]},{"name":"IEmailIrmInfo","features":[23]},{"name":"IEmailIrmInfoFactory","features":[23]},{"name":"IEmailIrmTemplate","features":[23]},{"name":"IEmailIrmTemplateFactory","features":[23]},{"name":"IEmailItemCounts","features":[23]},{"name":"IEmailMailbox","features":[23]},{"name":"IEmailMailbox2","features":[23]},{"name":"IEmailMailbox3","features":[23]},{"name":"IEmailMailbox4","features":[23]},{"name":"IEmailMailbox5","features":[23]},{"name":"IEmailMailboxAction","features":[23]},{"name":"IEmailMailboxAutoReply","features":[23]},{"name":"IEmailMailboxAutoReplySettings","features":[23]},{"name":"IEmailMailboxCapabilities","features":[23]},{"name":"IEmailMailboxCapabilities2","features":[23]},{"name":"IEmailMailboxCapabilities3","features":[23]},{"name":"IEmailMailboxChange","features":[23]},{"name":"IEmailMailboxChangeReader","features":[23]},{"name":"IEmailMailboxChangeTracker","features":[23]},{"name":"IEmailMailboxChangedDeferral","features":[23]},{"name":"IEmailMailboxChangedEventArgs","features":[23]},{"name":"IEmailMailboxCreateFolderResult","features":[23]},{"name":"IEmailMailboxPolicies","features":[23]},{"name":"IEmailMailboxPolicies2","features":[23]},{"name":"IEmailMailboxPolicies3","features":[23]},{"name":"IEmailMailboxSyncManager","features":[23]},{"name":"IEmailMailboxSyncManager2","features":[23]},{"name":"IEmailManagerForUser","features":[23]},{"name":"IEmailManagerStatics","features":[23]},{"name":"IEmailManagerStatics2","features":[23]},{"name":"IEmailManagerStatics3","features":[23]},{"name":"IEmailMeetingInfo","features":[23]},{"name":"IEmailMeetingInfo2","features":[23]},{"name":"IEmailMessage","features":[23]},{"name":"IEmailMessage2","features":[23]},{"name":"IEmailMessage3","features":[23]},{"name":"IEmailMessage4","features":[23]},{"name":"IEmailMessageBatch","features":[23]},{"name":"IEmailMessageReader","features":[23]},{"name":"IEmailQueryOptions","features":[23]},{"name":"IEmailQueryOptionsFactory","features":[23]},{"name":"IEmailQueryTextSearch","features":[23]},{"name":"IEmailRecipient","features":[23]},{"name":"IEmailRecipientFactory","features":[23]},{"name":"IEmailRecipientResolutionResult","features":[23]},{"name":"IEmailRecipientResolutionResult2","features":[23]},{"name":"IEmailStore","features":[23]},{"name":"IEmailStoreNotificationTriggerDetails","features":[23]}],"25":[{"name":"EmailDataProviderConnection","features":[24]},{"name":"EmailDataProviderTriggerDetails","features":[24]},{"name":"EmailMailboxCreateFolderRequest","features":[24]},{"name":"EmailMailboxCreateFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxDeleteFolderRequest","features":[24]},{"name":"EmailMailboxDeleteFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxDownloadAttachmentRequest","features":[24]},{"name":"EmailMailboxDownloadAttachmentRequestEventArgs","features":[24]},{"name":"EmailMailboxDownloadMessageRequest","features":[24]},{"name":"EmailMailboxDownloadMessageRequestEventArgs","features":[24]},{"name":"EmailMailboxEmptyFolderRequest","features":[24]},{"name":"EmailMailboxEmptyFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxForwardMeetingRequest","features":[24]},{"name":"EmailMailboxForwardMeetingRequestEventArgs","features":[24]},{"name":"EmailMailboxGetAutoReplySettingsRequest","features":[24]},{"name":"EmailMailboxGetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"EmailMailboxMoveFolderRequest","features":[24]},{"name":"EmailMailboxMoveFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxProposeNewTimeForMeetingRequest","features":[24]},{"name":"EmailMailboxProposeNewTimeForMeetingRequestEventArgs","features":[24]},{"name":"EmailMailboxResolveRecipientsRequest","features":[24]},{"name":"EmailMailboxResolveRecipientsRequestEventArgs","features":[24]},{"name":"EmailMailboxServerSearchReadBatchRequest","features":[24]},{"name":"EmailMailboxServerSearchReadBatchRequestEventArgs","features":[24]},{"name":"EmailMailboxSetAutoReplySettingsRequest","features":[24]},{"name":"EmailMailboxSetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"EmailMailboxSyncManagerSyncRequest","features":[24]},{"name":"EmailMailboxSyncManagerSyncRequestEventArgs","features":[24]},{"name":"EmailMailboxUpdateMeetingResponseRequest","features":[24]},{"name":"EmailMailboxUpdateMeetingResponseRequestEventArgs","features":[24]},{"name":"EmailMailboxValidateCertificatesRequest","features":[24]},{"name":"EmailMailboxValidateCertificatesRequestEventArgs","features":[24]},{"name":"IEmailDataProviderConnection","features":[24]},{"name":"IEmailDataProviderTriggerDetails","features":[24]},{"name":"IEmailMailboxCreateFolderRequest","features":[24]},{"name":"IEmailMailboxCreateFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxDeleteFolderRequest","features":[24]},{"name":"IEmailMailboxDeleteFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxDownloadAttachmentRequest","features":[24]},{"name":"IEmailMailboxDownloadAttachmentRequestEventArgs","features":[24]},{"name":"IEmailMailboxDownloadMessageRequest","features":[24]},{"name":"IEmailMailboxDownloadMessageRequestEventArgs","features":[24]},{"name":"IEmailMailboxEmptyFolderRequest","features":[24]},{"name":"IEmailMailboxEmptyFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxForwardMeetingRequest","features":[24]},{"name":"IEmailMailboxForwardMeetingRequestEventArgs","features":[24]},{"name":"IEmailMailboxGetAutoReplySettingsRequest","features":[24]},{"name":"IEmailMailboxGetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"IEmailMailboxMoveFolderRequest","features":[24]},{"name":"IEmailMailboxMoveFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxProposeNewTimeForMeetingRequest","features":[24]},{"name":"IEmailMailboxProposeNewTimeForMeetingRequestEventArgs","features":[24]},{"name":"IEmailMailboxResolveRecipientsRequest","features":[24]},{"name":"IEmailMailboxResolveRecipientsRequestEventArgs","features":[24]},{"name":"IEmailMailboxServerSearchReadBatchRequest","features":[24]},{"name":"IEmailMailboxServerSearchReadBatchRequestEventArgs","features":[24]},{"name":"IEmailMailboxSetAutoReplySettingsRequest","features":[24]},{"name":"IEmailMailboxSetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"IEmailMailboxSyncManagerSyncRequest","features":[24]},{"name":"IEmailMailboxSyncManagerSyncRequestEventArgs","features":[24]},{"name":"IEmailMailboxUpdateMeetingResponseRequest","features":[24]},{"name":"IEmailMailboxUpdateMeetingResponseRequestEventArgs","features":[24]},{"name":"IEmailMailboxValidateCertificatesRequest","features":[24]},{"name":"IEmailMailboxValidateCertificatesRequestEventArgs","features":[24]}],"26":[{"name":"ExtendedExecutionReason","features":[25]},{"name":"ExtendedExecutionResult","features":[25]},{"name":"ExtendedExecutionRevokedEventArgs","features":[25]},{"name":"ExtendedExecutionRevokedReason","features":[25]},{"name":"ExtendedExecutionSession","features":[25]},{"name":"IExtendedExecutionRevokedEventArgs","features":[25]},{"name":"IExtendedExecutionSession","features":[25]}],"27":[{"name":"ExtendedExecutionForegroundReason","features":[26]},{"name":"ExtendedExecutionForegroundResult","features":[26]},{"name":"ExtendedExecutionForegroundRevokedEventArgs","features":[26]},{"name":"ExtendedExecutionForegroundRevokedReason","features":[26]},{"name":"ExtendedExecutionForegroundSession","features":[26]},{"name":"IExtendedExecutionForegroundRevokedEventArgs","features":[26]},{"name":"IExtendedExecutionForegroundSession","features":[26]}],"28":[{"name":"HolographicKeyboard","features":[27]},{"name":"IHolographicKeyboard","features":[27]},{"name":"IHolographicKeyboardStatics","features":[27]}],"29":[{"name":"ILockApplicationHost","features":[28]},{"name":"ILockApplicationHostStatics","features":[28]},{"name":"ILockScreenBadge","features":[28]},{"name":"ILockScreenInfo","features":[28]},{"name":"ILockScreenUnlockingDeferral","features":[28]},{"name":"ILockScreenUnlockingEventArgs","features":[28]},{"name":"LockApplicationHost","features":[28]},{"name":"LockScreenBadge","features":[28]},{"name":"LockScreenInfo","features":[28]},{"name":"LockScreenUnlockingDeferral","features":[28]},{"name":"LockScreenUnlockingEventArgs","features":[28]}],"30":[{"name":"IPaymentAddress","features":[29]},{"name":"IPaymentCanMakePaymentResult","features":[29]},{"name":"IPaymentCanMakePaymentResultFactory","features":[29]},{"name":"IPaymentCurrencyAmount","features":[29]},{"name":"IPaymentCurrencyAmountFactory","features":[29]},{"name":"IPaymentDetails","features":[29]},{"name":"IPaymentDetailsFactory","features":[29]},{"name":"IPaymentDetailsModifier","features":[29]},{"name":"IPaymentDetailsModifierFactory","features":[29]},{"name":"IPaymentItem","features":[29]},{"name":"IPaymentItemFactory","features":[29]},{"name":"IPaymentMediator","features":[29]},{"name":"IPaymentMediator2","features":[29]},{"name":"IPaymentMerchantInfo","features":[29]},{"name":"IPaymentMerchantInfoFactory","features":[29]},{"name":"IPaymentMethodData","features":[29]},{"name":"IPaymentMethodDataFactory","features":[29]},{"name":"IPaymentOptions","features":[29]},{"name":"IPaymentRequest","features":[29]},{"name":"IPaymentRequest2","features":[29]},{"name":"IPaymentRequestChangedArgs","features":[29]},{"name":"IPaymentRequestChangedResult","features":[29]},{"name":"IPaymentRequestChangedResultFactory","features":[29]},{"name":"IPaymentRequestFactory","features":[29]},{"name":"IPaymentRequestFactory2","features":[29]},{"name":"IPaymentRequestSubmitResult","features":[29]},{"name":"IPaymentResponse","features":[29]},{"name":"IPaymentShippingOption","features":[29]},{"name":"IPaymentShippingOptionFactory","features":[29]},{"name":"IPaymentToken","features":[29]},{"name":"IPaymentTokenFactory","features":[29]},{"name":"PaymentAddress","features":[29]},{"name":"PaymentCanMakePaymentResult","features":[29]},{"name":"PaymentCanMakePaymentResultStatus","features":[29]},{"name":"PaymentCurrencyAmount","features":[29]},{"name":"PaymentDetails","features":[29]},{"name":"PaymentDetailsModifier","features":[29]},{"name":"PaymentItem","features":[29]},{"name":"PaymentMediator","features":[29]},{"name":"PaymentMerchantInfo","features":[29]},{"name":"PaymentMethodData","features":[29]},{"name":"PaymentOptionPresence","features":[29]},{"name":"PaymentOptions","features":[29]},{"name":"PaymentRequest","features":[29]},{"name":"PaymentRequestChangeKind","features":[29]},{"name":"PaymentRequestChangedArgs","features":[29]},{"name":"PaymentRequestChangedHandler","features":[29]},{"name":"PaymentRequestChangedResult","features":[29]},{"name":"PaymentRequestCompletionStatus","features":[29]},{"name":"PaymentRequestStatus","features":[29]},{"name":"PaymentRequestSubmitResult","features":[29]},{"name":"PaymentResponse","features":[29]},{"name":"PaymentShippingOption","features":[29]},{"name":"PaymentShippingType","features":[29]},{"name":"PaymentToken","features":[29]}],"31":[{"name":"IPaymentAppCanMakePaymentTriggerDetails","features":[30]},{"name":"IPaymentAppManager","features":[30]},{"name":"IPaymentAppManagerStatics","features":[30]},{"name":"IPaymentTransaction","features":[30]},{"name":"IPaymentTransactionAcceptResult","features":[30]},{"name":"IPaymentTransactionStatics","features":[30]},{"name":"PaymentAppCanMakePaymentTriggerDetails","features":[30]},{"name":"PaymentAppManager","features":[30]},{"name":"PaymentTransaction","features":[30]},{"name":"PaymentTransactionAcceptResult","features":[30]}],"32":[{"name":"HolographicApplicationPreview","features":[31]},{"name":"HolographicKeyboardPlacementOverridePreview","features":[31]},{"name":"IHolographicApplicationPreviewStatics","features":[31]},{"name":"IHolographicKeyboardPlacementOverridePreview","features":[31]},{"name":"IHolographicKeyboardPlacementOverridePreviewStatics","features":[31]}],"33":[{"name":"IInkWorkspaceHostedAppManager","features":[32]},{"name":"IInkWorkspaceHostedAppManagerStatics","features":[32]},{"name":"InkWorkspaceHostedAppManager","features":[32]},{"name":"PreviewInkWorkspaceContract","features":[32]}],"34":[{"name":"INotePlacementChangedPreviewEventArgs","features":[33]},{"name":"INoteVisibilityChangedPreviewEventArgs","features":[33]},{"name":"INotesWindowManagerPreview","features":[33]},{"name":"INotesWindowManagerPreview2","features":[33]},{"name":"INotesWindowManagerPreviewShowNoteOptions","features":[33]},{"name":"INotesWindowManagerPreviewStatics","features":[33]},{"name":"NotePlacementChangedPreviewEventArgs","features":[33]},{"name":"NoteVisibilityChangedPreviewEventArgs","features":[33]},{"name":"NotesWindowManagerPreview","features":[33]},{"name":"NotesWindowManagerPreviewShowNoteOptions","features":[33]},{"name":"PreviewNotesContract","features":[33]}],"35":[{"name":"IResourceLoader","features":[34]},{"name":"IResourceLoader2","features":[34]},{"name":"IResourceLoaderFactory","features":[34]},{"name":"IResourceLoaderStatics","features":[34]},{"name":"IResourceLoaderStatics2","features":[34]},{"name":"IResourceLoaderStatics3","features":[34]},{"name":"IResourceLoaderStatics4","features":[34]},{"name":"ResourceLoader","features":[34]}],"36":[{"name":"INamedResource","features":[35]},{"name":"IResourceCandidate","features":[35]},{"name":"IResourceCandidate2","features":[35]},{"name":"IResourceCandidate3","features":[35]},{"name":"IResourceContext","features":[35]},{"name":"IResourceContextStatics","features":[35]},{"name":"IResourceContextStatics2","features":[35]},{"name":"IResourceContextStatics3","features":[35]},{"name":"IResourceContextStatics4","features":[35]},{"name":"IResourceManager","features":[35]},{"name":"IResourceManager2","features":[35]},{"name":"IResourceManagerStatics","features":[35]},{"name":"IResourceMap","features":[35]},{"name":"IResourceQualifier","features":[35]},{"name":"NamedResource","features":[35]},{"name":"ResourceCandidate","features":[35]},{"name":"ResourceCandidateKind","features":[35]},{"name":"ResourceCandidateVectorView","features":[35,36]},{"name":"ResourceContext","features":[35]},{"name":"ResourceContextLanguagesVectorView","features":[35,36]},{"name":"ResourceLayoutInfo","features":[35]},{"name":"ResourceManager","features":[35]},{"name":"ResourceMap","features":[35]},{"name":"ResourceMapIterator","features":[35,36]},{"name":"ResourceMapMapView","features":[35,36]},{"name":"ResourceMapMapViewIterator","features":[35,36]},{"name":"ResourceQualifier","features":[35]},{"name":"ResourceQualifierMapView","features":[35,36]},{"name":"ResourceQualifierObservableMap","features":[35,36]},{"name":"ResourceQualifierPersistence","features":[35]},{"name":"ResourceQualifierVectorView","features":[35,36]}],"37":[{"name":"IIndexedResourceCandidate","features":[37]},{"name":"IIndexedResourceQualifier","features":[37]},{"name":"IResourceIndexer","features":[37]},{"name":"IResourceIndexerFactory","features":[37]},{"name":"IResourceIndexerFactory2","features":[37]},{"name":"IndexedResourceCandidate","features":[37]},{"name":"IndexedResourceQualifier","features":[37]},{"name":"IndexedResourceType","features":[37]},{"name":"ResourceIndexer","features":[37]},{"name":"ResourceIndexerContract","features":[37]}],"38":[{"name":"ILocalContentSuggestionSettings","features":[38]},{"name":"ISearchPane","features":[38]},{"name":"ISearchPaneQueryChangedEventArgs","features":[38]},{"name":"ISearchPaneQueryLinguisticDetails","features":[38]},{"name":"ISearchPaneQuerySubmittedEventArgs","features":[38]},{"name":"ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails","features":[38]},{"name":"ISearchPaneResultSuggestionChosenEventArgs","features":[38]},{"name":"ISearchPaneStatics","features":[38]},{"name":"ISearchPaneStaticsWithHideThisApplication","features":[38]},{"name":"ISearchPaneSuggestionsRequest","features":[38]},{"name":"ISearchPaneSuggestionsRequestDeferral","features":[38]},{"name":"ISearchPaneSuggestionsRequestedEventArgs","features":[38]},{"name":"ISearchPaneVisibilityChangedEventArgs","features":[38]},{"name":"ISearchQueryLinguisticDetails","features":[38]},{"name":"ISearchQueryLinguisticDetailsFactory","features":[38]},{"name":"ISearchSuggestionCollection","features":[38]},{"name":"ISearchSuggestionsRequest","features":[38]},{"name":"ISearchSuggestionsRequestDeferral","features":[38]},{"name":"LocalContentSuggestionSettings","features":[38]},{"name":"SearchContract","features":[38]},{"name":"SearchPane","features":[38]},{"name":"SearchPaneQueryChangedEventArgs","features":[38]},{"name":"SearchPaneQueryLinguisticDetails","features":[38]},{"name":"SearchPaneQuerySubmittedEventArgs","features":[38]},{"name":"SearchPaneResultSuggestionChosenEventArgs","features":[38]},{"name":"SearchPaneSuggestionsRequest","features":[38]},{"name":"SearchPaneSuggestionsRequestDeferral","features":[38]},{"name":"SearchPaneSuggestionsRequestedEventArgs","features":[38]},{"name":"SearchPaneVisibilityChangedEventArgs","features":[38]},{"name":"SearchQueryLinguisticDetails","features":[38]},{"name":"SearchSuggestionCollection","features":[38]},{"name":"SearchSuggestionsRequest","features":[38]},{"name":"SearchSuggestionsRequestDeferral","features":[38]}],"39":[{"name":"IRequestingFocusOnKeyboardInputEventArgs","features":[39]},{"name":"ISearchSuggestion","features":[39]},{"name":"ISearchSuggestionManager","features":[39]},{"name":"ISearchSuggestionsRequestedEventArgs","features":[39]},{"name":"RequestingFocusOnKeyboardInputEventArgs","features":[39]},{"name":"SearchCoreContract","features":[39]},{"name":"SearchSuggestion","features":[39]},{"name":"SearchSuggestionKind","features":[39]},{"name":"SearchSuggestionManager","features":[39]},{"name":"SearchSuggestionsRequestedEventArgs","features":[39]}],"46":[{"name":"IUserActivity","features":[40]},{"name":"IUserActivity2","features":[40]},{"name":"IUserActivity3","features":[40]},{"name":"IUserActivityAttribution","features":[40]},{"name":"IUserActivityAttributionFactory","features":[40]},{"name":"IUserActivityChannel","features":[40]},{"name":"IUserActivityChannel2","features":[40]},{"name":"IUserActivityChannelStatics","features":[40]},{"name":"IUserActivityChannelStatics2","features":[40]},{"name":"IUserActivityChannelStatics3","features":[40]},{"name":"IUserActivityContentInfo","features":[40]},{"name":"IUserActivityContentInfoStatics","features":[40]},{"name":"IUserActivityFactory","features":[40]},{"name":"IUserActivityRequest","features":[40]},{"name":"IUserActivityRequestManager","features":[40]},{"name":"IUserActivityRequestManagerStatics","features":[40]},{"name":"IUserActivityRequestedEventArgs","features":[40]},{"name":"IUserActivitySession","features":[40]},{"name":"IUserActivitySessionHistoryItem","features":[40]},{"name":"IUserActivityStatics","features":[40]},{"name":"IUserActivityVisualElements","features":[40]},{"name":"IUserActivityVisualElements2","features":[40]},{"name":"UserActivity","features":[40]},{"name":"UserActivityAttribution","features":[40]},{"name":"UserActivityChannel","features":[40]},{"name":"UserActivityContentInfo","features":[40]},{"name":"UserActivityRequest","features":[40]},{"name":"UserActivityRequestManager","features":[40]},{"name":"UserActivityRequestedEventArgs","features":[40]},{"name":"UserActivitySession","features":[40]},{"name":"UserActivitySessionHistoryItem","features":[40]},{"name":"UserActivityState","features":[40]},{"name":"UserActivityVisualElements","features":[40]}],"47":[{"name":"CoreUserActivityManager","features":[41]},{"name":"ICoreUserActivityManagerStatics","features":[41]}],"48":[{"name":"IUserDataAccount","features":[42]},{"name":"IUserDataAccount2","features":[42]},{"name":"IUserDataAccount3","features":[42]},{"name":"IUserDataAccount4","features":[42]},{"name":"IUserDataAccountManagerForUser","features":[42]},{"name":"IUserDataAccountManagerStatics","features":[42]},{"name":"IUserDataAccountManagerStatics2","features":[42]},{"name":"IUserDataAccountStore","features":[42]},{"name":"IUserDataAccountStore2","features":[42]},{"name":"IUserDataAccountStore3","features":[42]},{"name":"IUserDataAccountStoreChangedEventArgs","features":[42]},{"name":"UserDataAccount","features":[42]},{"name":"UserDataAccountContentKinds","features":[42]},{"name":"UserDataAccountManager","features":[42]},{"name":"UserDataAccountManagerForUser","features":[42]},{"name":"UserDataAccountOtherAppReadAccess","features":[42]},{"name":"UserDataAccountStore","features":[42]},{"name":"UserDataAccountStoreAccessType","features":[42]},{"name":"UserDataAccountStoreChangedEventArgs","features":[42]}],"49":[{"name":"IUserDataAccountPartnerAccountInfo","features":[43]},{"name":"IUserDataAccountProviderAddAccountOperation","features":[43]},{"name":"IUserDataAccountProviderOperation","features":[43]},{"name":"IUserDataAccountProviderResolveErrorsOperation","features":[43]},{"name":"IUserDataAccountProviderSettingsOperation","features":[43]},{"name":"UserDataAccountPartnerAccountInfo","features":[43]},{"name":"UserDataAccountProviderAddAccountOperation","features":[43]},{"name":"UserDataAccountProviderOperationKind","features":[43]},{"name":"UserDataAccountProviderPartnerAccountKind","features":[43]},{"name":"UserDataAccountProviderResolveErrorsOperation","features":[43]},{"name":"UserDataAccountProviderSettingsOperation","features":[43]}],"50":[{"name":"DeviceAccountAuthenticationType","features":[44]},{"name":"DeviceAccountConfiguration","features":[44]},{"name":"DeviceAccountIconId","features":[44]},{"name":"DeviceAccountMailAgeFilter","features":[44]},{"name":"DeviceAccountServerType","features":[44]},{"name":"DeviceAccountSyncScheduleKind","features":[44]},{"name":"IDeviceAccountConfiguration","features":[44]},{"name":"IDeviceAccountConfiguration2","features":[44]},{"name":"IUserDataAccountSystemAccessManagerStatics","features":[44]},{"name":"IUserDataAccountSystemAccessManagerStatics2","features":[44]},{"name":"UserDataAccountSystemAccessManager","features":[44]}],"51":[{"name":"IUserDataTask","features":[45]},{"name":"IUserDataTaskBatch","features":[45]},{"name":"IUserDataTaskList","features":[45]},{"name":"IUserDataTaskListLimitedWriteOperations","features":[45]},{"name":"IUserDataTaskListSyncManager","features":[45]},{"name":"IUserDataTaskManager","features":[45]},{"name":"IUserDataTaskManagerStatics","features":[45]},{"name":"IUserDataTaskQueryOptions","features":[45]},{"name":"IUserDataTaskReader","features":[45]},{"name":"IUserDataTaskRecurrenceProperties","features":[45]},{"name":"IUserDataTaskRegenerationProperties","features":[45]},{"name":"IUserDataTaskStore","features":[45]},{"name":"UserDataTask","features":[45]},{"name":"UserDataTaskBatch","features":[45]},{"name":"UserDataTaskDaysOfWeek","features":[45]},{"name":"UserDataTaskDetailsKind","features":[45]},{"name":"UserDataTaskKind","features":[45]},{"name":"UserDataTaskList","features":[45]},{"name":"UserDataTaskListLimitedWriteOperations","features":[45]},{"name":"UserDataTaskListOtherAppReadAccess","features":[45]},{"name":"UserDataTaskListOtherAppWriteAccess","features":[45]},{"name":"UserDataTaskListSyncManager","features":[45]},{"name":"UserDataTaskListSyncStatus","features":[45]},{"name":"UserDataTaskManager","features":[45]},{"name":"UserDataTaskPriority","features":[45]},{"name":"UserDataTaskQueryKind","features":[45]},{"name":"UserDataTaskQueryOptions","features":[45]},{"name":"UserDataTaskQuerySortProperty","features":[45]},{"name":"UserDataTaskReader","features":[45]},{"name":"UserDataTaskRecurrenceProperties","features":[45]},{"name":"UserDataTaskRecurrenceUnit","features":[45]},{"name":"UserDataTaskRegenerationProperties","features":[45]},{"name":"UserDataTaskRegenerationUnit","features":[45]},{"name":"UserDataTaskSensitivity","features":[45]},{"name":"UserDataTaskStore","features":[45]},{"name":"UserDataTaskStoreAccessType","features":[45]},{"name":"UserDataTaskWeekOfMonth","features":[45]}],"52":[{"name":"IUserDataTaskDataProviderConnection","features":[46]},{"name":"IUserDataTaskDataProviderTriggerDetails","features":[46]},{"name":"IUserDataTaskListCompleteTaskRequest","features":[46]},{"name":"IUserDataTaskListCompleteTaskRequestEventArgs","features":[46]},{"name":"IUserDataTaskListCreateOrUpdateTaskRequest","features":[46]},{"name":"IUserDataTaskListCreateOrUpdateTaskRequestEventArgs","features":[46]},{"name":"IUserDataTaskListDeleteTaskRequest","features":[46]},{"name":"IUserDataTaskListDeleteTaskRequestEventArgs","features":[46]},{"name":"IUserDataTaskListSkipOccurrenceRequest","features":[46]},{"name":"IUserDataTaskListSkipOccurrenceRequestEventArgs","features":[46]},{"name":"IUserDataTaskListSyncManagerSyncRequest","features":[46]},{"name":"IUserDataTaskListSyncManagerSyncRequestEventArgs","features":[46]},{"name":"UserDataTaskDataProviderConnection","features":[46]},{"name":"UserDataTaskDataProviderTriggerDetails","features":[46]},{"name":"UserDataTaskListCompleteTaskRequest","features":[46]},{"name":"UserDataTaskListCompleteTaskRequestEventArgs","features":[46]},{"name":"UserDataTaskListCreateOrUpdateTaskRequest","features":[46]},{"name":"UserDataTaskListCreateOrUpdateTaskRequestEventArgs","features":[46]},{"name":"UserDataTaskListDeleteTaskRequest","features":[46]},{"name":"UserDataTaskListDeleteTaskRequestEventArgs","features":[46]},{"name":"UserDataTaskListSkipOccurrenceRequest","features":[46]},{"name":"UserDataTaskListSkipOccurrenceRequestEventArgs","features":[46]},{"name":"UserDataTaskListSyncManagerSyncRequest","features":[46]},{"name":"UserDataTaskListSyncManagerSyncRequestEventArgs","features":[46]}],"53":[{"name":"IVoiceCommand","features":[47]},{"name":"IVoiceCommandCompletedEventArgs","features":[47]},{"name":"IVoiceCommandConfirmationResult","features":[47]},{"name":"IVoiceCommandContentTile","features":[47]},{"name":"IVoiceCommandDefinition","features":[47]},{"name":"IVoiceCommandDefinitionManagerStatics","features":[47]},{"name":"IVoiceCommandDisambiguationResult","features":[47]},{"name":"IVoiceCommandResponse","features":[47]},{"name":"IVoiceCommandResponseStatics","features":[47]},{"name":"IVoiceCommandServiceConnection","features":[47]},{"name":"IVoiceCommandServiceConnectionStatics","features":[47]},{"name":"IVoiceCommandUserMessage","features":[47]},{"name":"VoiceCommand","features":[47]},{"name":"VoiceCommandCompletedEventArgs","features":[47]},{"name":"VoiceCommandCompletionReason","features":[47]},{"name":"VoiceCommandConfirmationResult","features":[47]},{"name":"VoiceCommandContentTile","features":[47]},{"name":"VoiceCommandContentTileType","features":[47]},{"name":"VoiceCommandDefinition","features":[47]},{"name":"VoiceCommandDefinitionManager","features":[47]},{"name":"VoiceCommandDisambiguationResult","features":[47]},{"name":"VoiceCommandResponse","features":[47]},{"name":"VoiceCommandServiceConnection","features":[47]},{"name":"VoiceCommandUserMessage","features":[47]}],"54":[{"name":"IWalletBarcode","features":[48]},{"name":"IWalletBarcodeFactory","features":[48]},{"name":"IWalletItem","features":[48]},{"name":"IWalletItemCustomProperty","features":[48]},{"name":"IWalletItemCustomPropertyFactory","features":[48]},{"name":"IWalletItemFactory","features":[48]},{"name":"IWalletItemStore","features":[48]},{"name":"IWalletItemStore2","features":[48]},{"name":"IWalletManagerStatics","features":[48]},{"name":"IWalletRelevantLocation","features":[48]},{"name":"IWalletTransaction","features":[48]},{"name":"IWalletVerb","features":[48]},{"name":"IWalletVerbFactory","features":[48]},{"name":"WalletActionKind","features":[48]},{"name":"WalletBarcode","features":[48]},{"name":"WalletBarcodeSymbology","features":[48]},{"name":"WalletContract","features":[48]},{"name":"WalletDetailViewPosition","features":[48]},{"name":"WalletItem","features":[48]},{"name":"WalletItemCustomProperty","features":[48]},{"name":"WalletItemKind","features":[48]},{"name":"WalletItemStore","features":[48]},{"name":"WalletManager","features":[48]},{"name":"WalletRelevantLocation","features":[48]},{"name":"WalletSummaryViewPosition","features":[48]},{"name":"WalletTransaction","features":[48]},{"name":"WalletVerb","features":[48]}],"55":[{"name":"IWalletItemSystemStore","features":[49]},{"name":"IWalletItemSystemStore2","features":[49]},{"name":"IWalletManagerSystemStatics","features":[49]},{"name":"WalletItemAppAssociation","features":[49]},{"name":"WalletItemSystemStore","features":[49]},{"name":"WalletManagerSystem","features":[49]}],"56":[{"name":"HtmlUtilities","features":[50]},{"name":"IHtmlUtilities","features":[50]}],"57":[{"name":"IJsonArray","features":[51]},{"name":"IJsonArrayStatics","features":[51]},{"name":"IJsonErrorStatics2","features":[51]},{"name":"IJsonObject","features":[51]},{"name":"IJsonObjectStatics","features":[51]},{"name":"IJsonObjectWithDefaultValues","features":[51]},{"name":"IJsonValue","features":[51]},{"name":"IJsonValueStatics","features":[51]},{"name":"IJsonValueStatics2","features":[51]},{"name":"JsonArray","features":[51]},{"name":"JsonError","features":[51]},{"name":"JsonErrorStatus","features":[51]},{"name":"JsonObject","features":[51]},{"name":"JsonValue","features":[51]},{"name":"JsonValueType","features":[51]}],"58":[{"name":"IPdfDocument","features":[52]},{"name":"IPdfDocumentStatics","features":[52]},{"name":"IPdfPage","features":[52]},{"name":"IPdfPageDimensions","features":[52]},{"name":"IPdfPageRenderOptions","features":[52]},{"name":"PdfDocument","features":[52]},{"name":"PdfPage","features":[52]},{"name":"PdfPageDimensions","features":[52]},{"name":"PdfPageRenderOptions","features":[52]},{"name":"PdfPageRotation","features":[52]}],"59":[{"name":"AlternateNormalizationFormat","features":[53]},{"name":"AlternateWordForm","features":[53]},{"name":"IAlternateWordForm","features":[53]},{"name":"ISelectableWordSegment","features":[53]},{"name":"ISelectableWordsSegmenter","features":[53]},{"name":"ISelectableWordsSegmenterFactory","features":[53]},{"name":"ISemanticTextQuery","features":[53]},{"name":"ISemanticTextQueryFactory","features":[53]},{"name":"ITextConversionGenerator","features":[53]},{"name":"ITextConversionGeneratorFactory","features":[53]},{"name":"ITextPhoneme","features":[53]},{"name":"ITextPredictionGenerator","features":[53]},{"name":"ITextPredictionGenerator2","features":[53]},{"name":"ITextPredictionGeneratorFactory","features":[53]},{"name":"ITextReverseConversionGenerator","features":[53]},{"name":"ITextReverseConversionGenerator2","features":[53]},{"name":"ITextReverseConversionGeneratorFactory","features":[53]},{"name":"IUnicodeCharactersStatics","features":[53]},{"name":"IWordSegment","features":[53]},{"name":"IWordsSegmenter","features":[53]},{"name":"IWordsSegmenterFactory","features":[53]},{"name":"SelectableWordSegment","features":[53]},{"name":"SelectableWordSegmentsTokenizingHandler","features":[53,36]},{"name":"SelectableWordsSegmenter","features":[53]},{"name":"SemanticTextQuery","features":[53]},{"name":"TextConversionGenerator","features":[53]},{"name":"TextPhoneme","features":[53]},{"name":"TextPredictionGenerator","features":[53]},{"name":"TextPredictionOptions","features":[53]},{"name":"TextReverseConversionGenerator","features":[53]},{"name":"TextSegment","features":[53]},{"name":"UnicodeCharacters","features":[53]},{"name":"UnicodeGeneralCategory","features":[53]},{"name":"UnicodeNumericType","features":[53]},{"name":"WordSegment","features":[53]},{"name":"WordSegmentsTokenizingHandler","features":[53,36]},{"name":"WordsSegmenter","features":[53]}],"60":[{"name":"DtdEntity","features":[54]},{"name":"DtdNotation","features":[54]},{"name":"IDtdEntity","features":[54]},{"name":"IDtdNotation","features":[54]},{"name":"IXmlAttribute","features":[54]},{"name":"IXmlCDataSection","features":[54]},{"name":"IXmlCharacterData","features":[54]},{"name":"IXmlComment","features":[54]},{"name":"IXmlDocument","features":[54]},{"name":"IXmlDocumentFragment","features":[54]},{"name":"IXmlDocumentIO","features":[54]},{"name":"IXmlDocumentIO2","features":[54]},{"name":"IXmlDocumentStatics","features":[54]},{"name":"IXmlDocumentType","features":[54]},{"name":"IXmlDomImplementation","features":[54]},{"name":"IXmlElement","features":[54]},{"name":"IXmlEntityReference","features":[54]},{"name":"IXmlLoadSettings","features":[54]},{"name":"IXmlNamedNodeMap","features":[54]},{"name":"IXmlNode","features":[54]},{"name":"IXmlNodeList","features":[54]},{"name":"IXmlNodeSelector","features":[54]},{"name":"IXmlNodeSerializer","features":[54]},{"name":"IXmlProcessingInstruction","features":[54]},{"name":"IXmlText","features":[54]},{"name":"NodeType","features":[54]},{"name":"XmlAttribute","features":[54]},{"name":"XmlCDataSection","features":[54]},{"name":"XmlComment","features":[54]},{"name":"XmlDocument","features":[54]},{"name":"XmlDocumentFragment","features":[54]},{"name":"XmlDocumentType","features":[54]},{"name":"XmlDomImplementation","features":[54]},{"name":"XmlElement","features":[54]},{"name":"XmlEntityReference","features":[54]},{"name":"XmlLoadSettings","features":[54]},{"name":"XmlNamedNodeMap","features":[54]},{"name":"XmlNodeList","features":[54]},{"name":"XmlProcessingInstruction","features":[54]},{"name":"XmlText","features":[54]}],"61":[{"name":"IXsltProcessor","features":[55]},{"name":"IXsltProcessor2","features":[55]},{"name":"IXsltProcessorFactory","features":[55]},{"name":"XsltProcessor","features":[55]}],"62":[{"name":"DevicesLowLevelContract","features":[56]},{"name":"ILowLevelDevicesAggregateProvider","features":[56]},{"name":"ILowLevelDevicesAggregateProviderFactory","features":[56]},{"name":"ILowLevelDevicesController","features":[56]},{"name":"ILowLevelDevicesControllerStatics","features":[56]},{"name":"LowLevelDevicesAggregateProvider","features":[56]},{"name":"LowLevelDevicesController","features":[56]}],"63":[{"name":"AdcChannel","features":[57]},{"name":"AdcChannelMode","features":[57]},{"name":"AdcController","features":[57]},{"name":"IAdcChannel","features":[57]},{"name":"IAdcController","features":[57]},{"name":"IAdcControllerStatics","features":[57]},{"name":"IAdcControllerStatics2","features":[57]}],"64":[{"name":"IAdcControllerProvider","features":[58]},{"name":"IAdcProvider","features":[58]},{"name":"ProviderAdcChannelMode","features":[58]}],"66":[{"name":"DeviceServicingDetails","features":[59]},{"name":"DeviceUseDetails","features":[59]},{"name":"IDeviceServicingDetails","features":[59]},{"name":"IDeviceUseDetails","features":[59]}],"67":[{"name":"BluetoothAdapter","features":[60]},{"name":"BluetoothAddressType","features":[60]},{"name":"BluetoothCacheMode","features":[60]},{"name":"BluetoothClassOfDevice","features":[60]},{"name":"BluetoothConnectionStatus","features":[60]},{"name":"BluetoothDevice","features":[60]},{"name":"BluetoothDeviceId","features":[60]},{"name":"BluetoothError","features":[60]},{"name":"BluetoothLEAppearance","features":[60]},{"name":"BluetoothLEAppearanceCategories","features":[60]},{"name":"BluetoothLEAppearanceSubcategories","features":[60]},{"name":"BluetoothLEConnectionParameters","features":[60]},{"name":"BluetoothLEConnectionPhy","features":[60]},{"name":"BluetoothLEConnectionPhyInfo","features":[60]},{"name":"BluetoothLEDevice","features":[60]},{"name":"BluetoothLEPreferredConnectionParameters","features":[60]},{"name":"BluetoothLEPreferredConnectionParametersRequest","features":[60]},{"name":"BluetoothLEPreferredConnectionParametersRequestStatus","features":[60]},{"name":"BluetoothMajorClass","features":[60]},{"name":"BluetoothMinorClass","features":[60]},{"name":"BluetoothServiceCapabilities","features":[60]},{"name":"BluetoothSignalStrengthFilter","features":[60]},{"name":"BluetoothUuidHelper","features":[60]},{"name":"IBluetoothAdapter","features":[60]},{"name":"IBluetoothAdapter2","features":[60]},{"name":"IBluetoothAdapter3","features":[60]},{"name":"IBluetoothAdapterStatics","features":[60]},{"name":"IBluetoothClassOfDevice","features":[60]},{"name":"IBluetoothClassOfDeviceStatics","features":[60]},{"name":"IBluetoothDevice","features":[60]},{"name":"IBluetoothDevice2","features":[60]},{"name":"IBluetoothDevice3","features":[60]},{"name":"IBluetoothDevice4","features":[60]},{"name":"IBluetoothDevice5","features":[60]},{"name":"IBluetoothDeviceId","features":[60]},{"name":"IBluetoothDeviceIdStatics","features":[60]},{"name":"IBluetoothDeviceStatics","features":[60]},{"name":"IBluetoothDeviceStatics2","features":[60]},{"name":"IBluetoothLEAppearance","features":[60]},{"name":"IBluetoothLEAppearanceCategoriesStatics","features":[60]},{"name":"IBluetoothLEAppearanceStatics","features":[60]},{"name":"IBluetoothLEAppearanceSubcategoriesStatics","features":[60]},{"name":"IBluetoothLEConnectionParameters","features":[60]},{"name":"IBluetoothLEConnectionPhy","features":[60]},{"name":"IBluetoothLEConnectionPhyInfo","features":[60]},{"name":"IBluetoothLEDevice","features":[60]},{"name":"IBluetoothLEDevice2","features":[60]},{"name":"IBluetoothLEDevice3","features":[60]},{"name":"IBluetoothLEDevice4","features":[60]},{"name":"IBluetoothLEDevice5","features":[60]},{"name":"IBluetoothLEDevice6","features":[60]},{"name":"IBluetoothLEDeviceStatics","features":[60]},{"name":"IBluetoothLEDeviceStatics2","features":[60]},{"name":"IBluetoothLEPreferredConnectionParameters","features":[60]},{"name":"IBluetoothLEPreferredConnectionParametersRequest","features":[60]},{"name":"IBluetoothLEPreferredConnectionParametersStatics","features":[60]},{"name":"IBluetoothSignalStrengthFilter","features":[60]},{"name":"IBluetoothUuidHelperStatics","features":[60]}],"68":[{"name":"BluetoothLEAdvertisement","features":[61]},{"name":"BluetoothLEAdvertisementBytePattern","features":[61]},{"name":"BluetoothLEAdvertisementDataSection","features":[61]},{"name":"BluetoothLEAdvertisementDataTypes","features":[61]},{"name":"BluetoothLEAdvertisementFilter","features":[61]},{"name":"BluetoothLEAdvertisementFlags","features":[61]},{"name":"BluetoothLEAdvertisementPublisher","features":[61]},{"name":"BluetoothLEAdvertisementPublisherStatus","features":[61]},{"name":"BluetoothLEAdvertisementPublisherStatusChangedEventArgs","features":[61]},{"name":"BluetoothLEAdvertisementReceivedEventArgs","features":[61]},{"name":"BluetoothLEAdvertisementType","features":[61]},{"name":"BluetoothLEAdvertisementWatcher","features":[61]},{"name":"BluetoothLEAdvertisementWatcherStatus","features":[61]},{"name":"BluetoothLEAdvertisementWatcherStoppedEventArgs","features":[61]},{"name":"BluetoothLEManufacturerData","features":[61]},{"name":"BluetoothLEScanningMode","features":[61]},{"name":"IBluetoothLEAdvertisement","features":[61]},{"name":"IBluetoothLEAdvertisementBytePattern","features":[61]},{"name":"IBluetoothLEAdvertisementBytePatternFactory","features":[61]},{"name":"IBluetoothLEAdvertisementDataSection","features":[61]},{"name":"IBluetoothLEAdvertisementDataSectionFactory","features":[61]},{"name":"IBluetoothLEAdvertisementDataTypesStatics","features":[61]},{"name":"IBluetoothLEAdvertisementFilter","features":[61]},{"name":"IBluetoothLEAdvertisementPublisher","features":[61]},{"name":"IBluetoothLEAdvertisementPublisher2","features":[61]},{"name":"IBluetoothLEAdvertisementPublisherFactory","features":[61]},{"name":"IBluetoothLEAdvertisementPublisherStatusChangedEventArgs","features":[61]},{"name":"IBluetoothLEAdvertisementPublisherStatusChangedEventArgs2","features":[61]},{"name":"IBluetoothLEAdvertisementReceivedEventArgs","features":[61]},{"name":"IBluetoothLEAdvertisementReceivedEventArgs2","features":[61]},{"name":"IBluetoothLEAdvertisementWatcher","features":[61]},{"name":"IBluetoothLEAdvertisementWatcher2","features":[61]},{"name":"IBluetoothLEAdvertisementWatcherFactory","features":[61]},{"name":"IBluetoothLEAdvertisementWatcherStoppedEventArgs","features":[61]},{"name":"IBluetoothLEManufacturerData","features":[61]},{"name":"IBluetoothLEManufacturerDataFactory","features":[61]}],"69":[{"name":"BluetoothEventTriggeringMode","features":[62]},{"name":"BluetoothLEAdvertisementPublisherTriggerDetails","features":[62]},{"name":"BluetoothLEAdvertisementWatcherTriggerDetails","features":[62]},{"name":"GattCharacteristicNotificationTriggerDetails","features":[62]},{"name":"GattServiceProviderConnection","features":[62]},{"name":"GattServiceProviderTriggerDetails","features":[62]},{"name":"IBluetoothLEAdvertisementPublisherTriggerDetails","features":[62]},{"name":"IBluetoothLEAdvertisementPublisherTriggerDetails2","features":[62]},{"name":"IBluetoothLEAdvertisementWatcherTriggerDetails","features":[62]},{"name":"IGattCharacteristicNotificationTriggerDetails","features":[62]},{"name":"IGattCharacteristicNotificationTriggerDetails2","features":[62]},{"name":"IGattServiceProviderConnection","features":[62]},{"name":"IGattServiceProviderConnectionStatics","features":[62]},{"name":"IGattServiceProviderTriggerDetails","features":[62]},{"name":"IRfcommConnectionTriggerDetails","features":[62]},{"name":"IRfcommInboundConnectionInformation","features":[62]},{"name":"IRfcommOutboundConnectionInformation","features":[62]},{"name":"RfcommConnectionTriggerDetails","features":[62]},{"name":"RfcommInboundConnectionInformation","features":[62]},{"name":"RfcommOutboundConnectionInformation","features":[62]}],"70":[{"name":"GattCharacteristic","features":[63]},{"name":"GattCharacteristicProperties","features":[63]},{"name":"GattCharacteristicUuids","features":[63]},{"name":"GattCharacteristicsResult","features":[63]},{"name":"GattClientCharacteristicConfigurationDescriptorValue","features":[63]},{"name":"GattClientNotificationResult","features":[63]},{"name":"GattCommunicationStatus","features":[63]},{"name":"GattDescriptor","features":[63]},{"name":"GattDescriptorUuids","features":[63]},{"name":"GattDescriptorsResult","features":[63]},{"name":"GattDeviceService","features":[63]},{"name":"GattDeviceServicesResult","features":[63]},{"name":"GattLocalCharacteristic","features":[63]},{"name":"GattLocalCharacteristicParameters","features":[63]},{"name":"GattLocalCharacteristicResult","features":[63]},{"name":"GattLocalDescriptor","features":[63]},{"name":"GattLocalDescriptorParameters","features":[63]},{"name":"GattLocalDescriptorResult","features":[63]},{"name":"GattLocalService","features":[63]},{"name":"GattOpenStatus","features":[63]},{"name":"GattPresentationFormat","features":[63]},{"name":"GattPresentationFormatTypes","features":[63]},{"name":"GattProtectionLevel","features":[63]},{"name":"GattProtocolError","features":[63]},{"name":"GattReadClientCharacteristicConfigurationDescriptorResult","features":[63]},{"name":"GattReadRequest","features":[63]},{"name":"GattReadRequestedEventArgs","features":[63]},{"name":"GattReadResult","features":[63]},{"name":"GattReliableWriteTransaction","features":[63]},{"name":"GattRequestState","features":[63]},{"name":"GattRequestStateChangedEventArgs","features":[63]},{"name":"GattServiceProvider","features":[63]},{"name":"GattServiceProviderAdvertisementStatus","features":[63]},{"name":"GattServiceProviderAdvertisementStatusChangedEventArgs","features":[63]},{"name":"GattServiceProviderAdvertisingParameters","features":[63]},{"name":"GattServiceProviderResult","features":[63]},{"name":"GattServiceUuids","features":[63]},{"name":"GattSession","features":[63]},{"name":"GattSessionStatus","features":[63]},{"name":"GattSessionStatusChangedEventArgs","features":[63]},{"name":"GattSharingMode","features":[63]},{"name":"GattSubscribedClient","features":[63]},{"name":"GattValueChangedEventArgs","features":[63]},{"name":"GattWriteOption","features":[63]},{"name":"GattWriteRequest","features":[63]},{"name":"GattWriteRequestedEventArgs","features":[63]},{"name":"GattWriteResult","features":[63]},{"name":"IGattCharacteristic","features":[63]},{"name":"IGattCharacteristic2","features":[63]},{"name":"IGattCharacteristic3","features":[63]},{"name":"IGattCharacteristicStatics","features":[63]},{"name":"IGattCharacteristicUuidsStatics","features":[63]},{"name":"IGattCharacteristicUuidsStatics2","features":[63]},{"name":"IGattCharacteristicsResult","features":[63]},{"name":"IGattClientNotificationResult","features":[63]},{"name":"IGattClientNotificationResult2","features":[63]},{"name":"IGattDescriptor","features":[63]},{"name":"IGattDescriptor2","features":[63]},{"name":"IGattDescriptorStatics","features":[63]},{"name":"IGattDescriptorUuidsStatics","features":[63]},{"name":"IGattDescriptorsResult","features":[63]},{"name":"IGattDeviceService","features":[63]},{"name":"IGattDeviceService2","features":[63]},{"name":"IGattDeviceService3","features":[63]},{"name":"IGattDeviceServiceStatics","features":[63]},{"name":"IGattDeviceServiceStatics2","features":[63]},{"name":"IGattDeviceServicesResult","features":[63]},{"name":"IGattLocalCharacteristic","features":[63]},{"name":"IGattLocalCharacteristicParameters","features":[63]},{"name":"IGattLocalCharacteristicResult","features":[63]},{"name":"IGattLocalDescriptor","features":[63]},{"name":"IGattLocalDescriptorParameters","features":[63]},{"name":"IGattLocalDescriptorResult","features":[63]},{"name":"IGattLocalService","features":[63]},{"name":"IGattPresentationFormat","features":[63]},{"name":"IGattPresentationFormatStatics","features":[63]},{"name":"IGattPresentationFormatStatics2","features":[63]},{"name":"IGattPresentationFormatTypesStatics","features":[63]},{"name":"IGattProtocolErrorStatics","features":[63]},{"name":"IGattReadClientCharacteristicConfigurationDescriptorResult","features":[63]},{"name":"IGattReadClientCharacteristicConfigurationDescriptorResult2","features":[63]},{"name":"IGattReadRequest","features":[63]},{"name":"IGattReadRequestedEventArgs","features":[63]},{"name":"IGattReadResult","features":[63]},{"name":"IGattReadResult2","features":[63]},{"name":"IGattReliableWriteTransaction","features":[63]},{"name":"IGattReliableWriteTransaction2","features":[63]},{"name":"IGattRequestStateChangedEventArgs","features":[63]},{"name":"IGattServiceProvider","features":[63]},{"name":"IGattServiceProviderAdvertisementStatusChangedEventArgs","features":[63]},{"name":"IGattServiceProviderAdvertisingParameters","features":[63]},{"name":"IGattServiceProviderAdvertisingParameters2","features":[63]},{"name":"IGattServiceProviderResult","features":[63]},{"name":"IGattServiceProviderStatics","features":[63]},{"name":"IGattServiceUuidsStatics","features":[63]},{"name":"IGattServiceUuidsStatics2","features":[63]},{"name":"IGattSession","features":[63]},{"name":"IGattSessionStatics","features":[63]},{"name":"IGattSessionStatusChangedEventArgs","features":[63]},{"name":"IGattSubscribedClient","features":[63]},{"name":"IGattValueChangedEventArgs","features":[63]},{"name":"IGattWriteRequest","features":[63]},{"name":"IGattWriteRequestedEventArgs","features":[63]},{"name":"IGattWriteResult","features":[63]}],"71":[{"name":"IRfcommDeviceService","features":[64]},{"name":"IRfcommDeviceService2","features":[64]},{"name":"IRfcommDeviceService3","features":[64]},{"name":"IRfcommDeviceServiceStatics","features":[64]},{"name":"IRfcommDeviceServiceStatics2","features":[64]},{"name":"IRfcommDeviceServicesResult","features":[64]},{"name":"IRfcommServiceId","features":[64]},{"name":"IRfcommServiceIdStatics","features":[64]},{"name":"IRfcommServiceProvider","features":[64]},{"name":"IRfcommServiceProvider2","features":[64]},{"name":"IRfcommServiceProviderStatics","features":[64]},{"name":"RfcommDeviceService","features":[64]},{"name":"RfcommDeviceServicesResult","features":[64]},{"name":"RfcommServiceId","features":[64]},{"name":"RfcommServiceProvider","features":[64]}],"72":[{"name":"CustomDevice","features":[65]},{"name":"CustomDeviceContract","features":[65]},{"name":"DeviceAccessMode","features":[65]},{"name":"DeviceSharingMode","features":[65]},{"name":"ICustomDevice","features":[65]},{"name":"ICustomDeviceStatics","features":[65]},{"name":"IIOControlCode","features":[65]},{"name":"IIOControlCodeFactory","features":[65]},{"name":"IKnownDeviceTypesStatics","features":[65]},{"name":"IOControlAccessMode","features":[65]},{"name":"IOControlBufferingMethod","features":[65]},{"name":"IOControlCode","features":[65]},{"name":"KnownDeviceTypes","features":[65]}],"73":[{"name":"DisplayMonitor","features":[66]},{"name":"DisplayMonitorConnectionKind","features":[66]},{"name":"DisplayMonitorDescriptorKind","features":[66]},{"name":"DisplayMonitorPhysicalConnectorKind","features":[66]},{"name":"DisplayMonitorUsageKind","features":[66]},{"name":"IDisplayMonitor","features":[66]},{"name":"IDisplayMonitor2","features":[66]},{"name":"IDisplayMonitorStatics","features":[66]}],"74":[{"name":"DisplayAdapter","features":[67]},{"name":"DisplayBitsPerChannel","features":[67]},{"name":"DisplayDevice","features":[67]},{"name":"DisplayDeviceCapability","features":[67]},{"name":"DisplayFence","features":[67]},{"name":"DisplayManager","features":[67]},{"name":"DisplayManagerChangedEventArgs","features":[67]},{"name":"DisplayManagerDisabledEventArgs","features":[67]},{"name":"DisplayManagerEnabledEventArgs","features":[67]},{"name":"DisplayManagerOptions","features":[67]},{"name":"DisplayManagerPathsFailedOrInvalidatedEventArgs","features":[67]},{"name":"DisplayManagerResult","features":[67]},{"name":"DisplayManagerResultWithState","features":[67]},{"name":"DisplayModeInfo","features":[67]},{"name":"DisplayModeQueryOptions","features":[67]},{"name":"DisplayPath","features":[67]},{"name":"DisplayPathScaling","features":[67]},{"name":"DisplayPathStatus","features":[67]},{"name":"DisplayPresentStatus","features":[67]},{"name":"DisplayPresentationRate","features":[67,68]},{"name":"DisplayPrimaryDescription","features":[67]},{"name":"DisplayRotation","features":[67]},{"name":"DisplayScanout","features":[67]},{"name":"DisplayScanoutOptions","features":[67]},{"name":"DisplaySource","features":[67]},{"name":"DisplaySourceStatus","features":[67]},{"name":"DisplayState","features":[67]},{"name":"DisplayStateApplyOptions","features":[67]},{"name":"DisplayStateFunctionalizeOptions","features":[67]},{"name":"DisplayStateOperationResult","features":[67]},{"name":"DisplayStateOperationStatus","features":[67]},{"name":"DisplaySurface","features":[67]},{"name":"DisplayTarget","features":[67]},{"name":"DisplayTargetPersistence","features":[67]},{"name":"DisplayTask","features":[67]},{"name":"DisplayTaskPool","features":[67]},{"name":"DisplayTaskResult","features":[67]},{"name":"DisplayTaskSignalKind","features":[67]},{"name":"DisplayView","features":[67]},{"name":"DisplayWireFormat","features":[67]},{"name":"DisplayWireFormatColorSpace","features":[67]},{"name":"DisplayWireFormatEotf","features":[67]},{"name":"DisplayWireFormatHdrMetadata","features":[67]},{"name":"DisplayWireFormatPixelEncoding","features":[67]},{"name":"IDisplayAdapter","features":[67]},{"name":"IDisplayAdapterStatics","features":[67]},{"name":"IDisplayDevice","features":[67]},{"name":"IDisplayDevice2","features":[67]},{"name":"IDisplayFence","features":[67]},{"name":"IDisplayManager","features":[67]},{"name":"IDisplayManagerChangedEventArgs","features":[67]},{"name":"IDisplayManagerDisabledEventArgs","features":[67]},{"name":"IDisplayManagerEnabledEventArgs","features":[67]},{"name":"IDisplayManagerPathsFailedOrInvalidatedEventArgs","features":[67]},{"name":"IDisplayManagerResultWithState","features":[67]},{"name":"IDisplayManagerStatics","features":[67]},{"name":"IDisplayModeInfo","features":[67]},{"name":"IDisplayModeInfo2","features":[67]},{"name":"IDisplayPath","features":[67]},{"name":"IDisplayPath2","features":[67]},{"name":"IDisplayPrimaryDescription","features":[67]},{"name":"IDisplayPrimaryDescriptionFactory","features":[67]},{"name":"IDisplayPrimaryDescriptionStatics","features":[67]},{"name":"IDisplayScanout","features":[67]},{"name":"IDisplaySource","features":[67]},{"name":"IDisplaySource2","features":[67]},{"name":"IDisplayState","features":[67]},{"name":"IDisplayStateOperationResult","features":[67]},{"name":"IDisplaySurface","features":[67]},{"name":"IDisplayTarget","features":[67]},{"name":"IDisplayTask","features":[67]},{"name":"IDisplayTask2","features":[67]},{"name":"IDisplayTaskPool","features":[67]},{"name":"IDisplayTaskPool2","features":[67]},{"name":"IDisplayTaskResult","features":[67]},{"name":"IDisplayView","features":[67]},{"name":"IDisplayWireFormat","features":[67]},{"name":"IDisplayWireFormatFactory","features":[67]},{"name":"IDisplayWireFormatStatics","features":[67]}],"75":[{"name":"DeviceAccessChangedEventArgs","features":[69]},{"name":"DeviceAccessInformation","features":[69]},{"name":"DeviceAccessStatus","features":[69]},{"name":"DeviceClass","features":[69]},{"name":"DeviceConnectionChangeTriggerDetails","features":[69]},{"name":"DeviceDisconnectButtonClickedEventArgs","features":[69]},{"name":"DeviceInformation","features":[69]},{"name":"DeviceInformationCollection","features":[69,36]},{"name":"DeviceInformationCustomPairing","features":[69]},{"name":"DeviceInformationKind","features":[69]},{"name":"DeviceInformationPairing","features":[69]},{"name":"DeviceInformationUpdate","features":[69]},{"name":"DevicePairingKinds","features":[69]},{"name":"DevicePairingProtectionLevel","features":[69]},{"name":"DevicePairingRequestedEventArgs","features":[69]},{"name":"DevicePairingResult","features":[69]},{"name":"DevicePairingResultStatus","features":[69]},{"name":"DevicePicker","features":[69]},{"name":"DevicePickerAppearance","features":[69]},{"name":"DevicePickerDisplayStatusOptions","features":[69]},{"name":"DevicePickerFilter","features":[69]},{"name":"DeviceSelectedEventArgs","features":[69]},{"name":"DeviceThumbnail","features":[69,70]},{"name":"DeviceUnpairingResult","features":[69]},{"name":"DeviceUnpairingResultStatus","features":[69]},{"name":"DeviceWatcher","features":[69]},{"name":"DeviceWatcherEvent","features":[69]},{"name":"DeviceWatcherEventKind","features":[69]},{"name":"DeviceWatcherStatus","features":[69]},{"name":"DeviceWatcherTriggerDetails","features":[69]},{"name":"EnclosureLocation","features":[69]},{"name":"IDeviceAccessChangedEventArgs","features":[69]},{"name":"IDeviceAccessChangedEventArgs2","features":[69]},{"name":"IDeviceAccessInformation","features":[69]},{"name":"IDeviceAccessInformationStatics","features":[69]},{"name":"IDeviceConnectionChangeTriggerDetails","features":[69]},{"name":"IDeviceDisconnectButtonClickedEventArgs","features":[69]},{"name":"IDeviceInformation","features":[69]},{"name":"IDeviceInformation2","features":[69]},{"name":"IDeviceInformationCustomPairing","features":[69]},{"name":"IDeviceInformationPairing","features":[69]},{"name":"IDeviceInformationPairing2","features":[69]},{"name":"IDeviceInformationPairingStatics","features":[69]},{"name":"IDeviceInformationPairingStatics2","features":[69]},{"name":"IDeviceInformationStatics","features":[69]},{"name":"IDeviceInformationStatics2","features":[69]},{"name":"IDeviceInformationUpdate","features":[69]},{"name":"IDeviceInformationUpdate2","features":[69]},{"name":"IDevicePairingRequestedEventArgs","features":[69]},{"name":"IDevicePairingRequestedEventArgs2","features":[69]},{"name":"IDevicePairingResult","features":[69]},{"name":"IDevicePairingSettings","features":[69]},{"name":"IDevicePicker","features":[69]},{"name":"IDevicePickerAppearance","features":[69]},{"name":"IDevicePickerFilter","features":[69]},{"name":"IDeviceSelectedEventArgs","features":[69]},{"name":"IDeviceUnpairingResult","features":[69]},{"name":"IDeviceWatcher","features":[69]},{"name":"IDeviceWatcher2","features":[69]},{"name":"IDeviceWatcherEvent","features":[69]},{"name":"IDeviceWatcherTriggerDetails","features":[69]},{"name":"IEnclosureLocation","features":[69]},{"name":"IEnclosureLocation2","features":[69]},{"name":"Panel","features":[69]}],"76":[{"name":"IPnpObject","features":[71]},{"name":"IPnpObjectStatics","features":[71]},{"name":"IPnpObjectUpdate","features":[71]},{"name":"IPnpObjectWatcher","features":[71]},{"name":"PnpObject","features":[71]},{"name":"PnpObjectCollection","features":[71,36]},{"name":"PnpObjectType","features":[71]},{"name":"PnpObjectUpdate","features":[71]},{"name":"PnpObjectWatcher","features":[71]}],"77":[{"name":"AltitudeReferenceSystem","features":[72]},{"name":"BasicGeoposition","features":[72]},{"name":"CivicAddress","features":[72]},{"name":"GeoboundingBox","features":[72]},{"name":"Geocircle","features":[72]},{"name":"Geocoordinate","features":[72]},{"name":"GeocoordinateSatelliteData","features":[72]},{"name":"GeolocationAccessStatus","features":[72]},{"name":"Geolocator","features":[72]},{"name":"Geopath","features":[72]},{"name":"Geopoint","features":[72]},{"name":"Geoposition","features":[72]},{"name":"GeoshapeType","features":[72]},{"name":"Geovisit","features":[72]},{"name":"GeovisitMonitor","features":[72]},{"name":"GeovisitStateChangedEventArgs","features":[72]},{"name":"GeovisitTriggerDetails","features":[72]},{"name":"ICivicAddress","features":[72]},{"name":"IGeoboundingBox","features":[72]},{"name":"IGeoboundingBoxFactory","features":[72]},{"name":"IGeoboundingBoxStatics","features":[72]},{"name":"IGeocircle","features":[72]},{"name":"IGeocircleFactory","features":[72]},{"name":"IGeocoordinate","features":[72]},{"name":"IGeocoordinateSatelliteData","features":[72]},{"name":"IGeocoordinateSatelliteData2","features":[72]},{"name":"IGeocoordinateWithPoint","features":[72]},{"name":"IGeocoordinateWithPositionData","features":[72]},{"name":"IGeocoordinateWithPositionSourceTimestamp","features":[72]},{"name":"IGeocoordinateWithRemoteSource","features":[72]},{"name":"IGeolocator","features":[72]},{"name":"IGeolocator2","features":[72]},{"name":"IGeolocatorStatics","features":[72]},{"name":"IGeolocatorStatics2","features":[72]},{"name":"IGeolocatorWithScalarAccuracy","features":[72]},{"name":"IGeopath","features":[72]},{"name":"IGeopathFactory","features":[72]},{"name":"IGeopoint","features":[72]},{"name":"IGeopointFactory","features":[72]},{"name":"IGeoposition","features":[72]},{"name":"IGeoposition2","features":[72]},{"name":"IGeoshape","features":[72]},{"name":"IGeovisit","features":[72]},{"name":"IGeovisitMonitor","features":[72]},{"name":"IGeovisitMonitorStatics","features":[72]},{"name":"IGeovisitStateChangedEventArgs","features":[72]},{"name":"IGeovisitTriggerDetails","features":[72]},{"name":"IPositionChangedEventArgs","features":[72]},{"name":"IStatusChangedEventArgs","features":[72]},{"name":"IVenueData","features":[72]},{"name":"PositionAccuracy","features":[72]},{"name":"PositionChangedEventArgs","features":[72]},{"name":"PositionSource","features":[72]},{"name":"PositionStatus","features":[72]},{"name":"StatusChangedEventArgs","features":[72]},{"name":"VenueData","features":[72]},{"name":"VisitMonitoringScope","features":[72]},{"name":"VisitStateChange","features":[72]}],"78":[{"name":"Geofence","features":[73]},{"name":"GeofenceMonitor","features":[73]},{"name":"GeofenceMonitorStatus","features":[73]},{"name":"GeofenceRemovalReason","features":[73]},{"name":"GeofenceState","features":[73]},{"name":"GeofenceStateChangeReport","features":[73]},{"name":"IGeofence","features":[73]},{"name":"IGeofenceFactory","features":[73]},{"name":"IGeofenceMonitor","features":[73]},{"name":"IGeofenceMonitorStatics","features":[73]},{"name":"IGeofenceStateChangeReport","features":[73]},{"name":"MonitoredGeofenceStates","features":[73]}],"79":[{"name":"GeolocationProvider","features":[74]},{"name":"IGeolocationProvider","features":[74]},{"name":"LocationOverrideStatus","features":[74]}],"80":[{"name":"GpioChangeCount","features":[75,76]},{"name":"GpioChangeCounter","features":[75]},{"name":"GpioChangePolarity","features":[75]},{"name":"GpioChangeReader","features":[75]},{"name":"GpioChangeRecord","features":[75,76]},{"name":"GpioController","features":[75]},{"name":"GpioOpenStatus","features":[75]},{"name":"GpioPin","features":[75]},{"name":"GpioPinDriveMode","features":[75]},{"name":"GpioPinEdge","features":[75]},{"name":"GpioPinValue","features":[75]},{"name":"GpioPinValueChangedEventArgs","features":[75]},{"name":"GpioSharingMode","features":[75]},{"name":"IGpioChangeCounter","features":[75]},{"name":"IGpioChangeCounterFactory","features":[75]},{"name":"IGpioChangeReader","features":[75]},{"name":"IGpioChangeReaderFactory","features":[75]},{"name":"IGpioController","features":[75]},{"name":"IGpioControllerStatics","features":[75]},{"name":"IGpioControllerStatics2","features":[75]},{"name":"IGpioPin","features":[75]},{"name":"IGpioPinValueChangedEventArgs","features":[75]}],"81":[{"name":"GpioPinProviderValueChangedEventArgs","features":[77]},{"name":"IGpioControllerProvider","features":[77]},{"name":"IGpioPinProvider","features":[77]},{"name":"IGpioPinProviderValueChangedEventArgs","features":[77]},{"name":"IGpioPinProviderValueChangedEventArgsFactory","features":[77]},{"name":"IGpioProvider","features":[77]},{"name":"ProviderGpioPinDriveMode","features":[77]},{"name":"ProviderGpioPinEdge","features":[77]},{"name":"ProviderGpioPinValue","features":[77]},{"name":"ProviderGpioSharingMode","features":[77]}],"82":[{"name":"IKnownSimpleHapticsControllerWaveformsStatics","features":[78]},{"name":"IKnownSimpleHapticsControllerWaveformsStatics2","features":[78]},{"name":"ISimpleHapticsController","features":[78]},{"name":"ISimpleHapticsControllerFeedback","features":[78]},{"name":"IVibrationDevice","features":[78]},{"name":"IVibrationDeviceStatics","features":[78]},{"name":"KnownSimpleHapticsControllerWaveforms","features":[78]},{"name":"SimpleHapticsController","features":[78]},{"name":"SimpleHapticsControllerFeedback","features":[78]},{"name":"VibrationAccessStatus","features":[78]},{"name":"VibrationDevice","features":[78]}],"83":[{"name":"HidBooleanControl","features":[79]},{"name":"HidBooleanControlDescription","features":[79]},{"name":"HidCollection","features":[79]},{"name":"HidCollectionType","features":[79]},{"name":"HidDevice","features":[79]},{"name":"HidFeatureReport","features":[79]},{"name":"HidInputReport","features":[79]},{"name":"HidInputReportReceivedEventArgs","features":[79]},{"name":"HidNumericControl","features":[79]},{"name":"HidNumericControlDescription","features":[79]},{"name":"HidOutputReport","features":[79]},{"name":"HidReportType","features":[79]},{"name":"IHidBooleanControl","features":[79]},{"name":"IHidBooleanControlDescription","features":[79]},{"name":"IHidBooleanControlDescription2","features":[79]},{"name":"IHidCollection","features":[79]},{"name":"IHidDevice","features":[79]},{"name":"IHidDeviceStatics","features":[79]},{"name":"IHidFeatureReport","features":[79]},{"name":"IHidInputReport","features":[79]},{"name":"IHidInputReportReceivedEventArgs","features":[79]},{"name":"IHidNumericControl","features":[79]},{"name":"IHidNumericControlDescription","features":[79]},{"name":"IHidOutputReport","features":[79]}],"84":[{"name":"I2cBusSpeed","features":[80]},{"name":"I2cConnectionSettings","features":[80]},{"name":"I2cController","features":[80]},{"name":"I2cDevice","features":[80]},{"name":"I2cSharingMode","features":[80]},{"name":"I2cTransferResult","features":[80]},{"name":"I2cTransferStatus","features":[80]},{"name":"II2cConnectionSettings","features":[80]},{"name":"II2cConnectionSettingsFactory","features":[80]},{"name":"II2cController","features":[80]},{"name":"II2cControllerStatics","features":[80]},{"name":"II2cDevice","features":[80]},{"name":"II2cDeviceStatics","features":[80]}],"85":[{"name":"II2cControllerProvider","features":[81]},{"name":"II2cDeviceProvider","features":[81]},{"name":"II2cProvider","features":[81]},{"name":"IProviderI2cConnectionSettings","features":[81]},{"name":"ProviderI2cBusSpeed","features":[81]},{"name":"ProviderI2cConnectionSettings","features":[81]},{"name":"ProviderI2cSharingMode","features":[81]},{"name":"ProviderI2cTransferResult","features":[81]},{"name":"ProviderI2cTransferStatus","features":[81]}],"86":[{"name":"IKeyboardCapabilities","features":[82]},{"name":"IMouseCapabilities","features":[82]},{"name":"IMouseDevice","features":[82]},{"name":"IMouseDeviceStatics","features":[82]},{"name":"IMouseEventArgs","features":[82]},{"name":"IPenButtonListener","features":[82]},{"name":"IPenButtonListenerStatics","features":[82]},{"name":"IPenDevice","features":[82]},{"name":"IPenDevice2","features":[82]},{"name":"IPenDeviceStatics","features":[82]},{"name":"IPenDockListener","features":[82]},{"name":"IPenDockListenerStatics","features":[82]},{"name":"IPenDockedEventArgs","features":[82]},{"name":"IPenTailButtonClickedEventArgs","features":[82]},{"name":"IPenTailButtonDoubleClickedEventArgs","features":[82]},{"name":"IPenTailButtonLongPressedEventArgs","features":[82]},{"name":"IPenUndockedEventArgs","features":[82]},{"name":"IPointerDevice","features":[82]},{"name":"IPointerDevice2","features":[82]},{"name":"IPointerDeviceStatics","features":[82]},{"name":"ITouchCapabilities","features":[82]},{"name":"KeyboardCapabilities","features":[82]},{"name":"MouseCapabilities","features":[82]},{"name":"MouseDelta","features":[82]},{"name":"MouseDevice","features":[82]},{"name":"MouseEventArgs","features":[82]},{"name":"PenButtonListener","features":[82]},{"name":"PenDevice","features":[82]},{"name":"PenDockListener","features":[82]},{"name":"PenDockedEventArgs","features":[82]},{"name":"PenTailButtonClickedEventArgs","features":[82]},{"name":"PenTailButtonDoubleClickedEventArgs","features":[82]},{"name":"PenTailButtonLongPressedEventArgs","features":[82]},{"name":"PenUndockedEventArgs","features":[82]},{"name":"PointerDevice","features":[82]},{"name":"PointerDeviceType","features":[82]},{"name":"PointerDeviceUsage","features":[82]},{"name":"TouchCapabilities","features":[82]}],"87":[{"name":"GazeDeviceConfigurationStatePreview","features":[83]},{"name":"GazeDevicePreview","features":[83]},{"name":"GazeDeviceWatcherAddedPreviewEventArgs","features":[83]},{"name":"GazeDeviceWatcherPreview","features":[83]},{"name":"GazeDeviceWatcherRemovedPreviewEventArgs","features":[83]},{"name":"GazeDeviceWatcherUpdatedPreviewEventArgs","features":[83]},{"name":"GazeEnteredPreviewEventArgs","features":[83]},{"name":"GazeExitedPreviewEventArgs","features":[83]},{"name":"GazeInputSourcePreview","features":[83]},{"name":"GazeMovedPreviewEventArgs","features":[83]},{"name":"GazePointPreview","features":[83]},{"name":"IGazeDevicePreview","features":[83]},{"name":"IGazeDeviceWatcherAddedPreviewEventArgs","features":[83]},{"name":"IGazeDeviceWatcherPreview","features":[83]},{"name":"IGazeDeviceWatcherRemovedPreviewEventArgs","features":[83]},{"name":"IGazeDeviceWatcherUpdatedPreviewEventArgs","features":[83]},{"name":"IGazeEnteredPreviewEventArgs","features":[83]},{"name":"IGazeExitedPreviewEventArgs","features":[83]},{"name":"IGazeInputSourcePreview","features":[83]},{"name":"IGazeInputSourcePreviewStatics","features":[83]},{"name":"IGazeMovedPreviewEventArgs","features":[83]},{"name":"IGazePointPreview","features":[83]}],"88":[{"name":"ILamp","features":[84]},{"name":"ILampArray","features":[84]},{"name":"ILampArray2","features":[84]},{"name":"ILampArrayStatics","features":[84]},{"name":"ILampAvailabilityChangedEventArgs","features":[84]},{"name":"ILampInfo","features":[84]},{"name":"ILampStatics","features":[84]},{"name":"Lamp","features":[84]},{"name":"LampArray","features":[84]},{"name":"LampArrayKind","features":[84]},{"name":"LampAvailabilityChangedEventArgs","features":[84]},{"name":"LampInfo","features":[84]},{"name":"LampPurposes","features":[84]}],"89":[{"name":"ILampArrayBitmapEffect","features":[85]},{"name":"ILampArrayBitmapEffectFactory","features":[85]},{"name":"ILampArrayBitmapRequestedEventArgs","features":[85]},{"name":"ILampArrayBlinkEffect","features":[85]},{"name":"ILampArrayBlinkEffectFactory","features":[85]},{"name":"ILampArrayColorRampEffect","features":[85]},{"name":"ILampArrayColorRampEffectFactory","features":[85]},{"name":"ILampArrayCustomEffect","features":[85]},{"name":"ILampArrayCustomEffectFactory","features":[85]},{"name":"ILampArrayEffect","features":[85]},{"name":"ILampArrayEffectPlaylist","features":[85]},{"name":"ILampArrayEffectPlaylistStatics","features":[85]},{"name":"ILampArraySolidEffect","features":[85]},{"name":"ILampArraySolidEffectFactory","features":[85]},{"name":"ILampArrayUpdateRequestedEventArgs","features":[85]},{"name":"LampArrayBitmapEffect","features":[85]},{"name":"LampArrayBitmapRequestedEventArgs","features":[85]},{"name":"LampArrayBlinkEffect","features":[85]},{"name":"LampArrayColorRampEffect","features":[85]},{"name":"LampArrayCustomEffect","features":[85]},{"name":"LampArrayEffectCompletionBehavior","features":[85]},{"name":"LampArrayEffectPlaylist","features":[85]},{"name":"LampArrayEffectStartMode","features":[85]},{"name":"LampArrayRepetitionMode","features":[85]},{"name":"LampArraySolidEffect","features":[85]},{"name":"LampArrayUpdateRequestedEventArgs","features":[85]}],"90":[{"name":"IMidiChannelPressureMessage","features":[86]},{"name":"IMidiChannelPressureMessageFactory","features":[86]},{"name":"IMidiControlChangeMessage","features":[86]},{"name":"IMidiControlChangeMessageFactory","features":[86]},{"name":"IMidiInPort","features":[86]},{"name":"IMidiInPortStatics","features":[86]},{"name":"IMidiMessage","features":[86]},{"name":"IMidiMessageReceivedEventArgs","features":[86]},{"name":"IMidiNoteOffMessage","features":[86]},{"name":"IMidiNoteOffMessageFactory","features":[86]},{"name":"IMidiNoteOnMessage","features":[86]},{"name":"IMidiNoteOnMessageFactory","features":[86]},{"name":"IMidiOutPort","features":[86]},{"name":"IMidiOutPortStatics","features":[86]},{"name":"IMidiPitchBendChangeMessage","features":[86]},{"name":"IMidiPitchBendChangeMessageFactory","features":[86]},{"name":"IMidiPolyphonicKeyPressureMessage","features":[86]},{"name":"IMidiPolyphonicKeyPressureMessageFactory","features":[86]},{"name":"IMidiProgramChangeMessage","features":[86]},{"name":"IMidiProgramChangeMessageFactory","features":[86]},{"name":"IMidiSongPositionPointerMessage","features":[86]},{"name":"IMidiSongPositionPointerMessageFactory","features":[86]},{"name":"IMidiSongSelectMessage","features":[86]},{"name":"IMidiSongSelectMessageFactory","features":[86]},{"name":"IMidiSynthesizer","features":[86]},{"name":"IMidiSynthesizerStatics","features":[86]},{"name":"IMidiSystemExclusiveMessageFactory","features":[86]},{"name":"IMidiTimeCodeMessage","features":[86]},{"name":"IMidiTimeCodeMessageFactory","features":[86]},{"name":"MidiActiveSensingMessage","features":[86]},{"name":"MidiChannelPressureMessage","features":[86]},{"name":"MidiContinueMessage","features":[86]},{"name":"MidiControlChangeMessage","features":[86]},{"name":"MidiInPort","features":[86]},{"name":"MidiMessageReceivedEventArgs","features":[86]},{"name":"MidiMessageType","features":[86]},{"name":"MidiNoteOffMessage","features":[86]},{"name":"MidiNoteOnMessage","features":[86]},{"name":"MidiOutPort","features":[86]},{"name":"MidiPitchBendChangeMessage","features":[86]},{"name":"MidiPolyphonicKeyPressureMessage","features":[86]},{"name":"MidiProgramChangeMessage","features":[86]},{"name":"MidiSongPositionPointerMessage","features":[86]},{"name":"MidiSongSelectMessage","features":[86]},{"name":"MidiStartMessage","features":[86]},{"name":"MidiStopMessage","features":[86]},{"name":"MidiSynthesizer","features":[86]},{"name":"MidiSystemExclusiveMessage","features":[86]},{"name":"MidiSystemResetMessage","features":[86]},{"name":"MidiTimeCodeMessage","features":[86]},{"name":"MidiTimingClockMessage","features":[86]},{"name":"MidiTuneRequestMessage","features":[86]}],"93":[{"name":"BarcodeScanner","features":[87]},{"name":"BarcodeScannerCapabilities","features":[87]},{"name":"BarcodeScannerDataReceivedEventArgs","features":[87]},{"name":"BarcodeScannerErrorOccurredEventArgs","features":[87]},{"name":"BarcodeScannerImagePreviewReceivedEventArgs","features":[87]},{"name":"BarcodeScannerReport","features":[87]},{"name":"BarcodeScannerStatus","features":[87]},{"name":"BarcodeScannerStatusUpdatedEventArgs","features":[87]},{"name":"BarcodeSymbologies","features":[87]},{"name":"BarcodeSymbologyAttributes","features":[87]},{"name":"BarcodeSymbologyDecodeLengthKind","features":[87]},{"name":"CashDrawer","features":[87]},{"name":"CashDrawerCapabilities","features":[87]},{"name":"CashDrawerCloseAlarm","features":[87]},{"name":"CashDrawerClosedEventArgs","features":[87]},{"name":"CashDrawerEventSource","features":[87]},{"name":"CashDrawerOpenedEventArgs","features":[87]},{"name":"CashDrawerStatus","features":[87]},{"name":"CashDrawerStatusKind","features":[87]},{"name":"CashDrawerStatusUpdatedEventArgs","features":[87]},{"name":"ClaimedBarcodeScanner","features":[87]},{"name":"ClaimedBarcodeScannerClosedEventArgs","features":[87]},{"name":"ClaimedCashDrawer","features":[87]},{"name":"ClaimedCashDrawerClosedEventArgs","features":[87]},{"name":"ClaimedJournalPrinter","features":[87]},{"name":"ClaimedLineDisplay","features":[87]},{"name":"ClaimedLineDisplayClosedEventArgs","features":[87]},{"name":"ClaimedMagneticStripeReader","features":[87]},{"name":"ClaimedMagneticStripeReaderClosedEventArgs","features":[87]},{"name":"ClaimedPosPrinter","features":[87]},{"name":"ClaimedPosPrinterClosedEventArgs","features":[87]},{"name":"ClaimedReceiptPrinter","features":[87]},{"name":"ClaimedSlipPrinter","features":[87]},{"name":"IBarcodeScanner","features":[87]},{"name":"IBarcodeScanner2","features":[87]},{"name":"IBarcodeScannerCapabilities","features":[87]},{"name":"IBarcodeScannerCapabilities1","features":[87]},{"name":"IBarcodeScannerCapabilities2","features":[87]},{"name":"IBarcodeScannerDataReceivedEventArgs","features":[87]},{"name":"IBarcodeScannerErrorOccurredEventArgs","features":[87]},{"name":"IBarcodeScannerImagePreviewReceivedEventArgs","features":[87]},{"name":"IBarcodeScannerReport","features":[87]},{"name":"IBarcodeScannerReportFactory","features":[87]},{"name":"IBarcodeScannerStatics","features":[87]},{"name":"IBarcodeScannerStatics2","features":[87]},{"name":"IBarcodeScannerStatusUpdatedEventArgs","features":[87]},{"name":"IBarcodeSymbologiesStatics","features":[87]},{"name":"IBarcodeSymbologiesStatics2","features":[87]},{"name":"IBarcodeSymbologyAttributes","features":[87]},{"name":"ICashDrawer","features":[87]},{"name":"ICashDrawerCapabilities","features":[87]},{"name":"ICashDrawerCloseAlarm","features":[87]},{"name":"ICashDrawerEventSource","features":[87]},{"name":"ICashDrawerEventSourceEventArgs","features":[87]},{"name":"ICashDrawerStatics","features":[87]},{"name":"ICashDrawerStatics2","features":[87]},{"name":"ICashDrawerStatus","features":[87]},{"name":"ICashDrawerStatusUpdatedEventArgs","features":[87]},{"name":"IClaimedBarcodeScanner","features":[87]},{"name":"IClaimedBarcodeScanner1","features":[87]},{"name":"IClaimedBarcodeScanner2","features":[87]},{"name":"IClaimedBarcodeScanner3","features":[87]},{"name":"IClaimedBarcodeScanner4","features":[87]},{"name":"IClaimedBarcodeScannerClosedEventArgs","features":[87]},{"name":"IClaimedCashDrawer","features":[87]},{"name":"IClaimedCashDrawer2","features":[87]},{"name":"IClaimedCashDrawerClosedEventArgs","features":[87]},{"name":"IClaimedJournalPrinter","features":[87]},{"name":"IClaimedLineDisplay","features":[87]},{"name":"IClaimedLineDisplay2","features":[87]},{"name":"IClaimedLineDisplay3","features":[87]},{"name":"IClaimedLineDisplayClosedEventArgs","features":[87]},{"name":"IClaimedLineDisplayStatics","features":[87]},{"name":"IClaimedMagneticStripeReader","features":[87]},{"name":"IClaimedMagneticStripeReader2","features":[87]},{"name":"IClaimedMagneticStripeReaderClosedEventArgs","features":[87]},{"name":"IClaimedPosPrinter","features":[87]},{"name":"IClaimedPosPrinter2","features":[87]},{"name":"IClaimedPosPrinterClosedEventArgs","features":[87]},{"name":"IClaimedReceiptPrinter","features":[87]},{"name":"IClaimedSlipPrinter","features":[87]},{"name":"ICommonClaimedPosPrinterStation","features":[87]},{"name":"ICommonPosPrintStationCapabilities","features":[87]},{"name":"ICommonReceiptSlipCapabilities","features":[87]},{"name":"IJournalPrintJob","features":[87]},{"name":"IJournalPrinterCapabilities","features":[87]},{"name":"IJournalPrinterCapabilities2","features":[87]},{"name":"ILineDisplay","features":[87]},{"name":"ILineDisplay2","features":[87]},{"name":"ILineDisplayAttributes","features":[87]},{"name":"ILineDisplayCapabilities","features":[87]},{"name":"ILineDisplayCursor","features":[87]},{"name":"ILineDisplayCursorAttributes","features":[87]},{"name":"ILineDisplayCustomGlyphs","features":[87]},{"name":"ILineDisplayMarquee","features":[87]},{"name":"ILineDisplayStatics","features":[87]},{"name":"ILineDisplayStatics2","features":[87]},{"name":"ILineDisplayStatisticsCategorySelector","features":[87]},{"name":"ILineDisplayStatusUpdatedEventArgs","features":[87]},{"name":"ILineDisplayStoredBitmap","features":[87]},{"name":"ILineDisplayWindow","features":[87]},{"name":"ILineDisplayWindow2","features":[87]},{"name":"IMagneticStripeReader","features":[87]},{"name":"IMagneticStripeReaderAamvaCardDataReceivedEventArgs","features":[87]},{"name":"IMagneticStripeReaderBankCardDataReceivedEventArgs","features":[87]},{"name":"IMagneticStripeReaderCapabilities","features":[87]},{"name":"IMagneticStripeReaderCardTypesStatics","features":[87]},{"name":"IMagneticStripeReaderEncryptionAlgorithmsStatics","features":[87]},{"name":"IMagneticStripeReaderErrorOccurredEventArgs","features":[87]},{"name":"IMagneticStripeReaderReport","features":[87]},{"name":"IMagneticStripeReaderStatics","features":[87]},{"name":"IMagneticStripeReaderStatics2","features":[87]},{"name":"IMagneticStripeReaderStatusUpdatedEventArgs","features":[87]},{"name":"IMagneticStripeReaderTrackData","features":[87]},{"name":"IMagneticStripeReaderVendorSpecificCardDataReceivedEventArgs","features":[87]},{"name":"IPosPrinter","features":[87]},{"name":"IPosPrinter2","features":[87]},{"name":"IPosPrinterCapabilities","features":[87]},{"name":"IPosPrinterCharacterSetIdsStatics","features":[87]},{"name":"IPosPrinterFontProperty","features":[87]},{"name":"IPosPrinterJob","features":[87]},{"name":"IPosPrinterPrintOptions","features":[87]},{"name":"IPosPrinterReleaseDeviceRequestedEventArgs","features":[87]},{"name":"IPosPrinterStatics","features":[87]},{"name":"IPosPrinterStatics2","features":[87]},{"name":"IPosPrinterStatus","features":[87]},{"name":"IPosPrinterStatusUpdatedEventArgs","features":[87]},{"name":"IReceiptOrSlipJob","features":[87]},{"name":"IReceiptPrintJob","features":[87]},{"name":"IReceiptPrintJob2","features":[87]},{"name":"IReceiptPrinterCapabilities","features":[87]},{"name":"IReceiptPrinterCapabilities2","features":[87]},{"name":"ISlipPrintJob","features":[87]},{"name":"ISlipPrinterCapabilities","features":[87]},{"name":"ISlipPrinterCapabilities2","features":[87]},{"name":"IUnifiedPosErrorData","features":[87]},{"name":"IUnifiedPosErrorDataFactory","features":[87]},{"name":"JournalPrintJob","features":[87]},{"name":"JournalPrinterCapabilities","features":[87]},{"name":"LineDisplay","features":[87]},{"name":"LineDisplayAttributes","features":[87]},{"name":"LineDisplayCapabilities","features":[87]},{"name":"LineDisplayCursor","features":[87]},{"name":"LineDisplayCursorAttributes","features":[87]},{"name":"LineDisplayCursorType","features":[87]},{"name":"LineDisplayCustomGlyphs","features":[87]},{"name":"LineDisplayDescriptorState","features":[87]},{"name":"LineDisplayHorizontalAlignment","features":[87]},{"name":"LineDisplayMarquee","features":[87]},{"name":"LineDisplayMarqueeFormat","features":[87]},{"name":"LineDisplayPowerStatus","features":[87]},{"name":"LineDisplayScrollDirection","features":[87]},{"name":"LineDisplayStatisticsCategorySelector","features":[87]},{"name":"LineDisplayStatusUpdatedEventArgs","features":[87]},{"name":"LineDisplayStoredBitmap","features":[87]},{"name":"LineDisplayTextAttribute","features":[87]},{"name":"LineDisplayTextAttributeGranularity","features":[87]},{"name":"LineDisplayVerticalAlignment","features":[87]},{"name":"LineDisplayWindow","features":[87]},{"name":"MagneticStripeReader","features":[87]},{"name":"MagneticStripeReaderAamvaCardDataReceivedEventArgs","features":[87]},{"name":"MagneticStripeReaderAuthenticationLevel","features":[87]},{"name":"MagneticStripeReaderAuthenticationProtocol","features":[87]},{"name":"MagneticStripeReaderBankCardDataReceivedEventArgs","features":[87]},{"name":"MagneticStripeReaderCapabilities","features":[87]},{"name":"MagneticStripeReaderCardTypes","features":[87]},{"name":"MagneticStripeReaderEncryptionAlgorithms","features":[87]},{"name":"MagneticStripeReaderErrorOccurredEventArgs","features":[87]},{"name":"MagneticStripeReaderErrorReportingType","features":[87]},{"name":"MagneticStripeReaderReport","features":[87]},{"name":"MagneticStripeReaderStatus","features":[87]},{"name":"MagneticStripeReaderStatusUpdatedEventArgs","features":[87]},{"name":"MagneticStripeReaderTrackData","features":[87]},{"name":"MagneticStripeReaderTrackErrorType","features":[87]},{"name":"MagneticStripeReaderTrackIds","features":[87]},{"name":"MagneticStripeReaderVendorSpecificCardDataReceivedEventArgs","features":[87]},{"name":"PosConnectionTypes","features":[87]},{"name":"PosPrinter","features":[87]},{"name":"PosPrinterAlignment","features":[87]},{"name":"PosPrinterBarcodeTextPosition","features":[87]},{"name":"PosPrinterCapabilities","features":[87]},{"name":"PosPrinterCartridgeSensors","features":[87]},{"name":"PosPrinterCharacterSetIds","features":[87]},{"name":"PosPrinterColorCapabilities","features":[87]},{"name":"PosPrinterColorCartridge","features":[87]},{"name":"PosPrinterFontProperty","features":[87]},{"name":"PosPrinterLineDirection","features":[87]},{"name":"PosPrinterLineStyle","features":[87]},{"name":"PosPrinterMapMode","features":[87]},{"name":"PosPrinterMarkFeedCapabilities","features":[87]},{"name":"PosPrinterMarkFeedKind","features":[87]},{"name":"PosPrinterPrintOptions","features":[87]},{"name":"PosPrinterPrintSide","features":[87]},{"name":"PosPrinterReleaseDeviceRequestedEventArgs","features":[87]},{"name":"PosPrinterRotation","features":[87]},{"name":"PosPrinterRuledLineCapabilities","features":[87]},{"name":"PosPrinterStatus","features":[87]},{"name":"PosPrinterStatusKind","features":[87]},{"name":"PosPrinterStatusUpdatedEventArgs","features":[87]},{"name":"ReceiptPrintJob","features":[87]},{"name":"ReceiptPrinterCapabilities","features":[87]},{"name":"SizeUInt32","features":[87]},{"name":"SlipPrintJob","features":[87]},{"name":"SlipPrinterCapabilities","features":[87]},{"name":"UnifiedPosErrorData","features":[87]},{"name":"UnifiedPosErrorReason","features":[87]},{"name":"UnifiedPosErrorSeverity","features":[87]},{"name":"UnifiedPosHealthCheckLevel","features":[87]},{"name":"UnifiedPosPowerReportingType","features":[87]}],"94":[{"name":"BarcodeScannerDisableScannerRequest","features":[88]},{"name":"BarcodeScannerDisableScannerRequestEventArgs","features":[88]},{"name":"BarcodeScannerEnableScannerRequest","features":[88]},{"name":"BarcodeScannerEnableScannerRequestEventArgs","features":[88]},{"name":"BarcodeScannerFrameReader","features":[88]},{"name":"BarcodeScannerFrameReaderFrameArrivedEventArgs","features":[88]},{"name":"BarcodeScannerGetSymbologyAttributesRequest","features":[88]},{"name":"BarcodeScannerGetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"BarcodeScannerHideVideoPreviewRequest","features":[88]},{"name":"BarcodeScannerHideVideoPreviewRequestEventArgs","features":[88]},{"name":"BarcodeScannerProviderConnection","features":[88]},{"name":"BarcodeScannerProviderTriggerDetails","features":[88]},{"name":"BarcodeScannerSetActiveSymbologiesRequest","features":[88]},{"name":"BarcodeScannerSetActiveSymbologiesRequestEventArgs","features":[88]},{"name":"BarcodeScannerSetSymbologyAttributesRequest","features":[88]},{"name":"BarcodeScannerSetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"BarcodeScannerStartSoftwareTriggerRequest","features":[88]},{"name":"BarcodeScannerStartSoftwareTriggerRequestEventArgs","features":[88]},{"name":"BarcodeScannerStopSoftwareTriggerRequest","features":[88]},{"name":"BarcodeScannerStopSoftwareTriggerRequestEventArgs","features":[88]},{"name":"BarcodeScannerTriggerState","features":[88]},{"name":"BarcodeScannerVideoFrame","features":[88]},{"name":"BarcodeSymbologyAttributesBuilder","features":[88]},{"name":"IBarcodeScannerDisableScannerRequest","features":[88]},{"name":"IBarcodeScannerDisableScannerRequest2","features":[88]},{"name":"IBarcodeScannerDisableScannerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerEnableScannerRequest","features":[88]},{"name":"IBarcodeScannerEnableScannerRequest2","features":[88]},{"name":"IBarcodeScannerEnableScannerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerFrameReader","features":[88]},{"name":"IBarcodeScannerFrameReaderFrameArrivedEventArgs","features":[88]},{"name":"IBarcodeScannerGetSymbologyAttributesRequest","features":[88]},{"name":"IBarcodeScannerGetSymbologyAttributesRequest2","features":[88]},{"name":"IBarcodeScannerGetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"IBarcodeScannerHideVideoPreviewRequest","features":[88]},{"name":"IBarcodeScannerHideVideoPreviewRequest2","features":[88]},{"name":"IBarcodeScannerHideVideoPreviewRequestEventArgs","features":[88]},{"name":"IBarcodeScannerProviderConnection","features":[88]},{"name":"IBarcodeScannerProviderConnection2","features":[88]},{"name":"IBarcodeScannerProviderTriggerDetails","features":[88]},{"name":"IBarcodeScannerSetActiveSymbologiesRequest","features":[88]},{"name":"IBarcodeScannerSetActiveSymbologiesRequest2","features":[88]},{"name":"IBarcodeScannerSetActiveSymbologiesRequestEventArgs","features":[88]},{"name":"IBarcodeScannerSetSymbologyAttributesRequest","features":[88]},{"name":"IBarcodeScannerSetSymbologyAttributesRequest2","features":[88]},{"name":"IBarcodeScannerSetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"IBarcodeScannerStartSoftwareTriggerRequest","features":[88]},{"name":"IBarcodeScannerStartSoftwareTriggerRequest2","features":[88]},{"name":"IBarcodeScannerStartSoftwareTriggerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerStopSoftwareTriggerRequest","features":[88]},{"name":"IBarcodeScannerStopSoftwareTriggerRequest2","features":[88]},{"name":"IBarcodeScannerStopSoftwareTriggerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerVideoFrame","features":[88]},{"name":"IBarcodeSymbologyAttributesBuilder","features":[88]}],"95":[{"name":"IServiceDeviceStatics","features":[89]},{"name":"IStorageDeviceStatics","features":[89]},{"name":"PortableDeviceContract","features":[89]},{"name":"ServiceDevice","features":[89]},{"name":"ServiceDeviceType","features":[89]},{"name":"StorageDevice","features":[89]}],"96":[{"name":"Battery","features":[90]},{"name":"BatteryReport","features":[90]},{"name":"IBattery","features":[90]},{"name":"IBatteryReport","features":[90]},{"name":"IBatteryStatics","features":[90]}],"97":[{"name":"IIppAttributeError","features":[91]},{"name":"IIppAttributeValue","features":[91]},{"name":"IIppAttributeValueStatics","features":[91]},{"name":"IIppIntegerRange","features":[91]},{"name":"IIppIntegerRangeFactory","features":[91]},{"name":"IIppPrintDevice","features":[91]},{"name":"IIppPrintDevice2","features":[91]},{"name":"IIppPrintDeviceStatics","features":[91]},{"name":"IIppResolution","features":[91]},{"name":"IIppResolutionFactory","features":[91]},{"name":"IIppSetAttributesResult","features":[91]},{"name":"IIppTextWithLanguage","features":[91]},{"name":"IIppTextWithLanguageFactory","features":[91]},{"name":"IPageConfigurationSettings","features":[91]},{"name":"IPdlPassthroughProvider","features":[91]},{"name":"IPdlPassthroughTarget","features":[91]},{"name":"IPrint3DDevice","features":[91]},{"name":"IPrint3DDeviceStatics","features":[91]},{"name":"IPrintSchema","features":[91]},{"name":"IppAttributeError","features":[91]},{"name":"IppAttributeErrorReason","features":[91]},{"name":"IppAttributeValue","features":[91]},{"name":"IppAttributeValueKind","features":[91]},{"name":"IppIntegerRange","features":[91]},{"name":"IppPrintDevice","features":[91]},{"name":"IppResolution","features":[91]},{"name":"IppResolutionUnit","features":[91]},{"name":"IppSetAttributesResult","features":[91]},{"name":"IppTextWithLanguage","features":[91]},{"name":"PageConfigurationSettings","features":[91]},{"name":"PageConfigurationSource","features":[91]},{"name":"PdlPassthroughProvider","features":[91]},{"name":"PdlPassthroughTarget","features":[91]},{"name":"Print3DDevice","features":[91]},{"name":"PrintSchema","features":[91]},{"name":"PrintersContract","features":[91]}],"98":[{"name":"ExtensionsContract","features":[92]},{"name":"IPrint3DWorkflow","features":[92]},{"name":"IPrint3DWorkflow2","features":[92]},{"name":"IPrint3DWorkflowPrintRequestedEventArgs","features":[92]},{"name":"IPrint3DWorkflowPrinterChangedEventArgs","features":[92]},{"name":"IPrintExtensionContextStatic","features":[92]},{"name":"IPrintNotificationEventDetails","features":[92]},{"name":"IPrintTaskConfiguration","features":[92]},{"name":"IPrintTaskConfigurationSaveRequest","features":[92]},{"name":"IPrintTaskConfigurationSaveRequestedDeferral","features":[92]},{"name":"IPrintTaskConfigurationSaveRequestedEventArgs","features":[92]},{"name":"Print3DWorkflow","features":[92]},{"name":"Print3DWorkflowDetail","features":[92]},{"name":"Print3DWorkflowPrintRequestedEventArgs","features":[92]},{"name":"Print3DWorkflowPrinterChangedEventArgs","features":[92]},{"name":"Print3DWorkflowStatus","features":[92]},{"name":"PrintExtensionContext","features":[92]},{"name":"PrintNotificationEventDetails","features":[92]},{"name":"PrintTaskConfiguration","features":[92]},{"name":"PrintTaskConfigurationSaveRequest","features":[92]},{"name":"PrintTaskConfigurationSaveRequestedDeferral","features":[92]},{"name":"PrintTaskConfigurationSaveRequestedEventArgs","features":[92]}],"99":[{"name":"IPwmController","features":[93]},{"name":"IPwmControllerStatics","features":[93]},{"name":"IPwmControllerStatics2","features":[93]},{"name":"IPwmControllerStatics3","features":[93]},{"name":"IPwmPin","features":[93]},{"name":"PwmController","features":[93]},{"name":"PwmPin","features":[93]},{"name":"PwmPulsePolarity","features":[93]}],"100":[{"name":"IPwmControllerProvider","features":[94]},{"name":"IPwmProvider","features":[94]}],"101":[{"name":"IRadio","features":[95]},{"name":"IRadioStatics","features":[95]},{"name":"Radio","features":[95]},{"name":"RadioAccessStatus","features":[95]},{"name":"RadioKind","features":[95]},{"name":"RadioState","features":[95]}],"102":[{"name":"IImageScanner","features":[96]},{"name":"IImageScannerFeederConfiguration","features":[96]},{"name":"IImageScannerFormatConfiguration","features":[96]},{"name":"IImageScannerPreviewResult","features":[96]},{"name":"IImageScannerScanResult","features":[96]},{"name":"IImageScannerSourceConfiguration","features":[96]},{"name":"IImageScannerStatics","features":[96]},{"name":"ImageScanner","features":[96]},{"name":"ImageScannerAutoConfiguration","features":[96]},{"name":"ImageScannerAutoCroppingMode","features":[96]},{"name":"ImageScannerColorMode","features":[96]},{"name":"ImageScannerFeederConfiguration","features":[96]},{"name":"ImageScannerFlatbedConfiguration","features":[96]},{"name":"ImageScannerFormat","features":[96]},{"name":"ImageScannerPreviewResult","features":[96]},{"name":"ImageScannerResolution","features":[96]},{"name":"ImageScannerScanResult","features":[96]},{"name":"ImageScannerScanSource","features":[96]},{"name":"ScannerDeviceContract","features":[96]}],"103":[{"name":"Accelerometer","features":[97]},{"name":"AccelerometerDataThreshold","features":[97]},{"name":"AccelerometerReading","features":[97]},{"name":"AccelerometerReadingChangedEventArgs","features":[97]},{"name":"AccelerometerReadingType","features":[97]},{"name":"AccelerometerShakenEventArgs","features":[97]},{"name":"ActivitySensor","features":[97]},{"name":"ActivitySensorReading","features":[97]},{"name":"ActivitySensorReadingChangeReport","features":[97]},{"name":"ActivitySensorReadingChangedEventArgs","features":[97]},{"name":"ActivitySensorReadingConfidence","features":[97]},{"name":"ActivitySensorTriggerDetails","features":[97]},{"name":"ActivityType","features":[97]},{"name":"AdaptiveDimmingOptions","features":[97]},{"name":"Altimeter","features":[97]},{"name":"AltimeterReading","features":[97]},{"name":"AltimeterReadingChangedEventArgs","features":[97]},{"name":"Barometer","features":[97]},{"name":"BarometerDataThreshold","features":[97]},{"name":"BarometerReading","features":[97]},{"name":"BarometerReadingChangedEventArgs","features":[97]},{"name":"Compass","features":[97]},{"name":"CompassDataThreshold","features":[97]},{"name":"CompassReading","features":[97]},{"name":"CompassReadingChangedEventArgs","features":[97]},{"name":"Gyrometer","features":[97]},{"name":"GyrometerDataThreshold","features":[97]},{"name":"GyrometerReading","features":[97]},{"name":"GyrometerReadingChangedEventArgs","features":[97]},{"name":"HingeAngleReading","features":[97]},{"name":"HingeAngleSensor","features":[97]},{"name":"HingeAngleSensorReadingChangedEventArgs","features":[97]},{"name":"HumanEngagement","features":[97]},{"name":"HumanPresence","features":[97]},{"name":"HumanPresenceFeatures","features":[97]},{"name":"HumanPresenceSensor","features":[97]},{"name":"HumanPresenceSensorReading","features":[97]},{"name":"HumanPresenceSensorReadingChangedEventArgs","features":[97]},{"name":"HumanPresenceSensorReadingUpdate","features":[97]},{"name":"HumanPresenceSettings","features":[97]},{"name":"IAccelerometer","features":[97]},{"name":"IAccelerometer2","features":[97]},{"name":"IAccelerometer3","features":[97]},{"name":"IAccelerometer4","features":[97]},{"name":"IAccelerometer5","features":[97]},{"name":"IAccelerometerDataThreshold","features":[97]},{"name":"IAccelerometerDeviceId","features":[97]},{"name":"IAccelerometerReading","features":[97]},{"name":"IAccelerometerReading2","features":[97]},{"name":"IAccelerometerReadingChangedEventArgs","features":[97]},{"name":"IAccelerometerShakenEventArgs","features":[97]},{"name":"IAccelerometerStatics","features":[97]},{"name":"IAccelerometerStatics2","features":[97]},{"name":"IAccelerometerStatics3","features":[97]},{"name":"IActivitySensor","features":[97]},{"name":"IActivitySensorReading","features":[97]},{"name":"IActivitySensorReadingChangeReport","features":[97]},{"name":"IActivitySensorReadingChangedEventArgs","features":[97]},{"name":"IActivitySensorStatics","features":[97]},{"name":"IActivitySensorTriggerDetails","features":[97]},{"name":"IAdaptiveDimmingOptions","features":[97]},{"name":"IAltimeter","features":[97]},{"name":"IAltimeter2","features":[97]},{"name":"IAltimeterReading","features":[97]},{"name":"IAltimeterReading2","features":[97]},{"name":"IAltimeterReadingChangedEventArgs","features":[97]},{"name":"IAltimeterStatics","features":[97]},{"name":"IBarometer","features":[97]},{"name":"IBarometer2","features":[97]},{"name":"IBarometer3","features":[97]},{"name":"IBarometerDataThreshold","features":[97]},{"name":"IBarometerReading","features":[97]},{"name":"IBarometerReading2","features":[97]},{"name":"IBarometerReadingChangedEventArgs","features":[97]},{"name":"IBarometerStatics","features":[97]},{"name":"IBarometerStatics2","features":[97]},{"name":"ICompass","features":[97]},{"name":"ICompass2","features":[97]},{"name":"ICompass3","features":[97]},{"name":"ICompass4","features":[97]},{"name":"ICompassDataThreshold","features":[97]},{"name":"ICompassDeviceId","features":[97]},{"name":"ICompassReading","features":[97]},{"name":"ICompassReading2","features":[97]},{"name":"ICompassReadingChangedEventArgs","features":[97]},{"name":"ICompassReadingHeadingAccuracy","features":[97]},{"name":"ICompassStatics","features":[97]},{"name":"ICompassStatics2","features":[97]},{"name":"IGyrometer","features":[97]},{"name":"IGyrometer2","features":[97]},{"name":"IGyrometer3","features":[97]},{"name":"IGyrometer4","features":[97]},{"name":"IGyrometerDataThreshold","features":[97]},{"name":"IGyrometerDeviceId","features":[97]},{"name":"IGyrometerReading","features":[97]},{"name":"IGyrometerReading2","features":[97]},{"name":"IGyrometerReadingChangedEventArgs","features":[97]},{"name":"IGyrometerStatics","features":[97]},{"name":"IGyrometerStatics2","features":[97]},{"name":"IHingeAngleReading","features":[97]},{"name":"IHingeAngleSensor","features":[97]},{"name":"IHingeAngleSensorReadingChangedEventArgs","features":[97]},{"name":"IHingeAngleSensorStatics","features":[97]},{"name":"IHumanPresenceFeatures","features":[97]},{"name":"IHumanPresenceFeatures2","features":[97]},{"name":"IHumanPresenceSensor","features":[97]},{"name":"IHumanPresenceSensor2","features":[97]},{"name":"IHumanPresenceSensorExtension","features":[97]},{"name":"IHumanPresenceSensorReading","features":[97]},{"name":"IHumanPresenceSensorReading2","features":[97]},{"name":"IHumanPresenceSensorReadingChangedEventArgs","features":[97]},{"name":"IHumanPresenceSensorReadingUpdate","features":[97]},{"name":"IHumanPresenceSensorStatics","features":[97]},{"name":"IHumanPresenceSensorStatics2","features":[97]},{"name":"IHumanPresenceSettings","features":[97]},{"name":"IHumanPresenceSettings2","features":[97]},{"name":"IHumanPresenceSettingsStatics","features":[97]},{"name":"IInclinometer","features":[97]},{"name":"IInclinometer2","features":[97]},{"name":"IInclinometer3","features":[97]},{"name":"IInclinometer4","features":[97]},{"name":"IInclinometerDataThreshold","features":[97]},{"name":"IInclinometerDeviceId","features":[97]},{"name":"IInclinometerReading","features":[97]},{"name":"IInclinometerReading2","features":[97]},{"name":"IInclinometerReadingChangedEventArgs","features":[97]},{"name":"IInclinometerReadingYawAccuracy","features":[97]},{"name":"IInclinometerStatics","features":[97]},{"name":"IInclinometerStatics2","features":[97]},{"name":"IInclinometerStatics3","features":[97]},{"name":"IInclinometerStatics4","features":[97]},{"name":"ILightSensor","features":[97]},{"name":"ILightSensor2","features":[97]},{"name":"ILightSensor3","features":[97]},{"name":"ILightSensorDataThreshold","features":[97]},{"name":"ILightSensorDeviceId","features":[97]},{"name":"ILightSensorReading","features":[97]},{"name":"ILightSensorReading2","features":[97]},{"name":"ILightSensorReadingChangedEventArgs","features":[97]},{"name":"ILightSensorStatics","features":[97]},{"name":"ILightSensorStatics2","features":[97]},{"name":"ILockOnLeaveOptions","features":[97]},{"name":"IMagnetometer","features":[97]},{"name":"IMagnetometer2","features":[97]},{"name":"IMagnetometer3","features":[97]},{"name":"IMagnetometer4","features":[97]},{"name":"IMagnetometerDataThreshold","features":[97]},{"name":"IMagnetometerDeviceId","features":[97]},{"name":"IMagnetometerReading","features":[97]},{"name":"IMagnetometerReading2","features":[97]},{"name":"IMagnetometerReadingChangedEventArgs","features":[97]},{"name":"IMagnetometerStatics","features":[97]},{"name":"IMagnetometerStatics2","features":[97]},{"name":"IOrientationSensor","features":[97]},{"name":"IOrientationSensor2","features":[97]},{"name":"IOrientationSensor3","features":[97]},{"name":"IOrientationSensorDeviceId","features":[97]},{"name":"IOrientationSensorReading","features":[97]},{"name":"IOrientationSensorReading2","features":[97]},{"name":"IOrientationSensorReadingChangedEventArgs","features":[97]},{"name":"IOrientationSensorReadingYawAccuracy","features":[97]},{"name":"IOrientationSensorStatics","features":[97]},{"name":"IOrientationSensorStatics2","features":[97]},{"name":"IOrientationSensorStatics3","features":[97]},{"name":"IOrientationSensorStatics4","features":[97]},{"name":"IPedometer","features":[97]},{"name":"IPedometer2","features":[97]},{"name":"IPedometerDataThresholdFactory","features":[97]},{"name":"IPedometerReading","features":[97]},{"name":"IPedometerReadingChangedEventArgs","features":[97]},{"name":"IPedometerStatics","features":[97]},{"name":"IPedometerStatics2","features":[97]},{"name":"IProximitySensor","features":[97]},{"name":"IProximitySensorDataThresholdFactory","features":[97]},{"name":"IProximitySensorReading","features":[97]},{"name":"IProximitySensorReadingChangedEventArgs","features":[97]},{"name":"IProximitySensorStatics","features":[97]},{"name":"IProximitySensorStatics2","features":[97]},{"name":"ISensorDataThreshold","features":[97]},{"name":"ISensorDataThresholdTriggerDetails","features":[97]},{"name":"ISensorQuaternion","features":[97]},{"name":"ISensorRotationMatrix","features":[97]},{"name":"ISimpleOrientationSensor","features":[97]},{"name":"ISimpleOrientationSensor2","features":[97]},{"name":"ISimpleOrientationSensorDeviceId","features":[97]},{"name":"ISimpleOrientationSensorOrientationChangedEventArgs","features":[97]},{"name":"ISimpleOrientationSensorStatics","features":[97]},{"name":"ISimpleOrientationSensorStatics2","features":[97]},{"name":"IWakeOnApproachOptions","features":[97]},{"name":"Inclinometer","features":[97]},{"name":"InclinometerDataThreshold","features":[97]},{"name":"InclinometerReading","features":[97]},{"name":"InclinometerReadingChangedEventArgs","features":[97]},{"name":"LightSensor","features":[97]},{"name":"LightSensorDataThreshold","features":[97]},{"name":"LightSensorReading","features":[97]},{"name":"LightSensorReadingChangedEventArgs","features":[97]},{"name":"LockOnLeaveOptions","features":[97]},{"name":"Magnetometer","features":[97]},{"name":"MagnetometerAccuracy","features":[97]},{"name":"MagnetometerDataThreshold","features":[97]},{"name":"MagnetometerReading","features":[97]},{"name":"MagnetometerReadingChangedEventArgs","features":[97]},{"name":"OrientationSensor","features":[97]},{"name":"OrientationSensorReading","features":[97]},{"name":"OrientationSensorReadingChangedEventArgs","features":[97]},{"name":"Pedometer","features":[97]},{"name":"PedometerDataThreshold","features":[97]},{"name":"PedometerReading","features":[97]},{"name":"PedometerReadingChangedEventArgs","features":[97]},{"name":"PedometerStepKind","features":[97]},{"name":"ProximitySensor","features":[97]},{"name":"ProximitySensorDataThreshold","features":[97]},{"name":"ProximitySensorDisplayOnOffController","features":[97,76]},{"name":"ProximitySensorReading","features":[97]},{"name":"ProximitySensorReadingChangedEventArgs","features":[97]},{"name":"SensorDataThresholdTriggerDetails","features":[97]},{"name":"SensorOptimizationGoal","features":[97]},{"name":"SensorQuaternion","features":[97]},{"name":"SensorReadingType","features":[97]},{"name":"SensorRotationMatrix","features":[97]},{"name":"SensorType","features":[97]},{"name":"SimpleOrientation","features":[97]},{"name":"SimpleOrientationSensor","features":[97]},{"name":"SimpleOrientationSensorOrientationChangedEventArgs","features":[97]},{"name":"WakeOnApproachOptions","features":[97]}],"104":[{"name":"CustomSensor","features":[98]},{"name":"CustomSensorReading","features":[98]},{"name":"CustomSensorReadingChangedEventArgs","features":[98]},{"name":"ICustomSensor","features":[98]},{"name":"ICustomSensor2","features":[98]},{"name":"ICustomSensorReading","features":[98]},{"name":"ICustomSensorReading2","features":[98]},{"name":"ICustomSensorReadingChangedEventArgs","features":[98]},{"name":"ICustomSensorStatics","features":[98]}],"105":[{"name":"ErrorReceivedEventArgs","features":[99]},{"name":"IErrorReceivedEventArgs","features":[99]},{"name":"IPinChangedEventArgs","features":[99]},{"name":"ISerialDevice","features":[99]},{"name":"ISerialDeviceStatics","features":[99]},{"name":"PinChangedEventArgs","features":[99]},{"name":"SerialDevice","features":[99]},{"name":"SerialError","features":[99]},{"name":"SerialHandshake","features":[99]},{"name":"SerialParity","features":[99]},{"name":"SerialPinChange","features":[99]},{"name":"SerialStopBitCount","features":[99]}],"106":[{"name":"CardAddedEventArgs","features":[100]},{"name":"CardRemovedEventArgs","features":[100]},{"name":"ICardAddedEventArgs","features":[100]},{"name":"ICardRemovedEventArgs","features":[100]},{"name":"IKnownSmartCardAppletIds","features":[100]},{"name":"ISmartCard","features":[100]},{"name":"ISmartCardAppletIdGroup","features":[100]},{"name":"ISmartCardAppletIdGroup2","features":[100]},{"name":"ISmartCardAppletIdGroupFactory","features":[100]},{"name":"ISmartCardAppletIdGroupRegistration","features":[100]},{"name":"ISmartCardAppletIdGroupRegistration2","features":[100]},{"name":"ISmartCardAppletIdGroupStatics","features":[100]},{"name":"ISmartCardAutomaticResponseApdu","features":[100]},{"name":"ISmartCardAutomaticResponseApdu2","features":[100]},{"name":"ISmartCardAutomaticResponseApdu3","features":[100]},{"name":"ISmartCardAutomaticResponseApduFactory","features":[100]},{"name":"ISmartCardChallengeContext","features":[100]},{"name":"ISmartCardConnect","features":[100]},{"name":"ISmartCardConnection","features":[100]},{"name":"ISmartCardCryptogramGenerator","features":[100]},{"name":"ISmartCardCryptogramGenerator2","features":[100]},{"name":"ISmartCardCryptogramGeneratorStatics","features":[100]},{"name":"ISmartCardCryptogramGeneratorStatics2","features":[100]},{"name":"ISmartCardCryptogramGetAllCryptogramMaterialCharacteristicsResult","features":[100]},{"name":"ISmartCardCryptogramGetAllCryptogramMaterialPackageCharacteristicsResult","features":[100]},{"name":"ISmartCardCryptogramGetAllCryptogramStorageKeyCharacteristicsResult","features":[100]},{"name":"ISmartCardCryptogramMaterialCharacteristics","features":[100]},{"name":"ISmartCardCryptogramMaterialPackageCharacteristics","features":[100]},{"name":"ISmartCardCryptogramMaterialPossessionProof","features":[100]},{"name":"ISmartCardCryptogramPlacementStep","features":[100]},{"name":"ISmartCardCryptogramStorageKeyCharacteristics","features":[100]},{"name":"ISmartCardCryptogramStorageKeyInfo","features":[100]},{"name":"ISmartCardCryptogramStorageKeyInfo2","features":[100]},{"name":"ISmartCardEmulator","features":[100]},{"name":"ISmartCardEmulator2","features":[100]},{"name":"ISmartCardEmulatorApduReceivedEventArgs","features":[100]},{"name":"ISmartCardEmulatorApduReceivedEventArgs2","features":[100]},{"name":"ISmartCardEmulatorApduReceivedEventArgsWithCryptograms","features":[100]},{"name":"ISmartCardEmulatorConnectionDeactivatedEventArgs","features":[100]},{"name":"ISmartCardEmulatorConnectionProperties","features":[100]},{"name":"ISmartCardEmulatorStatics","features":[100]},{"name":"ISmartCardEmulatorStatics2","features":[100]},{"name":"ISmartCardEmulatorStatics3","features":[100]},{"name":"ISmartCardPinPolicy","features":[100]},{"name":"ISmartCardPinResetDeferral","features":[100]},{"name":"ISmartCardPinResetRequest","features":[100]},{"name":"ISmartCardProvisioning","features":[100]},{"name":"ISmartCardProvisioning2","features":[100]},{"name":"ISmartCardProvisioningStatics","features":[100]},{"name":"ISmartCardProvisioningStatics2","features":[100]},{"name":"ISmartCardReader","features":[100]},{"name":"ISmartCardReaderStatics","features":[100]},{"name":"ISmartCardTriggerDetails","features":[100]},{"name":"ISmartCardTriggerDetails2","features":[100]},{"name":"ISmartCardTriggerDetails3","features":[100]},{"name":"KnownSmartCardAppletIds","features":[100]},{"name":"SmartCard","features":[100]},{"name":"SmartCardActivationPolicyChangeResult","features":[100]},{"name":"SmartCardAppletIdGroup","features":[100]},{"name":"SmartCardAppletIdGroupActivationPolicy","features":[100]},{"name":"SmartCardAppletIdGroupRegistration","features":[100]},{"name":"SmartCardAutomaticResponseApdu","features":[100]},{"name":"SmartCardAutomaticResponseStatus","features":[100]},{"name":"SmartCardBackgroundTriggerContract","features":[100]},{"name":"SmartCardChallengeContext","features":[100]},{"name":"SmartCardConnection","features":[100]},{"name":"SmartCardCryptogramAlgorithm","features":[100]},{"name":"SmartCardCryptogramGenerator","features":[100]},{"name":"SmartCardCryptogramGeneratorOperationStatus","features":[100]},{"name":"SmartCardCryptogramGetAllCryptogramMaterialCharacteristicsResult","features":[100]},{"name":"SmartCardCryptogramGetAllCryptogramMaterialPackageCharacteristicsResult","features":[100]},{"name":"SmartCardCryptogramGetAllCryptogramStorageKeyCharacteristicsResult","features":[100]},{"name":"SmartCardCryptogramMaterialCharacteristics","features":[100]},{"name":"SmartCardCryptogramMaterialPackageCharacteristics","features":[100]},{"name":"SmartCardCryptogramMaterialPackageConfirmationResponseFormat","features":[100]},{"name":"SmartCardCryptogramMaterialPackageFormat","features":[100]},{"name":"SmartCardCryptogramMaterialPossessionProof","features":[100]},{"name":"SmartCardCryptogramMaterialProtectionMethod","features":[100]},{"name":"SmartCardCryptogramMaterialType","features":[100]},{"name":"SmartCardCryptogramPlacementOptions","features":[100]},{"name":"SmartCardCryptogramPlacementStep","features":[100]},{"name":"SmartCardCryptogramStorageKeyAlgorithm","features":[100]},{"name":"SmartCardCryptogramStorageKeyCapabilities","features":[100]},{"name":"SmartCardCryptogramStorageKeyCharacteristics","features":[100]},{"name":"SmartCardCryptogramStorageKeyInfo","features":[100]},{"name":"SmartCardCryptographicKeyAttestationStatus","features":[100]},{"name":"SmartCardEmulationCategory","features":[100]},{"name":"SmartCardEmulationType","features":[100]},{"name":"SmartCardEmulator","features":[100]},{"name":"SmartCardEmulatorApduReceivedEventArgs","features":[100]},{"name":"SmartCardEmulatorConnectionDeactivatedEventArgs","features":[100]},{"name":"SmartCardEmulatorConnectionDeactivatedReason","features":[100]},{"name":"SmartCardEmulatorConnectionProperties","features":[100]},{"name":"SmartCardEmulatorConnectionSource","features":[100]},{"name":"SmartCardEmulatorContract","features":[100]},{"name":"SmartCardEmulatorEnablementPolicy","features":[100]},{"name":"SmartCardLaunchBehavior","features":[100]},{"name":"SmartCardPinCharacterPolicyOption","features":[100]},{"name":"SmartCardPinPolicy","features":[100]},{"name":"SmartCardPinResetDeferral","features":[100]},{"name":"SmartCardPinResetHandler","features":[100]},{"name":"SmartCardPinResetRequest","features":[100]},{"name":"SmartCardProvisioning","features":[100]},{"name":"SmartCardReader","features":[100]},{"name":"SmartCardReaderKind","features":[100]},{"name":"SmartCardReaderStatus","features":[100]},{"name":"SmartCardStatus","features":[100]},{"name":"SmartCardTriggerDetails","features":[100]},{"name":"SmartCardTriggerType","features":[100]},{"name":"SmartCardUnlockPromptingBehavior","features":[100]}],"107":[{"name":"CellularClass","features":[101]},{"name":"DeleteSmsMessageOperation","features":[101,76]},{"name":"DeleteSmsMessagesOperation","features":[101,76]},{"name":"GetSmsDeviceOperation","features":[101,76]},{"name":"GetSmsMessageOperation","features":[101,76]},{"name":"GetSmsMessagesOperation","features":[101,36]},{"name":"ISmsAppMessage","features":[101]},{"name":"ISmsBinaryMessage","features":[101]},{"name":"ISmsBroadcastMessage","features":[101]},{"name":"ISmsDevice","features":[101]},{"name":"ISmsDevice2","features":[101]},{"name":"ISmsDevice2Statics","features":[101]},{"name":"ISmsDeviceMessageStore","features":[101]},{"name":"ISmsDeviceStatics","features":[101]},{"name":"ISmsDeviceStatics2","features":[101]},{"name":"ISmsFilterRule","features":[101]},{"name":"ISmsFilterRuleFactory","features":[101]},{"name":"ISmsFilterRules","features":[101]},{"name":"ISmsFilterRulesFactory","features":[101]},{"name":"ISmsMessage","features":[101]},{"name":"ISmsMessageBase","features":[101]},{"name":"ISmsMessageReceivedEventArgs","features":[101]},{"name":"ISmsMessageReceivedTriggerDetails","features":[101]},{"name":"ISmsMessageRegistration","features":[101]},{"name":"ISmsMessageRegistrationStatics","features":[101]},{"name":"ISmsReceivedEventDetails","features":[101]},{"name":"ISmsReceivedEventDetails2","features":[101]},{"name":"ISmsSendMessageResult","features":[101]},{"name":"ISmsStatusMessage","features":[101]},{"name":"ISmsTextMessage","features":[101]},{"name":"ISmsTextMessage2","features":[101]},{"name":"ISmsTextMessageStatics","features":[101]},{"name":"ISmsVoicemailMessage","features":[101]},{"name":"ISmsWapMessage","features":[101]},{"name":"LegacySmsApiContract","features":[101]},{"name":"SendSmsMessageOperation","features":[101,76]},{"name":"SmsAppMessage","features":[101]},{"name":"SmsBinaryMessage","features":[101]},{"name":"SmsBroadcastMessage","features":[101]},{"name":"SmsBroadcastType","features":[101]},{"name":"SmsDataFormat","features":[101]},{"name":"SmsDevice","features":[101]},{"name":"SmsDevice2","features":[101]},{"name":"SmsDeviceMessageStore","features":[101]},{"name":"SmsDeviceStatus","features":[101]},{"name":"SmsDeviceStatusChangedEventHandler","features":[101]},{"name":"SmsEncodedLength","features":[101]},{"name":"SmsEncoding","features":[101]},{"name":"SmsFilterActionType","features":[101]},{"name":"SmsFilterRule","features":[101]},{"name":"SmsFilterRules","features":[101]},{"name":"SmsGeographicalScope","features":[101]},{"name":"SmsMessageClass","features":[101]},{"name":"SmsMessageFilter","features":[101]},{"name":"SmsMessageReceivedEventArgs","features":[101]},{"name":"SmsMessageReceivedEventHandler","features":[101]},{"name":"SmsMessageReceivedTriggerDetails","features":[101]},{"name":"SmsMessageRegistration","features":[101]},{"name":"SmsMessageType","features":[101]},{"name":"SmsModemErrorCode","features":[101]},{"name":"SmsReceivedEventDetails","features":[101]},{"name":"SmsSendMessageResult","features":[101]},{"name":"SmsStatusMessage","features":[101]},{"name":"SmsTextMessage","features":[101]},{"name":"SmsTextMessage2","features":[101]},{"name":"SmsVoicemailMessage","features":[101]},{"name":"SmsWapMessage","features":[101]}],"108":[{"name":"ISpiBusInfo","features":[102]},{"name":"ISpiConnectionSettings","features":[102]},{"name":"ISpiConnectionSettingsFactory","features":[102]},{"name":"ISpiController","features":[102]},{"name":"ISpiControllerStatics","features":[102]},{"name":"ISpiDevice","features":[102]},{"name":"ISpiDeviceStatics","features":[102]},{"name":"SpiBusInfo","features":[102]},{"name":"SpiConnectionSettings","features":[102]},{"name":"SpiController","features":[102]},{"name":"SpiDevice","features":[102]},{"name":"SpiMode","features":[102]},{"name":"SpiSharingMode","features":[102]}],"109":[{"name":"IProviderSpiConnectionSettings","features":[103]},{"name":"IProviderSpiConnectionSettingsFactory","features":[103]},{"name":"ISpiControllerProvider","features":[103]},{"name":"ISpiDeviceProvider","features":[103]},{"name":"ISpiProvider","features":[103]},{"name":"ProviderSpiConnectionSettings","features":[103]},{"name":"ProviderSpiMode","features":[103]},{"name":"ProviderSpiSharingMode","features":[103]}],"110":[{"name":"IUsbBulkInEndpointDescriptor","features":[104]},{"name":"IUsbBulkInPipe","features":[104]},{"name":"IUsbBulkOutEndpointDescriptor","features":[104]},{"name":"IUsbBulkOutPipe","features":[104]},{"name":"IUsbConfiguration","features":[104]},{"name":"IUsbConfigurationDescriptor","features":[104]},{"name":"IUsbConfigurationDescriptorStatics","features":[104]},{"name":"IUsbControlRequestType","features":[104]},{"name":"IUsbDescriptor","features":[104]},{"name":"IUsbDevice","features":[104]},{"name":"IUsbDeviceClass","features":[104]},{"name":"IUsbDeviceClasses","features":[104]},{"name":"IUsbDeviceClassesStatics","features":[104]},{"name":"IUsbDeviceDescriptor","features":[104]},{"name":"IUsbDeviceStatics","features":[104]},{"name":"IUsbEndpointDescriptor","features":[104]},{"name":"IUsbEndpointDescriptorStatics","features":[104]},{"name":"IUsbInterface","features":[104]},{"name":"IUsbInterfaceDescriptor","features":[104]},{"name":"IUsbInterfaceDescriptorStatics","features":[104]},{"name":"IUsbInterfaceSetting","features":[104]},{"name":"IUsbInterruptInEndpointDescriptor","features":[104]},{"name":"IUsbInterruptInEventArgs","features":[104]},{"name":"IUsbInterruptInPipe","features":[104]},{"name":"IUsbInterruptOutEndpointDescriptor","features":[104]},{"name":"IUsbInterruptOutPipe","features":[104]},{"name":"IUsbSetupPacket","features":[104]},{"name":"IUsbSetupPacketFactory","features":[104]},{"name":"UsbBulkInEndpointDescriptor","features":[104]},{"name":"UsbBulkInPipe","features":[104]},{"name":"UsbBulkOutEndpointDescriptor","features":[104]},{"name":"UsbBulkOutPipe","features":[104]},{"name":"UsbConfiguration","features":[104]},{"name":"UsbConfigurationDescriptor","features":[104]},{"name":"UsbControlRecipient","features":[104]},{"name":"UsbControlRequestType","features":[104]},{"name":"UsbControlTransferType","features":[104]},{"name":"UsbDescriptor","features":[104]},{"name":"UsbDevice","features":[104]},{"name":"UsbDeviceClass","features":[104]},{"name":"UsbDeviceClasses","features":[104]},{"name":"UsbDeviceDescriptor","features":[104]},{"name":"UsbEndpointDescriptor","features":[104]},{"name":"UsbEndpointType","features":[104]},{"name":"UsbInterface","features":[104]},{"name":"UsbInterfaceDescriptor","features":[104]},{"name":"UsbInterfaceSetting","features":[104]},{"name":"UsbInterruptInEndpointDescriptor","features":[104]},{"name":"UsbInterruptInEventArgs","features":[104]},{"name":"UsbInterruptInPipe","features":[104]},{"name":"UsbInterruptOutEndpointDescriptor","features":[104]},{"name":"UsbInterruptOutPipe","features":[104]},{"name":"UsbReadOptions","features":[104]},{"name":"UsbSetupPacket","features":[104]},{"name":"UsbTransferDirection","features":[104]},{"name":"UsbWriteOptions","features":[104]}],"111":[{"name":"IWiFiAdapter","features":[105]},{"name":"IWiFiAdapter2","features":[105]},{"name":"IWiFiAdapterStatics","features":[105]},{"name":"IWiFiAvailableNetwork","features":[105]},{"name":"IWiFiConnectionResult","features":[105]},{"name":"IWiFiNetworkReport","features":[105]},{"name":"IWiFiOnDemandHotspotConnectTriggerDetails","features":[105]},{"name":"IWiFiOnDemandHotspotConnectionResult","features":[105]},{"name":"IWiFiOnDemandHotspotNetwork","features":[105]},{"name":"IWiFiOnDemandHotspotNetworkProperties","features":[105]},{"name":"IWiFiOnDemandHotspotNetworkStatics","features":[105]},{"name":"IWiFiWpsConfigurationResult","features":[105]},{"name":"WiFiAccessStatus","features":[105]},{"name":"WiFiAdapter","features":[105]},{"name":"WiFiAvailableNetwork","features":[105]},{"name":"WiFiConnectionMethod","features":[105]},{"name":"WiFiConnectionResult","features":[105]},{"name":"WiFiConnectionStatus","features":[105]},{"name":"WiFiNetworkKind","features":[105]},{"name":"WiFiNetworkReport","features":[105]},{"name":"WiFiOnDemandHotspotAvailability","features":[105]},{"name":"WiFiOnDemandHotspotCellularBars","features":[105]},{"name":"WiFiOnDemandHotspotConnectStatus","features":[105]},{"name":"WiFiOnDemandHotspotConnectTriggerDetails","features":[105]},{"name":"WiFiOnDemandHotspotConnectionResult","features":[105]},{"name":"WiFiOnDemandHotspotNetwork","features":[105]},{"name":"WiFiOnDemandHotspotNetworkProperties","features":[105]},{"name":"WiFiPhyKind","features":[105]},{"name":"WiFiReconnectionKind","features":[105]},{"name":"WiFiWpsConfigurationResult","features":[105]},{"name":"WiFiWpsConfigurationStatus","features":[105]},{"name":"WiFiWpsKind","features":[105]}],"112":[{"name":"IWiFiDirectAdvertisement","features":[106]},{"name":"IWiFiDirectAdvertisement2","features":[106]},{"name":"IWiFiDirectAdvertisementPublisher","features":[106]},{"name":"IWiFiDirectAdvertisementPublisherStatusChangedEventArgs","features":[106]},{"name":"IWiFiDirectConnectionListener","features":[106]},{"name":"IWiFiDirectConnectionParameters","features":[106]},{"name":"IWiFiDirectConnectionParameters2","features":[106]},{"name":"IWiFiDirectConnectionParametersStatics","features":[106]},{"name":"IWiFiDirectConnectionRequest","features":[106]},{"name":"IWiFiDirectConnectionRequestedEventArgs","features":[106]},{"name":"IWiFiDirectDevice","features":[106]},{"name":"IWiFiDirectDeviceStatics","features":[106]},{"name":"IWiFiDirectDeviceStatics2","features":[106]},{"name":"IWiFiDirectInformationElement","features":[106]},{"name":"IWiFiDirectInformationElementStatics","features":[106]},{"name":"IWiFiDirectLegacySettings","features":[106]},{"name":"WiFiDirectAdvertisement","features":[106]},{"name":"WiFiDirectAdvertisementListenStateDiscoverability","features":[106]},{"name":"WiFiDirectAdvertisementPublisher","features":[106]},{"name":"WiFiDirectAdvertisementPublisherStatus","features":[106]},{"name":"WiFiDirectAdvertisementPublisherStatusChangedEventArgs","features":[106]},{"name":"WiFiDirectConfigurationMethod","features":[106]},{"name":"WiFiDirectConnectionListener","features":[106]},{"name":"WiFiDirectConnectionParameters","features":[106]},{"name":"WiFiDirectConnectionRequest","features":[106]},{"name":"WiFiDirectConnectionRequestedEventArgs","features":[106]},{"name":"WiFiDirectConnectionStatus","features":[106]},{"name":"WiFiDirectDevice","features":[106]},{"name":"WiFiDirectDeviceSelectorType","features":[106]},{"name":"WiFiDirectError","features":[106]},{"name":"WiFiDirectInformationElement","features":[106]},{"name":"WiFiDirectLegacySettings","features":[106]},{"name":"WiFiDirectPairingProcedure","features":[106]}],"113":[{"name":"IWiFiDirectService","features":[107]},{"name":"IWiFiDirectServiceAdvertiser","features":[107]},{"name":"IWiFiDirectServiceAdvertiserFactory","features":[107]},{"name":"IWiFiDirectServiceAutoAcceptSessionConnectedEventArgs","features":[107]},{"name":"IWiFiDirectServiceProvisioningInfo","features":[107]},{"name":"IWiFiDirectServiceRemotePortAddedEventArgs","features":[107]},{"name":"IWiFiDirectServiceSession","features":[107]},{"name":"IWiFiDirectServiceSessionDeferredEventArgs","features":[107]},{"name":"IWiFiDirectServiceSessionRequest","features":[107]},{"name":"IWiFiDirectServiceSessionRequestedEventArgs","features":[107]},{"name":"IWiFiDirectServiceStatics","features":[107]},{"name":"WiFiDirectService","features":[107]},{"name":"WiFiDirectServiceAdvertisementStatus","features":[107]},{"name":"WiFiDirectServiceAdvertiser","features":[107]},{"name":"WiFiDirectServiceAutoAcceptSessionConnectedEventArgs","features":[107]},{"name":"WiFiDirectServiceConfigurationMethod","features":[107]},{"name":"WiFiDirectServiceError","features":[107]},{"name":"WiFiDirectServiceIPProtocol","features":[107]},{"name":"WiFiDirectServiceProvisioningInfo","features":[107]},{"name":"WiFiDirectServiceRemotePortAddedEventArgs","features":[107]},{"name":"WiFiDirectServiceSession","features":[107]},{"name":"WiFiDirectServiceSessionDeferredEventArgs","features":[107]},{"name":"WiFiDirectServiceSessionErrorStatus","features":[107]},{"name":"WiFiDirectServiceSessionRequest","features":[107]},{"name":"WiFiDirectServiceSessionRequestedEventArgs","features":[107]},{"name":"WiFiDirectServiceSessionStatus","features":[107]},{"name":"WiFiDirectServiceStatus","features":[107]}],"114":[{"name":"DeviceLockdownContract","features":[108]},{"name":"DeviceLockdownProfile","features":[108]},{"name":"DeviceLockdownProfileInformation","features":[108]},{"name":"IDeviceLockdownProfileInformation","features":[108]},{"name":"IDeviceLockdownProfileStatics","features":[108]}],"115":[{"name":"AsyncActionCompletedHandler","features":[76]},{"name":"AsyncActionProgressHandler","features":[76]},{"name":"AsyncActionWithProgressCompletedHandler","features":[76]},{"name":"AsyncOperationCompletedHandler","features":[76]},{"name":"AsyncOperationProgressHandler","features":[76]},{"name":"AsyncOperationWithProgressCompletedHandler","features":[76]},{"name":"AsyncStatus","features":[76]},{"name":"DateTime","features":[76]},{"name":"Deferral","features":[76]},{"name":"DeferralCompletedHandler","features":[76]},{"name":"EventHandler","features":[76]},{"name":"EventRegistrationToken","features":[76]},{"name":"FoundationContract","features":[76]},{"name":"GuidHelper","features":[76]},{"name":"HResult","features":[76]},{"name":"IAsyncAction","features":[76]},{"name":"IAsyncActionWithProgress","features":[76]},{"name":"IAsyncInfo","features":[76]},{"name":"IAsyncOperation","features":[76]},{"name":"IAsyncOperationWithProgress","features":[76]},{"name":"IClosable","features":[76]},{"name":"IDeferral","features":[76]},{"name":"IDeferralFactory","features":[76]},{"name":"IGetActivationFactory","features":[76]},{"name":"IGuidHelperStatics","features":[76]},{"name":"IMemoryBuffer","features":[76]},{"name":"IMemoryBufferFactory","features":[76]},{"name":"IMemoryBufferReference","features":[76]},{"name":"IPropertyValue","features":[76]},{"name":"IPropertyValueStatics","features":[76]},{"name":"IReference","features":[76]},{"name":"IReferenceArray","features":[76]},{"name":"IStringable","features":[76]},{"name":"IUriEscapeStatics","features":[76]},{"name":"IUriRuntimeClass","features":[76]},{"name":"IUriRuntimeClassFactory","features":[76]},{"name":"IUriRuntimeClassWithAbsoluteCanonicalUri","features":[76]},{"name":"IWwwFormUrlDecoderEntry","features":[76]},{"name":"IWwwFormUrlDecoderRuntimeClass","features":[76]},{"name":"IWwwFormUrlDecoderRuntimeClassFactory","features":[76]},{"name":"MemoryBuffer","features":[76]},{"name":"Point","features":[76]},{"name":"PropertyType","features":[76]},{"name":"PropertyValue","features":[76]},{"name":"Rect","features":[76]},{"name":"Size","features":[76]},{"name":"TimeSpan","features":[76]},{"name":"TypedEventHandler","features":[76]},{"name":"UniversalApiContract","features":[76]},{"name":"Uri","features":[76]},{"name":"WwwFormUrlDecoder","features":[76]},{"name":"WwwFormUrlDecoderEntry","features":[76]}],"116":[{"name":"CollectionChange","features":[36]},{"name":"IIterable","features":[36]},{"name":"IIterator","features":[36]},{"name":"IKeyValuePair","features":[36]},{"name":"IMap","features":[36]},{"name":"IMapChangedEventArgs","features":[36]},{"name":"IMapView","features":[36]},{"name":"IObservableMap","features":[36]},{"name":"IObservableVector","features":[36]},{"name":"IPropertySet","features":[36]},{"name":"IVector","features":[36]},{"name":"IVectorChangedEventArgs","features":[36]},{"name":"IVectorView","features":[36]},{"name":"MapChangedEventHandler","features":[36]},{"name":"PropertySet","features":[36]},{"name":"StringMap","features":[36]},{"name":"ValueSet","features":[36]},{"name":"VectorChangedEventHandler","features":[36]}],"117":[{"name":"AsyncCausalityTracer","features":[109]},{"name":"CausalityRelation","features":[109]},{"name":"CausalitySource","features":[109]},{"name":"CausalitySynchronousWork","features":[109]},{"name":"CausalityTraceLevel","features":[109]},{"name":"ErrorDetails","features":[109]},{"name":"ErrorOptions","features":[109]},{"name":"FileLoggingSession","features":[109]},{"name":"IAsyncCausalityTracerStatics","features":[109]},{"name":"IErrorDetails","features":[109]},{"name":"IErrorDetailsStatics","features":[109]},{"name":"IErrorReportingSettings","features":[109]},{"name":"IFileLoggingSession","features":[109]},{"name":"IFileLoggingSessionFactory","features":[109]},{"name":"ILogFileGeneratedEventArgs","features":[109]},{"name":"ILoggingActivity","features":[109]},{"name":"ILoggingActivity2","features":[109]},{"name":"ILoggingActivityFactory","features":[109]},{"name":"ILoggingChannel","features":[109]},{"name":"ILoggingChannel2","features":[109]},{"name":"ILoggingChannelFactory","features":[109]},{"name":"ILoggingChannelFactory2","features":[109]},{"name":"ILoggingChannelOptions","features":[109]},{"name":"ILoggingChannelOptionsFactory","features":[109]},{"name":"ILoggingFields","features":[109]},{"name":"ILoggingOptions","features":[109]},{"name":"ILoggingOptionsFactory","features":[109]},{"name":"ILoggingSession","features":[109]},{"name":"ILoggingSessionFactory","features":[109]},{"name":"ILoggingTarget","features":[109]},{"name":"ITracingStatusChangedEventArgs","features":[109]},{"name":"LogFileGeneratedEventArgs","features":[109]},{"name":"LoggingActivity","features":[109]},{"name":"LoggingChannel","features":[109]},{"name":"LoggingChannelOptions","features":[109]},{"name":"LoggingFieldFormat","features":[109]},{"name":"LoggingFields","features":[109]},{"name":"LoggingLevel","features":[109]},{"name":"LoggingOpcode","features":[109]},{"name":"LoggingOptions","features":[109]},{"name":"LoggingSession","features":[109]},{"name":"RuntimeBrokerErrorSettings","features":[109]},{"name":"TracingStatusChangedEventArgs","features":[109]}],"118":[{"name":"ActivatableAttribute","features":[110]},{"name":"AllowForWebAttribute","features":[110]},{"name":"AllowMultipleAttribute","features":[110]},{"name":"ApiContractAttribute","features":[110]},{"name":"ApiInformation","features":[110]},{"name":"AttributeNameAttribute","features":[110]},{"name":"AttributeTargets","features":[110]},{"name":"AttributeUsageAttribute","features":[110]},{"name":"ComposableAttribute","features":[110]},{"name":"CompositionType","features":[110]},{"name":"ContractVersionAttribute","features":[110]},{"name":"CreateFromStringAttribute","features":[110]},{"name":"DefaultAttribute","features":[110]},{"name":"DefaultOverloadAttribute","features":[110]},{"name":"DeprecatedAttribute","features":[110]},{"name":"DeprecationType","features":[110]},{"name":"DualApiPartitionAttribute","features":[110]},{"name":"ExclusiveToAttribute","features":[110]},{"name":"ExperimentalAttribute","features":[110]},{"name":"FastAbiAttribute","features":[110]},{"name":"FeatureAttribute","features":[110]},{"name":"FeatureStage","features":[110]},{"name":"GCPressureAmount","features":[110]},{"name":"GCPressureAttribute","features":[110]},{"name":"GuidAttribute","features":[110]},{"name":"HasVariantAttribute","features":[110]},{"name":"IApiInformationStatics","features":[110]},{"name":"InternalAttribute","features":[110]},{"name":"LengthIsAttribute","features":[110]},{"name":"MarshalingBehaviorAttribute","features":[110]},{"name":"MarshalingType","features":[110]},{"name":"MetadataMarshalAttribute","features":[110]},{"name":"MuseAttribute","features":[110]},{"name":"NoExceptionAttribute","features":[110]},{"name":"OverloadAttribute","features":[110]},{"name":"OverridableAttribute","features":[110]},{"name":"Platform","features":[110]},{"name":"PlatformAttribute","features":[110]},{"name":"PreviousContractVersionAttribute","features":[110]},{"name":"ProtectedAttribute","features":[110]},{"name":"RangeAttribute","features":[110]},{"name":"RemoteAsyncAttribute","features":[110]},{"name":"StaticAttribute","features":[110]},{"name":"ThreadingAttribute","features":[110]},{"name":"ThreadingModel","features":[110]},{"name":"VariantAttribute","features":[110]},{"name":"VersionAttribute","features":[110]},{"name":"WebHostHiddenAttribute","features":[110]}],"119":[{"name":"Matrix3x2","features":[68]},{"name":"Matrix4x4","features":[68]},{"name":"Plane","features":[68]},{"name":"Quaternion","features":[68]},{"name":"Rational","features":[68]},{"name":"Vector2","features":[68]},{"name":"Vector3","features":[68]},{"name":"Vector4","features":[68]}],"120":[{"name":"ArcadeStick","features":[111]},{"name":"ArcadeStickButtons","features":[111]},{"name":"ArcadeStickReading","features":[111]},{"name":"FlightStick","features":[111]},{"name":"FlightStickButtons","features":[111]},{"name":"FlightStickReading","features":[111]},{"name":"GameControllerButtonLabel","features":[111]},{"name":"GameControllerSwitchKind","features":[111]},{"name":"GameControllerSwitchPosition","features":[111]},{"name":"Gamepad","features":[111]},{"name":"GamepadButtons","features":[111]},{"name":"GamepadReading","features":[111]},{"name":"GamepadVibration","features":[111]},{"name":"GamingInputPreviewContract","features":[111]},{"name":"Headset","features":[111]},{"name":"IArcadeStick","features":[111]},{"name":"IArcadeStickStatics","features":[111]},{"name":"IArcadeStickStatics2","features":[111]},{"name":"IFlightStick","features":[111]},{"name":"IFlightStickStatics","features":[111]},{"name":"IGameController","features":[111]},{"name":"IGameControllerBatteryInfo","features":[111]},{"name":"IGamepad","features":[111]},{"name":"IGamepad2","features":[111]},{"name":"IGamepadStatics","features":[111]},{"name":"IGamepadStatics2","features":[111]},{"name":"IHeadset","features":[111]},{"name":"IRacingWheel","features":[111]},{"name":"IRacingWheelStatics","features":[111]},{"name":"IRacingWheelStatics2","features":[111]},{"name":"IRawGameController","features":[111]},{"name":"IRawGameController2","features":[111]},{"name":"IRawGameControllerStatics","features":[111]},{"name":"IUINavigationController","features":[111]},{"name":"IUINavigationControllerStatics","features":[111]},{"name":"IUINavigationControllerStatics2","features":[111]},{"name":"OptionalUINavigationButtons","features":[111]},{"name":"RacingWheel","features":[111]},{"name":"RacingWheelButtons","features":[111]},{"name":"RacingWheelReading","features":[111]},{"name":"RawGameController","features":[111]},{"name":"RequiredUINavigationButtons","features":[111]},{"name":"UINavigationController","features":[111]},{"name":"UINavigationReading","features":[111]}],"121":[{"name":"GameControllerFactoryManager","features":[112]},{"name":"GameControllerVersionInfo","features":[112]},{"name":"GipFirmwareUpdateProgress","features":[112]},{"name":"GipFirmwareUpdateResult","features":[112]},{"name":"GipFirmwareUpdateStatus","features":[112]},{"name":"GipGameControllerProvider","features":[112]},{"name":"GipMessageClass","features":[112]},{"name":"HidGameControllerProvider","features":[112]},{"name":"ICustomGameControllerFactory","features":[112]},{"name":"IGameControllerFactoryManagerStatics","features":[112]},{"name":"IGameControllerFactoryManagerStatics2","features":[112]},{"name":"IGameControllerInputSink","features":[112]},{"name":"IGameControllerProvider","features":[112]},{"name":"IGipFirmwareUpdateResult","features":[112]},{"name":"IGipGameControllerInputSink","features":[112]},{"name":"IGipGameControllerProvider","features":[112]},{"name":"IHidGameControllerInputSink","features":[112]},{"name":"IHidGameControllerProvider","features":[112]},{"name":"IXusbGameControllerInputSink","features":[112]},{"name":"IXusbGameControllerProvider","features":[112]},{"name":"XusbDeviceSubtype","features":[112]},{"name":"XusbDeviceType","features":[112]},{"name":"XusbGameControllerProvider","features":[112]}],"122":[{"name":"ConditionForceEffect","features":[113]},{"name":"ConditionForceEffectKind","features":[113]},{"name":"ConstantForceEffect","features":[113]},{"name":"ForceFeedbackEffectAxes","features":[113]},{"name":"ForceFeedbackEffectState","features":[113]},{"name":"ForceFeedbackLoadEffectResult","features":[113]},{"name":"ForceFeedbackMotor","features":[113]},{"name":"IConditionForceEffect","features":[113]},{"name":"IConditionForceEffectFactory","features":[113]},{"name":"IConstantForceEffect","features":[113]},{"name":"IForceFeedbackEffect","features":[113]},{"name":"IForceFeedbackMotor","features":[113]},{"name":"IPeriodicForceEffect","features":[113]},{"name":"IPeriodicForceEffectFactory","features":[113]},{"name":"IRampForceEffect","features":[113]},{"name":"PeriodicForceEffect","features":[113]},{"name":"PeriodicForceEffectKind","features":[113]},{"name":"RampForceEffect","features":[113]}],"123":[{"name":"GameControllerProviderInfo","features":[114]},{"name":"IGameControllerProviderInfoStatics","features":[114]}],"124":[{"name":"GamesEnumerationContract","features":[115]}],"125":[{"name":"GameList","features":[116]},{"name":"GameListCategory","features":[116]},{"name":"GameListChangedEventHandler","features":[116]},{"name":"GameListEntry","features":[116]},{"name":"GameListEntryLaunchableState","features":[116]},{"name":"GameListRemovedEventHandler","features":[116]},{"name":"GameModeConfiguration","features":[116]},{"name":"GameModeUserConfiguration","features":[116]},{"name":"IGameListEntry","features":[116]},{"name":"IGameListEntry2","features":[116]},{"name":"IGameListStatics","features":[116]},{"name":"IGameListStatics2","features":[116]},{"name":"IGameModeConfiguration","features":[116]},{"name":"IGameModeUserConfiguration","features":[116]},{"name":"IGameModeUserConfigurationStatics","features":[116]}],"126":[{"name":"GameBar","features":[117]},{"name":"GameChatMessageOrigin","features":[117]},{"name":"GameChatMessageReceivedEventArgs","features":[117]},{"name":"GameChatOverlay","features":[117]},{"name":"GameChatOverlayContract","features":[117]},{"name":"GameChatOverlayMessageSource","features":[117]},{"name":"GameChatOverlayPosition","features":[117]},{"name":"GameUIProviderActivatedEventArgs","features":[117]},{"name":"GamingUIProviderContract","features":[117]},{"name":"IGameBarStatics","features":[117]},{"name":"IGameChatMessageReceivedEventArgs","features":[117]},{"name":"IGameChatOverlay","features":[117]},{"name":"IGameChatOverlayMessageSource","features":[117]},{"name":"IGameChatOverlayStatics","features":[117]},{"name":"IGameUIProviderActivatedEventArgs","features":[117]}],"127":[{"name":"StorageApiContract","features":[118]}],"128":[{"name":"GameSaveBlobGetResult","features":[119]},{"name":"GameSaveBlobInfo","features":[119]},{"name":"GameSaveBlobInfoGetResult","features":[119]},{"name":"GameSaveBlobInfoQuery","features":[119]},{"name":"GameSaveContainer","features":[119]},{"name":"GameSaveContainerInfo","features":[119]},{"name":"GameSaveContainerInfoGetResult","features":[119]},{"name":"GameSaveContainerInfoQuery","features":[119]},{"name":"GameSaveErrorStatus","features":[119]},{"name":"GameSaveOperationResult","features":[119]},{"name":"GameSaveProvider","features":[119]},{"name":"GameSaveProviderGetResult","features":[119]},{"name":"IGameSaveBlobGetResult","features":[119]},{"name":"IGameSaveBlobInfo","features":[119]},{"name":"IGameSaveBlobInfoGetResult","features":[119]},{"name":"IGameSaveBlobInfoQuery","features":[119]},{"name":"IGameSaveContainer","features":[119]},{"name":"IGameSaveContainerInfo","features":[119]},{"name":"IGameSaveContainerInfoGetResult","features":[119]},{"name":"IGameSaveContainerInfoQuery","features":[119]},{"name":"IGameSaveOperationResult","features":[119]},{"name":"IGameSaveProvider","features":[119]},{"name":"IGameSaveProviderGetResult","features":[119]},{"name":"IGameSaveProviderStatics","features":[119]}],"129":[{"name":"ApplicationLanguages","features":[120]},{"name":"Calendar","features":[120]},{"name":"CalendarIdentifiers","features":[120]},{"name":"ClockIdentifiers","features":[120]},{"name":"CurrencyAmount","features":[120]},{"name":"CurrencyIdentifiers","features":[120]},{"name":"DayOfWeek","features":[120]},{"name":"GeographicRegion","features":[120]},{"name":"GlobalizationJapanesePhoneticAnalyzerContract","features":[120]},{"name":"IApplicationLanguagesStatics","features":[120]},{"name":"IApplicationLanguagesStatics2","features":[120]},{"name":"ICalendar","features":[120]},{"name":"ICalendarFactory","features":[120]},{"name":"ICalendarFactory2","features":[120]},{"name":"ICalendarIdentifiersStatics","features":[120]},{"name":"ICalendarIdentifiersStatics2","features":[120]},{"name":"ICalendarIdentifiersStatics3","features":[120]},{"name":"IClockIdentifiersStatics","features":[120]},{"name":"ICurrencyAmount","features":[120]},{"name":"ICurrencyAmountFactory","features":[120]},{"name":"ICurrencyIdentifiersStatics","features":[120]},{"name":"ICurrencyIdentifiersStatics2","features":[120]},{"name":"ICurrencyIdentifiersStatics3","features":[120]},{"name":"IGeographicRegion","features":[120]},{"name":"IGeographicRegionFactory","features":[120]},{"name":"IGeographicRegionStatics","features":[120]},{"name":"IJapanesePhoneme","features":[120]},{"name":"IJapanesePhoneticAnalyzerStatics","features":[120]},{"name":"ILanguage","features":[120]},{"name":"ILanguage2","features":[120]},{"name":"ILanguage3","features":[120]},{"name":"ILanguageExtensionSubtags","features":[120]},{"name":"ILanguageFactory","features":[120]},{"name":"ILanguageStatics","features":[120]},{"name":"ILanguageStatics2","features":[120]},{"name":"ILanguageStatics3","features":[120]},{"name":"INumeralSystemIdentifiersStatics","features":[120]},{"name":"INumeralSystemIdentifiersStatics2","features":[120]},{"name":"ITimeZoneOnCalendar","features":[120]},{"name":"JapanesePhoneme","features":[120]},{"name":"JapanesePhoneticAnalyzer","features":[120]},{"name":"Language","features":[120]},{"name":"LanguageLayoutDirection","features":[120]},{"name":"NumeralSystemIdentifiers","features":[120]}],"130":[{"name":"CharacterGrouping","features":[121]},{"name":"CharacterGroupings","features":[121]},{"name":"ICharacterGrouping","features":[121]},{"name":"ICharacterGroupings","features":[121]},{"name":"ICharacterGroupingsFactory","features":[121]}],"131":[{"name":"DateTimeFormatter","features":[122]},{"name":"DayFormat","features":[122]},{"name":"DayOfWeekFormat","features":[122]},{"name":"HourFormat","features":[122]},{"name":"IDateTimeFormatter","features":[122]},{"name":"IDateTimeFormatter2","features":[122]},{"name":"IDateTimeFormatterFactory","features":[122]},{"name":"IDateTimeFormatterStatics","features":[122]},{"name":"MinuteFormat","features":[122]},{"name":"MonthFormat","features":[122]},{"name":"SecondFormat","features":[122]},{"name":"YearFormat","features":[122]}],"132":[{"name":"ILanguageFont","features":[123]},{"name":"ILanguageFontGroup","features":[123]},{"name":"ILanguageFontGroupFactory","features":[123]},{"name":"LanguageFont","features":[123]},{"name":"LanguageFontGroup","features":[123]}],"133":[{"name":"CurrencyFormatter","features":[124]},{"name":"CurrencyFormatterMode","features":[124]},{"name":"DecimalFormatter","features":[124]},{"name":"ICurrencyFormatter","features":[124]},{"name":"ICurrencyFormatter2","features":[124]},{"name":"ICurrencyFormatterFactory","features":[124]},{"name":"IDecimalFormatterFactory","features":[124]},{"name":"IIncrementNumberRounder","features":[124]},{"name":"INumberFormatter","features":[124]},{"name":"INumberFormatter2","features":[124]},{"name":"INumberFormatterOptions","features":[124]},{"name":"INumberParser","features":[124]},{"name":"INumberRounder","features":[124]},{"name":"INumberRounderOption","features":[124]},{"name":"INumeralSystemTranslator","features":[124]},{"name":"INumeralSystemTranslatorFactory","features":[124]},{"name":"IPercentFormatterFactory","features":[124]},{"name":"IPermilleFormatterFactory","features":[124]},{"name":"ISignedZeroOption","features":[124]},{"name":"ISignificantDigitsNumberRounder","features":[124]},{"name":"ISignificantDigitsOption","features":[124]},{"name":"IncrementNumberRounder","features":[124]},{"name":"NumeralSystemTranslator","features":[124]},{"name":"PercentFormatter","features":[124]},{"name":"PermilleFormatter","features":[124]},{"name":"RoundingAlgorithm","features":[124]},{"name":"SignificantDigitsNumberRounder","features":[124]}],"134":[{"name":"IPhoneNumberFormatter","features":[125]},{"name":"IPhoneNumberFormatterStatics","features":[125]},{"name":"IPhoneNumberInfo","features":[125]},{"name":"IPhoneNumberInfoFactory","features":[125]},{"name":"IPhoneNumberInfoStatics","features":[125]},{"name":"PhoneNumberFormat","features":[125]},{"name":"PhoneNumberFormatter","features":[125]},{"name":"PhoneNumberInfo","features":[125]},{"name":"PhoneNumberMatchResult","features":[125]},{"name":"PhoneNumberParseResult","features":[125]},{"name":"PredictedPhoneNumberKind","features":[125]}],"135":[{"name":"DisplayAdapterId","features":[126]},{"name":"DisplayId","features":[126]},{"name":"IGeometrySource2D","features":[126]},{"name":"PointInt32","features":[126]},{"name":"RectInt32","features":[126]},{"name":"SizeInt32","features":[126]}],"136":[{"name":"Direct3D11CaptureFrame","features":[127]},{"name":"Direct3D11CaptureFramePool","features":[127]},{"name":"GraphicsCaptureAccess","features":[127]},{"name":"GraphicsCaptureAccessKind","features":[127]},{"name":"GraphicsCaptureItem","features":[127]},{"name":"GraphicsCapturePicker","features":[127]},{"name":"GraphicsCaptureSession","features":[127]},{"name":"IDirect3D11CaptureFrame","features":[127]},{"name":"IDirect3D11CaptureFramePool","features":[127]},{"name":"IDirect3D11CaptureFramePoolStatics","features":[127]},{"name":"IDirect3D11CaptureFramePoolStatics2","features":[127]},{"name":"IGraphicsCaptureAccessStatics","features":[127]},{"name":"IGraphicsCaptureItem","features":[127]},{"name":"IGraphicsCaptureItemStatics","features":[127]},{"name":"IGraphicsCaptureItemStatics2","features":[127]},{"name":"IGraphicsCapturePicker","features":[127]},{"name":"IGraphicsCaptureSession","features":[127]},{"name":"IGraphicsCaptureSession2","features":[127]},{"name":"IGraphicsCaptureSession3","features":[127]},{"name":"IGraphicsCaptureSessionStatics","features":[127]}],"137":[{"name":"DirectXAlphaMode","features":[128]},{"name":"DirectXColorSpace","features":[128]},{"name":"DirectXPixelFormat","features":[128]},{"name":"DirectXPrimitiveTopology","features":[128]}],"138":[{"name":"Direct3DBindings","features":[129]},{"name":"Direct3DMultisampleDescription","features":[129]},{"name":"Direct3DSurfaceDescription","features":[129]},{"name":"Direct3DUsage","features":[129]},{"name":"IDirect3DDevice","features":[129]},{"name":"IDirect3DSurface","features":[129]}],"139":[{"name":"AdvancedColorInfo","features":[130]},{"name":"AdvancedColorKind","features":[130]},{"name":"BrightnessOverride","features":[130]},{"name":"BrightnessOverrideSettings","features":[130]},{"name":"ColorOverrideSettings","features":[130]},{"name":"DisplayBrightnessOverrideOptions","features":[130]},{"name":"DisplayBrightnessOverrideScenario","features":[130]},{"name":"DisplayBrightnessScenario","features":[130]},{"name":"DisplayColorOverrideScenario","features":[130]},{"name":"DisplayEnhancementOverride","features":[130]},{"name":"DisplayEnhancementOverrideCapabilities","features":[130]},{"name":"DisplayEnhancementOverrideCapabilitiesChangedEventArgs","features":[130]},{"name":"DisplayInformation","features":[130]},{"name":"DisplayOrientations","features":[130]},{"name":"DisplayProperties","features":[130]},{"name":"DisplayPropertiesEventHandler","features":[130]},{"name":"DisplayServices","features":[130]},{"name":"HdrMetadataFormat","features":[130]},{"name":"IAdvancedColorInfo","features":[130]},{"name":"IBrightnessOverride","features":[130]},{"name":"IBrightnessOverrideSettings","features":[130]},{"name":"IBrightnessOverrideSettingsStatics","features":[130]},{"name":"IBrightnessOverrideStatics","features":[130]},{"name":"IColorOverrideSettings","features":[130]},{"name":"IColorOverrideSettingsStatics","features":[130]},{"name":"IDisplayEnhancementOverride","features":[130]},{"name":"IDisplayEnhancementOverrideCapabilities","features":[130]},{"name":"IDisplayEnhancementOverrideCapabilitiesChangedEventArgs","features":[130]},{"name":"IDisplayEnhancementOverrideStatics","features":[130]},{"name":"IDisplayInformation","features":[130]},{"name":"IDisplayInformation2","features":[130]},{"name":"IDisplayInformation3","features":[130]},{"name":"IDisplayInformation4","features":[130]},{"name":"IDisplayInformation5","features":[130]},{"name":"IDisplayInformationStatics","features":[130]},{"name":"IDisplayPropertiesStatics","features":[130]},{"name":"IDisplayServices","features":[130]},{"name":"IDisplayServicesStatics","features":[130]},{"name":"NitRange","features":[130]},{"name":"ResolutionScale","features":[130]}],"140":[{"name":"HdmiDisplayColorSpace","features":[131]},{"name":"HdmiDisplayHdr2086Metadata","features":[131]},{"name":"HdmiDisplayHdrOption","features":[131]},{"name":"HdmiDisplayInformation","features":[131]},{"name":"HdmiDisplayMode","features":[131]},{"name":"HdmiDisplayPixelEncoding","features":[131]},{"name":"IHdmiDisplayInformation","features":[131]},{"name":"IHdmiDisplayInformationStatics","features":[131]},{"name":"IHdmiDisplayMode","features":[131]},{"name":"IHdmiDisplayMode2","features":[131]}],"141":[{"name":"IGraphicsEffect","features":[132]},{"name":"IGraphicsEffectSource","features":[132]}],"142":[{"name":"HolographicAdapterId","features":[133]},{"name":"HolographicCamera","features":[133]},{"name":"HolographicCameraPose","features":[133]},{"name":"HolographicCameraRenderingParameters","features":[133]},{"name":"HolographicCameraViewportParameters","features":[133]},{"name":"HolographicDepthReprojectionMethod","features":[133]},{"name":"HolographicDisplay","features":[133]},{"name":"HolographicFrame","features":[133]},{"name":"HolographicFrameId","features":[133]},{"name":"HolographicFramePrediction","features":[133]},{"name":"HolographicFramePresentResult","features":[133]},{"name":"HolographicFramePresentWaitBehavior","features":[133]},{"name":"HolographicFramePresentationMonitor","features":[133]},{"name":"HolographicFramePresentationReport","features":[133]},{"name":"HolographicFrameRenderingReport","features":[133]},{"name":"HolographicFrameScanoutMonitor","features":[133]},{"name":"HolographicFrameScanoutReport","features":[133]},{"name":"HolographicQuadLayer","features":[133]},{"name":"HolographicQuadLayerUpdateParameters","features":[133]},{"name":"HolographicReprojectionMode","features":[133]},{"name":"HolographicSpace","features":[133]},{"name":"HolographicSpaceCameraAddedEventArgs","features":[133]},{"name":"HolographicSpaceCameraRemovedEventArgs","features":[133]},{"name":"HolographicSpaceUserPresence","features":[133]},{"name":"HolographicStereoTransform","features":[68,133]},{"name":"HolographicViewConfiguration","features":[133]},{"name":"HolographicViewConfigurationKind","features":[133]},{"name":"IHolographicCamera","features":[133]},{"name":"IHolographicCamera2","features":[133]},{"name":"IHolographicCamera3","features":[133]},{"name":"IHolographicCamera4","features":[133]},{"name":"IHolographicCamera5","features":[133]},{"name":"IHolographicCamera6","features":[133]},{"name":"IHolographicCameraPose","features":[133]},{"name":"IHolographicCameraPose2","features":[133]},{"name":"IHolographicCameraRenderingParameters","features":[133]},{"name":"IHolographicCameraRenderingParameters2","features":[133]},{"name":"IHolographicCameraRenderingParameters3","features":[133]},{"name":"IHolographicCameraRenderingParameters4","features":[133]},{"name":"IHolographicCameraViewportParameters","features":[133]},{"name":"IHolographicDisplay","features":[133]},{"name":"IHolographicDisplay2","features":[133]},{"name":"IHolographicDisplay3","features":[133]},{"name":"IHolographicDisplayStatics","features":[133]},{"name":"IHolographicFrame","features":[133]},{"name":"IHolographicFrame2","features":[133]},{"name":"IHolographicFrame3","features":[133]},{"name":"IHolographicFramePrediction","features":[133]},{"name":"IHolographicFramePresentationMonitor","features":[133]},{"name":"IHolographicFramePresentationReport","features":[133]},{"name":"IHolographicFrameRenderingReport","features":[133]},{"name":"IHolographicFrameScanoutMonitor","features":[133]},{"name":"IHolographicFrameScanoutReport","features":[133]},{"name":"IHolographicQuadLayer","features":[133]},{"name":"IHolographicQuadLayerFactory","features":[133]},{"name":"IHolographicQuadLayerUpdateParameters","features":[133]},{"name":"IHolographicQuadLayerUpdateParameters2","features":[133]},{"name":"IHolographicSpace","features":[133]},{"name":"IHolographicSpace2","features":[133]},{"name":"IHolographicSpace3","features":[133]},{"name":"IHolographicSpaceCameraAddedEventArgs","features":[133]},{"name":"IHolographicSpaceCameraRemovedEventArgs","features":[133]},{"name":"IHolographicSpaceStatics","features":[133]},{"name":"IHolographicSpaceStatics2","features":[133]},{"name":"IHolographicSpaceStatics3","features":[133]},{"name":"IHolographicViewConfiguration","features":[133]},{"name":"IHolographicViewConfiguration2","features":[133]}],"143":[{"name":"BitmapAlphaMode","features":[134]},{"name":"BitmapBounds","features":[134]},{"name":"BitmapBuffer","features":[134]},{"name":"BitmapBufferAccessMode","features":[134]},{"name":"BitmapCodecInformation","features":[134]},{"name":"BitmapDecoder","features":[134]},{"name":"BitmapEncoder","features":[134]},{"name":"BitmapFlip","features":[134]},{"name":"BitmapFrame","features":[134]},{"name":"BitmapInterpolationMode","features":[134]},{"name":"BitmapPixelFormat","features":[134]},{"name":"BitmapPlaneDescription","features":[134]},{"name":"BitmapProperties","features":[134]},{"name":"BitmapPropertiesView","features":[134]},{"name":"BitmapPropertySet","features":[36,134]},{"name":"BitmapRotation","features":[134]},{"name":"BitmapSize","features":[134]},{"name":"BitmapTransform","features":[134]},{"name":"BitmapTypedValue","features":[134]},{"name":"ColorManagementMode","features":[134]},{"name":"ExifOrientationMode","features":[134]},{"name":"IBitmapBuffer","features":[134]},{"name":"IBitmapCodecInformation","features":[134]},{"name":"IBitmapDecoder","features":[134]},{"name":"IBitmapDecoderStatics","features":[134]},{"name":"IBitmapDecoderStatics2","features":[134]},{"name":"IBitmapEncoder","features":[134]},{"name":"IBitmapEncoderStatics","features":[134]},{"name":"IBitmapEncoderStatics2","features":[134]},{"name":"IBitmapEncoderWithSoftwareBitmap","features":[134]},{"name":"IBitmapFrame","features":[134]},{"name":"IBitmapFrameWithSoftwareBitmap","features":[134]},{"name":"IBitmapProperties","features":[134]},{"name":"IBitmapPropertiesView","features":[134]},{"name":"IBitmapTransform","features":[134]},{"name":"IBitmapTypedValue","features":[134]},{"name":"IBitmapTypedValueFactory","features":[134]},{"name":"IPixelDataProvider","features":[134]},{"name":"ISoftwareBitmap","features":[134]},{"name":"ISoftwareBitmapFactory","features":[134]},{"name":"ISoftwareBitmapStatics","features":[134]},{"name":"ImageStream","features":[134,70]},{"name":"JpegSubsamplingMode","features":[134]},{"name":"PixelDataProvider","features":[134]},{"name":"PngFilterMode","features":[134]},{"name":"SoftwareBitmap","features":[134]},{"name":"TiffCompressionMode","features":[134]}],"144":[{"name":"IPrintDocumentSource","features":[135]},{"name":"IPrintManager","features":[135]},{"name":"IPrintManagerStatic","features":[135]},{"name":"IPrintManagerStatic2","features":[135]},{"name":"IPrintPageInfo","features":[135]},{"name":"IPrintPageRange","features":[135]},{"name":"IPrintPageRangeFactory","features":[135]},{"name":"IPrintPageRangeOptions","features":[135]},{"name":"IPrintTask","features":[135]},{"name":"IPrintTask2","features":[135]},{"name":"IPrintTaskCompletedEventArgs","features":[135]},{"name":"IPrintTaskOptions","features":[135]},{"name":"IPrintTaskOptions2","features":[135]},{"name":"IPrintTaskOptionsCore","features":[135]},{"name":"IPrintTaskOptionsCoreProperties","features":[135]},{"name":"IPrintTaskOptionsCoreUIConfiguration","features":[135]},{"name":"IPrintTaskProgressingEventArgs","features":[135]},{"name":"IPrintTaskRequest","features":[135]},{"name":"IPrintTaskRequestedDeferral","features":[135]},{"name":"IPrintTaskRequestedEventArgs","features":[135]},{"name":"IPrintTaskSourceRequestedArgs","features":[135]},{"name":"IPrintTaskSourceRequestedDeferral","features":[135]},{"name":"IPrintTaskTargetDeviceSupport","features":[135]},{"name":"IStandardPrintTaskOptionsStatic","features":[135]},{"name":"IStandardPrintTaskOptionsStatic2","features":[135]},{"name":"IStandardPrintTaskOptionsStatic3","features":[135]},{"name":"PrintBinding","features":[135]},{"name":"PrintBordering","features":[135]},{"name":"PrintCollation","features":[135]},{"name":"PrintColorMode","features":[135]},{"name":"PrintDuplex","features":[135]},{"name":"PrintHolePunch","features":[135]},{"name":"PrintManager","features":[135]},{"name":"PrintMediaSize","features":[135]},{"name":"PrintMediaType","features":[135]},{"name":"PrintOrientation","features":[135]},{"name":"PrintPageDescription","features":[76,135]},{"name":"PrintPageInfo","features":[135]},{"name":"PrintPageRange","features":[135]},{"name":"PrintPageRangeOptions","features":[135]},{"name":"PrintQuality","features":[135]},{"name":"PrintStaple","features":[135]},{"name":"PrintTask","features":[135]},{"name":"PrintTaskCompletedEventArgs","features":[135]},{"name":"PrintTaskCompletion","features":[135]},{"name":"PrintTaskOptions","features":[135]},{"name":"PrintTaskProgressingEventArgs","features":[135]},{"name":"PrintTaskRequest","features":[135]},{"name":"PrintTaskRequestedDeferral","features":[135]},{"name":"PrintTaskRequestedEventArgs","features":[135]},{"name":"PrintTaskSourceRequestedArgs","features":[135]},{"name":"PrintTaskSourceRequestedDeferral","features":[135]},{"name":"PrintTaskSourceRequestedHandler","features":[135]},{"name":"StandardPrintTaskOptions","features":[135]}],"145":[{"name":"IPrintBindingOptionDetails","features":[136]},{"name":"IPrintBorderingOptionDetails","features":[136]},{"name":"IPrintCollationOptionDetails","features":[136]},{"name":"IPrintColorModeOptionDetails","features":[136]},{"name":"IPrintCopiesOptionDetails","features":[136]},{"name":"IPrintCustomItemDetails","features":[136]},{"name":"IPrintCustomItemListOptionDetails","features":[136]},{"name":"IPrintCustomItemListOptionDetails2","features":[136]},{"name":"IPrintCustomItemListOptionDetails3","features":[136]},{"name":"IPrintCustomOptionDetails","features":[136]},{"name":"IPrintCustomTextOptionDetails","features":[136]},{"name":"IPrintCustomTextOptionDetails2","features":[136]},{"name":"IPrintCustomToggleOptionDetails","features":[136]},{"name":"IPrintDuplexOptionDetails","features":[136]},{"name":"IPrintHolePunchOptionDetails","features":[136]},{"name":"IPrintItemListOptionDetails","features":[136]},{"name":"IPrintMediaSizeOptionDetails","features":[136]},{"name":"IPrintMediaTypeOptionDetails","features":[136]},{"name":"IPrintNumberOptionDetails","features":[136]},{"name":"IPrintOptionDetails","features":[136]},{"name":"IPrintOrientationOptionDetails","features":[136]},{"name":"IPrintPageRangeOptionDetails","features":[136]},{"name":"IPrintQualityOptionDetails","features":[136]},{"name":"IPrintStapleOptionDetails","features":[136]},{"name":"IPrintTaskOptionChangedEventArgs","features":[136]},{"name":"IPrintTaskOptionDetails","features":[136]},{"name":"IPrintTaskOptionDetails2","features":[136]},{"name":"IPrintTaskOptionDetailsStatic","features":[136]},{"name":"IPrintTextOptionDetails","features":[136]},{"name":"PrintBindingOptionDetails","features":[136]},{"name":"PrintBorderingOptionDetails","features":[136]},{"name":"PrintCollationOptionDetails","features":[136]},{"name":"PrintColorModeOptionDetails","features":[136]},{"name":"PrintCopiesOptionDetails","features":[136]},{"name":"PrintCustomItemDetails","features":[136]},{"name":"PrintCustomItemListOptionDetails","features":[136]},{"name":"PrintCustomTextOptionDetails","features":[136]},{"name":"PrintCustomToggleOptionDetails","features":[136]},{"name":"PrintDuplexOptionDetails","features":[136]},{"name":"PrintHolePunchOptionDetails","features":[136]},{"name":"PrintMediaSizeOptionDetails","features":[136]},{"name":"PrintMediaTypeOptionDetails","features":[136]},{"name":"PrintOptionStates","features":[136]},{"name":"PrintOptionType","features":[136]},{"name":"PrintOrientationOptionDetails","features":[136]},{"name":"PrintPageRangeOptionDetails","features":[136]},{"name":"PrintQualityOptionDetails","features":[136]},{"name":"PrintStapleOptionDetails","features":[136]},{"name":"PrintTaskOptionChangedEventArgs","features":[136]},{"name":"PrintTaskOptionDetails","features":[136]}],"146":[{"name":"IPrintSupportExtensionSession","features":[137]},{"name":"IPrintSupportExtensionSession2","features":[137]},{"name":"IPrintSupportExtensionTriggerDetails","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesChangedEventArgs","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesChangedEventArgs2","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesUpdatePolicy","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesUpdatePolicyStatics","features":[137]},{"name":"IPrintSupportPrintTicketElement","features":[137]},{"name":"IPrintSupportPrintTicketValidationRequestedEventArgs","features":[137]},{"name":"IPrintSupportPrinterSelectedEventArgs","features":[137]},{"name":"IPrintSupportSessionInfo","features":[137]},{"name":"IPrintSupportSettingsActivatedEventArgs","features":[137]},{"name":"IPrintSupportSettingsUISession","features":[137]},{"name":"PrintSupportExtensionSession","features":[137]},{"name":"PrintSupportExtensionTriggerDetails","features":[137]},{"name":"PrintSupportPrintDeviceCapabilitiesChangedEventArgs","features":[137]},{"name":"PrintSupportPrintDeviceCapabilitiesUpdatePolicy","features":[137]},{"name":"PrintSupportPrintTicketElement","features":[137]},{"name":"PrintSupportPrintTicketValidationRequestedEventArgs","features":[137]},{"name":"PrintSupportPrinterSelectedEventArgs","features":[137]},{"name":"PrintSupportSessionInfo","features":[137]},{"name":"PrintSupportSettingsActivatedEventArgs","features":[137]},{"name":"PrintSupportSettingsUISession","features":[137]},{"name":"SettingsLaunchKind","features":[137]},{"name":"WorkflowPrintTicketValidationStatus","features":[137]}],"147":[{"name":"IPrintTicketCapabilities","features":[138]},{"name":"IPrintTicketFeature","features":[138]},{"name":"IPrintTicketOption","features":[138]},{"name":"IPrintTicketParameterDefinition","features":[138]},{"name":"IPrintTicketParameterInitializer","features":[138]},{"name":"IPrintTicketValue","features":[138]},{"name":"IWorkflowPrintTicket","features":[138]},{"name":"IWorkflowPrintTicketValidationResult","features":[138]},{"name":"PrintTicketCapabilities","features":[138]},{"name":"PrintTicketFeature","features":[138]},{"name":"PrintTicketFeatureSelectionType","features":[138]},{"name":"PrintTicketOption","features":[138]},{"name":"PrintTicketParameterDataType","features":[138]},{"name":"PrintTicketParameterDefinition","features":[138]},{"name":"PrintTicketParameterInitializer","features":[138]},{"name":"PrintTicketValue","features":[138]},{"name":"PrintTicketValueType","features":[138]},{"name":"WorkflowPrintTicket","features":[138]},{"name":"WorkflowPrintTicketValidationResult","features":[138]}],"148":[{"name":"IPrintWorkflowBackgroundSession","features":[139]},{"name":"IPrintWorkflowBackgroundSetupRequestedEventArgs","features":[139]},{"name":"IPrintWorkflowConfiguration","features":[139]},{"name":"IPrintWorkflowConfiguration2","features":[139]},{"name":"IPrintWorkflowForegroundSession","features":[139]},{"name":"IPrintWorkflowForegroundSetupRequestedEventArgs","features":[139]},{"name":"IPrintWorkflowJobActivatedEventArgs","features":[139]},{"name":"IPrintWorkflowJobBackgroundSession","features":[139]},{"name":"IPrintWorkflowJobNotificationEventArgs","features":[139]},{"name":"IPrintWorkflowJobStartingEventArgs","features":[139]},{"name":"IPrintWorkflowJobTriggerDetails","features":[139]},{"name":"IPrintWorkflowJobUISession","features":[139]},{"name":"IPrintWorkflowObjectModelSourceFileContent","features":[139]},{"name":"IPrintWorkflowObjectModelSourceFileContentFactory","features":[139]},{"name":"IPrintWorkflowObjectModelTargetPackage","features":[139]},{"name":"IPrintWorkflowPdlConverter","features":[139]},{"name":"IPrintWorkflowPdlConverter2","features":[139]},{"name":"IPrintWorkflowPdlDataAvailableEventArgs","features":[139]},{"name":"IPrintWorkflowPdlModificationRequestedEventArgs","features":[139]},{"name":"IPrintWorkflowPdlModificationRequestedEventArgs2","features":[139]},{"name":"IPrintWorkflowPdlSourceContent","features":[139]},{"name":"IPrintWorkflowPdlTargetStream","features":[139]},{"name":"IPrintWorkflowPrinterJob","features":[139]},{"name":"IPrintWorkflowSourceContent","features":[139]},{"name":"IPrintWorkflowSpoolStreamContent","features":[139]},{"name":"IPrintWorkflowStreamTarget","features":[139]},{"name":"IPrintWorkflowSubmittedEventArgs","features":[139]},{"name":"IPrintWorkflowSubmittedOperation","features":[139]},{"name":"IPrintWorkflowTarget","features":[139]},{"name":"IPrintWorkflowTriggerDetails","features":[139]},{"name":"IPrintWorkflowUIActivatedEventArgs","features":[139]},{"name":"IPrintWorkflowUILauncher","features":[139]},{"name":"IPrintWorkflowXpsDataAvailableEventArgs","features":[139]},{"name":"PdlConversionHostBasedProcessingOperations","features":[139]},{"name":"PrintWorkflowAttributesMergePolicy","features":[139]},{"name":"PrintWorkflowBackgroundSession","features":[139]},{"name":"PrintWorkflowBackgroundSetupRequestedEventArgs","features":[139]},{"name":"PrintWorkflowConfiguration","features":[139]},{"name":"PrintWorkflowForegroundSession","features":[139]},{"name":"PrintWorkflowForegroundSetupRequestedEventArgs","features":[139]},{"name":"PrintWorkflowJobAbortReason","features":[139]},{"name":"PrintWorkflowJobActivatedEventArgs","features":[139]},{"name":"PrintWorkflowJobBackgroundSession","features":[139]},{"name":"PrintWorkflowJobNotificationEventArgs","features":[139]},{"name":"PrintWorkflowJobStartingEventArgs","features":[139]},{"name":"PrintWorkflowJobTriggerDetails","features":[139]},{"name":"PrintWorkflowJobUISession","features":[139]},{"name":"PrintWorkflowObjectModelSourceFileContent","features":[139]},{"name":"PrintWorkflowObjectModelTargetPackage","features":[139]},{"name":"PrintWorkflowPdlConversionType","features":[139]},{"name":"PrintWorkflowPdlConverter","features":[139]},{"name":"PrintWorkflowPdlDataAvailableEventArgs","features":[139]},{"name":"PrintWorkflowPdlModificationRequestedEventArgs","features":[139]},{"name":"PrintWorkflowPdlSourceContent","features":[139]},{"name":"PrintWorkflowPdlTargetStream","features":[139]},{"name":"PrintWorkflowPrinterJob","features":[139]},{"name":"PrintWorkflowPrinterJobStatus","features":[139]},{"name":"PrintWorkflowSessionStatus","features":[139]},{"name":"PrintWorkflowSourceContent","features":[139]},{"name":"PrintWorkflowSpoolStreamContent","features":[139]},{"name":"PrintWorkflowStreamTarget","features":[139]},{"name":"PrintWorkflowSubmittedEventArgs","features":[139]},{"name":"PrintWorkflowSubmittedOperation","features":[139]},{"name":"PrintWorkflowSubmittedStatus","features":[139]},{"name":"PrintWorkflowTarget","features":[139]},{"name":"PrintWorkflowTriggerDetails","features":[139]},{"name":"PrintWorkflowUIActivatedEventArgs","features":[139]},{"name":"PrintWorkflowUICompletionStatus","features":[139]},{"name":"PrintWorkflowUILauncher","features":[139]},{"name":"PrintWorkflowXpsDataAvailableEventArgs","features":[139]}],"149":[{"name":"IPrint3DManager","features":[140]},{"name":"IPrint3DManagerStatics","features":[140]},{"name":"IPrint3DTask","features":[140]},{"name":"IPrint3DTaskCompletedEventArgs","features":[140]},{"name":"IPrint3DTaskRequest","features":[140]},{"name":"IPrint3DTaskRequestedEventArgs","features":[140]},{"name":"IPrint3DTaskSourceChangedEventArgs","features":[140]},{"name":"IPrint3DTaskSourceRequestedArgs","features":[140]},{"name":"IPrinting3D3MFPackage","features":[140]},{"name":"IPrinting3D3MFPackage2","features":[140]},{"name":"IPrinting3D3MFPackageStatics","features":[140]},{"name":"IPrinting3DBaseMaterial","features":[140]},{"name":"IPrinting3DBaseMaterialGroup","features":[140]},{"name":"IPrinting3DBaseMaterialGroupFactory","features":[140]},{"name":"IPrinting3DBaseMaterialStatics","features":[140]},{"name":"IPrinting3DColorMaterial","features":[140]},{"name":"IPrinting3DColorMaterial2","features":[140]},{"name":"IPrinting3DColorMaterialGroup","features":[140]},{"name":"IPrinting3DColorMaterialGroupFactory","features":[140]},{"name":"IPrinting3DComponent","features":[140]},{"name":"IPrinting3DComponentWithMatrix","features":[140]},{"name":"IPrinting3DCompositeMaterial","features":[140]},{"name":"IPrinting3DCompositeMaterialGroup","features":[140]},{"name":"IPrinting3DCompositeMaterialGroup2","features":[140]},{"name":"IPrinting3DCompositeMaterialGroupFactory","features":[140]},{"name":"IPrinting3DFaceReductionOptions","features":[140]},{"name":"IPrinting3DMaterial","features":[140]},{"name":"IPrinting3DMesh","features":[140]},{"name":"IPrinting3DMeshVerificationResult","features":[140]},{"name":"IPrinting3DModel","features":[140]},{"name":"IPrinting3DModel2","features":[140]},{"name":"IPrinting3DModelTexture","features":[140]},{"name":"IPrinting3DMultiplePropertyMaterial","features":[140]},{"name":"IPrinting3DMultiplePropertyMaterialGroup","features":[140]},{"name":"IPrinting3DMultiplePropertyMaterialGroupFactory","features":[140]},{"name":"IPrinting3DTexture2CoordMaterial","features":[140]},{"name":"IPrinting3DTexture2CoordMaterialGroup","features":[140]},{"name":"IPrinting3DTexture2CoordMaterialGroup2","features":[140]},{"name":"IPrinting3DTexture2CoordMaterialGroupFactory","features":[140]},{"name":"IPrinting3DTextureResource","features":[140]},{"name":"Print3DManager","features":[140]},{"name":"Print3DTask","features":[140]},{"name":"Print3DTaskCompletedEventArgs","features":[140]},{"name":"Print3DTaskCompletion","features":[140]},{"name":"Print3DTaskDetail","features":[140]},{"name":"Print3DTaskRequest","features":[140]},{"name":"Print3DTaskRequestedEventArgs","features":[140]},{"name":"Print3DTaskSourceChangedEventArgs","features":[140]},{"name":"Print3DTaskSourceRequestedArgs","features":[140]},{"name":"Print3DTaskSourceRequestedHandler","features":[140]},{"name":"Printing3D3MFPackage","features":[140]},{"name":"Printing3DBaseMaterial","features":[140]},{"name":"Printing3DBaseMaterialGroup","features":[140]},{"name":"Printing3DBufferDescription","features":[140]},{"name":"Printing3DBufferFormat","features":[140]},{"name":"Printing3DColorMaterial","features":[140]},{"name":"Printing3DColorMaterialGroup","features":[140]},{"name":"Printing3DComponent","features":[140]},{"name":"Printing3DComponentWithMatrix","features":[140]},{"name":"Printing3DCompositeMaterial","features":[140]},{"name":"Printing3DCompositeMaterialGroup","features":[140]},{"name":"Printing3DContract","features":[140]},{"name":"Printing3DFaceReductionOptions","features":[140]},{"name":"Printing3DMaterial","features":[140]},{"name":"Printing3DMesh","features":[140]},{"name":"Printing3DMeshVerificationMode","features":[140]},{"name":"Printing3DMeshVerificationResult","features":[140]},{"name":"Printing3DModel","features":[140]},{"name":"Printing3DModelTexture","features":[140]},{"name":"Printing3DModelUnit","features":[140]},{"name":"Printing3DMultiplePropertyMaterial","features":[140]},{"name":"Printing3DMultiplePropertyMaterialGroup","features":[140]},{"name":"Printing3DObjectType","features":[140]},{"name":"Printing3DPackageCompression","features":[140]},{"name":"Printing3DTexture2CoordMaterial","features":[140]},{"name":"Printing3DTexture2CoordMaterialGroup","features":[140]},{"name":"Printing3DTextureEdgeBehavior","features":[140]},{"name":"Printing3DTextureResource","features":[140]}],"150":[{"name":"IMdmAlert","features":[141]},{"name":"IMdmSession","features":[141]},{"name":"IMdmSessionManagerStatics","features":[141]},{"name":"MdmAlert","features":[141]},{"name":"MdmAlertDataType","features":[141]},{"name":"MdmAlertMark","features":[141]},{"name":"MdmSession","features":[141]},{"name":"MdmSessionManager","features":[141]},{"name":"MdmSessionState","features":[141]}],"151":[{"name":"ApplicationDataManager","features":[142]},{"name":"IApplicationDataManager","features":[142]},{"name":"IApplicationDataManagerStatics","features":[142]}],"152":[{"name":"AddPackageByAppInstallerOptions","features":[143]},{"name":"AddPackageOptions","features":[143]},{"name":"AppInstallerManager","features":[143]},{"name":"AutoUpdateSettingsOptions","features":[143]},{"name":"CreateSharedPackageContainerOptions","features":[143]},{"name":"CreateSharedPackageContainerResult","features":[143]},{"name":"DeleteSharedPackageContainerOptions","features":[143]},{"name":"DeleteSharedPackageContainerResult","features":[143]},{"name":"DeploymentOptions","features":[143]},{"name":"DeploymentProgress","features":[143]},{"name":"DeploymentProgressState","features":[143]},{"name":"DeploymentResult","features":[143]},{"name":"FindSharedPackageContainerOptions","features":[143]},{"name":"IAddPackageOptions","features":[143]},{"name":"IAddPackageOptions2","features":[143]},{"name":"IAppInstallerManager","features":[143]},{"name":"IAppInstallerManagerStatics","features":[143]},{"name":"IAutoUpdateSettingsOptions","features":[143]},{"name":"IAutoUpdateSettingsOptionsStatics","features":[143]},{"name":"ICreateSharedPackageContainerOptions","features":[143]},{"name":"ICreateSharedPackageContainerResult","features":[143]},{"name":"IDeleteSharedPackageContainerOptions","features":[143]},{"name":"IDeleteSharedPackageContainerResult","features":[143]},{"name":"IDeploymentResult","features":[143]},{"name":"IDeploymentResult2","features":[143]},{"name":"IFindSharedPackageContainerOptions","features":[143]},{"name":"IPackageAllUserProvisioningOptions","features":[143]},{"name":"IPackageManager","features":[143]},{"name":"IPackageManager10","features":[143]},{"name":"IPackageManager2","features":[143]},{"name":"IPackageManager3","features":[143]},{"name":"IPackageManager4","features":[143]},{"name":"IPackageManager5","features":[143]},{"name":"IPackageManager6","features":[143]},{"name":"IPackageManager7","features":[143]},{"name":"IPackageManager8","features":[143]},{"name":"IPackageManager9","features":[143]},{"name":"IPackageManagerDebugSettings","features":[143]},{"name":"IPackageUserInformation","features":[143]},{"name":"IPackageVolume","features":[143]},{"name":"IPackageVolume2","features":[143]},{"name":"IRegisterPackageOptions","features":[143]},{"name":"IRegisterPackageOptions2","features":[143]},{"name":"ISharedPackageContainer","features":[143]},{"name":"ISharedPackageContainerManager","features":[143]},{"name":"ISharedPackageContainerManagerStatics","features":[143]},{"name":"ISharedPackageContainerMember","features":[143]},{"name":"ISharedPackageContainerMemberFactory","features":[143]},{"name":"IStagePackageOptions","features":[143]},{"name":"IStagePackageOptions2","features":[143]},{"name":"IUpdateSharedPackageContainerOptions","features":[143]},{"name":"IUpdateSharedPackageContainerResult","features":[143]},{"name":"PackageAllUserProvisioningOptions","features":[143]},{"name":"PackageInstallState","features":[143]},{"name":"PackageManager","features":[143]},{"name":"PackageManagerDebugSettings","features":[143]},{"name":"PackageState","features":[143]},{"name":"PackageStatus","features":[143]},{"name":"PackageStubPreference","features":[143]},{"name":"PackageTypes","features":[143]},{"name":"PackageUserInformation","features":[143]},{"name":"PackageVolume","features":[143]},{"name":"RegisterPackageOptions","features":[143]},{"name":"RemovalOptions","features":[143]},{"name":"SharedPackageContainer","features":[143]},{"name":"SharedPackageContainerContract","features":[143]},{"name":"SharedPackageContainerCreationCollisionOptions","features":[143]},{"name":"SharedPackageContainerManager","features":[143]},{"name":"SharedPackageContainerMember","features":[143]},{"name":"SharedPackageContainerOperationStatus","features":[143]},{"name":"StagePackageOptions","features":[143]},{"name":"StubPackageOption","features":[143]},{"name":"UpdateSharedPackageContainerOptions","features":[143]},{"name":"UpdateSharedPackageContainerResult","features":[143]}],"153":[{"name":"ClassicAppManager","features":[144]},{"name":"DeploymentPreviewContract","features":[144]},{"name":"IClassicAppManagerStatics","features":[144]},{"name":"IInstalledClassicAppInfo","features":[144]},{"name":"InstalledClassicAppInfo","features":[144]}],"154":[{"name":"INamedPolicyData","features":[145]},{"name":"INamedPolicyStatics","features":[145]},{"name":"NamedPolicy","features":[145]},{"name":"NamedPolicyData","features":[145]},{"name":"NamedPolicyKind","features":[145]}],"155":[{"name":"IPreviewBuildsManager","features":[146]},{"name":"IPreviewBuildsManagerStatics","features":[146]},{"name":"IPreviewBuildsState","features":[146]},{"name":"IWindowsUpdate","features":[146]},{"name":"IWindowsUpdateActionCompletedEventArgs","features":[146]},{"name":"IWindowsUpdateActionProgress","features":[146]},{"name":"IWindowsUpdateActionResult","features":[146]},{"name":"IWindowsUpdateAdministrator","features":[146]},{"name":"IWindowsUpdateAdministratorStatics","features":[146]},{"name":"IWindowsUpdateApprovalData","features":[146]},{"name":"IWindowsUpdateAttentionRequiredInfo","features":[146]},{"name":"IWindowsUpdateAttentionRequiredReasonChangedEventArgs","features":[146]},{"name":"IWindowsUpdateGetAdministratorResult","features":[146]},{"name":"IWindowsUpdateItem","features":[146]},{"name":"IWindowsUpdateManager","features":[146]},{"name":"IWindowsUpdateManagerFactory","features":[146]},{"name":"IWindowsUpdateProgressChangedEventArgs","features":[146]},{"name":"IWindowsUpdateRestartRequestOptions","features":[146]},{"name":"IWindowsUpdateRestartRequestOptionsFactory","features":[146]},{"name":"IWindowsUpdateScanCompletedEventArgs","features":[146]},{"name":"PreviewBuildsManager","features":[146]},{"name":"PreviewBuildsState","features":[146]},{"name":"WindowsUpdate","features":[146]},{"name":"WindowsUpdateActionCompletedEventArgs","features":[146]},{"name":"WindowsUpdateActionProgress","features":[146]},{"name":"WindowsUpdateActionResult","features":[146]},{"name":"WindowsUpdateAdministrator","features":[146]},{"name":"WindowsUpdateAdministratorOptions","features":[146]},{"name":"WindowsUpdateAdministratorStatus","features":[146]},{"name":"WindowsUpdateApprovalData","features":[146]},{"name":"WindowsUpdateAttentionRequiredInfo","features":[146]},{"name":"WindowsUpdateAttentionRequiredReason","features":[146]},{"name":"WindowsUpdateAttentionRequiredReasonChangedEventArgs","features":[146]},{"name":"WindowsUpdateContract","features":[146]},{"name":"WindowsUpdateGetAdministratorResult","features":[146]},{"name":"WindowsUpdateItem","features":[146]},{"name":"WindowsUpdateManager","features":[146]},{"name":"WindowsUpdateProgressChangedEventArgs","features":[146]},{"name":"WindowsUpdateRestartRequestOptions","features":[146]},{"name":"WindowsUpdateScanCompletedEventArgs","features":[146]}],"156":[{"name":"IMdmAllowPolicyStatics","features":[147]},{"name":"IMdmPolicyStatics2","features":[147]},{"name":"IWorkplaceSettingsStatics","features":[147]},{"name":"MdmPolicy","features":[147]},{"name":"MessagingSyncPolicy","features":[147]},{"name":"WorkplaceSettings","features":[147]},{"name":"WorkplaceSettingsContract","features":[147]}],"157":[{"name":"AudioBuffer","features":[148]},{"name":"AudioBufferAccessMode","features":[148]},{"name":"AudioFrame","features":[148]},{"name":"AudioProcessing","features":[148]},{"name":"AutoRepeatModeChangeRequestedEventArgs","features":[148]},{"name":"IAudioBuffer","features":[148]},{"name":"IAudioFrame","features":[148]},{"name":"IAudioFrameFactory","features":[148]},{"name":"IAutoRepeatModeChangeRequestedEventArgs","features":[148]},{"name":"IImageDisplayProperties","features":[148]},{"name":"IMediaControl","features":[148]},{"name":"IMediaExtension","features":[148]},{"name":"IMediaExtensionManager","features":[148]},{"name":"IMediaExtensionManager2","features":[148]},{"name":"IMediaFrame","features":[148]},{"name":"IMediaMarker","features":[148]},{"name":"IMediaMarkerTypesStatics","features":[148]},{"name":"IMediaMarkers","features":[148]},{"name":"IMediaProcessingTriggerDetails","features":[148]},{"name":"IMediaTimelineController","features":[148]},{"name":"IMediaTimelineController2","features":[148]},{"name":"IMediaTimelineControllerFailedEventArgs","features":[148]},{"name":"IMusicDisplayProperties","features":[148]},{"name":"IMusicDisplayProperties2","features":[148]},{"name":"IMusicDisplayProperties3","features":[148]},{"name":"IPlaybackPositionChangeRequestedEventArgs","features":[148]},{"name":"IPlaybackRateChangeRequestedEventArgs","features":[148]},{"name":"IShuffleEnabledChangeRequestedEventArgs","features":[148]},{"name":"ISystemMediaTransportControls","features":[148]},{"name":"ISystemMediaTransportControls2","features":[148]},{"name":"ISystemMediaTransportControlsButtonPressedEventArgs","features":[148]},{"name":"ISystemMediaTransportControlsDisplayUpdater","features":[148]},{"name":"ISystemMediaTransportControlsPropertyChangedEventArgs","features":[148]},{"name":"ISystemMediaTransportControlsStatics","features":[148]},{"name":"ISystemMediaTransportControlsTimelineProperties","features":[148]},{"name":"IVideoDisplayProperties","features":[148]},{"name":"IVideoDisplayProperties2","features":[148]},{"name":"IVideoEffectsStatics","features":[148]},{"name":"IVideoFrame","features":[148]},{"name":"IVideoFrame2","features":[148]},{"name":"IVideoFrameFactory","features":[148]},{"name":"IVideoFrameStatics","features":[148]},{"name":"ImageDisplayProperties","features":[148]},{"name":"MediaControl","features":[148]},{"name":"MediaControlContract","features":[148]},{"name":"MediaExtensionManager","features":[148]},{"name":"MediaMarkerTypes","features":[148]},{"name":"MediaPlaybackAutoRepeatMode","features":[148]},{"name":"MediaPlaybackStatus","features":[148]},{"name":"MediaPlaybackType","features":[148]},{"name":"MediaProcessingTriggerDetails","features":[148]},{"name":"MediaTimeRange","features":[76,148]},{"name":"MediaTimelineController","features":[148]},{"name":"MediaTimelineControllerFailedEventArgs","features":[148]},{"name":"MediaTimelineControllerState","features":[148]},{"name":"MusicDisplayProperties","features":[148]},{"name":"PlaybackPositionChangeRequestedEventArgs","features":[148]},{"name":"PlaybackRateChangeRequestedEventArgs","features":[148]},{"name":"ShuffleEnabledChangeRequestedEventArgs","features":[148]},{"name":"SoundLevel","features":[148]},{"name":"SystemMediaTransportControls","features":[148]},{"name":"SystemMediaTransportControlsButton","features":[148]},{"name":"SystemMediaTransportControlsButtonPressedEventArgs","features":[148]},{"name":"SystemMediaTransportControlsDisplayUpdater","features":[148]},{"name":"SystemMediaTransportControlsProperty","features":[148]},{"name":"SystemMediaTransportControlsPropertyChangedEventArgs","features":[148]},{"name":"SystemMediaTransportControlsTimelineProperties","features":[148]},{"name":"VideoDisplayProperties","features":[148]},{"name":"VideoEffects","features":[148]},{"name":"VideoFrame","features":[148]}],"158":[{"name":"AppBroadcastingContract","features":[149]},{"name":"AppBroadcastingMonitor","features":[149]},{"name":"AppBroadcastingStatus","features":[149]},{"name":"AppBroadcastingStatusDetails","features":[149]},{"name":"AppBroadcastingUI","features":[149]},{"name":"IAppBroadcastingMonitor","features":[149]},{"name":"IAppBroadcastingStatus","features":[149]},{"name":"IAppBroadcastingStatusDetails","features":[149]},{"name":"IAppBroadcastingUI","features":[149]},{"name":"IAppBroadcastingUIStatics","features":[149]}],"159":[{"name":"AppRecordingContract","features":[150]},{"name":"AppRecordingManager","features":[150]},{"name":"AppRecordingResult","features":[150]},{"name":"AppRecordingSaveScreenshotOption","features":[150]},{"name":"AppRecordingSaveScreenshotResult","features":[150]},{"name":"AppRecordingSavedScreenshotInfo","features":[150]},{"name":"AppRecordingStatus","features":[150]},{"name":"AppRecordingStatusDetails","features":[150]},{"name":"IAppRecordingManager","features":[150]},{"name":"IAppRecordingManagerStatics","features":[150]},{"name":"IAppRecordingResult","features":[150]},{"name":"IAppRecordingSaveScreenshotResult","features":[150]},{"name":"IAppRecordingSavedScreenshotInfo","features":[150]},{"name":"IAppRecordingStatus","features":[150]},{"name":"IAppRecordingStatusDetails","features":[150]}],"160":[{"name":"AudioDeviceInputNode","features":[151]},{"name":"AudioDeviceNodeCreationStatus","features":[151]},{"name":"AudioDeviceOutputNode","features":[151]},{"name":"AudioFileInputNode","features":[151]},{"name":"AudioFileNodeCreationStatus","features":[151]},{"name":"AudioFileOutputNode","features":[151]},{"name":"AudioFrameCompletedEventArgs","features":[151]},{"name":"AudioFrameInputNode","features":[151]},{"name":"AudioFrameOutputNode","features":[151]},{"name":"AudioGraph","features":[151]},{"name":"AudioGraphBatchUpdater","features":[76,151]},{"name":"AudioGraphConnection","features":[151]},{"name":"AudioGraphCreationStatus","features":[151]},{"name":"AudioGraphSettings","features":[151]},{"name":"AudioGraphUnrecoverableError","features":[151]},{"name":"AudioGraphUnrecoverableErrorOccurredEventArgs","features":[151]},{"name":"AudioNodeEmitter","features":[151]},{"name":"AudioNodeEmitterConeProperties","features":[151]},{"name":"AudioNodeEmitterDecayKind","features":[151]},{"name":"AudioNodeEmitterDecayModel","features":[151]},{"name":"AudioNodeEmitterNaturalDecayModelProperties","features":[151]},{"name":"AudioNodeEmitterSettings","features":[151]},{"name":"AudioNodeEmitterShape","features":[151]},{"name":"AudioNodeEmitterShapeKind","features":[151]},{"name":"AudioNodeListener","features":[151]},{"name":"AudioPlaybackConnection","features":[151]},{"name":"AudioPlaybackConnectionOpenResult","features":[151]},{"name":"AudioPlaybackConnectionOpenResultStatus","features":[151]},{"name":"AudioPlaybackConnectionState","features":[151]},{"name":"AudioStateMonitor","features":[151]},{"name":"AudioSubmixNode","features":[151]},{"name":"CreateAudioDeviceInputNodeResult","features":[151]},{"name":"CreateAudioDeviceOutputNodeResult","features":[151]},{"name":"CreateAudioFileInputNodeResult","features":[151]},{"name":"CreateAudioFileOutputNodeResult","features":[151]},{"name":"CreateAudioGraphResult","features":[151]},{"name":"CreateMediaSourceAudioInputNodeResult","features":[151]},{"name":"EchoEffectDefinition","features":[151]},{"name":"EqualizerBand","features":[151]},{"name":"EqualizerEffectDefinition","features":[151]},{"name":"FrameInputNodeQuantumStartedEventArgs","features":[151]},{"name":"IAudioDeviceInputNode","features":[151]},{"name":"IAudioDeviceOutputNode","features":[151]},{"name":"IAudioFileInputNode","features":[151]},{"name":"IAudioFileOutputNode","features":[151]},{"name":"IAudioFrameCompletedEventArgs","features":[151]},{"name":"IAudioFrameInputNode","features":[151]},{"name":"IAudioFrameOutputNode","features":[151]},{"name":"IAudioGraph","features":[151]},{"name":"IAudioGraph2","features":[151]},{"name":"IAudioGraph3","features":[151]},{"name":"IAudioGraphConnection","features":[151]},{"name":"IAudioGraphSettings","features":[151]},{"name":"IAudioGraphSettings2","features":[151]},{"name":"IAudioGraphSettingsFactory","features":[151]},{"name":"IAudioGraphStatics","features":[151]},{"name":"IAudioGraphUnrecoverableErrorOccurredEventArgs","features":[151]},{"name":"IAudioInputNode","features":[151]},{"name":"IAudioInputNode2","features":[151]},{"name":"IAudioNode","features":[151]},{"name":"IAudioNodeEmitter","features":[151]},{"name":"IAudioNodeEmitter2","features":[151]},{"name":"IAudioNodeEmitterConeProperties","features":[151]},{"name":"IAudioNodeEmitterDecayModel","features":[151]},{"name":"IAudioNodeEmitterDecayModelStatics","features":[151]},{"name":"IAudioNodeEmitterFactory","features":[151]},{"name":"IAudioNodeEmitterNaturalDecayModelProperties","features":[151]},{"name":"IAudioNodeEmitterShape","features":[151]},{"name":"IAudioNodeEmitterShapeStatics","features":[151]},{"name":"IAudioNodeListener","features":[151]},{"name":"IAudioNodeWithListener","features":[151]},{"name":"IAudioPlaybackConnection","features":[151]},{"name":"IAudioPlaybackConnectionOpenResult","features":[151]},{"name":"IAudioPlaybackConnectionStatics","features":[151]},{"name":"IAudioStateMonitor","features":[151]},{"name":"IAudioStateMonitorStatics","features":[151]},{"name":"ICreateAudioDeviceInputNodeResult","features":[151]},{"name":"ICreateAudioDeviceInputNodeResult2","features":[151]},{"name":"ICreateAudioDeviceOutputNodeResult","features":[151]},{"name":"ICreateAudioDeviceOutputNodeResult2","features":[151]},{"name":"ICreateAudioFileInputNodeResult","features":[151]},{"name":"ICreateAudioFileInputNodeResult2","features":[151]},{"name":"ICreateAudioFileOutputNodeResult","features":[151]},{"name":"ICreateAudioFileOutputNodeResult2","features":[151]},{"name":"ICreateAudioGraphResult","features":[151]},{"name":"ICreateAudioGraphResult2","features":[151]},{"name":"ICreateMediaSourceAudioInputNodeResult","features":[151]},{"name":"ICreateMediaSourceAudioInputNodeResult2","features":[151]},{"name":"IEchoEffectDefinition","features":[151]},{"name":"IEchoEffectDefinitionFactory","features":[151]},{"name":"IEqualizerBand","features":[151]},{"name":"IEqualizerEffectDefinition","features":[151]},{"name":"IEqualizerEffectDefinitionFactory","features":[151]},{"name":"IFrameInputNodeQuantumStartedEventArgs","features":[151]},{"name":"ILimiterEffectDefinition","features":[151]},{"name":"ILimiterEffectDefinitionFactory","features":[151]},{"name":"IMediaSourceAudioInputNode","features":[151]},{"name":"IReverbEffectDefinition","features":[151]},{"name":"IReverbEffectDefinitionFactory","features":[151]},{"name":"ISetDefaultSpatialAudioFormatResult","features":[151]},{"name":"ISpatialAudioDeviceConfiguration","features":[151]},{"name":"ISpatialAudioDeviceConfigurationStatics","features":[151]},{"name":"ISpatialAudioFormatConfiguration","features":[151]},{"name":"ISpatialAudioFormatConfigurationStatics","features":[151]},{"name":"ISpatialAudioFormatSubtypeStatics","features":[151]},{"name":"ISpatialAudioFormatSubtypeStatics2","features":[151]},{"name":"LimiterEffectDefinition","features":[151]},{"name":"MediaSourceAudioInputNode","features":[151]},{"name":"MediaSourceAudioInputNodeCreationStatus","features":[151]},{"name":"MixedRealitySpatialAudioFormatPolicy","features":[151]},{"name":"QuantumSizeSelectionMode","features":[151]},{"name":"ReverbEffectDefinition","features":[151]},{"name":"SetDefaultSpatialAudioFormatResult","features":[151]},{"name":"SetDefaultSpatialAudioFormatStatus","features":[151]},{"name":"SpatialAudioDeviceConfiguration","features":[151]},{"name":"SpatialAudioFormatConfiguration","features":[151]},{"name":"SpatialAudioFormatSubtype","features":[151]},{"name":"SpatialAudioModel","features":[151]}],"161":[{"name":"AdvancedCapturedPhoto","features":[152]},{"name":"AdvancedPhotoCapture","features":[152]},{"name":"AppBroadcastBackgroundService","features":[152]},{"name":"AppBroadcastBackgroundServiceSignInInfo","features":[152]},{"name":"AppBroadcastBackgroundServiceStreamInfo","features":[152]},{"name":"AppBroadcastCameraCaptureState","features":[152]},{"name":"AppBroadcastCameraCaptureStateChangedEventArgs","features":[152]},{"name":"AppBroadcastCameraOverlayLocation","features":[152]},{"name":"AppBroadcastCameraOverlaySize","features":[152]},{"name":"AppBroadcastCaptureTargetType","features":[152]},{"name":"AppBroadcastContract","features":[152]},{"name":"AppBroadcastExitBroadcastModeReason","features":[152]},{"name":"AppBroadcastGlobalSettings","features":[152]},{"name":"AppBroadcastHeartbeatRequestedEventArgs","features":[152]},{"name":"AppBroadcastManager","features":[152]},{"name":"AppBroadcastMicrophoneCaptureState","features":[152]},{"name":"AppBroadcastMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"AppBroadcastPlugIn","features":[152]},{"name":"AppBroadcastPlugInManager","features":[152]},{"name":"AppBroadcastPlugInState","features":[152]},{"name":"AppBroadcastPlugInStateChangedEventArgs","features":[152]},{"name":"AppBroadcastPreview","features":[152]},{"name":"AppBroadcastPreviewState","features":[152]},{"name":"AppBroadcastPreviewStateChangedEventArgs","features":[152]},{"name":"AppBroadcastPreviewStreamReader","features":[152]},{"name":"AppBroadcastPreviewStreamVideoFrame","features":[152]},{"name":"AppBroadcastPreviewStreamVideoHeader","features":[152]},{"name":"AppBroadcastProviderSettings","features":[152]},{"name":"AppBroadcastServices","features":[152]},{"name":"AppBroadcastSignInResult","features":[152]},{"name":"AppBroadcastSignInState","features":[152]},{"name":"AppBroadcastSignInStateChangedEventArgs","features":[152]},{"name":"AppBroadcastState","features":[152]},{"name":"AppBroadcastStreamAudioFrame","features":[152]},{"name":"AppBroadcastStreamAudioHeader","features":[152]},{"name":"AppBroadcastStreamReader","features":[152]},{"name":"AppBroadcastStreamState","features":[152]},{"name":"AppBroadcastStreamStateChangedEventArgs","features":[152]},{"name":"AppBroadcastStreamVideoFrame","features":[152]},{"name":"AppBroadcastStreamVideoHeader","features":[152]},{"name":"AppBroadcastTerminationReason","features":[152]},{"name":"AppBroadcastTriggerDetails","features":[152]},{"name":"AppBroadcastVideoEncodingBitrateMode","features":[152]},{"name":"AppBroadcastVideoEncodingResolutionMode","features":[152]},{"name":"AppBroadcastViewerCountChangedEventArgs","features":[152]},{"name":"AppCapture","features":[152]},{"name":"AppCaptureAlternateShortcutKeys","features":[152]},{"name":"AppCaptureContract","features":[152]},{"name":"AppCaptureDurationGeneratedEventArgs","features":[152]},{"name":"AppCaptureFileGeneratedEventArgs","features":[152]},{"name":"AppCaptureHistoricalBufferLengthUnit","features":[152]},{"name":"AppCaptureManager","features":[152]},{"name":"AppCaptureMetadataContract","features":[152]},{"name":"AppCaptureMetadataPriority","features":[152]},{"name":"AppCaptureMetadataWriter","features":[152]},{"name":"AppCaptureMicrophoneCaptureState","features":[152]},{"name":"AppCaptureMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"AppCaptureRecordOperation","features":[152]},{"name":"AppCaptureRecordingState","features":[152]},{"name":"AppCaptureRecordingStateChangedEventArgs","features":[152]},{"name":"AppCaptureServices","features":[152]},{"name":"AppCaptureSettings","features":[152]},{"name":"AppCaptureState","features":[152]},{"name":"AppCaptureVideoEncodingBitrateMode","features":[152]},{"name":"AppCaptureVideoEncodingFrameRateMode","features":[152]},{"name":"AppCaptureVideoEncodingResolutionMode","features":[152]},{"name":"CameraCaptureUI","features":[152]},{"name":"CameraCaptureUIContract","features":[152]},{"name":"CameraCaptureUIMaxPhotoResolution","features":[152]},{"name":"CameraCaptureUIMaxVideoResolution","features":[152]},{"name":"CameraCaptureUIMode","features":[152]},{"name":"CameraCaptureUIPhotoCaptureSettings","features":[152]},{"name":"CameraCaptureUIPhotoFormat","features":[152]},{"name":"CameraCaptureUIVideoCaptureSettings","features":[152]},{"name":"CameraCaptureUIVideoFormat","features":[152]},{"name":"CameraOptionsUI","features":[152]},{"name":"CapturedFrame","features":[152]},{"name":"CapturedFrameControlValues","features":[152]},{"name":"CapturedPhoto","features":[152]},{"name":"ForegroundActivationArgument","features":[152]},{"name":"GameBarCommand","features":[152]},{"name":"GameBarCommandOrigin","features":[152]},{"name":"GameBarContract","features":[152]},{"name":"GameBarServices","features":[152]},{"name":"GameBarServicesCommandEventArgs","features":[152]},{"name":"GameBarServicesDisplayMode","features":[152]},{"name":"GameBarServicesManager","features":[152]},{"name":"GameBarServicesManagerGameBarServicesCreatedEventArgs","features":[152]},{"name":"GameBarServicesTargetInfo","features":[152]},{"name":"GameBarTargetCapturePolicy","features":[152]},{"name":"IAdvancedCapturedPhoto","features":[152]},{"name":"IAdvancedCapturedPhoto2","features":[152]},{"name":"IAdvancedPhotoCapture","features":[152]},{"name":"IAppBroadcastBackgroundService","features":[152]},{"name":"IAppBroadcastBackgroundService2","features":[152]},{"name":"IAppBroadcastBackgroundServiceSignInInfo","features":[152]},{"name":"IAppBroadcastBackgroundServiceSignInInfo2","features":[152]},{"name":"IAppBroadcastBackgroundServiceStreamInfo","features":[152]},{"name":"IAppBroadcastBackgroundServiceStreamInfo2","features":[152]},{"name":"IAppBroadcastCameraCaptureStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastGlobalSettings","features":[152]},{"name":"IAppBroadcastHeartbeatRequestedEventArgs","features":[152]},{"name":"IAppBroadcastManagerStatics","features":[152]},{"name":"IAppBroadcastMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastPlugIn","features":[152]},{"name":"IAppBroadcastPlugInManager","features":[152]},{"name":"IAppBroadcastPlugInManagerStatics","features":[152]},{"name":"IAppBroadcastPlugInStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastPreview","features":[152]},{"name":"IAppBroadcastPreviewStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastPreviewStreamReader","features":[152]},{"name":"IAppBroadcastPreviewStreamVideoFrame","features":[152]},{"name":"IAppBroadcastPreviewStreamVideoHeader","features":[152]},{"name":"IAppBroadcastProviderSettings","features":[152]},{"name":"IAppBroadcastServices","features":[152]},{"name":"IAppBroadcastSignInStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastState","features":[152]},{"name":"IAppBroadcastStreamAudioFrame","features":[152]},{"name":"IAppBroadcastStreamAudioHeader","features":[152]},{"name":"IAppBroadcastStreamReader","features":[152]},{"name":"IAppBroadcastStreamStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastStreamVideoFrame","features":[152]},{"name":"IAppBroadcastStreamVideoHeader","features":[152]},{"name":"IAppBroadcastTriggerDetails","features":[152]},{"name":"IAppBroadcastViewerCountChangedEventArgs","features":[152]},{"name":"IAppCapture","features":[152]},{"name":"IAppCaptureAlternateShortcutKeys","features":[152]},{"name":"IAppCaptureAlternateShortcutKeys2","features":[152]},{"name":"IAppCaptureAlternateShortcutKeys3","features":[152]},{"name":"IAppCaptureDurationGeneratedEventArgs","features":[152]},{"name":"IAppCaptureFileGeneratedEventArgs","features":[152]},{"name":"IAppCaptureManagerStatics","features":[152]},{"name":"IAppCaptureMetadataWriter","features":[152]},{"name":"IAppCaptureMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"IAppCaptureRecordOperation","features":[152]},{"name":"IAppCaptureRecordingStateChangedEventArgs","features":[152]},{"name":"IAppCaptureServices","features":[152]},{"name":"IAppCaptureSettings","features":[152]},{"name":"IAppCaptureSettings2","features":[152]},{"name":"IAppCaptureSettings3","features":[152]},{"name":"IAppCaptureSettings4","features":[152]},{"name":"IAppCaptureSettings5","features":[152]},{"name":"IAppCaptureState","features":[152]},{"name":"IAppCaptureStatics","features":[152]},{"name":"IAppCaptureStatics2","features":[152]},{"name":"ICameraCaptureUI","features":[152]},{"name":"ICameraCaptureUIPhotoCaptureSettings","features":[152]},{"name":"ICameraCaptureUIVideoCaptureSettings","features":[152]},{"name":"ICameraOptionsUIStatics","features":[152]},{"name":"ICapturedFrame","features":[152]},{"name":"ICapturedFrame2","features":[152]},{"name":"ICapturedFrameControlValues","features":[152]},{"name":"ICapturedFrameControlValues2","features":[152]},{"name":"ICapturedFrameWithSoftwareBitmap","features":[152]},{"name":"ICapturedPhoto","features":[152]},{"name":"IGameBarServices","features":[152]},{"name":"IGameBarServicesCommandEventArgs","features":[152]},{"name":"IGameBarServicesManager","features":[152]},{"name":"IGameBarServicesManagerGameBarServicesCreatedEventArgs","features":[152]},{"name":"IGameBarServicesManagerStatics","features":[152]},{"name":"IGameBarServicesTargetInfo","features":[152]},{"name":"ILowLagMediaRecording","features":[152]},{"name":"ILowLagMediaRecording2","features":[152]},{"name":"ILowLagMediaRecording3","features":[152]},{"name":"ILowLagPhotoCapture","features":[152]},{"name":"ILowLagPhotoSequenceCapture","features":[152]},{"name":"IMediaCapture","features":[152]},{"name":"IMediaCapture2","features":[152]},{"name":"IMediaCapture3","features":[152]},{"name":"IMediaCapture4","features":[152]},{"name":"IMediaCapture5","features":[152]},{"name":"IMediaCapture6","features":[152]},{"name":"IMediaCapture7","features":[152]},{"name":"IMediaCaptureDeviceExclusiveControlStatusChangedEventArgs","features":[152]},{"name":"IMediaCaptureFailedEventArgs","features":[152]},{"name":"IMediaCaptureFocusChangedEventArgs","features":[152]},{"name":"IMediaCaptureInitializationSettings","features":[152]},{"name":"IMediaCaptureInitializationSettings2","features":[152]},{"name":"IMediaCaptureInitializationSettings3","features":[152]},{"name":"IMediaCaptureInitializationSettings4","features":[152]},{"name":"IMediaCaptureInitializationSettings5","features":[152]},{"name":"IMediaCaptureInitializationSettings6","features":[152]},{"name":"IMediaCaptureInitializationSettings7","features":[152]},{"name":"IMediaCapturePauseResult","features":[152]},{"name":"IMediaCaptureRelativePanelWatcher","features":[152]},{"name":"IMediaCaptureSettings","features":[152]},{"name":"IMediaCaptureSettings2","features":[152]},{"name":"IMediaCaptureSettings3","features":[152]},{"name":"IMediaCaptureStatics","features":[152]},{"name":"IMediaCaptureStopResult","features":[152]},{"name":"IMediaCaptureVideoPreview","features":[152]},{"name":"IMediaCaptureVideoProfile","features":[152]},{"name":"IMediaCaptureVideoProfile2","features":[152]},{"name":"IMediaCaptureVideoProfileMediaDescription","features":[152]},{"name":"IMediaCaptureVideoProfileMediaDescription2","features":[152]},{"name":"IOptionalReferencePhotoCapturedEventArgs","features":[152]},{"name":"IPhotoCapturedEventArgs","features":[152]},{"name":"IPhotoConfirmationCapturedEventArgs","features":[152]},{"name":"IScreenCapture","features":[152]},{"name":"IScreenCaptureStatics","features":[152]},{"name":"ISourceSuspensionChangedEventArgs","features":[152]},{"name":"IVideoStreamConfiguration","features":[152]},{"name":"KnownVideoProfile","features":[152]},{"name":"LowLagMediaRecording","features":[152]},{"name":"LowLagPhotoCapture","features":[152]},{"name":"LowLagPhotoSequenceCapture","features":[152]},{"name":"MediaCapture","features":[152]},{"name":"MediaCaptureDeviceExclusiveControlReleaseMode","features":[152]},{"name":"MediaCaptureDeviceExclusiveControlStatus","features":[152]},{"name":"MediaCaptureDeviceExclusiveControlStatusChangedEventArgs","features":[152]},{"name":"MediaCaptureFailedEventArgs","features":[152]},{"name":"MediaCaptureFailedEventHandler","features":[152]},{"name":"MediaCaptureFocusChangedEventArgs","features":[152]},{"name":"MediaCaptureInitializationSettings","features":[152]},{"name":"MediaCaptureMemoryPreference","features":[152]},{"name":"MediaCapturePauseResult","features":[152]},{"name":"MediaCaptureRelativePanelWatcher","features":[152]},{"name":"MediaCaptureSettings","features":[152]},{"name":"MediaCaptureSharingMode","features":[152]},{"name":"MediaCaptureStopResult","features":[152]},{"name":"MediaCaptureThermalStatus","features":[152]},{"name":"MediaCaptureVideoProfile","features":[152]},{"name":"MediaCaptureVideoProfileMediaDescription","features":[152]},{"name":"MediaCategory","features":[152]},{"name":"MediaStreamType","features":[152]},{"name":"OptionalReferencePhotoCapturedEventArgs","features":[152]},{"name":"PhotoCaptureSource","features":[152]},{"name":"PhotoCapturedEventArgs","features":[152]},{"name":"PhotoConfirmationCapturedEventArgs","features":[152]},{"name":"PowerlineFrequency","features":[152]},{"name":"RecordLimitationExceededEventHandler","features":[152]},{"name":"ScreenCapture","features":[152]},{"name":"SourceSuspensionChangedEventArgs","features":[152]},{"name":"StreamingCaptureMode","features":[152]},{"name":"VideoDeviceCharacteristic","features":[152]},{"name":"VideoRotation","features":[152]},{"name":"VideoStreamConfiguration","features":[152]},{"name":"WhiteBalanceGain","features":[152]}],"162":[{"name":"IVariablePhotoCapturedEventArgs","features":[153]},{"name":"IVariablePhotoSequenceCapture","features":[153]},{"name":"IVariablePhotoSequenceCapture2","features":[153]},{"name":"VariablePhotoCapturedEventArgs","features":[153]},{"name":"VariablePhotoSequenceCapture","features":[153]}],"163":[{"name":"AudioMediaFrame","features":[154]},{"name":"BufferMediaFrame","features":[154]},{"name":"DepthMediaFrame","features":[154]},{"name":"DepthMediaFrameFormat","features":[154]},{"name":"IAudioMediaFrame","features":[154]},{"name":"IBufferMediaFrame","features":[154]},{"name":"IDepthMediaFrame","features":[154]},{"name":"IDepthMediaFrame2","features":[154]},{"name":"IDepthMediaFrameFormat","features":[154]},{"name":"IInfraredMediaFrame","features":[154]},{"name":"IMediaFrameArrivedEventArgs","features":[154]},{"name":"IMediaFrameFormat","features":[154]},{"name":"IMediaFrameFormat2","features":[154]},{"name":"IMediaFrameReader","features":[154]},{"name":"IMediaFrameReader2","features":[154]},{"name":"IMediaFrameReference","features":[154]},{"name":"IMediaFrameReference2","features":[154]},{"name":"IMediaFrameSource","features":[154]},{"name":"IMediaFrameSourceController","features":[154]},{"name":"IMediaFrameSourceController2","features":[154]},{"name":"IMediaFrameSourceController3","features":[154]},{"name":"IMediaFrameSourceGetPropertyResult","features":[154]},{"name":"IMediaFrameSourceGroup","features":[154]},{"name":"IMediaFrameSourceGroupStatics","features":[154]},{"name":"IMediaFrameSourceInfo","features":[154]},{"name":"IMediaFrameSourceInfo2","features":[154]},{"name":"IMediaFrameSourceInfo3","features":[154]},{"name":"IMediaFrameSourceInfo4","features":[154]},{"name":"IMultiSourceMediaFrameArrivedEventArgs","features":[154]},{"name":"IMultiSourceMediaFrameReader","features":[154]},{"name":"IMultiSourceMediaFrameReader2","features":[154]},{"name":"IMultiSourceMediaFrameReference","features":[154]},{"name":"IVideoMediaFrame","features":[154]},{"name":"IVideoMediaFrameFormat","features":[154]},{"name":"InfraredMediaFrame","features":[154]},{"name":"MediaFrameArrivedEventArgs","features":[154]},{"name":"MediaFrameFormat","features":[154]},{"name":"MediaFrameReader","features":[154]},{"name":"MediaFrameReaderAcquisitionMode","features":[154]},{"name":"MediaFrameReaderStartStatus","features":[154]},{"name":"MediaFrameReference","features":[154]},{"name":"MediaFrameSource","features":[154]},{"name":"MediaFrameSourceController","features":[154]},{"name":"MediaFrameSourceGetPropertyResult","features":[154]},{"name":"MediaFrameSourceGetPropertyStatus","features":[154]},{"name":"MediaFrameSourceGroup","features":[154]},{"name":"MediaFrameSourceInfo","features":[154]},{"name":"MediaFrameSourceKind","features":[154]},{"name":"MediaFrameSourceSetPropertyStatus","features":[154]},{"name":"MultiSourceMediaFrameArrivedEventArgs","features":[154]},{"name":"MultiSourceMediaFrameReader","features":[154]},{"name":"MultiSourceMediaFrameReaderStartStatus","features":[154]},{"name":"MultiSourceMediaFrameReference","features":[154]},{"name":"VideoMediaFrame","features":[154]},{"name":"VideoMediaFrameFormat","features":[154]}],"164":[{"name":"CastingConnection","features":[155]},{"name":"CastingConnectionErrorOccurredEventArgs","features":[155]},{"name":"CastingConnectionErrorStatus","features":[155]},{"name":"CastingConnectionState","features":[155]},{"name":"CastingDevice","features":[155]},{"name":"CastingDevicePicker","features":[155]},{"name":"CastingDevicePickerFilter","features":[155]},{"name":"CastingDeviceSelectedEventArgs","features":[155]},{"name":"CastingPlaybackTypes","features":[155]},{"name":"CastingSource","features":[155]},{"name":"ICastingConnection","features":[155]},{"name":"ICastingConnectionErrorOccurredEventArgs","features":[155]},{"name":"ICastingDevice","features":[155]},{"name":"ICastingDevicePicker","features":[155]},{"name":"ICastingDevicePickerFilter","features":[155]},{"name":"ICastingDeviceSelectedEventArgs","features":[155]},{"name":"ICastingDeviceStatics","features":[155]},{"name":"ICastingSource","features":[155]}],"165":[{"name":"ClosedCaptionColor","features":[156]},{"name":"ClosedCaptionEdgeEffect","features":[156]},{"name":"ClosedCaptionOpacity","features":[156]},{"name":"ClosedCaptionProperties","features":[156]},{"name":"ClosedCaptionSize","features":[156]},{"name":"ClosedCaptionStyle","features":[156]},{"name":"IClosedCaptionPropertiesStatics","features":[156]},{"name":"IClosedCaptionPropertiesStatics2","features":[156]}],"166":[{"name":"ContentAccessRestrictionLevel","features":[157]},{"name":"ContentRestrictionsBrowsePolicy","features":[157]},{"name":"IContentRestrictionsBrowsePolicy","features":[157]},{"name":"IRatedContentDescription","features":[157]},{"name":"IRatedContentDescriptionFactory","features":[157]},{"name":"IRatedContentRestrictions","features":[157]},{"name":"IRatedContentRestrictionsFactory","features":[157]},{"name":"RatedContentCategory","features":[157]},{"name":"RatedContentDescription","features":[157]},{"name":"RatedContentRestrictions","features":[157]}],"167":[{"name":"CurrentSessionChangedEventArgs","features":[158]},{"name":"GlobalSystemMediaTransportControlsSession","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionManager","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionMediaProperties","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionPlaybackControls","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionPlaybackInfo","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionPlaybackStatus","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionTimelineProperties","features":[158]},{"name":"ICurrentSessionChangedEventArgs","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSession","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionManager","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionManagerStatics","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionMediaProperties","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionPlaybackControls","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionPlaybackInfo","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionTimelineProperties","features":[158]},{"name":"IMediaPropertiesChangedEventArgs","features":[158]},{"name":"IPlaybackInfoChangedEventArgs","features":[158]},{"name":"ISessionsChangedEventArgs","features":[158]},{"name":"ITimelinePropertiesChangedEventArgs","features":[158]},{"name":"MediaPropertiesChangedEventArgs","features":[158]},{"name":"PlaybackInfoChangedEventArgs","features":[158]},{"name":"SessionsChangedEventArgs","features":[158]},{"name":"TimelinePropertiesChangedEventArgs","features":[158]}],"168":[{"name":"AudioDecoderDegradation","features":[159]},{"name":"AudioDecoderDegradationReason","features":[159]},{"name":"AudioStreamDescriptor","features":[159]},{"name":"AudioTrack","features":[159]},{"name":"AudioTrackOpenFailedEventArgs","features":[159]},{"name":"AudioTrackSupportInfo","features":[159]},{"name":"ChapterCue","features":[159]},{"name":"CodecCategory","features":[159]},{"name":"CodecInfo","features":[159]},{"name":"CodecKind","features":[159]},{"name":"CodecQuery","features":[159]},{"name":"CodecSubtypes","features":[159]},{"name":"DataCue","features":[159]},{"name":"FaceDetectedEventArgs","features":[159]},{"name":"FaceDetectionEffect","features":[159]},{"name":"FaceDetectionEffectDefinition","features":[159,160]},{"name":"FaceDetectionEffectFrame","features":[159]},{"name":"FaceDetectionMode","features":[159]},{"name":"HighDynamicRangeControl","features":[159]},{"name":"HighDynamicRangeOutput","features":[159]},{"name":"IAudioStreamDescriptor","features":[159]},{"name":"IAudioStreamDescriptor2","features":[159]},{"name":"IAudioStreamDescriptor3","features":[159]},{"name":"IAudioStreamDescriptorFactory","features":[159]},{"name":"IAudioTrack","features":[159]},{"name":"IAudioTrackOpenFailedEventArgs","features":[159]},{"name":"IAudioTrackSupportInfo","features":[159]},{"name":"IChapterCue","features":[159]},{"name":"ICodecInfo","features":[159]},{"name":"ICodecQuery","features":[159]},{"name":"ICodecSubtypesStatics","features":[159]},{"name":"IDataCue","features":[159]},{"name":"IDataCue2","features":[159]},{"name":"IFaceDetectedEventArgs","features":[159]},{"name":"IFaceDetectionEffect","features":[159]},{"name":"IFaceDetectionEffectDefinition","features":[159]},{"name":"IFaceDetectionEffectFrame","features":[159]},{"name":"IHighDynamicRangeControl","features":[159]},{"name":"IHighDynamicRangeOutput","features":[159]},{"name":"IImageCue","features":[159]},{"name":"IInitializeMediaStreamSourceRequestedEventArgs","features":[159]},{"name":"ILowLightFusionResult","features":[159]},{"name":"ILowLightFusionStatics","features":[159]},{"name":"IMediaBinder","features":[159]},{"name":"IMediaBindingEventArgs","features":[159]},{"name":"IMediaBindingEventArgs2","features":[159]},{"name":"IMediaBindingEventArgs3","features":[159]},{"name":"IMediaCue","features":[159]},{"name":"IMediaCueEventArgs","features":[159]},{"name":"IMediaSource","features":[159]},{"name":"IMediaSource2","features":[159]},{"name":"IMediaSource3","features":[159]},{"name":"IMediaSource4","features":[159]},{"name":"IMediaSource5","features":[159]},{"name":"IMediaSourceAppServiceConnection","features":[159]},{"name":"IMediaSourceAppServiceConnectionFactory","features":[159]},{"name":"IMediaSourceError","features":[159]},{"name":"IMediaSourceOpenOperationCompletedEventArgs","features":[159]},{"name":"IMediaSourceStateChangedEventArgs","features":[159]},{"name":"IMediaSourceStatics","features":[159]},{"name":"IMediaSourceStatics2","features":[159]},{"name":"IMediaSourceStatics3","features":[159]},{"name":"IMediaSourceStatics4","features":[159]},{"name":"IMediaStreamDescriptor","features":[159]},{"name":"IMediaStreamDescriptor2","features":[159]},{"name":"IMediaStreamSample","features":[159]},{"name":"IMediaStreamSample2","features":[159]},{"name":"IMediaStreamSampleProtectionProperties","features":[159]},{"name":"IMediaStreamSampleStatics","features":[159]},{"name":"IMediaStreamSampleStatics2","features":[159]},{"name":"IMediaStreamSource","features":[159]},{"name":"IMediaStreamSource2","features":[159]},{"name":"IMediaStreamSource3","features":[159]},{"name":"IMediaStreamSource4","features":[159]},{"name":"IMediaStreamSourceClosedEventArgs","features":[159]},{"name":"IMediaStreamSourceClosedRequest","features":[159]},{"name":"IMediaStreamSourceFactory","features":[159]},{"name":"IMediaStreamSourceSampleRenderedEventArgs","features":[159]},{"name":"IMediaStreamSourceSampleRequest","features":[159]},{"name":"IMediaStreamSourceSampleRequestDeferral","features":[159]},{"name":"IMediaStreamSourceSampleRequestedEventArgs","features":[159]},{"name":"IMediaStreamSourceStartingEventArgs","features":[159]},{"name":"IMediaStreamSourceStartingRequest","features":[159]},{"name":"IMediaStreamSourceStartingRequestDeferral","features":[159]},{"name":"IMediaStreamSourceSwitchStreamsRequest","features":[159]},{"name":"IMediaStreamSourceSwitchStreamsRequestDeferral","features":[159]},{"name":"IMediaStreamSourceSwitchStreamsRequestedEventArgs","features":[159]},{"name":"IMediaTrack","features":[159]},{"name":"IMseSourceBuffer","features":[159]},{"name":"IMseSourceBufferList","features":[159]},{"name":"IMseStreamSource","features":[159]},{"name":"IMseStreamSource2","features":[159]},{"name":"IMseStreamSourceStatics","features":[159]},{"name":"ISceneAnalysisEffect","features":[159]},{"name":"ISceneAnalysisEffectFrame","features":[159]},{"name":"ISceneAnalysisEffectFrame2","features":[159]},{"name":"ISceneAnalyzedEventArgs","features":[159]},{"name":"ISingleSelectMediaTrackList","features":[159]},{"name":"ISpeechCue","features":[159]},{"name":"ITimedMetadataStreamDescriptor","features":[159]},{"name":"ITimedMetadataStreamDescriptorFactory","features":[159]},{"name":"ITimedMetadataTrack","features":[159]},{"name":"ITimedMetadataTrack2","features":[159]},{"name":"ITimedMetadataTrackError","features":[159]},{"name":"ITimedMetadataTrackFactory","features":[159]},{"name":"ITimedMetadataTrackFailedEventArgs","features":[159]},{"name":"ITimedMetadataTrackProvider","features":[159]},{"name":"ITimedTextBouten","features":[159]},{"name":"ITimedTextCue","features":[159]},{"name":"ITimedTextLine","features":[159]},{"name":"ITimedTextRegion","features":[159]},{"name":"ITimedTextRuby","features":[159]},{"name":"ITimedTextSource","features":[159]},{"name":"ITimedTextSourceResolveResultEventArgs","features":[159]},{"name":"ITimedTextSourceStatics","features":[159]},{"name":"ITimedTextSourceStatics2","features":[159]},{"name":"ITimedTextStyle","features":[159]},{"name":"ITimedTextStyle2","features":[159]},{"name":"ITimedTextStyle3","features":[159]},{"name":"ITimedTextSubformat","features":[159]},{"name":"IVideoStabilizationEffect","features":[159]},{"name":"IVideoStabilizationEffectEnabledChangedEventArgs","features":[159]},{"name":"IVideoStreamDescriptor","features":[159]},{"name":"IVideoStreamDescriptor2","features":[159]},{"name":"IVideoStreamDescriptorFactory","features":[159]},{"name":"IVideoTrack","features":[159]},{"name":"IVideoTrackOpenFailedEventArgs","features":[159]},{"name":"IVideoTrackSupportInfo","features":[159]},{"name":"ImageCue","features":[159]},{"name":"InitializeMediaStreamSourceRequestedEventArgs","features":[159]},{"name":"LowLightFusion","features":[159]},{"name":"LowLightFusionResult","features":[159]},{"name":"MediaBinder","features":[159]},{"name":"MediaBindingEventArgs","features":[159]},{"name":"MediaCueEventArgs","features":[159]},{"name":"MediaDecoderStatus","features":[159]},{"name":"MediaSource","features":[159]},{"name":"MediaSourceAppServiceConnection","features":[159]},{"name":"MediaSourceError","features":[159]},{"name":"MediaSourceOpenOperationCompletedEventArgs","features":[159]},{"name":"MediaSourceState","features":[159]},{"name":"MediaSourceStateChangedEventArgs","features":[159]},{"name":"MediaSourceStatus","features":[159]},{"name":"MediaStreamSample","features":[159]},{"name":"MediaStreamSamplePropertySet","features":[36,159]},{"name":"MediaStreamSampleProtectionProperties","features":[159]},{"name":"MediaStreamSource","features":[159]},{"name":"MediaStreamSourceClosedEventArgs","features":[159]},{"name":"MediaStreamSourceClosedReason","features":[159]},{"name":"MediaStreamSourceClosedRequest","features":[159]},{"name":"MediaStreamSourceErrorStatus","features":[159]},{"name":"MediaStreamSourceSampleRenderedEventArgs","features":[159]},{"name":"MediaStreamSourceSampleRequest","features":[159]},{"name":"MediaStreamSourceSampleRequestDeferral","features":[159]},{"name":"MediaStreamSourceSampleRequestedEventArgs","features":[159]},{"name":"MediaStreamSourceStartingEventArgs","features":[159]},{"name":"MediaStreamSourceStartingRequest","features":[159]},{"name":"MediaStreamSourceStartingRequestDeferral","features":[159]},{"name":"MediaStreamSourceSwitchStreamsRequest","features":[159]},{"name":"MediaStreamSourceSwitchStreamsRequestDeferral","features":[159]},{"name":"MediaStreamSourceSwitchStreamsRequestedEventArgs","features":[159]},{"name":"MediaTrackKind","features":[159]},{"name":"MseAppendMode","features":[159]},{"name":"MseEndOfStreamStatus","features":[159]},{"name":"MseReadyState","features":[159]},{"name":"MseSourceBuffer","features":[159]},{"name":"MseSourceBufferList","features":[159]},{"name":"MseStreamSource","features":[159]},{"name":"MseTimeRange","features":[76,159]},{"name":"SceneAnalysisEffect","features":[159]},{"name":"SceneAnalysisEffectDefinition","features":[159,160]},{"name":"SceneAnalysisEffectFrame","features":[159]},{"name":"SceneAnalysisRecommendation","features":[159]},{"name":"SceneAnalyzedEventArgs","features":[159]},{"name":"SpeechCue","features":[159]},{"name":"TimedMetadataKind","features":[159]},{"name":"TimedMetadataStreamDescriptor","features":[159]},{"name":"TimedMetadataTrack","features":[159]},{"name":"TimedMetadataTrackError","features":[159]},{"name":"TimedMetadataTrackErrorCode","features":[159]},{"name":"TimedMetadataTrackFailedEventArgs","features":[159]},{"name":"TimedTextBouten","features":[159]},{"name":"TimedTextBoutenPosition","features":[159]},{"name":"TimedTextBoutenType","features":[159]},{"name":"TimedTextCue","features":[159]},{"name":"TimedTextDisplayAlignment","features":[159]},{"name":"TimedTextDouble","features":[159]},{"name":"TimedTextFlowDirection","features":[159]},{"name":"TimedTextFontStyle","features":[159]},{"name":"TimedTextLine","features":[159]},{"name":"TimedTextLineAlignment","features":[159]},{"name":"TimedTextPadding","features":[159]},{"name":"TimedTextPoint","features":[159]},{"name":"TimedTextRegion","features":[159]},{"name":"TimedTextRuby","features":[159]},{"name":"TimedTextRubyAlign","features":[159]},{"name":"TimedTextRubyPosition","features":[159]},{"name":"TimedTextRubyReserve","features":[159]},{"name":"TimedTextScrollMode","features":[159]},{"name":"TimedTextSize","features":[159]},{"name":"TimedTextSource","features":[159]},{"name":"TimedTextSourceResolveResultEventArgs","features":[159]},{"name":"TimedTextStyle","features":[159]},{"name":"TimedTextSubformat","features":[159]},{"name":"TimedTextUnit","features":[159]},{"name":"TimedTextWeight","features":[159]},{"name":"TimedTextWrapping","features":[159]},{"name":"TimedTextWritingMode","features":[159]},{"name":"VideoStabilizationEffect","features":[159]},{"name":"VideoStabilizationEffectDefinition","features":[159,160]},{"name":"VideoStabilizationEffectEnabledChangedEventArgs","features":[159]},{"name":"VideoStabilizationEffectEnabledChangedReason","features":[159]},{"name":"VideoStreamDescriptor","features":[159]},{"name":"VideoTrack","features":[159]},{"name":"VideoTrackOpenFailedEventArgs","features":[159]},{"name":"VideoTrackSupportInfo","features":[159]}],"169":[{"name":"ISoundLevelBrokerStatics","features":[161]},{"name":"SoundLevelBroker","features":[161]}],"170":[{"name":"AdvancedPhotoCaptureSettings","features":[162]},{"name":"AdvancedPhotoControl","features":[162]},{"name":"AdvancedPhotoMode","features":[162]},{"name":"AudioDeviceController","features":[162]},{"name":"AudioDeviceModule","features":[162]},{"name":"AudioDeviceModuleNotificationEventArgs","features":[162]},{"name":"AudioDeviceModulesManager","features":[162]},{"name":"AudioDeviceRole","features":[162]},{"name":"AutoFocusRange","features":[162]},{"name":"CallControl","features":[162]},{"name":"CallControlContract","features":[162]},{"name":"CallControlEventHandler","features":[162]},{"name":"CameraOcclusionInfo","features":[162]},{"name":"CameraOcclusionKind","features":[162]},{"name":"CameraOcclusionState","features":[162]},{"name":"CameraOcclusionStateChangedEventArgs","features":[162]},{"name":"CameraStreamState","features":[162]},{"name":"CaptureSceneMode","features":[162]},{"name":"CaptureUse","features":[162]},{"name":"ColorTemperaturePreset","features":[162]},{"name":"DefaultAudioCaptureDeviceChangedEventArgs","features":[162]},{"name":"DefaultAudioRenderDeviceChangedEventArgs","features":[162]},{"name":"DialRequestedEventArgs","features":[162]},{"name":"DialRequestedEventHandler","features":[162]},{"name":"DigitalWindowBounds","features":[162]},{"name":"DigitalWindowCapability","features":[162]},{"name":"DigitalWindowControl","features":[162]},{"name":"DigitalWindowMode","features":[162]},{"name":"ExposureCompensationControl","features":[162]},{"name":"ExposureControl","features":[162]},{"name":"ExposurePriorityVideoControl","features":[162]},{"name":"FlashControl","features":[162]},{"name":"FocusControl","features":[162]},{"name":"FocusMode","features":[162]},{"name":"FocusPreset","features":[162]},{"name":"FocusSettings","features":[162]},{"name":"HdrVideoControl","features":[162]},{"name":"HdrVideoMode","features":[162]},{"name":"IAdvancedPhotoCaptureSettings","features":[162]},{"name":"IAdvancedPhotoControl","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController10","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController11","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController2","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController3","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController4","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController5","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController6","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController7","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController8","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController9","features":[162]},{"name":"IAudioDeviceController","features":[162]},{"name":"IAudioDeviceModule","features":[162]},{"name":"IAudioDeviceModuleNotificationEventArgs","features":[162]},{"name":"IAudioDeviceModulesManager","features":[162]},{"name":"IAudioDeviceModulesManagerFactory","features":[162]},{"name":"ICallControl","features":[162]},{"name":"ICallControlStatics","features":[162]},{"name":"ICameraOcclusionInfo","features":[162]},{"name":"ICameraOcclusionState","features":[162]},{"name":"ICameraOcclusionStateChangedEventArgs","features":[162]},{"name":"IDefaultAudioDeviceChangedEventArgs","features":[162]},{"name":"IDialRequestedEventArgs","features":[162]},{"name":"IDigitalWindowBounds","features":[162]},{"name":"IDigitalWindowCapability","features":[162]},{"name":"IDigitalWindowControl","features":[162]},{"name":"IExposureCompensationControl","features":[162]},{"name":"IExposureControl","features":[162]},{"name":"IExposurePriorityVideoControl","features":[162]},{"name":"IFlashControl","features":[162]},{"name":"IFlashControl2","features":[162]},{"name":"IFocusControl","features":[162]},{"name":"IFocusControl2","features":[162]},{"name":"IFocusSettings","features":[162]},{"name":"IHdrVideoControl","features":[162]},{"name":"IInfraredTorchControl","features":[162]},{"name":"IIsoSpeedControl","features":[162]},{"name":"IIsoSpeedControl2","features":[162]},{"name":"IKeypadPressedEventArgs","features":[162]},{"name":"ILowLagPhotoControl","features":[162]},{"name":"ILowLagPhotoSequenceControl","features":[162]},{"name":"IMediaDeviceControl","features":[162]},{"name":"IMediaDeviceControlCapabilities","features":[162]},{"name":"IMediaDeviceController","features":[162]},{"name":"IMediaDeviceStatics","features":[162]},{"name":"IModuleCommandResult","features":[162]},{"name":"IOpticalImageStabilizationControl","features":[162]},{"name":"IPanelBasedOptimizationControl","features":[162]},{"name":"IPhotoConfirmationControl","features":[162]},{"name":"IRedialRequestedEventArgs","features":[162]},{"name":"IRegionOfInterest","features":[162]},{"name":"IRegionOfInterest2","features":[162]},{"name":"IRegionsOfInterestControl","features":[162]},{"name":"ISceneModeControl","features":[162]},{"name":"ITorchControl","features":[162]},{"name":"IVideoDeviceController","features":[162]},{"name":"IVideoDeviceControllerGetDevicePropertyResult","features":[162]},{"name":"IVideoTemporalDenoisingControl","features":[162]},{"name":"IWhiteBalanceControl","features":[162]},{"name":"IZoomControl","features":[162]},{"name":"IZoomControl2","features":[162]},{"name":"IZoomSettings","features":[162]},{"name":"InfraredTorchControl","features":[162]},{"name":"InfraredTorchMode","features":[162]},{"name":"IsoSpeedControl","features":[162]},{"name":"IsoSpeedPreset","features":[162]},{"name":"KeypadPressedEventArgs","features":[162]},{"name":"KeypadPressedEventHandler","features":[162]},{"name":"LowLagPhotoControl","features":[162]},{"name":"LowLagPhotoSequenceControl","features":[162]},{"name":"ManualFocusDistance","features":[162]},{"name":"MediaCaptureFocusState","features":[162]},{"name":"MediaCaptureOptimization","features":[162]},{"name":"MediaCapturePauseBehavior","features":[162]},{"name":"MediaDevice","features":[162]},{"name":"MediaDeviceControl","features":[162]},{"name":"MediaDeviceControlCapabilities","features":[162]},{"name":"ModuleCommandResult","features":[162]},{"name":"OpticalImageStabilizationControl","features":[162]},{"name":"OpticalImageStabilizationMode","features":[162]},{"name":"PanelBasedOptimizationControl","features":[162]},{"name":"PhotoConfirmationControl","features":[162]},{"name":"RedialRequestedEventArgs","features":[162]},{"name":"RedialRequestedEventHandler","features":[162]},{"name":"RegionOfInterest","features":[162]},{"name":"RegionOfInterestType","features":[162]},{"name":"RegionsOfInterestControl","features":[162]},{"name":"SceneModeControl","features":[162]},{"name":"SendCommandStatus","features":[162]},{"name":"TelephonyKey","features":[162]},{"name":"TorchControl","features":[162]},{"name":"VideoDeviceController","features":[162]},{"name":"VideoDeviceControllerGetDevicePropertyResult","features":[162]},{"name":"VideoDeviceControllerGetDevicePropertyStatus","features":[162]},{"name":"VideoDeviceControllerSetDevicePropertyStatus","features":[162]},{"name":"VideoTemporalDenoisingControl","features":[162]},{"name":"VideoTemporalDenoisingMode","features":[162]},{"name":"WhiteBalanceControl","features":[162]},{"name":"ZoomControl","features":[162]},{"name":"ZoomSettings","features":[162]},{"name":"ZoomTransitionMode","features":[162]}],"171":[{"name":"CameraIntrinsics","features":[163]},{"name":"DepthCorrelatedCoordinateMapper","features":[163]},{"name":"FrameControlCapabilities","features":[163]},{"name":"FrameController","features":[163]},{"name":"FrameExposureCapabilities","features":[163]},{"name":"FrameExposureCompensationCapabilities","features":[163]},{"name":"FrameExposureCompensationControl","features":[163]},{"name":"FrameExposureControl","features":[163]},{"name":"FrameFlashCapabilities","features":[163]},{"name":"FrameFlashControl","features":[163]},{"name":"FrameFlashMode","features":[163]},{"name":"FrameFocusCapabilities","features":[163]},{"name":"FrameFocusControl","features":[163]},{"name":"FrameIsoSpeedCapabilities","features":[163]},{"name":"FrameIsoSpeedControl","features":[163]},{"name":"ICameraIntrinsics","features":[163]},{"name":"ICameraIntrinsics2","features":[163]},{"name":"ICameraIntrinsicsFactory","features":[163]},{"name":"IDepthCorrelatedCoordinateMapper","features":[163]},{"name":"IFrameControlCapabilities","features":[163]},{"name":"IFrameControlCapabilities2","features":[163]},{"name":"IFrameController","features":[163]},{"name":"IFrameController2","features":[163]},{"name":"IFrameExposureCapabilities","features":[163]},{"name":"IFrameExposureCompensationCapabilities","features":[163]},{"name":"IFrameExposureCompensationControl","features":[163]},{"name":"IFrameExposureControl","features":[163]},{"name":"IFrameFlashCapabilities","features":[163]},{"name":"IFrameFlashControl","features":[163]},{"name":"IFrameFocusCapabilities","features":[163]},{"name":"IFrameFocusControl","features":[163]},{"name":"IFrameIsoSpeedCapabilities","features":[163]},{"name":"IFrameIsoSpeedControl","features":[163]},{"name":"IVariablePhotoSequenceController","features":[163]},{"name":"VariablePhotoSequenceController","features":[163]}],"172":[{"name":"DialApp","features":[164]},{"name":"DialAppLaunchResult","features":[164]},{"name":"DialAppState","features":[164]},{"name":"DialAppStateDetails","features":[164]},{"name":"DialAppStopResult","features":[164]},{"name":"DialDevice","features":[164]},{"name":"DialDeviceDisplayStatus","features":[164]},{"name":"DialDevicePicker","features":[164]},{"name":"DialDevicePickerFilter","features":[164]},{"name":"DialDeviceSelectedEventArgs","features":[164]},{"name":"DialDisconnectButtonClickedEventArgs","features":[164]},{"name":"DialReceiverApp","features":[164]},{"name":"IDialApp","features":[164]},{"name":"IDialAppStateDetails","features":[164]},{"name":"IDialDevice","features":[164]},{"name":"IDialDevice2","features":[164]},{"name":"IDialDevicePicker","features":[164]},{"name":"IDialDevicePickerFilter","features":[164]},{"name":"IDialDeviceSelectedEventArgs","features":[164]},{"name":"IDialDeviceStatics","features":[164]},{"name":"IDialDisconnectButtonClickedEventArgs","features":[164]},{"name":"IDialReceiverApp","features":[164]},{"name":"IDialReceiverApp2","features":[164]},{"name":"IDialReceiverAppStatics","features":[164]}],"173":[{"name":"BackgroundAudioTrack","features":[165]},{"name":"EmbeddedAudioTrack","features":[165]},{"name":"IBackgroundAudioTrack","features":[165]},{"name":"IBackgroundAudioTrackStatics","features":[165]},{"name":"IEmbeddedAudioTrack","features":[165]},{"name":"IMediaClip","features":[165]},{"name":"IMediaClipStatics","features":[165]},{"name":"IMediaClipStatics2","features":[165]},{"name":"IMediaComposition","features":[165]},{"name":"IMediaComposition2","features":[165]},{"name":"IMediaCompositionStatics","features":[165]},{"name":"IMediaOverlay","features":[165]},{"name":"IMediaOverlayFactory","features":[165]},{"name":"IMediaOverlayLayer","features":[165]},{"name":"IMediaOverlayLayerFactory","features":[165]},{"name":"MediaClip","features":[165]},{"name":"MediaComposition","features":[165]},{"name":"MediaOverlay","features":[165]},{"name":"MediaOverlayLayer","features":[165]},{"name":"MediaTrimmingPreference","features":[165]},{"name":"VideoFramePrecision","features":[165]}],"174":[{"name":"AudioCaptureEffectsManager","features":[160]},{"name":"AudioEffect","features":[160]},{"name":"AudioEffectDefinition","features":[160]},{"name":"AudioEffectType","features":[160]},{"name":"AudioEffectsManager","features":[160]},{"name":"AudioRenderEffectsManager","features":[160]},{"name":"CompositeVideoFrameContext","features":[160]},{"name":"IAudioCaptureEffectsManager","features":[160]},{"name":"IAudioEffect","features":[160]},{"name":"IAudioEffectDefinition","features":[160]},{"name":"IAudioEffectDefinitionFactory","features":[160]},{"name":"IAudioEffectsManagerStatics","features":[160]},{"name":"IAudioRenderEffectsManager","features":[160]},{"name":"IAudioRenderEffectsManager2","features":[160]},{"name":"IBasicAudioEffect","features":[160]},{"name":"IBasicVideoEffect","features":[160]},{"name":"ICompositeVideoFrameContext","features":[160]},{"name":"IProcessAudioFrameContext","features":[160]},{"name":"IProcessVideoFrameContext","features":[160]},{"name":"ISlowMotionEffectDefinition","features":[160]},{"name":"IVideoCompositor","features":[160]},{"name":"IVideoCompositorDefinition","features":[160]},{"name":"IVideoCompositorDefinitionFactory","features":[160]},{"name":"IVideoEffectDefinition","features":[160]},{"name":"IVideoEffectDefinitionFactory","features":[160]},{"name":"IVideoTransformEffectDefinition","features":[160]},{"name":"IVideoTransformEffectDefinition2","features":[160]},{"name":"IVideoTransformSphericalProjection","features":[160]},{"name":"MediaEffectClosedReason","features":[160]},{"name":"MediaMemoryTypes","features":[160]},{"name":"ProcessAudioFrameContext","features":[160]},{"name":"ProcessVideoFrameContext","features":[160]},{"name":"SlowMotionEffectDefinition","features":[160]},{"name":"VideoCompositorDefinition","features":[160]},{"name":"VideoEffectDefinition","features":[160]},{"name":"VideoTransformEffectDefinition","features":[160]},{"name":"VideoTransformSphericalProjection","features":[160]}],"175":[{"name":"DetectedFace","features":[166]},{"name":"FaceDetector","features":[166]},{"name":"FaceTracker","features":[166]},{"name":"IDetectedFace","features":[166]},{"name":"IFaceDetector","features":[166]},{"name":"IFaceDetectorStatics","features":[166]},{"name":"IFaceTracker","features":[166]},{"name":"IFaceTrackerStatics","features":[166]}],"176":[{"name":"IPhotoImportDeleteImportedItemsFromSourceResult","features":[167]},{"name":"IPhotoImportFindItemsResult","features":[167]},{"name":"IPhotoImportFindItemsResult2","features":[167]},{"name":"IPhotoImportImportItemsResult","features":[167]},{"name":"IPhotoImportItem","features":[167]},{"name":"IPhotoImportItem2","features":[167]},{"name":"IPhotoImportItemImportedEventArgs","features":[167]},{"name":"IPhotoImportManagerStatics","features":[167]},{"name":"IPhotoImportOperation","features":[167]},{"name":"IPhotoImportSelectionChangedEventArgs","features":[167]},{"name":"IPhotoImportSession","features":[167]},{"name":"IPhotoImportSession2","features":[167]},{"name":"IPhotoImportSidecar","features":[167]},{"name":"IPhotoImportSource","features":[167]},{"name":"IPhotoImportSourceStatics","features":[167]},{"name":"IPhotoImportStorageMedium","features":[167]},{"name":"IPhotoImportVideoSegment","features":[167]},{"name":"PhotoImportAccessMode","features":[167]},{"name":"PhotoImportConnectionTransport","features":[167]},{"name":"PhotoImportContentType","features":[167]},{"name":"PhotoImportContentTypeFilter","features":[167]},{"name":"PhotoImportDeleteImportedItemsFromSourceResult","features":[167]},{"name":"PhotoImportFindItemsResult","features":[167]},{"name":"PhotoImportImportItemsResult","features":[167]},{"name":"PhotoImportImportMode","features":[167]},{"name":"PhotoImportItem","features":[167]},{"name":"PhotoImportItemImportedEventArgs","features":[167]},{"name":"PhotoImportItemSelectionMode","features":[167]},{"name":"PhotoImportManager","features":[167]},{"name":"PhotoImportOperation","features":[167]},{"name":"PhotoImportPowerSource","features":[167]},{"name":"PhotoImportProgress","features":[167]},{"name":"PhotoImportSelectionChangedEventArgs","features":[167]},{"name":"PhotoImportSession","features":[167]},{"name":"PhotoImportSidecar","features":[167]},{"name":"PhotoImportSource","features":[167]},{"name":"PhotoImportSourceType","features":[167]},{"name":"PhotoImportStage","features":[167]},{"name":"PhotoImportStorageMedium","features":[167]},{"name":"PhotoImportStorageMediumType","features":[167]},{"name":"PhotoImportSubfolderCreationMode","features":[167]},{"name":"PhotoImportSubfolderDateFormat","features":[167]},{"name":"PhotoImportVideoSegment","features":[167]}],"177":[{"name":"AudioEncodingProperties","features":[168]},{"name":"AudioEncodingQuality","features":[168]},{"name":"Av1ProfileIds","features":[168]},{"name":"ContainerEncodingProperties","features":[168]},{"name":"H264ProfileIds","features":[168]},{"name":"HevcProfileIds","features":[168]},{"name":"IAudioEncodingProperties","features":[168]},{"name":"IAudioEncodingProperties2","features":[168]},{"name":"IAudioEncodingProperties3","features":[168]},{"name":"IAudioEncodingPropertiesStatics","features":[168]},{"name":"IAudioEncodingPropertiesStatics2","features":[168]},{"name":"IAudioEncodingPropertiesWithFormatUserData","features":[168]},{"name":"IAv1ProfileIdsStatics","features":[168]},{"name":"IContainerEncodingProperties","features":[168]},{"name":"IContainerEncodingProperties2","features":[168]},{"name":"IH264ProfileIdsStatics","features":[168]},{"name":"IHevcProfileIdsStatics","features":[168]},{"name":"IImageEncodingProperties","features":[168]},{"name":"IImageEncodingProperties2","features":[168]},{"name":"IImageEncodingPropertiesStatics","features":[168]},{"name":"IImageEncodingPropertiesStatics2","features":[168]},{"name":"IImageEncodingPropertiesStatics3","features":[168]},{"name":"IMediaEncodingProfile","features":[168]},{"name":"IMediaEncodingProfile2","features":[168]},{"name":"IMediaEncodingProfile3","features":[168]},{"name":"IMediaEncodingProfileStatics","features":[168]},{"name":"IMediaEncodingProfileStatics2","features":[168]},{"name":"IMediaEncodingProfileStatics3","features":[168]},{"name":"IMediaEncodingProfileStatics4","features":[168]},{"name":"IMediaEncodingProperties","features":[168]},{"name":"IMediaEncodingSubtypesStatics","features":[168]},{"name":"IMediaEncodingSubtypesStatics2","features":[168]},{"name":"IMediaEncodingSubtypesStatics3","features":[168]},{"name":"IMediaEncodingSubtypesStatics4","features":[168]},{"name":"IMediaEncodingSubtypesStatics5","features":[168]},{"name":"IMediaEncodingSubtypesStatics6","features":[168]},{"name":"IMediaEncodingSubtypesStatics7","features":[168]},{"name":"IMediaRatio","features":[168]},{"name":"IMpeg2ProfileIdsStatics","features":[168]},{"name":"ITimedMetadataEncodingProperties","features":[168]},{"name":"ITimedMetadataEncodingPropertiesStatics","features":[168]},{"name":"IVideoEncodingProperties","features":[168]},{"name":"IVideoEncodingProperties2","features":[168]},{"name":"IVideoEncodingProperties3","features":[168]},{"name":"IVideoEncodingProperties4","features":[168]},{"name":"IVideoEncodingProperties5","features":[168]},{"name":"IVideoEncodingPropertiesStatics","features":[168]},{"name":"IVideoEncodingPropertiesStatics2","features":[168]},{"name":"IVideoEncodingPropertiesStatics3","features":[168]},{"name":"IVp9ProfileIdsStatics","features":[168]},{"name":"ImageEncodingProperties","features":[168]},{"name":"MediaEncodingProfile","features":[168]},{"name":"MediaEncodingSubtypes","features":[168]},{"name":"MediaMirroringOptions","features":[168]},{"name":"MediaPixelFormat","features":[168]},{"name":"MediaPropertySet","features":[36,168]},{"name":"MediaRatio","features":[168]},{"name":"MediaRotation","features":[168]},{"name":"MediaThumbnailFormat","features":[168]},{"name":"Mpeg2ProfileIds","features":[168]},{"name":"SphericalVideoFrameFormat","features":[168]},{"name":"StereoscopicVideoPackingMode","features":[168]},{"name":"TimedMetadataEncodingProperties","features":[168]},{"name":"VideoEncodingProperties","features":[168]},{"name":"VideoEncodingQuality","features":[168]},{"name":"Vp9ProfileIds","features":[168]}],"178":[{"name":"IMiracastReceiver","features":[169]},{"name":"IMiracastReceiverApplySettingsResult","features":[169]},{"name":"IMiracastReceiverConnection","features":[169]},{"name":"IMiracastReceiverConnectionCreatedEventArgs","features":[169]},{"name":"IMiracastReceiverCursorImageChannel","features":[169]},{"name":"IMiracastReceiverCursorImageChannelSettings","features":[169]},{"name":"IMiracastReceiverDisconnectedEventArgs","features":[169]},{"name":"IMiracastReceiverGameControllerDevice","features":[169]},{"name":"IMiracastReceiverInputDevices","features":[169]},{"name":"IMiracastReceiverKeyboardDevice","features":[169]},{"name":"IMiracastReceiverMediaSourceCreatedEventArgs","features":[169]},{"name":"IMiracastReceiverSession","features":[169]},{"name":"IMiracastReceiverSessionStartResult","features":[169]},{"name":"IMiracastReceiverSettings","features":[169]},{"name":"IMiracastReceiverStatus","features":[169]},{"name":"IMiracastReceiverStreamControl","features":[169]},{"name":"IMiracastReceiverVideoStreamSettings","features":[169]},{"name":"IMiracastTransmitter","features":[169]},{"name":"MiracastReceiver","features":[169]},{"name":"MiracastReceiverApplySettingsResult","features":[169]},{"name":"MiracastReceiverApplySettingsStatus","features":[169]},{"name":"MiracastReceiverAuthorizationMethod","features":[169]},{"name":"MiracastReceiverConnection","features":[169]},{"name":"MiracastReceiverConnectionCreatedEventArgs","features":[169]},{"name":"MiracastReceiverCursorImageChannel","features":[169]},{"name":"MiracastReceiverCursorImageChannelSettings","features":[169]},{"name":"MiracastReceiverDisconnectReason","features":[169]},{"name":"MiracastReceiverDisconnectedEventArgs","features":[169]},{"name":"MiracastReceiverGameControllerDevice","features":[169]},{"name":"MiracastReceiverGameControllerDeviceUsageMode","features":[169]},{"name":"MiracastReceiverInputDevices","features":[169]},{"name":"MiracastReceiverKeyboardDevice","features":[169]},{"name":"MiracastReceiverListeningStatus","features":[169]},{"name":"MiracastReceiverMediaSourceCreatedEventArgs","features":[169]},{"name":"MiracastReceiverSession","features":[169]},{"name":"MiracastReceiverSessionStartResult","features":[169]},{"name":"MiracastReceiverSessionStartStatus","features":[169]},{"name":"MiracastReceiverSettings","features":[169]},{"name":"MiracastReceiverStatus","features":[169]},{"name":"MiracastReceiverStreamControl","features":[169]},{"name":"MiracastReceiverVideoStreamSettings","features":[169]},{"name":"MiracastReceiverWiFiStatus","features":[169]},{"name":"MiracastTransmitter","features":[169]},{"name":"MiracastTransmitterAuthorizationStatus","features":[169]}],"179":[{"name":"IOcrEngine","features":[170]},{"name":"IOcrEngineStatics","features":[170]},{"name":"IOcrLine","features":[170]},{"name":"IOcrResult","features":[170]},{"name":"IOcrWord","features":[170]},{"name":"OcrEngine","features":[170]},{"name":"OcrLine","features":[170]},{"name":"OcrResult","features":[170]},{"name":"OcrWord","features":[170]}],"180":[{"name":"CurrentTimeChangeRequestedEventArgs","features":[171]},{"name":"ICurrentTimeChangeRequestedEventArgs","features":[171]},{"name":"IMuteChangeRequestedEventArgs","features":[171]},{"name":"IPlayToConnection","features":[171]},{"name":"IPlayToConnectionErrorEventArgs","features":[171]},{"name":"IPlayToConnectionStateChangedEventArgs","features":[171]},{"name":"IPlayToConnectionTransferredEventArgs","features":[171]},{"name":"IPlayToManager","features":[171]},{"name":"IPlayToManagerStatics","features":[171]},{"name":"IPlayToReceiver","features":[171]},{"name":"IPlayToSource","features":[171]},{"name":"IPlayToSourceDeferral","features":[171]},{"name":"IPlayToSourceRequest","features":[171]},{"name":"IPlayToSourceRequestedEventArgs","features":[171]},{"name":"IPlayToSourceSelectedEventArgs","features":[171]},{"name":"IPlayToSourceWithPreferredSourceUri","features":[171]},{"name":"IPlaybackRateChangeRequestedEventArgs","features":[171]},{"name":"ISourceChangeRequestedEventArgs","features":[171]},{"name":"IVolumeChangeRequestedEventArgs","features":[171]},{"name":"MuteChangeRequestedEventArgs","features":[171]},{"name":"PlayToConnection","features":[171]},{"name":"PlayToConnectionError","features":[171]},{"name":"PlayToConnectionErrorEventArgs","features":[171]},{"name":"PlayToConnectionState","features":[171]},{"name":"PlayToConnectionStateChangedEventArgs","features":[171]},{"name":"PlayToConnectionTransferredEventArgs","features":[171]},{"name":"PlayToManager","features":[171]},{"name":"PlayToReceiver","features":[171]},{"name":"PlayToSource","features":[171]},{"name":"PlayToSourceDeferral","features":[171]},{"name":"PlayToSourceRequest","features":[171]},{"name":"PlayToSourceRequestedEventArgs","features":[171]},{"name":"PlayToSourceSelectedEventArgs","features":[171]},{"name":"PlaybackRateChangeRequestedEventArgs","features":[171]},{"name":"SourceChangeRequestedEventArgs","features":[171]},{"name":"VolumeChangeRequestedEventArgs","features":[171]}],"181":[{"name":"AutoLoadedDisplayPropertyKind","features":[172]},{"name":"BackgroundMediaPlayer","features":[172]},{"name":"CurrentMediaPlaybackItemChangedEventArgs","features":[172]},{"name":"FailedMediaStreamKind","features":[172]},{"name":"IBackgroundMediaPlayerStatics","features":[172]},{"name":"ICurrentMediaPlaybackItemChangedEventArgs","features":[172]},{"name":"ICurrentMediaPlaybackItemChangedEventArgs2","features":[172]},{"name":"IMediaBreak","features":[172]},{"name":"IMediaBreakEndedEventArgs","features":[172]},{"name":"IMediaBreakFactory","features":[172]},{"name":"IMediaBreakManager","features":[172]},{"name":"IMediaBreakSchedule","features":[172]},{"name":"IMediaBreakSeekedOverEventArgs","features":[172]},{"name":"IMediaBreakSkippedEventArgs","features":[172]},{"name":"IMediaBreakStartedEventArgs","features":[172]},{"name":"IMediaEnginePlaybackSource","features":[172]},{"name":"IMediaItemDisplayProperties","features":[172]},{"name":"IMediaPlaybackCommandManager","features":[172]},{"name":"IMediaPlaybackCommandManagerAutoRepeatModeReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerCommandBehavior","features":[172]},{"name":"IMediaPlaybackCommandManagerFastForwardReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerNextReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPauseReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPlayReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPositionReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPreviousReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerRateReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerRewindReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerShuffleReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackItem","features":[172]},{"name":"IMediaPlaybackItem2","features":[172]},{"name":"IMediaPlaybackItem3","features":[172]},{"name":"IMediaPlaybackItemError","features":[172]},{"name":"IMediaPlaybackItemFactory","features":[172]},{"name":"IMediaPlaybackItemFactory2","features":[172]},{"name":"IMediaPlaybackItemFailedEventArgs","features":[172]},{"name":"IMediaPlaybackItemOpenedEventArgs","features":[172]},{"name":"IMediaPlaybackItemStatics","features":[172]},{"name":"IMediaPlaybackList","features":[172]},{"name":"IMediaPlaybackList2","features":[172]},{"name":"IMediaPlaybackList3","features":[172]},{"name":"IMediaPlaybackSession","features":[172]},{"name":"IMediaPlaybackSession2","features":[172]},{"name":"IMediaPlaybackSession3","features":[172]},{"name":"IMediaPlaybackSessionBufferingStartedEventArgs","features":[172]},{"name":"IMediaPlaybackSessionOutputDegradationPolicyState","features":[172]},{"name":"IMediaPlaybackSource","features":[172]},{"name":"IMediaPlaybackSphericalVideoProjection","features":[172]},{"name":"IMediaPlaybackTimedMetadataTrackList","features":[172]},{"name":"IMediaPlayer","features":[172]},{"name":"IMediaPlayer2","features":[172]},{"name":"IMediaPlayer3","features":[172]},{"name":"IMediaPlayer4","features":[172]},{"name":"IMediaPlayer5","features":[172]},{"name":"IMediaPlayer6","features":[172]},{"name":"IMediaPlayer7","features":[172]},{"name":"IMediaPlayerDataReceivedEventArgs","features":[172]},{"name":"IMediaPlayerEffects","features":[172]},{"name":"IMediaPlayerEffects2","features":[172]},{"name":"IMediaPlayerFailedEventArgs","features":[172]},{"name":"IMediaPlayerRateChangedEventArgs","features":[172]},{"name":"IMediaPlayerSource","features":[172]},{"name":"IMediaPlayerSource2","features":[172]},{"name":"IMediaPlayerSurface","features":[172]},{"name":"IPlaybackMediaMarker","features":[172]},{"name":"IPlaybackMediaMarkerFactory","features":[172]},{"name":"IPlaybackMediaMarkerReachedEventArgs","features":[172]},{"name":"IPlaybackMediaMarkerSequence","features":[172]},{"name":"ITimedMetadataPresentationModeChangedEventArgs","features":[172]},{"name":"MediaBreak","features":[172]},{"name":"MediaBreakEndedEventArgs","features":[172]},{"name":"MediaBreakInsertionMethod","features":[172]},{"name":"MediaBreakManager","features":[172]},{"name":"MediaBreakSchedule","features":[172]},{"name":"MediaBreakSeekedOverEventArgs","features":[172]},{"name":"MediaBreakSkippedEventArgs","features":[172]},{"name":"MediaBreakStartedEventArgs","features":[172]},{"name":"MediaCommandEnablingRule","features":[172]},{"name":"MediaItemDisplayProperties","features":[172]},{"name":"MediaPlaybackAudioTrackList","features":[36,159,172]},{"name":"MediaPlaybackCommandManager","features":[172]},{"name":"MediaPlaybackCommandManagerAutoRepeatModeReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerCommandBehavior","features":[172]},{"name":"MediaPlaybackCommandManagerFastForwardReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerNextReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPauseReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPlayReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPositionReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPreviousReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerRateReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerRewindReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerShuffleReceivedEventArgs","features":[172]},{"name":"MediaPlaybackItem","features":[172]},{"name":"MediaPlaybackItemChangedReason","features":[172]},{"name":"MediaPlaybackItemError","features":[172]},{"name":"MediaPlaybackItemErrorCode","features":[172]},{"name":"MediaPlaybackItemFailedEventArgs","features":[172]},{"name":"MediaPlaybackItemOpenedEventArgs","features":[172]},{"name":"MediaPlaybackList","features":[172]},{"name":"MediaPlaybackSession","features":[172]},{"name":"MediaPlaybackSessionBufferingStartedEventArgs","features":[172]},{"name":"MediaPlaybackSessionOutputDegradationPolicyState","features":[172]},{"name":"MediaPlaybackSessionVideoConstrictionReason","features":[172]},{"name":"MediaPlaybackSphericalVideoProjection","features":[172]},{"name":"MediaPlaybackState","features":[172]},{"name":"MediaPlaybackTimedMetadataTrackList","features":[36,159,172]},{"name":"MediaPlaybackVideoTrackList","features":[36,159,172]},{"name":"MediaPlayer","features":[172]},{"name":"MediaPlayerAudioCategory","features":[172]},{"name":"MediaPlayerAudioDeviceType","features":[172]},{"name":"MediaPlayerDataReceivedEventArgs","features":[172]},{"name":"MediaPlayerError","features":[172]},{"name":"MediaPlayerFailedEventArgs","features":[172]},{"name":"MediaPlayerRateChangedEventArgs","features":[172]},{"name":"MediaPlayerState","features":[172]},{"name":"MediaPlayerSurface","features":[172]},{"name":"PlaybackMediaMarker","features":[172]},{"name":"PlaybackMediaMarkerReachedEventArgs","features":[172]},{"name":"PlaybackMediaMarkerSequence","features":[172]},{"name":"SphericalVideoProjectionMode","features":[172]},{"name":"StereoscopicVideoRenderMode","features":[172]},{"name":"TimedMetadataPresentationModeChangedEventArgs","features":[172]},{"name":"TimedMetadataTrackPresentationMode","features":[172]}],"182":[{"name":"IPlaylist","features":[173]},{"name":"IPlaylistStatics","features":[173]},{"name":"Playlist","features":[173]},{"name":"PlaylistFormat","features":[173]},{"name":"PlaylistsContract","features":[173]}],"183":[{"name":"ComponentLoadFailedEventArgs","features":[174]},{"name":"ComponentLoadFailedEventHandler","features":[174]},{"name":"ComponentRenewal","features":[174]},{"name":"GraphicsTrustStatus","features":[174]},{"name":"HdcpProtection","features":[174]},{"name":"HdcpSession","features":[174]},{"name":"HdcpSetProtectionResult","features":[174]},{"name":"IComponentLoadFailedEventArgs","features":[174]},{"name":"IComponentRenewalStatics","features":[174]},{"name":"IHdcpSession","features":[174]},{"name":"IMediaProtectionManager","features":[174]},{"name":"IMediaProtectionPMPServer","features":[174]},{"name":"IMediaProtectionPMPServerFactory","features":[174]},{"name":"IMediaProtectionServiceCompletion","features":[174]},{"name":"IMediaProtectionServiceRequest","features":[174]},{"name":"IProtectionCapabilities","features":[174]},{"name":"IRevocationAndRenewalInformation","features":[174]},{"name":"IRevocationAndRenewalItem","features":[174]},{"name":"IServiceRequestedEventArgs","features":[174]},{"name":"IServiceRequestedEventArgs2","features":[174]},{"name":"MediaProtectionManager","features":[174]},{"name":"MediaProtectionPMPServer","features":[174]},{"name":"MediaProtectionServiceCompletion","features":[174]},{"name":"ProtectionCapabilities","features":[174]},{"name":"ProtectionCapabilityResult","features":[174]},{"name":"ProtectionRenewalContract","features":[174]},{"name":"RebootNeededEventHandler","features":[174]},{"name":"RenewalStatus","features":[174]},{"name":"RevocationAndRenewalInformation","features":[174]},{"name":"RevocationAndRenewalItem","features":[174]},{"name":"RevocationAndRenewalReasons","features":[174]},{"name":"ServiceRequestedEventArgs","features":[174]},{"name":"ServiceRequestedEventHandler","features":[174]}],"184":[{"name":"INDClient","features":[175]},{"name":"INDClientFactory","features":[175]},{"name":"INDClosedCaptionDataReceivedEventArgs","features":[175]},{"name":"INDCustomData","features":[175]},{"name":"INDCustomDataFactory","features":[175]},{"name":"INDDownloadEngine","features":[175]},{"name":"INDDownloadEngineNotifier","features":[175]},{"name":"INDLicenseFetchCompletedEventArgs","features":[175]},{"name":"INDLicenseFetchDescriptor","features":[175]},{"name":"INDLicenseFetchDescriptorFactory","features":[175]},{"name":"INDLicenseFetchResult","features":[175]},{"name":"INDMessenger","features":[175]},{"name":"INDProximityDetectionCompletedEventArgs","features":[175]},{"name":"INDRegistrationCompletedEventArgs","features":[175]},{"name":"INDSendResult","features":[175]},{"name":"INDStartResult","features":[175]},{"name":"INDStorageFileHelper","features":[175]},{"name":"INDStreamParser","features":[175]},{"name":"INDStreamParserNotifier","features":[175]},{"name":"INDTCPMessengerFactory","features":[175]},{"name":"INDTransmitterProperties","features":[175]},{"name":"IPlayReadyContentHeader","features":[175]},{"name":"IPlayReadyContentHeader2","features":[175]},{"name":"IPlayReadyContentHeaderFactory","features":[175]},{"name":"IPlayReadyContentHeaderFactory2","features":[175]},{"name":"IPlayReadyContentResolver","features":[175]},{"name":"IPlayReadyDomain","features":[175]},{"name":"IPlayReadyDomainIterableFactory","features":[175]},{"name":"IPlayReadyDomainJoinServiceRequest","features":[175]},{"name":"IPlayReadyDomainLeaveServiceRequest","features":[175]},{"name":"IPlayReadyITADataGenerator","features":[175]},{"name":"IPlayReadyIndividualizationServiceRequest","features":[175]},{"name":"IPlayReadyLicense","features":[175]},{"name":"IPlayReadyLicense2","features":[175]},{"name":"IPlayReadyLicenseAcquisitionServiceRequest","features":[175]},{"name":"IPlayReadyLicenseAcquisitionServiceRequest2","features":[175]},{"name":"IPlayReadyLicenseAcquisitionServiceRequest3","features":[175]},{"name":"IPlayReadyLicenseIterableFactory","features":[175]},{"name":"IPlayReadyLicenseManagement","features":[175]},{"name":"IPlayReadyLicenseSession","features":[175]},{"name":"IPlayReadyLicenseSession2","features":[175]},{"name":"IPlayReadyLicenseSessionFactory","features":[175]},{"name":"IPlayReadyMeteringReportServiceRequest","features":[175]},{"name":"IPlayReadyRevocationServiceRequest","features":[175]},{"name":"IPlayReadySecureStopIterableFactory","features":[175]},{"name":"IPlayReadySecureStopServiceRequest","features":[175]},{"name":"IPlayReadySecureStopServiceRequestFactory","features":[175]},{"name":"IPlayReadyServiceRequest","features":[175]},{"name":"IPlayReadySoapMessage","features":[175]},{"name":"IPlayReadyStatics","features":[175]},{"name":"IPlayReadyStatics2","features":[175]},{"name":"IPlayReadyStatics3","features":[175]},{"name":"IPlayReadyStatics4","features":[175]},{"name":"IPlayReadyStatics5","features":[175]},{"name":"NDCertificateFeature","features":[175]},{"name":"NDCertificatePlatformID","features":[175]},{"name":"NDCertificateType","features":[175]},{"name":"NDClient","features":[175]},{"name":"NDClosedCaptionFormat","features":[175]},{"name":"NDContentIDType","features":[175]},{"name":"NDCustomData","features":[175]},{"name":"NDDownloadEngineNotifier","features":[175]},{"name":"NDLicenseFetchDescriptor","features":[175]},{"name":"NDMediaStreamType","features":[175]},{"name":"NDProximityDetectionType","features":[175]},{"name":"NDStartAsyncOptions","features":[175]},{"name":"NDStorageFileHelper","features":[175]},{"name":"NDStreamParserNotifier","features":[175]},{"name":"NDTCPMessenger","features":[175]},{"name":"PlayReadyContentHeader","features":[175]},{"name":"PlayReadyContentResolver","features":[175]},{"name":"PlayReadyDecryptorSetup","features":[175]},{"name":"PlayReadyDomain","features":[175]},{"name":"PlayReadyDomainIterable","features":[36,175]},{"name":"PlayReadyDomainIterator","features":[36,175]},{"name":"PlayReadyDomainJoinServiceRequest","features":[175]},{"name":"PlayReadyDomainLeaveServiceRequest","features":[175]},{"name":"PlayReadyEncryptionAlgorithm","features":[175]},{"name":"PlayReadyHardwareDRMFeatures","features":[175]},{"name":"PlayReadyITADataFormat","features":[175]},{"name":"PlayReadyITADataGenerator","features":[175]},{"name":"PlayReadyIndividualizationServiceRequest","features":[175]},{"name":"PlayReadyLicense","features":[175]},{"name":"PlayReadyLicenseAcquisitionServiceRequest","features":[175]},{"name":"PlayReadyLicenseIterable","features":[36,175]},{"name":"PlayReadyLicenseIterator","features":[36,175]},{"name":"PlayReadyLicenseManagement","features":[175]},{"name":"PlayReadyLicenseSession","features":[175]},{"name":"PlayReadyMeteringReportServiceRequest","features":[175]},{"name":"PlayReadyRevocationServiceRequest","features":[175]},{"name":"PlayReadySecureStopIterable","features":[36,175]},{"name":"PlayReadySecureStopIterator","features":[36,175]},{"name":"PlayReadySecureStopServiceRequest","features":[175]},{"name":"PlayReadySoapMessage","features":[175]},{"name":"PlayReadyStatics","features":[175]}],"185":[{"name":"AudioRenderCategory","features":[176]}],"186":[{"name":"ISpeechContinuousRecognitionCompletedEventArgs","features":[177]},{"name":"ISpeechContinuousRecognitionResultGeneratedEventArgs","features":[177]},{"name":"ISpeechContinuousRecognitionSession","features":[177]},{"name":"ISpeechRecognitionCompilationResult","features":[177]},{"name":"ISpeechRecognitionConstraint","features":[177]},{"name":"ISpeechRecognitionGrammarFileConstraint","features":[177]},{"name":"ISpeechRecognitionGrammarFileConstraintFactory","features":[177]},{"name":"ISpeechRecognitionHypothesis","features":[177]},{"name":"ISpeechRecognitionHypothesisGeneratedEventArgs","features":[177]},{"name":"ISpeechRecognitionListConstraint","features":[177]},{"name":"ISpeechRecognitionListConstraintFactory","features":[177]},{"name":"ISpeechRecognitionQualityDegradingEventArgs","features":[177]},{"name":"ISpeechRecognitionResult","features":[177]},{"name":"ISpeechRecognitionResult2","features":[177]},{"name":"ISpeechRecognitionSemanticInterpretation","features":[177]},{"name":"ISpeechRecognitionTopicConstraint","features":[177]},{"name":"ISpeechRecognitionTopicConstraintFactory","features":[177]},{"name":"ISpeechRecognitionVoiceCommandDefinitionConstraint","features":[177]},{"name":"ISpeechRecognizer","features":[177]},{"name":"ISpeechRecognizer2","features":[177]},{"name":"ISpeechRecognizerFactory","features":[177]},{"name":"ISpeechRecognizerStateChangedEventArgs","features":[177]},{"name":"ISpeechRecognizerStatics","features":[177]},{"name":"ISpeechRecognizerStatics2","features":[177]},{"name":"ISpeechRecognizerTimeouts","features":[177]},{"name":"ISpeechRecognizerUIOptions","features":[177]},{"name":"IVoiceCommandManager","features":[177]},{"name":"IVoiceCommandSet","features":[177]},{"name":"SpeechContinuousRecognitionCompletedEventArgs","features":[177]},{"name":"SpeechContinuousRecognitionMode","features":[177]},{"name":"SpeechContinuousRecognitionResultGeneratedEventArgs","features":[177]},{"name":"SpeechContinuousRecognitionSession","features":[177]},{"name":"SpeechRecognitionAudioProblem","features":[177]},{"name":"SpeechRecognitionCompilationResult","features":[177]},{"name":"SpeechRecognitionConfidence","features":[177]},{"name":"SpeechRecognitionConstraintProbability","features":[177]},{"name":"SpeechRecognitionConstraintType","features":[177]},{"name":"SpeechRecognitionGrammarFileConstraint","features":[177]},{"name":"SpeechRecognitionHypothesis","features":[177]},{"name":"SpeechRecognitionHypothesisGeneratedEventArgs","features":[177]},{"name":"SpeechRecognitionListConstraint","features":[177]},{"name":"SpeechRecognitionQualityDegradingEventArgs","features":[177]},{"name":"SpeechRecognitionResult","features":[177]},{"name":"SpeechRecognitionResultStatus","features":[177]},{"name":"SpeechRecognitionScenario","features":[177]},{"name":"SpeechRecognitionSemanticInterpretation","features":[177]},{"name":"SpeechRecognitionTopicConstraint","features":[177]},{"name":"SpeechRecognitionVoiceCommandDefinitionConstraint","features":[177]},{"name":"SpeechRecognizer","features":[177]},{"name":"SpeechRecognizerState","features":[177]},{"name":"SpeechRecognizerStateChangedEventArgs","features":[177]},{"name":"SpeechRecognizerTimeouts","features":[177]},{"name":"SpeechRecognizerUIOptions","features":[177]},{"name":"VoiceCommandManager","features":[177]},{"name":"VoiceCommandSet","features":[177]}],"187":[{"name":"IInstalledVoicesStatic","features":[178]},{"name":"IInstalledVoicesStatic2","features":[178]},{"name":"ISpeechSynthesisStream","features":[178]},{"name":"ISpeechSynthesizer","features":[178]},{"name":"ISpeechSynthesizer2","features":[178]},{"name":"ISpeechSynthesizerOptions","features":[178]},{"name":"ISpeechSynthesizerOptions2","features":[178]},{"name":"ISpeechSynthesizerOptions3","features":[178]},{"name":"IVoiceInformation","features":[178]},{"name":"SpeechAppendedSilence","features":[178]},{"name":"SpeechPunctuationSilence","features":[178]},{"name":"SpeechSynthesisStream","features":[178]},{"name":"SpeechSynthesizer","features":[178]},{"name":"SpeechSynthesizerOptions","features":[178]},{"name":"VoiceGender","features":[178]},{"name":"VoiceInformation","features":[178]}],"188":[{"name":"AdaptiveMediaSource","features":[179]},{"name":"AdaptiveMediaSourceAdvancedSettings","features":[179]},{"name":"AdaptiveMediaSourceCorrelatedTimes","features":[179]},{"name":"AdaptiveMediaSourceCreationResult","features":[179]},{"name":"AdaptiveMediaSourceCreationStatus","features":[179]},{"name":"AdaptiveMediaSourceDiagnosticAvailableEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDiagnosticType","features":[179]},{"name":"AdaptiveMediaSourceDiagnostics","features":[179]},{"name":"AdaptiveMediaSourceDownloadBitrateChangedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadBitrateChangedReason","features":[179]},{"name":"AdaptiveMediaSourceDownloadCompletedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadFailedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadRequestedDeferral","features":[179]},{"name":"AdaptiveMediaSourceDownloadRequestedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadResult","features":[179]},{"name":"AdaptiveMediaSourceDownloadStatistics","features":[179]},{"name":"AdaptiveMediaSourcePlaybackBitrateChangedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceResourceType","features":[179]},{"name":"IAdaptiveMediaSource","features":[179]},{"name":"IAdaptiveMediaSource2","features":[179]},{"name":"IAdaptiveMediaSource3","features":[179]},{"name":"IAdaptiveMediaSourceAdvancedSettings","features":[179]},{"name":"IAdaptiveMediaSourceCorrelatedTimes","features":[179]},{"name":"IAdaptiveMediaSourceCreationResult","features":[179]},{"name":"IAdaptiveMediaSourceCreationResult2","features":[179]},{"name":"IAdaptiveMediaSourceDiagnosticAvailableEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDiagnosticAvailableEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDiagnosticAvailableEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDiagnostics","features":[179]},{"name":"IAdaptiveMediaSourceDownloadBitrateChangedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadBitrateChangedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadCompletedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadCompletedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadCompletedEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDownloadFailedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadFailedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadFailedEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedDeferral","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDownloadResult","features":[179]},{"name":"IAdaptiveMediaSourceDownloadResult2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadStatistics","features":[179]},{"name":"IAdaptiveMediaSourcePlaybackBitrateChangedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceStatics","features":[179]}],"189":[{"name":"IMediaTranscoder","features":[180]},{"name":"IMediaTranscoder2","features":[180]},{"name":"IPrepareTranscodeResult","features":[180]},{"name":"MediaTranscoder","features":[180]},{"name":"MediaVideoProcessingAlgorithm","features":[180]},{"name":"PrepareTranscodeResult","features":[180]},{"name":"TranscodeFailureReason","features":[180]}],"190":[{"name":"DomainNameType","features":[181]},{"name":"EndpointPair","features":[181]},{"name":"HostName","features":[181]},{"name":"HostNameSortOptions","features":[181]},{"name":"HostNameType","features":[181]},{"name":"IEndpointPair","features":[181]},{"name":"IEndpointPairFactory","features":[181]},{"name":"IHostName","features":[181]},{"name":"IHostNameFactory","features":[181]},{"name":"IHostNameStatics","features":[181]}],"191":[{"name":"BackgroundDownloadProgress","features":[182]},{"name":"BackgroundDownloader","features":[182]},{"name":"BackgroundTransferBehavior","features":[182]},{"name":"BackgroundTransferCompletionGroup","features":[182]},{"name":"BackgroundTransferCompletionGroupTriggerDetails","features":[182]},{"name":"BackgroundTransferContentPart","features":[182]},{"name":"BackgroundTransferCostPolicy","features":[182]},{"name":"BackgroundTransferError","features":[182]},{"name":"BackgroundTransferFileRange","features":[182]},{"name":"BackgroundTransferGroup","features":[182]},{"name":"BackgroundTransferPriority","features":[182]},{"name":"BackgroundTransferRangesDownloadedEventArgs","features":[182]},{"name":"BackgroundTransferStatus","features":[182]},{"name":"BackgroundUploadProgress","features":[182]},{"name":"BackgroundUploader","features":[182]},{"name":"ContentPrefetcher","features":[182]},{"name":"DownloadOperation","features":[182]},{"name":"IBackgroundDownloader","features":[182]},{"name":"IBackgroundDownloader2","features":[182]},{"name":"IBackgroundDownloader3","features":[182]},{"name":"IBackgroundDownloaderFactory","features":[182]},{"name":"IBackgroundDownloaderStaticMethods","features":[182]},{"name":"IBackgroundDownloaderStaticMethods2","features":[182]},{"name":"IBackgroundDownloaderUserConsent","features":[182]},{"name":"IBackgroundTransferBase","features":[182]},{"name":"IBackgroundTransferCompletionGroup","features":[182]},{"name":"IBackgroundTransferCompletionGroupTriggerDetails","features":[182]},{"name":"IBackgroundTransferContentPart","features":[182]},{"name":"IBackgroundTransferContentPartFactory","features":[182]},{"name":"IBackgroundTransferErrorStaticMethods","features":[182]},{"name":"IBackgroundTransferGroup","features":[182]},{"name":"IBackgroundTransferGroupStatics","features":[182]},{"name":"IBackgroundTransferOperation","features":[182]},{"name":"IBackgroundTransferOperationPriority","features":[182]},{"name":"IBackgroundTransferRangesDownloadedEventArgs","features":[182]},{"name":"IBackgroundUploader","features":[182]},{"name":"IBackgroundUploader2","features":[182]},{"name":"IBackgroundUploader3","features":[182]},{"name":"IBackgroundUploaderFactory","features":[182]},{"name":"IBackgroundUploaderStaticMethods","features":[182]},{"name":"IBackgroundUploaderStaticMethods2","features":[182]},{"name":"IBackgroundUploaderUserConsent","features":[182]},{"name":"IContentPrefetcher","features":[182]},{"name":"IContentPrefetcherTime","features":[182]},{"name":"IDownloadOperation","features":[182]},{"name":"IDownloadOperation2","features":[182]},{"name":"IDownloadOperation3","features":[182]},{"name":"IDownloadOperation4","features":[182]},{"name":"IDownloadOperation5","features":[182]},{"name":"IResponseInformation","features":[182]},{"name":"IUnconstrainedTransferRequestResult","features":[182]},{"name":"IUploadOperation","features":[182]},{"name":"IUploadOperation2","features":[182]},{"name":"IUploadOperation3","features":[182]},{"name":"IUploadOperation4","features":[182]},{"name":"ResponseInformation","features":[182]},{"name":"UnconstrainedTransferRequestResult","features":[182]},{"name":"UploadOperation","features":[182]}],"192":[{"name":"AttributedNetworkUsage","features":[183]},{"name":"CellularApnAuthenticationType","features":[183]},{"name":"CellularApnContext","features":[183]},{"name":"ConnectionCost","features":[183]},{"name":"ConnectionProfile","features":[183]},{"name":"ConnectionProfileDeleteStatus","features":[183]},{"name":"ConnectionProfileFilter","features":[183]},{"name":"ConnectionSession","features":[183]},{"name":"ConnectivityInterval","features":[183]},{"name":"ConnectivityManager","features":[183]},{"name":"DataPlanStatus","features":[183]},{"name":"DataPlanUsage","features":[183]},{"name":"DataUsage","features":[183]},{"name":"DataUsageGranularity","features":[183]},{"name":"DomainAuthenticationKind","features":[183]},{"name":"DomainConnectivityLevel","features":[183]},{"name":"IAttributedNetworkUsage","features":[183]},{"name":"ICellularApnContext","features":[183]},{"name":"ICellularApnContext2","features":[183]},{"name":"IConnectionCost","features":[183]},{"name":"IConnectionCost2","features":[183]},{"name":"IConnectionProfile","features":[183]},{"name":"IConnectionProfile2","features":[183]},{"name":"IConnectionProfile3","features":[183]},{"name":"IConnectionProfile4","features":[183]},{"name":"IConnectionProfile5","features":[183]},{"name":"IConnectionProfile6","features":[183]},{"name":"IConnectionProfileFilter","features":[183]},{"name":"IConnectionProfileFilter2","features":[183]},{"name":"IConnectionProfileFilter3","features":[183]},{"name":"IConnectionSession","features":[183]},{"name":"IConnectivityInterval","features":[183]},{"name":"IConnectivityManagerStatics","features":[183]},{"name":"IDataPlanStatus","features":[183]},{"name":"IDataPlanUsage","features":[183]},{"name":"IDataUsage","features":[183]},{"name":"IIPInformation","features":[183]},{"name":"ILanIdentifier","features":[183]},{"name":"ILanIdentifierData","features":[183]},{"name":"INetworkAdapter","features":[183]},{"name":"INetworkInformationStatics","features":[183]},{"name":"INetworkInformationStatics2","features":[183]},{"name":"INetworkItem","features":[183]},{"name":"INetworkSecuritySettings","features":[183]},{"name":"INetworkStateChangeEventDetails","features":[183]},{"name":"INetworkStateChangeEventDetails2","features":[183]},{"name":"INetworkUsage","features":[183]},{"name":"IPInformation","features":[183]},{"name":"IProviderNetworkUsage","features":[183]},{"name":"IProxyConfiguration","features":[183]},{"name":"IRoutePolicy","features":[183]},{"name":"IRoutePolicyFactory","features":[183]},{"name":"IWlanConnectionProfileDetails","features":[183]},{"name":"IWwanConnectionProfileDetails","features":[183]},{"name":"IWwanConnectionProfileDetails2","features":[183]},{"name":"LanIdentifier","features":[183]},{"name":"LanIdentifierData","features":[183]},{"name":"NetworkAdapter","features":[183]},{"name":"NetworkAuthenticationType","features":[183]},{"name":"NetworkConnectivityLevel","features":[183]},{"name":"NetworkCostType","features":[183]},{"name":"NetworkEncryptionType","features":[183]},{"name":"NetworkInformation","features":[183]},{"name":"NetworkItem","features":[183]},{"name":"NetworkSecuritySettings","features":[183]},{"name":"NetworkStateChangeEventDetails","features":[183]},{"name":"NetworkStatusChangedEventHandler","features":[183]},{"name":"NetworkTypes","features":[183]},{"name":"NetworkUsage","features":[183]},{"name":"NetworkUsageStates","features":[183]},{"name":"ProviderNetworkUsage","features":[183]},{"name":"ProxyConfiguration","features":[183]},{"name":"RoamingStates","features":[183]},{"name":"RoutePolicy","features":[183]},{"name":"TriStates","features":[183]},{"name":"WlanConnectionProfileDetails","features":[183]},{"name":"WwanConnectionProfileDetails","features":[183]},{"name":"WwanContract","features":[183]},{"name":"WwanDataClass","features":[183]},{"name":"WwanNetworkIPKind","features":[183]},{"name":"WwanNetworkRegistrationState","features":[183]}],"193":[{"name":"DataClasses","features":[184]},{"name":"ESim","features":[184]},{"name":"ESimAddedEventArgs","features":[184]},{"name":"ESimAuthenticationPreference","features":[184]},{"name":"ESimDiscoverEvent","features":[184]},{"name":"ESimDiscoverResult","features":[184]},{"name":"ESimDiscoverResultKind","features":[184]},{"name":"ESimDownloadProfileMetadataResult","features":[184]},{"name":"ESimManager","features":[184]},{"name":"ESimOperationResult","features":[184]},{"name":"ESimOperationStatus","features":[184]},{"name":"ESimPolicy","features":[184]},{"name":"ESimProfile","features":[184]},{"name":"ESimProfileClass","features":[184]},{"name":"ESimProfileInstallProgress","features":[184]},{"name":"ESimProfileMetadata","features":[184]},{"name":"ESimProfileMetadataState","features":[184]},{"name":"ESimProfilePolicy","features":[184]},{"name":"ESimProfileState","features":[184]},{"name":"ESimRemovedEventArgs","features":[184]},{"name":"ESimServiceInfo","features":[184]},{"name":"ESimState","features":[184]},{"name":"ESimUpdatedEventArgs","features":[184]},{"name":"ESimWatcher","features":[184]},{"name":"ESimWatcherStatus","features":[184]},{"name":"FdnAccessManager","features":[184]},{"name":"HotspotAuthenticationContext","features":[184]},{"name":"HotspotAuthenticationEventDetails","features":[184]},{"name":"HotspotAuthenticationResponseCode","features":[184]},{"name":"HotspotCredentialsAuthenticationResult","features":[184]},{"name":"IESim","features":[184]},{"name":"IESim2","features":[184]},{"name":"IESim3","features":[184]},{"name":"IESimAddedEventArgs","features":[184]},{"name":"IESimDiscoverEvent","features":[184]},{"name":"IESimDiscoverResult","features":[184]},{"name":"IESimDownloadProfileMetadataResult","features":[184]},{"name":"IESimManagerStatics","features":[184]},{"name":"IESimOperationResult","features":[184]},{"name":"IESimPolicy","features":[184]},{"name":"IESimProfile","features":[184]},{"name":"IESimProfileMetadata","features":[184]},{"name":"IESimProfilePolicy","features":[184]},{"name":"IESimRemovedEventArgs","features":[184]},{"name":"IESimServiceInfo","features":[184]},{"name":"IESimUpdatedEventArgs","features":[184]},{"name":"IESimWatcher","features":[184]},{"name":"IFdnAccessManagerStatics","features":[184]},{"name":"IHotspotAuthenticationContext","features":[184]},{"name":"IHotspotAuthenticationContext2","features":[184]},{"name":"IHotspotAuthenticationContextStatics","features":[184]},{"name":"IHotspotAuthenticationEventDetails","features":[184]},{"name":"IHotspotCredentialsAuthenticationResult","features":[184]},{"name":"IKnownCSimFilePathsStatics","features":[184]},{"name":"IKnownRuimFilePathsStatics","features":[184]},{"name":"IKnownSimFilePathsStatics","features":[184]},{"name":"IKnownUSimFilePathsStatics","features":[184]},{"name":"IMobileBroadbandAccount","features":[184]},{"name":"IMobileBroadbandAccount2","features":[184]},{"name":"IMobileBroadbandAccount3","features":[184]},{"name":"IMobileBroadbandAccountEventArgs","features":[184]},{"name":"IMobileBroadbandAccountStatics","features":[184]},{"name":"IMobileBroadbandAccountUpdatedEventArgs","features":[184]},{"name":"IMobileBroadbandAccountWatcher","features":[184]},{"name":"IMobileBroadbandAntennaSar","features":[184]},{"name":"IMobileBroadbandAntennaSarFactory","features":[184]},{"name":"IMobileBroadbandCellCdma","features":[184]},{"name":"IMobileBroadbandCellGsm","features":[184]},{"name":"IMobileBroadbandCellLte","features":[184]},{"name":"IMobileBroadbandCellNR","features":[184]},{"name":"IMobileBroadbandCellTdscdma","features":[184]},{"name":"IMobileBroadbandCellUmts","features":[184]},{"name":"IMobileBroadbandCellsInfo","features":[184]},{"name":"IMobileBroadbandCellsInfo2","features":[184]},{"name":"IMobileBroadbandCurrentSlotIndexChangedEventArgs","features":[184]},{"name":"IMobileBroadbandDeviceInformation","features":[184]},{"name":"IMobileBroadbandDeviceInformation2","features":[184]},{"name":"IMobileBroadbandDeviceInformation3","features":[184]},{"name":"IMobileBroadbandDeviceInformation4","features":[184]},{"name":"IMobileBroadbandDeviceService","features":[184]},{"name":"IMobileBroadbandDeviceServiceCommandResult","features":[184]},{"name":"IMobileBroadbandDeviceServiceCommandSession","features":[184]},{"name":"IMobileBroadbandDeviceServiceDataReceivedEventArgs","features":[184]},{"name":"IMobileBroadbandDeviceServiceDataSession","features":[184]},{"name":"IMobileBroadbandDeviceServiceInformation","features":[184]},{"name":"IMobileBroadbandDeviceServiceTriggerDetails","features":[184]},{"name":"IMobileBroadbandDeviceServiceTriggerDetails2","features":[184]},{"name":"IMobileBroadbandModem","features":[184]},{"name":"IMobileBroadbandModem2","features":[184]},{"name":"IMobileBroadbandModem3","features":[184]},{"name":"IMobileBroadbandModem4","features":[184]},{"name":"IMobileBroadbandModemConfiguration","features":[184]},{"name":"IMobileBroadbandModemConfiguration2","features":[184]},{"name":"IMobileBroadbandModemIsolation","features":[184]},{"name":"IMobileBroadbandModemIsolationFactory","features":[184]},{"name":"IMobileBroadbandModemStatics","features":[184]},{"name":"IMobileBroadbandNetwork","features":[184]},{"name":"IMobileBroadbandNetwork2","features":[184]},{"name":"IMobileBroadbandNetwork3","features":[184]},{"name":"IMobileBroadbandNetworkRegistrationStateChange","features":[184]},{"name":"IMobileBroadbandNetworkRegistrationStateChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandPco","features":[184]},{"name":"IMobileBroadbandPcoDataChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandPin","features":[184]},{"name":"IMobileBroadbandPinLockStateChange","features":[184]},{"name":"IMobileBroadbandPinLockStateChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandPinManager","features":[184]},{"name":"IMobileBroadbandPinOperationResult","features":[184]},{"name":"IMobileBroadbandRadioStateChange","features":[184]},{"name":"IMobileBroadbandRadioStateChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandSarManager","features":[184]},{"name":"IMobileBroadbandSlotInfo","features":[184]},{"name":"IMobileBroadbandSlotInfo2","features":[184]},{"name":"IMobileBroadbandSlotInfoChangedEventArgs","features":[184]},{"name":"IMobileBroadbandSlotManager","features":[184]},{"name":"IMobileBroadbandTransmissionStateChangedEventArgs","features":[184]},{"name":"IMobileBroadbandUicc","features":[184]},{"name":"IMobileBroadbandUiccApp","features":[184]},{"name":"IMobileBroadbandUiccAppReadRecordResult","features":[184]},{"name":"IMobileBroadbandUiccAppRecordDetailsResult","features":[184]},{"name":"IMobileBroadbandUiccAppsResult","features":[184]},{"name":"INetworkOperatorDataUsageTriggerDetails","features":[184]},{"name":"INetworkOperatorNotificationEventDetails","features":[184]},{"name":"INetworkOperatorTetheringAccessPointConfiguration","features":[184]},{"name":"INetworkOperatorTetheringAccessPointConfiguration2","features":[184]},{"name":"INetworkOperatorTetheringClient","features":[184]},{"name":"INetworkOperatorTetheringClientManager","features":[184]},{"name":"INetworkOperatorTetheringEntitlementCheck","features":[184]},{"name":"INetworkOperatorTetheringManager","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics2","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics3","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics4","features":[184]},{"name":"INetworkOperatorTetheringOperationResult","features":[184]},{"name":"IProvisionFromXmlDocumentResults","features":[184]},{"name":"IProvisionedProfile","features":[184]},{"name":"IProvisioningAgent","features":[184]},{"name":"IProvisioningAgentStaticMethods","features":[184]},{"name":"ITetheringEntitlementCheckTriggerDetails","features":[184]},{"name":"IUssdMessage","features":[184]},{"name":"IUssdMessageFactory","features":[184]},{"name":"IUssdReply","features":[184]},{"name":"IUssdSession","features":[184]},{"name":"IUssdSessionStatics","features":[184]},{"name":"KnownCSimFilePaths","features":[184]},{"name":"KnownRuimFilePaths","features":[184]},{"name":"KnownSimFilePaths","features":[184]},{"name":"KnownUSimFilePaths","features":[184]},{"name":"LegacyNetworkOperatorsContract","features":[184]},{"name":"MobileBroadbandAccount","features":[184]},{"name":"MobileBroadbandAccountEventArgs","features":[184]},{"name":"MobileBroadbandAccountUpdatedEventArgs","features":[184]},{"name":"MobileBroadbandAccountWatcher","features":[184]},{"name":"MobileBroadbandAccountWatcherStatus","features":[184]},{"name":"MobileBroadbandAntennaSar","features":[184]},{"name":"MobileBroadbandCellCdma","features":[184]},{"name":"MobileBroadbandCellGsm","features":[184]},{"name":"MobileBroadbandCellLte","features":[184]},{"name":"MobileBroadbandCellNR","features":[184]},{"name":"MobileBroadbandCellTdscdma","features":[184]},{"name":"MobileBroadbandCellUmts","features":[184]},{"name":"MobileBroadbandCellsInfo","features":[184]},{"name":"MobileBroadbandCurrentSlotIndexChangedEventArgs","features":[184]},{"name":"MobileBroadbandDeviceInformation","features":[184]},{"name":"MobileBroadbandDeviceService","features":[184]},{"name":"MobileBroadbandDeviceServiceCommandResult","features":[184]},{"name":"MobileBroadbandDeviceServiceCommandSession","features":[184]},{"name":"MobileBroadbandDeviceServiceDataReceivedEventArgs","features":[184]},{"name":"MobileBroadbandDeviceServiceDataSession","features":[184]},{"name":"MobileBroadbandDeviceServiceInformation","features":[184]},{"name":"MobileBroadbandDeviceServiceTriggerDetails","features":[184]},{"name":"MobileBroadbandDeviceType","features":[184]},{"name":"MobileBroadbandModem","features":[184]},{"name":"MobileBroadbandModemConfiguration","features":[184]},{"name":"MobileBroadbandModemIsolation","features":[184]},{"name":"MobileBroadbandModemStatus","features":[184]},{"name":"MobileBroadbandNetwork","features":[184]},{"name":"MobileBroadbandNetworkRegistrationStateChange","features":[184]},{"name":"MobileBroadbandNetworkRegistrationStateChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandPco","features":[184]},{"name":"MobileBroadbandPcoDataChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandPin","features":[184]},{"name":"MobileBroadbandPinFormat","features":[184]},{"name":"MobileBroadbandPinLockState","features":[184]},{"name":"MobileBroadbandPinLockStateChange","features":[184]},{"name":"MobileBroadbandPinLockStateChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandPinManager","features":[184]},{"name":"MobileBroadbandPinOperationResult","features":[184]},{"name":"MobileBroadbandPinType","features":[184]},{"name":"MobileBroadbandRadioState","features":[184]},{"name":"MobileBroadbandRadioStateChange","features":[184]},{"name":"MobileBroadbandRadioStateChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandSarManager","features":[184]},{"name":"MobileBroadbandSlotInfo","features":[184]},{"name":"MobileBroadbandSlotInfoChangedEventArgs","features":[184]},{"name":"MobileBroadbandSlotManager","features":[184]},{"name":"MobileBroadbandSlotState","features":[184]},{"name":"MobileBroadbandTransmissionStateChangedEventArgs","features":[184]},{"name":"MobileBroadbandUicc","features":[184]},{"name":"MobileBroadbandUiccApp","features":[184]},{"name":"MobileBroadbandUiccAppOperationStatus","features":[184]},{"name":"MobileBroadbandUiccAppReadRecordResult","features":[184]},{"name":"MobileBroadbandUiccAppRecordDetailsResult","features":[184]},{"name":"MobileBroadbandUiccAppsResult","features":[184]},{"name":"NetworkDeviceStatus","features":[184]},{"name":"NetworkOperatorDataUsageNotificationKind","features":[184]},{"name":"NetworkOperatorDataUsageTriggerDetails","features":[184]},{"name":"NetworkOperatorEventMessageType","features":[184]},{"name":"NetworkOperatorNotificationEventDetails","features":[184]},{"name":"NetworkOperatorTetheringAccessPointConfiguration","features":[184]},{"name":"NetworkOperatorTetheringClient","features":[184]},{"name":"NetworkOperatorTetheringManager","features":[184]},{"name":"NetworkOperatorTetheringOperationResult","features":[184]},{"name":"NetworkOperatorsFdnContract","features":[184]},{"name":"NetworkRegistrationState","features":[184]},{"name":"ProfileMediaType","features":[184]},{"name":"ProfileUsage","features":[76,184]},{"name":"ProvisionFromXmlDocumentResults","features":[184]},{"name":"ProvisionedProfile","features":[184]},{"name":"ProvisioningAgent","features":[184]},{"name":"TetheringCapability","features":[184]},{"name":"TetheringEntitlementCheckTriggerDetails","features":[184]},{"name":"TetheringOperationStatus","features":[184]},{"name":"TetheringOperationalState","features":[184]},{"name":"TetheringWiFiBand","features":[184]},{"name":"UiccAccessCondition","features":[184]},{"name":"UiccAppKind","features":[184]},{"name":"UiccAppRecordKind","features":[184]},{"name":"UssdMessage","features":[184]},{"name":"UssdReply","features":[184]},{"name":"UssdResultCode","features":[184]},{"name":"UssdSession","features":[184]}],"194":[{"name":"ConnectionRequestedEventArgs","features":[185]},{"name":"DeviceArrivedEventHandler","features":[185]},{"name":"DeviceDepartedEventHandler","features":[185]},{"name":"IConnectionRequestedEventArgs","features":[185]},{"name":"IPeerFinderStatics","features":[185]},{"name":"IPeerFinderStatics2","features":[185]},{"name":"IPeerInformation","features":[185]},{"name":"IPeerInformation3","features":[185]},{"name":"IPeerInformationWithHostAndService","features":[185]},{"name":"IPeerWatcher","features":[185]},{"name":"IProximityDevice","features":[185]},{"name":"IProximityDeviceStatics","features":[185]},{"name":"IProximityMessage","features":[185]},{"name":"ITriggeredConnectionStateChangedEventArgs","features":[185]},{"name":"MessageReceivedHandler","features":[185]},{"name":"MessageTransmittedHandler","features":[185]},{"name":"PeerDiscoveryTypes","features":[185]},{"name":"PeerFinder","features":[185]},{"name":"PeerInformation","features":[185]},{"name":"PeerRole","features":[185]},{"name":"PeerWatcher","features":[185]},{"name":"PeerWatcherStatus","features":[185]},{"name":"ProximityDevice","features":[185]},{"name":"ProximityMessage","features":[185]},{"name":"TriggeredConnectState","features":[185]},{"name":"TriggeredConnectionStateChangedEventArgs","features":[185]}],"195":[{"name":"IPushNotificationChannel","features":[186]},{"name":"IPushNotificationChannelManagerForUser","features":[186]},{"name":"IPushNotificationChannelManagerForUser2","features":[186]},{"name":"IPushNotificationChannelManagerStatics","features":[186]},{"name":"IPushNotificationChannelManagerStatics2","features":[186]},{"name":"IPushNotificationChannelManagerStatics3","features":[186]},{"name":"IPushNotificationChannelManagerStatics4","features":[186]},{"name":"IPushNotificationChannelsRevokedEventArgs","features":[186]},{"name":"IPushNotificationReceivedEventArgs","features":[186]},{"name":"IRawNotification","features":[186]},{"name":"IRawNotification2","features":[186]},{"name":"IRawNotification3","features":[186]},{"name":"PushNotificationChannel","features":[186]},{"name":"PushNotificationChannelManager","features":[186]},{"name":"PushNotificationChannelManagerForUser","features":[186]},{"name":"PushNotificationChannelsRevokedEventArgs","features":[186]},{"name":"PushNotificationReceivedEventArgs","features":[186]},{"name":"PushNotificationType","features":[186]},{"name":"RawNotification","features":[186]}],"196":[{"name":"DnssdRegistrationResult","features":[187]},{"name":"DnssdRegistrationStatus","features":[187]},{"name":"DnssdServiceInstance","features":[187]},{"name":"DnssdServiceInstanceCollection","features":[36,187]},{"name":"DnssdServiceWatcher","features":[187]},{"name":"DnssdServiceWatcherStatus","features":[187]},{"name":"IDnssdRegistrationResult","features":[187]},{"name":"IDnssdServiceInstance","features":[187]},{"name":"IDnssdServiceInstanceFactory","features":[187]},{"name":"IDnssdServiceWatcher","features":[187]}],"197":[{"name":"BandwidthStatistics","features":[188]},{"name":"ControlChannelTrigger","features":[188]},{"name":"ControlChannelTriggerContract","features":[188]},{"name":"ControlChannelTriggerResetReason","features":[188]},{"name":"ControlChannelTriggerResourceType","features":[188]},{"name":"ControlChannelTriggerStatus","features":[188]},{"name":"DatagramSocket","features":[188]},{"name":"DatagramSocketControl","features":[188]},{"name":"DatagramSocketInformation","features":[188]},{"name":"DatagramSocketMessageReceivedEventArgs","features":[188]},{"name":"IControlChannelTrigger","features":[188]},{"name":"IControlChannelTrigger2","features":[188]},{"name":"IControlChannelTriggerEventDetails","features":[188]},{"name":"IControlChannelTriggerFactory","features":[188]},{"name":"IControlChannelTriggerResetEventDetails","features":[188]},{"name":"IDatagramSocket","features":[188]},{"name":"IDatagramSocket2","features":[188]},{"name":"IDatagramSocket3","features":[188]},{"name":"IDatagramSocketControl","features":[188]},{"name":"IDatagramSocketControl2","features":[188]},{"name":"IDatagramSocketControl3","features":[188]},{"name":"IDatagramSocketInformation","features":[188]},{"name":"IDatagramSocketMessageReceivedEventArgs","features":[188]},{"name":"IDatagramSocketStatics","features":[188]},{"name":"IMessageWebSocket","features":[188]},{"name":"IMessageWebSocket2","features":[188]},{"name":"IMessageWebSocket3","features":[188]},{"name":"IMessageWebSocketControl","features":[188]},{"name":"IMessageWebSocketControl2","features":[188]},{"name":"IMessageWebSocketMessageReceivedEventArgs","features":[188]},{"name":"IMessageWebSocketMessageReceivedEventArgs2","features":[188]},{"name":"IServerMessageWebSocket","features":[188]},{"name":"IServerMessageWebSocketControl","features":[188]},{"name":"IServerMessageWebSocketInformation","features":[188]},{"name":"IServerStreamWebSocket","features":[188]},{"name":"IServerStreamWebSocketInformation","features":[188]},{"name":"ISocketActivityContext","features":[188]},{"name":"ISocketActivityContextFactory","features":[188]},{"name":"ISocketActivityInformation","features":[188]},{"name":"ISocketActivityInformationStatics","features":[188]},{"name":"ISocketActivityTriggerDetails","features":[188]},{"name":"ISocketErrorStatics","features":[188]},{"name":"IStreamSocket","features":[188]},{"name":"IStreamSocket2","features":[188]},{"name":"IStreamSocket3","features":[188]},{"name":"IStreamSocketControl","features":[188]},{"name":"IStreamSocketControl2","features":[188]},{"name":"IStreamSocketControl3","features":[188]},{"name":"IStreamSocketControl4","features":[188]},{"name":"IStreamSocketInformation","features":[188]},{"name":"IStreamSocketInformation2","features":[188]},{"name":"IStreamSocketListener","features":[188]},{"name":"IStreamSocketListener2","features":[188]},{"name":"IStreamSocketListener3","features":[188]},{"name":"IStreamSocketListenerConnectionReceivedEventArgs","features":[188]},{"name":"IStreamSocketListenerControl","features":[188]},{"name":"IStreamSocketListenerControl2","features":[188]},{"name":"IStreamSocketListenerInformation","features":[188]},{"name":"IStreamSocketStatics","features":[188]},{"name":"IStreamWebSocket","features":[188]},{"name":"IStreamWebSocket2","features":[188]},{"name":"IStreamWebSocketControl","features":[188]},{"name":"IStreamWebSocketControl2","features":[188]},{"name":"IWebSocket","features":[188]},{"name":"IWebSocketClosedEventArgs","features":[188]},{"name":"IWebSocketControl","features":[188]},{"name":"IWebSocketControl2","features":[188]},{"name":"IWebSocketErrorStatics","features":[188]},{"name":"IWebSocketInformation","features":[188]},{"name":"IWebSocketInformation2","features":[188]},{"name":"IWebSocketServerCustomValidationRequestedEventArgs","features":[188]},{"name":"MessageWebSocket","features":[188]},{"name":"MessageWebSocketControl","features":[188]},{"name":"MessageWebSocketInformation","features":[188]},{"name":"MessageWebSocketMessageReceivedEventArgs","features":[188]},{"name":"MessageWebSocketReceiveMode","features":[188]},{"name":"RoundTripTimeStatistics","features":[188]},{"name":"ServerMessageWebSocket","features":[188]},{"name":"ServerMessageWebSocketControl","features":[188]},{"name":"ServerMessageWebSocketInformation","features":[188]},{"name":"ServerStreamWebSocket","features":[188]},{"name":"ServerStreamWebSocketInformation","features":[188]},{"name":"SocketActivityConnectedStandbyAction","features":[188]},{"name":"SocketActivityContext","features":[188]},{"name":"SocketActivityInformation","features":[188]},{"name":"SocketActivityKind","features":[188]},{"name":"SocketActivityTriggerDetails","features":[188]},{"name":"SocketActivityTriggerReason","features":[188]},{"name":"SocketError","features":[188]},{"name":"SocketErrorStatus","features":[188]},{"name":"SocketMessageType","features":[188]},{"name":"SocketProtectionLevel","features":[188]},{"name":"SocketQualityOfService","features":[188]},{"name":"SocketSslErrorSeverity","features":[188]},{"name":"StreamSocket","features":[188]},{"name":"StreamSocketControl","features":[188]},{"name":"StreamSocketInformation","features":[188]},{"name":"StreamSocketListener","features":[188]},{"name":"StreamSocketListenerConnectionReceivedEventArgs","features":[188]},{"name":"StreamSocketListenerControl","features":[188]},{"name":"StreamSocketListenerInformation","features":[188]},{"name":"StreamWebSocket","features":[188]},{"name":"StreamWebSocketControl","features":[188]},{"name":"StreamWebSocketInformation","features":[188]},{"name":"WebSocketClosedEventArgs","features":[188]},{"name":"WebSocketError","features":[188]},{"name":"WebSocketKeepAlive","features":[8,188]},{"name":"WebSocketServerCustomValidationRequestedEventArgs","features":[188]}],"198":[{"name":"IVpnAppId","features":[189]},{"name":"IVpnAppIdFactory","features":[189]},{"name":"IVpnChannel","features":[189]},{"name":"IVpnChannel2","features":[189]},{"name":"IVpnChannel4","features":[189]},{"name":"IVpnChannel5","features":[189]},{"name":"IVpnChannel6","features":[189]},{"name":"IVpnChannelActivityEventArgs","features":[189]},{"name":"IVpnChannelActivityStateChangedArgs","features":[189]},{"name":"IVpnChannelConfiguration","features":[189]},{"name":"IVpnChannelConfiguration2","features":[189]},{"name":"IVpnChannelStatics","features":[189]},{"name":"IVpnCredential","features":[189]},{"name":"IVpnCustomCheckBox","features":[189]},{"name":"IVpnCustomComboBox","features":[189]},{"name":"IVpnCustomEditBox","features":[189]},{"name":"IVpnCustomErrorBox","features":[189]},{"name":"IVpnCustomPrompt","features":[189]},{"name":"IVpnCustomPromptBooleanInput","features":[189]},{"name":"IVpnCustomPromptElement","features":[189]},{"name":"IVpnCustomPromptOptionSelector","features":[189]},{"name":"IVpnCustomPromptText","features":[189]},{"name":"IVpnCustomPromptTextInput","features":[189]},{"name":"IVpnCustomTextBox","features":[189]},{"name":"IVpnDomainNameAssignment","features":[189]},{"name":"IVpnDomainNameInfo","features":[189]},{"name":"IVpnDomainNameInfo2","features":[189]},{"name":"IVpnDomainNameInfoFactory","features":[189]},{"name":"IVpnForegroundActivatedEventArgs","features":[189]},{"name":"IVpnForegroundActivationOperation","features":[189]},{"name":"IVpnInterfaceId","features":[189]},{"name":"IVpnInterfaceIdFactory","features":[189]},{"name":"IVpnManagementAgent","features":[189]},{"name":"IVpnNamespaceAssignment","features":[189]},{"name":"IVpnNamespaceInfo","features":[189]},{"name":"IVpnNamespaceInfoFactory","features":[189]},{"name":"IVpnNativeProfile","features":[189]},{"name":"IVpnNativeProfile2","features":[189]},{"name":"IVpnPacketBuffer","features":[189]},{"name":"IVpnPacketBuffer2","features":[189]},{"name":"IVpnPacketBuffer3","features":[189]},{"name":"IVpnPacketBufferFactory","features":[189]},{"name":"IVpnPacketBufferList","features":[189]},{"name":"IVpnPacketBufferList2","features":[189]},{"name":"IVpnPickedCredential","features":[189]},{"name":"IVpnPlugIn","features":[189]},{"name":"IVpnPlugInProfile","features":[189]},{"name":"IVpnPlugInProfile2","features":[189]},{"name":"IVpnProfile","features":[189]},{"name":"IVpnRoute","features":[189]},{"name":"IVpnRouteAssignment","features":[189]},{"name":"IVpnRouteFactory","features":[189]},{"name":"IVpnSystemHealth","features":[189]},{"name":"IVpnTrafficFilter","features":[189]},{"name":"IVpnTrafficFilterAssignment","features":[189]},{"name":"IVpnTrafficFilterFactory","features":[189]},{"name":"VpnAppId","features":[189]},{"name":"VpnAppIdType","features":[189]},{"name":"VpnAuthenticationMethod","features":[189]},{"name":"VpnChannel","features":[189]},{"name":"VpnChannelActivityEventArgs","features":[189]},{"name":"VpnChannelActivityEventType","features":[189]},{"name":"VpnChannelActivityStateChangedArgs","features":[189]},{"name":"VpnChannelConfiguration","features":[189]},{"name":"VpnChannelRequestCredentialsOptions","features":[189]},{"name":"VpnCredential","features":[189]},{"name":"VpnCredentialType","features":[189]},{"name":"VpnCustomCheckBox","features":[189]},{"name":"VpnCustomComboBox","features":[189]},{"name":"VpnCustomEditBox","features":[189]},{"name":"VpnCustomErrorBox","features":[189]},{"name":"VpnCustomPromptBooleanInput","features":[189]},{"name":"VpnCustomPromptOptionSelector","features":[189]},{"name":"VpnCustomPromptText","features":[189]},{"name":"VpnCustomPromptTextInput","features":[189]},{"name":"VpnCustomTextBox","features":[189]},{"name":"VpnDataPathType","features":[189]},{"name":"VpnDomainNameAssignment","features":[189]},{"name":"VpnDomainNameInfo","features":[189]},{"name":"VpnDomainNameType","features":[189]},{"name":"VpnForegroundActivatedEventArgs","features":[189]},{"name":"VpnForegroundActivationOperation","features":[189]},{"name":"VpnIPProtocol","features":[189]},{"name":"VpnInterfaceId","features":[189]},{"name":"VpnManagementAgent","features":[189]},{"name":"VpnManagementConnectionStatus","features":[189]},{"name":"VpnManagementErrorStatus","features":[189]},{"name":"VpnNamespaceAssignment","features":[189]},{"name":"VpnNamespaceInfo","features":[189]},{"name":"VpnNativeProfile","features":[189]},{"name":"VpnNativeProtocolType","features":[189]},{"name":"VpnPacketBuffer","features":[189]},{"name":"VpnPacketBufferList","features":[189]},{"name":"VpnPacketBufferStatus","features":[189]},{"name":"VpnPickedCredential","features":[189]},{"name":"VpnPlugInProfile","features":[189]},{"name":"VpnRoute","features":[189]},{"name":"VpnRouteAssignment","features":[189]},{"name":"VpnRoutingPolicyType","features":[189]},{"name":"VpnSystemHealth","features":[189]},{"name":"VpnTrafficFilter","features":[189]},{"name":"VpnTrafficFilterAssignment","features":[189]}],"199":[{"name":"IXboxLiveDeviceAddress","features":[190]},{"name":"IXboxLiveDeviceAddressStatics","features":[190]},{"name":"IXboxLiveEndpointPair","features":[190]},{"name":"IXboxLiveEndpointPairCreationResult","features":[190]},{"name":"IXboxLiveEndpointPairStateChangedEventArgs","features":[190]},{"name":"IXboxLiveEndpointPairStatics","features":[190]},{"name":"IXboxLiveEndpointPairTemplate","features":[190]},{"name":"IXboxLiveEndpointPairTemplateStatics","features":[190]},{"name":"IXboxLiveInboundEndpointPairCreatedEventArgs","features":[190]},{"name":"IXboxLiveQualityOfServiceMeasurement","features":[190]},{"name":"IXboxLiveQualityOfServiceMeasurementStatics","features":[190]},{"name":"IXboxLiveQualityOfServiceMetricResult","features":[190]},{"name":"IXboxLiveQualityOfServicePrivatePayloadResult","features":[190]},{"name":"XboxLiveDeviceAddress","features":[190]},{"name":"XboxLiveEndpointPair","features":[190]},{"name":"XboxLiveEndpointPairCreationBehaviors","features":[190]},{"name":"XboxLiveEndpointPairCreationResult","features":[190]},{"name":"XboxLiveEndpointPairCreationStatus","features":[190]},{"name":"XboxLiveEndpointPairState","features":[190]},{"name":"XboxLiveEndpointPairStateChangedEventArgs","features":[190]},{"name":"XboxLiveEndpointPairTemplate","features":[190]},{"name":"XboxLiveInboundEndpointPairCreatedEventArgs","features":[190]},{"name":"XboxLiveNetworkAccessKind","features":[190]},{"name":"XboxLiveQualityOfServiceMeasurement","features":[190]},{"name":"XboxLiveQualityOfServiceMeasurementStatus","features":[190]},{"name":"XboxLiveQualityOfServiceMetric","features":[190]},{"name":"XboxLiveQualityOfServiceMetricResult","features":[190]},{"name":"XboxLiveQualityOfServicePrivatePayloadResult","features":[190]},{"name":"XboxLiveSecureSocketsContract","features":[190]},{"name":"XboxLiveSocketKind","features":[190]}],"200":[{"name":"IPerceptionTimestamp","features":[191]},{"name":"IPerceptionTimestamp2","features":[191]},{"name":"IPerceptionTimestampHelperStatics","features":[191]},{"name":"IPerceptionTimestampHelperStatics2","features":[191]},{"name":"PerceptionTimestamp","features":[191]},{"name":"PerceptionTimestampHelper","features":[191]}],"201":[{"name":"CorePerceptionAutomation","features":[192]},{"name":"ICorePerceptionAutomationStatics","features":[192]},{"name":"PerceptionAutomationCoreContract","features":[192]}],"202":[{"name":"EyesPose","features":[193]},{"name":"HandJointKind","features":[193]},{"name":"HandMeshObserver","features":[193]},{"name":"HandMeshVertex","features":[68,193]},{"name":"HandMeshVertexState","features":[193]},{"name":"HandPose","features":[193]},{"name":"HeadPose","features":[193]},{"name":"IEyesPose","features":[193]},{"name":"IEyesPoseStatics","features":[193]},{"name":"IHandMeshObserver","features":[193]},{"name":"IHandMeshVertexState","features":[193]},{"name":"IHandPose","features":[193]},{"name":"IHeadPose","features":[193]},{"name":"JointPose","features":[68,193]},{"name":"JointPoseAccuracy","features":[193]}],"203":[{"name":"ISpatialAnchor","features":[194]},{"name":"ISpatialAnchor2","features":[194]},{"name":"ISpatialAnchorExportSufficiency","features":[194]},{"name":"ISpatialAnchorExporter","features":[194]},{"name":"ISpatialAnchorExporterStatics","features":[194]},{"name":"ISpatialAnchorManagerStatics","features":[194]},{"name":"ISpatialAnchorRawCoordinateSystemAdjustedEventArgs","features":[194]},{"name":"ISpatialAnchorStatics","features":[194]},{"name":"ISpatialAnchorStore","features":[194]},{"name":"ISpatialAnchorTransferManagerStatics","features":[194]},{"name":"ISpatialBoundingVolume","features":[194]},{"name":"ISpatialBoundingVolumeStatics","features":[194]},{"name":"ISpatialCoordinateSystem","features":[194]},{"name":"ISpatialEntity","features":[194]},{"name":"ISpatialEntityAddedEventArgs","features":[194]},{"name":"ISpatialEntityFactory","features":[194]},{"name":"ISpatialEntityRemovedEventArgs","features":[194]},{"name":"ISpatialEntityStore","features":[194]},{"name":"ISpatialEntityStoreStatics","features":[194]},{"name":"ISpatialEntityUpdatedEventArgs","features":[194]},{"name":"ISpatialEntityWatcher","features":[194]},{"name":"ISpatialLocation","features":[194]},{"name":"ISpatialLocation2","features":[194]},{"name":"ISpatialLocator","features":[194]},{"name":"ISpatialLocatorAttachedFrameOfReference","features":[194]},{"name":"ISpatialLocatorPositionalTrackingDeactivatingEventArgs","features":[194]},{"name":"ISpatialLocatorStatics","features":[194]},{"name":"ISpatialStageFrameOfReference","features":[194]},{"name":"ISpatialStageFrameOfReferenceStatics","features":[194]},{"name":"ISpatialStationaryFrameOfReference","features":[194]},{"name":"SpatialAnchor","features":[194]},{"name":"SpatialAnchorExportPurpose","features":[194]},{"name":"SpatialAnchorExportSufficiency","features":[194]},{"name":"SpatialAnchorExporter","features":[194]},{"name":"SpatialAnchorManager","features":[194]},{"name":"SpatialAnchorRawCoordinateSystemAdjustedEventArgs","features":[194]},{"name":"SpatialAnchorStore","features":[194]},{"name":"SpatialAnchorTransferManager","features":[194]},{"name":"SpatialBoundingBox","features":[68,194]},{"name":"SpatialBoundingFrustum","features":[68,194]},{"name":"SpatialBoundingOrientedBox","features":[68,194]},{"name":"SpatialBoundingSphere","features":[68,194]},{"name":"SpatialBoundingVolume","features":[194]},{"name":"SpatialCoordinateSystem","features":[194]},{"name":"SpatialEntity","features":[194]},{"name":"SpatialEntityAddedEventArgs","features":[194]},{"name":"SpatialEntityRemovedEventArgs","features":[194]},{"name":"SpatialEntityStore","features":[194]},{"name":"SpatialEntityUpdatedEventArgs","features":[194]},{"name":"SpatialEntityWatcher","features":[194]},{"name":"SpatialEntityWatcherStatus","features":[194]},{"name":"SpatialLocatability","features":[194]},{"name":"SpatialLocation","features":[194]},{"name":"SpatialLocator","features":[194]},{"name":"SpatialLocatorAttachedFrameOfReference","features":[194]},{"name":"SpatialLocatorPositionalTrackingDeactivatingEventArgs","features":[194]},{"name":"SpatialLookDirectionRange","features":[194]},{"name":"SpatialMovementRange","features":[194]},{"name":"SpatialPerceptionAccessStatus","features":[194]},{"name":"SpatialRay","features":[68,194]},{"name":"SpatialStageFrameOfReference","features":[194]},{"name":"SpatialStationaryFrameOfReference","features":[194]}],"204":[{"name":"ISpatialGraphInteropFrameOfReferencePreview","features":[195]},{"name":"ISpatialGraphInteropPreviewStatics","features":[195]},{"name":"ISpatialGraphInteropPreviewStatics2","features":[195]},{"name":"SpatialGraphInteropFrameOfReferencePreview","features":[195]},{"name":"SpatialGraphInteropPreview","features":[195]}],"205":[{"name":"ISpatialSurfaceInfo","features":[196]},{"name":"ISpatialSurfaceMesh","features":[196]},{"name":"ISpatialSurfaceMeshBuffer","features":[196]},{"name":"ISpatialSurfaceMeshOptions","features":[196]},{"name":"ISpatialSurfaceMeshOptionsStatics","features":[196]},{"name":"ISpatialSurfaceObserver","features":[196]},{"name":"ISpatialSurfaceObserverStatics","features":[196]},{"name":"ISpatialSurfaceObserverStatics2","features":[196]},{"name":"SpatialSurfaceInfo","features":[196]},{"name":"SpatialSurfaceMesh","features":[196]},{"name":"SpatialSurfaceMeshBuffer","features":[196]},{"name":"SpatialSurfaceMeshOptions","features":[196]},{"name":"SpatialSurfaceObserver","features":[196]}],"206":[{"name":"PhoneContract","features":[197]}],"207":[{"name":"ApplicationProfile","features":[198]},{"name":"ApplicationProfileModes","features":[198]},{"name":"IApplicationProfileStatics","features":[198]}],"208":[{"name":"IVibrationDevice","features":[199]},{"name":"IVibrationDeviceStatics","features":[199]},{"name":"VibrationDevice","features":[199]}],"209":[{"name":"Battery","features":[200]},{"name":"IBattery","features":[200]},{"name":"IBatteryStatics","features":[200]}],"210":[{"name":"Enterprise","features":[201]},{"name":"EnterpriseEnrollmentManager","features":[201]},{"name":"EnterpriseEnrollmentResult","features":[201]},{"name":"EnterpriseEnrollmentStatus","features":[201]},{"name":"EnterpriseStatus","features":[201]},{"name":"IEnterprise","features":[201]},{"name":"IEnterpriseEnrollmentManager","features":[201]},{"name":"IEnterpriseEnrollmentResult","features":[201]},{"name":"IInstallationManagerStatics","features":[201]},{"name":"IInstallationManagerStatics2","features":[201]},{"name":"IPackageInstallResult","features":[201]},{"name":"IPackageInstallResult2","features":[201]},{"name":"InstallationManager","features":[201]},{"name":"PackageInstallResult","features":[201]}],"211":[{"name":"AudioRoutingEndpoint","features":[202]},{"name":"AudioRoutingManager","features":[202]},{"name":"AvailableAudioRoutingEndpoints","features":[202]},{"name":"IAudioRoutingManager","features":[202]},{"name":"IAudioRoutingManagerStatics","features":[202]}],"212":[{"name":"AccessoryManager","features":[203]},{"name":"AccessoryNotificationType","features":[203]},{"name":"AlarmNotificationTriggerDetails","features":[203]},{"name":"AppNotificationInfo","features":[203]},{"name":"BinaryId","features":[203]},{"name":"CalendarChangedEvent","features":[203]},{"name":"CalendarChangedNotificationTriggerDetails","features":[203]},{"name":"CortanaTileNotificationTriggerDetails","features":[203]},{"name":"EmailAccountInfo","features":[203]},{"name":"EmailFolderInfo","features":[203]},{"name":"EmailNotificationTriggerDetails","features":[203]},{"name":"EmailReadNotificationTriggerDetails","features":[203]},{"name":"IAccessoryManager","features":[203]},{"name":"IAccessoryManager2","features":[203]},{"name":"IAccessoryManager3","features":[203]},{"name":"IAccessoryNotificationTriggerDetails","features":[203]},{"name":"IAlarmNotificationTriggerDetails","features":[203]},{"name":"IAlarmNotificationTriggerDetails2","features":[203]},{"name":"IAppNotificationInfo","features":[203]},{"name":"IBinaryId","features":[203]},{"name":"ICalendarChangedNotificationTriggerDetails","features":[203]},{"name":"ICortanaTileNotificationTriggerDetails","features":[203]},{"name":"IEmailAccountInfo","features":[203]},{"name":"IEmailFolderInfo","features":[203]},{"name":"IEmailNotificationTriggerDetails","features":[203]},{"name":"IEmailNotificationTriggerDetails2","features":[203]},{"name":"IEmailReadNotificationTriggerDetails","features":[203]},{"name":"IMediaControlsTriggerDetails","features":[203]},{"name":"IMediaMetadata","features":[203]},{"name":"IPhoneCallDetails","features":[203]},{"name":"IPhoneLineDetails","features":[203]},{"name":"IPhoneLineDetails2","features":[203]},{"name":"IPhoneNotificationTriggerDetails","features":[203]},{"name":"IReminderNotificationTriggerDetails","features":[203]},{"name":"IReminderNotificationTriggerDetails2","features":[203]},{"name":"ISpeedDialEntry","features":[203]},{"name":"ITextResponse","features":[203]},{"name":"IToastNotificationTriggerDetails","features":[203]},{"name":"IToastNotificationTriggerDetails2","features":[203]},{"name":"IVolumeInfo","features":[203]},{"name":"MediaControlsTriggerDetails","features":[203]},{"name":"MediaMetadata","features":[203]},{"name":"PhoneCallAudioEndpoint","features":[203]},{"name":"PhoneCallDetails","features":[203]},{"name":"PhoneCallDirection","features":[203]},{"name":"PhoneCallState","features":[203]},{"name":"PhoneCallTransport","features":[203]},{"name":"PhoneLineDetails","features":[203]},{"name":"PhoneLineRegistrationState","features":[203]},{"name":"PhoneMediaType","features":[203]},{"name":"PhoneNotificationTriggerDetails","features":[203]},{"name":"PhoneNotificationType","features":[203]},{"name":"PlaybackCapability","features":[203]},{"name":"PlaybackCommand","features":[203]},{"name":"PlaybackStatus","features":[203]},{"name":"ReminderNotificationTriggerDetails","features":[203]},{"name":"ReminderState","features":[203]},{"name":"SpeedDialEntry","features":[203]},{"name":"TextResponse","features":[203]},{"name":"ToastNotificationTriggerDetails","features":[203]},{"name":"VibrateState","features":[203]},{"name":"VolumeInfo","features":[203]}],"213":[{"name":"ContactAddress","features":[204]},{"name":"ContactChangeRecord","features":[204]},{"name":"ContactChangeType","features":[204]},{"name":"ContactInformation","features":[204]},{"name":"ContactQueryOptions","features":[204]},{"name":"ContactQueryResult","features":[204]},{"name":"ContactQueryResultOrdering","features":[204]},{"name":"ContactStore","features":[204]},{"name":"ContactStoreApplicationAccessMode","features":[204]},{"name":"ContactStoreSystemAccessMode","features":[204]},{"name":"IContactAddress","features":[204]},{"name":"IContactChangeRecord","features":[204]},{"name":"IContactInformation","features":[204]},{"name":"IContactInformation2","features":[204]},{"name":"IContactInformationStatics","features":[204]},{"name":"IContactQueryOptions","features":[204]},{"name":"IContactQueryResult","features":[204]},{"name":"IContactStore","features":[204]},{"name":"IContactStore2","features":[204]},{"name":"IContactStoreStatics","features":[204]},{"name":"IKnownContactPropertiesStatics","features":[204]},{"name":"IStoredContact","features":[204]},{"name":"IStoredContactFactory","features":[204]},{"name":"KnownContactProperties","features":[204]},{"name":"StoredContact","features":[204]},{"name":"VCardFormat","features":[204]}],"214":[{"name":"ContactPartnerProvisioningManager","features":[205]},{"name":"IContactPartnerProvisioningManagerStatics","features":[205]},{"name":"IContactPartnerProvisioningManagerStatics2","features":[205]},{"name":"IMessagePartnerProvisioningManagerStatics","features":[205]},{"name":"MessagePartnerProvisioningManager","features":[205]}],"215":[{"name":"SpeechRecognitionUIStatus","features":[206]}],"216":[{"name":"DualSimTile","features":[207]},{"name":"DualSimTileContract","features":[207]},{"name":"IDualSimTile","features":[207]},{"name":"IDualSimTileStatics","features":[207]},{"name":"IToastNotificationManagerStatics3","features":[207]}],"217":[{"name":"ISystemProtectionStatics","features":[208]},{"name":"ISystemProtectionUnlockStatics","features":[208]},{"name":"SystemProtection","features":[208]}],"218":[{"name":"IPowerManagerStatics","features":[209]},{"name":"IPowerManagerStatics2","features":[209]},{"name":"PowerManager","features":[209]},{"name":"PowerSavingMode","features":[209]}],"219":[{"name":"IRetailModeStatics","features":[210]},{"name":"RetailMode","features":[210]}],"220":[{"name":"GameService","features":[211]},{"name":"GameServiceGameOutcome","features":[211]},{"name":"GameServicePropertyCollection","features":[211]},{"name":"GameServiceScoreKind","features":[211]},{"name":"IGameService","features":[211]},{"name":"IGameService2","features":[211]},{"name":"IGameServicePropertyCollection","features":[211]}],"221":[{"name":"BackPressedEventArgs","features":[212]},{"name":"CameraEventArgs","features":[212]},{"name":"HardwareButtons","features":[212]},{"name":"IBackPressedEventArgs","features":[212]},{"name":"ICameraEventArgs","features":[212]},{"name":"IHardwareButtonsStatics","features":[212]},{"name":"IHardwareButtonsStatics2","features":[212]}],"222":[{"name":"EnterpriseKeyCredentialRegistrationInfo","features":[213]},{"name":"EnterpriseKeyCredentialRegistrationManager","features":[213]},{"name":"IEnterpriseKeyCredentialRegistrationInfo","features":[213]},{"name":"IEnterpriseKeyCredentialRegistrationManager","features":[213]},{"name":"IEnterpriseKeyCredentialRegistrationManagerStatics","features":[213]}],"223":[{"name":"IMicrosoftAccountMultiFactorAuthenticationManager","features":[214]},{"name":"IMicrosoftAccountMultiFactorAuthenticatorStatics","features":[214]},{"name":"IMicrosoftAccountMultiFactorGetSessionsResult","features":[214]},{"name":"IMicrosoftAccountMultiFactorOneTimeCodedInfo","features":[214]},{"name":"IMicrosoftAccountMultiFactorSessionInfo","features":[214]},{"name":"IMicrosoftAccountMultiFactorUnregisteredAccountsAndSessionInfo","features":[214]},{"name":"MicrosoftAccountMultiFactorAuthenticationManager","features":[214]},{"name":"MicrosoftAccountMultiFactorAuthenticationType","features":[214]},{"name":"MicrosoftAccountMultiFactorGetSessionsResult","features":[214]},{"name":"MicrosoftAccountMultiFactorOneTimeCodedInfo","features":[214]},{"name":"MicrosoftAccountMultiFactorServiceResponse","features":[214]},{"name":"MicrosoftAccountMultiFactorSessionApprovalStatus","features":[214]},{"name":"MicrosoftAccountMultiFactorSessionAuthenticationStatus","features":[214]},{"name":"MicrosoftAccountMultiFactorSessionInfo","features":[214]},{"name":"MicrosoftAccountMultiFactorUnregisteredAccountsAndSessionInfo","features":[214]}],"225":[{"name":"CredentialPromptType","features":[215]},{"name":"IOnlineIdAuthenticator","features":[215]},{"name":"IOnlineIdServiceTicket","features":[215]},{"name":"IOnlineIdServiceTicketRequest","features":[215]},{"name":"IOnlineIdServiceTicketRequestFactory","features":[215]},{"name":"IOnlineIdSystemAuthenticatorForUser","features":[215]},{"name":"IOnlineIdSystemAuthenticatorStatics","features":[215]},{"name":"IOnlineIdSystemIdentity","features":[215]},{"name":"IOnlineIdSystemTicketResult","features":[215]},{"name":"IUserIdentity","features":[215]},{"name":"OnlineIdAuthenticator","features":[215]},{"name":"OnlineIdServiceTicket","features":[215]},{"name":"OnlineIdServiceTicketRequest","features":[215]},{"name":"OnlineIdSystemAuthenticator","features":[215]},{"name":"OnlineIdSystemAuthenticatorForUser","features":[215]},{"name":"OnlineIdSystemIdentity","features":[215]},{"name":"OnlineIdSystemTicketResult","features":[215]},{"name":"OnlineIdSystemTicketStatus","features":[215]},{"name":"SignOutUserOperation","features":[76,215]},{"name":"UserAuthenticationOperation","features":[76,215]},{"name":"UserIdentity","features":[215]}],"226":[{"name":"IWebAuthenticationBrokerStatics","features":[216]},{"name":"IWebAuthenticationBrokerStatics2","features":[216]},{"name":"IWebAuthenticationResult","features":[216]},{"name":"TokenBindingKeyType","features":[216]},{"name":"WebAuthenticationBroker","features":[216]},{"name":"WebAuthenticationOptions","features":[216]},{"name":"WebAuthenticationResult","features":[216]},{"name":"WebAuthenticationStatus","features":[216]}],"227":[{"name":"FindAllAccountsResult","features":[217]},{"name":"FindAllWebAccountsStatus","features":[217]},{"name":"IFindAllAccountsResult","features":[217]},{"name":"IWebAccountEventArgs","features":[217]},{"name":"IWebAccountMonitor","features":[217]},{"name":"IWebAccountMonitor2","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics2","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics3","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics4","features":[217]},{"name":"IWebProviderError","features":[217]},{"name":"IWebProviderErrorFactory","features":[217]},{"name":"IWebTokenRequest","features":[217]},{"name":"IWebTokenRequest2","features":[217]},{"name":"IWebTokenRequest3","features":[217]},{"name":"IWebTokenRequestFactory","features":[217]},{"name":"IWebTokenRequestResult","features":[217]},{"name":"IWebTokenResponse","features":[217]},{"name":"IWebTokenResponseFactory","features":[217]},{"name":"WebAccountEventArgs","features":[217]},{"name":"WebAccountMonitor","features":[217]},{"name":"WebAuthenticationCoreManager","features":[217]},{"name":"WebProviderError","features":[217]},{"name":"WebTokenRequest","features":[217]},{"name":"WebTokenRequestPromptType","features":[217]},{"name":"WebTokenRequestResult","features":[217]},{"name":"WebTokenRequestStatus","features":[217]},{"name":"WebTokenResponse","features":[217]}],"228":[{"name":"IWebAccountClientView","features":[218]},{"name":"IWebAccountClientViewFactory","features":[218]},{"name":"IWebAccountManagerStatics","features":[218]},{"name":"IWebAccountManagerStatics2","features":[218]},{"name":"IWebAccountManagerStatics3","features":[218]},{"name":"IWebAccountManagerStatics4","features":[218]},{"name":"IWebAccountMapManagerStatics","features":[218]},{"name":"IWebAccountProviderAddAccountOperation","features":[218]},{"name":"IWebAccountProviderBaseReportOperation","features":[218]},{"name":"IWebAccountProviderDeleteAccountOperation","features":[218]},{"name":"IWebAccountProviderManageAccountOperation","features":[218]},{"name":"IWebAccountProviderOperation","features":[218]},{"name":"IWebAccountProviderRetrieveCookiesOperation","features":[218]},{"name":"IWebAccountProviderSignOutAccountOperation","features":[218]},{"name":"IWebAccountProviderSilentReportOperation","features":[218]},{"name":"IWebAccountProviderTokenObjects","features":[218]},{"name":"IWebAccountProviderTokenObjects2","features":[218]},{"name":"IWebAccountProviderTokenOperation","features":[218]},{"name":"IWebAccountProviderUIReportOperation","features":[218]},{"name":"IWebAccountScopeManagerStatics","features":[218]},{"name":"IWebProviderTokenRequest","features":[218]},{"name":"IWebProviderTokenRequest2","features":[218]},{"name":"IWebProviderTokenRequest3","features":[218]},{"name":"IWebProviderTokenResponse","features":[218]},{"name":"IWebProviderTokenResponseFactory","features":[218]},{"name":"WebAccountClientView","features":[218]},{"name":"WebAccountClientViewType","features":[218]},{"name":"WebAccountManager","features":[218]},{"name":"WebAccountProviderAddAccountOperation","features":[218]},{"name":"WebAccountProviderDeleteAccountOperation","features":[218]},{"name":"WebAccountProviderGetTokenSilentOperation","features":[218]},{"name":"WebAccountProviderManageAccountOperation","features":[218]},{"name":"WebAccountProviderOperationKind","features":[218]},{"name":"WebAccountProviderRequestTokenOperation","features":[218]},{"name":"WebAccountProviderRetrieveCookiesOperation","features":[218]},{"name":"WebAccountProviderSignOutAccountOperation","features":[218]},{"name":"WebAccountProviderTriggerDetails","features":[218]},{"name":"WebAccountScope","features":[218]},{"name":"WebAccountSelectionOptions","features":[218]},{"name":"WebProviderTokenRequest","features":[218]},{"name":"WebProviderTokenResponse","features":[218]}],"229":[{"name":"AppCapability","features":[219]},{"name":"AppCapabilityAccessChangedEventArgs","features":[219]},{"name":"AppCapabilityAccessStatus","features":[219]},{"name":"IAppCapability","features":[219]},{"name":"IAppCapability2","features":[219]},{"name":"IAppCapabilityAccessChangedEventArgs","features":[219]},{"name":"IAppCapabilityStatics","features":[219]}],"230":[{"name":"ICredentialFactory","features":[220]},{"name":"IKeyCredential","features":[220]},{"name":"IKeyCredentialAttestationResult","features":[220]},{"name":"IKeyCredentialManagerStatics","features":[220]},{"name":"IKeyCredentialOperationResult","features":[220]},{"name":"IKeyCredentialRetrievalResult","features":[220]},{"name":"IPasswordCredential","features":[220]},{"name":"IPasswordVault","features":[220]},{"name":"IWebAccount","features":[220]},{"name":"IWebAccount2","features":[220]},{"name":"IWebAccountFactory","features":[220]},{"name":"IWebAccountProvider","features":[220]},{"name":"IWebAccountProvider2","features":[220]},{"name":"IWebAccountProvider3","features":[220]},{"name":"IWebAccountProvider4","features":[220]},{"name":"IWebAccountProviderFactory","features":[220]},{"name":"KeyCredential","features":[220]},{"name":"KeyCredentialAttestationResult","features":[220]},{"name":"KeyCredentialAttestationStatus","features":[220]},{"name":"KeyCredentialCreationOption","features":[220]},{"name":"KeyCredentialManager","features":[220]},{"name":"KeyCredentialOperationResult","features":[220]},{"name":"KeyCredentialRetrievalResult","features":[220]},{"name":"KeyCredentialStatus","features":[220]},{"name":"PasswordCredential","features":[220]},{"name":"PasswordCredentialPropertyStore","features":[36,220]},{"name":"PasswordVault","features":[220]},{"name":"WebAccount","features":[220]},{"name":"WebAccountPictureSize","features":[220]},{"name":"WebAccountProvider","features":[220]},{"name":"WebAccountState","features":[220]}],"231":[{"name":"AuthenticationProtocol","features":[221]},{"name":"CredentialPicker","features":[221]},{"name":"CredentialPickerOptions","features":[221]},{"name":"CredentialPickerResults","features":[221]},{"name":"CredentialSaveOption","features":[221]},{"name":"ICredentialPickerOptions","features":[221]},{"name":"ICredentialPickerResults","features":[221]},{"name":"ICredentialPickerStatics","features":[221]},{"name":"IUserConsentVerifierStatics","features":[221]},{"name":"UserConsentVerificationResult","features":[221]},{"name":"UserConsentVerifier","features":[221]},{"name":"UserConsentVerifierAvailability","features":[221]}],"232":[{"name":"BinaryStringEncoding","features":[222]},{"name":"CryptographicBuffer","features":[222]},{"name":"ICryptographicBufferStatics","features":[222]}],"233":[{"name":"Certificate","features":[223]},{"name":"CertificateChain","features":[223]},{"name":"CertificateChainPolicy","features":[223]},{"name":"CertificateEnrollmentManager","features":[223]},{"name":"CertificateExtension","features":[223]},{"name":"CertificateKeyUsages","features":[223]},{"name":"CertificateQuery","features":[223]},{"name":"CertificateRequestProperties","features":[223]},{"name":"CertificateStore","features":[223]},{"name":"CertificateStores","features":[223]},{"name":"ChainBuildingParameters","features":[223]},{"name":"ChainValidationParameters","features":[223]},{"name":"ChainValidationResult","features":[223]},{"name":"CmsAttachedSignature","features":[223]},{"name":"CmsDetachedSignature","features":[223]},{"name":"CmsSignerInfo","features":[223]},{"name":"CmsTimestampInfo","features":[223]},{"name":"EnrollKeyUsages","features":[223]},{"name":"ExportOption","features":[223]},{"name":"ICertificate","features":[223]},{"name":"ICertificate2","features":[223]},{"name":"ICertificate3","features":[223]},{"name":"ICertificateChain","features":[223]},{"name":"ICertificateEnrollmentManagerStatics","features":[223]},{"name":"ICertificateEnrollmentManagerStatics2","features":[223]},{"name":"ICertificateEnrollmentManagerStatics3","features":[223]},{"name":"ICertificateExtension","features":[223]},{"name":"ICertificateFactory","features":[223]},{"name":"ICertificateKeyUsages","features":[223]},{"name":"ICertificateQuery","features":[223]},{"name":"ICertificateQuery2","features":[223]},{"name":"ICertificateRequestProperties","features":[223]},{"name":"ICertificateRequestProperties2","features":[223]},{"name":"ICertificateRequestProperties3","features":[223]},{"name":"ICertificateRequestProperties4","features":[223]},{"name":"ICertificateStore","features":[223]},{"name":"ICertificateStore2","features":[223]},{"name":"ICertificateStoresStatics","features":[223]},{"name":"ICertificateStoresStatics2","features":[223]},{"name":"IChainBuildingParameters","features":[223]},{"name":"IChainValidationParameters","features":[223]},{"name":"ICmsAttachedSignature","features":[223]},{"name":"ICmsAttachedSignatureFactory","features":[223]},{"name":"ICmsAttachedSignatureStatics","features":[223]},{"name":"ICmsDetachedSignature","features":[223]},{"name":"ICmsDetachedSignatureFactory","features":[223]},{"name":"ICmsDetachedSignatureStatics","features":[223]},{"name":"ICmsSignerInfo","features":[223]},{"name":"ICmsTimestampInfo","features":[223]},{"name":"IKeyAlgorithmNamesStatics","features":[223]},{"name":"IKeyAlgorithmNamesStatics2","features":[223]},{"name":"IKeyAttestationHelperStatics","features":[223]},{"name":"IKeyAttestationHelperStatics2","features":[223]},{"name":"IKeyStorageProviderNamesStatics","features":[223]},{"name":"IKeyStorageProviderNamesStatics2","features":[223]},{"name":"IPfxImportParameters","features":[223]},{"name":"IStandardCertificateStoreNamesStatics","features":[223]},{"name":"ISubjectAlternativeNameInfo","features":[223]},{"name":"ISubjectAlternativeNameInfo2","features":[223]},{"name":"IUserCertificateEnrollmentManager","features":[223]},{"name":"IUserCertificateEnrollmentManager2","features":[223]},{"name":"IUserCertificateStore","features":[223]},{"name":"InstallOptions","features":[223]},{"name":"KeyAlgorithmNames","features":[223]},{"name":"KeyAttestationHelper","features":[223]},{"name":"KeyProtectionLevel","features":[223]},{"name":"KeySize","features":[223]},{"name":"KeyStorageProviderNames","features":[223]},{"name":"PfxImportParameters","features":[223]},{"name":"SignatureValidationResult","features":[223]},{"name":"StandardCertificateStoreNames","features":[223]},{"name":"SubjectAlternativeNameInfo","features":[223]},{"name":"UserCertificateEnrollmentManager","features":[223]},{"name":"UserCertificateStore","features":[223]}],"234":[{"name":"AsymmetricAlgorithmNames","features":[224]},{"name":"AsymmetricKeyAlgorithmProvider","features":[224]},{"name":"Capi1KdfTargetAlgorithm","features":[224]},{"name":"CryptographicEngine","features":[224]},{"name":"CryptographicHash","features":[224]},{"name":"CryptographicKey","features":[224]},{"name":"CryptographicPadding","features":[224]},{"name":"CryptographicPrivateKeyBlobType","features":[224]},{"name":"CryptographicPublicKeyBlobType","features":[224]},{"name":"EccCurveNames","features":[224]},{"name":"EncryptedAndAuthenticatedData","features":[224]},{"name":"HashAlgorithmNames","features":[224]},{"name":"HashAlgorithmProvider","features":[224]},{"name":"IAsymmetricAlgorithmNamesStatics","features":[224]},{"name":"IAsymmetricAlgorithmNamesStatics2","features":[224]},{"name":"IAsymmetricKeyAlgorithmProvider","features":[224]},{"name":"IAsymmetricKeyAlgorithmProvider2","features":[224]},{"name":"IAsymmetricKeyAlgorithmProviderStatics","features":[224]},{"name":"ICryptographicEngineStatics","features":[224]},{"name":"ICryptographicEngineStatics2","features":[224]},{"name":"ICryptographicKey","features":[224]},{"name":"IEccCurveNamesStatics","features":[224]},{"name":"IEncryptedAndAuthenticatedData","features":[224]},{"name":"IHashAlgorithmNamesStatics","features":[224]},{"name":"IHashAlgorithmProvider","features":[224]},{"name":"IHashAlgorithmProviderStatics","features":[224]},{"name":"IHashComputation","features":[224]},{"name":"IKeyDerivationAlgorithmNamesStatics","features":[224]},{"name":"IKeyDerivationAlgorithmNamesStatics2","features":[224]},{"name":"IKeyDerivationAlgorithmProvider","features":[224]},{"name":"IKeyDerivationAlgorithmProviderStatics","features":[224]},{"name":"IKeyDerivationParameters","features":[224]},{"name":"IKeyDerivationParameters2","features":[224]},{"name":"IKeyDerivationParametersStatics","features":[224]},{"name":"IKeyDerivationParametersStatics2","features":[224]},{"name":"IMacAlgorithmNamesStatics","features":[224]},{"name":"IMacAlgorithmProvider","features":[224]},{"name":"IMacAlgorithmProvider2","features":[224]},{"name":"IMacAlgorithmProviderStatics","features":[224]},{"name":"IPersistedKeyProviderStatics","features":[224]},{"name":"ISymmetricAlgorithmNamesStatics","features":[224]},{"name":"ISymmetricKeyAlgorithmProvider","features":[224]},{"name":"ISymmetricKeyAlgorithmProviderStatics","features":[224]},{"name":"KeyDerivationAlgorithmNames","features":[224]},{"name":"KeyDerivationAlgorithmProvider","features":[224]},{"name":"KeyDerivationParameters","features":[224]},{"name":"MacAlgorithmNames","features":[224]},{"name":"MacAlgorithmProvider","features":[224]},{"name":"PersistedKeyProvider","features":[224]},{"name":"SymmetricAlgorithmNames","features":[224]},{"name":"SymmetricKeyAlgorithmProvider","features":[224]}],"235":[{"name":"DataProtectionProvider","features":[225]},{"name":"IDataProtectionProvider","features":[225]},{"name":"IDataProtectionProviderFactory","features":[225]}],"236":[{"name":"IUserDataAvailabilityStateChangedEventArgs","features":[226]},{"name":"IUserDataBufferUnprotectResult","features":[226]},{"name":"IUserDataProtectionManager","features":[226]},{"name":"IUserDataProtectionManagerStatics","features":[226]},{"name":"IUserDataStorageItemProtectionInfo","features":[226]},{"name":"UserDataAvailability","features":[226]},{"name":"UserDataAvailabilityStateChangedEventArgs","features":[226]},{"name":"UserDataBufferUnprotectResult","features":[226]},{"name":"UserDataBufferUnprotectStatus","features":[226]},{"name":"UserDataProtectionManager","features":[226]},{"name":"UserDataStorageItemProtectionInfo","features":[226]},{"name":"UserDataStorageItemProtectionStatus","features":[226]}],"237":[{"name":"BufferProtectUnprotectResult","features":[227]},{"name":"DataProtectionInfo","features":[227]},{"name":"DataProtectionManager","features":[227]},{"name":"DataProtectionStatus","features":[227]},{"name":"EnforcementLevel","features":[227]},{"name":"EnterpriseDataContract","features":[227]},{"name":"FileProtectionInfo","features":[227]},{"name":"FileProtectionManager","features":[227]},{"name":"FileProtectionStatus","features":[227]},{"name":"FileRevocationManager","features":[227]},{"name":"FileUnprotectOptions","features":[227]},{"name":"IBufferProtectUnprotectResult","features":[227]},{"name":"IDataProtectionInfo","features":[227]},{"name":"IDataProtectionManagerStatics","features":[227]},{"name":"IFileProtectionInfo","features":[227]},{"name":"IFileProtectionInfo2","features":[227]},{"name":"IFileProtectionManagerStatics","features":[227]},{"name":"IFileProtectionManagerStatics2","features":[227]},{"name":"IFileProtectionManagerStatics3","features":[227]},{"name":"IFileRevocationManagerStatics","features":[227]},{"name":"IFileUnprotectOptions","features":[227]},{"name":"IFileUnprotectOptionsFactory","features":[227]},{"name":"IProtectedAccessResumedEventArgs","features":[227]},{"name":"IProtectedAccessSuspendingEventArgs","features":[227]},{"name":"IProtectedContainerExportResult","features":[227]},{"name":"IProtectedContainerImportResult","features":[227]},{"name":"IProtectedContentRevokedEventArgs","features":[227]},{"name":"IProtectedFileCreateResult","features":[227]},{"name":"IProtectionPolicyAuditInfo","features":[227]},{"name":"IProtectionPolicyAuditInfoFactory","features":[227]},{"name":"IProtectionPolicyManager","features":[227]},{"name":"IProtectionPolicyManager2","features":[227]},{"name":"IProtectionPolicyManagerStatics","features":[227]},{"name":"IProtectionPolicyManagerStatics2","features":[227]},{"name":"IProtectionPolicyManagerStatics3","features":[227]},{"name":"IProtectionPolicyManagerStatics4","features":[227]},{"name":"IThreadNetworkContext","features":[227]},{"name":"ProtectedAccessResumedEventArgs","features":[227]},{"name":"ProtectedAccessSuspendingEventArgs","features":[227]},{"name":"ProtectedContainerExportResult","features":[227]},{"name":"ProtectedContainerImportResult","features":[227]},{"name":"ProtectedContentRevokedEventArgs","features":[227]},{"name":"ProtectedFileCreateResult","features":[227]},{"name":"ProtectedImportExportStatus","features":[227]},{"name":"ProtectionPolicyAuditAction","features":[227]},{"name":"ProtectionPolicyAuditInfo","features":[227]},{"name":"ProtectionPolicyEvaluationResult","features":[227]},{"name":"ProtectionPolicyManager","features":[227]},{"name":"ProtectionPolicyRequestAccessBehavior","features":[227]},{"name":"ThreadNetworkContext","features":[227]}],"238":[{"name":"EasClientDeviceInformation","features":[228]},{"name":"EasClientSecurityPolicy","features":[228]},{"name":"EasComplianceResults","features":[228]},{"name":"EasContract","features":[228]},{"name":"EasDisallowConvenienceLogonResult","features":[228]},{"name":"EasEncryptionProviderType","features":[228]},{"name":"EasMaxInactivityTimeLockResult","features":[228]},{"name":"EasMaxPasswordFailedAttemptsResult","features":[228]},{"name":"EasMinPasswordComplexCharactersResult","features":[228]},{"name":"EasMinPasswordLengthResult","features":[228]},{"name":"EasPasswordExpirationResult","features":[228]},{"name":"EasPasswordHistoryResult","features":[228]},{"name":"EasRequireEncryptionResult","features":[228]},{"name":"IEasClientDeviceInformation","features":[228]},{"name":"IEasClientDeviceInformation2","features":[228]},{"name":"IEasClientSecurityPolicy","features":[228]},{"name":"IEasComplianceResults","features":[228]},{"name":"IEasComplianceResults2","features":[228]}],"239":[{"name":"HostMessageReceivedCallback","features":[36,229]},{"name":"IIsolatedWindowsEnvironment","features":[229]},{"name":"IIsolatedWindowsEnvironment2","features":[229]},{"name":"IIsolatedWindowsEnvironment3","features":[229]},{"name":"IIsolatedWindowsEnvironment4","features":[229]},{"name":"IIsolatedWindowsEnvironmentCreateResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentCreateResult2","features":[229]},{"name":"IIsolatedWindowsEnvironmentFactory","features":[229]},{"name":"IIsolatedWindowsEnvironmentFile","features":[229]},{"name":"IIsolatedWindowsEnvironmentFile2","features":[229]},{"name":"IIsolatedWindowsEnvironmentHostStatics","features":[229]},{"name":"IIsolatedWindowsEnvironmentLaunchFileResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentOptions","features":[229]},{"name":"IIsolatedWindowsEnvironmentOptions2","features":[229]},{"name":"IIsolatedWindowsEnvironmentOptions3","features":[229]},{"name":"IIsolatedWindowsEnvironmentOwnerRegistrationData","features":[229]},{"name":"IIsolatedWindowsEnvironmentOwnerRegistrationResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentOwnerRegistrationStatics","features":[229]},{"name":"IIsolatedWindowsEnvironmentPostMessageResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentProcess","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFileRequestOptions","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFileResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFolderRequestOptions","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFolderResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentStartProcessResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentTelemetryParameters","features":[229]},{"name":"IIsolatedWindowsEnvironmentUserInfo","features":[229]},{"name":"IIsolatedWindowsEnvironmentUserInfo2","features":[229]},{"name":"IIsolatedWindowsHostMessengerStatics","features":[229]},{"name":"IIsolatedWindowsHostMessengerStatics2","features":[229]},{"name":"IsolatedWindowsEnvironment","features":[229]},{"name":"IsolatedWindowsEnvironmentActivator","features":[229]},{"name":"IsolatedWindowsEnvironmentAllowedClipboardFormats","features":[229]},{"name":"IsolatedWindowsEnvironmentAvailablePrinters","features":[229]},{"name":"IsolatedWindowsEnvironmentClipboardCopyPasteDirections","features":[229]},{"name":"IsolatedWindowsEnvironmentContract","features":[229]},{"name":"IsolatedWindowsEnvironmentCreateProgress","features":[229]},{"name":"IsolatedWindowsEnvironmentCreateResult","features":[229]},{"name":"IsolatedWindowsEnvironmentCreateStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentCreationPriority","features":[229]},{"name":"IsolatedWindowsEnvironmentFile","features":[229]},{"name":"IsolatedWindowsEnvironmentHost","features":[229]},{"name":"IsolatedWindowsEnvironmentHostError","features":[229]},{"name":"IsolatedWindowsEnvironmentLaunchFileResult","features":[229]},{"name":"IsolatedWindowsEnvironmentLaunchFileStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentOptions","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistration","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistrationData","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistrationResult","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistrationStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentPostMessageResult","features":[229]},{"name":"IsolatedWindowsEnvironmentPostMessageStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentProcess","features":[229]},{"name":"IsolatedWindowsEnvironmentProcessState","features":[229]},{"name":"IsolatedWindowsEnvironmentProgressState","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFileRequestOptions","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFileResult","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFileStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFolderRequestOptions","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFolderResult","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFolderStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentSignInProgress","features":[229]},{"name":"IsolatedWindowsEnvironmentStartProcessResult","features":[229]},{"name":"IsolatedWindowsEnvironmentStartProcessStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentTelemetryParameters","features":[229]},{"name":"IsolatedWindowsEnvironmentUserInfo","features":[229]},{"name":"IsolatedWindowsHostMessenger","features":[229]},{"name":"MessageReceivedCallback","features":[36,229]}],"241":[{"name":"EnhancedWaypoint","features":[230]},{"name":"GuidanceContract","features":[230]},{"name":"IEnhancedWaypoint","features":[230]},{"name":"IEnhancedWaypointFactory","features":[230]},{"name":"IManeuverWarning","features":[230]},{"name":"IMapAddress","features":[230]},{"name":"IMapAddress2","features":[230]},{"name":"IMapLocation","features":[230]},{"name":"IMapLocationFinderResult","features":[230]},{"name":"IMapLocationFinderStatics","features":[230]},{"name":"IMapLocationFinderStatics2","features":[230]},{"name":"IMapManagerStatics","features":[230]},{"name":"IMapRoute","features":[230]},{"name":"IMapRoute2","features":[230]},{"name":"IMapRoute3","features":[230]},{"name":"IMapRoute4","features":[230]},{"name":"IMapRouteDrivingOptions","features":[230]},{"name":"IMapRouteDrivingOptions2","features":[230]},{"name":"IMapRouteFinderResult","features":[230]},{"name":"IMapRouteFinderResult2","features":[230]},{"name":"IMapRouteFinderStatics","features":[230]},{"name":"IMapRouteFinderStatics2","features":[230]},{"name":"IMapRouteFinderStatics3","features":[230]},{"name":"IMapRouteLeg","features":[230]},{"name":"IMapRouteLeg2","features":[230]},{"name":"IMapRouteManeuver","features":[230]},{"name":"IMapRouteManeuver2","features":[230]},{"name":"IMapRouteManeuver3","features":[230]},{"name":"IMapServiceStatics","features":[230]},{"name":"IMapServiceStatics2","features":[230]},{"name":"IMapServiceStatics3","features":[230]},{"name":"IMapServiceStatics4","features":[230]},{"name":"IPlaceInfo","features":[230]},{"name":"IPlaceInfoCreateOptions","features":[230]},{"name":"IPlaceInfoStatics","features":[230]},{"name":"IPlaceInfoStatics2","features":[230]},{"name":"LocalSearchContract","features":[230]},{"name":"ManeuverWarning","features":[230]},{"name":"ManeuverWarningKind","features":[230]},{"name":"ManeuverWarningSeverity","features":[230]},{"name":"MapAddress","features":[230]},{"name":"MapLocation","features":[230]},{"name":"MapLocationDesiredAccuracy","features":[230]},{"name":"MapLocationFinder","features":[230]},{"name":"MapLocationFinderResult","features":[230]},{"name":"MapLocationFinderStatus","features":[230]},{"name":"MapManager","features":[230]},{"name":"MapManeuverNotices","features":[230]},{"name":"MapRoute","features":[230]},{"name":"MapRouteDrivingOptions","features":[230]},{"name":"MapRouteFinder","features":[230]},{"name":"MapRouteFinderResult","features":[230]},{"name":"MapRouteFinderStatus","features":[230]},{"name":"MapRouteLeg","features":[230]},{"name":"MapRouteManeuver","features":[230]},{"name":"MapRouteManeuverKind","features":[230]},{"name":"MapRouteOptimization","features":[230]},{"name":"MapRouteRestrictions","features":[230]},{"name":"MapService","features":[230]},{"name":"MapServiceDataUsagePreference","features":[230]},{"name":"PlaceInfo","features":[230]},{"name":"PlaceInfoCreateOptions","features":[230]},{"name":"TrafficCongestion","features":[230]},{"name":"WaypointKind","features":[230]}],"242":[{"name":"GuidanceAudioMeasurementSystem","features":[231]},{"name":"GuidanceAudioNotificationKind","features":[231]},{"name":"GuidanceAudioNotificationRequestedEventArgs","features":[231]},{"name":"GuidanceAudioNotifications","features":[231]},{"name":"GuidanceLaneInfo","features":[231]},{"name":"GuidanceLaneMarkers","features":[231]},{"name":"GuidanceManeuver","features":[231]},{"name":"GuidanceManeuverKind","features":[231]},{"name":"GuidanceMapMatchedCoordinate","features":[231]},{"name":"GuidanceMode","features":[231]},{"name":"GuidanceNavigator","features":[231]},{"name":"GuidanceReroutedEventArgs","features":[231]},{"name":"GuidanceRoadSegment","features":[231]},{"name":"GuidanceRoadSignpost","features":[231]},{"name":"GuidanceRoute","features":[231]},{"name":"GuidanceTelemetryCollector","features":[231]},{"name":"GuidanceUpdatedEventArgs","features":[231]},{"name":"IGuidanceAudioNotificationRequestedEventArgs","features":[231]},{"name":"IGuidanceLaneInfo","features":[231]},{"name":"IGuidanceManeuver","features":[231]},{"name":"IGuidanceMapMatchedCoordinate","features":[231]},{"name":"IGuidanceNavigator","features":[231]},{"name":"IGuidanceNavigator2","features":[231]},{"name":"IGuidanceNavigatorStatics","features":[231]},{"name":"IGuidanceNavigatorStatics2","features":[231]},{"name":"IGuidanceReroutedEventArgs","features":[231]},{"name":"IGuidanceRoadSegment","features":[231]},{"name":"IGuidanceRoadSegment2","features":[231]},{"name":"IGuidanceRoadSignpost","features":[231]},{"name":"IGuidanceRoute","features":[231]},{"name":"IGuidanceRouteStatics","features":[231]},{"name":"IGuidanceTelemetryCollector","features":[231]},{"name":"IGuidanceTelemetryCollectorStatics","features":[231]},{"name":"IGuidanceUpdatedEventArgs","features":[231]}],"243":[{"name":"ILocalCategoriesStatics","features":[232]},{"name":"ILocalLocation","features":[232]},{"name":"ILocalLocation2","features":[232]},{"name":"ILocalLocationFinderResult","features":[232]},{"name":"ILocalLocationFinderStatics","features":[232]},{"name":"ILocalLocationHoursOfOperationItem","features":[232]},{"name":"ILocalLocationRatingInfo","features":[232]},{"name":"IPlaceInfoHelperStatics","features":[232]},{"name":"LocalCategories","features":[232]},{"name":"LocalLocation","features":[232]},{"name":"LocalLocationFinder","features":[232]},{"name":"LocalLocationFinderResult","features":[232]},{"name":"LocalLocationFinderStatus","features":[232]},{"name":"LocalLocationHoursOfOperationItem","features":[232]},{"name":"LocalLocationRatingInfo","features":[232]},{"name":"PlaceInfoHelper","features":[232]}],"244":[{"name":"IOfflineMapPackage","features":[233]},{"name":"IOfflineMapPackageQueryResult","features":[233]},{"name":"IOfflineMapPackageStartDownloadResult","features":[233]},{"name":"IOfflineMapPackageStatics","features":[233]},{"name":"OfflineMapPackage","features":[233]},{"name":"OfflineMapPackageQueryResult","features":[233]},{"name":"OfflineMapPackageQueryStatus","features":[233]},{"name":"OfflineMapPackageStartDownloadResult","features":[233]},{"name":"OfflineMapPackageStartDownloadStatus","features":[233]},{"name":"OfflineMapPackageStatus","features":[233]}],"245":[{"name":"IStoreAcquireLicenseResult","features":[234]},{"name":"IStoreAppLicense","features":[234]},{"name":"IStoreAppLicense2","features":[234]},{"name":"IStoreAvailability","features":[234]},{"name":"IStoreCanAcquireLicenseResult","features":[234]},{"name":"IStoreCollectionData","features":[234]},{"name":"IStoreConsumableResult","features":[234]},{"name":"IStoreContext","features":[234]},{"name":"IStoreContext2","features":[234]},{"name":"IStoreContext3","features":[234]},{"name":"IStoreContext4","features":[234]},{"name":"IStoreContext5","features":[234]},{"name":"IStoreContextStatics","features":[234]},{"name":"IStoreImage","features":[234]},{"name":"IStoreLicense","features":[234]},{"name":"IStorePackageInstallOptions","features":[234]},{"name":"IStorePackageLicense","features":[234]},{"name":"IStorePackageUpdate","features":[234]},{"name":"IStorePackageUpdateResult","features":[234]},{"name":"IStorePackageUpdateResult2","features":[234]},{"name":"IStorePrice","features":[234]},{"name":"IStorePrice2","features":[234]},{"name":"IStoreProduct","features":[234]},{"name":"IStoreProductOptions","features":[234]},{"name":"IStoreProductPagedQueryResult","features":[234]},{"name":"IStoreProductQueryResult","features":[234]},{"name":"IStoreProductResult","features":[234]},{"name":"IStorePurchaseProperties","features":[234]},{"name":"IStorePurchasePropertiesFactory","features":[234]},{"name":"IStorePurchaseResult","features":[234]},{"name":"IStoreQueueItem","features":[234]},{"name":"IStoreQueueItem2","features":[234]},{"name":"IStoreQueueItemCompletedEventArgs","features":[234]},{"name":"IStoreQueueItemStatus","features":[234]},{"name":"IStoreRateAndReviewResult","features":[234]},{"name":"IStoreRequestHelperStatics","features":[234]},{"name":"IStoreSendRequestResult","features":[234]},{"name":"IStoreSendRequestResult2","features":[234]},{"name":"IStoreSku","features":[234]},{"name":"IStoreSubscriptionInfo","features":[234]},{"name":"IStoreUninstallStorePackageResult","features":[234]},{"name":"IStoreVideo","features":[234]},{"name":"StoreAcquireLicenseResult","features":[234]},{"name":"StoreAppLicense","features":[234]},{"name":"StoreAvailability","features":[234]},{"name":"StoreCanAcquireLicenseResult","features":[234]},{"name":"StoreCanLicenseStatus","features":[234]},{"name":"StoreCollectionData","features":[234]},{"name":"StoreConsumableResult","features":[234]},{"name":"StoreConsumableStatus","features":[234]},{"name":"StoreContext","features":[234]},{"name":"StoreContract","features":[234]},{"name":"StoreDurationUnit","features":[234]},{"name":"StoreImage","features":[234]},{"name":"StoreLicense","features":[234]},{"name":"StorePackageInstallOptions","features":[234]},{"name":"StorePackageLicense","features":[234]},{"name":"StorePackageUpdate","features":[234]},{"name":"StorePackageUpdateResult","features":[234]},{"name":"StorePackageUpdateState","features":[234]},{"name":"StorePackageUpdateStatus","features":[234]},{"name":"StorePrice","features":[234]},{"name":"StoreProduct","features":[234]},{"name":"StoreProductOptions","features":[234]},{"name":"StoreProductPagedQueryResult","features":[234]},{"name":"StoreProductQueryResult","features":[234]},{"name":"StoreProductResult","features":[234]},{"name":"StorePurchaseProperties","features":[234]},{"name":"StorePurchaseResult","features":[234]},{"name":"StorePurchaseStatus","features":[234]},{"name":"StoreQueueItem","features":[234]},{"name":"StoreQueueItemCompletedEventArgs","features":[234]},{"name":"StoreQueueItemExtendedState","features":[234]},{"name":"StoreQueueItemKind","features":[234]},{"name":"StoreQueueItemState","features":[234]},{"name":"StoreQueueItemStatus","features":[234]},{"name":"StoreRateAndReviewResult","features":[234]},{"name":"StoreRateAndReviewStatus","features":[234]},{"name":"StoreRequestHelper","features":[234]},{"name":"StoreSendRequestResult","features":[234]},{"name":"StoreSku","features":[234]},{"name":"StoreSubscriptionInfo","features":[234]},{"name":"StoreUninstallStorePackageResult","features":[234]},{"name":"StoreUninstallStorePackageStatus","features":[234]},{"name":"StoreVideo","features":[234]}],"246":[{"name":"ITargetedContentAction","features":[235]},{"name":"ITargetedContentAvailabilityChangedEventArgs","features":[235]},{"name":"ITargetedContentChangedEventArgs","features":[235]},{"name":"ITargetedContentCollection","features":[235]},{"name":"ITargetedContentContainer","features":[235]},{"name":"ITargetedContentContainerStatics","features":[235]},{"name":"ITargetedContentImage","features":[235]},{"name":"ITargetedContentItem","features":[235]},{"name":"ITargetedContentItemState","features":[235]},{"name":"ITargetedContentObject","features":[235]},{"name":"ITargetedContentStateChangedEventArgs","features":[235]},{"name":"ITargetedContentSubscription","features":[235]},{"name":"ITargetedContentSubscriptionOptions","features":[235]},{"name":"ITargetedContentSubscriptionStatics","features":[235]},{"name":"ITargetedContentValue","features":[235]},{"name":"TargetedContentAction","features":[235]},{"name":"TargetedContentAppInstallationState","features":[235]},{"name":"TargetedContentAvailability","features":[235]},{"name":"TargetedContentAvailabilityChangedEventArgs","features":[235]},{"name":"TargetedContentChangedEventArgs","features":[235]},{"name":"TargetedContentCollection","features":[235]},{"name":"TargetedContentContainer","features":[235]},{"name":"TargetedContentContract","features":[235]},{"name":"TargetedContentFile","features":[235,70]},{"name":"TargetedContentImage","features":[235]},{"name":"TargetedContentInteraction","features":[235]},{"name":"TargetedContentItem","features":[235]},{"name":"TargetedContentItemState","features":[235]},{"name":"TargetedContentObject","features":[235]},{"name":"TargetedContentObjectKind","features":[235]},{"name":"TargetedContentStateChangedEventArgs","features":[235]},{"name":"TargetedContentSubscription","features":[235]},{"name":"TargetedContentSubscriptionOptions","features":[235]},{"name":"TargetedContentValue","features":[235]},{"name":"TargetedContentValueKind","features":[235]}],"247":[{"name":"AppDataPaths","features":[236]},{"name":"ApplicationData","features":[236]},{"name":"ApplicationDataCompositeValue","features":[36,236]},{"name":"ApplicationDataContainer","features":[236]},{"name":"ApplicationDataContainerSettings","features":[36,236]},{"name":"ApplicationDataCreateDisposition","features":[236]},{"name":"ApplicationDataLocality","features":[236]},{"name":"ApplicationDataSetVersionHandler","features":[236]},{"name":"CachedFileManager","features":[236]},{"name":"CreationCollisionOption","features":[236]},{"name":"DownloadsFolder","features":[236]},{"name":"FileAccessMode","features":[236]},{"name":"FileAttributes","features":[236]},{"name":"FileIO","features":[236]},{"name":"IAppDataPaths","features":[236]},{"name":"IAppDataPathsStatics","features":[236]},{"name":"IApplicationData","features":[236]},{"name":"IApplicationData2","features":[236]},{"name":"IApplicationData3","features":[236]},{"name":"IApplicationDataContainer","features":[236]},{"name":"IApplicationDataStatics","features":[236]},{"name":"IApplicationDataStatics2","features":[236]},{"name":"ICachedFileManagerStatics","features":[236]},{"name":"IDownloadsFolderStatics","features":[236]},{"name":"IDownloadsFolderStatics2","features":[236]},{"name":"IFileIOStatics","features":[236]},{"name":"IKnownFoldersCameraRollStatics","features":[236]},{"name":"IKnownFoldersPlaylistsStatics","features":[236]},{"name":"IKnownFoldersSavedPicturesStatics","features":[236]},{"name":"IKnownFoldersStatics","features":[236]},{"name":"IKnownFoldersStatics2","features":[236]},{"name":"IKnownFoldersStatics3","features":[236]},{"name":"IKnownFoldersStatics4","features":[236]},{"name":"IPathIOStatics","features":[236]},{"name":"ISetVersionDeferral","features":[236]},{"name":"ISetVersionRequest","features":[236]},{"name":"IStorageFile","features":[236]},{"name":"IStorageFile2","features":[236]},{"name":"IStorageFilePropertiesWithAvailability","features":[236]},{"name":"IStorageFileStatics","features":[236]},{"name":"IStorageFileStatics2","features":[236]},{"name":"IStorageFolder","features":[236]},{"name":"IStorageFolder2","features":[236]},{"name":"IStorageFolder3","features":[236]},{"name":"IStorageFolderStatics","features":[236]},{"name":"IStorageFolderStatics2","features":[236]},{"name":"IStorageItem","features":[236]},{"name":"IStorageItem2","features":[236]},{"name":"IStorageItemProperties","features":[236]},{"name":"IStorageItemProperties2","features":[236]},{"name":"IStorageItemPropertiesWithProvider","features":[236]},{"name":"IStorageLibrary","features":[236]},{"name":"IStorageLibrary2","features":[236]},{"name":"IStorageLibrary3","features":[236]},{"name":"IStorageLibraryChange","features":[236]},{"name":"IStorageLibraryChangeReader","features":[236]},{"name":"IStorageLibraryChangeReader2","features":[236]},{"name":"IStorageLibraryChangeTracker","features":[236]},{"name":"IStorageLibraryChangeTracker2","features":[236]},{"name":"IStorageLibraryChangeTrackerOptions","features":[236]},{"name":"IStorageLibraryLastChangeId","features":[236]},{"name":"IStorageLibraryLastChangeIdStatics","features":[236]},{"name":"IStorageLibraryStatics","features":[236]},{"name":"IStorageLibraryStatics2","features":[236]},{"name":"IStorageProvider","features":[236]},{"name":"IStorageProvider2","features":[236]},{"name":"IStorageStreamTransaction","features":[236]},{"name":"IStreamedFileDataRequest","features":[236]},{"name":"ISystemAudioProperties","features":[236]},{"name":"ISystemDataPaths","features":[236]},{"name":"ISystemDataPathsStatics","features":[236]},{"name":"ISystemGPSProperties","features":[236]},{"name":"ISystemImageProperties","features":[236]},{"name":"ISystemMediaProperties","features":[236]},{"name":"ISystemMusicProperties","features":[236]},{"name":"ISystemPhotoProperties","features":[236]},{"name":"ISystemProperties","features":[236]},{"name":"ISystemVideoProperties","features":[236]},{"name":"IUserDataPaths","features":[236]},{"name":"IUserDataPathsStatics","features":[236]},{"name":"KnownFolderId","features":[236]},{"name":"KnownFolders","features":[236]},{"name":"KnownFoldersAccessStatus","features":[236]},{"name":"KnownLibraryId","features":[236]},{"name":"NameCollisionOption","features":[236]},{"name":"PathIO","features":[236]},{"name":"SetVersionDeferral","features":[236]},{"name":"SetVersionRequest","features":[236]},{"name":"StorageDeleteOption","features":[236]},{"name":"StorageFile","features":[236]},{"name":"StorageFolder","features":[236]},{"name":"StorageItemTypes","features":[236]},{"name":"StorageLibrary","features":[236]},{"name":"StorageLibraryChange","features":[236]},{"name":"StorageLibraryChangeReader","features":[236]},{"name":"StorageLibraryChangeTracker","features":[236]},{"name":"StorageLibraryChangeTrackerOptions","features":[236]},{"name":"StorageLibraryChangeType","features":[236]},{"name":"StorageLibraryLastChangeId","features":[236]},{"name":"StorageOpenOptions","features":[236]},{"name":"StorageProvider","features":[236]},{"name":"StorageStreamTransaction","features":[236]},{"name":"StreamedFileDataRequest","features":[70]},{"name":"StreamedFileDataRequestedHandler","features":[70]},{"name":"StreamedFileFailureMode","features":[236]},{"name":"SystemAudioProperties","features":[236]},{"name":"SystemDataPaths","features":[236]},{"name":"SystemGPSProperties","features":[236]},{"name":"SystemImageProperties","features":[236]},{"name":"SystemMediaProperties","features":[236]},{"name":"SystemMusicProperties","features":[236]},{"name":"SystemPhotoProperties","features":[236]},{"name":"SystemProperties","features":[236]},{"name":"SystemVideoProperties","features":[236]},{"name":"UserDataPaths","features":[236]}],"248":[{"name":"AccessCacheOptions","features":[237]},{"name":"AccessListEntry","features":[237]},{"name":"AccessListEntryView","features":[36,237]},{"name":"IItemRemovedEventArgs","features":[237]},{"name":"IStorageApplicationPermissionsStatics","features":[237]},{"name":"IStorageApplicationPermissionsStatics2","features":[237]},{"name":"IStorageItemAccessList","features":[237]},{"name":"IStorageItemMostRecentlyUsedList","features":[237]},{"name":"IStorageItemMostRecentlyUsedList2","features":[237]},{"name":"ItemRemovedEventArgs","features":[237]},{"name":"RecentStorageItemVisibility","features":[237]},{"name":"StorageApplicationPermissions","features":[237]},{"name":"StorageItemAccessList","features":[237]},{"name":"StorageItemMostRecentlyUsedList","features":[237]}],"249":[{"name":"FileInformation","features":[238]},{"name":"FileInformationFactory","features":[238]},{"name":"FolderInformation","features":[238]},{"name":"IFileInformationFactory","features":[238]},{"name":"IFileInformationFactoryFactory","features":[238]},{"name":"IStorageItemInformation","features":[238]}],"250":[{"name":"CompressAlgorithm","features":[239]},{"name":"Compressor","features":[239]},{"name":"Decompressor","features":[239]},{"name":"ICompressor","features":[239]},{"name":"ICompressorFactory","features":[239]},{"name":"IDecompressor","features":[239]},{"name":"IDecompressorFactory","features":[239]}],"251":[{"name":"BasicProperties","features":[240]},{"name":"DocumentProperties","features":[240]},{"name":"GeotagHelper","features":[240]},{"name":"IBasicProperties","features":[240]},{"name":"IDocumentProperties","features":[240]},{"name":"IGeotagHelperStatics","features":[240]},{"name":"IImageProperties","features":[240]},{"name":"IMusicProperties","features":[240]},{"name":"IStorageItemContentProperties","features":[240]},{"name":"IStorageItemExtraProperties","features":[240]},{"name":"IThumbnailProperties","features":[240]},{"name":"IVideoProperties","features":[240]},{"name":"ImageProperties","features":[240]},{"name":"MusicProperties","features":[240]},{"name":"PhotoOrientation","features":[240]},{"name":"PropertyPrefetchOptions","features":[240]},{"name":"StorageItemContentProperties","features":[240]},{"name":"StorageItemThumbnail","features":[240,70]},{"name":"ThumbnailMode","features":[240]},{"name":"ThumbnailOptions","features":[240]},{"name":"ThumbnailType","features":[240]},{"name":"VideoOrientation","features":[240]},{"name":"VideoProperties","features":[240]}],"252":[{"name":"FileExtensionVector","features":[36,241]},{"name":"FileOpenPicker","features":[241]},{"name":"FilePickerFileTypesOrderedMap","features":[36,241]},{"name":"FilePickerSelectedFilesArray","features":[36,241]},{"name":"FileSavePicker","features":[241]},{"name":"FolderPicker","features":[241]},{"name":"IFileOpenPicker","features":[241]},{"name":"IFileOpenPicker2","features":[241]},{"name":"IFileOpenPicker3","features":[241]},{"name":"IFileOpenPickerStatics","features":[241]},{"name":"IFileOpenPickerStatics2","features":[241]},{"name":"IFileOpenPickerWithOperationId","features":[241]},{"name":"IFileSavePicker","features":[241]},{"name":"IFileSavePicker2","features":[241]},{"name":"IFileSavePicker3","features":[241]},{"name":"IFileSavePicker4","features":[241]},{"name":"IFileSavePickerStatics","features":[241]},{"name":"IFolderPicker","features":[241]},{"name":"IFolderPicker2","features":[241]},{"name":"IFolderPicker3","features":[241]},{"name":"IFolderPickerStatics","features":[241]},{"name":"PickerLocationId","features":[241]},{"name":"PickerViewMode","features":[241]}],"253":[{"name":"AddFileResult","features":[242]},{"name":"FileOpenPickerUI","features":[242]},{"name":"FileRemovedEventArgs","features":[242]},{"name":"FileSavePickerUI","features":[242]},{"name":"FileSelectionMode","features":[242]},{"name":"IFileOpenPickerUI","features":[242]},{"name":"IFileRemovedEventArgs","features":[242]},{"name":"IFileSavePickerUI","features":[242]},{"name":"IPickerClosingDeferral","features":[242]},{"name":"IPickerClosingEventArgs","features":[242]},{"name":"IPickerClosingOperation","features":[242]},{"name":"ITargetFileRequest","features":[242]},{"name":"ITargetFileRequestDeferral","features":[242]},{"name":"ITargetFileRequestedEventArgs","features":[242]},{"name":"PickerClosingDeferral","features":[242]},{"name":"PickerClosingEventArgs","features":[242]},{"name":"PickerClosingOperation","features":[242]},{"name":"SetFileNameResult","features":[242]},{"name":"TargetFileRequest","features":[242]},{"name":"TargetFileRequestDeferral","features":[242]},{"name":"TargetFileRequestedEventArgs","features":[242]}],"254":[{"name":"CachedFileOptions","features":[243]},{"name":"CachedFileTarget","features":[243]},{"name":"CachedFileUpdater","features":[243]},{"name":"CachedFileUpdaterUI","features":[243]},{"name":"CloudFilesContract","features":[243]},{"name":"FileUpdateRequest","features":[243]},{"name":"FileUpdateRequestDeferral","features":[243]},{"name":"FileUpdateRequestedEventArgs","features":[243]},{"name":"FileUpdateStatus","features":[243]},{"name":"ICachedFileUpdaterStatics","features":[243]},{"name":"ICachedFileUpdaterUI","features":[243]},{"name":"ICachedFileUpdaterUI2","features":[243]},{"name":"IFileUpdateRequest","features":[243]},{"name":"IFileUpdateRequest2","features":[243]},{"name":"IFileUpdateRequestDeferral","features":[243]},{"name":"IFileUpdateRequestedEventArgs","features":[243]},{"name":"IStorageProviderFileTypeInfo","features":[243]},{"name":"IStorageProviderFileTypeInfoFactory","features":[243]},{"name":"IStorageProviderGetContentInfoForPathResult","features":[243]},{"name":"IStorageProviderGetPathForContentUriResult","features":[243]},{"name":"IStorageProviderItemPropertiesStatics","features":[243]},{"name":"IStorageProviderItemProperty","features":[243]},{"name":"IStorageProviderItemPropertyDefinition","features":[243]},{"name":"IStorageProviderItemPropertySource","features":[243]},{"name":"IStorageProviderKnownFolderEntry","features":[243]},{"name":"IStorageProviderKnownFolderSyncInfo","features":[243]},{"name":"IStorageProviderKnownFolderSyncInfoSource","features":[243]},{"name":"IStorageProviderKnownFolderSyncInfoSourceFactory","features":[243]},{"name":"IStorageProviderKnownFolderSyncRequestArgs","features":[243]},{"name":"IStorageProviderMoreInfoUI","features":[243]},{"name":"IStorageProviderPropertyCapabilities","features":[243]},{"name":"IStorageProviderQuotaUI","features":[243]},{"name":"IStorageProviderStatusUI","features":[243]},{"name":"IStorageProviderStatusUISource","features":[243]},{"name":"IStorageProviderStatusUISourceFactory","features":[243]},{"name":"IStorageProviderSyncRootInfo","features":[243]},{"name":"IStorageProviderSyncRootInfo2","features":[243]},{"name":"IStorageProviderSyncRootInfo3","features":[243]},{"name":"IStorageProviderSyncRootManagerStatics","features":[243]},{"name":"IStorageProviderSyncRootManagerStatics2","features":[243]},{"name":"IStorageProviderUICommand","features":[243]},{"name":"IStorageProviderUriSource","features":[243]},{"name":"ReadActivationMode","features":[243]},{"name":"StorageProviderFileTypeInfo","features":[243]},{"name":"StorageProviderGetContentInfoForPathResult","features":[243]},{"name":"StorageProviderGetPathForContentUriResult","features":[243]},{"name":"StorageProviderHardlinkPolicy","features":[243]},{"name":"StorageProviderHydrationPolicy","features":[243]},{"name":"StorageProviderHydrationPolicyModifier","features":[243]},{"name":"StorageProviderInSyncPolicy","features":[243]},{"name":"StorageProviderItemProperties","features":[243]},{"name":"StorageProviderItemProperty","features":[243]},{"name":"StorageProviderItemPropertyDefinition","features":[243]},{"name":"StorageProviderKnownFolderEntry","features":[243]},{"name":"StorageProviderKnownFolderSyncInfo","features":[243]},{"name":"StorageProviderKnownFolderSyncRequestArgs","features":[243]},{"name":"StorageProviderKnownFolderSyncRequestedHandler","features":[243]},{"name":"StorageProviderKnownFolderSyncStatus","features":[243]},{"name":"StorageProviderMoreInfoUI","features":[243]},{"name":"StorageProviderPopulationPolicy","features":[243]},{"name":"StorageProviderProtectionMode","features":[243]},{"name":"StorageProviderQuotaUI","features":[243]},{"name":"StorageProviderState","features":[243]},{"name":"StorageProviderStatusUI","features":[243]},{"name":"StorageProviderSyncRootInfo","features":[243]},{"name":"StorageProviderSyncRootManager","features":[243]},{"name":"StorageProviderUICommandState","features":[243]},{"name":"StorageProviderUriSourceStatus","features":[243]},{"name":"UIStatus","features":[243]},{"name":"WriteActivationMode","features":[243]}],"255":[{"name":"CommonFileQuery","features":[244]},{"name":"CommonFolderQuery","features":[244]},{"name":"ContentIndexer","features":[244]},{"name":"ContentIndexerQuery","features":[244]},{"name":"DateStackOption","features":[244]},{"name":"FolderDepth","features":[244]},{"name":"IContentIndexer","features":[244]},{"name":"IContentIndexerQuery","features":[244]},{"name":"IContentIndexerQueryOperations","features":[244]},{"name":"IContentIndexerStatics","features":[244]},{"name":"IIndexableContent","features":[244]},{"name":"IQueryOptions","features":[244]},{"name":"IQueryOptionsFactory","features":[244]},{"name":"IQueryOptionsWithProviderFilter","features":[244]},{"name":"IStorageFileQueryResult","features":[244]},{"name":"IStorageFileQueryResult2","features":[244]},{"name":"IStorageFolderQueryOperations","features":[244]},{"name":"IStorageFolderQueryResult","features":[244]},{"name":"IStorageItemQueryResult","features":[244]},{"name":"IStorageLibraryChangeTrackerTriggerDetails","features":[244]},{"name":"IStorageLibraryContentChangedTriggerDetails","features":[244]},{"name":"IStorageQueryResultBase","features":[244]},{"name":"IValueAndLanguage","features":[244]},{"name":"IndexableContent","features":[244]},{"name":"IndexedState","features":[244]},{"name":"IndexerOption","features":[244]},{"name":"QueryOptions","features":[244]},{"name":"SortEntry","features":[244]},{"name":"SortEntryVector","features":[36,244]},{"name":"StorageFileQueryResult","features":[244]},{"name":"StorageFolderQueryResult","features":[244]},{"name":"StorageItemQueryResult","features":[244]},{"name":"StorageLibraryChangeTrackerTriggerDetails","features":[244]},{"name":"StorageLibraryContentChangedTriggerDetails","features":[244]},{"name":"ValueAndLanguage","features":[244]}],"256":[{"name":"Buffer","features":[70]},{"name":"ByteOrder","features":[70]},{"name":"DataReader","features":[70]},{"name":"DataReaderLoadOperation","features":[76,70]},{"name":"DataWriter","features":[70]},{"name":"DataWriterStoreOperation","features":[76,70]},{"name":"FileInputStream","features":[70]},{"name":"FileOpenDisposition","features":[70]},{"name":"FileOutputStream","features":[70]},{"name":"FileRandomAccessStream","features":[70]},{"name":"IBuffer","features":[70]},{"name":"IBufferFactory","features":[70]},{"name":"IBufferStatics","features":[70]},{"name":"IContentTypeProvider","features":[70]},{"name":"IDataReader","features":[70]},{"name":"IDataReaderFactory","features":[70]},{"name":"IDataReaderStatics","features":[70]},{"name":"IDataWriter","features":[70]},{"name":"IDataWriterFactory","features":[70]},{"name":"IFileRandomAccessStreamStatics","features":[70]},{"name":"IInputStream","features":[70]},{"name":"IInputStreamReference","features":[70]},{"name":"IOutputStream","features":[70]},{"name":"IPropertySetSerializer","features":[70]},{"name":"IRandomAccessStream","features":[70]},{"name":"IRandomAccessStreamReference","features":[70]},{"name":"IRandomAccessStreamReferenceStatics","features":[70]},{"name":"IRandomAccessStreamStatics","features":[70]},{"name":"IRandomAccessStreamWithContentType","features":[70]},{"name":"InMemoryRandomAccessStream","features":[70]},{"name":"InputStreamOptions","features":[70]},{"name":"InputStreamOverStream","features":[70]},{"name":"OutputStreamOverStream","features":[70]},{"name":"RandomAccessStream","features":[70]},{"name":"RandomAccessStreamOverStream","features":[70]},{"name":"RandomAccessStreamReference","features":[70]},{"name":"UnicodeEncoding","features":[70]}],"257":[{"name":"AppActivationResult","features":[245]},{"name":"AppDiagnosticInfo","features":[245]},{"name":"AppDiagnosticInfoWatcher","features":[245]},{"name":"AppDiagnosticInfoWatcherEventArgs","features":[245]},{"name":"AppDiagnosticInfoWatcherStatus","features":[245]},{"name":"AppExecutionStateChangeResult","features":[245]},{"name":"AppMemoryReport","features":[245]},{"name":"AppMemoryUsageLevel","features":[245]},{"name":"AppMemoryUsageLimitChangingEventArgs","features":[245]},{"name":"AppResourceGroupBackgroundTaskReport","features":[245]},{"name":"AppResourceGroupEnergyQuotaState","features":[245]},{"name":"AppResourceGroupExecutionState","features":[245]},{"name":"AppResourceGroupInfo","features":[245]},{"name":"AppResourceGroupInfoWatcher","features":[245]},{"name":"AppResourceGroupInfoWatcherEventArgs","features":[245]},{"name":"AppResourceGroupInfoWatcherExecutionStateChangedEventArgs","features":[245]},{"name":"AppResourceGroupInfoWatcherStatus","features":[245]},{"name":"AppResourceGroupMemoryReport","features":[245]},{"name":"AppResourceGroupStateReport","features":[245]},{"name":"AppUriHandlerHost","features":[245]},{"name":"AppUriHandlerRegistration","features":[245]},{"name":"AppUriHandlerRegistrationManager","features":[245]},{"name":"AutoUpdateTimeZoneStatus","features":[245]},{"name":"DateTimeSettings","features":[245]},{"name":"DiagnosticAccessStatus","features":[245]},{"name":"DispatcherQueue","features":[245]},{"name":"DispatcherQueueController","features":[245]},{"name":"DispatcherQueueHandler","features":[245]},{"name":"DispatcherQueuePriority","features":[245]},{"name":"DispatcherQueueShutdownStartingEventArgs","features":[245]},{"name":"DispatcherQueueTimer","features":[245]},{"name":"FolderLauncherOptions","features":[245]},{"name":"IAppActivationResult","features":[245]},{"name":"IAppDiagnosticInfo","features":[245]},{"name":"IAppDiagnosticInfo2","features":[245]},{"name":"IAppDiagnosticInfo3","features":[245]},{"name":"IAppDiagnosticInfoStatics","features":[245]},{"name":"IAppDiagnosticInfoStatics2","features":[245]},{"name":"IAppDiagnosticInfoWatcher","features":[245]},{"name":"IAppDiagnosticInfoWatcherEventArgs","features":[245]},{"name":"IAppExecutionStateChangeResult","features":[245]},{"name":"IAppMemoryReport","features":[245]},{"name":"IAppMemoryReport2","features":[245]},{"name":"IAppMemoryUsageLimitChangingEventArgs","features":[245]},{"name":"IAppResourceGroupBackgroundTaskReport","features":[245]},{"name":"IAppResourceGroupInfo","features":[245]},{"name":"IAppResourceGroupInfo2","features":[245]},{"name":"IAppResourceGroupInfoWatcher","features":[245]},{"name":"IAppResourceGroupInfoWatcherEventArgs","features":[245]},{"name":"IAppResourceGroupInfoWatcherExecutionStateChangedEventArgs","features":[245]},{"name":"IAppResourceGroupMemoryReport","features":[245]},{"name":"IAppResourceGroupStateReport","features":[245]},{"name":"IAppUriHandlerHost","features":[245]},{"name":"IAppUriHandlerHost2","features":[245]},{"name":"IAppUriHandlerHostFactory","features":[245]},{"name":"IAppUriHandlerRegistration","features":[245]},{"name":"IAppUriHandlerRegistration2","features":[245]},{"name":"IAppUriHandlerRegistrationManager","features":[245]},{"name":"IAppUriHandlerRegistrationManager2","features":[245]},{"name":"IAppUriHandlerRegistrationManagerStatics","features":[245]},{"name":"IAppUriHandlerRegistrationManagerStatics2","features":[245]},{"name":"IDateTimeSettingsStatics","features":[245]},{"name":"IDispatcherQueue","features":[245]},{"name":"IDispatcherQueue2","features":[245]},{"name":"IDispatcherQueueController","features":[245]},{"name":"IDispatcherQueueControllerStatics","features":[245]},{"name":"IDispatcherQueueShutdownStartingEventArgs","features":[245]},{"name":"IDispatcherQueueStatics","features":[245]},{"name":"IDispatcherQueueTimer","features":[245]},{"name":"IFolderLauncherOptions","features":[245]},{"name":"IKnownUserPropertiesStatics","features":[245]},{"name":"IKnownUserPropertiesStatics2","features":[245]},{"name":"ILaunchUriResult","features":[245]},{"name":"ILauncherOptions","features":[245]},{"name":"ILauncherOptions2","features":[245]},{"name":"ILauncherOptions3","features":[245]},{"name":"ILauncherOptions4","features":[245]},{"name":"ILauncherStatics","features":[245]},{"name":"ILauncherStatics2","features":[245]},{"name":"ILauncherStatics3","features":[245]},{"name":"ILauncherStatics4","features":[245]},{"name":"ILauncherStatics5","features":[245]},{"name":"ILauncherUIOptions","features":[245]},{"name":"ILauncherViewOptions","features":[245]},{"name":"IMemoryManagerStatics","features":[245]},{"name":"IMemoryManagerStatics2","features":[245]},{"name":"IMemoryManagerStatics3","features":[245]},{"name":"IMemoryManagerStatics4","features":[245]},{"name":"IProcessLauncherOptions","features":[245]},{"name":"IProcessLauncherResult","features":[245]},{"name":"IProcessLauncherStatics","features":[245]},{"name":"IProcessMemoryReport","features":[245]},{"name":"IProtocolForResultsOperation","features":[245]},{"name":"IRemoteLauncherOptions","features":[245]},{"name":"IRemoteLauncherStatics","features":[245]},{"name":"IShutdownManagerStatics","features":[245]},{"name":"IShutdownManagerStatics2","features":[245]},{"name":"ITimeZoneSettingsStatics","features":[245]},{"name":"ITimeZoneSettingsStatics2","features":[245]},{"name":"IUser","features":[245]},{"name":"IUser2","features":[245]},{"name":"IUserAuthenticationStatusChangeDeferral","features":[245]},{"name":"IUserAuthenticationStatusChangingEventArgs","features":[245]},{"name":"IUserChangedEventArgs","features":[245]},{"name":"IUserChangedEventArgs2","features":[245]},{"name":"IUserDeviceAssociationChangedEventArgs","features":[245]},{"name":"IUserDeviceAssociationStatics","features":[245]},{"name":"IUserPicker","features":[245]},{"name":"IUserPickerStatics","features":[245]},{"name":"IUserStatics","features":[245]},{"name":"IUserStatics2","features":[245]},{"name":"IUserWatcher","features":[245]},{"name":"KnownUserProperties","features":[245]},{"name":"LaunchFileStatus","features":[245]},{"name":"LaunchQuerySupportStatus","features":[245]},{"name":"LaunchQuerySupportType","features":[245]},{"name":"LaunchUriResult","features":[245]},{"name":"LaunchUriStatus","features":[245]},{"name":"Launcher","features":[245]},{"name":"LauncherOptions","features":[245]},{"name":"LauncherUIOptions","features":[245]},{"name":"MemoryManager","features":[245]},{"name":"PowerState","features":[245]},{"name":"ProcessLauncher","features":[245]},{"name":"ProcessLauncherOptions","features":[245]},{"name":"ProcessLauncherResult","features":[245]},{"name":"ProcessMemoryReport","features":[245]},{"name":"ProcessorArchitecture","features":[245]},{"name":"ProtocolForResultsOperation","features":[245]},{"name":"RemoteLaunchUriStatus","features":[245]},{"name":"RemoteLauncher","features":[245]},{"name":"RemoteLauncherOptions","features":[245]},{"name":"ShutdownKind","features":[245]},{"name":"ShutdownManager","features":[245]},{"name":"SystemManagementContract","features":[245]},{"name":"TimeZoneSettings","features":[245]},{"name":"User","features":[245]},{"name":"UserAgeConsentGroup","features":[245]},{"name":"UserAgeConsentResult","features":[245]},{"name":"UserAuthenticationStatus","features":[245]},{"name":"UserAuthenticationStatusChangeDeferral","features":[245]},{"name":"UserAuthenticationStatusChangingEventArgs","features":[245]},{"name":"UserChangedEventArgs","features":[245]},{"name":"UserDeviceAssociation","features":[245]},{"name":"UserDeviceAssociationChangedEventArgs","features":[245]},{"name":"UserPicker","features":[245]},{"name":"UserPictureSize","features":[245]},{"name":"UserType","features":[245]},{"name":"UserWatcher","features":[245]},{"name":"UserWatcherStatus","features":[245]},{"name":"UserWatcherUpdateKind","features":[245]},{"name":"VirtualKey","features":[245]},{"name":"VirtualKeyModifiers","features":[245]}],"258":[{"name":"DiagnosticActionResult","features":[246]},{"name":"DiagnosticActionState","features":[246]},{"name":"DiagnosticInvoker","features":[246]},{"name":"IDiagnosticActionResult","features":[246]},{"name":"IDiagnosticInvoker","features":[246]},{"name":"IDiagnosticInvoker2","features":[246]},{"name":"IDiagnosticInvokerStatics","features":[246]},{"name":"IProcessCpuUsage","features":[246]},{"name":"IProcessCpuUsageReport","features":[246]},{"name":"IProcessDiagnosticInfo","features":[246]},{"name":"IProcessDiagnosticInfo2","features":[246]},{"name":"IProcessDiagnosticInfoStatics","features":[246]},{"name":"IProcessDiagnosticInfoStatics2","features":[246]},{"name":"IProcessDiskUsage","features":[246]},{"name":"IProcessDiskUsageReport","features":[246]},{"name":"IProcessMemoryUsage","features":[246]},{"name":"IProcessMemoryUsageReport","features":[246]},{"name":"ISystemCpuUsage","features":[246]},{"name":"ISystemCpuUsageReport","features":[246]},{"name":"ISystemDiagnosticInfo","features":[246]},{"name":"ISystemDiagnosticInfoStatics","features":[246]},{"name":"ISystemDiagnosticInfoStatics2","features":[246]},{"name":"ISystemMemoryUsage","features":[246]},{"name":"ISystemMemoryUsageReport","features":[246]},{"name":"ProcessCpuUsage","features":[246]},{"name":"ProcessCpuUsageReport","features":[246]},{"name":"ProcessDiagnosticInfo","features":[246]},{"name":"ProcessDiskUsage","features":[246]},{"name":"ProcessDiskUsageReport","features":[246]},{"name":"ProcessMemoryUsage","features":[246]},{"name":"ProcessMemoryUsageReport","features":[246]},{"name":"SystemCpuUsage","features":[246]},{"name":"SystemCpuUsageReport","features":[246]},{"name":"SystemDiagnosticInfo","features":[246]},{"name":"SystemMemoryUsage","features":[246]},{"name":"SystemMemoryUsageReport","features":[246]}],"259":[{"name":"DevicePortalConnection","features":[247]},{"name":"DevicePortalConnectionClosedEventArgs","features":[247]},{"name":"DevicePortalConnectionClosedReason","features":[247]},{"name":"DevicePortalConnectionRequestReceivedEventArgs","features":[247]},{"name":"IDevicePortalConnection","features":[247]},{"name":"IDevicePortalConnectionClosedEventArgs","features":[247]},{"name":"IDevicePortalConnectionRequestReceivedEventArgs","features":[247]},{"name":"IDevicePortalConnectionStatics","features":[247]},{"name":"IDevicePortalWebSocketConnection","features":[247]},{"name":"IDevicePortalWebSocketConnectionRequestReceivedEventArgs","features":[247]}],"260":[{"name":"IPlatformTelemetryClientStatics","features":[248]},{"name":"IPlatformTelemetryRegistrationResult","features":[248]},{"name":"IPlatformTelemetryRegistrationSettings","features":[248]},{"name":"PlatformTelemetryClient","features":[248]},{"name":"PlatformTelemetryRegistrationResult","features":[248]},{"name":"PlatformTelemetryRegistrationSettings","features":[248]},{"name":"PlatformTelemetryRegistrationStatus","features":[248]}],"261":[{"name":"IPlatformDiagnosticActionsStatics","features":[249]},{"name":"IPlatformDiagnosticTraceInfo","features":[249]},{"name":"IPlatformDiagnosticTraceRuntimeInfo","features":[249]},{"name":"PlatformDiagnosticActionState","features":[249]},{"name":"PlatformDiagnosticActions","features":[249]},{"name":"PlatformDiagnosticEscalationType","features":[249]},{"name":"PlatformDiagnosticEventBufferLatencies","features":[249]},{"name":"PlatformDiagnosticTraceInfo","features":[249]},{"name":"PlatformDiagnosticTracePriority","features":[249]},{"name":"PlatformDiagnosticTraceRuntimeInfo","features":[249]},{"name":"PlatformDiagnosticTraceSlotState","features":[249]},{"name":"PlatformDiagnosticTraceSlotType","features":[249]}],"262":[{"name":"DisplayRequest","features":[250]},{"name":"IDisplayRequest","features":[250]}],"263":[{"name":"ISysStorageProviderEventReceivedEventArgs","features":[251]},{"name":"ISysStorageProviderEventReceivedEventArgsFactory","features":[251]},{"name":"ISysStorageProviderEventSource","features":[251]},{"name":"ISysStorageProviderHandlerFactory","features":[251]},{"name":"ISysStorageProviderHttpRequestProvider","features":[251]},{"name":"SysStorageProviderEventReceivedEventArgs","features":[251]}],"264":[{"name":"IInstalledDesktopApp","features":[252]},{"name":"IInstalledDesktopAppStatics","features":[252]},{"name":"InstalledDesktopApp","features":[252]}],"265":[{"name":"BackgroundEnergyManager","features":[253]},{"name":"BatteryStatus","features":[253]},{"name":"EnergySaverStatus","features":[253]},{"name":"ForegroundEnergyManager","features":[253]},{"name":"IBackgroundEnergyManagerStatics","features":[253]},{"name":"IForegroundEnergyManagerStatics","features":[253]},{"name":"IPowerManagerStatics","features":[253]},{"name":"PowerManager","features":[253]},{"name":"PowerSupplyStatus","features":[253]}],"268":[{"name":"AnalyticsInfo","features":[254]},{"name":"AnalyticsVersionInfo","features":[254]},{"name":"AppApplicability","features":[254]},{"name":"EducationSettings","features":[254]},{"name":"HardwareIdentification","features":[254]},{"name":"HardwareToken","features":[254]},{"name":"IAnalyticsInfoStatics","features":[254]},{"name":"IAnalyticsInfoStatics2","features":[254]},{"name":"IAnalyticsVersionInfo","features":[254]},{"name":"IAnalyticsVersionInfo2","features":[254]},{"name":"IAppApplicabilityStatics","features":[254]},{"name":"IEducationSettingsStatics","features":[254]},{"name":"IHardwareIdentificationStatics","features":[254]},{"name":"IHardwareToken","features":[254]},{"name":"IKnownRetailInfoPropertiesStatics","features":[254]},{"name":"IPlatformDiagnosticsAndUsageDataSettingsStatics","features":[254]},{"name":"IRetailInfoStatics","features":[254]},{"name":"ISharedModeSettingsStatics","features":[254]},{"name":"ISharedModeSettingsStatics2","features":[254]},{"name":"ISmartAppControlPolicyStatics","features":[254]},{"name":"ISystemIdentificationInfo","features":[254]},{"name":"ISystemIdentificationStatics","features":[254]},{"name":"ISystemSetupInfoStatics","features":[254]},{"name":"IUnsupportedAppRequirement","features":[254]},{"name":"IWindowsIntegrityPolicyStatics","features":[254]},{"name":"KnownRetailInfoProperties","features":[254]},{"name":"PlatformDataCollectionLevel","features":[254]},{"name":"PlatformDiagnosticsAndUsageDataSettings","features":[254]},{"name":"ProfileHardwareTokenContract","features":[254]},{"name":"ProfileRetailInfoContract","features":[254]},{"name":"ProfileSharedModeContract","features":[254]},{"name":"RetailInfo","features":[254]},{"name":"SharedModeSettings","features":[254]},{"name":"SmartAppControlPolicy","features":[254]},{"name":"SystemIdentification","features":[254]},{"name":"SystemIdentificationInfo","features":[254]},{"name":"SystemIdentificationSource","features":[254]},{"name":"SystemOutOfBoxExperienceState","features":[254]},{"name":"SystemSetupInfo","features":[254]},{"name":"UnsupportedAppRequirement","features":[254]},{"name":"UnsupportedAppRequirementReasons","features":[254]},{"name":"WindowsIntegrityPolicy","features":[254]}],"269":[{"name":"IOemSupportInfo","features":[255]},{"name":"ISmbiosInformationStatics","features":[255]},{"name":"ISystemSupportDeviceInfo","features":[255]},{"name":"ISystemSupportInfoStatics","features":[255]},{"name":"ISystemSupportInfoStatics2","features":[255]},{"name":"OemSupportInfo","features":[255]},{"name":"SmbiosInformation","features":[255]},{"name":"SystemManufacturersContract","features":[255]},{"name":"SystemSupportDeviceInfo","features":[255]},{"name":"SystemSupportInfo","features":[255]}],"270":[{"name":"IInteractiveSessionStatics","features":[256]},{"name":"InteractiveSession","features":[256]}],"271":[{"name":"IRemoteTextConnection","features":[257]},{"name":"IRemoteTextConnectionFactory","features":[257]},{"name":"RemoteTextConnection","features":[257]},{"name":"RemoteTextConnectionDataHandler","features":[257]}],"272":[{"name":"IPerformLocalActionRequestedEventArgs","features":[258]},{"name":"IRemoteDesktopConnectionInfo","features":[258]},{"name":"IRemoteDesktopConnectionInfoStatics","features":[258]},{"name":"IRemoteDesktopConnectionRemoteInfo","features":[258]},{"name":"IRemoteDesktopConnectionRemoteInfoStatics","features":[258]},{"name":"IRemoteDesktopInfo","features":[258]},{"name":"IRemoteDesktopInfoFactory","features":[258]},{"name":"IRemoteDesktopRegistrarStatics","features":[258]},{"name":"PerformLocalActionRequestedEventArgs","features":[258]},{"name":"RemoteDesktopConnectionInfo","features":[258]},{"name":"RemoteDesktopConnectionRemoteInfo","features":[258]},{"name":"RemoteDesktopConnectionStatus","features":[258]},{"name":"RemoteDesktopInfo","features":[258]},{"name":"RemoteDesktopLocalAction","features":[258]},{"name":"RemoteDesktopRegistrar","features":[258]}],"273":[{"name":"IKnownRemoteSystemCapabilitiesStatics","features":[259]},{"name":"IRemoteSystem","features":[259]},{"name":"IRemoteSystem2","features":[259]},{"name":"IRemoteSystem3","features":[259]},{"name":"IRemoteSystem4","features":[259]},{"name":"IRemoteSystem5","features":[259]},{"name":"IRemoteSystem6","features":[259]},{"name":"IRemoteSystemAddedEventArgs","features":[259]},{"name":"IRemoteSystemApp","features":[259]},{"name":"IRemoteSystemApp2","features":[259]},{"name":"IRemoteSystemAppRegistration","features":[259]},{"name":"IRemoteSystemAppRegistrationStatics","features":[259]},{"name":"IRemoteSystemAuthorizationKindFilter","features":[259]},{"name":"IRemoteSystemAuthorizationKindFilterFactory","features":[259]},{"name":"IRemoteSystemConnectionInfo","features":[259]},{"name":"IRemoteSystemConnectionInfoStatics","features":[259]},{"name":"IRemoteSystemConnectionRequest","features":[259]},{"name":"IRemoteSystemConnectionRequest2","features":[259]},{"name":"IRemoteSystemConnectionRequest3","features":[259]},{"name":"IRemoteSystemConnectionRequestFactory","features":[259]},{"name":"IRemoteSystemConnectionRequestStatics","features":[259]},{"name":"IRemoteSystemConnectionRequestStatics2","features":[259]},{"name":"IRemoteSystemDiscoveryTypeFilter","features":[259]},{"name":"IRemoteSystemDiscoveryTypeFilterFactory","features":[259]},{"name":"IRemoteSystemEnumerationCompletedEventArgs","features":[259]},{"name":"IRemoteSystemFilter","features":[259]},{"name":"IRemoteSystemKindFilter","features":[259]},{"name":"IRemoteSystemKindFilterFactory","features":[259]},{"name":"IRemoteSystemKindStatics","features":[259]},{"name":"IRemoteSystemKindStatics2","features":[259]},{"name":"IRemoteSystemRemovedEventArgs","features":[259]},{"name":"IRemoteSystemSession","features":[259]},{"name":"IRemoteSystemSessionAddedEventArgs","features":[259]},{"name":"IRemoteSystemSessionController","features":[259]},{"name":"IRemoteSystemSessionControllerFactory","features":[259]},{"name":"IRemoteSystemSessionCreationResult","features":[259]},{"name":"IRemoteSystemSessionDisconnectedEventArgs","features":[259]},{"name":"IRemoteSystemSessionInfo","features":[259]},{"name":"IRemoteSystemSessionInvitation","features":[259]},{"name":"IRemoteSystemSessionInvitationListener","features":[259]},{"name":"IRemoteSystemSessionInvitationReceivedEventArgs","features":[259]},{"name":"IRemoteSystemSessionJoinRequest","features":[259]},{"name":"IRemoteSystemSessionJoinRequestedEventArgs","features":[259]},{"name":"IRemoteSystemSessionJoinResult","features":[259]},{"name":"IRemoteSystemSessionMessageChannel","features":[259]},{"name":"IRemoteSystemSessionMessageChannelFactory","features":[259]},{"name":"IRemoteSystemSessionOptions","features":[259]},{"name":"IRemoteSystemSessionParticipant","features":[259]},{"name":"IRemoteSystemSessionParticipantAddedEventArgs","features":[259]},{"name":"IRemoteSystemSessionParticipantRemovedEventArgs","features":[259]},{"name":"IRemoteSystemSessionParticipantWatcher","features":[259]},{"name":"IRemoteSystemSessionRemovedEventArgs","features":[259]},{"name":"IRemoteSystemSessionStatics","features":[259]},{"name":"IRemoteSystemSessionUpdatedEventArgs","features":[259]},{"name":"IRemoteSystemSessionValueSetReceivedEventArgs","features":[259]},{"name":"IRemoteSystemSessionWatcher","features":[259]},{"name":"IRemoteSystemStatics","features":[259]},{"name":"IRemoteSystemStatics2","features":[259]},{"name":"IRemoteSystemStatics3","features":[259]},{"name":"IRemoteSystemStatusTypeFilter","features":[259]},{"name":"IRemoteSystemStatusTypeFilterFactory","features":[259]},{"name":"IRemoteSystemUpdatedEventArgs","features":[259]},{"name":"IRemoteSystemWatcher","features":[259]},{"name":"IRemoteSystemWatcher2","features":[259]},{"name":"IRemoteSystemWatcher3","features":[259]},{"name":"IRemoteSystemWatcherErrorOccurredEventArgs","features":[259]},{"name":"IRemoteSystemWebAccountFilter","features":[259]},{"name":"IRemoteSystemWebAccountFilterFactory","features":[259]},{"name":"KnownRemoteSystemCapabilities","features":[259]},{"name":"RemoteSystem","features":[259]},{"name":"RemoteSystemAccessStatus","features":[259]},{"name":"RemoteSystemAddedEventArgs","features":[259]},{"name":"RemoteSystemApp","features":[259]},{"name":"RemoteSystemAppRegistration","features":[259]},{"name":"RemoteSystemAuthorizationKind","features":[259]},{"name":"RemoteSystemAuthorizationKindFilter","features":[259]},{"name":"RemoteSystemConnectionInfo","features":[259]},{"name":"RemoteSystemConnectionRequest","features":[259]},{"name":"RemoteSystemDiscoveryType","features":[259]},{"name":"RemoteSystemDiscoveryTypeFilter","features":[259]},{"name":"RemoteSystemEnumerationCompletedEventArgs","features":[259]},{"name":"RemoteSystemKindFilter","features":[259]},{"name":"RemoteSystemKinds","features":[259]},{"name":"RemoteSystemPlatform","features":[259]},{"name":"RemoteSystemRemovedEventArgs","features":[259]},{"name":"RemoteSystemSession","features":[259]},{"name":"RemoteSystemSessionAddedEventArgs","features":[259]},{"name":"RemoteSystemSessionController","features":[259]},{"name":"RemoteSystemSessionCreationResult","features":[259]},{"name":"RemoteSystemSessionCreationStatus","features":[259]},{"name":"RemoteSystemSessionDisconnectedEventArgs","features":[259]},{"name":"RemoteSystemSessionDisconnectedReason","features":[259]},{"name":"RemoteSystemSessionInfo","features":[259]},{"name":"RemoteSystemSessionInvitation","features":[259]},{"name":"RemoteSystemSessionInvitationListener","features":[259]},{"name":"RemoteSystemSessionInvitationReceivedEventArgs","features":[259]},{"name":"RemoteSystemSessionJoinRequest","features":[259]},{"name":"RemoteSystemSessionJoinRequestedEventArgs","features":[259]},{"name":"RemoteSystemSessionJoinResult","features":[259]},{"name":"RemoteSystemSessionJoinStatus","features":[259]},{"name":"RemoteSystemSessionMessageChannel","features":[259]},{"name":"RemoteSystemSessionMessageChannelReliability","features":[259]},{"name":"RemoteSystemSessionOptions","features":[259]},{"name":"RemoteSystemSessionParticipant","features":[259]},{"name":"RemoteSystemSessionParticipantAddedEventArgs","features":[259]},{"name":"RemoteSystemSessionParticipantRemovedEventArgs","features":[259]},{"name":"RemoteSystemSessionParticipantWatcher","features":[259]},{"name":"RemoteSystemSessionParticipantWatcherStatus","features":[259]},{"name":"RemoteSystemSessionRemovedEventArgs","features":[259]},{"name":"RemoteSystemSessionUpdatedEventArgs","features":[259]},{"name":"RemoteSystemSessionValueSetReceivedEventArgs","features":[259]},{"name":"RemoteSystemSessionWatcher","features":[259]},{"name":"RemoteSystemSessionWatcherStatus","features":[259]},{"name":"RemoteSystemStatus","features":[259]},{"name":"RemoteSystemStatusType","features":[259]},{"name":"RemoteSystemStatusTypeFilter","features":[259]},{"name":"RemoteSystemUpdatedEventArgs","features":[259]},{"name":"RemoteSystemWatcher","features":[259]},{"name":"RemoteSystemWatcherError","features":[259]},{"name":"RemoteSystemWatcherErrorOccurredEventArgs","features":[259]},{"name":"RemoteSystemWebAccountFilter","features":[259]}],"274":[{"name":"IThreadPoolStatics","features":[260]},{"name":"IThreadPoolTimer","features":[260]},{"name":"IThreadPoolTimerStatics","features":[260]},{"name":"ThreadPool","features":[260]},{"name":"ThreadPoolTimer","features":[260]},{"name":"TimerDestroyedHandler","features":[260]},{"name":"TimerElapsedHandler","features":[260]},{"name":"WorkItemHandler","features":[76,260]},{"name":"WorkItemOptions","features":[260]},{"name":"WorkItemPriority","features":[260]}],"275":[{"name":"IPreallocatedWorkItem","features":[261]},{"name":"IPreallocatedWorkItemFactory","features":[261]},{"name":"ISignalNotifier","features":[261]},{"name":"ISignalNotifierStatics","features":[261]},{"name":"PreallocatedWorkItem","features":[261]},{"name":"SignalHandler","features":[261]},{"name":"SignalNotifier","features":[261]}],"276":[{"name":"ISystemUpdateItem","features":[262]},{"name":"ISystemUpdateLastErrorInfo","features":[262]},{"name":"ISystemUpdateManagerStatics","features":[262]},{"name":"SystemUpdateAttentionRequiredReason","features":[262]},{"name":"SystemUpdateItem","features":[262]},{"name":"SystemUpdateItemState","features":[262]},{"name":"SystemUpdateLastErrorInfo","features":[262]},{"name":"SystemUpdateManager","features":[262]},{"name":"SystemUpdateManagerState","features":[262]},{"name":"SystemUpdateStartInstallAction","features":[262]}],"277":[{"name":"AccountPictureKind","features":[263]},{"name":"AdvertisingManager","features":[263]},{"name":"AdvertisingManagerForUser","features":[263]},{"name":"AssignedAccessSettings","features":[263]},{"name":"DiagnosticsSettings","features":[263]},{"name":"FirstSignInSettings","features":[263]},{"name":"GlobalizationPreferences","features":[263]},{"name":"GlobalizationPreferencesForUser","features":[263]},{"name":"IAdvertisingManagerForUser","features":[263]},{"name":"IAdvertisingManagerStatics","features":[263]},{"name":"IAdvertisingManagerStatics2","features":[263]},{"name":"IAssignedAccessSettings","features":[263]},{"name":"IAssignedAccessSettingsStatics","features":[263]},{"name":"IDiagnosticsSettings","features":[263]},{"name":"IDiagnosticsSettingsStatics","features":[263]},{"name":"IFirstSignInSettings","features":[263]},{"name":"IFirstSignInSettingsStatics","features":[263]},{"name":"IGlobalizationPreferencesForUser","features":[263]},{"name":"IGlobalizationPreferencesStatics","features":[263]},{"name":"IGlobalizationPreferencesStatics2","features":[263]},{"name":"IGlobalizationPreferencesStatics3","features":[263]},{"name":"ILockScreenImageFeedStatics","features":[263]},{"name":"ILockScreenStatics","features":[263]},{"name":"IUserInformationStatics","features":[263]},{"name":"IUserProfilePersonalizationSettings","features":[263]},{"name":"IUserProfilePersonalizationSettingsStatics","features":[263]},{"name":"LockScreen","features":[263]},{"name":"SetAccountPictureResult","features":[263]},{"name":"SetImageFeedResult","features":[263]},{"name":"UserInformation","features":[263]},{"name":"UserProfileContract","features":[263]},{"name":"UserProfileLockScreenContract","features":[263]},{"name":"UserProfilePersonalizationSettings","features":[263]}],"278":[{"name":"Color","features":[264]},{"name":"ColorHelper","features":[264]},{"name":"Colors","features":[264]},{"name":"IColorHelper","features":[264]},{"name":"IColorHelperStatics","features":[264]},{"name":"IColorHelperStatics2","features":[264]},{"name":"IColors","features":[264]},{"name":"IColorsStatics","features":[264]},{"name":"IUIContentRoot","features":[264]},{"name":"IUIContext","features":[264]},{"name":"UIContentRoot","features":[264]},{"name":"UIContext","features":[264]},{"name":"WindowId","features":[264]}],"279":[{"name":"IScreenReaderPositionChangedEventArgs","features":[265]},{"name":"IScreenReaderService","features":[265]},{"name":"ScreenReaderPositionChangedEventArgs","features":[265]},{"name":"ScreenReaderService","features":[265]}],"280":[{"name":"AccountsSettingsPane","features":[266]},{"name":"AccountsSettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"AccountsSettingsPaneEventDeferral","features":[266]},{"name":"ApplicationsSettingsContract","features":[266]},{"name":"CredentialCommand","features":[266]},{"name":"CredentialCommandCredentialDeletedHandler","features":[266]},{"name":"IAccountsSettingsPane","features":[266]},{"name":"IAccountsSettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"IAccountsSettingsPaneCommandsRequestedEventArgs2","features":[266]},{"name":"IAccountsSettingsPaneEventDeferral","features":[266]},{"name":"IAccountsSettingsPaneStatics","features":[266]},{"name":"IAccountsSettingsPaneStatics2","features":[266]},{"name":"IAccountsSettingsPaneStatics3","features":[266]},{"name":"ICredentialCommand","features":[266]},{"name":"ICredentialCommandFactory","features":[266]},{"name":"ISettingsCommandFactory","features":[266]},{"name":"ISettingsCommandStatics","features":[266]},{"name":"ISettingsPane","features":[266]},{"name":"ISettingsPaneCommandsRequest","features":[266]},{"name":"ISettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"ISettingsPaneStatics","features":[266]},{"name":"IWebAccountCommand","features":[266]},{"name":"IWebAccountCommandFactory","features":[266]},{"name":"IWebAccountInvokedArgs","features":[266]},{"name":"IWebAccountProviderCommand","features":[266]},{"name":"IWebAccountProviderCommandFactory","features":[266]},{"name":"SettingsCommand","features":[266,267]},{"name":"SettingsEdgeLocation","features":[266]},{"name":"SettingsPane","features":[266]},{"name":"SettingsPaneCommandsRequest","features":[266]},{"name":"SettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"SupportedWebAccountActions","features":[266]},{"name":"WebAccountAction","features":[266]},{"name":"WebAccountCommand","features":[266]},{"name":"WebAccountCommandInvokedHandler","features":[266]},{"name":"WebAccountInvokedArgs","features":[266]},{"name":"WebAccountProviderCommand","features":[266]},{"name":"WebAccountProviderCommandInvokedHandler","features":[266]}],"281":[{"name":"AmbientLight","features":[268]},{"name":"AnimationController","features":[268]},{"name":"AnimationControllerProgressBehavior","features":[268]},{"name":"AnimationDelayBehavior","features":[268]},{"name":"AnimationDirection","features":[268]},{"name":"AnimationIterationBehavior","features":[268]},{"name":"AnimationPropertyAccessMode","features":[268]},{"name":"AnimationPropertyInfo","features":[268]},{"name":"AnimationStopBehavior","features":[268]},{"name":"BackEasingFunction","features":[268]},{"name":"BooleanKeyFrameAnimation","features":[268]},{"name":"BounceEasingFunction","features":[268]},{"name":"BounceScalarNaturalMotionAnimation","features":[268]},{"name":"BounceVector2NaturalMotionAnimation","features":[268]},{"name":"BounceVector3NaturalMotionAnimation","features":[268]},{"name":"CircleEasingFunction","features":[268]},{"name":"ColorKeyFrameAnimation","features":[268]},{"name":"CompositionAnimation","features":[268]},{"name":"CompositionAnimationGroup","features":[268]},{"name":"CompositionBackdropBrush","features":[268]},{"name":"CompositionBackfaceVisibility","features":[268]},{"name":"CompositionBatchCompletedEventArgs","features":[268]},{"name":"CompositionBatchTypes","features":[268]},{"name":"CompositionBitmapInterpolationMode","features":[268]},{"name":"CompositionBorderMode","features":[268]},{"name":"CompositionBrush","features":[268]},{"name":"CompositionCapabilities","features":[268]},{"name":"CompositionClip","features":[268]},{"name":"CompositionColorBrush","features":[268]},{"name":"CompositionColorGradientStop","features":[268]},{"name":"CompositionColorGradientStopCollection","features":[268]},{"name":"CompositionColorSpace","features":[268]},{"name":"CompositionCommitBatch","features":[268]},{"name":"CompositionCompositeMode","features":[268]},{"name":"CompositionContainerShape","features":[268]},{"name":"CompositionDrawingSurface","features":[268]},{"name":"CompositionDropShadowSourcePolicy","features":[268]},{"name":"CompositionEasingFunction","features":[268]},{"name":"CompositionEasingFunctionMode","features":[268]},{"name":"CompositionEffectBrush","features":[268]},{"name":"CompositionEffectFactory","features":[268]},{"name":"CompositionEffectFactoryLoadStatus","features":[268]},{"name":"CompositionEffectSourceParameter","features":[268]},{"name":"CompositionEllipseGeometry","features":[268]},{"name":"CompositionGeometricClip","features":[268]},{"name":"CompositionGeometry","features":[268]},{"name":"CompositionGetValueStatus","features":[268]},{"name":"CompositionGradientBrush","features":[268]},{"name":"CompositionGradientExtendMode","features":[268]},{"name":"CompositionGraphicsDevice","features":[268]},{"name":"CompositionLight","features":[268]},{"name":"CompositionLineGeometry","features":[268]},{"name":"CompositionLinearGradientBrush","features":[268]},{"name":"CompositionMappingMode","features":[268]},{"name":"CompositionMaskBrush","features":[268]},{"name":"CompositionMipmapSurface","features":[268]},{"name":"CompositionNineGridBrush","features":[268]},{"name":"CompositionObject","features":[268]},{"name":"CompositionPath","features":[268]},{"name":"CompositionPathGeometry","features":[268]},{"name":"CompositionProjectedShadow","features":[268]},{"name":"CompositionProjectedShadowCaster","features":[268]},{"name":"CompositionProjectedShadowCasterCollection","features":[268]},{"name":"CompositionProjectedShadowReceiver","features":[268]},{"name":"CompositionProjectedShadowReceiverUnorderedCollection","features":[268]},{"name":"CompositionPropertySet","features":[268]},{"name":"CompositionRadialGradientBrush","features":[268]},{"name":"CompositionRectangleGeometry","features":[268]},{"name":"CompositionRoundedRectangleGeometry","features":[268]},{"name":"CompositionScopedBatch","features":[268]},{"name":"CompositionShadow","features":[268]},{"name":"CompositionShape","features":[268]},{"name":"CompositionShapeCollection","features":[36,268]},{"name":"CompositionSpriteShape","features":[268]},{"name":"CompositionStretch","features":[268]},{"name":"CompositionStrokeCap","features":[268]},{"name":"CompositionStrokeDashArray","features":[36,268]},{"name":"CompositionStrokeLineJoin","features":[268]},{"name":"CompositionSurfaceBrush","features":[268]},{"name":"CompositionTarget","features":[268]},{"name":"CompositionTexture","features":[268]},{"name":"CompositionTransform","features":[268]},{"name":"CompositionViewBox","features":[268]},{"name":"CompositionVirtualDrawingSurface","features":[268]},{"name":"CompositionVisualSurface","features":[268]},{"name":"Compositor","features":[268]},{"name":"ContainerVisual","features":[268]},{"name":"CubicBezierEasingFunction","features":[268]},{"name":"DelegatedInkTrailVisual","features":[268]},{"name":"DistantLight","features":[268]},{"name":"DropShadow","features":[268]},{"name":"ElasticEasingFunction","features":[268]},{"name":"ExponentialEasingFunction","features":[268]},{"name":"ExpressionAnimation","features":[268]},{"name":"IAmbientLight","features":[268]},{"name":"IAmbientLight2","features":[268]},{"name":"IAnimationController","features":[268]},{"name":"IAnimationControllerStatics","features":[268]},{"name":"IAnimationObject","features":[268]},{"name":"IAnimationPropertyInfo","features":[268]},{"name":"IAnimationPropertyInfo2","features":[268]},{"name":"IBackEasingFunction","features":[268]},{"name":"IBooleanKeyFrameAnimation","features":[268]},{"name":"IBounceEasingFunction","features":[268]},{"name":"IBounceScalarNaturalMotionAnimation","features":[268]},{"name":"IBounceVector2NaturalMotionAnimation","features":[268]},{"name":"IBounceVector3NaturalMotionAnimation","features":[268]},{"name":"ICircleEasingFunction","features":[268]},{"name":"IColorKeyFrameAnimation","features":[268]},{"name":"ICompositionAnimation","features":[268]},{"name":"ICompositionAnimation2","features":[268]},{"name":"ICompositionAnimation3","features":[268]},{"name":"ICompositionAnimation4","features":[268]},{"name":"ICompositionAnimationBase","features":[268]},{"name":"ICompositionAnimationFactory","features":[268]},{"name":"ICompositionAnimationGroup","features":[268]},{"name":"ICompositionBackdropBrush","features":[268]},{"name":"ICompositionBatchCompletedEventArgs","features":[268]},{"name":"ICompositionBrush","features":[268]},{"name":"ICompositionBrushFactory","features":[268]},{"name":"ICompositionCapabilities","features":[268]},{"name":"ICompositionCapabilitiesStatics","features":[268]},{"name":"ICompositionClip","features":[268]},{"name":"ICompositionClip2","features":[268]},{"name":"ICompositionClipFactory","features":[268]},{"name":"ICompositionColorBrush","features":[268]},{"name":"ICompositionColorGradientStop","features":[268]},{"name":"ICompositionColorGradientStopCollection","features":[268]},{"name":"ICompositionCommitBatch","features":[268]},{"name":"ICompositionContainerShape","features":[268]},{"name":"ICompositionDrawingSurface","features":[268]},{"name":"ICompositionDrawingSurface2","features":[268]},{"name":"ICompositionDrawingSurfaceFactory","features":[268]},{"name":"ICompositionEasingFunction","features":[268]},{"name":"ICompositionEasingFunctionFactory","features":[268]},{"name":"ICompositionEasingFunctionStatics","features":[268]},{"name":"ICompositionEffectBrush","features":[268]},{"name":"ICompositionEffectFactory","features":[268]},{"name":"ICompositionEffectSourceParameter","features":[268]},{"name":"ICompositionEffectSourceParameterFactory","features":[268]},{"name":"ICompositionEllipseGeometry","features":[268]},{"name":"ICompositionGeometricClip","features":[268]},{"name":"ICompositionGeometry","features":[268]},{"name":"ICompositionGeometryFactory","features":[268]},{"name":"ICompositionGradientBrush","features":[268]},{"name":"ICompositionGradientBrush2","features":[268]},{"name":"ICompositionGradientBrushFactory","features":[268]},{"name":"ICompositionGraphicsDevice","features":[268]},{"name":"ICompositionGraphicsDevice2","features":[268]},{"name":"ICompositionGraphicsDevice3","features":[268]},{"name":"ICompositionGraphicsDevice4","features":[268]},{"name":"ICompositionLight","features":[268]},{"name":"ICompositionLight2","features":[268]},{"name":"ICompositionLight3","features":[268]},{"name":"ICompositionLightFactory","features":[268]},{"name":"ICompositionLineGeometry","features":[268]},{"name":"ICompositionLinearGradientBrush","features":[268]},{"name":"ICompositionMaskBrush","features":[268]},{"name":"ICompositionMipmapSurface","features":[268]},{"name":"ICompositionNineGridBrush","features":[268]},{"name":"ICompositionObject","features":[268]},{"name":"ICompositionObject2","features":[268]},{"name":"ICompositionObject3","features":[268]},{"name":"ICompositionObject4","features":[268]},{"name":"ICompositionObject5","features":[268]},{"name":"ICompositionObjectFactory","features":[268]},{"name":"ICompositionObjectStatics","features":[268]},{"name":"ICompositionPath","features":[268]},{"name":"ICompositionPathFactory","features":[268]},{"name":"ICompositionPathGeometry","features":[268]},{"name":"ICompositionProjectedShadow","features":[268]},{"name":"ICompositionProjectedShadowCaster","features":[268]},{"name":"ICompositionProjectedShadowCasterCollection","features":[268]},{"name":"ICompositionProjectedShadowCasterCollectionStatics","features":[268]},{"name":"ICompositionProjectedShadowReceiver","features":[268]},{"name":"ICompositionProjectedShadowReceiverUnorderedCollection","features":[268]},{"name":"ICompositionPropertySet","features":[268]},{"name":"ICompositionPropertySet2","features":[268]},{"name":"ICompositionRadialGradientBrush","features":[268]},{"name":"ICompositionRectangleGeometry","features":[268]},{"name":"ICompositionRoundedRectangleGeometry","features":[268]},{"name":"ICompositionScopedBatch","features":[268]},{"name":"ICompositionShadow","features":[268]},{"name":"ICompositionShadowFactory","features":[268]},{"name":"ICompositionShape","features":[268]},{"name":"ICompositionShapeFactory","features":[268]},{"name":"ICompositionSpriteShape","features":[268]},{"name":"ICompositionSupportsSystemBackdrop","features":[268]},{"name":"ICompositionSurface","features":[268]},{"name":"ICompositionSurfaceBrush","features":[268]},{"name":"ICompositionSurfaceBrush2","features":[268]},{"name":"ICompositionSurfaceBrush3","features":[268]},{"name":"ICompositionSurfaceFacade","features":[268]},{"name":"ICompositionTarget","features":[268]},{"name":"ICompositionTargetFactory","features":[268]},{"name":"ICompositionTexture","features":[268]},{"name":"ICompositionTextureFactory","features":[268]},{"name":"ICompositionTransform","features":[268]},{"name":"ICompositionTransformFactory","features":[268]},{"name":"ICompositionViewBox","features":[268]},{"name":"ICompositionVirtualDrawingSurface","features":[268]},{"name":"ICompositionVirtualDrawingSurfaceFactory","features":[268]},{"name":"ICompositionVisualSurface","features":[268]},{"name":"ICompositor","features":[268]},{"name":"ICompositor2","features":[268]},{"name":"ICompositor3","features":[268]},{"name":"ICompositor4","features":[268]},{"name":"ICompositor5","features":[268]},{"name":"ICompositor6","features":[268]},{"name":"ICompositor7","features":[268]},{"name":"ICompositor8","features":[268]},{"name":"ICompositorStatics","features":[268]},{"name":"ICompositorWithBlurredWallpaperBackdropBrush","features":[268]},{"name":"ICompositorWithProjectedShadow","features":[268]},{"name":"ICompositorWithRadialGradient","features":[268]},{"name":"ICompositorWithVisualSurface","features":[268]},{"name":"IContainerVisual","features":[268]},{"name":"IContainerVisualFactory","features":[268]},{"name":"ICubicBezierEasingFunction","features":[268]},{"name":"IDelegatedInkTrailVisual","features":[268]},{"name":"IDelegatedInkTrailVisualStatics","features":[268]},{"name":"IDistantLight","features":[268]},{"name":"IDistantLight2","features":[268]},{"name":"IDropShadow","features":[268]},{"name":"IDropShadow2","features":[268]},{"name":"IElasticEasingFunction","features":[268]},{"name":"IExponentialEasingFunction","features":[268]},{"name":"IExpressionAnimation","features":[268]},{"name":"IImplicitAnimationCollection","features":[268]},{"name":"IInsetClip","features":[268]},{"name":"IKeyFrameAnimation","features":[268]},{"name":"IKeyFrameAnimation2","features":[268]},{"name":"IKeyFrameAnimation3","features":[268]},{"name":"IKeyFrameAnimationFactory","features":[268]},{"name":"ILayerVisual","features":[268]},{"name":"ILayerVisual2","features":[268]},{"name":"ILinearEasingFunction","features":[268]},{"name":"INaturalMotionAnimation","features":[268]},{"name":"INaturalMotionAnimationFactory","features":[268]},{"name":"IPathKeyFrameAnimation","features":[268]},{"name":"IPointLight","features":[268]},{"name":"IPointLight2","features":[268]},{"name":"IPointLight3","features":[268]},{"name":"IPowerEasingFunction","features":[268]},{"name":"IQuaternionKeyFrameAnimation","features":[268]},{"name":"IRectangleClip","features":[268]},{"name":"IRedirectVisual","features":[268]},{"name":"IRenderingDeviceReplacedEventArgs","features":[268]},{"name":"IScalarKeyFrameAnimation","features":[268]},{"name":"IScalarNaturalMotionAnimation","features":[268]},{"name":"IScalarNaturalMotionAnimationFactory","features":[268]},{"name":"IShapeVisual","features":[268]},{"name":"ISineEasingFunction","features":[268]},{"name":"ISpotLight","features":[268]},{"name":"ISpotLight2","features":[268]},{"name":"ISpotLight3","features":[268]},{"name":"ISpringScalarNaturalMotionAnimation","features":[268]},{"name":"ISpringVector2NaturalMotionAnimation","features":[268]},{"name":"ISpringVector3NaturalMotionAnimation","features":[268]},{"name":"ISpriteVisual","features":[268]},{"name":"ISpriteVisual2","features":[268]},{"name":"IStepEasingFunction","features":[268]},{"name":"IVector2KeyFrameAnimation","features":[268]},{"name":"IVector2NaturalMotionAnimation","features":[268]},{"name":"IVector2NaturalMotionAnimationFactory","features":[268]},{"name":"IVector3KeyFrameAnimation","features":[268]},{"name":"IVector3NaturalMotionAnimation","features":[268]},{"name":"IVector3NaturalMotionAnimationFactory","features":[268]},{"name":"IVector4KeyFrameAnimation","features":[268]},{"name":"IVisual","features":[268]},{"name":"IVisual2","features":[268]},{"name":"IVisual3","features":[268]},{"name":"IVisual4","features":[268]},{"name":"IVisualCollection","features":[268]},{"name":"IVisualElement","features":[268]},{"name":"IVisualElement2","features":[268]},{"name":"IVisualFactory","features":[268]},{"name":"IVisualUnorderedCollection","features":[268]},{"name":"ImplicitAnimationCollection","features":[268]},{"name":"InitialValueExpressionCollection","features":[36,268]},{"name":"InkTrailPoint","features":[76,268]},{"name":"InsetClip","features":[268]},{"name":"KeyFrameAnimation","features":[268]},{"name":"LayerVisual","features":[268]},{"name":"LinearEasingFunction","features":[268]},{"name":"NaturalMotionAnimation","features":[268]},{"name":"PathKeyFrameAnimation","features":[268]},{"name":"PointLight","features":[268]},{"name":"PowerEasingFunction","features":[268]},{"name":"QuaternionKeyFrameAnimation","features":[268]},{"name":"RectangleClip","features":[268]},{"name":"RedirectVisual","features":[268]},{"name":"RenderingDeviceReplacedEventArgs","features":[268]},{"name":"ScalarKeyFrameAnimation","features":[268]},{"name":"ScalarNaturalMotionAnimation","features":[268]},{"name":"ShapeVisual","features":[268]},{"name":"SineEasingFunction","features":[268]},{"name":"SpotLight","features":[268]},{"name":"SpringScalarNaturalMotionAnimation","features":[268]},{"name":"SpringVector2NaturalMotionAnimation","features":[268]},{"name":"SpringVector3NaturalMotionAnimation","features":[268]},{"name":"SpriteVisual","features":[268]},{"name":"StepEasingFunction","features":[268]},{"name":"Vector2KeyFrameAnimation","features":[268]},{"name":"Vector2NaturalMotionAnimation","features":[268]},{"name":"Vector3KeyFrameAnimation","features":[268]},{"name":"Vector3NaturalMotionAnimation","features":[268]},{"name":"Vector4KeyFrameAnimation","features":[268]},{"name":"Visual","features":[268]},{"name":"VisualCollection","features":[268]},{"name":"VisualUnorderedCollection","features":[268]}],"282":[{"name":"CompositorController","features":[269]},{"name":"ICompositorController","features":[269]}],"283":[{"name":"DesktopWindowTarget","features":[270]},{"name":"IDesktopWindowTarget","features":[270]}],"284":[{"name":"CompositionDebugHeatMaps","features":[271]},{"name":"CompositionDebugOverdrawContentKinds","features":[271]},{"name":"CompositionDebugSettings","features":[271]},{"name":"ICompositionDebugHeatMaps","features":[271]},{"name":"ICompositionDebugSettings","features":[271]},{"name":"ICompositionDebugSettingsStatics","features":[271]}],"285":[{"name":"ISceneLightingEffect","features":[272]},{"name":"ISceneLightingEffect2","features":[272]},{"name":"SceneLightingEffect","features":[272]},{"name":"SceneLightingEffectReflectanceModel","features":[272]}],"286":[{"name":"CompositionConditionalValue","features":[273]},{"name":"CompositionInteractionSourceCollection","features":[273]},{"name":"ICompositionConditionalValue","features":[273]},{"name":"ICompositionConditionalValueStatics","features":[273]},{"name":"ICompositionInteractionSource","features":[273]},{"name":"ICompositionInteractionSourceCollection","features":[273]},{"name":"IInteractionSourceConfiguration","features":[273]},{"name":"IInteractionTracker","features":[273]},{"name":"IInteractionTracker2","features":[273]},{"name":"IInteractionTracker3","features":[273]},{"name":"IInteractionTracker4","features":[273]},{"name":"IInteractionTracker5","features":[273]},{"name":"IInteractionTrackerCustomAnimationStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerCustomAnimationStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerIdleStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerIdleStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerInertiaModifier","features":[273]},{"name":"IInteractionTrackerInertiaModifierFactory","features":[273]},{"name":"IInteractionTrackerInertiaMotion","features":[273]},{"name":"IInteractionTrackerInertiaMotionStatics","features":[273]},{"name":"IInteractionTrackerInertiaNaturalMotion","features":[273]},{"name":"IInteractionTrackerInertiaNaturalMotionStatics","features":[273]},{"name":"IInteractionTrackerInertiaRestingValue","features":[273]},{"name":"IInteractionTrackerInertiaRestingValueStatics","features":[273]},{"name":"IInteractionTrackerInertiaStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerInertiaStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerInertiaStateEnteredArgs3","features":[273]},{"name":"IInteractionTrackerInteractingStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerInteractingStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerOwner","features":[273]},{"name":"IInteractionTrackerRequestIgnoredArgs","features":[273]},{"name":"IInteractionTrackerStatics","features":[273]},{"name":"IInteractionTrackerStatics2","features":[273]},{"name":"IInteractionTrackerValuesChangedArgs","features":[273]},{"name":"IInteractionTrackerVector2InertiaModifier","features":[273]},{"name":"IInteractionTrackerVector2InertiaModifierFactory","features":[273]},{"name":"IInteractionTrackerVector2InertiaNaturalMotion","features":[273]},{"name":"IInteractionTrackerVector2InertiaNaturalMotionStatics","features":[273]},{"name":"IVisualInteractionSource","features":[273]},{"name":"IVisualInteractionSource2","features":[273]},{"name":"IVisualInteractionSource3","features":[273]},{"name":"IVisualInteractionSourceObjectFactory","features":[273]},{"name":"IVisualInteractionSourceStatics","features":[273]},{"name":"IVisualInteractionSourceStatics2","features":[273]},{"name":"InteractionBindingAxisModes","features":[273]},{"name":"InteractionChainingMode","features":[273]},{"name":"InteractionSourceConfiguration","features":[273]},{"name":"InteractionSourceMode","features":[273]},{"name":"InteractionSourceRedirectionMode","features":[273]},{"name":"InteractionTracker","features":[273]},{"name":"InteractionTrackerClampingOption","features":[273]},{"name":"InteractionTrackerCustomAnimationStateEnteredArgs","features":[273]},{"name":"InteractionTrackerIdleStateEnteredArgs","features":[273]},{"name":"InteractionTrackerInertiaModifier","features":[273]},{"name":"InteractionTrackerInertiaMotion","features":[273]},{"name":"InteractionTrackerInertiaNaturalMotion","features":[273]},{"name":"InteractionTrackerInertiaRestingValue","features":[273]},{"name":"InteractionTrackerInertiaStateEnteredArgs","features":[273]},{"name":"InteractionTrackerInteractingStateEnteredArgs","features":[273]},{"name":"InteractionTrackerPositionUpdateOption","features":[273]},{"name":"InteractionTrackerRequestIgnoredArgs","features":[273]},{"name":"InteractionTrackerValuesChangedArgs","features":[273]},{"name":"InteractionTrackerVector2InertiaModifier","features":[273]},{"name":"InteractionTrackerVector2InertiaNaturalMotion","features":[273]},{"name":"VisualInteractionSource","features":[273]},{"name":"VisualInteractionSourceRedirectionMode","features":[273]}],"287":[{"name":"ISceneBoundingBox","features":[274]},{"name":"ISceneComponent","features":[274]},{"name":"ISceneComponentCollection","features":[274]},{"name":"ISceneComponentFactory","features":[274]},{"name":"ISceneMaterial","features":[274]},{"name":"ISceneMaterialFactory","features":[274]},{"name":"ISceneMaterialInput","features":[274]},{"name":"ISceneMaterialInputFactory","features":[274]},{"name":"ISceneMesh","features":[274]},{"name":"ISceneMeshMaterialAttributeMap","features":[274]},{"name":"ISceneMeshRendererComponent","features":[274]},{"name":"ISceneMeshRendererComponentStatics","features":[274]},{"name":"ISceneMeshStatics","features":[274]},{"name":"ISceneMetallicRoughnessMaterial","features":[274]},{"name":"ISceneMetallicRoughnessMaterialStatics","features":[274]},{"name":"ISceneModelTransform","features":[274]},{"name":"ISceneNode","features":[274]},{"name":"ISceneNodeCollection","features":[274]},{"name":"ISceneNodeStatics","features":[274]},{"name":"ISceneObject","features":[274]},{"name":"ISceneObjectFactory","features":[274]},{"name":"IScenePbrMaterial","features":[274]},{"name":"IScenePbrMaterialFactory","features":[274]},{"name":"ISceneRendererComponent","features":[274]},{"name":"ISceneRendererComponentFactory","features":[274]},{"name":"ISceneSurfaceMaterialInput","features":[274]},{"name":"ISceneSurfaceMaterialInputStatics","features":[274]},{"name":"ISceneVisual","features":[274]},{"name":"ISceneVisualStatics","features":[274]},{"name":"SceneAlphaMode","features":[274]},{"name":"SceneAttributeSemantic","features":[274]},{"name":"SceneBoundingBox","features":[274]},{"name":"SceneComponent","features":[274]},{"name":"SceneComponentCollection","features":[36,274]},{"name":"SceneComponentType","features":[274]},{"name":"SceneMaterial","features":[274]},{"name":"SceneMaterialInput","features":[274]},{"name":"SceneMesh","features":[274]},{"name":"SceneMeshMaterialAttributeMap","features":[274]},{"name":"SceneMeshRendererComponent","features":[274]},{"name":"SceneMetallicRoughnessMaterial","features":[274]},{"name":"SceneModelTransform","features":[274]},{"name":"SceneNode","features":[274]},{"name":"SceneNodeCollection","features":[36,274]},{"name":"SceneObject","features":[274]},{"name":"ScenePbrMaterial","features":[274]},{"name":"SceneRendererComponent","features":[274]},{"name":"SceneSurfaceMaterialInput","features":[274]},{"name":"SceneVisual","features":[274]},{"name":"SceneWrappingMode","features":[274]}],"288":[{"name":"AcceleratorKeyEventArgs","features":[275]},{"name":"AppViewBackButtonVisibility","features":[275]},{"name":"AutomationProviderRequestedEventArgs","features":[275]},{"name":"BackRequestedEventArgs","features":[275]},{"name":"CharacterReceivedEventArgs","features":[275]},{"name":"ClosestInteractiveBoundsRequestedEventArgs","features":[275]},{"name":"CoreAcceleratorKeyEventType","features":[275]},{"name":"CoreAcceleratorKeys","features":[275]},{"name":"CoreComponentInputSource","features":[275]},{"name":"CoreCursor","features":[275]},{"name":"CoreCursorType","features":[275]},{"name":"CoreDispatcher","features":[275]},{"name":"CoreDispatcherPriority","features":[275]},{"name":"CoreIndependentInputFilters","features":[275]},{"name":"CoreIndependentInputSource","features":[275]},{"name":"CoreIndependentInputSourceController","features":[275]},{"name":"CoreInputDeviceTypes","features":[275]},{"name":"CorePhysicalKeyStatus","features":[275]},{"name":"CoreProcessEventsOption","features":[275]},{"name":"CoreProximityEvaluation","features":[76,275]},{"name":"CoreProximityEvaluationScore","features":[275]},{"name":"CoreVirtualKeyStates","features":[275]},{"name":"CoreWindow","features":[275]},{"name":"CoreWindowActivationMode","features":[275]},{"name":"CoreWindowActivationState","features":[275]},{"name":"CoreWindowDialog","features":[275]},{"name":"CoreWindowDialogsContract","features":[275]},{"name":"CoreWindowEventArgs","features":[275]},{"name":"CoreWindowFlowDirection","features":[275]},{"name":"CoreWindowFlyout","features":[275]},{"name":"CoreWindowPopupShowingEventArgs","features":[275]},{"name":"CoreWindowResizeManager","features":[275]},{"name":"DispatchedHandler","features":[275]},{"name":"IAcceleratorKeyEventArgs","features":[275]},{"name":"IAcceleratorKeyEventArgs2","features":[275]},{"name":"IAutomationProviderRequestedEventArgs","features":[275]},{"name":"IBackRequestedEventArgs","features":[275]},{"name":"ICharacterReceivedEventArgs","features":[275]},{"name":"IClosestInteractiveBoundsRequestedEventArgs","features":[275]},{"name":"ICoreAcceleratorKeys","features":[275]},{"name":"ICoreClosestInteractiveBoundsRequested","features":[275]},{"name":"ICoreComponentFocusable","features":[275]},{"name":"ICoreCursor","features":[275]},{"name":"ICoreCursorFactory","features":[275]},{"name":"ICoreDispatcher","features":[275]},{"name":"ICoreDispatcher2","features":[275]},{"name":"ICoreDispatcherWithTaskPriority","features":[275]},{"name":"ICoreIndependentInputSourceController","features":[275]},{"name":"ICoreIndependentInputSourceControllerStatics","features":[275]},{"name":"ICoreInputSourceBase","features":[275]},{"name":"ICoreKeyboardInputSource","features":[275]},{"name":"ICoreKeyboardInputSource2","features":[275]},{"name":"ICorePointerInputSource","features":[275]},{"name":"ICorePointerInputSource2","features":[275]},{"name":"ICorePointerRedirector","features":[275]},{"name":"ICoreTouchHitTesting","features":[275]},{"name":"ICoreWindow","features":[275]},{"name":"ICoreWindow2","features":[275]},{"name":"ICoreWindow3","features":[275]},{"name":"ICoreWindow4","features":[275]},{"name":"ICoreWindow5","features":[275]},{"name":"ICoreWindowDialog","features":[275]},{"name":"ICoreWindowDialogFactory","features":[275]},{"name":"ICoreWindowEventArgs","features":[275]},{"name":"ICoreWindowFlyout","features":[275]},{"name":"ICoreWindowFlyoutFactory","features":[275]},{"name":"ICoreWindowPopupShowingEventArgs","features":[275]},{"name":"ICoreWindowResizeManager","features":[275]},{"name":"ICoreWindowResizeManagerLayoutCapability","features":[275]},{"name":"ICoreWindowResizeManagerStatics","features":[275]},{"name":"ICoreWindowStatic","features":[275]},{"name":"ICoreWindowWithContext","features":[275]},{"name":"IIdleDispatchedHandlerArgs","features":[275]},{"name":"IInitializeWithCoreWindow","features":[275]},{"name":"IInputEnabledEventArgs","features":[275]},{"name":"IKeyEventArgs","features":[275]},{"name":"IKeyEventArgs2","features":[275]},{"name":"IPointerEventArgs","features":[275]},{"name":"ISystemNavigationManager","features":[275]},{"name":"ISystemNavigationManager2","features":[275]},{"name":"ISystemNavigationManagerStatics","features":[275]},{"name":"ITouchHitTestingEventArgs","features":[275]},{"name":"IVisibilityChangedEventArgs","features":[275]},{"name":"IWindowActivatedEventArgs","features":[275]},{"name":"IWindowSizeChangedEventArgs","features":[275]},{"name":"IdleDispatchedHandler","features":[275]},{"name":"IdleDispatchedHandlerArgs","features":[275]},{"name":"InputEnabledEventArgs","features":[275]},{"name":"KeyEventArgs","features":[275]},{"name":"PointerEventArgs","features":[275]},{"name":"SystemNavigationManager","features":[275]},{"name":"TouchHitTestingEventArgs","features":[275]},{"name":"VisibilityChangedEventArgs","features":[275]},{"name":"WindowActivatedEventArgs","features":[275]},{"name":"WindowSizeChangedEventArgs","features":[275]}],"289":[{"name":"AnimationDescription","features":[276]},{"name":"AnimationEffect","features":[276]},{"name":"AnimationEffectTarget","features":[276]},{"name":"AnimationMetricsContract","features":[276]},{"name":"IAnimationDescription","features":[276]},{"name":"IAnimationDescriptionFactory","features":[276]},{"name":"IOpacityAnimation","features":[276]},{"name":"IPropertyAnimation","features":[276]},{"name":"IScaleAnimation","features":[276]},{"name":"OpacityAnimation","features":[276]},{"name":"PropertyAnimation","features":[276]},{"name":"PropertyAnimationType","features":[276]},{"name":"ScaleAnimation","features":[276]},{"name":"TranslationAnimation","features":[276]}],"290":[{"name":"CoreAppWindowPreview","features":[277]},{"name":"ICoreAppWindowPreview","features":[277]},{"name":"ICoreAppWindowPreviewStatics","features":[277]},{"name":"ISystemNavigationCloseRequestedPreviewEventArgs","features":[277]},{"name":"ISystemNavigationManagerPreview","features":[277]},{"name":"ISystemNavigationManagerPreviewStatics","features":[277]},{"name":"SystemNavigationCloseRequestedPreviewEventArgs","features":[277]},{"name":"SystemNavigationManagerPreview","features":[277]}],"291":[{"name":"AttachableInputObject","features":[278]},{"name":"CrossSlideThresholds","features":[278]},{"name":"CrossSlidingEventArgs","features":[278]},{"name":"CrossSlidingState","features":[278]},{"name":"DraggingEventArgs","features":[278]},{"name":"DraggingState","features":[278]},{"name":"EdgeGesture","features":[278]},{"name":"EdgeGestureEventArgs","features":[278]},{"name":"EdgeGestureKind","features":[278]},{"name":"GazeInputAccessStatus","features":[278]},{"name":"GestureRecognizer","features":[278]},{"name":"GestureSettings","features":[278]},{"name":"HoldingEventArgs","features":[278]},{"name":"HoldingState","features":[278]},{"name":"IAttachableInputObject","features":[278]},{"name":"IAttachableInputObjectFactory","features":[278]},{"name":"ICrossSlidingEventArgs","features":[278]},{"name":"ICrossSlidingEventArgs2","features":[278]},{"name":"IDraggingEventArgs","features":[278]},{"name":"IDraggingEventArgs2","features":[278]},{"name":"IEdgeGesture","features":[278]},{"name":"IEdgeGestureEventArgs","features":[278]},{"name":"IEdgeGestureStatics","features":[278]},{"name":"IGestureRecognizer","features":[278]},{"name":"IGestureRecognizer2","features":[278]},{"name":"IHoldingEventArgs","features":[278]},{"name":"IHoldingEventArgs2","features":[278]},{"name":"IInputActivationListener","features":[278]},{"name":"IInputActivationListenerActivationChangedEventArgs","features":[278]},{"name":"IKeyboardDeliveryInterceptor","features":[278]},{"name":"IKeyboardDeliveryInterceptorStatics","features":[278]},{"name":"IManipulationCompletedEventArgs","features":[278]},{"name":"IManipulationCompletedEventArgs2","features":[278]},{"name":"IManipulationInertiaStartingEventArgs","features":[278]},{"name":"IManipulationInertiaStartingEventArgs2","features":[278]},{"name":"IManipulationStartedEventArgs","features":[278]},{"name":"IManipulationStartedEventArgs2","features":[278]},{"name":"IManipulationUpdatedEventArgs","features":[278]},{"name":"IManipulationUpdatedEventArgs2","features":[278]},{"name":"IMouseWheelParameters","features":[278]},{"name":"IPointerPoint","features":[278]},{"name":"IPointerPointProperties","features":[278]},{"name":"IPointerPointProperties2","features":[278]},{"name":"IPointerPointStatics","features":[278]},{"name":"IPointerPointTransform","features":[278]},{"name":"IPointerVisualizationSettings","features":[278]},{"name":"IPointerVisualizationSettingsStatics","features":[278]},{"name":"IRadialController","features":[278]},{"name":"IRadialController2","features":[278]},{"name":"IRadialControllerButtonClickedEventArgs","features":[278]},{"name":"IRadialControllerButtonClickedEventArgs2","features":[278]},{"name":"IRadialControllerButtonHoldingEventArgs","features":[278]},{"name":"IRadialControllerButtonPressedEventArgs","features":[278]},{"name":"IRadialControllerButtonReleasedEventArgs","features":[278]},{"name":"IRadialControllerConfiguration","features":[278]},{"name":"IRadialControllerConfiguration2","features":[278]},{"name":"IRadialControllerConfigurationStatics","features":[278]},{"name":"IRadialControllerConfigurationStatics2","features":[278]},{"name":"IRadialControllerControlAcquiredEventArgs","features":[278]},{"name":"IRadialControllerControlAcquiredEventArgs2","features":[278]},{"name":"IRadialControllerMenu","features":[278]},{"name":"IRadialControllerMenuItem","features":[278]},{"name":"IRadialControllerMenuItemStatics","features":[278]},{"name":"IRadialControllerMenuItemStatics2","features":[278]},{"name":"IRadialControllerRotationChangedEventArgs","features":[278]},{"name":"IRadialControllerRotationChangedEventArgs2","features":[278]},{"name":"IRadialControllerScreenContact","features":[278]},{"name":"IRadialControllerScreenContactContinuedEventArgs","features":[278]},{"name":"IRadialControllerScreenContactContinuedEventArgs2","features":[278]},{"name":"IRadialControllerScreenContactEndedEventArgs","features":[278]},{"name":"IRadialControllerScreenContactStartedEventArgs","features":[278]},{"name":"IRadialControllerScreenContactStartedEventArgs2","features":[278]},{"name":"IRadialControllerStatics","features":[278]},{"name":"IRightTappedEventArgs","features":[278]},{"name":"IRightTappedEventArgs2","features":[278]},{"name":"ISystemButtonEventController","features":[278]},{"name":"ISystemButtonEventControllerStatics","features":[278]},{"name":"ISystemFunctionButtonEventArgs","features":[278]},{"name":"ISystemFunctionLockChangedEventArgs","features":[278]},{"name":"ISystemFunctionLockIndicatorChangedEventArgs","features":[278]},{"name":"ITappedEventArgs","features":[278]},{"name":"ITappedEventArgs2","features":[278]},{"name":"InputActivationListener","features":[278]},{"name":"InputActivationListenerActivationChangedEventArgs","features":[278]},{"name":"InputActivationState","features":[278]},{"name":"KeyboardDeliveryInterceptor","features":[278]},{"name":"ManipulationCompletedEventArgs","features":[278]},{"name":"ManipulationDelta","features":[76,278]},{"name":"ManipulationInertiaStartingEventArgs","features":[278]},{"name":"ManipulationStartedEventArgs","features":[278]},{"name":"ManipulationUpdatedEventArgs","features":[278]},{"name":"ManipulationVelocities","features":[76,278]},{"name":"MouseWheelParameters","features":[278]},{"name":"PointerPoint","features":[278]},{"name":"PointerPointProperties","features":[278]},{"name":"PointerUpdateKind","features":[278]},{"name":"PointerVisualizationSettings","features":[278]},{"name":"RadialController","features":[278]},{"name":"RadialControllerButtonClickedEventArgs","features":[278]},{"name":"RadialControllerButtonHoldingEventArgs","features":[278]},{"name":"RadialControllerButtonPressedEventArgs","features":[278]},{"name":"RadialControllerButtonReleasedEventArgs","features":[278]},{"name":"RadialControllerConfiguration","features":[278]},{"name":"RadialControllerControlAcquiredEventArgs","features":[278]},{"name":"RadialControllerMenu","features":[278]},{"name":"RadialControllerMenuItem","features":[278]},{"name":"RadialControllerMenuKnownIcon","features":[278]},{"name":"RadialControllerRotationChangedEventArgs","features":[278]},{"name":"RadialControllerScreenContact","features":[278]},{"name":"RadialControllerScreenContactContinuedEventArgs","features":[278]},{"name":"RadialControllerScreenContactEndedEventArgs","features":[278]},{"name":"RadialControllerScreenContactStartedEventArgs","features":[278]},{"name":"RadialControllerSystemMenuItemKind","features":[278]},{"name":"RightTappedEventArgs","features":[278]},{"name":"SystemButtonEventController","features":[278]},{"name":"SystemFunctionButtonEventArgs","features":[278]},{"name":"SystemFunctionLockChangedEventArgs","features":[278]},{"name":"SystemFunctionLockIndicatorChangedEventArgs","features":[278]},{"name":"TappedEventArgs","features":[278]}],"292":[{"name":"IRadialControllerIndependentInputSource","features":[279]},{"name":"IRadialControllerIndependentInputSource2","features":[279]},{"name":"IRadialControllerIndependentInputSourceStatics","features":[279]},{"name":"RadialControllerIndependentInputSource","features":[279]}],"293":[{"name":"HandwritingLineHeight","features":[280]},{"name":"IInkDrawingAttributes","features":[280]},{"name":"IInkDrawingAttributes2","features":[280]},{"name":"IInkDrawingAttributes3","features":[280]},{"name":"IInkDrawingAttributes4","features":[280]},{"name":"IInkDrawingAttributes5","features":[280]},{"name":"IInkDrawingAttributesPencilProperties","features":[280]},{"name":"IInkDrawingAttributesStatics","features":[280]},{"name":"IInkInputConfiguration","features":[280]},{"name":"IInkInputConfiguration2","features":[280]},{"name":"IInkInputProcessingConfiguration","features":[280]},{"name":"IInkManager","features":[280]},{"name":"IInkModelerAttributes","features":[280]},{"name":"IInkModelerAttributes2","features":[280]},{"name":"IInkPoint","features":[280]},{"name":"IInkPoint2","features":[280]},{"name":"IInkPointFactory","features":[280]},{"name":"IInkPointFactory2","features":[280]},{"name":"IInkPresenter","features":[280]},{"name":"IInkPresenter2","features":[280]},{"name":"IInkPresenter3","features":[280]},{"name":"IInkPresenterProtractor","features":[280]},{"name":"IInkPresenterProtractorFactory","features":[280]},{"name":"IInkPresenterRuler","features":[280]},{"name":"IInkPresenterRuler2","features":[280]},{"name":"IInkPresenterRulerFactory","features":[280]},{"name":"IInkPresenterStencil","features":[280]},{"name":"IInkRecognitionResult","features":[280]},{"name":"IInkRecognizer","features":[280]},{"name":"IInkRecognizerContainer","features":[280]},{"name":"IInkStroke","features":[280]},{"name":"IInkStroke2","features":[280]},{"name":"IInkStroke3","features":[280]},{"name":"IInkStroke4","features":[280]},{"name":"IInkStrokeBuilder","features":[280]},{"name":"IInkStrokeBuilder2","features":[280]},{"name":"IInkStrokeBuilder3","features":[280]},{"name":"IInkStrokeContainer","features":[280]},{"name":"IInkStrokeContainer2","features":[280]},{"name":"IInkStrokeContainer3","features":[280]},{"name":"IInkStrokeInput","features":[280]},{"name":"IInkStrokeRenderingSegment","features":[280]},{"name":"IInkStrokesCollectedEventArgs","features":[280]},{"name":"IInkStrokesErasedEventArgs","features":[280]},{"name":"IInkSynchronizer","features":[280]},{"name":"IInkUnprocessedInput","features":[280]},{"name":"IPenAndInkSettings","features":[280]},{"name":"IPenAndInkSettings2","features":[280]},{"name":"IPenAndInkSettingsStatics","features":[280]},{"name":"InkDrawingAttributes","features":[280]},{"name":"InkDrawingAttributesKind","features":[280]},{"name":"InkDrawingAttributesPencilProperties","features":[280]},{"name":"InkHighContrastAdjustment","features":[280]},{"name":"InkInputConfiguration","features":[280]},{"name":"InkInputProcessingConfiguration","features":[280]},{"name":"InkInputProcessingMode","features":[280]},{"name":"InkInputRightDragAction","features":[280]},{"name":"InkManager","features":[280]},{"name":"InkManipulationMode","features":[280]},{"name":"InkModelerAttributes","features":[280]},{"name":"InkPersistenceFormat","features":[280]},{"name":"InkPoint","features":[280]},{"name":"InkPresenter","features":[280]},{"name":"InkPresenterPredefinedConfiguration","features":[280]},{"name":"InkPresenterProtractor","features":[280]},{"name":"InkPresenterRuler","features":[280]},{"name":"InkPresenterStencilKind","features":[280]},{"name":"InkRecognitionResult","features":[280]},{"name":"InkRecognitionTarget","features":[280]},{"name":"InkRecognizer","features":[280]},{"name":"InkRecognizerContainer","features":[280]},{"name":"InkStroke","features":[280]},{"name":"InkStrokeBuilder","features":[280]},{"name":"InkStrokeContainer","features":[280]},{"name":"InkStrokeInput","features":[280]},{"name":"InkStrokeRenderingSegment","features":[280]},{"name":"InkStrokesCollectedEventArgs","features":[280]},{"name":"InkStrokesErasedEventArgs","features":[280]},{"name":"InkSynchronizer","features":[280]},{"name":"InkUnprocessedInput","features":[280]},{"name":"PenAndInkSettings","features":[280]},{"name":"PenHandedness","features":[280]},{"name":"PenTipShape","features":[280]}],"294":[{"name":"IInkAnalysisInkBullet","features":[281]},{"name":"IInkAnalysisInkDrawing","features":[281]},{"name":"IInkAnalysisInkWord","features":[281]},{"name":"IInkAnalysisLine","features":[281]},{"name":"IInkAnalysisListItem","features":[281]},{"name":"IInkAnalysisNode","features":[281]},{"name":"IInkAnalysisParagraph","features":[281]},{"name":"IInkAnalysisResult","features":[281]},{"name":"IInkAnalysisRoot","features":[281]},{"name":"IInkAnalysisWritingRegion","features":[281]},{"name":"IInkAnalyzer","features":[281]},{"name":"IInkAnalyzerFactory","features":[281]},{"name":"InkAnalysisDrawingKind","features":[281]},{"name":"InkAnalysisInkBullet","features":[281]},{"name":"InkAnalysisInkDrawing","features":[281]},{"name":"InkAnalysisInkWord","features":[281]},{"name":"InkAnalysisLine","features":[281]},{"name":"InkAnalysisListItem","features":[281]},{"name":"InkAnalysisNode","features":[281]},{"name":"InkAnalysisNodeKind","features":[281]},{"name":"InkAnalysisParagraph","features":[281]},{"name":"InkAnalysisResult","features":[281]},{"name":"InkAnalysisRoot","features":[281]},{"name":"InkAnalysisStatus","features":[281]},{"name":"InkAnalysisStrokeKind","features":[281]},{"name":"InkAnalysisWritingRegion","features":[281]},{"name":"InkAnalyzer","features":[281]}],"295":[{"name":"CoreIncrementalInkStroke","features":[282]},{"name":"CoreInkIndependentInputSource","features":[282]},{"name":"CoreInkPresenterHost","features":[282]},{"name":"CoreWetStrokeDisposition","features":[282]},{"name":"CoreWetStrokeUpdateEventArgs","features":[282]},{"name":"CoreWetStrokeUpdateSource","features":[282]},{"name":"ICoreIncrementalInkStroke","features":[282]},{"name":"ICoreIncrementalInkStrokeFactory","features":[282]},{"name":"ICoreInkIndependentInputSource","features":[282]},{"name":"ICoreInkIndependentInputSource2","features":[282]},{"name":"ICoreInkIndependentInputSourceStatics","features":[282]},{"name":"ICoreInkPresenterHost","features":[282]},{"name":"ICoreWetStrokeUpdateEventArgs","features":[282]},{"name":"ICoreWetStrokeUpdateSource","features":[282]},{"name":"ICoreWetStrokeUpdateSourceStatics","features":[282]}],"296":[{"name":"IPalmRejectionDelayZonePreview","features":[283]},{"name":"IPalmRejectionDelayZonePreviewStatics","features":[283]},{"name":"PalmRejectionDelayZonePreview","features":[283]}],"297":[{"name":"IInputActivationListenerPreviewStatics","features":[284]},{"name":"InputActivationListenerPreview","features":[284]}],"298":[{"name":"IInjectedInputGamepadInfo","features":[285]},{"name":"IInjectedInputGamepadInfoFactory","features":[285]},{"name":"IInjectedInputKeyboardInfo","features":[285]},{"name":"IInjectedInputMouseInfo","features":[285]},{"name":"IInjectedInputPenInfo","features":[285]},{"name":"IInjectedInputTouchInfo","features":[285]},{"name":"IInputInjector","features":[285]},{"name":"IInputInjector2","features":[285]},{"name":"IInputInjectorStatics","features":[285]},{"name":"IInputInjectorStatics2","features":[285]},{"name":"InjectedInputButtonChangeKind","features":[285]},{"name":"InjectedInputGamepadInfo","features":[285]},{"name":"InjectedInputKeyOptions","features":[285]},{"name":"InjectedInputKeyboardInfo","features":[285]},{"name":"InjectedInputMouseInfo","features":[285]},{"name":"InjectedInputMouseOptions","features":[285]},{"name":"InjectedInputPenButtons","features":[285]},{"name":"InjectedInputPenInfo","features":[285]},{"name":"InjectedInputPenParameters","features":[285]},{"name":"InjectedInputPoint","features":[285]},{"name":"InjectedInputPointerInfo","features":[285]},{"name":"InjectedInputPointerOptions","features":[285]},{"name":"InjectedInputRectangle","features":[285]},{"name":"InjectedInputShortcut","features":[285]},{"name":"InjectedInputTouchInfo","features":[285]},{"name":"InjectedInputTouchParameters","features":[285]},{"name":"InjectedInputVisualizationMode","features":[285]},{"name":"InputInjector","features":[285]}],"299":[{"name":"ISpatialGestureRecognizer","features":[286]},{"name":"ISpatialGestureRecognizerFactory","features":[286]},{"name":"ISpatialHoldCanceledEventArgs","features":[286]},{"name":"ISpatialHoldCompletedEventArgs","features":[286]},{"name":"ISpatialHoldStartedEventArgs","features":[286]},{"name":"ISpatialInteraction","features":[286]},{"name":"ISpatialInteractionController","features":[286]},{"name":"ISpatialInteractionController2","features":[286]},{"name":"ISpatialInteractionController3","features":[286]},{"name":"ISpatialInteractionControllerProperties","features":[286]},{"name":"ISpatialInteractionDetectedEventArgs","features":[286]},{"name":"ISpatialInteractionDetectedEventArgs2","features":[286]},{"name":"ISpatialInteractionManager","features":[286]},{"name":"ISpatialInteractionManagerStatics","features":[286]},{"name":"ISpatialInteractionManagerStatics2","features":[286]},{"name":"ISpatialInteractionSource","features":[286]},{"name":"ISpatialInteractionSource2","features":[286]},{"name":"ISpatialInteractionSource3","features":[286]},{"name":"ISpatialInteractionSource4","features":[286]},{"name":"ISpatialInteractionSourceEventArgs","features":[286]},{"name":"ISpatialInteractionSourceEventArgs2","features":[286]},{"name":"ISpatialInteractionSourceLocation","features":[286]},{"name":"ISpatialInteractionSourceLocation2","features":[286]},{"name":"ISpatialInteractionSourceLocation3","features":[286]},{"name":"ISpatialInteractionSourceProperties","features":[286]},{"name":"ISpatialInteractionSourceState","features":[286]},{"name":"ISpatialInteractionSourceState2","features":[286]},{"name":"ISpatialInteractionSourceState3","features":[286]},{"name":"ISpatialManipulationCanceledEventArgs","features":[286]},{"name":"ISpatialManipulationCompletedEventArgs","features":[286]},{"name":"ISpatialManipulationDelta","features":[286]},{"name":"ISpatialManipulationStartedEventArgs","features":[286]},{"name":"ISpatialManipulationUpdatedEventArgs","features":[286]},{"name":"ISpatialNavigationCanceledEventArgs","features":[286]},{"name":"ISpatialNavigationCompletedEventArgs","features":[286]},{"name":"ISpatialNavigationStartedEventArgs","features":[286]},{"name":"ISpatialNavigationUpdatedEventArgs","features":[286]},{"name":"ISpatialPointerInteractionSourcePose","features":[286]},{"name":"ISpatialPointerInteractionSourcePose2","features":[286]},{"name":"ISpatialPointerPose","features":[286]},{"name":"ISpatialPointerPose2","features":[286]},{"name":"ISpatialPointerPose3","features":[286]},{"name":"ISpatialPointerPoseStatics","features":[286]},{"name":"ISpatialRecognitionEndedEventArgs","features":[286]},{"name":"ISpatialRecognitionStartedEventArgs","features":[286]},{"name":"ISpatialTappedEventArgs","features":[286]},{"name":"SpatialGestureRecognizer","features":[286]},{"name":"SpatialGestureSettings","features":[286]},{"name":"SpatialHoldCanceledEventArgs","features":[286]},{"name":"SpatialHoldCompletedEventArgs","features":[286]},{"name":"SpatialHoldStartedEventArgs","features":[286]},{"name":"SpatialInteraction","features":[286]},{"name":"SpatialInteractionController","features":[286]},{"name":"SpatialInteractionControllerProperties","features":[286]},{"name":"SpatialInteractionDetectedEventArgs","features":[286]},{"name":"SpatialInteractionManager","features":[286]},{"name":"SpatialInteractionPressKind","features":[286]},{"name":"SpatialInteractionSource","features":[286]},{"name":"SpatialInteractionSourceEventArgs","features":[286]},{"name":"SpatialInteractionSourceHandedness","features":[286]},{"name":"SpatialInteractionSourceKind","features":[286]},{"name":"SpatialInteractionSourceLocation","features":[286]},{"name":"SpatialInteractionSourcePositionAccuracy","features":[286]},{"name":"SpatialInteractionSourceProperties","features":[286]},{"name":"SpatialInteractionSourceState","features":[286]},{"name":"SpatialManipulationCanceledEventArgs","features":[286]},{"name":"SpatialManipulationCompletedEventArgs","features":[286]},{"name":"SpatialManipulationDelta","features":[286]},{"name":"SpatialManipulationStartedEventArgs","features":[286]},{"name":"SpatialManipulationUpdatedEventArgs","features":[286]},{"name":"SpatialNavigationCanceledEventArgs","features":[286]},{"name":"SpatialNavigationCompletedEventArgs","features":[286]},{"name":"SpatialNavigationStartedEventArgs","features":[286]},{"name":"SpatialNavigationUpdatedEventArgs","features":[286]},{"name":"SpatialPointerInteractionSourcePose","features":[286]},{"name":"SpatialPointerPose","features":[286]},{"name":"SpatialRecognitionEndedEventArgs","features":[286]},{"name":"SpatialRecognitionStartedEventArgs","features":[286]},{"name":"SpatialTappedEventArgs","features":[286]}],"300":[{"name":"AdaptiveNotificationContentKind","features":[287]},{"name":"AdaptiveNotificationText","features":[287]},{"name":"BadgeNotification","features":[287]},{"name":"BadgeTemplateType","features":[287]},{"name":"BadgeUpdateManager","features":[287]},{"name":"BadgeUpdateManagerForUser","features":[287]},{"name":"BadgeUpdater","features":[287]},{"name":"IAdaptiveNotificationContent","features":[287]},{"name":"IAdaptiveNotificationText","features":[287]},{"name":"IBadgeNotification","features":[287]},{"name":"IBadgeNotificationFactory","features":[287]},{"name":"IBadgeUpdateManagerForUser","features":[287]},{"name":"IBadgeUpdateManagerStatics","features":[287]},{"name":"IBadgeUpdateManagerStatics2","features":[287]},{"name":"IBadgeUpdater","features":[287]},{"name":"IKnownAdaptiveNotificationHintsStatics","features":[287]},{"name":"IKnownAdaptiveNotificationTextStylesStatics","features":[287]},{"name":"IKnownNotificationBindingsStatics","features":[287]},{"name":"INotification","features":[287]},{"name":"INotificationBinding","features":[287]},{"name":"INotificationData","features":[287]},{"name":"INotificationDataFactory","features":[287]},{"name":"INotificationVisual","features":[287]},{"name":"IScheduledTileNotification","features":[287]},{"name":"IScheduledTileNotificationFactory","features":[287]},{"name":"IScheduledToastNotification","features":[287]},{"name":"IScheduledToastNotification2","features":[287]},{"name":"IScheduledToastNotification3","features":[287]},{"name":"IScheduledToastNotification4","features":[287]},{"name":"IScheduledToastNotificationFactory","features":[287]},{"name":"IScheduledToastNotificationShowingEventArgs","features":[287]},{"name":"IShownTileNotification","features":[287]},{"name":"ITileFlyoutNotification","features":[287]},{"name":"ITileFlyoutNotificationFactory","features":[287]},{"name":"ITileFlyoutUpdateManagerStatics","features":[287]},{"name":"ITileFlyoutUpdater","features":[287]},{"name":"ITileNotification","features":[287]},{"name":"ITileNotificationFactory","features":[287]},{"name":"ITileUpdateManagerForUser","features":[287]},{"name":"ITileUpdateManagerStatics","features":[287]},{"name":"ITileUpdateManagerStatics2","features":[287]},{"name":"ITileUpdater","features":[287]},{"name":"ITileUpdater2","features":[287]},{"name":"IToastActivatedEventArgs","features":[287]},{"name":"IToastActivatedEventArgs2","features":[287]},{"name":"IToastCollection","features":[287]},{"name":"IToastCollectionFactory","features":[287]},{"name":"IToastCollectionManager","features":[287]},{"name":"IToastDismissedEventArgs","features":[287]},{"name":"IToastFailedEventArgs","features":[287]},{"name":"IToastNotification","features":[287]},{"name":"IToastNotification2","features":[287]},{"name":"IToastNotification3","features":[287]},{"name":"IToastNotification4","features":[287]},{"name":"IToastNotification6","features":[287]},{"name":"IToastNotificationActionTriggerDetail","features":[287]},{"name":"IToastNotificationFactory","features":[287]},{"name":"IToastNotificationHistory","features":[287]},{"name":"IToastNotificationHistory2","features":[287]},{"name":"IToastNotificationHistoryChangedTriggerDetail","features":[287]},{"name":"IToastNotificationHistoryChangedTriggerDetail2","features":[287]},{"name":"IToastNotificationManagerForUser","features":[287]},{"name":"IToastNotificationManagerForUser2","features":[287]},{"name":"IToastNotificationManagerForUser3","features":[287]},{"name":"IToastNotificationManagerStatics","features":[287]},{"name":"IToastNotificationManagerStatics2","features":[287]},{"name":"IToastNotificationManagerStatics4","features":[287]},{"name":"IToastNotificationManagerStatics5","features":[287]},{"name":"IToastNotifier","features":[287]},{"name":"IToastNotifier2","features":[287]},{"name":"IToastNotifier3","features":[287]},{"name":"IUserNotification","features":[287]},{"name":"IUserNotificationChangedEventArgs","features":[287]},{"name":"KnownAdaptiveNotificationHints","features":[287]},{"name":"KnownAdaptiveNotificationTextStyles","features":[287]},{"name":"KnownNotificationBindings","features":[287]},{"name":"Notification","features":[287]},{"name":"NotificationBinding","features":[287]},{"name":"NotificationData","features":[287]},{"name":"NotificationKinds","features":[287]},{"name":"NotificationMirroring","features":[287]},{"name":"NotificationSetting","features":[287]},{"name":"NotificationUpdateResult","features":[287]},{"name":"NotificationVisual","features":[287]},{"name":"PeriodicUpdateRecurrence","features":[287]},{"name":"ScheduledTileNotification","features":[287]},{"name":"ScheduledToastNotification","features":[287]},{"name":"ScheduledToastNotificationShowingEventArgs","features":[287]},{"name":"ShownTileNotification","features":[287]},{"name":"TileFlyoutNotification","features":[287]},{"name":"TileFlyoutTemplateType","features":[287]},{"name":"TileFlyoutUpdateManager","features":[287]},{"name":"TileFlyoutUpdater","features":[287]},{"name":"TileNotification","features":[287]},{"name":"TileTemplateType","features":[287]},{"name":"TileUpdateManager","features":[287]},{"name":"TileUpdateManagerForUser","features":[287]},{"name":"TileUpdater","features":[287]},{"name":"ToastActivatedEventArgs","features":[287]},{"name":"ToastCollection","features":[287]},{"name":"ToastCollectionManager","features":[287]},{"name":"ToastDismissalReason","features":[287]},{"name":"ToastDismissedEventArgs","features":[287]},{"name":"ToastFailedEventArgs","features":[287]},{"name":"ToastHistoryChangedType","features":[287]},{"name":"ToastNotification","features":[287]},{"name":"ToastNotificationActionTriggerDetail","features":[287]},{"name":"ToastNotificationHistory","features":[287]},{"name":"ToastNotificationHistoryChangedTriggerDetail","features":[287]},{"name":"ToastNotificationManager","features":[287]},{"name":"ToastNotificationManagerForUser","features":[287]},{"name":"ToastNotificationMode","features":[287]},{"name":"ToastNotificationPriority","features":[287]},{"name":"ToastNotifier","features":[287]},{"name":"ToastTemplateType","features":[287]},{"name":"UserNotification","features":[287]},{"name":"UserNotificationChangedEventArgs","features":[287]},{"name":"UserNotificationChangedKind","features":[287]}],"301":[{"name":"IUserNotificationListener","features":[288]},{"name":"IUserNotificationListenerStatics","features":[288]},{"name":"UserNotificationListener","features":[288]},{"name":"UserNotificationListenerAccessStatus","features":[288]}],"302":[{"name":"IToastOcclusionManagerPreviewStatics","features":[289]},{"name":"ToastOcclusionManagerPreview","features":[289]}],"303":[{"name":"IMessageDialog","features":[267]},{"name":"IMessageDialogFactory","features":[267]},{"name":"IPopupMenu","features":[267]},{"name":"IUICommand","features":[267]},{"name":"IUICommandFactory","features":[267]},{"name":"MessageDialog","features":[267]},{"name":"MessageDialogOptions","features":[267]},{"name":"Placement","features":[267]},{"name":"PopupMenu","features":[267]},{"name":"UICommand","features":[267]},{"name":"UICommandInvokedHandler","features":[267]},{"name":"UICommandSeparator","features":[267]}],"304":[{"name":"AdaptiveCardBuilder","features":[290]},{"name":"FocusSession","features":[290]},{"name":"FocusSessionManager","features":[290]},{"name":"IAdaptiveCard","features":[290]},{"name":"IAdaptiveCardBuilderStatics","features":[290]},{"name":"IFocusSession","features":[290]},{"name":"IFocusSessionManager","features":[290]},{"name":"IFocusSessionManagerStatics","features":[290]},{"name":"ISecurityAppManager","features":[290]},{"name":"IShareWindowCommandEventArgs","features":[290]},{"name":"IShareWindowCommandSource","features":[290]},{"name":"IShareWindowCommandSourceStatics","features":[290]},{"name":"ITaskbarManager","features":[290]},{"name":"ITaskbarManager2","features":[290]},{"name":"ITaskbarManagerDesktopAppSupportStatics","features":[290]},{"name":"ITaskbarManagerStatics","features":[290]},{"name":"IWindowTab","features":[290]},{"name":"IWindowTabCloseRequestedEventArgs","features":[290]},{"name":"IWindowTabCollection","features":[290]},{"name":"IWindowTabGroup","features":[290]},{"name":"IWindowTabIcon","features":[290]},{"name":"IWindowTabIconStatics","features":[290]},{"name":"IWindowTabManager","features":[290]},{"name":"IWindowTabManagerStatics","features":[290]},{"name":"IWindowTabSwitchRequestedEventArgs","features":[290]},{"name":"IWindowTabTearOutRequestedEventArgs","features":[290]},{"name":"IWindowTabThumbnailRequestedEventArgs","features":[290]},{"name":"SecurityAppKind","features":[290]},{"name":"SecurityAppManager","features":[290]},{"name":"SecurityAppManagerContract","features":[290]},{"name":"SecurityAppState","features":[290]},{"name":"SecurityAppSubstatus","features":[290]},{"name":"ShareWindowCommand","features":[290]},{"name":"ShareWindowCommandEventArgs","features":[290]},{"name":"ShareWindowCommandSource","features":[290]},{"name":"TaskbarManager","features":[290]},{"name":"WindowTab","features":[290]},{"name":"WindowTabCloseRequestedEventArgs","features":[290]},{"name":"WindowTabCollection","features":[290]},{"name":"WindowTabGroup","features":[290]},{"name":"WindowTabIcon","features":[290]},{"name":"WindowTabManager","features":[290]},{"name":"WindowTabManagerContract","features":[290]},{"name":"WindowTabSwitchRequestedEventArgs","features":[290]},{"name":"WindowTabTearOutRequestedEventArgs","features":[290]},{"name":"WindowTabThumbnailRequestedEventArgs","features":[290]}],"305":[{"name":"ForegroundText","features":[291]},{"name":"IJumpList","features":[291]},{"name":"IJumpListItem","features":[291]},{"name":"IJumpListItemStatics","features":[291]},{"name":"IJumpListStatics","features":[291]},{"name":"ISecondaryTile","features":[291]},{"name":"ISecondaryTile2","features":[291]},{"name":"ISecondaryTileFactory","features":[291]},{"name":"ISecondaryTileFactory2","features":[291]},{"name":"ISecondaryTileStatics","features":[291]},{"name":"ISecondaryTileVisualElements","features":[291]},{"name":"ISecondaryTileVisualElements2","features":[291]},{"name":"ISecondaryTileVisualElements3","features":[291]},{"name":"ISecondaryTileVisualElements4","features":[291]},{"name":"IStartScreenManager","features":[291]},{"name":"IStartScreenManager2","features":[291]},{"name":"IStartScreenManagerStatics","features":[291]},{"name":"ITileMixedRealityModel","features":[291]},{"name":"ITileMixedRealityModel2","features":[291]},{"name":"IVisualElementsRequest","features":[291]},{"name":"IVisualElementsRequestDeferral","features":[291]},{"name":"IVisualElementsRequestedEventArgs","features":[291]},{"name":"JumpList","features":[291]},{"name":"JumpListItem","features":[291]},{"name":"JumpListItemKind","features":[291]},{"name":"JumpListSystemGroupKind","features":[291]},{"name":"SecondaryTile","features":[291]},{"name":"SecondaryTileVisualElements","features":[291]},{"name":"StartScreenManager","features":[291]},{"name":"TileMixedRealityModel","features":[291]},{"name":"TileMixedRealityModelActivationBehavior","features":[291]},{"name":"TileOptions","features":[291]},{"name":"TileSize","features":[291]},{"name":"VisualElementsRequest","features":[291]},{"name":"VisualElementsRequestDeferral","features":[291]},{"name":"VisualElementsRequestedEventArgs","features":[291]}],"306":[{"name":"CaretType","features":[292]},{"name":"ContentLinkInfo","features":[292]},{"name":"FindOptions","features":[292]},{"name":"FontStretch","features":[292]},{"name":"FontStyle","features":[292]},{"name":"FontWeight","features":[292]},{"name":"FontWeights","features":[292]},{"name":"FormatEffect","features":[292]},{"name":"HorizontalCharacterAlignment","features":[292]},{"name":"IContentLinkInfo","features":[292]},{"name":"IFontWeights","features":[292]},{"name":"IFontWeightsStatics","features":[292]},{"name":"IRichEditTextRange","features":[292]},{"name":"ITextCharacterFormat","features":[292]},{"name":"ITextConstantsStatics","features":[292]},{"name":"ITextDocument","features":[292]},{"name":"ITextDocument2","features":[292]},{"name":"ITextDocument3","features":[292]},{"name":"ITextDocument4","features":[292]},{"name":"ITextParagraphFormat","features":[292]},{"name":"ITextRange","features":[292]},{"name":"ITextSelection","features":[292]},{"name":"LetterCase","features":[292]},{"name":"LineSpacingRule","features":[292]},{"name":"LinkType","features":[292]},{"name":"MarkerAlignment","features":[292]},{"name":"MarkerStyle","features":[292]},{"name":"MarkerType","features":[292]},{"name":"ParagraphAlignment","features":[292]},{"name":"ParagraphStyle","features":[292]},{"name":"PointOptions","features":[292]},{"name":"RangeGravity","features":[292]},{"name":"RichEditMathMode","features":[292]},{"name":"RichEditTextDocument","features":[292]},{"name":"RichEditTextRange","features":[292]},{"name":"SelectionOptions","features":[292]},{"name":"SelectionType","features":[292]},{"name":"TabAlignment","features":[292]},{"name":"TabLeader","features":[292]},{"name":"TextConstants","features":[292]},{"name":"TextDecorations","features":[292]},{"name":"TextGetOptions","features":[292]},{"name":"TextRangeUnit","features":[292]},{"name":"TextScript","features":[292]},{"name":"TextSetOptions","features":[292]},{"name":"UnderlineType","features":[292]},{"name":"VerticalCharacterAlignment","features":[292]}],"307":[{"name":"CoreTextCompositionCompletedEventArgs","features":[293]},{"name":"CoreTextCompositionSegment","features":[293]},{"name":"CoreTextCompositionStartedEventArgs","features":[293]},{"name":"CoreTextEditContext","features":[293]},{"name":"CoreTextFormatUpdatingEventArgs","features":[293]},{"name":"CoreTextFormatUpdatingReason","features":[293]},{"name":"CoreTextFormatUpdatingResult","features":[293]},{"name":"CoreTextInputPaneDisplayPolicy","features":[293]},{"name":"CoreTextInputScope","features":[293]},{"name":"CoreTextLayoutBounds","features":[293]},{"name":"CoreTextLayoutRequest","features":[293]},{"name":"CoreTextLayoutRequestedEventArgs","features":[293]},{"name":"CoreTextRange","features":[293]},{"name":"CoreTextSelectionRequest","features":[293]},{"name":"CoreTextSelectionRequestedEventArgs","features":[293]},{"name":"CoreTextSelectionUpdatingEventArgs","features":[293]},{"name":"CoreTextSelectionUpdatingResult","features":[293]},{"name":"CoreTextServicesConstants","features":[293]},{"name":"CoreTextServicesManager","features":[293]},{"name":"CoreTextTextRequest","features":[293]},{"name":"CoreTextTextRequestedEventArgs","features":[293]},{"name":"CoreTextTextUpdatingEventArgs","features":[293]},{"name":"CoreTextTextUpdatingResult","features":[293]},{"name":"ICoreTextCompositionCompletedEventArgs","features":[293]},{"name":"ICoreTextCompositionSegment","features":[293]},{"name":"ICoreTextCompositionStartedEventArgs","features":[293]},{"name":"ICoreTextEditContext","features":[293]},{"name":"ICoreTextEditContext2","features":[293]},{"name":"ICoreTextFormatUpdatingEventArgs","features":[293]},{"name":"ICoreTextLayoutBounds","features":[293]},{"name":"ICoreTextLayoutRequest","features":[293]},{"name":"ICoreTextLayoutRequest2","features":[293]},{"name":"ICoreTextLayoutRequestedEventArgs","features":[293]},{"name":"ICoreTextSelectionRequest","features":[293]},{"name":"ICoreTextSelectionRequestedEventArgs","features":[293]},{"name":"ICoreTextSelectionUpdatingEventArgs","features":[293]},{"name":"ICoreTextServicesManager","features":[293]},{"name":"ICoreTextServicesManagerStatics","features":[293]},{"name":"ICoreTextServicesStatics","features":[293]},{"name":"ICoreTextTextRequest","features":[293]},{"name":"ICoreTextTextRequestedEventArgs","features":[293]},{"name":"ICoreTextTextUpdatingEventArgs","features":[293]}],"308":[{"name":"AutomationConnection","features":[294]},{"name":"AutomationConnectionBoundObject","features":[294]},{"name":"AutomationElement","features":[294]},{"name":"AutomationTextRange","features":[294]},{"name":"IAutomationConnection","features":[294]},{"name":"IAutomationConnectionBoundObject","features":[294]},{"name":"IAutomationElement","features":[294]},{"name":"IAutomationTextRange","features":[294]},{"name":"UIAutomationContract","features":[294]}],"309":[{"name":"AutomationAnnotationTypeRegistration","features":[295]},{"name":"AutomationRemoteOperationOperandId","features":[295]},{"name":"AutomationRemoteOperationResult","features":[295]},{"name":"AutomationRemoteOperationStatus","features":[295]},{"name":"CoreAutomationRegistrar","features":[295]},{"name":"CoreAutomationRemoteOperation","features":[295]},{"name":"CoreAutomationRemoteOperationContext","features":[295]},{"name":"IAutomationRemoteOperationResult","features":[295]},{"name":"ICoreAutomationConnectionBoundObjectProvider","features":[295]},{"name":"ICoreAutomationRegistrarStatics","features":[295]},{"name":"ICoreAutomationRemoteOperation","features":[295]},{"name":"ICoreAutomationRemoteOperation2","features":[295]},{"name":"ICoreAutomationRemoteOperationContext","features":[295]},{"name":"ICoreAutomationRemoteOperationExtensionProvider","features":[295]},{"name":"IRemoteAutomationClientSession","features":[295]},{"name":"IRemoteAutomationClientSessionFactory","features":[295]},{"name":"IRemoteAutomationConnectionRequestedEventArgs","features":[295]},{"name":"IRemoteAutomationDisconnectedEventArgs","features":[295]},{"name":"IRemoteAutomationServerStatics","features":[295]},{"name":"IRemoteAutomationWindow","features":[295]},{"name":"RemoteAutomationClientSession","features":[295]},{"name":"RemoteAutomationConnectionRequestedEventArgs","features":[295]},{"name":"RemoteAutomationDisconnectedEventArgs","features":[295]},{"name":"RemoteAutomationServer","features":[295]},{"name":"RemoteAutomationWindow","features":[295]}],"310":[{"name":"AccessibilitySettings","features":[296]},{"name":"ActivationViewSwitcher","features":[296]},{"name":"ApplicationView","features":[296]},{"name":"ApplicationViewBoundsMode","features":[296]},{"name":"ApplicationViewConsolidatedEventArgs","features":[296]},{"name":"ApplicationViewMode","features":[296]},{"name":"ApplicationViewOrientation","features":[296]},{"name":"ApplicationViewScaling","features":[296]},{"name":"ApplicationViewState","features":[296]},{"name":"ApplicationViewSwitcher","features":[296]},{"name":"ApplicationViewSwitchingOptions","features":[296]},{"name":"ApplicationViewTitleBar","features":[296]},{"name":"ApplicationViewTransferContext","features":[296]},{"name":"ApplicationViewWindowingMode","features":[296]},{"name":"FullScreenSystemOverlayMode","features":[296]},{"name":"HandPreference","features":[296]},{"name":"IAccessibilitySettings","features":[296]},{"name":"IActivationViewSwitcher","features":[296]},{"name":"IApplicationView","features":[296]},{"name":"IApplicationView2","features":[296]},{"name":"IApplicationView3","features":[296]},{"name":"IApplicationView4","features":[296]},{"name":"IApplicationView7","features":[296]},{"name":"IApplicationView9","features":[296]},{"name":"IApplicationViewConsolidatedEventArgs","features":[296]},{"name":"IApplicationViewConsolidatedEventArgs2","features":[296]},{"name":"IApplicationViewFullscreenStatics","features":[296]},{"name":"IApplicationViewInteropStatics","features":[296]},{"name":"IApplicationViewScaling","features":[296]},{"name":"IApplicationViewScalingStatics","features":[296]},{"name":"IApplicationViewStatics","features":[296]},{"name":"IApplicationViewStatics2","features":[296]},{"name":"IApplicationViewStatics3","features":[296]},{"name":"IApplicationViewStatics4","features":[296]},{"name":"IApplicationViewSwitcherStatics","features":[296]},{"name":"IApplicationViewSwitcherStatics2","features":[296]},{"name":"IApplicationViewSwitcherStatics3","features":[296]},{"name":"IApplicationViewTitleBar","features":[296]},{"name":"IApplicationViewTransferContext","features":[296]},{"name":"IApplicationViewTransferContextStatics","features":[296]},{"name":"IApplicationViewWithContext","features":[296]},{"name":"IInputPane","features":[296]},{"name":"IInputPane2","features":[296]},{"name":"IInputPaneControl","features":[296]},{"name":"IInputPaneStatics","features":[296]},{"name":"IInputPaneStatics2","features":[296]},{"name":"IInputPaneVisibilityEventArgs","features":[296]},{"name":"IProjectionManagerStatics","features":[296]},{"name":"IProjectionManagerStatics2","features":[296]},{"name":"IStatusBar","features":[296]},{"name":"IStatusBarProgressIndicator","features":[296]},{"name":"IStatusBarStatics","features":[296]},{"name":"IUISettings","features":[296]},{"name":"IUISettings2","features":[296]},{"name":"IUISettings3","features":[296]},{"name":"IUISettings4","features":[296]},{"name":"IUISettings5","features":[296]},{"name":"IUISettings6","features":[296]},{"name":"IUISettingsAnimationsEnabledChangedEventArgs","features":[296]},{"name":"IUISettingsAutoHideScrollBarsChangedEventArgs","features":[296]},{"name":"IUISettingsMessageDurationChangedEventArgs","features":[296]},{"name":"IUIViewSettings","features":[296]},{"name":"IUIViewSettingsStatics","features":[296]},{"name":"IViewModePreferences","features":[296]},{"name":"IViewModePreferencesStatics","features":[296]},{"name":"InputPane","features":[296]},{"name":"InputPaneVisibilityEventArgs","features":[296]},{"name":"ProjectionManager","features":[296]},{"name":"ScreenCaptureDisabledBehavior","features":[296]},{"name":"StatusBar","features":[296]},{"name":"StatusBarProgressIndicator","features":[296]},{"name":"UIColorType","features":[296]},{"name":"UIElementType","features":[296]},{"name":"UISettings","features":[296]},{"name":"UISettingsAnimationsEnabledChangedEventArgs","features":[296]},{"name":"UISettingsAutoHideScrollBarsChangedEventArgs","features":[296]},{"name":"UISettingsMessageDurationChangedEventArgs","features":[296]},{"name":"UIViewSettings","features":[296]},{"name":"UserInteractionMode","features":[296]},{"name":"ViewManagementViewScalingContract","features":[296]},{"name":"ViewModePreferences","features":[296]},{"name":"ViewSizePreference","features":[296]}],"311":[{"name":"CoreFrameworkInputView","features":[297]},{"name":"CoreFrameworkInputViewAnimationStartingEventArgs","features":[297]},{"name":"CoreFrameworkInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"CoreInputView","features":[297]},{"name":"CoreInputViewAnimationStartingEventArgs","features":[297]},{"name":"CoreInputViewHidingEventArgs","features":[297]},{"name":"CoreInputViewKind","features":[297]},{"name":"CoreInputViewOcclusion","features":[297]},{"name":"CoreInputViewOcclusionKind","features":[297]},{"name":"CoreInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"CoreInputViewShowingEventArgs","features":[297]},{"name":"CoreInputViewTransferringXYFocusEventArgs","features":[297]},{"name":"CoreInputViewXYFocusTransferDirection","features":[297]},{"name":"ICoreFrameworkInputView","features":[297]},{"name":"ICoreFrameworkInputViewAnimationStartingEventArgs","features":[297]},{"name":"ICoreFrameworkInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"ICoreFrameworkInputViewStatics","features":[297]},{"name":"ICoreInputView","features":[297]},{"name":"ICoreInputView2","features":[297]},{"name":"ICoreInputView3","features":[297]},{"name":"ICoreInputView4","features":[297]},{"name":"ICoreInputView5","features":[297]},{"name":"ICoreInputViewAnimationStartingEventArgs","features":[297]},{"name":"ICoreInputViewHidingEventArgs","features":[297]},{"name":"ICoreInputViewOcclusion","features":[297]},{"name":"ICoreInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"ICoreInputViewShowingEventArgs","features":[297]},{"name":"ICoreInputViewStatics","features":[297]},{"name":"ICoreInputViewStatics2","features":[297]},{"name":"ICoreInputViewTransferringXYFocusEventArgs","features":[297]},{"name":"IUISettingsController","features":[297]},{"name":"IUISettingsControllerStatics","features":[297]},{"name":"UISettingsController","features":[297]}],"312":[{"name":"ActivatedDeferral","features":[298]},{"name":"ActivatedEventHandler","features":[2,298]},{"name":"ActivatedOperation","features":[298]},{"name":"BackgroundActivatedEventArgs","features":[2,298]},{"name":"BackgroundActivatedEventHandler","features":[2,298]},{"name":"EnteredBackgroundEventArgs","features":[1,298]},{"name":"EnteredBackgroundEventHandler","features":[1,298]},{"name":"HtmlPrintDocumentSource","features":[298]},{"name":"IActivatedDeferral","features":[298]},{"name":"IActivatedEventArgsDeferral","features":[298]},{"name":"IActivatedOperation","features":[298]},{"name":"IHtmlPrintDocumentSource","features":[298]},{"name":"INewWebUIViewCreatedEventArgs","features":[298]},{"name":"IWebUIActivationStatics","features":[298]},{"name":"IWebUIActivationStatics2","features":[298]},{"name":"IWebUIActivationStatics3","features":[298]},{"name":"IWebUIActivationStatics4","features":[298]},{"name":"IWebUIBackgroundTaskInstance","features":[298]},{"name":"IWebUIBackgroundTaskInstanceStatics","features":[298]},{"name":"IWebUINavigatedDeferral","features":[298]},{"name":"IWebUINavigatedEventArgs","features":[298]},{"name":"IWebUINavigatedOperation","features":[298]},{"name":"IWebUIView","features":[298]},{"name":"IWebUIViewStatics","features":[298]},{"name":"LeavingBackgroundEventArgs","features":[1,298]},{"name":"LeavingBackgroundEventHandler","features":[1,298]},{"name":"NavigatedEventHandler","features":[298]},{"name":"NewWebUIViewCreatedEventArgs","features":[298]},{"name":"PrintContent","features":[298]},{"name":"ResumingEventHandler","features":[298]},{"name":"SuspendingDeferral","features":[1,298]},{"name":"SuspendingEventArgs","features":[1,298]},{"name":"SuspendingEventHandler","features":[1,298]},{"name":"SuspendingOperation","features":[1,298]},{"name":"WebUIApplication","features":[298]},{"name":"WebUIAppointmentsProviderAddAppointmentActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderRemoveAppointmentActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderReplaceAppointmentActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderShowAppointmentDetailsActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderShowTimeFrameActivatedEventArgs","features":[2,298]},{"name":"WebUIBackgroundTaskInstance","features":[298]},{"name":"WebUIBackgroundTaskInstanceRuntimeClass","features":[298]},{"name":"WebUIBarcodeScannerPreviewActivatedEventArgs","features":[2,298]},{"name":"WebUICachedFileUpdaterActivatedEventArgs","features":[2,298]},{"name":"WebUICameraSettingsActivatedEventArgs","features":[2,298]},{"name":"WebUICommandLineActivatedEventArgs","features":[2,298]},{"name":"WebUIContactCallActivatedEventArgs","features":[2,298]},{"name":"WebUIContactMapActivatedEventArgs","features":[2,298]},{"name":"WebUIContactMessageActivatedEventArgs","features":[2,298]},{"name":"WebUIContactPanelActivatedEventArgs","features":[2,298]},{"name":"WebUIContactPickerActivatedEventArgs","features":[2,298]},{"name":"WebUIContactPostActivatedEventArgs","features":[2,298]},{"name":"WebUIContactVideoCallActivatedEventArgs","features":[2,298]},{"name":"WebUIDeviceActivatedEventArgs","features":[2,298]},{"name":"WebUIDevicePairingActivatedEventArgs","features":[2,298]},{"name":"WebUIDialReceiverActivatedEventArgs","features":[2,298]},{"name":"WebUIFileActivatedEventArgs","features":[2,298]},{"name":"WebUIFileOpenPickerActivatedEventArgs","features":[2,298]},{"name":"WebUIFileOpenPickerContinuationEventArgs","features":[2,298]},{"name":"WebUIFileSavePickerActivatedEventArgs","features":[2,298]},{"name":"WebUIFileSavePickerContinuationEventArgs","features":[2,298]},{"name":"WebUIFolderPickerContinuationEventArgs","features":[2,298]},{"name":"WebUILaunchActivatedEventArgs","features":[2,298]},{"name":"WebUILockScreenActivatedEventArgs","features":[2,298]},{"name":"WebUILockScreenCallActivatedEventArgs","features":[2,298]},{"name":"WebUILockScreenComponentActivatedEventArgs","features":[2,298]},{"name":"WebUINavigatedDeferral","features":[298]},{"name":"WebUINavigatedEventArgs","features":[298]},{"name":"WebUINavigatedOperation","features":[298]},{"name":"WebUIPhoneCallActivatedEventArgs","features":[2,298]},{"name":"WebUIPrint3DWorkflowActivatedEventArgs","features":[2,298]},{"name":"WebUIPrintTaskSettingsActivatedEventArgs","features":[2,298]},{"name":"WebUIPrintWorkflowForegroundTaskActivatedEventArgs","features":[2,298]},{"name":"WebUIProtocolActivatedEventArgs","features":[2,298]},{"name":"WebUIProtocolForResultsActivatedEventArgs","features":[2,298]},{"name":"WebUIRestrictedLaunchActivatedEventArgs","features":[2,298]},{"name":"WebUISearchActivatedEventArgs","features":[2,298]},{"name":"WebUIShareTargetActivatedEventArgs","features":[2,298]},{"name":"WebUIStartupTaskActivatedEventArgs","features":[2,298]},{"name":"WebUIToastNotificationActivatedEventArgs","features":[2,298]},{"name":"WebUIUserDataAccountProviderActivatedEventArgs","features":[2,298]},{"name":"WebUIView","features":[298]},{"name":"WebUIVoiceCommandActivatedEventArgs","features":[2,298]},{"name":"WebUIWalletActionActivatedEventArgs","features":[2,298]},{"name":"WebUIWebAccountProviderActivatedEventArgs","features":[2,298]},{"name":"WebUIWebAuthenticationBrokerContinuationEventArgs","features":[2,298]}],"313":[{"name":"IWebUICommandBar","features":[299]},{"name":"IWebUICommandBarBitmapIcon","features":[299]},{"name":"IWebUICommandBarBitmapIconFactory","features":[299]},{"name":"IWebUICommandBarConfirmationButton","features":[299]},{"name":"IWebUICommandBarElement","features":[299]},{"name":"IWebUICommandBarIcon","features":[299]},{"name":"IWebUICommandBarIconButton","features":[299]},{"name":"IWebUICommandBarItemInvokedEventArgs","features":[299]},{"name":"IWebUICommandBarSizeChangedEventArgs","features":[299]},{"name":"IWebUICommandBarStatics","features":[299]},{"name":"IWebUICommandBarSymbolIcon","features":[299]},{"name":"IWebUICommandBarSymbolIconFactory","features":[299]},{"name":"MenuClosedEventHandler","features":[299]},{"name":"MenuOpenedEventHandler","features":[299]},{"name":"SizeChangedEventHandler","features":[299]},{"name":"WebUICommandBar","features":[299]},{"name":"WebUICommandBarBitmapIcon","features":[299]},{"name":"WebUICommandBarClosedDisplayMode","features":[299]},{"name":"WebUICommandBarConfirmationButton","features":[299]},{"name":"WebUICommandBarContract","features":[299]},{"name":"WebUICommandBarIconButton","features":[299]},{"name":"WebUICommandBarItemInvokedEventArgs","features":[299]},{"name":"WebUICommandBarSizeChangedEventArgs","features":[299]},{"name":"WebUICommandBarSymbolIcon","features":[299]}],"314":[{"name":"AppWindow","features":[300]},{"name":"AppWindowChangedEventArgs","features":[300]},{"name":"AppWindowCloseRequestedEventArgs","features":[300]},{"name":"AppWindowClosedEventArgs","features":[300]},{"name":"AppWindowClosedReason","features":[300]},{"name":"AppWindowFrame","features":[300]},{"name":"AppWindowFrameStyle","features":[300]},{"name":"AppWindowPlacement","features":[300]},{"name":"AppWindowPresentationConfiguration","features":[300]},{"name":"AppWindowPresentationKind","features":[300]},{"name":"AppWindowPresenter","features":[300]},{"name":"AppWindowTitleBar","features":[300]},{"name":"AppWindowTitleBarOcclusion","features":[300]},{"name":"AppWindowTitleBarVisibility","features":[300]},{"name":"CompactOverlayPresentationConfiguration","features":[300]},{"name":"DefaultPresentationConfiguration","features":[300]},{"name":"DisplayRegion","features":[300]},{"name":"FullScreenPresentationConfiguration","features":[300]},{"name":"IAppWindow","features":[300]},{"name":"IAppWindowChangedEventArgs","features":[300]},{"name":"IAppWindowCloseRequestedEventArgs","features":[300]},{"name":"IAppWindowClosedEventArgs","features":[300]},{"name":"IAppWindowFrame","features":[300]},{"name":"IAppWindowFrameStyle","features":[300]},{"name":"IAppWindowPlacement","features":[300]},{"name":"IAppWindowPresentationConfiguration","features":[300]},{"name":"IAppWindowPresentationConfigurationFactory","features":[300]},{"name":"IAppWindowPresenter","features":[300]},{"name":"IAppWindowStatics","features":[300]},{"name":"IAppWindowTitleBar","features":[300]},{"name":"IAppWindowTitleBarOcclusion","features":[300]},{"name":"IAppWindowTitleBarVisibility","features":[300]},{"name":"ICompactOverlayPresentationConfiguration","features":[300]},{"name":"IDefaultPresentationConfiguration","features":[300]},{"name":"IDisplayRegion","features":[300]},{"name":"IFullScreenPresentationConfiguration","features":[300]},{"name":"IWindowServicesStatics","features":[300]},{"name":"IWindowingEnvironment","features":[300]},{"name":"IWindowingEnvironmentAddedEventArgs","features":[300]},{"name":"IWindowingEnvironmentChangedEventArgs","features":[300]},{"name":"IWindowingEnvironmentRemovedEventArgs","features":[300]},{"name":"IWindowingEnvironmentStatics","features":[300]},{"name":"WindowServices","features":[300]},{"name":"WindowingEnvironment","features":[300]},{"name":"WindowingEnvironmentAddedEventArgs","features":[300]},{"name":"WindowingEnvironmentChangedEventArgs","features":[300]},{"name":"WindowingEnvironmentKind","features":[300]},{"name":"WindowingEnvironmentRemovedEventArgs","features":[300]}],"315":[{"name":"IWindowManagementPreview","features":[301]},{"name":"IWindowManagementPreviewStatics","features":[301]},{"name":"WindowManagementPreview","features":[301]}],"339":[{"name":"EVT_VHF_ASYNC_OPERATION","features":[302]},{"name":"EVT_VHF_CLEANUP","features":[302]},{"name":"EVT_VHF_READY_FOR_NEXT_READ_REPORT","features":[302]},{"name":"HID_XFER_PACKET","features":[302]},{"name":"PEVT_VHF_ASYNC_OPERATION","features":[302]},{"name":"PEVT_VHF_CLEANUP","features":[302]},{"name":"PEVT_VHF_READY_FOR_NEXT_READ_REPORT","features":[302]},{"name":"VHF_CONFIG","features":[302,303]},{"name":"VhfAsyncOperationComplete","features":[302,303]},{"name":"VhfCreate","features":[302,303]},{"name":"VhfDelete","features":[302,303]},{"name":"VhfReadReportSubmit","features":[302,303]},{"name":"VhfStart","features":[302,303]}],"340":[{"name":"ACCESS_STATE","features":[304,305,303,306]},{"name":"DEVICE_OBJECT","features":[304,307,305,303,306,308,309,310]},{"name":"DEVOBJ_EXTENSION","features":[304,307,305,303,306,308,309,310]},{"name":"DISPATCHER_HEADER","features":[304,303,309]},{"name":"DMA_COMMON_BUFFER_VECTOR","features":[304]},{"name":"DRIVER_ADD_DEVICE","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_CANCEL","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_CONTROL","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_DISPATCH","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_DISPATCH_PAGED","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_EXTENSION","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_FS_NOTIFICATION","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_INITIALIZE","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_NOTIFICATION_CALLBACK_ROUTINE","features":[304,303]},{"name":"DRIVER_OBJECT","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_REINITIALIZE","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_STARTIO","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_UNLOAD","features":[304,307,305,303,306,308,309,310]},{"name":"DontUseThisType","features":[304]},{"name":"DontUseThisTypeSession","features":[304]},{"name":"ECP_HEADER","features":[304]},{"name":"ECP_LIST","features":[304]},{"name":"ERESOURCE","features":[304,309]},{"name":"FAST_IO_ACQUIRE_FILE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_ACQUIRE_FOR_CCFLUSH","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_ACQUIRE_FOR_MOD_WRITE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_CHECK_IF_POSSIBLE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_DETACH_DEVICE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_DEVICE_CONTROL","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_DISPATCH","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_LOCK","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_MDL_READ","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_MDL_READ_COMPLETE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_MDL_READ_COMPLETE_COMPRESSED","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_MDL_WRITE_COMPLETE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_PREPARE_MDL_WRITE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_QUERY_BASIC_INFO","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_QUERY_NETWORK_OPEN_INFO","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_QUERY_OPEN","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_QUERY_STANDARD_INFO","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_READ","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_READ_COMPRESSED","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_RELEASE_FILE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_RELEASE_FOR_CCFLUSH","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_RELEASE_FOR_MOD_WRITE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_UNLOCK_ALL","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_UNLOCK_ALL_BY_KEY","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_UNLOCK_SINGLE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_WRITE","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_IO_WRITE_COMPRESSED","features":[304,307,305,303,306,308,309,310]},{"name":"FAST_MUTEX","features":[304,303,309]},{"name":"FILE_OBJECT","features":[304,307,305,303,306,308,309,310]},{"name":"IOMMU_DMA_DEVICE","features":[304]},{"name":"IOMMU_DMA_DOMAIN","features":[304]},{"name":"IO_COMPLETION_CONTEXT","features":[304]},{"name":"IO_PRIORITY_HINT","features":[304]},{"name":"IO_SECURITY_CONTEXT","features":[304,305,303,306]},{"name":"IO_STACK_LOCATION","features":[304,307,305,303,306,308,309,310]},{"name":"IRP","features":[304,307,305,303,306,308,309,310]},{"name":"IoPriorityCritical","features":[304]},{"name":"IoPriorityHigh","features":[304]},{"name":"IoPriorityLow","features":[304]},{"name":"IoPriorityNormal","features":[304]},{"name":"IoPriorityVeryLow","features":[304]},{"name":"KDEVICE_QUEUE","features":[304,303,309]},{"name":"KDPC","features":[304,309]},{"name":"KENLISTMENT","features":[304]},{"name":"KEVENT","features":[304,303,309]},{"name":"KGDT","features":[304]},{"name":"KIDT","features":[304]},{"name":"KMUTANT","features":[304,303,309]},{"name":"KPCR","features":[304]},{"name":"KPRCB","features":[304]},{"name":"KQUEUE","features":[304,303,309]},{"name":"KRESOURCEMANAGER","features":[304]},{"name":"KSPIN_LOCK_QUEUE_NUMBER","features":[304]},{"name":"KTM","features":[304]},{"name":"KTRANSACTION","features":[304]},{"name":"KTSS","features":[304]},{"name":"KWAIT_BLOCK","features":[304,303,309]},{"name":"LOADER_PARAMETER_BLOCK","features":[304]},{"name":"LockQueueAfdWorkQueueLock","features":[304]},{"name":"LockQueueBcbLock","features":[304]},{"name":"LockQueueIoCancelLock","features":[304]},{"name":"LockQueueIoCompletionLock","features":[304]},{"name":"LockQueueIoDatabaseLock","features":[304]},{"name":"LockQueueIoVpbLock","features":[304]},{"name":"LockQueueMasterLock","features":[304]},{"name":"LockQueueMaximumLock","features":[304]},{"name":"LockQueueNonPagedPoolLock","features":[304]},{"name":"LockQueueNtfsStructLock","features":[304]},{"name":"LockQueueUnusedSpare0","features":[304]},{"name":"LockQueueUnusedSpare1","features":[304]},{"name":"LockQueueUnusedSpare15","features":[304]},{"name":"LockQueueUnusedSpare16","features":[304]},{"name":"LockQueueUnusedSpare2","features":[304]},{"name":"LockQueueUnusedSpare3","features":[304]},{"name":"LockQueueUnusedSpare8","features":[304]},{"name":"LockQueueVacbLock","features":[304]},{"name":"MDL","features":[304]},{"name":"MaxIoPriorityTypes","features":[304]},{"name":"MaxPoolType","features":[304]},{"name":"NTSTRSAFE_MAX_CCH","features":[304]},{"name":"NTSTRSAFE_MAX_LENGTH","features":[304]},{"name":"NTSTRSAFE_UNICODE_STRING_MAX_CCH","features":[304]},{"name":"NTSTRSAFE_USE_SECURE_CRT","features":[304]},{"name":"NonPagedPool","features":[304]},{"name":"NonPagedPoolBase","features":[304]},{"name":"NonPagedPoolBaseCacheAligned","features":[304]},{"name":"NonPagedPoolBaseCacheAlignedMustS","features":[304]},{"name":"NonPagedPoolBaseMustSucceed","features":[304]},{"name":"NonPagedPoolCacheAligned","features":[304]},{"name":"NonPagedPoolCacheAlignedMustS","features":[304]},{"name":"NonPagedPoolCacheAlignedMustSSession","features":[304]},{"name":"NonPagedPoolCacheAlignedSession","features":[304]},{"name":"NonPagedPoolExecute","features":[304]},{"name":"NonPagedPoolMustSucceed","features":[304]},{"name":"NonPagedPoolMustSucceedSession","features":[304]},{"name":"NonPagedPoolNx","features":[304]},{"name":"NonPagedPoolNxCacheAligned","features":[304]},{"name":"NonPagedPoolSession","features":[304]},{"name":"NonPagedPoolSessionNx","features":[304]},{"name":"NtClose","features":[304,303]},{"name":"NtQueryObject","features":[304,303]},{"name":"OBJECT_ATTRIBUTES","features":[304,303]},{"name":"OBJECT_ATTRIBUTES32","features":[304]},{"name":"OBJECT_ATTRIBUTES64","features":[304]},{"name":"OBJECT_INFORMATION_CLASS","features":[304]},{"name":"OBJECT_NAME_INFORMATION","features":[304,303]},{"name":"OWNER_ENTRY","features":[304]},{"name":"ObjectBasicInformation","features":[304]},{"name":"ObjectTypeInformation","features":[304]},{"name":"PAFFINITY_TOKEN","features":[304]},{"name":"PBUS_HANDLER","features":[304]},{"name":"PCALLBACK_OBJECT","features":[304]},{"name":"PDEVICE_HANDLER_OBJECT","features":[304]},{"name":"PEJOB","features":[304]},{"name":"PEPROCESS","features":[304]},{"name":"PESILO","features":[304]},{"name":"PETHREAD","features":[304]},{"name":"PEX_RUNDOWN_REF_CACHE_AWARE","features":[304]},{"name":"PEX_TIMER","features":[304]},{"name":"PFREE_FUNCTION","features":[304]},{"name":"PIO_COMPLETION_ROUTINE","features":[304,303]},{"name":"PIO_REMOVE_LOCK_TRACKING_BLOCK","features":[304]},{"name":"PIO_TIMER","features":[304]},{"name":"PIO_WORKITEM","features":[304]},{"name":"PKDEFERRED_ROUTINE","features":[304]},{"name":"PKINTERRUPT","features":[304]},{"name":"PKPROCESS","features":[304]},{"name":"PKTHREAD","features":[304]},{"name":"PNOTIFY_SYNC","features":[304]},{"name":"POBJECT_TYPE","features":[304]},{"name":"POHANDLE","features":[304]},{"name":"POOL_TYPE","features":[304]},{"name":"PPCW_BUFFER","features":[304]},{"name":"PPCW_INSTANCE","features":[304]},{"name":"PPCW_REGISTRATION","features":[304]},{"name":"PRKPROCESS","features":[304]},{"name":"PRKTHREAD","features":[304]},{"name":"PSILO_MONITOR","features":[304]},{"name":"PWORKER_THREAD_ROUTINE","features":[304]},{"name":"PagedPool","features":[304]},{"name":"PagedPoolCacheAligned","features":[304]},{"name":"PagedPoolCacheAlignedSession","features":[304]},{"name":"PagedPoolSession","features":[304]},{"name":"RTL_SPLAY_LINKS","features":[304]},{"name":"SECTION_OBJECT_POINTERS","features":[304]},{"name":"SECURITY_SUBJECT_CONTEXT","features":[304,306]},{"name":"STRSAFE_FILL_BEHIND","features":[304]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[304]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[304]},{"name":"STRSAFE_IGNORE_NULLS","features":[304]},{"name":"STRSAFE_NO_TRUNCATION","features":[304]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[304]},{"name":"STRSAFE_ZERO_LENGTH_ON_FAILURE","features":[304]},{"name":"SspiAsyncContext","features":[304]},{"name":"TARGET_DEVICE_CUSTOM_NOTIFICATION","features":[304,307,305,303,306,308,309,310]},{"name":"VPB","features":[304,307,305,303,306,308,309,310]},{"name":"WORK_QUEUE_ITEM","features":[304,309]},{"name":"_DEVICE_OBJECT_POWER_EXTENSION","features":[304]},{"name":"_IORING_OBJECT","features":[304]},{"name":"_SCSI_REQUEST_BLOCK","features":[304]},{"name":"__WARNING_BANNED_API_USAGE","features":[304]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[304]},{"name":"__WARNING_DEREF_NULL_PTR","features":[304]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[304]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[304]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[304]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[304]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[304]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[304]},{"name":"__WARNING_POST_EXPECTED","features":[304]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[304]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[304]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[304]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[304]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[304]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[304]},{"name":"__WARNING_USING_UNINIT_VAR","features":[304]}],"341":[{"name":"D3DCAPS8","features":[311,312]},{"name":"D3DCLEAR_COMPUTERECTS","features":[311]},{"name":"D3DDDIARG_CREATERESOURCE","features":[311,303]},{"name":"D3DDDIARG_CREATERESOURCE2","features":[311,303]},{"name":"D3DDDICB_DESTROYALLOCATION2FLAGS","features":[311]},{"name":"D3DDDICB_LOCK2FLAGS","features":[311]},{"name":"D3DDDICB_LOCKFLAGS","features":[311]},{"name":"D3DDDICB_SIGNALFLAGS","features":[311]},{"name":"D3DDDIFMT_A1","features":[311]},{"name":"D3DDDIFMT_A16B16G16R16","features":[311]},{"name":"D3DDDIFMT_A16B16G16R16F","features":[311]},{"name":"D3DDDIFMT_A1R5G5B5","features":[311]},{"name":"D3DDDIFMT_A2B10G10R10","features":[311]},{"name":"D3DDDIFMT_A2B10G10R10_XR_BIAS","features":[311]},{"name":"D3DDDIFMT_A2R10G10B10","features":[311]},{"name":"D3DDDIFMT_A2W10V10U10","features":[311]},{"name":"D3DDDIFMT_A32B32G32R32F","features":[311]},{"name":"D3DDDIFMT_A4L4","features":[311]},{"name":"D3DDDIFMT_A4R4G4B4","features":[311]},{"name":"D3DDDIFMT_A8","features":[311]},{"name":"D3DDDIFMT_A8B8G8R8","features":[311]},{"name":"D3DDDIFMT_A8L8","features":[311]},{"name":"D3DDDIFMT_A8P8","features":[311]},{"name":"D3DDDIFMT_A8R3G3B2","features":[311]},{"name":"D3DDDIFMT_A8R8G8B8","features":[311]},{"name":"D3DDDIFMT_BINARYBUFFER","features":[311]},{"name":"D3DDDIFMT_BITSTREAMDATA","features":[311]},{"name":"D3DDDIFMT_CxV8U8","features":[311]},{"name":"D3DDDIFMT_D15S1","features":[311]},{"name":"D3DDDIFMT_D16","features":[311]},{"name":"D3DDDIFMT_D16_LOCKABLE","features":[311]},{"name":"D3DDDIFMT_D24FS8","features":[311]},{"name":"D3DDDIFMT_D24S8","features":[311]},{"name":"D3DDDIFMT_D24X4S4","features":[311]},{"name":"D3DDDIFMT_D24X8","features":[311]},{"name":"D3DDDIFMT_D32","features":[311]},{"name":"D3DDDIFMT_D32F_LOCKABLE","features":[311]},{"name":"D3DDDIFMT_D32_LOCKABLE","features":[311]},{"name":"D3DDDIFMT_DEBLOCKINGDATA","features":[311]},{"name":"D3DDDIFMT_DXT1","features":[311]},{"name":"D3DDDIFMT_DXT2","features":[311]},{"name":"D3DDDIFMT_DXT3","features":[311]},{"name":"D3DDDIFMT_DXT4","features":[311]},{"name":"D3DDDIFMT_DXT5","features":[311]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_BASE","features":[311]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_MAX","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED10","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED11","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED12","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED13","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED14","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED15","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED16","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED17","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED18","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED19","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED20","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED21","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED22","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED23","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED24","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED25","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED26","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED27","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED28","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED29","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED30","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED31","features":[311]},{"name":"D3DDDIFMT_DXVA_RESERVED9","features":[311]},{"name":"D3DDDIFMT_FILMGRAINBUFFER","features":[311]},{"name":"D3DDDIFMT_G16R16","features":[311]},{"name":"D3DDDIFMT_G16R16F","features":[311]},{"name":"D3DDDIFMT_G32R32F","features":[311]},{"name":"D3DDDIFMT_G8R8","features":[311]},{"name":"D3DDDIFMT_G8R8_G8B8","features":[311]},{"name":"D3DDDIFMT_INDEX16","features":[311]},{"name":"D3DDDIFMT_INDEX32","features":[311]},{"name":"D3DDDIFMT_INVERSEQUANTIZATIONDATA","features":[311]},{"name":"D3DDDIFMT_L16","features":[311]},{"name":"D3DDDIFMT_L6V5U5","features":[311]},{"name":"D3DDDIFMT_L8","features":[311]},{"name":"D3DDDIFMT_MACROBLOCKDATA","features":[311]},{"name":"D3DDDIFMT_MOTIONVECTORBUFFER","features":[311]},{"name":"D3DDDIFMT_MULTI2_ARGB8","features":[311]},{"name":"D3DDDIFMT_P8","features":[311]},{"name":"D3DDDIFMT_PICTUREPARAMSDATA","features":[311]},{"name":"D3DDDIFMT_Q16W16V16U16","features":[311]},{"name":"D3DDDIFMT_Q8W8V8U8","features":[311]},{"name":"D3DDDIFMT_R16F","features":[311]},{"name":"D3DDDIFMT_R32F","features":[311]},{"name":"D3DDDIFMT_R3G3B2","features":[311]},{"name":"D3DDDIFMT_R5G6B5","features":[311]},{"name":"D3DDDIFMT_R8","features":[311]},{"name":"D3DDDIFMT_R8G8B8","features":[311]},{"name":"D3DDDIFMT_R8G8_B8G8","features":[311]},{"name":"D3DDDIFMT_RESIDUALDIFFERENCEDATA","features":[311]},{"name":"D3DDDIFMT_S1D15","features":[311]},{"name":"D3DDDIFMT_S8D24","features":[311]},{"name":"D3DDDIFMT_S8_LOCKABLE","features":[311]},{"name":"D3DDDIFMT_SLICECONTROLDATA","features":[311]},{"name":"D3DDDIFMT_UNKNOWN","features":[311]},{"name":"D3DDDIFMT_UYVY","features":[311]},{"name":"D3DDDIFMT_V16U16","features":[311]},{"name":"D3DDDIFMT_V8U8","features":[311]},{"name":"D3DDDIFMT_VERTEXDATA","features":[311]},{"name":"D3DDDIFMT_W11V11U10","features":[311]},{"name":"D3DDDIFMT_X1R5G5B5","features":[311]},{"name":"D3DDDIFMT_X4R4G4B4","features":[311]},{"name":"D3DDDIFMT_X4S4D24","features":[311]},{"name":"D3DDDIFMT_X8B8G8R8","features":[311]},{"name":"D3DDDIFMT_X8D24","features":[311]},{"name":"D3DDDIFMT_X8L8V8U8","features":[311]},{"name":"D3DDDIFMT_X8R8G8B8","features":[311]},{"name":"D3DDDIFMT_YUY2","features":[311]},{"name":"D3DDDIFORMAT","features":[311]},{"name":"D3DDDIGPUVIRTUALADDRESS_PROTECTION_TYPE","features":[311]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVATION_TYPE","features":[311]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_ACCESS","features":[311]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_COMMIT","features":[311]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_ZERO","features":[311]},{"name":"D3DDDIMULTISAMPLE_10_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_11_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_12_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_13_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_14_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_15_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_16_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_2_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_3_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_4_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_5_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_6_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_7_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_8_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_9_SAMPLES","features":[311]},{"name":"D3DDDIMULTISAMPLE_NONE","features":[311]},{"name":"D3DDDIMULTISAMPLE_NONMASKABLE","features":[311]},{"name":"D3DDDIMULTISAMPLE_TYPE","features":[311]},{"name":"D3DDDIPOOL_LOCALVIDMEM","features":[311]},{"name":"D3DDDIPOOL_NONLOCALVIDMEM","features":[311]},{"name":"D3DDDIPOOL_STAGINGMEM","features":[311]},{"name":"D3DDDIPOOL_SYSTEMMEM","features":[311]},{"name":"D3DDDIPOOL_VIDEOMEMORY","features":[311]},{"name":"D3DDDIRECT","features":[311]},{"name":"D3DDDI_ALLOCATIONINFO","features":[311]},{"name":"D3DDDI_ALLOCATIONINFO2","features":[311,303]},{"name":"D3DDDI_ALLOCATIONLIST","features":[311]},{"name":"D3DDDI_ALLOCATIONPRIORITY_HIGH","features":[311]},{"name":"D3DDDI_ALLOCATIONPRIORITY_LOW","features":[311]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MAXIMUM","features":[311]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MINIMUM","features":[311]},{"name":"D3DDDI_ALLOCATIONPRIORITY_NORMAL","features":[311]},{"name":"D3DDDI_COLOR_SPACE_CUSTOM","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RESERVED","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G10_NONE_P709","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P709","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G2084_NONE_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P709","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P709","features":[311]},{"name":"D3DDDI_COLOR_SPACE_TYPE","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P601","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P709","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_GHLG_TOPLEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_LEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_TOPLEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_TOPLEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P709","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_TOPLEFT_P2020","features":[311]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_GHLG_TOPLEFT_P2020","features":[311]},{"name":"D3DDDI_CPU_NOTIFICATION","features":[311]},{"name":"D3DDDI_CREATECONTEXTFLAGS","features":[311]},{"name":"D3DDDI_CREATEHWCONTEXTFLAGS","features":[311]},{"name":"D3DDDI_CREATEHWQUEUEFLAGS","features":[311]},{"name":"D3DDDI_CREATENATIVEFENCEINFO","features":[311]},{"name":"D3DDDI_DESTROYPAGINGQUEUE","features":[311]},{"name":"D3DDDI_DOORBELLSTATUS","features":[311]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED","features":[311]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED_NOTIFY_KMD","features":[311]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_ABORT","features":[311]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_RETRY","features":[311]},{"name":"D3DDDI_DOORBELL_PRIVATEDATA_MAX_BYTES_WDDM3_1","features":[311]},{"name":"D3DDDI_DRIVERESCAPETYPE","features":[311]},{"name":"D3DDDI_DRIVERESCAPETYPE_CPUEVENTUSAGE","features":[311]},{"name":"D3DDDI_DRIVERESCAPETYPE_MAX","features":[311]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATEALLOCATIONHANDLE","features":[311]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATERESOURCEHANDLE","features":[311]},{"name":"D3DDDI_DRIVERESCAPE_CPUEVENTUSAGE","features":[311]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATEALLOCATIONEHANDLE","features":[311]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATERESOURCEHANDLE","features":[311]},{"name":"D3DDDI_DXGI_RGB","features":[311]},{"name":"D3DDDI_ESCAPEFLAGS","features":[311]},{"name":"D3DDDI_EVICT_FLAGS","features":[311]},{"name":"D3DDDI_FENCE","features":[311]},{"name":"D3DDDI_FLIPINTERVAL_FOUR","features":[311]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE","features":[311]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE_ALLOW_TEARING","features":[311]},{"name":"D3DDDI_FLIPINTERVAL_ONE","features":[311]},{"name":"D3DDDI_FLIPINTERVAL_THREE","features":[311]},{"name":"D3DDDI_FLIPINTERVAL_TWO","features":[311]},{"name":"D3DDDI_FLIPINTERVAL_TYPE","features":[311]},{"name":"D3DDDI_GAMMARAMP_DEFAULT","features":[311]},{"name":"D3DDDI_GAMMARAMP_DXGI_1","features":[311]},{"name":"D3DDDI_GAMMARAMP_MATRIX_3x4","features":[311]},{"name":"D3DDDI_GAMMARAMP_MATRIX_V2","features":[311]},{"name":"D3DDDI_GAMMARAMP_RGB256x3x16","features":[311]},{"name":"D3DDDI_GAMMARAMP_TYPE","features":[311]},{"name":"D3DDDI_GAMMARAMP_UNINITIALIZED","features":[311]},{"name":"D3DDDI_GAMMA_RAMP_DXGI_1","features":[311]},{"name":"D3DDDI_GAMMA_RAMP_RGB256x3x16","features":[311]},{"name":"D3DDDI_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[311]},{"name":"D3DDDI_HDR_METADATA_HDR10","features":[311]},{"name":"D3DDDI_HDR_METADATA_HDR10PLUS","features":[311]},{"name":"D3DDDI_HDR_METADATA_TYPE","features":[311]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10","features":[311]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10PLUS","features":[311]},{"name":"D3DDDI_HDR_METADATA_TYPE_NONE","features":[311]},{"name":"D3DDDI_KERNELOVERLAYINFO","features":[311]},{"name":"D3DDDI_MAKERESIDENT","features":[311]},{"name":"D3DDDI_MAKERESIDENT_FLAGS","features":[311]},{"name":"D3DDDI_MAPGPUVIRTUALADDRESS","features":[311]},{"name":"D3DDDI_MAX_BROADCAST_CONTEXT","features":[311]},{"name":"D3DDDI_MAX_MPO_PRESENT_DIRTY_RECTS","features":[311]},{"name":"D3DDDI_MAX_OBJECT_SIGNALED","features":[311]},{"name":"D3DDDI_MAX_OBJECT_WAITED_ON","features":[311]},{"name":"D3DDDI_MAX_WRITTEN_PRIMARIES","features":[311]},{"name":"D3DDDI_MONITORED_FENCE","features":[311]},{"name":"D3DDDI_MULTISAMPLINGMETHOD","features":[311]},{"name":"D3DDDI_NATIVEFENCEMAPPING","features":[311]},{"name":"D3DDDI_OFFER_FLAGS","features":[311]},{"name":"D3DDDI_OFFER_PRIORITY","features":[311]},{"name":"D3DDDI_OFFER_PRIORITY_AUTO","features":[311]},{"name":"D3DDDI_OFFER_PRIORITY_HIGH","features":[311]},{"name":"D3DDDI_OFFER_PRIORITY_LOW","features":[311]},{"name":"D3DDDI_OFFER_PRIORITY_NONE","features":[311]},{"name":"D3DDDI_OFFER_PRIORITY_NORMAL","features":[311]},{"name":"D3DDDI_OPENALLOCATIONINFO","features":[311]},{"name":"D3DDDI_OPENALLOCATIONINFO2","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[311]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[311]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY","features":[311]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_ABOVE_NORMAL","features":[311]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_BELOW_NORMAL","features":[311]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_NORMAL","features":[311]},{"name":"D3DDDI_PATCHLOCATIONLIST","features":[311]},{"name":"D3DDDI_PERIODIC_MONITORED_FENCE","features":[311]},{"name":"D3DDDI_POOL","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_ADAPTERKEY","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERIMAGEPATH","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERSTOREPATH","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_FLAGS","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_INFO","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_MAX","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_SERVICEKEY","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_STATUS","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_BUFFER_OVERFLOW","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_FAIL","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_MAX","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_SUCCESS","features":[311]},{"name":"D3DDDI_QUERYREGISTRY_TYPE","features":[311]},{"name":"D3DDDI_RATIONAL","features":[311]},{"name":"D3DDDI_RECLAIM_RESULT","features":[311]},{"name":"D3DDDI_RECLAIM_RESULT_DISCARDED","features":[311]},{"name":"D3DDDI_RECLAIM_RESULT_NOT_COMMITTED","features":[311]},{"name":"D3DDDI_RECLAIM_RESULT_OK","features":[311]},{"name":"D3DDDI_RESERVEGPUVIRTUALADDRESS","features":[311]},{"name":"D3DDDI_RESOURCEFLAGS","features":[311]},{"name":"D3DDDI_RESOURCEFLAGS2","features":[311]},{"name":"D3DDDI_ROTATION","features":[311]},{"name":"D3DDDI_ROTATION_180","features":[311]},{"name":"D3DDDI_ROTATION_270","features":[311]},{"name":"D3DDDI_ROTATION_90","features":[311]},{"name":"D3DDDI_ROTATION_IDENTITY","features":[311]},{"name":"D3DDDI_SCANLINEORDERING","features":[311]},{"name":"D3DDDI_SCANLINEORDERING_INTERLACED","features":[311]},{"name":"D3DDDI_SCANLINEORDERING_PROGRESSIVE","features":[311]},{"name":"D3DDDI_SCANLINEORDERING_UNKNOWN","features":[311]},{"name":"D3DDDI_SEGMENTPREFERENCE","features":[311]},{"name":"D3DDDI_SEMAPHORE","features":[311]},{"name":"D3DDDI_SURFACEINFO","features":[311]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO","features":[311,303]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO2","features":[311,303]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_FLAGS","features":[311]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_TYPE","features":[311]},{"name":"D3DDDI_SYNCHRONIZATION_MUTEX","features":[311]},{"name":"D3DDDI_SYNCHRONIZATION_TYPE_LIMIT","features":[311]},{"name":"D3DDDI_SYNC_OBJECT_SIGNAL","features":[311]},{"name":"D3DDDI_SYNC_OBJECT_WAIT","features":[311]},{"name":"D3DDDI_TRIMRESIDENCYSET_FLAGS","features":[311]},{"name":"D3DDDI_UPDATEALLOCPROPERTY","features":[311]},{"name":"D3DDDI_UPDATEALLOCPROPERTY_FLAGS","features":[311]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_COPY","features":[311]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP","features":[311]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP_PROTECT","features":[311]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION","features":[311]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION_TYPE","features":[311]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_UNMAP","features":[311]},{"name":"D3DDDI_VIDEO_SIGNAL_SCANLINE_ORDERING","features":[311]},{"name":"D3DDDI_VSSLO_INTERLACED_LOWERFIELDFIRST","features":[311]},{"name":"D3DDDI_VSSLO_INTERLACED_UPPERFIELDFIRST","features":[311]},{"name":"D3DDDI_VSSLO_OTHER","features":[311]},{"name":"D3DDDI_VSSLO_PROGRESSIVE","features":[311]},{"name":"D3DDDI_VSSLO_UNINITIALIZED","features":[311]},{"name":"D3DDDI_WAITFORSYNCHRONIZATIONOBJECTFROMCPU_FLAGS","features":[311]},{"name":"D3DDEVCAPS_HWINDEXBUFFER","features":[311]},{"name":"D3DDEVCAPS_HWVERTEXBUFFER","features":[311]},{"name":"D3DDEVCAPS_SUBVOLUMELOCK","features":[311]},{"name":"D3DDEVICEDESC_V1","features":[311,303,312]},{"name":"D3DDEVICEDESC_V2","features":[311,303,312]},{"name":"D3DDEVICEDESC_V3","features":[311,303,312]},{"name":"D3DDEVINFOID_VCACHE","features":[311]},{"name":"D3DDP2OP_ADDDIRTYBOX","features":[311]},{"name":"D3DDP2OP_ADDDIRTYRECT","features":[311]},{"name":"D3DDP2OP_BLT","features":[311]},{"name":"D3DDP2OP_BUFFERBLT","features":[311]},{"name":"D3DDP2OP_CLEAR","features":[311]},{"name":"D3DDP2OP_CLIPPEDTRIANGLEFAN","features":[311]},{"name":"D3DDP2OP_COLORFILL","features":[311]},{"name":"D3DDP2OP_COMPOSERECTS","features":[311]},{"name":"D3DDP2OP_CREATELIGHT","features":[311]},{"name":"D3DDP2OP_CREATEPIXELSHADER","features":[311]},{"name":"D3DDP2OP_CREATEQUERY","features":[311]},{"name":"D3DDP2OP_CREATEVERTEXSHADER","features":[311]},{"name":"D3DDP2OP_CREATEVERTEXSHADERDECL","features":[311]},{"name":"D3DDP2OP_CREATEVERTEXSHADERFUNC","features":[311]},{"name":"D3DDP2OP_DELETEPIXELSHADER","features":[311]},{"name":"D3DDP2OP_DELETEQUERY","features":[311]},{"name":"D3DDP2OP_DELETEVERTEXSHADER","features":[311]},{"name":"D3DDP2OP_DELETEVERTEXSHADERDECL","features":[311]},{"name":"D3DDP2OP_DELETEVERTEXSHADERFUNC","features":[311]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE","features":[311]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE2","features":[311]},{"name":"D3DDP2OP_DRAWPRIMITIVE","features":[311]},{"name":"D3DDP2OP_DRAWPRIMITIVE2","features":[311]},{"name":"D3DDP2OP_DRAWRECTPATCH","features":[311]},{"name":"D3DDP2OP_DRAWTRIPATCH","features":[311]},{"name":"D3DDP2OP_GENERATEMIPSUBLEVELS","features":[311]},{"name":"D3DDP2OP_INDEXEDLINELIST","features":[311]},{"name":"D3DDP2OP_INDEXEDLINELIST2","features":[311]},{"name":"D3DDP2OP_INDEXEDLINESTRIP","features":[311]},{"name":"D3DDP2OP_INDEXEDTRIANGLEFAN","features":[311]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST","features":[311]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST2","features":[311]},{"name":"D3DDP2OP_INDEXEDTRIANGLESTRIP","features":[311]},{"name":"D3DDP2OP_ISSUEQUERY","features":[311]},{"name":"D3DDP2OP_LINELIST","features":[311]},{"name":"D3DDP2OP_LINELIST_IMM","features":[311]},{"name":"D3DDP2OP_LINESTRIP","features":[311]},{"name":"D3DDP2OP_MULTIPLYTRANSFORM","features":[311]},{"name":"D3DDP2OP_POINTS","features":[311]},{"name":"D3DDP2OP_RENDERSTATE","features":[311]},{"name":"D3DDP2OP_RESPONSECONTINUE","features":[311]},{"name":"D3DDP2OP_RESPONSEQUERY","features":[311]},{"name":"D3DDP2OP_SETCLIPPLANE","features":[311]},{"name":"D3DDP2OP_SETCONVOLUTIONKERNELMONO","features":[311]},{"name":"D3DDP2OP_SETDEPTHSTENCIL","features":[311]},{"name":"D3DDP2OP_SETINDICES","features":[311]},{"name":"D3DDP2OP_SETLIGHT","features":[311]},{"name":"D3DDP2OP_SETMATERIAL","features":[311]},{"name":"D3DDP2OP_SETPALETTE","features":[311]},{"name":"D3DDP2OP_SETPIXELSHADER","features":[311]},{"name":"D3DDP2OP_SETPIXELSHADERCONST","features":[311]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTB","features":[311]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTI","features":[311]},{"name":"D3DDP2OP_SETPRIORITY","features":[311]},{"name":"D3DDP2OP_SETRENDERTARGET","features":[311]},{"name":"D3DDP2OP_SETRENDERTARGET2","features":[311]},{"name":"D3DDP2OP_SETSCISSORRECT","features":[311]},{"name":"D3DDP2OP_SETSTREAMSOURCE","features":[311]},{"name":"D3DDP2OP_SETSTREAMSOURCE2","features":[311]},{"name":"D3DDP2OP_SETSTREAMSOURCEFREQ","features":[311]},{"name":"D3DDP2OP_SETSTREAMSOURCEUM","features":[311]},{"name":"D3DDP2OP_SETTEXLOD","features":[311]},{"name":"D3DDP2OP_SETTRANSFORM","features":[311]},{"name":"D3DDP2OP_SETVERTEXSHADER","features":[311]},{"name":"D3DDP2OP_SETVERTEXSHADERCONST","features":[311]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTB","features":[311]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTI","features":[311]},{"name":"D3DDP2OP_SETVERTEXSHADERDECL","features":[311]},{"name":"D3DDP2OP_SETVERTEXSHADERFUNC","features":[311]},{"name":"D3DDP2OP_STATESET","features":[311]},{"name":"D3DDP2OP_SURFACEBLT","features":[311]},{"name":"D3DDP2OP_TEXBLT","features":[311]},{"name":"D3DDP2OP_TEXTURESTAGESTATE","features":[311]},{"name":"D3DDP2OP_TRIANGLEFAN","features":[311]},{"name":"D3DDP2OP_TRIANGLEFAN_IMM","features":[311]},{"name":"D3DDP2OP_TRIANGLELIST","features":[311]},{"name":"D3DDP2OP_TRIANGLESTRIP","features":[311]},{"name":"D3DDP2OP_UPDATEPALETTE","features":[311]},{"name":"D3DDP2OP_VIEWPORTINFO","features":[311]},{"name":"D3DDP2OP_VOLUMEBLT","features":[311]},{"name":"D3DDP2OP_WINFO","features":[311]},{"name":"D3DDP2OP_ZRANGE","features":[311]},{"name":"D3DFVF_FOG","features":[311]},{"name":"D3DGDI2_MAGIC","features":[311]},{"name":"D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[311]},{"name":"D3DGDI2_TYPE_DEFER_AGP_FREES","features":[311]},{"name":"D3DGDI2_TYPE_DXVERSION","features":[311]},{"name":"D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[311]},{"name":"D3DGDI2_TYPE_GETADAPTERGROUP","features":[311]},{"name":"D3DGDI2_TYPE_GETD3DCAPS8","features":[311]},{"name":"D3DGDI2_TYPE_GETD3DCAPS9","features":[311]},{"name":"D3DGDI2_TYPE_GETD3DQUERY","features":[311]},{"name":"D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[311]},{"name":"D3DGDI2_TYPE_GETDDIVERSION","features":[311]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODE","features":[311]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[311]},{"name":"D3DGDI2_TYPE_GETFORMAT","features":[311]},{"name":"D3DGDI2_TYPE_GETFORMATCOUNT","features":[311]},{"name":"D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[311]},{"name":"D3DGPU_NULL","features":[311]},{"name":"D3DGPU_PHYSICAL_ADDRESS","features":[311]},{"name":"D3DHAL2_CB32_CLEAR","features":[311]},{"name":"D3DHAL2_CB32_DRAWONEINDEXEDPRIMITIVE","features":[311]},{"name":"D3DHAL2_CB32_DRAWONEPRIMITIVE","features":[311]},{"name":"D3DHAL2_CB32_DRAWPRIMITIVES","features":[311]},{"name":"D3DHAL2_CB32_SETRENDERTARGET","features":[311]},{"name":"D3DHAL3_CB32_CLEAR2","features":[311]},{"name":"D3DHAL3_CB32_DRAWPRIMITIVES2","features":[311]},{"name":"D3DHAL3_CB32_RESERVED","features":[311]},{"name":"D3DHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[311]},{"name":"D3DHALDP2_EXECUTEBUFFER","features":[311]},{"name":"D3DHALDP2_REQCOMMANDBUFSIZE","features":[311]},{"name":"D3DHALDP2_REQVERTEXBUFSIZE","features":[311]},{"name":"D3DHALDP2_SWAPCOMMANDBUFFER","features":[311]},{"name":"D3DHALDP2_SWAPVERTEXBUFFER","features":[311]},{"name":"D3DHALDP2_USERMEMVERTICES","features":[311]},{"name":"D3DHALDP2_VIDMEMCOMMANDBUF","features":[311]},{"name":"D3DHALDP2_VIDMEMVERTEXBUF","features":[311]},{"name":"D3DHALSTATE_GET_LIGHT","features":[311]},{"name":"D3DHALSTATE_GET_RENDER","features":[311]},{"name":"D3DHALSTATE_GET_TRANSFORM","features":[311]},{"name":"D3DHAL_CALLBACKS","features":[311,303,312,313,314]},{"name":"D3DHAL_CALLBACKS2","features":[311,303,312,313,314]},{"name":"D3DHAL_CALLBACKS3","features":[311,303,312,313,314]},{"name":"D3DHAL_CLEAR2DATA","features":[311,312]},{"name":"D3DHAL_CLEARDATA","features":[311,312]},{"name":"D3DHAL_CLIPPEDTRIANGLEFAN","features":[311]},{"name":"D3DHAL_COL_WEIGHTS","features":[311]},{"name":"D3DHAL_CONTEXTCREATEDATA","features":[311,303,313,314]},{"name":"D3DHAL_CONTEXTDESTROYALLDATA","features":[311]},{"name":"D3DHAL_CONTEXTDESTROYDATA","features":[311]},{"name":"D3DHAL_CONTEXT_BAD","features":[311]},{"name":"D3DHAL_D3DDX6EXTENDEDCAPS","features":[311]},{"name":"D3DHAL_D3DEXTENDEDCAPS","features":[311]},{"name":"D3DHAL_DP2ADDDIRTYBOX","features":[311,312]},{"name":"D3DHAL_DP2ADDDIRTYRECT","features":[311,303]},{"name":"D3DHAL_DP2BLT","features":[311,303]},{"name":"D3DHAL_DP2BUFFERBLT","features":[311,312]},{"name":"D3DHAL_DP2CLEAR","features":[311,303]},{"name":"D3DHAL_DP2COLORFILL","features":[311,303]},{"name":"D3DHAL_DP2COMMAND","features":[311]},{"name":"D3DHAL_DP2COMPOSERECTS","features":[311,312]},{"name":"D3DHAL_DP2CREATELIGHT","features":[311]},{"name":"D3DHAL_DP2CREATEPIXELSHADER","features":[311]},{"name":"D3DHAL_DP2CREATEQUERY","features":[311,312]},{"name":"D3DHAL_DP2CREATEVERTEXSHADER","features":[311]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERDECL","features":[311]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERFUNC","features":[311]},{"name":"D3DHAL_DP2DELETEQUERY","features":[311]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE","features":[311,312]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[311,312]},{"name":"D3DHAL_DP2DRAWPRIMITIVE","features":[311,312]},{"name":"D3DHAL_DP2DRAWPRIMITIVE2","features":[311,312]},{"name":"D3DHAL_DP2DRAWRECTPATCH","features":[311]},{"name":"D3DHAL_DP2DRAWTRIPATCH","features":[311]},{"name":"D3DHAL_DP2EXT","features":[311]},{"name":"D3DHAL_DP2GENERATEMIPSUBLEVELS","features":[311,312]},{"name":"D3DHAL_DP2INDEXEDLINELIST","features":[311]},{"name":"D3DHAL_DP2INDEXEDLINESTRIP","features":[311]},{"name":"D3DHAL_DP2INDEXEDTRIANGLEFAN","features":[311]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST","features":[311]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST2","features":[311]},{"name":"D3DHAL_DP2INDEXEDTRIANGLESTRIP","features":[311]},{"name":"D3DHAL_DP2ISSUEQUERY","features":[311]},{"name":"D3DHAL_DP2LINELIST","features":[311]},{"name":"D3DHAL_DP2LINESTRIP","features":[311]},{"name":"D3DHAL_DP2MULTIPLYTRANSFORM","features":[68,311,312]},{"name":"D3DHAL_DP2OPERATION","features":[311]},{"name":"D3DHAL_DP2PIXELSHADER","features":[311]},{"name":"D3DHAL_DP2POINTS","features":[311]},{"name":"D3DHAL_DP2RENDERSTATE","features":[311,312]},{"name":"D3DHAL_DP2RESPONSE","features":[311]},{"name":"D3DHAL_DP2RESPONSEQUERY","features":[311]},{"name":"D3DHAL_DP2SETCLIPPLANE","features":[311]},{"name":"D3DHAL_DP2SETCONVOLUTIONKERNELMONO","features":[311]},{"name":"D3DHAL_DP2SETDEPTHSTENCIL","features":[311]},{"name":"D3DHAL_DP2SETINDICES","features":[311]},{"name":"D3DHAL_DP2SETLIGHT","features":[311]},{"name":"D3DHAL_DP2SETPALETTE","features":[311]},{"name":"D3DHAL_DP2SETPIXELSHADERCONST","features":[311]},{"name":"D3DHAL_DP2SETPRIORITY","features":[311]},{"name":"D3DHAL_DP2SETRENDERTARGET","features":[311]},{"name":"D3DHAL_DP2SETRENDERTARGET2","features":[311]},{"name":"D3DHAL_DP2SETSTREAMSOURCE","features":[311]},{"name":"D3DHAL_DP2SETSTREAMSOURCE2","features":[311]},{"name":"D3DHAL_DP2SETSTREAMSOURCEFREQ","features":[311]},{"name":"D3DHAL_DP2SETSTREAMSOURCEUM","features":[311]},{"name":"D3DHAL_DP2SETTEXLOD","features":[311]},{"name":"D3DHAL_DP2SETTRANSFORM","features":[68,311,312]},{"name":"D3DHAL_DP2SETVERTEXSHADERCONST","features":[311]},{"name":"D3DHAL_DP2STARTVERTEX","features":[311]},{"name":"D3DHAL_DP2STATESET","features":[311,312]},{"name":"D3DHAL_DP2SURFACEBLT","features":[311,303]},{"name":"D3DHAL_DP2TEXBLT","features":[311,303]},{"name":"D3DHAL_DP2TEXTURESTAGESTATE","features":[311]},{"name":"D3DHAL_DP2TRIANGLEFAN","features":[311]},{"name":"D3DHAL_DP2TRIANGLEFAN_IMM","features":[311]},{"name":"D3DHAL_DP2TRIANGLELIST","features":[311]},{"name":"D3DHAL_DP2TRIANGLESTRIP","features":[311]},{"name":"D3DHAL_DP2UPDATEPALETTE","features":[311]},{"name":"D3DHAL_DP2VERTEXSHADER","features":[311]},{"name":"D3DHAL_DP2VIEWPORTINFO","features":[311]},{"name":"D3DHAL_DP2VOLUMEBLT","features":[311,312]},{"name":"D3DHAL_DP2WINFO","features":[311]},{"name":"D3DHAL_DP2ZRANGE","features":[311]},{"name":"D3DHAL_DRAWONEINDEXEDPRIMITIVEDATA","features":[311,312]},{"name":"D3DHAL_DRAWONEPRIMITIVEDATA","features":[311,312]},{"name":"D3DHAL_DRAWPRIMCOUNTS","features":[311]},{"name":"D3DHAL_DRAWPRIMITIVES2DATA","features":[311,303,313,314]},{"name":"D3DHAL_DRAWPRIMITIVESDATA","features":[311]},{"name":"D3DHAL_EXECUTE_ABORT","features":[311]},{"name":"D3DHAL_EXECUTE_NORMAL","features":[311]},{"name":"D3DHAL_EXECUTE_OVERRIDE","features":[311]},{"name":"D3DHAL_EXECUTE_UNHANDLED","features":[311]},{"name":"D3DHAL_GETSTATEDATA","features":[311,312]},{"name":"D3DHAL_GLOBALDRIVERDATA","features":[311,303,312,313]},{"name":"D3DHAL_MAX_RSTATES","features":[311]},{"name":"D3DHAL_MAX_RSTATES_DX6","features":[311]},{"name":"D3DHAL_MAX_RSTATES_DX7","features":[311]},{"name":"D3DHAL_MAX_RSTATES_DX8","features":[311]},{"name":"D3DHAL_MAX_RSTATES_DX9","features":[311]},{"name":"D3DHAL_MAX_TEXTURESTATES","features":[311]},{"name":"D3DHAL_NUMCLIPVERTICES","features":[311]},{"name":"D3DHAL_OUTOFCONTEXTS","features":[311]},{"name":"D3DHAL_RENDERPRIMITIVEDATA","features":[311,312,313]},{"name":"D3DHAL_RENDERSTATEDATA","features":[311,313]},{"name":"D3DHAL_ROW_WEIGHTS","features":[311]},{"name":"D3DHAL_SAMPLER_MAXSAMP","features":[311]},{"name":"D3DHAL_SAMPLER_MAXVERTEXSAMP","features":[311]},{"name":"D3DHAL_SCENECAPTUREDATA","features":[311]},{"name":"D3DHAL_SCENE_CAPTURE_END","features":[311]},{"name":"D3DHAL_SCENE_CAPTURE_START","features":[311]},{"name":"D3DHAL_SETLIGHT_DATA","features":[311]},{"name":"D3DHAL_SETLIGHT_DISABLE","features":[311]},{"name":"D3DHAL_SETLIGHT_ENABLE","features":[311]},{"name":"D3DHAL_SETRENDERTARGETDATA","features":[311,303,313,314]},{"name":"D3DHAL_STATESETBEGIN","features":[311]},{"name":"D3DHAL_STATESETCAPTURE","features":[311]},{"name":"D3DHAL_STATESETCREATE","features":[311]},{"name":"D3DHAL_STATESETDELETE","features":[311]},{"name":"D3DHAL_STATESETEND","features":[311]},{"name":"D3DHAL_STATESETEXECUTE","features":[311]},{"name":"D3DHAL_TEXTURECREATEDATA","features":[311,313]},{"name":"D3DHAL_TEXTUREDESTROYDATA","features":[311]},{"name":"D3DHAL_TEXTUREGETSURFDATA","features":[311]},{"name":"D3DHAL_TEXTURESTATEBUF_SIZE","features":[311]},{"name":"D3DHAL_TEXTURESWAPDATA","features":[311]},{"name":"D3DHAL_TSS_MAXSTAGES","features":[311]},{"name":"D3DHAL_TSS_RENDERSTATEBASE","features":[311]},{"name":"D3DHAL_TSS_STATESPERSTAGE","features":[311]},{"name":"D3DHAL_VALIDATETEXTURESTAGESTATEDATA","features":[311]},{"name":"D3DINFINITEINSTRUCTIONS","features":[311]},{"name":"D3DKMDT_2DREGION","features":[311]},{"name":"D3DKMDT_3x4_COLORSPACE_TRANSFORM","features":[311]},{"name":"D3DKMDT_BITS_PER_COMPONENT_06","features":[311]},{"name":"D3DKMDT_BITS_PER_COMPONENT_08","features":[311]},{"name":"D3DKMDT_BITS_PER_COMPONENT_10","features":[311]},{"name":"D3DKMDT_BITS_PER_COMPONENT_12","features":[311]},{"name":"D3DKMDT_BITS_PER_COMPONENT_14","features":[311]},{"name":"D3DKMDT_BITS_PER_COMPONENT_16","features":[311]},{"name":"D3DKMDT_CB_INTENSITY","features":[311]},{"name":"D3DKMDT_CB_SCRGB","features":[311]},{"name":"D3DKMDT_CB_SRGB","features":[311]},{"name":"D3DKMDT_CB_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_CB_YCBCR","features":[311]},{"name":"D3DKMDT_CB_YPBPR","features":[311]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_MATRIX_V2","features":[311]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[311]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_BYPASS","features":[311]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_ENABLE","features":[311]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_NO_CHANGE","features":[311]},{"name":"D3DKMDT_COLOR_BASIS","features":[311]},{"name":"D3DKMDT_COLOR_COEFF_DYNAMIC_RANGES","features":[311]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DISPATCH_BOUNDARY","features":[311]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[311]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_GRANULARITY","features":[311]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_NONE","features":[311]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_SHADER_BOUNDARY","features":[311]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_BOUNDARY","features":[311]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_GROUP_BOUNDARY","features":[311]},{"name":"D3DKMDT_DISPLAYMODE_FLAGS","features":[311]},{"name":"D3DKMDT_ENUMCOFUNCMODALITY_PIVOT_TYPE","features":[311]},{"name":"D3DKMDT_EPT_NOPIVOT","features":[311]},{"name":"D3DKMDT_EPT_ROTATION","features":[311]},{"name":"D3DKMDT_EPT_SCALING","features":[311]},{"name":"D3DKMDT_EPT_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_EPT_VIDPNSOURCE","features":[311]},{"name":"D3DKMDT_EPT_VIDPNTARGET","features":[311]},{"name":"D3DKMDT_FREQUENCY_RANGE","features":[311]},{"name":"D3DKMDT_GAMMA_RAMP","features":[311]},{"name":"D3DKMDT_GDISURFACEDATA","features":[311]},{"name":"D3DKMDT_GDISURFACEFLAGS","features":[311]},{"name":"D3DKMDT_GDISURFACETYPE","features":[311]},{"name":"D3DKMDT_GDISURFACE_EXISTINGSYSMEM","features":[311]},{"name":"D3DKMDT_GDISURFACE_INVALID","features":[311]},{"name":"D3DKMDT_GDISURFACE_LOOKUPTABLE","features":[311]},{"name":"D3DKMDT_GDISURFACE_STAGING","features":[311]},{"name":"D3DKMDT_GDISURFACE_STAGING_CPUVISIBLE","features":[311]},{"name":"D3DKMDT_GDISURFACE_TEXTURE","features":[311]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE","features":[311]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE_CROSSADAPTER","features":[311]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CROSSADAPTER","features":[311]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[311]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_GRANULARITY","features":[311]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_NONE","features":[311]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PIXEL_BOUNDARY","features":[311]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PRIMITIVE_BOUNDARY","features":[311]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_SHADER_BOUNDARY","features":[311]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_TRIANGLE_BOUNDARY","features":[311]},{"name":"D3DKMDT_GRAPHICS_RENDERING_FORMAT","features":[311]},{"name":"D3DKMDT_GTFCOMPLIANCE","features":[311]},{"name":"D3DKMDT_GTF_COMPLIANT","features":[311]},{"name":"D3DKMDT_GTF_NOTCOMPLIANT","features":[311]},{"name":"D3DKMDT_GTF_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MACROVISION_OEMCOPYPROTECTION_SIZE","features":[311]},{"name":"D3DKMDT_MAX_OVERLAYS_BITCOUNT","features":[311]},{"name":"D3DKMDT_MAX_VIDPN_SOURCES_BITCOUNT","features":[311]},{"name":"D3DKMDT_MCC_ENFORCE","features":[311]},{"name":"D3DKMDT_MCC_IGNORE","features":[311]},{"name":"D3DKMDT_MCC_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MCO_DEFAULTMONITORPROFILE","features":[311]},{"name":"D3DKMDT_MCO_DRIVER","features":[311]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR","features":[311]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR_REGISTRYOVERRIDE","features":[311]},{"name":"D3DKMDT_MCO_SPECIFICCAP_REGISTRYOVERRIDE","features":[311]},{"name":"D3DKMDT_MCO_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MDT_OTHER","features":[311]},{"name":"D3DKMDT_MDT_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BASEBLOCK","features":[311]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BLOCKMAP","features":[311]},{"name":"D3DKMDT_MFRC_ACTIVESIZE","features":[311]},{"name":"D3DKMDT_MFRC_MAXPIXELRATE","features":[311]},{"name":"D3DKMDT_MFRC_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MOA_INTERRUPTIBLE","features":[311]},{"name":"D3DKMDT_MOA_NONE","features":[311]},{"name":"D3DKMDT_MOA_POLLED","features":[311]},{"name":"D3DKMDT_MOA_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MODE_PREFERENCE","features":[311]},{"name":"D3DKMDT_MODE_PRUNING_REASON","features":[311]},{"name":"D3DKMDT_MONITOR_CAPABILITIES_ORIGIN","features":[311]},{"name":"D3DKMDT_MONITOR_CONNECTIVITY_CHECKS","features":[311]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR","features":[311]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR_TYPE","features":[311]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE","features":[311]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE_CONSTRAINT","features":[311]},{"name":"D3DKMDT_MONITOR_ORIENTATION","features":[311]},{"name":"D3DKMDT_MONITOR_ORIENTATION_AWARENESS","features":[311]},{"name":"D3DKMDT_MONITOR_SOURCE_MODE","features":[311]},{"name":"D3DKMDT_MONITOR_TIMING_TYPE","features":[311]},{"name":"D3DKMDT_MO_0DEG","features":[311]},{"name":"D3DKMDT_MO_180DEG","features":[311]},{"name":"D3DKMDT_MO_270DEG","features":[311]},{"name":"D3DKMDT_MO_90DEG","features":[311]},{"name":"D3DKMDT_MO_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MPR_ALLCAPS","features":[311]},{"name":"D3DKMDT_MPR_CLONE_PATH_PRUNED","features":[311]},{"name":"D3DKMDT_MPR_DEFAULT_PROFILE_MONITOR_SOURCE_MODE","features":[311]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_FREQUENCY_RANGE","features":[311]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_SOURCE_MODE","features":[311]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_FREQUENCY_RANGE","features":[311]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_SOURCE_MODE","features":[311]},{"name":"D3DKMDT_MPR_DRIVER_RECOMMENDED_MONITOR_SOURCE_MODE","features":[311]},{"name":"D3DKMDT_MPR_MAXVALID","features":[311]},{"name":"D3DKMDT_MPR_MONITOR_FREQUENCY_RANGE_OVERRIDE","features":[311]},{"name":"D3DKMDT_MPR_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MP_NOTPREFERRED","features":[311]},{"name":"D3DKMDT_MP_PREFERRED","features":[311]},{"name":"D3DKMDT_MP_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_MTT_DEFAULTMONITORPROFILE","features":[311]},{"name":"D3DKMDT_MTT_DETAILED","features":[311]},{"name":"D3DKMDT_MTT_DRIVER","features":[311]},{"name":"D3DKMDT_MTT_ESTABLISHED","features":[311]},{"name":"D3DKMDT_MTT_EXTRASTANDARD","features":[311]},{"name":"D3DKMDT_MTT_STANDARD","features":[311]},{"name":"D3DKMDT_MTT_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_PALETTEDATA","features":[311]},{"name":"D3DKMDT_PIXEL_VALUE_ACCESS_MODE","features":[311]},{"name":"D3DKMDT_PREEMPTION_CAPS","features":[311]},{"name":"D3DKMDT_PVAM_DIRECT","features":[311]},{"name":"D3DKMDT_PVAM_PRESETPALETTE","features":[311]},{"name":"D3DKMDT_PVAM_SETTABLEPALETTE","features":[311]},{"name":"D3DKMDT_PVAM_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_RMT_GRAPHICS","features":[311]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO","features":[311]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO_ADVANCED_SCAN","features":[311]},{"name":"D3DKMDT_RMT_TEXT","features":[311]},{"name":"D3DKMDT_RMT_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_SHADOWSURFACEDATA","features":[311]},{"name":"D3DKMDT_SHAREDPRIMARYSURFACEDATA","features":[311]},{"name":"D3DKMDT_STAGINGSURFACEDATA","features":[311]},{"name":"D3DKMDT_STANDARDALLOCATION_GDISURFACE","features":[311]},{"name":"D3DKMDT_STANDARDALLOCATION_SHADOWSURFACE","features":[311]},{"name":"D3DKMDT_STANDARDALLOCATION_SHAREDPRIMARYSURFACE","features":[311]},{"name":"D3DKMDT_STANDARDALLOCATION_STAGINGSURFACE","features":[311]},{"name":"D3DKMDT_STANDARDALLOCATION_TYPE","features":[311]},{"name":"D3DKMDT_STANDARDALLOCATION_VGPU","features":[311]},{"name":"D3DKMDT_TEXT_RENDERING_FORMAT","features":[311]},{"name":"D3DKMDT_TRF_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VIDEO_OUTPUT_TECHNOLOGY","features":[311]},{"name":"D3DKMDT_VIDEO_PRESENT_SOURCE","features":[311]},{"name":"D3DKMDT_VIDEO_PRESENT_TARGET","features":[311,303]},{"name":"D3DKMDT_VIDEO_SIGNAL_INFO","features":[311]},{"name":"D3DKMDT_VIDEO_SIGNAL_STANDARD","features":[311]},{"name":"D3DKMDT_VIDPN_HW_CAPABILITY","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_CONTENT","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_SUPPORT","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_TYPE","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_IMPORTANCE","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION_SUPPORT","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING_SUPPORT","features":[311]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_TRANSFORMATION","features":[311]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE","features":[311]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE_TYPE","features":[311]},{"name":"D3DKMDT_VIDPN_TARGET_MODE","features":[311]},{"name":"D3DKMDT_VIRTUALGPUSURFACEDATA","features":[311]},{"name":"D3DKMDT_VOT_BNC","features":[311]},{"name":"D3DKMDT_VOT_COMPONENT_VIDEO","features":[311]},{"name":"D3DKMDT_VOT_COMPOSITE_VIDEO","features":[311]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EMBEDDED","features":[311]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EXTERNAL","features":[311]},{"name":"D3DKMDT_VOT_DVI","features":[311]},{"name":"D3DKMDT_VOT_D_JPN","features":[311]},{"name":"D3DKMDT_VOT_HD15","features":[311]},{"name":"D3DKMDT_VOT_HDMI","features":[311]},{"name":"D3DKMDT_VOT_INDIRECT_WIRED","features":[311]},{"name":"D3DKMDT_VOT_INTERNAL","features":[311]},{"name":"D3DKMDT_VOT_LVDS","features":[311]},{"name":"D3DKMDT_VOT_MIRACAST","features":[311]},{"name":"D3DKMDT_VOT_OTHER","features":[311]},{"name":"D3DKMDT_VOT_RCA_3COMPONENT","features":[311]},{"name":"D3DKMDT_VOT_RF","features":[311]},{"name":"D3DKMDT_VOT_SDI","features":[311]},{"name":"D3DKMDT_VOT_SDTVDONGLE","features":[311]},{"name":"D3DKMDT_VOT_SVIDEO","features":[311]},{"name":"D3DKMDT_VOT_SVIDEO_4PIN","features":[311]},{"name":"D3DKMDT_VOT_SVIDEO_7PIN","features":[311]},{"name":"D3DKMDT_VOT_UDI_EMBEDDED","features":[311]},{"name":"D3DKMDT_VOT_UDI_EXTERNAL","features":[311]},{"name":"D3DKMDT_VOT_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VPPC_GRAPHICS","features":[311]},{"name":"D3DKMDT_VPPC_NOTSPECIFIED","features":[311]},{"name":"D3DKMDT_VPPC_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VPPC_VIDEO","features":[311]},{"name":"D3DKMDT_VPPI_DENARY","features":[311]},{"name":"D3DKMDT_VPPI_NONARY","features":[311]},{"name":"D3DKMDT_VPPI_OCTONARY","features":[311]},{"name":"D3DKMDT_VPPI_PRIMARY","features":[311]},{"name":"D3DKMDT_VPPI_QUATERNARY","features":[311]},{"name":"D3DKMDT_VPPI_QUINARY","features":[311]},{"name":"D3DKMDT_VPPI_SECONDARY","features":[311]},{"name":"D3DKMDT_VPPI_SENARY","features":[311]},{"name":"D3DKMDT_VPPI_SEPTENARY","features":[311]},{"name":"D3DKMDT_VPPI_TERTIARY","features":[311]},{"name":"D3DKMDT_VPPI_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VPPMT_MACROVISION_APSTRIGGER","features":[311]},{"name":"D3DKMDT_VPPMT_MACROVISION_FULLSUPPORT","features":[311]},{"name":"D3DKMDT_VPPMT_NOPROTECTION","features":[311]},{"name":"D3DKMDT_VPPMT_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VPPR_IDENTITY","features":[311]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET180","features":[311]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET270","features":[311]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET90","features":[311]},{"name":"D3DKMDT_VPPR_NOTSPECIFIED","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE180","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET180","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET270","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET90","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE270","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET180","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET270","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET90","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE90","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET180","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET270","features":[311]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET90","features":[311]},{"name":"D3DKMDT_VPPR_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VPPR_UNPINNED","features":[311]},{"name":"D3DKMDT_VPPS_ASPECTRATIOCENTEREDMAX","features":[311]},{"name":"D3DKMDT_VPPS_CENTERED","features":[311]},{"name":"D3DKMDT_VPPS_CUSTOM","features":[311]},{"name":"D3DKMDT_VPPS_IDENTITY","features":[311]},{"name":"D3DKMDT_VPPS_NOTSPECIFIED","features":[311]},{"name":"D3DKMDT_VPPS_RESERVED1","features":[311]},{"name":"D3DKMDT_VPPS_STRETCHED","features":[311]},{"name":"D3DKMDT_VPPS_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VPPS_UNPINNED","features":[311]},{"name":"D3DKMDT_VSS_APPLE","features":[311]},{"name":"D3DKMDT_VSS_EIA_861","features":[311]},{"name":"D3DKMDT_VSS_EIA_861A","features":[311]},{"name":"D3DKMDT_VSS_EIA_861B","features":[311]},{"name":"D3DKMDT_VSS_IBM","features":[311]},{"name":"D3DKMDT_VSS_NTSC_443","features":[311]},{"name":"D3DKMDT_VSS_NTSC_J","features":[311]},{"name":"D3DKMDT_VSS_NTSC_M","features":[311]},{"name":"D3DKMDT_VSS_OTHER","features":[311]},{"name":"D3DKMDT_VSS_PAL_B","features":[311]},{"name":"D3DKMDT_VSS_PAL_B1","features":[311]},{"name":"D3DKMDT_VSS_PAL_D","features":[311]},{"name":"D3DKMDT_VSS_PAL_G","features":[311]},{"name":"D3DKMDT_VSS_PAL_H","features":[311]},{"name":"D3DKMDT_VSS_PAL_I","features":[311]},{"name":"D3DKMDT_VSS_PAL_K","features":[311]},{"name":"D3DKMDT_VSS_PAL_K1","features":[311]},{"name":"D3DKMDT_VSS_PAL_L","features":[311]},{"name":"D3DKMDT_VSS_PAL_M","features":[311]},{"name":"D3DKMDT_VSS_PAL_N","features":[311]},{"name":"D3DKMDT_VSS_PAL_NC","features":[311]},{"name":"D3DKMDT_VSS_SECAM_B","features":[311]},{"name":"D3DKMDT_VSS_SECAM_D","features":[311]},{"name":"D3DKMDT_VSS_SECAM_G","features":[311]},{"name":"D3DKMDT_VSS_SECAM_H","features":[311]},{"name":"D3DKMDT_VSS_SECAM_K","features":[311]},{"name":"D3DKMDT_VSS_SECAM_K1","features":[311]},{"name":"D3DKMDT_VSS_SECAM_L","features":[311]},{"name":"D3DKMDT_VSS_SECAM_L1","features":[311]},{"name":"D3DKMDT_VSS_UNINITIALIZED","features":[311]},{"name":"D3DKMDT_VSS_VESA_CVT","features":[311]},{"name":"D3DKMDT_VSS_VESA_DMT","features":[311]},{"name":"D3DKMDT_VSS_VESA_GTF","features":[311]},{"name":"D3DKMDT_WIRE_FORMAT_AND_PREFERENCE","features":[311]},{"name":"D3DKMTAcquireKeyedMutex","features":[311,303]},{"name":"D3DKMTAcquireKeyedMutex2","features":[311,303]},{"name":"D3DKMTAdjustFullscreenGamma","features":[311,303]},{"name":"D3DKMTCancelPresents","features":[311,303]},{"name":"D3DKMTChangeSurfacePointer","features":[311,303,314]},{"name":"D3DKMTChangeVideoMemoryReservation","features":[311,303]},{"name":"D3DKMTCheckExclusiveOwnership","features":[311,303]},{"name":"D3DKMTCheckMonitorPowerState","features":[311,303]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport","features":[311,303]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport2","features":[311,303]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport3","features":[311,303]},{"name":"D3DKMTCheckOcclusion","features":[311,303]},{"name":"D3DKMTCheckSharedResourceAccess","features":[311,303]},{"name":"D3DKMTCheckVidPnExclusiveOwnership","features":[311,303]},{"name":"D3DKMTCloseAdapter","features":[311,303]},{"name":"D3DKMTConfigureSharedResource","features":[311,303]},{"name":"D3DKMTCreateAllocation","features":[311,303]},{"name":"D3DKMTCreateAllocation2","features":[311,303]},{"name":"D3DKMTCreateContext","features":[311,303]},{"name":"D3DKMTCreateContextVirtual","features":[311,303]},{"name":"D3DKMTCreateDCFromMemory","features":[311,303,314]},{"name":"D3DKMTCreateDevice","features":[311,303]},{"name":"D3DKMTCreateHwContext","features":[311,303]},{"name":"D3DKMTCreateHwQueue","features":[311,303]},{"name":"D3DKMTCreateKeyedMutex","features":[311,303]},{"name":"D3DKMTCreateKeyedMutex2","features":[311,303]},{"name":"D3DKMTCreateOutputDupl","features":[311,303]},{"name":"D3DKMTCreateOverlay","features":[311,303]},{"name":"D3DKMTCreatePagingQueue","features":[311,303]},{"name":"D3DKMTCreateProtectedSession","features":[311,303]},{"name":"D3DKMTCreateSynchronizationObject","features":[311,303]},{"name":"D3DKMTCreateSynchronizationObject2","features":[311,303]},{"name":"D3DKMTDestroyAllocation","features":[311,303]},{"name":"D3DKMTDestroyAllocation2","features":[311,303]},{"name":"D3DKMTDestroyContext","features":[311,303]},{"name":"D3DKMTDestroyDCFromMemory","features":[311,303,314]},{"name":"D3DKMTDestroyDevice","features":[311,303]},{"name":"D3DKMTDestroyHwContext","features":[311,303]},{"name":"D3DKMTDestroyHwQueue","features":[311,303]},{"name":"D3DKMTDestroyKeyedMutex","features":[311,303]},{"name":"D3DKMTDestroyOutputDupl","features":[311,303]},{"name":"D3DKMTDestroyOverlay","features":[311,303]},{"name":"D3DKMTDestroyPagingQueue","features":[311,303]},{"name":"D3DKMTDestroyProtectedSession","features":[311,303]},{"name":"D3DKMTDestroySynchronizationObject","features":[311,303]},{"name":"D3DKMTEnumAdapters","features":[311,303]},{"name":"D3DKMTEnumAdapters2","features":[311,303]},{"name":"D3DKMTEnumAdapters3","features":[311,303]},{"name":"D3DKMTEscape","features":[311,303]},{"name":"D3DKMTEvict","features":[311,303]},{"name":"D3DKMTFlipOverlay","features":[311,303]},{"name":"D3DKMTFlushHeapTransitions","features":[311,303]},{"name":"D3DKMTFreeGpuVirtualAddress","features":[311,303]},{"name":"D3DKMTGetAllocationPriority","features":[311,303]},{"name":"D3DKMTGetContextInProcessSchedulingPriority","features":[311,303]},{"name":"D3DKMTGetContextSchedulingPriority","features":[311,303]},{"name":"D3DKMTGetDWMVerticalBlankEvent","features":[311,303]},{"name":"D3DKMTGetDeviceState","features":[311,303]},{"name":"D3DKMTGetDisplayModeList","features":[311,303]},{"name":"D3DKMTGetMultiPlaneOverlayCaps","features":[311,303]},{"name":"D3DKMTGetMultisampleMethodList","features":[311,303]},{"name":"D3DKMTGetOverlayState","features":[311,303]},{"name":"D3DKMTGetPostCompositionCaps","features":[311,303]},{"name":"D3DKMTGetPresentHistory","features":[311,303]},{"name":"D3DKMTGetPresentQueueEvent","features":[311,303]},{"name":"D3DKMTGetProcessDeviceRemovalSupport","features":[311,303]},{"name":"D3DKMTGetProcessSchedulingPriorityClass","features":[311,303]},{"name":"D3DKMTGetResourcePresentPrivateDriverData","features":[311,303]},{"name":"D3DKMTGetRuntimeData","features":[311,303]},{"name":"D3DKMTGetScanLine","features":[311,303]},{"name":"D3DKMTGetSharedPrimaryHandle","features":[311,303]},{"name":"D3DKMTGetSharedResourceAdapterLuid","features":[311,303]},{"name":"D3DKMTInvalidateActiveVidPn","features":[311,303]},{"name":"D3DKMTInvalidateCache","features":[311,303]},{"name":"D3DKMTLock","features":[311,303]},{"name":"D3DKMTLock2","features":[311,303]},{"name":"D3DKMTMakeResident","features":[311,303]},{"name":"D3DKMTMapGpuVirtualAddress","features":[311,303]},{"name":"D3DKMTMarkDeviceAsError","features":[311,303]},{"name":"D3DKMTOfferAllocations","features":[311,303]},{"name":"D3DKMTOpenAdapterFromDeviceName","features":[311,303]},{"name":"D3DKMTOpenAdapterFromGdiDisplayName","features":[311,303]},{"name":"D3DKMTOpenAdapterFromHdc","features":[311,303,314]},{"name":"D3DKMTOpenAdapterFromLuid","features":[311,303]},{"name":"D3DKMTOpenKeyedMutex","features":[311,303]},{"name":"D3DKMTOpenKeyedMutex2","features":[311,303]},{"name":"D3DKMTOpenKeyedMutexFromNtHandle","features":[311,303]},{"name":"D3DKMTOpenNtHandleFromName","features":[304,311,303]},{"name":"D3DKMTOpenProtectedSessionFromNtHandle","features":[311,303]},{"name":"D3DKMTOpenResource","features":[311,303]},{"name":"D3DKMTOpenResource2","features":[311,303]},{"name":"D3DKMTOpenResourceFromNtHandle","features":[311,303]},{"name":"D3DKMTOpenSyncObjectFromNtHandle","features":[311,303]},{"name":"D3DKMTOpenSyncObjectFromNtHandle2","features":[311,303]},{"name":"D3DKMTOpenSyncObjectNtHandleFromName","features":[304,311,303]},{"name":"D3DKMTOpenSynchronizationObject","features":[311,303]},{"name":"D3DKMTOutputDuplGetFrameInfo","features":[311,303]},{"name":"D3DKMTOutputDuplGetMetaData","features":[311,303]},{"name":"D3DKMTOutputDuplGetPointerShapeData","features":[311,303]},{"name":"D3DKMTOutputDuplPresent","features":[311,303]},{"name":"D3DKMTOutputDuplPresentToHwQueue","features":[311,303]},{"name":"D3DKMTOutputDuplReleaseFrame","features":[311,303]},{"name":"D3DKMTPollDisplayChildren","features":[311,303]},{"name":"D3DKMTPresent","features":[311,303]},{"name":"D3DKMTPresentMultiPlaneOverlay","features":[311,303]},{"name":"D3DKMTPresentMultiPlaneOverlay2","features":[311,303]},{"name":"D3DKMTPresentMultiPlaneOverlay3","features":[311,303]},{"name":"D3DKMTPresentRedirected","features":[311,303]},{"name":"D3DKMTQueryAdapterInfo","features":[311,303]},{"name":"D3DKMTQueryAllocationResidency","features":[311,303]},{"name":"D3DKMTQueryClockCalibration","features":[311,303]},{"name":"D3DKMTQueryFSEBlock","features":[311,303]},{"name":"D3DKMTQueryProcessOfferInfo","features":[311,303]},{"name":"D3DKMTQueryProtectedSessionInfoFromNtHandle","features":[311,303]},{"name":"D3DKMTQueryProtectedSessionStatus","features":[311,303]},{"name":"D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName","features":[311,303]},{"name":"D3DKMTQueryResourceInfo","features":[311,303]},{"name":"D3DKMTQueryResourceInfoFromNtHandle","features":[311,303]},{"name":"D3DKMTQueryStatistics","features":[311,303]},{"name":"D3DKMTQueryVidPnExclusiveOwnership","features":[311,303]},{"name":"D3DKMTQueryVideoMemoryInfo","features":[311,303]},{"name":"D3DKMTReclaimAllocations","features":[311,303]},{"name":"D3DKMTReclaimAllocations2","features":[311,303]},{"name":"D3DKMTRegisterTrimNotification","features":[311,303]},{"name":"D3DKMTRegisterVailProcess","features":[311,303]},{"name":"D3DKMTReleaseKeyedMutex","features":[311,303]},{"name":"D3DKMTReleaseKeyedMutex2","features":[311,303]},{"name":"D3DKMTReleaseProcessVidPnSourceOwners","features":[311,303]},{"name":"D3DKMTRender","features":[311,303]},{"name":"D3DKMTReserveGpuVirtualAddress","features":[311,303]},{"name":"D3DKMTSetAllocationPriority","features":[311,303]},{"name":"D3DKMTSetContextInProcessSchedulingPriority","features":[311,303]},{"name":"D3DKMTSetContextSchedulingPriority","features":[311,303]},{"name":"D3DKMTSetDisplayMode","features":[311,303]},{"name":"D3DKMTSetDisplayPrivateDriverFormat","features":[311,303]},{"name":"D3DKMTSetFSEBlock","features":[311,303]},{"name":"D3DKMTSetGammaRamp","features":[311,303]},{"name":"D3DKMTSetHwProtectionTeardownRecovery","features":[311,303]},{"name":"D3DKMTSetMonitorColorSpaceTransform","features":[311,303]},{"name":"D3DKMTSetProcessSchedulingPriorityClass","features":[311,303]},{"name":"D3DKMTSetQueuedLimit","features":[311,303]},{"name":"D3DKMTSetStablePowerState","features":[311,303]},{"name":"D3DKMTSetSyncRefreshCountWaitTarget","features":[311,303]},{"name":"D3DKMTSetVidPnSourceHwProtection","features":[311,303]},{"name":"D3DKMTSetVidPnSourceOwner","features":[311,303]},{"name":"D3DKMTSetVidPnSourceOwner1","features":[311,303]},{"name":"D3DKMTSetVidPnSourceOwner2","features":[311,303]},{"name":"D3DKMTShareObjects","features":[304,311,303]},{"name":"D3DKMTSharedPrimaryLockNotification","features":[311,303]},{"name":"D3DKMTSharedPrimaryUnLockNotification","features":[311,303]},{"name":"D3DKMTSignalSynchronizationObject","features":[311,303]},{"name":"D3DKMTSignalSynchronizationObject2","features":[311,303]},{"name":"D3DKMTSignalSynchronizationObjectFromCpu","features":[311,303]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu","features":[311,303]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu2","features":[311,303]},{"name":"D3DKMTSubmitCommand","features":[311,303]},{"name":"D3DKMTSubmitCommandToHwQueue","features":[311,303]},{"name":"D3DKMTSubmitPresentBltToHwQueue","features":[311,303]},{"name":"D3DKMTSubmitPresentToHwQueue","features":[311,303]},{"name":"D3DKMTSubmitSignalSyncObjectsToHwQueue","features":[311,303]},{"name":"D3DKMTSubmitWaitForSyncObjectsToHwQueue","features":[311,303]},{"name":"D3DKMTTrimProcessCommitment","features":[311,303]},{"name":"D3DKMTUnlock","features":[311,303]},{"name":"D3DKMTUnlock2","features":[311,303]},{"name":"D3DKMTUnregisterTrimNotification","features":[311,303]},{"name":"D3DKMTUpdateAllocationProperty","features":[311,303]},{"name":"D3DKMTUpdateGpuVirtualAddress","features":[311,303]},{"name":"D3DKMTUpdateOverlay","features":[311,303]},{"name":"D3DKMTWaitForIdle","features":[311,303]},{"name":"D3DKMTWaitForSynchronizationObject","features":[311,303]},{"name":"D3DKMTWaitForSynchronizationObject2","features":[311,303]},{"name":"D3DKMTWaitForSynchronizationObjectFromCpu","features":[311,303]},{"name":"D3DKMTWaitForSynchronizationObjectFromGpu","features":[311,303]},{"name":"D3DKMTWaitForVerticalBlankEvent","features":[311,303]},{"name":"D3DKMTWaitForVerticalBlankEvent2","features":[311,303]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX","features":[311]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX2","features":[311]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_ESCAPE","features":[311,303]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE","features":[311]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_EXTRA_CCD_DATABASE_INFO","features":[311]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_MODES_PRUNED","features":[311]},{"name":"D3DKMT_ADAPTERADDRESS","features":[311]},{"name":"D3DKMT_ADAPTERINFO","features":[311,303]},{"name":"D3DKMT_ADAPTERREGISTRYINFO","features":[311]},{"name":"D3DKMT_ADAPTERTYPE","features":[311]},{"name":"D3DKMT_ADAPTER_PERFDATA","features":[311]},{"name":"D3DKMT_ADAPTER_PERFDATACAPS","features":[311]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION","features":[311]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_DATA","features":[311]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_TYPE","features":[311]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_FLAGS","features":[311]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_TRIM_INTERVAL","features":[311]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_FLAGS","features":[311]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_TRIM_INTERVAL","features":[311]},{"name":"D3DKMT_ADJUSTFULLSCREENGAMMA","features":[311]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS","features":[311]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_NOTRESIDENT","features":[311]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINGPUMEMORY","features":[311]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINSHAREDMEMORY","features":[311]},{"name":"D3DKMT_AUXILIARYPRESENTINFO","features":[311]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE","features":[311]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE_FLIPMANAGER","features":[311]},{"name":"D3DKMT_AllocationPriorityClassHigh","features":[311]},{"name":"D3DKMT_AllocationPriorityClassLow","features":[311]},{"name":"D3DKMT_AllocationPriorityClassMaximum","features":[311]},{"name":"D3DKMT_AllocationPriorityClassMinimum","features":[311]},{"name":"D3DKMT_AllocationPriorityClassNormal","features":[311]},{"name":"D3DKMT_BDDFALLBACK_CTL","features":[311,303]},{"name":"D3DKMT_BLOCKLIST_INFO","features":[311]},{"name":"D3DKMT_BLTMODEL_PRESENTHISTORYTOKEN","features":[311,303]},{"name":"D3DKMT_BRIGHTNESS_INFO","features":[311,303]},{"name":"D3DKMT_BRIGHTNESS_INFO_BEGIN_MANUAL_MODE","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_END_MANUAL_MODE","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_CAPS","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_NIT_RANGES","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_POSSIBLE_LEVELS","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_REDUCTION","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_OPTIMIZATION","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_STATE","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_TOGGLE_LOGGING","features":[311]},{"name":"D3DKMT_BRIGHTNESS_INFO_TYPE","features":[311]},{"name":"D3DKMT_BRIGHTNESS_POSSIBLE_LEVELS","features":[311]},{"name":"D3DKMT_BUDGETCHANGENOTIFICATION","features":[311]},{"name":"D3DKMT_CANCEL_PRESENTS","features":[311,303]},{"name":"D3DKMT_CANCEL_PRESENTS_FLAGS","features":[311]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION","features":[311]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_CANCEL_FROM","features":[311]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_REPROGRAM_INTERRUPT","features":[311]},{"name":"D3DKMT_CHANGESURFACEPOINTER","features":[311,303,314]},{"name":"D3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[311,303]},{"name":"D3DKMT_CHECKMONITORPOWERSTATE","features":[311]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[311,303]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[311,303]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[311,303]},{"name":"D3DKMT_CHECKOCCLUSION","features":[311,303]},{"name":"D3DKMT_CHECKSHAREDRESOURCEACCESS","features":[311]},{"name":"D3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[311]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE","features":[311,303]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE2","features":[311,303]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE3","features":[311,303]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO","features":[311]},{"name":"D3DKMT_CLIENTHINT","features":[311]},{"name":"D3DKMT_CLIENTHINT_11ON12","features":[311]},{"name":"D3DKMT_CLIENTHINT_9ON12","features":[311]},{"name":"D3DKMT_CLIENTHINT_CDD","features":[311]},{"name":"D3DKMT_CLIENTHINT_CLON12","features":[311]},{"name":"D3DKMT_CLIENTHINT_CUDA","features":[311]},{"name":"D3DKMT_CLIENTHINT_DML_PYTORCH","features":[311]},{"name":"D3DKMT_CLIENTHINT_DML_TENSORFLOW","features":[311]},{"name":"D3DKMT_CLIENTHINT_DX10","features":[311]},{"name":"D3DKMT_CLIENTHINT_DX11","features":[311]},{"name":"D3DKMT_CLIENTHINT_DX12","features":[311]},{"name":"D3DKMT_CLIENTHINT_DX7","features":[311]},{"name":"D3DKMT_CLIENTHINT_DX8","features":[311]},{"name":"D3DKMT_CLIENTHINT_DX9","features":[311]},{"name":"D3DKMT_CLIENTHINT_GLON12","features":[311]},{"name":"D3DKMT_CLIENTHINT_MAX","features":[311]},{"name":"D3DKMT_CLIENTHINT_MFT_ENCODE","features":[311]},{"name":"D3DKMT_CLIENTHINT_ONEAPI_LEVEL0","features":[311]},{"name":"D3DKMT_CLIENTHINT_OPENCL","features":[311]},{"name":"D3DKMT_CLIENTHINT_OPENGL","features":[311]},{"name":"D3DKMT_CLIENTHINT_RESERVED","features":[311]},{"name":"D3DKMT_CLIENTHINT_UNKNOWN","features":[311]},{"name":"D3DKMT_CLIENTHINT_VULKAN","features":[311]},{"name":"D3DKMT_CLOSEADAPTER","features":[311]},{"name":"D3DKMT_COMPOSITION_PRESENTHISTORYTOKEN","features":[311]},{"name":"D3DKMT_CONFIGURESHAREDRESOURCE","features":[311,303]},{"name":"D3DKMT_CONNECT_DOORBELL","features":[311]},{"name":"D3DKMT_CONNECT_DOORBELL_FLAGS","features":[311]},{"name":"D3DKMT_CPDRIVERNAME","features":[311]},{"name":"D3DKMT_CREATEALLOCATION","features":[311,303]},{"name":"D3DKMT_CREATEALLOCATIONFLAGS","features":[311]},{"name":"D3DKMT_CREATECONTEXT","features":[311]},{"name":"D3DKMT_CREATECONTEXTVIRTUAL","features":[311]},{"name":"D3DKMT_CREATEDCFROMMEMORY","features":[311,303,314]},{"name":"D3DKMT_CREATEDEVICE","features":[311]},{"name":"D3DKMT_CREATEDEVICEFLAGS","features":[311]},{"name":"D3DKMT_CREATEHWCONTEXT","features":[311]},{"name":"D3DKMT_CREATEHWQUEUE","features":[311]},{"name":"D3DKMT_CREATEKEYEDMUTEX","features":[311]},{"name":"D3DKMT_CREATEKEYEDMUTEX2","features":[311]},{"name":"D3DKMT_CREATEKEYEDMUTEX2_FLAGS","features":[311]},{"name":"D3DKMT_CREATENATIVEFENCE","features":[311]},{"name":"D3DKMT_CREATEOVERLAY","features":[311]},{"name":"D3DKMT_CREATEPAGINGQUEUE","features":[311]},{"name":"D3DKMT_CREATEPROTECTEDSESSION","features":[311]},{"name":"D3DKMT_CREATESTANDARDALLOCATION","features":[311]},{"name":"D3DKMT_CREATESTANDARDALLOCATIONFLAGS","features":[311]},{"name":"D3DKMT_CREATESYNCFILE","features":[311]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[311,303]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[311,303]},{"name":"D3DKMT_CREATE_DOORBELL","features":[311]},{"name":"D3DKMT_CREATE_DOORBELL_FLAGS","features":[311]},{"name":"D3DKMT_CREATE_OUTPUTDUPL","features":[311,303]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT","features":[311]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER","features":[311]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_COPY","features":[311]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_NONE","features":[311]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_SCANOUT","features":[311]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_TEXTURE","features":[311]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_HEIGHT_ALIGNMENT","features":[311]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_PITCH_ALIGNMENT","features":[311]},{"name":"D3DKMT_CURRENTDISPLAYMODE","features":[311]},{"name":"D3DKMT_ClientPagingBuffer","features":[311]},{"name":"D3DKMT_ClientRenderBuffer","features":[311]},{"name":"D3DKMT_DEBUG_SNAPSHOT_ESCAPE","features":[311]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_DOWNWARD","features":[311]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_PASS","features":[311]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_UPWARD","features":[311]},{"name":"D3DKMT_DEFRAG_ESCAPE_GET_FRAGMENTATION_STATS","features":[311]},{"name":"D3DKMT_DEFRAG_ESCAPE_OPERATION","features":[311]},{"name":"D3DKMT_DEFRAG_ESCAPE_VERIFY_TRANSFER","features":[311]},{"name":"D3DKMT_DESTROYALLOCATION","features":[311]},{"name":"D3DKMT_DESTROYALLOCATION2","features":[311]},{"name":"D3DKMT_DESTROYCONTEXT","features":[311]},{"name":"D3DKMT_DESTROYDCFROMMEMORY","features":[311,303,314]},{"name":"D3DKMT_DESTROYDEVICE","features":[311]},{"name":"D3DKMT_DESTROYHWCONTEXT","features":[311]},{"name":"D3DKMT_DESTROYHWQUEUE","features":[311]},{"name":"D3DKMT_DESTROYKEYEDMUTEX","features":[311]},{"name":"D3DKMT_DESTROYOVERLAY","features":[311]},{"name":"D3DKMT_DESTROYPROTECTEDSESSION","features":[311]},{"name":"D3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[311]},{"name":"D3DKMT_DESTROY_DOORBELL","features":[311]},{"name":"D3DKMT_DESTROY_OUTPUTDUPL","features":[311,303]},{"name":"D3DKMT_DEVICEESCAPE_RESTOREGAMMA","features":[311]},{"name":"D3DKMT_DEVICEESCAPE_TYPE","features":[311]},{"name":"D3DKMT_DEVICEESCAPE_VIDPNFROMALLOCATION","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_ACTIVE","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAFAULT","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAPAGEFAULT","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_OUTOFMEMORY","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_HUNG","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_RESET","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_STATE","features":[311]},{"name":"D3DKMT_DEVICEEXECUTION_STOPPED","features":[311]},{"name":"D3DKMT_DEVICEPAGEFAULT_STATE","features":[311]},{"name":"D3DKMT_DEVICEPRESENT_QUEUE_STATE","features":[311,303]},{"name":"D3DKMT_DEVICEPRESENT_STATE","features":[311]},{"name":"D3DKMT_DEVICEPRESENT_STATE_DWM","features":[311]},{"name":"D3DKMT_DEVICERESET_STATE","features":[311]},{"name":"D3DKMT_DEVICESTATE_EXECUTION","features":[311]},{"name":"D3DKMT_DEVICESTATE_PAGE_FAULT","features":[311]},{"name":"D3DKMT_DEVICESTATE_PRESENT","features":[311]},{"name":"D3DKMT_DEVICESTATE_PRESENT_DWM","features":[311]},{"name":"D3DKMT_DEVICESTATE_PRESENT_QUEUE","features":[311]},{"name":"D3DKMT_DEVICESTATE_RESET","features":[311]},{"name":"D3DKMT_DEVICESTATE_TYPE","features":[311]},{"name":"D3DKMT_DEVICE_ERROR_REASON","features":[311]},{"name":"D3DKMT_DEVICE_ERROR_REASON_DRIVER_ERROR","features":[311]},{"name":"D3DKMT_DEVICE_ERROR_REASON_GENERIC","features":[311]},{"name":"D3DKMT_DEVICE_ESCAPE","features":[311]},{"name":"D3DKMT_DEVICE_IDS","features":[311]},{"name":"D3DKMT_DIRECTFLIP_SUPPORT","features":[311,303]},{"name":"D3DKMT_DIRTYREGIONS","features":[311,303]},{"name":"D3DKMT_DISPLAYMODE","features":[311]},{"name":"D3DKMT_DISPLAYMODELIST","features":[311]},{"name":"D3DKMT_DISPLAY_CAPS","features":[311]},{"name":"D3DKMT_DISPLAY_UMD_FILENAMEINFO","features":[311]},{"name":"D3DKMT_DLIST_DRIVER_NAME","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_COFUNCPATHMODALITY_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_SOURCEMODESET_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_GET_ACTIVEVIDPN_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_GET_LASTCLIENTCOMMITTEDVIDPN_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_GET_MONITORS_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_GET_SUMMARY_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VERSION_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_SOURCES_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_TARGETS_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_COMMITTED_VIDPNS_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_RECOMMENDED_VIDPNS_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MODECHANGE_REQUESTS_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MONITOR_PRESENCE_EVENTS_INFO","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_UNINITIALIZED","features":[311]},{"name":"D3DKMT_DMMESCAPETYPE_VIDPN_MGR_DIAGNOSTICS","features":[311]},{"name":"D3DKMT_DMM_ESCAPE","features":[311]},{"name":"D3DKMT_DOD_SET_DIRTYRECT_MODE","features":[311,303]},{"name":"D3DKMT_DRIVERCAPS_EXT","features":[311]},{"name":"D3DKMT_DRIVERVERSION","features":[311]},{"name":"D3DKMT_DRIVER_DESCRIPTION","features":[311]},{"name":"D3DKMT_DeferredCommandBuffer","features":[311]},{"name":"D3DKMT_DeviceCommandBuffer","features":[311]},{"name":"D3DKMT_DmaPacketTypeMax","features":[311]},{"name":"D3DKMT_ENUMADAPTERS","features":[311,303]},{"name":"D3DKMT_ENUMADAPTERS2","features":[311,303]},{"name":"D3DKMT_ENUMADAPTERS3","features":[311,303]},{"name":"D3DKMT_ENUMADAPTERS_FILTER","features":[311]},{"name":"D3DKMT_ESCAPE","features":[311]},{"name":"D3DKMT_ESCAPETYPE","features":[311]},{"name":"D3DKMT_ESCAPE_ACTIVATE_SPECIFIC_DIAG","features":[311]},{"name":"D3DKMT_ESCAPE_ADAPTER_VERIFIER_OPTION","features":[311]},{"name":"D3DKMT_ESCAPE_BDD_FALLBACK","features":[311]},{"name":"D3DKMT_ESCAPE_BDD_PNP","features":[311]},{"name":"D3DKMT_ESCAPE_BRIGHTNESS","features":[311]},{"name":"D3DKMT_ESCAPE_CCD_DATABASE","features":[311]},{"name":"D3DKMT_ESCAPE_DEBUG_SNAPSHOT","features":[311]},{"name":"D3DKMT_ESCAPE_DEVICE","features":[311]},{"name":"D3DKMT_ESCAPE_DIAGNOSTICS","features":[311]},{"name":"D3DKMT_ESCAPE_DMM","features":[311]},{"name":"D3DKMT_ESCAPE_DOD_SET_DIRTYRECT_MODE","features":[311]},{"name":"D3DKMT_ESCAPE_DRIVERPRIVATE","features":[311]},{"name":"D3DKMT_ESCAPE_DRT_TEST","features":[311]},{"name":"D3DKMT_ESCAPE_EDID_CACHE","features":[311]},{"name":"D3DKMT_ESCAPE_FORCE_BDDFALLBACK_HEADLESS","features":[311]},{"name":"D3DKMT_ESCAPE_GET_DISPLAY_CONFIGURATIONS","features":[311]},{"name":"D3DKMT_ESCAPE_GET_EXTERNAL_DIAGNOSTICS","features":[311]},{"name":"D3DKMT_ESCAPE_HISTORY_BUFFER_STATUS","features":[311]},{"name":"D3DKMT_ESCAPE_IDD_REQUEST","features":[311]},{"name":"D3DKMT_ESCAPE_LOG_CODEPOINT_PACKET","features":[311]},{"name":"D3DKMT_ESCAPE_LOG_USERMODE_DAIG_PACKET","features":[311]},{"name":"D3DKMT_ESCAPE_MIRACAST_ADAPTER_DIAG_INFO","features":[311]},{"name":"D3DKMT_ESCAPE_MIRACAST_DISPLAY_REQUEST","features":[311]},{"name":"D3DKMT_ESCAPE_MODES_PRUNED_OUT","features":[311]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_DIAGNOSTICS","features":[311]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_SNAPSHOT","features":[311]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_COMMAND","features":[311]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_DEFAULT","features":[311]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_CPU","features":[311]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_GPU","features":[311]},{"name":"D3DKMT_ESCAPE_PROCESS_VERIFIER_OPTION","features":[311]},{"name":"D3DKMT_ESCAPE_QUERY_DMA_REMAPPING_STATUS","features":[311]},{"name":"D3DKMT_ESCAPE_QUERY_IOMMU_STATUS","features":[311]},{"name":"D3DKMT_ESCAPE_REQUEST_MACHINE_CRASH","features":[311]},{"name":"D3DKMT_ESCAPE_SOFTGPU_ENABLE_DISABLE_HMD","features":[311]},{"name":"D3DKMT_ESCAPE_TDRDBGCTRL","features":[311]},{"name":"D3DKMT_ESCAPE_VIDMM","features":[311]},{"name":"D3DKMT_ESCAPE_VIDSCH","features":[311]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE","features":[311,303]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE","features":[311]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_BASE_DESKTOP_DURATION","features":[311]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_PROCESS_BOOST_ELIGIBLE","features":[311]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_VSYNC_MULTIPLIER","features":[311]},{"name":"D3DKMT_ESCAPE_WHQL_INFO","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_BDD_FALLBACK","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_COLOR_PROFILE_INFO","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_DDA_TEST_CTL","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_DISPBROKER_TEST","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_DPI_INFO","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_HIP_DEVICE_INFO","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_PRESENTER_VIEW_INFO","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_QUERY_CD_ROTATION_BLOCK","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_SET_DIMMED_STATE","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_SPECIALIZED_DISPLAY_TEST","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_START","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_SYSTEM_DPI","features":[311]},{"name":"D3DKMT_ESCAPE_WIN32K_USER_DETECTED_BLACK_SCREEN","features":[311]},{"name":"D3DKMT_EVICT","features":[311]},{"name":"D3DKMT_EVICTION_CRITERIA","features":[311]},{"name":"D3DKMT_FENCE_PRESENTHISTORYTOKEN","features":[311]},{"name":"D3DKMT_FLIPINFOFLAGS","features":[311]},{"name":"D3DKMT_FLIPMANAGER_AUXILIARYPRESENTINFO","features":[311,303]},{"name":"D3DKMT_FLIPMANAGER_PRESENTHISTORYTOKEN","features":[311]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE","features":[311]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_COMPLETE","features":[311]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_SUBMITTED","features":[311]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKEN","features":[311,303]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKENFLAGS","features":[311]},{"name":"D3DKMT_FLIPOVERLAY","features":[311]},{"name":"D3DKMT_FLIPQUEUEINFO","features":[311]},{"name":"D3DKMT_FLUSHHEAPTRANSITIONS","features":[311]},{"name":"D3DKMT_FREEGPUVIRTUALADDRESS","features":[311]},{"name":"D3DKMT_GDIMODEL_PRESENTHISTORYTOKEN","features":[311,303]},{"name":"D3DKMT_GDIMODEL_SYSMEM_PRESENTHISTORYTOKEN","features":[311]},{"name":"D3DKMT_GDI_STYLE_HANDLE_DECORATION","features":[311]},{"name":"D3DKMT_GETALLOCATIONPRIORITY","features":[311]},{"name":"D3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[311]},{"name":"D3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[311]},{"name":"D3DKMT_GETDEVICESTATE","features":[311,303]},{"name":"D3DKMT_GETDISPLAYMODELIST","features":[311]},{"name":"D3DKMT_GETMULTISAMPLEMETHODLIST","features":[311]},{"name":"D3DKMT_GETOVERLAYSTATE","features":[311,303]},{"name":"D3DKMT_GETPRESENTHISTORY","features":[311,303]},{"name":"D3DKMT_GETPRESENTHISTORY_MAXTOKENS","features":[311]},{"name":"D3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[311,303]},{"name":"D3DKMT_GETRUNTIMEDATA","features":[311]},{"name":"D3DKMT_GETSCANLINE","features":[311,303]},{"name":"D3DKMT_GETSHAREDPRIMARYHANDLE","features":[311]},{"name":"D3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[311,303]},{"name":"D3DKMT_GETVERTICALBLANKEVENT","features":[311]},{"name":"D3DKMT_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[311,303]},{"name":"D3DKMT_GET_GPUMMU_CAPS","features":[311,303]},{"name":"D3DKMT_GET_MULTIPLANE_OVERLAY_CAPS","features":[311]},{"name":"D3DKMT_GET_POST_COMPOSITION_CAPS","features":[311]},{"name":"D3DKMT_GET_PTE","features":[311,303]},{"name":"D3DKMT_GET_PTE_MAX","features":[311]},{"name":"D3DKMT_GET_QUEUEDLIMIT_PRESENT","features":[311]},{"name":"D3DKMT_GET_SEGMENT_CAPS","features":[311,303]},{"name":"D3DKMT_GPUMMU_CAPS","features":[311]},{"name":"D3DKMT_GPUVERSION","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_STATE","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_TYPE","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_HIGH_PERFORMANCE","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_MINIMUM_POWER","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_NOT_FOUND","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNINITIALIZED","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNSPECIFIED","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_USER_SPECIFIED_GPU","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_DX_DATABASE","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_IHV_DLIST","features":[311]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_USER_PREFERENCE","features":[311]},{"name":"D3DKMT_HISTORY_BUFFER_STATUS","features":[311,303]},{"name":"D3DKMT_HWDRM_SUPPORT","features":[311,303]},{"name":"D3DKMT_HYBRID_DLIST_DLL_SUPPORT","features":[311,303]},{"name":"D3DKMT_HYBRID_LIST","features":[311,303]},{"name":"D3DKMT_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[311,303]},{"name":"D3DKMT_INDEPENDENTFLIP_SUPPORT","features":[311,303]},{"name":"D3DKMT_INVALIDATEACTIVEVIDPN","features":[311]},{"name":"D3DKMT_INVALIDATECACHE","features":[311]},{"name":"D3DKMT_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[311,303]},{"name":"D3DKMT_KMD_DRIVER_VERSION","features":[311]},{"name":"D3DKMT_LOCK","features":[311]},{"name":"D3DKMT_LOCK2","features":[311]},{"name":"D3DKMT_MARKDEVICEASERROR","features":[311]},{"name":"D3DKMT_MAX_BUNDLE_OBJECTS_PER_HANDLE","features":[311]},{"name":"D3DKMT_MAX_DMM_ESCAPE_DATASIZE","features":[311]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_ALLOCATIONS_PER_PLANE","features":[311]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_PLANES","features":[311]},{"name":"D3DKMT_MAX_OBJECTS_PER_HANDLE","features":[311]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_RECTS","features":[311]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_SCATTERBLTS","features":[311]},{"name":"D3DKMT_MAX_SEGMENT_COUNT","features":[311]},{"name":"D3DKMT_MAX_WAITFORVERTICALBLANK_OBJECTS","features":[311]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP","features":[311]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_LOCAL","features":[311]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_NON_LOCAL","features":[311]},{"name":"D3DKMT_MIRACASTCOMPANIONDRIVERNAME","features":[311]},{"name":"D3DKMT_MIRACAST_CHUNK_DATA","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_CANCELLED","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_ERROR","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_FOUND","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_STARTED","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_GPU_RESOURCE_IN_USE","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_BANDWIDTH","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_MEMORY","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INVALID_PARAMETER","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_PENDING","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_REMOTE_SESSION","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS_NO_MONITOR","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_ERROR","features":[311]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_PAIRING","features":[311]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_CAPS","features":[311,303]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATE","features":[311]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATUS","features":[311]},{"name":"D3DKMT_MIRACAST_DISPLAY_STOP_SESSIONS","features":[311,303]},{"name":"D3DKMT_MIRACAST_DRIVER_IHV","features":[311]},{"name":"D3DKMT_MIRACAST_DRIVER_MS","features":[311]},{"name":"D3DKMT_MIRACAST_DRIVER_NOT_SUPPORTED","features":[311]},{"name":"D3DKMT_MIRACAST_DRIVER_TYPE","features":[311]},{"name":"D3DKMT_MOVE_RECT","features":[311,303]},{"name":"D3DKMT_MPO3DDI_SUPPORT","features":[311,303]},{"name":"D3DKMT_MPOKERNELCAPS_SUPPORT","features":[311,303]},{"name":"D3DKMT_MULIIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_PROGRESSIVE","features":[311]},{"name":"D3DKMT_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[311,303]},{"name":"D3DKMT_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[311,303]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[311,303]},{"name":"D3DKMT_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[311,303]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SUPPORT","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY2","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY3","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES2","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES3","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_ALPHABLEND","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_OPAQUE","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_CAPS","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAGS","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_HORIZONTAL_FLIP","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_STATIC_CHECK","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_VERTICAL_FLIP","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_WITH_SOURCE","features":[311,303]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_HORIZONTAL","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_VERTICAL","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAGS","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE","features":[311]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_xvYCC","features":[311]},{"name":"D3DKMT_MULTISAMPLEMETHOD","features":[311]},{"name":"D3DKMT_MaxAllocationPriorityClass","features":[311]},{"name":"D3DKMT_MmIoFlipCommandBuffer","features":[311]},{"name":"D3DKMT_NODEMETADATA","features":[311,303]},{"name":"D3DKMT_NODE_PERFDATA","features":[311]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION","features":[311]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION_FLAGS","features":[311]},{"name":"D3DKMT_OFFERALLOCATIONS","features":[311]},{"name":"D3DKMT_OFFER_FLAGS","features":[311]},{"name":"D3DKMT_OFFER_PRIORITY","features":[311]},{"name":"D3DKMT_OFFER_PRIORITY_AUTO","features":[311]},{"name":"D3DKMT_OFFER_PRIORITY_HIGH","features":[311]},{"name":"D3DKMT_OFFER_PRIORITY_LOW","features":[311]},{"name":"D3DKMT_OFFER_PRIORITY_NORMAL","features":[311]},{"name":"D3DKMT_OPENADAPTERFROMDEVICENAME","features":[311,303]},{"name":"D3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[311,303]},{"name":"D3DKMT_OPENADAPTERFROMHDC","features":[311,303,314]},{"name":"D3DKMT_OPENADAPTERFROMLUID","features":[311,303]},{"name":"D3DKMT_OPENGLINFO","features":[311]},{"name":"D3DKMT_OPENKEYEDMUTEX","features":[311]},{"name":"D3DKMT_OPENKEYEDMUTEX2","features":[311]},{"name":"D3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[311,303]},{"name":"D3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[311,303]},{"name":"D3DKMT_OPENNTHANDLEFROMNAME","features":[304,311,303]},{"name":"D3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[311,303]},{"name":"D3DKMT_OPENRESOURCE","features":[311]},{"name":"D3DKMT_OPENRESOURCEFROMNTHANDLE","features":[311,303]},{"name":"D3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[311]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[311,303]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[311,303]},{"name":"D3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[304,311,303]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_INFO","features":[311,303]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE","features":[311]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_COLOR","features":[311]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR","features":[311]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MONOCHROME","features":[311]},{"name":"D3DKMT_OUTPUTDUPLCONTEXTSCOUNT","features":[311]},{"name":"D3DKMT_OUTPUTDUPLCREATIONFLAGS","features":[311]},{"name":"D3DKMT_OUTPUTDUPLPRESENT","features":[311,303]},{"name":"D3DKMT_OUTPUTDUPLPRESENTFLAGS","features":[311]},{"name":"D3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[311,303]},{"name":"D3DKMT_OUTPUTDUPL_FRAMEINFO","features":[311,303]},{"name":"D3DKMT_OUTPUTDUPL_GET_FRAMEINFO","features":[311,303]},{"name":"D3DKMT_OUTPUTDUPL_GET_POINTER_SHAPE_DATA","features":[311,303]},{"name":"D3DKMT_OUTPUTDUPL_KEYEDMUTEX","features":[311,303]},{"name":"D3DKMT_OUTPUTDUPL_METADATA","features":[311]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE","features":[311]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_DIRTY_RECTS","features":[311]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_MOVE_RECTS","features":[311]},{"name":"D3DKMT_OUTPUTDUPL_POINTER_POSITION","features":[311,303]},{"name":"D3DKMT_OUTPUTDUPL_RELEASE_FRAME","features":[311]},{"name":"D3DKMT_OUTPUTDUPL_SNAPSHOT","features":[311,303]},{"name":"D3DKMT_PAGE_TABLE_LEVEL_DESC","features":[311]},{"name":"D3DKMT_PANELFITTER_SUPPORT","features":[311,303]},{"name":"D3DKMT_PARAVIRTUALIZATION","features":[311,303]},{"name":"D3DKMT_PHYSICAL_ADAPTER_COUNT","features":[311]},{"name":"D3DKMT_PINDIRECTFLIPRESOURCES","features":[311]},{"name":"D3DKMT_PLANE_SPECIFIC_INPUT_FLAGS","features":[311]},{"name":"D3DKMT_PLANE_SPECIFIC_OUTPUT_FLAGS","features":[311]},{"name":"D3DKMT_PM_FLIPMANAGER","features":[311]},{"name":"D3DKMT_PM_REDIRECTED_BLT","features":[311]},{"name":"D3DKMT_PM_REDIRECTED_COMPOSITION","features":[311]},{"name":"D3DKMT_PM_REDIRECTED_FLIP","features":[311]},{"name":"D3DKMT_PM_REDIRECTED_GDI","features":[311]},{"name":"D3DKMT_PM_REDIRECTED_GDI_SYSMEM","features":[311]},{"name":"D3DKMT_PM_REDIRECTED_VISTABLT","features":[311]},{"name":"D3DKMT_PM_SCREENCAPTUREFENCE","features":[311]},{"name":"D3DKMT_PM_SURFACECOMPLETE","features":[311]},{"name":"D3DKMT_PM_UNINITIALIZED","features":[311]},{"name":"D3DKMT_PNP_KEY_HARDWARE","features":[311]},{"name":"D3DKMT_PNP_KEY_SOFTWARE","features":[311]},{"name":"D3DKMT_PNP_KEY_TYPE","features":[311]},{"name":"D3DKMT_POLLDISPLAYCHILDREN","features":[311]},{"name":"D3DKMT_PRESENT","features":[311,303]},{"name":"D3DKMT_PRESENTFLAGS","features":[311]},{"name":"D3DKMT_PRESENTHISTORYTOKEN","features":[311,303]},{"name":"D3DKMT_PRESENT_MODEL","features":[311]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY","features":[311,303]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY2","features":[311,303]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY3","features":[311,303]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY_FLAGS","features":[311]},{"name":"D3DKMT_PRESENT_REDIRECTED","features":[311,303]},{"name":"D3DKMT_PRESENT_REDIRECTED_FLAGS","features":[311]},{"name":"D3DKMT_PRESENT_RGNS","features":[311,303]},{"name":"D3DKMT_PRESENT_STATS","features":[311]},{"name":"D3DKMT_PRESENT_STATS_DWM","features":[311]},{"name":"D3DKMT_PRESENT_STATS_DWM2","features":[311]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION","features":[311,303]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_DATA","features":[311]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_TYPE","features":[311]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_FLAGS","features":[311]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_RESTRICT_BUDGET","features":[311]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_FLAGS","features":[311]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_RESTRICT_BUDGET","features":[311]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS","features":[311]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_INVALID","features":[311]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_OK","features":[311]},{"name":"D3DKMT_PreemptionAttempt","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyPreempting","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyRunning","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissFenceCommand","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissGlobalBlock","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissLessPriority","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissNextFence","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissNoCommand","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissNotEnabled","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissNotMakingProgress","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissPagingCommand","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissRemainingPreemptionQuantum","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissRemainingQuantum","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissRenderPendingFlip","features":[311]},{"name":"D3DKMT_PreemptionAttemptMissSplittedCommand","features":[311]},{"name":"D3DKMT_PreemptionAttemptStatisticsMax","features":[311]},{"name":"D3DKMT_PreemptionAttemptSuccess","features":[311]},{"name":"D3DKMT_QUERYADAPTERINFO","features":[311]},{"name":"D3DKMT_QUERYALLOCATIONRESIDENCY","features":[311]},{"name":"D3DKMT_QUERYCLOCKCALIBRATION","features":[311]},{"name":"D3DKMT_QUERYFSEBLOCK","features":[311,303]},{"name":"D3DKMT_QUERYFSEBLOCKFLAGS","features":[311]},{"name":"D3DKMT_QUERYPROCESSOFFERINFO","features":[311,303]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[311,303]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[311]},{"name":"D3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[311]},{"name":"D3DKMT_QUERYRESOURCEINFO","features":[311]},{"name":"D3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[311,303]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT","features":[311]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT_MAX","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS","features":[311,303]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION_FLAGS","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS_MAX","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_COMMITMENT_DATA","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_COUNTER","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_BUFFER","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_MAX","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY_USAGE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_NODE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_NODE2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_NODE_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PACKET_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_POLICY","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PREEMPTION_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_BUCKET_COUNT","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_COUNTERS","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_POLICY","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER_INFORMATION2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PHYSICAL_ADAPTER","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PROCESS_SEGMENT_GROUP2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_GROUP_USAGE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_USAGE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_VIDPNSOURCE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_MAX","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_RESULT","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT2","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_GROUP_USAGE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_PREFERENCE_MAX","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_APERTURE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_MEMORY","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_SYSMEM","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_USAGE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_SYSTEM_MEMORY","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_TYPE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_VIDEO_MEMORY","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE","features":[311]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE_INFORMATION","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_ALLOCATIONS","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_LOCKS","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_FAULT","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_TRANSFER","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_PREPRATION","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_REFERENCE_DMA_BUFFER","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_RENAMING","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_SWIZZLING_RANGE","features":[311]},{"name":"D3DKMT_QUERYSTATSTICS_TERMINATIONS","features":[311]},{"name":"D3DKMT_QUERYVIDEOMEMORYINFO","features":[311,303]},{"name":"D3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[311,303]},{"name":"D3DKMT_QUERY_ADAPTER_UNIQUE_GUID","features":[311]},{"name":"D3DKMT_QUERY_DEVICE_IDS","features":[311]},{"name":"D3DKMT_QUERY_GPUMMU_CAPS","features":[311]},{"name":"D3DKMT_QUERY_MIRACAST_DRIVER_TYPE","features":[311]},{"name":"D3DKMT_QUERY_PHYSICAL_ADAPTER_PNP_KEY","features":[311]},{"name":"D3DKMT_QUERY_SCANOUT_CAPS","features":[311]},{"name":"D3DKMT_QUEUEDLIMIT_TYPE","features":[311]},{"name":"D3DKMT_QueuePacketTypeMax","features":[311]},{"name":"D3DKMT_RECLAIMALLOCATIONS","features":[311,303]},{"name":"D3DKMT_RECLAIMALLOCATIONS2","features":[311,303]},{"name":"D3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[311]},{"name":"D3DKMT_REGISTERTRIMNOTIFICATION","features":[311,303]},{"name":"D3DKMT_RELEASEKEYEDMUTEX","features":[311]},{"name":"D3DKMT_RELEASEKEYEDMUTEX2","features":[311]},{"name":"D3DKMT_RENDER","features":[311]},{"name":"D3DKMT_RENDERFLAGS","features":[311]},{"name":"D3DKMT_REQUEST_MACHINE_CRASH_ESCAPE","features":[311]},{"name":"D3DKMT_RenderCommandBuffer","features":[311]},{"name":"D3DKMT_SCATTERBLT","features":[311,303]},{"name":"D3DKMT_SCATTERBLTS","features":[311,303]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS","features":[311]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_ABOVE_NORMAL","features":[311]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_BELOW_NORMAL","features":[311]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_HIGH","features":[311]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_IDLE","features":[311]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_NORMAL","features":[311]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME","features":[311]},{"name":"D3DKMT_SEGMENTGROUPSIZEINFO","features":[311]},{"name":"D3DKMT_SEGMENTSIZEINFO","features":[311]},{"name":"D3DKMT_SEGMENT_CAPS","features":[311,303]},{"name":"D3DKMT_SETALLOCATIONPRIORITY","features":[311]},{"name":"D3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[311]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[311]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY_ABSOLUTE","features":[311]},{"name":"D3DKMT_SETDISPLAYMODE","features":[311]},{"name":"D3DKMT_SETDISPLAYMODE_FLAGS","features":[311]},{"name":"D3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[311]},{"name":"D3DKMT_SETFSEBLOCK","features":[311,303]},{"name":"D3DKMT_SETFSEBLOCKFLAGS","features":[311]},{"name":"D3DKMT_SETGAMMARAMP","features":[311]},{"name":"D3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[311,303]},{"name":"D3DKMT_SETQUEUEDLIMIT","features":[311]},{"name":"D3DKMT_SETSTABLEPOWERSTATE","features":[311,303]},{"name":"D3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[311]},{"name":"D3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[311,303]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER","features":[311]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER1","features":[311]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER2","features":[311]},{"name":"D3DKMT_SET_COLORSPACE_TRANSFORM","features":[311,303]},{"name":"D3DKMT_SET_QUEUEDLIMIT_PRESENT","features":[311]},{"name":"D3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[311,303]},{"name":"D3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[311,303]},{"name":"D3DKMT_SHAREOBJECTWITHHOST","features":[311]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[311]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[311,303]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[311]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[311]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[311,303]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE","features":[311]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_EXISTINGHEAP","features":[311]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_INTERNALBACKINGSTORE","features":[311]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_MAX","features":[311]},{"name":"D3DKMT_STANDARDALLOCATION_EXISTINGHEAP","features":[311]},{"name":"D3DKMT_SUBKEY_DX9","features":[311]},{"name":"D3DKMT_SUBKEY_OPENGL","features":[311]},{"name":"D3DKMT_SUBMITCOMMAND","features":[311]},{"name":"D3DKMT_SUBMITCOMMANDFLAGS","features":[311]},{"name":"D3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[311]},{"name":"D3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[311,303]},{"name":"D3DKMT_SUBMITPRESENTTOHWQUEUE","features":[311,303]},{"name":"D3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[311]},{"name":"D3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[311]},{"name":"D3DKMT_SURFACECOMPLETE_PRESENTHISTORYTOKEN","features":[311]},{"name":"D3DKMT_SignalCommandBuffer","features":[311]},{"name":"D3DKMT_SoftwareCommandBuffer","features":[311]},{"name":"D3DKMT_SystemCommandBuffer","features":[311]},{"name":"D3DKMT_SystemPagingBuffer","features":[311]},{"name":"D3DKMT_SystemPreemptionBuffer","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_DISABLEBREAK","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENABLEBREAK","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENGINETDR","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODTDR","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODVSYNCTDR","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCETDR","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_GPUTDR","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_UNCONDITIONAL","features":[311]},{"name":"D3DKMT_TDRDBGCTRLTYPE_VSYNCTDR","features":[311]},{"name":"D3DKMT_TDRDBGCTRL_ESCAPE","features":[311]},{"name":"D3DKMT_TRACKEDWORKLOAD_SUPPORT","features":[311,303]},{"name":"D3DKMT_TRIMNOTIFICATION","features":[311]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT","features":[311,303]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT_FLAGS","features":[311]},{"name":"D3DKMT_UMDFILENAMEINFO","features":[311]},{"name":"D3DKMT_UMD_DRIVER_VERSION","features":[311]},{"name":"D3DKMT_UNLOCK","features":[311]},{"name":"D3DKMT_UNLOCK2","features":[311]},{"name":"D3DKMT_UNPINDIRECTFLIPRESOURCES","features":[311]},{"name":"D3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[311]},{"name":"D3DKMT_UNREGISTERTRIMNOTIFICATION","features":[311]},{"name":"D3DKMT_UPDATEGPUVIRTUALADDRESS","features":[311]},{"name":"D3DKMT_UPDATEOVERLAY","features":[311]},{"name":"D3DKMT_VAD_DESC","features":[311]},{"name":"D3DKMT_VAD_ESCAPE_COMMAND","features":[311]},{"name":"D3DKMT_VAD_ESCAPE_GETNUMVADS","features":[311]},{"name":"D3DKMT_VAD_ESCAPE_GETVAD","features":[311]},{"name":"D3DKMT_VAD_ESCAPE_GETVADRANGE","features":[311]},{"name":"D3DKMT_VAD_ESCAPE_GET_GPUMMU_CAPS","features":[311]},{"name":"D3DKMT_VAD_ESCAPE_GET_PTE","features":[311]},{"name":"D3DKMT_VAD_ESCAPE_GET_SEGMENT_CAPS","features":[311]},{"name":"D3DKMT_VA_RANGE_DESC","features":[311]},{"name":"D3DKMT_VERIFIER_OPTION_MODE","features":[311]},{"name":"D3DKMT_VERIFIER_OPTION_QUERY","features":[311]},{"name":"D3DKMT_VERIFIER_OPTION_SET","features":[311]},{"name":"D3DKMT_VGPUINTERFACEID","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_APERTURE_CORRUPTION_CHECK","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_DEFRAG","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_DELAYEXECUTION","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_CRITERIA","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_NT_HANDLE","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_BUDGET","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_VAD_INFO","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_RESUME_PROCESS","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_COHERENCY_TEST","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_UNMAP_TO_DUMMY_PAGE_TEST","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_SETFAULT","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_BUDGET","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_EVICTION_CONFIG","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_TRIM_INTERVALS","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_CPU_ACCESS_TEST","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_PROCESS","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_VALIDATE_INTEGRITY","features":[311]},{"name":"D3DKMT_VIDMMESCAPETYPE_WAKE","features":[311]},{"name":"D3DKMT_VIDMM_ESCAPE","features":[311,303]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EMULATED","features":[311]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE","features":[311]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVEGDI","features":[311]},{"name":"D3DKMT_VIDPNSOURCEOWNER_FLAGS","features":[311]},{"name":"D3DKMT_VIDPNSOURCEOWNER_SHARED","features":[311]},{"name":"D3DKMT_VIDPNSOURCEOWNER_TYPE","features":[311]},{"name":"D3DKMT_VIDPNSOURCEOWNER_UNOWNED","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_CONFIGURE_TDR_LIMIT","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_ENABLECONTEXTDELAY","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PFN_CONTROL","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PREEMPTIONCONTROL","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDRESUME","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDSCHEDULER","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_TDRCONTROL","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VGPU_RESET","features":[311]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VIRTUAL_REFRESH_RATE","features":[311]},{"name":"D3DKMT_VIDSCH_ESCAPE","features":[311,303]},{"name":"D3DKMT_VIRTUALADDRESSFLAGS","features":[311]},{"name":"D3DKMT_VIRTUALADDRESSINFO","features":[311]},{"name":"D3DKMT_WAITFORIDLE","features":[311]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[311]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[311]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[311,303]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[311]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT","features":[311]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT2","features":[311]},{"name":"D3DKMT_WDDM_1_2_CAPS","features":[311]},{"name":"D3DKMT_WDDM_1_3_CAPS","features":[311]},{"name":"D3DKMT_WDDM_2_0_CAPS","features":[311]},{"name":"D3DKMT_WDDM_2_7_CAPS","features":[311]},{"name":"D3DKMT_WDDM_2_9_CAPS","features":[311]},{"name":"D3DKMT_WDDM_3_0_CAPS","features":[311]},{"name":"D3DKMT_WDDM_3_1_CAPS","features":[311]},{"name":"D3DKMT_WORKINGSETFLAGS","features":[311]},{"name":"D3DKMT_WORKINGSETINFO","features":[311]},{"name":"D3DKMT_WSAUMDIMAGENAME","features":[311]},{"name":"D3DKMT_WaitCommandBuffer","features":[311]},{"name":"D3DKMT_XBOX","features":[311,303]},{"name":"D3DLINEPATTERN","features":[311]},{"name":"D3DNTCLEAR_COMPUTERECTS","features":[311]},{"name":"D3DNTDEVICEDESC_V3","features":[311,303,312]},{"name":"D3DNTDP2OP_ADDDIRTYBOX","features":[311]},{"name":"D3DNTDP2OP_ADDDIRTYRECT","features":[311]},{"name":"D3DNTDP2OP_BLT","features":[311]},{"name":"D3DNTDP2OP_BUFFERBLT","features":[311]},{"name":"D3DNTDP2OP_CLEAR","features":[311]},{"name":"D3DNTDP2OP_CLIPPEDTRIANGLEFAN","features":[311]},{"name":"D3DNTDP2OP_COLORFILL","features":[311]},{"name":"D3DNTDP2OP_COMPOSERECTS","features":[311]},{"name":"D3DNTDP2OP_CREATELIGHT","features":[311]},{"name":"D3DNTDP2OP_CREATEPIXELSHADER","features":[311]},{"name":"D3DNTDP2OP_CREATEQUERY","features":[311]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADER","features":[311]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERDECL","features":[311]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERFUNC","features":[311]},{"name":"D3DNTDP2OP_DELETEPIXELSHADER","features":[311]},{"name":"D3DNTDP2OP_DELETEQUERY","features":[311]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADER","features":[311]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERDECL","features":[311]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERFUNC","features":[311]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE","features":[311]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE2","features":[311]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE","features":[311]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE2","features":[311]},{"name":"D3DNTDP2OP_DRAWRECTPATCH","features":[311]},{"name":"D3DNTDP2OP_DRAWTRIPATCH","features":[311]},{"name":"D3DNTDP2OP_GENERATEMIPSUBLEVELS","features":[311]},{"name":"D3DNTDP2OP_INDEXEDLINELIST","features":[311]},{"name":"D3DNTDP2OP_INDEXEDLINELIST2","features":[311]},{"name":"D3DNTDP2OP_INDEXEDLINESTRIP","features":[311]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLEFAN","features":[311]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST","features":[311]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST2","features":[311]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLESTRIP","features":[311]},{"name":"D3DNTDP2OP_ISSUEQUERY","features":[311]},{"name":"D3DNTDP2OP_LINELIST","features":[311]},{"name":"D3DNTDP2OP_LINELIST_IMM","features":[311]},{"name":"D3DNTDP2OP_LINESTRIP","features":[311]},{"name":"D3DNTDP2OP_MULTIPLYTRANSFORM","features":[311]},{"name":"D3DNTDP2OP_POINTS","features":[311]},{"name":"D3DNTDP2OP_RENDERSTATE","features":[311]},{"name":"D3DNTDP2OP_RESPONSECONTINUE","features":[311]},{"name":"D3DNTDP2OP_RESPONSEQUERY","features":[311]},{"name":"D3DNTDP2OP_SETCLIPPLANE","features":[311]},{"name":"D3DNTDP2OP_SETCONVOLUTIONKERNELMONO","features":[311]},{"name":"D3DNTDP2OP_SETDEPTHSTENCIL","features":[311]},{"name":"D3DNTDP2OP_SETINDICES","features":[311]},{"name":"D3DNTDP2OP_SETLIGHT","features":[311]},{"name":"D3DNTDP2OP_SETMATERIAL","features":[311]},{"name":"D3DNTDP2OP_SETPALETTE","features":[311]},{"name":"D3DNTDP2OP_SETPIXELSHADER","features":[311]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONST","features":[311]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTB","features":[311]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTI","features":[311]},{"name":"D3DNTDP2OP_SETPRIORITY","features":[311]},{"name":"D3DNTDP2OP_SETRENDERTARGET","features":[311]},{"name":"D3DNTDP2OP_SETRENDERTARGET2","features":[311]},{"name":"D3DNTDP2OP_SETSCISSORRECT","features":[311]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE","features":[311]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE2","features":[311]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEFREQ","features":[311]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEUM","features":[311]},{"name":"D3DNTDP2OP_SETTEXLOD","features":[311]},{"name":"D3DNTDP2OP_SETTRANSFORM","features":[311]},{"name":"D3DNTDP2OP_SETVERTEXSHADER","features":[311]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONST","features":[311]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTB","features":[311]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTI","features":[311]},{"name":"D3DNTDP2OP_SETVERTEXSHADERDECL","features":[311]},{"name":"D3DNTDP2OP_SETVERTEXSHADERFUNC","features":[311]},{"name":"D3DNTDP2OP_STATESET","features":[311]},{"name":"D3DNTDP2OP_SURFACEBLT","features":[311]},{"name":"D3DNTDP2OP_TEXBLT","features":[311]},{"name":"D3DNTDP2OP_TEXTURESTAGESTATE","features":[311]},{"name":"D3DNTDP2OP_TRIANGLEFAN","features":[311]},{"name":"D3DNTDP2OP_TRIANGLEFAN_IMM","features":[311]},{"name":"D3DNTDP2OP_TRIANGLELIST","features":[311]},{"name":"D3DNTDP2OP_TRIANGLESTRIP","features":[311]},{"name":"D3DNTDP2OP_UPDATEPALETTE","features":[311]},{"name":"D3DNTDP2OP_VIEWPORTINFO","features":[311]},{"name":"D3DNTDP2OP_VOLUMEBLT","features":[311]},{"name":"D3DNTDP2OP_WINFO","features":[311]},{"name":"D3DNTDP2OP_ZRANGE","features":[311]},{"name":"D3DNTHAL2_CB32_SETRENDERTARGET","features":[311]},{"name":"D3DNTHAL3_CB32_CLEAR2","features":[311]},{"name":"D3DNTHAL3_CB32_DRAWPRIMITIVES2","features":[311]},{"name":"D3DNTHAL3_CB32_RESERVED","features":[311]},{"name":"D3DNTHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[311]},{"name":"D3DNTHALDEVICEDESC_V1","features":[311,303,312]},{"name":"D3DNTHALDEVICEDESC_V2","features":[311,303,312]},{"name":"D3DNTHALDP2_EXECUTEBUFFER","features":[311]},{"name":"D3DNTHALDP2_REQCOMMANDBUFSIZE","features":[311]},{"name":"D3DNTHALDP2_REQVERTEXBUFSIZE","features":[311]},{"name":"D3DNTHALDP2_SWAPCOMMANDBUFFER","features":[311]},{"name":"D3DNTHALDP2_SWAPVERTEXBUFFER","features":[311]},{"name":"D3DNTHALDP2_USERMEMVERTICES","features":[311]},{"name":"D3DNTHALDP2_VIDMEMCOMMANDBUF","features":[311]},{"name":"D3DNTHALDP2_VIDMEMVERTEXBUF","features":[311]},{"name":"D3DNTHAL_CALLBACKS","features":[311,303,313]},{"name":"D3DNTHAL_CALLBACKS2","features":[311,303,313]},{"name":"D3DNTHAL_CALLBACKS3","features":[311,303,312,313]},{"name":"D3DNTHAL_CLEAR2DATA","features":[311,312]},{"name":"D3DNTHAL_CLIPPEDTRIANGLEFAN","features":[311]},{"name":"D3DNTHAL_COL_WEIGHTS","features":[311]},{"name":"D3DNTHAL_CONTEXTCREATEDATA","features":[311,303,313]},{"name":"D3DNTHAL_CONTEXTDESTROYALLDATA","features":[311]},{"name":"D3DNTHAL_CONTEXTDESTROYDATA","features":[311]},{"name":"D3DNTHAL_CONTEXT_BAD","features":[311]},{"name":"D3DNTHAL_D3DDX6EXTENDEDCAPS","features":[311]},{"name":"D3DNTHAL_D3DEXTENDEDCAPS","features":[311]},{"name":"D3DNTHAL_DP2ADDDIRTYBOX","features":[311,312]},{"name":"D3DNTHAL_DP2ADDDIRTYRECT","features":[311,303]},{"name":"D3DNTHAL_DP2BLT","features":[311,303]},{"name":"D3DNTHAL_DP2BUFFERBLT","features":[311,312]},{"name":"D3DNTHAL_DP2CLEAR","features":[311,303]},{"name":"D3DNTHAL_DP2COLORFILL","features":[311,303]},{"name":"D3DNTHAL_DP2COMMAND","features":[311]},{"name":"D3DNTHAL_DP2COMPOSERECTS","features":[311,312]},{"name":"D3DNTHAL_DP2CREATELIGHT","features":[311]},{"name":"D3DNTHAL_DP2CREATEPIXELSHADER","features":[311]},{"name":"D3DNTHAL_DP2CREATEQUERY","features":[311,312]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADER","features":[311]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERDECL","features":[311]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERFUNC","features":[311]},{"name":"D3DNTHAL_DP2DELETEQUERY","features":[311]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE","features":[311,312]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[311,312]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE","features":[311,312]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE2","features":[311,312]},{"name":"D3DNTHAL_DP2DRAWRECTPATCH","features":[311]},{"name":"D3DNTHAL_DP2DRAWTRIPATCH","features":[311]},{"name":"D3DNTHAL_DP2EXT","features":[311]},{"name":"D3DNTHAL_DP2GENERATEMIPSUBLEVELS","features":[311,312]},{"name":"D3DNTHAL_DP2INDEXEDLINELIST","features":[311]},{"name":"D3DNTHAL_DP2INDEXEDLINESTRIP","features":[311]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLEFAN","features":[311]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST","features":[311]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST2","features":[311]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLESTRIP","features":[311]},{"name":"D3DNTHAL_DP2ISSUEQUERY","features":[311]},{"name":"D3DNTHAL_DP2LINELIST","features":[311]},{"name":"D3DNTHAL_DP2LINESTRIP","features":[311]},{"name":"D3DNTHAL_DP2MULTIPLYTRANSFORM","features":[68,311,312]},{"name":"D3DNTHAL_DP2OPERATION","features":[311]},{"name":"D3DNTHAL_DP2PIXELSHADER","features":[311]},{"name":"D3DNTHAL_DP2POINTS","features":[311]},{"name":"D3DNTHAL_DP2RENDERSTATE","features":[311,312]},{"name":"D3DNTHAL_DP2RESPONSE","features":[311]},{"name":"D3DNTHAL_DP2RESPONSEQUERY","features":[311]},{"name":"D3DNTHAL_DP2SETCLIPPLANE","features":[311]},{"name":"D3DNTHAL_DP2SETCONVOLUTIONKERNELMONO","features":[311]},{"name":"D3DNTHAL_DP2SETDEPTHSTENCIL","features":[311]},{"name":"D3DNTHAL_DP2SETINDICES","features":[311]},{"name":"D3DNTHAL_DP2SETLIGHT","features":[311]},{"name":"D3DNTHAL_DP2SETPALETTE","features":[311]},{"name":"D3DNTHAL_DP2SETPIXELSHADERCONST","features":[311]},{"name":"D3DNTHAL_DP2SETPRIORITY","features":[311]},{"name":"D3DNTHAL_DP2SETRENDERTARGET","features":[311]},{"name":"D3DNTHAL_DP2SETRENDERTARGET2","features":[311]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE","features":[311]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE2","features":[311]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEFREQ","features":[311]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEUM","features":[311]},{"name":"D3DNTHAL_DP2SETTEXLOD","features":[311]},{"name":"D3DNTHAL_DP2SETTRANSFORM","features":[68,311,312]},{"name":"D3DNTHAL_DP2SETVERTEXSHADERCONST","features":[311]},{"name":"D3DNTHAL_DP2STARTVERTEX","features":[311]},{"name":"D3DNTHAL_DP2STATESET","features":[311,312]},{"name":"D3DNTHAL_DP2SURFACEBLT","features":[311,303]},{"name":"D3DNTHAL_DP2TEXBLT","features":[311,303]},{"name":"D3DNTHAL_DP2TEXTURESTAGESTATE","features":[311]},{"name":"D3DNTHAL_DP2TRIANGLEFAN","features":[311]},{"name":"D3DNTHAL_DP2TRIANGLEFAN_IMM","features":[311]},{"name":"D3DNTHAL_DP2TRIANGLELIST","features":[311]},{"name":"D3DNTHAL_DP2TRIANGLESTRIP","features":[311]},{"name":"D3DNTHAL_DP2UPDATEPALETTE","features":[311]},{"name":"D3DNTHAL_DP2VERTEXSHADER","features":[311]},{"name":"D3DNTHAL_DP2VIEWPORTINFO","features":[311]},{"name":"D3DNTHAL_DP2VOLUMEBLT","features":[311,312]},{"name":"D3DNTHAL_DP2WINFO","features":[311]},{"name":"D3DNTHAL_DP2ZRANGE","features":[311]},{"name":"D3DNTHAL_DRAWPRIMITIVES2DATA","features":[311,303,313]},{"name":"D3DNTHAL_GLOBALDRIVERDATA","features":[311,303,312,313]},{"name":"D3DNTHAL_NUMCLIPVERTICES","features":[311]},{"name":"D3DNTHAL_OUTOFCONTEXTS","features":[311]},{"name":"D3DNTHAL_ROW_WEIGHTS","features":[311]},{"name":"D3DNTHAL_SCENECAPTUREDATA","features":[311]},{"name":"D3DNTHAL_SCENE_CAPTURE_END","features":[311]},{"name":"D3DNTHAL_SCENE_CAPTURE_START","features":[311]},{"name":"D3DNTHAL_SETRENDERTARGETDATA","features":[311,303,313]},{"name":"D3DNTHAL_STATESETCREATE","features":[311]},{"name":"D3DNTHAL_TEXTURECREATEDATA","features":[311,303]},{"name":"D3DNTHAL_TEXTUREDESTROYDATA","features":[311]},{"name":"D3DNTHAL_TEXTUREGETSURFDATA","features":[311,303]},{"name":"D3DNTHAL_TEXTURESWAPDATA","features":[311]},{"name":"D3DNTHAL_TSS_MAXSTAGES","features":[311]},{"name":"D3DNTHAL_TSS_RENDERSTATEBASE","features":[311]},{"name":"D3DNTHAL_TSS_STATESPERSTAGE","features":[311]},{"name":"D3DNTHAL_VALIDATETEXTURESTAGESTATEDATA","features":[311]},{"name":"D3DPMISCCAPS_FOGINFVF","features":[311]},{"name":"D3DPMISCCAPS_LINEPATTERNREP","features":[311]},{"name":"D3DPRASTERCAPS_PAT","features":[311]},{"name":"D3DPRASTERCAPS_STRETCHBLTMULTISAMPLE","features":[311]},{"name":"D3DPS_COLOROUT_MAX_V2_0","features":[311]},{"name":"D3DPS_COLOROUT_MAX_V2_1","features":[311]},{"name":"D3DPS_COLOROUT_MAX_V3_0","features":[311]},{"name":"D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[311]},{"name":"D3DPS_CONSTBOOLREG_MAX_V2_1","features":[311]},{"name":"D3DPS_CONSTBOOLREG_MAX_V3_0","features":[311]},{"name":"D3DPS_CONSTINTREG_MAX_SW_DX9","features":[311]},{"name":"D3DPS_CONSTINTREG_MAX_V2_1","features":[311]},{"name":"D3DPS_CONSTINTREG_MAX_V3_0","features":[311]},{"name":"D3DPS_CONSTREG_MAX_DX8","features":[311]},{"name":"D3DPS_CONSTREG_MAX_SW_DX9","features":[311]},{"name":"D3DPS_CONSTREG_MAX_V1_1","features":[311]},{"name":"D3DPS_CONSTREG_MAX_V1_2","features":[311]},{"name":"D3DPS_CONSTREG_MAX_V1_3","features":[311]},{"name":"D3DPS_CONSTREG_MAX_V1_4","features":[311]},{"name":"D3DPS_CONSTREG_MAX_V2_0","features":[311]},{"name":"D3DPS_CONSTREG_MAX_V2_1","features":[311]},{"name":"D3DPS_CONSTREG_MAX_V3_0","features":[311]},{"name":"D3DPS_INPUTREG_MAX_DX8","features":[311]},{"name":"D3DPS_INPUTREG_MAX_SW_DX9","features":[311]},{"name":"D3DPS_INPUTREG_MAX_V1_1","features":[311]},{"name":"D3DPS_INPUTREG_MAX_V1_2","features":[311]},{"name":"D3DPS_INPUTREG_MAX_V1_3","features":[311]},{"name":"D3DPS_INPUTREG_MAX_V1_4","features":[311]},{"name":"D3DPS_INPUTREG_MAX_V2_0","features":[311]},{"name":"D3DPS_INPUTREG_MAX_V2_1","features":[311]},{"name":"D3DPS_INPUTREG_MAX_V3_0","features":[311]},{"name":"D3DPS_MAXLOOPINITVALUE_V2_1","features":[311]},{"name":"D3DPS_MAXLOOPINITVALUE_V3_0","features":[311]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[311]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[311]},{"name":"D3DPS_MAXLOOPSTEP_V2_1","features":[311]},{"name":"D3DPS_MAXLOOPSTEP_V3_0","features":[311]},{"name":"D3DPS_PREDICATE_MAX_V2_1","features":[311]},{"name":"D3DPS_PREDICATE_MAX_V3_0","features":[311]},{"name":"D3DPS_TEMPREG_MAX_DX8","features":[311]},{"name":"D3DPS_TEMPREG_MAX_V1_1","features":[311]},{"name":"D3DPS_TEMPREG_MAX_V1_2","features":[311]},{"name":"D3DPS_TEMPREG_MAX_V1_3","features":[311]},{"name":"D3DPS_TEMPREG_MAX_V1_4","features":[311]},{"name":"D3DPS_TEMPREG_MAX_V2_0","features":[311]},{"name":"D3DPS_TEMPREG_MAX_V2_1","features":[311]},{"name":"D3DPS_TEMPREG_MAX_V3_0","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_DX8","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_V1_1","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_V1_2","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_V1_3","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_V1_4","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_V2_0","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_V2_1","features":[311]},{"name":"D3DPS_TEXTUREREG_MAX_V3_0","features":[311]},{"name":"D3DRENDERSTATE_EVICTMANAGEDTEXTURES","features":[311]},{"name":"D3DRENDERSTATE_SCENECAPTURE","features":[311]},{"name":"D3DRS_DELETERTPATCH","features":[311]},{"name":"D3DRS_MAXPIXELSHADERINST","features":[311]},{"name":"D3DRS_MAXVERTEXSHADERINST","features":[311]},{"name":"D3DTEXF_FLATCUBIC","features":[311]},{"name":"D3DTEXF_GAUSSIANCUBIC","features":[311]},{"name":"D3DTRANSFORMSTATE_WORLD1_DX7","features":[311]},{"name":"D3DTRANSFORMSTATE_WORLD2_DX7","features":[311]},{"name":"D3DTRANSFORMSTATE_WORLD3_DX7","features":[311]},{"name":"D3DTRANSFORMSTATE_WORLD_DX7","features":[311]},{"name":"D3DTSS_TEXTUREMAP","features":[311]},{"name":"D3DVSDE_BLENDINDICES","features":[311]},{"name":"D3DVSDE_BLENDWEIGHT","features":[311]},{"name":"D3DVSDE_DIFFUSE","features":[311]},{"name":"D3DVSDE_NORMAL","features":[311]},{"name":"D3DVSDE_NORMAL2","features":[311]},{"name":"D3DVSDE_POSITION","features":[311]},{"name":"D3DVSDE_POSITION2","features":[311]},{"name":"D3DVSDE_PSIZE","features":[311]},{"name":"D3DVSDE_SPECULAR","features":[311]},{"name":"D3DVSDE_TEXCOORD0","features":[311]},{"name":"D3DVSDE_TEXCOORD1","features":[311]},{"name":"D3DVSDE_TEXCOORD2","features":[311]},{"name":"D3DVSDE_TEXCOORD3","features":[311]},{"name":"D3DVSDE_TEXCOORD4","features":[311]},{"name":"D3DVSDE_TEXCOORD5","features":[311]},{"name":"D3DVSDE_TEXCOORD6","features":[311]},{"name":"D3DVSDE_TEXCOORD7","features":[311]},{"name":"D3DVSDT_D3DCOLOR","features":[311]},{"name":"D3DVSDT_FLOAT1","features":[311]},{"name":"D3DVSDT_FLOAT2","features":[311]},{"name":"D3DVSDT_FLOAT3","features":[311]},{"name":"D3DVSDT_FLOAT4","features":[311]},{"name":"D3DVSDT_SHORT2","features":[311]},{"name":"D3DVSDT_SHORT4","features":[311]},{"name":"D3DVSDT_UBYTE4","features":[311]},{"name":"D3DVSD_CONSTADDRESSSHIFT","features":[311]},{"name":"D3DVSD_CONSTCOUNTSHIFT","features":[311]},{"name":"D3DVSD_CONSTRSSHIFT","features":[311]},{"name":"D3DVSD_DATALOADTYPESHIFT","features":[311]},{"name":"D3DVSD_DATATYPESHIFT","features":[311]},{"name":"D3DVSD_EXTCOUNTSHIFT","features":[311]},{"name":"D3DVSD_EXTINFOSHIFT","features":[311]},{"name":"D3DVSD_SKIPCOUNTSHIFT","features":[311]},{"name":"D3DVSD_STREAMNUMBERSHIFT","features":[311]},{"name":"D3DVSD_STREAMTESSSHIFT","features":[311]},{"name":"D3DVSD_TOKENTYPE","features":[311]},{"name":"D3DVSD_TOKENTYPESHIFT","features":[311]},{"name":"D3DVSD_TOKEN_CONSTMEM","features":[311]},{"name":"D3DVSD_TOKEN_END","features":[311]},{"name":"D3DVSD_TOKEN_EXT","features":[311]},{"name":"D3DVSD_TOKEN_NOP","features":[311]},{"name":"D3DVSD_TOKEN_STREAM","features":[311]},{"name":"D3DVSD_TOKEN_STREAMDATA","features":[311]},{"name":"D3DVSD_TOKEN_TESSELLATOR","features":[311]},{"name":"D3DVSD_VERTEXREGINSHIFT","features":[311]},{"name":"D3DVSD_VERTEXREGSHIFT","features":[311]},{"name":"D3DVS_ADDRREG_MAX_V1_1","features":[311]},{"name":"D3DVS_ADDRREG_MAX_V2_0","features":[311]},{"name":"D3DVS_ADDRREG_MAX_V2_1","features":[311]},{"name":"D3DVS_ADDRREG_MAX_V3_0","features":[311]},{"name":"D3DVS_ATTROUTREG_MAX_V1_1","features":[311]},{"name":"D3DVS_ATTROUTREG_MAX_V2_0","features":[311]},{"name":"D3DVS_ATTROUTREG_MAX_V2_1","features":[311]},{"name":"D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[311]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_0","features":[311]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_1","features":[311]},{"name":"D3DVS_CONSTBOOLREG_MAX_V3_0","features":[311]},{"name":"D3DVS_CONSTINTREG_MAX_SW_DX9","features":[311]},{"name":"D3DVS_CONSTINTREG_MAX_V2_0","features":[311]},{"name":"D3DVS_CONSTINTREG_MAX_V2_1","features":[311]},{"name":"D3DVS_CONSTINTREG_MAX_V3_0","features":[311]},{"name":"D3DVS_CONSTREG_MAX_V1_1","features":[311]},{"name":"D3DVS_CONSTREG_MAX_V2_0","features":[311]},{"name":"D3DVS_CONSTREG_MAX_V2_1","features":[311]},{"name":"D3DVS_CONSTREG_MAX_V3_0","features":[311]},{"name":"D3DVS_INPUTREG_MAX_V1_1","features":[311]},{"name":"D3DVS_INPUTREG_MAX_V2_0","features":[311]},{"name":"D3DVS_INPUTREG_MAX_V2_1","features":[311]},{"name":"D3DVS_INPUTREG_MAX_V3_0","features":[311]},{"name":"D3DVS_LABEL_MAX_V3_0","features":[311]},{"name":"D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[311]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_0","features":[311]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_1","features":[311]},{"name":"D3DVS_MAXLOOPINITVALUE_V3_0","features":[311]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[311]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[311]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[311]},{"name":"D3DVS_MAXLOOPSTEP_V2_0","features":[311]},{"name":"D3DVS_MAXLOOPSTEP_V2_1","features":[311]},{"name":"D3DVS_MAXLOOPSTEP_V3_0","features":[311]},{"name":"D3DVS_OUTPUTREG_MAX_SW_DX9","features":[311]},{"name":"D3DVS_OUTPUTREG_MAX_V3_0","features":[311]},{"name":"D3DVS_PREDICATE_MAX_V2_1","features":[311]},{"name":"D3DVS_PREDICATE_MAX_V3_0","features":[311]},{"name":"D3DVS_TCRDOUTREG_MAX_V1_1","features":[311]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_0","features":[311]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_1","features":[311]},{"name":"D3DVS_TEMPREG_MAX_V1_1","features":[311]},{"name":"D3DVS_TEMPREG_MAX_V2_0","features":[311]},{"name":"D3DVS_TEMPREG_MAX_V2_1","features":[311]},{"name":"D3DVS_TEMPREG_MAX_V3_0","features":[311]},{"name":"D3DVTXPCAPS_NO_VSDT_UBYTE4","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_VISTA","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM1_3","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1_3","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M2_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_3","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_4","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_3","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_3","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_4","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_2","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1_1","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN7","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_CP","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_M3","features":[311]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_RC","features":[311]},{"name":"DDBLT_EXTENDED_PRESENTATION_STRETCHFACTOR","features":[311]},{"name":"DDNT_DEFERRED_AGP_AWARE_DATA","features":[311]},{"name":"DDNT_DXVERSION","features":[311]},{"name":"DDNT_FREE_DEFERRED_AGP_DATA","features":[311]},{"name":"DDNT_GETADAPTERGROUPDATA","features":[311]},{"name":"DDNT_GETD3DQUERYCOUNTDATA","features":[311]},{"name":"DDNT_GETD3DQUERYDATA","features":[311,312]},{"name":"DDNT_GETDDIVERSIONDATA","features":[311]},{"name":"DDNT_GETDRIVERINFO2DATA","features":[311]},{"name":"DDNT_GETEXTENDEDMODECOUNTDATA","features":[311]},{"name":"DDNT_GETEXTENDEDMODEDATA","features":[311,312]},{"name":"DDNT_GETFORMATCOUNTDATA","features":[311]},{"name":"DDNT_GETFORMATDATA","features":[311,313]},{"name":"DDNT_MULTISAMPLEQUALITYLEVELSDATA","features":[311,312]},{"name":"DD_DEFERRED_AGP_AWARE_DATA","features":[311]},{"name":"DD_DXVERSION","features":[311]},{"name":"DD_FREE_DEFERRED_AGP_DATA","features":[311]},{"name":"DD_GETADAPTERGROUPDATA","features":[311]},{"name":"DD_GETD3DQUERYCOUNTDATA","features":[311]},{"name":"DD_GETD3DQUERYDATA","features":[311,312]},{"name":"DD_GETDDIVERSIONDATA","features":[311]},{"name":"DD_GETDRIVERINFO2DATA","features":[311]},{"name":"DD_GETEXTENDEDMODECOUNTDATA","features":[311]},{"name":"DD_GETEXTENDEDMODEDATA","features":[311,312]},{"name":"DD_GETFORMATCOUNTDATA","features":[311]},{"name":"DD_GETFORMATDATA","features":[311,313]},{"name":"DD_MULTISAMPLEQUALITYLEVELSDATA","features":[311,312]},{"name":"DIDDT1_AspectRatio_15x9","features":[311]},{"name":"DIDDT1_AspectRatio_16x10","features":[311]},{"name":"DIDDT1_AspectRatio_16x9","features":[311]},{"name":"DIDDT1_AspectRatio_1x1","features":[311]},{"name":"DIDDT1_AspectRatio_4x3","features":[311]},{"name":"DIDDT1_AspectRatio_5x4","features":[311]},{"name":"DIDDT1_Dependent","features":[311]},{"name":"DIDDT1_Interlaced","features":[311]},{"name":"DIDDT1_Monoscopic","features":[311]},{"name":"DIDDT1_Progressive","features":[311]},{"name":"DIDDT1_Stereo","features":[311]},{"name":"DIDDT1_Sync_Negative","features":[311]},{"name":"DIDDT1_Sync_Positive","features":[311]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I","features":[311]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_ASPECT_RATIO","features":[311]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SCANNING_MODE","features":[311]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SIZE","features":[311]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_STEREO_MODE","features":[311]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SYNC_POLARITY","features":[311]},{"name":"DP2BLT_LINEAR","features":[311]},{"name":"DP2BLT_POINT","features":[311]},{"name":"DX9_DDI_VERSION","features":[311]},{"name":"DXGKARG_SETPALETTE","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA_SP1","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3_PATH_INDEPENDENT_ROTATION","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_0","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_5","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_6","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_2","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_3","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_4","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_5","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_6","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_7","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_8","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_9","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_0","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_1","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN7","features":[311]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN8","features":[311]},{"name":"DXGKDT_OPM_DVI_CHARACTERISTICS","features":[311]},{"name":"DXGKMDT_CERTIFICATE_TYPE","features":[311]},{"name":"DXGKMDT_COPP_CERTIFICATE","features":[311]},{"name":"DXGKMDT_I2C_DEVICE_TRANSMITS_DATA_LENGTH","features":[311]},{"name":"DXGKMDT_I2C_NO_FLAGS","features":[311]},{"name":"DXGKMDT_INDIRECT_DISPLAY_CERTIFICATE","features":[311]},{"name":"DXGKMDT_OPM_128_BIT_RANDOM_NUMBER_SIZE","features":[311]},{"name":"DXGKMDT_OPM_ACP_AND_CGMSA_SIGNALING","features":[311]},{"name":"DXGKMDT_OPM_ACP_LEVEL_ONE","features":[311]},{"name":"DXGKMDT_OPM_ACP_LEVEL_THREE","features":[311]},{"name":"DXGKMDT_OPM_ACP_LEVEL_TWO","features":[311]},{"name":"DXGKMDT_OPM_ACP_OFF","features":[311]},{"name":"DXGKMDT_OPM_ACP_PROTECTION_LEVEL","features":[311]},{"name":"DXGKMDT_OPM_ACTUAL_OUTPUT_FORMAT","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_CENTER","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_TOP","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_CENTER","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_TOP","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_GT_16_BY_9_CENTER","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_16_BY_9_ANAMORPHIC","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3","features":[311]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3_PROTECTED_CENTER","features":[311]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[311]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[311]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_INSIDE_OF_CHIPSET","features":[311]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_NON_STANDARD","features":[311]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[311]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[311]},{"name":"DXGKMDT_OPM_BUS_TYPE_AGP","features":[311]},{"name":"DXGKMDT_OPM_BUS_TYPE_AND_IMPLEMENTATION","features":[311]},{"name":"DXGKMDT_OPM_BUS_TYPE_OTHER","features":[311]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCI","features":[311]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIEXPRESS","features":[311]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIX","features":[311]},{"name":"DXGKMDT_OPM_CERTIFICATE","features":[311]},{"name":"DXGKMDT_OPM_CGMSA","features":[311]},{"name":"DXGKMDT_OPM_CGMSA_COPY_FREELY","features":[311]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NEVER","features":[311]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NO_MORE","features":[311]},{"name":"DXGKMDT_OPM_CGMSA_COPY_ONE_GENERATION","features":[311]},{"name":"DXGKMDT_OPM_CGMSA_OFF","features":[311]},{"name":"DXGKMDT_OPM_CONFIGURE_PARAMETERS","features":[311]},{"name":"DXGKMDT_OPM_CONFIGURE_SETTING_DATA_SIZE","features":[311]},{"name":"DXGKMDT_OPM_CONNECTED_HDCP_DEVICE_INFORMATION","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPONENT_VIDEO","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPOSITE_VIDEO","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EMBEDDED","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EXTERNAL","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DVI","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_D_JPN","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HD15","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HDMI","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_LVDS","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_MIRACAST","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_OTHER","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_RESERVED","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SDI","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SVIDEO","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EMBEDDED","features":[311]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EXTERNAL","features":[311]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_BUS_TYPE_INTEGRATED","features":[311]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_CONNECTOR_TYPE_INTERNAL","features":[311]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_GET_INFO_PARAMETERS","features":[311]},{"name":"DXGKMDT_OPM_CREATE_VIDEO_OUTPUT_FOR_TARGET_PARAMETERS","features":[311,303]},{"name":"DXGKMDT_OPM_DPCP_OFF","features":[311]},{"name":"DXGKMDT_OPM_DPCP_ON","features":[311]},{"name":"DXGKMDT_OPM_DPCP_PROTECTION_LEVEL","features":[311]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_0","features":[311]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_1_OR_ABOVE","features":[311]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS","features":[311]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS_SIZE","features":[311]},{"name":"DXGKMDT_OPM_GET_ACP_AND_CGMSA_SIGNALING","features":[311]},{"name":"DXGKMDT_OPM_GET_ACTUAL_OUTPUT_FORMAT","features":[311]},{"name":"DXGKMDT_OPM_GET_ACTUAL_PROTECTION_LEVEL","features":[311]},{"name":"DXGKMDT_OPM_GET_ADAPTER_BUS_TYPE","features":[311]},{"name":"DXGKMDT_OPM_GET_CODEC_INFO","features":[311]},{"name":"DXGKMDT_OPM_GET_CONNECTED_HDCP_DEVICE_INFORMATION","features":[311]},{"name":"DXGKMDT_OPM_GET_CONNECTOR_TYPE","features":[311]},{"name":"DXGKMDT_OPM_GET_CURRENT_HDCP_SRM_VERSION","features":[311]},{"name":"DXGKMDT_OPM_GET_DVI_CHARACTERISTICS","features":[311]},{"name":"DXGKMDT_OPM_GET_INFORMATION_PARAMETERS_SIZE","features":[311]},{"name":"DXGKMDT_OPM_GET_INFO_PARAMETERS","features":[311]},{"name":"DXGKMDT_OPM_GET_OUTPUT_HARDWARE_PROTECTION_SUPPORT","features":[311]},{"name":"DXGKMDT_OPM_GET_OUTPUT_ID","features":[311]},{"name":"DXGKMDT_OPM_GET_SUPPORTED_PROTECTION_TYPES","features":[311]},{"name":"DXGKMDT_OPM_GET_VIRTUAL_PROTECTION_LEVEL","features":[311]},{"name":"DXGKMDT_OPM_HDCP_FLAG","features":[311]},{"name":"DXGKMDT_OPM_HDCP_FLAG_NONE","features":[311]},{"name":"DXGKMDT_OPM_HDCP_FLAG_REPEATER","features":[311]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR","features":[311]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR_SIZE","features":[311]},{"name":"DXGKMDT_OPM_HDCP_OFF","features":[311]},{"name":"DXGKMDT_OPM_HDCP_ON","features":[311]},{"name":"DXGKMDT_OPM_HDCP_PROTECTION_LEVEL","features":[311]},{"name":"DXGKMDT_OPM_IMAGE_ASPECT_RATIO_EN300294","features":[311]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT","features":[311]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_EVEN_FIRST","features":[311]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_ODD_FIRST","features":[311]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_OTHER","features":[311]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_PROGRESSIVE","features":[311]},{"name":"DXGKMDT_OPM_OMAC","features":[311]},{"name":"DXGKMDT_OPM_OMAC_SIZE","features":[311]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION","features":[311]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_NOT_SUPPORTED","features":[311]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_SUPPORTED","features":[311]},{"name":"DXGKMDT_OPM_OUTPUT_ID","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_1125I","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525I","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525P","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_750P","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_1125I","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_525P","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_750P","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_1125I","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_525P","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_750P","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EIA608B_525","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EN300294_625I","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_2_525I","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_525I","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC62375_625P","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_NONE","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_OTHER","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_ACP","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_CGMSA","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_COPP_COMPATIBLE_HDCP","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_DPCP","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_HDCP","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_MASK","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_NONE","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_OTHER","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_SIZE","features":[311]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_TYPE_ENFORCEMENT_HDCP","features":[311]},{"name":"DXGKMDT_OPM_RANDOM_NUMBER","features":[311]},{"name":"DXGKMDT_OPM_REDISTRIBUTION_CONTROL_REQUIRED","features":[311]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION","features":[311]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION_SIZE","features":[311]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING","features":[311]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING_PARAMETERS","features":[311]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM","features":[311]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM_PARAMETERS","features":[311]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL","features":[311]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_ACCORDING_TO_CSS_DVD","features":[311]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_PARAMETERS","features":[311]},{"name":"DXGKMDT_OPM_STANDARD_INFORMATION","features":[311]},{"name":"DXGKMDT_OPM_STATUS","features":[311]},{"name":"DXGKMDT_OPM_STATUS_LINK_LOST","features":[311]},{"name":"DXGKMDT_OPM_STATUS_NORMAL","features":[311]},{"name":"DXGKMDT_OPM_STATUS_RENEGOTIATION_REQUIRED","features":[311]},{"name":"DXGKMDT_OPM_STATUS_REVOKED_HDCP_DEVICE_ATTACHED","features":[311]},{"name":"DXGKMDT_OPM_STATUS_TAMPERING_DETECTED","features":[311]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_OFF","features":[311]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_NO_TYPE_RESTRICTION","features":[311]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_TYPE1_RESTRICTION","features":[311]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_PROTECTION_LEVEL","features":[311]},{"name":"DXGKMDT_OPM_VIDEO_OUTPUT_SEMANTICS","features":[311]},{"name":"DXGKMDT_OPM_VOS_COPP_SEMANTICS","features":[311]},{"name":"DXGKMDT_OPM_VOS_OPM_INDIRECT_DISPLAY","features":[311]},{"name":"DXGKMDT_OPM_VOS_OPM_SEMANTICS","features":[311]},{"name":"DXGKMDT_UAB_CERTIFICATE","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME0","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME1","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_MODE","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_NONE","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_CHECKERBOARD","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_COLUMN_INTERLEAVED","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO_OFFSET","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_ROW_INTERLEAVED","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_SEPARATE","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_BILINEAR","features":[311]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_HIGH","features":[311]},{"name":"DXGKMT_POWER_SHARED_TYPE","features":[311]},{"name":"DXGKMT_POWER_SHARED_TYPE_AUDIO","features":[311]},{"name":"DXGKVGPU_ESCAPE_HEAD","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_INITIALIZE","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_PAUSE","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_POWERTRANSITIONCOMPLETE","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_READ_PCI_CONFIG","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_READ_VGPU_TYPE","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_RELEASE","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_RESUME","features":[311,303]},{"name":"DXGKVGPU_ESCAPE_TYPE","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_GET_VGPU_TYPE","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_INITIALIZE","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_PAUSE","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_POWERTRANSITIONCOMPLETE","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_READ_PCI_CONFIG","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_RELEASE","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_RESUME","features":[311]},{"name":"DXGKVGPU_ESCAPE_TYPE_WRITE_PCI_CONFIG","features":[311]},{"name":"DXGKVGPU_ESCAPE_WRITE_PCI_CONFIG","features":[311,303]},{"name":"DXGK_ADAPTER_PERFDATA","features":[311]},{"name":"DXGK_ADAPTER_PERFDATACAPS","features":[311]},{"name":"DXGK_BACKLIGHT_INFO","features":[311]},{"name":"DXGK_BACKLIGHT_OPTIMIZATION_LEVEL","features":[311]},{"name":"DXGK_BRIGHTNESS_CAPS","features":[311]},{"name":"DXGK_BRIGHTNESS_GET_NIT_RANGES_OUT","features":[311]},{"name":"DXGK_BRIGHTNESS_GET_OUT","features":[311]},{"name":"DXGK_BRIGHTNESS_MAXIMUM_NIT_RANGE_COUNT","features":[311]},{"name":"DXGK_BRIGHTNESS_NIT_RANGE","features":[311]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA","features":[311]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA_CHROMATICITY","features":[311]},{"name":"DXGK_BRIGHTNESS_SET_IN","features":[311]},{"name":"DXGK_BRIGHTNESS_STATE","features":[311]},{"name":"DXGK_CHILD_DEVICE_HPD_AWARENESS","features":[311]},{"name":"DXGK_DDT_DISPLAYID","features":[311]},{"name":"DXGK_DDT_EDID","features":[311]},{"name":"DXGK_DDT_INVALID","features":[311]},{"name":"DXGK_DIAG_PROCESS_NAME_LENGTH","features":[311]},{"name":"DXGK_DISPLAY_DESCRIPTOR_TYPE","features":[311]},{"name":"DXGK_DISPLAY_INFORMATION","features":[311]},{"name":"DXGK_DISPLAY_TECHNOLOGY","features":[311]},{"name":"DXGK_DISPLAY_USAGE","features":[311]},{"name":"DXGK_DT_INVALID","features":[311]},{"name":"DXGK_DT_LCD","features":[311]},{"name":"DXGK_DT_MAX","features":[311]},{"name":"DXGK_DT_OLED","features":[311]},{"name":"DXGK_DT_OTHER","features":[311]},{"name":"DXGK_DT_PROJECTOR","features":[311]},{"name":"DXGK_DU_ACCESSORY","features":[311]},{"name":"DXGK_DU_AR","features":[311]},{"name":"DXGK_DU_GENERIC","features":[311]},{"name":"DXGK_DU_INVALID","features":[311]},{"name":"DXGK_DU_MAX","features":[311]},{"name":"DXGK_DU_MEDICAL_IMAGING","features":[311]},{"name":"DXGK_DU_VR","features":[311]},{"name":"DXGK_ENGINE_TYPE","features":[311]},{"name":"DXGK_ENGINE_TYPE_3D","features":[311]},{"name":"DXGK_ENGINE_TYPE_COPY","features":[311]},{"name":"DXGK_ENGINE_TYPE_CRYPTO","features":[311]},{"name":"DXGK_ENGINE_TYPE_MAX","features":[311]},{"name":"DXGK_ENGINE_TYPE_OTHER","features":[311]},{"name":"DXGK_ENGINE_TYPE_OVERLAY","features":[311]},{"name":"DXGK_ENGINE_TYPE_SCENE_ASSEMBLY","features":[311]},{"name":"DXGK_ENGINE_TYPE_VIDEO_DECODE","features":[311]},{"name":"DXGK_ENGINE_TYPE_VIDEO_ENCODE","features":[311]},{"name":"DXGK_ENGINE_TYPE_VIDEO_PROCESSING","features":[311]},{"name":"DXGK_ESCAPE_GPUMMUCAPS","features":[311,303]},{"name":"DXGK_FAULT_ERROR_CODE","features":[311]},{"name":"DXGK_GENERAL_ERROR_CODE","features":[311]},{"name":"DXGK_GENERAL_ERROR_INVALID_INSTRUCTION","features":[311]},{"name":"DXGK_GENERAL_ERROR_PAGE_FAULT","features":[311]},{"name":"DXGK_GPUCLOCKDATA","features":[311]},{"name":"DXGK_GPUCLOCKDATA_FLAGS","features":[311]},{"name":"DXGK_GPUVERSION","features":[311]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_INPUT_V_1_2","features":[311,303,310]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_OUTPUT","features":[311,303,310]},{"name":"DXGK_GRAPHICSPOWER_VERSION","features":[311]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_0","features":[311]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_1","features":[311]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_2","features":[311]},{"name":"DXGK_MAX_GPUVERSION_NAME_LENGTH","features":[311]},{"name":"DXGK_MAX_METADATA_NAME_LENGTH","features":[311]},{"name":"DXGK_MAX_PAGE_TABLE_LEVEL_COUNT","features":[311]},{"name":"DXGK_MIN_PAGE_TABLE_LEVEL_COUNT","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_ID","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_INFO","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_COLOR_CONVERT_COMPLETE","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_COMPLETE","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_1","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_2","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_DROPPED","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_START","features":[311]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_UNKNOWN","features":[311]},{"name":"DXGK_MONITORLINKINFO_CAPABILITIES","features":[311]},{"name":"DXGK_MONITORLINKINFO_USAGEHINTS","features":[311]},{"name":"DXGK_NODEMETADATA","features":[311,303]},{"name":"DXGK_NODEMETADATA_FLAGS","features":[311]},{"name":"DXGK_NODE_PERFDATA","features":[311]},{"name":"DXGK_PAGE_FAULT_ADAPTER_RESET_REQUIRED","features":[311]},{"name":"DXGK_PAGE_FAULT_ENGINE_RESET_REQUIRED","features":[311]},{"name":"DXGK_PAGE_FAULT_FATAL_HARDWARE_ERROR","features":[311]},{"name":"DXGK_PAGE_FAULT_FENCE_INVALID","features":[311]},{"name":"DXGK_PAGE_FAULT_FLAGS","features":[311]},{"name":"DXGK_PAGE_FAULT_HW_CONTEXT_VALID","features":[311]},{"name":"DXGK_PAGE_FAULT_IOMMU","features":[311]},{"name":"DXGK_PAGE_FAULT_PROCESS_HANDLE_VALID","features":[311]},{"name":"DXGK_PAGE_FAULT_WRITE","features":[311]},{"name":"DXGK_PTE","features":[311]},{"name":"DXGK_PTE_PAGE_SIZE","features":[311]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_4KB","features":[311]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_64KB","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_GEOMETRY_SHADER","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_INPUT_ASSEMBLER","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_OUTPUT_MERGER","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_PIXEL_SHADER","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_RASTERIZER","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_STREAM_OUTPUT","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_UNKNOWN","features":[311]},{"name":"DXGK_RENDER_PIPELINE_STAGE_VERTEX_SHADER","features":[311]},{"name":"DXGK_TARGETMODE_DETAIL_TIMING","features":[311]},{"name":"DxgkBacklightOptimizationDesktop","features":[311]},{"name":"DxgkBacklightOptimizationDimmed","features":[311]},{"name":"DxgkBacklightOptimizationDisable","features":[311]},{"name":"DxgkBacklightOptimizationDynamic","features":[311]},{"name":"DxgkBacklightOptimizationEDR","features":[311]},{"name":"FLIPEX_TIMEOUT_USER","features":[311]},{"name":"GPUP_DRIVER_ESCAPE_INPUT","features":[311,303]},{"name":"GUID_DEVINTERFACE_GRAPHICSPOWER","features":[311]},{"name":"HpdAwarenessAlwaysConnected","features":[311]},{"name":"HpdAwarenessInterruptible","features":[311]},{"name":"HpdAwarenessNone","features":[311]},{"name":"HpdAwarenessPolled","features":[311]},{"name":"HpdAwarenessUninitialized","features":[311]},{"name":"IOCTL_GPUP_DRIVER_ESCAPE","features":[311]},{"name":"IOCTL_INTERNAL_GRAPHICSPOWER_REGISTER","features":[311]},{"name":"KMTQAITYPE_ADAPTERADDRESS","features":[311]},{"name":"KMTQAITYPE_ADAPTERADDRESS_RENDER","features":[311]},{"name":"KMTQAITYPE_ADAPTERGUID","features":[311]},{"name":"KMTQAITYPE_ADAPTERGUID_RENDER","features":[311]},{"name":"KMTQAITYPE_ADAPTERPERFDATA","features":[311]},{"name":"KMTQAITYPE_ADAPTERPERFDATA_CAPS","features":[311]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO","features":[311]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO_RENDER","features":[311]},{"name":"KMTQAITYPE_ADAPTERTYPE","features":[311]},{"name":"KMTQAITYPE_ADAPTERTYPE_RENDER","features":[311]},{"name":"KMTQAITYPE_BLOCKLIST_KERNEL","features":[311]},{"name":"KMTQAITYPE_BLOCKLIST_RUNTIME","features":[311]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS","features":[311]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS_RENDER","features":[311]},{"name":"KMTQAITYPE_CPDRIVERNAME","features":[311]},{"name":"KMTQAITYPE_CROSSADAPTERRESOURCE_SUPPORT","features":[311]},{"name":"KMTQAITYPE_CURRENTDISPLAYMODE","features":[311]},{"name":"KMTQAITYPE_DIRECTFLIP_SUPPORT","features":[311]},{"name":"KMTQAITYPE_DISPLAY_CAPS","features":[311]},{"name":"KMTQAITYPE_DISPLAY_UMDRIVERNAME","features":[311]},{"name":"KMTQAITYPE_DLIST_DRIVER_NAME","features":[311]},{"name":"KMTQAITYPE_DRIVERCAPS_EXT","features":[311]},{"name":"KMTQAITYPE_DRIVERVERSION","features":[311]},{"name":"KMTQAITYPE_DRIVERVERSION_RENDER","features":[311]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION","features":[311]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION_RENDER","features":[311]},{"name":"KMTQAITYPE_FLIPQUEUEINFO","features":[311]},{"name":"KMTQAITYPE_GETSEGMENTGROUPSIZE","features":[311]},{"name":"KMTQAITYPE_GETSEGMENTSIZE","features":[311]},{"name":"KMTQAITYPE_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[311]},{"name":"KMTQAITYPE_HWDRM_SUPPORT","features":[311]},{"name":"KMTQAITYPE_HYBRID_DLIST_DLL_SUPPORT","features":[311]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[311]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SUPPORT","features":[311]},{"name":"KMTQAITYPE_KMD_DRIVER_VERSION","features":[311]},{"name":"KMTQAITYPE_MIRACASTCOMPANIONDRIVERNAME","features":[311]},{"name":"KMTQAITYPE_MODELIST","features":[311]},{"name":"KMTQAITYPE_MPO3DDI_SUPPORT","features":[311]},{"name":"KMTQAITYPE_MPOKERNELCAPS_SUPPORT","features":[311]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[311]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[311]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[311]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SUPPORT","features":[311]},{"name":"KMTQAITYPE_NODEMETADATA","features":[311]},{"name":"KMTQAITYPE_NODEPERFDATA","features":[311]},{"name":"KMTQAITYPE_OUTPUTDUPLCONTEXTSCOUNT","features":[311]},{"name":"KMTQAITYPE_PANELFITTER_SUPPORT","features":[311]},{"name":"KMTQAITYPE_PARAVIRTUALIZATION_RENDER","features":[311]},{"name":"KMTQAITYPE_PHYSICALADAPTERCOUNT","features":[311]},{"name":"KMTQAITYPE_PHYSICALADAPTERDEVICEIDS","features":[311]},{"name":"KMTQAITYPE_PHYSICALADAPTERPNPKEY","features":[311]},{"name":"KMTQAITYPE_QUERYREGISTRY","features":[311]},{"name":"KMTQAITYPE_QUERY_ADAPTER_UNIQUE_GUID","features":[311]},{"name":"KMTQAITYPE_QUERY_GPUMMU_CAPS","features":[311]},{"name":"KMTQAITYPE_QUERY_HW_PROTECTION_TEARDOWN_COUNT","features":[311]},{"name":"KMTQAITYPE_QUERY_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[311]},{"name":"KMTQAITYPE_QUERY_MIRACAST_DRIVER_TYPE","features":[311]},{"name":"KMTQAITYPE_QUERY_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[311]},{"name":"KMTQAITYPE_SCANOUT_CAPS","features":[311]},{"name":"KMTQAITYPE_SERVICENAME","features":[311]},{"name":"KMTQAITYPE_SETWORKINGSETINFO","features":[311]},{"name":"KMTQAITYPE_TRACKEDWORKLOAD_SUPPORT","features":[311]},{"name":"KMTQAITYPE_UMDRIVERNAME","features":[311]},{"name":"KMTQAITYPE_UMDRIVERPRIVATE","features":[311]},{"name":"KMTQAITYPE_UMD_DRIVER_VERSION","features":[311]},{"name":"KMTQAITYPE_UMOPENGLINFO","features":[311]},{"name":"KMTQAITYPE_VGPUINTERFACEID","features":[311]},{"name":"KMTQAITYPE_VIRTUALADDRESSINFO","features":[311]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS","features":[311]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS_RENDER","features":[311]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS","features":[311]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS_RENDER","features":[311]},{"name":"KMTQAITYPE_WDDM_2_0_CAPS","features":[311]},{"name":"KMTQAITYPE_WDDM_2_7_CAPS","features":[311]},{"name":"KMTQAITYPE_WDDM_2_9_CAPS","features":[311]},{"name":"KMTQAITYPE_WDDM_3_0_CAPS","features":[311]},{"name":"KMTQAITYPE_WDDM_3_1_CAPS","features":[311]},{"name":"KMTQAITYPE_WSAUMDIMAGENAME","features":[311]},{"name":"KMTQAITYPE_XBOX","features":[311]},{"name":"KMTQUERYADAPTERINFOTYPE","features":[311]},{"name":"KMTQUITYPE_GPUVERSION","features":[311]},{"name":"KMTUMDVERSION","features":[311]},{"name":"KMTUMDVERSION_DX10","features":[311]},{"name":"KMTUMDVERSION_DX11","features":[311]},{"name":"KMTUMDVERSION_DX12","features":[311]},{"name":"KMTUMDVERSION_DX12_WSA32","features":[311]},{"name":"KMTUMDVERSION_DX12_WSA64","features":[311]},{"name":"KMTUMDVERSION_DX9","features":[311]},{"name":"KMT_DISPLAY_UMDVERSION_1","features":[311]},{"name":"KMT_DISPLAY_UMD_VERSION","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_1_0","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_1_1","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_1_1_PRERELEASE","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_1_2","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_1_3","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_0","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_1","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_2","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_3","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_4","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_5","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_6","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_7","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_8","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_2_9","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_3_0","features":[311]},{"name":"KMT_DRIVERVERSION_WDDM_3_1","features":[311]},{"name":"LPD3DHAL_CLEAR2CB","features":[311,312]},{"name":"LPD3DHAL_CLEARCB","features":[311,312]},{"name":"LPD3DHAL_CONTEXTCREATECB","features":[311,303,313,314]},{"name":"LPD3DHAL_CONTEXTDESTROYALLCB","features":[311]},{"name":"LPD3DHAL_CONTEXTDESTROYCB","features":[311]},{"name":"LPD3DHAL_DRAWONEINDEXEDPRIMITIVECB","features":[311,312]},{"name":"LPD3DHAL_DRAWONEPRIMITIVECB","features":[311,312]},{"name":"LPD3DHAL_DRAWPRIMITIVES2CB","features":[311,303,313,314]},{"name":"LPD3DHAL_DRAWPRIMITIVESCB","features":[311]},{"name":"LPD3DHAL_GETSTATECB","features":[311,312]},{"name":"LPD3DHAL_RENDERPRIMITIVECB","features":[311,312,313]},{"name":"LPD3DHAL_RENDERSTATECB","features":[311,313]},{"name":"LPD3DHAL_SCENECAPTURECB","features":[311]},{"name":"LPD3DHAL_SETRENDERTARGETCB","features":[311,303,313,314]},{"name":"LPD3DHAL_TEXTURECREATECB","features":[311,313]},{"name":"LPD3DHAL_TEXTUREDESTROYCB","features":[311]},{"name":"LPD3DHAL_TEXTUREGETSURFCB","features":[311]},{"name":"LPD3DHAL_TEXTURESWAPCB","features":[311]},{"name":"LPD3DHAL_VALIDATETEXTURESTAGESTATECB","features":[311]},{"name":"LPD3DNTHAL_CLEAR2CB","features":[311,312]},{"name":"LPD3DNTHAL_CONTEXTCREATECB","features":[311,303,313]},{"name":"LPD3DNTHAL_CONTEXTDESTROYALLCB","features":[311]},{"name":"LPD3DNTHAL_CONTEXTDESTROYCB","features":[311]},{"name":"LPD3DNTHAL_DRAWPRIMITIVES2CB","features":[311,303,313]},{"name":"LPD3DNTHAL_SCENECAPTURECB","features":[311]},{"name":"LPD3DNTHAL_SETRENDERTARGETCB","features":[311,303,313]},{"name":"LPD3DNTHAL_TEXTURECREATECB","features":[311,303]},{"name":"LPD3DNTHAL_TEXTUREDESTROYCB","features":[311]},{"name":"LPD3DNTHAL_TEXTUREGETSURFCB","features":[311,303]},{"name":"LPD3DNTHAL_TEXTURESWAPCB","features":[311]},{"name":"LPD3DNTHAL_VALIDATETEXTURESTAGESTATECB","features":[311]},{"name":"MAX_ENUM_ADAPTERS","features":[311]},{"name":"MiracastStartPending","features":[311]},{"name":"MiracastStarted","features":[311]},{"name":"MiracastStopPending","features":[311]},{"name":"MiracastStopped","features":[311]},{"name":"NUM_KMTUMDVERSIONS","features":[311]},{"name":"NUM_KMT_DISPLAY_UMDVERSIONS","features":[311]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_INFO","features":[311,303]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS","features":[311]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_ACTIVE","features":[311]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_INACTIVE","features":[311]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_PENDING_DESTROY","features":[311]},{"name":"OUTPUTDUPL_CREATE_MAX_KEYEDMUTXES","features":[311]},{"name":"PDXGK_FSTATE_NOTIFICATION","features":[311,303]},{"name":"PDXGK_GRAPHICSPOWER_UNREGISTER","features":[311,303]},{"name":"PDXGK_INITIAL_COMPONENT_STATE","features":[311,303]},{"name":"PDXGK_POWER_NOTIFICATION","features":[311,303,310]},{"name":"PDXGK_REMOVAL_NOTIFICATION","features":[311]},{"name":"PDXGK_SET_SHARED_POWER_COMPONENT_STATE","features":[311,303]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX","features":[311,303]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX2","features":[311,303]},{"name":"PFND3DKMT_ADJUSTFULLSCREENGAMMA","features":[311,303]},{"name":"PFND3DKMT_BUDGETCHANGENOTIFICATIONCALLBACK","features":[311]},{"name":"PFND3DKMT_CANCELPRESENTS","features":[311,303]},{"name":"PFND3DKMT_CHANGESURFACEPOINTER","features":[311,303,314]},{"name":"PFND3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[311,303]},{"name":"PFND3DKMT_CHECKEXCLUSIVEOWNERSHIP","features":[311,303]},{"name":"PFND3DKMT_CHECKMONITORPOWERSTATE","features":[311,303]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[311,303]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[311,303]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[311,303]},{"name":"PFND3DKMT_CHECKOCCLUSION","features":[311,303]},{"name":"PFND3DKMT_CHECKSHAREDRESOURCEACCESS","features":[311,303]},{"name":"PFND3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[311,303]},{"name":"PFND3DKMT_CLOSEADAPTER","features":[311,303]},{"name":"PFND3DKMT_CONFIGURESHAREDRESOURCE","features":[311,303]},{"name":"PFND3DKMT_CONNECTDOORBELL","features":[311,303]},{"name":"PFND3DKMT_CREATEALLOCATION","features":[311,303]},{"name":"PFND3DKMT_CREATEALLOCATION2","features":[311,303]},{"name":"PFND3DKMT_CREATECONTEXT","features":[311,303]},{"name":"PFND3DKMT_CREATECONTEXTVIRTUAL","features":[311,303]},{"name":"PFND3DKMT_CREATEDCFROMMEMORY","features":[311,303,314]},{"name":"PFND3DKMT_CREATEDEVICE","features":[311,303]},{"name":"PFND3DKMT_CREATEDOORBELL","features":[311,303]},{"name":"PFND3DKMT_CREATEHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX","features":[311,303]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX2","features":[311,303]},{"name":"PFND3DKMT_CREATENATIVEFENCE","features":[311,303]},{"name":"PFND3DKMT_CREATEOUTPUTDUPL","features":[311,303]},{"name":"PFND3DKMT_CREATEOVERLAY","features":[311,303]},{"name":"PFND3DKMT_CREATEPAGINGQUEUE","features":[311,303]},{"name":"PFND3DKMT_CREATEPROTECTEDSESSION","features":[311,303]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[311,303]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[311,303]},{"name":"PFND3DKMT_DESTROYALLOCATION","features":[311,303]},{"name":"PFND3DKMT_DESTROYALLOCATION2","features":[311,303]},{"name":"PFND3DKMT_DESTROYCONTEXT","features":[311,303]},{"name":"PFND3DKMT_DESTROYDCFROMMEMORY","features":[311,303,314]},{"name":"PFND3DKMT_DESTROYDEVICE","features":[311,303]},{"name":"PFND3DKMT_DESTROYDOORBELL","features":[311,303]},{"name":"PFND3DKMT_DESTROYHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_DESTROYKEYEDMUTEX","features":[311,303]},{"name":"PFND3DKMT_DESTROYOUTPUTDUPL","features":[311,303]},{"name":"PFND3DKMT_DESTROYOVERLAY","features":[311,303]},{"name":"PFND3DKMT_DESTROYPAGINGQUEUE","features":[311,303]},{"name":"PFND3DKMT_DESTROYPROTECTEDSESSION","features":[311,303]},{"name":"PFND3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[311,303]},{"name":"PFND3DKMT_ENUMADAPTERS","features":[311,303]},{"name":"PFND3DKMT_ENUMADAPTERS2","features":[311,303]},{"name":"PFND3DKMT_ENUMADAPTERS3","features":[311,303]},{"name":"PFND3DKMT_ESCAPE","features":[311,303]},{"name":"PFND3DKMT_EVICT","features":[311,303]},{"name":"PFND3DKMT_FLIPOVERLAY","features":[311,303]},{"name":"PFND3DKMT_FLUSHHEAPTRANSITIONS","features":[311,303]},{"name":"PFND3DKMT_FREEGPUVIRTUALADDRESS","features":[311,303]},{"name":"PFND3DKMT_GETALLOCATIONPRIORITY","features":[311,303]},{"name":"PFND3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[311,303]},{"name":"PFND3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[311,303]},{"name":"PFND3DKMT_GETDEVICESTATE","features":[311,303]},{"name":"PFND3DKMT_GETDISPLAYMODELIST","features":[311,303]},{"name":"PFND3DKMT_GETDWMVERTICALBLANKEVENT","features":[311,303]},{"name":"PFND3DKMT_GETMULTIPLANEOVERLAYCAPS","features":[311,303]},{"name":"PFND3DKMT_GETMULTISAMPLEMETHODLIST","features":[311,303]},{"name":"PFND3DKMT_GETOVERLAYSTATE","features":[311,303]},{"name":"PFND3DKMT_GETPOSTCOMPOSITIONCAPS","features":[311,303]},{"name":"PFND3DKMT_GETPRESENTHISTORY","features":[311,303]},{"name":"PFND3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[311,303]},{"name":"PFND3DKMT_GETPROCESSSCHEDULINGPRIORITYCLASS","features":[311,303]},{"name":"PFND3DKMT_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[311,303]},{"name":"PFND3DKMT_GETRUNTIMEDATA","features":[311,303]},{"name":"PFND3DKMT_GETSCANLINE","features":[311,303]},{"name":"PFND3DKMT_GETSHAREDPRIMARYHANDLE","features":[311,303]},{"name":"PFND3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[311,303]},{"name":"PFND3DKMT_INVALIDATEACTIVEVIDPN","features":[311,303]},{"name":"PFND3DKMT_INVALIDATECACHE","features":[311,303]},{"name":"PFND3DKMT_LOCK","features":[311,303]},{"name":"PFND3DKMT_LOCK2","features":[311,303]},{"name":"PFND3DKMT_MAKERESIDENT","features":[311,303]},{"name":"PFND3DKMT_MAPGPUVIRTUALADDRESS","features":[311,303]},{"name":"PFND3DKMT_MARKDEVICEASERROR","features":[311,303]},{"name":"PFND3DKMT_NOTIFYWORKSUBMISSION","features":[311,303]},{"name":"PFND3DKMT_OFFERALLOCATIONS","features":[311,303]},{"name":"PFND3DKMT_OPENADAPTERFROMDEVICENAME","features":[311,303]},{"name":"PFND3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[311,303]},{"name":"PFND3DKMT_OPENADAPTERFROMHDC","features":[311,303,314]},{"name":"PFND3DKMT_OPENADAPTERFROMLUID","features":[311,303]},{"name":"PFND3DKMT_OPENKEYEDMUTEX","features":[311,303]},{"name":"PFND3DKMT_OPENKEYEDMUTEX2","features":[311,303]},{"name":"PFND3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[311,303]},{"name":"PFND3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[311,303]},{"name":"PFND3DKMT_OPENNTHANDLEFROMNAME","features":[304,311,303]},{"name":"PFND3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[311,303]},{"name":"PFND3DKMT_OPENRESOURCE","features":[311,303]},{"name":"PFND3DKMT_OPENRESOURCE2","features":[311,303]},{"name":"PFND3DKMT_OPENRESOURCEFROMNTHANDLE","features":[311,303]},{"name":"PFND3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[311,303]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[311,303]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[311,303]},{"name":"PFND3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[304,311,303]},{"name":"PFND3DKMT_OUTPUTDUPLGETFRAMEINFO","features":[311,303]},{"name":"PFND3DKMT_OUTPUTDUPLGETMETADATA","features":[311,303]},{"name":"PFND3DKMT_OUTPUTDUPLGETPOINTERSHAPEDATA","features":[311,303]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENT","features":[311,303]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_OUTPUTDUPLRELEASEFRAME","features":[311,303]},{"name":"PFND3DKMT_PINDIRECTFLIPRESOURCES","features":[311,303]},{"name":"PFND3DKMT_POLLDISPLAYCHILDREN","features":[311,303]},{"name":"PFND3DKMT_PRESENT","features":[311,303]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY","features":[311,303]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY2","features":[311,303]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY3","features":[311,303]},{"name":"PFND3DKMT_QUERYADAPTERINFO","features":[311,303]},{"name":"PFND3DKMT_QUERYALLOCATIONRESIDENCY","features":[311,303]},{"name":"PFND3DKMT_QUERYCLOCKCALIBRATION","features":[311,303]},{"name":"PFND3DKMT_QUERYFSEBLOCK","features":[311,303]},{"name":"PFND3DKMT_QUERYHYBRIDLISTVALUE","features":[311,303]},{"name":"PFND3DKMT_QUERYPROCESSOFFERINFO","features":[311,303]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[311,303]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[311,303]},{"name":"PFND3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[311,303]},{"name":"PFND3DKMT_QUERYRESOURCEINFO","features":[311,303]},{"name":"PFND3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[311,303]},{"name":"PFND3DKMT_QUERYSTATISTICS","features":[311,303]},{"name":"PFND3DKMT_QUERYVIDEOMEMORYINFO","features":[311,303]},{"name":"PFND3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[311,303]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS","features":[311,303]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS2","features":[311,303]},{"name":"PFND3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[311,303]},{"name":"PFND3DKMT_REGISTERTRIMNOTIFICATION","features":[311,303]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX","features":[311,303]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX2","features":[311,303]},{"name":"PFND3DKMT_RELEASEPROCESSVIDPNSOURCEOWNERS","features":[311,303]},{"name":"PFND3DKMT_RENDER","features":[311,303]},{"name":"PFND3DKMT_RESERVEGPUVIRTUALADDRESS","features":[311,303]},{"name":"PFND3DKMT_SETALLOCATIONPRIORITY","features":[311,303]},{"name":"PFND3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[311,303]},{"name":"PFND3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[311,303]},{"name":"PFND3DKMT_SETDISPLAYMODE","features":[311,303]},{"name":"PFND3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[311,303]},{"name":"PFND3DKMT_SETFSEBLOCK","features":[311,303]},{"name":"PFND3DKMT_SETGAMMARAMP","features":[311,303]},{"name":"PFND3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[311,303]},{"name":"PFND3DKMT_SETHYBRIDLISTVVALUE","features":[311,303]},{"name":"PFND3DKMT_SETPROCESSSCHEDULINGPRIORITYCLASS","features":[311,303]},{"name":"PFND3DKMT_SETQUEUEDLIMIT","features":[311,303]},{"name":"PFND3DKMT_SETSTABLEPOWERSTATE","features":[311,303]},{"name":"PFND3DKMT_SETSTEREOENABLED","features":[311,303]},{"name":"PFND3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[311,303]},{"name":"PFND3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[311,303]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER","features":[311,303]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER1","features":[311,303]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER2","features":[311,303]},{"name":"PFND3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[311,303]},{"name":"PFND3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[311,303]},{"name":"PFND3DKMT_SHAREOBJECTS","features":[304,311,303]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[311,303]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[311,303]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[311,303]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[311,303]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[311,303]},{"name":"PFND3DKMT_SUBMITCOMMAND","features":[311,303]},{"name":"PFND3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_SUBMITPRESENTTOHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[311,303]},{"name":"PFND3DKMT_TRIMNOTIFICATIONCALLBACK","features":[311]},{"name":"PFND3DKMT_TRIMPROCESSCOMMITMENT","features":[311,303]},{"name":"PFND3DKMT_UNLOCK","features":[311,303]},{"name":"PFND3DKMT_UNLOCK2","features":[311,303]},{"name":"PFND3DKMT_UNPINDIRECTFLIPRESOURCES","features":[311,303]},{"name":"PFND3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[311,303]},{"name":"PFND3DKMT_UNREGISTERTRIMNOTIFICATION","features":[311,303]},{"name":"PFND3DKMT_UPDATEALLOCATIONPROPERTY","features":[311,303]},{"name":"PFND3DKMT_UPDATEGPUVIRTUALADDRESS","features":[311,303]},{"name":"PFND3DKMT_UPDATEOVERLAY","features":[311,303]},{"name":"PFND3DKMT_WAITFORIDLE","features":[311,303]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[311,303]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[311,303]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[311,303]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[311,303]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT","features":[311,303]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT2","features":[311,303]},{"name":"PFND3DNTPARSEUNKNOWNCOMMAND","features":[311]},{"name":"PFND3DPARSEUNKNOWNCOMMAND","features":[311]},{"name":"RTPATCHFLAG_HASINFO","features":[311]},{"name":"RTPATCHFLAG_HASSEGS","features":[311]},{"name":"SHARED_ALLOCATION_WRITE","features":[311]},{"name":"_NT_D3DDEVCAPS_HWINDEXBUFFER","features":[311]},{"name":"_NT_D3DDEVCAPS_HWVERTEXBUFFER","features":[311]},{"name":"_NT_D3DDEVCAPS_SUBVOLUMELOCK","features":[311]},{"name":"_NT_D3DFVF_FOG","features":[311]},{"name":"_NT_D3DGDI2_MAGIC","features":[311]},{"name":"_NT_D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[311]},{"name":"_NT_D3DGDI2_TYPE_DEFER_AGP_FREES","features":[311]},{"name":"_NT_D3DGDI2_TYPE_DXVERSION","features":[311]},{"name":"_NT_D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETADAPTERGROUP","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS8","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS9","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERY","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETDDIVERSION","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODE","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETFORMAT","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETFORMATCOUNT","features":[311]},{"name":"_NT_D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[311]},{"name":"_NT_D3DLINEPATTERN","features":[311]},{"name":"_NT_D3DPMISCCAPS_FOGINFVF","features":[311]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_0","features":[311]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_COLOROUT_MAX_V3_0","features":[311]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[311]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_SW_DX9","features":[311]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_DX8","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_SW_DX9","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_2","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_3","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_4","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_CONSTREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_DX8","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_2","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_3","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_4","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_INPUTREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V2_1","features":[311]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V3_0","features":[311]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[311]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[311]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V2_1","features":[311]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V3_0","features":[311]},{"name":"_NT_D3DPS_PREDICATE_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_PREDICATE_MAX_V3_0","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_DX8","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_2","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_3","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_4","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_TEMPREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_DX8","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_2","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_3","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_4","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DRS_DELETERTPATCH","features":[311]},{"name":"_NT_D3DVS_ADDRREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_ADDRREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[311]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_SW_DX9","features":[311]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_CONSTREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_CONSTREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_INPUTREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_INPUTREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_LABEL_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[311]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_0","features":[311]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_1","features":[311]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V3_0","features":[311]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[311]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[311]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[311]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_0","features":[311]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_1","features":[311]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V3_0","features":[311]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_SW_DX9","features":[311]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_PREDICATE_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_PREDICATE_MAX_V3_0","features":[311]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_TEMPREG_MAX_V1_1","features":[311]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_0","features":[311]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_1","features":[311]},{"name":"_NT_D3DVS_TEMPREG_MAX_V3_0","features":[311]},{"name":"_NT_RTPATCHFLAG_HASINFO","features":[311]},{"name":"_NT_RTPATCHFLAG_HASSEGS","features":[311]}],"342":[{"name":"AUTHENTICATE","features":[315]},{"name":"BINARY_COMPATIBLE","features":[315]},{"name":"BINARY_DATA","features":[315]},{"name":"BROADCAST_VC","features":[315]},{"name":"BSSID_INFO","features":[315]},{"name":"CALL_PARAMETERS_CHANGED","features":[315]},{"name":"CLOCK_NETWORK_DERIVED","features":[315]},{"name":"CLOCK_PRECISION","features":[315]},{"name":"CL_ADD_PARTY_COMPLETE_HANDLER","features":[315]},{"name":"CL_CALL_CONNECTED_HANDLER","features":[315]},{"name":"CL_CLOSE_AF_COMPLETE_HANDLER","features":[315]},{"name":"CL_CLOSE_CALL_COMPLETE_HANDLER","features":[315]},{"name":"CL_DEREG_SAP_COMPLETE_HANDLER","features":[315]},{"name":"CL_DROP_PARTY_COMPLETE_HANDLER","features":[315]},{"name":"CL_INCOMING_CALL_HANDLER","features":[315]},{"name":"CL_INCOMING_CALL_QOS_CHANGE_HANDLER","features":[315]},{"name":"CL_INCOMING_CLOSE_CALL_HANDLER","features":[315]},{"name":"CL_INCOMING_DROP_PARTY_HANDLER","features":[315]},{"name":"CL_MAKE_CALL_COMPLETE_HANDLER","features":[315]},{"name":"CL_MODIFY_CALL_QOS_COMPLETE_HANDLER","features":[315]},{"name":"CL_OPEN_AF_COMPLETE_HANDLER","features":[315]},{"name":"CL_REG_SAP_COMPLETE_HANDLER","features":[315]},{"name":"CM_ACTIVATE_VC_COMPLETE_HANDLER","features":[315]},{"name":"CM_ADD_PARTY_HANDLER","features":[315]},{"name":"CM_CLOSE_AF_HANDLER","features":[315]},{"name":"CM_CLOSE_CALL_HANDLER","features":[315]},{"name":"CM_DEACTIVATE_VC_COMPLETE_HANDLER","features":[315]},{"name":"CM_DEREG_SAP_HANDLER","features":[315]},{"name":"CM_DROP_PARTY_HANDLER","features":[315]},{"name":"CM_INCOMING_CALL_COMPLETE_HANDLER","features":[315]},{"name":"CM_MAKE_CALL_HANDLER","features":[315]},{"name":"CM_MODIFY_CALL_QOS_HANDLER","features":[315]},{"name":"CM_OPEN_AF_HANDLER","features":[315]},{"name":"CM_REG_SAP_HANDLER","features":[315]},{"name":"CO_ADDRESS","features":[315]},{"name":"CO_ADDRESS_FAMILY","features":[315]},{"name":"CO_ADDRESS_FAMILY_PROXY","features":[315]},{"name":"CO_ADDRESS_LIST","features":[315]},{"name":"CO_AF_REGISTER_NOTIFY_HANDLER","features":[315]},{"name":"CO_CALL_MANAGER_PARAMETERS","features":[315,316]},{"name":"CO_CALL_PARAMETERS","features":[315]},{"name":"CO_CREATE_VC_HANDLER","features":[315]},{"name":"CO_DELETE_VC_HANDLER","features":[315]},{"name":"CO_MEDIA_PARAMETERS","features":[315]},{"name":"CO_PVC","features":[315]},{"name":"CO_SAP","features":[315]},{"name":"CO_SEND_FLAG_SET_DISCARD_ELIBILITY","features":[315]},{"name":"CO_SPECIFIC_PARAMETERS","features":[315]},{"name":"CRYPTO_GENERIC_ERROR","features":[315]},{"name":"CRYPTO_INVALID_PACKET_SYNTAX","features":[315]},{"name":"CRYPTO_INVALID_PROTOCOL","features":[315]},{"name":"CRYPTO_SUCCESS","features":[315]},{"name":"CRYPTO_TRANSPORT_AH_AUTH_FAILED","features":[315]},{"name":"CRYPTO_TRANSPORT_ESP_AUTH_FAILED","features":[315]},{"name":"CRYPTO_TUNNEL_AH_AUTH_FAILED","features":[315]},{"name":"CRYPTO_TUNNEL_ESP_AUTH_FAILED","features":[315]},{"name":"CachedNetBufferList","features":[315]},{"name":"ClassificationHandlePacketInfo","features":[315]},{"name":"DD_NDIS_DEVICE_NAME","features":[315]},{"name":"DOT11_RSN_KCK_LENGTH","features":[315]},{"name":"DOT11_RSN_KEK_LENGTH","features":[315]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[315]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[315]},{"name":"ENCRYPT","features":[315]},{"name":"ERRED_PACKET_INDICATION","features":[315]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[315]},{"name":"ETH_FILTER","features":[315]},{"name":"FILTERDBS","features":[315]},{"name":"GEN_GET_NETCARD_TIME","features":[315]},{"name":"GEN_GET_TIME_CAPS","features":[315]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[315]},{"name":"GUID_NDIS_NDK_STATE","features":[315]},{"name":"INDICATE_END_OF_TX","features":[315]},{"name":"INDICATE_ERRED_PACKETS","features":[315]},{"name":"IOCTL_NDIS_RESERVED5","features":[315]},{"name":"IOCTL_NDIS_RESERVED6","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[315]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[315]},{"name":"IPSEC_OFFLOAD_V2_ESN_SA","features":[315]},{"name":"IPSEC_OFFLOAD_V2_INBOUND","features":[315]},{"name":"IPSEC_OFFLOAD_V2_IPv6","features":[315]},{"name":"IPSEC_OFFLOAD_V2_MAX_EXTENSION_HEADERS","features":[315]},{"name":"IPSEC_OFFLOAD_V2_TRANSPORT_OVER_UDP_ESP_ENCAPSULATION_TUNNEL","features":[315]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_NONE","features":[315]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT","features":[315]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT_OVER_TUNNEL","features":[315]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TUNNEL","features":[315]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_IKE","features":[315]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_OTHER","features":[315]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_IKE","features":[315]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_OTHER","features":[315]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_IKE","features":[315]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_OTHER","features":[315]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_IKE","features":[315]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_OTHER","features":[315]},{"name":"Ieee8021QInfo","features":[315]},{"name":"IpSecPacketInfo","features":[315]},{"name":"LOCK_STATE","features":[315]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[315]},{"name":"MAX_HASHES","features":[315]},{"name":"MEDIA_SPECIFIC_INFORMATION","features":[315]},{"name":"MINIPORT_CO_ACTIVATE_VC","features":[315]},{"name":"MINIPORT_CO_CREATE_VC","features":[315]},{"name":"MINIPORT_CO_DEACTIVATE_VC","features":[315]},{"name":"MINIPORT_CO_DELETE_VC","features":[315]},{"name":"MULTIPOINT_VC","features":[315]},{"name":"MaxPerPacketInfo","features":[315]},{"name":"NBL_FLAGS_MINIPORT_RESERVED","features":[315]},{"name":"NBL_FLAGS_NDIS_RESERVED","features":[315]},{"name":"NBL_FLAGS_PROTOCOL_RESERVED","features":[315]},{"name":"NBL_FLAGS_SCRATCH","features":[315]},{"name":"NBL_PROT_RSVD_FLAGS","features":[315]},{"name":"NDIS630_MINIPORT","features":[315]},{"name":"NDIS685_MINIPORT","features":[315]},{"name":"NDIS_802_11_AI_REQFI","features":[315]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[315]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[315]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[315]},{"name":"NDIS_802_11_AI_RESFI","features":[315]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[315]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[315]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[315]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[315]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[315]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[315]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[315]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[315]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[315]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[315]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[315]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[315]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[315]},{"name":"NDIS_802_11_BSSID_LIST","features":[315]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[315]},{"name":"NDIS_802_11_CAPABILITY","features":[315]},{"name":"NDIS_802_11_CONFIGURATION","features":[315]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[315]},{"name":"NDIS_802_11_FIXED_IEs","features":[315]},{"name":"NDIS_802_11_KEY","features":[315]},{"name":"NDIS_802_11_LENGTH_RATES","features":[315]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[315]},{"name":"NDIS_802_11_LENGTH_SSID","features":[315]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[315]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[315]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[315]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[315]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[315]},{"name":"NDIS_802_11_PMKID","features":[315]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[315]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[315]},{"name":"NDIS_802_11_POWER_MODE","features":[315]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[315]},{"name":"NDIS_802_11_RADIO_STATUS","features":[315]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[315]},{"name":"NDIS_802_11_REMOVE_KEY","features":[315]},{"name":"NDIS_802_11_SSID","features":[315]},{"name":"NDIS_802_11_STATISTICS","features":[315]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[315]},{"name":"NDIS_802_11_STATUS_TYPE","features":[315]},{"name":"NDIS_802_11_TEST","features":[315]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[315]},{"name":"NDIS_802_11_WEP","features":[315]},{"name":"NDIS_802_11_WEP_STATUS","features":[315]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[315]},{"name":"NDIS_802_5_RING_STATE","features":[315]},{"name":"NDIS_AF_LIST","features":[315]},{"name":"NDIS_ANY_NUMBER_OF_NBLS","features":[315]},{"name":"NDIS_ATTRIBUTE_BUS_MASTER","features":[315]},{"name":"NDIS_ATTRIBUTE_DESERIALIZE","features":[315]},{"name":"NDIS_ATTRIBUTE_DO_NOT_BIND_TO_ALL_CO","features":[315]},{"name":"NDIS_ATTRIBUTE_IGNORE_PACKET_TIMEOUT","features":[315]},{"name":"NDIS_ATTRIBUTE_IGNORE_REQUEST_TIMEOUT","features":[315]},{"name":"NDIS_ATTRIBUTE_IGNORE_TOKEN_RING_ERRORS","features":[315]},{"name":"NDIS_ATTRIBUTE_INTERMEDIATE_DRIVER","features":[315]},{"name":"NDIS_ATTRIBUTE_MINIPORT_PADS_SHORT_PACKETS","features":[315]},{"name":"NDIS_ATTRIBUTE_NOT_CO_NDIS","features":[315]},{"name":"NDIS_ATTRIBUTE_NO_HALT_ON_SUSPEND","features":[315]},{"name":"NDIS_ATTRIBUTE_SURPRISE_REMOVE_OK","features":[315]},{"name":"NDIS_ATTRIBUTE_USES_SAFE_BUFFER_APIS","features":[315]},{"name":"NDIS_BIND_FAILED_NOTIFICATION_REVISION_1","features":[315]},{"name":"NDIS_BIND_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_BIND_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_BIND_PARAMETERS_REVISION_3","features":[315]},{"name":"NDIS_BIND_PARAMETERS_REVISION_4","features":[315]},{"name":"NDIS_CALL_MANAGER_CHARACTERISTICS","features":[315]},{"name":"NDIS_CLASS_ID","features":[315]},{"name":"NDIS_CLONE_FLAGS_RESERVED","features":[315]},{"name":"NDIS_CLONE_FLAGS_USE_ORIGINAL_MDLS","features":[315]},{"name":"NDIS_CONFIGURATION_OBJECT_REVISION_1","features":[315]},{"name":"NDIS_CONFIGURATION_PARAMETER","features":[315,303]},{"name":"NDIS_CONFIG_FLAG_FILTER_INSTANCE_CONFIGURATION","features":[315]},{"name":"NDIS_CO_CALL_MANAGER_OPTIONAL_HANDLERS_REVISION_1","features":[315]},{"name":"NDIS_CO_CLIENT_OPTIONAL_HANDLERS_REVISION_1","features":[315]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[315]},{"name":"NDIS_CO_LINK_SPEED","features":[315]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[315]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[315]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[315]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[315]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[315]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[315]},{"name":"NDIS_DEVICE_OBJECT_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_DEVICE_PNP_EVENT","features":[315]},{"name":"NDIS_DEVICE_POWER_STATE","features":[315]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[315]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[315]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[315]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[315]},{"name":"NDIS_DMA_BLOCK","features":[304,315,303,309]},{"name":"NDIS_DMA_DESCRIPTION","features":[315,305,303]},{"name":"NDIS_DRIVER_FLAGS_RESERVED","features":[315]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[315]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[315]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[315]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[315]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[315]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[315]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[315]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[315]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[315]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[315]},{"name":"NDIS_ENCAPSULATION_NULL","features":[315]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[315]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[315]},{"name":"NDIS_ENUM_FILTERS_REVISION_1","features":[315]},{"name":"NDIS_ENVIRONMENT_TYPE","features":[315]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[315]},{"name":"NDIS_ETH_TYPE_802_1X","features":[315]},{"name":"NDIS_ETH_TYPE_ARP","features":[315]},{"name":"NDIS_ETH_TYPE_IPV4","features":[315]},{"name":"NDIS_ETH_TYPE_IPV6","features":[315]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[315]},{"name":"NDIS_EVENT","features":[304,315,303,309]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[315]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[315]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[315]},{"name":"NDIS_FILTER_ATTACH_FLAGS_IGNORE_MANDATORY","features":[315]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_3","features":[315]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_4","features":[315]},{"name":"NDIS_FILTER_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_2","features":[315]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_3","features":[315]},{"name":"NDIS_FILTER_DRIVER_MANDATORY","features":[315]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[315]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[315]},{"name":"NDIS_FILTER_INTERFACE_IM_FILTER","features":[315]},{"name":"NDIS_FILTER_INTERFACE_LW_FILTER","features":[315]},{"name":"NDIS_FILTER_INTERFACE_RECEIVE_BYPASS","features":[315]},{"name":"NDIS_FILTER_INTERFACE_REVISION_1","features":[315]},{"name":"NDIS_FILTER_INTERFACE_REVISION_2","features":[315]},{"name":"NDIS_FILTER_INTERFACE_SEND_BYPASS","features":[315]},{"name":"NDIS_FILTER_MAJOR_VERSION","features":[315]},{"name":"NDIS_FILTER_MINIMUM_MAJOR_VERSION","features":[315]},{"name":"NDIS_FILTER_MINIMUM_MINOR_VERSION","features":[315]},{"name":"NDIS_FILTER_MINOR_VERSION","features":[315]},{"name":"NDIS_FILTER_PARTIAL_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_FILTER_PAUSE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_FILTER_RESTART_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_FLAGS_DONT_LOOPBACK","features":[315]},{"name":"NDIS_FLAGS_DOUBLE_BUFFERED","features":[315]},{"name":"NDIS_FLAGS_IS_LOOPBACK_PACKET","features":[315]},{"name":"NDIS_FLAGS_LOOPBACK_ONLY","features":[315]},{"name":"NDIS_FLAGS_MULTICAST_PACKET","features":[315]},{"name":"NDIS_FLAGS_PADDED","features":[315]},{"name":"NDIS_FLAGS_PROTOCOL_ID_MASK","features":[315]},{"name":"NDIS_FLAGS_RESERVED2","features":[315]},{"name":"NDIS_FLAGS_RESERVED3","features":[315]},{"name":"NDIS_FLAGS_RESERVED4","features":[315]},{"name":"NDIS_FLAGS_SENT_AT_DPC","features":[315]},{"name":"NDIS_FLAGS_USES_ORIGINAL_PACKET","features":[315]},{"name":"NDIS_FLAGS_USES_SG_BUFFER_LIST","features":[315]},{"name":"NDIS_FLAGS_XLATE_AT_TOP","features":[315]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[315]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[315]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[315]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[315]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[315]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[315]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[315]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[315]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[315]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[315]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[315]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[315]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[315]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[315]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[315]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[315]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[315]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[315]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[315]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[315]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[315]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[315]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[315]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[315]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[315]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[315]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[315]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[315]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[315]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[315]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[315]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[315]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[315]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[315]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[315]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[315]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[315]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[315]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[315]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[315]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[315]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[315]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[315]},{"name":"NDIS_GFT_OFFLOAD_INFO_COPY_PACKET","features":[315]},{"name":"NDIS_GFT_OFFLOAD_INFO_DIRECTION_INGRESS","features":[315]},{"name":"NDIS_GFT_OFFLOAD_INFO_EXCEPTION_PACKET","features":[315]},{"name":"NDIS_GFT_OFFLOAD_INFO_SAMPLE_PACKET","features":[315]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[315]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[315]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[315]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[315]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[315]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[315]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[315]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[315]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[315]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[315]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[315]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[315]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[315]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[315]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[315]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[315]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[315]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[315]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[315]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[315]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[315]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[315]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[315]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[315]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[315]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[315]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[315]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[315]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[315]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[315]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[315]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[315]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[315]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[315]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[315]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[315]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[315]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[315]},{"name":"NDIS_GUID","features":[315]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[315]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[315]},{"name":"NDIS_HARDWARE_STATUS","features":[315]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[315]},{"name":"NDIS_HASH_IPV4","features":[315]},{"name":"NDIS_HASH_IPV6","features":[315]},{"name":"NDIS_HASH_IPV6_EX","features":[315]},{"name":"NDIS_HASH_TCP_IPV4","features":[315]},{"name":"NDIS_HASH_TCP_IPV6","features":[315]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[315]},{"name":"NDIS_HASH_TYPE_MASK","features":[315]},{"name":"NDIS_HASH_UDP_IPV4","features":[315]},{"name":"NDIS_HASH_UDP_IPV6","features":[315]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[315]},{"name":"NDIS_HD_SPLIT_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[315]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[315]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[315]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[315]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[315]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[315]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[315]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[315]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[315]},{"name":"NDIS_INTERFACE_TYPE","features":[315]},{"name":"NDIS_INTERMEDIATE_DRIVER","features":[315]},{"name":"NDIS_INTERRUPT_MODERATION","features":[315]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[315]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[315]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[315]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[315]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_EX_REVISION_1","features":[315]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_REVISION_1","features":[315]},{"name":"NDIS_IPSEC_OFFLOAD_V2_DELETE_SA_REVISION_1","features":[315]},{"name":"NDIS_IPSEC_OFFLOAD_V2_UPDATE_SA_REVISION_1","features":[315]},{"name":"NDIS_IP_OPER_STATE","features":[315,317]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[315]},{"name":"NDIS_IP_OPER_STATUS","features":[315,317]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[315,317]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[315]},{"name":"NDIS_IRDA_PACKET_INFO","features":[315]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[315]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_KDNET_ADD_PF_REVISION_1","features":[315]},{"name":"NDIS_KDNET_ENUMERATE_PFS_REVISION_1","features":[315]},{"name":"NDIS_KDNET_PF_ENUM_ELEMENT_REVISION_1","features":[315]},{"name":"NDIS_KDNET_QUERY_PF_INFORMATION_REVISION_1","features":[315]},{"name":"NDIS_KDNET_REMOVE_PF_REVISION_1","features":[315]},{"name":"NDIS_LARGE_SEND_OFFLOAD_MAX_HEADER_LENGTH","features":[315]},{"name":"NDIS_LEGACY_DRIVER","features":[315]},{"name":"NDIS_LEGACY_MINIPORT","features":[315]},{"name":"NDIS_LEGACY_PROTOCOL","features":[315]},{"name":"NDIS_LINK_PARAMETERS","features":[315,317]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_LINK_SPEED","features":[315]},{"name":"NDIS_LINK_STATE","features":[315,317]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[315]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[315]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[315]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[315]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[315]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[315]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[315]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[315]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[315]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[315]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[315]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[315]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[315]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[315]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[315]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[315]},{"name":"NDIS_MAXIMUM_PORTS","features":[315]},{"name":"NDIS_MAX_LOOKAHEAD_SIZE_ACCESSED_UNDEFINED","features":[315]},{"name":"NDIS_MAX_PROCESSOR_COUNT","features":[315]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[315]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[315]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_EAPOL","features":[315]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_FCOE","features":[315]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_LLDP","features":[315]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TIMESYNC","features":[315]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TUNDL","features":[315]},{"name":"NDIS_MEDIA_STATE","features":[315]},{"name":"NDIS_MEDIUM","features":[315]},{"name":"NDIS_MEMORY_CONTIGUOUS","features":[315]},{"name":"NDIS_MEMORY_NONCACHED","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_2","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_3","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_2","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_2","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_3","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_4","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_NDK_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_2","features":[315]},{"name":"NDIS_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_BUS_MASTER","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_CONTROLS_DEFAULT_PORT","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_DO_NOT_BIND_TO_ALL_CO","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_HARDWARE_DEVICE","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NDIS_WDM","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NOT_CO_NDIS","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_HALT_ON_SUSPEND","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_OID_INTERCEPT_ON_NONDEFAULT_PORTS","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_PAUSE_ON_SUSPEND","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_REGISTER_BUGCHECK_CALLBACK","features":[315]},{"name":"NDIS_MINIPORT_ATTRIBUTES_SURPRISE_REMOVE_OK","features":[315]},{"name":"NDIS_MINIPORT_BLOCK","features":[315]},{"name":"NDIS_MINIPORT_CO_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_DRIVER","features":[315]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_2","features":[315]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_3","features":[315]},{"name":"NDIS_MINIPORT_INIT_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_INTERRUPT_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_MAJOR_VERSION","features":[315]},{"name":"NDIS_MINIPORT_MINIMUM_MAJOR_VERSION","features":[315]},{"name":"NDIS_MINIPORT_MINIMUM_MINOR_VERSION","features":[315]},{"name":"NDIS_MINIPORT_MINOR_VERSION","features":[315]},{"name":"NDIS_MINIPORT_PAUSE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_PNP_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_RESTART_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_SS_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_MINIPORT_TIMER","features":[304,315,305,303,309]},{"name":"NDIS_MIN_API","features":[315]},{"name":"NDIS_MONITOR_CONFIG_REVISION_1","features":[315]},{"name":"NDIS_MSIX_CONFIG_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_M_DRIVER_BLOCK","features":[315]},{"name":"NDIS_M_MAX_LOOKAHEAD","features":[315]},{"name":"NDIS_NBL_FLAGS_CAPTURE_TIMESTAMP_ON_TRANSMIT","features":[315]},{"name":"NDIS_NBL_FLAGS_HD_SPLIT","features":[315]},{"name":"NDIS_NBL_FLAGS_IS_IPV4","features":[315]},{"name":"NDIS_NBL_FLAGS_IS_IPV6","features":[315]},{"name":"NDIS_NBL_FLAGS_IS_LOOPBACK_PACKET","features":[315]},{"name":"NDIS_NBL_FLAGS_IS_TCP","features":[315]},{"name":"NDIS_NBL_FLAGS_IS_UDP","features":[315]},{"name":"NDIS_NBL_FLAGS_RECV_READ_ONLY","features":[315]},{"name":"NDIS_NBL_FLAGS_SEND_READ_ONLY","features":[315]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_HEADER","features":[315]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_PAYLOAD","features":[315]},{"name":"NDIS_NBL_MEDIA_SPECIFIC_INFO_REVISION_1","features":[315]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[315]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[315]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[315]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[315]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[315]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[315]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[315]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[315]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[315]},{"name":"NDIS_NT","features":[315]},{"name":"NDIS_OBJECT_HEADER","features":[315]},{"name":"NDIS_OBJECT_REVISION_1","features":[315]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[315]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[315]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[315]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_REVISION_1","features":[315]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[315]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[315]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[315]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[315]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[315]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[315]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[315]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[315]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[315]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[315]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[315]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[315]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[315]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[315]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[315]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[315]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[315]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[315]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[315]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[315]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[315]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[315]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[315]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[315]},{"name":"NDIS_OFFLOAD","features":[315]},{"name":"NDIS_OFFLOAD_ENCAPSULATION_REVISION_1","features":[315]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[315]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[315]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[315]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[315]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[315]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[315]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[315]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[315]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[315]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[315]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[315]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[315]},{"name":"NDIS_OFFLOAD_SET_ON","features":[315]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[315]},{"name":"NDIS_OID_REQUEST_FLAGS_VPORT_ID_VALID","features":[315]},{"name":"NDIS_OID_REQUEST_NDIS_RESERVED_SIZE","features":[315]},{"name":"NDIS_OID_REQUEST_REVISION_1","features":[315]},{"name":"NDIS_OID_REQUEST_REVISION_2","features":[315]},{"name":"NDIS_OID_REQUEST_TIMEOUT_INFINITE","features":[315]},{"name":"NDIS_OPEN_BLOCK","features":[315]},{"name":"NDIS_OPEN_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_OPEN_RECEIVE_NOT_REENTRANT","features":[315]},{"name":"NDIS_OPER_STATE","features":[315,317]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[315]},{"name":"NDIS_PACKET_8021Q_INFO","features":[315]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[315]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[315]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[315]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[315]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[315]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[315]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[315]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[315]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[315]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[315]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[315]},{"name":"NDIS_PACKET_TYPE_SMT","features":[315]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[315]},{"name":"NDIS_PARAMETER_TYPE","features":[315]},{"name":"NDIS_PAUSE_ATTACH_FILTER","features":[315]},{"name":"NDIS_PAUSE_BIND_PROTOCOL","features":[315]},{"name":"NDIS_PAUSE_DETACH_FILTER","features":[315]},{"name":"NDIS_PAUSE_FILTER_RESTART_STACK","features":[315]},{"name":"NDIS_PAUSE_LOW_POWER","features":[315]},{"name":"NDIS_PAUSE_MINIPORT_DEVICE_REMOVE","features":[315]},{"name":"NDIS_PAUSE_NDIS_INTERNAL","features":[315]},{"name":"NDIS_PAUSE_UNBIND_PROTOCOL","features":[315]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[315]},{"name":"NDIS_PD_ACQUIRE_QUEUES_FLAG_DRAIN_NOTIFICATION","features":[315]},{"name":"NDIS_PD_ACQUIRE_QUEUES_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[315]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[315]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[315]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[315]},{"name":"NDIS_PD_CLOSE_PROVIDER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[315]},{"name":"NDIS_PD_COUNTER_HANDLE","features":[315]},{"name":"NDIS_PD_COUNTER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PD_FILTER_HANDLE","features":[315]},{"name":"NDIS_PD_FILTER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PD_OPEN_PROVIDER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PD_PROVIDER_DISPATCH_REVISION_1","features":[315]},{"name":"NDIS_PD_PROVIDER_HANDLE","features":[315]},{"name":"NDIS_PD_QUEUE_DISPATCH_REVISION_1","features":[315]},{"name":"NDIS_PD_QUEUE_FLAG_DRAIN_NOTIFICATION","features":[315]},{"name":"NDIS_PD_QUEUE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PD_QUEUE_REVISION_1","features":[315]},{"name":"NDIS_PER_PACKET_INFO","features":[315]},{"name":"NDIS_PHYSICAL_ADDRESS_UNIT","features":[315]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[315]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[315]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[315]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[315]},{"name":"NDIS_PM_PACKET_PATTERN","features":[315]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[315]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[315]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[315]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[315]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[315]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[315]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[315]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[315]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[315]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[315]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[315]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[315]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[315]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[315]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[315]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[315]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[315]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[315]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[315]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[315]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[315]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[315]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[315]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[315]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[315]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[315]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[315]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[315]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[315]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[315]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[315]},{"name":"NDIS_PNP_CAPABILITIES","features":[315]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[315]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[315]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[315]},{"name":"NDIS_POLL_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_POLL_DATA_REVISION_1","features":[315]},{"name":"NDIS_POLL_HANDLE","features":[315]},{"name":"NDIS_POLL_NOTIFICATION_REVISION_1","features":[315]},{"name":"NDIS_PORT","features":[315,317]},{"name":"NDIS_PORT_ARRAY","features":[315,317]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[315]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[315]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[315,317]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[315]},{"name":"NDIS_PORT_CONTROL_STATE","features":[315]},{"name":"NDIS_PORT_STATE","features":[315,317]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[315]},{"name":"NDIS_PORT_TYPE","features":[315]},{"name":"NDIS_POWER_PROFILE","features":[315]},{"name":"NDIS_PROC","features":[315]},{"name":"NDIS_PROCESSOR_TYPE","features":[315]},{"name":"NDIS_PROCESSOR_VENDOR","features":[315]},{"name":"NDIS_PROC_CALLBACK","features":[315]},{"name":"NDIS_PROTOCOL_BLOCK","features":[315]},{"name":"NDIS_PROTOCOL_CO_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_2","features":[315]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[315]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[315]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[315]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[315]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[315]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[315]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[315]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[315]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[315]},{"name":"NDIS_PROTOCOL_MAJOR_VERSION","features":[315]},{"name":"NDIS_PROTOCOL_MINIMUM_MAJOR_VERSION","features":[315]},{"name":"NDIS_PROTOCOL_MINIMUM_MINOR_VERSION","features":[315]},{"name":"NDIS_PROTOCOL_MINOR_VERSION","features":[315]},{"name":"NDIS_PROTOCOL_PAUSE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PROTOCOL_RESTART_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[315]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[315]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[315]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[315]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[315]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[315]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[315]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[315]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[315]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[315]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[315]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[315]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[315]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[315]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[315]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[315]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[315]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[315]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[315]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[315]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[315]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[315]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[315]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[315]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[315]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[315]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[315]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[315]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[315]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[315]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[315]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[315]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[315]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[315]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[315]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[315]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[315]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[315]},{"name":"NDIS_QOS_TSA_CBS","features":[315]},{"name":"NDIS_QOS_TSA_ETS","features":[315]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[315]},{"name":"NDIS_QOS_TSA_STRICT","features":[315]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[315]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[315]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[315]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[315]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[315]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[315]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_FILTER_QUEUE_STATE_CHANGE_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[315]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_DISPATCH_LEVEL","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_MORE_NBLS","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_PERFECT_FILTERED","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_RESOURCES","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_SHARED_MEMORY_INFO_VALID","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_ETHER_TYPE","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_QUEUE","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_VLAN","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_DESTINATION_GROUP","features":[315]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_SINGLE_SOURCE","features":[315]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[315]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[315]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[315]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[315]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_QUEUE_STATE_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[315]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[315]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[315]},{"name":"NDIS_REQUEST_TYPE","features":[315]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_MAX_LOOKAHEAD_ACCESSED_DEFINED","features":[315]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_1","features":[315]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_2","features":[315]},{"name":"NDIS_RETURN_FLAGS_DISPATCH_LEVEL","features":[315]},{"name":"NDIS_RETURN_FLAGS_SINGLE_QUEUE","features":[315]},{"name":"NDIS_RETURN_FLAGS_SWITCH_SINGLE_SOURCE","features":[315]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[315]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[315]},{"name":"NDIS_RING_HARD_ERROR","features":[315]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[315]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[315]},{"name":"NDIS_RING_RING_RECOVERY","features":[315]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[315]},{"name":"NDIS_RING_SINGLE_STATION","features":[315]},{"name":"NDIS_RING_SOFT_ERROR","features":[315]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[315]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[315]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[315]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[315]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[315]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[315]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[315]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[315]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[315]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[315]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[315]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[315]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[315]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[315]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[315]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[315]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[315]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[315]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[315]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[315]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[315]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[315]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[315]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[315]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[315]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[315]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[315]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[315]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[315]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[315]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[315]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[315]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[315]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[315]},{"name":"NDIS_RUNTIME_VERSION_60","features":[315]},{"name":"NDIS_RWL_AT_DISPATCH_LEVEL","features":[315]},{"name":"NDIS_RW_LOCK","features":[315,303]},{"name":"NDIS_RW_LOCK_REFCOUNT","features":[315]},{"name":"NDIS_SCATTER_GATHER_LIST_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SEND_COMPLETE_FLAGS_DISPATCH_LEVEL","features":[315]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SINGLE_QUEUE","features":[315]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SWITCH_SINGLE_SOURCE","features":[315]},{"name":"NDIS_SEND_FLAGS_CHECK_FOR_LOOPBACK","features":[315]},{"name":"NDIS_SEND_FLAGS_DISPATCH_LEVEL","features":[315]},{"name":"NDIS_SEND_FLAGS_SINGLE_QUEUE","features":[315]},{"name":"NDIS_SEND_FLAGS_SWITCH_DESTINATION_GROUP","features":[315]},{"name":"NDIS_SEND_FLAGS_SWITCH_SINGLE_SOURCE","features":[315]},{"name":"NDIS_SG_DMA_64_BIT_ADDRESS","features":[315]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_1","features":[315]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_2","features":[315]},{"name":"NDIS_SG_DMA_HYBRID_DMA","features":[315]},{"name":"NDIS_SG_DMA_V3_HAL_API","features":[315]},{"name":"NDIS_SG_LIST_WRITE_TO_DEVICE","features":[315]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHAR_SUPPORTS_PF_VPORTS","features":[315]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGOUS","features":[315]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGUOUS","features":[315]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[315]},{"name":"NDIS_SPIN_LOCK","features":[315]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[315]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[315]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[315]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[315]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_RCV_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_XMIT_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_RCV_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_XMIT_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_BYTES_RCV_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_BYTES_XMIT_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_RCV_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_XMIT_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_RCV_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_XMIT_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[315]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[315]},{"name":"NDIS_STATISTICS_GEN_STATISTICS_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_INFO","features":[315]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[315]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_RCV_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_XMIT_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_RCV_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_XMIT_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_RCV_CRC_ERROR_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_RCV_DISCARDS_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_RCV_ERROR_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_RCV_NO_BUFFER_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_RCV_OK_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_TRANSMIT_QUEUE_LENGTH_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_VALUE","features":[315]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[315]},{"name":"NDIS_STATISTICS_XMIT_DISCARDS_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_XMIT_ERROR_SUPPORTED","features":[315]},{"name":"NDIS_STATISTICS_XMIT_OK_SUPPORTED","features":[315]},{"name":"NDIS_STATUS_INDICATION_FLAGS_MEDIA_CONNECT_TO_CONNECT","features":[315]},{"name":"NDIS_STATUS_INDICATION_FLAGS_NDIS_RESERVED","features":[315]},{"name":"NDIS_STATUS_INDICATION_REVISION_1","features":[315]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[315]},{"name":"NDIS_SUPPORT_60_COMPATIBLE_API","features":[315]},{"name":"NDIS_SUPPORT_NDIS6","features":[315]},{"name":"NDIS_SUPPORT_NDIS61","features":[315]},{"name":"NDIS_SUPPORT_NDIS620","features":[315]},{"name":"NDIS_SUPPORT_NDIS630","features":[315]},{"name":"NDIS_SUPPORT_NDIS640","features":[315]},{"name":"NDIS_SUPPORT_NDIS650","features":[315]},{"name":"NDIS_SUPPORT_NDIS651","features":[315]},{"name":"NDIS_SUPPORT_NDIS660","features":[315]},{"name":"NDIS_SUPPORT_NDIS670","features":[315]},{"name":"NDIS_SUPPORT_NDIS680","features":[315]},{"name":"NDIS_SUPPORT_NDIS681","features":[315]},{"name":"NDIS_SUPPORT_NDIS682","features":[315]},{"name":"NDIS_SUPPORT_NDIS683","features":[315]},{"name":"NDIS_SUPPORT_NDIS684","features":[315]},{"name":"NDIS_SUPPORT_NDIS685","features":[315]},{"name":"NDIS_SUPPORT_NDIS686","features":[315]},{"name":"NDIS_SUPPORT_NDIS687","features":[315]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_DESTINATIONS","features":[315]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_SWITCH_INFO_ONLY","features":[315]},{"name":"NDIS_SWITCH_DEFAULT_NIC_INDEX","features":[315]},{"name":"NDIS_SWITCH_DEFAULT_PORT_ID","features":[315]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_FORWARDING_DESTINATION_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_NET_BUFFER_LIST_CONTEXT_TYPE_INFO_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[315]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[315]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[315]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[315]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[315]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[315]},{"name":"NDIS_SWITCH_NIC_STATUS_INDICATION_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[315]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_PD_RESERVED_SIZE","features":[315]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_2","features":[315]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[315]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[315]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[315]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_SWITCH_REPORT_FILTERED_NBL_FLAGS_IS_INCOMING","features":[315]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[315]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_REVISION_1","features":[315]},{"name":"NDIS_TASK_OFFLOAD_VERSION","features":[315]},{"name":"NDIS_TASK_TCP_LARGE_SEND_V0","features":[315]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[315]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[315]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[315]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[315]},{"name":"NDIS_TCP_IP_CHECKSUM_PACKET_INFO","features":[315]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv4","features":[315]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv6","features":[315]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[315]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1_TYPE","features":[315]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[315]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE","features":[315]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[315]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[315]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_TIMER","features":[304,315,305,303,309]},{"name":"NDIS_TIMER_CHARACTERISTICS_REVISION_1","features":[315]},{"name":"NDIS_TIMER_FUNCTION","features":[315]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[315,303]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[315,303]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV4","features":[315]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV6","features":[315]},{"name":"NDIS_VAR_DATA_DESC","features":[315]},{"name":"NDIS_WAN_FRAGMENT","features":[315]},{"name":"NDIS_WAN_GET_STATS","features":[315]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[315]},{"name":"NDIS_WAN_LINE_DOWN","features":[315]},{"name":"NDIS_WAN_LINE_UP","features":[315,303]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[315]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[315]},{"name":"NDIS_WAN_QUALITY","features":[315]},{"name":"NDIS_WDF","features":[315]},{"name":"NDIS_WDM","features":[315]},{"name":"NDIS_WDM_DRIVER","features":[315]},{"name":"NDIS_WLAN_BSSID","features":[315]},{"name":"NDIS_WLAN_BSSID_EX","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[315]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[315]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[315]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[315,317]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[315]},{"name":"NDIS_WMI_EVENT_HEADER","features":[315,317]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[315]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[315]},{"name":"NDIS_WMI_METHOD_HEADER","features":[315,317]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[315]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[315]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[315]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[315]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[315]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[315]},{"name":"NDIS_WMI_OFFLOAD","features":[315]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[315]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[315]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[315]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[315]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[315]},{"name":"NDIS_WMI_SET_HEADER","features":[315,317]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[315]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[315]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[315]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[315]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[315]},{"name":"NDIS_WORK_ITEM","features":[315]},{"name":"NDIS_WRAPPER_HANDLE","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[315]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[315]},{"name":"NETWORK_ADDRESS","features":[315]},{"name":"NETWORK_ADDRESS_IP","features":[315]},{"name":"NETWORK_ADDRESS_IP6","features":[315]},{"name":"NETWORK_ADDRESS_IPX","features":[315]},{"name":"NETWORK_ADDRESS_LIST","features":[315]},{"name":"NET_BUFFER_LIST_POOL_FLAG_VERIFY","features":[315]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_1","features":[315]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_2","features":[315]},{"name":"NET_BUFFER_POOL_FLAG_VERIFY","features":[315]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_1","features":[315]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_2","features":[315]},{"name":"NET_DEVICE_PNP_EVENT_REVISION_1","features":[315]},{"name":"NET_EVENT_FLAGS_VPORT_ID_VALID","features":[315]},{"name":"NET_EVENT_HALT_MINIPORT_ON_LOW_POWER","features":[315]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_1","features":[315]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_2","features":[315]},{"name":"NULL_FILTER","features":[315]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[315]},{"name":"Ndis802_11AuthModeMax","features":[315]},{"name":"Ndis802_11AuthModeOpen","features":[315]},{"name":"Ndis802_11AuthModeShared","features":[315]},{"name":"Ndis802_11AuthModeWPA","features":[315]},{"name":"Ndis802_11AuthModeWPA2","features":[315]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[315]},{"name":"Ndis802_11AuthModeWPA3","features":[315]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[315]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[315]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[315]},{"name":"Ndis802_11AuthModeWPANone","features":[315]},{"name":"Ndis802_11AuthModeWPAPSK","features":[315]},{"name":"Ndis802_11AutoUnknown","features":[315]},{"name":"Ndis802_11Automode","features":[315]},{"name":"Ndis802_11DS","features":[315]},{"name":"Ndis802_11Encryption1Enabled","features":[315]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[315]},{"name":"Ndis802_11Encryption2Enabled","features":[315]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[315]},{"name":"Ndis802_11Encryption3Enabled","features":[315]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[315]},{"name":"Ndis802_11EncryptionDisabled","features":[315]},{"name":"Ndis802_11EncryptionNotSupported","features":[315]},{"name":"Ndis802_11FH","features":[315]},{"name":"Ndis802_11IBSS","features":[315]},{"name":"Ndis802_11Infrastructure","features":[315]},{"name":"Ndis802_11InfrastructureMax","features":[315]},{"name":"Ndis802_11MediaStreamOff","features":[315]},{"name":"Ndis802_11MediaStreamOn","features":[315]},{"name":"Ndis802_11NetworkTypeMax","features":[315]},{"name":"Ndis802_11OFDM24","features":[315]},{"name":"Ndis802_11OFDM5","features":[315]},{"name":"Ndis802_11PowerModeCAM","features":[315]},{"name":"Ndis802_11PowerModeFast_PSP","features":[315]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[315]},{"name":"Ndis802_11PowerModeMax","features":[315]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[315]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[315]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[315]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[315]},{"name":"Ndis802_11RadioStatusMax","features":[315]},{"name":"Ndis802_11RadioStatusOn","features":[315]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[315]},{"name":"Ndis802_11ReloadWEPKeys","features":[315]},{"name":"Ndis802_11StatusTypeMax","features":[315]},{"name":"Ndis802_11StatusType_Authentication","features":[315]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[315]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[315]},{"name":"Ndis802_11WEPDisabled","features":[315]},{"name":"Ndis802_11WEPEnabled","features":[315]},{"name":"Ndis802_11WEPKeyAbsent","features":[315]},{"name":"Ndis802_11WEPNotSupported","features":[315]},{"name":"NdisAcquireReadWriteLock","features":[315,303]},{"name":"NdisAllocateMemoryWithTag","features":[315]},{"name":"NdisCancelTimer","features":[304,315,305,303,309]},{"name":"NdisClAddParty","features":[315]},{"name":"NdisClCloseAddressFamily","features":[315]},{"name":"NdisClCloseCall","features":[315]},{"name":"NdisClDeregisterSap","features":[315]},{"name":"NdisClDropParty","features":[315]},{"name":"NdisClGetProtocolVcContextFromTapiCallId","features":[315,303]},{"name":"NdisClIncomingCallComplete","features":[315]},{"name":"NdisClMakeCall","features":[315]},{"name":"NdisClModifyCallQoS","features":[315]},{"name":"NdisClRegisterSap","features":[315]},{"name":"NdisClass802_3Priority","features":[315]},{"name":"NdisClassAtmAALInfo","features":[315]},{"name":"NdisClassIrdaPacketInfo","features":[315]},{"name":"NdisClassWirelessWanMbxMailbox","features":[315]},{"name":"NdisCloseConfiguration","features":[315]},{"name":"NdisCloseFile","features":[315]},{"name":"NdisCmActivateVc","features":[315]},{"name":"NdisCmAddPartyComplete","features":[315]},{"name":"NdisCmCloseAddressFamilyComplete","features":[315]},{"name":"NdisCmCloseCallComplete","features":[315]},{"name":"NdisCmDeactivateVc","features":[315]},{"name":"NdisCmDeregisterSapComplete","features":[315]},{"name":"NdisCmDispatchCallConnected","features":[315]},{"name":"NdisCmDispatchIncomingCall","features":[315]},{"name":"NdisCmDispatchIncomingCallQoSChange","features":[315]},{"name":"NdisCmDispatchIncomingCloseCall","features":[315]},{"name":"NdisCmDispatchIncomingDropParty","features":[315]},{"name":"NdisCmDropPartyComplete","features":[315]},{"name":"NdisCmMakeCallComplete","features":[315]},{"name":"NdisCmModifyCallQoSComplete","features":[315]},{"name":"NdisCmOpenAddressFamilyComplete","features":[315]},{"name":"NdisCmRegisterSapComplete","features":[315]},{"name":"NdisCoAssignInstanceName","features":[315,303]},{"name":"NdisCoCreateVc","features":[315]},{"name":"NdisCoDeleteVc","features":[315]},{"name":"NdisCoGetTapiCallId","features":[315]},{"name":"NdisCompleteDmaTransfer","features":[304,315,303]},{"name":"NdisCopyBuffer","features":[304,315]},{"name":"NdisDefinitelyNetworkChange","features":[315]},{"name":"NdisDeregisterTdiCallBack","features":[315]},{"name":"NdisDevicePnPEventMaximum","features":[315]},{"name":"NdisDevicePnPEventPowerProfileChanged","features":[315]},{"name":"NdisDevicePnPEventQueryRemoved","features":[315]},{"name":"NdisDevicePnPEventQueryStopped","features":[315]},{"name":"NdisDevicePnPEventRemoved","features":[315]},{"name":"NdisDevicePnPEventStopped","features":[315]},{"name":"NdisDevicePnPEventSurpriseRemoved","features":[315]},{"name":"NdisDeviceStateD0","features":[315]},{"name":"NdisDeviceStateD1","features":[315]},{"name":"NdisDeviceStateD2","features":[315]},{"name":"NdisDeviceStateD3","features":[315]},{"name":"NdisDeviceStateMaximum","features":[315]},{"name":"NdisDeviceStateUnspecified","features":[315]},{"name":"NdisEnvironmentWindows","features":[315]},{"name":"NdisEnvironmentWindowsNt","features":[315]},{"name":"NdisFddiRingDetect","features":[315]},{"name":"NdisFddiRingDirected","features":[315]},{"name":"NdisFddiRingIsolated","features":[315]},{"name":"NdisFddiRingNonOperational","features":[315]},{"name":"NdisFddiRingNonOperationalDup","features":[315]},{"name":"NdisFddiRingOperational","features":[315]},{"name":"NdisFddiRingOperationalDup","features":[315]},{"name":"NdisFddiRingTrace","features":[315]},{"name":"NdisFddiStateActive","features":[315]},{"name":"NdisFddiStateBreak","features":[315]},{"name":"NdisFddiStateConnect","features":[315]},{"name":"NdisFddiStateJoin","features":[315]},{"name":"NdisFddiStateMaintenance","features":[315]},{"name":"NdisFddiStateNext","features":[315]},{"name":"NdisFddiStateOff","features":[315]},{"name":"NdisFddiStateSignal","features":[315]},{"name":"NdisFddiStateTrace","features":[315]},{"name":"NdisFddiStateVerify","features":[315]},{"name":"NdisFddiTypeCWrapA","features":[315]},{"name":"NdisFddiTypeCWrapB","features":[315]},{"name":"NdisFddiTypeCWrapS","features":[315]},{"name":"NdisFddiTypeIsolated","features":[315]},{"name":"NdisFddiTypeLocalA","features":[315]},{"name":"NdisFddiTypeLocalAB","features":[315]},{"name":"NdisFddiTypeLocalB","features":[315]},{"name":"NdisFddiTypeLocalS","features":[315]},{"name":"NdisFddiTypeThrough","features":[315]},{"name":"NdisFddiTypeWrapA","features":[315]},{"name":"NdisFddiTypeWrapAB","features":[315]},{"name":"NdisFddiTypeWrapB","features":[315]},{"name":"NdisFddiTypeWrapS","features":[315]},{"name":"NdisFreeMemory","features":[315]},{"name":"NdisGeneratePartialCancelId","features":[315]},{"name":"NdisGetCurrentProcessorCounts","features":[315]},{"name":"NdisGetCurrentProcessorCpuUsage","features":[315]},{"name":"NdisGetRoutineAddress","features":[315,303]},{"name":"NdisGetSharedDataAlignment","features":[315]},{"name":"NdisGetVersion","features":[315]},{"name":"NdisHardwareStatusClosing","features":[315]},{"name":"NdisHardwareStatusInitializing","features":[315]},{"name":"NdisHardwareStatusNotReady","features":[315]},{"name":"NdisHardwareStatusReady","features":[315]},{"name":"NdisHardwareStatusReset","features":[315]},{"name":"NdisHashFunctionReserved1","features":[315]},{"name":"NdisHashFunctionReserved2","features":[315]},{"name":"NdisHashFunctionReserved3","features":[315]},{"name":"NdisHashFunctionToeplitz","features":[315]},{"name":"NdisIMAssociateMiniport","features":[315]},{"name":"NdisIMCancelInitializeDeviceInstance","features":[315,303]},{"name":"NdisIMDeInitializeDeviceInstance","features":[315]},{"name":"NdisIMGetBindingContext","features":[315]},{"name":"NdisIMInitializeDeviceInstanceEx","features":[315,303]},{"name":"NdisInitializeEvent","features":[304,315,303,309]},{"name":"NdisInitializeReadWriteLock","features":[315,303]},{"name":"NdisInitializeString","features":[315,303]},{"name":"NdisInitializeTimer","features":[304,315,305,303,309]},{"name":"NdisInterface1394","features":[315]},{"name":"NdisInterfaceCBus","features":[315]},{"name":"NdisInterfaceEisa","features":[315]},{"name":"NdisInterfaceInternal","features":[315]},{"name":"NdisInterfaceInternalPowerBus","features":[315]},{"name":"NdisInterfaceIrda","features":[315]},{"name":"NdisInterfaceIsa","features":[315]},{"name":"NdisInterfaceMPIBus","features":[315]},{"name":"NdisInterfaceMPSABus","features":[315]},{"name":"NdisInterfaceMca","features":[315]},{"name":"NdisInterfacePNPBus","features":[315]},{"name":"NdisInterfacePNPISABus","features":[315]},{"name":"NdisInterfacePcMcia","features":[315]},{"name":"NdisInterfacePci","features":[315]},{"name":"NdisInterfaceProcessorInternal","features":[315]},{"name":"NdisInterfaceTurboChannel","features":[315]},{"name":"NdisInterfaceUSB","features":[315]},{"name":"NdisInterruptModerationDisabled","features":[315]},{"name":"NdisInterruptModerationEnabled","features":[315]},{"name":"NdisInterruptModerationNotSupported","features":[315]},{"name":"NdisInterruptModerationUnknown","features":[315]},{"name":"NdisMAllocateSharedMemory","features":[315,303]},{"name":"NdisMAllocateSharedMemoryAsync","features":[315,303]},{"name":"NdisMCancelTimer","features":[304,315,305,303,309]},{"name":"NdisMCloseLog","features":[315]},{"name":"NdisMCmActivateVc","features":[315]},{"name":"NdisMCmCreateVc","features":[315]},{"name":"NdisMCmDeactivateVc","features":[315]},{"name":"NdisMCmDeleteVc","features":[315]},{"name":"NdisMCmRegisterAddressFamily","features":[315]},{"name":"NdisMCoActivateVcComplete","features":[315]},{"name":"NdisMCoDeactivateVcComplete","features":[315]},{"name":"NdisMCreateLog","features":[315]},{"name":"NdisMDeregisterDmaChannel","features":[315]},{"name":"NdisMDeregisterIoPortRange","features":[315]},{"name":"NdisMFlushLog","features":[315]},{"name":"NdisMFreeSharedMemory","features":[315,303]},{"name":"NdisMGetDeviceProperty","features":[304,315,307,305,303,306,308,309,310]},{"name":"NdisMGetDmaAlignment","features":[315]},{"name":"NdisMInitializeTimer","features":[304,315,305,303,309]},{"name":"NdisMMapIoSpace","features":[315]},{"name":"NdisMQueryAdapterInstanceName","features":[315,303]},{"name":"NdisMReadDmaCounter","features":[315]},{"name":"NdisMRegisterDmaChannel","features":[315,305,303]},{"name":"NdisMRegisterIoPortRange","features":[315]},{"name":"NdisMRemoveMiniport","features":[315]},{"name":"NdisMSetPeriodicTimer","features":[304,315,305,303,309]},{"name":"NdisMSleep","features":[315]},{"name":"NdisMUnmapIoSpace","features":[315]},{"name":"NdisMWriteLogData","features":[315]},{"name":"NdisMapFile","features":[315]},{"name":"NdisMaximumInterfaceType","features":[315]},{"name":"NdisMediaStateConnected","features":[315]},{"name":"NdisMediaStateDisconnected","features":[315]},{"name":"NdisMedium1394","features":[315]},{"name":"NdisMedium802_3","features":[315]},{"name":"NdisMedium802_5","features":[315]},{"name":"NdisMediumArcnet878_2","features":[315]},{"name":"NdisMediumArcnetRaw","features":[315]},{"name":"NdisMediumAtm","features":[315]},{"name":"NdisMediumBpc","features":[315]},{"name":"NdisMediumCoWan","features":[315]},{"name":"NdisMediumDix","features":[315]},{"name":"NdisMediumFddi","features":[315]},{"name":"NdisMediumIP","features":[315]},{"name":"NdisMediumInfiniBand","features":[315]},{"name":"NdisMediumIrda","features":[315]},{"name":"NdisMediumLocalTalk","features":[315]},{"name":"NdisMediumLoopback","features":[315]},{"name":"NdisMediumMax","features":[315]},{"name":"NdisMediumNative802_11","features":[315]},{"name":"NdisMediumTunnel","features":[315]},{"name":"NdisMediumWan","features":[315]},{"name":"NdisMediumWiMAX","features":[315]},{"name":"NdisMediumWirelessWan","features":[315]},{"name":"NdisNetworkChangeFromMediaConnect","features":[315]},{"name":"NdisNetworkChangeMax","features":[315]},{"name":"NdisOpenConfigurationKeyByIndex","features":[315,303]},{"name":"NdisOpenConfigurationKeyByName","features":[315,303]},{"name":"NdisOpenFile","features":[315,303]},{"name":"NdisParameterBinary","features":[315]},{"name":"NdisParameterHexInteger","features":[315]},{"name":"NdisParameterInteger","features":[315]},{"name":"NdisParameterMultiString","features":[315]},{"name":"NdisParameterString","features":[315]},{"name":"NdisPauseFunctionsReceiveOnly","features":[315]},{"name":"NdisPauseFunctionsSendAndReceive","features":[315]},{"name":"NdisPauseFunctionsSendOnly","features":[315]},{"name":"NdisPauseFunctionsUnknown","features":[315]},{"name":"NdisPauseFunctionsUnsupported","features":[315]},{"name":"NdisPhysicalMedium1394","features":[315]},{"name":"NdisPhysicalMedium802_3","features":[315]},{"name":"NdisPhysicalMedium802_5","features":[315]},{"name":"NdisPhysicalMediumBluetooth","features":[315]},{"name":"NdisPhysicalMediumCableModem","features":[315]},{"name":"NdisPhysicalMediumDSL","features":[315]},{"name":"NdisPhysicalMediumFibreChannel","features":[315]},{"name":"NdisPhysicalMediumInfiniband","features":[315]},{"name":"NdisPhysicalMediumIrda","features":[315]},{"name":"NdisPhysicalMediumMax","features":[315]},{"name":"NdisPhysicalMediumNative802_11","features":[315]},{"name":"NdisPhysicalMediumNative802_15_4","features":[315]},{"name":"NdisPhysicalMediumOther","features":[315]},{"name":"NdisPhysicalMediumPhoneLine","features":[315]},{"name":"NdisPhysicalMediumPowerLine","features":[315]},{"name":"NdisPhysicalMediumUWB","features":[315]},{"name":"NdisPhysicalMediumUnspecified","features":[315]},{"name":"NdisPhysicalMediumWiMax","features":[315]},{"name":"NdisPhysicalMediumWiredCoWan","features":[315]},{"name":"NdisPhysicalMediumWiredWAN","features":[315]},{"name":"NdisPhysicalMediumWirelessLan","features":[315]},{"name":"NdisPhysicalMediumWirelessWan","features":[315]},{"name":"NdisPortAuthorizationUnknown","features":[315]},{"name":"NdisPortAuthorized","features":[315]},{"name":"NdisPortControlStateControlled","features":[315]},{"name":"NdisPortControlStateUncontrolled","features":[315]},{"name":"NdisPortControlStateUnknown","features":[315]},{"name":"NdisPortReauthorizing","features":[315]},{"name":"NdisPortType8021xSupplicant","features":[315]},{"name":"NdisPortTypeBridge","features":[315]},{"name":"NdisPortTypeMax","features":[315]},{"name":"NdisPortTypeRasConnection","features":[315]},{"name":"NdisPortTypeUndefined","features":[315]},{"name":"NdisPortUnauthorized","features":[315]},{"name":"NdisPossibleNetworkChange","features":[315]},{"name":"NdisPowerProfileAcOnLine","features":[315]},{"name":"NdisPowerProfileBattery","features":[315]},{"name":"NdisProcessorAlpha","features":[315]},{"name":"NdisProcessorAmd64","features":[315]},{"name":"NdisProcessorArm","features":[315]},{"name":"NdisProcessorArm64","features":[315]},{"name":"NdisProcessorIA64","features":[315]},{"name":"NdisProcessorMips","features":[315]},{"name":"NdisProcessorPpc","features":[315]},{"name":"NdisProcessorVendorAuthenticAMD","features":[315]},{"name":"NdisProcessorVendorGenuinIntel","features":[315]},{"name":"NdisProcessorVendorGenuineIntel","features":[315]},{"name":"NdisProcessorVendorUnknown","features":[315]},{"name":"NdisProcessorX86","features":[315]},{"name":"NdisQueryAdapterInstanceName","features":[315,303]},{"name":"NdisQueryBindInstanceName","features":[315,303]},{"name":"NdisReEnumerateProtocolBindings","features":[315]},{"name":"NdisReadConfiguration","features":[315,303]},{"name":"NdisReadNetworkAddress","features":[315]},{"name":"NdisRegisterTdiCallBack","features":[315,303]},{"name":"NdisReleaseReadWriteLock","features":[315,303]},{"name":"NdisRequestClose","features":[315]},{"name":"NdisRequestGeneric1","features":[315]},{"name":"NdisRequestGeneric2","features":[315]},{"name":"NdisRequestGeneric3","features":[315]},{"name":"NdisRequestGeneric4","features":[315]},{"name":"NdisRequestOpen","features":[315]},{"name":"NdisRequestQueryInformation","features":[315]},{"name":"NdisRequestQueryStatistics","features":[315]},{"name":"NdisRequestReset","features":[315]},{"name":"NdisRequestSend","features":[315]},{"name":"NdisRequestSetInformation","features":[315]},{"name":"NdisRequestTransferData","features":[315]},{"name":"NdisReserved","features":[315]},{"name":"NdisResetEvent","features":[304,315,303,309]},{"name":"NdisRingStateClosed","features":[315]},{"name":"NdisRingStateClosing","features":[315]},{"name":"NdisRingStateOpenFailure","features":[315]},{"name":"NdisRingStateOpened","features":[315]},{"name":"NdisRingStateOpening","features":[315]},{"name":"NdisRingStateRingFailure","features":[315]},{"name":"NdisSetEvent","features":[304,315,303,309]},{"name":"NdisSetPeriodicTimer","features":[304,315,305,303,309]},{"name":"NdisSetTimer","features":[304,315,305,303,309]},{"name":"NdisSetTimerEx","features":[304,315,305,303,309]},{"name":"NdisSetupDmaTransfer","features":[304,315,303]},{"name":"NdisSystemProcessorCount","features":[315]},{"name":"NdisUnmapFile","features":[315]},{"name":"NdisUpdateSharedMemory","features":[315]},{"name":"NdisWaitEvent","features":[304,315,303,309]},{"name":"NdisWanErrorControl","features":[315]},{"name":"NdisWanHeaderEthernet","features":[315]},{"name":"NdisWanHeaderNative","features":[315]},{"name":"NdisWanMediumAgileVPN","features":[315]},{"name":"NdisWanMediumAtm","features":[315]},{"name":"NdisWanMediumFrameRelay","features":[315]},{"name":"NdisWanMediumGre","features":[315]},{"name":"NdisWanMediumHub","features":[315]},{"name":"NdisWanMediumIrda","features":[315]},{"name":"NdisWanMediumIsdn","features":[315]},{"name":"NdisWanMediumL2TP","features":[315]},{"name":"NdisWanMediumPPTP","features":[315]},{"name":"NdisWanMediumParallel","features":[315]},{"name":"NdisWanMediumPppoe","features":[315]},{"name":"NdisWanMediumSSTP","features":[315]},{"name":"NdisWanMediumSW56K","features":[315]},{"name":"NdisWanMediumSerial","features":[315]},{"name":"NdisWanMediumSonet","features":[315]},{"name":"NdisWanMediumSubTypeMax","features":[315]},{"name":"NdisWanMediumX_25","features":[315]},{"name":"NdisWanRaw","features":[315]},{"name":"NdisWanReliable","features":[315]},{"name":"NdisWriteConfiguration","features":[315,303]},{"name":"NdisWriteErrorLogEntry","features":[315]},{"name":"NdisWriteEventLogEntry","features":[315]},{"name":"OFFLOAD_ALGO_INFO","features":[315]},{"name":"OFFLOAD_CONF_ALGO","features":[315]},{"name":"OFFLOAD_INBOUND_SA","features":[315]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[315]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[315,303]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[315,303]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[315]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[315]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[315]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[315]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[315]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[315,303]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[315,303]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[315]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[315]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[315]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[315]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[315]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[315]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[315]},{"name":"OFFLOAD_MAX_SAS","features":[315]},{"name":"OFFLOAD_OPERATION_E","features":[315]},{"name":"OFFLOAD_OUTBOUND_SA","features":[315]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[315]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[315]},{"name":"OID_1394_VC_INFO","features":[315]},{"name":"OID_802_11_ADD_KEY","features":[315]},{"name":"OID_802_11_ADD_WEP","features":[315]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[315]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[315]},{"name":"OID_802_11_BSSID","features":[315]},{"name":"OID_802_11_BSSID_LIST","features":[315]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[315]},{"name":"OID_802_11_CAPABILITY","features":[315]},{"name":"OID_802_11_CONFIGURATION","features":[315]},{"name":"OID_802_11_DESIRED_RATES","features":[315]},{"name":"OID_802_11_DISASSOCIATE","features":[315]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[315]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[315]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[315]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[315]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[315]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[315]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[315]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[315]},{"name":"OID_802_11_PMKID","features":[315]},{"name":"OID_802_11_POWER_MODE","features":[315]},{"name":"OID_802_11_PRIVACY_FILTER","features":[315]},{"name":"OID_802_11_RADIO_STATUS","features":[315]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[315]},{"name":"OID_802_11_REMOVE_KEY","features":[315]},{"name":"OID_802_11_REMOVE_WEP","features":[315]},{"name":"OID_802_11_RSSI","features":[315]},{"name":"OID_802_11_RSSI_TRIGGER","features":[315]},{"name":"OID_802_11_RTS_THRESHOLD","features":[315]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[315]},{"name":"OID_802_11_SSID","features":[315]},{"name":"OID_802_11_STATISTICS","features":[315]},{"name":"OID_802_11_SUPPORTED_RATES","features":[315]},{"name":"OID_802_11_TEST","features":[315]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[315]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[315]},{"name":"OID_802_11_WEP_STATUS","features":[315]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[315]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[315]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[315]},{"name":"OID_802_3_MAC_OPTIONS","features":[315]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[315]},{"name":"OID_802_3_MULTICAST_LIST","features":[315]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[315]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[315]},{"name":"OID_802_3_RCV_OVERRUN","features":[315]},{"name":"OID_802_3_XMIT_DEFERRED","features":[315]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[315]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[315]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[315]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[315]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[315]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[315]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[315]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[315]},{"name":"OID_802_5_AC_ERRORS","features":[315]},{"name":"OID_802_5_BURST_ERRORS","features":[315]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[315]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[315]},{"name":"OID_802_5_CURRENT_GROUP","features":[315]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[315]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[315]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[315]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[315]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[315]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[315]},{"name":"OID_802_5_LINE_ERRORS","features":[315]},{"name":"OID_802_5_LOST_FRAMES","features":[315]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[315]},{"name":"OID_802_5_TOKEN_ERRORS","features":[315]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[315]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[315]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[315]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[315]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[315]},{"name":"OID_ATM_ASSIGNED_VPI","features":[315]},{"name":"OID_ATM_CALL_ALERTING","features":[315]},{"name":"OID_ATM_CALL_NOTIFY","features":[315]},{"name":"OID_ATM_CALL_PROCEEDING","features":[315]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[315]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[315]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[315]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[315]},{"name":"OID_ATM_ILMI_VPIVCI","features":[315]},{"name":"OID_ATM_LECS_ADDRESS","features":[315]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[315]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[315]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[315]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[315]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[315]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[315]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[315]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[315]},{"name":"OID_ATM_PARTY_ALERTING","features":[315]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[315]},{"name":"OID_ATM_RCV_CELLS_OK","features":[315]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[315]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[315]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[315]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[315]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[315]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[315]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[315]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[315]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[315]},{"name":"OID_CO_ADDRESS_CHANGE","features":[315]},{"name":"OID_CO_ADD_ADDRESS","features":[315]},{"name":"OID_CO_ADD_PVC","features":[315]},{"name":"OID_CO_AF_CLOSE","features":[315]},{"name":"OID_CO_DELETE_ADDRESS","features":[315]},{"name":"OID_CO_DELETE_PVC","features":[315]},{"name":"OID_CO_GET_ADDRESSES","features":[315]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[315]},{"name":"OID_CO_SIGNALING_DISABLED","features":[315]},{"name":"OID_CO_SIGNALING_ENABLED","features":[315]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[315]},{"name":"OID_CO_TAPI_CM_CAPS","features":[315]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[315]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[315]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[315]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[315]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[315]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[315]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[315]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[315]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[315]},{"name":"OID_FDDI_FRAMES_LOST","features":[315]},{"name":"OID_FDDI_FRAME_ERRORS","features":[315]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[315]},{"name":"OID_FDDI_IF_DESCR","features":[315]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[315]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[315]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[315]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[315]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[315]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[315]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[315]},{"name":"OID_FDDI_IF_MTU","features":[315]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[315]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[315]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[315]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[315]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[315]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[315]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[315]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[315]},{"name":"OID_FDDI_IF_SPECIFIC","features":[315]},{"name":"OID_FDDI_IF_SPEED","features":[315]},{"name":"OID_FDDI_IF_TYPE","features":[315]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[315]},{"name":"OID_FDDI_LCT_FAILURES","features":[315]},{"name":"OID_FDDI_LEM_REJECTS","features":[315]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[315]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[315]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[315]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[315]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[315]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[315]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[315]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[315]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[315]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[315]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[315]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[315]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[315]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[315]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[315]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[315]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[315]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[315]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[315]},{"name":"OID_FDDI_MAC_INDEX","features":[315]},{"name":"OID_FDDI_MAC_LATE_CT","features":[315]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[315]},{"name":"OID_FDDI_MAC_LOST_CT","features":[315]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[315]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[315]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[315]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[315]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[315]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[315]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[315]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[315]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[315]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[315]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[315]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[315]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[315]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[315]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[315]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[315]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[315]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[315]},{"name":"OID_FDDI_MAC_T_MAX","features":[315]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[315]},{"name":"OID_FDDI_MAC_T_NEG","features":[315]},{"name":"OID_FDDI_MAC_T_PRI0","features":[315]},{"name":"OID_FDDI_MAC_T_PRI1","features":[315]},{"name":"OID_FDDI_MAC_T_PRI2","features":[315]},{"name":"OID_FDDI_MAC_T_PRI3","features":[315]},{"name":"OID_FDDI_MAC_T_PRI4","features":[315]},{"name":"OID_FDDI_MAC_T_PRI5","features":[315]},{"name":"OID_FDDI_MAC_T_PRI6","features":[315]},{"name":"OID_FDDI_MAC_T_REQ","features":[315]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[315]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[315]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[315]},{"name":"OID_FDDI_PATH_INDEX","features":[315]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[315]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[315]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[315]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[315]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[315]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[315]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[315]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[315]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[315]},{"name":"OID_FDDI_PORT_ACTION","features":[315]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[315]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[315]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[315]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[315]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[315]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[315]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[315]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[315]},{"name":"OID_FDDI_PORT_INDEX","features":[315]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[315]},{"name":"OID_FDDI_PORT_LEM_CT","features":[315]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[315]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[315]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[315]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[315]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[315]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[315]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[315]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[315]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[315]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[315]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[315]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[315]},{"name":"OID_FDDI_PORT_PC_LS","features":[315]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[315]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[315]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[315]},{"name":"OID_FDDI_RING_MGT_STATE","features":[315]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[315]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[315]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[315]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[315]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[315]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[315]},{"name":"OID_FDDI_SMT_CF_STATE","features":[315]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[315]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[315]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[315]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[315]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[315]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[315]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[315]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[315]},{"name":"OID_FDDI_SMT_MAC_CT","features":[315]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[315]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[315]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[315]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[315]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[315]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[315]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[315]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[315]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[315]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[315]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[315]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[315]},{"name":"OID_FDDI_SMT_STATION_ID","features":[315]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[315]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[315]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[315]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[315]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[315]},{"name":"OID_FDDI_SMT_USER_DATA","features":[315]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[315]},{"name":"OID_FFP_ADAPTER_STATS","features":[315]},{"name":"OID_FFP_CONTROL","features":[315]},{"name":"OID_FFP_DATA","features":[315]},{"name":"OID_FFP_DRIVER_STATS","features":[315]},{"name":"OID_FFP_FLUSH","features":[315]},{"name":"OID_FFP_PARAMS","features":[315]},{"name":"OID_FFP_SUPPORT","features":[315]},{"name":"OID_GEN_ADMIN_STATUS","features":[315]},{"name":"OID_GEN_ALIAS","features":[315]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[315]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[315]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[315]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[315]},{"name":"OID_GEN_BYTES_RCV","features":[315]},{"name":"OID_GEN_BYTES_XMIT","features":[315]},{"name":"OID_GEN_CO_BYTES_RCV","features":[315]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[315]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[315]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[315]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[315]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[315]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[315]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[315]},{"name":"OID_GEN_CO_LINK_SPEED","features":[315]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[315]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[315]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[315]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[315]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[315]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[315]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[315]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[315]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[315]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[315]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[315]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[315]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[315]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[315]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[315]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[315]},{"name":"OID_GEN_CO_VENDOR_ID","features":[315]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[315]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[315]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[315]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[315]},{"name":"OID_GEN_DEVICE_PROFILE","features":[315]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[315]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[315]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[315]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[315]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[315]},{"name":"OID_GEN_DRIVER_VERSION","features":[315]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[315]},{"name":"OID_GEN_FRIENDLY_NAME","features":[315]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[315]},{"name":"OID_GEN_GET_TIME_CAPS","features":[315]},{"name":"OID_GEN_HARDWARE_STATUS","features":[315]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[315]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[315]},{"name":"OID_GEN_INIT_TIME_MS","features":[315]},{"name":"OID_GEN_INTERFACE_INFO","features":[315]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[315]},{"name":"OID_GEN_IP_OPER_STATUS","features":[315]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[315]},{"name":"OID_GEN_LAST_CHANGE","features":[315]},{"name":"OID_GEN_LINK_PARAMETERS","features":[315]},{"name":"OID_GEN_LINK_SPEED","features":[315]},{"name":"OID_GEN_LINK_SPEED_EX","features":[315]},{"name":"OID_GEN_LINK_STATE","features":[315]},{"name":"OID_GEN_MACHINE_NAME","features":[315]},{"name":"OID_GEN_MAC_ADDRESS","features":[315]},{"name":"OID_GEN_MAC_OPTIONS","features":[315]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[315]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[315]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[315]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[315]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[315]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[315]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[315]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[315]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[315]},{"name":"OID_GEN_MEDIA_IN_USE","features":[315]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[315]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[315]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[315]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[315]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[315]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[315]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[315]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[315]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[315]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[315]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[315]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[315]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[315]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[315]},{"name":"OID_GEN_NETCARD_LOAD","features":[315]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[315]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[315]},{"name":"OID_GEN_PACKET_MONITOR","features":[315]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[315]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[315]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[315]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[315]},{"name":"OID_GEN_PORT_STATE","features":[315]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[315]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[315]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[315]},{"name":"OID_GEN_RCV_DISCARDS","features":[315]},{"name":"OID_GEN_RCV_ERROR","features":[315]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[315]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[315]},{"name":"OID_GEN_RCV_OK","features":[315]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[315]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[315]},{"name":"OID_GEN_RECEIVE_HASH","features":[315]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[315]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[315]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[315]},{"name":"OID_GEN_RESET_COUNTS","features":[315]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[315]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[315]},{"name":"OID_GEN_STATISTICS","features":[315]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[315]},{"name":"OID_GEN_SUPPORTED_LIST","features":[315]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[315]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[315]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[315]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[315]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[315]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[315]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[315]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[315]},{"name":"OID_GEN_VENDOR_ID","features":[315]},{"name":"OID_GEN_VLAN_ID","features":[315]},{"name":"OID_GEN_XMIT_DISCARDS","features":[315]},{"name":"OID_GEN_XMIT_ERROR","features":[315]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[315]},{"name":"OID_GEN_XMIT_OK","features":[315]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[315]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[315]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[315]},{"name":"OID_GFT_COUNTER_VALUES","features":[315]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[315]},{"name":"OID_GFT_CREATE_TABLE","features":[315]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[315]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[315]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[315]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[315]},{"name":"OID_GFT_DELETE_PROFILE","features":[315]},{"name":"OID_GFT_DELETE_TABLE","features":[315]},{"name":"OID_GFT_ENUM_COUNTERS","features":[315]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[315]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[315]},{"name":"OID_GFT_ENUM_PROFILES","features":[315]},{"name":"OID_GFT_ENUM_TABLES","features":[315]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[315]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[315]},{"name":"OID_GFT_FREE_COUNTERS","features":[315]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[315]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[315]},{"name":"OID_GFT_STATISTICS","features":[315]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[315]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[315]},{"name":"OID_IP4_OFFLOAD_STATS","features":[315]},{"name":"OID_IP6_OFFLOAD_STATS","features":[315]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[315]},{"name":"OID_IRDA_LINK_SPEED","features":[315]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[315]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[315]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[315]},{"name":"OID_IRDA_MEDIA_BUSY","features":[315]},{"name":"OID_IRDA_RATE_SNIFF","features":[315]},{"name":"OID_IRDA_RECEIVING","features":[315]},{"name":"OID_IRDA_RESERVED1","features":[315]},{"name":"OID_IRDA_RESERVED2","features":[315]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[315]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[315]},{"name":"OID_IRDA_UNICAST_LIST","features":[315]},{"name":"OID_KDNET_ADD_PF","features":[315]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[315]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[315]},{"name":"OID_KDNET_REMOVE_PF","features":[315]},{"name":"OID_LTALK_COLLISIONS","features":[315]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[315]},{"name":"OID_LTALK_DEFERS","features":[315]},{"name":"OID_LTALK_FCS_ERRORS","features":[315]},{"name":"OID_LTALK_IN_BROADCASTS","features":[315]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[315]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[315]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[315]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[315]},{"name":"OID_NDK_CONNECTIONS","features":[315]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[315]},{"name":"OID_NDK_SET_STATE","features":[315]},{"name":"OID_NDK_STATISTICS","features":[315]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[315]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[315]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[315]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[315]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[315]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[315]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[315]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[315]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[315]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[315]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[315]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[315]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[315]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[315]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[315]},{"name":"OID_PD_CLOSE_PROVIDER","features":[315]},{"name":"OID_PD_OPEN_PROVIDER","features":[315]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[315]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[315]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[315]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[315]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[315]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_PM_PARAMETERS","features":[315]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[315]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[315]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[315]},{"name":"OID_PM_RESERVED_1","features":[315]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[315]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[315]},{"name":"OID_PNP_CAPABILITIES","features":[315]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[315]},{"name":"OID_PNP_QUERY_POWER","features":[315]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[315]},{"name":"OID_PNP_SET_POWER","features":[315]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[315]},{"name":"OID_PNP_WAKE_UP_OK","features":[315]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[315]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[315]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[315]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[315]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[315]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[315]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[315]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[315]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[315]},{"name":"OID_QOS_PARAMETERS","features":[315]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[315]},{"name":"OID_QOS_RESERVED1","features":[315]},{"name":"OID_QOS_RESERVED10","features":[315]},{"name":"OID_QOS_RESERVED11","features":[315]},{"name":"OID_QOS_RESERVED12","features":[315]},{"name":"OID_QOS_RESERVED13","features":[315]},{"name":"OID_QOS_RESERVED14","features":[315]},{"name":"OID_QOS_RESERVED15","features":[315]},{"name":"OID_QOS_RESERVED16","features":[315]},{"name":"OID_QOS_RESERVED17","features":[315]},{"name":"OID_QOS_RESERVED18","features":[315]},{"name":"OID_QOS_RESERVED19","features":[315]},{"name":"OID_QOS_RESERVED2","features":[315]},{"name":"OID_QOS_RESERVED20","features":[315]},{"name":"OID_QOS_RESERVED3","features":[315]},{"name":"OID_QOS_RESERVED4","features":[315]},{"name":"OID_QOS_RESERVED5","features":[315]},{"name":"OID_QOS_RESERVED6","features":[315]},{"name":"OID_QOS_RESERVED7","features":[315]},{"name":"OID_QOS_RESERVED8","features":[315]},{"name":"OID_QOS_RESERVED9","features":[315]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[315]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[315]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[315]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[315]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[315]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[315]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[315]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[315]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[315]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[315]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[315]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[315]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[315]},{"name":"OID_SRIOV_CONFIG_STATE","features":[315]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[315]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[315]},{"name":"OID_SRIOV_PF_LUID","features":[315]},{"name":"OID_SRIOV_PROBED_BARS","features":[315]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[315]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[315]},{"name":"OID_SRIOV_RESET_VF","features":[315]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[315]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[315]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[315]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[315]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[315]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[315]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[315]},{"name":"OID_SWITCH_NIC_ARRAY","features":[315]},{"name":"OID_SWITCH_NIC_CONNECT","features":[315]},{"name":"OID_SWITCH_NIC_CREATE","features":[315]},{"name":"OID_SWITCH_NIC_DELETE","features":[315]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[315]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[315]},{"name":"OID_SWITCH_NIC_REQUEST","features":[315]},{"name":"OID_SWITCH_NIC_RESTORE","features":[315]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[315]},{"name":"OID_SWITCH_NIC_RESUME","features":[315]},{"name":"OID_SWITCH_NIC_SAVE","features":[315]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[315]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[315]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[315]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[315]},{"name":"OID_SWITCH_NIC_UPDATED","features":[315]},{"name":"OID_SWITCH_PARAMETERS","features":[315]},{"name":"OID_SWITCH_PORT_ARRAY","features":[315]},{"name":"OID_SWITCH_PORT_CREATE","features":[315]},{"name":"OID_SWITCH_PORT_DELETE","features":[315]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[315]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[315]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[315]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[315]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[315]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[315]},{"name":"OID_SWITCH_PORT_UPDATED","features":[315]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[315]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[315]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[315]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[315]},{"name":"OID_TAPI_ACCEPT","features":[315]},{"name":"OID_TAPI_ANSWER","features":[315]},{"name":"OID_TAPI_CLOSE","features":[315]},{"name":"OID_TAPI_CLOSE_CALL","features":[315]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[315]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[315]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[315]},{"name":"OID_TAPI_DIAL","features":[315]},{"name":"OID_TAPI_DROP","features":[315]},{"name":"OID_TAPI_GATHER_DIGITS","features":[315]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[315]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[315]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[315]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[315]},{"name":"OID_TAPI_GET_CALL_INFO","features":[315]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[315]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[315]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[315]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[315]},{"name":"OID_TAPI_GET_ID","features":[315]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[315]},{"name":"OID_TAPI_MAKE_CALL","features":[315]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[315]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[315]},{"name":"OID_TAPI_OPEN","features":[315]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[315]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[315]},{"name":"OID_TAPI_SECURE_CALL","features":[315]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[315]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[315]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[315]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[315]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[315]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[315]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[315]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[315]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[315]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[315]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[315]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[315]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[315]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[315]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[315]},{"name":"OID_TCP_RSC_STATISTICS","features":[315]},{"name":"OID_TCP_SAN_SUPPORT","features":[315]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[315]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[315]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[315]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[315]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[315]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[315]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[315]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[315]},{"name":"OID_TCP_TASK_OFFLOAD","features":[315]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[315]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[315]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[315]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[315]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[315]},{"name":"OID_VLAN_RESERVED1","features":[315]},{"name":"OID_VLAN_RESERVED2","features":[315]},{"name":"OID_VLAN_RESERVED3","features":[315]},{"name":"OID_VLAN_RESERVED4","features":[315]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[315]},{"name":"OID_WAN_CO_GET_INFO","features":[315]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[315]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[315]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[315]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[315]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[315]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[315]},{"name":"OID_WAN_GET_COMP_INFO","features":[315]},{"name":"OID_WAN_GET_INFO","features":[315]},{"name":"OID_WAN_GET_LINK_INFO","features":[315]},{"name":"OID_WAN_GET_STATS_INFO","features":[315]},{"name":"OID_WAN_HEADER_FORMAT","features":[315]},{"name":"OID_WAN_LINE_COUNT","features":[315]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[315]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[315]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[315]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[315]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[315]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[315]},{"name":"OID_WAN_SET_COMP_INFO","features":[315]},{"name":"OID_WAN_SET_LINK_INFO","features":[315]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[315]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[315]},{"name":"OID_WWAN_CONNECT","features":[315]},{"name":"OID_WWAN_CREATE_MAC","features":[315]},{"name":"OID_WWAN_DELETE_MAC","features":[315]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[315]},{"name":"OID_WWAN_DEVICE_CAPS","features":[315]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[315]},{"name":"OID_WWAN_DEVICE_RESET","features":[315]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[315]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[315]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[315]},{"name":"OID_WWAN_DRIVER_CAPS","features":[315]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[315]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[315]},{"name":"OID_WWAN_HOME_PROVIDER","features":[315]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[315]},{"name":"OID_WWAN_LOCATION_STATE","features":[315]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[315]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[315]},{"name":"OID_WWAN_MBIM_VERSION","features":[315]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[315]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[315]},{"name":"OID_WWAN_MPDP","features":[315]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[315]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[315]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[315]},{"name":"OID_WWAN_NITZ","features":[315]},{"name":"OID_WWAN_PACKET_SERVICE","features":[315]},{"name":"OID_WWAN_PCO","features":[315]},{"name":"OID_WWAN_PIN","features":[315]},{"name":"OID_WWAN_PIN_EX","features":[315]},{"name":"OID_WWAN_PIN_EX2","features":[315]},{"name":"OID_WWAN_PIN_LIST","features":[315]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[315]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[315]},{"name":"OID_WWAN_PRESHUTDOWN","features":[315]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[315]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[315]},{"name":"OID_WWAN_RADIO_STATE","features":[315]},{"name":"OID_WWAN_READY_INFO","features":[315]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[315]},{"name":"OID_WWAN_REGISTER_STATE","features":[315]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[315]},{"name":"OID_WWAN_SAR_CONFIG","features":[315]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[315]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[315]},{"name":"OID_WWAN_SIGNAL_STATE","features":[315]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[315]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[315]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[315]},{"name":"OID_WWAN_SMS_DELETE","features":[315]},{"name":"OID_WWAN_SMS_READ","features":[315]},{"name":"OID_WWAN_SMS_SEND","features":[315]},{"name":"OID_WWAN_SMS_STATUS","features":[315]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[315]},{"name":"OID_WWAN_SYS_CAPS","features":[315]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[315]},{"name":"OID_WWAN_UE_POLICY","features":[315]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[315]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[315]},{"name":"OID_WWAN_UICC_APDU","features":[315]},{"name":"OID_WWAN_UICC_APP_LIST","features":[315]},{"name":"OID_WWAN_UICC_ATR","features":[315]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[315]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[315]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[315]},{"name":"OID_WWAN_UICC_RESET","features":[315]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[315]},{"name":"OID_WWAN_USSD","features":[315]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[315]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[315]},{"name":"OID_XBOX_ACC_RESERVED0","features":[315]},{"name":"OriginalNetBufferList","features":[315]},{"name":"OriginalPacketInfo","features":[315]},{"name":"PD_BUFFER_ATTR_BUILT_IN_DATA_BUFFER","features":[315]},{"name":"PD_BUFFER_FLAG_PARTIAL_PACKET_HEAD","features":[315]},{"name":"PD_BUFFER_MIN_RX_DATA_START_ALIGNMENT","features":[315]},{"name":"PD_BUFFER_MIN_RX_DATA_START_VALUE","features":[315]},{"name":"PD_BUFFER_MIN_TX_DATA_START_ALIGNMENT","features":[315]},{"name":"PERMANENT_VC","features":[315]},{"name":"PMKID_CANDIDATE","features":[315]},{"name":"PNDIS_TIMER_FUNCTION","features":[315]},{"name":"PROTCOL_CO_AF_REGISTER_NOTIFY","features":[315]},{"name":"PROTOCOL_CL_ADD_PARTY_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_CALL_CONNECTED","features":[315]},{"name":"PROTOCOL_CL_CLOSE_AF_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_CLOSE_CALL_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_DEREGISTER_SAP_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_DROP_PARTY_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_INCOMING_CALL","features":[315]},{"name":"PROTOCOL_CL_INCOMING_CALL_QOS_CHANGE","features":[315]},{"name":"PROTOCOL_CL_INCOMING_CLOSE_CALL","features":[315]},{"name":"PROTOCOL_CL_INCOMING_DROP_PARTY","features":[315]},{"name":"PROTOCOL_CL_MAKE_CALL_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_MODIFY_CALL_QOS_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_OPEN_AF_COMPLETE","features":[315]},{"name":"PROTOCOL_CL_REGISTER_SAP_COMPLETE","features":[315]},{"name":"PROTOCOL_CM_ACTIVATE_VC_COMPLETE","features":[315]},{"name":"PROTOCOL_CM_ADD_PARTY","features":[315]},{"name":"PROTOCOL_CM_CLOSE_AF","features":[315]},{"name":"PROTOCOL_CM_CLOSE_CALL","features":[315]},{"name":"PROTOCOL_CM_DEACTIVATE_VC_COMPLETE","features":[315]},{"name":"PROTOCOL_CM_DEREGISTER_SAP","features":[315]},{"name":"PROTOCOL_CM_DROP_PARTY","features":[315]},{"name":"PROTOCOL_CM_INCOMING_CALL_COMPLETE","features":[315]},{"name":"PROTOCOL_CM_MAKE_CALL","features":[315]},{"name":"PROTOCOL_CM_MODIFY_QOS_CALL","features":[315]},{"name":"PROTOCOL_CM_OPEN_AF","features":[315]},{"name":"PROTOCOL_CM_REG_SAP","features":[315]},{"name":"PROTOCOL_CO_AF_REGISTER_NOTIFY","features":[315]},{"name":"PROTOCOL_CO_CREATE_VC","features":[315]},{"name":"PROTOCOL_CO_DELETE_VC","features":[315]},{"name":"PacketCancelId","features":[315]},{"name":"QUERY_CALL_PARAMETERS","features":[315]},{"name":"READABLE_LOCAL_CLOCK","features":[315]},{"name":"RECEIVE_TIME_INDICATION","features":[315]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[315]},{"name":"RECEIVE_VC","features":[315]},{"name":"REFERENCE","features":[315,303]},{"name":"RESERVE_RESOURCES_VC","features":[315]},{"name":"ROUND_DOWN_FLOW","features":[315]},{"name":"ROUND_UP_FLOW","features":[315]},{"name":"STRINGFORMAT_ASCII","features":[315]},{"name":"STRINGFORMAT_BINARY","features":[315]},{"name":"STRINGFORMAT_DBCS","features":[315]},{"name":"STRINGFORMAT_UNICODE","features":[315]},{"name":"ScatterGatherListPacketInfo","features":[315]},{"name":"ShortPacketPaddingInfo","features":[315]},{"name":"TDI_PNP_HANDLER","features":[315,303]},{"name":"TDI_REGISTER_CALLBACK","features":[315,303]},{"name":"TIMED_SEND_CAPABLE","features":[315]},{"name":"TIME_STAMP_CAPABLE","features":[315]},{"name":"TRANSMIT_VC","features":[315]},{"name":"TRANSPORT_HEADER_OFFSET","features":[315]},{"name":"TRUNCATED_HASH_LEN","features":[315]},{"name":"TR_FILTER","features":[315]},{"name":"TcpIpChecksumPacketInfo","features":[315]},{"name":"TcpLargeSendPacketInfo","features":[315]},{"name":"UDP_ENCAP_TYPE","features":[315]},{"name":"USE_TIME_STAMPS","features":[315]},{"name":"VAR_STRING","features":[315]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[315]},{"name":"W_CO_ACTIVATE_VC_HANDLER","features":[315]},{"name":"W_CO_CREATE_VC_HANDLER","features":[315]},{"name":"W_CO_DEACTIVATE_VC_HANDLER","features":[315]},{"name":"W_CO_DELETE_VC_HANDLER","features":[315]},{"name":"fNDIS_GUID_ALLOW_READ","features":[315]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[315]},{"name":"fNDIS_GUID_ANSI_STRING","features":[315]},{"name":"fNDIS_GUID_ARRAY","features":[315]},{"name":"fNDIS_GUID_METHOD","features":[315]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[315]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[315]},{"name":"fNDIS_GUID_TO_OID","features":[315]},{"name":"fNDIS_GUID_TO_STATUS","features":[315]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[315]},{"name":"fPACKET_ALLOCATED_BY_NDIS","features":[315]},{"name":"fPACKET_CONTAINS_MEDIA_SPECIFIC_INFO","features":[315]},{"name":"fPACKET_WRAPPER_RESERVED","features":[315]}],"343":[{"name":"FWPM_SERVICE_STATE_CHANGE_CALLBACK0","features":[318,319]},{"name":"FwpmBfeStateGet0","features":[318,319]},{"name":"FwpmBfeStateSubscribeChanges0","features":[318,303,319]},{"name":"FwpmBfeStateUnsubscribeChanges0","features":[318,303]},{"name":"FwpmCalloutAdd0","features":[318,303,319,306]},{"name":"FwpmCalloutCreateEnumHandle0","features":[318,303,319]},{"name":"FwpmCalloutDeleteById0","features":[318,303]},{"name":"FwpmCalloutDeleteByKey0","features":[318,303]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[318,303]},{"name":"FwpmCalloutEnum0","features":[318,303,319]},{"name":"FwpmCalloutGetById0","features":[318,303,319]},{"name":"FwpmCalloutGetByKey0","features":[318,303,319]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmConnectionCreateEnumHandle0","features":[318,303,319]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[318,303]},{"name":"FwpmConnectionEnum0","features":[318,303,319]},{"name":"FwpmConnectionGetById0","features":[318,303,319]},{"name":"FwpmConnectionGetSecurityInfo0","features":[318,303,306]},{"name":"FwpmConnectionSetSecurityInfo0","features":[318,303,306]},{"name":"FwpmEngineClose0","features":[318,303]},{"name":"FwpmEngineGetOption0","features":[318,303,319,306]},{"name":"FwpmEngineGetSecurityInfo0","features":[318,303,306]},{"name":"FwpmEngineOpen0","features":[318,303,319,306,320]},{"name":"FwpmEngineSetOption0","features":[318,303,319,306]},{"name":"FwpmEngineSetSecurityInfo0","features":[318,303,306]},{"name":"FwpmFilterAdd0","features":[318,303,319,306]},{"name":"FwpmFilterCreateEnumHandle0","features":[318,303,319,306]},{"name":"FwpmFilterDeleteById0","features":[318,303]},{"name":"FwpmFilterDeleteByKey0","features":[318,303]},{"name":"FwpmFilterDestroyEnumHandle0","features":[318,303]},{"name":"FwpmFilterEnum0","features":[318,303,319,306]},{"name":"FwpmFilterGetById0","features":[318,303,319,306]},{"name":"FwpmFilterGetByKey0","features":[318,303,319,306]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmFreeMemory0","features":[318]},{"name":"FwpmIPsecTunnelAdd0","features":[318,303,319,306]},{"name":"FwpmIPsecTunnelAdd1","features":[318,303,319,306]},{"name":"FwpmIPsecTunnelAdd2","features":[318,303,319,306]},{"name":"FwpmIPsecTunnelAdd3","features":[318,303,319,306]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[318,303]},{"name":"FwpmLayerCreateEnumHandle0","features":[318,303,319]},{"name":"FwpmLayerDestroyEnumHandle0","features":[318,303]},{"name":"FwpmLayerEnum0","features":[318,303,319]},{"name":"FwpmLayerGetById0","features":[318,303,319]},{"name":"FwpmLayerGetByKey0","features":[318,303,319]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmNetEventCreateEnumHandle0","features":[318,303,319,306]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[318,303]},{"name":"FwpmNetEventEnum0","features":[318,303,319,306]},{"name":"FwpmNetEventEnum1","features":[318,303,319,306]},{"name":"FwpmNetEventEnum2","features":[318,303,319,306]},{"name":"FwpmNetEventEnum3","features":[318,303,319,306]},{"name":"FwpmNetEventEnum4","features":[318,303,319,306]},{"name":"FwpmNetEventEnum5","features":[318,303,319,306]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[318,303,306]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[318,303,306]},{"name":"FwpmProviderAdd0","features":[318,303,319,306]},{"name":"FwpmProviderContextAdd0","features":[318,303,319,306]},{"name":"FwpmProviderContextAdd1","features":[318,303,319,306]},{"name":"FwpmProviderContextAdd2","features":[318,303,319,306]},{"name":"FwpmProviderContextAdd3","features":[318,303,319,306]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[318,303,319]},{"name":"FwpmProviderContextDeleteById0","features":[318,303]},{"name":"FwpmProviderContextDeleteByKey0","features":[318,303]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[318,303]},{"name":"FwpmProviderContextEnum0","features":[318,303,319,306]},{"name":"FwpmProviderContextEnum1","features":[318,303,319,306]},{"name":"FwpmProviderContextEnum2","features":[318,303,319,306]},{"name":"FwpmProviderContextEnum3","features":[318,303,319,306]},{"name":"FwpmProviderContextGetById0","features":[318,303,319,306]},{"name":"FwpmProviderContextGetById1","features":[318,303,319,306]},{"name":"FwpmProviderContextGetById2","features":[318,303,319,306]},{"name":"FwpmProviderContextGetById3","features":[318,303,319,306]},{"name":"FwpmProviderContextGetByKey0","features":[318,303,319,306]},{"name":"FwpmProviderContextGetByKey1","features":[318,303,319,306]},{"name":"FwpmProviderContextGetByKey2","features":[318,303,319,306]},{"name":"FwpmProviderContextGetByKey3","features":[318,303,319,306]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmProviderCreateEnumHandle0","features":[318,303,319]},{"name":"FwpmProviderDeleteByKey0","features":[318,303]},{"name":"FwpmProviderDestroyEnumHandle0","features":[318,303]},{"name":"FwpmProviderEnum0","features":[318,303,319]},{"name":"FwpmProviderGetByKey0","features":[318,303,319]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmSessionCreateEnumHandle0","features":[318,303,319]},{"name":"FwpmSessionDestroyEnumHandle0","features":[318,303]},{"name":"FwpmSessionEnum0","features":[318,303,319,306]},{"name":"FwpmSubLayerAdd0","features":[318,303,319,306]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[318,303,319]},{"name":"FwpmSubLayerDeleteByKey0","features":[318,303]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[318,303]},{"name":"FwpmSubLayerEnum0","features":[318,303,319]},{"name":"FwpmSubLayerGetByKey0","features":[318,303,319]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[318,303,306]},{"name":"FwpmTransactionAbort0","features":[318,303]},{"name":"FwpmTransactionBegin0","features":[318,303]},{"name":"FwpmTransactionCommit0","features":[318,303]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[318,303,306]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[318,303,306]},{"name":"IPsecDospGetSecurityInfo0","features":[318,303,306]},{"name":"IPsecDospGetStatistics0","features":[318,303,319]},{"name":"IPsecDospSetSecurityInfo0","features":[318,303,306]},{"name":"IPsecDospStateCreateEnumHandle0","features":[318,303,319]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[318,303]},{"name":"IPsecDospStateEnum0","features":[318,303,319]},{"name":"IPsecGetStatistics0","features":[318,303,319]},{"name":"IPsecGetStatistics1","features":[318,303,319]},{"name":"IPsecSaContextAddInbound0","features":[318,303,319]},{"name":"IPsecSaContextAddInbound1","features":[318,303,319]},{"name":"IPsecSaContextAddOutbound0","features":[318,303,319]},{"name":"IPsecSaContextAddOutbound1","features":[318,303,319]},{"name":"IPsecSaContextCreate0","features":[318,303,319]},{"name":"IPsecSaContextCreate1","features":[318,303,319]},{"name":"IPsecSaContextCreateEnumHandle0","features":[318,303,319,306]},{"name":"IPsecSaContextDeleteById0","features":[318,303]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[318,303]},{"name":"IPsecSaContextEnum0","features":[318,303,319,306]},{"name":"IPsecSaContextEnum1","features":[318,303,319,306]},{"name":"IPsecSaContextExpire0","features":[318,303]},{"name":"IPsecSaContextGetById0","features":[318,303,319,306]},{"name":"IPsecSaContextGetById1","features":[318,303,319,306]},{"name":"IPsecSaContextGetSpi0","features":[318,303,319]},{"name":"IPsecSaContextGetSpi1","features":[318,303,319]},{"name":"IPsecSaContextSetSpi0","features":[318,303,319]},{"name":"IPsecSaContextUpdate0","features":[318,303,319,306]},{"name":"IPsecSaCreateEnumHandle0","features":[318,303,319]},{"name":"IPsecSaDbGetSecurityInfo0","features":[318,303,306]},{"name":"IPsecSaDbSetSecurityInfo0","features":[318,303,306]},{"name":"IPsecSaDestroyEnumHandle0","features":[318,303]},{"name":"IPsecSaEnum0","features":[318,303,319,306]},{"name":"IPsecSaEnum1","features":[318,303,319,306]},{"name":"IkeextGetStatistics0","features":[318,303,319]},{"name":"IkeextGetStatistics1","features":[318,303,319]},{"name":"IkeextSaCreateEnumHandle0","features":[318,303,319,306]},{"name":"IkeextSaDbGetSecurityInfo0","features":[318,303,306]},{"name":"IkeextSaDbSetSecurityInfo0","features":[318,303,306]},{"name":"IkeextSaDeleteById0","features":[318,303]},{"name":"IkeextSaDestroyEnumHandle0","features":[318,303]},{"name":"IkeextSaEnum0","features":[318,303,319]},{"name":"IkeextSaEnum1","features":[318,303,319]},{"name":"IkeextSaEnum2","features":[318,303,319]},{"name":"IkeextSaGetById0","features":[318,303,319]},{"name":"IkeextSaGetById1","features":[318,303,319]},{"name":"IkeextSaGetById2","features":[318,303,319]}],"344":[{"name":"ACE_HEADER","features":[307]},{"name":"ALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[307,303,321]},{"name":"ATOMIC_CREATE_ECP_CONTEXT","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_BEST_EFFORT","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_EOF_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_FILE_ATTRIBUTES_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_GEN_FLAGS_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_MARK_USN_SOURCE_INFO","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OPERATION_MASK","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OP_FLAGS_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_REPARSE_POINT_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SPARSE_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_DIR_CHANGE_NOTIFY","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_FILE_ATTRIBUTE_INHERITANCE","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_PARENT_TIMESTAMPS_UPDATE","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_TIMESTAMPS_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_VDL_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_WRITE_USN_CLOSE_RECORD","features":[307]},{"name":"ATOMIC_CREATE_ECP_IN_OP_FLAG_CASE_SENSITIVE_FLAGS_SPECIFIED","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_EOF_SET","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_RETURNED","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_SET","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTE_INHERITANCE_SUPPRESSED","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OPERATION_MASK","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OP_FLAGS_HONORED","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_REPARSE_POINT_SET","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_SPARSE_SET","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_RETURNED","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_SET","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_CLOSE_RECORD_WRITTEN","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_RETURNED","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_SOURCE_INFO_MARKED","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_VDL_SET","features":[307]},{"name":"ATOMIC_CREATE_ECP_OUT_OP_FLAG_CASE_SENSITIVE_FLAGS_SET","features":[307]},{"name":"ApplyControlToken","features":[307]},{"name":"AuditAccessCheck","features":[307]},{"name":"AuditCloseNonObject","features":[307]},{"name":"AuditCloseObject","features":[307]},{"name":"AuditDeleteObject","features":[307]},{"name":"AuditHandleCreation","features":[307]},{"name":"AuditObjectReference","features":[307]},{"name":"AuditOpenNonObject","features":[307]},{"name":"AuditOpenObject","features":[307]},{"name":"AuditOpenObjectForDelete","features":[307]},{"name":"AuditOpenObjectForDeleteWithTransaction","features":[307]},{"name":"AuditOpenObjectWithTransaction","features":[307]},{"name":"AuditPrivilegeObject","features":[307]},{"name":"AuditPrivilegeService","features":[307]},{"name":"BASE_MCB","features":[307]},{"name":"BOOT_AREA_INFO","features":[307]},{"name":"CACHE_MANAGER_CALLBACKS","features":[307,303]},{"name":"CACHE_MANAGER_CALLBACKS_EX","features":[307,303]},{"name":"CACHE_MANAGER_CALLBACKS_EX_V1","features":[307]},{"name":"CACHE_MANAGER_CALLBACK_FUNCTIONS","features":[307,303]},{"name":"CACHE_UNINITIALIZE_EVENT","features":[304,307,303,309]},{"name":"CACHE_USE_DIRECT_ACCESS_MAPPING","features":[307]},{"name":"CACHE_VALID_FLAGS","features":[307]},{"name":"CC_ACQUIRE_DONT_WAIT","features":[307]},{"name":"CC_ACQUIRE_SUPPORTS_ASYNC_LAZYWRITE","features":[307]},{"name":"CC_AGGRESSIVE_UNMAP_BEHIND","features":[307]},{"name":"CC_ASYNC_READ_CONTEXT","features":[304,307,303]},{"name":"CC_DISABLE_DIRTY_PAGE_TRACKING","features":[307]},{"name":"CC_DISABLE_READ_AHEAD","features":[307]},{"name":"CC_DISABLE_UNMAP_BEHIND","features":[307]},{"name":"CC_DISABLE_WRITE_BEHIND","features":[307]},{"name":"CC_ENABLE_CPU_CACHE","features":[307]},{"name":"CC_ENABLE_DISK_IO_ACCOUNTING","features":[307]},{"name":"CC_ERROR_CALLBACK_CONTEXT","features":[307,303]},{"name":"CC_FILE_SIZES","features":[307]},{"name":"CC_FLUSH_AND_PURGE_GATHER_DIRTY_BITS","features":[307]},{"name":"CC_FLUSH_AND_PURGE_NO_PURGE","features":[307]},{"name":"CC_FLUSH_AND_PURGE_WRITEABLE_VIEWS_NOTSEEN","features":[307]},{"name":"COMPRESSED_DATA_INFO","features":[307]},{"name":"COMPRESSION_ENGINE_MASK","features":[307]},{"name":"COMPRESSION_ENGINE_MAX","features":[307]},{"name":"COMPRESSION_FORMAT_MASK","features":[307]},{"name":"COMPRESSION_FORMAT_MAX","features":[307]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[307]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[307]},{"name":"CONTAINER_VOLUME_STATE","features":[307]},{"name":"COPY_INFORMATION","features":[304,307,305,303,306,308,309,310]},{"name":"CPTABLEINFO","features":[307]},{"name":"CREATE_REDIRECTION_ECP_CONTEXT","features":[307,322]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_LAYER","features":[307]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REGISTERED_LAYER","features":[307]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REMOTE_LAYER","features":[307]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_SCRATCH","features":[307]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_USER_MODE","features":[307]},{"name":"CREATE_USN_JOURNAL_DATA","features":[307]},{"name":"CSV_DOWN_LEVEL_FILE_TYPE","features":[307]},{"name":"CSV_DOWN_LEVEL_OPEN_ECP_CONTEXT","features":[307,303]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT","features":[307]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT_FILE_ID_128","features":[307,322]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT","features":[307]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[307]},{"name":"CcAsyncCopyRead","features":[304,307,305,303,306,308,309,310]},{"name":"CcCanIWrite","features":[304,307,305,303,306,308,309,310]},{"name":"CcCoherencyFlushAndPurgeCache","features":[304,307,303,308]},{"name":"CcCopyRead","features":[304,307,305,303,306,308,309,310]},{"name":"CcCopyReadEx","features":[304,307,305,303,306,308,309,310]},{"name":"CcCopyWrite","features":[304,307,305,303,306,308,309,310]},{"name":"CcCopyWriteEx","features":[304,307,305,303,306,308,309,310]},{"name":"CcCopyWriteWontFlush","features":[304,307,305,303,306,308,309,310]},{"name":"CcDeferWrite","features":[304,307,305,303,306,308,309,310]},{"name":"CcErrorCallbackRoutine","features":[307,303]},{"name":"CcFastCopyRead","features":[304,307,305,303,306,308,309,310]},{"name":"CcFastCopyWrite","features":[304,307,305,303,306,308,309,310]},{"name":"CcFlushCache","features":[304,307,303,308]},{"name":"CcGetDirtyPages","features":[304,307,305,303,306,308,309,310]},{"name":"CcGetFileObjectFromBcb","features":[304,307,305,303,306,308,309,310]},{"name":"CcGetFileObjectFromSectionPtrs","features":[304,307,305,303,306,308,309,310]},{"name":"CcGetFileObjectFromSectionPtrsRef","features":[304,307,305,303,306,308,309,310]},{"name":"CcGetFlushedValidData","features":[304,307,303]},{"name":"CcInitializeCacheMap","features":[304,307,305,303,306,308,309,310]},{"name":"CcInitializeCacheMapEx","features":[304,307,305,303,306,308,309,310]},{"name":"CcIsCacheManagerCallbackNeeded","features":[307,303]},{"name":"CcIsThereDirtyData","features":[304,307,305,303,306,308,309,310]},{"name":"CcIsThereDirtyDataEx","features":[304,307,305,303,306,308,309,310]},{"name":"CcMapData","features":[304,307,305,303,306,308,309,310]},{"name":"CcMdlRead","features":[304,307,305,303,306,308,309,310]},{"name":"CcMdlReadComplete","features":[304,307,305,303,306,308,309,310]},{"name":"CcMdlWriteAbort","features":[304,307,305,303,306,308,309,310]},{"name":"CcMdlWriteComplete","features":[304,307,305,303,306,308,309,310]},{"name":"CcPinMappedData","features":[304,307,305,303,306,308,309,310]},{"name":"CcPinRead","features":[304,307,305,303,306,308,309,310]},{"name":"CcPrepareMdlWrite","features":[304,307,305,303,306,308,309,310]},{"name":"CcPreparePinWrite","features":[304,307,305,303,306,308,309,310]},{"name":"CcPurgeCacheSection","features":[304,307,303]},{"name":"CcRemapBcb","features":[307]},{"name":"CcRepinBcb","features":[307]},{"name":"CcScheduleReadAhead","features":[304,307,305,303,306,308,309,310]},{"name":"CcScheduleReadAheadEx","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetAdditionalCacheAttributes","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetAdditionalCacheAttributesEx","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetBcbOwnerPointer","features":[307]},{"name":"CcSetDirtyPageThreshold","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetDirtyPinnedData","features":[307]},{"name":"CcSetFileSizes","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetFileSizesEx","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetLogHandleForFile","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetParallelFlushFile","features":[304,307,305,303,306,308,309,310]},{"name":"CcSetReadAheadGranularity","features":[304,307,305,303,306,308,309,310]},{"name":"CcUninitializeCacheMap","features":[304,307,305,303,306,308,309,310]},{"name":"CcUnpinData","features":[307]},{"name":"CcUnpinDataForThread","features":[307]},{"name":"CcUnpinRepinnedBcb","features":[307,303,308]},{"name":"CcWaitForCurrentLazyWriterActivity","features":[307,303]},{"name":"CcZeroData","features":[304,307,305,303,306,308,309,310]},{"name":"ChangeDataControlArea","features":[307]},{"name":"ChangeImageControlArea","features":[307]},{"name":"ChangeSharedCacheMap","features":[307]},{"name":"CompleteAuthToken","features":[307]},{"name":"CsvCsvFsInternalFileObject","features":[307]},{"name":"CsvDownLevelFileObject","features":[307]},{"name":"DD_MUP_DEVICE_NAME","features":[307]},{"name":"DEVICE_RESET_KEEP_STACK","features":[307]},{"name":"DEVICE_RESET_RESERVED_0","features":[307]},{"name":"DEVICE_RESET_RESERVED_1","features":[307]},{"name":"DO_BOOT_CRITICAL","features":[307]},{"name":"DO_BUFFERED_IO","features":[307]},{"name":"DO_BUS_ENUMERATED_DEVICE","features":[307]},{"name":"DO_DAX_VOLUME","features":[307]},{"name":"DO_DEVICE_HAS_NAME","features":[307]},{"name":"DO_DEVICE_INITIALIZING","features":[307]},{"name":"DO_DEVICE_IRP_REQUIRES_EXTENSION","features":[307]},{"name":"DO_DEVICE_TO_BE_RESET","features":[307]},{"name":"DO_DIRECT_IO","features":[307]},{"name":"DO_DISALLOW_EXECUTE","features":[307]},{"name":"DO_EXCLUSIVE","features":[307]},{"name":"DO_FORCE_NEITHER_IO","features":[307]},{"name":"DO_LONG_TERM_REQUESTS","features":[307]},{"name":"DO_LOW_PRIORITY_FILESYSTEM","features":[307]},{"name":"DO_MAP_IO_BUFFER","features":[307]},{"name":"DO_NEVER_LAST_DEVICE","features":[307]},{"name":"DO_NOT_PURGE_DIRTY_PAGES","features":[307]},{"name":"DO_NOT_RETRY_PURGE","features":[307]},{"name":"DO_POWER_INRUSH","features":[307]},{"name":"DO_POWER_PAGABLE","features":[307]},{"name":"DO_SHUTDOWN_REGISTERED","features":[307]},{"name":"DO_SUPPORTS_PERSISTENT_ACLS","features":[307]},{"name":"DO_SUPPORTS_TRANSACTIONS","features":[307]},{"name":"DO_SYSTEM_BOOT_PARTITION","features":[307]},{"name":"DO_SYSTEM_CRITICAL_PARTITION","features":[307]},{"name":"DO_SYSTEM_SYSTEM_PARTITION","features":[307]},{"name":"DO_VERIFY_VOLUME","features":[307]},{"name":"DO_VOLUME_DEVICE_OBJECT","features":[307]},{"name":"DUAL_OPLOCK_KEY_ECP_CONTEXT","features":[307,303]},{"name":"DUPLICATE_CLUSTER_DATA","features":[307]},{"name":"DfsLinkTrackingInformation","features":[307]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY","features":[307]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY_U","features":[307]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY","features":[307]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY_U","features":[307]},{"name":"ECP_OPEN_PARAMETERS","features":[307]},{"name":"ECP_OPEN_PARAMETERS_FLAG_FAIL_ON_CASE_SENSITIVE_DIR","features":[307]},{"name":"ECP_OPEN_PARAMETERS_FLAG_IGNORE_DIR_CASE_SENSITIVITY","features":[307]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_DELETE","features":[307]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_READ","features":[307]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_WRITE","features":[307]},{"name":"ECP_TYPE_CLFS_CREATE_CONTAINER","features":[307]},{"name":"ECP_TYPE_IO_STOP_ON_SYMLINK_FILTER_GUID","features":[307]},{"name":"ECP_TYPE_OPEN_REPARSE_GUID","features":[307]},{"name":"EOF_WAIT_BLOCK","features":[304,307,303,309]},{"name":"EVENT_INCREMENT","features":[307]},{"name":"EXTENT_READ_CACHE_INFO_BUFFER","features":[307]},{"name":"EqualTo","features":[307]},{"name":"ExDisableResourceBoostLite","features":[304,307,309]},{"name":"ExQueryPoolBlockSize","features":[307,303]},{"name":"ExportSecurityContext","features":[307]},{"name":"FAST_IO_POSSIBLE","features":[307]},{"name":"FILE_ACCESS_INFORMATION","features":[307]},{"name":"FILE_ACTION_ADDED_STREAM","features":[307]},{"name":"FILE_ACTION_ID_NOT_TUNNELLED","features":[307]},{"name":"FILE_ACTION_MODIFIED_STREAM","features":[307]},{"name":"FILE_ACTION_REMOVED_BY_DELETE","features":[307]},{"name":"FILE_ACTION_REMOVED_STREAM","features":[307]},{"name":"FILE_ACTION_TUNNELLED_ID_COLLISION","features":[307]},{"name":"FILE_ALIGNMENT_INFORMATION","features":[307]},{"name":"FILE_ALLOCATION_INFORMATION","features":[307]},{"name":"FILE_ALL_INFORMATION","features":[307,303]},{"name":"FILE_BASIC_INFORMATION","features":[307]},{"name":"FILE_BOTH_DIR_INFORMATION","features":[307]},{"name":"FILE_CASE_SENSITIVE_INFORMATION","features":[307]},{"name":"FILE_CLEANUP_FILE_DELETED","features":[307]},{"name":"FILE_CLEANUP_FILE_REMAINS","features":[307]},{"name":"FILE_CLEANUP_LINK_DELETED","features":[307]},{"name":"FILE_CLEANUP_POSIX_STYLE_DELETE","features":[307]},{"name":"FILE_CLEANUP_STREAM_DELETED","features":[307]},{"name":"FILE_CLEANUP_UNKNOWN","features":[307]},{"name":"FILE_CLEANUP_WRONG_DEVICE","features":[307]},{"name":"FILE_COMPLETE_IF_OPLOCKED","features":[307]},{"name":"FILE_COMPLETION_INFORMATION","features":[307,303]},{"name":"FILE_COMPRESSION_INFORMATION","features":[307]},{"name":"FILE_CONTAINS_EXTENDED_CREATE_INFORMATION","features":[307]},{"name":"FILE_CREATE","features":[307]},{"name":"FILE_CREATE_TREE_CONNECTION","features":[307]},{"name":"FILE_DELETE_ON_CLOSE","features":[307]},{"name":"FILE_DIRECTORY_FILE","features":[307]},{"name":"FILE_DIRECTORY_INFORMATION","features":[307]},{"name":"FILE_DISALLOW_EXCLUSIVE","features":[307]},{"name":"FILE_DISPOSITION_DELETE","features":[307]},{"name":"FILE_DISPOSITION_DO_NOT_DELETE","features":[307]},{"name":"FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK","features":[307]},{"name":"FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE","features":[307]},{"name":"FILE_DISPOSITION_INFORMATION","features":[307,303]},{"name":"FILE_DISPOSITION_INFORMATION_EX","features":[307]},{"name":"FILE_DISPOSITION_INFORMATION_EX_FLAGS","features":[307]},{"name":"FILE_DISPOSITION_ON_CLOSE","features":[307]},{"name":"FILE_DISPOSITION_POSIX_SEMANTICS","features":[307]},{"name":"FILE_EA_INFORMATION","features":[307]},{"name":"FILE_EA_TYPE_ASCII","features":[307]},{"name":"FILE_EA_TYPE_ASN1","features":[307]},{"name":"FILE_EA_TYPE_BINARY","features":[307]},{"name":"FILE_EA_TYPE_BITMAP","features":[307]},{"name":"FILE_EA_TYPE_EA","features":[307]},{"name":"FILE_EA_TYPE_FAMILY_IDS","features":[307]},{"name":"FILE_EA_TYPE_ICON","features":[307]},{"name":"FILE_EA_TYPE_METAFILE","features":[307]},{"name":"FILE_EA_TYPE_MVMT","features":[307]},{"name":"FILE_EA_TYPE_MVST","features":[307]},{"name":"FILE_END_OF_FILE_INFORMATION_EX","features":[307]},{"name":"FILE_FS_ATTRIBUTE_INFORMATION","features":[307]},{"name":"FILE_FS_CONTROL_INFORMATION","features":[307]},{"name":"FILE_FS_DATA_COPY_INFORMATION","features":[307]},{"name":"FILE_FS_DRIVER_PATH_INFORMATION","features":[307,303]},{"name":"FILE_FS_SECTOR_SIZE_INFORMATION","features":[307]},{"name":"FILE_FS_VOLUME_FLAGS_INFORMATION","features":[307]},{"name":"FILE_FULL_DIR_INFORMATION","features":[307]},{"name":"FILE_FULL_EA_INFORMATION","features":[307]},{"name":"FILE_GET_EA_INFORMATION","features":[307]},{"name":"FILE_GET_QUOTA_INFORMATION","features":[307,306]},{"name":"FILE_ID_BOTH_DIR_INFORMATION","features":[307]},{"name":"FILE_ID_EXTD_BOTH_DIR_INFORMATION","features":[307,322]},{"name":"FILE_ID_EXTD_DIR_INFORMATION","features":[307,322]},{"name":"FILE_ID_FULL_DIR_INFORMATION","features":[307]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFORMATION","features":[307]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_OUTSIDE_TX","features":[307]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_TO_TX","features":[307]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_WRITELOCKED","features":[307]},{"name":"FILE_ID_INFORMATION","features":[307,322]},{"name":"FILE_INFORMATION_CLASS","features":[307]},{"name":"FILE_INFORMATION_DEFINITION","features":[307]},{"name":"FILE_INTERNAL_INFORMATION","features":[307]},{"name":"FILE_KNOWN_FOLDER_INFORMATION","features":[307]},{"name":"FILE_KNOWN_FOLDER_TYPE","features":[307]},{"name":"FILE_LINKS_FULL_ID_INFORMATION","features":[307,322]},{"name":"FILE_LINKS_INFORMATION","features":[307]},{"name":"FILE_LINK_ENTRY_FULL_ID_INFORMATION","features":[307,322]},{"name":"FILE_LINK_ENTRY_INFORMATION","features":[307]},{"name":"FILE_LINK_FORCE_RESIZE_SOURCE_SR","features":[307]},{"name":"FILE_LINK_FORCE_RESIZE_SR","features":[307]},{"name":"FILE_LINK_FORCE_RESIZE_TARGET_SR","features":[307]},{"name":"FILE_LINK_IGNORE_READONLY_ATTRIBUTE","features":[307]},{"name":"FILE_LINK_INFORMATION","features":[307,303]},{"name":"FILE_LINK_NO_DECREASE_AVAILABLE_SPACE","features":[307]},{"name":"FILE_LINK_NO_INCREASE_AVAILABLE_SPACE","features":[307]},{"name":"FILE_LINK_POSIX_SEMANTICS","features":[307]},{"name":"FILE_LINK_PRESERVE_AVAILABLE_SPACE","features":[307]},{"name":"FILE_LINK_REPLACE_IF_EXISTS","features":[307]},{"name":"FILE_LINK_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[307]},{"name":"FILE_LOCK","features":[304,307,305,303,306,308,309,310]},{"name":"FILE_LOCK_INFO","features":[304,307,305,303,306,308,309,310]},{"name":"FILE_MAILSLOT_QUERY_INFORMATION","features":[307]},{"name":"FILE_MAILSLOT_SET_INFORMATION","features":[307]},{"name":"FILE_MODE_INFORMATION","features":[307]},{"name":"FILE_MOVE_CLUSTER_INFORMATION","features":[307,303]},{"name":"FILE_NAMES_INFORMATION","features":[307]},{"name":"FILE_NAME_INFORMATION","features":[307]},{"name":"FILE_NEED_EA","features":[307]},{"name":"FILE_NETWORK_OPEN_INFORMATION","features":[307]},{"name":"FILE_NETWORK_PHYSICAL_NAME_INFORMATION","features":[307]},{"name":"FILE_NON_DIRECTORY_FILE","features":[307]},{"name":"FILE_NOTIFY_CHANGE_EA","features":[307]},{"name":"FILE_NOTIFY_CHANGE_NAME","features":[307]},{"name":"FILE_NOTIFY_CHANGE_STREAM_NAME","features":[307]},{"name":"FILE_NOTIFY_CHANGE_STREAM_SIZE","features":[307]},{"name":"FILE_NOTIFY_CHANGE_STREAM_WRITE","features":[307]},{"name":"FILE_NOTIFY_VALID_MASK","features":[307]},{"name":"FILE_NO_COMPRESSION","features":[307]},{"name":"FILE_NO_EA_KNOWLEDGE","features":[307]},{"name":"FILE_NO_INTERMEDIATE_BUFFERING","features":[307]},{"name":"FILE_OBJECTID_INFORMATION","features":[307]},{"name":"FILE_OPBATCH_BREAK_UNDERWAY","features":[307]},{"name":"FILE_OPEN","features":[307]},{"name":"FILE_OPEN_BY_FILE_ID","features":[307]},{"name":"FILE_OPEN_FOR_BACKUP_INTENT","features":[307]},{"name":"FILE_OPEN_FOR_FREE_SPACE_QUERY","features":[307]},{"name":"FILE_OPEN_IF","features":[307]},{"name":"FILE_OPEN_NO_RECALL","features":[307]},{"name":"FILE_OPEN_REPARSE_POINT","features":[307]},{"name":"FILE_OPEN_REQUIRING_OPLOCK","features":[307]},{"name":"FILE_OPLOCK_BROKEN_TO_LEVEL_2","features":[307]},{"name":"FILE_OPLOCK_BROKEN_TO_NONE","features":[307]},{"name":"FILE_OVERWRITE","features":[307]},{"name":"FILE_OVERWRITE_IF","features":[307]},{"name":"FILE_PIPE_ACCEPT_REMOTE_CLIENTS","features":[307]},{"name":"FILE_PIPE_ASSIGN_EVENT_BUFFER","features":[307,303]},{"name":"FILE_PIPE_BYTE_STREAM_MODE","features":[307]},{"name":"FILE_PIPE_BYTE_STREAM_TYPE","features":[307]},{"name":"FILE_PIPE_CLIENT_END","features":[307]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER","features":[307]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_EX","features":[307]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_V2","features":[307]},{"name":"FILE_PIPE_CLOSING_STATE","features":[307]},{"name":"FILE_PIPE_COMPLETE_OPERATION","features":[307]},{"name":"FILE_PIPE_COMPUTER_NAME_LENGTH","features":[307]},{"name":"FILE_PIPE_CONNECTED_STATE","features":[307]},{"name":"FILE_PIPE_CREATE_SYMLINK_INPUT","features":[307]},{"name":"FILE_PIPE_DELETE_SYMLINK_INPUT","features":[307]},{"name":"FILE_PIPE_DISCONNECTED_STATE","features":[307]},{"name":"FILE_PIPE_EVENT_BUFFER","features":[307]},{"name":"FILE_PIPE_FULL_DUPLEX","features":[307]},{"name":"FILE_PIPE_INBOUND","features":[307]},{"name":"FILE_PIPE_INFORMATION","features":[307]},{"name":"FILE_PIPE_LISTENING_STATE","features":[307]},{"name":"FILE_PIPE_LOCAL_INFORMATION","features":[307]},{"name":"FILE_PIPE_MESSAGE_MODE","features":[307]},{"name":"FILE_PIPE_MESSAGE_TYPE","features":[307]},{"name":"FILE_PIPE_OUTBOUND","features":[307]},{"name":"FILE_PIPE_PEEK_BUFFER","features":[307]},{"name":"FILE_PIPE_QUEUE_OPERATION","features":[307]},{"name":"FILE_PIPE_READ_DATA","features":[307]},{"name":"FILE_PIPE_REJECT_REMOTE_CLIENTS","features":[307]},{"name":"FILE_PIPE_REMOTE_INFORMATION","features":[307]},{"name":"FILE_PIPE_SERVER_END","features":[307]},{"name":"FILE_PIPE_SILO_ARRIVAL_INPUT","features":[307,303]},{"name":"FILE_PIPE_SYMLINK_FLAG_GLOBAL","features":[307]},{"name":"FILE_PIPE_SYMLINK_FLAG_RELATIVE","features":[307]},{"name":"FILE_PIPE_TYPE_VALID_MASK","features":[307]},{"name":"FILE_PIPE_WAIT_FOR_BUFFER","features":[307,303]},{"name":"FILE_PIPE_WRITE_SPACE","features":[307]},{"name":"FILE_POSITION_INFORMATION","features":[307]},{"name":"FILE_QUOTA_INFORMATION","features":[307,306]},{"name":"FILE_RANDOM_ACCESS","features":[307]},{"name":"FILE_REMOTE_PROTOCOL_INFORMATION","features":[307]},{"name":"FILE_RENAME_FORCE_RESIZE_SOURCE_SR","features":[307]},{"name":"FILE_RENAME_FORCE_RESIZE_SR","features":[307]},{"name":"FILE_RENAME_FORCE_RESIZE_TARGET_SR","features":[307]},{"name":"FILE_RENAME_IGNORE_READONLY_ATTRIBUTE","features":[307]},{"name":"FILE_RENAME_INFORMATION","features":[307,303]},{"name":"FILE_RENAME_NO_DECREASE_AVAILABLE_SPACE","features":[307]},{"name":"FILE_RENAME_NO_INCREASE_AVAILABLE_SPACE","features":[307]},{"name":"FILE_RENAME_POSIX_SEMANTICS","features":[307]},{"name":"FILE_RENAME_PRESERVE_AVAILABLE_SPACE","features":[307]},{"name":"FILE_RENAME_REPLACE_IF_EXISTS","features":[307]},{"name":"FILE_RENAME_SUPPRESS_PIN_STATE_INHERITANCE","features":[307]},{"name":"FILE_RENAME_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[307]},{"name":"FILE_REPARSE_POINT_INFORMATION","features":[307]},{"name":"FILE_RESERVE_OPFILTER","features":[307]},{"name":"FILE_SEQUENTIAL_ONLY","features":[307]},{"name":"FILE_SESSION_AWARE","features":[307]},{"name":"FILE_STANDARD_INFORMATION","features":[307,303]},{"name":"FILE_STANDARD_LINK_INFORMATION","features":[307,303]},{"name":"FILE_STAT_INFORMATION","features":[307]},{"name":"FILE_STAT_LX_INFORMATION","features":[307]},{"name":"FILE_STORAGE_RESERVE_ID_INFORMATION","features":[307,323]},{"name":"FILE_STREAM_INFORMATION","features":[307]},{"name":"FILE_SUPERSEDE","features":[307]},{"name":"FILE_SYNCHRONOUS_IO_ALERT","features":[307]},{"name":"FILE_SYNCHRONOUS_IO_NONALERT","features":[307]},{"name":"FILE_TIMESTAMPS","features":[307]},{"name":"FILE_TRACKING_INFORMATION","features":[307,303]},{"name":"FILE_VC_CONTENT_INDEX_DISABLED","features":[307]},{"name":"FILE_VC_LOG_QUOTA_LIMIT","features":[307]},{"name":"FILE_VC_LOG_QUOTA_THRESHOLD","features":[307]},{"name":"FILE_VC_LOG_VOLUME_LIMIT","features":[307]},{"name":"FILE_VC_LOG_VOLUME_THRESHOLD","features":[307]},{"name":"FILE_VC_QUOTAS_INCOMPLETE","features":[307]},{"name":"FILE_VC_QUOTAS_REBUILDING","features":[307]},{"name":"FILE_VC_QUOTA_ENFORCE","features":[307]},{"name":"FILE_VC_QUOTA_MASK","features":[307]},{"name":"FILE_VC_QUOTA_NONE","features":[307]},{"name":"FILE_VC_QUOTA_TRACK","features":[307]},{"name":"FILE_VC_VALID_MASK","features":[307]},{"name":"FILE_VOLUME_NAME_INFORMATION","features":[307]},{"name":"FILE_WRITE_THROUGH","features":[307]},{"name":"FLAGS_DELAY_REASONS_BITMAP_SCANNED","features":[307]},{"name":"FLAGS_DELAY_REASONS_LOG_FILE_FULL","features":[307]},{"name":"FLAGS_END_OF_FILE_INFO_EX_EXTEND_PAGING","features":[307]},{"name":"FLAGS_END_OF_FILE_INFO_EX_NO_EXTRA_PAGING_EXTEND","features":[307]},{"name":"FLAGS_END_OF_FILE_INFO_EX_TIME_CONSTRAINED","features":[307]},{"name":"FREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[307,303]},{"name":"FSCTL_GHOST_FILE_EXTENTS_INPUT_BUFFER","features":[307]},{"name":"FSCTL_LMR_GET_LINK_TRACKING_INFORMATION","features":[307]},{"name":"FSCTL_LMR_SET_LINK_TRACKING_INFORMATION","features":[307]},{"name":"FSCTL_MAILSLOT_PEEK","features":[307]},{"name":"FSCTL_PIPE_ASSIGN_EVENT","features":[307]},{"name":"FSCTL_PIPE_CREATE_SYMLINK","features":[307]},{"name":"FSCTL_PIPE_DELETE_SYMLINK","features":[307]},{"name":"FSCTL_PIPE_DISABLE_IMPERSONATE","features":[307]},{"name":"FSCTL_PIPE_DISCONNECT","features":[307]},{"name":"FSCTL_PIPE_FLUSH","features":[307]},{"name":"FSCTL_PIPE_GET_CONNECTION_ATTRIBUTE","features":[307]},{"name":"FSCTL_PIPE_GET_HANDLE_ATTRIBUTE","features":[307]},{"name":"FSCTL_PIPE_GET_PIPE_ATTRIBUTE","features":[307]},{"name":"FSCTL_PIPE_IMPERSONATE","features":[307]},{"name":"FSCTL_PIPE_INTERNAL_READ","features":[307]},{"name":"FSCTL_PIPE_INTERNAL_READ_OVFLOW","features":[307]},{"name":"FSCTL_PIPE_INTERNAL_TRANSCEIVE","features":[307]},{"name":"FSCTL_PIPE_INTERNAL_WRITE","features":[307]},{"name":"FSCTL_PIPE_LISTEN","features":[307]},{"name":"FSCTL_PIPE_PEEK","features":[307]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS","features":[307]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS_V2","features":[307]},{"name":"FSCTL_PIPE_QUERY_EVENT","features":[307]},{"name":"FSCTL_PIPE_SET_CLIENT_PROCESS","features":[307]},{"name":"FSCTL_PIPE_SET_CONNECTION_ATTRIBUTE","features":[307]},{"name":"FSCTL_PIPE_SET_HANDLE_ATTRIBUTE","features":[307]},{"name":"FSCTL_PIPE_SET_PIPE_ATTRIBUTE","features":[307]},{"name":"FSCTL_PIPE_SILO_ARRIVAL","features":[307]},{"name":"FSCTL_PIPE_TRANSCEIVE","features":[307]},{"name":"FSCTL_PIPE_WAIT","features":[307]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_INPUT_RANGE","features":[307]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_OUTPUT","features":[307]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO_OUTPUT","features":[307]},{"name":"FSCTL_UNMAP_SPACE_INPUT_BUFFER","features":[307]},{"name":"FSCTL_UNMAP_SPACE_OUTPUT","features":[307]},{"name":"FSRTL_ADD_TC_CASE_SENSITIVE","features":[307]},{"name":"FSRTL_ADD_TC_KEY_BY_SHORT_NAME","features":[307]},{"name":"FSRTL_ADVANCED_FCB_HEADER","features":[304,307,303,309]},{"name":"FSRTL_ALLOCATE_ECPLIST_FLAG_CHARGE_QUOTA","features":[307]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_CHARGE_QUOTA","features":[307]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_NONPAGED_POOL","features":[307]},{"name":"FSRTL_AUXILIARY_BUFFER","features":[304,307]},{"name":"FSRTL_AUXILIARY_FLAG_DEALLOCATE","features":[307]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_HARD_ERROR","features":[307]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_LOG_ENTRY","features":[307]},{"name":"FSRTL_CHANGE_BACKING_TYPE","features":[307]},{"name":"FSRTL_COMMON_FCB_HEADER","features":[304,307,309]},{"name":"FSRTL_COMPARISON_RESULT","features":[307]},{"name":"FSRTL_DRIVER_BACKING_FLAG_USE_PAGE_FILE","features":[307]},{"name":"FSRTL_ECP_LOOKASIDE_FLAG_NONPAGED_POOL","features":[307]},{"name":"FSRTL_FAT_LEGAL","features":[307]},{"name":"FSRTL_FCB_HEADER_V0","features":[307]},{"name":"FSRTL_FCB_HEADER_V1","features":[307]},{"name":"FSRTL_FCB_HEADER_V2","features":[307]},{"name":"FSRTL_FCB_HEADER_V3","features":[307]},{"name":"FSRTL_FCB_HEADER_V4","features":[307]},{"name":"FSRTL_FIND_TC_CASE_SENSITIVE","features":[307]},{"name":"FSRTL_FLAG2_BYPASSIO_STREAM_PAUSED","features":[307]},{"name":"FSRTL_FLAG2_DO_MODIFIED_WRITE","features":[307]},{"name":"FSRTL_FLAG2_IS_PAGING_FILE","features":[307]},{"name":"FSRTL_FLAG2_PURGE_WHEN_MAPPED","features":[307]},{"name":"FSRTL_FLAG2_SUPPORTS_FILTER_CONTEXTS","features":[307]},{"name":"FSRTL_FLAG2_WRITABLE_USER_MAPPED_FILE","features":[307]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_EX","features":[307]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_SH","features":[307]},{"name":"FSRTL_FLAG_ADVANCED_HEADER","features":[307]},{"name":"FSRTL_FLAG_EOF_ADVANCE_ACTIVE","features":[307]},{"name":"FSRTL_FLAG_FILE_LENGTH_CHANGED","features":[307]},{"name":"FSRTL_FLAG_FILE_MODIFIED","features":[307]},{"name":"FSRTL_FLAG_LIMIT_MODIFIED_PAGES","features":[307]},{"name":"FSRTL_FLAG_USER_MAPPED_FILE","features":[307]},{"name":"FSRTL_HPFS_LEGAL","features":[307]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_1","features":[307]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_2","features":[307,303]},{"name":"FSRTL_NTFS_LEGAL","features":[307]},{"name":"FSRTL_OLE_LEGAL","features":[307]},{"name":"FSRTL_PER_FILEOBJECT_CONTEXT","features":[307,309]},{"name":"FSRTL_PER_FILE_CONTEXT","features":[304,307,309]},{"name":"FSRTL_PER_STREAM_CONTEXT","features":[304,307,309]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_INTEGRITY","features":[307]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_MUTUAL_AUTH","features":[307]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_PRIVACY","features":[307]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CONTAINER_AWARE","features":[307]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CSC_ENABLED","features":[307]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_DOMAIN_SVC_AWARE","features":[307]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_MAILSLOTS_SUPPORTED","features":[307]},{"name":"FSRTL_UNC_PROVIDER_REGISTRATION","features":[307]},{"name":"FSRTL_UNC_REGISTRATION_CURRENT_VERSION","features":[307]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0200","features":[307]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0201","features":[307]},{"name":"FSRTL_VIRTDISK_FULLY_ALLOCATED","features":[307]},{"name":"FSRTL_VIRTDISK_NO_DRIVE_LETTER","features":[307]},{"name":"FSRTL_VOLUME_BACKGROUND_FORMAT","features":[307]},{"name":"FSRTL_VOLUME_CHANGE_SIZE","features":[307]},{"name":"FSRTL_VOLUME_DISMOUNT","features":[307]},{"name":"FSRTL_VOLUME_DISMOUNT_FAILED","features":[307]},{"name":"FSRTL_VOLUME_FORCED_CLOSED","features":[307]},{"name":"FSRTL_VOLUME_INFO_MAKE_COMPAT","features":[307]},{"name":"FSRTL_VOLUME_LOCK","features":[307]},{"name":"FSRTL_VOLUME_LOCK_FAILED","features":[307]},{"name":"FSRTL_VOLUME_MOUNT","features":[307]},{"name":"FSRTL_VOLUME_NEEDS_CHKDSK","features":[307]},{"name":"FSRTL_VOLUME_PREPARING_EJECT","features":[307]},{"name":"FSRTL_VOLUME_UNLOCK","features":[307]},{"name":"FSRTL_VOLUME_WEARING_OUT","features":[307]},{"name":"FSRTL_VOLUME_WORM_NEAR_FULL","features":[307]},{"name":"FSRTL_WILD_CHARACTER","features":[307]},{"name":"FS_BPIO_INFO","features":[307]},{"name":"FS_BPIO_INPUT","features":[307,323]},{"name":"FS_FILTER_ACQUIRE_FOR_CC_FLUSH","features":[307]},{"name":"FS_FILTER_ACQUIRE_FOR_MOD_WRITE","features":[307]},{"name":"FS_FILTER_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[307]},{"name":"FS_FILTER_CALLBACKS","features":[304,307,305,303,306,308,309,310]},{"name":"FS_FILTER_CALLBACK_DATA","features":[304,307,305,303,306,308,309,310]},{"name":"FS_FILTER_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"FS_FILTER_QUERY_OPEN","features":[307]},{"name":"FS_FILTER_RELEASE_FOR_CC_FLUSH","features":[307]},{"name":"FS_FILTER_RELEASE_FOR_MOD_WRITE","features":[307]},{"name":"FS_FILTER_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_IMAGE_EXTENTS_ARE_NOT_RVA","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_ACCESS","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_WRITE","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_OUTPUT","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_ASYNC_PARALLEL_IO","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_DATA","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_IMAGE","features":[307]},{"name":"FS_FILTER_SECTION_SYNC_TYPE","features":[307]},{"name":"FS_FILTER_STREAM_FO_NOTIFICATION_TYPE","features":[307]},{"name":"FS_INFORMATION_CLASS","features":[307]},{"name":"FastIoIsNotPossible","features":[307]},{"name":"FastIoIsPossible","features":[307]},{"name":"FastIoIsQuestionable","features":[307]},{"name":"FileAccessInformation","features":[307]},{"name":"FileAlignmentInformation","features":[307]},{"name":"FileAllInformation","features":[307]},{"name":"FileAllocationInformation","features":[307]},{"name":"FileAlternateNameInformation","features":[307]},{"name":"FileAttributeTagInformation","features":[307]},{"name":"FileBasicInformation","features":[307]},{"name":"FileBothDirectoryInformation","features":[307]},{"name":"FileCaseSensitiveInformation","features":[307]},{"name":"FileCaseSensitiveInformationForceAccessCheck","features":[307]},{"name":"FileCompletionInformation","features":[307]},{"name":"FileCompressionInformation","features":[307]},{"name":"FileDesiredStorageClassInformation","features":[307]},{"name":"FileDirectoryInformation","features":[307]},{"name":"FileDispositionInformation","features":[307]},{"name":"FileDispositionInformationEx","features":[307]},{"name":"FileEaInformation","features":[307]},{"name":"FileEndOfFileInformation","features":[307]},{"name":"FileFsAttributeInformation","features":[307]},{"name":"FileFsControlInformation","features":[307]},{"name":"FileFsDataCopyInformation","features":[307]},{"name":"FileFsDeviceInformation","features":[307]},{"name":"FileFsDriverPathInformation","features":[307]},{"name":"FileFsFullSizeInformation","features":[307]},{"name":"FileFsFullSizeInformationEx","features":[307]},{"name":"FileFsLabelInformation","features":[307]},{"name":"FileFsMaximumInformation","features":[307]},{"name":"FileFsMetadataSizeInformation","features":[307]},{"name":"FileFsObjectIdInformation","features":[307]},{"name":"FileFsSectorSizeInformation","features":[307]},{"name":"FileFsSizeInformation","features":[307]},{"name":"FileFsVolumeFlagsInformation","features":[307]},{"name":"FileFsVolumeInformation","features":[307]},{"name":"FileFullDirectoryInformation","features":[307]},{"name":"FileFullEaInformation","features":[307]},{"name":"FileHardLinkFullIdInformation","features":[307]},{"name":"FileHardLinkInformation","features":[307]},{"name":"FileIdBothDirectoryInformation","features":[307]},{"name":"FileIdExtdBothDirectoryInformation","features":[307]},{"name":"FileIdExtdDirectoryInformation","features":[307]},{"name":"FileIdFullDirectoryInformation","features":[307]},{"name":"FileIdGlobalTxDirectoryInformation","features":[307]},{"name":"FileIdInformation","features":[307]},{"name":"FileInternalInformation","features":[307]},{"name":"FileIoCompletionNotificationInformation","features":[307]},{"name":"FileIoPriorityHintInformation","features":[307]},{"name":"FileIoStatusBlockRangeInformation","features":[307]},{"name":"FileIsRemoteDeviceInformation","features":[307]},{"name":"FileKnownFolderInformation","features":[307]},{"name":"FileLinkInformation","features":[307]},{"name":"FileLinkInformationBypassAccessCheck","features":[307]},{"name":"FileLinkInformationEx","features":[307]},{"name":"FileLinkInformationExBypassAccessCheck","features":[307]},{"name":"FileMailslotQueryInformation","features":[307]},{"name":"FileMailslotSetInformation","features":[307]},{"name":"FileMaximumInformation","features":[307]},{"name":"FileMemoryPartitionInformation","features":[307]},{"name":"FileModeInformation","features":[307]},{"name":"FileMoveClusterInformation","features":[307]},{"name":"FileNameInformation","features":[307]},{"name":"FileNamesInformation","features":[307]},{"name":"FileNetworkOpenInformation","features":[307]},{"name":"FileNetworkPhysicalNameInformation","features":[307]},{"name":"FileNormalizedNameInformation","features":[307]},{"name":"FileNumaNodeInformation","features":[307]},{"name":"FileObjectIdInformation","features":[307]},{"name":"FilePipeInformation","features":[307]},{"name":"FilePipeLocalInformation","features":[307]},{"name":"FilePipeRemoteInformation","features":[307]},{"name":"FilePositionInformation","features":[307]},{"name":"FileProcessIdsUsingFileInformation","features":[307]},{"name":"FileQuotaInformation","features":[307]},{"name":"FileRemoteProtocolInformation","features":[307]},{"name":"FileRenameInformation","features":[307]},{"name":"FileRenameInformationBypassAccessCheck","features":[307]},{"name":"FileRenameInformationEx","features":[307]},{"name":"FileRenameInformationExBypassAccessCheck","features":[307]},{"name":"FileReparsePointInformation","features":[307]},{"name":"FileReplaceCompletionInformation","features":[307]},{"name":"FileSfioReserveInformation","features":[307]},{"name":"FileSfioVolumeInformation","features":[307]},{"name":"FileShortNameInformation","features":[307]},{"name":"FileStandardInformation","features":[307]},{"name":"FileStandardLinkInformation","features":[307]},{"name":"FileStatInformation","features":[307]},{"name":"FileStatLxInformation","features":[307]},{"name":"FileStorageReserveIdInformation","features":[307]},{"name":"FileStreamInformation","features":[307]},{"name":"FileTrackingInformation","features":[307]},{"name":"FileUnusedInformation","features":[307]},{"name":"FileValidDataLengthInformation","features":[307]},{"name":"FileVolumeNameInformation","features":[307]},{"name":"FsRtlAcknowledgeEcp","features":[307]},{"name":"FsRtlAcquireFileExclusive","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlAddBaseMcbEntry","features":[307,303]},{"name":"FsRtlAddBaseMcbEntryEx","features":[307,303]},{"name":"FsRtlAddLargeMcbEntry","features":[304,307,303,309]},{"name":"FsRtlAddMcbEntry","features":[304,307,303,309]},{"name":"FsRtlAddToTunnelCache","features":[304,307,303,309]},{"name":"FsRtlAddToTunnelCacheEx","features":[304,307,303,309]},{"name":"FsRtlAllocateAePushLock","features":[304,307]},{"name":"FsRtlAllocateExtraCreateParameter","features":[307,303]},{"name":"FsRtlAllocateExtraCreateParameterFromLookasideList","features":[307,303]},{"name":"FsRtlAllocateExtraCreateParameterList","features":[304,307,303]},{"name":"FsRtlAllocateFileLock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlAllocateResource","features":[304,307,309]},{"name":"FsRtlAreNamesEqual","features":[307,303]},{"name":"FsRtlAreThereCurrentOrInProgressFileLocks","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlAreThereWaitingFileLocks","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlAreVolumeStartupApplicationsComplete","features":[307,303]},{"name":"FsRtlBalanceReads","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCancellableWaitForMultipleObjects","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCancellableWaitForSingleObject","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlChangeBackingFileObject","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCheckLockForOplockRequest","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCheckLockForReadAccess","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCheckLockForWriteAccess","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCheckOplock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCheckOplockEx","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCheckOplockEx2","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCheckUpperOplock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCopyRead","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCopyWrite","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCreateSectionForDataScan","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlCurrentBatchOplock","features":[307,303]},{"name":"FsRtlCurrentOplock","features":[307,303]},{"name":"FsRtlCurrentOplockH","features":[307,303]},{"name":"FsRtlDeleteExtraCreateParameterLookasideList","features":[307]},{"name":"FsRtlDeleteKeyFromTunnelCache","features":[304,307,303,309]},{"name":"FsRtlDeleteTunnelCache","features":[304,307,303,309]},{"name":"FsRtlDeregisterUncProvider","features":[307,303]},{"name":"FsRtlDismountComplete","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlDissectDbcs","features":[307,309]},{"name":"FsRtlDissectName","features":[307,303]},{"name":"FsRtlDoesDbcsContainWildCards","features":[307,303,309]},{"name":"FsRtlDoesNameContainWildCards","features":[307,303]},{"name":"FsRtlFastCheckLockForRead","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlFastCheckLockForWrite","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlFastUnlockAll","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlFastUnlockAllByKey","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlFastUnlockSingle","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlFindExtraCreateParameter","features":[304,307,303]},{"name":"FsRtlFindInTunnelCache","features":[304,307,303,309]},{"name":"FsRtlFindInTunnelCacheEx","features":[304,307,303,309]},{"name":"FsRtlFreeAePushLock","features":[307]},{"name":"FsRtlFreeExtraCreateParameter","features":[307]},{"name":"FsRtlFreeExtraCreateParameterList","features":[304,307]},{"name":"FsRtlFreeFileLock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlGetCurrentProcessLoaderList","features":[307,309]},{"name":"FsRtlGetEcpListFromIrp","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlGetFileSize","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlGetNextBaseMcbEntry","features":[307,303]},{"name":"FsRtlGetNextExtraCreateParameter","features":[304,307,303]},{"name":"FsRtlGetNextFileLock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlGetNextLargeMcbEntry","features":[304,307,303,309]},{"name":"FsRtlGetNextMcbEntry","features":[304,307,303,309]},{"name":"FsRtlGetSectorSizeInformation","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlGetSupportedFeatures","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlGetVirtualDiskNestingLevel","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlIncrementCcFastMdlReadWait","features":[307]},{"name":"FsRtlIncrementCcFastReadNoWait","features":[307]},{"name":"FsRtlIncrementCcFastReadNotPossible","features":[307]},{"name":"FsRtlIncrementCcFastReadResourceMiss","features":[307]},{"name":"FsRtlIncrementCcFastReadWait","features":[307]},{"name":"FsRtlInitExtraCreateParameterLookasideList","features":[307]},{"name":"FsRtlInitializeBaseMcb","features":[304,307]},{"name":"FsRtlInitializeBaseMcbEx","features":[304,307,303]},{"name":"FsRtlInitializeExtraCreateParameter","features":[304,307]},{"name":"FsRtlInitializeExtraCreateParameterList","features":[304,307,303]},{"name":"FsRtlInitializeFileLock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlInitializeLargeMcb","features":[304,307,303,309]},{"name":"FsRtlInitializeMcb","features":[304,307,303,309]},{"name":"FsRtlInitializeOplock","features":[307]},{"name":"FsRtlInitializeTunnelCache","features":[304,307,303,309]},{"name":"FsRtlInsertExtraCreateParameter","features":[304,307,303]},{"name":"FsRtlInsertPerFileContext","features":[304,307,303,309]},{"name":"FsRtlInsertPerFileObjectContext","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlInsertPerStreamContext","features":[304,307,303,309]},{"name":"FsRtlIs32BitProcess","features":[304,307,303]},{"name":"FsRtlIsDaxVolume","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlIsDbcsInExpression","features":[307,303,309]},{"name":"FsRtlIsEcpAcknowledged","features":[307,303]},{"name":"FsRtlIsEcpFromUserMode","features":[307,303]},{"name":"FsRtlIsExtentDangling","features":[307]},{"name":"FsRtlIsFatDbcsLegal","features":[307,303,309]},{"name":"FsRtlIsHpfsDbcsLegal","features":[307,303,309]},{"name":"FsRtlIsMobileOS","features":[307,303]},{"name":"FsRtlIsNameInExpression","features":[307,303]},{"name":"FsRtlIsNameInUnUpcasedExpression","features":[307,303]},{"name":"FsRtlIsNonEmptyDirectoryReparsePointAllowed","features":[307,303]},{"name":"FsRtlIsNtstatusExpected","features":[307,303]},{"name":"FsRtlIsPagingFile","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlIsSystemPagingFile","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlIssueDeviceIoControl","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlKernelFsControlFile","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlLogCcFlushError","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlLookupBaseMcbEntry","features":[307,303]},{"name":"FsRtlLookupLargeMcbEntry","features":[304,307,303,309]},{"name":"FsRtlLookupLastBaseMcbEntry","features":[307,303]},{"name":"FsRtlLookupLastBaseMcbEntryAndIndex","features":[307,303]},{"name":"FsRtlLookupLastLargeMcbEntry","features":[304,307,303,309]},{"name":"FsRtlLookupLastLargeMcbEntryAndIndex","features":[304,307,303,309]},{"name":"FsRtlLookupLastMcbEntry","features":[304,307,303,309]},{"name":"FsRtlLookupMcbEntry","features":[304,307,303,309]},{"name":"FsRtlLookupPerFileContext","features":[304,307,309]},{"name":"FsRtlLookupPerFileObjectContext","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlLookupPerStreamContextInternal","features":[304,307,303,309]},{"name":"FsRtlMdlReadCompleteDev","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlMdlReadDev","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlMdlReadEx","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlMdlWriteCompleteDev","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlMupGetProviderIdFromName","features":[307,303]},{"name":"FsRtlMupGetProviderInfoFromFileObject","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlNormalizeNtstatus","features":[307,303]},{"name":"FsRtlNotifyCleanup","features":[304,307,309]},{"name":"FsRtlNotifyCleanupAll","features":[304,307,309]},{"name":"FsRtlNotifyFilterChangeDirectory","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlNotifyFilterReportChange","features":[304,307,309]},{"name":"FsRtlNotifyFullChangeDirectory","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlNotifyFullReportChange","features":[304,307,309]},{"name":"FsRtlNotifyInitializeSync","features":[304,307]},{"name":"FsRtlNotifyUninitializeSync","features":[304,307]},{"name":"FsRtlNotifyVolumeEvent","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlNotifyVolumeEventEx","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlNumberOfRunsInBaseMcb","features":[307]},{"name":"FsRtlNumberOfRunsInLargeMcb","features":[304,307,303,309]},{"name":"FsRtlNumberOfRunsInMcb","features":[304,307,303,309]},{"name":"FsRtlOplockBreakH","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlOplockBreakH2","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlOplockBreakToNone","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlOplockBreakToNoneEx","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlOplockFsctrl","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlOplockFsctrlEx","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlOplockGetAnyBreakOwnerProcess","features":[304,307]},{"name":"FsRtlOplockIsFastIoPossible","features":[307,303]},{"name":"FsRtlOplockIsSharedRequest","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlOplockKeysEqual","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlPostPagingFileStackOverflow","features":[304,307,303,309]},{"name":"FsRtlPostStackOverflow","features":[304,307,303,309]},{"name":"FsRtlPrepareMdlWriteDev","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlPrepareMdlWriteEx","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlPrepareToReuseEcp","features":[307]},{"name":"FsRtlPrivateLock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlProcessFileLock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlQueryCachedVdl","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlQueryInformationFile","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlQueryKernelEaFile","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlQueryMaximumVirtualDiskNestingLevel","features":[307]},{"name":"FsRtlRegisterFileSystemFilterCallbacks","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlRegisterUncProvider","features":[307,303]},{"name":"FsRtlRegisterUncProviderEx","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlRegisterUncProviderEx2","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlReleaseFile","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlRemoveBaseMcbEntry","features":[307,303]},{"name":"FsRtlRemoveDotsFromPath","features":[307,303]},{"name":"FsRtlRemoveExtraCreateParameter","features":[304,307,303]},{"name":"FsRtlRemoveLargeMcbEntry","features":[304,307,303,309]},{"name":"FsRtlRemoveMcbEntry","features":[304,307,303,309]},{"name":"FsRtlRemovePerFileContext","features":[304,307,309]},{"name":"FsRtlRemovePerFileObjectContext","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlRemovePerStreamContext","features":[304,307,303,309]},{"name":"FsRtlResetBaseMcb","features":[307]},{"name":"FsRtlResetLargeMcb","features":[304,307,303,309]},{"name":"FsRtlSetDriverBacking","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlSetEcpListIntoIrp","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlSetKernelEaFile","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlSplitBaseMcb","features":[307,303]},{"name":"FsRtlSplitLargeMcb","features":[304,307,303,309]},{"name":"FsRtlTeardownPerFileContexts","features":[307]},{"name":"FsRtlTeardownPerStreamContexts","features":[304,307,303,309]},{"name":"FsRtlTruncateBaseMcb","features":[307]},{"name":"FsRtlTruncateLargeMcb","features":[304,307,303,309]},{"name":"FsRtlTruncateMcb","features":[304,307,303,309]},{"name":"FsRtlUninitializeBaseMcb","features":[307]},{"name":"FsRtlUninitializeFileLock","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlUninitializeLargeMcb","features":[304,307,303,309]},{"name":"FsRtlUninitializeMcb","features":[304,307,303,309]},{"name":"FsRtlUninitializeOplock","features":[307]},{"name":"FsRtlUpdateDiskCounters","features":[307]},{"name":"FsRtlUpperOplockFsctrl","features":[304,307,305,303,306,308,309,310]},{"name":"FsRtlValidateReparsePointBuffer","features":[307,303]},{"name":"FsRtlVolumeDeviceToCorrelationId","features":[304,307,305,303,306,308,309,310]},{"name":"GCR_ALLOW_LM","features":[307]},{"name":"GCR_ALLOW_NO_TARGET","features":[307]},{"name":"GCR_ALLOW_NTLM","features":[307]},{"name":"GCR_MACHINE_CREDENTIAL","features":[307]},{"name":"GCR_NTLM3_PARMS","features":[307]},{"name":"GCR_TARGET_INFO","features":[307]},{"name":"GCR_USE_OEM_SET","features":[307]},{"name":"GCR_USE_OWF_PASSWORD","features":[307]},{"name":"GCR_VSM_PROTECTED_PASSWORD","features":[307]},{"name":"GENERATE_CLIENT_CHALLENGE","features":[307]},{"name":"GENERATE_NAME_CONTEXT","features":[307,303]},{"name":"GHOSTED_FILE_EXTENT","features":[307]},{"name":"GUID_ECP_ATOMIC_CREATE","features":[307]},{"name":"GUID_ECP_CLOUDFILES_ATTRIBUTION","features":[307]},{"name":"GUID_ECP_CREATE_REDIRECTION","features":[307]},{"name":"GUID_ECP_CSV_DOWN_LEVEL_OPEN","features":[307]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION","features":[307]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[307]},{"name":"GUID_ECP_CSV_SET_HANDLE_PROPERTIES","features":[307]},{"name":"GUID_ECP_DUAL_OPLOCK_KEY","features":[307]},{"name":"GUID_ECP_IO_DEVICE_HINT","features":[307]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE","features":[307]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE_VERSION","features":[307]},{"name":"GUID_ECP_NETWORK_OPEN_CONTEXT","features":[307]},{"name":"GUID_ECP_NFS_OPEN","features":[307]},{"name":"GUID_ECP_OPEN_PARAMETERS","features":[307]},{"name":"GUID_ECP_OPLOCK_KEY","features":[307]},{"name":"GUID_ECP_PREFETCH_OPEN","features":[307]},{"name":"GUID_ECP_QUERY_ON_CREATE","features":[307]},{"name":"GUID_ECP_RKF_BYPASS","features":[307]},{"name":"GUID_ECP_SRV_OPEN","features":[307]},{"name":"GetSecurityUserInfo","features":[307,303,324]},{"name":"GreaterThan","features":[307]},{"name":"HEAP_CLASS_0","features":[307]},{"name":"HEAP_CLASS_1","features":[307]},{"name":"HEAP_CLASS_2","features":[307]},{"name":"HEAP_CLASS_3","features":[307]},{"name":"HEAP_CLASS_4","features":[307]},{"name":"HEAP_CLASS_5","features":[307]},{"name":"HEAP_CLASS_6","features":[307]},{"name":"HEAP_CLASS_7","features":[307]},{"name":"HEAP_CLASS_8","features":[307]},{"name":"HEAP_CLASS_MASK","features":[307]},{"name":"HEAP_CREATE_ALIGN_16","features":[307]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[307]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[307]},{"name":"HEAP_CREATE_HARDENED","features":[307]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[307]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[307]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[307]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[307]},{"name":"HEAP_GLOBAL_TAG","features":[307]},{"name":"HEAP_GROWABLE","features":[307]},{"name":"HEAP_MAXIMUM_TAG","features":[307]},{"name":"HEAP_MEMORY_INFO_CLASS","features":[307]},{"name":"HEAP_NO_SERIALIZE","features":[307]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[307]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[307]},{"name":"HEAP_SETTABLE_USER_FLAG1","features":[307]},{"name":"HEAP_SETTABLE_USER_FLAG2","features":[307]},{"name":"HEAP_SETTABLE_USER_FLAG3","features":[307]},{"name":"HEAP_SETTABLE_USER_FLAGS","features":[307]},{"name":"HEAP_SETTABLE_USER_VALUE","features":[307]},{"name":"HEAP_TAG_SHIFT","features":[307]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[307]},{"name":"HEAP_ZERO_MEMORY","features":[307]},{"name":"HeapMemoryBasicInformation","features":[307]},{"name":"INVALID_PROCESSOR_INDEX","features":[307]},{"name":"IOCTL_LMR_ARE_FILE_OBJECTS_ON_SAME_SERVER","features":[307]},{"name":"IOCTL_REDIR_QUERY_PATH","features":[307]},{"name":"IOCTL_REDIR_QUERY_PATH_EX","features":[307]},{"name":"IOCTL_VOLSNAP_FLUSH_AND_HOLD_WRITES","features":[307]},{"name":"IO_CD_ROM_INCREMENT","features":[307]},{"name":"IO_CREATE_STREAM_FILE_LITE","features":[307]},{"name":"IO_CREATE_STREAM_FILE_OPTIONS","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CREATE_STREAM_FILE_RAISE_ON_ERROR","features":[307]},{"name":"IO_DEVICE_HINT_ECP_CONTEXT","features":[304,307,305,303,306,308,309,310]},{"name":"IO_DISK_INCREMENT","features":[307]},{"name":"IO_FILE_OBJECT_NON_PAGED_POOL_CHARGE","features":[307]},{"name":"IO_FILE_OBJECT_PAGED_POOL_CHARGE","features":[307]},{"name":"IO_IGNORE_READONLY_ATTRIBUTE","features":[307]},{"name":"IO_MAILSLOT_INCREMENT","features":[307]},{"name":"IO_MM_PAGING_FILE","features":[307]},{"name":"IO_NAMED_PIPE_INCREMENT","features":[307]},{"name":"IO_NETWORK_INCREMENT","features":[307]},{"name":"IO_NO_INCREMENT","features":[307]},{"name":"IO_OPEN_PAGING_FILE","features":[307]},{"name":"IO_OPEN_TARGET_DIRECTORY","features":[307]},{"name":"IO_PRIORITY_INFO","features":[304,307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_0","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_1","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_2","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_3","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_4","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_5","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_6","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_7","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_8","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_9","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_A","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_B","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_C","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_D","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_E","features":[307]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_F","features":[307]},{"name":"IO_REPARSE_TAG_ACTIVISION_HSM","features":[307]},{"name":"IO_REPARSE_TAG_ADA_HSM","features":[307]},{"name":"IO_REPARSE_TAG_ADOBE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_ALERTBOOT","features":[307]},{"name":"IO_REPARSE_TAG_ALTIRIS_HSM","features":[307]},{"name":"IO_REPARSE_TAG_APPXSTRM","features":[307]},{"name":"IO_REPARSE_TAG_ARCO_BACKUP","features":[307]},{"name":"IO_REPARSE_TAG_ARKIVIO","features":[307]},{"name":"IO_REPARSE_TAG_AURISTOR_FS","features":[307]},{"name":"IO_REPARSE_TAG_AUTN_HSM","features":[307]},{"name":"IO_REPARSE_TAG_BRIDGEHEAD_HSM","features":[307]},{"name":"IO_REPARSE_TAG_C2CSYSTEMS_HSM","features":[307]},{"name":"IO_REPARSE_TAG_CARINGO_HSM","features":[307]},{"name":"IO_REPARSE_TAG_CARROLL_HSM","features":[307]},{"name":"IO_REPARSE_TAG_CITRIX_PM","features":[307]},{"name":"IO_REPARSE_TAG_COMMVAULT","features":[307]},{"name":"IO_REPARSE_TAG_COMMVAULT_HSM","features":[307]},{"name":"IO_REPARSE_TAG_COMTRADE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_CTERA_HSM","features":[307]},{"name":"IO_REPARSE_TAG_DATAFIRST_HSM","features":[307]},{"name":"IO_REPARSE_TAG_DATAGLOBAL_HSM","features":[307]},{"name":"IO_REPARSE_TAG_DATASTOR_SIS","features":[307]},{"name":"IO_REPARSE_TAG_DFM","features":[307]},{"name":"IO_REPARSE_TAG_DOR_HSM","features":[307]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_SIS","features":[307]},{"name":"IO_REPARSE_TAG_DRIVE_EXTENDER","features":[307]},{"name":"IO_REPARSE_TAG_DROPBOX_HSM","features":[307]},{"name":"IO_REPARSE_TAG_EASEFILTER_HSM","features":[307]},{"name":"IO_REPARSE_TAG_EASEVAULT_HSM","features":[307]},{"name":"IO_REPARSE_TAG_EDSI_HSM","features":[307]},{"name":"IO_REPARSE_TAG_ELTAN_HSM","features":[307]},{"name":"IO_REPARSE_TAG_EMC_HSM","features":[307]},{"name":"IO_REPARSE_TAG_ENIGMA_HSM","features":[307]},{"name":"IO_REPARSE_TAG_FILTER_MANAGER","features":[307]},{"name":"IO_REPARSE_TAG_GLOBAL360_HSM","features":[307]},{"name":"IO_REPARSE_TAG_GOOGLE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_GRAU_DATASTORAGE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_HDS_HCP_HSM","features":[307]},{"name":"IO_REPARSE_TAG_HDS_HSM","features":[307]},{"name":"IO_REPARSE_TAG_HERMES_HSM","features":[307]},{"name":"IO_REPARSE_TAG_HP_BACKUP","features":[307]},{"name":"IO_REPARSE_TAG_HP_DATA_PROTECT","features":[307]},{"name":"IO_REPARSE_TAG_HP_HSM","features":[307]},{"name":"IO_REPARSE_TAG_HSAG_HSM","features":[307]},{"name":"IO_REPARSE_TAG_HUBSTOR_HSM","features":[307]},{"name":"IO_REPARSE_TAG_IFSTEST_CONGRUENT","features":[307]},{"name":"IO_REPARSE_TAG_IIS_CACHE","features":[307]},{"name":"IO_REPARSE_TAG_IMANAGE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_INTERCOPE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_ITSTATION","features":[307]},{"name":"IO_REPARSE_TAG_KOM_NETWORKS_HSM","features":[307]},{"name":"IO_REPARSE_TAG_LX_BLK","features":[307]},{"name":"IO_REPARSE_TAG_LX_CHR","features":[307]},{"name":"IO_REPARSE_TAG_LX_FIFO","features":[307]},{"name":"IO_REPARSE_TAG_LX_SYMLINK","features":[307]},{"name":"IO_REPARSE_TAG_MAGINATICS_RDR","features":[307]},{"name":"IO_REPARSE_TAG_MAXISCALE_HSM","features":[307]},{"name":"IO_REPARSE_TAG_MEMORY_TECH_HSM","features":[307]},{"name":"IO_REPARSE_TAG_MIMOSA_HSM","features":[307]},{"name":"IO_REPARSE_TAG_MOONWALK_HSM","features":[307]},{"name":"IO_REPARSE_TAG_MTALOS","features":[307]},{"name":"IO_REPARSE_TAG_NEUSHIELD","features":[307]},{"name":"IO_REPARSE_TAG_NEXSAN_HSM","features":[307]},{"name":"IO_REPARSE_TAG_NIPPON_HSM","features":[307]},{"name":"IO_REPARSE_TAG_NVIDIA_UNIONFS","features":[307]},{"name":"IO_REPARSE_TAG_OPENAFS_DFS","features":[307]},{"name":"IO_REPARSE_TAG_OSR_SAMPLE","features":[307]},{"name":"IO_REPARSE_TAG_OVERTONE","features":[307]},{"name":"IO_REPARSE_TAG_POINTSOFT_HSM","features":[307]},{"name":"IO_REPARSE_TAG_QI_TECH_HSM","features":[307]},{"name":"IO_REPARSE_TAG_QUADDRA_HSM","features":[307]},{"name":"IO_REPARSE_TAG_QUEST_HSM","features":[307]},{"name":"IO_REPARSE_TAG_REDSTOR_HSM","features":[307]},{"name":"IO_REPARSE_TAG_RIVERBED_HSM","features":[307]},{"name":"IO_REPARSE_TAG_SER_HSM","features":[307]},{"name":"IO_REPARSE_TAG_SHX_BACKUP","features":[307]},{"name":"IO_REPARSE_TAG_SOLUTIONSOFT","features":[307]},{"name":"IO_REPARSE_TAG_SONY_HSM","features":[307]},{"name":"IO_REPARSE_TAG_SPHARSOFT","features":[307]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM","features":[307]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM2","features":[307]},{"name":"IO_REPARSE_TAG_TSINGHUA_UNIVERSITY_RESEARCH","features":[307]},{"name":"IO_REPARSE_TAG_UTIXO_HSM","features":[307]},{"name":"IO_REPARSE_TAG_VALID_VALUES","features":[307]},{"name":"IO_REPARSE_TAG_VMWARE_PM","features":[307]},{"name":"IO_REPARSE_TAG_WATERFORD","features":[307]},{"name":"IO_REPARSE_TAG_WISDATA_HSM","features":[307]},{"name":"IO_REPARSE_TAG_ZLTI_HSM","features":[307]},{"name":"IO_STOP_ON_SYMLINK","features":[307]},{"name":"IO_STOP_ON_SYMLINK_FILTER_ECP_v0","features":[307]},{"name":"IoAcquireVpbSpinLock","features":[307]},{"name":"IoApplyPriorityInfoThread","features":[304,307,303]},{"name":"IoCheckDesiredAccess","features":[307,303]},{"name":"IoCheckEaBufferValidity","features":[307,303]},{"name":"IoCheckFunctionAccess","features":[307,303]},{"name":"IoCheckQuerySetFileInformation","features":[307,303]},{"name":"IoCheckQuerySetVolumeInformation","features":[307,303]},{"name":"IoCheckQuotaBufferValidity","features":[307,303,306]},{"name":"IoClearFsTrackOffsetState","features":[304,307,305,303,306,308,309,310]},{"name":"IoCreateStreamFileObject","features":[304,307,305,303,306,308,309,310]},{"name":"IoCreateStreamFileObjectEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoCreateStreamFileObjectEx2","features":[304,307,305,303,306,308,309,310]},{"name":"IoCreateStreamFileObjectLite","features":[304,307,305,303,306,308,309,310]},{"name":"IoEnumerateDeviceObjectList","features":[304,307,305,303,306,308,309,310]},{"name":"IoEnumerateRegisteredFiltersList","features":[304,307,305,303,306,308,309,310]},{"name":"IoFastQueryNetworkAttributes","features":[304,307,303,308]},{"name":"IoGetAttachedDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetBaseFileSystemDeviceObject","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDeviceAttachmentBaseRef","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDeviceToVerify","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDiskDeviceObject","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetFsTrackOffsetState","features":[304,307,305,303,306,308,323,309,310]},{"name":"IoGetLowerDeviceObject","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetOplockKeyContext","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetOplockKeyContextEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetRequestorProcess","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetRequestorProcessId","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetRequestorSessionId","features":[304,307,305,303,306,308,309,310]},{"name":"IoIrpHasFsTrackOffsetExtensionType","features":[304,307,305,303,306,308,309,310]},{"name":"IoIsOperationSynchronous","features":[304,307,305,303,306,308,309,310]},{"name":"IoIsSystemThread","features":[304,307,303]},{"name":"IoIsValidNameGraftingBuffer","features":[304,307,305,303,306,308,309,310]},{"name":"IoPageRead","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueryFileDosDeviceName","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueryFileInformation","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueryVolumeInformation","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueueThreadIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterFileSystem","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterFsRegistrationChange","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterFsRegistrationChangeMountAware","features":[304,307,305,303,306,308,309,310]},{"name":"IoReleaseVpbSpinLock","features":[307]},{"name":"IoReplaceFileObjectName","features":[304,307,305,303,306,308,309,310]},{"name":"IoRequestDeviceRemovalForReset","features":[304,307,305,303,306,308,309,310]},{"name":"IoRetrievePriorityInfo","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetDeviceToVerify","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetFsTrackOffsetState","features":[304,307,305,303,306,308,323,309,310]},{"name":"IoSetInformation","features":[304,307,305,303,306,308,309,310]},{"name":"IoSynchronousPageWrite","features":[304,307,305,303,306,308,309,310]},{"name":"IoThreadToProcess","features":[304,307]},{"name":"IoUnregisterFileSystem","features":[304,307,305,303,306,308,309,310]},{"name":"IoUnregisterFsRegistrationChange","features":[304,307,305,303,306,308,309,310]},{"name":"IoVerifyVolume","features":[304,307,305,303,306,308,309,310]},{"name":"KAPC_STATE","features":[307,303,309]},{"name":"KeAcquireQueuedSpinLock","features":[304,307]},{"name":"KeAcquireSpinLockRaiseToSynch","features":[307]},{"name":"KeAttachProcess","features":[304,307]},{"name":"KeDetachProcess","features":[307]},{"name":"KeInitializeMutant","features":[304,307,303,309]},{"name":"KeInitializeQueue","features":[304,307,303,309]},{"name":"KeInsertHeadQueue","features":[304,307,303,309]},{"name":"KeInsertQueue","features":[304,307,303,309]},{"name":"KeReadStateMutant","features":[304,307,303,309]},{"name":"KeReadStateQueue","features":[304,307,303,309]},{"name":"KeReleaseMutant","features":[304,307,303,309]},{"name":"KeReleaseQueuedSpinLock","features":[304,307]},{"name":"KeRemoveQueue","features":[304,307,303,309]},{"name":"KeRemoveQueueEx","features":[304,307,303,309]},{"name":"KeRundownQueue","features":[304,307,303,309]},{"name":"KeSetIdealProcessorThread","features":[304,307]},{"name":"KeSetKernelStackSwapEnable","features":[307,303]},{"name":"KeStackAttachProcess","features":[304,307,303,309]},{"name":"KeTryToAcquireQueuedSpinLock","features":[304,307]},{"name":"KeUnstackDetachProcess","features":[307,303,309]},{"name":"KnownFolderDesktop","features":[307]},{"name":"KnownFolderDocuments","features":[307]},{"name":"KnownFolderDownloads","features":[307]},{"name":"KnownFolderMax","features":[307]},{"name":"KnownFolderMusic","features":[307]},{"name":"KnownFolderNone","features":[307]},{"name":"KnownFolderOther","features":[307]},{"name":"KnownFolderPictures","features":[307]},{"name":"KnownFolderVideos","features":[307]},{"name":"LARGE_MCB","features":[304,307,303,309]},{"name":"LCN_CHECKSUM_VALID","features":[307]},{"name":"LCN_WEAK_REFERENCE_BUFFER","features":[307]},{"name":"LCN_WEAK_REFERENCE_CREATE_INPUT_BUFFER","features":[307]},{"name":"LCN_WEAK_REFERENCE_VALID","features":[307]},{"name":"LINK_TRACKING_INFORMATION","features":[307]},{"name":"LINK_TRACKING_INFORMATION_TYPE","features":[307]},{"name":"LX_FILE_CASE_SENSITIVE_DIR","features":[307]},{"name":"LX_FILE_METADATA_DEVICE_ID_EA_NAME","features":[307]},{"name":"LX_FILE_METADATA_GID_EA_NAME","features":[307]},{"name":"LX_FILE_METADATA_HAS_DEVICE_ID","features":[307]},{"name":"LX_FILE_METADATA_HAS_GID","features":[307]},{"name":"LX_FILE_METADATA_HAS_MODE","features":[307]},{"name":"LX_FILE_METADATA_HAS_UID","features":[307]},{"name":"LX_FILE_METADATA_MODE_EA_NAME","features":[307]},{"name":"LX_FILE_METADATA_UID_EA_NAME","features":[307]},{"name":"LessThan","features":[307]},{"name":"MAP_DISABLE_PAGEFAULT_CLUSTERING","features":[307]},{"name":"MAP_HIGH_PRIORITY","features":[307]},{"name":"MAP_NO_READ","features":[307]},{"name":"MAP_WAIT","features":[307]},{"name":"MAXIMUM_LEADBYTES","features":[307]},{"name":"MAX_UNICODE_STACK_BUFFER_LENGTH","features":[307]},{"name":"MCB","features":[304,307,303,309]},{"name":"MCB_FLAG_RAISE_ON_ALLOCATION_FAILURE","features":[307]},{"name":"MEMORY_INFORMATION_CLASS","features":[307]},{"name":"MEMORY_RANGE_ENTRY","features":[307]},{"name":"MFT_ENUM_DATA","features":[307]},{"name":"MMFLUSH_TYPE","features":[307]},{"name":"MM_FORCE_CLOSED_DATA","features":[307]},{"name":"MM_FORCE_CLOSED_IMAGE","features":[307]},{"name":"MM_FORCE_CLOSED_LATER_OK","features":[307]},{"name":"MM_IS_FILE_SECTION_ACTIVE_DATA","features":[307]},{"name":"MM_IS_FILE_SECTION_ACTIVE_IMAGE","features":[307]},{"name":"MM_IS_FILE_SECTION_ACTIVE_USER","features":[307]},{"name":"MM_PREFETCH_FLAGS","features":[307]},{"name":"MSV1_0_AVID","features":[307]},{"name":"MSV1_0_ENUMUSERS_REQUEST","features":[307,324]},{"name":"MSV1_0_ENUMUSERS_RESPONSE","features":[307,303,324]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST","features":[307,303,324]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST_V1","features":[307,303,324]},{"name":"MSV1_0_GETCHALLENRESP_RESPONSE","features":[307,303,324,309]},{"name":"MSV1_0_GETUSERINFO_REQUEST","features":[307,303,324]},{"name":"MSV1_0_GETUSERINFO_RESPONSE","features":[307,303,324]},{"name":"MSV1_0_LM20_CHALLENGE_REQUEST","features":[307,324]},{"name":"MSV1_0_LM20_CHALLENGE_RESPONSE","features":[307,324]},{"name":"MakeSignature","features":[307]},{"name":"MapSecurityError","features":[307,303]},{"name":"MemoryBasicInformation","features":[307]},{"name":"MemoryType64KPage","features":[307]},{"name":"MemoryTypeCustom","features":[307]},{"name":"MemoryTypeHugePage","features":[307]},{"name":"MemoryTypeLargePage","features":[307]},{"name":"MemoryTypeMax","features":[307]},{"name":"MemoryTypeNonPaged","features":[307]},{"name":"MemoryTypePaged","features":[307]},{"name":"MmCanFileBeTruncated","features":[304,307,303]},{"name":"MmDoesFileHaveUserWritableReferences","features":[304,307]},{"name":"MmFlushForDelete","features":[307]},{"name":"MmFlushForWrite","features":[307]},{"name":"MmFlushImageSection","features":[304,307,303]},{"name":"MmForceSectionClosed","features":[304,307,303]},{"name":"MmForceSectionClosedEx","features":[304,307,303]},{"name":"MmGetMaximumFileSectionSize","features":[307]},{"name":"MmIsFileSectionActive","features":[304,307,303]},{"name":"MmIsRecursiveIoFault","features":[307,303]},{"name":"MmMdlPagesAreZero","features":[304,307]},{"name":"MmPrefetchPages","features":[304,307,305,303,306,322,308,309,310]},{"name":"MmSetAddressRangeModified","features":[307,303]},{"name":"MsvAvChannelBindings","features":[307]},{"name":"MsvAvDnsComputerName","features":[307]},{"name":"MsvAvDnsDomainName","features":[307]},{"name":"MsvAvDnsTreeName","features":[307]},{"name":"MsvAvEOL","features":[307]},{"name":"MsvAvFlags","features":[307]},{"name":"MsvAvNbComputerName","features":[307]},{"name":"MsvAvNbDomainName","features":[307]},{"name":"MsvAvRestrictions","features":[307]},{"name":"MsvAvTargetName","features":[307]},{"name":"MsvAvTimestamp","features":[307]},{"name":"NETWORK_APP_INSTANCE_ECP_CONTEXT","features":[307]},{"name":"NETWORK_APP_INSTANCE_VERSION_ECP_CONTEXT","features":[307]},{"name":"NETWORK_OPEN_ECP_CONTEXT","features":[307]},{"name":"NETWORK_OPEN_ECP_CONTEXT_V0","features":[307]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_COLLAPSING","features":[307]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_DURABILITY","features":[307]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_OPLOCKS","features":[307]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_BUFFERED_SYNCHRONOUS_IO_HACK","features":[307]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_MAX_EOF_HACK","features":[307]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_REQ_MUTUAL_AUTH","features":[307]},{"name":"NETWORK_OPEN_ECP_OUT_FLAG_RET_MUTUAL_AUTH","features":[307]},{"name":"NETWORK_OPEN_INTEGRITY_QUALIFIER","features":[307]},{"name":"NETWORK_OPEN_LOCATION_QUALIFIER","features":[307]},{"name":"NFS_OPEN_ECP_CONTEXT","features":[307,303,316]},{"name":"NLSTABLEINFO","features":[307]},{"name":"NO_8DOT3_NAME_PRESENT","features":[307]},{"name":"NTCREATEFILE_CREATE_DISPOSITION","features":[307]},{"name":"NTCREATEFILE_CREATE_OPTIONS","features":[307]},{"name":"NetworkOpenIntegrityAny","features":[307]},{"name":"NetworkOpenIntegrityEncrypted","features":[307]},{"name":"NetworkOpenIntegrityMaximum","features":[307]},{"name":"NetworkOpenIntegrityNone","features":[307]},{"name":"NetworkOpenIntegritySigned","features":[307]},{"name":"NetworkOpenLocationAny","features":[307]},{"name":"NetworkOpenLocationLoopback","features":[307]},{"name":"NetworkOpenLocationRemote","features":[307]},{"name":"NotifyTypeCreate","features":[307]},{"name":"NotifyTypeRetired","features":[307]},{"name":"NtAccessCheckAndAuditAlarm","features":[307,303,306]},{"name":"NtAccessCheckByTypeAndAuditAlarm","features":[307,303,306]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarm","features":[307,303,306]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarmByHandle","features":[307,303,306]},{"name":"NtAdjustGroupsToken","features":[307,303,306]},{"name":"NtAdjustPrivilegesToken","features":[307,303,306]},{"name":"NtAllocateVirtualMemory","features":[307,303]},{"name":"NtCancelIoFileEx","features":[307,303,308]},{"name":"NtCloseObjectAuditAlarm","features":[307,303]},{"name":"NtCreateFile","features":[304,307,303,322,308]},{"name":"NtCreateSection","features":[304,307,303]},{"name":"NtCreateSectionEx","features":[304,307,303,321]},{"name":"NtDeleteObjectAuditAlarm","features":[307,303]},{"name":"NtDuplicateToken","features":[304,307,303,306]},{"name":"NtFilterToken","features":[307,303,306]},{"name":"NtFlushBuffersFileEx","features":[307,303,308]},{"name":"NtFreeVirtualMemory","features":[307,303]},{"name":"NtFsControlFile","features":[307,303,308]},{"name":"NtImpersonateAnonymousToken","features":[307,303]},{"name":"NtLockFile","features":[307,303,308]},{"name":"NtOpenFile","features":[304,307,303,308]},{"name":"NtOpenObjectAuditAlarm","features":[307,303,306]},{"name":"NtOpenProcessToken","features":[307,303]},{"name":"NtOpenProcessTokenEx","features":[307,303]},{"name":"NtOpenThreadToken","features":[307,303]},{"name":"NtOpenThreadTokenEx","features":[307,303]},{"name":"NtPrivilegeCheck","features":[307,303,306]},{"name":"NtPrivilegeObjectAuditAlarm","features":[307,303,306]},{"name":"NtPrivilegedServiceAuditAlarm","features":[307,303,306]},{"name":"NtQueryDirectoryFile","features":[307,303,308]},{"name":"NtQueryDirectoryFileEx","features":[307,303,308]},{"name":"NtQueryInformationByName","features":[304,307,303,308]},{"name":"NtQueryInformationFile","features":[307,303,308]},{"name":"NtQueryInformationToken","features":[307,303,306]},{"name":"NtQueryQuotaInformationFile","features":[307,303,308]},{"name":"NtQuerySecurityObject","features":[307,303,306]},{"name":"NtQueryVirtualMemory","features":[307,303]},{"name":"NtQueryVolumeInformationFile","features":[307,303,308]},{"name":"NtReadFile","features":[307,303,308]},{"name":"NtSetInformationFile","features":[307,303,308]},{"name":"NtSetInformationToken","features":[307,303,306]},{"name":"NtSetInformationVirtualMemory","features":[307,303]},{"name":"NtSetQuotaInformationFile","features":[307,303,308]},{"name":"NtSetSecurityObject","features":[307,303,306]},{"name":"NtSetVolumeInformationFile","features":[307,303,308]},{"name":"NtUnlockFile","features":[307,303,308]},{"name":"NtWriteFile","features":[307,303,308]},{"name":"NtfsLinkTrackingInformation","features":[307]},{"name":"OPEN_REPARSE_LIST","features":[307,309]},{"name":"OPEN_REPARSE_LIST_ENTRY","features":[307,309]},{"name":"OPEN_REPARSE_POINT_OVERRIDE_CREATE_OPTION","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_ALWAYS","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_EXISTS","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_NOT_EXISTS","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT_ALWAYS","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT_ALWAYS","features":[307]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_FINAL_COMPONENT","features":[307]},{"name":"OPEN_REPARSE_POINT_RETURN_REPARSE_DATA_BUFFER","features":[307]},{"name":"OPEN_REPARSE_POINT_TAG_ENCOUNTERED","features":[307]},{"name":"OPEN_REPARSE_POINT_VERSION_EX","features":[307]},{"name":"OPLOCK_FLAG_BACK_OUT_ATOMIC_OPLOCK","features":[307]},{"name":"OPLOCK_FLAG_BREAKING_FOR_SHARING_VIOLATION","features":[307]},{"name":"OPLOCK_FLAG_CLOSING_DELETE_ON_CLOSE","features":[307]},{"name":"OPLOCK_FLAG_COMPLETE_IF_OPLOCKED","features":[307]},{"name":"OPLOCK_FLAG_IGNORE_OPLOCK_KEYS","features":[307]},{"name":"OPLOCK_FLAG_OPLOCK_KEY_CHECK_ONLY","features":[307]},{"name":"OPLOCK_FLAG_PARENT_OBJECT","features":[307]},{"name":"OPLOCK_FLAG_REMOVING_FILE_OR_LINK","features":[307]},{"name":"OPLOCK_FSCTRL_FLAG_ALL_KEYS_MATCH","features":[307]},{"name":"OPLOCK_KEY_CONTEXT","features":[307]},{"name":"OPLOCK_KEY_ECP_CONTEXT","features":[307]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_INTERIM_TIMEOUT","features":[307]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_TERMINATED","features":[307]},{"name":"OPLOCK_NOTIFY_PARAMS","features":[304,307,305,303,306,308,309,310]},{"name":"OPLOCK_NOTIFY_REASON","features":[307]},{"name":"OPLOCK_UPPER_FLAG_CHECK_NO_BREAK","features":[307]},{"name":"OPLOCK_UPPER_FLAG_NOTIFY_REFRESH_READ","features":[307]},{"name":"ObInsertObject","features":[304,307,305,303,306]},{"name":"ObIsKernelHandle","features":[307,303]},{"name":"ObMakeTemporaryObject","features":[307]},{"name":"ObOpenObjectByPointer","features":[304,307,305,303,306]},{"name":"ObOpenObjectByPointerWithTag","features":[304,307,305,303,306]},{"name":"ObQueryNameString","features":[304,307,303]},{"name":"ObQueryObjectAuditingByHandle","features":[307,303]},{"name":"PACQUIRE_FOR_LAZY_WRITE","features":[307,303]},{"name":"PACQUIRE_FOR_LAZY_WRITE_EX","features":[307,303]},{"name":"PACQUIRE_FOR_READ_AHEAD","features":[307,303]},{"name":"PALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[307,303]},{"name":"PASYNC_READ_COMPLETION_CALLBACK","features":[307,303]},{"name":"PCC_POST_DEFERRED_WRITE","features":[307]},{"name":"PCHECK_FOR_TRAVERSE_ACCESS","features":[304,307,303,306]},{"name":"PCOMPLETE_LOCK_IRP_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"PDIRTY_PAGE_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"PFILTER_REPORT_CHANGE","features":[307,303]},{"name":"PFLUSH_TO_LSN","features":[307]},{"name":"PFN_FSRTLTEARDOWNPERSTREAMCONTEXTS","features":[304,307,303,309]},{"name":"PFREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[307,303]},{"name":"PFSRTL_EXTRA_CREATE_PARAMETER_CLEANUP_CALLBACK","features":[307]},{"name":"PFSRTL_STACK_OVERFLOW_ROUTINE","features":[304,307,303,309]},{"name":"PFS_FILTER_CALLBACK","features":[304,307,305,303,306,308,309,310]},{"name":"PFS_FILTER_COMPLETION_CALLBACK","features":[304,307,305,303,306,308,309,310]},{"name":"PHYSICAL_EXTENTS_DESCRIPTOR","features":[307]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR","features":[307]},{"name":"PHYSICAL_MEMORY_RUN","features":[307]},{"name":"PIN_CALLER_TRACKS_DIRTY_DATA","features":[307]},{"name":"PIN_EXCLUSIVE","features":[307]},{"name":"PIN_HIGH_PRIORITY","features":[307]},{"name":"PIN_IF_BCB","features":[307]},{"name":"PIN_NO_READ","features":[307]},{"name":"PIN_VERIFY_REQUIRED","features":[307]},{"name":"PIN_WAIT","features":[307]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[307]},{"name":"POPLOCK_FS_PREPOST_IRP","features":[304,307,305,303,306,308,309,310]},{"name":"POPLOCK_NOTIFY_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"POPLOCK_WAIT_COMPLETE_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"PO_CB_AC_STATUS","features":[307]},{"name":"PO_CB_BUTTON_COLLISION","features":[307]},{"name":"PO_CB_LID_SWITCH_STATE","features":[307]},{"name":"PO_CB_PROCESSOR_POWER_POLICY","features":[307]},{"name":"PO_CB_SYSTEM_POWER_POLICY","features":[307]},{"name":"PO_CB_SYSTEM_STATE_LOCK","features":[307]},{"name":"PQUERY_LOG_USAGE","features":[307]},{"name":"PQUERY_VIRTUAL_MEMORY_CALLBACK","features":[307,303]},{"name":"PREFETCH_OPEN_ECP_CONTEXT","features":[307]},{"name":"PREFIX_TABLE","features":[304,307,309]},{"name":"PREFIX_TABLE_ENTRY","features":[304,307,309]},{"name":"PRELEASE_FROM_LAZY_WRITE","features":[307]},{"name":"PRELEASE_FROM_READ_AHEAD","features":[307]},{"name":"PRTL_ALLOCATE_STRING_ROUTINE","features":[307]},{"name":"PRTL_FREE_STRING_ROUTINE","features":[307]},{"name":"PRTL_HEAP_COMMIT_ROUTINE","features":[307,303]},{"name":"PRTL_REALLOCATE_STRING_ROUTINE","features":[307]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE","features":[307,303]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[307,303]},{"name":"PSMP_MAXIMUM_SYSAPP_CLAIM_VALUES","features":[307]},{"name":"PSMP_MINIMUM_SYSAPP_CLAIM_VALUES","features":[307]},{"name":"PUBLIC_BCB","features":[307]},{"name":"PUNLOCK_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"PURGE_WITH_ACTIVE_VIEWS","features":[307]},{"name":"PfxFindPrefix","features":[304,307,309]},{"name":"PfxInitialize","features":[304,307,309]},{"name":"PfxInsertPrefix","features":[304,307,303,309]},{"name":"PfxRemovePrefix","features":[304,307,309]},{"name":"PoQueueShutdownWorkItem","features":[304,307,303,309]},{"name":"PsAssignImpersonationToken","features":[304,307,303]},{"name":"PsChargePoolQuota","features":[304,307]},{"name":"PsChargeProcessPoolQuota","features":[304,307,303]},{"name":"PsDereferenceImpersonationToken","features":[307]},{"name":"PsDereferencePrimaryToken","features":[307]},{"name":"PsDisableImpersonation","features":[304,307,303,306]},{"name":"PsGetProcessExitTime","features":[307]},{"name":"PsGetThreadProcess","features":[304,307]},{"name":"PsImpersonateClient","features":[304,307,303,306]},{"name":"PsIsDiskCountersEnabled","features":[307,303]},{"name":"PsIsSystemThread","features":[304,307,303]},{"name":"PsIsThreadTerminating","features":[304,307,303]},{"name":"PsLookupProcessByProcessId","features":[304,307,303]},{"name":"PsLookupThreadByThreadId","features":[304,307,303]},{"name":"PsReferenceImpersonationToken","features":[304,307,303,306]},{"name":"PsReferencePrimaryToken","features":[304,307]},{"name":"PsRestoreImpersonation","features":[304,307,303,306]},{"name":"PsReturnPoolQuota","features":[304,307]},{"name":"PsRevertToSelf","features":[307]},{"name":"PsUpdateDiskCounters","features":[304,307]},{"name":"QUERY_BAD_RANGES_INPUT","features":[307,323]},{"name":"QUERY_DIRECT_ACCESS_DATA_EXTENTS","features":[307]},{"name":"QUERY_DIRECT_ACCESS_EXTENTS","features":[307]},{"name":"QUERY_DIRECT_ACCESS_IMAGE_EXTENTS","features":[307]},{"name":"QUERY_ON_CREATE_EA_INFORMATION","features":[307]},{"name":"QUERY_ON_CREATE_ECP_CONTEXT","features":[307]},{"name":"QUERY_ON_CREATE_FILE_LX_INFORMATION","features":[307]},{"name":"QUERY_ON_CREATE_FILE_STAT_INFORMATION","features":[307]},{"name":"QUERY_PATH_REQUEST","features":[304,307,305,303,306]},{"name":"QUERY_PATH_REQUEST_EX","features":[304,307,305,303,306]},{"name":"QUERY_PATH_RESPONSE","features":[307]},{"name":"QUERY_VIRTUAL_MEMORY_CALLBACK","features":[307,303]},{"name":"QoCFileEaInformation","features":[307]},{"name":"QoCFileLxInformation","features":[307]},{"name":"QoCFileStatInformation","features":[307]},{"name":"QuerySecurityContextToken","features":[307]},{"name":"READ_AHEAD_PARAMETERS","features":[307]},{"name":"READ_LIST","features":[304,307,305,303,306,322,308,309,310]},{"name":"READ_USN_JOURNAL_DATA","features":[307]},{"name":"REFS_COMPRESSION_FORMATS","features":[307]},{"name":"REFS_COMPRESSION_FORMAT_LZ4","features":[307]},{"name":"REFS_COMPRESSION_FORMAT_MAX","features":[307]},{"name":"REFS_COMPRESSION_FORMAT_UNCOMPRESSED","features":[307]},{"name":"REFS_COMPRESSION_FORMAT_ZSTD","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_CAA","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_MAA","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_NONE","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_SAA","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER_EX","features":[307]},{"name":"REFS_DEALLOCATE_RANGES_RANGE","features":[307]},{"name":"REFS_QUERY_VOLUME_COMPRESSION_INFO_OUTPUT_BUFFER","features":[307]},{"name":"REFS_QUERY_VOLUME_DEDUP_INFO_OUTPUT_BUFFER","features":[307,303]},{"name":"REFS_REMOVE_HARDLINK_BACKPOINTER","features":[307]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAGS","features":[307]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_COMPRESS_SYNC","features":[307]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_MAX","features":[307]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_INPUT_BUFFER","features":[307]},{"name":"REFS_SET_VOLUME_DEDUP_INFO_INPUT_BUFFER","features":[307,303]},{"name":"REFS_STREAM_EXTENT","features":[307]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC32","features":[307]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC64","features":[307]},{"name":"REFS_STREAM_EXTENT_PROPERTY_GHOSTED","features":[307]},{"name":"REFS_STREAM_EXTENT_PROPERTY_READONLY","features":[307]},{"name":"REFS_STREAM_EXTENT_PROPERTY_SPARSE","features":[307]},{"name":"REFS_STREAM_EXTENT_PROPERTY_STREAM_RESERVED","features":[307]},{"name":"REFS_STREAM_EXTENT_PROPERTY_VALID","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER_ENTRY","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_MANAGEMENT_INPUT_BUFFER","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CLEAR_SHADOW_BTREE","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CREATE","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_INVALID","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_LIST","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_MAX","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_QUERY_DELTAS","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_REVERT","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_SET_SHADOW_BTREE","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_INPUT_BUFFER","features":[307]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_OUTPUT_BUFFER","features":[307]},{"name":"REFS_VOLUME_COUNTER_INFO_INPUT_BUFFER","features":[307,303]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[307]},{"name":"REMOTE_LINK_TRACKING_INFORMATION","features":[307]},{"name":"REMOTE_PROTOCOL_FLAG_INTEGRITY","features":[307]},{"name":"REMOTE_PROTOCOL_FLAG_LOOPBACK","features":[307]},{"name":"REMOTE_PROTOCOL_FLAG_MUTUAL_AUTH","features":[307]},{"name":"REMOTE_PROTOCOL_FLAG_OFFLINE","features":[307]},{"name":"REMOTE_PROTOCOL_FLAG_PERSISTENT_HANDLE","features":[307]},{"name":"REMOTE_PROTOCOL_FLAG_PRIVACY","features":[307]},{"name":"REMOVED_8DOT3_NAME","features":[307]},{"name":"REPARSE_DATA_BUFFER","features":[307]},{"name":"REPARSE_DATA_BUFFER_EX","features":[307,322]},{"name":"REPARSE_DATA_EX_FLAG_GIVEN_TAG_OR_NONE","features":[307]},{"name":"REPARSE_INDEX_KEY","features":[307]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[307]},{"name":"RETURN_NON_NT_USER_SESSION_KEY","features":[307]},{"name":"RETURN_PRIMARY_LOGON_DOMAINNAME","features":[307]},{"name":"RETURN_PRIMARY_USERNAME","features":[307]},{"name":"RETURN_RESERVED_PARAMETER","features":[307]},{"name":"RKF_BYPASS_ECP_CONTEXT","features":[307]},{"name":"RPI_SMB2_SERVERCAP_DFS","features":[307]},{"name":"RPI_SMB2_SERVERCAP_DIRECTORY_LEASING","features":[307]},{"name":"RPI_SMB2_SERVERCAP_ENCRYPTION_AWARE","features":[307]},{"name":"RPI_SMB2_SERVERCAP_LARGEMTU","features":[307]},{"name":"RPI_SMB2_SERVERCAP_LEASING","features":[307]},{"name":"RPI_SMB2_SERVERCAP_MULTICHANNEL","features":[307]},{"name":"RPI_SMB2_SERVERCAP_PERSISTENT_HANDLES","features":[307]},{"name":"RPI_SMB2_SHARECAP_ACCESS_BASED_DIRECTORY_ENUM","features":[307]},{"name":"RPI_SMB2_SHARECAP_ASYMMETRIC_SCALEOUT","features":[307]},{"name":"RPI_SMB2_SHARECAP_CLUSTER","features":[307]},{"name":"RPI_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[307]},{"name":"RPI_SMB2_SHARECAP_DFS","features":[307]},{"name":"RPI_SMB2_SHARECAP_ENCRYPTED","features":[307]},{"name":"RPI_SMB2_SHARECAP_IDENTITY_REMOTING","features":[307]},{"name":"RPI_SMB2_SHARECAP_SCALEOUT","features":[307]},{"name":"RPI_SMB2_SHARECAP_TIMEWARP","features":[307]},{"name":"RPI_SMB2_SHARETYPE_DISK","features":[307]},{"name":"RPI_SMB2_SHARETYPE_PIPE","features":[307]},{"name":"RPI_SMB2_SHARETYPE_PRINT","features":[307]},{"name":"RTL_ALLOCATE_STRING_ROUTINE","features":[307]},{"name":"RTL_DUPLICATE_UNICODE_STRING_ALLOCATE_NULL_STRING","features":[307]},{"name":"RTL_DUPLICATE_UNICODE_STRING_NULL_TERMINATE","features":[307]},{"name":"RTL_FREE_STRING_ROUTINE","features":[307]},{"name":"RTL_HEAP_COMMIT_ROUTINE","features":[307,303]},{"name":"RTL_HEAP_MEMORY_LIMIT_CURRENT_VERSION","features":[307]},{"name":"RTL_HEAP_MEMORY_LIMIT_DATA","features":[307]},{"name":"RTL_HEAP_MEMORY_LIMIT_INFO","features":[307]},{"name":"RTL_HEAP_PARAMETERS","features":[307,303]},{"name":"RTL_MEMORY_TYPE","features":[307]},{"name":"RTL_NLS_STATE","features":[307]},{"name":"RTL_REALLOCATE_STRING_ROUTINE","features":[307]},{"name":"RTL_SEGMENT_HEAP_MEMORY_SOURCE","features":[307,303]},{"name":"RTL_SEGMENT_HEAP_PARAMETERS","features":[307,303]},{"name":"RTL_SEGMENT_HEAP_VA_CALLBACKS","features":[307,303]},{"name":"RTL_SYSTEM_VOLUME_INFORMATION_FOLDER","features":[307]},{"name":"RtlAbsoluteToSelfRelativeSD","features":[307,303,306]},{"name":"RtlAddAccessAllowedAce","features":[307,303,306]},{"name":"RtlAddAccessAllowedAceEx","features":[307,303,306]},{"name":"RtlAddAce","features":[307,303,306]},{"name":"RtlAllocateAndInitializeSid","features":[307,303,306]},{"name":"RtlAllocateAndInitializeSidEx","features":[307,303,306]},{"name":"RtlAllocateHeap","features":[307]},{"name":"RtlAppendStringToString","features":[307,303,309]},{"name":"RtlCompareAltitudes","features":[307,303]},{"name":"RtlCompareMemoryUlong","features":[307]},{"name":"RtlCompressBuffer","features":[307,303]},{"name":"RtlCompressChunks","features":[307,303]},{"name":"RtlCopyLuid","features":[307,303]},{"name":"RtlCopySid","features":[307,303]},{"name":"RtlCreateAcl","features":[307,303,306]},{"name":"RtlCreateHeap","features":[307,303]},{"name":"RtlCreateServiceSid","features":[307,303]},{"name":"RtlCreateSystemVolumeInformationFolder","features":[307,303]},{"name":"RtlCreateUnicodeString","features":[307,303]},{"name":"RtlCreateVirtualAccountSid","features":[307,303]},{"name":"RtlCustomCPToUnicodeN","features":[307,303]},{"name":"RtlDecompressBuffer","features":[307,303]},{"name":"RtlDecompressBufferEx","features":[307,303]},{"name":"RtlDecompressBufferEx2","features":[307,303]},{"name":"RtlDecompressChunks","features":[307,303]},{"name":"RtlDecompressFragment","features":[307,303]},{"name":"RtlDecompressFragmentEx","features":[307,303]},{"name":"RtlDeleteAce","features":[307,303,306]},{"name":"RtlDescribeChunk","features":[307,303]},{"name":"RtlDestroyHeap","features":[307]},{"name":"RtlDowncaseUnicodeString","features":[307,303]},{"name":"RtlDuplicateUnicodeString","features":[307,303]},{"name":"RtlEqualPrefixSid","features":[307,303]},{"name":"RtlEqualSid","features":[307,303]},{"name":"RtlFindUnicodePrefix","features":[304,307,303]},{"name":"RtlFreeHeap","features":[307]},{"name":"RtlFreeSid","features":[307,303]},{"name":"RtlGenerate8dot3Name","features":[307,303]},{"name":"RtlGetAce","features":[307,303,306]},{"name":"RtlGetCompressionWorkSpaceSize","features":[307,303]},{"name":"RtlGetDaclSecurityDescriptor","features":[307,303,306]},{"name":"RtlGetGroupSecurityDescriptor","features":[307,303,306]},{"name":"RtlGetOwnerSecurityDescriptor","features":[307,303,306]},{"name":"RtlGetSaclSecurityDescriptor","features":[307,303,306]},{"name":"RtlIdentifierAuthoritySid","features":[307,303,306]},{"name":"RtlIdnToAscii","features":[307,303]},{"name":"RtlIdnToNameprepUnicode","features":[307,303]},{"name":"RtlIdnToUnicode","features":[307,303]},{"name":"RtlInitCodePageTable","features":[307]},{"name":"RtlInitUnicodeStringEx","features":[307,303]},{"name":"RtlInitializeSid","features":[307,303,306]},{"name":"RtlInitializeSidEx","features":[307,303,306]},{"name":"RtlInitializeUnicodePrefix","features":[304,307,303]},{"name":"RtlInsertUnicodePrefix","features":[304,307,303]},{"name":"RtlIsCloudFilesPlaceholder","features":[307,303]},{"name":"RtlIsNonEmptyDirectoryReparsePointAllowed","features":[307,303]},{"name":"RtlIsNormalizedString","features":[307,303]},{"name":"RtlIsPartialPlaceholder","features":[307,303]},{"name":"RtlIsPartialPlaceholderFileHandle","features":[307,303]},{"name":"RtlIsPartialPlaceholderFileInfo","features":[307,303]},{"name":"RtlIsSandboxedToken","features":[304,307,303,306]},{"name":"RtlIsValidOemCharacter","features":[307,303]},{"name":"RtlLengthRequiredSid","features":[307]},{"name":"RtlLengthSid","features":[307,303]},{"name":"RtlMultiByteToUnicodeN","features":[307,303]},{"name":"RtlMultiByteToUnicodeSize","features":[307,303]},{"name":"RtlNextUnicodePrefix","features":[304,307,303]},{"name":"RtlNormalizeString","features":[307,303]},{"name":"RtlNtStatusToDosErrorNoTeb","features":[307,303]},{"name":"RtlOemStringToCountedUnicodeString","features":[307,303,309]},{"name":"RtlOemStringToUnicodeString","features":[307,303,309]},{"name":"RtlOemToUnicodeN","features":[307,303]},{"name":"RtlPrefixString","features":[307,303,309]},{"name":"RtlQueryPackageIdentity","features":[307,303]},{"name":"RtlQueryPackageIdentityEx","features":[307,303]},{"name":"RtlQueryProcessPlaceholderCompatibilityMode","features":[307]},{"name":"RtlQueryThreadPlaceholderCompatibilityMode","features":[307]},{"name":"RtlRandom","features":[307]},{"name":"RtlRandomEx","features":[307]},{"name":"RtlRemoveUnicodePrefix","features":[304,307,303]},{"name":"RtlReplaceSidInSd","features":[307,303,306]},{"name":"RtlReserveChunk","features":[307,303]},{"name":"RtlSecondsSince1970ToTime","features":[307]},{"name":"RtlSecondsSince1980ToTime","features":[307]},{"name":"RtlSelfRelativeToAbsoluteSD","features":[307,303,306]},{"name":"RtlSetGroupSecurityDescriptor","features":[307,303,306]},{"name":"RtlSetOwnerSecurityDescriptor","features":[307,303,306]},{"name":"RtlSetProcessPlaceholderCompatibilityMode","features":[307]},{"name":"RtlSetThreadPlaceholderCompatibilityMode","features":[307]},{"name":"RtlSubAuthorityCountSid","features":[307,303]},{"name":"RtlSubAuthoritySid","features":[307,303]},{"name":"RtlTimeToSecondsSince1980","features":[307,303]},{"name":"RtlUnicodeStringToCountedOemString","features":[307,303,309]},{"name":"RtlUnicodeToCustomCPN","features":[307,303]},{"name":"RtlUnicodeToMultiByteN","features":[307,303]},{"name":"RtlUnicodeToOemN","features":[307,303]},{"name":"RtlUpcaseUnicodeStringToCountedOemString","features":[307,303,309]},{"name":"RtlUpcaseUnicodeStringToOemString","features":[307,303,309]},{"name":"RtlUpcaseUnicodeToCustomCPN","features":[307,303]},{"name":"RtlUpcaseUnicodeToMultiByteN","features":[307,303]},{"name":"RtlUpcaseUnicodeToOemN","features":[307,303]},{"name":"RtlValidSid","features":[307,303]},{"name":"RtlValidateUnicodeString","features":[307,303]},{"name":"RtlxOemStringToUnicodeSize","features":[307,309]},{"name":"RtlxUnicodeStringToOemSize","features":[307,303]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[307]},{"name":"SECURITY_CLIENT_CONTEXT","features":[307,303,306]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[307,324]},{"name":"SEC_DTLS_MTU","features":[307]},{"name":"SEC_FLAGS","features":[307]},{"name":"SEC_NEGOTIATION_INFO","features":[307]},{"name":"SEC_PRESHAREDKEY","features":[307]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[307]},{"name":"SEGMENT_HEAP_FLG_USE_PAGE_HEAP","features":[307]},{"name":"SEGMENT_HEAP_PARAMETERS_VERSION","features":[307]},{"name":"SEGMENT_HEAP_PARAMS_VALID_FLAGS","features":[307]},{"name":"SEMAPHORE_INCREMENT","features":[307]},{"name":"SET_CACHED_RUNS_STATE_INPUT_BUFFER","features":[307,303]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[307]},{"name":"SE_AUDIT_INFO","features":[307,303,306]},{"name":"SE_AUDIT_OPERATION","features":[307]},{"name":"SE_BACKUP_PRIVILEGES_CHECKED","features":[307]},{"name":"SE_DACL_UNTRUSTED","features":[307]},{"name":"SE_EXPORTS","features":[307,303]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE","features":[307,303]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[304,307,303]},{"name":"SE_SERVER_SECURITY","features":[307]},{"name":"SPECIAL_ENCRYPTED_OPEN","features":[307]},{"name":"SRV_INSTANCE_TYPE","features":[307]},{"name":"SRV_OPEN_ECP_CONTEXT","features":[307,303,316]},{"name":"SRV_OPEN_ECP_CONTEXT_VERSION_2","features":[307]},{"name":"SUPPORTED_FS_FEATURES_BYPASS_IO","features":[307]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_READ","features":[307]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_WRITE","features":[307]},{"name":"SUPPORTED_FS_FEATURES_QUERY_OPEN","features":[307]},{"name":"SYMLINK_DIRECTORY","features":[307]},{"name":"SYMLINK_FILE","features":[307]},{"name":"SYMLINK_FLAG_RELATIVE","features":[307]},{"name":"SYMLINK_RESERVED_MASK","features":[307]},{"name":"SYSTEM_PAGE_PRIORITY_BITS","features":[307]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[307]},{"name":"SeAccessCheckFromState","features":[307,303,306]},{"name":"SeAccessCheckFromStateEx","features":[307,303,306]},{"name":"SeAdjustAccessStateForAccessConstraints","features":[304,307,305,303,306]},{"name":"SeAdjustAccessStateForTrustLabel","features":[304,307,305,303,306]},{"name":"SeAdjustObjectSecurity","features":[304,307,303,306]},{"name":"SeAppendPrivileges","features":[304,307,305,303,306]},{"name":"SeAuditFipsCryptoSelftests","features":[307,303]},{"name":"SeAuditHardLinkCreation","features":[307,303]},{"name":"SeAuditHardLinkCreationWithTransaction","features":[307,303]},{"name":"SeAuditTransactionStateChange","features":[307]},{"name":"SeAuditingAnyFileEventsWithContext","features":[304,307,303,306]},{"name":"SeAuditingAnyFileEventsWithContextEx","features":[304,307,303,306]},{"name":"SeAuditingFileEvents","features":[307,303,306]},{"name":"SeAuditingFileEventsWithContext","features":[304,307,303,306]},{"name":"SeAuditingFileEventsWithContextEx","features":[304,307,303,306]},{"name":"SeAuditingFileOrGlobalEvents","features":[304,307,303,306]},{"name":"SeAuditingHardLinkEvents","features":[307,303,306]},{"name":"SeAuditingHardLinkEventsWithContext","features":[304,307,303,306]},{"name":"SeCaptureSubjectContextEx","features":[304,307,306]},{"name":"SeCheckForCriticalAceRemoval","features":[304,307,303,306]},{"name":"SeCreateClientSecurity","features":[304,307,303,306]},{"name":"SeCreateClientSecurityFromSubjectContext","features":[304,307,303,306]},{"name":"SeDeleteClientSecurity","features":[307,303,306]},{"name":"SeDeleteObjectAuditAlarm","features":[307,303]},{"name":"SeDeleteObjectAuditAlarmWithTransaction","features":[307,303]},{"name":"SeExamineSacl","features":[307,303,306]},{"name":"SeFilterToken","features":[307,303,306]},{"name":"SeFreePrivileges","features":[307,303,306]},{"name":"SeImpersonateClient","features":[304,307,303,306]},{"name":"SeImpersonateClientEx","features":[304,307,303,306]},{"name":"SeLocateProcessImageName","features":[304,307,303]},{"name":"SeMarkLogonSessionForTerminationNotification","features":[307,303]},{"name":"SeMarkLogonSessionForTerminationNotificationEx","features":[304,307,303]},{"name":"SeOpenObjectAuditAlarm","features":[304,307,305,303,306]},{"name":"SeOpenObjectAuditAlarmWithTransaction","features":[304,307,305,303,306]},{"name":"SeOpenObjectForDeleteAuditAlarm","features":[304,307,305,303,306]},{"name":"SeOpenObjectForDeleteAuditAlarmWithTransaction","features":[304,307,305,303,306]},{"name":"SePrivilegeCheck","features":[304,307,303,306]},{"name":"SeQueryAuthenticationIdToken","features":[307,303]},{"name":"SeQueryInformationToken","features":[307,303,306]},{"name":"SeQuerySecurityDescriptorInfo","features":[307,303,306]},{"name":"SeQueryServerSiloToken","features":[304,307,303]},{"name":"SeQuerySessionIdToken","features":[307,303]},{"name":"SeQuerySessionIdTokenEx","features":[307,303]},{"name":"SeRegisterLogonSessionTerminatedRoutine","features":[307,303]},{"name":"SeRegisterLogonSessionTerminatedRoutineEx","features":[307,303]},{"name":"SeReportSecurityEventWithSubCategory","features":[307,303,324]},{"name":"SeSetAccessStateGenericMapping","features":[304,307,305,303,306]},{"name":"SeSetSecurityDescriptorInfo","features":[304,307,303,306]},{"name":"SeSetSecurityDescriptorInfoEx","features":[304,307,303,306]},{"name":"SeShouldCheckForAccessRightsFromParent","features":[304,307,305,303,306]},{"name":"SeTokenFromAccessInformation","features":[307,303,306]},{"name":"SeTokenIsAdmin","features":[307,303]},{"name":"SeTokenIsRestricted","features":[307,303]},{"name":"SeTokenIsWriteRestricted","features":[307,303]},{"name":"SeTokenType","features":[307,306]},{"name":"SeUnregisterLogonSessionTerminatedRoutine","features":[307,303]},{"name":"SeUnregisterLogonSessionTerminatedRoutineEx","features":[307,303]},{"name":"SecBuffer","features":[307]},{"name":"SecBufferDesc","features":[307]},{"name":"SecHandle","features":[307]},{"name":"SecLookupAccountName","features":[307,303,306]},{"name":"SecLookupAccountSid","features":[307,303,306]},{"name":"SecLookupWellKnownSid","features":[307,303,306]},{"name":"SecMakeSPN","features":[307,303]},{"name":"SecMakeSPNEx","features":[307,303]},{"name":"SecMakeSPNEx2","features":[307,303]},{"name":"SetContextAttributesW","features":[307]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[307]},{"name":"SharedVirtualDiskHandleState","features":[307]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[307]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[307]},{"name":"SharedVirtualDiskHandleStateNone","features":[307]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[307]},{"name":"SharedVirtualDiskSupportType","features":[307]},{"name":"SharedVirtualDisksSupported","features":[307]},{"name":"SharedVirtualDisksUnsupported","features":[307]},{"name":"SrvInstanceTypeCsv","features":[307]},{"name":"SrvInstanceTypePrimary","features":[307]},{"name":"SrvInstanceTypeSBL","features":[307]},{"name":"SrvInstanceTypeSR","features":[307]},{"name":"SrvInstanceTypeUndefined","features":[307]},{"name":"SrvInstanceTypeVSMB","features":[307]},{"name":"SspiAcceptSecurityContextAsync","features":[304,307]},{"name":"SspiAcquireCredentialsHandleAsyncA","features":[304,307,324]},{"name":"SspiAcquireCredentialsHandleAsyncW","features":[304,307,303,324]},{"name":"SspiAsyncNotifyCallback","features":[304,307]},{"name":"SspiCreateAsyncContext","features":[304,307]},{"name":"SspiDeleteSecurityContextAsync","features":[304,307]},{"name":"SspiFreeAsyncContext","features":[304,307]},{"name":"SspiFreeCredentialsHandleAsync","features":[304,307]},{"name":"SspiGetAsyncCallStatus","features":[304,307]},{"name":"SspiInitializeSecurityContextAsyncA","features":[304,307]},{"name":"SspiInitializeSecurityContextAsyncW","features":[304,307,303]},{"name":"SspiReinitAsyncContext","features":[304,307,303]},{"name":"SspiSetAsyncNotifyCallback","features":[304,307]},{"name":"SyncTypeCreateSection","features":[307]},{"name":"SyncTypeOther","features":[307]},{"name":"TOKEN_AUDIT_NO_CHILD_PROCESS","features":[307]},{"name":"TOKEN_AUDIT_REDIRECTION_TRUST","features":[307]},{"name":"TOKEN_DO_NOT_USE_GLOBAL_ATTRIBS_FOR_QUERY","features":[307]},{"name":"TOKEN_ENFORCE_REDIRECTION_TRUST","features":[307]},{"name":"TOKEN_HAS_BACKUP_PRIVILEGE","features":[307]},{"name":"TOKEN_HAS_IMPERSONATE_PRIVILEGE","features":[307]},{"name":"TOKEN_HAS_OWN_CLAIM_ATTRIBUTES","features":[307]},{"name":"TOKEN_HAS_RESTORE_PRIVILEGE","features":[307]},{"name":"TOKEN_HAS_TRAVERSE_PRIVILEGE","features":[307]},{"name":"TOKEN_IS_FILTERED","features":[307]},{"name":"TOKEN_IS_RESTRICTED","features":[307]},{"name":"TOKEN_LEARNING_MODE_LOGGING","features":[307]},{"name":"TOKEN_LOWBOX","features":[307]},{"name":"TOKEN_NOT_LOW","features":[307]},{"name":"TOKEN_NO_CHILD_PROCESS","features":[307]},{"name":"TOKEN_NO_CHILD_PROCESS_UNLESS_SECURE","features":[307]},{"name":"TOKEN_PERMISSIVE_LEARNING_MODE","features":[307]},{"name":"TOKEN_PRIVATE_NAMESPACE","features":[307]},{"name":"TOKEN_SANDBOX_INERT","features":[307]},{"name":"TOKEN_SESSION_NOT_REFERENCED","features":[307]},{"name":"TOKEN_UIACCESS","features":[307]},{"name":"TOKEN_VIRTUALIZE_ALLOWED","features":[307]},{"name":"TOKEN_VIRTUALIZE_ENABLED","features":[307]},{"name":"TOKEN_WRITE_RESTRICTED","features":[307]},{"name":"TUNNEL","features":[304,307,303,309]},{"name":"UNICODE_PREFIX_TABLE","features":[304,307,303]},{"name":"UNICODE_PREFIX_TABLE_ENTRY","features":[304,307,303]},{"name":"UNINITIALIZE_CACHE_MAPS","features":[307]},{"name":"USE_PRIMARY_PASSWORD","features":[307]},{"name":"USN_DELETE_FLAG_DELETE","features":[307]},{"name":"USN_JOURNAL_DATA","features":[307]},{"name":"USN_RECORD","features":[307]},{"name":"VACB_MAPPING_GRANULARITY","features":[307]},{"name":"VACB_OFFSET_SHIFT","features":[307]},{"name":"VALID_INHERIT_FLAGS","features":[307]},{"name":"VCN_RANGE_INPUT_BUFFER","features":[307]},{"name":"VIRTUAL_MEMORY_INFORMATION_CLASS","features":[307]},{"name":"VOLSNAPCONTROLTYPE","features":[307]},{"name":"VOLUME_REFS_INFO_BUFFER","features":[307]},{"name":"VerifySignature","features":[307]},{"name":"VmPrefetchInformation","features":[307]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_LAYER","features":[307]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REGISTERED_LAYER","features":[307]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REMOTE_LAYER","features":[307]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_SCRATCH","features":[307]},{"name":"ZwAllocateVirtualMemory","features":[307,303]},{"name":"ZwAllocateVirtualMemoryEx","features":[307,303,321]},{"name":"ZwCreateEvent","features":[304,307,303,309]},{"name":"ZwDeleteFile","features":[304,307,303]},{"name":"ZwDuplicateObject","features":[307,303]},{"name":"ZwDuplicateToken","features":[304,307,303,306]},{"name":"ZwFlushBuffersFile","features":[307,303,308]},{"name":"ZwFlushBuffersFileEx","features":[307,303,308]},{"name":"ZwFlushVirtualMemory","features":[307,303,308]},{"name":"ZwFreeVirtualMemory","features":[307,303]},{"name":"ZwFsControlFile","features":[307,303,308]},{"name":"ZwLockFile","features":[307,303,308]},{"name":"ZwNotifyChangeKey","features":[307,303,308]},{"name":"ZwOpenDirectoryObject","features":[304,307,303]},{"name":"ZwOpenProcessTokenEx","features":[307,303]},{"name":"ZwOpenThreadTokenEx","features":[307,303]},{"name":"ZwQueryDirectoryFile","features":[307,303,308]},{"name":"ZwQueryDirectoryFileEx","features":[307,303,308]},{"name":"ZwQueryEaFile","features":[307,303,308]},{"name":"ZwQueryFullAttributesFile","features":[304,307,303]},{"name":"ZwQueryInformationToken","features":[307,303,306]},{"name":"ZwQueryObject","features":[304,307,303]},{"name":"ZwQueryQuotaInformationFile","features":[307,303,308]},{"name":"ZwQuerySecurityObject","features":[307,303,306]},{"name":"ZwQueryVirtualMemory","features":[307,303]},{"name":"ZwQueryVolumeInformationFile","features":[307,303,308]},{"name":"ZwSetEaFile","features":[307,303,308]},{"name":"ZwSetEvent","features":[307,303]},{"name":"ZwSetInformationToken","features":[307,303,306]},{"name":"ZwSetInformationVirtualMemory","features":[307,303]},{"name":"ZwSetQuotaInformationFile","features":[307,303,308]},{"name":"ZwSetSecurityObject","features":[307,303,306]},{"name":"ZwSetVolumeInformationFile","features":[307,303,308]},{"name":"ZwUnlockFile","features":[307,303,308]},{"name":"ZwWaitForSingleObject","features":[307,303]},{"name":"_LCN_WEAK_REFERENCE_STATE","features":[307]},{"name":"_REFS_STREAM_EXTENT_PROPERTIES","features":[307]}],"345":[{"name":"FLTFL_CALLBACK_DATA_DIRTY","features":[325]},{"name":"FLTFL_CALLBACK_DATA_DRAINING_IO","features":[325]},{"name":"FLTFL_CALLBACK_DATA_FAST_IO_OPERATION","features":[325]},{"name":"FLTFL_CALLBACK_DATA_FS_FILTER_OPERATION","features":[325]},{"name":"FLTFL_CALLBACK_DATA_GENERATED_IO","features":[325]},{"name":"FLTFL_CALLBACK_DATA_IRP_OPERATION","features":[325]},{"name":"FLTFL_CALLBACK_DATA_NEW_SYSTEM_BUFFER","features":[325]},{"name":"FLTFL_CALLBACK_DATA_POST_OPERATION","features":[325]},{"name":"FLTFL_CALLBACK_DATA_REISSUED_IO","features":[325]},{"name":"FLTFL_CALLBACK_DATA_REISSUE_MASK","features":[325]},{"name":"FLTFL_CALLBACK_DATA_SYSTEM_BUFFER","features":[325]},{"name":"FLTFL_CONTEXT_REGISTRATION_NO_EXACT_SIZE_MATCH","features":[325]},{"name":"FLTFL_FILE_NAME_PARSED_EXTENSION","features":[325]},{"name":"FLTFL_FILE_NAME_PARSED_FINAL_COMPONENT","features":[325]},{"name":"FLTFL_FILE_NAME_PARSED_PARENT_DIR","features":[325]},{"name":"FLTFL_FILE_NAME_PARSED_STREAM","features":[325]},{"name":"FLTFL_FILTER_UNLOAD_MANDATORY","features":[325]},{"name":"FLTFL_INSTANCE_SETUP_AUTOMATIC_ATTACHMENT","features":[325]},{"name":"FLTFL_INSTANCE_SETUP_DETACHED_VOLUME","features":[325]},{"name":"FLTFL_INSTANCE_SETUP_MANUAL_ATTACHMENT","features":[325]},{"name":"FLTFL_INSTANCE_SETUP_NEWLY_MOUNTED_VOLUME","features":[325]},{"name":"FLTFL_INSTANCE_TEARDOWN_FILTER_UNLOAD","features":[325]},{"name":"FLTFL_INSTANCE_TEARDOWN_INTERNAL_ERROR","features":[325]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANDATORY_FILTER_UNLOAD","features":[325]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANUAL","features":[325]},{"name":"FLTFL_INSTANCE_TEARDOWN_VOLUME_DISMOUNT","features":[325]},{"name":"FLTFL_IO_OPERATION_DO_NOT_UPDATE_BYTE_OFFSET","features":[325]},{"name":"FLTFL_IO_OPERATION_NON_CACHED","features":[325]},{"name":"FLTFL_IO_OPERATION_PAGING","features":[325]},{"name":"FLTFL_IO_OPERATION_SYNCHRONOUS_PAGING","features":[325]},{"name":"FLTFL_NORMALIZE_NAME_CASE_SENSITIVE","features":[325]},{"name":"FLTFL_NORMALIZE_NAME_DESTINATION_FILE_NAME","features":[325]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_CACHED_IO","features":[325]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_CACHED_NON_PAGING_IO","features":[325]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_DASD_IO","features":[325]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_PAGING_IO","features":[325]},{"name":"FLTFL_POST_OPERATION_DRAINING","features":[325]},{"name":"FLTFL_REGISTRATION_DO_NOT_SUPPORT_SERVICE_STOP","features":[325]},{"name":"FLTFL_REGISTRATION_SUPPORT_DAX_VOLUME","features":[325]},{"name":"FLTFL_REGISTRATION_SUPPORT_NPFS_MSFS","features":[325]},{"name":"FLTFL_REGISTRATION_SUPPORT_WCOS","features":[325]},{"name":"FLTTCFL_AUTO_REPARSE","features":[325]},{"name":"FLT_ALLOCATE_CALLBACK_DATA_PREALLOCATE_ALL_MEMORY","features":[325]},{"name":"FLT_CALLBACK_DATA","features":[304,325,305,303,306,308,309,310]},{"name":"FLT_CALLBACK_DATA_QUEUE","features":[304,325,305,303,306,308,309,310]},{"name":"FLT_CALLBACK_DATA_QUEUE_FLAGS","features":[325]},{"name":"FLT_CONTEXT_END","features":[325]},{"name":"FLT_CONTEXT_REGISTRATION","features":[304,325]},{"name":"FLT_CREATEFILE_TARGET_ECP_CONTEXT","features":[325,303]},{"name":"FLT_FILE_CONTEXT","features":[325]},{"name":"FLT_FILE_NAME_ALLOW_QUERY_ON_REPARSE","features":[325]},{"name":"FLT_FILE_NAME_DO_NOT_CACHE","features":[325]},{"name":"FLT_FILE_NAME_INFORMATION","features":[325,303]},{"name":"FLT_FILE_NAME_NORMALIZED","features":[325]},{"name":"FLT_FILE_NAME_OPENED","features":[325]},{"name":"FLT_FILE_NAME_QUERY_ALWAYS_ALLOW_CACHE_LOOKUP","features":[325]},{"name":"FLT_FILE_NAME_QUERY_CACHE_ONLY","features":[325]},{"name":"FLT_FILE_NAME_QUERY_DEFAULT","features":[325]},{"name":"FLT_FILE_NAME_QUERY_FILESYSTEM_ONLY","features":[325]},{"name":"FLT_FILE_NAME_REQUEST_FROM_CURRENT_PROVIDER","features":[325]},{"name":"FLT_FILE_NAME_SHORT","features":[325]},{"name":"FLT_FLUSH_TYPE_DATA_SYNC_ONLY","features":[325]},{"name":"FLT_FLUSH_TYPE_FILE_DATA_ONLY","features":[325]},{"name":"FLT_FLUSH_TYPE_FLUSH_AND_PURGE","features":[325]},{"name":"FLT_FLUSH_TYPE_NO_SYNC","features":[325]},{"name":"FLT_INSTANCE_CONTEXT","features":[325]},{"name":"FLT_INTERNAL_OPERATION_COUNT","features":[325]},{"name":"FLT_IO_PARAMETER_BLOCK","features":[304,325,305,303,306,308,309,310]},{"name":"FLT_MAX_DEVICE_REPARSE_ATTEMPTS","features":[325]},{"name":"FLT_NAME_CONTROL","features":[325,303]},{"name":"FLT_OPERATION_REGISTRATION","features":[304,325,305,303,306,308,309,310]},{"name":"FLT_PARAMETERS","features":[304,325,305,303,306,308,309,310]},{"name":"FLT_PORT_CONNECT","features":[325]},{"name":"FLT_POSTOP_CALLBACK_STATUS","features":[325]},{"name":"FLT_POSTOP_DISALLOW_FSFILTER_IO","features":[325]},{"name":"FLT_POSTOP_FINISHED_PROCESSING","features":[325]},{"name":"FLT_POSTOP_MORE_PROCESSING_REQUIRED","features":[325]},{"name":"FLT_PREOP_CALLBACK_STATUS","features":[325]},{"name":"FLT_PREOP_COMPLETE","features":[325]},{"name":"FLT_PREOP_DISALLOW_FASTIO","features":[325]},{"name":"FLT_PREOP_DISALLOW_FSFILTER_IO","features":[325]},{"name":"FLT_PREOP_PENDING","features":[325]},{"name":"FLT_PREOP_SUCCESS_NO_CALLBACK","features":[325]},{"name":"FLT_PREOP_SUCCESS_WITH_CALLBACK","features":[325]},{"name":"FLT_PREOP_SYNCHRONIZE","features":[325]},{"name":"FLT_PUSH_LOCK_DISABLE_AUTO_BOOST","features":[325]},{"name":"FLT_PUSH_LOCK_ENABLE_AUTO_BOOST","features":[325]},{"name":"FLT_PUSH_LOCK_VALID_FLAGS","features":[325]},{"name":"FLT_REGISTRATION","features":[304,325,305,303,306,326,308,309,310]},{"name":"FLT_REGISTRATION_VERSION","features":[325]},{"name":"FLT_REGISTRATION_VERSION_0200","features":[325]},{"name":"FLT_REGISTRATION_VERSION_0201","features":[325]},{"name":"FLT_REGISTRATION_VERSION_0202","features":[325]},{"name":"FLT_REGISTRATION_VERSION_0203","features":[325]},{"name":"FLT_RELATED_CONTEXTS","features":[325]},{"name":"FLT_RELATED_CONTEXTS_EX","features":[325]},{"name":"FLT_RELATED_OBJECTS","features":[304,325,305,303,306,308,309,310]},{"name":"FLT_SECTION_CONTEXT","features":[325]},{"name":"FLT_SET_CONTEXT_KEEP_IF_EXISTS","features":[325]},{"name":"FLT_SET_CONTEXT_OPERATION","features":[325]},{"name":"FLT_SET_CONTEXT_REPLACE_IF_EXISTS","features":[325]},{"name":"FLT_STREAMHANDLE_CONTEXT","features":[325]},{"name":"FLT_STREAM_CONTEXT","features":[325]},{"name":"FLT_TAG_DATA_BUFFER","features":[325]},{"name":"FLT_TRANSACTION_CONTEXT","features":[325]},{"name":"FLT_VALID_FILE_NAME_FLAGS","features":[325]},{"name":"FLT_VALID_FILE_NAME_FORMATS","features":[325]},{"name":"FLT_VALID_FILE_NAME_QUERY_METHODS","features":[325]},{"name":"FLT_VOLUME_CONTEXT","features":[325]},{"name":"FLT_VOLUME_PROPERTIES","features":[325,303]},{"name":"FltAcknowledgeEcp","features":[325]},{"name":"FltAcquirePushLockExclusive","features":[325]},{"name":"FltAcquirePushLockExclusiveEx","features":[325]},{"name":"FltAcquirePushLockShared","features":[325]},{"name":"FltAcquirePushLockSharedEx","features":[325]},{"name":"FltAcquireResourceExclusive","features":[304,325,309]},{"name":"FltAcquireResourceShared","features":[304,325,309]},{"name":"FltAddOpenReparseEntry","features":[304,325,305,303,306,308,309,310]},{"name":"FltAdjustDeviceStackSizeForIoRedirection","features":[325,303]},{"name":"FltAllocateCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltAllocateCallbackDataEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltAllocateContext","features":[304,325,303]},{"name":"FltAllocateDeferredIoWorkItem","features":[325]},{"name":"FltAllocateExtraCreateParameter","features":[325,303]},{"name":"FltAllocateExtraCreateParameterFromLookasideList","features":[325,303]},{"name":"FltAllocateExtraCreateParameterList","features":[304,325,303]},{"name":"FltAllocateFileLock","features":[304,325,305,303,306,308,309,310]},{"name":"FltAllocateGenericWorkItem","features":[325]},{"name":"FltAllocatePoolAlignedWithTag","features":[304,325]},{"name":"FltApplyPriorityInfoThread","features":[304,325,303]},{"name":"FltAttachVolume","features":[325,303]},{"name":"FltAttachVolumeAtAltitude","features":[325,303]},{"name":"FltBuildDefaultSecurityDescriptor","features":[325,303,306]},{"name":"FltCancelFileOpen","features":[304,325,305,303,306,308,309,310]},{"name":"FltCancelIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltCancellableWaitForMultipleObjects","features":[304,325,305,303,306,308,309,310]},{"name":"FltCancellableWaitForSingleObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltCbdqDisable","features":[304,325,305,303,306,308,309,310]},{"name":"FltCbdqEnable","features":[304,325,305,303,306,308,309,310]},{"name":"FltCbdqInitialize","features":[304,325,305,303,306,308,309,310]},{"name":"FltCbdqInsertIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltCbdqRemoveIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltCbdqRemoveNextIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltCheckAndGrowNameControl","features":[325,303]},{"name":"FltCheckLockForReadAccess","features":[304,325,305,303,306,308,309,310]},{"name":"FltCheckLockForWriteAccess","features":[304,325,305,303,306,308,309,310]},{"name":"FltCheckOplock","features":[304,325,305,303,306,308,309,310]},{"name":"FltCheckOplockEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltClearCallbackDataDirty","features":[304,325,305,303,306,308,309,310]},{"name":"FltClearCancelCompletion","features":[304,325,305,303,306,308,309,310]},{"name":"FltClose","features":[325,303]},{"name":"FltCloseClientPort","features":[325]},{"name":"FltCloseCommunicationPort","features":[325]},{"name":"FltCloseSectionForDataScan","features":[325,303]},{"name":"FltCommitComplete","features":[304,325,303]},{"name":"FltCommitFinalizeComplete","features":[304,325,303]},{"name":"FltCompareInstanceAltitudes","features":[325]},{"name":"FltCompletePendedPostOperation","features":[304,325,305,303,306,308,309,310]},{"name":"FltCompletePendedPreOperation","features":[304,325,305,303,306,308,309,310]},{"name":"FltCopyOpenReparseList","features":[304,325,305,303,306,308,309,310]},{"name":"FltCreateCommunicationPort","features":[304,325,303]},{"name":"FltCreateFile","features":[304,325,303,308]},{"name":"FltCreateFileEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltCreateFileEx2","features":[304,325,305,303,306,308,309,310]},{"name":"FltCreateMailslotFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltCreateNamedPipeFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltCreateSectionForDataScan","features":[304,325,305,303,306,308,309,310]},{"name":"FltCreateSystemVolumeInformationFolder","features":[325,303]},{"name":"FltCurrentBatchOplock","features":[325,303]},{"name":"FltCurrentOplock","features":[325,303]},{"name":"FltCurrentOplockH","features":[325,303]},{"name":"FltDecodeParameters","features":[304,325,305,303,306,308,309,310]},{"name":"FltDeleteContext","features":[325]},{"name":"FltDeleteExtraCreateParameterLookasideList","features":[325]},{"name":"FltDeleteFileContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltDeleteInstanceContext","features":[325,303]},{"name":"FltDeletePushLock","features":[325]},{"name":"FltDeleteStreamContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltDeleteStreamHandleContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltDeleteTransactionContext","features":[304,325,303]},{"name":"FltDeleteVolumeContext","features":[325,303]},{"name":"FltDetachVolume","features":[325,303]},{"name":"FltDeviceIoControlFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltDoCompletionProcessingWhenSafe","features":[304,325,305,303,306,308,309,310]},{"name":"FltEnlistInTransaction","features":[304,325,303]},{"name":"FltEnumerateFilterInformation","features":[325,303,326]},{"name":"FltEnumerateFilters","features":[325,303]},{"name":"FltEnumerateInstanceInformationByDeviceObject","features":[304,325,305,303,306,326,308,309,310]},{"name":"FltEnumerateInstanceInformationByFilter","features":[325,303,326]},{"name":"FltEnumerateInstanceInformationByVolume","features":[325,303,326]},{"name":"FltEnumerateInstanceInformationByVolumeName","features":[325,303,326]},{"name":"FltEnumerateInstances","features":[325,303]},{"name":"FltEnumerateVolumeInformation","features":[325,303,326]},{"name":"FltEnumerateVolumes","features":[325,303]},{"name":"FltFastIoMdlRead","features":[304,325,305,303,306,308,309,310]},{"name":"FltFastIoMdlReadComplete","features":[304,325,305,303,306,308,309,310]},{"name":"FltFastIoMdlWriteComplete","features":[304,325,305,303,306,308,309,310]},{"name":"FltFastIoPrepareMdlWrite","features":[304,325,305,303,306,308,309,310]},{"name":"FltFindExtraCreateParameter","features":[304,325,303]},{"name":"FltFlushBuffers","features":[304,325,305,303,306,308,309,310]},{"name":"FltFlushBuffers2","features":[304,325,305,303,306,308,309,310]},{"name":"FltFreeCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltFreeDeferredIoWorkItem","features":[325]},{"name":"FltFreeExtraCreateParameter","features":[325]},{"name":"FltFreeExtraCreateParameterList","features":[304,325]},{"name":"FltFreeFileLock","features":[304,325,305,303,306,308,309,310]},{"name":"FltFreeGenericWorkItem","features":[325]},{"name":"FltFreeOpenReparseList","features":[304,325]},{"name":"FltFreePoolAlignedWithTag","features":[325]},{"name":"FltFreeSecurityDescriptor","features":[325,306]},{"name":"FltFsControlFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetActivityIdCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetBottomInstance","features":[325,303]},{"name":"FltGetContexts","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetContextsEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetDestinationFileNameInformation","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetDeviceObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetDiskDeviceObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetEcpListFromCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetFileContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetFileNameInformation","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetFileNameInformationUnsafe","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetFileSystemType","features":[325,303,326]},{"name":"FltGetFilterFromInstance","features":[325,303]},{"name":"FltGetFilterFromName","features":[325,303]},{"name":"FltGetFilterInformation","features":[325,303,326]},{"name":"FltGetFsZeroingOffset","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetInstanceContext","features":[325,303]},{"name":"FltGetInstanceInformation","features":[325,303,326]},{"name":"FltGetIoAttributionHandleFromCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetIoPriorityHint","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetIoPriorityHintFromCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetIoPriorityHintFromFileObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetIoPriorityHintFromThread","features":[304,325]},{"name":"FltGetIrpName","features":[325]},{"name":"FltGetLowerInstance","features":[325,303]},{"name":"FltGetNewSystemBufferAddress","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetNextExtraCreateParameter","features":[304,325,303]},{"name":"FltGetRequestorProcess","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetRequestorProcessId","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetRequestorProcessIdEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetRequestorSessionId","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetRoutineAddress","features":[325]},{"name":"FltGetSectionContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetStreamContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetStreamHandleContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetSwappedBufferMdlAddress","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetTopInstance","features":[325,303]},{"name":"FltGetTransactionContext","features":[304,325,303]},{"name":"FltGetTunneledName","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetUpperInstance","features":[325,303]},{"name":"FltGetVolumeContext","features":[325,303]},{"name":"FltGetVolumeFromDeviceObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetVolumeFromFileObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltGetVolumeFromInstance","features":[325,303]},{"name":"FltGetVolumeFromName","features":[325,303]},{"name":"FltGetVolumeGuidName","features":[325,303]},{"name":"FltGetVolumeInformation","features":[325,303,326]},{"name":"FltGetVolumeInstanceFromName","features":[325,303]},{"name":"FltGetVolumeName","features":[325,303]},{"name":"FltGetVolumeProperties","features":[325,303]},{"name":"FltInitExtraCreateParameterLookasideList","features":[325]},{"name":"FltInitializeFileLock","features":[304,325,305,303,306,308,309,310]},{"name":"FltInitializeOplock","features":[325]},{"name":"FltInitializePushLock","features":[325]},{"name":"FltInsertExtraCreateParameter","features":[304,325,303]},{"name":"FltIs32bitProcess","features":[304,325,305,303,306,308,309,310]},{"name":"FltIsCallbackDataDirty","features":[304,325,305,303,306,308,309,310]},{"name":"FltIsDirectory","features":[304,325,305,303,306,308,309,310]},{"name":"FltIsEcpAcknowledged","features":[325,303]},{"name":"FltIsEcpFromUserMode","features":[325,303]},{"name":"FltIsFltMgrVolumeDeviceObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltIsIoCanceled","features":[304,325,305,303,306,308,309,310]},{"name":"FltIsIoRedirectionAllowed","features":[325,303]},{"name":"FltIsIoRedirectionAllowedForOperation","features":[304,325,305,303,306,308,309,310]},{"name":"FltIsOperationSynchronous","features":[304,325,305,303,306,308,309,310]},{"name":"FltIsVolumeSnapshot","features":[325,303]},{"name":"FltIsVolumeWritable","features":[325,303]},{"name":"FltLoadFilter","features":[325,303]},{"name":"FltLockUserBuffer","features":[304,325,305,303,306,308,309,310]},{"name":"FltNotifyFilterChangeDirectory","features":[304,325,305,303,306,308,309,310]},{"name":"FltObjectDereference","features":[325]},{"name":"FltObjectReference","features":[325,303]},{"name":"FltOpenVolume","features":[304,325,305,303,306,308,309,310]},{"name":"FltOplockBreakH","features":[304,325,305,303,306,308,309,310]},{"name":"FltOplockBreakToNone","features":[304,325,305,303,306,308,309,310]},{"name":"FltOplockBreakToNoneEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltOplockFsctrl","features":[304,325,305,303,306,308,309,310]},{"name":"FltOplockFsctrlEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltOplockIsFastIoPossible","features":[325,303]},{"name":"FltOplockIsSharedRequest","features":[304,325,305,303,306,308,309,310]},{"name":"FltOplockKeysEqual","features":[304,325,305,303,306,308,309,310]},{"name":"FltParseFileName","features":[325,303]},{"name":"FltParseFileNameInformation","features":[325,303]},{"name":"FltPerformAsynchronousIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltPerformSynchronousIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltPrePrepareComplete","features":[304,325,303]},{"name":"FltPrepareComplete","features":[304,325,303]},{"name":"FltPrepareToReuseEcp","features":[325]},{"name":"FltProcessFileLock","features":[304,325,305,303,306,308,309,310]},{"name":"FltPropagateActivityIdToThread","features":[304,325,305,303,306,308,309,310]},{"name":"FltPropagateIrpExtension","features":[304,325,305,303,306,308,309,310]},{"name":"FltPurgeFileNameInformationCache","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueryDirectoryFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueryDirectoryFileEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueryEaFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueryInformationByName","features":[304,325,305,303,308]},{"name":"FltQueryInformationFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueryQuotaInformationFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltQuerySecurityObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueryVolumeInformation","features":[325,303,308]},{"name":"FltQueryVolumeInformationFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueueDeferredIoWorkItem","features":[304,325,305,303,306,308,309,310]},{"name":"FltQueueGenericWorkItem","features":[325,305,303]},{"name":"FltReadFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltReadFileEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltReferenceContext","features":[325]},{"name":"FltReferenceFileNameInformation","features":[325,303]},{"name":"FltRegisterFilter","features":[304,325,305,303,306,326,308,309,310]},{"name":"FltRegisterForDataScan","features":[325,303]},{"name":"FltReissueSynchronousIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltReleaseContext","features":[325]},{"name":"FltReleaseContexts","features":[325]},{"name":"FltReleaseContextsEx","features":[325]},{"name":"FltReleaseFileNameInformation","features":[325,303]},{"name":"FltReleasePushLock","features":[325]},{"name":"FltReleasePushLockEx","features":[325]},{"name":"FltReleaseResource","features":[304,325,309]},{"name":"FltRemoveExtraCreateParameter","features":[304,325,303]},{"name":"FltRemoveOpenReparseEntry","features":[304,325,305,303,306,308,309,310]},{"name":"FltRequestFileInfoOnCreateCompletion","features":[304,325,305,303,306,308,309,310]},{"name":"FltRequestOperationStatusCallback","features":[304,325,305,303,306,308,309,310]},{"name":"FltRetainSwappedBufferMdlAddress","features":[304,325,305,303,306,308,309,310]},{"name":"FltRetrieveFileInfoOnCreateCompletion","features":[304,325,305,303,306,308,309,310]},{"name":"FltRetrieveFileInfoOnCreateCompletionEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltRetrieveIoPriorityInfo","features":[304,325,305,303,306,308,309,310]},{"name":"FltReuseCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltRollbackComplete","features":[304,325,303]},{"name":"FltRollbackEnlistment","features":[304,325,303]},{"name":"FltSendMessage","features":[325,303]},{"name":"FltSetActivityIdCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetCallbackDataDirty","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetCancelCompletion","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetEaFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetEcpListIntoCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetFileContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetFsZeroingOffset","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetFsZeroingOffsetRequired","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetInformationFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetInstanceContext","features":[325,303]},{"name":"FltSetIoPriorityHintIntoCallbackData","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetIoPriorityHintIntoFileObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetIoPriorityHintIntoThread","features":[304,325,303]},{"name":"FltSetQuotaInformationFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetSecurityObject","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetStreamContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetStreamHandleContext","features":[304,325,305,303,306,308,309,310]},{"name":"FltSetTransactionContext","features":[304,325,303]},{"name":"FltSetVolumeContext","features":[325,303]},{"name":"FltSetVolumeInformation","features":[325,303,308]},{"name":"FltStartFiltering","features":[325,303]},{"name":"FltSupportsFileContexts","features":[304,325,305,303,306,308,309,310]},{"name":"FltSupportsFileContextsEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltSupportsStreamContexts","features":[304,325,305,303,306,308,309,310]},{"name":"FltSupportsStreamHandleContexts","features":[304,325,305,303,306,308,309,310]},{"name":"FltTagFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltTagFileEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltUninitializeFileLock","features":[304,325,305,303,306,308,309,310]},{"name":"FltUninitializeOplock","features":[325]},{"name":"FltUnloadFilter","features":[325,303]},{"name":"FltUnregisterFilter","features":[325]},{"name":"FltUntagFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltVetoBypassIo","features":[304,325,305,303,306,308,309,310]},{"name":"FltWriteFile","features":[304,325,305,303,306,308,309,310]},{"name":"FltWriteFileEx","features":[304,325,305,303,306,308,309,310]},{"name":"FltpTraceRedirectedFileIo","features":[304,325,305,303,306,308,309,310]},{"name":"GUID_ECP_FLT_CREATEFILE_TARGET","features":[325]},{"name":"IRP_MJ_ACQUIRE_FOR_CC_FLUSH","features":[325]},{"name":"IRP_MJ_ACQUIRE_FOR_MOD_WRITE","features":[325]},{"name":"IRP_MJ_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[325]},{"name":"IRP_MJ_FAST_IO_CHECK_IF_POSSIBLE","features":[325]},{"name":"IRP_MJ_MDL_READ","features":[325]},{"name":"IRP_MJ_MDL_READ_COMPLETE","features":[325]},{"name":"IRP_MJ_MDL_WRITE_COMPLETE","features":[325]},{"name":"IRP_MJ_NETWORK_QUERY_OPEN","features":[325]},{"name":"IRP_MJ_OPERATION_END","features":[325]},{"name":"IRP_MJ_PREPARE_MDL_WRITE","features":[325]},{"name":"IRP_MJ_QUERY_OPEN","features":[325]},{"name":"IRP_MJ_RELEASE_FOR_CC_FLUSH","features":[325]},{"name":"IRP_MJ_RELEASE_FOR_MOD_WRITE","features":[325]},{"name":"IRP_MJ_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[325]},{"name":"IRP_MJ_VOLUME_DISMOUNT","features":[325]},{"name":"IRP_MJ_VOLUME_MOUNT","features":[325]},{"name":"PFLTOPLOCK_PREPOST_CALLBACKDATA_ROUTINE","features":[304,325,305,303,306,308,309,310]},{"name":"PFLTOPLOCK_WAIT_COMPLETE_ROUTINE","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_CALLBACK_DATA_QUEUE_ACQUIRE","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_CALLBACK_DATA_QUEUE_COMPLETE_CANCELED_IO","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_CALLBACK_DATA_QUEUE_INSERT_IO","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_CALLBACK_DATA_QUEUE_PEEK_NEXT_IO","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_CALLBACK_DATA_QUEUE_RELEASE","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_CALLBACK_DATA_QUEUE_REMOVE_IO","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_COMPLETED_ASYNC_IO_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_COMPLETE_CANCELED_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_COMPLETE_LOCK_CALLBACK_DATA_ROUTINE","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_CONNECT_NOTIFY","features":[325,303]},{"name":"PFLT_CONTEXT","features":[325]},{"name":"PFLT_CONTEXT_ALLOCATE_CALLBACK","features":[304,325]},{"name":"PFLT_CONTEXT_CLEANUP_CALLBACK","features":[325]},{"name":"PFLT_CONTEXT_FREE_CALLBACK","features":[325]},{"name":"PFLT_DEFERRED_IO_WORKITEM","features":[325]},{"name":"PFLT_DEFERRED_IO_WORKITEM_ROUTINE","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_DISCONNECT_NOTIFY","features":[325]},{"name":"PFLT_FILTER","features":[325]},{"name":"PFLT_FILTER_UNLOAD_CALLBACK","features":[325,303]},{"name":"PFLT_GENERATE_FILE_NAME","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_GENERIC_WORKITEM","features":[325]},{"name":"PFLT_GENERIC_WORKITEM_ROUTINE","features":[325]},{"name":"PFLT_GET_OPERATION_STATUS_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_INSTANCE","features":[325]},{"name":"PFLT_INSTANCE_QUERY_TEARDOWN_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_INSTANCE_SETUP_CALLBACK","features":[304,325,305,303,306,326,308,309,310]},{"name":"PFLT_INSTANCE_TEARDOWN_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_MESSAGE_NOTIFY","features":[325,303]},{"name":"PFLT_NORMALIZE_CONTEXT_CLEANUP","features":[325]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT","features":[325,303]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT_EX","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_PORT","features":[325]},{"name":"PFLT_POST_OPERATION_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_PRE_OPERATION_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_SECTION_CONFLICT_NOTIFICATION_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_TRANSACTION_NOTIFICATION_CALLBACK","features":[304,325,305,303,306,308,309,310]},{"name":"PFLT_VOLUME","features":[325]},{"name":"VOL_PROP_FL_DAX_VOLUME","features":[325]}],"346":[{"name":"NtDeviceIoControlFile","features":[327,303,308]}],"347":[{"name":"ORCloseHive","features":[328,303]},{"name":"ORCloseKey","features":[328,303]},{"name":"ORCreateHive","features":[328,303]},{"name":"ORCreateKey","features":[328,303,306]},{"name":"ORDeleteKey","features":[328,303]},{"name":"ORDeleteValue","features":[328,303]},{"name":"OREnumKey","features":[328,303]},{"name":"OREnumValue","features":[328,303]},{"name":"ORGetKeySecurity","features":[328,303,306]},{"name":"ORGetValue","features":[328,303]},{"name":"ORGetVersion","features":[328,303]},{"name":"ORGetVirtualFlags","features":[328,303]},{"name":"ORHKEY","features":[328]},{"name":"ORMergeHives","features":[328,303]},{"name":"OROpenHive","features":[328,303]},{"name":"OROpenHiveByHandle","features":[328,303]},{"name":"OROpenKey","features":[328,303]},{"name":"ORQueryInfoKey","features":[328,303]},{"name":"ORRenameKey","features":[328,303]},{"name":"ORSaveHive","features":[328,303]},{"name":"ORSetKeySecurity","features":[328,303,306]},{"name":"ORSetValue","features":[328,303]},{"name":"ORSetVirtualFlags","features":[328,303]},{"name":"ORShutdown","features":[328,303]},{"name":"ORStart","features":[328,303]}],"348":[{"name":"KEY_SET_INFORMATION_CLASS","features":[329]},{"name":"KEY_VALUE_ENTRY","features":[329,303]},{"name":"KeyControlFlagsInformation","features":[329]},{"name":"KeySetDebugInformation","features":[329]},{"name":"KeySetHandleTagsInformation","features":[329]},{"name":"KeySetLayerInformation","features":[329]},{"name":"KeySetVirtualizationInformation","features":[329]},{"name":"KeyWow64FlagsInformation","features":[329]},{"name":"KeyWriteTimeInformation","features":[329]},{"name":"MaxKeySetInfoClass","features":[329]},{"name":"NtNotifyChangeMultipleKeys","features":[304,329,303,308]},{"name":"NtQueryMultipleValueKey","features":[329,303]},{"name":"NtRenameKey","features":[329,303]},{"name":"NtSetInformationKey","features":[329,303]},{"name":"REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION","features":[329,303]},{"name":"REG_SET_INFORMATION_KEY_INFORMATION","features":[329]},{"name":"ZwSetInformationKey","features":[329,303]}],"349":[{"name":"NtQuerySystemInformation","features":[330,303]},{"name":"NtQuerySystemTime","features":[330,303]},{"name":"NtQueryTimerResolution","features":[330,303]},{"name":"SYSTEM_INFORMATION_CLASS","features":[330]},{"name":"SystemBasicInformation","features":[330]},{"name":"SystemCodeIntegrityInformation","features":[330]},{"name":"SystemExceptionInformation","features":[330]},{"name":"SystemInterruptInformation","features":[330]},{"name":"SystemLookasideInformation","features":[330]},{"name":"SystemPerformanceInformation","features":[330]},{"name":"SystemPolicyInformation","features":[330]},{"name":"SystemProcessInformation","features":[330]},{"name":"SystemProcessorPerformanceInformation","features":[330]},{"name":"SystemRegistryQuotaInformation","features":[330]},{"name":"SystemTimeOfDayInformation","features":[330]}],"350":[{"name":"ACPIBus","features":[305]},{"name":"ACPI_DEBUGGING_DEVICE_IN_USE","features":[305]},{"name":"ACPI_INTERFACE_STANDARD","features":[304,307,305,303,306,308,309,310]},{"name":"ACPI_INTERFACE_STANDARD2","features":[305,303]},{"name":"ADAPTER_INFO_API_BYPASS","features":[305]},{"name":"ADAPTER_INFO_SYNCHRONOUS_CALLBACK","features":[305]},{"name":"AGP_TARGET_BUS_INTERFACE_STANDARD","features":[305]},{"name":"ALLOCATE_FUNCTION","features":[304,305]},{"name":"ALLOC_DATA_PRAGMA","features":[305]},{"name":"ALLOC_PRAGMA","features":[305]},{"name":"ALTERNATIVE_ARCHITECTURE_TYPE","features":[305]},{"name":"AMD_L1_CACHE_INFO","features":[305]},{"name":"AMD_L2_CACHE_INFO","features":[305]},{"name":"AMD_L3_CACHE_INFO","features":[305]},{"name":"ANY_SIZE","features":[305]},{"name":"APC_LEVEL","features":[305]},{"name":"ARBITER_ACTION","features":[305]},{"name":"ARBITER_ADD_RESERVED_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"ARBITER_BOOT_ALLOCATION_PARAMETERS","features":[305,309]},{"name":"ARBITER_CONFLICT_INFO","features":[304,307,305,303,306,308,309,310]},{"name":"ARBITER_FLAG_BOOT_CONFIG","features":[305]},{"name":"ARBITER_FLAG_OTHER_ENUM","features":[305]},{"name":"ARBITER_FLAG_ROOT_ENUM","features":[305]},{"name":"ARBITER_INTERFACE","features":[304,307,305,303,306,308,309,310]},{"name":"ARBITER_LIST_ENTRY","features":[304,307,305,303,306,308,309,310]},{"name":"ARBITER_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"ARBITER_PARTIAL","features":[305]},{"name":"ARBITER_QUERY_ALLOCATED_RESOURCES_PARAMETERS","features":[305]},{"name":"ARBITER_QUERY_ARBITRATE_PARAMETERS","features":[305,309]},{"name":"ARBITER_QUERY_CONFLICT_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"ARBITER_REQUEST_SOURCE","features":[305]},{"name":"ARBITER_RESULT","features":[305]},{"name":"ARBITER_RETEST_ALLOCATION_PARAMETERS","features":[305,309]},{"name":"ARBITER_TEST_ALLOCATION_PARAMETERS","features":[305,309]},{"name":"ARM64_NT_CONTEXT","features":[305,331]},{"name":"ARM64_PCR_RESERVED_MASK","features":[305]},{"name":"ARM_PROCESSOR_ERROR_SECTION_GUID","features":[305]},{"name":"ATS_DEVICE_SVM_OPTOUT","features":[305]},{"name":"AccessFlagFault","features":[305]},{"name":"AddressSizeFault","features":[305]},{"name":"AgpControl","features":[305]},{"name":"AllLoggerHandlesClass","features":[305]},{"name":"AperturePageSize","features":[305]},{"name":"ApertureSize","features":[305]},{"name":"ApicDestinationModeLogicalClustered","features":[305]},{"name":"ApicDestinationModeLogicalFlat","features":[305]},{"name":"ApicDestinationModePhysical","features":[305]},{"name":"ApicDestinationModeUnknown","features":[305]},{"name":"ArbiterActionAddReserved","features":[305]},{"name":"ArbiterActionBootAllocation","features":[305]},{"name":"ArbiterActionCommitAllocation","features":[305]},{"name":"ArbiterActionQueryAllocatedResources","features":[305]},{"name":"ArbiterActionQueryArbitrate","features":[305]},{"name":"ArbiterActionQueryConflict","features":[305]},{"name":"ArbiterActionRetestAllocation","features":[305]},{"name":"ArbiterActionRollbackAllocation","features":[305]},{"name":"ArbiterActionTestAllocation","features":[305]},{"name":"ArbiterActionWriteReservedResources","features":[305]},{"name":"ArbiterRequestHalReported","features":[305]},{"name":"ArbiterRequestLegacyAssigned","features":[305]},{"name":"ArbiterRequestLegacyReported","features":[305]},{"name":"ArbiterRequestPnpDetected","features":[305]},{"name":"ArbiterRequestPnpEnumerated","features":[305]},{"name":"ArbiterRequestUndefined","features":[305]},{"name":"ArbiterResultExternalConflict","features":[305]},{"name":"ArbiterResultNullRequest","features":[305]},{"name":"ArbiterResultSuccess","features":[305]},{"name":"ArbiterResultUndefined","features":[305]},{"name":"ArcSystem","features":[305]},{"name":"AssignSecurityDescriptor","features":[305]},{"name":"AudioController","features":[305]},{"name":"BDCB_CALLBACK_TYPE","features":[305]},{"name":"BDCB_CLASSIFICATION","features":[305]},{"name":"BDCB_IMAGE_INFORMATION","features":[305,303]},{"name":"BDCB_STATUS_UPDATE_CONTEXT","features":[305]},{"name":"BDCB_STATUS_UPDATE_TYPE","features":[305]},{"name":"BMC_NOTIFY_TYPE_GUID","features":[305]},{"name":"BOOTDISK_INFORMATION","features":[305]},{"name":"BOOTDISK_INFORMATION_EX","features":[305,303]},{"name":"BOOTDISK_INFORMATION_LITE","features":[305]},{"name":"BOOT_DRIVER_CALLBACK_FUNCTION","features":[305,303]},{"name":"BOOT_NOTIFY_TYPE_GUID","features":[305]},{"name":"BOUND_CALLBACK","features":[305]},{"name":"BOUND_CALLBACK_STATUS","features":[305]},{"name":"BUS_DATA_TYPE","features":[305]},{"name":"BUS_INTERFACE_STANDARD","features":[304,307,305,303,306,308,309,310]},{"name":"BUS_QUERY_ID_TYPE","features":[305]},{"name":"BUS_RESOURCE_UPDATE_INTERFACE","features":[305,303]},{"name":"BUS_SPECIFIC_RESET_FLAGS","features":[305]},{"name":"BackgroundWorkQueue","features":[305]},{"name":"BdCbClassificationEnd","features":[305]},{"name":"BdCbClassificationKnownBadImage","features":[305]},{"name":"BdCbClassificationKnownBadImageBootCritical","features":[305]},{"name":"BdCbClassificationKnownGoodImage","features":[305]},{"name":"BdCbClassificationUnknownImage","features":[305]},{"name":"BdCbInitializeImage","features":[305]},{"name":"BdCbStatusPrepareForDependencyLoad","features":[305]},{"name":"BdCbStatusPrepareForDriverLoad","features":[305]},{"name":"BdCbStatusPrepareForUnload","features":[305]},{"name":"BdCbStatusUpdate","features":[305]},{"name":"BoundExceptionContinueSearch","features":[305]},{"name":"BoundExceptionError","features":[305]},{"name":"BoundExceptionHandled","features":[305]},{"name":"BoundExceptionMaximum","features":[305]},{"name":"BufferEmpty","features":[305]},{"name":"BufferFinished","features":[305]},{"name":"BufferIncomplete","features":[305]},{"name":"BufferInserted","features":[305]},{"name":"BufferStarted","features":[305]},{"name":"BusQueryCompatibleIDs","features":[305]},{"name":"BusQueryContainerID","features":[305]},{"name":"BusQueryDeviceID","features":[305]},{"name":"BusQueryDeviceSerialNumber","features":[305]},{"name":"BusQueryHardwareIDs","features":[305]},{"name":"BusQueryInstanceID","features":[305]},{"name":"BusRelations","features":[305]},{"name":"BusWidth32Bits","features":[305]},{"name":"BusWidth64Bits","features":[305]},{"name":"CBus","features":[305]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[305]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION","features":[304,307,305,303,306,322,308,309,310]},{"name":"CLFS_SCAN_BACKWARD","features":[305]},{"name":"CLFS_SCAN_BUFFERED","features":[305]},{"name":"CLFS_SCAN_CLOSE","features":[305]},{"name":"CLFS_SCAN_FORWARD","features":[305]},{"name":"CLFS_SCAN_INIT","features":[305]},{"name":"CLFS_SCAN_INITIALIZED","features":[305]},{"name":"CLOCK1_LEVEL","features":[305]},{"name":"CLOCK2_LEVEL","features":[305]},{"name":"CLOCK_LEVEL","features":[305]},{"name":"CMCI_LEVEL","features":[305]},{"name":"CMCI_NOTIFY_TYPE_GUID","features":[305]},{"name":"CMC_DRIVER_INFO","features":[304,305]},{"name":"CMC_NOTIFY_TYPE_GUID","features":[305]},{"name":"CM_COMPONENT_INFORMATION","features":[305]},{"name":"CM_DISK_GEOMETRY_DEVICE_DATA","features":[305]},{"name":"CM_EISA_FUNCTION_INFORMATION","features":[305]},{"name":"CM_EISA_SLOT_INFORMATION","features":[305]},{"name":"CM_FLOPPY_DEVICE_DATA","features":[305]},{"name":"CM_FULL_RESOURCE_DESCRIPTOR","features":[305]},{"name":"CM_INT13_DRIVE_PARAMETER","features":[305]},{"name":"CM_KEYBOARD_DEVICE_DATA","features":[305]},{"name":"CM_MCA_POS_DATA","features":[305]},{"name":"CM_MONITOR_DEVICE_DATA","features":[305]},{"name":"CM_PARTIAL_RESOURCE_DESCRIPTOR","features":[305]},{"name":"CM_PARTIAL_RESOURCE_LIST","features":[305]},{"name":"CM_PCCARD_DEVICE_DATA","features":[305]},{"name":"CM_PNP_BIOS_DEVICE_NODE","features":[305]},{"name":"CM_PNP_BIOS_INSTALLATION_CHECK","features":[305]},{"name":"CM_POWER_DATA","features":[305,310]},{"name":"CM_RESOURCE_CONNECTION_CLASS_FUNCTION_CONFIG","features":[305]},{"name":"CM_RESOURCE_CONNECTION_CLASS_GPIO","features":[305]},{"name":"CM_RESOURCE_CONNECTION_CLASS_SERIAL","features":[305]},{"name":"CM_RESOURCE_CONNECTION_TYPE_FUNCTION_CONFIG","features":[305]},{"name":"CM_RESOURCE_CONNECTION_TYPE_GPIO_IO","features":[305]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_I2C","features":[305]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_SPI","features":[305]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_UART","features":[305]},{"name":"CM_RESOURCE_DMA_16","features":[305]},{"name":"CM_RESOURCE_DMA_32","features":[305]},{"name":"CM_RESOURCE_DMA_8","features":[305]},{"name":"CM_RESOURCE_DMA_8_AND_16","features":[305]},{"name":"CM_RESOURCE_DMA_BUS_MASTER","features":[305]},{"name":"CM_RESOURCE_DMA_TYPE_A","features":[305]},{"name":"CM_RESOURCE_DMA_TYPE_B","features":[305]},{"name":"CM_RESOURCE_DMA_TYPE_F","features":[305]},{"name":"CM_RESOURCE_DMA_V3","features":[305]},{"name":"CM_RESOURCE_INTERRUPT_LATCHED","features":[305]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_LATCHED_BITS","features":[305]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_SENSITIVE","features":[305]},{"name":"CM_RESOURCE_INTERRUPT_MESSAGE","features":[305]},{"name":"CM_RESOURCE_INTERRUPT_POLICY_INCLUDED","features":[305]},{"name":"CM_RESOURCE_INTERRUPT_SECONDARY_INTERRUPT","features":[305]},{"name":"CM_RESOURCE_INTERRUPT_WAKE_HINT","features":[305]},{"name":"CM_RESOURCE_LIST","features":[305]},{"name":"CM_RESOURCE_MEMORY_24","features":[305]},{"name":"CM_RESOURCE_MEMORY_BAR","features":[305]},{"name":"CM_RESOURCE_MEMORY_CACHEABLE","features":[305]},{"name":"CM_RESOURCE_MEMORY_COMBINEDWRITE","features":[305]},{"name":"CM_RESOURCE_MEMORY_COMPAT_FOR_INACCESSIBLE_RANGE","features":[305]},{"name":"CM_RESOURCE_MEMORY_LARGE","features":[305]},{"name":"CM_RESOURCE_MEMORY_LARGE_40","features":[305]},{"name":"CM_RESOURCE_MEMORY_LARGE_40_MAXLEN","features":[305]},{"name":"CM_RESOURCE_MEMORY_LARGE_48","features":[305]},{"name":"CM_RESOURCE_MEMORY_LARGE_48_MAXLEN","features":[305]},{"name":"CM_RESOURCE_MEMORY_LARGE_64","features":[305]},{"name":"CM_RESOURCE_MEMORY_LARGE_64_MAXLEN","features":[305]},{"name":"CM_RESOURCE_MEMORY_PREFETCHABLE","features":[305]},{"name":"CM_RESOURCE_MEMORY_READ_ONLY","features":[305]},{"name":"CM_RESOURCE_MEMORY_READ_WRITE","features":[305]},{"name":"CM_RESOURCE_MEMORY_WINDOW_DECODE","features":[305]},{"name":"CM_RESOURCE_MEMORY_WRITEABILITY_MASK","features":[305]},{"name":"CM_RESOURCE_MEMORY_WRITE_ONLY","features":[305]},{"name":"CM_RESOURCE_PORT_10_BIT_DECODE","features":[305]},{"name":"CM_RESOURCE_PORT_12_BIT_DECODE","features":[305]},{"name":"CM_RESOURCE_PORT_16_BIT_DECODE","features":[305]},{"name":"CM_RESOURCE_PORT_BAR","features":[305]},{"name":"CM_RESOURCE_PORT_IO","features":[305]},{"name":"CM_RESOURCE_PORT_MEMORY","features":[305]},{"name":"CM_RESOURCE_PORT_PASSIVE_DECODE","features":[305]},{"name":"CM_RESOURCE_PORT_POSITIVE_DECODE","features":[305]},{"name":"CM_RESOURCE_PORT_WINDOW_DECODE","features":[305]},{"name":"CM_ROM_BLOCK","features":[305]},{"name":"CM_SCSI_DEVICE_DATA","features":[305]},{"name":"CM_SERIAL_DEVICE_DATA","features":[305]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[305]},{"name":"CM_SHARE_DISPOSITION","features":[305]},{"name":"CM_SONIC_DEVICE_DATA","features":[305]},{"name":"CM_VIDEO_DEVICE_DATA","features":[305]},{"name":"CONFIGURATION_INFORMATION","features":[305,303]},{"name":"CONFIGURATION_TYPE","features":[305]},{"name":"CONNECT_CURRENT_VERSION","features":[305]},{"name":"CONNECT_FULLY_SPECIFIED","features":[305]},{"name":"CONNECT_FULLY_SPECIFIED_GROUP","features":[305]},{"name":"CONNECT_LINE_BASED","features":[305]},{"name":"CONNECT_MESSAGE_BASED","features":[305]},{"name":"CONNECT_MESSAGE_BASED_PASSIVE","features":[305]},{"name":"CONTROLLER_OBJECT","features":[304,305,303,309]},{"name":"COUNTED_REASON_CONTEXT","features":[305,303]},{"name":"CP15_PCR_RESERVED_MASK","features":[305]},{"name":"CPER_EMPTY_GUID","features":[305]},{"name":"CPE_DRIVER_INFO","features":[304,305]},{"name":"CPE_NOTIFY_TYPE_GUID","features":[305]},{"name":"CP_GET_ERROR","features":[305]},{"name":"CP_GET_NODATA","features":[305]},{"name":"CP_GET_SUCCESS","features":[305]},{"name":"CRASHDUMP_FUNCTIONS_INTERFACE","features":[305,303]},{"name":"CREATE_FILE_TYPE","features":[305]},{"name":"CREATE_USER_PROCESS_ECP_CONTEXT","features":[305]},{"name":"CardPresent","features":[305]},{"name":"CbusConfiguration","features":[305]},{"name":"CdromController","features":[305]},{"name":"CentralProcessor","features":[305]},{"name":"ClfsAddLogContainer","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsAddLogContainerSet","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsAdvanceLogBase","features":[305,303,322]},{"name":"ClfsAlignReservedLog","features":[305,303]},{"name":"ClfsAllocReservedLog","features":[305,303]},{"name":"ClfsClientRecord","features":[305]},{"name":"ClfsCloseAndResetLogFile","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsCloseLogFileObject","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsContainerActive","features":[305]},{"name":"ClfsContainerActivePendingDelete","features":[305]},{"name":"ClfsContainerInactive","features":[305]},{"name":"ClfsContainerInitializing","features":[305]},{"name":"ClfsContainerPendingArchive","features":[305]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[305]},{"name":"ClfsCreateLogFile","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsCreateMarshallingArea","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsCreateMarshallingAreaEx","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsCreateScanContext","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsDataRecord","features":[305]},{"name":"ClfsDeleteLogByPointer","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsDeleteLogFile","features":[305,303]},{"name":"ClfsDeleteMarshallingArea","features":[305,303]},{"name":"ClfsEarlierLsn","features":[305,322]},{"name":"ClfsFinalize","features":[305]},{"name":"ClfsFlushBuffers","features":[305,303]},{"name":"ClfsFlushToLsn","features":[305,303,322]},{"name":"ClfsFreeReservedLog","features":[305,303]},{"name":"ClfsGetContainerName","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsGetIoStatistics","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsGetLogFileInformation","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsInitialize","features":[305,303]},{"name":"ClfsLaterLsn","features":[305,322]},{"name":"ClfsLsnBlockOffset","features":[305,322]},{"name":"ClfsLsnContainer","features":[305,322]},{"name":"ClfsLsnCreate","features":[305,322]},{"name":"ClfsLsnDifference","features":[305,303,322]},{"name":"ClfsLsnEqual","features":[305,303,322]},{"name":"ClfsLsnGreater","features":[305,303,322]},{"name":"ClfsLsnInvalid","features":[305,303,322]},{"name":"ClfsLsnLess","features":[305,303,322]},{"name":"ClfsLsnNull","features":[305,303,322]},{"name":"ClfsLsnRecordSequence","features":[305,322]},{"name":"ClfsMgmtDeregisterManagedClient","features":[305,303]},{"name":"ClfsMgmtHandleLogFileFull","features":[305,303]},{"name":"ClfsMgmtInstallPolicy","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsMgmtQueryPolicy","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsMgmtRegisterManagedClient","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsMgmtRemovePolicy","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsMgmtSetLogFileSize","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsMgmtSetLogFileSizeAsClient","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsMgmtTailAdvanceFailure","features":[305,303]},{"name":"ClfsNullRecord","features":[305]},{"name":"ClfsQueryLogFileInformation","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsReadLogRecord","features":[305,303,322]},{"name":"ClfsReadNextLogRecord","features":[305,303,322]},{"name":"ClfsReadPreviousRestartArea","features":[305,303,322]},{"name":"ClfsReadRestartArea","features":[305,303,322]},{"name":"ClfsRemoveLogContainer","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsRemoveLogContainerSet","features":[304,307,305,303,306,308,309,310]},{"name":"ClfsReserveAndAppendLog","features":[305,303,322]},{"name":"ClfsReserveAndAppendLogAligned","features":[305,303,322]},{"name":"ClfsRestartRecord","features":[305]},{"name":"ClfsScanLogContainers","features":[305,303,322]},{"name":"ClfsSetArchiveTail","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsSetEndOfLog","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsSetLogFileInformation","features":[304,307,305,303,306,322,308,309,310]},{"name":"ClfsTerminateReadLog","features":[305,303]},{"name":"ClfsWriteRestartArea","features":[305,303,322]},{"name":"ClsContainerActive","features":[305]},{"name":"ClsContainerActivePendingDelete","features":[305]},{"name":"ClsContainerInactive","features":[305]},{"name":"ClsContainerInitializing","features":[305]},{"name":"ClsContainerPendingArchive","features":[305]},{"name":"ClsContainerPendingArchiveAndDelete","features":[305]},{"name":"CmCallbackGetKeyObjectID","features":[305,303]},{"name":"CmCallbackGetKeyObjectIDEx","features":[305,303]},{"name":"CmCallbackReleaseKeyObjectIDEx","features":[305,303]},{"name":"CmGetBoundTransaction","features":[305]},{"name":"CmGetCallbackVersion","features":[305]},{"name":"CmRegisterCallback","features":[305,303]},{"name":"CmRegisterCallbackEx","features":[305,303]},{"name":"CmResourceShareDeviceExclusive","features":[305]},{"name":"CmResourceShareDriverExclusive","features":[305]},{"name":"CmResourceShareShared","features":[305]},{"name":"CmResourceShareUndetermined","features":[305]},{"name":"CmResourceTypeBusNumber","features":[305]},{"name":"CmResourceTypeConfigData","features":[305]},{"name":"CmResourceTypeConnection","features":[305]},{"name":"CmResourceTypeDevicePrivate","features":[305]},{"name":"CmResourceTypeDeviceSpecific","features":[305]},{"name":"CmResourceTypeDma","features":[305]},{"name":"CmResourceTypeInterrupt","features":[305]},{"name":"CmResourceTypeMaximum","features":[305]},{"name":"CmResourceTypeMemory","features":[305]},{"name":"CmResourceTypeMemoryLarge","features":[305]},{"name":"CmResourceTypeMfCardConfig","features":[305]},{"name":"CmResourceTypeNonArbitrated","features":[305]},{"name":"CmResourceTypeNull","features":[305]},{"name":"CmResourceTypePcCardConfig","features":[305]},{"name":"CmResourceTypePort","features":[305]},{"name":"CmSetCallbackObjectContext","features":[305,303]},{"name":"CmUnRegisterCallback","features":[305,303]},{"name":"Cmos","features":[305]},{"name":"CommonBufferConfigTypeHardwareAccessPermissions","features":[305]},{"name":"CommonBufferConfigTypeLogicalAddressLimits","features":[305]},{"name":"CommonBufferConfigTypeMax","features":[305]},{"name":"CommonBufferConfigTypeSubSection","features":[305]},{"name":"CommonBufferHardwareAccessMax","features":[305]},{"name":"CommonBufferHardwareAccessReadOnly","features":[305]},{"name":"CommonBufferHardwareAccessReadWrite","features":[305]},{"name":"CommonBufferHardwareAccessWriteOnly","features":[305]},{"name":"Compatible","features":[305]},{"name":"ConfigurationSpaceUndefined","features":[305]},{"name":"ContinueCompletion","features":[305]},{"name":"CreateFileTypeMailslot","features":[305]},{"name":"CreateFileTypeNamedPipe","features":[305]},{"name":"CreateFileTypeNone","features":[305]},{"name":"CriticalWorkQueue","features":[305]},{"name":"CustomPriorityWorkQueue","features":[305]},{"name":"D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[305,303]},{"name":"D3COLD_LAST_TRANSITION_STATUS","features":[305]},{"name":"D3COLD_REQUEST_AUX_POWER","features":[305,303]},{"name":"D3COLD_REQUEST_CORE_POWER_RAIL","features":[305,303]},{"name":"D3COLD_REQUEST_PERST_DELAY","features":[305,303]},{"name":"D3COLD_SUPPORT_INTERFACE","features":[305,303]},{"name":"D3COLD_SUPPORT_INTERFACE_VERSION","features":[305]},{"name":"DBG_DEVICE_FLAG_BARS_MAPPED","features":[305]},{"name":"DBG_DEVICE_FLAG_HAL_SCRATCH_ALLOCATED","features":[305]},{"name":"DBG_DEVICE_FLAG_HOST_VISIBLE_ALLOCATED","features":[305]},{"name":"DBG_DEVICE_FLAG_SCRATCH_ALLOCATED","features":[305]},{"name":"DBG_DEVICE_FLAG_SYNTHETIC","features":[305]},{"name":"DBG_DEVICE_FLAG_UNCACHED_MEMORY","features":[305]},{"name":"DBG_STATUS_BUGCHECK_FIRST","features":[305]},{"name":"DBG_STATUS_BUGCHECK_SECOND","features":[305]},{"name":"DBG_STATUS_CONTROL_C","features":[305]},{"name":"DBG_STATUS_DEBUG_CONTROL","features":[305]},{"name":"DBG_STATUS_FATAL","features":[305]},{"name":"DBG_STATUS_SYSRQ","features":[305]},{"name":"DBG_STATUS_WORKER","features":[305]},{"name":"DEBUGGING_DEVICE_IN_USE","features":[305]},{"name":"DEBUGGING_DEVICE_IN_USE_INFORMATION","features":[305]},{"name":"DEBUG_DEVICE_ADDRESS","features":[305,303]},{"name":"DEBUG_DEVICE_DESCRIPTOR","features":[305,303]},{"name":"DEBUG_EFI_IOMMU_DATA","features":[305]},{"name":"DEBUG_MEMORY_REQUIREMENTS","features":[305,303]},{"name":"DEBUG_TRANSPORT_DATA","features":[305,303]},{"name":"DEFAULT_DEVICE_DRIVER_CREATOR_GUID","features":[305]},{"name":"DEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[305,303]},{"name":"DEVICE_BUS_SPECIFIC_RESET_INFO","features":[305]},{"name":"DEVICE_BUS_SPECIFIC_RESET_TYPE","features":[305]},{"name":"DEVICE_CAPABILITIES","features":[305,310]},{"name":"DEVICE_CHANGE_COMPLETE_CALLBACK","features":[305]},{"name":"DEVICE_DESCRIPTION","features":[305,303]},{"name":"DEVICE_DESCRIPTION_VERSION","features":[305]},{"name":"DEVICE_DESCRIPTION_VERSION1","features":[305]},{"name":"DEVICE_DESCRIPTION_VERSION2","features":[305]},{"name":"DEVICE_DESCRIPTION_VERSION3","features":[305]},{"name":"DEVICE_DIRECTORY_TYPE","features":[305]},{"name":"DEVICE_DRIVER_NOTIFY_TYPE_GUID","features":[305]},{"name":"DEVICE_FAULT_CONFIGURATION","features":[305]},{"name":"DEVICE_FLAGS","features":[305]},{"name":"DEVICE_INSTALL_STATE","features":[305]},{"name":"DEVICE_INTERFACE_CHANGE_NOTIFICATION","features":[305,303]},{"name":"DEVICE_INTERFACE_INCLUDE_NONACTIVE","features":[305]},{"name":"DEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[305,303]},{"name":"DEVICE_REGISTRY_PROPERTY","features":[305]},{"name":"DEVICE_RELATIONS","features":[304,307,305,303,306,308,309,310]},{"name":"DEVICE_RELATION_TYPE","features":[305]},{"name":"DEVICE_REMOVAL_POLICY","features":[305]},{"name":"DEVICE_RESET_COMPLETION","features":[305,303]},{"name":"DEVICE_RESET_HANDLER","features":[305,303]},{"name":"DEVICE_RESET_INTERFACE_STANDARD","features":[305,303]},{"name":"DEVICE_RESET_INTERFACE_VERSION","features":[305]},{"name":"DEVICE_RESET_INTERFACE_VERSION_1","features":[305]},{"name":"DEVICE_RESET_INTERFACE_VERSION_2","features":[305]},{"name":"DEVICE_RESET_INTERFACE_VERSION_3","features":[305]},{"name":"DEVICE_RESET_STATUS_FLAGS","features":[305]},{"name":"DEVICE_RESET_TYPE","features":[305]},{"name":"DEVICE_TEXT_TYPE","features":[305]},{"name":"DEVICE_USAGE_NOTIFICATION_TYPE","features":[305]},{"name":"DEVICE_WAKE_DEPTH","features":[305]},{"name":"DIRECTORY_CREATE_OBJECT","features":[305]},{"name":"DIRECTORY_CREATE_SUBDIRECTORY","features":[305]},{"name":"DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[305]},{"name":"DIRECTORY_QUERY","features":[305]},{"name":"DIRECTORY_TRAVERSE","features":[305]},{"name":"DISK_SIGNATURE","features":[305]},{"name":"DISPATCH_LEVEL","features":[305]},{"name":"DMAV3_TRANFER_WIDTH_128","features":[305]},{"name":"DMAV3_TRANFER_WIDTH_16","features":[305]},{"name":"DMAV3_TRANFER_WIDTH_256","features":[305]},{"name":"DMAV3_TRANFER_WIDTH_32","features":[305]},{"name":"DMAV3_TRANFER_WIDTH_64","features":[305]},{"name":"DMAV3_TRANFER_WIDTH_8","features":[305]},{"name":"DMA_ADAPTER","features":[304,307,305,303,306,308,309,310]},{"name":"DMA_ADAPTER_INFO","features":[305,303]},{"name":"DMA_ADAPTER_INFO_CRASHDUMP","features":[305,303]},{"name":"DMA_ADAPTER_INFO_V1","features":[305]},{"name":"DMA_ADAPTER_INFO_VERSION1","features":[305]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION","features":[305]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_ACCESS_TYPE","features":[305]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_TYPE","features":[305]},{"name":"DMA_COMPLETION_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"DMA_COMPLETION_STATUS","features":[305]},{"name":"DMA_CONFIGURATION_BYTE0","features":[305]},{"name":"DMA_CONFIGURATION_BYTE1","features":[305]},{"name":"DMA_FAIL_ON_BOUNCE","features":[305]},{"name":"DMA_IOMMU_INTERFACE","features":[305,303]},{"name":"DMA_IOMMU_INTERFACE_EX","features":[305,303]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION","features":[305]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_1","features":[305]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_2","features":[305]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MAX","features":[305]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MIN","features":[305]},{"name":"DMA_IOMMU_INTERFACE_V1","features":[305,303]},{"name":"DMA_IOMMU_INTERFACE_V2","features":[305,303]},{"name":"DMA_IOMMU_INTERFACE_VERSION","features":[305]},{"name":"DMA_IOMMU_INTERFACE_VERSION_1","features":[305]},{"name":"DMA_OPERATIONS","features":[304,307,305,303,306,308,309,310]},{"name":"DMA_SPEED","features":[305]},{"name":"DMA_SYNCHRONOUS_CALLBACK","features":[305]},{"name":"DMA_TRANSFER_CONTEXT_SIZE_V1","features":[305]},{"name":"DMA_TRANSFER_CONTEXT_VERSION1","features":[305]},{"name":"DMA_TRANSFER_INFO","features":[305]},{"name":"DMA_TRANSFER_INFO_V1","features":[305]},{"name":"DMA_TRANSFER_INFO_V2","features":[305]},{"name":"DMA_TRANSFER_INFO_VERSION1","features":[305]},{"name":"DMA_TRANSFER_INFO_VERSION2","features":[305]},{"name":"DMA_WIDTH","features":[305]},{"name":"DMA_ZERO_BUFFERS","features":[305]},{"name":"DOMAIN_COMMON_BUFFER_LARGE_PAGE","features":[305]},{"name":"DOMAIN_CONFIGURATION","features":[305,303]},{"name":"DOMAIN_CONFIGURATION_ARCH","features":[305]},{"name":"DOMAIN_CONFIGURATION_ARM64","features":[305,303]},{"name":"DOMAIN_CONFIGURATION_X64","features":[305,303]},{"name":"DPC_NORMAL","features":[305]},{"name":"DPC_THREADED","features":[305]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK","features":[305]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_REVISION_1","features":[305]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_SIGNATURE","features":[305]},{"name":"DRIVER_DIRECTORY_TYPE","features":[305]},{"name":"DRIVER_LIST_CONTROL","features":[304,307,305,303,306,308,309,310]},{"name":"DRIVER_REGKEY_TYPE","features":[305]},{"name":"DRIVER_RUNTIME_INIT_FLAGS","features":[305]},{"name":"DRIVER_VERIFIER_FORCE_IRQL_CHECKING","features":[305]},{"name":"DRIVER_VERIFIER_INJECT_ALLOCATION_FAILURES","features":[305]},{"name":"DRIVER_VERIFIER_IO_CHECKING","features":[305]},{"name":"DRIVER_VERIFIER_SPECIAL_POOLING","features":[305]},{"name":"DRIVER_VERIFIER_THUNK_PAIRS","features":[305]},{"name":"DRIVER_VERIFIER_TRACK_POOL_ALLOCATIONS","features":[305]},{"name":"DRS_LEVEL","features":[305]},{"name":"DRVO_BOOTREINIT_REGISTERED","features":[305]},{"name":"DRVO_BUILTIN_DRIVER","features":[305]},{"name":"DRVO_INITIALIZED","features":[305]},{"name":"DRVO_LEGACY_DRIVER","features":[305]},{"name":"DRVO_LEGACY_RESOURCES","features":[305]},{"name":"DRVO_REINIT_REGISTERED","features":[305]},{"name":"DRVO_UNLOAD_INVOKED","features":[305]},{"name":"DUPLICATE_SAME_ATTRIBUTES","features":[305]},{"name":"DbgBreakPointWithStatus","features":[305]},{"name":"DbgPrint","features":[305]},{"name":"DbgPrintEx","features":[305]},{"name":"DbgPrintReturnControlC","features":[305]},{"name":"DbgPrompt","features":[305]},{"name":"DbgQueryDebugFilterState","features":[305,303]},{"name":"DbgSetDebugFilterState","features":[305,303]},{"name":"DbgSetDebugPrintCallback","features":[305,303,309]},{"name":"DeallocateObject","features":[305]},{"name":"DeallocateObjectKeepRegisters","features":[305]},{"name":"DelayExecution","features":[305]},{"name":"DelayedWorkQueue","features":[305]},{"name":"DeleteSecurityDescriptor","features":[305]},{"name":"DeviceDirectoryData","features":[305]},{"name":"DevicePowerState","features":[305]},{"name":"DevicePropertyAddress","features":[305]},{"name":"DevicePropertyAllocatedResources","features":[305]},{"name":"DevicePropertyBootConfiguration","features":[305]},{"name":"DevicePropertyBootConfigurationTranslated","features":[305]},{"name":"DevicePropertyBusNumber","features":[305]},{"name":"DevicePropertyBusTypeGuid","features":[305]},{"name":"DevicePropertyClassGuid","features":[305]},{"name":"DevicePropertyClassName","features":[305]},{"name":"DevicePropertyCompatibleIDs","features":[305]},{"name":"DevicePropertyContainerID","features":[305]},{"name":"DevicePropertyDeviceDescription","features":[305]},{"name":"DevicePropertyDriverKeyName","features":[305]},{"name":"DevicePropertyEnumeratorName","features":[305]},{"name":"DevicePropertyFriendlyName","features":[305]},{"name":"DevicePropertyHardwareID","features":[305]},{"name":"DevicePropertyInstallState","features":[305]},{"name":"DevicePropertyLegacyBusType","features":[305]},{"name":"DevicePropertyLocationInformation","features":[305]},{"name":"DevicePropertyManufacturer","features":[305]},{"name":"DevicePropertyPhysicalDeviceObjectName","features":[305]},{"name":"DevicePropertyRemovalPolicy","features":[305]},{"name":"DevicePropertyResourceRequirements","features":[305]},{"name":"DevicePropertyUINumber","features":[305]},{"name":"DeviceTextDescription","features":[305]},{"name":"DeviceTextLocationInformation","features":[305]},{"name":"DeviceUsageTypeBoot","features":[305]},{"name":"DeviceUsageTypeDumpFile","features":[305]},{"name":"DeviceUsageTypeGuestAssigned","features":[305]},{"name":"DeviceUsageTypeHibernation","features":[305]},{"name":"DeviceUsageTypePaging","features":[305]},{"name":"DeviceUsageTypePostDisplay","features":[305]},{"name":"DeviceUsageTypeUndefined","features":[305]},{"name":"DeviceWakeDepthD0","features":[305]},{"name":"DeviceWakeDepthD1","features":[305]},{"name":"DeviceWakeDepthD2","features":[305]},{"name":"DeviceWakeDepthD3cold","features":[305]},{"name":"DeviceWakeDepthD3hot","features":[305]},{"name":"DeviceWakeDepthMaximum","features":[305]},{"name":"DeviceWakeDepthNotWakeable","features":[305]},{"name":"DirectoryNotifyExtendedInformation","features":[305]},{"name":"DirectoryNotifyFullInformation","features":[305]},{"name":"DirectoryNotifyInformation","features":[305]},{"name":"DirectoryNotifyMaximumInformation","features":[305]},{"name":"DisabledControl","features":[305]},{"name":"DiskController","features":[305]},{"name":"DiskIoNotifyRoutinesClass","features":[305]},{"name":"DiskPeripheral","features":[305]},{"name":"DisplayController","features":[305]},{"name":"DmaAborted","features":[305]},{"name":"DmaCancelled","features":[305]},{"name":"DmaComplete","features":[305]},{"name":"DmaError","features":[305]},{"name":"DockingInformation","features":[305]},{"name":"DomainConfigurationArm64","features":[305]},{"name":"DomainConfigurationInvalid","features":[305]},{"name":"DomainConfigurationX64","features":[305]},{"name":"DomainTypeMax","features":[305]},{"name":"DomainTypePassThrough","features":[305]},{"name":"DomainTypeTranslate","features":[305]},{"name":"DomainTypeUnmanaged","features":[305]},{"name":"DriverDirectoryData","features":[305]},{"name":"DriverDirectoryImage","features":[305]},{"name":"DriverDirectorySharedData","features":[305]},{"name":"DriverRegKeyParameters","features":[305]},{"name":"DriverRegKeyPersistentState","features":[305]},{"name":"DriverRegKeySharedPersistentState","features":[305]},{"name":"DrvRtPoolNxOptIn","features":[305]},{"name":"DtiAdapter","features":[305]},{"name":"EFI_ACPI_RAS_SIGNAL_TABLE","features":[305]},{"name":"EFLAG_SIGN","features":[305]},{"name":"EFLAG_ZERO","features":[305]},{"name":"EISA_DMA_CONFIGURATION","features":[305]},{"name":"EISA_EMPTY_SLOT","features":[305]},{"name":"EISA_FREE_FORM_DATA","features":[305]},{"name":"EISA_FUNCTION_ENABLED","features":[305]},{"name":"EISA_HAS_DMA_ENTRY","features":[305]},{"name":"EISA_HAS_IRQ_ENTRY","features":[305]},{"name":"EISA_HAS_MEMORY_ENTRY","features":[305]},{"name":"EISA_HAS_PORT_INIT_ENTRY","features":[305]},{"name":"EISA_HAS_PORT_RANGE","features":[305]},{"name":"EISA_HAS_TYPE_ENTRY","features":[305]},{"name":"EISA_INVALID_BIOS_CALL","features":[305]},{"name":"EISA_INVALID_CONFIGURATION","features":[305]},{"name":"EISA_INVALID_FUNCTION","features":[305]},{"name":"EISA_INVALID_SLOT","features":[305]},{"name":"EISA_IRQ_CONFIGURATION","features":[305]},{"name":"EISA_IRQ_DESCRIPTOR","features":[305]},{"name":"EISA_MEMORY_CONFIGURATION","features":[305]},{"name":"EISA_MEMORY_TYPE","features":[305]},{"name":"EISA_MEMORY_TYPE_RAM","features":[305]},{"name":"EISA_MORE_ENTRIES","features":[305]},{"name":"EISA_PORT_CONFIGURATION","features":[305]},{"name":"EISA_PORT_DESCRIPTOR","features":[305]},{"name":"EISA_SYSTEM_MEMORY","features":[305]},{"name":"ENABLE_VIRTUALIZATION","features":[305,303]},{"name":"ERROR_LOG_LIMIT_SIZE","features":[305]},{"name":"ERROR_MAJOR_REVISION_SAL_03_00","features":[305]},{"name":"ERROR_MEMORY_GUID","features":[305]},{"name":"ERROR_MINOR_REVISION_SAL_03_00","features":[305]},{"name":"ERROR_PCI_BUS_GUID","features":[305]},{"name":"ERROR_PCI_COMPONENT_GUID","features":[305]},{"name":"ERROR_PLATFORM_BUS_GUID","features":[305]},{"name":"ERROR_PLATFORM_HOST_CONTROLLER_GUID","features":[305]},{"name":"ERROR_PLATFORM_SPECIFIC_GUID","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_MASK","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_SHIFT","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_MASK","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_SHIFT","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_MASK","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_SHIFT","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_MASK","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_SHIFT","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_MASK","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_SHIFT","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_MASK","features":[305]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_SHIFT","features":[305]},{"name":"ERROR_SMBIOS_GUID","features":[305]},{"name":"ERROR_SYSTEM_EVENT_LOG_GUID","features":[305]},{"name":"ERRTYP_BUS","features":[305]},{"name":"ERRTYP_CACHE","features":[305]},{"name":"ERRTYP_FLOW","features":[305]},{"name":"ERRTYP_FUNCTION","features":[305]},{"name":"ERRTYP_IMPROPER","features":[305]},{"name":"ERRTYP_INTERNAL","features":[305]},{"name":"ERRTYP_LOSSOFLOCKSTEP","features":[305]},{"name":"ERRTYP_MAP","features":[305]},{"name":"ERRTYP_MEM","features":[305]},{"name":"ERRTYP_PARITY","features":[305]},{"name":"ERRTYP_PATHERROR","features":[305]},{"name":"ERRTYP_POISONED","features":[305]},{"name":"ERRTYP_PROTOCOL","features":[305]},{"name":"ERRTYP_RESPONSE","features":[305]},{"name":"ERRTYP_SELFTEST","features":[305]},{"name":"ERRTYP_TIMEOUT","features":[305]},{"name":"ERRTYP_TLB","features":[305]},{"name":"ERRTYP_UNIMPL","features":[305]},{"name":"ETWENABLECALLBACK","features":[305,332]},{"name":"ETW_TRACE_SESSION_SETTINGS","features":[305]},{"name":"EVENT_QUERY_STATE","features":[305]},{"name":"EXCEPTION_ALIGNMENT_CHECK","features":[305]},{"name":"EXCEPTION_BOUND_CHECK","features":[305]},{"name":"EXCEPTION_CP_FAULT","features":[305]},{"name":"EXCEPTION_DEBUG","features":[305]},{"name":"EXCEPTION_DIVIDED_BY_ZERO","features":[305]},{"name":"EXCEPTION_DOUBLE_FAULT","features":[305]},{"name":"EXCEPTION_GP_FAULT","features":[305]},{"name":"EXCEPTION_INT3","features":[305]},{"name":"EXCEPTION_INVALID_OPCODE","features":[305]},{"name":"EXCEPTION_INVALID_TSS","features":[305]},{"name":"EXCEPTION_NMI","features":[305]},{"name":"EXCEPTION_NPX_ERROR","features":[305]},{"name":"EXCEPTION_NPX_NOT_AVAILABLE","features":[305]},{"name":"EXCEPTION_NPX_OVERRUN","features":[305]},{"name":"EXCEPTION_RESERVED_TRAP","features":[305]},{"name":"EXCEPTION_SEGMENT_NOT_PRESENT","features":[305]},{"name":"EXCEPTION_SE_FAULT","features":[305]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[305]},{"name":"EXCEPTION_STACK_FAULT","features":[305]},{"name":"EXCEPTION_VIRTUALIZATION_FAULT","features":[305]},{"name":"EXPAND_STACK_CALLOUT","features":[305]},{"name":"EXTENDED_AGP_REGISTER","features":[305]},{"name":"EXTENDED_CREATE_INFORMATION","features":[305]},{"name":"EXTENDED_CREATE_INFORMATION_32","features":[305]},{"name":"EXTINT_NOTIFY_TYPE_GUID","features":[305]},{"name":"EXT_CALLBACK","features":[304,305]},{"name":"EXT_DELETE_CALLBACK","features":[305]},{"name":"EXT_DELETE_PARAMETERS","features":[305]},{"name":"EX_CALLBACK_FUNCTION","features":[305,303]},{"name":"EX_CARR_ALLOCATE_NONPAGED_POOL","features":[305]},{"name":"EX_CARR_ALLOCATE_PAGED_POOL","features":[305]},{"name":"EX_CARR_DISABLE_EXPANSION","features":[305]},{"name":"EX_CREATE_FLAG_FILE_DEST_OPEN_FOR_COPY","features":[305]},{"name":"EX_CREATE_FLAG_FILE_SOURCE_OPEN_FOR_COPY","features":[305]},{"name":"EX_DEFAULT_PUSH_LOCK_FLAGS","features":[305]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_FAIL_NO_RAISE","features":[305]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_RAISE_ON_FAIL","features":[305]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_BASE","features":[305]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_LIMIT","features":[305]},{"name":"EX_POOL_PRIORITY","features":[305]},{"name":"EX_RUNDOWN_ACTIVE","features":[305]},{"name":"EX_RUNDOWN_COUNT_SHIFT","features":[305]},{"name":"EX_RUNDOWN_REF","features":[305]},{"name":"EX_TIMER_HIGH_RESOLUTION","features":[305]},{"name":"EX_TIMER_NO_WAKE","features":[305]},{"name":"Eisa","features":[305]},{"name":"EisaAdapter","features":[305]},{"name":"EisaConfiguration","features":[305]},{"name":"EjectionRelations","features":[305]},{"name":"EndAlternatives","features":[305]},{"name":"EtwActivityIdControl","features":[305,303]},{"name":"EtwEventEnabled","features":[305,303,332]},{"name":"EtwProviderEnabled","features":[305,303]},{"name":"EtwRegister","features":[305,303]},{"name":"EtwSetInformation","features":[305,303,332]},{"name":"EtwUnregister","features":[305,303]},{"name":"EtwWrite","features":[305,303,332]},{"name":"EtwWriteEx","features":[305,303,332]},{"name":"EtwWriteString","features":[305,303]},{"name":"EtwWriteTransfer","features":[305,303,332]},{"name":"EventCategoryDeviceInterfaceChange","features":[305]},{"name":"EventCategoryHardwareProfileChange","features":[305]},{"name":"EventCategoryKernelSoftRestart","features":[305]},{"name":"EventCategoryReserved","features":[305]},{"name":"EventCategoryTargetDeviceChange","features":[305]},{"name":"EventLoggerHandleClass","features":[305]},{"name":"ExAcquireFastMutex","features":[304,305,303,309]},{"name":"ExAcquireFastMutexUnsafe","features":[304,305,303,309]},{"name":"ExAcquirePushLockExclusiveEx","features":[305]},{"name":"ExAcquirePushLockSharedEx","features":[305]},{"name":"ExAcquireResourceExclusiveLite","features":[304,305,303,309]},{"name":"ExAcquireResourceSharedLite","features":[304,305,303,309]},{"name":"ExAcquireRundownProtection","features":[305,303]},{"name":"ExAcquireRundownProtectionCacheAware","features":[304,305,303]},{"name":"ExAcquireRundownProtectionCacheAwareEx","features":[304,305,303]},{"name":"ExAcquireRundownProtectionEx","features":[305,303]},{"name":"ExAcquireSharedStarveExclusive","features":[304,305,303,309]},{"name":"ExAcquireSharedWaitForExclusive","features":[304,305,303,309]},{"name":"ExAcquireSpinLockExclusive","features":[305]},{"name":"ExAcquireSpinLockExclusiveAtDpcLevel","features":[305]},{"name":"ExAcquireSpinLockShared","features":[305]},{"name":"ExAcquireSpinLockSharedAtDpcLevel","features":[305]},{"name":"ExAllocateCacheAwareRundownProtection","features":[304,305]},{"name":"ExAllocatePool","features":[304,305]},{"name":"ExAllocatePool2","features":[305]},{"name":"ExAllocatePool3","features":[305,303]},{"name":"ExAllocatePoolWithQuota","features":[304,305]},{"name":"ExAllocatePoolWithQuotaTag","features":[304,305]},{"name":"ExAllocatePoolWithTag","features":[304,305]},{"name":"ExAllocatePoolWithTagPriority","features":[304,305]},{"name":"ExAllocateTimer","features":[304,305]},{"name":"ExCancelTimer","features":[304,305,303]},{"name":"ExCleanupRundownProtectionCacheAware","features":[304,305]},{"name":"ExConvertExclusiveToSharedLite","features":[304,305,309]},{"name":"ExCreateCallback","features":[304,305,303]},{"name":"ExCreatePool","features":[305,303]},{"name":"ExDeleteResourceLite","features":[304,305,303,309]},{"name":"ExDeleteTimer","features":[304,305,303]},{"name":"ExDestroyPool","features":[305,303]},{"name":"ExEnterCriticalRegionAndAcquireResourceExclusive","features":[304,305,309]},{"name":"ExEnterCriticalRegionAndAcquireResourceShared","features":[304,305,309]},{"name":"ExEnterCriticalRegionAndAcquireSharedWaitForExclusive","features":[304,305,309]},{"name":"ExEnumerateSystemFirmwareTables","features":[305,303]},{"name":"ExExtendZone","features":[305,303,309]},{"name":"ExFreeCacheAwareRundownProtection","features":[304,305]},{"name":"ExFreePool","features":[305]},{"name":"ExFreePool2","features":[305,303]},{"name":"ExFreePoolWithTag","features":[305]},{"name":"ExGetExclusiveWaiterCount","features":[304,305,309]},{"name":"ExGetFirmwareEnvironmentVariable","features":[305,303]},{"name":"ExGetFirmwareType","features":[305,333]},{"name":"ExGetPreviousMode","features":[305]},{"name":"ExGetSharedWaiterCount","features":[304,305,309]},{"name":"ExGetSystemFirmwareTable","features":[305,303]},{"name":"ExInitializePushLock","features":[305]},{"name":"ExInitializeResourceLite","features":[304,305,303,309]},{"name":"ExInitializeRundownProtection","features":[305]},{"name":"ExInitializeRundownProtectionCacheAware","features":[304,305]},{"name":"ExInitializeRundownProtectionCacheAwareEx","features":[304,305]},{"name":"ExInitializeZone","features":[305,303,309]},{"name":"ExInterlockedAddLargeInteger","features":[305]},{"name":"ExInterlockedExtendZone","features":[305,303,309]},{"name":"ExIsManufacturingModeEnabled","features":[305,303]},{"name":"ExIsProcessorFeaturePresent","features":[305,303]},{"name":"ExIsResourceAcquiredExclusiveLite","features":[304,305,303,309]},{"name":"ExIsResourceAcquiredSharedLite","features":[304,305,309]},{"name":"ExIsSoftBoot","features":[305,303]},{"name":"ExLocalTimeToSystemTime","features":[305]},{"name":"ExNotifyCallback","features":[305]},{"name":"ExQueryTimerResolution","features":[305]},{"name":"ExQueueWorkItem","features":[304,305,309]},{"name":"ExRaiseAccessViolation","features":[305]},{"name":"ExRaiseDatatypeMisalignment","features":[305]},{"name":"ExRaiseStatus","features":[305,303]},{"name":"ExReInitializeRundownProtection","features":[305]},{"name":"ExReInitializeRundownProtectionCacheAware","features":[304,305]},{"name":"ExRegisterCallback","features":[304,305]},{"name":"ExReinitializeResourceLite","features":[304,305,303,309]},{"name":"ExReleaseFastMutex","features":[304,305,303,309]},{"name":"ExReleaseFastMutexUnsafe","features":[304,305,303,309]},{"name":"ExReleasePushLockExclusiveEx","features":[305]},{"name":"ExReleasePushLockSharedEx","features":[305]},{"name":"ExReleaseResourceAndLeaveCriticalRegion","features":[304,305,309]},{"name":"ExReleaseResourceForThreadLite","features":[304,305,309]},{"name":"ExReleaseResourceLite","features":[304,305,309]},{"name":"ExReleaseRundownProtection","features":[305]},{"name":"ExReleaseRundownProtectionCacheAware","features":[304,305]},{"name":"ExReleaseRundownProtectionCacheAwareEx","features":[304,305]},{"name":"ExReleaseRundownProtectionEx","features":[305]},{"name":"ExReleaseSpinLockExclusive","features":[305]},{"name":"ExReleaseSpinLockExclusiveFromDpcLevel","features":[305]},{"name":"ExReleaseSpinLockShared","features":[305]},{"name":"ExReleaseSpinLockSharedFromDpcLevel","features":[305]},{"name":"ExRundownCompleted","features":[305]},{"name":"ExRundownCompletedCacheAware","features":[304,305]},{"name":"ExSecurePoolUpdate","features":[305,303]},{"name":"ExSecurePoolValidate","features":[305,303]},{"name":"ExSetFirmwareEnvironmentVariable","features":[305,303]},{"name":"ExSetResourceOwnerPointer","features":[304,305,309]},{"name":"ExSetResourceOwnerPointerEx","features":[304,305,309]},{"name":"ExSetTimer","features":[304,305,303]},{"name":"ExSetTimerResolution","features":[305,303]},{"name":"ExSizeOfRundownProtectionCacheAware","features":[305]},{"name":"ExSystemTimeToLocalTime","features":[305]},{"name":"ExTryAcquireSpinLockExclusiveAtDpcLevel","features":[305]},{"name":"ExTryAcquireSpinLockSharedAtDpcLevel","features":[305]},{"name":"ExTryConvertSharedSpinLockExclusive","features":[305]},{"name":"ExTryToAcquireFastMutex","features":[304,305,303,309]},{"name":"ExUnregisterCallback","features":[305]},{"name":"ExUuidCreate","features":[305,303]},{"name":"ExVerifySuite","features":[305,303,309]},{"name":"ExWaitForRundownProtectionRelease","features":[305]},{"name":"ExWaitForRundownProtectionReleaseCacheAware","features":[304,305]},{"name":"Executive","features":[305]},{"name":"ExternalFault","features":[305]},{"name":"FAULT_INFORMATION","features":[304,307,305,303,306,308,309,310]},{"name":"FAULT_INFORMATION_ARCH","features":[305]},{"name":"FAULT_INFORMATION_ARM64","features":[304,307,305,303,306,308,309,310]},{"name":"FAULT_INFORMATION_ARM64_FLAGS","features":[305]},{"name":"FAULT_INFORMATION_ARM64_TYPE","features":[305]},{"name":"FAULT_INFORMATION_X64","features":[305]},{"name":"FAULT_INFORMATION_X64_FLAGS","features":[305]},{"name":"FILE_128_BYTE_ALIGNMENT","features":[305]},{"name":"FILE_256_BYTE_ALIGNMENT","features":[305]},{"name":"FILE_32_BYTE_ALIGNMENT","features":[305]},{"name":"FILE_512_BYTE_ALIGNMENT","features":[305]},{"name":"FILE_64_BYTE_ALIGNMENT","features":[305]},{"name":"FILE_ATTRIBUTE_TAG_INFORMATION","features":[305]},{"name":"FILE_ATTRIBUTE_VALID_FLAGS","features":[305]},{"name":"FILE_ATTRIBUTE_VALID_KERNEL_SET_FLAGS","features":[305]},{"name":"FILE_ATTRIBUTE_VALID_SET_FLAGS","features":[305]},{"name":"FILE_AUTOGENERATED_DEVICE_NAME","features":[305]},{"name":"FILE_BYTE_ALIGNMENT","features":[305]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL","features":[305]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_DEPRECATED","features":[305]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_EX","features":[305]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL","features":[305]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_DEPRECATED","features":[305]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_EX","features":[305]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK","features":[305]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_DEPRECATED","features":[305]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_EX","features":[305]},{"name":"FILE_CHARACTERISTIC_CSV","features":[305]},{"name":"FILE_CHARACTERISTIC_PNP_DEVICE","features":[305]},{"name":"FILE_CHARACTERISTIC_TS_DEVICE","features":[305]},{"name":"FILE_CHARACTERISTIC_WEBDAV_DEVICE","features":[305]},{"name":"FILE_DEVICE_ALLOW_APPCONTAINER_TRAVERSAL","features":[305]},{"name":"FILE_DEVICE_IS_MOUNTED","features":[305]},{"name":"FILE_DEVICE_REQUIRE_SECURITY_CHECK","features":[305]},{"name":"FILE_DEVICE_SECURE_OPEN","features":[305]},{"name":"FILE_END_OF_FILE_INFORMATION","features":[305]},{"name":"FILE_FLOPPY_DISKETTE","features":[305]},{"name":"FILE_FS_DEVICE_INFORMATION","features":[305]},{"name":"FILE_FS_FULL_SIZE_INFORMATION","features":[305]},{"name":"FILE_FS_FULL_SIZE_INFORMATION_EX","features":[305]},{"name":"FILE_FS_LABEL_INFORMATION","features":[305]},{"name":"FILE_FS_METADATA_SIZE_INFORMATION","features":[305]},{"name":"FILE_FS_OBJECTID_INFORMATION","features":[305]},{"name":"FILE_FS_SIZE_INFORMATION","features":[305]},{"name":"FILE_FS_VOLUME_INFORMATION","features":[305,303]},{"name":"FILE_IOSTATUSBLOCK_RANGE_INFORMATION","features":[305]},{"name":"FILE_IO_COMPLETION_NOTIFICATION_INFORMATION","features":[305]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION","features":[304,305]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION_EX","features":[304,305,303]},{"name":"FILE_IS_REMOTE_DEVICE_INFORMATION","features":[305,303]},{"name":"FILE_LONG_ALIGNMENT","features":[305]},{"name":"FILE_MEMORY_PARTITION_INFORMATION","features":[305]},{"name":"FILE_NUMA_NODE_INFORMATION","features":[305]},{"name":"FILE_OCTA_ALIGNMENT","features":[305]},{"name":"FILE_PORTABLE_DEVICE","features":[305]},{"name":"FILE_PROCESS_IDS_USING_FILE_INFORMATION","features":[305]},{"name":"FILE_QUAD_ALIGNMENT","features":[305]},{"name":"FILE_QUERY_INDEX_SPECIFIED","features":[305]},{"name":"FILE_QUERY_NO_CURSOR_UPDATE","features":[305]},{"name":"FILE_QUERY_RESTART_SCAN","features":[305]},{"name":"FILE_QUERY_RETURN_ON_DISK_ENTRIES_ONLY","features":[305]},{"name":"FILE_QUERY_RETURN_SINGLE_ENTRY","features":[305]},{"name":"FILE_READ_ONLY_DEVICE","features":[305]},{"name":"FILE_REMOTE_DEVICE","features":[305]},{"name":"FILE_REMOTE_DEVICE_VSMB","features":[305]},{"name":"FILE_REMOVABLE_MEDIA","features":[305]},{"name":"FILE_SFIO_RESERVE_INFORMATION","features":[305,303]},{"name":"FILE_SFIO_VOLUME_INFORMATION","features":[305]},{"name":"FILE_SHARE_VALID_FLAGS","features":[305]},{"name":"FILE_SKIP_SET_USER_EVENT_ON_FAST_IO","features":[305]},{"name":"FILE_STANDARD_INFORMATION_EX","features":[305,303]},{"name":"FILE_USE_FILE_POINTER_POSITION","features":[305]},{"name":"FILE_VALID_DATA_LENGTH_INFORMATION","features":[305]},{"name":"FILE_VALID_EXTENDED_OPTION_FLAGS","features":[305]},{"name":"FILE_VIRTUAL_VOLUME","features":[305]},{"name":"FILE_WORD_ALIGNMENT","features":[305]},{"name":"FILE_WRITE_ONCE_MEDIA","features":[305]},{"name":"FILE_WRITE_TO_END_OF_FILE","features":[305]},{"name":"FIRMWARE_ERROR_RECORD_REFERENCE_GUID","features":[305]},{"name":"FLAG_OWNER_POINTER_IS_THREAD","features":[305]},{"name":"FLOATING_SAVE_AREA","features":[305]},{"name":"FLUSH_MULTIPLE_MAXIMUM","features":[305]},{"name":"FM_LOCK_BIT","features":[305]},{"name":"FM_LOCK_BIT_V","features":[305]},{"name":"FO_ALERTABLE_IO","features":[305]},{"name":"FO_BYPASS_IO_ENABLED","features":[305]},{"name":"FO_CACHE_SUPPORTED","features":[305]},{"name":"FO_CLEANUP_COMPLETE","features":[305]},{"name":"FO_DELETE_ON_CLOSE","features":[305]},{"name":"FO_DIRECT_DEVICE_OPEN","features":[305]},{"name":"FO_DISALLOW_EXCLUSIVE","features":[305]},{"name":"FO_FILE_FAST_IO_READ","features":[305]},{"name":"FO_FILE_MODIFIED","features":[305]},{"name":"FO_FILE_OPEN","features":[305]},{"name":"FO_FILE_OPEN_CANCELLED","features":[305]},{"name":"FO_FILE_SIZE_CHANGED","features":[305]},{"name":"FO_FLAGS_VALID_ONLY_DURING_CREATE","features":[305]},{"name":"FO_GENERATE_AUDIT_ON_CLOSE","features":[305]},{"name":"FO_HANDLE_CREATED","features":[305]},{"name":"FO_INDIRECT_WAIT_OBJECT","features":[305]},{"name":"FO_MAILSLOT","features":[305]},{"name":"FO_NAMED_PIPE","features":[305]},{"name":"FO_NO_INTERMEDIATE_BUFFERING","features":[305]},{"name":"FO_OPENED_CASE_SENSITIVE","features":[305]},{"name":"FO_QUEUE_IRP_TO_THREAD","features":[305]},{"name":"FO_RANDOM_ACCESS","features":[305]},{"name":"FO_REMOTE_ORIGIN","features":[305]},{"name":"FO_SECTION_MINSTORE_TREATMENT","features":[305]},{"name":"FO_SEQUENTIAL_ONLY","features":[305]},{"name":"FO_SKIP_COMPLETION_PORT","features":[305]},{"name":"FO_SKIP_SET_EVENT","features":[305]},{"name":"FO_SKIP_SET_FAST_IO","features":[305]},{"name":"FO_STREAM_FILE","features":[305]},{"name":"FO_SYNCHRONOUS_IO","features":[305]},{"name":"FO_TEMPORARY_FILE","features":[305]},{"name":"FO_VOLUME_OPEN","features":[305]},{"name":"FO_WRITE_THROUGH","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_16GB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1GB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1MB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_256MB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_2GB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_32GB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_4GB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_512MB","features":[305]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_8GB","features":[305]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_16MB","features":[305]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_1MB","features":[305]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_2MB","features":[305]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_4MB","features":[305]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_8MB","features":[305]},{"name":"FPB_MEM_VECTOR_GRANULARITY_1B","features":[305]},{"name":"FPB_RID_VECTOR_GRANULARITY_256RIDS","features":[305]},{"name":"FPB_RID_VECTOR_GRANULARITY_64RIDS","features":[305]},{"name":"FPB_RID_VECTOR_GRANULARITY_8RIDS","features":[305]},{"name":"FPB_VECTOR_SELECT_MEM_HIGH","features":[305]},{"name":"FPB_VECTOR_SELECT_MEM_LOW","features":[305]},{"name":"FPB_VECTOR_SELECT_RID","features":[305]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_1KBITS","features":[305]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_256BITS","features":[305]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_2KBITS","features":[305]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_4KBITS","features":[305]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_512BITS","features":[305]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_8KBITS","features":[305]},{"name":"FPGA_BUS_SCAN","features":[305]},{"name":"FPGA_CONTROL_CONFIG_SPACE","features":[305,303]},{"name":"FPGA_CONTROL_ERROR_REPORTING","features":[305,303]},{"name":"FPGA_CONTROL_INTERFACE","features":[305,303]},{"name":"FPGA_CONTROL_LINK","features":[305,303]},{"name":"FREE_FUNCTION","features":[305]},{"name":"FUNCTION_LEVEL_DEVICE_RESET_PARAMETERS","features":[305]},{"name":"FWMI_NOTIFICATION_CALLBACK","features":[305]},{"name":"FailControl","features":[305]},{"name":"FaultInformationArm64","features":[305]},{"name":"FaultInformationInvalid","features":[305]},{"name":"FaultInformationX64","features":[305]},{"name":"FloatingPointProcessor","features":[305]},{"name":"FloppyDiskPeripheral","features":[305]},{"name":"FltIoNotifyRoutinesClass","features":[305]},{"name":"FreePage","features":[305]},{"name":"FsRtlIsTotalDeviceFailure","features":[305,303]},{"name":"FunctionLevelDeviceReset","features":[305]},{"name":"GENERIC_NOTIFY_TYPE_GUID","features":[305]},{"name":"GENERIC_SECTION_GUID","features":[305]},{"name":"GENPROC_FLAGS_CORRECTED","features":[305]},{"name":"GENPROC_FLAGS_OVERFLOW","features":[305]},{"name":"GENPROC_FLAGS_PRECISEIP","features":[305]},{"name":"GENPROC_FLAGS_RESTARTABLE","features":[305]},{"name":"GENPROC_OP_DATAREAD","features":[305]},{"name":"GENPROC_OP_DATAWRITE","features":[305]},{"name":"GENPROC_OP_GENERIC","features":[305]},{"name":"GENPROC_OP_INSTRUCTIONEXE","features":[305]},{"name":"GENPROC_PROCERRTYPE_BUS","features":[305]},{"name":"GENPROC_PROCERRTYPE_CACHE","features":[305]},{"name":"GENPROC_PROCERRTYPE_MAE","features":[305]},{"name":"GENPROC_PROCERRTYPE_TLB","features":[305]},{"name":"GENPROC_PROCERRTYPE_UNKNOWN","features":[305]},{"name":"GENPROC_PROCISA_ARM32","features":[305]},{"name":"GENPROC_PROCISA_ARM64","features":[305]},{"name":"GENPROC_PROCISA_IPF","features":[305]},{"name":"GENPROC_PROCISA_X64","features":[305]},{"name":"GENPROC_PROCISA_X86","features":[305]},{"name":"GENPROC_PROCTYPE_ARM","features":[305]},{"name":"GENPROC_PROCTYPE_IPF","features":[305]},{"name":"GENPROC_PROCTYPE_XPF","features":[305]},{"name":"GET_D3COLD_CAPABILITY","features":[305,303]},{"name":"GET_D3COLD_LAST_TRANSITION_STATUS","features":[305]},{"name":"GET_DEVICE_RESET_STATUS","features":[305,303]},{"name":"GET_DMA_ADAPTER","features":[304,307,305,303,306,308,309,310]},{"name":"GET_IDLE_WAKE_INFO","features":[305,303,310]},{"name":"GET_SDEV_IDENTIFIER","features":[305]},{"name":"GET_SET_DEVICE_DATA","features":[305]},{"name":"GET_UPDATED_BUS_RESOURCE","features":[305,303]},{"name":"GET_VIRTUAL_DEVICE_DATA","features":[305]},{"name":"GET_VIRTUAL_DEVICE_LOCATION","features":[305,303]},{"name":"GET_VIRTUAL_DEVICE_RESOURCES","features":[305]},{"name":"GET_VIRTUAL_FUNCTION_PROBED_BARS","features":[305,303]},{"name":"GUID_ECP_CREATE_USER_PROCESS","features":[305]},{"name":"GartHigh","features":[305]},{"name":"GartLow","features":[305]},{"name":"GenericEqual","features":[305]},{"name":"GenericGreaterThan","features":[305]},{"name":"GenericLessThan","features":[305]},{"name":"GlobalLoggerHandleClass","features":[305]},{"name":"GroupAffinityAllGroupZero","features":[305]},{"name":"GroupAffinityDontCare","features":[305]},{"name":"HAL_AMLI_BAD_IO_ADDRESS_LIST","features":[305,303]},{"name":"HAL_APIC_DESTINATION_MODE","features":[305]},{"name":"HAL_BUS_INFORMATION","features":[305]},{"name":"HAL_CALLBACKS","features":[304,305]},{"name":"HAL_DISPATCH","features":[304,307,305,303,306,308,323,309,310]},{"name":"HAL_DISPATCH_VERSION","features":[305]},{"name":"HAL_DISPLAY_BIOS_INFORMATION","features":[305]},{"name":"HAL_DMA_ADAPTER_VERSION_1","features":[305]},{"name":"HAL_DMA_CRASH_DUMP_REGISTER_TYPE","features":[305]},{"name":"HAL_ERROR_INFO","features":[305]},{"name":"HAL_MASK_UNMASK_FLAGS_NONE","features":[305]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_COMPLETE","features":[305]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_DEFERRED","features":[305]},{"name":"HAL_MCA_INTERFACE","features":[305,303]},{"name":"HAL_MCA_RECORD","features":[305]},{"name":"HAL_MCE_RECORD","features":[305]},{"name":"HAL_PLATFORM_ACPI_TABLES_CACHED","features":[305]},{"name":"HAL_PLATFORM_DISABLE_PTCG","features":[305]},{"name":"HAL_PLATFORM_DISABLE_UC_MAIN_MEMORY","features":[305]},{"name":"HAL_PLATFORM_DISABLE_WRITE_COMBINING","features":[305]},{"name":"HAL_PLATFORM_ENABLE_WRITE_COMBINING_MMIO","features":[305]},{"name":"HAL_PLATFORM_INFORMATION","features":[305]},{"name":"HAL_POWER_INFORMATION","features":[305]},{"name":"HAL_PROCESSOR_FEATURE","features":[305]},{"name":"HAL_PROCESSOR_SPEED_INFORMATION","features":[305]},{"name":"HAL_QUERY_INFORMATION_CLASS","features":[305]},{"name":"HAL_SET_INFORMATION_CLASS","features":[305]},{"name":"HARDWARE_COUNTER","features":[305]},{"name":"HARDWARE_COUNTER_TYPE","features":[305]},{"name":"HASH_STRING_ALGORITHM_DEFAULT","features":[305]},{"name":"HASH_STRING_ALGORITHM_INVALID","features":[305]},{"name":"HASH_STRING_ALGORITHM_X65599","features":[305]},{"name":"HIGH_LEVEL","features":[305]},{"name":"HIGH_PRIORITY","features":[305]},{"name":"HVL_WHEA_ERROR_NOTIFICATION","features":[305,303]},{"name":"HWPROFILE_CHANGE_NOTIFICATION","features":[305]},{"name":"HalAcpiAuditInformation","features":[305]},{"name":"HalAcquireDisplayOwnership","features":[305,303]},{"name":"HalAllocateAdapterChannel","features":[304,307,305,303,306,334,308,309,310]},{"name":"HalAllocateCommonBuffer","features":[305,303,334]},{"name":"HalAllocateCrashDumpRegisters","features":[305,334]},{"name":"HalAllocateHardwareCounters","features":[305,303,333]},{"name":"HalAssignSlotResources","features":[304,307,305,303,306,308,309,310]},{"name":"HalBugCheckSystem","features":[305,303,331]},{"name":"HalCallbackInformation","features":[305]},{"name":"HalChannelTopologyInformation","features":[305]},{"name":"HalCmcLog","features":[305]},{"name":"HalCmcLogInformation","features":[305]},{"name":"HalCmcRegisterDriver","features":[305]},{"name":"HalCpeLog","features":[305]},{"name":"HalCpeLogInformation","features":[305]},{"name":"HalCpeRegisterDriver","features":[305]},{"name":"HalDisplayBiosInformation","features":[305]},{"name":"HalDisplayEmulatedBios","features":[305]},{"name":"HalDisplayInt10Bios","features":[305]},{"name":"HalDisplayNoBios","features":[305]},{"name":"HalDmaAllocateCrashDumpRegistersEx","features":[305,303,334]},{"name":"HalDmaCrashDumpRegisterSet1","features":[305]},{"name":"HalDmaCrashDumpRegisterSet2","features":[305]},{"name":"HalDmaCrashDumpRegisterSetMax","features":[305]},{"name":"HalDmaFreeCrashDumpRegistersEx","features":[305,303,334]},{"name":"HalDmaRemappingInformation","features":[305]},{"name":"HalEnlightenment","features":[305]},{"name":"HalErrorInformation","features":[305]},{"name":"HalExamineMBR","features":[304,307,305,303,306,308,309,310]},{"name":"HalExternalCacheInformation","features":[305]},{"name":"HalFrameBufferCachingInformation","features":[305]},{"name":"HalFreeCommonBuffer","features":[305,303,334]},{"name":"HalFreeHardwareCounters","features":[305,303]},{"name":"HalFrequencyInformation","features":[305]},{"name":"HalFwBootPerformanceInformation","features":[305]},{"name":"HalFwS3PerformanceInformation","features":[305]},{"name":"HalGenerateCmcInterrupt","features":[305]},{"name":"HalGetAdapter","features":[305,303,334]},{"name":"HalGetBusData","features":[305]},{"name":"HalGetBusDataByOffset","features":[305]},{"name":"HalGetChannelPowerInformation","features":[305]},{"name":"HalGetInterruptVector","features":[305]},{"name":"HalHardwareWatchdogInformation","features":[305]},{"name":"HalHeterogeneousMemoryAttributesInterface","features":[305]},{"name":"HalHypervisorInformation","features":[305]},{"name":"HalI386ExceptionChainTerminatorInformation","features":[305]},{"name":"HalInformationClassUnused1","features":[305]},{"name":"HalInitLogInformation","features":[305]},{"name":"HalInstalledBusInformation","features":[305]},{"name":"HalInterruptControllerInformation","features":[305]},{"name":"HalIrtInformation","features":[305]},{"name":"HalKernelErrorHandler","features":[305]},{"name":"HalMakeBeep","features":[305,303]},{"name":"HalMapRegisterInformation","features":[305]},{"name":"HalMcaLog","features":[305]},{"name":"HalMcaLogInformation","features":[305]},{"name":"HalMcaRegisterDriver","features":[305]},{"name":"HalNumaRangeTableInformation","features":[305]},{"name":"HalNumaTopologyInterface","features":[305]},{"name":"HalParkingPageInformation","features":[305]},{"name":"HalPartitionIpiInterface","features":[305]},{"name":"HalPlatformInformation","features":[305]},{"name":"HalPlatformTimerInformation","features":[305]},{"name":"HalPowerInformation","features":[305]},{"name":"HalProcessorBrandString","features":[305]},{"name":"HalProcessorFeatureInformation","features":[305]},{"name":"HalProcessorSpeedInformation","features":[305]},{"name":"HalProfileDpgoSourceInterruptHandler","features":[305]},{"name":"HalProfileSourceAdd","features":[305]},{"name":"HalProfileSourceInformation","features":[305]},{"name":"HalProfileSourceInterruptHandler","features":[305]},{"name":"HalProfileSourceInterval","features":[305]},{"name":"HalProfileSourceRemove","features":[305]},{"name":"HalProfileSourceTimerHandler","features":[305]},{"name":"HalPsciInformation","features":[305]},{"name":"HalQueryAMLIIllegalIOPortAddresses","features":[305]},{"name":"HalQueryAcpiWakeAlarmSystemPowerStateInformation","features":[305]},{"name":"HalQueryArmErrataInformation","features":[305]},{"name":"HalQueryDebuggerInformation","features":[305]},{"name":"HalQueryHyperlaunchEntrypoint","features":[305]},{"name":"HalQueryIommuReservedRegionInformation","features":[305]},{"name":"HalQueryMaxHotPlugMemoryAddress","features":[305]},{"name":"HalQueryMcaInterface","features":[305]},{"name":"HalQueryPerDeviceMsiLimitInformation","features":[305]},{"name":"HalQueryProcessorEfficiencyInformation","features":[305]},{"name":"HalQueryProfileCorruptionStatus","features":[305]},{"name":"HalQueryProfileCounterOwnership","features":[305]},{"name":"HalQueryProfileNumberOfCounters","features":[305]},{"name":"HalQueryProfileSourceList","features":[305]},{"name":"HalQueryStateElementInformation","features":[305]},{"name":"HalQueryUnused0001","features":[305]},{"name":"HalReadDmaCounter","features":[305,334]},{"name":"HalRegisterSecondaryInterruptInterface","features":[305]},{"name":"HalSecondaryInterruptInformation","features":[305]},{"name":"HalSetBusData","features":[305]},{"name":"HalSetBusDataByOffset","features":[305]},{"name":"HalSetChannelPowerInformation","features":[305]},{"name":"HalSetClockTimerMinimumInterval","features":[305]},{"name":"HalSetHvciEnabled","features":[305]},{"name":"HalSetProcessorTraceInterruptHandler","features":[305]},{"name":"HalSetPsciSuspendMode","features":[305]},{"name":"HalSetResetParkDisposition","features":[305]},{"name":"HalSetSwInterruptHandler","features":[305]},{"name":"HalTranslateBusAddress","features":[305,303]},{"name":"HighImportance","features":[305]},{"name":"HighPagePriority","features":[305]},{"name":"HighPoolPriority","features":[305]},{"name":"HighPoolPrioritySpecialPoolOverrun","features":[305]},{"name":"HighPoolPrioritySpecialPoolUnderrun","features":[305]},{"name":"HotSpareControl","features":[305]},{"name":"HvlRegisterWheaErrorNotification","features":[305,303]},{"name":"HvlUnregisterWheaErrorNotification","features":[305,303]},{"name":"HyperCriticalWorkQueue","features":[305]},{"name":"IMAGE_ADDRESSING_MODE_32BIT","features":[305]},{"name":"IMAGE_INFO","features":[305]},{"name":"IMAGE_INFO_EX","features":[304,307,305,303,306,308,309,310]},{"name":"INITIAL_PRIVILEGE_COUNT","features":[305]},{"name":"INITIAL_PRIVILEGE_SET","features":[305,303,306]},{"name":"INIT_NOTIFY_TYPE_GUID","features":[305]},{"name":"INJECT_ERRTYPE_MEMORY_CORRECTABLE","features":[305]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLEFATAL","features":[305]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLENONFATAL","features":[305]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_CORRECTABLE","features":[305]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLEFATAL","features":[305]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLENONFATAL","features":[305]},{"name":"INJECT_ERRTYPE_PLATFORM_CORRECTABLE","features":[305]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLEFATAL","features":[305]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLENONFATAL","features":[305]},{"name":"INJECT_ERRTYPE_PROCESSOR_CORRECTABLE","features":[305]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLEFATAL","features":[305]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLENONFATAL","features":[305]},{"name":"INPUT_MAPPING_ELEMENT","features":[305]},{"name":"INTEL_CACHE_INFO_EAX","features":[305]},{"name":"INTEL_CACHE_INFO_EBX","features":[305]},{"name":"INTEL_CACHE_TYPE","features":[305]},{"name":"INTERFACE","features":[305]},{"name":"INTERFACE_TYPE","features":[305]},{"name":"INTERLOCKED_RESULT","features":[305]},{"name":"IOCTL_CANCEL_DEVICE_WAKE","features":[305]},{"name":"IOCTL_QUERY_DEVICE_POWER_STATE","features":[305]},{"name":"IOCTL_SET_DEVICE_WAKE","features":[305]},{"name":"IOMMU_ACCESS_NONE","features":[305]},{"name":"IOMMU_ACCESS_READ","features":[305]},{"name":"IOMMU_ACCESS_WRITE","features":[305]},{"name":"IOMMU_DEVICE_CREATE","features":[304,307,305,303,306,308,309,310]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION","features":[305,309]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_ACPI","features":[305]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_TYPE","features":[305]},{"name":"IOMMU_DEVICE_DELETE","features":[304,305,303]},{"name":"IOMMU_DEVICE_FAULT_HANDLER","features":[304,307,305,303,306,308,309,310]},{"name":"IOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[304,305]},{"name":"IOMMU_DMA_DOMAIN_CREATION_FLAGS","features":[305]},{"name":"IOMMU_DMA_DOMAIN_TYPE","features":[305]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN","features":[305]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN_MAPPED_SEGMENT","features":[305]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_CONFIG","features":[305]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_TYPE","features":[305]},{"name":"IOMMU_DMA_RESERVED_REGION","features":[305,303]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE","features":[304,307,305,303,306,308,309,310]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[304,305,303]},{"name":"IOMMU_DOMAIN_CONFIGURE","features":[304,305,303]},{"name":"IOMMU_DOMAIN_CREATE","features":[304,305,303]},{"name":"IOMMU_DOMAIN_CREATE_EX","features":[304,305,303]},{"name":"IOMMU_DOMAIN_DELETE","features":[304,305,303]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE","features":[304,307,305,303,306,308,309,310]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE_EX","features":[304,305,303]},{"name":"IOMMU_FLUSH_DOMAIN","features":[304,305,303]},{"name":"IOMMU_FLUSH_DOMAIN_VA_LIST","features":[304,305,303]},{"name":"IOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[305,303]},{"name":"IOMMU_INTERFACE_STATE_CHANGE","features":[305]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[305]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_FIELDS","features":[305]},{"name":"IOMMU_MAP_IDENTITY_RANGE","features":[304,305,303]},{"name":"IOMMU_MAP_IDENTITY_RANGE_EX","features":[304,305,303]},{"name":"IOMMU_MAP_LOGICAL_RANGE","features":[304,305,303]},{"name":"IOMMU_MAP_LOGICAL_RANGE_EX","features":[304,305,303]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS","features":[304,305]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS_TYPE","features":[305]},{"name":"IOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[304,305,303]},{"name":"IOMMU_QUERY_INPUT_MAPPINGS","features":[304,307,305,303,306,308,309,310]},{"name":"IOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[304,305,303]},{"name":"IOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[304,305,303]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING","features":[304,307,305,303,306,308,309,310]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[304,305,303]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE","features":[304,305,303]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE_EX","features":[304,305,303]},{"name":"IOMMU_UNMAP_LOGICAL_RANGE","features":[304,305,303]},{"name":"IOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[305,303]},{"name":"IOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[304,305,303]},{"name":"IO_ACCESS_MODE","features":[305]},{"name":"IO_ACCESS_TYPE","features":[305]},{"name":"IO_ALLOCATION_ACTION","features":[305]},{"name":"IO_ATTACH_DEVICE","features":[305]},{"name":"IO_ATTRIBUTION_INFORMATION","features":[305]},{"name":"IO_ATTRIBUTION_INFO_V1","features":[305]},{"name":"IO_CHECK_CREATE_PARAMETERS","features":[305]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_DELETE","features":[305]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_READ","features":[305]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_WRITE","features":[305]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_UPDATE_FILE_OBJECT","features":[305]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_CHECK","features":[305]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_USING_SCB","features":[305]},{"name":"IO_CHECK_SHARE_ACCESS_UPDATE_SHARE_ACCESS","features":[305]},{"name":"IO_COMPLETION_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"IO_COMPLETION_ROUTINE_RESULT","features":[305]},{"name":"IO_CONNECT_INTERRUPT_FULLY_SPECIFIED_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CONNECT_INTERRUPT_LINE_BASED_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CONNECT_INTERRUPT_MESSAGE_BASED_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CONNECT_INTERRUPT_PARAMETERS","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CONTAINER_INFORMATION_CLASS","features":[305]},{"name":"IO_CONTAINER_NOTIFICATION_CLASS","features":[305]},{"name":"IO_CSQ","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_ACQUIRE_LOCK","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_COMPLETE_CANCELED_IRP","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_INSERT_IRP","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_INSERT_IRP_EX","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_IRP_CONTEXT","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_PEEK_NEXT_IRP","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_RELEASE_LOCK","features":[304,307,305,303,306,308,309,310]},{"name":"IO_CSQ_REMOVE_IRP","features":[304,307,305,303,306,308,309,310]},{"name":"IO_DISCONNECT_INTERRUPT_PARAMETERS","features":[304,305]},{"name":"IO_DPC_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"IO_DRIVER_CREATE_CONTEXT","features":[304,305]},{"name":"IO_ERROR_LOG_MESSAGE","features":[305,303]},{"name":"IO_ERROR_LOG_PACKET","features":[305,303]},{"name":"IO_FOEXT_SHADOW_FILE","features":[304,307,305,303,306,308,309,310]},{"name":"IO_FOEXT_SILO_PARAMETERS","features":[304,305]},{"name":"IO_FORCE_ACCESS_CHECK","features":[305]},{"name":"IO_IGNORE_SHARE_ACCESS_CHECK","features":[305]},{"name":"IO_INTERRUPT_MESSAGE_INFO","features":[304,305]},{"name":"IO_INTERRUPT_MESSAGE_INFO_ENTRY","features":[304,305]},{"name":"IO_KEYBOARD_INCREMENT","features":[305]},{"name":"IO_MOUSE_INCREMENT","features":[305]},{"name":"IO_NOTIFICATION_EVENT_CATEGORY","features":[305]},{"name":"IO_NO_PARAMETER_CHECKING","features":[305]},{"name":"IO_PAGING_PRIORITY","features":[305]},{"name":"IO_PARALLEL_INCREMENT","features":[305]},{"name":"IO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[304,307,305,303,306,308,309,310]},{"name":"IO_QUERY_DEVICE_DATA_FORMAT","features":[305]},{"name":"IO_REMOUNT","features":[305]},{"name":"IO_REMOVE_LOCK","features":[304,305,303,309]},{"name":"IO_REMOVE_LOCK_COMMON_BLOCK","features":[304,305,303,309]},{"name":"IO_REMOVE_LOCK_DBG_BLOCK","features":[304,305,309]},{"name":"IO_REPARSE","features":[305]},{"name":"IO_REPARSE_GLOBAL","features":[305]},{"name":"IO_REPORT_INTERRUPT_ACTIVE_STATE_PARAMETERS","features":[304,305]},{"name":"IO_RESOURCE_ALTERNATIVE","features":[305]},{"name":"IO_RESOURCE_DEFAULT","features":[305]},{"name":"IO_RESOURCE_DESCRIPTOR","features":[305]},{"name":"IO_RESOURCE_LIST","features":[305]},{"name":"IO_RESOURCE_PREFERRED","features":[305]},{"name":"IO_RESOURCE_REQUIREMENTS_LIST","features":[305]},{"name":"IO_SERIAL_INCREMENT","features":[305]},{"name":"IO_SESSION_CONNECT_INFO","features":[305,303]},{"name":"IO_SESSION_EVENT","features":[305]},{"name":"IO_SESSION_MAX_PAYLOAD_SIZE","features":[305]},{"name":"IO_SESSION_NOTIFICATION_FUNCTION","features":[305,303]},{"name":"IO_SESSION_STATE","features":[305]},{"name":"IO_SESSION_STATE_ALL_EVENTS","features":[305]},{"name":"IO_SESSION_STATE_CONNECT_EVENT","features":[305]},{"name":"IO_SESSION_STATE_CREATION_EVENT","features":[305]},{"name":"IO_SESSION_STATE_DISCONNECT_EVENT","features":[305]},{"name":"IO_SESSION_STATE_INFORMATION","features":[305,303]},{"name":"IO_SESSION_STATE_LOGOFF_EVENT","features":[305]},{"name":"IO_SESSION_STATE_LOGON_EVENT","features":[305]},{"name":"IO_SESSION_STATE_NOTIFICATION","features":[305]},{"name":"IO_SESSION_STATE_TERMINATION_EVENT","features":[305]},{"name":"IO_SESSION_STATE_VALID_EVENT_MASK","features":[305]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FLAGS_MASK","features":[305]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_PROCESS","features":[305]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_THREAD","features":[305]},{"name":"IO_SHARE_ACCESS_NON_PRIMARY_STREAM","features":[305]},{"name":"IO_SHARE_ACCESS_NO_WRITE_PERMISSION","features":[305]},{"name":"IO_SOUND_INCREMENT","features":[305]},{"name":"IO_STATUS_BLOCK32","features":[305,303]},{"name":"IO_STATUS_BLOCK64","features":[305,303]},{"name":"IO_TIMER_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"IO_TYPE_ADAPTER","features":[305]},{"name":"IO_TYPE_CONTROLLER","features":[305]},{"name":"IO_TYPE_CSQ","features":[305]},{"name":"IO_TYPE_CSQ_EX","features":[305]},{"name":"IO_TYPE_CSQ_IRP_CONTEXT","features":[305]},{"name":"IO_TYPE_DEVICE","features":[305]},{"name":"IO_TYPE_DEVICE_OBJECT_EXTENSION","features":[305]},{"name":"IO_TYPE_DRIVER","features":[305]},{"name":"IO_TYPE_ERROR_LOG","features":[305]},{"name":"IO_TYPE_ERROR_MESSAGE","features":[305]},{"name":"IO_TYPE_FILE","features":[305]},{"name":"IO_TYPE_IORING","features":[305]},{"name":"IO_TYPE_IRP","features":[305]},{"name":"IO_TYPE_MASTER_ADAPTER","features":[305]},{"name":"IO_TYPE_OPEN_PACKET","features":[305]},{"name":"IO_TYPE_TIMER","features":[305]},{"name":"IO_TYPE_VPB","features":[305]},{"name":"IO_VIDEO_INCREMENT","features":[305]},{"name":"IO_WORKITEM_ROUTINE","features":[304,307,305,303,306,308,309,310]},{"name":"IO_WORKITEM_ROUTINE_EX","features":[304,305]},{"name":"IPF_SAL_RECORD_SECTION_GUID","features":[305]},{"name":"IPI_LEVEL","features":[305]},{"name":"IPMI_MSR_DUMP_SECTION_GUID","features":[305]},{"name":"IRP_ALLOCATED_FIXED_SIZE","features":[305]},{"name":"IRP_ALLOCATED_MUST_SUCCEED","features":[305]},{"name":"IRP_ASSOCIATED_IRP","features":[305]},{"name":"IRP_BUFFERED_IO","features":[305]},{"name":"IRP_CLOSE_OPERATION","features":[305]},{"name":"IRP_CREATE_OPERATION","features":[305]},{"name":"IRP_DEALLOCATE_BUFFER","features":[305]},{"name":"IRP_DEFER_IO_COMPLETION","features":[305]},{"name":"IRP_HOLD_DEVICE_QUEUE","features":[305]},{"name":"IRP_INPUT_OPERATION","features":[305]},{"name":"IRP_LOOKASIDE_ALLOCATION","features":[305]},{"name":"IRP_MJ_CLEANUP","features":[305]},{"name":"IRP_MJ_CLOSE","features":[305]},{"name":"IRP_MJ_CREATE","features":[305]},{"name":"IRP_MJ_CREATE_MAILSLOT","features":[305]},{"name":"IRP_MJ_CREATE_NAMED_PIPE","features":[305]},{"name":"IRP_MJ_DEVICE_CHANGE","features":[305]},{"name":"IRP_MJ_DEVICE_CONTROL","features":[305]},{"name":"IRP_MJ_DIRECTORY_CONTROL","features":[305]},{"name":"IRP_MJ_FILE_SYSTEM_CONTROL","features":[305]},{"name":"IRP_MJ_FLUSH_BUFFERS","features":[305]},{"name":"IRP_MJ_INTERNAL_DEVICE_CONTROL","features":[305]},{"name":"IRP_MJ_LOCK_CONTROL","features":[305]},{"name":"IRP_MJ_MAXIMUM_FUNCTION","features":[305]},{"name":"IRP_MJ_PNP","features":[305]},{"name":"IRP_MJ_PNP_POWER","features":[305]},{"name":"IRP_MJ_POWER","features":[305]},{"name":"IRP_MJ_QUERY_EA","features":[305]},{"name":"IRP_MJ_QUERY_INFORMATION","features":[305]},{"name":"IRP_MJ_QUERY_QUOTA","features":[305]},{"name":"IRP_MJ_QUERY_SECURITY","features":[305]},{"name":"IRP_MJ_QUERY_VOLUME_INFORMATION","features":[305]},{"name":"IRP_MJ_READ","features":[305]},{"name":"IRP_MJ_SCSI","features":[305]},{"name":"IRP_MJ_SET_EA","features":[305]},{"name":"IRP_MJ_SET_INFORMATION","features":[305]},{"name":"IRP_MJ_SET_QUOTA","features":[305]},{"name":"IRP_MJ_SET_SECURITY","features":[305]},{"name":"IRP_MJ_SET_VOLUME_INFORMATION","features":[305]},{"name":"IRP_MJ_SHUTDOWN","features":[305]},{"name":"IRP_MJ_SYSTEM_CONTROL","features":[305]},{"name":"IRP_MJ_WRITE","features":[305]},{"name":"IRP_MN_CANCEL_REMOVE_DEVICE","features":[305]},{"name":"IRP_MN_CANCEL_STOP_DEVICE","features":[305]},{"name":"IRP_MN_CHANGE_SINGLE_INSTANCE","features":[305]},{"name":"IRP_MN_CHANGE_SINGLE_ITEM","features":[305]},{"name":"IRP_MN_COMPLETE","features":[305]},{"name":"IRP_MN_COMPRESSED","features":[305]},{"name":"IRP_MN_DEVICE_ENUMERATED","features":[305]},{"name":"IRP_MN_DEVICE_USAGE_NOTIFICATION","features":[305]},{"name":"IRP_MN_DISABLE_COLLECTION","features":[305]},{"name":"IRP_MN_DISABLE_EVENTS","features":[305]},{"name":"IRP_MN_DPC","features":[305]},{"name":"IRP_MN_EJECT","features":[305]},{"name":"IRP_MN_ENABLE_COLLECTION","features":[305]},{"name":"IRP_MN_ENABLE_EVENTS","features":[305]},{"name":"IRP_MN_EXECUTE_METHOD","features":[305]},{"name":"IRP_MN_FILTER_RESOURCE_REQUIREMENTS","features":[305]},{"name":"IRP_MN_FLUSH_AND_PURGE","features":[305]},{"name":"IRP_MN_FLUSH_DATA_ONLY","features":[305]},{"name":"IRP_MN_FLUSH_DATA_SYNC_ONLY","features":[305]},{"name":"IRP_MN_FLUSH_NO_SYNC","features":[305]},{"name":"IRP_MN_KERNEL_CALL","features":[305]},{"name":"IRP_MN_LOAD_FILE_SYSTEM","features":[305]},{"name":"IRP_MN_LOCK","features":[305]},{"name":"IRP_MN_MDL","features":[305]},{"name":"IRP_MN_MOUNT_VOLUME","features":[305]},{"name":"IRP_MN_NORMAL","features":[305]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY","features":[305]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY_EX","features":[305]},{"name":"IRP_MN_POWER_SEQUENCE","features":[305]},{"name":"IRP_MN_QUERY_ALL_DATA","features":[305]},{"name":"IRP_MN_QUERY_BUS_INFORMATION","features":[305]},{"name":"IRP_MN_QUERY_CAPABILITIES","features":[305]},{"name":"IRP_MN_QUERY_DEVICE_RELATIONS","features":[305]},{"name":"IRP_MN_QUERY_DEVICE_TEXT","features":[305]},{"name":"IRP_MN_QUERY_DIRECTORY","features":[305]},{"name":"IRP_MN_QUERY_ID","features":[305]},{"name":"IRP_MN_QUERY_INTERFACE","features":[305]},{"name":"IRP_MN_QUERY_LEGACY_BUS_INFORMATION","features":[305]},{"name":"IRP_MN_QUERY_PNP_DEVICE_STATE","features":[305]},{"name":"IRP_MN_QUERY_POWER","features":[305]},{"name":"IRP_MN_QUERY_REMOVE_DEVICE","features":[305]},{"name":"IRP_MN_QUERY_RESOURCES","features":[305]},{"name":"IRP_MN_QUERY_RESOURCE_REQUIREMENTS","features":[305]},{"name":"IRP_MN_QUERY_SINGLE_INSTANCE","features":[305]},{"name":"IRP_MN_QUERY_STOP_DEVICE","features":[305]},{"name":"IRP_MN_READ_CONFIG","features":[305]},{"name":"IRP_MN_REGINFO","features":[305]},{"name":"IRP_MN_REGINFO_EX","features":[305]},{"name":"IRP_MN_REMOVE_DEVICE","features":[305]},{"name":"IRP_MN_SCSI_CLASS","features":[305]},{"name":"IRP_MN_SET_LOCK","features":[305]},{"name":"IRP_MN_SET_POWER","features":[305]},{"name":"IRP_MN_START_DEVICE","features":[305]},{"name":"IRP_MN_STOP_DEVICE","features":[305]},{"name":"IRP_MN_SURPRISE_REMOVAL","features":[305]},{"name":"IRP_MN_TRACK_LINK","features":[305]},{"name":"IRP_MN_UNLOCK_ALL","features":[305]},{"name":"IRP_MN_UNLOCK_ALL_BY_KEY","features":[305]},{"name":"IRP_MN_UNLOCK_SINGLE","features":[305]},{"name":"IRP_MN_USER_FS_REQUEST","features":[305]},{"name":"IRP_MN_VERIFY_VOLUME","features":[305]},{"name":"IRP_MN_WAIT_WAKE","features":[305]},{"name":"IRP_MN_WRITE_CONFIG","features":[305]},{"name":"IRP_MOUNT_COMPLETION","features":[305]},{"name":"IRP_NOCACHE","features":[305]},{"name":"IRP_OB_QUERY_NAME","features":[305]},{"name":"IRP_PAGING_IO","features":[305]},{"name":"IRP_QUOTA_CHARGED","features":[305]},{"name":"IRP_READ_OPERATION","features":[305]},{"name":"IRP_SYNCHRONOUS_API","features":[305]},{"name":"IRP_SYNCHRONOUS_PAGING_IO","features":[305]},{"name":"IRP_UM_DRIVER_INITIATED_IO","features":[305]},{"name":"IRP_WRITE_OPERATION","features":[305]},{"name":"IRQ_DEVICE_POLICY","features":[305]},{"name":"IRQ_GROUP_POLICY","features":[305]},{"name":"IRQ_PRIORITY","features":[305]},{"name":"InACriticalArrayControl","features":[305]},{"name":"InAFailedArrayControl","features":[305]},{"name":"IndicatorBlink","features":[305]},{"name":"IndicatorOff","features":[305]},{"name":"IndicatorOn","features":[305]},{"name":"InitiateReset","features":[305]},{"name":"InstallStateFailedInstall","features":[305]},{"name":"InstallStateFinishInstall","features":[305]},{"name":"InstallStateInstalled","features":[305]},{"name":"InstallStateNeedsReinstall","features":[305]},{"name":"IntelCacheData","features":[305]},{"name":"IntelCacheInstruction","features":[305]},{"name":"IntelCacheNull","features":[305]},{"name":"IntelCacheRam","features":[305]},{"name":"IntelCacheTrace","features":[305]},{"name":"IntelCacheUnified","features":[305]},{"name":"InterfaceTypeUndefined","features":[305]},{"name":"Internal","features":[305]},{"name":"InternalPowerBus","features":[305]},{"name":"InterruptActiveBoth","features":[305]},{"name":"InterruptActiveBothTriggerHigh","features":[305]},{"name":"InterruptActiveBothTriggerLow","features":[305]},{"name":"InterruptActiveHigh","features":[305]},{"name":"InterruptActiveLow","features":[305]},{"name":"InterruptFallingEdge","features":[305]},{"name":"InterruptPolarityUnknown","features":[305]},{"name":"InterruptRisingEdge","features":[305]},{"name":"InvalidDeviceTypeControl","features":[305]},{"name":"IoAcquireCancelSpinLock","features":[305]},{"name":"IoAcquireKsrPersistentMemory","features":[304,307,305,303,306,308,309,310]},{"name":"IoAcquireKsrPersistentMemoryEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoAcquireRemoveLockEx","features":[304,305,303,309]},{"name":"IoAllocateAdapterChannel","features":[304,307,305,303,306,334,308,309,310]},{"name":"IoAllocateController","features":[304,307,305,303,306,308,309,310]},{"name":"IoAllocateDriverObjectExtension","features":[304,307,305,303,306,308,309,310]},{"name":"IoAllocateErrorLogEntry","features":[305]},{"name":"IoAllocateIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoAllocateIrpEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoAllocateMdl","features":[304,307,305,303,306,308,309,310]},{"name":"IoAllocateSfioStreamIdentifier","features":[304,307,305,303,306,308,309,310]},{"name":"IoAllocateWorkItem","features":[304,307,305,303,306,308,309,310]},{"name":"IoAssignResources","features":[304,307,305,303,306,308,309,310]},{"name":"IoAttachDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoAttachDeviceByPointer","features":[304,307,305,303,306,308,309,310]},{"name":"IoAttachDeviceToDeviceStack","features":[304,307,305,303,306,308,309,310]},{"name":"IoAttachDeviceToDeviceStackSafe","features":[304,307,305,303,306,308,309,310]},{"name":"IoBuildAsynchronousFsdRequest","features":[304,307,305,303,306,308,309,310]},{"name":"IoBuildDeviceIoControlRequest","features":[304,307,305,303,306,308,309,310]},{"name":"IoBuildPartialMdl","features":[304,305]},{"name":"IoBuildSynchronousFsdRequest","features":[304,307,305,303,306,308,309,310]},{"name":"IoCancelFileOpen","features":[304,307,305,303,306,308,309,310]},{"name":"IoCancelIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoCheckLinkShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoCheckShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoCheckShareAccessEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoCleanupIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoClearActivityIdThread","features":[305]},{"name":"IoClearIrpExtraCreateParameter","features":[304,307,305,303,306,308,309,310]},{"name":"IoConnectInterrupt","features":[304,305,303]},{"name":"IoConnectInterruptEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoCreateController","features":[304,305,303,309]},{"name":"IoCreateDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoCreateDisk","features":[304,307,305,303,306,308,323,309,310]},{"name":"IoCreateFile","features":[304,305,303,308]},{"name":"IoCreateFileEx","features":[304,305,303,308]},{"name":"IoCreateFileSpecifyDeviceObjectHint","features":[304,305,303,308]},{"name":"IoCreateNotificationEvent","features":[304,305,303,309]},{"name":"IoCreateSymbolicLink","features":[305,303]},{"name":"IoCreateSynchronizationEvent","features":[304,305,303,309]},{"name":"IoCreateSystemThread","features":[304,305,303,335]},{"name":"IoCreateUnprotectedSymbolicLink","features":[305,303]},{"name":"IoCsqInitialize","features":[304,307,305,303,306,308,309,310]},{"name":"IoCsqInitializeEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoCsqInsertIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoCsqInsertIrpEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoCsqRemoveIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoCsqRemoveNextIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoDecrementKeepAliveCount","features":[304,307,305,303,306,308,309,310]},{"name":"IoDeleteController","features":[304,305,303,309]},{"name":"IoDeleteDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoDeleteSymbolicLink","features":[305,303]},{"name":"IoDetachDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoDisconnectInterrupt","features":[304,305]},{"name":"IoDisconnectInterruptEx","features":[304,305]},{"name":"IoEnumerateKsrPersistentMemoryEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoFlushAdapterBuffers","features":[304,305,303,334]},{"name":"IoForwardIrpSynchronously","features":[304,307,305,303,306,308,309,310]},{"name":"IoFreeAdapterChannel","features":[305,334]},{"name":"IoFreeController","features":[304,305,303,309]},{"name":"IoFreeErrorLogEntry","features":[305]},{"name":"IoFreeIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoFreeKsrPersistentMemory","features":[305,303]},{"name":"IoFreeMapRegisters","features":[305,334]},{"name":"IoFreeMdl","features":[304,305]},{"name":"IoFreeSfioStreamIdentifier","features":[304,307,305,303,306,308,309,310]},{"name":"IoFreeWorkItem","features":[304,305]},{"name":"IoGetActivityIdIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetActivityIdThread","features":[305]},{"name":"IoGetAffinityInterrupt","features":[304,305,303,333]},{"name":"IoGetAttachedDeviceReference","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetBootDiskInformation","features":[305,303]},{"name":"IoGetBootDiskInformationLite","features":[305,303]},{"name":"IoGetConfigurationInformation","features":[305,303]},{"name":"IoGetContainerInformation","features":[305,303]},{"name":"IoGetCurrentProcess","features":[304,305]},{"name":"IoGetDeviceDirectory","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDeviceInterfaceAlias","features":[305,303]},{"name":"IoGetDeviceInterfacePropertyData","features":[305,336,303]},{"name":"IoGetDeviceInterfaces","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDeviceNumaNode","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDeviceObjectPointer","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDeviceProperty","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDevicePropertyData","features":[304,307,305,336,303,306,308,309,310]},{"name":"IoGetDmaAdapter","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDriverDirectory","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetDriverObjectExtension","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetFileObjectGenericMapping","features":[305,306]},{"name":"IoGetFsZeroingOffset","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetInitialStack","features":[305]},{"name":"IoGetInitiatorProcess","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetIoAttributionHandle","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetIoPriorityHint","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetIommuInterface","features":[305,303]},{"name":"IoGetIommuInterfaceEx","features":[305,303]},{"name":"IoGetIrpExtraCreateParameter","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetPagingIoPriority","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetRelatedDeviceObject","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetSfioStreamIdentifier","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetSilo","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetSiloParameters","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetStackLimits","features":[305]},{"name":"IoGetTopLevelIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoGetTransactionParameterBlock","features":[304,307,305,303,306,308,309,310]},{"name":"IoIncrementKeepAliveCount","features":[304,307,305,303,306,308,309,310]},{"name":"IoInitializeIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoInitializeIrpEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoInitializeRemoveLockEx","features":[304,305,303,309]},{"name":"IoInitializeTimer","features":[304,307,305,303,306,308,309,310]},{"name":"IoInitializeWorkItem","features":[304,305]},{"name":"IoInvalidateDeviceRelations","features":[304,307,305,303,306,308,309,310]},{"name":"IoInvalidateDeviceState","features":[304,307,305,303,306,308,309,310]},{"name":"IoIs32bitProcess","features":[304,307,305,303,306,308,309,310]},{"name":"IoIsFileObjectIgnoringSharing","features":[304,307,305,303,306,308,309,310]},{"name":"IoIsFileOriginRemote","features":[304,307,305,303,306,308,309,310]},{"name":"IoIsInitiator32bitProcess","features":[304,307,305,303,306,308,309,310]},{"name":"IoIsValidIrpStatus","features":[305,303]},{"name":"IoIsWdmVersionAvailable","features":[305,303]},{"name":"IoMakeAssociatedIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoMakeAssociatedIrpEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoMapTransfer","features":[304,305,303,334]},{"name":"IoMaxContainerInformationClass","features":[305]},{"name":"IoMaxContainerNotificationClass","features":[305]},{"name":"IoModifyAccess","features":[305]},{"name":"IoOpenDeviceInterfaceRegistryKey","features":[305,303]},{"name":"IoOpenDeviceRegistryKey","features":[304,307,305,303,306,308,309,310]},{"name":"IoOpenDriverRegistryKey","features":[304,307,305,303,306,308,309,310]},{"name":"IoPagingPriorityHigh","features":[305]},{"name":"IoPagingPriorityInvalid","features":[305]},{"name":"IoPagingPriorityNormal","features":[305]},{"name":"IoPagingPriorityReserved1","features":[305]},{"name":"IoPagingPriorityReserved2","features":[305]},{"name":"IoPropagateActivityIdToThread","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueryDeviceComponentInformation","features":[305]},{"name":"IoQueryDeviceConfigurationData","features":[305]},{"name":"IoQueryDeviceDescription","features":[305,303]},{"name":"IoQueryDeviceIdentifier","features":[305]},{"name":"IoQueryDeviceMaxData","features":[305]},{"name":"IoQueryFullDriverPath","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueryInformationByName","features":[304,307,305,303,308]},{"name":"IoQueryKsrPersistentMemorySize","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueryKsrPersistentMemorySizeEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoQueueWorkItem","features":[304,305]},{"name":"IoQueueWorkItemEx","features":[304,305]},{"name":"IoRaiseHardError","features":[304,307,305,303,306,308,309,310]},{"name":"IoRaiseInformationalHardError","features":[304,305,303]},{"name":"IoReadAccess","features":[305]},{"name":"IoReadDiskSignature","features":[304,307,305,303,306,308,309,310]},{"name":"IoReadPartitionTable","features":[304,307,305,303,306,308,323,309,310]},{"name":"IoReadPartitionTableEx","features":[304,307,305,303,306,308,323,309,310]},{"name":"IoRecordIoAttribution","features":[305,303]},{"name":"IoRegisterBootDriverCallback","features":[305]},{"name":"IoRegisterBootDriverReinitialization","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterContainerNotification","features":[305,303]},{"name":"IoRegisterDeviceInterface","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterDriverReinitialization","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterLastChanceShutdownNotification","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterPlugPlayNotification","features":[304,307,305,303,306,308,309,310]},{"name":"IoRegisterShutdownNotification","features":[304,307,305,303,306,308,309,310]},{"name":"IoReleaseCancelSpinLock","features":[305]},{"name":"IoReleaseRemoveLockAndWaitEx","features":[304,305,303,309]},{"name":"IoReleaseRemoveLockEx","features":[304,305,303,309]},{"name":"IoRemoveLinkShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoRemoveLinkShareAccessEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoRemoveShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoReplacePartitionUnit","features":[304,307,305,303,306,308,309,310]},{"name":"IoReportDetectedDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoReportInterruptActive","features":[304,305]},{"name":"IoReportInterruptInactive","features":[304,305]},{"name":"IoReportResourceForDetection","features":[304,307,305,303,306,308,309,310]},{"name":"IoReportResourceUsage","features":[304,307,305,303,306,308,309,310]},{"name":"IoReportRootDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoReportTargetDeviceChange","features":[304,307,305,303,306,308,309,310]},{"name":"IoReportTargetDeviceChangeAsynchronous","features":[304,307,305,303,306,308,309,310]},{"name":"IoRequestDeviceEject","features":[304,307,305,303,306,308,309,310]},{"name":"IoRequestDeviceEjectEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoReserveKsrPersistentMemory","features":[304,307,305,303,306,308,309,310]},{"name":"IoReserveKsrPersistentMemoryEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoReuseIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoSessionEventConnected","features":[305]},{"name":"IoSessionEventCreated","features":[305]},{"name":"IoSessionEventDisconnected","features":[305]},{"name":"IoSessionEventIgnore","features":[305]},{"name":"IoSessionEventLogoff","features":[305]},{"name":"IoSessionEventLogon","features":[305]},{"name":"IoSessionEventMax","features":[305]},{"name":"IoSessionEventTerminated","features":[305]},{"name":"IoSessionStateConnected","features":[305]},{"name":"IoSessionStateCreated","features":[305]},{"name":"IoSessionStateDisconnected","features":[305]},{"name":"IoSessionStateDisconnectedLoggedOn","features":[305]},{"name":"IoSessionStateInformation","features":[305]},{"name":"IoSessionStateInitialized","features":[305]},{"name":"IoSessionStateLoggedOff","features":[305]},{"name":"IoSessionStateLoggedOn","features":[305]},{"name":"IoSessionStateMax","features":[305]},{"name":"IoSessionStateNotification","features":[305]},{"name":"IoSessionStateTerminated","features":[305]},{"name":"IoSetActivityIdIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetActivityIdThread","features":[305]},{"name":"IoSetCompletionRoutineEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetDeviceInterfacePropertyData","features":[305,336,303]},{"name":"IoSetDeviceInterfaceState","features":[305,303]},{"name":"IoSetDevicePropertyData","features":[304,307,305,336,303,306,308,309,310]},{"name":"IoSetFileObjectIgnoreSharing","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetFileOrigin","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetFsZeroingOffset","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetFsZeroingOffsetRequired","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetHardErrorOrVerifyDevice","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetIoAttributionIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetIoPriorityHint","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetIrpExtraCreateParameter","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetLinkShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetMasterIrpStatus","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetPartitionInformation","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetPartitionInformationEx","features":[304,307,305,303,306,308,323,309,310]},{"name":"IoSetShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetShareAccessEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetStartIoAttributes","features":[304,307,305,303,306,308,309,310]},{"name":"IoSetSystemPartition","features":[305,303]},{"name":"IoSetThreadHardErrorMode","features":[305,303]},{"name":"IoSetTopLevelIrp","features":[304,307,305,303,306,308,309,310]},{"name":"IoSizeOfIrpEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoSizeofWorkItem","features":[305]},{"name":"IoStartNextPacket","features":[304,307,305,303,306,308,309,310]},{"name":"IoStartNextPacketByKey","features":[304,307,305,303,306,308,309,310]},{"name":"IoStartPacket","features":[304,307,305,303,306,308,309,310]},{"name":"IoStartTimer","features":[304,307,305,303,306,308,309,310]},{"name":"IoStopTimer","features":[304,307,305,303,306,308,309,310]},{"name":"IoSynchronousCallDriver","features":[304,307,305,303,306,308,309,310]},{"name":"IoTransferActivityId","features":[305]},{"name":"IoTranslateBusAddress","features":[305,303]},{"name":"IoTryQueueWorkItem","features":[304,305,303]},{"name":"IoUninitializeWorkItem","features":[304,305]},{"name":"IoUnregisterBootDriverCallback","features":[305]},{"name":"IoUnregisterContainerNotification","features":[305]},{"name":"IoUnregisterPlugPlayNotification","features":[305,303]},{"name":"IoUnregisterPlugPlayNotificationEx","features":[305,303]},{"name":"IoUnregisterShutdownNotification","features":[304,307,305,303,306,308,309,310]},{"name":"IoUpdateLinkShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoUpdateLinkShareAccessEx","features":[304,307,305,303,306,308,309,310]},{"name":"IoUpdateShareAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoValidateDeviceIoControlAccess","features":[304,307,305,303,306,308,309,310]},{"name":"IoVerifyPartitionTable","features":[304,307,305,303,306,308,309,310]},{"name":"IoVolumeDeviceNameToGuid","features":[305,303]},{"name":"IoVolumeDeviceNameToGuidPath","features":[305,303]},{"name":"IoVolumeDeviceToDosName","features":[305,303]},{"name":"IoVolumeDeviceToGuid","features":[305,303]},{"name":"IoVolumeDeviceToGuidPath","features":[305,303]},{"name":"IoWMIAllocateInstanceIds","features":[305,303]},{"name":"IoWMIDeviceObjectToInstanceName","features":[304,307,305,303,306,308,309,310]},{"name":"IoWMIExecuteMethod","features":[305,303]},{"name":"IoWMIHandleToInstanceName","features":[305,303]},{"name":"IoWMIOpenBlock","features":[305,303]},{"name":"IoWMIQueryAllData","features":[305,303]},{"name":"IoWMIQueryAllDataMultiple","features":[305,303]},{"name":"IoWMIQuerySingleInstance","features":[305,303]},{"name":"IoWMIQuerySingleInstanceMultiple","features":[305,303]},{"name":"IoWMIRegistrationControl","features":[304,307,305,303,306,308,309,310]},{"name":"IoWMISetNotificationCallback","features":[305,303]},{"name":"IoWMISetSingleInstance","features":[305,303]},{"name":"IoWMISetSingleItem","features":[305,303]},{"name":"IoWMISuggestInstanceName","features":[304,307,305,303,306,308,309,310]},{"name":"IoWMIWriteEvent","features":[305,303]},{"name":"IoWithinStackLimits","features":[305]},{"name":"IoWriteAccess","features":[305]},{"name":"IoWriteErrorLogEntry","features":[305]},{"name":"IoWriteKsrPersistentMemory","features":[305,303]},{"name":"IoWritePartitionTable","features":[304,307,305,303,306,308,323,309,310]},{"name":"IoWritePartitionTableEx","features":[304,307,305,303,306,308,323,309,310]},{"name":"IofCallDriver","features":[304,307,305,303,306,308,309,310]},{"name":"IofCompleteRequest","features":[304,307,305,303,306,308,309,310]},{"name":"IommuDeviceCreationConfigTypeAcpi","features":[305]},{"name":"IommuDeviceCreationConfigTypeDeviceId","features":[305]},{"name":"IommuDeviceCreationConfigTypeMax","features":[305]},{"name":"IommuDeviceCreationConfigTypeNone","features":[305]},{"name":"IommuDmaLogicalAllocatorBuddy","features":[305]},{"name":"IommuDmaLogicalAllocatorMax","features":[305]},{"name":"IommuDmaLogicalAllocatorNone","features":[305]},{"name":"IrqPolicyAllCloseProcessors","features":[305]},{"name":"IrqPolicyAllProcessorsInMachine","features":[305]},{"name":"IrqPolicyAllProcessorsInMachineWhenSteered","features":[305]},{"name":"IrqPolicyMachineDefault","features":[305]},{"name":"IrqPolicyOneCloseProcessor","features":[305]},{"name":"IrqPolicySpecifiedProcessors","features":[305]},{"name":"IrqPolicySpreadMessagesAcrossAllProcessors","features":[305]},{"name":"IrqPriorityHigh","features":[305]},{"name":"IrqPriorityLow","features":[305]},{"name":"IrqPriorityNormal","features":[305]},{"name":"IrqPriorityUndefined","features":[305]},{"name":"Isa","features":[305]},{"name":"IsochCommand","features":[305]},{"name":"IsochStatus","features":[305]},{"name":"KADDRESS_BASE","features":[305]},{"name":"KADDRESS_RANGE","features":[305]},{"name":"KADDRESS_RANGE_DESCRIPTOR","features":[305]},{"name":"KAPC","features":[305,303,309]},{"name":"KBUGCHECK_ADD_PAGES","features":[305]},{"name":"KBUGCHECK_BUFFER_DUMP_STATE","features":[305]},{"name":"KBUGCHECK_CALLBACK_REASON","features":[305]},{"name":"KBUGCHECK_CALLBACK_RECORD","features":[305,309]},{"name":"KBUGCHECK_CALLBACK_ROUTINE","features":[305]},{"name":"KBUGCHECK_DUMP_IO","features":[305]},{"name":"KBUGCHECK_DUMP_IO_TYPE","features":[305]},{"name":"KBUGCHECK_REASON_CALLBACK_RECORD","features":[305,309]},{"name":"KBUGCHECK_REASON_CALLBACK_ROUTINE","features":[305,309]},{"name":"KBUGCHECK_REMOVE_PAGES","features":[305]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA","features":[305]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA_EX","features":[305]},{"name":"KBUGCHECK_TRIAGE_DUMP_DATA","features":[305,309]},{"name":"KB_ADD_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[305]},{"name":"KB_ADD_PAGES_FLAG_PHYSICAL_ADDRESS","features":[305]},{"name":"KB_ADD_PAGES_FLAG_VIRTUAL_ADDRESS","features":[305]},{"name":"KB_REMOVE_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[305]},{"name":"KB_REMOVE_PAGES_FLAG_PHYSICAL_ADDRESS","features":[305]},{"name":"KB_REMOVE_PAGES_FLAG_VIRTUAL_ADDRESS","features":[305]},{"name":"KB_SECONDARY_DATA_FLAG_ADDITIONAL_DATA","features":[305]},{"name":"KB_SECONDARY_DATA_FLAG_NO_DEVICE_ACCESS","features":[305]},{"name":"KB_TRIAGE_DUMP_DATA_FLAG_BUGCHECK_ACTIVE","features":[305]},{"name":"KDEFERRED_ROUTINE","features":[304,305,309]},{"name":"KDEVICE_QUEUE_ENTRY","features":[305,303,309]},{"name":"KDPC_IMPORTANCE","features":[305]},{"name":"KDPC_WATCHDOG_INFORMATION","features":[305]},{"name":"KD_CALLBACK_ACTION","features":[305]},{"name":"KD_NAMESPACE_ENUM","features":[305]},{"name":"KD_OPTION","features":[305]},{"name":"KD_OPTION_SET_BLOCK_ENABLE","features":[305]},{"name":"KENCODED_TIMER_PROCESSOR","features":[305]},{"name":"KERNEL_LARGE_STACK_COMMIT","features":[305]},{"name":"KERNEL_LARGE_STACK_SIZE","features":[305]},{"name":"KERNEL_MCA_EXCEPTION_STACK_SIZE","features":[305]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION","features":[305]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION_VERSION","features":[305]},{"name":"KERNEL_STACK_SIZE","features":[305]},{"name":"KERNEL_USER_TIMES","features":[305]},{"name":"KEY_BASIC_INFORMATION","features":[305]},{"name":"KEY_CACHED_INFORMATION","features":[305]},{"name":"KEY_CONTROL_FLAGS_INFORMATION","features":[305]},{"name":"KEY_FULL_INFORMATION","features":[305]},{"name":"KEY_INFORMATION_CLASS","features":[305]},{"name":"KEY_LAYER_INFORMATION","features":[305]},{"name":"KEY_NAME_INFORMATION","features":[305]},{"name":"KEY_NODE_INFORMATION","features":[305]},{"name":"KEY_SET_VIRTUALIZATION_INFORMATION","features":[305]},{"name":"KEY_TRUST_INFORMATION","features":[305]},{"name":"KEY_VALUE_BASIC_INFORMATION","features":[305]},{"name":"KEY_VALUE_FULL_INFORMATION","features":[305]},{"name":"KEY_VALUE_INFORMATION_CLASS","features":[305]},{"name":"KEY_VALUE_LAYER_INFORMATION","features":[305]},{"name":"KEY_VALUE_PARTIAL_INFORMATION","features":[305]},{"name":"KEY_VALUE_PARTIAL_INFORMATION_ALIGN64","features":[305]},{"name":"KEY_VIRTUALIZATION_INFORMATION","features":[305]},{"name":"KEY_WOW64_FLAGS_INFORMATION","features":[305]},{"name":"KEY_WRITE_TIME_INFORMATION","features":[305]},{"name":"KE_MAX_TRIAGE_DUMP_DATA_MEMORY_SIZE","features":[305]},{"name":"KE_PROCESSOR_CHANGE_ADD_EXISTING","features":[305]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_CONTEXT","features":[305,303,309]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_STATE","features":[305]},{"name":"KFLOATING_SAVE","features":[305]},{"name":"KGATE","features":[304,305,303,309]},{"name":"KINTERRUPT_MODE","features":[305]},{"name":"KINTERRUPT_POLARITY","features":[305]},{"name":"KIPI_BROADCAST_WORKER","features":[305]},{"name":"KI_USER_SHARED_DATA","features":[305]},{"name":"KLOCK_QUEUE_HANDLE","features":[305]},{"name":"KMESSAGE_SERVICE_ROUTINE","features":[305,303]},{"name":"KPROFILE_SOURCE","features":[305]},{"name":"KSEMAPHORE","features":[304,305,303,309]},{"name":"KSERVICE_ROUTINE","features":[305,303]},{"name":"KSPIN_LOCK_QUEUE","features":[305]},{"name":"KSTART_ROUTINE","features":[305]},{"name":"KSYNCHRONIZE_ROUTINE","features":[305,303]},{"name":"KSYSTEM_TIME","features":[305]},{"name":"KTIMER","features":[304,305,303,309]},{"name":"KTRIAGE_DUMP_DATA_ARRAY","features":[305,309]},{"name":"KUMS_UCH_VOLATILE_BIT","features":[305]},{"name":"KUSER_SHARED_DATA","features":[305,303,331,309]},{"name":"KWAIT_CHAIN","features":[305]},{"name":"KWAIT_REASON","features":[305]},{"name":"KbCallbackAddPages","features":[305]},{"name":"KbCallbackDumpIo","features":[305]},{"name":"KbCallbackInvalid","features":[305]},{"name":"KbCallbackRemovePages","features":[305]},{"name":"KbCallbackReserved1","features":[305]},{"name":"KbCallbackReserved2","features":[305]},{"name":"KbCallbackSecondaryDumpData","features":[305]},{"name":"KbCallbackSecondaryMultiPartDumpData","features":[305]},{"name":"KbCallbackTriageDumpData","features":[305]},{"name":"KbDumpIoBody","features":[305]},{"name":"KbDumpIoComplete","features":[305]},{"name":"KbDumpIoHeader","features":[305]},{"name":"KbDumpIoInvalid","features":[305]},{"name":"KbDumpIoSecondaryData","features":[305]},{"name":"KdChangeOption","features":[305,303]},{"name":"KdConfigureDeviceAndContinue","features":[305]},{"name":"KdConfigureDeviceAndStop","features":[305]},{"name":"KdDisableDebugger","features":[305,303]},{"name":"KdEnableDebugger","features":[305,303]},{"name":"KdNameSpaceACPI","features":[305]},{"name":"KdNameSpaceAny","features":[305]},{"name":"KdNameSpaceMax","features":[305]},{"name":"KdNameSpaceNone","features":[305]},{"name":"KdNameSpacePCI","features":[305]},{"name":"KdRefreshDebuggerNotPresent","features":[305,303]},{"name":"KdSkipDeviceAndContinue","features":[305]},{"name":"KdSkipDeviceAndStop","features":[305]},{"name":"KeAcquireGuardedMutex","features":[304,305,303,309]},{"name":"KeAcquireGuardedMutexUnsafe","features":[304,305,303,309]},{"name":"KeAcquireInStackQueuedSpinLock","features":[305]},{"name":"KeAcquireInStackQueuedSpinLockAtDpcLevel","features":[305]},{"name":"KeAcquireInStackQueuedSpinLockForDpc","features":[305]},{"name":"KeAcquireInterruptSpinLock","features":[304,305]},{"name":"KeAcquireSpinLockForDpc","features":[305]},{"name":"KeAddTriageDumpDataBlock","features":[305,303,309]},{"name":"KeAreAllApcsDisabled","features":[305,303]},{"name":"KeAreApcsDisabled","features":[305,303]},{"name":"KeBugCheck","features":[305,331]},{"name":"KeBugCheckEx","features":[305,331]},{"name":"KeCancelTimer","features":[304,305,303,309]},{"name":"KeClearEvent","features":[304,305,303,309]},{"name":"KeConvertAuxiliaryCounterToPerformanceCounter","features":[305,303]},{"name":"KeConvertPerformanceCounterToAuxiliaryCounter","features":[305,303]},{"name":"KeDelayExecutionThread","features":[305,303]},{"name":"KeDeregisterBoundCallback","features":[305,303]},{"name":"KeDeregisterBugCheckCallback","features":[305,303,309]},{"name":"KeDeregisterBugCheckReasonCallback","features":[305,303,309]},{"name":"KeDeregisterNmiCallback","features":[305,303]},{"name":"KeDeregisterProcessorChangeCallback","features":[305]},{"name":"KeEnterCriticalRegion","features":[305]},{"name":"KeEnterGuardedRegion","features":[305]},{"name":"KeExpandKernelStackAndCallout","features":[305,303]},{"name":"KeExpandKernelStackAndCalloutEx","features":[305,303]},{"name":"KeFlushIoBuffers","features":[304,305,303]},{"name":"KeFlushQueuedDpcs","features":[305]},{"name":"KeFlushWriteBuffer","features":[305]},{"name":"KeGetCurrentIrql","features":[305]},{"name":"KeGetCurrentNodeNumber","features":[305]},{"name":"KeGetCurrentProcessorNumberEx","features":[305,309]},{"name":"KeGetProcessorIndexFromNumber","features":[305,309]},{"name":"KeGetProcessorNumberFromIndex","features":[305,303,309]},{"name":"KeGetRecommendedSharedDataAlignment","features":[305]},{"name":"KeInitializeCrashDumpHeader","features":[305,303]},{"name":"KeInitializeDeviceQueue","features":[304,305,303,309]},{"name":"KeInitializeDpc","features":[304,305,309]},{"name":"KeInitializeEvent","features":[304,305,303,309]},{"name":"KeInitializeGuardedMutex","features":[304,305,303,309]},{"name":"KeInitializeMutex","features":[304,305,303,309]},{"name":"KeInitializeSemaphore","features":[304,305,303,309]},{"name":"KeInitializeSpinLock","features":[305]},{"name":"KeInitializeThreadedDpc","features":[304,305,309]},{"name":"KeInitializeTimer","features":[304,305,303,309]},{"name":"KeInitializeTimerEx","features":[304,305,303,309]},{"name":"KeInitializeTriageDumpDataArray","features":[305,303,309]},{"name":"KeInsertByKeyDeviceQueue","features":[304,305,303,309]},{"name":"KeInsertDeviceQueue","features":[304,305,303,309]},{"name":"KeInsertQueueDpc","features":[304,305,303,309]},{"name":"KeInvalidateAllCaches","features":[305,303]},{"name":"KeInvalidateRangeAllCaches","features":[305]},{"name":"KeIpiGenericCall","features":[305]},{"name":"KeIsExecutingDpc","features":[305]},{"name":"KeLeaveCriticalRegion","features":[305]},{"name":"KeLeaveGuardedRegion","features":[305]},{"name":"KeProcessorAddCompleteNotify","features":[305]},{"name":"KeProcessorAddFailureNotify","features":[305]},{"name":"KeProcessorAddStartNotify","features":[305]},{"name":"KePulseEvent","features":[304,305,303,309]},{"name":"KeQueryActiveGroupCount","features":[305]},{"name":"KeQueryActiveProcessorCount","features":[305]},{"name":"KeQueryActiveProcessorCountEx","features":[305]},{"name":"KeQueryActiveProcessors","features":[305]},{"name":"KeQueryAuxiliaryCounterFrequency","features":[305,303]},{"name":"KeQueryDpcWatchdogInformation","features":[305,303]},{"name":"KeQueryGroupAffinity","features":[305]},{"name":"KeQueryHardwareCounterConfiguration","features":[305,303]},{"name":"KeQueryHighestNodeNumber","features":[305]},{"name":"KeQueryInterruptTimePrecise","features":[305]},{"name":"KeQueryLogicalProcessorRelationship","features":[305,303,309,333]},{"name":"KeQueryMaximumGroupCount","features":[305]},{"name":"KeQueryMaximumProcessorCount","features":[305]},{"name":"KeQueryMaximumProcessorCountEx","features":[305]},{"name":"KeQueryNodeActiveAffinity","features":[305,333]},{"name":"KeQueryNodeActiveAffinity2","features":[305,303,333]},{"name":"KeQueryNodeActiveProcessorCount","features":[305]},{"name":"KeQueryNodeMaximumProcessorCount","features":[305]},{"name":"KeQueryPerformanceCounter","features":[305]},{"name":"KeQueryPriorityThread","features":[304,305]},{"name":"KeQueryRuntimeThread","features":[304,305]},{"name":"KeQuerySystemTimePrecise","features":[305]},{"name":"KeQueryTimeIncrement","features":[305]},{"name":"KeQueryTotalCycleTimeThread","features":[304,305]},{"name":"KeQueryUnbiasedInterruptTime","features":[305]},{"name":"KeQueryUnbiasedInterruptTimePrecise","features":[305]},{"name":"KeReadStateEvent","features":[304,305,303,309]},{"name":"KeReadStateMutex","features":[304,305,303,309]},{"name":"KeReadStateSemaphore","features":[304,305,303,309]},{"name":"KeReadStateTimer","features":[304,305,303,309]},{"name":"KeRegisterBoundCallback","features":[305]},{"name":"KeRegisterBugCheckCallback","features":[305,303,309]},{"name":"KeRegisterBugCheckReasonCallback","features":[305,303,309]},{"name":"KeRegisterNmiCallback","features":[305,303]},{"name":"KeRegisterProcessorChangeCallback","features":[305]},{"name":"KeReleaseGuardedMutex","features":[304,305,303,309]},{"name":"KeReleaseGuardedMutexUnsafe","features":[304,305,303,309]},{"name":"KeReleaseInStackQueuedSpinLock","features":[305]},{"name":"KeReleaseInStackQueuedSpinLockForDpc","features":[305]},{"name":"KeReleaseInStackQueuedSpinLockFromDpcLevel","features":[305]},{"name":"KeReleaseInterruptSpinLock","features":[304,305]},{"name":"KeReleaseMutex","features":[304,305,303,309]},{"name":"KeReleaseSemaphore","features":[304,305,303,309]},{"name":"KeReleaseSpinLockForDpc","features":[305]},{"name":"KeRemoveByKeyDeviceQueue","features":[304,305,303,309]},{"name":"KeRemoveByKeyDeviceQueueIfBusy","features":[304,305,303,309]},{"name":"KeRemoveDeviceQueue","features":[304,305,303,309]},{"name":"KeRemoveEntryDeviceQueue","features":[304,305,303,309]},{"name":"KeRemoveQueueDpc","features":[304,305,303,309]},{"name":"KeRemoveQueueDpcEx","features":[304,305,303,309]},{"name":"KeResetEvent","features":[304,305,303,309]},{"name":"KeRestoreExtendedProcessorState","features":[305,331]},{"name":"KeRevertToUserAffinityThread","features":[305]},{"name":"KeRevertToUserAffinityThreadEx","features":[305]},{"name":"KeRevertToUserGroupAffinityThread","features":[305,333]},{"name":"KeSaveExtendedProcessorState","features":[305,303,331]},{"name":"KeSetBasePriorityThread","features":[304,305]},{"name":"KeSetCoalescableTimer","features":[304,305,303,309]},{"name":"KeSetEvent","features":[304,305,303,309]},{"name":"KeSetHardwareCounterConfiguration","features":[305,303]},{"name":"KeSetImportanceDpc","features":[304,305,309]},{"name":"KeSetPriorityThread","features":[304,305]},{"name":"KeSetSystemAffinityThread","features":[305]},{"name":"KeSetSystemAffinityThreadEx","features":[305]},{"name":"KeSetSystemGroupAffinityThread","features":[305,333]},{"name":"KeSetTargetProcessorDpc","features":[304,305,309]},{"name":"KeSetTargetProcessorDpcEx","features":[304,305,303,309]},{"name":"KeSetTimer","features":[304,305,303,309]},{"name":"KeSetTimerEx","features":[304,305,303,309]},{"name":"KeShouldYieldProcessor","features":[305]},{"name":"KeStallExecutionProcessor","features":[305]},{"name":"KeSynchronizeExecution","features":[304,305,303]},{"name":"KeTestSpinLock","features":[305,303]},{"name":"KeTryToAcquireGuardedMutex","features":[304,305,303,309]},{"name":"KeTryToAcquireSpinLockAtDpcLevel","features":[305,303]},{"name":"KeWaitForMultipleObjects","features":[304,305,303,309]},{"name":"KeWaitForSingleObject","features":[305,303]},{"name":"KeepObject","features":[305]},{"name":"KernelMode","features":[305]},{"name":"KeyBasicInformation","features":[305]},{"name":"KeyCachedInformation","features":[305]},{"name":"KeyFlagsInformation","features":[305]},{"name":"KeyFullInformation","features":[305]},{"name":"KeyHandleTagsInformation","features":[305]},{"name":"KeyLayerInformation","features":[305]},{"name":"KeyNameInformation","features":[305]},{"name":"KeyNodeInformation","features":[305]},{"name":"KeyTrustInformation","features":[305]},{"name":"KeyValueBasicInformation","features":[305]},{"name":"KeyValueFullInformation","features":[305]},{"name":"KeyValueFullInformationAlign64","features":[305]},{"name":"KeyValueLayerInformation","features":[305]},{"name":"KeyValuePartialInformation","features":[305]},{"name":"KeyValuePartialInformationAlign64","features":[305]},{"name":"KeyVirtualizationInformation","features":[305]},{"name":"KeyboardController","features":[305]},{"name":"KeyboardPeripheral","features":[305]},{"name":"KfRaiseIrql","features":[305]},{"name":"L0sAndL1EntryDisabled","features":[305]},{"name":"L0sAndL1EntryEnabled","features":[305]},{"name":"L0sAndL1EntrySupport","features":[305]},{"name":"L0sEntryEnabled","features":[305]},{"name":"L0sEntrySupport","features":[305]},{"name":"L0s_128ns_256ns","features":[305]},{"name":"L0s_1us_2us","features":[305]},{"name":"L0s_256ns_512ns","features":[305]},{"name":"L0s_2us_4us","features":[305]},{"name":"L0s_512ns_1us","features":[305]},{"name":"L0s_64ns_128ns","features":[305]},{"name":"L0s_Above4us","features":[305]},{"name":"L0s_Below64ns","features":[305]},{"name":"L1EntryEnabled","features":[305]},{"name":"L1EntrySupport","features":[305]},{"name":"L1_16us_32us","features":[305]},{"name":"L1_1us_2us","features":[305]},{"name":"L1_2us_4us","features":[305]},{"name":"L1_32us_64us","features":[305]},{"name":"L1_4us_8us","features":[305]},{"name":"L1_8us_16us","features":[305]},{"name":"L1_Above64us","features":[305]},{"name":"L1_Below1us","features":[305]},{"name":"LEGACY_BUS_INFORMATION","features":[305]},{"name":"LINK_SHARE_ACCESS","features":[305]},{"name":"LOADER_PARTITION_INFORMATION_EX","features":[305]},{"name":"LOCK_OPERATION","features":[305]},{"name":"LOCK_QUEUE_HALTED","features":[305]},{"name":"LOCK_QUEUE_HALTED_BIT","features":[305]},{"name":"LOCK_QUEUE_OWNER","features":[305]},{"name":"LOCK_QUEUE_OWNER_BIT","features":[305]},{"name":"LOCK_QUEUE_WAIT","features":[305]},{"name":"LOCK_QUEUE_WAIT_BIT","features":[305]},{"name":"LONG_2ND_MOST_SIGNIFICANT_BIT","features":[305]},{"name":"LONG_3RD_MOST_SIGNIFICANT_BIT","features":[305]},{"name":"LONG_LEAST_SIGNIFICANT_BIT","features":[305]},{"name":"LONG_MOST_SIGNIFICANT_BIT","features":[305]},{"name":"LOWBYTE_MASK","features":[305]},{"name":"LOW_LEVEL","features":[305]},{"name":"LOW_PRIORITY","features":[305]},{"name":"LOW_REALTIME_PRIORITY","features":[305]},{"name":"LastDStateTransitionD3cold","features":[305]},{"name":"LastDStateTransitionD3hot","features":[305]},{"name":"LastDStateTransitionStatusUnknown","features":[305]},{"name":"LastDrvRtFlag","features":[305]},{"name":"Latched","features":[305]},{"name":"LevelSensitive","features":[305]},{"name":"LinePeripheral","features":[305]},{"name":"LocateControl","features":[305]},{"name":"LocationTypeFileSystem","features":[305]},{"name":"LocationTypeMaximum","features":[305]},{"name":"LocationTypeRegistry","features":[305]},{"name":"LoggerEventsLoggedClass","features":[305]},{"name":"LoggerEventsLostClass","features":[305]},{"name":"LowImportance","features":[305]},{"name":"LowPagePriority","features":[305]},{"name":"LowPoolPriority","features":[305]},{"name":"LowPoolPrioritySpecialPoolOverrun","features":[305]},{"name":"LowPoolPrioritySpecialPoolUnderrun","features":[305]},{"name":"MAILSLOT_CREATE_PARAMETERS","features":[305,303]},{"name":"MAP_REGISTER_ENTRY","features":[305,303]},{"name":"MAXIMUM_DEBUG_BARS","features":[305]},{"name":"MAXIMUM_FILENAME_LENGTH","features":[305]},{"name":"MAXIMUM_PRIORITY","features":[305]},{"name":"MAX_EVENT_COUNTERS","features":[305]},{"name":"MCA_DRIVER_INFO","features":[304,305]},{"name":"MCA_EXCEPTION","features":[305]},{"name":"MCA_EXCEPTION_TYPE","features":[305]},{"name":"MCA_EXTREG_V2MAX","features":[305]},{"name":"MCE_NOTIFY_TYPE_GUID","features":[305]},{"name":"MCG_CAP","features":[305]},{"name":"MCG_STATUS","features":[305]},{"name":"MCI_ADDR","features":[305]},{"name":"MCI_STATS","features":[305]},{"name":"MCI_STATUS","features":[305]},{"name":"MCI_STATUS_AMD_BITS","features":[305]},{"name":"MCI_STATUS_BITS_COMMON","features":[305]},{"name":"MCI_STATUS_INTEL_BITS","features":[305]},{"name":"MDL_ALLOCATED_FIXED_SIZE","features":[305]},{"name":"MDL_DESCRIBES_AWE","features":[305]},{"name":"MDL_FREE_EXTRA_PTES","features":[305]},{"name":"MDL_INTERNAL","features":[305]},{"name":"MDL_LOCKED_PAGE_TABLES","features":[305]},{"name":"MDL_PAGE_CONTENTS_INVARIANT","features":[305]},{"name":"MEMORY_CACHING_TYPE","features":[305]},{"name":"MEMORY_CACHING_TYPE_ORIG","features":[305]},{"name":"MEMORY_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[305]},{"name":"MEMORY_ERROR_SECTION_GUID","features":[305]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_OPEN_INFORMATION","features":[305,303]},{"name":"MEM_COMMIT","features":[305]},{"name":"MEM_DECOMMIT","features":[305]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[305]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[305]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[305]},{"name":"MEM_LARGE_PAGES","features":[305]},{"name":"MEM_MAPPED","features":[305]},{"name":"MEM_PRIVATE","features":[305]},{"name":"MEM_RELEASE","features":[305]},{"name":"MEM_RESERVE","features":[305]},{"name":"MEM_RESET","features":[305]},{"name":"MEM_RESET_UNDO","features":[305]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[305]},{"name":"MEM_TOP_DOWN","features":[305]},{"name":"MM_ADD_PHYSICAL_MEMORY_ALREADY_ZEROED","features":[305]},{"name":"MM_ADD_PHYSICAL_MEMORY_HUGE_PAGES_ONLY","features":[305]},{"name":"MM_ADD_PHYSICAL_MEMORY_LARGE_PAGES_ONLY","features":[305]},{"name":"MM_ALLOCATE_AND_HOT_REMOVE","features":[305]},{"name":"MM_ALLOCATE_CONTIGUOUS_MEMORY_FAST_ONLY","features":[305]},{"name":"MM_ALLOCATE_FAST_LARGE_PAGES","features":[305]},{"name":"MM_ALLOCATE_FROM_LOCAL_NODE_ONLY","features":[305]},{"name":"MM_ALLOCATE_FULLY_REQUIRED","features":[305]},{"name":"MM_ALLOCATE_NO_WAIT","features":[305]},{"name":"MM_ALLOCATE_PREFER_CONTIGUOUS","features":[305]},{"name":"MM_ALLOCATE_REQUIRE_CONTIGUOUS_CHUNKS","features":[305]},{"name":"MM_ALLOCATE_TRIM_IF_NECESSARY","features":[305]},{"name":"MM_ANY_NODE_OK","features":[305]},{"name":"MM_COPY_ADDRESS","features":[305]},{"name":"MM_COPY_MEMORY_PHYSICAL","features":[305]},{"name":"MM_COPY_MEMORY_VIRTUAL","features":[305]},{"name":"MM_DONT_ZERO_ALLOCATION","features":[305]},{"name":"MM_DUMP_MAP_CACHED","features":[305]},{"name":"MM_DUMP_MAP_INVALIDATE","features":[305]},{"name":"MM_FREE_MDL_PAGES_ZERO","features":[305]},{"name":"MM_GET_CACHE_ATTRIBUTE_IO_SPACE","features":[305]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_ALL_PARTITIONS","features":[305]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_FILE_ONLY","features":[305]},{"name":"MM_MAPPING_ADDRESS_DIVISIBLE","features":[305]},{"name":"MM_MAXIMUM_DISK_IO_SIZE","features":[305]},{"name":"MM_MDL_PAGE_CONTENTS_STATE","features":[305]},{"name":"MM_MDL_ROUTINE","features":[305]},{"name":"MM_PAGE_PRIORITY","features":[305]},{"name":"MM_PERMANENT_ADDRESS_IS_IO_SPACE","features":[305]},{"name":"MM_PHYSICAL_ADDRESS_LIST","features":[305]},{"name":"MM_PROTECT_DRIVER_SECTION_ALLOW_UNLOAD","features":[305]},{"name":"MM_PROTECT_DRIVER_SECTION_VALID_FLAGS","features":[305]},{"name":"MM_REMOVE_PHYSICAL_MEMORY_BAD_ONLY","features":[305]},{"name":"MM_ROTATE_DIRECTION","features":[305]},{"name":"MM_SECURE_EXCLUSIVE","features":[305]},{"name":"MM_SECURE_NO_CHANGE","features":[305]},{"name":"MM_SECURE_NO_INHERIT","features":[305]},{"name":"MM_SECURE_USER_MODE_ONLY","features":[305]},{"name":"MM_SYSTEMSIZE","features":[305]},{"name":"MM_SYSTEM_SPACE_END","features":[305]},{"name":"MM_SYSTEM_VIEW_EXCEPTIONS_FOR_INPAGE_ERRORS","features":[305]},{"name":"MODE","features":[305]},{"name":"MPIBus","features":[305]},{"name":"MPIConfiguration","features":[305]},{"name":"MPSABus","features":[305]},{"name":"MPSAConfiguration","features":[305]},{"name":"MRLClosed","features":[305]},{"name":"MRLOpen","features":[305]},{"name":"MU_TELEMETRY_SECTION","features":[305]},{"name":"MU_TELEMETRY_SECTION_GUID","features":[305]},{"name":"MapPhysicalAddressTypeContiguousRange","features":[305]},{"name":"MapPhysicalAddressTypeMax","features":[305]},{"name":"MapPhysicalAddressTypeMdl","features":[305]},{"name":"MapPhysicalAddressTypePfn","features":[305]},{"name":"MaxFaultType","features":[305]},{"name":"MaxHardwareCounterType","features":[305]},{"name":"MaxKeyInfoClass","features":[305]},{"name":"MaxKeyValueInfoClass","features":[305]},{"name":"MaxPayload1024Bytes","features":[305]},{"name":"MaxPayload128Bytes","features":[305]},{"name":"MaxPayload2048Bytes","features":[305]},{"name":"MaxPayload256Bytes","features":[305]},{"name":"MaxPayload4096Bytes","features":[305]},{"name":"MaxPayload512Bytes","features":[305]},{"name":"MaxRegNtNotifyClass","features":[305]},{"name":"MaxSubsystemInformationType","features":[305]},{"name":"MaxTimerInfoClass","features":[305]},{"name":"MaxTraceInformationClass","features":[305]},{"name":"MaximumBusDataType","features":[305]},{"name":"MaximumDmaSpeed","features":[305]},{"name":"MaximumDmaWidth","features":[305]},{"name":"MaximumInterfaceType","features":[305]},{"name":"MaximumMode","features":[305]},{"name":"MaximumType","features":[305]},{"name":"MaximumWaitReason","features":[305]},{"name":"MaximumWorkQueue","features":[305]},{"name":"MdlMappingNoExecute","features":[305]},{"name":"MdlMappingNoWrite","features":[305]},{"name":"MdlMappingWithGuardPtes","features":[305]},{"name":"MediumHighImportance","features":[305]},{"name":"MediumImportance","features":[305]},{"name":"MemDedicatedAttributeMax","features":[305]},{"name":"MemDedicatedAttributeReadBandwidth","features":[305]},{"name":"MemDedicatedAttributeReadLatency","features":[305]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[305]},{"name":"MemDedicatedAttributeWriteLatency","features":[305]},{"name":"MemSectionExtendedParameterInvalidType","features":[305]},{"name":"MemSectionExtendedParameterMax","features":[305]},{"name":"MemSectionExtendedParameterNumaNode","features":[305]},{"name":"MemSectionExtendedParameterSigningLevel","features":[305]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[305]},{"name":"MicroChannel","features":[305]},{"name":"MmAddPhysicalMemory","features":[305,303]},{"name":"MmAddVerifierSpecialThunks","features":[305,303]},{"name":"MmAddVerifierThunks","features":[305,303]},{"name":"MmAdvanceMdl","features":[304,305,303]},{"name":"MmAllocateContiguousMemory","features":[305]},{"name":"MmAllocateContiguousMemoryEx","features":[305,303]},{"name":"MmAllocateContiguousMemorySpecifyCache","features":[305]},{"name":"MmAllocateContiguousMemorySpecifyCacheNode","features":[305]},{"name":"MmAllocateContiguousNodeMemory","features":[305]},{"name":"MmAllocateMappingAddress","features":[305]},{"name":"MmAllocateMappingAddressEx","features":[305]},{"name":"MmAllocateMdlForIoSpace","features":[304,305,303]},{"name":"MmAllocateNodePagesForMdlEx","features":[304,305]},{"name":"MmAllocateNonCachedMemory","features":[305]},{"name":"MmAllocatePagesForMdl","features":[304,305]},{"name":"MmAllocatePagesForMdlEx","features":[304,305]},{"name":"MmAllocatePartitionNodePagesForMdlEx","features":[304,305]},{"name":"MmAreMdlPagesCached","features":[304,305]},{"name":"MmBuildMdlForNonPagedPool","features":[304,305]},{"name":"MmCached","features":[305]},{"name":"MmCopyMemory","features":[305,303]},{"name":"MmCreateMdl","features":[304,305]},{"name":"MmCreateMirror","features":[305,303]},{"name":"MmFrameBufferCached","features":[305]},{"name":"MmFreeContiguousMemory","features":[305]},{"name":"MmFreeContiguousMemorySpecifyCache","features":[305]},{"name":"MmFreeMappingAddress","features":[305]},{"name":"MmFreeNonCachedMemory","features":[305]},{"name":"MmFreePagesFromMdl","features":[304,305]},{"name":"MmFreePagesFromMdlEx","features":[304,305]},{"name":"MmGetCacheAttribute","features":[305,303]},{"name":"MmGetCacheAttributeEx","features":[305,303]},{"name":"MmGetPhysicalAddress","features":[305]},{"name":"MmGetPhysicalMemoryRanges","features":[305]},{"name":"MmGetPhysicalMemoryRangesEx","features":[305]},{"name":"MmGetPhysicalMemoryRangesEx2","features":[305]},{"name":"MmGetSystemRoutineAddress","features":[305,303]},{"name":"MmGetVirtualForPhysical","features":[305]},{"name":"MmHardwareCoherentCached","features":[305]},{"name":"MmIsAddressValid","features":[305,303]},{"name":"MmIsDriverSuspectForVerifier","features":[304,307,305,303,306,308,309,310]},{"name":"MmIsDriverVerifying","features":[304,307,305,303,306,308,309,310]},{"name":"MmIsDriverVerifyingByAddress","features":[305]},{"name":"MmIsIoSpaceActive","features":[305]},{"name":"MmIsNonPagedSystemAddressValid","features":[305,303]},{"name":"MmIsThisAnNtAsSystem","features":[305,303]},{"name":"MmIsVerifierEnabled","features":[305,303]},{"name":"MmLargeSystem","features":[305]},{"name":"MmLockPagableDataSection","features":[305]},{"name":"MmLockPagableSectionByHandle","features":[305]},{"name":"MmMapIoSpace","features":[305]},{"name":"MmMapIoSpaceEx","features":[305]},{"name":"MmMapLockedPages","features":[304,305]},{"name":"MmMapLockedPagesSpecifyCache","features":[304,305]},{"name":"MmMapLockedPagesWithReservedMapping","features":[304,305]},{"name":"MmMapMdl","features":[304,305,303]},{"name":"MmMapMemoryDumpMdlEx","features":[304,305,303]},{"name":"MmMapUserAddressesToPage","features":[305,303]},{"name":"MmMapVideoDisplay","features":[305]},{"name":"MmMapViewInSessionSpace","features":[305,303]},{"name":"MmMapViewInSessionSpaceEx","features":[305,303]},{"name":"MmMapViewInSystemSpace","features":[305,303]},{"name":"MmMapViewInSystemSpaceEx","features":[305,303]},{"name":"MmMaximumCacheType","features":[305]},{"name":"MmMaximumRotateDirection","features":[305]},{"name":"MmMdlPageContentsDynamic","features":[305]},{"name":"MmMdlPageContentsInvariant","features":[305]},{"name":"MmMdlPageContentsQuery","features":[305]},{"name":"MmMdlPageContentsState","features":[304,305]},{"name":"MmMediumSystem","features":[305]},{"name":"MmNonCached","features":[305]},{"name":"MmNonCachedUnordered","features":[305]},{"name":"MmNotMapped","features":[305]},{"name":"MmPageEntireDriver","features":[305]},{"name":"MmProbeAndLockPages","features":[304,305]},{"name":"MmProbeAndLockProcessPages","features":[304,305]},{"name":"MmProbeAndLockSelectedPages","features":[304,305,322]},{"name":"MmProtectDriverSection","features":[305,303]},{"name":"MmProtectMdlSystemAddress","features":[304,305,303]},{"name":"MmQuerySystemSize","features":[305]},{"name":"MmRemovePhysicalMemory","features":[305,303]},{"name":"MmResetDriverPaging","features":[305]},{"name":"MmRotatePhysicalView","features":[304,305,303]},{"name":"MmSecureVirtualMemory","features":[305,303]},{"name":"MmSecureVirtualMemoryEx","features":[305,303]},{"name":"MmSetPermanentCacheAttribute","features":[305,303]},{"name":"MmSizeOfMdl","features":[305]},{"name":"MmSmallSystem","features":[305]},{"name":"MmToFrameBuffer","features":[305]},{"name":"MmToFrameBufferNoCopy","features":[305]},{"name":"MmToRegularMemory","features":[305]},{"name":"MmToRegularMemoryNoCopy","features":[305]},{"name":"MmUSWCCached","features":[305]},{"name":"MmUnlockPagableImageSection","features":[305]},{"name":"MmUnlockPages","features":[304,305]},{"name":"MmUnmapIoSpace","features":[305]},{"name":"MmUnmapLockedPages","features":[304,305]},{"name":"MmUnmapReservedMapping","features":[304,305]},{"name":"MmUnmapVideoDisplay","features":[305]},{"name":"MmUnmapViewInSessionSpace","features":[305,303]},{"name":"MmUnmapViewInSystemSpace","features":[305,303]},{"name":"MmUnsecureVirtualMemory","features":[305,303]},{"name":"MmWriteCombined","features":[305]},{"name":"ModemPeripheral","features":[305]},{"name":"ModifyAccess","features":[305]},{"name":"MonitorPeripheral","features":[305]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[305]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[305]},{"name":"MonitorRequestReasonBatteryCountChange","features":[305]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[305]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[305]},{"name":"MonitorRequestReasonBuiltinPanel","features":[305]},{"name":"MonitorRequestReasonDP","features":[305]},{"name":"MonitorRequestReasonDim","features":[305]},{"name":"MonitorRequestReasonDirectedDrips","features":[305]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[305]},{"name":"MonitorRequestReasonFullWake","features":[305]},{"name":"MonitorRequestReasonGracePeriod","features":[305]},{"name":"MonitorRequestReasonIdleTimeout","features":[305]},{"name":"MonitorRequestReasonLid","features":[305]},{"name":"MonitorRequestReasonMax","features":[305]},{"name":"MonitorRequestReasonNearProximity","features":[305]},{"name":"MonitorRequestReasonPdcSignal","features":[305]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[305]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[305]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[305]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[305]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[305]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[305]},{"name":"MonitorRequestReasonPnP","features":[305]},{"name":"MonitorRequestReasonPoSetSystemState","features":[305]},{"name":"MonitorRequestReasonPolicyChange","features":[305]},{"name":"MonitorRequestReasonPowerButton","features":[305]},{"name":"MonitorRequestReasonRemoteConnection","features":[305]},{"name":"MonitorRequestReasonResumeModernStandby","features":[305]},{"name":"MonitorRequestReasonResumePdc","features":[305]},{"name":"MonitorRequestReasonResumeS4","features":[305]},{"name":"MonitorRequestReasonScMonitorpower","features":[305]},{"name":"MonitorRequestReasonScreenOffRequest","features":[305]},{"name":"MonitorRequestReasonSessionUnlock","features":[305]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[305]},{"name":"MonitorRequestReasonSleepButton","features":[305]},{"name":"MonitorRequestReasonSxTransition","features":[305]},{"name":"MonitorRequestReasonSystemIdle","features":[305]},{"name":"MonitorRequestReasonSystemStateEntered","features":[305]},{"name":"MonitorRequestReasonTerminal","features":[305]},{"name":"MonitorRequestReasonTerminalInit","features":[305]},{"name":"MonitorRequestReasonThermalStandby","features":[305]},{"name":"MonitorRequestReasonUnknown","features":[305]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[305]},{"name":"MonitorRequestReasonUserInput","features":[305]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[305]},{"name":"MonitorRequestReasonUserInputHid","features":[305]},{"name":"MonitorRequestReasonUserInputInitialization","features":[305]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[305]},{"name":"MonitorRequestReasonUserInputMouse","features":[305]},{"name":"MonitorRequestReasonUserInputPen","features":[305]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[305]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[305]},{"name":"MonitorRequestReasonUserInputTouch","features":[305]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[305]},{"name":"MonitorRequestReasonWinrt","features":[305]},{"name":"MonitorRequestTypeOff","features":[305]},{"name":"MonitorRequestTypeOnAndPresent","features":[305]},{"name":"MonitorRequestTypeToggleOn","features":[305]},{"name":"MultiFunctionAdapter","features":[305]},{"name":"NAMED_PIPE_CREATE_PARAMETERS","features":[305,303]},{"name":"NEC98x86","features":[305]},{"name":"NMI_CALLBACK","features":[305,303]},{"name":"NMI_NOTIFY_TYPE_GUID","features":[305]},{"name":"NMI_SECTION_GUID","features":[305]},{"name":"NPEM_CAPABILITY_STANDARD","features":[305]},{"name":"NPEM_CONTROL_ENABLE_DISABLE","features":[305,303]},{"name":"NPEM_CONTROL_INTERFACE","features":[305,303]},{"name":"NPEM_CONTROL_INTERFACE_CURRENT_VERSION","features":[305]},{"name":"NPEM_CONTROL_INTERFACE_VERSION1","features":[305]},{"name":"NPEM_CONTROL_INTERFACE_VERSION2","features":[305]},{"name":"NPEM_CONTROL_QUERY_CONTROL","features":[305]},{"name":"NPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[305,303]},{"name":"NPEM_CONTROL_SET_STANDARD_CONTROL","features":[305,303]},{"name":"NPEM_CONTROL_STANDARD_CONTROL_BIT","features":[305]},{"name":"NTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[305,306]},{"name":"NT_PAGING_LEVELS","features":[305]},{"name":"NT_TIB32","features":[305]},{"name":"NX_SUPPORT_POLICY_ALWAYSOFF","features":[305]},{"name":"NX_SUPPORT_POLICY_ALWAYSON","features":[305]},{"name":"NX_SUPPORT_POLICY_OPTIN","features":[305]},{"name":"NX_SUPPORT_POLICY_OPTOUT","features":[305]},{"name":"NetworkController","features":[305]},{"name":"NetworkPeripheral","features":[305]},{"name":"NoAspmSupport","features":[305]},{"name":"NormalPagePriority","features":[305]},{"name":"NormalPoolPriority","features":[305]},{"name":"NormalPoolPrioritySpecialPoolOverrun","features":[305]},{"name":"NormalPoolPrioritySpecialPoolUnderrun","features":[305]},{"name":"NormalWorkQueue","features":[305]},{"name":"NtCommitComplete","features":[305,303]},{"name":"NtCommitEnlistment","features":[305,303]},{"name":"NtCommitTransaction","features":[305,303]},{"name":"NtCreateEnlistment","features":[304,305,303]},{"name":"NtCreateResourceManager","features":[304,305,303]},{"name":"NtCreateTransaction","features":[304,305,303]},{"name":"NtCreateTransactionManager","features":[304,305,303]},{"name":"NtEnumerateTransactionObject","features":[305,303,337]},{"name":"NtGetNotificationResourceManager","features":[305,303,322]},{"name":"NtManagePartition","features":[305,303]},{"name":"NtOpenEnlistment","features":[304,305,303]},{"name":"NtOpenProcess","features":[304,305,303,335]},{"name":"NtOpenRegistryTransaction","features":[304,305,303]},{"name":"NtOpenResourceManager","features":[304,305,303]},{"name":"NtOpenTransaction","features":[304,305,303]},{"name":"NtOpenTransactionManager","features":[304,305,303]},{"name":"NtPowerInformation","features":[305,303,310]},{"name":"NtPrePrepareComplete","features":[305,303]},{"name":"NtPrePrepareEnlistment","features":[305,303]},{"name":"NtPrepareComplete","features":[305,303]},{"name":"NtPrepareEnlistment","features":[305,303]},{"name":"NtPropagationComplete","features":[305,303]},{"name":"NtPropagationFailed","features":[305,303]},{"name":"NtQueryInformationEnlistment","features":[305,303,337]},{"name":"NtQueryInformationResourceManager","features":[305,303,337]},{"name":"NtQueryInformationTransaction","features":[305,303,337]},{"name":"NtQueryInformationTransactionManager","features":[305,303,337]},{"name":"NtReadOnlyEnlistment","features":[305,303]},{"name":"NtRecoverEnlistment","features":[305,303]},{"name":"NtRecoverResourceManager","features":[305,303]},{"name":"NtRecoverTransactionManager","features":[305,303]},{"name":"NtRegisterProtocolAddressInformation","features":[305,303]},{"name":"NtRenameTransactionManager","features":[305,303]},{"name":"NtRollbackComplete","features":[305,303]},{"name":"NtRollbackEnlistment","features":[305,303]},{"name":"NtRollbackRegistryTransaction","features":[305,303]},{"name":"NtRollbackTransaction","features":[305,303]},{"name":"NtRollforwardTransactionManager","features":[305,303]},{"name":"NtSetInformationEnlistment","features":[305,303,337]},{"name":"NtSetInformationResourceManager","features":[305,303,337]},{"name":"NtSetInformationTransaction","features":[305,303,337]},{"name":"NtSetInformationTransactionManager","features":[305,303,337]},{"name":"NtSinglePhaseReject","features":[305,303]},{"name":"NuBus","features":[305]},{"name":"NuBusConfiguration","features":[305]},{"name":"OBJECT_HANDLE_INFORMATION","features":[305]},{"name":"OBJECT_TYPE_CREATE","features":[305]},{"name":"OB_CALLBACK_REGISTRATION","features":[304,305,303]},{"name":"OB_FLT_REGISTRATION_VERSION","features":[305]},{"name":"OB_FLT_REGISTRATION_VERSION_0100","features":[305]},{"name":"OB_OPERATION_HANDLE_CREATE","features":[305]},{"name":"OB_OPERATION_HANDLE_DUPLICATE","features":[305]},{"name":"OB_OPERATION_REGISTRATION","features":[304,305,303]},{"name":"OB_POST_CREATE_HANDLE_INFORMATION","features":[305]},{"name":"OB_POST_DUPLICATE_HANDLE_INFORMATION","features":[305]},{"name":"OB_POST_OPERATION_INFORMATION","features":[304,305,303]},{"name":"OB_POST_OPERATION_PARAMETERS","features":[305]},{"name":"OB_PREOP_CALLBACK_STATUS","features":[305]},{"name":"OB_PREOP_SUCCESS","features":[305]},{"name":"OB_PRE_CREATE_HANDLE_INFORMATION","features":[305]},{"name":"OB_PRE_DUPLICATE_HANDLE_INFORMATION","features":[305]},{"name":"OB_PRE_OPERATION_INFORMATION","features":[304,305]},{"name":"OB_PRE_OPERATION_PARAMETERS","features":[305]},{"name":"OPLOCK_KEY_FLAG_PARENT_KEY","features":[305]},{"name":"OPLOCK_KEY_FLAG_TARGET_KEY","features":[305]},{"name":"OPLOCK_KEY_VERSION_WIN7","features":[305]},{"name":"OPLOCK_KEY_VERSION_WIN8","features":[305]},{"name":"OSC_CAPABILITIES_MASKED","features":[305]},{"name":"OSC_FIRMWARE_FAILURE","features":[305]},{"name":"OSC_UNRECOGNIZED_REVISION","features":[305]},{"name":"OSC_UNRECOGNIZED_UUID","features":[305]},{"name":"ObCloseHandle","features":[305,303]},{"name":"ObDereferenceObjectDeferDelete","features":[305]},{"name":"ObDereferenceObjectDeferDeleteWithTag","features":[305]},{"name":"ObGetFilterVersion","features":[305]},{"name":"ObGetObjectSecurity","features":[305,303,306]},{"name":"ObReferenceObjectByHandle","features":[304,305,303]},{"name":"ObReferenceObjectByHandleWithTag","features":[304,305,303]},{"name":"ObReferenceObjectByPointer","features":[304,305,303]},{"name":"ObReferenceObjectByPointerWithTag","features":[304,305,303]},{"name":"ObReferenceObjectSafe","features":[305,303]},{"name":"ObReferenceObjectSafeWithTag","features":[305,303]},{"name":"ObRegisterCallbacks","features":[304,305,303]},{"name":"ObReleaseObjectSecurity","features":[305,303,306]},{"name":"ObUnRegisterCallbacks","features":[305]},{"name":"ObfDereferenceObject","features":[305]},{"name":"ObfDereferenceObjectWithTag","features":[305]},{"name":"ObfReferenceObject","features":[305]},{"name":"ObfReferenceObjectWithTag","features":[305]},{"name":"OkControl","features":[305]},{"name":"OtherController","features":[305]},{"name":"OtherPeripheral","features":[305]},{"name":"PAGE_ENCLAVE_NO_CHANGE","features":[305]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[305]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[305]},{"name":"PAGE_EXECUTE","features":[305]},{"name":"PAGE_EXECUTE_READ","features":[305]},{"name":"PAGE_EXECUTE_READWRITE","features":[305]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[305]},{"name":"PAGE_GRAPHICS_COHERENT","features":[305]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[305]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[305]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[305]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[305]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[305]},{"name":"PAGE_GRAPHICS_READONLY","features":[305]},{"name":"PAGE_GRAPHICS_READWRITE","features":[305]},{"name":"PAGE_GUARD","features":[305]},{"name":"PAGE_NOACCESS","features":[305]},{"name":"PAGE_NOCACHE","features":[305]},{"name":"PAGE_PRIORITY_INFORMATION","features":[305]},{"name":"PAGE_READONLY","features":[305]},{"name":"PAGE_READWRITE","features":[305]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[305]},{"name":"PAGE_SHIFT","features":[305]},{"name":"PAGE_SIZE","features":[305]},{"name":"PAGE_TARGETS_INVALID","features":[305]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[305]},{"name":"PAGE_WRITECOMBINE","features":[305]},{"name":"PAGE_WRITECOPY","features":[305]},{"name":"PALLOCATE_ADAPTER_CHANNEL","features":[304,307,305,303,306,308,309,310]},{"name":"PALLOCATE_ADAPTER_CHANNEL_EX","features":[304,307,305,303,306,308,309,310]},{"name":"PALLOCATE_COMMON_BUFFER","features":[304,307,305,303,306,308,309,310]},{"name":"PALLOCATE_COMMON_BUFFER_EX","features":[304,307,305,303,306,308,309,310]},{"name":"PALLOCATE_COMMON_BUFFER_VECTOR","features":[304,307,305,303,306,308,309,310]},{"name":"PALLOCATE_COMMON_BUFFER_WITH_BOUNDS","features":[304,307,305,303,306,308,309,310]},{"name":"PALLOCATE_DOMAIN_COMMON_BUFFER","features":[304,307,305,303,306,308,309,310]},{"name":"PALLOCATE_FUNCTION","features":[305]},{"name":"PALLOCATE_FUNCTION_EX","features":[305]},{"name":"PARBITER_HANDLER","features":[304,307,305,303,306,308,309,310]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[305]},{"name":"PARTITION_INFORMATION_CLASS","features":[305]},{"name":"PASSIVE_LEVEL","features":[305]},{"name":"PBOOT_DRIVER_CALLBACK_FUNCTION","features":[305]},{"name":"PBOUND_CALLBACK","features":[305]},{"name":"PBUILD_MDL_FROM_SCATTER_GATHER_LIST","features":[304,307,305,303,306,308,309,310]},{"name":"PBUILD_SCATTER_GATHER_LIST","features":[304,307,305,303,306,308,309,310]},{"name":"PBUILD_SCATTER_GATHER_LIST_EX","features":[304,307,305,303,306,308,309,310]},{"name":"PCALCULATE_SCATTER_GATHER_LIST_SIZE","features":[304,307,305,303,306,308,309,310]},{"name":"PCALLBACK_FUNCTION","features":[305]},{"name":"PCANCEL_ADAPTER_CHANNEL","features":[304,307,305,303,306,308,309,310]},{"name":"PCANCEL_MAPPED_TRANSFER","features":[304,307,305,303,306,308,309,310]},{"name":"PCCARD_DEVICE_PCI","features":[305]},{"name":"PCCARD_DUP_LEGACY_BASE","features":[305]},{"name":"PCCARD_MAP_ERROR","features":[305]},{"name":"PCCARD_MAP_ZERO","features":[305]},{"name":"PCCARD_NO_CONTROLLERS","features":[305]},{"name":"PCCARD_NO_LEGACY_BASE","features":[305]},{"name":"PCCARD_NO_PIC","features":[305]},{"name":"PCCARD_NO_TIMER","features":[305]},{"name":"PCCARD_SCAN_DISABLED","features":[305]},{"name":"PCIBUSDATA","features":[305]},{"name":"PCIBus","features":[305]},{"name":"PCIConfiguration","features":[305]},{"name":"PCIEXPRESS_ERROR_SECTION_GUID","features":[305]},{"name":"PCIE_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[305]},{"name":"PCIXBUS_ERROR_SECTION_GUID","features":[305]},{"name":"PCIXBUS_ERRTYPE_ADDRESSPARITY","features":[305]},{"name":"PCIXBUS_ERRTYPE_BUSTIMEOUT","features":[305]},{"name":"PCIXBUS_ERRTYPE_COMMANDPARITY","features":[305]},{"name":"PCIXBUS_ERRTYPE_DATAPARITY","features":[305]},{"name":"PCIXBUS_ERRTYPE_MASTERABORT","features":[305]},{"name":"PCIXBUS_ERRTYPE_MASTERDATAPARITY","features":[305]},{"name":"PCIXBUS_ERRTYPE_SYSTEM","features":[305]},{"name":"PCIXBUS_ERRTYPE_UNKNOWN","features":[305]},{"name":"PCIXDEVICE_ERROR_SECTION_GUID","features":[305]},{"name":"PCIX_BRIDGE_CAPABILITY","features":[305]},{"name":"PCIX_MODE1_100MHZ","features":[305]},{"name":"PCIX_MODE1_133MHZ","features":[305]},{"name":"PCIX_MODE1_66MHZ","features":[305]},{"name":"PCIX_MODE2_266_100MHZ","features":[305]},{"name":"PCIX_MODE2_266_133MHZ","features":[305]},{"name":"PCIX_MODE2_266_66MHZ","features":[305]},{"name":"PCIX_MODE2_533_100MHZ","features":[305]},{"name":"PCIX_MODE2_533_133MHZ","features":[305]},{"name":"PCIX_MODE2_533_66MHZ","features":[305]},{"name":"PCIX_MODE_CONVENTIONAL_PCI","features":[305]},{"name":"PCIX_VERSION_DUAL_MODE_ECC","features":[305]},{"name":"PCIX_VERSION_MODE1_ONLY","features":[305]},{"name":"PCIX_VERSION_MODE2_ECC","features":[305]},{"name":"PCI_ACS_ALLOWED","features":[305]},{"name":"PCI_ACS_BIT","features":[305]},{"name":"PCI_ACS_BLOCKED","features":[305]},{"name":"PCI_ACS_REDIRECTED","features":[305]},{"name":"PCI_ADDRESS_IO_ADDRESS_MASK","features":[305]},{"name":"PCI_ADDRESS_IO_SPACE","features":[305]},{"name":"PCI_ADDRESS_MEMORY_ADDRESS_MASK","features":[305]},{"name":"PCI_ADDRESS_MEMORY_PREFETCHABLE","features":[305]},{"name":"PCI_ADDRESS_MEMORY_TYPE_MASK","features":[305]},{"name":"PCI_ADDRESS_ROM_ADDRESS_MASK","features":[305]},{"name":"PCI_ADVANCED_FEATURES_CAPABILITY","features":[305]},{"name":"PCI_AGP_APERTURE_PAGE_SIZE","features":[305]},{"name":"PCI_AGP_CAPABILITY","features":[305]},{"name":"PCI_AGP_CONTROL","features":[305]},{"name":"PCI_AGP_EXTENDED_CAPABILITY","features":[305]},{"name":"PCI_AGP_ISOCH_COMMAND","features":[305]},{"name":"PCI_AGP_ISOCH_STATUS","features":[305]},{"name":"PCI_AGP_RATE_1X","features":[305]},{"name":"PCI_AGP_RATE_2X","features":[305]},{"name":"PCI_AGP_RATE_4X","features":[305]},{"name":"PCI_ATS_INTERFACE","features":[305,303]},{"name":"PCI_ATS_INTERFACE_VERSION","features":[305]},{"name":"PCI_BRIDGE_TYPE","features":[305]},{"name":"PCI_BUS_INTERFACE_STANDARD","features":[305]},{"name":"PCI_BUS_INTERFACE_STANDARD_VERSION","features":[305]},{"name":"PCI_BUS_WIDTH","features":[305]},{"name":"PCI_CAPABILITIES_HEADER","features":[305]},{"name":"PCI_CAPABILITY_ID_ADVANCED_FEATURES","features":[305]},{"name":"PCI_CAPABILITY_ID_AGP","features":[305]},{"name":"PCI_CAPABILITY_ID_AGP_TARGET","features":[305]},{"name":"PCI_CAPABILITY_ID_CPCI_HOTSWAP","features":[305]},{"name":"PCI_CAPABILITY_ID_CPCI_RES_CTRL","features":[305]},{"name":"PCI_CAPABILITY_ID_DEBUG_PORT","features":[305]},{"name":"PCI_CAPABILITY_ID_FPB","features":[305]},{"name":"PCI_CAPABILITY_ID_HYPERTRANSPORT","features":[305]},{"name":"PCI_CAPABILITY_ID_MSI","features":[305]},{"name":"PCI_CAPABILITY_ID_MSIX","features":[305]},{"name":"PCI_CAPABILITY_ID_P2P_SSID","features":[305]},{"name":"PCI_CAPABILITY_ID_PCIX","features":[305]},{"name":"PCI_CAPABILITY_ID_PCI_EXPRESS","features":[305]},{"name":"PCI_CAPABILITY_ID_POWER_MANAGEMENT","features":[305]},{"name":"PCI_CAPABILITY_ID_SATA_CONFIG","features":[305]},{"name":"PCI_CAPABILITY_ID_SECURE","features":[305]},{"name":"PCI_CAPABILITY_ID_SHPC","features":[305]},{"name":"PCI_CAPABILITY_ID_SLOT_ID","features":[305]},{"name":"PCI_CAPABILITY_ID_VENDOR_SPECIFIC","features":[305]},{"name":"PCI_CAPABILITY_ID_VPD","features":[305]},{"name":"PCI_CARDBUS_BRIDGE_TYPE","features":[305]},{"name":"PCI_CLASS_BASE_SYSTEM_DEV","features":[305]},{"name":"PCI_CLASS_BRIDGE_DEV","features":[305]},{"name":"PCI_CLASS_DATA_ACQ_SIGNAL_PROC","features":[305]},{"name":"PCI_CLASS_DISPLAY_CTLR","features":[305]},{"name":"PCI_CLASS_DOCKING_STATION","features":[305]},{"name":"PCI_CLASS_ENCRYPTION_DECRYPTION","features":[305]},{"name":"PCI_CLASS_INPUT_DEV","features":[305]},{"name":"PCI_CLASS_INTELLIGENT_IO_CTLR","features":[305]},{"name":"PCI_CLASS_MASS_STORAGE_CTLR","features":[305]},{"name":"PCI_CLASS_MEMORY_CTLR","features":[305]},{"name":"PCI_CLASS_MULTIMEDIA_DEV","features":[305]},{"name":"PCI_CLASS_NETWORK_CTLR","features":[305]},{"name":"PCI_CLASS_NOT_DEFINED","features":[305]},{"name":"PCI_CLASS_PRE_20","features":[305]},{"name":"PCI_CLASS_PROCESSOR","features":[305]},{"name":"PCI_CLASS_SATELLITE_COMMS_CTLR","features":[305]},{"name":"PCI_CLASS_SERIAL_BUS_CTLR","features":[305]},{"name":"PCI_CLASS_SIMPLE_COMMS_CTLR","features":[305]},{"name":"PCI_CLASS_WIRELESS_CTLR","features":[305]},{"name":"PCI_COMMON_CONFIG","features":[305]},{"name":"PCI_COMMON_HEADER","features":[305]},{"name":"PCI_DATA_VERSION","features":[305]},{"name":"PCI_DEBUGGING_DEVICE_IN_USE","features":[305]},{"name":"PCI_DEVICE_D3COLD_STATE_REASON","features":[305]},{"name":"PCI_DEVICE_PRESENCE_PARAMETERS","features":[305]},{"name":"PCI_DEVICE_PRESENT_INTERFACE","features":[305,303]},{"name":"PCI_DEVICE_PRESENT_INTERFACE_VERSION","features":[305]},{"name":"PCI_DEVICE_TYPE","features":[305]},{"name":"PCI_DISABLE_LEVEL_INTERRUPT","features":[305]},{"name":"PCI_ENABLE_BUS_MASTER","features":[305]},{"name":"PCI_ENABLE_FAST_BACK_TO_BACK","features":[305]},{"name":"PCI_ENABLE_IO_SPACE","features":[305]},{"name":"PCI_ENABLE_MEMORY_SPACE","features":[305]},{"name":"PCI_ENABLE_PARITY","features":[305]},{"name":"PCI_ENABLE_SERR","features":[305]},{"name":"PCI_ENABLE_SPECIAL_CYCLES","features":[305]},{"name":"PCI_ENABLE_VGA_COMPATIBLE_PALETTE","features":[305]},{"name":"PCI_ENABLE_WAIT_CYCLE","features":[305]},{"name":"PCI_ENABLE_WRITE_AND_INVALIDATE","features":[305]},{"name":"PCI_ERROR_HANDLER_CALLBACK","features":[305]},{"name":"PCI_EXPRESS_ACCESS_CONTROL_SERVICES_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_ACS_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_ACS_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_ACS_CONTROL","features":[305]},{"name":"PCI_EXPRESS_ADVANCED_ERROR_REPORTING_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_AER_CAPABILITIES","features":[305]},{"name":"PCI_EXPRESS_AER_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_ARI_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_ARI_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_ARI_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_ARI_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_ASPM_CONTROL","features":[305]},{"name":"PCI_EXPRESS_ASPM_SUPPORT","features":[305]},{"name":"PCI_EXPRESS_ATS_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_ATS_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_ATS_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_ATS_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_BRIDGE_AER_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_CAPABILITIES_REGISTER","features":[305]},{"name":"PCI_EXPRESS_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_CARD_PRESENCE","features":[305]},{"name":"PCI_EXPRESS_CONFIGURATION_ACCESS_CORRELATION_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_MASK","features":[305]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_STATUS","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_REGISTER_V11","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_V11","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_LOCK_REGISTER","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_HIGH_REGISTER","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_LOW_REGISTER","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_HIGH_REGISTER","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_LOW_REGISTER_V11","features":[305]},{"name":"PCI_EXPRESS_CXL_DVSEC_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_1","features":[305]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_2","features":[305]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_2_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_2_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DEVICE_SERIAL_NUMBER_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_DEVICE_STATUS_2_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DEVICE_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DEVICE_TYPE","features":[305]},{"name":"PCI_EXPRESS_DPA_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_DPC_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_DPC_CAPS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_DPC_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_ERROR_SOURCE_ID","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_EXCEPTION_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_HEADERLOG_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_IMPSPECLOG_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_MASK_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SEVERITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SYSERR_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_RP_PIO_TLPPREFIXLOG_REGISTER","features":[305]},{"name":"PCI_EXPRESS_DPC_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_ENHANCED_CAPABILITY_HEADER","features":[305]},{"name":"PCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[305,303]},{"name":"PCI_EXPRESS_ERROR_SOURCE_ID","features":[305]},{"name":"PCI_EXPRESS_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[305,303]},{"name":"PCI_EXPRESS_FRS_QUEUEING_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_INDICATOR_STATE","features":[305]},{"name":"PCI_EXPRESS_L0s_EXIT_LATENCY","features":[305]},{"name":"PCI_EXPRESS_L1_EXIT_LATENCY","features":[305]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITIES_REGISTER","features":[305]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_L1_PM_SS_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_1_REGISTER","features":[305]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_2_REGISTER","features":[305]},{"name":"PCI_EXPRESS_LANE_ERROR_STATUS","features":[305]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_2_REGISTER","features":[305]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_REGISTER","features":[305]},{"name":"PCI_EXPRESS_LINK_CONTROL3","features":[305]},{"name":"PCI_EXPRESS_LINK_CONTROL_2_REGISTER","features":[305]},{"name":"PCI_EXPRESS_LINK_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[305,303]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE_VERSION","features":[305]},{"name":"PCI_EXPRESS_LINK_STATUS_2_REGISTER","features":[305]},{"name":"PCI_EXPRESS_LINK_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_LINK_SUBSTATE","features":[305]},{"name":"PCI_EXPRESS_LN_REQUESTER_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_LTR_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_LTR_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_LTR_MAX_LATENCY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_MAX_PAYLOAD_SIZE","features":[305]},{"name":"PCI_EXPRESS_MFVC_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_MPCIE_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_MRL_STATE","features":[305]},{"name":"PCI_EXPRESS_MULTICAST_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_MULTI_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_NPEM_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_NPEM_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_NPEM_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_PAGE_REQUEST_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_PASID_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_PASID_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_PASID_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_PASID_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_PME_REQUESTOR_ID","features":[305]},{"name":"PCI_EXPRESS_PMUX_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_POWER_BUDGETING_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_POWER_STATE","features":[305]},{"name":"PCI_EXPRESS_PRI_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_PRI_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_PRI_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_PTM_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_PTM_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_PTM_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_PTM_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_RCB","features":[305]},{"name":"PCI_EXPRESS_RCRB_HEADER_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_RC_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_RC_INTERNAL_LINK_CONTROL_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_RC_LINK_DECLARATION_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_READINESS_TIME_REPORTING_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_RESERVED_FOR_AMD_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_ENTRY","features":[305]},{"name":"PCI_EXPRESS_ROOTPORT_AER_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_ROOT_CAPABILITIES_REGISTER","features":[305]},{"name":"PCI_EXPRESS_ROOT_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_ROOT_ERROR_COMMAND","features":[305]},{"name":"PCI_EXPRESS_ROOT_ERROR_STATUS","features":[305]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[305]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE_VERSION","features":[305]},{"name":"PCI_EXPRESS_ROOT_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_SECONDARY_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_SECONDARY_PCI_EXPRESS_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_SEC_AER_CAPABILITIES","features":[305]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_MASK","features":[305]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_SEVERITY","features":[305]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_STATUS","features":[305]},{"name":"PCI_EXPRESS_SERIAL_NUMBER_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_SINGLE_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_SLOT_CAPABILITIES_REGISTER","features":[305]},{"name":"PCI_EXPRESS_SLOT_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_SLOT_STATUS_REGISTER","features":[305]},{"name":"PCI_EXPRESS_SRIOV_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_SRIOV_CAPS","features":[305]},{"name":"PCI_EXPRESS_SRIOV_CONTROL","features":[305]},{"name":"PCI_EXPRESS_SRIOV_MIGRATION_STATE_ARRAY","features":[305]},{"name":"PCI_EXPRESS_SRIOV_STATUS","features":[305]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY_REGISTER","features":[305]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CONTROL_REGISTER","features":[305]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_MSIX_TABLE","features":[305]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_NONE","features":[305]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_RESERVED","features":[305]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_TPH_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_TPH_ST_TABLE_ENTRY","features":[305]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_MASK","features":[305]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_SEVERITY","features":[305]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_STATUS","features":[305]},{"name":"PCI_EXPRESS_VC_AND_MFVC_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAPABILITY","features":[305]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAP_ID","features":[305]},{"name":"PCI_EXPRESS_WAKE_CONTROL","features":[305,303]},{"name":"PCI_EXTENDED_CONFIG_LENGTH","features":[305]},{"name":"PCI_FIRMWARE_BUS_CAPS","features":[305]},{"name":"PCI_FIRMWARE_BUS_CAPS_RETURN_BUFFER","features":[305]},{"name":"PCI_FPB_CAPABILITIES_REGISTER","features":[305]},{"name":"PCI_FPB_CAPABILITY","features":[305]},{"name":"PCI_FPB_CAPABILITY_HEADER","features":[305]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL1_REGISTER","features":[305]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL2_REGISTER","features":[305]},{"name":"PCI_FPB_MEM_LOW_VECTOR_CONTROL_REGISTER","features":[305]},{"name":"PCI_FPB_RID_VECTOR_CONTROL1_REGISTER","features":[305]},{"name":"PCI_FPB_RID_VECTOR_CONTROL2_REGISTER","features":[305]},{"name":"PCI_FPB_VECTOR_ACCESS_CONTROL_REGISTER","features":[305]},{"name":"PCI_FPB_VECTOR_ACCESS_DATA_REGISTER","features":[305]},{"name":"PCI_HARDWARE_INTERFACE","features":[305]},{"name":"PCI_INVALID_ALTERNATE_FUNCTION_NUMBER","features":[305]},{"name":"PCI_INVALID_VENDORID","features":[305]},{"name":"PCI_IS_DEVICE_PRESENT","features":[305,303]},{"name":"PCI_IS_DEVICE_PRESENT_EX","features":[305,303]},{"name":"PCI_LINE_TO_PIN","features":[305]},{"name":"PCI_MAX_BRIDGE_NUMBER","features":[305]},{"name":"PCI_MAX_DEVICES","features":[305]},{"name":"PCI_MAX_FUNCTION","features":[305]},{"name":"PCI_MAX_SEGMENT_NUMBER","features":[305]},{"name":"PCI_MSIX_GET_ENTRY","features":[305,303]},{"name":"PCI_MSIX_GET_TABLE_SIZE","features":[305,303]},{"name":"PCI_MSIX_MASKUNMASK_ENTRY","features":[305,303]},{"name":"PCI_MSIX_SET_ENTRY","features":[305,303]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE","features":[305,303]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE_VERSION","features":[305]},{"name":"PCI_MULTIFUNCTION","features":[305]},{"name":"PCI_PIN_TO_LINE","features":[305]},{"name":"PCI_PMC","features":[305]},{"name":"PCI_PMCSR","features":[305]},{"name":"PCI_PMCSR_BSE","features":[305]},{"name":"PCI_PM_CAPABILITY","features":[305]},{"name":"PCI_PREPARE_MULTISTAGE_RESUME","features":[305]},{"name":"PCI_PROGRAMMING_INTERFACE_MSC_NVM_EXPRESS","features":[305]},{"name":"PCI_PTM_TIME_SOURCE_AUX","features":[305]},{"name":"PCI_READ_WRITE_CONFIG","features":[305]},{"name":"PCI_RECOVERY_SECTION_GUID","features":[305]},{"name":"PCI_ROMADDRESS_ENABLED","features":[305]},{"name":"PCI_ROOT_BUS_CAPABILITY","features":[305,303]},{"name":"PCI_ROOT_BUS_HARDWARE_CAPABILITY","features":[305,303]},{"name":"PCI_ROOT_BUS_OSC_CONTROL_FIELD","features":[305]},{"name":"PCI_ROOT_BUS_OSC_METHOD_CAPABILITY_REVISION","features":[305]},{"name":"PCI_ROOT_BUS_OSC_SUPPORT_FIELD","features":[305]},{"name":"PCI_SECURITY_DIRECT_TRANSLATED_P2P","features":[305]},{"name":"PCI_SECURITY_ENHANCED","features":[305]},{"name":"PCI_SECURITY_FULLY_SUPPORTED","features":[305]},{"name":"PCI_SECURITY_GUEST_ASSIGNED","features":[305]},{"name":"PCI_SECURITY_INTERFACE","features":[305,303]},{"name":"PCI_SECURITY_INTERFACE2","features":[305,303]},{"name":"PCI_SECURITY_INTERFACE_VERSION","features":[305]},{"name":"PCI_SECURITY_INTERFACE_VERSION2","features":[305]},{"name":"PCI_SECURITY_SRIOV_DIRECT_TRANSLATED_P2P","features":[305]},{"name":"PCI_SEGMENT_BUS_NUMBER","features":[305]},{"name":"PCI_SET_ACS","features":[305,303]},{"name":"PCI_SET_ACS2","features":[305,303]},{"name":"PCI_SET_ATS","features":[305,303]},{"name":"PCI_SLOT_NUMBER","features":[305]},{"name":"PCI_STATUS_66MHZ_CAPABLE","features":[305]},{"name":"PCI_STATUS_CAPABILITIES_LIST","features":[305]},{"name":"PCI_STATUS_DATA_PARITY_DETECTED","features":[305]},{"name":"PCI_STATUS_DETECTED_PARITY_ERROR","features":[305]},{"name":"PCI_STATUS_DEVSEL","features":[305]},{"name":"PCI_STATUS_FAST_BACK_TO_BACK","features":[305]},{"name":"PCI_STATUS_IMMEDIATE_READINESS","features":[305]},{"name":"PCI_STATUS_INTERRUPT_PENDING","features":[305]},{"name":"PCI_STATUS_RECEIVED_MASTER_ABORT","features":[305]},{"name":"PCI_STATUS_RECEIVED_TARGET_ABORT","features":[305]},{"name":"PCI_STATUS_SIGNALED_SYSTEM_ERROR","features":[305]},{"name":"PCI_STATUS_SIGNALED_TARGET_ABORT","features":[305]},{"name":"PCI_STATUS_UDF_SUPPORTED","features":[305]},{"name":"PCI_SUBCLASS_BR_CARDBUS","features":[305]},{"name":"PCI_SUBCLASS_BR_EISA","features":[305]},{"name":"PCI_SUBCLASS_BR_HOST","features":[305]},{"name":"PCI_SUBCLASS_BR_ISA","features":[305]},{"name":"PCI_SUBCLASS_BR_MCA","features":[305]},{"name":"PCI_SUBCLASS_BR_NUBUS","features":[305]},{"name":"PCI_SUBCLASS_BR_OTHER","features":[305]},{"name":"PCI_SUBCLASS_BR_PCI_TO_PCI","features":[305]},{"name":"PCI_SUBCLASS_BR_PCMCIA","features":[305]},{"name":"PCI_SUBCLASS_BR_RACEWAY","features":[305]},{"name":"PCI_SUBCLASS_COM_MODEM","features":[305]},{"name":"PCI_SUBCLASS_COM_MULTIPORT","features":[305]},{"name":"PCI_SUBCLASS_COM_OTHER","features":[305]},{"name":"PCI_SUBCLASS_COM_PARALLEL","features":[305]},{"name":"PCI_SUBCLASS_COM_SERIAL","features":[305]},{"name":"PCI_SUBCLASS_CRYPTO_ENTERTAINMENT","features":[305]},{"name":"PCI_SUBCLASS_CRYPTO_NET_COMP","features":[305]},{"name":"PCI_SUBCLASS_CRYPTO_OTHER","features":[305]},{"name":"PCI_SUBCLASS_DASP_DPIO","features":[305]},{"name":"PCI_SUBCLASS_DASP_OTHER","features":[305]},{"name":"PCI_SUBCLASS_DOC_GENERIC","features":[305]},{"name":"PCI_SUBCLASS_DOC_OTHER","features":[305]},{"name":"PCI_SUBCLASS_INP_DIGITIZER","features":[305]},{"name":"PCI_SUBCLASS_INP_GAMEPORT","features":[305]},{"name":"PCI_SUBCLASS_INP_KEYBOARD","features":[305]},{"name":"PCI_SUBCLASS_INP_MOUSE","features":[305]},{"name":"PCI_SUBCLASS_INP_OTHER","features":[305]},{"name":"PCI_SUBCLASS_INP_SCANNER","features":[305]},{"name":"PCI_SUBCLASS_INTIO_I2O","features":[305]},{"name":"PCI_SUBCLASS_MEM_FLASH","features":[305]},{"name":"PCI_SUBCLASS_MEM_OTHER","features":[305]},{"name":"PCI_SUBCLASS_MEM_RAM","features":[305]},{"name":"PCI_SUBCLASS_MM_AUDIO_DEV","features":[305]},{"name":"PCI_SUBCLASS_MM_OTHER","features":[305]},{"name":"PCI_SUBCLASS_MM_TELEPHONY_DEV","features":[305]},{"name":"PCI_SUBCLASS_MM_VIDEO_DEV","features":[305]},{"name":"PCI_SUBCLASS_MSC_AHCI_CTLR","features":[305]},{"name":"PCI_SUBCLASS_MSC_FLOPPY_CTLR","features":[305]},{"name":"PCI_SUBCLASS_MSC_IDE_CTLR","features":[305]},{"name":"PCI_SUBCLASS_MSC_IPI_CTLR","features":[305]},{"name":"PCI_SUBCLASS_MSC_NVM_CTLR","features":[305]},{"name":"PCI_SUBCLASS_MSC_OTHER","features":[305]},{"name":"PCI_SUBCLASS_MSC_RAID_CTLR","features":[305]},{"name":"PCI_SUBCLASS_MSC_SCSI_BUS_CTLR","features":[305]},{"name":"PCI_SUBCLASS_NET_ATM_CTLR","features":[305]},{"name":"PCI_SUBCLASS_NET_ETHERNET_CTLR","features":[305]},{"name":"PCI_SUBCLASS_NET_FDDI_CTLR","features":[305]},{"name":"PCI_SUBCLASS_NET_ISDN_CTLR","features":[305]},{"name":"PCI_SUBCLASS_NET_OTHER","features":[305]},{"name":"PCI_SUBCLASS_NET_TOKEN_RING_CTLR","features":[305]},{"name":"PCI_SUBCLASS_PRE_20_NON_VGA","features":[305]},{"name":"PCI_SUBCLASS_PRE_20_VGA","features":[305]},{"name":"PCI_SUBCLASS_PROC_386","features":[305]},{"name":"PCI_SUBCLASS_PROC_486","features":[305]},{"name":"PCI_SUBCLASS_PROC_ALPHA","features":[305]},{"name":"PCI_SUBCLASS_PROC_COPROCESSOR","features":[305]},{"name":"PCI_SUBCLASS_PROC_PENTIUM","features":[305]},{"name":"PCI_SUBCLASS_PROC_POWERPC","features":[305]},{"name":"PCI_SUBCLASS_SAT_AUDIO","features":[305]},{"name":"PCI_SUBCLASS_SAT_DATA","features":[305]},{"name":"PCI_SUBCLASS_SAT_TV","features":[305]},{"name":"PCI_SUBCLASS_SAT_VOICE","features":[305]},{"name":"PCI_SUBCLASS_SB_ACCESS","features":[305]},{"name":"PCI_SUBCLASS_SB_FIBRE_CHANNEL","features":[305]},{"name":"PCI_SUBCLASS_SB_IEEE1394","features":[305]},{"name":"PCI_SUBCLASS_SB_SMBUS","features":[305]},{"name":"PCI_SUBCLASS_SB_SSA","features":[305]},{"name":"PCI_SUBCLASS_SB_THUNDERBOLT","features":[305]},{"name":"PCI_SUBCLASS_SB_USB","features":[305]},{"name":"PCI_SUBCLASS_SYS_DMA_CTLR","features":[305]},{"name":"PCI_SUBCLASS_SYS_GEN_HOTPLUG_CTLR","features":[305]},{"name":"PCI_SUBCLASS_SYS_INTERRUPT_CTLR","features":[305]},{"name":"PCI_SUBCLASS_SYS_OTHER","features":[305]},{"name":"PCI_SUBCLASS_SYS_RCEC","features":[305]},{"name":"PCI_SUBCLASS_SYS_REAL_TIME_CLOCK","features":[305]},{"name":"PCI_SUBCLASS_SYS_SDIO_CTRL","features":[305]},{"name":"PCI_SUBCLASS_SYS_SYSTEM_TIMER","features":[305]},{"name":"PCI_SUBCLASS_VID_OTHER","features":[305]},{"name":"PCI_SUBCLASS_VID_VGA_CTLR","features":[305]},{"name":"PCI_SUBCLASS_VID_XGA_CTLR","features":[305]},{"name":"PCI_SUBCLASS_WIRELESS_CON_IR","features":[305]},{"name":"PCI_SUBCLASS_WIRELESS_IRDA","features":[305]},{"name":"PCI_SUBCLASS_WIRELESS_OTHER","features":[305]},{"name":"PCI_SUBCLASS_WIRELESS_RF","features":[305]},{"name":"PCI_SUBLCASS_VID_3D_CTLR","features":[305]},{"name":"PCI_SUBSYSTEM_IDS_CAPABILITY","features":[305]},{"name":"PCI_TYPE0_ADDRESSES","features":[305]},{"name":"PCI_TYPE1_ADDRESSES","features":[305]},{"name":"PCI_TYPE2_ADDRESSES","features":[305]},{"name":"PCI_TYPE_20BIT","features":[305]},{"name":"PCI_TYPE_32BIT","features":[305]},{"name":"PCI_TYPE_64BIT","features":[305]},{"name":"PCI_USE_CLASS_SUBCLASS","features":[305]},{"name":"PCI_USE_LOCAL_BUS","features":[305]},{"name":"PCI_USE_LOCAL_DEVICE","features":[305]},{"name":"PCI_USE_PROGIF","features":[305]},{"name":"PCI_USE_REVISION","features":[305]},{"name":"PCI_USE_SUBSYSTEM_IDS","features":[305]},{"name":"PCI_USE_VENDEV_IDS","features":[305]},{"name":"PCI_VENDOR_SPECIFIC_CAPABILITY","features":[305]},{"name":"PCI_VIRTUALIZATION_INTERFACE","features":[305,303]},{"name":"PCI_WHICHSPACE_CONFIG","features":[305]},{"name":"PCI_WHICHSPACE_ROM","features":[305]},{"name":"PCI_X_CAPABILITY","features":[305]},{"name":"PCIe_NOTIFY_TYPE_GUID","features":[305]},{"name":"PCLFS_CLIENT_ADVANCE_TAIL_CALLBACK","features":[304,307,305,303,306,322,308,309,310]},{"name":"PCLFS_CLIENT_LFF_HANDLER_COMPLETE_CALLBACK","features":[304,307,305,303,306,308,309,310]},{"name":"PCLFS_CLIENT_LOG_UNPINNED_CALLBACK","features":[304,307,305,303,306,308,309,310]},{"name":"PCLFS_SET_LOG_SIZE_COMPLETE_CALLBACK","features":[304,307,305,303,306,308,309,310]},{"name":"PCMCIABus","features":[305]},{"name":"PCMCIAConfiguration","features":[305]},{"name":"PCONFIGURE_ADAPTER_CHANNEL","features":[304,307,305,303,306,308,309,310]},{"name":"PCRASHDUMP_POWER_ON","features":[305,303]},{"name":"PCREATE_COMMON_BUFFER_FROM_MDL","features":[304,307,305,303,306,308,309,310]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE","features":[305,303]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE_EX","features":[304,307,305,303,306,308,309,310,335]},{"name":"PCREATE_THREAD_NOTIFY_ROUTINE","features":[305,303]},{"name":"PCR_BTI_MITIGATION_CSWAP_HVC","features":[305]},{"name":"PCR_BTI_MITIGATION_CSWAP_SMC","features":[305]},{"name":"PCR_BTI_MITIGATION_NONE","features":[305]},{"name":"PCR_BTI_MITIGATION_VBAR_MASK","features":[305]},{"name":"PCR_MAJOR_VERSION","features":[305]},{"name":"PCR_MINOR_VERSION","features":[305]},{"name":"PCW_CALLBACK","features":[304,305,303,309]},{"name":"PCW_CALLBACK_INFORMATION","features":[304,305,303,309]},{"name":"PCW_CALLBACK_TYPE","features":[305]},{"name":"PCW_COUNTER_DESCRIPTOR","features":[305]},{"name":"PCW_COUNTER_INFORMATION","features":[305,303]},{"name":"PCW_CURRENT_VERSION","features":[305]},{"name":"PCW_DATA","features":[305]},{"name":"PCW_MASK_INFORMATION","features":[304,305,303,309]},{"name":"PCW_REGISTRATION_FLAGS","features":[305]},{"name":"PCW_REGISTRATION_INFORMATION","features":[305,303]},{"name":"PCW_VERSION_1","features":[305]},{"name":"PCW_VERSION_2","features":[305]},{"name":"PD3COLD_REQUEST_AUX_POWER","features":[305,303]},{"name":"PD3COLD_REQUEST_CORE_POWER_RAIL","features":[305]},{"name":"PD3COLD_REQUEST_PERST_DELAY","features":[305,303]},{"name":"PDEBUG_DEVICE_FOUND_FUNCTION","features":[305,303]},{"name":"PDEBUG_PRINT_CALLBACK","features":[305,309]},{"name":"PDEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[305,303]},{"name":"PDEVICE_CHANGE_COMPLETE_CALLBACK","features":[305]},{"name":"PDEVICE_NOTIFY_CALLBACK","features":[305]},{"name":"PDEVICE_NOTIFY_CALLBACK2","features":[305]},{"name":"PDEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[305,303]},{"name":"PDEVICE_RESET_COMPLETION","features":[305]},{"name":"PDEVICE_RESET_HANDLER","features":[305,303]},{"name":"PDE_BASE","features":[305]},{"name":"PDE_PER_PAGE","features":[305]},{"name":"PDE_TOP","features":[305]},{"name":"PDI_SHIFT","features":[305]},{"name":"PDMA_COMPLETION_ROUTINE","features":[305]},{"name":"PDRIVER_CMC_EXCEPTION_CALLBACK","features":[305]},{"name":"PDRIVER_CPE_EXCEPTION_CALLBACK","features":[305]},{"name":"PDRIVER_EXCPTN_CALLBACK","features":[305]},{"name":"PDRIVER_VERIFIER_THUNK_ROUTINE","features":[305]},{"name":"PEI_NOTIFY_TYPE_GUID","features":[305]},{"name":"PENABLE_VIRTUALIZATION","features":[305,303]},{"name":"PETWENABLECALLBACK","features":[305]},{"name":"PEXPAND_STACK_CALLOUT","features":[305]},{"name":"PEXT_CALLBACK","features":[305]},{"name":"PEXT_DELETE_CALLBACK","features":[305]},{"name":"PEX_CALLBACK_FUNCTION","features":[305,303]},{"name":"PFAControl","features":[305]},{"name":"PFLUSH_ADAPTER_BUFFERS","features":[304,307,305,303,306,308,309,310]},{"name":"PFLUSH_ADAPTER_BUFFERS_EX","features":[304,307,305,303,306,308,309,310]},{"name":"PFLUSH_DMA_BUFFER","features":[304,307,305,303,306,308,309,310]},{"name":"PFNFTH","features":[305,303]},{"name":"PFN_IN_USE_PAGE_OFFLINE_NOTIFY","features":[305,303]},{"name":"PFN_NT_COMMIT_TRANSACTION","features":[305,303]},{"name":"PFN_NT_CREATE_TRANSACTION","features":[304,305,303]},{"name":"PFN_NT_OPEN_TRANSACTION","features":[304,305,303]},{"name":"PFN_NT_QUERY_INFORMATION_TRANSACTION","features":[305,303,337]},{"name":"PFN_NT_ROLLBACK_TRANSACTION","features":[305,303]},{"name":"PFN_NT_SET_INFORMATION_TRANSACTION","features":[305,303,337]},{"name":"PFN_RTL_IS_NTDDI_VERSION_AVAILABLE","features":[305,303]},{"name":"PFN_RTL_IS_SERVICE_PACK_VERSION_INSTALLED","features":[305,303]},{"name":"PFN_WHEA_HIGH_IRQL_LOG_SEL_EVENT_HANDLER","features":[305,303,331]},{"name":"PFPGA_BUS_SCAN","features":[305]},{"name":"PFPGA_CONTROL_CONFIG_SPACE","features":[305,303]},{"name":"PFPGA_CONTROL_ERROR_REPORTING","features":[305,303]},{"name":"PFPGA_CONTROL_LINK","features":[305,303]},{"name":"PFREE_ADAPTER_CHANNEL","features":[304,307,305,303,306,308,309,310]},{"name":"PFREE_ADAPTER_OBJECT","features":[304,307,305,303,306,308,309,310]},{"name":"PFREE_COMMON_BUFFER","features":[304,307,305,303,306,308,309,310]},{"name":"PFREE_COMMON_BUFFER_FROM_VECTOR","features":[304,307,305,303,306,308,309,310]},{"name":"PFREE_COMMON_BUFFER_VECTOR","features":[304,307,305,303,306,308,309,310]},{"name":"PFREE_FUNCTION_EX","features":[305]},{"name":"PFREE_MAP_REGISTERS","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_COMMON_BUFFER_FROM_VECTOR_BY_INDEX","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_D3COLD_CAPABILITY","features":[305,303]},{"name":"PGET_D3COLD_LAST_TRANSITION_STATUS","features":[305]},{"name":"PGET_DEVICE_RESET_STATUS","features":[305,303]},{"name":"PGET_DMA_ADAPTER","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_DMA_ADAPTER_INFO","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_DMA_ALIGNMENT","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_DMA_DOMAIN","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_DMA_TRANSFER_INFO","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_IDLE_WAKE_INFO","features":[305,303]},{"name":"PGET_LOCATION_STRING","features":[305,303]},{"name":"PGET_SCATTER_GATHER_LIST","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_SCATTER_GATHER_LIST_EX","features":[304,307,305,303,306,308,309,310]},{"name":"PGET_SDEV_IDENTIFIER","features":[305]},{"name":"PGET_SET_DEVICE_DATA","features":[305]},{"name":"PGET_UPDATED_BUS_RESOURCE","features":[305,303]},{"name":"PGET_VIRTUAL_DEVICE_DATA","features":[305]},{"name":"PGET_VIRTUAL_DEVICE_LOCATION","features":[305,303]},{"name":"PGET_VIRTUAL_DEVICE_RESOURCES","features":[305]},{"name":"PGET_VIRTUAL_FUNCTION_PROBED_BARS","features":[305,303]},{"name":"PGPE_CLEAR_STATUS","features":[304,307,305,303,306,308,309,310]},{"name":"PGPE_CLEAR_STATUS2","features":[305,303]},{"name":"PGPE_CONNECT_VECTOR","features":[304,307,305,303,306,308,309,310]},{"name":"PGPE_CONNECT_VECTOR2","features":[305,303]},{"name":"PGPE_DISABLE_EVENT","features":[304,307,305,303,306,308,309,310]},{"name":"PGPE_DISABLE_EVENT2","features":[305,303]},{"name":"PGPE_DISCONNECT_VECTOR","features":[305,303]},{"name":"PGPE_DISCONNECT_VECTOR2","features":[305,303]},{"name":"PGPE_ENABLE_EVENT","features":[304,307,305,303,306,308,309,310]},{"name":"PGPE_ENABLE_EVENT2","features":[305,303]},{"name":"PGPE_SERVICE_ROUTINE","features":[305,303]},{"name":"PGPE_SERVICE_ROUTINE2","features":[305,303]},{"name":"PHALIOREADWRITEHANDLER","features":[305,303]},{"name":"PHALMCAINTERFACELOCK","features":[305]},{"name":"PHALMCAINTERFACEREADREGISTER","features":[305,303]},{"name":"PHALMCAINTERFACEUNLOCK","features":[305]},{"name":"PHAL_RESET_DISPLAY_PARAMETERS","features":[305,303]},{"name":"PHVL_WHEA_ERROR_NOTIFICATION","features":[305,303]},{"name":"PHYSICAL_COUNTER_EVENT_BUFFER_CONFIGURATION","features":[305,303]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR","features":[305,303]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR_TYPE","features":[305]},{"name":"PHYSICAL_COUNTER_RESOURCE_LIST","features":[305,303]},{"name":"PHYSICAL_MEMORY_RANGE","features":[305]},{"name":"PINITIALIZE_DMA_TRANSFER_CONTEXT","features":[304,307,305,303,306,308,309,310]},{"name":"PINTERFACE_DEREFERENCE","features":[305]},{"name":"PINTERFACE_REFERENCE","features":[305]},{"name":"PIOMMU_DEVICE_CREATE","features":[305,303]},{"name":"PIOMMU_DEVICE_DELETE","features":[305,303]},{"name":"PIOMMU_DEVICE_FAULT_HANDLER","features":[305]},{"name":"PIOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[305]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE","features":[305,303]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[305,303]},{"name":"PIOMMU_DOMAIN_CONFIGURE","features":[305,303]},{"name":"PIOMMU_DOMAIN_CREATE","features":[305,303]},{"name":"PIOMMU_DOMAIN_CREATE_EX","features":[305,303]},{"name":"PIOMMU_DOMAIN_DELETE","features":[305,303]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE","features":[305,303]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE_EX","features":[305,303]},{"name":"PIOMMU_FLUSH_DOMAIN","features":[305,303]},{"name":"PIOMMU_FLUSH_DOMAIN_VA_LIST","features":[305,303]},{"name":"PIOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[305,303]},{"name":"PIOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[305]},{"name":"PIOMMU_MAP_IDENTITY_RANGE","features":[305,303]},{"name":"PIOMMU_MAP_IDENTITY_RANGE_EX","features":[305,303]},{"name":"PIOMMU_MAP_LOGICAL_RANGE","features":[305,303]},{"name":"PIOMMU_MAP_LOGICAL_RANGE_EX","features":[305,303]},{"name":"PIOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[305,303]},{"name":"PIOMMU_QUERY_INPUT_MAPPINGS","features":[305,303]},{"name":"PIOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[305,303]},{"name":"PIOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[305,303]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING","features":[305,303]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[305,303]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE","features":[305,303]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE_EX","features":[305,303]},{"name":"PIOMMU_UNMAP_LOGICAL_RANGE","features":[305,303]},{"name":"PIOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[305,303]},{"name":"PIOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[305,303]},{"name":"PIO_CONTAINER_NOTIFICATION_FUNCTION","features":[305,303]},{"name":"PIO_CSQ_ACQUIRE_LOCK","features":[305]},{"name":"PIO_CSQ_COMPLETE_CANCELED_IRP","features":[305]},{"name":"PIO_CSQ_INSERT_IRP","features":[305]},{"name":"PIO_CSQ_INSERT_IRP_EX","features":[305,303]},{"name":"PIO_CSQ_PEEK_NEXT_IRP","features":[304,307,305,303,306,308,309,310]},{"name":"PIO_CSQ_RELEASE_LOCK","features":[305]},{"name":"PIO_CSQ_REMOVE_IRP","features":[305]},{"name":"PIO_DEVICE_EJECT_CALLBACK","features":[305,303]},{"name":"PIO_DPC_ROUTINE","features":[305]},{"name":"PIO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[305,303]},{"name":"PIO_QUERY_DEVICE_ROUTINE","features":[305,303]},{"name":"PIO_SESSION_NOTIFICATION_FUNCTION","features":[305,303]},{"name":"PIO_TIMER_ROUTINE","features":[305]},{"name":"PIO_WORKITEM_ROUTINE","features":[305]},{"name":"PIO_WORKITEM_ROUTINE_EX","features":[305]},{"name":"PJOIN_DMA_DOMAIN","features":[304,307,305,303,306,308,309,310]},{"name":"PKBUGCHECK_CALLBACK_ROUTINE","features":[305]},{"name":"PKBUGCHECK_REASON_CALLBACK_ROUTINE","features":[305]},{"name":"PKIPI_BROADCAST_WORKER","features":[305]},{"name":"PKMESSAGE_SERVICE_ROUTINE","features":[305,303]},{"name":"PKSERVICE_ROUTINE","features":[305,303]},{"name":"PKSTART_ROUTINE","features":[305]},{"name":"PKSYNCHRONIZE_ROUTINE","features":[305,303]},{"name":"PLEAVE_DMA_DOMAIN","features":[304,307,305,303,306,308,309,310]},{"name":"PLOAD_IMAGE_NOTIFY_ROUTINE","features":[305,303]},{"name":"PLUGPLAY_NOTIFICATION_HEADER","features":[305]},{"name":"PLUGPLAY_PROPERTY_PERSISTENT","features":[305]},{"name":"PLUGPLAY_REGKEY_CURRENT_HWPROFILE","features":[305]},{"name":"PLUGPLAY_REGKEY_DEVICE","features":[305]},{"name":"PLUGPLAY_REGKEY_DRIVER","features":[305]},{"name":"PMAP_TRANSFER","features":[304,307,305,303,306,308,309,310]},{"name":"PMAP_TRANSFER_EX","features":[304,307,305,303,306,308,309,310]},{"name":"PMCCounter","features":[305]},{"name":"PMEM_ERROR_SECTION_GUID","features":[305]},{"name":"PMM_DLL_INITIALIZE","features":[305,303]},{"name":"PMM_DLL_UNLOAD","features":[305,303]},{"name":"PMM_GET_SYSTEM_ROUTINE_ADDRESS_EX","features":[305,303]},{"name":"PMM_MDL_ROUTINE","features":[305]},{"name":"PMM_ROTATE_COPY_CALLBACK_FUNCTION","features":[304,305,303]},{"name":"PM_DISPATCH_TABLE","features":[305]},{"name":"PNMI_CALLBACK","features":[305,303]},{"name":"PNPBus","features":[305]},{"name":"PNPEM_CONTROL_ENABLE_DISABLE","features":[305,303]},{"name":"PNPEM_CONTROL_QUERY_CONTROL","features":[305]},{"name":"PNPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[305,303]},{"name":"PNPEM_CONTROL_SET_STANDARD_CONTROL","features":[305,303]},{"name":"PNPISABus","features":[305]},{"name":"PNPISAConfiguration","features":[305]},{"name":"PNPNOTIFY_DEVICE_INTERFACE_INCLUDE_EXISTING_INTERFACES","features":[305]},{"name":"PNP_BUS_INFORMATION","features":[305]},{"name":"PNP_DEVICE_ASSIGNED_TO_GUEST","features":[305]},{"name":"PNP_DEVICE_DISABLED","features":[305]},{"name":"PNP_DEVICE_DISCONNECTED","features":[305]},{"name":"PNP_DEVICE_DONT_DISPLAY_IN_UI","features":[305]},{"name":"PNP_DEVICE_FAILED","features":[305]},{"name":"PNP_DEVICE_NOT_DISABLEABLE","features":[305]},{"name":"PNP_DEVICE_REMOVED","features":[305]},{"name":"PNP_DEVICE_RESOURCE_REQUIREMENTS_CHANGED","features":[305]},{"name":"PNP_DEVICE_RESOURCE_UPDATED","features":[305]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE","features":[305]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE_VERSION","features":[305]},{"name":"PNP_LOCATION_INTERFACE","features":[305,303]},{"name":"PNP_REPLACE_DRIVER_INTERFACE","features":[305,303]},{"name":"PNP_REPLACE_DRIVER_INTERFACE_VERSION","features":[305]},{"name":"PNP_REPLACE_HARDWARE_MEMORY_MIRRORING","features":[305]},{"name":"PNP_REPLACE_HARDWARE_PAGE_COPY","features":[305]},{"name":"PNP_REPLACE_HARDWARE_QUIESCE","features":[305]},{"name":"PNP_REPLACE_MEMORY_LIST","features":[305]},{"name":"PNP_REPLACE_MEMORY_SUPPORTED","features":[305]},{"name":"PNP_REPLACE_PARAMETERS","features":[305,303]},{"name":"PNP_REPLACE_PARAMETERS_VERSION","features":[305]},{"name":"PNP_REPLACE_PROCESSOR_LIST","features":[305]},{"name":"PNP_REPLACE_PROCESSOR_LIST_V1","features":[305]},{"name":"PNP_REPLACE_PROCESSOR_SUPPORTED","features":[305]},{"name":"PNTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[305]},{"name":"POB_POST_OPERATION_CALLBACK","features":[304,305,303]},{"name":"POB_PRE_OPERATION_CALLBACK","features":[304,305]},{"name":"POOLED_USAGE_AND_LIMITS","features":[305]},{"name":"POOL_COLD_ALLOCATION","features":[305]},{"name":"POOL_CREATE_EXTENDED_PARAMS","features":[305]},{"name":"POOL_CREATE_FLG_SECURE_POOL","features":[305]},{"name":"POOL_CREATE_FLG_USE_GLOBAL_POOL","features":[305]},{"name":"POOL_CREATE_PARAMS_VERSION","features":[305]},{"name":"POOL_EXTENDED_PARAMETER","features":[305,303]},{"name":"POOL_EXTENDED_PARAMETER_REQUIRED_FIELD_BITS","features":[305]},{"name":"POOL_EXTENDED_PARAMETER_TYPE","features":[305]},{"name":"POOL_EXTENDED_PARAMETER_TYPE_BITS","features":[305]},{"name":"POOL_EXTENDED_PARAMS_SECURE_POOL","features":[305,303]},{"name":"POOL_NX_ALLOCATION","features":[305]},{"name":"POOL_NX_OPTIN_AUTO","features":[305]},{"name":"POOL_QUOTA_FAIL_INSTEAD_OF_RAISE","features":[305]},{"name":"POOL_RAISE_IF_ALLOCATION_FAILURE","features":[305]},{"name":"POOL_TAGGING","features":[305]},{"name":"POOL_ZEROING_INFORMATION","features":[305]},{"name":"POOL_ZERO_ALLOCATION","features":[305]},{"name":"PORT_MAXIMUM_MESSAGE_LENGTH","features":[305]},{"name":"POWER_LEVEL","features":[305]},{"name":"POWER_MONITOR_INVOCATION","features":[305,303]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[305]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[305]},{"name":"POWER_PLATFORM_INFORMATION","features":[305,303]},{"name":"POWER_PLATFORM_ROLE","features":[305]},{"name":"POWER_PLATFORM_ROLE_V1","features":[305]},{"name":"POWER_PLATFORM_ROLE_V2","features":[305]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[305]},{"name":"POWER_SEQUENCE","features":[305]},{"name":"POWER_SESSION_CONNECT","features":[305,303]},{"name":"POWER_SESSION_RIT_STATE","features":[305,303]},{"name":"POWER_SESSION_TIMEOUTS","features":[305]},{"name":"POWER_SESSION_WINLOGON","features":[305,303]},{"name":"POWER_SETTING_CALLBACK","features":[305,303]},{"name":"POWER_SETTING_VALUE_VERSION","features":[305]},{"name":"POWER_STATE","features":[305,310]},{"name":"POWER_STATE_TYPE","features":[305]},{"name":"POWER_THROTTLING_PROCESS_CURRENT_VERSION","features":[305]},{"name":"POWER_THROTTLING_PROCESS_DELAYTIMERS","features":[305]},{"name":"POWER_THROTTLING_PROCESS_EXECUTION_SPEED","features":[305]},{"name":"POWER_THROTTLING_PROCESS_IGNORE_TIMER_RESOLUTION","features":[305]},{"name":"POWER_THROTTLING_PROCESS_STATE","features":[305]},{"name":"POWER_THROTTLING_THREAD_CURRENT_VERSION","features":[305]},{"name":"POWER_THROTTLING_THREAD_EXECUTION_SPEED","features":[305]},{"name":"POWER_THROTTLING_THREAD_STATE","features":[305]},{"name":"POWER_THROTTLING_THREAD_VALID_FLAGS","features":[305]},{"name":"POWER_USER_PRESENCE_TYPE","features":[305]},{"name":"PO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[305]},{"name":"PO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[305,303]},{"name":"PO_FX_COMPONENT_FLAG_F0_ON_DX","features":[305]},{"name":"PO_FX_COMPONENT_FLAG_NO_DEBOUNCE","features":[305]},{"name":"PO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[305]},{"name":"PO_FX_COMPONENT_IDLE_STATE","features":[305]},{"name":"PO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[305]},{"name":"PO_FX_COMPONENT_PERF_INFO","features":[305,303]},{"name":"PO_FX_COMPONENT_PERF_SET","features":[305,303]},{"name":"PO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[305,303]},{"name":"PO_FX_COMPONENT_V1","features":[305]},{"name":"PO_FX_COMPONENT_V2","features":[305]},{"name":"PO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[305]},{"name":"PO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[305]},{"name":"PO_FX_DEVICE_V1","features":[305,303]},{"name":"PO_FX_DEVICE_V2","features":[305,303]},{"name":"PO_FX_DEVICE_V3","features":[305,303]},{"name":"PO_FX_DIRECTED_FX_DEFAULT_IDLE_TIMEOUT","features":[305]},{"name":"PO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[305]},{"name":"PO_FX_DIRECTED_POWER_UP_CALLBACK","features":[305]},{"name":"PO_FX_DRIPS_WATCHDOG_CALLBACK","features":[304,307,305,303,306,308,309,310]},{"name":"PO_FX_FLAG_ASYNC_ONLY","features":[305]},{"name":"PO_FX_FLAG_BLOCKING","features":[305]},{"name":"PO_FX_FLAG_PERF_PEP_OPTIONAL","features":[305]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_ALL_IDLE_STATES","features":[305]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_F0","features":[305]},{"name":"PO_FX_PERF_STATE","features":[305]},{"name":"PO_FX_PERF_STATE_CHANGE","features":[305]},{"name":"PO_FX_PERF_STATE_TYPE","features":[305]},{"name":"PO_FX_PERF_STATE_UNIT","features":[305]},{"name":"PO_FX_POWER_CONTROL_CALLBACK","features":[305,303]},{"name":"PO_FX_UNKNOWN_POWER","features":[305]},{"name":"PO_FX_UNKNOWN_TIME","features":[305]},{"name":"PO_FX_VERSION","features":[305]},{"name":"PO_FX_VERSION_V1","features":[305]},{"name":"PO_FX_VERSION_V2","features":[305]},{"name":"PO_FX_VERSION_V3","features":[305]},{"name":"PO_MEM_BOOT_PHASE","features":[305]},{"name":"PO_MEM_CLONE","features":[305]},{"name":"PO_MEM_CL_OR_NCHK","features":[305]},{"name":"PO_MEM_DISCARD","features":[305]},{"name":"PO_MEM_PAGE_ADDRESS","features":[305]},{"name":"PO_MEM_PRESERVE","features":[305]},{"name":"PO_THERMAL_REQUEST_TYPE","features":[305]},{"name":"PPCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[305,303]},{"name":"PPCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[305,303]},{"name":"PPCI_EXPRESS_ROOT_PORT_READ_CONFIG_SPACE","features":[305]},{"name":"PPCI_EXPRESS_ROOT_PORT_WRITE_CONFIG_SPACE","features":[305]},{"name":"PPCI_EXPRESS_WAKE_CONTROL","features":[305]},{"name":"PPCI_IS_DEVICE_PRESENT","features":[305,303]},{"name":"PPCI_IS_DEVICE_PRESENT_EX","features":[305,303]},{"name":"PPCI_LINE_TO_PIN","features":[305]},{"name":"PPCI_MSIX_GET_ENTRY","features":[305,303]},{"name":"PPCI_MSIX_GET_TABLE_SIZE","features":[305,303]},{"name":"PPCI_MSIX_MASKUNMASK_ENTRY","features":[305,303]},{"name":"PPCI_MSIX_SET_ENTRY","features":[305,303]},{"name":"PPCI_PIN_TO_LINE","features":[305]},{"name":"PPCI_PREPARE_MULTISTAGE_RESUME","features":[305]},{"name":"PPCI_READ_WRITE_CONFIG","features":[305]},{"name":"PPCI_ROOT_BUS_CAPABILITY","features":[305]},{"name":"PPCI_SET_ACS","features":[305,303]},{"name":"PPCI_SET_ACS2","features":[305,303]},{"name":"PPCI_SET_ATS","features":[305,303]},{"name":"PPCW_CALLBACK","features":[305,303]},{"name":"PPHYSICAL_COUNTER_EVENT_BUFFER_OVERFLOW_HANDLER","features":[305,303]},{"name":"PPHYSICAL_COUNTER_OVERFLOW_HANDLER","features":[305,303]},{"name":"PPI_SHIFT","features":[305]},{"name":"PPOWER_SETTING_CALLBACK","features":[305,303]},{"name":"PPO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[305]},{"name":"PPO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[305]},{"name":"PPO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[305]},{"name":"PPO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[305]},{"name":"PPO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[305]},{"name":"PPO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[305]},{"name":"PPO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[305]},{"name":"PPO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[305]},{"name":"PPO_FX_DIRECTED_POWER_UP_CALLBACK","features":[305]},{"name":"PPO_FX_DRIPS_WATCHDOG_CALLBACK","features":[305]},{"name":"PPO_FX_POWER_CONTROL_CALLBACK","features":[305,303]},{"name":"PPROCESSOR_CALLBACK_FUNCTION","features":[305]},{"name":"PPROCESSOR_HALT_ROUTINE","features":[305,303]},{"name":"PPTM_DEVICE_DISABLE","features":[305,303]},{"name":"PPTM_DEVICE_ENABLE","features":[305,303]},{"name":"PPTM_DEVICE_QUERY_GRANULARITY","features":[305,303]},{"name":"PPTM_DEVICE_QUERY_TIME_SOURCE","features":[305,303]},{"name":"PPUT_DMA_ADAPTER","features":[304,307,305,303,306,308,309,310]},{"name":"PPUT_SCATTER_GATHER_LIST","features":[304,307,305,303,306,308,309,310]},{"name":"PQUERYEXTENDEDADDRESS","features":[305]},{"name":"PREAD_DMA_COUNTER","features":[304,307,305,303,306,308,309,310]},{"name":"PREENUMERATE_SELF","features":[305]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[304,307,305,303,306,308,309,310]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[305,303]},{"name":"PREPLACE_BEGIN","features":[305,303]},{"name":"PREPLACE_DRIVER_INIT","features":[305,303]},{"name":"PREPLACE_ENABLE_DISABLE_HARDWARE_QUIESCE","features":[305,303]},{"name":"PREPLACE_END","features":[305,303]},{"name":"PREPLACE_GET_MEMORY_DESTINATION","features":[305,303]},{"name":"PREPLACE_INITIATE_HARDWARE_MIRROR","features":[305,303]},{"name":"PREPLACE_MAP_MEMORY","features":[305,303]},{"name":"PREPLACE_MIRROR_PHYSICAL_MEMORY","features":[305,303]},{"name":"PREPLACE_MIRROR_PLATFORM_MEMORY","features":[305,303]},{"name":"PREPLACE_SET_PROCESSOR_ID","features":[305,303]},{"name":"PREPLACE_SWAP","features":[305,303]},{"name":"PREPLACE_UNLOAD","features":[305]},{"name":"PREQUEST_POWER_COMPLETE","features":[305]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[305]},{"name":"PROCESSOR_CALLBACK_FUNCTION","features":[305,303,309]},{"name":"PROCESSOR_FEATURE_MAX","features":[305]},{"name":"PROCESSOR_GENERIC_ERROR_SECTION_GUID","features":[305]},{"name":"PROCESSOR_HALT_ROUTINE","features":[305,303]},{"name":"PROCESS_ACCESS_TOKEN","features":[305,303]},{"name":"PROCESS_DEVICEMAP_INFORMATION","features":[305,303]},{"name":"PROCESS_DEVICEMAP_INFORMATION_EX","features":[305,303]},{"name":"PROCESS_EXCEPTION_PORT","features":[305,303]},{"name":"PROCESS_EXCEPTION_PORT_ALL_STATE_BITS","features":[305]},{"name":"PROCESS_EXTENDED_BASIC_INFORMATION","features":[305,303,309,338]},{"name":"PROCESS_HANDLE_EXCEPTIONS_ENABLED","features":[305]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_DISABLED","features":[305]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_ENABLED","features":[305]},{"name":"PROCESS_HANDLE_TRACING_ENABLE","features":[305]},{"name":"PROCESS_HANDLE_TRACING_ENABLE_EX","features":[305]},{"name":"PROCESS_HANDLE_TRACING_ENTRY","features":[305,303,335]},{"name":"PROCESS_HANDLE_TRACING_MAX_STACKS","features":[305]},{"name":"PROCESS_HANDLE_TRACING_QUERY","features":[305,303,335]},{"name":"PROCESS_KEEPALIVE_COUNT_INFORMATION","features":[305]},{"name":"PROCESS_LUID_DOSDEVICES_ONLY","features":[305]},{"name":"PROCESS_MEMBERSHIP_INFORMATION","features":[305]},{"name":"PROCESS_REVOKE_FILE_HANDLES_INFORMATION","features":[305,303]},{"name":"PROCESS_SESSION_INFORMATION","features":[305]},{"name":"PROCESS_SYSCALL_PROVIDER_INFORMATION","features":[305]},{"name":"PROCESS_WS_WATCH_INFORMATION","features":[305]},{"name":"PROFILE_LEVEL","features":[305]},{"name":"PROTECTED_POOL","features":[305]},{"name":"PRTL_AVL_ALLOCATE_ROUTINE","features":[305]},{"name":"PRTL_AVL_COMPARE_ROUTINE","features":[305]},{"name":"PRTL_AVL_FREE_ROUTINE","features":[305]},{"name":"PRTL_AVL_MATCH_FUNCTION","features":[305,303]},{"name":"PRTL_GENERIC_ALLOCATE_ROUTINE","features":[305]},{"name":"PRTL_GENERIC_COMPARE_ROUTINE","features":[305]},{"name":"PRTL_GENERIC_FREE_ROUTINE","features":[305]},{"name":"PRTL_QUERY_REGISTRY_ROUTINE","features":[305,303]},{"name":"PRTL_RUN_ONCE_INIT_FN","features":[305]},{"name":"PSCREATEPROCESSNOTIFYTYPE","features":[305]},{"name":"PSCREATETHREADNOTIFYTYPE","features":[305]},{"name":"PSECURE_DRIVER_PROCESS_DEREFERENCE","features":[305]},{"name":"PSECURE_DRIVER_PROCESS_REFERENCE","features":[304,305]},{"name":"PSET_D3COLD_SUPPORT","features":[305]},{"name":"PSET_VIRTUAL_DEVICE_DATA","features":[305]},{"name":"PSE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[305]},{"name":"PSHED_PI_ATTEMPT_ERROR_RECOVERY","features":[305,303]},{"name":"PSHED_PI_CLEAR_ERROR_RECORD","features":[305,303]},{"name":"PSHED_PI_CLEAR_ERROR_STATUS","features":[305,303,331]},{"name":"PSHED_PI_DISABLE_ERROR_SOURCE","features":[305,303,331]},{"name":"PSHED_PI_ENABLE_ERROR_SOURCE","features":[305,303,331]},{"name":"PSHED_PI_ERR_READING_PCIE_OVERRIDES","features":[305]},{"name":"PSHED_PI_FINALIZE_ERROR_RECORD","features":[305,303,331]},{"name":"PSHED_PI_GET_ALL_ERROR_SOURCES","features":[305,303,331]},{"name":"PSHED_PI_GET_ERROR_SOURCE_INFO","features":[305,303,331]},{"name":"PSHED_PI_GET_INJECTION_CAPABILITIES","features":[305,303]},{"name":"PSHED_PI_INJECT_ERROR","features":[305,303]},{"name":"PSHED_PI_READ_ERROR_RECORD","features":[305,303]},{"name":"PSHED_PI_RETRIEVE_ERROR_INFO","features":[305,303,331]},{"name":"PSHED_PI_SET_ERROR_SOURCE_INFO","features":[305,303,331]},{"name":"PSHED_PI_WRITE_ERROR_RECORD","features":[305,303]},{"name":"PS_CREATE_NOTIFY_INFO","features":[304,307,305,303,306,308,309,310,335]},{"name":"PS_IMAGE_NOTIFY_CONFLICTING_ARCHITECTURE","features":[305]},{"name":"PS_INVALID_SILO_CONTEXT_SLOT","features":[305]},{"name":"PTE_BASE","features":[305]},{"name":"PTE_PER_PAGE","features":[305]},{"name":"PTE_TOP","features":[305]},{"name":"PTIMER_APC_ROUTINE","features":[305]},{"name":"PTI_SHIFT","features":[305]},{"name":"PTM_CONTROL_INTERFACE","features":[305,303]},{"name":"PTM_DEVICE_DISABLE","features":[305,303]},{"name":"PTM_DEVICE_ENABLE","features":[305,303]},{"name":"PTM_DEVICE_QUERY_GRANULARITY","features":[305,303]},{"name":"PTM_DEVICE_QUERY_TIME_SOURCE","features":[305,303]},{"name":"PTM_PROPAGATE_ROUTINE","features":[305,303]},{"name":"PTM_RM_NOTIFICATION","features":[304,305,303]},{"name":"PTRANSLATE_BUS_ADDRESS","features":[305,303]},{"name":"PTRANSLATE_RESOURCE_HANDLER","features":[304,307,305,303,306,308,309,310]},{"name":"PTRANSLATE_RESOURCE_REQUIREMENTS_HANDLER","features":[304,307,305,303,306,308,309,310]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[304,307,305,303,306,308,309,310]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[305]},{"name":"PageIn","features":[305]},{"name":"ParallelController","features":[305]},{"name":"PciAcsBitDisable","features":[305]},{"name":"PciAcsBitDontCare","features":[305]},{"name":"PciAcsBitEnable","features":[305]},{"name":"PciAcsReserved","features":[305]},{"name":"PciAddressParityError","features":[305]},{"name":"PciBusDataParityError","features":[305]},{"name":"PciBusMasterAbort","features":[305]},{"name":"PciBusSystemError","features":[305]},{"name":"PciBusTimeOut","features":[305]},{"name":"PciBusUnknownError","features":[305]},{"name":"PciCommandParityError","features":[305]},{"name":"PciConventional","features":[305]},{"name":"PciDeviceD3Cold_Reason_Default_State_BitIndex","features":[305]},{"name":"PciDeviceD3Cold_Reason_INF_BitIndex","features":[305]},{"name":"PciDeviceD3Cold_Reason_Interface_Api_BitIndex","features":[305]},{"name":"PciDeviceD3Cold_State_Disabled_BitIndex","features":[305]},{"name":"PciDeviceD3Cold_State_Disabled_Bridge_HackFlags_BitIndex","features":[305]},{"name":"PciDeviceD3Cold_State_Enabled_BitIndex","features":[305]},{"name":"PciDeviceD3Cold_State_ParentRootPortS0WakeSupported_BitIndex","features":[305]},{"name":"PciExpress","features":[305]},{"name":"PciExpressASPMLinkSubState_L11_BitIndex","features":[305]},{"name":"PciExpressASPMLinkSubState_L12_BitIndex","features":[305]},{"name":"PciExpressDownstreamSwitchPort","features":[305]},{"name":"PciExpressEndpoint","features":[305]},{"name":"PciExpressLegacyEndpoint","features":[305]},{"name":"PciExpressPciPmLinkSubState_L11_BitIndex","features":[305]},{"name":"PciExpressPciPmLinkSubState_L12_BitIndex","features":[305]},{"name":"PciExpressRootComplexEventCollector","features":[305]},{"name":"PciExpressRootComplexIntegratedEndpoint","features":[305]},{"name":"PciExpressRootPort","features":[305]},{"name":"PciExpressToPciXBridge","features":[305]},{"name":"PciExpressUpstreamSwitchPort","features":[305]},{"name":"PciLine2Pin","features":[305]},{"name":"PciMasterDataParityError","features":[305]},{"name":"PciPin2Line","features":[305]},{"name":"PciReadWriteConfig","features":[305]},{"name":"PciXMode1","features":[305]},{"name":"PciXMode2","features":[305]},{"name":"PciXToExpressBridge","features":[305]},{"name":"PcwAddInstance","features":[304,305,303]},{"name":"PcwCallbackAddCounter","features":[305]},{"name":"PcwCallbackCollectData","features":[305]},{"name":"PcwCallbackEnumerateInstances","features":[305]},{"name":"PcwCallbackRemoveCounter","features":[305]},{"name":"PcwCloseInstance","features":[304,305]},{"name":"PcwCreateInstance","features":[304,305,303]},{"name":"PcwRegister","features":[304,305,303]},{"name":"PcwRegistrationNone","features":[305]},{"name":"PcwRegistrationSiloNeutral","features":[305]},{"name":"PcwUnregister","features":[304,305]},{"name":"PermissionFault","features":[305]},{"name":"PlatformLevelDeviceReset","features":[305]},{"name":"PlatformRoleAppliancePC","features":[305]},{"name":"PlatformRoleDesktop","features":[305]},{"name":"PlatformRoleEnterpriseServer","features":[305]},{"name":"PlatformRoleMaximum","features":[305]},{"name":"PlatformRoleMobile","features":[305]},{"name":"PlatformRolePerformanceServer","features":[305]},{"name":"PlatformRoleSOHOServer","features":[305]},{"name":"PlatformRoleSlate","features":[305]},{"name":"PlatformRoleUnspecified","features":[305]},{"name":"PlatformRoleWorkstation","features":[305]},{"name":"PoAc","features":[305]},{"name":"PoCallDriver","features":[304,307,305,303,306,308,309,310]},{"name":"PoClearPowerRequest","features":[305,303,310]},{"name":"PoConditionMaximum","features":[305]},{"name":"PoCreatePowerRequest","features":[304,307,305,303,306,308,309,310]},{"name":"PoCreateThermalRequest","features":[304,307,305,303,306,308,309,310]},{"name":"PoDc","features":[305]},{"name":"PoDeletePowerRequest","features":[305]},{"name":"PoDeleteThermalRequest","features":[305]},{"name":"PoEndDeviceBusy","features":[305]},{"name":"PoFxActivateComponent","features":[304,305]},{"name":"PoFxCompleteDevicePowerNotRequired","features":[304,305]},{"name":"PoFxCompleteDirectedPowerDown","features":[304,305]},{"name":"PoFxCompleteIdleCondition","features":[304,305]},{"name":"PoFxCompleteIdleState","features":[304,305]},{"name":"PoFxIdleComponent","features":[304,305]},{"name":"PoFxIssueComponentPerfStateChange","features":[304,305]},{"name":"PoFxIssueComponentPerfStateChangeMultiple","features":[304,305]},{"name":"PoFxNotifySurprisePowerOn","features":[304,307,305,303,306,308,309,310]},{"name":"PoFxPerfStateTypeDiscrete","features":[305]},{"name":"PoFxPerfStateTypeMaximum","features":[305]},{"name":"PoFxPerfStateTypeRange","features":[305]},{"name":"PoFxPerfStateUnitBandwidth","features":[305]},{"name":"PoFxPerfStateUnitFrequency","features":[305]},{"name":"PoFxPerfStateUnitMaximum","features":[305]},{"name":"PoFxPerfStateUnitOther","features":[305]},{"name":"PoFxPowerControl","features":[304,305,303]},{"name":"PoFxPowerOnCrashdumpDevice","features":[304,305,303]},{"name":"PoFxQueryCurrentComponentPerfState","features":[304,305,303]},{"name":"PoFxRegisterComponentPerfStates","features":[304,305,303]},{"name":"PoFxRegisterCrashdumpDevice","features":[304,305,303]},{"name":"PoFxRegisterDevice","features":[304,307,305,303,306,308,309,310]},{"name":"PoFxRegisterDripsWatchdogCallback","features":[304,307,305,303,306,308,309,310]},{"name":"PoFxReportDevicePoweredOn","features":[304,305]},{"name":"PoFxSetComponentLatency","features":[304,305]},{"name":"PoFxSetComponentResidency","features":[304,305]},{"name":"PoFxSetComponentWake","features":[304,305,303]},{"name":"PoFxSetDeviceIdleTimeout","features":[304,305]},{"name":"PoFxSetTargetDripsDevicePowerState","features":[304,305,303,310]},{"name":"PoFxStartDevicePowerManagement","features":[304,305]},{"name":"PoFxUnregisterDevice","features":[304,305]},{"name":"PoGetSystemWake","features":[304,307,305,303,306,308,309,310]},{"name":"PoGetThermalRequestSupport","features":[305,303]},{"name":"PoHot","features":[305]},{"name":"PoQueryWatchdogTime","features":[304,307,305,303,306,308,309,310]},{"name":"PoRegisterDeviceForIdleDetection","features":[304,307,305,303,306,308,309,310]},{"name":"PoRegisterPowerSettingCallback","features":[304,307,305,303,306,308,309,310]},{"name":"PoRegisterSystemState","features":[305]},{"name":"PoRequestPowerIrp","features":[304,307,305,303,306,308,309,310]},{"name":"PoSetDeviceBusyEx","features":[305]},{"name":"PoSetHiberRange","features":[305]},{"name":"PoSetPowerRequest","features":[305,303,310]},{"name":"PoSetPowerState","features":[304,307,305,303,306,308,309,310]},{"name":"PoSetSystemState","features":[305]},{"name":"PoSetSystemWake","features":[304,307,305,303,306,308,309,310]},{"name":"PoSetSystemWakeDevice","features":[304,307,305,303,306,308,309,310]},{"name":"PoSetThermalActiveCooling","features":[305,303]},{"name":"PoSetThermalPassiveCooling","features":[305,303]},{"name":"PoStartDeviceBusy","features":[305]},{"name":"PoStartNextPowerIrp","features":[304,307,305,303,306,308,309,310]},{"name":"PoThermalRequestActive","features":[305]},{"name":"PoThermalRequestPassive","features":[305]},{"name":"PoUnregisterPowerSettingCallback","features":[305,303]},{"name":"PoUnregisterSystemState","features":[305]},{"name":"PointerController","features":[305]},{"name":"PointerPeripheral","features":[305]},{"name":"PoolAllocation","features":[305]},{"name":"PoolExtendedParameterInvalidType","features":[305]},{"name":"PoolExtendedParameterMax","features":[305]},{"name":"PoolExtendedParameterNumaNode","features":[305]},{"name":"PoolExtendedParameterPriority","features":[305]},{"name":"PoolExtendedParameterSecurePool","features":[305]},{"name":"Pos","features":[305]},{"name":"PowerOff","features":[305]},{"name":"PowerOn","features":[305]},{"name":"PowerRelations","features":[305]},{"name":"PrimaryDcache","features":[305]},{"name":"PrimaryIcache","features":[305]},{"name":"PrinterPeripheral","features":[305]},{"name":"ProbeForRead","features":[305]},{"name":"ProbeForWrite","features":[305]},{"name":"ProcessorInternal","features":[305]},{"name":"Profile2Issue","features":[305]},{"name":"Profile3Issue","features":[305]},{"name":"Profile4Issue","features":[305]},{"name":"ProfileAlignmentFixup","features":[305]},{"name":"ProfileBranchInstructions","features":[305]},{"name":"ProfileBranchMispredictions","features":[305]},{"name":"ProfileCacheMisses","features":[305]},{"name":"ProfileDcacheAccesses","features":[305]},{"name":"ProfileDcacheMisses","features":[305]},{"name":"ProfileFpInstructions","features":[305]},{"name":"ProfileIcacheIssues","features":[305]},{"name":"ProfileIcacheMisses","features":[305]},{"name":"ProfileIntegerInstructions","features":[305]},{"name":"ProfileLoadInstructions","features":[305]},{"name":"ProfileLoadLinkedIssues","features":[305]},{"name":"ProfileMaximum","features":[305]},{"name":"ProfileMemoryBarrierCycles","features":[305]},{"name":"ProfilePipelineDry","features":[305]},{"name":"ProfilePipelineFrozen","features":[305]},{"name":"ProfileSpecialInstructions","features":[305]},{"name":"ProfileStoreInstructions","features":[305]},{"name":"ProfileTime","features":[305]},{"name":"ProfileTotalCycles","features":[305]},{"name":"ProfileTotalIssues","features":[305]},{"name":"ProfileTotalNonissues","features":[305]},{"name":"PsAcquireSiloHardReference","features":[304,305,303]},{"name":"PsAllocSiloContextSlot","features":[305,303]},{"name":"PsAllocateAffinityToken","features":[304,305,303]},{"name":"PsAttachSiloToCurrentThread","features":[304,305]},{"name":"PsCreateProcessNotifySubsystems","features":[305]},{"name":"PsCreateSiloContext","features":[304,305,303]},{"name":"PsCreateSystemThread","features":[304,305,303,335]},{"name":"PsCreateThreadNotifyNonSystem","features":[305]},{"name":"PsCreateThreadNotifySubsystems","features":[305]},{"name":"PsDereferenceSiloContext","features":[305]},{"name":"PsDetachSiloFromCurrentThread","features":[304,305]},{"name":"PsFreeAffinityToken","features":[304,305]},{"name":"PsFreeSiloContextSlot","features":[305,303]},{"name":"PsGetCurrentProcessId","features":[305,303]},{"name":"PsGetCurrentServerSilo","features":[304,305]},{"name":"PsGetCurrentServerSiloName","features":[305,303]},{"name":"PsGetCurrentSilo","features":[304,305]},{"name":"PsGetCurrentThreadId","features":[305,303]},{"name":"PsGetCurrentThreadTeb","features":[305]},{"name":"PsGetEffectiveServerSilo","features":[304,305]},{"name":"PsGetHostSilo","features":[304,305]},{"name":"PsGetJobServerSilo","features":[304,305,303]},{"name":"PsGetJobSilo","features":[304,305,303]},{"name":"PsGetParentSilo","features":[304,305]},{"name":"PsGetPermanentSiloContext","features":[304,305,303]},{"name":"PsGetProcessCreateTimeQuadPart","features":[304,305]},{"name":"PsGetProcessExitStatus","features":[304,305,303]},{"name":"PsGetProcessId","features":[304,305,303]},{"name":"PsGetProcessStartKey","features":[304,305]},{"name":"PsGetServerSiloServiceSessionId","features":[304,305]},{"name":"PsGetSiloContainerId","features":[304,305]},{"name":"PsGetSiloContext","features":[304,305,303]},{"name":"PsGetSiloMonitorContextSlot","features":[304,305]},{"name":"PsGetThreadCreateTime","features":[304,305]},{"name":"PsGetThreadExitStatus","features":[304,305,303]},{"name":"PsGetThreadId","features":[304,305,303]},{"name":"PsGetThreadProcessId","features":[304,305,303]},{"name":"PsGetThreadProperty","features":[304,305]},{"name":"PsGetThreadServerSilo","features":[304,305]},{"name":"PsGetVersion","features":[305,303]},{"name":"PsInsertPermanentSiloContext","features":[304,305,303]},{"name":"PsInsertSiloContext","features":[304,305,303]},{"name":"PsIsCurrentThreadInServerSilo","features":[305,303]},{"name":"PsIsCurrentThreadPrefetching","features":[305,303]},{"name":"PsIsHostSilo","features":[304,305,303]},{"name":"PsMakeSiloContextPermanent","features":[304,305,303]},{"name":"PsQueryTotalCycleTimeProcess","features":[304,305]},{"name":"PsReferenceSiloContext","features":[305]},{"name":"PsRegisterSiloMonitor","features":[304,305,303]},{"name":"PsReleaseSiloHardReference","features":[304,305]},{"name":"PsRemoveCreateThreadNotifyRoutine","features":[305,303]},{"name":"PsRemoveLoadImageNotifyRoutine","features":[305,303]},{"name":"PsRemoveSiloContext","features":[304,305,303]},{"name":"PsReplaceSiloContext","features":[304,305,303]},{"name":"PsRevertToUserMultipleGroupAffinityThread","features":[304,305]},{"name":"PsSetCreateProcessNotifyRoutine","features":[305,303]},{"name":"PsSetCreateProcessNotifyRoutineEx","features":[304,307,305,303,306,308,309,310,335]},{"name":"PsSetCreateProcessNotifyRoutineEx2","features":[305,303]},{"name":"PsSetCreateThreadNotifyRoutine","features":[305,303]},{"name":"PsSetCreateThreadNotifyRoutineEx","features":[305,303]},{"name":"PsSetCurrentThreadPrefetching","features":[305,303]},{"name":"PsSetLoadImageNotifyRoutine","features":[305,303]},{"name":"PsSetLoadImageNotifyRoutineEx","features":[305,303]},{"name":"PsSetSystemMultipleGroupAffinityThread","features":[304,305,303,333]},{"name":"PsStartSiloMonitor","features":[304,305,303]},{"name":"PsTerminateServerSilo","features":[304,305,303]},{"name":"PsTerminateSystemThread","features":[305,303]},{"name":"PsUnregisterSiloMonitor","features":[304,305]},{"name":"PsWrapApcWow64Thread","features":[305,303]},{"name":"PshedAllocateMemory","features":[305]},{"name":"PshedFADiscovery","features":[305]},{"name":"PshedFAErrorInfoRetrieval","features":[305]},{"name":"PshedFAErrorInjection","features":[305]},{"name":"PshedFAErrorRecordPersistence","features":[305]},{"name":"PshedFAErrorRecovery","features":[305]},{"name":"PshedFAErrorSourceControl","features":[305]},{"name":"PshedFreeMemory","features":[305]},{"name":"PshedIsSystemWheaEnabled","features":[305,303]},{"name":"PshedPiEnableNotifyErrorCreateNotifyEvent","features":[305]},{"name":"PshedPiEnableNotifyErrorCreateSystemThread","features":[305]},{"name":"PshedPiEnableNotifyErrorMax","features":[305]},{"name":"PshedPiErrReadingPcieOverridesBadSignature","features":[305]},{"name":"PshedPiErrReadingPcieOverridesBadSize","features":[305]},{"name":"PshedPiErrReadingPcieOverridesNoCapOffset","features":[305]},{"name":"PshedPiErrReadingPcieOverridesNoErr","features":[305]},{"name":"PshedPiErrReadingPcieOverridesNoMemory","features":[305]},{"name":"PshedPiErrReadingPcieOverridesNotBinary","features":[305]},{"name":"PshedPiErrReadingPcieOverridesQueryErr","features":[305]},{"name":"PshedRegisterPlugin","features":[305,303,331]},{"name":"PshedSynchronizeExecution","features":[305,303,331]},{"name":"PshedUnregisterPlugin","features":[305]},{"name":"QuerySecurityDescriptor","features":[305]},{"name":"RCB128Bytes","features":[305]},{"name":"RCB64Bytes","features":[305]},{"name":"RECOVERY_INFO_SECTION_GUID","features":[305]},{"name":"REENUMERATE_SELF_INTERFACE_STANDARD","features":[305]},{"name":"REG_CALLBACK_CONTEXT_CLEANUP_INFORMATION","features":[305]},{"name":"REG_CREATE_KEY_INFORMATION","features":[305,303]},{"name":"REG_CREATE_KEY_INFORMATION_V1","features":[305,303]},{"name":"REG_DELETE_KEY_INFORMATION","features":[305]},{"name":"REG_DELETE_VALUE_KEY_INFORMATION","features":[305,303]},{"name":"REG_ENUMERATE_KEY_INFORMATION","features":[305]},{"name":"REG_ENUMERATE_VALUE_KEY_INFORMATION","features":[305]},{"name":"REG_KEY_HANDLE_CLOSE_INFORMATION","features":[305]},{"name":"REG_LOAD_KEY_INFORMATION","features":[305,303]},{"name":"REG_LOAD_KEY_INFORMATION_V2","features":[305,303]},{"name":"REG_NOTIFY_CLASS","features":[305]},{"name":"REG_POST_CREATE_KEY_INFORMATION","features":[305,303]},{"name":"REG_POST_OPERATION_INFORMATION","features":[305,303]},{"name":"REG_PRE_CREATE_KEY_INFORMATION","features":[305,303]},{"name":"REG_QUERY_KEY_INFORMATION","features":[305]},{"name":"REG_QUERY_KEY_NAME","features":[304,305,303]},{"name":"REG_QUERY_KEY_SECURITY_INFORMATION","features":[305,306]},{"name":"REG_QUERY_VALUE_KEY_INFORMATION","features":[305,303]},{"name":"REG_RENAME_KEY_INFORMATION","features":[305,303]},{"name":"REG_REPLACE_KEY_INFORMATION","features":[305,303]},{"name":"REG_RESTORE_KEY_INFORMATION","features":[305,303]},{"name":"REG_SAVE_KEY_INFORMATION","features":[305,303]},{"name":"REG_SAVE_MERGED_KEY_INFORMATION","features":[305,303]},{"name":"REG_SET_KEY_SECURITY_INFORMATION","features":[305,306]},{"name":"REG_SET_VALUE_KEY_INFORMATION","features":[305,303]},{"name":"REG_UNLOAD_KEY_INFORMATION","features":[305]},{"name":"REQUEST_POWER_COMPLETE","features":[304,307,305,303,306,308,309,310]},{"name":"RESOURCE_HASH_ENTRY","features":[305,309]},{"name":"RESOURCE_HASH_TABLE_SIZE","features":[305]},{"name":"RESOURCE_PERFORMANCE_DATA","features":[305,309]},{"name":"RESOURCE_TRANSLATION_DIRECTION","features":[305]},{"name":"RESULT_NEGATIVE","features":[305]},{"name":"RESULT_POSITIVE","features":[305]},{"name":"RESULT_ZERO","features":[305]},{"name":"ROOT_CMD_ENABLE_CORRECTABLE_ERROR_REPORTING","features":[305]},{"name":"ROOT_CMD_ENABLE_FATAL_ERROR_REPORTING","features":[305]},{"name":"ROOT_CMD_ENABLE_NONFATAL_ERROR_REPORTING","features":[305]},{"name":"RTL_AVL_ALLOCATE_ROUTINE","features":[305]},{"name":"RTL_AVL_COMPARE_ROUTINE","features":[305]},{"name":"RTL_AVL_FREE_ROUTINE","features":[305]},{"name":"RTL_AVL_MATCH_FUNCTION","features":[305,303]},{"name":"RTL_AVL_TABLE","features":[305]},{"name":"RTL_BALANCED_LINKS","features":[305]},{"name":"RTL_BITMAP","features":[305]},{"name":"RTL_BITMAP_RUN","features":[305]},{"name":"RTL_DYNAMIC_HASH_TABLE","features":[305]},{"name":"RTL_DYNAMIC_HASH_TABLE_CONTEXT","features":[305,309]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENTRY","features":[305,309]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENUMERATOR","features":[305,309]},{"name":"RTL_GENERIC_ALLOCATE_ROUTINE","features":[304,305,309]},{"name":"RTL_GENERIC_COMPARE_RESULTS","features":[305]},{"name":"RTL_GENERIC_COMPARE_ROUTINE","features":[304,305,309]},{"name":"RTL_GENERIC_FREE_ROUTINE","features":[304,305,309]},{"name":"RTL_GENERIC_TABLE","features":[304,305,309]},{"name":"RTL_GUID_STRING_SIZE","features":[305]},{"name":"RTL_HASH_ALLOCATED_HEADER","features":[305]},{"name":"RTL_HASH_RESERVED_SIGNATURE","features":[305]},{"name":"RTL_QUERY_REGISTRY_DELETE","features":[305]},{"name":"RTL_QUERY_REGISTRY_DIRECT","features":[305]},{"name":"RTL_QUERY_REGISTRY_NOEXPAND","features":[305]},{"name":"RTL_QUERY_REGISTRY_NOSTRING","features":[305]},{"name":"RTL_QUERY_REGISTRY_NOVALUE","features":[305]},{"name":"RTL_QUERY_REGISTRY_REQUIRED","features":[305]},{"name":"RTL_QUERY_REGISTRY_ROUTINE","features":[305,303]},{"name":"RTL_QUERY_REGISTRY_SUBKEY","features":[305]},{"name":"RTL_QUERY_REGISTRY_TABLE","features":[305,303]},{"name":"RTL_QUERY_REGISTRY_TOPKEY","features":[305]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK","features":[305]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK_SHIFT","features":[305]},{"name":"RTL_REGISTRY_ABSOLUTE","features":[305]},{"name":"RTL_REGISTRY_CONTROL","features":[305]},{"name":"RTL_REGISTRY_DEVICEMAP","features":[305]},{"name":"RTL_REGISTRY_HANDLE","features":[305]},{"name":"RTL_REGISTRY_MAXIMUM","features":[305]},{"name":"RTL_REGISTRY_OPTIONAL","features":[305]},{"name":"RTL_REGISTRY_SERVICES","features":[305]},{"name":"RTL_REGISTRY_USER","features":[305]},{"name":"RTL_REGISTRY_WINDOWS_NT","features":[305]},{"name":"RTL_RUN_ONCE_INIT_FN","features":[305,338]},{"name":"RTL_STACK_WALKING_MODE_FRAMES_TO_SKIP_SHIFT","features":[305]},{"name":"RandomAccess","features":[305]},{"name":"ReadAccess","features":[305]},{"name":"RealModeIrqRoutingTable","features":[305]},{"name":"RealModePCIEnumeration","features":[305]},{"name":"RealTimeWorkQueue","features":[305]},{"name":"RebuildControl","features":[305]},{"name":"RegNtCallbackObjectContextCleanup","features":[305]},{"name":"RegNtDeleteKey","features":[305]},{"name":"RegNtDeleteValueKey","features":[305]},{"name":"RegNtEnumerateKey","features":[305]},{"name":"RegNtEnumerateValueKey","features":[305]},{"name":"RegNtKeyHandleClose","features":[305]},{"name":"RegNtPostCreateKey","features":[305]},{"name":"RegNtPostCreateKeyEx","features":[305]},{"name":"RegNtPostDeleteKey","features":[305]},{"name":"RegNtPostDeleteValueKey","features":[305]},{"name":"RegNtPostEnumerateKey","features":[305]},{"name":"RegNtPostEnumerateValueKey","features":[305]},{"name":"RegNtPostFlushKey","features":[305]},{"name":"RegNtPostKeyHandleClose","features":[305]},{"name":"RegNtPostLoadKey","features":[305]},{"name":"RegNtPostOpenKey","features":[305]},{"name":"RegNtPostOpenKeyEx","features":[305]},{"name":"RegNtPostQueryKey","features":[305]},{"name":"RegNtPostQueryKeyName","features":[305]},{"name":"RegNtPostQueryKeySecurity","features":[305]},{"name":"RegNtPostQueryMultipleValueKey","features":[305]},{"name":"RegNtPostQueryValueKey","features":[305]},{"name":"RegNtPostRenameKey","features":[305]},{"name":"RegNtPostReplaceKey","features":[305]},{"name":"RegNtPostRestoreKey","features":[305]},{"name":"RegNtPostSaveKey","features":[305]},{"name":"RegNtPostSaveMergedKey","features":[305]},{"name":"RegNtPostSetInformationKey","features":[305]},{"name":"RegNtPostSetKeySecurity","features":[305]},{"name":"RegNtPostSetValueKey","features":[305]},{"name":"RegNtPostUnLoadKey","features":[305]},{"name":"RegNtPreCreateKey","features":[305]},{"name":"RegNtPreCreateKeyEx","features":[305]},{"name":"RegNtPreDeleteKey","features":[305]},{"name":"RegNtPreDeleteValueKey","features":[305]},{"name":"RegNtPreEnumerateKey","features":[305]},{"name":"RegNtPreEnumerateValueKey","features":[305]},{"name":"RegNtPreFlushKey","features":[305]},{"name":"RegNtPreKeyHandleClose","features":[305]},{"name":"RegNtPreLoadKey","features":[305]},{"name":"RegNtPreOpenKey","features":[305]},{"name":"RegNtPreOpenKeyEx","features":[305]},{"name":"RegNtPreQueryKey","features":[305]},{"name":"RegNtPreQueryKeyName","features":[305]},{"name":"RegNtPreQueryKeySecurity","features":[305]},{"name":"RegNtPreQueryMultipleValueKey","features":[305]},{"name":"RegNtPreQueryValueKey","features":[305]},{"name":"RegNtPreRenameKey","features":[305]},{"name":"RegNtPreReplaceKey","features":[305]},{"name":"RegNtPreRestoreKey","features":[305]},{"name":"RegNtPreSaveKey","features":[305]},{"name":"RegNtPreSaveMergedKey","features":[305]},{"name":"RegNtPreSetInformationKey","features":[305]},{"name":"RegNtPreSetKeySecurity","features":[305]},{"name":"RegNtPreSetValueKey","features":[305]},{"name":"RegNtPreUnLoadKey","features":[305]},{"name":"RegNtQueryKey","features":[305]},{"name":"RegNtQueryMultipleValueKey","features":[305]},{"name":"RegNtQueryValueKey","features":[305]},{"name":"RegNtRenameKey","features":[305]},{"name":"RegNtSetInformationKey","features":[305]},{"name":"RegNtSetValueKey","features":[305]},{"name":"RemovalPolicyExpectNoRemoval","features":[305]},{"name":"RemovalPolicyExpectOrderlyRemoval","features":[305]},{"name":"RemovalPolicyExpectSurpriseRemoval","features":[305]},{"name":"RemovalRelations","features":[305]},{"name":"ResourceNeverExclusive","features":[305]},{"name":"ResourceOwnedExclusive","features":[305]},{"name":"ResourceReleaseByOtherThread","features":[305]},{"name":"ResourceTypeEventBuffer","features":[305]},{"name":"ResourceTypeExtendedCounterConfiguration","features":[305]},{"name":"ResourceTypeIdenitificationTag","features":[305]},{"name":"ResourceTypeMax","features":[305]},{"name":"ResourceTypeOverflow","features":[305]},{"name":"ResourceTypeRange","features":[305]},{"name":"ResourceTypeSingle","features":[305]},{"name":"ResultNegative","features":[305]},{"name":"ResultPositive","features":[305]},{"name":"ResultZero","features":[305]},{"name":"RtlAppendUnicodeStringToString","features":[305,303]},{"name":"RtlAppendUnicodeToString","features":[305,303]},{"name":"RtlAreBitsClear","features":[305,303]},{"name":"RtlAreBitsSet","features":[305,303]},{"name":"RtlAssert","features":[305]},{"name":"RtlCheckRegistryKey","features":[305,303]},{"name":"RtlClearAllBits","features":[305]},{"name":"RtlClearBit","features":[305]},{"name":"RtlClearBits","features":[305]},{"name":"RtlCmDecodeMemIoResource","features":[305]},{"name":"RtlCmEncodeMemIoResource","features":[305,303]},{"name":"RtlCompareString","features":[305,303,309]},{"name":"RtlCompareUnicodeString","features":[305,303]},{"name":"RtlCompareUnicodeStrings","features":[305,303]},{"name":"RtlContractHashTable","features":[305,303]},{"name":"RtlCopyBitMap","features":[305]},{"name":"RtlCopyString","features":[305,309]},{"name":"RtlCopyUnicodeString","features":[305,303]},{"name":"RtlCreateHashTable","features":[305,303]},{"name":"RtlCreateHashTableEx","features":[305,303]},{"name":"RtlCreateRegistryKey","features":[305,303]},{"name":"RtlCreateSecurityDescriptor","features":[305,303,306]},{"name":"RtlDelete","features":[304,305]},{"name":"RtlDeleteElementGenericTable","features":[304,305,303,309]},{"name":"RtlDeleteElementGenericTableAvl","features":[305,303]},{"name":"RtlDeleteElementGenericTableAvlEx","features":[305]},{"name":"RtlDeleteHashTable","features":[305]},{"name":"RtlDeleteNoSplay","features":[304,305]},{"name":"RtlDeleteRegistryValue","features":[305,303]},{"name":"RtlDowncaseUnicodeChar","features":[305]},{"name":"RtlEndEnumerationHashTable","features":[305,309]},{"name":"RtlEndStrongEnumerationHashTable","features":[305,309]},{"name":"RtlEndWeakEnumerationHashTable","features":[305,309]},{"name":"RtlEnumerateEntryHashTable","features":[305,309]},{"name":"RtlEnumerateGenericTable","features":[304,305,303,309]},{"name":"RtlEnumerateGenericTableAvl","features":[305,303]},{"name":"RtlEnumerateGenericTableLikeADirectory","features":[305,303]},{"name":"RtlEnumerateGenericTableWithoutSplaying","features":[304,305,309]},{"name":"RtlEnumerateGenericTableWithoutSplayingAvl","features":[305]},{"name":"RtlEqualString","features":[305,303,309]},{"name":"RtlEqualUnicodeString","features":[305,303]},{"name":"RtlExpandHashTable","features":[305,303]},{"name":"RtlExtractBitMap","features":[305]},{"name":"RtlFindClearBits","features":[305]},{"name":"RtlFindClearBitsAndSet","features":[305]},{"name":"RtlFindClearRuns","features":[305,303]},{"name":"RtlFindClosestEncodableLength","features":[305,303]},{"name":"RtlFindFirstRunClear","features":[305]},{"name":"RtlFindLastBackwardRunClear","features":[305]},{"name":"RtlFindLeastSignificantBit","features":[305]},{"name":"RtlFindLongestRunClear","features":[305]},{"name":"RtlFindMostSignificantBit","features":[305]},{"name":"RtlFindNextForwardRunClear","features":[305]},{"name":"RtlFindSetBits","features":[305]},{"name":"RtlFindSetBitsAndClear","features":[305]},{"name":"RtlFreeUTF8String","features":[305,309]},{"name":"RtlGUIDFromString","features":[305,303]},{"name":"RtlGenerateClass5Guid","features":[305,303]},{"name":"RtlGetActiveConsoleId","features":[305]},{"name":"RtlGetCallersAddress","features":[305]},{"name":"RtlGetConsoleSessionForegroundProcessId","features":[305]},{"name":"RtlGetElementGenericTable","features":[304,305,309]},{"name":"RtlGetElementGenericTableAvl","features":[305]},{"name":"RtlGetEnabledExtendedFeatures","features":[305]},{"name":"RtlGetNextEntryHashTable","features":[305,309]},{"name":"RtlGetNtProductType","features":[305,303,309]},{"name":"RtlGetNtSystemRoot","features":[305]},{"name":"RtlGetPersistedStateLocation","features":[305,303]},{"name":"RtlGetSuiteMask","features":[305]},{"name":"RtlGetVersion","features":[305,303,333]},{"name":"RtlHashUnicodeString","features":[305,303]},{"name":"RtlInitEnumerationHashTable","features":[305,303,309]},{"name":"RtlInitStrongEnumerationHashTable","features":[305,303,309]},{"name":"RtlInitUTF8String","features":[305,309]},{"name":"RtlInitUTF8StringEx","features":[305,303,309]},{"name":"RtlInitWeakEnumerationHashTable","features":[305,303,309]},{"name":"RtlInitializeBitMap","features":[305]},{"name":"RtlInitializeGenericTable","features":[304,305,309]},{"name":"RtlInitializeGenericTableAvl","features":[305]},{"name":"RtlInsertElementGenericTable","features":[304,305,303,309]},{"name":"RtlInsertElementGenericTableAvl","features":[305,303]},{"name":"RtlInsertElementGenericTableFull","features":[304,305,303,309]},{"name":"RtlInsertElementGenericTableFullAvl","features":[305,303]},{"name":"RtlInsertEntryHashTable","features":[305,303,309]},{"name":"RtlInt64ToUnicodeString","features":[305,303]},{"name":"RtlIntegerToUnicodeString","features":[305,303]},{"name":"RtlIoDecodeMemIoResource","features":[305]},{"name":"RtlIoEncodeMemIoResource","features":[305,303]},{"name":"RtlIsApiSetImplemented","features":[305,303]},{"name":"RtlIsGenericTableEmpty","features":[304,305,303,309]},{"name":"RtlIsGenericTableEmptyAvl","features":[305,303]},{"name":"RtlIsMultiSessionSku","features":[305,303]},{"name":"RtlIsMultiUsersInSessionSku","features":[305,303]},{"name":"RtlIsNtDdiVersionAvailable","features":[305,303]},{"name":"RtlIsServicePackVersionInstalled","features":[305,303]},{"name":"RtlIsStateSeparationEnabled","features":[305,303]},{"name":"RtlIsUntrustedObject","features":[305,303]},{"name":"RtlLengthSecurityDescriptor","features":[305,306]},{"name":"RtlLookupElementGenericTable","features":[304,305,309]},{"name":"RtlLookupElementGenericTableAvl","features":[305]},{"name":"RtlLookupElementGenericTableFull","features":[304,305,309]},{"name":"RtlLookupElementGenericTableFullAvl","features":[305]},{"name":"RtlLookupEntryHashTable","features":[305,309]},{"name":"RtlLookupFirstMatchingElementGenericTableAvl","features":[305]},{"name":"RtlMapGenericMask","features":[305,306]},{"name":"RtlNormalizeSecurityDescriptor","features":[305,303,306]},{"name":"RtlNumberGenericTableElements","features":[304,305,309]},{"name":"RtlNumberGenericTableElementsAvl","features":[305]},{"name":"RtlNumberOfClearBits","features":[305]},{"name":"RtlNumberOfClearBitsInRange","features":[305]},{"name":"RtlNumberOfSetBits","features":[305]},{"name":"RtlNumberOfSetBitsInRange","features":[305]},{"name":"RtlNumberOfSetBitsUlongPtr","features":[305]},{"name":"RtlPrefetchMemoryNonTemporal","features":[305]},{"name":"RtlPrefixUnicodeString","features":[305,303]},{"name":"RtlQueryRegistryValueWithFallback","features":[305,303]},{"name":"RtlQueryRegistryValues","features":[305,303]},{"name":"RtlQueryValidationRunlevel","features":[305,303]},{"name":"RtlRealPredecessor","features":[304,305]},{"name":"RtlRealSuccessor","features":[304,305]},{"name":"RtlRemoveEntryHashTable","features":[305,303,309]},{"name":"RtlRunOnceBeginInitialize","features":[305,303,338]},{"name":"RtlRunOnceComplete","features":[305,303,338]},{"name":"RtlRunOnceExecuteOnce","features":[305,303,338]},{"name":"RtlRunOnceInitialize","features":[305,338]},{"name":"RtlSetAllBits","features":[305]},{"name":"RtlSetBit","features":[305]},{"name":"RtlSetBits","features":[305]},{"name":"RtlSetDaclSecurityDescriptor","features":[305,303,306]},{"name":"RtlSetSystemGlobalData","features":[305,303,333]},{"name":"RtlSplay","features":[304,305]},{"name":"RtlStringFromGUID","features":[305,303]},{"name":"RtlStronglyEnumerateEntryHashTable","features":[305,309]},{"name":"RtlSubtreePredecessor","features":[304,305]},{"name":"RtlSubtreeSuccessor","features":[304,305]},{"name":"RtlSuffixUnicodeString","features":[305,303]},{"name":"RtlTestBit","features":[305,303]},{"name":"RtlTimeFieldsToTime","features":[305,303]},{"name":"RtlTimeToTimeFields","features":[305]},{"name":"RtlUTF8StringToUnicodeString","features":[305,303,309]},{"name":"RtlUTF8ToUnicodeN","features":[305,303]},{"name":"RtlUnicodeStringToInt64","features":[305,303]},{"name":"RtlUnicodeStringToInteger","features":[305,303]},{"name":"RtlUnicodeStringToUTF8String","features":[305,303,309]},{"name":"RtlUnicodeToUTF8N","features":[305,303]},{"name":"RtlUpcaseUnicodeChar","features":[305]},{"name":"RtlUpcaseUnicodeString","features":[305,303]},{"name":"RtlUpperChar","features":[305]},{"name":"RtlUpperString","features":[305,309]},{"name":"RtlValidRelativeSecurityDescriptor","features":[305,303,306]},{"name":"RtlValidSecurityDescriptor","features":[305,303,306]},{"name":"RtlVerifyVersionInfo","features":[305,303,333]},{"name":"RtlVolumeDeviceToDosName","features":[305,303]},{"name":"RtlWalkFrameChain","features":[305]},{"name":"RtlWeaklyEnumerateEntryHashTable","features":[305,309]},{"name":"RtlWriteRegistryValue","features":[305,303]},{"name":"RtlxAnsiStringToUnicodeSize","features":[305,309]},{"name":"RtlxUnicodeStringToAnsiSize","features":[305,303]},{"name":"SCATTER_GATHER_ELEMENT","features":[305]},{"name":"SCATTER_GATHER_LIST","features":[305]},{"name":"SCI_NOTIFY_TYPE_GUID","features":[305]},{"name":"SDEV_IDENTIFIER_INTERFACE","features":[305]},{"name":"SDEV_IDENTIFIER_INTERFACE_VERSION","features":[305]},{"name":"SEA_NOTIFY_TYPE_GUID","features":[305]},{"name":"SEA_SECTION_GUID","features":[305]},{"name":"SECTION_INHERIT","features":[305]},{"name":"SECTION_MAP_EXECUTE","features":[305]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[305]},{"name":"SECTION_MAP_READ","features":[305]},{"name":"SECTION_MAP_WRITE","features":[305]},{"name":"SECTION_QUERY","features":[305]},{"name":"SECURE_DRIVER_INTERFACE","features":[304,305]},{"name":"SECURE_DRIVER_INTERFACE_VERSION","features":[305]},{"name":"SECURE_DRIVER_PROCESS_DEREFERENCE","features":[304,305]},{"name":"SECURE_DRIVER_PROCESS_REFERENCE","features":[304,305]},{"name":"SECURE_POOL_FLAGS_FREEABLE","features":[305]},{"name":"SECURE_POOL_FLAGS_MODIFIABLE","features":[305]},{"name":"SECURE_POOL_FLAGS_NONE","features":[305]},{"name":"SECURE_SECTION_ALLOW_PARTIAL_MDL","features":[305]},{"name":"SECURITY_CONTEXT_TRACKING_MODE","features":[305]},{"name":"SECURITY_OPERATION_CODE","features":[305]},{"name":"SEC_LARGE_PAGES","features":[305]},{"name":"SEH_VALIDATION_POLICY_DEFER","features":[305]},{"name":"SEH_VALIDATION_POLICY_OFF","features":[305]},{"name":"SEH_VALIDATION_POLICY_ON","features":[305]},{"name":"SEH_VALIDATION_POLICY_TELEMETRY","features":[305]},{"name":"SEI_NOTIFY_TYPE_GUID","features":[305]},{"name":"SEI_SECTION_GUID","features":[305]},{"name":"SEMAPHORE_QUERY_STATE","features":[305]},{"name":"SET_D3COLD_SUPPORT","features":[305,303]},{"name":"SET_VIRTUAL_DEVICE_DATA","features":[305]},{"name":"SE_ASSIGNPRIMARYTOKEN_PRIVILEGE","features":[305]},{"name":"SE_AUDIT_PRIVILEGE","features":[305]},{"name":"SE_BACKUP_PRIVILEGE","features":[305]},{"name":"SE_CHANGE_NOTIFY_PRIVILEGE","features":[305]},{"name":"SE_CREATE_GLOBAL_PRIVILEGE","features":[305]},{"name":"SE_CREATE_PAGEFILE_PRIVILEGE","features":[305]},{"name":"SE_CREATE_PERMANENT_PRIVILEGE","features":[305]},{"name":"SE_CREATE_SYMBOLIC_LINK_PRIVILEGE","features":[305]},{"name":"SE_CREATE_TOKEN_PRIVILEGE","features":[305]},{"name":"SE_DEBUG_PRIVILEGE","features":[305]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_PRIVILEGE","features":[305]},{"name":"SE_ENABLE_DELEGATION_PRIVILEGE","features":[305]},{"name":"SE_IMAGE_TYPE","features":[305]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[305,303]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_TYPE","features":[305]},{"name":"SE_IMPERSONATE_PRIVILEGE","features":[305]},{"name":"SE_INCREASE_QUOTA_PRIVILEGE","features":[305]},{"name":"SE_INC_BASE_PRIORITY_PRIVILEGE","features":[305]},{"name":"SE_INC_WORKING_SET_PRIVILEGE","features":[305]},{"name":"SE_LOAD_DRIVER_PRIVILEGE","features":[305]},{"name":"SE_LOCK_MEMORY_PRIVILEGE","features":[305]},{"name":"SE_MACHINE_ACCOUNT_PRIVILEGE","features":[305]},{"name":"SE_MANAGE_VOLUME_PRIVILEGE","features":[305]},{"name":"SE_MAX_WELL_KNOWN_PRIVILEGE","features":[305]},{"name":"SE_MIN_WELL_KNOWN_PRIVILEGE","features":[305]},{"name":"SE_PROF_SINGLE_PROCESS_PRIVILEGE","features":[305]},{"name":"SE_RELABEL_PRIVILEGE","features":[305]},{"name":"SE_REMOTE_SHUTDOWN_PRIVILEGE","features":[305]},{"name":"SE_RESTORE_PRIVILEGE","features":[305]},{"name":"SE_SECURITY_PRIVILEGE","features":[305]},{"name":"SE_SHUTDOWN_PRIVILEGE","features":[305]},{"name":"SE_SYNC_AGENT_PRIVILEGE","features":[305]},{"name":"SE_SYSTEMTIME_PRIVILEGE","features":[305]},{"name":"SE_SYSTEM_ENVIRONMENT_PRIVILEGE","features":[305]},{"name":"SE_SYSTEM_PROFILE_PRIVILEGE","features":[305]},{"name":"SE_TAKE_OWNERSHIP_PRIVILEGE","features":[305]},{"name":"SE_TCB_PRIVILEGE","features":[305]},{"name":"SE_TIME_ZONE_PRIVILEGE","features":[305]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_PRIVILEGE","features":[305]},{"name":"SE_UNDOCK_PRIVILEGE","features":[305]},{"name":"SE_UNSOLICITED_INPUT_PRIVILEGE","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_CLEAR_GLOBAL_DATA_FLAG","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_CONSOLE_BROKER_ENABLED_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_DYNAMIC_PROC_ENABLED_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_ELEVATION_ENABLED_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_ERROR_PORT_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_INSTALLER_DETECT_ENABLED_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_LKG_ENABLED_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_MULTIUSERS_IN_SESSION_SKU_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_MULTI_SESSION_SKU_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_A73_ERRATA","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_DISABLE_32BIT","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_ENABLED","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_HV_PAGE","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_LFENCE","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_MFENCE","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_RDTSCP","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_SECURE_BOOT_ENABLED_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_SET_GLOBAL_DATA_FLAG","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_STATE_SEPARATION_ENABLED_V","features":[305]},{"name":"SHARED_GLOBAL_FLAGS_VIRT_ENABLED_V","features":[305]},{"name":"SHARE_ACCESS","features":[305]},{"name":"SHORT_LEAST_SIGNIFICANT_BIT","features":[305]},{"name":"SHORT_MOST_SIGNIFICANT_BIT","features":[305]},{"name":"SIGNAL_REG_VALUE","features":[305]},{"name":"SILO_CONTEXT_CLEANUP_CALLBACK","features":[305]},{"name":"SILO_MONITOR_CREATE_CALLBACK","features":[304,305,303]},{"name":"SILO_MONITOR_REGISTRATION","features":[304,305,303]},{"name":"SILO_MONITOR_REGISTRATION_VERSION","features":[305]},{"name":"SILO_MONITOR_TERMINATE_CALLBACK","features":[304,305]},{"name":"SINGLE_GROUP_LEGACY_API","features":[305]},{"name":"SL_ALLOW_RAW_MOUNT","features":[305]},{"name":"SL_BYPASS_ACCESS_CHECK","features":[305]},{"name":"SL_BYPASS_IO","features":[305]},{"name":"SL_CASE_SENSITIVE","features":[305]},{"name":"SL_ERROR_RETURNED","features":[305]},{"name":"SL_EXCLUSIVE_LOCK","features":[305]},{"name":"SL_FAIL_IMMEDIATELY","features":[305]},{"name":"SL_FORCE_ACCESS_CHECK","features":[305]},{"name":"SL_FORCE_ASYNCHRONOUS","features":[305]},{"name":"SL_FORCE_DIRECT_WRITE","features":[305]},{"name":"SL_FT_SEQUENTIAL_WRITE","features":[305]},{"name":"SL_IGNORE_READONLY_ATTRIBUTE","features":[305]},{"name":"SL_INDEX_SPECIFIED","features":[305]},{"name":"SL_INFO_FORCE_ACCESS_CHECK","features":[305]},{"name":"SL_INFO_IGNORE_READONLY_ATTRIBUTE","features":[305]},{"name":"SL_INVOKE_ON_CANCEL","features":[305]},{"name":"SL_INVOKE_ON_ERROR","features":[305]},{"name":"SL_INVOKE_ON_SUCCESS","features":[305]},{"name":"SL_KEY_SPECIFIED","features":[305]},{"name":"SL_NO_CURSOR_UPDATE","features":[305]},{"name":"SL_OPEN_PAGING_FILE","features":[305]},{"name":"SL_OPEN_TARGET_DIRECTORY","features":[305]},{"name":"SL_OVERRIDE_VERIFY_VOLUME","features":[305]},{"name":"SL_PENDING_RETURNED","features":[305]},{"name":"SL_PERSISTENT_MEMORY_FIXED_MAPPING","features":[305]},{"name":"SL_QUERY_DIRECTORY_MASK","features":[305]},{"name":"SL_READ_ACCESS_GRANTED","features":[305]},{"name":"SL_REALTIME_STREAM","features":[305]},{"name":"SL_RESTART_SCAN","features":[305]},{"name":"SL_RETURN_ON_DISK_ENTRIES_ONLY","features":[305]},{"name":"SL_RETURN_SINGLE_ENTRY","features":[305]},{"name":"SL_STOP_ON_SYMLINK","features":[305]},{"name":"SL_WATCH_TREE","features":[305]},{"name":"SL_WRITE_ACCESS_GRANTED","features":[305]},{"name":"SL_WRITE_THROUGH","features":[305]},{"name":"SOC_SUBSYSTEM_FAILURE_DETAILS","features":[305]},{"name":"SOC_SUBSYSTEM_TYPE","features":[305]},{"name":"SOC_SUBSYS_AUDIO_DSP","features":[305]},{"name":"SOC_SUBSYS_COMPUTE_DSP","features":[305]},{"name":"SOC_SUBSYS_SECURE_PROC","features":[305]},{"name":"SOC_SUBSYS_SENSORS","features":[305]},{"name":"SOC_SUBSYS_VENDOR_DEFINED","features":[305]},{"name":"SOC_SUBSYS_WIRELESS_MODEM","features":[305]},{"name":"SOC_SUBSYS_WIRELSS_CONNECTIVITY","features":[305]},{"name":"SSINFO_FLAGS_ALIGNED_DEVICE","features":[305]},{"name":"SSINFO_FLAGS_BYTE_ADDRESSABLE","features":[305]},{"name":"SSINFO_FLAGS_NO_SEEK_PENALTY","features":[305]},{"name":"SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[305]},{"name":"SSINFO_FLAGS_TRIM_ENABLED","features":[305]},{"name":"SSINFO_OFFSET_UNKNOWN","features":[305]},{"name":"STATE_LOCATION_TYPE","features":[305]},{"name":"SUBSYSTEM_INFORMATION_TYPE","features":[305]},{"name":"SYMBOLIC_LINK_QUERY","features":[305]},{"name":"SYMBOLIC_LINK_SET","features":[305]},{"name":"SYSTEM_CALL_INT_2E","features":[305]},{"name":"SYSTEM_CALL_SYSCALL","features":[305]},{"name":"SYSTEM_FIRMWARE_TABLE_ACTION","features":[305]},{"name":"SYSTEM_FIRMWARE_TABLE_HANDLER","features":[305,303]},{"name":"SYSTEM_FIRMWARE_TABLE_INFORMATION","features":[305]},{"name":"SYSTEM_POWER_CONDITION","features":[305]},{"name":"SYSTEM_POWER_STATE_CONTEXT","features":[305]},{"name":"ScsiAdapter","features":[305]},{"name":"SeAccessCheck","features":[304,305,303,306]},{"name":"SeAssignSecurity","features":[304,305,303,306]},{"name":"SeAssignSecurityEx","features":[304,305,303,306]},{"name":"SeCaptureSubjectContext","features":[304,305,306]},{"name":"SeComputeAutoInheritByObjectType","features":[305,306]},{"name":"SeDeassignSecurity","features":[305,303,306]},{"name":"SeEtwWriteKMCveEvent","features":[305,303]},{"name":"SeImageTypeDriver","features":[305]},{"name":"SeImageTypeDynamicCodeFile","features":[305]},{"name":"SeImageTypeElamDriver","features":[305]},{"name":"SeImageTypeMax","features":[305]},{"name":"SeImageTypePlatformSecureFile","features":[305]},{"name":"SeImageVerificationCallbackInformational","features":[305]},{"name":"SeLockSubjectContext","features":[304,305,306]},{"name":"SeRegisterImageVerificationCallback","features":[305,303]},{"name":"SeReleaseSubjectContext","features":[304,305,306]},{"name":"SeReportSecurityEvent","features":[305,303,324]},{"name":"SeSetAuditParameter","features":[305,303,324]},{"name":"SeSinglePrivilegeCheck","features":[305,303]},{"name":"SeUnlockSubjectContext","features":[304,305,306]},{"name":"SeUnregisterImageVerificationCallback","features":[305]},{"name":"SeValidSecurityDescriptor","features":[305,303,306]},{"name":"SecondaryCache","features":[305]},{"name":"SecondaryDcache","features":[305]},{"name":"SecondaryIcache","features":[305]},{"name":"SequentialAccess","features":[305]},{"name":"SerialController","features":[305]},{"name":"SetSecurityDescriptor","features":[305]},{"name":"SgiInternalConfiguration","features":[305]},{"name":"SharedInterruptTime","features":[305]},{"name":"SharedSystemTime","features":[305]},{"name":"SharedTickCount","features":[305]},{"name":"SingleBusRelations","features":[305]},{"name":"SlotEmpty","features":[305]},{"name":"StandardDesign","features":[305]},{"name":"StopCompletion","features":[305]},{"name":"SubsystemInformationTypeWSL","features":[305]},{"name":"SubsystemInformationTypeWin32","features":[305]},{"name":"SuperCriticalWorkQueue","features":[305]},{"name":"Suspended","features":[305]},{"name":"SystemFirmwareTable_Enumerate","features":[305]},{"name":"SystemFirmwareTable_Get","features":[305]},{"name":"SystemMemory","features":[305]},{"name":"SystemMemoryPartitionDedicatedMemoryInformation","features":[305]},{"name":"SystemMemoryPartitionInformation","features":[305]},{"name":"SystemMemoryPartitionOpenDedicatedMemory","features":[305]},{"name":"SystemPowerState","features":[305]},{"name":"TABLE_SEARCH_RESULT","features":[305]},{"name":"TARGET_DEVICE_REMOVAL_NOTIFICATION","features":[304,307,305,303,306,308,309,310]},{"name":"THREAD_ALERT","features":[305]},{"name":"THREAD_CSWITCH_PMU_DISABLE","features":[305]},{"name":"THREAD_CSWITCH_PMU_ENABLE","features":[305]},{"name":"THREAD_GET_CONTEXT","features":[305]},{"name":"THREAD_WAIT_OBJECTS","features":[305]},{"name":"TIMER_EXPIRED_INDEX_BITS","features":[305]},{"name":"TIMER_PROCESSOR_INDEX_BITS","features":[305]},{"name":"TIMER_SET_COALESCABLE_TIMER_INFO","features":[305,303]},{"name":"TIMER_SET_INFORMATION_CLASS","features":[305]},{"name":"TIMER_TOLERABLE_DELAY_BITS","features":[305]},{"name":"TIME_FIELDS","features":[305]},{"name":"TRACE_INFORMATION_CLASS","features":[305]},{"name":"TRANSLATE_BUS_ADDRESS","features":[305,303]},{"name":"TRANSLATOR_INTERFACE","features":[304,307,305,303,306,308,309,310]},{"name":"TREE_CONNECT_NO_CLIENT_BUFFERING","features":[305]},{"name":"TREE_CONNECT_WRITE_THROUGH","features":[305]},{"name":"TXF_MINIVERSION_DEFAULT_VIEW","features":[305]},{"name":"TXN_PARAMETER_BLOCK","features":[305]},{"name":"TableEmptyTree","features":[305]},{"name":"TableFoundNode","features":[305]},{"name":"TableInsertAsLeft","features":[305]},{"name":"TableInsertAsRight","features":[305]},{"name":"TapeController","features":[305]},{"name":"TapePeripheral","features":[305]},{"name":"TargetDeviceRelation","features":[305]},{"name":"TcAdapter","features":[305]},{"name":"TerminalPeripheral","features":[305]},{"name":"TimerSetCoalescableTimer","features":[305]},{"name":"TlbMatchConflict","features":[305]},{"name":"TmCommitComplete","features":[304,305,303]},{"name":"TmCommitEnlistment","features":[304,305,303]},{"name":"TmCommitTransaction","features":[304,305,303]},{"name":"TmCreateEnlistment","features":[304,305,303]},{"name":"TmDereferenceEnlistmentKey","features":[304,305,303]},{"name":"TmEnableCallbacks","features":[304,305,303]},{"name":"TmGetTransactionId","features":[304,305]},{"name":"TmInitializeTransactionManager","features":[305,303]},{"name":"TmIsTransactionActive","features":[304,305,303]},{"name":"TmPrePrepareComplete","features":[304,305,303]},{"name":"TmPrePrepareEnlistment","features":[304,305,303]},{"name":"TmPrepareComplete","features":[304,305,303]},{"name":"TmPrepareEnlistment","features":[304,305,303]},{"name":"TmPropagationComplete","features":[304,305,303]},{"name":"TmPropagationFailed","features":[304,305,303]},{"name":"TmReadOnlyEnlistment","features":[304,305,303]},{"name":"TmRecoverEnlistment","features":[304,305,303]},{"name":"TmRecoverResourceManager","features":[304,305,303]},{"name":"TmRecoverTransactionManager","features":[304,305,303]},{"name":"TmReferenceEnlistmentKey","features":[304,305,303]},{"name":"TmRenameTransactionManager","features":[305,303]},{"name":"TmRequestOutcomeEnlistment","features":[304,305,303]},{"name":"TmRollbackComplete","features":[304,305,303]},{"name":"TmRollbackEnlistment","features":[304,305,303]},{"name":"TmRollbackTransaction","features":[304,305,303]},{"name":"TmSinglePhaseReject","features":[304,305,303]},{"name":"TraceEnableFlagsClass","features":[305]},{"name":"TraceEnableLevelClass","features":[305]},{"name":"TraceHandleByNameClass","features":[305]},{"name":"TraceHandleClass","features":[305]},{"name":"TraceIdClass","features":[305]},{"name":"TraceInformationClassReserved1","features":[305]},{"name":"TraceInformationClassReserved2","features":[305]},{"name":"TraceSessionSettingsClass","features":[305]},{"name":"TranslateChildToParent","features":[305]},{"name":"TranslateParentToChild","features":[305]},{"name":"TranslationFault","features":[305]},{"name":"TransportRelations","features":[305]},{"name":"TurboChannel","features":[305]},{"name":"TypeA","features":[305]},{"name":"TypeB","features":[305]},{"name":"TypeC","features":[305]},{"name":"TypeF","features":[305]},{"name":"UADDRESS_BASE","features":[305]},{"name":"UnsupportedUpstreamTransaction","features":[305]},{"name":"UserMode","features":[305]},{"name":"UserNotPresent","features":[305]},{"name":"UserPresent","features":[305]},{"name":"UserRequest","features":[305]},{"name":"UserUnknown","features":[305]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES1","features":[305]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES2","features":[305]},{"name":"VIRTUAL_CHANNEL_CONTROL","features":[305]},{"name":"VIRTUAL_CHANNEL_STATUS","features":[305]},{"name":"VIRTUAL_RESOURCE","features":[305]},{"name":"VIRTUAL_RESOURCE_CAPABILITY","features":[305]},{"name":"VIRTUAL_RESOURCE_CONTROL","features":[305]},{"name":"VIRTUAL_RESOURCE_STATUS","features":[305]},{"name":"VMEBus","features":[305]},{"name":"VMEConfiguration","features":[305]},{"name":"VM_COUNTERS","features":[305]},{"name":"VM_COUNTERS_EX","features":[305]},{"name":"VM_COUNTERS_EX2","features":[305]},{"name":"VPB_DIRECT_WRITES_ALLOWED","features":[305]},{"name":"VPB_DISMOUNTING","features":[305]},{"name":"VPB_FLAGS_BYPASSIO_BLOCKED","features":[305]},{"name":"VPB_LOCKED","features":[305]},{"name":"VPB_MOUNTED","features":[305]},{"name":"VPB_PERSISTENT","features":[305]},{"name":"VPB_RAW_MOUNT","features":[305]},{"name":"VPB_REMOVE_PENDING","features":[305]},{"name":"ViewShare","features":[305]},{"name":"ViewUnmap","features":[305]},{"name":"Vmcs","features":[305]},{"name":"VslCreateSecureSection","features":[304,305,303]},{"name":"VslDeleteSecureSection","features":[305,303]},{"name":"WAIT_CONTEXT_BLOCK","features":[304,307,305,303,306,308,309,310]},{"name":"WCS_RAS_REGISTER_NAME_MAX_LENGTH","features":[305]},{"name":"WDM_MAJORVERSION","features":[305]},{"name":"WDM_MINORVERSION","features":[305]},{"name":"WHEA128A","features":[305]},{"name":"WHEAP_ACPI_TIMEOUT_EVENT","features":[305]},{"name":"WHEAP_ADD_REMOVE_ERROR_SOURCE_EVENT","features":[305,303,331]},{"name":"WHEAP_ATTEMPT_RECOVERY_EVENT","features":[305,303]},{"name":"WHEAP_BAD_HEST_NOTIFY_DATA_EVENT","features":[305,331]},{"name":"WHEAP_CLEARED_POISON_EVENT","features":[305]},{"name":"WHEAP_CMCI_IMPLEMENTED_EVENT","features":[305,303]},{"name":"WHEAP_CMCI_INITERR_EVENT","features":[305]},{"name":"WHEAP_CMCI_RESTART_EVENT","features":[305]},{"name":"WHEAP_CREATE_GENERIC_RECORD_EVENT","features":[305,303]},{"name":"WHEAP_DEFERRED_EVENT","features":[305,309]},{"name":"WHEAP_DEVICE_DRV_EVENT","features":[305]},{"name":"WHEAP_DPC_ERROR_EVENT","features":[305]},{"name":"WHEAP_DPC_ERROR_EVENT_TYPE","features":[305]},{"name":"WHEAP_DROPPED_CORRECTED_ERROR_EVENT","features":[305,331]},{"name":"WHEAP_EDPC_ENABLED_EVENT","features":[305,303]},{"name":"WHEAP_ERROR_CLEARED_EVENT","features":[305]},{"name":"WHEAP_ERROR_RECORD_EVENT","features":[305]},{"name":"WHEAP_ERR_SRC_ARRAY_INVALID_EVENT","features":[305]},{"name":"WHEAP_ERR_SRC_INVALID_EVENT","features":[305,303,331]},{"name":"WHEAP_FOUND_ERROR_IN_BANK_EVENT","features":[305]},{"name":"WHEAP_GENERIC_ERR_MEM_MAP_EVENT","features":[305]},{"name":"WHEAP_OSC_IMPLEMENTED","features":[305,303]},{"name":"WHEAP_PCIE_CONFIG_INFO","features":[305]},{"name":"WHEAP_PCIE_OVERRIDE_INFO","features":[305]},{"name":"WHEAP_PCIE_READ_OVERRIDES_ERR","features":[305,303]},{"name":"WHEAP_PFA_MEMORY_OFFLINED","features":[305,303]},{"name":"WHEAP_PFA_MEMORY_POLICY","features":[305,303]},{"name":"WHEAP_PFA_MEMORY_REMOVE_MONITOR","features":[305]},{"name":"WHEAP_PFA_OFFLINE_DECISION_TYPE","features":[305]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_CORRUPT","features":[305]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_FULL_EVENT","features":[305]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_UEFI_VAR_FAILED","features":[305]},{"name":"WHEAP_PLUGIN_PFA_EVENT","features":[305,303]},{"name":"WHEAP_PROCESS_EINJ_EVENT","features":[305,303]},{"name":"WHEAP_PROCESS_HEST_EVENT","features":[305,303]},{"name":"WHEAP_PSHED_INJECT_ERROR","features":[305,303]},{"name":"WHEAP_PSHED_PLUGIN_REGISTER","features":[305,303]},{"name":"WHEAP_ROW_FAILURE_EVENT","features":[305]},{"name":"WHEAP_SPURIOUS_AER_EVENT","features":[305]},{"name":"WHEAP_STARTED_REPORT_HW_ERROR","features":[305,331]},{"name":"WHEAP_STUCK_ERROR_EVENT","features":[305]},{"name":"WHEA_ACPI_HEADER","features":[305]},{"name":"WHEA_AMD_EXTENDED_REGISTERS","features":[305]},{"name":"WHEA_AMD_EXT_REG_NUM","features":[305]},{"name":"WHEA_ARMV8_AARCH32_GPRS","features":[305]},{"name":"WHEA_ARMV8_AARCH64_EL3_CSR","features":[305]},{"name":"WHEA_ARMV8_AARCH64_GPRS","features":[305]},{"name":"WHEA_ARM_AARCH32_EL1_CSR","features":[305]},{"name":"WHEA_ARM_AARCH32_EL2_CSR","features":[305]},{"name":"WHEA_ARM_AARCH32_SECURE_CSR","features":[305]},{"name":"WHEA_ARM_AARCH64_EL1_CSR","features":[305]},{"name":"WHEA_ARM_AARCH64_EL2_CSR","features":[305]},{"name":"WHEA_ARM_BUS_ERROR","features":[305]},{"name":"WHEA_ARM_BUS_ERROR_VALID_BITS","features":[305]},{"name":"WHEA_ARM_CACHE_ERROR","features":[305]},{"name":"WHEA_ARM_CACHE_ERROR_VALID_BITS","features":[305]},{"name":"WHEA_ARM_MISC_CSR","features":[305]},{"name":"WHEA_ARM_PROCESSOR_ERROR","features":[305]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER","features":[305]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER_FLAGS","features":[305]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION","features":[305]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION_VALID_BITS","features":[305]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION","features":[305]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION_VALID_BITS","features":[305]},{"name":"WHEA_ARM_TLB_ERROR","features":[305]},{"name":"WHEA_ARM_TLB_ERROR_VALID_BITS","features":[305]},{"name":"WHEA_AZCC_ROOT_BUS_ERR_EVENT","features":[305,303]},{"name":"WHEA_AZCC_ROOT_BUS_LIST_EVENT","features":[305]},{"name":"WHEA_AZCC_SET_POISON_EVENT","features":[305,303]},{"name":"WHEA_BUGCHECK_RECOVERY_LOG_TYPE","features":[305]},{"name":"WHEA_BUSCHECK_GUID","features":[305]},{"name":"WHEA_CACHECHECK_GUID","features":[305]},{"name":"WHEA_CPU_VENDOR","features":[305]},{"name":"WHEA_DEVICE_ERROR_SUMMARY_GUID","features":[305]},{"name":"WHEA_DPC_CAPABILITY_SECTION_GUID","features":[305]},{"name":"WHEA_ERROR_INJECTION_CAPABILITIES","features":[305]},{"name":"WHEA_ERROR_LOG_ENTRY_VERSION","features":[305]},{"name":"WHEA_ERROR_PACKET_DATA_FORMAT","features":[305]},{"name":"WHEA_ERROR_PACKET_FLAGS","features":[305]},{"name":"WHEA_ERROR_PACKET_SECTION_GUID","features":[305]},{"name":"WHEA_ERROR_PACKET_V1","features":[305,331]},{"name":"WHEA_ERROR_PACKET_V1_VERSION","features":[305]},{"name":"WHEA_ERROR_PACKET_V2","features":[305,331]},{"name":"WHEA_ERROR_PACKET_V2_VERSION","features":[305]},{"name":"WHEA_ERROR_PACKET_VERSION","features":[305]},{"name":"WHEA_ERROR_PKT_VERSION","features":[305]},{"name":"WHEA_ERROR_RECORD","features":[305]},{"name":"WHEA_ERROR_RECORD_FLAGS_DEVICE_DRIVER","features":[305]},{"name":"WHEA_ERROR_RECORD_FLAGS_PREVIOUSERROR","features":[305]},{"name":"WHEA_ERROR_RECORD_FLAGS_RECOVERED","features":[305]},{"name":"WHEA_ERROR_RECORD_FLAGS_SIMULATED","features":[305]},{"name":"WHEA_ERROR_RECORD_HEADER","features":[305]},{"name":"WHEA_ERROR_RECORD_HEADER_FLAGS","features":[305]},{"name":"WHEA_ERROR_RECORD_HEADER_VALIDBITS","features":[305]},{"name":"WHEA_ERROR_RECORD_REVISION","features":[305]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR","features":[305]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_FLAGS","features":[305]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_REVISION","features":[305]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS","features":[305]},{"name":"WHEA_ERROR_RECORD_SIGNATURE_END","features":[305]},{"name":"WHEA_ERROR_RECORD_VALID_PARTITIONID","features":[305]},{"name":"WHEA_ERROR_RECORD_VALID_PLATFORMID","features":[305]},{"name":"WHEA_ERROR_RECORD_VALID_TIMESTAMP","features":[305]},{"name":"WHEA_ERROR_RECOVERY_INFO_SECTION","features":[305,303]},{"name":"WHEA_ERROR_SEVERITY","features":[305]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION","features":[305,303]},{"name":"WHEA_ERROR_SOURCE_CORRECT","features":[305,303]},{"name":"WHEA_ERROR_SOURCE_CREATE_RECORD","features":[305,303]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE","features":[305,303]},{"name":"WHEA_ERROR_SOURCE_OVERRIDE_SETTINGS","features":[305,331]},{"name":"WHEA_ERROR_SOURCE_RECOVER","features":[305,303]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE","features":[305]},{"name":"WHEA_ERROR_STATUS","features":[305]},{"name":"WHEA_ERROR_TEXT_LEN","features":[305]},{"name":"WHEA_ERROR_TYPE","features":[305]},{"name":"WHEA_ERR_SRC_OVERRIDE_FLAG","features":[305]},{"name":"WHEA_ETW_OVERFLOW_EVENT","features":[305]},{"name":"WHEA_EVENT_LOG_ENTRY","features":[305]},{"name":"WHEA_EVENT_LOG_ENTRY_FLAGS","features":[305]},{"name":"WHEA_EVENT_LOG_ENTRY_HEADER","features":[305]},{"name":"WHEA_EVENT_LOG_ENTRY_ID","features":[305]},{"name":"WHEA_EVENT_LOG_ENTRY_TYPE","features":[305]},{"name":"WHEA_FAILED_ADD_DEFECT_LIST_EVENT","features":[305]},{"name":"WHEA_FIRMWARE_ERROR_RECORD_REFERENCE","features":[305]},{"name":"WHEA_FIRMWARE_RECORD_TYPE_IPFSAL","features":[305]},{"name":"WHEA_GENERIC_ENTRY_TEXT_LEN","features":[305]},{"name":"WHEA_GENERIC_ENTRY_V2_VERSION","features":[305]},{"name":"WHEA_GENERIC_ENTRY_VERSION","features":[305]},{"name":"WHEA_GENERIC_ERROR","features":[305]},{"name":"WHEA_GENERIC_ERROR_BLOCKSTATUS","features":[305]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V1","features":[305]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V2","features":[305]},{"name":"WHEA_INVALID_ERR_SRC_ID","features":[305]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAGS","features":[305]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_NOTIFYALL","features":[305]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PAGEOFFLINED","features":[305]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PLATFORMDIRECTED","features":[305]},{"name":"WHEA_MAX_LOG_DATA_LEN","features":[305]},{"name":"WHEA_MEMERRTYPE_INVALIDADDRESS","features":[305]},{"name":"WHEA_MEMERRTYPE_MASTERABORT","features":[305]},{"name":"WHEA_MEMERRTYPE_MEMORYSPARING","features":[305]},{"name":"WHEA_MEMERRTYPE_MIRRORBROKEN","features":[305]},{"name":"WHEA_MEMERRTYPE_MULTIBITECC","features":[305]},{"name":"WHEA_MEMERRTYPE_MULTISYMCHIPKILL","features":[305]},{"name":"WHEA_MEMERRTYPE_NOERROR","features":[305]},{"name":"WHEA_MEMERRTYPE_PARITYERROR","features":[305]},{"name":"WHEA_MEMERRTYPE_SINGLEBITECC","features":[305]},{"name":"WHEA_MEMERRTYPE_SINGLESYMCHIPKILL","features":[305]},{"name":"WHEA_MEMERRTYPE_TARGETABORT","features":[305]},{"name":"WHEA_MEMERRTYPE_UNKNOWN","features":[305]},{"name":"WHEA_MEMERRTYPE_WATCHDOGTIMEOUT","features":[305]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_DATA","features":[305]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_HEADER","features":[305]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION","features":[305]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_MEMORY_ERROR_SECTION","features":[305]},{"name":"WHEA_MEMORY_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_MEMORY_THROTTLE_SUMMARY_FAILED_EVENT","features":[305,303]},{"name":"WHEA_MSCHECK_GUID","features":[305]},{"name":"WHEA_MSR_DUMP_SECTION","features":[305]},{"name":"WHEA_NMI_ERROR_SECTION","features":[305]},{"name":"WHEA_NMI_ERROR_SECTION_FLAGS","features":[305]},{"name":"WHEA_OFFLINE_DONE_EVENT","features":[305]},{"name":"WHEA_PACKET_LOG_DATA","features":[305]},{"name":"WHEA_PCIEXPRESS_BRIDGE_CONTROL_STATUS","features":[305]},{"name":"WHEA_PCIEXPRESS_COMMAND_STATUS","features":[305]},{"name":"WHEA_PCIEXPRESS_DEVICE_ID","features":[305]},{"name":"WHEA_PCIEXPRESS_DEVICE_TYPE","features":[305]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION","features":[305]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_PCIEXPRESS_VERSION","features":[305]},{"name":"WHEA_PCIE_ADDRESS","features":[305]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES","features":[305]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES_VALIDBITS","features":[305]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION","features":[305]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_COUNT_SIZE","features":[305]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_HEADER","features":[305]},{"name":"WHEA_PCIXBUS_COMMAND","features":[305]},{"name":"WHEA_PCIXBUS_ERROR_SECTION","features":[305]},{"name":"WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_PCIXBUS_ID","features":[305]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION","features":[305]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_PCIXDEVICE_ID","features":[305]},{"name":"WHEA_PCIXDEVICE_REGISTER_PAIR","features":[305]},{"name":"WHEA_PCI_RECOVERY_SECTION","features":[305,303]},{"name":"WHEA_PCI_RECOVERY_SIGNAL","features":[305]},{"name":"WHEA_PCI_RECOVERY_STATUS","features":[305]},{"name":"WHEA_PERSISTENCE_INFO","features":[305]},{"name":"WHEA_PFA_REMOVE_TRIGGER","features":[305]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V1","features":[305]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V2","features":[305]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_VERSION","features":[305]},{"name":"WHEA_PMEM_ERROR_SECTION","features":[305]},{"name":"WHEA_PMEM_ERROR_SECTION_LOCATION_INFO_SIZE","features":[305]},{"name":"WHEA_PMEM_ERROR_SECTION_MAX_PAGES","features":[305]},{"name":"WHEA_PMEM_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_PMEM_PAGE_RANGE","features":[305]},{"name":"WHEA_PROCESSOR_FAMILY_INFO","features":[305]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION","features":[305]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_PSHED_PI_CPU_BUSES_INIT_FAILED_EVENT","features":[305,303]},{"name":"WHEA_PSHED_PI_TRACE_EVENT","features":[305]},{"name":"WHEA_PSHED_PLUGIN_CALLBACKS","features":[305,303,331]},{"name":"WHEA_PSHED_PLUGIN_DIMM_MISMATCH","features":[305]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_ERRORS","features":[305]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_FAILED_EVENT","features":[305]},{"name":"WHEA_PSHED_PLUGIN_HEARTBEAT","features":[305]},{"name":"WHEA_PSHED_PLUGIN_INIT_FAILED_EVENT","features":[305,303]},{"name":"WHEA_PSHED_PLUGIN_LOAD_EVENT","features":[305]},{"name":"WHEA_PSHED_PLUGIN_PLATFORM_SUPPORT_EVENT","features":[305,303]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V1","features":[305,303,331]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V2","features":[305,303,331]},{"name":"WHEA_PSHED_PLUGIN_UNLOAD_EVENT","features":[305]},{"name":"WHEA_RAW_DATA_FORMAT","features":[305]},{"name":"WHEA_RECORD_CREATOR_GUID","features":[305]},{"name":"WHEA_RECOVERY_ACTION","features":[305]},{"name":"WHEA_RECOVERY_CONTEXT","features":[305,303]},{"name":"WHEA_RECOVERY_CONTEXT_ERROR_TYPE","features":[305]},{"name":"WHEA_RECOVERY_FAILURE_REASON","features":[305]},{"name":"WHEA_RECOVERY_TYPE","features":[305]},{"name":"WHEA_REGISTER_KEY_NOTIFICATION_FAILED_EVENT","features":[305]},{"name":"WHEA_REPORT_HW_ERROR_DEVICE_DRIVER_FLAGS","features":[305]},{"name":"WHEA_REVISION","features":[305]},{"name":"WHEA_SEA_SECTION","features":[305,303]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_CONTAINMENTWRN","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_FRU_TEXT_BY_PLUGIN","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_LATENTERROR","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PRIMARY","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PROPAGATED","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESET","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESOURCENA","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_THRESHOLDEXCEEDED","features":[305]},{"name":"WHEA_SECTION_DESCRIPTOR_REVISION","features":[305]},{"name":"WHEA_SEI_SECTION","features":[305]},{"name":"WHEA_SEL_BUGCHECK_PROGRESS","features":[305]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_MULTIPLE_BUGCHECK_EVENT","features":[305,303]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_EVENT","features":[305,303]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_VERSION","features":[305]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE2_EVENT","features":[305,303]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_START_EVENT","features":[305]},{"name":"WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[305,303]},{"name":"WHEA_SRAR_DETAIL_EVENT","features":[305,303]},{"name":"WHEA_SRAS_TABLE_ENTRIES_EVENT","features":[305]},{"name":"WHEA_SRAS_TABLE_ERROR","features":[305]},{"name":"WHEA_SRAS_TABLE_NOT_FOUND","features":[305]},{"name":"WHEA_THROTTLE_ADD_ERR_SRC_FAILED_EVENT","features":[305]},{"name":"WHEA_THROTTLE_MEMORY_ADD_OR_REMOVE_EVENT","features":[305]},{"name":"WHEA_THROTTLE_PCIE_ADD_EVENT","features":[305,303]},{"name":"WHEA_THROTTLE_PCIE_REMOVE_EVENT","features":[305]},{"name":"WHEA_THROTTLE_REGISTRY_CORRUPT_EVENT","features":[305]},{"name":"WHEA_THROTTLE_REG_DATA_IGNORED_EVENT","features":[305]},{"name":"WHEA_THROTTLE_TYPE","features":[305]},{"name":"WHEA_TIMESTAMP","features":[305]},{"name":"WHEA_TLBCHECK_GUID","features":[305]},{"name":"WHEA_WRITE_FLAG_DUMMY","features":[305]},{"name":"WHEA_X64_REGISTER_STATE","features":[305]},{"name":"WHEA_X86_REGISTER_STATE","features":[305]},{"name":"WHEA_XPF_BUS_CHECK","features":[305]},{"name":"WHEA_XPF_CACHE_CHECK","features":[305]},{"name":"WHEA_XPF_CONTEXT_INFO","features":[305]},{"name":"WHEA_XPF_MCA_EXTREG_MAX_COUNT","features":[305]},{"name":"WHEA_XPF_MCA_SECTION","features":[305,303]},{"name":"WHEA_XPF_MCA_SECTION_VERSION","features":[305]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_2","features":[305]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_3","features":[305]},{"name":"WHEA_XPF_MS_CHECK","features":[305]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION","features":[305]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS","features":[305]},{"name":"WHEA_XPF_PROCINFO","features":[305]},{"name":"WHEA_XPF_PROCINFO_VALIDBITS","features":[305]},{"name":"WHEA_XPF_TLB_CHECK","features":[305]},{"name":"WMIREGISTER","features":[305]},{"name":"WMIREG_ACTION_BLOCK_IRPS","features":[305]},{"name":"WMIREG_ACTION_DEREGISTER","features":[305]},{"name":"WMIREG_ACTION_REGISTER","features":[305]},{"name":"WMIREG_ACTION_REREGISTER","features":[305]},{"name":"WMIREG_ACTION_UPDATE_GUIDS","features":[305]},{"name":"WMIUPDATE","features":[305]},{"name":"WMI_NOTIFICATION_CALLBACK","features":[305]},{"name":"WORKER_THREAD_ROUTINE","features":[305]},{"name":"WORK_QUEUE_TYPE","features":[305]},{"name":"WdfNotifyRoutinesClass","features":[305]},{"name":"WheaAddErrorSource","features":[305,303,331]},{"name":"WheaAddErrorSourceDeviceDriver","features":[305,303,331]},{"name":"WheaAddErrorSourceDeviceDriverV1","features":[305,303,331]},{"name":"WheaAddHwErrorReportSectionDeviceDriver","features":[305,303,331]},{"name":"WheaConfigureErrorSource","features":[305,303,331]},{"name":"WheaCpuVendorAmd","features":[305]},{"name":"WheaCpuVendorIntel","features":[305]},{"name":"WheaCpuVendorOther","features":[305]},{"name":"WheaCreateHwErrorReportDeviceDriver","features":[304,307,305,303,306,308,309,310]},{"name":"WheaDataFormatGeneric","features":[305]},{"name":"WheaDataFormatIPFSalRecord","features":[305]},{"name":"WheaDataFormatMax","features":[305]},{"name":"WheaDataFormatMemory","features":[305]},{"name":"WheaDataFormatNMIPort","features":[305]},{"name":"WheaDataFormatPCIExpress","features":[305]},{"name":"WheaDataFormatPCIXBus","features":[305]},{"name":"WheaDataFormatPCIXDevice","features":[305]},{"name":"WheaDataFormatXPFMCA","features":[305]},{"name":"WheaErrSevCorrected","features":[305]},{"name":"WheaErrSevFatal","features":[305]},{"name":"WheaErrSevInformational","features":[305]},{"name":"WheaErrSevRecoverable","features":[305]},{"name":"WheaErrTypeGeneric","features":[305]},{"name":"WheaErrTypeMemory","features":[305]},{"name":"WheaErrTypeNMI","features":[305]},{"name":"WheaErrTypePCIExpress","features":[305]},{"name":"WheaErrTypePCIXBus","features":[305]},{"name":"WheaErrTypePCIXDevice","features":[305]},{"name":"WheaErrTypePmem","features":[305]},{"name":"WheaErrTypeProcessor","features":[305]},{"name":"WheaErrorSourceGetState","features":[305,331]},{"name":"WheaEventBugCheckRecoveryEntry","features":[305]},{"name":"WheaEventBugCheckRecoveryMax","features":[305]},{"name":"WheaEventBugCheckRecoveryReturn","features":[305]},{"name":"WheaEventLogAzccRootBusList","features":[305]},{"name":"WheaEventLogAzccRootBusPoisonSet","features":[305]},{"name":"WheaEventLogAzccRootBusSearchErr","features":[305]},{"name":"WheaEventLogCmciFinalRestart","features":[305]},{"name":"WheaEventLogCmciRestart","features":[305]},{"name":"WheaEventLogEntryEarlyError","features":[305]},{"name":"WheaEventLogEntryEtwOverFlow","features":[305]},{"name":"WheaEventLogEntryIdAcpiTimeOut","features":[305]},{"name":"WheaEventLogEntryIdAddRemoveErrorSource","features":[305]},{"name":"WheaEventLogEntryIdAerNotGrantedToOs","features":[305]},{"name":"WheaEventLogEntryIdAttemptErrorRecovery","features":[305]},{"name":"WheaEventLogEntryIdBadHestNotifyData","features":[305]},{"name":"WheaEventLogEntryIdBadPageLimitReached","features":[305]},{"name":"WheaEventLogEntryIdClearedPoison","features":[305]},{"name":"WheaEventLogEntryIdCmcPollingTimeout","features":[305]},{"name":"WheaEventLogEntryIdCmcSwitchToPolling","features":[305]},{"name":"WheaEventLogEntryIdCmciImplPresent","features":[305]},{"name":"WheaEventLogEntryIdCmciInitError","features":[305]},{"name":"WheaEventLogEntryIdCpuBusesInitFailed","features":[305]},{"name":"WheaEventLogEntryIdCpusFrozen","features":[305]},{"name":"WheaEventLogEntryIdCpusFrozenNoCrashDump","features":[305]},{"name":"WheaEventLogEntryIdCreateGenericRecord","features":[305]},{"name":"WheaEventLogEntryIdDefectListCorrupt","features":[305]},{"name":"WheaEventLogEntryIdDefectListFull","features":[305]},{"name":"WheaEventLogEntryIdDefectListUEFIVarFailed","features":[305]},{"name":"WheaEventLogEntryIdDeviceDriver","features":[305]},{"name":"WheaEventLogEntryIdDroppedCorrectedError","features":[305]},{"name":"WheaEventLogEntryIdDrvErrSrcInvalid","features":[305]},{"name":"WheaEventLogEntryIdDrvHandleBusy","features":[305]},{"name":"WheaEventLogEntryIdEnableKeyNotifFailed","features":[305]},{"name":"WheaEventLogEntryIdErrDimmInfoMismatch","features":[305]},{"name":"WheaEventLogEntryIdErrSrcArrayInvalid","features":[305]},{"name":"WheaEventLogEntryIdErrSrcInvalid","features":[305]},{"name":"WheaEventLogEntryIdErrorRecord","features":[305]},{"name":"WheaEventLogEntryIdErrorRecordLimit","features":[305]},{"name":"WheaEventLogEntryIdFailedAddToDefectList","features":[305]},{"name":"WheaEventLogEntryIdGenericErrMemMap","features":[305]},{"name":"WheaEventLogEntryIdKeyNotificationFailed","features":[305]},{"name":"WheaEventLogEntryIdMcaErrorCleared","features":[305]},{"name":"WheaEventLogEntryIdMcaFoundErrorInBank","features":[305]},{"name":"WheaEventLogEntryIdMcaStuckErrorCheck","features":[305]},{"name":"WheaEventLogEntryIdMemoryAddDevice","features":[305]},{"name":"WheaEventLogEntryIdMemoryRemoveDevice","features":[305]},{"name":"WheaEventLogEntryIdMemorySummaryFailed","features":[305]},{"name":"WheaEventLogEntryIdOscCapabilities","features":[305]},{"name":"WheaEventLogEntryIdPFAMemoryOfflined","features":[305]},{"name":"WheaEventLogEntryIdPFAMemoryPolicy","features":[305]},{"name":"WheaEventLogEntryIdPFAMemoryRemoveMonitor","features":[305]},{"name":"WheaEventLogEntryIdPcieAddDevice","features":[305]},{"name":"WheaEventLogEntryIdPcieConfigInfo","features":[305]},{"name":"WheaEventLogEntryIdPcieDpcError","features":[305]},{"name":"WheaEventLogEntryIdPcieOverrideInfo","features":[305]},{"name":"WheaEventLogEntryIdPcieRemoveDevice","features":[305]},{"name":"WheaEventLogEntryIdPcieSpuriousErrSource","features":[305]},{"name":"WheaEventLogEntryIdPcieSummaryFailed","features":[305]},{"name":"WheaEventLogEntryIdProcessEINJ","features":[305]},{"name":"WheaEventLogEntryIdProcessHEST","features":[305]},{"name":"WheaEventLogEntryIdPshedCallbackCollision","features":[305]},{"name":"WheaEventLogEntryIdPshedInjectError","features":[305]},{"name":"WheaEventLogEntryIdPshedPiTraceLog","features":[305]},{"name":"WheaEventLogEntryIdPshedPluginInitFailed","features":[305]},{"name":"WheaEventLogEntryIdPshedPluginLoad","features":[305]},{"name":"WheaEventLogEntryIdPshedPluginRegister","features":[305]},{"name":"WheaEventLogEntryIdPshedPluginSupported","features":[305]},{"name":"WheaEventLogEntryIdPshedPluginUnload","features":[305]},{"name":"WheaEventLogEntryIdReadPcieOverridesErr","features":[305]},{"name":"WheaEventLogEntryIdRowFailure","features":[305]},{"name":"WheaEventLogEntryIdSELBugCheckInfo","features":[305]},{"name":"WheaEventLogEntryIdSELBugCheckProgress","features":[305]},{"name":"WheaEventLogEntryIdSELBugCheckRecovery","features":[305]},{"name":"WheaEventLogEntryIdSrasTableEntries","features":[305]},{"name":"WheaEventLogEntryIdSrasTableError","features":[305]},{"name":"WheaEventLogEntryIdSrasTableNotFound","features":[305]},{"name":"WheaEventLogEntryIdStartedReportHwError","features":[305]},{"name":"WheaEventLogEntryIdThrottleAddErrSrcFailed","features":[305]},{"name":"WheaEventLogEntryIdThrottleRegCorrupt","features":[305]},{"name":"WheaEventLogEntryIdThrottleRegDataIgnored","features":[305]},{"name":"WheaEventLogEntryIdWheaHeartbeat","features":[305]},{"name":"WheaEventLogEntryIdWheaInit","features":[305]},{"name":"WheaEventLogEntryIdWorkQueueItem","features":[305]},{"name":"WheaEventLogEntryIdeDpcEnabled","features":[305]},{"name":"WheaEventLogEntryPageOfflineDone","features":[305]},{"name":"WheaEventLogEntryPageOfflinePendMax","features":[305]},{"name":"WheaEventLogEntrySrarDetail","features":[305]},{"name":"WheaEventLogEntryTypeError","features":[305]},{"name":"WheaEventLogEntryTypeInformational","features":[305]},{"name":"WheaEventLogEntryTypeWarning","features":[305]},{"name":"WheaGetNotifyAllOfflinesPolicy","features":[305,303]},{"name":"WheaHighIrqlLogSelEventHandlerRegister","features":[305,303,331]},{"name":"WheaHighIrqlLogSelEventHandlerUnregister","features":[305]},{"name":"WheaHwErrorReportAbandonDeviceDriver","features":[305,303]},{"name":"WheaHwErrorReportSetSectionNameDeviceDriver","features":[305,303,331]},{"name":"WheaHwErrorReportSetSeverityDeviceDriver","features":[305,303]},{"name":"WheaHwErrorReportSubmitDeviceDriver","features":[305,303]},{"name":"WheaInitializeRecordHeader","features":[305,303]},{"name":"WheaIsCriticalState","features":[305,303]},{"name":"WheaLogInternalEvent","features":[305]},{"name":"WheaMemoryThrottle","features":[305]},{"name":"WheaPciExpressDownstreamSwitchPort","features":[305]},{"name":"WheaPciExpressEndpoint","features":[305]},{"name":"WheaPciExpressLegacyEndpoint","features":[305]},{"name":"WheaPciExpressRootComplexEventCollector","features":[305]},{"name":"WheaPciExpressRootComplexIntegratedEndpoint","features":[305]},{"name":"WheaPciExpressRootPort","features":[305]},{"name":"WheaPciExpressToPciXBridge","features":[305]},{"name":"WheaPciExpressUpstreamSwitchPort","features":[305]},{"name":"WheaPciREcoveryStatusUnknown","features":[305]},{"name":"WheaPciRecoverySignalAer","features":[305]},{"name":"WheaPciRecoverySignalDpc","features":[305]},{"name":"WheaPciRecoverySignalUnknown","features":[305]},{"name":"WheaPciRecoveryStatusBusNotFound","features":[305]},{"name":"WheaPciRecoveryStatusComplexTree","features":[305]},{"name":"WheaPciRecoveryStatusLinkDisableTimeout","features":[305]},{"name":"WheaPciRecoveryStatusLinkEnableTimeout","features":[305]},{"name":"WheaPciRecoveryStatusNoError","features":[305]},{"name":"WheaPciRecoveryStatusRpBusyTimeout","features":[305]},{"name":"WheaPciXToExpressBridge","features":[305]},{"name":"WheaPcieThrottle","features":[305]},{"name":"WheaPfaRemoveCapacity","features":[305]},{"name":"WheaPfaRemoveErrorThreshold","features":[305]},{"name":"WheaPfaRemoveTimeout","features":[305]},{"name":"WheaRawDataFormatAMD64MCA","features":[305]},{"name":"WheaRawDataFormatGeneric","features":[305]},{"name":"WheaRawDataFormatIA32MCA","features":[305]},{"name":"WheaRawDataFormatIPFSalRecord","features":[305]},{"name":"WheaRawDataFormatIntel64MCA","features":[305]},{"name":"WheaRawDataFormatMax","features":[305]},{"name":"WheaRawDataFormatMemory","features":[305]},{"name":"WheaRawDataFormatNMIPort","features":[305]},{"name":"WheaRawDataFormatPCIExpress","features":[305]},{"name":"WheaRawDataFormatPCIXBus","features":[305]},{"name":"WheaRawDataFormatPCIXDevice","features":[305]},{"name":"WheaRecoveryContextErrorTypeMax","features":[305]},{"name":"WheaRecoveryContextErrorTypeMemory","features":[305]},{"name":"WheaRecoveryContextErrorTypePmem","features":[305]},{"name":"WheaRecoveryFailureReasonFarNotValid","features":[305]},{"name":"WheaRecoveryFailureReasonHighIrql","features":[305]},{"name":"WheaRecoveryFailureReasonInsufficientAltContextWrappers","features":[305]},{"name":"WheaRecoveryFailureReasonInterruptsDisabled","features":[305]},{"name":"WheaRecoveryFailureReasonInvalidAddressMode","features":[305]},{"name":"WheaRecoveryFailureReasonKernelCouldNotMarkMemoryBad","features":[305]},{"name":"WheaRecoveryFailureReasonKernelMarkMemoryBadTimedOut","features":[305]},{"name":"WheaRecoveryFailureReasonKernelWillPageFaultBCAtCurrentIrql","features":[305]},{"name":"WheaRecoveryFailureReasonMax","features":[305]},{"name":"WheaRecoveryFailureReasonMiscOrAddrNotValid","features":[305]},{"name":"WheaRecoveryFailureReasonNoRecoveryContext","features":[305]},{"name":"WheaRecoveryFailureReasonNotContinuable","features":[305]},{"name":"WheaRecoveryFailureReasonNotSupported","features":[305]},{"name":"WheaRecoveryFailureReasonOverflow","features":[305]},{"name":"WheaRecoveryFailureReasonPcc","features":[305]},{"name":"WheaRecoveryFailureReasonStackOverflow","features":[305]},{"name":"WheaRecoveryFailureReasonSwapBusy","features":[305]},{"name":"WheaRecoveryFailureReasonUnexpectedFailure","features":[305]},{"name":"WheaRecoveryTypeActionOptional","features":[305]},{"name":"WheaRecoveryTypeActionRequired","features":[305]},{"name":"WheaRecoveryTypeMax","features":[305]},{"name":"WheaRegisterInUsePageOfflineNotification","features":[305,303]},{"name":"WheaRemoveErrorSource","features":[305]},{"name":"WheaRemoveErrorSourceDeviceDriver","features":[305,303]},{"name":"WheaReportHwError","features":[305,303,331]},{"name":"WheaReportHwErrorDeviceDriver","features":[304,307,305,303,306,308,309,310]},{"name":"WheaUnconfigureErrorSource","features":[305,303,331]},{"name":"WheaUnregisterInUsePageOfflineNotification","features":[305,303]},{"name":"WheapDpcErrBusNotFound","features":[305]},{"name":"WheapDpcErrDeviceIdBad","features":[305]},{"name":"WheapDpcErrDpcedSubtree","features":[305]},{"name":"WheapDpcErrNoChildren","features":[305]},{"name":"WheapDpcErrNoErr","features":[305]},{"name":"WheapDpcErrResetFailed","features":[305]},{"name":"WheapPfaOfflinePredictiveFailure","features":[305]},{"name":"WheapPfaOfflineUncorrectedError","features":[305]},{"name":"Width16Bits","features":[305]},{"name":"Width32Bits","features":[305]},{"name":"Width64Bits","features":[305]},{"name":"Width8Bits","features":[305]},{"name":"WidthNoWrap","features":[305]},{"name":"WmiQueryTraceInformation","features":[305,303]},{"name":"WormController","features":[305]},{"name":"WrAlertByThreadId","features":[305]},{"name":"WrCalloutStack","features":[305]},{"name":"WrCpuRateControl","features":[305]},{"name":"WrDeferredPreempt","features":[305]},{"name":"WrDelayExecution","features":[305]},{"name":"WrDispatchInt","features":[305]},{"name":"WrExecutive","features":[305]},{"name":"WrFastMutex","features":[305]},{"name":"WrFreePage","features":[305]},{"name":"WrGuardedMutex","features":[305]},{"name":"WrIoRing","features":[305]},{"name":"WrKernel","features":[305]},{"name":"WrKeyedEvent","features":[305]},{"name":"WrLpcReceive","features":[305]},{"name":"WrLpcReply","features":[305]},{"name":"WrMdlCache","features":[305]},{"name":"WrMutex","features":[305]},{"name":"WrPageIn","features":[305]},{"name":"WrPageOut","features":[305]},{"name":"WrPhysicalFault","features":[305]},{"name":"WrPoolAllocation","features":[305]},{"name":"WrPreempted","features":[305]},{"name":"WrProcessInSwap","features":[305]},{"name":"WrPushLock","features":[305]},{"name":"WrQuantumEnd","features":[305]},{"name":"WrQueue","features":[305]},{"name":"WrRendezvous","features":[305]},{"name":"WrResource","features":[305]},{"name":"WrRundown","features":[305]},{"name":"WrSpare0","features":[305]},{"name":"WrSuspended","features":[305]},{"name":"WrTerminated","features":[305]},{"name":"WrUserRequest","features":[305]},{"name":"WrVirtualMemory","features":[305]},{"name":"WrYieldExecution","features":[305]},{"name":"WriteAccess","features":[305]},{"name":"XPF_BUS_CHECK_ADDRESS_IO","features":[305]},{"name":"XPF_BUS_CHECK_ADDRESS_MEMORY","features":[305]},{"name":"XPF_BUS_CHECK_ADDRESS_OTHER","features":[305]},{"name":"XPF_BUS_CHECK_ADDRESS_RESERVED","features":[305]},{"name":"XPF_BUS_CHECK_OPERATION_DATAREAD","features":[305]},{"name":"XPF_BUS_CHECK_OPERATION_DATAWRITE","features":[305]},{"name":"XPF_BUS_CHECK_OPERATION_GENERIC","features":[305]},{"name":"XPF_BUS_CHECK_OPERATION_GENREAD","features":[305]},{"name":"XPF_BUS_CHECK_OPERATION_GENWRITE","features":[305]},{"name":"XPF_BUS_CHECK_OPERATION_INSTRUCTIONFETCH","features":[305]},{"name":"XPF_BUS_CHECK_OPERATION_PREFETCH","features":[305]},{"name":"XPF_BUS_CHECK_PARTICIPATION_GENERIC","features":[305]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCOBSERVED","features":[305]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCORIGINATED","features":[305]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCRESPONDED","features":[305]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[305]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_GENERIC","features":[305]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAREAD","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAWRITE","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_EVICTION","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_GENERIC","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_GENREAD","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_GENWRITE","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_INSTRUCTIONFETCH","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_PREFETCH","features":[305]},{"name":"XPF_CACHE_CHECK_OPERATION_SNOOP","features":[305]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[305]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_GENERIC","features":[305]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[305]},{"name":"XPF_CONTEXT_INFO_32BITCONTEXT","features":[305]},{"name":"XPF_CONTEXT_INFO_32BITDEBUGREGS","features":[305]},{"name":"XPF_CONTEXT_INFO_64BITCONTEXT","features":[305]},{"name":"XPF_CONTEXT_INFO_64BITDEBUGREGS","features":[305]},{"name":"XPF_CONTEXT_INFO_FXSAVE","features":[305]},{"name":"XPF_CONTEXT_INFO_MMREGISTERS","features":[305]},{"name":"XPF_CONTEXT_INFO_MSRREGISTERS","features":[305]},{"name":"XPF_CONTEXT_INFO_UNCLASSIFIEDDATA","features":[305]},{"name":"XPF_MCA_SECTION_GUID","features":[305]},{"name":"XPF_MS_CHECK_ERRORTYPE_EXTERNAL","features":[305]},{"name":"XPF_MS_CHECK_ERRORTYPE_FRC","features":[305]},{"name":"XPF_MS_CHECK_ERRORTYPE_INTERNALUNCLASSIFIED","features":[305]},{"name":"XPF_MS_CHECK_ERRORTYPE_MCROMPARITY","features":[305]},{"name":"XPF_MS_CHECK_ERRORTYPE_NOERROR","features":[305]},{"name":"XPF_MS_CHECK_ERRORTYPE_UNCLASSIFIED","features":[305]},{"name":"XPF_PROCESSOR_ERROR_SECTION_GUID","features":[305]},{"name":"XPF_RECOVERY_INFO","features":[305,303]},{"name":"XPF_TLB_CHECK_OPERATION_DATAREAD","features":[305]},{"name":"XPF_TLB_CHECK_OPERATION_DATAWRITE","features":[305]},{"name":"XPF_TLB_CHECK_OPERATION_GENERIC","features":[305]},{"name":"XPF_TLB_CHECK_OPERATION_GENREAD","features":[305]},{"name":"XPF_TLB_CHECK_OPERATION_GENWRITE","features":[305]},{"name":"XPF_TLB_CHECK_OPERATION_INSTRUCTIONFETCH","features":[305]},{"name":"XPF_TLB_CHECK_OPERATION_PREFETCH","features":[305]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[305]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_GENERIC","features":[305]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[305]},{"name":"XSAVE_FORMAT","features":[305,331]},{"name":"XSTATE_CONTEXT","features":[305,331]},{"name":"XSTATE_SAVE","features":[305,331]},{"name":"ZONE_HEADER","features":[305,309]},{"name":"ZONE_SEGMENT_HEADER","features":[305,309]},{"name":"ZwAllocateLocallyUniqueId","features":[305,303]},{"name":"ZwCancelTimer","features":[305,303]},{"name":"ZwClose","features":[305,303]},{"name":"ZwCommitComplete","features":[305,303]},{"name":"ZwCommitEnlistment","features":[305,303]},{"name":"ZwCommitRegistryTransaction","features":[305,303]},{"name":"ZwCommitTransaction","features":[305,303]},{"name":"ZwCreateDirectoryObject","features":[304,305,303]},{"name":"ZwCreateEnlistment","features":[304,305,303]},{"name":"ZwCreateFile","features":[304,305,303,308]},{"name":"ZwCreateKey","features":[304,305,303]},{"name":"ZwCreateKeyTransacted","features":[304,305,303]},{"name":"ZwCreateRegistryTransaction","features":[304,305,303]},{"name":"ZwCreateResourceManager","features":[304,305,303]},{"name":"ZwCreateSection","features":[304,305,303]},{"name":"ZwCreateTimer","features":[304,305,303,309]},{"name":"ZwCreateTransaction","features":[304,305,303]},{"name":"ZwCreateTransactionManager","features":[304,305,303]},{"name":"ZwDeleteKey","features":[305,303]},{"name":"ZwDeleteValueKey","features":[305,303]},{"name":"ZwDeviceIoControlFile","features":[305,303,308]},{"name":"ZwDisplayString","features":[305,303]},{"name":"ZwEnumerateKey","features":[305,303]},{"name":"ZwEnumerateTransactionObject","features":[305,303,337]},{"name":"ZwEnumerateValueKey","features":[305,303]},{"name":"ZwFlushKey","features":[305,303]},{"name":"ZwGetNotificationResourceManager","features":[305,303,322]},{"name":"ZwLoadDriver","features":[305,303]},{"name":"ZwMakeTemporaryObject","features":[305,303]},{"name":"ZwMapViewOfSection","features":[305,303]},{"name":"ZwOpenEnlistment","features":[304,305,303]},{"name":"ZwOpenEvent","features":[304,305,303]},{"name":"ZwOpenFile","features":[304,305,303,308]},{"name":"ZwOpenKey","features":[304,305,303]},{"name":"ZwOpenKeyEx","features":[304,305,303]},{"name":"ZwOpenKeyTransacted","features":[304,305,303]},{"name":"ZwOpenKeyTransactedEx","features":[304,305,303]},{"name":"ZwOpenProcess","features":[304,305,303,335]},{"name":"ZwOpenResourceManager","features":[304,305,303]},{"name":"ZwOpenSection","features":[304,305,303]},{"name":"ZwOpenSymbolicLinkObject","features":[304,305,303]},{"name":"ZwOpenTimer","features":[304,305,303]},{"name":"ZwOpenTransaction","features":[304,305,303]},{"name":"ZwOpenTransactionManager","features":[304,305,303]},{"name":"ZwPowerInformation","features":[305,303,310]},{"name":"ZwPrePrepareComplete","features":[305,303]},{"name":"ZwPrePrepareEnlistment","features":[305,303]},{"name":"ZwPrepareComplete","features":[305,303]},{"name":"ZwPrepareEnlistment","features":[305,303]},{"name":"ZwQueryInformationByName","features":[304,307,305,303,308]},{"name":"ZwQueryInformationEnlistment","features":[305,303,337]},{"name":"ZwQueryInformationFile","features":[307,305,303,308]},{"name":"ZwQueryInformationResourceManager","features":[305,303,337]},{"name":"ZwQueryInformationTransaction","features":[305,303,337]},{"name":"ZwQueryInformationTransactionManager","features":[305,303,337]},{"name":"ZwQueryKey","features":[305,303]},{"name":"ZwQuerySymbolicLinkObject","features":[305,303]},{"name":"ZwQueryValueKey","features":[305,303]},{"name":"ZwReadFile","features":[305,303,308]},{"name":"ZwReadOnlyEnlistment","features":[305,303]},{"name":"ZwRecoverEnlistment","features":[305,303]},{"name":"ZwRecoverResourceManager","features":[305,303]},{"name":"ZwRecoverTransactionManager","features":[305,303]},{"name":"ZwRenameKey","features":[305,303]},{"name":"ZwRestoreKey","features":[305,303]},{"name":"ZwRollbackComplete","features":[305,303]},{"name":"ZwRollbackEnlistment","features":[305,303]},{"name":"ZwRollbackTransaction","features":[305,303]},{"name":"ZwRollforwardTransactionManager","features":[305,303]},{"name":"ZwSaveKey","features":[305,303]},{"name":"ZwSaveKeyEx","features":[305,303]},{"name":"ZwSetInformationEnlistment","features":[305,303,337]},{"name":"ZwSetInformationFile","features":[307,305,303,308]},{"name":"ZwSetInformationResourceManager","features":[305,303,337]},{"name":"ZwSetInformationTransaction","features":[305,303,337]},{"name":"ZwSetInformationTransactionManager","features":[305,303,337]},{"name":"ZwSetTimer","features":[305,303]},{"name":"ZwSetTimerEx","features":[305,303]},{"name":"ZwSetValueKey","features":[305,303]},{"name":"ZwSinglePhaseReject","features":[305,303]},{"name":"ZwTerminateProcess","features":[305,303]},{"name":"ZwUnloadDriver","features":[305,303]},{"name":"ZwUnmapViewOfSection","features":[305,303]},{"name":"ZwWriteFile","features":[305,303,308]},{"name":"_EXT_SET_PARAMETERS_V0","features":[305]},{"name":"_STRSAFE_USE_SECURE_CRT","features":[305]},{"name":"_WHEA_ERROR_SOURCE_CORRECT","features":[305,303,331]},{"name":"_WHEA_ERROR_SOURCE_CREATE_RECORD","features":[305,303,331]},{"name":"_WHEA_ERROR_SOURCE_INITIALIZE","features":[305,303,331]},{"name":"_WHEA_ERROR_SOURCE_RECOVER","features":[305,303]},{"name":"_WHEA_ERROR_SOURCE_UNINITIALIZE","features":[305]},{"name":"_WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[305,303]},{"name":"__guid_type","features":[305]},{"name":"__multiString_type","features":[305]},{"name":"__string_type","features":[305]},{"name":"pHalAssignSlotResources","features":[304,307,305,303,306,308,309,310]},{"name":"pHalEndMirroring","features":[305,303]},{"name":"pHalEndOfBoot","features":[305]},{"name":"pHalExamineMBR","features":[304,307,305,303,306,308,309,310]},{"name":"pHalFindBusAddressTranslation","features":[305,303]},{"name":"pHalGetAcpiTable","features":[305]},{"name":"pHalGetDmaAdapter","features":[304,307,305,303,306,308,309,310]},{"name":"pHalGetInterruptTranslator","features":[304,307,305,303,306,308,309,310]},{"name":"pHalGetPrmCache","features":[305,309]},{"name":"pHalHaltSystem","features":[305]},{"name":"pHalHandlerForBus","features":[304,305]},{"name":"pHalInitPnpDriver","features":[305,303]},{"name":"pHalInitPowerManagement","features":[305,303]},{"name":"pHalIoReadPartitionTable","features":[304,307,305,303,306,308,323,309,310]},{"name":"pHalIoSetPartitionInformation","features":[304,307,305,303,306,308,309,310]},{"name":"pHalIoWritePartitionTable","features":[304,307,305,303,306,308,323,309,310]},{"name":"pHalMirrorPhysicalMemory","features":[305,303]},{"name":"pHalMirrorVerify","features":[305,303]},{"name":"pHalQueryBusSlots","features":[304,305,303]},{"name":"pHalQuerySystemInformation","features":[305,303]},{"name":"pHalReferenceBusHandler","features":[304,305]},{"name":"pHalResetDisplay","features":[305,303]},{"name":"pHalSetPciErrorHandlerCallback","features":[305]},{"name":"pHalSetSystemInformation","features":[305,303]},{"name":"pHalStartMirroring","features":[305,303]},{"name":"pHalTranslateBusAddress","features":[305,303]},{"name":"pHalVectorToIDTEntry","features":[305]},{"name":"pKdCheckPowerButton","features":[305]},{"name":"pKdEnumerateDebuggingDevices","features":[305,303]},{"name":"pKdGetAcpiTablePhase0","features":[305]},{"name":"pKdGetPciDataByOffset","features":[305]},{"name":"pKdMapPhysicalMemory64","features":[305,303]},{"name":"pKdReleaseIntegratedDeviceForDebugging","features":[305,303]},{"name":"pKdReleasePciDeviceForDebugging","features":[305,303]},{"name":"pKdSetPciDataByOffset","features":[305]},{"name":"pKdSetupIntegratedDeviceForDebugging","features":[305,303]},{"name":"pKdSetupPciDeviceForDebugging","features":[305,303]},{"name":"pKdUnmapVirtualAddress","features":[305,303]},{"name":"vDbgPrintEx","features":[305]},{"name":"vDbgPrintExWithPrefix","features":[305]}],"351":[{"name":"MaxProcessInfoClass","features":[339]},{"name":"MaxThreadInfoClass","features":[339]},{"name":"NtQueryInformationProcess","features":[339,303]},{"name":"NtQueryInformationThread","features":[339,303]},{"name":"NtSetInformationThread","features":[339,303]},{"name":"NtWaitForSingleObject","features":[339,303]},{"name":"PROCESSINFOCLASS","features":[339]},{"name":"ProcessAccessToken","features":[339]},{"name":"ProcessAffinityMask","features":[339]},{"name":"ProcessAffinityUpdateMode","features":[339]},{"name":"ProcessBasePriority","features":[339]},{"name":"ProcessBasicInformation","features":[339]},{"name":"ProcessBreakOnTermination","features":[339]},{"name":"ProcessCheckStackExtentsMode","features":[339]},{"name":"ProcessCommandLineInformation","features":[339]},{"name":"ProcessCommitReleaseInformation","features":[339]},{"name":"ProcessCookie","features":[339]},{"name":"ProcessCycleTime","features":[339]},{"name":"ProcessDebugFlags","features":[339]},{"name":"ProcessDebugObjectHandle","features":[339]},{"name":"ProcessDebugPort","features":[339]},{"name":"ProcessDefaultHardErrorMode","features":[339]},{"name":"ProcessDeviceMap","features":[339]},{"name":"ProcessDynamicFunctionTableInformation","features":[339]},{"name":"ProcessEnableAlignmentFaultFixup","features":[339]},{"name":"ProcessEnergyTrackingState","features":[339]},{"name":"ProcessExceptionPort","features":[339]},{"name":"ProcessExecuteFlags","features":[339]},{"name":"ProcessFaultInformation","features":[339]},{"name":"ProcessForegroundInformation","features":[339]},{"name":"ProcessGroupInformation","features":[339]},{"name":"ProcessHandleCheckingMode","features":[339]},{"name":"ProcessHandleCount","features":[339]},{"name":"ProcessHandleInformation","features":[339]},{"name":"ProcessHandleTable","features":[339]},{"name":"ProcessHandleTracing","features":[339]},{"name":"ProcessImageFileMapping","features":[339]},{"name":"ProcessImageFileName","features":[339]},{"name":"ProcessImageFileNameWin32","features":[339]},{"name":"ProcessImageInformation","features":[339]},{"name":"ProcessInPrivate","features":[339]},{"name":"ProcessInstrumentationCallback","features":[339]},{"name":"ProcessIoCounters","features":[339]},{"name":"ProcessIoPortHandlers","features":[339]},{"name":"ProcessIoPriority","features":[339]},{"name":"ProcessKeepAliveCount","features":[339]},{"name":"ProcessLUIDDeviceMapsEnabled","features":[339]},{"name":"ProcessLdtInformation","features":[339]},{"name":"ProcessLdtSize","features":[339]},{"name":"ProcessMemoryAllocationMode","features":[339]},{"name":"ProcessMemoryExhaustion","features":[339]},{"name":"ProcessMitigationPolicy","features":[339]},{"name":"ProcessOwnerInformation","features":[339]},{"name":"ProcessPagePriority","features":[339]},{"name":"ProcessPooledUsageAndLimits","features":[339]},{"name":"ProcessPriorityBoost","features":[339]},{"name":"ProcessPriorityClass","features":[339]},{"name":"ProcessProtectionInformation","features":[339]},{"name":"ProcessQuotaLimits","features":[339]},{"name":"ProcessRaisePriority","features":[339]},{"name":"ProcessRaiseUMExceptionOnInvalidHandleClose","features":[339]},{"name":"ProcessReserved1Information","features":[339]},{"name":"ProcessReserved2Information","features":[339]},{"name":"ProcessRevokeFileHandles","features":[339]},{"name":"ProcessSessionInformation","features":[339]},{"name":"ProcessSubsystemInformation","features":[339]},{"name":"ProcessSubsystemProcess","features":[339]},{"name":"ProcessTelemetryIdInformation","features":[339]},{"name":"ProcessThreadStackAllocation","features":[339]},{"name":"ProcessTimes","features":[339]},{"name":"ProcessTlsInformation","features":[339]},{"name":"ProcessTokenVirtualizationEnabled","features":[339]},{"name":"ProcessUserModeIOPL","features":[339]},{"name":"ProcessVmCounters","features":[339]},{"name":"ProcessWin32kSyscallFilterInformation","features":[339]},{"name":"ProcessWindowInformation","features":[339]},{"name":"ProcessWorkingSetControl","features":[339]},{"name":"ProcessWorkingSetWatch","features":[339]},{"name":"ProcessWorkingSetWatchEx","features":[339]},{"name":"ProcessWow64Information","features":[339]},{"name":"ProcessWx86Information","features":[339]},{"name":"THREADINFOCLASS","features":[339]},{"name":"ThreadActualBasePriority","features":[339]},{"name":"ThreadActualGroupAffinity","features":[339]},{"name":"ThreadAffinityMask","features":[339]},{"name":"ThreadAmILastThread","features":[339]},{"name":"ThreadBasePriority","features":[339]},{"name":"ThreadBasicInformation","features":[339]},{"name":"ThreadBreakOnTermination","features":[339]},{"name":"ThreadCSwitchMon","features":[339]},{"name":"ThreadCSwitchPmu","features":[339]},{"name":"ThreadCounterProfiling","features":[339]},{"name":"ThreadCpuAccountingInformation","features":[339]},{"name":"ThreadCycleTime","features":[339]},{"name":"ThreadDescriptorTableEntry","features":[339]},{"name":"ThreadDynamicCodePolicyInfo","features":[339]},{"name":"ThreadEnableAlignmentFaultFixup","features":[339]},{"name":"ThreadEventPair_Reusable","features":[339]},{"name":"ThreadGroupInformation","features":[339]},{"name":"ThreadHideFromDebugger","features":[339]},{"name":"ThreadIdealProcessor","features":[339]},{"name":"ThreadIdealProcessorEx","features":[339]},{"name":"ThreadImpersonationToken","features":[339]},{"name":"ThreadIoPriority","features":[339]},{"name":"ThreadIsIoPending","features":[339]},{"name":"ThreadIsTerminated","features":[339]},{"name":"ThreadLastSystemCall","features":[339]},{"name":"ThreadPagePriority","features":[339]},{"name":"ThreadPerformanceCount","features":[339]},{"name":"ThreadPriority","features":[339]},{"name":"ThreadPriorityBoost","features":[339]},{"name":"ThreadQuerySetWin32StartAddress","features":[339]},{"name":"ThreadSetTlsArrayAddress","features":[339]},{"name":"ThreadSubsystemInformation","features":[339]},{"name":"ThreadSuspendCount","features":[339]},{"name":"ThreadSwitchLegacyState","features":[339]},{"name":"ThreadTebInformation","features":[339]},{"name":"ThreadTimes","features":[339]},{"name":"ThreadUmsInformation","features":[339]},{"name":"ThreadWow64Context","features":[339]},{"name":"ThreadZeroTlsCell","features":[339]},{"name":"ZwSetInformationThread","features":[339,303]}],"352":[{"name":"IUriToStreamResolver","features":[340]},{"name":"IWebErrorStatics","features":[340]},{"name":"WebError","features":[340]},{"name":"WebErrorStatus","features":[340]}],"353":[{"name":"AtomPubClient","features":[341]},{"name":"IAtomPubClient","features":[341]},{"name":"IAtomPubClientFactory","features":[341]},{"name":"IResourceCollection","features":[341]},{"name":"IServiceDocument","features":[341]},{"name":"IWorkspace","features":[341]},{"name":"ResourceCollection","features":[341]},{"name":"ServiceDocument","features":[341]},{"name":"Workspace","features":[341]}],"354":[{"name":"HttpBufferContent","features":[342]},{"name":"HttpClient","features":[342]},{"name":"HttpCompletionOption","features":[342]},{"name":"HttpCookie","features":[342]},{"name":"HttpCookieCollection","features":[36,342]},{"name":"HttpCookieManager","features":[342]},{"name":"HttpFormUrlEncodedContent","features":[342]},{"name":"HttpGetBufferResult","features":[342]},{"name":"HttpGetInputStreamResult","features":[342]},{"name":"HttpGetStringResult","features":[342]},{"name":"HttpMethod","features":[342]},{"name":"HttpMultipartContent","features":[342]},{"name":"HttpMultipartFormDataContent","features":[342]},{"name":"HttpProgress","features":[76,342]},{"name":"HttpProgressStage","features":[342]},{"name":"HttpRequestMessage","features":[342]},{"name":"HttpRequestResult","features":[342]},{"name":"HttpResponseMessage","features":[342]},{"name":"HttpResponseMessageSource","features":[342]},{"name":"HttpStatusCode","features":[342]},{"name":"HttpStreamContent","features":[342]},{"name":"HttpStringContent","features":[342]},{"name":"HttpTransportInformation","features":[342]},{"name":"HttpVersion","features":[342]},{"name":"IHttpBufferContentFactory","features":[342]},{"name":"IHttpClient","features":[342]},{"name":"IHttpClient2","features":[342]},{"name":"IHttpClient3","features":[342]},{"name":"IHttpClientFactory","features":[342]},{"name":"IHttpContent","features":[342]},{"name":"IHttpCookie","features":[342]},{"name":"IHttpCookieFactory","features":[342]},{"name":"IHttpCookieManager","features":[342]},{"name":"IHttpFormUrlEncodedContentFactory","features":[342]},{"name":"IHttpGetBufferResult","features":[342]},{"name":"IHttpGetInputStreamResult","features":[342]},{"name":"IHttpGetStringResult","features":[342]},{"name":"IHttpMethod","features":[342]},{"name":"IHttpMethodFactory","features":[342]},{"name":"IHttpMethodStatics","features":[342]},{"name":"IHttpMultipartContent","features":[342]},{"name":"IHttpMultipartContentFactory","features":[342]},{"name":"IHttpMultipartFormDataContent","features":[342]},{"name":"IHttpMultipartFormDataContentFactory","features":[342]},{"name":"IHttpRequestMessage","features":[342]},{"name":"IHttpRequestMessage2","features":[342]},{"name":"IHttpRequestMessageFactory","features":[342]},{"name":"IHttpRequestResult","features":[342]},{"name":"IHttpResponseMessage","features":[342]},{"name":"IHttpResponseMessageFactory","features":[342]},{"name":"IHttpStreamContentFactory","features":[342]},{"name":"IHttpStringContentFactory","features":[342]},{"name":"IHttpTransportInformation","features":[342]}],"355":[{"name":"HttpDiagnosticProvider","features":[343]},{"name":"HttpDiagnosticProviderRequestResponseCompletedEventArgs","features":[343]},{"name":"HttpDiagnosticProviderRequestResponseTimestamps","features":[343]},{"name":"HttpDiagnosticProviderRequestSentEventArgs","features":[343]},{"name":"HttpDiagnosticProviderResponseReceivedEventArgs","features":[343]},{"name":"HttpDiagnosticRequestInitiator","features":[343]},{"name":"HttpDiagnosticSourceLocation","features":[343]},{"name":"HttpDiagnosticsContract","features":[343]},{"name":"IHttpDiagnosticProvider","features":[343]},{"name":"IHttpDiagnosticProviderRequestResponseCompletedEventArgs","features":[343]},{"name":"IHttpDiagnosticProviderRequestResponseTimestamps","features":[343]},{"name":"IHttpDiagnosticProviderRequestSentEventArgs","features":[343]},{"name":"IHttpDiagnosticProviderResponseReceivedEventArgs","features":[343]},{"name":"IHttpDiagnosticProviderStatics","features":[343]},{"name":"IHttpDiagnosticSourceLocation","features":[343]}],"356":[{"name":"HttpBaseProtocolFilter","features":[344]},{"name":"HttpCacheControl","features":[344]},{"name":"HttpCacheReadBehavior","features":[344]},{"name":"HttpCacheWriteBehavior","features":[344]},{"name":"HttpCookieUsageBehavior","features":[344]},{"name":"HttpServerCustomValidationRequestedEventArgs","features":[344]},{"name":"IHttpBaseProtocolFilter","features":[344]},{"name":"IHttpBaseProtocolFilter2","features":[344]},{"name":"IHttpBaseProtocolFilter3","features":[344]},{"name":"IHttpBaseProtocolFilter4","features":[344]},{"name":"IHttpBaseProtocolFilter5","features":[344]},{"name":"IHttpBaseProtocolFilterStatics","features":[344]},{"name":"IHttpCacheControl","features":[344]},{"name":"IHttpFilter","features":[344]},{"name":"IHttpServerCustomValidationRequestedEventArgs","features":[344]}],"357":[{"name":"HttpCacheDirectiveHeaderValueCollection","features":[345]},{"name":"HttpChallengeHeaderValue","features":[345]},{"name":"HttpChallengeHeaderValueCollection","features":[345]},{"name":"HttpConnectionOptionHeaderValue","features":[345]},{"name":"HttpConnectionOptionHeaderValueCollection","features":[345]},{"name":"HttpContentCodingHeaderValue","features":[345]},{"name":"HttpContentCodingHeaderValueCollection","features":[345]},{"name":"HttpContentCodingWithQualityHeaderValue","features":[345]},{"name":"HttpContentCodingWithQualityHeaderValueCollection","features":[345]},{"name":"HttpContentDispositionHeaderValue","features":[345]},{"name":"HttpContentHeaderCollection","features":[345]},{"name":"HttpContentRangeHeaderValue","features":[345]},{"name":"HttpCookiePairHeaderValue","features":[345]},{"name":"HttpCookiePairHeaderValueCollection","features":[345]},{"name":"HttpCredentialsHeaderValue","features":[345]},{"name":"HttpDateOrDeltaHeaderValue","features":[345]},{"name":"HttpExpectationHeaderValue","features":[345]},{"name":"HttpExpectationHeaderValueCollection","features":[345]},{"name":"HttpLanguageHeaderValueCollection","features":[345]},{"name":"HttpLanguageRangeWithQualityHeaderValue","features":[345]},{"name":"HttpLanguageRangeWithQualityHeaderValueCollection","features":[345]},{"name":"HttpMediaTypeHeaderValue","features":[345]},{"name":"HttpMediaTypeWithQualityHeaderValue","features":[345]},{"name":"HttpMediaTypeWithQualityHeaderValueCollection","features":[345]},{"name":"HttpMethodHeaderValueCollection","features":[345]},{"name":"HttpNameValueHeaderValue","features":[345]},{"name":"HttpProductHeaderValue","features":[345]},{"name":"HttpProductInfoHeaderValue","features":[345]},{"name":"HttpProductInfoHeaderValueCollection","features":[345]},{"name":"HttpRequestHeaderCollection","features":[345]},{"name":"HttpResponseHeaderCollection","features":[345]},{"name":"HttpTransferCodingHeaderValue","features":[345]},{"name":"HttpTransferCodingHeaderValueCollection","features":[345]},{"name":"IHttpCacheDirectiveHeaderValueCollection","features":[345]},{"name":"IHttpChallengeHeaderValue","features":[345]},{"name":"IHttpChallengeHeaderValueCollection","features":[345]},{"name":"IHttpChallengeHeaderValueFactory","features":[345]},{"name":"IHttpChallengeHeaderValueStatics","features":[345]},{"name":"IHttpConnectionOptionHeaderValue","features":[345]},{"name":"IHttpConnectionOptionHeaderValueCollection","features":[345]},{"name":"IHttpConnectionOptionHeaderValueFactory","features":[345]},{"name":"IHttpConnectionOptionHeaderValueStatics","features":[345]},{"name":"IHttpContentCodingHeaderValue","features":[345]},{"name":"IHttpContentCodingHeaderValueCollection","features":[345]},{"name":"IHttpContentCodingHeaderValueFactory","features":[345]},{"name":"IHttpContentCodingHeaderValueStatics","features":[345]},{"name":"IHttpContentCodingWithQualityHeaderValue","features":[345]},{"name":"IHttpContentCodingWithQualityHeaderValueCollection","features":[345]},{"name":"IHttpContentCodingWithQualityHeaderValueFactory","features":[345]},{"name":"IHttpContentCodingWithQualityHeaderValueStatics","features":[345]},{"name":"IHttpContentDispositionHeaderValue","features":[345]},{"name":"IHttpContentDispositionHeaderValueFactory","features":[345]},{"name":"IHttpContentDispositionHeaderValueStatics","features":[345]},{"name":"IHttpContentHeaderCollection","features":[345]},{"name":"IHttpContentRangeHeaderValue","features":[345]},{"name":"IHttpContentRangeHeaderValueFactory","features":[345]},{"name":"IHttpContentRangeHeaderValueStatics","features":[345]},{"name":"IHttpCookiePairHeaderValue","features":[345]},{"name":"IHttpCookiePairHeaderValueCollection","features":[345]},{"name":"IHttpCookiePairHeaderValueFactory","features":[345]},{"name":"IHttpCookiePairHeaderValueStatics","features":[345]},{"name":"IHttpCredentialsHeaderValue","features":[345]},{"name":"IHttpCredentialsHeaderValueFactory","features":[345]},{"name":"IHttpCredentialsHeaderValueStatics","features":[345]},{"name":"IHttpDateOrDeltaHeaderValue","features":[345]},{"name":"IHttpDateOrDeltaHeaderValueStatics","features":[345]},{"name":"IHttpExpectationHeaderValue","features":[345]},{"name":"IHttpExpectationHeaderValueCollection","features":[345]},{"name":"IHttpExpectationHeaderValueFactory","features":[345]},{"name":"IHttpExpectationHeaderValueStatics","features":[345]},{"name":"IHttpLanguageHeaderValueCollection","features":[345]},{"name":"IHttpLanguageRangeWithQualityHeaderValue","features":[345]},{"name":"IHttpLanguageRangeWithQualityHeaderValueCollection","features":[345]},{"name":"IHttpLanguageRangeWithQualityHeaderValueFactory","features":[345]},{"name":"IHttpLanguageRangeWithQualityHeaderValueStatics","features":[345]},{"name":"IHttpMediaTypeHeaderValue","features":[345]},{"name":"IHttpMediaTypeHeaderValueFactory","features":[345]},{"name":"IHttpMediaTypeHeaderValueStatics","features":[345]},{"name":"IHttpMediaTypeWithQualityHeaderValue","features":[345]},{"name":"IHttpMediaTypeWithQualityHeaderValueCollection","features":[345]},{"name":"IHttpMediaTypeWithQualityHeaderValueFactory","features":[345]},{"name":"IHttpMediaTypeWithQualityHeaderValueStatics","features":[345]},{"name":"IHttpMethodHeaderValueCollection","features":[345]},{"name":"IHttpNameValueHeaderValue","features":[345]},{"name":"IHttpNameValueHeaderValueFactory","features":[345]},{"name":"IHttpNameValueHeaderValueStatics","features":[345]},{"name":"IHttpProductHeaderValue","features":[345]},{"name":"IHttpProductHeaderValueFactory","features":[345]},{"name":"IHttpProductHeaderValueStatics","features":[345]},{"name":"IHttpProductInfoHeaderValue","features":[345]},{"name":"IHttpProductInfoHeaderValueCollection","features":[345]},{"name":"IHttpProductInfoHeaderValueFactory","features":[345]},{"name":"IHttpProductInfoHeaderValueStatics","features":[345]},{"name":"IHttpRequestHeaderCollection","features":[345]},{"name":"IHttpResponseHeaderCollection","features":[345]},{"name":"IHttpTransferCodingHeaderValue","features":[345]},{"name":"IHttpTransferCodingHeaderValueCollection","features":[345]},{"name":"IHttpTransferCodingHeaderValueFactory","features":[345]},{"name":"IHttpTransferCodingHeaderValueStatics","features":[345]}],"358":[{"name":"ISyndicationAttribute","features":[346]},{"name":"ISyndicationAttributeFactory","features":[346]},{"name":"ISyndicationCategory","features":[346]},{"name":"ISyndicationCategoryFactory","features":[346]},{"name":"ISyndicationClient","features":[346]},{"name":"ISyndicationClientFactory","features":[346]},{"name":"ISyndicationContent","features":[346]},{"name":"ISyndicationContentFactory","features":[346]},{"name":"ISyndicationErrorStatics","features":[346]},{"name":"ISyndicationFeed","features":[346]},{"name":"ISyndicationFeedFactory","features":[346]},{"name":"ISyndicationGenerator","features":[346]},{"name":"ISyndicationGeneratorFactory","features":[346]},{"name":"ISyndicationItem","features":[346]},{"name":"ISyndicationItemFactory","features":[346]},{"name":"ISyndicationLink","features":[346]},{"name":"ISyndicationLinkFactory","features":[346]},{"name":"ISyndicationNode","features":[346]},{"name":"ISyndicationNodeFactory","features":[346]},{"name":"ISyndicationPerson","features":[346]},{"name":"ISyndicationPersonFactory","features":[346]},{"name":"ISyndicationText","features":[346]},{"name":"ISyndicationTextFactory","features":[346]},{"name":"RetrievalProgress","features":[346]},{"name":"SyndicationAttribute","features":[346]},{"name":"SyndicationCategory","features":[346]},{"name":"SyndicationClient","features":[346]},{"name":"SyndicationContent","features":[346]},{"name":"SyndicationError","features":[346]},{"name":"SyndicationErrorStatus","features":[346]},{"name":"SyndicationFeed","features":[346]},{"name":"SyndicationFormat","features":[346]},{"name":"SyndicationGenerator","features":[346]},{"name":"SyndicationItem","features":[346]},{"name":"SyndicationLink","features":[346]},{"name":"SyndicationNode","features":[346]},{"name":"SyndicationPerson","features":[346]},{"name":"SyndicationText","features":[346]},{"name":"SyndicationTextType","features":[346]},{"name":"TransferProgress","features":[346]}],"359":[{"name":"IWebViewControl","features":[347]},{"name":"IWebViewControl2","features":[347]},{"name":"IWebViewControlContentLoadingEventArgs","features":[347]},{"name":"IWebViewControlDOMContentLoadedEventArgs","features":[347]},{"name":"IWebViewControlDeferredPermissionRequest","features":[347]},{"name":"IWebViewControlLongRunningScriptDetectedEventArgs","features":[347]},{"name":"IWebViewControlNavigationCompletedEventArgs","features":[347]},{"name":"IWebViewControlNavigationStartingEventArgs","features":[347]},{"name":"IWebViewControlNewWindowRequestedEventArgs","features":[347]},{"name":"IWebViewControlNewWindowRequestedEventArgs2","features":[347]},{"name":"IWebViewControlPermissionRequest","features":[347]},{"name":"IWebViewControlPermissionRequestedEventArgs","features":[347]},{"name":"IWebViewControlScriptNotifyEventArgs","features":[347]},{"name":"IWebViewControlSettings","features":[347]},{"name":"IWebViewControlUnsupportedUriSchemeIdentifiedEventArgs","features":[347]},{"name":"IWebViewControlUnviewableContentIdentifiedEventArgs","features":[347]},{"name":"IWebViewControlWebResourceRequestedEventArgs","features":[347]},{"name":"WebViewControlContentLoadingEventArgs","features":[347]},{"name":"WebViewControlDOMContentLoadedEventArgs","features":[347]},{"name":"WebViewControlDeferredPermissionRequest","features":[347]},{"name":"WebViewControlLongRunningScriptDetectedEventArgs","features":[347]},{"name":"WebViewControlNavigationCompletedEventArgs","features":[347]},{"name":"WebViewControlNavigationStartingEventArgs","features":[347]},{"name":"WebViewControlNewWindowRequestedEventArgs","features":[347]},{"name":"WebViewControlPermissionRequest","features":[347]},{"name":"WebViewControlPermissionRequestedEventArgs","features":[347]},{"name":"WebViewControlPermissionState","features":[347]},{"name":"WebViewControlPermissionType","features":[347]},{"name":"WebViewControlScriptNotifyEventArgs","features":[347]},{"name":"WebViewControlSettings","features":[347]},{"name":"WebViewControlUnsupportedUriSchemeIdentifiedEventArgs","features":[347]},{"name":"WebViewControlUnviewableContentIdentifiedEventArgs","features":[347]},{"name":"WebViewControlWebResourceRequestedEventArgs","features":[347]}],"360":[{"name":"IWebViewControlAcceleratorKeyPressedEventArgs","features":[348]},{"name":"IWebViewControlMoveFocusRequestedEventArgs","features":[348]},{"name":"IWebViewControlProcess","features":[348]},{"name":"IWebViewControlProcessFactory","features":[348]},{"name":"IWebViewControlProcessOptions","features":[348]},{"name":"IWebViewControlSite","features":[348]},{"name":"IWebViewControlSite2","features":[348]},{"name":"WebViewControl","features":[348]},{"name":"WebViewControlAcceleratorKeyPressedEventArgs","features":[348]},{"name":"WebViewControlAcceleratorKeyRoutingStage","features":[348]},{"name":"WebViewControlMoveFocusReason","features":[348]},{"name":"WebViewControlMoveFocusRequestedEventArgs","features":[348]},{"name":"WebViewControlProcess","features":[348]},{"name":"WebViewControlProcessCapabilityState","features":[348]},{"name":"WebViewControlProcessOptions","features":[348]}],"361":[{"name":"DMLCreateDevice","features":[349,350]},{"name":"DMLCreateDevice1","features":[349,350]},{"name":"DML_ACTIVATION_CELU_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_ELU_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_HARDMAX_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_HARD_SIGMOID_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_IDENTITY_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_LEAKY_RELU_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_LINEAR_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_LOG_SOFTMAX_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_PARAMETERIZED_RELU_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_PARAMETRIC_SOFTPLUS_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_RELU_GRAD_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_RELU_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_SCALED_ELU_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_SCALED_TANH_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_SHRINK_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_SIGMOID_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_SOFTMAX_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_SOFTPLUS_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_SOFTSIGN_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_TANH_OPERATOR_DESC","features":[349]},{"name":"DML_ACTIVATION_THRESHOLDED_RELU_OPERATOR_DESC","features":[349]},{"name":"DML_ADAM_OPTIMIZER_OPERATOR_DESC","features":[349]},{"name":"DML_ARGMAX_OPERATOR_DESC","features":[349]},{"name":"DML_ARGMIN_OPERATOR_DESC","features":[349]},{"name":"DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC","features":[349,303]},{"name":"DML_AVERAGE_POOLING_OPERATOR_DESC","features":[349,303]},{"name":"DML_AXIS_DIRECTION","features":[349]},{"name":"DML_AXIS_DIRECTION_DECREASING","features":[349]},{"name":"DML_AXIS_DIRECTION_INCREASING","features":[349]},{"name":"DML_BATCH_NORMALIZATION_GRAD_OPERATOR_DESC","features":[349]},{"name":"DML_BATCH_NORMALIZATION_OPERATOR_DESC","features":[349,303]},{"name":"DML_BINDING_DESC","features":[349]},{"name":"DML_BINDING_PROPERTIES","features":[349]},{"name":"DML_BINDING_TABLE_DESC","features":[349,350]},{"name":"DML_BINDING_TYPE","features":[349]},{"name":"DML_BINDING_TYPE_BUFFER","features":[349]},{"name":"DML_BINDING_TYPE_BUFFER_ARRAY","features":[349]},{"name":"DML_BINDING_TYPE_NONE","features":[349]},{"name":"DML_BUFFER_ARRAY_BINDING","features":[349,350]},{"name":"DML_BUFFER_BINDING","features":[349,350]},{"name":"DML_BUFFER_TENSOR_DESC","features":[349]},{"name":"DML_CAST_OPERATOR_DESC","features":[349]},{"name":"DML_CONVOLUTION_DIRECTION","features":[349]},{"name":"DML_CONVOLUTION_DIRECTION_BACKWARD","features":[349]},{"name":"DML_CONVOLUTION_DIRECTION_FORWARD","features":[349]},{"name":"DML_CONVOLUTION_INTEGER_OPERATOR_DESC","features":[349]},{"name":"DML_CONVOLUTION_MODE","features":[349]},{"name":"DML_CONVOLUTION_MODE_CONVOLUTION","features":[349]},{"name":"DML_CONVOLUTION_MODE_CROSS_CORRELATION","features":[349]},{"name":"DML_CONVOLUTION_OPERATOR_DESC","features":[349]},{"name":"DML_CREATE_DEVICE_FLAGS","features":[349]},{"name":"DML_CREATE_DEVICE_FLAG_DEBUG","features":[349]},{"name":"DML_CREATE_DEVICE_FLAG_NONE","features":[349]},{"name":"DML_CUMULATIVE_PRODUCT_OPERATOR_DESC","features":[349,303]},{"name":"DML_CUMULATIVE_SUMMATION_OPERATOR_DESC","features":[349,303]},{"name":"DML_DEPTH_SPACE_ORDER","features":[349]},{"name":"DML_DEPTH_SPACE_ORDER_COLUMN_ROW_DEPTH","features":[349]},{"name":"DML_DEPTH_SPACE_ORDER_DEPTH_COLUMN_ROW","features":[349]},{"name":"DML_DEPTH_TO_SPACE1_OPERATOR_DESC","features":[349]},{"name":"DML_DEPTH_TO_SPACE_OPERATOR_DESC","features":[349]},{"name":"DML_DIAGONAL_MATRIX_OPERATOR_DESC","features":[349]},{"name":"DML_DYNAMIC_QUANTIZE_LINEAR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ABS_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ACOSH_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ACOS_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ADD1_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ADD_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ASINH_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ASIN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ATANH_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ATAN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ATAN_YX_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_BIT_AND_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_BIT_COUNT_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_BIT_NOT_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_BIT_OR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_BIT_SHIFT_LEFT_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_BIT_SHIFT_RIGHT_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_BIT_XOR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_CEIL_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_CLIP_GRAD_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_CLIP_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_CONSTANT_POW_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_COSH_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_COS_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_DEQUANTIZE_LINEAR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_DIFFERENCE_SQUARE_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_DIVIDE_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ERF_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_EXP_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_FLOOR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_IDENTITY_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_IF_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_IS_INFINITY_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_IS_NAN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_AND_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_EQUALS_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_GREATER_THAN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_GREATER_THAN_OR_EQUAL_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_LESS_THAN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_LESS_THAN_OR_EQUAL_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_NOT_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_OR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOGICAL_XOR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_LOG_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_MAX_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_MEAN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_MIN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_MODULUS_FLOOR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_MODULUS_TRUNCATE_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_MULTIPLY_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_POW_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_QUANTIZED_LINEAR_ADD_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_QUANTIZE_LINEAR_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_RECIP_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_ROUND_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_SIGN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_SINH_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_SIN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_SQRT_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_SUBTRACT_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_TANH_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_TAN_OPERATOR_DESC","features":[349]},{"name":"DML_ELEMENT_WISE_THRESHOLD_OPERATOR_DESC","features":[349]},{"name":"DML_EXECUTION_FLAGS","features":[349]},{"name":"DML_EXECUTION_FLAG_ALLOW_HALF_PRECISION_COMPUTATION","features":[349]},{"name":"DML_EXECUTION_FLAG_DESCRIPTORS_VOLATILE","features":[349]},{"name":"DML_EXECUTION_FLAG_DISABLE_META_COMMANDS","features":[349]},{"name":"DML_EXECUTION_FLAG_NONE","features":[349]},{"name":"DML_FEATURE","features":[349]},{"name":"DML_FEATURE_DATA_FEATURE_LEVELS","features":[349]},{"name":"DML_FEATURE_DATA_TENSOR_DATA_TYPE_SUPPORT","features":[349,303]},{"name":"DML_FEATURE_FEATURE_LEVELS","features":[349]},{"name":"DML_FEATURE_LEVEL","features":[349]},{"name":"DML_FEATURE_LEVEL_1_0","features":[349]},{"name":"DML_FEATURE_LEVEL_2_0","features":[349]},{"name":"DML_FEATURE_LEVEL_2_1","features":[349]},{"name":"DML_FEATURE_LEVEL_3_0","features":[349]},{"name":"DML_FEATURE_LEVEL_3_1","features":[349]},{"name":"DML_FEATURE_LEVEL_4_0","features":[349]},{"name":"DML_FEATURE_LEVEL_4_1","features":[349]},{"name":"DML_FEATURE_LEVEL_5_0","features":[349]},{"name":"DML_FEATURE_QUERY_FEATURE_LEVELS","features":[349]},{"name":"DML_FEATURE_QUERY_TENSOR_DATA_TYPE_SUPPORT","features":[349]},{"name":"DML_FEATURE_TENSOR_DATA_TYPE_SUPPORT","features":[349]},{"name":"DML_FILL_VALUE_CONSTANT_OPERATOR_DESC","features":[349]},{"name":"DML_FILL_VALUE_SEQUENCE_OPERATOR_DESC","features":[349]},{"name":"DML_GATHER_ELEMENTS_OPERATOR_DESC","features":[349]},{"name":"DML_GATHER_ND1_OPERATOR_DESC","features":[349]},{"name":"DML_GATHER_ND_OPERATOR_DESC","features":[349]},{"name":"DML_GATHER_OPERATOR_DESC","features":[349]},{"name":"DML_GEMM_OPERATOR_DESC","features":[349]},{"name":"DML_GRAPH_DESC","features":[349]},{"name":"DML_GRAPH_EDGE_DESC","features":[349]},{"name":"DML_GRAPH_EDGE_TYPE","features":[349]},{"name":"DML_GRAPH_EDGE_TYPE_INPUT","features":[349]},{"name":"DML_GRAPH_EDGE_TYPE_INTERMEDIATE","features":[349]},{"name":"DML_GRAPH_EDGE_TYPE_INVALID","features":[349]},{"name":"DML_GRAPH_EDGE_TYPE_OUTPUT","features":[349]},{"name":"DML_GRAPH_NODE_DESC","features":[349]},{"name":"DML_GRAPH_NODE_TYPE","features":[349]},{"name":"DML_GRAPH_NODE_TYPE_INVALID","features":[349]},{"name":"DML_GRAPH_NODE_TYPE_OPERATOR","features":[349]},{"name":"DML_GRU_OPERATOR_DESC","features":[349,303]},{"name":"DML_INPUT_GRAPH_EDGE_DESC","features":[349]},{"name":"DML_INTERMEDIATE_GRAPH_EDGE_DESC","features":[349]},{"name":"DML_INTERPOLATION_MODE","features":[349]},{"name":"DML_INTERPOLATION_MODE_LINEAR","features":[349]},{"name":"DML_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[349]},{"name":"DML_IS_INFINITY_MODE","features":[349]},{"name":"DML_IS_INFINITY_MODE_EITHER","features":[349]},{"name":"DML_IS_INFINITY_MODE_NEGATIVE","features":[349]},{"name":"DML_IS_INFINITY_MODE_POSITIVE","features":[349]},{"name":"DML_JOIN_OPERATOR_DESC","features":[349]},{"name":"DML_LOCAL_RESPONSE_NORMALIZATION_GRAD_OPERATOR_DESC","features":[349,303]},{"name":"DML_LOCAL_RESPONSE_NORMALIZATION_OPERATOR_DESC","features":[349,303]},{"name":"DML_LP_NORMALIZATION_OPERATOR_DESC","features":[349]},{"name":"DML_LP_POOLING_OPERATOR_DESC","features":[349]},{"name":"DML_LSTM_OPERATOR_DESC","features":[349,303]},{"name":"DML_MATRIX_MULTIPLY_INTEGER_OPERATOR_DESC","features":[349]},{"name":"DML_MATRIX_TRANSFORM","features":[349]},{"name":"DML_MATRIX_TRANSFORM_NONE","features":[349]},{"name":"DML_MATRIX_TRANSFORM_TRANSPOSE","features":[349]},{"name":"DML_MAX_POOLING1_OPERATOR_DESC","features":[349]},{"name":"DML_MAX_POOLING2_OPERATOR_DESC","features":[349]},{"name":"DML_MAX_POOLING_GRAD_OPERATOR_DESC","features":[349]},{"name":"DML_MAX_POOLING_OPERATOR_DESC","features":[349]},{"name":"DML_MAX_UNPOOLING_OPERATOR_DESC","features":[349]},{"name":"DML_MEAN_VARIANCE_NORMALIZATION1_OPERATOR_DESC","features":[349,303]},{"name":"DML_MEAN_VARIANCE_NORMALIZATION_OPERATOR_DESC","features":[349,303]},{"name":"DML_MINIMUM_BUFFER_TENSOR_ALIGNMENT","features":[349]},{"name":"DML_NONZERO_COORDINATES_OPERATOR_DESC","features":[349]},{"name":"DML_ONE_HOT_OPERATOR_DESC","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_CELU","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_ELU","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_HARDMAX","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_HARD_SIGMOID","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_IDENTITY","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_LEAKY_RELU","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_LINEAR","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_LOG_SOFTMAX","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_PARAMETERIZED_RELU","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_PARAMETRIC_SOFTPLUS","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_RELU","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_RELU_GRAD","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_SCALED_ELU","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_SCALED_TANH","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_SHRINK","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_SIGMOID","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_SOFTMAX","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_SOFTPLUS","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_SOFTSIGN","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_TANH","features":[349]},{"name":"DML_OPERATOR_ACTIVATION_THRESHOLDED_RELU","features":[349]},{"name":"DML_OPERATOR_ADAM_OPTIMIZER","features":[349]},{"name":"DML_OPERATOR_ARGMAX","features":[349]},{"name":"DML_OPERATOR_ARGMIN","features":[349]},{"name":"DML_OPERATOR_AVERAGE_POOLING","features":[349]},{"name":"DML_OPERATOR_AVERAGE_POOLING_GRAD","features":[349]},{"name":"DML_OPERATOR_BATCH_NORMALIZATION","features":[349]},{"name":"DML_OPERATOR_BATCH_NORMALIZATION_GRAD","features":[349]},{"name":"DML_OPERATOR_CAST","features":[349]},{"name":"DML_OPERATOR_CONVOLUTION","features":[349]},{"name":"DML_OPERATOR_CONVOLUTION_INTEGER","features":[349]},{"name":"DML_OPERATOR_CUMULATIVE_PRODUCT","features":[349]},{"name":"DML_OPERATOR_CUMULATIVE_SUMMATION","features":[349]},{"name":"DML_OPERATOR_DEPTH_TO_SPACE","features":[349]},{"name":"DML_OPERATOR_DEPTH_TO_SPACE1","features":[349]},{"name":"DML_OPERATOR_DESC","features":[349]},{"name":"DML_OPERATOR_DIAGONAL_MATRIX","features":[349]},{"name":"DML_OPERATOR_DYNAMIC_QUANTIZE_LINEAR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ABS","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ACOS","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ACOSH","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ADD","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ADD1","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ASIN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ASINH","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ATAN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ATANH","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ATAN_YX","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_AND","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_COUNT","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_NOT","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_OR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_SHIFT_LEFT","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_SHIFT_RIGHT","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_XOR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_CEIL","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_CLIP","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_CLIP_GRAD","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_CONSTANT_POW","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_COS","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_COSH","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_DEQUANTIZE_LINEAR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_DIFFERENCE_SQUARE","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_DIVIDE","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ERF","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_EXP","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_FLOOR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_IDENTITY","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_IF","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_IS_INFINITY","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_IS_NAN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOG","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_AND","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_EQUALS","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_GREATER_THAN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_GREATER_THAN_OR_EQUAL","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_LESS_THAN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_LESS_THAN_OR_EQUAL","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_NOT","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_OR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_XOR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_MAX","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_MEAN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_MIN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_MODULUS_FLOOR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_MODULUS_TRUNCATE","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_MULTIPLY","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_POW","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_QUANTIZED_LINEAR_ADD","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_QUANTIZE_LINEAR","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_RECIP","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_ROUND","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_SIGN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_SIN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_SINH","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_SQRT","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_SUBTRACT","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_TAN","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_TANH","features":[349]},{"name":"DML_OPERATOR_ELEMENT_WISE_THRESHOLD","features":[349]},{"name":"DML_OPERATOR_FILL_VALUE_CONSTANT","features":[349]},{"name":"DML_OPERATOR_FILL_VALUE_SEQUENCE","features":[349]},{"name":"DML_OPERATOR_GATHER","features":[349]},{"name":"DML_OPERATOR_GATHER_ELEMENTS","features":[349]},{"name":"DML_OPERATOR_GATHER_ND","features":[349]},{"name":"DML_OPERATOR_GATHER_ND1","features":[349]},{"name":"DML_OPERATOR_GEMM","features":[349]},{"name":"DML_OPERATOR_GRAPH_NODE_DESC","features":[349]},{"name":"DML_OPERATOR_GRU","features":[349]},{"name":"DML_OPERATOR_INVALID","features":[349]},{"name":"DML_OPERATOR_JOIN","features":[349]},{"name":"DML_OPERATOR_LOCAL_RESPONSE_NORMALIZATION","features":[349]},{"name":"DML_OPERATOR_LOCAL_RESPONSE_NORMALIZATION_GRAD","features":[349]},{"name":"DML_OPERATOR_LP_NORMALIZATION","features":[349]},{"name":"DML_OPERATOR_LP_POOLING","features":[349]},{"name":"DML_OPERATOR_LSTM","features":[349]},{"name":"DML_OPERATOR_MATRIX_MULTIPLY_INTEGER","features":[349]},{"name":"DML_OPERATOR_MAX_POOLING","features":[349]},{"name":"DML_OPERATOR_MAX_POOLING1","features":[349]},{"name":"DML_OPERATOR_MAX_POOLING2","features":[349]},{"name":"DML_OPERATOR_MAX_POOLING_GRAD","features":[349]},{"name":"DML_OPERATOR_MAX_UNPOOLING","features":[349]},{"name":"DML_OPERATOR_MEAN_VARIANCE_NORMALIZATION","features":[349]},{"name":"DML_OPERATOR_MEAN_VARIANCE_NORMALIZATION1","features":[349]},{"name":"DML_OPERATOR_NONZERO_COORDINATES","features":[349]},{"name":"DML_OPERATOR_ONE_HOT","features":[349]},{"name":"DML_OPERATOR_PADDING","features":[349]},{"name":"DML_OPERATOR_QUANTIZED_LINEAR_CONVOLUTION","features":[349]},{"name":"DML_OPERATOR_QUANTIZED_LINEAR_MATRIX_MULTIPLY","features":[349]},{"name":"DML_OPERATOR_RANDOM_GENERATOR","features":[349]},{"name":"DML_OPERATOR_REDUCE","features":[349]},{"name":"DML_OPERATOR_RESAMPLE","features":[349]},{"name":"DML_OPERATOR_RESAMPLE1","features":[349]},{"name":"DML_OPERATOR_RESAMPLE_GRAD","features":[349]},{"name":"DML_OPERATOR_REVERSE_SUBSEQUENCES","features":[349]},{"name":"DML_OPERATOR_RNN","features":[349]},{"name":"DML_OPERATOR_ROI_ALIGN","features":[349]},{"name":"DML_OPERATOR_ROI_ALIGN1","features":[349]},{"name":"DML_OPERATOR_ROI_POOLING","features":[349]},{"name":"DML_OPERATOR_SCATTER","features":[349]},{"name":"DML_OPERATOR_SCATTER_ELEMENTS","features":[349]},{"name":"DML_OPERATOR_SCATTER_ND","features":[349]},{"name":"DML_OPERATOR_SLICE","features":[349]},{"name":"DML_OPERATOR_SLICE1","features":[349]},{"name":"DML_OPERATOR_SLICE_GRAD","features":[349]},{"name":"DML_OPERATOR_SPACE_TO_DEPTH","features":[349]},{"name":"DML_OPERATOR_SPACE_TO_DEPTH1","features":[349]},{"name":"DML_OPERATOR_SPLIT","features":[349]},{"name":"DML_OPERATOR_TILE","features":[349]},{"name":"DML_OPERATOR_TOP_K","features":[349]},{"name":"DML_OPERATOR_TOP_K1","features":[349]},{"name":"DML_OPERATOR_TYPE","features":[349]},{"name":"DML_OPERATOR_UPSAMPLE_2D","features":[349]},{"name":"DML_OPERATOR_VALUE_SCALE_2D","features":[349]},{"name":"DML_OUTPUT_GRAPH_EDGE_DESC","features":[349]},{"name":"DML_PADDING_MODE","features":[349]},{"name":"DML_PADDING_MODE_CONSTANT","features":[349]},{"name":"DML_PADDING_MODE_EDGE","features":[349]},{"name":"DML_PADDING_MODE_REFLECTION","features":[349]},{"name":"DML_PADDING_MODE_SYMMETRIC","features":[349]},{"name":"DML_PADDING_OPERATOR_DESC","features":[349]},{"name":"DML_PERSISTENT_BUFFER_ALIGNMENT","features":[349]},{"name":"DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC","features":[349]},{"name":"DML_QUANTIZED_LINEAR_MATRIX_MULTIPLY_OPERATOR_DESC","features":[349]},{"name":"DML_RANDOM_GENERATOR_OPERATOR_DESC","features":[349]},{"name":"DML_RANDOM_GENERATOR_TYPE","features":[349]},{"name":"DML_RANDOM_GENERATOR_TYPE_PHILOX_4X32_10","features":[349]},{"name":"DML_RECURRENT_NETWORK_DIRECTION","features":[349]},{"name":"DML_RECURRENT_NETWORK_DIRECTION_BACKWARD","features":[349]},{"name":"DML_RECURRENT_NETWORK_DIRECTION_BIDIRECTIONAL","features":[349]},{"name":"DML_RECURRENT_NETWORK_DIRECTION_FORWARD","features":[349]},{"name":"DML_REDUCE_FUNCTION","features":[349]},{"name":"DML_REDUCE_FUNCTION_ARGMAX","features":[349]},{"name":"DML_REDUCE_FUNCTION_ARGMIN","features":[349]},{"name":"DML_REDUCE_FUNCTION_AVERAGE","features":[349]},{"name":"DML_REDUCE_FUNCTION_L1","features":[349]},{"name":"DML_REDUCE_FUNCTION_L2","features":[349]},{"name":"DML_REDUCE_FUNCTION_LOG_SUM","features":[349]},{"name":"DML_REDUCE_FUNCTION_LOG_SUM_EXP","features":[349]},{"name":"DML_REDUCE_FUNCTION_MAX","features":[349]},{"name":"DML_REDUCE_FUNCTION_MIN","features":[349]},{"name":"DML_REDUCE_FUNCTION_MULTIPLY","features":[349]},{"name":"DML_REDUCE_FUNCTION_SUM","features":[349]},{"name":"DML_REDUCE_FUNCTION_SUM_SQUARE","features":[349]},{"name":"DML_REDUCE_OPERATOR_DESC","features":[349]},{"name":"DML_RESAMPLE1_OPERATOR_DESC","features":[349]},{"name":"DML_RESAMPLE_GRAD_OPERATOR_DESC","features":[349]},{"name":"DML_RESAMPLE_OPERATOR_DESC","features":[349]},{"name":"DML_REVERSE_SUBSEQUENCES_OPERATOR_DESC","features":[349]},{"name":"DML_RNN_OPERATOR_DESC","features":[349]},{"name":"DML_ROI_ALIGN1_OPERATOR_DESC","features":[349,303]},{"name":"DML_ROI_ALIGN_OPERATOR_DESC","features":[349]},{"name":"DML_ROI_POOLING_OPERATOR_DESC","features":[349]},{"name":"DML_ROUNDING_MODE","features":[349]},{"name":"DML_ROUNDING_MODE_HALVES_TO_NEAREST_EVEN","features":[349]},{"name":"DML_ROUNDING_MODE_TOWARD_INFINITY","features":[349]},{"name":"DML_ROUNDING_MODE_TOWARD_ZERO","features":[349]},{"name":"DML_SCALAR_UNION","features":[349]},{"name":"DML_SCALE_BIAS","features":[349]},{"name":"DML_SCATTER_ND_OPERATOR_DESC","features":[349]},{"name":"DML_SCATTER_OPERATOR_DESC","features":[349]},{"name":"DML_SIZE_2D","features":[349]},{"name":"DML_SLICE1_OPERATOR_DESC","features":[349]},{"name":"DML_SLICE_GRAD_OPERATOR_DESC","features":[349]},{"name":"DML_SLICE_OPERATOR_DESC","features":[349]},{"name":"DML_SPACE_TO_DEPTH1_OPERATOR_DESC","features":[349]},{"name":"DML_SPACE_TO_DEPTH_OPERATOR_DESC","features":[349]},{"name":"DML_SPLIT_OPERATOR_DESC","features":[349]},{"name":"DML_TARGET_VERSION","features":[349]},{"name":"DML_TEMPORARY_BUFFER_ALIGNMENT","features":[349]},{"name":"DML_TENSOR_DATA_TYPE","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_FLOAT16","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_FLOAT32","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_FLOAT64","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_INT16","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_INT32","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_INT64","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_INT8","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_UINT16","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_UINT32","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_UINT64","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_UINT8","features":[349]},{"name":"DML_TENSOR_DATA_TYPE_UNKNOWN","features":[349]},{"name":"DML_TENSOR_DESC","features":[349]},{"name":"DML_TENSOR_DIMENSION_COUNT_MAX","features":[349]},{"name":"DML_TENSOR_DIMENSION_COUNT_MAX1","features":[349]},{"name":"DML_TENSOR_FLAGS","features":[349]},{"name":"DML_TENSOR_FLAG_NONE","features":[349]},{"name":"DML_TENSOR_FLAG_OWNED_BY_DML","features":[349]},{"name":"DML_TENSOR_TYPE","features":[349]},{"name":"DML_TENSOR_TYPE_BUFFER","features":[349]},{"name":"DML_TENSOR_TYPE_INVALID","features":[349]},{"name":"DML_TILE_OPERATOR_DESC","features":[349]},{"name":"DML_TOP_K1_OPERATOR_DESC","features":[349]},{"name":"DML_TOP_K_OPERATOR_DESC","features":[349]},{"name":"DML_UPSAMPLE_2D_OPERATOR_DESC","features":[349]},{"name":"DML_VALUE_SCALE_2D_OPERATOR_DESC","features":[349]},{"name":"IDMLBindingTable","features":[349]},{"name":"IDMLCommandRecorder","features":[349]},{"name":"IDMLCompiledOperator","features":[349]},{"name":"IDMLDebugDevice","features":[349]},{"name":"IDMLDevice","features":[349]},{"name":"IDMLDevice1","features":[349]},{"name":"IDMLDeviceChild","features":[349]},{"name":"IDMLDispatchable","features":[349]},{"name":"IDMLObject","features":[349]},{"name":"IDMLOperator","features":[349]},{"name":"IDMLOperatorInitializer","features":[349]},{"name":"IDMLPageable","features":[349]}],"362":[{"name":"IMLOperatorAttributes","features":[351]},{"name":"IMLOperatorKernel","features":[351]},{"name":"IMLOperatorKernelContext","features":[351]},{"name":"IMLOperatorKernelCreationContext","features":[351]},{"name":"IMLOperatorKernelFactory","features":[351]},{"name":"IMLOperatorRegistry","features":[351]},{"name":"IMLOperatorShapeInferenceContext","features":[351]},{"name":"IMLOperatorShapeInferrer","features":[351]},{"name":"IMLOperatorTensor","features":[351]},{"name":"IMLOperatorTensorShapeDescription","features":[351]},{"name":"IMLOperatorTypeInferenceContext","features":[351]},{"name":"IMLOperatorTypeInferrer","features":[351]},{"name":"IWinMLEvaluationContext","features":[351]},{"name":"IWinMLModel","features":[351]},{"name":"IWinMLRuntime","features":[351]},{"name":"IWinMLRuntimeFactory","features":[351]},{"name":"MLCreateOperatorRegistry","features":[351]},{"name":"MLOperatorAttribute","features":[351]},{"name":"MLOperatorAttributeNameValue","features":[351]},{"name":"MLOperatorAttributeType","features":[351]},{"name":"MLOperatorEdgeDescription","features":[351]},{"name":"MLOperatorEdgeType","features":[351]},{"name":"MLOperatorEdgeTypeConstraint","features":[351]},{"name":"MLOperatorExecutionType","features":[351]},{"name":"MLOperatorKernelDescription","features":[351]},{"name":"MLOperatorKernelOptions","features":[351]},{"name":"MLOperatorParameterOptions","features":[351]},{"name":"MLOperatorSchemaDescription","features":[351]},{"name":"MLOperatorSchemaEdgeDescription","features":[351]},{"name":"MLOperatorSchemaEdgeTypeFormat","features":[351]},{"name":"MLOperatorSetId","features":[351]},{"name":"MLOperatorTensorDataType","features":[351]},{"name":"WINML_BINDING_DESC","features":[351,350]},{"name":"WINML_BINDING_IMAGE","features":[351]},{"name":"WINML_BINDING_MAP","features":[351]},{"name":"WINML_BINDING_RESOURCE","features":[351]},{"name":"WINML_BINDING_SEQUENCE","features":[351]},{"name":"WINML_BINDING_TENSOR","features":[351]},{"name":"WINML_BINDING_TYPE","features":[351]},{"name":"WINML_BINDING_UNDEFINED","features":[351]},{"name":"WINML_FEATURE_IMAGE","features":[351]},{"name":"WINML_FEATURE_MAP","features":[351]},{"name":"WINML_FEATURE_SEQUENCE","features":[351]},{"name":"WINML_FEATURE_TENSOR","features":[351]},{"name":"WINML_FEATURE_TYPE","features":[351]},{"name":"WINML_FEATURE_UNDEFINED","features":[351]},{"name":"WINML_IMAGE_BINDING_DESC","features":[351]},{"name":"WINML_IMAGE_VARIABLE_DESC","features":[351]},{"name":"WINML_MAP_BINDING_DESC","features":[351]},{"name":"WINML_MAP_VARIABLE_DESC","features":[351]},{"name":"WINML_MODEL_DESC","features":[351]},{"name":"WINML_RESOURCE_BINDING_DESC","features":[351,350]},{"name":"WINML_RUNTIME_CNTK","features":[351]},{"name":"WINML_RUNTIME_TYPE","features":[351]},{"name":"WINML_SEQUENCE_BINDING_DESC","features":[351]},{"name":"WINML_SEQUENCE_VARIABLE_DESC","features":[351]},{"name":"WINML_TENSOR_BINDING_DESC","features":[351]},{"name":"WINML_TENSOR_BOOLEAN","features":[351]},{"name":"WINML_TENSOR_COMPLEX128","features":[351]},{"name":"WINML_TENSOR_COMPLEX64","features":[351]},{"name":"WINML_TENSOR_DATA_TYPE","features":[351]},{"name":"WINML_TENSOR_DIMENSION_COUNT_MAX","features":[351]},{"name":"WINML_TENSOR_DOUBLE","features":[351]},{"name":"WINML_TENSOR_FLOAT","features":[351]},{"name":"WINML_TENSOR_FLOAT16","features":[351]},{"name":"WINML_TENSOR_INT16","features":[351]},{"name":"WINML_TENSOR_INT32","features":[351]},{"name":"WINML_TENSOR_INT64","features":[351]},{"name":"WINML_TENSOR_INT8","features":[351]},{"name":"WINML_TENSOR_STRING","features":[351]},{"name":"WINML_TENSOR_UINT16","features":[351]},{"name":"WINML_TENSOR_UINT32","features":[351]},{"name":"WINML_TENSOR_UINT64","features":[351]},{"name":"WINML_TENSOR_UINT8","features":[351]},{"name":"WINML_TENSOR_UNDEFINED","features":[351]},{"name":"WINML_TENSOR_VARIABLE_DESC","features":[351]},{"name":"WINML_VARIABLE_DESC","features":[351,303]},{"name":"WinMLCreateRuntime","features":[351]}],"363":[{"name":"CLSID_IITCmdInt","features":[352]},{"name":"CLSID_IITDatabase","features":[352]},{"name":"CLSID_IITDatabaseLocal","features":[352]},{"name":"CLSID_IITGroupUpdate","features":[352]},{"name":"CLSID_IITIndexBuild","features":[352]},{"name":"CLSID_IITPropList","features":[352]},{"name":"CLSID_IITResultSet","features":[352]},{"name":"CLSID_IITSvMgr","features":[352]},{"name":"CLSID_IITWWFilterBuild","features":[352]},{"name":"CLSID_IITWordWheel","features":[352]},{"name":"CLSID_IITWordWheelLocal","features":[352]},{"name":"CLSID_IITWordWheelUpdate","features":[352]},{"name":"CLSID_ITEngStemmer","features":[352]},{"name":"CLSID_ITStdBreaker","features":[352]},{"name":"COLUMNSTATUS","features":[352]},{"name":"CProperty","features":[352,303]},{"name":"E_ALL_WILD","features":[352]},{"name":"E_ALREADYINIT","features":[352]},{"name":"E_ALREADYOPEN","features":[352]},{"name":"E_ASSERT","features":[352]},{"name":"E_BADBREAKER","features":[352]},{"name":"E_BADFILE","features":[352]},{"name":"E_BADFILTERSIZE","features":[352]},{"name":"E_BADFORMAT","features":[352]},{"name":"E_BADINDEXFLAGS","features":[352]},{"name":"E_BADPARAM","features":[352]},{"name":"E_BADRANGEOP","features":[352]},{"name":"E_BADVALUE","features":[352]},{"name":"E_BADVERSION","features":[352]},{"name":"E_CANTFINDDLL","features":[352]},{"name":"E_DISKFULL","features":[352]},{"name":"E_DUPLICATE","features":[352]},{"name":"E_EXPECTEDTERM","features":[352]},{"name":"E_FILECLOSE","features":[352]},{"name":"E_FILECREATE","features":[352]},{"name":"E_FILEDELETE","features":[352]},{"name":"E_FILEINVALID","features":[352]},{"name":"E_FILENOTFOUND","features":[352]},{"name":"E_FILEREAD","features":[352]},{"name":"E_FILESEEK","features":[352]},{"name":"E_FILEWRITE","features":[352]},{"name":"E_GETLASTERROR","features":[352]},{"name":"E_GROUPIDTOOBIG","features":[352]},{"name":"E_INTERRUPT","features":[352]},{"name":"E_INVALIDSTATE","features":[352]},{"name":"E_MISSINGPROP","features":[352]},{"name":"E_MISSLPAREN","features":[352]},{"name":"E_MISSQUOTE","features":[352]},{"name":"E_MISSRPAREN","features":[352]},{"name":"E_NAMETOOLONG","features":[352]},{"name":"E_NOHANDLE","features":[352]},{"name":"E_NOKEYPROP","features":[352]},{"name":"E_NOMERGEDDATA","features":[352]},{"name":"E_NOPERMISSION","features":[352]},{"name":"E_NOSTEMMER","features":[352]},{"name":"E_NOTEXIST","features":[352]},{"name":"E_NOTFOUND","features":[352]},{"name":"E_NOTINIT","features":[352]},{"name":"E_NOTOPEN","features":[352]},{"name":"E_NOTSUPPORTED","features":[352]},{"name":"E_NULLQUERY","features":[352]},{"name":"E_OUTOFRANGE","features":[352]},{"name":"E_PROPLISTEMPTY","features":[352]},{"name":"E_PROPLISTNOTEMPTY","features":[352]},{"name":"E_RESULTSETEMPTY","features":[352]},{"name":"E_STOPWORD","features":[352]},{"name":"E_TOODEEP","features":[352]},{"name":"E_TOOMANYCOLUMNS","features":[352]},{"name":"E_TOOMANYDUPS","features":[352]},{"name":"E_TOOMANYOBJECTS","features":[352]},{"name":"E_TOOMANYTITLES","features":[352]},{"name":"E_TOOMANYTOPICS","features":[352]},{"name":"E_TREETOOBIG","features":[352]},{"name":"E_UNKNOWN_TRANSPORT","features":[352]},{"name":"E_UNMATCHEDTYPE","features":[352]},{"name":"E_UNSUPPORTED_TRANSPORT","features":[352]},{"name":"E_WILD_IN_DTYPE","features":[352]},{"name":"E_WORDTOOLONG","features":[352]},{"name":"HHACT_BACK","features":[352]},{"name":"HHACT_CONTRACT","features":[352]},{"name":"HHACT_CUSTOMIZE","features":[352]},{"name":"HHACT_EXPAND","features":[352]},{"name":"HHACT_FORWARD","features":[352]},{"name":"HHACT_HIGHLIGHT","features":[352]},{"name":"HHACT_HOME","features":[352]},{"name":"HHACT_JUMP1","features":[352]},{"name":"HHACT_JUMP2","features":[352]},{"name":"HHACT_LAST_ENUM","features":[352]},{"name":"HHACT_NOTES","features":[352]},{"name":"HHACT_OPTIONS","features":[352]},{"name":"HHACT_PRINT","features":[352]},{"name":"HHACT_REFRESH","features":[352]},{"name":"HHACT_STOP","features":[352]},{"name":"HHACT_SYNC","features":[352]},{"name":"HHACT_TAB_CONTENTS","features":[352]},{"name":"HHACT_TAB_FAVORITES","features":[352]},{"name":"HHACT_TAB_HISTORY","features":[352]},{"name":"HHACT_TAB_INDEX","features":[352]},{"name":"HHACT_TAB_SEARCH","features":[352]},{"name":"HHACT_TOC_NEXT","features":[352]},{"name":"HHACT_TOC_PREV","features":[352]},{"name":"HHACT_ZOOM","features":[352]},{"name":"HHNTRACK","features":[352,303,353]},{"name":"HHN_FIRST","features":[352]},{"name":"HHN_LAST","features":[352]},{"name":"HHN_NAVCOMPLETE","features":[352]},{"name":"HHN_NOTIFY","features":[352,303,353]},{"name":"HHN_TRACK","features":[352]},{"name":"HHN_WINDOW_CREATE","features":[352]},{"name":"HHWIN_BUTTON_BACK","features":[352]},{"name":"HHWIN_BUTTON_BROWSE_BCK","features":[352]},{"name":"HHWIN_BUTTON_BROWSE_FWD","features":[352]},{"name":"HHWIN_BUTTON_CONTENTS","features":[352]},{"name":"HHWIN_BUTTON_EXPAND","features":[352]},{"name":"HHWIN_BUTTON_FAVORITES","features":[352]},{"name":"HHWIN_BUTTON_FORWARD","features":[352]},{"name":"HHWIN_BUTTON_HISTORY","features":[352]},{"name":"HHWIN_BUTTON_HOME","features":[352]},{"name":"HHWIN_BUTTON_INDEX","features":[352]},{"name":"HHWIN_BUTTON_JUMP1","features":[352]},{"name":"HHWIN_BUTTON_JUMP2","features":[352]},{"name":"HHWIN_BUTTON_NOTES","features":[352]},{"name":"HHWIN_BUTTON_OPTIONS","features":[352]},{"name":"HHWIN_BUTTON_PRINT","features":[352]},{"name":"HHWIN_BUTTON_REFRESH","features":[352]},{"name":"HHWIN_BUTTON_SEARCH","features":[352]},{"name":"HHWIN_BUTTON_STOP","features":[352]},{"name":"HHWIN_BUTTON_SYNC","features":[352]},{"name":"HHWIN_BUTTON_TOC_NEXT","features":[352]},{"name":"HHWIN_BUTTON_TOC_PREV","features":[352]},{"name":"HHWIN_BUTTON_ZOOM","features":[352]},{"name":"HHWIN_NAVTAB_BOTTOM","features":[352]},{"name":"HHWIN_NAVTAB_LEFT","features":[352]},{"name":"HHWIN_NAVTAB_TOP","features":[352]},{"name":"HHWIN_NAVTYPE_AUTHOR","features":[352]},{"name":"HHWIN_NAVTYPE_CUSTOM_FIRST","features":[352]},{"name":"HHWIN_NAVTYPE_FAVORITES","features":[352]},{"name":"HHWIN_NAVTYPE_HISTORY","features":[352]},{"name":"HHWIN_NAVTYPE_INDEX","features":[352]},{"name":"HHWIN_NAVTYPE_SEARCH","features":[352]},{"name":"HHWIN_NAVTYPE_TOC","features":[352]},{"name":"HHWIN_PARAM_CUR_TAB","features":[352]},{"name":"HHWIN_PARAM_EXPANSION","features":[352]},{"name":"HHWIN_PARAM_EXSTYLES","features":[352]},{"name":"HHWIN_PARAM_HISTORY_COUNT","features":[352]},{"name":"HHWIN_PARAM_INFOTYPES","features":[352]},{"name":"HHWIN_PARAM_NAV_WIDTH","features":[352]},{"name":"HHWIN_PARAM_PROPERTIES","features":[352]},{"name":"HHWIN_PARAM_RECT","features":[352]},{"name":"HHWIN_PARAM_SHOWSTATE","features":[352]},{"name":"HHWIN_PARAM_STYLES","features":[352]},{"name":"HHWIN_PARAM_TABORDER","features":[352]},{"name":"HHWIN_PARAM_TABPOS","features":[352]},{"name":"HHWIN_PARAM_TB_FLAGS","features":[352]},{"name":"HHWIN_PROP_AUTO_SYNC","features":[352]},{"name":"HHWIN_PROP_CHANGE_TITLE","features":[352]},{"name":"HHWIN_PROP_MENU","features":[352]},{"name":"HHWIN_PROP_NAV_ONLY_WIN","features":[352]},{"name":"HHWIN_PROP_NODEF_EXSTYLES","features":[352]},{"name":"HHWIN_PROP_NODEF_STYLES","features":[352]},{"name":"HHWIN_PROP_NOTB_TEXT","features":[352]},{"name":"HHWIN_PROP_NOTITLEBAR","features":[352]},{"name":"HHWIN_PROP_NO_TOOLBAR","features":[352]},{"name":"HHWIN_PROP_ONTOP","features":[352]},{"name":"HHWIN_PROP_POST_QUIT","features":[352]},{"name":"HHWIN_PROP_TAB_ADVSEARCH","features":[352]},{"name":"HHWIN_PROP_TAB_AUTOHIDESHOW","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM1","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM2","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM3","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM4","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM5","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM6","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM7","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM8","features":[352]},{"name":"HHWIN_PROP_TAB_CUSTOM9","features":[352]},{"name":"HHWIN_PROP_TAB_FAVORITES","features":[352]},{"name":"HHWIN_PROP_TAB_HISTORY","features":[352]},{"name":"HHWIN_PROP_TAB_SEARCH","features":[352]},{"name":"HHWIN_PROP_TRACKING","features":[352]},{"name":"HHWIN_PROP_TRI_PANE","features":[352]},{"name":"HHWIN_PROP_USER_POS","features":[352]},{"name":"HHWIN_TB_MARGIN","features":[352]},{"name":"HH_AKLINK","features":[352,303]},{"name":"HH_ALINK_LOOKUP","features":[352]},{"name":"HH_CLOSE_ALL","features":[352]},{"name":"HH_DISPLAY_INDEX","features":[352]},{"name":"HH_DISPLAY_SEARCH","features":[352]},{"name":"HH_DISPLAY_TEXT_POPUP","features":[352]},{"name":"HH_DISPLAY_TOC","features":[352]},{"name":"HH_DISPLAY_TOPIC","features":[352]},{"name":"HH_ENUM_CAT","features":[352]},{"name":"HH_ENUM_CATEGORY","features":[352]},{"name":"HH_ENUM_CATEGORY_IT","features":[352]},{"name":"HH_ENUM_INFO_TYPE","features":[352]},{"name":"HH_ENUM_IT","features":[352]},{"name":"HH_FTS_DEFAULT_PROXIMITY","features":[352]},{"name":"HH_FTS_QUERY","features":[352,303]},{"name":"HH_GET_LAST_ERROR","features":[352]},{"name":"HH_GET_WIN_HANDLE","features":[352]},{"name":"HH_GET_WIN_TYPE","features":[352]},{"name":"HH_GLOBAL_PROPERTY","features":[352]},{"name":"HH_GPROPID","features":[352]},{"name":"HH_GPROPID_CONTENT_LANGUAGE","features":[352]},{"name":"HH_GPROPID_CURRENT_SUBSET","features":[352]},{"name":"HH_GPROPID_SINGLETHREAD","features":[352]},{"name":"HH_GPROPID_TOOLBAR_MARGIN","features":[352]},{"name":"HH_GPROPID_UI_LANGUAGE","features":[352]},{"name":"HH_HELP_CONTEXT","features":[352]},{"name":"HH_HELP_FINDER","features":[352]},{"name":"HH_INITIALIZE","features":[352]},{"name":"HH_KEYWORD_LOOKUP","features":[352]},{"name":"HH_MAX_TABS","features":[352]},{"name":"HH_MAX_TABS_CUSTOM","features":[352]},{"name":"HH_POPUP","features":[352,303]},{"name":"HH_PRETRANSLATEMESSAGE","features":[352]},{"name":"HH_RESERVED1","features":[352]},{"name":"HH_RESERVED2","features":[352]},{"name":"HH_RESERVED3","features":[352]},{"name":"HH_RESET_IT_FILTER","features":[352]},{"name":"HH_SAFE_DISPLAY_TOPIC","features":[352]},{"name":"HH_SET_EXCLUSIVE_FILTER","features":[352]},{"name":"HH_SET_GLOBAL_PROPERTY","features":[352]},{"name":"HH_SET_INCLUSIVE_FILTER","features":[352]},{"name":"HH_SET_INFOTYPE","features":[352]},{"name":"HH_SET_INFO_TYPE","features":[352]},{"name":"HH_SET_QUERYSERVICE","features":[352]},{"name":"HH_SET_WIN_TYPE","features":[352]},{"name":"HH_SYNC","features":[352]},{"name":"HH_TAB_AUTHOR","features":[352]},{"name":"HH_TAB_CONTENTS","features":[352]},{"name":"HH_TAB_CUSTOM_FIRST","features":[352]},{"name":"HH_TAB_CUSTOM_LAST","features":[352]},{"name":"HH_TAB_FAVORITES","features":[352]},{"name":"HH_TAB_HISTORY","features":[352]},{"name":"HH_TAB_INDEX","features":[352]},{"name":"HH_TAB_SEARCH","features":[352]},{"name":"HH_TP_HELP_CONTEXTMENU","features":[352]},{"name":"HH_TP_HELP_WM_HELP","features":[352]},{"name":"HH_UNINITIALIZE","features":[352]},{"name":"HH_WINTYPE","features":[352,303]},{"name":"HTML_HELP_COMMAND","features":[352]},{"name":"HtmlHelpA","features":[352,303]},{"name":"HtmlHelpW","features":[352,303]},{"name":"IDTB_BACK","features":[352]},{"name":"IDTB_BROWSE_BACK","features":[352]},{"name":"IDTB_BROWSE_FWD","features":[352]},{"name":"IDTB_CONTENTS","features":[352]},{"name":"IDTB_CONTRACT","features":[352]},{"name":"IDTB_CUSTOMIZE","features":[352]},{"name":"IDTB_EXPAND","features":[352]},{"name":"IDTB_FAVORITES","features":[352]},{"name":"IDTB_FORWARD","features":[352]},{"name":"IDTB_HISTORY","features":[352]},{"name":"IDTB_HOME","features":[352]},{"name":"IDTB_INDEX","features":[352]},{"name":"IDTB_JUMP1","features":[352]},{"name":"IDTB_JUMP2","features":[352]},{"name":"IDTB_NOTES","features":[352]},{"name":"IDTB_OPTIONS","features":[352]},{"name":"IDTB_PRINT","features":[352]},{"name":"IDTB_REFRESH","features":[352]},{"name":"IDTB_SEARCH","features":[352]},{"name":"IDTB_STOP","features":[352]},{"name":"IDTB_SYNC","features":[352]},{"name":"IDTB_TOC_NEXT","features":[352]},{"name":"IDTB_TOC_PREV","features":[352]},{"name":"IDTB_ZOOM","features":[352]},{"name":"IITDatabase","features":[352]},{"name":"IITPropList","features":[352,354]},{"name":"IITResultSet","features":[352]},{"name":"IITWBC_BREAK_ACCEPT_WILDCARDS","features":[352]},{"name":"IITWBC_BREAK_AND_STEM","features":[352]},{"name":"IStemSink","features":[352]},{"name":"IStemmerConfig","features":[352]},{"name":"ITWW_CBKEY_MAX","features":[352]},{"name":"ITWW_OPEN_NOCONNECT","features":[352]},{"name":"IT_EXCLUSIVE","features":[352]},{"name":"IT_HIDDEN","features":[352]},{"name":"IT_INCLUSIVE","features":[352]},{"name":"IWordBreakerConfig","features":[352]},{"name":"MAX_COLUMNS","features":[352]},{"name":"PFNCOLHEAPFREE","features":[352]},{"name":"PRIORITY","features":[352]},{"name":"PRIORITY_HIGH","features":[352]},{"name":"PRIORITY_LOW","features":[352]},{"name":"PRIORITY_NORMAL","features":[352]},{"name":"PROP_ADD","features":[352]},{"name":"PROP_DELETE","features":[352]},{"name":"PROP_UPDATE","features":[352]},{"name":"ROWSTATUS","features":[352]},{"name":"STDPROP_DISPLAYKEY","features":[352]},{"name":"STDPROP_INDEX_BREAK","features":[352]},{"name":"STDPROP_INDEX_DTYPE","features":[352]},{"name":"STDPROP_INDEX_LENGTH","features":[352]},{"name":"STDPROP_INDEX_TERM","features":[352]},{"name":"STDPROP_INDEX_TERM_RAW_LENGTH","features":[352]},{"name":"STDPROP_INDEX_TEXT","features":[352]},{"name":"STDPROP_INDEX_VFLD","features":[352]},{"name":"STDPROP_KEY","features":[352]},{"name":"STDPROP_SORTKEY","features":[352]},{"name":"STDPROP_SORTORDINAL","features":[352]},{"name":"STDPROP_TITLE","features":[352]},{"name":"STDPROP_UID","features":[352]},{"name":"STDPROP_USERDATA","features":[352]},{"name":"STDPROP_USERPROP_BASE","features":[352]},{"name":"STDPROP_USERPROP_MAX","features":[352]},{"name":"SZ_WWDEST_GLOBAL","features":[352]},{"name":"SZ_WWDEST_KEY","features":[352]},{"name":"SZ_WWDEST_OCC","features":[352]},{"name":"TYPE_POINTER","features":[352]},{"name":"TYPE_STRING","features":[352]},{"name":"TYPE_VALUE","features":[352]}],"364":[{"name":"DRMACTSERVINFOVERSION","features":[355]},{"name":"DRMATTESTTYPE","features":[355]},{"name":"DRMATTESTTYPE_FULLENVIRONMENT","features":[355]},{"name":"DRMATTESTTYPE_HASHONLY","features":[355]},{"name":"DRMAcquireAdvisories","features":[355]},{"name":"DRMAcquireIssuanceLicenseTemplate","features":[355]},{"name":"DRMAcquireLicense","features":[355]},{"name":"DRMActivate","features":[355,303]},{"name":"DRMAddLicense","features":[355]},{"name":"DRMAddRightWithUser","features":[355]},{"name":"DRMAttest","features":[355]},{"name":"DRMBINDINGFLAGS_IGNORE_VALIDITY_INTERVALS","features":[355]},{"name":"DRMBOUNDLICENSEPARAMS","features":[355]},{"name":"DRMBOUNDLICENSEPARAMSVERSION","features":[355]},{"name":"DRMCALLBACK","features":[355]},{"name":"DRMCALLBACKVERSION","features":[355]},{"name":"DRMCLIENTSTRUCTVERSION","features":[355]},{"name":"DRMCheckSecurity","features":[355]},{"name":"DRMClearAllRights","features":[355]},{"name":"DRMCloseEnvironmentHandle","features":[355]},{"name":"DRMCloseHandle","features":[355]},{"name":"DRMClosePubHandle","features":[355]},{"name":"DRMCloseQueryHandle","features":[355]},{"name":"DRMCloseSession","features":[355]},{"name":"DRMConstructCertificateChain","features":[355]},{"name":"DRMCreateBoundLicense","features":[355]},{"name":"DRMCreateClientSession","features":[355]},{"name":"DRMCreateEnablingBitsDecryptor","features":[355]},{"name":"DRMCreateEnablingBitsEncryptor","features":[355]},{"name":"DRMCreateEnablingPrincipal","features":[355]},{"name":"DRMCreateIssuanceLicense","features":[355,303]},{"name":"DRMCreateLicenseStorageSession","features":[355]},{"name":"DRMCreateRight","features":[355,303]},{"name":"DRMCreateUser","features":[355]},{"name":"DRMDecode","features":[355]},{"name":"DRMDeconstructCertificateChain","features":[355]},{"name":"DRMDecrypt","features":[355]},{"name":"DRMDeleteLicense","features":[355]},{"name":"DRMDuplicateEnvironmentHandle","features":[355]},{"name":"DRMDuplicateHandle","features":[355]},{"name":"DRMDuplicatePubHandle","features":[355]},{"name":"DRMDuplicateSession","features":[355]},{"name":"DRMENCODINGTYPE","features":[355]},{"name":"DRMENCODINGTYPE_BASE64","features":[355]},{"name":"DRMENCODINGTYPE_LONG","features":[355]},{"name":"DRMENCODINGTYPE_RAW","features":[355]},{"name":"DRMENCODINGTYPE_STRING","features":[355]},{"name":"DRMENCODINGTYPE_TIME","features":[355]},{"name":"DRMENCODINGTYPE_UINT","features":[355]},{"name":"DRMENVHANDLE_INVALID","features":[355]},{"name":"DRMEncode","features":[355]},{"name":"DRMEncrypt","features":[355]},{"name":"DRMEnumerateLicense","features":[355,303]},{"name":"DRMGLOBALOPTIONS","features":[355]},{"name":"DRMGLOBALOPTIONS_USE_SERVERSECURITYPROCESSOR","features":[355]},{"name":"DRMGLOBALOPTIONS_USE_WINHTTP","features":[355]},{"name":"DRMGetApplicationSpecificData","features":[355]},{"name":"DRMGetBoundLicenseAttribute","features":[355]},{"name":"DRMGetBoundLicenseAttributeCount","features":[355]},{"name":"DRMGetBoundLicenseObject","features":[355]},{"name":"DRMGetBoundLicenseObjectCount","features":[355]},{"name":"DRMGetCertificateChainCount","features":[355]},{"name":"DRMGetClientVersion","features":[355]},{"name":"DRMGetEnvironmentInfo","features":[355]},{"name":"DRMGetInfo","features":[355]},{"name":"DRMGetIntervalTime","features":[355]},{"name":"DRMGetIssuanceLicenseInfo","features":[355,303]},{"name":"DRMGetIssuanceLicenseTemplate","features":[355]},{"name":"DRMGetMetaData","features":[355]},{"name":"DRMGetNameAndDescription","features":[355]},{"name":"DRMGetOwnerLicense","features":[355]},{"name":"DRMGetProcAddress","features":[355,303]},{"name":"DRMGetRevocationPoint","features":[355,303]},{"name":"DRMGetRightExtendedInfo","features":[355]},{"name":"DRMGetRightInfo","features":[355,303]},{"name":"DRMGetSecurityProvider","features":[355]},{"name":"DRMGetServiceLocation","features":[355]},{"name":"DRMGetSignedIssuanceLicense","features":[355]},{"name":"DRMGetSignedIssuanceLicenseEx","features":[355]},{"name":"DRMGetTime","features":[355,303]},{"name":"DRMGetUnboundLicenseAttribute","features":[355]},{"name":"DRMGetUnboundLicenseAttributeCount","features":[355]},{"name":"DRMGetUnboundLicenseObject","features":[355]},{"name":"DRMGetUnboundLicenseObjectCount","features":[355]},{"name":"DRMGetUsagePolicy","features":[355,303]},{"name":"DRMGetUserInfo","features":[355]},{"name":"DRMGetUserRights","features":[355]},{"name":"DRMGetUsers","features":[355]},{"name":"DRMHANDLE_INVALID","features":[355]},{"name":"DRMHSESSION_INVALID","features":[355]},{"name":"DRMID","features":[355]},{"name":"DRMIDVERSION","features":[355]},{"name":"DRMInitEnvironment","features":[355]},{"name":"DRMIsActivated","features":[355]},{"name":"DRMIsWindowProtected","features":[355,303]},{"name":"DRMLICENSEACQDATAVERSION","features":[355]},{"name":"DRMLoadLibrary","features":[355]},{"name":"DRMPUBHANDLE_INVALID","features":[355]},{"name":"DRMParseUnboundLicense","features":[355]},{"name":"DRMQUERYHANDLE_INVALID","features":[355]},{"name":"DRMRegisterContent","features":[355,303]},{"name":"DRMRegisterProtectedWindow","features":[355,303]},{"name":"DRMRegisterRevocationList","features":[355]},{"name":"DRMRepair","features":[355]},{"name":"DRMSECURITYPROVIDERTYPE","features":[355]},{"name":"DRMSECURITYPROVIDERTYPE_SOFTWARESECREP","features":[355]},{"name":"DRMSPECTYPE","features":[355]},{"name":"DRMSPECTYPE_FILENAME","features":[355]},{"name":"DRMSPECTYPE_UNKNOWN","features":[355]},{"name":"DRMSetApplicationSpecificData","features":[355,303]},{"name":"DRMSetGlobalOptions","features":[355]},{"name":"DRMSetIntervalTime","features":[355]},{"name":"DRMSetMetaData","features":[355]},{"name":"DRMSetNameAndDescription","features":[355,303]},{"name":"DRMSetRevocationPoint","features":[355,303]},{"name":"DRMSetUsagePolicy","features":[355,303]},{"name":"DRMTIMETYPE","features":[355]},{"name":"DRMTIMETYPE_SYSTEMLOCAL","features":[355]},{"name":"DRMTIMETYPE_SYSTEMUTC","features":[355]},{"name":"DRMVerify","features":[355]},{"name":"DRM_ACTIVATE_CANCEL","features":[355]},{"name":"DRM_ACTIVATE_DELAYED","features":[355]},{"name":"DRM_ACTIVATE_GROUPIDENTITY","features":[355]},{"name":"DRM_ACTIVATE_MACHINE","features":[355]},{"name":"DRM_ACTIVATE_SHARED_GROUPIDENTITY","features":[355]},{"name":"DRM_ACTIVATE_SILENT","features":[355]},{"name":"DRM_ACTIVATE_TEMPORARY","features":[355]},{"name":"DRM_ACTSERV_INFO","features":[355]},{"name":"DRM_ADD_LICENSE_NOPERSIST","features":[355]},{"name":"DRM_ADD_LICENSE_PERSIST","features":[355]},{"name":"DRM_AILT_CANCEL","features":[355]},{"name":"DRM_AILT_NONSILENT","features":[355]},{"name":"DRM_AILT_OBTAIN_ALL","features":[355]},{"name":"DRM_AL_CANCEL","features":[355]},{"name":"DRM_AL_FETCHNOADVISORY","features":[355]},{"name":"DRM_AL_NONSILENT","features":[355]},{"name":"DRM_AL_NOPERSIST","features":[355]},{"name":"DRM_AL_NOUI","features":[355]},{"name":"DRM_AUTO_GENERATE_KEY","features":[355]},{"name":"DRM_CLIENT_VERSION_INFO","features":[355]},{"name":"DRM_DEFAULTGROUPIDTYPE_PASSPORT","features":[355]},{"name":"DRM_DEFAULTGROUPIDTYPE_WINDOWSAUTH","features":[355]},{"name":"DRM_DISTRIBUTION_POINT_INFO","features":[355]},{"name":"DRM_DISTRIBUTION_POINT_LICENSE_ACQUISITION","features":[355]},{"name":"DRM_DISTRIBUTION_POINT_PUBLISHING","features":[355]},{"name":"DRM_DISTRIBUTION_POINT_REFERRAL_INFO","features":[355]},{"name":"DRM_EL_CLIENTLICENSOR","features":[355]},{"name":"DRM_EL_CLIENTLICENSOR_LID","features":[355]},{"name":"DRM_EL_EUL","features":[355]},{"name":"DRM_EL_EUL_LID","features":[355]},{"name":"DRM_EL_EXPIRED","features":[355]},{"name":"DRM_EL_GROUPIDENTITY","features":[355]},{"name":"DRM_EL_GROUPIDENTITY_LID","features":[355]},{"name":"DRM_EL_GROUPIDENTITY_NAME","features":[355]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE","features":[355]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE_LID","features":[355]},{"name":"DRM_EL_ISSUERNAME","features":[355]},{"name":"DRM_EL_MACHINE","features":[355]},{"name":"DRM_EL_REVOCATIONLIST","features":[355]},{"name":"DRM_EL_REVOCATIONLIST_LID","features":[355]},{"name":"DRM_EL_SPECIFIED_CLIENTLICENSOR","features":[355]},{"name":"DRM_EL_SPECIFIED_GROUPIDENTITY","features":[355]},{"name":"DRM_LICENSE_ACQ_DATA","features":[355]},{"name":"DRM_LOCKBOXTYPE_BLACKBOX","features":[355]},{"name":"DRM_LOCKBOXTYPE_DEFAULT","features":[355]},{"name":"DRM_LOCKBOXTYPE_NONE","features":[355]},{"name":"DRM_LOCKBOXTYPE_WHITEBOX","features":[355]},{"name":"DRM_MSG_ACQUIRE_ADVISORY","features":[355]},{"name":"DRM_MSG_ACQUIRE_CLIENTLICENSOR","features":[355]},{"name":"DRM_MSG_ACQUIRE_ISSUANCE_LICENSE_TEMPLATE","features":[355]},{"name":"DRM_MSG_ACQUIRE_LICENSE","features":[355]},{"name":"DRM_MSG_ACTIVATE_GROUPIDENTITY","features":[355]},{"name":"DRM_MSG_ACTIVATE_MACHINE","features":[355]},{"name":"DRM_MSG_SIGN_ISSUANCE_LICENSE","features":[355]},{"name":"DRM_OWNER_LICENSE_NOPERSIST","features":[355]},{"name":"DRM_REUSE_KEY","features":[355]},{"name":"DRM_SERVER_ISSUANCELICENSE","features":[355]},{"name":"DRM_SERVICE_LOCATION_ENTERPRISE","features":[355]},{"name":"DRM_SERVICE_LOCATION_INTERNET","features":[355]},{"name":"DRM_SERVICE_TYPE_ACTIVATION","features":[355]},{"name":"DRM_SERVICE_TYPE_CERTIFICATION","features":[355]},{"name":"DRM_SERVICE_TYPE_CLIENTLICENSOR","features":[355]},{"name":"DRM_SERVICE_TYPE_PUBLISHING","features":[355]},{"name":"DRM_SERVICE_TYPE_SILENT","features":[355]},{"name":"DRM_SIGN_CANCEL","features":[355]},{"name":"DRM_SIGN_OFFLINE","features":[355]},{"name":"DRM_SIGN_ONLINE","features":[355]},{"name":"DRM_STATUS_MSG","features":[355]},{"name":"DRM_USAGEPOLICY_TYPE","features":[355]},{"name":"DRM_USAGEPOLICY_TYPE_BYDIGEST","features":[355]},{"name":"DRM_USAGEPOLICY_TYPE_BYNAME","features":[355]},{"name":"DRM_USAGEPOLICY_TYPE_BYPUBLICKEY","features":[355]},{"name":"DRM_USAGEPOLICY_TYPE_OSEXCLUSION","features":[355]},{"name":"MSDRM_CLIENT_ZONE","features":[355]},{"name":"MSDRM_POLICY_ZONE","features":[355]}],"365":[{"name":"DISPID_DOM_ATTRIBUTE","features":[356]},{"name":"DISPID_DOM_ATTRIBUTE_GETNAME","features":[356]},{"name":"DISPID_DOM_ATTRIBUTE_SPECIFIED","features":[356]},{"name":"DISPID_DOM_ATTRIBUTE_VALUE","features":[356]},{"name":"DISPID_DOM_ATTRIBUTE__TOP","features":[356]},{"name":"DISPID_DOM_BASE","features":[356]},{"name":"DISPID_DOM_COLLECTION_BASE","features":[356]},{"name":"DISPID_DOM_COLLECTION_MAX","features":[356]},{"name":"DISPID_DOM_DATA","features":[356]},{"name":"DISPID_DOM_DATA_APPEND","features":[356]},{"name":"DISPID_DOM_DATA_DATA","features":[356]},{"name":"DISPID_DOM_DATA_DELETE","features":[356]},{"name":"DISPID_DOM_DATA_INSERT","features":[356]},{"name":"DISPID_DOM_DATA_LENGTH","features":[356]},{"name":"DISPID_DOM_DATA_REPLACE","features":[356]},{"name":"DISPID_DOM_DATA_SUBSTRING","features":[356]},{"name":"DISPID_DOM_DATA__TOP","features":[356]},{"name":"DISPID_DOM_DOCUMENT","features":[356]},{"name":"DISPID_DOM_DOCUMENTFRAGMENT","features":[356]},{"name":"DISPID_DOM_DOCUMENTFRAGMENT__TOP","features":[356]},{"name":"DISPID_DOM_DOCUMENTTYPE","features":[356]},{"name":"DISPID_DOM_DOCUMENTTYPE_ENTITIES","features":[356]},{"name":"DISPID_DOM_DOCUMENTTYPE_NAME","features":[356]},{"name":"DISPID_DOM_DOCUMENTTYPE_NOTATIONS","features":[356]},{"name":"DISPID_DOM_DOCUMENTTYPE__TOP","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATEATTRIBUTE","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATECDATASECTION","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATECOMMENT","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATEDOCUMENTFRAGMENT","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATEELEMENT","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATEENTITY","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATEENTITYREFERENCE","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATEPROCESSINGINSTRUCTION","features":[356]},{"name":"DISPID_DOM_DOCUMENT_CREATETEXTNODE","features":[356]},{"name":"DISPID_DOM_DOCUMENT_DOCTYPE","features":[356]},{"name":"DISPID_DOM_DOCUMENT_DOCUMENTELEMENT","features":[356]},{"name":"DISPID_DOM_DOCUMENT_GETELEMENTSBYTAGNAME","features":[356]},{"name":"DISPID_DOM_DOCUMENT_IMPLEMENTATION","features":[356]},{"name":"DISPID_DOM_DOCUMENT_TOP","features":[356]},{"name":"DISPID_DOM_ELEMENT","features":[356]},{"name":"DISPID_DOM_ELEMENT_GETATTRIBUTE","features":[356]},{"name":"DISPID_DOM_ELEMENT_GETATTRIBUTENODE","features":[356]},{"name":"DISPID_DOM_ELEMENT_GETATTRIBUTES","features":[356]},{"name":"DISPID_DOM_ELEMENT_GETELEMENTSBYTAGNAME","features":[356]},{"name":"DISPID_DOM_ELEMENT_GETTAGNAME","features":[356]},{"name":"DISPID_DOM_ELEMENT_NORMALIZE","features":[356]},{"name":"DISPID_DOM_ELEMENT_REMOVEATTRIBUTE","features":[356]},{"name":"DISPID_DOM_ELEMENT_REMOVEATTRIBUTENODE","features":[356]},{"name":"DISPID_DOM_ELEMENT_SETATTRIBUTE","features":[356]},{"name":"DISPID_DOM_ELEMENT_SETATTRIBUTENODE","features":[356]},{"name":"DISPID_DOM_ELEMENT__TOP","features":[356]},{"name":"DISPID_DOM_ENTITY","features":[356]},{"name":"DISPID_DOM_ENTITY_NOTATIONNAME","features":[356]},{"name":"DISPID_DOM_ENTITY_PUBLICID","features":[356]},{"name":"DISPID_DOM_ENTITY_SYSTEMID","features":[356]},{"name":"DISPID_DOM_ENTITY__TOP","features":[356]},{"name":"DISPID_DOM_ERROR","features":[356]},{"name":"DISPID_DOM_ERROR2","features":[356]},{"name":"DISPID_DOM_ERROR2_ALLERRORS","features":[356]},{"name":"DISPID_DOM_ERROR2_ERRORPARAMETERS","features":[356]},{"name":"DISPID_DOM_ERROR2_ERRORPARAMETERSCOUNT","features":[356]},{"name":"DISPID_DOM_ERROR2_ERRORXPATH","features":[356]},{"name":"DISPID_DOM_ERROR2__TOP","features":[356]},{"name":"DISPID_DOM_ERRORCOLLECTION","features":[356]},{"name":"DISPID_DOM_ERRORCOLLECTION_LENGTH","features":[356]},{"name":"DISPID_DOM_ERRORCOLLECTION_NEXT","features":[356]},{"name":"DISPID_DOM_ERRORCOLLECTION_RESET","features":[356]},{"name":"DISPID_DOM_ERRORCOLLECTION__TOP","features":[356]},{"name":"DISPID_DOM_ERROR_ERRORCODE","features":[356]},{"name":"DISPID_DOM_ERROR_FILEPOS","features":[356]},{"name":"DISPID_DOM_ERROR_LINE","features":[356]},{"name":"DISPID_DOM_ERROR_LINEPOS","features":[356]},{"name":"DISPID_DOM_ERROR_REASON","features":[356]},{"name":"DISPID_DOM_ERROR_SRCTEXT","features":[356]},{"name":"DISPID_DOM_ERROR_URL","features":[356]},{"name":"DISPID_DOM_ERROR__TOP","features":[356]},{"name":"DISPID_DOM_IMPLEMENTATION","features":[356]},{"name":"DISPID_DOM_IMPLEMENTATION_HASFEATURE","features":[356]},{"name":"DISPID_DOM_IMPLEMENTATION__TOP","features":[356]},{"name":"DISPID_DOM_NAMEDNODEMAP","features":[356]},{"name":"DISPID_DOM_NAMEDNODEMAP_GETNAMEDITEM","features":[356]},{"name":"DISPID_DOM_NAMEDNODEMAP_REMOVENAMEDITEM","features":[356]},{"name":"DISPID_DOM_NAMEDNODEMAP_SETNAMEDITEM","features":[356]},{"name":"DISPID_DOM_NODE","features":[356]},{"name":"DISPID_DOM_NODELIST","features":[356]},{"name":"DISPID_DOM_NODELIST_ITEM","features":[356]},{"name":"DISPID_DOM_NODELIST_LENGTH","features":[356]},{"name":"DISPID_DOM_NODE_APPENDCHILD","features":[356]},{"name":"DISPID_DOM_NODE_ATTRIBUTES","features":[356]},{"name":"DISPID_DOM_NODE_CHILDNODES","features":[356]},{"name":"DISPID_DOM_NODE_CLONENODE","features":[356]},{"name":"DISPID_DOM_NODE_FIRSTCHILD","features":[356]},{"name":"DISPID_DOM_NODE_HASCHILDNODES","features":[356]},{"name":"DISPID_DOM_NODE_INSERTBEFORE","features":[356]},{"name":"DISPID_DOM_NODE_LASTCHILD","features":[356]},{"name":"DISPID_DOM_NODE_NEXTSIBLING","features":[356]},{"name":"DISPID_DOM_NODE_NODENAME","features":[356]},{"name":"DISPID_DOM_NODE_NODETYPE","features":[356]},{"name":"DISPID_DOM_NODE_NODETYPEENUM","features":[356]},{"name":"DISPID_DOM_NODE_NODEVALUE","features":[356]},{"name":"DISPID_DOM_NODE_OWNERDOC","features":[356]},{"name":"DISPID_DOM_NODE_PARENTNODE","features":[356]},{"name":"DISPID_DOM_NODE_PREVIOUSSIBLING","features":[356]},{"name":"DISPID_DOM_NODE_REMOVECHILD","features":[356]},{"name":"DISPID_DOM_NODE_REPLACECHILD","features":[356]},{"name":"DISPID_DOM_NOTATION","features":[356]},{"name":"DISPID_DOM_NOTATION_PUBLICID","features":[356]},{"name":"DISPID_DOM_NOTATION_SYSTEMID","features":[356]},{"name":"DISPID_DOM_NOTATION__TOP","features":[356]},{"name":"DISPID_DOM_PI","features":[356]},{"name":"DISPID_DOM_PI_DATA","features":[356]},{"name":"DISPID_DOM_PI_TARGET","features":[356]},{"name":"DISPID_DOM_PI__TOP","features":[356]},{"name":"DISPID_DOM_TEXT","features":[356]},{"name":"DISPID_DOM_TEXT_JOINTEXT","features":[356]},{"name":"DISPID_DOM_TEXT_SPLITTEXT","features":[356]},{"name":"DISPID_DOM_TEXT__TOP","features":[356]},{"name":"DISPID_DOM_W3CWRAPPERS","features":[356]},{"name":"DISPID_DOM_W3CWRAPPERS_TOP","features":[356]},{"name":"DISPID_DOM__TOP","features":[356]},{"name":"DISPID_MXXML_FILTER","features":[356]},{"name":"DISPID_MXXML_FILTER_CONTENTHANDLER","features":[356]},{"name":"DISPID_MXXML_FILTER_DTDHANDLER","features":[356]},{"name":"DISPID_MXXML_FILTER_ENTITYRESOLVER","features":[356]},{"name":"DISPID_MXXML_FILTER_ERRORHANDLER","features":[356]},{"name":"DISPID_MXXML_FILTER_GETFEATURE","features":[356]},{"name":"DISPID_MXXML_FILTER_GETPROPERTY","features":[356]},{"name":"DISPID_MXXML_FILTER_PUTFEATURE","features":[356]},{"name":"DISPID_MXXML_FILTER_PUTPROPERTY","features":[356]},{"name":"DISPID_MXXML_FILTER__BASE","features":[356]},{"name":"DISPID_MXXML_FILTER__TOP","features":[356]},{"name":"DISPID_MX_ATTRIBUTES","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_ADDATTRIBUTE","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_ADDATTRIBUTEFROMINDEX","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_CLEAR","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_REMOVEATTRIBUTE","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_SETATTRIBUTE","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_SETATTRIBUTES","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_SETLOCALNAME","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_SETQNAME","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_SETTYPE","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_SETURI","features":[356]},{"name":"DISPID_MX_ATTRIBUTES_SETVALUE","features":[356]},{"name":"DISPID_MX_ATTRIBUTES__BASE","features":[356]},{"name":"DISPID_MX_ATTRIBUTES__TOP","features":[356]},{"name":"DISPID_MX_NSMGR","features":[356]},{"name":"DISPID_MX_NSMGR_ALLOWOVERRIDE","features":[356]},{"name":"DISPID_MX_NSMGR_DECLAREPREFIX","features":[356]},{"name":"DISPID_MX_NSMGR_GETDECLAREDPREFIXES","features":[356]},{"name":"DISPID_MX_NSMGR_GETPREFIXES","features":[356]},{"name":"DISPID_MX_NSMGR_GETURI","features":[356]},{"name":"DISPID_MX_NSMGR_GETURIFROMNODE","features":[356]},{"name":"DISPID_MX_NSMGR_LENGTH","features":[356]},{"name":"DISPID_MX_NSMGR_POPCONTEXT","features":[356]},{"name":"DISPID_MX_NSMGR_PUSHCONTEXT","features":[356]},{"name":"DISPID_MX_NSMGR_PUSHNODECONTEXT","features":[356]},{"name":"DISPID_MX_NSMGR_RESET","features":[356]},{"name":"DISPID_MX_NSMGR__BASE","features":[356]},{"name":"DISPID_MX_NSMGR__TOP","features":[356]},{"name":"DISPID_MX_READER_CONTROL","features":[356]},{"name":"DISPID_MX_READER_CONTROL_ABORT","features":[356]},{"name":"DISPID_MX_READER_CONTROL_RESUME","features":[356]},{"name":"DISPID_MX_READER_CONTROL_SUSPEND","features":[356]},{"name":"DISPID_MX_READER_CONTROL__BASE","features":[356]},{"name":"DISPID_MX_READER_CONTROL__TOP","features":[356]},{"name":"DISPID_MX_SCHEMADECLHANDLER","features":[356]},{"name":"DISPID_MX_SCHEMADECLHANDLER_SCHEMAELEMENTDECL","features":[356]},{"name":"DISPID_MX_SCHEMADECLHANDLER__BASE","features":[356]},{"name":"DISPID_MX_SCHEMADECLHANDLER__TOP","features":[356]},{"name":"DISPID_MX_WRITER","features":[356]},{"name":"DISPID_MX_WRITER_BYTEORDERMARK","features":[356]},{"name":"DISPID_MX_WRITER_DESTINATION","features":[356]},{"name":"DISPID_MX_WRITER_DISABLEOUTPUTESCAPING","features":[356]},{"name":"DISPID_MX_WRITER_ENCODING","features":[356]},{"name":"DISPID_MX_WRITER_FLUSH","features":[356]},{"name":"DISPID_MX_WRITER_INDENT","features":[356]},{"name":"DISPID_MX_WRITER_OMITXMLDECLARATION","features":[356]},{"name":"DISPID_MX_WRITER_OUTPUT","features":[356]},{"name":"DISPID_MX_WRITER_RESET","features":[356]},{"name":"DISPID_MX_WRITER_STANDALONE","features":[356]},{"name":"DISPID_MX_WRITER_VERSION","features":[356]},{"name":"DISPID_MX_WRITER__BASE","features":[356]},{"name":"DISPID_MX_WRITER__TOP","features":[356]},{"name":"DISPID_NODE","features":[356]},{"name":"DISPID_NODELIST","features":[356]},{"name":"DISPID_NODELIST_CURRENT","features":[356]},{"name":"DISPID_NODELIST_ITEM","features":[356]},{"name":"DISPID_NODELIST_LENGTH","features":[356]},{"name":"DISPID_NODELIST_MOVE","features":[356]},{"name":"DISPID_NODELIST_MOVETONODE","features":[356]},{"name":"DISPID_NODELIST_NEWENUM","features":[356]},{"name":"DISPID_NODELIST_NEXT","features":[356]},{"name":"DISPID_NODE_ADD","features":[356]},{"name":"DISPID_NODE_ATTRIBUTES","features":[356]},{"name":"DISPID_NODE_CHILDREN","features":[356]},{"name":"DISPID_NODE_GETATTRIBUTE","features":[356]},{"name":"DISPID_NODE_NAME","features":[356]},{"name":"DISPID_NODE_PARENT","features":[356]},{"name":"DISPID_NODE_REMOVE","features":[356]},{"name":"DISPID_NODE_REMOVEATTRIBUTE","features":[356]},{"name":"DISPID_NODE_SETATTRIBUTE","features":[356]},{"name":"DISPID_NODE_TYPE","features":[356]},{"name":"DISPID_NODE_VALUE","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETINDEXFROMNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETINDEXFROMQNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETLOCALNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETQNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETTYPE","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETTYPEFROMNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETTYPEFROMQNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETURI","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETVALUE","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETVALUEFROMNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_GETVALUEFROMQNAME","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES_LENGTH","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES__BASE","features":[356]},{"name":"DISPID_SAX_ATTRIBUTES__TOP","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_CHARACTERS","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_DOCUMENTLOCATOR","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_ENDDOCUMENT","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_ENDELEMENT","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_ENDPREFIXMAPPING","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_IGNORABLEWHITESPACE","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_PROCESSINGINSTRUCTION","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_SKIPPEDENTITY","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_STARTDOCUMENT","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_STARTELEMENT","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER_STARTPREFIXMAPPING","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER__BASE","features":[356]},{"name":"DISPID_SAX_CONTENTHANDLER__TOP","features":[356]},{"name":"DISPID_SAX_DECLHANDLER","features":[356]},{"name":"DISPID_SAX_DECLHANDLER_ATTRIBUTEDECL","features":[356]},{"name":"DISPID_SAX_DECLHANDLER_ELEMENTDECL","features":[356]},{"name":"DISPID_SAX_DECLHANDLER_EXTERNALENTITYDECL","features":[356]},{"name":"DISPID_SAX_DECLHANDLER_INTERNALENTITYDECL","features":[356]},{"name":"DISPID_SAX_DECLHANDLER__BASE","features":[356]},{"name":"DISPID_SAX_DECLHANDLER__TOP","features":[356]},{"name":"DISPID_SAX_DTDHANDLER","features":[356]},{"name":"DISPID_SAX_DTDHANDLER_NOTATIONDECL","features":[356]},{"name":"DISPID_SAX_DTDHANDLER_UNPARSEDENTITYDECL","features":[356]},{"name":"DISPID_SAX_DTDHANDLER__BASE","features":[356]},{"name":"DISPID_SAX_DTDHANDLER__TOP","features":[356]},{"name":"DISPID_SAX_ENTITYRESOLVER","features":[356]},{"name":"DISPID_SAX_ENTITYRESOLVER_RESOLVEENTITY","features":[356]},{"name":"DISPID_SAX_ENTITYRESOLVER__BASE","features":[356]},{"name":"DISPID_SAX_ENTITYRESOLVER__TOP","features":[356]},{"name":"DISPID_SAX_ERRORHANDLER","features":[356]},{"name":"DISPID_SAX_ERRORHANDLER_ERROR","features":[356]},{"name":"DISPID_SAX_ERRORHANDLER_FATALERROR","features":[356]},{"name":"DISPID_SAX_ERRORHANDLER_IGNORABLEWARNING","features":[356]},{"name":"DISPID_SAX_ERRORHANDLER__BASE","features":[356]},{"name":"DISPID_SAX_ERRORHANDLER__TOP","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER_COMMENT","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER_ENDCDATA","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER_ENDDTD","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER_ENDENTITY","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER_STARTCDATA","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER_STARTDTD","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER_STARTENTITY","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER__BASE","features":[356]},{"name":"DISPID_SAX_LEXICALHANDLER__TOP","features":[356]},{"name":"DISPID_SAX_LOCATOR","features":[356]},{"name":"DISPID_SAX_LOCATOR_COLUMNNUMBER","features":[356]},{"name":"DISPID_SAX_LOCATOR_LINENUMBER","features":[356]},{"name":"DISPID_SAX_LOCATOR_PUBLICID","features":[356]},{"name":"DISPID_SAX_LOCATOR_SYSTEMID","features":[356]},{"name":"DISPID_SAX_LOCATOR__BASE","features":[356]},{"name":"DISPID_SAX_LOCATOR__TOP","features":[356]},{"name":"DISPID_SAX_XMLFILTER","features":[356]},{"name":"DISPID_SAX_XMLFILTER_BASEURL","features":[356]},{"name":"DISPID_SAX_XMLFILTER_CONTENTHANDLER","features":[356]},{"name":"DISPID_SAX_XMLFILTER_DTDHANDLER","features":[356]},{"name":"DISPID_SAX_XMLFILTER_ENTITYRESOLVER","features":[356]},{"name":"DISPID_SAX_XMLFILTER_ERRORHANDLER","features":[356]},{"name":"DISPID_SAX_XMLFILTER_GETFEATURE","features":[356]},{"name":"DISPID_SAX_XMLFILTER_GETPROPERTY","features":[356]},{"name":"DISPID_SAX_XMLFILTER_PARENT","features":[356]},{"name":"DISPID_SAX_XMLFILTER_PARSE","features":[356]},{"name":"DISPID_SAX_XMLFILTER_PARSEURL","features":[356]},{"name":"DISPID_SAX_XMLFILTER_PUTFEATURE","features":[356]},{"name":"DISPID_SAX_XMLFILTER_PUTPROPERTY","features":[356]},{"name":"DISPID_SAX_XMLFILTER_SECUREBASEURL","features":[356]},{"name":"DISPID_SAX_XMLFILTER__BASE","features":[356]},{"name":"DISPID_SAX_XMLFILTER__TOP","features":[356]},{"name":"DISPID_SAX_XMLREADER","features":[356]},{"name":"DISPID_SAX_XMLREADER_BASEURL","features":[356]},{"name":"DISPID_SAX_XMLREADER_CONTENTHANDLER","features":[356]},{"name":"DISPID_SAX_XMLREADER_DTDHANDLER","features":[356]},{"name":"DISPID_SAX_XMLREADER_ENTITYRESOLVER","features":[356]},{"name":"DISPID_SAX_XMLREADER_ERRORHANDLER","features":[356]},{"name":"DISPID_SAX_XMLREADER_GETFEATURE","features":[356]},{"name":"DISPID_SAX_XMLREADER_GETPROPERTY","features":[356]},{"name":"DISPID_SAX_XMLREADER_PARENT","features":[356]},{"name":"DISPID_SAX_XMLREADER_PARSE","features":[356]},{"name":"DISPID_SAX_XMLREADER_PARSEURL","features":[356]},{"name":"DISPID_SAX_XMLREADER_PUTFEATURE","features":[356]},{"name":"DISPID_SAX_XMLREADER_PUTPROPERTY","features":[356]},{"name":"DISPID_SAX_XMLREADER_SECUREBASEURL","features":[356]},{"name":"DISPID_SAX_XMLREADER__BASE","features":[356]},{"name":"DISPID_SAX_XMLREADER__MAX","features":[356]},{"name":"DISPID_SAX_XMLREADER__MIN","features":[356]},{"name":"DISPID_SAX_XMLREADER__TOP","features":[356]},{"name":"DISPID_SOM","features":[356]},{"name":"DISPID_SOM_ANYATTRIBUTE","features":[356]},{"name":"DISPID_SOM_ATTRIBUTEGROUPS","features":[356]},{"name":"DISPID_SOM_ATTRIBUTES","features":[356]},{"name":"DISPID_SOM_BASETYPES","features":[356]},{"name":"DISPID_SOM_CONTENTMODEL","features":[356]},{"name":"DISPID_SOM_CONTENTTYPE","features":[356]},{"name":"DISPID_SOM_DEFAULTVALUE","features":[356]},{"name":"DISPID_SOM_DERIVEDBY","features":[356]},{"name":"DISPID_SOM_DISALLOWED","features":[356]},{"name":"DISPID_SOM_ELEMENTS","features":[356]},{"name":"DISPID_SOM_ENUMERATION","features":[356]},{"name":"DISPID_SOM_EXCLUSIONS","features":[356]},{"name":"DISPID_SOM_FIELDS","features":[356]},{"name":"DISPID_SOM_FINAL","features":[356]},{"name":"DISPID_SOM_FIXEDVALUE","features":[356]},{"name":"DISPID_SOM_FRACTIONDIGITS","features":[356]},{"name":"DISPID_SOM_GETDECLARATION","features":[356]},{"name":"DISPID_SOM_GETSCHEMA","features":[356]},{"name":"DISPID_SOM_ID","features":[356]},{"name":"DISPID_SOM_IDCONSTRAINTS","features":[356]},{"name":"DISPID_SOM_ISABSTRACT","features":[356]},{"name":"DISPID_SOM_ISNILLABLE","features":[356]},{"name":"DISPID_SOM_ISREFERENCE","features":[356]},{"name":"DISPID_SOM_ISVALID","features":[356]},{"name":"DISPID_SOM_ITEMBYNAME","features":[356]},{"name":"DISPID_SOM_ITEMBYQNAME","features":[356]},{"name":"DISPID_SOM_ITEMTYPE","features":[356]},{"name":"DISPID_SOM_LENGTH","features":[356]},{"name":"DISPID_SOM_MAXEXCLUSIVE","features":[356]},{"name":"DISPID_SOM_MAXINCLUSIVE","features":[356]},{"name":"DISPID_SOM_MAXLENGTH","features":[356]},{"name":"DISPID_SOM_MAXOCCURS","features":[356]},{"name":"DISPID_SOM_MINEXCLUSIVE","features":[356]},{"name":"DISPID_SOM_MININCLUSIVE","features":[356]},{"name":"DISPID_SOM_MINLENGTH","features":[356]},{"name":"DISPID_SOM_MINOCCURS","features":[356]},{"name":"DISPID_SOM_MODELGROUPS","features":[356]},{"name":"DISPID_SOM_NAME","features":[356]},{"name":"DISPID_SOM_NAMESPACES","features":[356]},{"name":"DISPID_SOM_NAMESPACEURI","features":[356]},{"name":"DISPID_SOM_NOTATIONS","features":[356]},{"name":"DISPID_SOM_PARTICLES","features":[356]},{"name":"DISPID_SOM_PATTERNS","features":[356]},{"name":"DISPID_SOM_PROCESSCONTENTS","features":[356]},{"name":"DISPID_SOM_PROHIBITED","features":[356]},{"name":"DISPID_SOM_PUBLICIDENTIFIER","features":[356]},{"name":"DISPID_SOM_REFERENCEDKEY","features":[356]},{"name":"DISPID_SOM_SCHEMA","features":[356]},{"name":"DISPID_SOM_SCHEMALOCATIONS","features":[356]},{"name":"DISPID_SOM_SCOPE","features":[356]},{"name":"DISPID_SOM_SELECTOR","features":[356]},{"name":"DISPID_SOM_SUBSTITUTIONGROUP","features":[356]},{"name":"DISPID_SOM_SYSTEMIDENTIFIER","features":[356]},{"name":"DISPID_SOM_TARGETNAMESPACE","features":[356]},{"name":"DISPID_SOM_TOP","features":[356]},{"name":"DISPID_SOM_TOTALDIGITS","features":[356]},{"name":"DISPID_SOM_TYPE","features":[356]},{"name":"DISPID_SOM_TYPES","features":[356]},{"name":"DISPID_SOM_UNHANDLEDATTRS","features":[356]},{"name":"DISPID_SOM_USE","features":[356]},{"name":"DISPID_SOM_VALIDATE","features":[356]},{"name":"DISPID_SOM_VALIDATEONLOAD","features":[356]},{"name":"DISPID_SOM_VARIETY","features":[356]},{"name":"DISPID_SOM_VERSION","features":[356]},{"name":"DISPID_SOM_WHITESPACE","features":[356]},{"name":"DISPID_SOM_WRITEANNOTATION","features":[356]},{"name":"DISPID_XMLATTRIBUTE","features":[356]},{"name":"DISPID_XMLATTRIBUTE_NAME","features":[356]},{"name":"DISPID_XMLATTRIBUTE_VALUE","features":[356]},{"name":"DISPID_XMLDOCUMENT","features":[356]},{"name":"DISPID_XMLDOCUMENT_ASYNC","features":[356]},{"name":"DISPID_XMLDOCUMENT_BASEURL","features":[356]},{"name":"DISPID_XMLDOCUMENT_CASEINSENSITIVE","features":[356]},{"name":"DISPID_XMLDOCUMENT_CHARSET","features":[356]},{"name":"DISPID_XMLDOCUMENT_COMMIT","features":[356]},{"name":"DISPID_XMLDOCUMENT_CREATEELEMENT","features":[356]},{"name":"DISPID_XMLDOCUMENT_DOCTYPE","features":[356]},{"name":"DISPID_XMLDOCUMENT_DTDURL","features":[356]},{"name":"DISPID_XMLDOCUMENT_FILEMODIFIEDDATE","features":[356]},{"name":"DISPID_XMLDOCUMENT_FILESIZE","features":[356]},{"name":"DISPID_XMLDOCUMENT_FILEUPDATEDDATE","features":[356]},{"name":"DISPID_XMLDOCUMENT_LASTERROR","features":[356]},{"name":"DISPID_XMLDOCUMENT_MIMETYPE","features":[356]},{"name":"DISPID_XMLDOCUMENT_READYSTATE","features":[356]},{"name":"DISPID_XMLDOCUMENT_ROOT","features":[356]},{"name":"DISPID_XMLDOCUMENT_TRIMWHITESPACE","features":[356]},{"name":"DISPID_XMLDOCUMENT_URL","features":[356]},{"name":"DISPID_XMLDOCUMENT_VERSION","features":[356]},{"name":"DISPID_XMLDOCUMENT_XML","features":[356]},{"name":"DISPID_XMLDOMEVENT","features":[356]},{"name":"DISPID_XMLDOMEVENT_ONDATAAVAILABLE","features":[356]},{"name":"DISPID_XMLDOMEVENT_ONREADYSTATECHANGE","features":[356]},{"name":"DISPID_XMLDOMEVENT__TOP","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT2","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT2_GETPROPERTY","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT2_NAMESPACES","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT2_SCHEMAS","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT2_SETPROPERTY","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT2_VALIDATE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT2__TOP","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT3","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT3_IMPORTNODE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT3_VALIDATENODE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT3__TOP","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_ABORT","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_ASYNC","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_CREATENODE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_CREATENODEEX","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_DOCUMENTNAMESPACES","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_DOCUMENTNODE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_LOAD","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_LOADXML","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_NODEFROMID","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_ONDATAAVAILABLE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_ONREADYSTATECHANGE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_ONTRANSFORMNODE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_PARSEERROR","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_PRESERVEWHITESPACE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_RESOLVENAMESPACE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_SAVE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_URL","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT_VALIDATE","features":[356]},{"name":"DISPID_XMLDOM_DOCUMENT__TOP","features":[356]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP","features":[356]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_GETQUALIFIEDITEM","features":[356]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_NEWENUM","features":[356]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_NEXTNODE","features":[356]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_REMOVEQUALIFIEDITEM","features":[356]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_RESET","features":[356]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP__TOP","features":[356]},{"name":"DISPID_XMLDOM_NODE","features":[356]},{"name":"DISPID_XMLDOM_NODELIST","features":[356]},{"name":"DISPID_XMLDOM_NODELIST_NEWENUM","features":[356]},{"name":"DISPID_XMLDOM_NODELIST_NEXTNODE","features":[356]},{"name":"DISPID_XMLDOM_NODELIST_RESET","features":[356]},{"name":"DISPID_XMLDOM_NODELIST__TOP","features":[356]},{"name":"DISPID_XMLDOM_NODE_BASENAME","features":[356]},{"name":"DISPID_XMLDOM_NODE_DATATYPE","features":[356]},{"name":"DISPID_XMLDOM_NODE_DEFINITION","features":[356]},{"name":"DISPID_XMLDOM_NODE_NAMESPACE","features":[356]},{"name":"DISPID_XMLDOM_NODE_NODETYPEDVALUE","features":[356]},{"name":"DISPID_XMLDOM_NODE_PARSED","features":[356]},{"name":"DISPID_XMLDOM_NODE_PREFIX","features":[356]},{"name":"DISPID_XMLDOM_NODE_SELECTNODES","features":[356]},{"name":"DISPID_XMLDOM_NODE_SELECTSINGLENODE","features":[356]},{"name":"DISPID_XMLDOM_NODE_SPECIFIED","features":[356]},{"name":"DISPID_XMLDOM_NODE_STRINGTYPE","features":[356]},{"name":"DISPID_XMLDOM_NODE_TEXT","features":[356]},{"name":"DISPID_XMLDOM_NODE_TRANSFORMNODE","features":[356]},{"name":"DISPID_XMLDOM_NODE_TRANSFORMNODETOOBJECT","features":[356]},{"name":"DISPID_XMLDOM_NODE_XML","features":[356]},{"name":"DISPID_XMLDOM_NODE__TOP","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_ADDOBJECT","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_ADDPARAMETER","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_INPUT","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_OUTPUT","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_READYSTATE","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_RESET","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_SETSTARTMODE","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_STARTMODE","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_STARTMODEURI","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_STYLESHEET","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_TRANSFORM","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR_XSLTEMPLATE","features":[356]},{"name":"DISPID_XMLDOM_PROCESSOR__TOP","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_ADD","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_ADDCOLLECTION","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_GET","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_LENGTH","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_NAMESPACEURI","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_REMOVE","features":[356]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION__TOP","features":[356]},{"name":"DISPID_XMLDOM_SELECTION","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_CLONE","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_CONTEXT","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_EXPR","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_GETPROPERTY","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_MATCHES","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_PEEKNODE","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_REMOVEALL","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_REMOVENEXT","features":[356]},{"name":"DISPID_XMLDOM_SELECTION_SETPROPERTY","features":[356]},{"name":"DISPID_XMLDOM_SELECTION__TOP","features":[356]},{"name":"DISPID_XMLDOM_TEMPLATE","features":[356]},{"name":"DISPID_XMLDOM_TEMPLATE_CREATEPROCESSOR","features":[356]},{"name":"DISPID_XMLDOM_TEMPLATE_STYLESHEET","features":[356]},{"name":"DISPID_XMLDOM_TEMPLATE__TOP","features":[356]},{"name":"DISPID_XMLDSIG","features":[356]},{"name":"DISPID_XMLDSIG_CREATEKEYFROMCSP","features":[356]},{"name":"DISPID_XMLDSIG_CREATEKEYFROMHMACSECRET","features":[356]},{"name":"DISPID_XMLDSIG_CREATEKEYFROMNODE","features":[356]},{"name":"DISPID_XMLDSIG_CREATESAXPROXY","features":[356]},{"name":"DISPID_XMLDSIG_GETVERIFYINGCERTIFICATE","features":[356]},{"name":"DISPID_XMLDSIG_SETREFERENCEDATA","features":[356]},{"name":"DISPID_XMLDSIG_SIGN","features":[356]},{"name":"DISPID_XMLDSIG_SIGNATURE","features":[356]},{"name":"DISPID_XMLDSIG_STORE","features":[356]},{"name":"DISPID_XMLDSIG_VERIFY","features":[356]},{"name":"DISPID_XMLDSO","features":[356]},{"name":"DISPID_XMLDSO_DOCUMENT","features":[356]},{"name":"DISPID_XMLDSO_JAVADSOCOMPATIBLE","features":[356]},{"name":"DISPID_XMLELEMENT","features":[356]},{"name":"DISPID_XMLELEMENTCOLLECTION","features":[356]},{"name":"DISPID_XMLELEMENTCOLLECTION_ITEM","features":[356]},{"name":"DISPID_XMLELEMENTCOLLECTION_LENGTH","features":[356]},{"name":"DISPID_XMLELEMENTCOLLECTION_NEWENUM","features":[356]},{"name":"DISPID_XMLELEMENT_ADDCHILD","features":[356]},{"name":"DISPID_XMLELEMENT_ATTRIBUTES","features":[356]},{"name":"DISPID_XMLELEMENT_CHILDREN","features":[356]},{"name":"DISPID_XMLELEMENT_GETATTRIBUTE","features":[356]},{"name":"DISPID_XMLELEMENT_PARENT","features":[356]},{"name":"DISPID_XMLELEMENT_REMOVEATTRIBUTE","features":[356]},{"name":"DISPID_XMLELEMENT_REMOVECHILD","features":[356]},{"name":"DISPID_XMLELEMENT_SETATTRIBUTE","features":[356]},{"name":"DISPID_XMLELEMENT_TAGNAME","features":[356]},{"name":"DISPID_XMLELEMENT_TEXT","features":[356]},{"name":"DISPID_XMLELEMENT_TYPE","features":[356]},{"name":"DISPID_XMLERROR","features":[356]},{"name":"DISPID_XMLERROR_LINE","features":[356]},{"name":"DISPID_XMLERROR_POS","features":[356]},{"name":"DISPID_XMLERROR_REASON","features":[356]},{"name":"DISPID_XMLNOTIFSINK","features":[356]},{"name":"DISPID_XMLNOTIFSINK_CHILDADDED","features":[356]},{"name":"DISPID_XOBJ_BASE","features":[356]},{"name":"DISPID_XOBJ_MAX","features":[356]},{"name":"DISPID_XOBJ_MIN","features":[356]},{"name":"DISPID_XTLRUNTIME","features":[356]},{"name":"DISPID_XTLRUNTIME_ABSOLUTECHILDNUMBER","features":[356]},{"name":"DISPID_XTLRUNTIME_ANCESTORCHILDNUMBER","features":[356]},{"name":"DISPID_XTLRUNTIME_CHILDNUMBER","features":[356]},{"name":"DISPID_XTLRUNTIME_DEPTH","features":[356]},{"name":"DISPID_XTLRUNTIME_FORMATDATE","features":[356]},{"name":"DISPID_XTLRUNTIME_FORMATINDEX","features":[356]},{"name":"DISPID_XTLRUNTIME_FORMATNUMBER","features":[356]},{"name":"DISPID_XTLRUNTIME_FORMATTIME","features":[356]},{"name":"DISPID_XTLRUNTIME_UNIQUEID","features":[356]},{"name":"DISPID_XTLRUNTIME__TOP","features":[356]},{"name":"DOMDocument","features":[356]},{"name":"DOMDocument60","features":[356]},{"name":"DOMFreeThreadedDocument","features":[356]},{"name":"DOMNodeType","features":[356]},{"name":"E_XML_BUFFERTOOSMALL","features":[356]},{"name":"E_XML_INVALID","features":[356]},{"name":"E_XML_NODTD","features":[356]},{"name":"E_XML_NOTWF","features":[356]},{"name":"FreeThreadedDOMDocument60","features":[356]},{"name":"FreeThreadedXMLHTTP60","features":[356]},{"name":"IMXAttributes","features":[356,354]},{"name":"IMXNamespaceManager","features":[356]},{"name":"IMXNamespacePrefixes","features":[356,354]},{"name":"IMXReaderControl","features":[356,354]},{"name":"IMXSchemaDeclHandler","features":[356,354]},{"name":"IMXWriter","features":[356,354]},{"name":"IMXXMLFilter","features":[356,354]},{"name":"ISAXAttributes","features":[356]},{"name":"ISAXContentHandler","features":[356]},{"name":"ISAXDTDHandler","features":[356]},{"name":"ISAXDeclHandler","features":[356]},{"name":"ISAXEntityResolver","features":[356]},{"name":"ISAXErrorHandler","features":[356]},{"name":"ISAXLexicalHandler","features":[356]},{"name":"ISAXLocator","features":[356]},{"name":"ISAXXMLFilter","features":[356]},{"name":"ISAXXMLReader","features":[356]},{"name":"ISchema","features":[356,354]},{"name":"ISchemaAny","features":[356,354]},{"name":"ISchemaAttribute","features":[356,354]},{"name":"ISchemaAttributeGroup","features":[356,354]},{"name":"ISchemaComplexType","features":[356,354]},{"name":"ISchemaElement","features":[356,354]},{"name":"ISchemaIdentityConstraint","features":[356,354]},{"name":"ISchemaItem","features":[356,354]},{"name":"ISchemaItemCollection","features":[356,354]},{"name":"ISchemaModelGroup","features":[356,354]},{"name":"ISchemaNotation","features":[356,354]},{"name":"ISchemaParticle","features":[356,354]},{"name":"ISchemaStringCollection","features":[356,354]},{"name":"ISchemaType","features":[356,354]},{"name":"IServerXMLHTTPRequest","features":[356,354]},{"name":"IServerXMLHTTPRequest2","features":[356,354]},{"name":"IVBMXNamespaceManager","features":[356,354]},{"name":"IVBSAXAttributes","features":[356,354]},{"name":"IVBSAXContentHandler","features":[356,354]},{"name":"IVBSAXDTDHandler","features":[356,354]},{"name":"IVBSAXDeclHandler","features":[356,354]},{"name":"IVBSAXEntityResolver","features":[356,354]},{"name":"IVBSAXErrorHandler","features":[356,354]},{"name":"IVBSAXLexicalHandler","features":[356,354]},{"name":"IVBSAXLocator","features":[356,354]},{"name":"IVBSAXXMLFilter","features":[356,354]},{"name":"IVBSAXXMLReader","features":[356,354]},{"name":"IXMLAttribute","features":[356,354]},{"name":"IXMLDOMAttribute","features":[356,354]},{"name":"IXMLDOMCDATASection","features":[356,354]},{"name":"IXMLDOMCharacterData","features":[356,354]},{"name":"IXMLDOMComment","features":[356,354]},{"name":"IXMLDOMDocument","features":[356,354]},{"name":"IXMLDOMDocument2","features":[356,354]},{"name":"IXMLDOMDocument3","features":[356,354]},{"name":"IXMLDOMDocumentFragment","features":[356,354]},{"name":"IXMLDOMDocumentType","features":[356,354]},{"name":"IXMLDOMElement","features":[356,354]},{"name":"IXMLDOMEntity","features":[356,354]},{"name":"IXMLDOMEntityReference","features":[356,354]},{"name":"IXMLDOMImplementation","features":[356,354]},{"name":"IXMLDOMNamedNodeMap","features":[356,354]},{"name":"IXMLDOMNode","features":[356,354]},{"name":"IXMLDOMNodeList","features":[356,354]},{"name":"IXMLDOMNotation","features":[356,354]},{"name":"IXMLDOMParseError","features":[356,354]},{"name":"IXMLDOMParseError2","features":[356,354]},{"name":"IXMLDOMParseErrorCollection","features":[356,354]},{"name":"IXMLDOMProcessingInstruction","features":[356,354]},{"name":"IXMLDOMSchemaCollection","features":[356,354]},{"name":"IXMLDOMSchemaCollection2","features":[356,354]},{"name":"IXMLDOMSelection","features":[356,354]},{"name":"IXMLDOMText","features":[356,354]},{"name":"IXMLDSOControl","features":[356,354]},{"name":"IXMLDocument","features":[356,354]},{"name":"IXMLDocument2","features":[356,354]},{"name":"IXMLElement","features":[356,354]},{"name":"IXMLElement2","features":[356,354]},{"name":"IXMLElementCollection","features":[356,354]},{"name":"IXMLError","features":[356]},{"name":"IXMLHTTPRequest","features":[356,354]},{"name":"IXMLHTTPRequest2","features":[356]},{"name":"IXMLHTTPRequest2Callback","features":[356]},{"name":"IXMLHTTPRequest3","features":[356]},{"name":"IXMLHTTPRequest3Callback","features":[356]},{"name":"IXSLProcessor","features":[356,354]},{"name":"IXSLTemplate","features":[356,354]},{"name":"IXTLRuntime","features":[356,354]},{"name":"MXHTMLWriter60","features":[356]},{"name":"MXNamespaceManager60","features":[356]},{"name":"MXXMLWriter60","features":[356]},{"name":"NODE_ATTRIBUTE","features":[356]},{"name":"NODE_CDATA_SECTION","features":[356]},{"name":"NODE_COMMENT","features":[356]},{"name":"NODE_DOCUMENT","features":[356]},{"name":"NODE_DOCUMENT_FRAGMENT","features":[356]},{"name":"NODE_DOCUMENT_TYPE","features":[356]},{"name":"NODE_ELEMENT","features":[356]},{"name":"NODE_ENTITY","features":[356]},{"name":"NODE_ENTITY_REFERENCE","features":[356]},{"name":"NODE_INVALID","features":[356]},{"name":"NODE_NOTATION","features":[356]},{"name":"NODE_PROCESSING_INSTRUCTION","features":[356]},{"name":"NODE_TEXT","features":[356]},{"name":"SAXAttributes60","features":[356]},{"name":"SAXXMLReader60","features":[356]},{"name":"SCHEMACONTENTTYPE","features":[356]},{"name":"SCHEMACONTENTTYPE_ELEMENTONLY","features":[356]},{"name":"SCHEMACONTENTTYPE_EMPTY","features":[356]},{"name":"SCHEMACONTENTTYPE_MIXED","features":[356]},{"name":"SCHEMACONTENTTYPE_TEXTONLY","features":[356]},{"name":"SCHEMADERIVATIONMETHOD","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_ALL","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_EMPTY","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_EXTENSION","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_LIST","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_NONE","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_RESTRICTION","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_SUBSTITUTION","features":[356]},{"name":"SCHEMADERIVATIONMETHOD_UNION","features":[356]},{"name":"SCHEMAPROCESSCONTENTS","features":[356]},{"name":"SCHEMAPROCESSCONTENTS_LAX","features":[356]},{"name":"SCHEMAPROCESSCONTENTS_NONE","features":[356]},{"name":"SCHEMAPROCESSCONTENTS_SKIP","features":[356]},{"name":"SCHEMAPROCESSCONTENTS_STRICT","features":[356]},{"name":"SCHEMATYPEVARIETY","features":[356]},{"name":"SCHEMATYPEVARIETY_ATOMIC","features":[356]},{"name":"SCHEMATYPEVARIETY_LIST","features":[356]},{"name":"SCHEMATYPEVARIETY_NONE","features":[356]},{"name":"SCHEMATYPEVARIETY_UNION","features":[356]},{"name":"SCHEMAUSE","features":[356]},{"name":"SCHEMAUSE_OPTIONAL","features":[356]},{"name":"SCHEMAUSE_PROHIBITED","features":[356]},{"name":"SCHEMAUSE_REQUIRED","features":[356]},{"name":"SCHEMAWHITESPACE","features":[356]},{"name":"SCHEMAWHITESPACE_COLLAPSE","features":[356]},{"name":"SCHEMAWHITESPACE_NONE","features":[356]},{"name":"SCHEMAWHITESPACE_PRESERVE","features":[356]},{"name":"SCHEMAWHITESPACE_REPLACE","features":[356]},{"name":"SERVERXMLHTTP_OPTION","features":[356]},{"name":"SOMITEMTYPE","features":[356]},{"name":"SOMITEM_ALL","features":[356]},{"name":"SOMITEM_ANNOTATION","features":[356]},{"name":"SOMITEM_ANY","features":[356]},{"name":"SOMITEM_ANYATTRIBUTE","features":[356]},{"name":"SOMITEM_ANYTYPE","features":[356]},{"name":"SOMITEM_ATTRIBUTE","features":[356]},{"name":"SOMITEM_ATTRIBUTEGROUP","features":[356]},{"name":"SOMITEM_CHOICE","features":[356]},{"name":"SOMITEM_COMPLEXTYPE","features":[356]},{"name":"SOMITEM_DATATYPE","features":[356]},{"name":"SOMITEM_DATATYPE_ANYSIMPLETYPE","features":[356]},{"name":"SOMITEM_DATATYPE_ANYTYPE","features":[356]},{"name":"SOMITEM_DATATYPE_ANYURI","features":[356]},{"name":"SOMITEM_DATATYPE_BASE64BINARY","features":[356]},{"name":"SOMITEM_DATATYPE_BOOLEAN","features":[356]},{"name":"SOMITEM_DATATYPE_BYTE","features":[356]},{"name":"SOMITEM_DATATYPE_DATE","features":[356]},{"name":"SOMITEM_DATATYPE_DATETIME","features":[356]},{"name":"SOMITEM_DATATYPE_DAY","features":[356]},{"name":"SOMITEM_DATATYPE_DECIMAL","features":[356]},{"name":"SOMITEM_DATATYPE_DOUBLE","features":[356]},{"name":"SOMITEM_DATATYPE_DURATION","features":[356]},{"name":"SOMITEM_DATATYPE_ENTITIES","features":[356]},{"name":"SOMITEM_DATATYPE_ENTITY","features":[356]},{"name":"SOMITEM_DATATYPE_FLOAT","features":[356]},{"name":"SOMITEM_DATATYPE_HEXBINARY","features":[356]},{"name":"SOMITEM_DATATYPE_ID","features":[356]},{"name":"SOMITEM_DATATYPE_IDREF","features":[356]},{"name":"SOMITEM_DATATYPE_IDREFS","features":[356]},{"name":"SOMITEM_DATATYPE_INT","features":[356]},{"name":"SOMITEM_DATATYPE_INTEGER","features":[356]},{"name":"SOMITEM_DATATYPE_LANGUAGE","features":[356]},{"name":"SOMITEM_DATATYPE_LONG","features":[356]},{"name":"SOMITEM_DATATYPE_MONTH","features":[356]},{"name":"SOMITEM_DATATYPE_MONTHDAY","features":[356]},{"name":"SOMITEM_DATATYPE_NAME","features":[356]},{"name":"SOMITEM_DATATYPE_NCNAME","features":[356]},{"name":"SOMITEM_DATATYPE_NEGATIVEINTEGER","features":[356]},{"name":"SOMITEM_DATATYPE_NMTOKEN","features":[356]},{"name":"SOMITEM_DATATYPE_NMTOKENS","features":[356]},{"name":"SOMITEM_DATATYPE_NONNEGATIVEINTEGER","features":[356]},{"name":"SOMITEM_DATATYPE_NONPOSITIVEINTEGER","features":[356]},{"name":"SOMITEM_DATATYPE_NORMALIZEDSTRING","features":[356]},{"name":"SOMITEM_DATATYPE_NOTATION","features":[356]},{"name":"SOMITEM_DATATYPE_POSITIVEINTEGER","features":[356]},{"name":"SOMITEM_DATATYPE_QNAME","features":[356]},{"name":"SOMITEM_DATATYPE_SHORT","features":[356]},{"name":"SOMITEM_DATATYPE_STRING","features":[356]},{"name":"SOMITEM_DATATYPE_TIME","features":[356]},{"name":"SOMITEM_DATATYPE_TOKEN","features":[356]},{"name":"SOMITEM_DATATYPE_UNSIGNEDBYTE","features":[356]},{"name":"SOMITEM_DATATYPE_UNSIGNEDINT","features":[356]},{"name":"SOMITEM_DATATYPE_UNSIGNEDLONG","features":[356]},{"name":"SOMITEM_DATATYPE_UNSIGNEDSHORT","features":[356]},{"name":"SOMITEM_DATATYPE_YEAR","features":[356]},{"name":"SOMITEM_DATATYPE_YEARMONTH","features":[356]},{"name":"SOMITEM_ELEMENT","features":[356]},{"name":"SOMITEM_EMPTYPARTICLE","features":[356]},{"name":"SOMITEM_GROUP","features":[356]},{"name":"SOMITEM_IDENTITYCONSTRAINT","features":[356]},{"name":"SOMITEM_KEY","features":[356]},{"name":"SOMITEM_KEYREF","features":[356]},{"name":"SOMITEM_NOTATION","features":[356]},{"name":"SOMITEM_NULL","features":[356]},{"name":"SOMITEM_NULL_ANY","features":[356]},{"name":"SOMITEM_NULL_ANYATTRIBUTE","features":[356]},{"name":"SOMITEM_NULL_ELEMENT","features":[356]},{"name":"SOMITEM_NULL_TYPE","features":[356]},{"name":"SOMITEM_PARTICLE","features":[356]},{"name":"SOMITEM_SCHEMA","features":[356]},{"name":"SOMITEM_SEQUENCE","features":[356]},{"name":"SOMITEM_SIMPLETYPE","features":[356]},{"name":"SOMITEM_UNIQUE","features":[356]},{"name":"SXH_OPTION_ESCAPE_PERCENT_IN_URL","features":[356]},{"name":"SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS","features":[356]},{"name":"SXH_OPTION_SELECT_CLIENT_SSL_CERT","features":[356]},{"name":"SXH_OPTION_URL","features":[356]},{"name":"SXH_OPTION_URL_CODEPAGE","features":[356]},{"name":"SXH_PROXY_SETTING","features":[356]},{"name":"SXH_PROXY_SET_DEFAULT","features":[356]},{"name":"SXH_PROXY_SET_DIRECT","features":[356]},{"name":"SXH_PROXY_SET_PRECONFIG","features":[356]},{"name":"SXH_PROXY_SET_PROXY","features":[356]},{"name":"SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS","features":[356]},{"name":"SXH_SERVER_CERT_IGNORE_CERT_CN_INVALID","features":[356]},{"name":"SXH_SERVER_CERT_IGNORE_CERT_DATE_INVALID","features":[356]},{"name":"SXH_SERVER_CERT_IGNORE_UNKNOWN_CA","features":[356]},{"name":"SXH_SERVER_CERT_IGNORE_WRONG_USAGE","features":[356]},{"name":"SXH_SERVER_CERT_OPTION","features":[356]},{"name":"ServerXMLHTTP60","features":[356]},{"name":"XHR_AUTH","features":[356]},{"name":"XHR_AUTH_ALL","features":[356]},{"name":"XHR_AUTH_NONE","features":[356]},{"name":"XHR_AUTH_PROXY","features":[356]},{"name":"XHR_CERT","features":[356]},{"name":"XHR_CERT_ERROR_ALL_SERVER_ERRORS","features":[356]},{"name":"XHR_CERT_ERROR_CERT_CN_INVALID","features":[356]},{"name":"XHR_CERT_ERROR_CERT_DATE_INVALID","features":[356]},{"name":"XHR_CERT_ERROR_FLAG","features":[356]},{"name":"XHR_CERT_ERROR_REVOCATION_FAILED","features":[356]},{"name":"XHR_CERT_ERROR_UNKNOWN_CA","features":[356]},{"name":"XHR_CERT_IGNORE_ALL_SERVER_ERRORS","features":[356]},{"name":"XHR_CERT_IGNORE_CERT_CN_INVALID","features":[356]},{"name":"XHR_CERT_IGNORE_CERT_DATE_INVALID","features":[356]},{"name":"XHR_CERT_IGNORE_FLAG","features":[356]},{"name":"XHR_CERT_IGNORE_REVOCATION_FAILED","features":[356]},{"name":"XHR_CERT_IGNORE_UNKNOWN_CA","features":[356]},{"name":"XHR_COOKIE","features":[356,303]},{"name":"XHR_COOKIE_APPLY_P3P","features":[356]},{"name":"XHR_COOKIE_EVALUATE_P3P","features":[356]},{"name":"XHR_COOKIE_FLAG","features":[356]},{"name":"XHR_COOKIE_HTTPONLY","features":[356]},{"name":"XHR_COOKIE_IE6","features":[356]},{"name":"XHR_COOKIE_IS_LEGACY","features":[356]},{"name":"XHR_COOKIE_IS_RESTRICTED","features":[356]},{"name":"XHR_COOKIE_IS_SECURE","features":[356]},{"name":"XHR_COOKIE_IS_SESSION","features":[356]},{"name":"XHR_COOKIE_NON_SCRIPT","features":[356]},{"name":"XHR_COOKIE_P3P_ENABLED","features":[356]},{"name":"XHR_COOKIE_PROMPT_REQUIRED","features":[356]},{"name":"XHR_COOKIE_STATE","features":[356]},{"name":"XHR_COOKIE_STATE_ACCEPT","features":[356]},{"name":"XHR_COOKIE_STATE_DOWNGRADE","features":[356]},{"name":"XHR_COOKIE_STATE_LEASH","features":[356]},{"name":"XHR_COOKIE_STATE_PROMPT","features":[356]},{"name":"XHR_COOKIE_STATE_REJECT","features":[356]},{"name":"XHR_COOKIE_STATE_UNKNOWN","features":[356]},{"name":"XHR_COOKIE_THIRD_PARTY","features":[356]},{"name":"XHR_CRED_PROMPT","features":[356]},{"name":"XHR_CRED_PROMPT_ALL","features":[356]},{"name":"XHR_CRED_PROMPT_NONE","features":[356]},{"name":"XHR_CRED_PROMPT_PROXY","features":[356]},{"name":"XHR_PROPERTY","features":[356]},{"name":"XHR_PROP_EXTENDED_ERROR","features":[356]},{"name":"XHR_PROP_IGNORE_CERT_ERRORS","features":[356]},{"name":"XHR_PROP_MAX_CONNECTIONS","features":[356]},{"name":"XHR_PROP_NO_AUTH","features":[356]},{"name":"XHR_PROP_NO_CACHE","features":[356]},{"name":"XHR_PROP_NO_CRED_PROMPT","features":[356]},{"name":"XHR_PROP_NO_DEFAULT_HEADERS","features":[356]},{"name":"XHR_PROP_ONDATA_ALWAYS","features":[356]},{"name":"XHR_PROP_ONDATA_NEVER","features":[356]},{"name":"XHR_PROP_ONDATA_THRESHOLD","features":[356]},{"name":"XHR_PROP_QUERY_STRING_UTF8","features":[356]},{"name":"XHR_PROP_REPORT_REDIRECT_STATUS","features":[356]},{"name":"XHR_PROP_SET_ENTERPRISEID","features":[356]},{"name":"XHR_PROP_TIMEOUT","features":[356]},{"name":"XMLDOMDocumentEvents","features":[356,354]},{"name":"XMLDSOControl","features":[356]},{"name":"XMLDocument","features":[356]},{"name":"XMLELEMTYPE_COMMENT","features":[356]},{"name":"XMLELEMTYPE_DOCUMENT","features":[356]},{"name":"XMLELEMTYPE_DTD","features":[356]},{"name":"XMLELEMTYPE_ELEMENT","features":[356]},{"name":"XMLELEMTYPE_OTHER","features":[356]},{"name":"XMLELEMTYPE_PI","features":[356]},{"name":"XMLELEMTYPE_TEXT","features":[356]},{"name":"XMLELEM_TYPE","features":[356]},{"name":"XMLHTTP60","features":[356]},{"name":"XMLHTTPRequest","features":[356]},{"name":"XMLSchemaCache60","features":[356]},{"name":"XML_ERROR","features":[356]},{"name":"XSLTemplate60","features":[356]},{"name":"__msxml6_ReferenceRemainingTypes__","features":[356]}],"366":[{"name":"CreateXmlReader","features":[357,354]},{"name":"CreateXmlReaderInputWithEncodingCodePage","features":[357,303,354]},{"name":"CreateXmlReaderInputWithEncodingName","features":[357,303,354]},{"name":"CreateXmlWriter","features":[357,354]},{"name":"CreateXmlWriterOutputWithEncodingCodePage","features":[357,354]},{"name":"CreateXmlWriterOutputWithEncodingName","features":[357,354]},{"name":"DtdProcessing","features":[357]},{"name":"DtdProcessing_Parse","features":[357]},{"name":"DtdProcessing_Prohibit","features":[357]},{"name":"IXmlReader","features":[357]},{"name":"IXmlResolver","features":[357]},{"name":"IXmlWriter","features":[357]},{"name":"IXmlWriterLite","features":[357]},{"name":"MX_E_ENCODING","features":[357]},{"name":"MX_E_ENCODINGSIGNATURE","features":[357]},{"name":"MX_E_ENCODINGSWITCH","features":[357]},{"name":"MX_E_INPUTEND","features":[357]},{"name":"MX_E_MX","features":[357]},{"name":"NC_E_DECLAREDPREFIX","features":[357]},{"name":"NC_E_EMPTYURI","features":[357]},{"name":"NC_E_NAMECOLON","features":[357]},{"name":"NC_E_NC","features":[357]},{"name":"NC_E_QNAMECHARACTER","features":[357]},{"name":"NC_E_QNAMECOLON","features":[357]},{"name":"NC_E_UNDECLAREDPREFIX","features":[357]},{"name":"NC_E_XMLNSPREFIXRESERVED","features":[357]},{"name":"NC_E_XMLNSURIRESERVED","features":[357]},{"name":"NC_E_XMLPREFIXRESERVED","features":[357]},{"name":"NC_E_XMLURIRESERVED","features":[357]},{"name":"SC_E_MAXELEMENTDEPTH","features":[357]},{"name":"SC_E_MAXENTITYEXPANSION","features":[357]},{"name":"SC_E_SC","features":[357]},{"name":"WC_E_CDSECT","features":[357]},{"name":"WC_E_CDSECTEND","features":[357]},{"name":"WC_E_COMMENT","features":[357]},{"name":"WC_E_CONDSECT","features":[357]},{"name":"WC_E_DECLATTLIST","features":[357]},{"name":"WC_E_DECLDOCTYPE","features":[357]},{"name":"WC_E_DECLELEMENT","features":[357]},{"name":"WC_E_DECLENTITY","features":[357]},{"name":"WC_E_DECLNOTATION","features":[357]},{"name":"WC_E_DIGIT","features":[357]},{"name":"WC_E_DTDPROHIBITED","features":[357]},{"name":"WC_E_ELEMENTMATCH","features":[357]},{"name":"WC_E_ENCNAME","features":[357]},{"name":"WC_E_ENTITYCONTENT","features":[357]},{"name":"WC_E_EQUAL","features":[357]},{"name":"WC_E_GREATERTHAN","features":[357]},{"name":"WC_E_HEXDIGIT","features":[357]},{"name":"WC_E_INVALIDXMLSPACE","features":[357]},{"name":"WC_E_LEADINGXML","features":[357]},{"name":"WC_E_LEFTBRACKET","features":[357]},{"name":"WC_E_LEFTPAREN","features":[357]},{"name":"WC_E_LESSTHAN","features":[357]},{"name":"WC_E_MOREDATA","features":[357]},{"name":"WC_E_NAME","features":[357]},{"name":"WC_E_NAMECHARACTER","features":[357]},{"name":"WC_E_NDATA","features":[357]},{"name":"WC_E_NOEXTERNALENTITYREF","features":[357]},{"name":"WC_E_NORECURSION","features":[357]},{"name":"WC_E_PARSEDENTITY","features":[357]},{"name":"WC_E_PESBETWEENDECLS","features":[357]},{"name":"WC_E_PESINTERNALSUBSET","features":[357]},{"name":"WC_E_PI","features":[357]},{"name":"WC_E_PUBLIC","features":[357]},{"name":"WC_E_PUBLICID","features":[357]},{"name":"WC_E_QUESTIONMARK","features":[357]},{"name":"WC_E_QUOTE","features":[357]},{"name":"WC_E_ROOTELEMENT","features":[357]},{"name":"WC_E_SEMICOLON","features":[357]},{"name":"WC_E_SYNTAX","features":[357]},{"name":"WC_E_SYSTEM","features":[357]},{"name":"WC_E_SYSTEMID","features":[357]},{"name":"WC_E_TEXTDECL","features":[357]},{"name":"WC_E_TEXTXMLDECL","features":[357]},{"name":"WC_E_UNDECLAREDENTITY","features":[357]},{"name":"WC_E_UNIQUEATTRIBUTE","features":[357]},{"name":"WC_E_WC","features":[357]},{"name":"WC_E_WHITESPACE","features":[357]},{"name":"WC_E_XMLCHARACTER","features":[357]},{"name":"WC_E_XMLDECL","features":[357]},{"name":"WR_E_DUPLICATEATTRIBUTE","features":[357]},{"name":"WR_E_INVALIDACTION","features":[357]},{"name":"WR_E_INVALIDSURROGATEPAIR","features":[357]},{"name":"WR_E_INVALIDXMLSPACE","features":[357]},{"name":"WR_E_NAMESPACEUNDECLARED","features":[357]},{"name":"WR_E_NONWHITESPACE","features":[357]},{"name":"WR_E_NSPREFIXDECLARED","features":[357]},{"name":"WR_E_NSPREFIXWITHEMPTYNSURI","features":[357]},{"name":"WR_E_WR","features":[357]},{"name":"WR_E_XMLNSPREFIXDECLARATION","features":[357]},{"name":"WR_E_XMLNSURIDECLARATION","features":[357]},{"name":"WR_E_XMLPREFIXDECLARATION","features":[357]},{"name":"WR_E_XMLURIDECLARATION","features":[357]},{"name":"XML_E_INVALIDENCODING","features":[357]},{"name":"XML_E_INVALID_DECIMAL","features":[357]},{"name":"XML_E_INVALID_HEXIDECIMAL","features":[357]},{"name":"XML_E_INVALID_UNICODE","features":[357]},{"name":"XmlConformanceLevel","features":[357]},{"name":"XmlConformanceLevel_Auto","features":[357]},{"name":"XmlConformanceLevel_Document","features":[357]},{"name":"XmlConformanceLevel_Fragment","features":[357]},{"name":"XmlError","features":[357]},{"name":"XmlNodeType","features":[357]},{"name":"XmlNodeType_Attribute","features":[357]},{"name":"XmlNodeType_CDATA","features":[357]},{"name":"XmlNodeType_Comment","features":[357]},{"name":"XmlNodeType_DocumentType","features":[357]},{"name":"XmlNodeType_Element","features":[357]},{"name":"XmlNodeType_EndElement","features":[357]},{"name":"XmlNodeType_None","features":[357]},{"name":"XmlNodeType_ProcessingInstruction","features":[357]},{"name":"XmlNodeType_Text","features":[357]},{"name":"XmlNodeType_Whitespace","features":[357]},{"name":"XmlNodeType_XmlDeclaration","features":[357]},{"name":"XmlReadState","features":[357]},{"name":"XmlReadState_Closed","features":[357]},{"name":"XmlReadState_EndOfFile","features":[357]},{"name":"XmlReadState_Error","features":[357]},{"name":"XmlReadState_Initial","features":[357]},{"name":"XmlReadState_Interactive","features":[357]},{"name":"XmlReaderProperty","features":[357]},{"name":"XmlReaderProperty_ConformanceLevel","features":[357]},{"name":"XmlReaderProperty_DtdProcessing","features":[357]},{"name":"XmlReaderProperty_MaxElementDepth","features":[357]},{"name":"XmlReaderProperty_MaxEntityExpansion","features":[357]},{"name":"XmlReaderProperty_MultiLanguage","features":[357]},{"name":"XmlReaderProperty_RandomAccess","features":[357]},{"name":"XmlReaderProperty_ReadState","features":[357]},{"name":"XmlReaderProperty_XmlResolver","features":[357]},{"name":"XmlStandalone","features":[357]},{"name":"XmlStandalone_No","features":[357]},{"name":"XmlStandalone_Omit","features":[357]},{"name":"XmlStandalone_Yes","features":[357]},{"name":"XmlWriterProperty","features":[357]},{"name":"XmlWriterProperty_ByteOrderMark","features":[357]},{"name":"XmlWriterProperty_CompactEmptyElement","features":[357]},{"name":"XmlWriterProperty_ConformanceLevel","features":[357]},{"name":"XmlWriterProperty_Indent","features":[357]},{"name":"XmlWriterProperty_MultiLanguage","features":[357]},{"name":"XmlWriterProperty_OmitXmlDeclaration","features":[357]},{"name":"_DtdProcessing_Last","features":[357]},{"name":"_XmlConformanceLevel_Last","features":[357]},{"name":"_XmlNodeType_Last","features":[357]},{"name":"_XmlReaderProperty_Last","features":[357]},{"name":"_XmlStandalone_Last","features":[357]},{"name":"_XmlWriterProperty_Last","features":[357]}],"367":[{"name":"AJ_IFC_SECURITY_INHERIT","features":[358]},{"name":"AJ_IFC_SECURITY_OFF","features":[358]},{"name":"AJ_IFC_SECURITY_REQUIRED","features":[358]},{"name":"ALLJOYN_ARRAY","features":[358]},{"name":"ALLJOYN_BIG_ENDIAN","features":[358]},{"name":"ALLJOYN_BOOLEAN","features":[358]},{"name":"ALLJOYN_BOOLEAN_ARRAY","features":[358]},{"name":"ALLJOYN_BYTE","features":[358]},{"name":"ALLJOYN_BYTE_ARRAY","features":[358]},{"name":"ALLJOYN_CRED_CERT_CHAIN","features":[358]},{"name":"ALLJOYN_CRED_EXPIRATION","features":[358]},{"name":"ALLJOYN_CRED_LOGON_ENTRY","features":[358]},{"name":"ALLJOYN_CRED_NEW_PASSWORD","features":[358]},{"name":"ALLJOYN_CRED_ONE_TIME_PWD","features":[358]},{"name":"ALLJOYN_CRED_PASSWORD","features":[358]},{"name":"ALLJOYN_CRED_PRIVATE_KEY","features":[358]},{"name":"ALLJOYN_CRED_USER_NAME","features":[358]},{"name":"ALLJOYN_DICT_ENTRY","features":[358]},{"name":"ALLJOYN_DICT_ENTRY_CLOSE","features":[358]},{"name":"ALLJOYN_DICT_ENTRY_OPEN","features":[358]},{"name":"ALLJOYN_DISCONNECTED","features":[358]},{"name":"ALLJOYN_DOUBLE","features":[358]},{"name":"ALLJOYN_DOUBLE_ARRAY","features":[358]},{"name":"ALLJOYN_HANDLE","features":[358]},{"name":"ALLJOYN_INT16","features":[358]},{"name":"ALLJOYN_INT16_ARRAY","features":[358]},{"name":"ALLJOYN_INT32","features":[358]},{"name":"ALLJOYN_INT32_ARRAY","features":[358]},{"name":"ALLJOYN_INT64","features":[358]},{"name":"ALLJOYN_INT64_ARRAY","features":[358]},{"name":"ALLJOYN_INVALID","features":[358]},{"name":"ALLJOYN_LITTLE_ENDIAN","features":[358]},{"name":"ALLJOYN_MEMBER_ANNOTATE_DEPRECATED","features":[358]},{"name":"ALLJOYN_MEMBER_ANNOTATE_GLOBAL_BROADCAST","features":[358]},{"name":"ALLJOYN_MEMBER_ANNOTATE_NO_REPLY","features":[358]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONCAST","features":[358]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONLESS","features":[358]},{"name":"ALLJOYN_MEMBER_ANNOTATE_UNICAST","features":[358]},{"name":"ALLJOYN_MESSAGE_DEFAULT_TIMEOUT","features":[358]},{"name":"ALLJOYN_MESSAGE_ERROR","features":[358]},{"name":"ALLJOYN_MESSAGE_FLAG_ALLOW_REMOTE_MSG","features":[358]},{"name":"ALLJOYN_MESSAGE_FLAG_AUTO_START","features":[358]},{"name":"ALLJOYN_MESSAGE_FLAG_ENCRYPTED","features":[358]},{"name":"ALLJOYN_MESSAGE_FLAG_GLOBAL_BROADCAST","features":[358]},{"name":"ALLJOYN_MESSAGE_FLAG_NO_REPLY_EXPECTED","features":[358]},{"name":"ALLJOYN_MESSAGE_FLAG_SESSIONLESS","features":[358]},{"name":"ALLJOYN_MESSAGE_INVALID","features":[358]},{"name":"ALLJOYN_MESSAGE_METHOD_CALL","features":[358]},{"name":"ALLJOYN_MESSAGE_METHOD_RET","features":[358]},{"name":"ALLJOYN_MESSAGE_SIGNAL","features":[358]},{"name":"ALLJOYN_NAMED_PIPE_CONNECT_SPEC","features":[358]},{"name":"ALLJOYN_OBJECT_PATH","features":[358]},{"name":"ALLJOYN_PROP_ACCESS_READ","features":[358]},{"name":"ALLJOYN_PROP_ACCESS_RW","features":[358]},{"name":"ALLJOYN_PROP_ACCESS_WRITE","features":[358]},{"name":"ALLJOYN_PROXIMITY_ANY","features":[358]},{"name":"ALLJOYN_PROXIMITY_NETWORK","features":[358]},{"name":"ALLJOYN_PROXIMITY_PHYSICAL","features":[358]},{"name":"ALLJOYN_READ_READY","features":[358]},{"name":"ALLJOYN_SESSIONLOST_INVALID","features":[358]},{"name":"ALLJOYN_SESSIONLOST_LINK_TIMEOUT","features":[358]},{"name":"ALLJOYN_SESSIONLOST_REASON_OTHER","features":[358]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_CLOSED_ABRUPTLY","features":[358]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_LEFT_SESSION","features":[358]},{"name":"ALLJOYN_SESSIONLOST_REMOVED_BY_BINDER","features":[358]},{"name":"ALLJOYN_SIGNATURE","features":[358]},{"name":"ALLJOYN_STRING","features":[358]},{"name":"ALLJOYN_STRUCT","features":[358]},{"name":"ALLJOYN_STRUCT_CLOSE","features":[358]},{"name":"ALLJOYN_STRUCT_OPEN","features":[358]},{"name":"ALLJOYN_TRAFFIC_TYPE_MESSAGES","features":[358]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_RELIABLE","features":[358]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_UNRELIABLE","features":[358]},{"name":"ALLJOYN_UINT16","features":[358]},{"name":"ALLJOYN_UINT16_ARRAY","features":[358]},{"name":"ALLJOYN_UINT32","features":[358]},{"name":"ALLJOYN_UINT32_ARRAY","features":[358]},{"name":"ALLJOYN_UINT64","features":[358]},{"name":"ALLJOYN_UINT64_ARRAY","features":[358]},{"name":"ALLJOYN_VARIANT","features":[358]},{"name":"ALLJOYN_WILDCARD","features":[358]},{"name":"ALLJOYN_WRITE_READY","features":[358]},{"name":"ANNOUNCED","features":[358]},{"name":"AllJoynAcceptBusConnection","features":[358,303]},{"name":"AllJoynCloseBusHandle","features":[358,303]},{"name":"AllJoynConnectToBus","features":[358,303]},{"name":"AllJoynCreateBus","features":[358,303,306]},{"name":"AllJoynEnumEvents","features":[358,303]},{"name":"AllJoynEventSelect","features":[358,303]},{"name":"AllJoynReceiveFromBus","features":[358,303]},{"name":"AllJoynSendToBus","features":[358,303]},{"name":"CAPABLE_ECDHE_ECDSA","features":[358]},{"name":"CAPABLE_ECDHE_NULL","features":[358]},{"name":"CAPABLE_ECDHE_SPEKE","features":[358]},{"name":"CLAIMABLE","features":[358]},{"name":"CLAIMED","features":[358]},{"name":"ER_ABOUT_ABOUTDATA_MISSING_REQUIRED_FIELD","features":[358]},{"name":"ER_ABOUT_DEFAULT_LANGUAGE_NOT_SPECIFIED","features":[358]},{"name":"ER_ABOUT_FIELD_ALREADY_SPECIFIED","features":[358]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_APPID_SIZE","features":[358]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_VALUE","features":[358]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_LISTENER","features":[358]},{"name":"ER_ABOUT_SESSIONPORT_NOT_BOUND","features":[358]},{"name":"ER_ALERTED_THREAD","features":[358]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_ERROR","features":[358]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_WARNING","features":[358]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_ALREADY_ADVERTISING","features":[358]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[358]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_ALREADY_EXISTS","features":[358]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_INVALID_OPTS","features":[358]},{"name":"ER_ALLJOYN_CANCELADVERTISENAME_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_CANCELFINDADVERTISEDNAME_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_ALREADY_DISCOVERING","features":[358]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[358]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_ALREADY_JOINED","features":[358]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_BAD_SESSION_OPTS","features":[358]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_CONNECT_FAILED","features":[358]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_NO_SESSION","features":[358]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_REJECTED","features":[358]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_UNREACHABLE","features":[358]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_NO_SESSION","features":[358]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_UNSUPPORTED","features":[358]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_UNSUPPORTED","features":[358]},{"name":"ER_ALLJOYN_PING_FAILED","features":[358]},{"name":"ER_ALLJOYN_PING_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_PING_REPLY_INCOMPATIBLE_REMOTE_ROUTING_NODE","features":[358]},{"name":"ER_ALLJOYN_PING_REPLY_IN_PROGRESS","features":[358]},{"name":"ER_ALLJOYN_PING_REPLY_TIMEOUT","features":[358]},{"name":"ER_ALLJOYN_PING_REPLY_UNKNOWN_NAME","features":[358]},{"name":"ER_ALLJOYN_PING_REPLY_UNREACHABLE","features":[358]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_INCOMPATIBLE_REMOTE_DAEMON","features":[358]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_BINDER","features":[358]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_FOUND","features":[358]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_MULTIPOINT","features":[358]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_NO_SESSION","features":[358]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_FAILED","features":[358]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NOT_SUPPORTED","features":[358]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NO_DEST_SUPPORT","features":[358]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_BAD_PORT","features":[358]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_FAILED","features":[358]},{"name":"ER_APPLICATION_STATE_LISTENER_ALREADY_EXISTS","features":[358]},{"name":"ER_APPLICATION_STATE_LISTENER_NO_SUCH_LISTENER","features":[358]},{"name":"ER_ARDP_BACKPRESSURE","features":[358]},{"name":"ER_ARDP_DISCONNECTING","features":[358]},{"name":"ER_ARDP_INVALID_CONNECTION","features":[358]},{"name":"ER_ARDP_INVALID_RESPONSE","features":[358]},{"name":"ER_ARDP_INVALID_STATE","features":[358]},{"name":"ER_ARDP_PERSIST_TIMEOUT","features":[358]},{"name":"ER_ARDP_PROBE_TIMEOUT","features":[358]},{"name":"ER_ARDP_REMOTE_CONNECTION_RESET","features":[358]},{"name":"ER_ARDP_TTL_EXPIRED","features":[358]},{"name":"ER_ARDP_VERSION_NOT_SUPPORTED","features":[358]},{"name":"ER_ARDP_WRITE_BLOCKED","features":[358]},{"name":"ER_AUTH_FAIL","features":[358]},{"name":"ER_AUTH_USER_REJECT","features":[358]},{"name":"ER_BAD_ARG_1","features":[358]},{"name":"ER_BAD_ARG_2","features":[358]},{"name":"ER_BAD_ARG_3","features":[358]},{"name":"ER_BAD_ARG_4","features":[358]},{"name":"ER_BAD_ARG_5","features":[358]},{"name":"ER_BAD_ARG_6","features":[358]},{"name":"ER_BAD_ARG_7","features":[358]},{"name":"ER_BAD_ARG_8","features":[358]},{"name":"ER_BAD_ARG_COUNT","features":[358]},{"name":"ER_BAD_HOSTNAME","features":[358]},{"name":"ER_BAD_STRING_ENCODING","features":[358]},{"name":"ER_BAD_TRANSPORT_MASK","features":[358]},{"name":"ER_BUFFER_TOO_SMALL","features":[358]},{"name":"ER_BUS_ALREADY_CONNECTED","features":[358]},{"name":"ER_BUS_ALREADY_LISTENING","features":[358]},{"name":"ER_BUS_ANNOTATION_ALREADY_EXISTS","features":[358]},{"name":"ER_BUS_AUTHENTICATION_PENDING","features":[358]},{"name":"ER_BUS_BAD_BODY_LEN","features":[358]},{"name":"ER_BUS_BAD_BUS_NAME","features":[358]},{"name":"ER_BUS_BAD_CHILD_PATH","features":[358]},{"name":"ER_BUS_BAD_ERROR_NAME","features":[358]},{"name":"ER_BUS_BAD_HDR_FLAGS","features":[358]},{"name":"ER_BUS_BAD_HEADER_FIELD","features":[358]},{"name":"ER_BUS_BAD_HEADER_LEN","features":[358]},{"name":"ER_BUS_BAD_INTERFACE_NAME","features":[358]},{"name":"ER_BUS_BAD_LENGTH","features":[358]},{"name":"ER_BUS_BAD_MEMBER_NAME","features":[358]},{"name":"ER_BUS_BAD_OBJ_PATH","features":[358]},{"name":"ER_BUS_BAD_SENDER_ID","features":[358]},{"name":"ER_BUS_BAD_SEND_PARAMETER","features":[358]},{"name":"ER_BUS_BAD_SESSION_OPTS","features":[358]},{"name":"ER_BUS_BAD_SIGNATURE","features":[358]},{"name":"ER_BUS_BAD_TRANSPORT_ARGS","features":[358]},{"name":"ER_BUS_BAD_VALUE","features":[358]},{"name":"ER_BUS_BAD_VALUE_TYPE","features":[358]},{"name":"ER_BUS_BAD_XML","features":[358]},{"name":"ER_BUS_BLOCKING_CALL_NOT_ALLOWED","features":[358]},{"name":"ER_BUS_BUS_ALREADY_STARTED","features":[358]},{"name":"ER_BUS_BUS_NOT_STARTED","features":[358]},{"name":"ER_BUS_CANNOT_ADD_HANDLER","features":[358]},{"name":"ER_BUS_CANNOT_ADD_INTERFACE","features":[358]},{"name":"ER_BUS_CANNOT_EXPAND_MESSAGE","features":[358]},{"name":"ER_BUS_CONNECTION_REJECTED","features":[358]},{"name":"ER_BUS_CONNECT_FAILED","features":[358]},{"name":"ER_BUS_CORRUPT_KEYSTORE","features":[358]},{"name":"ER_BUS_DESCRIPTION_ALREADY_EXISTS","features":[358]},{"name":"ER_BUS_DESTINATION_NOT_AUTHENTICATED","features":[358]},{"name":"ER_BUS_ELEMENT_NOT_FOUND","features":[358]},{"name":"ER_BUS_EMPTY_MESSAGE","features":[358]},{"name":"ER_BUS_ENDPOINT_CLOSING","features":[358]},{"name":"ER_BUS_ENDPOINT_REDIRECTED","features":[358]},{"name":"ER_BUS_ERRORS","features":[358]},{"name":"ER_BUS_ERROR_NAME_MISSING","features":[358]},{"name":"ER_BUS_ERROR_RESPONSE","features":[358]},{"name":"ER_BUS_ESTABLISH_FAILED","features":[358]},{"name":"ER_BUS_HANDLES_MISMATCH","features":[358]},{"name":"ER_BUS_HANDLES_NOT_ENABLED","features":[358]},{"name":"ER_BUS_HDR_EXPANSION_INVALID","features":[358]},{"name":"ER_BUS_IFACE_ALREADY_EXISTS","features":[358]},{"name":"ER_BUS_INCOMPATIBLE_DAEMON","features":[358]},{"name":"ER_BUS_INTERFACE_ACTIVATED","features":[358]},{"name":"ER_BUS_INTERFACE_MISMATCH","features":[358]},{"name":"ER_BUS_INTERFACE_MISSING","features":[358]},{"name":"ER_BUS_INTERFACE_NO_SUCH_MEMBER","features":[358]},{"name":"ER_BUS_INVALID_AUTH_MECHANISM","features":[358]},{"name":"ER_BUS_INVALID_HEADER_CHECKSUM","features":[358]},{"name":"ER_BUS_INVALID_HEADER_SERIAL","features":[358]},{"name":"ER_BUS_KEYBLOB_OP_INVALID","features":[358]},{"name":"ER_BUS_KEYSTORE_NOT_LOADED","features":[358]},{"name":"ER_BUS_KEYSTORE_VERSION_MISMATCH","features":[358]},{"name":"ER_BUS_KEY_EXPIRED","features":[358]},{"name":"ER_BUS_KEY_STORE_NOT_LOADED","features":[358]},{"name":"ER_BUS_KEY_UNAVAILABLE","features":[358]},{"name":"ER_BUS_LISTENER_ALREADY_SET","features":[358]},{"name":"ER_BUS_MATCH_RULE_NOT_FOUND","features":[358]},{"name":"ER_BUS_MEMBER_ALREADY_EXISTS","features":[358]},{"name":"ER_BUS_MEMBER_MISSING","features":[358]},{"name":"ER_BUS_MEMBER_NO_SUCH_SIGNATURE","features":[358]},{"name":"ER_BUS_MESSAGE_DECRYPTION_FAILED","features":[358]},{"name":"ER_BUS_MESSAGE_NOT_ENCRYPTED","features":[358]},{"name":"ER_BUS_METHOD_CALL_ABORTED","features":[358]},{"name":"ER_BUS_MISSING_COMPRESSION_TOKEN","features":[358]},{"name":"ER_BUS_NAME_TOO_LONG","features":[358]},{"name":"ER_BUS_NOT_ALLOWED","features":[358]},{"name":"ER_BUS_NOT_AUTHENTICATING","features":[358]},{"name":"ER_BUS_NOT_AUTHORIZED","features":[358]},{"name":"ER_BUS_NOT_A_COMPLETE_TYPE","features":[358]},{"name":"ER_BUS_NOT_A_DICTIONARY","features":[358]},{"name":"ER_BUS_NOT_COMPRESSED","features":[358]},{"name":"ER_BUS_NOT_CONNECTED","features":[358]},{"name":"ER_BUS_NOT_NUL_TERMINATED","features":[358]},{"name":"ER_BUS_NOT_OWNER","features":[358]},{"name":"ER_BUS_NO_AUTHENTICATION_MECHANISM","features":[358]},{"name":"ER_BUS_NO_CALL_FOR_REPLY","features":[358]},{"name":"ER_BUS_NO_ENDPOINT","features":[358]},{"name":"ER_BUS_NO_LISTENER","features":[358]},{"name":"ER_BUS_NO_PEER_GUID","features":[358]},{"name":"ER_BUS_NO_ROUTE","features":[358]},{"name":"ER_BUS_NO_SESSION","features":[358]},{"name":"ER_BUS_NO_SUCH_ANNOTATION","features":[358]},{"name":"ER_BUS_NO_SUCH_HANDLE","features":[358]},{"name":"ER_BUS_NO_SUCH_INTERFACE","features":[358]},{"name":"ER_BUS_NO_SUCH_MESSAGE","features":[358]},{"name":"ER_BUS_NO_SUCH_OBJECT","features":[358]},{"name":"ER_BUS_NO_SUCH_PROPERTY","features":[358]},{"name":"ER_BUS_NO_SUCH_SERVICE","features":[358]},{"name":"ER_BUS_NO_TRANSPORTS","features":[358]},{"name":"ER_BUS_OBJECT_NOT_REGISTERED","features":[358]},{"name":"ER_BUS_OBJECT_NO_SUCH_INTERFACE","features":[358]},{"name":"ER_BUS_OBJECT_NO_SUCH_MEMBER","features":[358]},{"name":"ER_BUS_OBJ_ALREADY_EXISTS","features":[358]},{"name":"ER_BUS_OBJ_NOT_FOUND","features":[358]},{"name":"ER_BUS_PATH_MISSING","features":[358]},{"name":"ER_BUS_PEER_AUTH_VERSION_MISMATCH","features":[358]},{"name":"ER_BUS_PING_GROUP_NOT_FOUND","features":[358]},{"name":"ER_BUS_POLICY_VIOLATION","features":[358]},{"name":"ER_BUS_PROPERTY_ACCESS_DENIED","features":[358]},{"name":"ER_BUS_PROPERTY_ALREADY_EXISTS","features":[358]},{"name":"ER_BUS_PROPERTY_VALUE_NOT_SET","features":[358]},{"name":"ER_BUS_READ_ERROR","features":[358]},{"name":"ER_BUS_REMOVED_BY_BINDER","features":[358]},{"name":"ER_BUS_REMOVED_BY_BINDER_SELF","features":[358]},{"name":"ER_BUS_REPLY_IS_ERROR_MESSAGE","features":[358]},{"name":"ER_BUS_REPLY_SERIAL_MISSING","features":[358]},{"name":"ER_BUS_SECURITY_FATAL","features":[358]},{"name":"ER_BUS_SECURITY_NOT_ENABLED","features":[358]},{"name":"ER_BUS_SELF_CONNECT","features":[358]},{"name":"ER_BUS_SET_PROPERTY_REJECTED","features":[358]},{"name":"ER_BUS_SET_WRONG_SIGNATURE","features":[358]},{"name":"ER_BUS_SIGNATURE_MISMATCH","features":[358]},{"name":"ER_BUS_STOPPING","features":[358]},{"name":"ER_BUS_TIME_TO_LIVE_EXPIRED","features":[358]},{"name":"ER_BUS_TRANSPORT_ACCESS_DENIED","features":[358]},{"name":"ER_BUS_TRANSPORT_NOT_AVAILABLE","features":[358]},{"name":"ER_BUS_TRANSPORT_NOT_STARTED","features":[358]},{"name":"ER_BUS_TRUNCATED","features":[358]},{"name":"ER_BUS_UNEXPECTED_DISPOSITION","features":[358]},{"name":"ER_BUS_UNEXPECTED_SIGNATURE","features":[358]},{"name":"ER_BUS_UNKNOWN_INTERFACE","features":[358]},{"name":"ER_BUS_UNKNOWN_PATH","features":[358]},{"name":"ER_BUS_UNKNOWN_SERIAL","features":[358]},{"name":"ER_BUS_UNMATCHED_REPLY_SERIAL","features":[358]},{"name":"ER_BUS_WAIT_FAILED","features":[358]},{"name":"ER_BUS_WRITE_ERROR","features":[358]},{"name":"ER_BUS_WRITE_QUEUE_FULL","features":[358]},{"name":"ER_CERTIFICATE_NOT_FOUND","features":[358]},{"name":"ER_COMMON_ERRORS","features":[358]},{"name":"ER_CONNECTION_LIMIT_EXCEEDED","features":[358]},{"name":"ER_CONN_REFUSED","features":[358]},{"name":"ER_CORRUPT_KEYBLOB","features":[358]},{"name":"ER_CRYPTO_ERROR","features":[358]},{"name":"ER_CRYPTO_HASH_UNINITIALIZED","features":[358]},{"name":"ER_CRYPTO_ILLEGAL_PARAMETERS","features":[358]},{"name":"ER_CRYPTO_INSUFFICIENT_SECURITY","features":[358]},{"name":"ER_CRYPTO_KEY_UNAVAILABLE","features":[358]},{"name":"ER_CRYPTO_KEY_UNUSABLE","features":[358]},{"name":"ER_CRYPTO_TRUNCATED","features":[358]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NON_EXISTENT","features":[358]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NOT_OWNER","features":[358]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_RELEASED","features":[358]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER","features":[358]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_EXISTS","features":[358]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_IN_QUEUE","features":[358]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER","features":[358]},{"name":"ER_DBUS_START_REPLY_ALREADY_RUNNING","features":[358]},{"name":"ER_DEADLOCK","features":[358]},{"name":"ER_DEAD_THREAD","features":[358]},{"name":"ER_DIGEST_MISMATCH","features":[358]},{"name":"ER_DUPLICATE_CERTIFICATE","features":[358]},{"name":"ER_DUPLICATE_KEY","features":[358]},{"name":"ER_EMPTY_KEY_BLOB","features":[358]},{"name":"ER_END_OF_DATA","features":[358]},{"name":"ER_EOF","features":[358]},{"name":"ER_EXTERNAL_THREAD","features":[358]},{"name":"ER_FAIL","features":[358]},{"name":"ER_FEATURE_NOT_AVAILABLE","features":[358]},{"name":"ER_INIT_FAILED","features":[358]},{"name":"ER_INVALID_ADDRESS","features":[358]},{"name":"ER_INVALID_APPLICATION_STATE","features":[358]},{"name":"ER_INVALID_CERTIFICATE","features":[358]},{"name":"ER_INVALID_CERTIFICATE_USAGE","features":[358]},{"name":"ER_INVALID_CERT_CHAIN","features":[358]},{"name":"ER_INVALID_CONFIG","features":[358]},{"name":"ER_INVALID_DATA","features":[358]},{"name":"ER_INVALID_GUID","features":[358]},{"name":"ER_INVALID_HTTP_METHOD_USED_FOR_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[358]},{"name":"ER_INVALID_KEY_ENCODING","features":[358]},{"name":"ER_INVALID_ON_DEMAND_CONNECTION_MESSAGE_RESPONSE","features":[358]},{"name":"ER_INVALID_PERSISTENT_CONNECTION_MESSAGE_RESPONSE","features":[358]},{"name":"ER_INVALID_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[358]},{"name":"ER_INVALID_SIGNAL_EMISSION_TYPE","features":[358]},{"name":"ER_INVALID_STREAM","features":[358]},{"name":"ER_IODISPATCH_STOPPING","features":[358]},{"name":"ER_KEY_STORE_ALREADY_INITIALIZED","features":[358]},{"name":"ER_KEY_STORE_ID_NOT_YET_SET","features":[358]},{"name":"ER_LANGUAGE_NOT_SUPPORTED","features":[358]},{"name":"ER_MANAGEMENT_ALREADY_STARTED","features":[358]},{"name":"ER_MANAGEMENT_NOT_STARTED","features":[358]},{"name":"ER_MANIFEST_NOT_FOUND","features":[358]},{"name":"ER_MANIFEST_REJECTED","features":[358]},{"name":"ER_MISSING_DIGEST_IN_CERTIFICATE","features":[358]},{"name":"ER_NONE","features":[358]},{"name":"ER_NOT_CONN","features":[358]},{"name":"ER_NOT_CONNECTED_TO_RENDEZVOUS_SERVER","features":[358]},{"name":"ER_NOT_IMPLEMENTED","features":[358]},{"name":"ER_NO_COMMON_TRUST","features":[358]},{"name":"ER_NO_SUCH_ALARM","features":[358]},{"name":"ER_NO_SUCH_DEVICE","features":[358]},{"name":"ER_NO_TRUST_ANCHOR","features":[358]},{"name":"ER_OK","features":[358]},{"name":"ER_OPEN_FAILED","features":[358]},{"name":"ER_OS_ERROR","features":[358]},{"name":"ER_OUT_OF_MEMORY","features":[358]},{"name":"ER_P2P","features":[358]},{"name":"ER_P2P_BUSY","features":[358]},{"name":"ER_P2P_DISABLED","features":[358]},{"name":"ER_P2P_FORBIDDEN","features":[358]},{"name":"ER_P2P_NOT_CONNECTED","features":[358]},{"name":"ER_P2P_NO_GO","features":[358]},{"name":"ER_P2P_NO_STA","features":[358]},{"name":"ER_P2P_TIMEOUT","features":[358]},{"name":"ER_PACKET_BAD_CRC","features":[358]},{"name":"ER_PACKET_BAD_FORMAT","features":[358]},{"name":"ER_PACKET_BAD_PARAMETER","features":[358]},{"name":"ER_PACKET_BUS_NO_SUCH_CHANNEL","features":[358]},{"name":"ER_PACKET_CHANNEL_FAIL","features":[358]},{"name":"ER_PACKET_CONNECT_TIMEOUT","features":[358]},{"name":"ER_PACKET_TOO_LARGE","features":[358]},{"name":"ER_PARSE_ERROR","features":[358]},{"name":"ER_PERMISSION_DENIED","features":[358]},{"name":"ER_POLICY_NOT_NEWER","features":[358]},{"name":"ER_PROXIMITY_CONNECTION_ESTABLISH_FAIL","features":[358]},{"name":"ER_PROXIMITY_NO_PEERS_FOUND","features":[358]},{"name":"ER_READ_ERROR","features":[358]},{"name":"ER_RENDEZVOUS_SERVER_DEACTIVATED_USER","features":[358]},{"name":"ER_RENDEZVOUS_SERVER_ERR401_UNAUTHORIZED_REQUEST","features":[358]},{"name":"ER_RENDEZVOUS_SERVER_ERR500_INTERNAL_ERROR","features":[358]},{"name":"ER_RENDEZVOUS_SERVER_ERR503_STATUS_UNAVAILABLE","features":[358]},{"name":"ER_RENDEZVOUS_SERVER_ROOT_CERTIFICATE_UNINITIALIZED","features":[358]},{"name":"ER_RENDEZVOUS_SERVER_UNKNOWN_USER","features":[358]},{"name":"ER_RENDEZVOUS_SERVER_UNRECOVERABLE_ERROR","features":[358]},{"name":"ER_SLAP_CRC_ERROR","features":[358]},{"name":"ER_SLAP_ERROR","features":[358]},{"name":"ER_SLAP_HDR_CHECKSUM_ERROR","features":[358]},{"name":"ER_SLAP_INVALID_PACKET_LEN","features":[358]},{"name":"ER_SLAP_INVALID_PACKET_TYPE","features":[358]},{"name":"ER_SLAP_LEN_MISMATCH","features":[358]},{"name":"ER_SLAP_OTHER_END_CLOSED","features":[358]},{"name":"ER_SLAP_PACKET_TYPE_MISMATCH","features":[358]},{"name":"ER_SOCKET_BIND_ERROR","features":[358]},{"name":"ER_SOCK_CLOSING","features":[358]},{"name":"ER_SOCK_OTHER_END_CLOSED","features":[358]},{"name":"ER_SSL_CONNECT","features":[358]},{"name":"ER_SSL_ERRORS","features":[358]},{"name":"ER_SSL_INIT","features":[358]},{"name":"ER_SSL_VERIFY","features":[358]},{"name":"ER_STOPPING_THREAD","features":[358]},{"name":"ER_TCP_MAX_UNTRUSTED","features":[358]},{"name":"ER_THREADPOOL_EXHAUSTED","features":[358]},{"name":"ER_THREADPOOL_STOPPING","features":[358]},{"name":"ER_THREAD_NO_WAIT","features":[358]},{"name":"ER_THREAD_RUNNING","features":[358]},{"name":"ER_THREAD_STOPPING","features":[358]},{"name":"ER_TIMEOUT","features":[358]},{"name":"ER_TIMER_EXITING","features":[358]},{"name":"ER_TIMER_FALLBEHIND","features":[358]},{"name":"ER_TIMER_FULL","features":[358]},{"name":"ER_TIMER_NOT_ALLOWED","features":[358]},{"name":"ER_UDP_BACKPRESSURE","features":[358]},{"name":"ER_UDP_BUSHELLO","features":[358]},{"name":"ER_UDP_DEMUX_NO_ENDPOINT","features":[358]},{"name":"ER_UDP_DISCONNECT","features":[358]},{"name":"ER_UDP_EARLY_EXIT","features":[358]},{"name":"ER_UDP_ENDPOINT_NOT_STARTED","features":[358]},{"name":"ER_UDP_ENDPOINT_REMOVED","features":[358]},{"name":"ER_UDP_ENDPOINT_STALLED","features":[358]},{"name":"ER_UDP_INVALID","features":[358]},{"name":"ER_UDP_LOCAL_DISCONNECT","features":[358]},{"name":"ER_UDP_LOCAL_DISCONNECT_FAIL","features":[358]},{"name":"ER_UDP_MESSAGE","features":[358]},{"name":"ER_UDP_MSG_TOO_LONG","features":[358]},{"name":"ER_UDP_NOT_DISCONNECTED","features":[358]},{"name":"ER_UDP_NOT_IMPLEMENTED","features":[358]},{"name":"ER_UDP_NO_LISTENER","features":[358]},{"name":"ER_UDP_NO_NETWORK","features":[358]},{"name":"ER_UDP_STOPPING","features":[358]},{"name":"ER_UDP_UNEXPECTED_FLOW","features":[358]},{"name":"ER_UDP_UNEXPECTED_LENGTH","features":[358]},{"name":"ER_UDP_UNSUPPORTED","features":[358]},{"name":"ER_UNABLE_TO_CONNECT_TO_RENDEZVOUS_SERVER","features":[358]},{"name":"ER_UNABLE_TO_SEND_MESSAGE_TO_RENDEZVOUS_SERVER","features":[358]},{"name":"ER_UNKNOWN_CERTIFICATE","features":[358]},{"name":"ER_UTF_CONVERSION_FAILED","features":[358]},{"name":"ER_WARNING","features":[358]},{"name":"ER_WOULDBLOCK","features":[358]},{"name":"ER_WRITE_ERROR","features":[358]},{"name":"ER_XML_ACLS_MISSING","features":[358]},{"name":"ER_XML_ACL_ALL_TYPE_PEER_WITH_OTHERS","features":[358]},{"name":"ER_XML_ACL_PEERS_MISSING","features":[358]},{"name":"ER_XML_ACL_PEER_NOT_UNIQUE","features":[358]},{"name":"ER_XML_ACL_PEER_PUBLIC_KEY_SET","features":[358]},{"name":"ER_XML_ANNOTATION_NOT_UNIQUE","features":[358]},{"name":"ER_XML_CONVERTER_ERROR","features":[358]},{"name":"ER_XML_INTERFACE_MEMBERS_MISSING","features":[358]},{"name":"ER_XML_INTERFACE_NAME_NOT_UNIQUE","features":[358]},{"name":"ER_XML_INVALID_ACL_PEER_CHILDREN_COUNT","features":[358]},{"name":"ER_XML_INVALID_ACL_PEER_PUBLIC_KEY","features":[358]},{"name":"ER_XML_INVALID_ACL_PEER_TYPE","features":[358]},{"name":"ER_XML_INVALID_ANNOTATIONS_COUNT","features":[358]},{"name":"ER_XML_INVALID_ATTRIBUTE_VALUE","features":[358]},{"name":"ER_XML_INVALID_BASE64","features":[358]},{"name":"ER_XML_INVALID_ELEMENT_CHILDREN_COUNT","features":[358]},{"name":"ER_XML_INVALID_ELEMENT_NAME","features":[358]},{"name":"ER_XML_INVALID_INTERFACE_NAME","features":[358]},{"name":"ER_XML_INVALID_MANIFEST_VERSION","features":[358]},{"name":"ER_XML_INVALID_MEMBER_ACTION","features":[358]},{"name":"ER_XML_INVALID_MEMBER_NAME","features":[358]},{"name":"ER_XML_INVALID_MEMBER_TYPE","features":[358]},{"name":"ER_XML_INVALID_OBJECT_PATH","features":[358]},{"name":"ER_XML_INVALID_OID","features":[358]},{"name":"ER_XML_INVALID_POLICY_SERIAL_NUMBER","features":[358]},{"name":"ER_XML_INVALID_POLICY_VERSION","features":[358]},{"name":"ER_XML_INVALID_RULES_COUNT","features":[358]},{"name":"ER_XML_INVALID_SECURITY_LEVEL_ANNOTATION_VALUE","features":[358]},{"name":"ER_XML_MALFORMED","features":[358]},{"name":"ER_XML_MEMBER_DENY_ACTION_WITH_OTHER","features":[358]},{"name":"ER_XML_MEMBER_NAME_NOT_UNIQUE","features":[358]},{"name":"ER_XML_OBJECT_PATH_NOT_UNIQUE","features":[358]},{"name":"NEED_UPDATE","features":[358]},{"name":"NOT_CLAIMABLE","features":[358]},{"name":"PASSWORD_GENERATED_BY_APPLICATION","features":[358]},{"name":"PASSWORD_GENERATED_BY_SECURITY_MANAGER","features":[358]},{"name":"QCC_FALSE","features":[358]},{"name":"QCC_StatusText","features":[358]},{"name":"QCC_TRUE","features":[358]},{"name":"QStatus","features":[358]},{"name":"UNANNOUNCED","features":[358]},{"name":"alljoyn_about_announced_ptr","features":[358]},{"name":"alljoyn_about_announceflag","features":[358]},{"name":"alljoyn_aboutdata","features":[358]},{"name":"alljoyn_aboutdata_create","features":[358]},{"name":"alljoyn_aboutdata_create_empty","features":[358]},{"name":"alljoyn_aboutdata_create_full","features":[358]},{"name":"alljoyn_aboutdata_createfrommsgarg","features":[358]},{"name":"alljoyn_aboutdata_createfromxml","features":[358]},{"name":"alljoyn_aboutdata_destroy","features":[358]},{"name":"alljoyn_aboutdata_getaboutdata","features":[358]},{"name":"alljoyn_aboutdata_getajsoftwareversion","features":[358]},{"name":"alljoyn_aboutdata_getannouncedaboutdata","features":[358]},{"name":"alljoyn_aboutdata_getappid","features":[358]},{"name":"alljoyn_aboutdata_getappname","features":[358]},{"name":"alljoyn_aboutdata_getdateofmanufacture","features":[358]},{"name":"alljoyn_aboutdata_getdefaultlanguage","features":[358]},{"name":"alljoyn_aboutdata_getdescription","features":[358]},{"name":"alljoyn_aboutdata_getdeviceid","features":[358]},{"name":"alljoyn_aboutdata_getdevicename","features":[358]},{"name":"alljoyn_aboutdata_getfield","features":[358]},{"name":"alljoyn_aboutdata_getfields","features":[358]},{"name":"alljoyn_aboutdata_getfieldsignature","features":[358]},{"name":"alljoyn_aboutdata_gethardwareversion","features":[358]},{"name":"alljoyn_aboutdata_getmanufacturer","features":[358]},{"name":"alljoyn_aboutdata_getmodelnumber","features":[358]},{"name":"alljoyn_aboutdata_getsoftwareversion","features":[358]},{"name":"alljoyn_aboutdata_getsupportedlanguages","features":[358]},{"name":"alljoyn_aboutdata_getsupporturl","features":[358]},{"name":"alljoyn_aboutdata_isfieldannounced","features":[358]},{"name":"alljoyn_aboutdata_isfieldlocalized","features":[358]},{"name":"alljoyn_aboutdata_isfieldrequired","features":[358]},{"name":"alljoyn_aboutdata_isvalid","features":[358]},{"name":"alljoyn_aboutdata_setappid","features":[358]},{"name":"alljoyn_aboutdata_setappid_fromstring","features":[358]},{"name":"alljoyn_aboutdata_setappname","features":[358]},{"name":"alljoyn_aboutdata_setdateofmanufacture","features":[358]},{"name":"alljoyn_aboutdata_setdefaultlanguage","features":[358]},{"name":"alljoyn_aboutdata_setdescription","features":[358]},{"name":"alljoyn_aboutdata_setdeviceid","features":[358]},{"name":"alljoyn_aboutdata_setdevicename","features":[358]},{"name":"alljoyn_aboutdata_setfield","features":[358]},{"name":"alljoyn_aboutdata_sethardwareversion","features":[358]},{"name":"alljoyn_aboutdata_setmanufacturer","features":[358]},{"name":"alljoyn_aboutdata_setmodelnumber","features":[358]},{"name":"alljoyn_aboutdata_setsoftwareversion","features":[358]},{"name":"alljoyn_aboutdata_setsupportedlanguage","features":[358]},{"name":"alljoyn_aboutdata_setsupporturl","features":[358]},{"name":"alljoyn_aboutdatalistener","features":[358]},{"name":"alljoyn_aboutdatalistener_callbacks","features":[358]},{"name":"alljoyn_aboutdatalistener_create","features":[358]},{"name":"alljoyn_aboutdatalistener_destroy","features":[358]},{"name":"alljoyn_aboutdatalistener_getaboutdata_ptr","features":[358]},{"name":"alljoyn_aboutdatalistener_getannouncedaboutdata_ptr","features":[358]},{"name":"alljoyn_abouticon","features":[358]},{"name":"alljoyn_abouticon_clear","features":[358]},{"name":"alljoyn_abouticon_create","features":[358]},{"name":"alljoyn_abouticon_destroy","features":[358]},{"name":"alljoyn_abouticon_getcontent","features":[358]},{"name":"alljoyn_abouticon_geturl","features":[358]},{"name":"alljoyn_abouticon_setcontent","features":[358]},{"name":"alljoyn_abouticon_setcontent_frommsgarg","features":[358]},{"name":"alljoyn_abouticon_seturl","features":[358]},{"name":"alljoyn_abouticonobj","features":[358]},{"name":"alljoyn_abouticonobj_create","features":[358]},{"name":"alljoyn_abouticonobj_destroy","features":[358]},{"name":"alljoyn_abouticonproxy","features":[358]},{"name":"alljoyn_abouticonproxy_create","features":[358]},{"name":"alljoyn_abouticonproxy_destroy","features":[358]},{"name":"alljoyn_abouticonproxy_geticon","features":[358]},{"name":"alljoyn_abouticonproxy_getversion","features":[358]},{"name":"alljoyn_aboutlistener","features":[358]},{"name":"alljoyn_aboutlistener_callback","features":[358]},{"name":"alljoyn_aboutlistener_create","features":[358]},{"name":"alljoyn_aboutlistener_destroy","features":[358]},{"name":"alljoyn_aboutobj","features":[358]},{"name":"alljoyn_aboutobj_announce","features":[358]},{"name":"alljoyn_aboutobj_announce_using_datalistener","features":[358]},{"name":"alljoyn_aboutobj_create","features":[358]},{"name":"alljoyn_aboutobj_destroy","features":[358]},{"name":"alljoyn_aboutobj_unannounce","features":[358]},{"name":"alljoyn_aboutobjectdescription","features":[358]},{"name":"alljoyn_aboutobjectdescription_clear","features":[358]},{"name":"alljoyn_aboutobjectdescription_create","features":[358]},{"name":"alljoyn_aboutobjectdescription_create_full","features":[358]},{"name":"alljoyn_aboutobjectdescription_createfrommsgarg","features":[358]},{"name":"alljoyn_aboutobjectdescription_destroy","features":[358]},{"name":"alljoyn_aboutobjectdescription_getinterfacepaths","features":[358]},{"name":"alljoyn_aboutobjectdescription_getinterfaces","features":[358]},{"name":"alljoyn_aboutobjectdescription_getmsgarg","features":[358]},{"name":"alljoyn_aboutobjectdescription_getpaths","features":[358]},{"name":"alljoyn_aboutobjectdescription_hasinterface","features":[358]},{"name":"alljoyn_aboutobjectdescription_hasinterfaceatpath","features":[358]},{"name":"alljoyn_aboutobjectdescription_haspath","features":[358]},{"name":"alljoyn_aboutproxy","features":[358]},{"name":"alljoyn_aboutproxy_create","features":[358]},{"name":"alljoyn_aboutproxy_destroy","features":[358]},{"name":"alljoyn_aboutproxy_getaboutdata","features":[358]},{"name":"alljoyn_aboutproxy_getobjectdescription","features":[358]},{"name":"alljoyn_aboutproxy_getversion","features":[358]},{"name":"alljoyn_applicationstate","features":[358]},{"name":"alljoyn_applicationstatelistener","features":[358]},{"name":"alljoyn_applicationstatelistener_callbacks","features":[358]},{"name":"alljoyn_applicationstatelistener_create","features":[358]},{"name":"alljoyn_applicationstatelistener_destroy","features":[358]},{"name":"alljoyn_applicationstatelistener_state_ptr","features":[358]},{"name":"alljoyn_authlistener","features":[358]},{"name":"alljoyn_authlistener_authenticationcomplete_ptr","features":[358]},{"name":"alljoyn_authlistener_callbacks","features":[358]},{"name":"alljoyn_authlistener_create","features":[358]},{"name":"alljoyn_authlistener_destroy","features":[358]},{"name":"alljoyn_authlistener_requestcredentials_ptr","features":[358]},{"name":"alljoyn_authlistener_requestcredentialsasync_ptr","features":[358]},{"name":"alljoyn_authlistener_requestcredentialsresponse","features":[358]},{"name":"alljoyn_authlistener_securityviolation_ptr","features":[358]},{"name":"alljoyn_authlistener_setsharedsecret","features":[358]},{"name":"alljoyn_authlistener_verifycredentials_ptr","features":[358]},{"name":"alljoyn_authlistener_verifycredentialsasync_ptr","features":[358]},{"name":"alljoyn_authlistener_verifycredentialsresponse","features":[358]},{"name":"alljoyn_authlistenerasync_callbacks","features":[358]},{"name":"alljoyn_authlistenerasync_create","features":[358]},{"name":"alljoyn_authlistenerasync_destroy","features":[358]},{"name":"alljoyn_autopinger","features":[358]},{"name":"alljoyn_autopinger_adddestination","features":[358]},{"name":"alljoyn_autopinger_addpinggroup","features":[358]},{"name":"alljoyn_autopinger_create","features":[358]},{"name":"alljoyn_autopinger_destination_found_ptr","features":[358]},{"name":"alljoyn_autopinger_destination_lost_ptr","features":[358]},{"name":"alljoyn_autopinger_destroy","features":[358]},{"name":"alljoyn_autopinger_pause","features":[358]},{"name":"alljoyn_autopinger_removedestination","features":[358]},{"name":"alljoyn_autopinger_removepinggroup","features":[358]},{"name":"alljoyn_autopinger_resume","features":[358]},{"name":"alljoyn_autopinger_setpinginterval","features":[358]},{"name":"alljoyn_busattachment","features":[358]},{"name":"alljoyn_busattachment_addlogonentry","features":[358]},{"name":"alljoyn_busattachment_addmatch","features":[358]},{"name":"alljoyn_busattachment_advertisename","features":[358]},{"name":"alljoyn_busattachment_bindsessionport","features":[358]},{"name":"alljoyn_busattachment_canceladvertisename","features":[358]},{"name":"alljoyn_busattachment_cancelfindadvertisedname","features":[358]},{"name":"alljoyn_busattachment_cancelfindadvertisednamebytransport","features":[358]},{"name":"alljoyn_busattachment_cancelwhoimplements_interface","features":[358]},{"name":"alljoyn_busattachment_cancelwhoimplements_interfaces","features":[358]},{"name":"alljoyn_busattachment_clearkeys","features":[358]},{"name":"alljoyn_busattachment_clearkeystore","features":[358]},{"name":"alljoyn_busattachment_connect","features":[358]},{"name":"alljoyn_busattachment_create","features":[358]},{"name":"alljoyn_busattachment_create_concurrency","features":[358]},{"name":"alljoyn_busattachment_createinterface","features":[358]},{"name":"alljoyn_busattachment_createinterface_secure","features":[358]},{"name":"alljoyn_busattachment_createinterfacesfromxml","features":[358]},{"name":"alljoyn_busattachment_deletedefaultkeystore","features":[358]},{"name":"alljoyn_busattachment_deleteinterface","features":[358]},{"name":"alljoyn_busattachment_destroy","features":[358]},{"name":"alljoyn_busattachment_disconnect","features":[358]},{"name":"alljoyn_busattachment_enableconcurrentcallbacks","features":[358]},{"name":"alljoyn_busattachment_enablepeersecurity","features":[358]},{"name":"alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener","features":[358]},{"name":"alljoyn_busattachment_findadvertisedname","features":[358]},{"name":"alljoyn_busattachment_findadvertisednamebytransport","features":[358]},{"name":"alljoyn_busattachment_getalljoyndebugobj","features":[358]},{"name":"alljoyn_busattachment_getalljoynproxyobj","features":[358]},{"name":"alljoyn_busattachment_getconcurrency","features":[358]},{"name":"alljoyn_busattachment_getconnectspec","features":[358]},{"name":"alljoyn_busattachment_getdbusproxyobj","features":[358]},{"name":"alljoyn_busattachment_getglobalguidstring","features":[358]},{"name":"alljoyn_busattachment_getinterface","features":[358]},{"name":"alljoyn_busattachment_getinterfaces","features":[358]},{"name":"alljoyn_busattachment_getkeyexpiration","features":[358]},{"name":"alljoyn_busattachment_getpeerguid","features":[358]},{"name":"alljoyn_busattachment_getpermissionconfigurator","features":[358]},{"name":"alljoyn_busattachment_gettimestamp","features":[358]},{"name":"alljoyn_busattachment_getuniquename","features":[358]},{"name":"alljoyn_busattachment_isconnected","features":[358]},{"name":"alljoyn_busattachment_ispeersecurityenabled","features":[358]},{"name":"alljoyn_busattachment_isstarted","features":[358]},{"name":"alljoyn_busattachment_isstopping","features":[358]},{"name":"alljoyn_busattachment_join","features":[358]},{"name":"alljoyn_busattachment_joinsession","features":[358]},{"name":"alljoyn_busattachment_joinsessionasync","features":[358]},{"name":"alljoyn_busattachment_joinsessioncb_ptr","features":[358]},{"name":"alljoyn_busattachment_leavesession","features":[358]},{"name":"alljoyn_busattachment_namehasowner","features":[358]},{"name":"alljoyn_busattachment_ping","features":[358]},{"name":"alljoyn_busattachment_registeraboutlistener","features":[358]},{"name":"alljoyn_busattachment_registerapplicationstatelistener","features":[358]},{"name":"alljoyn_busattachment_registerbuslistener","features":[358]},{"name":"alljoyn_busattachment_registerbusobject","features":[358]},{"name":"alljoyn_busattachment_registerbusobject_secure","features":[358]},{"name":"alljoyn_busattachment_registerkeystorelistener","features":[358]},{"name":"alljoyn_busattachment_registersignalhandler","features":[358]},{"name":"alljoyn_busattachment_registersignalhandlerwithrule","features":[358]},{"name":"alljoyn_busattachment_releasename","features":[358]},{"name":"alljoyn_busattachment_reloadkeystore","features":[358]},{"name":"alljoyn_busattachment_removematch","features":[358]},{"name":"alljoyn_busattachment_removesessionmember","features":[358]},{"name":"alljoyn_busattachment_requestname","features":[358]},{"name":"alljoyn_busattachment_secureconnection","features":[358]},{"name":"alljoyn_busattachment_secureconnectionasync","features":[358]},{"name":"alljoyn_busattachment_setdaemondebug","features":[358]},{"name":"alljoyn_busattachment_setkeyexpiration","features":[358]},{"name":"alljoyn_busattachment_setlinktimeout","features":[358]},{"name":"alljoyn_busattachment_setlinktimeoutasync","features":[358]},{"name":"alljoyn_busattachment_setlinktimeoutcb_ptr","features":[358]},{"name":"alljoyn_busattachment_setsessionlistener","features":[358]},{"name":"alljoyn_busattachment_start","features":[358]},{"name":"alljoyn_busattachment_stop","features":[358]},{"name":"alljoyn_busattachment_unbindsessionport","features":[358]},{"name":"alljoyn_busattachment_unregisteraboutlistener","features":[358]},{"name":"alljoyn_busattachment_unregisterallaboutlisteners","features":[358]},{"name":"alljoyn_busattachment_unregisterallhandlers","features":[358]},{"name":"alljoyn_busattachment_unregisterapplicationstatelistener","features":[358]},{"name":"alljoyn_busattachment_unregisterbuslistener","features":[358]},{"name":"alljoyn_busattachment_unregisterbusobject","features":[358]},{"name":"alljoyn_busattachment_unregistersignalhandler","features":[358]},{"name":"alljoyn_busattachment_unregistersignalhandlerwithrule","features":[358]},{"name":"alljoyn_busattachment_whoimplements_interface","features":[358]},{"name":"alljoyn_busattachment_whoimplements_interfaces","features":[358]},{"name":"alljoyn_buslistener","features":[358]},{"name":"alljoyn_buslistener_bus_disconnected_ptr","features":[358]},{"name":"alljoyn_buslistener_bus_prop_changed_ptr","features":[358]},{"name":"alljoyn_buslistener_bus_stopping_ptr","features":[358]},{"name":"alljoyn_buslistener_callbacks","features":[358]},{"name":"alljoyn_buslistener_create","features":[358]},{"name":"alljoyn_buslistener_destroy","features":[358]},{"name":"alljoyn_buslistener_found_advertised_name_ptr","features":[358]},{"name":"alljoyn_buslistener_listener_registered_ptr","features":[358]},{"name":"alljoyn_buslistener_listener_unregistered_ptr","features":[358]},{"name":"alljoyn_buslistener_lost_advertised_name_ptr","features":[358]},{"name":"alljoyn_buslistener_name_owner_changed_ptr","features":[358]},{"name":"alljoyn_busobject","features":[358]},{"name":"alljoyn_busobject_addinterface","features":[358]},{"name":"alljoyn_busobject_addinterface_announced","features":[358]},{"name":"alljoyn_busobject_addmethodhandler","features":[358]},{"name":"alljoyn_busobject_addmethodhandlers","features":[358]},{"name":"alljoyn_busobject_callbacks","features":[358]},{"name":"alljoyn_busobject_cancelsessionlessmessage","features":[358]},{"name":"alljoyn_busobject_cancelsessionlessmessage_serial","features":[358]},{"name":"alljoyn_busobject_create","features":[358]},{"name":"alljoyn_busobject_destroy","features":[358]},{"name":"alljoyn_busobject_emitpropertieschanged","features":[358]},{"name":"alljoyn_busobject_emitpropertychanged","features":[358]},{"name":"alljoyn_busobject_getannouncedinterfacenames","features":[358]},{"name":"alljoyn_busobject_getbusattachment","features":[358]},{"name":"alljoyn_busobject_getname","features":[358]},{"name":"alljoyn_busobject_getpath","features":[358]},{"name":"alljoyn_busobject_issecure","features":[358]},{"name":"alljoyn_busobject_methodentry","features":[358]},{"name":"alljoyn_busobject_methodreply_args","features":[358]},{"name":"alljoyn_busobject_methodreply_err","features":[358]},{"name":"alljoyn_busobject_methodreply_status","features":[358]},{"name":"alljoyn_busobject_object_registration_ptr","features":[358]},{"name":"alljoyn_busobject_prop_get_ptr","features":[358]},{"name":"alljoyn_busobject_prop_set_ptr","features":[358]},{"name":"alljoyn_busobject_setannounceflag","features":[358]},{"name":"alljoyn_busobject_signal","features":[358]},{"name":"alljoyn_certificateid","features":[358]},{"name":"alljoyn_certificateidarray","features":[358]},{"name":"alljoyn_claimcapability_masks","features":[358]},{"name":"alljoyn_claimcapabilityadditionalinfo_masks","features":[358]},{"name":"alljoyn_credentials","features":[358]},{"name":"alljoyn_credentials_clear","features":[358]},{"name":"alljoyn_credentials_create","features":[358]},{"name":"alljoyn_credentials_destroy","features":[358]},{"name":"alljoyn_credentials_getcertchain","features":[358]},{"name":"alljoyn_credentials_getexpiration","features":[358]},{"name":"alljoyn_credentials_getlogonentry","features":[358]},{"name":"alljoyn_credentials_getpassword","features":[358]},{"name":"alljoyn_credentials_getprivateKey","features":[358]},{"name":"alljoyn_credentials_getusername","features":[358]},{"name":"alljoyn_credentials_isset","features":[358]},{"name":"alljoyn_credentials_setcertchain","features":[358]},{"name":"alljoyn_credentials_setexpiration","features":[358]},{"name":"alljoyn_credentials_setlogonentry","features":[358]},{"name":"alljoyn_credentials_setpassword","features":[358]},{"name":"alljoyn_credentials_setprivatekey","features":[358]},{"name":"alljoyn_credentials_setusername","features":[358]},{"name":"alljoyn_getbuildinfo","features":[358]},{"name":"alljoyn_getnumericversion","features":[358]},{"name":"alljoyn_getversion","features":[358]},{"name":"alljoyn_init","features":[358]},{"name":"alljoyn_interfacedescription","features":[358]},{"name":"alljoyn_interfacedescription_activate","features":[358]},{"name":"alljoyn_interfacedescription_addannotation","features":[358]},{"name":"alljoyn_interfacedescription_addargannotation","features":[358]},{"name":"alljoyn_interfacedescription_addmember","features":[358]},{"name":"alljoyn_interfacedescription_addmemberannotation","features":[358]},{"name":"alljoyn_interfacedescription_addmethod","features":[358]},{"name":"alljoyn_interfacedescription_addproperty","features":[358]},{"name":"alljoyn_interfacedescription_addpropertyannotation","features":[358]},{"name":"alljoyn_interfacedescription_addsignal","features":[358]},{"name":"alljoyn_interfacedescription_eql","features":[358]},{"name":"alljoyn_interfacedescription_getannotation","features":[358]},{"name":"alljoyn_interfacedescription_getannotationatindex","features":[358]},{"name":"alljoyn_interfacedescription_getannotationscount","features":[358]},{"name":"alljoyn_interfacedescription_getargdescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_getdescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages","features":[358]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages2","features":[358]},{"name":"alljoyn_interfacedescription_getdescriptiontranslationcallback","features":[358]},{"name":"alljoyn_interfacedescription_getmember","features":[358]},{"name":"alljoyn_interfacedescription_getmemberannotation","features":[358]},{"name":"alljoyn_interfacedescription_getmemberargannotation","features":[358]},{"name":"alljoyn_interfacedescription_getmemberdescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_getmembers","features":[358]},{"name":"alljoyn_interfacedescription_getmethod","features":[358]},{"name":"alljoyn_interfacedescription_getname","features":[358]},{"name":"alljoyn_interfacedescription_getproperties","features":[358]},{"name":"alljoyn_interfacedescription_getproperty","features":[358]},{"name":"alljoyn_interfacedescription_getpropertyannotation","features":[358]},{"name":"alljoyn_interfacedescription_getpropertydescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_getsecuritypolicy","features":[358]},{"name":"alljoyn_interfacedescription_getsignal","features":[358]},{"name":"alljoyn_interfacedescription_hasdescription","features":[358]},{"name":"alljoyn_interfacedescription_hasmember","features":[358]},{"name":"alljoyn_interfacedescription_hasproperties","features":[358]},{"name":"alljoyn_interfacedescription_hasproperty","features":[358]},{"name":"alljoyn_interfacedescription_introspect","features":[358]},{"name":"alljoyn_interfacedescription_issecure","features":[358]},{"name":"alljoyn_interfacedescription_member","features":[358]},{"name":"alljoyn_interfacedescription_member_eql","features":[358]},{"name":"alljoyn_interfacedescription_member_getannotation","features":[358]},{"name":"alljoyn_interfacedescription_member_getannotationatindex","features":[358]},{"name":"alljoyn_interfacedescription_member_getannotationscount","features":[358]},{"name":"alljoyn_interfacedescription_member_getargannotation","features":[358]},{"name":"alljoyn_interfacedescription_member_getargannotationatindex","features":[358]},{"name":"alljoyn_interfacedescription_member_getargannotationscount","features":[358]},{"name":"alljoyn_interfacedescription_property","features":[358]},{"name":"alljoyn_interfacedescription_property_eql","features":[358]},{"name":"alljoyn_interfacedescription_property_getannotation","features":[358]},{"name":"alljoyn_interfacedescription_property_getannotationatindex","features":[358]},{"name":"alljoyn_interfacedescription_property_getannotationscount","features":[358]},{"name":"alljoyn_interfacedescription_securitypolicy","features":[358]},{"name":"alljoyn_interfacedescription_setargdescription","features":[358]},{"name":"alljoyn_interfacedescription_setargdescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_setdescription","features":[358]},{"name":"alljoyn_interfacedescription_setdescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_setdescriptionlanguage","features":[358]},{"name":"alljoyn_interfacedescription_setdescriptiontranslationcallback","features":[358]},{"name":"alljoyn_interfacedescription_setmemberdescription","features":[358]},{"name":"alljoyn_interfacedescription_setmemberdescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_setpropertydescription","features":[358]},{"name":"alljoyn_interfacedescription_setpropertydescriptionforlanguage","features":[358]},{"name":"alljoyn_interfacedescription_translation_callback_ptr","features":[358]},{"name":"alljoyn_keystore","features":[358]},{"name":"alljoyn_keystorelistener","features":[358]},{"name":"alljoyn_keystorelistener_acquireexclusivelock_ptr","features":[358]},{"name":"alljoyn_keystorelistener_callbacks","features":[358]},{"name":"alljoyn_keystorelistener_create","features":[358]},{"name":"alljoyn_keystorelistener_destroy","features":[358]},{"name":"alljoyn_keystorelistener_getkeys","features":[358]},{"name":"alljoyn_keystorelistener_loadrequest_ptr","features":[358]},{"name":"alljoyn_keystorelistener_putkeys","features":[358]},{"name":"alljoyn_keystorelistener_releaseexclusivelock_ptr","features":[358]},{"name":"alljoyn_keystorelistener_storerequest_ptr","features":[358]},{"name":"alljoyn_keystorelistener_with_synchronization_callbacks","features":[358]},{"name":"alljoyn_keystorelistener_with_synchronization_create","features":[358]},{"name":"alljoyn_manifestarray","features":[358]},{"name":"alljoyn_message","features":[358]},{"name":"alljoyn_message_create","features":[358]},{"name":"alljoyn_message_description","features":[358]},{"name":"alljoyn_message_destroy","features":[358]},{"name":"alljoyn_message_eql","features":[358]},{"name":"alljoyn_message_getarg","features":[358]},{"name":"alljoyn_message_getargs","features":[358]},{"name":"alljoyn_message_getauthmechanism","features":[358]},{"name":"alljoyn_message_getcallserial","features":[358]},{"name":"alljoyn_message_getcompressiontoken","features":[358]},{"name":"alljoyn_message_getdestination","features":[358]},{"name":"alljoyn_message_geterrorname","features":[358]},{"name":"alljoyn_message_getflags","features":[358]},{"name":"alljoyn_message_getinterface","features":[358]},{"name":"alljoyn_message_getmembername","features":[358]},{"name":"alljoyn_message_getobjectpath","features":[358]},{"name":"alljoyn_message_getreceiveendpointname","features":[358]},{"name":"alljoyn_message_getreplyserial","features":[358]},{"name":"alljoyn_message_getsender","features":[358]},{"name":"alljoyn_message_getsessionid","features":[358]},{"name":"alljoyn_message_getsignature","features":[358]},{"name":"alljoyn_message_gettimestamp","features":[358]},{"name":"alljoyn_message_gettype","features":[358]},{"name":"alljoyn_message_isbroadcastsignal","features":[358]},{"name":"alljoyn_message_isencrypted","features":[358]},{"name":"alljoyn_message_isexpired","features":[358]},{"name":"alljoyn_message_isglobalbroadcast","features":[358]},{"name":"alljoyn_message_issessionless","features":[358]},{"name":"alljoyn_message_isunreliable","features":[358]},{"name":"alljoyn_message_parseargs","features":[358]},{"name":"alljoyn_message_setendianess","features":[358]},{"name":"alljoyn_message_tostring","features":[358]},{"name":"alljoyn_messagereceiver_methodhandler_ptr","features":[358]},{"name":"alljoyn_messagereceiver_replyhandler_ptr","features":[358]},{"name":"alljoyn_messagereceiver_signalhandler_ptr","features":[358]},{"name":"alljoyn_messagetype","features":[358]},{"name":"alljoyn_msgarg","features":[358]},{"name":"alljoyn_msgarg_array_create","features":[358]},{"name":"alljoyn_msgarg_array_element","features":[358]},{"name":"alljoyn_msgarg_array_get","features":[358]},{"name":"alljoyn_msgarg_array_set","features":[358]},{"name":"alljoyn_msgarg_array_set_offset","features":[358]},{"name":"alljoyn_msgarg_array_signature","features":[358]},{"name":"alljoyn_msgarg_array_tostring","features":[358]},{"name":"alljoyn_msgarg_clear","features":[358]},{"name":"alljoyn_msgarg_clone","features":[358]},{"name":"alljoyn_msgarg_copy","features":[358]},{"name":"alljoyn_msgarg_create","features":[358]},{"name":"alljoyn_msgarg_create_and_set","features":[358]},{"name":"alljoyn_msgarg_destroy","features":[358]},{"name":"alljoyn_msgarg_equal","features":[358]},{"name":"alljoyn_msgarg_get","features":[358]},{"name":"alljoyn_msgarg_get_array_element","features":[358]},{"name":"alljoyn_msgarg_get_array_elementsignature","features":[358]},{"name":"alljoyn_msgarg_get_array_numberofelements","features":[358]},{"name":"alljoyn_msgarg_get_bool","features":[358]},{"name":"alljoyn_msgarg_get_bool_array","features":[358]},{"name":"alljoyn_msgarg_get_double","features":[358]},{"name":"alljoyn_msgarg_get_double_array","features":[358]},{"name":"alljoyn_msgarg_get_int16","features":[358]},{"name":"alljoyn_msgarg_get_int16_array","features":[358]},{"name":"alljoyn_msgarg_get_int32","features":[358]},{"name":"alljoyn_msgarg_get_int32_array","features":[358]},{"name":"alljoyn_msgarg_get_int64","features":[358]},{"name":"alljoyn_msgarg_get_int64_array","features":[358]},{"name":"alljoyn_msgarg_get_objectpath","features":[358]},{"name":"alljoyn_msgarg_get_signature","features":[358]},{"name":"alljoyn_msgarg_get_string","features":[358]},{"name":"alljoyn_msgarg_get_uint16","features":[358]},{"name":"alljoyn_msgarg_get_uint16_array","features":[358]},{"name":"alljoyn_msgarg_get_uint32","features":[358]},{"name":"alljoyn_msgarg_get_uint32_array","features":[358]},{"name":"alljoyn_msgarg_get_uint64","features":[358]},{"name":"alljoyn_msgarg_get_uint64_array","features":[358]},{"name":"alljoyn_msgarg_get_uint8","features":[358]},{"name":"alljoyn_msgarg_get_uint8_array","features":[358]},{"name":"alljoyn_msgarg_get_variant","features":[358]},{"name":"alljoyn_msgarg_get_variant_array","features":[358]},{"name":"alljoyn_msgarg_getdictelement","features":[358]},{"name":"alljoyn_msgarg_getkey","features":[358]},{"name":"alljoyn_msgarg_getmember","features":[358]},{"name":"alljoyn_msgarg_getnummembers","features":[358]},{"name":"alljoyn_msgarg_gettype","features":[358]},{"name":"alljoyn_msgarg_getvalue","features":[358]},{"name":"alljoyn_msgarg_hassignature","features":[358]},{"name":"alljoyn_msgarg_set","features":[358]},{"name":"alljoyn_msgarg_set_and_stabilize","features":[358]},{"name":"alljoyn_msgarg_set_bool","features":[358]},{"name":"alljoyn_msgarg_set_bool_array","features":[358]},{"name":"alljoyn_msgarg_set_double","features":[358]},{"name":"alljoyn_msgarg_set_double_array","features":[358]},{"name":"alljoyn_msgarg_set_int16","features":[358]},{"name":"alljoyn_msgarg_set_int16_array","features":[358]},{"name":"alljoyn_msgarg_set_int32","features":[358]},{"name":"alljoyn_msgarg_set_int32_array","features":[358]},{"name":"alljoyn_msgarg_set_int64","features":[358]},{"name":"alljoyn_msgarg_set_int64_array","features":[358]},{"name":"alljoyn_msgarg_set_objectpath","features":[358]},{"name":"alljoyn_msgarg_set_objectpath_array","features":[358]},{"name":"alljoyn_msgarg_set_signature","features":[358]},{"name":"alljoyn_msgarg_set_signature_array","features":[358]},{"name":"alljoyn_msgarg_set_string","features":[358]},{"name":"alljoyn_msgarg_set_string_array","features":[358]},{"name":"alljoyn_msgarg_set_uint16","features":[358]},{"name":"alljoyn_msgarg_set_uint16_array","features":[358]},{"name":"alljoyn_msgarg_set_uint32","features":[358]},{"name":"alljoyn_msgarg_set_uint32_array","features":[358]},{"name":"alljoyn_msgarg_set_uint64","features":[358]},{"name":"alljoyn_msgarg_set_uint64_array","features":[358]},{"name":"alljoyn_msgarg_set_uint8","features":[358]},{"name":"alljoyn_msgarg_set_uint8_array","features":[358]},{"name":"alljoyn_msgarg_setdictentry","features":[358]},{"name":"alljoyn_msgarg_setstruct","features":[358]},{"name":"alljoyn_msgarg_signature","features":[358]},{"name":"alljoyn_msgarg_stabilize","features":[358]},{"name":"alljoyn_msgarg_tostring","features":[358]},{"name":"alljoyn_observer","features":[358]},{"name":"alljoyn_observer_create","features":[358]},{"name":"alljoyn_observer_destroy","features":[358]},{"name":"alljoyn_observer_get","features":[358]},{"name":"alljoyn_observer_getfirst","features":[358]},{"name":"alljoyn_observer_getnext","features":[358]},{"name":"alljoyn_observer_object_discovered_ptr","features":[358]},{"name":"alljoyn_observer_object_lost_ptr","features":[358]},{"name":"alljoyn_observer_registerlistener","features":[358]},{"name":"alljoyn_observer_unregisteralllisteners","features":[358]},{"name":"alljoyn_observer_unregisterlistener","features":[358]},{"name":"alljoyn_observerlistener","features":[358]},{"name":"alljoyn_observerlistener_callback","features":[358]},{"name":"alljoyn_observerlistener_create","features":[358]},{"name":"alljoyn_observerlistener_destroy","features":[358]},{"name":"alljoyn_passwordmanager_setcredentials","features":[358]},{"name":"alljoyn_permissionconfigurationlistener","features":[358]},{"name":"alljoyn_permissionconfigurationlistener_callbacks","features":[358]},{"name":"alljoyn_permissionconfigurationlistener_create","features":[358]},{"name":"alljoyn_permissionconfigurationlistener_destroy","features":[358]},{"name":"alljoyn_permissionconfigurationlistener_endmanagement_ptr","features":[358]},{"name":"alljoyn_permissionconfigurationlistener_factoryreset_ptr","features":[358]},{"name":"alljoyn_permissionconfigurationlistener_policychanged_ptr","features":[358]},{"name":"alljoyn_permissionconfigurationlistener_startmanagement_ptr","features":[358]},{"name":"alljoyn_permissionconfigurator","features":[358]},{"name":"alljoyn_permissionconfigurator_certificatechain_destroy","features":[358]},{"name":"alljoyn_permissionconfigurator_certificateid_cleanup","features":[358]},{"name":"alljoyn_permissionconfigurator_certificateidarray_cleanup","features":[358]},{"name":"alljoyn_permissionconfigurator_claim","features":[358]},{"name":"alljoyn_permissionconfigurator_endmanagement","features":[358]},{"name":"alljoyn_permissionconfigurator_getapplicationstate","features":[358]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilities","features":[358]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo","features":[358]},{"name":"alljoyn_permissionconfigurator_getdefaultclaimcapabilities","features":[358]},{"name":"alljoyn_permissionconfigurator_getdefaultpolicy","features":[358]},{"name":"alljoyn_permissionconfigurator_getidentity","features":[358]},{"name":"alljoyn_permissionconfigurator_getidentitycertificateid","features":[358]},{"name":"alljoyn_permissionconfigurator_getmanifests","features":[358]},{"name":"alljoyn_permissionconfigurator_getmanifesttemplate","features":[358]},{"name":"alljoyn_permissionconfigurator_getmembershipsummaries","features":[358]},{"name":"alljoyn_permissionconfigurator_getpolicy","features":[358]},{"name":"alljoyn_permissionconfigurator_getpublickey","features":[358]},{"name":"alljoyn_permissionconfigurator_installmanifests","features":[358]},{"name":"alljoyn_permissionconfigurator_installmembership","features":[358]},{"name":"alljoyn_permissionconfigurator_manifestarray_cleanup","features":[358]},{"name":"alljoyn_permissionconfigurator_manifesttemplate_destroy","features":[358]},{"name":"alljoyn_permissionconfigurator_policy_destroy","features":[358]},{"name":"alljoyn_permissionconfigurator_publickey_destroy","features":[358]},{"name":"alljoyn_permissionconfigurator_removemembership","features":[358]},{"name":"alljoyn_permissionconfigurator_reset","features":[358]},{"name":"alljoyn_permissionconfigurator_resetpolicy","features":[358]},{"name":"alljoyn_permissionconfigurator_setapplicationstate","features":[358]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilities","features":[358]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo","features":[358]},{"name":"alljoyn_permissionconfigurator_setmanifesttemplatefromxml","features":[358]},{"name":"alljoyn_permissionconfigurator_startmanagement","features":[358]},{"name":"alljoyn_permissionconfigurator_updateidentity","features":[358]},{"name":"alljoyn_permissionconfigurator_updatepolicy","features":[358]},{"name":"alljoyn_pinglistener","features":[358]},{"name":"alljoyn_pinglistener_callback","features":[358]},{"name":"alljoyn_pinglistener_create","features":[358]},{"name":"alljoyn_pinglistener_destroy","features":[358]},{"name":"alljoyn_proxybusobject","features":[358]},{"name":"alljoyn_proxybusobject_addchild","features":[358]},{"name":"alljoyn_proxybusobject_addinterface","features":[358]},{"name":"alljoyn_proxybusobject_addinterface_by_name","features":[358]},{"name":"alljoyn_proxybusobject_copy","features":[358]},{"name":"alljoyn_proxybusobject_create","features":[358]},{"name":"alljoyn_proxybusobject_create_secure","features":[358]},{"name":"alljoyn_proxybusobject_destroy","features":[358]},{"name":"alljoyn_proxybusobject_enablepropertycaching","features":[358]},{"name":"alljoyn_proxybusobject_getallproperties","features":[358]},{"name":"alljoyn_proxybusobject_getallpropertiesasync","features":[358]},{"name":"alljoyn_proxybusobject_getchild","features":[358]},{"name":"alljoyn_proxybusobject_getchildren","features":[358]},{"name":"alljoyn_proxybusobject_getinterface","features":[358]},{"name":"alljoyn_proxybusobject_getinterfaces","features":[358]},{"name":"alljoyn_proxybusobject_getpath","features":[358]},{"name":"alljoyn_proxybusobject_getproperty","features":[358]},{"name":"alljoyn_proxybusobject_getpropertyasync","features":[358]},{"name":"alljoyn_proxybusobject_getservicename","features":[358]},{"name":"alljoyn_proxybusobject_getsessionid","features":[358]},{"name":"alljoyn_proxybusobject_getuniquename","features":[358]},{"name":"alljoyn_proxybusobject_implementsinterface","features":[358]},{"name":"alljoyn_proxybusobject_introspectremoteobject","features":[358]},{"name":"alljoyn_proxybusobject_introspectremoteobjectasync","features":[358]},{"name":"alljoyn_proxybusobject_issecure","features":[358]},{"name":"alljoyn_proxybusobject_isvalid","features":[358]},{"name":"alljoyn_proxybusobject_listener_getallpropertiescb_ptr","features":[358]},{"name":"alljoyn_proxybusobject_listener_getpropertycb_ptr","features":[358]},{"name":"alljoyn_proxybusobject_listener_introspectcb_ptr","features":[358]},{"name":"alljoyn_proxybusobject_listener_propertieschanged_ptr","features":[358]},{"name":"alljoyn_proxybusobject_listener_setpropertycb_ptr","features":[358]},{"name":"alljoyn_proxybusobject_methodcall","features":[358]},{"name":"alljoyn_proxybusobject_methodcall_member","features":[358]},{"name":"alljoyn_proxybusobject_methodcall_member_noreply","features":[358]},{"name":"alljoyn_proxybusobject_methodcall_noreply","features":[358]},{"name":"alljoyn_proxybusobject_methodcallasync","features":[358]},{"name":"alljoyn_proxybusobject_methodcallasync_member","features":[358]},{"name":"alljoyn_proxybusobject_parsexml","features":[358]},{"name":"alljoyn_proxybusobject_ref","features":[358]},{"name":"alljoyn_proxybusobject_ref_create","features":[358]},{"name":"alljoyn_proxybusobject_ref_decref","features":[358]},{"name":"alljoyn_proxybusobject_ref_get","features":[358]},{"name":"alljoyn_proxybusobject_ref_incref","features":[358]},{"name":"alljoyn_proxybusobject_registerpropertieschangedlistener","features":[358]},{"name":"alljoyn_proxybusobject_removechild","features":[358]},{"name":"alljoyn_proxybusobject_secureconnection","features":[358]},{"name":"alljoyn_proxybusobject_secureconnectionasync","features":[358]},{"name":"alljoyn_proxybusobject_setproperty","features":[358]},{"name":"alljoyn_proxybusobject_setpropertyasync","features":[358]},{"name":"alljoyn_proxybusobject_unregisterpropertieschangedlistener","features":[358]},{"name":"alljoyn_routerinit","features":[358]},{"name":"alljoyn_routerinitwithconfig","features":[358]},{"name":"alljoyn_routershutdown","features":[358]},{"name":"alljoyn_securityapplicationproxy","features":[358]},{"name":"alljoyn_securityapplicationproxy_claim","features":[358]},{"name":"alljoyn_securityapplicationproxy_computemanifestdigest","features":[358]},{"name":"alljoyn_securityapplicationproxy_create","features":[358]},{"name":"alljoyn_securityapplicationproxy_destroy","features":[358]},{"name":"alljoyn_securityapplicationproxy_digest_destroy","features":[358]},{"name":"alljoyn_securityapplicationproxy_eccpublickey_destroy","features":[358]},{"name":"alljoyn_securityapplicationproxy_endmanagement","features":[358]},{"name":"alljoyn_securityapplicationproxy_getapplicationstate","features":[358]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilities","features":[358]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo","features":[358]},{"name":"alljoyn_securityapplicationproxy_getdefaultpolicy","features":[358]},{"name":"alljoyn_securityapplicationproxy_geteccpublickey","features":[358]},{"name":"alljoyn_securityapplicationproxy_getmanifesttemplate","features":[358]},{"name":"alljoyn_securityapplicationproxy_getpermissionmanagementsessionport","features":[358]},{"name":"alljoyn_securityapplicationproxy_getpolicy","features":[358]},{"name":"alljoyn_securityapplicationproxy_installmembership","features":[358]},{"name":"alljoyn_securityapplicationproxy_manifest_destroy","features":[358]},{"name":"alljoyn_securityapplicationproxy_manifesttemplate_destroy","features":[358]},{"name":"alljoyn_securityapplicationproxy_policy_destroy","features":[358]},{"name":"alljoyn_securityapplicationproxy_reset","features":[358]},{"name":"alljoyn_securityapplicationproxy_resetpolicy","features":[358]},{"name":"alljoyn_securityapplicationproxy_setmanifestsignature","features":[358]},{"name":"alljoyn_securityapplicationproxy_signmanifest","features":[358]},{"name":"alljoyn_securityapplicationproxy_startmanagement","features":[358]},{"name":"alljoyn_securityapplicationproxy_updateidentity","features":[358]},{"name":"alljoyn_securityapplicationproxy_updatepolicy","features":[358]},{"name":"alljoyn_sessionlistener","features":[358]},{"name":"alljoyn_sessionlistener_callbacks","features":[358]},{"name":"alljoyn_sessionlistener_create","features":[358]},{"name":"alljoyn_sessionlistener_destroy","features":[358]},{"name":"alljoyn_sessionlistener_sessionlost_ptr","features":[358]},{"name":"alljoyn_sessionlistener_sessionmemberadded_ptr","features":[358]},{"name":"alljoyn_sessionlistener_sessionmemberremoved_ptr","features":[358]},{"name":"alljoyn_sessionlostreason","features":[358]},{"name":"alljoyn_sessionopts","features":[358]},{"name":"alljoyn_sessionopts_cmp","features":[358]},{"name":"alljoyn_sessionopts_create","features":[358]},{"name":"alljoyn_sessionopts_destroy","features":[358]},{"name":"alljoyn_sessionopts_get_multipoint","features":[358]},{"name":"alljoyn_sessionopts_get_proximity","features":[358]},{"name":"alljoyn_sessionopts_get_traffic","features":[358]},{"name":"alljoyn_sessionopts_get_transports","features":[358]},{"name":"alljoyn_sessionopts_iscompatible","features":[358]},{"name":"alljoyn_sessionopts_set_multipoint","features":[358]},{"name":"alljoyn_sessionopts_set_proximity","features":[358]},{"name":"alljoyn_sessionopts_set_traffic","features":[358]},{"name":"alljoyn_sessionopts_set_transports","features":[358]},{"name":"alljoyn_sessionportlistener","features":[358]},{"name":"alljoyn_sessionportlistener_acceptsessionjoiner_ptr","features":[358]},{"name":"alljoyn_sessionportlistener_callbacks","features":[358]},{"name":"alljoyn_sessionportlistener_create","features":[358]},{"name":"alljoyn_sessionportlistener_destroy","features":[358]},{"name":"alljoyn_sessionportlistener_sessionjoined_ptr","features":[358]},{"name":"alljoyn_shutdown","features":[358]},{"name":"alljoyn_typeid","features":[358]},{"name":"alljoyn_unity_deferred_callbacks_process","features":[358]},{"name":"alljoyn_unity_set_deferred_callback_mainthread_only","features":[358]}],"368":[{"name":"FACILITY_NONE","features":[359]},{"name":"FACILITY_WINBIO","features":[359]},{"name":"GUID_DEVINTERFACE_BIOMETRIC_READER","features":[359]},{"name":"IOCTL_BIOMETRIC_VENDOR","features":[359]},{"name":"PIBIO_ENGINE_ACCEPT_PRIVATE_SENSOR_TYPE_INFO_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_ACCEPT_SAMPLE_DATA_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_ACTIVATE_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_ATTACH_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_CHECK_FOR_DUPLICATE_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_CLEAR_CONTEXT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_COMMIT_ENROLLMENT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_PRIVILEGED_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_AUTHENTICATED_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_CREATE_KEY_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_DEACTIVATE_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_DETACH_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_DISCARD_ENROLLMENT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_EXPORT_ENGINE_DATA_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_HASH_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_STATUS_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_IDENTIFY_ALL_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_AUTHENTICATED_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_SECURE_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_NOTIFY_POWER_CHANGE_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_PIPELINE_CLEANUP_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_PIPELINE_INIT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_QUERY_CALIBRATION_DATA_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_ENROLLMENT_STATUS_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_INFO_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_QUERY_HASH_ALGORITHMS_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_QUERY_INDEX_VECTOR_SIZE_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_QUERY_PREFERRED_FORMAT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_QUERY_SAMPLE_HINT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_REFRESH_CACHE_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_RESERVED_1_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_SELECT_CALIBRATION_FORMAT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_SET_ACCOUNT_POLICY_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_PARAMETERS_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_SELECTOR_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_SET_HASH_ALGORITHM_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_UPDATE_ENROLLMENT_FN","features":[359,303,308]},{"name":"PIBIO_ENGINE_VERIFY_FEATURE_SET_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_ALLOCATE_MEMORY_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_FREE_MEMORY_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_GET_PROPERTY_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_LOCK_AND_VALIDATE_SECURE_BUFFER_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_RELEASE_SECURE_BUFFER_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_SET_UNIT_STATUS_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_CLEAR_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_BEGIN_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_END_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_NEXT_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_BEGIN_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_END_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_NEXT_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_DECRYPT_SAMPLE_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_QUERY_AUTHORIZED_ENROLLMENTS_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_1_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_2_FN","features":[359,303,308]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_3_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_ACCEPT_CALIBRATION_DATA_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_ACTIVATE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_RAW_BUFFER_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_SECURE_BUFFER_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_ATTACH_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_CANCEL_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_CLEAR_CONTEXT_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_CONNECT_SECURE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_PRIVILEGED_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_DEACTIVATE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_DETACH_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_EXPORT_SENSOR_DATA_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_FINISH_CAPTURE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_FINISH_NOTIFY_WAKE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_GET_INDICATOR_STATUS_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_NOTIFY_POWER_CHANGE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_PIPELINE_CLEANUP_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_PIPELINE_INIT_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_PUSH_DATA_TO_ENGINE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_QUERY_CALIBRATION_FORMATS_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_QUERY_EXTENDED_INFO_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_QUERY_PRIVATE_SENSOR_TYPE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_QUERY_STATUS_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_RESET_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_SET_CALIBRATION_FORMAT_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_SET_INDICATOR_STATUS_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_SET_MODE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_START_CAPTURE_EX_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_START_CAPTURE_FN","features":[359,303,308]},{"name":"PIBIO_SENSOR_START_NOTIFY_WAKE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_ACTIVATE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_ADD_RECORD_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_ATTACH_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_CLEAR_CONTEXT_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_CLOSE_DATABASE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_PRIVILEGED_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_CREATE_DATABASE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_DEACTIVATE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_DELETE_RECORD_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_DETACH_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_ERASE_DATABASE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_FIRST_RECORD_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_GET_CURRENT_RECORD_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_GET_DATABASE_SIZE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_GET_DATA_FORMAT_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_GET_RECORD_COUNT_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_NEXT_RECORD_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_NOTIFY_DATABASE_CHANGE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_NOTIFY_POWER_CHANGE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_OPEN_DATABASE_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_PIPELINE_CLEANUP_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_PIPELINE_INIT_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_QUERY_BY_CONTENT_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_QUERY_BY_SUBJECT_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_QUERY_EXTENDED_INFO_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_RESERVED_1_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_RESERVED_2_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_BEGIN_FN","features":[359,303,308]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_COMMIT_FN","features":[359,303,308]},{"name":"PWINBIO_ASYNC_COMPLETION_CALLBACK","features":[359,303]},{"name":"PWINBIO_CAPTURE_CALLBACK","features":[359]},{"name":"PWINBIO_ENROLL_CAPTURE_CALLBACK","features":[359]},{"name":"PWINBIO_EVENT_CALLBACK","features":[359]},{"name":"PWINBIO_IDENTIFY_CALLBACK","features":[359]},{"name":"PWINBIO_LOCATE_SENSOR_CALLBACK","features":[359]},{"name":"PWINBIO_QUERY_ENGINE_INTERFACE_FN","features":[359,303,308]},{"name":"PWINBIO_QUERY_SENSOR_INTERFACE_FN","features":[359,303,308]},{"name":"PWINBIO_QUERY_STORAGE_INTERFACE_FN","features":[359,303,308]},{"name":"PWINBIO_VERIFY_CALLBACK","features":[359,303]},{"name":"WINBIO_ACCOUNT_POLICY","features":[359]},{"name":"WINBIO_ADAPTER_INTERFACE_VERSION","features":[359]},{"name":"WINBIO_ANSI_381_IMG_BIT_PACKED","features":[359]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG","features":[359]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG2000","features":[359]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_PNG","features":[359]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_WSQ","features":[359]},{"name":"WINBIO_ANSI_381_IMG_UNCOMPRESSED","features":[359]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LATENT","features":[359]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_CONTACTLESS","features":[359]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_PLAIN","features":[359]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_ROLLED","features":[359]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_PLAIN","features":[359]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_ROLLED","features":[359]},{"name":"WINBIO_ANSI_381_IMP_TYPE_SWIPE","features":[359]},{"name":"WINBIO_ANSI_381_PIXELS_PER_CM","features":[359]},{"name":"WINBIO_ANSI_381_PIXELS_PER_INCH","features":[359]},{"name":"WINBIO_ANTI_SPOOF_DISABLE","features":[359]},{"name":"WINBIO_ANTI_SPOOF_ENABLE","features":[359]},{"name":"WINBIO_ANTI_SPOOF_POLICY","features":[359]},{"name":"WINBIO_ANTI_SPOOF_POLICY_ACTION","features":[359]},{"name":"WINBIO_ANTI_SPOOF_REMOVE","features":[359]},{"name":"WINBIO_ASYNC_NOTIFICATION_METHOD","features":[359]},{"name":"WINBIO_ASYNC_NOTIFY_CALLBACK","features":[359]},{"name":"WINBIO_ASYNC_NOTIFY_MAXIMUM_VALUE","features":[359]},{"name":"WINBIO_ASYNC_NOTIFY_MESSAGE","features":[359]},{"name":"WINBIO_ASYNC_NOTIFY_NONE","features":[359]},{"name":"WINBIO_ASYNC_RESULT","features":[359,303]},{"name":"WINBIO_BDB_ANSI_381_HEADER","features":[359]},{"name":"WINBIO_BDB_ANSI_381_RECORD","features":[359]},{"name":"WINBIO_BIR","features":[359]},{"name":"WINBIO_BIR_ALGIN_SIZE","features":[359]},{"name":"WINBIO_BIR_ALIGN_SIZE","features":[359]},{"name":"WINBIO_BIR_DATA","features":[359]},{"name":"WINBIO_BIR_HEADER","features":[359]},{"name":"WINBIO_BLANK_PAYLOAD","features":[359]},{"name":"WINBIO_BSP_SCHEMA","features":[359]},{"name":"WINBIO_CALIBRATION_INFO","features":[359]},{"name":"WINBIO_CAPTURE_DATA","features":[359]},{"name":"WINBIO_CAPTURE_PARAMETERS","features":[359]},{"name":"WINBIO_COMPONENT","features":[359]},{"name":"WINBIO_COMPONENT_ENGINE","features":[359]},{"name":"WINBIO_COMPONENT_SENSOR","features":[359]},{"name":"WINBIO_COMPONENT_STORAGE","features":[359]},{"name":"WINBIO_CREDENTIAL_ALL","features":[359]},{"name":"WINBIO_CREDENTIAL_FORMAT","features":[359]},{"name":"WINBIO_CREDENTIAL_NOT_SET","features":[359]},{"name":"WINBIO_CREDENTIAL_PASSWORD","features":[359]},{"name":"WINBIO_CREDENTIAL_SET","features":[359]},{"name":"WINBIO_CREDENTIAL_STATE","features":[359]},{"name":"WINBIO_CREDENTIAL_TYPE","features":[359]},{"name":"WINBIO_DATA","features":[359]},{"name":"WINBIO_DATA_FLAG_INTEGRITY","features":[359]},{"name":"WINBIO_DATA_FLAG_INTERMEDIATE","features":[359]},{"name":"WINBIO_DATA_FLAG_OPTION_MASK_PRESENT","features":[359]},{"name":"WINBIO_DATA_FLAG_PRIVACY","features":[359]},{"name":"WINBIO_DATA_FLAG_PROCESSED","features":[359]},{"name":"WINBIO_DATA_FLAG_RAW","features":[359]},{"name":"WINBIO_DATA_FLAG_SIGNED","features":[359]},{"name":"WINBIO_DIAGNOSTICS","features":[359]},{"name":"WINBIO_ENCRYPTED_CAPTURE_PARAMS","features":[359]},{"name":"WINBIO_ENGINE_INTERFACE","features":[359,303,308]},{"name":"WINBIO_EVENT","features":[359]},{"name":"WINBIO_EXTENDED_ENGINE_INFO","features":[359]},{"name":"WINBIO_EXTENDED_ENROLLMENT_PARAMETERS","features":[359]},{"name":"WINBIO_EXTENDED_ENROLLMENT_STATUS","features":[359,303]},{"name":"WINBIO_EXTENDED_SENSOR_INFO","features":[359,303]},{"name":"WINBIO_EXTENDED_STORAGE_INFO","features":[359]},{"name":"WINBIO_EXTENDED_UNIT_STATUS","features":[359]},{"name":"WINBIO_E_ADAPTER_INTEGRITY_FAILURE","features":[359]},{"name":"WINBIO_E_AUTO_LOGON_DISABLED","features":[359]},{"name":"WINBIO_E_BAD_CAPTURE","features":[359]},{"name":"WINBIO_E_CALIBRATION_BUFFER_INVALID","features":[359]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_LARGE","features":[359]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_SMALL","features":[359]},{"name":"WINBIO_E_CANCELED","features":[359]},{"name":"WINBIO_E_CAPTURE_ABORTED","features":[359]},{"name":"WINBIO_E_CONFIGURATION_FAILURE","features":[359]},{"name":"WINBIO_E_CRED_PROV_DISABLED","features":[359]},{"name":"WINBIO_E_CRED_PROV_NO_CREDENTIAL","features":[359]},{"name":"WINBIO_E_CRED_PROV_SECURITY_LOCKOUT","features":[359]},{"name":"WINBIO_E_DATABASE_ALREADY_EXISTS","features":[359]},{"name":"WINBIO_E_DATABASE_BAD_INDEX_VECTOR","features":[359]},{"name":"WINBIO_E_DATABASE_CANT_CLOSE","features":[359]},{"name":"WINBIO_E_DATABASE_CANT_CREATE","features":[359]},{"name":"WINBIO_E_DATABASE_CANT_ERASE","features":[359]},{"name":"WINBIO_E_DATABASE_CANT_FIND","features":[359]},{"name":"WINBIO_E_DATABASE_CANT_OPEN","features":[359]},{"name":"WINBIO_E_DATABASE_CORRUPTED","features":[359]},{"name":"WINBIO_E_DATABASE_EOF","features":[359]},{"name":"WINBIO_E_DATABASE_FULL","features":[359]},{"name":"WINBIO_E_DATABASE_LOCKED","features":[359]},{"name":"WINBIO_E_DATABASE_NO_MORE_RECORDS","features":[359]},{"name":"WINBIO_E_DATABASE_NO_RESULTS","features":[359]},{"name":"WINBIO_E_DATABASE_NO_SUCH_RECORD","features":[359]},{"name":"WINBIO_E_DATABASE_READ_ERROR","features":[359]},{"name":"WINBIO_E_DATABASE_WRITE_ERROR","features":[359]},{"name":"WINBIO_E_DATA_COLLECTION_IN_PROGRESS","features":[359]},{"name":"WINBIO_E_DATA_PROTECTION_FAILURE","features":[359]},{"name":"WINBIO_E_DEADLOCK_DETECTED","features":[359]},{"name":"WINBIO_E_DEVICE_BUSY","features":[359]},{"name":"WINBIO_E_DEVICE_FAILURE","features":[359]},{"name":"WINBIO_E_DISABLED","features":[359]},{"name":"WINBIO_E_DUPLICATE_ENROLLMENT","features":[359]},{"name":"WINBIO_E_DUPLICATE_TEMPLATE","features":[359]},{"name":"WINBIO_E_ENROLLMENT_CANCELED_BY_SUSPEND","features":[359]},{"name":"WINBIO_E_ENROLLMENT_IN_PROGRESS","features":[359]},{"name":"WINBIO_E_EVENT_MONITOR_ACTIVE","features":[359]},{"name":"WINBIO_E_FAST_USER_SWITCH_DISABLED","features":[359]},{"name":"WINBIO_E_INCORRECT_BSP","features":[359]},{"name":"WINBIO_E_INCORRECT_SENSOR_POOL","features":[359]},{"name":"WINBIO_E_INCORRECT_SESSION_TYPE","features":[359]},{"name":"WINBIO_E_INSECURE_SENSOR","features":[359]},{"name":"WINBIO_E_INVALID_BUFFER","features":[359]},{"name":"WINBIO_E_INVALID_BUFFER_ID","features":[359]},{"name":"WINBIO_E_INVALID_CALIBRATION_FORMAT_ARRAY","features":[359]},{"name":"WINBIO_E_INVALID_CONTROL_CODE","features":[359]},{"name":"WINBIO_E_INVALID_DEVICE_STATE","features":[359]},{"name":"WINBIO_E_INVALID_KEY_IDENTIFIER","features":[359]},{"name":"WINBIO_E_INVALID_OPERATION","features":[359]},{"name":"WINBIO_E_INVALID_PROPERTY_ID","features":[359]},{"name":"WINBIO_E_INVALID_PROPERTY_TYPE","features":[359]},{"name":"WINBIO_E_INVALID_SENSOR_MODE","features":[359]},{"name":"WINBIO_E_INVALID_SUBFACTOR","features":[359]},{"name":"WINBIO_E_INVALID_TICKET","features":[359]},{"name":"WINBIO_E_INVALID_UNIT","features":[359]},{"name":"WINBIO_E_KEY_CREATION_FAILED","features":[359]},{"name":"WINBIO_E_KEY_IDENTIFIER_BUFFER_TOO_SMALL","features":[359]},{"name":"WINBIO_E_LOCK_VIOLATION","features":[359]},{"name":"WINBIO_E_MAX_ERROR_COUNT_EXCEEDED","features":[359]},{"name":"WINBIO_E_NOT_ACTIVE_CONSOLE","features":[359]},{"name":"WINBIO_E_NO_CAPTURE_DATA","features":[359]},{"name":"WINBIO_E_NO_MATCH","features":[359]},{"name":"WINBIO_E_NO_PREBOOT_IDENTITY","features":[359]},{"name":"WINBIO_E_NO_SUPPORTED_CALIBRATION_FORMAT","features":[359]},{"name":"WINBIO_E_POLICY_PROTECTION_UNAVAILABLE","features":[359]},{"name":"WINBIO_E_PRESENCE_MONITOR_ACTIVE","features":[359]},{"name":"WINBIO_E_PROPERTY_UNAVAILABLE","features":[359]},{"name":"WINBIO_E_SAS_ENABLED","features":[359]},{"name":"WINBIO_E_SELECTION_REQUIRED","features":[359]},{"name":"WINBIO_E_SENSOR_UNAVAILABLE","features":[359]},{"name":"WINBIO_E_SESSION_BUSY","features":[359]},{"name":"WINBIO_E_SESSION_HANDLE_CLOSED","features":[359]},{"name":"WINBIO_E_TICKET_QUOTA_EXCEEDED","features":[359]},{"name":"WINBIO_E_TRUSTLET_INTEGRITY_FAIL","features":[359]},{"name":"WINBIO_E_UNKNOWN_ID","features":[359]},{"name":"WINBIO_E_UNSUPPORTED_DATA_FORMAT","features":[359]},{"name":"WINBIO_E_UNSUPPORTED_DATA_TYPE","features":[359]},{"name":"WINBIO_E_UNSUPPORTED_FACTOR","features":[359]},{"name":"WINBIO_E_UNSUPPORTED_POOL_TYPE","features":[359]},{"name":"WINBIO_E_UNSUPPORTED_PROPERTY","features":[359]},{"name":"WINBIO_E_UNSUPPORTED_PURPOSE","features":[359]},{"name":"WINBIO_E_UNSUPPORTED_SENSOR_CALIBRATION_FORMAT","features":[359]},{"name":"WINBIO_FP_BU_STATE","features":[359,303]},{"name":"WINBIO_FRAMEWORK_INTERFACE","features":[359,303,308]},{"name":"WINBIO_GESTURE_METADATA","features":[359]},{"name":"WINBIO_GET_INDICATOR","features":[359]},{"name":"WINBIO_IDENTITY","features":[359]},{"name":"WINBIO_I_EXTENDED_STATUS_INFORMATION","features":[359]},{"name":"WINBIO_I_MORE_DATA","features":[359]},{"name":"WINBIO_MAX_STRING_LEN","features":[359]},{"name":"WINBIO_NOTIFY_WAKE","features":[359]},{"name":"WINBIO_PASSWORD_GENERIC","features":[359]},{"name":"WINBIO_PASSWORD_PACKED","features":[359]},{"name":"WINBIO_PASSWORD_PROTECTED","features":[359]},{"name":"WINBIO_PIPELINE","features":[359,303,308]},{"name":"WINBIO_POLICY_ADMIN","features":[359]},{"name":"WINBIO_POLICY_DEFAULT","features":[359]},{"name":"WINBIO_POLICY_LOCAL","features":[359]},{"name":"WINBIO_POLICY_SOURCE","features":[359]},{"name":"WINBIO_POLICY_UNKNOWN","features":[359]},{"name":"WINBIO_POOL","features":[359]},{"name":"WINBIO_POOL_PRIVATE","features":[359]},{"name":"WINBIO_POOL_SYSTEM","features":[359]},{"name":"WINBIO_PRESENCE","features":[359,303]},{"name":"WINBIO_PRESENCE_PROPERTIES","features":[359,303]},{"name":"WINBIO_PRIVATE_SENSOR_TYPE_INFO","features":[359]},{"name":"WINBIO_PROTECTION_POLICY","features":[359]},{"name":"WINBIO_REGISTERED_FORMAT","features":[359]},{"name":"WINBIO_SCP_CURVE_FIELD_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_DIGEST_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_ENCRYPTION_BLOCK_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_ENCRYPTION_KEY_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_PRIVATE_KEY_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_PUBLIC_KEY_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_RANDOM_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_SIGNATURE_SIZE_V1","features":[359]},{"name":"WINBIO_SCP_VERSION_1","features":[359]},{"name":"WINBIO_SECURE_BUFFER_HEADER_V1","features":[359]},{"name":"WINBIO_SECURE_CONNECTION_DATA","features":[359]},{"name":"WINBIO_SECURE_CONNECTION_PARAMS","features":[359]},{"name":"WINBIO_SENSOR_ATTRIBUTES","features":[359]},{"name":"WINBIO_SENSOR_INTERFACE","features":[359,303,308]},{"name":"WINBIO_SETTING_SOURCE","features":[359]},{"name":"WINBIO_SETTING_SOURCE_DEFAULT","features":[359]},{"name":"WINBIO_SETTING_SOURCE_INVALID","features":[359]},{"name":"WINBIO_SETTING_SOURCE_LOCAL","features":[359]},{"name":"WINBIO_SETTING_SOURCE_POLICY","features":[359]},{"name":"WINBIO_SET_INDICATOR","features":[359]},{"name":"WINBIO_STORAGE_INTERFACE","features":[359,303,308]},{"name":"WINBIO_STORAGE_RECORD","features":[359]},{"name":"WINBIO_STORAGE_SCHEMA","features":[359]},{"name":"WINBIO_SUPPORTED_ALGORITHMS","features":[359]},{"name":"WINBIO_UNIT_SCHEMA","features":[359]},{"name":"WINBIO_UPDATE_FIRMWARE","features":[359]},{"name":"WINBIO_VERSION","features":[359]},{"name":"WINBIO_WBDI_MAJOR_VERSION","features":[359]},{"name":"WINBIO_WBDI_MINOR_VERSION","features":[359]},{"name":"WINIBIO_ENGINE_CONTEXT","features":[359]},{"name":"WINIBIO_SENSOR_CONTEXT","features":[359]},{"name":"WINIBIO_STORAGE_CONTEXT","features":[359]},{"name":"WinBioAcquireFocus","features":[359]},{"name":"WinBioAsyncEnumBiometricUnits","features":[359]},{"name":"WinBioAsyncEnumDatabases","features":[359]},{"name":"WinBioAsyncEnumServiceProviders","features":[359]},{"name":"WinBioAsyncMonitorFrameworkChanges","features":[359]},{"name":"WinBioAsyncOpenFramework","features":[359,303]},{"name":"WinBioAsyncOpenSession","features":[359,303]},{"name":"WinBioCancel","features":[359]},{"name":"WinBioCaptureSample","features":[359]},{"name":"WinBioCaptureSampleWithCallback","features":[359]},{"name":"WinBioCloseFramework","features":[359]},{"name":"WinBioCloseSession","features":[359]},{"name":"WinBioControlUnit","features":[359]},{"name":"WinBioControlUnitPrivileged","features":[359]},{"name":"WinBioDeleteTemplate","features":[359]},{"name":"WinBioEnrollBegin","features":[359]},{"name":"WinBioEnrollCapture","features":[359]},{"name":"WinBioEnrollCaptureWithCallback","features":[359]},{"name":"WinBioEnrollCommit","features":[359]},{"name":"WinBioEnrollDiscard","features":[359]},{"name":"WinBioEnrollSelect","features":[359]},{"name":"WinBioEnumBiometricUnits","features":[359]},{"name":"WinBioEnumDatabases","features":[359]},{"name":"WinBioEnumEnrollments","features":[359]},{"name":"WinBioEnumServiceProviders","features":[359]},{"name":"WinBioFree","features":[359]},{"name":"WinBioGetCredentialState","features":[359]},{"name":"WinBioGetDomainLogonSetting","features":[359]},{"name":"WinBioGetEnabledSetting","features":[359]},{"name":"WinBioGetEnrolledFactors","features":[359]},{"name":"WinBioGetLogonSetting","features":[359]},{"name":"WinBioGetProperty","features":[359]},{"name":"WinBioIdentify","features":[359]},{"name":"WinBioIdentifyWithCallback","features":[359]},{"name":"WinBioImproveBegin","features":[359]},{"name":"WinBioImproveEnd","features":[359]},{"name":"WinBioLocateSensor","features":[359]},{"name":"WinBioLocateSensorWithCallback","features":[359]},{"name":"WinBioLockUnit","features":[359]},{"name":"WinBioLogonIdentifiedUser","features":[359]},{"name":"WinBioMonitorPresence","features":[359]},{"name":"WinBioOpenSession","features":[359]},{"name":"WinBioRegisterEventMonitor","features":[359]},{"name":"WinBioReleaseFocus","features":[359]},{"name":"WinBioRemoveAllCredentials","features":[359]},{"name":"WinBioRemoveAllDomainCredentials","features":[359]},{"name":"WinBioRemoveCredential","features":[359]},{"name":"WinBioSetCredential","features":[359]},{"name":"WinBioSetProperty","features":[359]},{"name":"WinBioUnlockUnit","features":[359]},{"name":"WinBioUnregisterEventMonitor","features":[359]},{"name":"WinBioVerify","features":[359]},{"name":"WinBioVerifyWithCallback","features":[359,303]},{"name":"WinBioWait","features":[359]}],"369":[{"name":"A2DP_SINK_SUPPORTED_FEATURES_AMPLIFIER","features":[360]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_HEADPHONE","features":[360]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_RECORDER","features":[360]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_SPEAKER","features":[360]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MICROPHONE","features":[360]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MIXER","features":[360]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_PLAYER","features":[360]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_TUNER","features":[360]},{"name":"AF_BTH","features":[360]},{"name":"ATT_PROTOCOL_UUID16","features":[360]},{"name":"AUTHENTICATION_REQUIREMENTS","features":[360]},{"name":"AVCTP_PROTOCOL_UUID16","features":[360]},{"name":"AVDTP_PROTOCOL_UUID16","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_1","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_2","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_3","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_4","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_BROWSING","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE_PROPERTIES","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_LINKED_THUMBNAIL","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_BROWSING","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_COVER_ART","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_GROUP_NAVIGATION","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_MULTIPLE_PLAYER_APPLICATIONS","features":[360]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_PLAYER_APPLICATION_SETTINGS","features":[360]},{"name":"AVRemoteControlControllerServiceClass_UUID16","features":[360]},{"name":"AVRemoteControlServiceClassID_UUID16","features":[360]},{"name":"AVRemoteControlTargetServiceClassID_UUID16","features":[360]},{"name":"AdvancedAudioDistributionProfileID_UUID16","features":[360]},{"name":"AdvancedAudioDistributionServiceClassID_UUID16","features":[360]},{"name":"AudioSinkServiceClassID_UUID16","features":[360]},{"name":"AudioSinkSourceServiceClassID_UUID16","features":[360]},{"name":"AudioSourceServiceClassID_UUID16","features":[360]},{"name":"AudioVideoServiceClassID_UUID16","features":[360]},{"name":"AudioVideoServiceClass_UUID16","features":[360]},{"name":"BDIF_ADDRESS","features":[360]},{"name":"BDIF_BR","features":[360]},{"name":"BDIF_BR_SECURE_CONNECTION_PAIRED","features":[360]},{"name":"BDIF_COD","features":[360]},{"name":"BDIF_CONNECTED","features":[360]},{"name":"BDIF_DEBUGKEY","features":[360]},{"name":"BDIF_EIR","features":[360]},{"name":"BDIF_LE","features":[360]},{"name":"BDIF_LE_CONNECTABLE","features":[360]},{"name":"BDIF_LE_CONNECTED","features":[360]},{"name":"BDIF_LE_DEBUGKEY","features":[360]},{"name":"BDIF_LE_DISCOVERABLE","features":[360]},{"name":"BDIF_LE_MITM_PROTECTED","features":[360]},{"name":"BDIF_LE_NAME","features":[360]},{"name":"BDIF_LE_PAIRED","features":[360]},{"name":"BDIF_LE_PERSONAL","features":[360]},{"name":"BDIF_LE_PRIVACY_ENABLED","features":[360]},{"name":"BDIF_LE_RANDOM_ADDRESS_TYPE","features":[360]},{"name":"BDIF_LE_SECURE_CONNECTION_PAIRED","features":[360]},{"name":"BDIF_LE_VISIBLE","features":[360]},{"name":"BDIF_NAME","features":[360]},{"name":"BDIF_PAIRED","features":[360]},{"name":"BDIF_PERSONAL","features":[360]},{"name":"BDIF_RSSI","features":[360]},{"name":"BDIF_SHORT_NAME","features":[360]},{"name":"BDIF_SSP_MITM_PROTECTED","features":[360]},{"name":"BDIF_SSP_PAIRED","features":[360]},{"name":"BDIF_SSP_SUPPORTED","features":[360]},{"name":"BDIF_TX_POWER","features":[360]},{"name":"BDIF_VISIBLE","features":[360]},{"name":"BLUETOOTH_ADDRESS","features":[360]},{"name":"BLUETOOTH_AUTHENTICATE_RESPONSE","features":[360]},{"name":"BLUETOOTH_AUTHENTICATION_CALLBACK_PARAMS","features":[360,303]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD","features":[360]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_LEGACY","features":[360]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_NUMERIC_COMPARISON","features":[360]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_OOB","features":[360]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY","features":[360]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY_NOTIFICATION","features":[360]},{"name":"BLUETOOTH_AUTHENTICATION_REQUIREMENTS","features":[360]},{"name":"BLUETOOTH_COD_PAIRS","features":[360]},{"name":"BLUETOOTH_DEVICE_INFO","features":[360,303]},{"name":"BLUETOOTH_DEVICE_NAME_SIZE","features":[360]},{"name":"BLUETOOTH_DEVICE_SEARCH_PARAMS","features":[360,303]},{"name":"BLUETOOTH_FIND_RADIO_PARAMS","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_AUTHENTICATED","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_ENCRYPTED","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_CACHE","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_DEVICE","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_NONE","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_RETURN_ALL","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_SIGNED_WRITE","features":[360]},{"name":"BLUETOOTH_GATT_FLAG_WRITE_WITHOUT_RESPONSE","features":[360]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT","features":[360]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT_REGISTRATION","features":[360,303]},{"name":"BLUETOOTH_IO_CAPABILITY","features":[360]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYONLY","features":[360]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYYESNO","features":[360]},{"name":"BLUETOOTH_IO_CAPABILITY_KEYBOARDONLY","features":[360]},{"name":"BLUETOOTH_IO_CAPABILITY_NOINPUTNOOUTPUT","features":[360]},{"name":"BLUETOOTH_IO_CAPABILITY_UNDEFINED","features":[360]},{"name":"BLUETOOTH_LOCAL_SERVICE_INFO","features":[360,303]},{"name":"BLUETOOTH_MAX_NAME_SIZE","features":[360]},{"name":"BLUETOOTH_MAX_PASSKEY_BUFFER_SIZE","features":[360]},{"name":"BLUETOOTH_MAX_PASSKEY_SIZE","features":[360]},{"name":"BLUETOOTH_MAX_SERVICE_NAME_SIZE","features":[360]},{"name":"BLUETOOTH_MITM_ProtectionNotDefined","features":[360]},{"name":"BLUETOOTH_MITM_ProtectionNotRequired","features":[360]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredBonding","features":[360]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredGeneralBonding","features":[360]},{"name":"BLUETOOTH_MITM_ProtectionRequired","features":[360]},{"name":"BLUETOOTH_MITM_ProtectionRequiredBonding","features":[360]},{"name":"BLUETOOTH_MITM_ProtectionRequiredGeneralBonding","features":[360]},{"name":"BLUETOOTH_NUMERIC_COMPARISON_INFO","features":[360]},{"name":"BLUETOOTH_OOB_DATA_INFO","features":[360]},{"name":"BLUETOOTH_PASSKEY_INFO","features":[360]},{"name":"BLUETOOTH_PIN_INFO","features":[360]},{"name":"BLUETOOTH_RADIO_INFO","features":[360]},{"name":"BLUETOOTH_SELECT_DEVICE_PARAMS","features":[360,303]},{"name":"BLUETOOTH_SERVICE_DISABLE","features":[360]},{"name":"BLUETOOTH_SERVICE_ENABLE","features":[360]},{"name":"BNEP_PROTOCOL_UUID16","features":[360]},{"name":"BTHLEENUM_ATT_MTU_DEFAULT","features":[360]},{"name":"BTHLEENUM_ATT_MTU_INITIAL_NEGOTIATION","features":[360]},{"name":"BTHLEENUM_ATT_MTU_MAX","features":[360]},{"name":"BTHLEENUM_ATT_MTU_MIN","features":[360]},{"name":"BTHNS_RESULT_DEVICE_AUTHENTICATED","features":[360]},{"name":"BTHNS_RESULT_DEVICE_CONNECTED","features":[360]},{"name":"BTHNS_RESULT_DEVICE_REMEMBERED","features":[360]},{"name":"BTHPROTO_L2CAP","features":[360]},{"name":"BTHPROTO_RFCOMM","features":[360]},{"name":"BTH_ADDR_GIAC","features":[360]},{"name":"BTH_ADDR_IAC_FIRST","features":[360]},{"name":"BTH_ADDR_IAC_LAST","features":[360]},{"name":"BTH_ADDR_LIAC","features":[360]},{"name":"BTH_ADDR_STRING_SIZE","features":[360]},{"name":"BTH_DEVICE_INFO","features":[360]},{"name":"BTH_EIR_128_UUIDS_COMPLETE_ID","features":[360]},{"name":"BTH_EIR_128_UUIDS_PARTIAL_ID","features":[360]},{"name":"BTH_EIR_16_UUIDS_COMPLETE_ID","features":[360]},{"name":"BTH_EIR_16_UUIDS_PARTIAL_ID","features":[360]},{"name":"BTH_EIR_32_UUIDS_COMPLETE_ID","features":[360]},{"name":"BTH_EIR_32_UUIDS_PARTIAL_ID","features":[360]},{"name":"BTH_EIR_FLAGS_ID","features":[360]},{"name":"BTH_EIR_LOCAL_NAME_COMPLETE_ID","features":[360]},{"name":"BTH_EIR_LOCAL_NAME_PARTIAL_ID","features":[360]},{"name":"BTH_EIR_MANUFACTURER_ID","features":[360]},{"name":"BTH_EIR_OOB_BD_ADDR_ID","features":[360]},{"name":"BTH_EIR_OOB_COD_ID","features":[360]},{"name":"BTH_EIR_OOB_OPT_DATA_LEN_ID","features":[360]},{"name":"BTH_EIR_OOB_SP_HASH_ID","features":[360]},{"name":"BTH_EIR_OOB_SP_RANDOMIZER_ID","features":[360]},{"name":"BTH_EIR_SIZE","features":[360]},{"name":"BTH_EIR_TX_POWER_LEVEL_ID","features":[360]},{"name":"BTH_ERROR_ACL_CONNECTION_ALREADY_EXISTS","features":[360]},{"name":"BTH_ERROR_AUTHENTICATION_FAILURE","features":[360]},{"name":"BTH_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED","features":[360]},{"name":"BTH_ERROR_COARSE_CLOCK_ADJUSTMENT_REJECTED","features":[360]},{"name":"BTH_ERROR_COMMAND_DISALLOWED","features":[360]},{"name":"BTH_ERROR_CONNECTION_FAILED_TO_BE_ESTABLISHED","features":[360]},{"name":"BTH_ERROR_CONNECTION_REJECTED_DUE_TO_NO_SUITABLE_CHANNEL_FOUND","features":[360]},{"name":"BTH_ERROR_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE","features":[360]},{"name":"BTH_ERROR_CONNECTION_TIMEOUT","features":[360]},{"name":"BTH_ERROR_CONTROLLER_BUSY","features":[360]},{"name":"BTH_ERROR_DIFFERENT_TRANSACTION_COLLISION","features":[360]},{"name":"BTH_ERROR_DIRECTED_ADVERTISING_TIMEOUT","features":[360]},{"name":"BTH_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE","features":[360]},{"name":"BTH_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE","features":[360]},{"name":"BTH_ERROR_HARDWARE_FAILURE","features":[360]},{"name":"BTH_ERROR_HOST_BUSY_PAIRING","features":[360]},{"name":"BTH_ERROR_HOST_REJECTED_LIMITED_RESOURCES","features":[360]},{"name":"BTH_ERROR_HOST_REJECTED_PERSONAL_DEVICE","features":[360]},{"name":"BTH_ERROR_HOST_REJECTED_SECURITY_REASONS","features":[360]},{"name":"BTH_ERROR_HOST_TIMEOUT","features":[360]},{"name":"BTH_ERROR_INSTANT_PASSED","features":[360]},{"name":"BTH_ERROR_INSUFFICIENT_SECURITY","features":[360]},{"name":"BTH_ERROR_INVALID_HCI_PARAMETER","features":[360]},{"name":"BTH_ERROR_INVALID_LMP_PARAMETERS","features":[360]},{"name":"BTH_ERROR_KEY_MISSING","features":[360]},{"name":"BTH_ERROR_LIMIT_REACHED","features":[360]},{"name":"BTH_ERROR_LMP_PDU_NOT_ALLOWED","features":[360]},{"name":"BTH_ERROR_LMP_RESPONSE_TIMEOUT","features":[360]},{"name":"BTH_ERROR_LMP_TRANSACTION_COLLISION","features":[360]},{"name":"BTH_ERROR_LOCAL_HOST_TERMINATED_CONNECTION","features":[360]},{"name":"BTH_ERROR_MAC_CONNECTION_FAILED","features":[360]},{"name":"BTH_ERROR_MAX_NUMBER_OF_CONNECTIONS","features":[360]},{"name":"BTH_ERROR_MAX_NUMBER_OF_SCO_CONNECTIONS","features":[360]},{"name":"BTH_ERROR_MEMORY_FULL","features":[360]},{"name":"BTH_ERROR_NO_CONNECTION","features":[360]},{"name":"BTH_ERROR_OPERATION_CANCELLED_BY_HOST","features":[360]},{"name":"BTH_ERROR_PACKET_TOO_LONG","features":[360]},{"name":"BTH_ERROR_PAGE_TIMEOUT","features":[360]},{"name":"BTH_ERROR_PAIRING_NOT_ALLOWED","features":[360]},{"name":"BTH_ERROR_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED","features":[360]},{"name":"BTH_ERROR_PARAMETER_OUT_OF_MANDATORY_RANGE","features":[360]},{"name":"BTH_ERROR_QOS_IS_NOT_SUPPORTED","features":[360]},{"name":"BTH_ERROR_QOS_REJECTED","features":[360]},{"name":"BTH_ERROR_QOS_UNACCEPTABLE_PARAMETER","features":[360]},{"name":"BTH_ERROR_REMOTE_LOW_RESOURCES","features":[360]},{"name":"BTH_ERROR_REMOTE_POWERING_OFF","features":[360]},{"name":"BTH_ERROR_REMOTE_USER_ENDED_CONNECTION","features":[360]},{"name":"BTH_ERROR_REPEATED_ATTEMPTS","features":[360]},{"name":"BTH_ERROR_RESERVED_SLOT_VIOLATION","features":[360]},{"name":"BTH_ERROR_ROLE_CHANGE_NOT_ALLOWED","features":[360]},{"name":"BTH_ERROR_ROLE_SWITCH_FAILED","features":[360]},{"name":"BTH_ERROR_ROLE_SWITCH_PENDING","features":[360]},{"name":"BTH_ERROR_SCO_AIRMODE_REJECTED","features":[360]},{"name":"BTH_ERROR_SCO_INTERVAL_REJECTED","features":[360]},{"name":"BTH_ERROR_SCO_OFFSET_REJECTED","features":[360]},{"name":"BTH_ERROR_SECURE_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST","features":[360]},{"name":"BTH_ERROR_SUCCESS","features":[360]},{"name":"BTH_ERROR_TYPE_0_SUBMAP_NOT_DEFINED","features":[360]},{"name":"BTH_ERROR_UKNOWN_LMP_PDU","features":[360]},{"name":"BTH_ERROR_UNACCEPTABLE_CONNECTION_INTERVAL","features":[360]},{"name":"BTH_ERROR_UNIT_KEY_NOT_USED","features":[360]},{"name":"BTH_ERROR_UNKNOWN_ADVERTISING_IDENTIFIER","features":[360]},{"name":"BTH_ERROR_UNKNOWN_HCI_COMMAND","features":[360]},{"name":"BTH_ERROR_UNSPECIFIED","features":[360]},{"name":"BTH_ERROR_UNSPECIFIED_ERROR","features":[360]},{"name":"BTH_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER","features":[360]},{"name":"BTH_ERROR_UNSUPPORTED_LMP_PARM_VALUE","features":[360]},{"name":"BTH_ERROR_UNSUPPORTED_REMOTE_FEATURE","features":[360]},{"name":"BTH_HCI_EVENT_INFO","features":[360]},{"name":"BTH_HOST_FEATURE_ENHANCED_RETRANSMISSION_MODE","features":[360]},{"name":"BTH_HOST_FEATURE_LOW_ENERGY","features":[360]},{"name":"BTH_HOST_FEATURE_SCO_HCI","features":[360]},{"name":"BTH_HOST_FEATURE_SCO_HCIBYPASS","features":[360]},{"name":"BTH_HOST_FEATURE_STREAMING_MODE","features":[360]},{"name":"BTH_INFO_REQ","features":[360]},{"name":"BTH_INFO_RSP","features":[360]},{"name":"BTH_IOCTL_BASE","features":[360]},{"name":"BTH_L2CAP_EVENT_INFO","features":[360]},{"name":"BTH_LE_ATT_BLUETOOTH_BASE_GUID","features":[360]},{"name":"BTH_LE_ATT_CID","features":[360]},{"name":"BTH_LE_ATT_MAX_VALUE_SIZE","features":[360]},{"name":"BTH_LE_ATT_TRANSACTION_TIMEOUT","features":[360]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_FOUND","features":[360]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_LONG","features":[360]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHENTICATION","features":[360]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHORIZATION","features":[360]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION","features":[360]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[360]},{"name":"BTH_LE_ERROR_INSUFFICIENT_RESOURCES","features":[360]},{"name":"BTH_LE_ERROR_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[360]},{"name":"BTH_LE_ERROR_INVALID_HANDLE","features":[360]},{"name":"BTH_LE_ERROR_INVALID_OFFSET","features":[360]},{"name":"BTH_LE_ERROR_INVALID_PDU","features":[360]},{"name":"BTH_LE_ERROR_PREPARE_QUEUE_FULL","features":[360]},{"name":"BTH_LE_ERROR_READ_NOT_PERMITTED","features":[360]},{"name":"BTH_LE_ERROR_REQUEST_NOT_SUPPORTED","features":[360]},{"name":"BTH_LE_ERROR_UNKNOWN","features":[360]},{"name":"BTH_LE_ERROR_UNLIKELY","features":[360]},{"name":"BTH_LE_ERROR_UNSUPPORTED_GROUP_TYPE","features":[360]},{"name":"BTH_LE_ERROR_WRITE_NOT_PERMITTED","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_BOOKSHELF_SPEAKER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SOUNDBAR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SPEAKERPHONE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDALONE_SPEAKER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDMOUNTED_SPEAKER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_ALARM","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_AUDITORIUM","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BELL","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_ROOM","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_HORN","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_KIOSK","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_MICROPHONE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_SERVICE_DESK","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_ARM","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_WRIST","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_ACCESS_CONTROL","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIRCRAFT","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIR_CONDITIONING","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SINK","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SOURCE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AV_EQUIPMENT","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BARCODE_SCANNER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BLOOD_PRESSURE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CLOCK","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_COMPUTER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTINUOUS_GLUCOSE_MONITOR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTROL_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CYCLING","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY_EQUIPMENT","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DOMESTIC_APPLIANCE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_EYE_GLASSES","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_FAN","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GAMING","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GLUCOSE_METER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEARING_AID","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEART_RATE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEATING","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HID","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HUMIDIFIER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HVAC","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_INSULIN_PUMP","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_KEYRING","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_FIXTURES","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_SOURCE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MASK","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDIA_PLAYER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDICATION_DELIVERY","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_VEHICLE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_NETWORK_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OFFSET","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OUTDOOR_SPORTS_ACTIVITY","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PERSONAL_MOBILITY_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PHONE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PLUSE_OXIMETER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_POWER_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_REMOTE_CONTROL","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_RUNNING_WALKING_SENSOR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SENSOR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SIGNAGE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_TAG","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_THERMOMETER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_UNCATEGORIZED","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WATCH","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEARABLE_AUDIO_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEIGHT_SCALE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WINDOW_COVERING","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CADENCE_SENSOR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CYCLING_COMPUTER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_POWER_SENSOR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_AND_CADENCE_SENSOR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_SENSOR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_BEHIND_EAR_HEARING_AID","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_COCHLEAR_IMPLANT","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_IN_EAR_HEARING_AID","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HEART_RATE_SUBCATEGORY_HEART_RATE_BELT","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_BARCODE_SCANNER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_CARD_READER","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITAL_PEN","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITIZER_TABLET","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_GAMEPAD","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_JOYSTICK","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_KEYBOARD","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_MOUSE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_DISPLAY_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_DISPLAY_DEVICE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_POD","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_POD","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_FINGERTIP","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_WRIST_WORN","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_IN_SHOE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_HIP","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_SHOE","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_SUBCATEGORY_GENERIC","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_SUB_CATEGORY_MASK","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_THERMOMETER_SUBCATEGORY_EAR","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_WATCH_SUBCATEGORY_SPORTS_WATCH","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_EARBUD","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADPHONES","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADSET","features":[360]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_NECKBAND","features":[360]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_CHARACTERISTIC","features":[360]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_INCLUDE","features":[360]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_PRIMARY_SERVICE","features":[360]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_SECONDARY_SERVICE","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC","features":[360,303]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_AGGREGATE_FORMAT","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_CLIENT_CONFIGURATION","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_EXTENDED_PROPERTIES","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_FORMAT","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_SERVER_CONFIGURATION","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_USER_DESCRIPTION","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_APPEARANCE","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_DEVICE_NAME","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PREFERED_CONNECTION_PARAMETER","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PRIVACY_FLAG","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_RECONNECTION_ADDRESS","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_SERVICE_CHANGED","features":[360]},{"name":"BTH_LE_GATT_CHARACTERISTIC_VALUE","features":[360]},{"name":"BTH_LE_GATT_DEFAULT_MAX_INCLUDED_SERVICES_DEPTH","features":[360]},{"name":"BTH_LE_GATT_DESCRIPTOR","features":[360,303]},{"name":"BTH_LE_GATT_DESCRIPTOR_TYPE","features":[360]},{"name":"BTH_LE_GATT_DESCRIPTOR_VALUE","features":[360,303]},{"name":"BTH_LE_GATT_EVENT_TYPE","features":[360]},{"name":"BTH_LE_GATT_SERVICE","features":[360,303]},{"name":"BTH_LE_SERVICE_GAP","features":[360]},{"name":"BTH_LE_SERVICE_GATT","features":[360]},{"name":"BTH_LE_UUID","features":[360,303]},{"name":"BTH_LINK_KEY_LENGTH","features":[360]},{"name":"BTH_MAJORVERSION","features":[360]},{"name":"BTH_MAX_NAME_SIZE","features":[360]},{"name":"BTH_MAX_PIN_SIZE","features":[360]},{"name":"BTH_MAX_SERVICE_NAME_SIZE","features":[360]},{"name":"BTH_MFG_3COM","features":[360]},{"name":"BTH_MFG_ALCATEL","features":[360]},{"name":"BTH_MFG_APPLE","features":[360]},{"name":"BTH_MFG_ARUBA_NETWORKS","features":[360]},{"name":"BTH_MFG_ATMEL","features":[360]},{"name":"BTH_MFG_AVM_BERLIN","features":[360]},{"name":"BTH_MFG_BANDSPEED","features":[360]},{"name":"BTH_MFG_BROADCOM","features":[360]},{"name":"BTH_MFG_CONEXANT","features":[360]},{"name":"BTH_MFG_CSR","features":[360]},{"name":"BTH_MFG_C_TECHNOLOGIES","features":[360]},{"name":"BTH_MFG_DIGIANSWER","features":[360]},{"name":"BTH_MFG_ERICSSON","features":[360]},{"name":"BTH_MFG_HITACHI","features":[360]},{"name":"BTH_MFG_IBM","features":[360]},{"name":"BTH_MFG_INFINEON","features":[360]},{"name":"BTH_MFG_INTEL","features":[360]},{"name":"BTH_MFG_INTERNAL_USE","features":[360]},{"name":"BTH_MFG_INVENTEL","features":[360]},{"name":"BTH_MFG_KC_TECHNOLOGY","features":[360]},{"name":"BTH_MFG_LUCENT","features":[360]},{"name":"BTH_MFG_MACRONIX_INTERNATIONAL","features":[360]},{"name":"BTH_MFG_MANSELLA","features":[360]},{"name":"BTH_MFG_MARVELL","features":[360]},{"name":"BTH_MFG_MICROSOFT","features":[360]},{"name":"BTH_MFG_MITEL","features":[360]},{"name":"BTH_MFG_MITSIBUSHI","features":[360]},{"name":"BTH_MFG_MOTOROLA","features":[360]},{"name":"BTH_MFG_NEC","features":[360]},{"name":"BTH_MFG_NEWLOGIC","features":[360]},{"name":"BTH_MFG_NOKIA","features":[360]},{"name":"BTH_MFG_NORDIC_SEMICONDUCTORS_ASA","features":[360]},{"name":"BTH_MFG_OPEN_INTERFACE","features":[360]},{"name":"BTH_MFG_PARTHUS","features":[360]},{"name":"BTH_MFG_PHILIPS_SEMICONDUCTOR","features":[360]},{"name":"BTH_MFG_QUALCOMM","features":[360]},{"name":"BTH_MFG_RF_MICRO_DEVICES","features":[360]},{"name":"BTH_MFG_ROHDE_SCHWARZ","features":[360]},{"name":"BTH_MFG_RTX_TELECOM","features":[360]},{"name":"BTH_MFG_SIGNIA","features":[360]},{"name":"BTH_MFG_SILICONWAVE","features":[360]},{"name":"BTH_MFG_SYMBOL_TECHNOLOGIES","features":[360]},{"name":"BTH_MFG_TENOVIS","features":[360]},{"name":"BTH_MFG_TI","features":[360]},{"name":"BTH_MFG_TOSHIBA","features":[360]},{"name":"BTH_MFG_TRANSILICA","features":[360]},{"name":"BTH_MFG_TTPCOM","features":[360]},{"name":"BTH_MFG_WAVEPLUS_TECHNOLOGY_CO","features":[360]},{"name":"BTH_MFG_WIDCOMM","features":[360]},{"name":"BTH_MFG_ZEEVO","features":[360]},{"name":"BTH_MINORVERSION","features":[360]},{"name":"BTH_PING_REQ","features":[360]},{"name":"BTH_PING_RSP","features":[360]},{"name":"BTH_QUERY_DEVICE","features":[360]},{"name":"BTH_QUERY_SERVICE","features":[360]},{"name":"BTH_RADIO_IN_RANGE","features":[360]},{"name":"BTH_SDP_VERSION","features":[360]},{"name":"BTH_SET_SERVICE","features":[360,303]},{"name":"BTH_VID_DEFAULT_VALUE","features":[360]},{"name":"BT_PORT_DYN_FIRST","features":[360]},{"name":"BT_PORT_MAX","features":[360]},{"name":"BT_PORT_MIN","features":[360]},{"name":"BasicPrintingProfileID_UUID16","features":[360]},{"name":"BasicPrintingServiceClassID_UUID16","features":[360]},{"name":"BluetoothAuthenticateDevice","features":[360,303]},{"name":"BluetoothAuthenticateDeviceEx","features":[360,303]},{"name":"BluetoothAuthenticateMultipleDevices","features":[360,303]},{"name":"BluetoothDisplayDeviceProperties","features":[360,303]},{"name":"BluetoothEnableDiscovery","features":[360,303]},{"name":"BluetoothEnableIncomingConnections","features":[360,303]},{"name":"BluetoothEnumerateInstalledServices","features":[360,303]},{"name":"BluetoothFindDeviceClose","features":[360,303]},{"name":"BluetoothFindFirstDevice","features":[360,303]},{"name":"BluetoothFindFirstRadio","features":[360,303]},{"name":"BluetoothFindNextDevice","features":[360,303]},{"name":"BluetoothFindNextRadio","features":[360,303]},{"name":"BluetoothFindRadioClose","features":[360,303]},{"name":"BluetoothGATTAbortReliableWrite","features":[360,303]},{"name":"BluetoothGATTBeginReliableWrite","features":[360,303]},{"name":"BluetoothGATTEndReliableWrite","features":[360,303]},{"name":"BluetoothGATTGetCharacteristicValue","features":[360,303]},{"name":"BluetoothGATTGetCharacteristics","features":[360,303]},{"name":"BluetoothGATTGetDescriptorValue","features":[360,303]},{"name":"BluetoothGATTGetDescriptors","features":[360,303]},{"name":"BluetoothGATTGetIncludedServices","features":[360,303]},{"name":"BluetoothGATTGetServices","features":[360,303]},{"name":"BluetoothGATTRegisterEvent","features":[360,303]},{"name":"BluetoothGATTSetCharacteristicValue","features":[360,303]},{"name":"BluetoothGATTSetDescriptorValue","features":[360,303]},{"name":"BluetoothGATTUnregisterEvent","features":[360]},{"name":"BluetoothGetDeviceInfo","features":[360,303]},{"name":"BluetoothGetRadioInfo","features":[360,303]},{"name":"BluetoothIsConnectable","features":[360,303]},{"name":"BluetoothIsDiscoverable","features":[360,303]},{"name":"BluetoothIsVersionAvailable","features":[360,303]},{"name":"BluetoothRegisterForAuthentication","features":[360,303]},{"name":"BluetoothRegisterForAuthenticationEx","features":[360,303]},{"name":"BluetoothRemoveDevice","features":[360]},{"name":"BluetoothSdpEnumAttributes","features":[360,303]},{"name":"BluetoothSdpGetAttributeValue","features":[360]},{"name":"BluetoothSdpGetContainerElementData","features":[360]},{"name":"BluetoothSdpGetElementData","features":[360]},{"name":"BluetoothSdpGetString","features":[360]},{"name":"BluetoothSelectDevices","features":[360,303]},{"name":"BluetoothSelectDevicesFree","features":[360,303]},{"name":"BluetoothSendAuthenticationResponse","features":[360,303]},{"name":"BluetoothSendAuthenticationResponseEx","features":[360,303]},{"name":"BluetoothSetLocalServiceInfo","features":[360,303]},{"name":"BluetoothSetServiceState","features":[360,303]},{"name":"BluetoothUnregisterAuthentication","features":[360,303]},{"name":"BluetoothUpdateDeviceRecord","features":[360,303]},{"name":"Bluetooth_Base_UUID","features":[360]},{"name":"BrowseGroupDescriptorServiceClassID_UUID16","features":[360]},{"name":"CMPT_PROTOCOL_UUID16","features":[360]},{"name":"COD_AUDIO_MINOR_CAMCORDER","features":[360]},{"name":"COD_AUDIO_MINOR_CAR_AUDIO","features":[360]},{"name":"COD_AUDIO_MINOR_GAMING_TOY","features":[360]},{"name":"COD_AUDIO_MINOR_HANDS_FREE","features":[360]},{"name":"COD_AUDIO_MINOR_HEADPHONES","features":[360]},{"name":"COD_AUDIO_MINOR_HEADSET","features":[360]},{"name":"COD_AUDIO_MINOR_HEADSET_HANDS_FREE","features":[360]},{"name":"COD_AUDIO_MINOR_HIFI_AUDIO","features":[360]},{"name":"COD_AUDIO_MINOR_LOUDSPEAKER","features":[360]},{"name":"COD_AUDIO_MINOR_MICROPHONE","features":[360]},{"name":"COD_AUDIO_MINOR_PORTABLE_AUDIO","features":[360]},{"name":"COD_AUDIO_MINOR_SET_TOP_BOX","features":[360]},{"name":"COD_AUDIO_MINOR_UNCLASSIFIED","features":[360]},{"name":"COD_AUDIO_MINOR_VCR","features":[360]},{"name":"COD_AUDIO_MINOR_VIDEO_CAMERA","features":[360]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_CONFERENCING","features":[360]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_LOUDSPEAKER","features":[360]},{"name":"COD_AUDIO_MINOR_VIDEO_MONITOR","features":[360]},{"name":"COD_COMPUTER_MINOR_DESKTOP","features":[360]},{"name":"COD_COMPUTER_MINOR_HANDHELD","features":[360]},{"name":"COD_COMPUTER_MINOR_LAPTOP","features":[360]},{"name":"COD_COMPUTER_MINOR_PALM","features":[360]},{"name":"COD_COMPUTER_MINOR_SERVER","features":[360]},{"name":"COD_COMPUTER_MINOR_UNCLASSIFIED","features":[360]},{"name":"COD_COMPUTER_MINOR_WEARABLE","features":[360]},{"name":"COD_FORMAT_BIT_OFFSET","features":[360]},{"name":"COD_FORMAT_MASK","features":[360]},{"name":"COD_HEALTH_MINOR_BLOOD_PRESSURE_MONITOR","features":[360]},{"name":"COD_HEALTH_MINOR_GLUCOSE_METER","features":[360]},{"name":"COD_HEALTH_MINOR_HEALTH_DATA_DISPLAY","features":[360]},{"name":"COD_HEALTH_MINOR_HEART_PULSE_MONITOR","features":[360]},{"name":"COD_HEALTH_MINOR_PULSE_OXIMETER","features":[360]},{"name":"COD_HEALTH_MINOR_STEP_COUNTER","features":[360]},{"name":"COD_HEALTH_MINOR_THERMOMETER","features":[360]},{"name":"COD_HEALTH_MINOR_WEIGHING_SCALE","features":[360]},{"name":"COD_IMAGING_MINOR_CAMERA_MASK","features":[360]},{"name":"COD_IMAGING_MINOR_DISPLAY_MASK","features":[360]},{"name":"COD_IMAGING_MINOR_PRINTER_MASK","features":[360]},{"name":"COD_IMAGING_MINOR_SCANNER_MASK","features":[360]},{"name":"COD_LAN_ACCESS_0_USED","features":[360]},{"name":"COD_LAN_ACCESS_17_USED","features":[360]},{"name":"COD_LAN_ACCESS_33_USED","features":[360]},{"name":"COD_LAN_ACCESS_50_USED","features":[360]},{"name":"COD_LAN_ACCESS_67_USED","features":[360]},{"name":"COD_LAN_ACCESS_83_USED","features":[360]},{"name":"COD_LAN_ACCESS_99_USED","features":[360]},{"name":"COD_LAN_ACCESS_BIT_OFFSET","features":[360]},{"name":"COD_LAN_ACCESS_FULL","features":[360]},{"name":"COD_LAN_ACCESS_MASK","features":[360]},{"name":"COD_LAN_MINOR_MASK","features":[360]},{"name":"COD_LAN_MINOR_UNCLASSIFIED","features":[360]},{"name":"COD_MAJOR_AUDIO","features":[360]},{"name":"COD_MAJOR_COMPUTER","features":[360]},{"name":"COD_MAJOR_HEALTH","features":[360]},{"name":"COD_MAJOR_IMAGING","features":[360]},{"name":"COD_MAJOR_LAN_ACCESS","features":[360]},{"name":"COD_MAJOR_MASK","features":[360]},{"name":"COD_MAJOR_MISCELLANEOUS","features":[360]},{"name":"COD_MAJOR_PERIPHERAL","features":[360]},{"name":"COD_MAJOR_PHONE","features":[360]},{"name":"COD_MAJOR_TOY","features":[360]},{"name":"COD_MAJOR_UNCLASSIFIED","features":[360]},{"name":"COD_MAJOR_WEARABLE","features":[360]},{"name":"COD_MINOR_BIT_OFFSET","features":[360]},{"name":"COD_MINOR_MASK","features":[360]},{"name":"COD_PERIPHERAL_MINOR_GAMEPAD","features":[360]},{"name":"COD_PERIPHERAL_MINOR_JOYSTICK","features":[360]},{"name":"COD_PERIPHERAL_MINOR_KEYBOARD_MASK","features":[360]},{"name":"COD_PERIPHERAL_MINOR_NO_CATEGORY","features":[360]},{"name":"COD_PERIPHERAL_MINOR_POINTER_MASK","features":[360]},{"name":"COD_PERIPHERAL_MINOR_REMOTE_CONTROL","features":[360]},{"name":"COD_PERIPHERAL_MINOR_SENSING","features":[360]},{"name":"COD_PHONE_MINOR_CELLULAR","features":[360]},{"name":"COD_PHONE_MINOR_CORDLESS","features":[360]},{"name":"COD_PHONE_MINOR_SMART","features":[360]},{"name":"COD_PHONE_MINOR_UNCLASSIFIED","features":[360]},{"name":"COD_PHONE_MINOR_WIRED_MODEM","features":[360]},{"name":"COD_SERVICE_AUDIO","features":[360]},{"name":"COD_SERVICE_CAPTURING","features":[360]},{"name":"COD_SERVICE_INFORMATION","features":[360]},{"name":"COD_SERVICE_LE_AUDIO","features":[360]},{"name":"COD_SERVICE_LIMITED","features":[360]},{"name":"COD_SERVICE_MASK","features":[360]},{"name":"COD_SERVICE_MAX_COUNT","features":[360]},{"name":"COD_SERVICE_NETWORKING","features":[360]},{"name":"COD_SERVICE_OBJECT_XFER","features":[360]},{"name":"COD_SERVICE_POSITIONING","features":[360]},{"name":"COD_SERVICE_RENDERING","features":[360]},{"name":"COD_SERVICE_TELEPHONY","features":[360]},{"name":"COD_TOY_MINOR_CONTROLLER","features":[360]},{"name":"COD_TOY_MINOR_DOLL_ACTION_FIGURE","features":[360]},{"name":"COD_TOY_MINOR_GAME","features":[360]},{"name":"COD_TOY_MINOR_ROBOT","features":[360]},{"name":"COD_TOY_MINOR_VEHICLE","features":[360]},{"name":"COD_VERSION","features":[360]},{"name":"COD_WEARABLE_MINOR_GLASSES","features":[360]},{"name":"COD_WEARABLE_MINOR_HELMET","features":[360]},{"name":"COD_WEARABLE_MINOR_JACKET","features":[360]},{"name":"COD_WEARABLE_MINOR_PAGER","features":[360]},{"name":"COD_WEARABLE_MINOR_WRIST_WATCH","features":[360]},{"name":"CORDLESS_EXTERNAL_NETWORK_ANALOG_CELLULAR","features":[360]},{"name":"CORDLESS_EXTERNAL_NETWORK_CDMA","features":[360]},{"name":"CORDLESS_EXTERNAL_NETWORK_GSM","features":[360]},{"name":"CORDLESS_EXTERNAL_NETWORK_ISDN","features":[360]},{"name":"CORDLESS_EXTERNAL_NETWORK_OTHER","features":[360]},{"name":"CORDLESS_EXTERNAL_NETWORK_PACKET_SWITCHED","features":[360]},{"name":"CORDLESS_EXTERNAL_NETWORK_PSTN","features":[360]},{"name":"CTNAccessServiceClassID_UUID16","features":[360]},{"name":"CTNNotificationServiceClassID_UUID16","features":[360]},{"name":"CTNProfileID_UUID16","features":[360]},{"name":"CharacteristicAggregateFormat","features":[360]},{"name":"CharacteristicExtendedProperties","features":[360]},{"name":"CharacteristicFormat","features":[360]},{"name":"CharacteristicUserDescription","features":[360]},{"name":"CharacteristicValueChangedEvent","features":[360]},{"name":"ClientCharacteristicConfiguration","features":[360]},{"name":"CommonISDNAccessServiceClassID_UUID16","features":[360]},{"name":"CommonISDNAccessServiceClass_UUID16","features":[360]},{"name":"CordlessServiceClassID_UUID16","features":[360]},{"name":"CordlessTelephonyServiceClassID_UUID16","features":[360]},{"name":"CustomDescriptor","features":[360]},{"name":"DI_VENDOR_ID_SOURCE_BLUETOOTH_SIG","features":[360]},{"name":"DI_VENDOR_ID_SOURCE_USB_IF","features":[360]},{"name":"DialupNetworkingServiceClassID_UUID16","features":[360]},{"name":"DirectPrintingReferenceObjectsServiceClassID_UUID16","features":[360]},{"name":"DirectPrintingServiceClassID_UUID16","features":[360]},{"name":"ENCODING_UTF_8","features":[360]},{"name":"ESdpUpnpIpLapServiceClassID_UUID16","features":[360]},{"name":"ESdpUpnpIpPanServiceClassID_UUID16","features":[360]},{"name":"ESdpUpnpL2capServiceClassID_UUID16","features":[360]},{"name":"FTP_PROTOCOL_UUID16","features":[360]},{"name":"FaxServiceClassID_UUID16","features":[360]},{"name":"GNSSProfileID_UUID16","features":[360]},{"name":"GNSSServerServiceClassID_UUID16","features":[360]},{"name":"GNServiceClassID_UUID16","features":[360]},{"name":"GUID_BLUETOOTHLE_DEVICE_INTERFACE","features":[360]},{"name":"GUID_BLUETOOTH_AUTHENTICATION_REQUEST","features":[360]},{"name":"GUID_BLUETOOTH_GATT_SERVICE_DEVICE_INTERFACE","features":[360]},{"name":"GUID_BLUETOOTH_HCI_EVENT","features":[360]},{"name":"GUID_BLUETOOTH_HCI_VENDOR_EVENT","features":[360]},{"name":"GUID_BLUETOOTH_KEYPRESS_EVENT","features":[360]},{"name":"GUID_BLUETOOTH_L2CAP_EVENT","features":[360]},{"name":"GUID_BLUETOOTH_RADIO_IN_RANGE","features":[360]},{"name":"GUID_BLUETOOTH_RADIO_OUT_OF_RANGE","features":[360]},{"name":"GUID_BTHPORT_DEVICE_INTERFACE","features":[360]},{"name":"GUID_BTH_RFCOMM_SERVICE_DEVICE_INTERFACE","features":[360]},{"name":"GenericAudioServiceClassID_UUID16","features":[360]},{"name":"GenericFileTransferServiceClassID_UUID16","features":[360]},{"name":"GenericNetworkingServiceClassID_UUID16","features":[360]},{"name":"GenericTelephonyServiceClassID_UUID16","features":[360]},{"name":"HANDLE_SDP_TYPE","features":[360]},{"name":"HBLUETOOTH_DEVICE_FIND","features":[360]},{"name":"HBLUETOOTH_RADIO_FIND","features":[360]},{"name":"HCCC_PROTOCOL_UUID16","features":[360]},{"name":"HCDC_PROTOCOL_UUID16","features":[360]},{"name":"HCI_CONNECTION_TYPE_ACL","features":[360]},{"name":"HCI_CONNECTION_TYPE_LE","features":[360]},{"name":"HCI_CONNECTION_TYPE_SCO","features":[360]},{"name":"HCI_CONNNECTION_TYPE_ACL","features":[360]},{"name":"HCI_CONNNECTION_TYPE_SCO","features":[360]},{"name":"HCN_PROTOCOL_UUID16","features":[360]},{"name":"HCRPrintServiceClassID_UUID16","features":[360]},{"name":"HCRScanServiceClassID_UUID16","features":[360]},{"name":"HID_PROTOCOL_UUID16","features":[360]},{"name":"HTTP_PROTOCOL_UUID16","features":[360]},{"name":"HandsfreeAudioGatewayServiceClassID_UUID16","features":[360]},{"name":"HandsfreeServiceClassID_UUID16","features":[360]},{"name":"HardcopyCableReplacementProfileID_UUID16","features":[360]},{"name":"HardcopyCableReplacementServiceClassID_UUID16","features":[360]},{"name":"HeadsetAudioGatewayServiceClassID_UUID16","features":[360]},{"name":"HeadsetHSServiceClassID_UUID16","features":[360]},{"name":"HeadsetServiceClassID_UUID16","features":[360]},{"name":"HealthDeviceProfileID_UUID16","features":[360]},{"name":"HealthDeviceProfileSinkServiceClassID_UUID16","features":[360]},{"name":"HealthDeviceProfileSourceServiceClassID_UUID16","features":[360]},{"name":"HumanInterfaceDeviceServiceClassID_UUID16","features":[360]},{"name":"IO_CAPABILITY","features":[360]},{"name":"IP_PROTOCOL_UUID16","features":[360]},{"name":"ImagingAutomaticArchiveServiceClassID_UUID16","features":[360]},{"name":"ImagingReferenceObjectsServiceClassID_UUID16","features":[360]},{"name":"ImagingResponderServiceClassID_UUID16","features":[360]},{"name":"ImagingServiceClassID_UUID16","features":[360]},{"name":"ImagingServiceProfileID_UUID16","features":[360]},{"name":"IntercomServiceClassID_UUID16","features":[360]},{"name":"IoCaps_DisplayOnly","features":[360]},{"name":"IoCaps_DisplayYesNo","features":[360]},{"name":"IoCaps_KeyboardOnly","features":[360]},{"name":"IoCaps_NoInputNoOutput","features":[360]},{"name":"IoCaps_Undefined","features":[360]},{"name":"IrMCSyncServiceClassID_UUID16","features":[360]},{"name":"IrMcSyncCommandServiceClassID_UUID16","features":[360]},{"name":"L2CAP_DEFAULT_MTU","features":[360]},{"name":"L2CAP_MAX_MTU","features":[360]},{"name":"L2CAP_MIN_MTU","features":[360]},{"name":"L2CAP_PROTOCOL_UUID16","features":[360]},{"name":"LANAccessUsingPPPServiceClassID_UUID16","features":[360]},{"name":"LANGUAGE_EN_US","features":[360]},{"name":"LANG_BASE_ENCODING_INDEX","features":[360]},{"name":"LANG_BASE_LANGUAGE_INDEX","features":[360]},{"name":"LANG_BASE_OFFSET_INDEX","features":[360]},{"name":"LANG_DEFAULT_ID","features":[360]},{"name":"LAP_GIAC_VALUE","features":[360]},{"name":"LAP_LIAC_VALUE","features":[360]},{"name":"MAX_L2CAP_INFO_DATA_LENGTH","features":[360]},{"name":"MAX_L2CAP_PING_DATA_LENGTH","features":[360]},{"name":"MAX_UUIDS_IN_QUERY","features":[360]},{"name":"MITMProtectionNotDefined","features":[360]},{"name":"MITMProtectionNotRequired","features":[360]},{"name":"MITMProtectionNotRequiredBonding","features":[360]},{"name":"MITMProtectionNotRequiredGeneralBonding","features":[360]},{"name":"MITMProtectionRequired","features":[360]},{"name":"MITMProtectionRequiredBonding","features":[360]},{"name":"MITMProtectionRequiredGeneralBonding","features":[360]},{"name":"MPSProfileID_UUID16","features":[360]},{"name":"MPSServiceClassID_UUID16","features":[360]},{"name":"MessageAccessProfileID_UUID16","features":[360]},{"name":"MessageAccessServerServiceClassID_UUID16","features":[360]},{"name":"MessageNotificationServerServiceClassID_UUID16","features":[360]},{"name":"NAPServiceClassID_UUID16","features":[360]},{"name":"NS_BTH","features":[360]},{"name":"NodeContainerType","features":[360]},{"name":"NodeContainerTypeAlternative","features":[360]},{"name":"NodeContainerTypeSequence","features":[360]},{"name":"OBEXFileTransferServiceClassID_UUID16","features":[360]},{"name":"OBEXObjectPushServiceClassID_UUID16","features":[360]},{"name":"OBEX_PROTOCOL_UUID16","features":[360]},{"name":"OBJECT_PUSH_FORMAT_ANY","features":[360]},{"name":"OBJECT_PUSH_FORMAT_ICAL_2_0","features":[360]},{"name":"OBJECT_PUSH_FORMAT_VCAL_1_0","features":[360]},{"name":"OBJECT_PUSH_FORMAT_VCARD_2_1","features":[360]},{"name":"OBJECT_PUSH_FORMAT_VCARD_3_0","features":[360]},{"name":"OBJECT_PUSH_FORMAT_VMESSAGE","features":[360]},{"name":"OBJECT_PUSH_FORMAT_VNOTE","features":[360]},{"name":"PANUServiceClassID_UUID16","features":[360]},{"name":"PFNBLUETOOTH_GATT_EVENT_CALLBACK","features":[360]},{"name":"PFN_AUTHENTICATION_CALLBACK","features":[360,303]},{"name":"PFN_AUTHENTICATION_CALLBACK_EX","features":[360,303]},{"name":"PFN_BLUETOOTH_ENUM_ATTRIBUTES_CALLBACK","features":[360,303]},{"name":"PFN_DEVICE_CALLBACK","features":[360,303]},{"name":"PF_BTH","features":[360]},{"name":"PSM_3DSP","features":[360]},{"name":"PSM_ATT","features":[360]},{"name":"PSM_AVCTP","features":[360]},{"name":"PSM_AVCTP_BROWSE","features":[360]},{"name":"PSM_AVDTP","features":[360]},{"name":"PSM_BNEP","features":[360]},{"name":"PSM_HID_CONTROL","features":[360]},{"name":"PSM_HID_INTERRUPT","features":[360]},{"name":"PSM_LE_IPSP","features":[360]},{"name":"PSM_RFCOMM","features":[360]},{"name":"PSM_SDP","features":[360]},{"name":"PSM_TCS_BIN","features":[360]},{"name":"PSM_TCS_BIN_CORDLESS","features":[360]},{"name":"PSM_UDI_C_PLANE","features":[360]},{"name":"PSM_UPNP","features":[360]},{"name":"PhonebookAccessPceServiceClassID_UUID16","features":[360]},{"name":"PhonebookAccessProfileID_UUID16","features":[360]},{"name":"PhonebookAccessPseServiceClassID_UUID16","features":[360]},{"name":"PnPInformationServiceClassID_UUID16","features":[360]},{"name":"PrintingStatusServiceClassID_UUID16","features":[360]},{"name":"PublicBrowseGroupServiceClassID_UUID16","features":[360]},{"name":"RFCOMM_CMD_MSC","features":[360]},{"name":"RFCOMM_CMD_NONE","features":[360]},{"name":"RFCOMM_CMD_RLS","features":[360]},{"name":"RFCOMM_CMD_RPN","features":[360]},{"name":"RFCOMM_CMD_RPN_REQUEST","features":[360]},{"name":"RFCOMM_CMD_RPN_RESPONSE","features":[360]},{"name":"RFCOMM_COMMAND","features":[360]},{"name":"RFCOMM_MAX_MTU","features":[360]},{"name":"RFCOMM_MIN_MTU","features":[360]},{"name":"RFCOMM_MSC_DATA","features":[360]},{"name":"RFCOMM_PROTOCOL_UUID16","features":[360]},{"name":"RFCOMM_RLS_DATA","features":[360]},{"name":"RFCOMM_RPN_DATA","features":[360]},{"name":"RLS_ERROR","features":[360]},{"name":"RLS_FRAMING","features":[360]},{"name":"RLS_OVERRUN","features":[360]},{"name":"RLS_PARITY","features":[360]},{"name":"RPN_BAUD_115200","features":[360]},{"name":"RPN_BAUD_19200","features":[360]},{"name":"RPN_BAUD_230400","features":[360]},{"name":"RPN_BAUD_2400","features":[360]},{"name":"RPN_BAUD_38400","features":[360]},{"name":"RPN_BAUD_4800","features":[360]},{"name":"RPN_BAUD_57600","features":[360]},{"name":"RPN_BAUD_7200","features":[360]},{"name":"RPN_BAUD_9600","features":[360]},{"name":"RPN_DATA_5","features":[360]},{"name":"RPN_DATA_6","features":[360]},{"name":"RPN_DATA_7","features":[360]},{"name":"RPN_DATA_8","features":[360]},{"name":"RPN_FLOW_RTC_IN","features":[360]},{"name":"RPN_FLOW_RTC_OUT","features":[360]},{"name":"RPN_FLOW_RTR_IN","features":[360]},{"name":"RPN_FLOW_RTR_OUT","features":[360]},{"name":"RPN_FLOW_X_IN","features":[360]},{"name":"RPN_FLOW_X_OUT","features":[360]},{"name":"RPN_PARAM_BAUD","features":[360]},{"name":"RPN_PARAM_DATA","features":[360]},{"name":"RPN_PARAM_PARITY","features":[360]},{"name":"RPN_PARAM_P_TYPE","features":[360]},{"name":"RPN_PARAM_RTC_IN","features":[360]},{"name":"RPN_PARAM_RTC_OUT","features":[360]},{"name":"RPN_PARAM_RTR_IN","features":[360]},{"name":"RPN_PARAM_RTR_OUT","features":[360]},{"name":"RPN_PARAM_STOP","features":[360]},{"name":"RPN_PARAM_XOFF","features":[360]},{"name":"RPN_PARAM_XON","features":[360]},{"name":"RPN_PARAM_X_IN","features":[360]},{"name":"RPN_PARAM_X_OUT","features":[360]},{"name":"RPN_PARITY_EVEN","features":[360]},{"name":"RPN_PARITY_MARK","features":[360]},{"name":"RPN_PARITY_NONE","features":[360]},{"name":"RPN_PARITY_ODD","features":[360]},{"name":"RPN_PARITY_SPACE","features":[360]},{"name":"RPN_STOP_1","features":[360]},{"name":"RPN_STOP_1_5","features":[360]},{"name":"ReferencePrintingServiceClassID_UUID16","features":[360]},{"name":"ReflectsUIServiceClassID_UUID16","features":[360]},{"name":"SAP_BIT_OFFSET","features":[360]},{"name":"SDP_ATTRIB_A2DP_SUPPORTED_FEATURES","features":[360]},{"name":"SDP_ATTRIB_ADDITIONAL_PROTOCOL_DESCRIPTOR_LIST","features":[360]},{"name":"SDP_ATTRIB_AVAILABILITY","features":[360]},{"name":"SDP_ATTRIB_AVRCP_SUPPORTED_FEATURES","features":[360]},{"name":"SDP_ATTRIB_BROWSE_GROUP_ID","features":[360]},{"name":"SDP_ATTRIB_BROWSE_GROUP_LIST","features":[360]},{"name":"SDP_ATTRIB_CLASS_ID_LIST","features":[360]},{"name":"SDP_ATTRIB_CLIENT_EXECUTABLE_URL","features":[360]},{"name":"SDP_ATTRIB_CORDLESS_EXTERNAL_NETWORK","features":[360]},{"name":"SDP_ATTRIB_DI_PRIMARY_RECORD","features":[360]},{"name":"SDP_ATTRIB_DI_PRODUCT_ID","features":[360]},{"name":"SDP_ATTRIB_DI_SPECIFICATION_ID","features":[360]},{"name":"SDP_ATTRIB_DI_VENDOR_ID","features":[360]},{"name":"SDP_ATTRIB_DI_VENDOR_ID_SOURCE","features":[360]},{"name":"SDP_ATTRIB_DI_VERSION","features":[360]},{"name":"SDP_ATTRIB_DOCUMENTATION_URL","features":[360]},{"name":"SDP_ATTRIB_FAX_AUDIO_FEEDBACK_SUPPORT","features":[360]},{"name":"SDP_ATTRIB_FAX_CLASS_1_SUPPORT","features":[360]},{"name":"SDP_ATTRIB_FAX_CLASS_2_0_SUPPORT","features":[360]},{"name":"SDP_ATTRIB_FAX_CLASS_2_SUPPORT","features":[360]},{"name":"SDP_ATTRIB_HEADSET_REMOTE_AUDIO_VOLUME_CONTROL","features":[360]},{"name":"SDP_ATTRIB_HFP_SUPPORTED_FEATURES","features":[360]},{"name":"SDP_ATTRIB_HID_BATTERY_POWER","features":[360]},{"name":"SDP_ATTRIB_HID_BOOT_DEVICE","features":[360]},{"name":"SDP_ATTRIB_HID_COUNTRY_CODE","features":[360]},{"name":"SDP_ATTRIB_HID_DESCRIPTOR_LIST","features":[360]},{"name":"SDP_ATTRIB_HID_DEVICE_RELEASE_NUMBER","features":[360]},{"name":"SDP_ATTRIB_HID_DEVICE_SUBCLASS","features":[360]},{"name":"SDP_ATTRIB_HID_LANG_ID_BASE_LIST","features":[360]},{"name":"SDP_ATTRIB_HID_NORMALLY_CONNECTABLE","features":[360]},{"name":"SDP_ATTRIB_HID_PARSER_VERSION","features":[360]},{"name":"SDP_ATTRIB_HID_PROFILE_VERSION","features":[360]},{"name":"SDP_ATTRIB_HID_RECONNECT_INITIATE","features":[360]},{"name":"SDP_ATTRIB_HID_REMOTE_WAKE","features":[360]},{"name":"SDP_ATTRIB_HID_SDP_DISABLE","features":[360]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MAX_LATENCY","features":[360]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MIN_TIMEOUT","features":[360]},{"name":"SDP_ATTRIB_HID_SUPERVISION_TIMEOUT","features":[360]},{"name":"SDP_ATTRIB_HID_VIRTUAL_CABLE","features":[360]},{"name":"SDP_ATTRIB_ICON_URL","features":[360]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_CAPABILITIES","features":[360]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FEATURES","features":[360]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FUNCTIONS","features":[360]},{"name":"SDP_ATTRIB_IMAGING_TOTAL_DATA_CAPACITY","features":[360]},{"name":"SDP_ATTRIB_INFO_TIME_TO_LIVE","features":[360]},{"name":"SDP_ATTRIB_LANG_BASE_ATTRIB_ID_LIST","features":[360]},{"name":"SDP_ATTRIB_LAN_LPSUBNET","features":[360]},{"name":"SDP_ATTRIB_OBJECT_PUSH_SUPPORTED_FORMATS_LIST","features":[360]},{"name":"SDP_ATTRIB_PAN_HOME_PAGE_URL","features":[360]},{"name":"SDP_ATTRIB_PAN_MAX_NET_ACCESS_RATE","features":[360]},{"name":"SDP_ATTRIB_PAN_NETWORK_ADDRESS","features":[360]},{"name":"SDP_ATTRIB_PAN_NET_ACCESS_TYPE","features":[360]},{"name":"SDP_ATTRIB_PAN_SECURITY_DESCRIPTION","features":[360]},{"name":"SDP_ATTRIB_PAN_WAP_GATEWAY","features":[360]},{"name":"SDP_ATTRIB_PAN_WAP_STACK_TYPE","features":[360]},{"name":"SDP_ATTRIB_PROFILE_DESCRIPTOR_LIST","features":[360]},{"name":"SDP_ATTRIB_PROFILE_SPECIFIC","features":[360]},{"name":"SDP_ATTRIB_PROTOCOL_DESCRIPTOR_LIST","features":[360]},{"name":"SDP_ATTRIB_RECORD_HANDLE","features":[360]},{"name":"SDP_ATTRIB_RECORD_STATE","features":[360]},{"name":"SDP_ATTRIB_SDP_DATABASE_STATE","features":[360]},{"name":"SDP_ATTRIB_SDP_VERSION_NUMBER_LIST","features":[360]},{"name":"SDP_ATTRIB_SERVICE_ID","features":[360]},{"name":"SDP_ATTRIB_SERVICE_VERSION","features":[360]},{"name":"SDP_ATTRIB_SYNCH_SUPPORTED_DATA_STORES_LIST","features":[360]},{"name":"SDP_CONNECT_ALLOW_PIN","features":[360]},{"name":"SDP_CONNECT_CACHE","features":[360]},{"name":"SDP_DEFAULT_INQUIRY_MAX_RESPONSES","features":[360]},{"name":"SDP_DEFAULT_INQUIRY_SECONDS","features":[360]},{"name":"SDP_ELEMENT_DATA","features":[360]},{"name":"SDP_ERROR_INSUFFICIENT_RESOURCES","features":[360]},{"name":"SDP_ERROR_INVALID_CONTINUATION_STATE","features":[360]},{"name":"SDP_ERROR_INVALID_PDU_SIZE","features":[360]},{"name":"SDP_ERROR_INVALID_RECORD_HANDLE","features":[360]},{"name":"SDP_ERROR_INVALID_REQUEST_SYNTAX","features":[360]},{"name":"SDP_ERROR_INVALID_SDP_VERSION","features":[360]},{"name":"SDP_LARGE_INTEGER_16","features":[360]},{"name":"SDP_MAX_INQUIRY_SECONDS","features":[360]},{"name":"SDP_PROTOCOL_UUID16","features":[360]},{"name":"SDP_REQUEST_TO_DEFAULT","features":[360]},{"name":"SDP_REQUEST_TO_MAX","features":[360]},{"name":"SDP_REQUEST_TO_MIN","features":[360]},{"name":"SDP_SEARCH_NO_FORMAT_CHECK","features":[360]},{"name":"SDP_SEARCH_NO_PARSE_CHECK","features":[360]},{"name":"SDP_SERVICE_ATTRIBUTE_REQUEST","features":[360]},{"name":"SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST","features":[360]},{"name":"SDP_SERVICE_SEARCH_REQUEST","features":[360]},{"name":"SDP_SPECIFICTYPE","features":[360]},{"name":"SDP_STRING_TYPE_DATA","features":[360]},{"name":"SDP_ST_INT128","features":[360]},{"name":"SDP_ST_INT16","features":[360]},{"name":"SDP_ST_INT32","features":[360]},{"name":"SDP_ST_INT64","features":[360]},{"name":"SDP_ST_INT8","features":[360]},{"name":"SDP_ST_NONE","features":[360]},{"name":"SDP_ST_UINT128","features":[360]},{"name":"SDP_ST_UINT16","features":[360]},{"name":"SDP_ST_UINT32","features":[360]},{"name":"SDP_ST_UINT64","features":[360]},{"name":"SDP_ST_UINT8","features":[360]},{"name":"SDP_ST_UUID128","features":[360]},{"name":"SDP_ST_UUID16","features":[360]},{"name":"SDP_ST_UUID32","features":[360]},{"name":"SDP_TYPE","features":[360]},{"name":"SDP_TYPE_ALTERNATIVE","features":[360]},{"name":"SDP_TYPE_BOOLEAN","features":[360]},{"name":"SDP_TYPE_CONTAINER","features":[360]},{"name":"SDP_TYPE_INT","features":[360]},{"name":"SDP_TYPE_NIL","features":[360]},{"name":"SDP_TYPE_SEQUENCE","features":[360]},{"name":"SDP_TYPE_STRING","features":[360]},{"name":"SDP_TYPE_UINT","features":[360]},{"name":"SDP_TYPE_URL","features":[360]},{"name":"SDP_TYPE_UUID","features":[360]},{"name":"SDP_ULARGE_INTEGER_16","features":[360]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH","features":[360]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH_EIR","features":[360]},{"name":"SERVICE_OPTION_NO_PUBLIC_BROWSE","features":[360]},{"name":"SERVICE_SECURITY_AUTHENTICATE","features":[360]},{"name":"SERVICE_SECURITY_AUTHORIZE","features":[360]},{"name":"SERVICE_SECURITY_DISABLED","features":[360]},{"name":"SERVICE_SECURITY_ENCRYPT_OPTIONAL","features":[360]},{"name":"SERVICE_SECURITY_ENCRYPT_REQUIRED","features":[360]},{"name":"SERVICE_SECURITY_NONE","features":[360]},{"name":"SERVICE_SECURITY_NO_ASK","features":[360]},{"name":"SERVICE_SECURITY_USE_DEFAULTS","features":[360]},{"name":"SOCKADDR_BTH","features":[360]},{"name":"SOL_L2CAP","features":[360]},{"name":"SOL_RFCOMM","features":[360]},{"name":"SOL_SDP","features":[360]},{"name":"SO_BTH_AUTHENTICATE","features":[360]},{"name":"SO_BTH_ENCRYPT","features":[360]},{"name":"SO_BTH_MTU","features":[360]},{"name":"SO_BTH_MTU_MAX","features":[360]},{"name":"SO_BTH_MTU_MIN","features":[360]},{"name":"STRING_DESCRIPTION_OFFSET","features":[360]},{"name":"STRING_NAME_OFFSET","features":[360]},{"name":"STRING_PROVIDER_NAME_OFFSET","features":[360]},{"name":"STR_ADDR_FMT","features":[360]},{"name":"STR_ADDR_FMTA","features":[360]},{"name":"STR_ADDR_FMTW","features":[360]},{"name":"STR_ADDR_SHORT_FMT","features":[360]},{"name":"STR_ADDR_SHORT_FMTA","features":[360]},{"name":"STR_ADDR_SHORT_FMTW","features":[360]},{"name":"STR_USBHCI_CLASS_HARDWAREID","features":[360]},{"name":"STR_USBHCI_CLASS_HARDWAREIDA","features":[360]},{"name":"STR_USBHCI_CLASS_HARDWAREIDW","features":[360]},{"name":"SVCID_BTH_PROVIDER","features":[360]},{"name":"SYNCH_DATA_STORE_CALENDAR","features":[360]},{"name":"SYNCH_DATA_STORE_MESSAGES","features":[360]},{"name":"SYNCH_DATA_STORE_NOTES","features":[360]},{"name":"SYNCH_DATA_STORE_PHONEBOOK","features":[360]},{"name":"SdpAttributeRange","features":[360]},{"name":"SdpQueryUuid","features":[360]},{"name":"SdpQueryUuidUnion","features":[360]},{"name":"SerialPortServiceClassID_UUID16","features":[360]},{"name":"ServerCharacteristicConfiguration","features":[360]},{"name":"ServiceDiscoveryServerServiceClassID_UUID16","features":[360]},{"name":"SimAccessServiceClassID_UUID16","features":[360]},{"name":"TCP_PROTOCOL_UUID16","features":[360]},{"name":"TCSAT_PROTOCOL_UUID16","features":[360]},{"name":"TCSBIN_PROTOCOL_UUID16","features":[360]},{"name":"ThreeDimensionalDisplayServiceClassID_UUID16","features":[360]},{"name":"ThreeDimensionalGlassesServiceClassID_UUID16","features":[360]},{"name":"ThreeDimensionalSynchronizationProfileID_UUID16","features":[360]},{"name":"UDIMTServiceClassID_UUID16","features":[360]},{"name":"UDIMTServiceClass_UUID16","features":[360]},{"name":"UDITAServiceClassID_UUID16","features":[360]},{"name":"UDITAServiceClass_UUID16","features":[360]},{"name":"UDI_C_PLANE_PROTOCOL_UUID16","features":[360]},{"name":"UDP_PROTOCOL_UUID16","features":[360]},{"name":"UPNP_PROTOCOL_UUID16","features":[360]},{"name":"UPnpIpServiceClassID_UUID16","features":[360]},{"name":"UPnpServiceClassID_UUID16","features":[360]},{"name":"VideoConferencingGWServiceClassID_UUID16","features":[360]},{"name":"VideoConferencingGWServiceClass_UUID16","features":[360]},{"name":"VideoConferencingServiceClassID_UUID16","features":[360]},{"name":"VideoDistributionProfileID_UUID16","features":[360]},{"name":"VideoSinkServiceClassID_UUID16","features":[360]},{"name":"VideoSourceServiceClassID_UUID16","features":[360]},{"name":"WAPClientServiceClassID_UUID16","features":[360]},{"name":"WAPServiceClassID_UUID16","features":[360]},{"name":"WSP_PROTOCOL_UUID16","features":[360]}],"370":[{"name":"BuildCommDCBA","features":[361,303]},{"name":"BuildCommDCBAndTimeoutsA","features":[361,303]},{"name":"BuildCommDCBAndTimeoutsW","features":[361,303]},{"name":"BuildCommDCBW","features":[361,303]},{"name":"CE_BREAK","features":[361]},{"name":"CE_FRAME","features":[361]},{"name":"CE_OVERRUN","features":[361]},{"name":"CE_RXOVER","features":[361]},{"name":"CE_RXPARITY","features":[361]},{"name":"CLEAR_COMM_ERROR_FLAGS","features":[361]},{"name":"CLRBREAK","features":[361]},{"name":"CLRDTR","features":[361]},{"name":"CLRRTS","features":[361]},{"name":"COMMCONFIG","features":[361]},{"name":"COMMPROP","features":[361]},{"name":"COMMPROP_STOP_PARITY","features":[361]},{"name":"COMMTIMEOUTS","features":[361]},{"name":"COMM_EVENT_MASK","features":[361]},{"name":"COMSTAT","features":[361]},{"name":"ClearCommBreak","features":[361,303]},{"name":"ClearCommError","features":[361,303]},{"name":"CommConfigDialogA","features":[361,303]},{"name":"CommConfigDialogW","features":[361,303]},{"name":"DCB","features":[361]},{"name":"DCB_PARITY","features":[361]},{"name":"DCB_STOP_BITS","features":[361]},{"name":"DIALOPTION_BILLING","features":[361]},{"name":"DIALOPTION_DIALTONE","features":[361]},{"name":"DIALOPTION_QUIET","features":[361]},{"name":"ESCAPE_COMM_FUNCTION","features":[361]},{"name":"EVENPARITY","features":[361]},{"name":"EV_BREAK","features":[361]},{"name":"EV_CTS","features":[361]},{"name":"EV_DSR","features":[361]},{"name":"EV_ERR","features":[361]},{"name":"EV_EVENT1","features":[361]},{"name":"EV_EVENT2","features":[361]},{"name":"EV_PERR","features":[361]},{"name":"EV_RING","features":[361]},{"name":"EV_RLSD","features":[361]},{"name":"EV_RX80FULL","features":[361]},{"name":"EV_RXCHAR","features":[361]},{"name":"EV_RXFLAG","features":[361]},{"name":"EV_TXEMPTY","features":[361]},{"name":"EscapeCommFunction","features":[361,303]},{"name":"GetCommConfig","features":[361,303]},{"name":"GetCommMask","features":[361,303]},{"name":"GetCommModemStatus","features":[361,303]},{"name":"GetCommPorts","features":[361]},{"name":"GetCommProperties","features":[361,303]},{"name":"GetCommState","features":[361,303]},{"name":"GetCommTimeouts","features":[361,303]},{"name":"GetDefaultCommConfigA","features":[361,303]},{"name":"GetDefaultCommConfigW","features":[361,303]},{"name":"MARKPARITY","features":[361]},{"name":"MAXLENGTH_NAI","features":[361]},{"name":"MAXLENGTH_UICCDATASTORE","features":[361]},{"name":"MDMSPKRFLAG_CALLSETUP","features":[361]},{"name":"MDMSPKRFLAG_DIAL","features":[361]},{"name":"MDMSPKRFLAG_OFF","features":[361]},{"name":"MDMSPKRFLAG_ON","features":[361]},{"name":"MDMSPKR_CALLSETUP","features":[361]},{"name":"MDMSPKR_DIAL","features":[361]},{"name":"MDMSPKR_OFF","features":[361]},{"name":"MDMSPKR_ON","features":[361]},{"name":"MDMVOLFLAG_HIGH","features":[361]},{"name":"MDMVOLFLAG_LOW","features":[361]},{"name":"MDMVOLFLAG_MEDIUM","features":[361]},{"name":"MDMVOL_HIGH","features":[361]},{"name":"MDMVOL_LOW","features":[361]},{"name":"MDMVOL_MEDIUM","features":[361]},{"name":"MDM_ANALOG_RLP_OFF","features":[361]},{"name":"MDM_ANALOG_RLP_ON","features":[361]},{"name":"MDM_ANALOG_V34","features":[361]},{"name":"MDM_AUTO_ML_2","features":[361]},{"name":"MDM_AUTO_ML_DEFAULT","features":[361]},{"name":"MDM_AUTO_ML_NONE","features":[361]},{"name":"MDM_AUTO_SPEED_DEFAULT","features":[361]},{"name":"MDM_BEARERMODE_ANALOG","features":[361]},{"name":"MDM_BEARERMODE_GSM","features":[361]},{"name":"MDM_BEARERMODE_ISDN","features":[361]},{"name":"MDM_BLIND_DIAL","features":[361]},{"name":"MDM_CCITT_OVERRIDE","features":[361]},{"name":"MDM_CELLULAR","features":[361]},{"name":"MDM_COMPRESSION","features":[361]},{"name":"MDM_DIAGNOSTICS","features":[361]},{"name":"MDM_ERROR_CONTROL","features":[361]},{"name":"MDM_FLOWCONTROL_HARD","features":[361]},{"name":"MDM_FLOWCONTROL_SOFT","features":[361]},{"name":"MDM_FORCED_EC","features":[361]},{"name":"MDM_HDLCPPP_AUTH_CHAP","features":[361]},{"name":"MDM_HDLCPPP_AUTH_DEFAULT","features":[361]},{"name":"MDM_HDLCPPP_AUTH_MSCHAP","features":[361]},{"name":"MDM_HDLCPPP_AUTH_NONE","features":[361]},{"name":"MDM_HDLCPPP_AUTH_PAP","features":[361]},{"name":"MDM_HDLCPPP_ML_2","features":[361]},{"name":"MDM_HDLCPPP_ML_DEFAULT","features":[361]},{"name":"MDM_HDLCPPP_ML_NONE","features":[361]},{"name":"MDM_HDLCPPP_SPEED_56K","features":[361]},{"name":"MDM_HDLCPPP_SPEED_64K","features":[361]},{"name":"MDM_HDLCPPP_SPEED_DEFAULT","features":[361]},{"name":"MDM_MASK_AUTO_SPEED","features":[361]},{"name":"MDM_MASK_BEARERMODE","features":[361]},{"name":"MDM_MASK_HDLCPPP_SPEED","features":[361]},{"name":"MDM_MASK_PROTOCOLDATA","features":[361]},{"name":"MDM_MASK_PROTOCOLID","features":[361]},{"name":"MDM_MASK_V110_SPEED","features":[361]},{"name":"MDM_MASK_V120_SPEED","features":[361]},{"name":"MDM_MASK_X75_DATA","features":[361]},{"name":"MDM_PIAFS_INCOMING","features":[361]},{"name":"MDM_PIAFS_OUTGOING","features":[361]},{"name":"MDM_PROTOCOLID_ANALOG","features":[361]},{"name":"MDM_PROTOCOLID_AUTO","features":[361]},{"name":"MDM_PROTOCOLID_DEFAULT","features":[361]},{"name":"MDM_PROTOCOLID_GPRS","features":[361]},{"name":"MDM_PROTOCOLID_HDLCPPP","features":[361]},{"name":"MDM_PROTOCOLID_PIAFS","features":[361]},{"name":"MDM_PROTOCOLID_V110","features":[361]},{"name":"MDM_PROTOCOLID_V120","features":[361]},{"name":"MDM_PROTOCOLID_V128","features":[361]},{"name":"MDM_PROTOCOLID_X75","features":[361]},{"name":"MDM_SHIFT_AUTO_ML","features":[361]},{"name":"MDM_SHIFT_AUTO_SPEED","features":[361]},{"name":"MDM_SHIFT_BEARERMODE","features":[361]},{"name":"MDM_SHIFT_EXTENDEDINFO","features":[361]},{"name":"MDM_SHIFT_HDLCPPP_AUTH","features":[361]},{"name":"MDM_SHIFT_HDLCPPP_ML","features":[361]},{"name":"MDM_SHIFT_HDLCPPP_SPEED","features":[361]},{"name":"MDM_SHIFT_PROTOCOLDATA","features":[361]},{"name":"MDM_SHIFT_PROTOCOLID","features":[361]},{"name":"MDM_SHIFT_PROTOCOLINFO","features":[361]},{"name":"MDM_SHIFT_V110_SPEED","features":[361]},{"name":"MDM_SHIFT_V120_ML","features":[361]},{"name":"MDM_SHIFT_V120_SPEED","features":[361]},{"name":"MDM_SHIFT_X75_DATA","features":[361]},{"name":"MDM_SPEED_ADJUST","features":[361]},{"name":"MDM_TONE_DIAL","features":[361]},{"name":"MDM_V110_SPEED_12DOT0K","features":[361]},{"name":"MDM_V110_SPEED_14DOT4K","features":[361]},{"name":"MDM_V110_SPEED_19DOT2K","features":[361]},{"name":"MDM_V110_SPEED_1DOT2K","features":[361]},{"name":"MDM_V110_SPEED_28DOT8K","features":[361]},{"name":"MDM_V110_SPEED_2DOT4K","features":[361]},{"name":"MDM_V110_SPEED_38DOT4K","features":[361]},{"name":"MDM_V110_SPEED_4DOT8K","features":[361]},{"name":"MDM_V110_SPEED_57DOT6K","features":[361]},{"name":"MDM_V110_SPEED_9DOT6K","features":[361]},{"name":"MDM_V110_SPEED_DEFAULT","features":[361]},{"name":"MDM_V120_ML_2","features":[361]},{"name":"MDM_V120_ML_DEFAULT","features":[361]},{"name":"MDM_V120_ML_NONE","features":[361]},{"name":"MDM_V120_SPEED_56K","features":[361]},{"name":"MDM_V120_SPEED_64K","features":[361]},{"name":"MDM_V120_SPEED_DEFAULT","features":[361]},{"name":"MDM_V23_OVERRIDE","features":[361]},{"name":"MDM_X75_DATA_128K","features":[361]},{"name":"MDM_X75_DATA_64K","features":[361]},{"name":"MDM_X75_DATA_BTX","features":[361]},{"name":"MDM_X75_DATA_DEFAULT","features":[361]},{"name":"MDM_X75_DATA_T_70","features":[361]},{"name":"MODEMDEVCAPS","features":[361]},{"name":"MODEMDEVCAPS_DIAL_OPTIONS","features":[361]},{"name":"MODEMDEVCAPS_SPEAKER_MODE","features":[361]},{"name":"MODEMDEVCAPS_SPEAKER_VOLUME","features":[361]},{"name":"MODEMSETTINGS","features":[361]},{"name":"MODEMSETTINGS_SPEAKER_MODE","features":[361]},{"name":"MODEM_SPEAKER_VOLUME","features":[361]},{"name":"MODEM_STATUS_FLAGS","features":[361]},{"name":"MS_CTS_ON","features":[361]},{"name":"MS_DSR_ON","features":[361]},{"name":"MS_RING_ON","features":[361]},{"name":"MS_RLSD_ON","features":[361]},{"name":"NOPARITY","features":[361]},{"name":"ODDPARITY","features":[361]},{"name":"ONE5STOPBITS","features":[361]},{"name":"ONESTOPBIT","features":[361]},{"name":"OpenCommPort","features":[361,303]},{"name":"PARITY_EVEN","features":[361]},{"name":"PARITY_MARK","features":[361]},{"name":"PARITY_NONE","features":[361]},{"name":"PARITY_ODD","features":[361]},{"name":"PARITY_SPACE","features":[361]},{"name":"PURGE_COMM_FLAGS","features":[361]},{"name":"PURGE_RXABORT","features":[361]},{"name":"PURGE_RXCLEAR","features":[361]},{"name":"PURGE_TXABORT","features":[361]},{"name":"PURGE_TXCLEAR","features":[361]},{"name":"PurgeComm","features":[361,303]},{"name":"SETBREAK","features":[361]},{"name":"SETDTR","features":[361]},{"name":"SETRTS","features":[361]},{"name":"SETXOFF","features":[361]},{"name":"SETXON","features":[361]},{"name":"SID_3GPP_SUPSVCMODEL","features":[361]},{"name":"SPACEPARITY","features":[361]},{"name":"STOPBITS_10","features":[361]},{"name":"STOPBITS_15","features":[361]},{"name":"STOPBITS_20","features":[361]},{"name":"SetCommBreak","features":[361,303]},{"name":"SetCommConfig","features":[361,303]},{"name":"SetCommMask","features":[361,303]},{"name":"SetCommState","features":[361,303]},{"name":"SetCommTimeouts","features":[361,303]},{"name":"SetDefaultCommConfigA","features":[361,303]},{"name":"SetDefaultCommConfigW","features":[361,303]},{"name":"SetupComm","features":[361,303]},{"name":"TWOSTOPBITS","features":[361]},{"name":"TransmitCommChar","features":[361,303]},{"name":"WaitCommEvent","features":[361,303,308]}],"371":[{"name":"CLSID_DeviceIoControl","features":[362]},{"name":"CreateDeviceAccessInstance","features":[362]},{"name":"DEV_PORT_1394","features":[362]},{"name":"DEV_PORT_ARTI","features":[362]},{"name":"DEV_PORT_COM1","features":[362]},{"name":"DEV_PORT_COM2","features":[362]},{"name":"DEV_PORT_COM3","features":[362]},{"name":"DEV_PORT_COM4","features":[362]},{"name":"DEV_PORT_DIAQ","features":[362]},{"name":"DEV_PORT_MAX","features":[362]},{"name":"DEV_PORT_MIN","features":[362]},{"name":"DEV_PORT_SIM","features":[362]},{"name":"DEV_PORT_USB","features":[362]},{"name":"ED_AUDIO_1","features":[362]},{"name":"ED_AUDIO_10","features":[362]},{"name":"ED_AUDIO_11","features":[362]},{"name":"ED_AUDIO_12","features":[362]},{"name":"ED_AUDIO_13","features":[362]},{"name":"ED_AUDIO_14","features":[362]},{"name":"ED_AUDIO_15","features":[362]},{"name":"ED_AUDIO_16","features":[362]},{"name":"ED_AUDIO_17","features":[362]},{"name":"ED_AUDIO_18","features":[362]},{"name":"ED_AUDIO_19","features":[362]},{"name":"ED_AUDIO_2","features":[362]},{"name":"ED_AUDIO_20","features":[362]},{"name":"ED_AUDIO_21","features":[362]},{"name":"ED_AUDIO_22","features":[362]},{"name":"ED_AUDIO_23","features":[362]},{"name":"ED_AUDIO_24","features":[362]},{"name":"ED_AUDIO_3","features":[362]},{"name":"ED_AUDIO_4","features":[362]},{"name":"ED_AUDIO_5","features":[362]},{"name":"ED_AUDIO_6","features":[362]},{"name":"ED_AUDIO_7","features":[362]},{"name":"ED_AUDIO_8","features":[362]},{"name":"ED_AUDIO_9","features":[362]},{"name":"ED_AUDIO_ALL","features":[362]},{"name":"ED_BASE","features":[362]},{"name":"ED_BOTTOM","features":[362]},{"name":"ED_CENTER","features":[362]},{"name":"ED_LEFT","features":[362]},{"name":"ED_MIDDLE","features":[362]},{"name":"ED_RIGHT","features":[362]},{"name":"ED_TOP","features":[362]},{"name":"ED_VIDEO","features":[362]},{"name":"ICreateDeviceAccessAsync","features":[362]},{"name":"IDeviceIoControl","features":[362]},{"name":"IDeviceRequestCompletionCallback","features":[362]}],"372":[{"name":"ALLOC_LOG_CONF","features":[363]},{"name":"BASIC_LOG_CONF","features":[363]},{"name":"BOOT_LOG_CONF","features":[363]},{"name":"BUSNUMBER_DES","features":[363]},{"name":"BUSNUMBER_RANGE","features":[363]},{"name":"BUSNUMBER_RESOURCE","features":[363]},{"name":"CABINET_INFO_A","features":[363]},{"name":"CABINET_INFO_A","features":[363]},{"name":"CABINET_INFO_W","features":[363]},{"name":"CABINET_INFO_W","features":[363]},{"name":"CMP_WaitNoPendingInstallEvents","features":[363]},{"name":"CM_ADD_ID_BITS","features":[363]},{"name":"CM_ADD_ID_COMPATIBLE","features":[363]},{"name":"CM_ADD_ID_HARDWARE","features":[363]},{"name":"CM_ADD_RANGE_ADDIFCONFLICT","features":[363]},{"name":"CM_ADD_RANGE_BITS","features":[363]},{"name":"CM_ADD_RANGE_DONOTADDIFCONFLICT","features":[363]},{"name":"CM_Add_Empty_Log_Conf","features":[352,363]},{"name":"CM_Add_Empty_Log_Conf_Ex","features":[352,363]},{"name":"CM_Add_IDA","features":[363]},{"name":"CM_Add_IDW","features":[363]},{"name":"CM_Add_ID_ExA","features":[363]},{"name":"CM_Add_ID_ExW","features":[363]},{"name":"CM_Add_Range","features":[363]},{"name":"CM_Add_Res_Des","features":[363]},{"name":"CM_Add_Res_Des_Ex","features":[363]},{"name":"CM_CDFLAGS","features":[363]},{"name":"CM_CDFLAGS_DRIVER","features":[363]},{"name":"CM_CDFLAGS_RESERVED","features":[363]},{"name":"CM_CDFLAGS_ROOT_OWNED","features":[363]},{"name":"CM_CDMASK","features":[363]},{"name":"CM_CDMASK_DESCRIPTION","features":[363]},{"name":"CM_CDMASK_DEVINST","features":[363]},{"name":"CM_CDMASK_FLAGS","features":[363]},{"name":"CM_CDMASK_RESDES","features":[363]},{"name":"CM_CDMASK_VALID","features":[363]},{"name":"CM_CLASS_PROPERTY_BITS","features":[363]},{"name":"CM_CLASS_PROPERTY_INSTALLER","features":[363]},{"name":"CM_CLASS_PROPERTY_INTERFACE","features":[363]},{"name":"CM_CREATE_DEVINST_BITS","features":[363]},{"name":"CM_CREATE_DEVINST_DO_NOT_INSTALL","features":[363]},{"name":"CM_CREATE_DEVINST_GENERATE_ID","features":[363]},{"name":"CM_CREATE_DEVINST_NORMAL","features":[363]},{"name":"CM_CREATE_DEVINST_NO_WAIT_INSTALL","features":[363]},{"name":"CM_CREATE_DEVINST_PHANTOM","features":[363]},{"name":"CM_CREATE_DEVNODE_BITS","features":[363]},{"name":"CM_CREATE_DEVNODE_DO_NOT_INSTALL","features":[363]},{"name":"CM_CREATE_DEVNODE_GENERATE_ID","features":[363]},{"name":"CM_CREATE_DEVNODE_NORMAL","features":[363]},{"name":"CM_CREATE_DEVNODE_NO_WAIT_INSTALL","features":[363]},{"name":"CM_CREATE_DEVNODE_PHANTOM","features":[363]},{"name":"CM_CRP_CHARACTERISTICS","features":[363]},{"name":"CM_CRP_DEVTYPE","features":[363]},{"name":"CM_CRP_EXCLUSIVE","features":[363]},{"name":"CM_CRP_LOWERFILTERS","features":[363]},{"name":"CM_CRP_MAX","features":[363]},{"name":"CM_CRP_MIN","features":[363]},{"name":"CM_CRP_SECURITY","features":[363]},{"name":"CM_CRP_SECURITY_SDS","features":[363]},{"name":"CM_CRP_UPPERFILTERS","features":[363]},{"name":"CM_CUSTOMDEVPROP_BITS","features":[363]},{"name":"CM_CUSTOMDEVPROP_MERGE_MULTISZ","features":[363]},{"name":"CM_Connect_MachineA","features":[363]},{"name":"CM_Connect_MachineW","features":[363]},{"name":"CM_Create_DevNodeA","features":[363]},{"name":"CM_Create_DevNodeW","features":[363]},{"name":"CM_Create_DevNode_ExA","features":[363]},{"name":"CM_Create_DevNode_ExW","features":[363]},{"name":"CM_Create_Range_List","features":[363]},{"name":"CM_DELETE_CLASS_BITS","features":[363]},{"name":"CM_DELETE_CLASS_INTERFACE","features":[363]},{"name":"CM_DELETE_CLASS_ONLY","features":[363]},{"name":"CM_DELETE_CLASS_SUBKEYS","features":[363]},{"name":"CM_DETECT_BITS","features":[363]},{"name":"CM_DETECT_CRASHED","features":[363]},{"name":"CM_DETECT_HWPROF_FIRST_BOOT","features":[363]},{"name":"CM_DETECT_NEW_PROFILE","features":[363]},{"name":"CM_DETECT_RUN","features":[363]},{"name":"CM_DEVCAP","features":[363]},{"name":"CM_DEVCAP_DOCKDEVICE","features":[363]},{"name":"CM_DEVCAP_EJECTSUPPORTED","features":[363]},{"name":"CM_DEVCAP_HARDWAREDISABLED","features":[363]},{"name":"CM_DEVCAP_LOCKSUPPORTED","features":[363]},{"name":"CM_DEVCAP_NONDYNAMIC","features":[363]},{"name":"CM_DEVCAP_RAWDEVICEOK","features":[363]},{"name":"CM_DEVCAP_REMOVABLE","features":[363]},{"name":"CM_DEVCAP_SECUREDEVICE","features":[363]},{"name":"CM_DEVCAP_SILENTINSTALL","features":[363]},{"name":"CM_DEVCAP_SURPRISEREMOVALOK","features":[363]},{"name":"CM_DEVCAP_UNIQUEID","features":[363]},{"name":"CM_DEVICE_PANEL_EDGE_BOTTOM","features":[363]},{"name":"CM_DEVICE_PANEL_EDGE_LEFT","features":[363]},{"name":"CM_DEVICE_PANEL_EDGE_RIGHT","features":[363]},{"name":"CM_DEVICE_PANEL_EDGE_TOP","features":[363]},{"name":"CM_DEVICE_PANEL_EDGE_UNKNOWN","features":[363]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_HINGE","features":[363]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PIVOT","features":[363]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PLANAR","features":[363]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_SWIVEL","features":[363]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_UNKNOWN","features":[363]},{"name":"CM_DEVICE_PANEL_ORIENTATION_HORIZONTAL","features":[363]},{"name":"CM_DEVICE_PANEL_ORIENTATION_VERTICAL","features":[363]},{"name":"CM_DEVICE_PANEL_SHAPE_OVAL","features":[363]},{"name":"CM_DEVICE_PANEL_SHAPE_RECTANGLE","features":[363]},{"name":"CM_DEVICE_PANEL_SHAPE_UNKNOWN","features":[363]},{"name":"CM_DEVICE_PANEL_SIDE_BACK","features":[363]},{"name":"CM_DEVICE_PANEL_SIDE_BOTTOM","features":[363]},{"name":"CM_DEVICE_PANEL_SIDE_FRONT","features":[363]},{"name":"CM_DEVICE_PANEL_SIDE_LEFT","features":[363]},{"name":"CM_DEVICE_PANEL_SIDE_RIGHT","features":[363]},{"name":"CM_DEVICE_PANEL_SIDE_TOP","features":[363]},{"name":"CM_DEVICE_PANEL_SIDE_UNKNOWN","features":[363]},{"name":"CM_DEVNODE_STATUS_FLAGS","features":[363]},{"name":"CM_DISABLE_ABSOLUTE","features":[363]},{"name":"CM_DISABLE_BITS","features":[363]},{"name":"CM_DISABLE_HARDWARE","features":[363]},{"name":"CM_DISABLE_PERSIST","features":[363]},{"name":"CM_DISABLE_POLITE","features":[363]},{"name":"CM_DISABLE_UI_NOT_OK","features":[363]},{"name":"CM_DRP_ADDRESS","features":[363]},{"name":"CM_DRP_BASE_CONTAINERID","features":[363]},{"name":"CM_DRP_BUSNUMBER","features":[363]},{"name":"CM_DRP_BUSTYPEGUID","features":[363]},{"name":"CM_DRP_CAPABILITIES","features":[363]},{"name":"CM_DRP_CHARACTERISTICS","features":[363]},{"name":"CM_DRP_CLASS","features":[363]},{"name":"CM_DRP_CLASSGUID","features":[363]},{"name":"CM_DRP_COMPATIBLEIDS","features":[363]},{"name":"CM_DRP_CONFIGFLAGS","features":[363]},{"name":"CM_DRP_DEVICEDESC","features":[363]},{"name":"CM_DRP_DEVICE_POWER_DATA","features":[363]},{"name":"CM_DRP_DEVTYPE","features":[363]},{"name":"CM_DRP_DRIVER","features":[363]},{"name":"CM_DRP_ENUMERATOR_NAME","features":[363]},{"name":"CM_DRP_EXCLUSIVE","features":[363]},{"name":"CM_DRP_FRIENDLYNAME","features":[363]},{"name":"CM_DRP_HARDWAREID","features":[363]},{"name":"CM_DRP_INSTALL_STATE","features":[363]},{"name":"CM_DRP_LEGACYBUSTYPE","features":[363]},{"name":"CM_DRP_LOCATION_INFORMATION","features":[363]},{"name":"CM_DRP_LOCATION_PATHS","features":[363]},{"name":"CM_DRP_LOWERFILTERS","features":[363]},{"name":"CM_DRP_MAX","features":[363]},{"name":"CM_DRP_MFG","features":[363]},{"name":"CM_DRP_MIN","features":[363]},{"name":"CM_DRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[363]},{"name":"CM_DRP_REMOVAL_POLICY","features":[363]},{"name":"CM_DRP_REMOVAL_POLICY_HW_DEFAULT","features":[363]},{"name":"CM_DRP_REMOVAL_POLICY_OVERRIDE","features":[363]},{"name":"CM_DRP_SECURITY","features":[363]},{"name":"CM_DRP_SECURITY_SDS","features":[363]},{"name":"CM_DRP_SERVICE","features":[363]},{"name":"CM_DRP_UI_NUMBER","features":[363]},{"name":"CM_DRP_UI_NUMBER_DESC_FORMAT","features":[363]},{"name":"CM_DRP_UNUSED0","features":[363]},{"name":"CM_DRP_UNUSED1","features":[363]},{"name":"CM_DRP_UNUSED2","features":[363]},{"name":"CM_DRP_UPPERFILTERS","features":[363]},{"name":"CM_Delete_Class_Key","features":[363]},{"name":"CM_Delete_Class_Key_Ex","features":[363]},{"name":"CM_Delete_DevNode_Key","features":[363]},{"name":"CM_Delete_DevNode_Key_Ex","features":[363]},{"name":"CM_Delete_Device_Interface_KeyA","features":[363]},{"name":"CM_Delete_Device_Interface_KeyW","features":[363]},{"name":"CM_Delete_Device_Interface_Key_ExA","features":[363]},{"name":"CM_Delete_Device_Interface_Key_ExW","features":[363]},{"name":"CM_Delete_Range","features":[363]},{"name":"CM_Detect_Resource_Conflict","features":[363,303]},{"name":"CM_Detect_Resource_Conflict_Ex","features":[363,303]},{"name":"CM_Disable_DevNode","features":[363]},{"name":"CM_Disable_DevNode_Ex","features":[363]},{"name":"CM_Disconnect_Machine","features":[363]},{"name":"CM_Dup_Range_List","features":[363]},{"name":"CM_ENUMERATE_CLASSES_BITS","features":[363]},{"name":"CM_ENUMERATE_CLASSES_INSTALLER","features":[363]},{"name":"CM_ENUMERATE_CLASSES_INTERFACE","features":[363]},{"name":"CM_ENUMERATE_FLAGS","features":[363]},{"name":"CM_Enable_DevNode","features":[363]},{"name":"CM_Enable_DevNode_Ex","features":[363]},{"name":"CM_Enumerate_Classes","features":[363]},{"name":"CM_Enumerate_Classes_Ex","features":[363]},{"name":"CM_Enumerate_EnumeratorsA","features":[363]},{"name":"CM_Enumerate_EnumeratorsW","features":[363]},{"name":"CM_Enumerate_Enumerators_ExA","features":[363]},{"name":"CM_Enumerate_Enumerators_ExW","features":[363]},{"name":"CM_Find_Range","features":[363]},{"name":"CM_First_Range","features":[363]},{"name":"CM_Free_Log_Conf","features":[363]},{"name":"CM_Free_Log_Conf_Ex","features":[363]},{"name":"CM_Free_Log_Conf_Handle","features":[363]},{"name":"CM_Free_Range_List","features":[363]},{"name":"CM_Free_Res_Des","features":[363]},{"name":"CM_Free_Res_Des_Ex","features":[363]},{"name":"CM_Free_Res_Des_Handle","features":[363]},{"name":"CM_Free_Resource_Conflict_Handle","features":[363]},{"name":"CM_GETIDLIST_DONOTGENERATE","features":[363]},{"name":"CM_GETIDLIST_FILTER_BITS","features":[363]},{"name":"CM_GETIDLIST_FILTER_BUSRELATIONS","features":[363]},{"name":"CM_GETIDLIST_FILTER_CLASS","features":[363]},{"name":"CM_GETIDLIST_FILTER_EJECTRELATIONS","features":[363]},{"name":"CM_GETIDLIST_FILTER_ENUMERATOR","features":[363]},{"name":"CM_GETIDLIST_FILTER_NONE","features":[363]},{"name":"CM_GETIDLIST_FILTER_POWERRELATIONS","features":[363]},{"name":"CM_GETIDLIST_FILTER_PRESENT","features":[363]},{"name":"CM_GETIDLIST_FILTER_REMOVALRELATIONS","features":[363]},{"name":"CM_GETIDLIST_FILTER_SERVICE","features":[363]},{"name":"CM_GETIDLIST_FILTER_TRANSPORTRELATIONS","features":[363]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_ALL_DEVICES","features":[363]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_BITS","features":[363]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_FLAGS","features":[363]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_PRESENT","features":[363]},{"name":"CM_GLOBAL_STATE_CAN_DO_UI","features":[363]},{"name":"CM_GLOBAL_STATE_DETECTION_PENDING","features":[363]},{"name":"CM_GLOBAL_STATE_ON_BIG_STACK","features":[363]},{"name":"CM_GLOBAL_STATE_REBOOT_REQUIRED","features":[363]},{"name":"CM_GLOBAL_STATE_SERVICES_AVAILABLE","features":[363]},{"name":"CM_GLOBAL_STATE_SHUTTING_DOWN","features":[363]},{"name":"CM_Get_Child","features":[363]},{"name":"CM_Get_Child_Ex","features":[363]},{"name":"CM_Get_Class_Key_NameA","features":[363]},{"name":"CM_Get_Class_Key_NameW","features":[363]},{"name":"CM_Get_Class_Key_Name_ExA","features":[363]},{"name":"CM_Get_Class_Key_Name_ExW","features":[363]},{"name":"CM_Get_Class_NameA","features":[363]},{"name":"CM_Get_Class_NameW","features":[363]},{"name":"CM_Get_Class_Name_ExA","features":[363]},{"name":"CM_Get_Class_Name_ExW","features":[363]},{"name":"CM_Get_Class_PropertyW","features":[363,336]},{"name":"CM_Get_Class_Property_ExW","features":[363,336]},{"name":"CM_Get_Class_Property_Keys","features":[363,336]},{"name":"CM_Get_Class_Property_Keys_Ex","features":[363,336]},{"name":"CM_Get_Class_Registry_PropertyA","features":[363]},{"name":"CM_Get_Class_Registry_PropertyW","features":[363]},{"name":"CM_Get_Depth","features":[363]},{"name":"CM_Get_Depth_Ex","features":[363]},{"name":"CM_Get_DevNode_Custom_PropertyA","features":[363]},{"name":"CM_Get_DevNode_Custom_PropertyW","features":[363]},{"name":"CM_Get_DevNode_Custom_Property_ExA","features":[363]},{"name":"CM_Get_DevNode_Custom_Property_ExW","features":[363]},{"name":"CM_Get_DevNode_PropertyW","features":[363,336]},{"name":"CM_Get_DevNode_Property_ExW","features":[363,336]},{"name":"CM_Get_DevNode_Property_Keys","features":[363,336]},{"name":"CM_Get_DevNode_Property_Keys_Ex","features":[363,336]},{"name":"CM_Get_DevNode_Registry_PropertyA","features":[363]},{"name":"CM_Get_DevNode_Registry_PropertyW","features":[363]},{"name":"CM_Get_DevNode_Registry_Property_ExA","features":[363]},{"name":"CM_Get_DevNode_Registry_Property_ExW","features":[363]},{"name":"CM_Get_DevNode_Status","features":[363]},{"name":"CM_Get_DevNode_Status_Ex","features":[363]},{"name":"CM_Get_Device_IDA","features":[363]},{"name":"CM_Get_Device_IDW","features":[363]},{"name":"CM_Get_Device_ID_ExA","features":[363]},{"name":"CM_Get_Device_ID_ExW","features":[363]},{"name":"CM_Get_Device_ID_ListA","features":[363]},{"name":"CM_Get_Device_ID_ListW","features":[363]},{"name":"CM_Get_Device_ID_List_ExA","features":[363]},{"name":"CM_Get_Device_ID_List_ExW","features":[363]},{"name":"CM_Get_Device_ID_List_SizeA","features":[363]},{"name":"CM_Get_Device_ID_List_SizeW","features":[363]},{"name":"CM_Get_Device_ID_List_Size_ExA","features":[363]},{"name":"CM_Get_Device_ID_List_Size_ExW","features":[363]},{"name":"CM_Get_Device_ID_Size","features":[363]},{"name":"CM_Get_Device_ID_Size_Ex","features":[363]},{"name":"CM_Get_Device_Interface_AliasA","features":[363]},{"name":"CM_Get_Device_Interface_AliasW","features":[363]},{"name":"CM_Get_Device_Interface_Alias_ExA","features":[363]},{"name":"CM_Get_Device_Interface_Alias_ExW","features":[363]},{"name":"CM_Get_Device_Interface_ListA","features":[363]},{"name":"CM_Get_Device_Interface_ListW","features":[363]},{"name":"CM_Get_Device_Interface_List_ExA","features":[363]},{"name":"CM_Get_Device_Interface_List_ExW","features":[363]},{"name":"CM_Get_Device_Interface_List_SizeA","features":[363]},{"name":"CM_Get_Device_Interface_List_SizeW","features":[363]},{"name":"CM_Get_Device_Interface_List_Size_ExA","features":[363]},{"name":"CM_Get_Device_Interface_List_Size_ExW","features":[363]},{"name":"CM_Get_Device_Interface_PropertyW","features":[363,336]},{"name":"CM_Get_Device_Interface_Property_ExW","features":[363,336]},{"name":"CM_Get_Device_Interface_Property_KeysW","features":[363,336]},{"name":"CM_Get_Device_Interface_Property_Keys_ExW","features":[363,336]},{"name":"CM_Get_First_Log_Conf","features":[363]},{"name":"CM_Get_First_Log_Conf_Ex","features":[363]},{"name":"CM_Get_Global_State","features":[363]},{"name":"CM_Get_Global_State_Ex","features":[363]},{"name":"CM_Get_HW_Prof_FlagsA","features":[363]},{"name":"CM_Get_HW_Prof_FlagsW","features":[363]},{"name":"CM_Get_HW_Prof_Flags_ExA","features":[363]},{"name":"CM_Get_HW_Prof_Flags_ExW","features":[363]},{"name":"CM_Get_Hardware_Profile_InfoA","features":[363]},{"name":"CM_Get_Hardware_Profile_InfoW","features":[363]},{"name":"CM_Get_Hardware_Profile_Info_ExA","features":[363]},{"name":"CM_Get_Hardware_Profile_Info_ExW","features":[363]},{"name":"CM_Get_Log_Conf_Priority","features":[363]},{"name":"CM_Get_Log_Conf_Priority_Ex","features":[363]},{"name":"CM_Get_Next_Log_Conf","features":[363]},{"name":"CM_Get_Next_Log_Conf_Ex","features":[363]},{"name":"CM_Get_Next_Res_Des","features":[363]},{"name":"CM_Get_Next_Res_Des_Ex","features":[363]},{"name":"CM_Get_Parent","features":[363]},{"name":"CM_Get_Parent_Ex","features":[363]},{"name":"CM_Get_Res_Des_Data","features":[363]},{"name":"CM_Get_Res_Des_Data_Ex","features":[363]},{"name":"CM_Get_Res_Des_Data_Size","features":[363]},{"name":"CM_Get_Res_Des_Data_Size_Ex","features":[363]},{"name":"CM_Get_Resource_Conflict_Count","features":[363]},{"name":"CM_Get_Resource_Conflict_DetailsA","features":[363]},{"name":"CM_Get_Resource_Conflict_DetailsW","features":[363]},{"name":"CM_Get_Sibling","features":[363]},{"name":"CM_Get_Sibling_Ex","features":[363]},{"name":"CM_Get_Version","features":[363]},{"name":"CM_Get_Version_Ex","features":[363]},{"name":"CM_HWPI_DOCKED","features":[363]},{"name":"CM_HWPI_NOT_DOCKABLE","features":[363]},{"name":"CM_HWPI_UNDOCKED","features":[363]},{"name":"CM_INSTALL_STATE","features":[363]},{"name":"CM_INSTALL_STATE_FAILED_INSTALL","features":[363]},{"name":"CM_INSTALL_STATE_FINISH_INSTALL","features":[363]},{"name":"CM_INSTALL_STATE_INSTALLED","features":[363]},{"name":"CM_INSTALL_STATE_NEEDS_REINSTALL","features":[363]},{"name":"CM_Intersect_Range_List","features":[363]},{"name":"CM_Invert_Range_List","features":[363]},{"name":"CM_Is_Dock_Station_Present","features":[363,303]},{"name":"CM_Is_Dock_Station_Present_Ex","features":[363,303]},{"name":"CM_Is_Version_Available","features":[363,303]},{"name":"CM_Is_Version_Available_Ex","features":[363,303]},{"name":"CM_LOCATE_DEVNODE_BITS","features":[363]},{"name":"CM_LOCATE_DEVNODE_CANCELREMOVE","features":[363]},{"name":"CM_LOCATE_DEVNODE_FLAGS","features":[363]},{"name":"CM_LOCATE_DEVNODE_NORMAL","features":[363]},{"name":"CM_LOCATE_DEVNODE_NOVALIDATION","features":[363]},{"name":"CM_LOCATE_DEVNODE_PHANTOM","features":[363]},{"name":"CM_LOG_CONF","features":[363]},{"name":"CM_Locate_DevNodeA","features":[363]},{"name":"CM_Locate_DevNodeW","features":[363]},{"name":"CM_Locate_DevNode_ExA","features":[363]},{"name":"CM_Locate_DevNode_ExW","features":[363]},{"name":"CM_MapCrToWin32Err","features":[363]},{"name":"CM_Merge_Range_List","features":[363]},{"name":"CM_Modify_Res_Des","features":[363]},{"name":"CM_Modify_Res_Des_Ex","features":[363]},{"name":"CM_Move_DevNode","features":[363]},{"name":"CM_Move_DevNode_Ex","features":[363]},{"name":"CM_NAME_ATTRIBUTE_NAME_RETRIEVED_FROM_DEVICE","features":[363]},{"name":"CM_NAME_ATTRIBUTE_USER_ASSIGNED_NAME","features":[363]},{"name":"CM_NOTIFY_ACTION","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICECUSTOMEVENT","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEENUMERATED","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEREMOVED","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCESTARTED","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEARRIVAL","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEREMOVAL","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVE","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVEFAILED","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVECOMPLETE","features":[363]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVEPENDING","features":[363]},{"name":"CM_NOTIFY_ACTION_MAX","features":[363]},{"name":"CM_NOTIFY_EVENT_DATA","features":[363]},{"name":"CM_NOTIFY_FILTER","features":[363,303]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_DEVICE_INSTANCES","features":[363]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_INTERFACE_CLASSES","features":[363]},{"name":"CM_NOTIFY_FILTER_TYPE","features":[363]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEHANDLE","features":[363]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINSTANCE","features":[363]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINTERFACE","features":[363]},{"name":"CM_NOTIFY_FILTER_TYPE_MAX","features":[363]},{"name":"CM_Next_Range","features":[363]},{"name":"CM_OPEN_CLASS_KEY_BITS","features":[363]},{"name":"CM_OPEN_CLASS_KEY_INSTALLER","features":[363]},{"name":"CM_OPEN_CLASS_KEY_INTERFACE","features":[363]},{"name":"CM_Open_Class_KeyA","features":[363,364]},{"name":"CM_Open_Class_KeyW","features":[363,364]},{"name":"CM_Open_Class_Key_ExA","features":[363,364]},{"name":"CM_Open_Class_Key_ExW","features":[363,364]},{"name":"CM_Open_DevNode_Key","features":[363,364]},{"name":"CM_Open_DevNode_Key_Ex","features":[363,364]},{"name":"CM_Open_Device_Interface_KeyA","features":[363,364]},{"name":"CM_Open_Device_Interface_KeyW","features":[363,364]},{"name":"CM_Open_Device_Interface_Key_ExA","features":[363,364]},{"name":"CM_Open_Device_Interface_Key_ExW","features":[363,364]},{"name":"CM_PROB","features":[363]},{"name":"CM_PROB_BIOS_TABLE","features":[363]},{"name":"CM_PROB_BOOT_CONFIG_CONFLICT","features":[363]},{"name":"CM_PROB_CANT_SHARE_IRQ","features":[363]},{"name":"CM_PROB_CONSOLE_LOCKED","features":[363]},{"name":"CM_PROB_DEVICE_NOT_THERE","features":[363]},{"name":"CM_PROB_DEVICE_RESET","features":[363]},{"name":"CM_PROB_DEVLOADER_FAILED","features":[363]},{"name":"CM_PROB_DEVLOADER_NOT_FOUND","features":[363]},{"name":"CM_PROB_DEVLOADER_NOT_READY","features":[363]},{"name":"CM_PROB_DISABLED","features":[363]},{"name":"CM_PROB_DISABLED_SERVICE","features":[363]},{"name":"CM_PROB_DRIVER_BLOCKED","features":[363]},{"name":"CM_PROB_DRIVER_FAILED_LOAD","features":[363]},{"name":"CM_PROB_DRIVER_FAILED_PRIOR_UNLOAD","features":[363]},{"name":"CM_PROB_DRIVER_SERVICE_KEY_INVALID","features":[363]},{"name":"CM_PROB_DUPLICATE_DEVICE","features":[363]},{"name":"CM_PROB_ENTRY_IS_WRONG_TYPE","features":[363]},{"name":"CM_PROB_FAILED_ADD","features":[363]},{"name":"CM_PROB_FAILED_DRIVER_ENTRY","features":[363]},{"name":"CM_PROB_FAILED_FILTER","features":[363]},{"name":"CM_PROB_FAILED_INSTALL","features":[363]},{"name":"CM_PROB_FAILED_POST_START","features":[363]},{"name":"CM_PROB_FAILED_START","features":[363]},{"name":"CM_PROB_GUEST_ASSIGNMENT_FAILED","features":[363]},{"name":"CM_PROB_HALTED","features":[363]},{"name":"CM_PROB_HARDWARE_DISABLED","features":[363]},{"name":"CM_PROB_HELD_FOR_EJECT","features":[363]},{"name":"CM_PROB_INVALID_DATA","features":[363]},{"name":"CM_PROB_IRQ_TRANSLATION_FAILED","features":[363]},{"name":"CM_PROB_LACKED_ARBITRATOR","features":[363]},{"name":"CM_PROB_LEGACY_SERVICE_NO_DEVICES","features":[363]},{"name":"CM_PROB_LIAR","features":[363]},{"name":"CM_PROB_MOVED","features":[363]},{"name":"CM_PROB_NEED_CLASS_CONFIG","features":[363]},{"name":"CM_PROB_NEED_RESTART","features":[363]},{"name":"CM_PROB_NORMAL_CONFLICT","features":[363]},{"name":"CM_PROB_NOT_CONFIGURED","features":[363]},{"name":"CM_PROB_NOT_VERIFIED","features":[363]},{"name":"CM_PROB_NO_SOFTCONFIG","features":[363]},{"name":"CM_PROB_NO_VALID_LOG_CONF","features":[363]},{"name":"CM_PROB_OUT_OF_MEMORY","features":[363]},{"name":"CM_PROB_PARTIAL_LOG_CONF","features":[363]},{"name":"CM_PROB_PHANTOM","features":[363]},{"name":"CM_PROB_REENUMERATION","features":[363]},{"name":"CM_PROB_REGISTRY","features":[363]},{"name":"CM_PROB_REGISTRY_TOO_LARGE","features":[363]},{"name":"CM_PROB_REINSTALL","features":[363]},{"name":"CM_PROB_SETPROPERTIES_FAILED","features":[363]},{"name":"CM_PROB_SYSTEM_SHUTDOWN","features":[363]},{"name":"CM_PROB_TOO_EARLY","features":[363]},{"name":"CM_PROB_TRANSLATION_FAILED","features":[363]},{"name":"CM_PROB_UNKNOWN_RESOURCE","features":[363]},{"name":"CM_PROB_UNSIGNED_DRIVER","features":[363]},{"name":"CM_PROB_USED_BY_DEBUGGER","features":[363]},{"name":"CM_PROB_VXDLDR","features":[363]},{"name":"CM_PROB_WAITING_ON_DEPENDENCY","features":[363]},{"name":"CM_PROB_WILL_BE_REMOVED","features":[363]},{"name":"CM_QUERY_ARBITRATOR_BITS","features":[363]},{"name":"CM_QUERY_ARBITRATOR_RAW","features":[363]},{"name":"CM_QUERY_ARBITRATOR_TRANSLATED","features":[363]},{"name":"CM_QUERY_REMOVE_UI_NOT_OK","features":[363]},{"name":"CM_QUERY_REMOVE_UI_OK","features":[363]},{"name":"CM_Query_And_Remove_SubTreeA","features":[363]},{"name":"CM_Query_And_Remove_SubTreeW","features":[363]},{"name":"CM_Query_And_Remove_SubTree_ExA","features":[363]},{"name":"CM_Query_And_Remove_SubTree_ExW","features":[363]},{"name":"CM_Query_Arbitrator_Free_Data","features":[363]},{"name":"CM_Query_Arbitrator_Free_Data_Ex","features":[363]},{"name":"CM_Query_Arbitrator_Free_Size","features":[363]},{"name":"CM_Query_Arbitrator_Free_Size_Ex","features":[363]},{"name":"CM_Query_Remove_SubTree","features":[363]},{"name":"CM_Query_Remove_SubTree_Ex","features":[363]},{"name":"CM_Query_Resource_Conflict_List","features":[363]},{"name":"CM_REENUMERATE_ASYNCHRONOUS","features":[363]},{"name":"CM_REENUMERATE_BITS","features":[363]},{"name":"CM_REENUMERATE_FLAGS","features":[363]},{"name":"CM_REENUMERATE_NORMAL","features":[363]},{"name":"CM_REENUMERATE_RETRY_INSTALLATION","features":[363]},{"name":"CM_REENUMERATE_SYNCHRONOUS","features":[363]},{"name":"CM_REGISTER_DEVICE_DRIVER_BITS","features":[363]},{"name":"CM_REGISTER_DEVICE_DRIVER_DISABLEABLE","features":[363]},{"name":"CM_REGISTER_DEVICE_DRIVER_REMOVABLE","features":[363]},{"name":"CM_REGISTER_DEVICE_DRIVER_STATIC","features":[363]},{"name":"CM_REGISTRY_BITS","features":[363]},{"name":"CM_REGISTRY_CONFIG","features":[363]},{"name":"CM_REGISTRY_HARDWARE","features":[363]},{"name":"CM_REGISTRY_SOFTWARE","features":[363]},{"name":"CM_REGISTRY_USER","features":[363]},{"name":"CM_REMOVAL_POLICY","features":[363]},{"name":"CM_REMOVAL_POLICY_EXPECT_NO_REMOVAL","features":[363]},{"name":"CM_REMOVAL_POLICY_EXPECT_ORDERLY_REMOVAL","features":[363]},{"name":"CM_REMOVAL_POLICY_EXPECT_SURPRISE_REMOVAL","features":[363]},{"name":"CM_REMOVE_BITS","features":[363]},{"name":"CM_REMOVE_DISABLE","features":[363]},{"name":"CM_REMOVE_NO_RESTART","features":[363]},{"name":"CM_REMOVE_UI_NOT_OK","features":[363]},{"name":"CM_REMOVE_UI_OK","features":[363]},{"name":"CM_RESDES_WIDTH_32","features":[363]},{"name":"CM_RESDES_WIDTH_64","features":[363]},{"name":"CM_RESDES_WIDTH_BITS","features":[363]},{"name":"CM_RESDES_WIDTH_DEFAULT","features":[363]},{"name":"CM_RESTYPE","features":[363]},{"name":"CM_Reenumerate_DevNode","features":[363]},{"name":"CM_Reenumerate_DevNode_Ex","features":[363]},{"name":"CM_Register_Device_Driver","features":[363]},{"name":"CM_Register_Device_Driver_Ex","features":[363]},{"name":"CM_Register_Device_InterfaceA","features":[363]},{"name":"CM_Register_Device_InterfaceW","features":[363]},{"name":"CM_Register_Device_Interface_ExA","features":[363]},{"name":"CM_Register_Device_Interface_ExW","features":[363]},{"name":"CM_Register_Notification","features":[363,303]},{"name":"CM_Remove_SubTree","features":[363]},{"name":"CM_Remove_SubTree_Ex","features":[363]},{"name":"CM_Request_Device_EjectA","features":[363]},{"name":"CM_Request_Device_EjectW","features":[363]},{"name":"CM_Request_Device_Eject_ExA","features":[363]},{"name":"CM_Request_Device_Eject_ExW","features":[363]},{"name":"CM_Request_Eject_PC","features":[363]},{"name":"CM_Request_Eject_PC_Ex","features":[363]},{"name":"CM_Run_Detection","features":[363]},{"name":"CM_Run_Detection_Ex","features":[363]},{"name":"CM_SETUP_BITS","features":[363]},{"name":"CM_SETUP_DEVINST_CONFIG","features":[363]},{"name":"CM_SETUP_DEVINST_CONFIG_CLASS","features":[363]},{"name":"CM_SETUP_DEVINST_CONFIG_EXTENSIONS","features":[363]},{"name":"CM_SETUP_DEVINST_CONFIG_RESET","features":[363]},{"name":"CM_SETUP_DEVINST_READY","features":[363]},{"name":"CM_SETUP_DEVINST_RESET","features":[363]},{"name":"CM_SETUP_DEVNODE_CONFIG","features":[363]},{"name":"CM_SETUP_DEVNODE_CONFIG_CLASS","features":[363]},{"name":"CM_SETUP_DEVNODE_CONFIG_EXTENSIONS","features":[363]},{"name":"CM_SETUP_DEVNODE_CONFIG_RESET","features":[363]},{"name":"CM_SETUP_DEVNODE_READY","features":[363]},{"name":"CM_SETUP_DEVNODE_RESET","features":[363]},{"name":"CM_SETUP_DOWNLOAD","features":[363]},{"name":"CM_SETUP_PROP_CHANGE","features":[363]},{"name":"CM_SETUP_WRITE_LOG_CONFS","features":[363]},{"name":"CM_SET_DEVINST_PROBLEM_BITS","features":[363]},{"name":"CM_SET_DEVINST_PROBLEM_NORMAL","features":[363]},{"name":"CM_SET_DEVINST_PROBLEM_OVERRIDE","features":[363]},{"name":"CM_SET_DEVNODE_PROBLEM_BITS","features":[363]},{"name":"CM_SET_DEVNODE_PROBLEM_NORMAL","features":[363]},{"name":"CM_SET_DEVNODE_PROBLEM_OVERRIDE","features":[363]},{"name":"CM_SET_HW_PROF_FLAGS_BITS","features":[363]},{"name":"CM_SET_HW_PROF_FLAGS_UI_NOT_OK","features":[363]},{"name":"CM_Set_Class_PropertyW","features":[363,336]},{"name":"CM_Set_Class_Property_ExW","features":[363,336]},{"name":"CM_Set_Class_Registry_PropertyA","features":[363]},{"name":"CM_Set_Class_Registry_PropertyW","features":[363]},{"name":"CM_Set_DevNode_Problem","features":[363]},{"name":"CM_Set_DevNode_Problem_Ex","features":[363]},{"name":"CM_Set_DevNode_PropertyW","features":[363,336]},{"name":"CM_Set_DevNode_Property_ExW","features":[363,336]},{"name":"CM_Set_DevNode_Registry_PropertyA","features":[363]},{"name":"CM_Set_DevNode_Registry_PropertyW","features":[363]},{"name":"CM_Set_DevNode_Registry_Property_ExA","features":[363]},{"name":"CM_Set_DevNode_Registry_Property_ExW","features":[363]},{"name":"CM_Set_Device_Interface_PropertyW","features":[363,336]},{"name":"CM_Set_Device_Interface_Property_ExW","features":[363,336]},{"name":"CM_Set_HW_Prof","features":[363]},{"name":"CM_Set_HW_Prof_Ex","features":[363]},{"name":"CM_Set_HW_Prof_FlagsA","features":[363]},{"name":"CM_Set_HW_Prof_FlagsW","features":[363]},{"name":"CM_Set_HW_Prof_Flags_ExA","features":[363]},{"name":"CM_Set_HW_Prof_Flags_ExW","features":[363]},{"name":"CM_Setup_DevNode","features":[363]},{"name":"CM_Setup_DevNode_Ex","features":[363]},{"name":"CM_Test_Range_Available","features":[363]},{"name":"CM_Uninstall_DevNode","features":[363]},{"name":"CM_Uninstall_DevNode_Ex","features":[363]},{"name":"CM_Unregister_Device_InterfaceA","features":[363]},{"name":"CM_Unregister_Device_InterfaceW","features":[363]},{"name":"CM_Unregister_Device_Interface_ExA","features":[363]},{"name":"CM_Unregister_Device_Interface_ExW","features":[363]},{"name":"CM_Unregister_Notification","features":[363]},{"name":"COINSTALLER_CONTEXT_DATA","features":[363,303]},{"name":"COINSTALLER_CONTEXT_DATA","features":[363,303]},{"name":"CONFIGFLAG_BOOT_DEVICE","features":[363]},{"name":"CONFIGFLAG_CANTSTOPACHILD","features":[363]},{"name":"CONFIGFLAG_DISABLED","features":[363]},{"name":"CONFIGFLAG_FAILEDINSTALL","features":[363]},{"name":"CONFIGFLAG_FINISHINSTALL_ACTION","features":[363]},{"name":"CONFIGFLAG_FINISHINSTALL_UI","features":[363]},{"name":"CONFIGFLAG_FINISH_INSTALL","features":[363]},{"name":"CONFIGFLAG_IGNORE_BOOT_LC","features":[363]},{"name":"CONFIGFLAG_MANUAL_INSTALL","features":[363]},{"name":"CONFIGFLAG_NEEDS_CLASS_CONFIG","features":[363]},{"name":"CONFIGFLAG_NEEDS_FORCED_CONFIG","features":[363]},{"name":"CONFIGFLAG_NETBOOT_CARD","features":[363]},{"name":"CONFIGFLAG_NET_BOOT","features":[363]},{"name":"CONFIGFLAG_NOREMOVEEXIT","features":[363]},{"name":"CONFIGFLAG_OKREMOVEROM","features":[363]},{"name":"CONFIGFLAG_PARTIAL_LOG_CONF","features":[363]},{"name":"CONFIGFLAG_REINSTALL","features":[363]},{"name":"CONFIGFLAG_REMOVED","features":[363]},{"name":"CONFIGFLAG_SUPPRESS_SURPRISE","features":[363]},{"name":"CONFIGFLAG_VERIFY_HARDWARE","features":[363]},{"name":"CONFIGMG_VERSION","features":[363]},{"name":"CONFIGRET","features":[363]},{"name":"CONFLICT_DETAILS_A","features":[363]},{"name":"CONFLICT_DETAILS_W","features":[363]},{"name":"CONNECTION_DES","features":[363]},{"name":"CONNECTION_RESOURCE","features":[363]},{"name":"COPYFLG_FORCE_FILE_IN_USE","features":[363]},{"name":"COPYFLG_IN_USE_TRY_RENAME","features":[363]},{"name":"COPYFLG_NODECOMP","features":[363]},{"name":"COPYFLG_NOPRUNE","features":[363]},{"name":"COPYFLG_NOSKIP","features":[363]},{"name":"COPYFLG_NOVERSIONCHECK","features":[363]},{"name":"COPYFLG_NO_OVERWRITE","features":[363]},{"name":"COPYFLG_NO_VERSION_DIALOG","features":[363]},{"name":"COPYFLG_OVERWRITE_OLDER_ONLY","features":[363]},{"name":"COPYFLG_PROTECTED_WINDOWS_DRIVER_FILE","features":[363]},{"name":"COPYFLG_REPLACEONLY","features":[363]},{"name":"COPYFLG_REPLACE_BOOT_FILE","features":[363]},{"name":"COPYFLG_WARN_IF_SKIP","features":[363]},{"name":"CR_ACCESS_DENIED","features":[363]},{"name":"CR_ALREADY_SUCH_DEVINST","features":[363]},{"name":"CR_ALREADY_SUCH_DEVNODE","features":[363]},{"name":"CR_APM_VETOED","features":[363]},{"name":"CR_BUFFER_SMALL","features":[363]},{"name":"CR_CALL_NOT_IMPLEMENTED","features":[363]},{"name":"CR_CANT_SHARE_IRQ","features":[363]},{"name":"CR_CREATE_BLOCKED","features":[363]},{"name":"CR_DEFAULT","features":[363]},{"name":"CR_DEVICE_INTERFACE_ACTIVE","features":[363]},{"name":"CR_DEVICE_NOT_THERE","features":[363]},{"name":"CR_DEVINST_HAS_REQS","features":[363]},{"name":"CR_DEVLOADER_NOT_READY","features":[363]},{"name":"CR_DEVNODE_HAS_REQS","features":[363]},{"name":"CR_DLVXD_NOT_FOUND","features":[363]},{"name":"CR_FAILURE","features":[363]},{"name":"CR_FREE_RESOURCES","features":[363]},{"name":"CR_INVALID_API","features":[363]},{"name":"CR_INVALID_ARBITRATOR","features":[363]},{"name":"CR_INVALID_CONFLICT_LIST","features":[363]},{"name":"CR_INVALID_DATA","features":[363]},{"name":"CR_INVALID_DEVICE_ID","features":[363]},{"name":"CR_INVALID_DEVINST","features":[363]},{"name":"CR_INVALID_DEVNODE","features":[363]},{"name":"CR_INVALID_FLAG","features":[363]},{"name":"CR_INVALID_INDEX","features":[363]},{"name":"CR_INVALID_LOAD_TYPE","features":[363]},{"name":"CR_INVALID_LOG_CONF","features":[363]},{"name":"CR_INVALID_MACHINENAME","features":[363]},{"name":"CR_INVALID_NODELIST","features":[363]},{"name":"CR_INVALID_POINTER","features":[363]},{"name":"CR_INVALID_PRIORITY","features":[363]},{"name":"CR_INVALID_PROPERTY","features":[363]},{"name":"CR_INVALID_RANGE","features":[363]},{"name":"CR_INVALID_RANGE_LIST","features":[363]},{"name":"CR_INVALID_REFERENCE_STRING","features":[363]},{"name":"CR_INVALID_RESOURCEID","features":[363]},{"name":"CR_INVALID_RES_DES","features":[363]},{"name":"CR_INVALID_STRUCTURE_SIZE","features":[363]},{"name":"CR_MACHINE_UNAVAILABLE","features":[363]},{"name":"CR_NEED_RESTART","features":[363]},{"name":"CR_NOT_DISABLEABLE","features":[363]},{"name":"CR_NOT_SYSTEM_VM","features":[363]},{"name":"CR_NO_ARBITRATOR","features":[363]},{"name":"CR_NO_CM_SERVICES","features":[363]},{"name":"CR_NO_DEPENDENT","features":[363]},{"name":"CR_NO_MORE_HW_PROFILES","features":[363]},{"name":"CR_NO_MORE_LOG_CONF","features":[363]},{"name":"CR_NO_MORE_RES_DES","features":[363]},{"name":"CR_NO_REGISTRY_HANDLE","features":[363]},{"name":"CR_NO_SUCH_DEVICE_INTERFACE","features":[363]},{"name":"CR_NO_SUCH_DEVINST","features":[363]},{"name":"CR_NO_SUCH_DEVNODE","features":[363]},{"name":"CR_NO_SUCH_LOGICAL_DEV","features":[363]},{"name":"CR_NO_SUCH_REGISTRY_KEY","features":[363]},{"name":"CR_NO_SUCH_VALUE","features":[363]},{"name":"CR_OUT_OF_MEMORY","features":[363]},{"name":"CR_QUERY_VETOED","features":[363]},{"name":"CR_REGISTRY_ERROR","features":[363]},{"name":"CR_REMOTE_COMM_FAILURE","features":[363]},{"name":"CR_REMOVE_VETOED","features":[363]},{"name":"CR_SAME_RESOURCES","features":[363]},{"name":"CR_SUCCESS","features":[363]},{"name":"CR_WRONG_TYPE","features":[363]},{"name":"CS_DES","features":[363]},{"name":"CS_RESOURCE","features":[363]},{"name":"DD_FLAGS","features":[363]},{"name":"DELFLG_IN_USE","features":[363]},{"name":"DELFLG_IN_USE1","features":[363]},{"name":"DEVPRIVATE_DES","features":[363]},{"name":"DEVPRIVATE_RANGE","features":[363]},{"name":"DEVPRIVATE_RESOURCE","features":[363]},{"name":"DIBCI_NODISPLAYCLASS","features":[363]},{"name":"DIBCI_NOINSTALLCLASS","features":[363]},{"name":"DICD_GENERATE_ID","features":[363]},{"name":"DICD_INHERIT_CLASSDRVS","features":[363]},{"name":"DICLASSPROP_INSTALLER","features":[363]},{"name":"DICLASSPROP_INTERFACE","features":[363]},{"name":"DICS_DISABLE","features":[363]},{"name":"DICS_ENABLE","features":[363]},{"name":"DICS_FLAG_CONFIGGENERAL","features":[363]},{"name":"DICS_FLAG_CONFIGSPECIFIC","features":[363]},{"name":"DICS_FLAG_GLOBAL","features":[363]},{"name":"DICS_PROPCHANGE","features":[363]},{"name":"DICS_START","features":[363]},{"name":"DICS_STOP","features":[363]},{"name":"DICUSTOMDEVPROP_MERGE_MULTISZ","features":[363]},{"name":"DIF_ADDPROPERTYPAGE_ADVANCED","features":[363]},{"name":"DIF_ADDPROPERTYPAGE_BASIC","features":[363]},{"name":"DIF_ADDREMOTEPROPERTYPAGE_ADVANCED","features":[363]},{"name":"DIF_ALLOW_INSTALL","features":[363]},{"name":"DIF_ASSIGNRESOURCES","features":[363]},{"name":"DIF_CALCDISKSPACE","features":[363]},{"name":"DIF_DESTROYPRIVATEDATA","features":[363]},{"name":"DIF_DESTROYWIZARDDATA","features":[363]},{"name":"DIF_DETECT","features":[363]},{"name":"DIF_DETECTCANCEL","features":[363]},{"name":"DIF_DETECTVERIFY","features":[363]},{"name":"DIF_ENABLECLASS","features":[363]},{"name":"DIF_FINISHINSTALL_ACTION","features":[363]},{"name":"DIF_FIRSTTIMESETUP","features":[363]},{"name":"DIF_FOUNDDEVICE","features":[363]},{"name":"DIF_INSTALLCLASSDRIVERS","features":[363]},{"name":"DIF_INSTALLDEVICE","features":[363]},{"name":"DIF_INSTALLDEVICEFILES","features":[363]},{"name":"DIF_INSTALLINTERFACES","features":[363]},{"name":"DIF_INSTALLWIZARD","features":[363]},{"name":"DIF_MOVEDEVICE","features":[363]},{"name":"DIF_NEWDEVICEWIZARD_FINISHINSTALL","features":[363]},{"name":"DIF_NEWDEVICEWIZARD_POSTANALYZE","features":[363]},{"name":"DIF_NEWDEVICEWIZARD_PREANALYZE","features":[363]},{"name":"DIF_NEWDEVICEWIZARD_PRESELECT","features":[363]},{"name":"DIF_NEWDEVICEWIZARD_SELECT","features":[363]},{"name":"DIF_POWERMESSAGEWAKE","features":[363]},{"name":"DIF_PROPERTIES","features":[363]},{"name":"DIF_PROPERTYCHANGE","features":[363]},{"name":"DIF_REGISTERDEVICE","features":[363]},{"name":"DIF_REGISTER_COINSTALLERS","features":[363]},{"name":"DIF_REMOVE","features":[363]},{"name":"DIF_RESERVED1","features":[363]},{"name":"DIF_RESERVED2","features":[363]},{"name":"DIF_SELECTBESTCOMPATDRV","features":[363]},{"name":"DIF_SELECTCLASSDRIVERS","features":[363]},{"name":"DIF_SELECTDEVICE","features":[363]},{"name":"DIF_TROUBLESHOOTER","features":[363]},{"name":"DIF_UNREMOVE","features":[363]},{"name":"DIF_UNUSED1","features":[363]},{"name":"DIF_UPDATEDRIVER_UI","features":[363]},{"name":"DIF_VALIDATECLASSDRIVERS","features":[363]},{"name":"DIF_VALIDATEDRIVER","features":[363]},{"name":"DIGCDP_FLAG_ADVANCED","features":[363]},{"name":"DIGCDP_FLAG_BASIC","features":[363]},{"name":"DIGCDP_FLAG_REMOTE_ADVANCED","features":[363]},{"name":"DIGCDP_FLAG_REMOTE_BASIC","features":[363]},{"name":"DIGCF_ALLCLASSES","features":[363]},{"name":"DIGCF_DEFAULT","features":[363]},{"name":"DIGCF_DEVICEINTERFACE","features":[363]},{"name":"DIGCF_INTERFACEDEVICE","features":[363]},{"name":"DIGCF_PRESENT","features":[363]},{"name":"DIGCF_PROFILE","features":[363]},{"name":"DIIDFLAG_BITS","features":[363]},{"name":"DIIDFLAG_INSTALLCOPYINFDRIVERS","features":[363]},{"name":"DIIDFLAG_INSTALLNULLDRIVER","features":[363]},{"name":"DIIDFLAG_NOFINISHINSTALLUI","features":[363]},{"name":"DIIDFLAG_SHOWSEARCHUI","features":[363]},{"name":"DIINSTALLDEVICE_FLAGS","features":[363]},{"name":"DIINSTALLDRIVER_FLAGS","features":[363]},{"name":"DIIRFLAG_BITS","features":[363]},{"name":"DIIRFLAG_FORCE_INF","features":[363]},{"name":"DIIRFLAG_HOTPATCH","features":[363]},{"name":"DIIRFLAG_HW_USING_THE_INF","features":[363]},{"name":"DIIRFLAG_INF_ALREADY_COPIED","features":[363]},{"name":"DIIRFLAG_INSTALL_AS_SET","features":[363]},{"name":"DIIRFLAG_NOBACKUP","features":[363]},{"name":"DIIRFLAG_PRE_CONFIGURE_INF","features":[363]},{"name":"DIIRFLAG_SYSTEM_BITS","features":[363]},{"name":"DIOCR_INSTALLER","features":[363]},{"name":"DIOCR_INTERFACE","features":[363]},{"name":"DIODI_NO_ADD","features":[363]},{"name":"DIOD_CANCEL_REMOVE","features":[363]},{"name":"DIOD_INHERIT_CLASSDRVS","features":[363]},{"name":"DIREG_BOTH","features":[363]},{"name":"DIREG_DEV","features":[363]},{"name":"DIREG_DRV","features":[363]},{"name":"DIRID_ABSOLUTE","features":[363]},{"name":"DIRID_ABSOLUTE_16BIT","features":[363]},{"name":"DIRID_APPS","features":[363]},{"name":"DIRID_BOOT","features":[363]},{"name":"DIRID_COLOR","features":[363]},{"name":"DIRID_COMMON_APPDATA","features":[363]},{"name":"DIRID_COMMON_DESKTOPDIRECTORY","features":[363]},{"name":"DIRID_COMMON_DOCUMENTS","features":[363]},{"name":"DIRID_COMMON_FAVORITES","features":[363]},{"name":"DIRID_COMMON_PROGRAMS","features":[363]},{"name":"DIRID_COMMON_STARTMENU","features":[363]},{"name":"DIRID_COMMON_STARTUP","features":[363]},{"name":"DIRID_COMMON_TEMPLATES","features":[363]},{"name":"DIRID_DEFAULT","features":[363]},{"name":"DIRID_DRIVERS","features":[363]},{"name":"DIRID_DRIVER_STORE","features":[363]},{"name":"DIRID_FONTS","features":[363]},{"name":"DIRID_HELP","features":[363]},{"name":"DIRID_INF","features":[363]},{"name":"DIRID_IOSUBSYS","features":[363]},{"name":"DIRID_LOADER","features":[363]},{"name":"DIRID_NULL","features":[363]},{"name":"DIRID_PRINTPROCESSOR","features":[363]},{"name":"DIRID_PROGRAM_FILES","features":[363]},{"name":"DIRID_PROGRAM_FILES_COMMON","features":[363]},{"name":"DIRID_PROGRAM_FILES_COMMONX86","features":[363]},{"name":"DIRID_PROGRAM_FILES_X86","features":[363]},{"name":"DIRID_SHARED","features":[363]},{"name":"DIRID_SPOOL","features":[363]},{"name":"DIRID_SPOOLDRIVERS","features":[363]},{"name":"DIRID_SRCPATH","features":[363]},{"name":"DIRID_SYSTEM","features":[363]},{"name":"DIRID_SYSTEM16","features":[363]},{"name":"DIRID_SYSTEM_X86","features":[363]},{"name":"DIRID_USER","features":[363]},{"name":"DIRID_USERPROFILE","features":[363]},{"name":"DIRID_VIEWERS","features":[363]},{"name":"DIRID_WINDOWS","features":[363]},{"name":"DIROLLBACKDRIVER_FLAGS","features":[363]},{"name":"DIUNINSTALLDRIVER_FLAGS","features":[363]},{"name":"DIURFLAG_NO_REMOVE_INF","features":[363]},{"name":"DIURFLAG_RESERVED","features":[363]},{"name":"DIURFLAG_VALID","features":[363]},{"name":"DI_AUTOASSIGNRES","features":[363]},{"name":"DI_CLASSINSTALLPARAMS","features":[363]},{"name":"DI_COMPAT_FROM_CLASS","features":[363]},{"name":"DI_DIDCLASS","features":[363]},{"name":"DI_DIDCOMPAT","features":[363]},{"name":"DI_DISABLED","features":[363]},{"name":"DI_DONOTCALLCONFIGMG","features":[363]},{"name":"DI_DRIVERPAGE_ADDED","features":[363]},{"name":"DI_ENUMSINGLEINF","features":[363]},{"name":"DI_FLAGSEX_ALLOWEXCLUDEDDRVS","features":[363]},{"name":"DI_FLAGSEX_ALTPLATFORM_DRVSEARCH","features":[363]},{"name":"DI_FLAGSEX_ALWAYSWRITEIDS","features":[363]},{"name":"DI_FLAGSEX_APPENDDRIVERLIST","features":[363]},{"name":"DI_FLAGSEX_BACKUPONREPLACE","features":[363]},{"name":"DI_FLAGSEX_CI_FAILED","features":[363]},{"name":"DI_FLAGSEX_DEVICECHANGE","features":[363]},{"name":"DI_FLAGSEX_DIDCOMPATINFO","features":[363]},{"name":"DI_FLAGSEX_DIDINFOLIST","features":[363]},{"name":"DI_FLAGSEX_DRIVERLIST_FROM_URL","features":[363]},{"name":"DI_FLAGSEX_EXCLUDE_OLD_INET_DRIVERS","features":[363]},{"name":"DI_FLAGSEX_FILTERCLASSES","features":[363]},{"name":"DI_FLAGSEX_FILTERSIMILARDRIVERS","features":[363]},{"name":"DI_FLAGSEX_FINISHINSTALL_ACTION","features":[363]},{"name":"DI_FLAGSEX_INET_DRIVER","features":[363]},{"name":"DI_FLAGSEX_INSTALLEDDRIVER","features":[363]},{"name":"DI_FLAGSEX_IN_SYSTEM_SETUP","features":[363]},{"name":"DI_FLAGSEX_NOUIONQUERYREMOVE","features":[363]},{"name":"DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE","features":[363]},{"name":"DI_FLAGSEX_NO_DRVREG_MODIFY","features":[363]},{"name":"DI_FLAGSEX_POWERPAGE_ADDED","features":[363]},{"name":"DI_FLAGSEX_PREINSTALLBACKUP","features":[363]},{"name":"DI_FLAGSEX_PROPCHANGE_PENDING","features":[363]},{"name":"DI_FLAGSEX_RECURSIVESEARCH","features":[363]},{"name":"DI_FLAGSEX_RESERVED1","features":[363]},{"name":"DI_FLAGSEX_RESERVED2","features":[363]},{"name":"DI_FLAGSEX_RESERVED3","features":[363]},{"name":"DI_FLAGSEX_RESERVED4","features":[363]},{"name":"DI_FLAGSEX_RESTART_DEVICE_ONLY","features":[363]},{"name":"DI_FLAGSEX_SEARCH_PUBLISHED_INFS","features":[363]},{"name":"DI_FLAGSEX_SETFAILEDINSTALL","features":[363]},{"name":"DI_FLAGSEX_USECLASSFORCOMPAT","features":[363]},{"name":"DI_FORCECOPY","features":[363]},{"name":"DI_FUNCTION","features":[363]},{"name":"DI_GENERALPAGE_ADDED","features":[363]},{"name":"DI_INF_IS_SORTED","features":[363]},{"name":"DI_INSTALLDISABLED","features":[363]},{"name":"DI_MULTMFGS","features":[363]},{"name":"DI_NEEDREBOOT","features":[363]},{"name":"DI_NEEDRESTART","features":[363]},{"name":"DI_NOBROWSE","features":[363]},{"name":"DI_NODI_DEFAULTACTION","features":[363]},{"name":"DI_NOFILECOPY","features":[363]},{"name":"DI_NOSELECTICONS","features":[363]},{"name":"DI_NOVCP","features":[363]},{"name":"DI_NOWRITE_IDS","features":[363]},{"name":"DI_OVERRIDE_INFFLAGS","features":[363]},{"name":"DI_PROPERTIES_CHANGE","features":[363]},{"name":"DI_PROPS_NOCHANGEUSAGE","features":[363]},{"name":"DI_QUIETINSTALL","features":[363]},{"name":"DI_REMOVEDEVICE_CONFIGSPECIFIC","features":[363]},{"name":"DI_REMOVEDEVICE_GLOBAL","features":[363]},{"name":"DI_RESOURCEPAGE_ADDED","features":[363]},{"name":"DI_SHOWALL","features":[363]},{"name":"DI_SHOWCLASS","features":[363]},{"name":"DI_SHOWCOMPAT","features":[363]},{"name":"DI_SHOWOEM","features":[363]},{"name":"DI_UNREMOVEDEVICE_CONFIGSPECIFIC","features":[363]},{"name":"DI_USECI_SELECTSTRINGS","features":[363]},{"name":"DMA_DES","features":[363]},{"name":"DMA_RANGE","features":[363]},{"name":"DMA_RESOURCE","features":[363]},{"name":"DMI_BKCOLOR","features":[363]},{"name":"DMI_MASK","features":[363]},{"name":"DMI_USERECT","features":[363]},{"name":"DNF_ALWAYSEXCLUDEFROMLIST","features":[363]},{"name":"DNF_AUTHENTICODE_SIGNED","features":[363]},{"name":"DNF_BAD_DRIVER","features":[363]},{"name":"DNF_BASIC_DRIVER","features":[363]},{"name":"DNF_CLASS_DRIVER","features":[363]},{"name":"DNF_COMPATIBLE_DRIVER","features":[363]},{"name":"DNF_DUPDESC","features":[363]},{"name":"DNF_DUPDRIVERVER","features":[363]},{"name":"DNF_DUPPROVIDER","features":[363]},{"name":"DNF_EXCLUDEFROMLIST","features":[363]},{"name":"DNF_INBOX_DRIVER","features":[363]},{"name":"DNF_INET_DRIVER","features":[363]},{"name":"DNF_INF_IS_SIGNED","features":[363]},{"name":"DNF_INSTALLEDDRIVER","features":[363]},{"name":"DNF_LEGACYINF","features":[363]},{"name":"DNF_NODRIVER","features":[363]},{"name":"DNF_OEM_F6_INF","features":[363]},{"name":"DNF_OLDDRIVER","features":[363]},{"name":"DNF_OLD_INET_DRIVER","features":[363]},{"name":"DNF_REQUESTADDITIONALSOFTWARE","features":[363]},{"name":"DNF_UNUSED1","features":[363]},{"name":"DNF_UNUSED2","features":[363]},{"name":"DNF_UNUSED_22","features":[363]},{"name":"DNF_UNUSED_23","features":[363]},{"name":"DNF_UNUSED_24","features":[363]},{"name":"DNF_UNUSED_25","features":[363]},{"name":"DNF_UNUSED_26","features":[363]},{"name":"DNF_UNUSED_27","features":[363]},{"name":"DNF_UNUSED_28","features":[363]},{"name":"DNF_UNUSED_29","features":[363]},{"name":"DNF_UNUSED_30","features":[363]},{"name":"DNF_UNUSED_31","features":[363]},{"name":"DN_APM_DRIVER","features":[363]},{"name":"DN_APM_ENUMERATOR","features":[363]},{"name":"DN_ARM_WAKEUP","features":[363]},{"name":"DN_BAD_PARTIAL","features":[363]},{"name":"DN_BOOT_LOG_PROB","features":[363]},{"name":"DN_CHANGEABLE_FLAGS","features":[363]},{"name":"DN_CHILD_WITH_INVALID_ID","features":[363]},{"name":"DN_DEVICE_DISCONNECTED","features":[363]},{"name":"DN_DISABLEABLE","features":[363]},{"name":"DN_DRIVER_BLOCKED","features":[363]},{"name":"DN_DRIVER_LOADED","features":[363]},{"name":"DN_ENUM_LOADED","features":[363]},{"name":"DN_FILTERED","features":[363]},{"name":"DN_HARDWARE_ENUM","features":[363]},{"name":"DN_HAS_MARK","features":[363]},{"name":"DN_HAS_PROBLEM","features":[363]},{"name":"DN_LEGACY_DRIVER","features":[363]},{"name":"DN_LIAR","features":[363]},{"name":"DN_MANUAL","features":[363]},{"name":"DN_MF_CHILD","features":[363]},{"name":"DN_MF_PARENT","features":[363]},{"name":"DN_MOVED","features":[363]},{"name":"DN_NEEDS_LOCKING","features":[363]},{"name":"DN_NEED_RESTART","features":[363]},{"name":"DN_NEED_TO_ENUM","features":[363]},{"name":"DN_NOT_FIRST_TIME","features":[363]},{"name":"DN_NOT_FIRST_TIMEE","features":[363]},{"name":"DN_NO_SHOW_IN_DM","features":[363]},{"name":"DN_NT_DRIVER","features":[363]},{"name":"DN_NT_ENUMERATOR","features":[363]},{"name":"DN_PRIVATE_PROBLEM","features":[363]},{"name":"DN_QUERY_REMOVE_ACTIVE","features":[363]},{"name":"DN_QUERY_REMOVE_PENDING","features":[363]},{"name":"DN_REBAL_CANDIDATE","features":[363]},{"name":"DN_REMOVABLE","features":[363]},{"name":"DN_ROOT_ENUMERATED","features":[363]},{"name":"DN_SILENT_INSTALL","features":[363]},{"name":"DN_STARTED","features":[363]},{"name":"DN_STOP_FREE_RES","features":[363]},{"name":"DN_WILL_BE_REMOVED","features":[363]},{"name":"DPROMPT_BUFFERTOOSMALL","features":[363]},{"name":"DPROMPT_CANCEL","features":[363]},{"name":"DPROMPT_OUTOFMEMORY","features":[363]},{"name":"DPROMPT_SKIPFILE","features":[363]},{"name":"DPROMPT_SUCCESS","features":[363]},{"name":"DRIVER_COMPATID_RANK","features":[363]},{"name":"DRIVER_HARDWAREID_MASK","features":[363]},{"name":"DRIVER_HARDWAREID_RANK","features":[363]},{"name":"DRIVER_UNTRUSTED_COMPATID_RANK","features":[363]},{"name":"DRIVER_UNTRUSTED_HARDWAREID_RANK","features":[363]},{"name":"DRIVER_UNTRUSTED_RANK","features":[363]},{"name":"DRIVER_W9X_SUSPECT_COMPATID_RANK","features":[363]},{"name":"DRIVER_W9X_SUSPECT_HARDWAREID_RANK","features":[363]},{"name":"DRIVER_W9X_SUSPECT_RANK","features":[363]},{"name":"DWORD_MAX","features":[363]},{"name":"DYNAWIZ_FLAG_ANALYZE_HANDLECONFLICT","features":[363]},{"name":"DYNAWIZ_FLAG_INSTALLDET_NEXT","features":[363]},{"name":"DYNAWIZ_FLAG_INSTALLDET_PREV","features":[363]},{"name":"DYNAWIZ_FLAG_PAGESADDED","features":[363]},{"name":"DiInstallDevice","features":[363,303]},{"name":"DiInstallDriverA","features":[363,303]},{"name":"DiInstallDriverW","features":[363,303]},{"name":"DiRollbackDriver","features":[363,303]},{"name":"DiShowUpdateDevice","features":[363,303]},{"name":"DiShowUpdateDriver","features":[363,303]},{"name":"DiUninstallDevice","features":[363,303]},{"name":"DiUninstallDriverA","features":[363,303]},{"name":"DiUninstallDriverW","features":[363,303]},{"name":"ENABLECLASS_FAILURE","features":[363]},{"name":"ENABLECLASS_QUERY","features":[363]},{"name":"ENABLECLASS_SUCCESS","features":[363]},{"name":"FILEOP_ABORT","features":[363]},{"name":"FILEOP_BACKUP","features":[363]},{"name":"FILEOP_COPY","features":[363]},{"name":"FILEOP_DELETE","features":[363]},{"name":"FILEOP_DOIT","features":[363]},{"name":"FILEOP_NEWPATH","features":[363]},{"name":"FILEOP_RENAME","features":[363]},{"name":"FILEOP_RETRY","features":[363]},{"name":"FILEOP_SKIP","features":[363]},{"name":"FILEPATHS_A","features":[363]},{"name":"FILEPATHS_A","features":[363]},{"name":"FILEPATHS_SIGNERINFO_A","features":[363]},{"name":"FILEPATHS_SIGNERINFO_A","features":[363]},{"name":"FILEPATHS_SIGNERINFO_W","features":[363]},{"name":"FILEPATHS_SIGNERINFO_W","features":[363]},{"name":"FILEPATHS_W","features":[363]},{"name":"FILEPATHS_W","features":[363]},{"name":"FILE_COMPRESSION_MSZIP","features":[363]},{"name":"FILE_COMPRESSION_NONE","features":[363]},{"name":"FILE_COMPRESSION_NTCAB","features":[363]},{"name":"FILE_COMPRESSION_WINLZA","features":[363]},{"name":"FILE_IN_CABINET_INFO_A","features":[363]},{"name":"FILE_IN_CABINET_INFO_A","features":[363]},{"name":"FILE_IN_CABINET_INFO_W","features":[363]},{"name":"FILE_IN_CABINET_INFO_W","features":[363]},{"name":"FILTERED_LOG_CONF","features":[363]},{"name":"FLG_ADDPROPERTY_AND","features":[363]},{"name":"FLG_ADDPROPERTY_APPEND","features":[363]},{"name":"FLG_ADDPROPERTY_NOCLOBBER","features":[363]},{"name":"FLG_ADDPROPERTY_OR","features":[363]},{"name":"FLG_ADDPROPERTY_OVERWRITEONLY","features":[363]},{"name":"FLG_ADDREG_32BITKEY","features":[363]},{"name":"FLG_ADDREG_64BITKEY","features":[363]},{"name":"FLG_ADDREG_APPEND","features":[363]},{"name":"FLG_ADDREG_BINVALUETYPE","features":[363]},{"name":"FLG_ADDREG_DELREG_BIT","features":[363]},{"name":"FLG_ADDREG_DELVAL","features":[363]},{"name":"FLG_ADDREG_KEYONLY","features":[363]},{"name":"FLG_ADDREG_KEYONLY_COMMON","features":[363]},{"name":"FLG_ADDREG_NOCLOBBER","features":[363]},{"name":"FLG_ADDREG_OVERWRITEONLY","features":[363]},{"name":"FLG_ADDREG_TYPE_EXPAND_SZ","features":[363]},{"name":"FLG_ADDREG_TYPE_MULTI_SZ","features":[363]},{"name":"FLG_ADDREG_TYPE_SZ","features":[363]},{"name":"FLG_BITREG_32BITKEY","features":[363]},{"name":"FLG_BITREG_64BITKEY","features":[363]},{"name":"FLG_BITREG_CLEARBITS","features":[363]},{"name":"FLG_BITREG_SETBITS","features":[363]},{"name":"FLG_DELPROPERTY_MULTI_SZ_DELSTRING","features":[363]},{"name":"FLG_DELREG_32BITKEY","features":[363]},{"name":"FLG_DELREG_64BITKEY","features":[363]},{"name":"FLG_DELREG_KEYONLY_COMMON","features":[363]},{"name":"FLG_DELREG_OPERATION_MASK","features":[363]},{"name":"FLG_DELREG_TYPE_EXPAND_SZ","features":[363]},{"name":"FLG_DELREG_TYPE_MULTI_SZ","features":[363]},{"name":"FLG_DELREG_TYPE_SZ","features":[363]},{"name":"FLG_DELREG_VALUE","features":[363]},{"name":"FLG_INI2REG_32BITKEY","features":[363]},{"name":"FLG_INI2REG_64BITKEY","features":[363]},{"name":"FLG_PROFITEM_CSIDL","features":[363]},{"name":"FLG_PROFITEM_CURRENTUSER","features":[363]},{"name":"FLG_PROFITEM_DELETE","features":[363]},{"name":"FLG_PROFITEM_GROUP","features":[363]},{"name":"FLG_REGSVR_DLLINSTALL","features":[363]},{"name":"FLG_REGSVR_DLLREGISTER","features":[363]},{"name":"FORCED_LOG_CONF","features":[363]},{"name":"GUID_ACPI_CMOS_INTERFACE_STANDARD","features":[363]},{"name":"GUID_ACPI_INTERFACE_STANDARD","features":[363]},{"name":"GUID_ACPI_INTERFACE_STANDARD2","features":[363]},{"name":"GUID_ACPI_PORT_RANGES_INTERFACE_STANDARD","features":[363]},{"name":"GUID_ACPI_REGS_INTERFACE_STANDARD","features":[363]},{"name":"GUID_AGP_TARGET_BUS_INTERFACE_STANDARD","features":[363]},{"name":"GUID_ARBITER_INTERFACE_STANDARD","features":[363]},{"name":"GUID_BUS_INTERFACE_STANDARD","features":[363]},{"name":"GUID_BUS_RESOURCE_UPDATE_INTERFACE","features":[363]},{"name":"GUID_BUS_TYPE_1394","features":[363]},{"name":"GUID_BUS_TYPE_ACPI","features":[363]},{"name":"GUID_BUS_TYPE_AVC","features":[363]},{"name":"GUID_BUS_TYPE_DOT4PRT","features":[363]},{"name":"GUID_BUS_TYPE_EISA","features":[363]},{"name":"GUID_BUS_TYPE_HID","features":[363]},{"name":"GUID_BUS_TYPE_INTERNAL","features":[363]},{"name":"GUID_BUS_TYPE_IRDA","features":[363]},{"name":"GUID_BUS_TYPE_ISAPNP","features":[363]},{"name":"GUID_BUS_TYPE_LPTENUM","features":[363]},{"name":"GUID_BUS_TYPE_MCA","features":[363]},{"name":"GUID_BUS_TYPE_PCI","features":[363]},{"name":"GUID_BUS_TYPE_PCMCIA","features":[363]},{"name":"GUID_BUS_TYPE_SCM","features":[363]},{"name":"GUID_BUS_TYPE_SD","features":[363]},{"name":"GUID_BUS_TYPE_SERENUM","features":[363]},{"name":"GUID_BUS_TYPE_SW_DEVICE","features":[363]},{"name":"GUID_BUS_TYPE_USB","features":[363]},{"name":"GUID_BUS_TYPE_USBPRINT","features":[363]},{"name":"GUID_D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[363]},{"name":"GUID_D3COLD_SUPPORT_INTERFACE","features":[363]},{"name":"GUID_DEVCLASS_1394","features":[363]},{"name":"GUID_DEVCLASS_1394DEBUG","features":[363]},{"name":"GUID_DEVCLASS_61883","features":[363]},{"name":"GUID_DEVCLASS_ADAPTER","features":[363]},{"name":"GUID_DEVCLASS_APMSUPPORT","features":[363]},{"name":"GUID_DEVCLASS_AVC","features":[363]},{"name":"GUID_DEVCLASS_BATTERY","features":[363]},{"name":"GUID_DEVCLASS_BIOMETRIC","features":[363]},{"name":"GUID_DEVCLASS_BLUETOOTH","features":[363]},{"name":"GUID_DEVCLASS_CAMERA","features":[363]},{"name":"GUID_DEVCLASS_CDROM","features":[363]},{"name":"GUID_DEVCLASS_COMPUTEACCELERATOR","features":[363]},{"name":"GUID_DEVCLASS_COMPUTER","features":[363]},{"name":"GUID_DEVCLASS_DECODER","features":[363]},{"name":"GUID_DEVCLASS_DISKDRIVE","features":[363]},{"name":"GUID_DEVCLASS_DISPLAY","features":[363]},{"name":"GUID_DEVCLASS_DOT4","features":[363]},{"name":"GUID_DEVCLASS_DOT4PRINT","features":[363]},{"name":"GUID_DEVCLASS_EHSTORAGESILO","features":[363]},{"name":"GUID_DEVCLASS_ENUM1394","features":[363]},{"name":"GUID_DEVCLASS_EXTENSION","features":[363]},{"name":"GUID_DEVCLASS_FDC","features":[363]},{"name":"GUID_DEVCLASS_FIRMWARE","features":[363]},{"name":"GUID_DEVCLASS_FLOPPYDISK","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_ACTIVITYMONITOR","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_ANTIVIRUS","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_BOTTOM","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_CFSMETADATASERVER","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_COMPRESSION","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_CONTENTSCREENER","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_CONTINUOUSBACKUP","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_COPYPROTECTION","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_ENCRYPTION","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_HSM","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_INFRASTRUCTURE","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_OPENFILEBACKUP","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAMANAGEMENT","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_QUOTAMANAGEMENT","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_REPLICATION","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_SECURITYENHANCER","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEM","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEMRECOVERY","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_TOP","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_UNDELETE","features":[363]},{"name":"GUID_DEVCLASS_FSFILTER_VIRTUALIZATION","features":[363]},{"name":"GUID_DEVCLASS_GENERIC","features":[363]},{"name":"GUID_DEVCLASS_GPS","features":[363]},{"name":"GUID_DEVCLASS_HDC","features":[363]},{"name":"GUID_DEVCLASS_HIDCLASS","features":[363]},{"name":"GUID_DEVCLASS_HOLOGRAPHIC","features":[363]},{"name":"GUID_DEVCLASS_IMAGE","features":[363]},{"name":"GUID_DEVCLASS_INFINIBAND","features":[363]},{"name":"GUID_DEVCLASS_INFRARED","features":[363]},{"name":"GUID_DEVCLASS_KEYBOARD","features":[363]},{"name":"GUID_DEVCLASS_LEGACYDRIVER","features":[363]},{"name":"GUID_DEVCLASS_MEDIA","features":[363]},{"name":"GUID_DEVCLASS_MEDIUM_CHANGER","features":[363]},{"name":"GUID_DEVCLASS_MEMORY","features":[363]},{"name":"GUID_DEVCLASS_MODEM","features":[363]},{"name":"GUID_DEVCLASS_MONITOR","features":[363]},{"name":"GUID_DEVCLASS_MOUSE","features":[363]},{"name":"GUID_DEVCLASS_MTD","features":[363]},{"name":"GUID_DEVCLASS_MULTIFUNCTION","features":[363]},{"name":"GUID_DEVCLASS_MULTIPORTSERIAL","features":[363]},{"name":"GUID_DEVCLASS_NET","features":[363]},{"name":"GUID_DEVCLASS_NETCLIENT","features":[363]},{"name":"GUID_DEVCLASS_NETDRIVER","features":[363]},{"name":"GUID_DEVCLASS_NETSERVICE","features":[363]},{"name":"GUID_DEVCLASS_NETTRANS","features":[363]},{"name":"GUID_DEVCLASS_NETUIO","features":[363]},{"name":"GUID_DEVCLASS_NODRIVER","features":[363]},{"name":"GUID_DEVCLASS_PCMCIA","features":[363]},{"name":"GUID_DEVCLASS_PNPPRINTERS","features":[363]},{"name":"GUID_DEVCLASS_PORTS","features":[363]},{"name":"GUID_DEVCLASS_PRIMITIVE","features":[363]},{"name":"GUID_DEVCLASS_PRINTER","features":[363]},{"name":"GUID_DEVCLASS_PRINTERUPGRADE","features":[363]},{"name":"GUID_DEVCLASS_PRINTQUEUE","features":[363]},{"name":"GUID_DEVCLASS_PROCESSOR","features":[363]},{"name":"GUID_DEVCLASS_SBP2","features":[363]},{"name":"GUID_DEVCLASS_SCMDISK","features":[363]},{"name":"GUID_DEVCLASS_SCMVOLUME","features":[363]},{"name":"GUID_DEVCLASS_SCSIADAPTER","features":[363]},{"name":"GUID_DEVCLASS_SECURITYACCELERATOR","features":[363]},{"name":"GUID_DEVCLASS_SENSOR","features":[363]},{"name":"GUID_DEVCLASS_SIDESHOW","features":[363]},{"name":"GUID_DEVCLASS_SMARTCARDREADER","features":[363]},{"name":"GUID_DEVCLASS_SMRDISK","features":[363]},{"name":"GUID_DEVCLASS_SMRVOLUME","features":[363]},{"name":"GUID_DEVCLASS_SOFTWARECOMPONENT","features":[363]},{"name":"GUID_DEVCLASS_SOUND","features":[363]},{"name":"GUID_DEVCLASS_SYSTEM","features":[363]},{"name":"GUID_DEVCLASS_TAPEDRIVE","features":[363]},{"name":"GUID_DEVCLASS_UCM","features":[363]},{"name":"GUID_DEVCLASS_UNKNOWN","features":[363]},{"name":"GUID_DEVCLASS_USB","features":[363]},{"name":"GUID_DEVCLASS_VOLUME","features":[363]},{"name":"GUID_DEVCLASS_VOLUMESNAPSHOT","features":[363]},{"name":"GUID_DEVCLASS_WCEUSBS","features":[363]},{"name":"GUID_DEVCLASS_WPD","features":[363]},{"name":"GUID_DEVICE_INTERFACE_ARRIVAL","features":[363]},{"name":"GUID_DEVICE_INTERFACE_REMOVAL","features":[363]},{"name":"GUID_DEVICE_RESET_INTERFACE_STANDARD","features":[363]},{"name":"GUID_DMA_CACHE_COHERENCY_INTERFACE","features":[363]},{"name":"GUID_HWPROFILE_CHANGE_CANCELLED","features":[363]},{"name":"GUID_HWPROFILE_CHANGE_COMPLETE","features":[363]},{"name":"GUID_HWPROFILE_QUERY_CHANGE","features":[363]},{"name":"GUID_INT_ROUTE_INTERFACE_STANDARD","features":[363]},{"name":"GUID_IOMMU_BUS_INTERFACE","features":[363]},{"name":"GUID_KERNEL_SOFT_RESTART_CANCEL","features":[363]},{"name":"GUID_KERNEL_SOFT_RESTART_FINALIZE","features":[363]},{"name":"GUID_KERNEL_SOFT_RESTART_PREPARE","features":[363]},{"name":"GUID_LEGACY_DEVICE_DETECTION_STANDARD","features":[363]},{"name":"GUID_MF_ENUMERATION_INTERFACE","features":[363]},{"name":"GUID_MSIX_TABLE_CONFIG_INTERFACE","features":[363]},{"name":"GUID_NPEM_CONTROL_INTERFACE","features":[363]},{"name":"GUID_PARTITION_UNIT_INTERFACE_STANDARD","features":[363]},{"name":"GUID_PCC_INTERFACE_INTERNAL","features":[363]},{"name":"GUID_PCC_INTERFACE_STANDARD","features":[363]},{"name":"GUID_PCI_ATS_INTERFACE","features":[363]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD","features":[363]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD2","features":[363]},{"name":"GUID_PCI_DEVICE_PRESENT_INTERFACE","features":[363]},{"name":"GUID_PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[363]},{"name":"GUID_PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[363]},{"name":"GUID_PCI_FPGA_CONTROL_INTERFACE","features":[363]},{"name":"GUID_PCI_PTM_CONTROL_INTERFACE","features":[363]},{"name":"GUID_PCI_SECURITY_INTERFACE","features":[363]},{"name":"GUID_PCI_VIRTUALIZATION_INTERFACE","features":[363]},{"name":"GUID_PCMCIA_BUS_INTERFACE_STANDARD","features":[363]},{"name":"GUID_PNP_CUSTOM_NOTIFICATION","features":[363]},{"name":"GUID_PNP_EXTENDED_ADDRESS_INTERFACE","features":[363]},{"name":"GUID_PNP_LOCATION_INTERFACE","features":[363]},{"name":"GUID_PNP_POWER_NOTIFICATION","features":[363]},{"name":"GUID_PNP_POWER_SETTING_CHANGE","features":[363]},{"name":"GUID_POWER_DEVICE_ENABLE","features":[363]},{"name":"GUID_POWER_DEVICE_TIMEOUTS","features":[363]},{"name":"GUID_POWER_DEVICE_WAKE_ENABLE","features":[363]},{"name":"GUID_PROCESSOR_PCC_INTERFACE_STANDARD","features":[363]},{"name":"GUID_QUERY_CRASHDUMP_FUNCTIONS","features":[363]},{"name":"GUID_RECOVERY_NVMED_PREPARE_SHUTDOWN","features":[363]},{"name":"GUID_RECOVERY_PCI_PREPARE_SHUTDOWN","features":[363]},{"name":"GUID_REENUMERATE_SELF_INTERFACE_STANDARD","features":[363]},{"name":"GUID_SCM_BUS_INTERFACE","features":[363]},{"name":"GUID_SCM_BUS_LD_INTERFACE","features":[363]},{"name":"GUID_SCM_BUS_NVD_INTERFACE","features":[363]},{"name":"GUID_SCM_PHYSICAL_NVDIMM_INTERFACE","features":[363]},{"name":"GUID_SDEV_IDENTIFIER_INTERFACE","features":[363]},{"name":"GUID_SECURE_DRIVER_INTERFACE","features":[363]},{"name":"GUID_TARGET_DEVICE_QUERY_REMOVE","features":[363]},{"name":"GUID_TARGET_DEVICE_REMOVE_CANCELLED","features":[363]},{"name":"GUID_TARGET_DEVICE_REMOVE_COMPLETE","features":[363]},{"name":"GUID_TARGET_DEVICE_TRANSPORT_RELATIONS_CHANGED","features":[363]},{"name":"GUID_THERMAL_COOLING_INTERFACE","features":[363]},{"name":"GUID_TRANSLATOR_INTERFACE_STANDARD","features":[363]},{"name":"GUID_WUDF_DEVICE_HOST_PROBLEM","features":[363]},{"name":"HCMNOTIFICATION","features":[363]},{"name":"HDEVINFO","features":[363]},{"name":"HWPROFILEINFO_A","features":[363]},{"name":"HWPROFILEINFO_W","features":[363]},{"name":"IDD_DYNAWIZ_ANALYZEDEV_PAGE","features":[363]},{"name":"IDD_DYNAWIZ_ANALYZE_NEXTPAGE","features":[363]},{"name":"IDD_DYNAWIZ_ANALYZE_PREVPAGE","features":[363]},{"name":"IDD_DYNAWIZ_FIRSTPAGE","features":[363]},{"name":"IDD_DYNAWIZ_INSTALLDETECTEDDEVS_PAGE","features":[363]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NEXTPAGE","features":[363]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NODEVS","features":[363]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_PREVPAGE","features":[363]},{"name":"IDD_DYNAWIZ_SELECTCLASS_PAGE","features":[363]},{"name":"IDD_DYNAWIZ_SELECTDEV_PAGE","features":[363]},{"name":"IDD_DYNAWIZ_SELECT_NEXTPAGE","features":[363]},{"name":"IDD_DYNAWIZ_SELECT_PREVPAGE","features":[363]},{"name":"IDF_CHECKFIRST","features":[363]},{"name":"IDF_NOBEEP","features":[363]},{"name":"IDF_NOBROWSE","features":[363]},{"name":"IDF_NOCOMPRESSED","features":[363]},{"name":"IDF_NODETAILS","features":[363]},{"name":"IDF_NOFOREGROUND","features":[363]},{"name":"IDF_NOREMOVABLEMEDIAPROMPT","features":[363]},{"name":"IDF_NOSKIP","features":[363]},{"name":"IDF_OEMDISK","features":[363]},{"name":"IDF_USEDISKNAMEASPROMPT","features":[363]},{"name":"IDF_WARNIFSKIP","features":[363]},{"name":"IDI_CLASSICON_OVERLAYFIRST","features":[363]},{"name":"IDI_CLASSICON_OVERLAYLAST","features":[363]},{"name":"IDI_CONFLICT","features":[363]},{"name":"IDI_DISABLED_OVL","features":[363]},{"name":"IDI_FORCED_OVL","features":[363]},{"name":"IDI_PROBLEM_OVL","features":[363]},{"name":"IDI_RESOURCE","features":[363]},{"name":"IDI_RESOURCEFIRST","features":[363]},{"name":"IDI_RESOURCELAST","features":[363]},{"name":"IDI_RESOURCEOVERLAYFIRST","features":[363]},{"name":"IDI_RESOURCEOVERLAYLAST","features":[363]},{"name":"INFCONTEXT","features":[363]},{"name":"INFCONTEXT","features":[363]},{"name":"INFINFO_DEFAULT_SEARCH","features":[363]},{"name":"INFINFO_INF_NAME_IS_ABSOLUTE","features":[363]},{"name":"INFINFO_INF_PATH_LIST_SEARCH","features":[363]},{"name":"INFINFO_INF_SPEC_IS_HINF","features":[363]},{"name":"INFINFO_REVERSE_DEFAULT_SEARCH","features":[363]},{"name":"INFSTR_BUS_ALL","features":[363]},{"name":"INFSTR_BUS_EISA","features":[363]},{"name":"INFSTR_BUS_ISA","features":[363]},{"name":"INFSTR_BUS_MCA","features":[363]},{"name":"INFSTR_CFGPRI_DESIRED","features":[363]},{"name":"INFSTR_CFGPRI_DISABLED","features":[363]},{"name":"INFSTR_CFGPRI_FORCECONFIG","features":[363]},{"name":"INFSTR_CFGPRI_HARDRECONFIG","features":[363]},{"name":"INFSTR_CFGPRI_HARDWIRED","features":[363]},{"name":"INFSTR_CFGPRI_NORMAL","features":[363]},{"name":"INFSTR_CFGPRI_POWEROFF","features":[363]},{"name":"INFSTR_CFGPRI_REBOOT","features":[363]},{"name":"INFSTR_CFGPRI_RESTART","features":[363]},{"name":"INFSTR_CFGPRI_SUBOPTIMAL","features":[363]},{"name":"INFSTR_CFGTYPE_BASIC","features":[363]},{"name":"INFSTR_CFGTYPE_FORCED","features":[363]},{"name":"INFSTR_CFGTYPE_OVERRIDE","features":[363]},{"name":"INFSTR_CLASS_SAFEEXCL","features":[363]},{"name":"INFSTR_CONTROLFLAGS_SECTION","features":[363]},{"name":"INFSTR_DRIVERSELECT_FUNCTIONS","features":[363]},{"name":"INFSTR_DRIVERSELECT_SECTION","features":[363]},{"name":"INFSTR_DRIVERVERSION_SECTION","features":[363]},{"name":"INFSTR_KEY_ACTION","features":[363]},{"name":"INFSTR_KEY_ALWAYSEXCLUDEFROMSELECT","features":[363]},{"name":"INFSTR_KEY_BUFFER_SIZE","features":[363]},{"name":"INFSTR_KEY_CATALOGFILE","features":[363]},{"name":"INFSTR_KEY_CHANNEL_ACCESS","features":[363]},{"name":"INFSTR_KEY_CHANNEL_ENABLED","features":[363]},{"name":"INFSTR_KEY_CHANNEL_ISOLATION","features":[363]},{"name":"INFSTR_KEY_CHANNEL_VALUE","features":[363]},{"name":"INFSTR_KEY_CLASS","features":[363]},{"name":"INFSTR_KEY_CLASSGUID","features":[363]},{"name":"INFSTR_KEY_CLOCK_TYPE","features":[363]},{"name":"INFSTR_KEY_CONFIGPRIORITY","features":[363]},{"name":"INFSTR_KEY_COPYFILESONLY","features":[363]},{"name":"INFSTR_KEY_DATA_ITEM","features":[363]},{"name":"INFSTR_KEY_DELAYEDAUTOSTART","features":[363]},{"name":"INFSTR_KEY_DEPENDENCIES","features":[363]},{"name":"INFSTR_KEY_DESCRIPTION","features":[363]},{"name":"INFSTR_KEY_DETECTLIST","features":[363]},{"name":"INFSTR_KEY_DETPARAMS","features":[363]},{"name":"INFSTR_KEY_DISABLE_REALTIME_PERSISTENCE","features":[363]},{"name":"INFSTR_KEY_DISPLAYNAME","features":[363]},{"name":"INFSTR_KEY_DMA","features":[363]},{"name":"INFSTR_KEY_DMACONFIG","features":[363]},{"name":"INFSTR_KEY_DRIVERSET","features":[363]},{"name":"INFSTR_KEY_ENABLED","features":[363]},{"name":"INFSTR_KEY_ENABLE_FLAGS","features":[363]},{"name":"INFSTR_KEY_ENABLE_LEVEL","features":[363]},{"name":"INFSTR_KEY_ENABLE_PROPERTY","features":[363]},{"name":"INFSTR_KEY_ERRORCONTROL","features":[363]},{"name":"INFSTR_KEY_EXCLUDEFROMSELECT","features":[363]},{"name":"INFSTR_KEY_EXCLUDERES","features":[363]},{"name":"INFSTR_KEY_EXTENSIONID","features":[363]},{"name":"INFSTR_KEY_FAILURE_ACTION","features":[363]},{"name":"INFSTR_KEY_FILE_MAX","features":[363]},{"name":"INFSTR_KEY_FILE_NAME","features":[363]},{"name":"INFSTR_KEY_FLUSH_TIMER","features":[363]},{"name":"INFSTR_KEY_FROMINET","features":[363]},{"name":"INFSTR_KEY_HARDWARE_CLASS","features":[363]},{"name":"INFSTR_KEY_HARDWARE_CLASSGUID","features":[363]},{"name":"INFSTR_KEY_INTERACTIVEINSTALL","features":[363]},{"name":"INFSTR_KEY_IO","features":[363]},{"name":"INFSTR_KEY_IOCONFIG","features":[363]},{"name":"INFSTR_KEY_IRQ","features":[363]},{"name":"INFSTR_KEY_IRQCONFIG","features":[363]},{"name":"INFSTR_KEY_LOADORDERGROUP","features":[363]},{"name":"INFSTR_KEY_LOGGING_AUTOBACKUP","features":[363]},{"name":"INFSTR_KEY_LOGGING_MAXSIZE","features":[363]},{"name":"INFSTR_KEY_LOGGING_RETENTION","features":[363]},{"name":"INFSTR_KEY_LOG_FILE_MODE","features":[363]},{"name":"INFSTR_KEY_MATCH_ALL_KEYWORD","features":[363]},{"name":"INFSTR_KEY_MATCH_ANY_KEYWORD","features":[363]},{"name":"INFSTR_KEY_MAXIMUM_BUFFERS","features":[363]},{"name":"INFSTR_KEY_MAX_FILE_SIZE","features":[363]},{"name":"INFSTR_KEY_MEM","features":[363]},{"name":"INFSTR_KEY_MEMCONFIG","features":[363]},{"name":"INFSTR_KEY_MEMLARGECONFIG","features":[363]},{"name":"INFSTR_KEY_MESSAGE_FILE","features":[363]},{"name":"INFSTR_KEY_MFCARDCONFIG","features":[363]},{"name":"INFSTR_KEY_MINIMUM_BUFFERS","features":[363]},{"name":"INFSTR_KEY_NAME","features":[363]},{"name":"INFSTR_KEY_NON_CRASH_FAILURES","features":[363]},{"name":"INFSTR_KEY_NOSETUPINF","features":[363]},{"name":"INFSTR_KEY_PARAMETER_FILE","features":[363]},{"name":"INFSTR_KEY_PATH","features":[363]},{"name":"INFSTR_KEY_PCCARDCONFIG","features":[363]},{"name":"INFSTR_KEY_PNPLOCKDOWN","features":[363]},{"name":"INFSTR_KEY_PROVIDER","features":[363]},{"name":"INFSTR_KEY_PROVIDER_NAME","features":[363]},{"name":"INFSTR_KEY_REQUESTADDITIONALSOFTWARE","features":[363]},{"name":"INFSTR_KEY_REQUIREDPRIVILEGES","features":[363]},{"name":"INFSTR_KEY_RESET_PERIOD","features":[363]},{"name":"INFSTR_KEY_RESOURCE_FILE","features":[363]},{"name":"INFSTR_KEY_SECURITY","features":[363]},{"name":"INFSTR_KEY_SERVICEBINARY","features":[363]},{"name":"INFSTR_KEY_SERVICESIDTYPE","features":[363]},{"name":"INFSTR_KEY_SERVICETYPE","features":[363]},{"name":"INFSTR_KEY_SIGNATURE","features":[363]},{"name":"INFSTR_KEY_SKIPLIST","features":[363]},{"name":"INFSTR_KEY_START","features":[363]},{"name":"INFSTR_KEY_STARTNAME","features":[363]},{"name":"INFSTR_KEY_STARTTYPE","features":[363]},{"name":"INFSTR_KEY_SUB_TYPE","features":[363]},{"name":"INFSTR_KEY_TRIGGER_TYPE","features":[363]},{"name":"INFSTR_PLATFORM_NT","features":[363]},{"name":"INFSTR_PLATFORM_NTALPHA","features":[363]},{"name":"INFSTR_PLATFORM_NTAMD64","features":[363]},{"name":"INFSTR_PLATFORM_NTARM","features":[363]},{"name":"INFSTR_PLATFORM_NTARM64","features":[363]},{"name":"INFSTR_PLATFORM_NTAXP64","features":[363]},{"name":"INFSTR_PLATFORM_NTIA64","features":[363]},{"name":"INFSTR_PLATFORM_NTMIPS","features":[363]},{"name":"INFSTR_PLATFORM_NTPPC","features":[363]},{"name":"INFSTR_PLATFORM_NTX86","features":[363]},{"name":"INFSTR_PLATFORM_WIN","features":[363]},{"name":"INFSTR_REBOOT","features":[363]},{"name":"INFSTR_RESTART","features":[363]},{"name":"INFSTR_RISK_BIOSROMRD","features":[363]},{"name":"INFSTR_RISK_DELICATE","features":[363]},{"name":"INFSTR_RISK_IORD","features":[363]},{"name":"INFSTR_RISK_IOWR","features":[363]},{"name":"INFSTR_RISK_LOW","features":[363]},{"name":"INFSTR_RISK_MEMRD","features":[363]},{"name":"INFSTR_RISK_MEMWR","features":[363]},{"name":"INFSTR_RISK_NONE","features":[363]},{"name":"INFSTR_RISK_QUERYDRV","features":[363]},{"name":"INFSTR_RISK_SWINT","features":[363]},{"name":"INFSTR_RISK_UNRELIABLE","features":[363]},{"name":"INFSTR_RISK_VERYHIGH","features":[363]},{"name":"INFSTR_RISK_VERYLOW","features":[363]},{"name":"INFSTR_SECT_AUTOEXECBAT","features":[363]},{"name":"INFSTR_SECT_AVOIDCFGSYSDEV","features":[363]},{"name":"INFSTR_SECT_AVOIDENVDEV","features":[363]},{"name":"INFSTR_SECT_AVOIDINIDEV","features":[363]},{"name":"INFSTR_SECT_BADACPIBIOS","features":[363]},{"name":"INFSTR_SECT_BADDISKBIOS","features":[363]},{"name":"INFSTR_SECT_BADDSBIOS","features":[363]},{"name":"INFSTR_SECT_BADPMCALLBIOS","features":[363]},{"name":"INFSTR_SECT_BADPNPBIOS","features":[363]},{"name":"INFSTR_SECT_BADRMCALLBIOS","features":[363]},{"name":"INFSTR_SECT_BADROUTINGTABLEBIOS","features":[363]},{"name":"INFSTR_SECT_CFGSYS","features":[363]},{"name":"INFSTR_SECT_CLASS_INSTALL","features":[363]},{"name":"INFSTR_SECT_CLASS_INSTALL_32","features":[363]},{"name":"INFSTR_SECT_DEFAULT_INSTALL","features":[363]},{"name":"INFSTR_SECT_DEFAULT_UNINSTALL","features":[363]},{"name":"INFSTR_SECT_DETCLASSINFO","features":[363]},{"name":"INFSTR_SECT_DETMODULES","features":[363]},{"name":"INFSTR_SECT_DETOPTIONS","features":[363]},{"name":"INFSTR_SECT_DEVINFS","features":[363]},{"name":"INFSTR_SECT_DISPLAY_CLEANUP","features":[363]},{"name":"INFSTR_SECT_EXTENSIONCONTRACTS","features":[363]},{"name":"INFSTR_SECT_FORCEHWVERIFY","features":[363]},{"name":"INFSTR_SECT_GOODACPIBIOS","features":[363]},{"name":"INFSTR_SECT_HPOMNIBOOK","features":[363]},{"name":"INFSTR_SECT_INTERFACE_INSTALL_32","features":[363]},{"name":"INFSTR_SECT_MACHINEIDBIOS","features":[363]},{"name":"INFSTR_SECT_MANUALDEV","features":[363]},{"name":"INFSTR_SECT_MFG","features":[363]},{"name":"INFSTR_SECT_REGCFGSYSDEV","features":[363]},{"name":"INFSTR_SECT_REGENVDEV","features":[363]},{"name":"INFSTR_SECT_REGINIDEV","features":[363]},{"name":"INFSTR_SECT_SYSINI","features":[363]},{"name":"INFSTR_SECT_SYSINIDRV","features":[363]},{"name":"INFSTR_SECT_TARGETCOMPUTERS","features":[363]},{"name":"INFSTR_SECT_VERSION","features":[363]},{"name":"INFSTR_SECT_WININIRUN","features":[363]},{"name":"INFSTR_SOFTWAREVERSION_SECTION","features":[363]},{"name":"INFSTR_STRKEY_DRVDESC","features":[363]},{"name":"INFSTR_SUBKEY_COINSTALLERS","features":[363]},{"name":"INFSTR_SUBKEY_CTL","features":[363]},{"name":"INFSTR_SUBKEY_DET","features":[363]},{"name":"INFSTR_SUBKEY_EVENTS","features":[363]},{"name":"INFSTR_SUBKEY_FACTDEF","features":[363]},{"name":"INFSTR_SUBKEY_FILTERS","features":[363]},{"name":"INFSTR_SUBKEY_HW","features":[363]},{"name":"INFSTR_SUBKEY_INTERFACES","features":[363]},{"name":"INFSTR_SUBKEY_LOGCONFIG","features":[363]},{"name":"INFSTR_SUBKEY_LOGCONFIGOVERRIDE","features":[363]},{"name":"INFSTR_SUBKEY_NORESOURCEDUPS","features":[363]},{"name":"INFSTR_SUBKEY_POSSIBLEDUPS","features":[363]},{"name":"INFSTR_SUBKEY_SERVICES","features":[363]},{"name":"INFSTR_SUBKEY_SOFTWARE","features":[363]},{"name":"INFSTR_SUBKEY_WMI","features":[363]},{"name":"INF_STYLE","features":[363]},{"name":"INF_STYLE_CACHE_DISABLE","features":[363]},{"name":"INF_STYLE_CACHE_ENABLE","features":[363]},{"name":"INF_STYLE_CACHE_IGNORE","features":[363]},{"name":"INF_STYLE_NONE","features":[363]},{"name":"INF_STYLE_OLDNT","features":[363]},{"name":"INF_STYLE_WIN4","features":[363]},{"name":"INSTALLFLAG_BITS","features":[363]},{"name":"INSTALLFLAG_FORCE","features":[363]},{"name":"INSTALLFLAG_NONINTERACTIVE","features":[363]},{"name":"INSTALLFLAG_READONLY","features":[363]},{"name":"IOA_Local","features":[363]},{"name":"IOD_DESFLAGS","features":[363]},{"name":"IO_ALIAS_10_BIT_DECODE","features":[363]},{"name":"IO_ALIAS_12_BIT_DECODE","features":[363]},{"name":"IO_ALIAS_16_BIT_DECODE","features":[363]},{"name":"IO_ALIAS_POSITIVE_DECODE","features":[363]},{"name":"IO_DES","features":[363]},{"name":"IO_RANGE","features":[363]},{"name":"IO_RESOURCE","features":[363]},{"name":"IRQD_FLAGS","features":[363]},{"name":"IRQ_DES_32","features":[363]},{"name":"IRQ_DES_64","features":[363]},{"name":"IRQ_RANGE","features":[363]},{"name":"IRQ_RESOURCE_32","features":[363]},{"name":"IRQ_RESOURCE_64","features":[363]},{"name":"InstallHinfSectionA","features":[363,303]},{"name":"InstallHinfSectionW","features":[363,303]},{"name":"LCPRI_BOOTCONFIG","features":[363]},{"name":"LCPRI_DESIRED","features":[363]},{"name":"LCPRI_DISABLED","features":[363]},{"name":"LCPRI_FORCECONFIG","features":[363]},{"name":"LCPRI_HARDRECONFIG","features":[363]},{"name":"LCPRI_HARDWIRED","features":[363]},{"name":"LCPRI_IMPOSSIBLE","features":[363]},{"name":"LCPRI_LASTBESTCONFIG","features":[363]},{"name":"LCPRI_LASTSOFTCONFIG","features":[363]},{"name":"LCPRI_NORMAL","features":[363]},{"name":"LCPRI_POWEROFF","features":[363]},{"name":"LCPRI_REBOOT","features":[363]},{"name":"LCPRI_RESTART","features":[363]},{"name":"LCPRI_SUBOPTIMAL","features":[363]},{"name":"LINE_LEN","features":[363]},{"name":"LOG_CONF_BITS","features":[363]},{"name":"LogSevError","features":[363]},{"name":"LogSevFatalError","features":[363]},{"name":"LogSevInformation","features":[363]},{"name":"LogSevMaximum","features":[363]},{"name":"LogSevWarning","features":[363]},{"name":"MAX_CLASS_NAME_LEN","features":[363]},{"name":"MAX_CONFIG_VALUE","features":[363]},{"name":"MAX_DEVICE_ID_LEN","features":[363]},{"name":"MAX_DEVNODE_ID_LEN","features":[363]},{"name":"MAX_DMA_CHANNELS","features":[363]},{"name":"MAX_GUID_STRING_LEN","features":[363]},{"name":"MAX_IDD_DYNAWIZ_RESOURCE_ID","features":[363]},{"name":"MAX_INFSTR_STRKEY_LEN","features":[363]},{"name":"MAX_INF_FLAG","features":[363]},{"name":"MAX_INF_SECTION_NAME_LENGTH","features":[363]},{"name":"MAX_INF_STRING_LENGTH","features":[363]},{"name":"MAX_INSTALLWIZARD_DYNAPAGES","features":[363]},{"name":"MAX_INSTANCE_VALUE","features":[363]},{"name":"MAX_INSTRUCTION_LEN","features":[363]},{"name":"MAX_IO_PORTS","features":[363]},{"name":"MAX_IRQS","features":[363]},{"name":"MAX_KEY_LEN","features":[363]},{"name":"MAX_LABEL_LEN","features":[363]},{"name":"MAX_LCPRI","features":[363]},{"name":"MAX_MEM_REGISTERS","features":[363]},{"name":"MAX_PRIORITYSTR_LEN","features":[363]},{"name":"MAX_PROFILE_LEN","features":[363]},{"name":"MAX_SERVICE_NAME_LEN","features":[363]},{"name":"MAX_SUBTITLE_LEN","features":[363]},{"name":"MAX_TITLE_LEN","features":[363]},{"name":"MD_FLAGS","features":[363]},{"name":"MEM_DES","features":[363]},{"name":"MEM_LARGE_DES","features":[363]},{"name":"MEM_LARGE_RANGE","features":[363]},{"name":"MEM_LARGE_RESOURCE","features":[363]},{"name":"MEM_RANGE","features":[363]},{"name":"MEM_RESOURCE","features":[363]},{"name":"MFCARD_DES","features":[363]},{"name":"MFCARD_RESOURCE","features":[363]},{"name":"MIN_IDD_DYNAWIZ_RESOURCE_ID","features":[363]},{"name":"NDW_INSTALLFLAG_CI_PICKED_OEM","features":[363]},{"name":"NDW_INSTALLFLAG_DIDFACTDEFS","features":[363]},{"name":"NDW_INSTALLFLAG_EXPRESSINTRO","features":[363]},{"name":"NDW_INSTALLFLAG_HARDWAREALLREADYIN","features":[363]},{"name":"NDW_INSTALLFLAG_INSTALLSPECIFIC","features":[363]},{"name":"NDW_INSTALLFLAG_KNOWNCLASS","features":[363]},{"name":"NDW_INSTALLFLAG_NEEDSHUTDOWN","features":[363]},{"name":"NDW_INSTALLFLAG_NODETECTEDDEVS","features":[363]},{"name":"NDW_INSTALLFLAG_PCMCIADEVICE","features":[363]},{"name":"NDW_INSTALLFLAG_PCMCIAMODE","features":[363]},{"name":"NDW_INSTALLFLAG_SKIPCLASSLIST","features":[363]},{"name":"NDW_INSTALLFLAG_SKIPISDEVINSTALLED","features":[363]},{"name":"NDW_INSTALLFLAG_USERCANCEL","features":[363]},{"name":"NUM_CM_PROB","features":[363]},{"name":"NUM_CM_PROB_V1","features":[363]},{"name":"NUM_CM_PROB_V2","features":[363]},{"name":"NUM_CM_PROB_V3","features":[363]},{"name":"NUM_CM_PROB_V4","features":[363]},{"name":"NUM_CM_PROB_V5","features":[363]},{"name":"NUM_CM_PROB_V6","features":[363]},{"name":"NUM_CM_PROB_V7","features":[363]},{"name":"NUM_CM_PROB_V8","features":[363]},{"name":"NUM_CM_PROB_V9","features":[363]},{"name":"NUM_CR_RESULTS","features":[363]},{"name":"NUM_LOG_CONF","features":[363]},{"name":"OEM_SOURCE_MEDIA_TYPE","features":[363]},{"name":"OVERRIDE_LOG_CONF","features":[363]},{"name":"PCCARD_DES","features":[363]},{"name":"PCCARD_RESOURCE","features":[363]},{"name":"PCD_FLAGS","features":[363]},{"name":"PCD_MAX_IO","features":[363]},{"name":"PCD_MAX_MEMORY","features":[363]},{"name":"PCM_NOTIFY_CALLBACK","features":[363]},{"name":"PDETECT_PROGRESS_NOTIFY","features":[363,303]},{"name":"PMF_FLAGS","features":[363]},{"name":"PNP_VETO_TYPE","features":[363]},{"name":"PNP_VetoAlreadyRemoved","features":[363]},{"name":"PNP_VetoDevice","features":[363]},{"name":"PNP_VetoDriver","features":[363]},{"name":"PNP_VetoIllegalDeviceRequest","features":[363]},{"name":"PNP_VetoInsufficientPower","features":[363]},{"name":"PNP_VetoInsufficientRights","features":[363]},{"name":"PNP_VetoLegacyDevice","features":[363]},{"name":"PNP_VetoLegacyDriver","features":[363]},{"name":"PNP_VetoNonDisableable","features":[363]},{"name":"PNP_VetoOutstandingOpen","features":[363]},{"name":"PNP_VetoPendingClose","features":[363]},{"name":"PNP_VetoTypeUnknown","features":[363]},{"name":"PNP_VetoWindowsApp","features":[363]},{"name":"PNP_VetoWindowsService","features":[363]},{"name":"PRIORITY_BIT","features":[363]},{"name":"PRIORITY_EQUAL_FIRST","features":[363]},{"name":"PRIORITY_EQUAL_LAST","features":[363]},{"name":"PSP_DETSIG_CMPPROC","features":[363]},{"name":"PSP_FILE_CALLBACK_A","features":[363]},{"name":"PSP_FILE_CALLBACK_W","features":[363]},{"name":"ROLLBACK_BITS","features":[363]},{"name":"ROLLBACK_FLAG_NO_UI","features":[363]},{"name":"RegDisposition_Bits","features":[363]},{"name":"RegDisposition_OpenAlways","features":[363]},{"name":"RegDisposition_OpenExisting","features":[363]},{"name":"ResType_All","features":[363]},{"name":"ResType_BusNumber","features":[363]},{"name":"ResType_ClassSpecific","features":[363]},{"name":"ResType_Connection","features":[363]},{"name":"ResType_DMA","features":[363]},{"name":"ResType_DevicePrivate","features":[363]},{"name":"ResType_DoNotUse","features":[363]},{"name":"ResType_IO","features":[363]},{"name":"ResType_IRQ","features":[363]},{"name":"ResType_Ignored_Bit","features":[363]},{"name":"ResType_MAX","features":[363]},{"name":"ResType_Mem","features":[363]},{"name":"ResType_MemLarge","features":[363]},{"name":"ResType_MfCardConfig","features":[363]},{"name":"ResType_None","features":[363]},{"name":"ResType_PcCardConfig","features":[363]},{"name":"ResType_Reserved","features":[363]},{"name":"SCWMI_CLOBBER_SECURITY","features":[363]},{"name":"SETDIRID_NOT_FULL_PATH","features":[363]},{"name":"SETUPSCANFILEQUEUE_FLAGS","features":[363]},{"name":"SETUP_DI_DEVICE_CONFIGURATION_FLAGS","features":[363]},{"name":"SETUP_DI_DEVICE_CREATION_FLAGS","features":[363]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS","features":[363]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS_EX","features":[363]},{"name":"SETUP_DI_DRIVER_INSTALL_FLAGS","features":[363]},{"name":"SETUP_DI_DRIVER_TYPE","features":[363]},{"name":"SETUP_DI_GET_CLASS_DEVS_FLAGS","features":[363]},{"name":"SETUP_DI_PROPERTY_CHANGE_SCOPE","features":[363]},{"name":"SETUP_DI_REGISTRY_PROPERTY","features":[363]},{"name":"SETUP_DI_REMOVE_DEVICE_SCOPE","features":[363]},{"name":"SETUP_DI_STATE_CHANGE","features":[363]},{"name":"SETUP_FILE_OPERATION","features":[363]},{"name":"SIGNERSCORE_AUTHENTICODE","features":[363]},{"name":"SIGNERSCORE_INBOX","features":[363]},{"name":"SIGNERSCORE_LOGO_PREMIUM","features":[363]},{"name":"SIGNERSCORE_LOGO_STANDARD","features":[363]},{"name":"SIGNERSCORE_MASK","features":[363]},{"name":"SIGNERSCORE_SIGNED_MASK","features":[363]},{"name":"SIGNERSCORE_UNCLASSIFIED","features":[363]},{"name":"SIGNERSCORE_UNKNOWN","features":[363]},{"name":"SIGNERSCORE_UNSIGNED","features":[363]},{"name":"SIGNERSCORE_W9X_SUSPECT","features":[363]},{"name":"SIGNERSCORE_WHQL","features":[363]},{"name":"SOURCE_MEDIA_A","features":[363]},{"name":"SOURCE_MEDIA_A","features":[363]},{"name":"SOURCE_MEDIA_W","features":[363]},{"name":"SOURCE_MEDIA_W","features":[363]},{"name":"SPCRP_CHARACTERISTICS","features":[363]},{"name":"SPCRP_DEVTYPE","features":[363]},{"name":"SPCRP_EXCLUSIVE","features":[363]},{"name":"SPCRP_LOWERFILTERS","features":[363]},{"name":"SPCRP_MAXIMUM_PROPERTY","features":[363]},{"name":"SPCRP_SECURITY","features":[363]},{"name":"SPCRP_SECURITY_SDS","features":[363]},{"name":"SPCRP_UPPERFILTERS","features":[363]},{"name":"SPDIT_CLASSDRIVER","features":[363]},{"name":"SPDIT_COMPATDRIVER","features":[363]},{"name":"SPDIT_NODRIVER","features":[363]},{"name":"SPDRP_ADDRESS","features":[363]},{"name":"SPDRP_BASE_CONTAINERID","features":[363]},{"name":"SPDRP_BUSNUMBER","features":[363]},{"name":"SPDRP_BUSTYPEGUID","features":[363]},{"name":"SPDRP_CAPABILITIES","features":[363]},{"name":"SPDRP_CHARACTERISTICS","features":[363]},{"name":"SPDRP_CLASS","features":[363]},{"name":"SPDRP_CLASSGUID","features":[363]},{"name":"SPDRP_COMPATIBLEIDS","features":[363]},{"name":"SPDRP_CONFIGFLAGS","features":[363]},{"name":"SPDRP_DEVICEDESC","features":[363]},{"name":"SPDRP_DEVICE_POWER_DATA","features":[363]},{"name":"SPDRP_DEVTYPE","features":[363]},{"name":"SPDRP_DRIVER","features":[363]},{"name":"SPDRP_ENUMERATOR_NAME","features":[363]},{"name":"SPDRP_EXCLUSIVE","features":[363]},{"name":"SPDRP_FRIENDLYNAME","features":[363]},{"name":"SPDRP_HARDWAREID","features":[363]},{"name":"SPDRP_INSTALL_STATE","features":[363]},{"name":"SPDRP_LEGACYBUSTYPE","features":[363]},{"name":"SPDRP_LOCATION_INFORMATION","features":[363]},{"name":"SPDRP_LOCATION_PATHS","features":[363]},{"name":"SPDRP_LOWERFILTERS","features":[363]},{"name":"SPDRP_MAXIMUM_PROPERTY","features":[363]},{"name":"SPDRP_MFG","features":[363]},{"name":"SPDRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[363]},{"name":"SPDRP_REMOVAL_POLICY","features":[363]},{"name":"SPDRP_REMOVAL_POLICY_HW_DEFAULT","features":[363]},{"name":"SPDRP_REMOVAL_POLICY_OVERRIDE","features":[363]},{"name":"SPDRP_SECURITY","features":[363]},{"name":"SPDRP_SECURITY_SDS","features":[363]},{"name":"SPDRP_SERVICE","features":[363]},{"name":"SPDRP_UI_NUMBER","features":[363]},{"name":"SPDRP_UI_NUMBER_DESC_FORMAT","features":[363]},{"name":"SPDRP_UNUSED0","features":[363]},{"name":"SPDRP_UNUSED1","features":[363]},{"name":"SPDRP_UNUSED2","features":[363]},{"name":"SPDRP_UPPERFILTERS","features":[363]},{"name":"SPDSL_DISALLOW_NEGATIVE_ADJUST","features":[363]},{"name":"SPDSL_IGNORE_DISK","features":[363]},{"name":"SPFILELOG_FORCENEW","features":[363]},{"name":"SPFILELOG_OEMFILE","features":[363]},{"name":"SPFILELOG_QUERYONLY","features":[363]},{"name":"SPFILELOG_SYSTEMLOG","features":[363]},{"name":"SPFILENOTIFY_BACKUPERROR","features":[363]},{"name":"SPFILENOTIFY_CABINETINFO","features":[363]},{"name":"SPFILENOTIFY_COPYERROR","features":[363]},{"name":"SPFILENOTIFY_DELETEERROR","features":[363]},{"name":"SPFILENOTIFY_ENDBACKUP","features":[363]},{"name":"SPFILENOTIFY_ENDCOPY","features":[363]},{"name":"SPFILENOTIFY_ENDDELETE","features":[363]},{"name":"SPFILENOTIFY_ENDQUEUE","features":[363]},{"name":"SPFILENOTIFY_ENDREGISTRATION","features":[363]},{"name":"SPFILENOTIFY_ENDRENAME","features":[363]},{"name":"SPFILENOTIFY_ENDSUBQUEUE","features":[363]},{"name":"SPFILENOTIFY_FILEEXTRACTED","features":[363]},{"name":"SPFILENOTIFY_FILEINCABINET","features":[363]},{"name":"SPFILENOTIFY_FILEOPDELAYED","features":[363]},{"name":"SPFILENOTIFY_LANGMISMATCH","features":[363]},{"name":"SPFILENOTIFY_NEEDMEDIA","features":[363]},{"name":"SPFILENOTIFY_NEEDNEWCABINET","features":[363]},{"name":"SPFILENOTIFY_QUEUESCAN","features":[363]},{"name":"SPFILENOTIFY_QUEUESCAN_EX","features":[363]},{"name":"SPFILENOTIFY_QUEUESCAN_SIGNERINFO","features":[363]},{"name":"SPFILENOTIFY_RENAMEERROR","features":[363]},{"name":"SPFILENOTIFY_STARTBACKUP","features":[363]},{"name":"SPFILENOTIFY_STARTCOPY","features":[363]},{"name":"SPFILENOTIFY_STARTDELETE","features":[363]},{"name":"SPFILENOTIFY_STARTQUEUE","features":[363]},{"name":"SPFILENOTIFY_STARTREGISTRATION","features":[363]},{"name":"SPFILENOTIFY_STARTRENAME","features":[363]},{"name":"SPFILENOTIFY_STARTSUBQUEUE","features":[363]},{"name":"SPFILENOTIFY_TARGETEXISTS","features":[363]},{"name":"SPFILENOTIFY_TARGETNEWER","features":[363]},{"name":"SPFILEQ_FILE_IN_USE","features":[363]},{"name":"SPFILEQ_REBOOT_IN_PROGRESS","features":[363]},{"name":"SPFILEQ_REBOOT_RECOMMENDED","features":[363]},{"name":"SPID_ACTIVE","features":[363]},{"name":"SPID_DEFAULT","features":[363]},{"name":"SPID_REMOVED","features":[363]},{"name":"SPINST_ALL","features":[363]},{"name":"SPINST_BITREG","features":[363]},{"name":"SPINST_COPYINF","features":[363]},{"name":"SPINST_DEVICEINSTALL","features":[363]},{"name":"SPINST_FILES","features":[363]},{"name":"SPINST_INI2REG","features":[363]},{"name":"SPINST_INIFILES","features":[363]},{"name":"SPINST_LOGCONFIG","features":[363]},{"name":"SPINST_LOGCONFIGS_ARE_OVERRIDES","features":[363]},{"name":"SPINST_LOGCONFIG_IS_FORCED","features":[363]},{"name":"SPINST_PROFILEITEMS","features":[363]},{"name":"SPINST_PROPERTIES","features":[363]},{"name":"SPINST_REGISTERCALLBACKAWARE","features":[363]},{"name":"SPINST_REGISTRY","features":[363]},{"name":"SPINST_REGSVR","features":[363]},{"name":"SPINST_SINGLESECTION","features":[363]},{"name":"SPINST_UNREGSVR","features":[363]},{"name":"SPINT_ACTIVE","features":[363]},{"name":"SPINT_DEFAULT","features":[363]},{"name":"SPINT_REMOVED","features":[363]},{"name":"SPOST_MAX","features":[363]},{"name":"SPOST_NONE","features":[363]},{"name":"SPOST_PATH","features":[363]},{"name":"SPOST_URL","features":[363]},{"name":"SPPSR_ENUM_ADV_DEVICE_PROPERTIES","features":[363]},{"name":"SPPSR_ENUM_BASIC_DEVICE_PROPERTIES","features":[363]},{"name":"SPPSR_SELECT_DEVICE_RESOURCES","features":[363]},{"name":"SPQ_DELAYED_COPY","features":[363]},{"name":"SPQ_FLAG_ABORT_IF_UNSIGNED","features":[363]},{"name":"SPQ_FLAG_BACKUP_AWARE","features":[363]},{"name":"SPQ_FLAG_DO_SHUFFLEMOVE","features":[363]},{"name":"SPQ_FLAG_FILES_MODIFIED","features":[363]},{"name":"SPQ_FLAG_VALID","features":[363]},{"name":"SPQ_SCAN_ACTIVATE_DRP","features":[363]},{"name":"SPQ_SCAN_FILE_COMPARISON","features":[363]},{"name":"SPQ_SCAN_FILE_PRESENCE","features":[363]},{"name":"SPQ_SCAN_FILE_PRESENCE_WITHOUT_SOURCE","features":[363]},{"name":"SPQ_SCAN_FILE_VALIDITY","features":[363]},{"name":"SPQ_SCAN_INFORM_USER","features":[363]},{"name":"SPQ_SCAN_PRUNE_COPY_QUEUE","features":[363]},{"name":"SPQ_SCAN_PRUNE_DELREN","features":[363]},{"name":"SPQ_SCAN_USE_CALLBACK","features":[363]},{"name":"SPQ_SCAN_USE_CALLBACKEX","features":[363]},{"name":"SPQ_SCAN_USE_CALLBACK_SIGNERINFO","features":[363]},{"name":"SPRDI_FIND_DUPS","features":[363]},{"name":"SPREG_DLLINSTALL","features":[363]},{"name":"SPREG_GETPROCADDR","features":[363]},{"name":"SPREG_LOADLIBRARY","features":[363]},{"name":"SPREG_REGSVR","features":[363]},{"name":"SPREG_SUCCESS","features":[363]},{"name":"SPREG_TIMEOUT","features":[363]},{"name":"SPREG_UNKNOWN","features":[363]},{"name":"SPSVCINST_ASSOCSERVICE","features":[363]},{"name":"SPSVCINST_CLOBBER_SECURITY","features":[363]},{"name":"SPSVCINST_DELETEEVENTLOGENTRY","features":[363]},{"name":"SPSVCINST_FLAGS","features":[363]},{"name":"SPSVCINST_NOCLOBBER_DELAYEDAUTOSTART","features":[363]},{"name":"SPSVCINST_NOCLOBBER_DEPENDENCIES","features":[363]},{"name":"SPSVCINST_NOCLOBBER_DESCRIPTION","features":[363]},{"name":"SPSVCINST_NOCLOBBER_DISPLAYNAME","features":[363]},{"name":"SPSVCINST_NOCLOBBER_ERRORCONTROL","features":[363]},{"name":"SPSVCINST_NOCLOBBER_FAILUREACTIONS","features":[363]},{"name":"SPSVCINST_NOCLOBBER_LOADORDERGROUP","features":[363]},{"name":"SPSVCINST_NOCLOBBER_REQUIREDPRIVILEGES","features":[363]},{"name":"SPSVCINST_NOCLOBBER_SERVICESIDTYPE","features":[363]},{"name":"SPSVCINST_NOCLOBBER_STARTTYPE","features":[363]},{"name":"SPSVCINST_NOCLOBBER_TRIGGERS","features":[363]},{"name":"SPSVCINST_STARTSERVICE","features":[363]},{"name":"SPSVCINST_STOPSERVICE","features":[363]},{"name":"SPSVCINST_TAGTOFRONT","features":[363]},{"name":"SPSVCINST_UNIQUE_NAME","features":[363]},{"name":"SPWPT_SELECTDEVICE","features":[363]},{"name":"SPWP_USE_DEVINFO_DATA","features":[363]},{"name":"SP_ALTPLATFORM_FLAGS_SUITE_MASK","features":[363]},{"name":"SP_ALTPLATFORM_FLAGS_VERSION_RANGE","features":[363]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[363,331]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[363,331]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[363,331,333]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[363,331,333]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[363]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[363]},{"name":"SP_BACKUP_BACKUPPASS","features":[363]},{"name":"SP_BACKUP_BOOTFILE","features":[363]},{"name":"SP_BACKUP_DEMANDPASS","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[363]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[363]},{"name":"SP_BACKUP_SPECIAL","features":[363]},{"name":"SP_CLASSIMAGELIST_DATA","features":[363,353]},{"name":"SP_CLASSIMAGELIST_DATA","features":[363,353]},{"name":"SP_CLASSINSTALL_HEADER","features":[363]},{"name":"SP_CLASSINSTALL_HEADER","features":[363]},{"name":"SP_COPY_ALREADYDECOMP","features":[363]},{"name":"SP_COPY_DELETESOURCE","features":[363]},{"name":"SP_COPY_FORCE_IN_USE","features":[363]},{"name":"SP_COPY_FORCE_NEWER","features":[363]},{"name":"SP_COPY_FORCE_NOOVERWRITE","features":[363]},{"name":"SP_COPY_HARDLINK","features":[363]},{"name":"SP_COPY_INBOX_INF","features":[363]},{"name":"SP_COPY_IN_USE_NEEDS_REBOOT","features":[363]},{"name":"SP_COPY_IN_USE_TRY_RENAME","features":[363]},{"name":"SP_COPY_LANGUAGEAWARE","features":[363]},{"name":"SP_COPY_NEWER","features":[363]},{"name":"SP_COPY_NEWER_ONLY","features":[363]},{"name":"SP_COPY_NEWER_OR_SAME","features":[363]},{"name":"SP_COPY_NOBROWSE","features":[363]},{"name":"SP_COPY_NODECOMP","features":[363]},{"name":"SP_COPY_NOOVERWRITE","features":[363]},{"name":"SP_COPY_NOPRUNE","features":[363]},{"name":"SP_COPY_NOSKIP","features":[363]},{"name":"SP_COPY_OEMINF_CATALOG_ONLY","features":[363]},{"name":"SP_COPY_OEM_F6_INF","features":[363]},{"name":"SP_COPY_PNPLOCKED","features":[363]},{"name":"SP_COPY_REPLACEONLY","features":[363]},{"name":"SP_COPY_REPLACE_BOOT_FILE","features":[363]},{"name":"SP_COPY_RESERVED","features":[363]},{"name":"SP_COPY_SOURCEPATH_ABSOLUTE","features":[363]},{"name":"SP_COPY_SOURCE_ABSOLUTE","features":[363]},{"name":"SP_COPY_STYLE","features":[363]},{"name":"SP_COPY_WARNIFSKIP","features":[363]},{"name":"SP_COPY_WINDOWS_SIGNED","features":[363]},{"name":"SP_DETECTDEVICE_PARAMS","features":[363,303]},{"name":"SP_DETECTDEVICE_PARAMS","features":[363,303]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[363]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[363]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[363]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[363]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[363]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[363]},{"name":"SP_DEVINFO_DATA","features":[363]},{"name":"SP_DEVINFO_DATA","features":[363]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[363,303]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[363,303]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[363,303]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[363,303]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[363,303]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[363,303]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[363,303]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[363,303]},{"name":"SP_DRVINFO_DATA_V1_A","features":[363]},{"name":"SP_DRVINFO_DATA_V1_A","features":[363]},{"name":"SP_DRVINFO_DATA_V1_W","features":[363]},{"name":"SP_DRVINFO_DATA_V1_W","features":[363]},{"name":"SP_DRVINFO_DATA_V2_A","features":[363,303]},{"name":"SP_DRVINFO_DATA_V2_A","features":[363,303]},{"name":"SP_DRVINFO_DATA_V2_W","features":[363,303]},{"name":"SP_DRVINFO_DATA_V2_W","features":[363,303]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[363,303]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[363,303]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[363,303]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[363,303]},{"name":"SP_DRVINSTALL_PARAMS","features":[363]},{"name":"SP_DRVINSTALL_PARAMS","features":[363]},{"name":"SP_ENABLECLASS_PARAMS","features":[363]},{"name":"SP_ENABLECLASS_PARAMS","features":[363]},{"name":"SP_FILE_COPY_PARAMS_A","features":[363]},{"name":"SP_FILE_COPY_PARAMS_A","features":[363]},{"name":"SP_FILE_COPY_PARAMS_W","features":[363]},{"name":"SP_FILE_COPY_PARAMS_W","features":[363]},{"name":"SP_FLAG_CABINETCONTINUATION","features":[363]},{"name":"SP_INF_INFORMATION","features":[363]},{"name":"SP_INF_INFORMATION","features":[363]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[363]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[363]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[363]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[363]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[363]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[363]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[363]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[363]},{"name":"SP_INSTALLWIZARD_DATA","features":[363,303,353]},{"name":"SP_INSTALLWIZARD_DATA","features":[363,303,353]},{"name":"SP_MAX_MACHINENAME_LENGTH","features":[363]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[363,303,353]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[363,303,353]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[363]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[363]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[363]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[363]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_A","features":[363]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[363]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[363]},{"name":"SP_PROPCHANGE_PARAMS","features":[363]},{"name":"SP_PROPCHANGE_PARAMS","features":[363]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[363]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[363]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[363]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[363]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[363]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[363]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[363]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[363]},{"name":"SP_SELECTDEVICE_PARAMS_A","features":[363]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[363]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[363]},{"name":"SP_TROUBLESHOOTER_PARAMS_A","features":[363]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[363]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[363]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[363]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[363]},{"name":"SRCINFO_DESCRIPTION","features":[363]},{"name":"SRCINFO_FLAGS","features":[363]},{"name":"SRCINFO_PATH","features":[363]},{"name":"SRCINFO_TAGFILE","features":[363]},{"name":"SRCINFO_TAGFILE2","features":[363]},{"name":"SRCLIST_APPEND","features":[363]},{"name":"SRCLIST_NOBROWSE","features":[363]},{"name":"SRCLIST_NOSTRIPPLATFORM","features":[363]},{"name":"SRCLIST_SUBDIRS","features":[363]},{"name":"SRCLIST_SYSIFADMIN","features":[363]},{"name":"SRCLIST_SYSTEM","features":[363]},{"name":"SRCLIST_TEMPORARY","features":[363]},{"name":"SRCLIST_USER","features":[363]},{"name":"SRC_FLAGS_CABFILE","features":[363]},{"name":"SUOI_FORCEDELETE","features":[363]},{"name":"SUOI_INTERNAL1","features":[363]},{"name":"SZ_KEY_ADDAUTOLOGGER","features":[363]},{"name":"SZ_KEY_ADDAUTOLOGGERPROVIDER","features":[363]},{"name":"SZ_KEY_ADDCHANNEL","features":[363]},{"name":"SZ_KEY_ADDEVENTPROVIDER","features":[363]},{"name":"SZ_KEY_ADDFILTER","features":[363]},{"name":"SZ_KEY_ADDIME","features":[363]},{"name":"SZ_KEY_ADDINTERFACE","features":[363]},{"name":"SZ_KEY_ADDPOWERSETTING","features":[363]},{"name":"SZ_KEY_ADDPROP","features":[363]},{"name":"SZ_KEY_ADDREG","features":[363]},{"name":"SZ_KEY_ADDREGNOCLOBBER","features":[363]},{"name":"SZ_KEY_ADDSERVICE","features":[363]},{"name":"SZ_KEY_ADDTRIGGER","features":[363]},{"name":"SZ_KEY_BITREG","features":[363]},{"name":"SZ_KEY_CLEANONLY","features":[363]},{"name":"SZ_KEY_COPYFILES","features":[363]},{"name":"SZ_KEY_COPYINF","features":[363]},{"name":"SZ_KEY_DEFAULTOPTION","features":[363]},{"name":"SZ_KEY_DEFDESTDIR","features":[363]},{"name":"SZ_KEY_DELFILES","features":[363]},{"name":"SZ_KEY_DELIME","features":[363]},{"name":"SZ_KEY_DELPROP","features":[363]},{"name":"SZ_KEY_DELREG","features":[363]},{"name":"SZ_KEY_DELSERVICE","features":[363]},{"name":"SZ_KEY_DESTDIRS","features":[363]},{"name":"SZ_KEY_EXCLUDEID","features":[363]},{"name":"SZ_KEY_FAILUREACTIONS","features":[363]},{"name":"SZ_KEY_FEATURESCORE","features":[363]},{"name":"SZ_KEY_FILTERLEVEL","features":[363]},{"name":"SZ_KEY_FILTERPOSITION","features":[363]},{"name":"SZ_KEY_HARDWARE","features":[363]},{"name":"SZ_KEY_IMPORTCHANNEL","features":[363]},{"name":"SZ_KEY_INI2REG","features":[363]},{"name":"SZ_KEY_LAYOUT_FILE","features":[363]},{"name":"SZ_KEY_LDIDOEM","features":[363]},{"name":"SZ_KEY_LFN_SECTION","features":[363]},{"name":"SZ_KEY_LISTOPTIONS","features":[363]},{"name":"SZ_KEY_LOGCONFIG","features":[363]},{"name":"SZ_KEY_MODULES","features":[363]},{"name":"SZ_KEY_OPTIONDESC","features":[363]},{"name":"SZ_KEY_PHASE1","features":[363]},{"name":"SZ_KEY_PROFILEITEMS","features":[363]},{"name":"SZ_KEY_REGSVR","features":[363]},{"name":"SZ_KEY_RENFILES","features":[363]},{"name":"SZ_KEY_SFN_SECTION","features":[363]},{"name":"SZ_KEY_SRCDISKFILES","features":[363]},{"name":"SZ_KEY_SRCDISKNAMES","features":[363]},{"name":"SZ_KEY_STRINGS","features":[363]},{"name":"SZ_KEY_UNREGSVR","features":[363]},{"name":"SZ_KEY_UPDATEAUTOLOGGER","features":[363]},{"name":"SZ_KEY_UPDATEINIFIELDS","features":[363]},{"name":"SZ_KEY_UPDATEINIS","features":[363]},{"name":"SZ_KEY_UPGRADEONLY","features":[363]},{"name":"SetupAddInstallSectionToDiskSpaceListA","features":[363,303]},{"name":"SetupAddInstallSectionToDiskSpaceListW","features":[363,303]},{"name":"SetupAddSectionToDiskSpaceListA","features":[363,303]},{"name":"SetupAddSectionToDiskSpaceListW","features":[363,303]},{"name":"SetupAddToDiskSpaceListA","features":[363,303]},{"name":"SetupAddToDiskSpaceListW","features":[363,303]},{"name":"SetupAddToSourceListA","features":[363,303]},{"name":"SetupAddToSourceListW","features":[363,303]},{"name":"SetupAdjustDiskSpaceListA","features":[363,303]},{"name":"SetupAdjustDiskSpaceListW","features":[363,303]},{"name":"SetupBackupErrorA","features":[363,303]},{"name":"SetupBackupErrorW","features":[363,303]},{"name":"SetupCancelTemporarySourceList","features":[363,303]},{"name":"SetupCloseFileQueue","features":[363,303]},{"name":"SetupCloseInfFile","features":[363]},{"name":"SetupCloseLog","features":[363]},{"name":"SetupCommitFileQueueA","features":[363,303]},{"name":"SetupCommitFileQueueW","features":[363,303]},{"name":"SetupConfigureWmiFromInfSectionA","features":[363,303]},{"name":"SetupConfigureWmiFromInfSectionW","features":[363,303]},{"name":"SetupCopyErrorA","features":[363,303]},{"name":"SetupCopyErrorW","features":[363,303]},{"name":"SetupCopyOEMInfA","features":[363,303]},{"name":"SetupCopyOEMInfW","features":[363,303]},{"name":"SetupCreateDiskSpaceListA","features":[363]},{"name":"SetupCreateDiskSpaceListW","features":[363]},{"name":"SetupDecompressOrCopyFileA","features":[363]},{"name":"SetupDecompressOrCopyFileW","features":[363]},{"name":"SetupDefaultQueueCallbackA","features":[363]},{"name":"SetupDefaultQueueCallbackW","features":[363]},{"name":"SetupDeleteErrorA","features":[363,303]},{"name":"SetupDeleteErrorW","features":[363,303]},{"name":"SetupDestroyDiskSpaceList","features":[363,303]},{"name":"SetupDiAskForOEMDisk","features":[363,303]},{"name":"SetupDiBuildClassInfoList","features":[363,303]},{"name":"SetupDiBuildClassInfoListExA","features":[363,303]},{"name":"SetupDiBuildClassInfoListExW","features":[363,303]},{"name":"SetupDiBuildDriverInfoList","features":[363,303]},{"name":"SetupDiCallClassInstaller","features":[363,303]},{"name":"SetupDiCancelDriverInfoSearch","features":[363,303]},{"name":"SetupDiChangeState","features":[363,303]},{"name":"SetupDiClassGuidsFromNameA","features":[363,303]},{"name":"SetupDiClassGuidsFromNameExA","features":[363,303]},{"name":"SetupDiClassGuidsFromNameExW","features":[363,303]},{"name":"SetupDiClassGuidsFromNameW","features":[363,303]},{"name":"SetupDiClassNameFromGuidA","features":[363,303]},{"name":"SetupDiClassNameFromGuidExA","features":[363,303]},{"name":"SetupDiClassNameFromGuidExW","features":[363,303]},{"name":"SetupDiClassNameFromGuidW","features":[363,303]},{"name":"SetupDiCreateDevRegKeyA","features":[363,364]},{"name":"SetupDiCreateDevRegKeyW","features":[363,364]},{"name":"SetupDiCreateDeviceInfoA","features":[363,303]},{"name":"SetupDiCreateDeviceInfoList","features":[363,303]},{"name":"SetupDiCreateDeviceInfoListExA","features":[363,303]},{"name":"SetupDiCreateDeviceInfoListExW","features":[363,303]},{"name":"SetupDiCreateDeviceInfoW","features":[363,303]},{"name":"SetupDiCreateDeviceInterfaceA","features":[363,303]},{"name":"SetupDiCreateDeviceInterfaceRegKeyA","features":[363,364]},{"name":"SetupDiCreateDeviceInterfaceRegKeyW","features":[363,364]},{"name":"SetupDiCreateDeviceInterfaceW","features":[363,303]},{"name":"SetupDiDeleteDevRegKey","features":[363,303]},{"name":"SetupDiDeleteDeviceInfo","features":[363,303]},{"name":"SetupDiDeleteDeviceInterfaceData","features":[363,303]},{"name":"SetupDiDeleteDeviceInterfaceRegKey","features":[363,303]},{"name":"SetupDiDestroyClassImageList","features":[363,303,353]},{"name":"SetupDiDestroyDeviceInfoList","features":[363,303]},{"name":"SetupDiDestroyDriverInfoList","features":[363,303]},{"name":"SetupDiDrawMiniIcon","features":[363,303,314]},{"name":"SetupDiEnumDeviceInfo","features":[363,303]},{"name":"SetupDiEnumDeviceInterfaces","features":[363,303]},{"name":"SetupDiEnumDriverInfoA","features":[363,303]},{"name":"SetupDiEnumDriverInfoW","features":[363,303]},{"name":"SetupDiGetActualModelsSectionA","features":[363,303,331,333]},{"name":"SetupDiGetActualModelsSectionW","features":[363,303,331,333]},{"name":"SetupDiGetActualSectionToInstallA","features":[363,303]},{"name":"SetupDiGetActualSectionToInstallExA","features":[363,303,331,333]},{"name":"SetupDiGetActualSectionToInstallExW","features":[363,303,331,333]},{"name":"SetupDiGetActualSectionToInstallW","features":[363,303]},{"name":"SetupDiGetClassBitmapIndex","features":[363,303]},{"name":"SetupDiGetClassDescriptionA","features":[363,303]},{"name":"SetupDiGetClassDescriptionExA","features":[363,303]},{"name":"SetupDiGetClassDescriptionExW","features":[363,303]},{"name":"SetupDiGetClassDescriptionW","features":[363,303]},{"name":"SetupDiGetClassDevPropertySheetsA","features":[363,303,314,353,365]},{"name":"SetupDiGetClassDevPropertySheetsW","features":[363,303,314,353,365]},{"name":"SetupDiGetClassDevsA","features":[363,303]},{"name":"SetupDiGetClassDevsExA","features":[363,303]},{"name":"SetupDiGetClassDevsExW","features":[363,303]},{"name":"SetupDiGetClassDevsW","features":[363,303]},{"name":"SetupDiGetClassImageIndex","features":[363,303,353]},{"name":"SetupDiGetClassImageList","features":[363,303,353]},{"name":"SetupDiGetClassImageListExA","features":[363,303,353]},{"name":"SetupDiGetClassImageListExW","features":[363,303,353]},{"name":"SetupDiGetClassInstallParamsA","features":[363,303]},{"name":"SetupDiGetClassInstallParamsW","features":[363,303]},{"name":"SetupDiGetClassPropertyExW","features":[363,336,303]},{"name":"SetupDiGetClassPropertyKeys","features":[363,336,303]},{"name":"SetupDiGetClassPropertyKeysExW","features":[363,336,303]},{"name":"SetupDiGetClassPropertyW","features":[363,336,303]},{"name":"SetupDiGetClassRegistryPropertyA","features":[363,303]},{"name":"SetupDiGetClassRegistryPropertyW","features":[363,303]},{"name":"SetupDiGetCustomDevicePropertyA","features":[363,303]},{"name":"SetupDiGetCustomDevicePropertyW","features":[363,303]},{"name":"SetupDiGetDeviceInfoListClass","features":[363,303]},{"name":"SetupDiGetDeviceInfoListDetailA","features":[363,303]},{"name":"SetupDiGetDeviceInfoListDetailW","features":[363,303]},{"name":"SetupDiGetDeviceInstallParamsA","features":[363,303]},{"name":"SetupDiGetDeviceInstallParamsW","features":[363,303]},{"name":"SetupDiGetDeviceInstanceIdA","features":[363,303]},{"name":"SetupDiGetDeviceInstanceIdW","features":[363,303]},{"name":"SetupDiGetDeviceInterfaceAlias","features":[363,303]},{"name":"SetupDiGetDeviceInterfaceDetailA","features":[363,303]},{"name":"SetupDiGetDeviceInterfaceDetailW","features":[363,303]},{"name":"SetupDiGetDeviceInterfacePropertyKeys","features":[363,336,303]},{"name":"SetupDiGetDeviceInterfacePropertyW","features":[363,336,303]},{"name":"SetupDiGetDevicePropertyKeys","features":[363,336,303]},{"name":"SetupDiGetDevicePropertyW","features":[363,336,303]},{"name":"SetupDiGetDeviceRegistryPropertyA","features":[363,303]},{"name":"SetupDiGetDeviceRegistryPropertyW","features":[363,303]},{"name":"SetupDiGetDriverInfoDetailA","features":[363,303]},{"name":"SetupDiGetDriverInfoDetailW","features":[363,303]},{"name":"SetupDiGetDriverInstallParamsA","features":[363,303]},{"name":"SetupDiGetDriverInstallParamsW","features":[363,303]},{"name":"SetupDiGetHwProfileFriendlyNameA","features":[363,303]},{"name":"SetupDiGetHwProfileFriendlyNameExA","features":[363,303]},{"name":"SetupDiGetHwProfileFriendlyNameExW","features":[363,303]},{"name":"SetupDiGetHwProfileFriendlyNameW","features":[363,303]},{"name":"SetupDiGetHwProfileList","features":[363,303]},{"name":"SetupDiGetHwProfileListExA","features":[363,303]},{"name":"SetupDiGetHwProfileListExW","features":[363,303]},{"name":"SetupDiGetINFClassA","features":[363,303]},{"name":"SetupDiGetINFClassW","features":[363,303]},{"name":"SetupDiGetSelectedDevice","features":[363,303]},{"name":"SetupDiGetSelectedDriverA","features":[363,303]},{"name":"SetupDiGetSelectedDriverW","features":[363,303]},{"name":"SetupDiGetWizardPage","features":[363,303,353]},{"name":"SetupDiInstallClassA","features":[363,303]},{"name":"SetupDiInstallClassExA","features":[363,303]},{"name":"SetupDiInstallClassExW","features":[363,303]},{"name":"SetupDiInstallClassW","features":[363,303]},{"name":"SetupDiInstallDevice","features":[363,303]},{"name":"SetupDiInstallDeviceInterfaces","features":[363,303]},{"name":"SetupDiInstallDriverFiles","features":[363,303]},{"name":"SetupDiLoadClassIcon","features":[363,303,365]},{"name":"SetupDiLoadDeviceIcon","features":[363,303,365]},{"name":"SetupDiOpenClassRegKey","features":[363,364]},{"name":"SetupDiOpenClassRegKeyExA","features":[363,364]},{"name":"SetupDiOpenClassRegKeyExW","features":[363,364]},{"name":"SetupDiOpenDevRegKey","features":[363,364]},{"name":"SetupDiOpenDeviceInfoA","features":[363,303]},{"name":"SetupDiOpenDeviceInfoW","features":[363,303]},{"name":"SetupDiOpenDeviceInterfaceA","features":[363,303]},{"name":"SetupDiOpenDeviceInterfaceRegKey","features":[363,364]},{"name":"SetupDiOpenDeviceInterfaceW","features":[363,303]},{"name":"SetupDiRegisterCoDeviceInstallers","features":[363,303]},{"name":"SetupDiRegisterDeviceInfo","features":[363,303]},{"name":"SetupDiRemoveDevice","features":[363,303]},{"name":"SetupDiRemoveDeviceInterface","features":[363,303]},{"name":"SetupDiRestartDevices","features":[363,303]},{"name":"SetupDiSelectBestCompatDrv","features":[363,303]},{"name":"SetupDiSelectDevice","features":[363,303]},{"name":"SetupDiSelectOEMDrv","features":[363,303]},{"name":"SetupDiSetClassInstallParamsA","features":[363,303]},{"name":"SetupDiSetClassInstallParamsW","features":[363,303]},{"name":"SetupDiSetClassPropertyExW","features":[363,336,303]},{"name":"SetupDiSetClassPropertyW","features":[363,336,303]},{"name":"SetupDiSetClassRegistryPropertyA","features":[363,303]},{"name":"SetupDiSetClassRegistryPropertyW","features":[363,303]},{"name":"SetupDiSetDeviceInstallParamsA","features":[363,303]},{"name":"SetupDiSetDeviceInstallParamsW","features":[363,303]},{"name":"SetupDiSetDeviceInterfaceDefault","features":[363,303]},{"name":"SetupDiSetDeviceInterfacePropertyW","features":[363,336,303]},{"name":"SetupDiSetDevicePropertyW","features":[363,336,303]},{"name":"SetupDiSetDeviceRegistryPropertyA","features":[363,303]},{"name":"SetupDiSetDeviceRegistryPropertyW","features":[363,303]},{"name":"SetupDiSetDriverInstallParamsA","features":[363,303]},{"name":"SetupDiSetDriverInstallParamsW","features":[363,303]},{"name":"SetupDiSetSelectedDevice","features":[363,303]},{"name":"SetupDiSetSelectedDriverA","features":[363,303]},{"name":"SetupDiSetSelectedDriverW","features":[363,303]},{"name":"SetupDiUnremoveDevice","features":[363,303]},{"name":"SetupDuplicateDiskSpaceListA","features":[363]},{"name":"SetupDuplicateDiskSpaceListW","features":[363]},{"name":"SetupEnumInfSectionsA","features":[363,303]},{"name":"SetupEnumInfSectionsW","features":[363,303]},{"name":"SetupFileLogChecksum","features":[363]},{"name":"SetupFileLogDiskDescription","features":[363]},{"name":"SetupFileLogDiskTagfile","features":[363]},{"name":"SetupFileLogInfo","features":[363]},{"name":"SetupFileLogMax","features":[363]},{"name":"SetupFileLogOtherInfo","features":[363]},{"name":"SetupFileLogSourceFilename","features":[363]},{"name":"SetupFindFirstLineA","features":[363,303]},{"name":"SetupFindFirstLineW","features":[363,303]},{"name":"SetupFindNextLine","features":[363,303]},{"name":"SetupFindNextMatchLineA","features":[363,303]},{"name":"SetupFindNextMatchLineW","features":[363,303]},{"name":"SetupFreeSourceListA","features":[363,303]},{"name":"SetupFreeSourceListW","features":[363,303]},{"name":"SetupGetBackupInformationA","features":[363,303]},{"name":"SetupGetBackupInformationW","features":[363,303]},{"name":"SetupGetBinaryField","features":[363,303]},{"name":"SetupGetFieldCount","features":[363]},{"name":"SetupGetFileCompressionInfoA","features":[363]},{"name":"SetupGetFileCompressionInfoExA","features":[363,303]},{"name":"SetupGetFileCompressionInfoExW","features":[363,303]},{"name":"SetupGetFileCompressionInfoW","features":[363]},{"name":"SetupGetFileQueueCount","features":[363,303]},{"name":"SetupGetFileQueueFlags","features":[363,303]},{"name":"SetupGetInfDriverStoreLocationA","features":[363,303,331,333]},{"name":"SetupGetInfDriverStoreLocationW","features":[363,303,331,333]},{"name":"SetupGetInfFileListA","features":[363,303]},{"name":"SetupGetInfFileListW","features":[363,303]},{"name":"SetupGetInfInformationA","features":[363,303]},{"name":"SetupGetInfInformationW","features":[363,303]},{"name":"SetupGetInfPublishedNameA","features":[363,303]},{"name":"SetupGetInfPublishedNameW","features":[363,303]},{"name":"SetupGetIntField","features":[363,303]},{"name":"SetupGetLineByIndexA","features":[363,303]},{"name":"SetupGetLineByIndexW","features":[363,303]},{"name":"SetupGetLineCountA","features":[363]},{"name":"SetupGetLineCountW","features":[363]},{"name":"SetupGetLineTextA","features":[363,303]},{"name":"SetupGetLineTextW","features":[363,303]},{"name":"SetupGetMultiSzFieldA","features":[363,303]},{"name":"SetupGetMultiSzFieldW","features":[363,303]},{"name":"SetupGetNonInteractiveMode","features":[363,303]},{"name":"SetupGetSourceFileLocationA","features":[363,303]},{"name":"SetupGetSourceFileLocationW","features":[363,303]},{"name":"SetupGetSourceFileSizeA","features":[363,303]},{"name":"SetupGetSourceFileSizeW","features":[363,303]},{"name":"SetupGetSourceInfoA","features":[363,303]},{"name":"SetupGetSourceInfoW","features":[363,303]},{"name":"SetupGetStringFieldA","features":[363,303]},{"name":"SetupGetStringFieldW","features":[363,303]},{"name":"SetupGetTargetPathA","features":[363,303]},{"name":"SetupGetTargetPathW","features":[363,303]},{"name":"SetupGetThreadLogToken","features":[363]},{"name":"SetupInitDefaultQueueCallback","features":[363,303]},{"name":"SetupInitDefaultQueueCallbackEx","features":[363,303]},{"name":"SetupInitializeFileLogA","features":[363]},{"name":"SetupInitializeFileLogW","features":[363]},{"name":"SetupInstallFileA","features":[363,303]},{"name":"SetupInstallFileExA","features":[363,303]},{"name":"SetupInstallFileExW","features":[363,303]},{"name":"SetupInstallFileW","features":[363,303]},{"name":"SetupInstallFilesFromInfSectionA","features":[363,303]},{"name":"SetupInstallFilesFromInfSectionW","features":[363,303]},{"name":"SetupInstallFromInfSectionA","features":[363,303,364]},{"name":"SetupInstallFromInfSectionW","features":[363,303,364]},{"name":"SetupInstallServicesFromInfSectionA","features":[363,303]},{"name":"SetupInstallServicesFromInfSectionExA","features":[363,303]},{"name":"SetupInstallServicesFromInfSectionExW","features":[363,303]},{"name":"SetupInstallServicesFromInfSectionW","features":[363,303]},{"name":"SetupIterateCabinetA","features":[363,303]},{"name":"SetupIterateCabinetW","features":[363,303]},{"name":"SetupLogErrorA","features":[363,303]},{"name":"SetupLogErrorW","features":[363,303]},{"name":"SetupLogFileA","features":[363,303]},{"name":"SetupLogFileW","features":[363,303]},{"name":"SetupOpenAppendInfFileA","features":[363,303]},{"name":"SetupOpenAppendInfFileW","features":[363,303]},{"name":"SetupOpenFileQueue","features":[363]},{"name":"SetupOpenInfFileA","features":[363]},{"name":"SetupOpenInfFileW","features":[363]},{"name":"SetupOpenLog","features":[363,303]},{"name":"SetupOpenMasterInf","features":[363]},{"name":"SetupPrepareQueueForRestoreA","features":[363,303]},{"name":"SetupPrepareQueueForRestoreW","features":[363,303]},{"name":"SetupPromptForDiskA","features":[363,303]},{"name":"SetupPromptForDiskW","features":[363,303]},{"name":"SetupPromptReboot","features":[363,303]},{"name":"SetupQueryDrivesInDiskSpaceListA","features":[363,303]},{"name":"SetupQueryDrivesInDiskSpaceListW","features":[363,303]},{"name":"SetupQueryFileLogA","features":[363,303]},{"name":"SetupQueryFileLogW","features":[363,303]},{"name":"SetupQueryInfFileInformationA","features":[363,303]},{"name":"SetupQueryInfFileInformationW","features":[363,303]},{"name":"SetupQueryInfOriginalFileInformationA","features":[363,303,331,333]},{"name":"SetupQueryInfOriginalFileInformationW","features":[363,303,331,333]},{"name":"SetupQueryInfVersionInformationA","features":[363,303]},{"name":"SetupQueryInfVersionInformationW","features":[363,303]},{"name":"SetupQuerySourceListA","features":[363,303]},{"name":"SetupQuerySourceListW","features":[363,303]},{"name":"SetupQuerySpaceRequiredOnDriveA","features":[363,303]},{"name":"SetupQuerySpaceRequiredOnDriveW","features":[363,303]},{"name":"SetupQueueCopyA","features":[363,303]},{"name":"SetupQueueCopyIndirectA","features":[363,303]},{"name":"SetupQueueCopyIndirectW","features":[363,303]},{"name":"SetupQueueCopySectionA","features":[363,303]},{"name":"SetupQueueCopySectionW","features":[363,303]},{"name":"SetupQueueCopyW","features":[363,303]},{"name":"SetupQueueDefaultCopyA","features":[363,303]},{"name":"SetupQueueDefaultCopyW","features":[363,303]},{"name":"SetupQueueDeleteA","features":[363,303]},{"name":"SetupQueueDeleteSectionA","features":[363,303]},{"name":"SetupQueueDeleteSectionW","features":[363,303]},{"name":"SetupQueueDeleteW","features":[363,303]},{"name":"SetupQueueRenameA","features":[363,303]},{"name":"SetupQueueRenameSectionA","features":[363,303]},{"name":"SetupQueueRenameSectionW","features":[363,303]},{"name":"SetupQueueRenameW","features":[363,303]},{"name":"SetupRemoveFileLogEntryA","features":[363,303]},{"name":"SetupRemoveFileLogEntryW","features":[363,303]},{"name":"SetupRemoveFromDiskSpaceListA","features":[363,303]},{"name":"SetupRemoveFromDiskSpaceListW","features":[363,303]},{"name":"SetupRemoveFromSourceListA","features":[363,303]},{"name":"SetupRemoveFromSourceListW","features":[363,303]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListA","features":[363,303]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListW","features":[363,303]},{"name":"SetupRemoveSectionFromDiskSpaceListA","features":[363,303]},{"name":"SetupRemoveSectionFromDiskSpaceListW","features":[363,303]},{"name":"SetupRenameErrorA","features":[363,303]},{"name":"SetupRenameErrorW","features":[363,303]},{"name":"SetupScanFileQueueA","features":[363,303]},{"name":"SetupScanFileQueueW","features":[363,303]},{"name":"SetupSetDirectoryIdA","features":[363,303]},{"name":"SetupSetDirectoryIdExA","features":[363,303]},{"name":"SetupSetDirectoryIdExW","features":[363,303]},{"name":"SetupSetDirectoryIdW","features":[363,303]},{"name":"SetupSetFileQueueAlternatePlatformA","features":[363,303,331,333]},{"name":"SetupSetFileQueueAlternatePlatformW","features":[363,303,331,333]},{"name":"SetupSetFileQueueFlags","features":[363,303]},{"name":"SetupSetNonInteractiveMode","features":[363,303]},{"name":"SetupSetPlatformPathOverrideA","features":[363,303]},{"name":"SetupSetPlatformPathOverrideW","features":[363,303]},{"name":"SetupSetSourceListA","features":[363,303]},{"name":"SetupSetSourceListW","features":[363,303]},{"name":"SetupSetThreadLogToken","features":[363]},{"name":"SetupTermDefaultQueueCallback","features":[363]},{"name":"SetupTerminateFileLog","features":[363,303]},{"name":"SetupUninstallNewlyCopiedInfs","features":[363,303]},{"name":"SetupUninstallOEMInfA","features":[363,303]},{"name":"SetupUninstallOEMInfW","features":[363,303]},{"name":"SetupVerifyInfFileA","features":[363,303,331,333]},{"name":"SetupVerifyInfFileW","features":[363,303,331,333]},{"name":"SetupWriteTextLog","features":[363]},{"name":"SetupWriteTextLogError","features":[363]},{"name":"SetupWriteTextLogInfLine","features":[363]},{"name":"UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS","features":[363]},{"name":"UpdateDriverForPlugAndPlayDevicesA","features":[363,303]},{"name":"UpdateDriverForPlugAndPlayDevicesW","features":[363,303]},{"name":"fDD_BYTE","features":[363]},{"name":"fDD_BYTE_AND_WORD","features":[363]},{"name":"fDD_BusMaster","features":[363]},{"name":"fDD_DWORD","features":[363]},{"name":"fDD_NoBusMaster","features":[363]},{"name":"fDD_TypeA","features":[363]},{"name":"fDD_TypeB","features":[363]},{"name":"fDD_TypeF","features":[363]},{"name":"fDD_TypeStandard","features":[363]},{"name":"fDD_WORD","features":[363]},{"name":"fIOD_10_BIT_DECODE","features":[363]},{"name":"fIOD_12_BIT_DECODE","features":[363]},{"name":"fIOD_16_BIT_DECODE","features":[363]},{"name":"fIOD_DECODE","features":[363]},{"name":"fIOD_IO","features":[363]},{"name":"fIOD_Memory","features":[363]},{"name":"fIOD_PASSIVE_DECODE","features":[363]},{"name":"fIOD_PORT_BAR","features":[363]},{"name":"fIOD_POSITIVE_DECODE","features":[363]},{"name":"fIOD_PortType","features":[363]},{"name":"fIOD_WINDOW_DECODE","features":[363]},{"name":"fIRQD_Edge","features":[363]},{"name":"fIRQD_Exclusive","features":[363]},{"name":"fIRQD_Level","features":[363]},{"name":"fIRQD_Level_Bit","features":[363]},{"name":"fIRQD_Share","features":[363]},{"name":"fIRQD_Share_Bit","features":[363]},{"name":"fMD_24","features":[363]},{"name":"fMD_32","features":[363]},{"name":"fMD_32_24","features":[363]},{"name":"fMD_Cacheable","features":[363]},{"name":"fMD_CombinedWrite","features":[363]},{"name":"fMD_CombinedWriteAllowed","features":[363]},{"name":"fMD_CombinedWriteDisallowed","features":[363]},{"name":"fMD_MEMORY_BAR","features":[363]},{"name":"fMD_MemoryType","features":[363]},{"name":"fMD_NonCacheable","features":[363]},{"name":"fMD_Pref","features":[363]},{"name":"fMD_PrefetchAllowed","features":[363]},{"name":"fMD_PrefetchDisallowed","features":[363]},{"name":"fMD_Prefetchable","features":[363]},{"name":"fMD_RAM","features":[363]},{"name":"fMD_ROM","features":[363]},{"name":"fMD_ReadAllowed","features":[363]},{"name":"fMD_ReadDisallowed","features":[363]},{"name":"fMD_Readable","features":[363]},{"name":"fMD_WINDOW_DECODE","features":[363]},{"name":"fPCD_ATTRIBUTES_PER_WINDOW","features":[363]},{"name":"fPCD_IO1_16","features":[363]},{"name":"fPCD_IO1_SRC_16","features":[363]},{"name":"fPCD_IO1_WS_16","features":[363]},{"name":"fPCD_IO1_ZW_8","features":[363]},{"name":"fPCD_IO2_16","features":[363]},{"name":"fPCD_IO2_SRC_16","features":[363]},{"name":"fPCD_IO2_WS_16","features":[363]},{"name":"fPCD_IO2_ZW_8","features":[363]},{"name":"fPCD_IO_16","features":[363]},{"name":"fPCD_IO_8","features":[363]},{"name":"fPCD_IO_SRC_16","features":[363]},{"name":"fPCD_IO_WS_16","features":[363]},{"name":"fPCD_IO_ZW_8","features":[363]},{"name":"fPCD_MEM1_16","features":[363]},{"name":"fPCD_MEM1_A","features":[363]},{"name":"fPCD_MEM1_WS_ONE","features":[363]},{"name":"fPCD_MEM1_WS_THREE","features":[363]},{"name":"fPCD_MEM1_WS_TWO","features":[363]},{"name":"fPCD_MEM2_16","features":[363]},{"name":"fPCD_MEM2_A","features":[363]},{"name":"fPCD_MEM2_WS_ONE","features":[363]},{"name":"fPCD_MEM2_WS_THREE","features":[363]},{"name":"fPCD_MEM2_WS_TWO","features":[363]},{"name":"fPCD_MEM_16","features":[363]},{"name":"fPCD_MEM_8","features":[363]},{"name":"fPCD_MEM_A","features":[363]},{"name":"fPCD_MEM_WS_ONE","features":[363]},{"name":"fPCD_MEM_WS_THREE","features":[363]},{"name":"fPCD_MEM_WS_TWO","features":[363]},{"name":"fPMF_AUDIO_ENABLE","features":[363]},{"name":"mDD_BusMaster","features":[363]},{"name":"mDD_Type","features":[363]},{"name":"mDD_Width","features":[363]},{"name":"mIRQD_Edge_Level","features":[363]},{"name":"mIRQD_Share","features":[363]},{"name":"mMD_32_24","features":[363]},{"name":"mMD_Cacheable","features":[363]},{"name":"mMD_CombinedWrite","features":[363]},{"name":"mMD_MemoryType","features":[363]},{"name":"mMD_Prefetchable","features":[363]},{"name":"mMD_Readable","features":[363]},{"name":"mPCD_IO_8_16","features":[363]},{"name":"mPCD_MEM1_WS","features":[363]},{"name":"mPCD_MEM2_WS","features":[363]},{"name":"mPCD_MEM_8_16","features":[363]},{"name":"mPCD_MEM_A_C","features":[363]},{"name":"mPCD_MEM_WS","features":[363]},{"name":"mPMF_AUDIO_ENABLE","features":[363]}],"373":[{"name":"DEVPROP_FILTER_EXPRESSION","features":[366,336]},{"name":"DEVPROP_OPERATOR","features":[366]},{"name":"DEVPROP_OPERATOR_AND_CLOSE","features":[366]},{"name":"DEVPROP_OPERATOR_AND_OPEN","features":[366]},{"name":"DEVPROP_OPERATOR_ARRAY_CONTAINS","features":[366]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH","features":[366]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_BITWISE_AND","features":[366]},{"name":"DEVPROP_OPERATOR_BITWISE_OR","features":[366]},{"name":"DEVPROP_OPERATOR_CONTAINS","features":[366]},{"name":"DEVPROP_OPERATOR_CONTAINS_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_ENDS_WITH","features":[366]},{"name":"DEVPROP_OPERATOR_ENDS_WITH_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_EQUALS","features":[366]},{"name":"DEVPROP_OPERATOR_EQUALS_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_EXISTS","features":[366]},{"name":"DEVPROP_OPERATOR_GREATER_THAN","features":[366]},{"name":"DEVPROP_OPERATOR_GREATER_THAN_EQUALS","features":[366]},{"name":"DEVPROP_OPERATOR_LESS_THAN","features":[366]},{"name":"DEVPROP_OPERATOR_LESS_THAN_EQUALS","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH","features":[366]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_MASK_ARRAY","features":[366]},{"name":"DEVPROP_OPERATOR_MASK_EVAL","features":[366]},{"name":"DEVPROP_OPERATOR_MASK_LIST","features":[366]},{"name":"DEVPROP_OPERATOR_MASK_LOGICAL","features":[366]},{"name":"DEVPROP_OPERATOR_MASK_MODIFIER","features":[366]},{"name":"DEVPROP_OPERATOR_MASK_NOT_LOGICAL","features":[366]},{"name":"DEVPROP_OPERATOR_MODIFIER_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_MODIFIER_NOT","features":[366]},{"name":"DEVPROP_OPERATOR_NONE","features":[366]},{"name":"DEVPROP_OPERATOR_NOT_CLOSE","features":[366]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS","features":[366]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS_IGNORE_CASE","features":[366]},{"name":"DEVPROP_OPERATOR_NOT_EXISTS","features":[366]},{"name":"DEVPROP_OPERATOR_NOT_OPEN","features":[366]},{"name":"DEVPROP_OPERATOR_OR_CLOSE","features":[366]},{"name":"DEVPROP_OPERATOR_OR_OPEN","features":[366]},{"name":"DEV_OBJECT","features":[366,336]},{"name":"DEV_OBJECT_TYPE","features":[366]},{"name":"DEV_QUERY_FLAGS","features":[366]},{"name":"DEV_QUERY_PARAMETER","features":[366,336]},{"name":"DEV_QUERY_RESULT_ACTION","features":[366]},{"name":"DEV_QUERY_RESULT_ACTION_DATA","features":[366,336]},{"name":"DEV_QUERY_STATE","features":[366]},{"name":"DevCloseObjectQuery","features":[366]},{"name":"DevCreateObjectQuery","features":[366,336]},{"name":"DevCreateObjectQueryEx","features":[366,336]},{"name":"DevCreateObjectQueryFromId","features":[366,336]},{"name":"DevCreateObjectQueryFromIdEx","features":[366,336]},{"name":"DevCreateObjectQueryFromIds","features":[366,336]},{"name":"DevCreateObjectQueryFromIdsEx","features":[366,336]},{"name":"DevFindProperty","features":[366,336]},{"name":"DevFreeObjectProperties","features":[366,336]},{"name":"DevFreeObjects","features":[366,336]},{"name":"DevGetObjectProperties","features":[366,336]},{"name":"DevGetObjectPropertiesEx","features":[366,336]},{"name":"DevGetObjects","features":[366,336]},{"name":"DevGetObjectsEx","features":[366,336]},{"name":"DevObjectTypeAEP","features":[366]},{"name":"DevObjectTypeAEPContainer","features":[366]},{"name":"DevObjectTypeAEPService","features":[366]},{"name":"DevObjectTypeDevice","features":[366]},{"name":"DevObjectTypeDeviceContainer","features":[366]},{"name":"DevObjectTypeDeviceContainerDisplay","features":[366]},{"name":"DevObjectTypeDeviceInstallerClass","features":[366]},{"name":"DevObjectTypeDeviceInterface","features":[366]},{"name":"DevObjectTypeDeviceInterfaceClass","features":[366]},{"name":"DevObjectTypeDeviceInterfaceDisplay","features":[366]},{"name":"DevObjectTypeDevicePanel","features":[366]},{"name":"DevObjectTypeUnknown","features":[366]},{"name":"DevQueryFlagAllProperties","features":[366]},{"name":"DevQueryFlagAsyncClose","features":[366]},{"name":"DevQueryFlagLocalize","features":[366]},{"name":"DevQueryFlagNone","features":[366]},{"name":"DevQueryFlagUpdateResults","features":[366]},{"name":"DevQueryResultAdd","features":[366]},{"name":"DevQueryResultRemove","features":[366]},{"name":"DevQueryResultStateChange","features":[366]},{"name":"DevQueryResultUpdate","features":[366]},{"name":"DevQueryStateAborted","features":[366]},{"name":"DevQueryStateClosed","features":[366]},{"name":"DevQueryStateEnumCompleted","features":[366]},{"name":"DevQueryStateInitialized","features":[366]},{"name":"HDEVQUERY","features":[366]},{"name":"PDEV_QUERY_RESULT_CALLBACK","features":[366,336]}],"374":[{"name":"AR_DISABLED","features":[367]},{"name":"AR_DOCKED","features":[367]},{"name":"AR_ENABLED","features":[367]},{"name":"AR_LAPTOP","features":[367]},{"name":"AR_MULTIMON","features":[367]},{"name":"AR_NOSENSOR","features":[367]},{"name":"AR_NOT_SUPPORTED","features":[367]},{"name":"AR_REMOTESESSION","features":[367]},{"name":"AR_STATE","features":[367]},{"name":"AR_SUPPRESSED","features":[367]},{"name":"Adapter","features":[367]},{"name":"Adapters","features":[367]},{"name":"BACKLIGHT_OPTIMIZATION_LEVEL","features":[367]},{"name":"BACKLIGHT_REDUCTION_GAMMA_RAMP","features":[367]},{"name":"BANK_POSITION","features":[367]},{"name":"BITMAP_ARRAY_BYTE","features":[367]},{"name":"BITMAP_BITS_BYTE_ALIGN","features":[367]},{"name":"BITMAP_BITS_PIXEL","features":[367]},{"name":"BITMAP_BITS_WORD_ALIGN","features":[367]},{"name":"BITMAP_PLANES","features":[367]},{"name":"BLENDOBJ","features":[367,314]},{"name":"BMF_16BPP","features":[367]},{"name":"BMF_1BPP","features":[367]},{"name":"BMF_24BPP","features":[367]},{"name":"BMF_32BPP","features":[367]},{"name":"BMF_4BPP","features":[367]},{"name":"BMF_4RLE","features":[367]},{"name":"BMF_8BPP","features":[367]},{"name":"BMF_8RLE","features":[367]},{"name":"BMF_ACC_NOTIFY","features":[367]},{"name":"BMF_DONTCACHE","features":[367]},{"name":"BMF_JPEG","features":[367]},{"name":"BMF_KMSECTION","features":[367]},{"name":"BMF_NOTSYSMEM","features":[367]},{"name":"BMF_NOZEROINIT","features":[367]},{"name":"BMF_PNG","features":[367]},{"name":"BMF_RESERVED","features":[367]},{"name":"BMF_RMT_ENTER","features":[367]},{"name":"BMF_TEMP_ALPHA","features":[367]},{"name":"BMF_TOPDOWN","features":[367]},{"name":"BMF_UMPDMEM","features":[367]},{"name":"BMF_USERMEM","features":[367]},{"name":"BMF_WINDOW_BLT","features":[367]},{"name":"BRIGHTNESS_INTERFACE_VERSION","features":[367]},{"name":"BRIGHTNESS_INTERFACE_VERSION_1","features":[367]},{"name":"BRIGHTNESS_INTERFACE_VERSION_2","features":[367]},{"name":"BRIGHTNESS_INTERFACE_VERSION_3","features":[367]},{"name":"BRIGHTNESS_LEVEL","features":[367]},{"name":"BRIGHTNESS_MAX_LEVEL_COUNT","features":[367]},{"name":"BRIGHTNESS_MAX_NIT_RANGE_COUNT","features":[367]},{"name":"BRIGHTNESS_NIT_RANGE","features":[367]},{"name":"BRIGHTNESS_NIT_RANGES","features":[367]},{"name":"BRUSHOBJ","features":[367]},{"name":"BRUSHOBJ_hGetColorTransform","features":[367,303]},{"name":"BRUSHOBJ_pvAllocRbrush","features":[367]},{"name":"BRUSHOBJ_pvGetRbrush","features":[367]},{"name":"BRUSHOBJ_ulGetBrushColor","features":[367]},{"name":"BR_CMYKCOLOR","features":[367]},{"name":"BR_DEVICE_ICM","features":[367]},{"name":"BR_HOST_ICM","features":[367]},{"name":"BR_ORIGCOLOR","features":[367]},{"name":"BacklightOptimizationDesktop","features":[367]},{"name":"BacklightOptimizationDimmed","features":[367]},{"name":"BacklightOptimizationDisable","features":[367]},{"name":"BacklightOptimizationDynamic","features":[367]},{"name":"BacklightOptimizationEDR","features":[367]},{"name":"BlackScreenDiagnosticsCalloutParam","features":[367]},{"name":"BlackScreenDiagnosticsData","features":[367]},{"name":"BlackScreenDisplayRecovery","features":[367]},{"name":"CDBEX_CROSSADAPTER","features":[367]},{"name":"CDBEX_DXINTEROP","features":[367]},{"name":"CDBEX_NTSHAREDSURFACEHANDLE","features":[367]},{"name":"CDBEX_REDIRECTION","features":[367]},{"name":"CDBEX_REUSE","features":[367]},{"name":"CDDDXGK_REDIRBITMAPPRESENTINFO","features":[367,303]},{"name":"CD_ANY","features":[367]},{"name":"CD_LEFTDOWN","features":[367]},{"name":"CD_LEFTUP","features":[367]},{"name":"CD_LEFTWARDS","features":[367]},{"name":"CD_RIGHTDOWN","features":[367]},{"name":"CD_RIGHTUP","features":[367]},{"name":"CD_UPWARDS","features":[367]},{"name":"CHAR_IMAGE_INFO","features":[367,368]},{"name":"CHAR_TYPE_LEADING","features":[367]},{"name":"CHAR_TYPE_SBCS","features":[367]},{"name":"CHAR_TYPE_TRAILING","features":[367]},{"name":"CHROMATICITY_COORDINATE","features":[367]},{"name":"CIECHROMA","features":[367]},{"name":"CLIPLINE","features":[367]},{"name":"CLIPOBJ","features":[367,303]},{"name":"CLIPOBJ_bEnum","features":[367,303]},{"name":"CLIPOBJ_cEnumStart","features":[367,303]},{"name":"CLIPOBJ_ppoGetPath","features":[367,303]},{"name":"COLORINFO","features":[367]},{"name":"COLORSPACE_TRANSFORM","features":[367]},{"name":"COLORSPACE_TRANSFORM_1DLUT_CAP","features":[367]},{"name":"COLORSPACE_TRANSFORM_3x4","features":[367]},{"name":"COLORSPACE_TRANSFORM_DATA_CAP","features":[367]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE","features":[367]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FIXED_POINT","features":[367]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FLOAT","features":[367]},{"name":"COLORSPACE_TRANSFORM_MATRIX_CAP","features":[367]},{"name":"COLORSPACE_TRANSFORM_MATRIX_V2","features":[367]},{"name":"COLORSPACE_TRANSFORM_SET_INPUT","features":[367]},{"name":"COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[367]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS","features":[367]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS_VERSION","features":[367]},{"name":"COLORSPACE_TRANSFORM_TYPE","features":[367]},{"name":"COLORSPACE_TRANSFORM_TYPE_DEFAULT","features":[367]},{"name":"COLORSPACE_TRANSFORM_TYPE_DXGI_1","features":[367]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_3x4","features":[367]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_V2","features":[367]},{"name":"COLORSPACE_TRANSFORM_TYPE_RGB256x3x16","features":[367]},{"name":"COLORSPACE_TRANSFORM_TYPE_UNINITIALIZED","features":[367]},{"name":"COLORSPACE_TRANSFORM_VERSION_1","features":[367]},{"name":"COLORSPACE_TRANSFORM_VERSION_DEFAULT","features":[367]},{"name":"COLORSPACE_TRANSFORM_VERSION_NOT_SUPPORTED","features":[367]},{"name":"CT_RECTANGLES","features":[367]},{"name":"CapabilitiesRequestAndCapabilitiesReply","features":[367,303]},{"name":"ColorSpaceTransformStageControl_Bypass","features":[367]},{"name":"ColorSpaceTransformStageControl_Enable","features":[367]},{"name":"ColorSpaceTransformStageControl_No_Change","features":[367]},{"name":"DCR_DRIVER","features":[367]},{"name":"DCR_HALFTONE","features":[367]},{"name":"DCR_SOLID","features":[367]},{"name":"DCT_DEFAULT","features":[367]},{"name":"DCT_FORCE_HIGH_PERFORMANCE","features":[367]},{"name":"DCT_FORCE_LOW_POWER","features":[367]},{"name":"DC_COMPLEX","features":[367]},{"name":"DC_RECT","features":[367]},{"name":"DC_TRIVIAL","features":[367]},{"name":"DDI_DRIVER_VERSION_NT4","features":[367]},{"name":"DDI_DRIVER_VERSION_NT5","features":[367]},{"name":"DDI_DRIVER_VERSION_NT5_01","features":[367]},{"name":"DDI_DRIVER_VERSION_NT5_01_SP1","features":[367]},{"name":"DDI_DRIVER_VERSION_SP3","features":[367]},{"name":"DDI_ERROR","features":[367]},{"name":"DD_FULLSCREEN_VIDEO_DEVICE_NAME","features":[367]},{"name":"DEVHTADJDATA","features":[367]},{"name":"DEVHTADJF_ADDITIVE_DEVICE","features":[367]},{"name":"DEVHTADJF_COLOR_DEVICE","features":[367]},{"name":"DEVHTINFO","features":[367]},{"name":"DEVINFO","features":[367,314]},{"name":"DEVPKEY_Device_ActivityId","features":[367,336]},{"name":"DEVPKEY_Device_AdapterLuid","features":[367,336]},{"name":"DEVPKEY_Device_TerminalLuid","features":[367,336]},{"name":"DEVPKEY_IndirectDisplay","features":[367,336]},{"name":"DHPDEV","features":[367]},{"name":"DHSURF","features":[367]},{"name":"DISPLAYCONFIG_2DREGION","features":[367]},{"name":"DISPLAYCONFIG_ADAPTER_NAME","features":[367,303]},{"name":"DISPLAYCONFIG_DESKTOP_IMAGE_INFO","features":[367,303]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADAPTER_NAME","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADVANCED_COLOR_INFO","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_MONITOR_SPECIALIZATION","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SDR_WHITE_LEVEL","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SOURCE_NAME","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SUPPORT_VIRTUAL_RESOLUTION","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_BASE_TYPE","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_NAME","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_PREFERRED_MODE","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_HEADER","features":[367,303]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_ADVANCED_COLOR_STATE","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_MONITOR_SPECIALIZATION","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_SUPPORT_VIRTUAL_RESOLUTION","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_TARGET_PERSISTENCE","features":[367]},{"name":"DISPLAYCONFIG_DEVICE_INFO_TYPE","features":[367]},{"name":"DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO","features":[367,303,314]},{"name":"DISPLAYCONFIG_GET_MONITOR_SPECIALIZATION","features":[367,303]},{"name":"DISPLAYCONFIG_MODE_INFO","features":[367,303]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE","features":[367]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_DESKTOP_IMAGE","features":[367]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_SOURCE","features":[367]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_TARGET","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPONENT_VIDEO","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPOSITE_VIDEO","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EMBEDDED","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EXTERNAL","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_USB_TUNNEL","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DVI","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HD15","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HDMI","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_VIRTUAL","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_WIRED","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INTERNAL","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_LVDS","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_MIRACAST","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_OTHER","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDI","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDTVDONGLE","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SVIDEO","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EMBEDDED","features":[367]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EXTERNAL","features":[367]},{"name":"DISPLAYCONFIG_PATH_INFO","features":[367,303]},{"name":"DISPLAYCONFIG_PATH_SOURCE_INFO","features":[367,303]},{"name":"DISPLAYCONFIG_PATH_TARGET_INFO","features":[367,303]},{"name":"DISPLAYCONFIG_PIXELFORMAT","features":[367]},{"name":"DISPLAYCONFIG_PIXELFORMAT_16BPP","features":[367]},{"name":"DISPLAYCONFIG_PIXELFORMAT_24BPP","features":[367]},{"name":"DISPLAYCONFIG_PIXELFORMAT_32BPP","features":[367]},{"name":"DISPLAYCONFIG_PIXELFORMAT_8BPP","features":[367]},{"name":"DISPLAYCONFIG_PIXELFORMAT_NONGDI","features":[367]},{"name":"DISPLAYCONFIG_RATIONAL","features":[367]},{"name":"DISPLAYCONFIG_ROTATION","features":[367]},{"name":"DISPLAYCONFIG_ROTATION_IDENTITY","features":[367]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE180","features":[367]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE270","features":[367]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE90","features":[367]},{"name":"DISPLAYCONFIG_SCALING","features":[367]},{"name":"DISPLAYCONFIG_SCALING_ASPECTRATIOCENTEREDMAX","features":[367]},{"name":"DISPLAYCONFIG_SCALING_CENTERED","features":[367]},{"name":"DISPLAYCONFIG_SCALING_CUSTOM","features":[367]},{"name":"DISPLAYCONFIG_SCALING_IDENTITY","features":[367]},{"name":"DISPLAYCONFIG_SCALING_PREFERRED","features":[367]},{"name":"DISPLAYCONFIG_SCALING_STRETCHED","features":[367]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING","features":[367]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED","features":[367]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_LOWERFIELDFIRST","features":[367]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_UPPERFIELDFIRST","features":[367]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_PROGRESSIVE","features":[367]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_UNSPECIFIED","features":[367]},{"name":"DISPLAYCONFIG_SDR_WHITE_LEVEL","features":[367,303]},{"name":"DISPLAYCONFIG_SET_ADVANCED_COLOR_STATE","features":[367,303]},{"name":"DISPLAYCONFIG_SET_MONITOR_SPECIALIZATION","features":[367,303]},{"name":"DISPLAYCONFIG_SET_TARGET_PERSISTENCE","features":[367,303]},{"name":"DISPLAYCONFIG_SOURCE_DEVICE_NAME","features":[367,303]},{"name":"DISPLAYCONFIG_SOURCE_MODE","features":[367,303]},{"name":"DISPLAYCONFIG_SUPPORT_VIRTUAL_RESOLUTION","features":[367,303]},{"name":"DISPLAYCONFIG_TARGET_BASE_TYPE","features":[367,303]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME","features":[367,303]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME_FLAGS","features":[367]},{"name":"DISPLAYCONFIG_TARGET_MODE","features":[367]},{"name":"DISPLAYCONFIG_TARGET_PREFERRED_MODE","features":[367,303]},{"name":"DISPLAYCONFIG_TOPOLOGY_CLONE","features":[367]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTEND","features":[367]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTERNAL","features":[367]},{"name":"DISPLAYCONFIG_TOPOLOGY_ID","features":[367]},{"name":"DISPLAYCONFIG_TOPOLOGY_INTERNAL","features":[367]},{"name":"DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY","features":[367]},{"name":"DISPLAYCONFIG_VIDEO_SIGNAL_INFO","features":[367]},{"name":"DISPLAYPOLICY_AC","features":[367]},{"name":"DISPLAYPOLICY_DC","features":[367]},{"name":"DISPLAY_BRIGHTNESS","features":[367]},{"name":"DM_DEFAULT","features":[367]},{"name":"DM_MONOCHROME","features":[367]},{"name":"DN_ACCELERATION_LEVEL","features":[367]},{"name":"DN_ASSOCIATE_WINDOW","features":[367]},{"name":"DN_COMPOSITION_CHANGED","features":[367]},{"name":"DN_DEVICE_ORIGIN","features":[367]},{"name":"DN_DRAWING_BEGIN","features":[367]},{"name":"DN_DRAWING_BEGIN_APIBITMAP","features":[367]},{"name":"DN_SLEEP_MODE","features":[367]},{"name":"DN_SURFOBJ_DESTRUCTION","features":[367]},{"name":"DRD_ERROR","features":[367]},{"name":"DRD_SUCCESS","features":[367]},{"name":"DRH_APIBITMAP","features":[367]},{"name":"DRH_APIBITMAPDATA","features":[367,303]},{"name":"DRIVEROBJ","features":[367,303]},{"name":"DRVENABLEDATA","features":[367]},{"name":"DRVFN","features":[367]},{"name":"DRVQUERY_USERMODE","features":[367]},{"name":"DSI_CHECKSUM_ERROR_CORRECTED","features":[367]},{"name":"DSI_CHECKSUM_ERROR_NOT_CORRECTED","features":[367]},{"name":"DSI_CONTENTION_DETECTED","features":[367]},{"name":"DSI_CONTROL_TRANSMISSION_MODE","features":[367]},{"name":"DSI_DSI_DATA_TYPE_NOT_RECOGNIZED","features":[367]},{"name":"DSI_DSI_PROTOCOL_VIOLATION","features":[367]},{"name":"DSI_DSI_VC_ID_INVALID","features":[367]},{"name":"DSI_EOT_SYNC_ERROR","features":[367]},{"name":"DSI_ESCAPE_MODE_ENTRY_COMMAND_ERROR","features":[367]},{"name":"DSI_FALSE_CONTROL_ERROR","features":[367]},{"name":"DSI_INVALID_PACKET_INDEX","features":[367]},{"name":"DSI_INVALID_TRANSMISSION_LENGTH","features":[367]},{"name":"DSI_LONG_PACKET_PAYLOAD_CHECKSUM_ERROR","features":[367]},{"name":"DSI_LOW_POWER_TRANSMIT_SYNC_ERROR","features":[367]},{"name":"DSI_PACKET_EMBEDDED_PAYLOAD_SIZE","features":[367]},{"name":"DSI_PERIPHERAL_TIMEOUT_ERROR","features":[367]},{"name":"DSI_SOT_ERROR","features":[367]},{"name":"DSI_SOT_SYNC_ERROR","features":[367]},{"name":"DSS_FLUSH_EVENT","features":[367]},{"name":"DSS_RESERVED","features":[367]},{"name":"DSS_RESERVED1","features":[367]},{"name":"DSS_RESERVED2","features":[367]},{"name":"DSS_TIMER_EVENT","features":[367]},{"name":"DXGK_WIN32K_PARAM_DATA","features":[367]},{"name":"DXGK_WIN32K_PARAM_FLAG_DISABLEVIEW","features":[367]},{"name":"DXGK_WIN32K_PARAM_FLAG_MODESWITCH","features":[367]},{"name":"DXGK_WIN32K_PARAM_FLAG_UPDATEREGISTRY","features":[367]},{"name":"DegaussMonitor","features":[367,303]},{"name":"DestroyPhysicalMonitor","features":[367,303]},{"name":"DestroyPhysicalMonitors","features":[367,303]},{"name":"DisplayConfigGetDeviceInfo","features":[367,303]},{"name":"DisplayConfigSetDeviceInfo","features":[367,303]},{"name":"DisplayMode","features":[367,303,314]},{"name":"DisplayModes","features":[367,303,314]},{"name":"ECS_REDRAW","features":[367]},{"name":"ECS_TEARDOWN","features":[367]},{"name":"ED_ABORTDOC","features":[367]},{"name":"EHN_ERROR","features":[367]},{"name":"EHN_RESTORED","features":[367]},{"name":"EMFINFO","features":[367,314]},{"name":"ENDCAP_BUTT","features":[367]},{"name":"ENDCAP_ROUND","features":[367]},{"name":"ENDCAP_SQUARE","features":[367]},{"name":"ENGSAFESEMAPHORE","features":[367]},{"name":"ENG_DEVICE_ATTRIBUTE","features":[367]},{"name":"ENG_EVENT","features":[367]},{"name":"ENG_FNT_CACHE_READ_FAULT","features":[367]},{"name":"ENG_FNT_CACHE_WRITE_FAULT","features":[367]},{"name":"ENG_SYSTEM_ATTRIBUTE","features":[367]},{"name":"ENG_TIME_FIELDS","features":[367]},{"name":"ENUMRECTS","features":[367,303]},{"name":"EngAcquireSemaphore","features":[367]},{"name":"EngAlphaBlend","features":[367,303,314]},{"name":"EngAssociateSurface","features":[367,303]},{"name":"EngBitBlt","features":[367,303]},{"name":"EngCheckAbort","features":[367,303]},{"name":"EngComputeGlyphSet","features":[367]},{"name":"EngCopyBits","features":[367,303]},{"name":"EngCreateBitmap","features":[367,303,314]},{"name":"EngCreateClip","features":[367,303]},{"name":"EngCreateDeviceBitmap","features":[367,303,314]},{"name":"EngCreateDeviceSurface","features":[367,303]},{"name":"EngCreatePalette","features":[367,314]},{"name":"EngCreateSemaphore","features":[367]},{"name":"EngDeleteClip","features":[367,303]},{"name":"EngDeletePalette","features":[367,303,314]},{"name":"EngDeletePath","features":[367]},{"name":"EngDeleteSemaphore","features":[367]},{"name":"EngDeleteSurface","features":[367,303]},{"name":"EngEraseSurface","features":[367,303]},{"name":"EngFillPath","features":[367,303]},{"name":"EngFindResource","features":[367,303]},{"name":"EngFreeModule","features":[367,303]},{"name":"EngGetCurrentCodePage","features":[367]},{"name":"EngGetDriverName","features":[367]},{"name":"EngGetPrinterDataFileName","features":[367]},{"name":"EngGradientFill","features":[367,303,314]},{"name":"EngLineTo","features":[367,303]},{"name":"EngLoadModule","features":[367,303]},{"name":"EngLockSurface","features":[367,303]},{"name":"EngMarkBandingSurface","features":[367,303]},{"name":"EngMultiByteToUnicodeN","features":[367]},{"name":"EngMultiByteToWideChar","features":[367]},{"name":"EngNumberOfProcessors","features":[367]},{"name":"EngOptimumAvailableSystemMemory","features":[367]},{"name":"EngOptimumAvailableUserMemory","features":[367]},{"name":"EngPaint","features":[367,303]},{"name":"EngPlgBlt","features":[367,303,314]},{"name":"EngProcessorFeature","features":[367]},{"name":"EngQueryEMFInfo","features":[367,303,314]},{"name":"EngQueryLocalTime","features":[367]},{"name":"EngReleaseSemaphore","features":[367]},{"name":"EngStretchBlt","features":[367,303,314]},{"name":"EngStretchBltROP","features":[367,303,314]},{"name":"EngStrokeAndFillPath","features":[367,303]},{"name":"EngStrokePath","features":[367,303]},{"name":"EngTextOut","features":[367,303]},{"name":"EngTransparentBlt","features":[367,303]},{"name":"EngUnicodeToMultiByteN","features":[367]},{"name":"EngUnlockSurface","features":[367,303]},{"name":"EngWideCharToMultiByte","features":[367]},{"name":"FC_COMPLEX","features":[367]},{"name":"FC_RECT","features":[367]},{"name":"FC_RECT4","features":[367]},{"name":"FDM_TYPE_BM_SIDE_CONST","features":[367]},{"name":"FDM_TYPE_CHAR_INC_EQUAL_BM_BASE","features":[367]},{"name":"FDM_TYPE_CONST_BEARINGS","features":[367]},{"name":"FDM_TYPE_MAXEXT_EQUAL_BM_SIDE","features":[367]},{"name":"FDM_TYPE_ZERO_BEARINGS","features":[367]},{"name":"FD_DEVICEMETRICS","features":[367,303]},{"name":"FD_ERROR","features":[367]},{"name":"FD_GLYPHATTR","features":[367]},{"name":"FD_GLYPHSET","features":[367]},{"name":"FD_KERNINGPAIR","features":[367]},{"name":"FD_LIGATURE","features":[367]},{"name":"FD_NEGATIVE_FONT","features":[367]},{"name":"FD_XFORM","features":[367]},{"name":"FD_XFORM","features":[367]},{"name":"FF_IGNORED_SIGNATURE","features":[367]},{"name":"FF_SIGNATURE_VERIFIED","features":[367]},{"name":"FLOATOBJ","features":[367]},{"name":"FLOATOBJ_XFORM","features":[367]},{"name":"FLOATOBJ_XFORM","features":[367]},{"name":"FLOAT_LONG","features":[367]},{"name":"FLOAT_LONG","features":[367]},{"name":"FL_NONPAGED_MEMORY","features":[367]},{"name":"FL_NON_SESSION","features":[367]},{"name":"FL_ZERO_MEMORY","features":[367]},{"name":"FM_EDITABLE_EMBED","features":[367]},{"name":"FM_INFO_16BPP","features":[367]},{"name":"FM_INFO_1BPP","features":[367]},{"name":"FM_INFO_24BPP","features":[367]},{"name":"FM_INFO_32BPP","features":[367]},{"name":"FM_INFO_4BPP","features":[367]},{"name":"FM_INFO_8BPP","features":[367]},{"name":"FM_INFO_90DEGREE_ROTATIONS","features":[367]},{"name":"FM_INFO_ANISOTROPIC_SCALING_ONLY","features":[367]},{"name":"FM_INFO_ARB_XFORMS","features":[367]},{"name":"FM_INFO_CONSTANT_WIDTH","features":[367]},{"name":"FM_INFO_DBCS_FIXED_PITCH","features":[367]},{"name":"FM_INFO_DO_NOT_ENUMERATE","features":[367]},{"name":"FM_INFO_DSIG","features":[367]},{"name":"FM_INFO_FAMILY_EQUIV","features":[367]},{"name":"FM_INFO_IGNORE_TC_RA_ABLE","features":[367]},{"name":"FM_INFO_INTEGER_WIDTH","features":[367]},{"name":"FM_INFO_INTEGRAL_SCALING","features":[367]},{"name":"FM_INFO_ISOTROPIC_SCALING_ONLY","features":[367]},{"name":"FM_INFO_NONNEGATIVE_AC","features":[367]},{"name":"FM_INFO_NOT_CONTIGUOUS","features":[367]},{"name":"FM_INFO_OPTICALLY_FIXED_PITCH","features":[367]},{"name":"FM_INFO_RETURNS_BITMAPS","features":[367]},{"name":"FM_INFO_RETURNS_OUTLINES","features":[367]},{"name":"FM_INFO_RETURNS_STROKES","features":[367]},{"name":"FM_INFO_RIGHT_HANDED","features":[367]},{"name":"FM_INFO_TECH_BITMAP","features":[367]},{"name":"FM_INFO_TECH_CFF","features":[367]},{"name":"FM_INFO_TECH_MM","features":[367]},{"name":"FM_INFO_TECH_OUTLINE_NOT_TRUETYPE","features":[367]},{"name":"FM_INFO_TECH_STROKE","features":[367]},{"name":"FM_INFO_TECH_TRUETYPE","features":[367]},{"name":"FM_INFO_TECH_TYPE1","features":[367]},{"name":"FM_NO_EMBEDDING","features":[367]},{"name":"FM_PANOSE_CULTURE_LATIN","features":[367]},{"name":"FM_READONLY_EMBED","features":[367]},{"name":"FM_SEL_BOLD","features":[367]},{"name":"FM_SEL_ITALIC","features":[367]},{"name":"FM_SEL_NEGATIVE","features":[367]},{"name":"FM_SEL_OUTLINED","features":[367]},{"name":"FM_SEL_REGULAR","features":[367]},{"name":"FM_SEL_STRIKEOUT","features":[367]},{"name":"FM_SEL_UNDERSCORE","features":[367]},{"name":"FM_TYPE_LICENSED","features":[367]},{"name":"FM_VERSION_NUMBER","features":[367]},{"name":"FONTDIFF","features":[367,303]},{"name":"FONTINFO","features":[367]},{"name":"FONTOBJ","features":[367,303]},{"name":"FONTOBJ_cGetAllGlyphHandles","features":[367,303]},{"name":"FONTOBJ_cGetGlyphs","features":[367,303]},{"name":"FONTOBJ_pQueryGlyphAttrs","features":[367,303]},{"name":"FONTOBJ_pfdg","features":[367,303]},{"name":"FONTOBJ_pifi","features":[367,303,314]},{"name":"FONTOBJ_pvTrueTypeFontFile","features":[367,303]},{"name":"FONTOBJ_pxoGetXform","features":[367,303]},{"name":"FONTOBJ_vGetInfo","features":[367,303]},{"name":"FONTSIM","features":[367]},{"name":"FONT_IMAGE_INFO","features":[367,368]},{"name":"FO_ATTR_MODE_ROTATE","features":[367]},{"name":"FO_CFF","features":[367]},{"name":"FO_CLEARTYPENATURAL_X","features":[367]},{"name":"FO_CLEARTYPE_X","features":[367]},{"name":"FO_CLEARTYPE_Y","features":[367]},{"name":"FO_DBCS_FONT","features":[367]},{"name":"FO_DEVICE_FONT","features":[367]},{"name":"FO_EM_HEIGHT","features":[367]},{"name":"FO_GLYPHBITS","features":[367]},{"name":"FO_GRAY16","features":[367]},{"name":"FO_HGLYPHS","features":[367]},{"name":"FO_MULTIPLEMASTER","features":[367]},{"name":"FO_NOCLEARTYPE","features":[367]},{"name":"FO_NOGRAY16","features":[367]},{"name":"FO_NOHINTS","features":[367]},{"name":"FO_NO_CHOICE","features":[367]},{"name":"FO_OUTLINE_CAPABLE","features":[367]},{"name":"FO_PATHOBJ","features":[367]},{"name":"FO_POSTSCRIPT","features":[367]},{"name":"FO_SIM_BOLD","features":[367]},{"name":"FO_SIM_ITALIC","features":[367]},{"name":"FO_VERT_FACE","features":[367]},{"name":"FP_ALTERNATEMODE","features":[367]},{"name":"FP_WINDINGMODE","features":[367]},{"name":"FREEOBJPROC","features":[367,303]},{"name":"FSCNTL_SCREEN_INFO","features":[367,368]},{"name":"FSVIDEO_COPY_FRAME_BUFFER","features":[367,368]},{"name":"FSVIDEO_CURSOR_POSITION","features":[367]},{"name":"FSVIDEO_MODE_INFORMATION","features":[367]},{"name":"FSVIDEO_REVERSE_MOUSE_POINTER","features":[367,368]},{"name":"FSVIDEO_SCREEN_INFORMATION","features":[367,368]},{"name":"FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[367,368]},{"name":"GAMMARAMP","features":[367]},{"name":"GAMMA_RAMP_DXGI_1","features":[367]},{"name":"GAMMA_RAMP_RGB","features":[367]},{"name":"GAMMA_RAMP_RGB256x3x16","features":[367]},{"name":"GCAPS2_ACC_DRIVER","features":[367]},{"name":"GCAPS2_ALPHACURSOR","features":[367]},{"name":"GCAPS2_BITMAPEXREUSE","features":[367]},{"name":"GCAPS2_CHANGEGAMMARAMP","features":[367]},{"name":"GCAPS2_CLEARTYPE","features":[367]},{"name":"GCAPS2_EXCLUDELAYERED","features":[367]},{"name":"GCAPS2_ICD_MULTIMON","features":[367]},{"name":"GCAPS2_INCLUDEAPIBITMAPS","features":[367]},{"name":"GCAPS2_JPEGSRC","features":[367]},{"name":"GCAPS2_MOUSETRAILS","features":[367]},{"name":"GCAPS2_PNGSRC","features":[367]},{"name":"GCAPS2_REMOTEDRIVER","features":[367]},{"name":"GCAPS2_RESERVED1","features":[367]},{"name":"GCAPS2_SHOWHIDDENPOINTER","features":[367]},{"name":"GCAPS2_SYNCFLUSH","features":[367]},{"name":"GCAPS2_SYNCTIMER","features":[367]},{"name":"GCAPS2_xxxx","features":[367]},{"name":"GCAPS_ALTERNATEFILL","features":[367]},{"name":"GCAPS_ARBRUSHOPAQUE","features":[367]},{"name":"GCAPS_ARBRUSHTEXT","features":[367]},{"name":"GCAPS_ASYNCCHANGE","features":[367]},{"name":"GCAPS_ASYNCMOVE","features":[367]},{"name":"GCAPS_BEZIERS","features":[367]},{"name":"GCAPS_CMYKCOLOR","features":[367]},{"name":"GCAPS_COLOR_DITHER","features":[367]},{"name":"GCAPS_DIRECTDRAW","features":[367]},{"name":"GCAPS_DITHERONREALIZE","features":[367]},{"name":"GCAPS_DONTJOURNAL","features":[367]},{"name":"GCAPS_FONT_RASTERIZER","features":[367]},{"name":"GCAPS_FORCEDITHER","features":[367]},{"name":"GCAPS_GEOMETRICWIDE","features":[367]},{"name":"GCAPS_GRAY16","features":[367]},{"name":"GCAPS_HALFTONE","features":[367]},{"name":"GCAPS_HIGHRESTEXT","features":[367]},{"name":"GCAPS_HORIZSTRIKE","features":[367]},{"name":"GCAPS_ICM","features":[367]},{"name":"GCAPS_LAYERED","features":[367]},{"name":"GCAPS_MONO_DITHER","features":[367]},{"name":"GCAPS_NO64BITMEMACCESS","features":[367]},{"name":"GCAPS_NUP","features":[367]},{"name":"GCAPS_OPAQUERECT","features":[367]},{"name":"GCAPS_PALMANAGED","features":[367]},{"name":"GCAPS_PANNING","features":[367]},{"name":"GCAPS_SCREENPRECISION","features":[367]},{"name":"GCAPS_VECTORFONT","features":[367]},{"name":"GCAPS_VERTSTRIKE","features":[367]},{"name":"GCAPS_WINDINGFILL","features":[367]},{"name":"GDIINFO","features":[367,303]},{"name":"GDI_DRIVER_VERSION","features":[367]},{"name":"GETCONNECTEDIDS_SOURCE","features":[367]},{"name":"GETCONNECTEDIDS_TARGET","features":[367]},{"name":"GLYPHBITS","features":[367,303]},{"name":"GLYPHDATA","features":[367,303]},{"name":"GLYPHDEF","features":[367,303]},{"name":"GLYPHPOS","features":[367,303]},{"name":"GS_16BIT_HANDLES","features":[367]},{"name":"GS_8BIT_HANDLES","features":[367]},{"name":"GS_UNICODE_HANDLES","features":[367]},{"name":"GUID_DEVINTERFACE_DISPLAY_ADAPTER","features":[367]},{"name":"GUID_DEVINTERFACE_MONITOR","features":[367]},{"name":"GUID_DEVINTERFACE_VIDEO_OUTPUT_ARRIVAL","features":[367]},{"name":"GUID_DISPLAY_DEVICE_ARRIVAL","features":[367]},{"name":"GUID_MONITOR_OVERRIDE_PSEUDO_SPECIALIZED","features":[367]},{"name":"GX_GENERAL","features":[367]},{"name":"GX_IDENTITY","features":[367]},{"name":"GX_OFFSET","features":[367]},{"name":"GX_SCALE","features":[367]},{"name":"GetAutoRotationState","features":[367,303]},{"name":"GetCapabilitiesStringLength","features":[367,303]},{"name":"GetDisplayAutoRotationPreferences","features":[367,303]},{"name":"GetDisplayConfigBufferSizes","features":[367,303]},{"name":"GetMonitorBrightness","features":[367,303]},{"name":"GetMonitorCapabilities","features":[367,303]},{"name":"GetMonitorColorTemperature","features":[367,303]},{"name":"GetMonitorContrast","features":[367,303]},{"name":"GetMonitorDisplayAreaPosition","features":[367,303]},{"name":"GetMonitorDisplayAreaSize","features":[367,303]},{"name":"GetMonitorRedGreenOrBlueDrive","features":[367,303]},{"name":"GetMonitorRedGreenOrBlueGain","features":[367,303]},{"name":"GetMonitorTechnologyType","features":[367,303]},{"name":"GetNumberOfPhysicalMonitorsFromHMONITOR","features":[367,303,314]},{"name":"GetNumberOfPhysicalMonitorsFromIDirect3DDevice9","features":[367,312]},{"name":"GetPhysicalMonitorsFromHMONITOR","features":[367,303,314]},{"name":"GetPhysicalMonitorsFromIDirect3DDevice9","features":[367,303,312]},{"name":"GetTimingReport","features":[367,303]},{"name":"GetVCPFeatureAndVCPFeatureReply","features":[367,303]},{"name":"HBM","features":[367]},{"name":"HDEV","features":[367]},{"name":"HDRVOBJ","features":[367]},{"name":"HFASTMUTEX","features":[367]},{"name":"HOOK_ALPHABLEND","features":[367]},{"name":"HOOK_BITBLT","features":[367]},{"name":"HOOK_COPYBITS","features":[367]},{"name":"HOOK_FILLPATH","features":[367]},{"name":"HOOK_FLAGS","features":[367]},{"name":"HOOK_GRADIENTFILL","features":[367]},{"name":"HOOK_LINETO","features":[367]},{"name":"HOOK_MOVEPANNING","features":[367]},{"name":"HOOK_PAINT","features":[367]},{"name":"HOOK_PLGBLT","features":[367]},{"name":"HOOK_STRETCHBLT","features":[367]},{"name":"HOOK_STRETCHBLTROP","features":[367]},{"name":"HOOK_STROKEANDFILLPATH","features":[367]},{"name":"HOOK_STROKEPATH","features":[367]},{"name":"HOOK_SYNCHRONIZE","features":[367]},{"name":"HOOK_SYNCHRONIZEACCESS","features":[367]},{"name":"HOOK_TEXTOUT","features":[367]},{"name":"HOOK_TRANSPARENTBLT","features":[367]},{"name":"HOST_DSI_BAD_TRANSMISSION_MODE","features":[367]},{"name":"HOST_DSI_DEVICE_NOT_READY","features":[367]},{"name":"HOST_DSI_DEVICE_RESET","features":[367]},{"name":"HOST_DSI_DRIVER_REJECTED_PACKET","features":[367]},{"name":"HOST_DSI_INTERFACE_RESET","features":[367]},{"name":"HOST_DSI_INVALID_TRANSMISSION","features":[367]},{"name":"HOST_DSI_OS_REJECTED_PACKET","features":[367]},{"name":"HOST_DSI_TRANSMISSION_CANCELLED","features":[367]},{"name":"HOST_DSI_TRANSMISSION_DROPPED","features":[367]},{"name":"HOST_DSI_TRANSMISSION_TIMEOUT","features":[367]},{"name":"HSEMAPHORE","features":[367]},{"name":"HSURF","features":[367]},{"name":"HS_DDI_MAX","features":[367]},{"name":"HT_FLAG_8BPP_CMY332_MASK","features":[367]},{"name":"HT_FLAG_ADDITIVE_PRIMS","features":[367]},{"name":"HT_FLAG_DO_DEVCLR_XFORM","features":[367]},{"name":"HT_FLAG_HAS_BLACK_DYE","features":[367]},{"name":"HT_FLAG_INK_ABSORPTION_IDX0","features":[367]},{"name":"HT_FLAG_INK_ABSORPTION_IDX1","features":[367]},{"name":"HT_FLAG_INK_ABSORPTION_IDX2","features":[367]},{"name":"HT_FLAG_INK_ABSORPTION_IDX3","features":[367]},{"name":"HT_FLAG_INK_ABSORPTION_INDICES","features":[367]},{"name":"HT_FLAG_INK_HIGH_ABSORPTION","features":[367]},{"name":"HT_FLAG_INVERT_8BPP_BITMASK_IDX","features":[367]},{"name":"HT_FLAG_LOWER_INK_ABSORPTION","features":[367]},{"name":"HT_FLAG_LOWEST_INK_ABSORPTION","features":[367]},{"name":"HT_FLAG_LOW_INK_ABSORPTION","features":[367]},{"name":"HT_FLAG_NORMAL_INK_ABSORPTION","features":[367]},{"name":"HT_FLAG_OUTPUT_CMY","features":[367]},{"name":"HT_FLAG_PRINT_DRAFT_MODE","features":[367]},{"name":"HT_FLAG_SQUARE_DEVICE_PEL","features":[367]},{"name":"HT_FLAG_USE_8BPP_BITMASK","features":[367]},{"name":"HT_FORMAT_16BPP","features":[367]},{"name":"HT_FORMAT_1BPP","features":[367]},{"name":"HT_FORMAT_24BPP","features":[367]},{"name":"HT_FORMAT_32BPP","features":[367]},{"name":"HT_FORMAT_4BPP","features":[367]},{"name":"HT_FORMAT_4BPP_IRGB","features":[367]},{"name":"HT_FORMAT_8BPP","features":[367]},{"name":"HT_Get8BPPFormatPalette","features":[367,314]},{"name":"HT_Get8BPPMaskPalette","features":[367,303,314]},{"name":"HT_PATSIZE_10x10","features":[367]},{"name":"HT_PATSIZE_10x10_M","features":[367]},{"name":"HT_PATSIZE_12x12","features":[367]},{"name":"HT_PATSIZE_12x12_M","features":[367]},{"name":"HT_PATSIZE_14x14","features":[367]},{"name":"HT_PATSIZE_14x14_M","features":[367]},{"name":"HT_PATSIZE_16x16","features":[367]},{"name":"HT_PATSIZE_16x16_M","features":[367]},{"name":"HT_PATSIZE_2x2","features":[367]},{"name":"HT_PATSIZE_2x2_M","features":[367]},{"name":"HT_PATSIZE_4x4","features":[367]},{"name":"HT_PATSIZE_4x4_M","features":[367]},{"name":"HT_PATSIZE_6x6","features":[367]},{"name":"HT_PATSIZE_6x6_M","features":[367]},{"name":"HT_PATSIZE_8x8","features":[367]},{"name":"HT_PATSIZE_8x8_M","features":[367]},{"name":"HT_PATSIZE_DEFAULT","features":[367]},{"name":"HT_PATSIZE_MAX_INDEX","features":[367]},{"name":"HT_PATSIZE_SUPERCELL","features":[367]},{"name":"HT_PATSIZE_SUPERCELL_M","features":[367]},{"name":"HT_PATSIZE_USER","features":[367]},{"name":"HT_USERPAT_CX_MAX","features":[367]},{"name":"HT_USERPAT_CX_MIN","features":[367]},{"name":"HT_USERPAT_CY_MAX","features":[367]},{"name":"HT_USERPAT_CY_MIN","features":[367]},{"name":"ICloneViewHelper","features":[367]},{"name":"IFIEXTRA","features":[367]},{"name":"IFIMETRICS","features":[367,303,314]},{"name":"IFIMETRICS","features":[367,303,314]},{"name":"IGRF_RGB_256BYTES","features":[367]},{"name":"IGRF_RGB_256WORDS","features":[367]},{"name":"INDEX_DrvAccumulateD3DDirtyRect","features":[367]},{"name":"INDEX_DrvAlphaBlend","features":[367]},{"name":"INDEX_DrvAssertMode","features":[367]},{"name":"INDEX_DrvAssociateSharedSurface","features":[367]},{"name":"INDEX_DrvBitBlt","features":[367]},{"name":"INDEX_DrvCompletePDEV","features":[367]},{"name":"INDEX_DrvCopyBits","features":[367]},{"name":"INDEX_DrvCreateDeviceBitmap","features":[367]},{"name":"INDEX_DrvCreateDeviceBitmapEx","features":[367]},{"name":"INDEX_DrvDeleteDeviceBitmap","features":[367]},{"name":"INDEX_DrvDeleteDeviceBitmapEx","features":[367]},{"name":"INDEX_DrvDeriveSurface","features":[367]},{"name":"INDEX_DrvDescribePixelFormat","features":[367]},{"name":"INDEX_DrvDestroyFont","features":[367]},{"name":"INDEX_DrvDisableDirectDraw","features":[367]},{"name":"INDEX_DrvDisableDriver","features":[367]},{"name":"INDEX_DrvDisablePDEV","features":[367]},{"name":"INDEX_DrvDisableSurface","features":[367]},{"name":"INDEX_DrvDitherColor","features":[367]},{"name":"INDEX_DrvDrawEscape","features":[367]},{"name":"INDEX_DrvEnableDirectDraw","features":[367]},{"name":"INDEX_DrvEnablePDEV","features":[367]},{"name":"INDEX_DrvEnableSurface","features":[367]},{"name":"INDEX_DrvEndDoc","features":[367]},{"name":"INDEX_DrvEndDxInterop","features":[367]},{"name":"INDEX_DrvEscape","features":[367]},{"name":"INDEX_DrvFillPath","features":[367]},{"name":"INDEX_DrvFontManagement","features":[367]},{"name":"INDEX_DrvFree","features":[367]},{"name":"INDEX_DrvGetDirectDrawInfo","features":[367]},{"name":"INDEX_DrvGetGlyphMode","features":[367]},{"name":"INDEX_DrvGetModes","features":[367]},{"name":"INDEX_DrvGetSynthesizedFontFiles","features":[367]},{"name":"INDEX_DrvGetTrueTypeFile","features":[367]},{"name":"INDEX_DrvGradientFill","features":[367]},{"name":"INDEX_DrvIcmCheckBitmapBits","features":[367]},{"name":"INDEX_DrvIcmCreateColorTransform","features":[367]},{"name":"INDEX_DrvIcmDeleteColorTransform","features":[367]},{"name":"INDEX_DrvIcmSetDeviceGammaRamp","features":[367]},{"name":"INDEX_DrvLineTo","features":[367]},{"name":"INDEX_DrvLoadFontFile","features":[367]},{"name":"INDEX_DrvLockDisplayArea","features":[367]},{"name":"INDEX_DrvMovePanning","features":[367]},{"name":"INDEX_DrvMovePointer","features":[367]},{"name":"INDEX_DrvNextBand","features":[367]},{"name":"INDEX_DrvNotify","features":[367]},{"name":"INDEX_DrvOffset","features":[367]},{"name":"INDEX_DrvPaint","features":[367]},{"name":"INDEX_DrvPlgBlt","features":[367]},{"name":"INDEX_DrvQueryAdvanceWidths","features":[367]},{"name":"INDEX_DrvQueryDeviceSupport","features":[367]},{"name":"INDEX_DrvQueryFont","features":[367]},{"name":"INDEX_DrvQueryFontCaps","features":[367]},{"name":"INDEX_DrvQueryFontData","features":[367]},{"name":"INDEX_DrvQueryFontFile","features":[367]},{"name":"INDEX_DrvQueryFontTree","features":[367]},{"name":"INDEX_DrvQueryGlyphAttrs","features":[367]},{"name":"INDEX_DrvQueryPerBandInfo","features":[367]},{"name":"INDEX_DrvQuerySpoolType","features":[367]},{"name":"INDEX_DrvQueryTrueTypeOutline","features":[367]},{"name":"INDEX_DrvQueryTrueTypeTable","features":[367]},{"name":"INDEX_DrvRealizeBrush","features":[367]},{"name":"INDEX_DrvRenderHint","features":[367]},{"name":"INDEX_DrvReserved1","features":[367]},{"name":"INDEX_DrvReserved10","features":[367]},{"name":"INDEX_DrvReserved11","features":[367]},{"name":"INDEX_DrvReserved2","features":[367]},{"name":"INDEX_DrvReserved3","features":[367]},{"name":"INDEX_DrvReserved4","features":[367]},{"name":"INDEX_DrvReserved5","features":[367]},{"name":"INDEX_DrvReserved6","features":[367]},{"name":"INDEX_DrvReserved7","features":[367]},{"name":"INDEX_DrvReserved8","features":[367]},{"name":"INDEX_DrvReserved9","features":[367]},{"name":"INDEX_DrvResetDevice","features":[367]},{"name":"INDEX_DrvResetPDEV","features":[367]},{"name":"INDEX_DrvSaveScreenBits","features":[367]},{"name":"INDEX_DrvSendPage","features":[367]},{"name":"INDEX_DrvSetPalette","features":[367]},{"name":"INDEX_DrvSetPixelFormat","features":[367]},{"name":"INDEX_DrvSetPointerShape","features":[367]},{"name":"INDEX_DrvStartBanding","features":[367]},{"name":"INDEX_DrvStartDoc","features":[367]},{"name":"INDEX_DrvStartDxInterop","features":[367]},{"name":"INDEX_DrvStartPage","features":[367]},{"name":"INDEX_DrvStretchBlt","features":[367]},{"name":"INDEX_DrvStretchBltROP","features":[367]},{"name":"INDEX_DrvStrokeAndFillPath","features":[367]},{"name":"INDEX_DrvStrokePath","features":[367]},{"name":"INDEX_DrvSurfaceComplete","features":[367]},{"name":"INDEX_DrvSwapBuffers","features":[367]},{"name":"INDEX_DrvSynchronize","features":[367]},{"name":"INDEX_DrvSynchronizeRedirectionBitmaps","features":[367]},{"name":"INDEX_DrvSynchronizeSurface","features":[367]},{"name":"INDEX_DrvSynthesizeFont","features":[367]},{"name":"INDEX_DrvTextOut","features":[367]},{"name":"INDEX_DrvTransparentBlt","features":[367]},{"name":"INDEX_DrvUnloadFontFile","features":[367]},{"name":"INDEX_DrvUnlockDisplayArea","features":[367]},{"name":"INDEX_LAST","features":[367]},{"name":"INDIRECT_DISPLAY_INFO","features":[367,303]},{"name":"INDIRECT_DISPLAY_INFO_FLAGS_CREATED_IDDCX_ADAPTER","features":[367]},{"name":"IOCTL_COLORSPACE_TRANSFORM_QUERY_TARGET_CAPS","features":[367]},{"name":"IOCTL_COLORSPACE_TRANSFORM_SET","features":[367]},{"name":"IOCTL_FSVIDEO_COPY_FRAME_BUFFER","features":[367]},{"name":"IOCTL_FSVIDEO_REVERSE_MOUSE_POINTER","features":[367]},{"name":"IOCTL_FSVIDEO_SET_CURRENT_MODE","features":[367]},{"name":"IOCTL_FSVIDEO_SET_CURSOR_POSITION","features":[367]},{"name":"IOCTL_FSVIDEO_SET_SCREEN_INFORMATION","features":[367]},{"name":"IOCTL_FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[367]},{"name":"IOCTL_MIPI_DSI_QUERY_CAPS","features":[367]},{"name":"IOCTL_MIPI_DSI_RESET","features":[367]},{"name":"IOCTL_MIPI_DSI_TRANSMISSION","features":[367]},{"name":"IOCTL_PANEL_GET_BACKLIGHT_REDUCTION","features":[367]},{"name":"IOCTL_PANEL_GET_BRIGHTNESS","features":[367]},{"name":"IOCTL_PANEL_GET_MANUFACTURING_MODE","features":[367]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_CAPS","features":[367]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_RANGES","features":[367]},{"name":"IOCTL_PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[367]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS","features":[367]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS_STATE","features":[367]},{"name":"IOCTL_SET_ACTIVE_COLOR_PROFILE_NAME","features":[367]},{"name":"IOCTL_VIDEO_DISABLE_CURSOR","features":[367]},{"name":"IOCTL_VIDEO_DISABLE_POINTER","features":[367]},{"name":"IOCTL_VIDEO_DISABLE_VDM","features":[367]},{"name":"IOCTL_VIDEO_ENABLE_CURSOR","features":[367]},{"name":"IOCTL_VIDEO_ENABLE_POINTER","features":[367]},{"name":"IOCTL_VIDEO_ENABLE_VDM","features":[367]},{"name":"IOCTL_VIDEO_ENUM_MONITOR_PDO","features":[367]},{"name":"IOCTL_VIDEO_FREE_PUBLIC_ACCESS_RANGES","features":[367]},{"name":"IOCTL_VIDEO_GET_BANK_SELECT_CODE","features":[367]},{"name":"IOCTL_VIDEO_GET_CHILD_STATE","features":[367]},{"name":"IOCTL_VIDEO_GET_OUTPUT_DEVICE_POWER_STATE","features":[367]},{"name":"IOCTL_VIDEO_GET_POWER_MANAGEMENT","features":[367]},{"name":"IOCTL_VIDEO_HANDLE_VIDEOPARAMETERS","features":[367]},{"name":"IOCTL_VIDEO_INIT_WIN32K_CALLBACKS","features":[367]},{"name":"IOCTL_VIDEO_IS_VGA_DEVICE","features":[367]},{"name":"IOCTL_VIDEO_LOAD_AND_SET_FONT","features":[367]},{"name":"IOCTL_VIDEO_MAP_VIDEO_MEMORY","features":[367]},{"name":"IOCTL_VIDEO_MONITOR_DEVICE","features":[367]},{"name":"IOCTL_VIDEO_PREPARE_FOR_EARECOVERY","features":[367]},{"name":"IOCTL_VIDEO_QUERY_AVAIL_MODES","features":[367]},{"name":"IOCTL_VIDEO_QUERY_COLOR_CAPABILITIES","features":[367]},{"name":"IOCTL_VIDEO_QUERY_CURRENT_MODE","features":[367]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_ATTR","features":[367]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_POSITION","features":[367]},{"name":"IOCTL_VIDEO_QUERY_DISPLAY_BRIGHTNESS","features":[367]},{"name":"IOCTL_VIDEO_QUERY_NUM_AVAIL_MODES","features":[367]},{"name":"IOCTL_VIDEO_QUERY_POINTER_ATTR","features":[367]},{"name":"IOCTL_VIDEO_QUERY_POINTER_CAPABILITIES","features":[367]},{"name":"IOCTL_VIDEO_QUERY_POINTER_POSITION","features":[367]},{"name":"IOCTL_VIDEO_QUERY_PUBLIC_ACCESS_RANGES","features":[367]},{"name":"IOCTL_VIDEO_QUERY_SUPPORTED_BRIGHTNESS","features":[367]},{"name":"IOCTL_VIDEO_REGISTER_VDM","features":[367]},{"name":"IOCTL_VIDEO_RESET_DEVICE","features":[367]},{"name":"IOCTL_VIDEO_RESTORE_HARDWARE_STATE","features":[367]},{"name":"IOCTL_VIDEO_SAVE_HARDWARE_STATE","features":[367]},{"name":"IOCTL_VIDEO_SET_BANK_POSITION","features":[367]},{"name":"IOCTL_VIDEO_SET_CHILD_STATE_CONFIGURATION","features":[367]},{"name":"IOCTL_VIDEO_SET_COLOR_LUT_DATA","features":[367]},{"name":"IOCTL_VIDEO_SET_COLOR_REGISTERS","features":[367]},{"name":"IOCTL_VIDEO_SET_CURRENT_MODE","features":[367]},{"name":"IOCTL_VIDEO_SET_CURSOR_ATTR","features":[367]},{"name":"IOCTL_VIDEO_SET_CURSOR_POSITION","features":[367]},{"name":"IOCTL_VIDEO_SET_DISPLAY_BRIGHTNESS","features":[367]},{"name":"IOCTL_VIDEO_SET_OUTPUT_DEVICE_POWER_STATE","features":[367]},{"name":"IOCTL_VIDEO_SET_PALETTE_REGISTERS","features":[367]},{"name":"IOCTL_VIDEO_SET_POINTER_ATTR","features":[367]},{"name":"IOCTL_VIDEO_SET_POINTER_POSITION","features":[367]},{"name":"IOCTL_VIDEO_SET_POWER_MANAGEMENT","features":[367]},{"name":"IOCTL_VIDEO_SHARE_VIDEO_MEMORY","features":[367]},{"name":"IOCTL_VIDEO_SWITCH_DUALVIEW","features":[367]},{"name":"IOCTL_VIDEO_UNMAP_VIDEO_MEMORY","features":[367]},{"name":"IOCTL_VIDEO_UNSHARE_VIDEO_MEMORY","features":[367]},{"name":"IOCTL_VIDEO_USE_DEVICE_IN_SESSION","features":[367]},{"name":"IOCTL_VIDEO_VALIDATE_CHILD_STATE_CONFIGURATION","features":[367]},{"name":"IViewHelper","features":[367]},{"name":"JOIN_BEVEL","features":[367]},{"name":"JOIN_MITER","features":[367]},{"name":"JOIN_ROUND","features":[367]},{"name":"LA_ALTERNATE","features":[367]},{"name":"LA_GEOMETRIC","features":[367]},{"name":"LA_STARTGAP","features":[367]},{"name":"LA_STYLED","features":[367]},{"name":"LIGATURE","features":[367]},{"name":"LINEATTRS","features":[367]},{"name":"LINEATTRS","features":[367]},{"name":"MAXCHARSETS","features":[367]},{"name":"MAX_PACKET_COUNT","features":[367]},{"name":"MC_APERTURE_GRILL_CATHODE_RAY_TUBE","features":[367]},{"name":"MC_BLUE_DRIVE","features":[367]},{"name":"MC_BLUE_GAIN","features":[367]},{"name":"MC_CAPS_BRIGHTNESS","features":[367]},{"name":"MC_CAPS_COLOR_TEMPERATURE","features":[367]},{"name":"MC_CAPS_CONTRAST","features":[367]},{"name":"MC_CAPS_DEGAUSS","features":[367]},{"name":"MC_CAPS_DISPLAY_AREA_POSITION","features":[367]},{"name":"MC_CAPS_DISPLAY_AREA_SIZE","features":[367]},{"name":"MC_CAPS_MONITOR_TECHNOLOGY_TYPE","features":[367]},{"name":"MC_CAPS_NONE","features":[367]},{"name":"MC_CAPS_RED_GREEN_BLUE_DRIVE","features":[367]},{"name":"MC_CAPS_RED_GREEN_BLUE_GAIN","features":[367]},{"name":"MC_CAPS_RESTORE_FACTORY_COLOR_DEFAULTS","features":[367]},{"name":"MC_CAPS_RESTORE_FACTORY_DEFAULTS","features":[367]},{"name":"MC_COLOR_TEMPERATURE","features":[367]},{"name":"MC_COLOR_TEMPERATURE_10000K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_11500K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_4000K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_5000K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_6500K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_7500K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_8200K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_9300K","features":[367]},{"name":"MC_COLOR_TEMPERATURE_UNKNOWN","features":[367]},{"name":"MC_DISPLAY_TECHNOLOGY_TYPE","features":[367]},{"name":"MC_DRIVE_TYPE","features":[367]},{"name":"MC_ELECTROLUMINESCENT","features":[367]},{"name":"MC_FIELD_EMISSION_DEVICE","features":[367]},{"name":"MC_GAIN_TYPE","features":[367]},{"name":"MC_GREEN_DRIVE","features":[367]},{"name":"MC_GREEN_GAIN","features":[367]},{"name":"MC_HEIGHT","features":[367]},{"name":"MC_HORIZONTAL_POSITION","features":[367]},{"name":"MC_LIQUID_CRYSTAL_ON_SILICON","features":[367]},{"name":"MC_MICROELECTROMECHANICAL","features":[367]},{"name":"MC_MOMENTARY","features":[367]},{"name":"MC_ORGANIC_LIGHT_EMITTING_DIODE","features":[367]},{"name":"MC_PLASMA","features":[367]},{"name":"MC_POSITION_TYPE","features":[367]},{"name":"MC_RED_DRIVE","features":[367]},{"name":"MC_RED_GAIN","features":[367]},{"name":"MC_RESTORE_FACTORY_DEFAULTS_ENABLES_MONITOR_SETTINGS","features":[367]},{"name":"MC_SET_PARAMETER","features":[367]},{"name":"MC_SHADOW_MASK_CATHODE_RAY_TUBE","features":[367]},{"name":"MC_SIZE_TYPE","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_10000K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_11500K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_4000K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_5000K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_6500K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_7500K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_8200K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_9300K","features":[367]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_NONE","features":[367]},{"name":"MC_THIN_FILM_TRANSISTOR","features":[367]},{"name":"MC_TIMING_REPORT","features":[367]},{"name":"MC_VCP_CODE_TYPE","features":[367]},{"name":"MC_VERTICAL_POSITION","features":[367]},{"name":"MC_WIDTH","features":[367]},{"name":"MIPI_DSI_CAPS","features":[367]},{"name":"MIPI_DSI_PACKET","features":[367]},{"name":"MIPI_DSI_RESET","features":[367]},{"name":"MIPI_DSI_TRANSMISSION","features":[367]},{"name":"MS_CDDDEVICEBITMAP","features":[367]},{"name":"MS_NOTSYSTEMMEMORY","features":[367]},{"name":"MS_REUSEDDEVICEBITMAP","features":[367]},{"name":"MS_SHAREDACCESS","features":[367]},{"name":"NumVideoBankTypes","features":[367]},{"name":"OC_BANK_CLIP","features":[367]},{"name":"OPENGL_CMD","features":[367]},{"name":"OPENGL_GETINFO","features":[367]},{"name":"ORIENTATION_PREFERENCE","features":[367]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE","features":[367]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE_FLIPPED","features":[367]},{"name":"ORIENTATION_PREFERENCE_NONE","features":[367]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT","features":[367]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT_FLIPPED","features":[367]},{"name":"OUTPUT_COLOR_ENCODING","features":[367]},{"name":"OUTPUT_COLOR_ENCODING_INTENSITY","features":[367]},{"name":"OUTPUT_COLOR_ENCODING_RGB","features":[367]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR420","features":[367]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR422","features":[367]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR444","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[367]},{"name":"OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[367]},{"name":"OUTPUT_WIRE_FORMAT","features":[367]},{"name":"PALOBJ","features":[367]},{"name":"PAL_BGR","features":[367]},{"name":"PAL_BITFIELDS","features":[367]},{"name":"PAL_CMYK","features":[367]},{"name":"PAL_INDEXED","features":[367]},{"name":"PAL_RGB","features":[367]},{"name":"PANEL_BRIGHTNESS_SENSOR_DATA","features":[367]},{"name":"PANEL_GET_BACKLIGHT_REDUCTION","features":[367]},{"name":"PANEL_GET_BRIGHTNESS","features":[367]},{"name":"PANEL_QUERY_BRIGHTNESS_CAPS","features":[367]},{"name":"PANEL_QUERY_BRIGHTNESS_RANGES","features":[367]},{"name":"PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[367]},{"name":"PANEL_SET_BRIGHTNESS","features":[367]},{"name":"PANEL_SET_BRIGHTNESS_STATE","features":[367]},{"name":"PATHDATA","features":[367]},{"name":"PATHOBJ","features":[367]},{"name":"PATHOBJ_bEnum","features":[367,303]},{"name":"PATHOBJ_bEnumClipLines","features":[367,303]},{"name":"PATHOBJ_vEnumStart","features":[367]},{"name":"PATHOBJ_vEnumStartClipLines","features":[367,303]},{"name":"PATHOBJ_vGetBounds","features":[367]},{"name":"PD_BEGINSUBPATH","features":[367]},{"name":"PD_BEZIERS","features":[367]},{"name":"PD_CLOSEFIGURE","features":[367]},{"name":"PD_ENDSUBPATH","features":[367]},{"name":"PD_RESETSTYLE","features":[367]},{"name":"PERBANDINFO","features":[367,303]},{"name":"PFN","features":[367]},{"name":"PFN_DrvAccumulateD3DDirtyRect","features":[367,303]},{"name":"PFN_DrvAlphaBlend","features":[367,303,314]},{"name":"PFN_DrvAssertMode","features":[367,303]},{"name":"PFN_DrvAssociateSharedSurface","features":[367,303]},{"name":"PFN_DrvBitBlt","features":[367,303]},{"name":"PFN_DrvCompletePDEV","features":[367]},{"name":"PFN_DrvCopyBits","features":[367,303]},{"name":"PFN_DrvCreateDeviceBitmap","features":[367,303,314]},{"name":"PFN_DrvCreateDeviceBitmapEx","features":[367,303,314]},{"name":"PFN_DrvDeleteDeviceBitmap","features":[367]},{"name":"PFN_DrvDeleteDeviceBitmapEx","features":[367]},{"name":"PFN_DrvDeriveSurface","features":[367,303,313,314]},{"name":"PFN_DrvDescribePixelFormat","features":[367,369]},{"name":"PFN_DrvDestroyFont","features":[367,303]},{"name":"PFN_DrvDisableDirectDraw","features":[367]},{"name":"PFN_DrvDisableDriver","features":[367]},{"name":"PFN_DrvDisablePDEV","features":[367]},{"name":"PFN_DrvDisableSurface","features":[367]},{"name":"PFN_DrvDitherColor","features":[367]},{"name":"PFN_DrvDrawEscape","features":[367,303]},{"name":"PFN_DrvEnableDirectDraw","features":[367,303,313,314]},{"name":"PFN_DrvEnableDriver","features":[367,303]},{"name":"PFN_DrvEnablePDEV","features":[367,303,314]},{"name":"PFN_DrvEnableSurface","features":[367]},{"name":"PFN_DrvEndDoc","features":[367,303]},{"name":"PFN_DrvEndDxInterop","features":[367,303]},{"name":"PFN_DrvEscape","features":[367,303]},{"name":"PFN_DrvFillPath","features":[367,303]},{"name":"PFN_DrvFontManagement","features":[367,303]},{"name":"PFN_DrvFree","features":[367]},{"name":"PFN_DrvGetDirectDrawInfo","features":[367,303,313]},{"name":"PFN_DrvGetGlyphMode","features":[367,303]},{"name":"PFN_DrvGetModes","features":[367,303,314]},{"name":"PFN_DrvGetTrueTypeFile","features":[367]},{"name":"PFN_DrvGradientFill","features":[367,303,314]},{"name":"PFN_DrvIcmCheckBitmapBits","features":[367,303]},{"name":"PFN_DrvIcmCreateColorTransform","features":[367,303,314,370]},{"name":"PFN_DrvIcmDeleteColorTransform","features":[367,303]},{"name":"PFN_DrvIcmSetDeviceGammaRamp","features":[367,303]},{"name":"PFN_DrvLineTo","features":[367,303]},{"name":"PFN_DrvLoadFontFile","features":[367,314]},{"name":"PFN_DrvLockDisplayArea","features":[367,303]},{"name":"PFN_DrvMovePointer","features":[367,303]},{"name":"PFN_DrvNextBand","features":[367,303]},{"name":"PFN_DrvNotify","features":[367,303]},{"name":"PFN_DrvPaint","features":[367,303]},{"name":"PFN_DrvPlgBlt","features":[367,303,314]},{"name":"PFN_DrvQueryAdvanceWidths","features":[367,303]},{"name":"PFN_DrvQueryDeviceSupport","features":[367,303]},{"name":"PFN_DrvQueryFont","features":[367,303,314]},{"name":"PFN_DrvQueryFontCaps","features":[367]},{"name":"PFN_DrvQueryFontData","features":[367,303]},{"name":"PFN_DrvQueryFontFile","features":[367]},{"name":"PFN_DrvQueryFontTree","features":[367]},{"name":"PFN_DrvQueryGlyphAttrs","features":[367,303]},{"name":"PFN_DrvQueryPerBandInfo","features":[367,303]},{"name":"PFN_DrvQuerySpoolType","features":[367,303]},{"name":"PFN_DrvQueryTrueTypeOutline","features":[367,303,314]},{"name":"PFN_DrvQueryTrueTypeSection","features":[367,303]},{"name":"PFN_DrvQueryTrueTypeTable","features":[367]},{"name":"PFN_DrvRealizeBrush","features":[367,303]},{"name":"PFN_DrvRenderHint","features":[367]},{"name":"PFN_DrvResetDevice","features":[367]},{"name":"PFN_DrvResetPDEV","features":[367,303]},{"name":"PFN_DrvSaveScreenBits","features":[367,303]},{"name":"PFN_DrvSendPage","features":[367,303]},{"name":"PFN_DrvSetPalette","features":[367,303]},{"name":"PFN_DrvSetPixelFormat","features":[367,303]},{"name":"PFN_DrvSetPointerShape","features":[367,303]},{"name":"PFN_DrvStartBanding","features":[367,303]},{"name":"PFN_DrvStartDoc","features":[367,303]},{"name":"PFN_DrvStartDxInterop","features":[367,303]},{"name":"PFN_DrvStartPage","features":[367,303]},{"name":"PFN_DrvStretchBlt","features":[367,303,314]},{"name":"PFN_DrvStretchBltROP","features":[367,303,314]},{"name":"PFN_DrvStrokeAndFillPath","features":[367,303]},{"name":"PFN_DrvStrokePath","features":[367,303]},{"name":"PFN_DrvSurfaceComplete","features":[367,303]},{"name":"PFN_DrvSwapBuffers","features":[367,303]},{"name":"PFN_DrvSynchronize","features":[367,303]},{"name":"PFN_DrvSynchronizeRedirectionBitmaps","features":[367,303]},{"name":"PFN_DrvSynchronizeSurface","features":[367,303]},{"name":"PFN_DrvTextOut","features":[367,303]},{"name":"PFN_DrvTransparentBlt","features":[367,303]},{"name":"PFN_DrvUnloadFontFile","features":[367,303]},{"name":"PFN_DrvUnlockDisplayArea","features":[367,303]},{"name":"PFN_EngCombineRgn","features":[367,303]},{"name":"PFN_EngCopyRgn","features":[367,303]},{"name":"PFN_EngCreateRectRgn","features":[367,303]},{"name":"PFN_EngDeleteRgn","features":[367,303]},{"name":"PFN_EngIntersectRgn","features":[367,303]},{"name":"PFN_EngSubtractRgn","features":[367,303]},{"name":"PFN_EngUnionRgn","features":[367,303]},{"name":"PFN_EngXorRgn","features":[367,303]},{"name":"PHYSICAL_MONITOR","features":[367,303]},{"name":"PHYSICAL_MONITOR_DESCRIPTION_SIZE","features":[367]},{"name":"PLANAR_HC","features":[367]},{"name":"POINTE","features":[367]},{"name":"POINTE","features":[367]},{"name":"POINTFIX","features":[367]},{"name":"POINTQF","features":[367]},{"name":"PO_ALL_INTEGERS","features":[367]},{"name":"PO_BEZIERS","features":[367]},{"name":"PO_ELLIPSE","features":[367]},{"name":"PO_ENUM_AS_INTEGERS","features":[367]},{"name":"PO_WIDENED","features":[367]},{"name":"PPC_BGR_ORDER_HORIZONTAL_STRIPES","features":[367]},{"name":"PPC_BGR_ORDER_VERTICAL_STRIPES","features":[367]},{"name":"PPC_DEFAULT","features":[367]},{"name":"PPC_RGB_ORDER_HORIZONTAL_STRIPES","features":[367]},{"name":"PPC_RGB_ORDER_VERTICAL_STRIPES","features":[367]},{"name":"PPC_UNDEFINED","features":[367]},{"name":"PPG_DEFAULT","features":[367]},{"name":"PPG_SRGB","features":[367]},{"name":"PRIMARY_ORDER_ABC","features":[367]},{"name":"PRIMARY_ORDER_ACB","features":[367]},{"name":"PRIMARY_ORDER_BAC","features":[367]},{"name":"PRIMARY_ORDER_BCA","features":[367]},{"name":"PRIMARY_ORDER_CAB","features":[367]},{"name":"PRIMARY_ORDER_CBA","features":[367]},{"name":"PVIDEO_WIN32K_CALLOUT","features":[367]},{"name":"QAW_GETEASYWIDTHS","features":[367]},{"name":"QAW_GETWIDTHS","features":[367]},{"name":"QC_1BIT","features":[367]},{"name":"QC_4BIT","features":[367]},{"name":"QC_OUTLINES","features":[367]},{"name":"QDA_ACCELERATION_LEVEL","features":[367]},{"name":"QDA_RESERVED","features":[367]},{"name":"QDC_ALL_PATHS","features":[367]},{"name":"QDC_DATABASE_CURRENT","features":[367]},{"name":"QDC_INCLUDE_HMD","features":[367]},{"name":"QDC_ONLY_ACTIVE_PATHS","features":[367]},{"name":"QDC_VIRTUAL_MODE_AWARE","features":[367]},{"name":"QDC_VIRTUAL_REFRESH_RATE_AWARE","features":[367]},{"name":"QDS_CHECKJPEGFORMAT","features":[367]},{"name":"QDS_CHECKPNGFORMAT","features":[367]},{"name":"QFD_GLYPHANDBITMAP","features":[367]},{"name":"QFD_GLYPHANDOUTLINE","features":[367]},{"name":"QFD_MAXEXTENTS","features":[367]},{"name":"QFD_TT_GLYPHANDBITMAP","features":[367]},{"name":"QFD_TT_GRAY1_BITMAP","features":[367]},{"name":"QFD_TT_GRAY2_BITMAP","features":[367]},{"name":"QFD_TT_GRAY4_BITMAP","features":[367]},{"name":"QFD_TT_GRAY8_BITMAP","features":[367]},{"name":"QFD_TT_MONO_BITMAP","features":[367]},{"name":"QFF_DESCRIPTION","features":[367]},{"name":"QFF_NUMFACES","features":[367]},{"name":"QFT_GLYPHSET","features":[367]},{"name":"QFT_KERNPAIRS","features":[367]},{"name":"QFT_LIGATURES","features":[367]},{"name":"QSA_3DNOW","features":[367]},{"name":"QSA_MMX","features":[367]},{"name":"QSA_SSE","features":[367]},{"name":"QSA_SSE1","features":[367]},{"name":"QSA_SSE2","features":[367]},{"name":"QSA_SSE3","features":[367]},{"name":"QUERY_DISPLAY_CONFIG_FLAGS","features":[367]},{"name":"QueryDisplayConfig","features":[367,303]},{"name":"RB_DITHERCOLOR","features":[367]},{"name":"RECTFX","features":[367]},{"name":"RUN","features":[367]},{"name":"RestoreMonitorFactoryColorDefaults","features":[367,303]},{"name":"RestoreMonitorFactoryDefaults","features":[367,303]},{"name":"SDC_ALLOW_CHANGES","features":[367]},{"name":"SDC_ALLOW_PATH_ORDER_CHANGES","features":[367]},{"name":"SDC_APPLY","features":[367]},{"name":"SDC_FORCE_MODE_ENUMERATION","features":[367]},{"name":"SDC_NO_OPTIMIZATION","features":[367]},{"name":"SDC_PATH_PERSIST_IF_REQUIRED","features":[367]},{"name":"SDC_SAVE_TO_DATABASE","features":[367]},{"name":"SDC_TOPOLOGY_CLONE","features":[367]},{"name":"SDC_TOPOLOGY_EXTEND","features":[367]},{"name":"SDC_TOPOLOGY_EXTERNAL","features":[367]},{"name":"SDC_TOPOLOGY_INTERNAL","features":[367]},{"name":"SDC_TOPOLOGY_SUPPLIED","features":[367]},{"name":"SDC_USE_DATABASE_CURRENT","features":[367]},{"name":"SDC_USE_SUPPLIED_DISPLAY_CONFIG","features":[367]},{"name":"SDC_VALIDATE","features":[367]},{"name":"SDC_VIRTUAL_MODE_AWARE","features":[367]},{"name":"SDC_VIRTUAL_REFRESH_RATE_AWARE","features":[367]},{"name":"SETCONFIGURATION_STATUS_ADDITIONAL","features":[367]},{"name":"SETCONFIGURATION_STATUS_APPLIED","features":[367]},{"name":"SETCONFIGURATION_STATUS_OVERRIDDEN","features":[367]},{"name":"SET_ACTIVE_COLOR_PROFILE_NAME","features":[367]},{"name":"SET_DISPLAY_CONFIG_FLAGS","features":[367]},{"name":"SGI_EXTRASPACE","features":[367]},{"name":"SORTCOMP","features":[367]},{"name":"SO_BREAK_EXTRA","features":[367]},{"name":"SO_CHARACTER_EXTRA","features":[367]},{"name":"SO_CHAR_INC_EQUAL_BM_BASE","features":[367]},{"name":"SO_DO_NOT_SUBSTITUTE_DEVICE_FONT","features":[367]},{"name":"SO_DXDY","features":[367]},{"name":"SO_ESC_NOT_ORIENT","features":[367]},{"name":"SO_FLAG_DEFAULT_PLACEMENT","features":[367]},{"name":"SO_GLYPHINDEX_TEXTOUT","features":[367]},{"name":"SO_HORIZONTAL","features":[367]},{"name":"SO_MAXEXT_EQUAL_BM_SIDE","features":[367]},{"name":"SO_REVERSED","features":[367]},{"name":"SO_VERTICAL","features":[367]},{"name":"SO_ZERO_BEARINGS","features":[367]},{"name":"SPS_ACCEPT_EXCLUDE","features":[367]},{"name":"SPS_ACCEPT_NOEXCLUDE","features":[367]},{"name":"SPS_ACCEPT_SYNCHRONOUS","features":[367]},{"name":"SPS_ALPHA","features":[367]},{"name":"SPS_ANIMATESTART","features":[367]},{"name":"SPS_ANIMATEUPDATE","features":[367]},{"name":"SPS_ASYNCCHANGE","features":[367]},{"name":"SPS_CHANGE","features":[367]},{"name":"SPS_DECLINE","features":[367]},{"name":"SPS_ERROR","features":[367]},{"name":"SPS_FLAGSMASK","features":[367]},{"name":"SPS_FREQMASK","features":[367]},{"name":"SPS_LENGTHMASK","features":[367]},{"name":"SPS_RESERVED","features":[367]},{"name":"SPS_RESERVED1","features":[367]},{"name":"SS_FREE","features":[367]},{"name":"SS_RESTORE","features":[367]},{"name":"SS_SAVE","features":[367]},{"name":"STROBJ","features":[367,303]},{"name":"STROBJ_bEnum","features":[367,303]},{"name":"STROBJ_bEnumPositionsOnly","features":[367,303]},{"name":"STROBJ_bGetAdvanceWidths","features":[367,303]},{"name":"STROBJ_dwGetCodePage","features":[367,303]},{"name":"STROBJ_vEnumStart","features":[367,303]},{"name":"STYPE_BITMAP","features":[367]},{"name":"STYPE_DEVBITMAP","features":[367]},{"name":"SURFOBJ","features":[367,303]},{"name":"S_INIT","features":[367]},{"name":"SaveCurrentMonitorSettings","features":[367,303]},{"name":"SaveCurrentSettings","features":[367,303]},{"name":"SetDisplayAutoRotationPreferences","features":[367,303]},{"name":"SetDisplayConfig","features":[367,303]},{"name":"SetMonitorBrightness","features":[367,303]},{"name":"SetMonitorColorTemperature","features":[367,303]},{"name":"SetMonitorContrast","features":[367,303]},{"name":"SetMonitorDisplayAreaPosition","features":[367,303]},{"name":"SetMonitorDisplayAreaSize","features":[367,303]},{"name":"SetMonitorRedGreenOrBlueDrive","features":[367,303]},{"name":"SetMonitorRedGreenOrBlueGain","features":[367,303]},{"name":"SetVCPFeature","features":[367,303]},{"name":"Sources","features":[367]},{"name":"TC_PATHOBJ","features":[367]},{"name":"TC_RECTANGLES","features":[367]},{"name":"TTO_METRICS_ONLY","features":[367]},{"name":"TTO_QUBICS","features":[367]},{"name":"TTO_UNHINTED","features":[367]},{"name":"TYPE1_FONT","features":[367,303]},{"name":"VGA_CHAR","features":[367]},{"name":"VIDEOPARAMETERS","features":[367]},{"name":"VIDEO_BANK_SELECT","features":[367]},{"name":"VIDEO_BANK_TYPE","features":[367]},{"name":"VIDEO_BRIGHTNESS_POLICY","features":[367,303]},{"name":"VIDEO_CLUT","features":[367]},{"name":"VIDEO_CLUTDATA","features":[367]},{"name":"VIDEO_COLOR_CAPABILITIES","features":[367]},{"name":"VIDEO_COLOR_LUT_DATA","features":[367]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_PRIVATEFORMAT","features":[367]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_RGB256WORDS","features":[367]},{"name":"VIDEO_CURSOR_ATTRIBUTES","features":[367]},{"name":"VIDEO_CURSOR_POSITION","features":[367]},{"name":"VIDEO_DEVICE_COLOR","features":[367]},{"name":"VIDEO_DEVICE_NAME","features":[367]},{"name":"VIDEO_DEVICE_SESSION_STATUS","features":[367]},{"name":"VIDEO_DUALVIEW_PRIMARY","features":[367]},{"name":"VIDEO_DUALVIEW_REMOVABLE","features":[367]},{"name":"VIDEO_DUALVIEW_SECONDARY","features":[367]},{"name":"VIDEO_DUALVIEW_WDDM_VGA","features":[367]},{"name":"VIDEO_HARDWARE_STATE","features":[367]},{"name":"VIDEO_HARDWARE_STATE_HEADER","features":[367]},{"name":"VIDEO_LOAD_FONT_INFORMATION","features":[367]},{"name":"VIDEO_LUT_RGB256WORDS","features":[367]},{"name":"VIDEO_MAX_REASON","features":[367]},{"name":"VIDEO_MEMORY","features":[367]},{"name":"VIDEO_MEMORY_INFORMATION","features":[367]},{"name":"VIDEO_MODE","features":[367]},{"name":"VIDEO_MODE_ANIMATE_START","features":[367]},{"name":"VIDEO_MODE_ANIMATE_UPDATE","features":[367]},{"name":"VIDEO_MODE_ASYNC_POINTER","features":[367]},{"name":"VIDEO_MODE_BANKED","features":[367]},{"name":"VIDEO_MODE_COLOR","features":[367]},{"name":"VIDEO_MODE_COLOR_POINTER","features":[367]},{"name":"VIDEO_MODE_GRAPHICS","features":[367]},{"name":"VIDEO_MODE_INFORMATION","features":[367]},{"name":"VIDEO_MODE_INTERLACED","features":[367]},{"name":"VIDEO_MODE_LINEAR","features":[367]},{"name":"VIDEO_MODE_MANAGED_PALETTE","features":[367]},{"name":"VIDEO_MODE_MAP_MEM_LINEAR","features":[367]},{"name":"VIDEO_MODE_MONO_POINTER","features":[367]},{"name":"VIDEO_MODE_NO_64_BIT_ACCESS","features":[367]},{"name":"VIDEO_MODE_NO_OFF_SCREEN","features":[367]},{"name":"VIDEO_MODE_NO_ZERO_MEMORY","features":[367]},{"name":"VIDEO_MODE_PALETTE_DRIVEN","features":[367]},{"name":"VIDEO_MONITOR_DESCRIPTOR","features":[367]},{"name":"VIDEO_NUM_MODES","features":[367]},{"name":"VIDEO_OPTIONAL_GAMMET_TABLE","features":[367]},{"name":"VIDEO_PALETTE_DATA","features":[367]},{"name":"VIDEO_PERFORMANCE_COUNTER","features":[367]},{"name":"VIDEO_POINTER_ATTRIBUTES","features":[367]},{"name":"VIDEO_POINTER_CAPABILITIES","features":[367]},{"name":"VIDEO_POINTER_POSITION","features":[367]},{"name":"VIDEO_POWER_MANAGEMENT","features":[367]},{"name":"VIDEO_POWER_STATE","features":[367]},{"name":"VIDEO_PUBLIC_ACCESS_RANGES","features":[367]},{"name":"VIDEO_QUERY_PERFORMANCE_COUNTER","features":[367]},{"name":"VIDEO_REASON_ALLOCATION","features":[367]},{"name":"VIDEO_REASON_CONFIGURATION","features":[367]},{"name":"VIDEO_REASON_FAILED_ROTATION","features":[367]},{"name":"VIDEO_REASON_LOCK","features":[367]},{"name":"VIDEO_REASON_NONE","features":[367]},{"name":"VIDEO_REASON_POLICY1","features":[367]},{"name":"VIDEO_REASON_POLICY2","features":[367]},{"name":"VIDEO_REASON_POLICY3","features":[367]},{"name":"VIDEO_REASON_POLICY4","features":[367]},{"name":"VIDEO_REASON_SCRATCH","features":[367]},{"name":"VIDEO_REGISTER_VDM","features":[367]},{"name":"VIDEO_SHARE_MEMORY","features":[367,303]},{"name":"VIDEO_SHARE_MEMORY_INFORMATION","features":[367]},{"name":"VIDEO_STATE_NON_STANDARD_VGA","features":[367]},{"name":"VIDEO_STATE_PACKED_CHAIN4_MODE","features":[367]},{"name":"VIDEO_STATE_UNEMULATED_VGA_STATE","features":[367]},{"name":"VIDEO_VDM","features":[367,303]},{"name":"VIDEO_WIN32K_CALLBACKS","features":[367,303]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS","features":[367,303]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS_TYPE","features":[367]},{"name":"VideoBanked1R1W","features":[367]},{"name":"VideoBanked1RW","features":[367]},{"name":"VideoBanked2RW","features":[367]},{"name":"VideoBlackScreenDiagnostics","features":[367]},{"name":"VideoDesktopDuplicationChange","features":[367]},{"name":"VideoDisableMultiPlaneOverlay","features":[367]},{"name":"VideoDxgkDisplaySwitchCallout","features":[367]},{"name":"VideoDxgkFindAdapterTdrCallout","features":[367]},{"name":"VideoDxgkHardwareProtectionTeardown","features":[367]},{"name":"VideoEnumChildPdoNotifyCallout","features":[367]},{"name":"VideoFindAdapterCallout","features":[367]},{"name":"VideoNotBanked","features":[367]},{"name":"VideoPnpNotifyCallout","features":[367]},{"name":"VideoPowerHibernate","features":[367]},{"name":"VideoPowerMaximum","features":[367]},{"name":"VideoPowerNotifyCallout","features":[367]},{"name":"VideoPowerOff","features":[367]},{"name":"VideoPowerOn","features":[367]},{"name":"VideoPowerShutdown","features":[367]},{"name":"VideoPowerStandBy","features":[367]},{"name":"VideoPowerSuspend","features":[367]},{"name":"VideoPowerUnspecified","features":[367]},{"name":"VideoRepaintDesktop","features":[367]},{"name":"VideoUpdateCursor","features":[367]},{"name":"WCRUN","features":[367]},{"name":"WINDDI_MAXSETPALETTECOLORINDEX","features":[367]},{"name":"WINDDI_MAXSETPALETTECOLORS","features":[367]},{"name":"WINDDI_MAX_BROADCAST_CONTEXT","features":[367]},{"name":"WNDOBJ","features":[367,303]},{"name":"WNDOBJCHANGEPROC","features":[367,303]},{"name":"WNDOBJ_SETUP","features":[367]},{"name":"WOC_CHANGED","features":[367]},{"name":"WOC_DELETE","features":[367]},{"name":"WOC_DRAWN","features":[367]},{"name":"WOC_RGN_CLIENT","features":[367]},{"name":"WOC_RGN_CLIENT_DELTA","features":[367]},{"name":"WOC_RGN_SPRITE","features":[367]},{"name":"WOC_RGN_SURFACE","features":[367]},{"name":"WOC_RGN_SURFACE_DELTA","features":[367]},{"name":"WOC_SPRITE_NO_OVERLAP","features":[367]},{"name":"WOC_SPRITE_OVERLAP","features":[367]},{"name":"WO_DRAW_NOTIFY","features":[367]},{"name":"WO_RGN_CLIENT","features":[367]},{"name":"WO_RGN_CLIENT_DELTA","features":[367]},{"name":"WO_RGN_DESKTOP_COORD","features":[367]},{"name":"WO_RGN_SPRITE","features":[367]},{"name":"WO_RGN_SURFACE","features":[367]},{"name":"WO_RGN_SURFACE_DELTA","features":[367]},{"name":"WO_RGN_UPDATE_ALL","features":[367]},{"name":"WO_RGN_WINDOW","features":[367]},{"name":"WO_SPRITE_NOTIFY","features":[367]},{"name":"WVIDEO_DEVICE_NAME","features":[367]},{"name":"XFORML","features":[367]},{"name":"XFORML","features":[367]},{"name":"XFORMOBJ","features":[367]},{"name":"XFORMOBJ_bApplyXform","features":[367,303]},{"name":"XFORMOBJ_iGetXform","features":[367]},{"name":"XF_INV_FXTOL","features":[367]},{"name":"XF_INV_LTOL","features":[367]},{"name":"XF_LTOFX","features":[367]},{"name":"XF_LTOL","features":[367]},{"name":"XLATEOBJ","features":[367]},{"name":"XLATEOBJ_cGetPalette","features":[367]},{"name":"XLATEOBJ_hGetColorTransform","features":[367,303]},{"name":"XLATEOBJ_iXlate","features":[367]},{"name":"XLATEOBJ_piVector","features":[367]},{"name":"XO_DESTBITFIELDS","features":[367]},{"name":"XO_DESTDCPALETTE","features":[367]},{"name":"XO_DESTPALETTE","features":[367]},{"name":"XO_DEVICE_ICM","features":[367]},{"name":"XO_FROM_CMYK","features":[367]},{"name":"XO_HOST_ICM","features":[367]},{"name":"XO_SRCBITFIELDS","features":[367]},{"name":"XO_SRCPALETTE","features":[367]},{"name":"XO_TABLE","features":[367]},{"name":"XO_TO_MONO","features":[367]},{"name":"XO_TRIVIAL","features":[367]}],"375":[{"name":"ADDRESS_FAMILY_VALUE_NAME","features":[371]},{"name":"FAULT_ACTION_SPECIFIC_BASE","features":[371]},{"name":"FAULT_ACTION_SPECIFIC_MAX","features":[371]},{"name":"FAULT_DEVICE_INTERNAL_ERROR","features":[371]},{"name":"FAULT_INVALID_ACTION","features":[371]},{"name":"FAULT_INVALID_ARG","features":[371]},{"name":"FAULT_INVALID_SEQUENCE_NUMBER","features":[371]},{"name":"FAULT_INVALID_VARIABLE","features":[371]},{"name":"HSWDEVICE","features":[371]},{"name":"IUPnPAddressFamilyControl","features":[371]},{"name":"IUPnPAsyncResult","features":[371]},{"name":"IUPnPDescriptionDocument","features":[371,354]},{"name":"IUPnPDescriptionDocumentCallback","features":[371]},{"name":"IUPnPDevice","features":[371,354]},{"name":"IUPnPDeviceControl","features":[371]},{"name":"IUPnPDeviceControlHttpHeaders","features":[371]},{"name":"IUPnPDeviceDocumentAccess","features":[371]},{"name":"IUPnPDeviceDocumentAccessEx","features":[371]},{"name":"IUPnPDeviceFinder","features":[371,354]},{"name":"IUPnPDeviceFinderAddCallbackWithInterface","features":[371]},{"name":"IUPnPDeviceFinderCallback","features":[371]},{"name":"IUPnPDeviceProvider","features":[371]},{"name":"IUPnPDevices","features":[371,354]},{"name":"IUPnPEventSink","features":[371]},{"name":"IUPnPEventSource","features":[371]},{"name":"IUPnPHttpHeaderControl","features":[371]},{"name":"IUPnPRegistrar","features":[371]},{"name":"IUPnPRemoteEndpointInfo","features":[371]},{"name":"IUPnPReregistrar","features":[371]},{"name":"IUPnPService","features":[371,354]},{"name":"IUPnPServiceAsync","features":[371]},{"name":"IUPnPServiceCallback","features":[371]},{"name":"IUPnPServiceDocumentAccess","features":[371]},{"name":"IUPnPServiceEnumProperty","features":[371]},{"name":"IUPnPServices","features":[371,354]},{"name":"REMOTE_ADDRESS_VALUE_NAME","features":[371]},{"name":"SWDeviceCapabilitiesDriverRequired","features":[371]},{"name":"SWDeviceCapabilitiesNoDisplayInUI","features":[371]},{"name":"SWDeviceCapabilitiesNone","features":[371]},{"name":"SWDeviceCapabilitiesRemovable","features":[371]},{"name":"SWDeviceCapabilitiesSilentInstall","features":[371]},{"name":"SWDeviceLifetimeHandle","features":[371]},{"name":"SWDeviceLifetimeMax","features":[371]},{"name":"SWDeviceLifetimeParentPresent","features":[371]},{"name":"SW_DEVICE_CAPABILITIES","features":[371]},{"name":"SW_DEVICE_CREATE_CALLBACK","features":[371]},{"name":"SW_DEVICE_CREATE_INFO","features":[371,303,306]},{"name":"SW_DEVICE_LIFETIME","features":[371]},{"name":"SwDeviceClose","features":[371]},{"name":"SwDeviceCreate","features":[371,336,303,306]},{"name":"SwDeviceGetLifetime","features":[371]},{"name":"SwDeviceInterfacePropertySet","features":[371,336]},{"name":"SwDeviceInterfaceRegister","features":[371,336,303]},{"name":"SwDeviceInterfaceSetState","features":[371,303]},{"name":"SwDevicePropertySet","features":[371,336]},{"name":"SwDeviceSetLifetime","features":[371]},{"name":"SwMemFree","features":[371]},{"name":"UPNP_ADDRESSFAMILY_BOTH","features":[371]},{"name":"UPNP_ADDRESSFAMILY_IPv4","features":[371]},{"name":"UPNP_ADDRESSFAMILY_IPv6","features":[371]},{"name":"UPNP_E_ACTION_REQUEST_FAILED","features":[371]},{"name":"UPNP_E_ACTION_SPECIFIC_BASE","features":[371]},{"name":"UPNP_E_DEVICE_ELEMENT_EXPECTED","features":[371]},{"name":"UPNP_E_DEVICE_ERROR","features":[371]},{"name":"UPNP_E_DEVICE_NODE_INCOMPLETE","features":[371]},{"name":"UPNP_E_DEVICE_NOTREGISTERED","features":[371]},{"name":"UPNP_E_DEVICE_RUNNING","features":[371]},{"name":"UPNP_E_DEVICE_TIMEOUT","features":[371]},{"name":"UPNP_E_DUPLICATE_NOT_ALLOWED","features":[371]},{"name":"UPNP_E_DUPLICATE_SERVICE_ID","features":[371]},{"name":"UPNP_E_ERROR_PROCESSING_RESPONSE","features":[371]},{"name":"UPNP_E_EVENT_SUBSCRIPTION_FAILED","features":[371]},{"name":"UPNP_E_ICON_ELEMENT_EXPECTED","features":[371]},{"name":"UPNP_E_ICON_NODE_INCOMPLETE","features":[371]},{"name":"UPNP_E_INVALID_ACTION","features":[371]},{"name":"UPNP_E_INVALID_ARGUMENTS","features":[371]},{"name":"UPNP_E_INVALID_DESCRIPTION","features":[371]},{"name":"UPNP_E_INVALID_DOCUMENT","features":[371]},{"name":"UPNP_E_INVALID_ICON","features":[371]},{"name":"UPNP_E_INVALID_ROOT_NAMESPACE","features":[371]},{"name":"UPNP_E_INVALID_SERVICE","features":[371]},{"name":"UPNP_E_INVALID_VARIABLE","features":[371]},{"name":"UPNP_E_INVALID_XML","features":[371]},{"name":"UPNP_E_OUT_OF_SYNC","features":[371]},{"name":"UPNP_E_PROTOCOL_ERROR","features":[371]},{"name":"UPNP_E_REQUIRED_ELEMENT_ERROR","features":[371]},{"name":"UPNP_E_ROOT_ELEMENT_EXPECTED","features":[371]},{"name":"UPNP_E_SERVICE_ELEMENT_EXPECTED","features":[371]},{"name":"UPNP_E_SERVICE_NODE_INCOMPLETE","features":[371]},{"name":"UPNP_E_SUFFIX_TOO_LONG","features":[371]},{"name":"UPNP_E_TRANSPORT_ERROR","features":[371]},{"name":"UPNP_E_URLBASE_PRESENT","features":[371]},{"name":"UPNP_E_VALUE_TOO_LONG","features":[371]},{"name":"UPNP_E_VARIABLE_VALUE_UNKNOWN","features":[371]},{"name":"UPNP_SERVICE_DELAY_SCPD_AND_SUBSCRIPTION","features":[371]},{"name":"UPnPDescriptionDocument","features":[371]},{"name":"UPnPDescriptionDocumentEx","features":[371]},{"name":"UPnPDevice","features":[371]},{"name":"UPnPDeviceFinder","features":[371]},{"name":"UPnPDeviceFinderEx","features":[371]},{"name":"UPnPDevices","features":[371]},{"name":"UPnPRegistrar","features":[371]},{"name":"UPnPRemoteEndpointInfo","features":[371]},{"name":"UPnPService","features":[371]},{"name":"UPnPServices","features":[371]}],"376":[{"name":"CF_MSFAXSRV_DEVICE_ID","features":[372]},{"name":"CF_MSFAXSRV_FSP_GUID","features":[372]},{"name":"CF_MSFAXSRV_ROUTEEXT_NAME","features":[372]},{"name":"CF_MSFAXSRV_ROUTING_METHOD_GUID","features":[372]},{"name":"CF_MSFAXSRV_SERVER_NAME","features":[372]},{"name":"CLSID_Sti","features":[372]},{"name":"CanSendToFaxRecipient","features":[372,303]},{"name":"DEVPKEY_WIA_DeviceType","features":[372,336]},{"name":"DEVPKEY_WIA_USDClassId","features":[372,336]},{"name":"DEV_ID_SRC_FAX","features":[372]},{"name":"DEV_ID_SRC_TAPI","features":[372]},{"name":"DRT_EMAIL","features":[372]},{"name":"DRT_INBOX","features":[372]},{"name":"DRT_NONE","features":[372]},{"name":"FAXDEVRECEIVE_SIZE","features":[372]},{"name":"FAXDEVREPORTSTATUS_SIZE","features":[372]},{"name":"FAXLOG_CATEGORY_INBOUND","features":[372]},{"name":"FAXLOG_CATEGORY_INIT","features":[372]},{"name":"FAXLOG_CATEGORY_OUTBOUND","features":[372]},{"name":"FAXLOG_CATEGORY_UNKNOWN","features":[372]},{"name":"FAXLOG_LEVEL_MAX","features":[372]},{"name":"FAXLOG_LEVEL_MED","features":[372]},{"name":"FAXLOG_LEVEL_MIN","features":[372]},{"name":"FAXLOG_LEVEL_NONE","features":[372]},{"name":"FAXROUTE_ENABLE","features":[372]},{"name":"FAXSRV_DEVICE_NODETYPE_GUID","features":[372]},{"name":"FAXSRV_DEVICE_PROVIDER_NODETYPE_GUID","features":[372]},{"name":"FAXSRV_ROUTING_METHOD_NODETYPE_GUID","features":[372]},{"name":"FAX_ACCESS_RIGHTS_ENUM","features":[372]},{"name":"FAX_ACCESS_RIGHTS_ENUM_2","features":[372]},{"name":"FAX_ACCOUNT_EVENTS_TYPE_ENUM","features":[372]},{"name":"FAX_CONFIGURATIONA","features":[372,303]},{"name":"FAX_CONFIGURATIONW","features":[372,303]},{"name":"FAX_CONFIG_QUERY","features":[372]},{"name":"FAX_CONFIG_SET","features":[372]},{"name":"FAX_CONTEXT_INFOA","features":[372,314]},{"name":"FAX_CONTEXT_INFOW","features":[372,314]},{"name":"FAX_COVERPAGE_INFOA","features":[372,303]},{"name":"FAX_COVERPAGE_INFOW","features":[372,303]},{"name":"FAX_COVERPAGE_TYPE_ENUM","features":[372]},{"name":"FAX_DEVICE_RECEIVE_MODE_ENUM","features":[372]},{"name":"FAX_DEVICE_STATUSA","features":[372,303]},{"name":"FAX_DEVICE_STATUSW","features":[372,303]},{"name":"FAX_DEV_STATUS","features":[372]},{"name":"FAX_ENUM_DELIVERY_REPORT_TYPES","features":[372]},{"name":"FAX_ENUM_DEVICE_ID_SOURCE","features":[372]},{"name":"FAX_ENUM_JOB_COMMANDS","features":[372]},{"name":"FAX_ENUM_JOB_SEND_ATTRIBUTES","features":[372]},{"name":"FAX_ENUM_LOG_CATEGORIES","features":[372]},{"name":"FAX_ENUM_LOG_LEVELS","features":[372]},{"name":"FAX_ENUM_PORT_OPEN_TYPE","features":[372]},{"name":"FAX_ERR_BAD_GROUP_CONFIGURATION","features":[372]},{"name":"FAX_ERR_DEVICE_NUM_LIMIT_EXCEEDED","features":[372]},{"name":"FAX_ERR_DIRECTORY_IN_USE","features":[372]},{"name":"FAX_ERR_END","features":[372]},{"name":"FAX_ERR_FILE_ACCESS_DENIED","features":[372]},{"name":"FAX_ERR_GROUP_IN_USE","features":[372]},{"name":"FAX_ERR_GROUP_NOT_FOUND","features":[372]},{"name":"FAX_ERR_MESSAGE_NOT_FOUND","features":[372]},{"name":"FAX_ERR_NOT_NTFS","features":[372]},{"name":"FAX_ERR_NOT_SUPPORTED_ON_THIS_SKU","features":[372]},{"name":"FAX_ERR_RECIPIENTS_LIMIT","features":[372]},{"name":"FAX_ERR_RULE_NOT_FOUND","features":[372]},{"name":"FAX_ERR_SRV_OUTOFMEMORY","features":[372]},{"name":"FAX_ERR_START","features":[372]},{"name":"FAX_ERR_VERSION_MISMATCH","features":[372]},{"name":"FAX_EVENTA","features":[372,303]},{"name":"FAX_EVENTW","features":[372,303]},{"name":"FAX_E_BAD_GROUP_CONFIGURATION","features":[372]},{"name":"FAX_E_DEVICE_NUM_LIMIT_EXCEEDED","features":[372]},{"name":"FAX_E_DIRECTORY_IN_USE","features":[372]},{"name":"FAX_E_FILE_ACCESS_DENIED","features":[372]},{"name":"FAX_E_GROUP_IN_USE","features":[372]},{"name":"FAX_E_GROUP_NOT_FOUND","features":[372]},{"name":"FAX_E_MESSAGE_NOT_FOUND","features":[372]},{"name":"FAX_E_NOT_NTFS","features":[372]},{"name":"FAX_E_NOT_SUPPORTED_ON_THIS_SKU","features":[372]},{"name":"FAX_E_RECIPIENTS_LIMIT","features":[372]},{"name":"FAX_E_RULE_NOT_FOUND","features":[372]},{"name":"FAX_E_SRV_OUTOFMEMORY","features":[372]},{"name":"FAX_E_VERSION_MISMATCH","features":[372]},{"name":"FAX_GLOBAL_ROUTING_INFOA","features":[372]},{"name":"FAX_GLOBAL_ROUTING_INFOW","features":[372]},{"name":"FAX_GROUP_STATUS_ENUM","features":[372]},{"name":"FAX_JOB_ENTRYA","features":[372,303]},{"name":"FAX_JOB_ENTRYW","features":[372,303]},{"name":"FAX_JOB_EXTENDED_STATUS_ENUM","features":[372]},{"name":"FAX_JOB_MANAGE","features":[372]},{"name":"FAX_JOB_OPERATIONS_ENUM","features":[372]},{"name":"FAX_JOB_PARAMA","features":[372,303]},{"name":"FAX_JOB_PARAMW","features":[372,303]},{"name":"FAX_JOB_QUERY","features":[372]},{"name":"FAX_JOB_STATUS_ENUM","features":[372]},{"name":"FAX_JOB_SUBMIT","features":[372]},{"name":"FAX_JOB_TYPE_ENUM","features":[372]},{"name":"FAX_LOG_CATEGORYA","features":[372]},{"name":"FAX_LOG_CATEGORYW","features":[372]},{"name":"FAX_LOG_LEVEL_ENUM","features":[372]},{"name":"FAX_PORT_INFOA","features":[372]},{"name":"FAX_PORT_INFOW","features":[372]},{"name":"FAX_PORT_QUERY","features":[372]},{"name":"FAX_PORT_SET","features":[372]},{"name":"FAX_PRINT_INFOA","features":[372]},{"name":"FAX_PRINT_INFOW","features":[372]},{"name":"FAX_PRIORITY_TYPE_ENUM","features":[372]},{"name":"FAX_PROVIDER_STATUS_ENUM","features":[372]},{"name":"FAX_RECEIPT_TYPE_ENUM","features":[372]},{"name":"FAX_RECEIVE","features":[372]},{"name":"FAX_ROUTE","features":[372]},{"name":"FAX_ROUTE_CALLBACKROUTINES","features":[372,303]},{"name":"FAX_ROUTING_METHODA","features":[372,303]},{"name":"FAX_ROUTING_METHODW","features":[372,303]},{"name":"FAX_ROUTING_RULE_CODE_ENUM","features":[372]},{"name":"FAX_RULE_STATUS_ENUM","features":[372]},{"name":"FAX_SCHEDULE_TYPE_ENUM","features":[372]},{"name":"FAX_SEND","features":[372,303]},{"name":"FAX_SERVER_APIVERSION_ENUM","features":[372]},{"name":"FAX_SERVER_EVENTS_TYPE_ENUM","features":[372]},{"name":"FAX_SMTP_AUTHENTICATION_TYPE_ENUM","features":[372]},{"name":"FAX_TIME","features":[372]},{"name":"FEI_ABORTING","features":[372]},{"name":"FEI_ANSWERED","features":[372]},{"name":"FEI_BAD_ADDRESS","features":[372]},{"name":"FEI_BUSY","features":[372]},{"name":"FEI_CALL_BLACKLISTED","features":[372]},{"name":"FEI_CALL_DELAYED","features":[372]},{"name":"FEI_COMPLETED","features":[372]},{"name":"FEI_DELETED","features":[372]},{"name":"FEI_DIALING","features":[372]},{"name":"FEI_DISCONNECTED","features":[372]},{"name":"FEI_FATAL_ERROR","features":[372]},{"name":"FEI_FAXSVC_ENDED","features":[372]},{"name":"FEI_FAXSVC_STARTED","features":[372]},{"name":"FEI_HANDLED","features":[372]},{"name":"FEI_IDLE","features":[372]},{"name":"FEI_INITIALIZING","features":[372]},{"name":"FEI_JOB_QUEUED","features":[372]},{"name":"FEI_LINE_UNAVAILABLE","features":[372]},{"name":"FEI_MODEM_POWERED_OFF","features":[372]},{"name":"FEI_MODEM_POWERED_ON","features":[372]},{"name":"FEI_NEVENTS","features":[372]},{"name":"FEI_NOT_FAX_CALL","features":[372]},{"name":"FEI_NO_ANSWER","features":[372]},{"name":"FEI_NO_DIAL_TONE","features":[372]},{"name":"FEI_RECEIVING","features":[372]},{"name":"FEI_RINGING","features":[372]},{"name":"FEI_ROUTING","features":[372]},{"name":"FEI_SENDING","features":[372]},{"name":"FPF_RECEIVE","features":[372]},{"name":"FPF_SEND","features":[372]},{"name":"FPF_VIRTUAL","features":[372]},{"name":"FPS_ABORTING","features":[372]},{"name":"FPS_ANSWERED","features":[372]},{"name":"FPS_AVAILABLE","features":[372]},{"name":"FPS_BAD_ADDRESS","features":[372]},{"name":"FPS_BUSY","features":[372]},{"name":"FPS_CALL_BLACKLISTED","features":[372]},{"name":"FPS_CALL_DELAYED","features":[372]},{"name":"FPS_COMPLETED","features":[372]},{"name":"FPS_DIALING","features":[372]},{"name":"FPS_DISCONNECTED","features":[372]},{"name":"FPS_FATAL_ERROR","features":[372]},{"name":"FPS_HANDLED","features":[372]},{"name":"FPS_INITIALIZING","features":[372]},{"name":"FPS_NOT_FAX_CALL","features":[372]},{"name":"FPS_NO_ANSWER","features":[372]},{"name":"FPS_NO_DIAL_TONE","features":[372]},{"name":"FPS_OFFLINE","features":[372]},{"name":"FPS_RECEIVING","features":[372]},{"name":"FPS_RINGING","features":[372]},{"name":"FPS_ROUTING","features":[372]},{"name":"FPS_SENDING","features":[372]},{"name":"FPS_UNAVAILABLE","features":[372]},{"name":"FS_ANSWERED","features":[372]},{"name":"FS_BAD_ADDRESS","features":[372]},{"name":"FS_BUSY","features":[372]},{"name":"FS_CALL_BLACKLISTED","features":[372]},{"name":"FS_CALL_DELAYED","features":[372]},{"name":"FS_COMPLETED","features":[372]},{"name":"FS_DIALING","features":[372]},{"name":"FS_DISCONNECTED","features":[372]},{"name":"FS_FATAL_ERROR","features":[372]},{"name":"FS_HANDLED","features":[372]},{"name":"FS_INITIALIZING","features":[372]},{"name":"FS_LINE_UNAVAILABLE","features":[372]},{"name":"FS_NOT_FAX_CALL","features":[372]},{"name":"FS_NO_ANSWER","features":[372]},{"name":"FS_NO_DIAL_TONE","features":[372]},{"name":"FS_RECEIVING","features":[372]},{"name":"FS_TRANSMITTING","features":[372]},{"name":"FS_USER_ABORT","features":[372]},{"name":"FaxAbort","features":[372,303]},{"name":"FaxAccessCheck","features":[372,303]},{"name":"FaxAccount","features":[372]},{"name":"FaxAccountFolders","features":[372]},{"name":"FaxAccountIncomingArchive","features":[372]},{"name":"FaxAccountIncomingQueue","features":[372]},{"name":"FaxAccountOutgoingArchive","features":[372]},{"name":"FaxAccountOutgoingQueue","features":[372]},{"name":"FaxAccountSet","features":[372]},{"name":"FaxAccounts","features":[372]},{"name":"FaxActivity","features":[372]},{"name":"FaxActivityLogging","features":[372]},{"name":"FaxClose","features":[372,303]},{"name":"FaxCompleteJobParamsA","features":[372,303]},{"name":"FaxCompleteJobParamsW","features":[372,303]},{"name":"FaxConfiguration","features":[372]},{"name":"FaxConnectFaxServerA","features":[372,303]},{"name":"FaxConnectFaxServerW","features":[372,303]},{"name":"FaxDevice","features":[372]},{"name":"FaxDeviceIds","features":[372]},{"name":"FaxDeviceProvider","features":[372]},{"name":"FaxDeviceProviders","features":[372]},{"name":"FaxDevices","features":[372]},{"name":"FaxDocument","features":[372]},{"name":"FaxEnableRoutingMethodA","features":[372,303]},{"name":"FaxEnableRoutingMethodW","features":[372,303]},{"name":"FaxEnumGlobalRoutingInfoA","features":[372,303]},{"name":"FaxEnumGlobalRoutingInfoW","features":[372,303]},{"name":"FaxEnumJobsA","features":[372,303]},{"name":"FaxEnumJobsW","features":[372,303]},{"name":"FaxEnumPortsA","features":[372,303]},{"name":"FaxEnumPortsW","features":[372,303]},{"name":"FaxEnumRoutingMethodsA","features":[372,303]},{"name":"FaxEnumRoutingMethodsW","features":[372,303]},{"name":"FaxEventLogging","features":[372]},{"name":"FaxFolders","features":[372]},{"name":"FaxFreeBuffer","features":[372]},{"name":"FaxGetConfigurationA","features":[372,303]},{"name":"FaxGetConfigurationW","features":[372,303]},{"name":"FaxGetDeviceStatusA","features":[372,303]},{"name":"FaxGetDeviceStatusW","features":[372,303]},{"name":"FaxGetJobA","features":[372,303]},{"name":"FaxGetJobW","features":[372,303]},{"name":"FaxGetLoggingCategoriesA","features":[372,303]},{"name":"FaxGetLoggingCategoriesW","features":[372,303]},{"name":"FaxGetPageData","features":[372,303]},{"name":"FaxGetPortA","features":[372,303]},{"name":"FaxGetPortW","features":[372,303]},{"name":"FaxGetRoutingInfoA","features":[372,303]},{"name":"FaxGetRoutingInfoW","features":[372,303]},{"name":"FaxInboundRouting","features":[372]},{"name":"FaxInboundRoutingExtension","features":[372]},{"name":"FaxInboundRoutingExtensions","features":[372]},{"name":"FaxInboundRoutingMethod","features":[372]},{"name":"FaxInboundRoutingMethods","features":[372]},{"name":"FaxIncomingArchive","features":[372]},{"name":"FaxIncomingJob","features":[372]},{"name":"FaxIncomingJobs","features":[372]},{"name":"FaxIncomingMessage","features":[372]},{"name":"FaxIncomingMessageIterator","features":[372]},{"name":"FaxIncomingQueue","features":[372]},{"name":"FaxInitializeEventQueue","features":[372,303]},{"name":"FaxJobStatus","features":[372]},{"name":"FaxLoggingOptions","features":[372]},{"name":"FaxOpenPort","features":[372,303]},{"name":"FaxOutboundRouting","features":[372]},{"name":"FaxOutboundRoutingGroup","features":[372]},{"name":"FaxOutboundRoutingGroups","features":[372]},{"name":"FaxOutboundRoutingRule","features":[372]},{"name":"FaxOutboundRoutingRules","features":[372]},{"name":"FaxOutgoingArchive","features":[372]},{"name":"FaxOutgoingJob","features":[372]},{"name":"FaxOutgoingJobs","features":[372]},{"name":"FaxOutgoingMessage","features":[372]},{"name":"FaxOutgoingMessageIterator","features":[372]},{"name":"FaxOutgoingQueue","features":[372]},{"name":"FaxPrintCoverPageA","features":[372,303,314]},{"name":"FaxPrintCoverPageW","features":[372,303,314]},{"name":"FaxReceiptOptions","features":[372]},{"name":"FaxRecipient","features":[372]},{"name":"FaxRecipients","features":[372]},{"name":"FaxRegisterRoutingExtensionW","features":[372,303]},{"name":"FaxRegisterServiceProviderW","features":[372,303]},{"name":"FaxSecurity","features":[372]},{"name":"FaxSecurity2","features":[372]},{"name":"FaxSendDocumentA","features":[372,303]},{"name":"FaxSendDocumentForBroadcastA","features":[372,303]},{"name":"FaxSendDocumentForBroadcastW","features":[372,303]},{"name":"FaxSendDocumentW","features":[372,303]},{"name":"FaxSender","features":[372]},{"name":"FaxServer","features":[372]},{"name":"FaxSetConfigurationA","features":[372,303]},{"name":"FaxSetConfigurationW","features":[372,303]},{"name":"FaxSetGlobalRoutingInfoA","features":[372,303]},{"name":"FaxSetGlobalRoutingInfoW","features":[372,303]},{"name":"FaxSetJobA","features":[372,303]},{"name":"FaxSetJobW","features":[372,303]},{"name":"FaxSetLoggingCategoriesA","features":[372,303]},{"name":"FaxSetLoggingCategoriesW","features":[372,303]},{"name":"FaxSetPortA","features":[372,303]},{"name":"FaxSetPortW","features":[372,303]},{"name":"FaxSetRoutingInfoA","features":[372,303]},{"name":"FaxSetRoutingInfoW","features":[372,303]},{"name":"FaxStartPrintJobA","features":[372,303,314]},{"name":"FaxStartPrintJobW","features":[372,303,314]},{"name":"FaxUnregisterServiceProviderW","features":[372,303]},{"name":"GUID_DeviceArrivedLaunch","features":[372]},{"name":"GUID_STIUserDefined1","features":[372]},{"name":"GUID_STIUserDefined2","features":[372]},{"name":"GUID_STIUserDefined3","features":[372]},{"name":"GUID_ScanFaxImage","features":[372]},{"name":"GUID_ScanImage","features":[372]},{"name":"GUID_ScanPrintImage","features":[372]},{"name":"IFaxAccount","features":[372,354]},{"name":"IFaxAccountFolders","features":[372,354]},{"name":"IFaxAccountIncomingArchive","features":[372,354]},{"name":"IFaxAccountIncomingQueue","features":[372,354]},{"name":"IFaxAccountNotify","features":[372,354]},{"name":"IFaxAccountOutgoingArchive","features":[372,354]},{"name":"IFaxAccountOutgoingQueue","features":[372,354]},{"name":"IFaxAccountSet","features":[372,354]},{"name":"IFaxAccounts","features":[372,354]},{"name":"IFaxActivity","features":[372,354]},{"name":"IFaxActivityLogging","features":[372,354]},{"name":"IFaxConfiguration","features":[372,354]},{"name":"IFaxDevice","features":[372,354]},{"name":"IFaxDeviceIds","features":[372,354]},{"name":"IFaxDeviceProvider","features":[372,354]},{"name":"IFaxDeviceProviders","features":[372,354]},{"name":"IFaxDevices","features":[372,354]},{"name":"IFaxDocument","features":[372,354]},{"name":"IFaxDocument2","features":[372,354]},{"name":"IFaxEventLogging","features":[372,354]},{"name":"IFaxFolders","features":[372,354]},{"name":"IFaxInboundRouting","features":[372,354]},{"name":"IFaxInboundRoutingExtension","features":[372,354]},{"name":"IFaxInboundRoutingExtensions","features":[372,354]},{"name":"IFaxInboundRoutingMethod","features":[372,354]},{"name":"IFaxInboundRoutingMethods","features":[372,354]},{"name":"IFaxIncomingArchive","features":[372,354]},{"name":"IFaxIncomingJob","features":[372,354]},{"name":"IFaxIncomingJobs","features":[372,354]},{"name":"IFaxIncomingMessage","features":[372,354]},{"name":"IFaxIncomingMessage2","features":[372,354]},{"name":"IFaxIncomingMessageIterator","features":[372,354]},{"name":"IFaxIncomingQueue","features":[372,354]},{"name":"IFaxJobStatus","features":[372,354]},{"name":"IFaxLoggingOptions","features":[372,354]},{"name":"IFaxOutboundRouting","features":[372,354]},{"name":"IFaxOutboundRoutingGroup","features":[372,354]},{"name":"IFaxOutboundRoutingGroups","features":[372,354]},{"name":"IFaxOutboundRoutingRule","features":[372,354]},{"name":"IFaxOutboundRoutingRules","features":[372,354]},{"name":"IFaxOutgoingArchive","features":[372,354]},{"name":"IFaxOutgoingJob","features":[372,354]},{"name":"IFaxOutgoingJob2","features":[372,354]},{"name":"IFaxOutgoingJobs","features":[372,354]},{"name":"IFaxOutgoingMessage","features":[372,354]},{"name":"IFaxOutgoingMessage2","features":[372,354]},{"name":"IFaxOutgoingMessageIterator","features":[372,354]},{"name":"IFaxOutgoingQueue","features":[372,354]},{"name":"IFaxReceiptOptions","features":[372,354]},{"name":"IFaxRecipient","features":[372,354]},{"name":"IFaxRecipients","features":[372,354]},{"name":"IFaxSecurity","features":[372,354]},{"name":"IFaxSecurity2","features":[372,354]},{"name":"IFaxSender","features":[372,354]},{"name":"IFaxServer","features":[372,354]},{"name":"IFaxServer2","features":[372,354]},{"name":"IFaxServerNotify","features":[372,354]},{"name":"IFaxServerNotify2","features":[372,354]},{"name":"IS_DIGITAL_CAMERA_STR","features":[372]},{"name":"IS_DIGITAL_CAMERA_VAL","features":[372]},{"name":"IStiDevice","features":[372]},{"name":"IStiDeviceControl","features":[372]},{"name":"IStiUSD","features":[372]},{"name":"IStillImageW","features":[372]},{"name":"JC_DELETE","features":[372]},{"name":"JC_PAUSE","features":[372]},{"name":"JC_RESUME","features":[372]},{"name":"JC_UNKNOWN","features":[372]},{"name":"JSA_DISCOUNT_PERIOD","features":[372]},{"name":"JSA_NOW","features":[372]},{"name":"JSA_SPECIFIC_TIME","features":[372]},{"name":"JS_DELETING","features":[372]},{"name":"JS_FAILED","features":[372]},{"name":"JS_INPROGRESS","features":[372]},{"name":"JS_NOLINE","features":[372]},{"name":"JS_PAUSED","features":[372]},{"name":"JS_PENDING","features":[372]},{"name":"JS_RETRIES_EXCEEDED","features":[372]},{"name":"JS_RETRYING","features":[372]},{"name":"JT_FAIL_RECEIVE","features":[372]},{"name":"JT_RECEIVE","features":[372]},{"name":"JT_ROUTING","features":[372]},{"name":"JT_SEND","features":[372]},{"name":"JT_UNKNOWN","features":[372]},{"name":"MAX_NOTIFICATION_DATA","features":[372]},{"name":"MS_FAXROUTE_EMAIL_GUID","features":[372]},{"name":"MS_FAXROUTE_FOLDER_GUID","features":[372]},{"name":"MS_FAXROUTE_PRINTING_GUID","features":[372]},{"name":"PFAXABORT","features":[372,303]},{"name":"PFAXACCESSCHECK","features":[372,303]},{"name":"PFAXCLOSE","features":[372,303]},{"name":"PFAXCOMPLETEJOBPARAMSA","features":[372,303]},{"name":"PFAXCOMPLETEJOBPARAMSW","features":[372,303]},{"name":"PFAXCONNECTFAXSERVERA","features":[372,303]},{"name":"PFAXCONNECTFAXSERVERW","features":[372,303]},{"name":"PFAXDEVABORTOPERATION","features":[372,303]},{"name":"PFAXDEVCONFIGURE","features":[372,303,353]},{"name":"PFAXDEVENDJOB","features":[372,303]},{"name":"PFAXDEVINITIALIZE","features":[372,303]},{"name":"PFAXDEVRECEIVE","features":[372,303]},{"name":"PFAXDEVREPORTSTATUS","features":[372,303]},{"name":"PFAXDEVSEND","features":[372,303]},{"name":"PFAXDEVSHUTDOWN","features":[372]},{"name":"PFAXDEVSTARTJOB","features":[372,303]},{"name":"PFAXDEVVIRTUALDEVICECREATION","features":[372,303]},{"name":"PFAXENABLEROUTINGMETHODA","features":[372,303]},{"name":"PFAXENABLEROUTINGMETHODW","features":[372,303]},{"name":"PFAXENUMGLOBALROUTINGINFOA","features":[372,303]},{"name":"PFAXENUMGLOBALROUTINGINFOW","features":[372,303]},{"name":"PFAXENUMJOBSA","features":[372,303]},{"name":"PFAXENUMJOBSW","features":[372,303]},{"name":"PFAXENUMPORTSA","features":[372,303]},{"name":"PFAXENUMPORTSW","features":[372,303]},{"name":"PFAXENUMROUTINGMETHODSA","features":[372,303]},{"name":"PFAXENUMROUTINGMETHODSW","features":[372,303]},{"name":"PFAXFREEBUFFER","features":[372]},{"name":"PFAXGETCONFIGURATIONA","features":[372,303]},{"name":"PFAXGETCONFIGURATIONW","features":[372,303]},{"name":"PFAXGETDEVICESTATUSA","features":[372,303]},{"name":"PFAXGETDEVICESTATUSW","features":[372,303]},{"name":"PFAXGETJOBA","features":[372,303]},{"name":"PFAXGETJOBW","features":[372,303]},{"name":"PFAXGETLOGGINGCATEGORIESA","features":[372,303]},{"name":"PFAXGETLOGGINGCATEGORIESW","features":[372,303]},{"name":"PFAXGETPAGEDATA","features":[372,303]},{"name":"PFAXGETPORTA","features":[372,303]},{"name":"PFAXGETPORTW","features":[372,303]},{"name":"PFAXGETROUTINGINFOA","features":[372,303]},{"name":"PFAXGETROUTINGINFOW","features":[372,303]},{"name":"PFAXINITIALIZEEVENTQUEUE","features":[372,303]},{"name":"PFAXOPENPORT","features":[372,303]},{"name":"PFAXPRINTCOVERPAGEA","features":[372,303,314]},{"name":"PFAXPRINTCOVERPAGEW","features":[372,303,314]},{"name":"PFAXREGISTERROUTINGEXTENSIONW","features":[372,303]},{"name":"PFAXREGISTERSERVICEPROVIDERW","features":[372,303]},{"name":"PFAXROUTEADDFILE","features":[372]},{"name":"PFAXROUTEDELETEFILE","features":[372]},{"name":"PFAXROUTEDEVICECHANGENOTIFICATION","features":[372,303]},{"name":"PFAXROUTEDEVICEENABLE","features":[372,303]},{"name":"PFAXROUTEENUMFILE","features":[372,303]},{"name":"PFAXROUTEENUMFILES","features":[372,303]},{"name":"PFAXROUTEGETFILE","features":[372,303]},{"name":"PFAXROUTEGETROUTINGINFO","features":[372,303]},{"name":"PFAXROUTEINITIALIZE","features":[372,303]},{"name":"PFAXROUTEMETHOD","features":[372,303]},{"name":"PFAXROUTEMODIFYROUTINGDATA","features":[372,303]},{"name":"PFAXROUTESETROUTINGINFO","features":[372,303]},{"name":"PFAXSENDDOCUMENTA","features":[372,303]},{"name":"PFAXSENDDOCUMENTFORBROADCASTA","features":[372,303]},{"name":"PFAXSENDDOCUMENTFORBROADCASTW","features":[372,303]},{"name":"PFAXSENDDOCUMENTW","features":[372,303]},{"name":"PFAXSETCONFIGURATIONA","features":[372,303]},{"name":"PFAXSETCONFIGURATIONW","features":[372,303]},{"name":"PFAXSETGLOBALROUTINGINFOA","features":[372,303]},{"name":"PFAXSETGLOBALROUTINGINFOW","features":[372,303]},{"name":"PFAXSETJOBA","features":[372,303]},{"name":"PFAXSETJOBW","features":[372,303]},{"name":"PFAXSETLOGGINGCATEGORIESA","features":[372,303]},{"name":"PFAXSETLOGGINGCATEGORIESW","features":[372,303]},{"name":"PFAXSETPORTA","features":[372,303]},{"name":"PFAXSETPORTW","features":[372,303]},{"name":"PFAXSETROUTINGINFOA","features":[372,303]},{"name":"PFAXSETROUTINGINFOW","features":[372,303]},{"name":"PFAXSTARTPRINTJOBA","features":[372,303,314]},{"name":"PFAXSTARTPRINTJOBW","features":[372,303,314]},{"name":"PFAXUNREGISTERSERVICEPROVIDERW","features":[372,303]},{"name":"PFAX_EXT_CONFIG_CHANGE","features":[372]},{"name":"PFAX_EXT_FREE_BUFFER","features":[372]},{"name":"PFAX_EXT_GET_DATA","features":[372]},{"name":"PFAX_EXT_INITIALIZE_CONFIG","features":[372,303]},{"name":"PFAX_EXT_REGISTER_FOR_EVENTS","features":[372,303]},{"name":"PFAX_EXT_SET_DATA","features":[372,303]},{"name":"PFAX_EXT_UNREGISTER_FOR_EVENTS","features":[372,303]},{"name":"PFAX_LINECALLBACK","features":[372,303]},{"name":"PFAX_RECIPIENT_CALLBACKA","features":[372,303]},{"name":"PFAX_RECIPIENT_CALLBACKW","features":[372,303]},{"name":"PFAX_ROUTING_INSTALLATION_CALLBACKW","features":[372,303]},{"name":"PFAX_SEND_CALLBACK","features":[372,303]},{"name":"PFAX_SERVICE_CALLBACK","features":[372,303]},{"name":"PORT_OPEN_MODIFY","features":[372]},{"name":"PORT_OPEN_QUERY","features":[372]},{"name":"QUERY_STATUS","features":[372]},{"name":"REGSTR_VAL_BAUDRATE","features":[372]},{"name":"REGSTR_VAL_BAUDRATE_A","features":[372]},{"name":"REGSTR_VAL_DATA_W","features":[372]},{"name":"REGSTR_VAL_DEVICESUBTYPE_W","features":[372]},{"name":"REGSTR_VAL_DEVICETYPE_W","features":[372]},{"name":"REGSTR_VAL_DEVICE_NAME_W","features":[372]},{"name":"REGSTR_VAL_DEV_NAME_W","features":[372]},{"name":"REGSTR_VAL_DRIVER_DESC_W","features":[372]},{"name":"REGSTR_VAL_FRIENDLY_NAME_W","features":[372]},{"name":"REGSTR_VAL_GENERIC_CAPS_W","features":[372]},{"name":"REGSTR_VAL_GUID","features":[372]},{"name":"REGSTR_VAL_GUID_W","features":[372]},{"name":"REGSTR_VAL_HARDWARE","features":[372]},{"name":"REGSTR_VAL_HARDWARE_W","features":[372]},{"name":"REGSTR_VAL_LAUNCHABLE","features":[372]},{"name":"REGSTR_VAL_LAUNCHABLE_W","features":[372]},{"name":"REGSTR_VAL_LAUNCH_APPS","features":[372]},{"name":"REGSTR_VAL_LAUNCH_APPS_W","features":[372]},{"name":"REGSTR_VAL_SHUTDOWNDELAY","features":[372]},{"name":"REGSTR_VAL_SHUTDOWNDELAY_W","features":[372]},{"name":"REGSTR_VAL_TYPE_W","features":[372]},{"name":"REGSTR_VAL_VENDOR_NAME_W","features":[372]},{"name":"SEND_TO_FAX_RECIPIENT_ATTACHMENT","features":[372]},{"name":"STATUS_DISABLE","features":[372]},{"name":"STATUS_ENABLE","features":[372]},{"name":"STIEDFL_ALLDEVICES","features":[372]},{"name":"STIEDFL_ATTACHEDONLY","features":[372]},{"name":"STIERR_ALREADY_INITIALIZED","features":[372]},{"name":"STIERR_BADDRIVER","features":[372]},{"name":"STIERR_BETA_VERSION","features":[372]},{"name":"STIERR_DEVICENOTREG","features":[372]},{"name":"STIERR_DEVICE_LOCKED","features":[372]},{"name":"STIERR_DEVICE_NOTREADY","features":[372]},{"name":"STIERR_GENERIC","features":[372]},{"name":"STIERR_HANDLEEXISTS","features":[372]},{"name":"STIERR_INVALID_DEVICE_NAME","features":[372]},{"name":"STIERR_INVALID_HW_TYPE","features":[372]},{"name":"STIERR_INVALID_PARAM","features":[372]},{"name":"STIERR_NEEDS_LOCK","features":[372]},{"name":"STIERR_NOEVENTS","features":[372]},{"name":"STIERR_NOINTERFACE","features":[372]},{"name":"STIERR_NOTINITIALIZED","features":[372]},{"name":"STIERR_NOT_INITIALIZED","features":[372]},{"name":"STIERR_OBJECTNOTFOUND","features":[372]},{"name":"STIERR_OLD_VERSION","features":[372]},{"name":"STIERR_OUTOFMEMORY","features":[372]},{"name":"STIERR_READONLY","features":[372]},{"name":"STIERR_SHARING_VIOLATION","features":[372]},{"name":"STIERR_UNSUPPORTED","features":[372]},{"name":"STINOTIFY","features":[372]},{"name":"STISUBSCRIBE","features":[372,303]},{"name":"STI_ADD_DEVICE_BROADCAST_ACTION","features":[372]},{"name":"STI_ADD_DEVICE_BROADCAST_STRING","features":[372]},{"name":"STI_CHANGENOEFFECT","features":[372]},{"name":"STI_DEVICE_CREATE_BOTH","features":[372]},{"name":"STI_DEVICE_CREATE_DATA","features":[372]},{"name":"STI_DEVICE_CREATE_FOR_MONITOR","features":[372]},{"name":"STI_DEVICE_CREATE_MASK","features":[372]},{"name":"STI_DEVICE_CREATE_STATUS","features":[372]},{"name":"STI_DEVICE_INFORMATIONW","features":[372]},{"name":"STI_DEVICE_MJ_TYPE","features":[372]},{"name":"STI_DEVICE_STATUS","features":[372]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP","features":[372]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP_A","features":[372]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS","features":[372]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS_A","features":[372]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE","features":[372]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE_A","features":[372]},{"name":"STI_DEVICE_VALUE_ISIS_NAME","features":[372]},{"name":"STI_DEVICE_VALUE_ISIS_NAME_A","features":[372]},{"name":"STI_DEVICE_VALUE_TIMEOUT","features":[372]},{"name":"STI_DEVICE_VALUE_TIMEOUT_A","features":[372]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME","features":[372]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME_A","features":[372]},{"name":"STI_DEVSTATUS_EVENTS_STATE","features":[372]},{"name":"STI_DEVSTATUS_ONLINE_STATE","features":[372]},{"name":"STI_DEV_CAPS","features":[372]},{"name":"STI_DIAG","features":[372]},{"name":"STI_DIAGCODE_HWPRESENCE","features":[372]},{"name":"STI_ERROR_NO_ERROR","features":[372]},{"name":"STI_EVENTHANDLING_ENABLED","features":[372]},{"name":"STI_EVENTHANDLING_PENDING","features":[372]},{"name":"STI_EVENTHANDLING_POLLING","features":[372]},{"name":"STI_GENCAP_AUTO_PORTSELECT","features":[372]},{"name":"STI_GENCAP_COMMON_MASK","features":[372]},{"name":"STI_GENCAP_GENERATE_ARRIVALEVENT","features":[372]},{"name":"STI_GENCAP_NOTIFICATIONS","features":[372]},{"name":"STI_GENCAP_POLLING_NEEDED","features":[372]},{"name":"STI_GENCAP_SUBSET","features":[372]},{"name":"STI_GENCAP_WIA","features":[372]},{"name":"STI_HW_CONFIG_PARALLEL","features":[372]},{"name":"STI_HW_CONFIG_SCSI","features":[372]},{"name":"STI_HW_CONFIG_SERIAL","features":[372]},{"name":"STI_HW_CONFIG_UNKNOWN","features":[372]},{"name":"STI_HW_CONFIG_USB","features":[372]},{"name":"STI_MAX_INTERNAL_NAME_LENGTH","features":[372]},{"name":"STI_NOTCONNECTED","features":[372]},{"name":"STI_OK","features":[372]},{"name":"STI_ONLINESTATE_BUSY","features":[372]},{"name":"STI_ONLINESTATE_ERROR","features":[372]},{"name":"STI_ONLINESTATE_INITIALIZING","features":[372]},{"name":"STI_ONLINESTATE_IO_ACTIVE","features":[372]},{"name":"STI_ONLINESTATE_OFFLINE","features":[372]},{"name":"STI_ONLINESTATE_OPERATIONAL","features":[372]},{"name":"STI_ONLINESTATE_PAPER_JAM","features":[372]},{"name":"STI_ONLINESTATE_PAPER_PROBLEM","features":[372]},{"name":"STI_ONLINESTATE_PAUSED","features":[372]},{"name":"STI_ONLINESTATE_PENDING","features":[372]},{"name":"STI_ONLINESTATE_POWER_SAVE","features":[372]},{"name":"STI_ONLINESTATE_TRANSFERRING","features":[372]},{"name":"STI_ONLINESTATE_USER_INTERVENTION","features":[372]},{"name":"STI_ONLINESTATE_WARMING_UP","features":[372]},{"name":"STI_RAW_RESERVED","features":[372]},{"name":"STI_REMOVE_DEVICE_BROADCAST_ACTION","features":[372]},{"name":"STI_REMOVE_DEVICE_BROADCAST_STRING","features":[372]},{"name":"STI_SUBSCRIBE_FLAG_EVENT","features":[372]},{"name":"STI_SUBSCRIBE_FLAG_WINDOW","features":[372]},{"name":"STI_TRACE_ERROR","features":[372]},{"name":"STI_TRACE_INFORMATION","features":[372]},{"name":"STI_TRACE_WARNING","features":[372]},{"name":"STI_UNICODE","features":[372]},{"name":"STI_USD_CAPS","features":[372]},{"name":"STI_USD_GENCAP_NATIVE_PUSHSUPPORT","features":[372]},{"name":"STI_VERSION","features":[372]},{"name":"STI_VERSION_FLAG_MASK","features":[372]},{"name":"STI_VERSION_FLAG_UNICODE","features":[372]},{"name":"STI_VERSION_MIN_ALLOWED","features":[372]},{"name":"STI_VERSION_REAL","features":[372]},{"name":"STI_WIA_DEVICE_INFORMATIONW","features":[372]},{"name":"SUPPORTS_MSCPLUS_STR","features":[372]},{"name":"SUPPORTS_MSCPLUS_VAL","features":[372]},{"name":"SendToFaxRecipient","features":[372]},{"name":"SendToMode","features":[372]},{"name":"StiCreateInstanceW","features":[372,303]},{"name":"StiDeviceTypeDefault","features":[372]},{"name":"StiDeviceTypeDigitalCamera","features":[372]},{"name":"StiDeviceTypeScanner","features":[372]},{"name":"StiDeviceTypeStreamingVideo","features":[372]},{"name":"WIA_INCOMPAT_XP","features":[372]},{"name":"_ERROR_INFOW","features":[372]},{"name":"faetFXSSVC_ENDED","features":[372]},{"name":"faetIN_ARCHIVE","features":[372]},{"name":"faetIN_QUEUE","features":[372]},{"name":"faetNONE","features":[372]},{"name":"faetOUT_ARCHIVE","features":[372]},{"name":"faetOUT_QUEUE","features":[372]},{"name":"far2MANAGE_ARCHIVES","features":[372]},{"name":"far2MANAGE_CONFIG","features":[372]},{"name":"far2MANAGE_OUT_JOBS","features":[372]},{"name":"far2MANAGE_RECEIVE_FOLDER","features":[372]},{"name":"far2QUERY_ARCHIVES","features":[372]},{"name":"far2QUERY_CONFIG","features":[372]},{"name":"far2QUERY_OUT_JOBS","features":[372]},{"name":"far2SUBMIT_HIGH","features":[372]},{"name":"far2SUBMIT_LOW","features":[372]},{"name":"far2SUBMIT_NORMAL","features":[372]},{"name":"farMANAGE_CONFIG","features":[372]},{"name":"farMANAGE_IN_ARCHIVE","features":[372]},{"name":"farMANAGE_JOBS","features":[372]},{"name":"farMANAGE_OUT_ARCHIVE","features":[372]},{"name":"farQUERY_CONFIG","features":[372]},{"name":"farQUERY_IN_ARCHIVE","features":[372]},{"name":"farQUERY_JOBS","features":[372]},{"name":"farQUERY_OUT_ARCHIVE","features":[372]},{"name":"farSUBMIT_HIGH","features":[372]},{"name":"farSUBMIT_LOW","features":[372]},{"name":"farSUBMIT_NORMAL","features":[372]},{"name":"fcptLOCAL","features":[372]},{"name":"fcptNONE","features":[372]},{"name":"fcptSERVER","features":[372]},{"name":"fdrmAUTO_ANSWER","features":[372]},{"name":"fdrmMANUAL_ANSWER","features":[372]},{"name":"fdrmNO_ANSWER","features":[372]},{"name":"fgsALL_DEV_NOT_VALID","features":[372]},{"name":"fgsALL_DEV_VALID","features":[372]},{"name":"fgsEMPTY","features":[372]},{"name":"fgsSOME_DEV_NOT_VALID","features":[372]},{"name":"fjesANSWERED","features":[372]},{"name":"fjesBAD_ADDRESS","features":[372]},{"name":"fjesBUSY","features":[372]},{"name":"fjesCALL_ABORTED","features":[372]},{"name":"fjesCALL_BLACKLISTED","features":[372]},{"name":"fjesCALL_COMPLETED","features":[372]},{"name":"fjesCALL_DELAYED","features":[372]},{"name":"fjesDIALING","features":[372]},{"name":"fjesDISCONNECTED","features":[372]},{"name":"fjesFATAL_ERROR","features":[372]},{"name":"fjesHANDLED","features":[372]},{"name":"fjesINITIALIZING","features":[372]},{"name":"fjesLINE_UNAVAILABLE","features":[372]},{"name":"fjesNONE","features":[372]},{"name":"fjesNOT_FAX_CALL","features":[372]},{"name":"fjesNO_ANSWER","features":[372]},{"name":"fjesNO_DIAL_TONE","features":[372]},{"name":"fjesPARTIALLY_RECEIVED","features":[372]},{"name":"fjesPROPRIETARY","features":[372]},{"name":"fjesRECEIVING","features":[372]},{"name":"fjesTRANSMITTING","features":[372]},{"name":"fjoDELETE","features":[372]},{"name":"fjoPAUSE","features":[372]},{"name":"fjoRECIPIENT_INFO","features":[372]},{"name":"fjoRESTART","features":[372]},{"name":"fjoRESUME","features":[372]},{"name":"fjoSENDER_INFO","features":[372]},{"name":"fjoVIEW","features":[372]},{"name":"fjsCANCELED","features":[372]},{"name":"fjsCANCELING","features":[372]},{"name":"fjsCOMPLETED","features":[372]},{"name":"fjsFAILED","features":[372]},{"name":"fjsINPROGRESS","features":[372]},{"name":"fjsNOLINE","features":[372]},{"name":"fjsPAUSED","features":[372]},{"name":"fjsPENDING","features":[372]},{"name":"fjsRETRIES_EXCEEDED","features":[372]},{"name":"fjsRETRYING","features":[372]},{"name":"fjsROUTING","features":[372]},{"name":"fjtRECEIVE","features":[372]},{"name":"fjtROUTING","features":[372]},{"name":"fjtSEND","features":[372]},{"name":"fllMAX","features":[372]},{"name":"fllMED","features":[372]},{"name":"fllMIN","features":[372]},{"name":"fllNONE","features":[372]},{"name":"fpsBAD_GUID","features":[372]},{"name":"fpsBAD_VERSION","features":[372]},{"name":"fpsCANT_INIT","features":[372]},{"name":"fpsCANT_LINK","features":[372]},{"name":"fpsCANT_LOAD","features":[372]},{"name":"fpsSERVER_ERROR","features":[372]},{"name":"fpsSUCCESS","features":[372]},{"name":"fptHIGH","features":[372]},{"name":"fptLOW","features":[372]},{"name":"fptNORMAL","features":[372]},{"name":"frrcANY_CODE","features":[372]},{"name":"frsALL_GROUP_DEV_NOT_VALID","features":[372]},{"name":"frsBAD_DEVICE","features":[372]},{"name":"frsEMPTY_GROUP","features":[372]},{"name":"frsSOME_GROUP_DEV_NOT_VALID","features":[372]},{"name":"frsVALID","features":[372]},{"name":"frtMAIL","features":[372]},{"name":"frtMSGBOX","features":[372]},{"name":"frtNONE","features":[372]},{"name":"fsAPI_VERSION_0","features":[372]},{"name":"fsAPI_VERSION_1","features":[372]},{"name":"fsAPI_VERSION_2","features":[372]},{"name":"fsAPI_VERSION_3","features":[372]},{"name":"fsatANONYMOUS","features":[372]},{"name":"fsatBASIC","features":[372]},{"name":"fsatNTLM","features":[372]},{"name":"fsetACTIVITY","features":[372]},{"name":"fsetCONFIG","features":[372]},{"name":"fsetDEVICE_STATUS","features":[372]},{"name":"fsetFXSSVC_ENDED","features":[372]},{"name":"fsetINCOMING_CALL","features":[372]},{"name":"fsetIN_ARCHIVE","features":[372]},{"name":"fsetIN_QUEUE","features":[372]},{"name":"fsetNONE","features":[372]},{"name":"fsetOUT_ARCHIVE","features":[372]},{"name":"fsetOUT_QUEUE","features":[372]},{"name":"fsetQUEUE_STATE","features":[372]},{"name":"fstDISCOUNT_PERIOD","features":[372]},{"name":"fstNOW","features":[372]},{"name":"fstSPECIFIC_TIME","features":[372]},{"name":"lDEFAULT_PREFETCH_SIZE","features":[372]},{"name":"prv_DEFAULT_PREFETCH_SIZE","features":[372]},{"name":"wcharREASSIGN_RECIPIENTS_DELIMITER","features":[372]}],"377":[{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_AD_PRINTER","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_ASP_INFRA","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_BLUETOOTH","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_BLUETOOTH_LE","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_NETBIOS","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_PNP","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_UPNP","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_WFD","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_WSD","features":[373]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_WUSB","features":[373]},{"name":"E_FDPAIRING_AUTHFAILURE","features":[373]},{"name":"E_FDPAIRING_AUTHNOTALLOWED","features":[373]},{"name":"E_FDPAIRING_CONNECTTIMEOUT","features":[373]},{"name":"E_FDPAIRING_HWFAILURE","features":[373]},{"name":"E_FDPAIRING_IPBUSDISABLED","features":[373]},{"name":"E_FDPAIRING_NOCONNECTION","features":[373]},{"name":"E_FDPAIRING_NOPROFILES","features":[373]},{"name":"E_FDPAIRING_TOOMANYCONNECTIONS","features":[373]},{"name":"FCTN_CATEGORY_BT","features":[373]},{"name":"FCTN_CATEGORY_DEVICEDISPLAYOBJECTS","features":[373]},{"name":"FCTN_CATEGORY_DEVICEFUNCTIONENUMERATORS","features":[373]},{"name":"FCTN_CATEGORY_DEVICEPAIRING","features":[373]},{"name":"FCTN_CATEGORY_DEVICES","features":[373]},{"name":"FCTN_CATEGORY_DEVQUERYOBJECTS","features":[373]},{"name":"FCTN_CATEGORY_NETBIOS","features":[373]},{"name":"FCTN_CATEGORY_NETWORKDEVICES","features":[373]},{"name":"FCTN_CATEGORY_PNP","features":[373]},{"name":"FCTN_CATEGORY_PNPXASSOCIATION","features":[373]},{"name":"FCTN_CATEGORY_PUBLICATION","features":[373]},{"name":"FCTN_CATEGORY_REGISTRY","features":[373]},{"name":"FCTN_CATEGORY_SSDP","features":[373]},{"name":"FCTN_CATEGORY_WCN","features":[373]},{"name":"FCTN_CATEGORY_WSDISCOVERY","features":[373]},{"name":"FCTN_CATEGORY_WUSB","features":[373]},{"name":"FCTN_SUBCAT_DEVICES_WSDPRINTERS","features":[373]},{"name":"FCTN_SUBCAT_NETWORKDEVICES_SSDP","features":[373]},{"name":"FCTN_SUBCAT_NETWORKDEVICES_WSD","features":[373]},{"name":"FCTN_SUBCAT_REG_DIRECTED","features":[373]},{"name":"FCTN_SUBCAT_REG_PUBLICATION","features":[373]},{"name":"FD_CONSTRAINTVALUE_ALL","features":[373]},{"name":"FD_CONSTRAINTVALUE_COMCLSCONTEXT_INPROC_SERVER","features":[373]},{"name":"FD_CONSTRAINTVALUE_COMCLSCONTEXT_LOCAL_SERVER","features":[373]},{"name":"FD_CONSTRAINTVALUE_FALSE","features":[373]},{"name":"FD_CONSTRAINTVALUE_PAIRED","features":[373]},{"name":"FD_CONSTRAINTVALUE_RECURSESUBCATEGORY_TRUE","features":[373]},{"name":"FD_CONSTRAINTVALUE_ROUTINGSCOPE_ALL","features":[373]},{"name":"FD_CONSTRAINTVALUE_ROUTINGSCOPE_DIRECT","features":[373]},{"name":"FD_CONSTRAINTVALUE_TRUE","features":[373]},{"name":"FD_CONSTRAINTVALUE_UNPAIRED","features":[373]},{"name":"FD_CONSTRAINTVALUE_VISIBILITY_ALL","features":[373]},{"name":"FD_CONSTRAINTVALUE_VISIBILITY_DEFAULT","features":[373]},{"name":"FD_EVENTID","features":[373]},{"name":"FD_EVENTID_ASYNCTHREADEXIT","features":[373]},{"name":"FD_EVENTID_IPADDRESSCHANGE","features":[373]},{"name":"FD_EVENTID_PRIVATE","features":[373]},{"name":"FD_EVENTID_QUERYREFRESH","features":[373]},{"name":"FD_EVENTID_SEARCHCOMPLETE","features":[373]},{"name":"FD_EVENTID_SEARCHSTART","features":[373]},{"name":"FD_LONGHORN","features":[373]},{"name":"FD_QUERYCONSTRAINT_COMCLSCONTEXT","features":[373]},{"name":"FD_QUERYCONSTRAINT_INQUIRY_TIMEOUT","features":[373]},{"name":"FD_QUERYCONSTRAINT_PAIRING_STATE","features":[373]},{"name":"FD_QUERYCONSTRAINT_PROVIDERINSTANCEID","features":[373]},{"name":"FD_QUERYCONSTRAINT_RECURSESUBCATEGORY","features":[373]},{"name":"FD_QUERYCONSTRAINT_ROUTINGSCOPE","features":[373]},{"name":"FD_QUERYCONSTRAINT_SUBCATEGORY","features":[373]},{"name":"FD_QUERYCONSTRAINT_VISIBILITY","features":[373]},{"name":"FD_SUBKEY","features":[373]},{"name":"FD_Visibility_Default","features":[373]},{"name":"FD_Visibility_Hidden","features":[373]},{"name":"FMTID_Device","features":[373]},{"name":"FMTID_DeviceInterface","features":[373]},{"name":"FMTID_FD","features":[373]},{"name":"FMTID_PNPX","features":[373]},{"name":"FMTID_PNPXDynamicProperty","features":[373]},{"name":"FMTID_Pairing","features":[373]},{"name":"FMTID_WSD","features":[373]},{"name":"FunctionDiscovery","features":[373]},{"name":"FunctionInstanceCollection","features":[373]},{"name":"IFunctionDiscovery","features":[373]},{"name":"IFunctionDiscoveryNotification","features":[373]},{"name":"IFunctionDiscoveryProvider","features":[373]},{"name":"IFunctionDiscoveryProviderFactory","features":[373]},{"name":"IFunctionDiscoveryProviderQuery","features":[373]},{"name":"IFunctionDiscoveryServiceProvider","features":[373]},{"name":"IFunctionInstance","features":[373,354]},{"name":"IFunctionInstanceCollection","features":[373]},{"name":"IFunctionInstanceCollectionQuery","features":[373]},{"name":"IFunctionInstanceQuery","features":[373]},{"name":"IPNPXAssociation","features":[373]},{"name":"IPNPXDeviceAssociation","features":[373]},{"name":"IPropertyStoreCollection","features":[373]},{"name":"IProviderProperties","features":[373]},{"name":"IProviderPropertyConstraintCollection","features":[373]},{"name":"IProviderPublishing","features":[373]},{"name":"IProviderQueryConstraintCollection","features":[373]},{"name":"MAX_FDCONSTRAINTNAME_LENGTH","features":[373]},{"name":"MAX_FDCONSTRAINTVALUE_LENGTH","features":[373]},{"name":"ONLINE_PROVIDER_DEVICES_QUERYCONSTRAINT_OWNERNAME","features":[373]},{"name":"PKEY_DeviceClass_Characteristics","features":[373,374]},{"name":"PKEY_DeviceClass_ClassCoInstallers","features":[373,374]},{"name":"PKEY_DeviceClass_ClassInstaller","features":[373,374]},{"name":"PKEY_DeviceClass_ClassName","features":[373,374]},{"name":"PKEY_DeviceClass_DefaultService","features":[373,374]},{"name":"PKEY_DeviceClass_DevType","features":[373,374]},{"name":"PKEY_DeviceClass_Exclusive","features":[373,374]},{"name":"PKEY_DeviceClass_Icon","features":[373,374]},{"name":"PKEY_DeviceClass_IconPath","features":[373,374]},{"name":"PKEY_DeviceClass_LowerFilters","features":[373,374]},{"name":"PKEY_DeviceClass_Name","features":[373,374]},{"name":"PKEY_DeviceClass_NoDisplayClass","features":[373,374]},{"name":"PKEY_DeviceClass_NoInstallClass","features":[373,374]},{"name":"PKEY_DeviceClass_NoUseClass","features":[373,374]},{"name":"PKEY_DeviceClass_PropPageProvider","features":[373,374]},{"name":"PKEY_DeviceClass_Security","features":[373,374]},{"name":"PKEY_DeviceClass_SecuritySDS","features":[373,374]},{"name":"PKEY_DeviceClass_SilentInstall","features":[373,374]},{"name":"PKEY_DeviceClass_UpperFilters","features":[373,374]},{"name":"PKEY_DeviceDisplay_Address","features":[373,374]},{"name":"PKEY_DeviceDisplay_AlwaysShowDeviceAsConnected","features":[373,374]},{"name":"PKEY_DeviceDisplay_AssociationArray","features":[373,374]},{"name":"PKEY_DeviceDisplay_BaselineExperienceId","features":[373,374]},{"name":"PKEY_DeviceDisplay_Category","features":[373,374]},{"name":"PKEY_DeviceDisplay_CategoryGroup_Desc","features":[373,374]},{"name":"PKEY_DeviceDisplay_CategoryGroup_Icon","features":[373,374]},{"name":"PKEY_DeviceDisplay_Category_Desc_Plural","features":[373,374]},{"name":"PKEY_DeviceDisplay_Category_Desc_Singular","features":[373,374]},{"name":"PKEY_DeviceDisplay_Category_Icon","features":[373,374]},{"name":"PKEY_DeviceDisplay_DeviceDescription1","features":[373,374]},{"name":"PKEY_DeviceDisplay_DeviceDescription2","features":[373,374]},{"name":"PKEY_DeviceDisplay_DeviceFunctionSubRank","features":[373,374]},{"name":"PKEY_DeviceDisplay_DiscoveryMethod","features":[373,374]},{"name":"PKEY_DeviceDisplay_ExperienceId","features":[373,374]},{"name":"PKEY_DeviceDisplay_FriendlyName","features":[373,374]},{"name":"PKEY_DeviceDisplay_Icon","features":[373,374]},{"name":"PKEY_DeviceDisplay_InstallInProgress","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsAuthenticated","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsConnected","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsDefaultDevice","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsDeviceUniquelyIdentifiable","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsEncrypted","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsLocalMachine","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsMetadataSearchInProgress","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsNetworkDevice","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsNotInterestingForDisplay","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsNotWorkingProperly","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsPaired","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsSharedDevice","features":[373,374]},{"name":"PKEY_DeviceDisplay_IsShowInDisconnectedState","features":[373,374]},{"name":"PKEY_DeviceDisplay_Last_Connected","features":[373,374]},{"name":"PKEY_DeviceDisplay_Last_Seen","features":[373,374]},{"name":"PKEY_DeviceDisplay_LaunchDeviceStageFromExplorer","features":[373,374]},{"name":"PKEY_DeviceDisplay_LaunchDeviceStageOnDeviceConnect","features":[373,374]},{"name":"PKEY_DeviceDisplay_Manufacturer","features":[373,374]},{"name":"PKEY_DeviceDisplay_MetadataCabinet","features":[373,374]},{"name":"PKEY_DeviceDisplay_MetadataChecksum","features":[373,374]},{"name":"PKEY_DeviceDisplay_MetadataPath","features":[373,374]},{"name":"PKEY_DeviceDisplay_ModelName","features":[373,374]},{"name":"PKEY_DeviceDisplay_ModelNumber","features":[373,374]},{"name":"PKEY_DeviceDisplay_PrimaryCategory","features":[373,374]},{"name":"PKEY_DeviceDisplay_RequiresPairingElevation","features":[373,374]},{"name":"PKEY_DeviceDisplay_RequiresUninstallElevation","features":[373,374]},{"name":"PKEY_DeviceDisplay_UnpairUninstall","features":[373,374]},{"name":"PKEY_DeviceDisplay_Version","features":[373,374]},{"name":"PKEY_DeviceInterfaceClass_DefaultInterface","features":[373,374]},{"name":"PKEY_DeviceInterface_ClassGuid","features":[373,374]},{"name":"PKEY_DeviceInterface_Enabled","features":[373,374]},{"name":"PKEY_DeviceInterface_FriendlyName","features":[373,374]},{"name":"PKEY_Device_AdditionalSoftwareRequested","features":[373,374]},{"name":"PKEY_Device_Address","features":[373,374]},{"name":"PKEY_Device_BIOSVersion","features":[373,374]},{"name":"PKEY_Device_BaseContainerId","features":[373,374]},{"name":"PKEY_Device_BusNumber","features":[373,374]},{"name":"PKEY_Device_BusRelations","features":[373,374]},{"name":"PKEY_Device_BusReportedDeviceDesc","features":[373,374]},{"name":"PKEY_Device_BusTypeGuid","features":[373,374]},{"name":"PKEY_Device_Capabilities","features":[373,374]},{"name":"PKEY_Device_Characteristics","features":[373,374]},{"name":"PKEY_Device_Children","features":[373,374]},{"name":"PKEY_Device_Class","features":[373,374]},{"name":"PKEY_Device_ClassGuid","features":[373,374]},{"name":"PKEY_Device_CompatibleIds","features":[373,374]},{"name":"PKEY_Device_ConfigFlags","features":[373,374]},{"name":"PKEY_Device_ContainerId","features":[373,374]},{"name":"PKEY_Device_DHP_Rebalance_Policy","features":[373,374]},{"name":"PKEY_Device_DevNodeStatus","features":[373,374]},{"name":"PKEY_Device_DevType","features":[373,374]},{"name":"PKEY_Device_DeviceDesc","features":[373,374]},{"name":"PKEY_Device_Driver","features":[373,374]},{"name":"PKEY_Device_DriverCoInstallers","features":[373,374]},{"name":"PKEY_Device_DriverDate","features":[373,374]},{"name":"PKEY_Device_DriverDesc","features":[373,374]},{"name":"PKEY_Device_DriverInfPath","features":[373,374]},{"name":"PKEY_Device_DriverInfSection","features":[373,374]},{"name":"PKEY_Device_DriverInfSectionExt","features":[373,374]},{"name":"PKEY_Device_DriverLogoLevel","features":[373,374]},{"name":"PKEY_Device_DriverPropPageProvider","features":[373,374]},{"name":"PKEY_Device_DriverProvider","features":[373,374]},{"name":"PKEY_Device_DriverRank","features":[373,374]},{"name":"PKEY_Device_DriverVersion","features":[373,374]},{"name":"PKEY_Device_EjectionRelations","features":[373,374]},{"name":"PKEY_Device_EnumeratorName","features":[373,374]},{"name":"PKEY_Device_Exclusive","features":[373,374]},{"name":"PKEY_Device_FriendlyName","features":[373,374]},{"name":"PKEY_Device_FriendlyNameAttributes","features":[373,374]},{"name":"PKEY_Device_GenericDriverInstalled","features":[373,374]},{"name":"PKEY_Device_HardwareIds","features":[373,374]},{"name":"PKEY_Device_InstallInProgress","features":[373,374]},{"name":"PKEY_Device_InstallState","features":[373,374]},{"name":"PKEY_Device_InstanceId","features":[373,374]},{"name":"PKEY_Device_IsAssociateableByUserAction","features":[373,374]},{"name":"PKEY_Device_Legacy","features":[373,374]},{"name":"PKEY_Device_LegacyBusType","features":[373,374]},{"name":"PKEY_Device_LocationInfo","features":[373,374]},{"name":"PKEY_Device_LocationPaths","features":[373,374]},{"name":"PKEY_Device_LowerFilters","features":[373,374]},{"name":"PKEY_Device_Manufacturer","features":[373,374]},{"name":"PKEY_Device_ManufacturerAttributes","features":[373,374]},{"name":"PKEY_Device_MatchingDeviceId","features":[373,374]},{"name":"PKEY_Device_ModelId","features":[373,374]},{"name":"PKEY_Device_NoConnectSound","features":[373,374]},{"name":"PKEY_Device_Numa_Node","features":[373,374]},{"name":"PKEY_Device_PDOName","features":[373,374]},{"name":"PKEY_Device_Parent","features":[373,374]},{"name":"PKEY_Device_PowerData","features":[373,374]},{"name":"PKEY_Device_PowerRelations","features":[373,374]},{"name":"PKEY_Device_PresenceNotForDevice","features":[373,374]},{"name":"PKEY_Device_ProblemCode","features":[373,374]},{"name":"PKEY_Device_RemovalPolicy","features":[373,374]},{"name":"PKEY_Device_RemovalPolicyDefault","features":[373,374]},{"name":"PKEY_Device_RemovalPolicyOverride","features":[373,374]},{"name":"PKEY_Device_RemovalRelations","features":[373,374]},{"name":"PKEY_Device_Reported","features":[373,374]},{"name":"PKEY_Device_ResourcePickerExceptions","features":[373,374]},{"name":"PKEY_Device_ResourcePickerTags","features":[373,374]},{"name":"PKEY_Device_SafeRemovalRequired","features":[373,374]},{"name":"PKEY_Device_SafeRemovalRequiredOverride","features":[373,374]},{"name":"PKEY_Device_Security","features":[373,374]},{"name":"PKEY_Device_SecuritySDS","features":[373,374]},{"name":"PKEY_Device_Service","features":[373,374]},{"name":"PKEY_Device_Siblings","features":[373,374]},{"name":"PKEY_Device_SignalStrength","features":[373,374]},{"name":"PKEY_Device_TransportRelations","features":[373,374]},{"name":"PKEY_Device_UINumber","features":[373,374]},{"name":"PKEY_Device_UINumberDescFormat","features":[373,374]},{"name":"PKEY_Device_UpperFilters","features":[373,374]},{"name":"PKEY_DrvPkg_BrandingIcon","features":[373,374]},{"name":"PKEY_DrvPkg_DetailedDescription","features":[373,374]},{"name":"PKEY_DrvPkg_DocumentationLink","features":[373,374]},{"name":"PKEY_DrvPkg_Icon","features":[373,374]},{"name":"PKEY_DrvPkg_Model","features":[373,374]},{"name":"PKEY_DrvPkg_VendorWebSite","features":[373,374]},{"name":"PKEY_FunctionInstance","features":[373,374]},{"name":"PKEY_Hardware_Devinst","features":[373,374]},{"name":"PKEY_Hardware_DisplayAttribute","features":[373,374]},{"name":"PKEY_Hardware_DriverDate","features":[373,374]},{"name":"PKEY_Hardware_DriverProvider","features":[373,374]},{"name":"PKEY_Hardware_DriverVersion","features":[373,374]},{"name":"PKEY_Hardware_Function","features":[373,374]},{"name":"PKEY_Hardware_Icon","features":[373,374]},{"name":"PKEY_Hardware_Image","features":[373,374]},{"name":"PKEY_Hardware_Manufacturer","features":[373,374]},{"name":"PKEY_Hardware_Model","features":[373,374]},{"name":"PKEY_Hardware_Name","features":[373,374]},{"name":"PKEY_Hardware_SerialNumber","features":[373,374]},{"name":"PKEY_Hardware_ShellAttributes","features":[373,374]},{"name":"PKEY_Hardware_Status","features":[373,374]},{"name":"PKEY_NAME","features":[373,374]},{"name":"PKEY_Numa_Proximity_Domain","features":[373,374]},{"name":"PKEY_PNPX_Associated","features":[373,374]},{"name":"PKEY_PNPX_Category_Desc_NonPlural","features":[373,374]},{"name":"PKEY_PNPX_CompactSignature","features":[373,374]},{"name":"PKEY_PNPX_CompatibleTypes","features":[373,374]},{"name":"PKEY_PNPX_DeviceCategory","features":[373,374]},{"name":"PKEY_PNPX_DeviceCategory_Desc","features":[373,374]},{"name":"PKEY_PNPX_DeviceCertHash","features":[373,374]},{"name":"PKEY_PNPX_DomainName","features":[373,374]},{"name":"PKEY_PNPX_FirmwareVersion","features":[373,374]},{"name":"PKEY_PNPX_GlobalIdentity","features":[373,374]},{"name":"PKEY_PNPX_ID","features":[373,374]},{"name":"PKEY_PNPX_IPBusEnumerated","features":[373,374]},{"name":"PKEY_PNPX_InstallState","features":[373,374]},{"name":"PKEY_PNPX_Installable","features":[373,374]},{"name":"PKEY_PNPX_IpAddress","features":[373,374]},{"name":"PKEY_PNPX_ManufacturerUrl","features":[373,374]},{"name":"PKEY_PNPX_MetadataVersion","features":[373,374]},{"name":"PKEY_PNPX_ModelUrl","features":[373,374]},{"name":"PKEY_PNPX_NetworkInterfaceGuid","features":[373,374]},{"name":"PKEY_PNPX_NetworkInterfaceLuid","features":[373,374]},{"name":"PKEY_PNPX_PhysicalAddress","features":[373,374]},{"name":"PKEY_PNPX_PresentationUrl","features":[373,374]},{"name":"PKEY_PNPX_RemoteAddress","features":[373,374]},{"name":"PKEY_PNPX_Removable","features":[373,374]},{"name":"PKEY_PNPX_RootProxy","features":[373,374]},{"name":"PKEY_PNPX_Scopes","features":[373,374]},{"name":"PKEY_PNPX_SecureChannel","features":[373,374]},{"name":"PKEY_PNPX_SerialNumber","features":[373,374]},{"name":"PKEY_PNPX_ServiceAddress","features":[373,374]},{"name":"PKEY_PNPX_ServiceControlUrl","features":[373,374]},{"name":"PKEY_PNPX_ServiceDescUrl","features":[373,374]},{"name":"PKEY_PNPX_ServiceEventSubUrl","features":[373,374]},{"name":"PKEY_PNPX_ServiceId","features":[373,374]},{"name":"PKEY_PNPX_ServiceTypes","features":[373,374]},{"name":"PKEY_PNPX_ShareName","features":[373,374]},{"name":"PKEY_PNPX_Types","features":[373,374]},{"name":"PKEY_PNPX_Upc","features":[373,374]},{"name":"PKEY_PNPX_XAddrs","features":[373,374]},{"name":"PKEY_Pairing_IsWifiOnlyDevice","features":[373,374]},{"name":"PKEY_Pairing_ListItemDefault","features":[373,374]},{"name":"PKEY_Pairing_ListItemDescription","features":[373,374]},{"name":"PKEY_Pairing_ListItemIcon","features":[373,374]},{"name":"PKEY_Pairing_ListItemText","features":[373,374]},{"name":"PKEY_SSDP_AltLocationInfo","features":[373,374]},{"name":"PKEY_SSDP_DevLifeTime","features":[373,374]},{"name":"PKEY_SSDP_NetworkInterface","features":[373,374]},{"name":"PKEY_WCN_AssocState","features":[373,374]},{"name":"PKEY_WCN_AuthType","features":[373,374]},{"name":"PKEY_WCN_ConfigError","features":[373,374]},{"name":"PKEY_WCN_ConfigMethods","features":[373,374]},{"name":"PKEY_WCN_ConfigState","features":[373,374]},{"name":"PKEY_WCN_ConnType","features":[373,374]},{"name":"PKEY_WCN_DevicePasswordId","features":[373,374]},{"name":"PKEY_WCN_EncryptType","features":[373,374]},{"name":"PKEY_WCN_OSVersion","features":[373,374]},{"name":"PKEY_WCN_RegistrarType","features":[373,374]},{"name":"PKEY_WCN_RequestType","features":[373,374]},{"name":"PKEY_WCN_RfBand","features":[373,374]},{"name":"PKEY_WCN_VendorExtension","features":[373,374]},{"name":"PKEY_WCN_Version","features":[373,374]},{"name":"PKEY_WNET_Comment","features":[373,374]},{"name":"PKEY_WNET_DisplayType","features":[373,374]},{"name":"PKEY_WNET_LocalName","features":[373,374]},{"name":"PKEY_WNET_Provider","features":[373,374]},{"name":"PKEY_WNET_RemoteName","features":[373,374]},{"name":"PKEY_WNET_Scope","features":[373,374]},{"name":"PKEY_WNET_Type","features":[373,374]},{"name":"PKEY_WNET_Usage","features":[373,374]},{"name":"PNPXAssociation","features":[373]},{"name":"PNPXPairingHandler","features":[373]},{"name":"PNPX_DEVICECATEGORY_CAMERA","features":[373]},{"name":"PNPX_DEVICECATEGORY_COMPUTER","features":[373]},{"name":"PNPX_DEVICECATEGORY_DISPLAYS","features":[373]},{"name":"PNPX_DEVICECATEGORY_FAX","features":[373]},{"name":"PNPX_DEVICECATEGORY_GAMING_DEVICE","features":[373]},{"name":"PNPX_DEVICECATEGORY_HOME_AUTOMATION_SYSTEM","features":[373]},{"name":"PNPX_DEVICECATEGORY_HOME_SECURITY_SYSTEM","features":[373]},{"name":"PNPX_DEVICECATEGORY_INPUTDEVICE","features":[373]},{"name":"PNPX_DEVICECATEGORY_MFP","features":[373]},{"name":"PNPX_DEVICECATEGORY_MULTIMEDIA_DEVICE","features":[373]},{"name":"PNPX_DEVICECATEGORY_NETWORK_INFRASTRUCTURE","features":[373]},{"name":"PNPX_DEVICECATEGORY_OTHER","features":[373]},{"name":"PNPX_DEVICECATEGORY_PRINTER","features":[373]},{"name":"PNPX_DEVICECATEGORY_SCANNER","features":[373]},{"name":"PNPX_DEVICECATEGORY_STORAGE","features":[373]},{"name":"PNPX_DEVICECATEGORY_TELEPHONE","features":[373]},{"name":"PNPX_INSTALLSTATE_FAILED","features":[373]},{"name":"PNPX_INSTALLSTATE_INSTALLED","features":[373]},{"name":"PNPX_INSTALLSTATE_INSTALLING","features":[373]},{"name":"PNPX_INSTALLSTATE_NOTINSTALLED","features":[373]},{"name":"PNP_CONSTRAINTVALUE_NOTIFICATIONSONLY","features":[373]},{"name":"PNP_CONSTRAINTVALUE_NOTPRESENT","features":[373]},{"name":"PROVIDERDDO_QUERYCONSTRAINT_DEVICEFUNCTIONDISPLAYOBJECTS","features":[373]},{"name":"PROVIDERDDO_QUERYCONSTRAINT_DEVICEINTERFACES","features":[373]},{"name":"PROVIDERDDO_QUERYCONSTRAINT_ONLYCONNECTEDDEVICES","features":[373]},{"name":"PROVIDERPNP_QUERYCONSTRAINT_INTERFACECLASS","features":[373]},{"name":"PROVIDERPNP_QUERYCONSTRAINT_NOTIFICATIONSONLY","features":[373]},{"name":"PROVIDERPNP_QUERYCONSTRAINT_NOTPRESENT","features":[373]},{"name":"PROVIDERSSDP_QUERYCONSTRAINT_CUSTOMXMLPROPERTY","features":[373]},{"name":"PROVIDERSSDP_QUERYCONSTRAINT_TYPE","features":[373]},{"name":"PROVIDERWNET_QUERYCONSTRAINT_PROPERTIES","features":[373]},{"name":"PROVIDERWNET_QUERYCONSTRAINT_RESOURCETYPE","features":[373]},{"name":"PROVIDERWNET_QUERYCONSTRAINT_TYPE","features":[373]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_DIRECTEDADDRESS","features":[373]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SCOPE","features":[373]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SECURITY_REQUIREMENTS","features":[373]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SSL_CERTHASH_FOR_SERVER_AUTH","features":[373]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SSL_CERT_FOR_CLIENT_AUTH","features":[373]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_TYPE","features":[373]},{"name":"PropertyConstraint","features":[373]},{"name":"PropertyStore","features":[373]},{"name":"PropertyStoreCollection","features":[373]},{"name":"QCT_LAYERED","features":[373]},{"name":"QCT_PROVIDER","features":[373]},{"name":"QC_CONTAINS","features":[373]},{"name":"QC_DOESNOTEXIST","features":[373]},{"name":"QC_EQUALS","features":[373]},{"name":"QC_EXISTS","features":[373]},{"name":"QC_GREATERTHAN","features":[373]},{"name":"QC_GREATERTHANOREQUAL","features":[373]},{"name":"QC_LESSTHAN","features":[373]},{"name":"QC_LESSTHANOREQUAL","features":[373]},{"name":"QC_NOTEQUAL","features":[373]},{"name":"QC_STARTSWITH","features":[373]},{"name":"QUA_ADD","features":[373]},{"name":"QUA_CHANGE","features":[373]},{"name":"QUA_REMOVE","features":[373]},{"name":"QueryCategoryType","features":[373]},{"name":"QueryUpdateAction","features":[373]},{"name":"SID_DeviceDisplayStatusManager","features":[373]},{"name":"SID_EnumDeviceFunction","features":[373]},{"name":"SID_EnumInterface","features":[373]},{"name":"SID_FDPairingHandler","features":[373]},{"name":"SID_FunctionDiscoveryProviderRefresh","features":[373]},{"name":"SID_PNPXAssociation","features":[373]},{"name":"SID_PNPXPropertyStore","features":[373]},{"name":"SID_PNPXServiceCollection","features":[373]},{"name":"SID_PnpProvider","features":[373]},{"name":"SID_UPnPActivator","features":[373]},{"name":"SID_UninstallDeviceFunction","features":[373]},{"name":"SID_UnpairProvider","features":[373]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_ALL","features":[373]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_DEVICE_PREFIX","features":[373]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_ROOT","features":[373]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_SVC_PREFIX","features":[373]},{"name":"SVF_SYSTEM","features":[373]},{"name":"SVF_USER","features":[373]},{"name":"SystemVisibilityFlags","features":[373]},{"name":"WNET_CONSTRAINTVALUE_PROPERTIES_ALL","features":[373]},{"name":"WNET_CONSTRAINTVALUE_PROPERTIES_LIMITED","features":[373]},{"name":"WNET_CONSTRAINTVALUE_RESOURCETYPE_DISK","features":[373]},{"name":"WNET_CONSTRAINTVALUE_RESOURCETYPE_DISKORPRINTER","features":[373]},{"name":"WNET_CONSTRAINTVALUE_RESOURCETYPE_PRINTER","features":[373]},{"name":"WNET_CONSTRAINTVALUE_TYPE_ALL","features":[373]},{"name":"WNET_CONSTRAINTVALUE_TYPE_DOMAIN","features":[373]},{"name":"WNET_CONSTRAINTVALUE_TYPE_SERVER","features":[373]},{"name":"WSD_CONSTRAINTVALUE_NO_TRUST_VERIFICATION","features":[373]},{"name":"WSD_CONSTRAINTVALUE_REQUIRE_SECURECHANNEL","features":[373]},{"name":"WSD_CONSTRAINTVALUE_REQUIRE_SECURECHANNEL_AND_COMPACTSIGNATURE","features":[373]}],"378":[{"name":"BREADCRUMBING_UNSUPPORTED","features":[375]},{"name":"BREADCRUMBING_VERSION_1","features":[375]},{"name":"CivicAddressReport","features":[375]},{"name":"CivicAddressReportFactory","features":[375]},{"name":"DefaultLocation","features":[375]},{"name":"DispCivicAddressReport","features":[375]},{"name":"DispLatLongReport","features":[375]},{"name":"GNSS_AGNSSFORMAT_LTO","features":[375]},{"name":"GNSS_AGNSSFORMAT_XTRA1","features":[375]},{"name":"GNSS_AGNSSFORMAT_XTRA2","features":[375]},{"name":"GNSS_AGNSSFORMAT_XTRA3","features":[375]},{"name":"GNSS_AGNSSFORMAT_XTRA3_1","features":[375]},{"name":"GNSS_AGNSSFORMAT_XTRA3_2","features":[375]},{"name":"GNSS_AGNSSFORMAT_XTRA_INT","features":[375]},{"name":"GNSS_AGNSS_BlobInjection","features":[375]},{"name":"GNSS_AGNSS_INJECT","features":[375,303]},{"name":"GNSS_AGNSS_INJECTBLOB","features":[375]},{"name":"GNSS_AGNSS_INJECTPOSITION","features":[375]},{"name":"GNSS_AGNSS_INJECTTIME","features":[375,303]},{"name":"GNSS_AGNSS_PositionInjection","features":[375]},{"name":"GNSS_AGNSS_REQUEST_PARAM","features":[375]},{"name":"GNSS_AGNSS_REQUEST_TYPE","features":[375]},{"name":"GNSS_AGNSS_TimeInjection","features":[375]},{"name":"GNSS_BREADCRUMBING_ALERT_DATA","features":[375]},{"name":"GNSS_BREADCRUMBING_PARAM","features":[375]},{"name":"GNSS_BREADCRUMB_LIST","features":[375,303]},{"name":"GNSS_BREADCRUMB_V1","features":[375,303]},{"name":"GNSS_CHIPSETINFO","features":[375]},{"name":"GNSS_CONTINUOUSTRACKING_PARAM","features":[375]},{"name":"GNSS_CP_NI_INFO","features":[375]},{"name":"GNSS_CWTESTDATA","features":[375,303]},{"name":"GNSS_ClearAgnssData","features":[375]},{"name":"GNSS_CustomCommand","features":[375]},{"name":"GNSS_DEVICE_CAPABILITY","features":[375,303]},{"name":"GNSS_DISTANCETRACKING_PARAM","features":[375]},{"name":"GNSS_DRIVERCOMMAND_PARAM","features":[375]},{"name":"GNSS_DRIVERCOMMAND_TYPE","features":[375]},{"name":"GNSS_DRIVER_REQUEST","features":[375]},{"name":"GNSS_DRIVER_REQUEST_DATA","features":[375]},{"name":"GNSS_DRIVER_VERSION_1","features":[375]},{"name":"GNSS_DRIVER_VERSION_2","features":[375]},{"name":"GNSS_DRIVER_VERSION_3","features":[375]},{"name":"GNSS_DRIVER_VERSION_4","features":[375]},{"name":"GNSS_DRIVER_VERSION_5","features":[375]},{"name":"GNSS_DRIVER_VERSION_6","features":[375]},{"name":"GNSS_ERRORINFO","features":[375,303]},{"name":"GNSS_EVENT","features":[375,303]},{"name":"GNSS_EVENT_2","features":[375,303]},{"name":"GNSS_EVENT_TYPE","features":[375]},{"name":"GNSS_Event_BreadcrumbAlertEvent","features":[375]},{"name":"GNSS_Event_Custom","features":[375]},{"name":"GNSS_Event_DriverRequest","features":[375]},{"name":"GNSS_Event_Error","features":[375]},{"name":"GNSS_Event_FixAvailable","features":[375]},{"name":"GNSS_Event_FixAvailable_2","features":[375]},{"name":"GNSS_Event_GeofenceAlertData","features":[375]},{"name":"GNSS_Event_GeofencesTrackingStatus","features":[375]},{"name":"GNSS_Event_NiRequest","features":[375]},{"name":"GNSS_Event_NmeaData","features":[375]},{"name":"GNSS_Event_RequireAgnss","features":[375]},{"name":"GNSS_FIXDATA","features":[375,303]},{"name":"GNSS_FIXDATA_2","features":[375,303]},{"name":"GNSS_FIXDATA_ACCURACY","features":[375]},{"name":"GNSS_FIXDATA_ACCURACY_2","features":[375]},{"name":"GNSS_FIXDATA_BASIC","features":[375]},{"name":"GNSS_FIXDATA_BASIC_2","features":[375]},{"name":"GNSS_FIXDATA_SATELLITE","features":[375,303]},{"name":"GNSS_FIXDETAIL_ACCURACY","features":[375]},{"name":"GNSS_FIXDETAIL_BASIC","features":[375]},{"name":"GNSS_FIXDETAIL_SATELLITE","features":[375]},{"name":"GNSS_FIXSESSIONTYPE","features":[375]},{"name":"GNSS_FIXSESSION_PARAM","features":[375]},{"name":"GNSS_FixSession_ContinuousTracking","features":[375]},{"name":"GNSS_FixSession_DistanceTracking","features":[375]},{"name":"GNSS_FixSession_LKG","features":[375]},{"name":"GNSS_FixSession_SingleShot","features":[375]},{"name":"GNSS_ForceOperationMode","features":[375]},{"name":"GNSS_ForceSatelliteSystem","features":[375]},{"name":"GNSS_GEOFENCESUPPORT_CIRCLE","features":[375]},{"name":"GNSS_GEOFENCESUPPORT_SUPPORTED","features":[375]},{"name":"GNSS_GEOFENCES_TRACKINGSTATUS_DATA","features":[375,303]},{"name":"GNSS_GEOFENCE_ALERT_DATA","features":[375]},{"name":"GNSS_GEOFENCE_CREATE_PARAM","features":[375]},{"name":"GNSS_GEOFENCE_CREATE_RESPONSE","features":[375,303]},{"name":"GNSS_GEOFENCE_DELETE_PARAM","features":[375]},{"name":"GNSS_GEOFENCE_STATE","features":[375]},{"name":"GNSS_GEOREGION","features":[375]},{"name":"GNSS_GEOREGIONTYPE","features":[375]},{"name":"GNSS_GEOREGION_CIRCLE","features":[375]},{"name":"GNSS_GeoRegion_Circle","features":[375]},{"name":"GNSS_GeofenceState_Entered","features":[375]},{"name":"GNSS_GeofenceState_Exited","features":[375]},{"name":"GNSS_GeofenceState_Unknown","features":[375]},{"name":"GNSS_LKGFIX_PARAM","features":[375]},{"name":"GNSS_MAXSATELLITE","features":[375]},{"name":"GNSS_NI_CP","features":[375]},{"name":"GNSS_NI_NOTIFICATION_TYPE","features":[375]},{"name":"GNSS_NI_NoNotifyNoVerify","features":[375]},{"name":"GNSS_NI_NotifyOnly","features":[375]},{"name":"GNSS_NI_NotifyVerifyDefaultAllow","features":[375]},{"name":"GNSS_NI_NotifyVerifyDefaultNotAllow","features":[375]},{"name":"GNSS_NI_PLANE_TYPE","features":[375]},{"name":"GNSS_NI_PrivacyOverride","features":[375]},{"name":"GNSS_NI_REQUEST_PARAM","features":[375,303]},{"name":"GNSS_NI_REQUEST_TYPE","features":[375]},{"name":"GNSS_NI_RESPONSE","features":[375]},{"name":"GNSS_NI_Request_AreaTrigger","features":[375]},{"name":"GNSS_NI_Request_SingleShot","features":[375]},{"name":"GNSS_NI_SUPL","features":[375]},{"name":"GNSS_NI_USER_RESPONSE","features":[375]},{"name":"GNSS_NI_V2UPL","features":[375]},{"name":"GNSS_NMEALOGGING_ALL","features":[375]},{"name":"GNSS_NMEALOGGING_NONE","features":[375]},{"name":"GNSS_NMEA_DATA","features":[375]},{"name":"GNSS_Ni_UserResponseAccept","features":[375]},{"name":"GNSS_Ni_UserResponseDeny","features":[375]},{"name":"GNSS_Ni_UserResponseTimeout","features":[375]},{"name":"GNSS_OPERMODE_AFLT","features":[375]},{"name":"GNSS_OPERMODE_ANY","features":[375]},{"name":"GNSS_OPERMODE_CELLID","features":[375]},{"name":"GNSS_OPERMODE_MSA","features":[375]},{"name":"GNSS_OPERMODE_MSB","features":[375]},{"name":"GNSS_OPERMODE_MSS","features":[375]},{"name":"GNSS_OPERMODE_OTDOA","features":[375]},{"name":"GNSS_PLATFORM_CAPABILITY","features":[375,303]},{"name":"GNSS_ResetEngine","features":[375]},{"name":"GNSS_ResetGeofencesTracking","features":[375]},{"name":"GNSS_SATELLITEINFO","features":[375,303]},{"name":"GNSS_SATELLITE_ANY","features":[375]},{"name":"GNSS_SATELLITE_BEIDOU","features":[375]},{"name":"GNSS_SATELLITE_GALILEO","features":[375]},{"name":"GNSS_SATELLITE_GLONASS","features":[375]},{"name":"GNSS_SATELLITE_GPS","features":[375]},{"name":"GNSS_SELFTESTCONFIG","features":[375]},{"name":"GNSS_SELFTESTRESULT","features":[375,303]},{"name":"GNSS_SINGLESHOT_PARAM","features":[375]},{"name":"GNSS_STOPFIXSESSION_PARAM","features":[375]},{"name":"GNSS_SUPL_CERT_ACTION","features":[375]},{"name":"GNSS_SUPL_CERT_CONFIG","features":[375]},{"name":"GNSS_SUPL_HSLP_CONFIG","features":[375]},{"name":"GNSS_SUPL_NI_INFO","features":[375]},{"name":"GNSS_SUPL_VERSION","features":[375]},{"name":"GNSS_SUPL_VERSION_2","features":[375]},{"name":"GNSS_SetLocationNIRequestAllowed","features":[375]},{"name":"GNSS_SetLocationServiceEnabled","features":[375]},{"name":"GNSS_SetNMEALogging","features":[375]},{"name":"GNSS_SetNiTimeoutInterval","features":[375]},{"name":"GNSS_SetSuplVersion","features":[375]},{"name":"GNSS_SetSuplVersion2","features":[375]},{"name":"GNSS_SetUplServerAccessInterval","features":[375]},{"name":"GNSS_Supl_Cert_Delete","features":[375]},{"name":"GNSS_Supl_Cert_Inject","features":[375]},{"name":"GNSS_Supl_Cert_Purge","features":[375]},{"name":"GNSS_V2UPL_CONFIG","features":[375]},{"name":"GNSS_V2UPL_NI_INFO","features":[375]},{"name":"GUID_DEVINTERFACE_GNSS","features":[375]},{"name":"ICivicAddressReport","features":[375]},{"name":"ICivicAddressReportFactory","features":[375,354]},{"name":"IDefaultLocation","features":[375]},{"name":"IDispCivicAddressReport","features":[375,354]},{"name":"IDispLatLongReport","features":[375,354]},{"name":"ILatLongReport","features":[375]},{"name":"ILatLongReportFactory","features":[375,354]},{"name":"ILocation","features":[375]},{"name":"ILocationEvents","features":[375]},{"name":"ILocationPower","features":[375]},{"name":"ILocationReport","features":[375]},{"name":"ILocationReportFactory","features":[375,354]},{"name":"IOCTL_GNSS_CONFIG_SUPL_CERT","features":[375]},{"name":"IOCTL_GNSS_CREATE_GEOFENCE","features":[375]},{"name":"IOCTL_GNSS_DELETE_GEOFENCE","features":[375]},{"name":"IOCTL_GNSS_EXECUTE_CWTEST","features":[375]},{"name":"IOCTL_GNSS_EXECUTE_SELFTEST","features":[375]},{"name":"IOCTL_GNSS_GET_CHIPSETINFO","features":[375]},{"name":"IOCTL_GNSS_GET_DEVICE_CAPABILITY","features":[375]},{"name":"IOCTL_GNSS_GET_FIXDATA","features":[375]},{"name":"IOCTL_GNSS_INJECT_AGNSS","features":[375]},{"name":"IOCTL_GNSS_LISTEN_AGNSS","features":[375]},{"name":"IOCTL_GNSS_LISTEN_BREADCRUMBING_ALERT","features":[375]},{"name":"IOCTL_GNSS_LISTEN_DRIVER_REQUEST","features":[375]},{"name":"IOCTL_GNSS_LISTEN_ERROR","features":[375]},{"name":"IOCTL_GNSS_LISTEN_GEOFENCES_TRACKINGSTATUS","features":[375]},{"name":"IOCTL_GNSS_LISTEN_GEOFENCE_ALERT","features":[375]},{"name":"IOCTL_GNSS_LISTEN_NI","features":[375]},{"name":"IOCTL_GNSS_LISTEN_NMEA","features":[375]},{"name":"IOCTL_GNSS_MODIFY_FIXSESSION","features":[375]},{"name":"IOCTL_GNSS_POP_BREADCRUMBS","features":[375]},{"name":"IOCTL_GNSS_RESPOND_NI","features":[375]},{"name":"IOCTL_GNSS_SEND_DRIVERCOMMAND","features":[375]},{"name":"IOCTL_GNSS_SEND_PLATFORM_CAPABILITY","features":[375]},{"name":"IOCTL_GNSS_SET_SUPL_HSLP","features":[375]},{"name":"IOCTL_GNSS_SET_V2UPL_CONFIG","features":[375]},{"name":"IOCTL_GNSS_START_BREADCRUMBING","features":[375]},{"name":"IOCTL_GNSS_START_FIXSESSION","features":[375]},{"name":"IOCTL_GNSS_STOP_BREADCRUMBING","features":[375]},{"name":"IOCTL_GNSS_STOP_FIXSESSION","features":[375]},{"name":"LOCATION_API_VERSION","features":[375]},{"name":"LOCATION_REPORT_STATUS","features":[375]},{"name":"LatLongReport","features":[375]},{"name":"LatLongReportFactory","features":[375]},{"name":"Location","features":[375]},{"name":"MAX_SERVER_URL_NAME","features":[375]},{"name":"MIN_BREADCRUMBS_SUPPORTED","features":[375]},{"name":"MIN_GEOFENCES_REQUIRED","features":[375]},{"name":"REPORT_ACCESS_DENIED","features":[375]},{"name":"REPORT_ERROR","features":[375]},{"name":"REPORT_INITIALIZING","features":[375]},{"name":"REPORT_NOT_SUPPORTED","features":[375]},{"name":"REPORT_RUNNING","features":[375]},{"name":"SUPL_CONFIG_DATA","features":[375]},{"name":"_ICivicAddressReportFactoryEvents","features":[375,354]},{"name":"_ILatLongReportFactoryEvents","features":[375,354]}],"379":[{"name":"BALLPOINT_I8042_HARDWARE","features":[376]},{"name":"BALLPOINT_SERIAL_HARDWARE","features":[376]},{"name":"BUTTON_BIT_ALLBUTTONSMASK","features":[376]},{"name":"BUTTON_BIT_BACK","features":[376]},{"name":"BUTTON_BIT_CAMERAFOCUS","features":[376]},{"name":"BUTTON_BIT_CAMERALENS","features":[376]},{"name":"BUTTON_BIT_CAMERASHUTTER","features":[376]},{"name":"BUTTON_BIT_HEADSET","features":[376]},{"name":"BUTTON_BIT_HWKBDEPLOY","features":[376]},{"name":"BUTTON_BIT_OEMCUSTOM","features":[376]},{"name":"BUTTON_BIT_OEMCUSTOM2","features":[376]},{"name":"BUTTON_BIT_OEMCUSTOM3","features":[376]},{"name":"BUTTON_BIT_POWER","features":[376]},{"name":"BUTTON_BIT_RINGERTOGGLE","features":[376]},{"name":"BUTTON_BIT_ROTATION_LOCK","features":[376]},{"name":"BUTTON_BIT_SEARCH","features":[376]},{"name":"BUTTON_BIT_VOLUMEDOWN","features":[376]},{"name":"BUTTON_BIT_VOLUMEUP","features":[376]},{"name":"BUTTON_BIT_WINDOWS","features":[376]},{"name":"CLSID_DirectInput","features":[376]},{"name":"CLSID_DirectInput8","features":[376]},{"name":"CLSID_DirectInputDevice","features":[376]},{"name":"CLSID_DirectInputDevice8","features":[376]},{"name":"CPOINT","features":[376]},{"name":"DD_KEYBOARD_DEVICE_NAME","features":[376]},{"name":"DD_KEYBOARD_DEVICE_NAME_U","features":[376]},{"name":"DD_MOUSE_DEVICE_NAME","features":[376]},{"name":"DD_MOUSE_DEVICE_NAME_U","features":[376]},{"name":"DEVPKEY_DeviceInterface_HID_BackgroundAccess","features":[376,336]},{"name":"DEVPKEY_DeviceInterface_HID_IsReadOnly","features":[376,336]},{"name":"DEVPKEY_DeviceInterface_HID_ProductId","features":[376,336]},{"name":"DEVPKEY_DeviceInterface_HID_UsageId","features":[376,336]},{"name":"DEVPKEY_DeviceInterface_HID_UsagePage","features":[376,336]},{"name":"DEVPKEY_DeviceInterface_HID_VendorId","features":[376,336]},{"name":"DEVPKEY_DeviceInterface_HID_VersionNumber","features":[376,336]},{"name":"DEVPKEY_DeviceInterface_HID_WakeScreenOnInputCapable","features":[376,336]},{"name":"DI8DEVCLASS_ALL","features":[376]},{"name":"DI8DEVCLASS_DEVICE","features":[376]},{"name":"DI8DEVCLASS_GAMECTRL","features":[376]},{"name":"DI8DEVCLASS_KEYBOARD","features":[376]},{"name":"DI8DEVCLASS_POINTER","features":[376]},{"name":"DI8DEVTYPE1STPERSON_LIMITED","features":[376]},{"name":"DI8DEVTYPE1STPERSON_SHOOTER","features":[376]},{"name":"DI8DEVTYPE1STPERSON_SIXDOF","features":[376]},{"name":"DI8DEVTYPE1STPERSON_UNKNOWN","features":[376]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION","features":[376]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION_HARDWIRED","features":[376]},{"name":"DI8DEVTYPEDEVICECTRL_UNKNOWN","features":[376]},{"name":"DI8DEVTYPEDRIVING_COMBINEDPEDALS","features":[376]},{"name":"DI8DEVTYPEDRIVING_DUALPEDALS","features":[376]},{"name":"DI8DEVTYPEDRIVING_HANDHELD","features":[376]},{"name":"DI8DEVTYPEDRIVING_LIMITED","features":[376]},{"name":"DI8DEVTYPEDRIVING_THREEPEDALS","features":[376]},{"name":"DI8DEVTYPEFLIGHT_LIMITED","features":[376]},{"name":"DI8DEVTYPEFLIGHT_RC","features":[376]},{"name":"DI8DEVTYPEFLIGHT_STICK","features":[376]},{"name":"DI8DEVTYPEFLIGHT_YOKE","features":[376]},{"name":"DI8DEVTYPEGAMEPAD_LIMITED","features":[376]},{"name":"DI8DEVTYPEGAMEPAD_STANDARD","features":[376]},{"name":"DI8DEVTYPEGAMEPAD_TILT","features":[376]},{"name":"DI8DEVTYPEJOYSTICK_LIMITED","features":[376]},{"name":"DI8DEVTYPEJOYSTICK_STANDARD","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_J3100","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_JAPAN106","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_JAPANAX","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_NEC98","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_NEC98106","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_NEC98LAPTOP","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA1050","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA9140","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_OLIVETTI","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_PCAT","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_PCENH","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_PCXT","features":[376]},{"name":"DI8DEVTYPEKEYBOARD_UNKNOWN","features":[376]},{"name":"DI8DEVTYPEMOUSE_ABSOLUTE","features":[376]},{"name":"DI8DEVTYPEMOUSE_FINGERSTICK","features":[376]},{"name":"DI8DEVTYPEMOUSE_TOUCHPAD","features":[376]},{"name":"DI8DEVTYPEMOUSE_TRACKBALL","features":[376]},{"name":"DI8DEVTYPEMOUSE_TRADITIONAL","features":[376]},{"name":"DI8DEVTYPEMOUSE_UNKNOWN","features":[376]},{"name":"DI8DEVTYPEREMOTE_UNKNOWN","features":[376]},{"name":"DI8DEVTYPESCREENPTR_LIGHTGUN","features":[376]},{"name":"DI8DEVTYPESCREENPTR_LIGHTPEN","features":[376]},{"name":"DI8DEVTYPESCREENPTR_TOUCH","features":[376]},{"name":"DI8DEVTYPESCREENPTR_UNKNOWN","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_2NDHANDCONTROLLER","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_COMBINEDPEDALS","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_DUALPEDALS","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_HANDTRACKER","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_HEADTRACKER","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_RUDDERPEDALS","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTER","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTSTICKGATE","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_SPLITTHROTTLE","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_THREEPEDALS","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_THROTTLE","features":[376]},{"name":"DI8DEVTYPESUPPLEMENTAL_UNKNOWN","features":[376]},{"name":"DI8DEVTYPE_1STPERSON","features":[376]},{"name":"DI8DEVTYPE_DEVICE","features":[376]},{"name":"DI8DEVTYPE_DEVICECTRL","features":[376]},{"name":"DI8DEVTYPE_DRIVING","features":[376]},{"name":"DI8DEVTYPE_FLIGHT","features":[376]},{"name":"DI8DEVTYPE_GAMEPAD","features":[376]},{"name":"DI8DEVTYPE_JOYSTICK","features":[376]},{"name":"DI8DEVTYPE_KEYBOARD","features":[376]},{"name":"DI8DEVTYPE_LIMITEDGAMESUBTYPE","features":[376]},{"name":"DI8DEVTYPE_MOUSE","features":[376]},{"name":"DI8DEVTYPE_REMOTE","features":[376]},{"name":"DI8DEVTYPE_SCREENPOINTER","features":[376]},{"name":"DI8DEVTYPE_SUPPLEMENTAL","features":[376]},{"name":"DIACTIONA","features":[376]},{"name":"DIACTIONFORMATA","features":[376,303]},{"name":"DIACTIONFORMATW","features":[376,303]},{"name":"DIACTIONW","features":[376]},{"name":"DIAFTS_NEWDEVICEHIGH","features":[376]},{"name":"DIAFTS_NEWDEVICELOW","features":[376]},{"name":"DIAFTS_UNUSEDDEVICEHIGH","features":[376]},{"name":"DIAFTS_UNUSEDDEVICELOW","features":[376]},{"name":"DIAH_APPREQUESTED","features":[376]},{"name":"DIAH_DEFAULT","features":[376]},{"name":"DIAH_ERROR","features":[376]},{"name":"DIAH_HWAPP","features":[376]},{"name":"DIAH_HWDEFAULT","features":[376]},{"name":"DIAH_UNMAPPED","features":[376]},{"name":"DIAH_USERCONFIG","features":[376]},{"name":"DIAPPIDFLAG_NOSIZE","features":[376]},{"name":"DIAPPIDFLAG_NOTIME","features":[376]},{"name":"DIAXIS_2DCONTROL_INOUT","features":[376]},{"name":"DIAXIS_2DCONTROL_LATERAL","features":[376]},{"name":"DIAXIS_2DCONTROL_MOVE","features":[376]},{"name":"DIAXIS_2DCONTROL_ROTATEZ","features":[376]},{"name":"DIAXIS_3DCONTROL_INOUT","features":[376]},{"name":"DIAXIS_3DCONTROL_LATERAL","features":[376]},{"name":"DIAXIS_3DCONTROL_MOVE","features":[376]},{"name":"DIAXIS_3DCONTROL_ROTATEX","features":[376]},{"name":"DIAXIS_3DCONTROL_ROTATEY","features":[376]},{"name":"DIAXIS_3DCONTROL_ROTATEZ","features":[376]},{"name":"DIAXIS_ANY_1","features":[376]},{"name":"DIAXIS_ANY_2","features":[376]},{"name":"DIAXIS_ANY_3","features":[376]},{"name":"DIAXIS_ANY_4","features":[376]},{"name":"DIAXIS_ANY_A_1","features":[376]},{"name":"DIAXIS_ANY_A_2","features":[376]},{"name":"DIAXIS_ANY_B_1","features":[376]},{"name":"DIAXIS_ANY_B_2","features":[376]},{"name":"DIAXIS_ANY_C_1","features":[376]},{"name":"DIAXIS_ANY_C_2","features":[376]},{"name":"DIAXIS_ANY_R_1","features":[376]},{"name":"DIAXIS_ANY_R_2","features":[376]},{"name":"DIAXIS_ANY_S_1","features":[376]},{"name":"DIAXIS_ANY_S_2","features":[376]},{"name":"DIAXIS_ANY_U_1","features":[376]},{"name":"DIAXIS_ANY_U_2","features":[376]},{"name":"DIAXIS_ANY_V_1","features":[376]},{"name":"DIAXIS_ANY_V_2","features":[376]},{"name":"DIAXIS_ANY_X_1","features":[376]},{"name":"DIAXIS_ANY_X_2","features":[376]},{"name":"DIAXIS_ANY_Y_1","features":[376]},{"name":"DIAXIS_ANY_Y_2","features":[376]},{"name":"DIAXIS_ANY_Z_1","features":[376]},{"name":"DIAXIS_ANY_Z_2","features":[376]},{"name":"DIAXIS_ARCADEP_LATERAL","features":[376]},{"name":"DIAXIS_ARCADEP_MOVE","features":[376]},{"name":"DIAXIS_ARCADES_LATERAL","features":[376]},{"name":"DIAXIS_ARCADES_MOVE","features":[376]},{"name":"DIAXIS_BASEBALLB_LATERAL","features":[376]},{"name":"DIAXIS_BASEBALLB_MOVE","features":[376]},{"name":"DIAXIS_BASEBALLF_LATERAL","features":[376]},{"name":"DIAXIS_BASEBALLF_MOVE","features":[376]},{"name":"DIAXIS_BASEBALLP_LATERAL","features":[376]},{"name":"DIAXIS_BASEBALLP_MOVE","features":[376]},{"name":"DIAXIS_BBALLD_LATERAL","features":[376]},{"name":"DIAXIS_BBALLD_MOVE","features":[376]},{"name":"DIAXIS_BBALLO_LATERAL","features":[376]},{"name":"DIAXIS_BBALLO_MOVE","features":[376]},{"name":"DIAXIS_BIKINGM_BRAKE","features":[376]},{"name":"DIAXIS_BIKINGM_PEDAL","features":[376]},{"name":"DIAXIS_BIKINGM_TURN","features":[376]},{"name":"DIAXIS_BROWSER_LATERAL","features":[376]},{"name":"DIAXIS_BROWSER_MOVE","features":[376]},{"name":"DIAXIS_BROWSER_VIEW","features":[376]},{"name":"DIAXIS_CADF_INOUT","features":[376]},{"name":"DIAXIS_CADF_LATERAL","features":[376]},{"name":"DIAXIS_CADF_MOVE","features":[376]},{"name":"DIAXIS_CADF_ROTATEX","features":[376]},{"name":"DIAXIS_CADF_ROTATEY","features":[376]},{"name":"DIAXIS_CADF_ROTATEZ","features":[376]},{"name":"DIAXIS_CADM_INOUT","features":[376]},{"name":"DIAXIS_CADM_LATERAL","features":[376]},{"name":"DIAXIS_CADM_MOVE","features":[376]},{"name":"DIAXIS_CADM_ROTATEX","features":[376]},{"name":"DIAXIS_CADM_ROTATEY","features":[376]},{"name":"DIAXIS_CADM_ROTATEZ","features":[376]},{"name":"DIAXIS_DRIVINGC_ACCELERATE","features":[376]},{"name":"DIAXIS_DRIVINGC_ACCEL_AND_BRAKE","features":[376]},{"name":"DIAXIS_DRIVINGC_BRAKE","features":[376]},{"name":"DIAXIS_DRIVINGC_STEER","features":[376]},{"name":"DIAXIS_DRIVINGR_ACCELERATE","features":[376]},{"name":"DIAXIS_DRIVINGR_ACCEL_AND_BRAKE","features":[376]},{"name":"DIAXIS_DRIVINGR_BRAKE","features":[376]},{"name":"DIAXIS_DRIVINGR_STEER","features":[376]},{"name":"DIAXIS_DRIVINGT_ACCELERATE","features":[376]},{"name":"DIAXIS_DRIVINGT_ACCEL_AND_BRAKE","features":[376]},{"name":"DIAXIS_DRIVINGT_BARREL","features":[376]},{"name":"DIAXIS_DRIVINGT_BRAKE","features":[376]},{"name":"DIAXIS_DRIVINGT_ROTATE","features":[376]},{"name":"DIAXIS_DRIVINGT_STEER","features":[376]},{"name":"DIAXIS_FIGHTINGH_LATERAL","features":[376]},{"name":"DIAXIS_FIGHTINGH_MOVE","features":[376]},{"name":"DIAXIS_FIGHTINGH_ROTATE","features":[376]},{"name":"DIAXIS_FISHING_LATERAL","features":[376]},{"name":"DIAXIS_FISHING_MOVE","features":[376]},{"name":"DIAXIS_FISHING_ROTATE","features":[376]},{"name":"DIAXIS_FLYINGC_BANK","features":[376]},{"name":"DIAXIS_FLYINGC_BRAKE","features":[376]},{"name":"DIAXIS_FLYINGC_FLAPS","features":[376]},{"name":"DIAXIS_FLYINGC_PITCH","features":[376]},{"name":"DIAXIS_FLYINGC_RUDDER","features":[376]},{"name":"DIAXIS_FLYINGC_THROTTLE","features":[376]},{"name":"DIAXIS_FLYINGH_BANK","features":[376]},{"name":"DIAXIS_FLYINGH_COLLECTIVE","features":[376]},{"name":"DIAXIS_FLYINGH_PITCH","features":[376]},{"name":"DIAXIS_FLYINGH_THROTTLE","features":[376]},{"name":"DIAXIS_FLYINGH_TORQUE","features":[376]},{"name":"DIAXIS_FLYINGM_BANK","features":[376]},{"name":"DIAXIS_FLYINGM_BRAKE","features":[376]},{"name":"DIAXIS_FLYINGM_FLAPS","features":[376]},{"name":"DIAXIS_FLYINGM_PITCH","features":[376]},{"name":"DIAXIS_FLYINGM_RUDDER","features":[376]},{"name":"DIAXIS_FLYINGM_THROTTLE","features":[376]},{"name":"DIAXIS_FOOTBALLD_LATERAL","features":[376]},{"name":"DIAXIS_FOOTBALLD_MOVE","features":[376]},{"name":"DIAXIS_FOOTBALLO_LATERAL","features":[376]},{"name":"DIAXIS_FOOTBALLO_MOVE","features":[376]},{"name":"DIAXIS_FOOTBALLQ_LATERAL","features":[376]},{"name":"DIAXIS_FOOTBALLQ_MOVE","features":[376]},{"name":"DIAXIS_FPS_LOOKUPDOWN","features":[376]},{"name":"DIAXIS_FPS_MOVE","features":[376]},{"name":"DIAXIS_FPS_ROTATE","features":[376]},{"name":"DIAXIS_FPS_SIDESTEP","features":[376]},{"name":"DIAXIS_GOLF_LATERAL","features":[376]},{"name":"DIAXIS_GOLF_MOVE","features":[376]},{"name":"DIAXIS_HOCKEYD_LATERAL","features":[376]},{"name":"DIAXIS_HOCKEYD_MOVE","features":[376]},{"name":"DIAXIS_HOCKEYG_LATERAL","features":[376]},{"name":"DIAXIS_HOCKEYG_MOVE","features":[376]},{"name":"DIAXIS_HOCKEYO_LATERAL","features":[376]},{"name":"DIAXIS_HOCKEYO_MOVE","features":[376]},{"name":"DIAXIS_HUNTING_LATERAL","features":[376]},{"name":"DIAXIS_HUNTING_MOVE","features":[376]},{"name":"DIAXIS_HUNTING_ROTATE","features":[376]},{"name":"DIAXIS_MECHA_ROTATE","features":[376]},{"name":"DIAXIS_MECHA_STEER","features":[376]},{"name":"DIAXIS_MECHA_THROTTLE","features":[376]},{"name":"DIAXIS_MECHA_TORSO","features":[376]},{"name":"DIAXIS_RACQUET_LATERAL","features":[376]},{"name":"DIAXIS_RACQUET_MOVE","features":[376]},{"name":"DIAXIS_REMOTE_SLIDER","features":[376]},{"name":"DIAXIS_REMOTE_SLIDER2","features":[376]},{"name":"DIAXIS_SKIING_SPEED","features":[376]},{"name":"DIAXIS_SKIING_TURN","features":[376]},{"name":"DIAXIS_SOCCERD_LATERAL","features":[376]},{"name":"DIAXIS_SOCCERD_MOVE","features":[376]},{"name":"DIAXIS_SOCCERO_BEND","features":[376]},{"name":"DIAXIS_SOCCERO_LATERAL","features":[376]},{"name":"DIAXIS_SOCCERO_MOVE","features":[376]},{"name":"DIAXIS_SPACESIM_CLIMB","features":[376]},{"name":"DIAXIS_SPACESIM_LATERAL","features":[376]},{"name":"DIAXIS_SPACESIM_MOVE","features":[376]},{"name":"DIAXIS_SPACESIM_ROTATE","features":[376]},{"name":"DIAXIS_SPACESIM_THROTTLE","features":[376]},{"name":"DIAXIS_STRATEGYR_LATERAL","features":[376]},{"name":"DIAXIS_STRATEGYR_MOVE","features":[376]},{"name":"DIAXIS_STRATEGYR_ROTATE","features":[376]},{"name":"DIAXIS_STRATEGYT_LATERAL","features":[376]},{"name":"DIAXIS_STRATEGYT_MOVE","features":[376]},{"name":"DIAXIS_TPS_MOVE","features":[376]},{"name":"DIAXIS_TPS_STEP","features":[376]},{"name":"DIAXIS_TPS_TURN","features":[376]},{"name":"DIA_APPFIXED","features":[376]},{"name":"DIA_APPMAPPED","features":[376]},{"name":"DIA_APPNOMAP","features":[376]},{"name":"DIA_FORCEFEEDBACK","features":[376]},{"name":"DIA_NORANGE","features":[376]},{"name":"DIBUTTON_2DCONTROL_DEVICE","features":[376]},{"name":"DIBUTTON_2DCONTROL_DISPLAY","features":[376]},{"name":"DIBUTTON_2DCONTROL_MENU","features":[376]},{"name":"DIBUTTON_2DCONTROL_PAUSE","features":[376]},{"name":"DIBUTTON_2DCONTROL_SELECT","features":[376]},{"name":"DIBUTTON_2DCONTROL_SPECIAL","features":[376]},{"name":"DIBUTTON_2DCONTROL_SPECIAL1","features":[376]},{"name":"DIBUTTON_2DCONTROL_SPECIAL2","features":[376]},{"name":"DIBUTTON_3DCONTROL_DEVICE","features":[376]},{"name":"DIBUTTON_3DCONTROL_DISPLAY","features":[376]},{"name":"DIBUTTON_3DCONTROL_MENU","features":[376]},{"name":"DIBUTTON_3DCONTROL_PAUSE","features":[376]},{"name":"DIBUTTON_3DCONTROL_SELECT","features":[376]},{"name":"DIBUTTON_3DCONTROL_SPECIAL","features":[376]},{"name":"DIBUTTON_3DCONTROL_SPECIAL1","features":[376]},{"name":"DIBUTTON_3DCONTROL_SPECIAL2","features":[376]},{"name":"DIBUTTON_ARCADEP_BACK_LINK","features":[376]},{"name":"DIBUTTON_ARCADEP_CROUCH","features":[376]},{"name":"DIBUTTON_ARCADEP_DEVICE","features":[376]},{"name":"DIBUTTON_ARCADEP_FIRE","features":[376]},{"name":"DIBUTTON_ARCADEP_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_ARCADEP_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_ARCADEP_JUMP","features":[376]},{"name":"DIBUTTON_ARCADEP_LEFT_LINK","features":[376]},{"name":"DIBUTTON_ARCADEP_MENU","features":[376]},{"name":"DIBUTTON_ARCADEP_PAUSE","features":[376]},{"name":"DIBUTTON_ARCADEP_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_ARCADEP_SELECT","features":[376]},{"name":"DIBUTTON_ARCADEP_SPECIAL","features":[376]},{"name":"DIBUTTON_ARCADEP_VIEW_DOWN_LINK","features":[376]},{"name":"DIBUTTON_ARCADEP_VIEW_LEFT_LINK","features":[376]},{"name":"DIBUTTON_ARCADEP_VIEW_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_ARCADEP_VIEW_UP_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_ATTACK","features":[376]},{"name":"DIBUTTON_ARCADES_BACK_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_CARRY","features":[376]},{"name":"DIBUTTON_ARCADES_DEVICE","features":[376]},{"name":"DIBUTTON_ARCADES_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_LEFT_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_MENU","features":[376]},{"name":"DIBUTTON_ARCADES_PAUSE","features":[376]},{"name":"DIBUTTON_ARCADES_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_SELECT","features":[376]},{"name":"DIBUTTON_ARCADES_SPECIAL","features":[376]},{"name":"DIBUTTON_ARCADES_THROW","features":[376]},{"name":"DIBUTTON_ARCADES_VIEW_DOWN_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_VIEW_LEFT_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_VIEW_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_ARCADES_VIEW_UP_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLB_BACK_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLB_BOX","features":[376]},{"name":"DIBUTTON_BASEBALLB_BUNT","features":[376]},{"name":"DIBUTTON_BASEBALLB_BURST","features":[376]},{"name":"DIBUTTON_BASEBALLB_CONTACT","features":[376]},{"name":"DIBUTTON_BASEBALLB_DEVICE","features":[376]},{"name":"DIBUTTON_BASEBALLB_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLB_LEFT_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLB_MENU","features":[376]},{"name":"DIBUTTON_BASEBALLB_NORMAL","features":[376]},{"name":"DIBUTTON_BASEBALLB_NOSTEAL","features":[376]},{"name":"DIBUTTON_BASEBALLB_PAUSE","features":[376]},{"name":"DIBUTTON_BASEBALLB_POWER","features":[376]},{"name":"DIBUTTON_BASEBALLB_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLB_SELECT","features":[376]},{"name":"DIBUTTON_BASEBALLB_SLIDE","features":[376]},{"name":"DIBUTTON_BASEBALLB_STEAL","features":[376]},{"name":"DIBUTTON_BASEBALLF_AIM_LEFT_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLF_AIM_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLF_BACK_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLF_BURST","features":[376]},{"name":"DIBUTTON_BASEBALLF_DEVICE","features":[376]},{"name":"DIBUTTON_BASEBALLF_DIVE","features":[376]},{"name":"DIBUTTON_BASEBALLF_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLF_JUMP","features":[376]},{"name":"DIBUTTON_BASEBALLF_MENU","features":[376]},{"name":"DIBUTTON_BASEBALLF_NEAREST","features":[376]},{"name":"DIBUTTON_BASEBALLF_PAUSE","features":[376]},{"name":"DIBUTTON_BASEBALLF_SHIFTIN","features":[376]},{"name":"DIBUTTON_BASEBALLF_SHIFTOUT","features":[376]},{"name":"DIBUTTON_BASEBALLF_THROW1","features":[376]},{"name":"DIBUTTON_BASEBALLF_THROW2","features":[376]},{"name":"DIBUTTON_BASEBALLP_BACK_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLP_BASE","features":[376]},{"name":"DIBUTTON_BASEBALLP_DEVICE","features":[376]},{"name":"DIBUTTON_BASEBALLP_FAKE","features":[376]},{"name":"DIBUTTON_BASEBALLP_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLP_LEFT_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLP_LOOK","features":[376]},{"name":"DIBUTTON_BASEBALLP_MENU","features":[376]},{"name":"DIBUTTON_BASEBALLP_PAUSE","features":[376]},{"name":"DIBUTTON_BASEBALLP_PITCH","features":[376]},{"name":"DIBUTTON_BASEBALLP_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_BASEBALLP_SELECT","features":[376]},{"name":"DIBUTTON_BASEBALLP_THROW","features":[376]},{"name":"DIBUTTON_BASEBALLP_WALK","features":[376]},{"name":"DIBUTTON_BBALLD_BACK_LINK","features":[376]},{"name":"DIBUTTON_BBALLD_BURST","features":[376]},{"name":"DIBUTTON_BBALLD_DEVICE","features":[376]},{"name":"DIBUTTON_BBALLD_FAKE","features":[376]},{"name":"DIBUTTON_BBALLD_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_BBALLD_JUMP","features":[376]},{"name":"DIBUTTON_BBALLD_LEFT_LINK","features":[376]},{"name":"DIBUTTON_BBALLD_MENU","features":[376]},{"name":"DIBUTTON_BBALLD_PAUSE","features":[376]},{"name":"DIBUTTON_BBALLD_PLAY","features":[376]},{"name":"DIBUTTON_BBALLD_PLAYER","features":[376]},{"name":"DIBUTTON_BBALLD_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_BBALLD_SPECIAL","features":[376]},{"name":"DIBUTTON_BBALLD_STEAL","features":[376]},{"name":"DIBUTTON_BBALLD_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_BBALLD_TIMEOUT","features":[376]},{"name":"DIBUTTON_BBALLO_BACK_LINK","features":[376]},{"name":"DIBUTTON_BBALLO_BURST","features":[376]},{"name":"DIBUTTON_BBALLO_CALL","features":[376]},{"name":"DIBUTTON_BBALLO_DEVICE","features":[376]},{"name":"DIBUTTON_BBALLO_DUNK","features":[376]},{"name":"DIBUTTON_BBALLO_FAKE","features":[376]},{"name":"DIBUTTON_BBALLO_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_BBALLO_JAB","features":[376]},{"name":"DIBUTTON_BBALLO_LEFT_LINK","features":[376]},{"name":"DIBUTTON_BBALLO_MENU","features":[376]},{"name":"DIBUTTON_BBALLO_PASS","features":[376]},{"name":"DIBUTTON_BBALLO_PAUSE","features":[376]},{"name":"DIBUTTON_BBALLO_PLAY","features":[376]},{"name":"DIBUTTON_BBALLO_PLAYER","features":[376]},{"name":"DIBUTTON_BBALLO_POST","features":[376]},{"name":"DIBUTTON_BBALLO_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_BBALLO_SCREEN","features":[376]},{"name":"DIBUTTON_BBALLO_SHOOT","features":[376]},{"name":"DIBUTTON_BBALLO_SPECIAL","features":[376]},{"name":"DIBUTTON_BBALLO_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_BBALLO_TIMEOUT","features":[376]},{"name":"DIBUTTON_BIKINGM_BRAKE_BUTTON_LINK","features":[376]},{"name":"DIBUTTON_BIKINGM_CAMERA","features":[376]},{"name":"DIBUTTON_BIKINGM_DEVICE","features":[376]},{"name":"DIBUTTON_BIKINGM_FASTER_LINK","features":[376]},{"name":"DIBUTTON_BIKINGM_JUMP","features":[376]},{"name":"DIBUTTON_BIKINGM_LEFT_LINK","features":[376]},{"name":"DIBUTTON_BIKINGM_MENU","features":[376]},{"name":"DIBUTTON_BIKINGM_PAUSE","features":[376]},{"name":"DIBUTTON_BIKINGM_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_BIKINGM_SELECT","features":[376]},{"name":"DIBUTTON_BIKINGM_SLOWER_LINK","features":[376]},{"name":"DIBUTTON_BIKINGM_SPECIAL1","features":[376]},{"name":"DIBUTTON_BIKINGM_SPECIAL2","features":[376]},{"name":"DIBUTTON_BIKINGM_ZOOM","features":[376]},{"name":"DIBUTTON_BROWSER_DEVICE","features":[376]},{"name":"DIBUTTON_BROWSER_FAVORITES","features":[376]},{"name":"DIBUTTON_BROWSER_HISTORY","features":[376]},{"name":"DIBUTTON_BROWSER_HOME","features":[376]},{"name":"DIBUTTON_BROWSER_MENU","features":[376]},{"name":"DIBUTTON_BROWSER_NEXT","features":[376]},{"name":"DIBUTTON_BROWSER_PAUSE","features":[376]},{"name":"DIBUTTON_BROWSER_PREVIOUS","features":[376]},{"name":"DIBUTTON_BROWSER_PRINT","features":[376]},{"name":"DIBUTTON_BROWSER_REFRESH","features":[376]},{"name":"DIBUTTON_BROWSER_SEARCH","features":[376]},{"name":"DIBUTTON_BROWSER_SELECT","features":[376]},{"name":"DIBUTTON_BROWSER_STOP","features":[376]},{"name":"DIBUTTON_CADF_DEVICE","features":[376]},{"name":"DIBUTTON_CADF_DISPLAY","features":[376]},{"name":"DIBUTTON_CADF_MENU","features":[376]},{"name":"DIBUTTON_CADF_PAUSE","features":[376]},{"name":"DIBUTTON_CADF_SELECT","features":[376]},{"name":"DIBUTTON_CADF_SPECIAL","features":[376]},{"name":"DIBUTTON_CADF_SPECIAL1","features":[376]},{"name":"DIBUTTON_CADF_SPECIAL2","features":[376]},{"name":"DIBUTTON_CADM_DEVICE","features":[376]},{"name":"DIBUTTON_CADM_DISPLAY","features":[376]},{"name":"DIBUTTON_CADM_MENU","features":[376]},{"name":"DIBUTTON_CADM_PAUSE","features":[376]},{"name":"DIBUTTON_CADM_SELECT","features":[376]},{"name":"DIBUTTON_CADM_SPECIAL","features":[376]},{"name":"DIBUTTON_CADM_SPECIAL1","features":[376]},{"name":"DIBUTTON_CADM_SPECIAL2","features":[376]},{"name":"DIBUTTON_DRIVINGC_ACCELERATE_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGC_AIDS","features":[376]},{"name":"DIBUTTON_DRIVINGC_BRAKE","features":[376]},{"name":"DIBUTTON_DRIVINGC_DASHBOARD","features":[376]},{"name":"DIBUTTON_DRIVINGC_DEVICE","features":[376]},{"name":"DIBUTTON_DRIVINGC_FIRE","features":[376]},{"name":"DIBUTTON_DRIVINGC_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_DRIVINGC_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGC_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGC_MENU","features":[376]},{"name":"DIBUTTON_DRIVINGC_PAUSE","features":[376]},{"name":"DIBUTTON_DRIVINGC_SHIFTDOWN","features":[376]},{"name":"DIBUTTON_DRIVINGC_SHIFTUP","features":[376]},{"name":"DIBUTTON_DRIVINGC_STEER_LEFT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGC_STEER_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGC_TARGET","features":[376]},{"name":"DIBUTTON_DRIVINGC_WEAPONS","features":[376]},{"name":"DIBUTTON_DRIVINGR_ACCELERATE_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGR_AIDS","features":[376]},{"name":"DIBUTTON_DRIVINGR_BOOST","features":[376]},{"name":"DIBUTTON_DRIVINGR_BRAKE","features":[376]},{"name":"DIBUTTON_DRIVINGR_DASHBOARD","features":[376]},{"name":"DIBUTTON_DRIVINGR_DEVICE","features":[376]},{"name":"DIBUTTON_DRIVINGR_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGR_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGR_MAP","features":[376]},{"name":"DIBUTTON_DRIVINGR_MENU","features":[376]},{"name":"DIBUTTON_DRIVINGR_PAUSE","features":[376]},{"name":"DIBUTTON_DRIVINGR_PIT","features":[376]},{"name":"DIBUTTON_DRIVINGR_SHIFTDOWN","features":[376]},{"name":"DIBUTTON_DRIVINGR_SHIFTUP","features":[376]},{"name":"DIBUTTON_DRIVINGR_STEER_LEFT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGR_STEER_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGR_VIEW","features":[376]},{"name":"DIBUTTON_DRIVINGT_ACCELERATE_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_BARREL_DOWN_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_BARREL_UP_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_BRAKE","features":[376]},{"name":"DIBUTTON_DRIVINGT_DASHBOARD","features":[376]},{"name":"DIBUTTON_DRIVINGT_DEVICE","features":[376]},{"name":"DIBUTTON_DRIVINGT_FIRE","features":[376]},{"name":"DIBUTTON_DRIVINGT_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_DRIVINGT_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_MENU","features":[376]},{"name":"DIBUTTON_DRIVINGT_PAUSE","features":[376]},{"name":"DIBUTTON_DRIVINGT_ROTATE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_ROTATE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_STEER_LEFT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_STEER_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_DRIVINGT_TARGET","features":[376]},{"name":"DIBUTTON_DRIVINGT_VIEW","features":[376]},{"name":"DIBUTTON_DRIVINGT_WEAPONS","features":[376]},{"name":"DIBUTTON_FIGHTINGH_BACKWARD_LINK","features":[376]},{"name":"DIBUTTON_FIGHTINGH_BLOCK","features":[376]},{"name":"DIBUTTON_FIGHTINGH_CROUCH","features":[376]},{"name":"DIBUTTON_FIGHTINGH_DEVICE","features":[376]},{"name":"DIBUTTON_FIGHTINGH_DISPLAY","features":[376]},{"name":"DIBUTTON_FIGHTINGH_DODGE","features":[376]},{"name":"DIBUTTON_FIGHTINGH_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_FIGHTINGH_JUMP","features":[376]},{"name":"DIBUTTON_FIGHTINGH_KICK","features":[376]},{"name":"DIBUTTON_FIGHTINGH_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FIGHTINGH_MENU","features":[376]},{"name":"DIBUTTON_FIGHTINGH_PAUSE","features":[376]},{"name":"DIBUTTON_FIGHTINGH_PUNCH","features":[376]},{"name":"DIBUTTON_FIGHTINGH_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FIGHTINGH_SELECT","features":[376]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL1","features":[376]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL2","features":[376]},{"name":"DIBUTTON_FISHING_BACK_LINK","features":[376]},{"name":"DIBUTTON_FISHING_BAIT","features":[376]},{"name":"DIBUTTON_FISHING_BINOCULAR","features":[376]},{"name":"DIBUTTON_FISHING_CAST","features":[376]},{"name":"DIBUTTON_FISHING_CROUCH","features":[376]},{"name":"DIBUTTON_FISHING_DEVICE","features":[376]},{"name":"DIBUTTON_FISHING_DISPLAY","features":[376]},{"name":"DIBUTTON_FISHING_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_FISHING_JUMP","features":[376]},{"name":"DIBUTTON_FISHING_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FISHING_MAP","features":[376]},{"name":"DIBUTTON_FISHING_MENU","features":[376]},{"name":"DIBUTTON_FISHING_PAUSE","features":[376]},{"name":"DIBUTTON_FISHING_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FISHING_ROTATE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FISHING_ROTATE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FISHING_TYPE","features":[376]},{"name":"DIBUTTON_FLYINGC_BRAKE_LINK","features":[376]},{"name":"DIBUTTON_FLYINGC_DEVICE","features":[376]},{"name":"DIBUTTON_FLYINGC_DISPLAY","features":[376]},{"name":"DIBUTTON_FLYINGC_FASTER_LINK","features":[376]},{"name":"DIBUTTON_FLYINGC_FLAPSDOWN","features":[376]},{"name":"DIBUTTON_FLYINGC_FLAPSUP","features":[376]},{"name":"DIBUTTON_FLYINGC_GEAR","features":[376]},{"name":"DIBUTTON_FLYINGC_GLANCE_DOWN_LINK","features":[376]},{"name":"DIBUTTON_FLYINGC_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FLYINGC_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FLYINGC_GLANCE_UP_LINK","features":[376]},{"name":"DIBUTTON_FLYINGC_MENU","features":[376]},{"name":"DIBUTTON_FLYINGC_PAUSE","features":[376]},{"name":"DIBUTTON_FLYINGC_SLOWER_LINK","features":[376]},{"name":"DIBUTTON_FLYINGC_VIEW","features":[376]},{"name":"DIBUTTON_FLYINGH_COUNTER","features":[376]},{"name":"DIBUTTON_FLYINGH_DEVICE","features":[376]},{"name":"DIBUTTON_FLYINGH_FASTER_LINK","features":[376]},{"name":"DIBUTTON_FLYINGH_FIRE","features":[376]},{"name":"DIBUTTON_FLYINGH_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_FLYINGH_GEAR","features":[376]},{"name":"DIBUTTON_FLYINGH_GLANCE_DOWN_LINK","features":[376]},{"name":"DIBUTTON_FLYINGH_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FLYINGH_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FLYINGH_GLANCE_UP_LINK","features":[376]},{"name":"DIBUTTON_FLYINGH_MENU","features":[376]},{"name":"DIBUTTON_FLYINGH_PAUSE","features":[376]},{"name":"DIBUTTON_FLYINGH_SLOWER_LINK","features":[376]},{"name":"DIBUTTON_FLYINGH_TARGET","features":[376]},{"name":"DIBUTTON_FLYINGH_VIEW","features":[376]},{"name":"DIBUTTON_FLYINGH_WEAPONS","features":[376]},{"name":"DIBUTTON_FLYINGM_BRAKE_LINK","features":[376]},{"name":"DIBUTTON_FLYINGM_COUNTER","features":[376]},{"name":"DIBUTTON_FLYINGM_DEVICE","features":[376]},{"name":"DIBUTTON_FLYINGM_DISPLAY","features":[376]},{"name":"DIBUTTON_FLYINGM_FASTER_LINK","features":[376]},{"name":"DIBUTTON_FLYINGM_FIRE","features":[376]},{"name":"DIBUTTON_FLYINGM_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_FLYINGM_FLAPSDOWN","features":[376]},{"name":"DIBUTTON_FLYINGM_FLAPSUP","features":[376]},{"name":"DIBUTTON_FLYINGM_GEAR","features":[376]},{"name":"DIBUTTON_FLYINGM_GLANCE_DOWN_LINK","features":[376]},{"name":"DIBUTTON_FLYINGM_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FLYINGM_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FLYINGM_GLANCE_UP_LINK","features":[376]},{"name":"DIBUTTON_FLYINGM_MENU","features":[376]},{"name":"DIBUTTON_FLYINGM_PAUSE","features":[376]},{"name":"DIBUTTON_FLYINGM_SLOWER_LINK","features":[376]},{"name":"DIBUTTON_FLYINGM_TARGET","features":[376]},{"name":"DIBUTTON_FLYINGM_VIEW","features":[376]},{"name":"DIBUTTON_FLYINGM_WEAPONS","features":[376]},{"name":"DIBUTTON_FOOTBALLD_AUDIBLE","features":[376]},{"name":"DIBUTTON_FOOTBALLD_BACK_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLD_BULLRUSH","features":[376]},{"name":"DIBUTTON_FOOTBALLD_DEVICE","features":[376]},{"name":"DIBUTTON_FOOTBALLD_FAKE","features":[376]},{"name":"DIBUTTON_FOOTBALLD_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLD_JUMP","features":[376]},{"name":"DIBUTTON_FOOTBALLD_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLD_MENU","features":[376]},{"name":"DIBUTTON_FOOTBALLD_PAUSE","features":[376]},{"name":"DIBUTTON_FOOTBALLD_PLAY","features":[376]},{"name":"DIBUTTON_FOOTBALLD_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLD_RIP","features":[376]},{"name":"DIBUTTON_FOOTBALLD_SELECT","features":[376]},{"name":"DIBUTTON_FOOTBALLD_SPIN","features":[376]},{"name":"DIBUTTON_FOOTBALLD_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_FOOTBALLD_SUPERTACKLE","features":[376]},{"name":"DIBUTTON_FOOTBALLD_SWIM","features":[376]},{"name":"DIBUTTON_FOOTBALLD_TACKLE","features":[376]},{"name":"DIBUTTON_FOOTBALLD_ZOOM","features":[376]},{"name":"DIBUTTON_FOOTBALLO_BACK_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLO_DEVICE","features":[376]},{"name":"DIBUTTON_FOOTBALLO_DIVE","features":[376]},{"name":"DIBUTTON_FOOTBALLO_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLO_JUKE","features":[376]},{"name":"DIBUTTON_FOOTBALLO_JUMP","features":[376]},{"name":"DIBUTTON_FOOTBALLO_LEFTARM","features":[376]},{"name":"DIBUTTON_FOOTBALLO_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLO_MENU","features":[376]},{"name":"DIBUTTON_FOOTBALLO_PAUSE","features":[376]},{"name":"DIBUTTON_FOOTBALLO_RIGHTARM","features":[376]},{"name":"DIBUTTON_FOOTBALLO_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLO_SHOULDER","features":[376]},{"name":"DIBUTTON_FOOTBALLO_SPIN","features":[376]},{"name":"DIBUTTON_FOOTBALLO_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_FOOTBALLO_THROW","features":[376]},{"name":"DIBUTTON_FOOTBALLO_TURBO","features":[376]},{"name":"DIBUTTON_FOOTBALLO_ZOOM","features":[376]},{"name":"DIBUTTON_FOOTBALLP_DEVICE","features":[376]},{"name":"DIBUTTON_FOOTBALLP_HELP","features":[376]},{"name":"DIBUTTON_FOOTBALLP_MENU","features":[376]},{"name":"DIBUTTON_FOOTBALLP_PAUSE","features":[376]},{"name":"DIBUTTON_FOOTBALLP_PLAY","features":[376]},{"name":"DIBUTTON_FOOTBALLP_SELECT","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_AUDIBLE","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_BACK_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_DEVICE","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_FAKE","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_FAKESNAP","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_JUMP","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_MENU","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_MOTION","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_PASS","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_PAUSE","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_SELECT","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_SLIDE","features":[376]},{"name":"DIBUTTON_FOOTBALLQ_SNAP","features":[376]},{"name":"DIBUTTON_FPS_APPLY","features":[376]},{"name":"DIBUTTON_FPS_BACKWARD_LINK","features":[376]},{"name":"DIBUTTON_FPS_CROUCH","features":[376]},{"name":"DIBUTTON_FPS_DEVICE","features":[376]},{"name":"DIBUTTON_FPS_DISPLAY","features":[376]},{"name":"DIBUTTON_FPS_DODGE","features":[376]},{"name":"DIBUTTON_FPS_FIRE","features":[376]},{"name":"DIBUTTON_FPS_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_FPS_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_FPS_GLANCEL","features":[376]},{"name":"DIBUTTON_FPS_GLANCER","features":[376]},{"name":"DIBUTTON_FPS_GLANCE_DOWN_LINK","features":[376]},{"name":"DIBUTTON_FPS_GLANCE_UP_LINK","features":[376]},{"name":"DIBUTTON_FPS_JUMP","features":[376]},{"name":"DIBUTTON_FPS_MENU","features":[376]},{"name":"DIBUTTON_FPS_PAUSE","features":[376]},{"name":"DIBUTTON_FPS_ROTATE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FPS_ROTATE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FPS_SELECT","features":[376]},{"name":"DIBUTTON_FPS_STEP_LEFT_LINK","features":[376]},{"name":"DIBUTTON_FPS_STEP_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_FPS_STRAFE","features":[376]},{"name":"DIBUTTON_FPS_WEAPONS","features":[376]},{"name":"DIBUTTON_GOLF_BACK_LINK","features":[376]},{"name":"DIBUTTON_GOLF_DEVICE","features":[376]},{"name":"DIBUTTON_GOLF_DOWN","features":[376]},{"name":"DIBUTTON_GOLF_FLYBY","features":[376]},{"name":"DIBUTTON_GOLF_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_GOLF_LEFT_LINK","features":[376]},{"name":"DIBUTTON_GOLF_MENU","features":[376]},{"name":"DIBUTTON_GOLF_PAUSE","features":[376]},{"name":"DIBUTTON_GOLF_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_GOLF_SELECT","features":[376]},{"name":"DIBUTTON_GOLF_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_GOLF_SWING","features":[376]},{"name":"DIBUTTON_GOLF_TERRAIN","features":[376]},{"name":"DIBUTTON_GOLF_TIMEOUT","features":[376]},{"name":"DIBUTTON_GOLF_UP","features":[376]},{"name":"DIBUTTON_GOLF_ZOOM","features":[376]},{"name":"DIBUTTON_HOCKEYD_BACK_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYD_BLOCK","features":[376]},{"name":"DIBUTTON_HOCKEYD_BURST","features":[376]},{"name":"DIBUTTON_HOCKEYD_DEVICE","features":[376]},{"name":"DIBUTTON_HOCKEYD_FAKE","features":[376]},{"name":"DIBUTTON_HOCKEYD_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYD_LEFT_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYD_MENU","features":[376]},{"name":"DIBUTTON_HOCKEYD_PAUSE","features":[376]},{"name":"DIBUTTON_HOCKEYD_PLAYER","features":[376]},{"name":"DIBUTTON_HOCKEYD_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYD_STEAL","features":[376]},{"name":"DIBUTTON_HOCKEYD_STRATEGY","features":[376]},{"name":"DIBUTTON_HOCKEYD_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_HOCKEYD_TIMEOUT","features":[376]},{"name":"DIBUTTON_HOCKEYD_ZOOM","features":[376]},{"name":"DIBUTTON_HOCKEYG_BACK_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYG_BLOCK","features":[376]},{"name":"DIBUTTON_HOCKEYG_DEVICE","features":[376]},{"name":"DIBUTTON_HOCKEYG_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYG_LEFT_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYG_MENU","features":[376]},{"name":"DIBUTTON_HOCKEYG_PASS","features":[376]},{"name":"DIBUTTON_HOCKEYG_PAUSE","features":[376]},{"name":"DIBUTTON_HOCKEYG_POKE","features":[376]},{"name":"DIBUTTON_HOCKEYG_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYG_STEAL","features":[376]},{"name":"DIBUTTON_HOCKEYG_STRATEGY","features":[376]},{"name":"DIBUTTON_HOCKEYG_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_HOCKEYG_TIMEOUT","features":[376]},{"name":"DIBUTTON_HOCKEYG_ZOOM","features":[376]},{"name":"DIBUTTON_HOCKEYO_BACK_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYO_BURST","features":[376]},{"name":"DIBUTTON_HOCKEYO_DEVICE","features":[376]},{"name":"DIBUTTON_HOCKEYO_FAKE","features":[376]},{"name":"DIBUTTON_HOCKEYO_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYO_LEFT_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYO_MENU","features":[376]},{"name":"DIBUTTON_HOCKEYO_PASS","features":[376]},{"name":"DIBUTTON_HOCKEYO_PAUSE","features":[376]},{"name":"DIBUTTON_HOCKEYO_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_HOCKEYO_SHOOT","features":[376]},{"name":"DIBUTTON_HOCKEYO_SPECIAL","features":[376]},{"name":"DIBUTTON_HOCKEYO_STRATEGY","features":[376]},{"name":"DIBUTTON_HOCKEYO_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_HOCKEYO_TIMEOUT","features":[376]},{"name":"DIBUTTON_HOCKEYO_ZOOM","features":[376]},{"name":"DIBUTTON_HUNTING_AIM","features":[376]},{"name":"DIBUTTON_HUNTING_BACK_LINK","features":[376]},{"name":"DIBUTTON_HUNTING_BINOCULAR","features":[376]},{"name":"DIBUTTON_HUNTING_CALL","features":[376]},{"name":"DIBUTTON_HUNTING_CROUCH","features":[376]},{"name":"DIBUTTON_HUNTING_DEVICE","features":[376]},{"name":"DIBUTTON_HUNTING_DISPLAY","features":[376]},{"name":"DIBUTTON_HUNTING_FIRE","features":[376]},{"name":"DIBUTTON_HUNTING_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_HUNTING_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_HUNTING_JUMP","features":[376]},{"name":"DIBUTTON_HUNTING_LEFT_LINK","features":[376]},{"name":"DIBUTTON_HUNTING_MAP","features":[376]},{"name":"DIBUTTON_HUNTING_MENU","features":[376]},{"name":"DIBUTTON_HUNTING_PAUSE","features":[376]},{"name":"DIBUTTON_HUNTING_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_HUNTING_ROTATE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_HUNTING_ROTATE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_HUNTING_SPECIAL","features":[376]},{"name":"DIBUTTON_HUNTING_WEAPON","features":[376]},{"name":"DIBUTTON_MECHA_BACK_LINK","features":[376]},{"name":"DIBUTTON_MECHA_CENTER","features":[376]},{"name":"DIBUTTON_MECHA_DEVICE","features":[376]},{"name":"DIBUTTON_MECHA_FASTER_LINK","features":[376]},{"name":"DIBUTTON_MECHA_FIRE","features":[376]},{"name":"DIBUTTON_MECHA_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_MECHA_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_MECHA_JUMP","features":[376]},{"name":"DIBUTTON_MECHA_LEFT_LINK","features":[376]},{"name":"DIBUTTON_MECHA_MENU","features":[376]},{"name":"DIBUTTON_MECHA_PAUSE","features":[376]},{"name":"DIBUTTON_MECHA_REVERSE","features":[376]},{"name":"DIBUTTON_MECHA_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_MECHA_ROTATE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_MECHA_ROTATE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_MECHA_SLOWER_LINK","features":[376]},{"name":"DIBUTTON_MECHA_TARGET","features":[376]},{"name":"DIBUTTON_MECHA_VIEW","features":[376]},{"name":"DIBUTTON_MECHA_WEAPONS","features":[376]},{"name":"DIBUTTON_MECHA_ZOOM","features":[376]},{"name":"DIBUTTON_RACQUET_BACKSWING","features":[376]},{"name":"DIBUTTON_RACQUET_BACK_LINK","features":[376]},{"name":"DIBUTTON_RACQUET_DEVICE","features":[376]},{"name":"DIBUTTON_RACQUET_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_RACQUET_LEFT_LINK","features":[376]},{"name":"DIBUTTON_RACQUET_MENU","features":[376]},{"name":"DIBUTTON_RACQUET_PAUSE","features":[376]},{"name":"DIBUTTON_RACQUET_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_RACQUET_SELECT","features":[376]},{"name":"DIBUTTON_RACQUET_SMASH","features":[376]},{"name":"DIBUTTON_RACQUET_SPECIAL","features":[376]},{"name":"DIBUTTON_RACQUET_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_RACQUET_SWING","features":[376]},{"name":"DIBUTTON_RACQUET_TIMEOUT","features":[376]},{"name":"DIBUTTON_REMOTE_ADJUST","features":[376]},{"name":"DIBUTTON_REMOTE_CABLE","features":[376]},{"name":"DIBUTTON_REMOTE_CD","features":[376]},{"name":"DIBUTTON_REMOTE_CHANGE","features":[376]},{"name":"DIBUTTON_REMOTE_CUE","features":[376]},{"name":"DIBUTTON_REMOTE_DEVICE","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT0","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT1","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT2","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT3","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT4","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT5","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT6","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT7","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT8","features":[376]},{"name":"DIBUTTON_REMOTE_DIGIT9","features":[376]},{"name":"DIBUTTON_REMOTE_DVD","features":[376]},{"name":"DIBUTTON_REMOTE_MENU","features":[376]},{"name":"DIBUTTON_REMOTE_MUTE","features":[376]},{"name":"DIBUTTON_REMOTE_PAUSE","features":[376]},{"name":"DIBUTTON_REMOTE_PLAY","features":[376]},{"name":"DIBUTTON_REMOTE_RECORD","features":[376]},{"name":"DIBUTTON_REMOTE_REVIEW","features":[376]},{"name":"DIBUTTON_REMOTE_SELECT","features":[376]},{"name":"DIBUTTON_REMOTE_TUNER","features":[376]},{"name":"DIBUTTON_REMOTE_TV","features":[376]},{"name":"DIBUTTON_REMOTE_VCR","features":[376]},{"name":"DIBUTTON_SKIING_CAMERA","features":[376]},{"name":"DIBUTTON_SKIING_CROUCH","features":[376]},{"name":"DIBUTTON_SKIING_DEVICE","features":[376]},{"name":"DIBUTTON_SKIING_FASTER_LINK","features":[376]},{"name":"DIBUTTON_SKIING_JUMP","features":[376]},{"name":"DIBUTTON_SKIING_LEFT_LINK","features":[376]},{"name":"DIBUTTON_SKIING_MENU","features":[376]},{"name":"DIBUTTON_SKIING_PAUSE","features":[376]},{"name":"DIBUTTON_SKIING_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_SKIING_SELECT","features":[376]},{"name":"DIBUTTON_SKIING_SLOWER_LINK","features":[376]},{"name":"DIBUTTON_SKIING_SPECIAL1","features":[376]},{"name":"DIBUTTON_SKIING_SPECIAL2","features":[376]},{"name":"DIBUTTON_SKIING_ZOOM","features":[376]},{"name":"DIBUTTON_SOCCERD_BACK_LINK","features":[376]},{"name":"DIBUTTON_SOCCERD_BLOCK","features":[376]},{"name":"DIBUTTON_SOCCERD_CLEAR","features":[376]},{"name":"DIBUTTON_SOCCERD_DEVICE","features":[376]},{"name":"DIBUTTON_SOCCERD_FAKE","features":[376]},{"name":"DIBUTTON_SOCCERD_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_SOCCERD_FOUL","features":[376]},{"name":"DIBUTTON_SOCCERD_GOALIECHARGE","features":[376]},{"name":"DIBUTTON_SOCCERD_HEAD","features":[376]},{"name":"DIBUTTON_SOCCERD_LEFT_LINK","features":[376]},{"name":"DIBUTTON_SOCCERD_MENU","features":[376]},{"name":"DIBUTTON_SOCCERD_PAUSE","features":[376]},{"name":"DIBUTTON_SOCCERD_PLAYER","features":[376]},{"name":"DIBUTTON_SOCCERD_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_SOCCERD_SELECT","features":[376]},{"name":"DIBUTTON_SOCCERD_SLIDE","features":[376]},{"name":"DIBUTTON_SOCCERD_SPECIAL","features":[376]},{"name":"DIBUTTON_SOCCERD_STEAL","features":[376]},{"name":"DIBUTTON_SOCCERD_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_SOCCERO_BACK_LINK","features":[376]},{"name":"DIBUTTON_SOCCERO_CONTROL","features":[376]},{"name":"DIBUTTON_SOCCERO_DEVICE","features":[376]},{"name":"DIBUTTON_SOCCERO_FAKE","features":[376]},{"name":"DIBUTTON_SOCCERO_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_SOCCERO_HEAD","features":[376]},{"name":"DIBUTTON_SOCCERO_LEFT_LINK","features":[376]},{"name":"DIBUTTON_SOCCERO_MENU","features":[376]},{"name":"DIBUTTON_SOCCERO_PASS","features":[376]},{"name":"DIBUTTON_SOCCERO_PASSTHRU","features":[376]},{"name":"DIBUTTON_SOCCERO_PAUSE","features":[376]},{"name":"DIBUTTON_SOCCERO_PLAYER","features":[376]},{"name":"DIBUTTON_SOCCERO_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_SOCCERO_SELECT","features":[376]},{"name":"DIBUTTON_SOCCERO_SHOOT","features":[376]},{"name":"DIBUTTON_SOCCERO_SHOOTHIGH","features":[376]},{"name":"DIBUTTON_SOCCERO_SHOOTLOW","features":[376]},{"name":"DIBUTTON_SOCCERO_SPECIAL1","features":[376]},{"name":"DIBUTTON_SOCCERO_SPRINT","features":[376]},{"name":"DIBUTTON_SOCCERO_SUBSTITUTE","features":[376]},{"name":"DIBUTTON_SPACESIM_BACKWARD_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_DEVICE","features":[376]},{"name":"DIBUTTON_SPACESIM_DISPLAY","features":[376]},{"name":"DIBUTTON_SPACESIM_FASTER_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_FIRE","features":[376]},{"name":"DIBUTTON_SPACESIM_FIRESECONDARY","features":[376]},{"name":"DIBUTTON_SPACESIM_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_GEAR","features":[376]},{"name":"DIBUTTON_SPACESIM_GLANCE_DOWN_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_GLANCE_UP_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_LEFT_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_LOWER","features":[376]},{"name":"DIBUTTON_SPACESIM_MENU","features":[376]},{"name":"DIBUTTON_SPACESIM_PAUSE","features":[376]},{"name":"DIBUTTON_SPACESIM_RAISE","features":[376]},{"name":"DIBUTTON_SPACESIM_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_SLOWER_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_TARGET","features":[376]},{"name":"DIBUTTON_SPACESIM_TURN_LEFT_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_TURN_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_SPACESIM_VIEW","features":[376]},{"name":"DIBUTTON_SPACESIM_WEAPONS","features":[376]},{"name":"DIBUTTON_STRATEGYR_APPLY","features":[376]},{"name":"DIBUTTON_STRATEGYR_ATTACK","features":[376]},{"name":"DIBUTTON_STRATEGYR_BACK_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYR_CAST","features":[376]},{"name":"DIBUTTON_STRATEGYR_CROUCH","features":[376]},{"name":"DIBUTTON_STRATEGYR_DEVICE","features":[376]},{"name":"DIBUTTON_STRATEGYR_DISPLAY","features":[376]},{"name":"DIBUTTON_STRATEGYR_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYR_GET","features":[376]},{"name":"DIBUTTON_STRATEGYR_JUMP","features":[376]},{"name":"DIBUTTON_STRATEGYR_LEFT_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYR_MAP","features":[376]},{"name":"DIBUTTON_STRATEGYR_MENU","features":[376]},{"name":"DIBUTTON_STRATEGYR_PAUSE","features":[376]},{"name":"DIBUTTON_STRATEGYR_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYR_ROTATE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYR_ROTATE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYR_SELECT","features":[376]},{"name":"DIBUTTON_STRATEGYT_APPLY","features":[376]},{"name":"DIBUTTON_STRATEGYT_BACK_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYT_DEVICE","features":[376]},{"name":"DIBUTTON_STRATEGYT_DISPLAY","features":[376]},{"name":"DIBUTTON_STRATEGYT_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYT_INSTRUCT","features":[376]},{"name":"DIBUTTON_STRATEGYT_LEFT_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYT_MAP","features":[376]},{"name":"DIBUTTON_STRATEGYT_MENU","features":[376]},{"name":"DIBUTTON_STRATEGYT_PAUSE","features":[376]},{"name":"DIBUTTON_STRATEGYT_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_STRATEGYT_SELECT","features":[376]},{"name":"DIBUTTON_STRATEGYT_TEAM","features":[376]},{"name":"DIBUTTON_STRATEGYT_TURN","features":[376]},{"name":"DIBUTTON_STRATEGYT_ZOOM","features":[376]},{"name":"DIBUTTON_TPS_ACTION","features":[376]},{"name":"DIBUTTON_TPS_BACKWARD_LINK","features":[376]},{"name":"DIBUTTON_TPS_DEVICE","features":[376]},{"name":"DIBUTTON_TPS_DODGE","features":[376]},{"name":"DIBUTTON_TPS_FORWARD_LINK","features":[376]},{"name":"DIBUTTON_TPS_GLANCE_DOWN_LINK","features":[376]},{"name":"DIBUTTON_TPS_GLANCE_LEFT_LINK","features":[376]},{"name":"DIBUTTON_TPS_GLANCE_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_TPS_GLANCE_UP_LINK","features":[376]},{"name":"DIBUTTON_TPS_INVENTORY","features":[376]},{"name":"DIBUTTON_TPS_JUMP","features":[376]},{"name":"DIBUTTON_TPS_MENU","features":[376]},{"name":"DIBUTTON_TPS_PAUSE","features":[376]},{"name":"DIBUTTON_TPS_RUN","features":[376]},{"name":"DIBUTTON_TPS_SELECT","features":[376]},{"name":"DIBUTTON_TPS_STEPLEFT","features":[376]},{"name":"DIBUTTON_TPS_STEPRIGHT","features":[376]},{"name":"DIBUTTON_TPS_TURN_LEFT_LINK","features":[376]},{"name":"DIBUTTON_TPS_TURN_RIGHT_LINK","features":[376]},{"name":"DIBUTTON_TPS_USE","features":[376]},{"name":"DIBUTTON_TPS_VIEW","features":[376]},{"name":"DICD_DEFAULT","features":[376]},{"name":"DICD_EDIT","features":[376]},{"name":"DICOLORSET","features":[376]},{"name":"DICONDITION","features":[376]},{"name":"DICONFIGUREDEVICESPARAMSA","features":[376,303]},{"name":"DICONFIGUREDEVICESPARAMSW","features":[376,303]},{"name":"DICONSTANTFORCE","features":[376]},{"name":"DICUSTOMFORCE","features":[376]},{"name":"DIDAL_BOTTOMALIGNED","features":[376]},{"name":"DIDAL_CENTERED","features":[376]},{"name":"DIDAL_LEFTALIGNED","features":[376]},{"name":"DIDAL_MIDDLE","features":[376]},{"name":"DIDAL_RIGHTALIGNED","features":[376]},{"name":"DIDAL_TOPALIGNED","features":[376]},{"name":"DIDATAFORMAT","features":[376]},{"name":"DIDBAM_DEFAULT","features":[376]},{"name":"DIDBAM_HWDEFAULTS","features":[376]},{"name":"DIDBAM_INITIALIZE","features":[376]},{"name":"DIDBAM_PRESERVE","features":[376]},{"name":"DIDC_ALIAS","features":[376]},{"name":"DIDC_ATTACHED","features":[376]},{"name":"DIDC_DEADBAND","features":[376]},{"name":"DIDC_EMULATED","features":[376]},{"name":"DIDC_FFATTACK","features":[376]},{"name":"DIDC_FFFADE","features":[376]},{"name":"DIDC_FORCEFEEDBACK","features":[376]},{"name":"DIDC_HIDDEN","features":[376]},{"name":"DIDC_PHANTOM","features":[376]},{"name":"DIDC_POLLEDDATAFORMAT","features":[376]},{"name":"DIDC_POLLEDDEVICE","features":[376]},{"name":"DIDC_POSNEGCOEFFICIENTS","features":[376]},{"name":"DIDC_POSNEGSATURATION","features":[376]},{"name":"DIDC_SATURATION","features":[376]},{"name":"DIDC_STARTDELAY","features":[376]},{"name":"DIDEVCAPS","features":[376]},{"name":"DIDEVCAPS_DX3","features":[376]},{"name":"DIDEVICEIMAGEINFOA","features":[376,303]},{"name":"DIDEVICEIMAGEINFOHEADERA","features":[376,303]},{"name":"DIDEVICEIMAGEINFOHEADERW","features":[376,303]},{"name":"DIDEVICEIMAGEINFOW","features":[376,303]},{"name":"DIDEVICEINSTANCEA","features":[376]},{"name":"DIDEVICEINSTANCEW","features":[376]},{"name":"DIDEVICEINSTANCE_DX3A","features":[376]},{"name":"DIDEVICEINSTANCE_DX3W","features":[376]},{"name":"DIDEVICEOBJECTDATA","features":[376]},{"name":"DIDEVICEOBJECTDATA_DX3","features":[376]},{"name":"DIDEVICEOBJECTINSTANCEA","features":[376]},{"name":"DIDEVICEOBJECTINSTANCEW","features":[376]},{"name":"DIDEVICEOBJECTINSTANCE_DX3A","features":[376]},{"name":"DIDEVICEOBJECTINSTANCE_DX3W","features":[376]},{"name":"DIDEVICESTATE","features":[376]},{"name":"DIDEVTYPEJOYSTICK_FLIGHTSTICK","features":[376]},{"name":"DIDEVTYPEJOYSTICK_GAMEPAD","features":[376]},{"name":"DIDEVTYPEJOYSTICK_HEADTRACKER","features":[376]},{"name":"DIDEVTYPEJOYSTICK_RUDDER","features":[376]},{"name":"DIDEVTYPEJOYSTICK_TRADITIONAL","features":[376]},{"name":"DIDEVTYPEJOYSTICK_UNKNOWN","features":[376]},{"name":"DIDEVTYPEJOYSTICK_WHEEL","features":[376]},{"name":"DIDEVTYPEKEYBOARD_J3100","features":[376]},{"name":"DIDEVTYPEKEYBOARD_JAPAN106","features":[376]},{"name":"DIDEVTYPEKEYBOARD_JAPANAX","features":[376]},{"name":"DIDEVTYPEKEYBOARD_NEC98","features":[376]},{"name":"DIDEVTYPEKEYBOARD_NEC98106","features":[376]},{"name":"DIDEVTYPEKEYBOARD_NEC98LAPTOP","features":[376]},{"name":"DIDEVTYPEKEYBOARD_NOKIA1050","features":[376]},{"name":"DIDEVTYPEKEYBOARD_NOKIA9140","features":[376]},{"name":"DIDEVTYPEKEYBOARD_OLIVETTI","features":[376]},{"name":"DIDEVTYPEKEYBOARD_PCAT","features":[376]},{"name":"DIDEVTYPEKEYBOARD_PCENH","features":[376]},{"name":"DIDEVTYPEKEYBOARD_PCXT","features":[376]},{"name":"DIDEVTYPEKEYBOARD_UNKNOWN","features":[376]},{"name":"DIDEVTYPEMOUSE_FINGERSTICK","features":[376]},{"name":"DIDEVTYPEMOUSE_TOUCHPAD","features":[376]},{"name":"DIDEVTYPEMOUSE_TRACKBALL","features":[376]},{"name":"DIDEVTYPEMOUSE_TRADITIONAL","features":[376]},{"name":"DIDEVTYPEMOUSE_UNKNOWN","features":[376]},{"name":"DIDEVTYPE_DEVICE","features":[376]},{"name":"DIDEVTYPE_HID","features":[376]},{"name":"DIDEVTYPE_JOYSTICK","features":[376]},{"name":"DIDEVTYPE_KEYBOARD","features":[376]},{"name":"DIDEVTYPE_MOUSE","features":[376]},{"name":"DIDFT_ABSAXIS","features":[376]},{"name":"DIDFT_ALIAS","features":[376]},{"name":"DIDFT_ALL","features":[376]},{"name":"DIDFT_ANYINSTANCE","features":[376]},{"name":"DIDFT_AXIS","features":[376]},{"name":"DIDFT_BUTTON","features":[376]},{"name":"DIDFT_COLLECTION","features":[376]},{"name":"DIDFT_FFACTUATOR","features":[376]},{"name":"DIDFT_FFEFFECTTRIGGER","features":[376]},{"name":"DIDFT_INSTANCEMASK","features":[376]},{"name":"DIDFT_NOCOLLECTION","features":[376]},{"name":"DIDFT_NODATA","features":[376]},{"name":"DIDFT_OUTPUT","features":[376]},{"name":"DIDFT_POV","features":[376]},{"name":"DIDFT_PSHBUTTON","features":[376]},{"name":"DIDFT_RELAXIS","features":[376]},{"name":"DIDFT_TGLBUTTON","features":[376]},{"name":"DIDFT_VENDORDEFINED","features":[376]},{"name":"DIDF_ABSAXIS","features":[376]},{"name":"DIDF_RELAXIS","features":[376]},{"name":"DIDIFT_CONFIGURATION","features":[376]},{"name":"DIDIFT_DELETE","features":[376]},{"name":"DIDIFT_OVERLAY","features":[376]},{"name":"DIDOI_ASPECTACCEL","features":[376]},{"name":"DIDOI_ASPECTFORCE","features":[376]},{"name":"DIDOI_ASPECTMASK","features":[376]},{"name":"DIDOI_ASPECTPOSITION","features":[376]},{"name":"DIDOI_ASPECTVELOCITY","features":[376]},{"name":"DIDOI_FFACTUATOR","features":[376]},{"name":"DIDOI_FFEFFECTTRIGGER","features":[376]},{"name":"DIDOI_GUIDISUSAGE","features":[376]},{"name":"DIDOI_POLLED","features":[376]},{"name":"DIDRIVERVERSIONS","features":[376]},{"name":"DIDSAM_DEFAULT","features":[376]},{"name":"DIDSAM_FORCESAVE","features":[376]},{"name":"DIDSAM_NOUSER","features":[376]},{"name":"DIEB_NOTRIGGER","features":[376]},{"name":"DIEDBSFL_ATTACHEDONLY","features":[376]},{"name":"DIEDBSFL_AVAILABLEDEVICES","features":[376]},{"name":"DIEDBSFL_FORCEFEEDBACK","features":[376]},{"name":"DIEDBSFL_MULTIMICEKEYBOARDS","features":[376]},{"name":"DIEDBSFL_NONGAMINGDEVICES","features":[376]},{"name":"DIEDBSFL_THISUSER","features":[376]},{"name":"DIEDBSFL_VALID","features":[376]},{"name":"DIEDBS_MAPPEDPRI1","features":[376]},{"name":"DIEDBS_MAPPEDPRI2","features":[376]},{"name":"DIEDBS_NEWDEVICE","features":[376]},{"name":"DIEDBS_RECENTDEVICE","features":[376]},{"name":"DIEDFL_ALLDEVICES","features":[376]},{"name":"DIEDFL_ATTACHEDONLY","features":[376]},{"name":"DIEDFL_FORCEFEEDBACK","features":[376]},{"name":"DIEDFL_INCLUDEALIASES","features":[376]},{"name":"DIEDFL_INCLUDEHIDDEN","features":[376]},{"name":"DIEDFL_INCLUDEPHANTOMS","features":[376]},{"name":"DIEFFECT","features":[376]},{"name":"DIEFFECTATTRIBUTES","features":[376]},{"name":"DIEFFECTINFOA","features":[376]},{"name":"DIEFFECTINFOW","features":[376]},{"name":"DIEFFECT_DX5","features":[376]},{"name":"DIEFFESCAPE","features":[376]},{"name":"DIEFF_CARTESIAN","features":[376]},{"name":"DIEFF_OBJECTIDS","features":[376]},{"name":"DIEFF_OBJECTOFFSETS","features":[376]},{"name":"DIEFF_POLAR","features":[376]},{"name":"DIEFF_SPHERICAL","features":[376]},{"name":"DIEFT_ALL","features":[376]},{"name":"DIEFT_CONDITION","features":[376]},{"name":"DIEFT_CONSTANTFORCE","features":[376]},{"name":"DIEFT_CUSTOMFORCE","features":[376]},{"name":"DIEFT_DEADBAND","features":[376]},{"name":"DIEFT_FFATTACK","features":[376]},{"name":"DIEFT_FFFADE","features":[376]},{"name":"DIEFT_HARDWARE","features":[376]},{"name":"DIEFT_PERIODIC","features":[376]},{"name":"DIEFT_POSNEGCOEFFICIENTS","features":[376]},{"name":"DIEFT_POSNEGSATURATION","features":[376]},{"name":"DIEFT_RAMPFORCE","features":[376]},{"name":"DIEFT_SATURATION","features":[376]},{"name":"DIEFT_STARTDELAY","features":[376]},{"name":"DIEGES_EMULATED","features":[376]},{"name":"DIEGES_PLAYING","features":[376]},{"name":"DIENUM_CONTINUE","features":[376]},{"name":"DIENUM_STOP","features":[376]},{"name":"DIENVELOPE","features":[376]},{"name":"DIEP_ALLPARAMS","features":[376]},{"name":"DIEP_ALLPARAMS_DX5","features":[376]},{"name":"DIEP_AXES","features":[376]},{"name":"DIEP_DIRECTION","features":[376]},{"name":"DIEP_DURATION","features":[376]},{"name":"DIEP_ENVELOPE","features":[376]},{"name":"DIEP_GAIN","features":[376]},{"name":"DIEP_NODOWNLOAD","features":[376]},{"name":"DIEP_NORESTART","features":[376]},{"name":"DIEP_SAMPLEPERIOD","features":[376]},{"name":"DIEP_START","features":[376]},{"name":"DIEP_STARTDELAY","features":[376]},{"name":"DIEP_TRIGGERBUTTON","features":[376]},{"name":"DIEP_TRIGGERREPEATINTERVAL","features":[376]},{"name":"DIEP_TYPESPECIFICPARAMS","features":[376]},{"name":"DIERR_ACQUIRED","features":[376]},{"name":"DIERR_ALREADYINITIALIZED","features":[376]},{"name":"DIERR_BADDRIVERVER","features":[376]},{"name":"DIERR_BADINF","features":[376]},{"name":"DIERR_BETADIRECTINPUTVERSION","features":[376]},{"name":"DIERR_CANCELLED","features":[376]},{"name":"DIERR_DEVICEFULL","features":[376]},{"name":"DIERR_DEVICENOTREG","features":[376]},{"name":"DIERR_DRIVERFIRST","features":[376]},{"name":"DIERR_DRIVERLAST","features":[376]},{"name":"DIERR_EFFECTPLAYING","features":[376]},{"name":"DIERR_GENERIC","features":[376]},{"name":"DIERR_HANDLEEXISTS","features":[376]},{"name":"DIERR_HASEFFECTS","features":[376]},{"name":"DIERR_INCOMPLETEEFFECT","features":[376]},{"name":"DIERR_INPUTLOST","features":[376]},{"name":"DIERR_INSUFFICIENTPRIVS","features":[376]},{"name":"DIERR_INVALIDCLASSINSTALLER","features":[376]},{"name":"DIERR_INVALIDPARAM","features":[376]},{"name":"DIERR_MAPFILEFAIL","features":[376]},{"name":"DIERR_MOREDATA","features":[376]},{"name":"DIERR_NOAGGREGATION","features":[376]},{"name":"DIERR_NOINTERFACE","features":[376]},{"name":"DIERR_NOMOREITEMS","features":[376]},{"name":"DIERR_NOTACQUIRED","features":[376]},{"name":"DIERR_NOTBUFFERED","features":[376]},{"name":"DIERR_NOTDOWNLOADED","features":[376]},{"name":"DIERR_NOTEXCLUSIVEACQUIRED","features":[376]},{"name":"DIERR_NOTFOUND","features":[376]},{"name":"DIERR_NOTINITIALIZED","features":[376]},{"name":"DIERR_OBJECTNOTFOUND","features":[376]},{"name":"DIERR_OLDDIRECTINPUTVERSION","features":[376]},{"name":"DIERR_OTHERAPPHASPRIO","features":[376]},{"name":"DIERR_OUTOFMEMORY","features":[376]},{"name":"DIERR_READONLY","features":[376]},{"name":"DIERR_REPORTFULL","features":[376]},{"name":"DIERR_UNPLUGGED","features":[376]},{"name":"DIERR_UNSUPPORTED","features":[376]},{"name":"DIES_NODOWNLOAD","features":[376]},{"name":"DIES_SOLO","features":[376]},{"name":"DIFEF_DEFAULT","features":[376]},{"name":"DIFEF_INCLUDENONSTANDARD","features":[376]},{"name":"DIFEF_MODIFYIFNEEDED","features":[376]},{"name":"DIFFDEVICEATTRIBUTES","features":[376]},{"name":"DIFFOBJECTATTRIBUTES","features":[376]},{"name":"DIFILEEFFECT","features":[376]},{"name":"DIGDD_PEEK","features":[376]},{"name":"DIGFFS_ACTUATORSOFF","features":[376]},{"name":"DIGFFS_ACTUATORSON","features":[376]},{"name":"DIGFFS_DEVICELOST","features":[376]},{"name":"DIGFFS_EMPTY","features":[376]},{"name":"DIGFFS_PAUSED","features":[376]},{"name":"DIGFFS_POWEROFF","features":[376]},{"name":"DIGFFS_POWERON","features":[376]},{"name":"DIGFFS_SAFETYSWITCHOFF","features":[376]},{"name":"DIGFFS_SAFETYSWITCHON","features":[376]},{"name":"DIGFFS_STOPPED","features":[376]},{"name":"DIGFFS_USERFFSWITCHOFF","features":[376]},{"name":"DIGFFS_USERFFSWITCHON","features":[376]},{"name":"DIHATSWITCH_2DCONTROL_HATSWITCH","features":[376]},{"name":"DIHATSWITCH_3DCONTROL_HATSWITCH","features":[376]},{"name":"DIHATSWITCH_ARCADEP_VIEW","features":[376]},{"name":"DIHATSWITCH_ARCADES_VIEW","features":[376]},{"name":"DIHATSWITCH_BBALLD_GLANCE","features":[376]},{"name":"DIHATSWITCH_BBALLO_GLANCE","features":[376]},{"name":"DIHATSWITCH_BIKINGM_SCROLL","features":[376]},{"name":"DIHATSWITCH_CADF_HATSWITCH","features":[376]},{"name":"DIHATSWITCH_CADM_HATSWITCH","features":[376]},{"name":"DIHATSWITCH_DRIVINGC_GLANCE","features":[376]},{"name":"DIHATSWITCH_DRIVINGR_GLANCE","features":[376]},{"name":"DIHATSWITCH_DRIVINGT_GLANCE","features":[376]},{"name":"DIHATSWITCH_FIGHTINGH_SLIDE","features":[376]},{"name":"DIHATSWITCH_FISHING_GLANCE","features":[376]},{"name":"DIHATSWITCH_FLYINGC_GLANCE","features":[376]},{"name":"DIHATSWITCH_FLYINGH_GLANCE","features":[376]},{"name":"DIHATSWITCH_FLYINGM_GLANCE","features":[376]},{"name":"DIHATSWITCH_FPS_GLANCE","features":[376]},{"name":"DIHATSWITCH_GOLF_SCROLL","features":[376]},{"name":"DIHATSWITCH_HOCKEYD_SCROLL","features":[376]},{"name":"DIHATSWITCH_HOCKEYG_SCROLL","features":[376]},{"name":"DIHATSWITCH_HOCKEYO_SCROLL","features":[376]},{"name":"DIHATSWITCH_HUNTING_GLANCE","features":[376]},{"name":"DIHATSWITCH_MECHA_GLANCE","features":[376]},{"name":"DIHATSWITCH_RACQUET_GLANCE","features":[376]},{"name":"DIHATSWITCH_SKIING_GLANCE","features":[376]},{"name":"DIHATSWITCH_SOCCERD_GLANCE","features":[376]},{"name":"DIHATSWITCH_SOCCERO_GLANCE","features":[376]},{"name":"DIHATSWITCH_SPACESIM_GLANCE","features":[376]},{"name":"DIHATSWITCH_STRATEGYR_GLANCE","features":[376]},{"name":"DIHATSWITCH_TPS_GLANCE","features":[376]},{"name":"DIHIDFFINITINFO","features":[376]},{"name":"DIJC_CALLOUT","features":[376]},{"name":"DIJC_GAIN","features":[376]},{"name":"DIJC_GUIDINSTANCE","features":[376]},{"name":"DIJC_REGHWCONFIGTYPE","features":[376]},{"name":"DIJC_WDMGAMEPORT","features":[376]},{"name":"DIJOYCONFIG","features":[376]},{"name":"DIJOYCONFIG_DX5","features":[376]},{"name":"DIJOYSTATE","features":[376]},{"name":"DIJOYSTATE2","features":[376]},{"name":"DIJOYTYPEINFO","features":[376]},{"name":"DIJOYTYPEINFO_DX5","features":[376]},{"name":"DIJOYTYPEINFO_DX6","features":[376]},{"name":"DIJOYUSERVALUES","features":[376]},{"name":"DIJU_GAMEPORTEMULATOR","features":[376]},{"name":"DIJU_GLOBALDRIVER","features":[376]},{"name":"DIJU_USERVALUES","features":[376]},{"name":"DIKEYBOARD_0","features":[376]},{"name":"DIKEYBOARD_1","features":[376]},{"name":"DIKEYBOARD_2","features":[376]},{"name":"DIKEYBOARD_3","features":[376]},{"name":"DIKEYBOARD_4","features":[376]},{"name":"DIKEYBOARD_5","features":[376]},{"name":"DIKEYBOARD_6","features":[376]},{"name":"DIKEYBOARD_7","features":[376]},{"name":"DIKEYBOARD_8","features":[376]},{"name":"DIKEYBOARD_9","features":[376]},{"name":"DIKEYBOARD_A","features":[376]},{"name":"DIKEYBOARD_ABNT_C1","features":[376]},{"name":"DIKEYBOARD_ABNT_C2","features":[376]},{"name":"DIKEYBOARD_ADD","features":[376]},{"name":"DIKEYBOARD_APOSTROPHE","features":[376]},{"name":"DIKEYBOARD_APPS","features":[376]},{"name":"DIKEYBOARD_AT","features":[376]},{"name":"DIKEYBOARD_AX","features":[376]},{"name":"DIKEYBOARD_B","features":[376]},{"name":"DIKEYBOARD_BACK","features":[376]},{"name":"DIKEYBOARD_BACKSLASH","features":[376]},{"name":"DIKEYBOARD_C","features":[376]},{"name":"DIKEYBOARD_CALCULATOR","features":[376]},{"name":"DIKEYBOARD_CAPITAL","features":[376]},{"name":"DIKEYBOARD_COLON","features":[376]},{"name":"DIKEYBOARD_COMMA","features":[376]},{"name":"DIKEYBOARD_CONVERT","features":[376]},{"name":"DIKEYBOARD_D","features":[376]},{"name":"DIKEYBOARD_DECIMAL","features":[376]},{"name":"DIKEYBOARD_DELETE","features":[376]},{"name":"DIKEYBOARD_DIVIDE","features":[376]},{"name":"DIKEYBOARD_DOWN","features":[376]},{"name":"DIKEYBOARD_E","features":[376]},{"name":"DIKEYBOARD_END","features":[376]},{"name":"DIKEYBOARD_EQUALS","features":[376]},{"name":"DIKEYBOARD_ESCAPE","features":[376]},{"name":"DIKEYBOARD_F","features":[376]},{"name":"DIKEYBOARD_F1","features":[376]},{"name":"DIKEYBOARD_F10","features":[376]},{"name":"DIKEYBOARD_F11","features":[376]},{"name":"DIKEYBOARD_F12","features":[376]},{"name":"DIKEYBOARD_F13","features":[376]},{"name":"DIKEYBOARD_F14","features":[376]},{"name":"DIKEYBOARD_F15","features":[376]},{"name":"DIKEYBOARD_F2","features":[376]},{"name":"DIKEYBOARD_F3","features":[376]},{"name":"DIKEYBOARD_F4","features":[376]},{"name":"DIKEYBOARD_F5","features":[376]},{"name":"DIKEYBOARD_F6","features":[376]},{"name":"DIKEYBOARD_F7","features":[376]},{"name":"DIKEYBOARD_F8","features":[376]},{"name":"DIKEYBOARD_F9","features":[376]},{"name":"DIKEYBOARD_G","features":[376]},{"name":"DIKEYBOARD_GRAVE","features":[376]},{"name":"DIKEYBOARD_H","features":[376]},{"name":"DIKEYBOARD_HOME","features":[376]},{"name":"DIKEYBOARD_I","features":[376]},{"name":"DIKEYBOARD_INSERT","features":[376]},{"name":"DIKEYBOARD_J","features":[376]},{"name":"DIKEYBOARD_K","features":[376]},{"name":"DIKEYBOARD_KANA","features":[376]},{"name":"DIKEYBOARD_KANJI","features":[376]},{"name":"DIKEYBOARD_L","features":[376]},{"name":"DIKEYBOARD_LBRACKET","features":[376]},{"name":"DIKEYBOARD_LCONTROL","features":[376]},{"name":"DIKEYBOARD_LEFT","features":[376]},{"name":"DIKEYBOARD_LMENU","features":[376]},{"name":"DIKEYBOARD_LSHIFT","features":[376]},{"name":"DIKEYBOARD_LWIN","features":[376]},{"name":"DIKEYBOARD_M","features":[376]},{"name":"DIKEYBOARD_MAIL","features":[376]},{"name":"DIKEYBOARD_MEDIASELECT","features":[376]},{"name":"DIKEYBOARD_MEDIASTOP","features":[376]},{"name":"DIKEYBOARD_MINUS","features":[376]},{"name":"DIKEYBOARD_MULTIPLY","features":[376]},{"name":"DIKEYBOARD_MUTE","features":[376]},{"name":"DIKEYBOARD_MYCOMPUTER","features":[376]},{"name":"DIKEYBOARD_N","features":[376]},{"name":"DIKEYBOARD_NEXT","features":[376]},{"name":"DIKEYBOARD_NEXTTRACK","features":[376]},{"name":"DIKEYBOARD_NOCONVERT","features":[376]},{"name":"DIKEYBOARD_NUMLOCK","features":[376]},{"name":"DIKEYBOARD_NUMPAD0","features":[376]},{"name":"DIKEYBOARD_NUMPAD1","features":[376]},{"name":"DIKEYBOARD_NUMPAD2","features":[376]},{"name":"DIKEYBOARD_NUMPAD3","features":[376]},{"name":"DIKEYBOARD_NUMPAD4","features":[376]},{"name":"DIKEYBOARD_NUMPAD5","features":[376]},{"name":"DIKEYBOARD_NUMPAD6","features":[376]},{"name":"DIKEYBOARD_NUMPAD7","features":[376]},{"name":"DIKEYBOARD_NUMPAD8","features":[376]},{"name":"DIKEYBOARD_NUMPAD9","features":[376]},{"name":"DIKEYBOARD_NUMPADCOMMA","features":[376]},{"name":"DIKEYBOARD_NUMPADENTER","features":[376]},{"name":"DIKEYBOARD_NUMPADEQUALS","features":[376]},{"name":"DIKEYBOARD_O","features":[376]},{"name":"DIKEYBOARD_OEM_102","features":[376]},{"name":"DIKEYBOARD_P","features":[376]},{"name":"DIKEYBOARD_PAUSE","features":[376]},{"name":"DIKEYBOARD_PERIOD","features":[376]},{"name":"DIKEYBOARD_PLAYPAUSE","features":[376]},{"name":"DIKEYBOARD_POWER","features":[376]},{"name":"DIKEYBOARD_PREVTRACK","features":[376]},{"name":"DIKEYBOARD_PRIOR","features":[376]},{"name":"DIKEYBOARD_Q","features":[376]},{"name":"DIKEYBOARD_R","features":[376]},{"name":"DIKEYBOARD_RBRACKET","features":[376]},{"name":"DIKEYBOARD_RCONTROL","features":[376]},{"name":"DIKEYBOARD_RETURN","features":[376]},{"name":"DIKEYBOARD_RIGHT","features":[376]},{"name":"DIKEYBOARD_RMENU","features":[376]},{"name":"DIKEYBOARD_RSHIFT","features":[376]},{"name":"DIKEYBOARD_RWIN","features":[376]},{"name":"DIKEYBOARD_S","features":[376]},{"name":"DIKEYBOARD_SCROLL","features":[376]},{"name":"DIKEYBOARD_SEMICOLON","features":[376]},{"name":"DIKEYBOARD_SLASH","features":[376]},{"name":"DIKEYBOARD_SLEEP","features":[376]},{"name":"DIKEYBOARD_SPACE","features":[376]},{"name":"DIKEYBOARD_STOP","features":[376]},{"name":"DIKEYBOARD_SUBTRACT","features":[376]},{"name":"DIKEYBOARD_SYSRQ","features":[376]},{"name":"DIKEYBOARD_T","features":[376]},{"name":"DIKEYBOARD_TAB","features":[376]},{"name":"DIKEYBOARD_U","features":[376]},{"name":"DIKEYBOARD_UNDERLINE","features":[376]},{"name":"DIKEYBOARD_UNLABELED","features":[376]},{"name":"DIKEYBOARD_UP","features":[376]},{"name":"DIKEYBOARD_V","features":[376]},{"name":"DIKEYBOARD_VOLUMEDOWN","features":[376]},{"name":"DIKEYBOARD_VOLUMEUP","features":[376]},{"name":"DIKEYBOARD_W","features":[376]},{"name":"DIKEYBOARD_WAKE","features":[376]},{"name":"DIKEYBOARD_WEBBACK","features":[376]},{"name":"DIKEYBOARD_WEBFAVORITES","features":[376]},{"name":"DIKEYBOARD_WEBFORWARD","features":[376]},{"name":"DIKEYBOARD_WEBHOME","features":[376]},{"name":"DIKEYBOARD_WEBREFRESH","features":[376]},{"name":"DIKEYBOARD_WEBSEARCH","features":[376]},{"name":"DIKEYBOARD_WEBSTOP","features":[376]},{"name":"DIKEYBOARD_X","features":[376]},{"name":"DIKEYBOARD_Y","features":[376]},{"name":"DIKEYBOARD_YEN","features":[376]},{"name":"DIKEYBOARD_Z","features":[376]},{"name":"DIK_0","features":[376]},{"name":"DIK_1","features":[376]},{"name":"DIK_2","features":[376]},{"name":"DIK_3","features":[376]},{"name":"DIK_4","features":[376]},{"name":"DIK_5","features":[376]},{"name":"DIK_6","features":[376]},{"name":"DIK_7","features":[376]},{"name":"DIK_8","features":[376]},{"name":"DIK_9","features":[376]},{"name":"DIK_A","features":[376]},{"name":"DIK_ABNT_C1","features":[376]},{"name":"DIK_ABNT_C2","features":[376]},{"name":"DIK_ADD","features":[376]},{"name":"DIK_APOSTROPHE","features":[376]},{"name":"DIK_APPS","features":[376]},{"name":"DIK_AT","features":[376]},{"name":"DIK_AX","features":[376]},{"name":"DIK_B","features":[376]},{"name":"DIK_BACK","features":[376]},{"name":"DIK_BACKSLASH","features":[376]},{"name":"DIK_BACKSPACE","features":[376]},{"name":"DIK_C","features":[376]},{"name":"DIK_CALCULATOR","features":[376]},{"name":"DIK_CAPITAL","features":[376]},{"name":"DIK_CAPSLOCK","features":[376]},{"name":"DIK_CIRCUMFLEX","features":[376]},{"name":"DIK_COLON","features":[376]},{"name":"DIK_COMMA","features":[376]},{"name":"DIK_CONVERT","features":[376]},{"name":"DIK_D","features":[376]},{"name":"DIK_DECIMAL","features":[376]},{"name":"DIK_DELETE","features":[376]},{"name":"DIK_DIVIDE","features":[376]},{"name":"DIK_DOWN","features":[376]},{"name":"DIK_DOWNARROW","features":[376]},{"name":"DIK_E","features":[376]},{"name":"DIK_END","features":[376]},{"name":"DIK_EQUALS","features":[376]},{"name":"DIK_ESCAPE","features":[376]},{"name":"DIK_F","features":[376]},{"name":"DIK_F1","features":[376]},{"name":"DIK_F10","features":[376]},{"name":"DIK_F11","features":[376]},{"name":"DIK_F12","features":[376]},{"name":"DIK_F13","features":[376]},{"name":"DIK_F14","features":[376]},{"name":"DIK_F15","features":[376]},{"name":"DIK_F2","features":[376]},{"name":"DIK_F3","features":[376]},{"name":"DIK_F4","features":[376]},{"name":"DIK_F5","features":[376]},{"name":"DIK_F6","features":[376]},{"name":"DIK_F7","features":[376]},{"name":"DIK_F8","features":[376]},{"name":"DIK_F9","features":[376]},{"name":"DIK_G","features":[376]},{"name":"DIK_GRAVE","features":[376]},{"name":"DIK_H","features":[376]},{"name":"DIK_HOME","features":[376]},{"name":"DIK_I","features":[376]},{"name":"DIK_INSERT","features":[376]},{"name":"DIK_J","features":[376]},{"name":"DIK_K","features":[376]},{"name":"DIK_KANA","features":[376]},{"name":"DIK_KANJI","features":[376]},{"name":"DIK_L","features":[376]},{"name":"DIK_LALT","features":[376]},{"name":"DIK_LBRACKET","features":[376]},{"name":"DIK_LCONTROL","features":[376]},{"name":"DIK_LEFT","features":[376]},{"name":"DIK_LEFTARROW","features":[376]},{"name":"DIK_LMENU","features":[376]},{"name":"DIK_LSHIFT","features":[376]},{"name":"DIK_LWIN","features":[376]},{"name":"DIK_M","features":[376]},{"name":"DIK_MAIL","features":[376]},{"name":"DIK_MEDIASELECT","features":[376]},{"name":"DIK_MEDIASTOP","features":[376]},{"name":"DIK_MINUS","features":[376]},{"name":"DIK_MULTIPLY","features":[376]},{"name":"DIK_MUTE","features":[376]},{"name":"DIK_MYCOMPUTER","features":[376]},{"name":"DIK_N","features":[376]},{"name":"DIK_NEXT","features":[376]},{"name":"DIK_NEXTTRACK","features":[376]},{"name":"DIK_NOCONVERT","features":[376]},{"name":"DIK_NUMLOCK","features":[376]},{"name":"DIK_NUMPAD0","features":[376]},{"name":"DIK_NUMPAD1","features":[376]},{"name":"DIK_NUMPAD2","features":[376]},{"name":"DIK_NUMPAD3","features":[376]},{"name":"DIK_NUMPAD4","features":[376]},{"name":"DIK_NUMPAD5","features":[376]},{"name":"DIK_NUMPAD6","features":[376]},{"name":"DIK_NUMPAD7","features":[376]},{"name":"DIK_NUMPAD8","features":[376]},{"name":"DIK_NUMPAD9","features":[376]},{"name":"DIK_NUMPADCOMMA","features":[376]},{"name":"DIK_NUMPADENTER","features":[376]},{"name":"DIK_NUMPADEQUALS","features":[376]},{"name":"DIK_NUMPADMINUS","features":[376]},{"name":"DIK_NUMPADPERIOD","features":[376]},{"name":"DIK_NUMPADPLUS","features":[376]},{"name":"DIK_NUMPADSLASH","features":[376]},{"name":"DIK_NUMPADSTAR","features":[376]},{"name":"DIK_O","features":[376]},{"name":"DIK_OEM_102","features":[376]},{"name":"DIK_P","features":[376]},{"name":"DIK_PAUSE","features":[376]},{"name":"DIK_PERIOD","features":[376]},{"name":"DIK_PGDN","features":[376]},{"name":"DIK_PGUP","features":[376]},{"name":"DIK_PLAYPAUSE","features":[376]},{"name":"DIK_POWER","features":[376]},{"name":"DIK_PREVTRACK","features":[376]},{"name":"DIK_PRIOR","features":[376]},{"name":"DIK_Q","features":[376]},{"name":"DIK_R","features":[376]},{"name":"DIK_RALT","features":[376]},{"name":"DIK_RBRACKET","features":[376]},{"name":"DIK_RCONTROL","features":[376]},{"name":"DIK_RETURN","features":[376]},{"name":"DIK_RIGHT","features":[376]},{"name":"DIK_RIGHTARROW","features":[376]},{"name":"DIK_RMENU","features":[376]},{"name":"DIK_RSHIFT","features":[376]},{"name":"DIK_RWIN","features":[376]},{"name":"DIK_S","features":[376]},{"name":"DIK_SCROLL","features":[376]},{"name":"DIK_SEMICOLON","features":[376]},{"name":"DIK_SLASH","features":[376]},{"name":"DIK_SLEEP","features":[376]},{"name":"DIK_SPACE","features":[376]},{"name":"DIK_STOP","features":[376]},{"name":"DIK_SUBTRACT","features":[376]},{"name":"DIK_SYSRQ","features":[376]},{"name":"DIK_T","features":[376]},{"name":"DIK_TAB","features":[376]},{"name":"DIK_U","features":[376]},{"name":"DIK_UNDERLINE","features":[376]},{"name":"DIK_UNLABELED","features":[376]},{"name":"DIK_UP","features":[376]},{"name":"DIK_UPARROW","features":[376]},{"name":"DIK_V","features":[376]},{"name":"DIK_VOLUMEDOWN","features":[376]},{"name":"DIK_VOLUMEUP","features":[376]},{"name":"DIK_W","features":[376]},{"name":"DIK_WAKE","features":[376]},{"name":"DIK_WEBBACK","features":[376]},{"name":"DIK_WEBFAVORITES","features":[376]},{"name":"DIK_WEBFORWARD","features":[376]},{"name":"DIK_WEBHOME","features":[376]},{"name":"DIK_WEBREFRESH","features":[376]},{"name":"DIK_WEBSEARCH","features":[376]},{"name":"DIK_WEBSTOP","features":[376]},{"name":"DIK_X","features":[376]},{"name":"DIK_Y","features":[376]},{"name":"DIK_YEN","features":[376]},{"name":"DIK_Z","features":[376]},{"name":"DIMOUSESTATE","features":[376]},{"name":"DIMOUSESTATE2","features":[376]},{"name":"DIMSGWP_DX8APPSTART","features":[376]},{"name":"DIMSGWP_DX8MAPPERAPPSTART","features":[376]},{"name":"DIMSGWP_NEWAPPSTART","features":[376]},{"name":"DIOBJECTATTRIBUTES","features":[376]},{"name":"DIOBJECTCALIBRATION","features":[376]},{"name":"DIOBJECTDATAFORMAT","features":[376]},{"name":"DIPERIODIC","features":[376]},{"name":"DIPH_BYID","features":[376]},{"name":"DIPH_BYOFFSET","features":[376]},{"name":"DIPH_BYUSAGE","features":[376]},{"name":"DIPH_DEVICE","features":[376]},{"name":"DIPOVCALIBRATION","features":[376]},{"name":"DIPOV_ANY_1","features":[376]},{"name":"DIPOV_ANY_2","features":[376]},{"name":"DIPOV_ANY_3","features":[376]},{"name":"DIPOV_ANY_4","features":[376]},{"name":"DIPROPAUTOCENTER_OFF","features":[376]},{"name":"DIPROPAUTOCENTER_ON","features":[376]},{"name":"DIPROPAXISMODE_ABS","features":[376]},{"name":"DIPROPAXISMODE_REL","features":[376]},{"name":"DIPROPCAL","features":[376]},{"name":"DIPROPCALIBRATIONMODE_COOKED","features":[376]},{"name":"DIPROPCALIBRATIONMODE_RAW","features":[376]},{"name":"DIPROPCALPOV","features":[376]},{"name":"DIPROPCPOINTS","features":[376]},{"name":"DIPROPDWORD","features":[376]},{"name":"DIPROPGUIDANDPATH","features":[376]},{"name":"DIPROPHEADER","features":[376]},{"name":"DIPROPPOINTER","features":[376]},{"name":"DIPROPRANGE","features":[376]},{"name":"DIPROPSTRING","features":[376]},{"name":"DIPROP_APPDATA","features":[376]},{"name":"DIPROP_AUTOCENTER","features":[376]},{"name":"DIPROP_AXISMODE","features":[376]},{"name":"DIPROP_BUFFERSIZE","features":[376]},{"name":"DIPROP_CALIBRATION","features":[376]},{"name":"DIPROP_CALIBRATIONMODE","features":[376]},{"name":"DIPROP_CPOINTS","features":[376]},{"name":"DIPROP_DEADZONE","features":[376]},{"name":"DIPROP_FFGAIN","features":[376]},{"name":"DIPROP_FFLOAD","features":[376]},{"name":"DIPROP_GETPORTDISPLAYNAME","features":[376]},{"name":"DIPROP_GRANULARITY","features":[376]},{"name":"DIPROP_GUIDANDPATH","features":[376]},{"name":"DIPROP_INSTANCENAME","features":[376]},{"name":"DIPROP_JOYSTICKID","features":[376]},{"name":"DIPROP_KEYNAME","features":[376]},{"name":"DIPROP_LOGICALRANGE","features":[376]},{"name":"DIPROP_PHYSICALRANGE","features":[376]},{"name":"DIPROP_PRODUCTNAME","features":[376]},{"name":"DIPROP_RANGE","features":[376]},{"name":"DIPROP_SATURATION","features":[376]},{"name":"DIPROP_SCANCODE","features":[376]},{"name":"DIPROP_TYPENAME","features":[376]},{"name":"DIPROP_USERNAME","features":[376]},{"name":"DIPROP_VIDPID","features":[376]},{"name":"DIRAMPFORCE","features":[376]},{"name":"DIRECTINPUT_HEADER_VERSION","features":[376]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRING","features":[376]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGA","features":[376]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGW","features":[376]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPP","features":[376]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPA","features":[376]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPW","features":[376]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPP","features":[376]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA","features":[376]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAG","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGA","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGW","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_ID","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_IDA","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_IDW","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTART","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTA","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTW","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPER","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERA","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERW","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_NAME","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEA","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEW","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSION","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONA","features":[376]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONW","features":[376]},{"name":"DIRECTINPUT_VERSION","features":[376]},{"name":"DISCL_BACKGROUND","features":[376]},{"name":"DISCL_EXCLUSIVE","features":[376]},{"name":"DISCL_FOREGROUND","features":[376]},{"name":"DISCL_NONEXCLUSIVE","features":[376]},{"name":"DISCL_NOWINKEY","features":[376]},{"name":"DISDD_CONTINUE","features":[376]},{"name":"DISFFC_CONTINUE","features":[376]},{"name":"DISFFC_PAUSE","features":[376]},{"name":"DISFFC_RESET","features":[376]},{"name":"DISFFC_SETACTUATORSOFF","features":[376]},{"name":"DISFFC_SETACTUATORSON","features":[376]},{"name":"DISFFC_STOPALL","features":[376]},{"name":"DITC_CALLOUT","features":[376]},{"name":"DITC_CLSIDCONFIG","features":[376]},{"name":"DITC_DISPLAYNAME","features":[376]},{"name":"DITC_FLAGS1","features":[376]},{"name":"DITC_FLAGS2","features":[376]},{"name":"DITC_HARDWAREID","features":[376]},{"name":"DITC_MAPFILE","features":[376]},{"name":"DITC_REGHWSETTINGS","features":[376]},{"name":"DIVIRTUAL_ARCADE_PLATFORM","features":[376]},{"name":"DIVIRTUAL_ARCADE_SIDE2SIDE","features":[376]},{"name":"DIVIRTUAL_BROWSER_CONTROL","features":[376]},{"name":"DIVIRTUAL_CAD_2DCONTROL","features":[376]},{"name":"DIVIRTUAL_CAD_3DCONTROL","features":[376]},{"name":"DIVIRTUAL_CAD_FLYBY","features":[376]},{"name":"DIVIRTUAL_CAD_MODEL","features":[376]},{"name":"DIVIRTUAL_DRIVING_COMBAT","features":[376]},{"name":"DIVIRTUAL_DRIVING_MECHA","features":[376]},{"name":"DIVIRTUAL_DRIVING_RACE","features":[376]},{"name":"DIVIRTUAL_DRIVING_TANK","features":[376]},{"name":"DIVIRTUAL_FIGHTING_FPS","features":[376]},{"name":"DIVIRTUAL_FIGHTING_HAND2HAND","features":[376]},{"name":"DIVIRTUAL_FIGHTING_THIRDPERSON","features":[376]},{"name":"DIVIRTUAL_FLYING_CIVILIAN","features":[376]},{"name":"DIVIRTUAL_FLYING_HELICOPTER","features":[376]},{"name":"DIVIRTUAL_FLYING_MILITARY","features":[376]},{"name":"DIVIRTUAL_REMOTE_CONTROL","features":[376]},{"name":"DIVIRTUAL_SPACESIM","features":[376]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_BAT","features":[376]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_FIELD","features":[376]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_PITCH","features":[376]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_DEFENSE","features":[376]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_OFFENSE","features":[376]},{"name":"DIVIRTUAL_SPORTS_BIKING_MOUNTAIN","features":[376]},{"name":"DIVIRTUAL_SPORTS_FISHING","features":[376]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_DEFENSE","features":[376]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_FIELD","features":[376]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_OFFENSE","features":[376]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_QBCK","features":[376]},{"name":"DIVIRTUAL_SPORTS_GOLF","features":[376]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_DEFENSE","features":[376]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_GOALIE","features":[376]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_OFFENSE","features":[376]},{"name":"DIVIRTUAL_SPORTS_HUNTING","features":[376]},{"name":"DIVIRTUAL_SPORTS_RACQUET","features":[376]},{"name":"DIVIRTUAL_SPORTS_SKIING","features":[376]},{"name":"DIVIRTUAL_SPORTS_SOCCER_DEFENSE","features":[376]},{"name":"DIVIRTUAL_SPORTS_SOCCER_OFFENSE","features":[376]},{"name":"DIVIRTUAL_STRATEGY_ROLEPLAYING","features":[376]},{"name":"DIVIRTUAL_STRATEGY_TURN","features":[376]},{"name":"DIVOICE_ALL","features":[376]},{"name":"DIVOICE_CHANNEL1","features":[376]},{"name":"DIVOICE_CHANNEL2","features":[376]},{"name":"DIVOICE_CHANNEL3","features":[376]},{"name":"DIVOICE_CHANNEL4","features":[376]},{"name":"DIVOICE_CHANNEL5","features":[376]},{"name":"DIVOICE_CHANNEL6","features":[376]},{"name":"DIVOICE_CHANNEL7","features":[376]},{"name":"DIVOICE_CHANNEL8","features":[376]},{"name":"DIVOICE_PLAYBACKMUTE","features":[376]},{"name":"DIVOICE_RECORDMUTE","features":[376]},{"name":"DIVOICE_TEAM","features":[376]},{"name":"DIVOICE_TRANSMIT","features":[376]},{"name":"DIVOICE_VOICECOMMAND","features":[376]},{"name":"DI_BUFFEROVERFLOW","features":[376]},{"name":"DI_DEGREES","features":[376]},{"name":"DI_DOWNLOADSKIPPED","features":[376]},{"name":"DI_EFFECTRESTARTED","features":[376]},{"name":"DI_FFNOMINALMAX","features":[376]},{"name":"DI_NOEFFECT","features":[376]},{"name":"DI_NOTATTACHED","features":[376]},{"name":"DI_OK","features":[376]},{"name":"DI_POLLEDDEVICE","features":[376]},{"name":"DI_PROPNOEFFECT","features":[376]},{"name":"DI_SECONDS","features":[376]},{"name":"DI_SETTINGSNOTSAVED","features":[376]},{"name":"DI_TRUNCATED","features":[376]},{"name":"DI_TRUNCATEDANDRESTARTED","features":[376]},{"name":"DI_WRITEPROTECT","features":[376]},{"name":"DirectInput8Create","features":[376,303]},{"name":"GPIOBUTTONS_BUTTON_TYPE","features":[376]},{"name":"GPIO_BUTTON_BACK","features":[376]},{"name":"GPIO_BUTTON_CAMERA_FOCUS","features":[376]},{"name":"GPIO_BUTTON_CAMERA_LENS","features":[376]},{"name":"GPIO_BUTTON_CAMERA_SHUTTER","features":[376]},{"name":"GPIO_BUTTON_COUNT","features":[376]},{"name":"GPIO_BUTTON_COUNT_MIN","features":[376]},{"name":"GPIO_BUTTON_HEADSET","features":[376]},{"name":"GPIO_BUTTON_HWKB_DEPLOY","features":[376]},{"name":"GPIO_BUTTON_OEM_CUSTOM","features":[376]},{"name":"GPIO_BUTTON_OEM_CUSTOM2","features":[376]},{"name":"GPIO_BUTTON_OEM_CUSTOM3","features":[376]},{"name":"GPIO_BUTTON_POWER","features":[376]},{"name":"GPIO_BUTTON_RINGER_TOGGLE","features":[376]},{"name":"GPIO_BUTTON_ROTATION_LOCK","features":[376]},{"name":"GPIO_BUTTON_SEARCH","features":[376]},{"name":"GPIO_BUTTON_VOLUME_DOWN","features":[376]},{"name":"GPIO_BUTTON_VOLUME_UP","features":[376]},{"name":"GPIO_BUTTON_WINDOWS","features":[376]},{"name":"GUID_Button","features":[376]},{"name":"GUID_ConstantForce","features":[376]},{"name":"GUID_CustomForce","features":[376]},{"name":"GUID_DEVINTERFACE_HID","features":[376]},{"name":"GUID_DEVINTERFACE_KEYBOARD","features":[376]},{"name":"GUID_DEVINTERFACE_MOUSE","features":[376]},{"name":"GUID_Damper","features":[376]},{"name":"GUID_Friction","features":[376]},{"name":"GUID_HIDClass","features":[376]},{"name":"GUID_HID_INTERFACE_HIDPARSE","features":[376]},{"name":"GUID_HID_INTERFACE_NOTIFY","features":[376]},{"name":"GUID_Inertia","features":[376]},{"name":"GUID_Joystick","features":[376]},{"name":"GUID_Key","features":[376]},{"name":"GUID_KeyboardClass","features":[376]},{"name":"GUID_MediaClass","features":[376]},{"name":"GUID_MouseClass","features":[376]},{"name":"GUID_POV","features":[376]},{"name":"GUID_RampForce","features":[376]},{"name":"GUID_RxAxis","features":[376]},{"name":"GUID_RyAxis","features":[376]},{"name":"GUID_RzAxis","features":[376]},{"name":"GUID_SawtoothDown","features":[376]},{"name":"GUID_SawtoothUp","features":[376]},{"name":"GUID_Sine","features":[376]},{"name":"GUID_Slider","features":[376]},{"name":"GUID_Spring","features":[376]},{"name":"GUID_Square","features":[376]},{"name":"GUID_SysKeyboard","features":[376]},{"name":"GUID_SysKeyboardEm","features":[376]},{"name":"GUID_SysKeyboardEm2","features":[376]},{"name":"GUID_SysMouse","features":[376]},{"name":"GUID_SysMouseEm","features":[376]},{"name":"GUID_SysMouseEm2","features":[376]},{"name":"GUID_Triangle","features":[376]},{"name":"GUID_Unknown","features":[376]},{"name":"GUID_XAxis","features":[376]},{"name":"GUID_YAxis","features":[376]},{"name":"GUID_ZAxis","features":[376]},{"name":"HIDD_ATTRIBUTES","features":[376]},{"name":"HIDD_CONFIGURATION","features":[376]},{"name":"HIDP_BUTTON_ARRAY_DATA","features":[376,303]},{"name":"HIDP_BUTTON_CAPS","features":[376,303]},{"name":"HIDP_CAPS","features":[376]},{"name":"HIDP_DATA","features":[376,303]},{"name":"HIDP_EXTENDED_ATTRIBUTES","features":[376]},{"name":"HIDP_KEYBOARD_DIRECTION","features":[376]},{"name":"HIDP_KEYBOARD_MODIFIER_STATE","features":[376]},{"name":"HIDP_LINK_COLLECTION_NODE","features":[376]},{"name":"HIDP_REPORT_TYPE","features":[376]},{"name":"HIDP_STATUS_BAD_LOG_PHY_VALUES","features":[376,303]},{"name":"HIDP_STATUS_BUFFER_TOO_SMALL","features":[376,303]},{"name":"HIDP_STATUS_BUTTON_NOT_PRESSED","features":[376,303]},{"name":"HIDP_STATUS_DATA_INDEX_NOT_FOUND","features":[376,303]},{"name":"HIDP_STATUS_DATA_INDEX_OUT_OF_RANGE","features":[376,303]},{"name":"HIDP_STATUS_I8042_TRANS_UNKNOWN","features":[376,303]},{"name":"HIDP_STATUS_I8242_TRANS_UNKNOWN","features":[376,303]},{"name":"HIDP_STATUS_INCOMPATIBLE_REPORT_ID","features":[376,303]},{"name":"HIDP_STATUS_INTERNAL_ERROR","features":[376,303]},{"name":"HIDP_STATUS_INVALID_PREPARSED_DATA","features":[376,303]},{"name":"HIDP_STATUS_INVALID_REPORT_LENGTH","features":[376,303]},{"name":"HIDP_STATUS_INVALID_REPORT_TYPE","features":[376,303]},{"name":"HIDP_STATUS_IS_VALUE_ARRAY","features":[376,303]},{"name":"HIDP_STATUS_NOT_BUTTON_ARRAY","features":[376,303]},{"name":"HIDP_STATUS_NOT_IMPLEMENTED","features":[376,303]},{"name":"HIDP_STATUS_NOT_VALUE_ARRAY","features":[376,303]},{"name":"HIDP_STATUS_NULL","features":[376,303]},{"name":"HIDP_STATUS_REPORT_DOES_NOT_EXIST","features":[376,303]},{"name":"HIDP_STATUS_SUCCESS","features":[376,303]},{"name":"HIDP_STATUS_USAGE_NOT_FOUND","features":[376,303]},{"name":"HIDP_STATUS_VALUE_OUT_OF_RANGE","features":[376,303]},{"name":"HIDP_UNKNOWN_TOKEN","features":[376]},{"name":"HIDP_VALUE_CAPS","features":[376,303]},{"name":"HID_COLLECTION_INFORMATION","features":[376,303]},{"name":"HID_DRIVER_CONFIG","features":[376]},{"name":"HID_REVISION","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_14_SEGMENT_DIRECT_MAP","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_7_SEGMENT_DIRECT_MAP","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ALPHANUMERIC_DISPLAY","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ASCII_CHARACTER_SET","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_DATA","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_READBACK","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAPPED_DISPLAY","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_X","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_Y","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BIT_DEPTH_FORMAT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_DATA","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X1","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X2","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y1","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y2","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_ATTRIBUTE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_BLINK","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_ENHANCE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_UNDERLINE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_HEIGHT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_HORIZONTAL","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_VERTICAL","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_WIDTH","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CLEAR_DISPLAY","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMN","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMNS","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_BLINK","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_ENABLE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_MODE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_PIXEL_POSITIONING","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_POSITION_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DATA_READ_BACK","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ATTRIBUTES_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_BRIGHTNESS","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTRAST","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTROL_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_DATA","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ENABLE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ORIENTATION","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_STATUS","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_FONT_DATA_CANNOT_BE_READ","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_NOT_A_LOADABLE_CHARACTER","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_14_SEGMENT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_7_SEGMENT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_DATA","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_READ_BACK","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_HORIZONTAL_SCROLL","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_OFFSET","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_SIZE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ROW","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_ROWS","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_DELAY","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_ENABLE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_ID","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET1","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET2","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_REPORT","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_SIDE","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_NOT_READY","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_READY","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_UNICODE_CHAR_SET","features":[376]},{"name":"HID_USAGE_ALPHANUMERIC_VERTICAL_SCROLL","features":[376]},{"name":"HID_USAGE_CAMERA_AUTO_FOCUS","features":[376]},{"name":"HID_USAGE_CAMERA_SHUTTER","features":[376]},{"name":"HID_USAGE_CONSUMERCTRL","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_BACK","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_BOOKMARKS","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_FORWARD","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_GOTO","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_HOME","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_NEXT","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_PAN","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_PREVIOUS","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_REFRESH","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_SEARCH","features":[376]},{"name":"HID_USAGE_CONSUMER_AC_STOP","features":[376]},{"name":"HID_USAGE_CONSUMER_AL_BROWSER","features":[376]},{"name":"HID_USAGE_CONSUMER_AL_CALCULATOR","features":[376]},{"name":"HID_USAGE_CONSUMER_AL_CONFIGURATION","features":[376]},{"name":"HID_USAGE_CONSUMER_AL_EMAIL","features":[376]},{"name":"HID_USAGE_CONSUMER_AL_SEARCH","features":[376]},{"name":"HID_USAGE_CONSUMER_BALANCE","features":[376]},{"name":"HID_USAGE_CONSUMER_BASS","features":[376]},{"name":"HID_USAGE_CONSUMER_BASS_BOOST","features":[376]},{"name":"HID_USAGE_CONSUMER_BASS_DECREMENT","features":[376]},{"name":"HID_USAGE_CONSUMER_BASS_INCREMENT","features":[376]},{"name":"HID_USAGE_CONSUMER_CHANNEL_DECREMENT","features":[376]},{"name":"HID_USAGE_CONSUMER_CHANNEL_INCREMENT","features":[376]},{"name":"HID_USAGE_CONSUMER_EXTENDED_KEYBOARD_ATTRIBUTES_COLLECTION","features":[376]},{"name":"HID_USAGE_CONSUMER_FAST_FORWARD","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_OPEN_GAMEBAR","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_RECORD_CLIP","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_SCREENSHOT","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_BROADCAST","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_CAMERA","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_INDICATOR","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_MICROPHONE","features":[376]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_RECORD","features":[376]},{"name":"HID_USAGE_CONSUMER_IMPLEMENTED_KEYBOARD_INPUT_ASSIST_CONTROLS","features":[376]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_FORM_FACTOR","features":[376]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_IETF_LANGUAGE_TAG_INDEX","features":[376]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_KEY_TYPE","features":[376]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_PHYSICAL_LAYOUT","features":[376]},{"name":"HID_USAGE_CONSUMER_LOUDNESS","features":[376]},{"name":"HID_USAGE_CONSUMER_MPX","features":[376]},{"name":"HID_USAGE_CONSUMER_MUTE","features":[376]},{"name":"HID_USAGE_CONSUMER_PAUSE","features":[376]},{"name":"HID_USAGE_CONSUMER_PLAY","features":[376]},{"name":"HID_USAGE_CONSUMER_PLAY_PAUSE","features":[376]},{"name":"HID_USAGE_CONSUMER_RECORD","features":[376]},{"name":"HID_USAGE_CONSUMER_REWIND","features":[376]},{"name":"HID_USAGE_CONSUMER_SCAN_NEXT_TRACK","features":[376]},{"name":"HID_USAGE_CONSUMER_SCAN_PREV_TRACK","features":[376]},{"name":"HID_USAGE_CONSUMER_STOP","features":[376]},{"name":"HID_USAGE_CONSUMER_SURROUND_MODE","features":[376]},{"name":"HID_USAGE_CONSUMER_TREBLE","features":[376]},{"name":"HID_USAGE_CONSUMER_TREBLE_DECREMENT","features":[376]},{"name":"HID_USAGE_CONSUMER_TREBLE_INCREMENT","features":[376]},{"name":"HID_USAGE_CONSUMER_VENDOR_SPECIFIC_KEYBOARD_PHYSICAL_LAYOUT","features":[376]},{"name":"HID_USAGE_CONSUMER_VOLUME","features":[376]},{"name":"HID_USAGE_CONSUMER_VOLUME_DECREMENT","features":[376]},{"name":"HID_USAGE_CONSUMER_VOLUME_INCREMENT","features":[376]},{"name":"HID_USAGE_DIGITIZER_3D_DIGITIZER","features":[376]},{"name":"HID_USAGE_DIGITIZER_ALTITUDE","features":[376]},{"name":"HID_USAGE_DIGITIZER_ARMATURE","features":[376]},{"name":"HID_USAGE_DIGITIZER_ARTICULATED_ARM","features":[376]},{"name":"HID_USAGE_DIGITIZER_AZIMUTH","features":[376]},{"name":"HID_USAGE_DIGITIZER_BARREL_PRESSURE","features":[376]},{"name":"HID_USAGE_DIGITIZER_BARREL_SWITCH","features":[376]},{"name":"HID_USAGE_DIGITIZER_BATTERY_STRENGTH","features":[376]},{"name":"HID_USAGE_DIGITIZER_COORD_MEASURING","features":[376]},{"name":"HID_USAGE_DIGITIZER_DATA_VALID","features":[376]},{"name":"HID_USAGE_DIGITIZER_DIGITIZER","features":[376]},{"name":"HID_USAGE_DIGITIZER_ERASER","features":[376]},{"name":"HID_USAGE_DIGITIZER_FINGER","features":[376]},{"name":"HID_USAGE_DIGITIZER_FREE_SPACE_WAND","features":[376]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP","features":[376]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_FRAME_DATA","features":[376]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VENDOR_ID","features":[376]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VERSION","features":[376]},{"name":"HID_USAGE_DIGITIZER_INVERT","features":[376]},{"name":"HID_USAGE_DIGITIZER_IN_RANGE","features":[376]},{"name":"HID_USAGE_DIGITIZER_LIGHT_PEN","features":[376]},{"name":"HID_USAGE_DIGITIZER_MULTI_POINT","features":[376]},{"name":"HID_USAGE_DIGITIZER_PEN","features":[376]},{"name":"HID_USAGE_DIGITIZER_PROG_CHANGE_KEYS","features":[376]},{"name":"HID_USAGE_DIGITIZER_PUCK","features":[376]},{"name":"HID_USAGE_DIGITIZER_QUALITY","features":[376]},{"name":"HID_USAGE_DIGITIZER_SECONDARY_TIP_SWITCH","features":[376]},{"name":"HID_USAGE_DIGITIZER_STEREO_PLOTTER","features":[376]},{"name":"HID_USAGE_DIGITIZER_STYLUS","features":[376]},{"name":"HID_USAGE_DIGITIZER_TABLET_FUNC_KEYS","features":[376]},{"name":"HID_USAGE_DIGITIZER_TABLET_PICK","features":[376]},{"name":"HID_USAGE_DIGITIZER_TAP","features":[376]},{"name":"HID_USAGE_DIGITIZER_TIP_PRESSURE","features":[376]},{"name":"HID_USAGE_DIGITIZER_TIP_SWITCH","features":[376]},{"name":"HID_USAGE_DIGITIZER_TOUCH","features":[376]},{"name":"HID_USAGE_DIGITIZER_TOUCH_PAD","features":[376]},{"name":"HID_USAGE_DIGITIZER_TOUCH_SCREEN","features":[376]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_CONNECTED","features":[376]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_INDEX","features":[376]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_PRODUCT","features":[376]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL","features":[376]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL_PART2","features":[376]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_VENDOR","features":[376]},{"name":"HID_USAGE_DIGITIZER_TWIST","features":[376]},{"name":"HID_USAGE_DIGITIZER_UNTOUCH","features":[376]},{"name":"HID_USAGE_DIGITIZER_WHITE_BOARD","features":[376]},{"name":"HID_USAGE_DIGITIZER_X_TILT","features":[376]},{"name":"HID_USAGE_DIGITIZER_Y_TILT","features":[376]},{"name":"HID_USAGE_GAME_3D_GAME_CONTROLLER","features":[376]},{"name":"HID_USAGE_GAME_BUMP","features":[376]},{"name":"HID_USAGE_GAME_FLIPPER","features":[376]},{"name":"HID_USAGE_GAME_GAMEPAD_FIRE_JUMP","features":[376]},{"name":"HID_USAGE_GAME_GAMEPAD_TRIGGER","features":[376]},{"name":"HID_USAGE_GAME_GUN_AUTOMATIC","features":[376]},{"name":"HID_USAGE_GAME_GUN_BOLT","features":[376]},{"name":"HID_USAGE_GAME_GUN_BURST","features":[376]},{"name":"HID_USAGE_GAME_GUN_CLIP","features":[376]},{"name":"HID_USAGE_GAME_GUN_DEVICE","features":[376]},{"name":"HID_USAGE_GAME_GUN_SAFETY","features":[376]},{"name":"HID_USAGE_GAME_GUN_SELECTOR","features":[376]},{"name":"HID_USAGE_GAME_GUN_SINGLE_SHOT","features":[376]},{"name":"HID_USAGE_GAME_LEAN_FORWARD_BACK","features":[376]},{"name":"HID_USAGE_GAME_LEAN_RIGHT_LEFT","features":[376]},{"name":"HID_USAGE_GAME_MOVE_FORWARD_BACK","features":[376]},{"name":"HID_USAGE_GAME_MOVE_RIGHT_LEFT","features":[376]},{"name":"HID_USAGE_GAME_MOVE_UP_DOWN","features":[376]},{"name":"HID_USAGE_GAME_NEW_GAME","features":[376]},{"name":"HID_USAGE_GAME_PINBALL_DEVICE","features":[376]},{"name":"HID_USAGE_GAME_PITCH_FORWARD_BACK","features":[376]},{"name":"HID_USAGE_GAME_PLAYER","features":[376]},{"name":"HID_USAGE_GAME_POINT_OF_VIEW","features":[376]},{"name":"HID_USAGE_GAME_POV_HEIGHT","features":[376]},{"name":"HID_USAGE_GAME_ROLL_RIGHT_LEFT","features":[376]},{"name":"HID_USAGE_GAME_SECONDARY_FLIPPER","features":[376]},{"name":"HID_USAGE_GAME_SHOOT_BALL","features":[376]},{"name":"HID_USAGE_GAME_TURN_RIGHT_LEFT","features":[376]},{"name":"HID_USAGE_GENERIC_BYTE_COUNT","features":[376]},{"name":"HID_USAGE_GENERIC_CONTROL_ENABLE","features":[376]},{"name":"HID_USAGE_GENERIC_COUNTED_BUFFER","features":[376]},{"name":"HID_USAGE_GENERIC_DEVICE_BATTERY_STRENGTH","features":[376]},{"name":"HID_USAGE_GENERIC_DEVICE_DISCOVER_WIRELESS_CONTROL","features":[376]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ENTERED","features":[376]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ERASED","features":[376]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CLEARED","features":[376]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_CHANNEL","features":[376]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_ID","features":[376]},{"name":"HID_USAGE_GENERIC_DIAL","features":[376]},{"name":"HID_USAGE_GENERIC_DPAD_DOWN","features":[376]},{"name":"HID_USAGE_GENERIC_DPAD_LEFT","features":[376]},{"name":"HID_USAGE_GENERIC_DPAD_RIGHT","features":[376]},{"name":"HID_USAGE_GENERIC_DPAD_UP","features":[376]},{"name":"HID_USAGE_GENERIC_FEATURE_NOTIFICATION","features":[376]},{"name":"HID_USAGE_GENERIC_GAMEPAD","features":[376]},{"name":"HID_USAGE_GENERIC_HATSWITCH","features":[376]},{"name":"HID_USAGE_GENERIC_INTERACTIVE_CONTROL","features":[376]},{"name":"HID_USAGE_GENERIC_JOYSTICK","features":[376]},{"name":"HID_USAGE_GENERIC_KEYBOARD","features":[376]},{"name":"HID_USAGE_GENERIC_KEYPAD","features":[376]},{"name":"HID_USAGE_GENERIC_MOTION_WAKEUP","features":[376]},{"name":"HID_USAGE_GENERIC_MOUSE","features":[376]},{"name":"HID_USAGE_GENERIC_MULTI_AXIS_CONTROLLER","features":[376]},{"name":"HID_USAGE_GENERIC_POINTER","features":[376]},{"name":"HID_USAGE_GENERIC_PORTABLE_DEVICE_CONTROL","features":[376]},{"name":"HID_USAGE_GENERIC_RESOLUTION_MULTIPLIER","features":[376]},{"name":"HID_USAGE_GENERIC_RX","features":[376]},{"name":"HID_USAGE_GENERIC_RY","features":[376]},{"name":"HID_USAGE_GENERIC_RZ","features":[376]},{"name":"HID_USAGE_GENERIC_SELECT","features":[376]},{"name":"HID_USAGE_GENERIC_SLIDER","features":[376]},{"name":"HID_USAGE_GENERIC_START","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_BREAK","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_DBG_BREAK","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_MENU","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_COLD_RESTART","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_CONTEXT_MENU","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISMISS_NOTIFICATION","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_AUTOSCALE","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_BOTH","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_DUAL","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_EXTERNAL","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INTERNAL","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INVERT","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_SWAP","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_TOGGLE","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_DOCK","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK_INDICATOR","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_HELP_MENU","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_HIBERNATE","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MAIN_MENU","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_DOWN","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_EXIT","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_LEFT","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_RIGHT","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_SELECT","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_UP","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_MUTE","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_POWER","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_SETUP","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_SLEEP","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_BREAK","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_DBG_BREAK","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_UNDOCK","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_WAKE","features":[376]},{"name":"HID_USAGE_GENERIC_SYSCTL_WARM_RESTART","features":[376]},{"name":"HID_USAGE_GENERIC_SYSTEM_CTL","features":[376]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_BUTTON","features":[376]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_SLIDER_SWITCH","features":[376]},{"name":"HID_USAGE_GENERIC_TABLET_PC_SYSTEM_CTL","features":[376]},{"name":"HID_USAGE_GENERIC_VBRX","features":[376]},{"name":"HID_USAGE_GENERIC_VBRY","features":[376]},{"name":"HID_USAGE_GENERIC_VBRZ","features":[376]},{"name":"HID_USAGE_GENERIC_VNO","features":[376]},{"name":"HID_USAGE_GENERIC_VX","features":[376]},{"name":"HID_USAGE_GENERIC_VY","features":[376]},{"name":"HID_USAGE_GENERIC_VZ","features":[376]},{"name":"HID_USAGE_GENERIC_WHEEL","features":[376]},{"name":"HID_USAGE_GENERIC_X","features":[376]},{"name":"HID_USAGE_GENERIC_Y","features":[376]},{"name":"HID_USAGE_GENERIC_Z","features":[376]},{"name":"HID_USAGE_HAPTICS_AUTO_ASSOCIATED_CONTROL","features":[376]},{"name":"HID_USAGE_HAPTICS_AUTO_TRIGGER","features":[376]},{"name":"HID_USAGE_HAPTICS_DURATION_LIST","features":[376]},{"name":"HID_USAGE_HAPTICS_INTENSITY","features":[376]},{"name":"HID_USAGE_HAPTICS_MANUAL_TRIGGER","features":[376]},{"name":"HID_USAGE_HAPTICS_REPEAT_COUNT","features":[376]},{"name":"HID_USAGE_HAPTICS_RETRIGGER_PERIOD","features":[376]},{"name":"HID_USAGE_HAPTICS_SIMPLE_CONTROLLER","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BEGIN","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BUZZ","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CLICK","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CUTOFF_TIME","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_END","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_LIST","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_NULL","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_PRESS","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RELEASE","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RUMBLE","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_STOP","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_BEGIN","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_END","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_ID","features":[376]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_PAGE","features":[376]},{"name":"HID_USAGE_KEYBOARD_CAPS_LOCK","features":[376]},{"name":"HID_USAGE_KEYBOARD_DELETE","features":[376]},{"name":"HID_USAGE_KEYBOARD_DELETE_FORWARD","features":[376]},{"name":"HID_USAGE_KEYBOARD_ESCAPE","features":[376]},{"name":"HID_USAGE_KEYBOARD_F1","features":[376]},{"name":"HID_USAGE_KEYBOARD_F10","features":[376]},{"name":"HID_USAGE_KEYBOARD_F11","features":[376]},{"name":"HID_USAGE_KEYBOARD_F12","features":[376]},{"name":"HID_USAGE_KEYBOARD_F13","features":[376]},{"name":"HID_USAGE_KEYBOARD_F14","features":[376]},{"name":"HID_USAGE_KEYBOARD_F15","features":[376]},{"name":"HID_USAGE_KEYBOARD_F16","features":[376]},{"name":"HID_USAGE_KEYBOARD_F17","features":[376]},{"name":"HID_USAGE_KEYBOARD_F18","features":[376]},{"name":"HID_USAGE_KEYBOARD_F19","features":[376]},{"name":"HID_USAGE_KEYBOARD_F2","features":[376]},{"name":"HID_USAGE_KEYBOARD_F20","features":[376]},{"name":"HID_USAGE_KEYBOARD_F21","features":[376]},{"name":"HID_USAGE_KEYBOARD_F22","features":[376]},{"name":"HID_USAGE_KEYBOARD_F23","features":[376]},{"name":"HID_USAGE_KEYBOARD_F24","features":[376]},{"name":"HID_USAGE_KEYBOARD_F3","features":[376]},{"name":"HID_USAGE_KEYBOARD_F4","features":[376]},{"name":"HID_USAGE_KEYBOARD_F5","features":[376]},{"name":"HID_USAGE_KEYBOARD_F6","features":[376]},{"name":"HID_USAGE_KEYBOARD_F7","features":[376]},{"name":"HID_USAGE_KEYBOARD_F8","features":[376]},{"name":"HID_USAGE_KEYBOARD_F9","features":[376]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_0_AND_INSERT","features":[376]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_1_AND_END","features":[376]},{"name":"HID_USAGE_KEYBOARD_LALT","features":[376]},{"name":"HID_USAGE_KEYBOARD_LCTRL","features":[376]},{"name":"HID_USAGE_KEYBOARD_LGUI","features":[376]},{"name":"HID_USAGE_KEYBOARD_LSHFT","features":[376]},{"name":"HID_USAGE_KEYBOARD_NOEVENT","features":[376]},{"name":"HID_USAGE_KEYBOARD_NUM_LOCK","features":[376]},{"name":"HID_USAGE_KEYBOARD_ONE","features":[376]},{"name":"HID_USAGE_KEYBOARD_POSTFAIL","features":[376]},{"name":"HID_USAGE_KEYBOARD_PRINT_SCREEN","features":[376]},{"name":"HID_USAGE_KEYBOARD_RALT","features":[376]},{"name":"HID_USAGE_KEYBOARD_RCTRL","features":[376]},{"name":"HID_USAGE_KEYBOARD_RETURN","features":[376]},{"name":"HID_USAGE_KEYBOARD_RGUI","features":[376]},{"name":"HID_USAGE_KEYBOARD_ROLLOVER","features":[376]},{"name":"HID_USAGE_KEYBOARD_RSHFT","features":[376]},{"name":"HID_USAGE_KEYBOARD_SCROLL_LOCK","features":[376]},{"name":"HID_USAGE_KEYBOARD_UNDEFINED","features":[376]},{"name":"HID_USAGE_KEYBOARD_ZERO","features":[376]},{"name":"HID_USAGE_KEYBOARD_aA","features":[376]},{"name":"HID_USAGE_KEYBOARD_zZ","features":[376]},{"name":"HID_USAGE_LAMPARRAY","features":[376]},{"name":"HID_USAGE_LAMPARRAY_ATTRBIUTES_REPORT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_AUTONOMOUS_MODE","features":[376]},{"name":"HID_USAGE_LAMPARRAY_BLUE_LEVEL_COUNT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_DEPTH_IN_MICROMETERS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_HEIGHT_IN_MICROMETERS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_WIDTH_IN_MICROMETERS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_CONTROL_REPORT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_GREEN_LEVEL_COUNT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_INPUT_BINDING","features":[376]},{"name":"HID_USAGE_LAMPARRAY_INTENSITY_LEVEL_COUNT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_IS_PROGRAMMABLE","features":[376]},{"name":"HID_USAGE_LAMPARRAY_KIND","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_REQUEST_REPORT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_RESPONSE_REPORT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_BLUE_UPDATE_CHANNEL","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_COUNT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_GREEN_UPDATE_CHANNEL","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_END","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_START","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_INTENSITY_UPDATE_CHANNEL","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_MULTI_UPDATE_REPORT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_PURPOSES","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RANGE_UPDATE_REPORT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RED_UPDATE_CHANNEL","features":[376]},{"name":"HID_USAGE_LAMPARRAY_LAMP_UPDATE_FLAGS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_MIN_UPDATE_INTERVAL_IN_MICROSECONDS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_POSITION_X_IN_MICROMETERS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Y_IN_MICROMETERS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Z_IN_MICROMETERS","features":[376]},{"name":"HID_USAGE_LAMPARRAY_RED_LEVEL_COUNT","features":[376]},{"name":"HID_USAGE_LAMPARRAY_UPDATE_LATENCY_IN_MICROSECONDS","features":[376]},{"name":"HID_USAGE_LED_AMBER","features":[376]},{"name":"HID_USAGE_LED_BATTERY_LOW","features":[376]},{"name":"HID_USAGE_LED_BATTERY_OK","features":[376]},{"name":"HID_USAGE_LED_BATTERY_OPERATION","features":[376]},{"name":"HID_USAGE_LED_BUSY","features":[376]},{"name":"HID_USAGE_LED_CALL_PICKUP","features":[376]},{"name":"HID_USAGE_LED_CAMERA_OFF","features":[376]},{"name":"HID_USAGE_LED_CAMERA_ON","features":[376]},{"name":"HID_USAGE_LED_CAPS_LOCK","features":[376]},{"name":"HID_USAGE_LED_CAV","features":[376]},{"name":"HID_USAGE_LED_CLV","features":[376]},{"name":"HID_USAGE_LED_COMPOSE","features":[376]},{"name":"HID_USAGE_LED_CONFERENCE","features":[376]},{"name":"HID_USAGE_LED_COVERAGE","features":[376]},{"name":"HID_USAGE_LED_DATA_MODE","features":[376]},{"name":"HID_USAGE_LED_DO_NOT_DISTURB","features":[376]},{"name":"HID_USAGE_LED_EQUALIZER_ENABLE","features":[376]},{"name":"HID_USAGE_LED_ERROR","features":[376]},{"name":"HID_USAGE_LED_EXTERNAL_POWER","features":[376]},{"name":"HID_USAGE_LED_FAST_BLINK_OFF_TIME","features":[376]},{"name":"HID_USAGE_LED_FAST_BLINK_ON_TIME","features":[376]},{"name":"HID_USAGE_LED_FAST_FORWARD","features":[376]},{"name":"HID_USAGE_LED_FLASH_ON_TIME","features":[376]},{"name":"HID_USAGE_LED_FORWARD","features":[376]},{"name":"HID_USAGE_LED_GENERIC_INDICATOR","features":[376]},{"name":"HID_USAGE_LED_GREEN","features":[376]},{"name":"HID_USAGE_LED_HEAD_SET","features":[376]},{"name":"HID_USAGE_LED_HIGH_CUT_FILTER","features":[376]},{"name":"HID_USAGE_LED_HOLD","features":[376]},{"name":"HID_USAGE_LED_INDICATOR_COLOR","features":[376]},{"name":"HID_USAGE_LED_INDICATOR_FAST_BLINK","features":[376]},{"name":"HID_USAGE_LED_INDICATOR_FLASH","features":[376]},{"name":"HID_USAGE_LED_INDICATOR_OFF","features":[376]},{"name":"HID_USAGE_LED_INDICATOR_ON","features":[376]},{"name":"HID_USAGE_LED_INDICATOR_SLOW_BLINK","features":[376]},{"name":"HID_USAGE_LED_IN_USE_INDICATOR","features":[376]},{"name":"HID_USAGE_LED_KANA","features":[376]},{"name":"HID_USAGE_LED_LOW_CUT_FILTER","features":[376]},{"name":"HID_USAGE_LED_MESSAGE_WAITING","features":[376]},{"name":"HID_USAGE_LED_MICROPHONE","features":[376]},{"name":"HID_USAGE_LED_MULTI_MODE_INDICATOR","features":[376]},{"name":"HID_USAGE_LED_MUTE","features":[376]},{"name":"HID_USAGE_LED_NIGHT_MODE","features":[376]},{"name":"HID_USAGE_LED_NUM_LOCK","features":[376]},{"name":"HID_USAGE_LED_OFF_HOOK","features":[376]},{"name":"HID_USAGE_LED_OFF_LINE","features":[376]},{"name":"HID_USAGE_LED_ON_LINE","features":[376]},{"name":"HID_USAGE_LED_PAPER_JAM","features":[376]},{"name":"HID_USAGE_LED_PAPER_OUT","features":[376]},{"name":"HID_USAGE_LED_PAUSE","features":[376]},{"name":"HID_USAGE_LED_PLAY","features":[376]},{"name":"HID_USAGE_LED_POWER","features":[376]},{"name":"HID_USAGE_LED_READY","features":[376]},{"name":"HID_USAGE_LED_RECORD","features":[376]},{"name":"HID_USAGE_LED_RECORDING_FORMAT_DET","features":[376]},{"name":"HID_USAGE_LED_RED","features":[376]},{"name":"HID_USAGE_LED_REMOTE","features":[376]},{"name":"HID_USAGE_LED_REPEAT","features":[376]},{"name":"HID_USAGE_LED_REVERSE","features":[376]},{"name":"HID_USAGE_LED_REWIND","features":[376]},{"name":"HID_USAGE_LED_RING","features":[376]},{"name":"HID_USAGE_LED_SAMPLING_RATE_DETECT","features":[376]},{"name":"HID_USAGE_LED_SCROLL_LOCK","features":[376]},{"name":"HID_USAGE_LED_SELECTED_INDICATOR","features":[376]},{"name":"HID_USAGE_LED_SEND_CALLS","features":[376]},{"name":"HID_USAGE_LED_SHIFT","features":[376]},{"name":"HID_USAGE_LED_SLOW_BLINK_OFF_TIME","features":[376]},{"name":"HID_USAGE_LED_SLOW_BLINK_ON_TIME","features":[376]},{"name":"HID_USAGE_LED_SOUND_FIELD_ON","features":[376]},{"name":"HID_USAGE_LED_SPEAKER","features":[376]},{"name":"HID_USAGE_LED_SPINNING","features":[376]},{"name":"HID_USAGE_LED_STAND_BY","features":[376]},{"name":"HID_USAGE_LED_STEREO","features":[376]},{"name":"HID_USAGE_LED_STOP","features":[376]},{"name":"HID_USAGE_LED_SURROUND_FIELD_ON","features":[376]},{"name":"HID_USAGE_LED_SYSTEM_SUSPEND","features":[376]},{"name":"HID_USAGE_LED_TONE_ENABLE","features":[376]},{"name":"HID_USAGE_MS_BTH_HF_DIALMEMORY","features":[376]},{"name":"HID_USAGE_MS_BTH_HF_DIALNUMBER","features":[376]},{"name":"HID_USAGE_PAGE_ALPHANUMERIC","features":[376]},{"name":"HID_USAGE_PAGE_ARCADE","features":[376]},{"name":"HID_USAGE_PAGE_BARCODE_SCANNER","features":[376]},{"name":"HID_USAGE_PAGE_BUTTON","features":[376]},{"name":"HID_USAGE_PAGE_CAMERA_CONTROL","features":[376]},{"name":"HID_USAGE_PAGE_CONSUMER","features":[376]},{"name":"HID_USAGE_PAGE_DIGITIZER","features":[376]},{"name":"HID_USAGE_PAGE_GAME","features":[376]},{"name":"HID_USAGE_PAGE_GENERIC","features":[376]},{"name":"HID_USAGE_PAGE_GENERIC_DEVICE","features":[376]},{"name":"HID_USAGE_PAGE_HAPTICS","features":[376]},{"name":"HID_USAGE_PAGE_KEYBOARD","features":[376]},{"name":"HID_USAGE_PAGE_LED","features":[376]},{"name":"HID_USAGE_PAGE_LIGHTING_ILLUMINATION","features":[376]},{"name":"HID_USAGE_PAGE_MAGNETIC_STRIPE_READER","features":[376]},{"name":"HID_USAGE_PAGE_MICROSOFT_BLUETOOTH_HANDSFREE","features":[376]},{"name":"HID_USAGE_PAGE_ORDINAL","features":[376]},{"name":"HID_USAGE_PAGE_PID","features":[376]},{"name":"HID_USAGE_PAGE_SENSOR","features":[376]},{"name":"HID_USAGE_PAGE_SIMULATION","features":[376]},{"name":"HID_USAGE_PAGE_SPORT","features":[376]},{"name":"HID_USAGE_PAGE_TELEPHONY","features":[376]},{"name":"HID_USAGE_PAGE_UNDEFINED","features":[376]},{"name":"HID_USAGE_PAGE_UNICODE","features":[376]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_BEGIN","features":[376]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_END","features":[376]},{"name":"HID_USAGE_PAGE_VR","features":[376]},{"name":"HID_USAGE_PAGE_WEIGHING_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_ACCELLERATOR","features":[376]},{"name":"HID_USAGE_SIMULATION_AILERON","features":[376]},{"name":"HID_USAGE_SIMULATION_AILERON_TRIM","features":[376]},{"name":"HID_USAGE_SIMULATION_AIRPLANE_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_ANTI_TORQUE_CONTROL","features":[376]},{"name":"HID_USAGE_SIMULATION_AUTOMOBILE_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_AUTOPIOLOT_ENABLE","features":[376]},{"name":"HID_USAGE_SIMULATION_BALLAST","features":[376]},{"name":"HID_USAGE_SIMULATION_BARREL_ELEVATION","features":[376]},{"name":"HID_USAGE_SIMULATION_BICYCLE_CRANK","features":[376]},{"name":"HID_USAGE_SIMULATION_BICYCLE_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_BRAKE","features":[376]},{"name":"HID_USAGE_SIMULATION_CHAFF_RELEASE","features":[376]},{"name":"HID_USAGE_SIMULATION_CLUTCH","features":[376]},{"name":"HID_USAGE_SIMULATION_COLLECTIVE_CONTROL","features":[376]},{"name":"HID_USAGE_SIMULATION_CYCLIC_CONTROL","features":[376]},{"name":"HID_USAGE_SIMULATION_CYCLIC_TRIM","features":[376]},{"name":"HID_USAGE_SIMULATION_DIVE_BRAKE","features":[376]},{"name":"HID_USAGE_SIMULATION_DIVE_PLANE","features":[376]},{"name":"HID_USAGE_SIMULATION_ELECTRONIC_COUNTERMEASURES","features":[376]},{"name":"HID_USAGE_SIMULATION_ELEVATOR","features":[376]},{"name":"HID_USAGE_SIMULATION_ELEVATOR_TRIM","features":[376]},{"name":"HID_USAGE_SIMULATION_FLARE_RELEASE","features":[376]},{"name":"HID_USAGE_SIMULATION_FLIGHT_COMMUNICATIONS","features":[376]},{"name":"HID_USAGE_SIMULATION_FLIGHT_CONTROL_STICK","features":[376]},{"name":"HID_USAGE_SIMULATION_FLIGHT_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_FLIGHT_STICK","features":[376]},{"name":"HID_USAGE_SIMULATION_FLIGHT_YOKE","features":[376]},{"name":"HID_USAGE_SIMULATION_FRONT_BRAKE","features":[376]},{"name":"HID_USAGE_SIMULATION_HANDLE_BARS","features":[376]},{"name":"HID_USAGE_SIMULATION_HELICOPTER_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_LANDING_GEAR","features":[376]},{"name":"HID_USAGE_SIMULATION_MAGIC_CARPET_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_MOTORCYCLE_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_REAR_BRAKE","features":[376]},{"name":"HID_USAGE_SIMULATION_RUDDER","features":[376]},{"name":"HID_USAGE_SIMULATION_SAILING_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_SHIFTER","features":[376]},{"name":"HID_USAGE_SIMULATION_SPACESHIP_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_SPORTS_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_STEERING","features":[376]},{"name":"HID_USAGE_SIMULATION_SUBMARINE_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_TANK_SIMULATION_DEVICE","features":[376]},{"name":"HID_USAGE_SIMULATION_THROTTLE","features":[376]},{"name":"HID_USAGE_SIMULATION_TOE_BRAKE","features":[376]},{"name":"HID_USAGE_SIMULATION_TRACK_CONTROL","features":[376]},{"name":"HID_USAGE_SIMULATION_TRIGGER","features":[376]},{"name":"HID_USAGE_SIMULATION_TURRET_DIRECTION","features":[376]},{"name":"HID_USAGE_SIMULATION_WEAPONS_ARM","features":[376]},{"name":"HID_USAGE_SIMULATION_WEAPONS_SELECT","features":[376]},{"name":"HID_USAGE_SIMULATION_WING_FLAPS","features":[376]},{"name":"HID_USAGE_SPORT_10_IRON","features":[376]},{"name":"HID_USAGE_SPORT_11_IRON","features":[376]},{"name":"HID_USAGE_SPORT_1_IRON","features":[376]},{"name":"HID_USAGE_SPORT_1_WOOD","features":[376]},{"name":"HID_USAGE_SPORT_2_IRON","features":[376]},{"name":"HID_USAGE_SPORT_3_IRON","features":[376]},{"name":"HID_USAGE_SPORT_3_WOOD","features":[376]},{"name":"HID_USAGE_SPORT_4_IRON","features":[376]},{"name":"HID_USAGE_SPORT_5_IRON","features":[376]},{"name":"HID_USAGE_SPORT_5_WOOD","features":[376]},{"name":"HID_USAGE_SPORT_6_IRON","features":[376]},{"name":"HID_USAGE_SPORT_7_IRON","features":[376]},{"name":"HID_USAGE_SPORT_7_WOOD","features":[376]},{"name":"HID_USAGE_SPORT_8_IRON","features":[376]},{"name":"HID_USAGE_SPORT_9_IRON","features":[376]},{"name":"HID_USAGE_SPORT_9_WOOD","features":[376]},{"name":"HID_USAGE_SPORT_BASEBALL_BAT","features":[376]},{"name":"HID_USAGE_SPORT_FOLLOW_THROUGH","features":[376]},{"name":"HID_USAGE_SPORT_GOLF_CLUB","features":[376]},{"name":"HID_USAGE_SPORT_HEEL_TOE","features":[376]},{"name":"HID_USAGE_SPORT_HEIGHT","features":[376]},{"name":"HID_USAGE_SPORT_LOFT_WEDGE","features":[376]},{"name":"HID_USAGE_SPORT_OAR","features":[376]},{"name":"HID_USAGE_SPORT_POWER_WEDGE","features":[376]},{"name":"HID_USAGE_SPORT_PUTTER","features":[376]},{"name":"HID_USAGE_SPORT_RATE","features":[376]},{"name":"HID_USAGE_SPORT_ROWING_MACHINE","features":[376]},{"name":"HID_USAGE_SPORT_SAND_WEDGE","features":[376]},{"name":"HID_USAGE_SPORT_SLOPE","features":[376]},{"name":"HID_USAGE_SPORT_STICK_FACE_ANGLE","features":[376]},{"name":"HID_USAGE_SPORT_STICK_SPEED","features":[376]},{"name":"HID_USAGE_SPORT_STICK_TYPE","features":[376]},{"name":"HID_USAGE_SPORT_TEMPO","features":[376]},{"name":"HID_USAGE_SPORT_TREADMILL","features":[376]},{"name":"HID_USAGE_TELEPHONY_ANSWERING_MACHINE","features":[376]},{"name":"HID_USAGE_TELEPHONY_DROP","features":[376]},{"name":"HID_USAGE_TELEPHONY_HANDSET","features":[376]},{"name":"HID_USAGE_TELEPHONY_HEADSET","features":[376]},{"name":"HID_USAGE_TELEPHONY_HOST_AVAILABLE","features":[376]},{"name":"HID_USAGE_TELEPHONY_KEYPAD","features":[376]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_0","features":[376]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_D","features":[376]},{"name":"HID_USAGE_TELEPHONY_LINE","features":[376]},{"name":"HID_USAGE_TELEPHONY_MESSAGE_CONTROLS","features":[376]},{"name":"HID_USAGE_TELEPHONY_PHONE","features":[376]},{"name":"HID_USAGE_TELEPHONY_PROGRAMMABLE_BUTTON","features":[376]},{"name":"HID_USAGE_TELEPHONY_REDIAL","features":[376]},{"name":"HID_USAGE_TELEPHONY_RING_ENABLE","features":[376]},{"name":"HID_USAGE_TELEPHONY_SEND","features":[376]},{"name":"HID_USAGE_TELEPHONY_TRANSFER","features":[376]},{"name":"HID_USAGE_VR_ANIMATRONIC_DEVICE","features":[376]},{"name":"HID_USAGE_VR_BELT","features":[376]},{"name":"HID_USAGE_VR_BODY_SUIT","features":[376]},{"name":"HID_USAGE_VR_DISPLAY_ENABLE","features":[376]},{"name":"HID_USAGE_VR_FLEXOR","features":[376]},{"name":"HID_USAGE_VR_GLOVE","features":[376]},{"name":"HID_USAGE_VR_HAND_TRACKER","features":[376]},{"name":"HID_USAGE_VR_HEAD_MOUNTED_DISPLAY","features":[376]},{"name":"HID_USAGE_VR_HEAD_TRACKER","features":[376]},{"name":"HID_USAGE_VR_OCULOMETER","features":[376]},{"name":"HID_USAGE_VR_STEREO_ENABLE","features":[376]},{"name":"HID_USAGE_VR_VEST","features":[376]},{"name":"HID_XFER_PACKET","features":[376]},{"name":"HORIZONTAL_WHEEL_PRESENT","features":[376]},{"name":"HidD_FlushQueue","features":[376,303]},{"name":"HidD_FreePreparsedData","features":[376,303]},{"name":"HidD_GetAttributes","features":[376,303]},{"name":"HidD_GetConfiguration","features":[376,303]},{"name":"HidD_GetFeature","features":[376,303]},{"name":"HidD_GetHidGuid","features":[376]},{"name":"HidD_GetIndexedString","features":[376,303]},{"name":"HidD_GetInputReport","features":[376,303]},{"name":"HidD_GetManufacturerString","features":[376,303]},{"name":"HidD_GetMsGenreDescriptor","features":[376,303]},{"name":"HidD_GetNumInputBuffers","features":[376,303]},{"name":"HidD_GetPhysicalDescriptor","features":[376,303]},{"name":"HidD_GetPreparsedData","features":[376,303]},{"name":"HidD_GetProductString","features":[376,303]},{"name":"HidD_GetSerialNumberString","features":[376,303]},{"name":"HidD_SetConfiguration","features":[376,303]},{"name":"HidD_SetFeature","features":[376,303]},{"name":"HidD_SetNumInputBuffers","features":[376,303]},{"name":"HidD_SetOutputReport","features":[376,303]},{"name":"HidP_Feature","features":[376]},{"name":"HidP_GetButtonArray","features":[376,303]},{"name":"HidP_GetButtonCaps","features":[376,303]},{"name":"HidP_GetCaps","features":[376,303]},{"name":"HidP_GetData","features":[376,303]},{"name":"HidP_GetExtendedAttributes","features":[376,303]},{"name":"HidP_GetLinkCollectionNodes","features":[376,303]},{"name":"HidP_GetScaledUsageValue","features":[376,303]},{"name":"HidP_GetSpecificButtonCaps","features":[376,303]},{"name":"HidP_GetSpecificValueCaps","features":[376,303]},{"name":"HidP_GetUsageValue","features":[376,303]},{"name":"HidP_GetUsageValueArray","features":[376,303]},{"name":"HidP_GetUsages","features":[376,303]},{"name":"HidP_GetUsagesEx","features":[376,303]},{"name":"HidP_GetValueCaps","features":[376,303]},{"name":"HidP_InitializeReportForID","features":[376,303]},{"name":"HidP_Input","features":[376]},{"name":"HidP_Keyboard_Break","features":[376]},{"name":"HidP_Keyboard_Make","features":[376]},{"name":"HidP_MaxDataListLength","features":[376]},{"name":"HidP_MaxUsageListLength","features":[376]},{"name":"HidP_Output","features":[376]},{"name":"HidP_SetButtonArray","features":[376,303]},{"name":"HidP_SetData","features":[376,303]},{"name":"HidP_SetScaledUsageValue","features":[376,303]},{"name":"HidP_SetUsageValue","features":[376,303]},{"name":"HidP_SetUsageValueArray","features":[376,303]},{"name":"HidP_SetUsages","features":[376,303]},{"name":"HidP_TranslateUsagesToI8042ScanCodes","features":[376,303]},{"name":"HidP_UnsetUsages","features":[376,303]},{"name":"HidP_UsageListDifference","features":[376,303]},{"name":"IDirectInput2A","features":[376]},{"name":"IDirectInput2W","features":[376]},{"name":"IDirectInput7A","features":[376]},{"name":"IDirectInput7W","features":[376]},{"name":"IDirectInput8A","features":[376]},{"name":"IDirectInput8W","features":[376]},{"name":"IDirectInputA","features":[376]},{"name":"IDirectInputDevice2A","features":[376]},{"name":"IDirectInputDevice2W","features":[376]},{"name":"IDirectInputDevice7A","features":[376]},{"name":"IDirectInputDevice7W","features":[376]},{"name":"IDirectInputDevice8A","features":[376]},{"name":"IDirectInputDevice8W","features":[376]},{"name":"IDirectInputDeviceA","features":[376]},{"name":"IDirectInputDeviceW","features":[376]},{"name":"IDirectInputEffect","features":[376]},{"name":"IDirectInputEffectDriver","features":[376]},{"name":"IDirectInputJoyConfig","features":[376]},{"name":"IDirectInputJoyConfig8","features":[376]},{"name":"IDirectInputW","features":[376]},{"name":"INDICATOR_LIST","features":[376]},{"name":"INPUT_BUTTON_ENABLE_INFO","features":[376,303]},{"name":"IOCTL_BUTTON_GET_ENABLED_ON_IDLE","features":[376]},{"name":"IOCTL_BUTTON_SET_ENABLED_ON_IDLE","features":[376]},{"name":"IOCTL_KEYBOARD_INSERT_DATA","features":[376]},{"name":"IOCTL_KEYBOARD_QUERY_ATTRIBUTES","features":[376]},{"name":"IOCTL_KEYBOARD_QUERY_EXTENDED_ATTRIBUTES","features":[376]},{"name":"IOCTL_KEYBOARD_QUERY_IME_STATUS","features":[376]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATORS","features":[376]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATOR_TRANSLATION","features":[376]},{"name":"IOCTL_KEYBOARD_QUERY_TYPEMATIC","features":[376]},{"name":"IOCTL_KEYBOARD_SET_IME_STATUS","features":[376]},{"name":"IOCTL_KEYBOARD_SET_INDICATORS","features":[376]},{"name":"IOCTL_KEYBOARD_SET_TYPEMATIC","features":[376]},{"name":"IOCTL_MOUSE_INSERT_DATA","features":[376]},{"name":"IOCTL_MOUSE_QUERY_ATTRIBUTES","features":[376]},{"name":"JOYCALIBRATE","features":[376]},{"name":"JOYPOS","features":[376]},{"name":"JOYRANGE","features":[376]},{"name":"JOYREGHWCONFIG","features":[376]},{"name":"JOYREGHWSETTINGS","features":[376]},{"name":"JOYREGHWVALUES","features":[376]},{"name":"JOYREGUSERVALUES","features":[376]},{"name":"JOYTYPE_ANALOGCOMPAT","features":[376]},{"name":"JOYTYPE_DEFAULTPROPSHEET","features":[376]},{"name":"JOYTYPE_DEVICEHIDE","features":[376]},{"name":"JOYTYPE_ENABLEINPUTREPORT","features":[376]},{"name":"JOYTYPE_GAMEHIDE","features":[376]},{"name":"JOYTYPE_HIDEACTIVE","features":[376]},{"name":"JOYTYPE_INFODEFAULT","features":[376]},{"name":"JOYTYPE_INFOMASK","features":[376]},{"name":"JOYTYPE_INFOYRPEDALS","features":[376]},{"name":"JOYTYPE_INFOYYPEDALS","features":[376]},{"name":"JOYTYPE_INFOZISSLIDER","features":[376]},{"name":"JOYTYPE_INFOZISZ","features":[376]},{"name":"JOYTYPE_INFOZRPEDALS","features":[376]},{"name":"JOYTYPE_INFOZYPEDALS","features":[376]},{"name":"JOYTYPE_KEYBHIDE","features":[376]},{"name":"JOYTYPE_MOUSEHIDE","features":[376]},{"name":"JOYTYPE_NOAUTODETECTGAMEPORT","features":[376]},{"name":"JOYTYPE_NOHIDDIRECT","features":[376]},{"name":"JOYTYPE_ZEROGAMEENUMOEMDATA","features":[376]},{"name":"JOY_HWS_AUTOLOAD","features":[376]},{"name":"JOY_HWS_GAMEPORTBUSBUSY","features":[376]},{"name":"JOY_HWS_HASPOV","features":[376]},{"name":"JOY_HWS_HASR","features":[376]},{"name":"JOY_HWS_HASU","features":[376]},{"name":"JOY_HWS_HASV","features":[376]},{"name":"JOY_HWS_HASZ","features":[376]},{"name":"JOY_HWS_ISANALOGPORTDRIVER","features":[376]},{"name":"JOY_HWS_ISCARCTRL","features":[376]},{"name":"JOY_HWS_ISGAMEPAD","features":[376]},{"name":"JOY_HWS_ISGAMEPORTBUS","features":[376]},{"name":"JOY_HWS_ISGAMEPORTDRIVER","features":[376]},{"name":"JOY_HWS_ISHEADTRACKER","features":[376]},{"name":"JOY_HWS_ISYOKE","features":[376]},{"name":"JOY_HWS_NODEVNODE","features":[376]},{"name":"JOY_HWS_POVISBUTTONCOMBOS","features":[376]},{"name":"JOY_HWS_POVISJ1X","features":[376]},{"name":"JOY_HWS_POVISJ1Y","features":[376]},{"name":"JOY_HWS_POVISJ2X","features":[376]},{"name":"JOY_HWS_POVISPOLL","features":[376]},{"name":"JOY_HWS_RISJ1X","features":[376]},{"name":"JOY_HWS_RISJ1Y","features":[376]},{"name":"JOY_HWS_RISJ2Y","features":[376]},{"name":"JOY_HWS_XISJ1Y","features":[376]},{"name":"JOY_HWS_XISJ2X","features":[376]},{"name":"JOY_HWS_XISJ2Y","features":[376]},{"name":"JOY_HWS_YISJ1X","features":[376]},{"name":"JOY_HWS_YISJ2X","features":[376]},{"name":"JOY_HWS_YISJ2Y","features":[376]},{"name":"JOY_HWS_ZISJ1X","features":[376]},{"name":"JOY_HWS_ZISJ1Y","features":[376]},{"name":"JOY_HWS_ZISJ2X","features":[376]},{"name":"JOY_HW_2A_2B_GENERIC","features":[376]},{"name":"JOY_HW_2A_4B_GENERIC","features":[376]},{"name":"JOY_HW_2B_FLIGHTYOKE","features":[376]},{"name":"JOY_HW_2B_FLIGHTYOKETHROTTLE","features":[376]},{"name":"JOY_HW_2B_GAMEPAD","features":[376]},{"name":"JOY_HW_3A_2B_GENERIC","features":[376]},{"name":"JOY_HW_3A_4B_GENERIC","features":[376]},{"name":"JOY_HW_4B_FLIGHTYOKE","features":[376]},{"name":"JOY_HW_4B_FLIGHTYOKETHROTTLE","features":[376]},{"name":"JOY_HW_4B_GAMEPAD","features":[376]},{"name":"JOY_HW_CUSTOM","features":[376]},{"name":"JOY_HW_LASTENTRY","features":[376]},{"name":"JOY_HW_NONE","features":[376]},{"name":"JOY_HW_TWO_2A_2B_WITH_Y","features":[376]},{"name":"JOY_ISCAL_POV","features":[376]},{"name":"JOY_ISCAL_R","features":[376]},{"name":"JOY_ISCAL_U","features":[376]},{"name":"JOY_ISCAL_V","features":[376]},{"name":"JOY_ISCAL_XY","features":[376]},{"name":"JOY_ISCAL_Z","features":[376]},{"name":"JOY_OEMPOLL_PASSDRIVERDATA","features":[376]},{"name":"JOY_PASSDRIVERDATA","features":[376]},{"name":"JOY_POVVAL_BACKWARD","features":[376]},{"name":"JOY_POVVAL_FORWARD","features":[376]},{"name":"JOY_POVVAL_LEFT","features":[376]},{"name":"JOY_POVVAL_RIGHT","features":[376]},{"name":"JOY_POV_NUMDIRS","features":[376]},{"name":"JOY_US_HASRUDDER","features":[376]},{"name":"JOY_US_ISOEM","features":[376]},{"name":"JOY_US_PRESENT","features":[376]},{"name":"JOY_US_RESERVED","features":[376]},{"name":"JOY_US_VOLATILE","features":[376]},{"name":"KEYBOARD_ATTRIBUTES","features":[376]},{"name":"KEYBOARD_CAPS_LOCK_ON","features":[376]},{"name":"KEYBOARD_ERROR_VALUE_BASE","features":[376]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES","features":[376]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES_STRUCT_VERSION_1","features":[376]},{"name":"KEYBOARD_ID","features":[376]},{"name":"KEYBOARD_IME_STATUS","features":[376]},{"name":"KEYBOARD_INDICATOR_PARAMETERS","features":[376]},{"name":"KEYBOARD_INDICATOR_TRANSLATION","features":[376]},{"name":"KEYBOARD_INPUT_DATA","features":[376]},{"name":"KEYBOARD_KANA_LOCK_ON","features":[376]},{"name":"KEYBOARD_LED_INJECTED","features":[376]},{"name":"KEYBOARD_NUM_LOCK_ON","features":[376]},{"name":"KEYBOARD_OVERRUN_MAKE_CODE","features":[376]},{"name":"KEYBOARD_SCROLL_LOCK_ON","features":[376]},{"name":"KEYBOARD_SHADOW","features":[376]},{"name":"KEYBOARD_TYPEMATIC_PARAMETERS","features":[376]},{"name":"KEYBOARD_UNIT_ID_PARAMETER","features":[376]},{"name":"KEY_BREAK","features":[376]},{"name":"KEY_E0","features":[376]},{"name":"KEY_E1","features":[376]},{"name":"KEY_FROM_KEYBOARD_OVERRIDER","features":[376]},{"name":"KEY_MAKE","features":[376]},{"name":"KEY_RIM_VKEY","features":[376]},{"name":"KEY_TERMSRV_SET_LED","features":[376]},{"name":"KEY_TERMSRV_SHADOW","features":[376]},{"name":"KEY_TERMSRV_VKPACKET","features":[376]},{"name":"KEY_UNICODE_SEQUENCE_END","features":[376]},{"name":"KEY_UNICODE_SEQUENCE_ITEM","features":[376]},{"name":"LPDICONFIGUREDEVICESCALLBACK","features":[376,303]},{"name":"LPDIENUMCREATEDEFFECTOBJECTSCALLBACK","features":[376,303]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKA","features":[376,303]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKW","features":[376,303]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBA","features":[376,303]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBW","features":[376,303]},{"name":"LPDIENUMDEVICESCALLBACKA","features":[376,303]},{"name":"LPDIENUMDEVICESCALLBACKW","features":[376,303]},{"name":"LPDIENUMEFFECTSCALLBACKA","features":[376,303]},{"name":"LPDIENUMEFFECTSCALLBACKW","features":[376,303]},{"name":"LPDIENUMEFFECTSINFILECALLBACK","features":[376,303]},{"name":"LPDIJOYTYPECALLBACK","features":[376,303]},{"name":"LPFNSHOWJOYCPL","features":[376,303]},{"name":"MAXCPOINTSNUM","features":[376]},{"name":"MAX_JOYSTICKOEMVXDNAME","features":[376]},{"name":"MAX_JOYSTRING","features":[376]},{"name":"MOUSE_ATTRIBUTES","features":[376]},{"name":"MOUSE_BUTTON_1_DOWN","features":[376]},{"name":"MOUSE_BUTTON_1_UP","features":[376]},{"name":"MOUSE_BUTTON_2_DOWN","features":[376]},{"name":"MOUSE_BUTTON_2_UP","features":[376]},{"name":"MOUSE_BUTTON_3_DOWN","features":[376]},{"name":"MOUSE_BUTTON_3_UP","features":[376]},{"name":"MOUSE_BUTTON_4_DOWN","features":[376]},{"name":"MOUSE_BUTTON_4_UP","features":[376]},{"name":"MOUSE_BUTTON_5_DOWN","features":[376]},{"name":"MOUSE_BUTTON_5_UP","features":[376]},{"name":"MOUSE_ERROR_VALUE_BASE","features":[376]},{"name":"MOUSE_HID_HARDWARE","features":[376]},{"name":"MOUSE_HWHEEL","features":[376]},{"name":"MOUSE_I8042_HARDWARE","features":[376]},{"name":"MOUSE_INPORT_HARDWARE","features":[376]},{"name":"MOUSE_INPUT_DATA","features":[376]},{"name":"MOUSE_LEFT_BUTTON_DOWN","features":[376]},{"name":"MOUSE_LEFT_BUTTON_UP","features":[376]},{"name":"MOUSE_MIDDLE_BUTTON_DOWN","features":[376]},{"name":"MOUSE_MIDDLE_BUTTON_UP","features":[376]},{"name":"MOUSE_RIGHT_BUTTON_DOWN","features":[376]},{"name":"MOUSE_RIGHT_BUTTON_UP","features":[376]},{"name":"MOUSE_SERIAL_HARDWARE","features":[376]},{"name":"MOUSE_TERMSRV_SRC_SHADOW","features":[376]},{"name":"MOUSE_UNIT_ID_PARAMETER","features":[376]},{"name":"MOUSE_WHEEL","features":[376]},{"name":"PFN_HidP_GetVersionInternal","features":[376,303]},{"name":"PHIDP_INSERT_SCANCODES","features":[376,303]},{"name":"PHIDP_PREPARSED_DATA","features":[376]},{"name":"USAGE_AND_PAGE","features":[376]},{"name":"WHEELMOUSE_HID_HARDWARE","features":[376]},{"name":"WHEELMOUSE_I8042_HARDWARE","features":[376]},{"name":"WHEELMOUSE_SERIAL_HARDWARE","features":[376]},{"name":"joyConfigChanged","features":[376]}],"380":[{"name":"ADVANCED_DUP","features":[377]},{"name":"ADVANCED_DUPLEX","features":[377]},{"name":"ALL_PAGES","features":[377]},{"name":"AUTO_ADVANCE","features":[377]},{"name":"AUTO_SOURCE","features":[377]},{"name":"BACK_FIRST","features":[377]},{"name":"BACK_ONLY","features":[377]},{"name":"BARCODE_READER","features":[377]},{"name":"BARCODE_READER_READY","features":[377]},{"name":"BASE_VAL_WIA_ERROR","features":[377]},{"name":"BASE_VAL_WIA_SUCCESS","features":[377]},{"name":"BOTTOM_JUSTIFIED","features":[377]},{"name":"BUS_TYPE_FIREWIRE","features":[377]},{"name":"BUS_TYPE_PARALLEL","features":[377]},{"name":"BUS_TYPE_SCSI","features":[377]},{"name":"BUS_TYPE_USB","features":[377]},{"name":"CAPTUREMODE_BURST","features":[377]},{"name":"CAPTUREMODE_NORMAL","features":[377]},{"name":"CAPTUREMODE_TIMELAPSE","features":[377]},{"name":"CENTERED","features":[377]},{"name":"CFSTR_WIAITEMNAMES","features":[377]},{"name":"CFSTR_WIAITEMPTR","features":[377]},{"name":"CLSID_WiaDefaultSegFilter","features":[377]},{"name":"CMD_GETADFAVAILABLE","features":[377]},{"name":"CMD_GETADFHASPAPER","features":[377]},{"name":"CMD_GETADFOPEN","features":[377]},{"name":"CMD_GETADFREADY","features":[377]},{"name":"CMD_GETADFSTATUS","features":[377]},{"name":"CMD_GETADFUNLOADREADY","features":[377]},{"name":"CMD_GETCAPABILITIES","features":[377]},{"name":"CMD_GETSUPPORTEDFILEFORMATS","features":[377]},{"name":"CMD_GETSUPPORTEDMEMORYFORMATS","features":[377]},{"name":"CMD_GETTPAAVAILABLE","features":[377]},{"name":"CMD_GETTPAOPENED","features":[377]},{"name":"CMD_GET_INTERRUPT_EVENT","features":[377]},{"name":"CMD_INITIALIZE","features":[377]},{"name":"CMD_LOAD_ADF","features":[377]},{"name":"CMD_RESETSCANNER","features":[377]},{"name":"CMD_SENDSCSICOMMAND","features":[377]},{"name":"CMD_SETCOLORDITHER","features":[377]},{"name":"CMD_SETCONTRAST","features":[377]},{"name":"CMD_SETDATATYPE","features":[377]},{"name":"CMD_SETDITHER","features":[377]},{"name":"CMD_SETFILTER","features":[377]},{"name":"CMD_SETFORMAT","features":[377]},{"name":"CMD_SETGSDNAME","features":[377]},{"name":"CMD_SETINTENSITY","features":[377]},{"name":"CMD_SETLAMP","features":[377]},{"name":"CMD_SETMATRIX","features":[377]},{"name":"CMD_SETMIRROR","features":[377]},{"name":"CMD_SETNEGATIVE","features":[377]},{"name":"CMD_SETSCANMODE","features":[377]},{"name":"CMD_SETSPEED","features":[377]},{"name":"CMD_SETSTIDEVICEHKEY","features":[377]},{"name":"CMD_SETTONEMAP","features":[377]},{"name":"CMD_SETXRESOLUTION","features":[377]},{"name":"CMD_SETYRESOLUTION","features":[377]},{"name":"CMD_STI_DEVICERESET","features":[377]},{"name":"CMD_STI_DIAGNOSTIC","features":[377]},{"name":"CMD_STI_GETSTATUS","features":[377]},{"name":"CMD_TPAREADY","features":[377]},{"name":"CMD_UNINITIALIZE","features":[377]},{"name":"CMD_UNLOAD_ADF","features":[377]},{"name":"COPY_PARENT_PROPERTY_VALUES","features":[377]},{"name":"DETECT_DUP","features":[377]},{"name":"DETECT_DUP_AVAIL","features":[377]},{"name":"DETECT_FEED","features":[377]},{"name":"DETECT_FEED_AVAIL","features":[377]},{"name":"DETECT_FILM_TPA","features":[377]},{"name":"DETECT_FLAT","features":[377]},{"name":"DETECT_SCAN","features":[377]},{"name":"DETECT_STOR","features":[377]},{"name":"DEVICEDIALOGDATA","features":[377,303]},{"name":"DEVICEDIALOGDATA2","features":[377,303]},{"name":"DEVICE_ATTENTION","features":[377]},{"name":"DUP","features":[377]},{"name":"DUPLEX","features":[377]},{"name":"DUP_READY","features":[377]},{"name":"DeviceDialogFunction","features":[377,303]},{"name":"EFFECTMODE_BW","features":[377]},{"name":"EFFECTMODE_SEPIA","features":[377]},{"name":"EFFECTMODE_STANDARD","features":[377]},{"name":"ENDORSER","features":[377]},{"name":"ENDORSER_READY","features":[377]},{"name":"ESC_TWAIN_CAPABILITY","features":[377]},{"name":"ESC_TWAIN_PRIVATE_SUPPORTED_CAPS","features":[377]},{"name":"EXPOSUREMETERING_AVERAGE","features":[377]},{"name":"EXPOSUREMETERING_CENTERSPOT","features":[377]},{"name":"EXPOSUREMETERING_CENTERWEIGHT","features":[377]},{"name":"EXPOSUREMETERING_MULTISPOT","features":[377]},{"name":"EXPOSUREMODE_APERTURE_PRIORITY","features":[377]},{"name":"EXPOSUREMODE_AUTO","features":[377]},{"name":"EXPOSUREMODE_MANUAL","features":[377]},{"name":"EXPOSUREMODE_PORTRAIT","features":[377]},{"name":"EXPOSUREMODE_PROGRAM_ACTION","features":[377]},{"name":"EXPOSUREMODE_PROGRAM_CREATIVE","features":[377]},{"name":"EXPOSUREMODE_SHUTTER_PRIORITY","features":[377]},{"name":"FEED","features":[377]},{"name":"FEEDER","features":[377]},{"name":"FEED_READY","features":[377]},{"name":"FILM_TPA","features":[377]},{"name":"FILM_TPA_READY","features":[377]},{"name":"FLASHMODE_AUTO","features":[377]},{"name":"FLASHMODE_EXTERNALSYNC","features":[377]},{"name":"FLASHMODE_FILL","features":[377]},{"name":"FLASHMODE_OFF","features":[377]},{"name":"FLASHMODE_REDEYE_AUTO","features":[377]},{"name":"FLASHMODE_REDEYE_FILL","features":[377]},{"name":"FLAT","features":[377]},{"name":"FLATBED","features":[377]},{"name":"FLAT_COVER_UP","features":[377]},{"name":"FLAT_READY","features":[377]},{"name":"FOCUSMETERING_CENTERSPOT","features":[377]},{"name":"FOCUSMETERING_MULTISPOT","features":[377]},{"name":"FOCUSMODE_AUTO","features":[377]},{"name":"FOCUSMODE_MACROAUTO","features":[377]},{"name":"FOCUSMODE_MANUAL","features":[377]},{"name":"FRONT_FIRST","features":[377]},{"name":"FRONT_ONLY","features":[377]},{"name":"GUID_DEVINTERFACE_IMAGE","features":[377]},{"name":"IEnumWIA_DEV_CAPS","features":[377]},{"name":"IEnumWIA_DEV_INFO","features":[377]},{"name":"IEnumWIA_FORMAT_INFO","features":[377]},{"name":"IEnumWiaItem","features":[377]},{"name":"IEnumWiaItem2","features":[377]},{"name":"IMPRINTER","features":[377]},{"name":"IMPRINTER_READY","features":[377]},{"name":"IT_MSG_DATA","features":[377]},{"name":"IT_MSG_DATA_HEADER","features":[377]},{"name":"IT_MSG_FILE_PREVIEW_DATA","features":[377]},{"name":"IT_MSG_FILE_PREVIEW_DATA_HEADER","features":[377]},{"name":"IT_MSG_NEW_PAGE","features":[377]},{"name":"IT_MSG_STATUS","features":[377]},{"name":"IT_MSG_TERMINATION","features":[377]},{"name":"IT_STATUS_MASK","features":[377]},{"name":"IT_STATUS_PROCESSING_DATA","features":[377]},{"name":"IT_STATUS_TRANSFER_FROM_DEVICE","features":[377]},{"name":"IT_STATUS_TRANSFER_TO_CLIENT","features":[377]},{"name":"IWiaAppErrorHandler","features":[377]},{"name":"IWiaDataCallback","features":[377]},{"name":"IWiaDataTransfer","features":[377]},{"name":"IWiaDevMgr","features":[377]},{"name":"IWiaDevMgr2","features":[377]},{"name":"IWiaDrvItem","features":[377]},{"name":"IWiaErrorHandler","features":[377]},{"name":"IWiaEventCallback","features":[377]},{"name":"IWiaImageFilter","features":[377]},{"name":"IWiaItem","features":[377]},{"name":"IWiaItem2","features":[377]},{"name":"IWiaItemExtras","features":[377]},{"name":"IWiaLog","features":[377]},{"name":"IWiaLogEx","features":[377]},{"name":"IWiaMiniDrv","features":[377]},{"name":"IWiaMiniDrvCallBack","features":[377]},{"name":"IWiaMiniDrvTransferCallback","features":[377]},{"name":"IWiaNotifyDevMgr","features":[377]},{"name":"IWiaPreview","features":[377]},{"name":"IWiaPropertyStorage","features":[377]},{"name":"IWiaSegmentationFilter","features":[377]},{"name":"IWiaTransfer","features":[377]},{"name":"IWiaTransferCallback","features":[377]},{"name":"IWiaUIExtension","features":[377]},{"name":"IWiaUIExtension2","features":[377]},{"name":"IWiaVideo","features":[377]},{"name":"LAMP_ERR","features":[377]},{"name":"LANDSCAPE","features":[377]},{"name":"LANSCAPE","features":[377]},{"name":"LEFT_JUSTIFIED","features":[377]},{"name":"LIGHT_SOURCE_DETECT_READY","features":[377]},{"name":"LIGHT_SOURCE_NEGATIVE","features":[377]},{"name":"LIGHT_SOURCE_POSITIVE","features":[377]},{"name":"LIGHT_SOURCE_PRESENT","features":[377]},{"name":"LIGHT_SOURCE_PRESENT_DETECT","features":[377]},{"name":"LIGHT_SOURCE_READY","features":[377]},{"name":"LIGHT_SOURCE_SELECT","features":[377]},{"name":"MAX_ANSI_CHAR","features":[377]},{"name":"MAX_IO_HANDLES","features":[377]},{"name":"MAX_RESERVED","features":[377]},{"name":"MCRO_ERROR_GENERAL_ERROR","features":[377]},{"name":"MCRO_ERROR_OFFLINE","features":[377]},{"name":"MCRO_ERROR_PAPER_EMPTY","features":[377]},{"name":"MCRO_ERROR_PAPER_JAM","features":[377]},{"name":"MCRO_ERROR_PAPER_PROBLEM","features":[377]},{"name":"MCRO_ERROR_USER_INTERVENTION","features":[377]},{"name":"MCRO_STATUS_OK","features":[377]},{"name":"MICR_READER","features":[377]},{"name":"MICR_READER_READY","features":[377]},{"name":"MINIDRV_TRANSFER_CONTEXT","features":[377,303]},{"name":"MIRRORED","features":[377]},{"name":"MULTIPLE_FEED","features":[377]},{"name":"NEXT_PAGE","features":[377]},{"name":"PAPER_JAM","features":[377]},{"name":"PATCH_CODE_READER","features":[377]},{"name":"PATCH_CODE_READER_READY","features":[377]},{"name":"PATH_COVER_UP","features":[377]},{"name":"PORTRAIT","features":[377]},{"name":"POWERMODE_BATTERY","features":[377]},{"name":"POWERMODE_LINE","features":[377]},{"name":"PREFEED","features":[377]},{"name":"RANGEVALUE","features":[377]},{"name":"RIGHT_JUSTIFIED","features":[377]},{"name":"ROT180","features":[377]},{"name":"ROT270","features":[377]},{"name":"SCANINFO","features":[377,303]},{"name":"SCANMODE_FINALSCAN","features":[377]},{"name":"SCANMODE_PREVIEWSCAN","features":[377]},{"name":"SCANWINDOW","features":[377]},{"name":"SCAN_FINISHED","features":[377]},{"name":"SCAN_FIRST","features":[377]},{"name":"SCAN_NEXT","features":[377]},{"name":"SHELLEX_WIAUIEXTENSION_NAME","features":[377]},{"name":"STOR","features":[377]},{"name":"STORAGE_FULL","features":[377]},{"name":"STORAGE_READY","features":[377]},{"name":"SUPPORT_BW","features":[377]},{"name":"SUPPORT_COLOR","features":[377]},{"name":"SUPPORT_GRAYSCALE","features":[377]},{"name":"TOP_JUSTIFIED","features":[377]},{"name":"TRANSPARENCY_DYNAMIC_FRAME_SUPPORT","features":[377]},{"name":"TRANSPARENCY_STATIC_FRAME_SUPPORT","features":[377]},{"name":"TWAIN_CAPABILITY","features":[377]},{"name":"TYMED_CALLBACK","features":[377]},{"name":"TYMED_MULTIPAGE_CALLBACK","features":[377]},{"name":"TYMED_MULTIPAGE_FILE","features":[377]},{"name":"VAL","features":[377,303]},{"name":"WHITEBALANCE_AUTO","features":[377]},{"name":"WHITEBALANCE_DAYLIGHT","features":[377]},{"name":"WHITEBALANCE_FLASH","features":[377]},{"name":"WHITEBALANCE_FLORESCENT","features":[377]},{"name":"WHITEBALANCE_MANUAL","features":[377]},{"name":"WHITEBALANCE_ONEPUSH_AUTO","features":[377]},{"name":"WHITEBALANCE_TUNGSTEN","features":[377]},{"name":"WIAS_CHANGED_VALUE_INFO","features":[377,303]},{"name":"WIAS_DOWN_SAMPLE_INFO","features":[377]},{"name":"WIAS_ENDORSER_INFO","features":[377]},{"name":"WIAS_ENDORSER_VALUE","features":[377]},{"name":"WIAU_DEBUG_TSTR","features":[377]},{"name":"WIAVIDEO_CREATING_VIDEO","features":[377]},{"name":"WIAVIDEO_DESTROYING_VIDEO","features":[377]},{"name":"WIAVIDEO_NO_VIDEO","features":[377]},{"name":"WIAVIDEO_STATE","features":[377]},{"name":"WIAVIDEO_VIDEO_CREATED","features":[377]},{"name":"WIAVIDEO_VIDEO_PAUSED","features":[377]},{"name":"WIAVIDEO_VIDEO_PLAYING","features":[377]},{"name":"WIA_ACTION_EVENT","features":[377]},{"name":"WIA_ADVANCED_PREVIEW","features":[377]},{"name":"WIA_ALARM_BEEP1","features":[377]},{"name":"WIA_ALARM_BEEP10","features":[377]},{"name":"WIA_ALARM_BEEP2","features":[377]},{"name":"WIA_ALARM_BEEP3","features":[377]},{"name":"WIA_ALARM_BEEP4","features":[377]},{"name":"WIA_ALARM_BEEP5","features":[377]},{"name":"WIA_ALARM_BEEP6","features":[377]},{"name":"WIA_ALARM_BEEP7","features":[377]},{"name":"WIA_ALARM_BEEP8","features":[377]},{"name":"WIA_ALARM_BEEP9","features":[377]},{"name":"WIA_ALARM_NONE","features":[377]},{"name":"WIA_AUTO_CROP_DISABLED","features":[377]},{"name":"WIA_AUTO_CROP_MULTI","features":[377]},{"name":"WIA_AUTO_CROP_SINGLE","features":[377]},{"name":"WIA_AUTO_DESKEW_OFF","features":[377]},{"name":"WIA_AUTO_DESKEW_ON","features":[377]},{"name":"WIA_BARCODES","features":[377]},{"name":"WIA_BARCODE_AUTO_SEARCH","features":[377]},{"name":"WIA_BARCODE_AZTEC","features":[377]},{"name":"WIA_BARCODE_CODABAR","features":[377]},{"name":"WIA_BARCODE_CODE128","features":[377]},{"name":"WIA_BARCODE_CODE128A","features":[377]},{"name":"WIA_BARCODE_CODE128B","features":[377]},{"name":"WIA_BARCODE_CODE128C","features":[377]},{"name":"WIA_BARCODE_CODE39","features":[377]},{"name":"WIA_BARCODE_CODE39_FULLASCII","features":[377]},{"name":"WIA_BARCODE_CODE39_MOD43","features":[377]},{"name":"WIA_BARCODE_CODE93","features":[377]},{"name":"WIA_BARCODE_CPCBINARY","features":[377]},{"name":"WIA_BARCODE_CUSTOMBASE","features":[377]},{"name":"WIA_BARCODE_DATAMATRIX","features":[377]},{"name":"WIA_BARCODE_DATASTRIP","features":[377]},{"name":"WIA_BARCODE_EAN13","features":[377]},{"name":"WIA_BARCODE_EAN8","features":[377]},{"name":"WIA_BARCODE_EZCODE","features":[377]},{"name":"WIA_BARCODE_FIM","features":[377]},{"name":"WIA_BARCODE_GS1128","features":[377]},{"name":"WIA_BARCODE_GS1DATABAR","features":[377]},{"name":"WIA_BARCODE_HIGH_CAPACITY_COLOR","features":[377]},{"name":"WIA_BARCODE_HORIZONTAL_SEARCH","features":[377]},{"name":"WIA_BARCODE_HORIZONTAL_VERTICAL_SEARCH","features":[377]},{"name":"WIA_BARCODE_INFO","features":[377]},{"name":"WIA_BARCODE_INTELLIGENT_MAIL","features":[377]},{"name":"WIA_BARCODE_INTERLEAVED_2OF5","features":[377]},{"name":"WIA_BARCODE_ITF14","features":[377]},{"name":"WIA_BARCODE_JAN","features":[377]},{"name":"WIA_BARCODE_MAXICODE","features":[377]},{"name":"WIA_BARCODE_MSI","features":[377]},{"name":"WIA_BARCODE_NONINTERLEAVED_2OF5","features":[377]},{"name":"WIA_BARCODE_PDF417","features":[377]},{"name":"WIA_BARCODE_PHARMACODE","features":[377]},{"name":"WIA_BARCODE_PLANET","features":[377]},{"name":"WIA_BARCODE_PLESSEY","features":[377]},{"name":"WIA_BARCODE_POSTBAR","features":[377]},{"name":"WIA_BARCODE_POSTNETA","features":[377]},{"name":"WIA_BARCODE_POSTNETB","features":[377]},{"name":"WIA_BARCODE_POSTNETC","features":[377]},{"name":"WIA_BARCODE_POSTNET_DPBC","features":[377]},{"name":"WIA_BARCODE_QRCODE","features":[377]},{"name":"WIA_BARCODE_READER_AUTO","features":[377]},{"name":"WIA_BARCODE_READER_DISABLED","features":[377]},{"name":"WIA_BARCODE_READER_FEEDER_BACK","features":[377]},{"name":"WIA_BARCODE_READER_FEEDER_DUPLEX","features":[377]},{"name":"WIA_BARCODE_READER_FEEDER_FRONT","features":[377]},{"name":"WIA_BARCODE_READER_FLATBED","features":[377]},{"name":"WIA_BARCODE_RM4SCC","features":[377]},{"name":"WIA_BARCODE_SHOTCODE","features":[377]},{"name":"WIA_BARCODE_SMALLAZTEC","features":[377]},{"name":"WIA_BARCODE_SPARQCODE","features":[377]},{"name":"WIA_BARCODE_TELEPEN","features":[377]},{"name":"WIA_BARCODE_UPCA","features":[377]},{"name":"WIA_BARCODE_UPCE","features":[377]},{"name":"WIA_BARCODE_VERTICAL_HORIZONTAL_SEARCH","features":[377]},{"name":"WIA_BARCODE_VERTICAL_SEARCH","features":[377]},{"name":"WIA_BASIC_PREVIEW","features":[377]},{"name":"WIA_BLANK_PAGE_DETECTION_DISABLED","features":[377]},{"name":"WIA_BLANK_PAGE_DISCARD","features":[377]},{"name":"WIA_BLANK_PAGE_JOB_SEPARATOR","features":[377]},{"name":"WIA_CATEGORY_AUTO","features":[377]},{"name":"WIA_CATEGORY_BARCODE_READER","features":[377]},{"name":"WIA_CATEGORY_ENDORSER","features":[377]},{"name":"WIA_CATEGORY_FEEDER","features":[377]},{"name":"WIA_CATEGORY_FEEDER_BACK","features":[377]},{"name":"WIA_CATEGORY_FEEDER_FRONT","features":[377]},{"name":"WIA_CATEGORY_FILM","features":[377]},{"name":"WIA_CATEGORY_FINISHED_FILE","features":[377]},{"name":"WIA_CATEGORY_FLATBED","features":[377]},{"name":"WIA_CATEGORY_FOLDER","features":[377]},{"name":"WIA_CATEGORY_IMPRINTER","features":[377]},{"name":"WIA_CATEGORY_MICR_READER","features":[377]},{"name":"WIA_CATEGORY_PATCH_CODE_READER","features":[377]},{"name":"WIA_CATEGORY_ROOT","features":[377]},{"name":"WIA_CMD_BUILD_DEVICE_TREE","features":[377]},{"name":"WIA_CMD_CHANGE_DOCUMENT","features":[377]},{"name":"WIA_CMD_DELETE_ALL_ITEMS","features":[377]},{"name":"WIA_CMD_DELETE_DEVICE_TREE","features":[377]},{"name":"WIA_CMD_DIAGNOSTIC","features":[377]},{"name":"WIA_CMD_FORMAT","features":[377]},{"name":"WIA_CMD_PAUSE_FEEDER","features":[377]},{"name":"WIA_CMD_START_FEEDER","features":[377]},{"name":"WIA_CMD_STOP_FEEDER","features":[377]},{"name":"WIA_CMD_SYNCHRONIZE","features":[377]},{"name":"WIA_CMD_TAKE_PICTURE","features":[377]},{"name":"WIA_CMD_UNLOAD_DOCUMENT","features":[377]},{"name":"WIA_COLOR_DROP_BLUE","features":[377]},{"name":"WIA_COLOR_DROP_DISABLED","features":[377]},{"name":"WIA_COLOR_DROP_GREEN","features":[377]},{"name":"WIA_COLOR_DROP_RED","features":[377]},{"name":"WIA_COLOR_DROP_RGB","features":[377]},{"name":"WIA_COMPRESSION_AUTO","features":[377]},{"name":"WIA_COMPRESSION_BI_RLE4","features":[377]},{"name":"WIA_COMPRESSION_BI_RLE8","features":[377]},{"name":"WIA_COMPRESSION_G3","features":[377]},{"name":"WIA_COMPRESSION_G4","features":[377]},{"name":"WIA_COMPRESSION_JBIG","features":[377]},{"name":"WIA_COMPRESSION_JPEG","features":[377]},{"name":"WIA_COMPRESSION_JPEG2K","features":[377]},{"name":"WIA_COMPRESSION_NONE","features":[377]},{"name":"WIA_COMPRESSION_PNG","features":[377]},{"name":"WIA_DATA_AUTO","features":[377]},{"name":"WIA_DATA_CALLBACK_HEADER","features":[377]},{"name":"WIA_DATA_COLOR","features":[377]},{"name":"WIA_DATA_COLOR_DITHER","features":[377]},{"name":"WIA_DATA_COLOR_THRESHOLD","features":[377]},{"name":"WIA_DATA_DITHER","features":[377]},{"name":"WIA_DATA_GRAYSCALE","features":[377]},{"name":"WIA_DATA_RAW_BGR","features":[377]},{"name":"WIA_DATA_RAW_CMY","features":[377]},{"name":"WIA_DATA_RAW_CMYK","features":[377]},{"name":"WIA_DATA_RAW_RGB","features":[377]},{"name":"WIA_DATA_RAW_YUV","features":[377]},{"name":"WIA_DATA_RAW_YUVK","features":[377]},{"name":"WIA_DATA_THRESHOLD","features":[377]},{"name":"WIA_DATA_TRANSFER_INFO","features":[377,303]},{"name":"WIA_DEPTH_AUTO","features":[377]},{"name":"WIA_DEVICE_COMMANDS","features":[377]},{"name":"WIA_DEVICE_CONNECTED","features":[377]},{"name":"WIA_DEVICE_DIALOG_SINGLE_IMAGE","features":[377]},{"name":"WIA_DEVICE_DIALOG_USE_COMMON_UI","features":[377]},{"name":"WIA_DEVICE_EVENTS","features":[377]},{"name":"WIA_DEVICE_NOT_CONNECTED","features":[377]},{"name":"WIA_DEVINFO_ENUM_ALL","features":[377]},{"name":"WIA_DEVINFO_ENUM_LOCAL","features":[377]},{"name":"WIA_DEV_CAP","features":[377]},{"name":"WIA_DEV_CAP_DRV","features":[377]},{"name":"WIA_DIP_BAUDRATE","features":[377]},{"name":"WIA_DIP_BAUDRATE_STR","features":[377]},{"name":"WIA_DIP_DEV_DESC","features":[377]},{"name":"WIA_DIP_DEV_DESC_STR","features":[377]},{"name":"WIA_DIP_DEV_ID","features":[377]},{"name":"WIA_DIP_DEV_ID_STR","features":[377]},{"name":"WIA_DIP_DEV_NAME","features":[377]},{"name":"WIA_DIP_DEV_NAME_STR","features":[377]},{"name":"WIA_DIP_DEV_TYPE","features":[377]},{"name":"WIA_DIP_DEV_TYPE_STR","features":[377]},{"name":"WIA_DIP_DRIVER_VERSION","features":[377]},{"name":"WIA_DIP_DRIVER_VERSION_STR","features":[377]},{"name":"WIA_DIP_FIRST","features":[377]},{"name":"WIA_DIP_HW_CONFIG","features":[377]},{"name":"WIA_DIP_HW_CONFIG_STR","features":[377]},{"name":"WIA_DIP_PNP_ID","features":[377]},{"name":"WIA_DIP_PNP_ID_STR","features":[377]},{"name":"WIA_DIP_PORT_NAME","features":[377]},{"name":"WIA_DIP_PORT_NAME_STR","features":[377]},{"name":"WIA_DIP_REMOTE_DEV_ID","features":[377]},{"name":"WIA_DIP_REMOTE_DEV_ID_STR","features":[377]},{"name":"WIA_DIP_SERVER_NAME","features":[377]},{"name":"WIA_DIP_SERVER_NAME_STR","features":[377]},{"name":"WIA_DIP_STI_DRIVER_VERSION","features":[377]},{"name":"WIA_DIP_STI_DRIVER_VERSION_STR","features":[377]},{"name":"WIA_DIP_STI_GEN_CAPABILITIES","features":[377]},{"name":"WIA_DIP_STI_GEN_CAPABILITIES_STR","features":[377]},{"name":"WIA_DIP_UI_CLSID","features":[377]},{"name":"WIA_DIP_UI_CLSID_STR","features":[377]},{"name":"WIA_DIP_VEND_DESC","features":[377]},{"name":"WIA_DIP_VEND_DESC_STR","features":[377]},{"name":"WIA_DIP_WIA_VERSION","features":[377]},{"name":"WIA_DIP_WIA_VERSION_STR","features":[377]},{"name":"WIA_DITHER_PATTERN_DATA","features":[377]},{"name":"WIA_DONT_SHOW_PREVIEW_CONTROL","features":[377]},{"name":"WIA_DONT_USE_SEGMENTATION_FILTER","features":[377]},{"name":"WIA_DPA_CONNECT_STATUS","features":[377]},{"name":"WIA_DPA_CONNECT_STATUS_STR","features":[377]},{"name":"WIA_DPA_DEVICE_TIME","features":[377]},{"name":"WIA_DPA_DEVICE_TIME_STR","features":[377]},{"name":"WIA_DPA_FIRMWARE_VERSION","features":[377]},{"name":"WIA_DPA_FIRMWARE_VERSION_STR","features":[377]},{"name":"WIA_DPC_ARTIST","features":[377]},{"name":"WIA_DPC_ARTIST_STR","features":[377]},{"name":"WIA_DPC_BATTERY_STATUS","features":[377]},{"name":"WIA_DPC_BATTERY_STATUS_STR","features":[377]},{"name":"WIA_DPC_BURST_INTERVAL","features":[377]},{"name":"WIA_DPC_BURST_INTERVAL_STR","features":[377]},{"name":"WIA_DPC_BURST_NUMBER","features":[377]},{"name":"WIA_DPC_BURST_NUMBER_STR","features":[377]},{"name":"WIA_DPC_CAPTURE_DELAY","features":[377]},{"name":"WIA_DPC_CAPTURE_DELAY_STR","features":[377]},{"name":"WIA_DPC_CAPTURE_MODE","features":[377]},{"name":"WIA_DPC_CAPTURE_MODE_STR","features":[377]},{"name":"WIA_DPC_COMPRESSION_SETTING","features":[377]},{"name":"WIA_DPC_COMPRESSION_SETTING_STR","features":[377]},{"name":"WIA_DPC_CONTRAST","features":[377]},{"name":"WIA_DPC_CONTRAST_STR","features":[377]},{"name":"WIA_DPC_COPYRIGHT_INFO","features":[377]},{"name":"WIA_DPC_COPYRIGHT_INFO_STR","features":[377]},{"name":"WIA_DPC_DIGITAL_ZOOM","features":[377]},{"name":"WIA_DPC_DIGITAL_ZOOM_STR","features":[377]},{"name":"WIA_DPC_DIMENSION","features":[377]},{"name":"WIA_DPC_DIMENSION_STR","features":[377]},{"name":"WIA_DPC_EFFECT_MODE","features":[377]},{"name":"WIA_DPC_EFFECT_MODE_STR","features":[377]},{"name":"WIA_DPC_EXPOSURE_COMP","features":[377]},{"name":"WIA_DPC_EXPOSURE_COMP_STR","features":[377]},{"name":"WIA_DPC_EXPOSURE_INDEX","features":[377]},{"name":"WIA_DPC_EXPOSURE_INDEX_STR","features":[377]},{"name":"WIA_DPC_EXPOSURE_METERING_MODE","features":[377]},{"name":"WIA_DPC_EXPOSURE_METERING_MODE_STR","features":[377]},{"name":"WIA_DPC_EXPOSURE_MODE","features":[377]},{"name":"WIA_DPC_EXPOSURE_MODE_STR","features":[377]},{"name":"WIA_DPC_EXPOSURE_TIME","features":[377]},{"name":"WIA_DPC_EXPOSURE_TIME_STR","features":[377]},{"name":"WIA_DPC_FLASH_MODE","features":[377]},{"name":"WIA_DPC_FLASH_MODE_STR","features":[377]},{"name":"WIA_DPC_FNUMBER","features":[377]},{"name":"WIA_DPC_FNUMBER_STR","features":[377]},{"name":"WIA_DPC_FOCAL_LENGTH","features":[377]},{"name":"WIA_DPC_FOCAL_LENGTH_STR","features":[377]},{"name":"WIA_DPC_FOCUS_DISTANCE","features":[377]},{"name":"WIA_DPC_FOCUS_DISTANCE_STR","features":[377]},{"name":"WIA_DPC_FOCUS_MANUAL_DIST","features":[377]},{"name":"WIA_DPC_FOCUS_MANUAL_DIST_STR","features":[377]},{"name":"WIA_DPC_FOCUS_METERING","features":[377]},{"name":"WIA_DPC_FOCUS_METERING_MODE","features":[377]},{"name":"WIA_DPC_FOCUS_METERING_MODE_STR","features":[377]},{"name":"WIA_DPC_FOCUS_METERING_STR","features":[377]},{"name":"WIA_DPC_FOCUS_MODE","features":[377]},{"name":"WIA_DPC_FOCUS_MODE_STR","features":[377]},{"name":"WIA_DPC_PAN_POSITION","features":[377]},{"name":"WIA_DPC_PAN_POSITION_STR","features":[377]},{"name":"WIA_DPC_PICTURES_REMAINING","features":[377]},{"name":"WIA_DPC_PICTURES_REMAINING_STR","features":[377]},{"name":"WIA_DPC_PICTURES_TAKEN","features":[377]},{"name":"WIA_DPC_PICTURES_TAKEN_STR","features":[377]},{"name":"WIA_DPC_PICT_HEIGHT","features":[377]},{"name":"WIA_DPC_PICT_HEIGHT_STR","features":[377]},{"name":"WIA_DPC_PICT_WIDTH","features":[377]},{"name":"WIA_DPC_PICT_WIDTH_STR","features":[377]},{"name":"WIA_DPC_POWER_MODE","features":[377]},{"name":"WIA_DPC_POWER_MODE_STR","features":[377]},{"name":"WIA_DPC_RGB_GAIN","features":[377]},{"name":"WIA_DPC_RGB_GAIN_STR","features":[377]},{"name":"WIA_DPC_SHARPNESS","features":[377]},{"name":"WIA_DPC_SHARPNESS_STR","features":[377]},{"name":"WIA_DPC_THUMB_HEIGHT","features":[377]},{"name":"WIA_DPC_THUMB_HEIGHT_STR","features":[377]},{"name":"WIA_DPC_THUMB_WIDTH","features":[377]},{"name":"WIA_DPC_THUMB_WIDTH_STR","features":[377]},{"name":"WIA_DPC_TILT_POSITION","features":[377]},{"name":"WIA_DPC_TILT_POSITION_STR","features":[377]},{"name":"WIA_DPC_TIMELAPSE_INTERVAL","features":[377]},{"name":"WIA_DPC_TIMELAPSE_INTERVAL_STR","features":[377]},{"name":"WIA_DPC_TIMELAPSE_NUMBER","features":[377]},{"name":"WIA_DPC_TIMELAPSE_NUMBER_STR","features":[377]},{"name":"WIA_DPC_TIMER_MODE","features":[377]},{"name":"WIA_DPC_TIMER_MODE_STR","features":[377]},{"name":"WIA_DPC_TIMER_VALUE","features":[377]},{"name":"WIA_DPC_TIMER_VALUE_STR","features":[377]},{"name":"WIA_DPC_UPLOAD_URL","features":[377]},{"name":"WIA_DPC_UPLOAD_URL_STR","features":[377]},{"name":"WIA_DPC_WHITE_BALANCE","features":[377]},{"name":"WIA_DPC_WHITE_BALANCE_STR","features":[377]},{"name":"WIA_DPC_ZOOM_POSITION","features":[377]},{"name":"WIA_DPC_ZOOM_POSITION_STR","features":[377]},{"name":"WIA_DPF_FIRST","features":[377]},{"name":"WIA_DPF_MOUNT_POINT","features":[377]},{"name":"WIA_DPF_MOUNT_POINT_STR","features":[377]},{"name":"WIA_DPS_DEVICE_ID","features":[377]},{"name":"WIA_DPS_DEVICE_ID_STR","features":[377]},{"name":"WIA_DPS_DITHER_PATTERN_DATA","features":[377]},{"name":"WIA_DPS_DITHER_PATTERN_DATA_STR","features":[377]},{"name":"WIA_DPS_DITHER_SELECT","features":[377]},{"name":"WIA_DPS_DITHER_SELECT_STR","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPABILITIES","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPABILITIES_STR","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPACITY","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPACITY_STR","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_SELECT","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_SELECT_STR","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_STATUS","features":[377]},{"name":"WIA_DPS_DOCUMENT_HANDLING_STATUS_STR","features":[377]},{"name":"WIA_DPS_ENDORSER_CHARACTERS","features":[377]},{"name":"WIA_DPS_ENDORSER_CHARACTERS_STR","features":[377]},{"name":"WIA_DPS_ENDORSER_STRING","features":[377]},{"name":"WIA_DPS_ENDORSER_STRING_STR","features":[377]},{"name":"WIA_DPS_FILTER_SELECT","features":[377]},{"name":"WIA_DPS_FILTER_SELECT_STR","features":[377]},{"name":"WIA_DPS_FIRST","features":[377]},{"name":"WIA_DPS_GLOBAL_IDENTITY","features":[377]},{"name":"WIA_DPS_GLOBAL_IDENTITY_STR","features":[377]},{"name":"WIA_DPS_HORIZONTAL_BED_REGISTRATION","features":[377]},{"name":"WIA_DPS_HORIZONTAL_BED_REGISTRATION_STR","features":[377]},{"name":"WIA_DPS_HORIZONTAL_BED_SIZE","features":[377]},{"name":"WIA_DPS_HORIZONTAL_BED_SIZE_STR","features":[377]},{"name":"WIA_DPS_HORIZONTAL_SHEET_FEED_SIZE","features":[377]},{"name":"WIA_DPS_HORIZONTAL_SHEET_FEED_SIZE_STR","features":[377]},{"name":"WIA_DPS_MAX_SCAN_TIME","features":[377]},{"name":"WIA_DPS_MAX_SCAN_TIME_STR","features":[377]},{"name":"WIA_DPS_MIN_HORIZONTAL_SHEET_FEED_SIZE","features":[377]},{"name":"WIA_DPS_MIN_HORIZONTAL_SHEET_FEED_SIZE_STR","features":[377]},{"name":"WIA_DPS_MIN_VERTICAL_SHEET_FEED_SIZE","features":[377]},{"name":"WIA_DPS_MIN_VERTICAL_SHEET_FEED_SIZE_STR","features":[377]},{"name":"WIA_DPS_OPTICAL_XRES","features":[377]},{"name":"WIA_DPS_OPTICAL_XRES_STR","features":[377]},{"name":"WIA_DPS_OPTICAL_YRES","features":[377]},{"name":"WIA_DPS_OPTICAL_YRES_STR","features":[377]},{"name":"WIA_DPS_PAD_COLOR","features":[377]},{"name":"WIA_DPS_PAD_COLOR_STR","features":[377]},{"name":"WIA_DPS_PAGES","features":[377]},{"name":"WIA_DPS_PAGES_STR","features":[377]},{"name":"WIA_DPS_PAGE_HEIGHT","features":[377]},{"name":"WIA_DPS_PAGE_HEIGHT_STR","features":[377]},{"name":"WIA_DPS_PAGE_SIZE","features":[377]},{"name":"WIA_DPS_PAGE_SIZE_STR","features":[377]},{"name":"WIA_DPS_PAGE_WIDTH","features":[377]},{"name":"WIA_DPS_PAGE_WIDTH_STR","features":[377]},{"name":"WIA_DPS_PLATEN_COLOR","features":[377]},{"name":"WIA_DPS_PLATEN_COLOR_STR","features":[377]},{"name":"WIA_DPS_PREVIEW","features":[377]},{"name":"WIA_DPS_PREVIEW_STR","features":[377]},{"name":"WIA_DPS_SCAN_AHEAD_PAGES","features":[377]},{"name":"WIA_DPS_SCAN_AHEAD_PAGES_STR","features":[377]},{"name":"WIA_DPS_SCAN_AVAILABLE_ITEM","features":[377]},{"name":"WIA_DPS_SCAN_AVAILABLE_ITEM_STR","features":[377]},{"name":"WIA_DPS_SERVICE_ID","features":[377]},{"name":"WIA_DPS_SERVICE_ID_STR","features":[377]},{"name":"WIA_DPS_SHEET_FEEDER_REGISTRATION","features":[377]},{"name":"WIA_DPS_SHEET_FEEDER_REGISTRATION_STR","features":[377]},{"name":"WIA_DPS_SHOW_PREVIEW_CONTROL","features":[377]},{"name":"WIA_DPS_SHOW_PREVIEW_CONTROL_STR","features":[377]},{"name":"WIA_DPS_TRANSPARENCY","features":[377]},{"name":"WIA_DPS_TRANSPARENCY_CAPABILITIES","features":[377]},{"name":"WIA_DPS_TRANSPARENCY_CAPABILITIES_STR","features":[377]},{"name":"WIA_DPS_TRANSPARENCY_SELECT","features":[377]},{"name":"WIA_DPS_TRANSPARENCY_SELECT_STR","features":[377]},{"name":"WIA_DPS_TRANSPARENCY_STATUS","features":[377]},{"name":"WIA_DPS_TRANSPARENCY_STATUS_STR","features":[377]},{"name":"WIA_DPS_TRANSPARENCY_STR","features":[377]},{"name":"WIA_DPS_USER_NAME","features":[377]},{"name":"WIA_DPS_USER_NAME_STR","features":[377]},{"name":"WIA_DPS_VERTICAL_BED_REGISTRATION","features":[377]},{"name":"WIA_DPS_VERTICAL_BED_REGISTRATION_STR","features":[377]},{"name":"WIA_DPS_VERTICAL_BED_SIZE","features":[377]},{"name":"WIA_DPS_VERTICAL_BED_SIZE_STR","features":[377]},{"name":"WIA_DPS_VERTICAL_SHEET_FEED_SIZE","features":[377]},{"name":"WIA_DPS_VERTICAL_SHEET_FEED_SIZE_STR","features":[377]},{"name":"WIA_DPV_DSHOW_DEVICE_PATH","features":[377]},{"name":"WIA_DPV_DSHOW_DEVICE_PATH_STR","features":[377]},{"name":"WIA_DPV_IMAGES_DIRECTORY","features":[377]},{"name":"WIA_DPV_IMAGES_DIRECTORY_STR","features":[377]},{"name":"WIA_DPV_LAST_PICTURE_TAKEN","features":[377]},{"name":"WIA_DPV_LAST_PICTURE_TAKEN_STR","features":[377]},{"name":"WIA_ENDORSER_TOK_DATE","features":[377]},{"name":"WIA_ENDORSER_TOK_DAY","features":[377]},{"name":"WIA_ENDORSER_TOK_MONTH","features":[377]},{"name":"WIA_ENDORSER_TOK_PAGE_COUNT","features":[377]},{"name":"WIA_ENDORSER_TOK_TIME","features":[377]},{"name":"WIA_ENDORSER_TOK_YEAR","features":[377]},{"name":"WIA_ERROR_BUSY","features":[377]},{"name":"WIA_ERROR_COVER_OPEN","features":[377]},{"name":"WIA_ERROR_DESTINATION","features":[377]},{"name":"WIA_ERROR_DEVICE_COMMUNICATION","features":[377]},{"name":"WIA_ERROR_DEVICE_LOCKED","features":[377]},{"name":"WIA_ERROR_EXCEPTION_IN_DRIVER","features":[377]},{"name":"WIA_ERROR_GENERAL_ERROR","features":[377]},{"name":"WIA_ERROR_INCORRECT_HARDWARE_SETTING","features":[377]},{"name":"WIA_ERROR_INVALID_COMMAND","features":[377]},{"name":"WIA_ERROR_INVALID_DRIVER_RESPONSE","features":[377]},{"name":"WIA_ERROR_ITEM_DELETED","features":[377]},{"name":"WIA_ERROR_LAMP_OFF","features":[377]},{"name":"WIA_ERROR_MAXIMUM_PRINTER_ENDORSER_COUNTER","features":[377]},{"name":"WIA_ERROR_MULTI_FEED","features":[377]},{"name":"WIA_ERROR_NETWORK_RESERVATION_FAILED","features":[377]},{"name":"WIA_ERROR_OFFLINE","features":[377]},{"name":"WIA_ERROR_PAPER_EMPTY","features":[377]},{"name":"WIA_ERROR_PAPER_JAM","features":[377]},{"name":"WIA_ERROR_PAPER_PROBLEM","features":[377]},{"name":"WIA_ERROR_USER_INTERVENTION","features":[377]},{"name":"WIA_ERROR_WARMING_UP","features":[377]},{"name":"WIA_EVENT_CANCEL_IO","features":[377]},{"name":"WIA_EVENT_COVER_CLOSED","features":[377]},{"name":"WIA_EVENT_COVER_OPEN","features":[377]},{"name":"WIA_EVENT_DEVICE_CONNECTED","features":[377]},{"name":"WIA_EVENT_DEVICE_CONNECTED_STR","features":[377]},{"name":"WIA_EVENT_DEVICE_DISCONNECTED","features":[377]},{"name":"WIA_EVENT_DEVICE_DISCONNECTED_STR","features":[377]},{"name":"WIA_EVENT_DEVICE_NOT_READY","features":[377]},{"name":"WIA_EVENT_DEVICE_READY","features":[377]},{"name":"WIA_EVENT_FEEDER_EMPTIED","features":[377]},{"name":"WIA_EVENT_FEEDER_LOADED","features":[377]},{"name":"WIA_EVENT_FLATBED_LID_CLOSED","features":[377]},{"name":"WIA_EVENT_FLATBED_LID_OPEN","features":[377]},{"name":"WIA_EVENT_HANDLER_NO_ACTION","features":[377]},{"name":"WIA_EVENT_HANDLER_PROMPT","features":[377]},{"name":"WIA_EVENT_ITEM_CREATED","features":[377]},{"name":"WIA_EVENT_ITEM_DELETED","features":[377]},{"name":"WIA_EVENT_POWER_RESUME","features":[377]},{"name":"WIA_EVENT_POWER_SUSPEND","features":[377]},{"name":"WIA_EVENT_SCAN_EMAIL_IMAGE","features":[377]},{"name":"WIA_EVENT_SCAN_FAX_IMAGE","features":[377]},{"name":"WIA_EVENT_SCAN_FILM_IMAGE","features":[377]},{"name":"WIA_EVENT_SCAN_IMAGE","features":[377]},{"name":"WIA_EVENT_SCAN_IMAGE2","features":[377]},{"name":"WIA_EVENT_SCAN_IMAGE3","features":[377]},{"name":"WIA_EVENT_SCAN_IMAGE4","features":[377]},{"name":"WIA_EVENT_SCAN_OCR_IMAGE","features":[377]},{"name":"WIA_EVENT_SCAN_PRINT_IMAGE","features":[377]},{"name":"WIA_EVENT_STI_PROXY","features":[377]},{"name":"WIA_EVENT_STORAGE_CREATED","features":[377]},{"name":"WIA_EVENT_STORAGE_DELETED","features":[377]},{"name":"WIA_EVENT_TREE_UPDATED","features":[377]},{"name":"WIA_EVENT_VOLUME_INSERT","features":[377]},{"name":"WIA_EXTENDED_TRANSFER_INFO","features":[377]},{"name":"WIA_FEEDER_CONTROL_AUTO","features":[377]},{"name":"WIA_FEEDER_CONTROL_MANUAL","features":[377]},{"name":"WIA_FILM_BW_NEGATIVE","features":[377]},{"name":"WIA_FILM_COLOR_NEGATIVE","features":[377]},{"name":"WIA_FILM_COLOR_SLIDE","features":[377]},{"name":"WIA_FINAL_SCAN","features":[377]},{"name":"WIA_FLAG_NOM","features":[377]},{"name":"WIA_FLAG_NUM_ELEMS","features":[377]},{"name":"WIA_FLAG_VALUES","features":[377]},{"name":"WIA_FORMAT_INFO","features":[377]},{"name":"WIA_IMAGEPROC_FILTER_STR","features":[377]},{"name":"WIA_INTENT_BEST_PREVIEW","features":[377]},{"name":"WIA_INTENT_IMAGE_TYPE_COLOR","features":[377]},{"name":"WIA_INTENT_IMAGE_TYPE_GRAYSCALE","features":[377]},{"name":"WIA_INTENT_IMAGE_TYPE_MASK","features":[377]},{"name":"WIA_INTENT_IMAGE_TYPE_TEXT","features":[377]},{"name":"WIA_INTENT_MAXIMIZE_QUALITY","features":[377]},{"name":"WIA_INTENT_MINIMIZE_SIZE","features":[377]},{"name":"WIA_INTENT_NONE","features":[377]},{"name":"WIA_INTENT_SIZE_MASK","features":[377]},{"name":"WIA_IPA_ACCESS_RIGHTS","features":[377]},{"name":"WIA_IPA_ACCESS_RIGHTS_STR","features":[377]},{"name":"WIA_IPA_APP_COLOR_MAPPING","features":[377]},{"name":"WIA_IPA_APP_COLOR_MAPPING_STR","features":[377]},{"name":"WIA_IPA_BITS_PER_CHANNEL","features":[377]},{"name":"WIA_IPA_BITS_PER_CHANNEL_STR","features":[377]},{"name":"WIA_IPA_BUFFER_SIZE","features":[377]},{"name":"WIA_IPA_BUFFER_SIZE_STR","features":[377]},{"name":"WIA_IPA_BYTES_PER_LINE","features":[377]},{"name":"WIA_IPA_BYTES_PER_LINE_STR","features":[377]},{"name":"WIA_IPA_CHANNELS_PER_PIXEL","features":[377]},{"name":"WIA_IPA_CHANNELS_PER_PIXEL_STR","features":[377]},{"name":"WIA_IPA_COLOR_PROFILE","features":[377]},{"name":"WIA_IPA_COLOR_PROFILE_STR","features":[377]},{"name":"WIA_IPA_COMPRESSION","features":[377]},{"name":"WIA_IPA_COMPRESSION_STR","features":[377]},{"name":"WIA_IPA_DATATYPE","features":[377]},{"name":"WIA_IPA_DATATYPE_STR","features":[377]},{"name":"WIA_IPA_DEPTH","features":[377]},{"name":"WIA_IPA_DEPTH_STR","features":[377]},{"name":"WIA_IPA_FILENAME_EXTENSION","features":[377]},{"name":"WIA_IPA_FILENAME_EXTENSION_STR","features":[377]},{"name":"WIA_IPA_FIRST","features":[377]},{"name":"WIA_IPA_FORMAT","features":[377]},{"name":"WIA_IPA_FORMAT_STR","features":[377]},{"name":"WIA_IPA_FULL_ITEM_NAME","features":[377]},{"name":"WIA_IPA_FULL_ITEM_NAME_STR","features":[377]},{"name":"WIA_IPA_GAMMA_CURVES","features":[377]},{"name":"WIA_IPA_GAMMA_CURVES_STR","features":[377]},{"name":"WIA_IPA_ICM_PROFILE_NAME","features":[377]},{"name":"WIA_IPA_ICM_PROFILE_NAME_STR","features":[377]},{"name":"WIA_IPA_ITEMS_STORED","features":[377]},{"name":"WIA_IPA_ITEMS_STORED_STR","features":[377]},{"name":"WIA_IPA_ITEM_CATEGORY","features":[377]},{"name":"WIA_IPA_ITEM_CATEGORY_STR","features":[377]},{"name":"WIA_IPA_ITEM_FLAGS","features":[377]},{"name":"WIA_IPA_ITEM_FLAGS_STR","features":[377]},{"name":"WIA_IPA_ITEM_NAME","features":[377]},{"name":"WIA_IPA_ITEM_NAME_STR","features":[377]},{"name":"WIA_IPA_ITEM_SIZE","features":[377]},{"name":"WIA_IPA_ITEM_SIZE_STR","features":[377]},{"name":"WIA_IPA_ITEM_TIME","features":[377]},{"name":"WIA_IPA_ITEM_TIME_STR","features":[377]},{"name":"WIA_IPA_MIN_BUFFER_SIZE","features":[377]},{"name":"WIA_IPA_MIN_BUFFER_SIZE_STR","features":[377]},{"name":"WIA_IPA_NUMBER_OF_LINES","features":[377]},{"name":"WIA_IPA_NUMBER_OF_LINES_STR","features":[377]},{"name":"WIA_IPA_PIXELS_PER_LINE","features":[377]},{"name":"WIA_IPA_PIXELS_PER_LINE_STR","features":[377]},{"name":"WIA_IPA_PLANAR","features":[377]},{"name":"WIA_IPA_PLANAR_STR","features":[377]},{"name":"WIA_IPA_PREFERRED_FORMAT","features":[377]},{"name":"WIA_IPA_PREFERRED_FORMAT_STR","features":[377]},{"name":"WIA_IPA_PROP_STREAM_COMPAT_ID","features":[377]},{"name":"WIA_IPA_PROP_STREAM_COMPAT_ID_STR","features":[377]},{"name":"WIA_IPA_RAW_BITS_PER_CHANNEL","features":[377]},{"name":"WIA_IPA_RAW_BITS_PER_CHANNEL_STR","features":[377]},{"name":"WIA_IPA_REGION_TYPE","features":[377]},{"name":"WIA_IPA_REGION_TYPE_STR","features":[377]},{"name":"WIA_IPA_SUPPRESS_PROPERTY_PAGE","features":[377]},{"name":"WIA_IPA_SUPPRESS_PROPERTY_PAGE_STR","features":[377]},{"name":"WIA_IPA_TYMED","features":[377]},{"name":"WIA_IPA_TYMED_STR","features":[377]},{"name":"WIA_IPA_UPLOAD_ITEM_SIZE","features":[377]},{"name":"WIA_IPA_UPLOAD_ITEM_SIZE_STR","features":[377]},{"name":"WIA_IPC_AUDIO_AVAILABLE","features":[377]},{"name":"WIA_IPC_AUDIO_AVAILABLE_STR","features":[377]},{"name":"WIA_IPC_AUDIO_DATA","features":[377]},{"name":"WIA_IPC_AUDIO_DATA_FORMAT","features":[377]},{"name":"WIA_IPC_AUDIO_DATA_FORMAT_STR","features":[377]},{"name":"WIA_IPC_AUDIO_DATA_STR","features":[377]},{"name":"WIA_IPC_FIRST","features":[377]},{"name":"WIA_IPC_NUM_PICT_PER_ROW","features":[377]},{"name":"WIA_IPC_NUM_PICT_PER_ROW_STR","features":[377]},{"name":"WIA_IPC_SEQUENCE","features":[377]},{"name":"WIA_IPC_SEQUENCE_STR","features":[377]},{"name":"WIA_IPC_THUMBNAIL","features":[377]},{"name":"WIA_IPC_THUMBNAIL_STR","features":[377]},{"name":"WIA_IPC_THUMB_HEIGHT","features":[377]},{"name":"WIA_IPC_THUMB_HEIGHT_STR","features":[377]},{"name":"WIA_IPC_THUMB_WIDTH","features":[377]},{"name":"WIA_IPC_THUMB_WIDTH_STR","features":[377]},{"name":"WIA_IPC_TIMEDELAY","features":[377]},{"name":"WIA_IPC_TIMEDELAY_STR","features":[377]},{"name":"WIA_IPS_ALARM","features":[377]},{"name":"WIA_IPS_ALARM_STR","features":[377]},{"name":"WIA_IPS_AUTO_CROP","features":[377]},{"name":"WIA_IPS_AUTO_CROP_STR","features":[377]},{"name":"WIA_IPS_AUTO_DESKEW","features":[377]},{"name":"WIA_IPS_AUTO_DESKEW_STR","features":[377]},{"name":"WIA_IPS_BARCODE_READER","features":[377]},{"name":"WIA_IPS_BARCODE_READER_STR","features":[377]},{"name":"WIA_IPS_BARCODE_SEARCH_DIRECTION","features":[377]},{"name":"WIA_IPS_BARCODE_SEARCH_DIRECTION_STR","features":[377]},{"name":"WIA_IPS_BARCODE_SEARCH_TIMEOUT","features":[377]},{"name":"WIA_IPS_BARCODE_SEARCH_TIMEOUT_STR","features":[377]},{"name":"WIA_IPS_BLANK_PAGES","features":[377]},{"name":"WIA_IPS_BLANK_PAGES_SENSITIVITY","features":[377]},{"name":"WIA_IPS_BLANK_PAGES_SENSITIVITY_STR","features":[377]},{"name":"WIA_IPS_BLANK_PAGES_STR","features":[377]},{"name":"WIA_IPS_BRIGHTNESS","features":[377]},{"name":"WIA_IPS_BRIGHTNESS_STR","features":[377]},{"name":"WIA_IPS_COLOR_DROP","features":[377]},{"name":"WIA_IPS_COLOR_DROP_BLUE","features":[377]},{"name":"WIA_IPS_COLOR_DROP_BLUE_STR","features":[377]},{"name":"WIA_IPS_COLOR_DROP_GREEN","features":[377]},{"name":"WIA_IPS_COLOR_DROP_GREEN_STR","features":[377]},{"name":"WIA_IPS_COLOR_DROP_MULTI","features":[377]},{"name":"WIA_IPS_COLOR_DROP_MULTI_STR","features":[377]},{"name":"WIA_IPS_COLOR_DROP_RED","features":[377]},{"name":"WIA_IPS_COLOR_DROP_RED_STR","features":[377]},{"name":"WIA_IPS_COLOR_DROP_STR","features":[377]},{"name":"WIA_IPS_CONTRAST","features":[377]},{"name":"WIA_IPS_CONTRAST_STR","features":[377]},{"name":"WIA_IPS_CUR_INTENT","features":[377]},{"name":"WIA_IPS_CUR_INTENT_STR","features":[377]},{"name":"WIA_IPS_DESKEW_X","features":[377]},{"name":"WIA_IPS_DESKEW_X_STR","features":[377]},{"name":"WIA_IPS_DESKEW_Y","features":[377]},{"name":"WIA_IPS_DESKEW_Y_STR","features":[377]},{"name":"WIA_IPS_DOCUMENT_HANDLING_SELECT","features":[377]},{"name":"WIA_IPS_DOCUMENT_HANDLING_SELECT_STR","features":[377]},{"name":"WIA_IPS_ENABLED_BARCODE_TYPES","features":[377]},{"name":"WIA_IPS_ENABLED_BARCODE_TYPES_STR","features":[377]},{"name":"WIA_IPS_ENABLED_PATCH_CODE_TYPES","features":[377]},{"name":"WIA_IPS_ENABLED_PATCH_CODE_TYPES_STR","features":[377]},{"name":"WIA_IPS_FEEDER_CONTROL","features":[377]},{"name":"WIA_IPS_FEEDER_CONTROL_STR","features":[377]},{"name":"WIA_IPS_FILM_NODE_NAME","features":[377]},{"name":"WIA_IPS_FILM_NODE_NAME_STR","features":[377]},{"name":"WIA_IPS_FILM_SCAN_MODE","features":[377]},{"name":"WIA_IPS_FILM_SCAN_MODE_STR","features":[377]},{"name":"WIA_IPS_FIRST","features":[377]},{"name":"WIA_IPS_INVERT","features":[377]},{"name":"WIA_IPS_INVERT_STR","features":[377]},{"name":"WIA_IPS_JOB_SEPARATORS","features":[377]},{"name":"WIA_IPS_JOB_SEPARATORS_STR","features":[377]},{"name":"WIA_IPS_LAMP","features":[377]},{"name":"WIA_IPS_LAMP_AUTO_OFF","features":[377]},{"name":"WIA_IPS_LAMP_AUTO_OFF_STR","features":[377]},{"name":"WIA_IPS_LAMP_STR","features":[377]},{"name":"WIA_IPS_LONG_DOCUMENT","features":[377]},{"name":"WIA_IPS_LONG_DOCUMENT_STR","features":[377]},{"name":"WIA_IPS_MAXIMUM_BARCODES_PER_PAGE","features":[377]},{"name":"WIA_IPS_MAXIMUM_BARCODES_PER_PAGE_STR","features":[377]},{"name":"WIA_IPS_MAXIMUM_BARCODE_SEARCH_RETRIES","features":[377]},{"name":"WIA_IPS_MAXIMUM_BARCODE_SEARCH_RETRIES_STR","features":[377]},{"name":"WIA_IPS_MAX_HORIZONTAL_SIZE","features":[377]},{"name":"WIA_IPS_MAX_HORIZONTAL_SIZE_STR","features":[377]},{"name":"WIA_IPS_MAX_VERTICAL_SIZE","features":[377]},{"name":"WIA_IPS_MAX_VERTICAL_SIZE_STR","features":[377]},{"name":"WIA_IPS_MICR_READER","features":[377]},{"name":"WIA_IPS_MICR_READER_STR","features":[377]},{"name":"WIA_IPS_MIN_HORIZONTAL_SIZE","features":[377]},{"name":"WIA_IPS_MIN_HORIZONTAL_SIZE_STR","features":[377]},{"name":"WIA_IPS_MIN_VERTICAL_SIZE","features":[377]},{"name":"WIA_IPS_MIN_VERTICAL_SIZE_STR","features":[377]},{"name":"WIA_IPS_MIRROR","features":[377]},{"name":"WIA_IPS_MIRROR_STR","features":[377]},{"name":"WIA_IPS_MULTI_FEED","features":[377]},{"name":"WIA_IPS_MULTI_FEED_DETECT_METHOD","features":[377]},{"name":"WIA_IPS_MULTI_FEED_DETECT_METHOD_STR","features":[377]},{"name":"WIA_IPS_MULTI_FEED_SENSITIVITY","features":[377]},{"name":"WIA_IPS_MULTI_FEED_SENSITIVITY_STR","features":[377]},{"name":"WIA_IPS_MULTI_FEED_STR","features":[377]},{"name":"WIA_IPS_OPTICAL_XRES","features":[377]},{"name":"WIA_IPS_OPTICAL_XRES_STR","features":[377]},{"name":"WIA_IPS_OPTICAL_YRES","features":[377]},{"name":"WIA_IPS_OPTICAL_YRES_STR","features":[377]},{"name":"WIA_IPS_ORIENTATION","features":[377]},{"name":"WIA_IPS_ORIENTATION_STR","features":[377]},{"name":"WIA_IPS_OVER_SCAN","features":[377]},{"name":"WIA_IPS_OVER_SCAN_BOTTOM","features":[377]},{"name":"WIA_IPS_OVER_SCAN_BOTTOM_STR","features":[377]},{"name":"WIA_IPS_OVER_SCAN_LEFT","features":[377]},{"name":"WIA_IPS_OVER_SCAN_LEFT_STR","features":[377]},{"name":"WIA_IPS_OVER_SCAN_RIGHT","features":[377]},{"name":"WIA_IPS_OVER_SCAN_RIGHT_STR","features":[377]},{"name":"WIA_IPS_OVER_SCAN_STR","features":[377]},{"name":"WIA_IPS_OVER_SCAN_TOP","features":[377]},{"name":"WIA_IPS_OVER_SCAN_TOP_STR","features":[377]},{"name":"WIA_IPS_PAGES","features":[377]},{"name":"WIA_IPS_PAGES_STR","features":[377]},{"name":"WIA_IPS_PAGE_HEIGHT","features":[377]},{"name":"WIA_IPS_PAGE_HEIGHT_STR","features":[377]},{"name":"WIA_IPS_PAGE_SIZE","features":[377]},{"name":"WIA_IPS_PAGE_SIZE_STR","features":[377]},{"name":"WIA_IPS_PAGE_WIDTH","features":[377]},{"name":"WIA_IPS_PAGE_WIDTH_STR","features":[377]},{"name":"WIA_IPS_PATCH_CODE_READER","features":[377]},{"name":"WIA_IPS_PATCH_CODE_READER_STR","features":[377]},{"name":"WIA_IPS_PHOTOMETRIC_INTERP","features":[377]},{"name":"WIA_IPS_PHOTOMETRIC_INTERP_STR","features":[377]},{"name":"WIA_IPS_PREVIEW","features":[377]},{"name":"WIA_IPS_PREVIEW_STR","features":[377]},{"name":"WIA_IPS_PREVIEW_TYPE","features":[377]},{"name":"WIA_IPS_PREVIEW_TYPE_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_CHARACTER_ROTATION","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_CHARACTER_ROTATION_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER_DIGITS","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER_DIGITS_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_FONT_TYPE","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_FONT_TYPE_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_DOWNLOAD","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_DOWNLOAD_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_HEIGHT","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_HEIGHT_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_WIDTH","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_WIDTH_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_HEIGHT","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_HEIGHT_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_WIDTH","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_WIDTH_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_POSITION","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_POSITION_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_UPLOAD","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_UPLOAD_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_INK","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_INK_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_CHARACTERS","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_CHARACTERS_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_GRAPHICS","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_GRAPHICS_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_NUM_LINES","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_NUM_LINES_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_ORDER","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_ORDER_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_PADDING","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_PADDING_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_STEP","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_STEP_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_STRING","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_STRING_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_DOWNLOAD","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_DOWNLOAD_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_UPLOAD","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_UPLOAD_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_CHARACTERS","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_CHARACTERS_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_FORMAT_SPECIFIERS","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_FORMAT_SPECIFIERS_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_XOFFSET","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_XOFFSET_STR","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_YOFFSET","features":[377]},{"name":"WIA_IPS_PRINTER_ENDORSER_YOFFSET_STR","features":[377]},{"name":"WIA_IPS_ROTATION","features":[377]},{"name":"WIA_IPS_ROTATION_STR","features":[377]},{"name":"WIA_IPS_SCAN_AHEAD","features":[377]},{"name":"WIA_IPS_SCAN_AHEAD_CAPACITY","features":[377]},{"name":"WIA_IPS_SCAN_AHEAD_CAPACITY_STR","features":[377]},{"name":"WIA_IPS_SCAN_AHEAD_STR","features":[377]},{"name":"WIA_IPS_SEGMENTATION","features":[377]},{"name":"WIA_IPS_SEGMENTATION_STR","features":[377]},{"name":"WIA_IPS_SHEET_FEEDER_REGISTRATION","features":[377]},{"name":"WIA_IPS_SHEET_FEEDER_REGISTRATION_STR","features":[377]},{"name":"WIA_IPS_SHOW_PREVIEW_CONTROL","features":[377]},{"name":"WIA_IPS_SHOW_PREVIEW_CONTROL_STR","features":[377]},{"name":"WIA_IPS_SUPPORTED_BARCODE_TYPES","features":[377]},{"name":"WIA_IPS_SUPPORTED_BARCODE_TYPES_STR","features":[377]},{"name":"WIA_IPS_SUPPORTED_PATCH_CODE_TYPES","features":[377]},{"name":"WIA_IPS_SUPPORTED_PATCH_CODE_TYPES_STR","features":[377]},{"name":"WIA_IPS_SUPPORTS_CHILD_ITEM_CREATION","features":[377]},{"name":"WIA_IPS_SUPPORTS_CHILD_ITEM_CREATION_STR","features":[377]},{"name":"WIA_IPS_THRESHOLD","features":[377]},{"name":"WIA_IPS_THRESHOLD_STR","features":[377]},{"name":"WIA_IPS_TRANSFER_CAPABILITIES","features":[377]},{"name":"WIA_IPS_TRANSFER_CAPABILITIES_STR","features":[377]},{"name":"WIA_IPS_WARM_UP_TIME","features":[377]},{"name":"WIA_IPS_WARM_UP_TIME_STR","features":[377]},{"name":"WIA_IPS_XEXTENT","features":[377]},{"name":"WIA_IPS_XEXTENT_STR","features":[377]},{"name":"WIA_IPS_XPOS","features":[377]},{"name":"WIA_IPS_XPOS_STR","features":[377]},{"name":"WIA_IPS_XRES","features":[377]},{"name":"WIA_IPS_XRES_STR","features":[377]},{"name":"WIA_IPS_XSCALING","features":[377]},{"name":"WIA_IPS_XSCALING_STR","features":[377]},{"name":"WIA_IPS_YEXTENT","features":[377]},{"name":"WIA_IPS_YEXTENT_STR","features":[377]},{"name":"WIA_IPS_YPOS","features":[377]},{"name":"WIA_IPS_YPOS_STR","features":[377]},{"name":"WIA_IPS_YRES","features":[377]},{"name":"WIA_IPS_YRES_STR","features":[377]},{"name":"WIA_IPS_YSCALING","features":[377]},{"name":"WIA_IPS_YSCALING_STR","features":[377]},{"name":"WIA_IS_DEFAULT_HANDLER","features":[377]},{"name":"WIA_ITEM_CAN_BE_DELETED","features":[377]},{"name":"WIA_ITEM_READ","features":[377]},{"name":"WIA_ITEM_WRITE","features":[377]},{"name":"WIA_LAMP_OFF","features":[377]},{"name":"WIA_LAMP_ON","features":[377]},{"name":"WIA_LINE_ORDER_BOTTOM_TO_TOP","features":[377]},{"name":"WIA_LINE_ORDER_TOP_TO_BOTTOM","features":[377]},{"name":"WIA_LIST_COUNT","features":[377]},{"name":"WIA_LIST_NOM","features":[377]},{"name":"WIA_LIST_NUM_ELEMS","features":[377]},{"name":"WIA_LIST_VALUES","features":[377]},{"name":"WIA_LONG_DOCUMENT_DISABLED","features":[377]},{"name":"WIA_LONG_DOCUMENT_ENABLED","features":[377]},{"name":"WIA_LONG_DOCUMENT_SPLIT","features":[377]},{"name":"WIA_MAJOR_EVENT_DEVICE_CONNECT","features":[377]},{"name":"WIA_MAJOR_EVENT_DEVICE_DISCONNECT","features":[377]},{"name":"WIA_MAJOR_EVENT_PICTURE_DELETED","features":[377]},{"name":"WIA_MAJOR_EVENT_PICTURE_TAKEN","features":[377]},{"name":"WIA_MAX_CTX_SIZE","features":[377]},{"name":"WIA_MICR","features":[377]},{"name":"WIA_MICR_INFO","features":[377]},{"name":"WIA_MICR_READER_AUTO","features":[377]},{"name":"WIA_MICR_READER_DISABLED","features":[377]},{"name":"WIA_MICR_READER_FEEDER_BACK","features":[377]},{"name":"WIA_MICR_READER_FEEDER_DUPLEX","features":[377]},{"name":"WIA_MICR_READER_FEEDER_FRONT","features":[377]},{"name":"WIA_MICR_READER_FLATBED","features":[377]},{"name":"WIA_MULTI_FEED_DETECT_CONTINUE","features":[377]},{"name":"WIA_MULTI_FEED_DETECT_DISABLED","features":[377]},{"name":"WIA_MULTI_FEED_DETECT_METHOD_LENGTH","features":[377]},{"name":"WIA_MULTI_FEED_DETECT_METHOD_OVERLAP","features":[377]},{"name":"WIA_MULTI_FEED_DETECT_STOP_ERROR","features":[377]},{"name":"WIA_MULTI_FEED_DETECT_STOP_SUCCESS","features":[377]},{"name":"WIA_NOTIFICATION_EVENT","features":[377]},{"name":"WIA_NUM_DIP","features":[377]},{"name":"WIA_NUM_IPC","features":[377]},{"name":"WIA_ORDER_BGR","features":[377]},{"name":"WIA_ORDER_RGB","features":[377]},{"name":"WIA_OVER_SCAN_ALL","features":[377]},{"name":"WIA_OVER_SCAN_DISABLED","features":[377]},{"name":"WIA_OVER_SCAN_LEFT_RIGHT","features":[377]},{"name":"WIA_OVER_SCAN_TOP_BOTTOM","features":[377]},{"name":"WIA_PACKED_PIXEL","features":[377]},{"name":"WIA_PAGE_A4","features":[377]},{"name":"WIA_PAGE_AUTO","features":[377]},{"name":"WIA_PAGE_BUSINESSCARD","features":[377]},{"name":"WIA_PAGE_CUSTOM","features":[377]},{"name":"WIA_PAGE_CUSTOM_BASE","features":[377]},{"name":"WIA_PAGE_DIN_2B","features":[377]},{"name":"WIA_PAGE_DIN_4B","features":[377]},{"name":"WIA_PAGE_ISO_A0","features":[377]},{"name":"WIA_PAGE_ISO_A1","features":[377]},{"name":"WIA_PAGE_ISO_A10","features":[377]},{"name":"WIA_PAGE_ISO_A2","features":[377]},{"name":"WIA_PAGE_ISO_A3","features":[377]},{"name":"WIA_PAGE_ISO_A4","features":[377]},{"name":"WIA_PAGE_ISO_A5","features":[377]},{"name":"WIA_PAGE_ISO_A6","features":[377]},{"name":"WIA_PAGE_ISO_A7","features":[377]},{"name":"WIA_PAGE_ISO_A8","features":[377]},{"name":"WIA_PAGE_ISO_A9","features":[377]},{"name":"WIA_PAGE_ISO_B0","features":[377]},{"name":"WIA_PAGE_ISO_B1","features":[377]},{"name":"WIA_PAGE_ISO_B10","features":[377]},{"name":"WIA_PAGE_ISO_B2","features":[377]},{"name":"WIA_PAGE_ISO_B3","features":[377]},{"name":"WIA_PAGE_ISO_B4","features":[377]},{"name":"WIA_PAGE_ISO_B5","features":[377]},{"name":"WIA_PAGE_ISO_B6","features":[377]},{"name":"WIA_PAGE_ISO_B7","features":[377]},{"name":"WIA_PAGE_ISO_B8","features":[377]},{"name":"WIA_PAGE_ISO_B9","features":[377]},{"name":"WIA_PAGE_ISO_C0","features":[377]},{"name":"WIA_PAGE_ISO_C1","features":[377]},{"name":"WIA_PAGE_ISO_C10","features":[377]},{"name":"WIA_PAGE_ISO_C2","features":[377]},{"name":"WIA_PAGE_ISO_C3","features":[377]},{"name":"WIA_PAGE_ISO_C4","features":[377]},{"name":"WIA_PAGE_ISO_C5","features":[377]},{"name":"WIA_PAGE_ISO_C6","features":[377]},{"name":"WIA_PAGE_ISO_C7","features":[377]},{"name":"WIA_PAGE_ISO_C8","features":[377]},{"name":"WIA_PAGE_ISO_C9","features":[377]},{"name":"WIA_PAGE_JIS_2A","features":[377]},{"name":"WIA_PAGE_JIS_4A","features":[377]},{"name":"WIA_PAGE_JIS_B0","features":[377]},{"name":"WIA_PAGE_JIS_B1","features":[377]},{"name":"WIA_PAGE_JIS_B10","features":[377]},{"name":"WIA_PAGE_JIS_B2","features":[377]},{"name":"WIA_PAGE_JIS_B3","features":[377]},{"name":"WIA_PAGE_JIS_B4","features":[377]},{"name":"WIA_PAGE_JIS_B5","features":[377]},{"name":"WIA_PAGE_JIS_B6","features":[377]},{"name":"WIA_PAGE_JIS_B7","features":[377]},{"name":"WIA_PAGE_JIS_B8","features":[377]},{"name":"WIA_PAGE_JIS_B9","features":[377]},{"name":"WIA_PAGE_LETTER","features":[377]},{"name":"WIA_PAGE_USLEDGER","features":[377]},{"name":"WIA_PAGE_USLEGAL","features":[377]},{"name":"WIA_PAGE_USLETTER","features":[377]},{"name":"WIA_PAGE_USSTATEMENT","features":[377]},{"name":"WIA_PATCH_CODES","features":[377]},{"name":"WIA_PATCH_CODE_1","features":[377]},{"name":"WIA_PATCH_CODE_10","features":[377]},{"name":"WIA_PATCH_CODE_11","features":[377]},{"name":"WIA_PATCH_CODE_12","features":[377]},{"name":"WIA_PATCH_CODE_13","features":[377]},{"name":"WIA_PATCH_CODE_14","features":[377]},{"name":"WIA_PATCH_CODE_2","features":[377]},{"name":"WIA_PATCH_CODE_3","features":[377]},{"name":"WIA_PATCH_CODE_4","features":[377]},{"name":"WIA_PATCH_CODE_6","features":[377]},{"name":"WIA_PATCH_CODE_7","features":[377]},{"name":"WIA_PATCH_CODE_8","features":[377]},{"name":"WIA_PATCH_CODE_9","features":[377]},{"name":"WIA_PATCH_CODE_CUSTOM_BASE","features":[377]},{"name":"WIA_PATCH_CODE_INFO","features":[377]},{"name":"WIA_PATCH_CODE_READER_AUTO","features":[377]},{"name":"WIA_PATCH_CODE_READER_DISABLED","features":[377]},{"name":"WIA_PATCH_CODE_READER_FEEDER_BACK","features":[377]},{"name":"WIA_PATCH_CODE_READER_FEEDER_DUPLEX","features":[377]},{"name":"WIA_PATCH_CODE_READER_FEEDER_FRONT","features":[377]},{"name":"WIA_PATCH_CODE_READER_FLATBED","features":[377]},{"name":"WIA_PATCH_CODE_T","features":[377]},{"name":"WIA_PATCH_CODE_UNKNOWN","features":[377]},{"name":"WIA_PHOTO_WHITE_0","features":[377]},{"name":"WIA_PHOTO_WHITE_1","features":[377]},{"name":"WIA_PLANAR","features":[377]},{"name":"WIA_PREVIEW_SCAN","features":[377]},{"name":"WIA_PRINTER_ENDORSER_AFTER_SCAN","features":[377]},{"name":"WIA_PRINTER_ENDORSER_AUTO","features":[377]},{"name":"WIA_PRINTER_ENDORSER_BEFORE_SCAN","features":[377]},{"name":"WIA_PRINTER_ENDORSER_DIGITAL","features":[377]},{"name":"WIA_PRINTER_ENDORSER_DISABLED","features":[377]},{"name":"WIA_PRINTER_ENDORSER_FEEDER_BACK","features":[377]},{"name":"WIA_PRINTER_ENDORSER_FEEDER_DUPLEX","features":[377]},{"name":"WIA_PRINTER_ENDORSER_FEEDER_FRONT","features":[377]},{"name":"WIA_PRINTER_ENDORSER_FLATBED","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BACKGROUND","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BOTTOM","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BOTTOM_LEFT","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BOTTOM_RIGHT","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_DEVICE_DEFAULT","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_LEFT","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_RIGHT","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_TOP","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_TOP_LEFT","features":[377]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_TOP_RIGHT","features":[377]},{"name":"WIA_PRINT_AM_PM","features":[377]},{"name":"WIA_PRINT_DATE","features":[377]},{"name":"WIA_PRINT_DAY","features":[377]},{"name":"WIA_PRINT_FONT_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_EXTRA_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_ITALIC","features":[377]},{"name":"WIA_PRINT_FONT_ITALIC_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_ITALIC_EXTRA_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_LARGE","features":[377]},{"name":"WIA_PRINT_FONT_LARGE_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_LARGE_EXTRA_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_LARGE_ITALIC","features":[377]},{"name":"WIA_PRINT_FONT_LARGE_ITALIC_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_LARGE_ITALIC_EXTRA_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_NORMAL","features":[377]},{"name":"WIA_PRINT_FONT_SMALL","features":[377]},{"name":"WIA_PRINT_FONT_SMALL_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_SMALL_EXTRA_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_SMALL_ITALIC","features":[377]},{"name":"WIA_PRINT_FONT_SMALL_ITALIC_BOLD","features":[377]},{"name":"WIA_PRINT_FONT_SMALL_ITALIC_EXTRA_BOLD","features":[377]},{"name":"WIA_PRINT_HOUR_12H","features":[377]},{"name":"WIA_PRINT_HOUR_24H","features":[377]},{"name":"WIA_PRINT_IMAGE","features":[377]},{"name":"WIA_PRINT_MILLISECOND","features":[377]},{"name":"WIA_PRINT_MINUTE","features":[377]},{"name":"WIA_PRINT_MONTH","features":[377]},{"name":"WIA_PRINT_MONTH_NAME","features":[377]},{"name":"WIA_PRINT_MONTH_SHORT","features":[377]},{"name":"WIA_PRINT_PADDING_BLANK","features":[377]},{"name":"WIA_PRINT_PADDING_NONE","features":[377]},{"name":"WIA_PRINT_PADDING_ZERO","features":[377]},{"name":"WIA_PRINT_PAGE_COUNT","features":[377]},{"name":"WIA_PRINT_SECOND","features":[377]},{"name":"WIA_PRINT_TIME_12H","features":[377]},{"name":"WIA_PRINT_TIME_24H","features":[377]},{"name":"WIA_PRINT_WEEK_DAY","features":[377]},{"name":"WIA_PRINT_WEEK_DAY_SHORT","features":[377]},{"name":"WIA_PRINT_YEAR","features":[377]},{"name":"WIA_PRIVATE_DEVPROP","features":[377]},{"name":"WIA_PRIVATE_ITEMPROP","features":[377]},{"name":"WIA_PROPERTY_CONTEXT","features":[377,303]},{"name":"WIA_PROPERTY_INFO","features":[377,378]},{"name":"WIA_PROPID_TO_NAME","features":[377]},{"name":"WIA_PROPPAGE_CAMERA_ITEM_GENERAL","features":[377]},{"name":"WIA_PROPPAGE_DEVICE_GENERAL","features":[377]},{"name":"WIA_PROPPAGE_SCANNER_ITEM_GENERAL","features":[377]},{"name":"WIA_PROP_CACHEABLE","features":[377]},{"name":"WIA_PROP_FLAG","features":[377]},{"name":"WIA_PROP_LIST","features":[377]},{"name":"WIA_PROP_NONE","features":[377]},{"name":"WIA_PROP_RANGE","features":[377]},{"name":"WIA_PROP_READ","features":[377]},{"name":"WIA_PROP_SYNC_REQUIRED","features":[377]},{"name":"WIA_PROP_WRITE","features":[377]},{"name":"WIA_RANGE_MAX","features":[377]},{"name":"WIA_RANGE_MIN","features":[377]},{"name":"WIA_RANGE_NOM","features":[377]},{"name":"WIA_RANGE_NUM_ELEMS","features":[377]},{"name":"WIA_RANGE_STEP","features":[377]},{"name":"WIA_RAW_HEADER","features":[377]},{"name":"WIA_REGISTER_EVENT_CALLBACK","features":[377]},{"name":"WIA_RESERVED_FOR_NEW_PROPS","features":[377]},{"name":"WIA_SCAN_AHEAD_ALL","features":[377]},{"name":"WIA_SCAN_AHEAD_DISABLED","features":[377]},{"name":"WIA_SCAN_AHEAD_ENABLED","features":[377]},{"name":"WIA_SEGMENTATION_FILTER_STR","features":[377]},{"name":"WIA_SELECT_DEVICE_NODEFAULT","features":[377]},{"name":"WIA_SEPARATOR_DETECT_NOSCAN_CONTINUE","features":[377]},{"name":"WIA_SEPARATOR_DETECT_NOSCAN_STOP","features":[377]},{"name":"WIA_SEPARATOR_DETECT_SCAN_CONTINUE","features":[377]},{"name":"WIA_SEPARATOR_DETECT_SCAN_STOP","features":[377]},{"name":"WIA_SEPARATOR_DISABLED","features":[377]},{"name":"WIA_SET_DEFAULT_HANDLER","features":[377]},{"name":"WIA_SHOW_PREVIEW_CONTROL","features":[377]},{"name":"WIA_STATUS_CALIBRATING","features":[377]},{"name":"WIA_STATUS_CLEAR","features":[377]},{"name":"WIA_STATUS_END_OF_MEDIA","features":[377]},{"name":"WIA_STATUS_NETWORK_DEVICE_RESERVED","features":[377]},{"name":"WIA_STATUS_NOT_HANDLED","features":[377]},{"name":"WIA_STATUS_RESERVING_NETWORK_DEVICE","features":[377]},{"name":"WIA_STATUS_SKIP_ITEM","features":[377]},{"name":"WIA_STATUS_WARMING_UP","features":[377]},{"name":"WIA_S_CHANGE_DEVICE","features":[377]},{"name":"WIA_S_NO_DEVICE_AVAILABLE","features":[377]},{"name":"WIA_TRANSFER_ACQUIRE_CHILDREN","features":[377]},{"name":"WIA_TRANSFER_CHILDREN_SINGLE_SCAN","features":[377]},{"name":"WIA_TRANSFER_MSG_DEVICE_STATUS","features":[377]},{"name":"WIA_TRANSFER_MSG_END_OF_STREAM","features":[377]},{"name":"WIA_TRANSFER_MSG_END_OF_TRANSFER","features":[377]},{"name":"WIA_TRANSFER_MSG_NEW_PAGE","features":[377]},{"name":"WIA_TRANSFER_MSG_STATUS","features":[377]},{"name":"WIA_UNREGISTER_EVENT_CALLBACK","features":[377]},{"name":"WIA_USE_SEGMENTATION_FILTER","features":[377]},{"name":"WIA_WSD_FRIENDLY_NAME","features":[377]},{"name":"WIA_WSD_FRIENDLY_NAME_STR","features":[377]},{"name":"WIA_WSD_MANUFACTURER","features":[377]},{"name":"WIA_WSD_MANUFACTURER_STR","features":[377]},{"name":"WIA_WSD_MANUFACTURER_URL","features":[377]},{"name":"WIA_WSD_MANUFACTURER_URL_STR","features":[377]},{"name":"WIA_WSD_MODEL_NAME","features":[377]},{"name":"WIA_WSD_MODEL_NAME_STR","features":[377]},{"name":"WIA_WSD_MODEL_NUMBER","features":[377]},{"name":"WIA_WSD_MODEL_NUMBER_STR","features":[377]},{"name":"WIA_WSD_MODEL_URL","features":[377]},{"name":"WIA_WSD_MODEL_URL_STR","features":[377]},{"name":"WIA_WSD_PRESENTATION_URL","features":[377]},{"name":"WIA_WSD_PRESENTATION_URL_STR","features":[377]},{"name":"WIA_WSD_SCAN_AVAILABLE_ITEM","features":[377]},{"name":"WIA_WSD_SCAN_AVAILABLE_ITEM_STR","features":[377]},{"name":"WIA_WSD_SERIAL_NUMBER","features":[377]},{"name":"WIA_WSD_SERIAL_NUMBER_STR","features":[377]},{"name":"WiaAudFmt_AIFF","features":[377]},{"name":"WiaAudFmt_MP3","features":[377]},{"name":"WiaAudFmt_WAV","features":[377]},{"name":"WiaAudFmt_WMA","features":[377]},{"name":"WiaDevMgr","features":[377]},{"name":"WiaDevMgr2","features":[377]},{"name":"WiaImgFmt_ASF","features":[377]},{"name":"WiaImgFmt_AVI","features":[377]},{"name":"WiaImgFmt_BMP","features":[377]},{"name":"WiaImgFmt_CIFF","features":[377]},{"name":"WiaImgFmt_CSV","features":[377]},{"name":"WiaImgFmt_DPOF","features":[377]},{"name":"WiaImgFmt_EMF","features":[377]},{"name":"WiaImgFmt_EXEC","features":[377]},{"name":"WiaImgFmt_EXIF","features":[377]},{"name":"WiaImgFmt_FLASHPIX","features":[377]},{"name":"WiaImgFmt_GIF","features":[377]},{"name":"WiaImgFmt_HTML","features":[377]},{"name":"WiaImgFmt_ICO","features":[377]},{"name":"WiaImgFmt_JBIG","features":[377]},{"name":"WiaImgFmt_JBIG2","features":[377]},{"name":"WiaImgFmt_JPEG","features":[377]},{"name":"WiaImgFmt_JPEG2K","features":[377]},{"name":"WiaImgFmt_JPEG2KX","features":[377]},{"name":"WiaImgFmt_MEMORYBMP","features":[377]},{"name":"WiaImgFmt_MPG","features":[377]},{"name":"WiaImgFmt_OXPS","features":[377]},{"name":"WiaImgFmt_PDFA","features":[377]},{"name":"WiaImgFmt_PHOTOCD","features":[377]},{"name":"WiaImgFmt_PICT","features":[377]},{"name":"WiaImgFmt_PNG","features":[377]},{"name":"WiaImgFmt_RAW","features":[377]},{"name":"WiaImgFmt_RAWBAR","features":[377]},{"name":"WiaImgFmt_RAWMIC","features":[377]},{"name":"WiaImgFmt_RAWPAT","features":[377]},{"name":"WiaImgFmt_RAWRGB","features":[377]},{"name":"WiaImgFmt_RTF","features":[377]},{"name":"WiaImgFmt_SCRIPT","features":[377]},{"name":"WiaImgFmt_TIFF","features":[377]},{"name":"WiaImgFmt_TXT","features":[377]},{"name":"WiaImgFmt_UNDEFINED","features":[377]},{"name":"WiaImgFmt_UNICODE16","features":[377]},{"name":"WiaImgFmt_WMF","features":[377]},{"name":"WiaImgFmt_XML","features":[377]},{"name":"WiaImgFmt_XMLBAR","features":[377]},{"name":"WiaImgFmt_XMLMIC","features":[377]},{"name":"WiaImgFmt_XMLPAT","features":[377]},{"name":"WiaImgFmt_XPS","features":[377]},{"name":"WiaItemTypeAnalyze","features":[377]},{"name":"WiaItemTypeAudio","features":[377]},{"name":"WiaItemTypeBurst","features":[377]},{"name":"WiaItemTypeDeleted","features":[377]},{"name":"WiaItemTypeDevice","features":[377]},{"name":"WiaItemTypeDisconnected","features":[377]},{"name":"WiaItemTypeDocument","features":[377]},{"name":"WiaItemTypeFile","features":[377]},{"name":"WiaItemTypeFolder","features":[377]},{"name":"WiaItemTypeFree","features":[377]},{"name":"WiaItemTypeGenerated","features":[377]},{"name":"WiaItemTypeHPanorama","features":[377]},{"name":"WiaItemTypeHasAttachments","features":[377]},{"name":"WiaItemTypeImage","features":[377]},{"name":"WiaItemTypeMask","features":[377]},{"name":"WiaItemTypeProgrammableDataSource","features":[377]},{"name":"WiaItemTypeRemoved","features":[377]},{"name":"WiaItemTypeRoot","features":[377]},{"name":"WiaItemTypeStorage","features":[377]},{"name":"WiaItemTypeTransfer","features":[377]},{"name":"WiaItemTypeTwainCapabilityPassThrough","features":[377]},{"name":"WiaItemTypeVPanorama","features":[377]},{"name":"WiaItemTypeVideo","features":[377]},{"name":"WiaLog","features":[377]},{"name":"WiaTransferParams","features":[377]},{"name":"WiaVideo","features":[377]},{"name":"g_dwDebugFlags","features":[377]}],"381":[{"name":"CLSID_WPD_NAMESPACE_EXTENSION","features":[379]},{"name":"DELETE_OBJECT_OPTIONS","features":[379]},{"name":"DEVICE_RADIO_STATE","features":[379]},{"name":"DEVPKEY_MTPBTH_IsConnected","features":[379,336]},{"name":"DEVSVCTYPE_ABSTRACT","features":[379]},{"name":"DEVSVCTYPE_DEFAULT","features":[379]},{"name":"DEVSVC_SERVICEINFO_VERSION","features":[379]},{"name":"DMProcessConfigXMLFiltered","features":[379]},{"name":"DRS_HW_RADIO_OFF","features":[379]},{"name":"DRS_HW_RADIO_OFF_UNCONTROLLABLE","features":[379]},{"name":"DRS_HW_RADIO_ON_UNCONTROLLABLE","features":[379]},{"name":"DRS_RADIO_INVALID","features":[379]},{"name":"DRS_RADIO_MAX","features":[379]},{"name":"DRS_RADIO_ON","features":[379]},{"name":"DRS_SW_HW_RADIO_OFF","features":[379]},{"name":"DRS_SW_RADIO_OFF","features":[379]},{"name":"ENUM_AnchorResults_AnchorStateInvalid","features":[379]},{"name":"ENUM_AnchorResults_AnchorStateNormal","features":[379]},{"name":"ENUM_AnchorResults_AnchorStateOld","features":[379]},{"name":"ENUM_AnchorResults_ItemStateChanged","features":[379]},{"name":"ENUM_AnchorResults_ItemStateCreated","features":[379]},{"name":"ENUM_AnchorResults_ItemStateDeleted","features":[379]},{"name":"ENUM_AnchorResults_ItemStateInvalid","features":[379]},{"name":"ENUM_AnchorResults_ItemStateUpdated","features":[379]},{"name":"ENUM_CalendarObj_BusyStatusBusy","features":[379]},{"name":"ENUM_CalendarObj_BusyStatusFree","features":[379]},{"name":"ENUM_CalendarObj_BusyStatusOutOfOffice","features":[379]},{"name":"ENUM_CalendarObj_BusyStatusTentative","features":[379]},{"name":"ENUM_DeviceMetadataObj_DefaultCABFalse","features":[379]},{"name":"ENUM_DeviceMetadataObj_DefaultCABTrue","features":[379]},{"name":"ENUM_MessageObj_PatternInstanceFirst","features":[379]},{"name":"ENUM_MessageObj_PatternInstanceFourth","features":[379]},{"name":"ENUM_MessageObj_PatternInstanceLast","features":[379]},{"name":"ENUM_MessageObj_PatternInstanceNone","features":[379]},{"name":"ENUM_MessageObj_PatternInstanceSecond","features":[379]},{"name":"ENUM_MessageObj_PatternInstanceThird","features":[379]},{"name":"ENUM_MessageObj_PatternTypeDaily","features":[379]},{"name":"ENUM_MessageObj_PatternTypeMonthly","features":[379]},{"name":"ENUM_MessageObj_PatternTypeWeekly","features":[379]},{"name":"ENUM_MessageObj_PatternTypeYearly","features":[379]},{"name":"ENUM_MessageObj_PriorityHighest","features":[379]},{"name":"ENUM_MessageObj_PriorityLowest","features":[379]},{"name":"ENUM_MessageObj_PriorityNormal","features":[379]},{"name":"ENUM_MessageObj_ReadFalse","features":[379]},{"name":"ENUM_MessageObj_ReadTrue","features":[379]},{"name":"ENUM_StatusSvc_ChargingActive","features":[379]},{"name":"ENUM_StatusSvc_ChargingInactive","features":[379]},{"name":"ENUM_StatusSvc_ChargingUnknown","features":[379]},{"name":"ENUM_StatusSvc_RoamingActive","features":[379]},{"name":"ENUM_StatusSvc_RoamingInactive","features":[379]},{"name":"ENUM_StatusSvc_RoamingUnknown","features":[379]},{"name":"ENUM_SyncSvc_SyncObjectReferencesDisabled","features":[379]},{"name":"ENUM_SyncSvc_SyncObjectReferencesEnabled","features":[379]},{"name":"ENUM_TaskObj_CompleteFalse","features":[379]},{"name":"ENUM_TaskObj_CompleteTrue","features":[379]},{"name":"E_WPD_DEVICE_ALREADY_OPENED","features":[379]},{"name":"E_WPD_DEVICE_IS_HUNG","features":[379]},{"name":"E_WPD_DEVICE_NOT_OPEN","features":[379]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_DEVICE","features":[379]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_SERVICE","features":[379]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_DEVICE","features":[379]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_SERVICE","features":[379]},{"name":"E_WPD_OBJECT_NOT_COMMITED","features":[379]},{"name":"E_WPD_SERVICE_ALREADY_OPENED","features":[379]},{"name":"E_WPD_SERVICE_BAD_PARAMETER_ORDER","features":[379]},{"name":"E_WPD_SERVICE_NOT_OPEN","features":[379]},{"name":"E_WPD_SMS_INVALID_MESSAGE_BODY","features":[379]},{"name":"E_WPD_SMS_INVALID_RECIPIENT","features":[379]},{"name":"E_WPD_SMS_SERVICE_UNAVAILABLE","features":[379]},{"name":"EnumBthMtpConnectors","features":[379]},{"name":"FACILITY_WPD","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekFriday","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekMonday","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekNone","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekSaturday","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekSunday","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekThursday","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekTuesday","features":[379]},{"name":"FLAG_MessageObj_DayOfWeekWednesday","features":[379]},{"name":"GUID_DEVINTERFACE_WPD","features":[379]},{"name":"GUID_DEVINTERFACE_WPD_PRIVATE","features":[379]},{"name":"GUID_DEVINTERFACE_WPD_SERVICE","features":[379]},{"name":"IConnectionRequestCallback","features":[379]},{"name":"IEnumPortableDeviceConnectors","features":[379]},{"name":"IEnumPortableDeviceObjectIDs","features":[379]},{"name":"IMediaRadioManager","features":[379]},{"name":"IMediaRadioManagerNotifySink","features":[379]},{"name":"IOCTL_WPD_MESSAGE_READWRITE_ACCESS","features":[379]},{"name":"IOCTL_WPD_MESSAGE_READ_ACCESS","features":[379]},{"name":"IPortableDevice","features":[379]},{"name":"IPortableDeviceCapabilities","features":[379]},{"name":"IPortableDeviceConnector","features":[379]},{"name":"IPortableDeviceContent","features":[379]},{"name":"IPortableDeviceContent2","features":[379]},{"name":"IPortableDeviceDataStream","features":[379,354]},{"name":"IPortableDeviceDispatchFactory","features":[379]},{"name":"IPortableDeviceEventCallback","features":[379]},{"name":"IPortableDeviceKeyCollection","features":[379]},{"name":"IPortableDeviceManager","features":[379]},{"name":"IPortableDevicePropVariantCollection","features":[379]},{"name":"IPortableDeviceProperties","features":[379]},{"name":"IPortableDevicePropertiesBulk","features":[379]},{"name":"IPortableDevicePropertiesBulkCallback","features":[379]},{"name":"IPortableDeviceResources","features":[379]},{"name":"IPortableDeviceService","features":[379]},{"name":"IPortableDeviceServiceActivation","features":[379]},{"name":"IPortableDeviceServiceCapabilities","features":[379]},{"name":"IPortableDeviceServiceManager","features":[379]},{"name":"IPortableDeviceServiceMethodCallback","features":[379]},{"name":"IPortableDeviceServiceMethods","features":[379]},{"name":"IPortableDeviceServiceOpenCallback","features":[379]},{"name":"IPortableDeviceUnitsStream","features":[379]},{"name":"IPortableDeviceValues","features":[379]},{"name":"IPortableDeviceValuesCollection","features":[379]},{"name":"IPortableDeviceWebControl","features":[379,354]},{"name":"IRadioInstance","features":[379]},{"name":"IRadioInstanceCollection","features":[379]},{"name":"IWpdSerializer","features":[379]},{"name":"NAME_3GPP2File","features":[379]},{"name":"NAME_3GPPFile","features":[379]},{"name":"NAME_AACFile","features":[379]},{"name":"NAME_AIFFFile","features":[379]},{"name":"NAME_AMRFile","features":[379]},{"name":"NAME_ASFFile","features":[379]},{"name":"NAME_ASXPlaylist","features":[379]},{"name":"NAME_ATSCTSFile","features":[379]},{"name":"NAME_AVCHDFile","features":[379]},{"name":"NAME_AVIFile","features":[379]},{"name":"NAME_AbstractActivity","features":[379]},{"name":"NAME_AbstractActivityOccurrence","features":[379]},{"name":"NAME_AbstractAudioAlbum","features":[379]},{"name":"NAME_AbstractAudioPlaylist","features":[379]},{"name":"NAME_AbstractAudioVideoAlbum","features":[379]},{"name":"NAME_AbstractChapteredProduction","features":[379]},{"name":"NAME_AbstractContact","features":[379]},{"name":"NAME_AbstractContactGroup","features":[379]},{"name":"NAME_AbstractDocument","features":[379]},{"name":"NAME_AbstractImageAlbum","features":[379]},{"name":"NAME_AbstractMediacast","features":[379]},{"name":"NAME_AbstractMessage","features":[379]},{"name":"NAME_AbstractMessageFolder","features":[379]},{"name":"NAME_AbstractMultimediaAlbum","features":[379]},{"name":"NAME_AbstractNote","features":[379]},{"name":"NAME_AbstractTask","features":[379]},{"name":"NAME_AbstractVideoAlbum","features":[379]},{"name":"NAME_AbstractVideoPlaylist","features":[379]},{"name":"NAME_AnchorResults","features":[379]},{"name":"NAME_AnchorResults_Anchor","features":[379]},{"name":"NAME_AnchorResults_AnchorState","features":[379]},{"name":"NAME_AnchorResults_ResultObjectID","features":[379]},{"name":"NAME_AnchorSyncKnowledge","features":[379]},{"name":"NAME_AnchorSyncSvc","features":[379]},{"name":"NAME_AnchorSyncSvc_BeginSync","features":[379]},{"name":"NAME_AnchorSyncSvc_CurrentAnchor","features":[379]},{"name":"NAME_AnchorSyncSvc_EndSync","features":[379]},{"name":"NAME_AnchorSyncSvc_FilterType","features":[379]},{"name":"NAME_AnchorSyncSvc_GetChangesSinceAnchor","features":[379]},{"name":"NAME_AnchorSyncSvc_KnowledgeObjectID","features":[379]},{"name":"NAME_AnchorSyncSvc_LastSyncProxyID","features":[379]},{"name":"NAME_AnchorSyncSvc_LocalOnlyDelete","features":[379]},{"name":"NAME_AnchorSyncSvc_ProviderVersion","features":[379]},{"name":"NAME_AnchorSyncSvc_ReplicaID","features":[379]},{"name":"NAME_AnchorSyncSvc_SyncFormat","features":[379]},{"name":"NAME_AnchorSyncSvc_VersionProps","features":[379]},{"name":"NAME_Association","features":[379]},{"name":"NAME_AudibleFile","features":[379]},{"name":"NAME_AudioObj_AudioBitDepth","features":[379]},{"name":"NAME_AudioObj_AudioBitRate","features":[379]},{"name":"NAME_AudioObj_AudioBlockAlignment","features":[379]},{"name":"NAME_AudioObj_AudioFormatCode","features":[379]},{"name":"NAME_AudioObj_Channels","features":[379]},{"name":"NAME_AudioObj_Lyrics","features":[379]},{"name":"NAME_BMPImage","features":[379]},{"name":"NAME_CIFFImage","features":[379]},{"name":"NAME_CalendarObj_Accepted","features":[379]},{"name":"NAME_CalendarObj_BeginDateTime","features":[379]},{"name":"NAME_CalendarObj_BusyStatus","features":[379]},{"name":"NAME_CalendarObj_Declined","features":[379]},{"name":"NAME_CalendarObj_EndDateTime","features":[379]},{"name":"NAME_CalendarObj_Location","features":[379]},{"name":"NAME_CalendarObj_PatternDuration","features":[379]},{"name":"NAME_CalendarObj_PatternStartTime","features":[379]},{"name":"NAME_CalendarObj_ReminderOffset","features":[379]},{"name":"NAME_CalendarObj_Tentative","features":[379]},{"name":"NAME_CalendarObj_TimeZone","features":[379]},{"name":"NAME_CalendarSvc","features":[379]},{"name":"NAME_CalendarSvc_SyncWindowEnd","features":[379]},{"name":"NAME_CalendarSvc_SyncWindowStart","features":[379]},{"name":"NAME_ContactObj_AnniversaryDate","features":[379]},{"name":"NAME_ContactObj_Assistant","features":[379]},{"name":"NAME_ContactObj_Birthdate","features":[379]},{"name":"NAME_ContactObj_BusinessAddressCity","features":[379]},{"name":"NAME_ContactObj_BusinessAddressCountry","features":[379]},{"name":"NAME_ContactObj_BusinessAddressFull","features":[379]},{"name":"NAME_ContactObj_BusinessAddressLine2","features":[379]},{"name":"NAME_ContactObj_BusinessAddressPostalCode","features":[379]},{"name":"NAME_ContactObj_BusinessAddressRegion","features":[379]},{"name":"NAME_ContactObj_BusinessAddressStreet","features":[379]},{"name":"NAME_ContactObj_BusinessEmail","features":[379]},{"name":"NAME_ContactObj_BusinessEmail2","features":[379]},{"name":"NAME_ContactObj_BusinessFax","features":[379]},{"name":"NAME_ContactObj_BusinessPhone","features":[379]},{"name":"NAME_ContactObj_BusinessPhone2","features":[379]},{"name":"NAME_ContactObj_BusinessWebAddress","features":[379]},{"name":"NAME_ContactObj_Children","features":[379]},{"name":"NAME_ContactObj_Email","features":[379]},{"name":"NAME_ContactObj_FamilyName","features":[379]},{"name":"NAME_ContactObj_Fax","features":[379]},{"name":"NAME_ContactObj_GivenName","features":[379]},{"name":"NAME_ContactObj_IMAddress","features":[379]},{"name":"NAME_ContactObj_IMAddress2","features":[379]},{"name":"NAME_ContactObj_IMAddress3","features":[379]},{"name":"NAME_ContactObj_MiddleNames","features":[379]},{"name":"NAME_ContactObj_MobilePhone","features":[379]},{"name":"NAME_ContactObj_MobilePhone2","features":[379]},{"name":"NAME_ContactObj_Organization","features":[379]},{"name":"NAME_ContactObj_OtherAddressCity","features":[379]},{"name":"NAME_ContactObj_OtherAddressCountry","features":[379]},{"name":"NAME_ContactObj_OtherAddressFull","features":[379]},{"name":"NAME_ContactObj_OtherAddressLine2","features":[379]},{"name":"NAME_ContactObj_OtherAddressPostalCode","features":[379]},{"name":"NAME_ContactObj_OtherAddressRegion","features":[379]},{"name":"NAME_ContactObj_OtherAddressStreet","features":[379]},{"name":"NAME_ContactObj_OtherEmail","features":[379]},{"name":"NAME_ContactObj_OtherPhone","features":[379]},{"name":"NAME_ContactObj_Pager","features":[379]},{"name":"NAME_ContactObj_PersonalAddressCity","features":[379]},{"name":"NAME_ContactObj_PersonalAddressCountry","features":[379]},{"name":"NAME_ContactObj_PersonalAddressFull","features":[379]},{"name":"NAME_ContactObj_PersonalAddressLine2","features":[379]},{"name":"NAME_ContactObj_PersonalAddressPostalCode","features":[379]},{"name":"NAME_ContactObj_PersonalAddressRegion","features":[379]},{"name":"NAME_ContactObj_PersonalAddressStreet","features":[379]},{"name":"NAME_ContactObj_PersonalEmail","features":[379]},{"name":"NAME_ContactObj_PersonalEmail2","features":[379]},{"name":"NAME_ContactObj_PersonalFax","features":[379]},{"name":"NAME_ContactObj_PersonalPhone","features":[379]},{"name":"NAME_ContactObj_PersonalPhone2","features":[379]},{"name":"NAME_ContactObj_PersonalWebAddress","features":[379]},{"name":"NAME_ContactObj_Phone","features":[379]},{"name":"NAME_ContactObj_PhoneticFamilyName","features":[379]},{"name":"NAME_ContactObj_PhoneticGivenName","features":[379]},{"name":"NAME_ContactObj_PhoneticOrganization","features":[379]},{"name":"NAME_ContactObj_Ringtone","features":[379]},{"name":"NAME_ContactObj_Role","features":[379]},{"name":"NAME_ContactObj_Spouse","features":[379]},{"name":"NAME_ContactObj_Suffix","features":[379]},{"name":"NAME_ContactObj_Title","features":[379]},{"name":"NAME_ContactObj_WebAddress","features":[379]},{"name":"NAME_ContactSvc_SyncWithPhoneOnly","features":[379]},{"name":"NAME_ContactsSvc","features":[379]},{"name":"NAME_DPOFDocument","features":[379]},{"name":"NAME_DVBTSFile","features":[379]},{"name":"NAME_DeviceExecutable","features":[379]},{"name":"NAME_DeviceMetadataCAB","features":[379]},{"name":"NAME_DeviceMetadataObj_ContentID","features":[379]},{"name":"NAME_DeviceMetadataObj_DefaultCAB","features":[379]},{"name":"NAME_DeviceMetadataSvc","features":[379]},{"name":"NAME_DeviceScript","features":[379]},{"name":"NAME_EXIFImage","features":[379]},{"name":"NAME_ExcelDocument","features":[379]},{"name":"NAME_FLACFile","features":[379]},{"name":"NAME_FirmwareFile","features":[379]},{"name":"NAME_FlashPixImage","features":[379]},{"name":"NAME_FullEnumSyncKnowledge","features":[379]},{"name":"NAME_FullEnumSyncSvc","features":[379]},{"name":"NAME_FullEnumSyncSvc_BeginSync","features":[379]},{"name":"NAME_FullEnumSyncSvc_EndSync","features":[379]},{"name":"NAME_FullEnumSyncSvc_FilterType","features":[379]},{"name":"NAME_FullEnumSyncSvc_KnowledgeObjectID","features":[379]},{"name":"NAME_FullEnumSyncSvc_LastSyncProxyID","features":[379]},{"name":"NAME_FullEnumSyncSvc_LocalOnlyDelete","features":[379]},{"name":"NAME_FullEnumSyncSvc_ProviderVersion","features":[379]},{"name":"NAME_FullEnumSyncSvc_ReplicaID","features":[379]},{"name":"NAME_FullEnumSyncSvc_SyncFormat","features":[379]},{"name":"NAME_FullEnumSyncSvc_VersionProps","features":[379]},{"name":"NAME_GIFImage","features":[379]},{"name":"NAME_GenericObj_AllowedFolderContents","features":[379]},{"name":"NAME_GenericObj_AssociationDesc","features":[379]},{"name":"NAME_GenericObj_AssociationType","features":[379]},{"name":"NAME_GenericObj_Copyright","features":[379]},{"name":"NAME_GenericObj_Corrupt","features":[379]},{"name":"NAME_GenericObj_DRMStatus","features":[379]},{"name":"NAME_GenericObj_DateAccessed","features":[379]},{"name":"NAME_GenericObj_DateAdded","features":[379]},{"name":"NAME_GenericObj_DateAuthored","features":[379]},{"name":"NAME_GenericObj_DateCreated","features":[379]},{"name":"NAME_GenericObj_DateModified","features":[379]},{"name":"NAME_GenericObj_DateRevised","features":[379]},{"name":"NAME_GenericObj_Description","features":[379]},{"name":"NAME_GenericObj_Hidden","features":[379]},{"name":"NAME_GenericObj_Keywords","features":[379]},{"name":"NAME_GenericObj_LanguageLocale","features":[379]},{"name":"NAME_GenericObj_Name","features":[379]},{"name":"NAME_GenericObj_NonConsumable","features":[379]},{"name":"NAME_GenericObj_ObjectFileName","features":[379]},{"name":"NAME_GenericObj_ObjectFormat","features":[379]},{"name":"NAME_GenericObj_ObjectID","features":[379]},{"name":"NAME_GenericObj_ObjectSize","features":[379]},{"name":"NAME_GenericObj_ParentID","features":[379]},{"name":"NAME_GenericObj_PersistentUID","features":[379]},{"name":"NAME_GenericObj_PropertyBag","features":[379]},{"name":"NAME_GenericObj_ProtectionStatus","features":[379]},{"name":"NAME_GenericObj_ReferenceParentID","features":[379]},{"name":"NAME_GenericObj_StorageID","features":[379]},{"name":"NAME_GenericObj_SubDescription","features":[379]},{"name":"NAME_GenericObj_SyncID","features":[379]},{"name":"NAME_GenericObj_SystemObject","features":[379]},{"name":"NAME_GenericObj_TimeToLive","features":[379]},{"name":"NAME_HDPhotoImage","features":[379]},{"name":"NAME_HTMLDocument","features":[379]},{"name":"NAME_HintsSvc","features":[379]},{"name":"NAME_ICalendarActivity","features":[379]},{"name":"NAME_ImageObj_Aperature","features":[379]},{"name":"NAME_ImageObj_Exposure","features":[379]},{"name":"NAME_ImageObj_ISOSpeed","features":[379]},{"name":"NAME_ImageObj_ImageBitDepth","features":[379]},{"name":"NAME_ImageObj_IsColorCorrected","features":[379]},{"name":"NAME_ImageObj_IsCropped","features":[379]},{"name":"NAME_JFIFImage","features":[379]},{"name":"NAME_JP2Image","features":[379]},{"name":"NAME_JPEGXRImage","features":[379]},{"name":"NAME_JPXImage","features":[379]},{"name":"NAME_M3UPlaylist","features":[379]},{"name":"NAME_MHTDocument","features":[379]},{"name":"NAME_MP3File","features":[379]},{"name":"NAME_MPEG2File","features":[379]},{"name":"NAME_MPEG4File","features":[379]},{"name":"NAME_MPEGFile","features":[379]},{"name":"NAME_MPLPlaylist","features":[379]},{"name":"NAME_MediaObj_AlbumArtist","features":[379]},{"name":"NAME_MediaObj_AlbumName","features":[379]},{"name":"NAME_MediaObj_Artist","features":[379]},{"name":"NAME_MediaObj_AudioEncodingProfile","features":[379]},{"name":"NAME_MediaObj_BitRateType","features":[379]},{"name":"NAME_MediaObj_BookmarkByte","features":[379]},{"name":"NAME_MediaObj_BookmarkObject","features":[379]},{"name":"NAME_MediaObj_BookmarkTime","features":[379]},{"name":"NAME_MediaObj_BufferSize","features":[379]},{"name":"NAME_MediaObj_Composer","features":[379]},{"name":"NAME_MediaObj_Credits","features":[379]},{"name":"NAME_MediaObj_DateOriginalRelease","features":[379]},{"name":"NAME_MediaObj_Duration","features":[379]},{"name":"NAME_MediaObj_Editor","features":[379]},{"name":"NAME_MediaObj_EffectiveRating","features":[379]},{"name":"NAME_MediaObj_EncodingProfile","features":[379]},{"name":"NAME_MediaObj_EncodingQuality","features":[379]},{"name":"NAME_MediaObj_Genre","features":[379]},{"name":"NAME_MediaObj_GeographicOrigin","features":[379]},{"name":"NAME_MediaObj_Height","features":[379]},{"name":"NAME_MediaObj_MediaType","features":[379]},{"name":"NAME_MediaObj_MediaUID","features":[379]},{"name":"NAME_MediaObj_Mood","features":[379]},{"name":"NAME_MediaObj_Owner","features":[379]},{"name":"NAME_MediaObj_ParentalRating","features":[379]},{"name":"NAME_MediaObj_Producer","features":[379]},{"name":"NAME_MediaObj_SampleRate","features":[379]},{"name":"NAME_MediaObj_SkipCount","features":[379]},{"name":"NAME_MediaObj_SubscriptionContentID","features":[379]},{"name":"NAME_MediaObj_Subtitle","features":[379]},{"name":"NAME_MediaObj_TotalBitRate","features":[379]},{"name":"NAME_MediaObj_Track","features":[379]},{"name":"NAME_MediaObj_URLLink","features":[379]},{"name":"NAME_MediaObj_URLSource","features":[379]},{"name":"NAME_MediaObj_UseCount","features":[379]},{"name":"NAME_MediaObj_UserRating","features":[379]},{"name":"NAME_MediaObj_WebMaster","features":[379]},{"name":"NAME_MediaObj_Width","features":[379]},{"name":"NAME_MessageObj_BCC","features":[379]},{"name":"NAME_MessageObj_Body","features":[379]},{"name":"NAME_MessageObj_CC","features":[379]},{"name":"NAME_MessageObj_Category","features":[379]},{"name":"NAME_MessageObj_PatternDayOfMonth","features":[379]},{"name":"NAME_MessageObj_PatternDayOfWeek","features":[379]},{"name":"NAME_MessageObj_PatternDeleteDates","features":[379]},{"name":"NAME_MessageObj_PatternInstance","features":[379]},{"name":"NAME_MessageObj_PatternMonthOfYear","features":[379]},{"name":"NAME_MessageObj_PatternOriginalDateTime","features":[379]},{"name":"NAME_MessageObj_PatternPeriod","features":[379]},{"name":"NAME_MessageObj_PatternType","features":[379]},{"name":"NAME_MessageObj_PatternValidEndDate","features":[379]},{"name":"NAME_MessageObj_PatternValidStartDate","features":[379]},{"name":"NAME_MessageObj_Priority","features":[379]},{"name":"NAME_MessageObj_Read","features":[379]},{"name":"NAME_MessageObj_ReceivedTime","features":[379]},{"name":"NAME_MessageObj_Sender","features":[379]},{"name":"NAME_MessageObj_Subject","features":[379]},{"name":"NAME_MessageObj_To","features":[379]},{"name":"NAME_MessageSvc","features":[379]},{"name":"NAME_NotesSvc","features":[379]},{"name":"NAME_OGGFile","features":[379]},{"name":"NAME_PCDImage","features":[379]},{"name":"NAME_PICTImage","features":[379]},{"name":"NAME_PNGImage","features":[379]},{"name":"NAME_PSLPlaylist","features":[379]},{"name":"NAME_PowerPointDocument","features":[379]},{"name":"NAME_QCELPFile","features":[379]},{"name":"NAME_RingtonesSvc","features":[379]},{"name":"NAME_RingtonesSvc_DefaultRingtone","features":[379]},{"name":"NAME_Services_ServiceDisplayName","features":[379]},{"name":"NAME_Services_ServiceIcon","features":[379]},{"name":"NAME_Services_ServiceLocale","features":[379]},{"name":"NAME_StatusSvc","features":[379]},{"name":"NAME_StatusSvc_BatteryLife","features":[379]},{"name":"NAME_StatusSvc_ChargingState","features":[379]},{"name":"NAME_StatusSvc_MissedCalls","features":[379]},{"name":"NAME_StatusSvc_NetworkName","features":[379]},{"name":"NAME_StatusSvc_NetworkType","features":[379]},{"name":"NAME_StatusSvc_NewPictures","features":[379]},{"name":"NAME_StatusSvc_Roaming","features":[379]},{"name":"NAME_StatusSvc_SignalStrength","features":[379]},{"name":"NAME_StatusSvc_StorageCapacity","features":[379]},{"name":"NAME_StatusSvc_StorageFreeSpace","features":[379]},{"name":"NAME_StatusSvc_TextMessages","features":[379]},{"name":"NAME_StatusSvc_VoiceMail","features":[379]},{"name":"NAME_SyncObj_LastAuthorProxyID","features":[379]},{"name":"NAME_SyncSvc_BeginSync","features":[379]},{"name":"NAME_SyncSvc_EndSync","features":[379]},{"name":"NAME_SyncSvc_FilterType","features":[379]},{"name":"NAME_SyncSvc_LocalOnlyDelete","features":[379]},{"name":"NAME_SyncSvc_SyncFormat","features":[379]},{"name":"NAME_SyncSvc_SyncObjectReferences","features":[379]},{"name":"NAME_TIFFEPImage","features":[379]},{"name":"NAME_TIFFITImage","features":[379]},{"name":"NAME_TIFFImage","features":[379]},{"name":"NAME_TaskObj_BeginDate","features":[379]},{"name":"NAME_TaskObj_Complete","features":[379]},{"name":"NAME_TaskObj_EndDate","features":[379]},{"name":"NAME_TaskObj_ReminderDateTime","features":[379]},{"name":"NAME_TasksSvc","features":[379]},{"name":"NAME_TasksSvc_SyncActiveOnly","features":[379]},{"name":"NAME_TextDocument","features":[379]},{"name":"NAME_Undefined","features":[379]},{"name":"NAME_UndefinedAudio","features":[379]},{"name":"NAME_UndefinedCollection","features":[379]},{"name":"NAME_UndefinedDocument","features":[379]},{"name":"NAME_UndefinedVideo","features":[379]},{"name":"NAME_UnknownImage","features":[379]},{"name":"NAME_VCalendar1Activity","features":[379]},{"name":"NAME_VCard2Contact","features":[379]},{"name":"NAME_VCard3Contact","features":[379]},{"name":"NAME_VideoObj_KeyFrameDistance","features":[379]},{"name":"NAME_VideoObj_ScanType","features":[379]},{"name":"NAME_VideoObj_Source","features":[379]},{"name":"NAME_VideoObj_VideoBitRate","features":[379]},{"name":"NAME_VideoObj_VideoFormatCode","features":[379]},{"name":"NAME_VideoObj_VideoFrameRate","features":[379]},{"name":"NAME_WAVFile","features":[379]},{"name":"NAME_WBMPImage","features":[379]},{"name":"NAME_WMAFile","features":[379]},{"name":"NAME_WMVFile","features":[379]},{"name":"NAME_WPLPlaylist","features":[379]},{"name":"NAME_WordDocument","features":[379]},{"name":"NAME_XMLDocument","features":[379]},{"name":"PORTABLE_DEVICE_DELETE_NO_RECURSION","features":[379]},{"name":"PORTABLE_DEVICE_DELETE_WITH_RECURSION","features":[379]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_PDDRM","features":[379]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_WMDRM10_PD","features":[379]},{"name":"PORTABLE_DEVICE_ICON","features":[379]},{"name":"PORTABLE_DEVICE_IS_MASS_STORAGE","features":[379]},{"name":"PORTABLE_DEVICE_NAMESPACE_EXCLUDE_FROM_SHELL","features":[379]},{"name":"PORTABLE_DEVICE_NAMESPACE_THUMBNAIL_CONTENT_TYPES","features":[379]},{"name":"PORTABLE_DEVICE_NAMESPACE_TIMEOUT","features":[379]},{"name":"PORTABLE_DEVICE_TYPE","features":[379]},{"name":"PortableDevice","features":[379]},{"name":"PortableDeviceDispatchFactory","features":[379]},{"name":"PortableDeviceFTM","features":[379]},{"name":"PortableDeviceKeyCollection","features":[379]},{"name":"PortableDeviceManager","features":[379]},{"name":"PortableDevicePropVariantCollection","features":[379]},{"name":"PortableDeviceService","features":[379]},{"name":"PortableDeviceServiceFTM","features":[379]},{"name":"PortableDeviceValues","features":[379]},{"name":"PortableDeviceValuesCollection","features":[379]},{"name":"PortableDeviceWebControl","features":[379]},{"name":"RANGEMAX_MessageObj_PatternDayOfMonth","features":[379]},{"name":"RANGEMAX_MessageObj_PatternMonthOfYear","features":[379]},{"name":"RANGEMAX_StatusSvc_BatteryLife","features":[379]},{"name":"RANGEMAX_StatusSvc_MissedCalls","features":[379]},{"name":"RANGEMAX_StatusSvc_NewPictures","features":[379]},{"name":"RANGEMAX_StatusSvc_SignalStrength","features":[379]},{"name":"RANGEMAX_StatusSvc_TextMessages","features":[379]},{"name":"RANGEMAX_StatusSvc_VoiceMail","features":[379]},{"name":"RANGEMIN_MessageObj_PatternDayOfMonth","features":[379]},{"name":"RANGEMIN_MessageObj_PatternMonthOfYear","features":[379]},{"name":"RANGEMIN_StatusSvc_BatteryLife","features":[379]},{"name":"RANGEMIN_StatusSvc_SignalStrength","features":[379]},{"name":"RANGESTEP_MessageObj_PatternDayOfMonth","features":[379]},{"name":"RANGESTEP_MessageObj_PatternMonthOfYear","features":[379]},{"name":"RANGESTEP_StatusSvc_BatteryLife","features":[379]},{"name":"RANGESTEP_StatusSvc_SignalStrength","features":[379]},{"name":"SMS_BINARY_MESSAGE","features":[379]},{"name":"SMS_ENCODING_7_BIT","features":[379]},{"name":"SMS_ENCODING_8_BIT","features":[379]},{"name":"SMS_ENCODING_UTF_16","features":[379]},{"name":"SMS_MESSAGE_TYPES","features":[379]},{"name":"SMS_TEXT_MESSAGE","features":[379]},{"name":"SRS_RADIO_DISABLED","features":[379]},{"name":"SRS_RADIO_ENABLED","features":[379]},{"name":"STR_WPDNSE_FAST_ENUM","features":[379]},{"name":"STR_WPDNSE_SIMPLE_ITEM","features":[379]},{"name":"SYNCSVC_FILTER_CALENDAR_WINDOW_WITH_RECURRENCE","features":[379]},{"name":"SYNCSVC_FILTER_CONTACTS_WITH_PHONE","features":[379]},{"name":"SYNCSVC_FILTER_NONE","features":[379]},{"name":"SYNCSVC_FILTER_TASK_ACTIVE","features":[379]},{"name":"SYSTEM_RADIO_STATE","features":[379]},{"name":"TYPE_AnchorSyncSvc","features":[379]},{"name":"TYPE_CalendarSvc","features":[379]},{"name":"TYPE_ContactsSvc","features":[379]},{"name":"TYPE_DeviceMetadataSvc","features":[379]},{"name":"TYPE_FullEnumSyncSvc","features":[379]},{"name":"TYPE_HintsSvc","features":[379]},{"name":"TYPE_MessageSvc","features":[379]},{"name":"TYPE_NotesSvc","features":[379]},{"name":"TYPE_RingtonesSvc","features":[379]},{"name":"TYPE_StatusSvc","features":[379]},{"name":"TYPE_TasksSvc","features":[379]},{"name":"WPDNSE_OBJECT_HAS_ALBUM_ART","features":[379,374]},{"name":"WPDNSE_OBJECT_HAS_AUDIO_CLIP","features":[379,374]},{"name":"WPDNSE_OBJECT_HAS_CONTACT_PHOTO","features":[379,374]},{"name":"WPDNSE_OBJECT_HAS_ICON","features":[379,374]},{"name":"WPDNSE_OBJECT_HAS_THUMBNAIL","features":[379,374]},{"name":"WPDNSE_OBJECT_OPTIMAL_READ_BLOCK_SIZE","features":[379,374]},{"name":"WPDNSE_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPDNSE_PROPSHEET_CONTENT_DETAILS","features":[379]},{"name":"WPDNSE_PROPSHEET_CONTENT_GENERAL","features":[379]},{"name":"WPDNSE_PROPSHEET_CONTENT_REFERENCES","features":[379]},{"name":"WPDNSE_PROPSHEET_CONTENT_RESOURCES","features":[379]},{"name":"WPDNSE_PROPSHEET_DEVICE_GENERAL","features":[379]},{"name":"WPDNSE_PROPSHEET_STORAGE_GENERAL","features":[379]},{"name":"WPD_API_OPTIONS_V1","features":[379]},{"name":"WPD_API_OPTION_IOCTL_ACCESS","features":[379,374]},{"name":"WPD_API_OPTION_USE_CLEAR_DATA_STREAM","features":[379,374]},{"name":"WPD_APPOINTMENT_ACCEPTED_ATTENDEES","features":[379,374]},{"name":"WPD_APPOINTMENT_DECLINED_ATTENDEES","features":[379,374]},{"name":"WPD_APPOINTMENT_LOCATION","features":[379,374]},{"name":"WPD_APPOINTMENT_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_APPOINTMENT_OPTIONAL_ATTENDEES","features":[379,374]},{"name":"WPD_APPOINTMENT_REQUIRED_ATTENDEES","features":[379,374]},{"name":"WPD_APPOINTMENT_RESOURCES","features":[379,374]},{"name":"WPD_APPOINTMENT_TENTATIVE_ATTENDEES","features":[379,374]},{"name":"WPD_APPOINTMENT_TYPE","features":[379,374]},{"name":"WPD_AUDIO_BITRATE","features":[379,374]},{"name":"WPD_AUDIO_BIT_DEPTH","features":[379,374]},{"name":"WPD_AUDIO_BLOCK_ALIGNMENT","features":[379,374]},{"name":"WPD_AUDIO_CHANNEL_COUNT","features":[379,374]},{"name":"WPD_AUDIO_FORMAT_CODE","features":[379,374]},{"name":"WPD_BITRATE_TYPES","features":[379]},{"name":"WPD_BITRATE_TYPE_DISCRETE","features":[379]},{"name":"WPD_BITRATE_TYPE_FREE","features":[379]},{"name":"WPD_BITRATE_TYPE_UNUSED","features":[379]},{"name":"WPD_BITRATE_TYPE_VARIABLE","features":[379]},{"name":"WPD_CAPTURE_MODES","features":[379]},{"name":"WPD_CAPTURE_MODE_BURST","features":[379]},{"name":"WPD_CAPTURE_MODE_NORMAL","features":[379]},{"name":"WPD_CAPTURE_MODE_TIMELAPSE","features":[379]},{"name":"WPD_CAPTURE_MODE_UNDEFINED","features":[379]},{"name":"WPD_CATEGORY_CAPABILITIES","features":[379]},{"name":"WPD_CATEGORY_COMMON","features":[379]},{"name":"WPD_CATEGORY_DEVICE_HINTS","features":[379]},{"name":"WPD_CATEGORY_MEDIA_CAPTURE","features":[379]},{"name":"WPD_CATEGORY_MTP_EXT_VENDOR_OPERATIONS","features":[379]},{"name":"WPD_CATEGORY_NETWORK_CONFIGURATION","features":[379]},{"name":"WPD_CATEGORY_NULL","features":[379]},{"name":"WPD_CATEGORY_OBJECT_ENUMERATION","features":[379]},{"name":"WPD_CATEGORY_OBJECT_MANAGEMENT","features":[379]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES","features":[379]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES_BULK","features":[379]},{"name":"WPD_CATEGORY_OBJECT_RESOURCES","features":[379]},{"name":"WPD_CATEGORY_SERVICE_CAPABILITIES","features":[379]},{"name":"WPD_CATEGORY_SERVICE_COMMON","features":[379]},{"name":"WPD_CATEGORY_SERVICE_METHODS","features":[379]},{"name":"WPD_CATEGORY_SMS","features":[379]},{"name":"WPD_CATEGORY_STILL_IMAGE_CAPTURE","features":[379]},{"name":"WPD_CATEGORY_STORAGE","features":[379]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DEVICE_IDENTIFICATION_VALUES","features":[379,374]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DONT_REGISTER_WPD_DEVICE_INTERFACE","features":[379,374]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_MULTITRANSPORT_MODE","features":[379,374]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_REGISTER_WPD_PRIVATE_DEVICE_INTERFACE","features":[379,374]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SILENCE_AUTOPLAY","features":[379,374]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SUPPORTED_CONTENT_TYPES","features":[379,374]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_TRANSPORT_BANDWIDTH","features":[379,374]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V1","features":[379]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V2","features":[379]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V3","features":[379]},{"name":"WPD_CLASS_EXTENSION_V1","features":[379]},{"name":"WPD_CLASS_EXTENSION_V2","features":[379]},{"name":"WPD_CLIENT_DESIRED_ACCESS","features":[379,374]},{"name":"WPD_CLIENT_EVENT_COOKIE","features":[379,374]},{"name":"WPD_CLIENT_INFORMATION_PROPERTIES_V1","features":[379]},{"name":"WPD_CLIENT_MAJOR_VERSION","features":[379,374]},{"name":"WPD_CLIENT_MANUAL_CLOSE_ON_DISCONNECT","features":[379,374]},{"name":"WPD_CLIENT_MINIMUM_RESULTS_BUFFER_SIZE","features":[379,374]},{"name":"WPD_CLIENT_MINOR_VERSION","features":[379,374]},{"name":"WPD_CLIENT_NAME","features":[379,374]},{"name":"WPD_CLIENT_REVISION","features":[379,374]},{"name":"WPD_CLIENT_SECURITY_QUALITY_OF_SERVICE","features":[379,374]},{"name":"WPD_CLIENT_SHARE_MODE","features":[379,374]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_CERTIFICATE","features":[379,374]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_PRIVATE_KEY","features":[379,374]},{"name":"WPD_COLOR_CORRECTED_STATUS_CORRECTED","features":[379]},{"name":"WPD_COLOR_CORRECTED_STATUS_NOT_CORRECTED","features":[379]},{"name":"WPD_COLOR_CORRECTED_STATUS_SHOULD_NOT_BE_CORRECTED","features":[379]},{"name":"WPD_COLOR_CORRECTED_STATUS_VALUES","features":[379]},{"name":"WPD_COMMAND_ACCESS_FROM_ATTRIBUTE_WITH_METHOD_ACCESS","features":[379]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_FILE_ACCESS","features":[379]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_STGM_ACCESS","features":[379]},{"name":"WPD_COMMAND_ACCESS_LOOKUP_ENTRY","features":[379,374]},{"name":"WPD_COMMAND_ACCESS_READ","features":[379]},{"name":"WPD_COMMAND_ACCESS_READWRITE","features":[379]},{"name":"WPD_COMMAND_ACCESS_TYPES","features":[379]},{"name":"WPD_COMMAND_CAPABILITIES_GET_COMMAND_OPTIONS","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_EVENT_OPTIONS","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FIXED_PROPERTY_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FUNCTIONAL_OBJECTS","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_CONTENT_TYPES","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[379,374]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FUNCTIONAL_CATEGORIES","features":[379,374]},{"name":"WPD_COMMAND_CLASS_EXTENSION_REGISTER_SERVICE_INTERFACES","features":[379,374]},{"name":"WPD_COMMAND_CLASS_EXTENSION_UNREGISTER_SERVICE_INTERFACES","features":[379,374]},{"name":"WPD_COMMAND_CLASS_EXTENSION_WRITE_DEVICE_INFORMATION","features":[379,374]},{"name":"WPD_COMMAND_COMMIT_KEYPAIR","features":[379,374]},{"name":"WPD_COMMAND_COMMON_GET_OBJECT_IDS_FROM_PERSISTENT_UNIQUE_IDS","features":[379,374]},{"name":"WPD_COMMAND_COMMON_RESET_DEVICE","features":[379,374]},{"name":"WPD_COMMAND_COMMON_SAVE_CLIENT_INFORMATION","features":[379,374]},{"name":"WPD_COMMAND_DEVICE_HINTS_GET_CONTENT_LOCATION","features":[379,374]},{"name":"WPD_COMMAND_GENERATE_KEYPAIR","features":[379,374]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_PAUSE","features":[379,374]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_START","features":[379,374]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_STOP","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_END_DATA_TRANSFER","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITHOUT_DATA_PHASE","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_READ","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_WRITE","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_GET_SUPPORTED_VENDOR_OPCODES","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_GET_VENDOR_EXTENSION_DESCRIPTION","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_READ_DATA","features":[379,374]},{"name":"WPD_COMMAND_MTP_EXT_WRITE_DATA","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_END_FIND","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_FIND_NEXT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_START_FIND","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COMMIT_OBJECT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COPY_OBJECTS","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_ONLY","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_DELETE_OBJECTS","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_MOVE_OBJECTS","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_REVERT_OBJECT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_UPDATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_WRITE_OBJECT_DATA","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_END","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_NEXT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_START","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_END","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_NEXT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_START","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_END","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_NEXT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_START","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_DELETE","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ALL","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_SUPPORTED","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_SET","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CLOSE","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_COMMIT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CREATE_RESOURCE","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_DELETE","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_SUPPORTED","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_OPEN","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_READ","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_REVERT","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK_IN_UNITS","features":[379,374]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_WRITE","features":[379,374]},{"name":"WPD_COMMAND_PROCESS_WIRELESS_PROFILE","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_COMMAND_OPTIONS","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_PARAMETER_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_PROPERTY_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_RENDERING_PROFILES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_INHERITED_SERVICES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_PARAMETER_ATTRIBUTES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS_BY_FORMAT","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_COMMON_GET_SERVICE_OBJECT_ID","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_METHODS_CANCEL_INVOKE","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_METHODS_END_INVOKE","features":[379,374]},{"name":"WPD_COMMAND_SERVICE_METHODS_START_INVOKE","features":[379,374]},{"name":"WPD_COMMAND_SMS_SEND","features":[379,374]},{"name":"WPD_COMMAND_STILL_IMAGE_CAPTURE_INITIATE","features":[379,374]},{"name":"WPD_COMMAND_STORAGE_EJECT","features":[379,374]},{"name":"WPD_COMMAND_STORAGE_FORMAT","features":[379,374]},{"name":"WPD_COMMON_INFORMATION_BODY_TEXT","features":[379,374]},{"name":"WPD_COMMON_INFORMATION_END_DATETIME","features":[379,374]},{"name":"WPD_COMMON_INFORMATION_NOTES","features":[379,374]},{"name":"WPD_COMMON_INFORMATION_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_COMMON_INFORMATION_PRIORITY","features":[379,374]},{"name":"WPD_COMMON_INFORMATION_START_DATETIME","features":[379,374]},{"name":"WPD_COMMON_INFORMATION_SUBJECT","features":[379,374]},{"name":"WPD_CONTACT_ANNIVERSARY_DATE","features":[379,374]},{"name":"WPD_CONTACT_ASSISTANT","features":[379,374]},{"name":"WPD_CONTACT_BIRTHDATE","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_EMAIL","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_EMAIL2","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_FAX","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_FULL_POSTAL_ADDRESS","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_PHONE","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_PHONE2","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_CITY","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_COUNTRY","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE1","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE2","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_POSTAL_CODE","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_REGION","features":[379,374]},{"name":"WPD_CONTACT_BUSINESS_WEB_ADDRESS","features":[379,374]},{"name":"WPD_CONTACT_CHILDREN","features":[379,374]},{"name":"WPD_CONTACT_COMPANY_NAME","features":[379,374]},{"name":"WPD_CONTACT_DISPLAY_NAME","features":[379,374]},{"name":"WPD_CONTACT_FIRST_NAME","features":[379,374]},{"name":"WPD_CONTACT_INSTANT_MESSENGER","features":[379,374]},{"name":"WPD_CONTACT_INSTANT_MESSENGER2","features":[379,374]},{"name":"WPD_CONTACT_INSTANT_MESSENGER3","features":[379,374]},{"name":"WPD_CONTACT_LAST_NAME","features":[379,374]},{"name":"WPD_CONTACT_MIDDLE_NAMES","features":[379,374]},{"name":"WPD_CONTACT_MOBILE_PHONE","features":[379,374]},{"name":"WPD_CONTACT_MOBILE_PHONE2","features":[379,374]},{"name":"WPD_CONTACT_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_CONTACT_OTHER_EMAILS","features":[379,374]},{"name":"WPD_CONTACT_OTHER_FULL_POSTAL_ADDRESS","features":[379,374]},{"name":"WPD_CONTACT_OTHER_PHONES","features":[379,374]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_CITY","features":[379,374]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE1","features":[379,374]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE2","features":[379,374]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_CODE","features":[379,374]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_COUNTRY","features":[379,374]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_REGION","features":[379,374]},{"name":"WPD_CONTACT_PAGER","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_EMAIL","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_EMAIL2","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_FAX","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_FULL_POSTAL_ADDRESS","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_PHONE","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_PHONE2","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_CITY","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_COUNTRY","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE1","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE2","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_POSTAL_CODE","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_REGION","features":[379,374]},{"name":"WPD_CONTACT_PERSONAL_WEB_ADDRESS","features":[379,374]},{"name":"WPD_CONTACT_PHONETIC_COMPANY_NAME","features":[379,374]},{"name":"WPD_CONTACT_PHONETIC_FIRST_NAME","features":[379,374]},{"name":"WPD_CONTACT_PHONETIC_LAST_NAME","features":[379,374]},{"name":"WPD_CONTACT_PREFIX","features":[379,374]},{"name":"WPD_CONTACT_PRIMARY_EMAIL_ADDRESS","features":[379,374]},{"name":"WPD_CONTACT_PRIMARY_FAX","features":[379,374]},{"name":"WPD_CONTACT_PRIMARY_PHONE","features":[379,374]},{"name":"WPD_CONTACT_PRIMARY_WEB_ADDRESS","features":[379,374]},{"name":"WPD_CONTACT_RINGTONE","features":[379,374]},{"name":"WPD_CONTACT_ROLE","features":[379,374]},{"name":"WPD_CONTACT_SPOUSE","features":[379,374]},{"name":"WPD_CONTACT_SUFFIX","features":[379,374]},{"name":"WPD_CONTENT_TYPE_ALL","features":[379]},{"name":"WPD_CONTENT_TYPE_APPOINTMENT","features":[379]},{"name":"WPD_CONTENT_TYPE_AUDIO","features":[379]},{"name":"WPD_CONTENT_TYPE_AUDIO_ALBUM","features":[379]},{"name":"WPD_CONTENT_TYPE_CALENDAR","features":[379]},{"name":"WPD_CONTENT_TYPE_CERTIFICATE","features":[379]},{"name":"WPD_CONTENT_TYPE_CONTACT","features":[379]},{"name":"WPD_CONTENT_TYPE_CONTACT_GROUP","features":[379]},{"name":"WPD_CONTENT_TYPE_DOCUMENT","features":[379]},{"name":"WPD_CONTENT_TYPE_EMAIL","features":[379]},{"name":"WPD_CONTENT_TYPE_FOLDER","features":[379]},{"name":"WPD_CONTENT_TYPE_FUNCTIONAL_OBJECT","features":[379]},{"name":"WPD_CONTENT_TYPE_GENERIC_FILE","features":[379]},{"name":"WPD_CONTENT_TYPE_GENERIC_MESSAGE","features":[379]},{"name":"WPD_CONTENT_TYPE_IMAGE","features":[379]},{"name":"WPD_CONTENT_TYPE_IMAGE_ALBUM","features":[379]},{"name":"WPD_CONTENT_TYPE_MEDIA_CAST","features":[379]},{"name":"WPD_CONTENT_TYPE_MEMO","features":[379]},{"name":"WPD_CONTENT_TYPE_MIXED_CONTENT_ALBUM","features":[379]},{"name":"WPD_CONTENT_TYPE_NETWORK_ASSOCIATION","features":[379]},{"name":"WPD_CONTENT_TYPE_PLAYLIST","features":[379]},{"name":"WPD_CONTENT_TYPE_PROGRAM","features":[379]},{"name":"WPD_CONTENT_TYPE_SECTION","features":[379]},{"name":"WPD_CONTENT_TYPE_TASK","features":[379]},{"name":"WPD_CONTENT_TYPE_TELEVISION","features":[379]},{"name":"WPD_CONTENT_TYPE_UNSPECIFIED","features":[379]},{"name":"WPD_CONTENT_TYPE_VIDEO","features":[379]},{"name":"WPD_CONTENT_TYPE_VIDEO_ALBUM","features":[379]},{"name":"WPD_CONTENT_TYPE_WIRELESS_PROFILE","features":[379]},{"name":"WPD_CONTROL_FUNCTION_GENERIC_MESSAGE","features":[379]},{"name":"WPD_CROPPED_STATUS_CROPPED","features":[379]},{"name":"WPD_CROPPED_STATUS_NOT_CROPPED","features":[379]},{"name":"WPD_CROPPED_STATUS_SHOULD_NOT_BE_CROPPED","features":[379]},{"name":"WPD_CROPPED_STATUS_VALUES","features":[379]},{"name":"WPD_DEVICE_DATETIME","features":[379,374]},{"name":"WPD_DEVICE_EDP_IDENTITY","features":[379,374]},{"name":"WPD_DEVICE_FIRMWARE_VERSION","features":[379,374]},{"name":"WPD_DEVICE_FRIENDLY_NAME","features":[379,374]},{"name":"WPD_DEVICE_FUNCTIONAL_UNIQUE_ID","features":[379,374]},{"name":"WPD_DEVICE_MANUFACTURER","features":[379,374]},{"name":"WPD_DEVICE_MODEL","features":[379,374]},{"name":"WPD_DEVICE_MODEL_UNIQUE_ID","features":[379,374]},{"name":"WPD_DEVICE_NETWORK_IDENTIFIER","features":[379,374]},{"name":"WPD_DEVICE_OBJECT_ID","features":[379]},{"name":"WPD_DEVICE_POWER_LEVEL","features":[379,374]},{"name":"WPD_DEVICE_POWER_SOURCE","features":[379,374]},{"name":"WPD_DEVICE_PROPERTIES_V1","features":[379]},{"name":"WPD_DEVICE_PROPERTIES_V2","features":[379]},{"name":"WPD_DEVICE_PROPERTIES_V3","features":[379]},{"name":"WPD_DEVICE_PROTOCOL","features":[379,374]},{"name":"WPD_DEVICE_SERIAL_NUMBER","features":[379,374]},{"name":"WPD_DEVICE_SUPPORTED_DRM_SCHEMES","features":[379,374]},{"name":"WPD_DEVICE_SUPPORTED_FORMATS_ARE_ORDERED","features":[379,374]},{"name":"WPD_DEVICE_SUPPORTS_NON_CONSUMABLE","features":[379,374]},{"name":"WPD_DEVICE_SYNC_PARTNER","features":[379,374]},{"name":"WPD_DEVICE_TRANSPORT","features":[379,374]},{"name":"WPD_DEVICE_TRANSPORTS","features":[379]},{"name":"WPD_DEVICE_TRANSPORT_BLUETOOTH","features":[379]},{"name":"WPD_DEVICE_TRANSPORT_IP","features":[379]},{"name":"WPD_DEVICE_TRANSPORT_UNSPECIFIED","features":[379]},{"name":"WPD_DEVICE_TRANSPORT_USB","features":[379]},{"name":"WPD_DEVICE_TYPE","features":[379,374]},{"name":"WPD_DEVICE_TYPES","features":[379]},{"name":"WPD_DEVICE_TYPE_AUDIO_RECORDER","features":[379]},{"name":"WPD_DEVICE_TYPE_CAMERA","features":[379]},{"name":"WPD_DEVICE_TYPE_GENERIC","features":[379]},{"name":"WPD_DEVICE_TYPE_MEDIA_PLAYER","features":[379]},{"name":"WPD_DEVICE_TYPE_PERSONAL_INFORMATION_MANAGER","features":[379]},{"name":"WPD_DEVICE_TYPE_PHONE","features":[379]},{"name":"WPD_DEVICE_TYPE_VIDEO","features":[379]},{"name":"WPD_DEVICE_USE_DEVICE_STAGE","features":[379,374]},{"name":"WPD_DOCUMENT_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_EFFECT_MODES","features":[379]},{"name":"WPD_EFFECT_MODE_BLACK_AND_WHITE","features":[379]},{"name":"WPD_EFFECT_MODE_COLOR","features":[379]},{"name":"WPD_EFFECT_MODE_SEPIA","features":[379]},{"name":"WPD_EFFECT_MODE_UNDEFINED","features":[379]},{"name":"WPD_EMAIL_BCC_LINE","features":[379,374]},{"name":"WPD_EMAIL_CC_LINE","features":[379,374]},{"name":"WPD_EMAIL_HAS_ATTACHMENTS","features":[379,374]},{"name":"WPD_EMAIL_HAS_BEEN_READ","features":[379,374]},{"name":"WPD_EMAIL_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_EMAIL_RECEIVED_TIME","features":[379,374]},{"name":"WPD_EMAIL_SENDER_ADDRESS","features":[379,374]},{"name":"WPD_EMAIL_TO_LINE","features":[379,374]},{"name":"WPD_EVENT_ATTRIBUTES_V1","features":[379]},{"name":"WPD_EVENT_ATTRIBUTE_NAME","features":[379,374]},{"name":"WPD_EVENT_ATTRIBUTE_OPTIONS","features":[379,374]},{"name":"WPD_EVENT_ATTRIBUTE_PARAMETERS","features":[379,374]},{"name":"WPD_EVENT_DEVICE_CAPABILITIES_UPDATED","features":[379]},{"name":"WPD_EVENT_DEVICE_REMOVED","features":[379]},{"name":"WPD_EVENT_DEVICE_RESET","features":[379]},{"name":"WPD_EVENT_MTP_VENDOR_EXTENDED_EVENTS","features":[379]},{"name":"WPD_EVENT_NOTIFICATION","features":[379]},{"name":"WPD_EVENT_OBJECT_ADDED","features":[379]},{"name":"WPD_EVENT_OBJECT_REMOVED","features":[379]},{"name":"WPD_EVENT_OBJECT_TRANSFER_REQUESTED","features":[379]},{"name":"WPD_EVENT_OBJECT_UPDATED","features":[379]},{"name":"WPD_EVENT_OPTIONS_V1","features":[379]},{"name":"WPD_EVENT_OPTION_IS_AUTOPLAY_EVENT","features":[379,374]},{"name":"WPD_EVENT_OPTION_IS_BROADCAST_EVENT","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_CHILD_HIERARCHY_CHANGED","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_EVENT_ID","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_OBJECT_CREATION_COOKIE","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_OBJECT_PARENT_PERSISTENT_UNIQUE_ID","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_OPERATION_PROGRESS","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_OPERATION_STATE","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_PNP_DEVICE_ID","features":[379,374]},{"name":"WPD_EVENT_PARAMETER_SERVICE_METHOD_CONTEXT","features":[379,374]},{"name":"WPD_EVENT_PROPERTIES_V1","features":[379]},{"name":"WPD_EVENT_PROPERTIES_V2","features":[379]},{"name":"WPD_EVENT_SERVICE_METHOD_COMPLETE","features":[379]},{"name":"WPD_EVENT_STORAGE_FORMAT","features":[379]},{"name":"WPD_EXPOSURE_METERING_MODES","features":[379]},{"name":"WPD_EXPOSURE_METERING_MODE_AVERAGE","features":[379]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_SPOT","features":[379]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_WEIGHTED_AVERAGE","features":[379]},{"name":"WPD_EXPOSURE_METERING_MODE_MULTI_SPOT","features":[379]},{"name":"WPD_EXPOSURE_METERING_MODE_UNDEFINED","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODES","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_ACTION","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_APERTURE_PRIORITY","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_AUTO","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_CREATIVE","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_MANUAL","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_PORTRAIT","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_SHUTTER_PRIORITY","features":[379]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_UNDEFINED","features":[379]},{"name":"WPD_FLASH_MODES","features":[379]},{"name":"WPD_FLASH_MODE_AUTO","features":[379]},{"name":"WPD_FLASH_MODE_EXTERNAL_SYNC","features":[379]},{"name":"WPD_FLASH_MODE_FILL","features":[379]},{"name":"WPD_FLASH_MODE_OFF","features":[379]},{"name":"WPD_FLASH_MODE_RED_EYE_AUTO","features":[379]},{"name":"WPD_FLASH_MODE_RED_EYE_FILL","features":[379]},{"name":"WPD_FLASH_MODE_UNDEFINED","features":[379]},{"name":"WPD_FOCUS_AUTOMATIC","features":[379]},{"name":"WPD_FOCUS_AUTOMATIC_MACRO","features":[379]},{"name":"WPD_FOCUS_MANUAL","features":[379]},{"name":"WPD_FOCUS_METERING_MODES","features":[379]},{"name":"WPD_FOCUS_METERING_MODE_CENTER_SPOT","features":[379]},{"name":"WPD_FOCUS_METERING_MODE_MULTI_SPOT","features":[379]},{"name":"WPD_FOCUS_METERING_MODE_UNDEFINED","features":[379]},{"name":"WPD_FOCUS_MODES","features":[379]},{"name":"WPD_FOCUS_UNDEFINED","features":[379]},{"name":"WPD_FOLDER_CONTENT_TYPES_ALLOWED","features":[379,374]},{"name":"WPD_FOLDER_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_FORMAT_ATTRIBUTES_V1","features":[379]},{"name":"WPD_FORMAT_ATTRIBUTE_MIMETYPE","features":[379,374]},{"name":"WPD_FORMAT_ATTRIBUTE_NAME","features":[379,374]},{"name":"WPD_FUNCTIONAL_CATEGORY_ALL","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_AUDIO_CAPTURE","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_DEVICE","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_NETWORK_CONFIGURATION","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_RENDERING_INFORMATION","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_SMS","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_STILL_IMAGE_CAPTURE","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_STORAGE","features":[379]},{"name":"WPD_FUNCTIONAL_CATEGORY_VIDEO_CAPTURE","features":[379]},{"name":"WPD_FUNCTIONAL_OBJECT_CATEGORY","features":[379,374]},{"name":"WPD_FUNCTIONAL_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_IMAGE_BITDEPTH","features":[379,374]},{"name":"WPD_IMAGE_COLOR_CORRECTED_STATUS","features":[379,374]},{"name":"WPD_IMAGE_CROPPED_STATUS","features":[379,374]},{"name":"WPD_IMAGE_EXPOSURE_INDEX","features":[379,374]},{"name":"WPD_IMAGE_EXPOSURE_TIME","features":[379,374]},{"name":"WPD_IMAGE_FNUMBER","features":[379,374]},{"name":"WPD_IMAGE_HORIZONTAL_RESOLUTION","features":[379,374]},{"name":"WPD_IMAGE_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_IMAGE_VERTICAL_RESOLUTION","features":[379,374]},{"name":"WPD_MEDIA_ALBUM_ARTIST","features":[379,374]},{"name":"WPD_MEDIA_ARTIST","features":[379,374]},{"name":"WPD_MEDIA_AUDIO_ENCODING_PROFILE","features":[379,374]},{"name":"WPD_MEDIA_BITRATE_TYPE","features":[379,374]},{"name":"WPD_MEDIA_BUY_NOW","features":[379,374]},{"name":"WPD_MEDIA_BYTE_BOOKMARK","features":[379,374]},{"name":"WPD_MEDIA_COMPOSER","features":[379,374]},{"name":"WPD_MEDIA_COPYRIGHT","features":[379,374]},{"name":"WPD_MEDIA_DESCRIPTION","features":[379,374]},{"name":"WPD_MEDIA_DESTINATION_URL","features":[379,374]},{"name":"WPD_MEDIA_DURATION","features":[379,374]},{"name":"WPD_MEDIA_EFFECTIVE_RATING","features":[379,374]},{"name":"WPD_MEDIA_ENCODING_PROFILE","features":[379,374]},{"name":"WPD_MEDIA_GENRE","features":[379,374]},{"name":"WPD_MEDIA_GUID","features":[379,374]},{"name":"WPD_MEDIA_HEIGHT","features":[379,374]},{"name":"WPD_MEDIA_LAST_ACCESSED_TIME","features":[379,374]},{"name":"WPD_MEDIA_LAST_BUILD_DATE","features":[379,374]},{"name":"WPD_MEDIA_MANAGING_EDITOR","features":[379,374]},{"name":"WPD_MEDIA_META_GENRE","features":[379,374]},{"name":"WPD_MEDIA_OBJECT_BOOKMARK","features":[379,374]},{"name":"WPD_MEDIA_OWNER","features":[379,374]},{"name":"WPD_MEDIA_PARENTAL_RATING","features":[379,374]},{"name":"WPD_MEDIA_PROPERTIES_V1","features":[379]},{"name":"WPD_MEDIA_RELEASE_DATE","features":[379,374]},{"name":"WPD_MEDIA_SAMPLE_RATE","features":[379,374]},{"name":"WPD_MEDIA_SKIP_COUNT","features":[379,374]},{"name":"WPD_MEDIA_SOURCE_URL","features":[379,374]},{"name":"WPD_MEDIA_STAR_RATING","features":[379,374]},{"name":"WPD_MEDIA_SUBSCRIPTION_CONTENT_ID","features":[379,374]},{"name":"WPD_MEDIA_SUB_DESCRIPTION","features":[379,374]},{"name":"WPD_MEDIA_SUB_TITLE","features":[379,374]},{"name":"WPD_MEDIA_TIME_BOOKMARK","features":[379,374]},{"name":"WPD_MEDIA_TIME_TO_LIVE","features":[379,374]},{"name":"WPD_MEDIA_TITLE","features":[379,374]},{"name":"WPD_MEDIA_TOTAL_BITRATE","features":[379,374]},{"name":"WPD_MEDIA_USER_EFFECTIVE_RATING","features":[379,374]},{"name":"WPD_MEDIA_USE_COUNT","features":[379,374]},{"name":"WPD_MEDIA_WEBMASTER","features":[379,374]},{"name":"WPD_MEDIA_WIDTH","features":[379,374]},{"name":"WPD_MEMO_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_META_GENRES","features":[379]},{"name":"WPD_META_GENRE_AUDIO_PODCAST","features":[379]},{"name":"WPD_META_GENRE_FEATURE_FILM_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_GENERIC_MUSIC_AUDIO_FILE","features":[379]},{"name":"WPD_META_GENRE_GENERIC_NON_AUDIO_NON_VIDEO","features":[379]},{"name":"WPD_META_GENRE_GENERIC_NON_MUSIC_AUDIO_FILE","features":[379]},{"name":"WPD_META_GENRE_GENERIC_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_HOME_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_MIXED_PODCAST","features":[379]},{"name":"WPD_META_GENRE_MUSIC_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_NEWS_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_PHOTO_MONTAGE_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_SPOKEN_WORD_AUDIO_BOOK_FILES","features":[379]},{"name":"WPD_META_GENRE_SPOKEN_WORD_FILES_NON_AUDIO_BOOK","features":[379]},{"name":"WPD_META_GENRE_SPOKEN_WORD_NEWS","features":[379]},{"name":"WPD_META_GENRE_SPOKEN_WORD_TALK_SHOWS","features":[379]},{"name":"WPD_META_GENRE_TELEVISION_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_TRAINING_EDUCATIONAL_VIDEO_FILE","features":[379]},{"name":"WPD_META_GENRE_UNUSED","features":[379]},{"name":"WPD_META_GENRE_VIDEO_PODCAST","features":[379]},{"name":"WPD_METHOD_ATTRIBUTES_V1","features":[379]},{"name":"WPD_METHOD_ATTRIBUTE_ACCESS","features":[379,374]},{"name":"WPD_METHOD_ATTRIBUTE_ASSOCIATED_FORMAT","features":[379,374]},{"name":"WPD_METHOD_ATTRIBUTE_NAME","features":[379,374]},{"name":"WPD_METHOD_ATTRIBUTE_PARAMETERS","features":[379,374]},{"name":"WPD_MUSIC_ALBUM","features":[379,374]},{"name":"WPD_MUSIC_LYRICS","features":[379,374]},{"name":"WPD_MUSIC_MOOD","features":[379,374]},{"name":"WPD_MUSIC_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_MUSIC_TRACK","features":[379,374]},{"name":"WPD_NETWORK_ASSOCIATION_HOST_NETWORK_IDENTIFIERS","features":[379,374]},{"name":"WPD_NETWORK_ASSOCIATION_PROPERTIES_V1","features":[379]},{"name":"WPD_NETWORK_ASSOCIATION_X509V3SEQUENCE","features":[379,374]},{"name":"WPD_OBJECT_BACK_REFERENCES","features":[379,374]},{"name":"WPD_OBJECT_CAN_DELETE","features":[379,374]},{"name":"WPD_OBJECT_CONTAINER_FUNCTIONAL_OBJECT_ID","features":[379,374]},{"name":"WPD_OBJECT_CONTENT_TYPE","features":[379,374]},{"name":"WPD_OBJECT_DATE_AUTHORED","features":[379,374]},{"name":"WPD_OBJECT_DATE_CREATED","features":[379,374]},{"name":"WPD_OBJECT_DATE_MODIFIED","features":[379,374]},{"name":"WPD_OBJECT_FORMAT","features":[379,374]},{"name":"WPD_OBJECT_FORMAT_3G2","features":[379]},{"name":"WPD_OBJECT_FORMAT_3G2A","features":[379]},{"name":"WPD_OBJECT_FORMAT_3GP","features":[379]},{"name":"WPD_OBJECT_FORMAT_3GPA","features":[379]},{"name":"WPD_OBJECT_FORMAT_AAC","features":[379]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT","features":[379]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT_GROUP","features":[379]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_MEDIA_CAST","features":[379]},{"name":"WPD_OBJECT_FORMAT_AIFF","features":[379]},{"name":"WPD_OBJECT_FORMAT_ALL","features":[379]},{"name":"WPD_OBJECT_FORMAT_AMR","features":[379]},{"name":"WPD_OBJECT_FORMAT_ASF","features":[379]},{"name":"WPD_OBJECT_FORMAT_ASXPLAYLIST","features":[379]},{"name":"WPD_OBJECT_FORMAT_ATSCTS","features":[379]},{"name":"WPD_OBJECT_FORMAT_AUDIBLE","features":[379]},{"name":"WPD_OBJECT_FORMAT_AVCHD","features":[379]},{"name":"WPD_OBJECT_FORMAT_AVI","features":[379]},{"name":"WPD_OBJECT_FORMAT_BMP","features":[379]},{"name":"WPD_OBJECT_FORMAT_CIFF","features":[379]},{"name":"WPD_OBJECT_FORMAT_DPOF","features":[379]},{"name":"WPD_OBJECT_FORMAT_DVBTS","features":[379]},{"name":"WPD_OBJECT_FORMAT_EXECUTABLE","features":[379]},{"name":"WPD_OBJECT_FORMAT_EXIF","features":[379]},{"name":"WPD_OBJECT_FORMAT_FLAC","features":[379]},{"name":"WPD_OBJECT_FORMAT_FLASHPIX","features":[379]},{"name":"WPD_OBJECT_FORMAT_GIF","features":[379]},{"name":"WPD_OBJECT_FORMAT_HTML","features":[379]},{"name":"WPD_OBJECT_FORMAT_ICALENDAR","features":[379]},{"name":"WPD_OBJECT_FORMAT_ICON","features":[379]},{"name":"WPD_OBJECT_FORMAT_JFIF","features":[379]},{"name":"WPD_OBJECT_FORMAT_JP2","features":[379]},{"name":"WPD_OBJECT_FORMAT_JPEGXR","features":[379]},{"name":"WPD_OBJECT_FORMAT_JPX","features":[379]},{"name":"WPD_OBJECT_FORMAT_M3UPLAYLIST","features":[379]},{"name":"WPD_OBJECT_FORMAT_M4A","features":[379]},{"name":"WPD_OBJECT_FORMAT_MHT_COMPILED_HTML","features":[379]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_EXCEL","features":[379]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_POWERPOINT","features":[379]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WFC","features":[379]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WORD","features":[379]},{"name":"WPD_OBJECT_FORMAT_MKV","features":[379]},{"name":"WPD_OBJECT_FORMAT_MP2","features":[379]},{"name":"WPD_OBJECT_FORMAT_MP3","features":[379]},{"name":"WPD_OBJECT_FORMAT_MP4","features":[379]},{"name":"WPD_OBJECT_FORMAT_MPEG","features":[379]},{"name":"WPD_OBJECT_FORMAT_MPLPLAYLIST","features":[379]},{"name":"WPD_OBJECT_FORMAT_NETWORK_ASSOCIATION","features":[379]},{"name":"WPD_OBJECT_FORMAT_OGG","features":[379]},{"name":"WPD_OBJECT_FORMAT_PCD","features":[379]},{"name":"WPD_OBJECT_FORMAT_PICT","features":[379]},{"name":"WPD_OBJECT_FORMAT_PLSPLAYLIST","features":[379]},{"name":"WPD_OBJECT_FORMAT_PNG","features":[379]},{"name":"WPD_OBJECT_FORMAT_PROPERTIES_ONLY","features":[379]},{"name":"WPD_OBJECT_FORMAT_QCELP","features":[379]},{"name":"WPD_OBJECT_FORMAT_SCRIPT","features":[379]},{"name":"WPD_OBJECT_FORMAT_TEXT","features":[379]},{"name":"WPD_OBJECT_FORMAT_TIFF","features":[379]},{"name":"WPD_OBJECT_FORMAT_TIFFEP","features":[379]},{"name":"WPD_OBJECT_FORMAT_TIFFIT","features":[379]},{"name":"WPD_OBJECT_FORMAT_UNSPECIFIED","features":[379]},{"name":"WPD_OBJECT_FORMAT_VCALENDAR1","features":[379]},{"name":"WPD_OBJECT_FORMAT_VCARD2","features":[379]},{"name":"WPD_OBJECT_FORMAT_VCARD3","features":[379]},{"name":"WPD_OBJECT_FORMAT_WAVE","features":[379]},{"name":"WPD_OBJECT_FORMAT_WBMP","features":[379]},{"name":"WPD_OBJECT_FORMAT_WINDOWSIMAGEFORMAT","features":[379]},{"name":"WPD_OBJECT_FORMAT_WMA","features":[379]},{"name":"WPD_OBJECT_FORMAT_WMV","features":[379]},{"name":"WPD_OBJECT_FORMAT_WPLPLAYLIST","features":[379]},{"name":"WPD_OBJECT_FORMAT_X509V3CERTIFICATE","features":[379]},{"name":"WPD_OBJECT_FORMAT_XML","features":[379]},{"name":"WPD_OBJECT_GENERATE_THUMBNAIL_FROM_RESOURCE","features":[379,374]},{"name":"WPD_OBJECT_HINT_LOCATION_DISPLAY_NAME","features":[379,374]},{"name":"WPD_OBJECT_ID","features":[379,374]},{"name":"WPD_OBJECT_ISHIDDEN","features":[379,374]},{"name":"WPD_OBJECT_ISSYSTEM","features":[379,374]},{"name":"WPD_OBJECT_IS_DRM_PROTECTED","features":[379,374]},{"name":"WPD_OBJECT_KEYWORDS","features":[379,374]},{"name":"WPD_OBJECT_LANGUAGE_LOCALE","features":[379,374]},{"name":"WPD_OBJECT_NAME","features":[379,374]},{"name":"WPD_OBJECT_NON_CONSUMABLE","features":[379,374]},{"name":"WPD_OBJECT_ORIGINAL_FILE_NAME","features":[379,374]},{"name":"WPD_OBJECT_PARENT_ID","features":[379,374]},{"name":"WPD_OBJECT_PERSISTENT_UNIQUE_ID","features":[379,374]},{"name":"WPD_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_OBJECT_PROPERTIES_V2","features":[379]},{"name":"WPD_OBJECT_REFERENCES","features":[379,374]},{"name":"WPD_OBJECT_SIZE","features":[379,374]},{"name":"WPD_OBJECT_SUPPORTED_UNITS","features":[379,374]},{"name":"WPD_OBJECT_SYNC_ID","features":[379,374]},{"name":"WPD_OPERATION_STATES","features":[379]},{"name":"WPD_OPERATION_STATE_ABORTED","features":[379]},{"name":"WPD_OPERATION_STATE_CANCELLED","features":[379]},{"name":"WPD_OPERATION_STATE_FINISHED","features":[379]},{"name":"WPD_OPERATION_STATE_PAUSED","features":[379]},{"name":"WPD_OPERATION_STATE_RUNNING","features":[379]},{"name":"WPD_OPERATION_STATE_STARTED","features":[379]},{"name":"WPD_OPERATION_STATE_UNSPECIFIED","features":[379]},{"name":"WPD_OPTION_OBJECT_MANAGEMENT_RECURSIVE_DELETE_SUPPORTED","features":[379,374]},{"name":"WPD_OPTION_OBJECT_RESOURCES_NO_INPUT_BUFFER_ON_READ","features":[379,374]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_READ_SUPPORTED","features":[379,374]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_WRITE_SUPPORTED","features":[379,374]},{"name":"WPD_OPTION_SMS_BINARY_MESSAGE_SUPPORTED","features":[379,374]},{"name":"WPD_OPTION_VALID_OBJECT_IDS","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTES_V1","features":[379]},{"name":"WPD_PARAMETER_ATTRIBUTE_DEFAULT_VALUE","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_ENUMERATION","features":[379]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[379]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_RANGE","features":[379]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[379]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_UNSPECIFIED","features":[379]},{"name":"WPD_PARAMETER_ATTRIBUTE_MAX_SIZE","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_NAME","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_ORDER","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MAX","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MIN","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_STEP","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_REGULAR_EXPRESSION","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_USAGE","features":[379,374]},{"name":"WPD_PARAMETER_ATTRIBUTE_VARTYPE","features":[379,374]},{"name":"WPD_PARAMETER_USAGE_IN","features":[379]},{"name":"WPD_PARAMETER_USAGE_INOUT","features":[379]},{"name":"WPD_PARAMETER_USAGE_OUT","features":[379]},{"name":"WPD_PARAMETER_USAGE_RETURN","features":[379]},{"name":"WPD_PARAMETER_USAGE_TYPES","features":[379]},{"name":"WPD_POWER_SOURCES","features":[379]},{"name":"WPD_POWER_SOURCE_BATTERY","features":[379]},{"name":"WPD_POWER_SOURCE_EXTERNAL","features":[379]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_DEVICE_PROPS","features":[379]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_OBJECT_PROPS","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTES_V1","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTES_V2","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_DELETE","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_READ","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_WRITE","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_DEFAULT_VALUE","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_FAST_PROPERTY","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_ENUMERATION","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_RANGE","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_UNSPECIFIED","features":[379]},{"name":"WPD_PROPERTY_ATTRIBUTE_MAX_SIZE","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_NAME","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MAX","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MIN","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_STEP","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_REGULAR_EXPRESSION","features":[379,374]},{"name":"WPD_PROPERTY_ATTRIBUTE_VARTYPE","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND_OPTIONS","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPE","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPES","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT_OPTIONS","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMAT","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMATS","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORIES","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORY","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_OBJECTS","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_KEYS","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_COMMANDS","features":[379,374]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_EVENTS","features":[379,374]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_VALUES","features":[379,374]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_WRITE_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_INTERFACES","features":[379,374]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_REGISTRATION_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_ACTIVITY_ID","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION_CONTEXT","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_COMMAND_CATEGORY","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_COMMAND_ID","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_COMMAND_TARGET","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_DRIVER_ERROR_CODE","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_HRESULT","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_OBJECT_IDS","features":[379,374]},{"name":"WPD_PROPERTY_COMMON_PERSISTENT_UNIQUE_IDS","features":[379,374]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_LOCATIONS","features":[379,374]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_TYPE","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_EVENT_PARAMS","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_CODE","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_PARAMS","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_CODE","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_PARAMS","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_CONTEXT","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_DATA","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_READ","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_READ","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_WRITE","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_WRITTEN","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_TOTAL_DATA_SIZE","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_EXTENSION_DESCRIPTION","features":[379,374]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_OPERATION_CODES","features":[379,374]},{"name":"WPD_PROPERTY_NULL","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_CONTEXT","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_FILTER","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_NUM_OBJECTS_REQUESTED","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_OBJECT_IDS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_PARENT_ID","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CONTEXT","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_COPY_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CREATION_PROPERTIES","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DATA","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_OPTIONS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DESTINATION_FOLDER_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_MOVE_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_TO_WRITE","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_WRITTEN","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_FORMAT","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_IDS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_PROPERTY_KEYS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_UPDATE_PROPERTIES","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_CONTEXT","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_DEPTH","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_FORMAT","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_IDS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PARENT_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PROPERTY_KEYS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_VALUES","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_WRITE_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_DELETE_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_KEYS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_VALUES","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_WRITE_RESULTS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_ACCESS_MODE","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_CONTEXT","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_DATA","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_READ","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_READ","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_WRITE","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_WRITTEN","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_POSITION_FROM_START","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_KEYS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_OFFSET","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_ORIGIN_FLAG","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_STREAM_UNITS","features":[379,374]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SUPPORTS_UNITS","features":[379,374]},{"name":"WPD_PROPERTY_PUBLIC_KEY","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND_OPTIONS","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMATS","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITANCE_TYPE","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITED_SERVICES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_KEYS","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_RENDERING_PROFILES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_COMMANDS","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_EVENTS","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_METHODS","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_METHOD","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_METHOD_CONTEXT","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_METHOD_HRESULT","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_METHOD_PARAMETER_VALUES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_METHOD_RESULT_VALUES","features":[379,374]},{"name":"WPD_PROPERTY_SERVICE_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_SMS_BINARY_MESSAGE","features":[379,374]},{"name":"WPD_PROPERTY_SMS_MESSAGE_TYPE","features":[379,374]},{"name":"WPD_PROPERTY_SMS_RECIPIENT","features":[379,374]},{"name":"WPD_PROPERTY_SMS_TEXT_MESSAGE","features":[379,374]},{"name":"WPD_PROPERTY_STORAGE_DESTINATION_OBJECT_ID","features":[379,374]},{"name":"WPD_PROPERTY_STORAGE_OBJECT_ID","features":[379,374]},{"name":"WPD_RENDERING_INFORMATION_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_RENDERING_INFORMATION_PROFILES","features":[379,374]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_CREATABLE_RESOURCES","features":[379,374]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE","features":[379,374]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPES","features":[379]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_OBJECT","features":[379]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_RESOURCE","features":[379]},{"name":"WPD_RESOURCE_ALBUM_ART","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTES_V1","features":[379]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_DELETE","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_READ","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_WRITE","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTE_FORMAT","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_READ_BUFFER_SIZE","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_WRITE_BUFFER_SIZE","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTE_RESOURCE_KEY","features":[379,374]},{"name":"WPD_RESOURCE_ATTRIBUTE_TOTAL_SIZE","features":[379,374]},{"name":"WPD_RESOURCE_AUDIO_CLIP","features":[379,374]},{"name":"WPD_RESOURCE_BRANDING_ART","features":[379,374]},{"name":"WPD_RESOURCE_CONTACT_PHOTO","features":[379,374]},{"name":"WPD_RESOURCE_DEFAULT","features":[379,374]},{"name":"WPD_RESOURCE_GENERIC","features":[379,374]},{"name":"WPD_RESOURCE_ICON","features":[379,374]},{"name":"WPD_RESOURCE_THUMBNAIL","features":[379,374]},{"name":"WPD_RESOURCE_VIDEO_CLIP","features":[379,374]},{"name":"WPD_SECTION_DATA_LENGTH","features":[379,374]},{"name":"WPD_SECTION_DATA_OFFSET","features":[379,374]},{"name":"WPD_SECTION_DATA_REFERENCED_OBJECT_RESOURCE","features":[379,374]},{"name":"WPD_SECTION_DATA_UNITS","features":[379,374]},{"name":"WPD_SECTION_DATA_UNITS_BYTES","features":[379]},{"name":"WPD_SECTION_DATA_UNITS_MILLISECONDS","features":[379]},{"name":"WPD_SECTION_DATA_UNITS_VALUES","features":[379]},{"name":"WPD_SECTION_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_SERVICE_INHERITANCE_IMPLEMENTATION","features":[379]},{"name":"WPD_SERVICE_INHERITANCE_TYPES","features":[379]},{"name":"WPD_SERVICE_PROPERTIES_V1","features":[379]},{"name":"WPD_SERVICE_VERSION","features":[379,374]},{"name":"WPD_SMS_ENCODING","features":[379,374]},{"name":"WPD_SMS_ENCODING_TYPES","features":[379]},{"name":"WPD_SMS_MAX_PAYLOAD","features":[379,374]},{"name":"WPD_SMS_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_SMS_PROVIDER","features":[379,374]},{"name":"WPD_SMS_TIMEOUT","features":[379,374]},{"name":"WPD_STILL_IMAGE_ARTIST","features":[379,374]},{"name":"WPD_STILL_IMAGE_BURST_INTERVAL","features":[379,374]},{"name":"WPD_STILL_IMAGE_BURST_NUMBER","features":[379,374]},{"name":"WPD_STILL_IMAGE_CAMERA_MANUFACTURER","features":[379,374]},{"name":"WPD_STILL_IMAGE_CAMERA_MODEL","features":[379,374]},{"name":"WPD_STILL_IMAGE_CAPTURE_DELAY","features":[379,374]},{"name":"WPD_STILL_IMAGE_CAPTURE_FORMAT","features":[379,374]},{"name":"WPD_STILL_IMAGE_CAPTURE_MODE","features":[379,374]},{"name":"WPD_STILL_IMAGE_CAPTURE_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_STILL_IMAGE_CAPTURE_RESOLUTION","features":[379,374]},{"name":"WPD_STILL_IMAGE_COMPRESSION_SETTING","features":[379,374]},{"name":"WPD_STILL_IMAGE_CONTRAST","features":[379,374]},{"name":"WPD_STILL_IMAGE_DIGITAL_ZOOM","features":[379,374]},{"name":"WPD_STILL_IMAGE_EFFECT_MODE","features":[379,374]},{"name":"WPD_STILL_IMAGE_EXPOSURE_BIAS_COMPENSATION","features":[379,374]},{"name":"WPD_STILL_IMAGE_EXPOSURE_INDEX","features":[379,374]},{"name":"WPD_STILL_IMAGE_EXPOSURE_METERING_MODE","features":[379,374]},{"name":"WPD_STILL_IMAGE_EXPOSURE_PROGRAM_MODE","features":[379,374]},{"name":"WPD_STILL_IMAGE_EXPOSURE_TIME","features":[379,374]},{"name":"WPD_STILL_IMAGE_FLASH_MODE","features":[379,374]},{"name":"WPD_STILL_IMAGE_FNUMBER","features":[379,374]},{"name":"WPD_STILL_IMAGE_FOCAL_LENGTH","features":[379,374]},{"name":"WPD_STILL_IMAGE_FOCUS_DISTANCE","features":[379,374]},{"name":"WPD_STILL_IMAGE_FOCUS_METERING_MODE","features":[379,374]},{"name":"WPD_STILL_IMAGE_FOCUS_MODE","features":[379,374]},{"name":"WPD_STILL_IMAGE_RGB_GAIN","features":[379,374]},{"name":"WPD_STILL_IMAGE_SHARPNESS","features":[379,374]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_INTERVAL","features":[379,374]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_NUMBER","features":[379,374]},{"name":"WPD_STILL_IMAGE_UPLOAD_URL","features":[379,374]},{"name":"WPD_STILL_IMAGE_WHITE_BALANCE","features":[379,374]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY","features":[379,374]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READWRITE","features":[379]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITHOUT_OBJECT_DELETION","features":[379]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITH_OBJECT_DELETION","features":[379]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_VALUES","features":[379]},{"name":"WPD_STORAGE_CAPACITY","features":[379,374]},{"name":"WPD_STORAGE_CAPACITY_IN_OBJECTS","features":[379,374]},{"name":"WPD_STORAGE_DESCRIPTION","features":[379,374]},{"name":"WPD_STORAGE_FILE_SYSTEM_TYPE","features":[379,374]},{"name":"WPD_STORAGE_FREE_SPACE_IN_BYTES","features":[379,374]},{"name":"WPD_STORAGE_FREE_SPACE_IN_OBJECTS","features":[379,374]},{"name":"WPD_STORAGE_MAX_OBJECT_SIZE","features":[379,374]},{"name":"WPD_STORAGE_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_STORAGE_SERIAL_NUMBER","features":[379,374]},{"name":"WPD_STORAGE_TYPE","features":[379,374]},{"name":"WPD_STORAGE_TYPE_FIXED_RAM","features":[379]},{"name":"WPD_STORAGE_TYPE_FIXED_ROM","features":[379]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_RAM","features":[379]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_ROM","features":[379]},{"name":"WPD_STORAGE_TYPE_UNDEFINED","features":[379]},{"name":"WPD_STORAGE_TYPE_VALUES","features":[379]},{"name":"WPD_STREAM_UNITS","features":[379]},{"name":"WPD_STREAM_UNITS_BYTES","features":[379]},{"name":"WPD_STREAM_UNITS_FRAMES","features":[379]},{"name":"WPD_STREAM_UNITS_MICROSECONDS","features":[379]},{"name":"WPD_STREAM_UNITS_MILLISECONDS","features":[379]},{"name":"WPD_STREAM_UNITS_ROWS","features":[379]},{"name":"WPD_TASK_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_TASK_OWNER","features":[379,374]},{"name":"WPD_TASK_PERCENT_COMPLETE","features":[379,374]},{"name":"WPD_TASK_REMINDER_DATE","features":[379,374]},{"name":"WPD_TASK_STATUS","features":[379,374]},{"name":"WPD_VIDEO_AUTHOR","features":[379,374]},{"name":"WPD_VIDEO_BITRATE","features":[379,374]},{"name":"WPD_VIDEO_BUFFER_SIZE","features":[379,374]},{"name":"WPD_VIDEO_CREDITS","features":[379,374]},{"name":"WPD_VIDEO_FOURCC_CODE","features":[379,374]},{"name":"WPD_VIDEO_FRAMERATE","features":[379,374]},{"name":"WPD_VIDEO_KEY_FRAME_DISTANCE","features":[379,374]},{"name":"WPD_VIDEO_OBJECT_PROPERTIES_V1","features":[379]},{"name":"WPD_VIDEO_QUALITY_SETTING","features":[379,374]},{"name":"WPD_VIDEO_RECORDEDTV_CHANNEL_NUMBER","features":[379,374]},{"name":"WPD_VIDEO_RECORDEDTV_REPEAT","features":[379,374]},{"name":"WPD_VIDEO_RECORDEDTV_STATION_NAME","features":[379,374]},{"name":"WPD_VIDEO_SCAN_TYPE","features":[379,374]},{"name":"WPD_VIDEO_SCAN_TYPES","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_LOWER_FIRST","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_UPPER_FIRST","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_LOWER_FIRST","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_UPPER_FIRST","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE_AND_PROGRESSIVE","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_PROGRESSIVE","features":[379]},{"name":"WPD_VIDEO_SCAN_TYPE_UNUSED","features":[379]},{"name":"WPD_WHITE_BALANCE_AUTOMATIC","features":[379]},{"name":"WPD_WHITE_BALANCE_DAYLIGHT","features":[379]},{"name":"WPD_WHITE_BALANCE_FLASH","features":[379]},{"name":"WPD_WHITE_BALANCE_FLORESCENT","features":[379]},{"name":"WPD_WHITE_BALANCE_MANUAL","features":[379]},{"name":"WPD_WHITE_BALANCE_ONE_PUSH_AUTOMATIC","features":[379]},{"name":"WPD_WHITE_BALANCE_SETTINGS","features":[379]},{"name":"WPD_WHITE_BALANCE_TUNGSTEN","features":[379]},{"name":"WPD_WHITE_BALANCE_UNDEFINED","features":[379]},{"name":"WpdAttributeForm","features":[379]},{"name":"WpdParameterAttributeForm","features":[379]},{"name":"WpdSerializer","features":[379]}],"382":[{"name":"DEVPKEY_DevQuery_ObjectType","features":[336]},{"name":"DEVPKEY_DeviceClass_Characteristics","features":[336]},{"name":"DEVPKEY_DeviceClass_ClassCoInstallers","features":[336]},{"name":"DEVPKEY_DeviceClass_ClassInstaller","features":[336]},{"name":"DEVPKEY_DeviceClass_ClassName","features":[336]},{"name":"DEVPKEY_DeviceClass_DHPRebalanceOptOut","features":[336]},{"name":"DEVPKEY_DeviceClass_DefaultService","features":[336]},{"name":"DEVPKEY_DeviceClass_DevType","features":[336]},{"name":"DEVPKEY_DeviceClass_Exclusive","features":[336]},{"name":"DEVPKEY_DeviceClass_Icon","features":[336]},{"name":"DEVPKEY_DeviceClass_IconPath","features":[336]},{"name":"DEVPKEY_DeviceClass_LowerFilters","features":[336]},{"name":"DEVPKEY_DeviceClass_Name","features":[336]},{"name":"DEVPKEY_DeviceClass_NoDisplayClass","features":[336]},{"name":"DEVPKEY_DeviceClass_NoInstallClass","features":[336]},{"name":"DEVPKEY_DeviceClass_NoUseClass","features":[336]},{"name":"DEVPKEY_DeviceClass_PropPageProvider","features":[336]},{"name":"DEVPKEY_DeviceClass_Security","features":[336]},{"name":"DEVPKEY_DeviceClass_SecuritySDS","features":[336]},{"name":"DEVPKEY_DeviceClass_SilentInstall","features":[336]},{"name":"DEVPKEY_DeviceClass_UpperFilters","features":[336]},{"name":"DEVPKEY_DeviceContainer_Address","features":[336]},{"name":"DEVPKEY_DeviceContainer_AlwaysShowDeviceAsConnected","features":[336]},{"name":"DEVPKEY_DeviceContainer_AssociationArray","features":[336]},{"name":"DEVPKEY_DeviceContainer_BaselineExperienceId","features":[336]},{"name":"DEVPKEY_DeviceContainer_Category","features":[336]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Desc","features":[336]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Icon","features":[336]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Plural","features":[336]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Singular","features":[336]},{"name":"DEVPKEY_DeviceContainer_Category_Icon","features":[336]},{"name":"DEVPKEY_DeviceContainer_ConfigFlags","features":[336]},{"name":"DEVPKEY_DeviceContainer_CustomPrivilegedPackageFamilyNames","features":[336]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription1","features":[336]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription2","features":[336]},{"name":"DEVPKEY_DeviceContainer_DeviceFunctionSubRank","features":[336]},{"name":"DEVPKEY_DeviceContainer_DiscoveryMethod","features":[336]},{"name":"DEVPKEY_DeviceContainer_ExperienceId","features":[336]},{"name":"DEVPKEY_DeviceContainer_FriendlyName","features":[336]},{"name":"DEVPKEY_DeviceContainer_HasProblem","features":[336]},{"name":"DEVPKEY_DeviceContainer_Icon","features":[336]},{"name":"DEVPKEY_DeviceContainer_InstallInProgress","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsAuthenticated","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsConnected","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsDefaultDevice","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsDeviceUniquelyIdentifiable","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsEncrypted","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsLocalMachine","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsMetadataSearchInProgress","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsNetworkDevice","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsNotInterestingForDisplay","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsPaired","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsRebootRequired","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsSharedDevice","features":[336]},{"name":"DEVPKEY_DeviceContainer_IsShowInDisconnectedState","features":[336]},{"name":"DEVPKEY_DeviceContainer_Last_Connected","features":[336]},{"name":"DEVPKEY_DeviceContainer_Last_Seen","features":[336]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageFromExplorer","features":[336]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageOnDeviceConnect","features":[336]},{"name":"DEVPKEY_DeviceContainer_Manufacturer","features":[336]},{"name":"DEVPKEY_DeviceContainer_MetadataCabinet","features":[336]},{"name":"DEVPKEY_DeviceContainer_MetadataChecksum","features":[336]},{"name":"DEVPKEY_DeviceContainer_MetadataPath","features":[336]},{"name":"DEVPKEY_DeviceContainer_ModelName","features":[336]},{"name":"DEVPKEY_DeviceContainer_ModelNumber","features":[336]},{"name":"DEVPKEY_DeviceContainer_PrimaryCategory","features":[336]},{"name":"DEVPKEY_DeviceContainer_PrivilegedPackageFamilyNames","features":[336]},{"name":"DEVPKEY_DeviceContainer_RequiresPairingElevation","features":[336]},{"name":"DEVPKEY_DeviceContainer_RequiresUninstallElevation","features":[336]},{"name":"DEVPKEY_DeviceContainer_UnpairUninstall","features":[336]},{"name":"DEVPKEY_DeviceContainer_Version","features":[336]},{"name":"DEVPKEY_DeviceInterfaceClass_DefaultInterface","features":[336]},{"name":"DEVPKEY_DeviceInterfaceClass_Name","features":[336]},{"name":"DEVPKEY_DeviceInterface_Autoplay_Silent","features":[336]},{"name":"DEVPKEY_DeviceInterface_ClassGuid","features":[336]},{"name":"DEVPKEY_DeviceInterface_Enabled","features":[336]},{"name":"DEVPKEY_DeviceInterface_FriendlyName","features":[336]},{"name":"DEVPKEY_DeviceInterface_ReferenceString","features":[336]},{"name":"DEVPKEY_DeviceInterface_Restricted","features":[336]},{"name":"DEVPKEY_DeviceInterface_SchematicName","features":[336]},{"name":"DEVPKEY_DeviceInterface_UnrestrictedAppCapabilities","features":[336]},{"name":"DEVPKEY_Device_AdditionalSoftwareRequested","features":[336]},{"name":"DEVPKEY_Device_Address","features":[336]},{"name":"DEVPKEY_Device_AssignedToGuest","features":[336]},{"name":"DEVPKEY_Device_BaseContainerId","features":[336]},{"name":"DEVPKEY_Device_BiosDeviceName","features":[336]},{"name":"DEVPKEY_Device_BusNumber","features":[336]},{"name":"DEVPKEY_Device_BusRelations","features":[336]},{"name":"DEVPKEY_Device_BusReportedDeviceDesc","features":[336]},{"name":"DEVPKEY_Device_BusTypeGuid","features":[336]},{"name":"DEVPKEY_Device_Capabilities","features":[336]},{"name":"DEVPKEY_Device_Characteristics","features":[336]},{"name":"DEVPKEY_Device_Children","features":[336]},{"name":"DEVPKEY_Device_Class","features":[336]},{"name":"DEVPKEY_Device_ClassGuid","features":[336]},{"name":"DEVPKEY_Device_CompanionApps","features":[336]},{"name":"DEVPKEY_Device_CompatibleIds","features":[336]},{"name":"DEVPKEY_Device_ConfigFlags","features":[336]},{"name":"DEVPKEY_Device_ConfigurationId","features":[336]},{"name":"DEVPKEY_Device_ContainerId","features":[336]},{"name":"DEVPKEY_Device_CreatorProcessId","features":[336]},{"name":"DEVPKEY_Device_DHP_Rebalance_Policy","features":[336]},{"name":"DEVPKEY_Device_DebuggerSafe","features":[336]},{"name":"DEVPKEY_Device_DependencyDependents","features":[336]},{"name":"DEVPKEY_Device_DependencyProviders","features":[336]},{"name":"DEVPKEY_Device_DevNodeStatus","features":[336]},{"name":"DEVPKEY_Device_DevType","features":[336]},{"name":"DEVPKEY_Device_DeviceDesc","features":[336]},{"name":"DEVPKEY_Device_Driver","features":[336]},{"name":"DEVPKEY_Device_DriverCoInstallers","features":[336]},{"name":"DEVPKEY_Device_DriverDate","features":[336]},{"name":"DEVPKEY_Device_DriverDesc","features":[336]},{"name":"DEVPKEY_Device_DriverInfPath","features":[336]},{"name":"DEVPKEY_Device_DriverInfSection","features":[336]},{"name":"DEVPKEY_Device_DriverInfSectionExt","features":[336]},{"name":"DEVPKEY_Device_DriverLogoLevel","features":[336]},{"name":"DEVPKEY_Device_DriverProblemDesc","features":[336]},{"name":"DEVPKEY_Device_DriverPropPageProvider","features":[336]},{"name":"DEVPKEY_Device_DriverProvider","features":[336]},{"name":"DEVPKEY_Device_DriverRank","features":[336]},{"name":"DEVPKEY_Device_DriverVersion","features":[336]},{"name":"DEVPKEY_Device_EjectionRelations","features":[336]},{"name":"DEVPKEY_Device_EnumeratorName","features":[336]},{"name":"DEVPKEY_Device_Exclusive","features":[336]},{"name":"DEVPKEY_Device_ExtendedAddress","features":[336]},{"name":"DEVPKEY_Device_ExtendedConfigurationIds","features":[336]},{"name":"DEVPKEY_Device_FirmwareDate","features":[336]},{"name":"DEVPKEY_Device_FirmwareRevision","features":[336]},{"name":"DEVPKEY_Device_FirmwareVendor","features":[336]},{"name":"DEVPKEY_Device_FirmwareVersion","features":[336]},{"name":"DEVPKEY_Device_FirstInstallDate","features":[336]},{"name":"DEVPKEY_Device_FriendlyName","features":[336]},{"name":"DEVPKEY_Device_FriendlyNameAttributes","features":[336]},{"name":"DEVPKEY_Device_GenericDriverInstalled","features":[336]},{"name":"DEVPKEY_Device_HardwareIds","features":[336]},{"name":"DEVPKEY_Device_HasProblem","features":[336]},{"name":"DEVPKEY_Device_InLocalMachineContainer","features":[336]},{"name":"DEVPKEY_Device_InstallDate","features":[336]},{"name":"DEVPKEY_Device_InstallState","features":[336]},{"name":"DEVPKEY_Device_InstanceId","features":[336]},{"name":"DEVPKEY_Device_IsAssociateableByUserAction","features":[336]},{"name":"DEVPKEY_Device_IsPresent","features":[336]},{"name":"DEVPKEY_Device_IsRebootRequired","features":[336]},{"name":"DEVPKEY_Device_LastArrivalDate","features":[336]},{"name":"DEVPKEY_Device_LastRemovalDate","features":[336]},{"name":"DEVPKEY_Device_Legacy","features":[336]},{"name":"DEVPKEY_Device_LegacyBusType","features":[336]},{"name":"DEVPKEY_Device_LocationInfo","features":[336]},{"name":"DEVPKEY_Device_LocationPaths","features":[336]},{"name":"DEVPKEY_Device_LowerFilters","features":[336]},{"name":"DEVPKEY_Device_Manufacturer","features":[336]},{"name":"DEVPKEY_Device_ManufacturerAttributes","features":[336]},{"name":"DEVPKEY_Device_MatchingDeviceId","features":[336]},{"name":"DEVPKEY_Device_Model","features":[336]},{"name":"DEVPKEY_Device_ModelId","features":[336]},{"name":"DEVPKEY_Device_NoConnectSound","features":[336]},{"name":"DEVPKEY_Device_Numa_Node","features":[336]},{"name":"DEVPKEY_Device_Numa_Proximity_Domain","features":[336]},{"name":"DEVPKEY_Device_PDOName","features":[336]},{"name":"DEVPKEY_Device_Parent","features":[336]},{"name":"DEVPKEY_Device_PhysicalDeviceLocation","features":[336]},{"name":"DEVPKEY_Device_PostInstallInProgress","features":[336]},{"name":"DEVPKEY_Device_PowerData","features":[336]},{"name":"DEVPKEY_Device_PowerRelations","features":[336]},{"name":"DEVPKEY_Device_PresenceNotForDevice","features":[336]},{"name":"DEVPKEY_Device_PrimaryCompanionApp","features":[336]},{"name":"DEVPKEY_Device_ProblemCode","features":[336]},{"name":"DEVPKEY_Device_ProblemStatus","features":[336]},{"name":"DEVPKEY_Device_RemovalPolicy","features":[336]},{"name":"DEVPKEY_Device_RemovalPolicyDefault","features":[336]},{"name":"DEVPKEY_Device_RemovalPolicyOverride","features":[336]},{"name":"DEVPKEY_Device_RemovalRelations","features":[336]},{"name":"DEVPKEY_Device_Reported","features":[336]},{"name":"DEVPKEY_Device_ReportedDeviceIdsHash","features":[336]},{"name":"DEVPKEY_Device_ResourcePickerExceptions","features":[336]},{"name":"DEVPKEY_Device_ResourcePickerTags","features":[336]},{"name":"DEVPKEY_Device_SafeRemovalRequired","features":[336]},{"name":"DEVPKEY_Device_SafeRemovalRequiredOverride","features":[336]},{"name":"DEVPKEY_Device_Security","features":[336]},{"name":"DEVPKEY_Device_SecuritySDS","features":[336]},{"name":"DEVPKEY_Device_Service","features":[336]},{"name":"DEVPKEY_Device_SessionId","features":[336]},{"name":"DEVPKEY_Device_ShowInUninstallUI","features":[336]},{"name":"DEVPKEY_Device_Siblings","features":[336]},{"name":"DEVPKEY_Device_SignalStrength","features":[336]},{"name":"DEVPKEY_Device_SoftRestartSupported","features":[336]},{"name":"DEVPKEY_Device_Stack","features":[336]},{"name":"DEVPKEY_Device_TransportRelations","features":[336]},{"name":"DEVPKEY_Device_UINumber","features":[336]},{"name":"DEVPKEY_Device_UINumberDescFormat","features":[336]},{"name":"DEVPKEY_Device_UpperFilters","features":[336]},{"name":"DEVPKEY_DrvPkg_BrandingIcon","features":[336]},{"name":"DEVPKEY_DrvPkg_DetailedDescription","features":[336]},{"name":"DEVPKEY_DrvPkg_DocumentationLink","features":[336]},{"name":"DEVPKEY_DrvPkg_Icon","features":[336]},{"name":"DEVPKEY_DrvPkg_Model","features":[336]},{"name":"DEVPKEY_DrvPkg_VendorWebSite","features":[336]},{"name":"DEVPKEY_NAME","features":[336]},{"name":"DEVPROPCOMPKEY","features":[336]},{"name":"DEVPROPERTY","features":[336]},{"name":"DEVPROPID_FIRST_USABLE","features":[336]},{"name":"DEVPROPKEY","features":[336]},{"name":"DEVPROPSTORE","features":[336]},{"name":"DEVPROPTYPE","features":[336]},{"name":"DEVPROP_BOOLEAN","features":[336]},{"name":"DEVPROP_FALSE","features":[336]},{"name":"DEVPROP_MASK_TYPE","features":[336]},{"name":"DEVPROP_MASK_TYPEMOD","features":[336]},{"name":"DEVPROP_STORE_SYSTEM","features":[336]},{"name":"DEVPROP_STORE_USER","features":[336]},{"name":"DEVPROP_TRUE","features":[336]},{"name":"DEVPROP_TYPEMOD_ARRAY","features":[336]},{"name":"DEVPROP_TYPEMOD_LIST","features":[336]},{"name":"DEVPROP_TYPE_BINARY","features":[336]},{"name":"DEVPROP_TYPE_BOOLEAN","features":[336]},{"name":"DEVPROP_TYPE_BYTE","features":[336]},{"name":"DEVPROP_TYPE_CURRENCY","features":[336]},{"name":"DEVPROP_TYPE_DATE","features":[336]},{"name":"DEVPROP_TYPE_DECIMAL","features":[336]},{"name":"DEVPROP_TYPE_DEVPROPKEY","features":[336]},{"name":"DEVPROP_TYPE_DEVPROPTYPE","features":[336]},{"name":"DEVPROP_TYPE_DOUBLE","features":[336]},{"name":"DEVPROP_TYPE_EMPTY","features":[336]},{"name":"DEVPROP_TYPE_ERROR","features":[336]},{"name":"DEVPROP_TYPE_FILETIME","features":[336]},{"name":"DEVPROP_TYPE_FLOAT","features":[336]},{"name":"DEVPROP_TYPE_GUID","features":[336]},{"name":"DEVPROP_TYPE_INT16","features":[336]},{"name":"DEVPROP_TYPE_INT32","features":[336]},{"name":"DEVPROP_TYPE_INT64","features":[336]},{"name":"DEVPROP_TYPE_NTSTATUS","features":[336]},{"name":"DEVPROP_TYPE_NULL","features":[336]},{"name":"DEVPROP_TYPE_SBYTE","features":[336]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR","features":[336]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING","features":[336]},{"name":"DEVPROP_TYPE_STRING","features":[336]},{"name":"DEVPROP_TYPE_STRING_INDIRECT","features":[336]},{"name":"DEVPROP_TYPE_STRING_LIST","features":[336]},{"name":"DEVPROP_TYPE_UINT16","features":[336]},{"name":"DEVPROP_TYPE_UINT32","features":[336]},{"name":"DEVPROP_TYPE_UINT64","features":[336]},{"name":"MAX_DEVPROP_TYPE","features":[336]},{"name":"MAX_DEVPROP_TYPEMOD","features":[336]}],"383":[{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER","features":[380]},{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER_WSZ","features":[380]},{"name":"IOCTL_PWM_CONTROLLER_GET_ACTUAL_PERIOD","features":[380]},{"name":"IOCTL_PWM_CONTROLLER_GET_INFO","features":[380]},{"name":"IOCTL_PWM_CONTROLLER_SET_DESIRED_PERIOD","features":[380]},{"name":"IOCTL_PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[380]},{"name":"IOCTL_PWM_PIN_GET_POLARITY","features":[380]},{"name":"IOCTL_PWM_PIN_IS_STARTED","features":[380]},{"name":"IOCTL_PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[380]},{"name":"IOCTL_PWM_PIN_SET_POLARITY","features":[380]},{"name":"IOCTL_PWM_PIN_START","features":[380]},{"name":"IOCTL_PWM_PIN_STOP","features":[380]},{"name":"PWM_ACTIVE_HIGH","features":[380]},{"name":"PWM_ACTIVE_LOW","features":[380]},{"name":"PWM_CONTROLLER_GET_ACTUAL_PERIOD_OUTPUT","features":[380]},{"name":"PWM_CONTROLLER_INFO","features":[380]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_INPUT","features":[380]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_OUTPUT","features":[380]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_ACTUAL_PERIOD","features":[380]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_INFO","features":[380]},{"name":"PWM_IOCTL_ID_CONTROLLER_SET_DESIRED_PERIOD","features":[380]},{"name":"PWM_IOCTL_ID_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[380]},{"name":"PWM_IOCTL_ID_PIN_GET_POLARITY","features":[380]},{"name":"PWM_IOCTL_ID_PIN_IS_STARTED","features":[380]},{"name":"PWM_IOCTL_ID_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[380]},{"name":"PWM_IOCTL_ID_PIN_SET_POLARITY","features":[380]},{"name":"PWM_IOCTL_ID_PIN_START","features":[380]},{"name":"PWM_IOCTL_ID_PIN_STOP","features":[380]},{"name":"PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE_OUTPUT","features":[380]},{"name":"PWM_PIN_GET_POLARITY_OUTPUT","features":[380]},{"name":"PWM_PIN_IS_STARTED_OUTPUT","features":[380,303]},{"name":"PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE_INPUT","features":[380]},{"name":"PWM_PIN_SET_POLARITY_INPUT","features":[380]},{"name":"PWM_POLARITY","features":[380]}],"384":[{"name":"ACTIVITY_STATE","features":[381]},{"name":"ACTIVITY_STATE_COUNT","features":[381]},{"name":"AXIS","features":[381]},{"name":"AXIS_MAX","features":[381]},{"name":"AXIS_X","features":[381]},{"name":"AXIS_Y","features":[381]},{"name":"AXIS_Z","features":[381]},{"name":"ActivityStateCount","features":[381]},{"name":"ActivityState_Biking","features":[381]},{"name":"ActivityState_Fidgeting","features":[381]},{"name":"ActivityState_Force_Dword","features":[381]},{"name":"ActivityState_Idle","features":[381]},{"name":"ActivityState_InVehicle","features":[381]},{"name":"ActivityState_Max","features":[381]},{"name":"ActivityState_Running","features":[381]},{"name":"ActivityState_Stationary","features":[381]},{"name":"ActivityState_Unknown","features":[381]},{"name":"ActivityState_Walking","features":[381]},{"name":"CollectionsListAllocateBufferAndSerialize","features":[381,303,374]},{"name":"CollectionsListCopyAndMarshall","features":[381,303,374]},{"name":"CollectionsListDeserializeFromBuffer","features":[381,303,374]},{"name":"CollectionsListGetFillableCount","features":[381]},{"name":"CollectionsListGetMarshalledSize","features":[381,374]},{"name":"CollectionsListGetMarshalledSizeWithoutSerialization","features":[381,374]},{"name":"CollectionsListGetSerializedSize","features":[381,374]},{"name":"CollectionsListMarshall","features":[381,303,374]},{"name":"CollectionsListSerializeToBuffer","features":[381,303,374]},{"name":"CollectionsListSortSubscribedActivitiesByConfidence","features":[381,303,374]},{"name":"CollectionsListUpdateMarshalledPointer","features":[381,303,374]},{"name":"ELEVATION_CHANGE_MODE","features":[381]},{"name":"ElevationChangeMode_Elevator","features":[381]},{"name":"ElevationChangeMode_Force_Dword","features":[381]},{"name":"ElevationChangeMode_Max","features":[381]},{"name":"ElevationChangeMode_Stepping","features":[381]},{"name":"ElevationChangeMode_Unknown","features":[381]},{"name":"EvaluateActivityThresholds","features":[381,303,374]},{"name":"GNSS_CLEAR_ALL_ASSISTANCE_DATA","features":[381]},{"name":"GUID_DEVINTERFACE_SENSOR","features":[381]},{"name":"GUID_SensorCategory_All","features":[381]},{"name":"GUID_SensorCategory_Biometric","features":[381]},{"name":"GUID_SensorCategory_Electrical","features":[381]},{"name":"GUID_SensorCategory_Environmental","features":[381]},{"name":"GUID_SensorCategory_Light","features":[381]},{"name":"GUID_SensorCategory_Location","features":[381]},{"name":"GUID_SensorCategory_Mechanical","features":[381]},{"name":"GUID_SensorCategory_Motion","features":[381]},{"name":"GUID_SensorCategory_Orientation","features":[381]},{"name":"GUID_SensorCategory_Other","features":[381]},{"name":"GUID_SensorCategory_PersonalActivity","features":[381]},{"name":"GUID_SensorCategory_Scanner","features":[381]},{"name":"GUID_SensorCategory_Unsupported","features":[381]},{"name":"GUID_SensorType_Accelerometer3D","features":[381]},{"name":"GUID_SensorType_ActivityDetection","features":[381]},{"name":"GUID_SensorType_AmbientLight","features":[381]},{"name":"GUID_SensorType_Barometer","features":[381]},{"name":"GUID_SensorType_Custom","features":[381]},{"name":"GUID_SensorType_FloorElevation","features":[381]},{"name":"GUID_SensorType_GeomagneticOrientation","features":[381]},{"name":"GUID_SensorType_GravityVector","features":[381]},{"name":"GUID_SensorType_Gyrometer3D","features":[381]},{"name":"GUID_SensorType_HingeAngle","features":[381]},{"name":"GUID_SensorType_Humidity","features":[381]},{"name":"GUID_SensorType_LinearAccelerometer","features":[381]},{"name":"GUID_SensorType_Magnetometer3D","features":[381]},{"name":"GUID_SensorType_Orientation","features":[381]},{"name":"GUID_SensorType_Pedometer","features":[381]},{"name":"GUID_SensorType_Proximity","features":[381]},{"name":"GUID_SensorType_RelativeOrientation","features":[381]},{"name":"GUID_SensorType_SimpleDeviceOrientation","features":[381]},{"name":"GUID_SensorType_Temperature","features":[381]},{"name":"GetPerformanceTime","features":[381,303]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE","features":[381]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE_COUNT","features":[381]},{"name":"HumanPresenceDetectionTypeCount","features":[381]},{"name":"HumanPresenceDetectionType_AudioBiometric","features":[381]},{"name":"HumanPresenceDetectionType_FacialBiometric","features":[381]},{"name":"HumanPresenceDetectionType_Force_Dword","features":[381]},{"name":"HumanPresenceDetectionType_Undefined","features":[381]},{"name":"HumanPresenceDetectionType_VendorDefinedBiometric","features":[381]},{"name":"HumanPresenceDetectionType_VendorDefinedNonBiometric","features":[381]},{"name":"ILocationPermissions","features":[381]},{"name":"ISensor","features":[381]},{"name":"ISensorCollection","features":[381]},{"name":"ISensorDataReport","features":[381]},{"name":"ISensorEvents","features":[381]},{"name":"ISensorManager","features":[381]},{"name":"ISensorManagerEvents","features":[381]},{"name":"InitPropVariantFromCLSIDArray","features":[381]},{"name":"InitPropVariantFromFloat","features":[381]},{"name":"IsCollectionListSame","features":[381,303,374]},{"name":"IsGUIDPresentInList","features":[381,303]},{"name":"IsKeyPresentInCollectionList","features":[381,303,374]},{"name":"IsKeyPresentInPropertyList","features":[381,303,374]},{"name":"IsSensorSubscribed","features":[381,303,374]},{"name":"LOCATION_DESIRED_ACCURACY","features":[381]},{"name":"LOCATION_DESIRED_ACCURACY_DEFAULT","features":[381]},{"name":"LOCATION_DESIRED_ACCURACY_HIGH","features":[381]},{"name":"LOCATION_POSITION_SOURCE","features":[381]},{"name":"LOCATION_POSITION_SOURCE_CELLULAR","features":[381]},{"name":"LOCATION_POSITION_SOURCE_IPADDRESS","features":[381]},{"name":"LOCATION_POSITION_SOURCE_SATELLITE","features":[381]},{"name":"LOCATION_POSITION_SOURCE_UNKNOWN","features":[381]},{"name":"LOCATION_POSITION_SOURCE_WIFI","features":[381]},{"name":"MAGNETOMETER_ACCURACY","features":[381]},{"name":"MAGNETOMETER_ACCURACY_APPROXIMATE","features":[381]},{"name":"MAGNETOMETER_ACCURACY_HIGH","features":[381]},{"name":"MAGNETOMETER_ACCURACY_UNKNOWN","features":[381]},{"name":"MAGNETOMETER_ACCURACY_UNRELIABLE","features":[381]},{"name":"MATRIX3X3","features":[381]},{"name":"MagnetometerAccuracy","features":[381]},{"name":"MagnetometerAccuracy_Approximate","features":[381]},{"name":"MagnetometerAccuracy_High","features":[381]},{"name":"MagnetometerAccuracy_Unknown","features":[381]},{"name":"MagnetometerAccuracy_Unreliable","features":[381]},{"name":"PEDOMETER_STEP_TYPE","features":[381]},{"name":"PEDOMETER_STEP_TYPE_COUNT","features":[381]},{"name":"PROXIMITY_SENSOR_CAPABILITIES","features":[381]},{"name":"PROXIMITY_TYPE","features":[381]},{"name":"PedometerStepTypeCount","features":[381]},{"name":"PedometerStepType_Force_Dword","features":[381]},{"name":"PedometerStepType_Max","features":[381]},{"name":"PedometerStepType_Running","features":[381]},{"name":"PedometerStepType_Unknown","features":[381]},{"name":"PedometerStepType_Walking","features":[381]},{"name":"PropKeyFindKeyGetBool","features":[381,303,374]},{"name":"PropKeyFindKeyGetDouble","features":[381,303,374]},{"name":"PropKeyFindKeyGetFileTime","features":[381,303,374]},{"name":"PropKeyFindKeyGetFloat","features":[381,303,374]},{"name":"PropKeyFindKeyGetGuid","features":[381,303,374]},{"name":"PropKeyFindKeyGetInt32","features":[381,303,374]},{"name":"PropKeyFindKeyGetInt64","features":[381,303,374]},{"name":"PropKeyFindKeyGetNthInt64","features":[381,303,374]},{"name":"PropKeyFindKeyGetNthUlong","features":[381,303,374]},{"name":"PropKeyFindKeyGetNthUshort","features":[381,303,374]},{"name":"PropKeyFindKeyGetPropVariant","features":[381,303,374]},{"name":"PropKeyFindKeyGetUlong","features":[381,303,374]},{"name":"PropKeyFindKeyGetUshort","features":[381,303,374]},{"name":"PropKeyFindKeySetPropVariant","features":[381,303,374]},{"name":"PropVariantGetInformation","features":[336,381,303]},{"name":"PropertiesListCopy","features":[381,303,374]},{"name":"PropertiesListGetFillableCount","features":[381]},{"name":"ProximityType_Force_Dword","features":[381]},{"name":"ProximityType_HumanProximity","features":[381]},{"name":"ProximityType_ObjectProximity","features":[381]},{"name":"Proximity_Sensor_Human_Engagement_Capable","features":[381]},{"name":"Proximity_Sensor_Human_Presence_Capable","features":[381]},{"name":"Proximity_Sensor_Supported_Capabilities","features":[381]},{"name":"QUATERNION","features":[381]},{"name":"SENSOR_CATEGORY_ALL","features":[381]},{"name":"SENSOR_CATEGORY_BIOMETRIC","features":[381]},{"name":"SENSOR_CATEGORY_ELECTRICAL","features":[381]},{"name":"SENSOR_CATEGORY_ENVIRONMENTAL","features":[381]},{"name":"SENSOR_CATEGORY_LIGHT","features":[381]},{"name":"SENSOR_CATEGORY_LOCATION","features":[381]},{"name":"SENSOR_CATEGORY_MECHANICAL","features":[381]},{"name":"SENSOR_CATEGORY_MOTION","features":[381]},{"name":"SENSOR_CATEGORY_ORIENTATION","features":[381]},{"name":"SENSOR_CATEGORY_OTHER","features":[381]},{"name":"SENSOR_CATEGORY_SCANNER","features":[381]},{"name":"SENSOR_CATEGORY_UNSUPPORTED","features":[381]},{"name":"SENSOR_COLLECTION_LIST","features":[381,374]},{"name":"SENSOR_CONNECTION_TYPES","features":[381]},{"name":"SENSOR_CONNECTION_TYPE_PC_ATTACHED","features":[381]},{"name":"SENSOR_CONNECTION_TYPE_PC_EXTERNAL","features":[381]},{"name":"SENSOR_CONNECTION_TYPE_PC_INTEGRATED","features":[381]},{"name":"SENSOR_DATA_TYPE_ABSOLUTE_PRESSURE_PASCAL","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_X_G","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Y_G","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Z_G","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ADDRESS1","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ADDRESS2","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ANTENNA_SEALEVEL_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_ERROR_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_ERROR_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_X_DEGREES_PER_SECOND_SQUARED","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Y_DEGREES_PER_SECOND_SQUARED","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Z_DEGREES_PER_SECOND_SQUARED","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_X_DEGREES_PER_SECOND","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Y_DEGREES_PER_SECOND","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Z_DEGREES_PER_SECOND","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ATMOSPHERIC_PRESSURE_BAR","features":[381,374]},{"name":"SENSOR_DATA_TYPE_BIOMETRIC_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_ARRAY_STATES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_STATE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CAPACITANCE_FARAD","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CITY","features":[381,374]},{"name":"SENSOR_DATA_TYPE_COMMON_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_COUNTRY_REGION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CURRENT_AMPS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_BOOLEAN_ARRAY","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_CUSTOM_USAGE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE1","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE10","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE11","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE12","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE13","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE14","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE15","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE16","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE17","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE18","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE19","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE2","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE20","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE21","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE22","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE23","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE24","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE25","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE26","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE27","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE28","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE3","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE4","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE5","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE6","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE7","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE8","features":[381,374]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE9","features":[381,374]},{"name":"SENSOR_DATA_TYPE_DGPS_DATA_AGE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_DIFFERENTIAL_REFERENCE_STATION_ID","features":[381,374]},{"name":"SENSOR_DATA_TYPE_DISTANCE_X_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Y_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Z_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_FREQUENCY_HERTZ","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_PERCENT_OF_RANGE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_POWER_WATTS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ENVIRONMENTAL_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_ERROR_RADIUS_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_FIX_QUALITY","features":[381,374]},{"name":"SENSOR_DATA_TYPE_FIX_TYPE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_FORCE_NEWTONS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_GAUGE_PRESSURE_PASCAL","features":[381,374]},{"name":"SENSOR_DATA_TYPE_GEOIDAL_SEPARATION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_GPS_OPERATION_MODE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_GPS_SELECTION_MODE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_GPS_STATUS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_GUID_MECHANICAL_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_HORIZONAL_DILUTION_OF_PRECISION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_HUMAN_PRESENCE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_HUMAN_PROXIMITY_METERS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_INDUCTANCE_HENRY","features":[381,374]},{"name":"SENSOR_DATA_TYPE_LATITUDE_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_LIGHT_CHROMACITY","features":[381,374]},{"name":"SENSOR_DATA_TYPE_LIGHT_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_LIGHT_LEVEL_LUX","features":[381,374]},{"name":"SENSOR_DATA_TYPE_LIGHT_TEMPERATURE_KELVIN","features":[381,374]},{"name":"SENSOR_DATA_TYPE_LOCATION_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_LOCATION_SOURCE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_LONGITUDE_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_X_MILLIGAUSS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Y_MILLIGAUSS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Z_MILLIGAUSS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_MAGNETIC_NORTH_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_TRUE_NORTH_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_MAGNETIC_NORTH_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_TRUE_NORTH_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_X_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Y_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Z_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_VARIATION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MAGNETOMETER_ACCURACY","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MOTION_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_MOTION_STATE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_MULTIVALUE_SWITCH_STATE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_NMEA_SENTENCE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ORIENTATION_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_POSITION_DILUTION_OF_PRECISION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_POSTALCODE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_QUADRANT_ANGLE_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_QUATERNION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_RELATIVE_HUMIDITY_PERCENT","features":[381,374]},{"name":"SENSOR_DATA_TYPE_RESISTANCE_OHMS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_RFID_TAG_40_BIT","features":[381,374]},{"name":"SENSOR_DATA_TYPE_ROTATION_MATRIX","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_AZIMUTH","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ELEVATION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ID","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_PRNS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_STN_RATIO","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_COUNT","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS_AND_CONSTELLATIONS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SCANNER_GUID","features":[381]},{"name":"SENSOR_DATA_TYPE_SIMPLE_DEVICE_ORIENTATION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SPEED_KNOTS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_SPEED_METERS_PER_SECOND","features":[381,374]},{"name":"SENSOR_DATA_TYPE_STATE_PROVINCE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_STRAIN","features":[381,374]},{"name":"SENSOR_DATA_TYPE_TEMPERATURE_CELSIUS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_TILT_X_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_TILT_Y_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_TILT_Z_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_TIMESTAMP","features":[381,374]},{"name":"SENSOR_DATA_TYPE_TOUCH_STATE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_TRUE_HEADING_DEGREES","features":[381,374]},{"name":"SENSOR_DATA_TYPE_VERTICAL_DILUTION_OF_PRECISION","features":[381,374]},{"name":"SENSOR_DATA_TYPE_VOLTAGE_VOLTS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_WEIGHT_KILOGRAMS","features":[381,374]},{"name":"SENSOR_DATA_TYPE_WIND_DIRECTION_DEGREES_ANTICLOCKWISE","features":[381,374]},{"name":"SENSOR_DATA_TYPE_WIND_SPEED_METERS_PER_SECOND","features":[381,374]},{"name":"SENSOR_ERROR_PARAMETER_COMMON_GUID","features":[381]},{"name":"SENSOR_EVENT_ACCELEROMETER_SHAKE","features":[381]},{"name":"SENSOR_EVENT_DATA_UPDATED","features":[381]},{"name":"SENSOR_EVENT_PARAMETER_COMMON_GUID","features":[381]},{"name":"SENSOR_EVENT_PARAMETER_EVENT_ID","features":[381,374]},{"name":"SENSOR_EVENT_PARAMETER_STATE","features":[381,374]},{"name":"SENSOR_EVENT_PROPERTY_CHANGED","features":[381]},{"name":"SENSOR_EVENT_STATE_CHANGED","features":[381]},{"name":"SENSOR_PROPERTY_ACCURACY","features":[381,374]},{"name":"SENSOR_PROPERTY_CHANGE_SENSITIVITY","features":[381,374]},{"name":"SENSOR_PROPERTY_CLEAR_ASSISTANCE_DATA","features":[381,374]},{"name":"SENSOR_PROPERTY_COMMON_GUID","features":[381]},{"name":"SENSOR_PROPERTY_CONNECTION_TYPE","features":[381,374]},{"name":"SENSOR_PROPERTY_CURRENT_REPORT_INTERVAL","features":[381,374]},{"name":"SENSOR_PROPERTY_DESCRIPTION","features":[381,374]},{"name":"SENSOR_PROPERTY_DEVICE_PATH","features":[381,374]},{"name":"SENSOR_PROPERTY_FRIENDLY_NAME","features":[381,374]},{"name":"SENSOR_PROPERTY_HID_USAGE","features":[381,374]},{"name":"SENSOR_PROPERTY_LIGHT_RESPONSE_CURVE","features":[381,374]},{"name":"SENSOR_PROPERTY_LIST","features":[381,374]},{"name":"SENSOR_PROPERTY_LIST_HEADER_SIZE","features":[381]},{"name":"SENSOR_PROPERTY_LOCATION_DESIRED_ACCURACY","features":[381,374]},{"name":"SENSOR_PROPERTY_MANUFACTURER","features":[381,374]},{"name":"SENSOR_PROPERTY_MIN_REPORT_INTERVAL","features":[381,374]},{"name":"SENSOR_PROPERTY_MODEL","features":[381,374]},{"name":"SENSOR_PROPERTY_PERSISTENT_UNIQUE_ID","features":[381,374]},{"name":"SENSOR_PROPERTY_RADIO_STATE","features":[381,374]},{"name":"SENSOR_PROPERTY_RADIO_STATE_PREVIOUS","features":[381,374]},{"name":"SENSOR_PROPERTY_RANGE_MAXIMUM","features":[381,374]},{"name":"SENSOR_PROPERTY_RANGE_MINIMUM","features":[381,374]},{"name":"SENSOR_PROPERTY_RESOLUTION","features":[381,374]},{"name":"SENSOR_PROPERTY_SERIAL_NUMBER","features":[381,374]},{"name":"SENSOR_PROPERTY_STATE","features":[381,374]},{"name":"SENSOR_PROPERTY_TEST_GUID","features":[381]},{"name":"SENSOR_PROPERTY_TURN_ON_OFF_NMEA","features":[381,374]},{"name":"SENSOR_PROPERTY_TYPE","features":[381,374]},{"name":"SENSOR_STATE","features":[381]},{"name":"SENSOR_STATE_ACCESS_DENIED","features":[381]},{"name":"SENSOR_STATE_ERROR","features":[381]},{"name":"SENSOR_STATE_INITIALIZING","features":[381]},{"name":"SENSOR_STATE_MAX","features":[381]},{"name":"SENSOR_STATE_MIN","features":[381]},{"name":"SENSOR_STATE_NOT_AVAILABLE","features":[381]},{"name":"SENSOR_STATE_NO_DATA","features":[381]},{"name":"SENSOR_STATE_READY","features":[381]},{"name":"SENSOR_TYPE_ACCELEROMETER_1D","features":[381]},{"name":"SENSOR_TYPE_ACCELEROMETER_2D","features":[381]},{"name":"SENSOR_TYPE_ACCELEROMETER_3D","features":[381]},{"name":"SENSOR_TYPE_AGGREGATED_DEVICE_ORIENTATION","features":[381]},{"name":"SENSOR_TYPE_AGGREGATED_QUADRANT_ORIENTATION","features":[381]},{"name":"SENSOR_TYPE_AGGREGATED_SIMPLE_DEVICE_ORIENTATION","features":[381]},{"name":"SENSOR_TYPE_AMBIENT_LIGHT","features":[381]},{"name":"SENSOR_TYPE_BARCODE_SCANNER","features":[381]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH","features":[381]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH_ARRAY","features":[381]},{"name":"SENSOR_TYPE_CAPACITANCE","features":[381]},{"name":"SENSOR_TYPE_COMPASS_1D","features":[381]},{"name":"SENSOR_TYPE_COMPASS_2D","features":[381]},{"name":"SENSOR_TYPE_COMPASS_3D","features":[381]},{"name":"SENSOR_TYPE_CURRENT","features":[381]},{"name":"SENSOR_TYPE_CUSTOM","features":[381]},{"name":"SENSOR_TYPE_DISTANCE_1D","features":[381]},{"name":"SENSOR_TYPE_DISTANCE_2D","features":[381]},{"name":"SENSOR_TYPE_DISTANCE_3D","features":[381]},{"name":"SENSOR_TYPE_ELECTRICAL_POWER","features":[381]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_ATMOSPHERIC_PRESSURE","features":[381]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_HUMIDITY","features":[381]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_TEMPERATURE","features":[381]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_DIRECTION","features":[381]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_SPEED","features":[381]},{"name":"SENSOR_TYPE_FORCE","features":[381]},{"name":"SENSOR_TYPE_FREQUENCY","features":[381]},{"name":"SENSOR_TYPE_GYROMETER_1D","features":[381]},{"name":"SENSOR_TYPE_GYROMETER_2D","features":[381]},{"name":"SENSOR_TYPE_GYROMETER_3D","features":[381]},{"name":"SENSOR_TYPE_HUMAN_PRESENCE","features":[381]},{"name":"SENSOR_TYPE_HUMAN_PROXIMITY","features":[381]},{"name":"SENSOR_TYPE_INCLINOMETER_1D","features":[381]},{"name":"SENSOR_TYPE_INCLINOMETER_2D","features":[381]},{"name":"SENSOR_TYPE_INCLINOMETER_3D","features":[381]},{"name":"SENSOR_TYPE_INDUCTANCE","features":[381]},{"name":"SENSOR_TYPE_LOCATION_BROADCAST","features":[381]},{"name":"SENSOR_TYPE_LOCATION_DEAD_RECKONING","features":[381]},{"name":"SENSOR_TYPE_LOCATION_GPS","features":[381]},{"name":"SENSOR_TYPE_LOCATION_LOOKUP","features":[381]},{"name":"SENSOR_TYPE_LOCATION_OTHER","features":[381]},{"name":"SENSOR_TYPE_LOCATION_STATIC","features":[381]},{"name":"SENSOR_TYPE_LOCATION_TRIANGULATION","features":[381]},{"name":"SENSOR_TYPE_MOTION_DETECTOR","features":[381]},{"name":"SENSOR_TYPE_MULTIVALUE_SWITCH","features":[381]},{"name":"SENSOR_TYPE_POTENTIOMETER","features":[381]},{"name":"SENSOR_TYPE_PRESSURE","features":[381]},{"name":"SENSOR_TYPE_RESISTANCE","features":[381]},{"name":"SENSOR_TYPE_RFID_SCANNER","features":[381]},{"name":"SENSOR_TYPE_SCALE","features":[381]},{"name":"SENSOR_TYPE_SPEEDOMETER","features":[381]},{"name":"SENSOR_TYPE_STRAIN","features":[381]},{"name":"SENSOR_TYPE_TOUCH","features":[381]},{"name":"SENSOR_TYPE_UNKNOWN","features":[381]},{"name":"SENSOR_TYPE_VOLTAGE","features":[381]},{"name":"SENSOR_VALUE_PAIR","features":[381,374]},{"name":"SIMPLE_DEVICE_ORIENTATION","features":[381]},{"name":"SIMPLE_DEVICE_ORIENTATION_NOT_ROTATED","features":[381]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_180","features":[381]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_270","features":[381]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_90","features":[381]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_DOWN","features":[381]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_UP","features":[381]},{"name":"Sensor","features":[381]},{"name":"SensorCollection","features":[381]},{"name":"SensorCollectionGetAt","features":[381,303,374]},{"name":"SensorConnectionType","features":[381]},{"name":"SensorConnectionType_Attached","features":[381]},{"name":"SensorConnectionType_External","features":[381]},{"name":"SensorConnectionType_Integrated","features":[381]},{"name":"SensorDataReport","features":[381]},{"name":"SensorManager","features":[381]},{"name":"SensorState","features":[381]},{"name":"SensorState_Active","features":[381]},{"name":"SensorState_Error","features":[381]},{"name":"SensorState_Idle","features":[381]},{"name":"SensorState_Initializing","features":[381]},{"name":"SerializationBufferAllocate","features":[381,303]},{"name":"SerializationBufferFree","features":[381]},{"name":"SimpleDeviceOrientation","features":[381]},{"name":"SimpleDeviceOrientation_Facedown","features":[381]},{"name":"SimpleDeviceOrientation_Faceup","features":[381]},{"name":"SimpleDeviceOrientation_NotRotated","features":[381]},{"name":"SimpleDeviceOrientation_Rotated180DegreesCounterclockwise","features":[381]},{"name":"SimpleDeviceOrientation_Rotated270DegreesCounterclockwise","features":[381]},{"name":"SimpleDeviceOrientation_Rotated90DegreesCounterclockwise","features":[381]},{"name":"VEC3D","features":[381]}],"385":[{"name":"CDB_REPORT_BITS","features":[382]},{"name":"CDB_REPORT_BYTES","features":[382]},{"name":"COMDB_MAX_PORTS_ARBITRATED","features":[382]},{"name":"COMDB_MIN_PORTS_ARBITRATED","features":[382]},{"name":"ComDBClaimNextFreePort","features":[382]},{"name":"ComDBClaimPort","features":[382,303]},{"name":"ComDBClose","features":[382]},{"name":"ComDBGetCurrentPortUsage","features":[382]},{"name":"ComDBOpen","features":[382]},{"name":"ComDBReleasePort","features":[382]},{"name":"ComDBResizeDatabase","features":[382]},{"name":"DEVPKEY_DeviceInterface_Serial_PortName","features":[336,382]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbProductId","features":[336,382]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbVendorId","features":[336,382]},{"name":"EVEN_PARITY","features":[382]},{"name":"HCOMDB","features":[382]},{"name":"IOCTL_INTERNAL_SERENUM_REMOVE_SELF","features":[382]},{"name":"IOCTL_SERIAL_APPLY_DEFAULT_CONFIGURATION","features":[382]},{"name":"IOCTL_SERIAL_CLEAR_STATS","features":[382]},{"name":"IOCTL_SERIAL_CLR_DTR","features":[382]},{"name":"IOCTL_SERIAL_CLR_RTS","features":[382]},{"name":"IOCTL_SERIAL_CONFIG_SIZE","features":[382]},{"name":"IOCTL_SERIAL_GET_BAUD_RATE","features":[382]},{"name":"IOCTL_SERIAL_GET_CHARS","features":[382]},{"name":"IOCTL_SERIAL_GET_COMMCONFIG","features":[382]},{"name":"IOCTL_SERIAL_GET_COMMSTATUS","features":[382]},{"name":"IOCTL_SERIAL_GET_DTRRTS","features":[382]},{"name":"IOCTL_SERIAL_GET_HANDFLOW","features":[382]},{"name":"IOCTL_SERIAL_GET_LINE_CONTROL","features":[382]},{"name":"IOCTL_SERIAL_GET_MODEMSTATUS","features":[382]},{"name":"IOCTL_SERIAL_GET_MODEM_CONTROL","features":[382]},{"name":"IOCTL_SERIAL_GET_PROPERTIES","features":[382]},{"name":"IOCTL_SERIAL_GET_STATS","features":[382]},{"name":"IOCTL_SERIAL_GET_TIMEOUTS","features":[382]},{"name":"IOCTL_SERIAL_GET_WAIT_MASK","features":[382]},{"name":"IOCTL_SERIAL_IMMEDIATE_CHAR","features":[382]},{"name":"IOCTL_SERIAL_INTERNAL_BASIC_SETTINGS","features":[382]},{"name":"IOCTL_SERIAL_INTERNAL_CANCEL_WAIT_WAKE","features":[382]},{"name":"IOCTL_SERIAL_INTERNAL_DO_WAIT_WAKE","features":[382]},{"name":"IOCTL_SERIAL_INTERNAL_RESTORE_SETTINGS","features":[382]},{"name":"IOCTL_SERIAL_PURGE","features":[382]},{"name":"IOCTL_SERIAL_RESET_DEVICE","features":[382]},{"name":"IOCTL_SERIAL_SET_BAUD_RATE","features":[382]},{"name":"IOCTL_SERIAL_SET_BREAK_OFF","features":[382]},{"name":"IOCTL_SERIAL_SET_BREAK_ON","features":[382]},{"name":"IOCTL_SERIAL_SET_CHARS","features":[382]},{"name":"IOCTL_SERIAL_SET_COMMCONFIG","features":[382]},{"name":"IOCTL_SERIAL_SET_DTR","features":[382]},{"name":"IOCTL_SERIAL_SET_FIFO_CONTROL","features":[382]},{"name":"IOCTL_SERIAL_SET_HANDFLOW","features":[382]},{"name":"IOCTL_SERIAL_SET_INTERVAL_TIMER_RESOLUTION","features":[382]},{"name":"IOCTL_SERIAL_SET_LINE_CONTROL","features":[382]},{"name":"IOCTL_SERIAL_SET_MODEM_CONTROL","features":[382]},{"name":"IOCTL_SERIAL_SET_QUEUE_SIZE","features":[382]},{"name":"IOCTL_SERIAL_SET_RTS","features":[382]},{"name":"IOCTL_SERIAL_SET_TIMEOUTS","features":[382]},{"name":"IOCTL_SERIAL_SET_WAIT_MASK","features":[382]},{"name":"IOCTL_SERIAL_SET_XOFF","features":[382]},{"name":"IOCTL_SERIAL_SET_XON","features":[382]},{"name":"IOCTL_SERIAL_WAIT_ON_MASK","features":[382]},{"name":"IOCTL_SERIAL_XOFF_COUNTER","features":[382]},{"name":"MARK_PARITY","features":[382]},{"name":"NO_PARITY","features":[382]},{"name":"ODD_PARITY","features":[382]},{"name":"PSERENUM_READPORT","features":[382]},{"name":"PSERENUM_WRITEPORT","features":[382]},{"name":"SERENUM_PORTION","features":[382]},{"name":"SERENUM_PORT_DESC","features":[382]},{"name":"SERENUM_PORT_PARAMETERS","features":[382]},{"name":"SERIALCONFIG","features":[382]},{"name":"SERIALPERF_STATS","features":[382]},{"name":"SERIAL_BASIC_SETTINGS","features":[382]},{"name":"SERIAL_BAUD_RATE","features":[382]},{"name":"SERIAL_CHARS","features":[382]},{"name":"SERIAL_COMMPROP","features":[382]},{"name":"SERIAL_EV_BREAK","features":[382]},{"name":"SERIAL_EV_CTS","features":[382]},{"name":"SERIAL_EV_DSR","features":[382]},{"name":"SERIAL_EV_ERR","features":[382]},{"name":"SERIAL_EV_EVENT1","features":[382]},{"name":"SERIAL_EV_EVENT2","features":[382]},{"name":"SERIAL_EV_PERR","features":[382]},{"name":"SERIAL_EV_RING","features":[382]},{"name":"SERIAL_EV_RLSD","features":[382]},{"name":"SERIAL_EV_RX80FULL","features":[382]},{"name":"SERIAL_EV_RXCHAR","features":[382]},{"name":"SERIAL_EV_RXFLAG","features":[382]},{"name":"SERIAL_EV_TXEMPTY","features":[382]},{"name":"SERIAL_HANDFLOW","features":[382]},{"name":"SERIAL_LINE_CONTROL","features":[382]},{"name":"SERIAL_LSRMST_ESCAPE","features":[382]},{"name":"SERIAL_LSRMST_LSR_DATA","features":[382]},{"name":"SERIAL_LSRMST_LSR_NODATA","features":[382]},{"name":"SERIAL_LSRMST_MST","features":[382]},{"name":"SERIAL_PURGE_RXABORT","features":[382]},{"name":"SERIAL_PURGE_RXCLEAR","features":[382]},{"name":"SERIAL_PURGE_TXABORT","features":[382]},{"name":"SERIAL_PURGE_TXCLEAR","features":[382]},{"name":"SERIAL_QUEUE_SIZE","features":[382]},{"name":"SERIAL_STATUS","features":[382,303]},{"name":"SERIAL_TIMEOUTS","features":[382]},{"name":"SERIAL_XOFF_COUNTER","features":[382]},{"name":"SPACE_PARITY","features":[382]},{"name":"STOP_BITS_1_5","features":[382]},{"name":"STOP_BITS_2","features":[382]},{"name":"STOP_BIT_1","features":[382]},{"name":"SerenumFirstHalf","features":[382]},{"name":"SerenumSecondHalf","features":[382]},{"name":"SerenumWhole","features":[382]}],"386":[{"name":"ACDGE_GROUP_REMOVED","features":[383]},{"name":"ACDGE_NEW_GROUP","features":[383]},{"name":"ACDGROUP_EVENT","features":[383]},{"name":"ACDQE_NEW_QUEUE","features":[383]},{"name":"ACDQE_QUEUE_REMOVED","features":[383]},{"name":"ACDQUEUE_EVENT","features":[383]},{"name":"ACS_ADDRESSDEVICESPECIFIC","features":[383]},{"name":"ACS_LINEDEVICESPECIFIC","features":[383]},{"name":"ACS_PERMANENTDEVICEGUID","features":[383]},{"name":"ACS_PROTOCOL","features":[383]},{"name":"ACS_PROVIDERSPECIFIC","features":[383]},{"name":"ACS_SWITCHSPECIFIC","features":[383]},{"name":"AC_ADDRESSCAPFLAGS","features":[383]},{"name":"AC_ADDRESSFEATURES","features":[383]},{"name":"AC_ADDRESSID","features":[383]},{"name":"AC_ADDRESSTYPES","features":[383]},{"name":"AC_ANSWERMODES","features":[383]},{"name":"AC_BEARERMODES","features":[383]},{"name":"AC_CALLCOMPLETIONCONDITIONS","features":[383]},{"name":"AC_CALLCOMPLETIONMODES","features":[383]},{"name":"AC_CALLEDIDSUPPORT","features":[383]},{"name":"AC_CALLERIDSUPPORT","features":[383]},{"name":"AC_CALLFEATURES1","features":[383]},{"name":"AC_CALLFEATURES2","features":[383]},{"name":"AC_CONNECTEDIDSUPPORT","features":[383]},{"name":"AC_DEVCAPFLAGS","features":[383]},{"name":"AC_FORWARDMODES","features":[383]},{"name":"AC_GATHERDIGITSMAXTIMEOUT","features":[383]},{"name":"AC_GATHERDIGITSMINTIMEOUT","features":[383]},{"name":"AC_GENERATEDIGITDEFAULTDURATION","features":[383]},{"name":"AC_GENERATEDIGITMAXDURATION","features":[383]},{"name":"AC_GENERATEDIGITMINDURATION","features":[383]},{"name":"AC_GENERATEDIGITSUPPORT","features":[383]},{"name":"AC_GENERATETONEMAXNUMFREQ","features":[383]},{"name":"AC_GENERATETONEMODES","features":[383]},{"name":"AC_LINEFEATURES","features":[383]},{"name":"AC_LINEID","features":[383]},{"name":"AC_MAXACTIVECALLS","features":[383]},{"name":"AC_MAXCALLCOMPLETIONS","features":[383]},{"name":"AC_MAXCALLDATASIZE","features":[383]},{"name":"AC_MAXFORWARDENTRIES","features":[383]},{"name":"AC_MAXFWDNUMRINGS","features":[383]},{"name":"AC_MAXNUMCONFERENCE","features":[383]},{"name":"AC_MAXNUMTRANSCONF","features":[383]},{"name":"AC_MAXONHOLDCALLS","features":[383]},{"name":"AC_MAXONHOLDPENDINGCALLS","features":[383]},{"name":"AC_MAXSPECIFICENTRIES","features":[383]},{"name":"AC_MINFWDNUMRINGS","features":[383]},{"name":"AC_MONITORDIGITSUPPORT","features":[383]},{"name":"AC_MONITORTONEMAXNUMENTRIES","features":[383]},{"name":"AC_MONITORTONEMAXNUMFREQ","features":[383]},{"name":"AC_PARKSUPPORT","features":[383]},{"name":"AC_PERMANENTDEVICEID","features":[383]},{"name":"AC_PREDICTIVEAUTOTRANSFERSTATES","features":[383]},{"name":"AC_REDIRECTINGIDSUPPORT","features":[383]},{"name":"AC_REDIRECTIONIDSUPPORT","features":[383]},{"name":"AC_REMOVEFROMCONFCAPS","features":[383]},{"name":"AC_REMOVEFROMCONFSTATE","features":[383]},{"name":"AC_SETTABLEDEVSTATUS","features":[383]},{"name":"AC_TRANSFERMODES","features":[383]},{"name":"ADDRALIAS","features":[383]},{"name":"ADDRESS_CAPABILITY","features":[383]},{"name":"ADDRESS_CAPABILITY_STRING","features":[383]},{"name":"ADDRESS_EVENT","features":[383]},{"name":"ADDRESS_STATE","features":[383]},{"name":"ADDRESS_TERMINAL_AVAILABLE","features":[383]},{"name":"ADDRESS_TERMINAL_UNAVAILABLE","features":[383]},{"name":"AE_BUSY_ACD","features":[383]},{"name":"AE_BUSY_INCOMING","features":[383]},{"name":"AE_BUSY_OUTGOING","features":[383]},{"name":"AE_CAPSCHANGE","features":[383]},{"name":"AE_CONFIGCHANGE","features":[383]},{"name":"AE_FORWARD","features":[383]},{"name":"AE_LASTITEM","features":[383]},{"name":"AE_MSGWAITOFF","features":[383]},{"name":"AE_MSGWAITON","features":[383]},{"name":"AE_NEWTERMINAL","features":[383]},{"name":"AE_NOT_READY","features":[383]},{"name":"AE_READY","features":[383]},{"name":"AE_REMOVETERMINAL","features":[383]},{"name":"AE_RINGING","features":[383]},{"name":"AE_STATE","features":[383]},{"name":"AE_UNKNOWN","features":[383]},{"name":"AGENTHANDLER_EVENT","features":[383]},{"name":"AGENT_EVENT","features":[383]},{"name":"AGENT_SESSION_EVENT","features":[383]},{"name":"AGENT_SESSION_STATE","features":[383]},{"name":"AGENT_STATE","features":[383]},{"name":"AHE_AGENTHANDLER_REMOVED","features":[383]},{"name":"AHE_NEW_AGENTHANDLER","features":[383]},{"name":"ASE_BUSY","features":[383]},{"name":"ASE_END","features":[383]},{"name":"ASE_NEW_SESSION","features":[383]},{"name":"ASE_NOT_READY","features":[383]},{"name":"ASE_READY","features":[383]},{"name":"ASE_WRAPUP","features":[383]},{"name":"ASST_BUSY_ON_CALL","features":[383]},{"name":"ASST_BUSY_WRAPUP","features":[383]},{"name":"ASST_NOT_READY","features":[383]},{"name":"ASST_READY","features":[383]},{"name":"ASST_SESSION_ENDED","features":[383]},{"name":"ASYNC_COMPLETION","features":[383]},{"name":"AS_BUSY_ACD","features":[383]},{"name":"AS_BUSY_INCOMING","features":[383]},{"name":"AS_BUSY_OUTGOING","features":[383]},{"name":"AS_INSERVICE","features":[383]},{"name":"AS_NOT_READY","features":[383]},{"name":"AS_OUTOFSERVICE","features":[383]},{"name":"AS_READY","features":[383]},{"name":"AS_UNKNOWN","features":[383]},{"name":"CALLHUB_EVENT","features":[383]},{"name":"CALLHUB_STATE","features":[383]},{"name":"CALLINFOCHANGE_CAUSE","features":[383]},{"name":"CALLINFO_BUFFER","features":[383]},{"name":"CALLINFO_LONG","features":[383]},{"name":"CALLINFO_STRING","features":[383]},{"name":"CALL_CAUSE_BAD_DEVICE","features":[383]},{"name":"CALL_CAUSE_CONNECT_FAIL","features":[383]},{"name":"CALL_CAUSE_LOCAL_REQUEST","features":[383]},{"name":"CALL_CAUSE_MEDIA_RECOVERED","features":[383]},{"name":"CALL_CAUSE_MEDIA_TIMEOUT","features":[383]},{"name":"CALL_CAUSE_QUALITY_OF_SERVICE","features":[383]},{"name":"CALL_CAUSE_REMOTE_REQUEST","features":[383]},{"name":"CALL_CAUSE_UNKNOWN","features":[383]},{"name":"CALL_MEDIA_EVENT","features":[383]},{"name":"CALL_MEDIA_EVENT_CAUSE","features":[383]},{"name":"CALL_NEW_STREAM","features":[383]},{"name":"CALL_NOTIFICATION_EVENT","features":[383]},{"name":"CALL_PRIVILEGE","features":[383]},{"name":"CALL_STATE","features":[383]},{"name":"CALL_STATE_EVENT_CAUSE","features":[383]},{"name":"CALL_STREAM_ACTIVE","features":[383]},{"name":"CALL_STREAM_FAIL","features":[383]},{"name":"CALL_STREAM_INACTIVE","features":[383]},{"name":"CALL_STREAM_NOT_USED","features":[383]},{"name":"CALL_TERMINAL_FAIL","features":[383]},{"name":"CEC_DISCONNECT_BADADDRESS","features":[383]},{"name":"CEC_DISCONNECT_BLOCKED","features":[383]},{"name":"CEC_DISCONNECT_BUSY","features":[383]},{"name":"CEC_DISCONNECT_CANCELLED","features":[383]},{"name":"CEC_DISCONNECT_FAILED","features":[383]},{"name":"CEC_DISCONNECT_NOANSWER","features":[383]},{"name":"CEC_DISCONNECT_NORMAL","features":[383]},{"name":"CEC_DISCONNECT_REJECTED","features":[383]},{"name":"CEC_NONE","features":[383]},{"name":"CHE_CALLHUBIDLE","features":[383]},{"name":"CHE_CALLHUBNEW","features":[383]},{"name":"CHE_CALLJOIN","features":[383]},{"name":"CHE_CALLLEAVE","features":[383]},{"name":"CHE_LASTITEM","features":[383]},{"name":"CHS_ACTIVE","features":[383]},{"name":"CHS_IDLE","features":[383]},{"name":"CIB_CALLDATABUFFER","features":[383]},{"name":"CIB_CHARGINGINFOBUFFER","features":[383]},{"name":"CIB_DEVSPECIFICBUFFER","features":[383]},{"name":"CIB_HIGHLEVELCOMPATIBILITYBUFFER","features":[383]},{"name":"CIB_LOWLEVELCOMPATIBILITYBUFFER","features":[383]},{"name":"CIB_USERUSERINFO","features":[383]},{"name":"CIC_APPSPECIFIC","features":[383]},{"name":"CIC_BEARERMODE","features":[383]},{"name":"CIC_CALLDATA","features":[383]},{"name":"CIC_CALLEDID","features":[383]},{"name":"CIC_CALLERID","features":[383]},{"name":"CIC_CALLID","features":[383]},{"name":"CIC_CHARGINGINFO","features":[383]},{"name":"CIC_COMPLETIONID","features":[383]},{"name":"CIC_CONNECTEDID","features":[383]},{"name":"CIC_DEVSPECIFIC","features":[383]},{"name":"CIC_HIGHLEVELCOMP","features":[383]},{"name":"CIC_LASTITEM","features":[383]},{"name":"CIC_LOWLEVELCOMP","features":[383]},{"name":"CIC_MEDIATYPE","features":[383]},{"name":"CIC_NUMMONITORS","features":[383]},{"name":"CIC_NUMOWNERDECR","features":[383]},{"name":"CIC_NUMOWNERINCR","features":[383]},{"name":"CIC_ORIGIN","features":[383]},{"name":"CIC_OTHER","features":[383]},{"name":"CIC_PRIVILEGE","features":[383]},{"name":"CIC_RATE","features":[383]},{"name":"CIC_REASON","features":[383]},{"name":"CIC_REDIRECTINGID","features":[383]},{"name":"CIC_REDIRECTIONID","features":[383]},{"name":"CIC_RELATEDCALLID","features":[383]},{"name":"CIC_TREATMENT","features":[383]},{"name":"CIC_TRUNK","features":[383]},{"name":"CIC_USERUSERINFO","features":[383]},{"name":"CIL_APPSPECIFIC","features":[383]},{"name":"CIL_BEARERMODE","features":[383]},{"name":"CIL_CALLEDIDADDRESSTYPE","features":[383]},{"name":"CIL_CALLERIDADDRESSTYPE","features":[383]},{"name":"CIL_CALLID","features":[383]},{"name":"CIL_CALLPARAMSFLAGS","features":[383]},{"name":"CIL_CALLTREATMENT","features":[383]},{"name":"CIL_COMPLETIONID","features":[383]},{"name":"CIL_CONNECTEDIDADDRESSTYPE","features":[383]},{"name":"CIL_COUNTRYCODE","features":[383]},{"name":"CIL_GENERATEDIGITDURATION","features":[383]},{"name":"CIL_MAXRATE","features":[383]},{"name":"CIL_MEDIATYPESAVAILABLE","features":[383]},{"name":"CIL_MINRATE","features":[383]},{"name":"CIL_MONITORDIGITMODES","features":[383]},{"name":"CIL_MONITORMEDIAMODES","features":[383]},{"name":"CIL_NUMBEROFMONITORS","features":[383]},{"name":"CIL_NUMBEROFOWNERS","features":[383]},{"name":"CIL_ORIGIN","features":[383]},{"name":"CIL_RATE","features":[383]},{"name":"CIL_REASON","features":[383]},{"name":"CIL_REDIRECTINGIDADDRESSTYPE","features":[383]},{"name":"CIL_REDIRECTIONIDADDRESSTYPE","features":[383]},{"name":"CIL_RELATEDCALLID","features":[383]},{"name":"CIL_TRUNK","features":[383]},{"name":"CIS_CALLEDIDNAME","features":[383]},{"name":"CIS_CALLEDIDNUMBER","features":[383]},{"name":"CIS_CALLEDPARTYFRIENDLYNAME","features":[383]},{"name":"CIS_CALLERIDNAME","features":[383]},{"name":"CIS_CALLERIDNUMBER","features":[383]},{"name":"CIS_CALLINGPARTYID","features":[383]},{"name":"CIS_COMMENT","features":[383]},{"name":"CIS_CONNECTEDIDNAME","features":[383]},{"name":"CIS_CONNECTEDIDNUMBER","features":[383]},{"name":"CIS_DISPLAYABLEADDRESS","features":[383]},{"name":"CIS_REDIRECTINGIDNAME","features":[383]},{"name":"CIS_REDIRECTINGIDNUMBER","features":[383]},{"name":"CIS_REDIRECTIONIDNAME","features":[383]},{"name":"CIS_REDIRECTIONIDNUMBER","features":[383]},{"name":"CMC_BAD_DEVICE","features":[383]},{"name":"CMC_CONNECT_FAIL","features":[383]},{"name":"CMC_LOCAL_REQUEST","features":[383]},{"name":"CMC_MEDIA_RECOVERED","features":[383]},{"name":"CMC_MEDIA_TIMEOUT","features":[383]},{"name":"CMC_QUALITY_OF_SERVICE","features":[383]},{"name":"CMC_REMOTE_REQUEST","features":[383]},{"name":"CMC_UNKNOWN","features":[383]},{"name":"CME_LASTITEM","features":[383]},{"name":"CME_NEW_STREAM","features":[383]},{"name":"CME_STREAM_ACTIVE","features":[383]},{"name":"CME_STREAM_FAIL","features":[383]},{"name":"CME_STREAM_INACTIVE","features":[383]},{"name":"CME_STREAM_NOT_USED","features":[383]},{"name":"CME_TERMINAL_FAIL","features":[383]},{"name":"CNE_LASTITEM","features":[383]},{"name":"CNE_MONITOR","features":[383]},{"name":"CNE_OWNER","features":[383]},{"name":"CP_MONITOR","features":[383]},{"name":"CP_OWNER","features":[383]},{"name":"CS_CONNECTED","features":[383]},{"name":"CS_DISCONNECTED","features":[383]},{"name":"CS_HOLD","features":[383]},{"name":"CS_IDLE","features":[383]},{"name":"CS_INPROGRESS","features":[383]},{"name":"CS_LASTITEM","features":[383]},{"name":"CS_OFFERING","features":[383]},{"name":"CS_QUEUED","features":[383]},{"name":"DC_NOANSWER","features":[383]},{"name":"DC_NORMAL","features":[383]},{"name":"DC_REJECTED","features":[383]},{"name":"DIRECTORY_OBJECT_TYPE","features":[383]},{"name":"DIRECTORY_TYPE","features":[383]},{"name":"DISCONNECT_CODE","features":[383]},{"name":"DISPIDMASK","features":[383]},{"name":"DTR","features":[383]},{"name":"DT_ILS","features":[383]},{"name":"DT_NTDS","features":[383]},{"name":"DispatchMapper","features":[383]},{"name":"FDS_NOTSUPPORTED","features":[383]},{"name":"FDS_SUPPORTED","features":[383]},{"name":"FDS_UNKNOWN","features":[383]},{"name":"FINISH_MODE","features":[383]},{"name":"FM_ASCONFERENCE","features":[383]},{"name":"FM_ASTRANSFER","features":[383]},{"name":"FTEC_END_OF_FILE","features":[383]},{"name":"FTEC_NORMAL","features":[383]},{"name":"FTEC_READ_ERROR","features":[383]},{"name":"FTEC_WRITE_ERROR","features":[383]},{"name":"FT_STATE_EVENT_CAUSE","features":[383]},{"name":"FULLDUPLEX_SUPPORT","features":[383]},{"name":"GETTNEFSTREAMCODEPAGE","features":[383]},{"name":"GetTnefStreamCodepage","features":[383,354]},{"name":"HDRVCALL","features":[383]},{"name":"HDRVDIALOGINSTANCE","features":[383]},{"name":"HDRVLINE","features":[383]},{"name":"HDRVMSPLINE","features":[383]},{"name":"HDRVPHONE","features":[383]},{"name":"HPROVIDER","features":[383]},{"name":"HTAPICALL","features":[383]},{"name":"HTAPILINE","features":[383]},{"name":"HTAPIPHONE","features":[383]},{"name":"IDISPADDRESS","features":[383]},{"name":"IDISPADDRESSCAPABILITIES","features":[383]},{"name":"IDISPADDRESSTRANSLATION","features":[383]},{"name":"IDISPAGGREGATEDMSPADDRESSOBJ","features":[383]},{"name":"IDISPAGGREGATEDMSPCALLOBJ","features":[383]},{"name":"IDISPAPC","features":[383]},{"name":"IDISPBASICCALLCONTROL","features":[383]},{"name":"IDISPCALLINFO","features":[383]},{"name":"IDISPDIRECTORY","features":[383]},{"name":"IDISPDIROBJCONFERENCE","features":[383]},{"name":"IDISPDIROBJECT","features":[383]},{"name":"IDISPDIROBJUSER","features":[383]},{"name":"IDISPFILETRACK","features":[383]},{"name":"IDISPILSCONFIG","features":[383]},{"name":"IDISPLEGACYADDRESSMEDIACONTROL","features":[383]},{"name":"IDISPLEGACYCALLMEDIACONTROL","features":[383]},{"name":"IDISPMEDIACONTROL","features":[383]},{"name":"IDISPMEDIAPLAYBACK","features":[383]},{"name":"IDISPMEDIARECORD","features":[383]},{"name":"IDISPMEDIASUPPORT","features":[383]},{"name":"IDISPMULTITRACK","features":[383]},{"name":"IDISPPHONE","features":[383]},{"name":"IDISPTAPI","features":[383]},{"name":"IDISPTAPICALLCENTER","features":[383]},{"name":"IEnumACDGroup","features":[383]},{"name":"IEnumAddress","features":[383]},{"name":"IEnumAgent","features":[383]},{"name":"IEnumAgentHandler","features":[383]},{"name":"IEnumAgentSession","features":[383]},{"name":"IEnumBstr","features":[383]},{"name":"IEnumCall","features":[383]},{"name":"IEnumCallHub","features":[383]},{"name":"IEnumCallingCard","features":[383]},{"name":"IEnumDialableAddrs","features":[383]},{"name":"IEnumDirectory","features":[383]},{"name":"IEnumDirectoryObject","features":[383]},{"name":"IEnumLocation","features":[383]},{"name":"IEnumMcastScope","features":[383]},{"name":"IEnumPhone","features":[383]},{"name":"IEnumPluggableSuperclassInfo","features":[383]},{"name":"IEnumPluggableTerminalClassInfo","features":[383]},{"name":"IEnumQueue","features":[383]},{"name":"IEnumStream","features":[383]},{"name":"IEnumSubStream","features":[383]},{"name":"IEnumTerminal","features":[383]},{"name":"IEnumTerminalClass","features":[383]},{"name":"IMcastAddressAllocation","features":[383,354]},{"name":"IMcastLeaseInfo","features":[383,354]},{"name":"IMcastScope","features":[383,354]},{"name":"INITIALIZE_NEGOTIATION","features":[383]},{"name":"INTERFACEMASK","features":[383]},{"name":"ITACDGroup","features":[383,354]},{"name":"ITACDGroupEvent","features":[383,354]},{"name":"ITAMMediaFormat","features":[383]},{"name":"ITASRTerminalEvent","features":[383,354]},{"name":"ITAddress","features":[383,354]},{"name":"ITAddress2","features":[383,354]},{"name":"ITAddressCapabilities","features":[383,354]},{"name":"ITAddressDeviceSpecificEvent","features":[383,354]},{"name":"ITAddressEvent","features":[383,354]},{"name":"ITAddressTranslation","features":[383,354]},{"name":"ITAddressTranslationInfo","features":[383,354]},{"name":"ITAgent","features":[383,354]},{"name":"ITAgentEvent","features":[383,354]},{"name":"ITAgentHandler","features":[383,354]},{"name":"ITAgentHandlerEvent","features":[383,354]},{"name":"ITAgentSession","features":[383,354]},{"name":"ITAgentSessionEvent","features":[383,354]},{"name":"ITAllocatorProperties","features":[383]},{"name":"ITAutomatedPhoneControl","features":[383,354]},{"name":"ITBasicAudioTerminal","features":[383,354]},{"name":"ITBasicCallControl","features":[383,354]},{"name":"ITBasicCallControl2","features":[383,354]},{"name":"ITCallHub","features":[383,354]},{"name":"ITCallHubEvent","features":[383,354]},{"name":"ITCallInfo","features":[383,354]},{"name":"ITCallInfo2","features":[383,354]},{"name":"ITCallInfoChangeEvent","features":[383,354]},{"name":"ITCallMediaEvent","features":[383,354]},{"name":"ITCallNotificationEvent","features":[383,354]},{"name":"ITCallStateEvent","features":[383,354]},{"name":"ITCallingCard","features":[383,354]},{"name":"ITCollection","features":[383,354]},{"name":"ITCollection2","features":[383,354]},{"name":"ITCustomTone","features":[383,354]},{"name":"ITDetectTone","features":[383,354]},{"name":"ITDigitDetectionEvent","features":[383,354]},{"name":"ITDigitGenerationEvent","features":[383,354]},{"name":"ITDigitsGatheredEvent","features":[383,354]},{"name":"ITDirectory","features":[383,354]},{"name":"ITDirectoryObject","features":[383,354]},{"name":"ITDirectoryObjectConference","features":[383,354]},{"name":"ITDirectoryObjectUser","features":[383,354]},{"name":"ITDispatchMapper","features":[383,354]},{"name":"ITFileTerminalEvent","features":[383,354]},{"name":"ITFileTrack","features":[383,354]},{"name":"ITForwardInformation","features":[383,354]},{"name":"ITForwardInformation2","features":[383,354]},{"name":"ITILSConfig","features":[383,354]},{"name":"ITLegacyAddressMediaControl","features":[383]},{"name":"ITLegacyAddressMediaControl2","features":[383]},{"name":"ITLegacyCallMediaControl","features":[383,354]},{"name":"ITLegacyCallMediaControl2","features":[383,354]},{"name":"ITLegacyWaveSupport","features":[383,354]},{"name":"ITLocationInfo","features":[383,354]},{"name":"ITMSPAddress","features":[383]},{"name":"ITMediaControl","features":[383,354]},{"name":"ITMediaPlayback","features":[383,354]},{"name":"ITMediaRecord","features":[383,354]},{"name":"ITMediaSupport","features":[383,354]},{"name":"ITMultiTrackTerminal","features":[383,354]},{"name":"ITPhone","features":[383,354]},{"name":"ITPhoneDeviceSpecificEvent","features":[383,354]},{"name":"ITPhoneEvent","features":[383,354]},{"name":"ITPluggableTerminalClassInfo","features":[383,354]},{"name":"ITPluggableTerminalEventSink","features":[383]},{"name":"ITPluggableTerminalEventSinkRegistration","features":[383]},{"name":"ITPluggableTerminalSuperclassInfo","features":[383,354]},{"name":"ITPrivateEvent","features":[383,354]},{"name":"ITQOSEvent","features":[383,354]},{"name":"ITQueue","features":[383,354]},{"name":"ITQueueEvent","features":[383,354]},{"name":"ITRendezvous","features":[383,354]},{"name":"ITRequest","features":[383,354]},{"name":"ITRequestEvent","features":[383,354]},{"name":"ITScriptableAudioFormat","features":[383,354]},{"name":"ITStaticAudioTerminal","features":[383,354]},{"name":"ITStream","features":[383,354]},{"name":"ITStreamControl","features":[383,354]},{"name":"ITSubStream","features":[383,354]},{"name":"ITSubStreamControl","features":[383,354]},{"name":"ITTAPI","features":[383,354]},{"name":"ITTAPI2","features":[383,354]},{"name":"ITTAPICallCenter","features":[383,354]},{"name":"ITTAPIDispatchEventNotification","features":[383,354]},{"name":"ITTAPIEventNotification","features":[383]},{"name":"ITTAPIObjectEvent","features":[383,354]},{"name":"ITTAPIObjectEvent2","features":[383,354]},{"name":"ITTTSTerminalEvent","features":[383,354]},{"name":"ITTerminal","features":[383,354]},{"name":"ITTerminalSupport","features":[383,354]},{"name":"ITTerminalSupport2","features":[383,354]},{"name":"ITToneDetectionEvent","features":[383,354]},{"name":"ITToneTerminalEvent","features":[383,354]},{"name":"ITnef","features":[383]},{"name":"LAST_LINEMEDIAMODE","features":[383]},{"name":"LAST_LINEREQUESTMODE","features":[383]},{"name":"LINEADDRCAPFLAGS_ACCEPTTOALERT","features":[383]},{"name":"LINEADDRCAPFLAGS_ACDGROUP","features":[383]},{"name":"LINEADDRCAPFLAGS_AUTORECONNECT","features":[383]},{"name":"LINEADDRCAPFLAGS_BLOCKIDDEFAULT","features":[383]},{"name":"LINEADDRCAPFLAGS_BLOCKIDOVERRIDE","features":[383]},{"name":"LINEADDRCAPFLAGS_COMPLETIONID","features":[383]},{"name":"LINEADDRCAPFLAGS_CONFDROP","features":[383]},{"name":"LINEADDRCAPFLAGS_CONFERENCEHELD","features":[383]},{"name":"LINEADDRCAPFLAGS_CONFERENCEMAKE","features":[383]},{"name":"LINEADDRCAPFLAGS_DESTOFFHOOK","features":[383]},{"name":"LINEADDRCAPFLAGS_DIALED","features":[383]},{"name":"LINEADDRCAPFLAGS_FWDBUSYNAADDR","features":[383]},{"name":"LINEADDRCAPFLAGS_FWDCONSULT","features":[383]},{"name":"LINEADDRCAPFLAGS_FWDINTEXTADDR","features":[383]},{"name":"LINEADDRCAPFLAGS_FWDNUMRINGS","features":[383]},{"name":"LINEADDRCAPFLAGS_FWDSTATUSVALID","features":[383]},{"name":"LINEADDRCAPFLAGS_HOLDMAKESNEW","features":[383]},{"name":"LINEADDRCAPFLAGS_NOEXTERNALCALLS","features":[383]},{"name":"LINEADDRCAPFLAGS_NOINTERNALCALLS","features":[383]},{"name":"LINEADDRCAPFLAGS_NOPSTNADDRESSTRANSLATION","features":[383]},{"name":"LINEADDRCAPFLAGS_ORIGOFFHOOK","features":[383]},{"name":"LINEADDRCAPFLAGS_PARTIALDIAL","features":[383]},{"name":"LINEADDRCAPFLAGS_PICKUPCALLWAIT","features":[383]},{"name":"LINEADDRCAPFLAGS_PICKUPGROUPID","features":[383]},{"name":"LINEADDRCAPFLAGS_PREDICTIVEDIALER","features":[383]},{"name":"LINEADDRCAPFLAGS_QUEUE","features":[383]},{"name":"LINEADDRCAPFLAGS_ROUTEPOINT","features":[383]},{"name":"LINEADDRCAPFLAGS_SECURE","features":[383]},{"name":"LINEADDRCAPFLAGS_SETCALLINGID","features":[383]},{"name":"LINEADDRCAPFLAGS_SETUPCONFNULL","features":[383]},{"name":"LINEADDRCAPFLAGS_TRANSFERHELD","features":[383]},{"name":"LINEADDRCAPFLAGS_TRANSFERMAKE","features":[383]},{"name":"LINEADDRESSCAPS","features":[383]},{"name":"LINEADDRESSMODE_ADDRESSID","features":[383]},{"name":"LINEADDRESSMODE_DIALABLEADDR","features":[383]},{"name":"LINEADDRESSSHARING_BRIDGEDEXCL","features":[383]},{"name":"LINEADDRESSSHARING_BRIDGEDNEW","features":[383]},{"name":"LINEADDRESSSHARING_BRIDGEDSHARED","features":[383]},{"name":"LINEADDRESSSHARING_MONITORED","features":[383]},{"name":"LINEADDRESSSHARING_PRIVATE","features":[383]},{"name":"LINEADDRESSSTATE_CAPSCHANGE","features":[383]},{"name":"LINEADDRESSSTATE_DEVSPECIFIC","features":[383]},{"name":"LINEADDRESSSTATE_FORWARD","features":[383]},{"name":"LINEADDRESSSTATE_INUSEMANY","features":[383]},{"name":"LINEADDRESSSTATE_INUSEONE","features":[383]},{"name":"LINEADDRESSSTATE_INUSEZERO","features":[383]},{"name":"LINEADDRESSSTATE_NUMCALLS","features":[383]},{"name":"LINEADDRESSSTATE_OTHER","features":[383]},{"name":"LINEADDRESSSTATE_TERMINALS","features":[383]},{"name":"LINEADDRESSSTATUS","features":[383]},{"name":"LINEADDRESSTYPE_DOMAINNAME","features":[383]},{"name":"LINEADDRESSTYPE_EMAILNAME","features":[383]},{"name":"LINEADDRESSTYPE_IPADDRESS","features":[383]},{"name":"LINEADDRESSTYPE_PHONENUMBER","features":[383]},{"name":"LINEADDRESSTYPE_SDP","features":[383]},{"name":"LINEADDRFEATURE_FORWARD","features":[383]},{"name":"LINEADDRFEATURE_FORWARDDND","features":[383]},{"name":"LINEADDRFEATURE_FORWARDFWD","features":[383]},{"name":"LINEADDRFEATURE_MAKECALL","features":[383]},{"name":"LINEADDRFEATURE_PICKUP","features":[383]},{"name":"LINEADDRFEATURE_PICKUPDIRECT","features":[383]},{"name":"LINEADDRFEATURE_PICKUPGROUP","features":[383]},{"name":"LINEADDRFEATURE_PICKUPHELD","features":[383]},{"name":"LINEADDRFEATURE_PICKUPWAITING","features":[383]},{"name":"LINEADDRFEATURE_SETMEDIACONTROL","features":[383]},{"name":"LINEADDRFEATURE_SETTERMINAL","features":[383]},{"name":"LINEADDRFEATURE_SETUPCONF","features":[383]},{"name":"LINEADDRFEATURE_UNCOMPLETECALL","features":[383]},{"name":"LINEADDRFEATURE_UNPARK","features":[383]},{"name":"LINEAGENTACTIVITYENTRY","features":[383]},{"name":"LINEAGENTACTIVITYLIST","features":[383]},{"name":"LINEAGENTCAPS","features":[383]},{"name":"LINEAGENTENTRY","features":[383]},{"name":"LINEAGENTFEATURE_AGENTSPECIFIC","features":[383]},{"name":"LINEAGENTFEATURE_GETAGENTACTIVITYLIST","features":[383]},{"name":"LINEAGENTFEATURE_GETAGENTGROUP","features":[383]},{"name":"LINEAGENTFEATURE_SETAGENTACTIVITY","features":[383]},{"name":"LINEAGENTFEATURE_SETAGENTGROUP","features":[383]},{"name":"LINEAGENTFEATURE_SETAGENTSTATE","features":[383]},{"name":"LINEAGENTGROUPENTRY","features":[383]},{"name":"LINEAGENTGROUPLIST","features":[383]},{"name":"LINEAGENTINFO","features":[383,354]},{"name":"LINEAGENTLIST","features":[383]},{"name":"LINEAGENTSESSIONENTRY","features":[383]},{"name":"LINEAGENTSESSIONINFO","features":[383,354]},{"name":"LINEAGENTSESSIONLIST","features":[383]},{"name":"LINEAGENTSESSIONSTATE_BUSYONCALL","features":[383]},{"name":"LINEAGENTSESSIONSTATE_BUSYWRAPUP","features":[383]},{"name":"LINEAGENTSESSIONSTATE_ENDED","features":[383]},{"name":"LINEAGENTSESSIONSTATE_NOTREADY","features":[383]},{"name":"LINEAGENTSESSIONSTATE_READY","features":[383]},{"name":"LINEAGENTSESSIONSTATE_RELEASED","features":[383]},{"name":"LINEAGENTSESSIONSTATUS_NEWSESSION","features":[383]},{"name":"LINEAGENTSESSIONSTATUS_STATE","features":[383]},{"name":"LINEAGENTSESSIONSTATUS_UPDATEINFO","features":[383]},{"name":"LINEAGENTSTATEEX_BUSYACD","features":[383]},{"name":"LINEAGENTSTATEEX_BUSYINCOMING","features":[383]},{"name":"LINEAGENTSTATEEX_BUSYOUTGOING","features":[383]},{"name":"LINEAGENTSTATEEX_NOTREADY","features":[383]},{"name":"LINEAGENTSTATEEX_READY","features":[383]},{"name":"LINEAGENTSTATEEX_RELEASED","features":[383]},{"name":"LINEAGENTSTATEEX_UNKNOWN","features":[383]},{"name":"LINEAGENTSTATE_BUSYACD","features":[383]},{"name":"LINEAGENTSTATE_BUSYINCOMING","features":[383]},{"name":"LINEAGENTSTATE_BUSYOTHER","features":[383]},{"name":"LINEAGENTSTATE_BUSYOUTBOUND","features":[383]},{"name":"LINEAGENTSTATE_LOGGEDOFF","features":[383]},{"name":"LINEAGENTSTATE_NOTREADY","features":[383]},{"name":"LINEAGENTSTATE_READY","features":[383]},{"name":"LINEAGENTSTATE_UNAVAIL","features":[383]},{"name":"LINEAGENTSTATE_UNKNOWN","features":[383]},{"name":"LINEAGENTSTATE_WORKINGAFTERCALL","features":[383]},{"name":"LINEAGENTSTATUS","features":[383]},{"name":"LINEAGENTSTATUSEX_NEWAGENT","features":[383]},{"name":"LINEAGENTSTATUSEX_STATE","features":[383]},{"name":"LINEAGENTSTATUSEX_UPDATEINFO","features":[383]},{"name":"LINEAGENTSTATUS_ACTIVITY","features":[383]},{"name":"LINEAGENTSTATUS_ACTIVITYLIST","features":[383]},{"name":"LINEAGENTSTATUS_CAPSCHANGE","features":[383]},{"name":"LINEAGENTSTATUS_GROUP","features":[383]},{"name":"LINEAGENTSTATUS_GROUPLIST","features":[383]},{"name":"LINEAGENTSTATUS_NEXTSTATE","features":[383]},{"name":"LINEAGENTSTATUS_STATE","features":[383]},{"name":"LINEAGENTSTATUS_VALIDNEXTSTATES","features":[383]},{"name":"LINEAGENTSTATUS_VALIDSTATES","features":[383]},{"name":"LINEANSWERMODE_DROP","features":[383]},{"name":"LINEANSWERMODE_HOLD","features":[383]},{"name":"LINEANSWERMODE_NONE","features":[383]},{"name":"LINEAPPINFO","features":[383]},{"name":"LINEBEARERMODE_ALTSPEECHDATA","features":[383]},{"name":"LINEBEARERMODE_DATA","features":[383]},{"name":"LINEBEARERMODE_MULTIUSE","features":[383]},{"name":"LINEBEARERMODE_NONCALLSIGNALING","features":[383]},{"name":"LINEBEARERMODE_PASSTHROUGH","features":[383]},{"name":"LINEBEARERMODE_RESTRICTEDDATA","features":[383]},{"name":"LINEBEARERMODE_SPEECH","features":[383]},{"name":"LINEBEARERMODE_VOICE","features":[383]},{"name":"LINEBUSYMODE_STATION","features":[383]},{"name":"LINEBUSYMODE_TRUNK","features":[383]},{"name":"LINEBUSYMODE_UNAVAIL","features":[383]},{"name":"LINEBUSYMODE_UNKNOWN","features":[383]},{"name":"LINECALLBACK","features":[383]},{"name":"LINECALLCOMPLCOND_BUSY","features":[383]},{"name":"LINECALLCOMPLCOND_NOANSWER","features":[383]},{"name":"LINECALLCOMPLMODE_CALLBACK","features":[383]},{"name":"LINECALLCOMPLMODE_CAMPON","features":[383]},{"name":"LINECALLCOMPLMODE_INTRUDE","features":[383]},{"name":"LINECALLCOMPLMODE_MESSAGE","features":[383]},{"name":"LINECALLFEATURE2_COMPLCALLBACK","features":[383]},{"name":"LINECALLFEATURE2_COMPLCAMPON","features":[383]},{"name":"LINECALLFEATURE2_COMPLINTRUDE","features":[383]},{"name":"LINECALLFEATURE2_COMPLMESSAGE","features":[383]},{"name":"LINECALLFEATURE2_NOHOLDCONFERENCE","features":[383]},{"name":"LINECALLFEATURE2_ONESTEPTRANSFER","features":[383]},{"name":"LINECALLFEATURE2_PARKDIRECT","features":[383]},{"name":"LINECALLFEATURE2_PARKNONDIRECT","features":[383]},{"name":"LINECALLFEATURE2_TRANSFERCONF","features":[383]},{"name":"LINECALLFEATURE2_TRANSFERNORM","features":[383]},{"name":"LINECALLFEATURE_ACCEPT","features":[383]},{"name":"LINECALLFEATURE_ADDTOCONF","features":[383]},{"name":"LINECALLFEATURE_ANSWER","features":[383]},{"name":"LINECALLFEATURE_BLINDTRANSFER","features":[383]},{"name":"LINECALLFEATURE_COMPLETECALL","features":[383]},{"name":"LINECALLFEATURE_COMPLETETRANSF","features":[383]},{"name":"LINECALLFEATURE_DIAL","features":[383]},{"name":"LINECALLFEATURE_DROP","features":[383]},{"name":"LINECALLFEATURE_GATHERDIGITS","features":[383]},{"name":"LINECALLFEATURE_GENERATEDIGITS","features":[383]},{"name":"LINECALLFEATURE_GENERATETONE","features":[383]},{"name":"LINECALLFEATURE_HOLD","features":[383]},{"name":"LINECALLFEATURE_MONITORDIGITS","features":[383]},{"name":"LINECALLFEATURE_MONITORMEDIA","features":[383]},{"name":"LINECALLFEATURE_MONITORTONES","features":[383]},{"name":"LINECALLFEATURE_PARK","features":[383]},{"name":"LINECALLFEATURE_PREPAREADDCONF","features":[383]},{"name":"LINECALLFEATURE_REDIRECT","features":[383]},{"name":"LINECALLFEATURE_RELEASEUSERUSERINFO","features":[383]},{"name":"LINECALLFEATURE_REMOVEFROMCONF","features":[383]},{"name":"LINECALLFEATURE_SECURECALL","features":[383]},{"name":"LINECALLFEATURE_SENDUSERUSER","features":[383]},{"name":"LINECALLFEATURE_SETCALLDATA","features":[383]},{"name":"LINECALLFEATURE_SETCALLPARAMS","features":[383]},{"name":"LINECALLFEATURE_SETMEDIACONTROL","features":[383]},{"name":"LINECALLFEATURE_SETQOS","features":[383]},{"name":"LINECALLFEATURE_SETTERMINAL","features":[383]},{"name":"LINECALLFEATURE_SETTREATMENT","features":[383]},{"name":"LINECALLFEATURE_SETUPCONF","features":[383]},{"name":"LINECALLFEATURE_SETUPTRANSFER","features":[383]},{"name":"LINECALLFEATURE_SWAPHOLD","features":[383]},{"name":"LINECALLFEATURE_UNHOLD","features":[383]},{"name":"LINECALLHUBTRACKING_ALLCALLS","features":[383]},{"name":"LINECALLHUBTRACKING_NONE","features":[383]},{"name":"LINECALLHUBTRACKING_PROVIDERLEVEL","features":[383]},{"name":"LINECALLINFO","features":[383]},{"name":"LINECALLINFOSTATE_APPSPECIFIC","features":[383]},{"name":"LINECALLINFOSTATE_BEARERMODE","features":[383]},{"name":"LINECALLINFOSTATE_CALLDATA","features":[383]},{"name":"LINECALLINFOSTATE_CALLEDID","features":[383]},{"name":"LINECALLINFOSTATE_CALLERID","features":[383]},{"name":"LINECALLINFOSTATE_CALLID","features":[383]},{"name":"LINECALLINFOSTATE_CHARGINGINFO","features":[383]},{"name":"LINECALLINFOSTATE_COMPLETIONID","features":[383]},{"name":"LINECALLINFOSTATE_CONNECTEDID","features":[383]},{"name":"LINECALLINFOSTATE_DEVSPECIFIC","features":[383]},{"name":"LINECALLINFOSTATE_DIALPARAMS","features":[383]},{"name":"LINECALLINFOSTATE_DISPLAY","features":[383]},{"name":"LINECALLINFOSTATE_HIGHLEVELCOMP","features":[383]},{"name":"LINECALLINFOSTATE_LOWLEVELCOMP","features":[383]},{"name":"LINECALLINFOSTATE_MEDIAMODE","features":[383]},{"name":"LINECALLINFOSTATE_MONITORMODES","features":[383]},{"name":"LINECALLINFOSTATE_NUMMONITORS","features":[383]},{"name":"LINECALLINFOSTATE_NUMOWNERDECR","features":[383]},{"name":"LINECALLINFOSTATE_NUMOWNERINCR","features":[383]},{"name":"LINECALLINFOSTATE_ORIGIN","features":[383]},{"name":"LINECALLINFOSTATE_OTHER","features":[383]},{"name":"LINECALLINFOSTATE_QOS","features":[383]},{"name":"LINECALLINFOSTATE_RATE","features":[383]},{"name":"LINECALLINFOSTATE_REASON","features":[383]},{"name":"LINECALLINFOSTATE_REDIRECTINGID","features":[383]},{"name":"LINECALLINFOSTATE_REDIRECTIONID","features":[383]},{"name":"LINECALLINFOSTATE_RELATEDCALLID","features":[383]},{"name":"LINECALLINFOSTATE_TERMINAL","features":[383]},{"name":"LINECALLINFOSTATE_TREATMENT","features":[383]},{"name":"LINECALLINFOSTATE_TRUNK","features":[383]},{"name":"LINECALLINFOSTATE_USERUSERINFO","features":[383]},{"name":"LINECALLLIST","features":[383]},{"name":"LINECALLORIGIN_CONFERENCE","features":[383]},{"name":"LINECALLORIGIN_EXTERNAL","features":[383]},{"name":"LINECALLORIGIN_INBOUND","features":[383]},{"name":"LINECALLORIGIN_INTERNAL","features":[383]},{"name":"LINECALLORIGIN_OUTBOUND","features":[383]},{"name":"LINECALLORIGIN_UNAVAIL","features":[383]},{"name":"LINECALLORIGIN_UNKNOWN","features":[383]},{"name":"LINECALLPARAMFLAGS_BLOCKID","features":[383]},{"name":"LINECALLPARAMFLAGS_DESTOFFHOOK","features":[383]},{"name":"LINECALLPARAMFLAGS_IDLE","features":[383]},{"name":"LINECALLPARAMFLAGS_NOHOLDCONFERENCE","features":[383]},{"name":"LINECALLPARAMFLAGS_ONESTEPTRANSFER","features":[383]},{"name":"LINECALLPARAMFLAGS_ORIGOFFHOOK","features":[383]},{"name":"LINECALLPARAMFLAGS_PREDICTIVEDIAL","features":[383]},{"name":"LINECALLPARAMFLAGS_SECURE","features":[383]},{"name":"LINECALLPARAMS","features":[383]},{"name":"LINECALLPARTYID_ADDRESS","features":[383]},{"name":"LINECALLPARTYID_BLOCKED","features":[383]},{"name":"LINECALLPARTYID_NAME","features":[383]},{"name":"LINECALLPARTYID_OUTOFAREA","features":[383]},{"name":"LINECALLPARTYID_PARTIAL","features":[383]},{"name":"LINECALLPARTYID_UNAVAIL","features":[383]},{"name":"LINECALLPARTYID_UNKNOWN","features":[383]},{"name":"LINECALLPRIVILEGE_MONITOR","features":[383]},{"name":"LINECALLPRIVILEGE_NONE","features":[383]},{"name":"LINECALLPRIVILEGE_OWNER","features":[383]},{"name":"LINECALLREASON_CALLCOMPLETION","features":[383]},{"name":"LINECALLREASON_CAMPEDON","features":[383]},{"name":"LINECALLREASON_DIRECT","features":[383]},{"name":"LINECALLREASON_FWDBUSY","features":[383]},{"name":"LINECALLREASON_FWDNOANSWER","features":[383]},{"name":"LINECALLREASON_FWDUNCOND","features":[383]},{"name":"LINECALLREASON_INTRUDE","features":[383]},{"name":"LINECALLREASON_PARKED","features":[383]},{"name":"LINECALLREASON_PICKUP","features":[383]},{"name":"LINECALLREASON_REDIRECT","features":[383]},{"name":"LINECALLREASON_REMINDER","features":[383]},{"name":"LINECALLREASON_ROUTEREQUEST","features":[383]},{"name":"LINECALLREASON_TRANSFER","features":[383]},{"name":"LINECALLREASON_UNAVAIL","features":[383]},{"name":"LINECALLREASON_UNKNOWN","features":[383]},{"name":"LINECALLREASON_UNPARK","features":[383]},{"name":"LINECALLSELECT_ADDRESS","features":[383]},{"name":"LINECALLSELECT_CALL","features":[383]},{"name":"LINECALLSELECT_CALLID","features":[383]},{"name":"LINECALLSELECT_DEVICEID","features":[383]},{"name":"LINECALLSELECT_LINE","features":[383]},{"name":"LINECALLSTATE_ACCEPTED","features":[383]},{"name":"LINECALLSTATE_BUSY","features":[383]},{"name":"LINECALLSTATE_CONFERENCED","features":[383]},{"name":"LINECALLSTATE_CONNECTED","features":[383]},{"name":"LINECALLSTATE_DIALING","features":[383]},{"name":"LINECALLSTATE_DIALTONE","features":[383]},{"name":"LINECALLSTATE_DISCONNECTED","features":[383]},{"name":"LINECALLSTATE_IDLE","features":[383]},{"name":"LINECALLSTATE_OFFERING","features":[383]},{"name":"LINECALLSTATE_ONHOLD","features":[383]},{"name":"LINECALLSTATE_ONHOLDPENDCONF","features":[383]},{"name":"LINECALLSTATE_ONHOLDPENDTRANSFER","features":[383]},{"name":"LINECALLSTATE_PROCEEDING","features":[383]},{"name":"LINECALLSTATE_RINGBACK","features":[383]},{"name":"LINECALLSTATE_SPECIALINFO","features":[383]},{"name":"LINECALLSTATE_UNKNOWN","features":[383]},{"name":"LINECALLSTATUS","features":[383,303]},{"name":"LINECALLTREATMENTENTRY","features":[383]},{"name":"LINECALLTREATMENT_BUSY","features":[383]},{"name":"LINECALLTREATMENT_MUSIC","features":[383]},{"name":"LINECALLTREATMENT_RINGBACK","features":[383]},{"name":"LINECALLTREATMENT_SILENCE","features":[383]},{"name":"LINECARDENTRY","features":[383]},{"name":"LINECARDOPTION_HIDDEN","features":[383]},{"name":"LINECARDOPTION_PREDEFINED","features":[383]},{"name":"LINECONNECTEDMODE_ACTIVE","features":[383]},{"name":"LINECONNECTEDMODE_ACTIVEHELD","features":[383]},{"name":"LINECONNECTEDMODE_CONFIRMED","features":[383]},{"name":"LINECONNECTEDMODE_INACTIVE","features":[383]},{"name":"LINECONNECTEDMODE_INACTIVEHELD","features":[383]},{"name":"LINECOUNTRYENTRY","features":[383]},{"name":"LINECOUNTRYLIST","features":[383]},{"name":"LINEDEVCAPFLAGS_CALLHUB","features":[383]},{"name":"LINEDEVCAPFLAGS_CALLHUBTRACKING","features":[383]},{"name":"LINEDEVCAPFLAGS_CLOSEDROP","features":[383]},{"name":"LINEDEVCAPFLAGS_CROSSADDRCONF","features":[383]},{"name":"LINEDEVCAPFLAGS_DIALBILLING","features":[383]},{"name":"LINEDEVCAPFLAGS_DIALDIALTONE","features":[383]},{"name":"LINEDEVCAPFLAGS_DIALQUIET","features":[383]},{"name":"LINEDEVCAPFLAGS_HIGHLEVCOMP","features":[383]},{"name":"LINEDEVCAPFLAGS_LOCAL","features":[383]},{"name":"LINEDEVCAPFLAGS_LOWLEVCOMP","features":[383]},{"name":"LINEDEVCAPFLAGS_MEDIACONTROL","features":[383]},{"name":"LINEDEVCAPFLAGS_MSP","features":[383]},{"name":"LINEDEVCAPFLAGS_MULTIPLEADDR","features":[383]},{"name":"LINEDEVCAPFLAGS_PRIVATEOBJECTS","features":[383]},{"name":"LINEDEVCAPS","features":[383]},{"name":"LINEDEVSTATE_BATTERY","features":[383]},{"name":"LINEDEVSTATE_CAPSCHANGE","features":[383]},{"name":"LINEDEVSTATE_CLOSE","features":[383]},{"name":"LINEDEVSTATE_COMPLCANCEL","features":[383]},{"name":"LINEDEVSTATE_CONFIGCHANGE","features":[383]},{"name":"LINEDEVSTATE_CONNECTED","features":[383]},{"name":"LINEDEVSTATE_DEVSPECIFIC","features":[383]},{"name":"LINEDEVSTATE_DISCONNECTED","features":[383]},{"name":"LINEDEVSTATE_INSERVICE","features":[383]},{"name":"LINEDEVSTATE_LOCK","features":[383]},{"name":"LINEDEVSTATE_MAINTENANCE","features":[383]},{"name":"LINEDEVSTATE_MSGWAITOFF","features":[383]},{"name":"LINEDEVSTATE_MSGWAITON","features":[383]},{"name":"LINEDEVSTATE_NUMCALLS","features":[383]},{"name":"LINEDEVSTATE_NUMCOMPLETIONS","features":[383]},{"name":"LINEDEVSTATE_OPEN","features":[383]},{"name":"LINEDEVSTATE_OTHER","features":[383]},{"name":"LINEDEVSTATE_OUTOFSERVICE","features":[383]},{"name":"LINEDEVSTATE_REINIT","features":[383]},{"name":"LINEDEVSTATE_REMOVED","features":[383]},{"name":"LINEDEVSTATE_RINGING","features":[383]},{"name":"LINEDEVSTATE_ROAMMODE","features":[383]},{"name":"LINEDEVSTATE_SIGNAL","features":[383]},{"name":"LINEDEVSTATE_TERMINALS","features":[383]},{"name":"LINEDEVSTATE_TRANSLATECHANGE","features":[383]},{"name":"LINEDEVSTATUS","features":[383]},{"name":"LINEDEVSTATUSFLAGS_CONNECTED","features":[383]},{"name":"LINEDEVSTATUSFLAGS_INSERVICE","features":[383]},{"name":"LINEDEVSTATUSFLAGS_LOCKED","features":[383]},{"name":"LINEDEVSTATUSFLAGS_MSGWAIT","features":[383]},{"name":"LINEDIALPARAMS","features":[383]},{"name":"LINEDIALTONEMODE_EXTERNAL","features":[383]},{"name":"LINEDIALTONEMODE_INTERNAL","features":[383]},{"name":"LINEDIALTONEMODE_NORMAL","features":[383]},{"name":"LINEDIALTONEMODE_SPECIAL","features":[383]},{"name":"LINEDIALTONEMODE_UNAVAIL","features":[383]},{"name":"LINEDIALTONEMODE_UNKNOWN","features":[383]},{"name":"LINEDIGITMODE_DTMF","features":[383]},{"name":"LINEDIGITMODE_DTMFEND","features":[383]},{"name":"LINEDIGITMODE_PULSE","features":[383]},{"name":"LINEDISCONNECTMODE_BADADDRESS","features":[383]},{"name":"LINEDISCONNECTMODE_BLOCKED","features":[383]},{"name":"LINEDISCONNECTMODE_BUSY","features":[383]},{"name":"LINEDISCONNECTMODE_CANCELLED","features":[383]},{"name":"LINEDISCONNECTMODE_CONGESTION","features":[383]},{"name":"LINEDISCONNECTMODE_DESTINATIONBARRED","features":[383]},{"name":"LINEDISCONNECTMODE_DONOTDISTURB","features":[383]},{"name":"LINEDISCONNECTMODE_FDNRESTRICT","features":[383]},{"name":"LINEDISCONNECTMODE_FORWARDED","features":[383]},{"name":"LINEDISCONNECTMODE_INCOMPATIBLE","features":[383]},{"name":"LINEDISCONNECTMODE_NOANSWER","features":[383]},{"name":"LINEDISCONNECTMODE_NODIALTONE","features":[383]},{"name":"LINEDISCONNECTMODE_NORMAL","features":[383]},{"name":"LINEDISCONNECTMODE_NUMBERCHANGED","features":[383]},{"name":"LINEDISCONNECTMODE_OUTOFORDER","features":[383]},{"name":"LINEDISCONNECTMODE_PICKUP","features":[383]},{"name":"LINEDISCONNECTMODE_QOSUNAVAIL","features":[383]},{"name":"LINEDISCONNECTMODE_REJECT","features":[383]},{"name":"LINEDISCONNECTMODE_TEMPFAILURE","features":[383]},{"name":"LINEDISCONNECTMODE_UNAVAIL","features":[383]},{"name":"LINEDISCONNECTMODE_UNKNOWN","features":[383]},{"name":"LINEDISCONNECTMODE_UNREACHABLE","features":[383]},{"name":"LINEEQOSINFO_ADMISSIONFAILURE","features":[383]},{"name":"LINEEQOSINFO_GENERICERROR","features":[383]},{"name":"LINEEQOSINFO_NOQOS","features":[383]},{"name":"LINEEQOSINFO_POLICYFAILURE","features":[383]},{"name":"LINEERR_ADDRESSBLOCKED","features":[383]},{"name":"LINEERR_ALLOCATED","features":[383]},{"name":"LINEERR_BADDEVICEID","features":[383]},{"name":"LINEERR_BEARERMODEUNAVAIL","features":[383]},{"name":"LINEERR_BILLINGREJECTED","features":[383]},{"name":"LINEERR_CALLUNAVAIL","features":[383]},{"name":"LINEERR_COMPLETIONOVERRUN","features":[383]},{"name":"LINEERR_CONFERENCEFULL","features":[383]},{"name":"LINEERR_DIALBILLING","features":[383]},{"name":"LINEERR_DIALDIALTONE","features":[383]},{"name":"LINEERR_DIALPROMPT","features":[383]},{"name":"LINEERR_DIALQUIET","features":[383]},{"name":"LINEERR_DIALVOICEDETECT","features":[383]},{"name":"LINEERR_DISCONNECTED","features":[383]},{"name":"LINEERR_INCOMPATIBLEAPIVERSION","features":[383]},{"name":"LINEERR_INCOMPATIBLEEXTVERSION","features":[383]},{"name":"LINEERR_INIFILECORRUPT","features":[383]},{"name":"LINEERR_INUSE","features":[383]},{"name":"LINEERR_INVALADDRESS","features":[383]},{"name":"LINEERR_INVALADDRESSID","features":[383]},{"name":"LINEERR_INVALADDRESSMODE","features":[383]},{"name":"LINEERR_INVALADDRESSSTATE","features":[383]},{"name":"LINEERR_INVALADDRESSTYPE","features":[383]},{"name":"LINEERR_INVALAGENTACTIVITY","features":[383]},{"name":"LINEERR_INVALAGENTGROUP","features":[383]},{"name":"LINEERR_INVALAGENTID","features":[383]},{"name":"LINEERR_INVALAGENTSESSIONSTATE","features":[383]},{"name":"LINEERR_INVALAGENTSTATE","features":[383]},{"name":"LINEERR_INVALAPPHANDLE","features":[383]},{"name":"LINEERR_INVALAPPNAME","features":[383]},{"name":"LINEERR_INVALBEARERMODE","features":[383]},{"name":"LINEERR_INVALCALLCOMPLMODE","features":[383]},{"name":"LINEERR_INVALCALLHANDLE","features":[383]},{"name":"LINEERR_INVALCALLPARAMS","features":[383]},{"name":"LINEERR_INVALCALLPRIVILEGE","features":[383]},{"name":"LINEERR_INVALCALLSELECT","features":[383]},{"name":"LINEERR_INVALCALLSTATE","features":[383]},{"name":"LINEERR_INVALCALLSTATELIST","features":[383]},{"name":"LINEERR_INVALCARD","features":[383]},{"name":"LINEERR_INVALCOMPLETIONID","features":[383]},{"name":"LINEERR_INVALCONFCALLHANDLE","features":[383]},{"name":"LINEERR_INVALCONSULTCALLHANDLE","features":[383]},{"name":"LINEERR_INVALCOUNTRYCODE","features":[383]},{"name":"LINEERR_INVALDEVICECLASS","features":[383]},{"name":"LINEERR_INVALDEVICEHANDLE","features":[383]},{"name":"LINEERR_INVALDIALPARAMS","features":[383]},{"name":"LINEERR_INVALDIGITLIST","features":[383]},{"name":"LINEERR_INVALDIGITMODE","features":[383]},{"name":"LINEERR_INVALDIGITS","features":[383]},{"name":"LINEERR_INVALEXTVERSION","features":[383]},{"name":"LINEERR_INVALFEATURE","features":[383]},{"name":"LINEERR_INVALGROUPID","features":[383]},{"name":"LINEERR_INVALLINEHANDLE","features":[383]},{"name":"LINEERR_INVALLINESTATE","features":[383]},{"name":"LINEERR_INVALLOCATION","features":[383]},{"name":"LINEERR_INVALMEDIALIST","features":[383]},{"name":"LINEERR_INVALMEDIAMODE","features":[383]},{"name":"LINEERR_INVALMESSAGEID","features":[383]},{"name":"LINEERR_INVALPARAM","features":[383]},{"name":"LINEERR_INVALPARKID","features":[383]},{"name":"LINEERR_INVALPARKMODE","features":[383]},{"name":"LINEERR_INVALPASSWORD","features":[383]},{"name":"LINEERR_INVALPOINTER","features":[383]},{"name":"LINEERR_INVALPRIVSELECT","features":[383]},{"name":"LINEERR_INVALRATE","features":[383]},{"name":"LINEERR_INVALREQUESTMODE","features":[383]},{"name":"LINEERR_INVALTERMINALID","features":[383]},{"name":"LINEERR_INVALTERMINALMODE","features":[383]},{"name":"LINEERR_INVALTIMEOUT","features":[383]},{"name":"LINEERR_INVALTONE","features":[383]},{"name":"LINEERR_INVALTONELIST","features":[383]},{"name":"LINEERR_INVALTONEMODE","features":[383]},{"name":"LINEERR_INVALTRANSFERMODE","features":[383]},{"name":"LINEERR_LINEMAPPERFAILED","features":[383]},{"name":"LINEERR_NOCONFERENCE","features":[383]},{"name":"LINEERR_NODEVICE","features":[383]},{"name":"LINEERR_NODRIVER","features":[383]},{"name":"LINEERR_NOMEM","features":[383]},{"name":"LINEERR_NOMULTIPLEINSTANCE","features":[383]},{"name":"LINEERR_NOREQUEST","features":[383]},{"name":"LINEERR_NOTOWNER","features":[383]},{"name":"LINEERR_NOTREGISTERED","features":[383]},{"name":"LINEERR_OPERATIONFAILED","features":[383]},{"name":"LINEERR_OPERATIONUNAVAIL","features":[383]},{"name":"LINEERR_RATEUNAVAIL","features":[383]},{"name":"LINEERR_REINIT","features":[383]},{"name":"LINEERR_REQUESTOVERRUN","features":[383]},{"name":"LINEERR_RESOURCEUNAVAIL","features":[383]},{"name":"LINEERR_SERVICE_NOT_RUNNING","features":[383]},{"name":"LINEERR_STRUCTURETOOSMALL","features":[383]},{"name":"LINEERR_TARGETNOTFOUND","features":[383]},{"name":"LINEERR_TARGETSELF","features":[383]},{"name":"LINEERR_UNINITIALIZED","features":[383]},{"name":"LINEERR_USERCANCELLED","features":[383]},{"name":"LINEERR_USERUSERINFOTOOBIG","features":[383]},{"name":"LINEEVENT","features":[383]},{"name":"LINEEXTENSIONID","features":[383]},{"name":"LINEFEATURE_DEVSPECIFIC","features":[383]},{"name":"LINEFEATURE_DEVSPECIFICFEAT","features":[383]},{"name":"LINEFEATURE_FORWARD","features":[383]},{"name":"LINEFEATURE_FORWARDDND","features":[383]},{"name":"LINEFEATURE_FORWARDFWD","features":[383]},{"name":"LINEFEATURE_MAKECALL","features":[383]},{"name":"LINEFEATURE_SETDEVSTATUS","features":[383]},{"name":"LINEFEATURE_SETMEDIACONTROL","features":[383]},{"name":"LINEFEATURE_SETTERMINAL","features":[383]},{"name":"LINEFORWARD","features":[383]},{"name":"LINEFORWARDLIST","features":[383]},{"name":"LINEFORWARDMODE_BUSY","features":[383]},{"name":"LINEFORWARDMODE_BUSYEXTERNAL","features":[383]},{"name":"LINEFORWARDMODE_BUSYINTERNAL","features":[383]},{"name":"LINEFORWARDMODE_BUSYNA","features":[383]},{"name":"LINEFORWARDMODE_BUSYNAEXTERNAL","features":[383]},{"name":"LINEFORWARDMODE_BUSYNAINTERNAL","features":[383]},{"name":"LINEFORWARDMODE_BUSYNASPECIFIC","features":[383]},{"name":"LINEFORWARDMODE_BUSYSPECIFIC","features":[383]},{"name":"LINEFORWARDMODE_NOANSW","features":[383]},{"name":"LINEFORWARDMODE_NOANSWEXTERNAL","features":[383]},{"name":"LINEFORWARDMODE_NOANSWINTERNAL","features":[383]},{"name":"LINEFORWARDMODE_NOANSWSPECIFIC","features":[383]},{"name":"LINEFORWARDMODE_UNAVAIL","features":[383]},{"name":"LINEFORWARDMODE_UNCOND","features":[383]},{"name":"LINEFORWARDMODE_UNCONDEXTERNAL","features":[383]},{"name":"LINEFORWARDMODE_UNCONDINTERNAL","features":[383]},{"name":"LINEFORWARDMODE_UNCONDSPECIFIC","features":[383]},{"name":"LINEFORWARDMODE_UNKNOWN","features":[383]},{"name":"LINEGATHERTERM_BUFFERFULL","features":[383]},{"name":"LINEGATHERTERM_CANCEL","features":[383]},{"name":"LINEGATHERTERM_FIRSTTIMEOUT","features":[383]},{"name":"LINEGATHERTERM_INTERTIMEOUT","features":[383]},{"name":"LINEGATHERTERM_TERMDIGIT","features":[383]},{"name":"LINEGENERATETERM_CANCEL","features":[383]},{"name":"LINEGENERATETERM_DONE","features":[383]},{"name":"LINEGENERATETONE","features":[383]},{"name":"LINEGROUPSTATUS_GROUPREMOVED","features":[383]},{"name":"LINEGROUPSTATUS_NEWGROUP","features":[383]},{"name":"LINEINITIALIZEEXOPTION_CALLHUBTRACKING","features":[383]},{"name":"LINEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[383]},{"name":"LINEINITIALIZEEXOPTION_USEEVENT","features":[383]},{"name":"LINEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[383]},{"name":"LINEINITIALIZEEXPARAMS","features":[383,303]},{"name":"LINELOCATIONENTRY","features":[383]},{"name":"LINELOCATIONOPTION_PULSEDIAL","features":[383]},{"name":"LINEMAPPER","features":[383]},{"name":"LINEMEDIACONTROLCALLSTATE","features":[383]},{"name":"LINEMEDIACONTROLDIGIT","features":[383]},{"name":"LINEMEDIACONTROLMEDIA","features":[383]},{"name":"LINEMEDIACONTROLTONE","features":[383]},{"name":"LINEMEDIACONTROL_NONE","features":[383]},{"name":"LINEMEDIACONTROL_PAUSE","features":[383]},{"name":"LINEMEDIACONTROL_RATEDOWN","features":[383]},{"name":"LINEMEDIACONTROL_RATENORMAL","features":[383]},{"name":"LINEMEDIACONTROL_RATEUP","features":[383]},{"name":"LINEMEDIACONTROL_RESET","features":[383]},{"name":"LINEMEDIACONTROL_RESUME","features":[383]},{"name":"LINEMEDIACONTROL_START","features":[383]},{"name":"LINEMEDIACONTROL_VOLUMEDOWN","features":[383]},{"name":"LINEMEDIACONTROL_VOLUMENORMAL","features":[383]},{"name":"LINEMEDIACONTROL_VOLUMEUP","features":[383]},{"name":"LINEMEDIAMODE_ADSI","features":[383]},{"name":"LINEMEDIAMODE_AUTOMATEDVOICE","features":[383]},{"name":"LINEMEDIAMODE_DATAMODEM","features":[383]},{"name":"LINEMEDIAMODE_DIGITALDATA","features":[383]},{"name":"LINEMEDIAMODE_G3FAX","features":[383]},{"name":"LINEMEDIAMODE_G4FAX","features":[383]},{"name":"LINEMEDIAMODE_INTERACTIVEVOICE","features":[383]},{"name":"LINEMEDIAMODE_MIXED","features":[383]},{"name":"LINEMEDIAMODE_TDD","features":[383]},{"name":"LINEMEDIAMODE_TELETEX","features":[383]},{"name":"LINEMEDIAMODE_TELEX","features":[383]},{"name":"LINEMEDIAMODE_UNKNOWN","features":[383]},{"name":"LINEMEDIAMODE_VIDEO","features":[383]},{"name":"LINEMEDIAMODE_VIDEOTEX","features":[383]},{"name":"LINEMEDIAMODE_VOICEVIEW","features":[383]},{"name":"LINEMESSAGE","features":[383]},{"name":"LINEMONITORTONE","features":[383]},{"name":"LINEOFFERINGMODE_ACTIVE","features":[383]},{"name":"LINEOFFERINGMODE_INACTIVE","features":[383]},{"name":"LINEOPENOPTION_PROXY","features":[383]},{"name":"LINEOPENOPTION_SINGLEADDRESS","features":[383]},{"name":"LINEPARKMODE_DIRECTED","features":[383]},{"name":"LINEPARKMODE_NONDIRECTED","features":[383]},{"name":"LINEPROVIDERENTRY","features":[383]},{"name":"LINEPROVIDERLIST","features":[383]},{"name":"LINEPROXYREQUEST","features":[383,354]},{"name":"LINEPROXYREQUESTLIST","features":[383]},{"name":"LINEPROXYREQUEST_AGENTSPECIFIC","features":[383]},{"name":"LINEPROXYREQUEST_CREATEAGENT","features":[383]},{"name":"LINEPROXYREQUEST_CREATEAGENTSESSION","features":[383]},{"name":"LINEPROXYREQUEST_GETAGENTACTIVITYLIST","features":[383]},{"name":"LINEPROXYREQUEST_GETAGENTCAPS","features":[383]},{"name":"LINEPROXYREQUEST_GETAGENTGROUPLIST","features":[383]},{"name":"LINEPROXYREQUEST_GETAGENTINFO","features":[383]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONINFO","features":[383]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONLIST","features":[383]},{"name":"LINEPROXYREQUEST_GETAGENTSTATUS","features":[383]},{"name":"LINEPROXYREQUEST_GETGROUPLIST","features":[383]},{"name":"LINEPROXYREQUEST_GETQUEUEINFO","features":[383]},{"name":"LINEPROXYREQUEST_GETQUEUELIST","features":[383]},{"name":"LINEPROXYREQUEST_SETAGENTACTIVITY","features":[383]},{"name":"LINEPROXYREQUEST_SETAGENTGROUP","features":[383]},{"name":"LINEPROXYREQUEST_SETAGENTMEASUREMENTPERIOD","features":[383]},{"name":"LINEPROXYREQUEST_SETAGENTSESSIONSTATE","features":[383]},{"name":"LINEPROXYREQUEST_SETAGENTSTATE","features":[383]},{"name":"LINEPROXYREQUEST_SETAGENTSTATEEX","features":[383]},{"name":"LINEPROXYREQUEST_SETQUEUEMEASUREMENTPERIOD","features":[383]},{"name":"LINEPROXYSTATUS_ALLOPENFORACD","features":[383]},{"name":"LINEPROXYSTATUS_CLOSE","features":[383]},{"name":"LINEPROXYSTATUS_OPEN","features":[383]},{"name":"LINEQOSREQUESTTYPE_SERVICELEVEL","features":[383]},{"name":"LINEQOSSERVICELEVEL_BESTEFFORT","features":[383]},{"name":"LINEQOSSERVICELEVEL_IFAVAILABLE","features":[383]},{"name":"LINEQOSSERVICELEVEL_NEEDED","features":[383]},{"name":"LINEQUEUEENTRY","features":[383]},{"name":"LINEQUEUEINFO","features":[383]},{"name":"LINEQUEUELIST","features":[383]},{"name":"LINEQUEUESTATUS_NEWQUEUE","features":[383]},{"name":"LINEQUEUESTATUS_QUEUEREMOVED","features":[383]},{"name":"LINEQUEUESTATUS_UPDATEINFO","features":[383]},{"name":"LINEREMOVEFROMCONF_ANY","features":[383]},{"name":"LINEREMOVEFROMCONF_LAST","features":[383]},{"name":"LINEREMOVEFROMCONF_NONE","features":[383]},{"name":"LINEREQMAKECALL","features":[383]},{"name":"LINEREQMAKECALLW","features":[383]},{"name":"LINEREQMEDIACALL","features":[383,303]},{"name":"LINEREQMEDIACALLW","features":[383,303]},{"name":"LINEREQUESTMODE_DROP","features":[383]},{"name":"LINEREQUESTMODE_MAKECALL","features":[383]},{"name":"LINEREQUESTMODE_MEDIACALL","features":[383]},{"name":"LINEROAMMODE_HOME","features":[383]},{"name":"LINEROAMMODE_ROAMA","features":[383]},{"name":"LINEROAMMODE_ROAMB","features":[383]},{"name":"LINEROAMMODE_UNAVAIL","features":[383]},{"name":"LINEROAMMODE_UNKNOWN","features":[383]},{"name":"LINESPECIALINFO_CUSTIRREG","features":[383]},{"name":"LINESPECIALINFO_NOCIRCUIT","features":[383]},{"name":"LINESPECIALINFO_REORDER","features":[383]},{"name":"LINESPECIALINFO_UNAVAIL","features":[383]},{"name":"LINESPECIALINFO_UNKNOWN","features":[383]},{"name":"LINETERMCAPS","features":[383]},{"name":"LINETERMDEV_HEADSET","features":[383]},{"name":"LINETERMDEV_PHONE","features":[383]},{"name":"LINETERMDEV_SPEAKER","features":[383]},{"name":"LINETERMMODE_BUTTONS","features":[383]},{"name":"LINETERMMODE_DISPLAY","features":[383]},{"name":"LINETERMMODE_HOOKSWITCH","features":[383]},{"name":"LINETERMMODE_LAMPS","features":[383]},{"name":"LINETERMMODE_MEDIABIDIRECT","features":[383]},{"name":"LINETERMMODE_MEDIAFROMLINE","features":[383]},{"name":"LINETERMMODE_MEDIATOLINE","features":[383]},{"name":"LINETERMMODE_RINGER","features":[383]},{"name":"LINETERMSHARING_PRIVATE","features":[383]},{"name":"LINETERMSHARING_SHAREDCONF","features":[383]},{"name":"LINETERMSHARING_SHAREDEXCL","features":[383]},{"name":"LINETOLLLISTOPTION_ADD","features":[383]},{"name":"LINETOLLLISTOPTION_REMOVE","features":[383]},{"name":"LINETONEMODE_BEEP","features":[383]},{"name":"LINETONEMODE_BILLING","features":[383]},{"name":"LINETONEMODE_BUSY","features":[383]},{"name":"LINETONEMODE_CUSTOM","features":[383]},{"name":"LINETONEMODE_RINGBACK","features":[383]},{"name":"LINETRANSFERMODE_CONFERENCE","features":[383]},{"name":"LINETRANSFERMODE_TRANSFER","features":[383]},{"name":"LINETRANSLATECAPS","features":[383]},{"name":"LINETRANSLATEOPTION_CANCELCALLWAITING","features":[383]},{"name":"LINETRANSLATEOPTION_CARDOVERRIDE","features":[383]},{"name":"LINETRANSLATEOPTION_FORCELD","features":[383]},{"name":"LINETRANSLATEOPTION_FORCELOCAL","features":[383]},{"name":"LINETRANSLATEOUTPUT","features":[383]},{"name":"LINETRANSLATERESULT_CANONICAL","features":[383]},{"name":"LINETRANSLATERESULT_DIALBILLING","features":[383]},{"name":"LINETRANSLATERESULT_DIALDIALTONE","features":[383]},{"name":"LINETRANSLATERESULT_DIALPROMPT","features":[383]},{"name":"LINETRANSLATERESULT_DIALQUIET","features":[383]},{"name":"LINETRANSLATERESULT_INTERNATIONAL","features":[383]},{"name":"LINETRANSLATERESULT_INTOLLLIST","features":[383]},{"name":"LINETRANSLATERESULT_LOCAL","features":[383]},{"name":"LINETRANSLATERESULT_LONGDISTANCE","features":[383]},{"name":"LINETRANSLATERESULT_NOTINTOLLLIST","features":[383]},{"name":"LINETRANSLATERESULT_NOTRANSLATION","features":[383]},{"name":"LINETRANSLATERESULT_VOICEDETECT","features":[383]},{"name":"LINETSPIOPTION_NONREENTRANT","features":[383]},{"name":"LINE_ADDRESSSTATE","features":[383]},{"name":"LINE_AGENTSESSIONSTATUS","features":[383]},{"name":"LINE_AGENTSPECIFIC","features":[383]},{"name":"LINE_AGENTSTATUS","features":[383]},{"name":"LINE_AGENTSTATUSEX","features":[383]},{"name":"LINE_APPNEWCALL","features":[383]},{"name":"LINE_APPNEWCALLHUB","features":[383]},{"name":"LINE_CALLHUBCLOSE","features":[383]},{"name":"LINE_CALLINFO","features":[383]},{"name":"LINE_CALLSTATE","features":[383]},{"name":"LINE_CLOSE","features":[383]},{"name":"LINE_CREATE","features":[383]},{"name":"LINE_DEVSPECIFIC","features":[383]},{"name":"LINE_DEVSPECIFICEX","features":[383]},{"name":"LINE_DEVSPECIFICFEATURE","features":[383]},{"name":"LINE_GATHERDIGITS","features":[383]},{"name":"LINE_GENERATE","features":[383]},{"name":"LINE_GROUPSTATUS","features":[383]},{"name":"LINE_LINEDEVSTATE","features":[383]},{"name":"LINE_MONITORDIGITS","features":[383]},{"name":"LINE_MONITORMEDIA","features":[383]},{"name":"LINE_MONITORTONE","features":[383]},{"name":"LINE_PROXYREQUEST","features":[383]},{"name":"LINE_PROXYSTATUS","features":[383]},{"name":"LINE_QUEUESTATUS","features":[383]},{"name":"LINE_REMOVE","features":[383]},{"name":"LINE_REPLY","features":[383]},{"name":"LINE_REQUEST","features":[383]},{"name":"LM_BROKENFLUTTER","features":[383]},{"name":"LM_DUMMY","features":[383]},{"name":"LM_FLASH","features":[383]},{"name":"LM_FLUTTER","features":[383]},{"name":"LM_OFF","features":[383]},{"name":"LM_STEADY","features":[383]},{"name":"LM_UNKNOWN","features":[383]},{"name":"LM_WINK","features":[383]},{"name":"LPGETTNEFSTREAMCODEPAGE","features":[383,354]},{"name":"LPOPENTNEFSTREAM","features":[383,384,354]},{"name":"LPOPENTNEFSTREAMEX","features":[383,384,354]},{"name":"ME_ADDRESS_EVENT","features":[383]},{"name":"ME_ASR_TERMINAL_EVENT","features":[383]},{"name":"ME_CALL_EVENT","features":[383]},{"name":"ME_FILE_TERMINAL_EVENT","features":[383]},{"name":"ME_PRIVATE_EVENT","features":[383]},{"name":"ME_TONE_TERMINAL_EVENT","features":[383]},{"name":"ME_TSP_DATA","features":[383]},{"name":"ME_TTS_TERMINAL_EVENT","features":[383]},{"name":"MSP_ADDRESS_EVENT","features":[383]},{"name":"MSP_CALL_EVENT","features":[383]},{"name":"MSP_CALL_EVENT_CAUSE","features":[383]},{"name":"MSP_EVENT","features":[383]},{"name":"MSP_EVENT_INFO","features":[383,354]},{"name":"McastAddressAllocation","features":[383]},{"name":"NSID","features":[383]},{"name":"OPENTNEFSTREAM","features":[383]},{"name":"OPENTNEFSTREAMEX","features":[383]},{"name":"OT_CONFERENCE","features":[383]},{"name":"OT_USER","features":[383]},{"name":"OpenTnefStream","features":[383,384,354]},{"name":"OpenTnefStreamEx","features":[383,384,354]},{"name":"PBF_ABBREVDIAL","features":[383]},{"name":"PBF_BRIDGEDAPP","features":[383]},{"name":"PBF_BUSY","features":[383]},{"name":"PBF_CALLAPP","features":[383]},{"name":"PBF_CALLID","features":[383]},{"name":"PBF_CAMPON","features":[383]},{"name":"PBF_CONFERENCE","features":[383]},{"name":"PBF_CONNECT","features":[383]},{"name":"PBF_COVER","features":[383]},{"name":"PBF_DATAOFF","features":[383]},{"name":"PBF_DATAON","features":[383]},{"name":"PBF_DATETIME","features":[383]},{"name":"PBF_DIRECTORY","features":[383]},{"name":"PBF_DISCONNECT","features":[383]},{"name":"PBF_DONOTDISTURB","features":[383]},{"name":"PBF_DROP","features":[383]},{"name":"PBF_FLASH","features":[383]},{"name":"PBF_FORWARD","features":[383]},{"name":"PBF_HOLD","features":[383]},{"name":"PBF_INTERCOM","features":[383]},{"name":"PBF_LASTNUM","features":[383]},{"name":"PBF_MSGINDICATOR","features":[383]},{"name":"PBF_MSGWAITOFF","features":[383]},{"name":"PBF_MSGWAITON","features":[383]},{"name":"PBF_MUTE","features":[383]},{"name":"PBF_NIGHTSRV","features":[383]},{"name":"PBF_NONE","features":[383]},{"name":"PBF_PARK","features":[383]},{"name":"PBF_PICKUP","features":[383]},{"name":"PBF_QUEUECALL","features":[383]},{"name":"PBF_RECALL","features":[383]},{"name":"PBF_REDIRECT","features":[383]},{"name":"PBF_REJECT","features":[383]},{"name":"PBF_REPDIAL","features":[383]},{"name":"PBF_RINGAGAIN","features":[383]},{"name":"PBF_SAVEREPEAT","features":[383]},{"name":"PBF_SELECTRING","features":[383]},{"name":"PBF_SEND","features":[383]},{"name":"PBF_SENDCALLS","features":[383]},{"name":"PBF_SETREPDIAL","features":[383]},{"name":"PBF_SPEAKEROFF","features":[383]},{"name":"PBF_SPEAKERON","features":[383]},{"name":"PBF_STATIONSPEED","features":[383]},{"name":"PBF_SYSTEMSPEED","features":[383]},{"name":"PBF_TRANSFER","features":[383]},{"name":"PBF_UNKNOWN","features":[383]},{"name":"PBF_VOLUMEDOWN","features":[383]},{"name":"PBF_VOLUMEUP","features":[383]},{"name":"PBM_CALL","features":[383]},{"name":"PBM_DISPLAY","features":[383]},{"name":"PBM_DUMMY","features":[383]},{"name":"PBM_FEATURE","features":[383]},{"name":"PBM_KEYPAD","features":[383]},{"name":"PBM_LOCAL","features":[383]},{"name":"PBS_DOWN","features":[383]},{"name":"PBS_UNAVAIL","features":[383]},{"name":"PBS_UNKNOWN","features":[383]},{"name":"PBS_UP","features":[383]},{"name":"PCB_DEVSPECIFICBUFFER","features":[383]},{"name":"PCL_DISPLAYNUMCOLUMNS","features":[383]},{"name":"PCL_DISPLAYNUMROWS","features":[383]},{"name":"PCL_GENERICPHONE","features":[383]},{"name":"PCL_HANDSETHOOKSWITCHMODES","features":[383]},{"name":"PCL_HEADSETHOOKSWITCHMODES","features":[383]},{"name":"PCL_HOOKSWITCHES","features":[383]},{"name":"PCL_NUMBUTTONLAMPS","features":[383]},{"name":"PCL_NUMRINGMODES","features":[383]},{"name":"PCL_SPEAKERPHONEHOOKSWITCHMODES","features":[383]},{"name":"PCS_PHONEINFO","features":[383]},{"name":"PCS_PHONENAME","features":[383]},{"name":"PCS_PROVIDERINFO","features":[383]},{"name":"PE_ANSWER","features":[383]},{"name":"PE_BUTTON","features":[383]},{"name":"PE_CAPSCHANGE","features":[383]},{"name":"PE_CLOSE","features":[383]},{"name":"PE_DIALING","features":[383]},{"name":"PE_DISCONNECT","features":[383]},{"name":"PE_DISPLAY","features":[383]},{"name":"PE_HOOKSWITCH","features":[383]},{"name":"PE_LAMPMODE","features":[383]},{"name":"PE_LASTITEM","features":[383]},{"name":"PE_NUMBERGATHERED","features":[383]},{"name":"PE_RINGMODE","features":[383]},{"name":"PE_RINGVOLUME","features":[383]},{"name":"PHONEBUTTONFUNCTION_ABBREVDIAL","features":[383]},{"name":"PHONEBUTTONFUNCTION_BRIDGEDAPP","features":[383]},{"name":"PHONEBUTTONFUNCTION_BUSY","features":[383]},{"name":"PHONEBUTTONFUNCTION_CALLAPP","features":[383]},{"name":"PHONEBUTTONFUNCTION_CALLID","features":[383]},{"name":"PHONEBUTTONFUNCTION_CAMPON","features":[383]},{"name":"PHONEBUTTONFUNCTION_CONFERENCE","features":[383]},{"name":"PHONEBUTTONFUNCTION_CONNECT","features":[383]},{"name":"PHONEBUTTONFUNCTION_COVER","features":[383]},{"name":"PHONEBUTTONFUNCTION_DATAOFF","features":[383]},{"name":"PHONEBUTTONFUNCTION_DATAON","features":[383]},{"name":"PHONEBUTTONFUNCTION_DATETIME","features":[383]},{"name":"PHONEBUTTONFUNCTION_DIRECTORY","features":[383]},{"name":"PHONEBUTTONFUNCTION_DISCONNECT","features":[383]},{"name":"PHONEBUTTONFUNCTION_DONOTDISTURB","features":[383]},{"name":"PHONEBUTTONFUNCTION_DROP","features":[383]},{"name":"PHONEBUTTONFUNCTION_FLASH","features":[383]},{"name":"PHONEBUTTONFUNCTION_FORWARD","features":[383]},{"name":"PHONEBUTTONFUNCTION_HOLD","features":[383]},{"name":"PHONEBUTTONFUNCTION_INTERCOM","features":[383]},{"name":"PHONEBUTTONFUNCTION_LASTNUM","features":[383]},{"name":"PHONEBUTTONFUNCTION_MSGINDICATOR","features":[383]},{"name":"PHONEBUTTONFUNCTION_MSGWAITOFF","features":[383]},{"name":"PHONEBUTTONFUNCTION_MSGWAITON","features":[383]},{"name":"PHONEBUTTONFUNCTION_MUTE","features":[383]},{"name":"PHONEBUTTONFUNCTION_NIGHTSRV","features":[383]},{"name":"PHONEBUTTONFUNCTION_NONE","features":[383]},{"name":"PHONEBUTTONFUNCTION_PARK","features":[383]},{"name":"PHONEBUTTONFUNCTION_PICKUP","features":[383]},{"name":"PHONEBUTTONFUNCTION_QUEUECALL","features":[383]},{"name":"PHONEBUTTONFUNCTION_RECALL","features":[383]},{"name":"PHONEBUTTONFUNCTION_REDIRECT","features":[383]},{"name":"PHONEBUTTONFUNCTION_REJECT","features":[383]},{"name":"PHONEBUTTONFUNCTION_REPDIAL","features":[383]},{"name":"PHONEBUTTONFUNCTION_RINGAGAIN","features":[383]},{"name":"PHONEBUTTONFUNCTION_SAVEREPEAT","features":[383]},{"name":"PHONEBUTTONFUNCTION_SELECTRING","features":[383]},{"name":"PHONEBUTTONFUNCTION_SEND","features":[383]},{"name":"PHONEBUTTONFUNCTION_SENDCALLS","features":[383]},{"name":"PHONEBUTTONFUNCTION_SETREPDIAL","features":[383]},{"name":"PHONEBUTTONFUNCTION_SPEAKEROFF","features":[383]},{"name":"PHONEBUTTONFUNCTION_SPEAKERON","features":[383]},{"name":"PHONEBUTTONFUNCTION_STATIONSPEED","features":[383]},{"name":"PHONEBUTTONFUNCTION_SYSTEMSPEED","features":[383]},{"name":"PHONEBUTTONFUNCTION_TRANSFER","features":[383]},{"name":"PHONEBUTTONFUNCTION_UNKNOWN","features":[383]},{"name":"PHONEBUTTONFUNCTION_VOLUMEDOWN","features":[383]},{"name":"PHONEBUTTONFUNCTION_VOLUMEUP","features":[383]},{"name":"PHONEBUTTONINFO","features":[383]},{"name":"PHONEBUTTONMODE_CALL","features":[383]},{"name":"PHONEBUTTONMODE_DISPLAY","features":[383]},{"name":"PHONEBUTTONMODE_DUMMY","features":[383]},{"name":"PHONEBUTTONMODE_FEATURE","features":[383]},{"name":"PHONEBUTTONMODE_KEYPAD","features":[383]},{"name":"PHONEBUTTONMODE_LOCAL","features":[383]},{"name":"PHONEBUTTONSTATE_DOWN","features":[383]},{"name":"PHONEBUTTONSTATE_UNAVAIL","features":[383]},{"name":"PHONEBUTTONSTATE_UNKNOWN","features":[383]},{"name":"PHONEBUTTONSTATE_UP","features":[383]},{"name":"PHONECALLBACK","features":[383]},{"name":"PHONECAPS","features":[383]},{"name":"PHONECAPS_BUFFER","features":[383]},{"name":"PHONECAPS_LONG","features":[383]},{"name":"PHONECAPS_STRING","features":[383]},{"name":"PHONEERR_ALLOCATED","features":[383]},{"name":"PHONEERR_BADDEVICEID","features":[383]},{"name":"PHONEERR_DISCONNECTED","features":[383]},{"name":"PHONEERR_INCOMPATIBLEAPIVERSION","features":[383]},{"name":"PHONEERR_INCOMPATIBLEEXTVERSION","features":[383]},{"name":"PHONEERR_INIFILECORRUPT","features":[383]},{"name":"PHONEERR_INUSE","features":[383]},{"name":"PHONEERR_INVALAPPHANDLE","features":[383]},{"name":"PHONEERR_INVALAPPNAME","features":[383]},{"name":"PHONEERR_INVALBUTTONLAMPID","features":[383]},{"name":"PHONEERR_INVALBUTTONMODE","features":[383]},{"name":"PHONEERR_INVALBUTTONSTATE","features":[383]},{"name":"PHONEERR_INVALDATAID","features":[383]},{"name":"PHONEERR_INVALDEVICECLASS","features":[383]},{"name":"PHONEERR_INVALEXTVERSION","features":[383]},{"name":"PHONEERR_INVALHOOKSWITCHDEV","features":[383]},{"name":"PHONEERR_INVALHOOKSWITCHMODE","features":[383]},{"name":"PHONEERR_INVALLAMPMODE","features":[383]},{"name":"PHONEERR_INVALPARAM","features":[383]},{"name":"PHONEERR_INVALPHONEHANDLE","features":[383]},{"name":"PHONEERR_INVALPHONESTATE","features":[383]},{"name":"PHONEERR_INVALPOINTER","features":[383]},{"name":"PHONEERR_INVALPRIVILEGE","features":[383]},{"name":"PHONEERR_INVALRINGMODE","features":[383]},{"name":"PHONEERR_NODEVICE","features":[383]},{"name":"PHONEERR_NODRIVER","features":[383]},{"name":"PHONEERR_NOMEM","features":[383]},{"name":"PHONEERR_NOTOWNER","features":[383]},{"name":"PHONEERR_OPERATIONFAILED","features":[383]},{"name":"PHONEERR_OPERATIONUNAVAIL","features":[383]},{"name":"PHONEERR_REINIT","features":[383]},{"name":"PHONEERR_REQUESTOVERRUN","features":[383]},{"name":"PHONEERR_RESOURCEUNAVAIL","features":[383]},{"name":"PHONEERR_SERVICE_NOT_RUNNING","features":[383]},{"name":"PHONEERR_STRUCTURETOOSMALL","features":[383]},{"name":"PHONEERR_UNINITIALIZED","features":[383]},{"name":"PHONEEVENT","features":[383]},{"name":"PHONEEXTENSIONID","features":[383]},{"name":"PHONEFEATURE_GENERICPHONE","features":[383]},{"name":"PHONEFEATURE_GETBUTTONINFO","features":[383]},{"name":"PHONEFEATURE_GETDATA","features":[383]},{"name":"PHONEFEATURE_GETDISPLAY","features":[383]},{"name":"PHONEFEATURE_GETGAINHANDSET","features":[383]},{"name":"PHONEFEATURE_GETGAINHEADSET","features":[383]},{"name":"PHONEFEATURE_GETGAINSPEAKER","features":[383]},{"name":"PHONEFEATURE_GETHOOKSWITCHHANDSET","features":[383]},{"name":"PHONEFEATURE_GETHOOKSWITCHHEADSET","features":[383]},{"name":"PHONEFEATURE_GETHOOKSWITCHSPEAKER","features":[383]},{"name":"PHONEFEATURE_GETLAMP","features":[383]},{"name":"PHONEFEATURE_GETRING","features":[383]},{"name":"PHONEFEATURE_GETVOLUMEHANDSET","features":[383]},{"name":"PHONEFEATURE_GETVOLUMEHEADSET","features":[383]},{"name":"PHONEFEATURE_GETVOLUMESPEAKER","features":[383]},{"name":"PHONEFEATURE_SETBUTTONINFO","features":[383]},{"name":"PHONEFEATURE_SETDATA","features":[383]},{"name":"PHONEFEATURE_SETDISPLAY","features":[383]},{"name":"PHONEFEATURE_SETGAINHANDSET","features":[383]},{"name":"PHONEFEATURE_SETGAINHEADSET","features":[383]},{"name":"PHONEFEATURE_SETGAINSPEAKER","features":[383]},{"name":"PHONEFEATURE_SETHOOKSWITCHHANDSET","features":[383]},{"name":"PHONEFEATURE_SETHOOKSWITCHHEADSET","features":[383]},{"name":"PHONEFEATURE_SETHOOKSWITCHSPEAKER","features":[383]},{"name":"PHONEFEATURE_SETLAMP","features":[383]},{"name":"PHONEFEATURE_SETRING","features":[383]},{"name":"PHONEFEATURE_SETVOLUMEHANDSET","features":[383]},{"name":"PHONEFEATURE_SETVOLUMEHEADSET","features":[383]},{"name":"PHONEFEATURE_SETVOLUMESPEAKER","features":[383]},{"name":"PHONEHOOKSWITCHDEV_HANDSET","features":[383]},{"name":"PHONEHOOKSWITCHDEV_HEADSET","features":[383]},{"name":"PHONEHOOKSWITCHDEV_SPEAKER","features":[383]},{"name":"PHONEHOOKSWITCHMODE_MIC","features":[383]},{"name":"PHONEHOOKSWITCHMODE_MICSPEAKER","features":[383]},{"name":"PHONEHOOKSWITCHMODE_ONHOOK","features":[383]},{"name":"PHONEHOOKSWITCHMODE_SPEAKER","features":[383]},{"name":"PHONEHOOKSWITCHMODE_UNKNOWN","features":[383]},{"name":"PHONEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[383]},{"name":"PHONEINITIALIZEEXOPTION_USEEVENT","features":[383]},{"name":"PHONEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[383]},{"name":"PHONEINITIALIZEEXPARAMS","features":[383,303]},{"name":"PHONELAMPMODE_BROKENFLUTTER","features":[383]},{"name":"PHONELAMPMODE_DUMMY","features":[383]},{"name":"PHONELAMPMODE_FLASH","features":[383]},{"name":"PHONELAMPMODE_FLUTTER","features":[383]},{"name":"PHONELAMPMODE_OFF","features":[383]},{"name":"PHONELAMPMODE_STEADY","features":[383]},{"name":"PHONELAMPMODE_UNKNOWN","features":[383]},{"name":"PHONELAMPMODE_WINK","features":[383]},{"name":"PHONEMESSAGE","features":[383]},{"name":"PHONEPRIVILEGE_MONITOR","features":[383]},{"name":"PHONEPRIVILEGE_OWNER","features":[383]},{"name":"PHONESTATE_CAPSCHANGE","features":[383]},{"name":"PHONESTATE_CONNECTED","features":[383]},{"name":"PHONESTATE_DEVSPECIFIC","features":[383]},{"name":"PHONESTATE_DISCONNECTED","features":[383]},{"name":"PHONESTATE_DISPLAY","features":[383]},{"name":"PHONESTATE_HANDSETGAIN","features":[383]},{"name":"PHONESTATE_HANDSETHOOKSWITCH","features":[383]},{"name":"PHONESTATE_HANDSETVOLUME","features":[383]},{"name":"PHONESTATE_HEADSETGAIN","features":[383]},{"name":"PHONESTATE_HEADSETHOOKSWITCH","features":[383]},{"name":"PHONESTATE_HEADSETVOLUME","features":[383]},{"name":"PHONESTATE_LAMP","features":[383]},{"name":"PHONESTATE_MONITORS","features":[383]},{"name":"PHONESTATE_OTHER","features":[383]},{"name":"PHONESTATE_OWNER","features":[383]},{"name":"PHONESTATE_REINIT","features":[383]},{"name":"PHONESTATE_REMOVED","features":[383]},{"name":"PHONESTATE_RESUME","features":[383]},{"name":"PHONESTATE_RINGMODE","features":[383]},{"name":"PHONESTATE_RINGVOLUME","features":[383]},{"name":"PHONESTATE_SPEAKERGAIN","features":[383]},{"name":"PHONESTATE_SPEAKERHOOKSWITCH","features":[383]},{"name":"PHONESTATE_SPEAKERVOLUME","features":[383]},{"name":"PHONESTATE_SUSPEND","features":[383]},{"name":"PHONESTATUS","features":[383]},{"name":"PHONESTATUSFLAGS_CONNECTED","features":[383]},{"name":"PHONESTATUSFLAGS_SUSPENDED","features":[383]},{"name":"PHONE_BUTTON","features":[383]},{"name":"PHONE_BUTTON_FUNCTION","features":[383]},{"name":"PHONE_BUTTON_MODE","features":[383]},{"name":"PHONE_BUTTON_STATE","features":[383]},{"name":"PHONE_CLOSE","features":[383]},{"name":"PHONE_CREATE","features":[383]},{"name":"PHONE_DEVSPECIFIC","features":[383]},{"name":"PHONE_EVENT","features":[383]},{"name":"PHONE_HOOK_SWITCH_DEVICE","features":[383]},{"name":"PHONE_HOOK_SWITCH_STATE","features":[383]},{"name":"PHONE_LAMP_MODE","features":[383]},{"name":"PHONE_PRIVILEGE","features":[383]},{"name":"PHONE_REMOVE","features":[383]},{"name":"PHONE_REPLY","features":[383]},{"name":"PHONE_STATE","features":[383]},{"name":"PHONE_TONE","features":[383]},{"name":"PHSD_HANDSET","features":[383]},{"name":"PHSD_HEADSET","features":[383]},{"name":"PHSD_SPEAKERPHONE","features":[383]},{"name":"PHSS_OFFHOOK","features":[383]},{"name":"PHSS_OFFHOOK_MIC_ONLY","features":[383]},{"name":"PHSS_OFFHOOK_SPEAKER_ONLY","features":[383]},{"name":"PHSS_ONHOOK","features":[383]},{"name":"PP_MONITOR","features":[383]},{"name":"PP_OWNER","features":[383]},{"name":"PRIVATEOBJECT_ADDRESS","features":[383]},{"name":"PRIVATEOBJECT_CALL","features":[383]},{"name":"PRIVATEOBJECT_CALLID","features":[383]},{"name":"PRIVATEOBJECT_LINE","features":[383]},{"name":"PRIVATEOBJECT_NONE","features":[383]},{"name":"PRIVATEOBJECT_PHONE","features":[383]},{"name":"PT_BUSY","features":[383]},{"name":"PT_ERRORTONE","features":[383]},{"name":"PT_EXTERNALDIALTONE","features":[383]},{"name":"PT_KEYPADA","features":[383]},{"name":"PT_KEYPADB","features":[383]},{"name":"PT_KEYPADC","features":[383]},{"name":"PT_KEYPADD","features":[383]},{"name":"PT_KEYPADEIGHT","features":[383]},{"name":"PT_KEYPADFIVE","features":[383]},{"name":"PT_KEYPADFOUR","features":[383]},{"name":"PT_KEYPADNINE","features":[383]},{"name":"PT_KEYPADONE","features":[383]},{"name":"PT_KEYPADPOUND","features":[383]},{"name":"PT_KEYPADSEVEN","features":[383]},{"name":"PT_KEYPADSIX","features":[383]},{"name":"PT_KEYPADSTAR","features":[383]},{"name":"PT_KEYPADTHREE","features":[383]},{"name":"PT_KEYPADTWO","features":[383]},{"name":"PT_KEYPADZERO","features":[383]},{"name":"PT_NORMALDIALTONE","features":[383]},{"name":"PT_RINGBACK","features":[383]},{"name":"PT_SILENCE","features":[383]},{"name":"QE_ADMISSIONFAILURE","features":[383]},{"name":"QE_GENERICERROR","features":[383]},{"name":"QE_LASTITEM","features":[383]},{"name":"QE_NOQOS","features":[383]},{"name":"QE_POLICYFAILURE","features":[383]},{"name":"QOS_EVENT","features":[383]},{"name":"QOS_SERVICE_LEVEL","features":[383]},{"name":"QSL_BEST_EFFORT","features":[383]},{"name":"QSL_IF_AVAILABLE","features":[383]},{"name":"QSL_NEEDED","features":[383]},{"name":"RAS_LOCAL","features":[383]},{"name":"RAS_REGION","features":[383]},{"name":"RAS_SITE","features":[383]},{"name":"RAS_WORLD","features":[383]},{"name":"RENDBIND_AUTHENTICATE","features":[383]},{"name":"RENDBIND_DEFAULTCREDENTIALS","features":[383]},{"name":"RENDBIND_DEFAULTDOMAINNAME","features":[383]},{"name":"RENDBIND_DEFAULTPASSWORD","features":[383]},{"name":"RENDBIND_DEFAULTUSERNAME","features":[383]},{"name":"RENDDATA","features":[383]},{"name":"RND_ADVERTISING_SCOPE","features":[383]},{"name":"Rendezvous","features":[383]},{"name":"RequestMakeCall","features":[383]},{"name":"STRINGFORMAT_ASCII","features":[383]},{"name":"STRINGFORMAT_BINARY","features":[383]},{"name":"STRINGFORMAT_DBCS","features":[383]},{"name":"STRINGFORMAT_UNICODE","features":[383]},{"name":"STRM_CONFIGURED","features":[383]},{"name":"STRM_INITIAL","features":[383]},{"name":"STRM_PAUSED","features":[383]},{"name":"STRM_RUNNING","features":[383]},{"name":"STRM_STOPPED","features":[383]},{"name":"STRM_TERMINALSELECTED","features":[383]},{"name":"STnefProblem","features":[383]},{"name":"STnefProblemArray","features":[383]},{"name":"TAPI","features":[383]},{"name":"TAPIERR_CONNECTED","features":[383]},{"name":"TAPIERR_DESTBUSY","features":[383]},{"name":"TAPIERR_DESTNOANSWER","features":[383]},{"name":"TAPIERR_DESTUNAVAIL","features":[383]},{"name":"TAPIERR_DEVICECLASSUNAVAIL","features":[383]},{"name":"TAPIERR_DEVICEIDUNAVAIL","features":[383]},{"name":"TAPIERR_DEVICEINUSE","features":[383]},{"name":"TAPIERR_DROPPED","features":[383]},{"name":"TAPIERR_INVALDESTADDRESS","features":[383]},{"name":"TAPIERR_INVALDEVICECLASS","features":[383]},{"name":"TAPIERR_INVALDEVICEID","features":[383]},{"name":"TAPIERR_INVALPOINTER","features":[383]},{"name":"TAPIERR_INVALWINDOWHANDLE","features":[383]},{"name":"TAPIERR_MMCWRITELOCKED","features":[383]},{"name":"TAPIERR_NOREQUESTRECIPIENT","features":[383]},{"name":"TAPIERR_NOTADMIN","features":[383]},{"name":"TAPIERR_PROVIDERALREADYINSTALLED","features":[383]},{"name":"TAPIERR_REQUESTCANCELLED","features":[383]},{"name":"TAPIERR_REQUESTFAILED","features":[383]},{"name":"TAPIERR_REQUESTQUEUEFULL","features":[383]},{"name":"TAPIERR_SCP_ALREADY_EXISTS","features":[383]},{"name":"TAPIERR_SCP_DOES_NOT_EXIST","features":[383]},{"name":"TAPIERR_UNKNOWNREQUESTID","features":[383]},{"name":"TAPIERR_UNKNOWNWINHANDLE","features":[383]},{"name":"TAPIMAXAPPNAMESIZE","features":[383]},{"name":"TAPIMAXCALLEDPARTYSIZE","features":[383]},{"name":"TAPIMAXCOMMENTSIZE","features":[383]},{"name":"TAPIMAXDESTADDRESSSIZE","features":[383]},{"name":"TAPIMAXDEVICECLASSSIZE","features":[383]},{"name":"TAPIMAXDEVICEIDSIZE","features":[383]},{"name":"TAPIMEDIATYPE_AUDIO","features":[383]},{"name":"TAPIMEDIATYPE_DATAMODEM","features":[383]},{"name":"TAPIMEDIATYPE_G3FAX","features":[383]},{"name":"TAPIMEDIATYPE_MULTITRACK","features":[383]},{"name":"TAPIMEDIATYPE_VIDEO","features":[383]},{"name":"TAPIOBJECT_EVENT","features":[383]},{"name":"TAPI_CURRENT_VERSION","features":[383]},{"name":"TAPI_CUSTOMTONE","features":[383]},{"name":"TAPI_DETECTTONE","features":[383]},{"name":"TAPI_EVENT","features":[383]},{"name":"TAPI_E_ADDRESSBLOCKED","features":[383]},{"name":"TAPI_E_ALLOCATED","features":[383]},{"name":"TAPI_E_BILLINGREJECTED","features":[383]},{"name":"TAPI_E_CALLCENTER_GROUP_REMOVED","features":[383]},{"name":"TAPI_E_CALLCENTER_INVALAGENTACTIVITY","features":[383]},{"name":"TAPI_E_CALLCENTER_INVALAGENTGROUP","features":[383]},{"name":"TAPI_E_CALLCENTER_INVALAGENTID","features":[383]},{"name":"TAPI_E_CALLCENTER_INVALAGENTSTATE","features":[383]},{"name":"TAPI_E_CALLCENTER_INVALPASSWORD","features":[383]},{"name":"TAPI_E_CALLCENTER_NO_AGENT_ID","features":[383]},{"name":"TAPI_E_CALLCENTER_QUEUE_REMOVED","features":[383]},{"name":"TAPI_E_CALLNOTSELECTED","features":[383]},{"name":"TAPI_E_CALLUNAVAIL","features":[383]},{"name":"TAPI_E_COMPLETIONOVERRUN","features":[383]},{"name":"TAPI_E_CONFERENCEFULL","features":[383]},{"name":"TAPI_E_DESTBUSY","features":[383]},{"name":"TAPI_E_DESTNOANSWER","features":[383]},{"name":"TAPI_E_DESTUNAVAIL","features":[383]},{"name":"TAPI_E_DIALMODIFIERNOTSUPPORTED","features":[383]},{"name":"TAPI_E_DROPPED","features":[383]},{"name":"TAPI_E_INUSE","features":[383]},{"name":"TAPI_E_INVALADDRESS","features":[383]},{"name":"TAPI_E_INVALADDRESSSTATE","features":[383]},{"name":"TAPI_E_INVALADDRESSTYPE","features":[383]},{"name":"TAPI_E_INVALBUTTONLAMPID","features":[383]},{"name":"TAPI_E_INVALBUTTONSTATE","features":[383]},{"name":"TAPI_E_INVALCALLPARAMS","features":[383]},{"name":"TAPI_E_INVALCALLPRIVILEGE","features":[383]},{"name":"TAPI_E_INVALCALLSTATE","features":[383]},{"name":"TAPI_E_INVALCARD","features":[383]},{"name":"TAPI_E_INVALCOMPLETIONID","features":[383]},{"name":"TAPI_E_INVALCOUNTRYCODE","features":[383]},{"name":"TAPI_E_INVALDATAID","features":[383]},{"name":"TAPI_E_INVALDEVICECLASS","features":[383]},{"name":"TAPI_E_INVALDIALPARAMS","features":[383]},{"name":"TAPI_E_INVALDIGITS","features":[383]},{"name":"TAPI_E_INVALFEATURE","features":[383]},{"name":"TAPI_E_INVALGROUPID","features":[383]},{"name":"TAPI_E_INVALHOOKSWITCHDEV","features":[383]},{"name":"TAPI_E_INVALIDDIRECTION","features":[383]},{"name":"TAPI_E_INVALIDMEDIATYPE","features":[383]},{"name":"TAPI_E_INVALIDSTREAM","features":[383]},{"name":"TAPI_E_INVALIDSTREAMSTATE","features":[383]},{"name":"TAPI_E_INVALIDTERMINAL","features":[383]},{"name":"TAPI_E_INVALIDTERMINALCLASS","features":[383]},{"name":"TAPI_E_INVALLIST","features":[383]},{"name":"TAPI_E_INVALLOCATION","features":[383]},{"name":"TAPI_E_INVALMESSAGEID","features":[383]},{"name":"TAPI_E_INVALMODE","features":[383]},{"name":"TAPI_E_INVALPARKID","features":[383]},{"name":"TAPI_E_INVALPRIVILEGE","features":[383]},{"name":"TAPI_E_INVALRATE","features":[383]},{"name":"TAPI_E_INVALTIMEOUT","features":[383]},{"name":"TAPI_E_INVALTONE","features":[383]},{"name":"TAPI_E_MAXSTREAMS","features":[383]},{"name":"TAPI_E_MAXTERMINALS","features":[383]},{"name":"TAPI_E_NOCONFERENCE","features":[383]},{"name":"TAPI_E_NODEVICE","features":[383]},{"name":"TAPI_E_NODRIVER","features":[383]},{"name":"TAPI_E_NOEVENT","features":[383]},{"name":"TAPI_E_NOFORMAT","features":[383]},{"name":"TAPI_E_NOITEMS","features":[383]},{"name":"TAPI_E_NOREQUEST","features":[383]},{"name":"TAPI_E_NOREQUESTRECIPIENT","features":[383]},{"name":"TAPI_E_NOTENOUGHMEMORY","features":[383]},{"name":"TAPI_E_NOTERMINALSELECTED","features":[383]},{"name":"TAPI_E_NOTOWNER","features":[383]},{"name":"TAPI_E_NOTREGISTERED","features":[383]},{"name":"TAPI_E_NOTSTOPPED","features":[383]},{"name":"TAPI_E_NOTSUPPORTED","features":[383]},{"name":"TAPI_E_NOT_INITIALIZED","features":[383]},{"name":"TAPI_E_OPERATIONFAILED","features":[383]},{"name":"TAPI_E_PEER_NOT_SET","features":[383]},{"name":"TAPI_E_PHONENOTOPEN","features":[383]},{"name":"TAPI_E_REGISTRY_SETTING_CORRUPT","features":[383]},{"name":"TAPI_E_REINIT","features":[383]},{"name":"TAPI_E_REQUESTCANCELLED","features":[383]},{"name":"TAPI_E_REQUESTFAILED","features":[383]},{"name":"TAPI_E_REQUESTOVERRUN","features":[383]},{"name":"TAPI_E_REQUESTQUEUEFULL","features":[383]},{"name":"TAPI_E_RESOURCEUNAVAIL","features":[383]},{"name":"TAPI_E_SERVICE_NOT_RUNNING","features":[383]},{"name":"TAPI_E_TARGETNOTFOUND","features":[383]},{"name":"TAPI_E_TARGETSELF","features":[383]},{"name":"TAPI_E_TERMINALINUSE","features":[383]},{"name":"TAPI_E_TERMINAL_PEER","features":[383]},{"name":"TAPI_E_TIMEOUT","features":[383]},{"name":"TAPI_E_USERUSERINFOTOOBIG","features":[383]},{"name":"TAPI_E_WRONGEVENT","features":[383]},{"name":"TAPI_E_WRONG_STATE","features":[383]},{"name":"TAPI_GATHERTERM","features":[383]},{"name":"TAPI_OBJECT_TYPE","features":[383]},{"name":"TAPI_REPLY","features":[383]},{"name":"TAPI_TONEMODE","features":[383]},{"name":"TD_BIDIRECTIONAL","features":[383]},{"name":"TD_CAPTURE","features":[383]},{"name":"TD_MULTITRACK_MIXED","features":[383]},{"name":"TD_NONE","features":[383]},{"name":"TD_RENDER","features":[383]},{"name":"TERMINAL_DIRECTION","features":[383]},{"name":"TERMINAL_MEDIA_STATE","features":[383]},{"name":"TERMINAL_STATE","features":[383]},{"name":"TERMINAL_TYPE","features":[383]},{"name":"TE_ACDGROUP","features":[383]},{"name":"TE_ADDRESS","features":[383]},{"name":"TE_ADDRESSCLOSE","features":[383]},{"name":"TE_ADDRESSCREATE","features":[383]},{"name":"TE_ADDRESSDEVSPECIFIC","features":[383]},{"name":"TE_ADDRESSREMOVE","features":[383]},{"name":"TE_AGENT","features":[383]},{"name":"TE_AGENTHANDLER","features":[383]},{"name":"TE_AGENTSESSION","features":[383]},{"name":"TE_ASRTERMINAL","features":[383]},{"name":"TE_CALLHUB","features":[383]},{"name":"TE_CALLINFOCHANGE","features":[383]},{"name":"TE_CALLMEDIA","features":[383]},{"name":"TE_CALLNOTIFICATION","features":[383]},{"name":"TE_CALLSTATE","features":[383]},{"name":"TE_DIGITEVENT","features":[383]},{"name":"TE_FILETERMINAL","features":[383]},{"name":"TE_GATHERDIGITS","features":[383]},{"name":"TE_GENERATEEVENT","features":[383]},{"name":"TE_PHONECREATE","features":[383]},{"name":"TE_PHONEDEVSPECIFIC","features":[383]},{"name":"TE_PHONEEVENT","features":[383]},{"name":"TE_PHONEREMOVE","features":[383]},{"name":"TE_PRIVATE","features":[383]},{"name":"TE_QOSEVENT","features":[383]},{"name":"TE_QUEUE","features":[383]},{"name":"TE_REINIT","features":[383]},{"name":"TE_REQUEST","features":[383]},{"name":"TE_TAPIOBJECT","features":[383]},{"name":"TE_TONEEVENT","features":[383]},{"name":"TE_TONETERMINAL","features":[383]},{"name":"TE_TRANSLATECHANGE","features":[383]},{"name":"TE_TTSTERMINAL","features":[383]},{"name":"TGT_BUFFERFULL","features":[383]},{"name":"TGT_CANCEL","features":[383]},{"name":"TGT_FIRSTTIMEOUT","features":[383]},{"name":"TGT_INTERTIMEOUT","features":[383]},{"name":"TGT_TERMDIGIT","features":[383]},{"name":"TMS_ACTIVE","features":[383]},{"name":"TMS_IDLE","features":[383]},{"name":"TMS_LASTITEM","features":[383]},{"name":"TMS_PAUSED","features":[383]},{"name":"TOT_ADDRESS","features":[383]},{"name":"TOT_CALL","features":[383]},{"name":"TOT_CALLHUB","features":[383]},{"name":"TOT_NONE","features":[383]},{"name":"TOT_PHONE","features":[383]},{"name":"TOT_TAPI","features":[383]},{"name":"TOT_TERMINAL","features":[383]},{"name":"TRP","features":[383]},{"name":"TSPI_LINEACCEPT","features":[383]},{"name":"TSPI_LINEADDTOCONFERENCE","features":[383]},{"name":"TSPI_LINEANSWER","features":[383]},{"name":"TSPI_LINEBLINDTRANSFER","features":[383]},{"name":"TSPI_LINECLOSE","features":[383]},{"name":"TSPI_LINECLOSECALL","features":[383]},{"name":"TSPI_LINECLOSEMSPINSTANCE","features":[383]},{"name":"TSPI_LINECOMPLETECALL","features":[383]},{"name":"TSPI_LINECOMPLETETRANSFER","features":[383]},{"name":"TSPI_LINECONDITIONALMEDIADETECTION","features":[383]},{"name":"TSPI_LINECONFIGDIALOG","features":[383]},{"name":"TSPI_LINECONFIGDIALOGEDIT","features":[383]},{"name":"TSPI_LINECREATEMSPINSTANCE","features":[383]},{"name":"TSPI_LINEDEVSPECIFIC","features":[383]},{"name":"TSPI_LINEDEVSPECIFICFEATURE","features":[383]},{"name":"TSPI_LINEDIAL","features":[383]},{"name":"TSPI_LINEDROP","features":[383]},{"name":"TSPI_LINEDROPNOOWNER","features":[383]},{"name":"TSPI_LINEDROPONCLOSE","features":[383]},{"name":"TSPI_LINEFORWARD","features":[383]},{"name":"TSPI_LINEGATHERDIGITS","features":[383]},{"name":"TSPI_LINEGENERATEDIGITS","features":[383]},{"name":"TSPI_LINEGENERATETONE","features":[383]},{"name":"TSPI_LINEGETADDRESSCAPS","features":[383]},{"name":"TSPI_LINEGETADDRESSID","features":[383]},{"name":"TSPI_LINEGETADDRESSSTATUS","features":[383]},{"name":"TSPI_LINEGETCALLADDRESSID","features":[383]},{"name":"TSPI_LINEGETCALLHUBTRACKING","features":[383]},{"name":"TSPI_LINEGETCALLID","features":[383]},{"name":"TSPI_LINEGETCALLINFO","features":[383]},{"name":"TSPI_LINEGETCALLSTATUS","features":[383]},{"name":"TSPI_LINEGETDEVCAPS","features":[383]},{"name":"TSPI_LINEGETDEVCONFIG","features":[383]},{"name":"TSPI_LINEGETEXTENSIONID","features":[383]},{"name":"TSPI_LINEGETICON","features":[383]},{"name":"TSPI_LINEGETID","features":[383]},{"name":"TSPI_LINEGETLINEDEVSTATUS","features":[383]},{"name":"TSPI_LINEGETNUMADDRESSIDS","features":[383]},{"name":"TSPI_LINEHOLD","features":[383]},{"name":"TSPI_LINEMAKECALL","features":[383]},{"name":"TSPI_LINEMONITORDIGITS","features":[383]},{"name":"TSPI_LINEMONITORMEDIA","features":[383]},{"name":"TSPI_LINEMONITORTONES","features":[383]},{"name":"TSPI_LINEMSPIDENTIFY","features":[383]},{"name":"TSPI_LINENEGOTIATEEXTVERSION","features":[383]},{"name":"TSPI_LINENEGOTIATETSPIVERSION","features":[383]},{"name":"TSPI_LINEOPEN","features":[383]},{"name":"TSPI_LINEPARK","features":[383]},{"name":"TSPI_LINEPICKUP","features":[383]},{"name":"TSPI_LINEPREPAREADDTOCONFERENCE","features":[383]},{"name":"TSPI_LINERECEIVEMSPDATA","features":[383]},{"name":"TSPI_LINEREDIRECT","features":[383]},{"name":"TSPI_LINERELEASEUSERUSERINFO","features":[383]},{"name":"TSPI_LINEREMOVEFROMCONFERENCE","features":[383]},{"name":"TSPI_LINESECURECALL","features":[383]},{"name":"TSPI_LINESELECTEXTVERSION","features":[383]},{"name":"TSPI_LINESENDUSERUSERINFO","features":[383]},{"name":"TSPI_LINESETAPPSPECIFIC","features":[383]},{"name":"TSPI_LINESETCALLHUBTRACKING","features":[383]},{"name":"TSPI_LINESETCALLPARAMS","features":[383]},{"name":"TSPI_LINESETCURRENTLOCATION","features":[383]},{"name":"TSPI_LINESETDEFAULTMEDIADETECTION","features":[383]},{"name":"TSPI_LINESETDEVCONFIG","features":[383]},{"name":"TSPI_LINESETMEDIACONTROL","features":[383]},{"name":"TSPI_LINESETMEDIAMODE","features":[383]},{"name":"TSPI_LINESETSTATUSMESSAGES","features":[383]},{"name":"TSPI_LINESETTERMINAL","features":[383]},{"name":"TSPI_LINESETUPCONFERENCE","features":[383]},{"name":"TSPI_LINESETUPTRANSFER","features":[383]},{"name":"TSPI_LINESWAPHOLD","features":[383]},{"name":"TSPI_LINEUNCOMPLETECALL","features":[383]},{"name":"TSPI_LINEUNHOLD","features":[383]},{"name":"TSPI_LINEUNPARK","features":[383]},{"name":"TSPI_MESSAGE_BASE","features":[383]},{"name":"TSPI_PHONECLOSE","features":[383]},{"name":"TSPI_PHONECONFIGDIALOG","features":[383]},{"name":"TSPI_PHONEDEVSPECIFIC","features":[383]},{"name":"TSPI_PHONEGETBUTTONINFO","features":[383]},{"name":"TSPI_PHONEGETDATA","features":[383]},{"name":"TSPI_PHONEGETDEVCAPS","features":[383]},{"name":"TSPI_PHONEGETDISPLAY","features":[383]},{"name":"TSPI_PHONEGETEXTENSIONID","features":[383]},{"name":"TSPI_PHONEGETGAIN","features":[383]},{"name":"TSPI_PHONEGETHOOKSWITCH","features":[383]},{"name":"TSPI_PHONEGETICON","features":[383]},{"name":"TSPI_PHONEGETID","features":[383]},{"name":"TSPI_PHONEGETLAMP","features":[383]},{"name":"TSPI_PHONEGETRING","features":[383]},{"name":"TSPI_PHONEGETSTATUS","features":[383]},{"name":"TSPI_PHONEGETVOLUME","features":[383]},{"name":"TSPI_PHONENEGOTIATEEXTVERSION","features":[383]},{"name":"TSPI_PHONENEGOTIATETSPIVERSION","features":[383]},{"name":"TSPI_PHONEOPEN","features":[383]},{"name":"TSPI_PHONESELECTEXTVERSION","features":[383]},{"name":"TSPI_PHONESETBUTTONINFO","features":[383]},{"name":"TSPI_PHONESETDATA","features":[383]},{"name":"TSPI_PHONESETDISPLAY","features":[383]},{"name":"TSPI_PHONESETGAIN","features":[383]},{"name":"TSPI_PHONESETHOOKSWITCH","features":[383]},{"name":"TSPI_PHONESETLAMP","features":[383]},{"name":"TSPI_PHONESETRING","features":[383]},{"name":"TSPI_PHONESETSTATUSMESSAGES","features":[383]},{"name":"TSPI_PHONESETVOLUME","features":[383]},{"name":"TSPI_PROC_BASE","features":[383]},{"name":"TSPI_PROVIDERCONFIG","features":[383]},{"name":"TSPI_PROVIDERCREATELINEDEVICE","features":[383]},{"name":"TSPI_PROVIDERCREATEPHONEDEVICE","features":[383]},{"name":"TSPI_PROVIDERENUMDEVICES","features":[383]},{"name":"TSPI_PROVIDERINIT","features":[383]},{"name":"TSPI_PROVIDERINSTALL","features":[383]},{"name":"TSPI_PROVIDERREMOVE","features":[383]},{"name":"TSPI_PROVIDERSHUTDOWN","features":[383]},{"name":"TS_INUSE","features":[383]},{"name":"TS_NOTINUSE","features":[383]},{"name":"TTM_BEEP","features":[383]},{"name":"TTM_BILLING","features":[383]},{"name":"TTM_BUSY","features":[383]},{"name":"TTM_RINGBACK","features":[383]},{"name":"TT_DYNAMIC","features":[383]},{"name":"TT_STATIC","features":[383]},{"name":"TUISPICREATEDIALOGINSTANCEPARAMS","features":[383]},{"name":"TUISPIDLLCALLBACK","features":[383]},{"name":"TUISPIDLL_OBJECT_DIALOGINSTANCE","features":[383]},{"name":"TUISPIDLL_OBJECT_LINEID","features":[383]},{"name":"TUISPIDLL_OBJECT_PHONEID","features":[383]},{"name":"TUISPIDLL_OBJECT_PROVIDERID","features":[383]},{"name":"VARSTRING","features":[383]},{"name":"atypFile","features":[383]},{"name":"atypMax","features":[383]},{"name":"atypNull","features":[383]},{"name":"atypOle","features":[383]},{"name":"atypPicture","features":[383]},{"name":"cbDisplayName","features":[383]},{"name":"cbEmailName","features":[383]},{"name":"cbMaxIdData","features":[383]},{"name":"cbSeverName","features":[383]},{"name":"cbTYPE","features":[383]},{"name":"lineAccept","features":[383]},{"name":"lineAddProvider","features":[383,303]},{"name":"lineAddProviderA","features":[383,303]},{"name":"lineAddProviderW","features":[383,303]},{"name":"lineAddToConference","features":[383]},{"name":"lineAgentSpecific","features":[383]},{"name":"lineAnswer","features":[383]},{"name":"lineBlindTransfer","features":[383]},{"name":"lineBlindTransferA","features":[383]},{"name":"lineBlindTransferW","features":[383]},{"name":"lineClose","features":[383]},{"name":"lineCompleteCall","features":[383]},{"name":"lineCompleteTransfer","features":[383]},{"name":"lineConfigDialog","features":[383,303]},{"name":"lineConfigDialogA","features":[383,303]},{"name":"lineConfigDialogEdit","features":[383,303]},{"name":"lineConfigDialogEditA","features":[383,303]},{"name":"lineConfigDialogEditW","features":[383,303]},{"name":"lineConfigDialogW","features":[383,303]},{"name":"lineConfigProvider","features":[383,303]},{"name":"lineCreateAgentA","features":[383]},{"name":"lineCreateAgentSessionA","features":[383]},{"name":"lineCreateAgentSessionW","features":[383]},{"name":"lineCreateAgentW","features":[383]},{"name":"lineDeallocateCall","features":[383]},{"name":"lineDevSpecific","features":[383]},{"name":"lineDevSpecificFeature","features":[383]},{"name":"lineDial","features":[383]},{"name":"lineDialA","features":[383]},{"name":"lineDialW","features":[383]},{"name":"lineDrop","features":[383]},{"name":"lineForward","features":[383]},{"name":"lineForwardA","features":[383]},{"name":"lineForwardW","features":[383]},{"name":"lineGatherDigits","features":[383]},{"name":"lineGatherDigitsA","features":[383]},{"name":"lineGatherDigitsW","features":[383]},{"name":"lineGenerateDigits","features":[383]},{"name":"lineGenerateDigitsA","features":[383]},{"name":"lineGenerateDigitsW","features":[383]},{"name":"lineGenerateTone","features":[383]},{"name":"lineGetAddressCaps","features":[383]},{"name":"lineGetAddressCapsA","features":[383]},{"name":"lineGetAddressCapsW","features":[383]},{"name":"lineGetAddressID","features":[383]},{"name":"lineGetAddressIDA","features":[383]},{"name":"lineGetAddressIDW","features":[383]},{"name":"lineGetAddressStatus","features":[383]},{"name":"lineGetAddressStatusA","features":[383]},{"name":"lineGetAddressStatusW","features":[383]},{"name":"lineGetAgentActivityListA","features":[383]},{"name":"lineGetAgentActivityListW","features":[383]},{"name":"lineGetAgentCapsA","features":[383]},{"name":"lineGetAgentCapsW","features":[383]},{"name":"lineGetAgentGroupListA","features":[383]},{"name":"lineGetAgentGroupListW","features":[383]},{"name":"lineGetAgentInfo","features":[383,354]},{"name":"lineGetAgentSessionInfo","features":[383,354]},{"name":"lineGetAgentSessionList","features":[383]},{"name":"lineGetAgentStatusA","features":[383]},{"name":"lineGetAgentStatusW","features":[383]},{"name":"lineGetAppPriority","features":[383]},{"name":"lineGetAppPriorityA","features":[383]},{"name":"lineGetAppPriorityW","features":[383]},{"name":"lineGetCallInfo","features":[383]},{"name":"lineGetCallInfoA","features":[383]},{"name":"lineGetCallInfoW","features":[383]},{"name":"lineGetCallStatus","features":[383,303]},{"name":"lineGetConfRelatedCalls","features":[383]},{"name":"lineGetCountry","features":[383]},{"name":"lineGetCountryA","features":[383]},{"name":"lineGetCountryW","features":[383]},{"name":"lineGetDevCaps","features":[383]},{"name":"lineGetDevCapsA","features":[383]},{"name":"lineGetDevCapsW","features":[383]},{"name":"lineGetDevConfig","features":[383]},{"name":"lineGetDevConfigA","features":[383]},{"name":"lineGetDevConfigW","features":[383]},{"name":"lineGetGroupListA","features":[383]},{"name":"lineGetGroupListW","features":[383]},{"name":"lineGetID","features":[383]},{"name":"lineGetIDA","features":[383]},{"name":"lineGetIDW","features":[383]},{"name":"lineGetIcon","features":[383,365]},{"name":"lineGetIconA","features":[383,365]},{"name":"lineGetIconW","features":[383,365]},{"name":"lineGetLineDevStatus","features":[383]},{"name":"lineGetLineDevStatusA","features":[383]},{"name":"lineGetLineDevStatusW","features":[383]},{"name":"lineGetMessage","features":[383]},{"name":"lineGetNewCalls","features":[383]},{"name":"lineGetNumRings","features":[383]},{"name":"lineGetProviderList","features":[383]},{"name":"lineGetProviderListA","features":[383]},{"name":"lineGetProviderListW","features":[383]},{"name":"lineGetProxyStatus","features":[383]},{"name":"lineGetQueueInfo","features":[383]},{"name":"lineGetQueueListA","features":[383]},{"name":"lineGetQueueListW","features":[383]},{"name":"lineGetRequest","features":[383]},{"name":"lineGetRequestA","features":[383]},{"name":"lineGetRequestW","features":[383]},{"name":"lineGetStatusMessages","features":[383]},{"name":"lineGetTranslateCaps","features":[383]},{"name":"lineGetTranslateCapsA","features":[383]},{"name":"lineGetTranslateCapsW","features":[383]},{"name":"lineHandoff","features":[383]},{"name":"lineHandoffA","features":[383]},{"name":"lineHandoffW","features":[383]},{"name":"lineHold","features":[383]},{"name":"lineInitialize","features":[383,303]},{"name":"lineInitializeExA","features":[383,303]},{"name":"lineInitializeExW","features":[383,303]},{"name":"lineMakeCall","features":[383]},{"name":"lineMakeCallA","features":[383]},{"name":"lineMakeCallW","features":[383]},{"name":"lineMonitorDigits","features":[383]},{"name":"lineMonitorMedia","features":[383]},{"name":"lineMonitorTones","features":[383]},{"name":"lineNegotiateAPIVersion","features":[383]},{"name":"lineNegotiateExtVersion","features":[383]},{"name":"lineOpen","features":[383]},{"name":"lineOpenA","features":[383]},{"name":"lineOpenW","features":[383]},{"name":"linePark","features":[383]},{"name":"lineParkA","features":[383]},{"name":"lineParkW","features":[383]},{"name":"linePickup","features":[383]},{"name":"linePickupA","features":[383]},{"name":"linePickupW","features":[383]},{"name":"linePrepareAddToConference","features":[383]},{"name":"linePrepareAddToConferenceA","features":[383]},{"name":"linePrepareAddToConferenceW","features":[383]},{"name":"lineProxyMessage","features":[383]},{"name":"lineProxyResponse","features":[383,354]},{"name":"lineRedirect","features":[383]},{"name":"lineRedirectA","features":[383]},{"name":"lineRedirectW","features":[383]},{"name":"lineRegisterRequestRecipient","features":[383]},{"name":"lineReleaseUserUserInfo","features":[383]},{"name":"lineRemoveFromConference","features":[383]},{"name":"lineRemoveProvider","features":[383,303]},{"name":"lineSecureCall","features":[383]},{"name":"lineSendUserUserInfo","features":[383]},{"name":"lineSetAgentActivity","features":[383]},{"name":"lineSetAgentGroup","features":[383]},{"name":"lineSetAgentMeasurementPeriod","features":[383]},{"name":"lineSetAgentSessionState","features":[383]},{"name":"lineSetAgentState","features":[383]},{"name":"lineSetAgentStateEx","features":[383]},{"name":"lineSetAppPriority","features":[383]},{"name":"lineSetAppPriorityA","features":[383]},{"name":"lineSetAppPriorityW","features":[383]},{"name":"lineSetAppSpecific","features":[383]},{"name":"lineSetCallData","features":[383]},{"name":"lineSetCallParams","features":[383]},{"name":"lineSetCallPrivilege","features":[383]},{"name":"lineSetCallQualityOfService","features":[383]},{"name":"lineSetCallTreatment","features":[383]},{"name":"lineSetCurrentLocation","features":[383]},{"name":"lineSetDevConfig","features":[383]},{"name":"lineSetDevConfigA","features":[383]},{"name":"lineSetDevConfigW","features":[383]},{"name":"lineSetLineDevStatus","features":[383]},{"name":"lineSetMediaControl","features":[383]},{"name":"lineSetMediaMode","features":[383]},{"name":"lineSetNumRings","features":[383]},{"name":"lineSetQueueMeasurementPeriod","features":[383]},{"name":"lineSetStatusMessages","features":[383]},{"name":"lineSetTerminal","features":[383]},{"name":"lineSetTollList","features":[383]},{"name":"lineSetTollListA","features":[383]},{"name":"lineSetTollListW","features":[383]},{"name":"lineSetupConference","features":[383]},{"name":"lineSetupConferenceA","features":[383]},{"name":"lineSetupConferenceW","features":[383]},{"name":"lineSetupTransfer","features":[383]},{"name":"lineSetupTransferA","features":[383]},{"name":"lineSetupTransferW","features":[383]},{"name":"lineShutdown","features":[383]},{"name":"lineSwapHold","features":[383]},{"name":"lineTranslateAddress","features":[383]},{"name":"lineTranslateAddressA","features":[383]},{"name":"lineTranslateAddressW","features":[383]},{"name":"lineTranslateDialog","features":[383,303]},{"name":"lineTranslateDialogA","features":[383,303]},{"name":"lineTranslateDialogW","features":[383,303]},{"name":"lineUncompleteCall","features":[383]},{"name":"lineUnhold","features":[383]},{"name":"lineUnpark","features":[383]},{"name":"lineUnparkA","features":[383]},{"name":"lineUnparkW","features":[383]},{"name":"phoneClose","features":[383]},{"name":"phoneConfigDialog","features":[383,303]},{"name":"phoneConfigDialogA","features":[383,303]},{"name":"phoneConfigDialogW","features":[383,303]},{"name":"phoneDevSpecific","features":[383]},{"name":"phoneGetButtonInfo","features":[383]},{"name":"phoneGetButtonInfoA","features":[383]},{"name":"phoneGetButtonInfoW","features":[383]},{"name":"phoneGetData","features":[383]},{"name":"phoneGetDevCaps","features":[383]},{"name":"phoneGetDevCapsA","features":[383]},{"name":"phoneGetDevCapsW","features":[383]},{"name":"phoneGetDisplay","features":[383]},{"name":"phoneGetGain","features":[383]},{"name":"phoneGetHookSwitch","features":[383]},{"name":"phoneGetID","features":[383]},{"name":"phoneGetIDA","features":[383]},{"name":"phoneGetIDW","features":[383]},{"name":"phoneGetIcon","features":[383,365]},{"name":"phoneGetIconA","features":[383,365]},{"name":"phoneGetIconW","features":[383,365]},{"name":"phoneGetLamp","features":[383]},{"name":"phoneGetMessage","features":[383]},{"name":"phoneGetRing","features":[383]},{"name":"phoneGetStatus","features":[383]},{"name":"phoneGetStatusA","features":[383]},{"name":"phoneGetStatusMessages","features":[383]},{"name":"phoneGetStatusW","features":[383]},{"name":"phoneGetVolume","features":[383]},{"name":"phoneInitialize","features":[383,303]},{"name":"phoneInitializeExA","features":[383,303]},{"name":"phoneInitializeExW","features":[383,303]},{"name":"phoneNegotiateAPIVersion","features":[383]},{"name":"phoneNegotiateExtVersion","features":[383]},{"name":"phoneOpen","features":[383]},{"name":"phoneSetButtonInfo","features":[383]},{"name":"phoneSetButtonInfoA","features":[383]},{"name":"phoneSetButtonInfoW","features":[383]},{"name":"phoneSetData","features":[383]},{"name":"phoneSetDisplay","features":[383]},{"name":"phoneSetGain","features":[383]},{"name":"phoneSetHookSwitch","features":[383]},{"name":"phoneSetLamp","features":[383]},{"name":"phoneSetRing","features":[383]},{"name":"phoneSetStatusMessages","features":[383]},{"name":"phoneSetVolume","features":[383]},{"name":"phoneShutdown","features":[383]},{"name":"prioHigh","features":[383]},{"name":"prioLow","features":[383]},{"name":"prioNorm","features":[383]},{"name":"tapiGetLocationInfo","features":[383]},{"name":"tapiGetLocationInfoA","features":[383]},{"name":"tapiGetLocationInfoW","features":[383]},{"name":"tapiRequestDrop","features":[383,303]},{"name":"tapiRequestMakeCall","features":[383]},{"name":"tapiRequestMakeCallA","features":[383]},{"name":"tapiRequestMakeCallW","features":[383]},{"name":"tapiRequestMediaCall","features":[383,303]},{"name":"tapiRequestMediaCallA","features":[383,303]},{"name":"tapiRequestMediaCallW","features":[383,303]}],"387":[{"name":"ALLOW_PARTIAL_READS","features":[385]},{"name":"ALL_PIPE","features":[385]},{"name":"ALTERNATE_INTERFACE","features":[385]},{"name":"AUTO_CLEAR_STALL","features":[385]},{"name":"AUTO_FLUSH","features":[385]},{"name":"AUTO_SUSPEND","features":[385]},{"name":"AcquireBusInfo","features":[385]},{"name":"AcquireControllerName","features":[385]},{"name":"AcquireHubName","features":[385]},{"name":"BMREQUEST_CLASS","features":[385]},{"name":"BMREQUEST_DEVICE_TO_HOST","features":[385]},{"name":"BMREQUEST_HOST_TO_DEVICE","features":[385]},{"name":"BMREQUEST_STANDARD","features":[385]},{"name":"BMREQUEST_TO_DEVICE","features":[385]},{"name":"BMREQUEST_TO_ENDPOINT","features":[385]},{"name":"BMREQUEST_TO_INTERFACE","features":[385]},{"name":"BMREQUEST_TO_OTHER","features":[385]},{"name":"BMREQUEST_VENDOR","features":[385]},{"name":"BM_REQUEST_TYPE","features":[385]},{"name":"BULKIN_FLAG","features":[385]},{"name":"CHANNEL_INFO","features":[385]},{"name":"CompositeDevice","features":[385]},{"name":"DEVICE_DESCRIPTOR","features":[385]},{"name":"DEVICE_SPEED","features":[385]},{"name":"DRV_VERSION","features":[385]},{"name":"DeviceCausedOvercurrent","features":[385]},{"name":"DeviceConnected","features":[385]},{"name":"DeviceEnumerating","features":[385]},{"name":"DeviceFailedEnumeration","features":[385]},{"name":"DeviceGeneralFailure","features":[385]},{"name":"DeviceHubNestedTooDeeply","features":[385]},{"name":"DeviceInLegacyHub","features":[385]},{"name":"DeviceNotEnoughBandwidth","features":[385]},{"name":"DeviceNotEnoughPower","features":[385]},{"name":"DeviceReset","features":[385]},{"name":"EHCI_Generic","features":[385]},{"name":"EHCI_Intel_Medfield","features":[385]},{"name":"EHCI_Lucent","features":[385]},{"name":"EHCI_NEC","features":[385]},{"name":"EHCI_NVIDIA_Tegra2","features":[385]},{"name":"EHCI_NVIDIA_Tegra3","features":[385]},{"name":"EVENT_PIPE","features":[385]},{"name":"EnumerationFailure","features":[385]},{"name":"FILE_DEVICE_USB","features":[385]},{"name":"FILE_DEVICE_USB_SCAN","features":[385]},{"name":"FullSpeed","features":[385]},{"name":"GUID_DEVINTERFACE_USB_BILLBOARD","features":[385]},{"name":"GUID_DEVINTERFACE_USB_DEVICE","features":[385]},{"name":"GUID_DEVINTERFACE_USB_HOST_CONTROLLER","features":[385]},{"name":"GUID_DEVINTERFACE_USB_HUB","features":[385]},{"name":"GUID_USB_MSOS20_PLATFORM_CAPABILITY_ID","features":[385]},{"name":"GUID_USB_PERFORMANCE_TRACING","features":[385]},{"name":"GUID_USB_TRANSFER_TRACING","features":[385]},{"name":"GUID_USB_WMI_DEVICE_PERF_INFO","features":[385]},{"name":"GUID_USB_WMI_NODE_INFO","features":[385]},{"name":"GUID_USB_WMI_STD_DATA","features":[385]},{"name":"GUID_USB_WMI_STD_NOTIFICATION","features":[385]},{"name":"GUID_USB_WMI_SURPRISE_REMOVAL_NOTIFICATION","features":[385]},{"name":"GUID_USB_WMI_TRACING","features":[385]},{"name":"HCD_DIAGNOSTIC_MODE_OFF","features":[385]},{"name":"HCD_DIAGNOSTIC_MODE_ON","features":[385]},{"name":"HCD_DISABLE_PORT","features":[385]},{"name":"HCD_ENABLE_PORT","features":[385]},{"name":"HCD_GET_DRIVERKEY_NAME","features":[385]},{"name":"HCD_GET_ROOT_HUB_NAME","features":[385]},{"name":"HCD_GET_STATS_1","features":[385]},{"name":"HCD_GET_STATS_2","features":[385]},{"name":"HCD_ISO_STAT_COUNTERS","features":[385]},{"name":"HCD_STAT_COUNTERS","features":[385]},{"name":"HCD_STAT_INFORMATION_1","features":[385]},{"name":"HCD_STAT_INFORMATION_2","features":[385]},{"name":"HCD_TRACE_READ_REQUEST","features":[385]},{"name":"HCD_USER_REQUEST","features":[385]},{"name":"HUB_DEVICE_CONFIG_INFO","features":[385]},{"name":"HighSpeed","features":[385]},{"name":"HubDevice","features":[385]},{"name":"HubNestedTooDeeply","features":[385]},{"name":"HubOvercurrent","features":[385]},{"name":"HubPowerChange","features":[385]},{"name":"IGNORE_SHORT_PACKETS","features":[385]},{"name":"IOCTL_ABORT_PIPE","features":[385]},{"name":"IOCTL_CANCEL_IO","features":[385]},{"name":"IOCTL_GENERICUSBFN_ACTIVATE_USB_BUS","features":[385]},{"name":"IOCTL_GENERICUSBFN_BUS_EVENT_NOTIFICATION","features":[385]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_IN","features":[385]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_OUT","features":[385]},{"name":"IOCTL_GENERICUSBFN_DEACTIVATE_USB_BUS","features":[385]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO","features":[385]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO_EX","features":[385]},{"name":"IOCTL_GENERICUSBFN_GET_INTERFACE_DESCRIPTOR_SET","features":[385]},{"name":"IOCTL_GENERICUSBFN_GET_PIPE_STATE","features":[385]},{"name":"IOCTL_GENERICUSBFN_REGISTER_USB_STRING","features":[385]},{"name":"IOCTL_GENERICUSBFN_SET_PIPE_STATE","features":[385]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN","features":[385]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN_APPEND_ZERO_PKT","features":[385]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_OUT","features":[385]},{"name":"IOCTL_GET_CHANNEL_ALIGN_RQST","features":[385]},{"name":"IOCTL_GET_DEVICE_DESCRIPTOR","features":[385]},{"name":"IOCTL_GET_HCD_DRIVERKEY_NAME","features":[385]},{"name":"IOCTL_GET_PIPE_CONFIGURATION","features":[385]},{"name":"IOCTL_GET_USB_DESCRIPTOR","features":[385]},{"name":"IOCTL_GET_VERSION","features":[385]},{"name":"IOCTL_INDEX","features":[385]},{"name":"IOCTL_INTERNAL_USB_CYCLE_PORT","features":[385]},{"name":"IOCTL_INTERNAL_USB_ENABLE_PORT","features":[385]},{"name":"IOCTL_INTERNAL_USB_FAIL_GET_STATUS_FROM_DEVICE","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_BUSGUID_INFO","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_BUS_INFO","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_CONTROLLER_NAME","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_CONFIG_INFO","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE_EX","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_COUNT","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_NAME","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_PARENT_HUB_INFO","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_PORT_STATUS","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_ROOTHUB_PDO","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_TOPOLOGY_ADDRESS","features":[385]},{"name":"IOCTL_INTERNAL_USB_GET_TT_DEVICE_HANDLE","features":[385]},{"name":"IOCTL_INTERNAL_USB_NOTIFY_IDLE_READY","features":[385]},{"name":"IOCTL_INTERNAL_USB_RECORD_FAILURE","features":[385]},{"name":"IOCTL_INTERNAL_USB_REGISTER_COMPOSITE_DEVICE","features":[385]},{"name":"IOCTL_INTERNAL_USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[385]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_RESUME","features":[385]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_SUSPEND","features":[385]},{"name":"IOCTL_INTERNAL_USB_RESET_PORT","features":[385]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_IDLE_NOTIFICATION","features":[385]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_URB","features":[385]},{"name":"IOCTL_INTERNAL_USB_UNREGISTER_COMPOSITE_DEVICE","features":[385]},{"name":"IOCTL_READ_REGISTERS","features":[385]},{"name":"IOCTL_RESET_PIPE","features":[385]},{"name":"IOCTL_SEND_USB_REQUEST","features":[385]},{"name":"IOCTL_SET_TIMEOUT","features":[385]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_OFF","features":[385]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_ON","features":[385]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_OFF","features":[385]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_ON","features":[385]},{"name":"IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[385]},{"name":"IOCTL_USB_GET_DEVICE_CHARACTERISTICS","features":[385]},{"name":"IOCTL_USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[385]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES","features":[385]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES_EX","features":[385]},{"name":"IOCTL_USB_GET_HUB_INFORMATION_EX","features":[385]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[385]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[385]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION","features":[385]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[385]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[385]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_NAME","features":[385]},{"name":"IOCTL_USB_GET_NODE_INFORMATION","features":[385]},{"name":"IOCTL_USB_GET_PORT_CONNECTOR_PROPERTIES","features":[385]},{"name":"IOCTL_USB_GET_ROOT_HUB_NAME","features":[385]},{"name":"IOCTL_USB_GET_TRANSPORT_CHARACTERISTICS","features":[385]},{"name":"IOCTL_USB_HCD_DISABLE_PORT","features":[385]},{"name":"IOCTL_USB_HCD_ENABLE_PORT","features":[385]},{"name":"IOCTL_USB_HCD_GET_STATS_1","features":[385]},{"name":"IOCTL_USB_HCD_GET_STATS_2","features":[385]},{"name":"IOCTL_USB_HUB_CYCLE_PORT","features":[385]},{"name":"IOCTL_USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[385]},{"name":"IOCTL_USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[385]},{"name":"IOCTL_USB_RESET_HUB","features":[385]},{"name":"IOCTL_USB_START_TRACKING_FOR_TIME_SYNC","features":[385]},{"name":"IOCTL_USB_STOP_TRACKING_FOR_TIME_SYNC","features":[385]},{"name":"IOCTL_USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[385]},{"name":"IOCTL_WAIT_ON_DEVICE_EVENT","features":[385]},{"name":"IOCTL_WRITE_REGISTERS","features":[385]},{"name":"IO_BLOCK","features":[385]},{"name":"IO_BLOCK_EX","features":[385]},{"name":"InsufficentBandwidth","features":[385]},{"name":"InsufficentPower","features":[385]},{"name":"KREGMANUSBFNENUMPATH","features":[385]},{"name":"KREGUSBFNENUMPATH","features":[385]},{"name":"LowSpeed","features":[385]},{"name":"MAXIMUM_TRANSFER_SIZE","features":[385]},{"name":"MAXIMUM_USB_STRING_LENGTH","features":[385]},{"name":"MAX_ALTERNATE_NAME_LENGTH","features":[385]},{"name":"MAX_ASSOCIATION_NAME_LENGTH","features":[385]},{"name":"MAX_CONFIGURATION_NAME_LENGTH","features":[385]},{"name":"MAX_INTERFACE_NAME_LENGTH","features":[385]},{"name":"MAX_NUM_PIPES","features":[385]},{"name":"MAX_NUM_USBFN_ENDPOINTS","features":[385]},{"name":"MAX_SUPPORTED_CONFIGURATIONS","features":[385]},{"name":"MAX_USB_STRING_LENGTH","features":[385]},{"name":"MS_GENRE_DESCRIPTOR_INDEX","features":[385]},{"name":"MS_OS_FLAGS_CONTAINERID","features":[385]},{"name":"MS_OS_STRING_SIGNATURE","features":[385]},{"name":"MS_POWER_DESCRIPTOR_INDEX","features":[385]},{"name":"ModernDeviceInLegacyHub","features":[385]},{"name":"NoDeviceConnected","features":[385]},{"name":"OHCI_Generic","features":[385]},{"name":"OHCI_Hydra","features":[385]},{"name":"OHCI_NEC","features":[385]},{"name":"OS_STRING","features":[385]},{"name":"OS_STRING_DESCRIPTOR_INDEX","features":[385]},{"name":"OverCurrent","features":[385]},{"name":"PACKET_PARAMETERS","features":[385]},{"name":"PIPE_TRANSFER_TIMEOUT","features":[385]},{"name":"PIPE_TYPE","features":[385]},{"name":"PORT_LINK_STATE_COMPLIANCE_MODE","features":[385]},{"name":"PORT_LINK_STATE_DISABLED","features":[385]},{"name":"PORT_LINK_STATE_HOT_RESET","features":[385]},{"name":"PORT_LINK_STATE_INACTIVE","features":[385]},{"name":"PORT_LINK_STATE_LOOPBACK","features":[385]},{"name":"PORT_LINK_STATE_POLLING","features":[385]},{"name":"PORT_LINK_STATE_RECOVERY","features":[385]},{"name":"PORT_LINK_STATE_RX_DETECT","features":[385]},{"name":"PORT_LINK_STATE_TEST_MODE","features":[385]},{"name":"PORT_LINK_STATE_U0","features":[385]},{"name":"PORT_LINK_STATE_U1","features":[385]},{"name":"PORT_LINK_STATE_U2","features":[385]},{"name":"PORT_LINK_STATE_U3","features":[385]},{"name":"RAW_IO","features":[385]},{"name":"RAW_PIPE_TYPE","features":[385]},{"name":"RAW_RESET_PORT_PARAMETERS","features":[385]},{"name":"RAW_ROOTPORT_FEATURE","features":[385]},{"name":"RAW_ROOTPORT_PARAMETERS","features":[385]},{"name":"READ_DATA_PIPE","features":[385]},{"name":"RESET_PIPE_ON_RESUME","features":[385]},{"name":"ResetOvercurrent","features":[385]},{"name":"SHORT_PACKET_TERMINATE","features":[385]},{"name":"SUSPEND_DELAY","features":[385]},{"name":"UHCI_Generic","features":[385]},{"name":"UHCI_Ich1","features":[385]},{"name":"UHCI_Ich2","features":[385]},{"name":"UHCI_Ich3m","features":[385]},{"name":"UHCI_Ich4","features":[385]},{"name":"UHCI_Ich5","features":[385]},{"name":"UHCI_Ich6","features":[385]},{"name":"UHCI_Intel","features":[385]},{"name":"UHCI_Piix3","features":[385]},{"name":"UHCI_Piix4","features":[385]},{"name":"UHCI_Reserved204","features":[385]},{"name":"UHCI_VIA","features":[385]},{"name":"UHCI_VIA_x01","features":[385]},{"name":"UHCI_VIA_x02","features":[385]},{"name":"UHCI_VIA_x03","features":[385]},{"name":"UHCI_VIA_x04","features":[385]},{"name":"UHCI_VIA_x0E_FIFO","features":[385]},{"name":"URB","features":[385]},{"name":"URB_FUNCTION_ABORT_PIPE","features":[385]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER","features":[385]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER_USING_CHAINED_MDL","features":[385]},{"name":"URB_FUNCTION_CLASS_DEVICE","features":[385]},{"name":"URB_FUNCTION_CLASS_ENDPOINT","features":[385]},{"name":"URB_FUNCTION_CLASS_INTERFACE","features":[385]},{"name":"URB_FUNCTION_CLASS_OTHER","features":[385]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_DEVICE","features":[385]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_ENDPOINT","features":[385]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_INTERFACE","features":[385]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_OTHER","features":[385]},{"name":"URB_FUNCTION_CLOSE_STATIC_STREAMS","features":[385]},{"name":"URB_FUNCTION_CONTROL_TRANSFER","features":[385]},{"name":"URB_FUNCTION_CONTROL_TRANSFER_EX","features":[385]},{"name":"URB_FUNCTION_GET_CONFIGURATION","features":[385]},{"name":"URB_FUNCTION_GET_CURRENT_FRAME_NUMBER","features":[385]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE","features":[385]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_ENDPOINT","features":[385]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_INTERFACE","features":[385]},{"name":"URB_FUNCTION_GET_FRAME_LENGTH","features":[385]},{"name":"URB_FUNCTION_GET_INTERFACE","features":[385]},{"name":"URB_FUNCTION_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[385]},{"name":"URB_FUNCTION_GET_MS_FEATURE_DESCRIPTOR","features":[385]},{"name":"URB_FUNCTION_GET_STATUS_FROM_DEVICE","features":[385]},{"name":"URB_FUNCTION_GET_STATUS_FROM_ENDPOINT","features":[385]},{"name":"URB_FUNCTION_GET_STATUS_FROM_INTERFACE","features":[385]},{"name":"URB_FUNCTION_GET_STATUS_FROM_OTHER","features":[385]},{"name":"URB_FUNCTION_ISOCH_TRANSFER","features":[385]},{"name":"URB_FUNCTION_ISOCH_TRANSFER_USING_CHAINED_MDL","features":[385]},{"name":"URB_FUNCTION_OPEN_STATIC_STREAMS","features":[385]},{"name":"URB_FUNCTION_RELEASE_FRAME_LENGTH_CONTROL","features":[385]},{"name":"URB_FUNCTION_RESERVED_0X0016","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X001D","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X002B","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X002C","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X002D","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X002E","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X002F","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X0033","features":[385]},{"name":"URB_FUNCTION_RESERVE_0X0034","features":[385]},{"name":"URB_FUNCTION_RESET_PIPE","features":[385]},{"name":"URB_FUNCTION_SELECT_CONFIGURATION","features":[385]},{"name":"URB_FUNCTION_SELECT_INTERFACE","features":[385]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_DEVICE","features":[385]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_ENDPOINT","features":[385]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_INTERFACE","features":[385]},{"name":"URB_FUNCTION_SET_FEATURE_TO_DEVICE","features":[385]},{"name":"URB_FUNCTION_SET_FEATURE_TO_ENDPOINT","features":[385]},{"name":"URB_FUNCTION_SET_FEATURE_TO_INTERFACE","features":[385]},{"name":"URB_FUNCTION_SET_FEATURE_TO_OTHER","features":[385]},{"name":"URB_FUNCTION_SET_FRAME_LENGTH","features":[385]},{"name":"URB_FUNCTION_SYNC_CLEAR_STALL","features":[385]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE","features":[385]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL","features":[385]},{"name":"URB_FUNCTION_TAKE_FRAME_LENGTH_CONTROL","features":[385]},{"name":"URB_FUNCTION_VENDOR_DEVICE","features":[385]},{"name":"URB_FUNCTION_VENDOR_ENDPOINT","features":[385]},{"name":"URB_FUNCTION_VENDOR_INTERFACE","features":[385]},{"name":"URB_FUNCTION_VENDOR_OTHER","features":[385]},{"name":"URB_OPEN_STATIC_STREAMS_VERSION_100","features":[385]},{"name":"UREGMANUSBFNENUMPATH","features":[385]},{"name":"UREGUSBFNENUMPATH","features":[385]},{"name":"USBDI_VERSION","features":[385]},{"name":"USBD_DEFAULT_MAXIMUM_TRANSFER_SIZE","features":[385]},{"name":"USBD_DEFAULT_PIPE_TRANSFER","features":[385]},{"name":"USBD_DEVICE_INFORMATION","features":[385]},{"name":"USBD_ENDPOINT_OFFLOAD_INFORMATION","features":[385]},{"name":"USBD_ENDPOINT_OFFLOAD_MODE","features":[385]},{"name":"USBD_INTERFACE_INFORMATION","features":[385]},{"name":"USBD_ISO_PACKET_DESCRIPTOR","features":[385]},{"name":"USBD_ISO_START_FRAME_RANGE","features":[385]},{"name":"USBD_PF_CHANGE_MAX_PACKET","features":[385]},{"name":"USBD_PF_ENABLE_RT_THREAD_ACCESS","features":[385]},{"name":"USBD_PF_HANDLES_SSP_HIGH_BANDWIDTH_ISOCH","features":[385]},{"name":"USBD_PF_INTERACTIVE_PRIORITY","features":[385]},{"name":"USBD_PF_MAP_ADD_TRANSFERS","features":[385]},{"name":"USBD_PF_PRIORITY_MASK","features":[385]},{"name":"USBD_PF_SHORT_PACKET_OPT","features":[385]},{"name":"USBD_PF_SSP_HIGH_BANDWIDTH_ISOCH","features":[385]},{"name":"USBD_PF_VIDEO_PRIORITY","features":[385]},{"name":"USBD_PF_VOICE_PRIORITY","features":[385]},{"name":"USBD_PIPE_INFORMATION","features":[385]},{"name":"USBD_PIPE_TYPE","features":[385]},{"name":"USBD_PORT_CONNECTED","features":[385]},{"name":"USBD_PORT_ENABLED","features":[385]},{"name":"USBD_SHORT_TRANSFER_OK","features":[385]},{"name":"USBD_START_ISO_TRANSFER_ASAP","features":[385]},{"name":"USBD_STREAM_INFORMATION","features":[385]},{"name":"USBD_TRANSFER_DIRECTION","features":[385]},{"name":"USBD_TRANSFER_DIRECTION_IN","features":[385]},{"name":"USBD_TRANSFER_DIRECTION_OUT","features":[385]},{"name":"USBD_VERSION_INFORMATION","features":[385]},{"name":"USBFN_BUS_CONFIGURATION_INFO","features":[385,303]},{"name":"USBFN_BUS_SPEED","features":[385]},{"name":"USBFN_CLASS_INFORMATION_PACKET","features":[385,303]},{"name":"USBFN_CLASS_INFORMATION_PACKET_EX","features":[385,303]},{"name":"USBFN_CLASS_INTERFACE","features":[385]},{"name":"USBFN_CLASS_INTERFACE_EX","features":[385]},{"name":"USBFN_DEVICE_STATE","features":[385]},{"name":"USBFN_DIRECTION","features":[385]},{"name":"USBFN_EVENT","features":[385]},{"name":"USBFN_INTERFACE_INFO","features":[385]},{"name":"USBFN_INTERRUPT_ENDPOINT_SIZE_NOT_UPDATEABLE_MASK","features":[385]},{"name":"USBFN_NOTIFICATION","features":[385]},{"name":"USBFN_PIPE_INFORMATION","features":[385]},{"name":"USBFN_PORT_TYPE","features":[385]},{"name":"USBFN_USB_STRING","features":[385]},{"name":"USBSCAN_GET_DESCRIPTOR","features":[385]},{"name":"USBSCAN_PIPE_BULK","features":[385]},{"name":"USBSCAN_PIPE_CONFIGURATION","features":[385]},{"name":"USBSCAN_PIPE_CONTROL","features":[385]},{"name":"USBSCAN_PIPE_INFORMATION","features":[385]},{"name":"USBSCAN_PIPE_INTERRUPT","features":[385]},{"name":"USBSCAN_PIPE_ISOCHRONOUS","features":[385]},{"name":"USBSCAN_TIMEOUT","features":[385]},{"name":"USBUSER_BANDWIDTH_INFO_REQUEST","features":[385]},{"name":"USBUSER_BUS_STATISTICS_0_REQUEST","features":[385,303]},{"name":"USBUSER_CLEAR_ROOTPORT_FEATURE","features":[385]},{"name":"USBUSER_CLOSE_RAW_DEVICE","features":[385]},{"name":"USBUSER_CONTROLLER_INFO_0","features":[385]},{"name":"USBUSER_CONTROLLER_UNICODE_NAME","features":[385]},{"name":"USBUSER_GET_BANDWIDTH_INFORMATION","features":[385]},{"name":"USBUSER_GET_BUS_STATISTICS_0","features":[385]},{"name":"USBUSER_GET_CONTROLLER_DRIVER_KEY","features":[385]},{"name":"USBUSER_GET_CONTROLLER_INFO_0","features":[385]},{"name":"USBUSER_GET_DRIVER_VERSION","features":[385,303]},{"name":"USBUSER_GET_POWER_STATE_MAP","features":[385]},{"name":"USBUSER_GET_ROOTHUB_SYMBOLIC_NAME","features":[385]},{"name":"USBUSER_GET_ROOTPORT_STATUS","features":[385]},{"name":"USBUSER_GET_USB2HW_VERSION","features":[385]},{"name":"USBUSER_GET_USB2_HW_VERSION","features":[385]},{"name":"USBUSER_GET_USB_DRIVER_VERSION","features":[385]},{"name":"USBUSER_INVALID_REQUEST","features":[385]},{"name":"USBUSER_OPEN_RAW_DEVICE","features":[385]},{"name":"USBUSER_OP_CLOSE_RAW_DEVICE","features":[385]},{"name":"USBUSER_OP_MASK_DEVONLY_API","features":[385]},{"name":"USBUSER_OP_MASK_HCTEST_API","features":[385]},{"name":"USBUSER_OP_OPEN_RAW_DEVICE","features":[385]},{"name":"USBUSER_OP_RAW_RESET_PORT","features":[385]},{"name":"USBUSER_OP_SEND_ONE_PACKET","features":[385]},{"name":"USBUSER_OP_SEND_RAW_COMMAND","features":[385]},{"name":"USBUSER_PASS_THRU","features":[385]},{"name":"USBUSER_PASS_THRU_REQUEST","features":[385]},{"name":"USBUSER_POWER_INFO_REQUEST","features":[385,303]},{"name":"USBUSER_RAW_RESET_ROOT_PORT","features":[385]},{"name":"USBUSER_REFRESH_HCT_REG","features":[385]},{"name":"USBUSER_REQUEST_HEADER","features":[385]},{"name":"USBUSER_ROOTPORT_FEATURE_REQUEST","features":[385]},{"name":"USBUSER_ROOTPORT_PARAMETERS","features":[385]},{"name":"USBUSER_SEND_ONE_PACKET","features":[385]},{"name":"USBUSER_SEND_RAW_COMMAND","features":[385]},{"name":"USBUSER_SET_ROOTPORT_FEATURE","features":[385]},{"name":"USBUSER_USB_REFRESH_HCT_REG","features":[385]},{"name":"USBUSER_VERSION","features":[385]},{"name":"USB_20_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[385]},{"name":"USB_20_HUB_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_20_PORT_CHANGE","features":[385]},{"name":"USB_20_PORT_STATUS","features":[385]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[385]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_MASK","features":[385]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_NOTIFICATION","features":[385]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_PERIODIC","features":[385]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED10","features":[385]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED11","features":[385]},{"name":"USB_30_HUB_DESCRIPTOR","features":[385]},{"name":"USB_30_HUB_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_30_PORT_CHANGE","features":[385]},{"name":"USB_30_PORT_STATUS","features":[385]},{"name":"USB_ACQUIRE_INFO","features":[385]},{"name":"USB_ALLOW_FIRMWARE_UPDATE","features":[385]},{"name":"USB_BANDWIDTH_INFO","features":[385]},{"name":"USB_BOS_DESCRIPTOR","features":[385]},{"name":"USB_BOS_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_BUS_NOTIFICATION","features":[385]},{"name":"USB_BUS_STATISTICS_0","features":[385,303]},{"name":"USB_CHANGE_REGISTRATION_HANDLE","features":[385]},{"name":"USB_CHARGING_POLICY_DEFAULT","features":[385]},{"name":"USB_CHARGING_POLICY_ICCHPF","features":[385]},{"name":"USB_CHARGING_POLICY_ICCLPF","features":[385]},{"name":"USB_CHARGING_POLICY_NO_POWER","features":[385]},{"name":"USB_CLOSE_RAW_DEVICE_PARAMETERS","features":[385]},{"name":"USB_COMMON_DESCRIPTOR","features":[385]},{"name":"USB_COMPOSITE_DEVICE_INFO","features":[385,303]},{"name":"USB_COMPOSITE_FUNCTION_INFO","features":[385,303]},{"name":"USB_CONFIGURATION_DESCRIPTOR","features":[385]},{"name":"USB_CONFIGURATION_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_CONFIGURATION_POWER_DESCRIPTOR","features":[385]},{"name":"USB_CONFIG_BUS_POWERED","features":[385]},{"name":"USB_CONFIG_POWERED_MASK","features":[385]},{"name":"USB_CONFIG_POWER_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_CONFIG_REMOTE_WAKEUP","features":[385]},{"name":"USB_CONFIG_RESERVED","features":[385]},{"name":"USB_CONFIG_SELF_POWERED","features":[385]},{"name":"USB_CONNECTION_NOTIFICATION","features":[385]},{"name":"USB_CONNECTION_STATUS","features":[385]},{"name":"USB_CONTROLLER_DEVICE_INFO","features":[385]},{"name":"USB_CONTROLLER_FLAVOR","features":[385]},{"name":"USB_CONTROLLER_INFO_0","features":[385]},{"name":"USB_CYCLE_PORT","features":[385]},{"name":"USB_CYCLE_PORT_PARAMS","features":[385]},{"name":"USB_DEBUG_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_DEFAULT_DEVICE_ADDRESS","features":[385]},{"name":"USB_DEFAULT_ENDPOINT_ADDRESS","features":[385]},{"name":"USB_DEFAULT_MAX_PACKET","features":[385]},{"name":"USB_DEFAULT_PIPE_SETUP_PACKET","features":[385]},{"name":"USB_DESCRIPTOR_REQUEST","features":[385]},{"name":"USB_DEVICE_CAPABILITY_BATTERY_INFO","features":[385]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD","features":[385]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID","features":[385]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS","features":[385]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_MAX_U1_LATENCY","features":[385]},{"name":"USB_DEVICE_CAPABILITY_MAX_U2_LATENCY","features":[385]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT","features":[385]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_PD_PROVIDER_PORT","features":[385]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM","features":[385]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY","features":[385]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_PRECISION_TIME_MEASUREMENT","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_RX","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_TX","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_BPS","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_GBPS","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_KBPS","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_MBPS","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_ASYMMETRIC","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_SYMMETRIC","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SS","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SSP","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_LTM_CAPABLE","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_RESERVED_MASK","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_FULL","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_HIGH","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_LOW","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_RESERVED_MASK","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_SUPER","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U1_DEVICE_EXIT_MAX_VALUE","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U2_DEVICE_EXIT_MAX_VALUE","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB","features":[385]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION","features":[385]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_BMATTRIBUTES_RESERVED_MASK","features":[385]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_CAPABILITY_WIRELESS_USB","features":[385]},{"name":"USB_DEVICE_CHARACTERISTICS","features":[385]},{"name":"USB_DEVICE_CHARACTERISTICS_MAXIMUM_PATH_DELAYS_AVAILABLE","features":[385]},{"name":"USB_DEVICE_CHARACTERISTICS_VERSION_1","features":[385]},{"name":"USB_DEVICE_CLASS_APPLICATION_SPECIFIC","features":[385]},{"name":"USB_DEVICE_CLASS_AUDIO","features":[385]},{"name":"USB_DEVICE_CLASS_AUDIO_VIDEO","features":[385]},{"name":"USB_DEVICE_CLASS_BILLBOARD","features":[385]},{"name":"USB_DEVICE_CLASS_CDC_DATA","features":[385]},{"name":"USB_DEVICE_CLASS_COMMUNICATIONS","features":[385]},{"name":"USB_DEVICE_CLASS_CONTENT_SECURITY","features":[385]},{"name":"USB_DEVICE_CLASS_DIAGNOSTIC_DEVICE","features":[385]},{"name":"USB_DEVICE_CLASS_HUB","features":[385]},{"name":"USB_DEVICE_CLASS_HUMAN_INTERFACE","features":[385]},{"name":"USB_DEVICE_CLASS_IMAGE","features":[385]},{"name":"USB_DEVICE_CLASS_MISCELLANEOUS","features":[385]},{"name":"USB_DEVICE_CLASS_MONITOR","features":[385]},{"name":"USB_DEVICE_CLASS_PERSONAL_HEALTHCARE","features":[385]},{"name":"USB_DEVICE_CLASS_PHYSICAL_INTERFACE","features":[385]},{"name":"USB_DEVICE_CLASS_POWER","features":[385]},{"name":"USB_DEVICE_CLASS_PRINTER","features":[385]},{"name":"USB_DEVICE_CLASS_RESERVED","features":[385]},{"name":"USB_DEVICE_CLASS_SMART_CARD","features":[385]},{"name":"USB_DEVICE_CLASS_STORAGE","features":[385]},{"name":"USB_DEVICE_CLASS_VENDOR_SPECIFIC","features":[385]},{"name":"USB_DEVICE_CLASS_VIDEO","features":[385]},{"name":"USB_DEVICE_CLASS_WIRELESS_CONTROLLER","features":[385]},{"name":"USB_DEVICE_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_DEVICE_FIRMWARE_HASH_LENGTH","features":[385]},{"name":"USB_DEVICE_INFO","features":[385]},{"name":"USB_DEVICE_NODE_INFO","features":[385,303]},{"name":"USB_DEVICE_PERFORMANCE_INFO","features":[385]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR","features":[385]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_DEVICE_SPEED","features":[385]},{"name":"USB_DEVICE_STATE","features":[385]},{"name":"USB_DEVICE_STATUS","features":[385]},{"name":"USB_DEVICE_TYPE","features":[385]},{"name":"USB_DIAG_IGNORE_HUBS_OFF","features":[385]},{"name":"USB_DIAG_IGNORE_HUBS_ON","features":[385]},{"name":"USB_DISALLOW_FIRMWARE_UPDATE","features":[385]},{"name":"USB_DRIVER_VERSION_PARAMETERS","features":[385,303]},{"name":"USB_ENABLE_PORT","features":[385]},{"name":"USB_ENDPOINT_ADDRESS_MASK","features":[385]},{"name":"USB_ENDPOINT_DESCRIPTOR","features":[385]},{"name":"USB_ENDPOINT_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_ENDPOINT_DIRECTION_MASK","features":[385]},{"name":"USB_ENDPOINT_STATUS","features":[385]},{"name":"USB_ENDPOINT_SUPERSPEED_BULK_MAX_PACKET_SIZE","features":[385]},{"name":"USB_ENDPOINT_SUPERSPEED_CONTROL_MAX_PACKET_SIZE","features":[385]},{"name":"USB_ENDPOINT_SUPERSPEED_INTERRUPT_MAX_PACKET_SIZE","features":[385]},{"name":"USB_ENDPOINT_SUPERSPEED_ISO_MAX_PACKET_SIZE","features":[385]},{"name":"USB_ENDPOINT_TYPE_BULK","features":[385]},{"name":"USB_ENDPOINT_TYPE_BULK_RESERVED_MASK","features":[385]},{"name":"USB_ENDPOINT_TYPE_CONTROL","features":[385]},{"name":"USB_ENDPOINT_TYPE_CONTROL_RESERVED_MASK","features":[385]},{"name":"USB_ENDPOINT_TYPE_INTERRUPT","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_RESERVED_MASK","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ADAPTIVE","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ASYNCHRONOUS","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_MASK","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_NO_SYNCHRONIZATION","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_SYNCHRONOUS","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_DATA_ENDOINT","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_FEEDBACK_ENDPOINT","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_IMPLICIT_FEEDBACK_DATA_ENDPOINT","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_MASK","features":[385]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_RESERVED","features":[385]},{"name":"USB_ENDPOINT_TYPE_MASK","features":[385]},{"name":"USB_FAIL_GET_STATUS","features":[385]},{"name":"USB_FEATURE_BATTERY_WAKE_MASK","features":[385]},{"name":"USB_FEATURE_CHARGING_POLICY","features":[385]},{"name":"USB_FEATURE_ENDPOINT_STALL","features":[385]},{"name":"USB_FEATURE_FUNCTION_SUSPEND","features":[385]},{"name":"USB_FEATURE_INTERFACE_POWER_D0","features":[385]},{"name":"USB_FEATURE_INTERFACE_POWER_D1","features":[385]},{"name":"USB_FEATURE_INTERFACE_POWER_D2","features":[385]},{"name":"USB_FEATURE_INTERFACE_POWER_D3","features":[385]},{"name":"USB_FEATURE_LDM_ENABLE","features":[385]},{"name":"USB_FEATURE_LTM_ENABLE","features":[385]},{"name":"USB_FEATURE_OS_IS_PD_AWARE","features":[385]},{"name":"USB_FEATURE_POLICY_MODE","features":[385]},{"name":"USB_FEATURE_REMOTE_WAKEUP","features":[385]},{"name":"USB_FEATURE_TEST_MODE","features":[385]},{"name":"USB_FEATURE_U1_ENABLE","features":[385]},{"name":"USB_FEATURE_U2_ENABLE","features":[385]},{"name":"USB_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC_INFORMATION","features":[385,303]},{"name":"USB_FUNCTION_SUSPEND_OPTIONS","features":[385]},{"name":"USB_GETSTATUS_LTM_ENABLE","features":[385]},{"name":"USB_GETSTATUS_REMOTE_WAKEUP_ENABLED","features":[385]},{"name":"USB_GETSTATUS_SELF_POWERED","features":[385]},{"name":"USB_GETSTATUS_U1_ENABLE","features":[385]},{"name":"USB_GETSTATUS_U2_ENABLE","features":[385]},{"name":"USB_GET_BUSGUID_INFO","features":[385]},{"name":"USB_GET_BUS_INFO","features":[385]},{"name":"USB_GET_CONTROLLER_NAME","features":[385]},{"name":"USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[385]},{"name":"USB_GET_DEVICE_CHARACTERISTICS","features":[385]},{"name":"USB_GET_DEVICE_HANDLE","features":[385]},{"name":"USB_GET_DEVICE_HANDLE_EX","features":[385]},{"name":"USB_GET_FIRMWARE_ALLOWED_OR_DISALLOWED_STATE","features":[385]},{"name":"USB_GET_FIRMWARE_HASH","features":[385]},{"name":"USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[385]},{"name":"USB_GET_HUB_CAPABILITIES","features":[385]},{"name":"USB_GET_HUB_CAPABILITIES_EX","features":[385]},{"name":"USB_GET_HUB_CONFIG_INFO","features":[385]},{"name":"USB_GET_HUB_COUNT","features":[385]},{"name":"USB_GET_HUB_INFORMATION_EX","features":[385]},{"name":"USB_GET_HUB_NAME","features":[385]},{"name":"USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[385]},{"name":"USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[385]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION","features":[385]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[385]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[385]},{"name":"USB_GET_NODE_CONNECTION_NAME","features":[385]},{"name":"USB_GET_NODE_INFORMATION","features":[385]},{"name":"USB_GET_PARENT_HUB_INFO","features":[385]},{"name":"USB_GET_PORT_CONNECTOR_PROPERTIES","features":[385]},{"name":"USB_GET_PORT_STATUS","features":[385]},{"name":"USB_GET_ROOTHUB_PDO","features":[385]},{"name":"USB_GET_TOPOLOGY_ADDRESS","features":[385]},{"name":"USB_GET_TRANSPORT_CHARACTERISTICS","features":[385]},{"name":"USB_GET_TT_DEVICE_HANDLE","features":[385]},{"name":"USB_HCD_DRIVERKEY_NAME","features":[385]},{"name":"USB_HC_FEATURE_FLAG_PORT_POWER_SWITCHING","features":[385]},{"name":"USB_HC_FEATURE_FLAG_SEL_SUSPEND","features":[385]},{"name":"USB_HC_FEATURE_LEGACY_BIOS","features":[385]},{"name":"USB_HC_FEATURE_TIME_SYNC_API","features":[385]},{"name":"USB_HIGH_SPEED_MAXPACKET","features":[385]},{"name":"USB_HUB_30_PORT_REMOTE_WAKE_MASK","features":[385]},{"name":"USB_HUB_CAPABILITIES","features":[385]},{"name":"USB_HUB_CAPABILITIES_EX","features":[385]},{"name":"USB_HUB_CAP_FLAGS","features":[385]},{"name":"USB_HUB_CHANGE","features":[385]},{"name":"USB_HUB_CYCLE_PORT","features":[385]},{"name":"USB_HUB_DESCRIPTOR","features":[385]},{"name":"USB_HUB_DEVICE_INFO","features":[385,303]},{"name":"USB_HUB_DEVICE_UXD_SETTINGS","features":[385]},{"name":"USB_HUB_INFORMATION","features":[385,303]},{"name":"USB_HUB_INFORMATION_EX","features":[385]},{"name":"USB_HUB_NAME","features":[385]},{"name":"USB_HUB_NODE","features":[385]},{"name":"USB_HUB_PORT_INFORMATION","features":[385]},{"name":"USB_HUB_STATUS","features":[385]},{"name":"USB_HUB_STATUS_AND_CHANGE","features":[385]},{"name":"USB_HUB_TYPE","features":[385]},{"name":"USB_HcGeneric","features":[385]},{"name":"USB_IDLE_CALLBACK","features":[385]},{"name":"USB_IDLE_CALLBACK_INFO","features":[385]},{"name":"USB_IDLE_NOTIFICATION","features":[385]},{"name":"USB_IDLE_NOTIFICATION_EX","features":[385]},{"name":"USB_ID_STRING","features":[385]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR","features":[385]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_INTERFACE_DESCRIPTOR","features":[385]},{"name":"USB_INTERFACE_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR","features":[385]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_INTERFACE_STATUS","features":[385]},{"name":"USB_MI_PARENT_INFORMATION","features":[385]},{"name":"USB_NODE_CONNECTION_ATTRIBUTES","features":[385]},{"name":"USB_NODE_CONNECTION_DRIVERKEY_NAME","features":[385]},{"name":"USB_NODE_CONNECTION_INFORMATION","features":[385,303]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX","features":[385,303]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2","features":[385]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2_FLAGS","features":[385]},{"name":"USB_NODE_CONNECTION_NAME","features":[385]},{"name":"USB_NODE_INFORMATION","features":[385,303]},{"name":"USB_NOTIFICATION","features":[385]},{"name":"USB_NOTIFICATION_TYPE","features":[385]},{"name":"USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[385]},{"name":"USB_OPEN_RAW_DEVICE_PARAMETERS","features":[385]},{"name":"USB_OTG_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_OTHER_SPEED_CONFIGURATION_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_PACKETFLAG_ASYNC_IN","features":[385]},{"name":"USB_PACKETFLAG_ASYNC_OUT","features":[385]},{"name":"USB_PACKETFLAG_FULL_SPEED","features":[385]},{"name":"USB_PACKETFLAG_HIGH_SPEED","features":[385]},{"name":"USB_PACKETFLAG_ISO_IN","features":[385]},{"name":"USB_PACKETFLAG_ISO_OUT","features":[385]},{"name":"USB_PACKETFLAG_LOW_SPEED","features":[385]},{"name":"USB_PACKETFLAG_SETUP","features":[385]},{"name":"USB_PACKETFLAG_TOGGLE0","features":[385]},{"name":"USB_PACKETFLAG_TOGGLE1","features":[385]},{"name":"USB_PASS_THRU_PARAMETERS","features":[385]},{"name":"USB_PIPE_INFO","features":[385]},{"name":"USB_PORTATTR_MINI_CONNECTOR","features":[385]},{"name":"USB_PORTATTR_NO_CONNECTOR","features":[385]},{"name":"USB_PORTATTR_NO_OVERCURRENT_UI","features":[385]},{"name":"USB_PORTATTR_OEM_CONNECTOR","features":[385]},{"name":"USB_PORTATTR_OWNED_BY_CC","features":[385]},{"name":"USB_PORTATTR_SHARED_USB2","features":[385]},{"name":"USB_PORT_CHANGE","features":[385]},{"name":"USB_PORT_CONNECTOR_PROPERTIES","features":[385]},{"name":"USB_PORT_EXT_STATUS","features":[385]},{"name":"USB_PORT_EXT_STATUS_AND_CHANGE","features":[385]},{"name":"USB_PORT_PROPERTIES","features":[385]},{"name":"USB_PORT_STATUS","features":[385]},{"name":"USB_PORT_STATUS_AND_CHANGE","features":[385]},{"name":"USB_PORT_STATUS_CONNECT","features":[385]},{"name":"USB_PORT_STATUS_ENABLE","features":[385]},{"name":"USB_PORT_STATUS_HIGH_SPEED","features":[385]},{"name":"USB_PORT_STATUS_LOW_SPEED","features":[385]},{"name":"USB_PORT_STATUS_OVER_CURRENT","features":[385]},{"name":"USB_PORT_STATUS_POWER","features":[385]},{"name":"USB_PORT_STATUS_RESET","features":[385]},{"name":"USB_PORT_STATUS_SUSPEND","features":[385]},{"name":"USB_POWER_INFO","features":[385,303]},{"name":"USB_PROTOCOLS","features":[385]},{"name":"USB_RECORD_FAILURE","features":[385]},{"name":"USB_REGISTER_COMPOSITE_DEVICE","features":[385]},{"name":"USB_REGISTER_FOR_TRANSPORT_BANDWIDTH_CHANGE","features":[385]},{"name":"USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[385]},{"name":"USB_REGISTER_FOR_TRANSPORT_LATENCY_CHANGE","features":[385]},{"name":"USB_REQUEST_CLEAR_FEATURE","features":[385]},{"name":"USB_REQUEST_CLEAR_TT_BUFFER","features":[385]},{"name":"USB_REQUEST_GET_CONFIGURATION","features":[385]},{"name":"USB_REQUEST_GET_DESCRIPTOR","features":[385]},{"name":"USB_REQUEST_GET_FIRMWARE_STATUS","features":[385]},{"name":"USB_REQUEST_GET_INTERFACE","features":[385]},{"name":"USB_REQUEST_GET_PORT_ERR_COUNT","features":[385]},{"name":"USB_REQUEST_GET_STATE","features":[385]},{"name":"USB_REQUEST_GET_STATUS","features":[385]},{"name":"USB_REQUEST_GET_TT_STATE","features":[385]},{"name":"USB_REQUEST_ISOCH_DELAY","features":[385]},{"name":"USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[385]},{"name":"USB_REQUEST_RESET_TT","features":[385]},{"name":"USB_REQUEST_SET_ADDRESS","features":[385]},{"name":"USB_REQUEST_SET_CONFIGURATION","features":[385]},{"name":"USB_REQUEST_SET_DESCRIPTOR","features":[385]},{"name":"USB_REQUEST_SET_FEATURE","features":[385]},{"name":"USB_REQUEST_SET_FIRMWARE_STATUS","features":[385]},{"name":"USB_REQUEST_SET_HUB_DEPTH","features":[385]},{"name":"USB_REQUEST_SET_INTERFACE","features":[385]},{"name":"USB_REQUEST_SET_SEL","features":[385]},{"name":"USB_REQUEST_STOP_TT","features":[385]},{"name":"USB_REQUEST_SYNC_FRAME","features":[385]},{"name":"USB_REQ_GLOBAL_RESUME","features":[385]},{"name":"USB_REQ_GLOBAL_SUSPEND","features":[385]},{"name":"USB_RESERVED_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_RESERVED_USER_BASE","features":[385]},{"name":"USB_RESET_HUB","features":[385]},{"name":"USB_RESET_PORT","features":[385]},{"name":"USB_ROOT_HUB_NAME","features":[385]},{"name":"USB_SEND_RAW_COMMAND_PARAMETERS","features":[385]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC","features":[385]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[385,303]},{"name":"USB_STATUS_EXT_PORT_STATUS","features":[385]},{"name":"USB_STATUS_PD_STATUS","features":[385]},{"name":"USB_STATUS_PORT_STATUS","features":[385]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC","features":[385]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[385,303]},{"name":"USB_STRING_DESCRIPTOR","features":[385]},{"name":"USB_STRING_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_SUBMIT_URB","features":[385]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MAX_BYTESPERINTERVAL","features":[385]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MIN_BYTESPERINTERVAL","features":[385]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR","features":[385]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR","features":[385]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[385]},{"name":"USB_SUPERSPEED_ISOCHRONOUS_MAX_MULTIPLIER","features":[385]},{"name":"USB_SUPPORT_D0_COMMAND","features":[385]},{"name":"USB_SUPPORT_D1_COMMAND","features":[385]},{"name":"USB_SUPPORT_D1_WAKEUP","features":[385]},{"name":"USB_SUPPORT_D2_COMMAND","features":[385]},{"name":"USB_SUPPORT_D2_WAKEUP","features":[385]},{"name":"USB_SUPPORT_D3_COMMAND","features":[385]},{"name":"USB_TEST_MODE_TEST_FORCE_ENABLE","features":[385]},{"name":"USB_TEST_MODE_TEST_J","features":[385]},{"name":"USB_TEST_MODE_TEST_K","features":[385]},{"name":"USB_TEST_MODE_TEST_PACKET","features":[385]},{"name":"USB_TEST_MODE_TEST_SE0_NAK","features":[385]},{"name":"USB_TOPOLOGY_ADDRESS","features":[385]},{"name":"USB_TRANSPORT_CHARACTERISTICS","features":[385]},{"name":"USB_TRANSPORT_CHARACTERISTICS_BANDWIDTH_AVAILABLE","features":[385]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_NOTIFICATION","features":[385]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_REGISTRATION","features":[385]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_UNREGISTRATION","features":[385]},{"name":"USB_TRANSPORT_CHARACTERISTICS_LATENCY_AVAILABLE","features":[385]},{"name":"USB_TRANSPORT_CHARACTERISTICS_VERSION_1","features":[385]},{"name":"USB_UNICODE_NAME","features":[385]},{"name":"USB_UNREGISTER_COMPOSITE_DEVICE","features":[385]},{"name":"USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[385]},{"name":"USB_USB2HW_VERSION_PARAMETERS","features":[385]},{"name":"USB_USER_ERROR_CODE","features":[385]},{"name":"USB_WMI_DEVICE_NODE_TYPE","features":[385]},{"name":"Usb11Device","features":[385]},{"name":"Usb20Device","features":[385]},{"name":"Usb20Hub","features":[385]},{"name":"Usb30Hub","features":[385]},{"name":"UsbController","features":[385]},{"name":"UsbDevice","features":[385]},{"name":"UsbFullSpeed","features":[385]},{"name":"UsbHighSpeed","features":[385]},{"name":"UsbHub","features":[385]},{"name":"UsbLowSpeed","features":[385]},{"name":"UsbMIParent","features":[385]},{"name":"UsbRootHub","features":[385]},{"name":"UsbSuperSpeed","features":[385]},{"name":"UsbUserBufferTooSmall","features":[385]},{"name":"UsbUserDeviceNotStarted","features":[385]},{"name":"UsbUserErrorNotMapped","features":[385]},{"name":"UsbUserFeatureDisabled","features":[385]},{"name":"UsbUserInvalidHeaderParameter","features":[385]},{"name":"UsbUserInvalidParameter","features":[385]},{"name":"UsbUserInvalidRequestCode","features":[385]},{"name":"UsbUserMiniportError","features":[385]},{"name":"UsbUserNoDeviceConnected","features":[385]},{"name":"UsbUserNotSupported","features":[385]},{"name":"UsbUserSuccess","features":[385]},{"name":"UsbdEndpointOffloadHardwareAssisted","features":[385]},{"name":"UsbdEndpointOffloadModeNotSupported","features":[385]},{"name":"UsbdEndpointOffloadSoftwareAssisted","features":[385]},{"name":"UsbdPipeTypeBulk","features":[385]},{"name":"UsbdPipeTypeControl","features":[385]},{"name":"UsbdPipeTypeInterrupt","features":[385]},{"name":"UsbdPipeTypeIsochronous","features":[385]},{"name":"UsbfnBusSpeedFull","features":[385]},{"name":"UsbfnBusSpeedHigh","features":[385]},{"name":"UsbfnBusSpeedLow","features":[385]},{"name":"UsbfnBusSpeedMaximum","features":[385]},{"name":"UsbfnBusSpeedSuper","features":[385]},{"name":"UsbfnChargingDownstreamPort","features":[385]},{"name":"UsbfnDedicatedChargingPort","features":[385]},{"name":"UsbfnDeviceStateAddressed","features":[385]},{"name":"UsbfnDeviceStateAttached","features":[385]},{"name":"UsbfnDeviceStateConfigured","features":[385]},{"name":"UsbfnDeviceStateDefault","features":[385]},{"name":"UsbfnDeviceStateDetached","features":[385]},{"name":"UsbfnDeviceStateMinimum","features":[385]},{"name":"UsbfnDeviceStateStateMaximum","features":[385]},{"name":"UsbfnDeviceStateSuspended","features":[385]},{"name":"UsbfnDirectionIn","features":[385]},{"name":"UsbfnDirectionMaximum","features":[385]},{"name":"UsbfnDirectionMinimum","features":[385]},{"name":"UsbfnDirectionOut","features":[385]},{"name":"UsbfnDirectionRx","features":[385]},{"name":"UsbfnDirectionTx","features":[385]},{"name":"UsbfnEventAttach","features":[385]},{"name":"UsbfnEventBusTearDown","features":[385]},{"name":"UsbfnEventConfigured","features":[385]},{"name":"UsbfnEventDetach","features":[385]},{"name":"UsbfnEventMaximum","features":[385]},{"name":"UsbfnEventMinimum","features":[385]},{"name":"UsbfnEventPortType","features":[385]},{"name":"UsbfnEventReset","features":[385]},{"name":"UsbfnEventResume","features":[385]},{"name":"UsbfnEventSetInterface","features":[385]},{"name":"UsbfnEventSetupPacket","features":[385]},{"name":"UsbfnEventSuspend","features":[385]},{"name":"UsbfnEventUnConfigured","features":[385]},{"name":"UsbfnInvalidDedicatedChargingPort","features":[385]},{"name":"UsbfnPortTypeMaximum","features":[385]},{"name":"UsbfnProprietaryDedicatedChargingPort","features":[385]},{"name":"UsbfnStandardDownstreamPort","features":[385]},{"name":"UsbfnUnknownPort","features":[385]},{"name":"WDMUSB_POWER_STATE","features":[385]},{"name":"WINUSB_INTERFACE_HANDLE","features":[385]},{"name":"WINUSB_PIPE_INFORMATION","features":[385]},{"name":"WINUSB_PIPE_INFORMATION_EX","features":[385]},{"name":"WINUSB_PIPE_POLICY","features":[385]},{"name":"WINUSB_POWER_POLICY","features":[385]},{"name":"WINUSB_SETUP_PACKET","features":[385]},{"name":"WMI_USB_DEVICE_NODE_INFORMATION","features":[385]},{"name":"WMI_USB_DRIVER_INFORMATION","features":[385]},{"name":"WMI_USB_DRIVER_NOTIFICATION","features":[385]},{"name":"WMI_USB_HUB_NODE_INFORMATION","features":[385]},{"name":"WMI_USB_PERFORMANCE_INFORMATION","features":[385]},{"name":"WMI_USB_POWER_DEVICE_ENABLE","features":[385]},{"name":"WRITE_DATA_PIPE","features":[385]},{"name":"WdmUsbPowerDeviceD0","features":[385]},{"name":"WdmUsbPowerDeviceD1","features":[385]},{"name":"WdmUsbPowerDeviceD2","features":[385]},{"name":"WdmUsbPowerDeviceD3","features":[385]},{"name":"WdmUsbPowerDeviceUnspecified","features":[385]},{"name":"WdmUsbPowerNotMapped","features":[385]},{"name":"WdmUsbPowerSystemHibernate","features":[385]},{"name":"WdmUsbPowerSystemShutdown","features":[385]},{"name":"WdmUsbPowerSystemSleeping1","features":[385]},{"name":"WdmUsbPowerSystemSleeping2","features":[385]},{"name":"WdmUsbPowerSystemSleeping3","features":[385]},{"name":"WdmUsbPowerSystemUnspecified","features":[385]},{"name":"WdmUsbPowerSystemWorking","features":[385]},{"name":"WinUSB_TestGuid","features":[385]},{"name":"WinUsb_AbortPipe","features":[385,303]},{"name":"WinUsb_ControlTransfer","features":[385,303,308]},{"name":"WinUsb_FlushPipe","features":[385,303]},{"name":"WinUsb_Free","features":[385,303]},{"name":"WinUsb_GetAdjustedFrameNumber","features":[385,303]},{"name":"WinUsb_GetAssociatedInterface","features":[385,303]},{"name":"WinUsb_GetCurrentAlternateSetting","features":[385,303]},{"name":"WinUsb_GetCurrentFrameNumber","features":[385,303]},{"name":"WinUsb_GetCurrentFrameNumberAndQpc","features":[385,303]},{"name":"WinUsb_GetDescriptor","features":[385,303]},{"name":"WinUsb_GetOverlappedResult","features":[385,303,308]},{"name":"WinUsb_GetPipePolicy","features":[385,303]},{"name":"WinUsb_GetPowerPolicy","features":[385,303]},{"name":"WinUsb_Initialize","features":[385,303]},{"name":"WinUsb_ParseConfigurationDescriptor","features":[385]},{"name":"WinUsb_ParseDescriptors","features":[385]},{"name":"WinUsb_QueryDeviceInformation","features":[385,303]},{"name":"WinUsb_QueryInterfaceSettings","features":[385,303]},{"name":"WinUsb_QueryPipe","features":[385,303]},{"name":"WinUsb_QueryPipeEx","features":[385,303]},{"name":"WinUsb_ReadIsochPipe","features":[385,303,308]},{"name":"WinUsb_ReadIsochPipeAsap","features":[385,303,308]},{"name":"WinUsb_ReadPipe","features":[385,303,308]},{"name":"WinUsb_RegisterIsochBuffer","features":[385,303]},{"name":"WinUsb_ResetPipe","features":[385,303]},{"name":"WinUsb_SetCurrentAlternateSetting","features":[385,303]},{"name":"WinUsb_SetPipePolicy","features":[385,303]},{"name":"WinUsb_SetPowerPolicy","features":[385,303]},{"name":"WinUsb_StartTrackingForTimeSync","features":[385,303]},{"name":"WinUsb_StopTrackingForTimeSync","features":[385,303]},{"name":"WinUsb_UnregisterIsochBuffer","features":[385,303]},{"name":"WinUsb_WriteIsochPipe","features":[385,303,308]},{"name":"WinUsb_WriteIsochPipeAsap","features":[385,303,308]},{"name":"WinUsb_WritePipe","features":[385,303,308]},{"name":"_URB_BULK_OR_INTERRUPT_TRANSFER","features":[385]},{"name":"_URB_CONTROL_DESCRIPTOR_REQUEST","features":[385]},{"name":"_URB_CONTROL_FEATURE_REQUEST","features":[385]},{"name":"_URB_CONTROL_GET_CONFIGURATION_REQUEST","features":[385]},{"name":"_URB_CONTROL_GET_INTERFACE_REQUEST","features":[385]},{"name":"_URB_CONTROL_GET_STATUS_REQUEST","features":[385]},{"name":"_URB_CONTROL_TRANSFER","features":[385]},{"name":"_URB_CONTROL_TRANSFER_EX","features":[385]},{"name":"_URB_CONTROL_VENDOR_OR_CLASS_REQUEST","features":[385]},{"name":"_URB_FRAME_LENGTH_CONTROL","features":[385]},{"name":"_URB_GET_CURRENT_FRAME_NUMBER","features":[385]},{"name":"_URB_GET_FRAME_LENGTH","features":[385]},{"name":"_URB_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[385]},{"name":"_URB_HCD_AREA","features":[385]},{"name":"_URB_HEADER","features":[385]},{"name":"_URB_ISOCH_TRANSFER","features":[385]},{"name":"_URB_OPEN_STATIC_STREAMS","features":[385]},{"name":"_URB_OS_FEATURE_DESCRIPTOR_REQUEST","features":[385]},{"name":"_URB_PIPE_REQUEST","features":[385]},{"name":"_URB_SELECT_CONFIGURATION","features":[385]},{"name":"_URB_SELECT_INTERFACE","features":[385]},{"name":"_URB_SET_FRAME_LENGTH","features":[385]}],"388":[{"name":"DeviceDiscoveryMechanism","features":[386]},{"name":"DirectedDiscovery","features":[386]},{"name":"IWSDAddress","features":[386]},{"name":"IWSDAsyncCallback","features":[386]},{"name":"IWSDAsyncResult","features":[386]},{"name":"IWSDAttachment","features":[386]},{"name":"IWSDDeviceHost","features":[386]},{"name":"IWSDDeviceHostNotify","features":[386]},{"name":"IWSDDeviceProxy","features":[386]},{"name":"IWSDEndpointProxy","features":[386]},{"name":"IWSDEventingStatus","features":[386]},{"name":"IWSDHttpAddress","features":[386]},{"name":"IWSDHttpAuthParameters","features":[386]},{"name":"IWSDHttpMessageParameters","features":[386]},{"name":"IWSDInboundAttachment","features":[386]},{"name":"IWSDMessageParameters","features":[386]},{"name":"IWSDMetadataExchange","features":[386]},{"name":"IWSDOutboundAttachment","features":[386]},{"name":"IWSDSSLClientCertificate","features":[386]},{"name":"IWSDScopeMatchingRule","features":[386]},{"name":"IWSDServiceMessaging","features":[386]},{"name":"IWSDServiceProxy","features":[386]},{"name":"IWSDServiceProxyEventing","features":[386]},{"name":"IWSDSignatureProperty","features":[386]},{"name":"IWSDTransportAddress","features":[386]},{"name":"IWSDUdpAddress","features":[386]},{"name":"IWSDUdpMessageParameters","features":[386]},{"name":"IWSDXMLContext","features":[386]},{"name":"IWSDiscoveredService","features":[386]},{"name":"IWSDiscoveryProvider","features":[386]},{"name":"IWSDiscoveryProviderNotify","features":[386]},{"name":"IWSDiscoveryPublisher","features":[386]},{"name":"IWSDiscoveryPublisherNotify","features":[386]},{"name":"MulticastDiscovery","features":[386]},{"name":"ONE_WAY","features":[386]},{"name":"OpAnyElement","features":[386]},{"name":"OpAnyElements","features":[386]},{"name":"OpAnyNumber","features":[386]},{"name":"OpAnyText","features":[386]},{"name":"OpAnything","features":[386]},{"name":"OpAttribute_","features":[386]},{"name":"OpBeginAll","features":[386]},{"name":"OpBeginAnyElement","features":[386]},{"name":"OpBeginChoice","features":[386]},{"name":"OpBeginElement_","features":[386]},{"name":"OpBeginSequence","features":[386]},{"name":"OpElement_","features":[386]},{"name":"OpEndAll","features":[386]},{"name":"OpEndChoice","features":[386]},{"name":"OpEndElement","features":[386]},{"name":"OpEndOfTable","features":[386]},{"name":"OpEndSequence","features":[386]},{"name":"OpFormatBool_","features":[386]},{"name":"OpFormatDateTime_","features":[386]},{"name":"OpFormatDom_","features":[386]},{"name":"OpFormatDouble_","features":[386]},{"name":"OpFormatDuration_","features":[386]},{"name":"OpFormatDynamicType_","features":[386]},{"name":"OpFormatFloat_","features":[386]},{"name":"OpFormatInt16_","features":[386]},{"name":"OpFormatInt32_","features":[386]},{"name":"OpFormatInt64_","features":[386]},{"name":"OpFormatInt8_","features":[386]},{"name":"OpFormatListInsertTail_","features":[386]},{"name":"OpFormatLookupType_","features":[386]},{"name":"OpFormatMax","features":[386]},{"name":"OpFormatName_","features":[386]},{"name":"OpFormatStruct_","features":[386]},{"name":"OpFormatType_","features":[386]},{"name":"OpFormatUInt16_","features":[386]},{"name":"OpFormatUInt32_","features":[386]},{"name":"OpFormatUInt64_","features":[386]},{"name":"OpFormatUInt8_","features":[386]},{"name":"OpFormatUnicodeString_","features":[386]},{"name":"OpFormatUri_","features":[386]},{"name":"OpFormatUuidUri_","features":[386]},{"name":"OpFormatXMLDeclaration_","features":[386]},{"name":"OpNone","features":[386]},{"name":"OpOneOrMore","features":[386]},{"name":"OpOptional","features":[386]},{"name":"OpProcess_","features":[386]},{"name":"OpQualifiedAttribute_","features":[386]},{"name":"PWSD_SOAP_MESSAGE_HANDLER","features":[386]},{"name":"REQUESTBODY_GetStatus","features":[386]},{"name":"REQUESTBODY_Renew","features":[386,303]},{"name":"REQUESTBODY_Subscribe","features":[386,303]},{"name":"REQUESTBODY_Unsubscribe","features":[386]},{"name":"RESPONSEBODY_GetMetadata","features":[386]},{"name":"RESPONSEBODY_GetStatus","features":[386,303]},{"name":"RESPONSEBODY_Renew","features":[386,303]},{"name":"RESPONSEBODY_Subscribe","features":[386,303]},{"name":"RESPONSEBODY_SubscriptionEnd","features":[386]},{"name":"SecureDirectedDiscovery","features":[386]},{"name":"TWO_WAY","features":[386]},{"name":"WSDAPI_ADDRESSFAMILY_IPV4","features":[386]},{"name":"WSDAPI_ADDRESSFAMILY_IPV6","features":[386]},{"name":"WSDAPI_COMPACTSIG_ACCEPT_ALL_MESSAGES","features":[386]},{"name":"WSDAPI_OPTION_MAX_INBOUND_MESSAGE_SIZE","features":[386]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_DEBUGGER","features":[386]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_FILE","features":[386]},{"name":"WSDAPI_SSL_CERT_APPLY_DEFAULT_CHECKS","features":[386]},{"name":"WSDAPI_SSL_CERT_IGNORE_EXPIRY","features":[386]},{"name":"WSDAPI_SSL_CERT_IGNORE_INVALID_CN","features":[386]},{"name":"WSDAPI_SSL_CERT_IGNORE_REVOCATION","features":[386]},{"name":"WSDAPI_SSL_CERT_IGNORE_UNKNOWN_CA","features":[386]},{"name":"WSDAPI_SSL_CERT_IGNORE_WRONG_USAGE","features":[386]},{"name":"WSDAllocateLinkedMemory","features":[386]},{"name":"WSDAttachLinkedMemory","features":[386]},{"name":"WSDCreateDeviceHost","features":[386]},{"name":"WSDCreateDeviceHost2","features":[386]},{"name":"WSDCreateDeviceHostAdvanced","features":[386]},{"name":"WSDCreateDeviceProxy","features":[386]},{"name":"WSDCreateDeviceProxy2","features":[386]},{"name":"WSDCreateDeviceProxyAdvanced","features":[386]},{"name":"WSDCreateDiscoveryProvider","features":[386]},{"name":"WSDCreateDiscoveryProvider2","features":[386]},{"name":"WSDCreateDiscoveryPublisher","features":[386]},{"name":"WSDCreateDiscoveryPublisher2","features":[386]},{"name":"WSDCreateHttpAddress","features":[386]},{"name":"WSDCreateHttpMessageParameters","features":[386]},{"name":"WSDCreateOutboundAttachment","features":[386]},{"name":"WSDCreateUdpAddress","features":[386]},{"name":"WSDCreateUdpMessageParameters","features":[386]},{"name":"WSDDetachLinkedMemory","features":[386]},{"name":"WSDET_INCOMING_FAULT","features":[386]},{"name":"WSDET_INCOMING_MESSAGE","features":[386]},{"name":"WSDET_NONE","features":[386]},{"name":"WSDET_RESPONSE_TIMEOUT","features":[386]},{"name":"WSDET_TRANSMISSION_FAILURE","features":[386]},{"name":"WSDEventType","features":[386]},{"name":"WSDFreeLinkedMemory","features":[386]},{"name":"WSDGenerateFault","features":[386]},{"name":"WSDGenerateFaultEx","features":[386]},{"name":"WSDGetConfigurationOption","features":[386]},{"name":"WSDSetConfigurationOption","features":[386]},{"name":"WSDUdpMessageType","features":[386]},{"name":"WSDUdpRetransmitParams","features":[386]},{"name":"WSDUriDecode","features":[386]},{"name":"WSDUriEncode","features":[386]},{"name":"WSDXMLAddChild","features":[386]},{"name":"WSDXMLAddSibling","features":[386]},{"name":"WSDXMLBuildAnyForSingleElement","features":[386]},{"name":"WSDXMLCleanupElement","features":[386]},{"name":"WSDXMLCreateContext","features":[386]},{"name":"WSDXMLGetNameFromBuiltinNamespace","features":[386]},{"name":"WSDXMLGetValueFromAny","features":[386]},{"name":"WSDXML_ATTRIBUTE","features":[386]},{"name":"WSDXML_ELEMENT","features":[386]},{"name":"WSDXML_ELEMENT_LIST","features":[386]},{"name":"WSDXML_NAME","features":[386]},{"name":"WSDXML_NAMESPACE","features":[386]},{"name":"WSDXML_NODE","features":[386]},{"name":"WSDXML_OP","features":[386]},{"name":"WSDXML_PREFIX_MAPPING","features":[386]},{"name":"WSDXML_TEXT","features":[386]},{"name":"WSDXML_TYPE","features":[386]},{"name":"WSD_APP_SEQUENCE","features":[386]},{"name":"WSD_BYE","features":[386]},{"name":"WSD_CONFIG_ADDRESSES","features":[386]},{"name":"WSD_CONFIG_DEVICE_ADDRESSES","features":[386]},{"name":"WSD_CONFIG_HOSTING_ADDRESSES","features":[386]},{"name":"WSD_CONFIG_MAX_INBOUND_MESSAGE_SIZE","features":[386]},{"name":"WSD_CONFIG_MAX_OUTBOUND_MESSAGE_SIZE","features":[386]},{"name":"WSD_CONFIG_PARAM","features":[386]},{"name":"WSD_CONFIG_PARAM_TYPE","features":[386]},{"name":"WSD_DATETIME","features":[386,303]},{"name":"WSD_DEFAULT_EVENTING_ADDRESS","features":[386]},{"name":"WSD_DEFAULT_HOSTING_ADDRESS","features":[386]},{"name":"WSD_DEFAULT_SECURE_HOSTING_ADDRESS","features":[386]},{"name":"WSD_DURATION","features":[386,303]},{"name":"WSD_ENDPOINT_REFERENCE","features":[386]},{"name":"WSD_ENDPOINT_REFERENCE_LIST","features":[386]},{"name":"WSD_EVENT","features":[386]},{"name":"WSD_EVENTING_DELIVERY_MODE","features":[386]},{"name":"WSD_EVENTING_DELIVERY_MODE_PUSH","features":[386]},{"name":"WSD_EVENTING_EXPIRES","features":[386,303]},{"name":"WSD_EVENTING_FILTER","features":[386]},{"name":"WSD_EVENTING_FILTER_ACTION","features":[386]},{"name":"WSD_HANDLER_CONTEXT","features":[386]},{"name":"WSD_HEADER_RELATESTO","features":[386]},{"name":"WSD_HELLO","features":[386]},{"name":"WSD_HOST_METADATA","features":[386]},{"name":"WSD_LOCALIZED_STRING","features":[386]},{"name":"WSD_LOCALIZED_STRING_LIST","features":[386]},{"name":"WSD_METADATA_SECTION","features":[386]},{"name":"WSD_METADATA_SECTION_LIST","features":[386]},{"name":"WSD_NAME_LIST","features":[386]},{"name":"WSD_OPERATION","features":[386]},{"name":"WSD_PORT_TYPE","features":[386]},{"name":"WSD_PROBE","features":[386]},{"name":"WSD_PROBE_MATCH","features":[386]},{"name":"WSD_PROBE_MATCHES","features":[386]},{"name":"WSD_PROBE_MATCH_LIST","features":[386]},{"name":"WSD_PROTOCOL_TYPE","features":[386]},{"name":"WSD_PT_ALL","features":[386]},{"name":"WSD_PT_HTTP","features":[386]},{"name":"WSD_PT_HTTPS","features":[386]},{"name":"WSD_PT_NONE","features":[386]},{"name":"WSD_PT_UDP","features":[386]},{"name":"WSD_REFERENCE_PARAMETERS","features":[386]},{"name":"WSD_REFERENCE_PROPERTIES","features":[386]},{"name":"WSD_RELATIONSHIP_METADATA","features":[386]},{"name":"WSD_RESOLVE","features":[386]},{"name":"WSD_RESOLVE_MATCH","features":[386]},{"name":"WSD_RESOLVE_MATCHES","features":[386]},{"name":"WSD_SCOPES","features":[386]},{"name":"WSD_SECURITY_CERT_VALIDATION","features":[386,303,387]},{"name":"WSD_SECURITY_CERT_VALIDATION_V1","features":[386,303,387]},{"name":"WSD_SECURITY_COMPACTSIG_SIGNING_CERT","features":[386]},{"name":"WSD_SECURITY_COMPACTSIG_VALIDATION","features":[386]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NEGOTIATE","features":[386]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NTLM","features":[386]},{"name":"WSD_SECURITY_REQUIRE_CLIENT_CERT_OR_HTTP_CLIENT_AUTH","features":[386]},{"name":"WSD_SECURITY_REQUIRE_HTTP_CLIENT_AUTH","features":[386]},{"name":"WSD_SECURITY_SIGNATURE_VALIDATION","features":[386,303,387]},{"name":"WSD_SECURITY_SSL_CERT_FOR_CLIENT_AUTH","features":[386]},{"name":"WSD_SECURITY_SSL_CLIENT_CERT_VALIDATION","features":[386]},{"name":"WSD_SECURITY_SSL_NEGOTIATE_CLIENT_CERT","features":[386]},{"name":"WSD_SECURITY_SSL_SERVER_CERT_VALIDATION","features":[386]},{"name":"WSD_SECURITY_USE_HTTP_CLIENT_AUTH","features":[386]},{"name":"WSD_SERVICE_METADATA","features":[386]},{"name":"WSD_SERVICE_METADATA_LIST","features":[386]},{"name":"WSD_SOAP_FAULT","features":[386]},{"name":"WSD_SOAP_FAULT_CODE","features":[386]},{"name":"WSD_SOAP_FAULT_REASON","features":[386]},{"name":"WSD_SOAP_FAULT_SUBCODE","features":[386]},{"name":"WSD_SOAP_HEADER","features":[386]},{"name":"WSD_SOAP_MESSAGE","features":[386]},{"name":"WSD_STUB_FUNCTION","features":[386]},{"name":"WSD_SYNCHRONOUS_RESPONSE_CONTEXT","features":[386,303]},{"name":"WSD_THIS_DEVICE_METADATA","features":[386]},{"name":"WSD_THIS_MODEL_METADATA","features":[386]},{"name":"WSD_UNKNOWN_LOOKUP","features":[386]},{"name":"WSD_URI_LIST","features":[386]}],"389":[{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID","features":[303]},{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED","features":[303]},{"name":"APPMODEL_ERROR_NO_APPLICATION","features":[303]},{"name":"APPMODEL_ERROR_NO_MUTABLE_DIRECTORY","features":[303]},{"name":"APPMODEL_ERROR_NO_PACKAGE","features":[303]},{"name":"APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT","features":[303]},{"name":"APPMODEL_ERROR_PACKAGE_NOT_AVAILABLE","features":[303]},{"name":"APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT","features":[303]},{"name":"APPX_E_BLOCK_HASH_INVALID","features":[303]},{"name":"APPX_E_CORRUPT_CONTENT","features":[303]},{"name":"APPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED","features":[303]},{"name":"APPX_E_DELTA_BASELINE_VERSION_MISMATCH","features":[303]},{"name":"APPX_E_DELTA_PACKAGE_MISSING_FILE","features":[303]},{"name":"APPX_E_DIGEST_MISMATCH","features":[303]},{"name":"APPX_E_FILE_COMPRESSION_MISMATCH","features":[303]},{"name":"APPX_E_INTERLEAVING_NOT_ALLOWED","features":[303]},{"name":"APPX_E_INVALID_APPINSTALLER","features":[303]},{"name":"APPX_E_INVALID_BLOCKMAP","features":[303]},{"name":"APPX_E_INVALID_CONTENTGROUPMAP","features":[303]},{"name":"APPX_E_INVALID_DELTA_PACKAGE","features":[303]},{"name":"APPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST","features":[303]},{"name":"APPX_E_INVALID_KEY_INFO","features":[303]},{"name":"APPX_E_INVALID_MANIFEST","features":[303]},{"name":"APPX_E_INVALID_PACKAGESIGNCONFIG","features":[303]},{"name":"APPX_E_INVALID_PACKAGE_FOLDER_ACLS","features":[303]},{"name":"APPX_E_INVALID_PACKAGING_LAYOUT","features":[303]},{"name":"APPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION","features":[303]},{"name":"APPX_E_INVALID_PUBLISHER_BRIDGING","features":[303]},{"name":"APPX_E_INVALID_SIP_CLIENT_DATA","features":[303]},{"name":"APPX_E_MISSING_REQUIRED_FILE","features":[303]},{"name":"APPX_E_PACKAGING_INTERNAL","features":[303]},{"name":"APPX_E_RELATIONSHIPS_NOT_ALLOWED","features":[303]},{"name":"APPX_E_REQUESTED_RANGE_TOO_LARGE","features":[303]},{"name":"APPX_E_RESOURCESPRI_NOT_ALLOWED","features":[303]},{"name":"APP_LOCAL_DEVICE_ID","features":[303]},{"name":"APP_LOCAL_DEVICE_ID_SIZE","features":[303]},{"name":"BOOL","features":[303]},{"name":"BOOLEAN","features":[303]},{"name":"BSTR","features":[303]},{"name":"BT_E_SPURIOUS_ACTIVATION","features":[303]},{"name":"CACHE_E_FIRST","features":[303]},{"name":"CACHE_E_LAST","features":[303]},{"name":"CACHE_E_NOCACHE_UPDATED","features":[303]},{"name":"CACHE_S_FIRST","features":[303]},{"name":"CACHE_S_FORMATETC_NOTSUPPORTED","features":[303]},{"name":"CACHE_S_LAST","features":[303]},{"name":"CACHE_S_SAMECACHE","features":[303]},{"name":"CACHE_S_SOMECACHES_NOTUPDATED","features":[303]},{"name":"CAT_E_CATIDNOEXIST","features":[303]},{"name":"CAT_E_FIRST","features":[303]},{"name":"CAT_E_LAST","features":[303]},{"name":"CAT_E_NODESCRIPTION","features":[303]},{"name":"CERTSRV_E_ADMIN_DENIED_REQUEST","features":[303]},{"name":"CERTSRV_E_ALIGNMENT_FAULT","features":[303]},{"name":"CERTSRV_E_ARCHIVED_KEY_REQUIRED","features":[303]},{"name":"CERTSRV_E_ARCHIVED_KEY_UNEXPECTED","features":[303]},{"name":"CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE","features":[303]},{"name":"CERTSRV_E_BAD_RENEWAL_SUBJECT","features":[303]},{"name":"CERTSRV_E_BAD_REQUESTSTATUS","features":[303]},{"name":"CERTSRV_E_BAD_REQUESTSUBJECT","features":[303]},{"name":"CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL","features":[303]},{"name":"CERTSRV_E_BAD_TEMPLATE_VERSION","features":[303]},{"name":"CERTSRV_E_CERT_TYPE_OVERLAP","features":[303]},{"name":"CERTSRV_E_CORRUPT_KEY_ATTESTATION","features":[303]},{"name":"CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE","features":[303]},{"name":"CERTSRV_E_ENCODING_LENGTH","features":[303]},{"name":"CERTSRV_E_ENCRYPTION_CERT_REQUIRED","features":[303]},{"name":"CERTSRV_E_ENROLL_DENIED","features":[303]},{"name":"CERTSRV_E_EXPIRED_CHALLENGE","features":[303]},{"name":"CERTSRV_E_INVALID_ATTESTATION","features":[303]},{"name":"CERTSRV_E_INVALID_CA_CERTIFICATE","features":[303]},{"name":"CERTSRV_E_INVALID_EK","features":[303]},{"name":"CERTSRV_E_INVALID_IDBINDING","features":[303]},{"name":"CERTSRV_E_INVALID_REQUESTID","features":[303]},{"name":"CERTSRV_E_INVALID_RESPONSE","features":[303]},{"name":"CERTSRV_E_ISSUANCE_POLICY_REQUIRED","features":[303]},{"name":"CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED","features":[303]},{"name":"CERTSRV_E_KEY_ATTESTATION","features":[303]},{"name":"CERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED","features":[303]},{"name":"CERTSRV_E_KEY_LENGTH","features":[303]},{"name":"CERTSRV_E_NO_CAADMIN_DEFINED","features":[303]},{"name":"CERTSRV_E_NO_CERT_TYPE","features":[303]},{"name":"CERTSRV_E_NO_DB_SESSIONS","features":[303]},{"name":"CERTSRV_E_NO_POLICY_SERVER","features":[303]},{"name":"CERTSRV_E_NO_REQUEST","features":[303]},{"name":"CERTSRV_E_NO_VALID_KRA","features":[303]},{"name":"CERTSRV_E_PENDING_CLIENT_RESPONSE","features":[303]},{"name":"CERTSRV_E_PROPERTY_EMPTY","features":[303]},{"name":"CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY","features":[303]},{"name":"CERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH","features":[303]},{"name":"CERTSRV_E_RESTRICTEDOFFICER","features":[303]},{"name":"CERTSRV_E_ROLECONFLICT","features":[303]},{"name":"CERTSRV_E_SEC_EXT_DIRECTORY_SID_REQUIRED","features":[303]},{"name":"CERTSRV_E_SERVER_SUSPENDED","features":[303]},{"name":"CERTSRV_E_SIGNATURE_COUNT","features":[303]},{"name":"CERTSRV_E_SIGNATURE_POLICY_REQUIRED","features":[303]},{"name":"CERTSRV_E_SIGNATURE_REJECTED","features":[303]},{"name":"CERTSRV_E_SMIME_REQUIRED","features":[303]},{"name":"CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED","features":[303]},{"name":"CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED","features":[303]},{"name":"CERTSRV_E_SUBJECT_DNS_REQUIRED","features":[303]},{"name":"CERTSRV_E_SUBJECT_EMAIL_REQUIRED","features":[303]},{"name":"CERTSRV_E_SUBJECT_UPN_REQUIRED","features":[303]},{"name":"CERTSRV_E_TEMPLATE_CONFLICT","features":[303]},{"name":"CERTSRV_E_TEMPLATE_DENIED","features":[303]},{"name":"CERTSRV_E_TEMPLATE_POLICY_REQUIRED","features":[303]},{"name":"CERTSRV_E_TOO_MANY_SIGNATURES","features":[303]},{"name":"CERTSRV_E_UNKNOWN_CERT_TYPE","features":[303]},{"name":"CERTSRV_E_UNSUPPORTED_CERT_TYPE","features":[303]},{"name":"CERTSRV_E_WEAK_SIGNATURE_OR_KEY","features":[303]},{"name":"CERT_E_CHAINING","features":[303]},{"name":"CERT_E_CN_NO_MATCH","features":[303]},{"name":"CERT_E_CRITICAL","features":[303]},{"name":"CERT_E_EXPIRED","features":[303]},{"name":"CERT_E_INVALID_NAME","features":[303]},{"name":"CERT_E_INVALID_POLICY","features":[303]},{"name":"CERT_E_ISSUERCHAINING","features":[303]},{"name":"CERT_E_MALFORMED","features":[303]},{"name":"CERT_E_PATHLENCONST","features":[303]},{"name":"CERT_E_PURPOSE","features":[303]},{"name":"CERT_E_REVOCATION_FAILURE","features":[303]},{"name":"CERT_E_REVOKED","features":[303]},{"name":"CERT_E_ROLE","features":[303]},{"name":"CERT_E_UNTRUSTEDCA","features":[303]},{"name":"CERT_E_UNTRUSTEDROOT","features":[303]},{"name":"CERT_E_UNTRUSTEDTESTROOT","features":[303]},{"name":"CERT_E_VALIDITYPERIODNESTING","features":[303]},{"name":"CERT_E_WRONG_USAGE","features":[303]},{"name":"CHAR","features":[303]},{"name":"CI_CORRUPT_CATALOG","features":[303]},{"name":"CI_CORRUPT_DATABASE","features":[303]},{"name":"CI_CORRUPT_FILTER_BUFFER","features":[303]},{"name":"CI_E_ALREADY_INITIALIZED","features":[303]},{"name":"CI_E_BUFFERTOOSMALL","features":[303]},{"name":"CI_E_CARDINALITY_MISMATCH","features":[303]},{"name":"CI_E_CLIENT_FILTER_ABORT","features":[303]},{"name":"CI_E_CONFIG_DISK_FULL","features":[303]},{"name":"CI_E_DISK_FULL","features":[303]},{"name":"CI_E_DISTRIBUTED_GROUPBY_UNSUPPORTED","features":[303]},{"name":"CI_E_DUPLICATE_NOTIFICATION","features":[303]},{"name":"CI_E_ENUMERATION_STARTED","features":[303]},{"name":"CI_E_FILTERING_DISABLED","features":[303]},{"name":"CI_E_INVALID_FLAGS_COMBINATION","features":[303]},{"name":"CI_E_INVALID_STATE","features":[303]},{"name":"CI_E_LOGON_FAILURE","features":[303]},{"name":"CI_E_NOT_FOUND","features":[303]},{"name":"CI_E_NOT_INITIALIZED","features":[303]},{"name":"CI_E_NOT_RUNNING","features":[303]},{"name":"CI_E_NO_CATALOG","features":[303]},{"name":"CI_E_OUTOFSEQ_INCREMENT_DATA","features":[303]},{"name":"CI_E_PROPERTY_NOT_CACHED","features":[303]},{"name":"CI_E_PROPERTY_TOOLARGE","features":[303]},{"name":"CI_E_SHARING_VIOLATION","features":[303]},{"name":"CI_E_SHUTDOWN","features":[303]},{"name":"CI_E_STRANGE_PAGEORSECTOR_SIZE","features":[303]},{"name":"CI_E_TIMEOUT","features":[303]},{"name":"CI_E_UPDATES_DISABLED","features":[303]},{"name":"CI_E_USE_DEFAULT_PID","features":[303]},{"name":"CI_E_WORKID_NOTVALID","features":[303]},{"name":"CI_INCORRECT_VERSION","features":[303]},{"name":"CI_INVALID_INDEX","features":[303]},{"name":"CI_INVALID_PARTITION","features":[303]},{"name":"CI_INVALID_PRIORITY","features":[303]},{"name":"CI_NO_CATALOG","features":[303]},{"name":"CI_NO_STARTING_KEY","features":[303]},{"name":"CI_OUT_OF_INDEX_IDS","features":[303]},{"name":"CI_PROPSTORE_INCONSISTENCY","features":[303]},{"name":"CI_S_CAT_STOPPED","features":[303]},{"name":"CI_S_END_OF_ENUMERATION","features":[303]},{"name":"CI_S_NO_DOCSTORE","features":[303]},{"name":"CI_S_WORKID_DELETED","features":[303]},{"name":"CLASSFACTORY_E_FIRST","features":[303]},{"name":"CLASSFACTORY_E_LAST","features":[303]},{"name":"CLASSFACTORY_S_FIRST","features":[303]},{"name":"CLASSFACTORY_S_LAST","features":[303]},{"name":"CLASS_E_CLASSNOTAVAILABLE","features":[303]},{"name":"CLASS_E_NOAGGREGATION","features":[303]},{"name":"CLASS_E_NOTLICENSED","features":[303]},{"name":"CLIENTSITE_E_FIRST","features":[303]},{"name":"CLIENTSITE_E_LAST","features":[303]},{"name":"CLIENTSITE_S_FIRST","features":[303]},{"name":"CLIENTSITE_S_LAST","features":[303]},{"name":"CLIPBRD_E_BAD_DATA","features":[303]},{"name":"CLIPBRD_E_CANT_CLOSE","features":[303]},{"name":"CLIPBRD_E_CANT_EMPTY","features":[303]},{"name":"CLIPBRD_E_CANT_OPEN","features":[303]},{"name":"CLIPBRD_E_CANT_SET","features":[303]},{"name":"CLIPBRD_E_FIRST","features":[303]},{"name":"CLIPBRD_E_LAST","features":[303]},{"name":"CLIPBRD_S_FIRST","features":[303]},{"name":"CLIPBRD_S_LAST","features":[303]},{"name":"COLORREF","features":[303]},{"name":"COMADMIN_E_ALREADYINSTALLED","features":[303]},{"name":"COMADMIN_E_AMBIGUOUS_APPLICATION_NAME","features":[303]},{"name":"COMADMIN_E_AMBIGUOUS_PARTITION_NAME","features":[303]},{"name":"COMADMIN_E_APPDIRNOTFOUND","features":[303]},{"name":"COMADMIN_E_APPLICATIONEXISTS","features":[303]},{"name":"COMADMIN_E_APPLID_MATCHES_CLSID","features":[303]},{"name":"COMADMIN_E_APP_FILE_READFAIL","features":[303]},{"name":"COMADMIN_E_APP_FILE_VERSION","features":[303]},{"name":"COMADMIN_E_APP_FILE_WRITEFAIL","features":[303]},{"name":"COMADMIN_E_APP_NOT_RUNNING","features":[303]},{"name":"COMADMIN_E_AUTHENTICATIONLEVEL","features":[303]},{"name":"COMADMIN_E_BADPATH","features":[303]},{"name":"COMADMIN_E_BADREGISTRYLIBID","features":[303]},{"name":"COMADMIN_E_BADREGISTRYPROGID","features":[303]},{"name":"COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET","features":[303]},{"name":"COMADMIN_E_BASE_PARTITION_ONLY","features":[303]},{"name":"COMADMIN_E_CANNOT_ALIAS_EVENTCLASS","features":[303]},{"name":"COMADMIN_E_CANTCOPYFILE","features":[303]},{"name":"COMADMIN_E_CANTMAKEINPROCSERVICE","features":[303]},{"name":"COMADMIN_E_CANTRECYCLELIBRARYAPPS","features":[303]},{"name":"COMADMIN_E_CANTRECYCLESERVICEAPPS","features":[303]},{"name":"COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT","features":[303]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY","features":[303]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_SYS_APP","features":[303]},{"name":"COMADMIN_E_CAN_NOT_START_APP","features":[303]},{"name":"COMADMIN_E_CAT_BITNESSMISMATCH","features":[303]},{"name":"COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME","features":[303]},{"name":"COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED","features":[303]},{"name":"COMADMIN_E_CAT_INVALID_PARTITION_NAME","features":[303]},{"name":"COMADMIN_E_CAT_PARTITION_IN_USE","features":[303]},{"name":"COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED","features":[303]},{"name":"COMADMIN_E_CAT_SERVERFAULT","features":[303]},{"name":"COMADMIN_E_CAT_UNACCEPTABLEBITNESS","features":[303]},{"name":"COMADMIN_E_CAT_WRONGAPPBITNESS","features":[303]},{"name":"COMADMIN_E_CLSIDORIIDMISMATCH","features":[303]},{"name":"COMADMIN_E_COMPFILE_BADTLB","features":[303]},{"name":"COMADMIN_E_COMPFILE_CLASSNOTAVAIL","features":[303]},{"name":"COMADMIN_E_COMPFILE_DOESNOTEXIST","features":[303]},{"name":"COMADMIN_E_COMPFILE_GETCLASSOBJ","features":[303]},{"name":"COMADMIN_E_COMPFILE_LOADDLLFAIL","features":[303]},{"name":"COMADMIN_E_COMPFILE_NOREGISTRAR","features":[303]},{"name":"COMADMIN_E_COMPFILE_NOTINSTALLABLE","features":[303]},{"name":"COMADMIN_E_COMPONENTEXISTS","features":[303]},{"name":"COMADMIN_E_COMP_MOVE_BAD_DEST","features":[303]},{"name":"COMADMIN_E_COMP_MOVE_DEST","features":[303]},{"name":"COMADMIN_E_COMP_MOVE_LOCKED","features":[303]},{"name":"COMADMIN_E_COMP_MOVE_PRIVATE","features":[303]},{"name":"COMADMIN_E_COMP_MOVE_SOURCE","features":[303]},{"name":"COMADMIN_E_COREQCOMPINSTALLED","features":[303]},{"name":"COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET","features":[303]},{"name":"COMADMIN_E_DLLLOADFAILED","features":[303]},{"name":"COMADMIN_E_DLLREGISTERSERVER","features":[303]},{"name":"COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER","features":[303]},{"name":"COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES","features":[303]},{"name":"COMADMIN_E_INVALIDUSERIDS","features":[303]},{"name":"COMADMIN_E_INVALID_PARTITION","features":[303]},{"name":"COMADMIN_E_KEYMISSING","features":[303]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT","features":[303]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS","features":[303]},{"name":"COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE","features":[303]},{"name":"COMADMIN_E_MIG_SCHEMANOTFOUND","features":[303]},{"name":"COMADMIN_E_MIG_VERSIONNOTSUPPORTED","features":[303]},{"name":"COMADMIN_E_NOREGISTRYCLSID","features":[303]},{"name":"COMADMIN_E_NOSERVERSHARE","features":[303]},{"name":"COMADMIN_E_NOTCHANGEABLE","features":[303]},{"name":"COMADMIN_E_NOTDELETEABLE","features":[303]},{"name":"COMADMIN_E_NOTINREGISTRY","features":[303]},{"name":"COMADMIN_E_NOUSER","features":[303]},{"name":"COMADMIN_E_OBJECTERRORS","features":[303]},{"name":"COMADMIN_E_OBJECTEXISTS","features":[303]},{"name":"COMADMIN_E_OBJECTINVALID","features":[303]},{"name":"COMADMIN_E_OBJECTNOTPOOLABLE","features":[303]},{"name":"COMADMIN_E_OBJECT_DOES_NOT_EXIST","features":[303]},{"name":"COMADMIN_E_OBJECT_PARENT_MISSING","features":[303]},{"name":"COMADMIN_E_PARTITIONS_DISABLED","features":[303]},{"name":"COMADMIN_E_PARTITION_ACCESSDENIED","features":[303]},{"name":"COMADMIN_E_PARTITION_MSI_ONLY","features":[303]},{"name":"COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED","features":[303]},{"name":"COMADMIN_E_PRIVATE_ACCESSDENIED","features":[303]},{"name":"COMADMIN_E_PROCESSALREADYRECYCLED","features":[303]},{"name":"COMADMIN_E_PROGIDINUSEBYCLSID","features":[303]},{"name":"COMADMIN_E_PROPERTYSAVEFAILED","features":[303]},{"name":"COMADMIN_E_PROPERTY_OVERFLOW","features":[303]},{"name":"COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED","features":[303]},{"name":"COMADMIN_E_REGDB_ALREADYRUNNING","features":[303]},{"name":"COMADMIN_E_REGDB_NOTINITIALIZED","features":[303]},{"name":"COMADMIN_E_REGDB_NOTOPEN","features":[303]},{"name":"COMADMIN_E_REGDB_SYSTEMERR","features":[303]},{"name":"COMADMIN_E_REGFILE_CORRUPT","features":[303]},{"name":"COMADMIN_E_REGISTERTLB","features":[303]},{"name":"COMADMIN_E_REGISTRARFAILED","features":[303]},{"name":"COMADMIN_E_REGISTRY_ACCESSDENIED","features":[303]},{"name":"COMADMIN_E_REMOTEINTERFACE","features":[303]},{"name":"COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM","features":[303]},{"name":"COMADMIN_E_ROLEEXISTS","features":[303]},{"name":"COMADMIN_E_ROLE_DOES_NOT_EXIST","features":[303]},{"name":"COMADMIN_E_SAFERINVALID","features":[303]},{"name":"COMADMIN_E_SERVICENOTINSTALLED","features":[303]},{"name":"COMADMIN_E_SESSION","features":[303]},{"name":"COMADMIN_E_START_APP_DISABLED","features":[303]},{"name":"COMADMIN_E_START_APP_NEEDS_COMPONENTS","features":[303]},{"name":"COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE","features":[303]},{"name":"COMADMIN_E_SYSTEMAPP","features":[303]},{"name":"COMADMIN_E_USERPASSWDNOTVALID","features":[303]},{"name":"COMADMIN_E_USER_IN_SET","features":[303]},{"name":"COMQC_E_APPLICATION_NOT_QUEUED","features":[303]},{"name":"COMQC_E_BAD_MESSAGE","features":[303]},{"name":"COMQC_E_NO_IPERSISTSTREAM","features":[303]},{"name":"COMQC_E_NO_QUEUEABLE_INTERFACES","features":[303]},{"name":"COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE","features":[303]},{"name":"COMQC_E_UNAUTHENTICATED","features":[303]},{"name":"COMQC_E_UNTRUSTED_ENQUEUER","features":[303]},{"name":"CONTEXT_E_ABORTED","features":[303]},{"name":"CONTEXT_E_ABORTING","features":[303]},{"name":"CONTEXT_E_FIRST","features":[303]},{"name":"CONTEXT_E_LAST","features":[303]},{"name":"CONTEXT_E_NOCONTEXT","features":[303]},{"name":"CONTEXT_E_NOJIT","features":[303]},{"name":"CONTEXT_E_NOTRANSACTION","features":[303]},{"name":"CONTEXT_E_OLDREF","features":[303]},{"name":"CONTEXT_E_ROLENOTFOUND","features":[303]},{"name":"CONTEXT_E_SYNCH_TIMEOUT","features":[303]},{"name":"CONTEXT_E_TMNOTAVAILABLE","features":[303]},{"name":"CONTEXT_E_WOULD_DEADLOCK","features":[303]},{"name":"CONTEXT_S_FIRST","features":[303]},{"name":"CONTEXT_S_LAST","features":[303]},{"name":"CONTROL_C_EXIT","features":[303]},{"name":"CONVERT10_E_FIRST","features":[303]},{"name":"CONVERT10_E_LAST","features":[303]},{"name":"CONVERT10_E_OLELINK_DISABLED","features":[303]},{"name":"CONVERT10_E_OLESTREAM_BITMAP_TO_DIB","features":[303]},{"name":"CONVERT10_E_OLESTREAM_FMT","features":[303]},{"name":"CONVERT10_E_OLESTREAM_GET","features":[303]},{"name":"CONVERT10_E_OLESTREAM_PUT","features":[303]},{"name":"CONVERT10_E_STG_DIB_TO_BITMAP","features":[303]},{"name":"CONVERT10_E_STG_FMT","features":[303]},{"name":"CONVERT10_E_STG_NO_STD_STREAM","features":[303]},{"name":"CONVERT10_S_FIRST","features":[303]},{"name":"CONVERT10_S_LAST","features":[303]},{"name":"CONVERT10_S_NO_PRESENTATION","features":[303]},{"name":"CO_E_ACCESSCHECKFAILED","features":[303]},{"name":"CO_E_ACESINWRONGORDER","features":[303]},{"name":"CO_E_ACNOTINITIALIZED","features":[303]},{"name":"CO_E_ACTIVATIONFAILED","features":[303]},{"name":"CO_E_ACTIVATIONFAILED_CATALOGERROR","features":[303]},{"name":"CO_E_ACTIVATIONFAILED_EVENTLOGGED","features":[303]},{"name":"CO_E_ACTIVATIONFAILED_TIMEOUT","features":[303]},{"name":"CO_E_ALREADYINITIALIZED","features":[303]},{"name":"CO_E_APPDIDNTREG","features":[303]},{"name":"CO_E_APPNOTFOUND","features":[303]},{"name":"CO_E_APPSINGLEUSE","features":[303]},{"name":"CO_E_ASYNC_WORK_REJECTED","features":[303]},{"name":"CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT","features":[303]},{"name":"CO_E_BAD_PATH","features":[303]},{"name":"CO_E_BAD_SERVER_NAME","features":[303]},{"name":"CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED","features":[303]},{"name":"CO_E_CANCEL_DISABLED","features":[303]},{"name":"CO_E_CANTDETERMINECLASS","features":[303]},{"name":"CO_E_CANT_REMOTE","features":[303]},{"name":"CO_E_CLASSSTRING","features":[303]},{"name":"CO_E_CLASS_CREATE_FAILED","features":[303]},{"name":"CO_E_CLASS_DISABLED","features":[303]},{"name":"CO_E_CLRNOTAVAILABLE","features":[303]},{"name":"CO_E_CLSREG_INCONSISTENT","features":[303]},{"name":"CO_E_CONVERSIONFAILED","features":[303]},{"name":"CO_E_CREATEPROCESS_FAILURE","features":[303]},{"name":"CO_E_DBERROR","features":[303]},{"name":"CO_E_DECODEFAILED","features":[303]},{"name":"CO_E_DLLNOTFOUND","features":[303]},{"name":"CO_E_ELEVATION_DISABLED","features":[303]},{"name":"CO_E_ERRORINAPP","features":[303]},{"name":"CO_E_ERRORINDLL","features":[303]},{"name":"CO_E_EXCEEDSYSACLLIMIT","features":[303]},{"name":"CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED","features":[303]},{"name":"CO_E_FAILEDTOCLOSEHANDLE","features":[303]},{"name":"CO_E_FAILEDTOCREATEFILE","features":[303]},{"name":"CO_E_FAILEDTOGENUUID","features":[303]},{"name":"CO_E_FAILEDTOGETSECCTX","features":[303]},{"name":"CO_E_FAILEDTOGETTOKENINFO","features":[303]},{"name":"CO_E_FAILEDTOGETWINDIR","features":[303]},{"name":"CO_E_FAILEDTOIMPERSONATE","features":[303]},{"name":"CO_E_FAILEDTOOPENPROCESSTOKEN","features":[303]},{"name":"CO_E_FAILEDTOOPENTHREADTOKEN","features":[303]},{"name":"CO_E_FAILEDTOQUERYCLIENTBLANKET","features":[303]},{"name":"CO_E_FAILEDTOSETDACL","features":[303]},{"name":"CO_E_FIRST","features":[303]},{"name":"CO_E_IIDREG_INCONSISTENT","features":[303]},{"name":"CO_E_IIDSTRING","features":[303]},{"name":"CO_E_INCOMPATIBLESTREAMVERSION","features":[303]},{"name":"CO_E_INITIALIZATIONFAILED","features":[303]},{"name":"CO_E_INIT_CLASS_CACHE","features":[303]},{"name":"CO_E_INIT_MEMORY_ALLOCATOR","features":[303]},{"name":"CO_E_INIT_ONLY_SINGLE_THREADED","features":[303]},{"name":"CO_E_INIT_RPC_CHANNEL","features":[303]},{"name":"CO_E_INIT_SCM_EXEC_FAILURE","features":[303]},{"name":"CO_E_INIT_SCM_FILE_MAPPING_EXISTS","features":[303]},{"name":"CO_E_INIT_SCM_MAP_VIEW_OF_FILE","features":[303]},{"name":"CO_E_INIT_SCM_MUTEX_EXISTS","features":[303]},{"name":"CO_E_INIT_SHARED_ALLOCATOR","features":[303]},{"name":"CO_E_INIT_TLS","features":[303]},{"name":"CO_E_INIT_TLS_CHANNEL_CONTROL","features":[303]},{"name":"CO_E_INIT_TLS_SET_CHANNEL_CONTROL","features":[303]},{"name":"CO_E_INIT_UNACCEPTED_USER_ALLOCATOR","features":[303]},{"name":"CO_E_INVALIDSID","features":[303]},{"name":"CO_E_ISOLEVELMISMATCH","features":[303]},{"name":"CO_E_LAST","features":[303]},{"name":"CO_E_LAUNCH_PERMSSION_DENIED","features":[303]},{"name":"CO_E_LOOKUPACCNAMEFAILED","features":[303]},{"name":"CO_E_LOOKUPACCSIDFAILED","features":[303]},{"name":"CO_E_MALFORMED_SPN","features":[303]},{"name":"CO_E_MISSING_DISPLAYNAME","features":[303]},{"name":"CO_E_MSI_ERROR","features":[303]},{"name":"CO_E_NETACCESSAPIFAILED","features":[303]},{"name":"CO_E_NOCOOKIES","features":[303]},{"name":"CO_E_NOIISINTRINSICS","features":[303]},{"name":"CO_E_NOMATCHINGNAMEFOUND","features":[303]},{"name":"CO_E_NOMATCHINGSIDFOUND","features":[303]},{"name":"CO_E_NOSYNCHRONIZATION","features":[303]},{"name":"CO_E_NOTCONSTRUCTED","features":[303]},{"name":"CO_E_NOTINITIALIZED","features":[303]},{"name":"CO_E_NOTPOOLED","features":[303]},{"name":"CO_E_NOT_SUPPORTED","features":[303]},{"name":"CO_E_NO_SECCTX_IN_ACTIVATE","features":[303]},{"name":"CO_E_OBJISREG","features":[303]},{"name":"CO_E_OBJNOTCONNECTED","features":[303]},{"name":"CO_E_OBJNOTREG","features":[303]},{"name":"CO_E_OBJSRV_RPC_FAILURE","features":[303]},{"name":"CO_E_OLE1DDE_DISABLED","features":[303]},{"name":"CO_E_PATHTOOLONG","features":[303]},{"name":"CO_E_PREMATURE_STUB_RUNDOWN","features":[303]},{"name":"CO_E_RELEASED","features":[303]},{"name":"CO_E_RELOAD_DLL","features":[303]},{"name":"CO_E_REMOTE_COMMUNICATION_FAILURE","features":[303]},{"name":"CO_E_RUNAS_CREATEPROCESS_FAILURE","features":[303]},{"name":"CO_E_RUNAS_LOGON_FAILURE","features":[303]},{"name":"CO_E_RUNAS_SYNTAX","features":[303]},{"name":"CO_E_RUNAS_VALUE_MUST_BE_AAA","features":[303]},{"name":"CO_E_SCM_ERROR","features":[303]},{"name":"CO_E_SCM_RPC_FAILURE","features":[303]},{"name":"CO_E_SERVER_EXEC_FAILURE","features":[303]},{"name":"CO_E_SERVER_INIT_TIMEOUT","features":[303]},{"name":"CO_E_SERVER_NOT_PAUSED","features":[303]},{"name":"CO_E_SERVER_PAUSED","features":[303]},{"name":"CO_E_SERVER_START_TIMEOUT","features":[303]},{"name":"CO_E_SERVER_STOPPING","features":[303]},{"name":"CO_E_SETSERLHNDLFAILED","features":[303]},{"name":"CO_E_START_SERVICE_FAILURE","features":[303]},{"name":"CO_E_SXS_CONFIG","features":[303]},{"name":"CO_E_THREADINGMODEL_CHANGED","features":[303]},{"name":"CO_E_THREADPOOL_CONFIG","features":[303]},{"name":"CO_E_TRACKER_CONFIG","features":[303]},{"name":"CO_E_TRUSTEEDOESNTMATCHCLIENT","features":[303]},{"name":"CO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN","features":[303]},{"name":"CO_E_WRONGOSFORAPP","features":[303]},{"name":"CO_E_WRONGTRUSTEENAMESYNTAX","features":[303]},{"name":"CO_E_WRONG_SERVER_IDENTITY","features":[303]},{"name":"CO_S_FIRST","features":[303]},{"name":"CO_S_LAST","features":[303]},{"name":"CO_S_MACHINENAMENOTFOUND","features":[303]},{"name":"CO_S_NOTALLINTERFACES","features":[303]},{"name":"CRYPT_E_ALREADY_DECRYPTED","features":[303]},{"name":"CRYPT_E_ASN1_BADARGS","features":[303]},{"name":"CRYPT_E_ASN1_BADPDU","features":[303]},{"name":"CRYPT_E_ASN1_BADREAL","features":[303]},{"name":"CRYPT_E_ASN1_BADTAG","features":[303]},{"name":"CRYPT_E_ASN1_CHOICE","features":[303]},{"name":"CRYPT_E_ASN1_CONSTRAINT","features":[303]},{"name":"CRYPT_E_ASN1_CORRUPT","features":[303]},{"name":"CRYPT_E_ASN1_EOD","features":[303]},{"name":"CRYPT_E_ASN1_ERROR","features":[303]},{"name":"CRYPT_E_ASN1_EXTENDED","features":[303]},{"name":"CRYPT_E_ASN1_INTERNAL","features":[303]},{"name":"CRYPT_E_ASN1_LARGE","features":[303]},{"name":"CRYPT_E_ASN1_MEMORY","features":[303]},{"name":"CRYPT_E_ASN1_NOEOD","features":[303]},{"name":"CRYPT_E_ASN1_NYI","features":[303]},{"name":"CRYPT_E_ASN1_OVERFLOW","features":[303]},{"name":"CRYPT_E_ASN1_PDU_TYPE","features":[303]},{"name":"CRYPT_E_ASN1_RULE","features":[303]},{"name":"CRYPT_E_ASN1_UTF8","features":[303]},{"name":"CRYPT_E_ATTRIBUTES_MISSING","features":[303]},{"name":"CRYPT_E_AUTH_ATTR_MISSING","features":[303]},{"name":"CRYPT_E_BAD_ENCODE","features":[303]},{"name":"CRYPT_E_BAD_LEN","features":[303]},{"name":"CRYPT_E_BAD_MSG","features":[303]},{"name":"CRYPT_E_CONTROL_TYPE","features":[303]},{"name":"CRYPT_E_DELETED_PREV","features":[303]},{"name":"CRYPT_E_EXISTS","features":[303]},{"name":"CRYPT_E_FILERESIZED","features":[303]},{"name":"CRYPT_E_FILE_ERROR","features":[303]},{"name":"CRYPT_E_HASH_VALUE","features":[303]},{"name":"CRYPT_E_INVALID_IA5_STRING","features":[303]},{"name":"CRYPT_E_INVALID_INDEX","features":[303]},{"name":"CRYPT_E_INVALID_MSG_TYPE","features":[303]},{"name":"CRYPT_E_INVALID_NUMERIC_STRING","features":[303]},{"name":"CRYPT_E_INVALID_PRINTABLE_STRING","features":[303]},{"name":"CRYPT_E_INVALID_X500_STRING","features":[303]},{"name":"CRYPT_E_ISSUER_SERIALNUMBER","features":[303]},{"name":"CRYPT_E_MISSING_PUBKEY_PARA","features":[303]},{"name":"CRYPT_E_MSG_ERROR","features":[303]},{"name":"CRYPT_E_NOT_CHAR_STRING","features":[303]},{"name":"CRYPT_E_NOT_DECRYPTED","features":[303]},{"name":"CRYPT_E_NOT_FOUND","features":[303]},{"name":"CRYPT_E_NOT_IN_CTL","features":[303]},{"name":"CRYPT_E_NOT_IN_REVOCATION_DATABASE","features":[303]},{"name":"CRYPT_E_NO_DECRYPT_CERT","features":[303]},{"name":"CRYPT_E_NO_KEY_PROPERTY","features":[303]},{"name":"CRYPT_E_NO_MATCH","features":[303]},{"name":"CRYPT_E_NO_PROVIDER","features":[303]},{"name":"CRYPT_E_NO_REVOCATION_CHECK","features":[303]},{"name":"CRYPT_E_NO_REVOCATION_DLL","features":[303]},{"name":"CRYPT_E_NO_SIGNER","features":[303]},{"name":"CRYPT_E_NO_TRUSTED_SIGNER","features":[303]},{"name":"CRYPT_E_NO_VERIFY_USAGE_CHECK","features":[303]},{"name":"CRYPT_E_NO_VERIFY_USAGE_DLL","features":[303]},{"name":"CRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND","features":[303]},{"name":"CRYPT_E_OID_FORMAT","features":[303]},{"name":"CRYPT_E_OSS_ERROR","features":[303]},{"name":"CRYPT_E_PENDING_CLOSE","features":[303]},{"name":"CRYPT_E_RECIPIENT_NOT_FOUND","features":[303]},{"name":"CRYPT_E_REVOCATION_OFFLINE","features":[303]},{"name":"CRYPT_E_REVOKED","features":[303]},{"name":"CRYPT_E_SECURITY_SETTINGS","features":[303]},{"name":"CRYPT_E_SELF_SIGNED","features":[303]},{"name":"CRYPT_E_SIGNER_NOT_FOUND","features":[303]},{"name":"CRYPT_E_STREAM_INSUFFICIENT_DATA","features":[303]},{"name":"CRYPT_E_STREAM_MSG_NOT_READY","features":[303]},{"name":"CRYPT_E_UNEXPECTED_ENCODING","features":[303]},{"name":"CRYPT_E_UNEXPECTED_MSG_TYPE","features":[303]},{"name":"CRYPT_E_UNKNOWN_ALGO","features":[303]},{"name":"CRYPT_E_VERIFY_USAGE_OFFLINE","features":[303]},{"name":"CRYPT_I_NEW_PROTECTION_REQUIRED","features":[303]},{"name":"CS_E_ADMIN_LIMIT_EXCEEDED","features":[303]},{"name":"CS_E_CLASS_NOTFOUND","features":[303]},{"name":"CS_E_FIRST","features":[303]},{"name":"CS_E_INTERNAL_ERROR","features":[303]},{"name":"CS_E_INVALID_PATH","features":[303]},{"name":"CS_E_INVALID_VERSION","features":[303]},{"name":"CS_E_LAST","features":[303]},{"name":"CS_E_NETWORK_ERROR","features":[303]},{"name":"CS_E_NOT_DELETABLE","features":[303]},{"name":"CS_E_NO_CLASSSTORE","features":[303]},{"name":"CS_E_OBJECT_ALREADY_EXISTS","features":[303]},{"name":"CS_E_OBJECT_NOTFOUND","features":[303]},{"name":"CS_E_PACKAGE_NOTFOUND","features":[303]},{"name":"CS_E_SCHEMA_MISMATCH","features":[303]},{"name":"CloseHandle","features":[303]},{"name":"CompareObjectHandles","features":[303]},{"name":"D2DERR_BAD_NUMBER","features":[303]},{"name":"D2DERR_BITMAP_BOUND_AS_TARGET","features":[303]},{"name":"D2DERR_BITMAP_CANNOT_DRAW","features":[303]},{"name":"D2DERR_CYCLIC_GRAPH","features":[303]},{"name":"D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED","features":[303]},{"name":"D2DERR_DISPLAY_STATE_INVALID","features":[303]},{"name":"D2DERR_EFFECT_IS_NOT_REGISTERED","features":[303]},{"name":"D2DERR_EXCEEDS_MAX_BITMAP_SIZE","features":[303]},{"name":"D2DERR_INCOMPATIBLE_BRUSH_TYPES","features":[303]},{"name":"D2DERR_INSUFFICIENT_DEVICE_CAPABILITIES","features":[303]},{"name":"D2DERR_INTERMEDIATE_TOO_LARGE","features":[303]},{"name":"D2DERR_INTERNAL_ERROR","features":[303]},{"name":"D2DERR_INVALID_CALL","features":[303]},{"name":"D2DERR_INVALID_GLYPH_IMAGE","features":[303]},{"name":"D2DERR_INVALID_GRAPH_CONFIGURATION","features":[303]},{"name":"D2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION","features":[303]},{"name":"D2DERR_INVALID_PROPERTY","features":[303]},{"name":"D2DERR_INVALID_TARGET","features":[303]},{"name":"D2DERR_LAYER_ALREADY_IN_USE","features":[303]},{"name":"D2DERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[303]},{"name":"D2DERR_NOT_INITIALIZED","features":[303]},{"name":"D2DERR_NO_HARDWARE_DEVICE","features":[303]},{"name":"D2DERR_NO_SUBPROPERTIES","features":[303]},{"name":"D2DERR_ORIGINAL_TARGET_NOT_BOUND","features":[303]},{"name":"D2DERR_OUTSTANDING_BITMAP_REFERENCES","features":[303]},{"name":"D2DERR_POP_CALL_DID_NOT_MATCH_PUSH","features":[303]},{"name":"D2DERR_PRINT_FORMAT_NOT_SUPPORTED","features":[303]},{"name":"D2DERR_PRINT_JOB_CLOSED","features":[303]},{"name":"D2DERR_PUSH_POP_UNBALANCED","features":[303]},{"name":"D2DERR_RECREATE_TARGET","features":[303]},{"name":"D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT","features":[303]},{"name":"D2DERR_SCANNER_FAILED","features":[303]},{"name":"D2DERR_SCREEN_ACCESS_DENIED","features":[303]},{"name":"D2DERR_SHADER_COMPILE_FAILED","features":[303]},{"name":"D2DERR_TARGET_NOT_GDI_COMPATIBLE","features":[303]},{"name":"D2DERR_TEXT_EFFECT_IS_WRONG_TYPE","features":[303]},{"name":"D2DERR_TEXT_RENDERER_NOT_RELEASED","features":[303]},{"name":"D2DERR_TOO_MANY_SHADER_ELEMENTS","features":[303]},{"name":"D2DERR_TOO_MANY_TRANSFORM_INPUTS","features":[303]},{"name":"D2DERR_UNSUPPORTED_OPERATION","features":[303]},{"name":"D2DERR_UNSUPPORTED_VERSION","features":[303]},{"name":"D2DERR_WIN32_ERROR","features":[303]},{"name":"D2DERR_WRONG_FACTORY","features":[303]},{"name":"D2DERR_WRONG_RESOURCE_DOMAIN","features":[303]},{"name":"D2DERR_WRONG_STATE","features":[303]},{"name":"D2DERR_ZERO_VECTOR","features":[303]},{"name":"D3D10_ERROR_FILE_NOT_FOUND","features":[303]},{"name":"D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[303]},{"name":"D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD","features":[303]},{"name":"D3D11_ERROR_FILE_NOT_FOUND","features":[303]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[303]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS","features":[303]},{"name":"D3D12_ERROR_ADAPTER_NOT_FOUND","features":[303]},{"name":"D3D12_ERROR_DRIVER_VERSION_MISMATCH","features":[303]},{"name":"D3D12_ERROR_INVALID_REDIST","features":[303]},{"name":"DATA_E_FIRST","features":[303]},{"name":"DATA_E_LAST","features":[303]},{"name":"DATA_S_FIRST","features":[303]},{"name":"DATA_S_LAST","features":[303]},{"name":"DATA_S_SAMEFORMATETC","features":[303]},{"name":"DBG_APP_NOT_IDLE","features":[303]},{"name":"DBG_COMMAND_EXCEPTION","features":[303]},{"name":"DBG_CONTINUE","features":[303]},{"name":"DBG_CONTROL_BREAK","features":[303]},{"name":"DBG_CONTROL_C","features":[303]},{"name":"DBG_EXCEPTION_HANDLED","features":[303]},{"name":"DBG_EXCEPTION_NOT_HANDLED","features":[303]},{"name":"DBG_NO_STATE_CHANGE","features":[303]},{"name":"DBG_PRINTEXCEPTION_C","features":[303]},{"name":"DBG_PRINTEXCEPTION_WIDE_C","features":[303]},{"name":"DBG_REPLY_LATER","features":[303]},{"name":"DBG_RIPEXCEPTION","features":[303]},{"name":"DBG_TERMINATE_PROCESS","features":[303]},{"name":"DBG_TERMINATE_THREAD","features":[303]},{"name":"DBG_UNABLE_TO_PROVIDE_HANDLE","features":[303]},{"name":"DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED","features":[303]},{"name":"DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED","features":[303]},{"name":"DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED","features":[303]},{"name":"DECIMAL","features":[303]},{"name":"DIGSIG_E_CRYPTO","features":[303]},{"name":"DIGSIG_E_DECODE","features":[303]},{"name":"DIGSIG_E_ENCODE","features":[303]},{"name":"DIGSIG_E_EXTENSIBILITY","features":[303]},{"name":"DISP_E_ARRAYISLOCKED","features":[303]},{"name":"DISP_E_BADCALLEE","features":[303]},{"name":"DISP_E_BADINDEX","features":[303]},{"name":"DISP_E_BADPARAMCOUNT","features":[303]},{"name":"DISP_E_BADVARTYPE","features":[303]},{"name":"DISP_E_BUFFERTOOSMALL","features":[303]},{"name":"DISP_E_DIVBYZERO","features":[303]},{"name":"DISP_E_EXCEPTION","features":[303]},{"name":"DISP_E_MEMBERNOTFOUND","features":[303]},{"name":"DISP_E_NONAMEDARGS","features":[303]},{"name":"DISP_E_NOTACOLLECTION","features":[303]},{"name":"DISP_E_OVERFLOW","features":[303]},{"name":"DISP_E_PARAMNOTFOUND","features":[303]},{"name":"DISP_E_PARAMNOTOPTIONAL","features":[303]},{"name":"DISP_E_TYPEMISMATCH","features":[303]},{"name":"DISP_E_UNKNOWNINTERFACE","features":[303]},{"name":"DISP_E_UNKNOWNLCID","features":[303]},{"name":"DISP_E_UNKNOWNNAME","features":[303]},{"name":"DNS_ERROR_ADDRESS_REQUIRED","features":[303]},{"name":"DNS_ERROR_ALIAS_LOOP","features":[303]},{"name":"DNS_ERROR_AUTOZONE_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_AXFR","features":[303]},{"name":"DNS_ERROR_BACKGROUND_LOADING","features":[303]},{"name":"DNS_ERROR_BAD_KEYMASTER","features":[303]},{"name":"DNS_ERROR_BAD_PACKET","features":[303]},{"name":"DNS_ERROR_CANNOT_FIND_ROOT_HINTS","features":[303]},{"name":"DNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_CLIENT_SUBNET_IS_ACCESSED","features":[303]},{"name":"DNS_ERROR_CNAME_COLLISION","features":[303]},{"name":"DNS_ERROR_CNAME_LOOP","features":[303]},{"name":"DNS_ERROR_DATABASE_BASE","features":[303]},{"name":"DNS_ERROR_DATAFILE_BASE","features":[303]},{"name":"DNS_ERROR_DATAFILE_OPEN_FAILURE","features":[303]},{"name":"DNS_ERROR_DATAFILE_PARSING","features":[303]},{"name":"DNS_ERROR_DEFAULT_SCOPE","features":[303]},{"name":"DNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE","features":[303]},{"name":"DNS_ERROR_DEFAULT_ZONESCOPE","features":[303]},{"name":"DNS_ERROR_DELEGATION_REQUIRED","features":[303]},{"name":"DNS_ERROR_DNAME_COLLISION","features":[303]},{"name":"DNS_ERROR_DNSSEC_BASE","features":[303]},{"name":"DNS_ERROR_DNSSEC_IS_DISABLED","features":[303]},{"name":"DNS_ERROR_DP_ALREADY_ENLISTED","features":[303]},{"name":"DNS_ERROR_DP_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_DP_BASE","features":[303]},{"name":"DNS_ERROR_DP_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_DP_FSMO_ERROR","features":[303]},{"name":"DNS_ERROR_DP_NOT_AVAILABLE","features":[303]},{"name":"DNS_ERROR_DP_NOT_ENLISTED","features":[303]},{"name":"DNS_ERROR_DS_UNAVAILABLE","features":[303]},{"name":"DNS_ERROR_DS_ZONE_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_LARGE","features":[303]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_SMALL","features":[303]},{"name":"DNS_ERROR_FILE_WRITEBACK_FAILED","features":[303]},{"name":"DNS_ERROR_FORWARDER_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_GENERAL_API_BASE","features":[303]},{"name":"DNS_ERROR_INCONSISTENT_ROOT_HINTS","features":[303]},{"name":"DNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME","features":[303]},{"name":"DNS_ERROR_INVALID_CLIENT_SUBNET_NAME","features":[303]},{"name":"DNS_ERROR_INVALID_DATA","features":[303]},{"name":"DNS_ERROR_INVALID_DATAFILE_NAME","features":[303]},{"name":"DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET","features":[303]},{"name":"DNS_ERROR_INVALID_IP_ADDRESS","features":[303]},{"name":"DNS_ERROR_INVALID_KEY_SIZE","features":[303]},{"name":"DNS_ERROR_INVALID_NAME","features":[303]},{"name":"DNS_ERROR_INVALID_NAME_CHAR","features":[303]},{"name":"DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT","features":[303]},{"name":"DNS_ERROR_INVALID_POLICY_TABLE","features":[303]},{"name":"DNS_ERROR_INVALID_PROPERTY","features":[303]},{"name":"DNS_ERROR_INVALID_ROLLOVER_PERIOD","features":[303]},{"name":"DNS_ERROR_INVALID_SCOPE_NAME","features":[303]},{"name":"DNS_ERROR_INVALID_SCOPE_OPERATION","features":[303]},{"name":"DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD","features":[303]},{"name":"DNS_ERROR_INVALID_TYPE","features":[303]},{"name":"DNS_ERROR_INVALID_XML","features":[303]},{"name":"DNS_ERROR_INVALID_ZONESCOPE_NAME","features":[303]},{"name":"DNS_ERROR_INVALID_ZONE_OPERATION","features":[303]},{"name":"DNS_ERROR_INVALID_ZONE_TYPE","features":[303]},{"name":"DNS_ERROR_KEYMASTER_REQUIRED","features":[303]},{"name":"DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION","features":[303]},{"name":"DNS_ERROR_KSP_NOT_ACCESSIBLE","features":[303]},{"name":"DNS_ERROR_LOAD_ZONESCOPE_FAILED","features":[303]},{"name":"DNS_ERROR_MASK","features":[303]},{"name":"DNS_ERROR_NAME_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_NAME_NOT_IN_ZONE","features":[303]},{"name":"DNS_ERROR_NBSTAT_INIT_FAILED","features":[303]},{"name":"DNS_ERROR_NEED_SECONDARY_ADDRESSES","features":[303]},{"name":"DNS_ERROR_NEED_WINS_SERVERS","features":[303]},{"name":"DNS_ERROR_NODE_CREATION_FAILED","features":[303]},{"name":"DNS_ERROR_NODE_IS_CNAME","features":[303]},{"name":"DNS_ERROR_NODE_IS_DNAME","features":[303]},{"name":"DNS_ERROR_NON_RFC_NAME","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_RODC","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ZSK","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DNAME","features":[303]},{"name":"DNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES","features":[303]},{"name":"DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS","features":[303]},{"name":"DNS_ERROR_NOT_UNIQUE","features":[303]},{"name":"DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE","features":[303]},{"name":"DNS_ERROR_NO_CREATE_CACHE_DATA","features":[303]},{"name":"DNS_ERROR_NO_DNS_SERVERS","features":[303]},{"name":"DNS_ERROR_NO_MEMORY","features":[303]},{"name":"DNS_ERROR_NO_PACKET","features":[303]},{"name":"DNS_ERROR_NO_TCPIP","features":[303]},{"name":"DNS_ERROR_NO_VALID_TRUST_ANCHORS","features":[303]},{"name":"DNS_ERROR_NO_ZONE_INFO","features":[303]},{"name":"DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1","features":[303]},{"name":"DNS_ERROR_NSEC3_NAME_COLLISION","features":[303]},{"name":"DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1","features":[303]},{"name":"DNS_ERROR_NUMERIC_NAME","features":[303]},{"name":"DNS_ERROR_OPERATION_BASE","features":[303]},{"name":"DNS_ERROR_PACKET_FMT_BASE","features":[303]},{"name":"DNS_ERROR_POLICY_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_POLICY_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_FQDN","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_NAME","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_SETTINGS","features":[303]},{"name":"DNS_ERROR_POLICY_INVALID_WEIGHT","features":[303]},{"name":"DNS_ERROR_POLICY_LOCKED","features":[303]},{"name":"DNS_ERROR_POLICY_MISSING_CRITERIA","features":[303]},{"name":"DNS_ERROR_POLICY_PROCESSING_ORDER_INVALID","features":[303]},{"name":"DNS_ERROR_POLICY_SCOPE_MISSING","features":[303]},{"name":"DNS_ERROR_POLICY_SCOPE_NOT_ALLOWED","features":[303]},{"name":"DNS_ERROR_PRIMARY_REQUIRES_DATAFILE","features":[303]},{"name":"DNS_ERROR_RCODE","features":[303]},{"name":"DNS_ERROR_RCODE_BADKEY","features":[303]},{"name":"DNS_ERROR_RCODE_BADSIG","features":[303]},{"name":"DNS_ERROR_RCODE_BADTIME","features":[303]},{"name":"DNS_ERROR_RCODE_FORMAT_ERROR","features":[303]},{"name":"DNS_ERROR_RCODE_LAST","features":[303]},{"name":"DNS_ERROR_RCODE_NAME_ERROR","features":[303]},{"name":"DNS_ERROR_RCODE_NOTAUTH","features":[303]},{"name":"DNS_ERROR_RCODE_NOTZONE","features":[303]},{"name":"DNS_ERROR_RCODE_NOT_IMPLEMENTED","features":[303]},{"name":"DNS_ERROR_RCODE_NO_ERROR","features":[303]},{"name":"DNS_ERROR_RCODE_NXRRSET","features":[303]},{"name":"DNS_ERROR_RCODE_REFUSED","features":[303]},{"name":"DNS_ERROR_RCODE_SERVER_FAILURE","features":[303]},{"name":"DNS_ERROR_RCODE_YXDOMAIN","features":[303]},{"name":"DNS_ERROR_RCODE_YXRRSET","features":[303]},{"name":"DNS_ERROR_RECORD_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_RECORD_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_RECORD_FORMAT","features":[303]},{"name":"DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT","features":[303]},{"name":"DNS_ERROR_RECORD_TIMED_OUT","features":[303]},{"name":"DNS_ERROR_RESPONSE_CODES_BASE","features":[303]},{"name":"DNS_ERROR_ROLLOVER_ALREADY_QUEUED","features":[303]},{"name":"DNS_ERROR_ROLLOVER_IN_PROGRESS","features":[303]},{"name":"DNS_ERROR_ROLLOVER_NOT_POKEABLE","features":[303]},{"name":"DNS_ERROR_RRL_INVALID_IPV4_PREFIX","features":[303]},{"name":"DNS_ERROR_RRL_INVALID_IPV6_PREFIX","features":[303]},{"name":"DNS_ERROR_RRL_INVALID_LEAK_RATE","features":[303]},{"name":"DNS_ERROR_RRL_INVALID_TC_RATE","features":[303]},{"name":"DNS_ERROR_RRL_INVALID_WINDOW_SIZE","features":[303]},{"name":"DNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE","features":[303]},{"name":"DNS_ERROR_RRL_NOT_ENABLED","features":[303]},{"name":"DNS_ERROR_SCOPE_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_SCOPE_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_SCOPE_LOCKED","features":[303]},{"name":"DNS_ERROR_SECONDARY_DATA","features":[303]},{"name":"DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP","features":[303]},{"name":"DNS_ERROR_SECURE_BASE","features":[303]},{"name":"DNS_ERROR_SERVERSCOPE_IS_REFERENCED","features":[303]},{"name":"DNS_ERROR_SETUP_BASE","features":[303]},{"name":"DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE","features":[303]},{"name":"DNS_ERROR_SOA_DELETE_INVALID","features":[303]},{"name":"DNS_ERROR_STANDBY_KEY_NOT_PRESENT","features":[303]},{"name":"DNS_ERROR_SUBNET_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_SUBNET_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_TOO_MANY_SKDS","features":[303]},{"name":"DNS_ERROR_TRY_AGAIN_LATER","features":[303]},{"name":"DNS_ERROR_UNEXPECTED_CNG_ERROR","features":[303]},{"name":"DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR","features":[303]},{"name":"DNS_ERROR_UNKNOWN_RECORD_TYPE","features":[303]},{"name":"DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION","features":[303]},{"name":"DNS_ERROR_UNSECURE_PACKET","features":[303]},{"name":"DNS_ERROR_UNSUPPORTED_ALGORITHM","features":[303]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_VIRTUALIZATION_TREE_LOCKED","features":[303]},{"name":"DNS_ERROR_WINS_INIT_FAILED","features":[303]},{"name":"DNS_ERROR_ZONESCOPE_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_ZONESCOPE_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED","features":[303]},{"name":"DNS_ERROR_ZONESCOPE_IS_REFERENCED","features":[303]},{"name":"DNS_ERROR_ZONE_ALREADY_EXISTS","features":[303]},{"name":"DNS_ERROR_ZONE_BASE","features":[303]},{"name":"DNS_ERROR_ZONE_CONFIGURATION_ERROR","features":[303]},{"name":"DNS_ERROR_ZONE_CREATION_FAILED","features":[303]},{"name":"DNS_ERROR_ZONE_DOES_NOT_EXIST","features":[303]},{"name":"DNS_ERROR_ZONE_HAS_NO_NS_RECORDS","features":[303]},{"name":"DNS_ERROR_ZONE_HAS_NO_SOA_RECORD","features":[303]},{"name":"DNS_ERROR_ZONE_IS_SHUTDOWN","features":[303]},{"name":"DNS_ERROR_ZONE_LOCKED","features":[303]},{"name":"DNS_ERROR_ZONE_LOCKED_FOR_SIGNING","features":[303]},{"name":"DNS_ERROR_ZONE_NOT_SECONDARY","features":[303]},{"name":"DNS_ERROR_ZONE_REQUIRES_MASTER_IP","features":[303]},{"name":"DNS_INFO_ADDED_LOCAL_WINS","features":[303]},{"name":"DNS_INFO_AXFR_COMPLETE","features":[303]},{"name":"DNS_INFO_NO_RECORDS","features":[303]},{"name":"DNS_REQUEST_PENDING","features":[303]},{"name":"DNS_STATUS_CONTINUE_NEEDED","features":[303]},{"name":"DNS_STATUS_DOTTED_NAME","features":[303]},{"name":"DNS_STATUS_FQDN","features":[303]},{"name":"DNS_STATUS_SINGLE_PART_NAME","features":[303]},{"name":"DNS_WARNING_DOMAIN_UNDELETED","features":[303]},{"name":"DNS_WARNING_PTR_CREATE_FAILED","features":[303]},{"name":"DRAGDROP_E_ALREADYREGISTERED","features":[303]},{"name":"DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED","features":[303]},{"name":"DRAGDROP_E_FIRST","features":[303]},{"name":"DRAGDROP_E_INVALIDHWND","features":[303]},{"name":"DRAGDROP_E_LAST","features":[303]},{"name":"DRAGDROP_E_NOTREGISTERED","features":[303]},{"name":"DRAGDROP_S_CANCEL","features":[303]},{"name":"DRAGDROP_S_DROP","features":[303]},{"name":"DRAGDROP_S_FIRST","features":[303]},{"name":"DRAGDROP_S_LAST","features":[303]},{"name":"DRAGDROP_S_USEDEFAULTCURSORS","features":[303]},{"name":"DUPLICATE_CLOSE_SOURCE","features":[303]},{"name":"DUPLICATE_HANDLE_OPTIONS","features":[303]},{"name":"DUPLICATE_SAME_ACCESS","features":[303]},{"name":"DV_E_CLIPFORMAT","features":[303]},{"name":"DV_E_DVASPECT","features":[303]},{"name":"DV_E_DVTARGETDEVICE","features":[303]},{"name":"DV_E_DVTARGETDEVICE_SIZE","features":[303]},{"name":"DV_E_FORMATETC","features":[303]},{"name":"DV_E_LINDEX","features":[303]},{"name":"DV_E_NOIVIEWOBJECT","features":[303]},{"name":"DV_E_STATDATA","features":[303]},{"name":"DV_E_STGMEDIUM","features":[303]},{"name":"DV_E_TYMED","features":[303]},{"name":"DWMERR_CATASTROPHIC_FAILURE","features":[303]},{"name":"DWMERR_STATE_TRANSITION_FAILED","features":[303]},{"name":"DWMERR_THEME_FAILED","features":[303]},{"name":"DWM_E_ADAPTER_NOT_FOUND","features":[303]},{"name":"DWM_E_COMPOSITIONDISABLED","features":[303]},{"name":"DWM_E_NOT_QUEUING_PRESENTS","features":[303]},{"name":"DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE","features":[303]},{"name":"DWM_E_REMOTING_NOT_SUPPORTED","features":[303]},{"name":"DWM_E_TEXTURE_TOO_LARGE","features":[303]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE","features":[303]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI","features":[303]},{"name":"DWRITE_E_ALREADYREGISTERED","features":[303]},{"name":"DWRITE_E_CACHEFORMAT","features":[303]},{"name":"DWRITE_E_CACHEVERSION","features":[303]},{"name":"DWRITE_E_FILEACCESS","features":[303]},{"name":"DWRITE_E_FILEFORMAT","features":[303]},{"name":"DWRITE_E_FILENOTFOUND","features":[303]},{"name":"DWRITE_E_FLOWDIRECTIONCONFLICTS","features":[303]},{"name":"DWRITE_E_FONTCOLLECTIONOBSOLETE","features":[303]},{"name":"DWRITE_E_NOCOLOR","features":[303]},{"name":"DWRITE_E_NOFONT","features":[303]},{"name":"DWRITE_E_TEXTRENDERERINCOMPATIBLE","features":[303]},{"name":"DWRITE_E_UNEXPECTED","features":[303]},{"name":"DWRITE_E_UNSUPPORTEDOPERATION","features":[303]},{"name":"DXCORE_ERROR_EVENT_NOT_UNREGISTERED","features":[303]},{"name":"DXGI_DDI_ERR_NONEXCLUSIVE","features":[303]},{"name":"DXGI_DDI_ERR_UNSUPPORTED","features":[303]},{"name":"DXGI_DDI_ERR_WASSTILLDRAWING","features":[303]},{"name":"DXGI_STATUS_CLIPPED","features":[303]},{"name":"DXGI_STATUS_DDA_WAS_STILL_DRAWING","features":[303]},{"name":"DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[303]},{"name":"DXGI_STATUS_MODE_CHANGED","features":[303]},{"name":"DXGI_STATUS_MODE_CHANGE_IN_PROGRESS","features":[303]},{"name":"DXGI_STATUS_NO_DESKTOP_ACCESS","features":[303]},{"name":"DXGI_STATUS_NO_REDIRECTION","features":[303]},{"name":"DXGI_STATUS_OCCLUDED","features":[303]},{"name":"DXGI_STATUS_PRESENT_REQUIRED","features":[303]},{"name":"DXGI_STATUS_UNOCCLUDED","features":[303]},{"name":"DuplicateHandle","features":[303]},{"name":"EAS_E_ADMINS_CANNOT_CHANGE_PASSWORD","features":[303]},{"name":"EAS_E_ADMINS_HAVE_BLANK_PASSWORD","features":[303]},{"name":"EAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD","features":[303]},{"name":"EAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD","features":[303]},{"name":"EAS_E_CURRENT_USER_HAS_BLANK_PASSWORD","features":[303]},{"name":"EAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD","features":[303]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS","features":[303]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER","features":[303]},{"name":"EAS_E_POLICY_COMPLIANT_WITH_ACTIONS","features":[303]},{"name":"EAS_E_POLICY_NOT_MANAGED_BY_OS","features":[303]},{"name":"EAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE","features":[303]},{"name":"EAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE","features":[303]},{"name":"EAS_E_USER_CANNOT_CHANGE_PASSWORD","features":[303]},{"name":"ENUM_E_FIRST","features":[303]},{"name":"ENUM_E_LAST","features":[303]},{"name":"ENUM_S_FIRST","features":[303]},{"name":"ENUM_S_LAST","features":[303]},{"name":"EPT_NT_CANT_CREATE","features":[303]},{"name":"EPT_NT_CANT_PERFORM_OP","features":[303]},{"name":"EPT_NT_INVALID_ENTRY","features":[303]},{"name":"EPT_NT_NOT_REGISTERED","features":[303]},{"name":"ERROR_ABANDONED_WAIT_0","features":[303]},{"name":"ERROR_ABANDONED_WAIT_63","features":[303]},{"name":"ERROR_ABANDON_HIBERFILE","features":[303]},{"name":"ERROR_ABIOS_ERROR","features":[303]},{"name":"ERROR_ACCESS_AUDIT_BY_POLICY","features":[303]},{"name":"ERROR_ACCESS_DENIED","features":[303]},{"name":"ERROR_ACCESS_DENIED_APPDATA","features":[303]},{"name":"ERROR_ACCESS_DISABLED_BY_POLICY","features":[303]},{"name":"ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[303]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE","features":[303]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER","features":[303]},{"name":"ERROR_ACCOUNT_DISABLED","features":[303]},{"name":"ERROR_ACCOUNT_EXPIRED","features":[303]},{"name":"ERROR_ACCOUNT_LOCKED_OUT","features":[303]},{"name":"ERROR_ACCOUNT_RESTRICTION","features":[303]},{"name":"ERROR_ACPI_ERROR","features":[303]},{"name":"ERROR_ACTIVATION_COUNT_EXCEEDED","features":[303]},{"name":"ERROR_ACTIVE_CONNECTIONS","features":[303]},{"name":"ERROR_ADAP_HDW_ERR","features":[303]},{"name":"ERROR_ADDRESS_ALREADY_ASSOCIATED","features":[303]},{"name":"ERROR_ADDRESS_NOT_ASSOCIATED","features":[303]},{"name":"ERROR_ADVANCED_INSTALLER_FAILED","features":[303]},{"name":"ERROR_ALERTED","features":[303]},{"name":"ERROR_ALIAS_EXISTS","features":[303]},{"name":"ERROR_ALLOCATE_BUCKET","features":[303]},{"name":"ERROR_ALLOTTED_SPACE_EXCEEDED","features":[303]},{"name":"ERROR_ALLOWED_PORT_TYPE_RESTRICTION","features":[303]},{"name":"ERROR_ALL_NODES_NOT_AVAILABLE","features":[303]},{"name":"ERROR_ALL_SIDS_FILTERED","features":[303]},{"name":"ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_ALREADY_ASSIGNED","features":[303]},{"name":"ERROR_ALREADY_CONNECTED","features":[303]},{"name":"ERROR_ALREADY_CONNECTING","features":[303]},{"name":"ERROR_ALREADY_EXISTS","features":[303]},{"name":"ERROR_ALREADY_FIBER","features":[303]},{"name":"ERROR_ALREADY_HAS_STREAM_ID","features":[303]},{"name":"ERROR_ALREADY_INITIALIZED","features":[303]},{"name":"ERROR_ALREADY_REGISTERED","features":[303]},{"name":"ERROR_ALREADY_RUNNING_LKG","features":[303]},{"name":"ERROR_ALREADY_THREAD","features":[303]},{"name":"ERROR_ALREADY_WAITING","features":[303]},{"name":"ERROR_ALREADY_WIN32","features":[303]},{"name":"ERROR_AMBIGUOUS_SYSTEM_DEVICE","features":[303]},{"name":"ERROR_API_UNAVAILABLE","features":[303]},{"name":"ERROR_APPCONTAINER_REQUIRED","features":[303]},{"name":"ERROR_APPEXEC_APP_COMPAT_BLOCK","features":[303]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT","features":[303]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[303]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[303]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[303]},{"name":"ERROR_APPEXEC_CONDITION_NOT_SATISFIED","features":[303]},{"name":"ERROR_APPEXEC_HANDLE_INVALIDATED","features":[303]},{"name":"ERROR_APPEXEC_HOST_ID_MISMATCH","features":[303]},{"name":"ERROR_APPEXEC_INVALID_HOST_GENERATION","features":[303]},{"name":"ERROR_APPEXEC_INVALID_HOST_STATE","features":[303]},{"name":"ERROR_APPEXEC_NO_DONOR","features":[303]},{"name":"ERROR_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[303]},{"name":"ERROR_APPEXEC_UNKNOWN_USER","features":[303]},{"name":"ERROR_APPHELP_BLOCK","features":[303]},{"name":"ERROR_APPINSTALLER_ACTIVATION_BLOCKED","features":[303]},{"name":"ERROR_APPINSTALLER_IS_MANAGED_BY_SYSTEM","features":[303]},{"name":"ERROR_APPINSTALLER_URI_IN_USE","features":[303]},{"name":"ERROR_APPX_FILE_NOT_ENCRYPTED","features":[303]},{"name":"ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[303]},{"name":"ERROR_APPX_RAW_DATA_WRITE_FAILED","features":[303]},{"name":"ERROR_APP_DATA_CORRUPT","features":[303]},{"name":"ERROR_APP_DATA_EXPIRED","features":[303]},{"name":"ERROR_APP_DATA_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_APP_DATA_NOT_FOUND","features":[303]},{"name":"ERROR_APP_DATA_REBOOT_REQUIRED","features":[303]},{"name":"ERROR_APP_HANG","features":[303]},{"name":"ERROR_APP_INIT_FAILURE","features":[303]},{"name":"ERROR_APP_WRONG_OS","features":[303]},{"name":"ERROR_ARBITRATION_UNHANDLED","features":[303]},{"name":"ERROR_ARENA_TRASHED","features":[303]},{"name":"ERROR_ARITHMETIC_OVERFLOW","features":[303]},{"name":"ERROR_ASSERTION_FAILURE","features":[303]},{"name":"ERROR_ATOMIC_LOCKS_NOT_SUPPORTED","features":[303]},{"name":"ERROR_ATTRIBUTE_NOT_PRESENT","features":[303]},{"name":"ERROR_AUDITING_DISABLED","features":[303]},{"name":"ERROR_AUDIT_FAILED","features":[303]},{"name":"ERROR_AUTHENTICATION_FIREWALL_FAILED","features":[303]},{"name":"ERROR_AUTHENTICATOR_MISMATCH","features":[303]},{"name":"ERROR_AUTHENTICODE_DISALLOWED","features":[303]},{"name":"ERROR_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[303]},{"name":"ERROR_AUTHENTICODE_TRUSTED_PUBLISHER","features":[303]},{"name":"ERROR_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[303]},{"name":"ERROR_AUTHIP_FAILURE","features":[303]},{"name":"ERROR_AUTH_PROTOCOL_REJECTED","features":[303]},{"name":"ERROR_AUTH_PROTOCOL_RESTRICTION","features":[303]},{"name":"ERROR_AUTH_SERVER_TIMEOUT","features":[303]},{"name":"ERROR_AUTODATASEG_EXCEEDS_64k","features":[303]},{"name":"ERROR_BACKUP_CONTROLLER","features":[303]},{"name":"ERROR_BADDB","features":[303]},{"name":"ERROR_BADKEY","features":[303]},{"name":"ERROR_BADSTARTPOSITION","features":[303]},{"name":"ERROR_BAD_ACCESSOR_FLAGS","features":[303]},{"name":"ERROR_BAD_ARGUMENTS","features":[303]},{"name":"ERROR_BAD_CLUSTERS","features":[303]},{"name":"ERROR_BAD_COMMAND","features":[303]},{"name":"ERROR_BAD_COMPRESSION_BUFFER","features":[303]},{"name":"ERROR_BAD_CONFIGURATION","features":[303]},{"name":"ERROR_BAD_CURRENT_DIRECTORY","features":[303]},{"name":"ERROR_BAD_DESCRIPTOR_FORMAT","features":[303]},{"name":"ERROR_BAD_DEVICE","features":[303]},{"name":"ERROR_BAD_DEVICE_PATH","features":[303]},{"name":"ERROR_BAD_DEV_TYPE","features":[303]},{"name":"ERROR_BAD_DLL_ENTRYPOINT","features":[303]},{"name":"ERROR_BAD_DRIVER","features":[303]},{"name":"ERROR_BAD_DRIVER_LEVEL","features":[303]},{"name":"ERROR_BAD_ENVIRONMENT","features":[303]},{"name":"ERROR_BAD_EXE_FORMAT","features":[303]},{"name":"ERROR_BAD_FILE_TYPE","features":[303]},{"name":"ERROR_BAD_FORMAT","features":[303]},{"name":"ERROR_BAD_FUNCTION_TABLE","features":[303]},{"name":"ERROR_BAD_IMPERSONATION_LEVEL","features":[303]},{"name":"ERROR_BAD_INHERITANCE_ACL","features":[303]},{"name":"ERROR_BAD_INTERFACE_INSTALLSECT","features":[303]},{"name":"ERROR_BAD_LENGTH","features":[303]},{"name":"ERROR_BAD_LOGON_SESSION_STATE","features":[303]},{"name":"ERROR_BAD_MCFG_TABLE","features":[303]},{"name":"ERROR_BAD_NETPATH","features":[303]},{"name":"ERROR_BAD_NET_NAME","features":[303]},{"name":"ERROR_BAD_NET_RESP","features":[303]},{"name":"ERROR_BAD_PATHNAME","features":[303]},{"name":"ERROR_BAD_PIPE","features":[303]},{"name":"ERROR_BAD_PROFILE","features":[303]},{"name":"ERROR_BAD_PROVIDER","features":[303]},{"name":"ERROR_BAD_QUERY_SYNTAX","features":[303]},{"name":"ERROR_BAD_RECOVERY_POLICY","features":[303]},{"name":"ERROR_BAD_REM_ADAP","features":[303]},{"name":"ERROR_BAD_SECTION_NAME_LINE","features":[303]},{"name":"ERROR_BAD_SERVICE_ENTRYPOINT","features":[303]},{"name":"ERROR_BAD_SERVICE_INSTALLSECT","features":[303]},{"name":"ERROR_BAD_STACK","features":[303]},{"name":"ERROR_BAD_THREADID_ADDR","features":[303]},{"name":"ERROR_BAD_TOKEN_TYPE","features":[303]},{"name":"ERROR_BAD_UNIT","features":[303]},{"name":"ERROR_BAD_USERNAME","features":[303]},{"name":"ERROR_BAD_USER_PROFILE","features":[303]},{"name":"ERROR_BAD_VALIDATION_CLASS","features":[303]},{"name":"ERROR_BAP_DISCONNECTED","features":[303]},{"name":"ERROR_BAP_REQUIRED","features":[303]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[303]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[303]},{"name":"ERROR_BCD_TOO_MANY_ELEMENTS","features":[303]},{"name":"ERROR_BEGINNING_OF_MEDIA","features":[303]},{"name":"ERROR_BEYOND_VDL","features":[303]},{"name":"ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[303]},{"name":"ERROR_BIZRULES_NOT_ENABLED","features":[303]},{"name":"ERROR_BLOCKED_BY_PARENTAL_CONTROLS","features":[303]},{"name":"ERROR_BLOCK_SHARED","features":[303]},{"name":"ERROR_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[303]},{"name":"ERROR_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[303]},{"name":"ERROR_BLOCK_TOO_MANY_REFERENCES","features":[303]},{"name":"ERROR_BLOCK_WEAK_REFERENCE_INVALID","features":[303]},{"name":"ERROR_BOOT_ALREADY_ACCEPTED","features":[303]},{"name":"ERROR_BROKEN_PIPE","features":[303]},{"name":"ERROR_BUFFER_ALL_ZEROS","features":[303]},{"name":"ERROR_BUFFER_OVERFLOW","features":[303]},{"name":"ERROR_BUSY","features":[303]},{"name":"ERROR_BUSY_DRIVE","features":[303]},{"name":"ERROR_BUS_RESET","features":[303]},{"name":"ERROR_BYPASSIO_FLT_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CACHE_PAGE_LOCKED","features":[303]},{"name":"ERROR_CALLBACK_INVOKE_INLINE","features":[303]},{"name":"ERROR_CALLBACK_POP_STACK","features":[303]},{"name":"ERROR_CALLBACK_SUPPLIED_INVALID_DATA","features":[303]},{"name":"ERROR_CALL_NOT_IMPLEMENTED","features":[303]},{"name":"ERROR_CANCELLED","features":[303]},{"name":"ERROR_CANCEL_VIOLATION","features":[303]},{"name":"ERROR_CANNOT_ABORT_TRANSACTIONS","features":[303]},{"name":"ERROR_CANNOT_ACCEPT_TRANSACTED_WORK","features":[303]},{"name":"ERROR_CANNOT_BREAK_OPLOCK","features":[303]},{"name":"ERROR_CANNOT_COPY","features":[303]},{"name":"ERROR_CANNOT_DETECT_DRIVER_FAILURE","features":[303]},{"name":"ERROR_CANNOT_DETECT_PROCESS_ABORT","features":[303]},{"name":"ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[303]},{"name":"ERROR_CANNOT_FIND_WND_CLASS","features":[303]},{"name":"ERROR_CANNOT_GRANT_REQUESTED_OPLOCK","features":[303]},{"name":"ERROR_CANNOT_IMPERSONATE","features":[303]},{"name":"ERROR_CANNOT_LOAD_REGISTRY_FILE","features":[303]},{"name":"ERROR_CANNOT_MAKE","features":[303]},{"name":"ERROR_CANNOT_OPEN_PROFILE","features":[303]},{"name":"ERROR_CANNOT_SWITCH_RUNLEVEL","features":[303]},{"name":"ERROR_CANTFETCHBACKWARDS","features":[303]},{"name":"ERROR_CANTOPEN","features":[303]},{"name":"ERROR_CANTREAD","features":[303]},{"name":"ERROR_CANTSCROLLBACKWARDS","features":[303]},{"name":"ERROR_CANTWRITE","features":[303]},{"name":"ERROR_CANT_ACCESS_DOMAIN_INFO","features":[303]},{"name":"ERROR_CANT_ACCESS_FILE","features":[303]},{"name":"ERROR_CANT_ATTACH_TO_DEV_VOLUME","features":[303]},{"name":"ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[303]},{"name":"ERROR_CANT_CLEAR_ENCRYPTION_FLAG","features":[303]},{"name":"ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[303]},{"name":"ERROR_CANT_CROSS_RM_BOUNDARY","features":[303]},{"name":"ERROR_CANT_DELETE_LAST_ITEM","features":[303]},{"name":"ERROR_CANT_DISABLE_MANDATORY","features":[303]},{"name":"ERROR_CANT_ENABLE_DENY_ONLY","features":[303]},{"name":"ERROR_CANT_EVICT_ACTIVE_NODE","features":[303]},{"name":"ERROR_CANT_LOAD_CLASS_ICON","features":[303]},{"name":"ERROR_CANT_OPEN_ANONYMOUS","features":[303]},{"name":"ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[303]},{"name":"ERROR_CANT_RECOVER_WITH_HANDLE_OPEN","features":[303]},{"name":"ERROR_CANT_REMOVE_DEVINST","features":[303]},{"name":"ERROR_CANT_RESOLVE_FILENAME","features":[303]},{"name":"ERROR_CANT_TERMINATE_SELF","features":[303]},{"name":"ERROR_CANT_WAIT","features":[303]},{"name":"ERROR_CAN_NOT_COMPLETE","features":[303]},{"name":"ERROR_CAN_NOT_DEL_LOCAL_WINS","features":[303]},{"name":"ERROR_CAPAUTHZ_CHANGE_TYPE","features":[303]},{"name":"ERROR_CAPAUTHZ_DB_CORRUPTED","features":[303]},{"name":"ERROR_CAPAUTHZ_NOT_AUTHORIZED","features":[303]},{"name":"ERROR_CAPAUTHZ_NOT_DEVUNLOCKED","features":[303]},{"name":"ERROR_CAPAUTHZ_NOT_PROVISIONED","features":[303]},{"name":"ERROR_CAPAUTHZ_NO_POLICY","features":[303]},{"name":"ERROR_CAPAUTHZ_SCCD_DEV_MODE_REQUIRED","features":[303]},{"name":"ERROR_CAPAUTHZ_SCCD_INVALID_CATALOG","features":[303]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_AUTH_ENTITY","features":[303]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH","features":[303]},{"name":"ERROR_CAPAUTHZ_SCCD_PARSE_ERROR","features":[303]},{"name":"ERROR_CARDBUS_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CASE_DIFFERING_NAMES_IN_DIR","features":[303]},{"name":"ERROR_CASE_SENSITIVE_PATH","features":[303]},{"name":"ERROR_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[303]},{"name":"ERROR_CHECKING_FILE_SYSTEM","features":[303]},{"name":"ERROR_CHECKOUT_REQUIRED","features":[303]},{"name":"ERROR_CHILD_MUST_BE_VOLATILE","features":[303]},{"name":"ERROR_CHILD_NOT_COMPLETE","features":[303]},{"name":"ERROR_CHILD_PROCESS_BLOCKED","features":[303]},{"name":"ERROR_CHILD_WINDOW_MENU","features":[303]},{"name":"ERROR_CIMFS_IMAGE_CORRUPT","features":[303]},{"name":"ERROR_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CIRCULAR_DEPENDENCY","features":[303]},{"name":"ERROR_CLASSIC_COMPAT_MODE_NOT_ALLOWED","features":[303]},{"name":"ERROR_CLASS_ALREADY_EXISTS","features":[303]},{"name":"ERROR_CLASS_DOES_NOT_EXIST","features":[303]},{"name":"ERROR_CLASS_HAS_WINDOWS","features":[303]},{"name":"ERROR_CLASS_MISMATCH","features":[303]},{"name":"ERROR_CLEANER_CARTRIDGE_INSTALLED","features":[303]},{"name":"ERROR_CLEANER_CARTRIDGE_SPENT","features":[303]},{"name":"ERROR_CLEANER_SLOT_NOT_SET","features":[303]},{"name":"ERROR_CLEANER_SLOT_SET","features":[303]},{"name":"ERROR_CLIENT_INTERFACE_ALREADY_EXISTS","features":[303]},{"name":"ERROR_CLIENT_SERVER_PARAMETERS_INVALID","features":[303]},{"name":"ERROR_CLIPBOARD_NOT_OPEN","features":[303]},{"name":"ERROR_CLIPPING_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CLIP_DEVICE_LICENSE_MISSING","features":[303]},{"name":"ERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[303]},{"name":"ERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[303]},{"name":"ERROR_CLIP_LICENSE_EXPIRED","features":[303]},{"name":"ERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[303]},{"name":"ERROR_CLIP_LICENSE_INVALID_SIGNATURE","features":[303]},{"name":"ERROR_CLIP_LICENSE_NOT_FOUND","features":[303]},{"name":"ERROR_CLIP_LICENSE_NOT_SIGNED","features":[303]},{"name":"ERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[303]},{"name":"ERROR_CLOUD_FILE_ACCESS_DENIED","features":[303]},{"name":"ERROR_CLOUD_FILE_ALREADY_CONNECTED","features":[303]},{"name":"ERROR_CLOUD_FILE_AUTHENTICATION_FAILED","features":[303]},{"name":"ERROR_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[303]},{"name":"ERROR_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[303]},{"name":"ERROR_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[303]},{"name":"ERROR_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[303]},{"name":"ERROR_CLOUD_FILE_INVALID_REQUEST","features":[303]},{"name":"ERROR_CLOUD_FILE_IN_USE","features":[303]},{"name":"ERROR_CLOUD_FILE_METADATA_CORRUPT","features":[303]},{"name":"ERROR_CLOUD_FILE_METADATA_TOO_LARGE","features":[303]},{"name":"ERROR_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[303]},{"name":"ERROR_CLOUD_FILE_NOT_IN_SYNC","features":[303]},{"name":"ERROR_CLOUD_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[303]},{"name":"ERROR_CLOUD_FILE_PINNED","features":[303]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[303]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[303]},{"name":"ERROR_CLOUD_FILE_PROPERTY_CORRUPT","features":[303]},{"name":"ERROR_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[303]},{"name":"ERROR_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[303]},{"name":"ERROR_CLOUD_FILE_PROVIDER_TERMINATED","features":[303]},{"name":"ERROR_CLOUD_FILE_READ_ONLY_VOLUME","features":[303]},{"name":"ERROR_CLOUD_FILE_REQUEST_ABORTED","features":[303]},{"name":"ERROR_CLOUD_FILE_REQUEST_CANCELED","features":[303]},{"name":"ERROR_CLOUD_FILE_REQUEST_TIMEOUT","features":[303]},{"name":"ERROR_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[303]},{"name":"ERROR_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[303]},{"name":"ERROR_CLOUD_FILE_UNSUCCESSFUL","features":[303]},{"name":"ERROR_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[303]},{"name":"ERROR_CLOUD_FILE_VALIDATION_FAILED","features":[303]},{"name":"ERROR_CLUSCFG_ALREADY_COMMITTED","features":[303]},{"name":"ERROR_CLUSCFG_ROLLBACK_FAILED","features":[303]},{"name":"ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT","features":[303]},{"name":"ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTERLOG_CORRUPT","features":[303]},{"name":"ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE","features":[303]},{"name":"ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE","features":[303]},{"name":"ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE","features":[303]},{"name":"ERROR_CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE","features":[303]},{"name":"ERROR_CLUSTER_AFFINITY_CONFLICT","features":[303]},{"name":"ERROR_CLUSTER_BACKUP_IN_PROGRESS","features":[303]},{"name":"ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES","features":[303]},{"name":"ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME","features":[303]},{"name":"ERROR_CLUSTER_CANT_DESERIALIZE_DATA","features":[303]},{"name":"ERROR_CLUSTER_CSV_INVALID_HANDLE","features":[303]},{"name":"ERROR_CLUSTER_CSV_IO_PAUSE_TIMEOUT","features":[303]},{"name":"ERROR_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[303]},{"name":"ERROR_CLUSTER_DATABASE_SEQMISMATCH","features":[303]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS","features":[303]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS","features":[303]},{"name":"ERROR_CLUSTER_DATABASE_UPDATE_CONDITION_FAILED","features":[303]},{"name":"ERROR_CLUSTER_DISK_NOT_CONNECTED","features":[303]},{"name":"ERROR_CLUSTER_EVICT_INVALID_REQUEST","features":[303]},{"name":"ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP","features":[303]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION","features":[303]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY","features":[303]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS","features":[303]},{"name":"ERROR_CLUSTER_GROUP_BUSY","features":[303]},{"name":"ERROR_CLUSTER_GROUP_MOVING","features":[303]},{"name":"ERROR_CLUSTER_GROUP_QUEUED","features":[303]},{"name":"ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE","features":[303]},{"name":"ERROR_CLUSTER_GUM_NOT_LOCKER","features":[303]},{"name":"ERROR_CLUSTER_INCOMPATIBLE_VERSIONS","features":[303]},{"name":"ERROR_CLUSTER_INSTANCE_ID_MISMATCH","features":[303]},{"name":"ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION","features":[303]},{"name":"ERROR_CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME","features":[303]},{"name":"ERROR_CLUSTER_INVALID_IPV6_NETWORK","features":[303]},{"name":"ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK","features":[303]},{"name":"ERROR_CLUSTER_INVALID_NETWORK","features":[303]},{"name":"ERROR_CLUSTER_INVALID_NETWORK_PROVIDER","features":[303]},{"name":"ERROR_CLUSTER_INVALID_NODE","features":[303]},{"name":"ERROR_CLUSTER_INVALID_NODE_WEIGHT","features":[303]},{"name":"ERROR_CLUSTER_INVALID_REQUEST","features":[303]},{"name":"ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR","features":[303]},{"name":"ERROR_CLUSTER_INVALID_STRING_FORMAT","features":[303]},{"name":"ERROR_CLUSTER_INVALID_STRING_TERMINATION","features":[303]},{"name":"ERROR_CLUSTER_IPADDR_IN_USE","features":[303]},{"name":"ERROR_CLUSTER_JOIN_ABORTED","features":[303]},{"name":"ERROR_CLUSTER_JOIN_IN_PROGRESS","features":[303]},{"name":"ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[303]},{"name":"ERROR_CLUSTER_LAST_INTERNAL_NETWORK","features":[303]},{"name":"ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED","features":[303]},{"name":"ERROR_CLUSTER_MAX_NODES_IN_CLUSTER","features":[303]},{"name":"ERROR_CLUSTER_MEMBERSHIP_HALT","features":[303]},{"name":"ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE","features":[303]},{"name":"ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME","features":[303]},{"name":"ERROR_CLUSTER_NETINTERFACE_EXISTS","features":[303]},{"name":"ERROR_CLUSTER_NETINTERFACE_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[303]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_ONLINE","features":[303]},{"name":"ERROR_CLUSTER_NETWORK_EXISTS","features":[303]},{"name":"ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS","features":[303]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP","features":[303]},{"name":"ERROR_CLUSTER_NETWORK_NOT_INTERNAL","features":[303]},{"name":"ERROR_CLUSTER_NODE_ALREADY_DOWN","features":[303]},{"name":"ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT","features":[303]},{"name":"ERROR_CLUSTER_NODE_ALREADY_MEMBER","features":[303]},{"name":"ERROR_CLUSTER_NODE_ALREADY_UP","features":[303]},{"name":"ERROR_CLUSTER_NODE_DOWN","features":[303]},{"name":"ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS","features":[303]},{"name":"ERROR_CLUSTER_NODE_EXISTS","features":[303]},{"name":"ERROR_CLUSTER_NODE_IN_GRACE_PERIOD","features":[303]},{"name":"ERROR_CLUSTER_NODE_ISOLATED","features":[303]},{"name":"ERROR_CLUSTER_NODE_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_NODE_NOT_MEMBER","features":[303]},{"name":"ERROR_CLUSTER_NODE_NOT_PAUSED","features":[303]},{"name":"ERROR_CLUSTER_NODE_NOT_READY","features":[303]},{"name":"ERROR_CLUSTER_NODE_PAUSED","features":[303]},{"name":"ERROR_CLUSTER_NODE_QUARANTINED","features":[303]},{"name":"ERROR_CLUSTER_NODE_SHUTTING_DOWN","features":[303]},{"name":"ERROR_CLUSTER_NODE_UNREACHABLE","features":[303]},{"name":"ERROR_CLUSTER_NODE_UP","features":[303]},{"name":"ERROR_CLUSTER_NOT_INSTALLED","features":[303]},{"name":"ERROR_CLUSTER_NOT_SHARED_VOLUME","features":[303]},{"name":"ERROR_CLUSTER_NO_NET_ADAPTERS","features":[303]},{"name":"ERROR_CLUSTER_NO_QUORUM","features":[303]},{"name":"ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED","features":[303]},{"name":"ERROR_CLUSTER_NO_SECURITY_CONTEXT","features":[303]},{"name":"ERROR_CLUSTER_NULL_DATA","features":[303]},{"name":"ERROR_CLUSTER_OBJECT_ALREADY_USED","features":[303]},{"name":"ERROR_CLUSTER_OBJECT_IS_CLUSTER_SET_VM","features":[303]},{"name":"ERROR_CLUSTER_OLD_VERSION","features":[303]},{"name":"ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST","features":[303]},{"name":"ERROR_CLUSTER_PARAMETER_MISMATCH","features":[303]},{"name":"ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS","features":[303]},{"name":"ERROR_CLUSTER_PARTIAL_READ","features":[303]},{"name":"ERROR_CLUSTER_PARTIAL_SEND","features":[303]},{"name":"ERROR_CLUSTER_PARTIAL_WRITE","features":[303]},{"name":"ERROR_CLUSTER_POISONED","features":[303]},{"name":"ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH","features":[303]},{"name":"ERROR_CLUSTER_QUORUMLOG_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION","features":[303]},{"name":"ERROR_CLUSTER_RESNAME_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICATED","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_LOCKED_STATUS","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_NOT_MONITORED","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_BUSY","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_CALL","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION","features":[303]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE","features":[303]},{"name":"ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CLUSTER_RHS_FAILED_INITIALIZATION","features":[303]},{"name":"ERROR_CLUSTER_SHARED_VOLUMES_IN_USE","features":[303]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED","features":[303]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED","features":[303]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED","features":[303]},{"name":"ERROR_CLUSTER_SHUTTING_DOWN","features":[303]},{"name":"ERROR_CLUSTER_SINGLETON_RESOURCE","features":[303]},{"name":"ERROR_CLUSTER_SPACE_DEGRADED","features":[303]},{"name":"ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED","features":[303]},{"name":"ERROR_CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CLUSTER_TOO_MANY_NODES","features":[303]},{"name":"ERROR_CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED","features":[303]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS","features":[303]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPLETE","features":[303]},{"name":"ERROR_CLUSTER_UPGRADE_IN_PROGRESS","features":[303]},{"name":"ERROR_CLUSTER_UPGRADE_RESTART_REQUIRED","features":[303]},{"name":"ERROR_CLUSTER_USE_SHARED_VOLUMES_API","features":[303]},{"name":"ERROR_CLUSTER_WATCHDOG_TERMINATING","features":[303]},{"name":"ERROR_CLUSTER_WRONG_OS_VERSION","features":[303]},{"name":"ERROR_COLORSPACE_MISMATCH","features":[303]},{"name":"ERROR_COMMITMENT_LIMIT","features":[303]},{"name":"ERROR_COMMITMENT_MINIMUM","features":[303]},{"name":"ERROR_COMPRESSED_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_COMPRESSION_DISABLED","features":[303]},{"name":"ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[303]},{"name":"ERROR_COMPRESSION_NOT_BENEFICIAL","features":[303]},{"name":"ERROR_COM_TASK_STOP_PENDING","features":[303]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD","features":[303]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT","features":[303]},{"name":"ERROR_CONNECTION_ABORTED","features":[303]},{"name":"ERROR_CONNECTION_ACTIVE","features":[303]},{"name":"ERROR_CONNECTION_COUNT_LIMIT","features":[303]},{"name":"ERROR_CONNECTION_INVALID","features":[303]},{"name":"ERROR_CONNECTION_REFUSED","features":[303]},{"name":"ERROR_CONNECTION_UNAVAIL","features":[303]},{"name":"ERROR_CONTAINER_ASSIGNED","features":[303]},{"name":"ERROR_CONTENT_BLOCKED","features":[303]},{"name":"ERROR_CONTEXT_EXPIRED","features":[303]},{"name":"ERROR_CONTINUE","features":[303]},{"name":"ERROR_CONTROLLING_IEPORT","features":[303]},{"name":"ERROR_CONTROL_C_EXIT","features":[303]},{"name":"ERROR_CONTROL_ID_NOT_FOUND","features":[303]},{"name":"ERROR_CONVERT_TO_LARGE","features":[303]},{"name":"ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND","features":[303]},{"name":"ERROR_CORE_RESOURCE","features":[303]},{"name":"ERROR_CORRUPT_LOG_CLEARED","features":[303]},{"name":"ERROR_CORRUPT_LOG_CORRUPTED","features":[303]},{"name":"ERROR_CORRUPT_LOG_DELETED_FULL","features":[303]},{"name":"ERROR_CORRUPT_LOG_OVERFULL","features":[303]},{"name":"ERROR_CORRUPT_LOG_UNAVAILABLE","features":[303]},{"name":"ERROR_CORRUPT_SYSTEM_FILE","features":[303]},{"name":"ERROR_COULD_NOT_INTERPRET","features":[303]},{"name":"ERROR_COULD_NOT_RESIZE_LOG","features":[303]},{"name":"ERROR_COUNTER_TIMEOUT","features":[303]},{"name":"ERROR_CPU_SET_INVALID","features":[303]},{"name":"ERROR_CRASH_DUMP","features":[303]},{"name":"ERROR_CRC","features":[303]},{"name":"ERROR_CREATE_FAILED","features":[303]},{"name":"ERROR_CRED_REQUIRES_CONFIRMATION","features":[303]},{"name":"ERROR_CRM_PROTOCOL_ALREADY_EXISTS","features":[303]},{"name":"ERROR_CRM_PROTOCOL_NOT_FOUND","features":[303]},{"name":"ERROR_CROSS_PARTITION_VIOLATION","features":[303]},{"name":"ERROR_CSCSHARE_OFFLINE","features":[303]},{"name":"ERROR_CSV_VOLUME_NOT_LOCAL","features":[303]},{"name":"ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[303]},{"name":"ERROR_CS_ENCRYPTION_FILE_NOT_CSE","features":[303]},{"name":"ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[303]},{"name":"ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[303]},{"name":"ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[303]},{"name":"ERROR_CTLOG_INCONSISTENT_TRACKING_FILE","features":[303]},{"name":"ERROR_CTLOG_INVALID_TRACKING_STATE","features":[303]},{"name":"ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[303]},{"name":"ERROR_CTLOG_TRACKING_NOT_INITIALIZED","features":[303]},{"name":"ERROR_CTLOG_VHD_CHANGED_OFFLINE","features":[303]},{"name":"ERROR_CTX_ACCOUNT_RESTRICTION","features":[303]},{"name":"ERROR_CTX_BAD_VIDEO_MODE","features":[303]},{"name":"ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY","features":[303]},{"name":"ERROR_CTX_CDM_CONNECT","features":[303]},{"name":"ERROR_CTX_CDM_DISCONNECT","features":[303]},{"name":"ERROR_CTX_CLIENT_LICENSE_IN_USE","features":[303]},{"name":"ERROR_CTX_CLIENT_LICENSE_NOT_SET","features":[303]},{"name":"ERROR_CTX_CLIENT_QUERY_TIMEOUT","features":[303]},{"name":"ERROR_CTX_CLOSE_PENDING","features":[303]},{"name":"ERROR_CTX_CONSOLE_CONNECT","features":[303]},{"name":"ERROR_CTX_CONSOLE_DISCONNECT","features":[303]},{"name":"ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED","features":[303]},{"name":"ERROR_CTX_GRAPHICS_INVALID","features":[303]},{"name":"ERROR_CTX_INVALID_MODEMNAME","features":[303]},{"name":"ERROR_CTX_INVALID_PD","features":[303]},{"name":"ERROR_CTX_INVALID_WD","features":[303]},{"name":"ERROR_CTX_LICENSE_CLIENT_INVALID","features":[303]},{"name":"ERROR_CTX_LICENSE_EXPIRED","features":[303]},{"name":"ERROR_CTX_LICENSE_NOT_AVAILABLE","features":[303]},{"name":"ERROR_CTX_LOGON_DISABLED","features":[303]},{"name":"ERROR_CTX_MODEM_INF_NOT_FOUND","features":[303]},{"name":"ERROR_CTX_MODEM_RESPONSE_BUSY","features":[303]},{"name":"ERROR_CTX_MODEM_RESPONSE_ERROR","features":[303]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_CARRIER","features":[303]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[303]},{"name":"ERROR_CTX_MODEM_RESPONSE_TIMEOUT","features":[303]},{"name":"ERROR_CTX_MODEM_RESPONSE_VOICE","features":[303]},{"name":"ERROR_CTX_NOT_CONSOLE","features":[303]},{"name":"ERROR_CTX_NO_FORCE_LOGOFF","features":[303]},{"name":"ERROR_CTX_NO_OUTBUF","features":[303]},{"name":"ERROR_CTX_PD_NOT_FOUND","features":[303]},{"name":"ERROR_CTX_SECURITY_LAYER_ERROR","features":[303]},{"name":"ERROR_CTX_SERVICE_NAME_COLLISION","features":[303]},{"name":"ERROR_CTX_SESSION_IN_USE","features":[303]},{"name":"ERROR_CTX_SHADOW_DENIED","features":[303]},{"name":"ERROR_CTX_SHADOW_DISABLED","features":[303]},{"name":"ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[303]},{"name":"ERROR_CTX_SHADOW_INVALID","features":[303]},{"name":"ERROR_CTX_SHADOW_NOT_RUNNING","features":[303]},{"name":"ERROR_CTX_TD_ERROR","features":[303]},{"name":"ERROR_CTX_WD_NOT_FOUND","features":[303]},{"name":"ERROR_CTX_WINSTATIONS_DISABLED","features":[303]},{"name":"ERROR_CTX_WINSTATION_ACCESS_DENIED","features":[303]},{"name":"ERROR_CTX_WINSTATION_ALREADY_EXISTS","features":[303]},{"name":"ERROR_CTX_WINSTATION_BUSY","features":[303]},{"name":"ERROR_CTX_WINSTATION_NAME_INVALID","features":[303]},{"name":"ERROR_CTX_WINSTATION_NOT_FOUND","features":[303]},{"name":"ERROR_CURRENT_DIRECTORY","features":[303]},{"name":"ERROR_CURRENT_DOMAIN_NOT_ALLOWED","features":[303]},{"name":"ERROR_CURRENT_TRANSACTION_NOT_VALID","features":[303]},{"name":"ERROR_DATABASE_BACKUP_CORRUPT","features":[303]},{"name":"ERROR_DATABASE_DOES_NOT_EXIST","features":[303]},{"name":"ERROR_DATABASE_FAILURE","features":[303]},{"name":"ERROR_DATABASE_FULL","features":[303]},{"name":"ERROR_DATATYPE_MISMATCH","features":[303]},{"name":"ERROR_DATA_CHECKSUM_ERROR","features":[303]},{"name":"ERROR_DATA_LOST_REPAIR","features":[303]},{"name":"ERROR_DATA_NOT_ACCEPTED","features":[303]},{"name":"ERROR_DAX_MAPPING_EXISTS","features":[303]},{"name":"ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN","features":[303]},{"name":"ERROR_DBG_COMMAND_EXCEPTION","features":[303]},{"name":"ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN","features":[303]},{"name":"ERROR_DBG_CONTINUE","features":[303]},{"name":"ERROR_DBG_CONTROL_BREAK","features":[303]},{"name":"ERROR_DBG_CONTROL_C","features":[303]},{"name":"ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN","features":[303]},{"name":"ERROR_DBG_EXCEPTION_HANDLED","features":[303]},{"name":"ERROR_DBG_EXCEPTION_NOT_HANDLED","features":[303]},{"name":"ERROR_DBG_PRINTEXCEPTION_C","features":[303]},{"name":"ERROR_DBG_REPLY_LATER","features":[303]},{"name":"ERROR_DBG_RIPEXCEPTION","features":[303]},{"name":"ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN","features":[303]},{"name":"ERROR_DBG_TERMINATE_PROCESS","features":[303]},{"name":"ERROR_DBG_TERMINATE_THREAD","features":[303]},{"name":"ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE","features":[303]},{"name":"ERROR_DC_NOT_FOUND","features":[303]},{"name":"ERROR_DDE_FAIL","features":[303]},{"name":"ERROR_DDM_NOT_RUNNING","features":[303]},{"name":"ERROR_DEBUGGER_INACTIVE","features":[303]},{"name":"ERROR_DEBUG_ATTACH_FAILED","features":[303]},{"name":"ERROR_DECRYPTION_FAILED","features":[303]},{"name":"ERROR_DELAY_LOAD_FAILED","features":[303]},{"name":"ERROR_DELETE_PENDING","features":[303]},{"name":"ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED","features":[303]},{"name":"ERROR_DELETING_ICM_XFORM","features":[303]},{"name":"ERROR_DEPENDENCY_ALREADY_EXISTS","features":[303]},{"name":"ERROR_DEPENDENCY_NOT_ALLOWED","features":[303]},{"name":"ERROR_DEPENDENCY_NOT_FOUND","features":[303]},{"name":"ERROR_DEPENDENCY_TREE_TOO_COMPLEX","features":[303]},{"name":"ERROR_DEPENDENT_RESOURCE_EXISTS","features":[303]},{"name":"ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT","features":[303]},{"name":"ERROR_DEPENDENT_SERVICES_RUNNING","features":[303]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_POLICY","features":[303]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY","features":[303]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF","features":[303]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE","features":[303]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE","features":[303]},{"name":"ERROR_DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY","features":[303]},{"name":"ERROR_DEPLOYMENT_OPTION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_DESTINATION_ELEMENT_FULL","features":[303]},{"name":"ERROR_DESTROY_OBJECT_OF_OTHER_THREAD","features":[303]},{"name":"ERROR_DEVICE_ALREADY_ATTACHED","features":[303]},{"name":"ERROR_DEVICE_ALREADY_REMEMBERED","features":[303]},{"name":"ERROR_DEVICE_DOOR_OPEN","features":[303]},{"name":"ERROR_DEVICE_ENUMERATION_ERROR","features":[303]},{"name":"ERROR_DEVICE_FEATURE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_DEVICE_HARDWARE_ERROR","features":[303]},{"name":"ERROR_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[303]},{"name":"ERROR_DEVICE_INSTALLER_NOT_READY","features":[303]},{"name":"ERROR_DEVICE_INSTALL_BLOCKED","features":[303]},{"name":"ERROR_DEVICE_INTERFACE_ACTIVE","features":[303]},{"name":"ERROR_DEVICE_INTERFACE_REMOVED","features":[303]},{"name":"ERROR_DEVICE_IN_MAINTENANCE","features":[303]},{"name":"ERROR_DEVICE_IN_USE","features":[303]},{"name":"ERROR_DEVICE_NOT_AVAILABLE","features":[303]},{"name":"ERROR_DEVICE_NOT_CONNECTED","features":[303]},{"name":"ERROR_DEVICE_NOT_PARTITIONED","features":[303]},{"name":"ERROR_DEVICE_NO_RESOURCES","features":[303]},{"name":"ERROR_DEVICE_REINITIALIZATION_NEEDED","features":[303]},{"name":"ERROR_DEVICE_REMOVED","features":[303]},{"name":"ERROR_DEVICE_REQUIRES_CLEANING","features":[303]},{"name":"ERROR_DEVICE_RESET_REQUIRED","features":[303]},{"name":"ERROR_DEVICE_SUPPORT_IN_PROGRESS","features":[303]},{"name":"ERROR_DEVICE_UNREACHABLE","features":[303]},{"name":"ERROR_DEVINFO_DATA_LOCKED","features":[303]},{"name":"ERROR_DEVINFO_LIST_LOCKED","features":[303]},{"name":"ERROR_DEVINFO_NOT_REGISTERED","features":[303]},{"name":"ERROR_DEVINSTALL_QUEUE_NONNATIVE","features":[303]},{"name":"ERROR_DEVINST_ALREADY_EXISTS","features":[303]},{"name":"ERROR_DEV_NOT_EXIST","features":[303]},{"name":"ERROR_DEV_SIDELOAD_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DHCP_ADDRESS_CONFLICT","features":[303]},{"name":"ERROR_DIALIN_HOURS_RESTRICTION","features":[303]},{"name":"ERROR_DIALOUT_HOURS_RESTRICTION","features":[303]},{"name":"ERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST","features":[303]},{"name":"ERROR_DIFFERENT_SERVICE_ACCOUNT","features":[303]},{"name":"ERROR_DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED","features":[303]},{"name":"ERROR_DIF_BINDING_API_NOT_FOUND","features":[303]},{"name":"ERROR_DIF_IOCALLBACK_NOT_REPLACED","features":[303]},{"name":"ERROR_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[303]},{"name":"ERROR_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[303]},{"name":"ERROR_DIF_VOLATILE_INVALID_INFO","features":[303]},{"name":"ERROR_DIF_VOLATILE_NOT_ALLOWED","features":[303]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[303]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[303]},{"name":"ERROR_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[303]},{"name":"ERROR_DIRECTORY","features":[303]},{"name":"ERROR_DIRECTORY_NOT_RM","features":[303]},{"name":"ERROR_DIRECTORY_NOT_SUPPORTED","features":[303]},{"name":"ERROR_DIRECT_ACCESS_HANDLE","features":[303]},{"name":"ERROR_DIR_EFS_DISALLOWED","features":[303]},{"name":"ERROR_DIR_NOT_EMPTY","features":[303]},{"name":"ERROR_DIR_NOT_ROOT","features":[303]},{"name":"ERROR_DISCARDED","features":[303]},{"name":"ERROR_DISK_CHANGE","features":[303]},{"name":"ERROR_DISK_CORRUPT","features":[303]},{"name":"ERROR_DISK_FULL","features":[303]},{"name":"ERROR_DISK_NOT_CSV_CAPABLE","features":[303]},{"name":"ERROR_DISK_OPERATION_FAILED","features":[303]},{"name":"ERROR_DISK_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_DISK_RECALIBRATE_FAILED","features":[303]},{"name":"ERROR_DISK_REPAIR_DISABLED","features":[303]},{"name":"ERROR_DISK_REPAIR_REDIRECTED","features":[303]},{"name":"ERROR_DISK_REPAIR_UNSUCCESSFUL","features":[303]},{"name":"ERROR_DISK_RESET_FAILED","features":[303]},{"name":"ERROR_DISK_RESOURCES_EXHAUSTED","features":[303]},{"name":"ERROR_DISK_TOO_FRAGMENTED","features":[303]},{"name":"ERROR_DI_BAD_PATH","features":[303]},{"name":"ERROR_DI_DONT_INSTALL","features":[303]},{"name":"ERROR_DI_DO_DEFAULT","features":[303]},{"name":"ERROR_DI_FUNCTION_OBSOLETE","features":[303]},{"name":"ERROR_DI_NOFILECOPY","features":[303]},{"name":"ERROR_DI_POSTPROCESSING_REQUIRED","features":[303]},{"name":"ERROR_DLL_INIT_FAILED","features":[303]},{"name":"ERROR_DLL_INIT_FAILED_LOGOFF","features":[303]},{"name":"ERROR_DLL_MIGHT_BE_INCOMPATIBLE","features":[303]},{"name":"ERROR_DLL_MIGHT_BE_INSECURE","features":[303]},{"name":"ERROR_DLL_NOT_FOUND","features":[303]},{"name":"ERROR_DLP_POLICY_DENIES_OPERATION","features":[303]},{"name":"ERROR_DLP_POLICY_SILENTLY_FAIL","features":[303]},{"name":"ERROR_DLP_POLICY_WARNS_AGAINST_OPERATION","features":[303]},{"name":"ERROR_DM_OPERATION_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DOMAIN_CONTROLLER_EXISTS","features":[303]},{"name":"ERROR_DOMAIN_CONTROLLER_NOT_FOUND","features":[303]},{"name":"ERROR_DOMAIN_CTRLR_CONFIG_ERROR","features":[303]},{"name":"ERROR_DOMAIN_EXISTS","features":[303]},{"name":"ERROR_DOMAIN_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION","features":[303]},{"name":"ERROR_DOMAIN_TRUST_INCONSISTENT","features":[303]},{"name":"ERROR_DOWNGRADE_DETECTED","features":[303]},{"name":"ERROR_DPL_NOT_SUPPORTED_FOR_USER","features":[303]},{"name":"ERROR_DRIVERS_LEAKING_LOCKED_PAGES","features":[303]},{"name":"ERROR_DRIVER_BLOCKED","features":[303]},{"name":"ERROR_DRIVER_CANCEL_TIMEOUT","features":[303]},{"name":"ERROR_DRIVER_DATABASE_ERROR","features":[303]},{"name":"ERROR_DRIVER_FAILED_PRIOR_UNLOAD","features":[303]},{"name":"ERROR_DRIVER_FAILED_SLEEP","features":[303]},{"name":"ERROR_DRIVER_INSTALL_BLOCKED","features":[303]},{"name":"ERROR_DRIVER_NONNATIVE","features":[303]},{"name":"ERROR_DRIVER_PROCESS_TERMINATED","features":[303]},{"name":"ERROR_DRIVER_STORE_ADD_FAILED","features":[303]},{"name":"ERROR_DRIVER_STORE_DELETE_FAILED","features":[303]},{"name":"ERROR_DRIVE_LOCKED","features":[303]},{"name":"ERROR_DRIVE_MEDIA_MISMATCH","features":[303]},{"name":"ERROR_DS_ADD_REPLICA_INHIBITED","features":[303]},{"name":"ERROR_DS_ADMIN_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DS_AFFECTS_MULTIPLE_DSAS","features":[303]},{"name":"ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[303]},{"name":"ERROR_DS_ALIASED_OBJ_MISSING","features":[303]},{"name":"ERROR_DS_ALIAS_DEREF_PROBLEM","features":[303]},{"name":"ERROR_DS_ALIAS_POINTS_TO_ALIAS","features":[303]},{"name":"ERROR_DS_ALIAS_PROBLEM","features":[303]},{"name":"ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[303]},{"name":"ERROR_DS_ATTRIBUTE_OWNED_BY_SAM","features":[303]},{"name":"ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[303]},{"name":"ERROR_DS_ATT_ALREADY_EXISTS","features":[303]},{"name":"ERROR_DS_ATT_IS_NOT_ON_OBJ","features":[303]},{"name":"ERROR_DS_ATT_NOT_DEF_FOR_CLASS","features":[303]},{"name":"ERROR_DS_ATT_NOT_DEF_IN_SCHEMA","features":[303]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_ID","features":[303]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_SYNTAX","features":[303]},{"name":"ERROR_DS_ATT_VAL_ALREADY_EXISTS","features":[303]},{"name":"ERROR_DS_AUDIT_FAILURE","features":[303]},{"name":"ERROR_DS_AUTHORIZATION_FAILED","features":[303]},{"name":"ERROR_DS_AUTH_METHOD_NOT_SUPPORTED","features":[303]},{"name":"ERROR_DS_AUTH_UNKNOWN","features":[303]},{"name":"ERROR_DS_AUX_CLS_TEST_FAIL","features":[303]},{"name":"ERROR_DS_BACKLINK_WITHOUT_LINK","features":[303]},{"name":"ERROR_DS_BAD_ATT_SCHEMA_SYNTAX","features":[303]},{"name":"ERROR_DS_BAD_HIERARCHY_FILE","features":[303]},{"name":"ERROR_DS_BAD_INSTANCE_TYPE","features":[303]},{"name":"ERROR_DS_BAD_NAME_SYNTAX","features":[303]},{"name":"ERROR_DS_BAD_RDN_ATT_ID_SYNTAX","features":[303]},{"name":"ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED","features":[303]},{"name":"ERROR_DS_BUSY","features":[303]},{"name":"ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD","features":[303]},{"name":"ERROR_DS_CANT_ADD_ATT_VALUES","features":[303]},{"name":"ERROR_DS_CANT_ADD_SYSTEM_ONLY","features":[303]},{"name":"ERROR_DS_CANT_ADD_TO_GC","features":[303]},{"name":"ERROR_DS_CANT_CACHE_ATT","features":[303]},{"name":"ERROR_DS_CANT_CACHE_CLASS","features":[303]},{"name":"ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC","features":[303]},{"name":"ERROR_DS_CANT_CREATE_UNDER_SCHEMA","features":[303]},{"name":"ERROR_DS_CANT_DELETE","features":[303]},{"name":"ERROR_DS_CANT_DELETE_DSA_OBJ","features":[303]},{"name":"ERROR_DS_CANT_DEL_MASTER_CROSSREF","features":[303]},{"name":"ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC","features":[303]},{"name":"ERROR_DS_CANT_DEREF_ALIAS","features":[303]},{"name":"ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN","features":[303]},{"name":"ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF","features":[303]},{"name":"ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN","features":[303]},{"name":"ERROR_DS_CANT_FIND_DSA_OBJ","features":[303]},{"name":"ERROR_DS_CANT_FIND_EXPECTED_NC","features":[303]},{"name":"ERROR_DS_CANT_FIND_NC_IN_CACHE","features":[303]},{"name":"ERROR_DS_CANT_MIX_MASTER_AND_REPS","features":[303]},{"name":"ERROR_DS_CANT_MOD_OBJ_CLASS","features":[303]},{"name":"ERROR_DS_CANT_MOD_PRIMARYGROUPID","features":[303]},{"name":"ERROR_DS_CANT_MOD_SYSTEM_ONLY","features":[303]},{"name":"ERROR_DS_CANT_MOVE_ACCOUNT_GROUP","features":[303]},{"name":"ERROR_DS_CANT_MOVE_APP_BASIC_GROUP","features":[303]},{"name":"ERROR_DS_CANT_MOVE_APP_QUERY_GROUP","features":[303]},{"name":"ERROR_DS_CANT_MOVE_DELETED_OBJECT","features":[303]},{"name":"ERROR_DS_CANT_MOVE_RESOURCE_GROUP","features":[303]},{"name":"ERROR_DS_CANT_ON_NON_LEAF","features":[303]},{"name":"ERROR_DS_CANT_ON_RDN","features":[303]},{"name":"ERROR_DS_CANT_REMOVE_ATT_CACHE","features":[303]},{"name":"ERROR_DS_CANT_REMOVE_CLASS_CACHE","features":[303]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT","features":[303]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT_VAL","features":[303]},{"name":"ERROR_DS_CANT_REPLACE_HIDDEN_REC","features":[303]},{"name":"ERROR_DS_CANT_RETRIEVE_ATTS","features":[303]},{"name":"ERROR_DS_CANT_RETRIEVE_CHILD","features":[303]},{"name":"ERROR_DS_CANT_RETRIEVE_DN","features":[303]},{"name":"ERROR_DS_CANT_RETRIEVE_INSTANCE","features":[303]},{"name":"ERROR_DS_CANT_RETRIEVE_SD","features":[303]},{"name":"ERROR_DS_CANT_START","features":[303]},{"name":"ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ","features":[303]},{"name":"ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS","features":[303]},{"name":"ERROR_DS_CHILDREN_EXIST","features":[303]},{"name":"ERROR_DS_CLASS_MUST_BE_CONCRETE","features":[303]},{"name":"ERROR_DS_CLASS_NOT_DSA","features":[303]},{"name":"ERROR_DS_CLIENT_LOOP","features":[303]},{"name":"ERROR_DS_CODE_INCONSISTENCY","features":[303]},{"name":"ERROR_DS_COMPARE_FALSE","features":[303]},{"name":"ERROR_DS_COMPARE_TRUE","features":[303]},{"name":"ERROR_DS_CONFIDENTIALITY_REQUIRED","features":[303]},{"name":"ERROR_DS_CONFIG_PARAM_MISSING","features":[303]},{"name":"ERROR_DS_CONSTRAINT_VIOLATION","features":[303]},{"name":"ERROR_DS_CONSTRUCTED_ATT_MOD","features":[303]},{"name":"ERROR_DS_CONTROL_NOT_FOUND","features":[303]},{"name":"ERROR_DS_COULDNT_CONTACT_FSMO","features":[303]},{"name":"ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE","features":[303]},{"name":"ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE","features":[303]},{"name":"ERROR_DS_COULDNT_UPDATE_SPNS","features":[303]},{"name":"ERROR_DS_COUNTING_AB_INDICES_FAILED","features":[303]},{"name":"ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD","features":[303]},{"name":"ERROR_DS_CROSS_DOM_MOVE_ERROR","features":[303]},{"name":"ERROR_DS_CROSS_NC_DN_RENAME","features":[303]},{"name":"ERROR_DS_CROSS_REF_BUSY","features":[303]},{"name":"ERROR_DS_CROSS_REF_EXISTS","features":[303]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE","features":[303]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2","features":[303]},{"name":"ERROR_DS_DATABASE_ERROR","features":[303]},{"name":"ERROR_DS_DECODING_ERROR","features":[303]},{"name":"ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED","features":[303]},{"name":"ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST","features":[303]},{"name":"ERROR_DS_DIFFERENT_REPL_EPOCHS","features":[303]},{"name":"ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER","features":[303]},{"name":"ERROR_DS_DISALLOWED_NC_REDIRECT","features":[303]},{"name":"ERROR_DS_DNS_LOOKUP_FAILURE","features":[303]},{"name":"ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[303]},{"name":"ERROR_DS_DOMAIN_RENAME_IN_PROGRESS","features":[303]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_HIGH","features":[303]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_LOW","features":[303]},{"name":"ERROR_DS_DRA_ABANDON_SYNC","features":[303]},{"name":"ERROR_DS_DRA_ACCESS_DENIED","features":[303]},{"name":"ERROR_DS_DRA_BAD_DN","features":[303]},{"name":"ERROR_DS_DRA_BAD_INSTANCE_TYPE","features":[303]},{"name":"ERROR_DS_DRA_BAD_NC","features":[303]},{"name":"ERROR_DS_DRA_BUSY","features":[303]},{"name":"ERROR_DS_DRA_CONNECTION_FAILED","features":[303]},{"name":"ERROR_DS_DRA_CORRUPT_UTD_VECTOR","features":[303]},{"name":"ERROR_DS_DRA_DB_ERROR","features":[303]},{"name":"ERROR_DS_DRA_DN_EXISTS","features":[303]},{"name":"ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT","features":[303]},{"name":"ERROR_DS_DRA_EXTN_CONNECTION_FAILED","features":[303]},{"name":"ERROR_DS_DRA_GENERIC","features":[303]},{"name":"ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET","features":[303]},{"name":"ERROR_DS_DRA_INCONSISTENT_DIT","features":[303]},{"name":"ERROR_DS_DRA_INTERNAL_ERROR","features":[303]},{"name":"ERROR_DS_DRA_INVALID_PARAMETER","features":[303]},{"name":"ERROR_DS_DRA_MAIL_PROBLEM","features":[303]},{"name":"ERROR_DS_DRA_MISSING_KRBTGT_SECRET","features":[303]},{"name":"ERROR_DS_DRA_MISSING_PARENT","features":[303]},{"name":"ERROR_DS_DRA_NAME_COLLISION","features":[303]},{"name":"ERROR_DS_DRA_NOT_SUPPORTED","features":[303]},{"name":"ERROR_DS_DRA_NO_REPLICA","features":[303]},{"name":"ERROR_DS_DRA_OBJ_IS_REP_SOURCE","features":[303]},{"name":"ERROR_DS_DRA_OBJ_NC_MISMATCH","features":[303]},{"name":"ERROR_DS_DRA_OUT_OF_MEM","features":[303]},{"name":"ERROR_DS_DRA_OUT_SCHEDULE_WINDOW","features":[303]},{"name":"ERROR_DS_DRA_PREEMPTED","features":[303]},{"name":"ERROR_DS_DRA_RECYCLED_TARGET","features":[303]},{"name":"ERROR_DS_DRA_REF_ALREADY_EXISTS","features":[303]},{"name":"ERROR_DS_DRA_REF_NOT_FOUND","features":[303]},{"name":"ERROR_DS_DRA_REPL_PENDING","features":[303]},{"name":"ERROR_DS_DRA_RPC_CANCELLED","features":[303]},{"name":"ERROR_DS_DRA_SCHEMA_CONFLICT","features":[303]},{"name":"ERROR_DS_DRA_SCHEMA_INFO_SHIP","features":[303]},{"name":"ERROR_DS_DRA_SCHEMA_MISMATCH","features":[303]},{"name":"ERROR_DS_DRA_SECRETS_DENIED","features":[303]},{"name":"ERROR_DS_DRA_SHUTDOWN","features":[303]},{"name":"ERROR_DS_DRA_SINK_DISABLED","features":[303]},{"name":"ERROR_DS_DRA_SOURCE_DISABLED","features":[303]},{"name":"ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA","features":[303]},{"name":"ERROR_DS_DRA_SOURCE_REINSTALLED","features":[303]},{"name":"ERROR_DS_DRS_EXTENSIONS_CHANGED","features":[303]},{"name":"ERROR_DS_DSA_MUST_BE_INT_MASTER","features":[303]},{"name":"ERROR_DS_DST_DOMAIN_NOT_NATIVE","features":[303]},{"name":"ERROR_DS_DST_NC_MISMATCH","features":[303]},{"name":"ERROR_DS_DS_REQUIRED","features":[303]},{"name":"ERROR_DS_DUPLICATE_ID_FOUND","features":[303]},{"name":"ERROR_DS_DUP_LDAP_DISPLAY_NAME","features":[303]},{"name":"ERROR_DS_DUP_LINK_ID","features":[303]},{"name":"ERROR_DS_DUP_MAPI_ID","features":[303]},{"name":"ERROR_DS_DUP_MSDS_INTID","features":[303]},{"name":"ERROR_DS_DUP_OID","features":[303]},{"name":"ERROR_DS_DUP_RDN","features":[303]},{"name":"ERROR_DS_DUP_SCHEMA_ID_GUID","features":[303]},{"name":"ERROR_DS_ENCODING_ERROR","features":[303]},{"name":"ERROR_DS_EPOCH_MISMATCH","features":[303]},{"name":"ERROR_DS_EXISTING_AD_CHILD_NC","features":[303]},{"name":"ERROR_DS_EXISTS_IN_AUX_CLS","features":[303]},{"name":"ERROR_DS_EXISTS_IN_MAY_HAVE","features":[303]},{"name":"ERROR_DS_EXISTS_IN_MUST_HAVE","features":[303]},{"name":"ERROR_DS_EXISTS_IN_POSS_SUP","features":[303]},{"name":"ERROR_DS_EXISTS_IN_RDNATTID","features":[303]},{"name":"ERROR_DS_EXISTS_IN_SUB_CLS","features":[303]},{"name":"ERROR_DS_FILTER_UNKNOWN","features":[303]},{"name":"ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS","features":[303]},{"name":"ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[303]},{"name":"ERROR_DS_FOREST_VERSION_TOO_HIGH","features":[303]},{"name":"ERROR_DS_FOREST_VERSION_TOO_LOW","features":[303]},{"name":"ERROR_DS_GCVERIFY_ERROR","features":[303]},{"name":"ERROR_DS_GC_NOT_AVAILABLE","features":[303]},{"name":"ERROR_DS_GC_REQUIRED","features":[303]},{"name":"ERROR_DS_GENERIC_ERROR","features":[303]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[303]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[303]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[303]},{"name":"ERROR_DS_GOVERNSID_MISSING","features":[303]},{"name":"ERROR_DS_GROUP_CONVERSION_ERROR","features":[303]},{"name":"ERROR_DS_HAVE_PRIMARY_MEMBERS","features":[303]},{"name":"ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED","features":[303]},{"name":"ERROR_DS_HIERARCHY_TABLE_TOO_DEEP","features":[303]},{"name":"ERROR_DS_HIGH_ADLDS_FFL","features":[303]},{"name":"ERROR_DS_HIGH_DSA_VERSION","features":[303]},{"name":"ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD","features":[303]},{"name":"ERROR_DS_ILLEGAL_MOD_OPERATION","features":[303]},{"name":"ERROR_DS_ILLEGAL_SUPERIOR","features":[303]},{"name":"ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION","features":[303]},{"name":"ERROR_DS_INAPPROPRIATE_AUTH","features":[303]},{"name":"ERROR_DS_INAPPROPRIATE_MATCHING","features":[303]},{"name":"ERROR_DS_INCOMPATIBLE_CONTROLS_USED","features":[303]},{"name":"ERROR_DS_INCOMPATIBLE_VERSION","features":[303]},{"name":"ERROR_DS_INCORRECT_ROLE_OWNER","features":[303]},{"name":"ERROR_DS_INIT_FAILURE","features":[303]},{"name":"ERROR_DS_INIT_FAILURE_CONSOLE","features":[303]},{"name":"ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE","features":[303]},{"name":"ERROR_DS_INSTALL_NO_SRC_SCH_VERSION","features":[303]},{"name":"ERROR_DS_INSTALL_SCHEMA_MISMATCH","features":[303]},{"name":"ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT","features":[303]},{"name":"ERROR_DS_INSUFF_ACCESS_RIGHTS","features":[303]},{"name":"ERROR_DS_INTERNAL_FAILURE","features":[303]},{"name":"ERROR_DS_INVALID_ATTRIBUTE_SYNTAX","features":[303]},{"name":"ERROR_DS_INVALID_DMD","features":[303]},{"name":"ERROR_DS_INVALID_DN_SYNTAX","features":[303]},{"name":"ERROR_DS_INVALID_GROUP_TYPE","features":[303]},{"name":"ERROR_DS_INVALID_LDAP_DISPLAY_NAME","features":[303]},{"name":"ERROR_DS_INVALID_NAME_FOR_SPN","features":[303]},{"name":"ERROR_DS_INVALID_ROLE_OWNER","features":[303]},{"name":"ERROR_DS_INVALID_SCRIPT","features":[303]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG","features":[303]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE","features":[303]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_TUPLE","features":[303]},{"name":"ERROR_DS_IS_LEAF","features":[303]},{"name":"ERROR_DS_KEY_NOT_UNIQUE","features":[303]},{"name":"ERROR_DS_LDAP_SEND_QUEUE_FULL","features":[303]},{"name":"ERROR_DS_LINK_ID_NOT_AVAILABLE","features":[303]},{"name":"ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[303]},{"name":"ERROR_DS_LOCAL_ERROR","features":[303]},{"name":"ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[303]},{"name":"ERROR_DS_LOOP_DETECT","features":[303]},{"name":"ERROR_DS_LOW_ADLDS_FFL","features":[303]},{"name":"ERROR_DS_LOW_DSA_VERSION","features":[303]},{"name":"ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4","features":[303]},{"name":"ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_DS_MAPI_ID_NOT_AVAILABLE","features":[303]},{"name":"ERROR_DS_MASTERDSA_REQUIRED","features":[303]},{"name":"ERROR_DS_MAX_OBJ_SIZE_EXCEEDED","features":[303]},{"name":"ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[303]},{"name":"ERROR_DS_MISSING_EXPECTED_ATT","features":[303]},{"name":"ERROR_DS_MISSING_FOREST_TRUST","features":[303]},{"name":"ERROR_DS_MISSING_FSMO_SETTINGS","features":[303]},{"name":"ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER","features":[303]},{"name":"ERROR_DS_MISSING_REQUIRED_ATT","features":[303]},{"name":"ERROR_DS_MISSING_SUPREF","features":[303]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG","features":[303]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE","features":[303]},{"name":"ERROR_DS_MODIFYDN_WRONG_GRANDPARENT","features":[303]},{"name":"ERROR_DS_MUST_BE_RUN_ON_DST_DC","features":[303]},{"name":"ERROR_DS_NAME_ERROR_DOMAIN_ONLY","features":[303]},{"name":"ERROR_DS_NAME_ERROR_NOT_FOUND","features":[303]},{"name":"ERROR_DS_NAME_ERROR_NOT_UNIQUE","features":[303]},{"name":"ERROR_DS_NAME_ERROR_NO_MAPPING","features":[303]},{"name":"ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[303]},{"name":"ERROR_DS_NAME_ERROR_RESOLVING","features":[303]},{"name":"ERROR_DS_NAME_ERROR_TRUST_REFERRAL","features":[303]},{"name":"ERROR_DS_NAME_NOT_UNIQUE","features":[303]},{"name":"ERROR_DS_NAME_REFERENCE_INVALID","features":[303]},{"name":"ERROR_DS_NAME_TOO_LONG","features":[303]},{"name":"ERROR_DS_NAME_TOO_MANY_PARTS","features":[303]},{"name":"ERROR_DS_NAME_TYPE_UNKNOWN","features":[303]},{"name":"ERROR_DS_NAME_UNPARSEABLE","features":[303]},{"name":"ERROR_DS_NAME_VALUE_TOO_LONG","features":[303]},{"name":"ERROR_DS_NAMING_MASTER_GC","features":[303]},{"name":"ERROR_DS_NAMING_VIOLATION","features":[303]},{"name":"ERROR_DS_NCNAME_MISSING_CR_REF","features":[303]},{"name":"ERROR_DS_NCNAME_MUST_BE_NC","features":[303]},{"name":"ERROR_DS_NC_MUST_HAVE_NC_PARENT","features":[303]},{"name":"ERROR_DS_NC_STILL_HAS_DSAS","features":[303]},{"name":"ERROR_DS_NONEXISTENT_MAY_HAVE","features":[303]},{"name":"ERROR_DS_NONEXISTENT_MUST_HAVE","features":[303]},{"name":"ERROR_DS_NONEXISTENT_POSS_SUP","features":[303]},{"name":"ERROR_DS_NONSAFE_SCHEMA_CHANGE","features":[303]},{"name":"ERROR_DS_NON_ASQ_SEARCH","features":[303]},{"name":"ERROR_DS_NON_BASE_SEARCH","features":[303]},{"name":"ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX","features":[303]},{"name":"ERROR_DS_NOT_AN_OBJECT","features":[303]},{"name":"ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC","features":[303]},{"name":"ERROR_DS_NOT_CLOSEST","features":[303]},{"name":"ERROR_DS_NOT_INSTALLED","features":[303]},{"name":"ERROR_DS_NOT_ON_BACKLINK","features":[303]},{"name":"ERROR_DS_NOT_SUPPORTED","features":[303]},{"name":"ERROR_DS_NOT_SUPPORTED_SORT_ORDER","features":[303]},{"name":"ERROR_DS_NO_ATTRIBUTE_OR_VALUE","features":[303]},{"name":"ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN","features":[303]},{"name":"ERROR_DS_NO_CHAINED_EVAL","features":[303]},{"name":"ERROR_DS_NO_CHAINING","features":[303]},{"name":"ERROR_DS_NO_CHECKPOINT_WITH_PDC","features":[303]},{"name":"ERROR_DS_NO_CROSSREF_FOR_NC","features":[303]},{"name":"ERROR_DS_NO_DELETED_NAME","features":[303]},{"name":"ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[303]},{"name":"ERROR_DS_NO_MORE_RIDS","features":[303]},{"name":"ERROR_DS_NO_MSDS_INTID","features":[303]},{"name":"ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[303]},{"name":"ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[303]},{"name":"ERROR_DS_NO_NTDSA_OBJECT","features":[303]},{"name":"ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC","features":[303]},{"name":"ERROR_DS_NO_PARENT_OBJECT","features":[303]},{"name":"ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION","features":[303]},{"name":"ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA","features":[303]},{"name":"ERROR_DS_NO_REF_DOMAIN","features":[303]},{"name":"ERROR_DS_NO_REQUESTED_ATTS_FOUND","features":[303]},{"name":"ERROR_DS_NO_RESULTS_RETURNED","features":[303]},{"name":"ERROR_DS_NO_RIDS_ALLOCATED","features":[303]},{"name":"ERROR_DS_NO_SERVER_OBJECT","features":[303]},{"name":"ERROR_DS_NO_SUCH_OBJECT","features":[303]},{"name":"ERROR_DS_NO_TREE_DELETE_ABOVE_NC","features":[303]},{"name":"ERROR_DS_NTDSCRIPT_PROCESS_ERROR","features":[303]},{"name":"ERROR_DS_NTDSCRIPT_SYNTAX_ERROR","features":[303]},{"name":"ERROR_DS_OBJECT_BEING_REMOVED","features":[303]},{"name":"ERROR_DS_OBJECT_CLASS_REQUIRED","features":[303]},{"name":"ERROR_DS_OBJECT_RESULTS_TOO_LARGE","features":[303]},{"name":"ERROR_DS_OBJ_CLASS_NOT_DEFINED","features":[303]},{"name":"ERROR_DS_OBJ_CLASS_NOT_SUBCLASS","features":[303]},{"name":"ERROR_DS_OBJ_CLASS_VIOLATION","features":[303]},{"name":"ERROR_DS_OBJ_GUID_EXISTS","features":[303]},{"name":"ERROR_DS_OBJ_NOT_FOUND","features":[303]},{"name":"ERROR_DS_OBJ_STRING_NAME_EXISTS","features":[303]},{"name":"ERROR_DS_OBJ_TOO_LARGE","features":[303]},{"name":"ERROR_DS_OFFSET_RANGE_ERROR","features":[303]},{"name":"ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[303]},{"name":"ERROR_DS_OID_NOT_FOUND","features":[303]},{"name":"ERROR_DS_OPERATIONS_ERROR","features":[303]},{"name":"ERROR_DS_OUT_OF_SCOPE","features":[303]},{"name":"ERROR_DS_OUT_OF_VERSION_STORE","features":[303]},{"name":"ERROR_DS_PARAM_ERROR","features":[303]},{"name":"ERROR_DS_PARENT_IS_AN_ALIAS","features":[303]},{"name":"ERROR_DS_PDC_OPERATION_IN_PROGRESS","features":[303]},{"name":"ERROR_DS_PER_ATTRIBUTE_AUTHZ_FAILED_DURING_ADD","features":[303]},{"name":"ERROR_DS_POLICY_NOT_KNOWN","features":[303]},{"name":"ERROR_DS_PROTOCOL_ERROR","features":[303]},{"name":"ERROR_DS_RANGE_CONSTRAINT","features":[303]},{"name":"ERROR_DS_RDN_DOESNT_MATCH_SCHEMA","features":[303]},{"name":"ERROR_DS_RECALCSCHEMA_FAILED","features":[303]},{"name":"ERROR_DS_REFERRAL","features":[303]},{"name":"ERROR_DS_REFERRAL_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DS_REFUSING_FSMO_ROLES","features":[303]},{"name":"ERROR_DS_REMOTE_CROSSREF_OP_FAILED","features":[303]},{"name":"ERROR_DS_REPLICATOR_ONLY","features":[303]},{"name":"ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR","features":[303]},{"name":"ERROR_DS_REPL_LIFETIME_EXCEEDED","features":[303]},{"name":"ERROR_DS_RESERVED_LINK_ID","features":[303]},{"name":"ERROR_DS_RESERVED_MAPI_ID","features":[303]},{"name":"ERROR_DS_RIDMGR_DISABLED","features":[303]},{"name":"ERROR_DS_RIDMGR_INIT_ERROR","features":[303]},{"name":"ERROR_DS_ROLE_NOT_VERIFIED","features":[303]},{"name":"ERROR_DS_ROOT_CANT_BE_SUBREF","features":[303]},{"name":"ERROR_DS_ROOT_MUST_BE_NC","features":[303]},{"name":"ERROR_DS_ROOT_REQUIRES_CLASS_TOP","features":[303]},{"name":"ERROR_DS_SAM_INIT_FAILURE","features":[303]},{"name":"ERROR_DS_SAM_INIT_FAILURE_CONSOLE","features":[303]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY","features":[303]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD","features":[303]},{"name":"ERROR_DS_SCHEMA_ALLOC_FAILED","features":[303]},{"name":"ERROR_DS_SCHEMA_NOT_LOADED","features":[303]},{"name":"ERROR_DS_SCHEMA_UPDATE_DISALLOWED","features":[303]},{"name":"ERROR_DS_SECURITY_CHECKING_ERROR","features":[303]},{"name":"ERROR_DS_SECURITY_ILLEGAL_MODIFY","features":[303]},{"name":"ERROR_DS_SEC_DESC_INVALID","features":[303]},{"name":"ERROR_DS_SEC_DESC_TOO_SHORT","features":[303]},{"name":"ERROR_DS_SEMANTIC_ATT_TEST","features":[303]},{"name":"ERROR_DS_SENSITIVE_GROUP_VIOLATION","features":[303]},{"name":"ERROR_DS_SERVER_DOWN","features":[303]},{"name":"ERROR_DS_SHUTTING_DOWN","features":[303]},{"name":"ERROR_DS_SINGLE_USER_MODE_FAILED","features":[303]},{"name":"ERROR_DS_SINGLE_VALUE_CONSTRAINT","features":[303]},{"name":"ERROR_DS_SIZELIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DS_SORT_CONTROL_MISSING","features":[303]},{"name":"ERROR_DS_SOURCE_AUDITING_NOT_ENABLED","features":[303]},{"name":"ERROR_DS_SOURCE_DOMAIN_IN_FOREST","features":[303]},{"name":"ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[303]},{"name":"ERROR_DS_SRC_AND_DST_NC_IDENTICAL","features":[303]},{"name":"ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH","features":[303]},{"name":"ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER","features":[303]},{"name":"ERROR_DS_SRC_GUID_MISMATCH","features":[303]},{"name":"ERROR_DS_SRC_NAME_MISMATCH","features":[303]},{"name":"ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER","features":[303]},{"name":"ERROR_DS_SRC_SID_EXISTS_IN_FOREST","features":[303]},{"name":"ERROR_DS_STRING_SD_CONVERSION_FAILED","features":[303]},{"name":"ERROR_DS_STRONG_AUTH_REQUIRED","features":[303]},{"name":"ERROR_DS_SUBREF_MUST_HAVE_PARENT","features":[303]},{"name":"ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD","features":[303]},{"name":"ERROR_DS_SUB_CLS_TEST_FAIL","features":[303]},{"name":"ERROR_DS_SYNTAX_MISMATCH","features":[303]},{"name":"ERROR_DS_THREAD_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DS_TIMELIMIT_EXCEEDED","features":[303]},{"name":"ERROR_DS_TREE_DELETE_NOT_FINISHED","features":[303]},{"name":"ERROR_DS_UNABLE_TO_SURRENDER_ROLES","features":[303]},{"name":"ERROR_DS_UNAVAILABLE","features":[303]},{"name":"ERROR_DS_UNAVAILABLE_CRIT_EXTENSION","features":[303]},{"name":"ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED","features":[303]},{"name":"ERROR_DS_UNICODEPWD_NOT_IN_QUOTES","features":[303]},{"name":"ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[303]},{"name":"ERROR_DS_UNKNOWN_ERROR","features":[303]},{"name":"ERROR_DS_UNKNOWN_OPERATION","features":[303]},{"name":"ERROR_DS_UNWILLING_TO_PERFORM","features":[303]},{"name":"ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[303]},{"name":"ERROR_DS_USER_BUFFER_TO_SMALL","features":[303]},{"name":"ERROR_DS_VALUE_KEY_NOT_UNIQUE","features":[303]},{"name":"ERROR_DS_VERSION_CHECK_FAILURE","features":[303]},{"name":"ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL","features":[303]},{"name":"ERROR_DS_WRONG_LINKED_ATT_SYNTAX","features":[303]},{"name":"ERROR_DS_WRONG_OM_OBJ_CLASS","features":[303]},{"name":"ERROR_DUPLICATE_FOUND","features":[303]},{"name":"ERROR_DUPLICATE_PRIVILEGES","features":[303]},{"name":"ERROR_DUPLICATE_SERVICE_NAME","features":[303]},{"name":"ERROR_DUPLICATE_TAG","features":[303]},{"name":"ERROR_DUP_DOMAINNAME","features":[303]},{"name":"ERROR_DUP_NAME","features":[303]},{"name":"ERROR_DYNAMIC_CODE_BLOCKED","features":[303]},{"name":"ERROR_DYNLINK_FROM_INVALID_RING","features":[303]},{"name":"ERROR_EAS_DIDNT_FIT","features":[303]},{"name":"ERROR_EAS_NOT_SUPPORTED","features":[303]},{"name":"ERROR_EA_ACCESS_DENIED","features":[303]},{"name":"ERROR_EA_FILE_CORRUPT","features":[303]},{"name":"ERROR_EA_LIST_INCONSISTENT","features":[303]},{"name":"ERROR_EA_TABLE_FULL","features":[303]},{"name":"ERROR_EC_CIRCULAR_FORWARDING","features":[303]},{"name":"ERROR_EC_CREDSTORE_FULL","features":[303]},{"name":"ERROR_EC_CRED_NOT_FOUND","features":[303]},{"name":"ERROR_EC_LOG_DISABLED","features":[303]},{"name":"ERROR_EC_NO_ACTIVE_CHANNEL","features":[303]},{"name":"ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE","features":[303]},{"name":"ERROR_EDP_DPL_POLICY_CANT_BE_SATISFIED","features":[303]},{"name":"ERROR_EDP_POLICY_DENIES_OPERATION","features":[303]},{"name":"ERROR_EFS_ALG_BLOB_TOO_BIG","features":[303]},{"name":"ERROR_EFS_DISABLED","features":[303]},{"name":"ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[303]},{"name":"ERROR_EFS_SERVER_NOT_TRUSTED","features":[303]},{"name":"ERROR_EFS_VERSION_NOT_SUPPORT","features":[303]},{"name":"ERROR_ELEVATION_REQUIRED","features":[303]},{"name":"ERROR_EMPTY","features":[303]},{"name":"ERROR_ENCLAVE_FAILURE","features":[303]},{"name":"ERROR_ENCLAVE_NOT_TERMINATED","features":[303]},{"name":"ERROR_ENCLAVE_VIOLATION","features":[303]},{"name":"ERROR_ENCRYPTED_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_ENCRYPTED_IO_NOT_POSSIBLE","features":[303]},{"name":"ERROR_ENCRYPTING_METADATA_DISALLOWED","features":[303]},{"name":"ERROR_ENCRYPTION_DISABLED","features":[303]},{"name":"ERROR_ENCRYPTION_FAILED","features":[303]},{"name":"ERROR_ENCRYPTION_POLICY_DENIES_OPERATION","features":[303]},{"name":"ERROR_END_OF_MEDIA","features":[303]},{"name":"ERROR_ENLISTMENT_NOT_FOUND","features":[303]},{"name":"ERROR_ENLISTMENT_NOT_SUPERIOR","features":[303]},{"name":"ERROR_ENVVAR_NOT_FOUND","features":[303]},{"name":"ERROR_EOM_OVERFLOW","features":[303]},{"name":"ERROR_ERRORS_ENCOUNTERED","features":[303]},{"name":"ERROR_EVALUATION_EXPIRATION","features":[303]},{"name":"ERROR_EVENTLOG_CANT_START","features":[303]},{"name":"ERROR_EVENTLOG_FILE_CHANGED","features":[303]},{"name":"ERROR_EVENTLOG_FILE_CORRUPT","features":[303]},{"name":"ERROR_EVENT_DONE","features":[303]},{"name":"ERROR_EVENT_PENDING","features":[303]},{"name":"ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY","features":[303]},{"name":"ERROR_EVT_CHANNEL_CANNOT_ACTIVATE","features":[303]},{"name":"ERROR_EVT_CHANNEL_NOT_FOUND","features":[303]},{"name":"ERROR_EVT_CONFIGURATION_ERROR","features":[303]},{"name":"ERROR_EVT_EVENT_DEFINITION_NOT_FOUND","features":[303]},{"name":"ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND","features":[303]},{"name":"ERROR_EVT_FILTER_ALREADYSCOPED","features":[303]},{"name":"ERROR_EVT_FILTER_INVARG","features":[303]},{"name":"ERROR_EVT_FILTER_INVTEST","features":[303]},{"name":"ERROR_EVT_FILTER_INVTYPE","features":[303]},{"name":"ERROR_EVT_FILTER_NOTELTSET","features":[303]},{"name":"ERROR_EVT_FILTER_OUT_OF_RANGE","features":[303]},{"name":"ERROR_EVT_FILTER_PARSEERR","features":[303]},{"name":"ERROR_EVT_FILTER_TOO_COMPLEX","features":[303]},{"name":"ERROR_EVT_FILTER_UNEXPECTEDTOKEN","features":[303]},{"name":"ERROR_EVT_FILTER_UNSUPPORTEDOP","features":[303]},{"name":"ERROR_EVT_INVALID_CHANNEL_PATH","features":[303]},{"name":"ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE","features":[303]},{"name":"ERROR_EVT_INVALID_EVENT_DATA","features":[303]},{"name":"ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL","features":[303]},{"name":"ERROR_EVT_INVALID_PUBLISHER_NAME","features":[303]},{"name":"ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE","features":[303]},{"name":"ERROR_EVT_INVALID_QUERY","features":[303]},{"name":"ERROR_EVT_MALFORMED_XML_TEXT","features":[303]},{"name":"ERROR_EVT_MAX_INSERTS_REACHED","features":[303]},{"name":"ERROR_EVT_MESSAGE_ID_NOT_FOUND","features":[303]},{"name":"ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND","features":[303]},{"name":"ERROR_EVT_MESSAGE_NOT_FOUND","features":[303]},{"name":"ERROR_EVT_NON_VALIDATING_MSXML","features":[303]},{"name":"ERROR_EVT_PUBLISHER_DISABLED","features":[303]},{"name":"ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND","features":[303]},{"name":"ERROR_EVT_QUERY_RESULT_INVALID_POSITION","features":[303]},{"name":"ERROR_EVT_QUERY_RESULT_STALE","features":[303]},{"name":"ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL","features":[303]},{"name":"ERROR_EVT_UNRESOLVED_PARAMETER_INSERT","features":[303]},{"name":"ERROR_EVT_UNRESOLVED_VALUE_INSERT","features":[303]},{"name":"ERROR_EVT_VERSION_TOO_NEW","features":[303]},{"name":"ERROR_EVT_VERSION_TOO_OLD","features":[303]},{"name":"ERROR_EXCEPTION_IN_RESOURCE_CALL","features":[303]},{"name":"ERROR_EXCEPTION_IN_SERVICE","features":[303]},{"name":"ERROR_EXCL_SEM_ALREADY_OWNED","features":[303]},{"name":"ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY","features":[303]},{"name":"ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY","features":[303]},{"name":"ERROR_EXE_MACHINE_TYPE_MISMATCH","features":[303]},{"name":"ERROR_EXE_MARKED_INVALID","features":[303]},{"name":"ERROR_EXPECTED_SECTION_NAME","features":[303]},{"name":"ERROR_EXPIRED_HANDLE","features":[303]},{"name":"ERROR_EXTENDED_ERROR","features":[303]},{"name":"ERROR_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[303]},{"name":"ERROR_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[303]},{"name":"ERROR_EXTRANEOUS_INFORMATION","features":[303]},{"name":"ERROR_FAILED_DRIVER_ENTRY","features":[303]},{"name":"ERROR_FAILED_SERVICE_CONTROLLER_CONNECT","features":[303]},{"name":"ERROR_FAIL_FAST_EXCEPTION","features":[303]},{"name":"ERROR_FAIL_I24","features":[303]},{"name":"ERROR_FAIL_NOACTION_REBOOT","features":[303]},{"name":"ERROR_FAIL_REBOOT_INITIATED","features":[303]},{"name":"ERROR_FAIL_REBOOT_REQUIRED","features":[303]},{"name":"ERROR_FAIL_RESTART","features":[303]},{"name":"ERROR_FAIL_SHUTDOWN","features":[303]},{"name":"ERROR_FATAL_APP_EXIT","features":[303]},{"name":"ERROR_FILEMARK_DETECTED","features":[303]},{"name":"ERROR_FILENAME_EXCED_RANGE","features":[303]},{"name":"ERROR_FILEQUEUE_LOCKED","features":[303]},{"name":"ERROR_FILE_CHECKED_OUT","features":[303]},{"name":"ERROR_FILE_CORRUPT","features":[303]},{"name":"ERROR_FILE_ENCRYPTED","features":[303]},{"name":"ERROR_FILE_EXISTS","features":[303]},{"name":"ERROR_FILE_HANDLE_REVOKED","features":[303]},{"name":"ERROR_FILE_HASH_NOT_IN_CATALOG","features":[303]},{"name":"ERROR_FILE_IDENTITY_NOT_PERSISTENT","features":[303]},{"name":"ERROR_FILE_INVALID","features":[303]},{"name":"ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED","features":[303]},{"name":"ERROR_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[303]},{"name":"ERROR_FILE_NOT_ENCRYPTED","features":[303]},{"name":"ERROR_FILE_NOT_FOUND","features":[303]},{"name":"ERROR_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_FILE_OFFLINE","features":[303]},{"name":"ERROR_FILE_PROTECTED_UNDER_DPL","features":[303]},{"name":"ERROR_FILE_READ_ONLY","features":[303]},{"name":"ERROR_FILE_SHARE_RESOURCE_CONFLICT","features":[303]},{"name":"ERROR_FILE_SNAP_INVALID_PARAMETER","features":[303]},{"name":"ERROR_FILE_SNAP_IN_PROGRESS","features":[303]},{"name":"ERROR_FILE_SNAP_IO_NOT_COORDINATED","features":[303]},{"name":"ERROR_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[303]},{"name":"ERROR_FILE_SNAP_UNEXPECTED_ERROR","features":[303]},{"name":"ERROR_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_FILE_SYSTEM_LIMITATION","features":[303]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[303]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[303]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[303]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[303]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[303]},{"name":"ERROR_FILE_TOO_LARGE","features":[303]},{"name":"ERROR_FIRMWARE_UPDATED","features":[303]},{"name":"ERROR_FLOATED_SECTION","features":[303]},{"name":"ERROR_FLOAT_MULTIPLE_FAULTS","features":[303]},{"name":"ERROR_FLOAT_MULTIPLE_TRAPS","features":[303]},{"name":"ERROR_FLOPPY_BAD_REGISTERS","features":[303]},{"name":"ERROR_FLOPPY_ID_MARK_NOT_FOUND","features":[303]},{"name":"ERROR_FLOPPY_UNKNOWN_ERROR","features":[303]},{"name":"ERROR_FLOPPY_VOLUME","features":[303]},{"name":"ERROR_FLOPPY_WRONG_CYLINDER","features":[303]},{"name":"ERROR_FLT_ALREADY_ENLISTED","features":[303]},{"name":"ERROR_FLT_CBDQ_DISABLED","features":[303]},{"name":"ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[303]},{"name":"ERROR_FLT_CONTEXT_ALREADY_DEFINED","features":[303]},{"name":"ERROR_FLT_CONTEXT_ALREADY_LINKED","features":[303]},{"name":"ERROR_FLT_DELETING_OBJECT","features":[303]},{"name":"ERROR_FLT_DISALLOW_FAST_IO","features":[303]},{"name":"ERROR_FLT_DO_NOT_ATTACH","features":[303]},{"name":"ERROR_FLT_DO_NOT_DETACH","features":[303]},{"name":"ERROR_FLT_DUPLICATE_ENTRY","features":[303]},{"name":"ERROR_FLT_FILTER_NOT_FOUND","features":[303]},{"name":"ERROR_FLT_FILTER_NOT_READY","features":[303]},{"name":"ERROR_FLT_INSTANCE_ALTITUDE_COLLISION","features":[303]},{"name":"ERROR_FLT_INSTANCE_NAME_COLLISION","features":[303]},{"name":"ERROR_FLT_INSTANCE_NOT_FOUND","features":[303]},{"name":"ERROR_FLT_INTERNAL_ERROR","features":[303]},{"name":"ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[303]},{"name":"ERROR_FLT_INVALID_CONTEXT_REGISTRATION","features":[303]},{"name":"ERROR_FLT_INVALID_NAME_REQUEST","features":[303]},{"name":"ERROR_FLT_IO_COMPLETE","features":[303]},{"name":"ERROR_FLT_MUST_BE_NONPAGED_POOL","features":[303]},{"name":"ERROR_FLT_NAME_CACHE_MISS","features":[303]},{"name":"ERROR_FLT_NOT_INITIALIZED","features":[303]},{"name":"ERROR_FLT_NOT_SAFE_TO_POST_OPERATION","features":[303]},{"name":"ERROR_FLT_NO_DEVICE_OBJECT","features":[303]},{"name":"ERROR_FLT_NO_HANDLER_DEFINED","features":[303]},{"name":"ERROR_FLT_NO_WAITER_FOR_REPLY","features":[303]},{"name":"ERROR_FLT_POST_OPERATION_CLEANUP","features":[303]},{"name":"ERROR_FLT_REGISTRATION_BUSY","features":[303]},{"name":"ERROR_FLT_VOLUME_ALREADY_MOUNTED","features":[303]},{"name":"ERROR_FLT_VOLUME_NOT_FOUND","features":[303]},{"name":"ERROR_FLT_WCOS_NOT_SUPPORTED","features":[303]},{"name":"ERROR_FORMS_AUTH_REQUIRED","features":[303]},{"name":"ERROR_FOUND_OUT_OF_SCOPE","features":[303]},{"name":"ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[303]},{"name":"ERROR_FS_DRIVER_REQUIRED","features":[303]},{"name":"ERROR_FS_GUID_MISMATCH","features":[303]},{"name":"ERROR_FS_METADATA_INCONSISTENT","features":[303]},{"name":"ERROR_FT_DI_SCAN_REQUIRED","features":[303]},{"name":"ERROR_FT_READ_FAILURE","features":[303]},{"name":"ERROR_FT_READ_FROM_COPY_FAILURE","features":[303]},{"name":"ERROR_FT_READ_RECOVERY_FROM_BACKUP","features":[303]},{"name":"ERROR_FT_WRITE_FAILURE","features":[303]},{"name":"ERROR_FT_WRITE_RECOVERY","features":[303]},{"name":"ERROR_FULLSCREEN_MODE","features":[303]},{"name":"ERROR_FULL_BACKUP","features":[303]},{"name":"ERROR_FUNCTION_FAILED","features":[303]},{"name":"ERROR_FUNCTION_NOT_CALLED","features":[303]},{"name":"ERROR_GDI_HANDLE_LEAK","features":[303]},{"name":"ERROR_GENERAL_SYNTAX","features":[303]},{"name":"ERROR_GENERIC_COMMAND_FAILED","features":[303]},{"name":"ERROR_GENERIC_NOT_MAPPED","features":[303]},{"name":"ERROR_GEN_FAILURE","features":[303]},{"name":"ERROR_GLOBAL_ONLY_HOOK","features":[303]},{"name":"ERROR_GPIO_CLIENT_INFORMATION_INVALID","features":[303]},{"name":"ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[303]},{"name":"ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[303]},{"name":"ERROR_GPIO_INVALID_REGISTRATION_PACKET","features":[303]},{"name":"ERROR_GPIO_OPERATION_DENIED","features":[303]},{"name":"ERROR_GPIO_VERSION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRACEFUL_DISCONNECT","features":[303]},{"name":"ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[303]},{"name":"ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[303]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[303]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[303]},{"name":"ERROR_GRAPHICS_ADAPTER_WAS_RESET","features":[303]},{"name":"ERROR_GRAPHICS_ALLOCATION_BUSY","features":[303]},{"name":"ERROR_GRAPHICS_ALLOCATION_CLOSED","features":[303]},{"name":"ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[303]},{"name":"ERROR_GRAPHICS_ALLOCATION_INVALID","features":[303]},{"name":"ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[303]},{"name":"ERROR_GRAPHICS_CANNOTCOLORCONVERT","features":[303]},{"name":"ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[303]},{"name":"ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[303]},{"name":"ERROR_GRAPHICS_CANT_LOCK_MEMORY","features":[303]},{"name":"ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[303]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[303]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[303]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[303]},{"name":"ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[303]},{"name":"ERROR_GRAPHICS_COPP_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_DATASET_IS_EMPTY","features":[303]},{"name":"ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE","features":[303]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_DATA","features":[303]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[303]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[303]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[303]},{"name":"ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[303]},{"name":"ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[303]},{"name":"ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[303]},{"name":"ERROR_GRAPHICS_DRIVER_MISMATCH","features":[303]},{"name":"ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[303]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[303]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[303]},{"name":"ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[303]},{"name":"ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[303]},{"name":"ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[303]},{"name":"ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[303]},{"name":"ERROR_GRAPHICS_I2C_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[303]},{"name":"ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[303]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[303]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[303]},{"name":"ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[303]},{"name":"ERROR_GRAPHICS_INTERNAL_ERROR","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_ACTIVE_REGION","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_CLIENT_TYPE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_COLORBASIS","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_DRIVER_MODEL","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_FREQUENCY","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_GAMMA_RAMP","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_PIXELFORMAT","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_POINTER","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_STRIDE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_TOTAL_REGION","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[303]},{"name":"ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[303]},{"name":"ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[303]},{"name":"ERROR_GRAPHICS_LEADLINK_START_DEFERRED","features":[303]},{"name":"ERROR_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[303]},{"name":"ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[303]},{"name":"ERROR_GRAPHICS_MCA_INTERNAL_ERROR","features":[303]},{"name":"ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING","features":[303]},{"name":"ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[303]},{"name":"ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION","features":[303]},{"name":"ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH","features":[303]},{"name":"ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[303]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[303]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION","features":[303]},{"name":"ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[303]},{"name":"ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[303]},{"name":"ERROR_GRAPHICS_MODE_NOT_IN_MODESET","features":[303]},{"name":"ERROR_GRAPHICS_MODE_NOT_PINNED","features":[303]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[303]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[303]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[303]},{"name":"ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[303]},{"name":"ERROR_GRAPHICS_MONITOR_NOT_CONNECTED","features":[303]},{"name":"ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[303]},{"name":"ERROR_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[303]},{"name":"ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[303]},{"name":"ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[303]},{"name":"ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[303]},{"name":"ERROR_GRAPHICS_NO_ACTIVE_VIDPN","features":[303]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[303]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[303]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[303]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[303]},{"name":"ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[303]},{"name":"ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[303]},{"name":"ERROR_GRAPHICS_NO_PREFERRED_MODE","features":[303]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[303]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[303]},{"name":"ERROR_GRAPHICS_NO_VIDEO_MEMORY","features":[303]},{"name":"ERROR_GRAPHICS_NO_VIDPNMGR","features":[303]},{"name":"ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[303]},{"name":"ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[303]},{"name":"ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[303]},{"name":"ERROR_GRAPHICS_OPM_INTERNAL_ERROR","features":[303]},{"name":"ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[303]},{"name":"ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[303]},{"name":"ERROR_GRAPHICS_OPM_INVALID_HANDLE","features":[303]},{"name":"ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[303]},{"name":"ERROR_GRAPHICS_OPM_INVALID_SRM","features":[303]},{"name":"ERROR_GRAPHICS_OPM_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST","features":[303]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[303]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[303]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[303]},{"name":"ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[303]},{"name":"ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[303]},{"name":"ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[303]},{"name":"ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[303]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[303]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[303]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS","features":[303]},{"name":"ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[303]},{"name":"ERROR_GRAPHICS_PARTIAL_DATA_POPULATED","features":[303]},{"name":"ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[303]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[303]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[303]},{"name":"ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[303]},{"name":"ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[303]},{"name":"ERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[303]},{"name":"ERROR_GRAPHICS_PRESENT_DENIED","features":[303]},{"name":"ERROR_GRAPHICS_PRESENT_INVALID_WINDOW","features":[303]},{"name":"ERROR_GRAPHICS_PRESENT_MODE_CHANGED","features":[303]},{"name":"ERROR_GRAPHICS_PRESENT_OCCLUDED","features":[303]},{"name":"ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[303]},{"name":"ERROR_GRAPHICS_PRESENT_UNOCCLUDED","features":[303]},{"name":"ERROR_GRAPHICS_PVP_HFS_FAILED","features":[303]},{"name":"ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[303]},{"name":"ERROR_GRAPHICS_RESOURCES_NOT_RELATED","features":[303]},{"name":"ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[303]},{"name":"ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[303]},{"name":"ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[303]},{"name":"ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[303]},{"name":"ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[303]},{"name":"ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[303]},{"name":"ERROR_GRAPHICS_STALE_MODESET","features":[303]},{"name":"ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[303]},{"name":"ERROR_GRAPHICS_START_DEFERRED","features":[303]},{"name":"ERROR_GRAPHICS_TARGET_ALREADY_IN_SET","features":[303]},{"name":"ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[303]},{"name":"ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[303]},{"name":"ERROR_GRAPHICS_TOO_MANY_REFERENCES","features":[303]},{"name":"ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[303]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_LATER","features":[303]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_NOW","features":[303]},{"name":"ERROR_GRAPHICS_UAB_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[303]},{"name":"ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[303]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[303]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_COMPOSITION_WINDOW_DPI_MESSAGE","features":[303]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_CREATE_SUPERWETINK_MESSAGE","features":[303]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_DESTROY_SUPERWETINK_MESSAGE","features":[303]},{"name":"ERROR_GRAPHICS_VAIL_STATE_CHANGED","features":[303]},{"name":"ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[303]},{"name":"ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[303]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[303]},{"name":"ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[303]},{"name":"ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[303]},{"name":"ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[303]},{"name":"ERROR_GROUPSET_CANT_PROVIDE","features":[303]},{"name":"ERROR_GROUPSET_NOT_AVAILABLE","features":[303]},{"name":"ERROR_GROUPSET_NOT_FOUND","features":[303]},{"name":"ERROR_GROUP_EXISTS","features":[303]},{"name":"ERROR_GROUP_NOT_AVAILABLE","features":[303]},{"name":"ERROR_GROUP_NOT_FOUND","features":[303]},{"name":"ERROR_GROUP_NOT_ONLINE","features":[303]},{"name":"ERROR_GUID_SUBSTITUTION_MADE","features":[303]},{"name":"ERROR_HANDLES_CLOSED","features":[303]},{"name":"ERROR_HANDLE_DISK_FULL","features":[303]},{"name":"ERROR_HANDLE_EOF","features":[303]},{"name":"ERROR_HANDLE_NO_LONGER_VALID","features":[303]},{"name":"ERROR_HANDLE_REVOKED","features":[303]},{"name":"ERROR_HASH_NOT_PRESENT","features":[303]},{"name":"ERROR_HASH_NOT_SUPPORTED","features":[303]},{"name":"ERROR_HAS_SYSTEM_CRITICAL_FILES","features":[303]},{"name":"ERROR_HEURISTIC_DAMAGE_POSSIBLE","features":[303]},{"name":"ERROR_HIBERNATED","features":[303]},{"name":"ERROR_HIBERNATION_FAILURE","features":[303]},{"name":"ERROR_HOOK_NEEDS_HMOD","features":[303]},{"name":"ERROR_HOOK_NOT_INSTALLED","features":[303]},{"name":"ERROR_HOOK_TYPE_NOT_ALLOWED","features":[303]},{"name":"ERROR_HOST_DOWN","features":[303]},{"name":"ERROR_HOST_NODE_NOT_AVAILABLE","features":[303]},{"name":"ERROR_HOST_NODE_NOT_GROUP_OWNER","features":[303]},{"name":"ERROR_HOST_NODE_NOT_RESOURCE_OWNER","features":[303]},{"name":"ERROR_HOST_UNREACHABLE","features":[303]},{"name":"ERROR_HOTKEY_ALREADY_REGISTERED","features":[303]},{"name":"ERROR_HOTKEY_NOT_REGISTERED","features":[303]},{"name":"ERROR_HUNG_DISPLAY_DRIVER_THREAD","features":[303]},{"name":"ERROR_HV_ACCESS_DENIED","features":[303]},{"name":"ERROR_HV_ACKNOWLEDGED","features":[303]},{"name":"ERROR_HV_CPUID_FEATURE_VALIDATION","features":[303]},{"name":"ERROR_HV_CPUID_XSAVE_FEATURE_VALIDATION","features":[303]},{"name":"ERROR_HV_DEVICE_NOT_IN_DOMAIN","features":[303]},{"name":"ERROR_HV_EVENT_BUFFER_ALREADY_FREED","features":[303]},{"name":"ERROR_HV_FEATURE_UNAVAILABLE","features":[303]},{"name":"ERROR_HV_INACTIVE","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_BUFFER","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_BUFFERS","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY","features":[303]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[303]},{"name":"ERROR_HV_INVALID_ALIGNMENT","features":[303]},{"name":"ERROR_HV_INVALID_CONNECTION_ID","features":[303]},{"name":"ERROR_HV_INVALID_CPU_GROUP_ID","features":[303]},{"name":"ERROR_HV_INVALID_CPU_GROUP_STATE","features":[303]},{"name":"ERROR_HV_INVALID_DEVICE_ID","features":[303]},{"name":"ERROR_HV_INVALID_DEVICE_STATE","features":[303]},{"name":"ERROR_HV_INVALID_HYPERCALL_CODE","features":[303]},{"name":"ERROR_HV_INVALID_HYPERCALL_INPUT","features":[303]},{"name":"ERROR_HV_INVALID_LP_INDEX","features":[303]},{"name":"ERROR_HV_INVALID_PARAMETER","features":[303]},{"name":"ERROR_HV_INVALID_PARTITION_ID","features":[303]},{"name":"ERROR_HV_INVALID_PARTITION_STATE","features":[303]},{"name":"ERROR_HV_INVALID_PORT_ID","features":[303]},{"name":"ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[303]},{"name":"ERROR_HV_INVALID_REGISTER_VALUE","features":[303]},{"name":"ERROR_HV_INVALID_SAVE_RESTORE_STATE","features":[303]},{"name":"ERROR_HV_INVALID_SYNIC_STATE","features":[303]},{"name":"ERROR_HV_INVALID_VP_INDEX","features":[303]},{"name":"ERROR_HV_INVALID_VP_STATE","features":[303]},{"name":"ERROR_HV_INVALID_VTL_STATE","features":[303]},{"name":"ERROR_HV_MSR_ACCESS_FAILED","features":[303]},{"name":"ERROR_HV_NESTED_VM_EXIT","features":[303]},{"name":"ERROR_HV_NOT_ACKNOWLEDGED","features":[303]},{"name":"ERROR_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[303]},{"name":"ERROR_HV_NOT_PRESENT","features":[303]},{"name":"ERROR_HV_NO_DATA","features":[303]},{"name":"ERROR_HV_NO_RESOURCES","features":[303]},{"name":"ERROR_HV_NX_NOT_DETECTED","features":[303]},{"name":"ERROR_HV_OBJECT_IN_USE","features":[303]},{"name":"ERROR_HV_OPERATION_DENIED","features":[303]},{"name":"ERROR_HV_OPERATION_FAILED","features":[303]},{"name":"ERROR_HV_PAGE_REQUEST_INVALID","features":[303]},{"name":"ERROR_HV_PARTITION_TOO_DEEP","features":[303]},{"name":"ERROR_HV_PENDING_PAGE_REQUESTS","features":[303]},{"name":"ERROR_HV_PROCESSOR_STARTUP_TIMEOUT","features":[303]},{"name":"ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[303]},{"name":"ERROR_HV_SMX_ENABLED","features":[303]},{"name":"ERROR_HV_UNKNOWN_PROPERTY","features":[303]},{"name":"ERROR_HWNDS_HAVE_DIFF_PARENT","features":[303]},{"name":"ERROR_ICM_NOT_ENABLED","features":[303]},{"name":"ERROR_IDLE_DISCONNECTED","features":[303]},{"name":"ERROR_IEPORT_FULL","features":[303]},{"name":"ERROR_ILLEGAL_CHARACTER","features":[303]},{"name":"ERROR_ILLEGAL_DLL_RELOCATION","features":[303]},{"name":"ERROR_ILLEGAL_ELEMENT_ADDRESS","features":[303]},{"name":"ERROR_ILLEGAL_FLOAT_CONTEXT","features":[303]},{"name":"ERROR_ILL_FORMED_PASSWORD","features":[303]},{"name":"ERROR_IMAGE_AT_DIFFERENT_BASE","features":[303]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH","features":[303]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[303]},{"name":"ERROR_IMAGE_NOT_AT_BASE","features":[303]},{"name":"ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[303]},{"name":"ERROR_IMPLEMENTATION_LIMIT","features":[303]},{"name":"ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE","features":[303]},{"name":"ERROR_INCOMPATIBLE_SERVICE_SID_TYPE","features":[303]},{"name":"ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[303]},{"name":"ERROR_INCORRECT_ACCOUNT_TYPE","features":[303]},{"name":"ERROR_INCORRECT_ADDRESS","features":[303]},{"name":"ERROR_INCORRECT_SIZE","features":[303]},{"name":"ERROR_INC_BACKUP","features":[303]},{"name":"ERROR_INDEX_ABSENT","features":[303]},{"name":"ERROR_INDEX_OUT_OF_BOUNDS","features":[303]},{"name":"ERROR_INDIGENOUS_TYPE","features":[303]},{"name":"ERROR_INDOUBT_TRANSACTIONS_EXIST","features":[303]},{"name":"ERROR_INFLOOP_IN_RELOC_CHAIN","features":[303]},{"name":"ERROR_INF_IN_USE_BY_DEVICES","features":[303]},{"name":"ERROR_INSTALL_ALREADY_RUNNING","features":[303]},{"name":"ERROR_INSTALL_CANCEL","features":[303]},{"name":"ERROR_INSTALL_DEREGISTRATION_FAILURE","features":[303]},{"name":"ERROR_INSTALL_FAILED","features":[303]},{"name":"ERROR_INSTALL_FAILURE","features":[303]},{"name":"ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING","features":[303]},{"name":"ERROR_INSTALL_FULLTRUST_HOSTRUNTIME_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[303]},{"name":"ERROR_INSTALL_INVALID_PACKAGE","features":[303]},{"name":"ERROR_INSTALL_INVALID_RELATED_SET_UPDATE","features":[303]},{"name":"ERROR_INSTALL_LANGUAGE_UNSUPPORTED","features":[303]},{"name":"ERROR_INSTALL_LOG_FAILURE","features":[303]},{"name":"ERROR_INSTALL_NETWORK_FAILURE","features":[303]},{"name":"ERROR_INSTALL_NOTUSED","features":[303]},{"name":"ERROR_INSTALL_OPEN_PACKAGE_FAILED","features":[303]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE","features":[303]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE","features":[303]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[303]},{"name":"ERROR_INSTALL_OUT_OF_DISK_SPACE","features":[303]},{"name":"ERROR_INSTALL_PACKAGE_DOWNGRADE","features":[303]},{"name":"ERROR_INSTALL_PACKAGE_INVALID","features":[303]},{"name":"ERROR_INSTALL_PACKAGE_NOT_FOUND","features":[303]},{"name":"ERROR_INSTALL_PACKAGE_OPEN_FAILED","features":[303]},{"name":"ERROR_INSTALL_PACKAGE_REJECTED","features":[303]},{"name":"ERROR_INSTALL_PACKAGE_VERSION","features":[303]},{"name":"ERROR_INSTALL_PLATFORM_UNSUPPORTED","features":[303]},{"name":"ERROR_INSTALL_POLICY_FAILURE","features":[303]},{"name":"ERROR_INSTALL_PREREQUISITE_FAILED","features":[303]},{"name":"ERROR_INSTALL_REGISTRATION_FAILURE","features":[303]},{"name":"ERROR_INSTALL_REJECTED","features":[303]},{"name":"ERROR_INSTALL_REMOTE_DISALLOWED","features":[303]},{"name":"ERROR_INSTALL_REMOTE_PROHIBITED","features":[303]},{"name":"ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED","features":[303]},{"name":"ERROR_INSTALL_RESOLVE_HOSTRUNTIME_DEPENDENCY_FAILED","features":[303]},{"name":"ERROR_INSTALL_SERVICE_FAILURE","features":[303]},{"name":"ERROR_INSTALL_SERVICE_SAFEBOOT","features":[303]},{"name":"ERROR_INSTALL_SOURCE_ABSENT","features":[303]},{"name":"ERROR_INSTALL_SUSPEND","features":[303]},{"name":"ERROR_INSTALL_TEMP_UNWRITABLE","features":[303]},{"name":"ERROR_INSTALL_TRANSFORM_FAILURE","features":[303]},{"name":"ERROR_INSTALL_TRANSFORM_REJECTED","features":[303]},{"name":"ERROR_INSTALL_UI_FAILURE","features":[303]},{"name":"ERROR_INSTALL_USEREXIT","features":[303]},{"name":"ERROR_INSTALL_VOLUME_CORRUPT","features":[303]},{"name":"ERROR_INSTALL_VOLUME_NOT_EMPTY","features":[303]},{"name":"ERROR_INSTALL_VOLUME_OFFLINE","features":[303]},{"name":"ERROR_INSTALL_WRONG_PROCESSOR_ARCHITECTURE","features":[303]},{"name":"ERROR_INSTRUCTION_MISALIGNMENT","features":[303]},{"name":"ERROR_INSUFFICIENT_BUFFER","features":[303]},{"name":"ERROR_INSUFFICIENT_LOGON_INFO","features":[303]},{"name":"ERROR_INSUFFICIENT_POWER","features":[303]},{"name":"ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[303]},{"name":"ERROR_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[303]},{"name":"ERROR_INTERFACE_ALREADY_EXISTS","features":[303]},{"name":"ERROR_INTERFACE_CONFIGURATION","features":[303]},{"name":"ERROR_INTERFACE_CONNECTED","features":[303]},{"name":"ERROR_INTERFACE_DEVICE_ACTIVE","features":[303]},{"name":"ERROR_INTERFACE_DEVICE_REMOVED","features":[303]},{"name":"ERROR_INTERFACE_DISABLED","features":[303]},{"name":"ERROR_INTERFACE_DISCONNECTED","features":[303]},{"name":"ERROR_INTERFACE_HAS_NO_DEVICES","features":[303]},{"name":"ERROR_INTERFACE_NOT_CONNECTED","features":[303]},{"name":"ERROR_INTERFACE_UNREACHABLE","features":[303]},{"name":"ERROR_INTERMIXED_KERNEL_EA_OPERATION","features":[303]},{"name":"ERROR_INTERNAL_DB_CORRUPTION","features":[303]},{"name":"ERROR_INTERNAL_DB_ERROR","features":[303]},{"name":"ERROR_INTERNAL_ERROR","features":[303]},{"name":"ERROR_INTERRUPT_STILL_CONNECTED","features":[303]},{"name":"ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[303]},{"name":"ERROR_INVALID_ACCEL_HANDLE","features":[303]},{"name":"ERROR_INVALID_ACCESS","features":[303]},{"name":"ERROR_INVALID_ACCOUNT_NAME","features":[303]},{"name":"ERROR_INVALID_ACE_CONDITION","features":[303]},{"name":"ERROR_INVALID_ACL","features":[303]},{"name":"ERROR_INVALID_ADDRESS","features":[303]},{"name":"ERROR_INVALID_ATTRIBUTE_LENGTH","features":[303]},{"name":"ERROR_INVALID_AT_INTERRUPT_TIME","features":[303]},{"name":"ERROR_INVALID_BLOCK","features":[303]},{"name":"ERROR_INVALID_BLOCK_LENGTH","features":[303]},{"name":"ERROR_INVALID_CAP","features":[303]},{"name":"ERROR_INVALID_CATEGORY","features":[303]},{"name":"ERROR_INVALID_CLASS","features":[303]},{"name":"ERROR_INVALID_CLASS_INSTALLER","features":[303]},{"name":"ERROR_INVALID_CLEANER","features":[303]},{"name":"ERROR_INVALID_CLUSTER_IPV6_ADDRESS","features":[303]},{"name":"ERROR_INVALID_CMM","features":[303]},{"name":"ERROR_INVALID_COINSTALLER","features":[303]},{"name":"ERROR_INVALID_COLORINDEX","features":[303]},{"name":"ERROR_INVALID_COLORSPACE","features":[303]},{"name":"ERROR_INVALID_COMBOBOX_MESSAGE","features":[303]},{"name":"ERROR_INVALID_COMMAND_LINE","features":[303]},{"name":"ERROR_INVALID_COMPUTERNAME","features":[303]},{"name":"ERROR_INVALID_CONFIG_VALUE","features":[303]},{"name":"ERROR_INVALID_CRUNTIME_PARAMETER","features":[303]},{"name":"ERROR_INVALID_CURSOR_HANDLE","features":[303]},{"name":"ERROR_INVALID_DATA","features":[303]},{"name":"ERROR_INVALID_DATATYPE","features":[303]},{"name":"ERROR_INVALID_DEVICE_OBJECT_PARAMETER","features":[303]},{"name":"ERROR_INVALID_DEVINST_NAME","features":[303]},{"name":"ERROR_INVALID_DLL","features":[303]},{"name":"ERROR_INVALID_DOMAINNAME","features":[303]},{"name":"ERROR_INVALID_DOMAIN_ROLE","features":[303]},{"name":"ERROR_INVALID_DOMAIN_STATE","features":[303]},{"name":"ERROR_INVALID_DRIVE","features":[303]},{"name":"ERROR_INVALID_DRIVE_OBJECT","features":[303]},{"name":"ERROR_INVALID_DWP_HANDLE","features":[303]},{"name":"ERROR_INVALID_EA_HANDLE","features":[303]},{"name":"ERROR_INVALID_EA_NAME","features":[303]},{"name":"ERROR_INVALID_EDIT_HEIGHT","features":[303]},{"name":"ERROR_INVALID_ENVIRONMENT","features":[303]},{"name":"ERROR_INVALID_EVENTNAME","features":[303]},{"name":"ERROR_INVALID_EVENT_COUNT","features":[303]},{"name":"ERROR_INVALID_EXCEPTION_HANDLER","features":[303]},{"name":"ERROR_INVALID_EXE_SIGNATURE","features":[303]},{"name":"ERROR_INVALID_FIELD","features":[303]},{"name":"ERROR_INVALID_FIELD_IN_PARAMETER_LIST","features":[303]},{"name":"ERROR_INVALID_FILTER_DRIVER","features":[303]},{"name":"ERROR_INVALID_FILTER_PROC","features":[303]},{"name":"ERROR_INVALID_FLAGS","features":[303]},{"name":"ERROR_INVALID_FLAG_NUMBER","features":[303]},{"name":"ERROR_INVALID_FORM_NAME","features":[303]},{"name":"ERROR_INVALID_FORM_SIZE","features":[303]},{"name":"ERROR_INVALID_FUNCTION","features":[303]},{"name":"ERROR_INVALID_GROUPNAME","features":[303]},{"name":"ERROR_INVALID_GROUP_ATTRIBUTES","features":[303]},{"name":"ERROR_INVALID_GW_COMMAND","features":[303]},{"name":"ERROR_INVALID_HANDLE","features":[303]},{"name":"ERROR_INVALID_HANDLE_STATE","features":[303]},{"name":"ERROR_INVALID_HOOK_FILTER","features":[303]},{"name":"ERROR_INVALID_HOOK_HANDLE","features":[303]},{"name":"ERROR_INVALID_HWPROFILE","features":[303]},{"name":"ERROR_INVALID_HW_PROFILE","features":[303]},{"name":"ERROR_INVALID_ICON_HANDLE","features":[303]},{"name":"ERROR_INVALID_ID_AUTHORITY","features":[303]},{"name":"ERROR_INVALID_IMAGE_HASH","features":[303]},{"name":"ERROR_INVALID_IMPORT_OF_NON_DLL","features":[303]},{"name":"ERROR_INVALID_INDEX","features":[303]},{"name":"ERROR_INVALID_INF_LOGCONFIG","features":[303]},{"name":"ERROR_INVALID_KERNEL_INFO_VERSION","features":[303]},{"name":"ERROR_INVALID_KEYBOARD_HANDLE","features":[303]},{"name":"ERROR_INVALID_LABEL","features":[303]},{"name":"ERROR_INVALID_LB_MESSAGE","features":[303]},{"name":"ERROR_INVALID_LDT_DESCRIPTOR","features":[303]},{"name":"ERROR_INVALID_LDT_OFFSET","features":[303]},{"name":"ERROR_INVALID_LDT_SIZE","features":[303]},{"name":"ERROR_INVALID_LEVEL","features":[303]},{"name":"ERROR_INVALID_LIBRARY","features":[303]},{"name":"ERROR_INVALID_LIST_FORMAT","features":[303]},{"name":"ERROR_INVALID_LOCK_RANGE","features":[303]},{"name":"ERROR_INVALID_LOGON_HOURS","features":[303]},{"name":"ERROR_INVALID_LOGON_TYPE","features":[303]},{"name":"ERROR_INVALID_MACHINENAME","features":[303]},{"name":"ERROR_INVALID_MEDIA","features":[303]},{"name":"ERROR_INVALID_MEDIA_POOL","features":[303]},{"name":"ERROR_INVALID_MEMBER","features":[303]},{"name":"ERROR_INVALID_MENU_HANDLE","features":[303]},{"name":"ERROR_INVALID_MESSAGE","features":[303]},{"name":"ERROR_INVALID_MESSAGEDEST","features":[303]},{"name":"ERROR_INVALID_MESSAGENAME","features":[303]},{"name":"ERROR_INVALID_MINALLOCSIZE","features":[303]},{"name":"ERROR_INVALID_MODULETYPE","features":[303]},{"name":"ERROR_INVALID_MONITOR_HANDLE","features":[303]},{"name":"ERROR_INVALID_MSGBOX_STYLE","features":[303]},{"name":"ERROR_INVALID_NAME","features":[303]},{"name":"ERROR_INVALID_NETNAME","features":[303]},{"name":"ERROR_INVALID_OPERATION","features":[303]},{"name":"ERROR_INVALID_OPERATION_ON_QUORUM","features":[303]},{"name":"ERROR_INVALID_OPLOCK_PROTOCOL","features":[303]},{"name":"ERROR_INVALID_ORDINAL","features":[303]},{"name":"ERROR_INVALID_OWNER","features":[303]},{"name":"ERROR_INVALID_PACKAGE_SID_LENGTH","features":[303]},{"name":"ERROR_INVALID_PACKET","features":[303]},{"name":"ERROR_INVALID_PACKET_LENGTH_OR_ID","features":[303]},{"name":"ERROR_INVALID_PARAMETER","features":[303]},{"name":"ERROR_INVALID_PASSWORD","features":[303]},{"name":"ERROR_INVALID_PASSWORDNAME","features":[303]},{"name":"ERROR_INVALID_PATCH_XML","features":[303]},{"name":"ERROR_INVALID_PEP_INFO_VERSION","features":[303]},{"name":"ERROR_INVALID_PIXEL_FORMAT","features":[303]},{"name":"ERROR_INVALID_PLUGPLAY_DEVICE_PATH","features":[303]},{"name":"ERROR_INVALID_PORT_ATTRIBUTES","features":[303]},{"name":"ERROR_INVALID_PRIMARY_GROUP","features":[303]},{"name":"ERROR_INVALID_PRINTER_COMMAND","features":[303]},{"name":"ERROR_INVALID_PRINTER_DRIVER_MANIFEST","features":[303]},{"name":"ERROR_INVALID_PRINTER_NAME","features":[303]},{"name":"ERROR_INVALID_PRINTER_STATE","features":[303]},{"name":"ERROR_INVALID_PRINT_MONITOR","features":[303]},{"name":"ERROR_INVALID_PRIORITY","features":[303]},{"name":"ERROR_INVALID_PROFILE","features":[303]},{"name":"ERROR_INVALID_PROPPAGE_PROVIDER","features":[303]},{"name":"ERROR_INVALID_QUOTA_LOWER","features":[303]},{"name":"ERROR_INVALID_RADIUS_RESPONSE","features":[303]},{"name":"ERROR_INVALID_REFERENCE_STRING","features":[303]},{"name":"ERROR_INVALID_REG_PROPERTY","features":[303]},{"name":"ERROR_INVALID_REPARSE_DATA","features":[303]},{"name":"ERROR_INVALID_RUNLEVEL_SETTING","features":[303]},{"name":"ERROR_INVALID_SCROLLBAR_RANGE","features":[303]},{"name":"ERROR_INVALID_SECURITY_DESCR","features":[303]},{"name":"ERROR_INVALID_SEGDPL","features":[303]},{"name":"ERROR_INVALID_SEGMENT_NUMBER","features":[303]},{"name":"ERROR_INVALID_SEPARATOR_FILE","features":[303]},{"name":"ERROR_INVALID_SERVER_STATE","features":[303]},{"name":"ERROR_INVALID_SERVICENAME","features":[303]},{"name":"ERROR_INVALID_SERVICE_ACCOUNT","features":[303]},{"name":"ERROR_INVALID_SERVICE_CONTROL","features":[303]},{"name":"ERROR_INVALID_SERVICE_LOCK","features":[303]},{"name":"ERROR_INVALID_SHARENAME","features":[303]},{"name":"ERROR_INVALID_SHOWWIN_COMMAND","features":[303]},{"name":"ERROR_INVALID_SID","features":[303]},{"name":"ERROR_INVALID_SIGNAL_NUMBER","features":[303]},{"name":"ERROR_INVALID_SIGNATURE","features":[303]},{"name":"ERROR_INVALID_SIGNATURE_LENGTH","features":[303]},{"name":"ERROR_INVALID_SPI_VALUE","features":[303]},{"name":"ERROR_INVALID_STACKSEG","features":[303]},{"name":"ERROR_INVALID_STAGED_SIGNATURE","features":[303]},{"name":"ERROR_INVALID_STARTING_CODESEG","features":[303]},{"name":"ERROR_INVALID_STATE","features":[303]},{"name":"ERROR_INVALID_SUB_AUTHORITY","features":[303]},{"name":"ERROR_INVALID_TABLE","features":[303]},{"name":"ERROR_INVALID_TARGET","features":[303]},{"name":"ERROR_INVALID_TARGET_HANDLE","features":[303]},{"name":"ERROR_INVALID_TASK_INDEX","features":[303]},{"name":"ERROR_INVALID_TASK_NAME","features":[303]},{"name":"ERROR_INVALID_THREAD_ID","features":[303]},{"name":"ERROR_INVALID_TIME","features":[303]},{"name":"ERROR_INVALID_TOKEN","features":[303]},{"name":"ERROR_INVALID_TRANSACTION","features":[303]},{"name":"ERROR_INVALID_TRANSFORM","features":[303]},{"name":"ERROR_INVALID_UNWIND_TARGET","features":[303]},{"name":"ERROR_INVALID_USER_BUFFER","features":[303]},{"name":"ERROR_INVALID_USER_PRINCIPAL_NAME","features":[303]},{"name":"ERROR_INVALID_VARIANT","features":[303]},{"name":"ERROR_INVALID_VERIFY_SWITCH","features":[303]},{"name":"ERROR_INVALID_WINDOW_HANDLE","features":[303]},{"name":"ERROR_INVALID_WINDOW_STYLE","features":[303]},{"name":"ERROR_INVALID_WORKSTATION","features":[303]},{"name":"ERROR_IN_WOW64","features":[303]},{"name":"ERROR_IOPL_NOT_ENABLED","features":[303]},{"name":"ERROR_IO_DEVICE","features":[303]},{"name":"ERROR_IO_INCOMPLETE","features":[303]},{"name":"ERROR_IO_PENDING","features":[303]},{"name":"ERROR_IO_PREEMPTED","features":[303]},{"name":"ERROR_IO_PRIVILEGE_FAILED","features":[303]},{"name":"ERROR_IO_REISSUE_AS_CACHED","features":[303]},{"name":"ERROR_IPSEC_AUTH_FIREWALL_DROP","features":[303]},{"name":"ERROR_IPSEC_BAD_SPI","features":[303]},{"name":"ERROR_IPSEC_CLEAR_TEXT_DROP","features":[303]},{"name":"ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_DOSP_BLOCK","features":[303]},{"name":"ERROR_IPSEC_DOSP_INVALID_PACKET","features":[303]},{"name":"ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[303]},{"name":"ERROR_IPSEC_DOSP_MAX_ENTRIES","features":[303]},{"name":"ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[303]},{"name":"ERROR_IPSEC_DOSP_NOT_INSTALLED","features":[303]},{"name":"ERROR_IPSEC_DOSP_RECEIVED_MULTICAST","features":[303]},{"name":"ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[303]},{"name":"ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED","features":[303]},{"name":"ERROR_IPSEC_IKE_ATTRIB_FAIL","features":[303]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE","features":[303]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY","features":[303]},{"name":"ERROR_IPSEC_IKE_AUTH_FAIL","features":[303]},{"name":"ERROR_IPSEC_IKE_BENIGN_REINIT","features":[303]},{"name":"ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH","features":[303]},{"name":"ERROR_IPSEC_IKE_CGA_AUTH_FAILED","features":[303]},{"name":"ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS","features":[303]},{"name":"ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED","features":[303]},{"name":"ERROR_IPSEC_IKE_CRL_FAILED","features":[303]},{"name":"ERROR_IPSEC_IKE_DECRYPT","features":[303]},{"name":"ERROR_IPSEC_IKE_DH_FAIL","features":[303]},{"name":"ERROR_IPSEC_IKE_DH_FAILURE","features":[303]},{"name":"ERROR_IPSEC_IKE_DOS_COOKIE_SENT","features":[303]},{"name":"ERROR_IPSEC_IKE_DROP_NO_RESPONSE","features":[303]},{"name":"ERROR_IPSEC_IKE_ENCRYPT","features":[303]},{"name":"ERROR_IPSEC_IKE_ERROR","features":[303]},{"name":"ERROR_IPSEC_IKE_FAILQUERYSSP","features":[303]},{"name":"ERROR_IPSEC_IKE_FAILSSPINIT","features":[303]},{"name":"ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR","features":[303]},{"name":"ERROR_IPSEC_IKE_GETSPIFAIL","features":[303]},{"name":"ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_ALG","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_TYPE","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_COOKIE","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_FILTER","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_GROUP","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_ALG","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_SIZE","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_HEADER","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_KEY_USAGE","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_MM_FOR_QM","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_PAYLOAD","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_POLICY","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_SIG","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_SIGNATURE","features":[303]},{"name":"ERROR_IPSEC_IKE_INVALID_SITUATION","features":[303]},{"name":"ERROR_IPSEC_IKE_KERBEROS_ERROR","features":[303]},{"name":"ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL","features":[303]},{"name":"ERROR_IPSEC_IKE_LOAD_FAILED","features":[303]},{"name":"ERROR_IPSEC_IKE_LOAD_SOFT_SA","features":[303]},{"name":"ERROR_IPSEC_IKE_MM_ACQUIRE_DROP","features":[303]},{"name":"ERROR_IPSEC_IKE_MM_DELAY_DROP","features":[303]},{"name":"ERROR_IPSEC_IKE_MM_EXPIRED","features":[303]},{"name":"ERROR_IPSEC_IKE_MM_LIMIT","features":[303]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_DISABLED","features":[303]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_PENDING","features":[303]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_BEGIN","features":[303]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_END","features":[303]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END","features":[303]},{"name":"ERROR_IPSEC_IKE_NOTCBPRIV","features":[303]},{"name":"ERROR_IPSEC_IKE_NO_CERT","features":[303]},{"name":"ERROR_IPSEC_IKE_NO_MM_POLICY","features":[303]},{"name":"ERROR_IPSEC_IKE_NO_PEER_CERT","features":[303]},{"name":"ERROR_IPSEC_IKE_NO_POLICY","features":[303]},{"name":"ERROR_IPSEC_IKE_NO_PRIVATE_KEY","features":[303]},{"name":"ERROR_IPSEC_IKE_NO_PUBLIC_KEY","features":[303]},{"name":"ERROR_IPSEC_IKE_OUT_OF_MEMORY","features":[303]},{"name":"ERROR_IPSEC_IKE_PEER_CRL_FAILED","features":[303]},{"name":"ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE","features":[303]},{"name":"ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID","features":[303]},{"name":"ERROR_IPSEC_IKE_POLICY_CHANGE","features":[303]},{"name":"ERROR_IPSEC_IKE_POLICY_MATCH","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_DELETE","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_HASH","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_ID","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_KE","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NATOA","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NONCE","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_PROP","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SA","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SIG","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_TRANS","features":[303]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR","features":[303]},{"name":"ERROR_IPSEC_IKE_QM_ACQUIRE_DROP","features":[303]},{"name":"ERROR_IPSEC_IKE_QM_DELAY_DROP","features":[303]},{"name":"ERROR_IPSEC_IKE_QM_EXPIRED","features":[303]},{"name":"ERROR_IPSEC_IKE_QM_LIMIT","features":[303]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_MM","features":[303]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM","features":[303]},{"name":"ERROR_IPSEC_IKE_RATELIMIT_DROP","features":[303]},{"name":"ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING","features":[303]},{"name":"ERROR_IPSEC_IKE_RPC_DELETE","features":[303]},{"name":"ERROR_IPSEC_IKE_SA_DELETED","features":[303]},{"name":"ERROR_IPSEC_IKE_SA_REAPED","features":[303]},{"name":"ERROR_IPSEC_IKE_SECLOADFAIL","features":[303]},{"name":"ERROR_IPSEC_IKE_SHUTTING_DOWN","features":[303]},{"name":"ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY","features":[303]},{"name":"ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN","features":[303]},{"name":"ERROR_IPSEC_IKE_SRVACQFAIL","features":[303]},{"name":"ERROR_IPSEC_IKE_SRVQUERYCRED","features":[303]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE","features":[303]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE","features":[303]},{"name":"ERROR_IPSEC_IKE_TIMED_OUT","features":[303]},{"name":"ERROR_IPSEC_IKE_TOO_MANY_FILTERS","features":[303]},{"name":"ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID","features":[303]},{"name":"ERROR_IPSEC_IKE_UNKNOWN_DOI","features":[303]},{"name":"ERROR_IPSEC_IKE_UNSUPPORTED_ID","features":[303]},{"name":"ERROR_IPSEC_INTEGRITY_CHECK_FAILED","features":[303]},{"name":"ERROR_IPSEC_INVALID_PACKET","features":[303]},{"name":"ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING","features":[303]},{"name":"ERROR_IPSEC_MM_AUTH_EXISTS","features":[303]},{"name":"ERROR_IPSEC_MM_AUTH_IN_USE","features":[303]},{"name":"ERROR_IPSEC_MM_AUTH_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_MM_AUTH_PENDING_DELETION","features":[303]},{"name":"ERROR_IPSEC_MM_FILTER_EXISTS","features":[303]},{"name":"ERROR_IPSEC_MM_FILTER_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_MM_FILTER_PENDING_DELETION","features":[303]},{"name":"ERROR_IPSEC_MM_POLICY_EXISTS","features":[303]},{"name":"ERROR_IPSEC_MM_POLICY_IN_USE","features":[303]},{"name":"ERROR_IPSEC_MM_POLICY_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_MM_POLICY_PENDING_DELETION","features":[303]},{"name":"ERROR_IPSEC_QM_POLICY_EXISTS","features":[303]},{"name":"ERROR_IPSEC_QM_POLICY_IN_USE","features":[303]},{"name":"ERROR_IPSEC_QM_POLICY_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_QM_POLICY_PENDING_DELETION","features":[303]},{"name":"ERROR_IPSEC_REPLAY_CHECK_FAILED","features":[303]},{"name":"ERROR_IPSEC_SA_LIFETIME_EXPIRED","features":[303]},{"name":"ERROR_IPSEC_THROTTLE_DROP","features":[303]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_EXISTS","features":[303]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION","features":[303]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_EXISTS","features":[303]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND","features":[303]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION","features":[303]},{"name":"ERROR_IPSEC_WRONG_SA","features":[303]},{"name":"ERROR_IP_ADDRESS_CONFLICT1","features":[303]},{"name":"ERROR_IP_ADDRESS_CONFLICT2","features":[303]},{"name":"ERROR_IRQ_BUSY","features":[303]},{"name":"ERROR_IS_JOINED","features":[303]},{"name":"ERROR_IS_JOIN_PATH","features":[303]},{"name":"ERROR_IS_JOIN_TARGET","features":[303]},{"name":"ERROR_IS_SUBSTED","features":[303]},{"name":"ERROR_IS_SUBST_PATH","features":[303]},{"name":"ERROR_IS_SUBST_TARGET","features":[303]},{"name":"ERROR_ITERATED_DATA_EXCEEDS_64k","features":[303]},{"name":"ERROR_JOB_NO_CONTAINER","features":[303]},{"name":"ERROR_JOIN_TO_JOIN","features":[303]},{"name":"ERROR_JOIN_TO_SUBST","features":[303]},{"name":"ERROR_JOURNAL_DELETE_IN_PROGRESS","features":[303]},{"name":"ERROR_JOURNAL_ENTRY_DELETED","features":[303]},{"name":"ERROR_JOURNAL_HOOK_SET","features":[303]},{"name":"ERROR_JOURNAL_NOT_ACTIVE","features":[303]},{"name":"ERROR_KERNEL_APC","features":[303]},{"name":"ERROR_KEY_DELETED","features":[303]},{"name":"ERROR_KEY_DOES_NOT_EXIST","features":[303]},{"name":"ERROR_KEY_HAS_CHILDREN","features":[303]},{"name":"ERROR_KM_DRIVER_BLOCKED","features":[303]},{"name":"ERROR_LABEL_TOO_LONG","features":[303]},{"name":"ERROR_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[303]},{"name":"ERROR_LAPS_LEGACY_SCHEMA_MISSING","features":[303]},{"name":"ERROR_LAPS_SCHEMA_MISSING","features":[303]},{"name":"ERROR_LAST_ADMIN","features":[303]},{"name":"ERROR_LB_WITHOUT_TABSTOPS","features":[303]},{"name":"ERROR_LIBRARY_FULL","features":[303]},{"name":"ERROR_LIBRARY_OFFLINE","features":[303]},{"name":"ERROR_LICENSE_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_LINE_NOT_FOUND","features":[303]},{"name":"ERROR_LINUX_SUBSYSTEM_NOT_PRESENT","features":[303]},{"name":"ERROR_LINUX_SUBSYSTEM_UPDATE_REQUIRED","features":[303]},{"name":"ERROR_LISTBOX_ID_NOT_FOUND","features":[303]},{"name":"ERROR_LM_CROSS_ENCRYPTION_REQUIRED","features":[303]},{"name":"ERROR_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[303]},{"name":"ERROR_LOCAL_USER_SESSION_KEY","features":[303]},{"name":"ERROR_LOCKED","features":[303]},{"name":"ERROR_LOCK_FAILED","features":[303]},{"name":"ERROR_LOCK_VIOLATION","features":[303]},{"name":"ERROR_LOGIN_TIME_RESTRICTION","features":[303]},{"name":"ERROR_LOGIN_WKSTA_RESTRICTION","features":[303]},{"name":"ERROR_LOGON_FAILURE","features":[303]},{"name":"ERROR_LOGON_NOT_GRANTED","features":[303]},{"name":"ERROR_LOGON_SERVER_CONFLICT","features":[303]},{"name":"ERROR_LOGON_SESSION_COLLISION","features":[303]},{"name":"ERROR_LOGON_SESSION_EXISTS","features":[303]},{"name":"ERROR_LOGON_TYPE_NOT_GRANTED","features":[303]},{"name":"ERROR_LOG_APPENDED_FLUSH_FAILED","features":[303]},{"name":"ERROR_LOG_ARCHIVE_IN_PROGRESS","features":[303]},{"name":"ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[303]},{"name":"ERROR_LOG_BLOCKS_EXHAUSTED","features":[303]},{"name":"ERROR_LOG_BLOCK_INCOMPLETE","features":[303]},{"name":"ERROR_LOG_BLOCK_INVALID","features":[303]},{"name":"ERROR_LOG_BLOCK_VERSION","features":[303]},{"name":"ERROR_LOG_CANT_DELETE","features":[303]},{"name":"ERROR_LOG_CLIENT_ALREADY_REGISTERED","features":[303]},{"name":"ERROR_LOG_CLIENT_NOT_REGISTERED","features":[303]},{"name":"ERROR_LOG_CONTAINER_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_LOG_CONTAINER_OPEN_FAILED","features":[303]},{"name":"ERROR_LOG_CONTAINER_READ_FAILED","features":[303]},{"name":"ERROR_LOG_CONTAINER_STATE_INVALID","features":[303]},{"name":"ERROR_LOG_CONTAINER_WRITE_FAILED","features":[303]},{"name":"ERROR_LOG_CORRUPTION_DETECTED","features":[303]},{"name":"ERROR_LOG_DEDICATED","features":[303]},{"name":"ERROR_LOG_EPHEMERAL","features":[303]},{"name":"ERROR_LOG_FILE_FULL","features":[303]},{"name":"ERROR_LOG_FULL","features":[303]},{"name":"ERROR_LOG_FULL_HANDLER_IN_PROGRESS","features":[303]},{"name":"ERROR_LOG_GROWTH_FAILED","features":[303]},{"name":"ERROR_LOG_HARD_ERROR","features":[303]},{"name":"ERROR_LOG_INCONSISTENT_SECURITY","features":[303]},{"name":"ERROR_LOG_INVALID_RANGE","features":[303]},{"name":"ERROR_LOG_METADATA_CORRUPT","features":[303]},{"name":"ERROR_LOG_METADATA_FLUSH_FAILED","features":[303]},{"name":"ERROR_LOG_METADATA_INCONSISTENT","features":[303]},{"name":"ERROR_LOG_METADATA_INVALID","features":[303]},{"name":"ERROR_LOG_MULTIPLEXED","features":[303]},{"name":"ERROR_LOG_NOT_ENOUGH_CONTAINERS","features":[303]},{"name":"ERROR_LOG_NO_RESTART","features":[303]},{"name":"ERROR_LOG_PINNED","features":[303]},{"name":"ERROR_LOG_PINNED_ARCHIVE_TAIL","features":[303]},{"name":"ERROR_LOG_PINNED_RESERVATION","features":[303]},{"name":"ERROR_LOG_POLICY_ALREADY_INSTALLED","features":[303]},{"name":"ERROR_LOG_POLICY_CONFLICT","features":[303]},{"name":"ERROR_LOG_POLICY_INVALID","features":[303]},{"name":"ERROR_LOG_POLICY_NOT_INSTALLED","features":[303]},{"name":"ERROR_LOG_READ_CONTEXT_INVALID","features":[303]},{"name":"ERROR_LOG_READ_MODE_INVALID","features":[303]},{"name":"ERROR_LOG_RECORDS_RESERVED_INVALID","features":[303]},{"name":"ERROR_LOG_RECORD_NONEXISTENT","features":[303]},{"name":"ERROR_LOG_RESERVATION_INVALID","features":[303]},{"name":"ERROR_LOG_RESIZE_INVALID_SIZE","features":[303]},{"name":"ERROR_LOG_RESTART_INVALID","features":[303]},{"name":"ERROR_LOG_SECTOR_INVALID","features":[303]},{"name":"ERROR_LOG_SECTOR_PARITY_INVALID","features":[303]},{"name":"ERROR_LOG_SECTOR_REMAPPED","features":[303]},{"name":"ERROR_LOG_SPACE_RESERVED_INVALID","features":[303]},{"name":"ERROR_LOG_START_OF_LOG","features":[303]},{"name":"ERROR_LOG_STATE_INVALID","features":[303]},{"name":"ERROR_LOG_TAIL_INVALID","features":[303]},{"name":"ERROR_LONGJUMP","features":[303]},{"name":"ERROR_LOST_MODE_LOGON_RESTRICTION","features":[303]},{"name":"ERROR_LOST_WRITEBEHIND_DATA","features":[303]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[303]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[303]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[303]},{"name":"ERROR_LUIDS_EXHAUSTED","features":[303]},{"name":"ERROR_MACHINE_LOCKED","features":[303]},{"name":"ERROR_MACHINE_SCOPE_NOT_ALLOWED","features":[303]},{"name":"ERROR_MACHINE_UNAVAILABLE","features":[303]},{"name":"ERROR_MAGAZINE_NOT_PRESENT","features":[303]},{"name":"ERROR_MALFORMED_SUBSTITUTION_STRING","features":[303]},{"name":"ERROR_MAPPED_ALIGNMENT","features":[303]},{"name":"ERROR_MARKED_TO_DISALLOW_WRITES","features":[303]},{"name":"ERROR_MARSHALL_OVERFLOW","features":[303]},{"name":"ERROR_MAX_CLIENT_INTERFACE_LIMIT","features":[303]},{"name":"ERROR_MAX_LAN_INTERFACE_LIMIT","features":[303]},{"name":"ERROR_MAX_SESSIONS_REACHED","features":[303]},{"name":"ERROR_MAX_THRDS_REACHED","features":[303]},{"name":"ERROR_MAX_WAN_INTERFACE_LIMIT","features":[303]},{"name":"ERROR_MCA_EXCEPTION","features":[303]},{"name":"ERROR_MCA_INTERNAL_ERROR","features":[303]},{"name":"ERROR_MCA_INVALID_CAPABILITIES_STRING","features":[303]},{"name":"ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[303]},{"name":"ERROR_MCA_INVALID_VCP_VERSION","features":[303]},{"name":"ERROR_MCA_MCCS_VERSION_MISMATCH","features":[303]},{"name":"ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[303]},{"name":"ERROR_MCA_OCCURED","features":[303]},{"name":"ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[303]},{"name":"ERROR_MCA_UNSUPPORTED_MCCS_VERSION","features":[303]},{"name":"ERROR_MEDIA_CHANGED","features":[303]},{"name":"ERROR_MEDIA_CHECK","features":[303]},{"name":"ERROR_MEDIA_INCOMPATIBLE","features":[303]},{"name":"ERROR_MEDIA_NOT_AVAILABLE","features":[303]},{"name":"ERROR_MEDIA_OFFLINE","features":[303]},{"name":"ERROR_MEDIA_UNAVAILABLE","features":[303]},{"name":"ERROR_MEDIUM_NOT_ACCESSIBLE","features":[303]},{"name":"ERROR_MEMBERS_PRIMARY_GROUP","features":[303]},{"name":"ERROR_MEMBER_IN_ALIAS","features":[303]},{"name":"ERROR_MEMBER_IN_GROUP","features":[303]},{"name":"ERROR_MEMBER_NOT_IN_ALIAS","features":[303]},{"name":"ERROR_MEMBER_NOT_IN_GROUP","features":[303]},{"name":"ERROR_MEMORY_HARDWARE","features":[303]},{"name":"ERROR_MENU_ITEM_NOT_FOUND","features":[303]},{"name":"ERROR_MESSAGE_EXCEEDS_MAX_SIZE","features":[303]},{"name":"ERROR_MESSAGE_SYNC_ONLY","features":[303]},{"name":"ERROR_METAFILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_META_EXPANSION_TOO_LONG","features":[303]},{"name":"ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[303]},{"name":"ERROR_MISSING_SYSTEMFILE","features":[303]},{"name":"ERROR_MOD_NOT_FOUND","features":[303]},{"name":"ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[303]},{"name":"ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[303]},{"name":"ERROR_MONITOR_INVALID_MANUFACTURE_DATE","features":[303]},{"name":"ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[303]},{"name":"ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[303]},{"name":"ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[303]},{"name":"ERROR_MONITOR_NO_DESCRIPTOR","features":[303]},{"name":"ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[303]},{"name":"ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[303]},{"name":"ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[303]},{"name":"ERROR_MORE_DATA","features":[303]},{"name":"ERROR_MORE_WRITES","features":[303]},{"name":"ERROR_MOUNT_POINT_NOT_RESOLVED","features":[303]},{"name":"ERROR_MP_PROCESSOR_MISMATCH","features":[303]},{"name":"ERROR_MRM_AUTOMERGE_ENABLED","features":[303]},{"name":"ERROR_MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE","features":[303]},{"name":"ERROR_MRM_DUPLICATE_ENTRY","features":[303]},{"name":"ERROR_MRM_DUPLICATE_MAP_NAME","features":[303]},{"name":"ERROR_MRM_FILEPATH_TOO_LONG","features":[303]},{"name":"ERROR_MRM_GENERATION_COUNT_MISMATCH","features":[303]},{"name":"ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE","features":[303]},{"name":"ERROR_MRM_INVALID_FILE_TYPE","features":[303]},{"name":"ERROR_MRM_INVALID_PRICONFIG","features":[303]},{"name":"ERROR_MRM_INVALID_PRI_FILE","features":[303]},{"name":"ERROR_MRM_INVALID_QUALIFIER_OPERATOR","features":[303]},{"name":"ERROR_MRM_INVALID_QUALIFIER_VALUE","features":[303]},{"name":"ERROR_MRM_INVALID_RESOURCE_IDENTIFIER","features":[303]},{"name":"ERROR_MRM_MAP_NOT_FOUND","features":[303]},{"name":"ERROR_MRM_MISSING_DEFAULT_LANGUAGE","features":[303]},{"name":"ERROR_MRM_NAMED_RESOURCE_NOT_FOUND","features":[303]},{"name":"ERROR_MRM_NO_CANDIDATE","features":[303]},{"name":"ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD","features":[303]},{"name":"ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE","features":[303]},{"name":"ERROR_MRM_PACKAGE_NOT_FOUND","features":[303]},{"name":"ERROR_MRM_RESOURCE_TYPE_MISMATCH","features":[303]},{"name":"ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE","features":[303]},{"name":"ERROR_MRM_SCOPE_ITEM_CONFLICT","features":[303]},{"name":"ERROR_MRM_TOO_MANY_RESOURCES","features":[303]},{"name":"ERROR_MRM_UNKNOWN_QUALIFIER","features":[303]},{"name":"ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE","features":[303]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE","features":[303]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE","features":[303]},{"name":"ERROR_MRM_UNSUPPORTED_PROFILE_TYPE","features":[303]},{"name":"ERROR_MR_MID_NOT_FOUND","features":[303]},{"name":"ERROR_MUI_FILE_NOT_FOUND","features":[303]},{"name":"ERROR_MUI_FILE_NOT_LOADED","features":[303]},{"name":"ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME","features":[303]},{"name":"ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED","features":[303]},{"name":"ERROR_MUI_INVALID_FILE","features":[303]},{"name":"ERROR_MUI_INVALID_LOCALE_NAME","features":[303]},{"name":"ERROR_MUI_INVALID_RC_CONFIG","features":[303]},{"name":"ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[303]},{"name":"ERROR_MULTIPLE_FAULT_VIOLATION","features":[303]},{"name":"ERROR_MUTANT_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_MUTUAL_AUTH_FAILED","features":[303]},{"name":"ERROR_NDIS_ADAPTER_NOT_FOUND","features":[303]},{"name":"ERROR_NDIS_ADAPTER_NOT_READY","features":[303]},{"name":"ERROR_NDIS_ADAPTER_REMOVED","features":[303]},{"name":"ERROR_NDIS_ALREADY_MAPPED","features":[303]},{"name":"ERROR_NDIS_BAD_CHARACTERISTICS","features":[303]},{"name":"ERROR_NDIS_BAD_VERSION","features":[303]},{"name":"ERROR_NDIS_BUFFER_TOO_SHORT","features":[303]},{"name":"ERROR_NDIS_DEVICE_FAILED","features":[303]},{"name":"ERROR_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[303]},{"name":"ERROR_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[303]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[303]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[303]},{"name":"ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[303]},{"name":"ERROR_NDIS_DOT11_MEDIA_IN_USE","features":[303]},{"name":"ERROR_NDIS_DOT11_POWER_STATE_INVALID","features":[303]},{"name":"ERROR_NDIS_ERROR_READING_FILE","features":[303]},{"name":"ERROR_NDIS_FILE_NOT_FOUND","features":[303]},{"name":"ERROR_NDIS_GROUP_ADDRESS_IN_USE","features":[303]},{"name":"ERROR_NDIS_INDICATION_REQUIRED","features":[303]},{"name":"ERROR_NDIS_INTERFACE_CLOSING","features":[303]},{"name":"ERROR_NDIS_INTERFACE_NOT_FOUND","features":[303]},{"name":"ERROR_NDIS_INVALID_ADDRESS","features":[303]},{"name":"ERROR_NDIS_INVALID_DATA","features":[303]},{"name":"ERROR_NDIS_INVALID_DEVICE_REQUEST","features":[303]},{"name":"ERROR_NDIS_INVALID_LENGTH","features":[303]},{"name":"ERROR_NDIS_INVALID_OID","features":[303]},{"name":"ERROR_NDIS_INVALID_PACKET","features":[303]},{"name":"ERROR_NDIS_INVALID_PORT","features":[303]},{"name":"ERROR_NDIS_INVALID_PORT_STATE","features":[303]},{"name":"ERROR_NDIS_LOW_POWER_STATE","features":[303]},{"name":"ERROR_NDIS_MEDIA_DISCONNECTED","features":[303]},{"name":"ERROR_NDIS_MULTICAST_EXISTS","features":[303]},{"name":"ERROR_NDIS_MULTICAST_FULL","features":[303]},{"name":"ERROR_NDIS_MULTICAST_NOT_FOUND","features":[303]},{"name":"ERROR_NDIS_NOT_SUPPORTED","features":[303]},{"name":"ERROR_NDIS_NO_QUEUES","features":[303]},{"name":"ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[303]},{"name":"ERROR_NDIS_OFFLOAD_PATH_REJECTED","features":[303]},{"name":"ERROR_NDIS_OFFLOAD_POLICY","features":[303]},{"name":"ERROR_NDIS_OPEN_FAILED","features":[303]},{"name":"ERROR_NDIS_PAUSED","features":[303]},{"name":"ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[303]},{"name":"ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[303]},{"name":"ERROR_NDIS_REINIT_REQUIRED","features":[303]},{"name":"ERROR_NDIS_REQUEST_ABORTED","features":[303]},{"name":"ERROR_NDIS_RESET_IN_PROGRESS","features":[303]},{"name":"ERROR_NDIS_RESOURCE_CONFLICT","features":[303]},{"name":"ERROR_NDIS_UNSUPPORTED_MEDIA","features":[303]},{"name":"ERROR_NDIS_UNSUPPORTED_REVISION","features":[303]},{"name":"ERROR_NEEDS_REGISTRATION","features":[303]},{"name":"ERROR_NEEDS_REMEDIATION","features":[303]},{"name":"ERROR_NEGATIVE_SEEK","features":[303]},{"name":"ERROR_NESTING_NOT_ALLOWED","features":[303]},{"name":"ERROR_NETLOGON_NOT_STARTED","features":[303]},{"name":"ERROR_NETNAME_DELETED","features":[303]},{"name":"ERROR_NETWORK_ACCESS_DENIED","features":[303]},{"name":"ERROR_NETWORK_ACCESS_DENIED_EDP","features":[303]},{"name":"ERROR_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[303]},{"name":"ERROR_NETWORK_BUSY","features":[303]},{"name":"ERROR_NETWORK_NOT_AVAILABLE","features":[303]},{"name":"ERROR_NETWORK_UNREACHABLE","features":[303]},{"name":"ERROR_NET_OPEN_FAILED","features":[303]},{"name":"ERROR_NET_WRITE_FAULT","features":[303]},{"name":"ERROR_NOACCESS","features":[303]},{"name":"ERROR_NODE_CANNOT_BE_CLUSTERED","features":[303]},{"name":"ERROR_NODE_CANT_HOST_RESOURCE","features":[303]},{"name":"ERROR_NODE_NOT_ACTIVE_CLUSTER_MEMBER","features":[303]},{"name":"ERROR_NODE_NOT_AVAILABLE","features":[303]},{"name":"ERROR_NOINTERFACE","features":[303]},{"name":"ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[303]},{"name":"ERROR_NOLOGON_SERVER_TRUST_ACCOUNT","features":[303]},{"name":"ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[303]},{"name":"ERROR_NONCORE_GROUPS_FOUND","features":[303]},{"name":"ERROR_NONE_MAPPED","features":[303]},{"name":"ERROR_NONPAGED_SYSTEM_RESOURCES","features":[303]},{"name":"ERROR_NON_ACCOUNT_SID","features":[303]},{"name":"ERROR_NON_CSV_PATH","features":[303]},{"name":"ERROR_NON_DOMAIN_SID","features":[303]},{"name":"ERROR_NON_MDICHILD_WINDOW","features":[303]},{"name":"ERROR_NON_WINDOWS_DRIVER","features":[303]},{"name":"ERROR_NON_WINDOWS_NT_DRIVER","features":[303]},{"name":"ERROR_NOTHING_TO_TERMINATE","features":[303]},{"name":"ERROR_NOTIFICATION_GUID_ALREADY_DEFINED","features":[303]},{"name":"ERROR_NOTIFY_CLEANUP","features":[303]},{"name":"ERROR_NOTIFY_ENUM_DIR","features":[303]},{"name":"ERROR_NOT_ALLOWED_ON_SYSTEM_FILE","features":[303]},{"name":"ERROR_NOT_ALL_ASSIGNED","features":[303]},{"name":"ERROR_NOT_AN_INSTALLED_OEM_INF","features":[303]},{"name":"ERROR_NOT_APPCONTAINER","features":[303]},{"name":"ERROR_NOT_AUTHENTICATED","features":[303]},{"name":"ERROR_NOT_A_CLOUD_FILE","features":[303]},{"name":"ERROR_NOT_A_CLOUD_SYNC_ROOT","features":[303]},{"name":"ERROR_NOT_A_DAX_VOLUME","features":[303]},{"name":"ERROR_NOT_A_DEV_VOLUME","features":[303]},{"name":"ERROR_NOT_A_REPARSE_POINT","features":[303]},{"name":"ERROR_NOT_A_TIERED_VOLUME","features":[303]},{"name":"ERROR_NOT_CAPABLE","features":[303]},{"name":"ERROR_NOT_CHILD_WINDOW","features":[303]},{"name":"ERROR_NOT_CLIENT_PORT","features":[303]},{"name":"ERROR_NOT_CONNECTED","features":[303]},{"name":"ERROR_NOT_CONTAINER","features":[303]},{"name":"ERROR_NOT_DAX_MAPPABLE","features":[303]},{"name":"ERROR_NOT_DISABLEABLE","features":[303]},{"name":"ERROR_NOT_DOS_DISK","features":[303]},{"name":"ERROR_NOT_EMPTY","features":[303]},{"name":"ERROR_NOT_ENOUGH_MEMORY","features":[303]},{"name":"ERROR_NOT_ENOUGH_QUOTA","features":[303]},{"name":"ERROR_NOT_ENOUGH_SERVER_MEMORY","features":[303]},{"name":"ERROR_NOT_EXPORT_FORMAT","features":[303]},{"name":"ERROR_NOT_FOUND","features":[303]},{"name":"ERROR_NOT_GUI_PROCESS","features":[303]},{"name":"ERROR_NOT_INSTALLED","features":[303]},{"name":"ERROR_NOT_JOINED","features":[303]},{"name":"ERROR_NOT_LOCKED","features":[303]},{"name":"ERROR_NOT_LOGGED_ON","features":[303]},{"name":"ERROR_NOT_LOGON_PROCESS","features":[303]},{"name":"ERROR_NOT_OWNER","features":[303]},{"name":"ERROR_NOT_QUORUM_CAPABLE","features":[303]},{"name":"ERROR_NOT_QUORUM_CLASS","features":[303]},{"name":"ERROR_NOT_READY","features":[303]},{"name":"ERROR_NOT_READ_FROM_COPY","features":[303]},{"name":"ERROR_NOT_REDUNDANT_STORAGE","features":[303]},{"name":"ERROR_NOT_REGISTRY_FILE","features":[303]},{"name":"ERROR_NOT_ROUTER_PORT","features":[303]},{"name":"ERROR_NOT_SAFEBOOT_SERVICE","features":[303]},{"name":"ERROR_NOT_SAFE_MODE_DRIVER","features":[303]},{"name":"ERROR_NOT_SAME_DEVICE","features":[303]},{"name":"ERROR_NOT_SAME_OBJECT","features":[303]},{"name":"ERROR_NOT_SNAPSHOT_VOLUME","features":[303]},{"name":"ERROR_NOT_SUBSTED","features":[303]},{"name":"ERROR_NOT_SUPPORTED","features":[303]},{"name":"ERROR_NOT_SUPPORTED_IN_APPCONTAINER","features":[303]},{"name":"ERROR_NOT_SUPPORTED_ON_DAX","features":[303]},{"name":"ERROR_NOT_SUPPORTED_ON_SBS","features":[303]},{"name":"ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_AUDITING","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_BTT","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_BYPASSIO","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_COMPRESSION","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_ENCRYPTION","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_MONITORING","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_REPLICATION","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_SNAPSHOT","features":[303]},{"name":"ERROR_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[303]},{"name":"ERROR_NOT_TINY_STREAM","features":[303]},{"name":"ERROR_NO_ACE_CONDITION","features":[303]},{"name":"ERROR_NO_ADMIN_ACCESS_POINT","features":[303]},{"name":"ERROR_NO_APPLICABLE_APP_LICENSES_FOUND","features":[303]},{"name":"ERROR_NO_ASSOCIATED_CLASS","features":[303]},{"name":"ERROR_NO_ASSOCIATED_SERVICE","features":[303]},{"name":"ERROR_NO_ASSOCIATION","features":[303]},{"name":"ERROR_NO_AUTHENTICODE_CATALOG","features":[303]},{"name":"ERROR_NO_AUTH_PROTOCOL_AVAILABLE","features":[303]},{"name":"ERROR_NO_BACKUP","features":[303]},{"name":"ERROR_NO_BROWSER_SERVERS_FOUND","features":[303]},{"name":"ERROR_NO_BYPASSIO_DRIVER_SUPPORT","features":[303]},{"name":"ERROR_NO_CALLBACK_ACTIVE","features":[303]},{"name":"ERROR_NO_CATALOG_FOR_OEM_INF","features":[303]},{"name":"ERROR_NO_CLASSINSTALL_PARAMS","features":[303]},{"name":"ERROR_NO_CLASS_DRIVER_LIST","features":[303]},{"name":"ERROR_NO_COMPAT_DRIVERS","features":[303]},{"name":"ERROR_NO_CONFIGMGR_SERVICES","features":[303]},{"name":"ERROR_NO_DATA","features":[303]},{"name":"ERROR_NO_DATA_DETECTED","features":[303]},{"name":"ERROR_NO_DEFAULT_DEVICE_INTERFACE","features":[303]},{"name":"ERROR_NO_DEFAULT_INTERFACE_DEVICE","features":[303]},{"name":"ERROR_NO_DEVICE_ICON","features":[303]},{"name":"ERROR_NO_DEVICE_SELECTED","features":[303]},{"name":"ERROR_NO_DRIVER_SELECTED","features":[303]},{"name":"ERROR_NO_EFS","features":[303]},{"name":"ERROR_NO_EVENT_PAIR","features":[303]},{"name":"ERROR_NO_GUID_TRANSLATION","features":[303]},{"name":"ERROR_NO_IMPERSONATION_TOKEN","features":[303]},{"name":"ERROR_NO_INF","features":[303]},{"name":"ERROR_NO_INHERITANCE","features":[303]},{"name":"ERROR_NO_INTERFACE_CREDENTIALS_SET","features":[303]},{"name":"ERROR_NO_LINK_TRACKING_IN_TRANSACTION","features":[303]},{"name":"ERROR_NO_LOGON_SERVERS","features":[303]},{"name":"ERROR_NO_LOG_SPACE","features":[303]},{"name":"ERROR_NO_MATCH","features":[303]},{"name":"ERROR_NO_MEDIA_IN_DRIVE","features":[303]},{"name":"ERROR_NO_MORE_DEVICES","features":[303]},{"name":"ERROR_NO_MORE_FILES","features":[303]},{"name":"ERROR_NO_MORE_ITEMS","features":[303]},{"name":"ERROR_NO_MORE_MATCHES","features":[303]},{"name":"ERROR_NO_MORE_SEARCH_HANDLES","features":[303]},{"name":"ERROR_NO_MORE_USER_HANDLES","features":[303]},{"name":"ERROR_NO_NETWORK","features":[303]},{"name":"ERROR_NO_NET_OR_BAD_PATH","features":[303]},{"name":"ERROR_NO_NVRAM_RESOURCES","features":[303]},{"name":"ERROR_NO_PAGEFILE","features":[303]},{"name":"ERROR_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[303]},{"name":"ERROR_NO_PROC_SLOTS","features":[303]},{"name":"ERROR_NO_PROMOTION_ACTIVE","features":[303]},{"name":"ERROR_NO_QUOTAS_FOR_ACCOUNT","features":[303]},{"name":"ERROR_NO_RADIUS_SERVERS","features":[303]},{"name":"ERROR_NO_RANGES_PROCESSED","features":[303]},{"name":"ERROR_NO_RECOVERY_POLICY","features":[303]},{"name":"ERROR_NO_RECOVERY_PROGRAM","features":[303]},{"name":"ERROR_NO_SAVEPOINT_WITH_OPEN_FILES","features":[303]},{"name":"ERROR_NO_SCROLLBARS","features":[303]},{"name":"ERROR_NO_SECRETS","features":[303]},{"name":"ERROR_NO_SECURITY_ON_OBJECT","features":[303]},{"name":"ERROR_NO_SHUTDOWN_IN_PROGRESS","features":[303]},{"name":"ERROR_NO_SIGNAL_SENT","features":[303]},{"name":"ERROR_NO_SIGNATURE","features":[303]},{"name":"ERROR_NO_SITENAME","features":[303]},{"name":"ERROR_NO_SITE_SETTINGS_OBJECT","features":[303]},{"name":"ERROR_NO_SPOOL_SPACE","features":[303]},{"name":"ERROR_NO_SUCH_ALIAS","features":[303]},{"name":"ERROR_NO_SUCH_DEVICE","features":[303]},{"name":"ERROR_NO_SUCH_DEVICE_INTERFACE","features":[303]},{"name":"ERROR_NO_SUCH_DEVINST","features":[303]},{"name":"ERROR_NO_SUCH_DOMAIN","features":[303]},{"name":"ERROR_NO_SUCH_GROUP","features":[303]},{"name":"ERROR_NO_SUCH_INTERFACE","features":[303]},{"name":"ERROR_NO_SUCH_INTERFACE_CLASS","features":[303]},{"name":"ERROR_NO_SUCH_INTERFACE_DEVICE","features":[303]},{"name":"ERROR_NO_SUCH_LOGON_SESSION","features":[303]},{"name":"ERROR_NO_SUCH_MEMBER","features":[303]},{"name":"ERROR_NO_SUCH_PACKAGE","features":[303]},{"name":"ERROR_NO_SUCH_PRIVILEGE","features":[303]},{"name":"ERROR_NO_SUCH_SITE","features":[303]},{"name":"ERROR_NO_SUCH_USER","features":[303]},{"name":"ERROR_NO_SUPPORTING_DRIVES","features":[303]},{"name":"ERROR_NO_SYSTEM_MENU","features":[303]},{"name":"ERROR_NO_SYSTEM_RESOURCES","features":[303]},{"name":"ERROR_NO_TASK_QUEUE","features":[303]},{"name":"ERROR_NO_TOKEN","features":[303]},{"name":"ERROR_NO_TRACKING_SERVICE","features":[303]},{"name":"ERROR_NO_TRUST_LSA_SECRET","features":[303]},{"name":"ERROR_NO_TRUST_SAM_ACCOUNT","features":[303]},{"name":"ERROR_NO_TXF_METADATA","features":[303]},{"name":"ERROR_NO_UNICODE_TRANSLATION","features":[303]},{"name":"ERROR_NO_USER_KEYS","features":[303]},{"name":"ERROR_NO_USER_SESSION_KEY","features":[303]},{"name":"ERROR_NO_VOLUME_ID","features":[303]},{"name":"ERROR_NO_VOLUME_LABEL","features":[303]},{"name":"ERROR_NO_WILDCARD_CHARACTERS","features":[303]},{"name":"ERROR_NO_WORK_DONE","features":[303]},{"name":"ERROR_NO_WRITABLE_DC_FOUND","features":[303]},{"name":"ERROR_NO_YIELD_PERFORMED","features":[303]},{"name":"ERROR_NTLM_BLOCKED","features":[303]},{"name":"ERROR_NT_CROSS_ENCRYPTION_REQUIRED","features":[303]},{"name":"ERROR_NULL_LM_PASSWORD","features":[303]},{"name":"ERROR_OBJECT_ALREADY_EXISTS","features":[303]},{"name":"ERROR_OBJECT_IN_LIST","features":[303]},{"name":"ERROR_OBJECT_IS_IMMUTABLE","features":[303]},{"name":"ERROR_OBJECT_NAME_EXISTS","features":[303]},{"name":"ERROR_OBJECT_NOT_EXTERNALLY_BACKED","features":[303]},{"name":"ERROR_OBJECT_NOT_FOUND","features":[303]},{"name":"ERROR_OBJECT_NO_LONGER_EXISTS","features":[303]},{"name":"ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[303]},{"name":"ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[303]},{"name":"ERROR_OFFSET_ALIGNMENT_VIOLATION","features":[303]},{"name":"ERROR_OLD_WIN_VERSION","features":[303]},{"name":"ERROR_ONLY_IF_CONNECTED","features":[303]},{"name":"ERROR_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[303]},{"name":"ERROR_OPEN_FAILED","features":[303]},{"name":"ERROR_OPEN_FILES","features":[303]},{"name":"ERROR_OPERATION_ABORTED","features":[303]},{"name":"ERROR_OPERATION_IN_PROGRESS","features":[303]},{"name":"ERROR_OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT","features":[303]},{"name":"ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[303]},{"name":"ERROR_OPLOCK_BREAK_IN_PROGRESS","features":[303]},{"name":"ERROR_OPLOCK_HANDLE_CLOSED","features":[303]},{"name":"ERROR_OPLOCK_NOT_GRANTED","features":[303]},{"name":"ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[303]},{"name":"ERROR_ORPHAN_NAME_EXHAUSTED","features":[303]},{"name":"ERROR_OUTOFMEMORY","features":[303]},{"name":"ERROR_OUT_OF_PAPER","features":[303]},{"name":"ERROR_OUT_OF_STRUCTURES","features":[303]},{"name":"ERROR_OVERRIDE_NOCHANGES","features":[303]},{"name":"ERROR_PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES","features":[303]},{"name":"ERROR_PACKAGES_IN_USE","features":[303]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_FAILED","features":[303]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_TIMEDOUT","features":[303]},{"name":"ERROR_PACKAGE_ALREADY_EXISTS","features":[303]},{"name":"ERROR_PACKAGE_EXTERNAL_LOCATION_NOT_ALLOWED","features":[303]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_FOR_MANDATORY_STARTUPTASKS","features":[303]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_TO_DEPLOY_ON_HOST","features":[303]},{"name":"ERROR_PACKAGE_MOVE_BLOCKED_BY_STREAMING","features":[303]},{"name":"ERROR_PACKAGE_MOVE_FAILED","features":[303]},{"name":"ERROR_PACKAGE_NAME_MISMATCH","features":[303]},{"name":"ERROR_PACKAGE_NOT_REGISTERED_FOR_USER","features":[303]},{"name":"ERROR_PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM","features":[303]},{"name":"ERROR_PACKAGE_REPOSITORY_CORRUPTED","features":[303]},{"name":"ERROR_PACKAGE_STAGING_ONHOLD","features":[303]},{"name":"ERROR_PACKAGE_UPDATING","features":[303]},{"name":"ERROR_PAGED_SYSTEM_RESOURCES","features":[303]},{"name":"ERROR_PAGEFILE_CREATE_FAILED","features":[303]},{"name":"ERROR_PAGEFILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_PAGEFILE_QUOTA","features":[303]},{"name":"ERROR_PAGEFILE_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_PAGE_FAULT_COPY_ON_WRITE","features":[303]},{"name":"ERROR_PAGE_FAULT_DEMAND_ZERO","features":[303]},{"name":"ERROR_PAGE_FAULT_GUARD_PAGE","features":[303]},{"name":"ERROR_PAGE_FAULT_PAGING_FILE","features":[303]},{"name":"ERROR_PAGE_FAULT_TRANSITION","features":[303]},{"name":"ERROR_PARAMETER_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_PARTIAL_COPY","features":[303]},{"name":"ERROR_PARTITION_FAILURE","features":[303]},{"name":"ERROR_PARTITION_TERMINATING","features":[303]},{"name":"ERROR_PASSWORD_CHANGE_REQUIRED","features":[303]},{"name":"ERROR_PASSWORD_EXPIRED","features":[303]},{"name":"ERROR_PASSWORD_MUST_CHANGE","features":[303]},{"name":"ERROR_PASSWORD_RESTRICTION","features":[303]},{"name":"ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT","features":[303]},{"name":"ERROR_PATCH_NO_SEQUENCE","features":[303]},{"name":"ERROR_PATCH_PACKAGE_INVALID","features":[303]},{"name":"ERROR_PATCH_PACKAGE_OPEN_FAILED","features":[303]},{"name":"ERROR_PATCH_PACKAGE_REJECTED","features":[303]},{"name":"ERROR_PATCH_PACKAGE_UNSUPPORTED","features":[303]},{"name":"ERROR_PATCH_REMOVAL_DISALLOWED","features":[303]},{"name":"ERROR_PATCH_REMOVAL_UNSUPPORTED","features":[303]},{"name":"ERROR_PATCH_TARGET_NOT_FOUND","features":[303]},{"name":"ERROR_PATH_BUSY","features":[303]},{"name":"ERROR_PATH_NOT_FOUND","features":[303]},{"name":"ERROR_PEER_REFUSED_AUTH","features":[303]},{"name":"ERROR_PER_USER_TRUST_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_PIPE_BUSY","features":[303]},{"name":"ERROR_PIPE_CONNECTED","features":[303]},{"name":"ERROR_PIPE_LISTENING","features":[303]},{"name":"ERROR_PIPE_LOCAL","features":[303]},{"name":"ERROR_PIPE_NOT_CONNECTED","features":[303]},{"name":"ERROR_PKINIT_FAILURE","features":[303]},{"name":"ERROR_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[303]},{"name":"ERROR_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[303]},{"name":"ERROR_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[303]},{"name":"ERROR_PLATFORM_MANIFEST_INVALID","features":[303]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_ACTIVE","features":[303]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[303]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_SIGNED","features":[303]},{"name":"ERROR_PLUGPLAY_QUERY_VETOED","features":[303]},{"name":"ERROR_PNP_BAD_MPS_TABLE","features":[303]},{"name":"ERROR_PNP_INVALID_ID","features":[303]},{"name":"ERROR_PNP_IRQ_TRANSLATION_FAILED","features":[303]},{"name":"ERROR_PNP_QUERY_REMOVE_DEVICE_TIMEOUT","features":[303]},{"name":"ERROR_PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT","features":[303]},{"name":"ERROR_PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT","features":[303]},{"name":"ERROR_PNP_REBOOT_REQUIRED","features":[303]},{"name":"ERROR_PNP_REGISTRY_ERROR","features":[303]},{"name":"ERROR_PNP_RESTART_ENUMERATION","features":[303]},{"name":"ERROR_PNP_TRANSLATION_FAILED","features":[303]},{"name":"ERROR_POINT_NOT_FOUND","features":[303]},{"name":"ERROR_POLICY_CONTROLLED_ACCOUNT","features":[303]},{"name":"ERROR_POLICY_OBJECT_NOT_FOUND","features":[303]},{"name":"ERROR_POLICY_ONLY_IN_DS","features":[303]},{"name":"ERROR_POPUP_ALREADY_ACTIVE","features":[303]},{"name":"ERROR_PORT_LIMIT_REACHED","features":[303]},{"name":"ERROR_PORT_MESSAGE_TOO_LONG","features":[303]},{"name":"ERROR_PORT_NOT_SET","features":[303]},{"name":"ERROR_PORT_UNREACHABLE","features":[303]},{"name":"ERROR_POSSIBLE_DEADLOCK","features":[303]},{"name":"ERROR_POTENTIAL_FILE_FOUND","features":[303]},{"name":"ERROR_PPP_SESSION_TIMEOUT","features":[303]},{"name":"ERROR_PREDEFINED_HANDLE","features":[303]},{"name":"ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[303]},{"name":"ERROR_PRINTER_ALREADY_EXISTS","features":[303]},{"name":"ERROR_PRINTER_DELETED","features":[303]},{"name":"ERROR_PRINTER_DRIVER_ALREADY_INSTALLED","features":[303]},{"name":"ERROR_PRINTER_DRIVER_BLOCKED","features":[303]},{"name":"ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED","features":[303]},{"name":"ERROR_PRINTER_DRIVER_IN_USE","features":[303]},{"name":"ERROR_PRINTER_DRIVER_PACKAGE_IN_USE","features":[303]},{"name":"ERROR_PRINTER_DRIVER_WARNED","features":[303]},{"name":"ERROR_PRINTER_HAS_JOBS_QUEUED","features":[303]},{"name":"ERROR_PRINTER_NOT_FOUND","features":[303]},{"name":"ERROR_PRINTER_NOT_SHAREABLE","features":[303]},{"name":"ERROR_PRINTQ_FULL","features":[303]},{"name":"ERROR_PRINT_CANCELLED","features":[303]},{"name":"ERROR_PRINT_JOB_RESTART_REQUIRED","features":[303]},{"name":"ERROR_PRINT_MONITOR_ALREADY_INSTALLED","features":[303]},{"name":"ERROR_PRINT_MONITOR_IN_USE","features":[303]},{"name":"ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED","features":[303]},{"name":"ERROR_PRIVATE_DIALOG_INDEX","features":[303]},{"name":"ERROR_PRIVILEGE_NOT_HELD","features":[303]},{"name":"ERROR_PRI_MERGE_ADD_FILE_FAILED","features":[303]},{"name":"ERROR_PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED","features":[303]},{"name":"ERROR_PRI_MERGE_INVALID_FILE_NAME","features":[303]},{"name":"ERROR_PRI_MERGE_LOAD_FILE_FAILED","features":[303]},{"name":"ERROR_PRI_MERGE_MAIN_PACKAGE_REQUIRED","features":[303]},{"name":"ERROR_PRI_MERGE_MISSING_SCHEMA","features":[303]},{"name":"ERROR_PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED","features":[303]},{"name":"ERROR_PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED","features":[303]},{"name":"ERROR_PRI_MERGE_RESOURCE_PACKAGE_REQUIRED","features":[303]},{"name":"ERROR_PRI_MERGE_VERSION_MISMATCH","features":[303]},{"name":"ERROR_PRI_MERGE_WRITE_FILE_FAILED","features":[303]},{"name":"ERROR_PROCESS_ABORTED","features":[303]},{"name":"ERROR_PROCESS_IN_JOB","features":[303]},{"name":"ERROR_PROCESS_IS_PROTECTED","features":[303]},{"name":"ERROR_PROCESS_MODE_ALREADY_BACKGROUND","features":[303]},{"name":"ERROR_PROCESS_MODE_NOT_BACKGROUND","features":[303]},{"name":"ERROR_PROCESS_NOT_IN_JOB","features":[303]},{"name":"ERROR_PROC_NOT_FOUND","features":[303]},{"name":"ERROR_PRODUCT_UNINSTALLED","features":[303]},{"name":"ERROR_PRODUCT_VERSION","features":[303]},{"name":"ERROR_PROFILE_DOES_NOT_MATCH_DEVICE","features":[303]},{"name":"ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE","features":[303]},{"name":"ERROR_PROFILE_NOT_FOUND","features":[303]},{"name":"ERROR_PROFILING_AT_LIMIT","features":[303]},{"name":"ERROR_PROFILING_NOT_STARTED","features":[303]},{"name":"ERROR_PROFILING_NOT_STOPPED","features":[303]},{"name":"ERROR_PROMOTION_ACTIVE","features":[303]},{"name":"ERROR_PROTOCOL_ALREADY_INSTALLED","features":[303]},{"name":"ERROR_PROTOCOL_STOP_PENDING","features":[303]},{"name":"ERROR_PROTOCOL_UNREACHABLE","features":[303]},{"name":"ERROR_PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED","features":[303]},{"name":"ERROR_PWD_HISTORY_CONFLICT","features":[303]},{"name":"ERROR_PWD_TOO_LONG","features":[303]},{"name":"ERROR_PWD_TOO_RECENT","features":[303]},{"name":"ERROR_PWD_TOO_SHORT","features":[303]},{"name":"ERROR_QUERY_STORAGE_ERROR","features":[303]},{"name":"ERROR_QUIC_ALPN_NEG_FAILURE","features":[303]},{"name":"ERROR_QUIC_CONNECTION_IDLE","features":[303]},{"name":"ERROR_QUIC_CONNECTION_TIMEOUT","features":[303]},{"name":"ERROR_QUIC_HANDSHAKE_FAILURE","features":[303]},{"name":"ERROR_QUIC_INTERNAL_ERROR","features":[303]},{"name":"ERROR_QUIC_PROTOCOL_VIOLATION","features":[303]},{"name":"ERROR_QUIC_USER_CANCELED","features":[303]},{"name":"ERROR_QUIC_VER_NEG_FAILURE","features":[303]},{"name":"ERROR_QUORUMLOG_OPEN_FAILED","features":[303]},{"name":"ERROR_QUORUM_DISK_NOT_FOUND","features":[303]},{"name":"ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP","features":[303]},{"name":"ERROR_QUORUM_OWNER_ALIVE","features":[303]},{"name":"ERROR_QUORUM_RESOURCE","features":[303]},{"name":"ERROR_QUORUM_RESOURCE_ONLINE_FAILED","features":[303]},{"name":"ERROR_QUOTA_ACTIVITY","features":[303]},{"name":"ERROR_QUOTA_LIST_INCONSISTENT","features":[303]},{"name":"ERROR_RANGE_LIST_CONFLICT","features":[303]},{"name":"ERROR_RANGE_NOT_FOUND","features":[303]},{"name":"ERROR_RDP_PROTOCOL_ERROR","features":[303]},{"name":"ERROR_READ_FAULT","features":[303]},{"name":"ERROR_RECEIVE_EXPEDITED","features":[303]},{"name":"ERROR_RECEIVE_PARTIAL","features":[303]},{"name":"ERROR_RECEIVE_PARTIAL_EXPEDITED","features":[303]},{"name":"ERROR_RECOVERY_FAILURE","features":[303]},{"name":"ERROR_RECOVERY_FILE_CORRUPT","features":[303]},{"name":"ERROR_RECOVERY_NOT_NEEDED","features":[303]},{"name":"ERROR_REC_NON_EXISTENT","features":[303]},{"name":"ERROR_REDIRECTION_TO_DEFAULT_ACCOUNT_NOT_ALLOWED","features":[303]},{"name":"ERROR_REDIRECTOR_HAS_OPEN_HANDLES","features":[303]},{"name":"ERROR_REDIR_PAUSED","features":[303]},{"name":"ERROR_REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_REGISTRY_CORRUPT","features":[303]},{"name":"ERROR_REGISTRY_HIVE_RECOVERED","features":[303]},{"name":"ERROR_REGISTRY_IO_FAILED","features":[303]},{"name":"ERROR_REGISTRY_QUOTA_LIMIT","features":[303]},{"name":"ERROR_REGISTRY_RECOVERED","features":[303]},{"name":"ERROR_REG_NAT_CONSUMPTION","features":[303]},{"name":"ERROR_RELOC_CHAIN_XEEDS_SEGLIM","features":[303]},{"name":"ERROR_REMOTEACCESS_NOT_CONFIGURED","features":[303]},{"name":"ERROR_REMOTE_ACCT_DISABLED","features":[303]},{"name":"ERROR_REMOTE_AUTHENTICATION_FAILURE","features":[303]},{"name":"ERROR_REMOTE_COMM_FAILURE","features":[303]},{"name":"ERROR_REMOTE_FILE_VERSION_MISMATCH","features":[303]},{"name":"ERROR_REMOTE_NO_DIALIN_PERMISSION","features":[303]},{"name":"ERROR_REMOTE_PASSWD_EXPIRED","features":[303]},{"name":"ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED","features":[303]},{"name":"ERROR_REMOTE_REQUEST_UNSUPPORTED","features":[303]},{"name":"ERROR_REMOTE_RESTRICTED_LOGON_HOURS","features":[303]},{"name":"ERROR_REMOTE_SESSION_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_REMOTE_STORAGE_MEDIA_ERROR","features":[303]},{"name":"ERROR_REMOTE_STORAGE_NOT_ACTIVE","features":[303]},{"name":"ERROR_REMOVE_FAILED","features":[303]},{"name":"ERROR_REM_NOT_LIST","features":[303]},{"name":"ERROR_REPARSE","features":[303]},{"name":"ERROR_REPARSE_ATTRIBUTE_CONFLICT","features":[303]},{"name":"ERROR_REPARSE_OBJECT","features":[303]},{"name":"ERROR_REPARSE_POINT_ENCOUNTERED","features":[303]},{"name":"ERROR_REPARSE_TAG_INVALID","features":[303]},{"name":"ERROR_REPARSE_TAG_MISMATCH","features":[303]},{"name":"ERROR_REPLY_MESSAGE_MISMATCH","features":[303]},{"name":"ERROR_REQUEST_ABORTED","features":[303]},{"name":"ERROR_REQUEST_OUT_OF_SEQUENCE","features":[303]},{"name":"ERROR_REQUEST_PAUSED","features":[303]},{"name":"ERROR_REQUEST_REFUSED","features":[303]},{"name":"ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION","features":[303]},{"name":"ERROR_REQ_NOT_ACCEP","features":[303]},{"name":"ERROR_RESIDENT_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_RESILIENCY_FILE_CORRUPT","features":[303]},{"name":"ERROR_RESMON_CREATE_FAILED","features":[303]},{"name":"ERROR_RESMON_INVALID_STATE","features":[303]},{"name":"ERROR_RESMON_ONLINE_FAILED","features":[303]},{"name":"ERROR_RESMON_SYSTEM_RESOURCES_LACKING","features":[303]},{"name":"ERROR_RESOURCEMANAGER_NOT_FOUND","features":[303]},{"name":"ERROR_RESOURCEMANAGER_READ_ONLY","features":[303]},{"name":"ERROR_RESOURCE_CALL_TIMED_OUT","features":[303]},{"name":"ERROR_RESOURCE_DATA_NOT_FOUND","features":[303]},{"name":"ERROR_RESOURCE_DISABLED","features":[303]},{"name":"ERROR_RESOURCE_ENUM_USER_STOP","features":[303]},{"name":"ERROR_RESOURCE_FAILED","features":[303]},{"name":"ERROR_RESOURCE_LANG_NOT_FOUND","features":[303]},{"name":"ERROR_RESOURCE_NAME_NOT_FOUND","features":[303]},{"name":"ERROR_RESOURCE_NOT_AVAILABLE","features":[303]},{"name":"ERROR_RESOURCE_NOT_FOUND","features":[303]},{"name":"ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE","features":[303]},{"name":"ERROR_RESOURCE_NOT_ONLINE","features":[303]},{"name":"ERROR_RESOURCE_NOT_PRESENT","features":[303]},{"name":"ERROR_RESOURCE_ONLINE","features":[303]},{"name":"ERROR_RESOURCE_PROPERTIES_STORED","features":[303]},{"name":"ERROR_RESOURCE_PROPERTY_UNCHANGEABLE","features":[303]},{"name":"ERROR_RESOURCE_REQUIREMENTS_CHANGED","features":[303]},{"name":"ERROR_RESOURCE_TYPE_NOT_FOUND","features":[303]},{"name":"ERROR_RESTART_APPLICATION","features":[303]},{"name":"ERROR_RESUME_HIBERNATION","features":[303]},{"name":"ERROR_RETRY","features":[303]},{"name":"ERROR_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[303]},{"name":"ERROR_REVISION_MISMATCH","features":[303]},{"name":"ERROR_RING2SEG_MUST_BE_MOVABLE","features":[303]},{"name":"ERROR_RING2_STACK_IN_USE","features":[303]},{"name":"ERROR_RMODE_APP","features":[303]},{"name":"ERROR_RM_ALREADY_STARTED","features":[303]},{"name":"ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[303]},{"name":"ERROR_RM_DISCONNECTED","features":[303]},{"name":"ERROR_RM_METADATA_CORRUPT","features":[303]},{"name":"ERROR_RM_NOT_ACTIVE","features":[303]},{"name":"ERROR_ROLLBACK_TIMER_EXPIRED","features":[303]},{"name":"ERROR_ROUTER_CONFIG_INCOMPATIBLE","features":[303]},{"name":"ERROR_ROUTER_STOPPED","features":[303]},{"name":"ERROR_ROWSNOTRELEASED","features":[303]},{"name":"ERROR_RPL_NOT_ALLOWED","features":[303]},{"name":"ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[303]},{"name":"ERROR_RUNLEVEL_SWITCH_IN_PROGRESS","features":[303]},{"name":"ERROR_RUNLEVEL_SWITCH_TIMEOUT","features":[303]},{"name":"ERROR_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[303]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[303]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[303]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[303]},{"name":"ERROR_RXACT_COMMITTED","features":[303]},{"name":"ERROR_RXACT_COMMIT_FAILURE","features":[303]},{"name":"ERROR_RXACT_COMMIT_NECESSARY","features":[303]},{"name":"ERROR_RXACT_INVALID_STATE","features":[303]},{"name":"ERROR_RXACT_STATE_CREATED","features":[303]},{"name":"ERROR_SAME_DRIVE","features":[303]},{"name":"ERROR_SAM_INIT_FAILURE","features":[303]},{"name":"ERROR_SCE_DISABLED","features":[303]},{"name":"ERROR_SCOPE_NOT_FOUND","features":[303]},{"name":"ERROR_SCREEN_ALREADY_LOCKED","features":[303]},{"name":"ERROR_SCRUB_DATA_DISABLED","features":[303]},{"name":"ERROR_SECCORE_INVALID_COMMAND","features":[303]},{"name":"ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[303]},{"name":"ERROR_SECRET_TOO_LONG","features":[303]},{"name":"ERROR_SECTION_DIRECT_MAP_ONLY","features":[303]},{"name":"ERROR_SECTION_NAME_TOO_LONG","features":[303]},{"name":"ERROR_SECTION_NOT_FOUND","features":[303]},{"name":"ERROR_SECTOR_NOT_FOUND","features":[303]},{"name":"ERROR_SECUREBOOT_FILE_REPLACED","features":[303]},{"name":"ERROR_SECUREBOOT_INVALID_POLICY","features":[303]},{"name":"ERROR_SECUREBOOT_NOT_BASE_POLICY","features":[303]},{"name":"ERROR_SECUREBOOT_NOT_ENABLED","features":[303]},{"name":"ERROR_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[303]},{"name":"ERROR_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_SIGNED","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_UNKNOWN","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[303]},{"name":"ERROR_SECUREBOOT_POLICY_VIOLATION","features":[303]},{"name":"ERROR_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[303]},{"name":"ERROR_SECUREBOOT_ROLLBACK_DETECTED","features":[303]},{"name":"ERROR_SECURITY_DENIES_OPERATION","features":[303]},{"name":"ERROR_SECURITY_STREAM_IS_INCONSISTENT","features":[303]},{"name":"ERROR_SEEK","features":[303]},{"name":"ERROR_SEEK_ON_DEVICE","features":[303]},{"name":"ERROR_SEGMENT_NOTIFICATION","features":[303]},{"name":"ERROR_SEM_IS_SET","features":[303]},{"name":"ERROR_SEM_NOT_FOUND","features":[303]},{"name":"ERROR_SEM_OWNER_DIED","features":[303]},{"name":"ERROR_SEM_TIMEOUT","features":[303]},{"name":"ERROR_SEM_USER_LIMIT","features":[303]},{"name":"ERROR_SERIAL_NO_DEVICE","features":[303]},{"name":"ERROR_SERVER_DISABLED","features":[303]},{"name":"ERROR_SERVER_HAS_OPEN_HANDLES","features":[303]},{"name":"ERROR_SERVER_NOT_DISABLED","features":[303]},{"name":"ERROR_SERVER_SERVICE_CALL_REQUIRES_SMB1","features":[303]},{"name":"ERROR_SERVER_SHUTDOWN_IN_PROGRESS","features":[303]},{"name":"ERROR_SERVER_SID_MISMATCH","features":[303]},{"name":"ERROR_SERVER_TRANSPORT_CONFLICT","features":[303]},{"name":"ERROR_SERVICES_FAILED_AUTOSTART","features":[303]},{"name":"ERROR_SERVICE_ALREADY_RUNNING","features":[303]},{"name":"ERROR_SERVICE_CANNOT_ACCEPT_CTRL","features":[303]},{"name":"ERROR_SERVICE_DATABASE_LOCKED","features":[303]},{"name":"ERROR_SERVICE_DEPENDENCY_DELETED","features":[303]},{"name":"ERROR_SERVICE_DEPENDENCY_FAIL","features":[303]},{"name":"ERROR_SERVICE_DISABLED","features":[303]},{"name":"ERROR_SERVICE_DOES_NOT_EXIST","features":[303]},{"name":"ERROR_SERVICE_EXISTS","features":[303]},{"name":"ERROR_SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE","features":[303]},{"name":"ERROR_SERVICE_IS_PAUSED","features":[303]},{"name":"ERROR_SERVICE_LOGON_FAILED","features":[303]},{"name":"ERROR_SERVICE_MARKED_FOR_DELETE","features":[303]},{"name":"ERROR_SERVICE_NEVER_STARTED","features":[303]},{"name":"ERROR_SERVICE_NOTIFICATION","features":[303]},{"name":"ERROR_SERVICE_NOTIFY_CLIENT_LAGGING","features":[303]},{"name":"ERROR_SERVICE_NOT_ACTIVE","features":[303]},{"name":"ERROR_SERVICE_NOT_FOUND","features":[303]},{"name":"ERROR_SERVICE_NOT_IN_EXE","features":[303]},{"name":"ERROR_SERVICE_NO_THREAD","features":[303]},{"name":"ERROR_SERVICE_REQUEST_TIMEOUT","features":[303]},{"name":"ERROR_SERVICE_SPECIFIC_ERROR","features":[303]},{"name":"ERROR_SERVICE_START_HANG","features":[303]},{"name":"ERROR_SESSION_CREDENTIAL_CONFLICT","features":[303]},{"name":"ERROR_SESSION_KEY_TOO_SHORT","features":[303]},{"name":"ERROR_SETCOUNT_ON_BAD_LB","features":[303]},{"name":"ERROR_SETMARK_DETECTED","features":[303]},{"name":"ERROR_SET_CONTEXT_DENIED","features":[303]},{"name":"ERROR_SET_NOT_FOUND","features":[303]},{"name":"ERROR_SET_POWER_STATE_FAILED","features":[303]},{"name":"ERROR_SET_POWER_STATE_VETOED","features":[303]},{"name":"ERROR_SET_SYSTEM_RESTORE_POINT","features":[303]},{"name":"ERROR_SHARED_POLICY","features":[303]},{"name":"ERROR_SHARING_BUFFER_EXCEEDED","features":[303]},{"name":"ERROR_SHARING_PAUSED","features":[303]},{"name":"ERROR_SHARING_VIOLATION","features":[303]},{"name":"ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[303]},{"name":"ERROR_SHUTDOWN_CLUSTER","features":[303]},{"name":"ERROR_SHUTDOWN_DISKS_NOT_IN_MAINTENANCE_MODE","features":[303]},{"name":"ERROR_SHUTDOWN_IN_PROGRESS","features":[303]},{"name":"ERROR_SHUTDOWN_IS_SCHEDULED","features":[303]},{"name":"ERROR_SHUTDOWN_USERS_LOGGED_ON","features":[303]},{"name":"ERROR_SIGNAL_PENDING","features":[303]},{"name":"ERROR_SIGNAL_REFUSED","features":[303]},{"name":"ERROR_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[303]},{"name":"ERROR_SIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[303]},{"name":"ERROR_SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER","features":[303]},{"name":"ERROR_SINGLE_INSTANCE_APP","features":[303]},{"name":"ERROR_SMARTCARD_SUBSYSTEM_FAILURE","features":[303]},{"name":"ERROR_SMB1_NOT_AVAILABLE","features":[303]},{"name":"ERROR_SMB_BAD_CLUSTER_DIALECT","features":[303]},{"name":"ERROR_SMB_GUEST_LOGON_BLOCKED","features":[303]},{"name":"ERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[303]},{"name":"ERROR_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[303]},{"name":"ERROR_SMI_PRIMITIVE_INSTALLER_FAILED","features":[303]},{"name":"ERROR_SMR_GARBAGE_COLLECTION_REQUIRED","features":[303]},{"name":"ERROR_SOME_NOT_MAPPED","features":[303]},{"name":"ERROR_SOURCE_ELEMENT_EMPTY","features":[303]},{"name":"ERROR_SPACES_ALLOCATION_SIZE_INVALID","features":[303]},{"name":"ERROR_SPACES_CACHE_FULL","features":[303]},{"name":"ERROR_SPACES_CORRUPT_METADATA","features":[303]},{"name":"ERROR_SPACES_DRIVE_LOST_DATA","features":[303]},{"name":"ERROR_SPACES_DRIVE_NOT_READY","features":[303]},{"name":"ERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[303]},{"name":"ERROR_SPACES_DRIVE_REDUNDANCY_INVALID","features":[303]},{"name":"ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[303]},{"name":"ERROR_SPACES_DRIVE_SPLIT","features":[303]},{"name":"ERROR_SPACES_DRT_FULL","features":[303]},{"name":"ERROR_SPACES_ENCLOSURE_AWARE_INVALID","features":[303]},{"name":"ERROR_SPACES_ENTRY_INCOMPLETE","features":[303]},{"name":"ERROR_SPACES_ENTRY_INVALID","features":[303]},{"name":"ERROR_SPACES_EXTENDED_ERROR","features":[303]},{"name":"ERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[303]},{"name":"ERROR_SPACES_FLUSH_METADATA","features":[303]},{"name":"ERROR_SPACES_INCONSISTENCY","features":[303]},{"name":"ERROR_SPACES_INTERLEAVE_LENGTH_INVALID","features":[303]},{"name":"ERROR_SPACES_INTERNAL_ERROR","features":[303]},{"name":"ERROR_SPACES_LOG_NOT_READY","features":[303]},{"name":"ERROR_SPACES_MAP_REQUIRED","features":[303]},{"name":"ERROR_SPACES_MARK_DIRTY","features":[303]},{"name":"ERROR_SPACES_NOT_ENOUGH_DRIVES","features":[303]},{"name":"ERROR_SPACES_NO_REDUNDANCY","features":[303]},{"name":"ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[303]},{"name":"ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[303]},{"name":"ERROR_SPACES_NUMBER_OF_GROUPS_INVALID","features":[303]},{"name":"ERROR_SPACES_PARITY_LAYOUT_INVALID","features":[303]},{"name":"ERROR_SPACES_POOL_WAS_DELETED","features":[303]},{"name":"ERROR_SPACES_PROVISIONING_TYPE_INVALID","features":[303]},{"name":"ERROR_SPACES_REPAIR_IN_PROGRESS","features":[303]},{"name":"ERROR_SPACES_RESILIENCY_TYPE_INVALID","features":[303]},{"name":"ERROR_SPACES_UNSUPPORTED_VERSION","features":[303]},{"name":"ERROR_SPACES_UPDATE_COLUMN_STATE","features":[303]},{"name":"ERROR_SPACES_WRITE_CACHE_SIZE_INVALID","features":[303]},{"name":"ERROR_SPARSE_FILE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[303]},{"name":"ERROR_SPECIAL_ACCOUNT","features":[303]},{"name":"ERROR_SPECIAL_GROUP","features":[303]},{"name":"ERROR_SPECIAL_USER","features":[303]},{"name":"ERROR_SPL_NO_ADDJOB","features":[303]},{"name":"ERROR_SPL_NO_STARTDOC","features":[303]},{"name":"ERROR_SPOOL_FILE_NOT_FOUND","features":[303]},{"name":"ERROR_SRC_SRV_DLL_LOAD_FAILED","features":[303]},{"name":"ERROR_STACK_BUFFER_OVERRUN","features":[303]},{"name":"ERROR_STACK_OVERFLOW","features":[303]},{"name":"ERROR_STACK_OVERFLOW_READ","features":[303]},{"name":"ERROR_STAGEFROMUPDATEAGENT_PACKAGE_NOT_APPLICABLE","features":[303]},{"name":"ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_STATE_CREATE_CONTAINER_FAILED","features":[303]},{"name":"ERROR_STATE_DELETE_CONTAINER_FAILED","features":[303]},{"name":"ERROR_STATE_DELETE_SETTING_FAILED","features":[303]},{"name":"ERROR_STATE_ENUMERATE_CONTAINER_FAILED","features":[303]},{"name":"ERROR_STATE_ENUMERATE_SETTINGS_FAILED","features":[303]},{"name":"ERROR_STATE_GET_VERSION_FAILED","features":[303]},{"name":"ERROR_STATE_LOAD_STORE_FAILED","features":[303]},{"name":"ERROR_STATE_OPEN_CONTAINER_FAILED","features":[303]},{"name":"ERROR_STATE_QUERY_SETTING_FAILED","features":[303]},{"name":"ERROR_STATE_READ_COMPOSITE_SETTING_FAILED","features":[303]},{"name":"ERROR_STATE_READ_SETTING_FAILED","features":[303]},{"name":"ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_STATE_SET_VERSION_FAILED","features":[303]},{"name":"ERROR_STATE_STRUCTURED_RESET_FAILED","features":[303]},{"name":"ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED","features":[303]},{"name":"ERROR_STATE_WRITE_SETTING_FAILED","features":[303]},{"name":"ERROR_STATIC_INIT","features":[303]},{"name":"ERROR_STOPPED_ON_SYMLINK","features":[303]},{"name":"ERROR_STORAGE_LOST_DATA_PERSISTENCE","features":[303]},{"name":"ERROR_STORAGE_RESERVE_ALREADY_EXISTS","features":[303]},{"name":"ERROR_STORAGE_RESERVE_DOES_NOT_EXIST","features":[303]},{"name":"ERROR_STORAGE_RESERVE_ID_INVALID","features":[303]},{"name":"ERROR_STORAGE_RESERVE_NOT_EMPTY","features":[303]},{"name":"ERROR_STORAGE_STACK_ACCESS_DENIED","features":[303]},{"name":"ERROR_STORAGE_TOPOLOGY_ID_MISMATCH","features":[303]},{"name":"ERROR_STREAM_MINIVERSION_NOT_FOUND","features":[303]},{"name":"ERROR_STREAM_MINIVERSION_NOT_VALID","features":[303]},{"name":"ERROR_STRICT_CFG_VIOLATION","features":[303]},{"name":"ERROR_SUBST_TO_JOIN","features":[303]},{"name":"ERROR_SUBST_TO_SUBST","features":[303]},{"name":"ERROR_SUCCESS","features":[303]},{"name":"ERROR_SUCCESS_REBOOT_INITIATED","features":[303]},{"name":"ERROR_SUCCESS_REBOOT_REQUIRED","features":[303]},{"name":"ERROR_SUCCESS_RESTART_REQUIRED","features":[303]},{"name":"ERROR_SVHDX_ERROR_NOT_AVAILABLE","features":[303]},{"name":"ERROR_SVHDX_ERROR_STORED","features":[303]},{"name":"ERROR_SVHDX_NO_INITIATOR","features":[303]},{"name":"ERROR_SVHDX_RESERVATION_CONFLICT","features":[303]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[303]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[303]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[303]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[303]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[303]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[303]},{"name":"ERROR_SVHDX_VERSION_MISMATCH","features":[303]},{"name":"ERROR_SVHDX_WRONG_FILE_TYPE","features":[303]},{"name":"ERROR_SWAPERROR","features":[303]},{"name":"ERROR_SXS_ACTIVATION_CONTEXT_DISABLED","features":[303]},{"name":"ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[303]},{"name":"ERROR_SXS_ASSEMBLY_MISSING","features":[303]},{"name":"ERROR_SXS_ASSEMBLY_NOT_FOUND","features":[303]},{"name":"ERROR_SXS_ASSEMBLY_NOT_LOCKED","features":[303]},{"name":"ERROR_SXS_CANT_GEN_ACTCTX","features":[303]},{"name":"ERROR_SXS_COMPONENT_STORE_CORRUPT","features":[303]},{"name":"ERROR_SXS_CORRUPTION","features":[303]},{"name":"ERROR_SXS_CORRUPT_ACTIVATION_STACK","features":[303]},{"name":"ERROR_SXS_DUPLICATE_ACTIVATABLE_CLASS","features":[303]},{"name":"ERROR_SXS_DUPLICATE_ASSEMBLY_NAME","features":[303]},{"name":"ERROR_SXS_DUPLICATE_CLSID","features":[303]},{"name":"ERROR_SXS_DUPLICATE_DLL_NAME","features":[303]},{"name":"ERROR_SXS_DUPLICATE_IID","features":[303]},{"name":"ERROR_SXS_DUPLICATE_PROGID","features":[303]},{"name":"ERROR_SXS_DUPLICATE_TLBID","features":[303]},{"name":"ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME","features":[303]},{"name":"ERROR_SXS_EARLY_DEACTIVATION","features":[303]},{"name":"ERROR_SXS_FILE_HASH_MISMATCH","features":[303]},{"name":"ERROR_SXS_FILE_HASH_MISSING","features":[303]},{"name":"ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[303]},{"name":"ERROR_SXS_IDENTITIES_DIFFERENT","features":[303]},{"name":"ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[303]},{"name":"ERROR_SXS_IDENTITY_PARSE_ERROR","features":[303]},{"name":"ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN","features":[303]},{"name":"ERROR_SXS_INVALID_ACTCTXDATA_FORMAT","features":[303]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[303]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME","features":[303]},{"name":"ERROR_SXS_INVALID_DEACTIVATION","features":[303]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[303]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[303]},{"name":"ERROR_SXS_INVALID_XML_NAMESPACE_URI","features":[303]},{"name":"ERROR_SXS_KEY_NOT_FOUND","features":[303]},{"name":"ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[303]},{"name":"ERROR_SXS_MANIFEST_FORMAT_ERROR","features":[303]},{"name":"ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[303]},{"name":"ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE","features":[303]},{"name":"ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE","features":[303]},{"name":"ERROR_SXS_MANIFEST_PARSE_ERROR","features":[303]},{"name":"ERROR_SXS_MANIFEST_TOO_BIG","features":[303]},{"name":"ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[303]},{"name":"ERROR_SXS_MULTIPLE_DEACTIVATION","features":[303]},{"name":"ERROR_SXS_POLICY_PARSE_ERROR","features":[303]},{"name":"ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT","features":[303]},{"name":"ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[303]},{"name":"ERROR_SXS_PROCESS_TERMINATION_REQUESTED","features":[303]},{"name":"ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING","features":[303]},{"name":"ERROR_SXS_PROTECTION_CATALOG_NOT_VALID","features":[303]},{"name":"ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT","features":[303]},{"name":"ERROR_SXS_PROTECTION_RECOVERY_FAILED","features":[303]},{"name":"ERROR_SXS_RELEASE_ACTIVATION_CONTEXT","features":[303]},{"name":"ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[303]},{"name":"ERROR_SXS_SECTION_NOT_FOUND","features":[303]},{"name":"ERROR_SXS_SETTING_NOT_REGISTERED","features":[303]},{"name":"ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[303]},{"name":"ERROR_SXS_THREAD_QUERIES_DISABLED","features":[303]},{"name":"ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[303]},{"name":"ERROR_SXS_UNKNOWN_ENCODING","features":[303]},{"name":"ERROR_SXS_UNKNOWN_ENCODING_GROUP","features":[303]},{"name":"ERROR_SXS_UNTRANSLATABLE_HRESULT","features":[303]},{"name":"ERROR_SXS_VERSION_CONFLICT","features":[303]},{"name":"ERROR_SXS_WRONG_SECTION_TYPE","features":[303]},{"name":"ERROR_SXS_XML_E_BADCHARDATA","features":[303]},{"name":"ERROR_SXS_XML_E_BADCHARINSTRING","features":[303]},{"name":"ERROR_SXS_XML_E_BADNAMECHAR","features":[303]},{"name":"ERROR_SXS_XML_E_BADPEREFINSUBSET","features":[303]},{"name":"ERROR_SXS_XML_E_BADSTARTNAMECHAR","features":[303]},{"name":"ERROR_SXS_XML_E_BADXMLCASE","features":[303]},{"name":"ERROR_SXS_XML_E_BADXMLDECL","features":[303]},{"name":"ERROR_SXS_XML_E_COMMENTSYNTAX","features":[303]},{"name":"ERROR_SXS_XML_E_DUPLICATEATTRIBUTE","features":[303]},{"name":"ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE","features":[303]},{"name":"ERROR_SXS_XML_E_EXPECTINGTAGEND","features":[303]},{"name":"ERROR_SXS_XML_E_INCOMPLETE_ENCODING","features":[303]},{"name":"ERROR_SXS_XML_E_INTERNALERROR","features":[303]},{"name":"ERROR_SXS_XML_E_INVALIDATROOTLEVEL","features":[303]},{"name":"ERROR_SXS_XML_E_INVALIDENCODING","features":[303]},{"name":"ERROR_SXS_XML_E_INVALIDSWITCH","features":[303]},{"name":"ERROR_SXS_XML_E_INVALID_DECIMAL","features":[303]},{"name":"ERROR_SXS_XML_E_INVALID_HEXIDECIMAL","features":[303]},{"name":"ERROR_SXS_XML_E_INVALID_STANDALONE","features":[303]},{"name":"ERROR_SXS_XML_E_INVALID_UNICODE","features":[303]},{"name":"ERROR_SXS_XML_E_INVALID_VERSION","features":[303]},{"name":"ERROR_SXS_XML_E_MISSINGEQUALS","features":[303]},{"name":"ERROR_SXS_XML_E_MISSINGQUOTE","features":[303]},{"name":"ERROR_SXS_XML_E_MISSINGROOT","features":[303]},{"name":"ERROR_SXS_XML_E_MISSINGSEMICOLON","features":[303]},{"name":"ERROR_SXS_XML_E_MISSINGWHITESPACE","features":[303]},{"name":"ERROR_SXS_XML_E_MISSING_PAREN","features":[303]},{"name":"ERROR_SXS_XML_E_MULTIPLEROOTS","features":[303]},{"name":"ERROR_SXS_XML_E_MULTIPLE_COLONS","features":[303]},{"name":"ERROR_SXS_XML_E_RESERVEDNAMESPACE","features":[303]},{"name":"ERROR_SXS_XML_E_UNBALANCEDPAREN","features":[303]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCDATA","features":[303]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCOMMENT","features":[303]},{"name":"ERROR_SXS_XML_E_UNCLOSEDDECL","features":[303]},{"name":"ERROR_SXS_XML_E_UNCLOSEDENDTAG","features":[303]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTARTTAG","features":[303]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTRING","features":[303]},{"name":"ERROR_SXS_XML_E_UNCLOSEDTAG","features":[303]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDENDTAG","features":[303]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDEOF","features":[303]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_STANDALONE","features":[303]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE","features":[303]},{"name":"ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK","features":[303]},{"name":"ERROR_SXS_XML_E_XMLDECLSYNTAX","features":[303]},{"name":"ERROR_SYMLINK_CLASS_DISABLED","features":[303]},{"name":"ERROR_SYMLINK_NOT_SUPPORTED","features":[303]},{"name":"ERROR_SYNCHRONIZATION_REQUIRED","features":[303]},{"name":"ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED","features":[303]},{"name":"ERROR_SYSTEM_DEVICE_NOT_FOUND","features":[303]},{"name":"ERROR_SYSTEM_HIVE_TOO_LARGE","features":[303]},{"name":"ERROR_SYSTEM_IMAGE_BAD_SIGNATURE","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_INVALID_POLICY","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[303]},{"name":"ERROR_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[303]},{"name":"ERROR_SYSTEM_NEEDS_REMEDIATION","features":[303]},{"name":"ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[303]},{"name":"ERROR_SYSTEM_POWERSTATE_TRANSITION","features":[303]},{"name":"ERROR_SYSTEM_PROCESS_TERMINATED","features":[303]},{"name":"ERROR_SYSTEM_SHUTDOWN","features":[303]},{"name":"ERROR_SYSTEM_TRACE","features":[303]},{"name":"ERROR_TAG_NOT_FOUND","features":[303]},{"name":"ERROR_TAG_NOT_PRESENT","features":[303]},{"name":"ERROR_THREAD_1_INACTIVE","features":[303]},{"name":"ERROR_THREAD_ALREADY_IN_TASK","features":[303]},{"name":"ERROR_THREAD_MODE_ALREADY_BACKGROUND","features":[303]},{"name":"ERROR_THREAD_MODE_NOT_BACKGROUND","features":[303]},{"name":"ERROR_THREAD_NOT_IN_PROCESS","features":[303]},{"name":"ERROR_THREAD_WAS_SUSPENDED","features":[303]},{"name":"ERROR_TIERING_ALREADY_PROCESSING","features":[303]},{"name":"ERROR_TIERING_CANNOT_PIN_OBJECT","features":[303]},{"name":"ERROR_TIERING_FILE_IS_NOT_PINNED","features":[303]},{"name":"ERROR_TIERING_INVALID_FILE_ID","features":[303]},{"name":"ERROR_TIERING_NOT_SUPPORTED_ON_VOLUME","features":[303]},{"name":"ERROR_TIERING_STORAGE_TIER_NOT_FOUND","features":[303]},{"name":"ERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS","features":[303]},{"name":"ERROR_TIERING_WRONG_CLUSTER_NODE","features":[303]},{"name":"ERROR_TIMEOUT","features":[303]},{"name":"ERROR_TIMER_NOT_CANCELED","features":[303]},{"name":"ERROR_TIMER_RESOLUTION_NOT_SET","features":[303]},{"name":"ERROR_TIMER_RESUME_IGNORED","features":[303]},{"name":"ERROR_TIME_SENSITIVE_THREAD","features":[303]},{"name":"ERROR_TIME_SKEW","features":[303]},{"name":"ERROR_TLW_WITH_WSCHILD","features":[303]},{"name":"ERROR_TM_IDENTITY_MISMATCH","features":[303]},{"name":"ERROR_TM_INITIALIZATION_FAILED","features":[303]},{"name":"ERROR_TM_VOLATILE","features":[303]},{"name":"ERROR_TOKEN_ALREADY_IN_USE","features":[303]},{"name":"ERROR_TOO_MANY_CMDS","features":[303]},{"name":"ERROR_TOO_MANY_CONTEXT_IDS","features":[303]},{"name":"ERROR_TOO_MANY_DESCRIPTORS","features":[303]},{"name":"ERROR_TOO_MANY_LINKS","features":[303]},{"name":"ERROR_TOO_MANY_LUIDS_REQUESTED","features":[303]},{"name":"ERROR_TOO_MANY_MODULES","features":[303]},{"name":"ERROR_TOO_MANY_MUXWAITERS","features":[303]},{"name":"ERROR_TOO_MANY_NAMES","features":[303]},{"name":"ERROR_TOO_MANY_OPEN_FILES","features":[303]},{"name":"ERROR_TOO_MANY_POSTS","features":[303]},{"name":"ERROR_TOO_MANY_SECRETS","features":[303]},{"name":"ERROR_TOO_MANY_SEMAPHORES","features":[303]},{"name":"ERROR_TOO_MANY_SEM_REQUESTS","features":[303]},{"name":"ERROR_TOO_MANY_SESS","features":[303]},{"name":"ERROR_TOO_MANY_SIDS","features":[303]},{"name":"ERROR_TOO_MANY_TCBS","features":[303]},{"name":"ERROR_TOO_MANY_THREADS","features":[303]},{"name":"ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[303]},{"name":"ERROR_TRANSACTIONAL_CONFLICT","features":[303]},{"name":"ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[303]},{"name":"ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[303]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_FOUND","features":[303]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_ONLINE","features":[303]},{"name":"ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[303]},{"name":"ERROR_TRANSACTIONS_NOT_FROZEN","features":[303]},{"name":"ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[303]},{"name":"ERROR_TRANSACTION_ALREADY_ABORTED","features":[303]},{"name":"ERROR_TRANSACTION_ALREADY_COMMITTED","features":[303]},{"name":"ERROR_TRANSACTION_FREEZE_IN_PROGRESS","features":[303]},{"name":"ERROR_TRANSACTION_INTEGRITY_VIOLATED","features":[303]},{"name":"ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[303]},{"name":"ERROR_TRANSACTION_MUST_WRITETHROUGH","features":[303]},{"name":"ERROR_TRANSACTION_NOT_ACTIVE","features":[303]},{"name":"ERROR_TRANSACTION_NOT_ENLISTED","features":[303]},{"name":"ERROR_TRANSACTION_NOT_FOUND","features":[303]},{"name":"ERROR_TRANSACTION_NOT_JOINED","features":[303]},{"name":"ERROR_TRANSACTION_NOT_REQUESTED","features":[303]},{"name":"ERROR_TRANSACTION_NOT_ROOT","features":[303]},{"name":"ERROR_TRANSACTION_NO_SUPERIOR","features":[303]},{"name":"ERROR_TRANSACTION_OBJECT_EXPIRED","features":[303]},{"name":"ERROR_TRANSACTION_PROPAGATION_FAILED","features":[303]},{"name":"ERROR_TRANSACTION_RECORD_TOO_LONG","features":[303]},{"name":"ERROR_TRANSACTION_REQUEST_NOT_VALID","features":[303]},{"name":"ERROR_TRANSACTION_REQUIRED_PROMOTION","features":[303]},{"name":"ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[303]},{"name":"ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[303]},{"name":"ERROR_TRANSACTION_SUPERIOR_EXISTS","features":[303]},{"name":"ERROR_TRANSFORM_NOT_SUPPORTED","features":[303]},{"name":"ERROR_TRANSLATION_COMPLETE","features":[303]},{"name":"ERROR_TRANSPORT_FULL","features":[303]},{"name":"ERROR_TRUSTED_DOMAIN_FAILURE","features":[303]},{"name":"ERROR_TRUSTED_RELATIONSHIP_FAILURE","features":[303]},{"name":"ERROR_TRUST_FAILURE","features":[303]},{"name":"ERROR_TS_INCOMPATIBLE_SESSIONS","features":[303]},{"name":"ERROR_TS_VIDEO_SUBSYSTEM_ERROR","features":[303]},{"name":"ERROR_TXF_ATTRIBUTE_CORRUPT","features":[303]},{"name":"ERROR_TXF_DIR_NOT_EMPTY","features":[303]},{"name":"ERROR_TXF_METADATA_ALREADY_PRESENT","features":[303]},{"name":"ERROR_UNABLE_TO_CLEAN","features":[303]},{"name":"ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA","features":[303]},{"name":"ERROR_UNABLE_TO_INVENTORY_DRIVE","features":[303]},{"name":"ERROR_UNABLE_TO_INVENTORY_SLOT","features":[303]},{"name":"ERROR_UNABLE_TO_INVENTORY_TRANSPORT","features":[303]},{"name":"ERROR_UNABLE_TO_LOAD_MEDIUM","features":[303]},{"name":"ERROR_UNABLE_TO_LOCK_MEDIA","features":[303]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT","features":[303]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT_2","features":[303]},{"name":"ERROR_UNABLE_TO_REMOVE_REPLACED","features":[303]},{"name":"ERROR_UNABLE_TO_UNLOAD_MEDIA","features":[303]},{"name":"ERROR_UNDEFINED_CHARACTER","features":[303]},{"name":"ERROR_UNDEFINED_SCOPE","features":[303]},{"name":"ERROR_UNEXPECTED_MM_CREATE_ERR","features":[303]},{"name":"ERROR_UNEXPECTED_MM_EXTEND_ERR","features":[303]},{"name":"ERROR_UNEXPECTED_MM_MAP_ERROR","features":[303]},{"name":"ERROR_UNEXPECTED_NTCACHEMANAGER_ERROR","features":[303]},{"name":"ERROR_UNEXPECTED_OMID","features":[303]},{"name":"ERROR_UNEXP_NET_ERR","features":[303]},{"name":"ERROR_UNHANDLED_EXCEPTION","features":[303]},{"name":"ERROR_UNIDENTIFIED_ERROR","features":[303]},{"name":"ERROR_UNKNOWN_COMPONENT","features":[303]},{"name":"ERROR_UNKNOWN_EXCEPTION","features":[303]},{"name":"ERROR_UNKNOWN_FEATURE","features":[303]},{"name":"ERROR_UNKNOWN_PATCH","features":[303]},{"name":"ERROR_UNKNOWN_PORT","features":[303]},{"name":"ERROR_UNKNOWN_PRINTER_DRIVER","features":[303]},{"name":"ERROR_UNKNOWN_PRINTPROCESSOR","features":[303]},{"name":"ERROR_UNKNOWN_PRINT_MONITOR","features":[303]},{"name":"ERROR_UNKNOWN_PRODUCT","features":[303]},{"name":"ERROR_UNKNOWN_PROPERTY","features":[303]},{"name":"ERROR_UNKNOWN_PROTOCOL_ID","features":[303]},{"name":"ERROR_UNKNOWN_REVISION","features":[303]},{"name":"ERROR_UNMAPPED_SUBSTITUTION_STRING","features":[303]},{"name":"ERROR_UNRECOGNIZED_MEDIA","features":[303]},{"name":"ERROR_UNRECOGNIZED_VOLUME","features":[303]},{"name":"ERROR_UNRECOVERABLE_STACK_OVERFLOW","features":[303]},{"name":"ERROR_UNSATISFIED_DEPENDENCIES","features":[303]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_CONTENT","features":[303]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[303]},{"name":"ERROR_UNSUPPORTED_COMPRESSION","features":[303]},{"name":"ERROR_UNSUPPORTED_TYPE","features":[303]},{"name":"ERROR_UNTRUSTED_MOUNT_POINT","features":[303]},{"name":"ERROR_UNWIND","features":[303]},{"name":"ERROR_UNWIND_CONSOLIDATE","features":[303]},{"name":"ERROR_UPDATE_IN_PROGRESS","features":[303]},{"name":"ERROR_USER_APC","features":[303]},{"name":"ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[303]},{"name":"ERROR_USER_EXISTS","features":[303]},{"name":"ERROR_USER_LIMIT","features":[303]},{"name":"ERROR_USER_MAPPED_FILE","features":[303]},{"name":"ERROR_USER_PROFILE_LOAD","features":[303]},{"name":"ERROR_VALIDATE_CONTINUE","features":[303]},{"name":"ERROR_VC_DISCONNECTED","features":[303]},{"name":"ERROR_VDM_DISALLOWED","features":[303]},{"name":"ERROR_VDM_HARD_ERROR","features":[303]},{"name":"ERROR_VERIFIER_STOP","features":[303]},{"name":"ERROR_VERSION_PARSE_ERROR","features":[303]},{"name":"ERROR_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[303]},{"name":"ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[303]},{"name":"ERROR_VHD_BITMAP_MISMATCH","features":[303]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_FAILURE","features":[303]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[303]},{"name":"ERROR_VHD_CHANGE_TRACKING_DISABLED","features":[303]},{"name":"ERROR_VHD_CHILD_PARENT_ID_MISMATCH","features":[303]},{"name":"ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[303]},{"name":"ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[303]},{"name":"ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[303]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[303]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[303]},{"name":"ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[303]},{"name":"ERROR_VHD_DRIVE_FOOTER_CORRUPT","features":[303]},{"name":"ERROR_VHD_DRIVE_FOOTER_MISSING","features":[303]},{"name":"ERROR_VHD_FORMAT_UNKNOWN","features":[303]},{"name":"ERROR_VHD_FORMAT_UNSUPPORTED_VERSION","features":[303]},{"name":"ERROR_VHD_INVALID_BLOCK_SIZE","features":[303]},{"name":"ERROR_VHD_INVALID_CHANGE_TRACKING_ID","features":[303]},{"name":"ERROR_VHD_INVALID_FILE_SIZE","features":[303]},{"name":"ERROR_VHD_INVALID_SIZE","features":[303]},{"name":"ERROR_VHD_INVALID_STATE","features":[303]},{"name":"ERROR_VHD_INVALID_TYPE","features":[303]},{"name":"ERROR_VHD_METADATA_FULL","features":[303]},{"name":"ERROR_VHD_METADATA_READ_FAILURE","features":[303]},{"name":"ERROR_VHD_METADATA_WRITE_FAILURE","features":[303]},{"name":"ERROR_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[303]},{"name":"ERROR_VHD_PARENT_VHD_ACCESS_DENIED","features":[303]},{"name":"ERROR_VHD_PARENT_VHD_NOT_FOUND","features":[303]},{"name":"ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[303]},{"name":"ERROR_VHD_SHARED","features":[303]},{"name":"ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[303]},{"name":"ERROR_VHD_SPARSE_HEADER_CORRUPT","features":[303]},{"name":"ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[303]},{"name":"ERROR_VHD_UNEXPECTED_ID","features":[303]},{"name":"ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[303]},{"name":"ERROR_VID_DUPLICATE_HANDLER","features":[303]},{"name":"ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[303]},{"name":"ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[303]},{"name":"ERROR_VID_HANDLER_NOT_PRESENT","features":[303]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[303]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[303]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[303]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[303]},{"name":"ERROR_VID_INVALID_CHILD_GPA_PAGE_SET","features":[303]},{"name":"ERROR_VID_INVALID_GPA_RANGE_HANDLE","features":[303]},{"name":"ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[303]},{"name":"ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[303]},{"name":"ERROR_VID_INVALID_NUMA_NODE_INDEX","features":[303]},{"name":"ERROR_VID_INVALID_NUMA_SETTINGS","features":[303]},{"name":"ERROR_VID_INVALID_OBJECT_NAME","features":[303]},{"name":"ERROR_VID_INVALID_PPM_HANDLE","features":[303]},{"name":"ERROR_VID_INVALID_PROCESSOR_STATE","features":[303]},{"name":"ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[303]},{"name":"ERROR_VID_MBPS_ARE_LOCKED","features":[303]},{"name":"ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[303]},{"name":"ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[303]},{"name":"ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[303]},{"name":"ERROR_VID_MB_STILL_REFERENCED","features":[303]},{"name":"ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[303]},{"name":"ERROR_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[303]},{"name":"ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[303]},{"name":"ERROR_VID_MESSAGE_QUEUE_CLOSED","features":[303]},{"name":"ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[303]},{"name":"ERROR_VID_MMIO_RANGE_DESTROYED","features":[303]},{"name":"ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[303]},{"name":"ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[303]},{"name":"ERROR_VID_PAGE_RANGE_OVERFLOW","features":[303]},{"name":"ERROR_VID_PARTITION_ALREADY_EXISTS","features":[303]},{"name":"ERROR_VID_PARTITION_DOES_NOT_EXIST","features":[303]},{"name":"ERROR_VID_PARTITION_NAME_NOT_FOUND","features":[303]},{"name":"ERROR_VID_PARTITION_NAME_TOO_LONG","features":[303]},{"name":"ERROR_VID_PROCESS_ALREADY_SET","features":[303]},{"name":"ERROR_VID_QUEUE_FULL","features":[303]},{"name":"ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[303]},{"name":"ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[303]},{"name":"ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[303]},{"name":"ERROR_VID_SAVED_STATE_CORRUPT","features":[303]},{"name":"ERROR_VID_SAVED_STATE_INCOMPATIBLE","features":[303]},{"name":"ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[303]},{"name":"ERROR_VID_STOP_PENDING","features":[303]},{"name":"ERROR_VID_TOO_MANY_HANDLERS","features":[303]},{"name":"ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[303]},{"name":"ERROR_VID_VTL_ACCESS_DENIED","features":[303]},{"name":"ERROR_VIRTDISK_DISK_ALREADY_OWNED","features":[303]},{"name":"ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[303]},{"name":"ERROR_VIRTDISK_NOT_VIRTUAL_DISK","features":[303]},{"name":"ERROR_VIRTDISK_PROVIDER_NOT_FOUND","features":[303]},{"name":"ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[303]},{"name":"ERROR_VIRTUAL_DISK_LIMITATION","features":[303]},{"name":"ERROR_VIRUS_DELETED","features":[303]},{"name":"ERROR_VIRUS_INFECTED","features":[303]},{"name":"ERROR_VMCOMPUTE_CONNECTION_CLOSED","features":[303]},{"name":"ERROR_VMCOMPUTE_CONNECT_FAILED","features":[303]},{"name":"ERROR_VMCOMPUTE_HYPERV_NOT_INSTALLED","features":[303]},{"name":"ERROR_VMCOMPUTE_IMAGE_MISMATCH","features":[303]},{"name":"ERROR_VMCOMPUTE_INVALID_JSON","features":[303]},{"name":"ERROR_VMCOMPUTE_INVALID_LAYER","features":[303]},{"name":"ERROR_VMCOMPUTE_INVALID_STATE","features":[303]},{"name":"ERROR_VMCOMPUTE_OPERATION_PENDING","features":[303]},{"name":"ERROR_VMCOMPUTE_PROTOCOL_ERROR","features":[303]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_EXISTS","features":[303]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED","features":[303]},{"name":"ERROR_VMCOMPUTE_SYSTEM_NOT_FOUND","features":[303]},{"name":"ERROR_VMCOMPUTE_TERMINATED","features":[303]},{"name":"ERROR_VMCOMPUTE_TERMINATED_DURING_START","features":[303]},{"name":"ERROR_VMCOMPUTE_TIMEOUT","features":[303]},{"name":"ERROR_VMCOMPUTE_TOO_MANY_NOTIFICATIONS","features":[303]},{"name":"ERROR_VMCOMPUTE_UNEXPECTED_EXIT","features":[303]},{"name":"ERROR_VMCOMPUTE_UNKNOWN_MESSAGE","features":[303]},{"name":"ERROR_VMCOMPUTE_UNSUPPORTED_PROTOCOL_VERSION","features":[303]},{"name":"ERROR_VMCOMPUTE_WINDOWS_INSIDER_REQUIRED","features":[303]},{"name":"ERROR_VNET_VIRTUAL_SWITCH_NAME_NOT_FOUND","features":[303]},{"name":"ERROR_VOLMGR_ALL_DISKS_FAILED","features":[303]},{"name":"ERROR_VOLMGR_BAD_BOOT_DISK","features":[303]},{"name":"ERROR_VOLMGR_DATABASE_FULL","features":[303]},{"name":"ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[303]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[303]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[303]},{"name":"ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[303]},{"name":"ERROR_VOLMGR_DISK_DUPLICATE","features":[303]},{"name":"ERROR_VOLMGR_DISK_DYNAMIC","features":[303]},{"name":"ERROR_VOLMGR_DISK_ID_INVALID","features":[303]},{"name":"ERROR_VOLMGR_DISK_INVALID","features":[303]},{"name":"ERROR_VOLMGR_DISK_LAST_VOTER","features":[303]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_INVALID","features":[303]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[303]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[303]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[303]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[303]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[303]},{"name":"ERROR_VOLMGR_DISK_MISSING","features":[303]},{"name":"ERROR_VOLMGR_DISK_NOT_EMPTY","features":[303]},{"name":"ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[303]},{"name":"ERROR_VOLMGR_DISK_REVECTORING_FAILED","features":[303]},{"name":"ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[303]},{"name":"ERROR_VOLMGR_DISK_SET_NOT_CONTAINED","features":[303]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[303]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[303]},{"name":"ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[303]},{"name":"ERROR_VOLMGR_EXTENT_ALREADY_USED","features":[303]},{"name":"ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[303]},{"name":"ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[303]},{"name":"ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[303]},{"name":"ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[303]},{"name":"ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[303]},{"name":"ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[303]},{"name":"ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[303]},{"name":"ERROR_VOLMGR_INCOMPLETE_REGENERATION","features":[303]},{"name":"ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[303]},{"name":"ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[303]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[303]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_INVALID","features":[303]},{"name":"ERROR_VOLMGR_MEMBER_IN_SYNC","features":[303]},{"name":"ERROR_VOLMGR_MEMBER_MISSING","features":[303]},{"name":"ERROR_VOLMGR_MEMBER_NOT_DETACHED","features":[303]},{"name":"ERROR_VOLMGR_MEMBER_REGENERATING","features":[303]},{"name":"ERROR_VOLMGR_MIRROR_NOT_SUPPORTED","features":[303]},{"name":"ERROR_VOLMGR_NOTIFICATION_RESET","features":[303]},{"name":"ERROR_VOLMGR_NOT_PRIMARY_PACK","features":[303]},{"name":"ERROR_VOLMGR_NO_REGISTERED_USERS","features":[303]},{"name":"ERROR_VOLMGR_NO_SUCH_USER","features":[303]},{"name":"ERROR_VOLMGR_NO_VALID_LOG_COPIES","features":[303]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[303]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[303]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[303]},{"name":"ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[303]},{"name":"ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[303]},{"name":"ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[303]},{"name":"ERROR_VOLMGR_PACK_CONFIG_OFFLINE","features":[303]},{"name":"ERROR_VOLMGR_PACK_CONFIG_ONLINE","features":[303]},{"name":"ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[303]},{"name":"ERROR_VOLMGR_PACK_DUPLICATE","features":[303]},{"name":"ERROR_VOLMGR_PACK_HAS_QUORUM","features":[303]},{"name":"ERROR_VOLMGR_PACK_ID_INVALID","features":[303]},{"name":"ERROR_VOLMGR_PACK_INVALID","features":[303]},{"name":"ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[303]},{"name":"ERROR_VOLMGR_PACK_NAME_INVALID","features":[303]},{"name":"ERROR_VOLMGR_PACK_OFFLINE","features":[303]},{"name":"ERROR_VOLMGR_PACK_WITHOUT_QUORUM","features":[303]},{"name":"ERROR_VOLMGR_PARTITION_STYLE_INVALID","features":[303]},{"name":"ERROR_VOLMGR_PARTITION_UPDATE_FAILED","features":[303]},{"name":"ERROR_VOLMGR_PLEX_INDEX_DUPLICATE","features":[303]},{"name":"ERROR_VOLMGR_PLEX_INDEX_INVALID","features":[303]},{"name":"ERROR_VOLMGR_PLEX_IN_SYNC","features":[303]},{"name":"ERROR_VOLMGR_PLEX_LAST_ACTIVE","features":[303]},{"name":"ERROR_VOLMGR_PLEX_MISSING","features":[303]},{"name":"ERROR_VOLMGR_PLEX_NOT_RAID5","features":[303]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE","features":[303]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[303]},{"name":"ERROR_VOLMGR_PLEX_REGENERATING","features":[303]},{"name":"ERROR_VOLMGR_PLEX_TYPE_INVALID","features":[303]},{"name":"ERROR_VOLMGR_PRIMARY_PACK_PRESENT","features":[303]},{"name":"ERROR_VOLMGR_RAID5_NOT_SUPPORTED","features":[303]},{"name":"ERROR_VOLMGR_STRUCTURE_SIZE_INVALID","features":[303]},{"name":"ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[303]},{"name":"ERROR_VOLMGR_TRANSACTION_IN_PROGRESS","features":[303]},{"name":"ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_ID_INVALID","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_INVALID","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_MIRRORED","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_NOT_MIRRORED","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_NOT_RETAINED","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_OFFLINE","features":[303]},{"name":"ERROR_VOLMGR_VOLUME_RETAINED","features":[303]},{"name":"ERROR_VOLSNAP_ACTIVATION_TIMEOUT","features":[303]},{"name":"ERROR_VOLSNAP_BOOTFILE_NOT_VALID","features":[303]},{"name":"ERROR_VOLSNAP_HIBERNATE_READY","features":[303]},{"name":"ERROR_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[303]},{"name":"ERROR_VOLSNAP_PREPARE_HIBERNATE","features":[303]},{"name":"ERROR_VOLUME_CONTAINS_SYS_FILES","features":[303]},{"name":"ERROR_VOLUME_DIRTY","features":[303]},{"name":"ERROR_VOLUME_MOUNTED","features":[303]},{"name":"ERROR_VOLUME_NOT_CLUSTER_ALIGNED","features":[303]},{"name":"ERROR_VOLUME_NOT_SIS_ENABLED","features":[303]},{"name":"ERROR_VOLUME_NOT_SUPPORTED","features":[303]},{"name":"ERROR_VOLUME_NOT_SUPPORT_EFS","features":[303]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED","features":[303]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[303]},{"name":"ERROR_VOLUME_UPGRADE_NOT_NEEDED","features":[303]},{"name":"ERROR_VOLUME_UPGRADE_PENDING","features":[303]},{"name":"ERROR_VOLUME_WRITE_ACCESS_DENIED","features":[303]},{"name":"ERROR_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[303]},{"name":"ERROR_VRF_VOLATILE_NMI_REGISTERED","features":[303]},{"name":"ERROR_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[303]},{"name":"ERROR_VRF_VOLATILE_NOT_STOPPABLE","features":[303]},{"name":"ERROR_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[303]},{"name":"ERROR_VRF_VOLATILE_PROTECTED_DRIVER","features":[303]},{"name":"ERROR_VRF_VOLATILE_SAFE_MODE","features":[303]},{"name":"ERROR_VRF_VOLATILE_SETTINGS_CONFLICT","features":[303]},{"name":"ERROR_VSMB_SAVED_STATE_CORRUPT","features":[303]},{"name":"ERROR_VSMB_SAVED_STATE_FILE_NOT_FOUND","features":[303]},{"name":"ERROR_VSM_DMA_PROTECTION_NOT_IN_USE","features":[303]},{"name":"ERROR_VSM_NOT_INITIALIZED","features":[303]},{"name":"ERROR_WAIT_1","features":[303]},{"name":"ERROR_WAIT_2","features":[303]},{"name":"ERROR_WAIT_3","features":[303]},{"name":"ERROR_WAIT_63","features":[303]},{"name":"ERROR_WAIT_FOR_OPLOCK","features":[303]},{"name":"ERROR_WAIT_NO_CHILDREN","features":[303]},{"name":"ERROR_WAKE_SYSTEM","features":[303]},{"name":"ERROR_WAKE_SYSTEM_DEBUGGER","features":[303]},{"name":"ERROR_WAS_LOCKED","features":[303]},{"name":"ERROR_WAS_UNLOCKED","features":[303]},{"name":"ERROR_WEAK_WHFBKEY_BLOCKED","features":[303]},{"name":"ERROR_WINDOW_NOT_COMBOBOX","features":[303]},{"name":"ERROR_WINDOW_NOT_DIALOG","features":[303]},{"name":"ERROR_WINDOW_OF_OTHER_THREAD","features":[303]},{"name":"ERROR_WINS_INTERNAL","features":[303]},{"name":"ERROR_WIP_ENCRYPTION_FAILED","features":[303]},{"name":"ERROR_WMI_ALREADY_DISABLED","features":[303]},{"name":"ERROR_WMI_ALREADY_ENABLED","features":[303]},{"name":"ERROR_WMI_DP_FAILED","features":[303]},{"name":"ERROR_WMI_DP_NOT_FOUND","features":[303]},{"name":"ERROR_WMI_GUID_DISCONNECTED","features":[303]},{"name":"ERROR_WMI_GUID_NOT_FOUND","features":[303]},{"name":"ERROR_WMI_INSTANCE_NOT_FOUND","features":[303]},{"name":"ERROR_WMI_INVALID_MOF","features":[303]},{"name":"ERROR_WMI_INVALID_REGINFO","features":[303]},{"name":"ERROR_WMI_ITEMID_NOT_FOUND","features":[303]},{"name":"ERROR_WMI_READ_ONLY","features":[303]},{"name":"ERROR_WMI_SERVER_UNAVAILABLE","features":[303]},{"name":"ERROR_WMI_SET_FAILURE","features":[303]},{"name":"ERROR_WMI_TRY_AGAIN","features":[303]},{"name":"ERROR_WMI_UNRESOLVED_INSTANCE_REF","features":[303]},{"name":"ERROR_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[303]},{"name":"ERROR_WOF_WIM_HEADER_CORRUPT","features":[303]},{"name":"ERROR_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[303]},{"name":"ERROR_WORKING_SET_QUOTA","features":[303]},{"name":"ERROR_WOW_ASSERTION","features":[303]},{"name":"ERROR_WRITE_FAULT","features":[303]},{"name":"ERROR_WRITE_PROTECT","features":[303]},{"name":"ERROR_WRONG_COMPARTMENT","features":[303]},{"name":"ERROR_WRONG_DISK","features":[303]},{"name":"ERROR_WRONG_EFS","features":[303]},{"name":"ERROR_WRONG_INF_STYLE","features":[303]},{"name":"ERROR_WRONG_INF_TYPE","features":[303]},{"name":"ERROR_WRONG_PASSWORD","features":[303]},{"name":"ERROR_WRONG_TARGET_NAME","features":[303]},{"name":"ERROR_WX86_ERROR","features":[303]},{"name":"ERROR_WX86_WARNING","features":[303]},{"name":"ERROR_XMLDSIG_ERROR","features":[303]},{"name":"ERROR_XML_ENCODING_MISMATCH","features":[303]},{"name":"ERROR_XML_PARSE_ERROR","features":[303]},{"name":"EVENT_E_ALL_SUBSCRIBERS_FAILED","features":[303]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT","features":[303]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT","features":[303]},{"name":"EVENT_E_COMPLUS_NOT_INSTALLED","features":[303]},{"name":"EVENT_E_FIRST","features":[303]},{"name":"EVENT_E_INTERNALERROR","features":[303]},{"name":"EVENT_E_INTERNALEXCEPTION","features":[303]},{"name":"EVENT_E_INVALID_EVENT_CLASS_PARTITION","features":[303]},{"name":"EVENT_E_INVALID_PER_USER_SID","features":[303]},{"name":"EVENT_E_LAST","features":[303]},{"name":"EVENT_E_MISSING_EVENTCLASS","features":[303]},{"name":"EVENT_E_NOT_ALL_REMOVED","features":[303]},{"name":"EVENT_E_PER_USER_SID_NOT_LOGGED_ON","features":[303]},{"name":"EVENT_E_QUERYFIELD","features":[303]},{"name":"EVENT_E_QUERYSYNTAX","features":[303]},{"name":"EVENT_E_TOO_MANY_METHODS","features":[303]},{"name":"EVENT_E_USER_EXCEPTION","features":[303]},{"name":"EVENT_S_FIRST","features":[303]},{"name":"EVENT_S_LAST","features":[303]},{"name":"EVENT_S_NOSUBSCRIBERS","features":[303]},{"name":"EVENT_S_SOME_SUBSCRIBERS_FAILED","features":[303]},{"name":"EXCEPTION_ACCESS_VIOLATION","features":[303]},{"name":"EXCEPTION_ARRAY_BOUNDS_EXCEEDED","features":[303]},{"name":"EXCEPTION_BREAKPOINT","features":[303]},{"name":"EXCEPTION_DATATYPE_MISALIGNMENT","features":[303]},{"name":"EXCEPTION_FLT_DENORMAL_OPERAND","features":[303]},{"name":"EXCEPTION_FLT_DIVIDE_BY_ZERO","features":[303]},{"name":"EXCEPTION_FLT_INEXACT_RESULT","features":[303]},{"name":"EXCEPTION_FLT_INVALID_OPERATION","features":[303]},{"name":"EXCEPTION_FLT_OVERFLOW","features":[303]},{"name":"EXCEPTION_FLT_STACK_CHECK","features":[303]},{"name":"EXCEPTION_FLT_UNDERFLOW","features":[303]},{"name":"EXCEPTION_GUARD_PAGE","features":[303]},{"name":"EXCEPTION_ILLEGAL_INSTRUCTION","features":[303]},{"name":"EXCEPTION_INT_DIVIDE_BY_ZERO","features":[303]},{"name":"EXCEPTION_INT_OVERFLOW","features":[303]},{"name":"EXCEPTION_INVALID_DISPOSITION","features":[303]},{"name":"EXCEPTION_INVALID_HANDLE","features":[303]},{"name":"EXCEPTION_IN_PAGE_ERROR","features":[303]},{"name":"EXCEPTION_NONCONTINUABLE_EXCEPTION","features":[303]},{"name":"EXCEPTION_POSSIBLE_DEADLOCK","features":[303]},{"name":"EXCEPTION_PRIV_INSTRUCTION","features":[303]},{"name":"EXCEPTION_SINGLE_STEP","features":[303]},{"name":"EXCEPTION_SPAPI_UNRECOVERABLE_STACK_OVERFLOW","features":[303]},{"name":"EXCEPTION_STACK_OVERFLOW","features":[303]},{"name":"E_ABORT","features":[303]},{"name":"E_ACCESSDENIED","features":[303]},{"name":"E_APPLICATION_ACTIVATION_EXEC_FAILURE","features":[303]},{"name":"E_APPLICATION_ACTIVATION_TIMED_OUT","features":[303]},{"name":"E_APPLICATION_EXITING","features":[303]},{"name":"E_APPLICATION_MANAGER_NOT_RUNNING","features":[303]},{"name":"E_APPLICATION_NOT_REGISTERED","features":[303]},{"name":"E_APPLICATION_TEMPORARY_LICENSE_ERROR","features":[303]},{"name":"E_APPLICATION_TRIAL_LICENSE_EXPIRED","features":[303]},{"name":"E_APPLICATION_VIEW_EXITING","features":[303]},{"name":"E_ASYNC_OPERATION_NOT_STARTED","features":[303]},{"name":"E_AUDIO_ENGINE_NODE_NOT_FOUND","features":[303]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND","features":[303]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG","features":[303]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[303]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[303]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION","features":[303]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[303]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES","features":[303]},{"name":"E_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[303]},{"name":"E_BLUETOOTH_ATT_INVALID_HANDLE","features":[303]},{"name":"E_BLUETOOTH_ATT_INVALID_OFFSET","features":[303]},{"name":"E_BLUETOOTH_ATT_INVALID_PDU","features":[303]},{"name":"E_BLUETOOTH_ATT_PREPARE_QUEUE_FULL","features":[303]},{"name":"E_BLUETOOTH_ATT_READ_NOT_PERMITTED","features":[303]},{"name":"E_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED","features":[303]},{"name":"E_BLUETOOTH_ATT_UNKNOWN_ERROR","features":[303]},{"name":"E_BLUETOOTH_ATT_UNLIKELY","features":[303]},{"name":"E_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[303]},{"name":"E_BLUETOOTH_ATT_WRITE_NOT_PERMITTED","features":[303]},{"name":"E_BOUNDS","features":[303]},{"name":"E_CHANGED_STATE","features":[303]},{"name":"E_ELEVATED_ACTIVATION_NOT_SUPPORTED","features":[303]},{"name":"E_FAIL","features":[303]},{"name":"E_FULL_ADMIN_NOT_SUPPORTED","features":[303]},{"name":"E_HANDLE","features":[303]},{"name":"E_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[303]},{"name":"E_HDAUDIO_EMPTY_CONNECTION_LIST","features":[303]},{"name":"E_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[303]},{"name":"E_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[303]},{"name":"E_ILLEGAL_DELEGATE_ASSIGNMENT","features":[303]},{"name":"E_ILLEGAL_METHOD_CALL","features":[303]},{"name":"E_ILLEGAL_STATE_CHANGE","features":[303]},{"name":"E_INVALIDARG","features":[303]},{"name":"E_INVALID_PROTOCOL_FORMAT","features":[303]},{"name":"E_INVALID_PROTOCOL_OPERATION","features":[303]},{"name":"E_MBN_BAD_SIM","features":[303]},{"name":"E_MBN_CONTEXT_NOT_ACTIVATED","features":[303]},{"name":"E_MBN_DATA_CLASS_NOT_AVAILABLE","features":[303]},{"name":"E_MBN_DEFAULT_PROFILE_EXIST","features":[303]},{"name":"E_MBN_FAILURE","features":[303]},{"name":"E_MBN_INVALID_ACCESS_STRING","features":[303]},{"name":"E_MBN_INVALID_CACHE","features":[303]},{"name":"E_MBN_INVALID_PROFILE","features":[303]},{"name":"E_MBN_MAX_ACTIVATED_CONTEXTS","features":[303]},{"name":"E_MBN_NOT_REGISTERED","features":[303]},{"name":"E_MBN_PACKET_SVC_DETACHED","features":[303]},{"name":"E_MBN_PIN_DISABLED","features":[303]},{"name":"E_MBN_PIN_NOT_SUPPORTED","features":[303]},{"name":"E_MBN_PIN_REQUIRED","features":[303]},{"name":"E_MBN_PROVIDERS_NOT_FOUND","features":[303]},{"name":"E_MBN_PROVIDER_NOT_VISIBLE","features":[303]},{"name":"E_MBN_RADIO_POWER_OFF","features":[303]},{"name":"E_MBN_SERVICE_NOT_ACTIVATED","features":[303]},{"name":"E_MBN_SIM_NOT_INSERTED","features":[303]},{"name":"E_MBN_SMS_ENCODING_NOT_SUPPORTED","features":[303]},{"name":"E_MBN_SMS_FILTER_NOT_SUPPORTED","features":[303]},{"name":"E_MBN_SMS_FORMAT_NOT_SUPPORTED","features":[303]},{"name":"E_MBN_SMS_INVALID_MEMORY_INDEX","features":[303]},{"name":"E_MBN_SMS_LANG_NOT_SUPPORTED","features":[303]},{"name":"E_MBN_SMS_MEMORY_FAILURE","features":[303]},{"name":"E_MBN_SMS_MEMORY_FULL","features":[303]},{"name":"E_MBN_SMS_NETWORK_TIMEOUT","features":[303]},{"name":"E_MBN_SMS_OPERATION_NOT_ALLOWED","features":[303]},{"name":"E_MBN_SMS_UNKNOWN_SMSC_ADDRESS","features":[303]},{"name":"E_MBN_VOICE_CALL_IN_PROGRESS","features":[303]},{"name":"E_MONITOR_RESOLUTION_TOO_LOW","features":[303]},{"name":"E_MULTIPLE_EXTENSIONS_FOR_APPLICATION","features":[303]},{"name":"E_MULTIPLE_PACKAGES_FOR_FAMILY","features":[303]},{"name":"E_NOINTERFACE","features":[303]},{"name":"E_NOTIMPL","features":[303]},{"name":"E_OUTOFMEMORY","features":[303]},{"name":"E_POINTER","features":[303]},{"name":"E_PROTOCOL_EXTENSIONS_NOT_SUPPORTED","features":[303]},{"name":"E_PROTOCOL_VERSION_NOT_SUPPORTED","features":[303]},{"name":"E_SKYDRIVE_FILE_NOT_UPLOADED","features":[303]},{"name":"E_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX","features":[303]},{"name":"E_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED","features":[303]},{"name":"E_SKYDRIVE_ROOT_TARGET_OVERLAP","features":[303]},{"name":"E_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED","features":[303]},{"name":"E_SKYDRIVE_UPDATE_AVAILABILITY_FAIL","features":[303]},{"name":"E_STRING_NOT_NULL_TERMINATED","features":[303]},{"name":"E_SUBPROTOCOL_NOT_SUPPORTED","features":[303]},{"name":"E_SYNCENGINE_CLIENT_UPDATE_NEEDED","features":[303]},{"name":"E_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN","features":[303]},{"name":"E_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA","features":[303]},{"name":"E_SYNCENGINE_FILE_SIZE_OVER_LIMIT","features":[303]},{"name":"E_SYNCENGINE_FILE_SYNC_PARTNER_ERROR","features":[303]},{"name":"E_SYNCENGINE_FOLDER_INACCESSIBLE","features":[303]},{"name":"E_SYNCENGINE_FOLDER_IN_REDIRECTION","features":[303]},{"name":"E_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED","features":[303]},{"name":"E_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED","features":[303]},{"name":"E_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED","features":[303]},{"name":"E_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED","features":[303]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE","features":[303]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR","features":[303]},{"name":"E_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED","features":[303]},{"name":"E_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE","features":[303]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_BLOCKED","features":[303]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED","features":[303]},{"name":"E_SYNCENGINE_SYNC_PAUSED_BY_SERVICE","features":[303]},{"name":"E_SYNCENGINE_UNKNOWN_SERVICE_ERROR","features":[303]},{"name":"E_SYNCENGINE_UNSUPPORTED_FILE_NAME","features":[303]},{"name":"E_SYNCENGINE_UNSUPPORTED_FOLDER_NAME","features":[303]},{"name":"E_SYNCENGINE_UNSUPPORTED_MARKET","features":[303]},{"name":"E_SYNCENGINE_UNSUPPORTED_REPARSE_POINT","features":[303]},{"name":"E_UAC_DISABLED","features":[303]},{"name":"E_UNEXPECTED","features":[303]},{"name":"FACILITY_ACPI_ERROR_CODE","features":[303]},{"name":"FACILITY_APP_EXEC","features":[303]},{"name":"FACILITY_AUDIO_KERNEL","features":[303]},{"name":"FACILITY_BCD_ERROR_CODE","features":[303]},{"name":"FACILITY_BTH_ATT","features":[303]},{"name":"FACILITY_CLUSTER_ERROR_CODE","features":[303]},{"name":"FACILITY_CODCLASS_ERROR_CODE","features":[303]},{"name":"FACILITY_COMMONLOG","features":[303]},{"name":"FACILITY_DEBUGGER","features":[303]},{"name":"FACILITY_DRIVER_FRAMEWORK","features":[303]},{"name":"FACILITY_FILTER_MANAGER","features":[303]},{"name":"FACILITY_FIREWIRE_ERROR_CODE","features":[303]},{"name":"FACILITY_FVE_ERROR_CODE","features":[303]},{"name":"FACILITY_FWP_ERROR_CODE","features":[303]},{"name":"FACILITY_GRAPHICS_KERNEL","features":[303]},{"name":"FACILITY_HID_ERROR_CODE","features":[303]},{"name":"FACILITY_HYPERVISOR","features":[303]},{"name":"FACILITY_INTERIX","features":[303]},{"name":"FACILITY_IO_ERROR_CODE","features":[303]},{"name":"FACILITY_IPSEC","features":[303]},{"name":"FACILITY_LICENSING","features":[303]},{"name":"FACILITY_MAXIMUM_VALUE","features":[303]},{"name":"FACILITY_MCA_ERROR_CODE","features":[303]},{"name":"FACILITY_MONITOR","features":[303]},{"name":"FACILITY_NDIS_ERROR_CODE","features":[303]},{"name":"FACILITY_NTCERT","features":[303]},{"name":"FACILITY_NTSSPI","features":[303]},{"name":"FACILITY_NTWIN32","features":[303]},{"name":"FACILITY_NT_IORING","features":[303]},{"name":"FACILITY_PLATFORM_MANIFEST","features":[303]},{"name":"FACILITY_QUIC_ERROR_CODE","features":[303]},{"name":"FACILITY_RDBSS","features":[303]},{"name":"FACILITY_RESUME_KEY_FILTER","features":[303]},{"name":"FACILITY_RPC_RUNTIME","features":[303]},{"name":"FACILITY_RPC_STUBS","features":[303]},{"name":"FACILITY_RTPM","features":[303]},{"name":"FACILITY_SDBUS","features":[303]},{"name":"FACILITY_SECUREBOOT","features":[303]},{"name":"FACILITY_SECURITY_CORE","features":[303]},{"name":"FACILITY_SHARED_VHDX","features":[303]},{"name":"FACILITY_SMB","features":[303]},{"name":"FACILITY_SPACES","features":[303]},{"name":"FACILITY_SXS_ERROR_CODE","features":[303]},{"name":"FACILITY_SYSTEM_INTEGRITY","features":[303]},{"name":"FACILITY_TERMINAL_SERVER","features":[303]},{"name":"FACILITY_TPM","features":[303]},{"name":"FACILITY_TRANSACTION","features":[303]},{"name":"FACILITY_USB_ERROR_CODE","features":[303]},{"name":"FACILITY_VIDEO","features":[303]},{"name":"FACILITY_VIRTUALIZATION","features":[303]},{"name":"FACILITY_VOLMGR","features":[303]},{"name":"FACILITY_VOLSNAP","features":[303]},{"name":"FACILITY_VSM","features":[303]},{"name":"FACILITY_WIN32K_NTGDI","features":[303]},{"name":"FACILITY_WIN32K_NTUSER","features":[303]},{"name":"FACILITY_XVS","features":[303]},{"name":"FACILTIY_MUI_ERROR_CODE","features":[303]},{"name":"FALSE","features":[303]},{"name":"FARPROC","features":[303]},{"name":"FA_E_HOMEGROUP_NOT_AVAILABLE","features":[303]},{"name":"FA_E_MAX_PERSISTED_ITEMS_REACHED","features":[303]},{"name":"FDAEMON_E_CHANGEUPDATEFAILED","features":[303]},{"name":"FDAEMON_E_FATALERROR","features":[303]},{"name":"FDAEMON_E_LOWRESOURCE","features":[303]},{"name":"FDAEMON_E_NOWORDLIST","features":[303]},{"name":"FDAEMON_E_PARTITIONDELETED","features":[303]},{"name":"FDAEMON_E_TOOMANYFILTEREDBLOCKS","features":[303]},{"name":"FDAEMON_E_WORDLISTCOMMITFAILED","features":[303]},{"name":"FDAEMON_W_EMPTYWORDLIST","features":[303]},{"name":"FDAEMON_W_WORDLISTFULL","features":[303]},{"name":"FILETIME","features":[303]},{"name":"FILTER_E_ALREADY_OPEN","features":[303]},{"name":"FILTER_E_CONTENTINDEXCORRUPT","features":[303]},{"name":"FILTER_E_IN_USE","features":[303]},{"name":"FILTER_E_NOT_OPEN","features":[303]},{"name":"FILTER_E_NO_SUCH_PROPERTY","features":[303]},{"name":"FILTER_E_OFFLINE","features":[303]},{"name":"FILTER_E_PARTIALLY_FILTERED","features":[303]},{"name":"FILTER_E_TOO_BIG","features":[303]},{"name":"FILTER_E_UNREACHABLE","features":[303]},{"name":"FILTER_S_CONTENTSCAN_DELAYED","features":[303]},{"name":"FILTER_S_DISK_FULL","features":[303]},{"name":"FILTER_S_FULL_CONTENTSCAN_IMMEDIATE","features":[303]},{"name":"FILTER_S_NO_PROPSETS","features":[303]},{"name":"FILTER_S_NO_SECURITY_DESCRIPTOR","features":[303]},{"name":"FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE","features":[303]},{"name":"FLOAT128","features":[303]},{"name":"FRS_ERR_AUTHENTICATION","features":[303]},{"name":"FRS_ERR_CHILD_TO_PARENT_COMM","features":[303]},{"name":"FRS_ERR_INSUFFICIENT_PRIV","features":[303]},{"name":"FRS_ERR_INTERNAL","features":[303]},{"name":"FRS_ERR_INTERNAL_API","features":[303]},{"name":"FRS_ERR_INVALID_API_SEQUENCE","features":[303]},{"name":"FRS_ERR_INVALID_SERVICE_PARAMETER","features":[303]},{"name":"FRS_ERR_PARENT_AUTHENTICATION","features":[303]},{"name":"FRS_ERR_PARENT_INSUFFICIENT_PRIV","features":[303]},{"name":"FRS_ERR_PARENT_TO_CHILD_COMM","features":[303]},{"name":"FRS_ERR_SERVICE_COMM","features":[303]},{"name":"FRS_ERR_STARTING_SERVICE","features":[303]},{"name":"FRS_ERR_STOPPING_SERVICE","features":[303]},{"name":"FRS_ERR_SYSVOL_DEMOTE","features":[303]},{"name":"FRS_ERR_SYSVOL_IS_BUSY","features":[303]},{"name":"FRS_ERR_SYSVOL_POPULATE","features":[303]},{"name":"FRS_ERR_SYSVOL_POPULATE_TIMEOUT","features":[303]},{"name":"FVE_E_AAD_ENDPOINT_BUSY","features":[303]},{"name":"FVE_E_AAD_SERVER_FAIL_BACKOFF","features":[303]},{"name":"FVE_E_AAD_SERVER_FAIL_RETRY_AFTER","features":[303]},{"name":"FVE_E_ACTION_NOT_ALLOWED","features":[303]},{"name":"FVE_E_ADBACKUP_NOT_ENABLED","features":[303]},{"name":"FVE_E_AD_ATTR_NOT_SET","features":[303]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_FIXED_DRIVE","features":[303]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_OS_DRIVE","features":[303]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_REMOVABLE_DRIVE","features":[303]},{"name":"FVE_E_AD_GUID_NOT_FOUND","features":[303]},{"name":"FVE_E_AD_INSUFFICIENT_BUFFER","features":[303]},{"name":"FVE_E_AD_INVALID_DATASIZE","features":[303]},{"name":"FVE_E_AD_INVALID_DATATYPE","features":[303]},{"name":"FVE_E_AD_NO_VALUES","features":[303]},{"name":"FVE_E_AD_SCHEMA_NOT_INSTALLED","features":[303]},{"name":"FVE_E_AUTH_INVALID_APPLICATION","features":[303]},{"name":"FVE_E_AUTH_INVALID_CONFIG","features":[303]},{"name":"FVE_E_AUTOUNLOCK_ENABLED","features":[303]},{"name":"FVE_E_BAD_DATA","features":[303]},{"name":"FVE_E_BAD_INFORMATION","features":[303]},{"name":"FVE_E_BAD_PARTITION_SIZE","features":[303]},{"name":"FVE_E_BCD_APPLICATIONS_PATH_INCORRECT","features":[303]},{"name":"FVE_E_BOOTABLE_CDDVD","features":[303]},{"name":"FVE_E_BUFFER_TOO_LARGE","features":[303]},{"name":"FVE_E_CANNOT_ENCRYPT_NO_KEY","features":[303]},{"name":"FVE_E_CANNOT_SET_FVEK_ENCRYPTED","features":[303]},{"name":"FVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME","features":[303]},{"name":"FVE_E_CLUSTERING_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_CONV_READ","features":[303]},{"name":"FVE_E_CONV_RECOVERY_FAILED","features":[303]},{"name":"FVE_E_CONV_WRITE","features":[303]},{"name":"FVE_E_DATASET_FULL","features":[303]},{"name":"FVE_E_DEBUGGER_ENABLED","features":[303]},{"name":"FVE_E_DEVICELOCKOUT_COUNTER_MISMATCH","features":[303]},{"name":"FVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE","features":[303]},{"name":"FVE_E_DEVICE_NOT_JOINED","features":[303]},{"name":"FVE_E_DE_DEVICE_LOCKEDOUT","features":[303]},{"name":"FVE_E_DE_FIXED_DATA_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_DE_HARDWARE_NOT_COMPLIANT","features":[303]},{"name":"FVE_E_DE_OS_VOLUME_NOT_PROTECTED","features":[303]},{"name":"FVE_E_DE_PREVENTED_FOR_OS","features":[303]},{"name":"FVE_E_DE_PROTECTION_NOT_YET_ENABLED","features":[303]},{"name":"FVE_E_DE_PROTECTION_SUSPENDED","features":[303]},{"name":"FVE_E_DE_VOLUME_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_DE_VOLUME_OPTED_OUT","features":[303]},{"name":"FVE_E_DE_WINRE_NOT_CONFIGURED","features":[303]},{"name":"FVE_E_DRY_RUN_FAILED","features":[303]},{"name":"FVE_E_DV_NOT_ALLOWED_BY_GP","features":[303]},{"name":"FVE_E_DV_NOT_SUPPORTED_ON_FS","features":[303]},{"name":"FVE_E_EDRIVE_BAND_ENUMERATION_FAILED","features":[303]},{"name":"FVE_E_EDRIVE_BAND_IN_USE","features":[303]},{"name":"FVE_E_EDRIVE_DISALLOWED_BY_GP","features":[303]},{"name":"FVE_E_EDRIVE_DRY_RUN_FAILED","features":[303]},{"name":"FVE_E_EDRIVE_DV_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE","features":[303]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_VOLUME","features":[303]},{"name":"FVE_E_EDRIVE_NO_FAILOVER_TO_SW","features":[303]},{"name":"FVE_E_EFI_ONLY","features":[303]},{"name":"FVE_E_ENH_PIN_INVALID","features":[303]},{"name":"FVE_E_EOW_NOT_SUPPORTED_IN_VERSION","features":[303]},{"name":"FVE_E_EXECUTE_REQUEST_SENT_TOO_SOON","features":[303]},{"name":"FVE_E_FAILED_AUTHENTICATION","features":[303]},{"name":"FVE_E_FAILED_SECTOR_SIZE","features":[303]},{"name":"FVE_E_FAILED_WRONG_FS","features":[303]},{"name":"FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED","features":[303]},{"name":"FVE_E_FIPS_HASH_KDF_NOT_ALLOWED","features":[303]},{"name":"FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT","features":[303]},{"name":"FVE_E_FIPS_PREVENTS_PASSPHRASE","features":[303]},{"name":"FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD","features":[303]},{"name":"FVE_E_FIPS_RNG_CHECK_FAILED","features":[303]},{"name":"FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_FOREIGN_VOLUME","features":[303]},{"name":"FVE_E_FS_MOUNTED","features":[303]},{"name":"FVE_E_FS_NOT_EXTENDED","features":[303]},{"name":"FVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[303]},{"name":"FVE_E_HIDDEN_VOLUME","features":[303]},{"name":"FVE_E_INVALID_BITLOCKER_OID","features":[303]},{"name":"FVE_E_INVALID_DATUM_TYPE","features":[303]},{"name":"FVE_E_INVALID_KEY_FORMAT","features":[303]},{"name":"FVE_E_INVALID_NBP_CERT","features":[303]},{"name":"FVE_E_INVALID_NKP_CERT","features":[303]},{"name":"FVE_E_INVALID_PASSWORD_FORMAT","features":[303]},{"name":"FVE_E_INVALID_PIN_CHARS","features":[303]},{"name":"FVE_E_INVALID_PIN_CHARS_DETAILED","features":[303]},{"name":"FVE_E_INVALID_PROTECTOR_TYPE","features":[303]},{"name":"FVE_E_INVALID_STARTUP_OPTIONS","features":[303]},{"name":"FVE_E_KEYFILE_INVALID","features":[303]},{"name":"FVE_E_KEYFILE_NOT_FOUND","features":[303]},{"name":"FVE_E_KEYFILE_NO_VMK","features":[303]},{"name":"FVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE","features":[303]},{"name":"FVE_E_KEY_PROTECTOR_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_KEY_REQUIRED","features":[303]},{"name":"FVE_E_KEY_ROTATION_NOT_ENABLED","features":[303]},{"name":"FVE_E_KEY_ROTATION_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_LIVEID_ACCOUNT_BLOCKED","features":[303]},{"name":"FVE_E_LIVEID_ACCOUNT_SUSPENDED","features":[303]},{"name":"FVE_E_LOCKED_VOLUME","features":[303]},{"name":"FVE_E_METADATA_FULL","features":[303]},{"name":"FVE_E_MOR_FAILED","features":[303]},{"name":"FVE_E_MULTIPLE_NKP_CERTS","features":[303]},{"name":"FVE_E_NON_BITLOCKER_KU","features":[303]},{"name":"FVE_E_NON_BITLOCKER_OID","features":[303]},{"name":"FVE_E_NOT_ACTIVATED","features":[303]},{"name":"FVE_E_NOT_ALLOWED_IN_SAFE_MODE","features":[303]},{"name":"FVE_E_NOT_ALLOWED_IN_VERSION","features":[303]},{"name":"FVE_E_NOT_ALLOWED_ON_CLUSTER","features":[303]},{"name":"FVE_E_NOT_ALLOWED_ON_CSV_STACK","features":[303]},{"name":"FVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[303]},{"name":"FVE_E_NOT_DATA_VOLUME","features":[303]},{"name":"FVE_E_NOT_DECRYPTED","features":[303]},{"name":"FVE_E_NOT_DE_VOLUME","features":[303]},{"name":"FVE_E_NOT_ENCRYPTED","features":[303]},{"name":"FVE_E_NOT_ON_STACK","features":[303]},{"name":"FVE_E_NOT_OS_VOLUME","features":[303]},{"name":"FVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[303]},{"name":"FVE_E_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_NO_AUTOUNLOCK_MASTER_KEY","features":[303]},{"name":"FVE_E_NO_BOOTMGR_METRIC","features":[303]},{"name":"FVE_E_NO_BOOTSECTOR_METRIC","features":[303]},{"name":"FVE_E_NO_EXISTING_PASSPHRASE","features":[303]},{"name":"FVE_E_NO_EXISTING_PIN","features":[303]},{"name":"FVE_E_NO_FEATURE_LICENSE","features":[303]},{"name":"FVE_E_NO_LICENSE","features":[303]},{"name":"FVE_E_NO_MBR_METRIC","features":[303]},{"name":"FVE_E_NO_PASSPHRASE_WITH_TPM","features":[303]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_DETECTED","features":[303]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED","features":[303]},{"name":"FVE_E_NO_PROTECTORS_TO_TEST","features":[303]},{"name":"FVE_E_NO_SUCH_CAPABILITY_ON_TARGET","features":[303]},{"name":"FVE_E_NO_TPM_BIOS","features":[303]},{"name":"FVE_E_NO_TPM_WITH_PASSPHRASE","features":[303]},{"name":"FVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME","features":[303]},{"name":"FVE_E_OSV_KSR_NOT_ALLOWED","features":[303]},{"name":"FVE_E_OS_NOT_PROTECTED","features":[303]},{"name":"FVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED","features":[303]},{"name":"FVE_E_OVERLAPPED_UPDATE","features":[303]},{"name":"FVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[303]},{"name":"FVE_E_PASSPHRASE_TOO_LONG","features":[303]},{"name":"FVE_E_PIN_INVALID","features":[303]},{"name":"FVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[303]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON","features":[303]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON","features":[303]},{"name":"FVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON","features":[303]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON","features":[303]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON","features":[303]},{"name":"FVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS","features":[303]},{"name":"FVE_E_POLICY_INVALID_PASSPHRASE_LENGTH","features":[303]},{"name":"FVE_E_POLICY_INVALID_PIN_LENGTH","features":[303]},{"name":"FVE_E_POLICY_ON_RDV_EXCLUSION_LIST","features":[303]},{"name":"FVE_E_POLICY_PASSPHRASE_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII","features":[303]},{"name":"FVE_E_POLICY_PASSPHRASE_TOO_SIMPLE","features":[303]},{"name":"FVE_E_POLICY_PASSWORD_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_PROHIBITS_SELFSIGNED","features":[303]},{"name":"FVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_RECOVERY_KEY_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE","features":[303]},{"name":"FVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE","features":[303]},{"name":"FVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_STARTUP_KEY_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_STARTUP_PIN_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_STARTUP_TPM_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_REQUIRED","features":[303]},{"name":"FVE_E_POLICY_USER_CERT_MUST_BE_HW","features":[303]},{"name":"FVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[303]},{"name":"FVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED","features":[303]},{"name":"FVE_E_PREDICTED_TPM_PROTECTOR_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_PRIVATEKEY_AUTH_FAILED","features":[303]},{"name":"FVE_E_PROTECTION_CANNOT_BE_DISABLED","features":[303]},{"name":"FVE_E_PROTECTION_DISABLED","features":[303]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED","features":[303]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED","features":[303]},{"name":"FVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH","features":[303]},{"name":"FVE_E_PROTECTOR_CHANGE_PIN_MISMATCH","features":[303]},{"name":"FVE_E_PROTECTOR_EXISTS","features":[303]},{"name":"FVE_E_PROTECTOR_NOT_FOUND","features":[303]},{"name":"FVE_E_PUBKEY_NOT_ALLOWED","features":[303]},{"name":"FVE_E_RAW_ACCESS","features":[303]},{"name":"FVE_E_RAW_BLOCKED","features":[303]},{"name":"FVE_E_REBOOT_REQUIRED","features":[303]},{"name":"FVE_E_RECOVERY_KEY_REQUIRED","features":[303]},{"name":"FVE_E_RECOVERY_PARTITION","features":[303]},{"name":"FVE_E_RELATIVE_PATH","features":[303]},{"name":"FVE_E_REMOVAL_OF_DRA_FAILED","features":[303]},{"name":"FVE_E_REMOVAL_OF_NKP_FAILED","features":[303]},{"name":"FVE_E_SECUREBOOT_CONFIGURATION_INVALID","features":[303]},{"name":"FVE_E_SECUREBOOT_DISABLED","features":[303]},{"name":"FVE_E_SECURE_KEY_REQUIRED","features":[303]},{"name":"FVE_E_SETUP_TPM_CALLBACK_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_SHADOW_COPY_PRESENT","features":[303]},{"name":"FVE_E_SYSTEM_VOLUME","features":[303]},{"name":"FVE_E_TOKEN_NOT_IMPERSONATED","features":[303]},{"name":"FVE_E_TOO_SMALL","features":[303]},{"name":"FVE_E_TPM_CONTEXT_SETUP_NOT_SUPPORTED","features":[303]},{"name":"FVE_E_TPM_DISABLED","features":[303]},{"name":"FVE_E_TPM_INVALID_PCR","features":[303]},{"name":"FVE_E_TPM_NOT_OWNED","features":[303]},{"name":"FVE_E_TPM_NO_VMK","features":[303]},{"name":"FVE_E_TPM_SRK_AUTH_NOT_ZERO","features":[303]},{"name":"FVE_E_TRANSIENT_STATE","features":[303]},{"name":"FVE_E_UPDATE_INVALID_CONFIG","features":[303]},{"name":"FVE_E_VIRTUALIZED_SPACE_TOO_BIG","features":[303]},{"name":"FVE_E_VOLUME_BOUND_ALREADY","features":[303]},{"name":"FVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[303]},{"name":"FVE_E_VOLUME_HANDLE_OPEN","features":[303]},{"name":"FVE_E_VOLUME_NOT_BOUND","features":[303]},{"name":"FVE_E_VOLUME_TOO_SMALL","features":[303]},{"name":"FVE_E_WIPE_CANCEL_NOT_APPLICABLE","features":[303]},{"name":"FVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[303]},{"name":"FVE_E_WRONG_BOOTMGR","features":[303]},{"name":"FVE_E_WRONG_BOOTSECTOR","features":[303]},{"name":"FVE_E_WRONG_SYSTEM_FS","features":[303]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER","features":[303]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[303]},{"name":"FWP_E_ALREADY_EXISTS","features":[303]},{"name":"FWP_E_BUILTIN_OBJECT","features":[303]},{"name":"FWP_E_CALLOUT_NOTIFICATION_FAILED","features":[303]},{"name":"FWP_E_CALLOUT_NOT_FOUND","features":[303]},{"name":"FWP_E_CONDITION_NOT_FOUND","features":[303]},{"name":"FWP_E_CONNECTIONS_DISABLED","features":[303]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[303]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[303]},{"name":"FWP_E_DROP_NOICMP","features":[303]},{"name":"FWP_E_DUPLICATE_AUTH_METHOD","features":[303]},{"name":"FWP_E_DUPLICATE_CONDITION","features":[303]},{"name":"FWP_E_DUPLICATE_KEYMOD","features":[303]},{"name":"FWP_E_DYNAMIC_SESSION_IN_PROGRESS","features":[303]},{"name":"FWP_E_EM_NOT_SUPPORTED","features":[303]},{"name":"FWP_E_FILTER_NOT_FOUND","features":[303]},{"name":"FWP_E_IKEEXT_NOT_RUNNING","features":[303]},{"name":"FWP_E_INCOMPATIBLE_AUTH_METHOD","features":[303]},{"name":"FWP_E_INCOMPATIBLE_CIPHER_TRANSFORM","features":[303]},{"name":"FWP_E_INCOMPATIBLE_DH_GROUP","features":[303]},{"name":"FWP_E_INCOMPATIBLE_LAYER","features":[303]},{"name":"FWP_E_INCOMPATIBLE_SA_STATE","features":[303]},{"name":"FWP_E_INCOMPATIBLE_TXN","features":[303]},{"name":"FWP_E_INVALID_ACTION_TYPE","features":[303]},{"name":"FWP_E_INVALID_AUTH_TRANSFORM","features":[303]},{"name":"FWP_E_INVALID_CIPHER_TRANSFORM","features":[303]},{"name":"FWP_E_INVALID_DNS_NAME","features":[303]},{"name":"FWP_E_INVALID_ENUMERATOR","features":[303]},{"name":"FWP_E_INVALID_FLAGS","features":[303]},{"name":"FWP_E_INVALID_INTERVAL","features":[303]},{"name":"FWP_E_INVALID_NET_MASK","features":[303]},{"name":"FWP_E_INVALID_PARAMETER","features":[303]},{"name":"FWP_E_INVALID_RANGE","features":[303]},{"name":"FWP_E_INVALID_TRANSFORM_COMBINATION","features":[303]},{"name":"FWP_E_INVALID_TUNNEL_ENDPOINT","features":[303]},{"name":"FWP_E_INVALID_WEIGHT","features":[303]},{"name":"FWP_E_IN_USE","features":[303]},{"name":"FWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[303]},{"name":"FWP_E_KEY_DICTATOR_ALREADY_REGISTERED","features":[303]},{"name":"FWP_E_KM_CLIENTS_ONLY","features":[303]},{"name":"FWP_E_L2_DRIVER_NOT_READY","features":[303]},{"name":"FWP_E_LAYER_NOT_FOUND","features":[303]},{"name":"FWP_E_LIFETIME_MISMATCH","features":[303]},{"name":"FWP_E_MATCH_TYPE_MISMATCH","features":[303]},{"name":"FWP_E_NET_EVENTS_DISABLED","features":[303]},{"name":"FWP_E_NEVER_MATCH","features":[303]},{"name":"FWP_E_NOTIFICATION_DROPPED","features":[303]},{"name":"FWP_E_NOT_FOUND","features":[303]},{"name":"FWP_E_NO_TXN_IN_PROGRESS","features":[303]},{"name":"FWP_E_NULL_DISPLAY_NAME","features":[303]},{"name":"FWP_E_NULL_POINTER","features":[303]},{"name":"FWP_E_OUT_OF_BOUNDS","features":[303]},{"name":"FWP_E_PROVIDER_CONTEXT_MISMATCH","features":[303]},{"name":"FWP_E_PROVIDER_CONTEXT_NOT_FOUND","features":[303]},{"name":"FWP_E_PROVIDER_NOT_FOUND","features":[303]},{"name":"FWP_E_RESERVED","features":[303]},{"name":"FWP_E_SESSION_ABORTED","features":[303]},{"name":"FWP_E_STILL_ON","features":[303]},{"name":"FWP_E_SUBLAYER_NOT_FOUND","features":[303]},{"name":"FWP_E_TIMEOUT","features":[303]},{"name":"FWP_E_TOO_MANY_CALLOUTS","features":[303]},{"name":"FWP_E_TOO_MANY_SUBLAYERS","features":[303]},{"name":"FWP_E_TRAFFIC_MISMATCH","features":[303]},{"name":"FWP_E_TXN_ABORTED","features":[303]},{"name":"FWP_E_TXN_IN_PROGRESS","features":[303]},{"name":"FWP_E_TYPE_MISMATCH","features":[303]},{"name":"FWP_E_WRONG_SESSION","features":[303]},{"name":"FWP_E_ZERO_LENGTH_ARRAY","features":[303]},{"name":"FreeLibrary","features":[303]},{"name":"GCN_E_DEFAULTNAMESPACE_EXISTS","features":[303]},{"name":"GCN_E_MODULE_NOT_FOUND","features":[303]},{"name":"GCN_E_NETADAPTER_NOT_FOUND","features":[303]},{"name":"GCN_E_NETADAPTER_TIMEOUT","features":[303]},{"name":"GCN_E_NETCOMPARTMENT_NOT_FOUND","features":[303]},{"name":"GCN_E_NETINTERFACE_NOT_FOUND","features":[303]},{"name":"GCN_E_NO_REQUEST_HANDLERS","features":[303]},{"name":"GCN_E_REQUEST_UNSUPPORTED","features":[303]},{"name":"GCN_E_RUNTIMEKEYS_FAILED","features":[303]},{"name":"GENERIC_ACCESS_RIGHTS","features":[303]},{"name":"GENERIC_ALL","features":[303]},{"name":"GENERIC_EXECUTE","features":[303]},{"name":"GENERIC_READ","features":[303]},{"name":"GENERIC_WRITE","features":[303]},{"name":"GetHandleInformation","features":[303]},{"name":"GetLastError","features":[303]},{"name":"GlobalFree","features":[303]},{"name":"HANDLE","features":[303]},{"name":"HANDLE_FLAGS","features":[303]},{"name":"HANDLE_FLAG_INHERIT","features":[303]},{"name":"HANDLE_FLAG_PROTECT_FROM_CLOSE","features":[303]},{"name":"HANDLE_PTR","features":[303]},{"name":"HCN_E_ADAPTER_NOT_FOUND","features":[303]},{"name":"HCN_E_ADDR_INVALID_OR_RESERVED","features":[303]},{"name":"HCN_E_DEGRADED_OPERATION","features":[303]},{"name":"HCN_E_ENDPOINT_ALREADY_ATTACHED","features":[303]},{"name":"HCN_E_ENDPOINT_NAMESPACE_ALREADY_EXISTS","features":[303]},{"name":"HCN_E_ENDPOINT_NOT_ATTACHED","features":[303]},{"name":"HCN_E_ENDPOINT_NOT_FOUND","features":[303]},{"name":"HCN_E_ENDPOINT_NOT_LOCAL","features":[303]},{"name":"HCN_E_ENDPOINT_SHARING_DISABLED","features":[303]},{"name":"HCN_E_ENTITY_HAS_REFERENCES","features":[303]},{"name":"HCN_E_GUID_CONVERSION_FAILURE","features":[303]},{"name":"HCN_E_ICS_DISABLED","features":[303]},{"name":"HCN_E_INVALID_ENDPOINT","features":[303]},{"name":"HCN_E_INVALID_INTERNAL_PORT","features":[303]},{"name":"HCN_E_INVALID_IP","features":[303]},{"name":"HCN_E_INVALID_IP_SUBNET","features":[303]},{"name":"HCN_E_INVALID_JSON","features":[303]},{"name":"HCN_E_INVALID_JSON_REFERENCE","features":[303]},{"name":"HCN_E_INVALID_NETWORK","features":[303]},{"name":"HCN_E_INVALID_NETWORK_TYPE","features":[303]},{"name":"HCN_E_INVALID_POLICY","features":[303]},{"name":"HCN_E_INVALID_POLICY_TYPE","features":[303]},{"name":"HCN_E_INVALID_PREFIX","features":[303]},{"name":"HCN_E_INVALID_REMOTE_ENDPOINT_OPERATION","features":[303]},{"name":"HCN_E_INVALID_SUBNET","features":[303]},{"name":"HCN_E_LAYER_ALREADY_EXISTS","features":[303]},{"name":"HCN_E_LAYER_NOT_FOUND","features":[303]},{"name":"HCN_E_MANAGER_STOPPED","features":[303]},{"name":"HCN_E_MAPPING_NOT_SUPPORTED","features":[303]},{"name":"HCN_E_NAMESPACE_ATTACH_FAILED","features":[303]},{"name":"HCN_E_NETWORK_ALREADY_EXISTS","features":[303]},{"name":"HCN_E_NETWORK_NOT_FOUND","features":[303]},{"name":"HCN_E_OBJECT_USED_AFTER_UNLOAD","features":[303]},{"name":"HCN_E_POLICY_ALREADY_EXISTS","features":[303]},{"name":"HCN_E_POLICY_NOT_FOUND","features":[303]},{"name":"HCN_E_PORT_ALREADY_EXISTS","features":[303]},{"name":"HCN_E_PORT_NOT_FOUND","features":[303]},{"name":"HCN_E_REGKEY_FAILURE","features":[303]},{"name":"HCN_E_REQUEST_UNSUPPORTED","features":[303]},{"name":"HCN_E_SHARED_SWITCH_MODIFICATION","features":[303]},{"name":"HCN_E_SUBNET_NOT_FOUND","features":[303]},{"name":"HCN_E_SWITCH_EXTENSION_NOT_FOUND","features":[303]},{"name":"HCN_E_SWITCH_NOT_FOUND","features":[303]},{"name":"HCN_E_VFP_NOT_ALLOWED","features":[303]},{"name":"HCN_E_VFP_PORTSETTING_NOT_FOUND","features":[303]},{"name":"HCN_INTERFACEPARAMETERS_ALREADY_APPLIED","features":[303]},{"name":"HCS_E_ACCESS_DENIED","features":[303]},{"name":"HCS_E_CONNECTION_CLOSED","features":[303]},{"name":"HCS_E_CONNECTION_TIMEOUT","features":[303]},{"name":"HCS_E_CONNECT_FAILED","features":[303]},{"name":"HCS_E_GUEST_CRITICAL_ERROR","features":[303]},{"name":"HCS_E_HYPERV_NOT_INSTALLED","features":[303]},{"name":"HCS_E_IMAGE_MISMATCH","features":[303]},{"name":"HCS_E_INVALID_JSON","features":[303]},{"name":"HCS_E_INVALID_LAYER","features":[303]},{"name":"HCS_E_INVALID_STATE","features":[303]},{"name":"HCS_E_OPERATION_ALREADY_CANCELLED","features":[303]},{"name":"HCS_E_OPERATION_ALREADY_STARTED","features":[303]},{"name":"HCS_E_OPERATION_NOT_STARTED","features":[303]},{"name":"HCS_E_OPERATION_PENDING","features":[303]},{"name":"HCS_E_OPERATION_RESULT_ALLOCATION_FAILED","features":[303]},{"name":"HCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET","features":[303]},{"name":"HCS_E_OPERATION_TIMEOUT","features":[303]},{"name":"HCS_E_PROCESS_ALREADY_STOPPED","features":[303]},{"name":"HCS_E_PROCESS_INFO_NOT_AVAILABLE","features":[303]},{"name":"HCS_E_PROTOCOL_ERROR","features":[303]},{"name":"HCS_E_SERVICE_DISCONNECT","features":[303]},{"name":"HCS_E_SERVICE_NOT_AVAILABLE","features":[303]},{"name":"HCS_E_SYSTEM_ALREADY_EXISTS","features":[303]},{"name":"HCS_E_SYSTEM_ALREADY_STOPPED","features":[303]},{"name":"HCS_E_SYSTEM_NOT_CONFIGURED_FOR_OPERATION","features":[303]},{"name":"HCS_E_SYSTEM_NOT_FOUND","features":[303]},{"name":"HCS_E_TERMINATED","features":[303]},{"name":"HCS_E_TERMINATED_DURING_START","features":[303]},{"name":"HCS_E_UNEXPECTED_EXIT","features":[303]},{"name":"HCS_E_UNKNOWN_MESSAGE","features":[303]},{"name":"HCS_E_UNSUPPORTED_PROTOCOL_VERSION","features":[303]},{"name":"HCS_E_WINDOWS_INSIDER_REQUIRED","features":[303]},{"name":"HGLOBAL","features":[303]},{"name":"HINSTANCE","features":[303]},{"name":"HLOCAL","features":[303]},{"name":"HLSURF","features":[303]},{"name":"HMODULE","features":[303]},{"name":"HRESULT","features":[303]},{"name":"HRSRC","features":[303]},{"name":"HSPRITE","features":[303]},{"name":"HSP_BASE_ERROR_MASK","features":[303]},{"name":"HSP_BASE_INTERNAL_ERROR","features":[303]},{"name":"HSP_BS_ERROR_MASK","features":[303]},{"name":"HSP_BS_INTERNAL_ERROR","features":[303]},{"name":"HSP_DRV_ERROR_MASK","features":[303]},{"name":"HSP_DRV_INTERNAL_ERROR","features":[303]},{"name":"HSP_E_ERROR_MASK","features":[303]},{"name":"HSP_E_INTERNAL_ERROR","features":[303]},{"name":"HSP_KSP_ALGORITHM_NOT_SUPPORTED","features":[303]},{"name":"HSP_KSP_BUFFER_TOO_SMALL","features":[303]},{"name":"HSP_KSP_DEVICE_NOT_READY","features":[303]},{"name":"HSP_KSP_ERROR_MASK","features":[303]},{"name":"HSP_KSP_INTERNAL_ERROR","features":[303]},{"name":"HSP_KSP_INVALID_DATA","features":[303]},{"name":"HSP_KSP_INVALID_FLAGS","features":[303]},{"name":"HSP_KSP_INVALID_KEY_HANDLE","features":[303]},{"name":"HSP_KSP_INVALID_KEY_TYPE","features":[303]},{"name":"HSP_KSP_INVALID_PARAMETER","features":[303]},{"name":"HSP_KSP_INVALID_PROVIDER_HANDLE","features":[303]},{"name":"HSP_KSP_KEY_ALREADY_FINALIZED","features":[303]},{"name":"HSP_KSP_KEY_EXISTS","features":[303]},{"name":"HSP_KSP_KEY_LOAD_FAIL","features":[303]},{"name":"HSP_KSP_KEY_MISSING","features":[303]},{"name":"HSP_KSP_KEY_NOT_FINALIZED","features":[303]},{"name":"HSP_KSP_NOT_SUPPORTED","features":[303]},{"name":"HSP_KSP_NO_MEMORY","features":[303]},{"name":"HSP_KSP_NO_MORE_ITEMS","features":[303]},{"name":"HSP_KSP_PARAMETER_NOT_SET","features":[303]},{"name":"HSTR","features":[303]},{"name":"HTTP_E_STATUS_AMBIGUOUS","features":[303]},{"name":"HTTP_E_STATUS_BAD_GATEWAY","features":[303]},{"name":"HTTP_E_STATUS_BAD_METHOD","features":[303]},{"name":"HTTP_E_STATUS_BAD_REQUEST","features":[303]},{"name":"HTTP_E_STATUS_CONFLICT","features":[303]},{"name":"HTTP_E_STATUS_DENIED","features":[303]},{"name":"HTTP_E_STATUS_EXPECTATION_FAILED","features":[303]},{"name":"HTTP_E_STATUS_FORBIDDEN","features":[303]},{"name":"HTTP_E_STATUS_GATEWAY_TIMEOUT","features":[303]},{"name":"HTTP_E_STATUS_GONE","features":[303]},{"name":"HTTP_E_STATUS_LENGTH_REQUIRED","features":[303]},{"name":"HTTP_E_STATUS_MOVED","features":[303]},{"name":"HTTP_E_STATUS_NONE_ACCEPTABLE","features":[303]},{"name":"HTTP_E_STATUS_NOT_FOUND","features":[303]},{"name":"HTTP_E_STATUS_NOT_MODIFIED","features":[303]},{"name":"HTTP_E_STATUS_NOT_SUPPORTED","features":[303]},{"name":"HTTP_E_STATUS_PAYMENT_REQ","features":[303]},{"name":"HTTP_E_STATUS_PRECOND_FAILED","features":[303]},{"name":"HTTP_E_STATUS_PROXY_AUTH_REQ","features":[303]},{"name":"HTTP_E_STATUS_RANGE_NOT_SATISFIABLE","features":[303]},{"name":"HTTP_E_STATUS_REDIRECT","features":[303]},{"name":"HTTP_E_STATUS_REDIRECT_KEEP_VERB","features":[303]},{"name":"HTTP_E_STATUS_REDIRECT_METHOD","features":[303]},{"name":"HTTP_E_STATUS_REQUEST_TIMEOUT","features":[303]},{"name":"HTTP_E_STATUS_REQUEST_TOO_LARGE","features":[303]},{"name":"HTTP_E_STATUS_SERVER_ERROR","features":[303]},{"name":"HTTP_E_STATUS_SERVICE_UNAVAIL","features":[303]},{"name":"HTTP_E_STATUS_UNEXPECTED","features":[303]},{"name":"HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR","features":[303]},{"name":"HTTP_E_STATUS_UNEXPECTED_REDIRECTION","features":[303]},{"name":"HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR","features":[303]},{"name":"HTTP_E_STATUS_UNSUPPORTED_MEDIA","features":[303]},{"name":"HTTP_E_STATUS_URI_TOO_LONG","features":[303]},{"name":"HTTP_E_STATUS_USE_PROXY","features":[303]},{"name":"HTTP_E_STATUS_VERSION_NOT_SUP","features":[303]},{"name":"HUMPD","features":[303]},{"name":"HWND","features":[303]},{"name":"INPLACE_E_FIRST","features":[303]},{"name":"INPLACE_E_LAST","features":[303]},{"name":"INPLACE_E_NOTOOLSPACE","features":[303]},{"name":"INPLACE_E_NOTUNDOABLE","features":[303]},{"name":"INPLACE_S_FIRST","features":[303]},{"name":"INPLACE_S_LAST","features":[303]},{"name":"INPLACE_S_TRUNCATED","features":[303]},{"name":"INPUT_E_DEVICE_INFO","features":[303]},{"name":"INPUT_E_DEVICE_PROPERTY","features":[303]},{"name":"INPUT_E_FRAME","features":[303]},{"name":"INPUT_E_HISTORY","features":[303]},{"name":"INPUT_E_MULTIMODAL","features":[303]},{"name":"INPUT_E_OUT_OF_ORDER","features":[303]},{"name":"INPUT_E_PACKET","features":[303]},{"name":"INPUT_E_REENTRANCY","features":[303]},{"name":"INPUT_E_TRANSFORM","features":[303]},{"name":"INVALID_HANDLE_VALUE","features":[303]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_BIG","features":[303]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_FULL","features":[303]},{"name":"IORING_E_CORRUPT","features":[303]},{"name":"IORING_E_REQUIRED_FLAG_NOT_SUPPORTED","features":[303]},{"name":"IORING_E_SUBMISSION_QUEUE_FULL","features":[303]},{"name":"IORING_E_SUBMISSION_QUEUE_TOO_BIG","features":[303]},{"name":"IORING_E_SUBMIT_IN_PROGRESS","features":[303]},{"name":"IORING_E_VERSION_NOT_SUPPORTED","features":[303]},{"name":"IO_BAD_BLOCK_WITH_NAME","features":[303]},{"name":"IO_CDROM_EXCLUSIVE_LOCK","features":[303]},{"name":"IO_DRIVER_CANCEL_TIMEOUT","features":[303]},{"name":"IO_DUMP_CALLBACK_EXCEPTION","features":[303]},{"name":"IO_DUMP_CREATION_SUCCESS","features":[303]},{"name":"IO_DUMP_DIRECT_CONFIG_FAILED","features":[303]},{"name":"IO_DUMP_DRIVER_LOAD_FAILURE","features":[303]},{"name":"IO_DUMP_DUMPFILE_CONFLICT","features":[303]},{"name":"IO_DUMP_INITIALIZATION_FAILURE","features":[303]},{"name":"IO_DUMP_INIT_DEDICATED_DUMP_FAILURE","features":[303]},{"name":"IO_DUMP_PAGE_CONFIG_FAILED","features":[303]},{"name":"IO_DUMP_POINTER_FAILURE","features":[303]},{"name":"IO_ERROR_DISK_RESOURCES_EXHAUSTED","features":[303]},{"name":"IO_ERROR_DUMP_CREATION_ERROR","features":[303]},{"name":"IO_ERROR_IO_HARDWARE_ERROR","features":[303]},{"name":"IO_ERR_BAD_BLOCK","features":[303]},{"name":"IO_ERR_BAD_FIRMWARE","features":[303]},{"name":"IO_ERR_CONFIGURATION_ERROR","features":[303]},{"name":"IO_ERR_CONTROLLER_ERROR","features":[303]},{"name":"IO_ERR_DMA_CONFLICT_DETECTED","features":[303]},{"name":"IO_ERR_DMA_RESOURCE_CONFLICT","features":[303]},{"name":"IO_ERR_DRIVER_ERROR","features":[303]},{"name":"IO_ERR_INCORRECT_IRQL","features":[303]},{"name":"IO_ERR_INSUFFICIENT_RESOURCES","features":[303]},{"name":"IO_ERR_INTERNAL_ERROR","features":[303]},{"name":"IO_ERR_INTERRUPT_RESOURCE_CONFLICT","features":[303]},{"name":"IO_ERR_INVALID_IOBASE","features":[303]},{"name":"IO_ERR_INVALID_REQUEST","features":[303]},{"name":"IO_ERR_IRQ_CONFLICT_DETECTED","features":[303]},{"name":"IO_ERR_LAYERED_FAILURE","features":[303]},{"name":"IO_ERR_MEMORY_CONFLICT_DETECTED","features":[303]},{"name":"IO_ERR_MEMORY_RESOURCE_CONFLICT","features":[303]},{"name":"IO_ERR_NOT_READY","features":[303]},{"name":"IO_ERR_OVERRUN_ERROR","features":[303]},{"name":"IO_ERR_PARITY","features":[303]},{"name":"IO_ERR_PORT_CONFLICT_DETECTED","features":[303]},{"name":"IO_ERR_PORT_RESOURCE_CONFLICT","features":[303]},{"name":"IO_ERR_PORT_TIMEOUT","features":[303]},{"name":"IO_ERR_PROTOCOL","features":[303]},{"name":"IO_ERR_RESET","features":[303]},{"name":"IO_ERR_RETRY_SUCCEEDED","features":[303]},{"name":"IO_ERR_SEEK_ERROR","features":[303]},{"name":"IO_ERR_SEQUENCE","features":[303]},{"name":"IO_ERR_THREAD_STUCK_IN_DEVICE_DRIVER","features":[303]},{"name":"IO_ERR_TIMEOUT","features":[303]},{"name":"IO_ERR_VERSION","features":[303]},{"name":"IO_FILE_QUOTA_CORRUPT","features":[303]},{"name":"IO_FILE_QUOTA_FAILED","features":[303]},{"name":"IO_FILE_QUOTA_LIMIT","features":[303]},{"name":"IO_FILE_QUOTA_STARTED","features":[303]},{"name":"IO_FILE_QUOTA_SUCCEEDED","features":[303]},{"name":"IO_FILE_QUOTA_THRESHOLD","features":[303]},{"name":"IO_FILE_SYSTEM_CORRUPT","features":[303]},{"name":"IO_FILE_SYSTEM_CORRUPT_WITH_NAME","features":[303]},{"name":"IO_INFO_THROTTLE_COMPLETE","features":[303]},{"name":"IO_LOST_DELAYED_WRITE","features":[303]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_DISCONNECTED","features":[303]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_LOCAL_DISK_ERROR","features":[303]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_SERVER_ERROR","features":[303]},{"name":"IO_RECOVERED_VIA_ECC","features":[303]},{"name":"IO_SYSTEM_SLEEP_FAILED","features":[303]},{"name":"IO_WARNING_ADAPTER_FIRMWARE_UPDATED","features":[303]},{"name":"IO_WARNING_ALLOCATION_FAILED","features":[303]},{"name":"IO_WARNING_BUS_RESET","features":[303]},{"name":"IO_WARNING_COMPLETION_TIME","features":[303]},{"name":"IO_WARNING_DEVICE_HAS_INTERNAL_DUMP","features":[303]},{"name":"IO_WARNING_DISK_CAPACITY_CHANGED","features":[303]},{"name":"IO_WARNING_DISK_FIRMWARE_UPDATED","features":[303]},{"name":"IO_WARNING_DISK_PROVISIONING_TYPE_CHANGED","features":[303]},{"name":"IO_WARNING_DISK_SURPRISE_REMOVED","features":[303]},{"name":"IO_WARNING_DUMP_DISABLED_DEVICE_GONE","features":[303]},{"name":"IO_WARNING_DUPLICATE_PATH","features":[303]},{"name":"IO_WARNING_DUPLICATE_SIGNATURE","features":[303]},{"name":"IO_WARNING_INTERRUPT_STILL_PENDING","features":[303]},{"name":"IO_WARNING_IO_OPERATION_RETRIED","features":[303]},{"name":"IO_WARNING_LOG_FLUSH_FAILED","features":[303]},{"name":"IO_WARNING_PAGING_FAILURE","features":[303]},{"name":"IO_WARNING_REPEATED_DISK_GUID","features":[303]},{"name":"IO_WARNING_RESET","features":[303]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED","features":[303]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX","features":[303]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_LUN","features":[303]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_POOL","features":[303]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_LUN","features":[303]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_POOL","features":[303]},{"name":"IO_WARNING_VOLUME_LOST_DISK_EXTENT","features":[303]},{"name":"IO_WARNING_WRITE_FUA_PROBLEM","features":[303]},{"name":"IO_WRITE_CACHE_DISABLED","features":[303]},{"name":"IO_WRITE_CACHE_ENABLED","features":[303]},{"name":"IO_WRN_BAD_FIRMWARE","features":[303]},{"name":"IO_WRN_FAILURE_PREDICTED","features":[303]},{"name":"JSCRIPT_E_CANTEXECUTE","features":[303]},{"name":"LANGUAGE_E_DATABASE_NOT_FOUND","features":[303]},{"name":"LANGUAGE_S_LARGE_WORD","features":[303]},{"name":"LPARAM","features":[303]},{"name":"LRESULT","features":[303]},{"name":"LUID","features":[303]},{"name":"LocalFree","features":[303]},{"name":"MARSHAL_E_FIRST","features":[303]},{"name":"MARSHAL_E_LAST","features":[303]},{"name":"MARSHAL_S_FIRST","features":[303]},{"name":"MARSHAL_S_LAST","features":[303]},{"name":"MAX_PATH","features":[303]},{"name":"MCA_BUS_ERROR","features":[303]},{"name":"MCA_BUS_TIMEOUT_ERROR","features":[303]},{"name":"MCA_ERROR_CACHE","features":[303]},{"name":"MCA_ERROR_CPU","features":[303]},{"name":"MCA_ERROR_CPU_BUS","features":[303]},{"name":"MCA_ERROR_MAS","features":[303]},{"name":"MCA_ERROR_MEM_1_2","features":[303]},{"name":"MCA_ERROR_MEM_1_2_5","features":[303]},{"name":"MCA_ERROR_MEM_1_2_5_4","features":[303]},{"name":"MCA_ERROR_MEM_UNKNOWN","features":[303]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT","features":[303]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT_NO_INFO","features":[303]},{"name":"MCA_ERROR_PCI_BUS_PARITY","features":[303]},{"name":"MCA_ERROR_PCI_BUS_PARITY_NO_INFO","features":[303]},{"name":"MCA_ERROR_PCI_BUS_SERR","features":[303]},{"name":"MCA_ERROR_PCI_BUS_SERR_NO_INFO","features":[303]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT","features":[303]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT_NO_INFO","features":[303]},{"name":"MCA_ERROR_PCI_BUS_UNKNOWN","features":[303]},{"name":"MCA_ERROR_PCI_DEVICE","features":[303]},{"name":"MCA_ERROR_PLATFORM_SPECIFIC","features":[303]},{"name":"MCA_ERROR_REGISTER_FILE","features":[303]},{"name":"MCA_ERROR_SMBIOS","features":[303]},{"name":"MCA_ERROR_SYSTEM_EVENT","features":[303]},{"name":"MCA_ERROR_TLB","features":[303]},{"name":"MCA_ERROR_UNKNOWN","features":[303]},{"name":"MCA_ERROR_UNKNOWN_NO_CPU","features":[303]},{"name":"MCA_EXTERNAL_ERROR","features":[303]},{"name":"MCA_FRC_ERROR","features":[303]},{"name":"MCA_INFO_CPU_THERMAL_THROTTLING_REMOVED","features":[303]},{"name":"MCA_INFO_MEMORY_PAGE_MARKED_BAD","features":[303]},{"name":"MCA_INFO_NO_MORE_CORRECTED_ERROR_LOGS","features":[303]},{"name":"MCA_INTERNALTIMER_ERROR","features":[303]},{"name":"MCA_MEMORYHIERARCHY_ERROR","features":[303]},{"name":"MCA_MICROCODE_ROM_PARITY_ERROR","features":[303]},{"name":"MCA_TLB_ERROR","features":[303]},{"name":"MCA_WARNING_CACHE","features":[303]},{"name":"MCA_WARNING_CMC_THRESHOLD_EXCEEDED","features":[303]},{"name":"MCA_WARNING_CPE_THRESHOLD_EXCEEDED","features":[303]},{"name":"MCA_WARNING_CPU","features":[303]},{"name":"MCA_WARNING_CPU_BUS","features":[303]},{"name":"MCA_WARNING_CPU_THERMAL_THROTTLED","features":[303]},{"name":"MCA_WARNING_MAS","features":[303]},{"name":"MCA_WARNING_MEM_1_2","features":[303]},{"name":"MCA_WARNING_MEM_1_2_5","features":[303]},{"name":"MCA_WARNING_MEM_1_2_5_4","features":[303]},{"name":"MCA_WARNING_MEM_UNKNOWN","features":[303]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT","features":[303]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT_NO_INFO","features":[303]},{"name":"MCA_WARNING_PCI_BUS_PARITY","features":[303]},{"name":"MCA_WARNING_PCI_BUS_PARITY_NO_INFO","features":[303]},{"name":"MCA_WARNING_PCI_BUS_SERR","features":[303]},{"name":"MCA_WARNING_PCI_BUS_SERR_NO_INFO","features":[303]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT","features":[303]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT_NO_INFO","features":[303]},{"name":"MCA_WARNING_PCI_BUS_UNKNOWN","features":[303]},{"name":"MCA_WARNING_PCI_DEVICE","features":[303]},{"name":"MCA_WARNING_PLATFORM_SPECIFIC","features":[303]},{"name":"MCA_WARNING_REGISTER_FILE","features":[303]},{"name":"MCA_WARNING_SMBIOS","features":[303]},{"name":"MCA_WARNING_SYSTEM_EVENT","features":[303]},{"name":"MCA_WARNING_TLB","features":[303]},{"name":"MCA_WARNING_UNKNOWN","features":[303]},{"name":"MCA_WARNING_UNKNOWN_NO_CPU","features":[303]},{"name":"MEM_E_INVALID_LINK","features":[303]},{"name":"MEM_E_INVALID_ROOT","features":[303]},{"name":"MEM_E_INVALID_SIZE","features":[303]},{"name":"MENROLL_S_ENROLLMENT_SUSPENDED","features":[303]},{"name":"MILAVERR_INSUFFICIENTVIDEORESOURCES","features":[303]},{"name":"MILAVERR_INVALIDWMPVERSION","features":[303]},{"name":"MILAVERR_MEDIAPLAYERCLOSED","features":[303]},{"name":"MILAVERR_MODULENOTLOADED","features":[303]},{"name":"MILAVERR_NOCLOCK","features":[303]},{"name":"MILAVERR_NOMEDIATYPE","features":[303]},{"name":"MILAVERR_NOREADYFRAMES","features":[303]},{"name":"MILAVERR_NOVIDEOMIXER","features":[303]},{"name":"MILAVERR_NOVIDEOPRESENTER","features":[303]},{"name":"MILAVERR_REQUESTEDTEXTURETOOBIG","features":[303]},{"name":"MILAVERR_SEEKFAILED","features":[303]},{"name":"MILAVERR_UNEXPECTEDWMPFAILURE","features":[303]},{"name":"MILAVERR_UNKNOWNHARDWAREERROR","features":[303]},{"name":"MILAVERR_VIDEOACCELERATIONNOTAVAILABLE","features":[303]},{"name":"MILAVERR_WMPFACTORYNOTREGISTERED","features":[303]},{"name":"MILEFFECTSERR_ALREADYATTACHEDTOLISTENER","features":[303]},{"name":"MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT","features":[303]},{"name":"MILEFFECTSERR_CONNECTORNOTCONNECTED","features":[303]},{"name":"MILEFFECTSERR_CYCLEDETECTED","features":[303]},{"name":"MILEFFECTSERR_EFFECTALREADYINAGRAPH","features":[303]},{"name":"MILEFFECTSERR_EFFECTHASNOCHILDREN","features":[303]},{"name":"MILEFFECTSERR_EFFECTINMORETHANONEGRAPH","features":[303]},{"name":"MILEFFECTSERR_EFFECTNOTPARTOFGROUP","features":[303]},{"name":"MILEFFECTSERR_EMPTYBOUNDS","features":[303]},{"name":"MILEFFECTSERR_NOINPUTSOURCEATTACHED","features":[303]},{"name":"MILEFFECTSERR_NOTAFFINETRANSFORM","features":[303]},{"name":"MILEFFECTSERR_OUTPUTSIZETOOLARGE","features":[303]},{"name":"MILEFFECTSERR_RESERVED","features":[303]},{"name":"MILEFFECTSERR_UNKNOWNPROPERTY","features":[303]},{"name":"MILERR_ADAPTER_NOT_FOUND","features":[303]},{"name":"MILERR_ALREADYLOCKED","features":[303]},{"name":"MILERR_ALREADY_INITIALIZED","features":[303]},{"name":"MILERR_BADNUMBER","features":[303]},{"name":"MILERR_COLORSPACE_NOT_SUPPORTED","features":[303]},{"name":"MILERR_DEVICECANNOTRENDERTEXT","features":[303]},{"name":"MILERR_DISPLAYFORMATNOTSUPPORTED","features":[303]},{"name":"MILERR_DISPLAYID_ACCESS_DENIED","features":[303]},{"name":"MILERR_DISPLAYSTATEINVALID","features":[303]},{"name":"MILERR_DXGI_ENUMERATION_OUT_OF_SYNC","features":[303]},{"name":"MILERR_GENERIC_IGNORE","features":[303]},{"name":"MILERR_GLYPHBITMAPMISSED","features":[303]},{"name":"MILERR_INSUFFICIENTBUFFER","features":[303]},{"name":"MILERR_INTERNALERROR","features":[303]},{"name":"MILERR_INVALIDCALL","features":[303]},{"name":"MILERR_MALFORMEDGLYPHCACHE","features":[303]},{"name":"MILERR_MALFORMED_GUIDELINE_DATA","features":[303]},{"name":"MILERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[303]},{"name":"MILERR_MISMATCHED_SIZE","features":[303]},{"name":"MILERR_MROW_READLOCK_FAILED","features":[303]},{"name":"MILERR_MROW_UPDATE_FAILED","features":[303]},{"name":"MILERR_NEED_RECREATE_AND_PRESENT","features":[303]},{"name":"MILERR_NONINVERTIBLEMATRIX","features":[303]},{"name":"MILERR_NOTLOCKED","features":[303]},{"name":"MILERR_NOT_QUEUING_PRESENTS","features":[303]},{"name":"MILERR_NO_HARDWARE_DEVICE","features":[303]},{"name":"MILERR_NO_REDIRECTION_SURFACE_AVAILABLE","features":[303]},{"name":"MILERR_NO_REDIRECTION_SURFACE_RETRY_LATER","features":[303]},{"name":"MILERR_OBJECTBUSY","features":[303]},{"name":"MILERR_PREFILTER_NOT_SUPPORTED","features":[303]},{"name":"MILERR_QPC_TIME_WENT_BACKWARD","features":[303]},{"name":"MILERR_QUEUED_PRESENT_NOT_SUPPORTED","features":[303]},{"name":"MILERR_REMOTING_NOT_SUPPORTED","features":[303]},{"name":"MILERR_SCANNER_FAILED","features":[303]},{"name":"MILERR_SCREENACCESSDENIED","features":[303]},{"name":"MILERR_SHADER_COMPILE_FAILED","features":[303]},{"name":"MILERR_TERMINATED","features":[303]},{"name":"MILERR_TOOMANYSHADERELEMNTS","features":[303]},{"name":"MILERR_WIN32ERROR","features":[303]},{"name":"MILERR_ZEROVECTOR","features":[303]},{"name":"MK_E_CANTOPENFILE","features":[303]},{"name":"MK_E_CONNECTMANUALLY","features":[303]},{"name":"MK_E_ENUMERATION_FAILED","features":[303]},{"name":"MK_E_EXCEEDEDDEADLINE","features":[303]},{"name":"MK_E_FIRST","features":[303]},{"name":"MK_E_INTERMEDIATEINTERFACENOTSUPPORTED","features":[303]},{"name":"MK_E_INVALIDEXTENSION","features":[303]},{"name":"MK_E_LAST","features":[303]},{"name":"MK_E_MUSTBOTHERUSER","features":[303]},{"name":"MK_E_NEEDGENERIC","features":[303]},{"name":"MK_E_NOINVERSE","features":[303]},{"name":"MK_E_NOOBJECT","features":[303]},{"name":"MK_E_NOPREFIX","features":[303]},{"name":"MK_E_NOSTORAGE","features":[303]},{"name":"MK_E_NOTBINDABLE","features":[303]},{"name":"MK_E_NOTBOUND","features":[303]},{"name":"MK_E_NO_NORMALIZED","features":[303]},{"name":"MK_E_SYNTAX","features":[303]},{"name":"MK_E_UNAVAILABLE","features":[303]},{"name":"MK_S_FIRST","features":[303]},{"name":"MK_S_HIM","features":[303]},{"name":"MK_S_LAST","features":[303]},{"name":"MK_S_ME","features":[303]},{"name":"MK_S_MONIKERALREADYREGISTERED","features":[303]},{"name":"MK_S_REDUCED_TO_SELF","features":[303]},{"name":"MK_S_US","features":[303]},{"name":"MSDTC_E_DUPLICATE_RESOURCE","features":[303]},{"name":"MSSIPOTF_E_BADVERSION","features":[303]},{"name":"MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT","features":[303]},{"name":"MSSIPOTF_E_BAD_MAGICNUMBER","features":[303]},{"name":"MSSIPOTF_E_BAD_OFFSET_TABLE","features":[303]},{"name":"MSSIPOTF_E_CANTGETOBJECT","features":[303]},{"name":"MSSIPOTF_E_CRYPT","features":[303]},{"name":"MSSIPOTF_E_DSIG_STRUCTURE","features":[303]},{"name":"MSSIPOTF_E_FAILED_HINTS_CHECK","features":[303]},{"name":"MSSIPOTF_E_FAILED_POLICY","features":[303]},{"name":"MSSIPOTF_E_FILE","features":[303]},{"name":"MSSIPOTF_E_FILETOOSMALL","features":[303]},{"name":"MSSIPOTF_E_FILE_CHECKSUM","features":[303]},{"name":"MSSIPOTF_E_NOHEADTABLE","features":[303]},{"name":"MSSIPOTF_E_NOT_OPENTYPE","features":[303]},{"name":"MSSIPOTF_E_OUTOFMEMRANGE","features":[303]},{"name":"MSSIPOTF_E_PCONST_CHECK","features":[303]},{"name":"MSSIPOTF_E_STRUCTURE","features":[303]},{"name":"MSSIPOTF_E_TABLES_OVERLAP","features":[303]},{"name":"MSSIPOTF_E_TABLE_CHECKSUM","features":[303]},{"name":"MSSIPOTF_E_TABLE_LONGWORD","features":[303]},{"name":"MSSIPOTF_E_TABLE_PADBYTES","features":[303]},{"name":"MSSIPOTF_E_TABLE_TAGORDER","features":[303]},{"name":"NAP_E_CONFLICTING_ID","features":[303]},{"name":"NAP_E_ENTITY_DISABLED","features":[303]},{"name":"NAP_E_ID_NOT_FOUND","features":[303]},{"name":"NAP_E_INVALID_PACKET","features":[303]},{"name":"NAP_E_MAXSIZE_TOO_SMALL","features":[303]},{"name":"NAP_E_MISMATCHED_ID","features":[303]},{"name":"NAP_E_MISSING_SOH","features":[303]},{"name":"NAP_E_NETSH_GROUPPOLICY_ERROR","features":[303]},{"name":"NAP_E_NOT_INITIALIZED","features":[303]},{"name":"NAP_E_NOT_PENDING","features":[303]},{"name":"NAP_E_NOT_REGISTERED","features":[303]},{"name":"NAP_E_NO_CACHED_SOH","features":[303]},{"name":"NAP_E_SERVICE_NOT_RUNNING","features":[303]},{"name":"NAP_E_SHV_CONFIG_EXISTED","features":[303]},{"name":"NAP_E_SHV_CONFIG_NOT_FOUND","features":[303]},{"name":"NAP_E_SHV_TIMEOUT","features":[303]},{"name":"NAP_E_STILL_BOUND","features":[303]},{"name":"NAP_E_TOO_MANY_CALLS","features":[303]},{"name":"NAP_S_CERT_ALREADY_PRESENT","features":[303]},{"name":"NEARPROC","features":[303]},{"name":"NOERROR","features":[303]},{"name":"NOT_AN_ERROR1","features":[303]},{"name":"NO_ERROR","features":[303]},{"name":"NTDDI_MAXVER","features":[303]},{"name":"NTE_AUTHENTICATION_IGNORED","features":[303]},{"name":"NTE_BAD_ALGID","features":[303]},{"name":"NTE_BAD_DATA","features":[303]},{"name":"NTE_BAD_FLAGS","features":[303]},{"name":"NTE_BAD_HASH","features":[303]},{"name":"NTE_BAD_HASH_STATE","features":[303]},{"name":"NTE_BAD_KEY","features":[303]},{"name":"NTE_BAD_KEYSET","features":[303]},{"name":"NTE_BAD_KEYSET_PARAM","features":[303]},{"name":"NTE_BAD_KEY_STATE","features":[303]},{"name":"NTE_BAD_LEN","features":[303]},{"name":"NTE_BAD_PROVIDER","features":[303]},{"name":"NTE_BAD_PROV_TYPE","features":[303]},{"name":"NTE_BAD_PUBLIC_KEY","features":[303]},{"name":"NTE_BAD_SIGNATURE","features":[303]},{"name":"NTE_BAD_TYPE","features":[303]},{"name":"NTE_BAD_UID","features":[303]},{"name":"NTE_BAD_VER","features":[303]},{"name":"NTE_BUFFERS_OVERLAP","features":[303]},{"name":"NTE_BUFFER_TOO_SMALL","features":[303]},{"name":"NTE_DECRYPTION_FAILURE","features":[303]},{"name":"NTE_DEVICE_NOT_FOUND","features":[303]},{"name":"NTE_DEVICE_NOT_READY","features":[303]},{"name":"NTE_DOUBLE_ENCRYPT","features":[303]},{"name":"NTE_ENCRYPTION_FAILURE","features":[303]},{"name":"NTE_EXISTS","features":[303]},{"name":"NTE_FAIL","features":[303]},{"name":"NTE_FIXEDPARAMETER","features":[303]},{"name":"NTE_HMAC_NOT_SUPPORTED","features":[303]},{"name":"NTE_INCORRECT_PASSWORD","features":[303]},{"name":"NTE_INTERNAL_ERROR","features":[303]},{"name":"NTE_INVALID_HANDLE","features":[303]},{"name":"NTE_INVALID_PARAMETER","features":[303]},{"name":"NTE_KEYSET_ENTRY_BAD","features":[303]},{"name":"NTE_KEYSET_NOT_DEF","features":[303]},{"name":"NTE_NOT_ACTIVE_CONSOLE","features":[303]},{"name":"NTE_NOT_FOUND","features":[303]},{"name":"NTE_NOT_SUPPORTED","features":[303]},{"name":"NTE_NO_KEY","features":[303]},{"name":"NTE_NO_MEMORY","features":[303]},{"name":"NTE_NO_MORE_ITEMS","features":[303]},{"name":"NTE_OP_OK","features":[303]},{"name":"NTE_PASSWORD_CHANGE_REQUIRED","features":[303]},{"name":"NTE_PERM","features":[303]},{"name":"NTE_PROVIDER_DLL_FAIL","features":[303]},{"name":"NTE_PROV_DLL_NOT_FOUND","features":[303]},{"name":"NTE_PROV_TYPE_ENTRY_BAD","features":[303]},{"name":"NTE_PROV_TYPE_NOT_DEF","features":[303]},{"name":"NTE_PROV_TYPE_NO_MATCH","features":[303]},{"name":"NTE_SIGNATURE_FILE_BAD","features":[303]},{"name":"NTE_SILENT_CONTEXT","features":[303]},{"name":"NTE_SYS_ERR","features":[303]},{"name":"NTE_TEMPORARY_PROFILE","features":[303]},{"name":"NTE_TOKEN_KEYSET_STORAGE_FULL","features":[303]},{"name":"NTE_UI_REQUIRED","features":[303]},{"name":"NTE_USER_CANCELLED","features":[303]},{"name":"NTE_VALIDATION_FAILED","features":[303]},{"name":"NTSTATUS","features":[303]},{"name":"NTSTATUS_FACILITY_CODE","features":[303]},{"name":"NTSTATUS_SEVERITY_CODE","features":[303]},{"name":"OLEOBJ_E_FIRST","features":[303]},{"name":"OLEOBJ_E_INVALIDVERB","features":[303]},{"name":"OLEOBJ_E_LAST","features":[303]},{"name":"OLEOBJ_E_NOVERBS","features":[303]},{"name":"OLEOBJ_S_CANNOT_DOVERB_NOW","features":[303]},{"name":"OLEOBJ_S_FIRST","features":[303]},{"name":"OLEOBJ_S_INVALIDHWND","features":[303]},{"name":"OLEOBJ_S_INVALIDVERB","features":[303]},{"name":"OLEOBJ_S_LAST","features":[303]},{"name":"OLE_E_ADVF","features":[303]},{"name":"OLE_E_ADVISENOTSUPPORTED","features":[303]},{"name":"OLE_E_BLANK","features":[303]},{"name":"OLE_E_CANTCONVERT","features":[303]},{"name":"OLE_E_CANT_BINDTOSOURCE","features":[303]},{"name":"OLE_E_CANT_GETMONIKER","features":[303]},{"name":"OLE_E_CLASSDIFF","features":[303]},{"name":"OLE_E_ENUM_NOMORE","features":[303]},{"name":"OLE_E_FIRST","features":[303]},{"name":"OLE_E_INVALIDHWND","features":[303]},{"name":"OLE_E_INVALIDRECT","features":[303]},{"name":"OLE_E_LAST","features":[303]},{"name":"OLE_E_NOCACHE","features":[303]},{"name":"OLE_E_NOCONNECTION","features":[303]},{"name":"OLE_E_NOSTORAGE","features":[303]},{"name":"OLE_E_NOTRUNNING","features":[303]},{"name":"OLE_E_NOT_INPLACEACTIVE","features":[303]},{"name":"OLE_E_OLEVERB","features":[303]},{"name":"OLE_E_PROMPTSAVECANCELLED","features":[303]},{"name":"OLE_E_STATIC","features":[303]},{"name":"OLE_E_WRONGCOMPOBJ","features":[303]},{"name":"OLE_S_FIRST","features":[303]},{"name":"OLE_S_LAST","features":[303]},{"name":"OLE_S_MAC_CLIPFORMAT","features":[303]},{"name":"OLE_S_STATIC","features":[303]},{"name":"OLE_S_USEREG","features":[303]},{"name":"ONL_CONNECTION_COUNT_LIMIT","features":[303]},{"name":"ONL_E_ACCESS_DENIED_BY_TOU","features":[303]},{"name":"ONL_E_ACCOUNT_LOCKED","features":[303]},{"name":"ONL_E_ACCOUNT_SUSPENDED_ABUSE","features":[303]},{"name":"ONL_E_ACCOUNT_SUSPENDED_COMPROIMISE","features":[303]},{"name":"ONL_E_ACCOUNT_UPDATE_REQUIRED","features":[303]},{"name":"ONL_E_ACTION_REQUIRED","features":[303]},{"name":"ONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT","features":[303]},{"name":"ONL_E_EMAIL_VERIFICATION_REQUIRED","features":[303]},{"name":"ONL_E_FORCESIGNIN","features":[303]},{"name":"ONL_E_INVALID_APPLICATION","features":[303]},{"name":"ONL_E_INVALID_AUTHENTICATION_TARGET","features":[303]},{"name":"ONL_E_PARENTAL_CONSENT_REQUIRED","features":[303]},{"name":"ONL_E_PASSWORD_UPDATE_REQUIRED","features":[303]},{"name":"ONL_E_REQUEST_THROTTLED","features":[303]},{"name":"ONL_E_USER_AUTHENTICATION_REQUIRED","features":[303]},{"name":"OR_INVALID_OID","features":[303]},{"name":"OR_INVALID_OXID","features":[303]},{"name":"OR_INVALID_SET","features":[303]},{"name":"OSS_ACCESS_SERIALIZATION_ERROR","features":[303]},{"name":"OSS_API_DLL_NOT_LINKED","features":[303]},{"name":"OSS_BAD_ARG","features":[303]},{"name":"OSS_BAD_ENCRULES","features":[303]},{"name":"OSS_BAD_PTR","features":[303]},{"name":"OSS_BAD_TABLE","features":[303]},{"name":"OSS_BAD_TIME","features":[303]},{"name":"OSS_BAD_VERSION","features":[303]},{"name":"OSS_BERDER_DLL_NOT_LINKED","features":[303]},{"name":"OSS_CANT_CLOSE_TRACE_FILE","features":[303]},{"name":"OSS_CANT_OPEN_TRACE_FILE","features":[303]},{"name":"OSS_CANT_OPEN_TRACE_WINDOW","features":[303]},{"name":"OSS_COMPARATOR_CODE_NOT_LINKED","features":[303]},{"name":"OSS_COMPARATOR_DLL_NOT_LINKED","features":[303]},{"name":"OSS_CONSTRAINT_DLL_NOT_LINKED","features":[303]},{"name":"OSS_CONSTRAINT_VIOLATED","features":[303]},{"name":"OSS_COPIER_DLL_NOT_LINKED","features":[303]},{"name":"OSS_DATA_ERROR","features":[303]},{"name":"OSS_FATAL_ERROR","features":[303]},{"name":"OSS_INDEFINITE_NOT_SUPPORTED","features":[303]},{"name":"OSS_LIMITED","features":[303]},{"name":"OSS_MEM_ERROR","features":[303]},{"name":"OSS_MEM_MGR_DLL_NOT_LINKED","features":[303]},{"name":"OSS_MORE_BUF","features":[303]},{"name":"OSS_MORE_INPUT","features":[303]},{"name":"OSS_MUTEX_NOT_CREATED","features":[303]},{"name":"OSS_NEGATIVE_UINTEGER","features":[303]},{"name":"OSS_NULL_FCN","features":[303]},{"name":"OSS_NULL_TBL","features":[303]},{"name":"OSS_OID_DLL_NOT_LINKED","features":[303]},{"name":"OSS_OPEN_TYPE_ERROR","features":[303]},{"name":"OSS_OUT_MEMORY","features":[303]},{"name":"OSS_OUT_OF_RANGE","features":[303]},{"name":"OSS_PDU_MISMATCH","features":[303]},{"name":"OSS_PDU_RANGE","features":[303]},{"name":"OSS_PDV_CODE_NOT_LINKED","features":[303]},{"name":"OSS_PDV_DLL_NOT_LINKED","features":[303]},{"name":"OSS_PER_DLL_NOT_LINKED","features":[303]},{"name":"OSS_REAL_CODE_NOT_LINKED","features":[303]},{"name":"OSS_REAL_DLL_NOT_LINKED","features":[303]},{"name":"OSS_TABLE_MISMATCH","features":[303]},{"name":"OSS_TOO_LONG","features":[303]},{"name":"OSS_TRACE_FILE_ALREADY_OPEN","features":[303]},{"name":"OSS_TYPE_NOT_SUPPORTED","features":[303]},{"name":"OSS_UNAVAIL_ENCRULES","features":[303]},{"name":"OSS_UNIMPLEMENTED","features":[303]},{"name":"PAPCFUNC","features":[303]},{"name":"PEERDIST_ERROR_ALREADY_COMPLETED","features":[303]},{"name":"PEERDIST_ERROR_ALREADY_EXISTS","features":[303]},{"name":"PEERDIST_ERROR_ALREADY_INITIALIZED","features":[303]},{"name":"PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO","features":[303]},{"name":"PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED","features":[303]},{"name":"PEERDIST_ERROR_INVALIDATED","features":[303]},{"name":"PEERDIST_ERROR_INVALID_CONFIGURATION","features":[303]},{"name":"PEERDIST_ERROR_MISSING_DATA","features":[303]},{"name":"PEERDIST_ERROR_NOT_INITIALIZED","features":[303]},{"name":"PEERDIST_ERROR_NOT_LICENSED","features":[303]},{"name":"PEERDIST_ERROR_NO_MORE","features":[303]},{"name":"PEERDIST_ERROR_OPERATION_NOTFOUND","features":[303]},{"name":"PEERDIST_ERROR_OUT_OF_BOUNDS","features":[303]},{"name":"PEERDIST_ERROR_SERVICE_UNAVAILABLE","features":[303]},{"name":"PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS","features":[303]},{"name":"PEERDIST_ERROR_TRUST_FAILURE","features":[303]},{"name":"PEERDIST_ERROR_VERSION_UNSUPPORTED","features":[303]},{"name":"PEER_E_ALREADY_LISTENING","features":[303]},{"name":"PEER_E_CANNOT_CONVERT_PEER_NAME","features":[303]},{"name":"PEER_E_CANNOT_START_SERVICE","features":[303]},{"name":"PEER_E_CERT_STORE_CORRUPTED","features":[303]},{"name":"PEER_E_CHAIN_TOO_LONG","features":[303]},{"name":"PEER_E_CIRCULAR_CHAIN_DETECTED","features":[303]},{"name":"PEER_E_CLASSIFIER_TOO_LONG","features":[303]},{"name":"PEER_E_CLOUD_NAME_AMBIGUOUS","features":[303]},{"name":"PEER_E_CONNECTION_FAILED","features":[303]},{"name":"PEER_E_CONNECTION_NOT_AUTHENTICATED","features":[303]},{"name":"PEER_E_CONNECTION_NOT_FOUND","features":[303]},{"name":"PEER_E_CONNECTION_REFUSED","features":[303]},{"name":"PEER_E_CONNECT_SELF","features":[303]},{"name":"PEER_E_CONTACT_NOT_FOUND","features":[303]},{"name":"PEER_E_DATABASE_ACCESSDENIED","features":[303]},{"name":"PEER_E_DATABASE_ALREADY_PRESENT","features":[303]},{"name":"PEER_E_DATABASE_NOT_PRESENT","features":[303]},{"name":"PEER_E_DBINITIALIZATION_FAILED","features":[303]},{"name":"PEER_E_DBNAME_CHANGED","features":[303]},{"name":"PEER_E_DEFERRED_VALIDATION","features":[303]},{"name":"PEER_E_DUPLICATE_GRAPH","features":[303]},{"name":"PEER_E_EVENT_HANDLE_NOT_FOUND","features":[303]},{"name":"PEER_E_FW_BLOCKED_BY_POLICY","features":[303]},{"name":"PEER_E_FW_BLOCKED_BY_SHIELDS_UP","features":[303]},{"name":"PEER_E_FW_DECLINED","features":[303]},{"name":"PEER_E_FW_EXCEPTION_DISABLED","features":[303]},{"name":"PEER_E_GRAPH_IN_USE","features":[303]},{"name":"PEER_E_GRAPH_NOT_READY","features":[303]},{"name":"PEER_E_GRAPH_SHUTTING_DOWN","features":[303]},{"name":"PEER_E_GROUPS_EXIST","features":[303]},{"name":"PEER_E_GROUP_IN_USE","features":[303]},{"name":"PEER_E_GROUP_NOT_READY","features":[303]},{"name":"PEER_E_IDENTITY_DELETED","features":[303]},{"name":"PEER_E_IDENTITY_NOT_FOUND","features":[303]},{"name":"PEER_E_INVALID_ADDRESS","features":[303]},{"name":"PEER_E_INVALID_ATTRIBUTES","features":[303]},{"name":"PEER_E_INVALID_CLASSIFIER","features":[303]},{"name":"PEER_E_INVALID_CLASSIFIER_PROPERTY","features":[303]},{"name":"PEER_E_INVALID_CREDENTIAL","features":[303]},{"name":"PEER_E_INVALID_CREDENTIAL_INFO","features":[303]},{"name":"PEER_E_INVALID_DATABASE","features":[303]},{"name":"PEER_E_INVALID_FRIENDLY_NAME","features":[303]},{"name":"PEER_E_INVALID_GRAPH","features":[303]},{"name":"PEER_E_INVALID_GROUP","features":[303]},{"name":"PEER_E_INVALID_GROUP_PROPERTIES","features":[303]},{"name":"PEER_E_INVALID_PEER_HOST_NAME","features":[303]},{"name":"PEER_E_INVALID_PEER_NAME","features":[303]},{"name":"PEER_E_INVALID_RECORD","features":[303]},{"name":"PEER_E_INVALID_RECORD_EXPIRATION","features":[303]},{"name":"PEER_E_INVALID_RECORD_SIZE","features":[303]},{"name":"PEER_E_INVALID_ROLE_PROPERTY","features":[303]},{"name":"PEER_E_INVALID_SEARCH","features":[303]},{"name":"PEER_E_INVALID_TIME_PERIOD","features":[303]},{"name":"PEER_E_INVITATION_NOT_TRUSTED","features":[303]},{"name":"PEER_E_INVITE_CANCELLED","features":[303]},{"name":"PEER_E_INVITE_RESPONSE_NOT_AVAILABLE","features":[303]},{"name":"PEER_E_IPV6_NOT_INSTALLED","features":[303]},{"name":"PEER_E_MAX_RECORD_SIZE_EXCEEDED","features":[303]},{"name":"PEER_E_NODE_NOT_FOUND","features":[303]},{"name":"PEER_E_NOT_AUTHORIZED","features":[303]},{"name":"PEER_E_NOT_INITIALIZED","features":[303]},{"name":"PEER_E_NOT_LICENSED","features":[303]},{"name":"PEER_E_NOT_SIGNED_IN","features":[303]},{"name":"PEER_E_NO_CLOUD","features":[303]},{"name":"PEER_E_NO_KEY_ACCESS","features":[303]},{"name":"PEER_E_NO_MEMBERS_FOUND","features":[303]},{"name":"PEER_E_NO_MEMBER_CONNECTIONS","features":[303]},{"name":"PEER_E_NO_MORE","features":[303]},{"name":"PEER_E_PASSWORD_DOES_NOT_MEET_POLICY","features":[303]},{"name":"PEER_E_PNRP_DUPLICATE_PEER_NAME","features":[303]},{"name":"PEER_E_PRIVACY_DECLINED","features":[303]},{"name":"PEER_E_RECORD_NOT_FOUND","features":[303]},{"name":"PEER_E_SERVICE_NOT_AVAILABLE","features":[303]},{"name":"PEER_E_TIMEOUT","features":[303]},{"name":"PEER_E_TOO_MANY_ATTRIBUTES","features":[303]},{"name":"PEER_E_TOO_MANY_IDENTITIES","features":[303]},{"name":"PEER_E_UNABLE_TO_LISTEN","features":[303]},{"name":"PEER_E_UNSUPPORTED_VERSION","features":[303]},{"name":"PEER_S_ALREADY_A_MEMBER","features":[303]},{"name":"PEER_S_ALREADY_CONNECTED","features":[303]},{"name":"PEER_S_GRAPH_DATA_CREATED","features":[303]},{"name":"PEER_S_NO_CONNECTIVITY","features":[303]},{"name":"PEER_S_NO_EVENT_DATA","features":[303]},{"name":"PEER_S_SUBSCRIPTION_EXISTS","features":[303]},{"name":"PERSIST_E_NOTSELFSIZING","features":[303]},{"name":"PERSIST_E_SIZEDEFINITE","features":[303]},{"name":"PERSIST_E_SIZEINDEFINITE","features":[303]},{"name":"PLA_E_CABAPI_FAILURE","features":[303]},{"name":"PLA_E_CONFLICT_INCL_EXCL_API","features":[303]},{"name":"PLA_E_CREDENTIALS_REQUIRED","features":[303]},{"name":"PLA_E_DCS_ALREADY_EXISTS","features":[303]},{"name":"PLA_E_DCS_IN_USE","features":[303]},{"name":"PLA_E_DCS_NOT_FOUND","features":[303]},{"name":"PLA_E_DCS_NOT_RUNNING","features":[303]},{"name":"PLA_E_DCS_SINGLETON_REQUIRED","features":[303]},{"name":"PLA_E_DCS_START_WAIT_TIMEOUT","features":[303]},{"name":"PLA_E_DC_ALREADY_EXISTS","features":[303]},{"name":"PLA_E_DC_START_WAIT_TIMEOUT","features":[303]},{"name":"PLA_E_EXE_ALREADY_CONFIGURED","features":[303]},{"name":"PLA_E_EXE_FULL_PATH_REQUIRED","features":[303]},{"name":"PLA_E_EXE_PATH_NOT_VALID","features":[303]},{"name":"PLA_E_INVALID_SESSION_NAME","features":[303]},{"name":"PLA_E_NETWORK_EXE_NOT_VALID","features":[303]},{"name":"PLA_E_NO_DUPLICATES","features":[303]},{"name":"PLA_E_NO_MIN_DISK","features":[303]},{"name":"PLA_E_PLA_CHANNEL_NOT_ENABLED","features":[303]},{"name":"PLA_E_PROPERTY_CONFLICT","features":[303]},{"name":"PLA_E_REPORT_WAIT_TIMEOUT","features":[303]},{"name":"PLA_E_RULES_MANAGER_FAILED","features":[303]},{"name":"PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED","features":[303]},{"name":"PLA_E_TOO_MANY_FOLDERS","features":[303]},{"name":"PLA_S_PROPERTY_IGNORED","features":[303]},{"name":"POINT","features":[303]},{"name":"POINTL","features":[303]},{"name":"POINTS","features":[303]},{"name":"PRESENTATION_ERROR_LOST","features":[303]},{"name":"PROC","features":[303]},{"name":"PSID","features":[303]},{"name":"PSINK_E_INDEX_ONLY","features":[303]},{"name":"PSINK_E_LARGE_ATTACHMENT","features":[303]},{"name":"PSINK_E_QUERY_ONLY","features":[303]},{"name":"PSINK_S_LARGE_WORD","features":[303]},{"name":"PSTR","features":[303]},{"name":"PWSTR","features":[303]},{"name":"QPARSE_E_EXPECTING_BRACE","features":[303]},{"name":"QPARSE_E_EXPECTING_COMMA","features":[303]},{"name":"QPARSE_E_EXPECTING_CURRENCY","features":[303]},{"name":"QPARSE_E_EXPECTING_DATE","features":[303]},{"name":"QPARSE_E_EXPECTING_EOS","features":[303]},{"name":"QPARSE_E_EXPECTING_GUID","features":[303]},{"name":"QPARSE_E_EXPECTING_INTEGER","features":[303]},{"name":"QPARSE_E_EXPECTING_PAREN","features":[303]},{"name":"QPARSE_E_EXPECTING_PHRASE","features":[303]},{"name":"QPARSE_E_EXPECTING_PROPERTY","features":[303]},{"name":"QPARSE_E_EXPECTING_REAL","features":[303]},{"name":"QPARSE_E_EXPECTING_REGEX","features":[303]},{"name":"QPARSE_E_EXPECTING_REGEX_PROPERTY","features":[303]},{"name":"QPARSE_E_INVALID_GROUPING","features":[303]},{"name":"QPARSE_E_INVALID_LITERAL","features":[303]},{"name":"QPARSE_E_INVALID_QUERY","features":[303]},{"name":"QPARSE_E_INVALID_RANKMETHOD","features":[303]},{"name":"QPARSE_E_INVALID_SORT_ORDER","features":[303]},{"name":"QPARSE_E_NOT_YET_IMPLEMENTED","features":[303]},{"name":"QPARSE_E_NO_SUCH_PROPERTY","features":[303]},{"name":"QPARSE_E_NO_SUCH_SORT_PROPERTY","features":[303]},{"name":"QPARSE_E_UNEXPECTED_EOS","features":[303]},{"name":"QPARSE_E_UNEXPECTED_NOT","features":[303]},{"name":"QPARSE_E_UNSUPPORTED_PROPERTY_TYPE","features":[303]},{"name":"QPARSE_E_WEIGHT_OUT_OF_RANGE","features":[303]},{"name":"QPLIST_E_BAD_GUID","features":[303]},{"name":"QPLIST_E_BYREF_USED_WITHOUT_PTRTYPE","features":[303]},{"name":"QPLIST_E_CANT_OPEN_FILE","features":[303]},{"name":"QPLIST_E_CANT_SET_PROPERTY","features":[303]},{"name":"QPLIST_E_DUPLICATE","features":[303]},{"name":"QPLIST_E_EXPECTING_CLOSE_PAREN","features":[303]},{"name":"QPLIST_E_EXPECTING_GUID","features":[303]},{"name":"QPLIST_E_EXPECTING_INTEGER","features":[303]},{"name":"QPLIST_E_EXPECTING_NAME","features":[303]},{"name":"QPLIST_E_EXPECTING_PROP_SPEC","features":[303]},{"name":"QPLIST_E_EXPECTING_TYPE","features":[303]},{"name":"QPLIST_E_READ_ERROR","features":[303]},{"name":"QPLIST_E_UNRECOGNIZED_TYPE","features":[303]},{"name":"QPLIST_E_VECTORBYREF_USED_ALONE","features":[303]},{"name":"QPLIST_S_DUPLICATE","features":[303]},{"name":"QUERY_E_ALLNOISE","features":[303]},{"name":"QUERY_E_DIR_ON_REMOVABLE_DRIVE","features":[303]},{"name":"QUERY_E_DUPLICATE_OUTPUT_COLUMN","features":[303]},{"name":"QUERY_E_FAILED","features":[303]},{"name":"QUERY_E_INVALIDCATEGORIZE","features":[303]},{"name":"QUERY_E_INVALIDQUERY","features":[303]},{"name":"QUERY_E_INVALIDRESTRICTION","features":[303]},{"name":"QUERY_E_INVALIDSORT","features":[303]},{"name":"QUERY_E_INVALID_DIRECTORY","features":[303]},{"name":"QUERY_E_INVALID_OUTPUT_COLUMN","features":[303]},{"name":"QUERY_E_TIMEDOUT","features":[303]},{"name":"QUERY_E_TOOCOMPLEX","features":[303]},{"name":"QUERY_S_NO_QUERY","features":[303]},{"name":"QUTIL_E_CANT_CONVERT_VROOT","features":[303]},{"name":"QUTIL_E_INVALID_CODEPAGE","features":[303]},{"name":"RECT","features":[303]},{"name":"RECTL","features":[303]},{"name":"REGDB_E_BADTHREADINGMODEL","features":[303]},{"name":"REGDB_E_CLASSNOTREG","features":[303]},{"name":"REGDB_E_FIRST","features":[303]},{"name":"REGDB_E_IIDNOTREG","features":[303]},{"name":"REGDB_E_INVALIDVALUE","features":[303]},{"name":"REGDB_E_KEYMISSING","features":[303]},{"name":"REGDB_E_LAST","features":[303]},{"name":"REGDB_E_PACKAGEPOLICYVIOLATION","features":[303]},{"name":"REGDB_E_READREGDB","features":[303]},{"name":"REGDB_E_WRITEREGDB","features":[303]},{"name":"REGDB_S_FIRST","features":[303]},{"name":"REGDB_S_LAST","features":[303]},{"name":"ROUTEBASE","features":[303]},{"name":"ROUTEBASEEND","features":[303]},{"name":"RO_E_BLOCKED_CROSS_ASTA_CALL","features":[303]},{"name":"RO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER","features":[303]},{"name":"RO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER","features":[303]},{"name":"RO_E_CHANGE_NOTIFICATION_IN_PROGRESS","features":[303]},{"name":"RO_E_CLOSED","features":[303]},{"name":"RO_E_COMMITTED","features":[303]},{"name":"RO_E_ERROR_STRING_NOT_FOUND","features":[303]},{"name":"RO_E_EXCLUSIVE_WRITE","features":[303]},{"name":"RO_E_INVALID_METADATA_FILE","features":[303]},{"name":"RO_E_METADATA_INVALID_TYPE_FORMAT","features":[303]},{"name":"RO_E_METADATA_NAME_IS_NAMESPACE","features":[303]},{"name":"RO_E_METADATA_NAME_NOT_FOUND","features":[303]},{"name":"RO_E_MUST_BE_AGILE","features":[303]},{"name":"RO_E_UNSUPPORTED_FROM_MTA","features":[303]},{"name":"RPC_E_ACCESS_DENIED","features":[303]},{"name":"RPC_E_ATTEMPTED_MULTITHREAD","features":[303]},{"name":"RPC_E_CALL_CANCELED","features":[303]},{"name":"RPC_E_CALL_COMPLETE","features":[303]},{"name":"RPC_E_CALL_REJECTED","features":[303]},{"name":"RPC_E_CANTCALLOUT_AGAIN","features":[303]},{"name":"RPC_E_CANTCALLOUT_INASYNCCALL","features":[303]},{"name":"RPC_E_CANTCALLOUT_INEXTERNALCALL","features":[303]},{"name":"RPC_E_CANTCALLOUT_ININPUTSYNCCALL","features":[303]},{"name":"RPC_E_CANTPOST_INSENDCALL","features":[303]},{"name":"RPC_E_CANTTRANSMIT_CALL","features":[303]},{"name":"RPC_E_CHANGED_MODE","features":[303]},{"name":"RPC_E_CLIENT_CANTMARSHAL_DATA","features":[303]},{"name":"RPC_E_CLIENT_CANTUNMARSHAL_DATA","features":[303]},{"name":"RPC_E_CLIENT_DIED","features":[303]},{"name":"RPC_E_CONNECTION_TERMINATED","features":[303]},{"name":"RPC_E_DISCONNECTED","features":[303]},{"name":"RPC_E_FAULT","features":[303]},{"name":"RPC_E_FULLSIC_REQUIRED","features":[303]},{"name":"RPC_E_INVALIDMETHOD","features":[303]},{"name":"RPC_E_INVALID_CALLDATA","features":[303]},{"name":"RPC_E_INVALID_DATA","features":[303]},{"name":"RPC_E_INVALID_DATAPACKET","features":[303]},{"name":"RPC_E_INVALID_EXTENSION","features":[303]},{"name":"RPC_E_INVALID_HEADER","features":[303]},{"name":"RPC_E_INVALID_IPID","features":[303]},{"name":"RPC_E_INVALID_OBJECT","features":[303]},{"name":"RPC_E_INVALID_OBJREF","features":[303]},{"name":"RPC_E_INVALID_PARAMETER","features":[303]},{"name":"RPC_E_INVALID_STD_NAME","features":[303]},{"name":"RPC_E_NOT_REGISTERED","features":[303]},{"name":"RPC_E_NO_CONTEXT","features":[303]},{"name":"RPC_E_NO_GOOD_SECURITY_PACKAGES","features":[303]},{"name":"RPC_E_NO_SYNC","features":[303]},{"name":"RPC_E_OUT_OF_RESOURCES","features":[303]},{"name":"RPC_E_REMOTE_DISABLED","features":[303]},{"name":"RPC_E_RETRY","features":[303]},{"name":"RPC_E_SERVERCALL_REJECTED","features":[303]},{"name":"RPC_E_SERVERCALL_RETRYLATER","features":[303]},{"name":"RPC_E_SERVERFAULT","features":[303]},{"name":"RPC_E_SERVER_CANTMARSHAL_DATA","features":[303]},{"name":"RPC_E_SERVER_CANTUNMARSHAL_DATA","features":[303]},{"name":"RPC_E_SERVER_DIED","features":[303]},{"name":"RPC_E_SERVER_DIED_DNE","features":[303]},{"name":"RPC_E_SYS_CALL_FAILED","features":[303]},{"name":"RPC_E_THREAD_NOT_INIT","features":[303]},{"name":"RPC_E_TIMEOUT","features":[303]},{"name":"RPC_E_TOO_LATE","features":[303]},{"name":"RPC_E_UNEXPECTED","features":[303]},{"name":"RPC_E_UNSECURE_CALL","features":[303]},{"name":"RPC_E_VERSION_MISMATCH","features":[303]},{"name":"RPC_E_WRONG_THREAD","features":[303]},{"name":"RPC_NT_ADDRESS_ERROR","features":[303]},{"name":"RPC_NT_ALREADY_LISTENING","features":[303]},{"name":"RPC_NT_ALREADY_REGISTERED","features":[303]},{"name":"RPC_NT_BAD_STUB_DATA","features":[303]},{"name":"RPC_NT_BINDING_HAS_NO_AUTH","features":[303]},{"name":"RPC_NT_BINDING_INCOMPLETE","features":[303]},{"name":"RPC_NT_BYTE_COUNT_TOO_SMALL","features":[303]},{"name":"RPC_NT_CALL_CANCELLED","features":[303]},{"name":"RPC_NT_CALL_FAILED","features":[303]},{"name":"RPC_NT_CALL_FAILED_DNE","features":[303]},{"name":"RPC_NT_CALL_IN_PROGRESS","features":[303]},{"name":"RPC_NT_CANNOT_SUPPORT","features":[303]},{"name":"RPC_NT_CANT_CREATE_ENDPOINT","features":[303]},{"name":"RPC_NT_COMM_FAILURE","features":[303]},{"name":"RPC_NT_COOKIE_AUTH_FAILED","features":[303]},{"name":"RPC_NT_DUPLICATE_ENDPOINT","features":[303]},{"name":"RPC_NT_ENTRY_ALREADY_EXISTS","features":[303]},{"name":"RPC_NT_ENTRY_NOT_FOUND","features":[303]},{"name":"RPC_NT_ENUM_VALUE_OUT_OF_RANGE","features":[303]},{"name":"RPC_NT_FP_DIV_ZERO","features":[303]},{"name":"RPC_NT_FP_OVERFLOW","features":[303]},{"name":"RPC_NT_FP_UNDERFLOW","features":[303]},{"name":"RPC_NT_GROUP_MEMBER_NOT_FOUND","features":[303]},{"name":"RPC_NT_INCOMPLETE_NAME","features":[303]},{"name":"RPC_NT_INTERFACE_NOT_FOUND","features":[303]},{"name":"RPC_NT_INTERNAL_ERROR","features":[303]},{"name":"RPC_NT_INVALID_ASYNC_CALL","features":[303]},{"name":"RPC_NT_INVALID_ASYNC_HANDLE","features":[303]},{"name":"RPC_NT_INVALID_AUTH_IDENTITY","features":[303]},{"name":"RPC_NT_INVALID_BINDING","features":[303]},{"name":"RPC_NT_INVALID_BOUND","features":[303]},{"name":"RPC_NT_INVALID_ENDPOINT_FORMAT","features":[303]},{"name":"RPC_NT_INVALID_ES_ACTION","features":[303]},{"name":"RPC_NT_INVALID_NAF_ID","features":[303]},{"name":"RPC_NT_INVALID_NAME_SYNTAX","features":[303]},{"name":"RPC_NT_INVALID_NETWORK_OPTIONS","features":[303]},{"name":"RPC_NT_INVALID_NET_ADDR","features":[303]},{"name":"RPC_NT_INVALID_OBJECT","features":[303]},{"name":"RPC_NT_INVALID_PIPE_OBJECT","features":[303]},{"name":"RPC_NT_INVALID_PIPE_OPERATION","features":[303]},{"name":"RPC_NT_INVALID_RPC_PROTSEQ","features":[303]},{"name":"RPC_NT_INVALID_STRING_BINDING","features":[303]},{"name":"RPC_NT_INVALID_STRING_UUID","features":[303]},{"name":"RPC_NT_INVALID_TAG","features":[303]},{"name":"RPC_NT_INVALID_TIMEOUT","features":[303]},{"name":"RPC_NT_INVALID_VERS_OPTION","features":[303]},{"name":"RPC_NT_MAX_CALLS_TOO_SMALL","features":[303]},{"name":"RPC_NT_NAME_SERVICE_UNAVAILABLE","features":[303]},{"name":"RPC_NT_NOTHING_TO_EXPORT","features":[303]},{"name":"RPC_NT_NOT_ALL_OBJS_UNEXPORTED","features":[303]},{"name":"RPC_NT_NOT_CANCELLED","features":[303]},{"name":"RPC_NT_NOT_LISTENING","features":[303]},{"name":"RPC_NT_NOT_RPC_ERROR","features":[303]},{"name":"RPC_NT_NO_BINDINGS","features":[303]},{"name":"RPC_NT_NO_CALL_ACTIVE","features":[303]},{"name":"RPC_NT_NO_CONTEXT_AVAILABLE","features":[303]},{"name":"RPC_NT_NO_ENDPOINT_FOUND","features":[303]},{"name":"RPC_NT_NO_ENTRY_NAME","features":[303]},{"name":"RPC_NT_NO_INTERFACES","features":[303]},{"name":"RPC_NT_NO_MORE_BINDINGS","features":[303]},{"name":"RPC_NT_NO_MORE_ENTRIES","features":[303]},{"name":"RPC_NT_NO_MORE_MEMBERS","features":[303]},{"name":"RPC_NT_NO_PRINC_NAME","features":[303]},{"name":"RPC_NT_NO_PROTSEQS","features":[303]},{"name":"RPC_NT_NO_PROTSEQS_REGISTERED","features":[303]},{"name":"RPC_NT_NULL_REF_POINTER","features":[303]},{"name":"RPC_NT_OBJECT_NOT_FOUND","features":[303]},{"name":"RPC_NT_OUT_OF_RESOURCES","features":[303]},{"name":"RPC_NT_PIPE_CLOSED","features":[303]},{"name":"RPC_NT_PIPE_DISCIPLINE_ERROR","features":[303]},{"name":"RPC_NT_PIPE_EMPTY","features":[303]},{"name":"RPC_NT_PROCNUM_OUT_OF_RANGE","features":[303]},{"name":"RPC_NT_PROTOCOL_ERROR","features":[303]},{"name":"RPC_NT_PROTSEQ_NOT_FOUND","features":[303]},{"name":"RPC_NT_PROTSEQ_NOT_SUPPORTED","features":[303]},{"name":"RPC_NT_PROXY_ACCESS_DENIED","features":[303]},{"name":"RPC_NT_SEC_PKG_ERROR","features":[303]},{"name":"RPC_NT_SEND_INCOMPLETE","features":[303]},{"name":"RPC_NT_SERVER_TOO_BUSY","features":[303]},{"name":"RPC_NT_SERVER_UNAVAILABLE","features":[303]},{"name":"RPC_NT_SS_CANNOT_GET_CALL_HANDLE","features":[303]},{"name":"RPC_NT_SS_CHAR_TRANS_OPEN_FAIL","features":[303]},{"name":"RPC_NT_SS_CHAR_TRANS_SHORT_FILE","features":[303]},{"name":"RPC_NT_SS_CONTEXT_DAMAGED","features":[303]},{"name":"RPC_NT_SS_CONTEXT_MISMATCH","features":[303]},{"name":"RPC_NT_SS_HANDLES_MISMATCH","features":[303]},{"name":"RPC_NT_SS_IN_NULL_CONTEXT","features":[303]},{"name":"RPC_NT_STRING_TOO_LONG","features":[303]},{"name":"RPC_NT_TYPE_ALREADY_REGISTERED","features":[303]},{"name":"RPC_NT_UNKNOWN_AUTHN_LEVEL","features":[303]},{"name":"RPC_NT_UNKNOWN_AUTHN_SERVICE","features":[303]},{"name":"RPC_NT_UNKNOWN_AUTHN_TYPE","features":[303]},{"name":"RPC_NT_UNKNOWN_AUTHZ_SERVICE","features":[303]},{"name":"RPC_NT_UNKNOWN_IF","features":[303]},{"name":"RPC_NT_UNKNOWN_MGR_TYPE","features":[303]},{"name":"RPC_NT_UNSUPPORTED_AUTHN_LEVEL","features":[303]},{"name":"RPC_NT_UNSUPPORTED_NAME_SYNTAX","features":[303]},{"name":"RPC_NT_UNSUPPORTED_TRANS_SYN","features":[303]},{"name":"RPC_NT_UNSUPPORTED_TYPE","features":[303]},{"name":"RPC_NT_UUID_LOCAL_ONLY","features":[303]},{"name":"RPC_NT_UUID_NO_ADDRESS","features":[303]},{"name":"RPC_NT_WRONG_ES_VERSION","features":[303]},{"name":"RPC_NT_WRONG_KIND_OF_BINDING","features":[303]},{"name":"RPC_NT_WRONG_PIPE_VERSION","features":[303]},{"name":"RPC_NT_WRONG_STUB_VERSION","features":[303]},{"name":"RPC_NT_ZERO_DIVIDE","features":[303]},{"name":"RPC_S_ACCESS_DENIED","features":[303]},{"name":"RPC_S_ASYNC_CALL_PENDING","features":[303]},{"name":"RPC_S_BUFFER_TOO_SMALL","features":[303]},{"name":"RPC_S_CALLPENDING","features":[303]},{"name":"RPC_S_INVALID_ARG","features":[303]},{"name":"RPC_S_INVALID_LEVEL","features":[303]},{"name":"RPC_S_INVALID_SECURITY_DESC","features":[303]},{"name":"RPC_S_NOT_ENOUGH_QUOTA","features":[303]},{"name":"RPC_S_OUT_OF_MEMORY","features":[303]},{"name":"RPC_S_OUT_OF_THREADS","features":[303]},{"name":"RPC_S_SERVER_OUT_OF_MEMORY","features":[303]},{"name":"RPC_S_UNKNOWN_PRINCIPAL","features":[303]},{"name":"RPC_S_WAITONTIMER","features":[303]},{"name":"RPC_X_BAD_STUB_DATA","features":[303]},{"name":"RPC_X_BYTE_COUNT_TOO_SMALL","features":[303]},{"name":"RPC_X_ENUM_VALUE_OUT_OF_RANGE","features":[303]},{"name":"RPC_X_ENUM_VALUE_TOO_LARGE","features":[303]},{"name":"RPC_X_INVALID_BOUND","features":[303]},{"name":"RPC_X_INVALID_BUFFER","features":[303]},{"name":"RPC_X_INVALID_ES_ACTION","features":[303]},{"name":"RPC_X_INVALID_PIPE_OBJECT","features":[303]},{"name":"RPC_X_INVALID_PIPE_OPERATION","features":[303]},{"name":"RPC_X_INVALID_TAG","features":[303]},{"name":"RPC_X_NO_MEMORY","features":[303]},{"name":"RPC_X_NO_MORE_ENTRIES","features":[303]},{"name":"RPC_X_NULL_REF_POINTER","features":[303]},{"name":"RPC_X_PIPE_APP_MEMORY","features":[303]},{"name":"RPC_X_PIPE_CLOSED","features":[303]},{"name":"RPC_X_PIPE_DISCIPLINE_ERROR","features":[303]},{"name":"RPC_X_PIPE_EMPTY","features":[303]},{"name":"RPC_X_SS_CANNOT_GET_CALL_HANDLE","features":[303]},{"name":"RPC_X_SS_CHAR_TRANS_OPEN_FAIL","features":[303]},{"name":"RPC_X_SS_CHAR_TRANS_SHORT_FILE","features":[303]},{"name":"RPC_X_SS_CONTEXT_DAMAGED","features":[303]},{"name":"RPC_X_SS_CONTEXT_MISMATCH","features":[303]},{"name":"RPC_X_SS_HANDLES_MISMATCH","features":[303]},{"name":"RPC_X_SS_IN_NULL_CONTEXT","features":[303]},{"name":"RPC_X_WRONG_ES_VERSION","features":[303]},{"name":"RPC_X_WRONG_PIPE_ORDER","features":[303]},{"name":"RPC_X_WRONG_PIPE_VERSION","features":[303]},{"name":"RPC_X_WRONG_STUB_VERSION","features":[303]},{"name":"RtlNtStatusToDosError","features":[303]},{"name":"SCARD_E_BAD_SEEK","features":[303]},{"name":"SCARD_E_CANCELLED","features":[303]},{"name":"SCARD_E_CANT_DISPOSE","features":[303]},{"name":"SCARD_E_CARD_UNSUPPORTED","features":[303]},{"name":"SCARD_E_CERTIFICATE_UNAVAILABLE","features":[303]},{"name":"SCARD_E_COMM_DATA_LOST","features":[303]},{"name":"SCARD_E_DIR_NOT_FOUND","features":[303]},{"name":"SCARD_E_DUPLICATE_READER","features":[303]},{"name":"SCARD_E_FILE_NOT_FOUND","features":[303]},{"name":"SCARD_E_ICC_CREATEORDER","features":[303]},{"name":"SCARD_E_ICC_INSTALLATION","features":[303]},{"name":"SCARD_E_INSUFFICIENT_BUFFER","features":[303]},{"name":"SCARD_E_INVALID_ATR","features":[303]},{"name":"SCARD_E_INVALID_CHV","features":[303]},{"name":"SCARD_E_INVALID_HANDLE","features":[303]},{"name":"SCARD_E_INVALID_PARAMETER","features":[303]},{"name":"SCARD_E_INVALID_TARGET","features":[303]},{"name":"SCARD_E_INVALID_VALUE","features":[303]},{"name":"SCARD_E_NOT_READY","features":[303]},{"name":"SCARD_E_NOT_TRANSACTED","features":[303]},{"name":"SCARD_E_NO_ACCESS","features":[303]},{"name":"SCARD_E_NO_DIR","features":[303]},{"name":"SCARD_E_NO_FILE","features":[303]},{"name":"SCARD_E_NO_KEY_CONTAINER","features":[303]},{"name":"SCARD_E_NO_MEMORY","features":[303]},{"name":"SCARD_E_NO_PIN_CACHE","features":[303]},{"name":"SCARD_E_NO_READERS_AVAILABLE","features":[303]},{"name":"SCARD_E_NO_SERVICE","features":[303]},{"name":"SCARD_E_NO_SMARTCARD","features":[303]},{"name":"SCARD_E_NO_SUCH_CERTIFICATE","features":[303]},{"name":"SCARD_E_PCI_TOO_SMALL","features":[303]},{"name":"SCARD_E_PIN_CACHE_EXPIRED","features":[303]},{"name":"SCARD_E_PROTO_MISMATCH","features":[303]},{"name":"SCARD_E_READER_UNAVAILABLE","features":[303]},{"name":"SCARD_E_READER_UNSUPPORTED","features":[303]},{"name":"SCARD_E_READ_ONLY_CARD","features":[303]},{"name":"SCARD_E_SERVER_TOO_BUSY","features":[303]},{"name":"SCARD_E_SERVICE_STOPPED","features":[303]},{"name":"SCARD_E_SHARING_VIOLATION","features":[303]},{"name":"SCARD_E_SYSTEM_CANCELLED","features":[303]},{"name":"SCARD_E_TIMEOUT","features":[303]},{"name":"SCARD_E_UNEXPECTED","features":[303]},{"name":"SCARD_E_UNKNOWN_CARD","features":[303]},{"name":"SCARD_E_UNKNOWN_READER","features":[303]},{"name":"SCARD_E_UNKNOWN_RES_MNG","features":[303]},{"name":"SCARD_E_UNSUPPORTED_FEATURE","features":[303]},{"name":"SCARD_E_WRITE_TOO_MANY","features":[303]},{"name":"SCARD_F_COMM_ERROR","features":[303]},{"name":"SCARD_F_INTERNAL_ERROR","features":[303]},{"name":"SCARD_F_UNKNOWN_ERROR","features":[303]},{"name":"SCARD_F_WAITED_TOO_LONG","features":[303]},{"name":"SCARD_P_SHUTDOWN","features":[303]},{"name":"SCARD_W_CACHE_ITEM_NOT_FOUND","features":[303]},{"name":"SCARD_W_CACHE_ITEM_STALE","features":[303]},{"name":"SCARD_W_CACHE_ITEM_TOO_BIG","features":[303]},{"name":"SCARD_W_CANCELLED_BY_USER","features":[303]},{"name":"SCARD_W_CARD_NOT_AUTHENTICATED","features":[303]},{"name":"SCARD_W_CHV_BLOCKED","features":[303]},{"name":"SCARD_W_EOF","features":[303]},{"name":"SCARD_W_REMOVED_CARD","features":[303]},{"name":"SCARD_W_RESET_CARD","features":[303]},{"name":"SCARD_W_SECURITY_VIOLATION","features":[303]},{"name":"SCARD_W_UNPOWERED_CARD","features":[303]},{"name":"SCARD_W_UNRESPONSIVE_CARD","features":[303]},{"name":"SCARD_W_UNSUPPORTED_CARD","features":[303]},{"name":"SCARD_W_WRONG_CHV","features":[303]},{"name":"SCHED_E_ACCOUNT_DBASE_CORRUPT","features":[303]},{"name":"SCHED_E_ACCOUNT_INFORMATION_NOT_SET","features":[303]},{"name":"SCHED_E_ACCOUNT_NAME_NOT_FOUND","features":[303]},{"name":"SCHED_E_ALREADY_RUNNING","features":[303]},{"name":"SCHED_E_CANNOT_OPEN_TASK","features":[303]},{"name":"SCHED_E_DEPRECATED_FEATURE_USED","features":[303]},{"name":"SCHED_E_INVALIDVALUE","features":[303]},{"name":"SCHED_E_INVALID_TASK","features":[303]},{"name":"SCHED_E_INVALID_TASK_HASH","features":[303]},{"name":"SCHED_E_MALFORMEDXML","features":[303]},{"name":"SCHED_E_MISSINGNODE","features":[303]},{"name":"SCHED_E_NAMESPACE","features":[303]},{"name":"SCHED_E_NO_SECURITY_SERVICES","features":[303]},{"name":"SCHED_E_PAST_END_BOUNDARY","features":[303]},{"name":"SCHED_E_SERVICE_NOT_AVAILABLE","features":[303]},{"name":"SCHED_E_SERVICE_NOT_INSTALLED","features":[303]},{"name":"SCHED_E_SERVICE_NOT_LOCALSYSTEM","features":[303]},{"name":"SCHED_E_SERVICE_NOT_RUNNING","features":[303]},{"name":"SCHED_E_SERVICE_TOO_BUSY","features":[303]},{"name":"SCHED_E_START_ON_DEMAND","features":[303]},{"name":"SCHED_E_TASK_ATTEMPTED","features":[303]},{"name":"SCHED_E_TASK_DISABLED","features":[303]},{"name":"SCHED_E_TASK_NOT_READY","features":[303]},{"name":"SCHED_E_TASK_NOT_RUNNING","features":[303]},{"name":"SCHED_E_TASK_NOT_UBPM_COMPAT","features":[303]},{"name":"SCHED_E_TASK_NOT_V1_COMPAT","features":[303]},{"name":"SCHED_E_TOO_MANY_NODES","features":[303]},{"name":"SCHED_E_TRIGGER_NOT_FOUND","features":[303]},{"name":"SCHED_E_UNEXPECTEDNODE","features":[303]},{"name":"SCHED_E_UNKNOWN_OBJECT_VERSION","features":[303]},{"name":"SCHED_E_UNSUPPORTED_ACCOUNT_OPTION","features":[303]},{"name":"SCHED_E_USER_NOT_LOGGED_ON","features":[303]},{"name":"SCHED_S_BATCH_LOGON_PROBLEM","features":[303]},{"name":"SCHED_S_EVENT_TRIGGER","features":[303]},{"name":"SCHED_S_SOME_TRIGGERS_FAILED","features":[303]},{"name":"SCHED_S_TASK_DISABLED","features":[303]},{"name":"SCHED_S_TASK_HAS_NOT_RUN","features":[303]},{"name":"SCHED_S_TASK_NOT_SCHEDULED","features":[303]},{"name":"SCHED_S_TASK_NO_MORE_RUNS","features":[303]},{"name":"SCHED_S_TASK_NO_VALID_TRIGGERS","features":[303]},{"name":"SCHED_S_TASK_QUEUED","features":[303]},{"name":"SCHED_S_TASK_READY","features":[303]},{"name":"SCHED_S_TASK_RUNNING","features":[303]},{"name":"SCHED_S_TASK_TERMINATED","features":[303]},{"name":"SDIAG_E_CANCELLED","features":[303]},{"name":"SDIAG_E_CANNOTRUN","features":[303]},{"name":"SDIAG_E_DISABLED","features":[303]},{"name":"SDIAG_E_MANAGEDHOST","features":[303]},{"name":"SDIAG_E_NOVERIFIER","features":[303]},{"name":"SDIAG_E_POWERSHELL","features":[303]},{"name":"SDIAG_E_RESOURCE","features":[303]},{"name":"SDIAG_E_ROOTCAUSE","features":[303]},{"name":"SDIAG_E_SCRIPT","features":[303]},{"name":"SDIAG_E_TRUST","features":[303]},{"name":"SDIAG_E_VERSION","features":[303]},{"name":"SDIAG_S_CANNOTRUN","features":[303]},{"name":"SEARCH_E_NOMONIKER","features":[303]},{"name":"SEARCH_E_NOREGION","features":[303]},{"name":"SEARCH_S_NOMOREHITS","features":[303]},{"name":"SEC_E_ALGORITHM_MISMATCH","features":[303]},{"name":"SEC_E_APPLICATION_PROTOCOL_MISMATCH","features":[303]},{"name":"SEC_E_BAD_BINDINGS","features":[303]},{"name":"SEC_E_BAD_PKGID","features":[303]},{"name":"SEC_E_BUFFER_TOO_SMALL","features":[303]},{"name":"SEC_E_CANNOT_INSTALL","features":[303]},{"name":"SEC_E_CANNOT_PACK","features":[303]},{"name":"SEC_E_CERT_EXPIRED","features":[303]},{"name":"SEC_E_CERT_UNKNOWN","features":[303]},{"name":"SEC_E_CERT_WRONG_USAGE","features":[303]},{"name":"SEC_E_CONTEXT_EXPIRED","features":[303]},{"name":"SEC_E_CROSSREALM_DELEGATION_FAILURE","features":[303]},{"name":"SEC_E_CRYPTO_SYSTEM_INVALID","features":[303]},{"name":"SEC_E_DECRYPT_FAILURE","features":[303]},{"name":"SEC_E_DELEGATION_POLICY","features":[303]},{"name":"SEC_E_DELEGATION_REQUIRED","features":[303]},{"name":"SEC_E_DOWNGRADE_DETECTED","features":[303]},{"name":"SEC_E_ENCRYPT_FAILURE","features":[303]},{"name":"SEC_E_EXT_BUFFER_TOO_SMALL","features":[303]},{"name":"SEC_E_ILLEGAL_MESSAGE","features":[303]},{"name":"SEC_E_INCOMPLETE_CREDENTIALS","features":[303]},{"name":"SEC_E_INCOMPLETE_MESSAGE","features":[303]},{"name":"SEC_E_INSUFFICIENT_BUFFERS","features":[303]},{"name":"SEC_E_INSUFFICIENT_MEMORY","features":[303]},{"name":"SEC_E_INTERNAL_ERROR","features":[303]},{"name":"SEC_E_INVALID_HANDLE","features":[303]},{"name":"SEC_E_INVALID_PARAMETER","features":[303]},{"name":"SEC_E_INVALID_TOKEN","features":[303]},{"name":"SEC_E_INVALID_UPN_NAME","features":[303]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED","features":[303]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED_KDC","features":[303]},{"name":"SEC_E_KDC_CERT_EXPIRED","features":[303]},{"name":"SEC_E_KDC_CERT_REVOKED","features":[303]},{"name":"SEC_E_KDC_INVALID_REQUEST","features":[303]},{"name":"SEC_E_KDC_UNABLE_TO_REFER","features":[303]},{"name":"SEC_E_KDC_UNKNOWN_ETYPE","features":[303]},{"name":"SEC_E_LOGON_DENIED","features":[303]},{"name":"SEC_E_MAX_REFERRALS_EXCEEDED","features":[303]},{"name":"SEC_E_MESSAGE_ALTERED","features":[303]},{"name":"SEC_E_MULTIPLE_ACCOUNTS","features":[303]},{"name":"SEC_E_MUST_BE_KDC","features":[303]},{"name":"SEC_E_MUTUAL_AUTH_FAILED","features":[303]},{"name":"SEC_E_NOT_OWNER","features":[303]},{"name":"SEC_E_NOT_SUPPORTED","features":[303]},{"name":"SEC_E_NO_AUTHENTICATING_AUTHORITY","features":[303]},{"name":"SEC_E_NO_CONTEXT","features":[303]},{"name":"SEC_E_NO_CREDENTIALS","features":[303]},{"name":"SEC_E_NO_IMPERSONATION","features":[303]},{"name":"SEC_E_NO_IP_ADDRESSES","features":[303]},{"name":"SEC_E_NO_KERB_KEY","features":[303]},{"name":"SEC_E_NO_PA_DATA","features":[303]},{"name":"SEC_E_NO_S4U_PROT_SUPPORT","features":[303]},{"name":"SEC_E_NO_SPM","features":[303]},{"name":"SEC_E_NO_TGT_REPLY","features":[303]},{"name":"SEC_E_OK","features":[303]},{"name":"SEC_E_ONLY_HTTPS_ALLOWED","features":[303]},{"name":"SEC_E_OUT_OF_SEQUENCE","features":[303]},{"name":"SEC_E_PKINIT_CLIENT_FAILURE","features":[303]},{"name":"SEC_E_PKINIT_NAME_MISMATCH","features":[303]},{"name":"SEC_E_PKU2U_CERT_FAILURE","features":[303]},{"name":"SEC_E_POLICY_NLTM_ONLY","features":[303]},{"name":"SEC_E_QOP_NOT_SUPPORTED","features":[303]},{"name":"SEC_E_REVOCATION_OFFLINE_C","features":[303]},{"name":"SEC_E_REVOCATION_OFFLINE_KDC","features":[303]},{"name":"SEC_E_SECPKG_NOT_FOUND","features":[303]},{"name":"SEC_E_SECURITY_QOS_FAILED","features":[303]},{"name":"SEC_E_SHUTDOWN_IN_PROGRESS","features":[303]},{"name":"SEC_E_SMARTCARD_CERT_EXPIRED","features":[303]},{"name":"SEC_E_SMARTCARD_CERT_REVOKED","features":[303]},{"name":"SEC_E_SMARTCARD_LOGON_REQUIRED","features":[303]},{"name":"SEC_E_STRONG_CRYPTO_NOT_SUPPORTED","features":[303]},{"name":"SEC_E_TARGET_UNKNOWN","features":[303]},{"name":"SEC_E_TIME_SKEW","features":[303]},{"name":"SEC_E_TOO_MANY_PRINCIPALS","features":[303]},{"name":"SEC_E_UNFINISHED_CONTEXT_DELETED","features":[303]},{"name":"SEC_E_UNKNOWN_CREDENTIALS","features":[303]},{"name":"SEC_E_UNSUPPORTED_FUNCTION","features":[303]},{"name":"SEC_E_UNSUPPORTED_PREAUTH","features":[303]},{"name":"SEC_E_UNTRUSTED_ROOT","features":[303]},{"name":"SEC_E_WRONG_CREDENTIAL_HANDLE","features":[303]},{"name":"SEC_E_WRONG_PRINCIPAL","features":[303]},{"name":"SEC_I_ASYNC_CALL_PENDING","features":[303]},{"name":"SEC_I_COMPLETE_AND_CONTINUE","features":[303]},{"name":"SEC_I_COMPLETE_NEEDED","features":[303]},{"name":"SEC_I_CONTEXT_EXPIRED","features":[303]},{"name":"SEC_I_CONTINUE_NEEDED","features":[303]},{"name":"SEC_I_CONTINUE_NEEDED_MESSAGE_OK","features":[303]},{"name":"SEC_I_GENERIC_EXTENSION_RECEIVED","features":[303]},{"name":"SEC_I_INCOMPLETE_CREDENTIALS","features":[303]},{"name":"SEC_I_LOCAL_LOGON","features":[303]},{"name":"SEC_I_MESSAGE_FRAGMENT","features":[303]},{"name":"SEC_I_NO_LSA_CONTEXT","features":[303]},{"name":"SEC_I_NO_RENEGOTIATION","features":[303]},{"name":"SEC_I_RENEGOTIATE","features":[303]},{"name":"SEC_I_SIGNATURE_NEEDED","features":[303]},{"name":"SEVERITY_ERROR","features":[303]},{"name":"SEVERITY_SUCCESS","features":[303]},{"name":"SHANDLE_PTR","features":[303]},{"name":"SIZE","features":[303]},{"name":"SPAPI_E_AUTHENTICODE_DISALLOWED","features":[303]},{"name":"SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[303]},{"name":"SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER","features":[303]},{"name":"SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[303]},{"name":"SPAPI_E_BAD_INTERFACE_INSTALLSECT","features":[303]},{"name":"SPAPI_E_BAD_SECTION_NAME_LINE","features":[303]},{"name":"SPAPI_E_BAD_SERVICE_INSTALLSECT","features":[303]},{"name":"SPAPI_E_CANT_LOAD_CLASS_ICON","features":[303]},{"name":"SPAPI_E_CANT_REMOVE_DEVINST","features":[303]},{"name":"SPAPI_E_CLASS_MISMATCH","features":[303]},{"name":"SPAPI_E_DEVICE_INSTALLER_NOT_READY","features":[303]},{"name":"SPAPI_E_DEVICE_INSTALL_BLOCKED","features":[303]},{"name":"SPAPI_E_DEVICE_INTERFACE_ACTIVE","features":[303]},{"name":"SPAPI_E_DEVICE_INTERFACE_REMOVED","features":[303]},{"name":"SPAPI_E_DEVINFO_DATA_LOCKED","features":[303]},{"name":"SPAPI_E_DEVINFO_LIST_LOCKED","features":[303]},{"name":"SPAPI_E_DEVINFO_NOT_REGISTERED","features":[303]},{"name":"SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE","features":[303]},{"name":"SPAPI_E_DEVINST_ALREADY_EXISTS","features":[303]},{"name":"SPAPI_E_DI_BAD_PATH","features":[303]},{"name":"SPAPI_E_DI_DONT_INSTALL","features":[303]},{"name":"SPAPI_E_DI_DO_DEFAULT","features":[303]},{"name":"SPAPI_E_DI_FUNCTION_OBSOLETE","features":[303]},{"name":"SPAPI_E_DI_NOFILECOPY","features":[303]},{"name":"SPAPI_E_DI_POSTPROCESSING_REQUIRED","features":[303]},{"name":"SPAPI_E_DRIVER_INSTALL_BLOCKED","features":[303]},{"name":"SPAPI_E_DRIVER_NONNATIVE","features":[303]},{"name":"SPAPI_E_DRIVER_STORE_ADD_FAILED","features":[303]},{"name":"SPAPI_E_DRIVER_STORE_DELETE_FAILED","features":[303]},{"name":"SPAPI_E_DUPLICATE_FOUND","features":[303]},{"name":"SPAPI_E_ERROR_NOT_INSTALLED","features":[303]},{"name":"SPAPI_E_EXPECTED_SECTION_NAME","features":[303]},{"name":"SPAPI_E_FILEQUEUE_LOCKED","features":[303]},{"name":"SPAPI_E_FILE_HASH_NOT_IN_CATALOG","features":[303]},{"name":"SPAPI_E_GENERAL_SYNTAX","features":[303]},{"name":"SPAPI_E_INCORRECTLY_COPIED_INF","features":[303]},{"name":"SPAPI_E_INF_IN_USE_BY_DEVICES","features":[303]},{"name":"SPAPI_E_INVALID_CLASS","features":[303]},{"name":"SPAPI_E_INVALID_CLASS_INSTALLER","features":[303]},{"name":"SPAPI_E_INVALID_COINSTALLER","features":[303]},{"name":"SPAPI_E_INVALID_DEVINST_NAME","features":[303]},{"name":"SPAPI_E_INVALID_FILTER_DRIVER","features":[303]},{"name":"SPAPI_E_INVALID_HWPROFILE","features":[303]},{"name":"SPAPI_E_INVALID_INF_LOGCONFIG","features":[303]},{"name":"SPAPI_E_INVALID_MACHINENAME","features":[303]},{"name":"SPAPI_E_INVALID_PROPPAGE_PROVIDER","features":[303]},{"name":"SPAPI_E_INVALID_REFERENCE_STRING","features":[303]},{"name":"SPAPI_E_INVALID_REG_PROPERTY","features":[303]},{"name":"SPAPI_E_INVALID_TARGET","features":[303]},{"name":"SPAPI_E_IN_WOW64","features":[303]},{"name":"SPAPI_E_KEY_DOES_NOT_EXIST","features":[303]},{"name":"SPAPI_E_LINE_NOT_FOUND","features":[303]},{"name":"SPAPI_E_MACHINE_UNAVAILABLE","features":[303]},{"name":"SPAPI_E_NON_WINDOWS_DRIVER","features":[303]},{"name":"SPAPI_E_NON_WINDOWS_NT_DRIVER","features":[303]},{"name":"SPAPI_E_NOT_AN_INSTALLED_OEM_INF","features":[303]},{"name":"SPAPI_E_NOT_DISABLEABLE","features":[303]},{"name":"SPAPI_E_NO_ASSOCIATED_CLASS","features":[303]},{"name":"SPAPI_E_NO_ASSOCIATED_SERVICE","features":[303]},{"name":"SPAPI_E_NO_AUTHENTICODE_CATALOG","features":[303]},{"name":"SPAPI_E_NO_BACKUP","features":[303]},{"name":"SPAPI_E_NO_CATALOG_FOR_OEM_INF","features":[303]},{"name":"SPAPI_E_NO_CLASSINSTALL_PARAMS","features":[303]},{"name":"SPAPI_E_NO_CLASS_DRIVER_LIST","features":[303]},{"name":"SPAPI_E_NO_COMPAT_DRIVERS","features":[303]},{"name":"SPAPI_E_NO_CONFIGMGR_SERVICES","features":[303]},{"name":"SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE","features":[303]},{"name":"SPAPI_E_NO_DEVICE_ICON","features":[303]},{"name":"SPAPI_E_NO_DEVICE_SELECTED","features":[303]},{"name":"SPAPI_E_NO_DRIVER_SELECTED","features":[303]},{"name":"SPAPI_E_NO_INF","features":[303]},{"name":"SPAPI_E_NO_SUCH_DEVICE_INTERFACE","features":[303]},{"name":"SPAPI_E_NO_SUCH_DEVINST","features":[303]},{"name":"SPAPI_E_NO_SUCH_INTERFACE_CLASS","features":[303]},{"name":"SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[303]},{"name":"SPAPI_E_PNP_REGISTRY_ERROR","features":[303]},{"name":"SPAPI_E_REMOTE_COMM_FAILURE","features":[303]},{"name":"SPAPI_E_REMOTE_REQUEST_UNSUPPORTED","features":[303]},{"name":"SPAPI_E_SCE_DISABLED","features":[303]},{"name":"SPAPI_E_SECTION_NAME_TOO_LONG","features":[303]},{"name":"SPAPI_E_SECTION_NOT_FOUND","features":[303]},{"name":"SPAPI_E_SET_SYSTEM_RESTORE_POINT","features":[303]},{"name":"SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[303]},{"name":"SPAPI_E_UNKNOWN_EXCEPTION","features":[303]},{"name":"SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW","features":[303]},{"name":"SPAPI_E_WRONG_INF_STYLE","features":[303]},{"name":"SPAPI_E_WRONG_INF_TYPE","features":[303]},{"name":"SQLITE_E_ABORT","features":[303]},{"name":"SQLITE_E_ABORT_ROLLBACK","features":[303]},{"name":"SQLITE_E_AUTH","features":[303]},{"name":"SQLITE_E_BUSY","features":[303]},{"name":"SQLITE_E_BUSY_RECOVERY","features":[303]},{"name":"SQLITE_E_BUSY_SNAPSHOT","features":[303]},{"name":"SQLITE_E_CANTOPEN","features":[303]},{"name":"SQLITE_E_CANTOPEN_CONVPATH","features":[303]},{"name":"SQLITE_E_CANTOPEN_FULLPATH","features":[303]},{"name":"SQLITE_E_CANTOPEN_ISDIR","features":[303]},{"name":"SQLITE_E_CANTOPEN_NOTEMPDIR","features":[303]},{"name":"SQLITE_E_CONSTRAINT","features":[303]},{"name":"SQLITE_E_CONSTRAINT_CHECK","features":[303]},{"name":"SQLITE_E_CONSTRAINT_COMMITHOOK","features":[303]},{"name":"SQLITE_E_CONSTRAINT_FOREIGNKEY","features":[303]},{"name":"SQLITE_E_CONSTRAINT_FUNCTION","features":[303]},{"name":"SQLITE_E_CONSTRAINT_NOTNULL","features":[303]},{"name":"SQLITE_E_CONSTRAINT_PRIMARYKEY","features":[303]},{"name":"SQLITE_E_CONSTRAINT_ROWID","features":[303]},{"name":"SQLITE_E_CONSTRAINT_TRIGGER","features":[303]},{"name":"SQLITE_E_CONSTRAINT_UNIQUE","features":[303]},{"name":"SQLITE_E_CONSTRAINT_VTAB","features":[303]},{"name":"SQLITE_E_CORRUPT","features":[303]},{"name":"SQLITE_E_CORRUPT_VTAB","features":[303]},{"name":"SQLITE_E_DONE","features":[303]},{"name":"SQLITE_E_EMPTY","features":[303]},{"name":"SQLITE_E_ERROR","features":[303]},{"name":"SQLITE_E_FORMAT","features":[303]},{"name":"SQLITE_E_FULL","features":[303]},{"name":"SQLITE_E_INTERNAL","features":[303]},{"name":"SQLITE_E_INTERRUPT","features":[303]},{"name":"SQLITE_E_IOERR","features":[303]},{"name":"SQLITE_E_IOERR_ACCESS","features":[303]},{"name":"SQLITE_E_IOERR_AUTH","features":[303]},{"name":"SQLITE_E_IOERR_BLOCKED","features":[303]},{"name":"SQLITE_E_IOERR_CHECKRESERVEDLOCK","features":[303]},{"name":"SQLITE_E_IOERR_CLOSE","features":[303]},{"name":"SQLITE_E_IOERR_CONVPATH","features":[303]},{"name":"SQLITE_E_IOERR_DELETE","features":[303]},{"name":"SQLITE_E_IOERR_DELETE_NOENT","features":[303]},{"name":"SQLITE_E_IOERR_DIR_CLOSE","features":[303]},{"name":"SQLITE_E_IOERR_DIR_FSYNC","features":[303]},{"name":"SQLITE_E_IOERR_FSTAT","features":[303]},{"name":"SQLITE_E_IOERR_FSYNC","features":[303]},{"name":"SQLITE_E_IOERR_GETTEMPPATH","features":[303]},{"name":"SQLITE_E_IOERR_LOCK","features":[303]},{"name":"SQLITE_E_IOERR_MMAP","features":[303]},{"name":"SQLITE_E_IOERR_NOMEM","features":[303]},{"name":"SQLITE_E_IOERR_RDLOCK","features":[303]},{"name":"SQLITE_E_IOERR_READ","features":[303]},{"name":"SQLITE_E_IOERR_SEEK","features":[303]},{"name":"SQLITE_E_IOERR_SHMLOCK","features":[303]},{"name":"SQLITE_E_IOERR_SHMMAP","features":[303]},{"name":"SQLITE_E_IOERR_SHMOPEN","features":[303]},{"name":"SQLITE_E_IOERR_SHMSIZE","features":[303]},{"name":"SQLITE_E_IOERR_SHORT_READ","features":[303]},{"name":"SQLITE_E_IOERR_TRUNCATE","features":[303]},{"name":"SQLITE_E_IOERR_UNLOCK","features":[303]},{"name":"SQLITE_E_IOERR_VNODE","features":[303]},{"name":"SQLITE_E_IOERR_WRITE","features":[303]},{"name":"SQLITE_E_LOCKED","features":[303]},{"name":"SQLITE_E_LOCKED_SHAREDCACHE","features":[303]},{"name":"SQLITE_E_MISMATCH","features":[303]},{"name":"SQLITE_E_MISUSE","features":[303]},{"name":"SQLITE_E_NOLFS","features":[303]},{"name":"SQLITE_E_NOMEM","features":[303]},{"name":"SQLITE_E_NOTADB","features":[303]},{"name":"SQLITE_E_NOTFOUND","features":[303]},{"name":"SQLITE_E_NOTICE","features":[303]},{"name":"SQLITE_E_NOTICE_RECOVER_ROLLBACK","features":[303]},{"name":"SQLITE_E_NOTICE_RECOVER_WAL","features":[303]},{"name":"SQLITE_E_PERM","features":[303]},{"name":"SQLITE_E_PROTOCOL","features":[303]},{"name":"SQLITE_E_RANGE","features":[303]},{"name":"SQLITE_E_READONLY","features":[303]},{"name":"SQLITE_E_READONLY_CANTLOCK","features":[303]},{"name":"SQLITE_E_READONLY_DBMOVED","features":[303]},{"name":"SQLITE_E_READONLY_RECOVERY","features":[303]},{"name":"SQLITE_E_READONLY_ROLLBACK","features":[303]},{"name":"SQLITE_E_ROW","features":[303]},{"name":"SQLITE_E_SCHEMA","features":[303]},{"name":"SQLITE_E_TOOBIG","features":[303]},{"name":"SQLITE_E_WARNING","features":[303]},{"name":"SQLITE_E_WARNING_AUTOINDEX","features":[303]},{"name":"STATEREPOSITORY_ERROR_CACHE_CORRUPTED","features":[303]},{"name":"STATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED","features":[303]},{"name":"STATEREPOSITORY_E_BLOCKED","features":[303]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_RETRY","features":[303]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED","features":[303]},{"name":"STATEREPOSITORY_E_BUSY_RETRY","features":[303]},{"name":"STATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED","features":[303]},{"name":"STATEREPOSITORY_E_CACHE_NOT_INIITALIZED","features":[303]},{"name":"STATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE","features":[303]},{"name":"STATEREPOSITORY_E_CONFIGURATION_INVALID","features":[303]},{"name":"STATEREPOSITORY_E_DEPENDENCY_NOT_RESOLVED","features":[303]},{"name":"STATEREPOSITORY_E_LOCKED_RETRY","features":[303]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY","features":[303]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED","features":[303]},{"name":"STATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED","features":[303]},{"name":"STATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS","features":[303]},{"name":"STATEREPOSITORY_E_STATEMENT_INPROGRESS","features":[303]},{"name":"STATEREPOSITORY_E_TRANSACTION_REQUIRED","features":[303]},{"name":"STATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION","features":[303]},{"name":"STATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED","features":[303]},{"name":"STATEREPOSITORY_TRANSACTION_IN_PROGRESS","features":[303]},{"name":"STATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_ABANDONED","features":[303]},{"name":"STATUS_ABANDONED_WAIT_0","features":[303]},{"name":"STATUS_ABANDONED_WAIT_63","features":[303]},{"name":"STATUS_ABANDON_HIBERFILE","features":[303]},{"name":"STATUS_ABIOS_INVALID_COMMAND","features":[303]},{"name":"STATUS_ABIOS_INVALID_LID","features":[303]},{"name":"STATUS_ABIOS_INVALID_SELECTOR","features":[303]},{"name":"STATUS_ABIOS_LID_ALREADY_OWNED","features":[303]},{"name":"STATUS_ABIOS_LID_NOT_EXIST","features":[303]},{"name":"STATUS_ABIOS_NOT_LID_OWNER","features":[303]},{"name":"STATUS_ABIOS_NOT_PRESENT","features":[303]},{"name":"STATUS_ABIOS_SELECTOR_NOT_AVAILABLE","features":[303]},{"name":"STATUS_ACCESS_AUDIT_BY_POLICY","features":[303]},{"name":"STATUS_ACCESS_DENIED","features":[303]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT","features":[303]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_OTHER","features":[303]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PATH","features":[303]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER","features":[303]},{"name":"STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[303]},{"name":"STATUS_ACCESS_VIOLATION","features":[303]},{"name":"STATUS_ACPI_ACQUIRE_GLOBAL_LOCK","features":[303]},{"name":"STATUS_ACPI_ADDRESS_NOT_MAPPED","features":[303]},{"name":"STATUS_ACPI_ALREADY_INITIALIZED","features":[303]},{"name":"STATUS_ACPI_ASSERT_FAILED","features":[303]},{"name":"STATUS_ACPI_FATAL","features":[303]},{"name":"STATUS_ACPI_HANDLER_COLLISION","features":[303]},{"name":"STATUS_ACPI_INCORRECT_ARGUMENT_COUNT","features":[303]},{"name":"STATUS_ACPI_INVALID_ACCESS_SIZE","features":[303]},{"name":"STATUS_ACPI_INVALID_ARGTYPE","features":[303]},{"name":"STATUS_ACPI_INVALID_ARGUMENT","features":[303]},{"name":"STATUS_ACPI_INVALID_DATA","features":[303]},{"name":"STATUS_ACPI_INVALID_EVENTTYPE","features":[303]},{"name":"STATUS_ACPI_INVALID_INDEX","features":[303]},{"name":"STATUS_ACPI_INVALID_MUTEX_LEVEL","features":[303]},{"name":"STATUS_ACPI_INVALID_OBJTYPE","features":[303]},{"name":"STATUS_ACPI_INVALID_OPCODE","features":[303]},{"name":"STATUS_ACPI_INVALID_REGION","features":[303]},{"name":"STATUS_ACPI_INVALID_SUPERNAME","features":[303]},{"name":"STATUS_ACPI_INVALID_TABLE","features":[303]},{"name":"STATUS_ACPI_INVALID_TARGETTYPE","features":[303]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNED","features":[303]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNER","features":[303]},{"name":"STATUS_ACPI_NOT_INITIALIZED","features":[303]},{"name":"STATUS_ACPI_POWER_REQUEST_FAILED","features":[303]},{"name":"STATUS_ACPI_REG_HANDLER_FAILED","features":[303]},{"name":"STATUS_ACPI_RS_ACCESS","features":[303]},{"name":"STATUS_ACPI_STACK_OVERFLOW","features":[303]},{"name":"STATUS_ADAPTER_HARDWARE_ERROR","features":[303]},{"name":"STATUS_ADDRESS_ALREADY_ASSOCIATED","features":[303]},{"name":"STATUS_ADDRESS_ALREADY_EXISTS","features":[303]},{"name":"STATUS_ADDRESS_CLOSED","features":[303]},{"name":"STATUS_ADDRESS_NOT_ASSOCIATED","features":[303]},{"name":"STATUS_ADMINLESS_ACCESS_DENIED","features":[303]},{"name":"STATUS_ADVANCED_INSTALLER_FAILED","features":[303]},{"name":"STATUS_AGENTS_EXHAUSTED","features":[303]},{"name":"STATUS_ALERTED","features":[303]},{"name":"STATUS_ALIAS_EXISTS","features":[303]},{"name":"STATUS_ALLOCATE_BUCKET","features":[303]},{"name":"STATUS_ALLOTTED_SPACE_EXCEEDED","features":[303]},{"name":"STATUS_ALL_SIDS_FILTERED","features":[303]},{"name":"STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_ALPC_CHECK_COMPLETION_LIST","features":[303]},{"name":"STATUS_ALREADY_COMMITTED","features":[303]},{"name":"STATUS_ALREADY_COMPLETE","features":[303]},{"name":"STATUS_ALREADY_DISCONNECTED","features":[303]},{"name":"STATUS_ALREADY_HAS_STREAM_ID","features":[303]},{"name":"STATUS_ALREADY_INITIALIZED","features":[303]},{"name":"STATUS_ALREADY_REGISTERED","features":[303]},{"name":"STATUS_ALREADY_WIN32","features":[303]},{"name":"STATUS_AMBIGUOUS_SYSTEM_DEVICE","features":[303]},{"name":"STATUS_APC_RETURNED_WHILE_IMPERSONATING","features":[303]},{"name":"STATUS_APISET_NOT_HOSTED","features":[303]},{"name":"STATUS_APISET_NOT_PRESENT","features":[303]},{"name":"STATUS_APPEXEC_APP_COMPAT_BLOCK","features":[303]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT","features":[303]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[303]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[303]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[303]},{"name":"STATUS_APPEXEC_CONDITION_NOT_SATISFIED","features":[303]},{"name":"STATUS_APPEXEC_HANDLE_INVALIDATED","features":[303]},{"name":"STATUS_APPEXEC_HOST_ID_MISMATCH","features":[303]},{"name":"STATUS_APPEXEC_INVALID_HOST_GENERATION","features":[303]},{"name":"STATUS_APPEXEC_INVALID_HOST_STATE","features":[303]},{"name":"STATUS_APPEXEC_NO_DONOR","features":[303]},{"name":"STATUS_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[303]},{"name":"STATUS_APPEXEC_UNKNOWN_USER","features":[303]},{"name":"STATUS_APPHELP_BLOCK","features":[303]},{"name":"STATUS_APPX_FILE_NOT_ENCRYPTED","features":[303]},{"name":"STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[303]},{"name":"STATUS_APP_DATA_CORRUPT","features":[303]},{"name":"STATUS_APP_DATA_EXPIRED","features":[303]},{"name":"STATUS_APP_DATA_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_APP_DATA_NOT_FOUND","features":[303]},{"name":"STATUS_APP_DATA_REBOOT_REQUIRED","features":[303]},{"name":"STATUS_APP_INIT_FAILURE","features":[303]},{"name":"STATUS_ARBITRATION_UNHANDLED","features":[303]},{"name":"STATUS_ARRAY_BOUNDS_EXCEEDED","features":[303]},{"name":"STATUS_ASSERTION_FAILURE","features":[303]},{"name":"STATUS_ATTACHED_EXECUTABLE_MEMORY_WRITE","features":[303]},{"name":"STATUS_ATTRIBUTE_NOT_PRESENT","features":[303]},{"name":"STATUS_AUDIO_ENGINE_NODE_NOT_FOUND","features":[303]},{"name":"STATUS_AUDITING_DISABLED","features":[303]},{"name":"STATUS_AUDIT_FAILED","features":[303]},{"name":"STATUS_AUTHIP_FAILURE","features":[303]},{"name":"STATUS_AUTH_TAG_MISMATCH","features":[303]},{"name":"STATUS_BACKUP_CONTROLLER","features":[303]},{"name":"STATUS_BAD_BINDINGS","features":[303]},{"name":"STATUS_BAD_CLUSTERS","features":[303]},{"name":"STATUS_BAD_COMPRESSION_BUFFER","features":[303]},{"name":"STATUS_BAD_CURRENT_DIRECTORY","features":[303]},{"name":"STATUS_BAD_DATA","features":[303]},{"name":"STATUS_BAD_DESCRIPTOR_FORMAT","features":[303]},{"name":"STATUS_BAD_DEVICE_TYPE","features":[303]},{"name":"STATUS_BAD_DLL_ENTRYPOINT","features":[303]},{"name":"STATUS_BAD_FILE_TYPE","features":[303]},{"name":"STATUS_BAD_FUNCTION_TABLE","features":[303]},{"name":"STATUS_BAD_IMPERSONATION_LEVEL","features":[303]},{"name":"STATUS_BAD_INHERITANCE_ACL","features":[303]},{"name":"STATUS_BAD_INITIAL_PC","features":[303]},{"name":"STATUS_BAD_INITIAL_STACK","features":[303]},{"name":"STATUS_BAD_KEY","features":[303]},{"name":"STATUS_BAD_LOGON_SESSION_STATE","features":[303]},{"name":"STATUS_BAD_MASTER_BOOT_RECORD","features":[303]},{"name":"STATUS_BAD_MCFG_TABLE","features":[303]},{"name":"STATUS_BAD_NETWORK_NAME","features":[303]},{"name":"STATUS_BAD_NETWORK_PATH","features":[303]},{"name":"STATUS_BAD_REMOTE_ADAPTER","features":[303]},{"name":"STATUS_BAD_SERVICE_ENTRYPOINT","features":[303]},{"name":"STATUS_BAD_STACK","features":[303]},{"name":"STATUS_BAD_TOKEN_TYPE","features":[303]},{"name":"STATUS_BAD_VALIDATION_CLASS","features":[303]},{"name":"STATUS_BAD_WORKING_SET_LIMIT","features":[303]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[303]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[303]},{"name":"STATUS_BCD_TOO_MANY_ELEMENTS","features":[303]},{"name":"STATUS_BEGINNING_OF_MEDIA","features":[303]},{"name":"STATUS_BEYOND_VDL","features":[303]},{"name":"STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[303]},{"name":"STATUS_BIZRULES_NOT_ENABLED","features":[303]},{"name":"STATUS_BLOCKED_BY_PARENTAL_CONTROLS","features":[303]},{"name":"STATUS_BLOCK_SHARED","features":[303]},{"name":"STATUS_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[303]},{"name":"STATUS_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[303]},{"name":"STATUS_BLOCK_TOO_MANY_REFERENCES","features":[303]},{"name":"STATUS_BLOCK_WEAK_REFERENCE_INVALID","features":[303]},{"name":"STATUS_BREAKPOINT","features":[303]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND","features":[303]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG","features":[303]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[303]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[303]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION","features":[303]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[303]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_RESOURCES","features":[303]},{"name":"STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[303]},{"name":"STATUS_BTH_ATT_INVALID_HANDLE","features":[303]},{"name":"STATUS_BTH_ATT_INVALID_OFFSET","features":[303]},{"name":"STATUS_BTH_ATT_INVALID_PDU","features":[303]},{"name":"STATUS_BTH_ATT_PREPARE_QUEUE_FULL","features":[303]},{"name":"STATUS_BTH_ATT_READ_NOT_PERMITTED","features":[303]},{"name":"STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED","features":[303]},{"name":"STATUS_BTH_ATT_UNKNOWN_ERROR","features":[303]},{"name":"STATUS_BTH_ATT_UNLIKELY","features":[303]},{"name":"STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[303]},{"name":"STATUS_BTH_ATT_WRITE_NOT_PERMITTED","features":[303]},{"name":"STATUS_BUFFER_ALL_ZEROS","features":[303]},{"name":"STATUS_BUFFER_OVERFLOW","features":[303]},{"name":"STATUS_BUFFER_TOO_SMALL","features":[303]},{"name":"STATUS_BUS_RESET","features":[303]},{"name":"STATUS_BYPASSIO_FLT_NOT_SUPPORTED","features":[303]},{"name":"STATUS_CACHE_PAGE_LOCKED","features":[303]},{"name":"STATUS_CALLBACK_BYPASS","features":[303]},{"name":"STATUS_CALLBACK_INVOKE_INLINE","features":[303]},{"name":"STATUS_CALLBACK_POP_STACK","features":[303]},{"name":"STATUS_CALLBACK_RETURNED_LANG","features":[303]},{"name":"STATUS_CALLBACK_RETURNED_LDR_LOCK","features":[303]},{"name":"STATUS_CALLBACK_RETURNED_PRI_BACK","features":[303]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_AFFINITY","features":[303]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_PRIORITY","features":[303]},{"name":"STATUS_CALLBACK_RETURNED_TRANSACTION","features":[303]},{"name":"STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING","features":[303]},{"name":"STATUS_CANCELLED","features":[303]},{"name":"STATUS_CANNOT_ABORT_TRANSACTIONS","features":[303]},{"name":"STATUS_CANNOT_ACCEPT_TRANSACTED_WORK","features":[303]},{"name":"STATUS_CANNOT_BREAK_OPLOCK","features":[303]},{"name":"STATUS_CANNOT_DELETE","features":[303]},{"name":"STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[303]},{"name":"STATUS_CANNOT_GRANT_REQUESTED_OPLOCK","features":[303]},{"name":"STATUS_CANNOT_IMPERSONATE","features":[303]},{"name":"STATUS_CANNOT_LOAD_REGISTRY_FILE","features":[303]},{"name":"STATUS_CANNOT_MAKE","features":[303]},{"name":"STATUS_CANNOT_SWITCH_RUNLEVEL","features":[303]},{"name":"STATUS_CANT_ACCESS_DOMAIN_INFO","features":[303]},{"name":"STATUS_CANT_ATTACH_TO_DEV_VOLUME","features":[303]},{"name":"STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[303]},{"name":"STATUS_CANT_CLEAR_ENCRYPTION_FLAG","features":[303]},{"name":"STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[303]},{"name":"STATUS_CANT_CROSS_RM_BOUNDARY","features":[303]},{"name":"STATUS_CANT_DISABLE_MANDATORY","features":[303]},{"name":"STATUS_CANT_ENABLE_DENY_ONLY","features":[303]},{"name":"STATUS_CANT_OPEN_ANONYMOUS","features":[303]},{"name":"STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[303]},{"name":"STATUS_CANT_RECOVER_WITH_HANDLE_OPEN","features":[303]},{"name":"STATUS_CANT_TERMINATE_SELF","features":[303]},{"name":"STATUS_CANT_WAIT","features":[303]},{"name":"STATUS_CARDBUS_NOT_SUPPORTED","features":[303]},{"name":"STATUS_CASE_DIFFERING_NAMES_IN_DIR","features":[303]},{"name":"STATUS_CASE_SENSITIVE_PATH","features":[303]},{"name":"STATUS_CC_NEEDS_CALLBACK_SECTION_DRAIN","features":[303]},{"name":"STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE","features":[303]},{"name":"STATUS_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[303]},{"name":"STATUS_CHECKING_FILE_SYSTEM","features":[303]},{"name":"STATUS_CHECKOUT_REQUIRED","features":[303]},{"name":"STATUS_CHILD_MUST_BE_VOLATILE","features":[303]},{"name":"STATUS_CHILD_PROCESS_BLOCKED","features":[303]},{"name":"STATUS_CIMFS_IMAGE_CORRUPT","features":[303]},{"name":"STATUS_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_CLEANER_CARTRIDGE_INSTALLED","features":[303]},{"name":"STATUS_CLIENT_SERVER_PARAMETERS_INVALID","features":[303]},{"name":"STATUS_CLIP_DEVICE_LICENSE_MISSING","features":[303]},{"name":"STATUS_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[303]},{"name":"STATUS_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[303]},{"name":"STATUS_CLIP_LICENSE_EXPIRED","features":[303]},{"name":"STATUS_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[303]},{"name":"STATUS_CLIP_LICENSE_INVALID_SIGNATURE","features":[303]},{"name":"STATUS_CLIP_LICENSE_NOT_FOUND","features":[303]},{"name":"STATUS_CLIP_LICENSE_NOT_SIGNED","features":[303]},{"name":"STATUS_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[303]},{"name":"STATUS_CLOUD_FILE_ACCESS_DENIED","features":[303]},{"name":"STATUS_CLOUD_FILE_ALREADY_CONNECTED","features":[303]},{"name":"STATUS_CLOUD_FILE_AUTHENTICATION_FAILED","features":[303]},{"name":"STATUS_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[303]},{"name":"STATUS_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[303]},{"name":"STATUS_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[303]},{"name":"STATUS_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[303]},{"name":"STATUS_CLOUD_FILE_INVALID_REQUEST","features":[303]},{"name":"STATUS_CLOUD_FILE_IN_USE","features":[303]},{"name":"STATUS_CLOUD_FILE_METADATA_CORRUPT","features":[303]},{"name":"STATUS_CLOUD_FILE_METADATA_TOO_LARGE","features":[303]},{"name":"STATUS_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[303]},{"name":"STATUS_CLOUD_FILE_NOT_IN_SYNC","features":[303]},{"name":"STATUS_CLOUD_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[303]},{"name":"STATUS_CLOUD_FILE_PINNED","features":[303]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[303]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[303]},{"name":"STATUS_CLOUD_FILE_PROPERTY_CORRUPT","features":[303]},{"name":"STATUS_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[303]},{"name":"STATUS_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[303]},{"name":"STATUS_CLOUD_FILE_PROVIDER_TERMINATED","features":[303]},{"name":"STATUS_CLOUD_FILE_READ_ONLY_VOLUME","features":[303]},{"name":"STATUS_CLOUD_FILE_REQUEST_ABORTED","features":[303]},{"name":"STATUS_CLOUD_FILE_REQUEST_CANCELED","features":[303]},{"name":"STATUS_CLOUD_FILE_REQUEST_TIMEOUT","features":[303]},{"name":"STATUS_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[303]},{"name":"STATUS_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[303]},{"name":"STATUS_CLOUD_FILE_UNSUCCESSFUL","features":[303]},{"name":"STATUS_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[303]},{"name":"STATUS_CLOUD_FILE_VALIDATION_FAILED","features":[303]},{"name":"STATUS_CLUSTER_CAM_TICKET_REPLAY_DETECTED","features":[303]},{"name":"STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR","features":[303]},{"name":"STATUS_CLUSTER_CSV_INVALID_HANDLE","features":[303]},{"name":"STATUS_CLUSTER_CSV_NOT_REDIRECTED","features":[303]},{"name":"STATUS_CLUSTER_CSV_NO_SNAPSHOTS","features":[303]},{"name":"STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS","features":[303]},{"name":"STATUS_CLUSTER_CSV_REDIRECTED","features":[303]},{"name":"STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS","features":[303]},{"name":"STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[303]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING","features":[303]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL","features":[303]},{"name":"STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL","features":[303]},{"name":"STATUS_CLUSTER_INVALID_NETWORK","features":[303]},{"name":"STATUS_CLUSTER_INVALID_NETWORK_PROVIDER","features":[303]},{"name":"STATUS_CLUSTER_INVALID_NODE","features":[303]},{"name":"STATUS_CLUSTER_INVALID_REQUEST","features":[303]},{"name":"STATUS_CLUSTER_JOIN_IN_PROGRESS","features":[303]},{"name":"STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[303]},{"name":"STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[303]},{"name":"STATUS_CLUSTER_NETINTERFACE_EXISTS","features":[303]},{"name":"STATUS_CLUSTER_NETINTERFACE_NOT_FOUND","features":[303]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[303]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_ONLINE","features":[303]},{"name":"STATUS_CLUSTER_NETWORK_EXISTS","features":[303]},{"name":"STATUS_CLUSTER_NETWORK_NOT_FOUND","features":[303]},{"name":"STATUS_CLUSTER_NETWORK_NOT_INTERNAL","features":[303]},{"name":"STATUS_CLUSTER_NODE_ALREADY_DOWN","features":[303]},{"name":"STATUS_CLUSTER_NODE_ALREADY_MEMBER","features":[303]},{"name":"STATUS_CLUSTER_NODE_ALREADY_UP","features":[303]},{"name":"STATUS_CLUSTER_NODE_DOWN","features":[303]},{"name":"STATUS_CLUSTER_NODE_EXISTS","features":[303]},{"name":"STATUS_CLUSTER_NODE_NOT_FOUND","features":[303]},{"name":"STATUS_CLUSTER_NODE_NOT_MEMBER","features":[303]},{"name":"STATUS_CLUSTER_NODE_NOT_PAUSED","features":[303]},{"name":"STATUS_CLUSTER_NODE_PAUSED","features":[303]},{"name":"STATUS_CLUSTER_NODE_UNREACHABLE","features":[303]},{"name":"STATUS_CLUSTER_NODE_UP","features":[303]},{"name":"STATUS_CLUSTER_NON_CSV_PATH","features":[303]},{"name":"STATUS_CLUSTER_NO_NET_ADAPTERS","features":[303]},{"name":"STATUS_CLUSTER_NO_SECURITY_CONTEXT","features":[303]},{"name":"STATUS_CLUSTER_POISONED","features":[303]},{"name":"STATUS_COMMITMENT_LIMIT","features":[303]},{"name":"STATUS_COMMITMENT_MINIMUM","features":[303]},{"name":"STATUS_COMPRESSED_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_COMPRESSION_DISABLED","features":[303]},{"name":"STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[303]},{"name":"STATUS_COMPRESSION_NOT_BENEFICIAL","features":[303]},{"name":"STATUS_CONFLICTING_ADDRESSES","features":[303]},{"name":"STATUS_CONNECTION_ABORTED","features":[303]},{"name":"STATUS_CONNECTION_ACTIVE","features":[303]},{"name":"STATUS_CONNECTION_COUNT_LIMIT","features":[303]},{"name":"STATUS_CONNECTION_DISCONNECTED","features":[303]},{"name":"STATUS_CONNECTION_INVALID","features":[303]},{"name":"STATUS_CONNECTION_IN_USE","features":[303]},{"name":"STATUS_CONNECTION_REFUSED","features":[303]},{"name":"STATUS_CONNECTION_RESET","features":[303]},{"name":"STATUS_CONTAINER_ASSIGNED","features":[303]},{"name":"STATUS_CONTENT_BLOCKED","features":[303]},{"name":"STATUS_CONTEXT_MISMATCH","features":[303]},{"name":"STATUS_CONTEXT_STOWED_EXCEPTION","features":[303]},{"name":"STATUS_CONTROL_C_EXIT","features":[303]},{"name":"STATUS_CONTROL_STACK_VIOLATION","features":[303]},{"name":"STATUS_CONVERT_TO_LARGE","features":[303]},{"name":"STATUS_COPY_PROTECTION_FAILURE","features":[303]},{"name":"STATUS_CORRUPT_LOG_CLEARED","features":[303]},{"name":"STATUS_CORRUPT_LOG_CORRUPTED","features":[303]},{"name":"STATUS_CORRUPT_LOG_DELETED_FULL","features":[303]},{"name":"STATUS_CORRUPT_LOG_OVERFULL","features":[303]},{"name":"STATUS_CORRUPT_LOG_UNAVAILABLE","features":[303]},{"name":"STATUS_CORRUPT_LOG_UPLEVEL_RECORDS","features":[303]},{"name":"STATUS_CORRUPT_SYSTEM_FILE","features":[303]},{"name":"STATUS_COULD_NOT_INTERPRET","features":[303]},{"name":"STATUS_COULD_NOT_RESIZE_LOG","features":[303]},{"name":"STATUS_CPU_SET_INVALID","features":[303]},{"name":"STATUS_CRASH_DUMP","features":[303]},{"name":"STATUS_CRC_ERROR","features":[303]},{"name":"STATUS_CRED_REQUIRES_CONFIRMATION","features":[303]},{"name":"STATUS_CRM_PROTOCOL_ALREADY_EXISTS","features":[303]},{"name":"STATUS_CRM_PROTOCOL_NOT_FOUND","features":[303]},{"name":"STATUS_CROSSREALM_DELEGATION_FAILURE","features":[303]},{"name":"STATUS_CROSS_PARTITION_VIOLATION","features":[303]},{"name":"STATUS_CRYPTO_SYSTEM_INVALID","features":[303]},{"name":"STATUS_CSS_AUTHENTICATION_FAILURE","features":[303]},{"name":"STATUS_CSS_KEY_NOT_ESTABLISHED","features":[303]},{"name":"STATUS_CSS_KEY_NOT_PRESENT","features":[303]},{"name":"STATUS_CSS_REGION_MISMATCH","features":[303]},{"name":"STATUS_CSS_RESETS_EXHAUSTED","features":[303]},{"name":"STATUS_CSS_SCRAMBLED_SECTOR","features":[303]},{"name":"STATUS_CSV_IO_PAUSE_TIMEOUT","features":[303]},{"name":"STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[303]},{"name":"STATUS_CS_ENCRYPTION_FILE_NOT_CSE","features":[303]},{"name":"STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[303]},{"name":"STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[303]},{"name":"STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[303]},{"name":"STATUS_CTLOG_INCONSISTENT_TRACKING_FILE","features":[303]},{"name":"STATUS_CTLOG_INVALID_TRACKING_STATE","features":[303]},{"name":"STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[303]},{"name":"STATUS_CTLOG_TRACKING_NOT_INITIALIZED","features":[303]},{"name":"STATUS_CTLOG_VHD_CHANGED_OFFLINE","features":[303]},{"name":"STATUS_CTL_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_CTX_BAD_VIDEO_MODE","features":[303]},{"name":"STATUS_CTX_CDM_CONNECT","features":[303]},{"name":"STATUS_CTX_CDM_DISCONNECT","features":[303]},{"name":"STATUS_CTX_CLIENT_LICENSE_IN_USE","features":[303]},{"name":"STATUS_CTX_CLIENT_LICENSE_NOT_SET","features":[303]},{"name":"STATUS_CTX_CLIENT_QUERY_TIMEOUT","features":[303]},{"name":"STATUS_CTX_CLOSE_PENDING","features":[303]},{"name":"STATUS_CTX_CONSOLE_CONNECT","features":[303]},{"name":"STATUS_CTX_CONSOLE_DISCONNECT","features":[303]},{"name":"STATUS_CTX_GRAPHICS_INVALID","features":[303]},{"name":"STATUS_CTX_INVALID_MODEMNAME","features":[303]},{"name":"STATUS_CTX_INVALID_PD","features":[303]},{"name":"STATUS_CTX_INVALID_WD","features":[303]},{"name":"STATUS_CTX_LICENSE_CLIENT_INVALID","features":[303]},{"name":"STATUS_CTX_LICENSE_EXPIRED","features":[303]},{"name":"STATUS_CTX_LICENSE_NOT_AVAILABLE","features":[303]},{"name":"STATUS_CTX_LOGON_DISABLED","features":[303]},{"name":"STATUS_CTX_MODEM_INF_NOT_FOUND","features":[303]},{"name":"STATUS_CTX_MODEM_RESPONSE_BUSY","features":[303]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_CARRIER","features":[303]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[303]},{"name":"STATUS_CTX_MODEM_RESPONSE_TIMEOUT","features":[303]},{"name":"STATUS_CTX_MODEM_RESPONSE_VOICE","features":[303]},{"name":"STATUS_CTX_NOT_CONSOLE","features":[303]},{"name":"STATUS_CTX_NO_OUTBUF","features":[303]},{"name":"STATUS_CTX_PD_NOT_FOUND","features":[303]},{"name":"STATUS_CTX_RESPONSE_ERROR","features":[303]},{"name":"STATUS_CTX_SECURITY_LAYER_ERROR","features":[303]},{"name":"STATUS_CTX_SHADOW_DENIED","features":[303]},{"name":"STATUS_CTX_SHADOW_DISABLED","features":[303]},{"name":"STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[303]},{"name":"STATUS_CTX_SHADOW_INVALID","features":[303]},{"name":"STATUS_CTX_SHADOW_NOT_RUNNING","features":[303]},{"name":"STATUS_CTX_TD_ERROR","features":[303]},{"name":"STATUS_CTX_WD_NOT_FOUND","features":[303]},{"name":"STATUS_CTX_WINSTATION_ACCESS_DENIED","features":[303]},{"name":"STATUS_CTX_WINSTATION_BUSY","features":[303]},{"name":"STATUS_CTX_WINSTATION_NAME_COLLISION","features":[303]},{"name":"STATUS_CTX_WINSTATION_NAME_INVALID","features":[303]},{"name":"STATUS_CTX_WINSTATION_NOT_FOUND","features":[303]},{"name":"STATUS_CURRENT_DOMAIN_NOT_ALLOWED","features":[303]},{"name":"STATUS_CURRENT_TRANSACTION_NOT_VALID","features":[303]},{"name":"STATUS_DATATYPE_MISALIGNMENT","features":[303]},{"name":"STATUS_DATATYPE_MISALIGNMENT_ERROR","features":[303]},{"name":"STATUS_DATA_CHECKSUM_ERROR","features":[303]},{"name":"STATUS_DATA_ERROR","features":[303]},{"name":"STATUS_DATA_LATE_ERROR","features":[303]},{"name":"STATUS_DATA_LOST_REPAIR","features":[303]},{"name":"STATUS_DATA_NOT_ACCEPTED","features":[303]},{"name":"STATUS_DATA_OVERRUN","features":[303]},{"name":"STATUS_DATA_OVERWRITTEN","features":[303]},{"name":"STATUS_DAX_MAPPING_EXISTS","features":[303]},{"name":"STATUS_DEBUGGER_INACTIVE","features":[303]},{"name":"STATUS_DEBUG_ATTACH_FAILED","features":[303]},{"name":"STATUS_DECRYPTION_FAILED","features":[303]},{"name":"STATUS_DELAY_LOAD_FAILED","features":[303]},{"name":"STATUS_DELETE_PENDING","features":[303]},{"name":"STATUS_DESTINATION_ELEMENT_FULL","features":[303]},{"name":"STATUS_DEVICE_ALREADY_ATTACHED","features":[303]},{"name":"STATUS_DEVICE_BUSY","features":[303]},{"name":"STATUS_DEVICE_CONFIGURATION_ERROR","features":[303]},{"name":"STATUS_DEVICE_DATA_ERROR","features":[303]},{"name":"STATUS_DEVICE_DOES_NOT_EXIST","features":[303]},{"name":"STATUS_DEVICE_DOOR_OPEN","features":[303]},{"name":"STATUS_DEVICE_ENUMERATION_ERROR","features":[303]},{"name":"STATUS_DEVICE_FEATURE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_DEVICE_HARDWARE_ERROR","features":[303]},{"name":"STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[303]},{"name":"STATUS_DEVICE_HUNG","features":[303]},{"name":"STATUS_DEVICE_INSUFFICIENT_RESOURCES","features":[303]},{"name":"STATUS_DEVICE_IN_MAINTENANCE","features":[303]},{"name":"STATUS_DEVICE_NOT_CONNECTED","features":[303]},{"name":"STATUS_DEVICE_NOT_PARTITIONED","features":[303]},{"name":"STATUS_DEVICE_NOT_READY","features":[303]},{"name":"STATUS_DEVICE_OFF_LINE","features":[303]},{"name":"STATUS_DEVICE_PAPER_EMPTY","features":[303]},{"name":"STATUS_DEVICE_POWERED_OFF","features":[303]},{"name":"STATUS_DEVICE_POWER_CYCLE_REQUIRED","features":[303]},{"name":"STATUS_DEVICE_POWER_FAILURE","features":[303]},{"name":"STATUS_DEVICE_PROTOCOL_ERROR","features":[303]},{"name":"STATUS_DEVICE_REMOVED","features":[303]},{"name":"STATUS_DEVICE_REQUIRES_CLEANING","features":[303]},{"name":"STATUS_DEVICE_RESET_REQUIRED","features":[303]},{"name":"STATUS_DEVICE_SUPPORT_IN_PROGRESS","features":[303]},{"name":"STATUS_DEVICE_UNREACHABLE","features":[303]},{"name":"STATUS_DEVICE_UNRESPONSIVE","features":[303]},{"name":"STATUS_DFS_EXIT_PATH_FOUND","features":[303]},{"name":"STATUS_DFS_UNAVAILABLE","features":[303]},{"name":"STATUS_DIF_BINDING_API_NOT_FOUND","features":[303]},{"name":"STATUS_DIF_IOCALLBACK_NOT_REPLACED","features":[303]},{"name":"STATUS_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[303]},{"name":"STATUS_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[303]},{"name":"STATUS_DIF_VOLATILE_INVALID_INFO","features":[303]},{"name":"STATUS_DIF_VOLATILE_NOT_ALLOWED","features":[303]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[303]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[303]},{"name":"STATUS_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[303]},{"name":"STATUS_DIRECTORY_IS_A_REPARSE_POINT","features":[303]},{"name":"STATUS_DIRECTORY_NOT_EMPTY","features":[303]},{"name":"STATUS_DIRECTORY_NOT_RM","features":[303]},{"name":"STATUS_DIRECTORY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_DIRECTORY_SERVICE_REQUIRED","features":[303]},{"name":"STATUS_DISK_CORRUPT_ERROR","features":[303]},{"name":"STATUS_DISK_FULL","features":[303]},{"name":"STATUS_DISK_OPERATION_FAILED","features":[303]},{"name":"STATUS_DISK_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_DISK_RECALIBRATE_FAILED","features":[303]},{"name":"STATUS_DISK_REPAIR_DISABLED","features":[303]},{"name":"STATUS_DISK_REPAIR_REDIRECTED","features":[303]},{"name":"STATUS_DISK_REPAIR_UNSUCCESSFUL","features":[303]},{"name":"STATUS_DISK_RESET_FAILED","features":[303]},{"name":"STATUS_DISK_RESOURCES_EXHAUSTED","features":[303]},{"name":"STATUS_DLL_INIT_FAILED","features":[303]},{"name":"STATUS_DLL_INIT_FAILED_LOGOFF","features":[303]},{"name":"STATUS_DLL_MIGHT_BE_INCOMPATIBLE","features":[303]},{"name":"STATUS_DLL_MIGHT_BE_INSECURE","features":[303]},{"name":"STATUS_DLL_NOT_FOUND","features":[303]},{"name":"STATUS_DM_OPERATION_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_DOMAIN_CONTROLLER_NOT_FOUND","features":[303]},{"name":"STATUS_DOMAIN_CTRLR_CONFIG_ERROR","features":[303]},{"name":"STATUS_DOMAIN_EXISTS","features":[303]},{"name":"STATUS_DOMAIN_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_DOMAIN_TRUST_INCONSISTENT","features":[303]},{"name":"STATUS_DRIVERS_LEAKING_LOCKED_PAGES","features":[303]},{"name":"STATUS_DRIVER_BLOCKED","features":[303]},{"name":"STATUS_DRIVER_BLOCKED_CRITICAL","features":[303]},{"name":"STATUS_DRIVER_CANCEL_TIMEOUT","features":[303]},{"name":"STATUS_DRIVER_DATABASE_ERROR","features":[303]},{"name":"STATUS_DRIVER_ENTRYPOINT_NOT_FOUND","features":[303]},{"name":"STATUS_DRIVER_FAILED_PRIOR_UNLOAD","features":[303]},{"name":"STATUS_DRIVER_FAILED_SLEEP","features":[303]},{"name":"STATUS_DRIVER_INTERNAL_ERROR","features":[303]},{"name":"STATUS_DRIVER_ORDINAL_NOT_FOUND","features":[303]},{"name":"STATUS_DRIVER_PROCESS_TERMINATED","features":[303]},{"name":"STATUS_DRIVER_UNABLE_TO_LOAD","features":[303]},{"name":"STATUS_DS_ADMIN_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[303]},{"name":"STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[303]},{"name":"STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[303]},{"name":"STATUS_DS_BUSY","features":[303]},{"name":"STATUS_DS_CANT_MOD_OBJ_CLASS","features":[303]},{"name":"STATUS_DS_CANT_MOD_PRIMARYGROUPID","features":[303]},{"name":"STATUS_DS_CANT_ON_NON_LEAF","features":[303]},{"name":"STATUS_DS_CANT_ON_RDN","features":[303]},{"name":"STATUS_DS_CANT_START","features":[303]},{"name":"STATUS_DS_CROSS_DOM_MOVE_FAILED","features":[303]},{"name":"STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[303]},{"name":"STATUS_DS_DOMAIN_RENAME_IN_PROGRESS","features":[303]},{"name":"STATUS_DS_DUPLICATE_ID_FOUND","features":[303]},{"name":"STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[303]},{"name":"STATUS_DS_GC_NOT_AVAILABLE","features":[303]},{"name":"STATUS_DS_GC_REQUIRED","features":[303]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[303]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[303]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[303]},{"name":"STATUS_DS_GROUP_CONVERSION_ERROR","features":[303]},{"name":"STATUS_DS_HAVE_PRIMARY_MEMBERS","features":[303]},{"name":"STATUS_DS_INCORRECT_ROLE_OWNER","features":[303]},{"name":"STATUS_DS_INIT_FAILURE","features":[303]},{"name":"STATUS_DS_INIT_FAILURE_CONSOLE","features":[303]},{"name":"STATUS_DS_INVALID_ATTRIBUTE_SYNTAX","features":[303]},{"name":"STATUS_DS_INVALID_GROUP_TYPE","features":[303]},{"name":"STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[303]},{"name":"STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[303]},{"name":"STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[303]},{"name":"STATUS_DS_NAME_NOT_UNIQUE","features":[303]},{"name":"STATUS_DS_NO_ATTRIBUTE_OR_VALUE","features":[303]},{"name":"STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[303]},{"name":"STATUS_DS_NO_MORE_RIDS","features":[303]},{"name":"STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[303]},{"name":"STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[303]},{"name":"STATUS_DS_NO_RIDS_ALLOCATED","features":[303]},{"name":"STATUS_DS_OBJ_CLASS_VIOLATION","features":[303]},{"name":"STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[303]},{"name":"STATUS_DS_OID_NOT_FOUND","features":[303]},{"name":"STATUS_DS_RIDMGR_DISABLED","features":[303]},{"name":"STATUS_DS_RIDMGR_INIT_ERROR","features":[303]},{"name":"STATUS_DS_SAM_INIT_FAILURE","features":[303]},{"name":"STATUS_DS_SAM_INIT_FAILURE_CONSOLE","features":[303]},{"name":"STATUS_DS_SENSITIVE_GROUP_VIOLATION","features":[303]},{"name":"STATUS_DS_SHUTTING_DOWN","features":[303]},{"name":"STATUS_DS_SRC_SID_EXISTS_IN_FOREST","features":[303]},{"name":"STATUS_DS_UNAVAILABLE","features":[303]},{"name":"STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[303]},{"name":"STATUS_DS_VERSION_CHECK_FAILURE","features":[303]},{"name":"STATUS_DUPLICATE_NAME","features":[303]},{"name":"STATUS_DUPLICATE_OBJECTID","features":[303]},{"name":"STATUS_DUPLICATE_PRIVILEGES","features":[303]},{"name":"STATUS_DYNAMIC_CODE_BLOCKED","features":[303]},{"name":"STATUS_EAS_NOT_SUPPORTED","features":[303]},{"name":"STATUS_EA_CORRUPT_ERROR","features":[303]},{"name":"STATUS_EA_LIST_INCONSISTENT","features":[303]},{"name":"STATUS_EA_TOO_LARGE","features":[303]},{"name":"STATUS_EFS_ALG_BLOB_TOO_BIG","features":[303]},{"name":"STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[303]},{"name":"STATUS_ELEVATION_REQUIRED","features":[303]},{"name":"STATUS_EMULATION_BREAKPOINT","features":[303]},{"name":"STATUS_EMULATION_SYSCALL","features":[303]},{"name":"STATUS_ENCLAVE_FAILURE","features":[303]},{"name":"STATUS_ENCLAVE_IS_TERMINATING","features":[303]},{"name":"STATUS_ENCLAVE_NOT_TERMINATED","features":[303]},{"name":"STATUS_ENCLAVE_VIOLATION","features":[303]},{"name":"STATUS_ENCOUNTERED_WRITE_IN_PROGRESS","features":[303]},{"name":"STATUS_ENCRYPTED_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_ENCRYPTED_IO_NOT_POSSIBLE","features":[303]},{"name":"STATUS_ENCRYPTING_METADATA_DISALLOWED","features":[303]},{"name":"STATUS_ENCRYPTION_DISABLED","features":[303]},{"name":"STATUS_ENCRYPTION_FAILED","features":[303]},{"name":"STATUS_END_OF_FILE","features":[303]},{"name":"STATUS_END_OF_MEDIA","features":[303]},{"name":"STATUS_ENLISTMENT_NOT_FOUND","features":[303]},{"name":"STATUS_ENLISTMENT_NOT_SUPERIOR","features":[303]},{"name":"STATUS_ENTRYPOINT_NOT_FOUND","features":[303]},{"name":"STATUS_EOF_ON_GHOSTED_RANGE","features":[303]},{"name":"STATUS_EOM_OVERFLOW","features":[303]},{"name":"STATUS_ERROR_PROCESS_NOT_IN_JOB","features":[303]},{"name":"STATUS_EVALUATION_EXPIRATION","features":[303]},{"name":"STATUS_EVENTLOG_CANT_START","features":[303]},{"name":"STATUS_EVENTLOG_FILE_CHANGED","features":[303]},{"name":"STATUS_EVENTLOG_FILE_CORRUPT","features":[303]},{"name":"STATUS_EVENT_DONE","features":[303]},{"name":"STATUS_EVENT_PENDING","features":[303]},{"name":"STATUS_EXECUTABLE_MEMORY_WRITE","features":[303]},{"name":"STATUS_EXPIRED_HANDLE","features":[303]},{"name":"STATUS_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[303]},{"name":"STATUS_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_EXTRANEOUS_INFORMATION","features":[303]},{"name":"STATUS_FAILED_DRIVER_ENTRY","features":[303]},{"name":"STATUS_FAILED_STACK_SWITCH","features":[303]},{"name":"STATUS_FAIL_CHECK","features":[303]},{"name":"STATUS_FAIL_FAST_EXCEPTION","features":[303]},{"name":"STATUS_FASTPATH_REJECTED","features":[303]},{"name":"STATUS_FATAL_APP_EXIT","features":[303]},{"name":"STATUS_FATAL_MEMORY_EXHAUSTION","features":[303]},{"name":"STATUS_FATAL_USER_CALLBACK_EXCEPTION","features":[303]},{"name":"STATUS_FILEMARK_DETECTED","features":[303]},{"name":"STATUS_FILES_OPEN","features":[303]},{"name":"STATUS_FILE_CHECKED_OUT","features":[303]},{"name":"STATUS_FILE_CLOSED","features":[303]},{"name":"STATUS_FILE_CORRUPT_ERROR","features":[303]},{"name":"STATUS_FILE_DELETED","features":[303]},{"name":"STATUS_FILE_ENCRYPTED","features":[303]},{"name":"STATUS_FILE_FORCED_CLOSED","features":[303]},{"name":"STATUS_FILE_HANDLE_REVOKED","features":[303]},{"name":"STATUS_FILE_IDENTITY_NOT_PERSISTENT","features":[303]},{"name":"STATUS_FILE_INVALID","features":[303]},{"name":"STATUS_FILE_IS_A_DIRECTORY","features":[303]},{"name":"STATUS_FILE_IS_OFFLINE","features":[303]},{"name":"STATUS_FILE_LOCKED_WITH_ONLY_READERS","features":[303]},{"name":"STATUS_FILE_LOCKED_WITH_WRITERS","features":[303]},{"name":"STATUS_FILE_LOCK_CONFLICT","features":[303]},{"name":"STATUS_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[303]},{"name":"STATUS_FILE_NOT_AVAILABLE","features":[303]},{"name":"STATUS_FILE_NOT_ENCRYPTED","features":[303]},{"name":"STATUS_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_FILE_PROTECTED_UNDER_DPL","features":[303]},{"name":"STATUS_FILE_RENAMED","features":[303]},{"name":"STATUS_FILE_SNAP_INVALID_PARAMETER","features":[303]},{"name":"STATUS_FILE_SNAP_IN_PROGRESS","features":[303]},{"name":"STATUS_FILE_SNAP_IO_NOT_COORDINATED","features":[303]},{"name":"STATUS_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_FILE_SNAP_UNEXPECTED_ERROR","features":[303]},{"name":"STATUS_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_FILE_SYSTEM_LIMITATION","features":[303]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[303]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[303]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[303]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[303]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[303]},{"name":"STATUS_FILE_TOO_LARGE","features":[303]},{"name":"STATUS_FIRMWARE_IMAGE_INVALID","features":[303]},{"name":"STATUS_FIRMWARE_SLOT_INVALID","features":[303]},{"name":"STATUS_FIRMWARE_UPDATED","features":[303]},{"name":"STATUS_FLOATED_SECTION","features":[303]},{"name":"STATUS_FLOAT_DENORMAL_OPERAND","features":[303]},{"name":"STATUS_FLOAT_DIVIDE_BY_ZERO","features":[303]},{"name":"STATUS_FLOAT_INEXACT_RESULT","features":[303]},{"name":"STATUS_FLOAT_INVALID_OPERATION","features":[303]},{"name":"STATUS_FLOAT_MULTIPLE_FAULTS","features":[303]},{"name":"STATUS_FLOAT_MULTIPLE_TRAPS","features":[303]},{"name":"STATUS_FLOAT_OVERFLOW","features":[303]},{"name":"STATUS_FLOAT_STACK_CHECK","features":[303]},{"name":"STATUS_FLOAT_UNDERFLOW","features":[303]},{"name":"STATUS_FLOPPY_BAD_REGISTERS","features":[303]},{"name":"STATUS_FLOPPY_ID_MARK_NOT_FOUND","features":[303]},{"name":"STATUS_FLOPPY_UNKNOWN_ERROR","features":[303]},{"name":"STATUS_FLOPPY_VOLUME","features":[303]},{"name":"STATUS_FLOPPY_WRONG_CYLINDER","features":[303]},{"name":"STATUS_FLT_ALREADY_ENLISTED","features":[303]},{"name":"STATUS_FLT_BUFFER_TOO_SMALL","features":[303]},{"name":"STATUS_FLT_CBDQ_DISABLED","features":[303]},{"name":"STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[303]},{"name":"STATUS_FLT_CONTEXT_ALREADY_DEFINED","features":[303]},{"name":"STATUS_FLT_CONTEXT_ALREADY_LINKED","features":[303]},{"name":"STATUS_FLT_DELETING_OBJECT","features":[303]},{"name":"STATUS_FLT_DISALLOW_FAST_IO","features":[303]},{"name":"STATUS_FLT_DISALLOW_FSFILTER_IO","features":[303]},{"name":"STATUS_FLT_DO_NOT_ATTACH","features":[303]},{"name":"STATUS_FLT_DO_NOT_DETACH","features":[303]},{"name":"STATUS_FLT_DUPLICATE_ENTRY","features":[303]},{"name":"STATUS_FLT_FILTER_NOT_FOUND","features":[303]},{"name":"STATUS_FLT_FILTER_NOT_READY","features":[303]},{"name":"STATUS_FLT_INSTANCE_ALTITUDE_COLLISION","features":[303]},{"name":"STATUS_FLT_INSTANCE_NAME_COLLISION","features":[303]},{"name":"STATUS_FLT_INSTANCE_NOT_FOUND","features":[303]},{"name":"STATUS_FLT_INTERNAL_ERROR","features":[303]},{"name":"STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[303]},{"name":"STATUS_FLT_INVALID_CONTEXT_REGISTRATION","features":[303]},{"name":"STATUS_FLT_INVALID_NAME_REQUEST","features":[303]},{"name":"STATUS_FLT_IO_COMPLETE","features":[303]},{"name":"STATUS_FLT_MUST_BE_NONPAGED_POOL","features":[303]},{"name":"STATUS_FLT_NAME_CACHE_MISS","features":[303]},{"name":"STATUS_FLT_NOT_INITIALIZED","features":[303]},{"name":"STATUS_FLT_NOT_SAFE_TO_POST_OPERATION","features":[303]},{"name":"STATUS_FLT_NO_DEVICE_OBJECT","features":[303]},{"name":"STATUS_FLT_NO_HANDLER_DEFINED","features":[303]},{"name":"STATUS_FLT_NO_WAITER_FOR_REPLY","features":[303]},{"name":"STATUS_FLT_POST_OPERATION_CLEANUP","features":[303]},{"name":"STATUS_FLT_REGISTRATION_BUSY","features":[303]},{"name":"STATUS_FLT_VOLUME_ALREADY_MOUNTED","features":[303]},{"name":"STATUS_FLT_VOLUME_NOT_FOUND","features":[303]},{"name":"STATUS_FLT_WCOS_NOT_SUPPORTED","features":[303]},{"name":"STATUS_FORMS_AUTH_REQUIRED","features":[303]},{"name":"STATUS_FOUND_OUT_OF_SCOPE","features":[303]},{"name":"STATUS_FREE_SPACE_TOO_FRAGMENTED","features":[303]},{"name":"STATUS_FREE_VM_NOT_AT_BASE","features":[303]},{"name":"STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[303]},{"name":"STATUS_FS_DRIVER_REQUIRED","features":[303]},{"name":"STATUS_FS_GUID_MISMATCH","features":[303]},{"name":"STATUS_FS_METADATA_INCONSISTENT","features":[303]},{"name":"STATUS_FT_DI_SCAN_REQUIRED","features":[303]},{"name":"STATUS_FT_MISSING_MEMBER","features":[303]},{"name":"STATUS_FT_ORPHANING","features":[303]},{"name":"STATUS_FT_READ_FAILURE","features":[303]},{"name":"STATUS_FT_READ_FROM_COPY","features":[303]},{"name":"STATUS_FT_READ_FROM_COPY_FAILURE","features":[303]},{"name":"STATUS_FT_READ_RECOVERY_FROM_BACKUP","features":[303]},{"name":"STATUS_FT_WRITE_FAILURE","features":[303]},{"name":"STATUS_FT_WRITE_RECOVERY","features":[303]},{"name":"STATUS_FULLSCREEN_MODE","features":[303]},{"name":"STATUS_FVE_ACTION_NOT_ALLOWED","features":[303]},{"name":"STATUS_FVE_AUTH_INVALID_APPLICATION","features":[303]},{"name":"STATUS_FVE_AUTH_INVALID_CONFIG","features":[303]},{"name":"STATUS_FVE_BAD_DATA","features":[303]},{"name":"STATUS_FVE_BAD_INFORMATION","features":[303]},{"name":"STATUS_FVE_BAD_METADATA_POINTER","features":[303]},{"name":"STATUS_FVE_BAD_PARTITION_SIZE","features":[303]},{"name":"STATUS_FVE_CONV_READ_ERROR","features":[303]},{"name":"STATUS_FVE_CONV_RECOVERY_FAILED","features":[303]},{"name":"STATUS_FVE_CONV_WRITE_ERROR","features":[303]},{"name":"STATUS_FVE_DATASET_FULL","features":[303]},{"name":"STATUS_FVE_DEBUGGER_ENABLED","features":[303]},{"name":"STATUS_FVE_DEVICE_LOCKEDOUT","features":[303]},{"name":"STATUS_FVE_DRY_RUN_FAILED","features":[303]},{"name":"STATUS_FVE_EDRIVE_BAND_ENUMERATION_FAILED","features":[303]},{"name":"STATUS_FVE_EDRIVE_DRY_RUN_FAILED","features":[303]},{"name":"STATUS_FVE_ENH_PIN_INVALID","features":[303]},{"name":"STATUS_FVE_FAILED_AUTHENTICATION","features":[303]},{"name":"STATUS_FVE_FAILED_SECTOR_SIZE","features":[303]},{"name":"STATUS_FVE_FAILED_WRONG_FS","features":[303]},{"name":"STATUS_FVE_FS_MOUNTED","features":[303]},{"name":"STATUS_FVE_FS_NOT_EXTENDED","features":[303]},{"name":"STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[303]},{"name":"STATUS_FVE_INVALID_DATUM_TYPE","features":[303]},{"name":"STATUS_FVE_KEYFILE_INVALID","features":[303]},{"name":"STATUS_FVE_KEYFILE_NOT_FOUND","features":[303]},{"name":"STATUS_FVE_KEYFILE_NO_VMK","features":[303]},{"name":"STATUS_FVE_LOCKED_VOLUME","features":[303]},{"name":"STATUS_FVE_METADATA_FULL","features":[303]},{"name":"STATUS_FVE_MOR_FAILED","features":[303]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CLUSTER","features":[303]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK","features":[303]},{"name":"STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[303]},{"name":"STATUS_FVE_NOT_DATA_VOLUME","features":[303]},{"name":"STATUS_FVE_NOT_DE_VOLUME","features":[303]},{"name":"STATUS_FVE_NOT_ENCRYPTED","features":[303]},{"name":"STATUS_FVE_NOT_OS_VOLUME","features":[303]},{"name":"STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY","features":[303]},{"name":"STATUS_FVE_NO_FEATURE_LICENSE","features":[303]},{"name":"STATUS_FVE_NO_LICENSE","features":[303]},{"name":"STATUS_FVE_OLD_METADATA_COPY","features":[303]},{"name":"STATUS_FVE_OSV_KSR_NOT_ALLOWED","features":[303]},{"name":"STATUS_FVE_OVERLAPPED_UPDATE","features":[303]},{"name":"STATUS_FVE_PARTIAL_METADATA","features":[303]},{"name":"STATUS_FVE_PIN_INVALID","features":[303]},{"name":"STATUS_FVE_POLICY_ON_RDV_EXCLUSION_LIST","features":[303]},{"name":"STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[303]},{"name":"STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED","features":[303]},{"name":"STATUS_FVE_PROTECTION_DISABLED","features":[303]},{"name":"STATUS_FVE_RAW_ACCESS","features":[303]},{"name":"STATUS_FVE_RAW_BLOCKED","features":[303]},{"name":"STATUS_FVE_REBOOT_REQUIRED","features":[303]},{"name":"STATUS_FVE_SECUREBOOT_CONFIG_CHANGE","features":[303]},{"name":"STATUS_FVE_SECUREBOOT_DISABLED","features":[303]},{"name":"STATUS_FVE_TOO_SMALL","features":[303]},{"name":"STATUS_FVE_TPM_DISABLED","features":[303]},{"name":"STATUS_FVE_TPM_INVALID_PCR","features":[303]},{"name":"STATUS_FVE_TPM_NO_VMK","features":[303]},{"name":"STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO","features":[303]},{"name":"STATUS_FVE_TRANSIENT_STATE","features":[303]},{"name":"STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG","features":[303]},{"name":"STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[303]},{"name":"STATUS_FVE_VOLUME_NOT_BOUND","features":[303]},{"name":"STATUS_FVE_VOLUME_TOO_SMALL","features":[303]},{"name":"STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE","features":[303]},{"name":"STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[303]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER","features":[303]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[303]},{"name":"STATUS_FWP_ALREADY_EXISTS","features":[303]},{"name":"STATUS_FWP_BUILTIN_OBJECT","features":[303]},{"name":"STATUS_FWP_CALLOUT_NOTIFICATION_FAILED","features":[303]},{"name":"STATUS_FWP_CALLOUT_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_CANNOT_PEND","features":[303]},{"name":"STATUS_FWP_CONDITION_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_CONNECTIONS_DISABLED","features":[303]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[303]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[303]},{"name":"STATUS_FWP_DROP_NOICMP","features":[303]},{"name":"STATUS_FWP_DUPLICATE_AUTH_METHOD","features":[303]},{"name":"STATUS_FWP_DUPLICATE_CONDITION","features":[303]},{"name":"STATUS_FWP_DUPLICATE_KEYMOD","features":[303]},{"name":"STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS","features":[303]},{"name":"STATUS_FWP_EM_NOT_SUPPORTED","features":[303]},{"name":"STATUS_FWP_FILTER_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_IKEEXT_NOT_RUNNING","features":[303]},{"name":"STATUS_FWP_INCOMPATIBLE_AUTH_METHOD","features":[303]},{"name":"STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM","features":[303]},{"name":"STATUS_FWP_INCOMPATIBLE_DH_GROUP","features":[303]},{"name":"STATUS_FWP_INCOMPATIBLE_LAYER","features":[303]},{"name":"STATUS_FWP_INCOMPATIBLE_SA_STATE","features":[303]},{"name":"STATUS_FWP_INCOMPATIBLE_TXN","features":[303]},{"name":"STATUS_FWP_INJECT_HANDLE_CLOSING","features":[303]},{"name":"STATUS_FWP_INJECT_HANDLE_STALE","features":[303]},{"name":"STATUS_FWP_INVALID_ACTION_TYPE","features":[303]},{"name":"STATUS_FWP_INVALID_AUTH_TRANSFORM","features":[303]},{"name":"STATUS_FWP_INVALID_CIPHER_TRANSFORM","features":[303]},{"name":"STATUS_FWP_INVALID_DNS_NAME","features":[303]},{"name":"STATUS_FWP_INVALID_ENUMERATOR","features":[303]},{"name":"STATUS_FWP_INVALID_FLAGS","features":[303]},{"name":"STATUS_FWP_INVALID_INTERVAL","features":[303]},{"name":"STATUS_FWP_INVALID_NET_MASK","features":[303]},{"name":"STATUS_FWP_INVALID_PARAMETER","features":[303]},{"name":"STATUS_FWP_INVALID_RANGE","features":[303]},{"name":"STATUS_FWP_INVALID_TRANSFORM_COMBINATION","features":[303]},{"name":"STATUS_FWP_INVALID_TUNNEL_ENDPOINT","features":[303]},{"name":"STATUS_FWP_INVALID_WEIGHT","features":[303]},{"name":"STATUS_FWP_IN_USE","features":[303]},{"name":"STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[303]},{"name":"STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED","features":[303]},{"name":"STATUS_FWP_KM_CLIENTS_ONLY","features":[303]},{"name":"STATUS_FWP_L2_DRIVER_NOT_READY","features":[303]},{"name":"STATUS_FWP_LAYER_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_LIFETIME_MISMATCH","features":[303]},{"name":"STATUS_FWP_MATCH_TYPE_MISMATCH","features":[303]},{"name":"STATUS_FWP_NET_EVENTS_DISABLED","features":[303]},{"name":"STATUS_FWP_NEVER_MATCH","features":[303]},{"name":"STATUS_FWP_NOTIFICATION_DROPPED","features":[303]},{"name":"STATUS_FWP_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_NO_TXN_IN_PROGRESS","features":[303]},{"name":"STATUS_FWP_NULL_DISPLAY_NAME","features":[303]},{"name":"STATUS_FWP_NULL_POINTER","features":[303]},{"name":"STATUS_FWP_OUT_OF_BOUNDS","features":[303]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_MISMATCH","features":[303]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_PROVIDER_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_RESERVED","features":[303]},{"name":"STATUS_FWP_SESSION_ABORTED","features":[303]},{"name":"STATUS_FWP_STILL_ON","features":[303]},{"name":"STATUS_FWP_SUBLAYER_NOT_FOUND","features":[303]},{"name":"STATUS_FWP_TCPIP_NOT_READY","features":[303]},{"name":"STATUS_FWP_TIMEOUT","features":[303]},{"name":"STATUS_FWP_TOO_MANY_CALLOUTS","features":[303]},{"name":"STATUS_FWP_TOO_MANY_SUBLAYERS","features":[303]},{"name":"STATUS_FWP_TRAFFIC_MISMATCH","features":[303]},{"name":"STATUS_FWP_TXN_ABORTED","features":[303]},{"name":"STATUS_FWP_TXN_IN_PROGRESS","features":[303]},{"name":"STATUS_FWP_TYPE_MISMATCH","features":[303]},{"name":"STATUS_FWP_WRONG_SESSION","features":[303]},{"name":"STATUS_FWP_ZERO_LENGTH_ARRAY","features":[303]},{"name":"STATUS_GDI_HANDLE_LEAK","features":[303]},{"name":"STATUS_GENERIC_COMMAND_FAILED","features":[303]},{"name":"STATUS_GENERIC_NOT_MAPPED","features":[303]},{"name":"STATUS_GHOSTED","features":[303]},{"name":"STATUS_GPIO_CLIENT_INFORMATION_INVALID","features":[303]},{"name":"STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[303]},{"name":"STATUS_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[303]},{"name":"STATUS_GPIO_INVALID_REGISTRATION_PACKET","features":[303]},{"name":"STATUS_GPIO_OPERATION_DENIED","features":[303]},{"name":"STATUS_GPIO_VERSION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRACEFUL_DISCONNECT","features":[303]},{"name":"STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[303]},{"name":"STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[303]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[303]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[303]},{"name":"STATUS_GRAPHICS_ADAPTER_WAS_RESET","features":[303]},{"name":"STATUS_GRAPHICS_ALLOCATION_BUSY","features":[303]},{"name":"STATUS_GRAPHICS_ALLOCATION_CLOSED","features":[303]},{"name":"STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[303]},{"name":"STATUS_GRAPHICS_ALLOCATION_INVALID","features":[303]},{"name":"STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[303]},{"name":"STATUS_GRAPHICS_CANNOTCOLORCONVERT","features":[303]},{"name":"STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[303]},{"name":"STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[303]},{"name":"STATUS_GRAPHICS_CANT_LOCK_MEMORY","features":[303]},{"name":"STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[303]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[303]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[303]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[303]},{"name":"STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[303]},{"name":"STATUS_GRAPHICS_COPP_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_DATASET_IS_EMPTY","features":[303]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING","features":[303]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_DATA","features":[303]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[303]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[303]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[303]},{"name":"STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[303]},{"name":"STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[303]},{"name":"STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[303]},{"name":"STATUS_GRAPHICS_DRIVER_MISMATCH","features":[303]},{"name":"STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[303]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[303]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[303]},{"name":"STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[303]},{"name":"STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[303]},{"name":"STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[303]},{"name":"STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[303]},{"name":"STATUS_GRAPHICS_I2C_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[303]},{"name":"STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[303]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[303]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[303]},{"name":"STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[303]},{"name":"STATUS_GRAPHICS_INTERNAL_ERROR","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_ACTIVE_REGION","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_CLIENT_TYPE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_COLORBASIS","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_DRIVER_MODEL","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_FREQUENCY","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_GAMMA_RAMP","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_PIXELFORMAT","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_POINTER","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_STRIDE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_TOTAL_REGION","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[303]},{"name":"STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[303]},{"name":"STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[303]},{"name":"STATUS_GRAPHICS_LEADLINK_START_DEFERRED","features":[303]},{"name":"STATUS_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[303]},{"name":"STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[303]},{"name":"STATUS_GRAPHICS_MCA_INTERNAL_ERROR","features":[303]},{"name":"STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[303]},{"name":"STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[303]},{"name":"STATUS_GRAPHICS_MODE_NOT_IN_MODESET","features":[303]},{"name":"STATUS_GRAPHICS_MODE_NOT_PINNED","features":[303]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[303]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[303]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[303]},{"name":"STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[303]},{"name":"STATUS_GRAPHICS_MONITOR_NOT_CONNECTED","features":[303]},{"name":"STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[303]},{"name":"STATUS_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[303]},{"name":"STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[303]},{"name":"STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[303]},{"name":"STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[303]},{"name":"STATUS_GRAPHICS_NO_ACTIVE_VIDPN","features":[303]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[303]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[303]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[303]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[303]},{"name":"STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[303]},{"name":"STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[303]},{"name":"STATUS_GRAPHICS_NO_PREFERRED_MODE","features":[303]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[303]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[303]},{"name":"STATUS_GRAPHICS_NO_VIDEO_MEMORY","features":[303]},{"name":"STATUS_GRAPHICS_NO_VIDPNMGR","features":[303]},{"name":"STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[303]},{"name":"STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[303]},{"name":"STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[303]},{"name":"STATUS_GRAPHICS_OPM_INTERNAL_ERROR","features":[303]},{"name":"STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[303]},{"name":"STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[303]},{"name":"STATUS_GRAPHICS_OPM_INVALID_HANDLE","features":[303]},{"name":"STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[303]},{"name":"STATUS_GRAPHICS_OPM_INVALID_SRM","features":[303]},{"name":"STATUS_GRAPHICS_OPM_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST","features":[303]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[303]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[303]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[303]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[303]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[303]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS","features":[303]},{"name":"STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[303]},{"name":"STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[303]},{"name":"STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[303]},{"name":"STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[303]},{"name":"STATUS_GRAPHICS_PARTIAL_DATA_POPULATED","features":[303]},{"name":"STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[303]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[303]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[303]},{"name":"STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[303]},{"name":"STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[303]},{"name":"STATUS_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[303]},{"name":"STATUS_GRAPHICS_PRESENT_DENIED","features":[303]},{"name":"STATUS_GRAPHICS_PRESENT_INVALID_WINDOW","features":[303]},{"name":"STATUS_GRAPHICS_PRESENT_MODE_CHANGED","features":[303]},{"name":"STATUS_GRAPHICS_PRESENT_OCCLUDED","features":[303]},{"name":"STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[303]},{"name":"STATUS_GRAPHICS_PRESENT_UNOCCLUDED","features":[303]},{"name":"STATUS_GRAPHICS_PVP_HFS_FAILED","features":[303]},{"name":"STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[303]},{"name":"STATUS_GRAPHICS_RESOURCES_NOT_RELATED","features":[303]},{"name":"STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[303]},{"name":"STATUS_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[303]},{"name":"STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[303]},{"name":"STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[303]},{"name":"STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[303]},{"name":"STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[303]},{"name":"STATUS_GRAPHICS_STALE_MODESET","features":[303]},{"name":"STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[303]},{"name":"STATUS_GRAPHICS_START_DEFERRED","features":[303]},{"name":"STATUS_GRAPHICS_TARGET_ALREADY_IN_SET","features":[303]},{"name":"STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[303]},{"name":"STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[303]},{"name":"STATUS_GRAPHICS_TOO_MANY_REFERENCES","features":[303]},{"name":"STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[303]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_LATER","features":[303]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_NOW","features":[303]},{"name":"STATUS_GRAPHICS_UAB_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[303]},{"name":"STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[303]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[303]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_VAIL_STATE_CHANGED","features":[303]},{"name":"STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[303]},{"name":"STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[303]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[303]},{"name":"STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[303]},{"name":"STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[303]},{"name":"STATUS_GROUP_EXISTS","features":[303]},{"name":"STATUS_GUARD_PAGE_VIOLATION","features":[303]},{"name":"STATUS_GUIDS_EXHAUSTED","features":[303]},{"name":"STATUS_GUID_SUBSTITUTION_MADE","features":[303]},{"name":"STATUS_HANDLES_CLOSED","features":[303]},{"name":"STATUS_HANDLE_NOT_CLOSABLE","features":[303]},{"name":"STATUS_HANDLE_NO_LONGER_VALID","features":[303]},{"name":"STATUS_HANDLE_REVOKED","features":[303]},{"name":"STATUS_HARDWARE_MEMORY_ERROR","features":[303]},{"name":"STATUS_HASH_NOT_PRESENT","features":[303]},{"name":"STATUS_HASH_NOT_SUPPORTED","features":[303]},{"name":"STATUS_HAS_SYSTEM_CRITICAL_FILES","features":[303]},{"name":"STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[303]},{"name":"STATUS_HDAUDIO_EMPTY_CONNECTION_LIST","features":[303]},{"name":"STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[303]},{"name":"STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[303]},{"name":"STATUS_HEAP_CORRUPTION","features":[303]},{"name":"STATUS_HEURISTIC_DAMAGE_POSSIBLE","features":[303]},{"name":"STATUS_HIBERNATED","features":[303]},{"name":"STATUS_HIBERNATION_FAILURE","features":[303]},{"name":"STATUS_HIVE_UNLOADED","features":[303]},{"name":"STATUS_HMAC_NOT_SUPPORTED","features":[303]},{"name":"STATUS_HOPLIMIT_EXCEEDED","features":[303]},{"name":"STATUS_HOST_DOWN","features":[303]},{"name":"STATUS_HOST_UNREACHABLE","features":[303]},{"name":"STATUS_HUNG_DISPLAY_DRIVER_THREAD","features":[303]},{"name":"STATUS_HV_ACCESS_DENIED","features":[303]},{"name":"STATUS_HV_ACKNOWLEDGED","features":[303]},{"name":"STATUS_HV_CALL_PENDING","features":[303]},{"name":"STATUS_HV_CPUID_FEATURE_VALIDATION_ERROR","features":[303]},{"name":"STATUS_HV_CPUID_XSAVE_FEATURE_VALIDATION_ERROR","features":[303]},{"name":"STATUS_HV_DEVICE_NOT_IN_DOMAIN","features":[303]},{"name":"STATUS_HV_EVENT_BUFFER_ALREADY_FREED","features":[303]},{"name":"STATUS_HV_FEATURE_UNAVAILABLE","features":[303]},{"name":"STATUS_HV_INACTIVE","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_BUFFER","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_BUFFERS","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY","features":[303]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[303]},{"name":"STATUS_HV_INVALID_ALIGNMENT","features":[303]},{"name":"STATUS_HV_INVALID_CONNECTION_ID","features":[303]},{"name":"STATUS_HV_INVALID_CPU_GROUP_ID","features":[303]},{"name":"STATUS_HV_INVALID_CPU_GROUP_STATE","features":[303]},{"name":"STATUS_HV_INVALID_DEVICE_ID","features":[303]},{"name":"STATUS_HV_INVALID_DEVICE_STATE","features":[303]},{"name":"STATUS_HV_INVALID_HYPERCALL_CODE","features":[303]},{"name":"STATUS_HV_INVALID_HYPERCALL_INPUT","features":[303]},{"name":"STATUS_HV_INVALID_LP_INDEX","features":[303]},{"name":"STATUS_HV_INVALID_PARAMETER","features":[303]},{"name":"STATUS_HV_INVALID_PARTITION_ID","features":[303]},{"name":"STATUS_HV_INVALID_PARTITION_STATE","features":[303]},{"name":"STATUS_HV_INVALID_PORT_ID","features":[303]},{"name":"STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[303]},{"name":"STATUS_HV_INVALID_REGISTER_VALUE","features":[303]},{"name":"STATUS_HV_INVALID_SAVE_RESTORE_STATE","features":[303]},{"name":"STATUS_HV_INVALID_SYNIC_STATE","features":[303]},{"name":"STATUS_HV_INVALID_VP_INDEX","features":[303]},{"name":"STATUS_HV_INVALID_VP_STATE","features":[303]},{"name":"STATUS_HV_INVALID_VTL_STATE","features":[303]},{"name":"STATUS_HV_MSR_ACCESS_FAILED","features":[303]},{"name":"STATUS_HV_NESTED_VM_EXIT","features":[303]},{"name":"STATUS_HV_NOT_ACKNOWLEDGED","features":[303]},{"name":"STATUS_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[303]},{"name":"STATUS_HV_NOT_PRESENT","features":[303]},{"name":"STATUS_HV_NO_DATA","features":[303]},{"name":"STATUS_HV_NO_RESOURCES","features":[303]},{"name":"STATUS_HV_NX_NOT_DETECTED","features":[303]},{"name":"STATUS_HV_OBJECT_IN_USE","features":[303]},{"name":"STATUS_HV_OPERATION_DENIED","features":[303]},{"name":"STATUS_HV_OPERATION_FAILED","features":[303]},{"name":"STATUS_HV_PAGE_REQUEST_INVALID","features":[303]},{"name":"STATUS_HV_PARTITION_TOO_DEEP","features":[303]},{"name":"STATUS_HV_PENDING_PAGE_REQUESTS","features":[303]},{"name":"STATUS_HV_PROCESSOR_STARTUP_TIMEOUT","features":[303]},{"name":"STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[303]},{"name":"STATUS_HV_SMX_ENABLED","features":[303]},{"name":"STATUS_HV_UNKNOWN_PROPERTY","features":[303]},{"name":"STATUS_ILLEGAL_CHARACTER","features":[303]},{"name":"STATUS_ILLEGAL_DLL_RELOCATION","features":[303]},{"name":"STATUS_ILLEGAL_ELEMENT_ADDRESS","features":[303]},{"name":"STATUS_ILLEGAL_FLOAT_CONTEXT","features":[303]},{"name":"STATUS_ILLEGAL_FUNCTION","features":[303]},{"name":"STATUS_ILLEGAL_INSTRUCTION","features":[303]},{"name":"STATUS_ILL_FORMED_PASSWORD","features":[303]},{"name":"STATUS_ILL_FORMED_SERVICE_ENTRY","features":[303]},{"name":"STATUS_IMAGE_ALREADY_LOADED","features":[303]},{"name":"STATUS_IMAGE_ALREADY_LOADED_AS_DLL","features":[303]},{"name":"STATUS_IMAGE_AT_DIFFERENT_BASE","features":[303]},{"name":"STATUS_IMAGE_CERT_EXPIRED","features":[303]},{"name":"STATUS_IMAGE_CERT_REVOKED","features":[303]},{"name":"STATUS_IMAGE_CHECKSUM_MISMATCH","features":[303]},{"name":"STATUS_IMAGE_LOADED_AS_PATCH_IMAGE","features":[303]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH","features":[303]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[303]},{"name":"STATUS_IMAGE_MP_UP_MISMATCH","features":[303]},{"name":"STATUS_IMAGE_NOT_AT_BASE","features":[303]},{"name":"STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[303]},{"name":"STATUS_IMPLEMENTATION_LIMIT","features":[303]},{"name":"STATUS_INCOMPATIBLE_DRIVER_BLOCKED","features":[303]},{"name":"STATUS_INCOMPATIBLE_FILE_MAP","features":[303]},{"name":"STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[303]},{"name":"STATUS_INCORRECT_ACCOUNT_TYPE","features":[303]},{"name":"STATUS_INDEX_OUT_OF_BOUNDS","features":[303]},{"name":"STATUS_INDOUBT_TRANSACTIONS_EXIST","features":[303]},{"name":"STATUS_INFO_LENGTH_MISMATCH","features":[303]},{"name":"STATUS_INSTANCE_NOT_AVAILABLE","features":[303]},{"name":"STATUS_INSTRUCTION_MISALIGNMENT","features":[303]},{"name":"STATUS_INSUFFICIENT_LOGON_INFO","features":[303]},{"name":"STATUS_INSUFFICIENT_NVRAM_RESOURCES","features":[303]},{"name":"STATUS_INSUFFICIENT_POWER","features":[303]},{"name":"STATUS_INSUFFICIENT_RESOURCES","features":[303]},{"name":"STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[303]},{"name":"STATUS_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[303]},{"name":"STATUS_INSUFF_SERVER_RESOURCES","features":[303]},{"name":"STATUS_INTEGER_DIVIDE_BY_ZERO","features":[303]},{"name":"STATUS_INTEGER_OVERFLOW","features":[303]},{"name":"STATUS_INTERMIXED_KERNEL_EA_OPERATION","features":[303]},{"name":"STATUS_INTERNAL_DB_CORRUPTION","features":[303]},{"name":"STATUS_INTERNAL_DB_ERROR","features":[303]},{"name":"STATUS_INTERNAL_ERROR","features":[303]},{"name":"STATUS_INTERRUPTED","features":[303]},{"name":"STATUS_INTERRUPT_STILL_CONNECTED","features":[303]},{"name":"STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[303]},{"name":"STATUS_INVALID_ACCOUNT_NAME","features":[303]},{"name":"STATUS_INVALID_ACE_CONDITION","features":[303]},{"name":"STATUS_INVALID_ACL","features":[303]},{"name":"STATUS_INVALID_ADDRESS","features":[303]},{"name":"STATUS_INVALID_ADDRESS_COMPONENT","features":[303]},{"name":"STATUS_INVALID_ADDRESS_WILDCARD","features":[303]},{"name":"STATUS_INVALID_BLOCK_LENGTH","features":[303]},{"name":"STATUS_INVALID_BUFFER_SIZE","features":[303]},{"name":"STATUS_INVALID_CAP","features":[303]},{"name":"STATUS_INVALID_CID","features":[303]},{"name":"STATUS_INVALID_COMPUTER_NAME","features":[303]},{"name":"STATUS_INVALID_CONFIG_VALUE","features":[303]},{"name":"STATUS_INVALID_CONNECTION","features":[303]},{"name":"STATUS_INVALID_CRUNTIME_PARAMETER","features":[303]},{"name":"STATUS_INVALID_DEVICE_OBJECT_PARAMETER","features":[303]},{"name":"STATUS_INVALID_DEVICE_REQUEST","features":[303]},{"name":"STATUS_INVALID_DEVICE_STATE","features":[303]},{"name":"STATUS_INVALID_DISPOSITION","features":[303]},{"name":"STATUS_INVALID_DOMAIN_ROLE","features":[303]},{"name":"STATUS_INVALID_DOMAIN_STATE","features":[303]},{"name":"STATUS_INVALID_EA_FLAG","features":[303]},{"name":"STATUS_INVALID_EA_NAME","features":[303]},{"name":"STATUS_INVALID_EXCEPTION_HANDLER","features":[303]},{"name":"STATUS_INVALID_FIELD_IN_PARAMETER_LIST","features":[303]},{"name":"STATUS_INVALID_FILE_FOR_SECTION","features":[303]},{"name":"STATUS_INVALID_GROUP_ATTRIBUTES","features":[303]},{"name":"STATUS_INVALID_HANDLE","features":[303]},{"name":"STATUS_INVALID_HW_PROFILE","features":[303]},{"name":"STATUS_INVALID_IDN_NORMALIZATION","features":[303]},{"name":"STATUS_INVALID_ID_AUTHORITY","features":[303]},{"name":"STATUS_INVALID_IMAGE_FORMAT","features":[303]},{"name":"STATUS_INVALID_IMAGE_HASH","features":[303]},{"name":"STATUS_INVALID_IMAGE_LE_FORMAT","features":[303]},{"name":"STATUS_INVALID_IMAGE_NE_FORMAT","features":[303]},{"name":"STATUS_INVALID_IMAGE_NOT_MZ","features":[303]},{"name":"STATUS_INVALID_IMAGE_PROTECT","features":[303]},{"name":"STATUS_INVALID_IMAGE_WIN_16","features":[303]},{"name":"STATUS_INVALID_IMAGE_WIN_32","features":[303]},{"name":"STATUS_INVALID_IMAGE_WIN_64","features":[303]},{"name":"STATUS_INVALID_IMPORT_OF_NON_DLL","features":[303]},{"name":"STATUS_INVALID_INFO_CLASS","features":[303]},{"name":"STATUS_INVALID_INITIATOR_TARGET_PATH","features":[303]},{"name":"STATUS_INVALID_KERNEL_INFO_VERSION","features":[303]},{"name":"STATUS_INVALID_LABEL","features":[303]},{"name":"STATUS_INVALID_LDT_DESCRIPTOR","features":[303]},{"name":"STATUS_INVALID_LDT_OFFSET","features":[303]},{"name":"STATUS_INVALID_LDT_SIZE","features":[303]},{"name":"STATUS_INVALID_LEVEL","features":[303]},{"name":"STATUS_INVALID_LOCK_RANGE","features":[303]},{"name":"STATUS_INVALID_LOCK_SEQUENCE","features":[303]},{"name":"STATUS_INVALID_LOGON_HOURS","features":[303]},{"name":"STATUS_INVALID_LOGON_TYPE","features":[303]},{"name":"STATUS_INVALID_MEMBER","features":[303]},{"name":"STATUS_INVALID_MESSAGE","features":[303]},{"name":"STATUS_INVALID_NETWORK_RESPONSE","features":[303]},{"name":"STATUS_INVALID_OFFSET_ALIGNMENT","features":[303]},{"name":"STATUS_INVALID_OPLOCK_PROTOCOL","features":[303]},{"name":"STATUS_INVALID_OWNER","features":[303]},{"name":"STATUS_INVALID_PACKAGE_SID_LENGTH","features":[303]},{"name":"STATUS_INVALID_PAGE_PROTECTION","features":[303]},{"name":"STATUS_INVALID_PARAMETER","features":[303]},{"name":"STATUS_INVALID_PARAMETER_1","features":[303]},{"name":"STATUS_INVALID_PARAMETER_10","features":[303]},{"name":"STATUS_INVALID_PARAMETER_11","features":[303]},{"name":"STATUS_INVALID_PARAMETER_12","features":[303]},{"name":"STATUS_INVALID_PARAMETER_2","features":[303]},{"name":"STATUS_INVALID_PARAMETER_3","features":[303]},{"name":"STATUS_INVALID_PARAMETER_4","features":[303]},{"name":"STATUS_INVALID_PARAMETER_5","features":[303]},{"name":"STATUS_INVALID_PARAMETER_6","features":[303]},{"name":"STATUS_INVALID_PARAMETER_7","features":[303]},{"name":"STATUS_INVALID_PARAMETER_8","features":[303]},{"name":"STATUS_INVALID_PARAMETER_9","features":[303]},{"name":"STATUS_INVALID_PARAMETER_MIX","features":[303]},{"name":"STATUS_INVALID_PEP_INFO_VERSION","features":[303]},{"name":"STATUS_INVALID_PIPE_STATE","features":[303]},{"name":"STATUS_INVALID_PLUGPLAY_DEVICE_PATH","features":[303]},{"name":"STATUS_INVALID_PORT_ATTRIBUTES","features":[303]},{"name":"STATUS_INVALID_PORT_HANDLE","features":[303]},{"name":"STATUS_INVALID_PRIMARY_GROUP","features":[303]},{"name":"STATUS_INVALID_QUOTA_LOWER","features":[303]},{"name":"STATUS_INVALID_READ_MODE","features":[303]},{"name":"STATUS_INVALID_RUNLEVEL_SETTING","features":[303]},{"name":"STATUS_INVALID_SECURITY_DESCR","features":[303]},{"name":"STATUS_INVALID_SERVER_STATE","features":[303]},{"name":"STATUS_INVALID_SESSION","features":[303]},{"name":"STATUS_INVALID_SID","features":[303]},{"name":"STATUS_INVALID_SIGNATURE","features":[303]},{"name":"STATUS_INVALID_STATE_TRANSITION","features":[303]},{"name":"STATUS_INVALID_SUB_AUTHORITY","features":[303]},{"name":"STATUS_INVALID_SYSTEM_SERVICE","features":[303]},{"name":"STATUS_INVALID_TASK_INDEX","features":[303]},{"name":"STATUS_INVALID_TASK_NAME","features":[303]},{"name":"STATUS_INVALID_THREAD","features":[303]},{"name":"STATUS_INVALID_TOKEN","features":[303]},{"name":"STATUS_INVALID_TRANSACTION","features":[303]},{"name":"STATUS_INVALID_UNWIND_TARGET","features":[303]},{"name":"STATUS_INVALID_USER_BUFFER","features":[303]},{"name":"STATUS_INVALID_USER_PRINCIPAL_NAME","features":[303]},{"name":"STATUS_INVALID_VARIANT","features":[303]},{"name":"STATUS_INVALID_VIEW_SIZE","features":[303]},{"name":"STATUS_INVALID_VOLUME_LABEL","features":[303]},{"name":"STATUS_INVALID_WEIGHT","features":[303]},{"name":"STATUS_INVALID_WORKSTATION","features":[303]},{"name":"STATUS_IN_PAGE_ERROR","features":[303]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_BIG","features":[303]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_FULL","features":[303]},{"name":"STATUS_IORING_CORRUPT","features":[303]},{"name":"STATUS_IORING_REQUIRED_FLAG_NOT_SUPPORTED","features":[303]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_FULL","features":[303]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_TOO_BIG","features":[303]},{"name":"STATUS_IORING_SUBMIT_IN_PROGRESS","features":[303]},{"name":"STATUS_IORING_VERSION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_IO_DEVICE_ERROR","features":[303]},{"name":"STATUS_IO_DEVICE_INVALID_DATA","features":[303]},{"name":"STATUS_IO_OPERATION_TIMEOUT","features":[303]},{"name":"STATUS_IO_PREEMPTED","features":[303]},{"name":"STATUS_IO_PRIVILEGE_FAILED","features":[303]},{"name":"STATUS_IO_REISSUE_AS_CACHED","features":[303]},{"name":"STATUS_IO_REPARSE_DATA_INVALID","features":[303]},{"name":"STATUS_IO_REPARSE_TAG_INVALID","features":[303]},{"name":"STATUS_IO_REPARSE_TAG_MISMATCH","features":[303]},{"name":"STATUS_IO_REPARSE_TAG_NOT_HANDLED","features":[303]},{"name":"STATUS_IO_TIMEOUT","features":[303]},{"name":"STATUS_IO_UNALIGNED_WRITE","features":[303]},{"name":"STATUS_IPSEC_AUTH_FIREWALL_DROP","features":[303]},{"name":"STATUS_IPSEC_BAD_SPI","features":[303]},{"name":"STATUS_IPSEC_CLEAR_TEXT_DROP","features":[303]},{"name":"STATUS_IPSEC_DOSP_BLOCK","features":[303]},{"name":"STATUS_IPSEC_DOSP_INVALID_PACKET","features":[303]},{"name":"STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[303]},{"name":"STATUS_IPSEC_DOSP_MAX_ENTRIES","features":[303]},{"name":"STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[303]},{"name":"STATUS_IPSEC_DOSP_RECEIVED_MULTICAST","features":[303]},{"name":"STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[303]},{"name":"STATUS_IPSEC_INTEGRITY_CHECK_FAILED","features":[303]},{"name":"STATUS_IPSEC_INVALID_PACKET","features":[303]},{"name":"STATUS_IPSEC_QUEUE_OVERFLOW","features":[303]},{"name":"STATUS_IPSEC_REPLAY_CHECK_FAILED","features":[303]},{"name":"STATUS_IPSEC_SA_LIFETIME_EXPIRED","features":[303]},{"name":"STATUS_IPSEC_THROTTLE_DROP","features":[303]},{"name":"STATUS_IPSEC_WRONG_SA","features":[303]},{"name":"STATUS_IP_ADDRESS_CONFLICT1","features":[303]},{"name":"STATUS_IP_ADDRESS_CONFLICT2","features":[303]},{"name":"STATUS_ISSUING_CA_UNTRUSTED","features":[303]},{"name":"STATUS_ISSUING_CA_UNTRUSTED_KDC","features":[303]},{"name":"STATUS_JOB_NOT_EMPTY","features":[303]},{"name":"STATUS_JOB_NO_CONTAINER","features":[303]},{"name":"STATUS_JOURNAL_DELETE_IN_PROGRESS","features":[303]},{"name":"STATUS_JOURNAL_ENTRY_DELETED","features":[303]},{"name":"STATUS_JOURNAL_NOT_ACTIVE","features":[303]},{"name":"STATUS_KDC_CERT_EXPIRED","features":[303]},{"name":"STATUS_KDC_CERT_REVOKED","features":[303]},{"name":"STATUS_KDC_INVALID_REQUEST","features":[303]},{"name":"STATUS_KDC_UNABLE_TO_REFER","features":[303]},{"name":"STATUS_KDC_UNKNOWN_ETYPE","features":[303]},{"name":"STATUS_KERNEL_APC","features":[303]},{"name":"STATUS_KERNEL_EXECUTABLE_MEMORY_WRITE","features":[303]},{"name":"STATUS_KEY_DELETED","features":[303]},{"name":"STATUS_KEY_HAS_CHILDREN","features":[303]},{"name":"STATUS_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[303]},{"name":"STATUS_LAPS_LEGACY_SCHEMA_MISSING","features":[303]},{"name":"STATUS_LAPS_SCHEMA_MISSING","features":[303]},{"name":"STATUS_LAST_ADMIN","features":[303]},{"name":"STATUS_LICENSE_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_LICENSE_VIOLATION","features":[303]},{"name":"STATUS_LINK_FAILED","features":[303]},{"name":"STATUS_LINK_TIMEOUT","features":[303]},{"name":"STATUS_LM_CROSS_ENCRYPTION_REQUIRED","features":[303]},{"name":"STATUS_LOCAL_DISCONNECT","features":[303]},{"name":"STATUS_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_LOCAL_USER_SESSION_KEY","features":[303]},{"name":"STATUS_LOCK_NOT_GRANTED","features":[303]},{"name":"STATUS_LOGIN_TIME_RESTRICTION","features":[303]},{"name":"STATUS_LOGIN_WKSTA_RESTRICTION","features":[303]},{"name":"STATUS_LOGON_NOT_GRANTED","features":[303]},{"name":"STATUS_LOGON_SERVER_CONFLICT","features":[303]},{"name":"STATUS_LOGON_SESSION_COLLISION","features":[303]},{"name":"STATUS_LOGON_SESSION_EXISTS","features":[303]},{"name":"STATUS_LOG_APPENDED_FLUSH_FAILED","features":[303]},{"name":"STATUS_LOG_ARCHIVE_IN_PROGRESS","features":[303]},{"name":"STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[303]},{"name":"STATUS_LOG_BLOCKS_EXHAUSTED","features":[303]},{"name":"STATUS_LOG_BLOCK_INCOMPLETE","features":[303]},{"name":"STATUS_LOG_BLOCK_INVALID","features":[303]},{"name":"STATUS_LOG_BLOCK_VERSION","features":[303]},{"name":"STATUS_LOG_CANT_DELETE","features":[303]},{"name":"STATUS_LOG_CLIENT_ALREADY_REGISTERED","features":[303]},{"name":"STATUS_LOG_CLIENT_NOT_REGISTERED","features":[303]},{"name":"STATUS_LOG_CONTAINER_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_LOG_CONTAINER_OPEN_FAILED","features":[303]},{"name":"STATUS_LOG_CONTAINER_READ_FAILED","features":[303]},{"name":"STATUS_LOG_CONTAINER_STATE_INVALID","features":[303]},{"name":"STATUS_LOG_CONTAINER_WRITE_FAILED","features":[303]},{"name":"STATUS_LOG_CORRUPTION_DETECTED","features":[303]},{"name":"STATUS_LOG_DEDICATED","features":[303]},{"name":"STATUS_LOG_EPHEMERAL","features":[303]},{"name":"STATUS_LOG_FILE_FULL","features":[303]},{"name":"STATUS_LOG_FULL","features":[303]},{"name":"STATUS_LOG_FULL_HANDLER_IN_PROGRESS","features":[303]},{"name":"STATUS_LOG_GROWTH_FAILED","features":[303]},{"name":"STATUS_LOG_HARD_ERROR","features":[303]},{"name":"STATUS_LOG_INCONSISTENT_SECURITY","features":[303]},{"name":"STATUS_LOG_INVALID_RANGE","features":[303]},{"name":"STATUS_LOG_METADATA_CORRUPT","features":[303]},{"name":"STATUS_LOG_METADATA_FLUSH_FAILED","features":[303]},{"name":"STATUS_LOG_METADATA_INCONSISTENT","features":[303]},{"name":"STATUS_LOG_METADATA_INVALID","features":[303]},{"name":"STATUS_LOG_MULTIPLEXED","features":[303]},{"name":"STATUS_LOG_NOT_ENOUGH_CONTAINERS","features":[303]},{"name":"STATUS_LOG_NO_RESTART","features":[303]},{"name":"STATUS_LOG_PINNED","features":[303]},{"name":"STATUS_LOG_PINNED_ARCHIVE_TAIL","features":[303]},{"name":"STATUS_LOG_PINNED_RESERVATION","features":[303]},{"name":"STATUS_LOG_POLICY_ALREADY_INSTALLED","features":[303]},{"name":"STATUS_LOG_POLICY_CONFLICT","features":[303]},{"name":"STATUS_LOG_POLICY_INVALID","features":[303]},{"name":"STATUS_LOG_POLICY_NOT_INSTALLED","features":[303]},{"name":"STATUS_LOG_READ_CONTEXT_INVALID","features":[303]},{"name":"STATUS_LOG_READ_MODE_INVALID","features":[303]},{"name":"STATUS_LOG_RECORDS_RESERVED_INVALID","features":[303]},{"name":"STATUS_LOG_RECORD_NONEXISTENT","features":[303]},{"name":"STATUS_LOG_RESERVATION_INVALID","features":[303]},{"name":"STATUS_LOG_RESIZE_INVALID_SIZE","features":[303]},{"name":"STATUS_LOG_RESTART_INVALID","features":[303]},{"name":"STATUS_LOG_SECTOR_INVALID","features":[303]},{"name":"STATUS_LOG_SECTOR_PARITY_INVALID","features":[303]},{"name":"STATUS_LOG_SECTOR_REMAPPED","features":[303]},{"name":"STATUS_LOG_SPACE_RESERVED_INVALID","features":[303]},{"name":"STATUS_LOG_START_OF_LOG","features":[303]},{"name":"STATUS_LOG_STATE_INVALID","features":[303]},{"name":"STATUS_LOG_TAIL_INVALID","features":[303]},{"name":"STATUS_LONGJUMP","features":[303]},{"name":"STATUS_LOST_MODE_LOGON_RESTRICTION","features":[303]},{"name":"STATUS_LOST_WRITEBEHIND_DATA","features":[303]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[303]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[303]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[303]},{"name":"STATUS_LPAC_ACCESS_DENIED","features":[303]},{"name":"STATUS_LPC_HANDLE_COUNT_EXCEEDED","features":[303]},{"name":"STATUS_LPC_INVALID_CONNECTION_USAGE","features":[303]},{"name":"STATUS_LPC_RECEIVE_BUFFER_EXPECTED","features":[303]},{"name":"STATUS_LPC_REPLY_LOST","features":[303]},{"name":"STATUS_LPC_REQUESTS_NOT_ALLOWED","features":[303]},{"name":"STATUS_LUIDS_EXHAUSTED","features":[303]},{"name":"STATUS_MAGAZINE_NOT_PRESENT","features":[303]},{"name":"STATUS_MAPPED_ALIGNMENT","features":[303]},{"name":"STATUS_MAPPED_FILE_SIZE_ZERO","features":[303]},{"name":"STATUS_MARKED_TO_DISALLOW_WRITES","features":[303]},{"name":"STATUS_MARSHALL_OVERFLOW","features":[303]},{"name":"STATUS_MAX_REFERRALS_EXCEEDED","features":[303]},{"name":"STATUS_MCA_EXCEPTION","features":[303]},{"name":"STATUS_MCA_OCCURED","features":[303]},{"name":"STATUS_MEDIA_CHANGED","features":[303]},{"name":"STATUS_MEDIA_CHECK","features":[303]},{"name":"STATUS_MEDIA_WRITE_PROTECTED","features":[303]},{"name":"STATUS_MEMBERS_PRIMARY_GROUP","features":[303]},{"name":"STATUS_MEMBER_IN_ALIAS","features":[303]},{"name":"STATUS_MEMBER_IN_GROUP","features":[303]},{"name":"STATUS_MEMBER_NOT_IN_ALIAS","features":[303]},{"name":"STATUS_MEMBER_NOT_IN_GROUP","features":[303]},{"name":"STATUS_MEMORY_NOT_ALLOCATED","features":[303]},{"name":"STATUS_MESSAGE_LOST","features":[303]},{"name":"STATUS_MESSAGE_NOT_FOUND","features":[303]},{"name":"STATUS_MESSAGE_RETRIEVED","features":[303]},{"name":"STATUS_MFT_TOO_FRAGMENTED","features":[303]},{"name":"STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[303]},{"name":"STATUS_MISSING_SYSTEMFILE","features":[303]},{"name":"STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[303]},{"name":"STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[303]},{"name":"STATUS_MONITOR_INVALID_MANUFACTURE_DATE","features":[303]},{"name":"STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[303]},{"name":"STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[303]},{"name":"STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[303]},{"name":"STATUS_MONITOR_NO_DESCRIPTOR","features":[303]},{"name":"STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[303]},{"name":"STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[303]},{"name":"STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[303]},{"name":"STATUS_MORE_ENTRIES","features":[303]},{"name":"STATUS_MORE_PROCESSING_REQUIRED","features":[303]},{"name":"STATUS_MOUNT_POINT_NOT_RESOLVED","features":[303]},{"name":"STATUS_MP_PROCESSOR_MISMATCH","features":[303]},{"name":"STATUS_MUI_FILE_NOT_FOUND","features":[303]},{"name":"STATUS_MUI_FILE_NOT_LOADED","features":[303]},{"name":"STATUS_MUI_INVALID_FILE","features":[303]},{"name":"STATUS_MUI_INVALID_LOCALE_NAME","features":[303]},{"name":"STATUS_MUI_INVALID_RC_CONFIG","features":[303]},{"name":"STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[303]},{"name":"STATUS_MULTIPLE_FAULT_VIOLATION","features":[303]},{"name":"STATUS_MUST_BE_KDC","features":[303]},{"name":"STATUS_MUTANT_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_MUTANT_NOT_OWNED","features":[303]},{"name":"STATUS_MUTUAL_AUTHENTICATION_FAILED","features":[303]},{"name":"STATUS_NAME_TOO_LONG","features":[303]},{"name":"STATUS_NDIS_ADAPTER_NOT_FOUND","features":[303]},{"name":"STATUS_NDIS_ADAPTER_NOT_READY","features":[303]},{"name":"STATUS_NDIS_ADAPTER_REMOVED","features":[303]},{"name":"STATUS_NDIS_ALREADY_MAPPED","features":[303]},{"name":"STATUS_NDIS_BAD_CHARACTERISTICS","features":[303]},{"name":"STATUS_NDIS_BAD_VERSION","features":[303]},{"name":"STATUS_NDIS_BUFFER_TOO_SHORT","features":[303]},{"name":"STATUS_NDIS_CLOSING","features":[303]},{"name":"STATUS_NDIS_DEVICE_FAILED","features":[303]},{"name":"STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[303]},{"name":"STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[303]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[303]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[303]},{"name":"STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[303]},{"name":"STATUS_NDIS_DOT11_MEDIA_IN_USE","features":[303]},{"name":"STATUS_NDIS_DOT11_POWER_STATE_INVALID","features":[303]},{"name":"STATUS_NDIS_ERROR_READING_FILE","features":[303]},{"name":"STATUS_NDIS_FILE_NOT_FOUND","features":[303]},{"name":"STATUS_NDIS_GROUP_ADDRESS_IN_USE","features":[303]},{"name":"STATUS_NDIS_INDICATION_REQUIRED","features":[303]},{"name":"STATUS_NDIS_INTERFACE_NOT_FOUND","features":[303]},{"name":"STATUS_NDIS_INVALID_ADDRESS","features":[303]},{"name":"STATUS_NDIS_INVALID_DATA","features":[303]},{"name":"STATUS_NDIS_INVALID_DEVICE_REQUEST","features":[303]},{"name":"STATUS_NDIS_INVALID_LENGTH","features":[303]},{"name":"STATUS_NDIS_INVALID_OID","features":[303]},{"name":"STATUS_NDIS_INVALID_PACKET","features":[303]},{"name":"STATUS_NDIS_INVALID_PORT","features":[303]},{"name":"STATUS_NDIS_INVALID_PORT_STATE","features":[303]},{"name":"STATUS_NDIS_LOW_POWER_STATE","features":[303]},{"name":"STATUS_NDIS_MEDIA_DISCONNECTED","features":[303]},{"name":"STATUS_NDIS_MULTICAST_EXISTS","features":[303]},{"name":"STATUS_NDIS_MULTICAST_FULL","features":[303]},{"name":"STATUS_NDIS_MULTICAST_NOT_FOUND","features":[303]},{"name":"STATUS_NDIS_NOT_SUPPORTED","features":[303]},{"name":"STATUS_NDIS_NO_QUEUES","features":[303]},{"name":"STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[303]},{"name":"STATUS_NDIS_OFFLOAD_PATH_REJECTED","features":[303]},{"name":"STATUS_NDIS_OFFLOAD_POLICY","features":[303]},{"name":"STATUS_NDIS_OPEN_FAILED","features":[303]},{"name":"STATUS_NDIS_PAUSED","features":[303]},{"name":"STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[303]},{"name":"STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[303]},{"name":"STATUS_NDIS_REINIT_REQUIRED","features":[303]},{"name":"STATUS_NDIS_REQUEST_ABORTED","features":[303]},{"name":"STATUS_NDIS_RESET_IN_PROGRESS","features":[303]},{"name":"STATUS_NDIS_RESOURCE_CONFLICT","features":[303]},{"name":"STATUS_NDIS_UNSUPPORTED_MEDIA","features":[303]},{"name":"STATUS_NDIS_UNSUPPORTED_REVISION","features":[303]},{"name":"STATUS_ND_QUEUE_OVERFLOW","features":[303]},{"name":"STATUS_NEEDS_REGISTRATION","features":[303]},{"name":"STATUS_NEEDS_REMEDIATION","features":[303]},{"name":"STATUS_NETLOGON_NOT_STARTED","features":[303]},{"name":"STATUS_NETWORK_ACCESS_DENIED","features":[303]},{"name":"STATUS_NETWORK_ACCESS_DENIED_EDP","features":[303]},{"name":"STATUS_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[303]},{"name":"STATUS_NETWORK_BUSY","features":[303]},{"name":"STATUS_NETWORK_CREDENTIAL_CONFLICT","features":[303]},{"name":"STATUS_NETWORK_NAME_DELETED","features":[303]},{"name":"STATUS_NETWORK_OPEN_RESTRICTION","features":[303]},{"name":"STATUS_NETWORK_SESSION_EXPIRED","features":[303]},{"name":"STATUS_NETWORK_UNREACHABLE","features":[303]},{"name":"STATUS_NET_WRITE_FAULT","features":[303]},{"name":"STATUS_NOINTERFACE","features":[303]},{"name":"STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[303]},{"name":"STATUS_NOLOGON_SERVER_TRUST_ACCOUNT","features":[303]},{"name":"STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[303]},{"name":"STATUS_NONCONTINUABLE_EXCEPTION","features":[303]},{"name":"STATUS_NONEXISTENT_EA_ENTRY","features":[303]},{"name":"STATUS_NONEXISTENT_SECTOR","features":[303]},{"name":"STATUS_NONE_MAPPED","features":[303]},{"name":"STATUS_NOTHING_TO_TERMINATE","features":[303]},{"name":"STATUS_NOTIFICATION_GUID_ALREADY_DEFINED","features":[303]},{"name":"STATUS_NOTIFY_CLEANUP","features":[303]},{"name":"STATUS_NOTIFY_ENUM_DIR","features":[303]},{"name":"STATUS_NOT_ALLOWED_ON_SYSTEM_FILE","features":[303]},{"name":"STATUS_NOT_ALL_ASSIGNED","features":[303]},{"name":"STATUS_NOT_APPCONTAINER","features":[303]},{"name":"STATUS_NOT_A_CLOUD_FILE","features":[303]},{"name":"STATUS_NOT_A_CLOUD_SYNC_ROOT","features":[303]},{"name":"STATUS_NOT_A_DAX_VOLUME","features":[303]},{"name":"STATUS_NOT_A_DEV_VOLUME","features":[303]},{"name":"STATUS_NOT_A_DIRECTORY","features":[303]},{"name":"STATUS_NOT_A_REPARSE_POINT","features":[303]},{"name":"STATUS_NOT_A_TIERED_VOLUME","features":[303]},{"name":"STATUS_NOT_CAPABLE","features":[303]},{"name":"STATUS_NOT_CLIENT_SESSION","features":[303]},{"name":"STATUS_NOT_COMMITTED","features":[303]},{"name":"STATUS_NOT_DAX_MAPPABLE","features":[303]},{"name":"STATUS_NOT_EXPORT_FORMAT","features":[303]},{"name":"STATUS_NOT_FOUND","features":[303]},{"name":"STATUS_NOT_GUI_PROCESS","features":[303]},{"name":"STATUS_NOT_IMPLEMENTED","features":[303]},{"name":"STATUS_NOT_LOCKED","features":[303]},{"name":"STATUS_NOT_LOGON_PROCESS","features":[303]},{"name":"STATUS_NOT_MAPPED_DATA","features":[303]},{"name":"STATUS_NOT_MAPPED_VIEW","features":[303]},{"name":"STATUS_NOT_READ_FROM_COPY","features":[303]},{"name":"STATUS_NOT_REDUNDANT_STORAGE","features":[303]},{"name":"STATUS_NOT_REGISTRY_FILE","features":[303]},{"name":"STATUS_NOT_SAFE_MODE_DRIVER","features":[303]},{"name":"STATUS_NOT_SAME_DEVICE","features":[303]},{"name":"STATUS_NOT_SAME_OBJECT","features":[303]},{"name":"STATUS_NOT_SERVER_SESSION","features":[303]},{"name":"STATUS_NOT_SNAPSHOT_VOLUME","features":[303]},{"name":"STATUS_NOT_SUPPORTED","features":[303]},{"name":"STATUS_NOT_SUPPORTED_IN_APPCONTAINER","features":[303]},{"name":"STATUS_NOT_SUPPORTED_ON_DAX","features":[303]},{"name":"STATUS_NOT_SUPPORTED_ON_SBS","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_AUDITING","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_BTT","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_BYPASSIO","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_COMPRESSION","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_ENCRYPTION","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_MONITORING","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_REPLICATION","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_SNAPSHOT","features":[303]},{"name":"STATUS_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[303]},{"name":"STATUS_NOT_TINY_STREAM","features":[303]},{"name":"STATUS_NO_ACE_CONDITION","features":[303]},{"name":"STATUS_NO_APPLICABLE_APP_LICENSES_FOUND","features":[303]},{"name":"STATUS_NO_APPLICATION_PACKAGE","features":[303]},{"name":"STATUS_NO_BROWSER_SERVERS_FOUND","features":[303]},{"name":"STATUS_NO_BYPASSIO_DRIVER_SUPPORT","features":[303]},{"name":"STATUS_NO_CALLBACK_ACTIVE","features":[303]},{"name":"STATUS_NO_DATA_DETECTED","features":[303]},{"name":"STATUS_NO_EAS_ON_FILE","features":[303]},{"name":"STATUS_NO_EFS","features":[303]},{"name":"STATUS_NO_EVENT_PAIR","features":[303]},{"name":"STATUS_NO_GUID_TRANSLATION","features":[303]},{"name":"STATUS_NO_IMPERSONATION_TOKEN","features":[303]},{"name":"STATUS_NO_INHERITANCE","features":[303]},{"name":"STATUS_NO_IP_ADDRESSES","features":[303]},{"name":"STATUS_NO_KERB_KEY","features":[303]},{"name":"STATUS_NO_KEY","features":[303]},{"name":"STATUS_NO_LDT","features":[303]},{"name":"STATUS_NO_LINK_TRACKING_IN_TRANSACTION","features":[303]},{"name":"STATUS_NO_LOGON_SERVERS","features":[303]},{"name":"STATUS_NO_LOG_SPACE","features":[303]},{"name":"STATUS_NO_MATCH","features":[303]},{"name":"STATUS_NO_MEDIA","features":[303]},{"name":"STATUS_NO_MEDIA_IN_DEVICE","features":[303]},{"name":"STATUS_NO_MEMORY","features":[303]},{"name":"STATUS_NO_MORE_EAS","features":[303]},{"name":"STATUS_NO_MORE_ENTRIES","features":[303]},{"name":"STATUS_NO_MORE_FILES","features":[303]},{"name":"STATUS_NO_MORE_MATCHES","features":[303]},{"name":"STATUS_NO_PAGEFILE","features":[303]},{"name":"STATUS_NO_PA_DATA","features":[303]},{"name":"STATUS_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[303]},{"name":"STATUS_NO_QUOTAS_FOR_ACCOUNT","features":[303]},{"name":"STATUS_NO_RANGES_PROCESSED","features":[303]},{"name":"STATUS_NO_RECOVERY_POLICY","features":[303]},{"name":"STATUS_NO_S4U_PROT_SUPPORT","features":[303]},{"name":"STATUS_NO_SAVEPOINT_WITH_OPEN_FILES","features":[303]},{"name":"STATUS_NO_SECRETS","features":[303]},{"name":"STATUS_NO_SECURITY_CONTEXT","features":[303]},{"name":"STATUS_NO_SECURITY_ON_OBJECT","features":[303]},{"name":"STATUS_NO_SPOOL_SPACE","features":[303]},{"name":"STATUS_NO_SUCH_ALIAS","features":[303]},{"name":"STATUS_NO_SUCH_DEVICE","features":[303]},{"name":"STATUS_NO_SUCH_DOMAIN","features":[303]},{"name":"STATUS_NO_SUCH_FILE","features":[303]},{"name":"STATUS_NO_SUCH_GROUP","features":[303]},{"name":"STATUS_NO_SUCH_MEMBER","features":[303]},{"name":"STATUS_NO_SUCH_PACKAGE","features":[303]},{"name":"STATUS_NO_SUCH_PRIVILEGE","features":[303]},{"name":"STATUS_NO_TGT_REPLY","features":[303]},{"name":"STATUS_NO_TOKEN","features":[303]},{"name":"STATUS_NO_TRACKING_SERVICE","features":[303]},{"name":"STATUS_NO_TRUST_LSA_SECRET","features":[303]},{"name":"STATUS_NO_TRUST_SAM_ACCOUNT","features":[303]},{"name":"STATUS_NO_TXF_METADATA","features":[303]},{"name":"STATUS_NO_UNICODE_TRANSLATION","features":[303]},{"name":"STATUS_NO_USER_KEYS","features":[303]},{"name":"STATUS_NO_USER_SESSION_KEY","features":[303]},{"name":"STATUS_NO_WORK_DONE","features":[303]},{"name":"STATUS_NO_YIELD_PERFORMED","features":[303]},{"name":"STATUS_NTLM_BLOCKED","features":[303]},{"name":"STATUS_NT_CROSS_ENCRYPTION_REQUIRED","features":[303]},{"name":"STATUS_NULL_LM_PASSWORD","features":[303]},{"name":"STATUS_OBJECTID_EXISTS","features":[303]},{"name":"STATUS_OBJECTID_NOT_FOUND","features":[303]},{"name":"STATUS_OBJECT_IS_IMMUTABLE","features":[303]},{"name":"STATUS_OBJECT_NAME_COLLISION","features":[303]},{"name":"STATUS_OBJECT_NAME_EXISTS","features":[303]},{"name":"STATUS_OBJECT_NAME_INVALID","features":[303]},{"name":"STATUS_OBJECT_NAME_NOT_FOUND","features":[303]},{"name":"STATUS_OBJECT_NOT_EXTERNALLY_BACKED","features":[303]},{"name":"STATUS_OBJECT_NO_LONGER_EXISTS","features":[303]},{"name":"STATUS_OBJECT_PATH_INVALID","features":[303]},{"name":"STATUS_OBJECT_PATH_NOT_FOUND","features":[303]},{"name":"STATUS_OBJECT_PATH_SYNTAX_BAD","features":[303]},{"name":"STATUS_OBJECT_TYPE_MISMATCH","features":[303]},{"name":"STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[303]},{"name":"STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[303]},{"name":"STATUS_ONLY_IF_CONNECTED","features":[303]},{"name":"STATUS_OPEN_FAILED","features":[303]},{"name":"STATUS_OPERATION_IN_PROGRESS","features":[303]},{"name":"STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[303]},{"name":"STATUS_OPLOCK_BREAK_IN_PROGRESS","features":[303]},{"name":"STATUS_OPLOCK_HANDLE_CLOSED","features":[303]},{"name":"STATUS_OPLOCK_NOT_GRANTED","features":[303]},{"name":"STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[303]},{"name":"STATUS_ORDINAL_NOT_FOUND","features":[303]},{"name":"STATUS_ORPHAN_NAME_EXHAUSTED","features":[303]},{"name":"STATUS_PACKAGE_NOT_AVAILABLE","features":[303]},{"name":"STATUS_PACKAGE_UPDATING","features":[303]},{"name":"STATUS_PAGEFILE_CREATE_FAILED","features":[303]},{"name":"STATUS_PAGEFILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PAGEFILE_QUOTA","features":[303]},{"name":"STATUS_PAGEFILE_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_PAGE_FAULT_COPY_ON_WRITE","features":[303]},{"name":"STATUS_PAGE_FAULT_DEMAND_ZERO","features":[303]},{"name":"STATUS_PAGE_FAULT_GUARD_PAGE","features":[303]},{"name":"STATUS_PAGE_FAULT_PAGING_FILE","features":[303]},{"name":"STATUS_PAGE_FAULT_RETRY","features":[303]},{"name":"STATUS_PAGE_FAULT_TRANSITION","features":[303]},{"name":"STATUS_PARAMETER_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_PARITY_ERROR","features":[303]},{"name":"STATUS_PARTIAL_COPY","features":[303]},{"name":"STATUS_PARTITION_FAILURE","features":[303]},{"name":"STATUS_PARTITION_TERMINATING","features":[303]},{"name":"STATUS_PASSWORD_CHANGE_REQUIRED","features":[303]},{"name":"STATUS_PASSWORD_RESTRICTION","features":[303]},{"name":"STATUS_PATCH_CONFLICT","features":[303]},{"name":"STATUS_PATCH_DEFERRED","features":[303]},{"name":"STATUS_PATCH_NOT_REGISTERED","features":[303]},{"name":"STATUS_PATH_NOT_COVERED","features":[303]},{"name":"STATUS_PCP_ATTESTATION_CHALLENGE_NOT_SET","features":[303]},{"name":"STATUS_PCP_AUTHENTICATION_FAILED","features":[303]},{"name":"STATUS_PCP_AUTHENTICATION_IGNORED","features":[303]},{"name":"STATUS_PCP_BUFFER_LENGTH_MISMATCH","features":[303]},{"name":"STATUS_PCP_BUFFER_TOO_SMALL","features":[303]},{"name":"STATUS_PCP_CLAIM_TYPE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PCP_DEVICE_NOT_FOUND","features":[303]},{"name":"STATUS_PCP_DEVICE_NOT_READY","features":[303]},{"name":"STATUS_PCP_ERROR_MASK","features":[303]},{"name":"STATUS_PCP_FLAG_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[303]},{"name":"STATUS_PCP_INTERNAL_ERROR","features":[303]},{"name":"STATUS_PCP_INVALID_HANDLE","features":[303]},{"name":"STATUS_PCP_INVALID_PARAMETER","features":[303]},{"name":"STATUS_PCP_KEY_ALREADY_FINALIZED","features":[303]},{"name":"STATUS_PCP_KEY_HANDLE_INVALIDATED","features":[303]},{"name":"STATUS_PCP_KEY_NOT_AIK","features":[303]},{"name":"STATUS_PCP_KEY_NOT_AUTHENTICATED","features":[303]},{"name":"STATUS_PCP_KEY_NOT_FINALIZED","features":[303]},{"name":"STATUS_PCP_KEY_NOT_LOADED","features":[303]},{"name":"STATUS_PCP_KEY_NOT_SIGNING_KEY","features":[303]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_INVALID","features":[303]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PCP_LOCKED_OUT","features":[303]},{"name":"STATUS_PCP_NOT_PCR_BOUND","features":[303]},{"name":"STATUS_PCP_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PCP_NO_KEY_CERTIFICATION","features":[303]},{"name":"STATUS_PCP_POLICY_NOT_FOUND","features":[303]},{"name":"STATUS_PCP_PROFILE_NOT_FOUND","features":[303]},{"name":"STATUS_PCP_RAW_POLICY_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PCP_SOFT_KEY_ERROR","features":[303]},{"name":"STATUS_PCP_TICKET_MISSING","features":[303]},{"name":"STATUS_PCP_TPM_VERSION_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PCP_UNSUPPORTED_PSS_SALT","features":[303]},{"name":"STATUS_PCP_VALIDATION_FAILED","features":[303]},{"name":"STATUS_PCP_WRONG_PARENT","features":[303]},{"name":"STATUS_PENDING","features":[303]},{"name":"STATUS_PER_USER_TRUST_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_PIPE_BROKEN","features":[303]},{"name":"STATUS_PIPE_BUSY","features":[303]},{"name":"STATUS_PIPE_CLOSING","features":[303]},{"name":"STATUS_PIPE_CONNECTED","features":[303]},{"name":"STATUS_PIPE_DISCONNECTED","features":[303]},{"name":"STATUS_PIPE_EMPTY","features":[303]},{"name":"STATUS_PIPE_LISTENING","features":[303]},{"name":"STATUS_PIPE_NOT_AVAILABLE","features":[303]},{"name":"STATUS_PKINIT_CLIENT_FAILURE","features":[303]},{"name":"STATUS_PKINIT_FAILURE","features":[303]},{"name":"STATUS_PKINIT_NAME_MISMATCH","features":[303]},{"name":"STATUS_PKU2U_CERT_FAILURE","features":[303]},{"name":"STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[303]},{"name":"STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[303]},{"name":"STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[303]},{"name":"STATUS_PLATFORM_MANIFEST_INVALID","features":[303]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_ACTIVE","features":[303]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[303]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_SIGNED","features":[303]},{"name":"STATUS_PLUGPLAY_NO_DEVICE","features":[303]},{"name":"STATUS_PLUGPLAY_QUERY_VETOED","features":[303]},{"name":"STATUS_PNP_BAD_MPS_TABLE","features":[303]},{"name":"STATUS_PNP_DEVICE_CONFIGURATION_PENDING","features":[303]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE","features":[303]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND","features":[303]},{"name":"STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND","features":[303]},{"name":"STATUS_PNP_FUNCTION_DRIVER_REQUIRED","features":[303]},{"name":"STATUS_PNP_INVALID_ID","features":[303]},{"name":"STATUS_PNP_IRQ_TRANSLATION_FAILED","features":[303]},{"name":"STATUS_PNP_NO_COMPAT_DRIVERS","features":[303]},{"name":"STATUS_PNP_REBOOT_REQUIRED","features":[303]},{"name":"STATUS_PNP_RESTART_ENUMERATION","features":[303]},{"name":"STATUS_PNP_TRANSLATION_FAILED","features":[303]},{"name":"STATUS_POLICY_CONTROLLED_ACCOUNT","features":[303]},{"name":"STATUS_POLICY_OBJECT_NOT_FOUND","features":[303]},{"name":"STATUS_POLICY_ONLY_IN_DS","features":[303]},{"name":"STATUS_PORT_ALREADY_HAS_COMPLETION_LIST","features":[303]},{"name":"STATUS_PORT_ALREADY_SET","features":[303]},{"name":"STATUS_PORT_CLOSED","features":[303]},{"name":"STATUS_PORT_CONNECTION_REFUSED","features":[303]},{"name":"STATUS_PORT_DISCONNECTED","features":[303]},{"name":"STATUS_PORT_DO_NOT_DISTURB","features":[303]},{"name":"STATUS_PORT_MESSAGE_TOO_LONG","features":[303]},{"name":"STATUS_PORT_NOT_SET","features":[303]},{"name":"STATUS_PORT_UNREACHABLE","features":[303]},{"name":"STATUS_POSSIBLE_DEADLOCK","features":[303]},{"name":"STATUS_POWER_STATE_INVALID","features":[303]},{"name":"STATUS_PREDEFINED_HANDLE","features":[303]},{"name":"STATUS_PRENT4_MACHINE_ACCOUNT","features":[303]},{"name":"STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[303]},{"name":"STATUS_PRINT_CANCELLED","features":[303]},{"name":"STATUS_PRINT_QUEUE_FULL","features":[303]},{"name":"STATUS_PRIVILEGED_INSTRUCTION","features":[303]},{"name":"STATUS_PRIVILEGE_NOT_HELD","features":[303]},{"name":"STATUS_PROACTIVE_SCAN_IN_PROGRESS","features":[303]},{"name":"STATUS_PROCEDURE_NOT_FOUND","features":[303]},{"name":"STATUS_PROCESS_CLONED","features":[303]},{"name":"STATUS_PROCESS_IN_JOB","features":[303]},{"name":"STATUS_PROCESS_IS_PROTECTED","features":[303]},{"name":"STATUS_PROCESS_IS_TERMINATING","features":[303]},{"name":"STATUS_PROCESS_NOT_IN_JOB","features":[303]},{"name":"STATUS_PROFILING_AT_LIMIT","features":[303]},{"name":"STATUS_PROFILING_NOT_STARTED","features":[303]},{"name":"STATUS_PROFILING_NOT_STOPPED","features":[303]},{"name":"STATUS_PROPSET_NOT_FOUND","features":[303]},{"name":"STATUS_PROTOCOL_NOT_SUPPORTED","features":[303]},{"name":"STATUS_PROTOCOL_UNREACHABLE","features":[303]},{"name":"STATUS_PTE_CHANGED","features":[303]},{"name":"STATUS_PURGE_FAILED","features":[303]},{"name":"STATUS_PWD_HISTORY_CONFLICT","features":[303]},{"name":"STATUS_PWD_TOO_LONG","features":[303]},{"name":"STATUS_PWD_TOO_RECENT","features":[303]},{"name":"STATUS_PWD_TOO_SHORT","features":[303]},{"name":"STATUS_QUERY_STORAGE_ERROR","features":[303]},{"name":"STATUS_QUIC_ALPN_NEG_FAILURE","features":[303]},{"name":"STATUS_QUIC_CONNECTION_IDLE","features":[303]},{"name":"STATUS_QUIC_CONNECTION_TIMEOUT","features":[303]},{"name":"STATUS_QUIC_HANDSHAKE_FAILURE","features":[303]},{"name":"STATUS_QUIC_INTERNAL_ERROR","features":[303]},{"name":"STATUS_QUIC_PROTOCOL_VIOLATION","features":[303]},{"name":"STATUS_QUIC_USER_CANCELED","features":[303]},{"name":"STATUS_QUIC_VER_NEG_FAILURE","features":[303]},{"name":"STATUS_QUOTA_ACTIVITY","features":[303]},{"name":"STATUS_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_QUOTA_LIST_INCONSISTENT","features":[303]},{"name":"STATUS_QUOTA_NOT_ENABLED","features":[303]},{"name":"STATUS_RANGE_LIST_CONFLICT","features":[303]},{"name":"STATUS_RANGE_NOT_FOUND","features":[303]},{"name":"STATUS_RANGE_NOT_LOCKED","features":[303]},{"name":"STATUS_RDBSS_CONTINUE_OPERATION","features":[303]},{"name":"STATUS_RDBSS_POST_OPERATION","features":[303]},{"name":"STATUS_RDBSS_RESTART_OPERATION","features":[303]},{"name":"STATUS_RDBSS_RETRY_LOOKUP","features":[303]},{"name":"STATUS_RDP_PROTOCOL_ERROR","features":[303]},{"name":"STATUS_RECEIVE_EXPEDITED","features":[303]},{"name":"STATUS_RECEIVE_PARTIAL","features":[303]},{"name":"STATUS_RECEIVE_PARTIAL_EXPEDITED","features":[303]},{"name":"STATUS_RECOVERABLE_BUGCHECK","features":[303]},{"name":"STATUS_RECOVERY_FAILURE","features":[303]},{"name":"STATUS_RECOVERY_NOT_NEEDED","features":[303]},{"name":"STATUS_RECURSIVE_DISPATCH","features":[303]},{"name":"STATUS_REDIRECTOR_HAS_OPEN_HANDLES","features":[303]},{"name":"STATUS_REDIRECTOR_NOT_STARTED","features":[303]},{"name":"STATUS_REDIRECTOR_PAUSED","features":[303]},{"name":"STATUS_REDIRECTOR_STARTED","features":[303]},{"name":"STATUS_REGISTRY_CORRUPT","features":[303]},{"name":"STATUS_REGISTRY_HIVE_RECOVERED","features":[303]},{"name":"STATUS_REGISTRY_IO_FAILED","features":[303]},{"name":"STATUS_REGISTRY_QUOTA_LIMIT","features":[303]},{"name":"STATUS_REGISTRY_RECOVERED","features":[303]},{"name":"STATUS_REG_NAT_CONSUMPTION","features":[303]},{"name":"STATUS_REINITIALIZATION_NEEDED","features":[303]},{"name":"STATUS_REMOTE_DISCONNECT","features":[303]},{"name":"STATUS_REMOTE_FILE_VERSION_MISMATCH","features":[303]},{"name":"STATUS_REMOTE_NOT_LISTENING","features":[303]},{"name":"STATUS_REMOTE_RESOURCES","features":[303]},{"name":"STATUS_REMOTE_SESSION_LIMIT","features":[303]},{"name":"STATUS_REMOTE_STORAGE_MEDIA_ERROR","features":[303]},{"name":"STATUS_REMOTE_STORAGE_NOT_ACTIVE","features":[303]},{"name":"STATUS_REPAIR_NEEDED","features":[303]},{"name":"STATUS_REPARSE","features":[303]},{"name":"STATUS_REPARSE_ATTRIBUTE_CONFLICT","features":[303]},{"name":"STATUS_REPARSE_GLOBAL","features":[303]},{"name":"STATUS_REPARSE_OBJECT","features":[303]},{"name":"STATUS_REPARSE_POINT_ENCOUNTERED","features":[303]},{"name":"STATUS_REPARSE_POINT_NOT_RESOLVED","features":[303]},{"name":"STATUS_REPLY_MESSAGE_MISMATCH","features":[303]},{"name":"STATUS_REQUEST_ABORTED","features":[303]},{"name":"STATUS_REQUEST_CANCELED","features":[303]},{"name":"STATUS_REQUEST_NOT_ACCEPTED","features":[303]},{"name":"STATUS_REQUEST_OUT_OF_SEQUENCE","features":[303]},{"name":"STATUS_REQUEST_PAUSED","features":[303]},{"name":"STATUS_RESIDENT_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_RESOURCEMANAGER_NOT_FOUND","features":[303]},{"name":"STATUS_RESOURCEMANAGER_READ_ONLY","features":[303]},{"name":"STATUS_RESOURCE_DATA_NOT_FOUND","features":[303]},{"name":"STATUS_RESOURCE_ENUM_USER_STOP","features":[303]},{"name":"STATUS_RESOURCE_IN_USE","features":[303]},{"name":"STATUS_RESOURCE_LANG_NOT_FOUND","features":[303]},{"name":"STATUS_RESOURCE_NAME_NOT_FOUND","features":[303]},{"name":"STATUS_RESOURCE_NOT_OWNED","features":[303]},{"name":"STATUS_RESOURCE_REQUIREMENTS_CHANGED","features":[303]},{"name":"STATUS_RESOURCE_TYPE_NOT_FOUND","features":[303]},{"name":"STATUS_RESTART_BOOT_APPLICATION","features":[303]},{"name":"STATUS_RESUME_HIBERNATION","features":[303]},{"name":"STATUS_RETRY","features":[303]},{"name":"STATUS_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[303]},{"name":"STATUS_REVISION_MISMATCH","features":[303]},{"name":"STATUS_REVOCATION_OFFLINE_C","features":[303]},{"name":"STATUS_REVOCATION_OFFLINE_KDC","features":[303]},{"name":"STATUS_RING_NEWLY_EMPTY","features":[303]},{"name":"STATUS_RING_PREVIOUSLY_ABOVE_QUOTA","features":[303]},{"name":"STATUS_RING_PREVIOUSLY_EMPTY","features":[303]},{"name":"STATUS_RING_PREVIOUSLY_FULL","features":[303]},{"name":"STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT","features":[303]},{"name":"STATUS_RKF_ACTIVE_KEY","features":[303]},{"name":"STATUS_RKF_BLOB_FULL","features":[303]},{"name":"STATUS_RKF_DUPLICATE_KEY","features":[303]},{"name":"STATUS_RKF_FILE_BLOCKED","features":[303]},{"name":"STATUS_RKF_KEY_NOT_FOUND","features":[303]},{"name":"STATUS_RKF_STORE_FULL","features":[303]},{"name":"STATUS_RM_ALREADY_STARTED","features":[303]},{"name":"STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[303]},{"name":"STATUS_RM_DISCONNECTED","features":[303]},{"name":"STATUS_RM_METADATA_CORRUPT","features":[303]},{"name":"STATUS_RM_NOT_ACTIVE","features":[303]},{"name":"STATUS_ROLLBACK_TIMER_EXPIRED","features":[303]},{"name":"STATUS_RTPM_CONTEXT_COMPLETE","features":[303]},{"name":"STATUS_RTPM_CONTEXT_CONTINUE","features":[303]},{"name":"STATUS_RTPM_INVALID_CONTEXT","features":[303]},{"name":"STATUS_RTPM_NO_RESULT","features":[303]},{"name":"STATUS_RTPM_PCR_READ_INCOMPLETE","features":[303]},{"name":"STATUS_RTPM_UNSUPPORTED_CMD","features":[303]},{"name":"STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[303]},{"name":"STATUS_RUNLEVEL_SWITCH_IN_PROGRESS","features":[303]},{"name":"STATUS_RUNLEVEL_SWITCH_TIMEOUT","features":[303]},{"name":"STATUS_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[303]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[303]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[303]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[303]},{"name":"STATUS_RXACT_COMMITTED","features":[303]},{"name":"STATUS_RXACT_COMMIT_FAILURE","features":[303]},{"name":"STATUS_RXACT_COMMIT_NECESSARY","features":[303]},{"name":"STATUS_RXACT_INVALID_STATE","features":[303]},{"name":"STATUS_RXACT_STATE_CREATED","features":[303]},{"name":"STATUS_SAM_INIT_FAILURE","features":[303]},{"name":"STATUS_SAM_NEED_BOOTKEY_FLOPPY","features":[303]},{"name":"STATUS_SAM_NEED_BOOTKEY_PASSWORD","features":[303]},{"name":"STATUS_SCRUB_DATA_DISABLED","features":[303]},{"name":"STATUS_SECCORE_INVALID_COMMAND","features":[303]},{"name":"STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[303]},{"name":"STATUS_SECRET_TOO_LONG","features":[303]},{"name":"STATUS_SECTION_DIRECT_MAP_ONLY","features":[303]},{"name":"STATUS_SECTION_NOT_EXTENDED","features":[303]},{"name":"STATUS_SECTION_NOT_IMAGE","features":[303]},{"name":"STATUS_SECTION_PROTECTION","features":[303]},{"name":"STATUS_SECTION_TOO_BIG","features":[303]},{"name":"STATUS_SECUREBOOT_FILE_REPLACED","features":[303]},{"name":"STATUS_SECUREBOOT_INVALID_POLICY","features":[303]},{"name":"STATUS_SECUREBOOT_NOT_BASE_POLICY","features":[303]},{"name":"STATUS_SECUREBOOT_NOT_ENABLED","features":[303]},{"name":"STATUS_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[303]},{"name":"STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_SIGNED","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_UNKNOWN","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[303]},{"name":"STATUS_SECUREBOOT_POLICY_VIOLATION","features":[303]},{"name":"STATUS_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[303]},{"name":"STATUS_SECUREBOOT_ROLLBACK_DETECTED","features":[303]},{"name":"STATUS_SECURITY_STREAM_IS_INCONSISTENT","features":[303]},{"name":"STATUS_SEGMENT_NOTIFICATION","features":[303]},{"name":"STATUS_SEMAPHORE_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_SERIAL_COUNTER_TIMEOUT","features":[303]},{"name":"STATUS_SERIAL_MORE_WRITES","features":[303]},{"name":"STATUS_SERIAL_NO_DEVICE_INITED","features":[303]},{"name":"STATUS_SERVER_DISABLED","features":[303]},{"name":"STATUS_SERVER_HAS_OPEN_HANDLES","features":[303]},{"name":"STATUS_SERVER_NOT_DISABLED","features":[303]},{"name":"STATUS_SERVER_SHUTDOWN_IN_PROGRESS","features":[303]},{"name":"STATUS_SERVER_SID_MISMATCH","features":[303]},{"name":"STATUS_SERVER_TRANSPORT_CONFLICT","features":[303]},{"name":"STATUS_SERVER_UNAVAILABLE","features":[303]},{"name":"STATUS_SERVICES_FAILED_AUTOSTART","features":[303]},{"name":"STATUS_SERVICE_NOTIFICATION","features":[303]},{"name":"STATUS_SESSION_KEY_TOO_SHORT","features":[303]},{"name":"STATUS_SETMARK_DETECTED","features":[303]},{"name":"STATUS_SET_CONTEXT_DENIED","features":[303]},{"name":"STATUS_SEVERITY_COERROR","features":[303]},{"name":"STATUS_SEVERITY_COFAIL","features":[303]},{"name":"STATUS_SEVERITY_ERROR","features":[303]},{"name":"STATUS_SEVERITY_INFORMATIONAL","features":[303]},{"name":"STATUS_SEVERITY_SUCCESS","features":[303]},{"name":"STATUS_SEVERITY_WARNING","features":[303]},{"name":"STATUS_SHARED_IRQ_BUSY","features":[303]},{"name":"STATUS_SHARED_POLICY","features":[303]},{"name":"STATUS_SHARE_UNAVAILABLE","features":[303]},{"name":"STATUS_SHARING_PAUSED","features":[303]},{"name":"STATUS_SHARING_VIOLATION","features":[303]},{"name":"STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[303]},{"name":"STATUS_SHUTDOWN_IN_PROGRESS","features":[303]},{"name":"STATUS_SINGLE_STEP","features":[303]},{"name":"STATUS_SMARTCARD_CARD_BLOCKED","features":[303]},{"name":"STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED","features":[303]},{"name":"STATUS_SMARTCARD_CERT_EXPIRED","features":[303]},{"name":"STATUS_SMARTCARD_CERT_REVOKED","features":[303]},{"name":"STATUS_SMARTCARD_IO_ERROR","features":[303]},{"name":"STATUS_SMARTCARD_LOGON_REQUIRED","features":[303]},{"name":"STATUS_SMARTCARD_NO_CARD","features":[303]},{"name":"STATUS_SMARTCARD_NO_CERTIFICATE","features":[303]},{"name":"STATUS_SMARTCARD_NO_KEYSET","features":[303]},{"name":"STATUS_SMARTCARD_NO_KEY_CONTAINER","features":[303]},{"name":"STATUS_SMARTCARD_SILENT_CONTEXT","features":[303]},{"name":"STATUS_SMARTCARD_SUBSYSTEM_FAILURE","features":[303]},{"name":"STATUS_SMARTCARD_WRONG_PIN","features":[303]},{"name":"STATUS_SMB1_NOT_AVAILABLE","features":[303]},{"name":"STATUS_SMB_BAD_CLUSTER_DIALECT","features":[303]},{"name":"STATUS_SMB_GUEST_LOGON_BLOCKED","features":[303]},{"name":"STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[303]},{"name":"STATUS_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[303]},{"name":"STATUS_SMI_PRIMITIVE_INSTALLER_FAILED","features":[303]},{"name":"STATUS_SMR_GARBAGE_COLLECTION_REQUIRED","features":[303]},{"name":"STATUS_SOME_NOT_MAPPED","features":[303]},{"name":"STATUS_SOURCE_ELEMENT_EMPTY","features":[303]},{"name":"STATUS_SPACES_ALLOCATION_SIZE_INVALID","features":[303]},{"name":"STATUS_SPACES_CACHE_FULL","features":[303]},{"name":"STATUS_SPACES_COMPLETE","features":[303]},{"name":"STATUS_SPACES_CORRUPT_METADATA","features":[303]},{"name":"STATUS_SPACES_DRIVE_LOST_DATA","features":[303]},{"name":"STATUS_SPACES_DRIVE_NOT_READY","features":[303]},{"name":"STATUS_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[303]},{"name":"STATUS_SPACES_DRIVE_REDUNDANCY_INVALID","features":[303]},{"name":"STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[303]},{"name":"STATUS_SPACES_DRIVE_SPLIT","features":[303]},{"name":"STATUS_SPACES_DRT_FULL","features":[303]},{"name":"STATUS_SPACES_ENCLOSURE_AWARE_INVALID","features":[303]},{"name":"STATUS_SPACES_ENTRY_INCOMPLETE","features":[303]},{"name":"STATUS_SPACES_ENTRY_INVALID","features":[303]},{"name":"STATUS_SPACES_EXTENDED_ERROR","features":[303]},{"name":"STATUS_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[303]},{"name":"STATUS_SPACES_FLUSH_METADATA","features":[303]},{"name":"STATUS_SPACES_INCONSISTENCY","features":[303]},{"name":"STATUS_SPACES_INTERLEAVE_LENGTH_INVALID","features":[303]},{"name":"STATUS_SPACES_LOG_NOT_READY","features":[303]},{"name":"STATUS_SPACES_MAP_REQUIRED","features":[303]},{"name":"STATUS_SPACES_MARK_DIRTY","features":[303]},{"name":"STATUS_SPACES_NOT_ENOUGH_DRIVES","features":[303]},{"name":"STATUS_SPACES_NO_REDUNDANCY","features":[303]},{"name":"STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[303]},{"name":"STATUS_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[303]},{"name":"STATUS_SPACES_NUMBER_OF_GROUPS_INVALID","features":[303]},{"name":"STATUS_SPACES_PAUSE","features":[303]},{"name":"STATUS_SPACES_PD_INVALID_DATA","features":[303]},{"name":"STATUS_SPACES_PD_LENGTH_MISMATCH","features":[303]},{"name":"STATUS_SPACES_PD_NOT_FOUND","features":[303]},{"name":"STATUS_SPACES_PD_UNSUPPORTED_VERSION","features":[303]},{"name":"STATUS_SPACES_PROVISIONING_TYPE_INVALID","features":[303]},{"name":"STATUS_SPACES_REDIRECT","features":[303]},{"name":"STATUS_SPACES_REPAIRED","features":[303]},{"name":"STATUS_SPACES_REPAIR_IN_PROGRESS","features":[303]},{"name":"STATUS_SPACES_RESILIENCY_TYPE_INVALID","features":[303]},{"name":"STATUS_SPACES_UNSUPPORTED_VERSION","features":[303]},{"name":"STATUS_SPACES_UPDATE_COLUMN_STATE","features":[303]},{"name":"STATUS_SPACES_WRITE_CACHE_SIZE_INVALID","features":[303]},{"name":"STATUS_SPARSE_FILE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[303]},{"name":"STATUS_SPECIAL_ACCOUNT","features":[303]},{"name":"STATUS_SPECIAL_GROUP","features":[303]},{"name":"STATUS_SPECIAL_USER","features":[303]},{"name":"STATUS_STACK_BUFFER_OVERRUN","features":[303]},{"name":"STATUS_STACK_OVERFLOW","features":[303]},{"name":"STATUS_STACK_OVERFLOW_READ","features":[303]},{"name":"STATUS_STOPPED_ON_SYMLINK","features":[303]},{"name":"STATUS_STORAGE_LOST_DATA_PERSISTENCE","features":[303]},{"name":"STATUS_STORAGE_RESERVE_ALREADY_EXISTS","features":[303]},{"name":"STATUS_STORAGE_RESERVE_DOES_NOT_EXIST","features":[303]},{"name":"STATUS_STORAGE_RESERVE_ID_INVALID","features":[303]},{"name":"STATUS_STORAGE_RESERVE_NOT_EMPTY","features":[303]},{"name":"STATUS_STORAGE_STACK_ACCESS_DENIED","features":[303]},{"name":"STATUS_STORAGE_TOPOLOGY_ID_MISMATCH","features":[303]},{"name":"STATUS_STOWED_EXCEPTION","features":[303]},{"name":"STATUS_STREAM_MINIVERSION_NOT_FOUND","features":[303]},{"name":"STATUS_STREAM_MINIVERSION_NOT_VALID","features":[303]},{"name":"STATUS_STRICT_CFG_VIOLATION","features":[303]},{"name":"STATUS_STRONG_CRYPTO_NOT_SUPPORTED","features":[303]},{"name":"STATUS_SUCCESS","features":[303]},{"name":"STATUS_SUSPEND_COUNT_EXCEEDED","features":[303]},{"name":"STATUS_SVHDX_ERROR_NOT_AVAILABLE","features":[303]},{"name":"STATUS_SVHDX_ERROR_STORED","features":[303]},{"name":"STATUS_SVHDX_NO_INITIATOR","features":[303]},{"name":"STATUS_SVHDX_RESERVATION_CONFLICT","features":[303]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[303]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[303]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[303]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[303]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[303]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[303]},{"name":"STATUS_SVHDX_VERSION_MISMATCH","features":[303]},{"name":"STATUS_SVHDX_WRONG_FILE_TYPE","features":[303]},{"name":"STATUS_SXS_ACTIVATION_CONTEXT_DISABLED","features":[303]},{"name":"STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[303]},{"name":"STATUS_SXS_ASSEMBLY_MISSING","features":[303]},{"name":"STATUS_SXS_ASSEMBLY_NOT_FOUND","features":[303]},{"name":"STATUS_SXS_CANT_GEN_ACTCTX","features":[303]},{"name":"STATUS_SXS_COMPONENT_STORE_CORRUPT","features":[303]},{"name":"STATUS_SXS_CORRUPTION","features":[303]},{"name":"STATUS_SXS_CORRUPT_ACTIVATION_STACK","features":[303]},{"name":"STATUS_SXS_EARLY_DEACTIVATION","features":[303]},{"name":"STATUS_SXS_FILE_HASH_MISMATCH","features":[303]},{"name":"STATUS_SXS_FILE_HASH_MISSING","features":[303]},{"name":"STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[303]},{"name":"STATUS_SXS_IDENTITIES_DIFFERENT","features":[303]},{"name":"STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[303]},{"name":"STATUS_SXS_IDENTITY_PARSE_ERROR","features":[303]},{"name":"STATUS_SXS_INVALID_ACTCTXDATA_FORMAT","features":[303]},{"name":"STATUS_SXS_INVALID_DEACTIVATION","features":[303]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[303]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[303]},{"name":"STATUS_SXS_KEY_NOT_FOUND","features":[303]},{"name":"STATUS_SXS_MANIFEST_FORMAT_ERROR","features":[303]},{"name":"STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[303]},{"name":"STATUS_SXS_MANIFEST_PARSE_ERROR","features":[303]},{"name":"STATUS_SXS_MANIFEST_TOO_BIG","features":[303]},{"name":"STATUS_SXS_MULTIPLE_DEACTIVATION","features":[303]},{"name":"STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[303]},{"name":"STATUS_SXS_PROCESS_TERMINATION_REQUESTED","features":[303]},{"name":"STATUS_SXS_RELEASE_ACTIVATION_CONTEXT","features":[303]},{"name":"STATUS_SXS_SECTION_NOT_FOUND","features":[303]},{"name":"STATUS_SXS_SETTING_NOT_REGISTERED","features":[303]},{"name":"STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[303]},{"name":"STATUS_SXS_THREAD_QUERIES_DISABLED","features":[303]},{"name":"STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[303]},{"name":"STATUS_SXS_VERSION_CONFLICT","features":[303]},{"name":"STATUS_SXS_WRONG_SECTION_TYPE","features":[303]},{"name":"STATUS_SYMLINK_CLASS_DISABLED","features":[303]},{"name":"STATUS_SYNCHRONIZATION_REQUIRED","features":[303]},{"name":"STATUS_SYSTEM_DEVICE_NOT_FOUND","features":[303]},{"name":"STATUS_SYSTEM_HIVE_TOO_LARGE","features":[303]},{"name":"STATUS_SYSTEM_IMAGE_BAD_SIGNATURE","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_INVALID_POLICY","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[303]},{"name":"STATUS_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[303]},{"name":"STATUS_SYSTEM_NEEDS_REMEDIATION","features":[303]},{"name":"STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[303]},{"name":"STATUS_SYSTEM_POWERSTATE_TRANSITION","features":[303]},{"name":"STATUS_SYSTEM_PROCESS_TERMINATED","features":[303]},{"name":"STATUS_SYSTEM_SHUTDOWN","features":[303]},{"name":"STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED","features":[303]},{"name":"STATUS_THREADPOOL_HANDLE_EXCEPTION","features":[303]},{"name":"STATUS_THREADPOOL_RELEASED_DURING_OPERATION","features":[303]},{"name":"STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED","features":[303]},{"name":"STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED","features":[303]},{"name":"STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED","features":[303]},{"name":"STATUS_THREAD_ALREADY_IN_SESSION","features":[303]},{"name":"STATUS_THREAD_ALREADY_IN_TASK","features":[303]},{"name":"STATUS_THREAD_IS_TERMINATING","features":[303]},{"name":"STATUS_THREAD_NOT_IN_PROCESS","features":[303]},{"name":"STATUS_THREAD_NOT_IN_SESSION","features":[303]},{"name":"STATUS_THREAD_NOT_RUNNING","features":[303]},{"name":"STATUS_THREAD_WAS_SUSPENDED","features":[303]},{"name":"STATUS_TIMEOUT","features":[303]},{"name":"STATUS_TIMER_NOT_CANCELED","features":[303]},{"name":"STATUS_TIMER_RESOLUTION_NOT_SET","features":[303]},{"name":"STATUS_TIMER_RESUME_IGNORED","features":[303]},{"name":"STATUS_TIME_DIFFERENCE_AT_DC","features":[303]},{"name":"STATUS_TM_IDENTITY_MISMATCH","features":[303]},{"name":"STATUS_TM_INITIALIZATION_FAILED","features":[303]},{"name":"STATUS_TM_VOLATILE","features":[303]},{"name":"STATUS_TOKEN_ALREADY_IN_USE","features":[303]},{"name":"STATUS_TOO_LATE","features":[303]},{"name":"STATUS_TOO_MANY_ADDRESSES","features":[303]},{"name":"STATUS_TOO_MANY_COMMANDS","features":[303]},{"name":"STATUS_TOO_MANY_CONTEXT_IDS","features":[303]},{"name":"STATUS_TOO_MANY_GUIDS_REQUESTED","features":[303]},{"name":"STATUS_TOO_MANY_LINKS","features":[303]},{"name":"STATUS_TOO_MANY_LUIDS_REQUESTED","features":[303]},{"name":"STATUS_TOO_MANY_NAMES","features":[303]},{"name":"STATUS_TOO_MANY_NODES","features":[303]},{"name":"STATUS_TOO_MANY_OPENED_FILES","features":[303]},{"name":"STATUS_TOO_MANY_PAGING_FILES","features":[303]},{"name":"STATUS_TOO_MANY_PRINCIPALS","features":[303]},{"name":"STATUS_TOO_MANY_SECRETS","features":[303]},{"name":"STATUS_TOO_MANY_SEGMENT_DESCRIPTORS","features":[303]},{"name":"STATUS_TOO_MANY_SESSIONS","features":[303]},{"name":"STATUS_TOO_MANY_SIDS","features":[303]},{"name":"STATUS_TOO_MANY_THREADS","features":[303]},{"name":"STATUS_TPM_20_E_ASYMMETRIC","features":[303]},{"name":"STATUS_TPM_20_E_ATTRIBUTES","features":[303]},{"name":"STATUS_TPM_20_E_AUTHSIZE","features":[303]},{"name":"STATUS_TPM_20_E_AUTH_CONTEXT","features":[303]},{"name":"STATUS_TPM_20_E_AUTH_FAIL","features":[303]},{"name":"STATUS_TPM_20_E_AUTH_MISSING","features":[303]},{"name":"STATUS_TPM_20_E_AUTH_TYPE","features":[303]},{"name":"STATUS_TPM_20_E_AUTH_UNAVAILABLE","features":[303]},{"name":"STATUS_TPM_20_E_BAD_AUTH","features":[303]},{"name":"STATUS_TPM_20_E_BAD_CONTEXT","features":[303]},{"name":"STATUS_TPM_20_E_BINDING","features":[303]},{"name":"STATUS_TPM_20_E_COMMAND_CODE","features":[303]},{"name":"STATUS_TPM_20_E_COMMAND_SIZE","features":[303]},{"name":"STATUS_TPM_20_E_CPHASH","features":[303]},{"name":"STATUS_TPM_20_E_CURVE","features":[303]},{"name":"STATUS_TPM_20_E_DISABLED","features":[303]},{"name":"STATUS_TPM_20_E_ECC_CURVE","features":[303]},{"name":"STATUS_TPM_20_E_ECC_POINT","features":[303]},{"name":"STATUS_TPM_20_E_EXCLUSIVE","features":[303]},{"name":"STATUS_TPM_20_E_EXPIRED","features":[303]},{"name":"STATUS_TPM_20_E_FAILURE","features":[303]},{"name":"STATUS_TPM_20_E_HANDLE","features":[303]},{"name":"STATUS_TPM_20_E_HASH","features":[303]},{"name":"STATUS_TPM_20_E_HIERARCHY","features":[303]},{"name":"STATUS_TPM_20_E_HMAC","features":[303]},{"name":"STATUS_TPM_20_E_INITIALIZE","features":[303]},{"name":"STATUS_TPM_20_E_INSUFFICIENT","features":[303]},{"name":"STATUS_TPM_20_E_INTEGRITY","features":[303]},{"name":"STATUS_TPM_20_E_KDF","features":[303]},{"name":"STATUS_TPM_20_E_KEY","features":[303]},{"name":"STATUS_TPM_20_E_KEY_SIZE","features":[303]},{"name":"STATUS_TPM_20_E_MGF","features":[303]},{"name":"STATUS_TPM_20_E_MODE","features":[303]},{"name":"STATUS_TPM_20_E_NEEDS_TEST","features":[303]},{"name":"STATUS_TPM_20_E_NONCE","features":[303]},{"name":"STATUS_TPM_20_E_NO_RESULT","features":[303]},{"name":"STATUS_TPM_20_E_NV_AUTHORIZATION","features":[303]},{"name":"STATUS_TPM_20_E_NV_DEFINED","features":[303]},{"name":"STATUS_TPM_20_E_NV_LOCKED","features":[303]},{"name":"STATUS_TPM_20_E_NV_RANGE","features":[303]},{"name":"STATUS_TPM_20_E_NV_SIZE","features":[303]},{"name":"STATUS_TPM_20_E_NV_SPACE","features":[303]},{"name":"STATUS_TPM_20_E_NV_UNINITIALIZED","features":[303]},{"name":"STATUS_TPM_20_E_PARENT","features":[303]},{"name":"STATUS_TPM_20_E_PCR","features":[303]},{"name":"STATUS_TPM_20_E_PCR_CHANGED","features":[303]},{"name":"STATUS_TPM_20_E_POLICY","features":[303]},{"name":"STATUS_TPM_20_E_POLICY_CC","features":[303]},{"name":"STATUS_TPM_20_E_POLICY_FAIL","features":[303]},{"name":"STATUS_TPM_20_E_PP","features":[303]},{"name":"STATUS_TPM_20_E_PRIVATE","features":[303]},{"name":"STATUS_TPM_20_E_RANGE","features":[303]},{"name":"STATUS_TPM_20_E_REBOOT","features":[303]},{"name":"STATUS_TPM_20_E_RESERVED_BITS","features":[303]},{"name":"STATUS_TPM_20_E_SCHEME","features":[303]},{"name":"STATUS_TPM_20_E_SELECTOR","features":[303]},{"name":"STATUS_TPM_20_E_SENSITIVE","features":[303]},{"name":"STATUS_TPM_20_E_SEQUENCE","features":[303]},{"name":"STATUS_TPM_20_E_SIGNATURE","features":[303]},{"name":"STATUS_TPM_20_E_SIZE","features":[303]},{"name":"STATUS_TPM_20_E_SYMMETRIC","features":[303]},{"name":"STATUS_TPM_20_E_TAG","features":[303]},{"name":"STATUS_TPM_20_E_TICKET","features":[303]},{"name":"STATUS_TPM_20_E_TOO_MANY_CONTEXTS","features":[303]},{"name":"STATUS_TPM_20_E_TYPE","features":[303]},{"name":"STATUS_TPM_20_E_UNBALANCED","features":[303]},{"name":"STATUS_TPM_20_E_UPGRADE","features":[303]},{"name":"STATUS_TPM_20_E_VALUE","features":[303]},{"name":"STATUS_TPM_ACCESS_DENIED","features":[303]},{"name":"STATUS_TPM_AREA_LOCKED","features":[303]},{"name":"STATUS_TPM_AUDITFAILURE","features":[303]},{"name":"STATUS_TPM_AUDITFAIL_SUCCESSFUL","features":[303]},{"name":"STATUS_TPM_AUDITFAIL_UNSUCCESSFUL","features":[303]},{"name":"STATUS_TPM_AUTH2FAIL","features":[303]},{"name":"STATUS_TPM_AUTHFAIL","features":[303]},{"name":"STATUS_TPM_AUTH_CONFLICT","features":[303]},{"name":"STATUS_TPM_BADCONTEXT","features":[303]},{"name":"STATUS_TPM_BADINDEX","features":[303]},{"name":"STATUS_TPM_BADTAG","features":[303]},{"name":"STATUS_TPM_BAD_ATTRIBUTES","features":[303]},{"name":"STATUS_TPM_BAD_COUNTER","features":[303]},{"name":"STATUS_TPM_BAD_DATASIZE","features":[303]},{"name":"STATUS_TPM_BAD_DELEGATE","features":[303]},{"name":"STATUS_TPM_BAD_HANDLE","features":[303]},{"name":"STATUS_TPM_BAD_KEY_PROPERTY","features":[303]},{"name":"STATUS_TPM_BAD_LOCALITY","features":[303]},{"name":"STATUS_TPM_BAD_MIGRATION","features":[303]},{"name":"STATUS_TPM_BAD_MODE","features":[303]},{"name":"STATUS_TPM_BAD_ORDINAL","features":[303]},{"name":"STATUS_TPM_BAD_PARAMETER","features":[303]},{"name":"STATUS_TPM_BAD_PARAM_SIZE","features":[303]},{"name":"STATUS_TPM_BAD_PRESENCE","features":[303]},{"name":"STATUS_TPM_BAD_SCHEME","features":[303]},{"name":"STATUS_TPM_BAD_SIGNATURE","features":[303]},{"name":"STATUS_TPM_BAD_TYPE","features":[303]},{"name":"STATUS_TPM_BAD_VERSION","features":[303]},{"name":"STATUS_TPM_CLEAR_DISABLED","features":[303]},{"name":"STATUS_TPM_COMMAND_BLOCKED","features":[303]},{"name":"STATUS_TPM_COMMAND_CANCELED","features":[303]},{"name":"STATUS_TPM_CONTEXT_GAP","features":[303]},{"name":"STATUS_TPM_DAA_INPUT_DATA0","features":[303]},{"name":"STATUS_TPM_DAA_INPUT_DATA1","features":[303]},{"name":"STATUS_TPM_DAA_ISSUER_SETTINGS","features":[303]},{"name":"STATUS_TPM_DAA_ISSUER_VALIDITY","features":[303]},{"name":"STATUS_TPM_DAA_RESOURCES","features":[303]},{"name":"STATUS_TPM_DAA_STAGE","features":[303]},{"name":"STATUS_TPM_DAA_TPM_SETTINGS","features":[303]},{"name":"STATUS_TPM_DAA_WRONG_W","features":[303]},{"name":"STATUS_TPM_DEACTIVATED","features":[303]},{"name":"STATUS_TPM_DECRYPT_ERROR","features":[303]},{"name":"STATUS_TPM_DEFEND_LOCK_RUNNING","features":[303]},{"name":"STATUS_TPM_DELEGATE_ADMIN","features":[303]},{"name":"STATUS_TPM_DELEGATE_FAMILY","features":[303]},{"name":"STATUS_TPM_DELEGATE_LOCK","features":[303]},{"name":"STATUS_TPM_DISABLED","features":[303]},{"name":"STATUS_TPM_DISABLED_CMD","features":[303]},{"name":"STATUS_TPM_DOING_SELFTEST","features":[303]},{"name":"STATUS_TPM_DUPLICATE_VHANDLE","features":[303]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_BLOCKED","features":[303]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED","features":[303]},{"name":"STATUS_TPM_ENCRYPT_ERROR","features":[303]},{"name":"STATUS_TPM_ERROR_MASK","features":[303]},{"name":"STATUS_TPM_FAIL","features":[303]},{"name":"STATUS_TPM_FAILEDSELFTEST","features":[303]},{"name":"STATUS_TPM_FAMILYCOUNT","features":[303]},{"name":"STATUS_TPM_INAPPROPRIATE_ENC","features":[303]},{"name":"STATUS_TPM_INAPPROPRIATE_SIG","features":[303]},{"name":"STATUS_TPM_INSTALL_DISABLED","features":[303]},{"name":"STATUS_TPM_INSUFFICIENT_BUFFER","features":[303]},{"name":"STATUS_TPM_INVALID_AUTHHANDLE","features":[303]},{"name":"STATUS_TPM_INVALID_FAMILY","features":[303]},{"name":"STATUS_TPM_INVALID_HANDLE","features":[303]},{"name":"STATUS_TPM_INVALID_KEYHANDLE","features":[303]},{"name":"STATUS_TPM_INVALID_KEYUSAGE","features":[303]},{"name":"STATUS_TPM_INVALID_PCR_INFO","features":[303]},{"name":"STATUS_TPM_INVALID_POSTINIT","features":[303]},{"name":"STATUS_TPM_INVALID_RESOURCE","features":[303]},{"name":"STATUS_TPM_INVALID_STRUCTURE","features":[303]},{"name":"STATUS_TPM_IOERROR","features":[303]},{"name":"STATUS_TPM_KEYNOTFOUND","features":[303]},{"name":"STATUS_TPM_KEY_NOTSUPPORTED","features":[303]},{"name":"STATUS_TPM_KEY_OWNER_CONTROL","features":[303]},{"name":"STATUS_TPM_MAXNVWRITES","features":[303]},{"name":"STATUS_TPM_MA_AUTHORITY","features":[303]},{"name":"STATUS_TPM_MA_DESTINATION","features":[303]},{"name":"STATUS_TPM_MA_SOURCE","features":[303]},{"name":"STATUS_TPM_MA_TICKET_SIGNATURE","features":[303]},{"name":"STATUS_TPM_MIGRATEFAIL","features":[303]},{"name":"STATUS_TPM_NEEDS_SELFTEST","features":[303]},{"name":"STATUS_TPM_NOCONTEXTSPACE","features":[303]},{"name":"STATUS_TPM_NOOPERATOR","features":[303]},{"name":"STATUS_TPM_NOSPACE","features":[303]},{"name":"STATUS_TPM_NOSRK","features":[303]},{"name":"STATUS_TPM_NOTFIPS","features":[303]},{"name":"STATUS_TPM_NOTLOCAL","features":[303]},{"name":"STATUS_TPM_NOTRESETABLE","features":[303]},{"name":"STATUS_TPM_NOTSEALED_BLOB","features":[303]},{"name":"STATUS_TPM_NOT_FOUND","features":[303]},{"name":"STATUS_TPM_NOT_FULLWRITE","features":[303]},{"name":"STATUS_TPM_NO_ENDORSEMENT","features":[303]},{"name":"STATUS_TPM_NO_NV_PERMISSION","features":[303]},{"name":"STATUS_TPM_NO_WRAP_TRANSPORT","features":[303]},{"name":"STATUS_TPM_OWNER_CONTROL","features":[303]},{"name":"STATUS_TPM_OWNER_SET","features":[303]},{"name":"STATUS_TPM_PERMANENTEK","features":[303]},{"name":"STATUS_TPM_PER_NOWRITE","features":[303]},{"name":"STATUS_TPM_PPI_FUNCTION_UNSUPPORTED","features":[303]},{"name":"STATUS_TPM_READ_ONLY","features":[303]},{"name":"STATUS_TPM_REQUIRES_SIGN","features":[303]},{"name":"STATUS_TPM_RESOURCEMISSING","features":[303]},{"name":"STATUS_TPM_RESOURCES","features":[303]},{"name":"STATUS_TPM_RETRY","features":[303]},{"name":"STATUS_TPM_SHA_ERROR","features":[303]},{"name":"STATUS_TPM_SHA_THREAD","features":[303]},{"name":"STATUS_TPM_SHORTRANDOM","features":[303]},{"name":"STATUS_TPM_SIZE","features":[303]},{"name":"STATUS_TPM_TOOMANYCONTEXTS","features":[303]},{"name":"STATUS_TPM_TOO_MANY_CONTEXTS","features":[303]},{"name":"STATUS_TPM_TRANSPORT_NOTEXCLUSIVE","features":[303]},{"name":"STATUS_TPM_WRITE_LOCKED","features":[303]},{"name":"STATUS_TPM_WRONGPCRVAL","features":[303]},{"name":"STATUS_TPM_WRONG_ENTITYTYPE","features":[303]},{"name":"STATUS_TPM_ZERO_EXHAUST_ENABLED","features":[303]},{"name":"STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[303]},{"name":"STATUS_TRANSACTIONAL_CONFLICT","features":[303]},{"name":"STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[303]},{"name":"STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[303]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_FOUND","features":[303]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_ONLINE","features":[303]},{"name":"STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[303]},{"name":"STATUS_TRANSACTIONS_NOT_FROZEN","features":[303]},{"name":"STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[303]},{"name":"STATUS_TRANSACTION_ABORTED","features":[303]},{"name":"STATUS_TRANSACTION_ALREADY_ABORTED","features":[303]},{"name":"STATUS_TRANSACTION_ALREADY_COMMITTED","features":[303]},{"name":"STATUS_TRANSACTION_FREEZE_IN_PROGRESS","features":[303]},{"name":"STATUS_TRANSACTION_INTEGRITY_VIOLATED","features":[303]},{"name":"STATUS_TRANSACTION_INVALID_ID","features":[303]},{"name":"STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[303]},{"name":"STATUS_TRANSACTION_INVALID_TYPE","features":[303]},{"name":"STATUS_TRANSACTION_MUST_WRITETHROUGH","features":[303]},{"name":"STATUS_TRANSACTION_NOT_ACTIVE","features":[303]},{"name":"STATUS_TRANSACTION_NOT_ENLISTED","features":[303]},{"name":"STATUS_TRANSACTION_NOT_FOUND","features":[303]},{"name":"STATUS_TRANSACTION_NOT_JOINED","features":[303]},{"name":"STATUS_TRANSACTION_NOT_REQUESTED","features":[303]},{"name":"STATUS_TRANSACTION_NOT_ROOT","features":[303]},{"name":"STATUS_TRANSACTION_NO_MATCH","features":[303]},{"name":"STATUS_TRANSACTION_NO_RELEASE","features":[303]},{"name":"STATUS_TRANSACTION_NO_SUPERIOR","features":[303]},{"name":"STATUS_TRANSACTION_OBJECT_EXPIRED","features":[303]},{"name":"STATUS_TRANSACTION_PROPAGATION_FAILED","features":[303]},{"name":"STATUS_TRANSACTION_RECORD_TOO_LONG","features":[303]},{"name":"STATUS_TRANSACTION_REQUEST_NOT_VALID","features":[303]},{"name":"STATUS_TRANSACTION_REQUIRED_PROMOTION","features":[303]},{"name":"STATUS_TRANSACTION_RESPONDED","features":[303]},{"name":"STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[303]},{"name":"STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[303]},{"name":"STATUS_TRANSACTION_SUPERIOR_EXISTS","features":[303]},{"name":"STATUS_TRANSACTION_TIMED_OUT","features":[303]},{"name":"STATUS_TRANSLATION_COMPLETE","features":[303]},{"name":"STATUS_TRANSPORT_FULL","features":[303]},{"name":"STATUS_TRIGGERED_EXECUTABLE_MEMORY_WRITE","features":[303]},{"name":"STATUS_TRIM_READ_ZERO_NOT_SUPPORTED","features":[303]},{"name":"STATUS_TRUSTED_DOMAIN_FAILURE","features":[303]},{"name":"STATUS_TRUSTED_RELATIONSHIP_FAILURE","features":[303]},{"name":"STATUS_TRUST_FAILURE","features":[303]},{"name":"STATUS_TS_INCOMPATIBLE_SESSIONS","features":[303]},{"name":"STATUS_TS_VIDEO_SUBSYSTEM_ERROR","features":[303]},{"name":"STATUS_TXF_ATTRIBUTE_CORRUPT","features":[303]},{"name":"STATUS_TXF_DIR_NOT_EMPTY","features":[303]},{"name":"STATUS_TXF_METADATA_ALREADY_PRESENT","features":[303]},{"name":"STATUS_UNABLE_TO_DECOMMIT_VM","features":[303]},{"name":"STATUS_UNABLE_TO_DELETE_SECTION","features":[303]},{"name":"STATUS_UNABLE_TO_FREE_VM","features":[303]},{"name":"STATUS_UNABLE_TO_LOCK_MEDIA","features":[303]},{"name":"STATUS_UNABLE_TO_UNLOAD_MEDIA","features":[303]},{"name":"STATUS_UNDEFINED_CHARACTER","features":[303]},{"name":"STATUS_UNDEFINED_SCOPE","features":[303]},{"name":"STATUS_UNEXPECTED_IO_ERROR","features":[303]},{"name":"STATUS_UNEXPECTED_MM_CREATE_ERR","features":[303]},{"name":"STATUS_UNEXPECTED_MM_EXTEND_ERR","features":[303]},{"name":"STATUS_UNEXPECTED_MM_MAP_ERROR","features":[303]},{"name":"STATUS_UNEXPECTED_NETWORK_ERROR","features":[303]},{"name":"STATUS_UNFINISHED_CONTEXT_DELETED","features":[303]},{"name":"STATUS_UNHANDLED_EXCEPTION","features":[303]},{"name":"STATUS_UNKNOWN_REVISION","features":[303]},{"name":"STATUS_UNMAPPABLE_CHARACTER","features":[303]},{"name":"STATUS_UNRECOGNIZED_MEDIA","features":[303]},{"name":"STATUS_UNRECOGNIZED_VOLUME","features":[303]},{"name":"STATUS_UNSATISFIED_DEPENDENCIES","features":[303]},{"name":"STATUS_UNSUCCESSFUL","features":[303]},{"name":"STATUS_UNSUPPORTED_COMPRESSION","features":[303]},{"name":"STATUS_UNSUPPORTED_PAGING_MODE","features":[303]},{"name":"STATUS_UNSUPPORTED_PREAUTH","features":[303]},{"name":"STATUS_UNTRUSTED_MOUNT_POINT","features":[303]},{"name":"STATUS_UNWIND","features":[303]},{"name":"STATUS_UNWIND_CONSOLIDATE","features":[303]},{"name":"STATUS_USER2USER_REQUIRED","features":[303]},{"name":"STATUS_USER_APC","features":[303]},{"name":"STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[303]},{"name":"STATUS_USER_EXISTS","features":[303]},{"name":"STATUS_USER_MAPPED_FILE","features":[303]},{"name":"STATUS_USER_SESSION_DELETED","features":[303]},{"name":"STATUS_VALIDATE_CONTINUE","features":[303]},{"name":"STATUS_VALID_CATALOG_HASH","features":[303]},{"name":"STATUS_VALID_IMAGE_HASH","features":[303]},{"name":"STATUS_VALID_STRONG_CODE_HASH","features":[303]},{"name":"STATUS_VARIABLE_NOT_FOUND","features":[303]},{"name":"STATUS_VDM_DISALLOWED","features":[303]},{"name":"STATUS_VDM_HARD_ERROR","features":[303]},{"name":"STATUS_VERIFIER_STOP","features":[303]},{"name":"STATUS_VERIFY_REQUIRED","features":[303]},{"name":"STATUS_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[303]},{"name":"STATUS_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[303]},{"name":"STATUS_VHD_BITMAP_MISMATCH","features":[303]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_FAILURE","features":[303]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[303]},{"name":"STATUS_VHD_CHANGE_TRACKING_DISABLED","features":[303]},{"name":"STATUS_VHD_CHILD_PARENT_ID_MISMATCH","features":[303]},{"name":"STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[303]},{"name":"STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[303]},{"name":"STATUS_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[303]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[303]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[303]},{"name":"STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[303]},{"name":"STATUS_VHD_DRIVE_FOOTER_CORRUPT","features":[303]},{"name":"STATUS_VHD_DRIVE_FOOTER_MISSING","features":[303]},{"name":"STATUS_VHD_FORMAT_UNKNOWN","features":[303]},{"name":"STATUS_VHD_FORMAT_UNSUPPORTED_VERSION","features":[303]},{"name":"STATUS_VHD_INVALID_BLOCK_SIZE","features":[303]},{"name":"STATUS_VHD_INVALID_CHANGE_TRACKING_ID","features":[303]},{"name":"STATUS_VHD_INVALID_FILE_SIZE","features":[303]},{"name":"STATUS_VHD_INVALID_SIZE","features":[303]},{"name":"STATUS_VHD_INVALID_STATE","features":[303]},{"name":"STATUS_VHD_INVALID_TYPE","features":[303]},{"name":"STATUS_VHD_METADATA_FULL","features":[303]},{"name":"STATUS_VHD_METADATA_READ_FAILURE","features":[303]},{"name":"STATUS_VHD_METADATA_WRITE_FAILURE","features":[303]},{"name":"STATUS_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[303]},{"name":"STATUS_VHD_PARENT_VHD_ACCESS_DENIED","features":[303]},{"name":"STATUS_VHD_PARENT_VHD_NOT_FOUND","features":[303]},{"name":"STATUS_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[303]},{"name":"STATUS_VHD_SHARED","features":[303]},{"name":"STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[303]},{"name":"STATUS_VHD_SPARSE_HEADER_CORRUPT","features":[303]},{"name":"STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[303]},{"name":"STATUS_VHD_UNEXPECTED_ID","features":[303]},{"name":"STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[303]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD","features":[303]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED","features":[303]},{"name":"STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[303]},{"name":"STATUS_VID_DUPLICATE_HANDLER","features":[303]},{"name":"STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[303]},{"name":"STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[303]},{"name":"STATUS_VID_HANDLER_NOT_PRESENT","features":[303]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[303]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[303]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[303]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[303]},{"name":"STATUS_VID_INVALID_CHILD_GPA_PAGE_SET","features":[303]},{"name":"STATUS_VID_INVALID_GPA_RANGE_HANDLE","features":[303]},{"name":"STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[303]},{"name":"STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[303]},{"name":"STATUS_VID_INVALID_NUMA_NODE_INDEX","features":[303]},{"name":"STATUS_VID_INVALID_NUMA_SETTINGS","features":[303]},{"name":"STATUS_VID_INVALID_OBJECT_NAME","features":[303]},{"name":"STATUS_VID_INVALID_PPM_HANDLE","features":[303]},{"name":"STATUS_VID_INVALID_PROCESSOR_STATE","features":[303]},{"name":"STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[303]},{"name":"STATUS_VID_MBPS_ARE_LOCKED","features":[303]},{"name":"STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[303]},{"name":"STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[303]},{"name":"STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[303]},{"name":"STATUS_VID_MB_STILL_REFERENCED","features":[303]},{"name":"STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[303]},{"name":"STATUS_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[303]},{"name":"STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[303]},{"name":"STATUS_VID_MESSAGE_QUEUE_CLOSED","features":[303]},{"name":"STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[303]},{"name":"STATUS_VID_MMIO_RANGE_DESTROYED","features":[303]},{"name":"STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[303]},{"name":"STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[303]},{"name":"STATUS_VID_PAGE_RANGE_OVERFLOW","features":[303]},{"name":"STATUS_VID_PARTITION_ALREADY_EXISTS","features":[303]},{"name":"STATUS_VID_PARTITION_DOES_NOT_EXIST","features":[303]},{"name":"STATUS_VID_PARTITION_NAME_NOT_FOUND","features":[303]},{"name":"STATUS_VID_PARTITION_NAME_TOO_LONG","features":[303]},{"name":"STATUS_VID_PROCESS_ALREADY_SET","features":[303]},{"name":"STATUS_VID_QUEUE_FULL","features":[303]},{"name":"STATUS_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[303]},{"name":"STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[303]},{"name":"STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[303]},{"name":"STATUS_VID_SAVED_STATE_CORRUPT","features":[303]},{"name":"STATUS_VID_SAVED_STATE_INCOMPATIBLE","features":[303]},{"name":"STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[303]},{"name":"STATUS_VID_STOP_PENDING","features":[303]},{"name":"STATUS_VID_TOO_MANY_HANDLERS","features":[303]},{"name":"STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[303]},{"name":"STATUS_VID_VTL_ACCESS_DENIED","features":[303]},{"name":"STATUS_VIRTDISK_DISK_ALREADY_OWNED","features":[303]},{"name":"STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[303]},{"name":"STATUS_VIRTDISK_NOT_VIRTUAL_DISK","features":[303]},{"name":"STATUS_VIRTDISK_PROVIDER_NOT_FOUND","features":[303]},{"name":"STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[303]},{"name":"STATUS_VIRTUAL_CIRCUIT_CLOSED","features":[303]},{"name":"STATUS_VIRTUAL_DISK_LIMITATION","features":[303]},{"name":"STATUS_VIRUS_DELETED","features":[303]},{"name":"STATUS_VIRUS_INFECTED","features":[303]},{"name":"STATUS_VOLMGR_ALL_DISKS_FAILED","features":[303]},{"name":"STATUS_VOLMGR_BAD_BOOT_DISK","features":[303]},{"name":"STATUS_VOLMGR_DATABASE_FULL","features":[303]},{"name":"STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[303]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[303]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[303]},{"name":"STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[303]},{"name":"STATUS_VOLMGR_DISK_DUPLICATE","features":[303]},{"name":"STATUS_VOLMGR_DISK_DYNAMIC","features":[303]},{"name":"STATUS_VOLMGR_DISK_ID_INVALID","features":[303]},{"name":"STATUS_VOLMGR_DISK_INVALID","features":[303]},{"name":"STATUS_VOLMGR_DISK_LAST_VOTER","features":[303]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_INVALID","features":[303]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[303]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[303]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[303]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[303]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[303]},{"name":"STATUS_VOLMGR_DISK_MISSING","features":[303]},{"name":"STATUS_VOLMGR_DISK_NOT_EMPTY","features":[303]},{"name":"STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[303]},{"name":"STATUS_VOLMGR_DISK_REVECTORING_FAILED","features":[303]},{"name":"STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[303]},{"name":"STATUS_VOLMGR_DISK_SET_NOT_CONTAINED","features":[303]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[303]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[303]},{"name":"STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[303]},{"name":"STATUS_VOLMGR_EXTENT_ALREADY_USED","features":[303]},{"name":"STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[303]},{"name":"STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[303]},{"name":"STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[303]},{"name":"STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[303]},{"name":"STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[303]},{"name":"STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[303]},{"name":"STATUS_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[303]},{"name":"STATUS_VOLMGR_INCOMPLETE_REGENERATION","features":[303]},{"name":"STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[303]},{"name":"STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[303]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[303]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_INVALID","features":[303]},{"name":"STATUS_VOLMGR_MEMBER_IN_SYNC","features":[303]},{"name":"STATUS_VOLMGR_MEMBER_MISSING","features":[303]},{"name":"STATUS_VOLMGR_MEMBER_NOT_DETACHED","features":[303]},{"name":"STATUS_VOLMGR_MEMBER_REGENERATING","features":[303]},{"name":"STATUS_VOLMGR_MIRROR_NOT_SUPPORTED","features":[303]},{"name":"STATUS_VOLMGR_NOTIFICATION_RESET","features":[303]},{"name":"STATUS_VOLMGR_NOT_PRIMARY_PACK","features":[303]},{"name":"STATUS_VOLMGR_NO_REGISTERED_USERS","features":[303]},{"name":"STATUS_VOLMGR_NO_SUCH_USER","features":[303]},{"name":"STATUS_VOLMGR_NO_VALID_LOG_COPIES","features":[303]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[303]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[303]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[303]},{"name":"STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[303]},{"name":"STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[303]},{"name":"STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[303]},{"name":"STATUS_VOLMGR_PACK_CONFIG_OFFLINE","features":[303]},{"name":"STATUS_VOLMGR_PACK_CONFIG_ONLINE","features":[303]},{"name":"STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[303]},{"name":"STATUS_VOLMGR_PACK_DUPLICATE","features":[303]},{"name":"STATUS_VOLMGR_PACK_HAS_QUORUM","features":[303]},{"name":"STATUS_VOLMGR_PACK_ID_INVALID","features":[303]},{"name":"STATUS_VOLMGR_PACK_INVALID","features":[303]},{"name":"STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[303]},{"name":"STATUS_VOLMGR_PACK_NAME_INVALID","features":[303]},{"name":"STATUS_VOLMGR_PACK_OFFLINE","features":[303]},{"name":"STATUS_VOLMGR_PACK_WITHOUT_QUORUM","features":[303]},{"name":"STATUS_VOLMGR_PARTITION_STYLE_INVALID","features":[303]},{"name":"STATUS_VOLMGR_PARTITION_UPDATE_FAILED","features":[303]},{"name":"STATUS_VOLMGR_PLEX_INDEX_DUPLICATE","features":[303]},{"name":"STATUS_VOLMGR_PLEX_INDEX_INVALID","features":[303]},{"name":"STATUS_VOLMGR_PLEX_IN_SYNC","features":[303]},{"name":"STATUS_VOLMGR_PLEX_LAST_ACTIVE","features":[303]},{"name":"STATUS_VOLMGR_PLEX_MISSING","features":[303]},{"name":"STATUS_VOLMGR_PLEX_NOT_RAID5","features":[303]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE","features":[303]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[303]},{"name":"STATUS_VOLMGR_PLEX_REGENERATING","features":[303]},{"name":"STATUS_VOLMGR_PLEX_TYPE_INVALID","features":[303]},{"name":"STATUS_VOLMGR_PRIMARY_PACK_PRESENT","features":[303]},{"name":"STATUS_VOLMGR_RAID5_NOT_SUPPORTED","features":[303]},{"name":"STATUS_VOLMGR_STRUCTURE_SIZE_INVALID","features":[303]},{"name":"STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[303]},{"name":"STATUS_VOLMGR_TRANSACTION_IN_PROGRESS","features":[303]},{"name":"STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_ID_INVALID","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_INVALID","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_MIRRORED","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_NOT_MIRRORED","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_NOT_RETAINED","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_OFFLINE","features":[303]},{"name":"STATUS_VOLMGR_VOLUME_RETAINED","features":[303]},{"name":"STATUS_VOLSNAP_ACTIVATION_TIMEOUT","features":[303]},{"name":"STATUS_VOLSNAP_BOOTFILE_NOT_VALID","features":[303]},{"name":"STATUS_VOLSNAP_HIBERNATE_READY","features":[303]},{"name":"STATUS_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[303]},{"name":"STATUS_VOLSNAP_PREPARE_HIBERNATE","features":[303]},{"name":"STATUS_VOLUME_DIRTY","features":[303]},{"name":"STATUS_VOLUME_DISMOUNTED","features":[303]},{"name":"STATUS_VOLUME_MOUNTED","features":[303]},{"name":"STATUS_VOLUME_NOT_CLUSTER_ALIGNED","features":[303]},{"name":"STATUS_VOLUME_NOT_SUPPORTED","features":[303]},{"name":"STATUS_VOLUME_NOT_UPGRADED","features":[303]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED","features":[303]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[303]},{"name":"STATUS_VOLUME_UPGRADE_NOT_NEEDED","features":[303]},{"name":"STATUS_VOLUME_UPGRADE_PENDING","features":[303]},{"name":"STATUS_VOLUME_WRITE_ACCESS_DENIED","features":[303]},{"name":"STATUS_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[303]},{"name":"STATUS_VRF_VOLATILE_NMI_REGISTERED","features":[303]},{"name":"STATUS_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[303]},{"name":"STATUS_VRF_VOLATILE_NOT_STOPPABLE","features":[303]},{"name":"STATUS_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[303]},{"name":"STATUS_VRF_VOLATILE_PROTECTED_DRIVER","features":[303]},{"name":"STATUS_VRF_VOLATILE_SAFE_MODE","features":[303]},{"name":"STATUS_VRF_VOLATILE_SETTINGS_CONFLICT","features":[303]},{"name":"STATUS_VSM_DMA_PROTECTION_NOT_IN_USE","features":[303]},{"name":"STATUS_VSM_NOT_INITIALIZED","features":[303]},{"name":"STATUS_WAIT_0","features":[303]},{"name":"STATUS_WAIT_1","features":[303]},{"name":"STATUS_WAIT_2","features":[303]},{"name":"STATUS_WAIT_3","features":[303]},{"name":"STATUS_WAIT_63","features":[303]},{"name":"STATUS_WAIT_FOR_OPLOCK","features":[303]},{"name":"STATUS_WAKE_SYSTEM","features":[303]},{"name":"STATUS_WAKE_SYSTEM_DEBUGGER","features":[303]},{"name":"STATUS_WAS_LOCKED","features":[303]},{"name":"STATUS_WAS_UNLOCKED","features":[303]},{"name":"STATUS_WEAK_WHFBKEY_BLOCKED","features":[303]},{"name":"STATUS_WIM_NOT_BOOTABLE","features":[303]},{"name":"STATUS_WMI_ALREADY_DISABLED","features":[303]},{"name":"STATUS_WMI_ALREADY_ENABLED","features":[303]},{"name":"STATUS_WMI_GUID_DISCONNECTED","features":[303]},{"name":"STATUS_WMI_GUID_NOT_FOUND","features":[303]},{"name":"STATUS_WMI_INSTANCE_NOT_FOUND","features":[303]},{"name":"STATUS_WMI_ITEMID_NOT_FOUND","features":[303]},{"name":"STATUS_WMI_NOT_SUPPORTED","features":[303]},{"name":"STATUS_WMI_READ_ONLY","features":[303]},{"name":"STATUS_WMI_SET_FAILURE","features":[303]},{"name":"STATUS_WMI_TRY_AGAIN","features":[303]},{"name":"STATUS_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[303]},{"name":"STATUS_WOF_WIM_HEADER_CORRUPT","features":[303]},{"name":"STATUS_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[303]},{"name":"STATUS_WORKING_SET_LIMIT_RANGE","features":[303]},{"name":"STATUS_WORKING_SET_QUOTA","features":[303]},{"name":"STATUS_WOW_ASSERTION","features":[303]},{"name":"STATUS_WRONG_COMPARTMENT","features":[303]},{"name":"STATUS_WRONG_CREDENTIAL_HANDLE","features":[303]},{"name":"STATUS_WRONG_EFS","features":[303]},{"name":"STATUS_WRONG_PASSWORD_CORE","features":[303]},{"name":"STATUS_WRONG_VOLUME","features":[303]},{"name":"STATUS_WX86_BREAKPOINT","features":[303]},{"name":"STATUS_WX86_CONTINUE","features":[303]},{"name":"STATUS_WX86_CREATEWX86TIB","features":[303]},{"name":"STATUS_WX86_EXCEPTION_CHAIN","features":[303]},{"name":"STATUS_WX86_EXCEPTION_CONTINUE","features":[303]},{"name":"STATUS_WX86_EXCEPTION_LASTCHANCE","features":[303]},{"name":"STATUS_WX86_FLOAT_STACK_CHECK","features":[303]},{"name":"STATUS_WX86_INTERNAL_ERROR","features":[303]},{"name":"STATUS_WX86_SINGLE_STEP","features":[303]},{"name":"STATUS_WX86_UNSIMULATE","features":[303]},{"name":"STATUS_XMLDSIG_ERROR","features":[303]},{"name":"STATUS_XML_ENCODING_MISMATCH","features":[303]},{"name":"STATUS_XML_PARSE_ERROR","features":[303]},{"name":"STG_E_ABNORMALAPIEXIT","features":[303]},{"name":"STG_E_ACCESSDENIED","features":[303]},{"name":"STG_E_BADBASEADDRESS","features":[303]},{"name":"STG_E_CANTSAVE","features":[303]},{"name":"STG_E_CSS_AUTHENTICATION_FAILURE","features":[303]},{"name":"STG_E_CSS_KEY_NOT_ESTABLISHED","features":[303]},{"name":"STG_E_CSS_KEY_NOT_PRESENT","features":[303]},{"name":"STG_E_CSS_REGION_MISMATCH","features":[303]},{"name":"STG_E_CSS_SCRAMBLED_SECTOR","features":[303]},{"name":"STG_E_DEVICE_UNRESPONSIVE","features":[303]},{"name":"STG_E_DISKISWRITEPROTECTED","features":[303]},{"name":"STG_E_DOCFILECORRUPT","features":[303]},{"name":"STG_E_DOCFILETOOLARGE","features":[303]},{"name":"STG_E_EXTANTMARSHALLINGS","features":[303]},{"name":"STG_E_FILEALREADYEXISTS","features":[303]},{"name":"STG_E_FILENOTFOUND","features":[303]},{"name":"STG_E_FIRMWARE_IMAGE_INVALID","features":[303]},{"name":"STG_E_FIRMWARE_SLOT_INVALID","features":[303]},{"name":"STG_E_INCOMPLETE","features":[303]},{"name":"STG_E_INSUFFICIENTMEMORY","features":[303]},{"name":"STG_E_INUSE","features":[303]},{"name":"STG_E_INVALIDFLAG","features":[303]},{"name":"STG_E_INVALIDFUNCTION","features":[303]},{"name":"STG_E_INVALIDHANDLE","features":[303]},{"name":"STG_E_INVALIDHEADER","features":[303]},{"name":"STG_E_INVALIDNAME","features":[303]},{"name":"STG_E_INVALIDPARAMETER","features":[303]},{"name":"STG_E_INVALIDPOINTER","features":[303]},{"name":"STG_E_LOCKVIOLATION","features":[303]},{"name":"STG_E_MEDIUMFULL","features":[303]},{"name":"STG_E_NOMOREFILES","features":[303]},{"name":"STG_E_NOTCURRENT","features":[303]},{"name":"STG_E_NOTFILEBASEDSTORAGE","features":[303]},{"name":"STG_E_NOTSIMPLEFORMAT","features":[303]},{"name":"STG_E_OLDDLL","features":[303]},{"name":"STG_E_OLDFORMAT","features":[303]},{"name":"STG_E_PATHNOTFOUND","features":[303]},{"name":"STG_E_PROPSETMISMATCHED","features":[303]},{"name":"STG_E_READFAULT","features":[303]},{"name":"STG_E_RESETS_EXHAUSTED","features":[303]},{"name":"STG_E_REVERTED","features":[303]},{"name":"STG_E_SEEKERROR","features":[303]},{"name":"STG_E_SHAREREQUIRED","features":[303]},{"name":"STG_E_SHAREVIOLATION","features":[303]},{"name":"STG_E_STATUS_COPY_PROTECTION_FAILURE","features":[303]},{"name":"STG_E_TERMINATED","features":[303]},{"name":"STG_E_TOOMANYOPENFILES","features":[303]},{"name":"STG_E_UNIMPLEMENTEDFUNCTION","features":[303]},{"name":"STG_E_UNKNOWN","features":[303]},{"name":"STG_E_WRITEFAULT","features":[303]},{"name":"STG_S_BLOCK","features":[303]},{"name":"STG_S_CANNOTCONSOLIDATE","features":[303]},{"name":"STG_S_CONSOLIDATIONFAILED","features":[303]},{"name":"STG_S_CONVERTED","features":[303]},{"name":"STG_S_MONITORING","features":[303]},{"name":"STG_S_MULTIPLEOPENS","features":[303]},{"name":"STG_S_POWER_CYCLE_REQUIRED","features":[303]},{"name":"STG_S_RETRYNOW","features":[303]},{"name":"STILL_ACTIVE","features":[303]},{"name":"STORE_ERROR_LICENSE_REVOKED","features":[303]},{"name":"STORE_ERROR_PENDING_COM_TRANSACTION","features":[303]},{"name":"STORE_ERROR_UNLICENSED","features":[303]},{"name":"STORE_ERROR_UNLICENSED_USER","features":[303]},{"name":"STRICT","features":[303]},{"name":"SUCCESS","features":[303]},{"name":"SYSTEMTIME","features":[303]},{"name":"S_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG","features":[303]},{"name":"S_FALSE","features":[303]},{"name":"S_OK","features":[303]},{"name":"S_STORE_LAUNCHED_FOR_REMEDIATION","features":[303]},{"name":"SetHandleInformation","features":[303]},{"name":"SetLastError","features":[303]},{"name":"SetLastErrorEx","features":[303]},{"name":"SysAddRefString","features":[303]},{"name":"SysAllocString","features":[303]},{"name":"SysAllocStringByteLen","features":[303]},{"name":"SysAllocStringLen","features":[303]},{"name":"SysFreeString","features":[303]},{"name":"SysReAllocString","features":[303]},{"name":"SysReAllocStringLen","features":[303]},{"name":"SysReleaseString","features":[303]},{"name":"SysStringByteLen","features":[303]},{"name":"SysStringLen","features":[303]},{"name":"TBSIMP_E_BUFFER_TOO_SMALL","features":[303]},{"name":"TBSIMP_E_CLEANUP_FAILED","features":[303]},{"name":"TBSIMP_E_COMMAND_CANCELED","features":[303]},{"name":"TBSIMP_E_COMMAND_FAILED","features":[303]},{"name":"TBSIMP_E_DUPLICATE_VHANDLE","features":[303]},{"name":"TBSIMP_E_HASH_BAD_KEY","features":[303]},{"name":"TBSIMP_E_HASH_TABLE_FULL","features":[303]},{"name":"TBSIMP_E_INVALID_CONTEXT_HANDLE","features":[303]},{"name":"TBSIMP_E_INVALID_CONTEXT_PARAM","features":[303]},{"name":"TBSIMP_E_INVALID_OUTPUT_POINTER","features":[303]},{"name":"TBSIMP_E_INVALID_PARAMETER","features":[303]},{"name":"TBSIMP_E_INVALID_RESOURCE","features":[303]},{"name":"TBSIMP_E_LIST_NOT_FOUND","features":[303]},{"name":"TBSIMP_E_LIST_NO_MORE_ITEMS","features":[303]},{"name":"TBSIMP_E_NOTHING_TO_UNLOAD","features":[303]},{"name":"TBSIMP_E_NOT_ENOUGH_SPACE","features":[303]},{"name":"TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS","features":[303]},{"name":"TBSIMP_E_NO_EVENT_LOG","features":[303]},{"name":"TBSIMP_E_OUT_OF_MEMORY","features":[303]},{"name":"TBSIMP_E_PPI_NOT_SUPPORTED","features":[303]},{"name":"TBSIMP_E_RESOURCE_EXPIRED","features":[303]},{"name":"TBSIMP_E_RPC_INIT_FAILED","features":[303]},{"name":"TBSIMP_E_SCHEDULER_NOT_RUNNING","features":[303]},{"name":"TBSIMP_E_TOO_MANY_RESOURCES","features":[303]},{"name":"TBSIMP_E_TOO_MANY_TBS_CONTEXTS","features":[303]},{"name":"TBSIMP_E_TPM_ERROR","features":[303]},{"name":"TBSIMP_E_TPM_INCOMPATIBLE","features":[303]},{"name":"TBSIMP_E_UNKNOWN_ORDINAL","features":[303]},{"name":"TBS_E_ACCESS_DENIED","features":[303]},{"name":"TBS_E_BAD_PARAMETER","features":[303]},{"name":"TBS_E_BUFFER_TOO_LARGE","features":[303]},{"name":"TBS_E_COMMAND_CANCELED","features":[303]},{"name":"TBS_E_INSUFFICIENT_BUFFER","features":[303]},{"name":"TBS_E_INTERNAL_ERROR","features":[303]},{"name":"TBS_E_INVALID_CONTEXT","features":[303]},{"name":"TBS_E_INVALID_CONTEXT_PARAM","features":[303]},{"name":"TBS_E_INVALID_OUTPUT_POINTER","features":[303]},{"name":"TBS_E_IOERROR","features":[303]},{"name":"TBS_E_NO_EVENT_LOG","features":[303]},{"name":"TBS_E_OWNERAUTH_NOT_FOUND","features":[303]},{"name":"TBS_E_PPI_FUNCTION_UNSUPPORTED","features":[303]},{"name":"TBS_E_PPI_NOT_SUPPORTED","features":[303]},{"name":"TBS_E_PROVISIONING_INCOMPLETE","features":[303]},{"name":"TBS_E_PROVISIONING_NOT_ALLOWED","features":[303]},{"name":"TBS_E_SERVICE_DISABLED","features":[303]},{"name":"TBS_E_SERVICE_NOT_RUNNING","features":[303]},{"name":"TBS_E_SERVICE_START_PENDING","features":[303]},{"name":"TBS_E_TOO_MANY_RESOURCES","features":[303]},{"name":"TBS_E_TOO_MANY_TBS_CONTEXTS","features":[303]},{"name":"TBS_E_TPM_NOT_FOUND","features":[303]},{"name":"TPC_E_INITIALIZE_FAIL","features":[303]},{"name":"TPC_E_INVALID_CONFIGURATION","features":[303]},{"name":"TPC_E_INVALID_DATA_FROM_RECOGNIZER","features":[303]},{"name":"TPC_E_INVALID_INPUT_RECT","features":[303]},{"name":"TPC_E_INVALID_PACKET_DESCRIPTION","features":[303]},{"name":"TPC_E_INVALID_PROPERTY","features":[303]},{"name":"TPC_E_INVALID_RIGHTS","features":[303]},{"name":"TPC_E_INVALID_STROKE","features":[303]},{"name":"TPC_E_NOT_RELEVANT","features":[303]},{"name":"TPC_E_NO_DEFAULT_TABLET","features":[303]},{"name":"TPC_E_OUT_OF_ORDER_CALL","features":[303]},{"name":"TPC_E_QUEUE_FULL","features":[303]},{"name":"TPC_E_RECOGNIZER_NOT_REGISTERED","features":[303]},{"name":"TPC_E_UNKNOWN_PROPERTY","features":[303]},{"name":"TPC_S_INTERRUPTED","features":[303]},{"name":"TPC_S_NO_DATA_TO_PROCESS","features":[303]},{"name":"TPC_S_TRUNCATED","features":[303]},{"name":"TPMAPI_E_ACCESS_DENIED","features":[303]},{"name":"TPMAPI_E_AUTHORIZATION_FAILED","features":[303]},{"name":"TPMAPI_E_AUTHORIZATION_REVOKED","features":[303]},{"name":"TPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED","features":[303]},{"name":"TPMAPI_E_BUFFER_TOO_SMALL","features":[303]},{"name":"TPMAPI_E_EMPTY_TCG_LOG","features":[303]},{"name":"TPMAPI_E_ENCRYPTION_FAILED","features":[303]},{"name":"TPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL","features":[303]},{"name":"TPMAPI_E_FIPS_RNG_CHECK_FAILED","features":[303]},{"name":"TPMAPI_E_INTERNAL_ERROR","features":[303]},{"name":"TPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE","features":[303]},{"name":"TPMAPI_E_INVALID_CONTEXT_HANDLE","features":[303]},{"name":"TPMAPI_E_INVALID_CONTEXT_PARAMS","features":[303]},{"name":"TPMAPI_E_INVALID_DELEGATE_BLOB","features":[303]},{"name":"TPMAPI_E_INVALID_ENCODING","features":[303]},{"name":"TPMAPI_E_INVALID_KEY_BLOB","features":[303]},{"name":"TPMAPI_E_INVALID_KEY_PARAMS","features":[303]},{"name":"TPMAPI_E_INVALID_KEY_SIZE","features":[303]},{"name":"TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB","features":[303]},{"name":"TPMAPI_E_INVALID_OUTPUT_POINTER","features":[303]},{"name":"TPMAPI_E_INVALID_OWNER_AUTH","features":[303]},{"name":"TPMAPI_E_INVALID_PARAMETER","features":[303]},{"name":"TPMAPI_E_INVALID_PCR_DATA","features":[303]},{"name":"TPMAPI_E_INVALID_PCR_INDEX","features":[303]},{"name":"TPMAPI_E_INVALID_POLICYAUTH_BLOB_TYPE","features":[303]},{"name":"TPMAPI_E_INVALID_STATE","features":[303]},{"name":"TPMAPI_E_INVALID_TCG_LOG_ENTRY","features":[303]},{"name":"TPMAPI_E_INVALID_TPM_VERSION","features":[303]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_KEY","features":[303]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_OTHER","features":[303]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_POLICY","features":[303]},{"name":"TPMAPI_E_MESSAGE_TOO_LARGE","features":[303]},{"name":"TPMAPI_E_NOT_ENOUGH_DATA","features":[303]},{"name":"TPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND","features":[303]},{"name":"TPMAPI_E_NV_BITS_NOT_DEFINED","features":[303]},{"name":"TPMAPI_E_NV_BITS_NOT_READY","features":[303]},{"name":"TPMAPI_E_OUT_OF_MEMORY","features":[303]},{"name":"TPMAPI_E_OWNER_AUTH_NOT_NULL","features":[303]},{"name":"TPMAPI_E_POLICY_DENIES_OPERATION","features":[303]},{"name":"TPMAPI_E_SEALING_KEY_CHANGED","features":[303]},{"name":"TPMAPI_E_SEALING_KEY_NOT_AVAILABLE","features":[303]},{"name":"TPMAPI_E_SVN_COUNTER_NOT_AVAILABLE","features":[303]},{"name":"TPMAPI_E_TBS_COMMUNICATION_ERROR","features":[303]},{"name":"TPMAPI_E_TCG_INVALID_DIGEST_ENTRY","features":[303]},{"name":"TPMAPI_E_TCG_SEPARATOR_ABSENT","features":[303]},{"name":"TPMAPI_E_TOO_MUCH_DATA","features":[303]},{"name":"TPMAPI_E_TPM_COMMAND_ERROR","features":[303]},{"name":"TPM_20_E_ASYMMETRIC","features":[303]},{"name":"TPM_20_E_ATTRIBUTES","features":[303]},{"name":"TPM_20_E_AUTHSIZE","features":[303]},{"name":"TPM_20_E_AUTH_CONTEXT","features":[303]},{"name":"TPM_20_E_AUTH_FAIL","features":[303]},{"name":"TPM_20_E_AUTH_MISSING","features":[303]},{"name":"TPM_20_E_AUTH_TYPE","features":[303]},{"name":"TPM_20_E_AUTH_UNAVAILABLE","features":[303]},{"name":"TPM_20_E_BAD_AUTH","features":[303]},{"name":"TPM_20_E_BAD_CONTEXT","features":[303]},{"name":"TPM_20_E_BINDING","features":[303]},{"name":"TPM_20_E_CANCELED","features":[303]},{"name":"TPM_20_E_COMMAND_CODE","features":[303]},{"name":"TPM_20_E_COMMAND_SIZE","features":[303]},{"name":"TPM_20_E_CONTEXT_GAP","features":[303]},{"name":"TPM_20_E_CPHASH","features":[303]},{"name":"TPM_20_E_CURVE","features":[303]},{"name":"TPM_20_E_DISABLED","features":[303]},{"name":"TPM_20_E_ECC_CURVE","features":[303]},{"name":"TPM_20_E_ECC_POINT","features":[303]},{"name":"TPM_20_E_EXCLUSIVE","features":[303]},{"name":"TPM_20_E_EXPIRED","features":[303]},{"name":"TPM_20_E_FAILURE","features":[303]},{"name":"TPM_20_E_HANDLE","features":[303]},{"name":"TPM_20_E_HASH","features":[303]},{"name":"TPM_20_E_HIERARCHY","features":[303]},{"name":"TPM_20_E_HMAC","features":[303]},{"name":"TPM_20_E_INITIALIZE","features":[303]},{"name":"TPM_20_E_INSUFFICIENT","features":[303]},{"name":"TPM_20_E_INTEGRITY","features":[303]},{"name":"TPM_20_E_KDF","features":[303]},{"name":"TPM_20_E_KEY","features":[303]},{"name":"TPM_20_E_KEY_SIZE","features":[303]},{"name":"TPM_20_E_LOCALITY","features":[303]},{"name":"TPM_20_E_LOCKOUT","features":[303]},{"name":"TPM_20_E_MEMORY","features":[303]},{"name":"TPM_20_E_MGF","features":[303]},{"name":"TPM_20_E_MODE","features":[303]},{"name":"TPM_20_E_NEEDS_TEST","features":[303]},{"name":"TPM_20_E_NONCE","features":[303]},{"name":"TPM_20_E_NO_RESULT","features":[303]},{"name":"TPM_20_E_NV_AUTHORIZATION","features":[303]},{"name":"TPM_20_E_NV_DEFINED","features":[303]},{"name":"TPM_20_E_NV_LOCKED","features":[303]},{"name":"TPM_20_E_NV_RANGE","features":[303]},{"name":"TPM_20_E_NV_RATE","features":[303]},{"name":"TPM_20_E_NV_SIZE","features":[303]},{"name":"TPM_20_E_NV_SPACE","features":[303]},{"name":"TPM_20_E_NV_UNAVAILABLE","features":[303]},{"name":"TPM_20_E_NV_UNINITIALIZED","features":[303]},{"name":"TPM_20_E_OBJECT_HANDLES","features":[303]},{"name":"TPM_20_E_OBJECT_MEMORY","features":[303]},{"name":"TPM_20_E_PARENT","features":[303]},{"name":"TPM_20_E_PCR","features":[303]},{"name":"TPM_20_E_PCR_CHANGED","features":[303]},{"name":"TPM_20_E_POLICY","features":[303]},{"name":"TPM_20_E_POLICY_CC","features":[303]},{"name":"TPM_20_E_POLICY_FAIL","features":[303]},{"name":"TPM_20_E_PP","features":[303]},{"name":"TPM_20_E_PRIVATE","features":[303]},{"name":"TPM_20_E_RANGE","features":[303]},{"name":"TPM_20_E_REBOOT","features":[303]},{"name":"TPM_20_E_RESERVED_BITS","features":[303]},{"name":"TPM_20_E_RETRY","features":[303]},{"name":"TPM_20_E_SCHEME","features":[303]},{"name":"TPM_20_E_SELECTOR","features":[303]},{"name":"TPM_20_E_SENSITIVE","features":[303]},{"name":"TPM_20_E_SEQUENCE","features":[303]},{"name":"TPM_20_E_SESSION_HANDLES","features":[303]},{"name":"TPM_20_E_SESSION_MEMORY","features":[303]},{"name":"TPM_20_E_SIGNATURE","features":[303]},{"name":"TPM_20_E_SIZE","features":[303]},{"name":"TPM_20_E_SYMMETRIC","features":[303]},{"name":"TPM_20_E_TAG","features":[303]},{"name":"TPM_20_E_TESTING","features":[303]},{"name":"TPM_20_E_TICKET","features":[303]},{"name":"TPM_20_E_TOO_MANY_CONTEXTS","features":[303]},{"name":"TPM_20_E_TYPE","features":[303]},{"name":"TPM_20_E_UNBALANCED","features":[303]},{"name":"TPM_20_E_UPGRADE","features":[303]},{"name":"TPM_20_E_VALUE","features":[303]},{"name":"TPM_20_E_YIELDED","features":[303]},{"name":"TPM_E_AREA_LOCKED","features":[303]},{"name":"TPM_E_ATTESTATION_CHALLENGE_NOT_SET","features":[303]},{"name":"TPM_E_AUDITFAILURE","features":[303]},{"name":"TPM_E_AUDITFAIL_SUCCESSFUL","features":[303]},{"name":"TPM_E_AUDITFAIL_UNSUCCESSFUL","features":[303]},{"name":"TPM_E_AUTH2FAIL","features":[303]},{"name":"TPM_E_AUTHFAIL","features":[303]},{"name":"TPM_E_AUTH_CONFLICT","features":[303]},{"name":"TPM_E_BADCONTEXT","features":[303]},{"name":"TPM_E_BADINDEX","features":[303]},{"name":"TPM_E_BADTAG","features":[303]},{"name":"TPM_E_BAD_ATTRIBUTES","features":[303]},{"name":"TPM_E_BAD_COUNTER","features":[303]},{"name":"TPM_E_BAD_DATASIZE","features":[303]},{"name":"TPM_E_BAD_DELEGATE","features":[303]},{"name":"TPM_E_BAD_HANDLE","features":[303]},{"name":"TPM_E_BAD_KEY_PROPERTY","features":[303]},{"name":"TPM_E_BAD_LOCALITY","features":[303]},{"name":"TPM_E_BAD_MIGRATION","features":[303]},{"name":"TPM_E_BAD_MODE","features":[303]},{"name":"TPM_E_BAD_ORDINAL","features":[303]},{"name":"TPM_E_BAD_PARAMETER","features":[303]},{"name":"TPM_E_BAD_PARAM_SIZE","features":[303]},{"name":"TPM_E_BAD_PRESENCE","features":[303]},{"name":"TPM_E_BAD_SCHEME","features":[303]},{"name":"TPM_E_BAD_SIGNATURE","features":[303]},{"name":"TPM_E_BAD_TYPE","features":[303]},{"name":"TPM_E_BAD_VERSION","features":[303]},{"name":"TPM_E_BUFFER_LENGTH_MISMATCH","features":[303]},{"name":"TPM_E_CLAIM_TYPE_NOT_SUPPORTED","features":[303]},{"name":"TPM_E_CLEAR_DISABLED","features":[303]},{"name":"TPM_E_COMMAND_BLOCKED","features":[303]},{"name":"TPM_E_CONTEXT_GAP","features":[303]},{"name":"TPM_E_DAA_INPUT_DATA0","features":[303]},{"name":"TPM_E_DAA_INPUT_DATA1","features":[303]},{"name":"TPM_E_DAA_ISSUER_SETTINGS","features":[303]},{"name":"TPM_E_DAA_ISSUER_VALIDITY","features":[303]},{"name":"TPM_E_DAA_RESOURCES","features":[303]},{"name":"TPM_E_DAA_STAGE","features":[303]},{"name":"TPM_E_DAA_TPM_SETTINGS","features":[303]},{"name":"TPM_E_DAA_WRONG_W","features":[303]},{"name":"TPM_E_DEACTIVATED","features":[303]},{"name":"TPM_E_DECRYPT_ERROR","features":[303]},{"name":"TPM_E_DEFEND_LOCK_RUNNING","features":[303]},{"name":"TPM_E_DELEGATE_ADMIN","features":[303]},{"name":"TPM_E_DELEGATE_FAMILY","features":[303]},{"name":"TPM_E_DELEGATE_LOCK","features":[303]},{"name":"TPM_E_DISABLED","features":[303]},{"name":"TPM_E_DISABLED_CMD","features":[303]},{"name":"TPM_E_DOING_SELFTEST","features":[303]},{"name":"TPM_E_DUPLICATE_VHANDLE","features":[303]},{"name":"TPM_E_EMBEDDED_COMMAND_BLOCKED","features":[303]},{"name":"TPM_E_EMBEDDED_COMMAND_UNSUPPORTED","features":[303]},{"name":"TPM_E_ENCRYPT_ERROR","features":[303]},{"name":"TPM_E_ERROR_MASK","features":[303]},{"name":"TPM_E_FAIL","features":[303]},{"name":"TPM_E_FAILEDSELFTEST","features":[303]},{"name":"TPM_E_FAMILYCOUNT","features":[303]},{"name":"TPM_E_INAPPROPRIATE_ENC","features":[303]},{"name":"TPM_E_INAPPROPRIATE_SIG","features":[303]},{"name":"TPM_E_INSTALL_DISABLED","features":[303]},{"name":"TPM_E_INVALID_AUTHHANDLE","features":[303]},{"name":"TPM_E_INVALID_FAMILY","features":[303]},{"name":"TPM_E_INVALID_HANDLE","features":[303]},{"name":"TPM_E_INVALID_KEYHANDLE","features":[303]},{"name":"TPM_E_INVALID_KEYUSAGE","features":[303]},{"name":"TPM_E_INVALID_OWNER_AUTH","features":[303]},{"name":"TPM_E_INVALID_PCR_INFO","features":[303]},{"name":"TPM_E_INVALID_POSTINIT","features":[303]},{"name":"TPM_E_INVALID_RESOURCE","features":[303]},{"name":"TPM_E_INVALID_STRUCTURE","features":[303]},{"name":"TPM_E_IOERROR","features":[303]},{"name":"TPM_E_KEYNOTFOUND","features":[303]},{"name":"TPM_E_KEY_ALREADY_FINALIZED","features":[303]},{"name":"TPM_E_KEY_NOTSUPPORTED","features":[303]},{"name":"TPM_E_KEY_NOT_AUTHENTICATED","features":[303]},{"name":"TPM_E_KEY_NOT_FINALIZED","features":[303]},{"name":"TPM_E_KEY_NOT_LOADED","features":[303]},{"name":"TPM_E_KEY_NOT_SIGNING_KEY","features":[303]},{"name":"TPM_E_KEY_OWNER_CONTROL","features":[303]},{"name":"TPM_E_KEY_USAGE_POLICY_INVALID","features":[303]},{"name":"TPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[303]},{"name":"TPM_E_LOCKED_OUT","features":[303]},{"name":"TPM_E_MAXNVWRITES","features":[303]},{"name":"TPM_E_MA_AUTHORITY","features":[303]},{"name":"TPM_E_MA_DESTINATION","features":[303]},{"name":"TPM_E_MA_SOURCE","features":[303]},{"name":"TPM_E_MA_TICKET_SIGNATURE","features":[303]},{"name":"TPM_E_MIGRATEFAIL","features":[303]},{"name":"TPM_E_NEEDS_SELFTEST","features":[303]},{"name":"TPM_E_NOCONTEXTSPACE","features":[303]},{"name":"TPM_E_NOOPERATOR","features":[303]},{"name":"TPM_E_NOSPACE","features":[303]},{"name":"TPM_E_NOSRK","features":[303]},{"name":"TPM_E_NOTFIPS","features":[303]},{"name":"TPM_E_NOTLOCAL","features":[303]},{"name":"TPM_E_NOTRESETABLE","features":[303]},{"name":"TPM_E_NOTSEALED_BLOB","features":[303]},{"name":"TPM_E_NOT_FULLWRITE","features":[303]},{"name":"TPM_E_NOT_PCR_BOUND","features":[303]},{"name":"TPM_E_NO_ENDORSEMENT","features":[303]},{"name":"TPM_E_NO_KEY_CERTIFICATION","features":[303]},{"name":"TPM_E_NO_NV_PERMISSION","features":[303]},{"name":"TPM_E_NO_WRAP_TRANSPORT","features":[303]},{"name":"TPM_E_OWNER_CONTROL","features":[303]},{"name":"TPM_E_OWNER_SET","features":[303]},{"name":"TPM_E_PCP_AUTHENTICATION_FAILED","features":[303]},{"name":"TPM_E_PCP_AUTHENTICATION_IGNORED","features":[303]},{"name":"TPM_E_PCP_BUFFER_TOO_SMALL","features":[303]},{"name":"TPM_E_PCP_DEVICE_NOT_READY","features":[303]},{"name":"TPM_E_PCP_ERROR_MASK","features":[303]},{"name":"TPM_E_PCP_FLAG_NOT_SUPPORTED","features":[303]},{"name":"TPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[303]},{"name":"TPM_E_PCP_INTERNAL_ERROR","features":[303]},{"name":"TPM_E_PCP_INVALID_HANDLE","features":[303]},{"name":"TPM_E_PCP_INVALID_PARAMETER","features":[303]},{"name":"TPM_E_PCP_KEY_HANDLE_INVALIDATED","features":[303]},{"name":"TPM_E_PCP_KEY_NOT_AIK","features":[303]},{"name":"TPM_E_PCP_NOT_SUPPORTED","features":[303]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_MAY_BE_OUTDATED","features":[303]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_OUTDATED","features":[303]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_REBOOT","features":[303]},{"name":"TPM_E_PCP_POLICY_NOT_FOUND","features":[303]},{"name":"TPM_E_PCP_PROFILE_NOT_FOUND","features":[303]},{"name":"TPM_E_PCP_RAW_POLICY_NOT_SUPPORTED","features":[303]},{"name":"TPM_E_PCP_TICKET_MISSING","features":[303]},{"name":"TPM_E_PCP_UNSUPPORTED_PSS_SALT","features":[303]},{"name":"TPM_E_PCP_VALIDATION_FAILED","features":[303]},{"name":"TPM_E_PCP_WRONG_PARENT","features":[303]},{"name":"TPM_E_PERMANENTEK","features":[303]},{"name":"TPM_E_PER_NOWRITE","features":[303]},{"name":"TPM_E_PPI_ACPI_FAILURE","features":[303]},{"name":"TPM_E_PPI_BIOS_FAILURE","features":[303]},{"name":"TPM_E_PPI_BLOCKED_IN_BIOS","features":[303]},{"name":"TPM_E_PPI_NOT_SUPPORTED","features":[303]},{"name":"TPM_E_PPI_USER_ABORT","features":[303]},{"name":"TPM_E_PROVISIONING_INCOMPLETE","features":[303]},{"name":"TPM_E_READ_ONLY","features":[303]},{"name":"TPM_E_REQUIRES_SIGN","features":[303]},{"name":"TPM_E_RESOURCEMISSING","features":[303]},{"name":"TPM_E_RESOURCES","features":[303]},{"name":"TPM_E_RETRY","features":[303]},{"name":"TPM_E_SHA_ERROR","features":[303]},{"name":"TPM_E_SHA_THREAD","features":[303]},{"name":"TPM_E_SHORTRANDOM","features":[303]},{"name":"TPM_E_SIZE","features":[303]},{"name":"TPM_E_SOFT_KEY_ERROR","features":[303]},{"name":"TPM_E_TOOMANYCONTEXTS","features":[303]},{"name":"TPM_E_TOO_MUCH_DATA","features":[303]},{"name":"TPM_E_TPM_GENERATED_EPS","features":[303]},{"name":"TPM_E_TRANSPORT_NOTEXCLUSIVE","features":[303]},{"name":"TPM_E_VERSION_NOT_SUPPORTED","features":[303]},{"name":"TPM_E_WRITE_LOCKED","features":[303]},{"name":"TPM_E_WRONGPCRVAL","features":[303]},{"name":"TPM_E_WRONG_ENTITYTYPE","features":[303]},{"name":"TPM_E_ZERO_EXHAUST_ENABLED","features":[303]},{"name":"TRUE","features":[303]},{"name":"TRUST_E_ACTION_UNKNOWN","features":[303]},{"name":"TRUST_E_BAD_DIGEST","features":[303]},{"name":"TRUST_E_BASIC_CONSTRAINTS","features":[303]},{"name":"TRUST_E_CERT_SIGNATURE","features":[303]},{"name":"TRUST_E_COUNTER_SIGNER","features":[303]},{"name":"TRUST_E_EXPLICIT_DISTRUST","features":[303]},{"name":"TRUST_E_FAIL","features":[303]},{"name":"TRUST_E_FINANCIAL_CRITERIA","features":[303]},{"name":"TRUST_E_MALFORMED_SIGNATURE","features":[303]},{"name":"TRUST_E_NOSIGNATURE","features":[303]},{"name":"TRUST_E_NO_SIGNER_CERT","features":[303]},{"name":"TRUST_E_PROVIDER_UNKNOWN","features":[303]},{"name":"TRUST_E_SUBJECT_FORM_UNKNOWN","features":[303]},{"name":"TRUST_E_SUBJECT_NOT_TRUSTED","features":[303]},{"name":"TRUST_E_SYSTEM_ERROR","features":[303]},{"name":"TRUST_E_TIME_STAMP","features":[303]},{"name":"TYPE_E_AMBIGUOUSNAME","features":[303]},{"name":"TYPE_E_BADMODULEKIND","features":[303]},{"name":"TYPE_E_BUFFERTOOSMALL","features":[303]},{"name":"TYPE_E_CANTCREATETMPFILE","features":[303]},{"name":"TYPE_E_CANTLOADLIBRARY","features":[303]},{"name":"TYPE_E_CIRCULARTYPE","features":[303]},{"name":"TYPE_E_DLLFUNCTIONNOTFOUND","features":[303]},{"name":"TYPE_E_DUPLICATEID","features":[303]},{"name":"TYPE_E_ELEMENTNOTFOUND","features":[303]},{"name":"TYPE_E_FIELDNOTFOUND","features":[303]},{"name":"TYPE_E_INCONSISTENTPROPFUNCS","features":[303]},{"name":"TYPE_E_INVALIDID","features":[303]},{"name":"TYPE_E_INVALIDSTATE","features":[303]},{"name":"TYPE_E_INVDATAREAD","features":[303]},{"name":"TYPE_E_IOERROR","features":[303]},{"name":"TYPE_E_LIBNOTREGISTERED","features":[303]},{"name":"TYPE_E_NAMECONFLICT","features":[303]},{"name":"TYPE_E_OUTOFBOUNDS","features":[303]},{"name":"TYPE_E_QUALIFIEDNAMEDISALLOWED","features":[303]},{"name":"TYPE_E_REGISTRYACCESS","features":[303]},{"name":"TYPE_E_SIZETOOBIG","features":[303]},{"name":"TYPE_E_TYPEMISMATCH","features":[303]},{"name":"TYPE_E_UNDEFINEDTYPE","features":[303]},{"name":"TYPE_E_UNKNOWNLCID","features":[303]},{"name":"TYPE_E_UNSUPFORMAT","features":[303]},{"name":"TYPE_E_WRONGTYPEKIND","features":[303]},{"name":"UCEERR_BLOCKSFULL","features":[303]},{"name":"UCEERR_CHANNELSYNCABANDONED","features":[303]},{"name":"UCEERR_CHANNELSYNCTIMEDOUT","features":[303]},{"name":"UCEERR_COMMANDTRANSPORTDENIED","features":[303]},{"name":"UCEERR_CONNECTIONIDLOOKUPFAILED","features":[303]},{"name":"UCEERR_CTXSTACKFRSTTARGETNULL","features":[303]},{"name":"UCEERR_FEEDBACK_UNSUPPORTED","features":[303]},{"name":"UCEERR_GRAPHICSSTREAMALREADYOPEN","features":[303]},{"name":"UCEERR_GRAPHICSSTREAMUNAVAILABLE","features":[303]},{"name":"UCEERR_HANDLELOOKUPFAILED","features":[303]},{"name":"UCEERR_ILLEGALHANDLE","features":[303]},{"name":"UCEERR_ILLEGALPACKET","features":[303]},{"name":"UCEERR_ILLEGALRECORDTYPE","features":[303]},{"name":"UCEERR_INVALIDPACKETHEADER","features":[303]},{"name":"UCEERR_MALFORMEDPACKET","features":[303]},{"name":"UCEERR_MEMORYFAILURE","features":[303]},{"name":"UCEERR_MISSINGBEGINCOMMAND","features":[303]},{"name":"UCEERR_MISSINGENDCOMMAND","features":[303]},{"name":"UCEERR_NO_MULTIPLE_WORKER_THREADS","features":[303]},{"name":"UCEERR_OUTOFHANDLES","features":[303]},{"name":"UCEERR_PACKETRECORDOUTOFRANGE","features":[303]},{"name":"UCEERR_PARTITION_ZOMBIED","features":[303]},{"name":"UCEERR_REMOTINGNOTSUPPORTED","features":[303]},{"name":"UCEERR_RENDERTHREADFAILURE","features":[303]},{"name":"UCEERR_TRANSPORTDISCONNECTED","features":[303]},{"name":"UCEERR_TRANSPORTOVERLOADED","features":[303]},{"name":"UCEERR_TRANSPORTUNAVAILABLE","features":[303]},{"name":"UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED","features":[303]},{"name":"UCEERR_UNKNOWNPACKET","features":[303]},{"name":"UCEERR_UNSUPPORTEDTRANSPORTVERSION","features":[303]},{"name":"UI_E_AMBIGUOUS_MATCH","features":[303]},{"name":"UI_E_BOOLEAN_EXPECTED","features":[303]},{"name":"UI_E_CREATE_FAILED","features":[303]},{"name":"UI_E_DIFFERENT_OWNER","features":[303]},{"name":"UI_E_END_KEYFRAME_NOT_DETERMINED","features":[303]},{"name":"UI_E_FP_OVERFLOW","features":[303]},{"name":"UI_E_ILLEGAL_REENTRANCY","features":[303]},{"name":"UI_E_INVALID_DIMENSION","features":[303]},{"name":"UI_E_INVALID_OUTPUT","features":[303]},{"name":"UI_E_LOOPS_OVERLAP","features":[303]},{"name":"UI_E_OBJECT_SEALED","features":[303]},{"name":"UI_E_PRIMITIVE_OUT_OF_BOUNDS","features":[303]},{"name":"UI_E_SHUTDOWN_CALLED","features":[303]},{"name":"UI_E_START_KEYFRAME_AFTER_END","features":[303]},{"name":"UI_E_STORYBOARD_ACTIVE","features":[303]},{"name":"UI_E_STORYBOARD_NOT_PLAYING","features":[303]},{"name":"UI_E_TIMER_CLIENT_ALREADY_CONNECTED","features":[303]},{"name":"UI_E_TIME_BEFORE_LAST_UPDATE","features":[303]},{"name":"UI_E_TRANSITION_ALREADY_USED","features":[303]},{"name":"UI_E_TRANSITION_ECLIPSED","features":[303]},{"name":"UI_E_TRANSITION_NOT_IN_STORYBOARD","features":[303]},{"name":"UI_E_VALUE_NOT_DETERMINED","features":[303]},{"name":"UI_E_VALUE_NOT_SET","features":[303]},{"name":"UI_E_WINDOW_CLOSED","features":[303]},{"name":"UI_E_WRONG_THREAD","features":[303]},{"name":"UNICODE_STRING","features":[303]},{"name":"UTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION","features":[303]},{"name":"UTC_E_AGENT_DIAGNOSTICS_TOO_LARGE","features":[303]},{"name":"UTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT","features":[303]},{"name":"UTC_E_AOT_NOT_RUNNING","features":[303]},{"name":"UTC_E_API_BUSY","features":[303]},{"name":"UTC_E_API_NOT_SUPPORTED","features":[303]},{"name":"UTC_E_API_RESULT_UNAVAILABLE","features":[303]},{"name":"UTC_E_BINARY_MISSING","features":[303]},{"name":"UTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML","features":[303]},{"name":"UTC_E_CERT_REV_FAILED","features":[303]},{"name":"UTC_E_CHILD_PROCESS_FAILED","features":[303]},{"name":"UTC_E_COMMAND_LINE_NOT_AUTHORIZED","features":[303]},{"name":"UTC_E_DELAY_TERMINATED","features":[303]},{"name":"UTC_E_DEVICE_TICKET_ERROR","features":[303]},{"name":"UTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH","features":[303]},{"name":"UTC_E_ESCALATION_ALREADY_RUNNING","features":[303]},{"name":"UTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN","features":[303]},{"name":"UTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS","features":[303]},{"name":"UTC_E_ESCALATION_NOT_AUTHORIZED","features":[303]},{"name":"UTC_E_ESCALATION_TIMED_OUT","features":[303]},{"name":"UTC_E_EVENTLOG_ENTRY_MALFORMED","features":[303]},{"name":"UTC_E_EXCLUSIVITY_NOT_AVAILABLE","features":[303]},{"name":"UTC_E_EXE_TERMINATED","features":[303]},{"name":"UTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS","features":[303]},{"name":"UTC_E_FAILED_TO_RESOLVE_CONTAINER_ID","features":[303]},{"name":"UTC_E_FAILED_TO_START_NDISCAP","features":[303]},{"name":"UTC_E_FILTER_FUNCTION_RESTRICTED","features":[303]},{"name":"UTC_E_FILTER_ILLEGAL_EVAL","features":[303]},{"name":"UTC_E_FILTER_INVALID_COMMAND","features":[303]},{"name":"UTC_E_FILTER_INVALID_FUNCTION","features":[303]},{"name":"UTC_E_FILTER_INVALID_FUNCTION_PARAMS","features":[303]},{"name":"UTC_E_FILTER_INVALID_TYPE","features":[303]},{"name":"UTC_E_FILTER_MISSING_ATTRIBUTE","features":[303]},{"name":"UTC_E_FILTER_VARIABLE_NOT_FOUND","features":[303]},{"name":"UTC_E_FILTER_VERSION_MISMATCH","features":[303]},{"name":"UTC_E_FORWARDER_ALREADY_DISABLED","features":[303]},{"name":"UTC_E_FORWARDER_ALREADY_ENABLED","features":[303]},{"name":"UTC_E_FORWARDER_PRODUCER_MISMATCH","features":[303]},{"name":"UTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED","features":[303]},{"name":"UTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED","features":[303]},{"name":"UTC_E_GETFILE_FILE_PATH_NOT_APPROVED","features":[303]},{"name":"UTC_E_INSUFFICIENT_SPACE_TO_START_TRACE","features":[303]},{"name":"UTC_E_INTENTIONAL_SCRIPT_FAILURE","features":[303]},{"name":"UTC_E_INVALID_AGGREGATION_STRUCT","features":[303]},{"name":"UTC_E_INVALID_CUSTOM_FILTER","features":[303]},{"name":"UTC_E_INVALID_FILTER","features":[303]},{"name":"UTC_E_KERNELDUMP_LIMIT_REACHED","features":[303]},{"name":"UTC_E_MISSING_AGGREGATE_EVENT_TAG","features":[303]},{"name":"UTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE","features":[303]},{"name":"UTC_E_NO_WER_LOGGER_SUPPORTED","features":[303]},{"name":"UTC_E_PERFTRACK_ALREADY_TRACING","features":[303]},{"name":"UTC_E_REACHED_MAX_ESCALATIONS","features":[303]},{"name":"UTC_E_REESCALATED_TOO_QUICKLY","features":[303]},{"name":"UTC_E_RPC_TIMEOUT","features":[303]},{"name":"UTC_E_RPC_WAIT_FAILED","features":[303]},{"name":"UTC_E_SCENARIODEF_NOT_FOUND","features":[303]},{"name":"UTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH","features":[303]},{"name":"UTC_E_SCENARIO_HAS_NO_ACTIONS","features":[303]},{"name":"UTC_E_SCENARIO_THROTTLED","features":[303]},{"name":"UTC_E_SCRIPT_MISSING","features":[303]},{"name":"UTC_E_SCRIPT_TERMINATED","features":[303]},{"name":"UTC_E_SCRIPT_TYPE_INVALID","features":[303]},{"name":"UTC_E_SETREGKEYACTION_TYPE_NOT_APPROVED","features":[303]},{"name":"UTC_E_SETUP_NOT_AUTHORIZED","features":[303]},{"name":"UTC_E_SETUP_TIMED_OUT","features":[303]},{"name":"UTC_E_SIF_NOT_SUPPORTED","features":[303]},{"name":"UTC_E_SQM_INIT_FAILED","features":[303]},{"name":"UTC_E_THROTTLED","features":[303]},{"name":"UTC_E_TIME_TRIGGER_INVALID_TIME_RANGE","features":[303]},{"name":"UTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION","features":[303]},{"name":"UTC_E_TIME_TRIGGER_ON_START_INVALID","features":[303]},{"name":"UTC_E_TOGGLE_TRACE_STARTED","features":[303]},{"name":"UTC_E_TRACEPROFILE_NOT_FOUND","features":[303]},{"name":"UTC_E_TRACERS_DONT_EXIST","features":[303]},{"name":"UTC_E_TRACE_BUFFER_LIMIT_EXCEEDED","features":[303]},{"name":"UTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET","features":[303]},{"name":"UTC_E_TRACE_NOT_RUNNING","features":[303]},{"name":"UTC_E_TRACE_THROTTLED","features":[303]},{"name":"UTC_E_TRIGGER_MISMATCH","features":[303]},{"name":"UTC_E_TRIGGER_NOT_FOUND","features":[303]},{"name":"UTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED","features":[303]},{"name":"UTC_E_TTTRACER_RETURNED_ERROR","features":[303]},{"name":"UTC_E_TTTRACER_STORAGE_FULL","features":[303]},{"name":"UTC_E_UNABLE_TO_RESOLVE_SESSION","features":[303]},{"name":"UTC_E_UNAPPROVED_SCRIPT","features":[303]},{"name":"UTC_E_WINRT_INIT_FAILED","features":[303]},{"name":"VARIANT_BOOL","features":[303]},{"name":"VARIANT_FALSE","features":[303]},{"name":"VARIANT_TRUE","features":[303]},{"name":"VIEW_E_DRAW","features":[303]},{"name":"VIEW_E_FIRST","features":[303]},{"name":"VIEW_E_LAST","features":[303]},{"name":"VIEW_S_ALREADY_FROZEN","features":[303]},{"name":"VIEW_S_FIRST","features":[303]},{"name":"VIEW_S_LAST","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_GUEST_MEMORY_NOT_FOUND","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_INVALID_VP_STATE","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_NESTED_VIRTUALIZATION_NOT_SUPPORTED","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_NO_VP_FOUND_IN_PARTITION_STATE","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_PARTITION_STATE_NOT_FOUND","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_VA_NOT_MAPPED","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_VP_VTL_NOT_ENABLED","features":[303]},{"name":"VM_SAVED_STATE_DUMP_E_WINDOWS_KERNEL_IMAGE_NOT_FOUND","features":[303]},{"name":"VOLMGR_KSR_BYPASS","features":[303]},{"name":"VOLMGR_KSR_ERROR","features":[303]},{"name":"VOLMGR_KSR_READ_ERROR","features":[303]},{"name":"WAIT_ABANDONED","features":[303]},{"name":"WAIT_ABANDONED_0","features":[303]},{"name":"WAIT_EVENT","features":[303]},{"name":"WAIT_FAILED","features":[303]},{"name":"WAIT_IO_COMPLETION","features":[303]},{"name":"WAIT_OBJECT_0","features":[303]},{"name":"WAIT_TIMEOUT","features":[303]},{"name":"WARNING_IPSEC_MM_POLICY_PRUNED","features":[303]},{"name":"WARNING_IPSEC_QM_POLICY_PRUNED","features":[303]},{"name":"WARNING_NO_MD5_MIGRATION","features":[303]},{"name":"WBREAK_E_BUFFER_TOO_SMALL","features":[303]},{"name":"WBREAK_E_END_OF_TEXT","features":[303]},{"name":"WBREAK_E_INIT_FAILED","features":[303]},{"name":"WBREAK_E_QUERY_ONLY","features":[303]},{"name":"WEB_E_INVALID_JSON_NUMBER","features":[303]},{"name":"WEB_E_INVALID_JSON_STRING","features":[303]},{"name":"WEB_E_INVALID_XML","features":[303]},{"name":"WEB_E_JSON_VALUE_NOT_FOUND","features":[303]},{"name":"WEB_E_MISSING_REQUIRED_ATTRIBUTE","features":[303]},{"name":"WEB_E_MISSING_REQUIRED_ELEMENT","features":[303]},{"name":"WEB_E_RESOURCE_TOO_LARGE","features":[303]},{"name":"WEB_E_UNEXPECTED_CONTENT","features":[303]},{"name":"WEB_E_UNSUPPORTED_FORMAT","features":[303]},{"name":"WEP_E_BUFFER_TOO_LARGE","features":[303]},{"name":"WEP_E_FIXED_DATA_NOT_SUPPORTED","features":[303]},{"name":"WEP_E_HARDWARE_NOT_COMPLIANT","features":[303]},{"name":"WEP_E_LOCK_NOT_CONFIGURED","features":[303]},{"name":"WEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[303]},{"name":"WEP_E_NO_LICENSE","features":[303]},{"name":"WEP_E_OS_NOT_PROTECTED","features":[303]},{"name":"WEP_E_PROTECTION_SUSPENDED","features":[303]},{"name":"WEP_E_UNEXPECTED_FAIL","features":[303]},{"name":"WER_E_ALREADY_REPORTING","features":[303]},{"name":"WER_E_CANCELED","features":[303]},{"name":"WER_E_CRASH_FAILURE","features":[303]},{"name":"WER_E_DUMP_THROTTLED","features":[303]},{"name":"WER_E_INSUFFICIENT_CONSENT","features":[303]},{"name":"WER_E_NETWORK_FAILURE","features":[303]},{"name":"WER_E_NOT_INITIALIZED","features":[303]},{"name":"WER_E_TOO_HEAVY","features":[303]},{"name":"WER_S_ASSERT_CONTINUE","features":[303]},{"name":"WER_S_DISABLED","features":[303]},{"name":"WER_S_DISABLED_ARCHIVE","features":[303]},{"name":"WER_S_DISABLED_QUEUE","features":[303]},{"name":"WER_S_IGNORE_ALL_ASSERTS","features":[303]},{"name":"WER_S_IGNORE_ASSERT_INSTANCE","features":[303]},{"name":"WER_S_REPORT_ASYNC","features":[303]},{"name":"WER_S_REPORT_DEBUG","features":[303]},{"name":"WER_S_REPORT_QUEUED","features":[303]},{"name":"WER_S_REPORT_UPLOADED","features":[303]},{"name":"WER_S_REPORT_UPLOADED_CAB","features":[303]},{"name":"WER_S_SUSPENDED_UPLOAD","features":[303]},{"name":"WER_S_THROTTLED","features":[303]},{"name":"WHV_E_GPA_RANGE_NOT_FOUND","features":[303]},{"name":"WHV_E_INSUFFICIENT_BUFFER","features":[303]},{"name":"WHV_E_INVALID_PARTITION_CONFIG","features":[303]},{"name":"WHV_E_INVALID_VP_REGISTER_NAME","features":[303]},{"name":"WHV_E_INVALID_VP_STATE","features":[303]},{"name":"WHV_E_UNKNOWN_CAPABILITY","features":[303]},{"name":"WHV_E_UNKNOWN_PROPERTY","features":[303]},{"name":"WHV_E_UNSUPPORTED_HYPERVISOR_CONFIG","features":[303]},{"name":"WHV_E_UNSUPPORTED_PROCESSOR_CONFIG","features":[303]},{"name":"WHV_E_VP_ALREADY_EXISTS","features":[303]},{"name":"WHV_E_VP_DOES_NOT_EXIST","features":[303]},{"name":"WIN32_ERROR","features":[303]},{"name":"WINCODEC_ERR_ALREADYLOCKED","features":[303]},{"name":"WINCODEC_ERR_BADHEADER","features":[303]},{"name":"WINCODEC_ERR_BADIMAGE","features":[303]},{"name":"WINCODEC_ERR_BADMETADATAHEADER","features":[303]},{"name":"WINCODEC_ERR_BADSTREAMDATA","features":[303]},{"name":"WINCODEC_ERR_CODECNOTHUMBNAIL","features":[303]},{"name":"WINCODEC_ERR_CODECPRESENT","features":[303]},{"name":"WINCODEC_ERR_CODECTOOMANYSCANLINES","features":[303]},{"name":"WINCODEC_ERR_COMPONENTINITIALIZEFAILURE","features":[303]},{"name":"WINCODEC_ERR_COMPONENTNOTFOUND","features":[303]},{"name":"WINCODEC_ERR_DUPLICATEMETADATAPRESENT","features":[303]},{"name":"WINCODEC_ERR_FRAMEMISSING","features":[303]},{"name":"WINCODEC_ERR_IMAGESIZEOUTOFRANGE","features":[303]},{"name":"WINCODEC_ERR_INSUFFICIENTBUFFER","features":[303]},{"name":"WINCODEC_ERR_INTERNALERROR","features":[303]},{"name":"WINCODEC_ERR_INVALIDJPEGSCANINDEX","features":[303]},{"name":"WINCODEC_ERR_INVALIDPROGRESSIVELEVEL","features":[303]},{"name":"WINCODEC_ERR_INVALIDQUERYCHARACTER","features":[303]},{"name":"WINCODEC_ERR_INVALIDQUERYREQUEST","features":[303]},{"name":"WINCODEC_ERR_INVALIDREGISTRATION","features":[303]},{"name":"WINCODEC_ERR_NOTINITIALIZED","features":[303]},{"name":"WINCODEC_ERR_PALETTEUNAVAILABLE","features":[303]},{"name":"WINCODEC_ERR_PROPERTYNOTFOUND","features":[303]},{"name":"WINCODEC_ERR_PROPERTYNOTSUPPORTED","features":[303]},{"name":"WINCODEC_ERR_PROPERTYSIZE","features":[303]},{"name":"WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE","features":[303]},{"name":"WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT","features":[303]},{"name":"WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS","features":[303]},{"name":"WINCODEC_ERR_STREAMNOTAVAILABLE","features":[303]},{"name":"WINCODEC_ERR_STREAMREAD","features":[303]},{"name":"WINCODEC_ERR_STREAMWRITE","features":[303]},{"name":"WINCODEC_ERR_TOOMUCHMETADATA","features":[303]},{"name":"WINCODEC_ERR_UNEXPECTEDMETADATATYPE","features":[303]},{"name":"WINCODEC_ERR_UNEXPECTEDSIZE","features":[303]},{"name":"WINCODEC_ERR_UNKNOWNIMAGEFORMAT","features":[303]},{"name":"WINCODEC_ERR_UNSUPPORTEDOPERATION","features":[303]},{"name":"WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT","features":[303]},{"name":"WINCODEC_ERR_UNSUPPORTEDVERSION","features":[303]},{"name":"WINCODEC_ERR_VALUEOUTOFRANGE","features":[303]},{"name":"WINCODEC_ERR_WIN32ERROR","features":[303]},{"name":"WINCODEC_ERR_WRONGSTATE","features":[303]},{"name":"WININET_E_ASYNC_THREAD_FAILED","features":[303]},{"name":"WININET_E_BAD_AUTO_PROXY_SCRIPT","features":[303]},{"name":"WININET_E_BAD_OPTION_LENGTH","features":[303]},{"name":"WININET_E_BAD_REGISTRY_PARAMETER","features":[303]},{"name":"WININET_E_CANNOT_CONNECT","features":[303]},{"name":"WININET_E_CHG_POST_IS_NON_SECURE","features":[303]},{"name":"WININET_E_CLIENT_AUTH_CERT_NEEDED","features":[303]},{"name":"WININET_E_CLIENT_AUTH_NOT_SETUP","features":[303]},{"name":"WININET_E_CONNECTION_ABORTED","features":[303]},{"name":"WININET_E_CONNECTION_RESET","features":[303]},{"name":"WININET_E_COOKIE_DECLINED","features":[303]},{"name":"WININET_E_COOKIE_NEEDS_CONFIRMATION","features":[303]},{"name":"WININET_E_DECODING_FAILED","features":[303]},{"name":"WININET_E_DIALOG_PENDING","features":[303]},{"name":"WININET_E_DISCONNECTED","features":[303]},{"name":"WININET_E_DOWNLEVEL_SERVER","features":[303]},{"name":"WININET_E_EXTENDED_ERROR","features":[303]},{"name":"WININET_E_FAILED_DUETOSECURITYCHECK","features":[303]},{"name":"WININET_E_FORCE_RETRY","features":[303]},{"name":"WININET_E_HANDLE_EXISTS","features":[303]},{"name":"WININET_E_HEADER_ALREADY_EXISTS","features":[303]},{"name":"WININET_E_HEADER_NOT_FOUND","features":[303]},{"name":"WININET_E_HTTPS_HTTP_SUBMIT_REDIR","features":[303]},{"name":"WININET_E_HTTPS_TO_HTTP_ON_REDIR","features":[303]},{"name":"WININET_E_HTTP_TO_HTTPS_ON_REDIR","features":[303]},{"name":"WININET_E_INCORRECT_FORMAT","features":[303]},{"name":"WININET_E_INCORRECT_HANDLE_STATE","features":[303]},{"name":"WININET_E_INCORRECT_HANDLE_TYPE","features":[303]},{"name":"WININET_E_INCORRECT_PASSWORD","features":[303]},{"name":"WININET_E_INCORRECT_USER_NAME","features":[303]},{"name":"WININET_E_INTERNAL_ERROR","features":[303]},{"name":"WININET_E_INVALID_CA","features":[303]},{"name":"WININET_E_INVALID_HEADER","features":[303]},{"name":"WININET_E_INVALID_OPERATION","features":[303]},{"name":"WININET_E_INVALID_OPTION","features":[303]},{"name":"WININET_E_INVALID_PROXY_REQUEST","features":[303]},{"name":"WININET_E_INVALID_QUERY_REQUEST","features":[303]},{"name":"WININET_E_INVALID_SERVER_RESPONSE","features":[303]},{"name":"WININET_E_INVALID_URL","features":[303]},{"name":"WININET_E_ITEM_NOT_FOUND","features":[303]},{"name":"WININET_E_LOGIN_FAILURE","features":[303]},{"name":"WININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[303]},{"name":"WININET_E_MIXED_SECURITY","features":[303]},{"name":"WININET_E_NAME_NOT_RESOLVED","features":[303]},{"name":"WININET_E_NEED_UI","features":[303]},{"name":"WININET_E_NOT_INITIALIZED","features":[303]},{"name":"WININET_E_NOT_PROXY_REQUEST","features":[303]},{"name":"WININET_E_NOT_REDIRECTED","features":[303]},{"name":"WININET_E_NO_CALLBACK","features":[303]},{"name":"WININET_E_NO_CONTEXT","features":[303]},{"name":"WININET_E_NO_DIRECT_ACCESS","features":[303]},{"name":"WININET_E_NO_NEW_CONTAINERS","features":[303]},{"name":"WININET_E_OPERATION_CANCELLED","features":[303]},{"name":"WININET_E_OPTION_NOT_SETTABLE","features":[303]},{"name":"WININET_E_OUT_OF_HANDLES","features":[303]},{"name":"WININET_E_POST_IS_NON_SECURE","features":[303]},{"name":"WININET_E_PROTOCOL_NOT_FOUND","features":[303]},{"name":"WININET_E_PROXY_SERVER_UNREACHABLE","features":[303]},{"name":"WININET_E_REDIRECT_FAILED","features":[303]},{"name":"WININET_E_REDIRECT_NEEDS_CONFIRMATION","features":[303]},{"name":"WININET_E_REDIRECT_SCHEME_CHANGE","features":[303]},{"name":"WININET_E_REGISTRY_VALUE_NOT_FOUND","features":[303]},{"name":"WININET_E_REQUEST_PENDING","features":[303]},{"name":"WININET_E_RETRY_DIALOG","features":[303]},{"name":"WININET_E_SECURITY_CHANNEL_ERROR","features":[303]},{"name":"WININET_E_SEC_CERT_CN_INVALID","features":[303]},{"name":"WININET_E_SEC_CERT_DATE_INVALID","features":[303]},{"name":"WININET_E_SEC_CERT_ERRORS","features":[303]},{"name":"WININET_E_SEC_CERT_REVOKED","features":[303]},{"name":"WININET_E_SEC_CERT_REV_FAILED","features":[303]},{"name":"WININET_E_SEC_INVALID_CERT","features":[303]},{"name":"WININET_E_SERVER_UNREACHABLE","features":[303]},{"name":"WININET_E_SHUTDOWN","features":[303]},{"name":"WININET_E_TCPIP_NOT_INSTALLED","features":[303]},{"name":"WININET_E_TIMEOUT","features":[303]},{"name":"WININET_E_UNABLE_TO_CACHE_FILE","features":[303]},{"name":"WININET_E_UNABLE_TO_DOWNLOAD_SCRIPT","features":[303]},{"name":"WININET_E_UNRECOGNIZED_SCHEME","features":[303]},{"name":"WINML_ERR_INVALID_BINDING","features":[303]},{"name":"WINML_ERR_INVALID_DEVICE","features":[303]},{"name":"WINML_ERR_SIZE_MISMATCH","features":[303]},{"name":"WINML_ERR_VALUE_NOTFOUND","features":[303]},{"name":"WINVER","features":[303]},{"name":"WINVER_MAXVER","features":[303]},{"name":"WPARAM","features":[303]},{"name":"WPN_E_ACCESS_DENIED","features":[303]},{"name":"WPN_E_ALL_URL_NOT_COMPLETED","features":[303]},{"name":"WPN_E_CALLBACK_ALREADY_REGISTERED","features":[303]},{"name":"WPN_E_CHANNEL_CLOSED","features":[303]},{"name":"WPN_E_CHANNEL_REQUEST_NOT_COMPLETE","features":[303]},{"name":"WPN_E_CLOUD_AUTH_UNAVAILABLE","features":[303]},{"name":"WPN_E_CLOUD_DISABLED","features":[303]},{"name":"WPN_E_CLOUD_DISABLED_FOR_APP","features":[303]},{"name":"WPN_E_CLOUD_INCAPABLE","features":[303]},{"name":"WPN_E_CLOUD_SERVICE_UNAVAILABLE","features":[303]},{"name":"WPN_E_DEV_ID_SIZE","features":[303]},{"name":"WPN_E_DUPLICATE_CHANNEL","features":[303]},{"name":"WPN_E_DUPLICATE_REGISTRATION","features":[303]},{"name":"WPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION","features":[303]},{"name":"WPN_E_GROUP_ALPHANUMERIC","features":[303]},{"name":"WPN_E_GROUP_SIZE","features":[303]},{"name":"WPN_E_IMAGE_NOT_FOUND_IN_CACHE","features":[303]},{"name":"WPN_E_INTERNET_INCAPABLE","features":[303]},{"name":"WPN_E_INVALID_APP","features":[303]},{"name":"WPN_E_INVALID_CLOUD_IMAGE","features":[303]},{"name":"WPN_E_INVALID_HTTP_STATUS_CODE","features":[303]},{"name":"WPN_E_NOTIFICATION_DISABLED","features":[303]},{"name":"WPN_E_NOTIFICATION_HIDDEN","features":[303]},{"name":"WPN_E_NOTIFICATION_ID_MATCHED","features":[303]},{"name":"WPN_E_NOTIFICATION_INCAPABLE","features":[303]},{"name":"WPN_E_NOTIFICATION_NOT_POSTED","features":[303]},{"name":"WPN_E_NOTIFICATION_POSTED","features":[303]},{"name":"WPN_E_NOTIFICATION_SIZE","features":[303]},{"name":"WPN_E_NOTIFICATION_TYPE_DISABLED","features":[303]},{"name":"WPN_E_OUTSTANDING_CHANNEL_REQUEST","features":[303]},{"name":"WPN_E_OUT_OF_SESSION","features":[303]},{"name":"WPN_E_PLATFORM_UNAVAILABLE","features":[303]},{"name":"WPN_E_POWER_SAVE","features":[303]},{"name":"WPN_E_PUSH_NOTIFICATION_INCAPABLE","features":[303]},{"name":"WPN_E_STORAGE_LOCKED","features":[303]},{"name":"WPN_E_TAG_ALPHANUMERIC","features":[303]},{"name":"WPN_E_TAG_SIZE","features":[303]},{"name":"WPN_E_TOAST_NOTIFICATION_DROPPED","features":[303]},{"name":"WS_E_ADDRESS_IN_USE","features":[303]},{"name":"WS_E_ADDRESS_NOT_AVAILABLE","features":[303]},{"name":"WS_E_ENDPOINT_ACCESS_DENIED","features":[303]},{"name":"WS_E_ENDPOINT_ACTION_NOT_SUPPORTED","features":[303]},{"name":"WS_E_ENDPOINT_DISCONNECTED","features":[303]},{"name":"WS_E_ENDPOINT_FAILURE","features":[303]},{"name":"WS_E_ENDPOINT_FAULT_RECEIVED","features":[303]},{"name":"WS_E_ENDPOINT_NOT_AVAILABLE","features":[303]},{"name":"WS_E_ENDPOINT_NOT_FOUND","features":[303]},{"name":"WS_E_ENDPOINT_TOO_BUSY","features":[303]},{"name":"WS_E_ENDPOINT_UNREACHABLE","features":[303]},{"name":"WS_E_INVALID_ENDPOINT_URL","features":[303]},{"name":"WS_E_INVALID_FORMAT","features":[303]},{"name":"WS_E_INVALID_OPERATION","features":[303]},{"name":"WS_E_NOT_SUPPORTED","features":[303]},{"name":"WS_E_NO_TRANSLATION_AVAILABLE","features":[303]},{"name":"WS_E_NUMERIC_OVERFLOW","features":[303]},{"name":"WS_E_OBJECT_FAULTED","features":[303]},{"name":"WS_E_OPERATION_ABANDONED","features":[303]},{"name":"WS_E_OPERATION_ABORTED","features":[303]},{"name":"WS_E_OPERATION_TIMED_OUT","features":[303]},{"name":"WS_E_OTHER","features":[303]},{"name":"WS_E_PROXY_ACCESS_DENIED","features":[303]},{"name":"WS_E_PROXY_FAILURE","features":[303]},{"name":"WS_E_PROXY_REQUIRES_BASIC_AUTH","features":[303]},{"name":"WS_E_PROXY_REQUIRES_DIGEST_AUTH","features":[303]},{"name":"WS_E_PROXY_REQUIRES_NEGOTIATE_AUTH","features":[303]},{"name":"WS_E_PROXY_REQUIRES_NTLM_AUTH","features":[303]},{"name":"WS_E_QUOTA_EXCEEDED","features":[303]},{"name":"WS_E_SECURITY_SYSTEM_FAILURE","features":[303]},{"name":"WS_E_SECURITY_TOKEN_EXPIRED","features":[303]},{"name":"WS_E_SECURITY_VERIFICATION_FAILURE","features":[303]},{"name":"WS_E_SERVER_REQUIRES_BASIC_AUTH","features":[303]},{"name":"WS_E_SERVER_REQUIRES_DIGEST_AUTH","features":[303]},{"name":"WS_E_SERVER_REQUIRES_NEGOTIATE_AUTH","features":[303]},{"name":"WS_E_SERVER_REQUIRES_NTLM_AUTH","features":[303]},{"name":"WS_S_ASYNC","features":[303]},{"name":"WS_S_END","features":[303]},{"name":"XACT_E_ABORTED","features":[303]},{"name":"XACT_E_ABORTING","features":[303]},{"name":"XACT_E_ALREADYINPROGRESS","features":[303]},{"name":"XACT_E_ALREADYOTHERSINGLEPHASE","features":[303]},{"name":"XACT_E_CANTRETAIN","features":[303]},{"name":"XACT_E_CLERKEXISTS","features":[303]},{"name":"XACT_E_CLERKNOTFOUND","features":[303]},{"name":"XACT_E_COMMITFAILED","features":[303]},{"name":"XACT_E_COMMITPREVENTED","features":[303]},{"name":"XACT_E_CONNECTION_DENIED","features":[303]},{"name":"XACT_E_CONNECTION_DOWN","features":[303]},{"name":"XACT_E_DEST_TMNOTAVAILABLE","features":[303]},{"name":"XACT_E_FIRST","features":[303]},{"name":"XACT_E_HEURISTICABORT","features":[303]},{"name":"XACT_E_HEURISTICCOMMIT","features":[303]},{"name":"XACT_E_HEURISTICDAMAGE","features":[303]},{"name":"XACT_E_HEURISTICDANGER","features":[303]},{"name":"XACT_E_INDOUBT","features":[303]},{"name":"XACT_E_INVALIDCOOKIE","features":[303]},{"name":"XACT_E_INVALIDLSN","features":[303]},{"name":"XACT_E_ISOLATIONLEVEL","features":[303]},{"name":"XACT_E_LAST","features":[303]},{"name":"XACT_E_LOGFULL","features":[303]},{"name":"XACT_E_LU_TX_DISABLED","features":[303]},{"name":"XACT_E_NETWORK_TX_DISABLED","features":[303]},{"name":"XACT_E_NOASYNC","features":[303]},{"name":"XACT_E_NOENLIST","features":[303]},{"name":"XACT_E_NOIMPORTOBJECT","features":[303]},{"name":"XACT_E_NOISORETAIN","features":[303]},{"name":"XACT_E_NORESOURCE","features":[303]},{"name":"XACT_E_NOTCURRENT","features":[303]},{"name":"XACT_E_NOTIMEOUT","features":[303]},{"name":"XACT_E_NOTRANSACTION","features":[303]},{"name":"XACT_E_NOTSUPPORTED","features":[303]},{"name":"XACT_E_PARTNER_NETWORK_TX_DISABLED","features":[303]},{"name":"XACT_E_PULL_COMM_FAILURE","features":[303]},{"name":"XACT_E_PUSH_COMM_FAILURE","features":[303]},{"name":"XACT_E_RECOVERYINPROGRESS","features":[303]},{"name":"XACT_E_REENLISTTIMEOUT","features":[303]},{"name":"XACT_E_REPLAYREQUEST","features":[303]},{"name":"XACT_E_TIP_CONNECT_FAILED","features":[303]},{"name":"XACT_E_TIP_DISABLED","features":[303]},{"name":"XACT_E_TIP_PROTOCOL_ERROR","features":[303]},{"name":"XACT_E_TIP_PULL_FAILED","features":[303]},{"name":"XACT_E_TMNOTAVAILABLE","features":[303]},{"name":"XACT_E_TRANSACTIONCLOSED","features":[303]},{"name":"XACT_E_UNABLE_TO_LOAD_DTC_PROXY","features":[303]},{"name":"XACT_E_UNABLE_TO_READ_DTC_CONFIG","features":[303]},{"name":"XACT_E_UNKNOWNRMGRID","features":[303]},{"name":"XACT_E_WRONGSTATE","features":[303]},{"name":"XACT_E_WRONGUOW","features":[303]},{"name":"XACT_E_XA_TX_DISABLED","features":[303]},{"name":"XACT_E_XTIONEXISTS","features":[303]},{"name":"XACT_S_ABORTING","features":[303]},{"name":"XACT_S_ALLNORETAIN","features":[303]},{"name":"XACT_S_ASYNC","features":[303]},{"name":"XACT_S_DEFECT","features":[303]},{"name":"XACT_S_FIRST","features":[303]},{"name":"XACT_S_LAST","features":[303]},{"name":"XACT_S_LASTRESOURCEMANAGER","features":[303]},{"name":"XACT_S_LOCALLY_OK","features":[303]},{"name":"XACT_S_MADECHANGESCONTENT","features":[303]},{"name":"XACT_S_MADECHANGESINFORM","features":[303]},{"name":"XACT_S_OKINFORM","features":[303]},{"name":"XACT_S_READONLY","features":[303]},{"name":"XACT_S_SINGLEPHASE","features":[303]},{"name":"XACT_S_SOMENORETAIN","features":[303]},{"name":"XENROLL_E_CANNOT_ADD_ROOT_CERT","features":[303]},{"name":"XENROLL_E_KEYSPEC_SMIME_MISMATCH","features":[303]},{"name":"XENROLL_E_KEY_NOT_EXPORTABLE","features":[303]},{"name":"XENROLL_E_RESPONSE_KA_HASH_MISMATCH","features":[303]},{"name":"XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND","features":[303]},{"name":"XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH","features":[303]},{"name":"_WIN32_IE_MAXVER","features":[303]},{"name":"_WIN32_MAXVER","features":[303]},{"name":"_WIN32_WINDOWS_MAXVER","features":[303]},{"name":"_WIN32_WINNT_MAXVER","features":[303]}],"391":[{"name":"CheckGamingPrivilegeSilently","features":[303,388]},{"name":"CheckGamingPrivilegeSilentlyForUser","features":[303,388]},{"name":"CheckGamingPrivilegeWithUI","features":[388]},{"name":"CheckGamingPrivilegeWithUIForUser","features":[388]},{"name":"GAMESTATS_OPEN_CREATED","features":[388]},{"name":"GAMESTATS_OPEN_OPENED","features":[388]},{"name":"GAMESTATS_OPEN_OPENONLY","features":[388]},{"name":"GAMESTATS_OPEN_OPENORCREATE","features":[388]},{"name":"GAMESTATS_OPEN_RESULT","features":[388]},{"name":"GAMESTATS_OPEN_TYPE","features":[388]},{"name":"GAME_INSTALL_SCOPE","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_NONE","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_S","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X_DEVKIT","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_S","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X","features":[388]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X_DEVKIT","features":[388]},{"name":"GAMING_DEVICE_MODEL_INFORMATION","features":[388]},{"name":"GAMING_DEVICE_VENDOR_ID","features":[388]},{"name":"GAMING_DEVICE_VENDOR_ID_MICROSOFT","features":[388]},{"name":"GAMING_DEVICE_VENDOR_ID_NONE","features":[388]},{"name":"GIS_ALL_USERS","features":[388]},{"name":"GIS_CURRENT_USER","features":[388]},{"name":"GIS_NOT_INSTALLED","features":[388]},{"name":"GameExplorer","features":[388]},{"name":"GameStatistics","features":[388]},{"name":"GameUICompletionRoutine","features":[388]},{"name":"GetExpandedResourceExclusiveCpuCount","features":[388]},{"name":"GetGamingDeviceModelInformation","features":[388]},{"name":"HasExpandedResources","features":[303,388]},{"name":"ID_GDF_THUMBNAIL_STR","features":[388]},{"name":"ID_GDF_XML_STR","features":[388]},{"name":"IGameExplorer","features":[388]},{"name":"IGameExplorer2","features":[388]},{"name":"IGameStatistics","features":[388]},{"name":"IGameStatisticsMgr","features":[388]},{"name":"IXblIdpAuthManager","features":[388]},{"name":"IXblIdpAuthManager2","features":[388]},{"name":"IXblIdpAuthTokenResult","features":[388]},{"name":"IXblIdpAuthTokenResult2","features":[388]},{"name":"KnownGamingPrivileges","features":[388]},{"name":"PlayerPickerUICompletionRoutine","features":[388]},{"name":"ProcessPendingGameUI","features":[303,388]},{"name":"ReleaseExclusiveCpuSets","features":[388]},{"name":"ShowChangeFriendRelationshipUI","features":[388]},{"name":"ShowChangeFriendRelationshipUIForUser","features":[388]},{"name":"ShowCustomizeUserProfileUI","features":[388]},{"name":"ShowCustomizeUserProfileUIForUser","features":[388]},{"name":"ShowFindFriendsUI","features":[388]},{"name":"ShowFindFriendsUIForUser","features":[388]},{"name":"ShowGameInfoUI","features":[388]},{"name":"ShowGameInfoUIForUser","features":[388]},{"name":"ShowGameInviteUI","features":[388]},{"name":"ShowGameInviteUIForUser","features":[388]},{"name":"ShowGameInviteUIWithContext","features":[388]},{"name":"ShowGameInviteUIWithContextForUser","features":[388]},{"name":"ShowPlayerPickerUI","features":[388]},{"name":"ShowPlayerPickerUIForUser","features":[388]},{"name":"ShowProfileCardUI","features":[388]},{"name":"ShowProfileCardUIForUser","features":[388]},{"name":"ShowTitleAchievementsUI","features":[388]},{"name":"ShowTitleAchievementsUIForUser","features":[388]},{"name":"ShowUserSettingsUI","features":[388]},{"name":"ShowUserSettingsUIForUser","features":[388]},{"name":"TryCancelPendingGameUI","features":[303,388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_LOAD_MSA_ACCOUNT_FAILED","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_MSA_INTERRUPT","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_NO_ACCOUNT_SET","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_NO_CONSENT","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_SUCCESS","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_SUCCESS","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_UNKNOWN","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_VIEW_NOT_SET","features":[388]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_XBOX_VETO","features":[388]},{"name":"XPRIVILEGE_ADD_FRIEND","features":[388]},{"name":"XPRIVILEGE_BROADCAST","features":[388]},{"name":"XPRIVILEGE_CLOUD_GAMING_JOIN_SESSION","features":[388]},{"name":"XPRIVILEGE_CLOUD_GAMING_MANAGE_SESSION","features":[388]},{"name":"XPRIVILEGE_CLOUD_SAVED_GAMES","features":[388]},{"name":"XPRIVILEGE_COMMUNICATIONS","features":[388]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_INGAME","features":[388]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_SKYPE","features":[388]},{"name":"XPRIVILEGE_GAME_DVR","features":[388]},{"name":"XPRIVILEGE_MULTIPLAYER_PARTIES","features":[388]},{"name":"XPRIVILEGE_MULTIPLAYER_SESSIONS","features":[388]},{"name":"XPRIVILEGE_PREMIUM_CONTENT","features":[388]},{"name":"XPRIVILEGE_PREMIUM_VIDEO","features":[388]},{"name":"XPRIVILEGE_PROFILE_VIEWING","features":[388]},{"name":"XPRIVILEGE_PURCHASE_CONTENT","features":[388]},{"name":"XPRIVILEGE_SHARE_CONTENT","features":[388]},{"name":"XPRIVILEGE_SHARE_KINECT_CONTENT","features":[388]},{"name":"XPRIVILEGE_SOCIAL_NETWORK_SHARING","features":[388]},{"name":"XPRIVILEGE_SUBSCRIPTION_CONTENT","features":[388]},{"name":"XPRIVILEGE_USER_CREATED_CONTENT","features":[388]},{"name":"XPRIVILEGE_VIDEO_COMMUNICATIONS","features":[388]},{"name":"XPRIVILEGE_VIEW_FRIENDS_LIST","features":[388]},{"name":"XblIdpAuthManager","features":[388]},{"name":"XblIdpAuthTokenResult","features":[388]}],"392":[{"name":"ALL_SERVICES","features":[389]},{"name":"ALL_SERVICE_TYPES","features":[389]},{"name":"AdjustCalendarDate","features":[303,389]},{"name":"C1_ALPHA","features":[389]},{"name":"C1_BLANK","features":[389]},{"name":"C1_CNTRL","features":[389]},{"name":"C1_DEFINED","features":[389]},{"name":"C1_DIGIT","features":[389]},{"name":"C1_LOWER","features":[389]},{"name":"C1_PUNCT","features":[389]},{"name":"C1_SPACE","features":[389]},{"name":"C1_UPPER","features":[389]},{"name":"C1_XDIGIT","features":[389]},{"name":"C2_ARABICNUMBER","features":[389]},{"name":"C2_BLOCKSEPARATOR","features":[389]},{"name":"C2_COMMONSEPARATOR","features":[389]},{"name":"C2_EUROPENUMBER","features":[389]},{"name":"C2_EUROPESEPARATOR","features":[389]},{"name":"C2_EUROPETERMINATOR","features":[389]},{"name":"C2_LEFTTORIGHT","features":[389]},{"name":"C2_NOTAPPLICABLE","features":[389]},{"name":"C2_OTHERNEUTRAL","features":[389]},{"name":"C2_RIGHTTOLEFT","features":[389]},{"name":"C2_SEGMENTSEPARATOR","features":[389]},{"name":"C2_WHITESPACE","features":[389]},{"name":"C3_ALPHA","features":[389]},{"name":"C3_DIACRITIC","features":[389]},{"name":"C3_FULLWIDTH","features":[389]},{"name":"C3_HALFWIDTH","features":[389]},{"name":"C3_HIGHSURROGATE","features":[389]},{"name":"C3_HIRAGANA","features":[389]},{"name":"C3_IDEOGRAPH","features":[389]},{"name":"C3_KASHIDA","features":[389]},{"name":"C3_KATAKANA","features":[389]},{"name":"C3_LEXICAL","features":[389]},{"name":"C3_LOWSURROGATE","features":[389]},{"name":"C3_NONSPACING","features":[389]},{"name":"C3_NOTAPPLICABLE","features":[389]},{"name":"C3_SYMBOL","features":[389]},{"name":"C3_VOWELMARK","features":[389]},{"name":"CALDATETIME","features":[389]},{"name":"CALDATETIME_DATEUNIT","features":[389]},{"name":"CALINFO_ENUMPROCA","features":[303,389]},{"name":"CALINFO_ENUMPROCEXA","features":[303,389]},{"name":"CALINFO_ENUMPROCEXEX","features":[303,389]},{"name":"CALINFO_ENUMPROCEXW","features":[303,389]},{"name":"CALINFO_ENUMPROCW","features":[303,389]},{"name":"CAL_GREGORIAN","features":[389]},{"name":"CAL_GREGORIAN_ARABIC","features":[389]},{"name":"CAL_GREGORIAN_ME_FRENCH","features":[389]},{"name":"CAL_GREGORIAN_US","features":[389]},{"name":"CAL_GREGORIAN_XLIT_ENGLISH","features":[389]},{"name":"CAL_GREGORIAN_XLIT_FRENCH","features":[389]},{"name":"CAL_HEBREW","features":[389]},{"name":"CAL_HIJRI","features":[389]},{"name":"CAL_ICALINTVALUE","features":[389]},{"name":"CAL_ITWODIGITYEARMAX","features":[389]},{"name":"CAL_IYEAROFFSETRANGE","features":[389]},{"name":"CAL_JAPAN","features":[389]},{"name":"CAL_KOREA","features":[389]},{"name":"CAL_NOUSEROVERRIDE","features":[389]},{"name":"CAL_PERSIAN","features":[389]},{"name":"CAL_RETURN_GENITIVE_NAMES","features":[389]},{"name":"CAL_RETURN_NUMBER","features":[389]},{"name":"CAL_SABBREVDAYNAME1","features":[389]},{"name":"CAL_SABBREVDAYNAME2","features":[389]},{"name":"CAL_SABBREVDAYNAME3","features":[389]},{"name":"CAL_SABBREVDAYNAME4","features":[389]},{"name":"CAL_SABBREVDAYNAME5","features":[389]},{"name":"CAL_SABBREVDAYNAME6","features":[389]},{"name":"CAL_SABBREVDAYNAME7","features":[389]},{"name":"CAL_SABBREVERASTRING","features":[389]},{"name":"CAL_SABBREVMONTHNAME1","features":[389]},{"name":"CAL_SABBREVMONTHNAME10","features":[389]},{"name":"CAL_SABBREVMONTHNAME11","features":[389]},{"name":"CAL_SABBREVMONTHNAME12","features":[389]},{"name":"CAL_SABBREVMONTHNAME13","features":[389]},{"name":"CAL_SABBREVMONTHNAME2","features":[389]},{"name":"CAL_SABBREVMONTHNAME3","features":[389]},{"name":"CAL_SABBREVMONTHNAME4","features":[389]},{"name":"CAL_SABBREVMONTHNAME5","features":[389]},{"name":"CAL_SABBREVMONTHNAME6","features":[389]},{"name":"CAL_SABBREVMONTHNAME7","features":[389]},{"name":"CAL_SABBREVMONTHNAME8","features":[389]},{"name":"CAL_SABBREVMONTHNAME9","features":[389]},{"name":"CAL_SCALNAME","features":[389]},{"name":"CAL_SDAYNAME1","features":[389]},{"name":"CAL_SDAYNAME2","features":[389]},{"name":"CAL_SDAYNAME3","features":[389]},{"name":"CAL_SDAYNAME4","features":[389]},{"name":"CAL_SDAYNAME5","features":[389]},{"name":"CAL_SDAYNAME6","features":[389]},{"name":"CAL_SDAYNAME7","features":[389]},{"name":"CAL_SENGLISHABBREVERANAME","features":[389]},{"name":"CAL_SENGLISHERANAME","features":[389]},{"name":"CAL_SERASTRING","features":[389]},{"name":"CAL_SJAPANESEERAFIRSTYEAR","features":[389]},{"name":"CAL_SLONGDATE","features":[389]},{"name":"CAL_SMONTHDAY","features":[389]},{"name":"CAL_SMONTHNAME1","features":[389]},{"name":"CAL_SMONTHNAME10","features":[389]},{"name":"CAL_SMONTHNAME11","features":[389]},{"name":"CAL_SMONTHNAME12","features":[389]},{"name":"CAL_SMONTHNAME13","features":[389]},{"name":"CAL_SMONTHNAME2","features":[389]},{"name":"CAL_SMONTHNAME3","features":[389]},{"name":"CAL_SMONTHNAME4","features":[389]},{"name":"CAL_SMONTHNAME5","features":[389]},{"name":"CAL_SMONTHNAME6","features":[389]},{"name":"CAL_SMONTHNAME7","features":[389]},{"name":"CAL_SMONTHNAME8","features":[389]},{"name":"CAL_SMONTHNAME9","features":[389]},{"name":"CAL_SRELATIVELONGDATE","features":[389]},{"name":"CAL_SSHORTDATE","features":[389]},{"name":"CAL_SSHORTESTDAYNAME1","features":[389]},{"name":"CAL_SSHORTESTDAYNAME2","features":[389]},{"name":"CAL_SSHORTESTDAYNAME3","features":[389]},{"name":"CAL_SSHORTESTDAYNAME4","features":[389]},{"name":"CAL_SSHORTESTDAYNAME5","features":[389]},{"name":"CAL_SSHORTESTDAYNAME6","features":[389]},{"name":"CAL_SSHORTESTDAYNAME7","features":[389]},{"name":"CAL_SYEARMONTH","features":[389]},{"name":"CAL_TAIWAN","features":[389]},{"name":"CAL_THAI","features":[389]},{"name":"CAL_UMALQURA","features":[389]},{"name":"CAL_USE_CP_ACP","features":[389]},{"name":"CANITER_SKIP_ZEROES","features":[389]},{"name":"CHARSETINFO","features":[389]},{"name":"CMLangConvertCharset","features":[389]},{"name":"CMLangString","features":[389]},{"name":"CMultiLanguage","features":[389]},{"name":"CODEPAGE_ENUMPROCA","features":[303,389]},{"name":"CODEPAGE_ENUMPROCW","features":[303,389]},{"name":"COMPARESTRING_RESULT","features":[389]},{"name":"COMPARE_STRING","features":[389]},{"name":"COMPARE_STRING_FLAGS","features":[389]},{"name":"CORRECTIVE_ACTION","features":[389]},{"name":"CORRECTIVE_ACTION_DELETE","features":[389]},{"name":"CORRECTIVE_ACTION_GET_SUGGESTIONS","features":[389]},{"name":"CORRECTIVE_ACTION_NONE","features":[389]},{"name":"CORRECTIVE_ACTION_REPLACE","features":[389]},{"name":"CPINFO","features":[389]},{"name":"CPINFOEXA","features":[389]},{"name":"CPINFOEXW","features":[389]},{"name":"CPIOD_FORCE_PROMPT","features":[389]},{"name":"CPIOD_PEEK","features":[389]},{"name":"CP_ACP","features":[389]},{"name":"CP_INSTALLED","features":[389]},{"name":"CP_MACCP","features":[389]},{"name":"CP_OEMCP","features":[389]},{"name":"CP_SUPPORTED","features":[389]},{"name":"CP_SYMBOL","features":[389]},{"name":"CP_THREAD_ACP","features":[389]},{"name":"CP_UTF7","features":[389]},{"name":"CP_UTF8","features":[389]},{"name":"CSTR_EQUAL","features":[389]},{"name":"CSTR_GREATER_THAN","features":[389]},{"name":"CSTR_LESS_THAN","features":[389]},{"name":"CTRY_ALBANIA","features":[389]},{"name":"CTRY_ALGERIA","features":[389]},{"name":"CTRY_ARGENTINA","features":[389]},{"name":"CTRY_ARMENIA","features":[389]},{"name":"CTRY_AUSTRALIA","features":[389]},{"name":"CTRY_AUSTRIA","features":[389]},{"name":"CTRY_AZERBAIJAN","features":[389]},{"name":"CTRY_BAHRAIN","features":[389]},{"name":"CTRY_BELARUS","features":[389]},{"name":"CTRY_BELGIUM","features":[389]},{"name":"CTRY_BELIZE","features":[389]},{"name":"CTRY_BOLIVIA","features":[389]},{"name":"CTRY_BRAZIL","features":[389]},{"name":"CTRY_BRUNEI_DARUSSALAM","features":[389]},{"name":"CTRY_BULGARIA","features":[389]},{"name":"CTRY_CANADA","features":[389]},{"name":"CTRY_CARIBBEAN","features":[389]},{"name":"CTRY_CHILE","features":[389]},{"name":"CTRY_COLOMBIA","features":[389]},{"name":"CTRY_COSTA_RICA","features":[389]},{"name":"CTRY_CROATIA","features":[389]},{"name":"CTRY_CZECH","features":[389]},{"name":"CTRY_DEFAULT","features":[389]},{"name":"CTRY_DENMARK","features":[389]},{"name":"CTRY_DOMINICAN_REPUBLIC","features":[389]},{"name":"CTRY_ECUADOR","features":[389]},{"name":"CTRY_EGYPT","features":[389]},{"name":"CTRY_EL_SALVADOR","features":[389]},{"name":"CTRY_ESTONIA","features":[389]},{"name":"CTRY_FAEROE_ISLANDS","features":[389]},{"name":"CTRY_FINLAND","features":[389]},{"name":"CTRY_FRANCE","features":[389]},{"name":"CTRY_GEORGIA","features":[389]},{"name":"CTRY_GERMANY","features":[389]},{"name":"CTRY_GREECE","features":[389]},{"name":"CTRY_GUATEMALA","features":[389]},{"name":"CTRY_HONDURAS","features":[389]},{"name":"CTRY_HONG_KONG","features":[389]},{"name":"CTRY_HUNGARY","features":[389]},{"name":"CTRY_ICELAND","features":[389]},{"name":"CTRY_INDIA","features":[389]},{"name":"CTRY_INDONESIA","features":[389]},{"name":"CTRY_IRAN","features":[389]},{"name":"CTRY_IRAQ","features":[389]},{"name":"CTRY_IRELAND","features":[389]},{"name":"CTRY_ISRAEL","features":[389]},{"name":"CTRY_ITALY","features":[389]},{"name":"CTRY_JAMAICA","features":[389]},{"name":"CTRY_JAPAN","features":[389]},{"name":"CTRY_JORDAN","features":[389]},{"name":"CTRY_KAZAKSTAN","features":[389]},{"name":"CTRY_KENYA","features":[389]},{"name":"CTRY_KUWAIT","features":[389]},{"name":"CTRY_KYRGYZSTAN","features":[389]},{"name":"CTRY_LATVIA","features":[389]},{"name":"CTRY_LEBANON","features":[389]},{"name":"CTRY_LIBYA","features":[389]},{"name":"CTRY_LIECHTENSTEIN","features":[389]},{"name":"CTRY_LITHUANIA","features":[389]},{"name":"CTRY_LUXEMBOURG","features":[389]},{"name":"CTRY_MACAU","features":[389]},{"name":"CTRY_MACEDONIA","features":[389]},{"name":"CTRY_MALAYSIA","features":[389]},{"name":"CTRY_MALDIVES","features":[389]},{"name":"CTRY_MEXICO","features":[389]},{"name":"CTRY_MONACO","features":[389]},{"name":"CTRY_MONGOLIA","features":[389]},{"name":"CTRY_MOROCCO","features":[389]},{"name":"CTRY_NETHERLANDS","features":[389]},{"name":"CTRY_NEW_ZEALAND","features":[389]},{"name":"CTRY_NICARAGUA","features":[389]},{"name":"CTRY_NORWAY","features":[389]},{"name":"CTRY_OMAN","features":[389]},{"name":"CTRY_PAKISTAN","features":[389]},{"name":"CTRY_PANAMA","features":[389]},{"name":"CTRY_PARAGUAY","features":[389]},{"name":"CTRY_PERU","features":[389]},{"name":"CTRY_PHILIPPINES","features":[389]},{"name":"CTRY_POLAND","features":[389]},{"name":"CTRY_PORTUGAL","features":[389]},{"name":"CTRY_PRCHINA","features":[389]},{"name":"CTRY_PUERTO_RICO","features":[389]},{"name":"CTRY_QATAR","features":[389]},{"name":"CTRY_ROMANIA","features":[389]},{"name":"CTRY_RUSSIA","features":[389]},{"name":"CTRY_SAUDI_ARABIA","features":[389]},{"name":"CTRY_SERBIA","features":[389]},{"name":"CTRY_SINGAPORE","features":[389]},{"name":"CTRY_SLOVAK","features":[389]},{"name":"CTRY_SLOVENIA","features":[389]},{"name":"CTRY_SOUTH_AFRICA","features":[389]},{"name":"CTRY_SOUTH_KOREA","features":[389]},{"name":"CTRY_SPAIN","features":[389]},{"name":"CTRY_SWEDEN","features":[389]},{"name":"CTRY_SWITZERLAND","features":[389]},{"name":"CTRY_SYRIA","features":[389]},{"name":"CTRY_TAIWAN","features":[389]},{"name":"CTRY_TATARSTAN","features":[389]},{"name":"CTRY_THAILAND","features":[389]},{"name":"CTRY_TRINIDAD_Y_TOBAGO","features":[389]},{"name":"CTRY_TUNISIA","features":[389]},{"name":"CTRY_TURKEY","features":[389]},{"name":"CTRY_UAE","features":[389]},{"name":"CTRY_UKRAINE","features":[389]},{"name":"CTRY_UNITED_KINGDOM","features":[389]},{"name":"CTRY_UNITED_STATES","features":[389]},{"name":"CTRY_URUGUAY","features":[389]},{"name":"CTRY_UZBEKISTAN","features":[389]},{"name":"CTRY_VENEZUELA","features":[389]},{"name":"CTRY_VIET_NAM","features":[389]},{"name":"CTRY_YEMEN","features":[389]},{"name":"CTRY_ZIMBABWE","features":[389]},{"name":"CT_CTYPE1","features":[389]},{"name":"CT_CTYPE2","features":[389]},{"name":"CT_CTYPE3","features":[389]},{"name":"CURRENCYFMTA","features":[389]},{"name":"CURRENCYFMTW","features":[389]},{"name":"CompareStringA","features":[389]},{"name":"CompareStringEx","features":[303,389]},{"name":"CompareStringOrdinal","features":[303,389]},{"name":"CompareStringW","features":[389]},{"name":"ConvertCalDateTimeToSystemTime","features":[303,389]},{"name":"ConvertDefaultLocale","features":[389]},{"name":"ConvertSystemTimeToCalDateTime","features":[303,389]},{"name":"DATEFMT_ENUMPROCA","features":[303,389]},{"name":"DATEFMT_ENUMPROCEXA","features":[303,389]},{"name":"DATEFMT_ENUMPROCEXEX","features":[303,389]},{"name":"DATEFMT_ENUMPROCEXW","features":[303,389]},{"name":"DATEFMT_ENUMPROCW","features":[303,389]},{"name":"DATE_AUTOLAYOUT","features":[389]},{"name":"DATE_LONGDATE","features":[389]},{"name":"DATE_LTRREADING","features":[389]},{"name":"DATE_MONTHDAY","features":[389]},{"name":"DATE_RTLREADING","features":[389]},{"name":"DATE_SHORTDATE","features":[389]},{"name":"DATE_USE_ALT_CALENDAR","features":[389]},{"name":"DATE_YEARMONTH","features":[389]},{"name":"DayUnit","features":[389]},{"name":"DetectEncodingInfo","features":[389]},{"name":"ELS_GUID_LANGUAGE_DETECTION","features":[389]},{"name":"ELS_GUID_SCRIPT_DETECTION","features":[389]},{"name":"ELS_GUID_TRANSLITERATION_BENGALI_TO_LATIN","features":[389]},{"name":"ELS_GUID_TRANSLITERATION_CYRILLIC_TO_LATIN","features":[389]},{"name":"ELS_GUID_TRANSLITERATION_DEVANAGARI_TO_LATIN","features":[389]},{"name":"ELS_GUID_TRANSLITERATION_HANGUL_DECOMPOSITION","features":[389]},{"name":"ELS_GUID_TRANSLITERATION_HANS_TO_HANT","features":[389]},{"name":"ELS_GUID_TRANSLITERATION_HANT_TO_HANS","features":[389]},{"name":"ELS_GUID_TRANSLITERATION_MALAYALAM_TO_LATIN","features":[389]},{"name":"ENUMTEXTMETRICA","features":[389,314]},{"name":"ENUMTEXTMETRICW","features":[389,314]},{"name":"ENUM_ALL_CALENDARS","features":[389]},{"name":"ENUM_DATE_FORMATS_FLAGS","features":[389]},{"name":"ENUM_SYSTEM_CODE_PAGES_FLAGS","features":[389]},{"name":"ENUM_SYSTEM_LANGUAGE_GROUPS_FLAGS","features":[389]},{"name":"EnumCalendarInfoA","features":[303,389]},{"name":"EnumCalendarInfoExA","features":[303,389]},{"name":"EnumCalendarInfoExEx","features":[303,389]},{"name":"EnumCalendarInfoExW","features":[303,389]},{"name":"EnumCalendarInfoW","features":[303,389]},{"name":"EnumDateFormatsA","features":[303,389]},{"name":"EnumDateFormatsExA","features":[303,389]},{"name":"EnumDateFormatsExEx","features":[303,389]},{"name":"EnumDateFormatsExW","features":[303,389]},{"name":"EnumDateFormatsW","features":[303,389]},{"name":"EnumLanguageGroupLocalesA","features":[303,389]},{"name":"EnumLanguageGroupLocalesW","features":[303,389]},{"name":"EnumSystemCodePagesA","features":[303,389]},{"name":"EnumSystemCodePagesW","features":[303,389]},{"name":"EnumSystemGeoID","features":[303,389]},{"name":"EnumSystemGeoNames","features":[303,389]},{"name":"EnumSystemLanguageGroupsA","features":[303,389]},{"name":"EnumSystemLanguageGroupsW","features":[303,389]},{"name":"EnumSystemLocalesA","features":[303,389]},{"name":"EnumSystemLocalesEx","features":[303,389]},{"name":"EnumSystemLocalesW","features":[303,389]},{"name":"EnumTimeFormatsA","features":[303,389]},{"name":"EnumTimeFormatsEx","features":[303,389]},{"name":"EnumTimeFormatsW","features":[303,389]},{"name":"EnumUILanguagesA","features":[303,389]},{"name":"EnumUILanguagesW","features":[303,389]},{"name":"EraUnit","features":[389]},{"name":"FILEMUIINFO","features":[389]},{"name":"FIND_ENDSWITH","features":[389]},{"name":"FIND_FROMEND","features":[389]},{"name":"FIND_FROMSTART","features":[389]},{"name":"FIND_STARTSWITH","features":[389]},{"name":"FOLD_STRING_MAP_FLAGS","features":[389]},{"name":"FONTSIGNATURE","features":[389]},{"name":"FindNLSString","features":[389]},{"name":"FindNLSStringEx","features":[303,389]},{"name":"FindStringOrdinal","features":[303,389]},{"name":"FoldStringA","features":[389]},{"name":"FoldStringW","features":[389]},{"name":"GEOCLASS_ALL","features":[389]},{"name":"GEOCLASS_NATION","features":[389]},{"name":"GEOCLASS_REGION","features":[389]},{"name":"GEOID_NOT_AVAILABLE","features":[389]},{"name":"GEO_CURRENCYCODE","features":[389]},{"name":"GEO_CURRENCYSYMBOL","features":[389]},{"name":"GEO_DIALINGCODE","features":[389]},{"name":"GEO_ENUMNAMEPROC","features":[303,389]},{"name":"GEO_ENUMPROC","features":[303,389]},{"name":"GEO_FRIENDLYNAME","features":[389]},{"name":"GEO_ID","features":[389]},{"name":"GEO_ISO2","features":[389]},{"name":"GEO_ISO3","features":[389]},{"name":"GEO_ISO_UN_NUMBER","features":[389]},{"name":"GEO_LATITUDE","features":[389]},{"name":"GEO_LCID","features":[389]},{"name":"GEO_LONGITUDE","features":[389]},{"name":"GEO_NAME","features":[389]},{"name":"GEO_NATION","features":[389]},{"name":"GEO_OFFICIALLANGUAGES","features":[389]},{"name":"GEO_OFFICIALNAME","features":[389]},{"name":"GEO_PARENT","features":[389]},{"name":"GEO_RFC1766","features":[389]},{"name":"GEO_TIMEZONES","features":[389]},{"name":"GOFFSET","features":[389]},{"name":"GSS_ALLOW_INHERITED_COMMON","features":[389]},{"name":"GetACP","features":[389]},{"name":"GetCPInfo","features":[303,389]},{"name":"GetCPInfoExA","features":[303,389]},{"name":"GetCPInfoExW","features":[303,389]},{"name":"GetCalendarDateFormatEx","features":[303,389]},{"name":"GetCalendarInfoA","features":[389]},{"name":"GetCalendarInfoEx","features":[389]},{"name":"GetCalendarInfoW","features":[389]},{"name":"GetCalendarSupportedDateRange","features":[303,389]},{"name":"GetCurrencyFormatA","features":[389]},{"name":"GetCurrencyFormatEx","features":[389]},{"name":"GetCurrencyFormatW","features":[389]},{"name":"GetDateFormatA","features":[303,389]},{"name":"GetDateFormatEx","features":[303,389]},{"name":"GetDateFormatW","features":[303,389]},{"name":"GetDistanceOfClosestLanguageInList","features":[389]},{"name":"GetDurationFormat","features":[303,389]},{"name":"GetDurationFormatEx","features":[303,389]},{"name":"GetFileMUIInfo","features":[303,389]},{"name":"GetFileMUIPath","features":[303,389]},{"name":"GetGeoInfoA","features":[389]},{"name":"GetGeoInfoEx","features":[389]},{"name":"GetGeoInfoW","features":[389]},{"name":"GetLocaleInfoA","features":[389]},{"name":"GetLocaleInfoEx","features":[389]},{"name":"GetLocaleInfoW","features":[389]},{"name":"GetNLSVersion","features":[303,389]},{"name":"GetNLSVersionEx","features":[303,389]},{"name":"GetNumberFormatA","features":[389]},{"name":"GetNumberFormatEx","features":[389]},{"name":"GetNumberFormatW","features":[389]},{"name":"GetOEMCP","features":[389]},{"name":"GetProcessPreferredUILanguages","features":[303,389]},{"name":"GetStringScripts","features":[389]},{"name":"GetStringTypeA","features":[303,389]},{"name":"GetStringTypeExA","features":[303,389]},{"name":"GetStringTypeExW","features":[303,389]},{"name":"GetStringTypeW","features":[303,389]},{"name":"GetSystemDefaultLCID","features":[389]},{"name":"GetSystemDefaultLangID","features":[389]},{"name":"GetSystemDefaultLocaleName","features":[389]},{"name":"GetSystemDefaultUILanguage","features":[389]},{"name":"GetSystemPreferredUILanguages","features":[303,389]},{"name":"GetTextCharset","features":[389,314]},{"name":"GetTextCharsetInfo","features":[389,314]},{"name":"GetThreadLocale","features":[389]},{"name":"GetThreadPreferredUILanguages","features":[303,389]},{"name":"GetThreadUILanguage","features":[389]},{"name":"GetTimeFormatA","features":[303,389]},{"name":"GetTimeFormatEx","features":[303,389]},{"name":"GetTimeFormatW","features":[303,389]},{"name":"GetUILanguageInfo","features":[303,389]},{"name":"GetUserDefaultGeoName","features":[389]},{"name":"GetUserDefaultLCID","features":[389]},{"name":"GetUserDefaultLangID","features":[389]},{"name":"GetUserDefaultLocaleName","features":[389]},{"name":"GetUserDefaultUILanguage","features":[389]},{"name":"GetUserGeoID","features":[389]},{"name":"GetUserPreferredUILanguages","features":[303,389]},{"name":"HIGHLEVEL_SERVICE_TYPES","features":[389]},{"name":"HIGH_SURROGATE_END","features":[389]},{"name":"HIGH_SURROGATE_START","features":[389]},{"name":"HIMC","features":[389]},{"name":"HIMCC","features":[389]},{"name":"HSAVEDUILANGUAGES","features":[389]},{"name":"HourUnit","features":[389]},{"name":"IComprehensiveSpellCheckProvider","features":[389]},{"name":"IDN_ALLOW_UNASSIGNED","features":[389]},{"name":"IDN_EMAIL_ADDRESS","features":[389]},{"name":"IDN_RAW_PUNYCODE","features":[389]},{"name":"IDN_USE_STD3_ASCII_RULES","features":[389]},{"name":"IEnumCodePage","features":[389]},{"name":"IEnumRfc1766","features":[389]},{"name":"IEnumScript","features":[389]},{"name":"IEnumSpellingError","features":[389]},{"name":"IMLangCodePages","features":[389]},{"name":"IMLangConvertCharset","features":[389]},{"name":"IMLangFontLink","features":[389]},{"name":"IMLangFontLink2","features":[389]},{"name":"IMLangLineBreakConsole","features":[389]},{"name":"IMLangString","features":[389]},{"name":"IMLangStringAStr","features":[389]},{"name":"IMLangStringBufA","features":[389]},{"name":"IMLangStringBufW","features":[389]},{"name":"IMLangStringWStr","features":[389]},{"name":"IMultiLanguage","features":[389]},{"name":"IMultiLanguage2","features":[389]},{"name":"IMultiLanguage3","features":[389]},{"name":"IOptionDescription","features":[389]},{"name":"IS_TEXT_UNICODE_ASCII16","features":[389]},{"name":"IS_TEXT_UNICODE_CONTROLS","features":[389]},{"name":"IS_TEXT_UNICODE_ILLEGAL_CHARS","features":[389]},{"name":"IS_TEXT_UNICODE_NOT_ASCII_MASK","features":[389]},{"name":"IS_TEXT_UNICODE_NOT_UNICODE_MASK","features":[389]},{"name":"IS_TEXT_UNICODE_NULL_BYTES","features":[389]},{"name":"IS_TEXT_UNICODE_ODD_LENGTH","features":[389]},{"name":"IS_TEXT_UNICODE_RESULT","features":[389]},{"name":"IS_TEXT_UNICODE_REVERSE_ASCII16","features":[389]},{"name":"IS_TEXT_UNICODE_REVERSE_CONTROLS","features":[389]},{"name":"IS_TEXT_UNICODE_REVERSE_MASK","features":[389]},{"name":"IS_TEXT_UNICODE_REVERSE_SIGNATURE","features":[389]},{"name":"IS_TEXT_UNICODE_REVERSE_STATISTICS","features":[389]},{"name":"IS_TEXT_UNICODE_SIGNATURE","features":[389]},{"name":"IS_TEXT_UNICODE_STATISTICS","features":[389]},{"name":"IS_TEXT_UNICODE_UNICODE_MASK","features":[389]},{"name":"IS_VALID_LOCALE_FLAGS","features":[389]},{"name":"ISpellCheckProvider","features":[389]},{"name":"ISpellCheckProviderFactory","features":[389]},{"name":"ISpellChecker","features":[389]},{"name":"ISpellChecker2","features":[389]},{"name":"ISpellCheckerChangedEventHandler","features":[389]},{"name":"ISpellCheckerFactory","features":[389]},{"name":"ISpellingError","features":[389]},{"name":"IUserDictionariesRegistrar","features":[389]},{"name":"IdnToAscii","features":[389]},{"name":"IdnToNameprepUnicode","features":[389]},{"name":"IdnToUnicode","features":[389]},{"name":"IsCalendarLeapYear","features":[303,389]},{"name":"IsDBCSLeadByte","features":[303,389]},{"name":"IsDBCSLeadByteEx","features":[303,389]},{"name":"IsNLSDefinedString","features":[303,389]},{"name":"IsNormalizedString","features":[303,389]},{"name":"IsTextUnicode","features":[303,389]},{"name":"IsValidCodePage","features":[303,389]},{"name":"IsValidLanguageGroup","features":[303,389]},{"name":"IsValidLocale","features":[303,389]},{"name":"IsValidLocaleName","features":[303,389]},{"name":"IsValidNLSVersion","features":[389]},{"name":"IsWellFormedTag","features":[389]},{"name":"LANGGROUPLOCALE_ENUMPROCA","features":[303,389]},{"name":"LANGGROUPLOCALE_ENUMPROCW","features":[303,389]},{"name":"LANGUAGEGROUP_ENUMPROCA","features":[303,389]},{"name":"LANGUAGEGROUP_ENUMPROCW","features":[303,389]},{"name":"LCIDToLocaleName","features":[389]},{"name":"LCID_ALTERNATE_SORTS","features":[389]},{"name":"LCID_INSTALLED","features":[389]},{"name":"LCID_SUPPORTED","features":[389]},{"name":"LCMAP_BYTEREV","features":[389]},{"name":"LCMAP_FULLWIDTH","features":[389]},{"name":"LCMAP_HALFWIDTH","features":[389]},{"name":"LCMAP_HASH","features":[389]},{"name":"LCMAP_HIRAGANA","features":[389]},{"name":"LCMAP_KATAKANA","features":[389]},{"name":"LCMAP_LINGUISTIC_CASING","features":[389]},{"name":"LCMAP_LOWERCASE","features":[389]},{"name":"LCMAP_SIMPLIFIED_CHINESE","features":[389]},{"name":"LCMAP_SORTHANDLE","features":[389]},{"name":"LCMAP_SORTKEY","features":[389]},{"name":"LCMAP_TITLECASE","features":[389]},{"name":"LCMAP_TRADITIONAL_CHINESE","features":[389]},{"name":"LCMAP_UPPERCASE","features":[389]},{"name":"LCMapStringA","features":[389]},{"name":"LCMapStringEx","features":[303,389]},{"name":"LCMapStringW","features":[389]},{"name":"LGRPID_ARABIC","features":[389]},{"name":"LGRPID_ARMENIAN","features":[389]},{"name":"LGRPID_BALTIC","features":[389]},{"name":"LGRPID_CENTRAL_EUROPE","features":[389]},{"name":"LGRPID_CYRILLIC","features":[389]},{"name":"LGRPID_GEORGIAN","features":[389]},{"name":"LGRPID_GREEK","features":[389]},{"name":"LGRPID_HEBREW","features":[389]},{"name":"LGRPID_INDIC","features":[389]},{"name":"LGRPID_INSTALLED","features":[389]},{"name":"LGRPID_JAPANESE","features":[389]},{"name":"LGRPID_KOREAN","features":[389]},{"name":"LGRPID_SIMPLIFIED_CHINESE","features":[389]},{"name":"LGRPID_SUPPORTED","features":[389]},{"name":"LGRPID_THAI","features":[389]},{"name":"LGRPID_TRADITIONAL_CHINESE","features":[389]},{"name":"LGRPID_TURKIC","features":[389]},{"name":"LGRPID_TURKISH","features":[389]},{"name":"LGRPID_VIETNAMESE","features":[389]},{"name":"LGRPID_WESTERN_EUROPE","features":[389]},{"name":"LINGUISTIC_IGNORECASE","features":[389]},{"name":"LINGUISTIC_IGNOREDIACRITIC","features":[389]},{"name":"LOCALESIGNATURE","features":[389]},{"name":"LOCALE_ALL","features":[389]},{"name":"LOCALE_ALLOW_NEUTRAL_NAMES","features":[389]},{"name":"LOCALE_ALTERNATE_SORTS","features":[389]},{"name":"LOCALE_ENUMPROCA","features":[303,389]},{"name":"LOCALE_ENUMPROCEX","features":[303,389]},{"name":"LOCALE_ENUMPROCW","features":[303,389]},{"name":"LOCALE_FONTSIGNATURE","features":[389]},{"name":"LOCALE_ICALENDARTYPE","features":[389]},{"name":"LOCALE_ICENTURY","features":[389]},{"name":"LOCALE_ICONSTRUCTEDLOCALE","features":[389]},{"name":"LOCALE_ICOUNTRY","features":[389]},{"name":"LOCALE_ICURRDIGITS","features":[389]},{"name":"LOCALE_ICURRENCY","features":[389]},{"name":"LOCALE_IDATE","features":[389]},{"name":"LOCALE_IDAYLZERO","features":[389]},{"name":"LOCALE_IDEFAULTANSICODEPAGE","features":[389]},{"name":"LOCALE_IDEFAULTCODEPAGE","features":[389]},{"name":"LOCALE_IDEFAULTCOUNTRY","features":[389]},{"name":"LOCALE_IDEFAULTEBCDICCODEPAGE","features":[389]},{"name":"LOCALE_IDEFAULTLANGUAGE","features":[389]},{"name":"LOCALE_IDEFAULTMACCODEPAGE","features":[389]},{"name":"LOCALE_IDIALINGCODE","features":[389]},{"name":"LOCALE_IDIGITS","features":[389]},{"name":"LOCALE_IDIGITSUBSTITUTION","features":[389]},{"name":"LOCALE_IFIRSTDAYOFWEEK","features":[389]},{"name":"LOCALE_IFIRSTWEEKOFYEAR","features":[389]},{"name":"LOCALE_IGEOID","features":[389]},{"name":"LOCALE_IINTLCURRDIGITS","features":[389]},{"name":"LOCALE_ILANGUAGE","features":[389]},{"name":"LOCALE_ILDATE","features":[389]},{"name":"LOCALE_ILZERO","features":[389]},{"name":"LOCALE_IMEASURE","features":[389]},{"name":"LOCALE_IMONLZERO","features":[389]},{"name":"LOCALE_INEGATIVEPERCENT","features":[389]},{"name":"LOCALE_INEGCURR","features":[389]},{"name":"LOCALE_INEGNUMBER","features":[389]},{"name":"LOCALE_INEGSEPBYSPACE","features":[389]},{"name":"LOCALE_INEGSIGNPOSN","features":[389]},{"name":"LOCALE_INEGSYMPRECEDES","features":[389]},{"name":"LOCALE_INEUTRAL","features":[389]},{"name":"LOCALE_IOPTIONALCALENDAR","features":[389]},{"name":"LOCALE_IPAPERSIZE","features":[389]},{"name":"LOCALE_IPOSITIVEPERCENT","features":[389]},{"name":"LOCALE_IPOSSEPBYSPACE","features":[389]},{"name":"LOCALE_IPOSSIGNPOSN","features":[389]},{"name":"LOCALE_IPOSSYMPRECEDES","features":[389]},{"name":"LOCALE_IREADINGLAYOUT","features":[389]},{"name":"LOCALE_ITIME","features":[389]},{"name":"LOCALE_ITIMEMARKPOSN","features":[389]},{"name":"LOCALE_ITLZERO","features":[389]},{"name":"LOCALE_IUSEUTF8LEGACYACP","features":[389]},{"name":"LOCALE_IUSEUTF8LEGACYOEMCP","features":[389]},{"name":"LOCALE_NAME_INVARIANT","features":[389]},{"name":"LOCALE_NAME_SYSTEM_DEFAULT","features":[389]},{"name":"LOCALE_NEUTRALDATA","features":[389]},{"name":"LOCALE_NOUSEROVERRIDE","features":[389]},{"name":"LOCALE_REPLACEMENT","features":[389]},{"name":"LOCALE_RETURN_GENITIVE_NAMES","features":[389]},{"name":"LOCALE_RETURN_NUMBER","features":[389]},{"name":"LOCALE_S1159","features":[389]},{"name":"LOCALE_S2359","features":[389]},{"name":"LOCALE_SABBREVCTRYNAME","features":[389]},{"name":"LOCALE_SABBREVDAYNAME1","features":[389]},{"name":"LOCALE_SABBREVDAYNAME2","features":[389]},{"name":"LOCALE_SABBREVDAYNAME3","features":[389]},{"name":"LOCALE_SABBREVDAYNAME4","features":[389]},{"name":"LOCALE_SABBREVDAYNAME5","features":[389]},{"name":"LOCALE_SABBREVDAYNAME6","features":[389]},{"name":"LOCALE_SABBREVDAYNAME7","features":[389]},{"name":"LOCALE_SABBREVLANGNAME","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME1","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME10","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME11","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME12","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME13","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME2","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME3","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME4","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME5","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME6","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME7","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME8","features":[389]},{"name":"LOCALE_SABBREVMONTHNAME9","features":[389]},{"name":"LOCALE_SAM","features":[389]},{"name":"LOCALE_SCONSOLEFALLBACKNAME","features":[389]},{"name":"LOCALE_SCOUNTRY","features":[389]},{"name":"LOCALE_SCURRENCY","features":[389]},{"name":"LOCALE_SDATE","features":[389]},{"name":"LOCALE_SDAYNAME1","features":[389]},{"name":"LOCALE_SDAYNAME2","features":[389]},{"name":"LOCALE_SDAYNAME3","features":[389]},{"name":"LOCALE_SDAYNAME4","features":[389]},{"name":"LOCALE_SDAYNAME5","features":[389]},{"name":"LOCALE_SDAYNAME6","features":[389]},{"name":"LOCALE_SDAYNAME7","features":[389]},{"name":"LOCALE_SDECIMAL","features":[389]},{"name":"LOCALE_SDURATION","features":[389]},{"name":"LOCALE_SENGCOUNTRY","features":[389]},{"name":"LOCALE_SENGCURRNAME","features":[389]},{"name":"LOCALE_SENGLANGUAGE","features":[389]},{"name":"LOCALE_SENGLISHCOUNTRYNAME","features":[389]},{"name":"LOCALE_SENGLISHDISPLAYNAME","features":[389]},{"name":"LOCALE_SENGLISHLANGUAGENAME","features":[389]},{"name":"LOCALE_SGROUPING","features":[389]},{"name":"LOCALE_SINTLSYMBOL","features":[389]},{"name":"LOCALE_SISO3166CTRYNAME","features":[389]},{"name":"LOCALE_SISO3166CTRYNAME2","features":[389]},{"name":"LOCALE_SISO639LANGNAME","features":[389]},{"name":"LOCALE_SISO639LANGNAME2","features":[389]},{"name":"LOCALE_SKEYBOARDSTOINSTALL","features":[389]},{"name":"LOCALE_SLANGDISPLAYNAME","features":[389]},{"name":"LOCALE_SLANGUAGE","features":[389]},{"name":"LOCALE_SLIST","features":[389]},{"name":"LOCALE_SLOCALIZEDCOUNTRYNAME","features":[389]},{"name":"LOCALE_SLOCALIZEDDISPLAYNAME","features":[389]},{"name":"LOCALE_SLOCALIZEDLANGUAGENAME","features":[389]},{"name":"LOCALE_SLONGDATE","features":[389]},{"name":"LOCALE_SMONDECIMALSEP","features":[389]},{"name":"LOCALE_SMONGROUPING","features":[389]},{"name":"LOCALE_SMONTHDAY","features":[389]},{"name":"LOCALE_SMONTHNAME1","features":[389]},{"name":"LOCALE_SMONTHNAME10","features":[389]},{"name":"LOCALE_SMONTHNAME11","features":[389]},{"name":"LOCALE_SMONTHNAME12","features":[389]},{"name":"LOCALE_SMONTHNAME13","features":[389]},{"name":"LOCALE_SMONTHNAME2","features":[389]},{"name":"LOCALE_SMONTHNAME3","features":[389]},{"name":"LOCALE_SMONTHNAME4","features":[389]},{"name":"LOCALE_SMONTHNAME5","features":[389]},{"name":"LOCALE_SMONTHNAME6","features":[389]},{"name":"LOCALE_SMONTHNAME7","features":[389]},{"name":"LOCALE_SMONTHNAME8","features":[389]},{"name":"LOCALE_SMONTHNAME9","features":[389]},{"name":"LOCALE_SMONTHOUSANDSEP","features":[389]},{"name":"LOCALE_SNAME","features":[389]},{"name":"LOCALE_SNAN","features":[389]},{"name":"LOCALE_SNATIVECOUNTRYNAME","features":[389]},{"name":"LOCALE_SNATIVECTRYNAME","features":[389]},{"name":"LOCALE_SNATIVECURRNAME","features":[389]},{"name":"LOCALE_SNATIVEDIGITS","features":[389]},{"name":"LOCALE_SNATIVEDISPLAYNAME","features":[389]},{"name":"LOCALE_SNATIVELANGNAME","features":[389]},{"name":"LOCALE_SNATIVELANGUAGENAME","features":[389]},{"name":"LOCALE_SNEGATIVESIGN","features":[389]},{"name":"LOCALE_SNEGINFINITY","features":[389]},{"name":"LOCALE_SOPENTYPELANGUAGETAG","features":[389]},{"name":"LOCALE_SPARENT","features":[389]},{"name":"LOCALE_SPECIFICDATA","features":[389]},{"name":"LOCALE_SPERCENT","features":[389]},{"name":"LOCALE_SPERMILLE","features":[389]},{"name":"LOCALE_SPM","features":[389]},{"name":"LOCALE_SPOSINFINITY","features":[389]},{"name":"LOCALE_SPOSITIVESIGN","features":[389]},{"name":"LOCALE_SRELATIVELONGDATE","features":[389]},{"name":"LOCALE_SSCRIPTS","features":[389]},{"name":"LOCALE_SSHORTDATE","features":[389]},{"name":"LOCALE_SSHORTESTAM","features":[389]},{"name":"LOCALE_SSHORTESTDAYNAME1","features":[389]},{"name":"LOCALE_SSHORTESTDAYNAME2","features":[389]},{"name":"LOCALE_SSHORTESTDAYNAME3","features":[389]},{"name":"LOCALE_SSHORTESTDAYNAME4","features":[389]},{"name":"LOCALE_SSHORTESTDAYNAME5","features":[389]},{"name":"LOCALE_SSHORTESTDAYNAME6","features":[389]},{"name":"LOCALE_SSHORTESTDAYNAME7","features":[389]},{"name":"LOCALE_SSHORTESTPM","features":[389]},{"name":"LOCALE_SSHORTTIME","features":[389]},{"name":"LOCALE_SSORTLOCALE","features":[389]},{"name":"LOCALE_SSORTNAME","features":[389]},{"name":"LOCALE_STHOUSAND","features":[389]},{"name":"LOCALE_STIME","features":[389]},{"name":"LOCALE_STIMEFORMAT","features":[389]},{"name":"LOCALE_SUPPLEMENTAL","features":[389]},{"name":"LOCALE_SYEARMONTH","features":[389]},{"name":"LOCALE_USE_CP_ACP","features":[389]},{"name":"LOCALE_WINDOWS","features":[389]},{"name":"LOWLEVEL_SERVICE_TYPES","features":[389]},{"name":"LOW_SURROGATE_END","features":[389]},{"name":"LOW_SURROGATE_START","features":[389]},{"name":"LocaleNameToLCID","features":[389]},{"name":"MAPPING_DATA_RANGE","features":[389]},{"name":"MAPPING_ENUM_OPTIONS","features":[389]},{"name":"MAPPING_OPTIONS","features":[389]},{"name":"MAPPING_PROPERTY_BAG","features":[389]},{"name":"MAPPING_SERVICE_INFO","features":[389]},{"name":"MAP_COMPOSITE","features":[389]},{"name":"MAP_EXPAND_LIGATURES","features":[389]},{"name":"MAP_FOLDCZONE","features":[389]},{"name":"MAP_FOLDDIGITS","features":[389]},{"name":"MAP_PRECOMPOSED","features":[389]},{"name":"MAX_DEFAULTCHAR","features":[389]},{"name":"MAX_LEADBYTES","features":[389]},{"name":"MAX_LOCALE_NAME","features":[389]},{"name":"MAX_MIMECP_NAME","features":[389]},{"name":"MAX_MIMECSET_NAME","features":[389]},{"name":"MAX_MIMEFACE_NAME","features":[389]},{"name":"MAX_RFC1766_NAME","features":[389]},{"name":"MAX_SCRIPT_NAME","features":[389]},{"name":"MB_COMPOSITE","features":[389]},{"name":"MB_ERR_INVALID_CHARS","features":[389]},{"name":"MB_PRECOMPOSED","features":[389]},{"name":"MB_USEGLYPHCHARS","features":[389]},{"name":"MIMECONTF","features":[389]},{"name":"MIMECONTF_BROWSER","features":[389]},{"name":"MIMECONTF_EXPORT","features":[389]},{"name":"MIMECONTF_IMPORT","features":[389]},{"name":"MIMECONTF_MAILNEWS","features":[389]},{"name":"MIMECONTF_MIME_IE4","features":[389]},{"name":"MIMECONTF_MIME_LATEST","features":[389]},{"name":"MIMECONTF_MIME_REGISTRY","features":[389]},{"name":"MIMECONTF_MINIMAL","features":[389]},{"name":"MIMECONTF_PRIVCONVERTER","features":[389]},{"name":"MIMECONTF_SAVABLE_BROWSER","features":[389]},{"name":"MIMECONTF_SAVABLE_MAILNEWS","features":[389]},{"name":"MIMECONTF_VALID","features":[389]},{"name":"MIMECONTF_VALID_NLS","features":[389]},{"name":"MIMECPINFO","features":[389]},{"name":"MIMECSETINFO","features":[389]},{"name":"MIN_SPELLING_NTDDI","features":[389]},{"name":"MLCONVCHAR","features":[389]},{"name":"MLCONVCHARF_AUTODETECT","features":[389]},{"name":"MLCONVCHARF_DETECTJPN","features":[389]},{"name":"MLCONVCHARF_ENTITIZE","features":[389]},{"name":"MLCONVCHARF_NAME_ENTITIZE","features":[389]},{"name":"MLCONVCHARF_NCR_ENTITIZE","features":[389]},{"name":"MLCONVCHARF_NOBESTFITCHARS","features":[389]},{"name":"MLCONVCHARF_USEDEFCHAR","features":[389]},{"name":"MLCP","features":[389]},{"name":"MLDETECTCP","features":[389]},{"name":"MLDETECTCP_7BIT","features":[389]},{"name":"MLDETECTCP_8BIT","features":[389]},{"name":"MLDETECTCP_DBCS","features":[389]},{"name":"MLDETECTCP_HTML","features":[389]},{"name":"MLDETECTCP_NONE","features":[389]},{"name":"MLDETECTCP_NUMBER","features":[389]},{"name":"MLDETECTF_BROWSER","features":[389]},{"name":"MLDETECTF_EURO_UTF8","features":[389]},{"name":"MLDETECTF_FILTER_SPECIALCHAR","features":[389]},{"name":"MLDETECTF_MAILNEWS","features":[389]},{"name":"MLDETECTF_PREFERRED_ONLY","features":[389]},{"name":"MLDETECTF_PRESERVE_ORDER","features":[389]},{"name":"MLDETECTF_VALID","features":[389]},{"name":"MLDETECTF_VALID_NLS","features":[389]},{"name":"MLSTR_FLAGS","features":[389]},{"name":"MLSTR_READ","features":[389]},{"name":"MLSTR_WRITE","features":[389]},{"name":"MUI_COMPLEX_SCRIPT_FILTER","features":[389]},{"name":"MUI_CONSOLE_FILTER","features":[389]},{"name":"MUI_FILEINFO_VERSION","features":[389]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MAIN","features":[389]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MUI","features":[389]},{"name":"MUI_FILETYPE_NOT_LANGUAGE_NEUTRAL","features":[389]},{"name":"MUI_FORMAT_INF_COMPAT","features":[389]},{"name":"MUI_FORMAT_REG_COMPAT","features":[389]},{"name":"MUI_FULL_LANGUAGE","features":[389]},{"name":"MUI_IMMUTABLE_LOOKUP","features":[389]},{"name":"MUI_LANGUAGE_EXACT","features":[389]},{"name":"MUI_LANGUAGE_ID","features":[389]},{"name":"MUI_LANGUAGE_INSTALLED","features":[389]},{"name":"MUI_LANGUAGE_LICENSED","features":[389]},{"name":"MUI_LANGUAGE_NAME","features":[389]},{"name":"MUI_LANG_NEUTRAL_PE_FILE","features":[389]},{"name":"MUI_LIP_LANGUAGE","features":[389]},{"name":"MUI_MACHINE_LANGUAGE_SETTINGS","features":[389]},{"name":"MUI_MERGE_SYSTEM_FALLBACK","features":[389]},{"name":"MUI_MERGE_USER_FALLBACK","features":[389]},{"name":"MUI_NON_LANG_NEUTRAL_FILE","features":[389]},{"name":"MUI_PARTIAL_LANGUAGE","features":[389]},{"name":"MUI_QUERY_CHECKSUM","features":[389]},{"name":"MUI_QUERY_LANGUAGE_NAME","features":[389]},{"name":"MUI_QUERY_RESOURCE_TYPES","features":[389]},{"name":"MUI_QUERY_TYPE","features":[389]},{"name":"MUI_RESET_FILTERS","features":[389]},{"name":"MUI_SKIP_STRING_CACHE","features":[389]},{"name":"MUI_THREAD_LANGUAGES","features":[389]},{"name":"MUI_USER_PREFERRED_UI_LANGUAGES","features":[389]},{"name":"MUI_USE_INSTALLED_LANGUAGES","features":[389]},{"name":"MUI_USE_SEARCH_ALL_LANGUAGES","features":[389]},{"name":"MUI_VERIFY_FILE_EXISTS","features":[389]},{"name":"MULTI_BYTE_TO_WIDE_CHAR_FLAGS","features":[389]},{"name":"MappingDoAction","features":[389]},{"name":"MappingFreePropertyBag","features":[389]},{"name":"MappingFreeServices","features":[389]},{"name":"MappingGetServices","features":[389]},{"name":"MappingRecognizeText","features":[389]},{"name":"MinuteUnit","features":[389]},{"name":"MonthUnit","features":[389]},{"name":"MultiByteToWideChar","features":[389]},{"name":"NEWTEXTMETRICEXA","features":[389,314]},{"name":"NEWTEXTMETRICEXW","features":[389,314]},{"name":"NLSVERSIONINFO","features":[389]},{"name":"NLSVERSIONINFOEX","features":[389]},{"name":"NLS_CP_CPINFO","features":[389]},{"name":"NLS_CP_MBTOWC","features":[389]},{"name":"NLS_CP_WCTOMB","features":[389]},{"name":"NORM_FORM","features":[389]},{"name":"NORM_IGNORECASE","features":[389]},{"name":"NORM_IGNOREKANATYPE","features":[389]},{"name":"NORM_IGNORENONSPACE","features":[389]},{"name":"NORM_IGNORESYMBOLS","features":[389]},{"name":"NORM_IGNOREWIDTH","features":[389]},{"name":"NORM_LINGUISTIC_CASING","features":[389]},{"name":"NUMBERFMTA","features":[389]},{"name":"NUMBERFMTW","features":[389]},{"name":"NUMSYS_NAME_CAPACITY","features":[389]},{"name":"NormalizationC","features":[389]},{"name":"NormalizationD","features":[389]},{"name":"NormalizationKC","features":[389]},{"name":"NormalizationKD","features":[389]},{"name":"NormalizationOther","features":[389]},{"name":"NormalizeString","features":[389]},{"name":"NotifyUILanguageChange","features":[303,389]},{"name":"OFFLINE_SERVICES","features":[389]},{"name":"ONLINE_SERVICES","features":[389]},{"name":"OPENTYPE_FEATURE_RECORD","features":[389]},{"name":"PFN_MAPPINGCALLBACKPROC","features":[389]},{"name":"RFC1766INFO","features":[389]},{"name":"ResolveLocaleName","features":[389]},{"name":"RestoreThreadPreferredUILanguages","features":[389]},{"name":"SCRIPTCONTF","features":[389]},{"name":"SCRIPTCONTF_FIXED_FONT","features":[389]},{"name":"SCRIPTCONTF_PROPORTIONAL_FONT","features":[389]},{"name":"SCRIPTCONTF_SCRIPT_HIDE","features":[389]},{"name":"SCRIPTCONTF_SCRIPT_SYSTEM","features":[389]},{"name":"SCRIPTCONTF_SCRIPT_USER","features":[389]},{"name":"SCRIPTFONTCONTF","features":[389]},{"name":"SCRIPTFONTINFO","features":[389]},{"name":"SCRIPTINFO","features":[389]},{"name":"SCRIPT_ANALYSIS","features":[389]},{"name":"SCRIPT_CHARPROP","features":[389]},{"name":"SCRIPT_CONTROL","features":[389]},{"name":"SCRIPT_DIGITSUBSTITUTE","features":[389]},{"name":"SCRIPT_DIGITSUBSTITUTE_CONTEXT","features":[389]},{"name":"SCRIPT_DIGITSUBSTITUTE_NATIONAL","features":[389]},{"name":"SCRIPT_DIGITSUBSTITUTE_NONE","features":[389]},{"name":"SCRIPT_DIGITSUBSTITUTE_TRADITIONAL","features":[389]},{"name":"SCRIPT_FONTPROPERTIES","features":[389]},{"name":"SCRIPT_GLYPHPROP","features":[389]},{"name":"SCRIPT_IS_COMPLEX_FLAGS","features":[389]},{"name":"SCRIPT_ITEM","features":[389]},{"name":"SCRIPT_JUSTIFY","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_ALEF","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_BA","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_BARA","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_BLANK","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_HA","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_KASHIDA","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_NORMAL","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_RA","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN","features":[389]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN_M","features":[389]},{"name":"SCRIPT_JUSTIFY_BLANK","features":[389]},{"name":"SCRIPT_JUSTIFY_CHARACTER","features":[389]},{"name":"SCRIPT_JUSTIFY_NONE","features":[389]},{"name":"SCRIPT_JUSTIFY_RESERVED1","features":[389]},{"name":"SCRIPT_JUSTIFY_RESERVED2","features":[389]},{"name":"SCRIPT_JUSTIFY_RESERVED3","features":[389]},{"name":"SCRIPT_LOGATTR","features":[389]},{"name":"SCRIPT_PROPERTIES","features":[389]},{"name":"SCRIPT_STATE","features":[389]},{"name":"SCRIPT_TABDEF","features":[389]},{"name":"SCRIPT_TAG_UNKNOWN","features":[389]},{"name":"SCRIPT_UNDEFINED","features":[389]},{"name":"SCRIPT_VISATTR","features":[389]},{"name":"SGCM_RTL","features":[389]},{"name":"SIC_ASCIIDIGIT","features":[389]},{"name":"SIC_COMPLEX","features":[389]},{"name":"SIC_NEUTRAL","features":[389]},{"name":"SORTING_PARADIGM_ICU","features":[389]},{"name":"SORTING_PARADIGM_NLS","features":[389]},{"name":"SORT_DIGITSASNUMBERS","features":[389]},{"name":"SORT_STRINGSORT","features":[389]},{"name":"SSA_BREAK","features":[389]},{"name":"SSA_CLIP","features":[389]},{"name":"SSA_DONTGLYPH","features":[389]},{"name":"SSA_DZWG","features":[389]},{"name":"SSA_FALLBACK","features":[389]},{"name":"SSA_FIT","features":[389]},{"name":"SSA_FULLMEASURE","features":[389]},{"name":"SSA_GCP","features":[389]},{"name":"SSA_GLYPHS","features":[389]},{"name":"SSA_HIDEHOTKEY","features":[389]},{"name":"SSA_HOTKEY","features":[389]},{"name":"SSA_HOTKEYONLY","features":[389]},{"name":"SSA_LAYOUTRTL","features":[389]},{"name":"SSA_LINK","features":[389]},{"name":"SSA_LPKANSIFALLBACK","features":[389]},{"name":"SSA_METAFILE","features":[389]},{"name":"SSA_NOKASHIDA","features":[389]},{"name":"SSA_PASSWORD","features":[389]},{"name":"SSA_PIDX","features":[389]},{"name":"SSA_RTL","features":[389]},{"name":"SSA_TAB","features":[389]},{"name":"SYSGEOCLASS","features":[389]},{"name":"SYSGEOTYPE","features":[389]},{"name":"SYSNLS_FUNCTION","features":[389]},{"name":"ScriptApplyDigitSubstitution","features":[389]},{"name":"ScriptApplyLogicalWidth","features":[389,314]},{"name":"ScriptBreak","features":[389]},{"name":"ScriptCPtoX","features":[303,389]},{"name":"ScriptCacheGetHeight","features":[389,314]},{"name":"ScriptFreeCache","features":[389]},{"name":"ScriptGetCMap","features":[389,314]},{"name":"ScriptGetFontAlternateGlyphs","features":[389,314]},{"name":"ScriptGetFontFeatureTags","features":[389,314]},{"name":"ScriptGetFontLanguageTags","features":[389,314]},{"name":"ScriptGetFontProperties","features":[389,314]},{"name":"ScriptGetFontScriptTags","features":[389,314]},{"name":"ScriptGetGlyphABCWidth","features":[389,314]},{"name":"ScriptGetLogicalWidths","features":[389]},{"name":"ScriptGetProperties","features":[389]},{"name":"ScriptIsComplex","features":[389]},{"name":"ScriptItemize","features":[389]},{"name":"ScriptItemizeOpenType","features":[389]},{"name":"ScriptJustify","features":[389]},{"name":"ScriptLayout","features":[389]},{"name":"ScriptPlace","features":[389,314]},{"name":"ScriptPlaceOpenType","features":[389,314]},{"name":"ScriptPositionSingleGlyph","features":[389,314]},{"name":"ScriptRecordDigitSubstitution","features":[389]},{"name":"ScriptShape","features":[389,314]},{"name":"ScriptShapeOpenType","features":[389,314]},{"name":"ScriptStringAnalyse","features":[389,314]},{"name":"ScriptStringCPtoX","features":[303,389]},{"name":"ScriptStringFree","features":[389]},{"name":"ScriptStringGetLogicalWidths","features":[389]},{"name":"ScriptStringGetOrder","features":[389]},{"name":"ScriptStringOut","features":[303,389,314]},{"name":"ScriptStringValidate","features":[389]},{"name":"ScriptStringXtoCP","features":[389]},{"name":"ScriptString_pLogAttr","features":[389]},{"name":"ScriptString_pSize","features":[303,389]},{"name":"ScriptString_pcOutChars","features":[389]},{"name":"ScriptSubstituteSingleGlyph","features":[389,314]},{"name":"ScriptTextOut","features":[303,389,314]},{"name":"ScriptXtoCP","features":[389]},{"name":"SecondUnit","features":[389]},{"name":"SetCalendarInfoA","features":[303,389]},{"name":"SetCalendarInfoW","features":[303,389]},{"name":"SetLocaleInfoA","features":[303,389]},{"name":"SetLocaleInfoW","features":[303,389]},{"name":"SetProcessPreferredUILanguages","features":[303,389]},{"name":"SetThreadLocale","features":[303,389]},{"name":"SetThreadPreferredUILanguages","features":[303,389]},{"name":"SetThreadPreferredUILanguages2","features":[303,389]},{"name":"SetThreadUILanguage","features":[389]},{"name":"SetUserGeoID","features":[303,389]},{"name":"SetUserGeoName","features":[303,389]},{"name":"SpellCheckerFactory","features":[389]},{"name":"TCI_SRCCHARSET","features":[389]},{"name":"TCI_SRCCODEPAGE","features":[389]},{"name":"TCI_SRCFONTSIG","features":[389]},{"name":"TCI_SRCLOCALE","features":[389]},{"name":"TEXTRANGE_PROPERTIES","features":[389]},{"name":"TIMEFMT_ENUMPROCA","features":[303,389]},{"name":"TIMEFMT_ENUMPROCEX","features":[303,389]},{"name":"TIMEFMT_ENUMPROCW","features":[303,389]},{"name":"TIME_FORCE24HOURFORMAT","features":[389]},{"name":"TIME_FORMAT_FLAGS","features":[389]},{"name":"TIME_NOMINUTESORSECONDS","features":[389]},{"name":"TIME_NOSECONDS","features":[389]},{"name":"TIME_NOTIMEMARKER","features":[389]},{"name":"TRANSLATE_CHARSET_INFO_FLAGS","features":[389]},{"name":"TickUnit","features":[389]},{"name":"TranslateCharsetInfo","features":[303,389]},{"name":"U16_MAX_LENGTH","features":[389]},{"name":"U8_LEAD3_T1_BITS","features":[389]},{"name":"U8_LEAD4_T1_BITS","features":[389]},{"name":"U8_MAX_LENGTH","features":[389]},{"name":"UAcceptResult","features":[389]},{"name":"UAlphabeticIndexLabelType","features":[389]},{"name":"UBIDI_DEFAULT_LTR","features":[389]},{"name":"UBIDI_DEFAULT_RTL","features":[389]},{"name":"UBIDI_DO_MIRRORING","features":[389]},{"name":"UBIDI_INSERT_LRM_FOR_NUMERIC","features":[389]},{"name":"UBIDI_KEEP_BASE_COMBINING","features":[389]},{"name":"UBIDI_LEVEL_OVERRIDE","features":[389]},{"name":"UBIDI_LOGICAL","features":[389]},{"name":"UBIDI_LTR","features":[389]},{"name":"UBIDI_MAP_NOWHERE","features":[389]},{"name":"UBIDI_MAX_EXPLICIT_LEVEL","features":[389]},{"name":"UBIDI_MIRRORING_OFF","features":[389]},{"name":"UBIDI_MIRRORING_ON","features":[389]},{"name":"UBIDI_MIXED","features":[389]},{"name":"UBIDI_NEUTRAL","features":[389]},{"name":"UBIDI_OPTION_DEFAULT","features":[389]},{"name":"UBIDI_OPTION_INSERT_MARKS","features":[389]},{"name":"UBIDI_OPTION_REMOVE_CONTROLS","features":[389]},{"name":"UBIDI_OPTION_STREAMING","features":[389]},{"name":"UBIDI_OUTPUT_REVERSE","features":[389]},{"name":"UBIDI_REMOVE_BIDI_CONTROLS","features":[389]},{"name":"UBIDI_REORDER_DEFAULT","features":[389]},{"name":"UBIDI_REORDER_GROUP_NUMBERS_WITH_R","features":[389]},{"name":"UBIDI_REORDER_INVERSE_FOR_NUMBERS_SPECIAL","features":[389]},{"name":"UBIDI_REORDER_INVERSE_LIKE_DIRECT","features":[389]},{"name":"UBIDI_REORDER_INVERSE_NUMBERS_AS_L","features":[389]},{"name":"UBIDI_REORDER_NUMBERS_SPECIAL","features":[389]},{"name":"UBIDI_REORDER_RUNS_ONLY","features":[389]},{"name":"UBIDI_RTL","features":[389]},{"name":"UBIDI_VISUAL","features":[389]},{"name":"UBLOCK_ADLAM","features":[389]},{"name":"UBLOCK_AEGEAN_NUMBERS","features":[389]},{"name":"UBLOCK_AHOM","features":[389]},{"name":"UBLOCK_ALCHEMICAL_SYMBOLS","features":[389]},{"name":"UBLOCK_ALPHABETIC_PRESENTATION_FORMS","features":[389]},{"name":"UBLOCK_ANATOLIAN_HIEROGLYPHS","features":[389]},{"name":"UBLOCK_ANCIENT_GREEK_MUSICAL_NOTATION","features":[389]},{"name":"UBLOCK_ANCIENT_GREEK_NUMBERS","features":[389]},{"name":"UBLOCK_ANCIENT_SYMBOLS","features":[389]},{"name":"UBLOCK_ARABIC","features":[389]},{"name":"UBLOCK_ARABIC_EXTENDED_A","features":[389]},{"name":"UBLOCK_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS","features":[389]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_A","features":[389]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_B","features":[389]},{"name":"UBLOCK_ARABIC_SUPPLEMENT","features":[389]},{"name":"UBLOCK_ARMENIAN","features":[389]},{"name":"UBLOCK_ARROWS","features":[389]},{"name":"UBLOCK_AVESTAN","features":[389]},{"name":"UBLOCK_BALINESE","features":[389]},{"name":"UBLOCK_BAMUM","features":[389]},{"name":"UBLOCK_BAMUM_SUPPLEMENT","features":[389]},{"name":"UBLOCK_BASIC_LATIN","features":[389]},{"name":"UBLOCK_BASSA_VAH","features":[389]},{"name":"UBLOCK_BATAK","features":[389]},{"name":"UBLOCK_BENGALI","features":[389]},{"name":"UBLOCK_BHAIKSUKI","features":[389]},{"name":"UBLOCK_BLOCK_ELEMENTS","features":[389]},{"name":"UBLOCK_BOPOMOFO","features":[389]},{"name":"UBLOCK_BOPOMOFO_EXTENDED","features":[389]},{"name":"UBLOCK_BOX_DRAWING","features":[389]},{"name":"UBLOCK_BRAHMI","features":[389]},{"name":"UBLOCK_BRAILLE_PATTERNS","features":[389]},{"name":"UBLOCK_BUGINESE","features":[389]},{"name":"UBLOCK_BUHID","features":[389]},{"name":"UBLOCK_BYZANTINE_MUSICAL_SYMBOLS","features":[389]},{"name":"UBLOCK_CARIAN","features":[389]},{"name":"UBLOCK_CAUCASIAN_ALBANIAN","features":[389]},{"name":"UBLOCK_CHAKMA","features":[389]},{"name":"UBLOCK_CHAM","features":[389]},{"name":"UBLOCK_CHEROKEE","features":[389]},{"name":"UBLOCK_CHEROKEE_SUPPLEMENT","features":[389]},{"name":"UBLOCK_CHESS_SYMBOLS","features":[389]},{"name":"UBLOCK_CHORASMIAN","features":[389]},{"name":"UBLOCK_CJK_COMPATIBILITY","features":[389]},{"name":"UBLOCK_CJK_COMPATIBILITY_FORMS","features":[389]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS","features":[389]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT","features":[389]},{"name":"UBLOCK_CJK_RADICALS_SUPPLEMENT","features":[389]},{"name":"UBLOCK_CJK_STROKES","features":[389]},{"name":"UBLOCK_CJK_SYMBOLS_AND_PUNCTUATION","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F","features":[389]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_G","features":[389]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS","features":[389]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_EXTENDED","features":[389]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_SUPPLEMENT","features":[389]},{"name":"UBLOCK_COMBINING_HALF_MARKS","features":[389]},{"name":"UBLOCK_COMBINING_MARKS_FOR_SYMBOLS","features":[389]},{"name":"UBLOCK_COMMON_INDIC_NUMBER_FORMS","features":[389]},{"name":"UBLOCK_CONTROL_PICTURES","features":[389]},{"name":"UBLOCK_COPTIC","features":[389]},{"name":"UBLOCK_COPTIC_EPACT_NUMBERS","features":[389]},{"name":"UBLOCK_COUNTING_ROD_NUMERALS","features":[389]},{"name":"UBLOCK_CUNEIFORM","features":[389]},{"name":"UBLOCK_CUNEIFORM_NUMBERS_AND_PUNCTUATION","features":[389]},{"name":"UBLOCK_CURRENCY_SYMBOLS","features":[389]},{"name":"UBLOCK_CYPRIOT_SYLLABARY","features":[389]},{"name":"UBLOCK_CYRILLIC","features":[389]},{"name":"UBLOCK_CYRILLIC_EXTENDED_A","features":[389]},{"name":"UBLOCK_CYRILLIC_EXTENDED_B","features":[389]},{"name":"UBLOCK_CYRILLIC_EXTENDED_C","features":[389]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENT","features":[389]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENTARY","features":[389]},{"name":"UBLOCK_DESERET","features":[389]},{"name":"UBLOCK_DEVANAGARI","features":[389]},{"name":"UBLOCK_DEVANAGARI_EXTENDED","features":[389]},{"name":"UBLOCK_DINGBATS","features":[389]},{"name":"UBLOCK_DIVES_AKURU","features":[389]},{"name":"UBLOCK_DOGRA","features":[389]},{"name":"UBLOCK_DOMINO_TILES","features":[389]},{"name":"UBLOCK_DUPLOYAN","features":[389]},{"name":"UBLOCK_EARLY_DYNASTIC_CUNEIFORM","features":[389]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPHS","features":[389]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPH_FORMAT_CONTROLS","features":[389]},{"name":"UBLOCK_ELBASAN","features":[389]},{"name":"UBLOCK_ELYMAIC","features":[389]},{"name":"UBLOCK_EMOTICONS","features":[389]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERICS","features":[389]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERIC_SUPPLEMENT","features":[389]},{"name":"UBLOCK_ENCLOSED_CJK_LETTERS_AND_MONTHS","features":[389]},{"name":"UBLOCK_ENCLOSED_IDEOGRAPHIC_SUPPLEMENT","features":[389]},{"name":"UBLOCK_ETHIOPIC","features":[389]},{"name":"UBLOCK_ETHIOPIC_EXTENDED","features":[389]},{"name":"UBLOCK_ETHIOPIC_EXTENDED_A","features":[389]},{"name":"UBLOCK_ETHIOPIC_SUPPLEMENT","features":[389]},{"name":"UBLOCK_GENERAL_PUNCTUATION","features":[389]},{"name":"UBLOCK_GEOMETRIC_SHAPES","features":[389]},{"name":"UBLOCK_GEOMETRIC_SHAPES_EXTENDED","features":[389]},{"name":"UBLOCK_GEORGIAN","features":[389]},{"name":"UBLOCK_GEORGIAN_EXTENDED","features":[389]},{"name":"UBLOCK_GEORGIAN_SUPPLEMENT","features":[389]},{"name":"UBLOCK_GLAGOLITIC","features":[389]},{"name":"UBLOCK_GLAGOLITIC_SUPPLEMENT","features":[389]},{"name":"UBLOCK_GOTHIC","features":[389]},{"name":"UBLOCK_GRANTHA","features":[389]},{"name":"UBLOCK_GREEK","features":[389]},{"name":"UBLOCK_GREEK_EXTENDED","features":[389]},{"name":"UBLOCK_GUJARATI","features":[389]},{"name":"UBLOCK_GUNJALA_GONDI","features":[389]},{"name":"UBLOCK_GURMUKHI","features":[389]},{"name":"UBLOCK_HALFWIDTH_AND_FULLWIDTH_FORMS","features":[389]},{"name":"UBLOCK_HANGUL_COMPATIBILITY_JAMO","features":[389]},{"name":"UBLOCK_HANGUL_JAMO","features":[389]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_A","features":[389]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_B","features":[389]},{"name":"UBLOCK_HANGUL_SYLLABLES","features":[389]},{"name":"UBLOCK_HANIFI_ROHINGYA","features":[389]},{"name":"UBLOCK_HANUNOO","features":[389]},{"name":"UBLOCK_HATRAN","features":[389]},{"name":"UBLOCK_HEBREW","features":[389]},{"name":"UBLOCK_HIGH_PRIVATE_USE_SURROGATES","features":[389]},{"name":"UBLOCK_HIGH_SURROGATES","features":[389]},{"name":"UBLOCK_HIRAGANA","features":[389]},{"name":"UBLOCK_IDEOGRAPHIC_DESCRIPTION_CHARACTERS","features":[389]},{"name":"UBLOCK_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION","features":[389]},{"name":"UBLOCK_IMPERIAL_ARAMAIC","features":[389]},{"name":"UBLOCK_INDIC_SIYAQ_NUMBERS","features":[389]},{"name":"UBLOCK_INSCRIPTIONAL_PAHLAVI","features":[389]},{"name":"UBLOCK_INSCRIPTIONAL_PARTHIAN","features":[389]},{"name":"UBLOCK_INVALID_CODE","features":[389]},{"name":"UBLOCK_IPA_EXTENSIONS","features":[389]},{"name":"UBLOCK_JAVANESE","features":[389]},{"name":"UBLOCK_KAITHI","features":[389]},{"name":"UBLOCK_KANA_EXTENDED_A","features":[389]},{"name":"UBLOCK_KANA_SUPPLEMENT","features":[389]},{"name":"UBLOCK_KANBUN","features":[389]},{"name":"UBLOCK_KANGXI_RADICALS","features":[389]},{"name":"UBLOCK_KANNADA","features":[389]},{"name":"UBLOCK_KATAKANA","features":[389]},{"name":"UBLOCK_KATAKANA_PHONETIC_EXTENSIONS","features":[389]},{"name":"UBLOCK_KAYAH_LI","features":[389]},{"name":"UBLOCK_KHAROSHTHI","features":[389]},{"name":"UBLOCK_KHITAN_SMALL_SCRIPT","features":[389]},{"name":"UBLOCK_KHMER","features":[389]},{"name":"UBLOCK_KHMER_SYMBOLS","features":[389]},{"name":"UBLOCK_KHOJKI","features":[389]},{"name":"UBLOCK_KHUDAWADI","features":[389]},{"name":"UBLOCK_LAO","features":[389]},{"name":"UBLOCK_LATIN_1_SUPPLEMENT","features":[389]},{"name":"UBLOCK_LATIN_EXTENDED_A","features":[389]},{"name":"UBLOCK_LATIN_EXTENDED_ADDITIONAL","features":[389]},{"name":"UBLOCK_LATIN_EXTENDED_B","features":[389]},{"name":"UBLOCK_LATIN_EXTENDED_C","features":[389]},{"name":"UBLOCK_LATIN_EXTENDED_D","features":[389]},{"name":"UBLOCK_LATIN_EXTENDED_E","features":[389]},{"name":"UBLOCK_LEPCHA","features":[389]},{"name":"UBLOCK_LETTERLIKE_SYMBOLS","features":[389]},{"name":"UBLOCK_LIMBU","features":[389]},{"name":"UBLOCK_LINEAR_A","features":[389]},{"name":"UBLOCK_LINEAR_B_IDEOGRAMS","features":[389]},{"name":"UBLOCK_LINEAR_B_SYLLABARY","features":[389]},{"name":"UBLOCK_LISU","features":[389]},{"name":"UBLOCK_LISU_SUPPLEMENT","features":[389]},{"name":"UBLOCK_LOW_SURROGATES","features":[389]},{"name":"UBLOCK_LYCIAN","features":[389]},{"name":"UBLOCK_LYDIAN","features":[389]},{"name":"UBLOCK_MAHAJANI","features":[389]},{"name":"UBLOCK_MAHJONG_TILES","features":[389]},{"name":"UBLOCK_MAKASAR","features":[389]},{"name":"UBLOCK_MALAYALAM","features":[389]},{"name":"UBLOCK_MANDAIC","features":[389]},{"name":"UBLOCK_MANICHAEAN","features":[389]},{"name":"UBLOCK_MARCHEN","features":[389]},{"name":"UBLOCK_MASARAM_GONDI","features":[389]},{"name":"UBLOCK_MATHEMATICAL_ALPHANUMERIC_SYMBOLS","features":[389]},{"name":"UBLOCK_MATHEMATICAL_OPERATORS","features":[389]},{"name":"UBLOCK_MAYAN_NUMERALS","features":[389]},{"name":"UBLOCK_MEDEFAIDRIN","features":[389]},{"name":"UBLOCK_MEETEI_MAYEK","features":[389]},{"name":"UBLOCK_MEETEI_MAYEK_EXTENSIONS","features":[389]},{"name":"UBLOCK_MENDE_KIKAKUI","features":[389]},{"name":"UBLOCK_MEROITIC_CURSIVE","features":[389]},{"name":"UBLOCK_MEROITIC_HIEROGLYPHS","features":[389]},{"name":"UBLOCK_MIAO","features":[389]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A","features":[389]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B","features":[389]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS","features":[389]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_ARROWS","features":[389]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS","features":[389]},{"name":"UBLOCK_MISCELLANEOUS_TECHNICAL","features":[389]},{"name":"UBLOCK_MODI","features":[389]},{"name":"UBLOCK_MODIFIER_TONE_LETTERS","features":[389]},{"name":"UBLOCK_MONGOLIAN","features":[389]},{"name":"UBLOCK_MONGOLIAN_SUPPLEMENT","features":[389]},{"name":"UBLOCK_MRO","features":[389]},{"name":"UBLOCK_MULTANI","features":[389]},{"name":"UBLOCK_MUSICAL_SYMBOLS","features":[389]},{"name":"UBLOCK_MYANMAR","features":[389]},{"name":"UBLOCK_MYANMAR_EXTENDED_A","features":[389]},{"name":"UBLOCK_MYANMAR_EXTENDED_B","features":[389]},{"name":"UBLOCK_NABATAEAN","features":[389]},{"name":"UBLOCK_NANDINAGARI","features":[389]},{"name":"UBLOCK_NEWA","features":[389]},{"name":"UBLOCK_NEW_TAI_LUE","features":[389]},{"name":"UBLOCK_NKO","features":[389]},{"name":"UBLOCK_NO_BLOCK","features":[389]},{"name":"UBLOCK_NUMBER_FORMS","features":[389]},{"name":"UBLOCK_NUSHU","features":[389]},{"name":"UBLOCK_NYIAKENG_PUACHUE_HMONG","features":[389]},{"name":"UBLOCK_OGHAM","features":[389]},{"name":"UBLOCK_OLD_HUNGARIAN","features":[389]},{"name":"UBLOCK_OLD_ITALIC","features":[389]},{"name":"UBLOCK_OLD_NORTH_ARABIAN","features":[389]},{"name":"UBLOCK_OLD_PERMIC","features":[389]},{"name":"UBLOCK_OLD_PERSIAN","features":[389]},{"name":"UBLOCK_OLD_SOGDIAN","features":[389]},{"name":"UBLOCK_OLD_SOUTH_ARABIAN","features":[389]},{"name":"UBLOCK_OLD_TURKIC","features":[389]},{"name":"UBLOCK_OL_CHIKI","features":[389]},{"name":"UBLOCK_OPTICAL_CHARACTER_RECOGNITION","features":[389]},{"name":"UBLOCK_ORIYA","features":[389]},{"name":"UBLOCK_ORNAMENTAL_DINGBATS","features":[389]},{"name":"UBLOCK_OSAGE","features":[389]},{"name":"UBLOCK_OSMANYA","features":[389]},{"name":"UBLOCK_OTTOMAN_SIYAQ_NUMBERS","features":[389]},{"name":"UBLOCK_PAHAWH_HMONG","features":[389]},{"name":"UBLOCK_PALMYRENE","features":[389]},{"name":"UBLOCK_PAU_CIN_HAU","features":[389]},{"name":"UBLOCK_PHAGS_PA","features":[389]},{"name":"UBLOCK_PHAISTOS_DISC","features":[389]},{"name":"UBLOCK_PHOENICIAN","features":[389]},{"name":"UBLOCK_PHONETIC_EXTENSIONS","features":[389]},{"name":"UBLOCK_PHONETIC_EXTENSIONS_SUPPLEMENT","features":[389]},{"name":"UBLOCK_PLAYING_CARDS","features":[389]},{"name":"UBLOCK_PRIVATE_USE","features":[389]},{"name":"UBLOCK_PRIVATE_USE_AREA","features":[389]},{"name":"UBLOCK_PSALTER_PAHLAVI","features":[389]},{"name":"UBLOCK_REJANG","features":[389]},{"name":"UBLOCK_RUMI_NUMERAL_SYMBOLS","features":[389]},{"name":"UBLOCK_RUNIC","features":[389]},{"name":"UBLOCK_SAMARITAN","features":[389]},{"name":"UBLOCK_SAURASHTRA","features":[389]},{"name":"UBLOCK_SHARADA","features":[389]},{"name":"UBLOCK_SHAVIAN","features":[389]},{"name":"UBLOCK_SHORTHAND_FORMAT_CONTROLS","features":[389]},{"name":"UBLOCK_SIDDHAM","features":[389]},{"name":"UBLOCK_SINHALA","features":[389]},{"name":"UBLOCK_SINHALA_ARCHAIC_NUMBERS","features":[389]},{"name":"UBLOCK_SMALL_FORM_VARIANTS","features":[389]},{"name":"UBLOCK_SMALL_KANA_EXTENSION","features":[389]},{"name":"UBLOCK_SOGDIAN","features":[389]},{"name":"UBLOCK_SORA_SOMPENG","features":[389]},{"name":"UBLOCK_SOYOMBO","features":[389]},{"name":"UBLOCK_SPACING_MODIFIER_LETTERS","features":[389]},{"name":"UBLOCK_SPECIALS","features":[389]},{"name":"UBLOCK_SUNDANESE","features":[389]},{"name":"UBLOCK_SUNDANESE_SUPPLEMENT","features":[389]},{"name":"UBLOCK_SUPERSCRIPTS_AND_SUBSCRIPTS","features":[389]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_A","features":[389]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_B","features":[389]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_C","features":[389]},{"name":"UBLOCK_SUPPLEMENTAL_MATHEMATICAL_OPERATORS","features":[389]},{"name":"UBLOCK_SUPPLEMENTAL_PUNCTUATION","features":[389]},{"name":"UBLOCK_SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS","features":[389]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_A","features":[389]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_B","features":[389]},{"name":"UBLOCK_SUTTON_SIGNWRITING","features":[389]},{"name":"UBLOCK_SYLOTI_NAGRI","features":[389]},{"name":"UBLOCK_SYMBOLS_AND_PICTOGRAPHS_EXTENDED_A","features":[389]},{"name":"UBLOCK_SYMBOLS_FOR_LEGACY_COMPUTING","features":[389]},{"name":"UBLOCK_SYRIAC","features":[389]},{"name":"UBLOCK_SYRIAC_SUPPLEMENT","features":[389]},{"name":"UBLOCK_TAGALOG","features":[389]},{"name":"UBLOCK_TAGBANWA","features":[389]},{"name":"UBLOCK_TAGS","features":[389]},{"name":"UBLOCK_TAI_LE","features":[389]},{"name":"UBLOCK_TAI_THAM","features":[389]},{"name":"UBLOCK_TAI_VIET","features":[389]},{"name":"UBLOCK_TAI_XUAN_JING_SYMBOLS","features":[389]},{"name":"UBLOCK_TAKRI","features":[389]},{"name":"UBLOCK_TAMIL","features":[389]},{"name":"UBLOCK_TAMIL_SUPPLEMENT","features":[389]},{"name":"UBLOCK_TANGUT","features":[389]},{"name":"UBLOCK_TANGUT_COMPONENTS","features":[389]},{"name":"UBLOCK_TANGUT_SUPPLEMENT","features":[389]},{"name":"UBLOCK_TELUGU","features":[389]},{"name":"UBLOCK_THAANA","features":[389]},{"name":"UBLOCK_THAI","features":[389]},{"name":"UBLOCK_TIBETAN","features":[389]},{"name":"UBLOCK_TIFINAGH","features":[389]},{"name":"UBLOCK_TIRHUTA","features":[389]},{"name":"UBLOCK_TRANSPORT_AND_MAP_SYMBOLS","features":[389]},{"name":"UBLOCK_UGARITIC","features":[389]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS","features":[389]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED","features":[389]},{"name":"UBLOCK_VAI","features":[389]},{"name":"UBLOCK_VARIATION_SELECTORS","features":[389]},{"name":"UBLOCK_VARIATION_SELECTORS_SUPPLEMENT","features":[389]},{"name":"UBLOCK_VEDIC_EXTENSIONS","features":[389]},{"name":"UBLOCK_VERTICAL_FORMS","features":[389]},{"name":"UBLOCK_WANCHO","features":[389]},{"name":"UBLOCK_WARANG_CITI","features":[389]},{"name":"UBLOCK_YEZIDI","features":[389]},{"name":"UBLOCK_YIJING_HEXAGRAM_SYMBOLS","features":[389]},{"name":"UBLOCK_YI_RADICALS","features":[389]},{"name":"UBLOCK_YI_SYLLABLES","features":[389]},{"name":"UBLOCK_ZANABAZAR_SQUARE","features":[389]},{"name":"UBRK_CHARACTER","features":[389]},{"name":"UBRK_LINE","features":[389]},{"name":"UBRK_LINE_HARD","features":[389]},{"name":"UBRK_LINE_HARD_LIMIT","features":[389]},{"name":"UBRK_LINE_SOFT","features":[389]},{"name":"UBRK_LINE_SOFT_LIMIT","features":[389]},{"name":"UBRK_SENTENCE","features":[389]},{"name":"UBRK_SENTENCE_SEP","features":[389]},{"name":"UBRK_SENTENCE_SEP_LIMIT","features":[389]},{"name":"UBRK_SENTENCE_TERM","features":[389]},{"name":"UBRK_SENTENCE_TERM_LIMIT","features":[389]},{"name":"UBRK_WORD","features":[389]},{"name":"UBRK_WORD_IDEO","features":[389]},{"name":"UBRK_WORD_IDEO_LIMIT","features":[389]},{"name":"UBRK_WORD_KANA","features":[389]},{"name":"UBRK_WORD_KANA_LIMIT","features":[389]},{"name":"UBRK_WORD_LETTER","features":[389]},{"name":"UBRK_WORD_LETTER_LIMIT","features":[389]},{"name":"UBRK_WORD_NONE","features":[389]},{"name":"UBRK_WORD_NONE_LIMIT","features":[389]},{"name":"UBRK_WORD_NUMBER","features":[389]},{"name":"UBRK_WORD_NUMBER_LIMIT","features":[389]},{"name":"UBiDi","features":[389]},{"name":"UBiDiClassCallback","features":[389]},{"name":"UBiDiDirection","features":[389]},{"name":"UBiDiMirroring","features":[389]},{"name":"UBiDiOrder","features":[389]},{"name":"UBiDiReorderingMode","features":[389]},{"name":"UBiDiReorderingOption","features":[389]},{"name":"UBiDiTransform","features":[389]},{"name":"UBidiPairedBracketType","features":[389]},{"name":"UBlockCode","features":[389]},{"name":"UBreakIterator","features":[389]},{"name":"UBreakIteratorType","features":[389]},{"name":"UCAL_ACTUAL_MAXIMUM","features":[389]},{"name":"UCAL_ACTUAL_MINIMUM","features":[389]},{"name":"UCAL_AM","features":[389]},{"name":"UCAL_AM_PM","features":[389]},{"name":"UCAL_APRIL","features":[389]},{"name":"UCAL_AUGUST","features":[389]},{"name":"UCAL_DATE","features":[389]},{"name":"UCAL_DAY_OF_MONTH","features":[389]},{"name":"UCAL_DAY_OF_WEEK","features":[389]},{"name":"UCAL_DAY_OF_WEEK_IN_MONTH","features":[389]},{"name":"UCAL_DAY_OF_YEAR","features":[389]},{"name":"UCAL_DECEMBER","features":[389]},{"name":"UCAL_DEFAULT","features":[389]},{"name":"UCAL_DOW_LOCAL","features":[389]},{"name":"UCAL_DST","features":[389]},{"name":"UCAL_DST_OFFSET","features":[389]},{"name":"UCAL_ERA","features":[389]},{"name":"UCAL_EXTENDED_YEAR","features":[389]},{"name":"UCAL_FEBRUARY","features":[389]},{"name":"UCAL_FIELD_COUNT","features":[389]},{"name":"UCAL_FIRST_DAY_OF_WEEK","features":[389]},{"name":"UCAL_FRIDAY","features":[389]},{"name":"UCAL_GREATEST_MINIMUM","features":[389]},{"name":"UCAL_GREGORIAN","features":[389]},{"name":"UCAL_HOUR","features":[389]},{"name":"UCAL_HOUR_OF_DAY","features":[389]},{"name":"UCAL_IS_LEAP_MONTH","features":[389]},{"name":"UCAL_JANUARY","features":[389]},{"name":"UCAL_JULIAN_DAY","features":[389]},{"name":"UCAL_JULY","features":[389]},{"name":"UCAL_JUNE","features":[389]},{"name":"UCAL_LEAST_MAXIMUM","features":[389]},{"name":"UCAL_LENIENT","features":[389]},{"name":"UCAL_MARCH","features":[389]},{"name":"UCAL_MAXIMUM","features":[389]},{"name":"UCAL_MAY","features":[389]},{"name":"UCAL_MILLISECOND","features":[389]},{"name":"UCAL_MILLISECONDS_IN_DAY","features":[389]},{"name":"UCAL_MINIMAL_DAYS_IN_FIRST_WEEK","features":[389]},{"name":"UCAL_MINIMUM","features":[389]},{"name":"UCAL_MINUTE","features":[389]},{"name":"UCAL_MONDAY","features":[389]},{"name":"UCAL_MONTH","features":[389]},{"name":"UCAL_NOVEMBER","features":[389]},{"name":"UCAL_OCTOBER","features":[389]},{"name":"UCAL_PM","features":[389]},{"name":"UCAL_REPEATED_WALL_TIME","features":[389]},{"name":"UCAL_SATURDAY","features":[389]},{"name":"UCAL_SECOND","features":[389]},{"name":"UCAL_SEPTEMBER","features":[389]},{"name":"UCAL_SHORT_DST","features":[389]},{"name":"UCAL_SHORT_STANDARD","features":[389]},{"name":"UCAL_SKIPPED_WALL_TIME","features":[389]},{"name":"UCAL_STANDARD","features":[389]},{"name":"UCAL_SUNDAY","features":[389]},{"name":"UCAL_THURSDAY","features":[389]},{"name":"UCAL_TRADITIONAL","features":[389]},{"name":"UCAL_TUESDAY","features":[389]},{"name":"UCAL_TZ_TRANSITION_NEXT","features":[389]},{"name":"UCAL_TZ_TRANSITION_NEXT_INCLUSIVE","features":[389]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS","features":[389]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS_INCLUSIVE","features":[389]},{"name":"UCAL_UNDECIMBER","features":[389]},{"name":"UCAL_UNKNOWN_ZONE_ID","features":[389]},{"name":"UCAL_WALLTIME_FIRST","features":[389]},{"name":"UCAL_WALLTIME_LAST","features":[389]},{"name":"UCAL_WALLTIME_NEXT_VALID","features":[389]},{"name":"UCAL_WEDNESDAY","features":[389]},{"name":"UCAL_WEEKDAY","features":[389]},{"name":"UCAL_WEEKEND","features":[389]},{"name":"UCAL_WEEKEND_CEASE","features":[389]},{"name":"UCAL_WEEKEND_ONSET","features":[389]},{"name":"UCAL_WEEK_OF_MONTH","features":[389]},{"name":"UCAL_WEEK_OF_YEAR","features":[389]},{"name":"UCAL_YEAR","features":[389]},{"name":"UCAL_YEAR_WOY","features":[389]},{"name":"UCAL_ZONE_OFFSET","features":[389]},{"name":"UCAL_ZONE_TYPE_ANY","features":[389]},{"name":"UCAL_ZONE_TYPE_CANONICAL","features":[389]},{"name":"UCAL_ZONE_TYPE_CANONICAL_LOCATION","features":[389]},{"name":"UCHAR_AGE","features":[389]},{"name":"UCHAR_ALPHABETIC","features":[389]},{"name":"UCHAR_ASCII_HEX_DIGIT","features":[389]},{"name":"UCHAR_BIDI_CLASS","features":[389]},{"name":"UCHAR_BIDI_CONTROL","features":[389]},{"name":"UCHAR_BIDI_MIRRORED","features":[389]},{"name":"UCHAR_BIDI_MIRRORING_GLYPH","features":[389]},{"name":"UCHAR_BIDI_PAIRED_BRACKET","features":[389]},{"name":"UCHAR_BIDI_PAIRED_BRACKET_TYPE","features":[389]},{"name":"UCHAR_BINARY_START","features":[389]},{"name":"UCHAR_BLOCK","features":[389]},{"name":"UCHAR_CANONICAL_COMBINING_CLASS","features":[389]},{"name":"UCHAR_CASED","features":[389]},{"name":"UCHAR_CASE_FOLDING","features":[389]},{"name":"UCHAR_CASE_IGNORABLE","features":[389]},{"name":"UCHAR_CASE_SENSITIVE","features":[389]},{"name":"UCHAR_CHANGES_WHEN_CASEFOLDED","features":[389]},{"name":"UCHAR_CHANGES_WHEN_CASEMAPPED","features":[389]},{"name":"UCHAR_CHANGES_WHEN_LOWERCASED","features":[389]},{"name":"UCHAR_CHANGES_WHEN_NFKC_CASEFOLDED","features":[389]},{"name":"UCHAR_CHANGES_WHEN_TITLECASED","features":[389]},{"name":"UCHAR_CHANGES_WHEN_UPPERCASED","features":[389]},{"name":"UCHAR_DASH","features":[389]},{"name":"UCHAR_DECOMPOSITION_TYPE","features":[389]},{"name":"UCHAR_DEFAULT_IGNORABLE_CODE_POINT","features":[389]},{"name":"UCHAR_DEPRECATED","features":[389]},{"name":"UCHAR_DIACRITIC","features":[389]},{"name":"UCHAR_DOUBLE_START","features":[389]},{"name":"UCHAR_EAST_ASIAN_WIDTH","features":[389]},{"name":"UCHAR_EMOJI","features":[389]},{"name":"UCHAR_EMOJI_COMPONENT","features":[389]},{"name":"UCHAR_EMOJI_MODIFIER","features":[389]},{"name":"UCHAR_EMOJI_MODIFIER_BASE","features":[389]},{"name":"UCHAR_EMOJI_PRESENTATION","features":[389]},{"name":"UCHAR_EXTENDED_PICTOGRAPHIC","features":[389]},{"name":"UCHAR_EXTENDER","features":[389]},{"name":"UCHAR_FULL_COMPOSITION_EXCLUSION","features":[389]},{"name":"UCHAR_GENERAL_CATEGORY","features":[389]},{"name":"UCHAR_GENERAL_CATEGORY_MASK","features":[389]},{"name":"UCHAR_GRAPHEME_BASE","features":[389]},{"name":"UCHAR_GRAPHEME_CLUSTER_BREAK","features":[389]},{"name":"UCHAR_GRAPHEME_EXTEND","features":[389]},{"name":"UCHAR_GRAPHEME_LINK","features":[389]},{"name":"UCHAR_HANGUL_SYLLABLE_TYPE","features":[389]},{"name":"UCHAR_HEX_DIGIT","features":[389]},{"name":"UCHAR_HYPHEN","features":[389]},{"name":"UCHAR_IDEOGRAPHIC","features":[389]},{"name":"UCHAR_IDS_BINARY_OPERATOR","features":[389]},{"name":"UCHAR_IDS_TRINARY_OPERATOR","features":[389]},{"name":"UCHAR_ID_CONTINUE","features":[389]},{"name":"UCHAR_ID_START","features":[389]},{"name":"UCHAR_INDIC_POSITIONAL_CATEGORY","features":[389]},{"name":"UCHAR_INDIC_SYLLABIC_CATEGORY","features":[389]},{"name":"UCHAR_INT_START","features":[389]},{"name":"UCHAR_INVALID_CODE","features":[389]},{"name":"UCHAR_JOINING_GROUP","features":[389]},{"name":"UCHAR_JOINING_TYPE","features":[389]},{"name":"UCHAR_JOIN_CONTROL","features":[389]},{"name":"UCHAR_LEAD_CANONICAL_COMBINING_CLASS","features":[389]},{"name":"UCHAR_LINE_BREAK","features":[389]},{"name":"UCHAR_LOGICAL_ORDER_EXCEPTION","features":[389]},{"name":"UCHAR_LOWERCASE","features":[389]},{"name":"UCHAR_LOWERCASE_MAPPING","features":[389]},{"name":"UCHAR_MASK_START","features":[389]},{"name":"UCHAR_MATH","features":[389]},{"name":"UCHAR_MAX_VALUE","features":[389]},{"name":"UCHAR_MIN_VALUE","features":[389]},{"name":"UCHAR_NAME","features":[389]},{"name":"UCHAR_NFC_INERT","features":[389]},{"name":"UCHAR_NFC_QUICK_CHECK","features":[389]},{"name":"UCHAR_NFD_INERT","features":[389]},{"name":"UCHAR_NFD_QUICK_CHECK","features":[389]},{"name":"UCHAR_NFKC_INERT","features":[389]},{"name":"UCHAR_NFKC_QUICK_CHECK","features":[389]},{"name":"UCHAR_NFKD_INERT","features":[389]},{"name":"UCHAR_NFKD_QUICK_CHECK","features":[389]},{"name":"UCHAR_NONCHARACTER_CODE_POINT","features":[389]},{"name":"UCHAR_NUMERIC_TYPE","features":[389]},{"name":"UCHAR_NUMERIC_VALUE","features":[389]},{"name":"UCHAR_OTHER_PROPERTY_START","features":[389]},{"name":"UCHAR_PATTERN_SYNTAX","features":[389]},{"name":"UCHAR_PATTERN_WHITE_SPACE","features":[389]},{"name":"UCHAR_POSIX_ALNUM","features":[389]},{"name":"UCHAR_POSIX_BLANK","features":[389]},{"name":"UCHAR_POSIX_GRAPH","features":[389]},{"name":"UCHAR_POSIX_PRINT","features":[389]},{"name":"UCHAR_POSIX_XDIGIT","features":[389]},{"name":"UCHAR_PREPENDED_CONCATENATION_MARK","features":[389]},{"name":"UCHAR_QUOTATION_MARK","features":[389]},{"name":"UCHAR_RADICAL","features":[389]},{"name":"UCHAR_REGIONAL_INDICATOR","features":[389]},{"name":"UCHAR_SCRIPT","features":[389]},{"name":"UCHAR_SCRIPT_EXTENSIONS","features":[389]},{"name":"UCHAR_SEGMENT_STARTER","features":[389]},{"name":"UCHAR_SENTENCE_BREAK","features":[389]},{"name":"UCHAR_SIMPLE_CASE_FOLDING","features":[389]},{"name":"UCHAR_SIMPLE_LOWERCASE_MAPPING","features":[389]},{"name":"UCHAR_SIMPLE_TITLECASE_MAPPING","features":[389]},{"name":"UCHAR_SIMPLE_UPPERCASE_MAPPING","features":[389]},{"name":"UCHAR_SOFT_DOTTED","features":[389]},{"name":"UCHAR_STRING_START","features":[389]},{"name":"UCHAR_S_TERM","features":[389]},{"name":"UCHAR_TERMINAL_PUNCTUATION","features":[389]},{"name":"UCHAR_TITLECASE_MAPPING","features":[389]},{"name":"UCHAR_TRAIL_CANONICAL_COMBINING_CLASS","features":[389]},{"name":"UCHAR_UNIFIED_IDEOGRAPH","features":[389]},{"name":"UCHAR_UPPERCASE","features":[389]},{"name":"UCHAR_UPPERCASE_MAPPING","features":[389]},{"name":"UCHAR_VARIATION_SELECTOR","features":[389]},{"name":"UCHAR_VERTICAL_ORIENTATION","features":[389]},{"name":"UCHAR_WHITE_SPACE","features":[389]},{"name":"UCHAR_WORD_BREAK","features":[389]},{"name":"UCHAR_XID_CONTINUE","features":[389]},{"name":"UCHAR_XID_START","features":[389]},{"name":"UCLN_NO_AUTO_CLEANUP","features":[389]},{"name":"UCNV_BOCU1","features":[389]},{"name":"UCNV_CESU8","features":[389]},{"name":"UCNV_CLONE","features":[389]},{"name":"UCNV_CLOSE","features":[389]},{"name":"UCNV_COMPOUND_TEXT","features":[389]},{"name":"UCNV_DBCS","features":[389]},{"name":"UCNV_EBCDIC_STATEFUL","features":[389]},{"name":"UCNV_ESCAPE_C","features":[389]},{"name":"UCNV_ESCAPE_CSS2","features":[389]},{"name":"UCNV_ESCAPE_JAVA","features":[389]},{"name":"UCNV_ESCAPE_UNICODE","features":[389]},{"name":"UCNV_ESCAPE_XML_DEC","features":[389]},{"name":"UCNV_ESCAPE_XML_HEX","features":[389]},{"name":"UCNV_FROM_U_CALLBACK_ESCAPE","features":[389]},{"name":"UCNV_FROM_U_CALLBACK_SKIP","features":[389]},{"name":"UCNV_FROM_U_CALLBACK_STOP","features":[389]},{"name":"UCNV_FROM_U_CALLBACK_SUBSTITUTE","features":[389]},{"name":"UCNV_HZ","features":[389]},{"name":"UCNV_IBM","features":[389]},{"name":"UCNV_ILLEGAL","features":[389]},{"name":"UCNV_IMAP_MAILBOX","features":[389]},{"name":"UCNV_IRREGULAR","features":[389]},{"name":"UCNV_ISCII","features":[389]},{"name":"UCNV_ISO_2022","features":[389]},{"name":"UCNV_LATIN_1","features":[389]},{"name":"UCNV_LMBCS_1","features":[389]},{"name":"UCNV_LMBCS_11","features":[389]},{"name":"UCNV_LMBCS_16","features":[389]},{"name":"UCNV_LMBCS_17","features":[389]},{"name":"UCNV_LMBCS_18","features":[389]},{"name":"UCNV_LMBCS_19","features":[389]},{"name":"UCNV_LMBCS_2","features":[389]},{"name":"UCNV_LMBCS_3","features":[389]},{"name":"UCNV_LMBCS_4","features":[389]},{"name":"UCNV_LMBCS_5","features":[389]},{"name":"UCNV_LMBCS_6","features":[389]},{"name":"UCNV_LMBCS_8","features":[389]},{"name":"UCNV_LMBCS_LAST","features":[389]},{"name":"UCNV_LOCALE_OPTION_STRING","features":[389]},{"name":"UCNV_MAX_CONVERTER_NAME_LENGTH","features":[389]},{"name":"UCNV_MBCS","features":[389]},{"name":"UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES","features":[389]},{"name":"UCNV_OPTION_SEP_STRING","features":[389]},{"name":"UCNV_RESET","features":[389]},{"name":"UCNV_ROUNDTRIP_AND_FALLBACK_SET","features":[389]},{"name":"UCNV_ROUNDTRIP_SET","features":[389]},{"name":"UCNV_SBCS","features":[389]},{"name":"UCNV_SCSU","features":[389]},{"name":"UCNV_SI","features":[389]},{"name":"UCNV_SKIP_STOP_ON_ILLEGAL","features":[389]},{"name":"UCNV_SO","features":[389]},{"name":"UCNV_SUB_STOP_ON_ILLEGAL","features":[389]},{"name":"UCNV_SWAP_LFNL_OPTION_STRING","features":[389]},{"name":"UCNV_TO_U_CALLBACK_ESCAPE","features":[389]},{"name":"UCNV_TO_U_CALLBACK_SKIP","features":[389]},{"name":"UCNV_TO_U_CALLBACK_STOP","features":[389]},{"name":"UCNV_TO_U_CALLBACK_SUBSTITUTE","features":[389]},{"name":"UCNV_UNASSIGNED","features":[389]},{"name":"UCNV_UNKNOWN","features":[389]},{"name":"UCNV_UNSUPPORTED_CONVERTER","features":[389]},{"name":"UCNV_US_ASCII","features":[389]},{"name":"UCNV_UTF16","features":[389]},{"name":"UCNV_UTF16_BigEndian","features":[389]},{"name":"UCNV_UTF16_LittleEndian","features":[389]},{"name":"UCNV_UTF32","features":[389]},{"name":"UCNV_UTF32_BigEndian","features":[389]},{"name":"UCNV_UTF32_LittleEndian","features":[389]},{"name":"UCNV_UTF7","features":[389]},{"name":"UCNV_UTF8","features":[389]},{"name":"UCNV_VALUE_SEP_STRING","features":[389]},{"name":"UCNV_VERSION_OPTION_STRING","features":[389]},{"name":"UCOL_ALTERNATE_HANDLING","features":[389]},{"name":"UCOL_ATTRIBUTE_COUNT","features":[389]},{"name":"UCOL_BOUND_LOWER","features":[389]},{"name":"UCOL_BOUND_UPPER","features":[389]},{"name":"UCOL_BOUND_UPPER_LONG","features":[389]},{"name":"UCOL_CASE_FIRST","features":[389]},{"name":"UCOL_CASE_LEVEL","features":[389]},{"name":"UCOL_CE_STRENGTH_LIMIT","features":[389]},{"name":"UCOL_DECOMPOSITION_MODE","features":[389]},{"name":"UCOL_DEFAULT","features":[389]},{"name":"UCOL_DEFAULT_STRENGTH","features":[389]},{"name":"UCOL_EQUAL","features":[389]},{"name":"UCOL_FRENCH_COLLATION","features":[389]},{"name":"UCOL_FULL_RULES","features":[389]},{"name":"UCOL_GREATER","features":[389]},{"name":"UCOL_IDENTICAL","features":[389]},{"name":"UCOL_LESS","features":[389]},{"name":"UCOL_LOWER_FIRST","features":[389]},{"name":"UCOL_NON_IGNORABLE","features":[389]},{"name":"UCOL_NORMALIZATION_MODE","features":[389]},{"name":"UCOL_NUMERIC_COLLATION","features":[389]},{"name":"UCOL_OFF","features":[389]},{"name":"UCOL_ON","features":[389]},{"name":"UCOL_PRIMARY","features":[389]},{"name":"UCOL_QUATERNARY","features":[389]},{"name":"UCOL_REORDER_CODE_CURRENCY","features":[389]},{"name":"UCOL_REORDER_CODE_DEFAULT","features":[389]},{"name":"UCOL_REORDER_CODE_DIGIT","features":[389]},{"name":"UCOL_REORDER_CODE_FIRST","features":[389]},{"name":"UCOL_REORDER_CODE_NONE","features":[389]},{"name":"UCOL_REORDER_CODE_OTHERS","features":[389]},{"name":"UCOL_REORDER_CODE_PUNCTUATION","features":[389]},{"name":"UCOL_REORDER_CODE_SPACE","features":[389]},{"name":"UCOL_REORDER_CODE_SYMBOL","features":[389]},{"name":"UCOL_SECONDARY","features":[389]},{"name":"UCOL_SHIFTED","features":[389]},{"name":"UCOL_STRENGTH","features":[389]},{"name":"UCOL_STRENGTH_LIMIT","features":[389]},{"name":"UCOL_TAILORING_ONLY","features":[389]},{"name":"UCOL_TERTIARY","features":[389]},{"name":"UCOL_UPPER_FIRST","features":[389]},{"name":"UCONFIG_ENABLE_PLUGINS","features":[389]},{"name":"UCONFIG_FORMAT_FASTPATHS_49","features":[389]},{"name":"UCONFIG_HAVE_PARSEALLINPUT","features":[389]},{"name":"UCONFIG_NO_BREAK_ITERATION","features":[389]},{"name":"UCONFIG_NO_COLLATION","features":[389]},{"name":"UCONFIG_NO_CONVERSION","features":[389]},{"name":"UCONFIG_NO_FILE_IO","features":[389]},{"name":"UCONFIG_NO_FILTERED_BREAK_ITERATION","features":[389]},{"name":"UCONFIG_NO_FORMATTING","features":[389]},{"name":"UCONFIG_NO_IDNA","features":[389]},{"name":"UCONFIG_NO_LEGACY_CONVERSION","features":[389]},{"name":"UCONFIG_NO_NORMALIZATION","features":[389]},{"name":"UCONFIG_NO_REGULAR_EXPRESSIONS","features":[389]},{"name":"UCONFIG_NO_SERVICE","features":[389]},{"name":"UCONFIG_NO_TRANSLITERATION","features":[389]},{"name":"UCONFIG_ONLY_COLLATION","features":[389]},{"name":"UCONFIG_ONLY_HTML_CONVERSION","features":[389]},{"name":"UCPMAP_RANGE_FIXED_ALL_SURROGATES","features":[389]},{"name":"UCPMAP_RANGE_FIXED_LEAD_SURROGATES","features":[389]},{"name":"UCPMAP_RANGE_NORMAL","features":[389]},{"name":"UCPMap","features":[389]},{"name":"UCPMapRangeOption","features":[389]},{"name":"UCPMapValueFilter","features":[389]},{"name":"UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET","features":[389]},{"name":"UCPTRIE_FAST_DATA_BLOCK_LENGTH","features":[389]},{"name":"UCPTRIE_FAST_DATA_MASK","features":[389]},{"name":"UCPTRIE_FAST_SHIFT","features":[389]},{"name":"UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET","features":[389]},{"name":"UCPTRIE_SMALL_MAX","features":[389]},{"name":"UCPTRIE_TYPE_ANY","features":[389]},{"name":"UCPTRIE_TYPE_FAST","features":[389]},{"name":"UCPTRIE_TYPE_SMALL","features":[389]},{"name":"UCPTRIE_VALUE_BITS_16","features":[389]},{"name":"UCPTRIE_VALUE_BITS_32","features":[389]},{"name":"UCPTRIE_VALUE_BITS_8","features":[389]},{"name":"UCPTRIE_VALUE_BITS_ANY","features":[389]},{"name":"UCPTrie","features":[389]},{"name":"UCPTrieData","features":[389]},{"name":"UCPTrieType","features":[389]},{"name":"UCPTrieValueWidth","features":[389]},{"name":"UCURR_ALL","features":[389]},{"name":"UCURR_COMMON","features":[389]},{"name":"UCURR_DEPRECATED","features":[389]},{"name":"UCURR_LONG_NAME","features":[389]},{"name":"UCURR_NARROW_SYMBOL_NAME","features":[389]},{"name":"UCURR_NON_DEPRECATED","features":[389]},{"name":"UCURR_SYMBOL_NAME","features":[389]},{"name":"UCURR_UNCOMMON","features":[389]},{"name":"UCURR_USAGE_CASH","features":[389]},{"name":"UCURR_USAGE_STANDARD","features":[389]},{"name":"UCalendarAMPMs","features":[389]},{"name":"UCalendarAttribute","features":[389]},{"name":"UCalendarDateFields","features":[389]},{"name":"UCalendarDaysOfWeek","features":[389]},{"name":"UCalendarDisplayNameType","features":[389]},{"name":"UCalendarLimitType","features":[389]},{"name":"UCalendarMonths","features":[389]},{"name":"UCalendarType","features":[389]},{"name":"UCalendarWallTimeOption","features":[389]},{"name":"UCalendarWeekdayType","features":[389]},{"name":"UCaseMap","features":[389]},{"name":"UCharCategory","features":[389]},{"name":"UCharDirection","features":[389]},{"name":"UCharEnumTypeRange","features":[389]},{"name":"UCharIterator","features":[389]},{"name":"UCharIteratorCurrent","features":[389]},{"name":"UCharIteratorGetIndex","features":[389]},{"name":"UCharIteratorGetState","features":[389]},{"name":"UCharIteratorHasNext","features":[389]},{"name":"UCharIteratorHasPrevious","features":[389]},{"name":"UCharIteratorMove","features":[389]},{"name":"UCharIteratorNext","features":[389]},{"name":"UCharIteratorOrigin","features":[389]},{"name":"UCharIteratorPrevious","features":[389]},{"name":"UCharIteratorReserved","features":[389]},{"name":"UCharIteratorSetState","features":[389]},{"name":"UCharNameChoice","features":[389]},{"name":"UCharsetDetector","features":[389]},{"name":"UCharsetMatch","features":[389]},{"name":"UColAttribute","features":[389]},{"name":"UColAttributeValue","features":[389]},{"name":"UColBoundMode","features":[389]},{"name":"UColReorderCode","features":[389]},{"name":"UColRuleOption","features":[389]},{"name":"UCollationElements","features":[389]},{"name":"UCollationResult","features":[389]},{"name":"UCollator","features":[389]},{"name":"UConstrainedFieldPosition","features":[389]},{"name":"UConverter","features":[389]},{"name":"UConverterCallbackReason","features":[389]},{"name":"UConverterFromUCallback","features":[389]},{"name":"UConverterFromUnicodeArgs","features":[389]},{"name":"UConverterPlatform","features":[389]},{"name":"UConverterSelector","features":[389]},{"name":"UConverterToUCallback","features":[389]},{"name":"UConverterToUnicodeArgs","features":[389]},{"name":"UConverterType","features":[389]},{"name":"UConverterUnicodeSet","features":[389]},{"name":"UCurrCurrencyType","features":[389]},{"name":"UCurrNameStyle","features":[389]},{"name":"UCurrencySpacing","features":[389]},{"name":"UCurrencyUsage","features":[389]},{"name":"UDATPG_ABBREVIATED","features":[389]},{"name":"UDATPG_BASE_CONFLICT","features":[389]},{"name":"UDATPG_CONFLICT","features":[389]},{"name":"UDATPG_DAYPERIOD_FIELD","features":[389]},{"name":"UDATPG_DAY_FIELD","features":[389]},{"name":"UDATPG_DAY_OF_WEEK_IN_MONTH_FIELD","features":[389]},{"name":"UDATPG_DAY_OF_YEAR_FIELD","features":[389]},{"name":"UDATPG_ERA_FIELD","features":[389]},{"name":"UDATPG_FIELD_COUNT","features":[389]},{"name":"UDATPG_FRACTIONAL_SECOND_FIELD","features":[389]},{"name":"UDATPG_HOUR_FIELD","features":[389]},{"name":"UDATPG_MATCH_ALL_FIELDS_LENGTH","features":[389]},{"name":"UDATPG_MATCH_HOUR_FIELD_LENGTH","features":[389]},{"name":"UDATPG_MATCH_NO_OPTIONS","features":[389]},{"name":"UDATPG_MINUTE_FIELD","features":[389]},{"name":"UDATPG_MONTH_FIELD","features":[389]},{"name":"UDATPG_NARROW","features":[389]},{"name":"UDATPG_NO_CONFLICT","features":[389]},{"name":"UDATPG_QUARTER_FIELD","features":[389]},{"name":"UDATPG_SECOND_FIELD","features":[389]},{"name":"UDATPG_WEEKDAY_FIELD","features":[389]},{"name":"UDATPG_WEEK_OF_MONTH_FIELD","features":[389]},{"name":"UDATPG_WEEK_OF_YEAR_FIELD","features":[389]},{"name":"UDATPG_WIDE","features":[389]},{"name":"UDATPG_YEAR_FIELD","features":[389]},{"name":"UDATPG_ZONE_FIELD","features":[389]},{"name":"UDAT_ABBR_GENERIC_TZ","features":[389]},{"name":"UDAT_ABBR_MONTH","features":[389]},{"name":"UDAT_ABBR_MONTH_DAY","features":[389]},{"name":"UDAT_ABBR_MONTH_WEEKDAY_DAY","features":[389]},{"name":"UDAT_ABBR_QUARTER","features":[389]},{"name":"UDAT_ABBR_SPECIFIC_TZ","features":[389]},{"name":"UDAT_ABBR_UTC_TZ","features":[389]},{"name":"UDAT_ABBR_WEEKDAY","features":[389]},{"name":"UDAT_ABSOLUTE_DAY","features":[389]},{"name":"UDAT_ABSOLUTE_FRIDAY","features":[389]},{"name":"UDAT_ABSOLUTE_MONDAY","features":[389]},{"name":"UDAT_ABSOLUTE_MONTH","features":[389]},{"name":"UDAT_ABSOLUTE_NOW","features":[389]},{"name":"UDAT_ABSOLUTE_SATURDAY","features":[389]},{"name":"UDAT_ABSOLUTE_SUNDAY","features":[389]},{"name":"UDAT_ABSOLUTE_THURSDAY","features":[389]},{"name":"UDAT_ABSOLUTE_TUESDAY","features":[389]},{"name":"UDAT_ABSOLUTE_UNIT_COUNT","features":[389]},{"name":"UDAT_ABSOLUTE_WEDNESDAY","features":[389]},{"name":"UDAT_ABSOLUTE_WEEK","features":[389]},{"name":"UDAT_ABSOLUTE_YEAR","features":[389]},{"name":"UDAT_AM_PMS","features":[389]},{"name":"UDAT_AM_PM_FIELD","features":[389]},{"name":"UDAT_AM_PM_MIDNIGHT_NOON_FIELD","features":[389]},{"name":"UDAT_BOOLEAN_ATTRIBUTE_COUNT","features":[389]},{"name":"UDAT_CYCLIC_YEARS_ABBREVIATED","features":[389]},{"name":"UDAT_CYCLIC_YEARS_NARROW","features":[389]},{"name":"UDAT_CYCLIC_YEARS_WIDE","features":[389]},{"name":"UDAT_DATE_FIELD","features":[389]},{"name":"UDAT_DAY","features":[389]},{"name":"UDAT_DAY_OF_WEEK_FIELD","features":[389]},{"name":"UDAT_DAY_OF_WEEK_IN_MONTH_FIELD","features":[389]},{"name":"UDAT_DAY_OF_YEAR_FIELD","features":[389]},{"name":"UDAT_DEFAULT","features":[389]},{"name":"UDAT_DIRECTION_COUNT","features":[389]},{"name":"UDAT_DIRECTION_LAST","features":[389]},{"name":"UDAT_DIRECTION_LAST_2","features":[389]},{"name":"UDAT_DIRECTION_NEXT","features":[389]},{"name":"UDAT_DIRECTION_NEXT_2","features":[389]},{"name":"UDAT_DIRECTION_PLAIN","features":[389]},{"name":"UDAT_DIRECTION_THIS","features":[389]},{"name":"UDAT_DOW_LOCAL_FIELD","features":[389]},{"name":"UDAT_ERAS","features":[389]},{"name":"UDAT_ERA_FIELD","features":[389]},{"name":"UDAT_ERA_NAMES","features":[389]},{"name":"UDAT_EXTENDED_YEAR_FIELD","features":[389]},{"name":"UDAT_FLEXIBLE_DAY_PERIOD_FIELD","features":[389]},{"name":"UDAT_FRACTIONAL_SECOND_FIELD","features":[389]},{"name":"UDAT_FULL","features":[389]},{"name":"UDAT_FULL_RELATIVE","features":[389]},{"name":"UDAT_GENERIC_TZ","features":[389]},{"name":"UDAT_HOUR","features":[389]},{"name":"UDAT_HOUR0_FIELD","features":[389]},{"name":"UDAT_HOUR1_FIELD","features":[389]},{"name":"UDAT_HOUR24","features":[389]},{"name":"UDAT_HOUR24_MINUTE","features":[389]},{"name":"UDAT_HOUR24_MINUTE_SECOND","features":[389]},{"name":"UDAT_HOUR_MINUTE","features":[389]},{"name":"UDAT_HOUR_MINUTE_SECOND","features":[389]},{"name":"UDAT_HOUR_OF_DAY0_FIELD","features":[389]},{"name":"UDAT_HOUR_OF_DAY1_FIELD","features":[389]},{"name":"UDAT_JULIAN_DAY_FIELD","features":[389]},{"name":"UDAT_LOCALIZED_CHARS","features":[389]},{"name":"UDAT_LOCATION_TZ","features":[389]},{"name":"UDAT_LONG","features":[389]},{"name":"UDAT_LONG_RELATIVE","features":[389]},{"name":"UDAT_MEDIUM","features":[389]},{"name":"UDAT_MEDIUM_RELATIVE","features":[389]},{"name":"UDAT_MILLISECONDS_IN_DAY_FIELD","features":[389]},{"name":"UDAT_MINUTE","features":[389]},{"name":"UDAT_MINUTE_FIELD","features":[389]},{"name":"UDAT_MINUTE_SECOND","features":[389]},{"name":"UDAT_MONTH","features":[389]},{"name":"UDAT_MONTHS","features":[389]},{"name":"UDAT_MONTH_DAY","features":[389]},{"name":"UDAT_MONTH_FIELD","features":[389]},{"name":"UDAT_MONTH_WEEKDAY_DAY","features":[389]},{"name":"UDAT_NARROW_MONTHS","features":[389]},{"name":"UDAT_NARROW_WEEKDAYS","features":[389]},{"name":"UDAT_NONE","features":[389]},{"name":"UDAT_NUM_MONTH","features":[389]},{"name":"UDAT_NUM_MONTH_DAY","features":[389]},{"name":"UDAT_NUM_MONTH_WEEKDAY_DAY","features":[389]},{"name":"UDAT_PARSE_ALLOW_NUMERIC","features":[389]},{"name":"UDAT_PARSE_ALLOW_WHITESPACE","features":[389]},{"name":"UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH","features":[389]},{"name":"UDAT_PARSE_PARTIAL_LITERAL_MATCH","features":[389]},{"name":"UDAT_PATTERN","features":[389]},{"name":"UDAT_QUARTER","features":[389]},{"name":"UDAT_QUARTERS","features":[389]},{"name":"UDAT_QUARTER_FIELD","features":[389]},{"name":"UDAT_RELATIVE","features":[389]},{"name":"UDAT_RELATIVE_DAYS","features":[389]},{"name":"UDAT_RELATIVE_HOURS","features":[389]},{"name":"UDAT_RELATIVE_MINUTES","features":[389]},{"name":"UDAT_RELATIVE_MONTHS","features":[389]},{"name":"UDAT_RELATIVE_SECONDS","features":[389]},{"name":"UDAT_RELATIVE_UNIT_COUNT","features":[389]},{"name":"UDAT_RELATIVE_WEEKS","features":[389]},{"name":"UDAT_RELATIVE_YEARS","features":[389]},{"name":"UDAT_REL_LITERAL_FIELD","features":[389]},{"name":"UDAT_REL_NUMERIC_FIELD","features":[389]},{"name":"UDAT_REL_UNIT_DAY","features":[389]},{"name":"UDAT_REL_UNIT_FRIDAY","features":[389]},{"name":"UDAT_REL_UNIT_HOUR","features":[389]},{"name":"UDAT_REL_UNIT_MINUTE","features":[389]},{"name":"UDAT_REL_UNIT_MONDAY","features":[389]},{"name":"UDAT_REL_UNIT_MONTH","features":[389]},{"name":"UDAT_REL_UNIT_QUARTER","features":[389]},{"name":"UDAT_REL_UNIT_SATURDAY","features":[389]},{"name":"UDAT_REL_UNIT_SECOND","features":[389]},{"name":"UDAT_REL_UNIT_SUNDAY","features":[389]},{"name":"UDAT_REL_UNIT_THURSDAY","features":[389]},{"name":"UDAT_REL_UNIT_TUESDAY","features":[389]},{"name":"UDAT_REL_UNIT_WEDNESDAY","features":[389]},{"name":"UDAT_REL_UNIT_WEEK","features":[389]},{"name":"UDAT_REL_UNIT_YEAR","features":[389]},{"name":"UDAT_SECOND","features":[389]},{"name":"UDAT_SECOND_FIELD","features":[389]},{"name":"UDAT_SHORT","features":[389]},{"name":"UDAT_SHORTER_WEEKDAYS","features":[389]},{"name":"UDAT_SHORT_MONTHS","features":[389]},{"name":"UDAT_SHORT_QUARTERS","features":[389]},{"name":"UDAT_SHORT_RELATIVE","features":[389]},{"name":"UDAT_SHORT_WEEKDAYS","features":[389]},{"name":"UDAT_SPECIFIC_TZ","features":[389]},{"name":"UDAT_STANDALONE_DAY_FIELD","features":[389]},{"name":"UDAT_STANDALONE_MONTHS","features":[389]},{"name":"UDAT_STANDALONE_MONTH_FIELD","features":[389]},{"name":"UDAT_STANDALONE_NARROW_MONTHS","features":[389]},{"name":"UDAT_STANDALONE_NARROW_WEEKDAYS","features":[389]},{"name":"UDAT_STANDALONE_QUARTERS","features":[389]},{"name":"UDAT_STANDALONE_QUARTER_FIELD","features":[389]},{"name":"UDAT_STANDALONE_SHORTER_WEEKDAYS","features":[389]},{"name":"UDAT_STANDALONE_SHORT_MONTHS","features":[389]},{"name":"UDAT_STANDALONE_SHORT_QUARTERS","features":[389]},{"name":"UDAT_STANDALONE_SHORT_WEEKDAYS","features":[389]},{"name":"UDAT_STANDALONE_WEEKDAYS","features":[389]},{"name":"UDAT_STYLE_LONG","features":[389]},{"name":"UDAT_STYLE_NARROW","features":[389]},{"name":"UDAT_STYLE_SHORT","features":[389]},{"name":"UDAT_TIMEZONE_FIELD","features":[389]},{"name":"UDAT_TIMEZONE_GENERIC_FIELD","features":[389]},{"name":"UDAT_TIMEZONE_ISO_FIELD","features":[389]},{"name":"UDAT_TIMEZONE_ISO_LOCAL_FIELD","features":[389]},{"name":"UDAT_TIMEZONE_LOCALIZED_GMT_OFFSET_FIELD","features":[389]},{"name":"UDAT_TIMEZONE_RFC_FIELD","features":[389]},{"name":"UDAT_TIMEZONE_SPECIAL_FIELD","features":[389]},{"name":"UDAT_WEEKDAY","features":[389]},{"name":"UDAT_WEEKDAYS","features":[389]},{"name":"UDAT_WEEK_OF_MONTH_FIELD","features":[389]},{"name":"UDAT_WEEK_OF_YEAR_FIELD","features":[389]},{"name":"UDAT_YEAR","features":[389]},{"name":"UDAT_YEAR_ABBR_MONTH","features":[389]},{"name":"UDAT_YEAR_ABBR_MONTH_DAY","features":[389]},{"name":"UDAT_YEAR_ABBR_MONTH_WEEKDAY_DAY","features":[389]},{"name":"UDAT_YEAR_ABBR_QUARTER","features":[389]},{"name":"UDAT_YEAR_FIELD","features":[389]},{"name":"UDAT_YEAR_MONTH","features":[389]},{"name":"UDAT_YEAR_MONTH_DAY","features":[389]},{"name":"UDAT_YEAR_MONTH_WEEKDAY_DAY","features":[389]},{"name":"UDAT_YEAR_NAME_FIELD","features":[389]},{"name":"UDAT_YEAR_NUM_MONTH","features":[389]},{"name":"UDAT_YEAR_NUM_MONTH_DAY","features":[389]},{"name":"UDAT_YEAR_NUM_MONTH_WEEKDAY_DAY","features":[389]},{"name":"UDAT_YEAR_QUARTER","features":[389]},{"name":"UDAT_YEAR_WOY_FIELD","features":[389]},{"name":"UDAT_ZODIAC_NAMES_ABBREVIATED","features":[389]},{"name":"UDAT_ZODIAC_NAMES_NARROW","features":[389]},{"name":"UDAT_ZODIAC_NAMES_WIDE","features":[389]},{"name":"UDISPCTX_CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE","features":[389]},{"name":"UDISPCTX_CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE","features":[389]},{"name":"UDISPCTX_CAPITALIZATION_FOR_STANDALONE","features":[389]},{"name":"UDISPCTX_CAPITALIZATION_FOR_UI_LIST_OR_MENU","features":[389]},{"name":"UDISPCTX_CAPITALIZATION_NONE","features":[389]},{"name":"UDISPCTX_DIALECT_NAMES","features":[389]},{"name":"UDISPCTX_LENGTH_FULL","features":[389]},{"name":"UDISPCTX_LENGTH_SHORT","features":[389]},{"name":"UDISPCTX_NO_SUBSTITUTE","features":[389]},{"name":"UDISPCTX_STANDARD_NAMES","features":[389]},{"name":"UDISPCTX_SUBSTITUTE","features":[389]},{"name":"UDISPCTX_TYPE_CAPITALIZATION","features":[389]},{"name":"UDISPCTX_TYPE_DIALECT_HANDLING","features":[389]},{"name":"UDISPCTX_TYPE_DISPLAY_LENGTH","features":[389]},{"name":"UDISPCTX_TYPE_SUBSTITUTE_HANDLING","features":[389]},{"name":"UDTS_DB2_TIME","features":[389]},{"name":"UDTS_DOTNET_DATE_TIME","features":[389]},{"name":"UDTS_EXCEL_TIME","features":[389]},{"name":"UDTS_ICU4C_TIME","features":[389]},{"name":"UDTS_JAVA_TIME","features":[389]},{"name":"UDTS_MAC_OLD_TIME","features":[389]},{"name":"UDTS_MAC_TIME","features":[389]},{"name":"UDTS_UNIX_MICROSECONDS_TIME","features":[389]},{"name":"UDTS_UNIX_TIME","features":[389]},{"name":"UDTS_WINDOWS_FILE_TIME","features":[389]},{"name":"UDateAbsoluteUnit","features":[389]},{"name":"UDateDirection","features":[389]},{"name":"UDateFormatBooleanAttribute","features":[389]},{"name":"UDateFormatField","features":[389]},{"name":"UDateFormatStyle","features":[389]},{"name":"UDateFormatSymbolType","features":[389]},{"name":"UDateFormatSymbols","features":[389]},{"name":"UDateIntervalFormat","features":[389]},{"name":"UDateRelativeDateTimeFormatterStyle","features":[389]},{"name":"UDateRelativeUnit","features":[389]},{"name":"UDateTimePGDisplayWidth","features":[389]},{"name":"UDateTimePatternConflict","features":[389]},{"name":"UDateTimePatternField","features":[389]},{"name":"UDateTimePatternMatchOptions","features":[389]},{"name":"UDateTimeScale","features":[389]},{"name":"UDecompositionType","features":[389]},{"name":"UDialectHandling","features":[389]},{"name":"UDisplayContext","features":[389]},{"name":"UDisplayContextType","features":[389]},{"name":"UEastAsianWidth","features":[389]},{"name":"UEnumCharNamesFn","features":[389]},{"name":"UEnumeration","features":[389]},{"name":"UErrorCode","features":[389]},{"name":"UFIELD_CATEGORY_DATE","features":[389]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL","features":[389]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL_SPAN","features":[389]},{"name":"UFIELD_CATEGORY_LIST","features":[389]},{"name":"UFIELD_CATEGORY_LIST_SPAN","features":[389]},{"name":"UFIELD_CATEGORY_NUMBER","features":[389]},{"name":"UFIELD_CATEGORY_RELATIVE_DATETIME","features":[389]},{"name":"UFIELD_CATEGORY_UNDEFINED","features":[389]},{"name":"UFMT_ARRAY","features":[389]},{"name":"UFMT_DATE","features":[389]},{"name":"UFMT_DOUBLE","features":[389]},{"name":"UFMT_INT64","features":[389]},{"name":"UFMT_LONG","features":[389]},{"name":"UFMT_OBJECT","features":[389]},{"name":"UFMT_STRING","features":[389]},{"name":"UFieldCategory","features":[389]},{"name":"UFieldPosition","features":[389]},{"name":"UFieldPositionIterator","features":[389]},{"name":"UFormattableType","features":[389]},{"name":"UFormattedDateInterval","features":[389]},{"name":"UFormattedList","features":[389]},{"name":"UFormattedNumber","features":[389]},{"name":"UFormattedNumberRange","features":[389]},{"name":"UFormattedRelativeDateTime","features":[389]},{"name":"UFormattedValue","features":[389]},{"name":"UGENDER_FEMALE","features":[389]},{"name":"UGENDER_MALE","features":[389]},{"name":"UGENDER_OTHER","features":[389]},{"name":"UGender","features":[389]},{"name":"UGenderInfo","features":[389]},{"name":"UGraphemeClusterBreak","features":[389]},{"name":"UHangulSyllableType","features":[389]},{"name":"UHashtable","features":[389]},{"name":"UIDNA","features":[389]},{"name":"UIDNAInfo","features":[389]},{"name":"UIDNA_CHECK_BIDI","features":[389]},{"name":"UIDNA_CHECK_CONTEXTJ","features":[389]},{"name":"UIDNA_CHECK_CONTEXTO","features":[389]},{"name":"UIDNA_DEFAULT","features":[389]},{"name":"UIDNA_ERROR_BIDI","features":[389]},{"name":"UIDNA_ERROR_CONTEXTJ","features":[389]},{"name":"UIDNA_ERROR_CONTEXTO_DIGITS","features":[389]},{"name":"UIDNA_ERROR_CONTEXTO_PUNCTUATION","features":[389]},{"name":"UIDNA_ERROR_DISALLOWED","features":[389]},{"name":"UIDNA_ERROR_DOMAIN_NAME_TOO_LONG","features":[389]},{"name":"UIDNA_ERROR_EMPTY_LABEL","features":[389]},{"name":"UIDNA_ERROR_HYPHEN_3_4","features":[389]},{"name":"UIDNA_ERROR_INVALID_ACE_LABEL","features":[389]},{"name":"UIDNA_ERROR_LABEL_HAS_DOT","features":[389]},{"name":"UIDNA_ERROR_LABEL_TOO_LONG","features":[389]},{"name":"UIDNA_ERROR_LEADING_COMBINING_MARK","features":[389]},{"name":"UIDNA_ERROR_LEADING_HYPHEN","features":[389]},{"name":"UIDNA_ERROR_PUNYCODE","features":[389]},{"name":"UIDNA_ERROR_TRAILING_HYPHEN","features":[389]},{"name":"UIDNA_NONTRANSITIONAL_TO_ASCII","features":[389]},{"name":"UIDNA_NONTRANSITIONAL_TO_UNICODE","features":[389]},{"name":"UIDNA_USE_STD3_RULES","features":[389]},{"name":"UILANGUAGE_ENUMPROCA","features":[303,389]},{"name":"UILANGUAGE_ENUMPROCW","features":[303,389]},{"name":"UITER_CURRENT","features":[389]},{"name":"UITER_LENGTH","features":[389]},{"name":"UITER_LIMIT","features":[389]},{"name":"UITER_START","features":[389]},{"name":"UITER_UNKNOWN_INDEX","features":[389]},{"name":"UITER_ZERO","features":[389]},{"name":"UIndicPositionalCategory","features":[389]},{"name":"UIndicSyllabicCategory","features":[389]},{"name":"UJoiningGroup","features":[389]},{"name":"UJoiningType","features":[389]},{"name":"ULDN_DIALECT_NAMES","features":[389]},{"name":"ULDN_STANDARD_NAMES","features":[389]},{"name":"ULISTFMT_ELEMENT_FIELD","features":[389]},{"name":"ULISTFMT_LITERAL_FIELD","features":[389]},{"name":"ULISTFMT_TYPE_AND","features":[389]},{"name":"ULISTFMT_TYPE_OR","features":[389]},{"name":"ULISTFMT_TYPE_UNITS","features":[389]},{"name":"ULISTFMT_WIDTH_NARROW","features":[389]},{"name":"ULISTFMT_WIDTH_SHORT","features":[389]},{"name":"ULISTFMT_WIDTH_WIDE","features":[389]},{"name":"ULOCDATA_ALT_QUOTATION_END","features":[389]},{"name":"ULOCDATA_ALT_QUOTATION_START","features":[389]},{"name":"ULOCDATA_ES_AUXILIARY","features":[389]},{"name":"ULOCDATA_ES_INDEX","features":[389]},{"name":"ULOCDATA_ES_PUNCTUATION","features":[389]},{"name":"ULOCDATA_ES_STANDARD","features":[389]},{"name":"ULOCDATA_QUOTATION_END","features":[389]},{"name":"ULOCDATA_QUOTATION_START","features":[389]},{"name":"ULOC_ACCEPT_FAILED","features":[389]},{"name":"ULOC_ACCEPT_FALLBACK","features":[389]},{"name":"ULOC_ACCEPT_VALID","features":[389]},{"name":"ULOC_ACTUAL_LOCALE","features":[389]},{"name":"ULOC_AVAILABLE_DEFAULT","features":[389]},{"name":"ULOC_AVAILABLE_ONLY_LEGACY_ALIASES","features":[389]},{"name":"ULOC_AVAILABLE_WITH_LEGACY_ALIASES","features":[389]},{"name":"ULOC_CANADA","features":[389]},{"name":"ULOC_CANADA_FRENCH","features":[389]},{"name":"ULOC_CHINA","features":[389]},{"name":"ULOC_CHINESE","features":[389]},{"name":"ULOC_COUNTRY_CAPACITY","features":[389]},{"name":"ULOC_ENGLISH","features":[389]},{"name":"ULOC_FRANCE","features":[389]},{"name":"ULOC_FRENCH","features":[389]},{"name":"ULOC_FULLNAME_CAPACITY","features":[389]},{"name":"ULOC_GERMAN","features":[389]},{"name":"ULOC_GERMANY","features":[389]},{"name":"ULOC_ITALIAN","features":[389]},{"name":"ULOC_ITALY","features":[389]},{"name":"ULOC_JAPAN","features":[389]},{"name":"ULOC_JAPANESE","features":[389]},{"name":"ULOC_KEYWORDS_CAPACITY","features":[389]},{"name":"ULOC_KEYWORD_AND_VALUES_CAPACITY","features":[389]},{"name":"ULOC_KEYWORD_ASSIGN_UNICODE","features":[389]},{"name":"ULOC_KEYWORD_ITEM_SEPARATOR_UNICODE","features":[389]},{"name":"ULOC_KEYWORD_SEPARATOR_UNICODE","features":[389]},{"name":"ULOC_KOREA","features":[389]},{"name":"ULOC_KOREAN","features":[389]},{"name":"ULOC_LANG_CAPACITY","features":[389]},{"name":"ULOC_LAYOUT_BTT","features":[389]},{"name":"ULOC_LAYOUT_LTR","features":[389]},{"name":"ULOC_LAYOUT_RTL","features":[389]},{"name":"ULOC_LAYOUT_TTB","features":[389]},{"name":"ULOC_LAYOUT_UNKNOWN","features":[389]},{"name":"ULOC_PRC","features":[389]},{"name":"ULOC_SCRIPT_CAPACITY","features":[389]},{"name":"ULOC_SIMPLIFIED_CHINESE","features":[389]},{"name":"ULOC_TAIWAN","features":[389]},{"name":"ULOC_TRADITIONAL_CHINESE","features":[389]},{"name":"ULOC_UK","features":[389]},{"name":"ULOC_US","features":[389]},{"name":"ULOC_VALID_LOCALE","features":[389]},{"name":"ULayoutType","features":[389]},{"name":"ULineBreak","features":[389]},{"name":"ULineBreakTag","features":[389]},{"name":"UListFormatter","features":[389]},{"name":"UListFormatterField","features":[389]},{"name":"UListFormatterType","features":[389]},{"name":"UListFormatterWidth","features":[389]},{"name":"ULocAvailableType","features":[389]},{"name":"ULocDataLocaleType","features":[389]},{"name":"ULocaleData","features":[389]},{"name":"ULocaleDataDelimiterType","features":[389]},{"name":"ULocaleDataExemplarSetType","features":[389]},{"name":"ULocaleDisplayNames","features":[389]},{"name":"UMEASFMT_WIDTH_COUNT","features":[389]},{"name":"UMEASFMT_WIDTH_NARROW","features":[389]},{"name":"UMEASFMT_WIDTH_NUMERIC","features":[389]},{"name":"UMEASFMT_WIDTH_SHORT","features":[389]},{"name":"UMEASFMT_WIDTH_WIDE","features":[389]},{"name":"UMSGPAT_APOS_DOUBLE_OPTIONAL","features":[389]},{"name":"UMSGPAT_APOS_DOUBLE_REQUIRED","features":[389]},{"name":"UMSGPAT_ARG_NAME_NOT_NUMBER","features":[389]},{"name":"UMSGPAT_ARG_NAME_NOT_VALID","features":[389]},{"name":"UMSGPAT_ARG_TYPE_CHOICE","features":[389]},{"name":"UMSGPAT_ARG_TYPE_NONE","features":[389]},{"name":"UMSGPAT_ARG_TYPE_PLURAL","features":[389]},{"name":"UMSGPAT_ARG_TYPE_SELECT","features":[389]},{"name":"UMSGPAT_ARG_TYPE_SELECTORDINAL","features":[389]},{"name":"UMSGPAT_ARG_TYPE_SIMPLE","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_DOUBLE","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_INT","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_LIMIT","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_NAME","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_NUMBER","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_SELECTOR","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_START","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_STYLE","features":[389]},{"name":"UMSGPAT_PART_TYPE_ARG_TYPE","features":[389]},{"name":"UMSGPAT_PART_TYPE_INSERT_CHAR","features":[389]},{"name":"UMSGPAT_PART_TYPE_MSG_LIMIT","features":[389]},{"name":"UMSGPAT_PART_TYPE_MSG_START","features":[389]},{"name":"UMSGPAT_PART_TYPE_REPLACE_NUMBER","features":[389]},{"name":"UMSGPAT_PART_TYPE_SKIP_SYNTAX","features":[389]},{"name":"UMS_SI","features":[389]},{"name":"UMS_UK","features":[389]},{"name":"UMS_US","features":[389]},{"name":"UMeasureFormatWidth","features":[389]},{"name":"UMeasurementSystem","features":[389]},{"name":"UMemAllocFn","features":[389]},{"name":"UMemFreeFn","features":[389]},{"name":"UMemReallocFn","features":[389]},{"name":"UMessagePatternApostropheMode","features":[389]},{"name":"UMessagePatternArgType","features":[389]},{"name":"UMessagePatternPartType","features":[389]},{"name":"UMutableCPTrie","features":[389]},{"name":"UNESCAPE_CHAR_AT","features":[389]},{"name":"UNICODERANGE","features":[389]},{"name":"UNISCRIBE_OPENTYPE","features":[389]},{"name":"UNORM2_COMPOSE","features":[389]},{"name":"UNORM2_COMPOSE_CONTIGUOUS","features":[389]},{"name":"UNORM2_DECOMPOSE","features":[389]},{"name":"UNORM2_FCD","features":[389]},{"name":"UNORM_DEFAULT","features":[389]},{"name":"UNORM_FCD","features":[389]},{"name":"UNORM_INPUT_IS_FCD","features":[389]},{"name":"UNORM_MAYBE","features":[389]},{"name":"UNORM_MODE_COUNT","features":[389]},{"name":"UNORM_NFC","features":[389]},{"name":"UNORM_NFD","features":[389]},{"name":"UNORM_NFKC","features":[389]},{"name":"UNORM_NFKD","features":[389]},{"name":"UNORM_NO","features":[389]},{"name":"UNORM_NONE","features":[389]},{"name":"UNORM_YES","features":[389]},{"name":"UNUM_CASH_CURRENCY","features":[389]},{"name":"UNUM_COMPACT_FIELD","features":[389]},{"name":"UNUM_CURRENCY","features":[389]},{"name":"UNUM_CURRENCY_ACCOUNTING","features":[389]},{"name":"UNUM_CURRENCY_CODE","features":[389]},{"name":"UNUM_CURRENCY_FIELD","features":[389]},{"name":"UNUM_CURRENCY_INSERT","features":[389]},{"name":"UNUM_CURRENCY_ISO","features":[389]},{"name":"UNUM_CURRENCY_MATCH","features":[389]},{"name":"UNUM_CURRENCY_PLURAL","features":[389]},{"name":"UNUM_CURRENCY_SPACING_COUNT","features":[389]},{"name":"UNUM_CURRENCY_STANDARD","features":[389]},{"name":"UNUM_CURRENCY_SURROUNDING_MATCH","features":[389]},{"name":"UNUM_CURRENCY_SYMBOL","features":[389]},{"name":"UNUM_CURRENCY_USAGE","features":[389]},{"name":"UNUM_DECIMAL","features":[389]},{"name":"UNUM_DECIMAL_ALWAYS_SHOWN","features":[389]},{"name":"UNUM_DECIMAL_COMPACT_LONG","features":[389]},{"name":"UNUM_DECIMAL_COMPACT_SHORT","features":[389]},{"name":"UNUM_DECIMAL_SEPARATOR_ALWAYS","features":[389]},{"name":"UNUM_DECIMAL_SEPARATOR_AUTO","features":[389]},{"name":"UNUM_DECIMAL_SEPARATOR_COUNT","features":[389]},{"name":"UNUM_DECIMAL_SEPARATOR_FIELD","features":[389]},{"name":"UNUM_DECIMAL_SEPARATOR_SYMBOL","features":[389]},{"name":"UNUM_DEFAULT","features":[389]},{"name":"UNUM_DEFAULT_RULESET","features":[389]},{"name":"UNUM_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_DURATION","features":[389]},{"name":"UNUM_EIGHT_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_EXPONENTIAL_SYMBOL","features":[389]},{"name":"UNUM_EXPONENT_FIELD","features":[389]},{"name":"UNUM_EXPONENT_MULTIPLICATION_SYMBOL","features":[389]},{"name":"UNUM_EXPONENT_SIGN_FIELD","features":[389]},{"name":"UNUM_EXPONENT_SYMBOL_FIELD","features":[389]},{"name":"UNUM_FIVE_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_FORMAT_ATTRIBUTE_VALUE_HIDDEN","features":[389]},{"name":"UNUM_FORMAT_FAIL_IF_MORE_THAN_MAX_DIGITS","features":[389]},{"name":"UNUM_FORMAT_WIDTH","features":[389]},{"name":"UNUM_FOUR_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_FRACTION_DIGITS","features":[389]},{"name":"UNUM_FRACTION_FIELD","features":[389]},{"name":"UNUM_GROUPING_AUTO","features":[389]},{"name":"UNUM_GROUPING_MIN2","features":[389]},{"name":"UNUM_GROUPING_OFF","features":[389]},{"name":"UNUM_GROUPING_ON_ALIGNED","features":[389]},{"name":"UNUM_GROUPING_SEPARATOR_FIELD","features":[389]},{"name":"UNUM_GROUPING_SEPARATOR_SYMBOL","features":[389]},{"name":"UNUM_GROUPING_SIZE","features":[389]},{"name":"UNUM_GROUPING_THOUSANDS","features":[389]},{"name":"UNUM_GROUPING_USED","features":[389]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY","features":[389]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY_OR_SINGLE_VALUE","features":[389]},{"name":"UNUM_IDENTITY_FALLBACK_RANGE","features":[389]},{"name":"UNUM_IDENTITY_FALLBACK_SINGLE_VALUE","features":[389]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_AFTER_ROUNDING","features":[389]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_BEFORE_ROUNDING","features":[389]},{"name":"UNUM_IDENTITY_RESULT_NOT_EQUAL","features":[389]},{"name":"UNUM_IGNORE","features":[389]},{"name":"UNUM_INFINITY_SYMBOL","features":[389]},{"name":"UNUM_INTEGER_DIGITS","features":[389]},{"name":"UNUM_INTEGER_FIELD","features":[389]},{"name":"UNUM_INTL_CURRENCY_SYMBOL","features":[389]},{"name":"UNUM_LENIENT_PARSE","features":[389]},{"name":"UNUM_LONG","features":[389]},{"name":"UNUM_MAX_FRACTION_DIGITS","features":[389]},{"name":"UNUM_MAX_INTEGER_DIGITS","features":[389]},{"name":"UNUM_MAX_SIGNIFICANT_DIGITS","features":[389]},{"name":"UNUM_MEASURE_UNIT_FIELD","features":[389]},{"name":"UNUM_MINIMUM_GROUPING_DIGITS","features":[389]},{"name":"UNUM_MINUS_SIGN_SYMBOL","features":[389]},{"name":"UNUM_MIN_FRACTION_DIGITS","features":[389]},{"name":"UNUM_MIN_INTEGER_DIGITS","features":[389]},{"name":"UNUM_MIN_SIGNIFICANT_DIGITS","features":[389]},{"name":"UNUM_MONETARY_GROUPING_SEPARATOR_SYMBOL","features":[389]},{"name":"UNUM_MONETARY_SEPARATOR_SYMBOL","features":[389]},{"name":"UNUM_MULTIPLIER","features":[389]},{"name":"UNUM_NAN_SYMBOL","features":[389]},{"name":"UNUM_NEGATIVE_PREFIX","features":[389]},{"name":"UNUM_NEGATIVE_SUFFIX","features":[389]},{"name":"UNUM_NINE_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_NUMBERING_SYSTEM","features":[389]},{"name":"UNUM_ONE_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_ORDINAL","features":[389]},{"name":"UNUM_PADDING_CHARACTER","features":[389]},{"name":"UNUM_PADDING_POSITION","features":[389]},{"name":"UNUM_PAD_AFTER_PREFIX","features":[389]},{"name":"UNUM_PAD_AFTER_SUFFIX","features":[389]},{"name":"UNUM_PAD_BEFORE_PREFIX","features":[389]},{"name":"UNUM_PAD_BEFORE_SUFFIX","features":[389]},{"name":"UNUM_PAD_ESCAPE_SYMBOL","features":[389]},{"name":"UNUM_PARSE_ALL_INPUT","features":[389]},{"name":"UNUM_PARSE_CASE_SENSITIVE","features":[389]},{"name":"UNUM_PARSE_DECIMAL_MARK_REQUIRED","features":[389]},{"name":"UNUM_PARSE_INT_ONLY","features":[389]},{"name":"UNUM_PARSE_NO_EXPONENT","features":[389]},{"name":"UNUM_PATTERN_DECIMAL","features":[389]},{"name":"UNUM_PATTERN_RULEBASED","features":[389]},{"name":"UNUM_PATTERN_SEPARATOR_SYMBOL","features":[389]},{"name":"UNUM_PERCENT","features":[389]},{"name":"UNUM_PERCENT_FIELD","features":[389]},{"name":"UNUM_PERCENT_SYMBOL","features":[389]},{"name":"UNUM_PERMILL_FIELD","features":[389]},{"name":"UNUM_PERMILL_SYMBOL","features":[389]},{"name":"UNUM_PLUS_SIGN_SYMBOL","features":[389]},{"name":"UNUM_POSITIVE_PREFIX","features":[389]},{"name":"UNUM_POSITIVE_SUFFIX","features":[389]},{"name":"UNUM_PUBLIC_RULESETS","features":[389]},{"name":"UNUM_RANGE_COLLAPSE_ALL","features":[389]},{"name":"UNUM_RANGE_COLLAPSE_AUTO","features":[389]},{"name":"UNUM_RANGE_COLLAPSE_NONE","features":[389]},{"name":"UNUM_RANGE_COLLAPSE_UNIT","features":[389]},{"name":"UNUM_ROUNDING_INCREMENT","features":[389]},{"name":"UNUM_ROUNDING_MODE","features":[389]},{"name":"UNUM_ROUND_CEILING","features":[389]},{"name":"UNUM_ROUND_DOWN","features":[389]},{"name":"UNUM_ROUND_FLOOR","features":[389]},{"name":"UNUM_ROUND_HALFDOWN","features":[389]},{"name":"UNUM_ROUND_HALFEVEN","features":[389]},{"name":"UNUM_ROUND_HALFUP","features":[389]},{"name":"UNUM_ROUND_UNNECESSARY","features":[389]},{"name":"UNUM_ROUND_UP","features":[389]},{"name":"UNUM_SCALE","features":[389]},{"name":"UNUM_SCIENTIFIC","features":[389]},{"name":"UNUM_SECONDARY_GROUPING_SIZE","features":[389]},{"name":"UNUM_SEVEN_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_SHORT","features":[389]},{"name":"UNUM_SIGNIFICANT_DIGITS_USED","features":[389]},{"name":"UNUM_SIGNIFICANT_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_SIGN_ACCOUNTING","features":[389]},{"name":"UNUM_SIGN_ACCOUNTING_ALWAYS","features":[389]},{"name":"UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO","features":[389]},{"name":"UNUM_SIGN_ALWAYS","features":[389]},{"name":"UNUM_SIGN_ALWAYS_SHOWN","features":[389]},{"name":"UNUM_SIGN_AUTO","features":[389]},{"name":"UNUM_SIGN_COUNT","features":[389]},{"name":"UNUM_SIGN_EXCEPT_ZERO","features":[389]},{"name":"UNUM_SIGN_FIELD","features":[389]},{"name":"UNUM_SIGN_NEVER","features":[389]},{"name":"UNUM_SIX_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_SPELLOUT","features":[389]},{"name":"UNUM_THREE_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_TWO_DIGIT_SYMBOL","features":[389]},{"name":"UNUM_UNIT_WIDTH_COUNT","features":[389]},{"name":"UNUM_UNIT_WIDTH_FULL_NAME","features":[389]},{"name":"UNUM_UNIT_WIDTH_HIDDEN","features":[389]},{"name":"UNUM_UNIT_WIDTH_ISO_CODE","features":[389]},{"name":"UNUM_UNIT_WIDTH_NARROW","features":[389]},{"name":"UNUM_UNIT_WIDTH_SHORT","features":[389]},{"name":"UNUM_ZERO_DIGIT_SYMBOL","features":[389]},{"name":"UNormalization2Mode","features":[389]},{"name":"UNormalizationCheckResult","features":[389]},{"name":"UNormalizationMode","features":[389]},{"name":"UNormalizer2","features":[389]},{"name":"UNumberCompactStyle","features":[389]},{"name":"UNumberDecimalSeparatorDisplay","features":[389]},{"name":"UNumberFormatAttribute","features":[389]},{"name":"UNumberFormatAttributeValue","features":[389]},{"name":"UNumberFormatFields","features":[389]},{"name":"UNumberFormatPadPosition","features":[389]},{"name":"UNumberFormatRoundingMode","features":[389]},{"name":"UNumberFormatStyle","features":[389]},{"name":"UNumberFormatSymbol","features":[389]},{"name":"UNumberFormatTextAttribute","features":[389]},{"name":"UNumberFormatter","features":[389]},{"name":"UNumberGroupingStrategy","features":[389]},{"name":"UNumberRangeCollapse","features":[389]},{"name":"UNumberRangeIdentityFallback","features":[389]},{"name":"UNumberRangeIdentityResult","features":[389]},{"name":"UNumberSignDisplay","features":[389]},{"name":"UNumberUnitWidth","features":[389]},{"name":"UNumberingSystem","features":[389]},{"name":"UNumericType","features":[389]},{"name":"UPLURAL_TYPE_CARDINAL","features":[389]},{"name":"UPLURAL_TYPE_ORDINAL","features":[389]},{"name":"UParseError","features":[389]},{"name":"UPluralRules","features":[389]},{"name":"UPluralType","features":[389]},{"name":"UProperty","features":[389]},{"name":"UPropertyNameChoice","features":[389]},{"name":"UREGEX_CASE_INSENSITIVE","features":[389]},{"name":"UREGEX_COMMENTS","features":[389]},{"name":"UREGEX_DOTALL","features":[389]},{"name":"UREGEX_ERROR_ON_UNKNOWN_ESCAPES","features":[389]},{"name":"UREGEX_LITERAL","features":[389]},{"name":"UREGEX_MULTILINE","features":[389]},{"name":"UREGEX_UNIX_LINES","features":[389]},{"name":"UREGEX_UWORD","features":[389]},{"name":"URES_ALIAS","features":[389]},{"name":"URES_ARRAY","features":[389]},{"name":"URES_BINARY","features":[389]},{"name":"URES_INT","features":[389]},{"name":"URES_INT_VECTOR","features":[389]},{"name":"URES_NONE","features":[389]},{"name":"URES_STRING","features":[389]},{"name":"URES_TABLE","features":[389]},{"name":"URGN_CONTINENT","features":[389]},{"name":"URGN_DEPRECATED","features":[389]},{"name":"URGN_GROUPING","features":[389]},{"name":"URGN_SUBCONTINENT","features":[389]},{"name":"URGN_TERRITORY","features":[389]},{"name":"URGN_UNKNOWN","features":[389]},{"name":"URGN_WORLD","features":[389]},{"name":"URegexFindProgressCallback","features":[389]},{"name":"URegexMatchCallback","features":[389]},{"name":"URegexpFlag","features":[389]},{"name":"URegion","features":[389]},{"name":"URegionType","features":[389]},{"name":"URegularExpression","features":[389]},{"name":"URelativeDateTimeFormatter","features":[389]},{"name":"URelativeDateTimeFormatterField","features":[389]},{"name":"URelativeDateTimeUnit","features":[389]},{"name":"UReplaceableCallbacks","features":[389]},{"name":"UResType","features":[389]},{"name":"UResourceBundle","features":[389]},{"name":"URestrictionLevel","features":[389]},{"name":"USCRIPT_ADLAM","features":[389]},{"name":"USCRIPT_AFAKA","features":[389]},{"name":"USCRIPT_AHOM","features":[389]},{"name":"USCRIPT_ANATOLIAN_HIEROGLYPHS","features":[389]},{"name":"USCRIPT_ARABIC","features":[389]},{"name":"USCRIPT_ARMENIAN","features":[389]},{"name":"USCRIPT_AVESTAN","features":[389]},{"name":"USCRIPT_BALINESE","features":[389]},{"name":"USCRIPT_BAMUM","features":[389]},{"name":"USCRIPT_BASSA_VAH","features":[389]},{"name":"USCRIPT_BATAK","features":[389]},{"name":"USCRIPT_BENGALI","features":[389]},{"name":"USCRIPT_BHAIKSUKI","features":[389]},{"name":"USCRIPT_BLISSYMBOLS","features":[389]},{"name":"USCRIPT_BOOK_PAHLAVI","features":[389]},{"name":"USCRIPT_BOPOMOFO","features":[389]},{"name":"USCRIPT_BRAHMI","features":[389]},{"name":"USCRIPT_BRAILLE","features":[389]},{"name":"USCRIPT_BUGINESE","features":[389]},{"name":"USCRIPT_BUHID","features":[389]},{"name":"USCRIPT_CANADIAN_ABORIGINAL","features":[389]},{"name":"USCRIPT_CARIAN","features":[389]},{"name":"USCRIPT_CAUCASIAN_ALBANIAN","features":[389]},{"name":"USCRIPT_CHAKMA","features":[389]},{"name":"USCRIPT_CHAM","features":[389]},{"name":"USCRIPT_CHEROKEE","features":[389]},{"name":"USCRIPT_CHORASMIAN","features":[389]},{"name":"USCRIPT_CIRTH","features":[389]},{"name":"USCRIPT_COMMON","features":[389]},{"name":"USCRIPT_COPTIC","features":[389]},{"name":"USCRIPT_CUNEIFORM","features":[389]},{"name":"USCRIPT_CYPRIOT","features":[389]},{"name":"USCRIPT_CYRILLIC","features":[389]},{"name":"USCRIPT_DEMOTIC_EGYPTIAN","features":[389]},{"name":"USCRIPT_DESERET","features":[389]},{"name":"USCRIPT_DEVANAGARI","features":[389]},{"name":"USCRIPT_DIVES_AKURU","features":[389]},{"name":"USCRIPT_DOGRA","features":[389]},{"name":"USCRIPT_DUPLOYAN","features":[389]},{"name":"USCRIPT_EASTERN_SYRIAC","features":[389]},{"name":"USCRIPT_EGYPTIAN_HIEROGLYPHS","features":[389]},{"name":"USCRIPT_ELBASAN","features":[389]},{"name":"USCRIPT_ELYMAIC","features":[389]},{"name":"USCRIPT_ESTRANGELO_SYRIAC","features":[389]},{"name":"USCRIPT_ETHIOPIC","features":[389]},{"name":"USCRIPT_GEORGIAN","features":[389]},{"name":"USCRIPT_GLAGOLITIC","features":[389]},{"name":"USCRIPT_GOTHIC","features":[389]},{"name":"USCRIPT_GRANTHA","features":[389]},{"name":"USCRIPT_GREEK","features":[389]},{"name":"USCRIPT_GUJARATI","features":[389]},{"name":"USCRIPT_GUNJALA_GONDI","features":[389]},{"name":"USCRIPT_GURMUKHI","features":[389]},{"name":"USCRIPT_HAN","features":[389]},{"name":"USCRIPT_HANGUL","features":[389]},{"name":"USCRIPT_HANIFI_ROHINGYA","features":[389]},{"name":"USCRIPT_HANUNOO","features":[389]},{"name":"USCRIPT_HAN_WITH_BOPOMOFO","features":[389]},{"name":"USCRIPT_HARAPPAN_INDUS","features":[389]},{"name":"USCRIPT_HATRAN","features":[389]},{"name":"USCRIPT_HEBREW","features":[389]},{"name":"USCRIPT_HIERATIC_EGYPTIAN","features":[389]},{"name":"USCRIPT_HIRAGANA","features":[389]},{"name":"USCRIPT_IMPERIAL_ARAMAIC","features":[389]},{"name":"USCRIPT_INHERITED","features":[389]},{"name":"USCRIPT_INSCRIPTIONAL_PAHLAVI","features":[389]},{"name":"USCRIPT_INSCRIPTIONAL_PARTHIAN","features":[389]},{"name":"USCRIPT_INVALID_CODE","features":[389]},{"name":"USCRIPT_JAMO","features":[389]},{"name":"USCRIPT_JAPANESE","features":[389]},{"name":"USCRIPT_JAVANESE","features":[389]},{"name":"USCRIPT_JURCHEN","features":[389]},{"name":"USCRIPT_KAITHI","features":[389]},{"name":"USCRIPT_KANNADA","features":[389]},{"name":"USCRIPT_KATAKANA","features":[389]},{"name":"USCRIPT_KATAKANA_OR_HIRAGANA","features":[389]},{"name":"USCRIPT_KAYAH_LI","features":[389]},{"name":"USCRIPT_KHAROSHTHI","features":[389]},{"name":"USCRIPT_KHITAN_SMALL_SCRIPT","features":[389]},{"name":"USCRIPT_KHMER","features":[389]},{"name":"USCRIPT_KHOJKI","features":[389]},{"name":"USCRIPT_KHUDAWADI","features":[389]},{"name":"USCRIPT_KHUTSURI","features":[389]},{"name":"USCRIPT_KOREAN","features":[389]},{"name":"USCRIPT_KPELLE","features":[389]},{"name":"USCRIPT_LANNA","features":[389]},{"name":"USCRIPT_LAO","features":[389]},{"name":"USCRIPT_LATIN","features":[389]},{"name":"USCRIPT_LATIN_FRAKTUR","features":[389]},{"name":"USCRIPT_LATIN_GAELIC","features":[389]},{"name":"USCRIPT_LEPCHA","features":[389]},{"name":"USCRIPT_LIMBU","features":[389]},{"name":"USCRIPT_LINEAR_A","features":[389]},{"name":"USCRIPT_LINEAR_B","features":[389]},{"name":"USCRIPT_LISU","features":[389]},{"name":"USCRIPT_LOMA","features":[389]},{"name":"USCRIPT_LYCIAN","features":[389]},{"name":"USCRIPT_LYDIAN","features":[389]},{"name":"USCRIPT_MAHAJANI","features":[389]},{"name":"USCRIPT_MAKASAR","features":[389]},{"name":"USCRIPT_MALAYALAM","features":[389]},{"name":"USCRIPT_MANDAEAN","features":[389]},{"name":"USCRIPT_MANDAIC","features":[389]},{"name":"USCRIPT_MANICHAEAN","features":[389]},{"name":"USCRIPT_MARCHEN","features":[389]},{"name":"USCRIPT_MASARAM_GONDI","features":[389]},{"name":"USCRIPT_MATHEMATICAL_NOTATION","features":[389]},{"name":"USCRIPT_MAYAN_HIEROGLYPHS","features":[389]},{"name":"USCRIPT_MEDEFAIDRIN","features":[389]},{"name":"USCRIPT_MEITEI_MAYEK","features":[389]},{"name":"USCRIPT_MENDE","features":[389]},{"name":"USCRIPT_MEROITIC","features":[389]},{"name":"USCRIPT_MEROITIC_CURSIVE","features":[389]},{"name":"USCRIPT_MEROITIC_HIEROGLYPHS","features":[389]},{"name":"USCRIPT_MIAO","features":[389]},{"name":"USCRIPT_MODI","features":[389]},{"name":"USCRIPT_MONGOLIAN","features":[389]},{"name":"USCRIPT_MOON","features":[389]},{"name":"USCRIPT_MRO","features":[389]},{"name":"USCRIPT_MULTANI","features":[389]},{"name":"USCRIPT_MYANMAR","features":[389]},{"name":"USCRIPT_NABATAEAN","features":[389]},{"name":"USCRIPT_NAKHI_GEBA","features":[389]},{"name":"USCRIPT_NANDINAGARI","features":[389]},{"name":"USCRIPT_NEWA","features":[389]},{"name":"USCRIPT_NEW_TAI_LUE","features":[389]},{"name":"USCRIPT_NKO","features":[389]},{"name":"USCRIPT_NUSHU","features":[389]},{"name":"USCRIPT_NYIAKENG_PUACHUE_HMONG","features":[389]},{"name":"USCRIPT_OGHAM","features":[389]},{"name":"USCRIPT_OLD_CHURCH_SLAVONIC_CYRILLIC","features":[389]},{"name":"USCRIPT_OLD_HUNGARIAN","features":[389]},{"name":"USCRIPT_OLD_ITALIC","features":[389]},{"name":"USCRIPT_OLD_NORTH_ARABIAN","features":[389]},{"name":"USCRIPT_OLD_PERMIC","features":[389]},{"name":"USCRIPT_OLD_PERSIAN","features":[389]},{"name":"USCRIPT_OLD_SOGDIAN","features":[389]},{"name":"USCRIPT_OLD_SOUTH_ARABIAN","features":[389]},{"name":"USCRIPT_OL_CHIKI","features":[389]},{"name":"USCRIPT_ORIYA","features":[389]},{"name":"USCRIPT_ORKHON","features":[389]},{"name":"USCRIPT_OSAGE","features":[389]},{"name":"USCRIPT_OSMANYA","features":[389]},{"name":"USCRIPT_PAHAWH_HMONG","features":[389]},{"name":"USCRIPT_PALMYRENE","features":[389]},{"name":"USCRIPT_PAU_CIN_HAU","features":[389]},{"name":"USCRIPT_PHAGS_PA","features":[389]},{"name":"USCRIPT_PHOENICIAN","features":[389]},{"name":"USCRIPT_PHONETIC_POLLARD","features":[389]},{"name":"USCRIPT_PSALTER_PAHLAVI","features":[389]},{"name":"USCRIPT_REJANG","features":[389]},{"name":"USCRIPT_RONGORONGO","features":[389]},{"name":"USCRIPT_RUNIC","features":[389]},{"name":"USCRIPT_SAMARITAN","features":[389]},{"name":"USCRIPT_SARATI","features":[389]},{"name":"USCRIPT_SAURASHTRA","features":[389]},{"name":"USCRIPT_SHARADA","features":[389]},{"name":"USCRIPT_SHAVIAN","features":[389]},{"name":"USCRIPT_SIDDHAM","features":[389]},{"name":"USCRIPT_SIGN_WRITING","features":[389]},{"name":"USCRIPT_SIMPLIFIED_HAN","features":[389]},{"name":"USCRIPT_SINDHI","features":[389]},{"name":"USCRIPT_SINHALA","features":[389]},{"name":"USCRIPT_SOGDIAN","features":[389]},{"name":"USCRIPT_SORA_SOMPENG","features":[389]},{"name":"USCRIPT_SOYOMBO","features":[389]},{"name":"USCRIPT_SUNDANESE","features":[389]},{"name":"USCRIPT_SYLOTI_NAGRI","features":[389]},{"name":"USCRIPT_SYMBOLS","features":[389]},{"name":"USCRIPT_SYMBOLS_EMOJI","features":[389]},{"name":"USCRIPT_SYRIAC","features":[389]},{"name":"USCRIPT_TAGALOG","features":[389]},{"name":"USCRIPT_TAGBANWA","features":[389]},{"name":"USCRIPT_TAI_LE","features":[389]},{"name":"USCRIPT_TAI_VIET","features":[389]},{"name":"USCRIPT_TAKRI","features":[389]},{"name":"USCRIPT_TAMIL","features":[389]},{"name":"USCRIPT_TANGUT","features":[389]},{"name":"USCRIPT_TELUGU","features":[389]},{"name":"USCRIPT_TENGWAR","features":[389]},{"name":"USCRIPT_THAANA","features":[389]},{"name":"USCRIPT_THAI","features":[389]},{"name":"USCRIPT_TIBETAN","features":[389]},{"name":"USCRIPT_TIFINAGH","features":[389]},{"name":"USCRIPT_TIRHUTA","features":[389]},{"name":"USCRIPT_TRADITIONAL_HAN","features":[389]},{"name":"USCRIPT_UCAS","features":[389]},{"name":"USCRIPT_UGARITIC","features":[389]},{"name":"USCRIPT_UNKNOWN","features":[389]},{"name":"USCRIPT_UNWRITTEN_LANGUAGES","features":[389]},{"name":"USCRIPT_USAGE_ASPIRATIONAL","features":[389]},{"name":"USCRIPT_USAGE_EXCLUDED","features":[389]},{"name":"USCRIPT_USAGE_LIMITED_USE","features":[389]},{"name":"USCRIPT_USAGE_NOT_ENCODED","features":[389]},{"name":"USCRIPT_USAGE_RECOMMENDED","features":[389]},{"name":"USCRIPT_USAGE_UNKNOWN","features":[389]},{"name":"USCRIPT_VAI","features":[389]},{"name":"USCRIPT_VISIBLE_SPEECH","features":[389]},{"name":"USCRIPT_WANCHO","features":[389]},{"name":"USCRIPT_WARANG_CITI","features":[389]},{"name":"USCRIPT_WESTERN_SYRIAC","features":[389]},{"name":"USCRIPT_WOLEAI","features":[389]},{"name":"USCRIPT_YEZIDI","features":[389]},{"name":"USCRIPT_YI","features":[389]},{"name":"USCRIPT_ZANABAZAR_SQUARE","features":[389]},{"name":"USEARCH_ANY_BASE_WEIGHT_IS_WILDCARD","features":[389]},{"name":"USEARCH_DEFAULT","features":[389]},{"name":"USEARCH_DONE","features":[389]},{"name":"USEARCH_ELEMENT_COMPARISON","features":[389]},{"name":"USEARCH_OFF","features":[389]},{"name":"USEARCH_ON","features":[389]},{"name":"USEARCH_OVERLAP","features":[389]},{"name":"USEARCH_PATTERN_BASE_WEIGHT_IS_WILDCARD","features":[389]},{"name":"USEARCH_STANDARD_ELEMENT_COMPARISON","features":[389]},{"name":"USET_ADD_CASE_MAPPINGS","features":[389]},{"name":"USET_CASE_INSENSITIVE","features":[389]},{"name":"USET_IGNORE_SPACE","features":[389]},{"name":"USET_SERIALIZED_STATIC_ARRAY_CAPACITY","features":[389]},{"name":"USET_SPAN_CONTAINED","features":[389]},{"name":"USET_SPAN_NOT_CONTAINED","features":[389]},{"name":"USET_SPAN_SIMPLE","features":[389]},{"name":"USPOOF_ALL_CHECKS","features":[389]},{"name":"USPOOF_ASCII","features":[389]},{"name":"USPOOF_AUX_INFO","features":[389]},{"name":"USPOOF_CHAR_LIMIT","features":[389]},{"name":"USPOOF_CONFUSABLE","features":[389]},{"name":"USPOOF_HIDDEN_OVERLAY","features":[389]},{"name":"USPOOF_HIGHLY_RESTRICTIVE","features":[389]},{"name":"USPOOF_INVISIBLE","features":[389]},{"name":"USPOOF_MINIMALLY_RESTRICTIVE","features":[389]},{"name":"USPOOF_MIXED_NUMBERS","features":[389]},{"name":"USPOOF_MIXED_SCRIPT_CONFUSABLE","features":[389]},{"name":"USPOOF_MODERATELY_RESTRICTIVE","features":[389]},{"name":"USPOOF_RESTRICTION_LEVEL","features":[389]},{"name":"USPOOF_RESTRICTION_LEVEL_MASK","features":[389]},{"name":"USPOOF_SINGLE_SCRIPT_CONFUSABLE","features":[389]},{"name":"USPOOF_SINGLE_SCRIPT_RESTRICTIVE","features":[389]},{"name":"USPOOF_UNRESTRICTIVE","features":[389]},{"name":"USPOOF_WHOLE_SCRIPT_CONFUSABLE","features":[389]},{"name":"USPREP_ALLOW_UNASSIGNED","features":[389]},{"name":"USPREP_DEFAULT","features":[389]},{"name":"USPREP_RFC3491_NAMEPREP","features":[389]},{"name":"USPREP_RFC3530_NFS4_CIS_PREP","features":[389]},{"name":"USPREP_RFC3530_NFS4_CS_PREP","features":[389]},{"name":"USPREP_RFC3530_NFS4_CS_PREP_CI","features":[389]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_PREFIX","features":[389]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_SUFFIX","features":[389]},{"name":"USPREP_RFC3722_ISCSI","features":[389]},{"name":"USPREP_RFC3920_NODEPREP","features":[389]},{"name":"USPREP_RFC3920_RESOURCEPREP","features":[389]},{"name":"USPREP_RFC4011_MIB","features":[389]},{"name":"USPREP_RFC4013_SASLPREP","features":[389]},{"name":"USPREP_RFC4505_TRACE","features":[389]},{"name":"USPREP_RFC4518_LDAP","features":[389]},{"name":"USPREP_RFC4518_LDAP_CI","features":[389]},{"name":"USP_E_SCRIPT_NOT_IN_FONT","features":[389]},{"name":"USTRINGTRIE_BUILD_FAST","features":[389]},{"name":"USTRINGTRIE_BUILD_SMALL","features":[389]},{"name":"USTRINGTRIE_FINAL_VALUE","features":[389]},{"name":"USTRINGTRIE_INTERMEDIATE_VALUE","features":[389]},{"name":"USTRINGTRIE_NO_MATCH","features":[389]},{"name":"USTRINGTRIE_NO_VALUE","features":[389]},{"name":"UScriptCode","features":[389]},{"name":"UScriptUsage","features":[389]},{"name":"USearch","features":[389]},{"name":"USearchAttribute","features":[389]},{"name":"USearchAttributeValue","features":[389]},{"name":"USentenceBreak","features":[389]},{"name":"USentenceBreakTag","features":[389]},{"name":"USerializedSet","features":[389]},{"name":"USet","features":[389]},{"name":"USetSpanCondition","features":[389]},{"name":"USpoofCheckResult","features":[389]},{"name":"USpoofChecker","features":[389]},{"name":"USpoofChecks","features":[389]},{"name":"UStringCaseMapper","features":[389]},{"name":"UStringPrepProfile","features":[389]},{"name":"UStringPrepProfileType","features":[389]},{"name":"UStringSearch","features":[389]},{"name":"UStringTrieBuildOption","features":[389]},{"name":"UStringTrieResult","features":[389]},{"name":"USystemTimeZoneType","features":[389]},{"name":"UTEXT_MAGIC","features":[389]},{"name":"UTEXT_PROVIDER_HAS_META_DATA","features":[389]},{"name":"UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE","features":[389]},{"name":"UTEXT_PROVIDER_OWNS_TEXT","features":[389]},{"name":"UTEXT_PROVIDER_STABLE_CHUNKS","features":[389]},{"name":"UTEXT_PROVIDER_WRITABLE","features":[389]},{"name":"UTF16_MAX_CHAR_LENGTH","features":[389]},{"name":"UTF32_MAX_CHAR_LENGTH","features":[389]},{"name":"UTF8_ERROR_VALUE_1","features":[389]},{"name":"UTF8_ERROR_VALUE_2","features":[389]},{"name":"UTF8_MAX_CHAR_LENGTH","features":[389]},{"name":"UTF_ERROR_VALUE","features":[389]},{"name":"UTF_MAX_CHAR_LENGTH","features":[389]},{"name":"UTF_SIZE","features":[389]},{"name":"UTRACE_COLLATION_START","features":[389]},{"name":"UTRACE_CONVERSION_START","features":[389]},{"name":"UTRACE_ERROR","features":[389]},{"name":"UTRACE_FUNCTION_START","features":[389]},{"name":"UTRACE_INFO","features":[389]},{"name":"UTRACE_OFF","features":[389]},{"name":"UTRACE_OPEN_CLOSE","features":[389]},{"name":"UTRACE_UCNV_CLONE","features":[389]},{"name":"UTRACE_UCNV_CLOSE","features":[389]},{"name":"UTRACE_UCNV_FLUSH_CACHE","features":[389]},{"name":"UTRACE_UCNV_LOAD","features":[389]},{"name":"UTRACE_UCNV_OPEN","features":[389]},{"name":"UTRACE_UCNV_OPEN_ALGORITHMIC","features":[389]},{"name":"UTRACE_UCNV_OPEN_PACKAGE","features":[389]},{"name":"UTRACE_UCNV_UNLOAD","features":[389]},{"name":"UTRACE_UCOL_CLOSE","features":[389]},{"name":"UTRACE_UCOL_GETLOCALE","features":[389]},{"name":"UTRACE_UCOL_GET_SORTKEY","features":[389]},{"name":"UTRACE_UCOL_NEXTSORTKEYPART","features":[389]},{"name":"UTRACE_UCOL_OPEN","features":[389]},{"name":"UTRACE_UCOL_OPEN_FROM_SHORT_STRING","features":[389]},{"name":"UTRACE_UCOL_STRCOLL","features":[389]},{"name":"UTRACE_UCOL_STRCOLLITER","features":[389]},{"name":"UTRACE_UCOL_STRCOLLUTF8","features":[389]},{"name":"UTRACE_UDATA_BUNDLE","features":[389]},{"name":"UTRACE_UDATA_DATA_FILE","features":[389]},{"name":"UTRACE_UDATA_RESOURCE","features":[389]},{"name":"UTRACE_UDATA_RES_FILE","features":[389]},{"name":"UTRACE_UDATA_START","features":[389]},{"name":"UTRACE_U_CLEANUP","features":[389]},{"name":"UTRACE_U_INIT","features":[389]},{"name":"UTRACE_VERBOSE","features":[389]},{"name":"UTRACE_WARNING","features":[389]},{"name":"UTRANS_FORWARD","features":[389]},{"name":"UTRANS_REVERSE","features":[389]},{"name":"UTSV_EPOCH_OFFSET_VALUE","features":[389]},{"name":"UTSV_FROM_MAX_VALUE","features":[389]},{"name":"UTSV_FROM_MIN_VALUE","features":[389]},{"name":"UTSV_TO_MAX_VALUE","features":[389]},{"name":"UTSV_TO_MIN_VALUE","features":[389]},{"name":"UTSV_UNITS_VALUE","features":[389]},{"name":"UTZFMT_PARSE_OPTION_ALL_STYLES","features":[389]},{"name":"UTZFMT_PARSE_OPTION_NONE","features":[389]},{"name":"UTZFMT_PARSE_OPTION_TZ_DATABASE_ABBREVIATIONS","features":[389]},{"name":"UTZFMT_PAT_COUNT","features":[389]},{"name":"UTZFMT_PAT_NEGATIVE_H","features":[389]},{"name":"UTZFMT_PAT_NEGATIVE_HM","features":[389]},{"name":"UTZFMT_PAT_NEGATIVE_HMS","features":[389]},{"name":"UTZFMT_PAT_POSITIVE_H","features":[389]},{"name":"UTZFMT_PAT_POSITIVE_HM","features":[389]},{"name":"UTZFMT_PAT_POSITIVE_HMS","features":[389]},{"name":"UTZFMT_STYLE_EXEMPLAR_LOCATION","features":[389]},{"name":"UTZFMT_STYLE_GENERIC_LOCATION","features":[389]},{"name":"UTZFMT_STYLE_GENERIC_LONG","features":[389]},{"name":"UTZFMT_STYLE_GENERIC_SHORT","features":[389]},{"name":"UTZFMT_STYLE_ISO_BASIC_FIXED","features":[389]},{"name":"UTZFMT_STYLE_ISO_BASIC_FULL","features":[389]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FIXED","features":[389]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FULL","features":[389]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_SHORT","features":[389]},{"name":"UTZFMT_STYLE_ISO_BASIC_SHORT","features":[389]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FIXED","features":[389]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FULL","features":[389]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FIXED","features":[389]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FULL","features":[389]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT","features":[389]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT_SHORT","features":[389]},{"name":"UTZFMT_STYLE_SPECIFIC_LONG","features":[389]},{"name":"UTZFMT_STYLE_SPECIFIC_SHORT","features":[389]},{"name":"UTZFMT_STYLE_ZONE_ID","features":[389]},{"name":"UTZFMT_STYLE_ZONE_ID_SHORT","features":[389]},{"name":"UTZFMT_TIME_TYPE_DAYLIGHT","features":[389]},{"name":"UTZFMT_TIME_TYPE_STANDARD","features":[389]},{"name":"UTZFMT_TIME_TYPE_UNKNOWN","features":[389]},{"name":"UTZNM_EXEMPLAR_LOCATION","features":[389]},{"name":"UTZNM_LONG_DAYLIGHT","features":[389]},{"name":"UTZNM_LONG_GENERIC","features":[389]},{"name":"UTZNM_LONG_STANDARD","features":[389]},{"name":"UTZNM_SHORT_DAYLIGHT","features":[389]},{"name":"UTZNM_SHORT_GENERIC","features":[389]},{"name":"UTZNM_SHORT_STANDARD","features":[389]},{"name":"UTZNM_UNKNOWN","features":[389]},{"name":"UText","features":[389]},{"name":"UTextAccess","features":[389]},{"name":"UTextClone","features":[389]},{"name":"UTextClose","features":[389]},{"name":"UTextCopy","features":[389]},{"name":"UTextExtract","features":[389]},{"name":"UTextFuncs","features":[389]},{"name":"UTextMapNativeIndexToUTF16","features":[389]},{"name":"UTextMapOffsetToNative","features":[389]},{"name":"UTextNativeLength","features":[389]},{"name":"UTextReplace","features":[389]},{"name":"UTimeScaleValue","features":[389]},{"name":"UTimeZoneFormatGMTOffsetPatternType","features":[389]},{"name":"UTimeZoneFormatParseOption","features":[389]},{"name":"UTimeZoneFormatStyle","features":[389]},{"name":"UTimeZoneFormatTimeType","features":[389]},{"name":"UTimeZoneNameType","features":[389]},{"name":"UTimeZoneTransitionType","features":[389]},{"name":"UTraceData","features":[389]},{"name":"UTraceEntry","features":[389]},{"name":"UTraceExit","features":[389]},{"name":"UTraceFunctionNumber","features":[389]},{"name":"UTraceLevel","features":[389]},{"name":"UTransDirection","features":[389]},{"name":"UTransPosition","features":[389]},{"name":"UVerticalOrientation","features":[389]},{"name":"UWordBreak","features":[389]},{"name":"UWordBreakValues","features":[389]},{"name":"U_ALPHAINDEX_INFLOW","features":[389]},{"name":"U_ALPHAINDEX_NORMAL","features":[389]},{"name":"U_ALPHAINDEX_OVERFLOW","features":[389]},{"name":"U_ALPHAINDEX_UNDERFLOW","features":[389]},{"name":"U_AMBIGUOUS_ALIAS_WARNING","features":[389]},{"name":"U_ARABIC_NUMBER","features":[389]},{"name":"U_ARGUMENT_TYPE_MISMATCH","features":[389]},{"name":"U_ASCII_FAMILY","features":[389]},{"name":"U_BAD_VARIABLE_DEFINITION","features":[389]},{"name":"U_BLOCK_SEPARATOR","features":[389]},{"name":"U_BOUNDARY_NEUTRAL","features":[389]},{"name":"U_BPT_CLOSE","features":[389]},{"name":"U_BPT_NONE","features":[389]},{"name":"U_BPT_OPEN","features":[389]},{"name":"U_BRK_ASSIGN_ERROR","features":[389]},{"name":"U_BRK_ERROR_START","features":[389]},{"name":"U_BRK_HEX_DIGITS_EXPECTED","features":[389]},{"name":"U_BRK_INIT_ERROR","features":[389]},{"name":"U_BRK_INTERNAL_ERROR","features":[389]},{"name":"U_BRK_MALFORMED_RULE_TAG","features":[389]},{"name":"U_BRK_MISMATCHED_PAREN","features":[389]},{"name":"U_BRK_NEW_LINE_IN_QUOTED_STRING","features":[389]},{"name":"U_BRK_RULE_EMPTY_SET","features":[389]},{"name":"U_BRK_RULE_SYNTAX","features":[389]},{"name":"U_BRK_SEMICOLON_EXPECTED","features":[389]},{"name":"U_BRK_UNCLOSED_SET","features":[389]},{"name":"U_BRK_UNDEFINED_VARIABLE","features":[389]},{"name":"U_BRK_UNRECOGNIZED_OPTION","features":[389]},{"name":"U_BRK_VARIABLE_REDFINITION","features":[389]},{"name":"U_BUFFER_OVERFLOW_ERROR","features":[389]},{"name":"U_CE_NOT_FOUND_ERROR","features":[389]},{"name":"U_CHAR16_IS_TYPEDEF","features":[389]},{"name":"U_CHARSET_FAMILY","features":[389]},{"name":"U_CHARSET_IS_UTF8","features":[389]},{"name":"U_CHAR_CATEGORY_COUNT","features":[389]},{"name":"U_CHAR_NAME_ALIAS","features":[389]},{"name":"U_CHECK_DYLOAD","features":[389]},{"name":"U_COLLATOR_VERSION_MISMATCH","features":[389]},{"name":"U_COMBINED_IMPLEMENTATION","features":[389]},{"name":"U_COMBINING_SPACING_MARK","features":[389]},{"name":"U_COMMON_NUMBER_SEPARATOR","features":[389]},{"name":"U_COMPARE_CODE_POINT_ORDER","features":[389]},{"name":"U_COMPARE_IGNORE_CASE","features":[389]},{"name":"U_CONNECTOR_PUNCTUATION","features":[389]},{"name":"U_CONTROL_CHAR","features":[389]},{"name":"U_COPYRIGHT_STRING_LENGTH","features":[389]},{"name":"U_CPLUSPLUS_VERSION","features":[389]},{"name":"U_CURRENCY_SYMBOL","features":[389]},{"name":"U_DASH_PUNCTUATION","features":[389]},{"name":"U_DEBUG","features":[389]},{"name":"U_DECIMAL_DIGIT_NUMBER","features":[389]},{"name":"U_DECIMAL_NUMBER_SYNTAX_ERROR","features":[389]},{"name":"U_DEFAULT_KEYWORD_MISSING","features":[389]},{"name":"U_DEFAULT_SHOW_DRAFT","features":[389]},{"name":"U_DEFINE_FALSE_AND_TRUE","features":[389]},{"name":"U_DIFFERENT_UCA_VERSION","features":[389]},{"name":"U_DIR_NON_SPACING_MARK","features":[389]},{"name":"U_DISABLE_RENAMING","features":[389]},{"name":"U_DT_CANONICAL","features":[389]},{"name":"U_DT_CIRCLE","features":[389]},{"name":"U_DT_COMPAT","features":[389]},{"name":"U_DT_FINAL","features":[389]},{"name":"U_DT_FONT","features":[389]},{"name":"U_DT_FRACTION","features":[389]},{"name":"U_DT_INITIAL","features":[389]},{"name":"U_DT_ISOLATED","features":[389]},{"name":"U_DT_MEDIAL","features":[389]},{"name":"U_DT_NARROW","features":[389]},{"name":"U_DT_NOBREAK","features":[389]},{"name":"U_DT_NONE","features":[389]},{"name":"U_DT_SMALL","features":[389]},{"name":"U_DT_SQUARE","features":[389]},{"name":"U_DT_SUB","features":[389]},{"name":"U_DT_SUPER","features":[389]},{"name":"U_DT_VERTICAL","features":[389]},{"name":"U_DT_WIDE","features":[389]},{"name":"U_DUPLICATE_KEYWORD","features":[389]},{"name":"U_EA_AMBIGUOUS","features":[389]},{"name":"U_EA_FULLWIDTH","features":[389]},{"name":"U_EA_HALFWIDTH","features":[389]},{"name":"U_EA_NARROW","features":[389]},{"name":"U_EA_NEUTRAL","features":[389]},{"name":"U_EA_WIDE","features":[389]},{"name":"U_EBCDIC_FAMILY","features":[389]},{"name":"U_EDITS_NO_RESET","features":[389]},{"name":"U_ENABLE_DYLOAD","features":[389]},{"name":"U_ENABLE_TRACING","features":[389]},{"name":"U_ENCLOSING_MARK","features":[389]},{"name":"U_END_PUNCTUATION","features":[389]},{"name":"U_ENUM_OUT_OF_SYNC_ERROR","features":[389]},{"name":"U_ERROR_WARNING_START","features":[389]},{"name":"U_EUROPEAN_NUMBER","features":[389]},{"name":"U_EUROPEAN_NUMBER_SEPARATOR","features":[389]},{"name":"U_EUROPEAN_NUMBER_TERMINATOR","features":[389]},{"name":"U_EXTENDED_CHAR_NAME","features":[389]},{"name":"U_FILE_ACCESS_ERROR","features":[389]},{"name":"U_FINAL_PUNCTUATION","features":[389]},{"name":"U_FIRST_STRONG_ISOLATE","features":[389]},{"name":"U_FMT_PARSE_ERROR_START","features":[389]},{"name":"U_FOLD_CASE_DEFAULT","features":[389]},{"name":"U_FOLD_CASE_EXCLUDE_SPECIAL_I","features":[389]},{"name":"U_FORMAT_CHAR","features":[389]},{"name":"U_FORMAT_INEXACT_ERROR","features":[389]},{"name":"U_GCB_CONTROL","features":[389]},{"name":"U_GCB_CR","features":[389]},{"name":"U_GCB_EXTEND","features":[389]},{"name":"U_GCB_E_BASE","features":[389]},{"name":"U_GCB_E_BASE_GAZ","features":[389]},{"name":"U_GCB_E_MODIFIER","features":[389]},{"name":"U_GCB_GLUE_AFTER_ZWJ","features":[389]},{"name":"U_GCB_L","features":[389]},{"name":"U_GCB_LF","features":[389]},{"name":"U_GCB_LV","features":[389]},{"name":"U_GCB_LVT","features":[389]},{"name":"U_GCB_OTHER","features":[389]},{"name":"U_GCB_PREPEND","features":[389]},{"name":"U_GCB_REGIONAL_INDICATOR","features":[389]},{"name":"U_GCB_SPACING_MARK","features":[389]},{"name":"U_GCB_T","features":[389]},{"name":"U_GCB_V","features":[389]},{"name":"U_GCB_ZWJ","features":[389]},{"name":"U_GCC_MAJOR_MINOR","features":[389]},{"name":"U_GENERAL_OTHER_TYPES","features":[389]},{"name":"U_HAVE_CHAR16_T","features":[389]},{"name":"U_HAVE_DEBUG_LOCATION_NEW","features":[389]},{"name":"U_HAVE_INTTYPES_H","features":[389]},{"name":"U_HAVE_LIB_SUFFIX","features":[389]},{"name":"U_HAVE_PLACEMENT_NEW","features":[389]},{"name":"U_HAVE_RBNF","features":[389]},{"name":"U_HAVE_RVALUE_REFERENCES","features":[389]},{"name":"U_HAVE_STDINT_H","features":[389]},{"name":"U_HAVE_STD_STRING","features":[389]},{"name":"U_HAVE_WCHAR_H","features":[389]},{"name":"U_HAVE_WCSCPY","features":[389]},{"name":"U_HIDE_DEPRECATED_API","features":[389]},{"name":"U_HIDE_DRAFT_API","features":[389]},{"name":"U_HIDE_INTERNAL_API","features":[389]},{"name":"U_HIDE_OBSOLETE_API","features":[389]},{"name":"U_HIDE_OBSOLETE_UTF_OLD_H","features":[389]},{"name":"U_HST_LEADING_JAMO","features":[389]},{"name":"U_HST_LVT_SYLLABLE","features":[389]},{"name":"U_HST_LV_SYLLABLE","features":[389]},{"name":"U_HST_NOT_APPLICABLE","features":[389]},{"name":"U_HST_TRAILING_JAMO","features":[389]},{"name":"U_HST_VOWEL_JAMO","features":[389]},{"name":"U_ICUDATA_TYPE_LETTER","features":[389]},{"name":"U_ICU_DATA_KEY","features":[389]},{"name":"U_ICU_VERSION_BUNDLE","features":[389]},{"name":"U_IDNA_ACE_PREFIX_ERROR","features":[389]},{"name":"U_IDNA_CHECK_BIDI_ERROR","features":[389]},{"name":"U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR","features":[389]},{"name":"U_IDNA_ERROR_START","features":[389]},{"name":"U_IDNA_LABEL_TOO_LONG_ERROR","features":[389]},{"name":"U_IDNA_PROHIBITED_ERROR","features":[389]},{"name":"U_IDNA_STD3_ASCII_RULES_ERROR","features":[389]},{"name":"U_IDNA_UNASSIGNED_ERROR","features":[389]},{"name":"U_IDNA_VERIFICATION_ERROR","features":[389]},{"name":"U_IDNA_ZERO_LENGTH_LABEL_ERROR","features":[389]},{"name":"U_ILLEGAL_ARGUMENT_ERROR","features":[389]},{"name":"U_ILLEGAL_CHARACTER","features":[389]},{"name":"U_ILLEGAL_CHAR_FOUND","features":[389]},{"name":"U_ILLEGAL_CHAR_IN_SEGMENT","features":[389]},{"name":"U_ILLEGAL_ESCAPE_SEQUENCE","features":[389]},{"name":"U_ILLEGAL_PAD_POSITION","features":[389]},{"name":"U_INDEX_OUTOFBOUNDS_ERROR","features":[389]},{"name":"U_INITIAL_PUNCTUATION","features":[389]},{"name":"U_INPC_BOTTOM","features":[389]},{"name":"U_INPC_BOTTOM_AND_LEFT","features":[389]},{"name":"U_INPC_BOTTOM_AND_RIGHT","features":[389]},{"name":"U_INPC_LEFT","features":[389]},{"name":"U_INPC_LEFT_AND_RIGHT","features":[389]},{"name":"U_INPC_NA","features":[389]},{"name":"U_INPC_OVERSTRUCK","features":[389]},{"name":"U_INPC_RIGHT","features":[389]},{"name":"U_INPC_TOP","features":[389]},{"name":"U_INPC_TOP_AND_BOTTOM","features":[389]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_LEFT","features":[389]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_RIGHT","features":[389]},{"name":"U_INPC_TOP_AND_LEFT","features":[389]},{"name":"U_INPC_TOP_AND_LEFT_AND_RIGHT","features":[389]},{"name":"U_INPC_TOP_AND_RIGHT","features":[389]},{"name":"U_INPC_VISUAL_ORDER_LEFT","features":[389]},{"name":"U_INSC_AVAGRAHA","features":[389]},{"name":"U_INSC_BINDU","features":[389]},{"name":"U_INSC_BRAHMI_JOINING_NUMBER","features":[389]},{"name":"U_INSC_CANTILLATION_MARK","features":[389]},{"name":"U_INSC_CONSONANT","features":[389]},{"name":"U_INSC_CONSONANT_DEAD","features":[389]},{"name":"U_INSC_CONSONANT_FINAL","features":[389]},{"name":"U_INSC_CONSONANT_HEAD_LETTER","features":[389]},{"name":"U_INSC_CONSONANT_INITIAL_POSTFIXED","features":[389]},{"name":"U_INSC_CONSONANT_KILLER","features":[389]},{"name":"U_INSC_CONSONANT_MEDIAL","features":[389]},{"name":"U_INSC_CONSONANT_PLACEHOLDER","features":[389]},{"name":"U_INSC_CONSONANT_PRECEDING_REPHA","features":[389]},{"name":"U_INSC_CONSONANT_PREFIXED","features":[389]},{"name":"U_INSC_CONSONANT_SUBJOINED","features":[389]},{"name":"U_INSC_CONSONANT_SUCCEEDING_REPHA","features":[389]},{"name":"U_INSC_CONSONANT_WITH_STACKER","features":[389]},{"name":"U_INSC_GEMINATION_MARK","features":[389]},{"name":"U_INSC_INVISIBLE_STACKER","features":[389]},{"name":"U_INSC_JOINER","features":[389]},{"name":"U_INSC_MODIFYING_LETTER","features":[389]},{"name":"U_INSC_NON_JOINER","features":[389]},{"name":"U_INSC_NUKTA","features":[389]},{"name":"U_INSC_NUMBER","features":[389]},{"name":"U_INSC_NUMBER_JOINER","features":[389]},{"name":"U_INSC_OTHER","features":[389]},{"name":"U_INSC_PURE_KILLER","features":[389]},{"name":"U_INSC_REGISTER_SHIFTER","features":[389]},{"name":"U_INSC_SYLLABLE_MODIFIER","features":[389]},{"name":"U_INSC_TONE_LETTER","features":[389]},{"name":"U_INSC_TONE_MARK","features":[389]},{"name":"U_INSC_VIRAMA","features":[389]},{"name":"U_INSC_VISARGA","features":[389]},{"name":"U_INSC_VOWEL","features":[389]},{"name":"U_INSC_VOWEL_DEPENDENT","features":[389]},{"name":"U_INSC_VOWEL_INDEPENDENT","features":[389]},{"name":"U_INTERNAL_PROGRAM_ERROR","features":[389]},{"name":"U_INTERNAL_TRANSLITERATOR_ERROR","features":[389]},{"name":"U_INVALID_CHAR_FOUND","features":[389]},{"name":"U_INVALID_FORMAT_ERROR","features":[389]},{"name":"U_INVALID_FUNCTION","features":[389]},{"name":"U_INVALID_ID","features":[389]},{"name":"U_INVALID_PROPERTY_PATTERN","features":[389]},{"name":"U_INVALID_RBT_SYNTAX","features":[389]},{"name":"U_INVALID_STATE_ERROR","features":[389]},{"name":"U_INVALID_TABLE_FILE","features":[389]},{"name":"U_INVALID_TABLE_FORMAT","features":[389]},{"name":"U_INVARIANT_CONVERSION_ERROR","features":[389]},{"name":"U_IOSTREAM_SOURCE","features":[389]},{"name":"U_IS_BIG_ENDIAN","features":[389]},{"name":"U_JG_AFRICAN_FEH","features":[389]},{"name":"U_JG_AFRICAN_NOON","features":[389]},{"name":"U_JG_AFRICAN_QAF","features":[389]},{"name":"U_JG_AIN","features":[389]},{"name":"U_JG_ALAPH","features":[389]},{"name":"U_JG_ALEF","features":[389]},{"name":"U_JG_BEH","features":[389]},{"name":"U_JG_BETH","features":[389]},{"name":"U_JG_BURUSHASKI_YEH_BARREE","features":[389]},{"name":"U_JG_DAL","features":[389]},{"name":"U_JG_DALATH_RISH","features":[389]},{"name":"U_JG_E","features":[389]},{"name":"U_JG_FARSI_YEH","features":[389]},{"name":"U_JG_FE","features":[389]},{"name":"U_JG_FEH","features":[389]},{"name":"U_JG_FINAL_SEMKATH","features":[389]},{"name":"U_JG_GAF","features":[389]},{"name":"U_JG_GAMAL","features":[389]},{"name":"U_JG_HAH","features":[389]},{"name":"U_JG_HAMZA_ON_HEH_GOAL","features":[389]},{"name":"U_JG_HANIFI_ROHINGYA_KINNA_YA","features":[389]},{"name":"U_JG_HANIFI_ROHINGYA_PA","features":[389]},{"name":"U_JG_HE","features":[389]},{"name":"U_JG_HEH","features":[389]},{"name":"U_JG_HEH_GOAL","features":[389]},{"name":"U_JG_HETH","features":[389]},{"name":"U_JG_KAF","features":[389]},{"name":"U_JG_KAPH","features":[389]},{"name":"U_JG_KHAPH","features":[389]},{"name":"U_JG_KNOTTED_HEH","features":[389]},{"name":"U_JG_LAM","features":[389]},{"name":"U_JG_LAMADH","features":[389]},{"name":"U_JG_MALAYALAM_BHA","features":[389]},{"name":"U_JG_MALAYALAM_JA","features":[389]},{"name":"U_JG_MALAYALAM_LLA","features":[389]},{"name":"U_JG_MALAYALAM_LLLA","features":[389]},{"name":"U_JG_MALAYALAM_NGA","features":[389]},{"name":"U_JG_MALAYALAM_NNA","features":[389]},{"name":"U_JG_MALAYALAM_NNNA","features":[389]},{"name":"U_JG_MALAYALAM_NYA","features":[389]},{"name":"U_JG_MALAYALAM_RA","features":[389]},{"name":"U_JG_MALAYALAM_SSA","features":[389]},{"name":"U_JG_MALAYALAM_TTA","features":[389]},{"name":"U_JG_MANICHAEAN_ALEPH","features":[389]},{"name":"U_JG_MANICHAEAN_AYIN","features":[389]},{"name":"U_JG_MANICHAEAN_BETH","features":[389]},{"name":"U_JG_MANICHAEAN_DALETH","features":[389]},{"name":"U_JG_MANICHAEAN_DHAMEDH","features":[389]},{"name":"U_JG_MANICHAEAN_FIVE","features":[389]},{"name":"U_JG_MANICHAEAN_GIMEL","features":[389]},{"name":"U_JG_MANICHAEAN_HETH","features":[389]},{"name":"U_JG_MANICHAEAN_HUNDRED","features":[389]},{"name":"U_JG_MANICHAEAN_KAPH","features":[389]},{"name":"U_JG_MANICHAEAN_LAMEDH","features":[389]},{"name":"U_JG_MANICHAEAN_MEM","features":[389]},{"name":"U_JG_MANICHAEAN_NUN","features":[389]},{"name":"U_JG_MANICHAEAN_ONE","features":[389]},{"name":"U_JG_MANICHAEAN_PE","features":[389]},{"name":"U_JG_MANICHAEAN_QOPH","features":[389]},{"name":"U_JG_MANICHAEAN_RESH","features":[389]},{"name":"U_JG_MANICHAEAN_SADHE","features":[389]},{"name":"U_JG_MANICHAEAN_SAMEKH","features":[389]},{"name":"U_JG_MANICHAEAN_TAW","features":[389]},{"name":"U_JG_MANICHAEAN_TEN","features":[389]},{"name":"U_JG_MANICHAEAN_TETH","features":[389]},{"name":"U_JG_MANICHAEAN_THAMEDH","features":[389]},{"name":"U_JG_MANICHAEAN_TWENTY","features":[389]},{"name":"U_JG_MANICHAEAN_WAW","features":[389]},{"name":"U_JG_MANICHAEAN_YODH","features":[389]},{"name":"U_JG_MANICHAEAN_ZAYIN","features":[389]},{"name":"U_JG_MEEM","features":[389]},{"name":"U_JG_MIM","features":[389]},{"name":"U_JG_NOON","features":[389]},{"name":"U_JG_NO_JOINING_GROUP","features":[389]},{"name":"U_JG_NUN","features":[389]},{"name":"U_JG_NYA","features":[389]},{"name":"U_JG_PE","features":[389]},{"name":"U_JG_QAF","features":[389]},{"name":"U_JG_QAPH","features":[389]},{"name":"U_JG_REH","features":[389]},{"name":"U_JG_REVERSED_PE","features":[389]},{"name":"U_JG_ROHINGYA_YEH","features":[389]},{"name":"U_JG_SAD","features":[389]},{"name":"U_JG_SADHE","features":[389]},{"name":"U_JG_SEEN","features":[389]},{"name":"U_JG_SEMKATH","features":[389]},{"name":"U_JG_SHIN","features":[389]},{"name":"U_JG_STRAIGHT_WAW","features":[389]},{"name":"U_JG_SWASH_KAF","features":[389]},{"name":"U_JG_SYRIAC_WAW","features":[389]},{"name":"U_JG_TAH","features":[389]},{"name":"U_JG_TAW","features":[389]},{"name":"U_JG_TEH_MARBUTA","features":[389]},{"name":"U_JG_TEH_MARBUTA_GOAL","features":[389]},{"name":"U_JG_TETH","features":[389]},{"name":"U_JG_WAW","features":[389]},{"name":"U_JG_YEH","features":[389]},{"name":"U_JG_YEH_BARREE","features":[389]},{"name":"U_JG_YEH_WITH_TAIL","features":[389]},{"name":"U_JG_YUDH","features":[389]},{"name":"U_JG_YUDH_HE","features":[389]},{"name":"U_JG_ZAIN","features":[389]},{"name":"U_JG_ZHAIN","features":[389]},{"name":"U_JT_DUAL_JOINING","features":[389]},{"name":"U_JT_JOIN_CAUSING","features":[389]},{"name":"U_JT_LEFT_JOINING","features":[389]},{"name":"U_JT_NON_JOINING","features":[389]},{"name":"U_JT_RIGHT_JOINING","features":[389]},{"name":"U_JT_TRANSPARENT","features":[389]},{"name":"U_LB_ALPHABETIC","features":[389]},{"name":"U_LB_AMBIGUOUS","features":[389]},{"name":"U_LB_BREAK_AFTER","features":[389]},{"name":"U_LB_BREAK_BEFORE","features":[389]},{"name":"U_LB_BREAK_BOTH","features":[389]},{"name":"U_LB_BREAK_SYMBOLS","features":[389]},{"name":"U_LB_CARRIAGE_RETURN","features":[389]},{"name":"U_LB_CLOSE_PARENTHESIS","features":[389]},{"name":"U_LB_CLOSE_PUNCTUATION","features":[389]},{"name":"U_LB_COMBINING_MARK","features":[389]},{"name":"U_LB_COMPLEX_CONTEXT","features":[389]},{"name":"U_LB_CONDITIONAL_JAPANESE_STARTER","features":[389]},{"name":"U_LB_CONTINGENT_BREAK","features":[389]},{"name":"U_LB_EXCLAMATION","features":[389]},{"name":"U_LB_E_BASE","features":[389]},{"name":"U_LB_E_MODIFIER","features":[389]},{"name":"U_LB_GLUE","features":[389]},{"name":"U_LB_H2","features":[389]},{"name":"U_LB_H3","features":[389]},{"name":"U_LB_HEBREW_LETTER","features":[389]},{"name":"U_LB_HYPHEN","features":[389]},{"name":"U_LB_IDEOGRAPHIC","features":[389]},{"name":"U_LB_INFIX_NUMERIC","features":[389]},{"name":"U_LB_INSEPARABLE","features":[389]},{"name":"U_LB_INSEPERABLE","features":[389]},{"name":"U_LB_JL","features":[389]},{"name":"U_LB_JT","features":[389]},{"name":"U_LB_JV","features":[389]},{"name":"U_LB_LINE_FEED","features":[389]},{"name":"U_LB_MANDATORY_BREAK","features":[389]},{"name":"U_LB_NEXT_LINE","features":[389]},{"name":"U_LB_NONSTARTER","features":[389]},{"name":"U_LB_NUMERIC","features":[389]},{"name":"U_LB_OPEN_PUNCTUATION","features":[389]},{"name":"U_LB_POSTFIX_NUMERIC","features":[389]},{"name":"U_LB_PREFIX_NUMERIC","features":[389]},{"name":"U_LB_QUOTATION","features":[389]},{"name":"U_LB_REGIONAL_INDICATOR","features":[389]},{"name":"U_LB_SPACE","features":[389]},{"name":"U_LB_SURROGATE","features":[389]},{"name":"U_LB_UNKNOWN","features":[389]},{"name":"U_LB_WORD_JOINER","features":[389]},{"name":"U_LB_ZWJ","features":[389]},{"name":"U_LB_ZWSPACE","features":[389]},{"name":"U_LEFT_TO_RIGHT","features":[389]},{"name":"U_LEFT_TO_RIGHT_EMBEDDING","features":[389]},{"name":"U_LEFT_TO_RIGHT_ISOLATE","features":[389]},{"name":"U_LEFT_TO_RIGHT_OVERRIDE","features":[389]},{"name":"U_LETTER_NUMBER","features":[389]},{"name":"U_LIB_SUFFIX_C_NAME_STRING","features":[389]},{"name":"U_LINE_SEPARATOR","features":[389]},{"name":"U_LONG_PROPERTY_NAME","features":[389]},{"name":"U_LOWERCASE_LETTER","features":[389]},{"name":"U_MALFORMED_EXPONENTIAL_PATTERN","features":[389]},{"name":"U_MALFORMED_PRAGMA","features":[389]},{"name":"U_MALFORMED_RULE","features":[389]},{"name":"U_MALFORMED_SET","features":[389]},{"name":"U_MALFORMED_SYMBOL_REFERENCE","features":[389]},{"name":"U_MALFORMED_UNICODE_ESCAPE","features":[389]},{"name":"U_MALFORMED_VARIABLE_DEFINITION","features":[389]},{"name":"U_MALFORMED_VARIABLE_REFERENCE","features":[389]},{"name":"U_MATH_SYMBOL","features":[389]},{"name":"U_MAX_VERSION_LENGTH","features":[389]},{"name":"U_MAX_VERSION_STRING_LENGTH","features":[389]},{"name":"U_MEMORY_ALLOCATION_ERROR","features":[389]},{"name":"U_MESSAGE_PARSE_ERROR","features":[389]},{"name":"U_MILLIS_PER_DAY","features":[389]},{"name":"U_MILLIS_PER_HOUR","features":[389]},{"name":"U_MILLIS_PER_MINUTE","features":[389]},{"name":"U_MILLIS_PER_SECOND","features":[389]},{"name":"U_MISMATCHED_SEGMENT_DELIMITERS","features":[389]},{"name":"U_MISPLACED_ANCHOR_START","features":[389]},{"name":"U_MISPLACED_COMPOUND_FILTER","features":[389]},{"name":"U_MISPLACED_CURSOR_OFFSET","features":[389]},{"name":"U_MISPLACED_QUANTIFIER","features":[389]},{"name":"U_MISSING_OPERATOR","features":[389]},{"name":"U_MISSING_RESOURCE_ERROR","features":[389]},{"name":"U_MISSING_SEGMENT_CLOSE","features":[389]},{"name":"U_MODIFIER_LETTER","features":[389]},{"name":"U_MODIFIER_SYMBOL","features":[389]},{"name":"U_MULTIPLE_ANTE_CONTEXTS","features":[389]},{"name":"U_MULTIPLE_COMPOUND_FILTERS","features":[389]},{"name":"U_MULTIPLE_CURSORS","features":[389]},{"name":"U_MULTIPLE_DECIMAL_SEPARATORS","features":[389]},{"name":"U_MULTIPLE_DECIMAL_SEPERATORS","features":[389]},{"name":"U_MULTIPLE_EXPONENTIAL_SYMBOLS","features":[389]},{"name":"U_MULTIPLE_PAD_SPECIFIERS","features":[389]},{"name":"U_MULTIPLE_PERCENT_SYMBOLS","features":[389]},{"name":"U_MULTIPLE_PERMILL_SYMBOLS","features":[389]},{"name":"U_MULTIPLE_POST_CONTEXTS","features":[389]},{"name":"U_NON_SPACING_MARK","features":[389]},{"name":"U_NO_DEFAULT_INCLUDE_UTF_HEADERS","features":[389]},{"name":"U_NO_SPACE_AVAILABLE","features":[389]},{"name":"U_NO_WRITE_PERMISSION","features":[389]},{"name":"U_NT_DECIMAL","features":[389]},{"name":"U_NT_DIGIT","features":[389]},{"name":"U_NT_NONE","features":[389]},{"name":"U_NT_NUMERIC","features":[389]},{"name":"U_NUMBER_ARG_OUTOFBOUNDS_ERROR","features":[389]},{"name":"U_NUMBER_SKELETON_SYNTAX_ERROR","features":[389]},{"name":"U_OMIT_UNCHANGED_TEXT","features":[389]},{"name":"U_OTHER_LETTER","features":[389]},{"name":"U_OTHER_NEUTRAL","features":[389]},{"name":"U_OTHER_NUMBER","features":[389]},{"name":"U_OTHER_PUNCTUATION","features":[389]},{"name":"U_OTHER_SYMBOL","features":[389]},{"name":"U_OVERRIDE_CXX_ALLOCATION","features":[389]},{"name":"U_PARAGRAPH_SEPARATOR","features":[389]},{"name":"U_PARSE_CONTEXT_LEN","features":[389]},{"name":"U_PARSE_ERROR","features":[389]},{"name":"U_PARSE_ERROR_START","features":[389]},{"name":"U_PATTERN_SYNTAX_ERROR","features":[389]},{"name":"U_PF_AIX","features":[389]},{"name":"U_PF_ANDROID","features":[389]},{"name":"U_PF_BROWSER_NATIVE_CLIENT","features":[389]},{"name":"U_PF_BSD","features":[389]},{"name":"U_PF_CYGWIN","features":[389]},{"name":"U_PF_DARWIN","features":[389]},{"name":"U_PF_EMSCRIPTEN","features":[389]},{"name":"U_PF_FUCHSIA","features":[389]},{"name":"U_PF_HPUX","features":[389]},{"name":"U_PF_IPHONE","features":[389]},{"name":"U_PF_IRIX","features":[389]},{"name":"U_PF_LINUX","features":[389]},{"name":"U_PF_MINGW","features":[389]},{"name":"U_PF_OS390","features":[389]},{"name":"U_PF_OS400","features":[389]},{"name":"U_PF_QNX","features":[389]},{"name":"U_PF_SOLARIS","features":[389]},{"name":"U_PF_UNKNOWN","features":[389]},{"name":"U_PF_WINDOWS","features":[389]},{"name":"U_PLATFORM","features":[389]},{"name":"U_PLATFORM_HAS_WIN32_API","features":[389]},{"name":"U_PLATFORM_HAS_WINUWP_API","features":[389]},{"name":"U_PLATFORM_IMPLEMENTS_POSIX","features":[389]},{"name":"U_PLATFORM_IS_DARWIN_BASED","features":[389]},{"name":"U_PLATFORM_IS_LINUX_BASED","features":[389]},{"name":"U_PLATFORM_USES_ONLY_WIN32_API","features":[389]},{"name":"U_PLUGIN_CHANGED_LEVEL_WARNING","features":[389]},{"name":"U_PLUGIN_DIDNT_SET_LEVEL","features":[389]},{"name":"U_PLUGIN_ERROR_START","features":[389]},{"name":"U_PLUGIN_TOO_HIGH","features":[389]},{"name":"U_POP_DIRECTIONAL_FORMAT","features":[389]},{"name":"U_POP_DIRECTIONAL_ISOLATE","features":[389]},{"name":"U_PRIMARY_TOO_LONG_ERROR","features":[389]},{"name":"U_PRIVATE_USE_CHAR","features":[389]},{"name":"U_REGEX_BAD_ESCAPE_SEQUENCE","features":[389]},{"name":"U_REGEX_BAD_INTERVAL","features":[389]},{"name":"U_REGEX_ERROR_START","features":[389]},{"name":"U_REGEX_INTERNAL_ERROR","features":[389]},{"name":"U_REGEX_INVALID_BACK_REF","features":[389]},{"name":"U_REGEX_INVALID_CAPTURE_GROUP_NAME","features":[389]},{"name":"U_REGEX_INVALID_FLAG","features":[389]},{"name":"U_REGEX_INVALID_RANGE","features":[389]},{"name":"U_REGEX_INVALID_STATE","features":[389]},{"name":"U_REGEX_LOOK_BEHIND_LIMIT","features":[389]},{"name":"U_REGEX_MAX_LT_MIN","features":[389]},{"name":"U_REGEX_MISMATCHED_PAREN","features":[389]},{"name":"U_REGEX_MISSING_CLOSE_BRACKET","features":[389]},{"name":"U_REGEX_NUMBER_TOO_BIG","features":[389]},{"name":"U_REGEX_PATTERN_TOO_BIG","features":[389]},{"name":"U_REGEX_PROPERTY_SYNTAX","features":[389]},{"name":"U_REGEX_RULE_SYNTAX","features":[389]},{"name":"U_REGEX_SET_CONTAINS_STRING","features":[389]},{"name":"U_REGEX_STACK_OVERFLOW","features":[389]},{"name":"U_REGEX_STOPPED_BY_CALLER","features":[389]},{"name":"U_REGEX_TIME_OUT","features":[389]},{"name":"U_REGEX_UNIMPLEMENTED","features":[389]},{"name":"U_RESOURCE_TYPE_MISMATCH","features":[389]},{"name":"U_RIGHT_TO_LEFT","features":[389]},{"name":"U_RIGHT_TO_LEFT_ARABIC","features":[389]},{"name":"U_RIGHT_TO_LEFT_EMBEDDING","features":[389]},{"name":"U_RIGHT_TO_LEFT_ISOLATE","features":[389]},{"name":"U_RIGHT_TO_LEFT_OVERRIDE","features":[389]},{"name":"U_RULE_MASK_ERROR","features":[389]},{"name":"U_SAFECLONE_ALLOCATED_WARNING","features":[389]},{"name":"U_SB_ATERM","features":[389]},{"name":"U_SB_CLOSE","features":[389]},{"name":"U_SB_CR","features":[389]},{"name":"U_SB_EXTEND","features":[389]},{"name":"U_SB_FORMAT","features":[389]},{"name":"U_SB_LF","features":[389]},{"name":"U_SB_LOWER","features":[389]},{"name":"U_SB_NUMERIC","features":[389]},{"name":"U_SB_OLETTER","features":[389]},{"name":"U_SB_OTHER","features":[389]},{"name":"U_SB_SCONTINUE","features":[389]},{"name":"U_SB_SEP","features":[389]},{"name":"U_SB_SP","features":[389]},{"name":"U_SB_STERM","features":[389]},{"name":"U_SB_UPPER","features":[389]},{"name":"U_SEGMENT_SEPARATOR","features":[389]},{"name":"U_SENTINEL","features":[389]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL","features":[389]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_MASK","features":[389]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_NOOP","features":[389]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_AL","features":[389]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_LR","features":[389]},{"name":"U_SHAPE_DIGITS_AN2EN","features":[389]},{"name":"U_SHAPE_DIGITS_EN2AN","features":[389]},{"name":"U_SHAPE_DIGITS_MASK","features":[389]},{"name":"U_SHAPE_DIGITS_NOOP","features":[389]},{"name":"U_SHAPE_DIGITS_RESERVED","features":[389]},{"name":"U_SHAPE_DIGIT_TYPE_AN","features":[389]},{"name":"U_SHAPE_DIGIT_TYPE_AN_EXTENDED","features":[389]},{"name":"U_SHAPE_DIGIT_TYPE_MASK","features":[389]},{"name":"U_SHAPE_DIGIT_TYPE_RESERVED","features":[389]},{"name":"U_SHAPE_LAMALEF_AUTO","features":[389]},{"name":"U_SHAPE_LAMALEF_BEGIN","features":[389]},{"name":"U_SHAPE_LAMALEF_END","features":[389]},{"name":"U_SHAPE_LAMALEF_MASK","features":[389]},{"name":"U_SHAPE_LAMALEF_NEAR","features":[389]},{"name":"U_SHAPE_LAMALEF_RESIZE","features":[389]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_BEGINNING","features":[389]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_END","features":[389]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_NEAR","features":[389]},{"name":"U_SHAPE_LENGTH_GROW_SHRINK","features":[389]},{"name":"U_SHAPE_LENGTH_MASK","features":[389]},{"name":"U_SHAPE_LETTERS_MASK","features":[389]},{"name":"U_SHAPE_LETTERS_NOOP","features":[389]},{"name":"U_SHAPE_LETTERS_SHAPE","features":[389]},{"name":"U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED","features":[389]},{"name":"U_SHAPE_LETTERS_UNSHAPE","features":[389]},{"name":"U_SHAPE_PRESERVE_PRESENTATION","features":[389]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_MASK","features":[389]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_NOOP","features":[389]},{"name":"U_SHAPE_SEEN_MASK","features":[389]},{"name":"U_SHAPE_SEEN_TWOCELL_NEAR","features":[389]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_BEGIN_END","features":[389]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_MASK","features":[389]},{"name":"U_SHAPE_TAIL_NEW_UNICODE","features":[389]},{"name":"U_SHAPE_TAIL_TYPE_MASK","features":[389]},{"name":"U_SHAPE_TASHKEEL_BEGIN","features":[389]},{"name":"U_SHAPE_TASHKEEL_END","features":[389]},{"name":"U_SHAPE_TASHKEEL_MASK","features":[389]},{"name":"U_SHAPE_TASHKEEL_REPLACE_BY_TATWEEL","features":[389]},{"name":"U_SHAPE_TASHKEEL_RESIZE","features":[389]},{"name":"U_SHAPE_TEXT_DIRECTION_LOGICAL","features":[389]},{"name":"U_SHAPE_TEXT_DIRECTION_MASK","features":[389]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_LTR","features":[389]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_RTL","features":[389]},{"name":"U_SHAPE_YEHHAMZA_MASK","features":[389]},{"name":"U_SHAPE_YEHHAMZA_TWOCELL_NEAR","features":[389]},{"name":"U_SHORT_PROPERTY_NAME","features":[389]},{"name":"U_SHOW_CPLUSPLUS_API","features":[389]},{"name":"U_SIZEOF_UCHAR","features":[389]},{"name":"U_SIZEOF_WCHAR_T","features":[389]},{"name":"U_SORT_KEY_TOO_SHORT_WARNING","features":[389]},{"name":"U_SPACE_SEPARATOR","features":[389]},{"name":"U_START_PUNCTUATION","features":[389]},{"name":"U_STATE_OLD_WARNING","features":[389]},{"name":"U_STATE_TOO_OLD_ERROR","features":[389]},{"name":"U_STRINGPREP_CHECK_BIDI_ERROR","features":[389]},{"name":"U_STRINGPREP_PROHIBITED_ERROR","features":[389]},{"name":"U_STRINGPREP_UNASSIGNED_ERROR","features":[389]},{"name":"U_STRING_NOT_TERMINATED_WARNING","features":[389]},{"name":"U_SURROGATE","features":[389]},{"name":"U_TITLECASE_ADJUST_TO_CASED","features":[389]},{"name":"U_TITLECASE_LETTER","features":[389]},{"name":"U_TITLECASE_NO_BREAK_ADJUSTMENT","features":[389]},{"name":"U_TITLECASE_NO_LOWERCASE","features":[389]},{"name":"U_TITLECASE_SENTENCES","features":[389]},{"name":"U_TITLECASE_WHOLE_STRING","features":[389]},{"name":"U_TOO_MANY_ALIASES_ERROR","features":[389]},{"name":"U_TRAILING_BACKSLASH","features":[389]},{"name":"U_TRUNCATED_CHAR_FOUND","features":[389]},{"name":"U_UNASSIGNED","features":[389]},{"name":"U_UNCLOSED_SEGMENT","features":[389]},{"name":"U_UNDEFINED_KEYWORD","features":[389]},{"name":"U_UNDEFINED_SEGMENT_REFERENCE","features":[389]},{"name":"U_UNDEFINED_VARIABLE","features":[389]},{"name":"U_UNEXPECTED_TOKEN","features":[389]},{"name":"U_UNICODE_CHAR_NAME","features":[389]},{"name":"U_UNICODE_VERSION","features":[389]},{"name":"U_UNMATCHED_BRACES","features":[389]},{"name":"U_UNQUOTED_SPECIAL","features":[389]},{"name":"U_UNSUPPORTED_ATTRIBUTE","features":[389]},{"name":"U_UNSUPPORTED_ERROR","features":[389]},{"name":"U_UNSUPPORTED_ESCAPE_SEQUENCE","features":[389]},{"name":"U_UNSUPPORTED_PROPERTY","features":[389]},{"name":"U_UNTERMINATED_QUOTE","features":[389]},{"name":"U_UPPERCASE_LETTER","features":[389]},{"name":"U_USELESS_COLLATOR_ERROR","features":[389]},{"name":"U_USING_DEFAULT_WARNING","features":[389]},{"name":"U_USING_FALLBACK_WARNING","features":[389]},{"name":"U_USING_ICU_NAMESPACE","features":[389]},{"name":"U_VARIABLE_RANGE_EXHAUSTED","features":[389]},{"name":"U_VARIABLE_RANGE_OVERLAP","features":[389]},{"name":"U_VO_ROTATED","features":[389]},{"name":"U_VO_TRANSFORMED_ROTATED","features":[389]},{"name":"U_VO_TRANSFORMED_UPRIGHT","features":[389]},{"name":"U_VO_UPRIGHT","features":[389]},{"name":"U_WB_ALETTER","features":[389]},{"name":"U_WB_CR","features":[389]},{"name":"U_WB_DOUBLE_QUOTE","features":[389]},{"name":"U_WB_EXTEND","features":[389]},{"name":"U_WB_EXTENDNUMLET","features":[389]},{"name":"U_WB_E_BASE","features":[389]},{"name":"U_WB_E_BASE_GAZ","features":[389]},{"name":"U_WB_E_MODIFIER","features":[389]},{"name":"U_WB_FORMAT","features":[389]},{"name":"U_WB_GLUE_AFTER_ZWJ","features":[389]},{"name":"U_WB_HEBREW_LETTER","features":[389]},{"name":"U_WB_KATAKANA","features":[389]},{"name":"U_WB_LF","features":[389]},{"name":"U_WB_MIDLETTER","features":[389]},{"name":"U_WB_MIDNUM","features":[389]},{"name":"U_WB_MIDNUMLET","features":[389]},{"name":"U_WB_NEWLINE","features":[389]},{"name":"U_WB_NUMERIC","features":[389]},{"name":"U_WB_OTHER","features":[389]},{"name":"U_WB_REGIONAL_INDICATOR","features":[389]},{"name":"U_WB_SINGLE_QUOTE","features":[389]},{"name":"U_WB_WSEGSPACE","features":[389]},{"name":"U_WB_ZWJ","features":[389]},{"name":"U_WHITE_SPACE_NEUTRAL","features":[389]},{"name":"U_ZERO_ERROR","features":[389]},{"name":"UpdateCalendarDayOfWeek","features":[303,389]},{"name":"VS_ALLOW_LATIN","features":[389]},{"name":"VerifyScripts","features":[303,389]},{"name":"WC_COMPOSITECHECK","features":[389]},{"name":"WC_DEFAULTCHAR","features":[389]},{"name":"WC_DISCARDNS","features":[389]},{"name":"WC_ERR_INVALID_CHARS","features":[389]},{"name":"WC_NO_BEST_FIT_CHARS","features":[389]},{"name":"WC_SEPCHARS","features":[389]},{"name":"WORDLIST_TYPE","features":[389]},{"name":"WORDLIST_TYPE_ADD","features":[389]},{"name":"WORDLIST_TYPE_AUTOCORRECT","features":[389]},{"name":"WORDLIST_TYPE_EXCLUDE","features":[389]},{"name":"WORDLIST_TYPE_IGNORE","features":[389]},{"name":"WeekUnit","features":[389]},{"name":"WideCharToMultiByte","features":[303,389]},{"name":"YearUnit","features":[389]},{"name":"lstrcatA","features":[389]},{"name":"lstrcatW","features":[389]},{"name":"lstrcmpA","features":[389]},{"name":"lstrcmpW","features":[389]},{"name":"lstrcmpiA","features":[389]},{"name":"lstrcmpiW","features":[389]},{"name":"lstrcpyA","features":[389]},{"name":"lstrcpyW","features":[389]},{"name":"lstrcpynA","features":[389]},{"name":"lstrcpynW","features":[389]},{"name":"lstrlenA","features":[389]},{"name":"lstrlenW","features":[389]},{"name":"sidArabic","features":[389]},{"name":"sidArmenian","features":[389]},{"name":"sidAsciiLatin","features":[389]},{"name":"sidAsciiSym","features":[389]},{"name":"sidBengali","features":[389]},{"name":"sidBopomofo","features":[389]},{"name":"sidBraille","features":[389]},{"name":"sidBurmese","features":[389]},{"name":"sidCanSyllabic","features":[389]},{"name":"sidCherokee","features":[389]},{"name":"sidCyrillic","features":[389]},{"name":"sidDefault","features":[389]},{"name":"sidDevanagari","features":[389]},{"name":"sidEthiopic","features":[389]},{"name":"sidFEFirst","features":[389]},{"name":"sidFELast","features":[389]},{"name":"sidGeorgian","features":[389]},{"name":"sidGreek","features":[389]},{"name":"sidGujarati","features":[389]},{"name":"sidGurmukhi","features":[389]},{"name":"sidHan","features":[389]},{"name":"sidHangul","features":[389]},{"name":"sidHebrew","features":[389]},{"name":"sidKana","features":[389]},{"name":"sidKannada","features":[389]},{"name":"sidKhmer","features":[389]},{"name":"sidLao","features":[389]},{"name":"sidLatin","features":[389]},{"name":"sidLim","features":[389]},{"name":"sidMalayalam","features":[389]},{"name":"sidMerge","features":[389]},{"name":"sidMongolian","features":[389]},{"name":"sidOgham","features":[389]},{"name":"sidOriya","features":[389]},{"name":"sidRunic","features":[389]},{"name":"sidSinhala","features":[389]},{"name":"sidSyriac","features":[389]},{"name":"sidTamil","features":[389]},{"name":"sidTelugu","features":[389]},{"name":"sidThaana","features":[389]},{"name":"sidThai","features":[389]},{"name":"sidTibetan","features":[389]},{"name":"sidUserDefined","features":[389]},{"name":"sidYi","features":[389]},{"name":"u_UCharsToChars","features":[389]},{"name":"u_austrcpy","features":[389]},{"name":"u_austrncpy","features":[389]},{"name":"u_catclose","features":[389]},{"name":"u_catgets","features":[389]},{"name":"u_catopen","features":[389]},{"name":"u_charAge","features":[389]},{"name":"u_charDigitValue","features":[389]},{"name":"u_charDirection","features":[389]},{"name":"u_charFromName","features":[389]},{"name":"u_charMirror","features":[389]},{"name":"u_charName","features":[389]},{"name":"u_charType","features":[389]},{"name":"u_charsToUChars","features":[389]},{"name":"u_cleanup","features":[389]},{"name":"u_countChar32","features":[389]},{"name":"u_digit","features":[389]},{"name":"u_enumCharNames","features":[389]},{"name":"u_enumCharTypes","features":[389]},{"name":"u_errorName","features":[389]},{"name":"u_foldCase","features":[389]},{"name":"u_forDigit","features":[389]},{"name":"u_formatMessage","features":[389]},{"name":"u_formatMessageWithError","features":[389]},{"name":"u_getBidiPairedBracket","features":[389]},{"name":"u_getBinaryPropertySet","features":[389]},{"name":"u_getCombiningClass","features":[389]},{"name":"u_getDataVersion","features":[389]},{"name":"u_getFC_NFKC_Closure","features":[389]},{"name":"u_getIntPropertyMap","features":[389]},{"name":"u_getIntPropertyMaxValue","features":[389]},{"name":"u_getIntPropertyMinValue","features":[389]},{"name":"u_getIntPropertyValue","features":[389]},{"name":"u_getNumericValue","features":[389]},{"name":"u_getPropertyEnum","features":[389]},{"name":"u_getPropertyName","features":[389]},{"name":"u_getPropertyValueEnum","features":[389]},{"name":"u_getPropertyValueName","features":[389]},{"name":"u_getUnicodeVersion","features":[389]},{"name":"u_getVersion","features":[389]},{"name":"u_hasBinaryProperty","features":[389]},{"name":"u_init","features":[389]},{"name":"u_isIDIgnorable","features":[389]},{"name":"u_isIDPart","features":[389]},{"name":"u_isIDStart","features":[389]},{"name":"u_isISOControl","features":[389]},{"name":"u_isJavaIDPart","features":[389]},{"name":"u_isJavaIDStart","features":[389]},{"name":"u_isJavaSpaceChar","features":[389]},{"name":"u_isMirrored","features":[389]},{"name":"u_isUAlphabetic","features":[389]},{"name":"u_isULowercase","features":[389]},{"name":"u_isUUppercase","features":[389]},{"name":"u_isUWhiteSpace","features":[389]},{"name":"u_isWhitespace","features":[389]},{"name":"u_isalnum","features":[389]},{"name":"u_isalpha","features":[389]},{"name":"u_isbase","features":[389]},{"name":"u_isblank","features":[389]},{"name":"u_iscntrl","features":[389]},{"name":"u_isdefined","features":[389]},{"name":"u_isdigit","features":[389]},{"name":"u_isgraph","features":[389]},{"name":"u_islower","features":[389]},{"name":"u_isprint","features":[389]},{"name":"u_ispunct","features":[389]},{"name":"u_isspace","features":[389]},{"name":"u_istitle","features":[389]},{"name":"u_isupper","features":[389]},{"name":"u_isxdigit","features":[389]},{"name":"u_memcasecmp","features":[389]},{"name":"u_memchr","features":[389]},{"name":"u_memchr32","features":[389]},{"name":"u_memcmp","features":[389]},{"name":"u_memcmpCodePointOrder","features":[389]},{"name":"u_memcpy","features":[389]},{"name":"u_memmove","features":[389]},{"name":"u_memrchr","features":[389]},{"name":"u_memrchr32","features":[389]},{"name":"u_memset","features":[389]},{"name":"u_parseMessage","features":[389]},{"name":"u_parseMessageWithError","features":[389]},{"name":"u_setMemoryFunctions","features":[389]},{"name":"u_shapeArabic","features":[389]},{"name":"u_strCaseCompare","features":[389]},{"name":"u_strCompare","features":[389]},{"name":"u_strCompareIter","features":[389]},{"name":"u_strFindFirst","features":[389]},{"name":"u_strFindLast","features":[389]},{"name":"u_strFoldCase","features":[389]},{"name":"u_strFromJavaModifiedUTF8WithSub","features":[389]},{"name":"u_strFromUTF32","features":[389]},{"name":"u_strFromUTF32WithSub","features":[389]},{"name":"u_strFromUTF8","features":[389]},{"name":"u_strFromUTF8Lenient","features":[389]},{"name":"u_strFromUTF8WithSub","features":[389]},{"name":"u_strFromWCS","features":[389]},{"name":"u_strHasMoreChar32Than","features":[389]},{"name":"u_strToJavaModifiedUTF8","features":[389]},{"name":"u_strToLower","features":[389]},{"name":"u_strToTitle","features":[389]},{"name":"u_strToUTF32","features":[389]},{"name":"u_strToUTF32WithSub","features":[389]},{"name":"u_strToUTF8","features":[389]},{"name":"u_strToUTF8WithSub","features":[389]},{"name":"u_strToUpper","features":[389]},{"name":"u_strToWCS","features":[389]},{"name":"u_strcasecmp","features":[389]},{"name":"u_strcat","features":[389]},{"name":"u_strchr","features":[389]},{"name":"u_strchr32","features":[389]},{"name":"u_strcmp","features":[389]},{"name":"u_strcmpCodePointOrder","features":[389]},{"name":"u_strcpy","features":[389]},{"name":"u_strcspn","features":[389]},{"name":"u_strlen","features":[389]},{"name":"u_strncasecmp","features":[389]},{"name":"u_strncat","features":[389]},{"name":"u_strncmp","features":[389]},{"name":"u_strncmpCodePointOrder","features":[389]},{"name":"u_strncpy","features":[389]},{"name":"u_strpbrk","features":[389]},{"name":"u_strrchr","features":[389]},{"name":"u_strrchr32","features":[389]},{"name":"u_strrstr","features":[389]},{"name":"u_strspn","features":[389]},{"name":"u_strstr","features":[389]},{"name":"u_strtok_r","features":[389]},{"name":"u_tolower","features":[389]},{"name":"u_totitle","features":[389]},{"name":"u_toupper","features":[389]},{"name":"u_uastrcpy","features":[389]},{"name":"u_uastrncpy","features":[389]},{"name":"u_unescape","features":[389]},{"name":"u_unescapeAt","features":[389]},{"name":"u_versionFromString","features":[389]},{"name":"u_versionFromUString","features":[389]},{"name":"u_versionToString","features":[389]},{"name":"u_vformatMessage","features":[389]},{"name":"u_vformatMessageWithError","features":[389]},{"name":"u_vparseMessage","features":[389]},{"name":"u_vparseMessageWithError","features":[389]},{"name":"ubidi_close","features":[389]},{"name":"ubidi_countParagraphs","features":[389]},{"name":"ubidi_countRuns","features":[389]},{"name":"ubidi_getBaseDirection","features":[389]},{"name":"ubidi_getClassCallback","features":[389]},{"name":"ubidi_getCustomizedClass","features":[389]},{"name":"ubidi_getDirection","features":[389]},{"name":"ubidi_getLength","features":[389]},{"name":"ubidi_getLevelAt","features":[389]},{"name":"ubidi_getLevels","features":[389]},{"name":"ubidi_getLogicalIndex","features":[389]},{"name":"ubidi_getLogicalMap","features":[389]},{"name":"ubidi_getLogicalRun","features":[389]},{"name":"ubidi_getParaLevel","features":[389]},{"name":"ubidi_getParagraph","features":[389]},{"name":"ubidi_getParagraphByIndex","features":[389]},{"name":"ubidi_getProcessedLength","features":[389]},{"name":"ubidi_getReorderingMode","features":[389]},{"name":"ubidi_getReorderingOptions","features":[389]},{"name":"ubidi_getResultLength","features":[389]},{"name":"ubidi_getText","features":[389]},{"name":"ubidi_getVisualIndex","features":[389]},{"name":"ubidi_getVisualMap","features":[389]},{"name":"ubidi_getVisualRun","features":[389]},{"name":"ubidi_invertMap","features":[389]},{"name":"ubidi_isInverse","features":[389]},{"name":"ubidi_isOrderParagraphsLTR","features":[389]},{"name":"ubidi_open","features":[389]},{"name":"ubidi_openSized","features":[389]},{"name":"ubidi_orderParagraphsLTR","features":[389]},{"name":"ubidi_reorderLogical","features":[389]},{"name":"ubidi_reorderVisual","features":[389]},{"name":"ubidi_setClassCallback","features":[389]},{"name":"ubidi_setContext","features":[389]},{"name":"ubidi_setInverse","features":[389]},{"name":"ubidi_setLine","features":[389]},{"name":"ubidi_setPara","features":[389]},{"name":"ubidi_setReorderingMode","features":[389]},{"name":"ubidi_setReorderingOptions","features":[389]},{"name":"ubidi_writeReordered","features":[389]},{"name":"ubidi_writeReverse","features":[389]},{"name":"ubiditransform_close","features":[389]},{"name":"ubiditransform_open","features":[389]},{"name":"ubiditransform_transform","features":[389]},{"name":"ublock_getCode","features":[389]},{"name":"ubrk_close","features":[389]},{"name":"ubrk_countAvailable","features":[389]},{"name":"ubrk_current","features":[389]},{"name":"ubrk_first","features":[389]},{"name":"ubrk_following","features":[389]},{"name":"ubrk_getAvailable","features":[389]},{"name":"ubrk_getBinaryRules","features":[389]},{"name":"ubrk_getLocaleByType","features":[389]},{"name":"ubrk_getRuleStatus","features":[389]},{"name":"ubrk_getRuleStatusVec","features":[389]},{"name":"ubrk_isBoundary","features":[389]},{"name":"ubrk_last","features":[389]},{"name":"ubrk_next","features":[389]},{"name":"ubrk_open","features":[389]},{"name":"ubrk_openBinaryRules","features":[389]},{"name":"ubrk_openRules","features":[389]},{"name":"ubrk_preceding","features":[389]},{"name":"ubrk_previous","features":[389]},{"name":"ubrk_refreshUText","features":[389]},{"name":"ubrk_safeClone","features":[389]},{"name":"ubrk_setText","features":[389]},{"name":"ubrk_setUText","features":[389]},{"name":"ucal_add","features":[389]},{"name":"ucal_clear","features":[389]},{"name":"ucal_clearField","features":[389]},{"name":"ucal_clone","features":[389]},{"name":"ucal_close","features":[389]},{"name":"ucal_countAvailable","features":[389]},{"name":"ucal_equivalentTo","features":[389]},{"name":"ucal_get","features":[389]},{"name":"ucal_getAttribute","features":[389]},{"name":"ucal_getAvailable","features":[389]},{"name":"ucal_getCanonicalTimeZoneID","features":[389]},{"name":"ucal_getDSTSavings","features":[389]},{"name":"ucal_getDayOfWeekType","features":[389]},{"name":"ucal_getDefaultTimeZone","features":[389]},{"name":"ucal_getFieldDifference","features":[389]},{"name":"ucal_getGregorianChange","features":[389]},{"name":"ucal_getHostTimeZone","features":[389]},{"name":"ucal_getKeywordValuesForLocale","features":[389]},{"name":"ucal_getLimit","features":[389]},{"name":"ucal_getLocaleByType","features":[389]},{"name":"ucal_getMillis","features":[389]},{"name":"ucal_getNow","features":[389]},{"name":"ucal_getTZDataVersion","features":[389]},{"name":"ucal_getTimeZoneDisplayName","features":[389]},{"name":"ucal_getTimeZoneID","features":[389]},{"name":"ucal_getTimeZoneIDForWindowsID","features":[389]},{"name":"ucal_getTimeZoneTransitionDate","features":[389]},{"name":"ucal_getType","features":[389]},{"name":"ucal_getWeekendTransition","features":[389]},{"name":"ucal_getWindowsTimeZoneID","features":[389]},{"name":"ucal_inDaylightTime","features":[389]},{"name":"ucal_isSet","features":[389]},{"name":"ucal_isWeekend","features":[389]},{"name":"ucal_open","features":[389]},{"name":"ucal_openCountryTimeZones","features":[389]},{"name":"ucal_openTimeZoneIDEnumeration","features":[389]},{"name":"ucal_openTimeZones","features":[389]},{"name":"ucal_roll","features":[389]},{"name":"ucal_set","features":[389]},{"name":"ucal_setAttribute","features":[389]},{"name":"ucal_setDate","features":[389]},{"name":"ucal_setDateTime","features":[389]},{"name":"ucal_setDefaultTimeZone","features":[389]},{"name":"ucal_setGregorianChange","features":[389]},{"name":"ucal_setMillis","features":[389]},{"name":"ucal_setTimeZone","features":[389]},{"name":"ucasemap_close","features":[389]},{"name":"ucasemap_getBreakIterator","features":[389]},{"name":"ucasemap_getLocale","features":[389]},{"name":"ucasemap_getOptions","features":[389]},{"name":"ucasemap_open","features":[389]},{"name":"ucasemap_setBreakIterator","features":[389]},{"name":"ucasemap_setLocale","features":[389]},{"name":"ucasemap_setOptions","features":[389]},{"name":"ucasemap_toTitle","features":[389]},{"name":"ucasemap_utf8FoldCase","features":[389]},{"name":"ucasemap_utf8ToLower","features":[389]},{"name":"ucasemap_utf8ToTitle","features":[389]},{"name":"ucasemap_utf8ToUpper","features":[389]},{"name":"ucfpos_close","features":[389]},{"name":"ucfpos_constrainCategory","features":[389]},{"name":"ucfpos_constrainField","features":[389]},{"name":"ucfpos_getCategory","features":[389]},{"name":"ucfpos_getField","features":[389]},{"name":"ucfpos_getIndexes","features":[389]},{"name":"ucfpos_getInt64IterationContext","features":[389]},{"name":"ucfpos_matchesField","features":[389]},{"name":"ucfpos_open","features":[389]},{"name":"ucfpos_reset","features":[389]},{"name":"ucfpos_setInt64IterationContext","features":[389]},{"name":"ucfpos_setState","features":[389]},{"name":"ucnv_cbFromUWriteBytes","features":[389]},{"name":"ucnv_cbFromUWriteSub","features":[389]},{"name":"ucnv_cbFromUWriteUChars","features":[389]},{"name":"ucnv_cbToUWriteSub","features":[389]},{"name":"ucnv_cbToUWriteUChars","features":[389]},{"name":"ucnv_close","features":[389]},{"name":"ucnv_compareNames","features":[389]},{"name":"ucnv_convert","features":[389]},{"name":"ucnv_convertEx","features":[389]},{"name":"ucnv_countAliases","features":[389]},{"name":"ucnv_countAvailable","features":[389]},{"name":"ucnv_countStandards","features":[389]},{"name":"ucnv_detectUnicodeSignature","features":[389]},{"name":"ucnv_fixFileSeparator","features":[389]},{"name":"ucnv_flushCache","features":[389]},{"name":"ucnv_fromAlgorithmic","features":[389]},{"name":"ucnv_fromUChars","features":[389]},{"name":"ucnv_fromUCountPending","features":[389]},{"name":"ucnv_fromUnicode","features":[389]},{"name":"ucnv_getAlias","features":[389]},{"name":"ucnv_getAliases","features":[389]},{"name":"ucnv_getAvailableName","features":[389]},{"name":"ucnv_getCCSID","features":[389]},{"name":"ucnv_getCanonicalName","features":[389]},{"name":"ucnv_getDefaultName","features":[389]},{"name":"ucnv_getDisplayName","features":[389]},{"name":"ucnv_getFromUCallBack","features":[389]},{"name":"ucnv_getInvalidChars","features":[389]},{"name":"ucnv_getInvalidUChars","features":[389]},{"name":"ucnv_getMaxCharSize","features":[389]},{"name":"ucnv_getMinCharSize","features":[389]},{"name":"ucnv_getName","features":[389]},{"name":"ucnv_getNextUChar","features":[389]},{"name":"ucnv_getPlatform","features":[389]},{"name":"ucnv_getStandard","features":[389]},{"name":"ucnv_getStandardName","features":[389]},{"name":"ucnv_getStarters","features":[389]},{"name":"ucnv_getSubstChars","features":[389]},{"name":"ucnv_getToUCallBack","features":[389]},{"name":"ucnv_getType","features":[389]},{"name":"ucnv_getUnicodeSet","features":[389]},{"name":"ucnv_isAmbiguous","features":[389]},{"name":"ucnv_isFixedWidth","features":[389]},{"name":"ucnv_open","features":[389]},{"name":"ucnv_openAllNames","features":[389]},{"name":"ucnv_openCCSID","features":[389]},{"name":"ucnv_openPackage","features":[389]},{"name":"ucnv_openStandardNames","features":[389]},{"name":"ucnv_openU","features":[389]},{"name":"ucnv_reset","features":[389]},{"name":"ucnv_resetFromUnicode","features":[389]},{"name":"ucnv_resetToUnicode","features":[389]},{"name":"ucnv_safeClone","features":[389]},{"name":"ucnv_setDefaultName","features":[389]},{"name":"ucnv_setFallback","features":[389]},{"name":"ucnv_setFromUCallBack","features":[389]},{"name":"ucnv_setSubstChars","features":[389]},{"name":"ucnv_setSubstString","features":[389]},{"name":"ucnv_setToUCallBack","features":[389]},{"name":"ucnv_toAlgorithmic","features":[389]},{"name":"ucnv_toUChars","features":[389]},{"name":"ucnv_toUCountPending","features":[389]},{"name":"ucnv_toUnicode","features":[389]},{"name":"ucnv_usesFallback","features":[389]},{"name":"ucnvsel_close","features":[389]},{"name":"ucnvsel_open","features":[389]},{"name":"ucnvsel_openFromSerialized","features":[389]},{"name":"ucnvsel_selectForString","features":[389]},{"name":"ucnvsel_selectForUTF8","features":[389]},{"name":"ucnvsel_serialize","features":[389]},{"name":"ucol_cloneBinary","features":[389]},{"name":"ucol_close","features":[389]},{"name":"ucol_closeElements","features":[389]},{"name":"ucol_countAvailable","features":[389]},{"name":"ucol_equal","features":[389]},{"name":"ucol_getAttribute","features":[389]},{"name":"ucol_getAvailable","features":[389]},{"name":"ucol_getBound","features":[389]},{"name":"ucol_getContractionsAndExpansions","features":[389]},{"name":"ucol_getDisplayName","features":[389]},{"name":"ucol_getEquivalentReorderCodes","features":[389]},{"name":"ucol_getFunctionalEquivalent","features":[389]},{"name":"ucol_getKeywordValues","features":[389]},{"name":"ucol_getKeywordValuesForLocale","features":[389]},{"name":"ucol_getKeywords","features":[389]},{"name":"ucol_getLocaleByType","features":[389]},{"name":"ucol_getMaxExpansion","features":[389]},{"name":"ucol_getMaxVariable","features":[389]},{"name":"ucol_getOffset","features":[389]},{"name":"ucol_getReorderCodes","features":[389]},{"name":"ucol_getRules","features":[389]},{"name":"ucol_getRulesEx","features":[389]},{"name":"ucol_getSortKey","features":[389]},{"name":"ucol_getStrength","features":[389]},{"name":"ucol_getTailoredSet","features":[389]},{"name":"ucol_getUCAVersion","features":[389]},{"name":"ucol_getVariableTop","features":[389]},{"name":"ucol_getVersion","features":[389]},{"name":"ucol_greater","features":[389]},{"name":"ucol_greaterOrEqual","features":[389]},{"name":"ucol_keyHashCode","features":[389]},{"name":"ucol_mergeSortkeys","features":[389]},{"name":"ucol_next","features":[389]},{"name":"ucol_nextSortKeyPart","features":[389]},{"name":"ucol_open","features":[389]},{"name":"ucol_openAvailableLocales","features":[389]},{"name":"ucol_openBinary","features":[389]},{"name":"ucol_openElements","features":[389]},{"name":"ucol_openRules","features":[389]},{"name":"ucol_previous","features":[389]},{"name":"ucol_primaryOrder","features":[389]},{"name":"ucol_reset","features":[389]},{"name":"ucol_safeClone","features":[389]},{"name":"ucol_secondaryOrder","features":[389]},{"name":"ucol_setAttribute","features":[389]},{"name":"ucol_setMaxVariable","features":[389]},{"name":"ucol_setOffset","features":[389]},{"name":"ucol_setReorderCodes","features":[389]},{"name":"ucol_setStrength","features":[389]},{"name":"ucol_setText","features":[389]},{"name":"ucol_strcoll","features":[389]},{"name":"ucol_strcollIter","features":[389]},{"name":"ucol_strcollUTF8","features":[389]},{"name":"ucol_tertiaryOrder","features":[389]},{"name":"ucpmap_get","features":[389]},{"name":"ucpmap_getRange","features":[389]},{"name":"ucptrie_close","features":[389]},{"name":"ucptrie_get","features":[389]},{"name":"ucptrie_getRange","features":[389]},{"name":"ucptrie_getType","features":[389]},{"name":"ucptrie_getValueWidth","features":[389]},{"name":"ucptrie_internalSmallIndex","features":[389]},{"name":"ucptrie_internalSmallU8Index","features":[389]},{"name":"ucptrie_internalU8PrevIndex","features":[389]},{"name":"ucptrie_openFromBinary","features":[389]},{"name":"ucptrie_toBinary","features":[389]},{"name":"ucsdet_close","features":[389]},{"name":"ucsdet_detect","features":[389]},{"name":"ucsdet_detectAll","features":[389]},{"name":"ucsdet_enableInputFilter","features":[389]},{"name":"ucsdet_getAllDetectableCharsets","features":[389]},{"name":"ucsdet_getConfidence","features":[389]},{"name":"ucsdet_getLanguage","features":[389]},{"name":"ucsdet_getName","features":[389]},{"name":"ucsdet_getUChars","features":[389]},{"name":"ucsdet_isInputFilterEnabled","features":[389]},{"name":"ucsdet_open","features":[389]},{"name":"ucsdet_setDeclaredEncoding","features":[389]},{"name":"ucsdet_setText","features":[389]},{"name":"ucurr_countCurrencies","features":[389]},{"name":"ucurr_forLocale","features":[389]},{"name":"ucurr_forLocaleAndDate","features":[389]},{"name":"ucurr_getDefaultFractionDigits","features":[389]},{"name":"ucurr_getDefaultFractionDigitsForUsage","features":[389]},{"name":"ucurr_getKeywordValuesForLocale","features":[389]},{"name":"ucurr_getName","features":[389]},{"name":"ucurr_getNumericCode","features":[389]},{"name":"ucurr_getPluralName","features":[389]},{"name":"ucurr_getRoundingIncrement","features":[389]},{"name":"ucurr_getRoundingIncrementForUsage","features":[389]},{"name":"ucurr_isAvailable","features":[389]},{"name":"ucurr_openISOCurrencies","features":[389]},{"name":"ucurr_register","features":[389]},{"name":"ucurr_unregister","features":[389]},{"name":"udat_adoptNumberFormat","features":[389]},{"name":"udat_adoptNumberFormatForFields","features":[389]},{"name":"udat_applyPattern","features":[389]},{"name":"udat_clone","features":[389]},{"name":"udat_close","features":[389]},{"name":"udat_countAvailable","features":[389]},{"name":"udat_countSymbols","features":[389]},{"name":"udat_format","features":[389]},{"name":"udat_formatCalendar","features":[389]},{"name":"udat_formatCalendarForFields","features":[389]},{"name":"udat_formatForFields","features":[389]},{"name":"udat_get2DigitYearStart","features":[389]},{"name":"udat_getAvailable","features":[389]},{"name":"udat_getBooleanAttribute","features":[389]},{"name":"udat_getCalendar","features":[389]},{"name":"udat_getContext","features":[389]},{"name":"udat_getLocaleByType","features":[389]},{"name":"udat_getNumberFormat","features":[389]},{"name":"udat_getNumberFormatForField","features":[389]},{"name":"udat_getSymbols","features":[389]},{"name":"udat_isLenient","features":[389]},{"name":"udat_open","features":[389]},{"name":"udat_parse","features":[389]},{"name":"udat_parseCalendar","features":[389]},{"name":"udat_set2DigitYearStart","features":[389]},{"name":"udat_setBooleanAttribute","features":[389]},{"name":"udat_setCalendar","features":[389]},{"name":"udat_setContext","features":[389]},{"name":"udat_setLenient","features":[389]},{"name":"udat_setNumberFormat","features":[389]},{"name":"udat_setSymbols","features":[389]},{"name":"udat_toCalendarDateField","features":[389]},{"name":"udat_toPattern","features":[389]},{"name":"udatpg_addPattern","features":[389]},{"name":"udatpg_clone","features":[389]},{"name":"udatpg_close","features":[389]},{"name":"udatpg_getAppendItemFormat","features":[389]},{"name":"udatpg_getAppendItemName","features":[389]},{"name":"udatpg_getBaseSkeleton","features":[389]},{"name":"udatpg_getBestPattern","features":[389]},{"name":"udatpg_getBestPatternWithOptions","features":[389]},{"name":"udatpg_getDateTimeFormat","features":[389]},{"name":"udatpg_getDecimal","features":[389]},{"name":"udatpg_getFieldDisplayName","features":[389]},{"name":"udatpg_getPatternForSkeleton","features":[389]},{"name":"udatpg_getSkeleton","features":[389]},{"name":"udatpg_open","features":[389]},{"name":"udatpg_openBaseSkeletons","features":[389]},{"name":"udatpg_openEmpty","features":[389]},{"name":"udatpg_openSkeletons","features":[389]},{"name":"udatpg_replaceFieldTypes","features":[389]},{"name":"udatpg_replaceFieldTypesWithOptions","features":[389]},{"name":"udatpg_setAppendItemFormat","features":[389]},{"name":"udatpg_setAppendItemName","features":[389]},{"name":"udatpg_setDateTimeFormat","features":[389]},{"name":"udatpg_setDecimal","features":[389]},{"name":"udtitvfmt_close","features":[389]},{"name":"udtitvfmt_closeResult","features":[389]},{"name":"udtitvfmt_format","features":[389]},{"name":"udtitvfmt_open","features":[389]},{"name":"udtitvfmt_openResult","features":[389]},{"name":"udtitvfmt_resultAsValue","features":[389]},{"name":"uenum_close","features":[389]},{"name":"uenum_count","features":[389]},{"name":"uenum_next","features":[389]},{"name":"uenum_openCharStringsEnumeration","features":[389]},{"name":"uenum_openUCharStringsEnumeration","features":[389]},{"name":"uenum_reset","features":[389]},{"name":"uenum_unext","features":[389]},{"name":"ufieldpositer_close","features":[389]},{"name":"ufieldpositer_next","features":[389]},{"name":"ufieldpositer_open","features":[389]},{"name":"ufmt_close","features":[389]},{"name":"ufmt_getArrayItemByIndex","features":[389]},{"name":"ufmt_getArrayLength","features":[389]},{"name":"ufmt_getDate","features":[389]},{"name":"ufmt_getDecNumChars","features":[389]},{"name":"ufmt_getDouble","features":[389]},{"name":"ufmt_getInt64","features":[389]},{"name":"ufmt_getLong","features":[389]},{"name":"ufmt_getObject","features":[389]},{"name":"ufmt_getType","features":[389]},{"name":"ufmt_getUChars","features":[389]},{"name":"ufmt_isNumeric","features":[389]},{"name":"ufmt_open","features":[389]},{"name":"ufmtval_getString","features":[389]},{"name":"ufmtval_nextPosition","features":[389]},{"name":"ugender_getInstance","features":[389]},{"name":"ugender_getListGender","features":[389]},{"name":"uidna_close","features":[389]},{"name":"uidna_labelToASCII","features":[389]},{"name":"uidna_labelToASCII_UTF8","features":[389]},{"name":"uidna_labelToUnicode","features":[389]},{"name":"uidna_labelToUnicodeUTF8","features":[389]},{"name":"uidna_nameToASCII","features":[389]},{"name":"uidna_nameToASCII_UTF8","features":[389]},{"name":"uidna_nameToUnicode","features":[389]},{"name":"uidna_nameToUnicodeUTF8","features":[389]},{"name":"uidna_openUTS46","features":[389]},{"name":"uiter_current32","features":[389]},{"name":"uiter_getState","features":[389]},{"name":"uiter_next32","features":[389]},{"name":"uiter_previous32","features":[389]},{"name":"uiter_setState","features":[389]},{"name":"uiter_setString","features":[389]},{"name":"uiter_setUTF16BE","features":[389]},{"name":"uiter_setUTF8","features":[389]},{"name":"uldn_close","features":[389]},{"name":"uldn_getContext","features":[389]},{"name":"uldn_getDialectHandling","features":[389]},{"name":"uldn_getLocale","features":[389]},{"name":"uldn_keyDisplayName","features":[389]},{"name":"uldn_keyValueDisplayName","features":[389]},{"name":"uldn_languageDisplayName","features":[389]},{"name":"uldn_localeDisplayName","features":[389]},{"name":"uldn_open","features":[389]},{"name":"uldn_openForContext","features":[389]},{"name":"uldn_regionDisplayName","features":[389]},{"name":"uldn_scriptCodeDisplayName","features":[389]},{"name":"uldn_scriptDisplayName","features":[389]},{"name":"uldn_variantDisplayName","features":[389]},{"name":"ulistfmt_close","features":[389]},{"name":"ulistfmt_closeResult","features":[389]},{"name":"ulistfmt_format","features":[389]},{"name":"ulistfmt_formatStringsToResult","features":[389]},{"name":"ulistfmt_open","features":[389]},{"name":"ulistfmt_openForType","features":[389]},{"name":"ulistfmt_openResult","features":[389]},{"name":"ulistfmt_resultAsValue","features":[389]},{"name":"uloc_acceptLanguage","features":[389]},{"name":"uloc_acceptLanguageFromHTTP","features":[389]},{"name":"uloc_addLikelySubtags","features":[389]},{"name":"uloc_canonicalize","features":[389]},{"name":"uloc_countAvailable","features":[389]},{"name":"uloc_forLanguageTag","features":[389]},{"name":"uloc_getAvailable","features":[389]},{"name":"uloc_getBaseName","features":[389]},{"name":"uloc_getCharacterOrientation","features":[389]},{"name":"uloc_getCountry","features":[389]},{"name":"uloc_getDefault","features":[389]},{"name":"uloc_getDisplayCountry","features":[389]},{"name":"uloc_getDisplayKeyword","features":[389]},{"name":"uloc_getDisplayKeywordValue","features":[389]},{"name":"uloc_getDisplayLanguage","features":[389]},{"name":"uloc_getDisplayName","features":[389]},{"name":"uloc_getDisplayScript","features":[389]},{"name":"uloc_getDisplayVariant","features":[389]},{"name":"uloc_getISO3Country","features":[389]},{"name":"uloc_getISO3Language","features":[389]},{"name":"uloc_getISOCountries","features":[389]},{"name":"uloc_getISOLanguages","features":[389]},{"name":"uloc_getKeywordValue","features":[389]},{"name":"uloc_getLCID","features":[389]},{"name":"uloc_getLanguage","features":[389]},{"name":"uloc_getLineOrientation","features":[389]},{"name":"uloc_getLocaleForLCID","features":[389]},{"name":"uloc_getName","features":[389]},{"name":"uloc_getParent","features":[389]},{"name":"uloc_getScript","features":[389]},{"name":"uloc_getVariant","features":[389]},{"name":"uloc_isRightToLeft","features":[389]},{"name":"uloc_minimizeSubtags","features":[389]},{"name":"uloc_openAvailableByType","features":[389]},{"name":"uloc_openKeywords","features":[389]},{"name":"uloc_setDefault","features":[389]},{"name":"uloc_setKeywordValue","features":[389]},{"name":"uloc_toLanguageTag","features":[389]},{"name":"uloc_toLegacyKey","features":[389]},{"name":"uloc_toLegacyType","features":[389]},{"name":"uloc_toUnicodeLocaleKey","features":[389]},{"name":"uloc_toUnicodeLocaleType","features":[389]},{"name":"ulocdata_close","features":[389]},{"name":"ulocdata_getCLDRVersion","features":[389]},{"name":"ulocdata_getDelimiter","features":[389]},{"name":"ulocdata_getExemplarSet","features":[389]},{"name":"ulocdata_getLocaleDisplayPattern","features":[389]},{"name":"ulocdata_getLocaleSeparator","features":[389]},{"name":"ulocdata_getMeasurementSystem","features":[389]},{"name":"ulocdata_getNoSubstitute","features":[389]},{"name":"ulocdata_getPaperSize","features":[389]},{"name":"ulocdata_open","features":[389]},{"name":"ulocdata_setNoSubstitute","features":[389]},{"name":"umsg_applyPattern","features":[389]},{"name":"umsg_autoQuoteApostrophe","features":[389]},{"name":"umsg_clone","features":[389]},{"name":"umsg_close","features":[389]},{"name":"umsg_format","features":[389]},{"name":"umsg_getLocale","features":[389]},{"name":"umsg_open","features":[389]},{"name":"umsg_parse","features":[389]},{"name":"umsg_setLocale","features":[389]},{"name":"umsg_toPattern","features":[389]},{"name":"umsg_vformat","features":[389]},{"name":"umsg_vparse","features":[389]},{"name":"umutablecptrie_buildImmutable","features":[389]},{"name":"umutablecptrie_clone","features":[389]},{"name":"umutablecptrie_close","features":[389]},{"name":"umutablecptrie_fromUCPMap","features":[389]},{"name":"umutablecptrie_fromUCPTrie","features":[389]},{"name":"umutablecptrie_get","features":[389]},{"name":"umutablecptrie_getRange","features":[389]},{"name":"umutablecptrie_open","features":[389]},{"name":"umutablecptrie_set","features":[389]},{"name":"umutablecptrie_setRange","features":[389]},{"name":"unorm2_append","features":[389]},{"name":"unorm2_close","features":[389]},{"name":"unorm2_composePair","features":[389]},{"name":"unorm2_getCombiningClass","features":[389]},{"name":"unorm2_getDecomposition","features":[389]},{"name":"unorm2_getInstance","features":[389]},{"name":"unorm2_getNFCInstance","features":[389]},{"name":"unorm2_getNFDInstance","features":[389]},{"name":"unorm2_getNFKCCasefoldInstance","features":[389]},{"name":"unorm2_getNFKCInstance","features":[389]},{"name":"unorm2_getNFKDInstance","features":[389]},{"name":"unorm2_getRawDecomposition","features":[389]},{"name":"unorm2_hasBoundaryAfter","features":[389]},{"name":"unorm2_hasBoundaryBefore","features":[389]},{"name":"unorm2_isInert","features":[389]},{"name":"unorm2_isNormalized","features":[389]},{"name":"unorm2_normalize","features":[389]},{"name":"unorm2_normalizeSecondAndAppend","features":[389]},{"name":"unorm2_openFiltered","features":[389]},{"name":"unorm2_quickCheck","features":[389]},{"name":"unorm2_spanQuickCheckYes","features":[389]},{"name":"unorm_compare","features":[389]},{"name":"unum_applyPattern","features":[389]},{"name":"unum_clone","features":[389]},{"name":"unum_close","features":[389]},{"name":"unum_countAvailable","features":[389]},{"name":"unum_format","features":[389]},{"name":"unum_formatDecimal","features":[389]},{"name":"unum_formatDouble","features":[389]},{"name":"unum_formatDoubleCurrency","features":[389]},{"name":"unum_formatDoubleForFields","features":[389]},{"name":"unum_formatInt64","features":[389]},{"name":"unum_formatUFormattable","features":[389]},{"name":"unum_getAttribute","features":[389]},{"name":"unum_getAvailable","features":[389]},{"name":"unum_getContext","features":[389]},{"name":"unum_getDoubleAttribute","features":[389]},{"name":"unum_getLocaleByType","features":[389]},{"name":"unum_getSymbol","features":[389]},{"name":"unum_getTextAttribute","features":[389]},{"name":"unum_open","features":[389]},{"name":"unum_parse","features":[389]},{"name":"unum_parseDecimal","features":[389]},{"name":"unum_parseDouble","features":[389]},{"name":"unum_parseDoubleCurrency","features":[389]},{"name":"unum_parseInt64","features":[389]},{"name":"unum_parseToUFormattable","features":[389]},{"name":"unum_setAttribute","features":[389]},{"name":"unum_setContext","features":[389]},{"name":"unum_setDoubleAttribute","features":[389]},{"name":"unum_setSymbol","features":[389]},{"name":"unum_setTextAttribute","features":[389]},{"name":"unum_toPattern","features":[389]},{"name":"unumf_close","features":[389]},{"name":"unumf_closeResult","features":[389]},{"name":"unumf_formatDecimal","features":[389]},{"name":"unumf_formatDouble","features":[389]},{"name":"unumf_formatInt","features":[389]},{"name":"unumf_openForSkeletonAndLocale","features":[389]},{"name":"unumf_openForSkeletonAndLocaleWithError","features":[389]},{"name":"unumf_openResult","features":[389]},{"name":"unumf_resultAsValue","features":[389]},{"name":"unumf_resultGetAllFieldPositions","features":[389]},{"name":"unumf_resultNextFieldPosition","features":[389]},{"name":"unumf_resultToString","features":[389]},{"name":"unumsys_close","features":[389]},{"name":"unumsys_getDescription","features":[389]},{"name":"unumsys_getName","features":[389]},{"name":"unumsys_getRadix","features":[389]},{"name":"unumsys_isAlgorithmic","features":[389]},{"name":"unumsys_open","features":[389]},{"name":"unumsys_openAvailableNames","features":[389]},{"name":"unumsys_openByName","features":[389]},{"name":"uplrules_close","features":[389]},{"name":"uplrules_getKeywords","features":[389]},{"name":"uplrules_open","features":[389]},{"name":"uplrules_openForType","features":[389]},{"name":"uplrules_select","features":[389]},{"name":"uplrules_selectFormatted","features":[389]},{"name":"uregex_appendReplacement","features":[389]},{"name":"uregex_appendReplacementUText","features":[389]},{"name":"uregex_appendTail","features":[389]},{"name":"uregex_appendTailUText","features":[389]},{"name":"uregex_clone","features":[389]},{"name":"uregex_close","features":[389]},{"name":"uregex_end","features":[389]},{"name":"uregex_end64","features":[389]},{"name":"uregex_find","features":[389]},{"name":"uregex_find64","features":[389]},{"name":"uregex_findNext","features":[389]},{"name":"uregex_flags","features":[389]},{"name":"uregex_getFindProgressCallback","features":[389]},{"name":"uregex_getMatchCallback","features":[389]},{"name":"uregex_getStackLimit","features":[389]},{"name":"uregex_getText","features":[389]},{"name":"uregex_getTimeLimit","features":[389]},{"name":"uregex_getUText","features":[389]},{"name":"uregex_group","features":[389]},{"name":"uregex_groupCount","features":[389]},{"name":"uregex_groupNumberFromCName","features":[389]},{"name":"uregex_groupNumberFromName","features":[389]},{"name":"uregex_groupUText","features":[389]},{"name":"uregex_hasAnchoringBounds","features":[389]},{"name":"uregex_hasTransparentBounds","features":[389]},{"name":"uregex_hitEnd","features":[389]},{"name":"uregex_lookingAt","features":[389]},{"name":"uregex_lookingAt64","features":[389]},{"name":"uregex_matches","features":[389]},{"name":"uregex_matches64","features":[389]},{"name":"uregex_open","features":[389]},{"name":"uregex_openC","features":[389]},{"name":"uregex_openUText","features":[389]},{"name":"uregex_pattern","features":[389]},{"name":"uregex_patternUText","features":[389]},{"name":"uregex_refreshUText","features":[389]},{"name":"uregex_regionEnd","features":[389]},{"name":"uregex_regionEnd64","features":[389]},{"name":"uregex_regionStart","features":[389]},{"name":"uregex_regionStart64","features":[389]},{"name":"uregex_replaceAll","features":[389]},{"name":"uregex_replaceAllUText","features":[389]},{"name":"uregex_replaceFirst","features":[389]},{"name":"uregex_replaceFirstUText","features":[389]},{"name":"uregex_requireEnd","features":[389]},{"name":"uregex_reset","features":[389]},{"name":"uregex_reset64","features":[389]},{"name":"uregex_setFindProgressCallback","features":[389]},{"name":"uregex_setMatchCallback","features":[389]},{"name":"uregex_setRegion","features":[389]},{"name":"uregex_setRegion64","features":[389]},{"name":"uregex_setRegionAndStart","features":[389]},{"name":"uregex_setStackLimit","features":[389]},{"name":"uregex_setText","features":[389]},{"name":"uregex_setTimeLimit","features":[389]},{"name":"uregex_setUText","features":[389]},{"name":"uregex_split","features":[389]},{"name":"uregex_splitUText","features":[389]},{"name":"uregex_start","features":[389]},{"name":"uregex_start64","features":[389]},{"name":"uregex_useAnchoringBounds","features":[389]},{"name":"uregex_useTransparentBounds","features":[389]},{"name":"uregion_areEqual","features":[389]},{"name":"uregion_contains","features":[389]},{"name":"uregion_getAvailable","features":[389]},{"name":"uregion_getContainedRegions","features":[389]},{"name":"uregion_getContainedRegionsOfType","features":[389]},{"name":"uregion_getContainingRegion","features":[389]},{"name":"uregion_getContainingRegionOfType","features":[389]},{"name":"uregion_getNumericCode","features":[389]},{"name":"uregion_getPreferredValues","features":[389]},{"name":"uregion_getRegionCode","features":[389]},{"name":"uregion_getRegionFromCode","features":[389]},{"name":"uregion_getRegionFromNumericCode","features":[389]},{"name":"uregion_getType","features":[389]},{"name":"ureldatefmt_close","features":[389]},{"name":"ureldatefmt_closeResult","features":[389]},{"name":"ureldatefmt_combineDateAndTime","features":[389]},{"name":"ureldatefmt_format","features":[389]},{"name":"ureldatefmt_formatNumeric","features":[389]},{"name":"ureldatefmt_formatNumericToResult","features":[389]},{"name":"ureldatefmt_formatToResult","features":[389]},{"name":"ureldatefmt_open","features":[389]},{"name":"ureldatefmt_openResult","features":[389]},{"name":"ureldatefmt_resultAsValue","features":[389]},{"name":"ures_close","features":[389]},{"name":"ures_getBinary","features":[389]},{"name":"ures_getByIndex","features":[389]},{"name":"ures_getByKey","features":[389]},{"name":"ures_getInt","features":[389]},{"name":"ures_getIntVector","features":[389]},{"name":"ures_getKey","features":[389]},{"name":"ures_getLocaleByType","features":[389]},{"name":"ures_getNextResource","features":[389]},{"name":"ures_getNextString","features":[389]},{"name":"ures_getSize","features":[389]},{"name":"ures_getString","features":[389]},{"name":"ures_getStringByIndex","features":[389]},{"name":"ures_getStringByKey","features":[389]},{"name":"ures_getType","features":[389]},{"name":"ures_getUInt","features":[389]},{"name":"ures_getUTF8String","features":[389]},{"name":"ures_getUTF8StringByIndex","features":[389]},{"name":"ures_getUTF8StringByKey","features":[389]},{"name":"ures_getVersion","features":[389]},{"name":"ures_hasNext","features":[389]},{"name":"ures_open","features":[389]},{"name":"ures_openAvailableLocales","features":[389]},{"name":"ures_openDirect","features":[389]},{"name":"ures_openU","features":[389]},{"name":"ures_resetIterator","features":[389]},{"name":"uscript_breaksBetweenLetters","features":[389]},{"name":"uscript_getCode","features":[389]},{"name":"uscript_getName","features":[389]},{"name":"uscript_getSampleString","features":[389]},{"name":"uscript_getScript","features":[389]},{"name":"uscript_getScriptExtensions","features":[389]},{"name":"uscript_getShortName","features":[389]},{"name":"uscript_getUsage","features":[389]},{"name":"uscript_hasScript","features":[389]},{"name":"uscript_isCased","features":[389]},{"name":"uscript_isRightToLeft","features":[389]},{"name":"usearch_close","features":[389]},{"name":"usearch_first","features":[389]},{"name":"usearch_following","features":[389]},{"name":"usearch_getAttribute","features":[389]},{"name":"usearch_getBreakIterator","features":[389]},{"name":"usearch_getCollator","features":[389]},{"name":"usearch_getMatchedLength","features":[389]},{"name":"usearch_getMatchedStart","features":[389]},{"name":"usearch_getMatchedText","features":[389]},{"name":"usearch_getOffset","features":[389]},{"name":"usearch_getPattern","features":[389]},{"name":"usearch_getText","features":[389]},{"name":"usearch_last","features":[389]},{"name":"usearch_next","features":[389]},{"name":"usearch_open","features":[389]},{"name":"usearch_openFromCollator","features":[389]},{"name":"usearch_preceding","features":[389]},{"name":"usearch_previous","features":[389]},{"name":"usearch_reset","features":[389]},{"name":"usearch_setAttribute","features":[389]},{"name":"usearch_setBreakIterator","features":[389]},{"name":"usearch_setCollator","features":[389]},{"name":"usearch_setOffset","features":[389]},{"name":"usearch_setPattern","features":[389]},{"name":"usearch_setText","features":[389]},{"name":"uset_add","features":[389]},{"name":"uset_addAll","features":[389]},{"name":"uset_addAllCodePoints","features":[389]},{"name":"uset_addRange","features":[389]},{"name":"uset_addString","features":[389]},{"name":"uset_applyIntPropertyValue","features":[389]},{"name":"uset_applyPattern","features":[389]},{"name":"uset_applyPropertyAlias","features":[389]},{"name":"uset_charAt","features":[389]},{"name":"uset_clear","features":[389]},{"name":"uset_clone","features":[389]},{"name":"uset_cloneAsThawed","features":[389]},{"name":"uset_close","features":[389]},{"name":"uset_closeOver","features":[389]},{"name":"uset_compact","features":[389]},{"name":"uset_complement","features":[389]},{"name":"uset_complementAll","features":[389]},{"name":"uset_contains","features":[389]},{"name":"uset_containsAll","features":[389]},{"name":"uset_containsAllCodePoints","features":[389]},{"name":"uset_containsNone","features":[389]},{"name":"uset_containsRange","features":[389]},{"name":"uset_containsSome","features":[389]},{"name":"uset_containsString","features":[389]},{"name":"uset_equals","features":[389]},{"name":"uset_freeze","features":[389]},{"name":"uset_getItem","features":[389]},{"name":"uset_getItemCount","features":[389]},{"name":"uset_getSerializedRange","features":[389]},{"name":"uset_getSerializedRangeCount","features":[389]},{"name":"uset_getSerializedSet","features":[389]},{"name":"uset_indexOf","features":[389]},{"name":"uset_isEmpty","features":[389]},{"name":"uset_isFrozen","features":[389]},{"name":"uset_open","features":[389]},{"name":"uset_openEmpty","features":[389]},{"name":"uset_openPattern","features":[389]},{"name":"uset_openPatternOptions","features":[389]},{"name":"uset_remove","features":[389]},{"name":"uset_removeAll","features":[389]},{"name":"uset_removeAllStrings","features":[389]},{"name":"uset_removeRange","features":[389]},{"name":"uset_removeString","features":[389]},{"name":"uset_resemblesPattern","features":[389]},{"name":"uset_retain","features":[389]},{"name":"uset_retainAll","features":[389]},{"name":"uset_serialize","features":[389]},{"name":"uset_serializedContains","features":[389]},{"name":"uset_set","features":[389]},{"name":"uset_setSerializedToOne","features":[389]},{"name":"uset_size","features":[389]},{"name":"uset_span","features":[389]},{"name":"uset_spanBack","features":[389]},{"name":"uset_spanBackUTF8","features":[389]},{"name":"uset_spanUTF8","features":[389]},{"name":"uset_toPattern","features":[389]},{"name":"uspoof_areConfusable","features":[389]},{"name":"uspoof_areConfusableUTF8","features":[389]},{"name":"uspoof_check","features":[389]},{"name":"uspoof_check2","features":[389]},{"name":"uspoof_check2UTF8","features":[389]},{"name":"uspoof_checkUTF8","features":[389]},{"name":"uspoof_clone","features":[389]},{"name":"uspoof_close","features":[389]},{"name":"uspoof_closeCheckResult","features":[389]},{"name":"uspoof_getAllowedChars","features":[389]},{"name":"uspoof_getAllowedLocales","features":[389]},{"name":"uspoof_getCheckResultChecks","features":[389]},{"name":"uspoof_getCheckResultNumerics","features":[389]},{"name":"uspoof_getCheckResultRestrictionLevel","features":[389]},{"name":"uspoof_getChecks","features":[389]},{"name":"uspoof_getInclusionSet","features":[389]},{"name":"uspoof_getRecommendedSet","features":[389]},{"name":"uspoof_getRestrictionLevel","features":[389]},{"name":"uspoof_getSkeleton","features":[389]},{"name":"uspoof_getSkeletonUTF8","features":[389]},{"name":"uspoof_open","features":[389]},{"name":"uspoof_openCheckResult","features":[389]},{"name":"uspoof_openFromSerialized","features":[389]},{"name":"uspoof_openFromSource","features":[389]},{"name":"uspoof_serialize","features":[389]},{"name":"uspoof_setAllowedChars","features":[389]},{"name":"uspoof_setAllowedLocales","features":[389]},{"name":"uspoof_setChecks","features":[389]},{"name":"uspoof_setRestrictionLevel","features":[389]},{"name":"usprep_close","features":[389]},{"name":"usprep_open","features":[389]},{"name":"usprep_openByType","features":[389]},{"name":"usprep_prepare","features":[389]},{"name":"utext_char32At","features":[389]},{"name":"utext_clone","features":[389]},{"name":"utext_close","features":[389]},{"name":"utext_copy","features":[389]},{"name":"utext_current32","features":[389]},{"name":"utext_equals","features":[389]},{"name":"utext_extract","features":[389]},{"name":"utext_freeze","features":[389]},{"name":"utext_getNativeIndex","features":[389]},{"name":"utext_getPreviousNativeIndex","features":[389]},{"name":"utext_hasMetaData","features":[389]},{"name":"utext_isLengthExpensive","features":[389]},{"name":"utext_isWritable","features":[389]},{"name":"utext_moveIndex32","features":[389]},{"name":"utext_nativeLength","features":[389]},{"name":"utext_next32","features":[389]},{"name":"utext_next32From","features":[389]},{"name":"utext_openUChars","features":[389]},{"name":"utext_openUTF8","features":[389]},{"name":"utext_previous32","features":[389]},{"name":"utext_previous32From","features":[389]},{"name":"utext_replace","features":[389]},{"name":"utext_setNativeIndex","features":[389]},{"name":"utext_setup","features":[389]},{"name":"utf8_appendCharSafeBody","features":[389]},{"name":"utf8_back1SafeBody","features":[389]},{"name":"utf8_nextCharSafeBody","features":[389]},{"name":"utf8_prevCharSafeBody","features":[389]},{"name":"utmscale_fromInt64","features":[389]},{"name":"utmscale_getTimeScaleValue","features":[389]},{"name":"utmscale_toInt64","features":[389]},{"name":"utrace_format","features":[389]},{"name":"utrace_functionName","features":[389]},{"name":"utrace_getFunctions","features":[389]},{"name":"utrace_getLevel","features":[389]},{"name":"utrace_setFunctions","features":[389]},{"name":"utrace_setLevel","features":[389]},{"name":"utrace_vformat","features":[389]},{"name":"utrans_clone","features":[389]},{"name":"utrans_close","features":[389]},{"name":"utrans_countAvailableIDs","features":[389]},{"name":"utrans_getSourceSet","features":[389]},{"name":"utrans_getUnicodeID","features":[389]},{"name":"utrans_openIDs","features":[389]},{"name":"utrans_openInverse","features":[389]},{"name":"utrans_openU","features":[389]},{"name":"utrans_register","features":[389]},{"name":"utrans_setFilter","features":[389]},{"name":"utrans_toRules","features":[389]},{"name":"utrans_trans","features":[389]},{"name":"utrans_transIncremental","features":[389]},{"name":"utrans_transIncrementalUChars","features":[389]},{"name":"utrans_transUChars","features":[389]},{"name":"utrans_unregisterID","features":[389]}],"393":[{"name":"CompositionFrameDisplayInstance","features":[303,390,391]},{"name":"CompositionFrameInstanceKind","features":[390]},{"name":"CompositionFrameInstanceKind_ComposedOnScreen","features":[390]},{"name":"CompositionFrameInstanceKind_ComposedToIntermediate","features":[390]},{"name":"CompositionFrameInstanceKind_ScanoutOnScreen","features":[390]},{"name":"CreatePresentationFactory","features":[390]},{"name":"ICompositionFramePresentStatistics","features":[390]},{"name":"IIndependentFlipFramePresentStatistics","features":[390]},{"name":"IPresentStatistics","features":[390]},{"name":"IPresentStatusPresentStatistics","features":[390]},{"name":"IPresentationBuffer","features":[390]},{"name":"IPresentationContent","features":[390]},{"name":"IPresentationFactory","features":[390]},{"name":"IPresentationManager","features":[390]},{"name":"IPresentationSurface","features":[390]},{"name":"PresentStatisticsKind","features":[390]},{"name":"PresentStatisticsKind_CompositionFrame","features":[390]},{"name":"PresentStatisticsKind_IndependentFlipFrame","features":[390]},{"name":"PresentStatisticsKind_PresentStatus","features":[390]},{"name":"PresentStatus","features":[390]},{"name":"PresentStatus_Canceled","features":[390]},{"name":"PresentStatus_Queued","features":[390]},{"name":"PresentStatus_Skipped","features":[390]},{"name":"PresentationTransform","features":[390]},{"name":"SystemInterruptTime","features":[390]}],"394":[{"name":"AcgCompatible","features":[392]},{"name":"AdapterBudgetChange","features":[392]},{"name":"AdapterHardwareContentProtectionTeardown","features":[392]},{"name":"AdapterListStale","features":[392]},{"name":"AdapterMemoryBudget","features":[392]},{"name":"AdapterNoLongerValid","features":[392]},{"name":"ComputePreemptionGranularity","features":[392]},{"name":"DXCORE_ADAPTER_ATTRIBUTE_D3D11_GRAPHICS","features":[392]},{"name":"DXCORE_ADAPTER_ATTRIBUTE_D3D12_CORE_COMPUTE","features":[392]},{"name":"DXCORE_ADAPTER_ATTRIBUTE_D3D12_GRAPHICS","features":[392]},{"name":"DXCoreAdapterMemoryBudget","features":[392]},{"name":"DXCoreAdapterMemoryBudgetNodeSegmentGroup","features":[392]},{"name":"DXCoreAdapterPreference","features":[392]},{"name":"DXCoreAdapterProperty","features":[392]},{"name":"DXCoreAdapterState","features":[392]},{"name":"DXCoreCreateAdapterFactory","features":[392]},{"name":"DXCoreHardwareID","features":[392]},{"name":"DXCoreHardwareIDParts","features":[392]},{"name":"DXCoreNotificationType","features":[392]},{"name":"DXCoreSegmentGroup","features":[392]},{"name":"DedicatedAdapterMemory","features":[392]},{"name":"DedicatedSystemMemory","features":[392]},{"name":"DriverDescription","features":[392]},{"name":"DriverVersion","features":[392]},{"name":"GraphicsPreemptionGranularity","features":[392]},{"name":"Hardware","features":[392]},{"name":"HardwareID","features":[392]},{"name":"HardwareIDParts","features":[392]},{"name":"HighPerformance","features":[392]},{"name":"IDXCoreAdapter","features":[392]},{"name":"IDXCoreAdapterFactory","features":[392]},{"name":"IDXCoreAdapterList","features":[392]},{"name":"InstanceLuid","features":[392]},{"name":"IsDetachable","features":[392]},{"name":"IsDriverUpdateInProgress","features":[392]},{"name":"IsHardware","features":[392]},{"name":"IsIntegrated","features":[392]},{"name":"KmdModelVersion","features":[392]},{"name":"Local","features":[392]},{"name":"MinimumPower","features":[392]},{"name":"NonLocal","features":[392]},{"name":"PFN_DXCORE_NOTIFICATION_CALLBACK","features":[392]},{"name":"SharedSystemMemory","features":[392]},{"name":"_FACDXCORE","features":[392]}],"395":[{"name":"CLSID_D2D12DAffineTransform","features":[393]},{"name":"CLSID_D2D13DPerspectiveTransform","features":[393]},{"name":"CLSID_D2D13DTransform","features":[393]},{"name":"CLSID_D2D1AlphaMask","features":[393]},{"name":"CLSID_D2D1ArithmeticComposite","features":[393]},{"name":"CLSID_D2D1Atlas","features":[393]},{"name":"CLSID_D2D1BitmapSource","features":[393]},{"name":"CLSID_D2D1Blend","features":[393]},{"name":"CLSID_D2D1Border","features":[393]},{"name":"CLSID_D2D1Brightness","features":[393]},{"name":"CLSID_D2D1ChromaKey","features":[393]},{"name":"CLSID_D2D1ColorManagement","features":[393]},{"name":"CLSID_D2D1ColorMatrix","features":[393]},{"name":"CLSID_D2D1Composite","features":[393]},{"name":"CLSID_D2D1Contrast","features":[393]},{"name":"CLSID_D2D1ConvolveMatrix","features":[393]},{"name":"CLSID_D2D1Crop","features":[393]},{"name":"CLSID_D2D1CrossFade","features":[393]},{"name":"CLSID_D2D1DirectionalBlur","features":[393]},{"name":"CLSID_D2D1DiscreteTransfer","features":[393]},{"name":"CLSID_D2D1DisplacementMap","features":[393]},{"name":"CLSID_D2D1DistantDiffuse","features":[393]},{"name":"CLSID_D2D1DistantSpecular","features":[393]},{"name":"CLSID_D2D1DpiCompensation","features":[393]},{"name":"CLSID_D2D1EdgeDetection","features":[393]},{"name":"CLSID_D2D1Emboss","features":[393]},{"name":"CLSID_D2D1Exposure","features":[393]},{"name":"CLSID_D2D1Flood","features":[393]},{"name":"CLSID_D2D1GammaTransfer","features":[393]},{"name":"CLSID_D2D1GaussianBlur","features":[393]},{"name":"CLSID_D2D1Grayscale","features":[393]},{"name":"CLSID_D2D1HdrToneMap","features":[393]},{"name":"CLSID_D2D1HighlightsShadows","features":[393]},{"name":"CLSID_D2D1Histogram","features":[393]},{"name":"CLSID_D2D1HueRotation","features":[393]},{"name":"CLSID_D2D1HueToRgb","features":[393]},{"name":"CLSID_D2D1Invert","features":[393]},{"name":"CLSID_D2D1LinearTransfer","features":[393]},{"name":"CLSID_D2D1LookupTable3D","features":[393]},{"name":"CLSID_D2D1LuminanceToAlpha","features":[393]},{"name":"CLSID_D2D1Morphology","features":[393]},{"name":"CLSID_D2D1Opacity","features":[393]},{"name":"CLSID_D2D1OpacityMetadata","features":[393]},{"name":"CLSID_D2D1PointDiffuse","features":[393]},{"name":"CLSID_D2D1PointSpecular","features":[393]},{"name":"CLSID_D2D1Posterize","features":[393]},{"name":"CLSID_D2D1Premultiply","features":[393]},{"name":"CLSID_D2D1RgbToHue","features":[393]},{"name":"CLSID_D2D1Saturation","features":[393]},{"name":"CLSID_D2D1Scale","features":[393]},{"name":"CLSID_D2D1Sepia","features":[393]},{"name":"CLSID_D2D1Shadow","features":[393]},{"name":"CLSID_D2D1Sharpen","features":[393]},{"name":"CLSID_D2D1SpotDiffuse","features":[393]},{"name":"CLSID_D2D1SpotSpecular","features":[393]},{"name":"CLSID_D2D1Straighten","features":[393]},{"name":"CLSID_D2D1TableTransfer","features":[393]},{"name":"CLSID_D2D1TemperatureTint","features":[393]},{"name":"CLSID_D2D1Tile","features":[393]},{"name":"CLSID_D2D1Tint","features":[393]},{"name":"CLSID_D2D1Turbulence","features":[393]},{"name":"CLSID_D2D1UnPremultiply","features":[393]},{"name":"CLSID_D2D1Vignette","features":[393]},{"name":"CLSID_D2D1WhiteLevelAdjustment","features":[393]},{"name":"CLSID_D2D1YCbCr","features":[393]},{"name":"D2D1ComputeMaximumScaleFactor","features":[68,393]},{"name":"D2D1ConvertColorSpace","features":[394]},{"name":"D2D1CreateDevice","features":[393,395]},{"name":"D2D1CreateDeviceContext","features":[393,395]},{"name":"D2D1CreateFactory","features":[393]},{"name":"D2D1GetGradientMeshInteriorPointsFromCoonsPatch","features":[394]},{"name":"D2D1InvertMatrix","features":[68,303,393]},{"name":"D2D1IsMatrixInvertible","features":[68,303,393]},{"name":"D2D1MakeRotateMatrix","features":[68,394]},{"name":"D2D1MakeSkewMatrix","features":[68,394]},{"name":"D2D1SinCos","features":[393]},{"name":"D2D1Tan","features":[393]},{"name":"D2D1Vec3Length","features":[393]},{"name":"D2D1_2DAFFINETRANSFORM_PROP","features":[393]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_SHARPNESS","features":[393]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_TRANSFORM_MATRIX","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_CUBIC","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_DEPTH","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_GLOBAL_OFFSET","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_LOCAL_OFFSET","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_PERSPECTIVE_ORIGIN","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_ROTATION","features":[393]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_ROTATION_ORIGIN","features":[393]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_CUBIC","features":[393]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_3DTRANSFORM_PROP","features":[393]},{"name":"D2D1_3DTRANSFORM_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_3DTRANSFORM_PROP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_3DTRANSFORM_PROP_TRANSFORM_MATRIX","features":[393]},{"name":"D2D1_ANTIALIAS_MODE","features":[393]},{"name":"D2D1_ANTIALIAS_MODE_ALIASED","features":[393]},{"name":"D2D1_ANTIALIAS_MODE_PER_PRIMITIVE","features":[393]},{"name":"D2D1_APPEND_ALIGNED_ELEMENT","features":[393]},{"name":"D2D1_ARC_SEGMENT","features":[394]},{"name":"D2D1_ARC_SIZE","features":[393]},{"name":"D2D1_ARC_SIZE_LARGE","features":[393]},{"name":"D2D1_ARC_SIZE_SMALL","features":[393]},{"name":"D2D1_ARITHMETICCOMPOSITE_PROP","features":[393]},{"name":"D2D1_ARITHMETICCOMPOSITE_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_ARITHMETICCOMPOSITE_PROP_COEFFICIENTS","features":[393]},{"name":"D2D1_ATLAS_PROP","features":[393]},{"name":"D2D1_ATLAS_PROP_INPUT_PADDING_RECT","features":[393]},{"name":"D2D1_ATLAS_PROP_INPUT_RECT","features":[393]},{"name":"D2D1_BITMAPSOURCE_ALPHA_MODE","features":[393]},{"name":"D2D1_BITMAPSOURCE_ALPHA_MODE_PREMULTIPLIED","features":[393]},{"name":"D2D1_BITMAPSOURCE_ALPHA_MODE_STRAIGHT","features":[393]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_CUBIC","features":[393]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_FANT","features":[393]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_MIPMAP_LINEAR","features":[393]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_DEFAULT","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE180","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE180_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE270","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE270_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE90","features":[393]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE90_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_BITMAPSOURCE_PROP","features":[393]},{"name":"D2D1_BITMAPSOURCE_PROP_ALPHA_MODE","features":[393]},{"name":"D2D1_BITMAPSOURCE_PROP_ENABLE_DPI_CORRECTION","features":[393]},{"name":"D2D1_BITMAPSOURCE_PROP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_BITMAPSOURCE_PROP_ORIENTATION","features":[393]},{"name":"D2D1_BITMAPSOURCE_PROP_SCALE","features":[393]},{"name":"D2D1_BITMAPSOURCE_PROP_WIC_BITMAP_SOURCE","features":[393]},{"name":"D2D1_BITMAP_BRUSH_PROPERTIES","features":[393]},{"name":"D2D1_BITMAP_BRUSH_PROPERTIES1","features":[393]},{"name":"D2D1_BITMAP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_BITMAP_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_BITMAP_OPTIONS","features":[393]},{"name":"D2D1_BITMAP_OPTIONS_CANNOT_DRAW","features":[393]},{"name":"D2D1_BITMAP_OPTIONS_CPU_READ","features":[393]},{"name":"D2D1_BITMAP_OPTIONS_GDI_COMPATIBLE","features":[393]},{"name":"D2D1_BITMAP_OPTIONS_NONE","features":[393]},{"name":"D2D1_BITMAP_OPTIONS_TARGET","features":[393]},{"name":"D2D1_BITMAP_PROPERTIES","features":[394,391]},{"name":"D2D1_BITMAP_PROPERTIES1","features":[394,391]},{"name":"D2D1_BLEND","features":[393]},{"name":"D2D1_BLEND_BLEND_FACTOR","features":[393]},{"name":"D2D1_BLEND_DESCRIPTION","features":[393]},{"name":"D2D1_BLEND_DEST_ALPHA","features":[393]},{"name":"D2D1_BLEND_DEST_COLOR","features":[393]},{"name":"D2D1_BLEND_INV_BLEND_FACTOR","features":[393]},{"name":"D2D1_BLEND_INV_DEST_ALPHA","features":[393]},{"name":"D2D1_BLEND_INV_DEST_COLOR","features":[393]},{"name":"D2D1_BLEND_INV_SRC_ALPHA","features":[393]},{"name":"D2D1_BLEND_INV_SRC_COLOR","features":[393]},{"name":"D2D1_BLEND_ONE","features":[393]},{"name":"D2D1_BLEND_OPERATION","features":[393]},{"name":"D2D1_BLEND_OPERATION_ADD","features":[393]},{"name":"D2D1_BLEND_OPERATION_MAX","features":[393]},{"name":"D2D1_BLEND_OPERATION_MIN","features":[393]},{"name":"D2D1_BLEND_OPERATION_REV_SUBTRACT","features":[393]},{"name":"D2D1_BLEND_OPERATION_SUBTRACT","features":[393]},{"name":"D2D1_BLEND_PROP","features":[393]},{"name":"D2D1_BLEND_PROP_MODE","features":[393]},{"name":"D2D1_BLEND_SRC_ALPHA","features":[393]},{"name":"D2D1_BLEND_SRC_ALPHA_SAT","features":[393]},{"name":"D2D1_BLEND_SRC_COLOR","features":[393]},{"name":"D2D1_BLEND_ZERO","features":[393]},{"name":"D2D1_BORDER_EDGE_MODE","features":[393]},{"name":"D2D1_BORDER_EDGE_MODE_CLAMP","features":[393]},{"name":"D2D1_BORDER_EDGE_MODE_MIRROR","features":[393]},{"name":"D2D1_BORDER_EDGE_MODE_WRAP","features":[393]},{"name":"D2D1_BORDER_PROP","features":[393]},{"name":"D2D1_BORDER_PROP_EDGE_MODE_X","features":[393]},{"name":"D2D1_BORDER_PROP_EDGE_MODE_Y","features":[393]},{"name":"D2D1_BRIGHTNESS_PROP","features":[393]},{"name":"D2D1_BRIGHTNESS_PROP_BLACK_POINT","features":[393]},{"name":"D2D1_BRIGHTNESS_PROP_WHITE_POINT","features":[393]},{"name":"D2D1_BRUSH_PROPERTIES","features":[68,393]},{"name":"D2D1_BUFFER_PRECISION","features":[393]},{"name":"D2D1_BUFFER_PRECISION_16BPC_FLOAT","features":[393]},{"name":"D2D1_BUFFER_PRECISION_16BPC_UNORM","features":[393]},{"name":"D2D1_BUFFER_PRECISION_32BPC_FLOAT","features":[393]},{"name":"D2D1_BUFFER_PRECISION_8BPC_UNORM","features":[393]},{"name":"D2D1_BUFFER_PRECISION_8BPC_UNORM_SRGB","features":[393]},{"name":"D2D1_BUFFER_PRECISION_UNKNOWN","features":[393]},{"name":"D2D1_CAP_STYLE","features":[393]},{"name":"D2D1_CAP_STYLE_FLAT","features":[393]},{"name":"D2D1_CAP_STYLE_ROUND","features":[393]},{"name":"D2D1_CAP_STYLE_SQUARE","features":[393]},{"name":"D2D1_CAP_STYLE_TRIANGLE","features":[393]},{"name":"D2D1_CHANGE_TYPE","features":[393]},{"name":"D2D1_CHANGE_TYPE_CONTEXT","features":[393]},{"name":"D2D1_CHANGE_TYPE_GRAPH","features":[393]},{"name":"D2D1_CHANGE_TYPE_NONE","features":[393]},{"name":"D2D1_CHANGE_TYPE_PROPERTIES","features":[393]},{"name":"D2D1_CHANNEL_DEPTH","features":[393]},{"name":"D2D1_CHANNEL_DEPTH_1","features":[393]},{"name":"D2D1_CHANNEL_DEPTH_4","features":[393]},{"name":"D2D1_CHANNEL_DEPTH_DEFAULT","features":[393]},{"name":"D2D1_CHANNEL_SELECTOR","features":[393]},{"name":"D2D1_CHANNEL_SELECTOR_A","features":[393]},{"name":"D2D1_CHANNEL_SELECTOR_B","features":[393]},{"name":"D2D1_CHANNEL_SELECTOR_G","features":[393]},{"name":"D2D1_CHANNEL_SELECTOR_R","features":[393]},{"name":"D2D1_CHROMAKEY_PROP","features":[393]},{"name":"D2D1_CHROMAKEY_PROP_COLOR","features":[393]},{"name":"D2D1_CHROMAKEY_PROP_FEATHER","features":[393]},{"name":"D2D1_CHROMAKEY_PROP_INVERT_ALPHA","features":[393]},{"name":"D2D1_CHROMAKEY_PROP_TOLERANCE","features":[393]},{"name":"D2D1_COLORMANAGEMENT_ALPHA_MODE","features":[393]},{"name":"D2D1_COLORMANAGEMENT_ALPHA_MODE_PREMULTIPLIED","features":[393]},{"name":"D2D1_COLORMANAGEMENT_ALPHA_MODE_STRAIGHT","features":[393]},{"name":"D2D1_COLORMANAGEMENT_PROP","features":[393]},{"name":"D2D1_COLORMANAGEMENT_PROP_ALPHA_MODE","features":[393]},{"name":"D2D1_COLORMANAGEMENT_PROP_DESTINATION_COLOR_CONTEXT","features":[393]},{"name":"D2D1_COLORMANAGEMENT_PROP_DESTINATION_RENDERING_INTENT","features":[393]},{"name":"D2D1_COLORMANAGEMENT_PROP_QUALITY","features":[393]},{"name":"D2D1_COLORMANAGEMENT_PROP_SOURCE_COLOR_CONTEXT","features":[393]},{"name":"D2D1_COLORMANAGEMENT_PROP_SOURCE_RENDERING_INTENT","features":[393]},{"name":"D2D1_COLORMANAGEMENT_QUALITY","features":[393]},{"name":"D2D1_COLORMANAGEMENT_QUALITY_BEST","features":[393]},{"name":"D2D1_COLORMANAGEMENT_QUALITY_NORMAL","features":[393]},{"name":"D2D1_COLORMANAGEMENT_QUALITY_PROOF","features":[393]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT","features":[393]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_ABSOLUTE_COLORIMETRIC","features":[393]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_PERCEPTUAL","features":[393]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_RELATIVE_COLORIMETRIC","features":[393]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_SATURATION","features":[393]},{"name":"D2D1_COLORMATRIX_PROP","features":[393]},{"name":"D2D1_COLORMATRIX_PROP_ALPHA_MODE","features":[393]},{"name":"D2D1_COLORMATRIX_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_COLORMATRIX_PROP_COLOR_MATRIX","features":[393]},{"name":"D2D1_COLOR_BITMAP_GLYPH_SNAP_OPTION","features":[393]},{"name":"D2D1_COLOR_BITMAP_GLYPH_SNAP_OPTION_DEFAULT","features":[393]},{"name":"D2D1_COLOR_BITMAP_GLYPH_SNAP_OPTION_DISABLE","features":[393]},{"name":"D2D1_COLOR_CONTEXT_TYPE","features":[393]},{"name":"D2D1_COLOR_CONTEXT_TYPE_DXGI","features":[393]},{"name":"D2D1_COLOR_CONTEXT_TYPE_ICC","features":[393]},{"name":"D2D1_COLOR_CONTEXT_TYPE_SIMPLE","features":[393]},{"name":"D2D1_COLOR_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_COLOR_INTERPOLATION_MODE_PREMULTIPLIED","features":[393]},{"name":"D2D1_COLOR_INTERPOLATION_MODE_STRAIGHT","features":[393]},{"name":"D2D1_COLOR_SPACE","features":[393]},{"name":"D2D1_COLOR_SPACE_CUSTOM","features":[393]},{"name":"D2D1_COLOR_SPACE_SCRGB","features":[393]},{"name":"D2D1_COLOR_SPACE_SRGB","features":[393]},{"name":"D2D1_COMBINE_MODE","features":[393]},{"name":"D2D1_COMBINE_MODE_EXCLUDE","features":[393]},{"name":"D2D1_COMBINE_MODE_INTERSECT","features":[393]},{"name":"D2D1_COMBINE_MODE_UNION","features":[393]},{"name":"D2D1_COMBINE_MODE_XOR","features":[393]},{"name":"D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS","features":[393]},{"name":"D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_GDI_COMPATIBLE","features":[393]},{"name":"D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE","features":[393]},{"name":"D2D1_COMPOSITE_PROP","features":[393]},{"name":"D2D1_COMPOSITE_PROP_MODE","features":[393]},{"name":"D2D1_CONTRAST_PROP","features":[393]},{"name":"D2D1_CONTRAST_PROP_CLAMP_INPUT","features":[393]},{"name":"D2D1_CONTRAST_PROP_CONTRAST","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_BIAS","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_DIVISOR","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_MATRIX","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_OFFSET","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_SIZE_X","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_SIZE_Y","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_UNIT_LENGTH","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_PRESERVE_ALPHA","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_CREATION_PROPERTIES","features":[393]},{"name":"D2D1_CROP_PROP","features":[393]},{"name":"D2D1_CROP_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_CROP_PROP_RECT","features":[393]},{"name":"D2D1_CROSSFADE_PROP","features":[393]},{"name":"D2D1_CROSSFADE_PROP_WEIGHT","features":[393]},{"name":"D2D1_CUSTOM_VERTEX_BUFFER_PROPERTIES","features":[393,391]},{"name":"D2D1_DASH_STYLE","features":[393]},{"name":"D2D1_DASH_STYLE_CUSTOM","features":[393]},{"name":"D2D1_DASH_STYLE_DASH","features":[393]},{"name":"D2D1_DASH_STYLE_DASH_DOT","features":[393]},{"name":"D2D1_DASH_STYLE_DASH_DOT_DOT","features":[393]},{"name":"D2D1_DASH_STYLE_DOT","features":[393]},{"name":"D2D1_DASH_STYLE_SOLID","features":[393]},{"name":"D2D1_DC_INITIALIZE_MODE","features":[393]},{"name":"D2D1_DC_INITIALIZE_MODE_CLEAR","features":[393]},{"name":"D2D1_DC_INITIALIZE_MODE_COPY","features":[393]},{"name":"D2D1_DEBUG_LEVEL","features":[393]},{"name":"D2D1_DEBUG_LEVEL_ERROR","features":[393]},{"name":"D2D1_DEBUG_LEVEL_INFORMATION","features":[393]},{"name":"D2D1_DEBUG_LEVEL_NONE","features":[393]},{"name":"D2D1_DEBUG_LEVEL_WARNING","features":[393]},{"name":"D2D1_DEFAULT_FLATTENING_TOLERANCE","features":[393]},{"name":"D2D1_DEVICE_CONTEXT_OPTIONS","features":[393]},{"name":"D2D1_DEVICE_CONTEXT_OPTIONS_ENABLE_MULTITHREADED_OPTIMIZATIONS","features":[393]},{"name":"D2D1_DEVICE_CONTEXT_OPTIONS_NONE","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION_BALANCED","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION_QUALITY","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION_SPEED","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_PROP","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_PROP_ANGLE","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_PROP_OPTIMIZATION","features":[393]},{"name":"D2D1_DIRECTIONALBLUR_PROP_STANDARD_DEVIATION","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_ALPHA_DISABLE","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_ALPHA_TABLE","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_BLUE_DISABLE","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_BLUE_TABLE","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_GREEN_DISABLE","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_GREEN_TABLE","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_RED_DISABLE","features":[393]},{"name":"D2D1_DISCRETETRANSFER_PROP_RED_TABLE","features":[393]},{"name":"D2D1_DISPLACEMENTMAP_PROP","features":[393]},{"name":"D2D1_DISPLACEMENTMAP_PROP_SCALE","features":[393]},{"name":"D2D1_DISPLACEMENTMAP_PROP_X_CHANNEL_SELECT","features":[393]},{"name":"D2D1_DISPLACEMENTMAP_PROP_Y_CHANNEL_SELECT","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP_AZIMUTH","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP_COLOR","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP_DIFFUSE_CONSTANT","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP_ELEVATION","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP_KERNEL_UNIT_LENGTH","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_PROP_SURFACE_SCALE","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_AZIMUTH","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_COLOR","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_ELEVATION","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_KERNEL_UNIT_LENGTH","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_SPECULAR_CONSTANT","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_SPECULAR_EXPONENT","features":[393]},{"name":"D2D1_DISTANTSPECULAR_PROP_SURFACE_SCALE","features":[393]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE","features":[393]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_CUBIC","features":[393]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_DPICOMPENSATION_PROP","features":[393]},{"name":"D2D1_DPICOMPENSATION_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_DPICOMPENSATION_PROP_INPUT_DPI","features":[393]},{"name":"D2D1_DPICOMPENSATION_PROP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_DRAWING_STATE_DESCRIPTION","features":[68,393]},{"name":"D2D1_DRAWING_STATE_DESCRIPTION1","features":[68,393]},{"name":"D2D1_DRAW_TEXT_OPTIONS","features":[393]},{"name":"D2D1_DRAW_TEXT_OPTIONS_CLIP","features":[393]},{"name":"D2D1_DRAW_TEXT_OPTIONS_DISABLE_COLOR_BITMAP_SNAPPING","features":[393]},{"name":"D2D1_DRAW_TEXT_OPTIONS_ENABLE_COLOR_FONT","features":[393]},{"name":"D2D1_DRAW_TEXT_OPTIONS_NONE","features":[393]},{"name":"D2D1_DRAW_TEXT_OPTIONS_NO_SNAP","features":[393]},{"name":"D2D1_EDGEDETECTION_MODE","features":[393]},{"name":"D2D1_EDGEDETECTION_MODE_PREWITT","features":[393]},{"name":"D2D1_EDGEDETECTION_MODE_SOBEL","features":[393]},{"name":"D2D1_EDGEDETECTION_PROP","features":[393]},{"name":"D2D1_EDGEDETECTION_PROP_ALPHA_MODE","features":[393]},{"name":"D2D1_EDGEDETECTION_PROP_BLUR_RADIUS","features":[393]},{"name":"D2D1_EDGEDETECTION_PROP_MODE","features":[393]},{"name":"D2D1_EDGEDETECTION_PROP_OVERLAY_EDGES","features":[393]},{"name":"D2D1_EDGEDETECTION_PROP_STRENGTH","features":[393]},{"name":"D2D1_EFFECT_INPUT_DESCRIPTION","features":[394]},{"name":"D2D1_ELLIPSE","features":[394]},{"name":"D2D1_EMBOSS_PROP","features":[393]},{"name":"D2D1_EMBOSS_PROP_DIRECTION","features":[393]},{"name":"D2D1_EMBOSS_PROP_HEIGHT","features":[393]},{"name":"D2D1_EXPOSURE_PROP","features":[393]},{"name":"D2D1_EXPOSURE_PROP_EXPOSURE_VALUE","features":[393]},{"name":"D2D1_EXTEND_MODE","features":[393]},{"name":"D2D1_EXTEND_MODE_CLAMP","features":[393]},{"name":"D2D1_EXTEND_MODE_MIRROR","features":[393]},{"name":"D2D1_EXTEND_MODE_WRAP","features":[393]},{"name":"D2D1_FACTORY_OPTIONS","features":[393]},{"name":"D2D1_FACTORY_TYPE","features":[393]},{"name":"D2D1_FACTORY_TYPE_MULTI_THREADED","features":[393]},{"name":"D2D1_FACTORY_TYPE_SINGLE_THREADED","features":[393]},{"name":"D2D1_FEATURE","features":[393]},{"name":"D2D1_FEATURE_D3D10_X_HARDWARE_OPTIONS","features":[393]},{"name":"D2D1_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS","features":[303,393]},{"name":"D2D1_FEATURE_DATA_DOUBLES","features":[303,393]},{"name":"D2D1_FEATURE_DOUBLES","features":[393]},{"name":"D2D1_FEATURE_LEVEL","features":[393]},{"name":"D2D1_FEATURE_LEVEL_10","features":[393]},{"name":"D2D1_FEATURE_LEVEL_9","features":[393]},{"name":"D2D1_FEATURE_LEVEL_DEFAULT","features":[393]},{"name":"D2D1_FILTER","features":[393]},{"name":"D2D1_FILTER_ANISOTROPIC","features":[393]},{"name":"D2D1_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[393]},{"name":"D2D1_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[393]},{"name":"D2D1_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[393]},{"name":"D2D1_FILTER_MIN_MAG_MIP_LINEAR","features":[393]},{"name":"D2D1_FILTER_MIN_MAG_MIP_POINT","features":[393]},{"name":"D2D1_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[393]},{"name":"D2D1_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[393]},{"name":"D2D1_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[393]},{"name":"D2D1_FLOOD_PROP","features":[393]},{"name":"D2D1_FLOOD_PROP_COLOR","features":[393]},{"name":"D2D1_GAMMA","features":[393]},{"name":"D2D1_GAMMA1","features":[393]},{"name":"D2D1_GAMMA1_G10","features":[393]},{"name":"D2D1_GAMMA1_G2084","features":[393]},{"name":"D2D1_GAMMA1_G22","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_AMPLITUDE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_DISABLE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_EXPONENT","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_OFFSET","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_AMPLITUDE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_DISABLE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_EXPONENT","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_OFFSET","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_AMPLITUDE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_DISABLE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_EXPONENT","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_OFFSET","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_AMPLITUDE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_DISABLE","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_EXPONENT","features":[393]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_OFFSET","features":[393]},{"name":"D2D1_GAMMA_1_0","features":[393]},{"name":"D2D1_GAMMA_2_2","features":[393]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION","features":[393]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION_BALANCED","features":[393]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION_QUALITY","features":[393]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION_SPEED","features":[393]},{"name":"D2D1_GAUSSIANBLUR_PROP","features":[393]},{"name":"D2D1_GAUSSIANBLUR_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_GAUSSIANBLUR_PROP_OPTIMIZATION","features":[393]},{"name":"D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION","features":[393]},{"name":"D2D1_GEOMETRY_RELATION","features":[393]},{"name":"D2D1_GEOMETRY_RELATION_CONTAINS","features":[393]},{"name":"D2D1_GEOMETRY_RELATION_DISJOINT","features":[393]},{"name":"D2D1_GEOMETRY_RELATION_IS_CONTAINED","features":[393]},{"name":"D2D1_GEOMETRY_RELATION_OVERLAP","features":[393]},{"name":"D2D1_GEOMETRY_RELATION_UNKNOWN","features":[393]},{"name":"D2D1_GEOMETRY_SIMPLIFICATION_OPTION","features":[393]},{"name":"D2D1_GEOMETRY_SIMPLIFICATION_OPTION_CUBICS_AND_LINES","features":[393]},{"name":"D2D1_GEOMETRY_SIMPLIFICATION_OPTION_LINES","features":[393]},{"name":"D2D1_GRADIENT_MESH_PATCH","features":[394]},{"name":"D2D1_HDRTONEMAP_DISPLAY_MODE","features":[393]},{"name":"D2D1_HDRTONEMAP_DISPLAY_MODE_HDR","features":[393]},{"name":"D2D1_HDRTONEMAP_DISPLAY_MODE_SDR","features":[393]},{"name":"D2D1_HDRTONEMAP_PROP","features":[393]},{"name":"D2D1_HDRTONEMAP_PROP_DISPLAY_MODE","features":[393]},{"name":"D2D1_HDRTONEMAP_PROP_INPUT_MAX_LUMINANCE","features":[393]},{"name":"D2D1_HDRTONEMAP_PROP_OUTPUT_MAX_LUMINANCE","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_INPUT_GAMMA","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_INPUT_GAMMA_LINEAR","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_INPUT_GAMMA_SRGB","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_CLARITY","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_HIGHLIGHTS","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_INPUT_GAMMA","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_MASK_BLUR_RADIUS","features":[393]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_SHADOWS","features":[393]},{"name":"D2D1_HISTOGRAM_PROP","features":[393]},{"name":"D2D1_HISTOGRAM_PROP_CHANNEL_SELECT","features":[393]},{"name":"D2D1_HISTOGRAM_PROP_HISTOGRAM_OUTPUT","features":[393]},{"name":"D2D1_HISTOGRAM_PROP_NUM_BINS","features":[393]},{"name":"D2D1_HUEROTATION_PROP","features":[393]},{"name":"D2D1_HUEROTATION_PROP_ANGLE","features":[393]},{"name":"D2D1_HUETORGB_INPUT_COLOR_SPACE","features":[393]},{"name":"D2D1_HUETORGB_INPUT_COLOR_SPACE_HUE_SATURATION_LIGHTNESS","features":[393]},{"name":"D2D1_HUETORGB_INPUT_COLOR_SPACE_HUE_SATURATION_VALUE","features":[393]},{"name":"D2D1_HUETORGB_PROP","features":[393]},{"name":"D2D1_HUETORGB_PROP_INPUT_COLOR_SPACE","features":[393]},{"name":"D2D1_HWND_RENDER_TARGET_PROPERTIES","features":[303,394]},{"name":"D2D1_IMAGE_BRUSH_PROPERTIES","features":[394]},{"name":"D2D1_IMAGE_SOURCE_FROM_DXGI_OPTIONS","features":[393]},{"name":"D2D1_IMAGE_SOURCE_FROM_DXGI_OPTIONS_LOW_QUALITY_PRIMARY_CONVERSION","features":[393]},{"name":"D2D1_IMAGE_SOURCE_FROM_DXGI_OPTIONS_NONE","features":[393]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS","features":[393]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS_CACHE_ON_DEMAND","features":[393]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS_NONE","features":[393]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS_RELEASE_SOURCE","features":[393]},{"name":"D2D1_INK_BEZIER_SEGMENT","features":[393]},{"name":"D2D1_INK_NIB_SHAPE","features":[393]},{"name":"D2D1_INK_NIB_SHAPE_ROUND","features":[393]},{"name":"D2D1_INK_NIB_SHAPE_SQUARE","features":[393]},{"name":"D2D1_INK_POINT","features":[393]},{"name":"D2D1_INK_STYLE_PROPERTIES","features":[68,393]},{"name":"D2D1_INPUT_DESCRIPTION","features":[393]},{"name":"D2D1_INPUT_ELEMENT_DESC","features":[393,391]},{"name":"D2D1_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_CUBIC","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_ANISOTROPIC","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_CUBIC","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_FANT","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_LINEAR","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_MIPMAP_LINEAR","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_LAYER_OPTIONS","features":[393]},{"name":"D2D1_LAYER_OPTIONS1","features":[393]},{"name":"D2D1_LAYER_OPTIONS1_IGNORE_ALPHA","features":[393]},{"name":"D2D1_LAYER_OPTIONS1_INITIALIZE_FROM_BACKGROUND","features":[393]},{"name":"D2D1_LAYER_OPTIONS1_NONE","features":[393]},{"name":"D2D1_LAYER_OPTIONS_INITIALIZE_FOR_CLEARTYPE","features":[393]},{"name":"D2D1_LAYER_OPTIONS_NONE","features":[393]},{"name":"D2D1_LAYER_PARAMETERS","features":[68,394]},{"name":"D2D1_LAYER_PARAMETERS1","features":[68,394]},{"name":"D2D1_LINEARTRANSFER_PROP","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_ALPHA_DISABLE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_ALPHA_SLOPE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_ALPHA_Y_INTERCEPT","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_BLUE_DISABLE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_BLUE_SLOPE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_BLUE_Y_INTERCEPT","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_GREEN_DISABLE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_GREEN_SLOPE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_GREEN_Y_INTERCEPT","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_RED_DISABLE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_RED_SLOPE","features":[393]},{"name":"D2D1_LINEARTRANSFER_PROP_RED_Y_INTERCEPT","features":[393]},{"name":"D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES","features":[394]},{"name":"D2D1_LINE_JOIN","features":[393]},{"name":"D2D1_LINE_JOIN_BEVEL","features":[393]},{"name":"D2D1_LINE_JOIN_MITER","features":[393]},{"name":"D2D1_LINE_JOIN_MITER_OR_BEVEL","features":[393]},{"name":"D2D1_LINE_JOIN_ROUND","features":[393]},{"name":"D2D1_LOOKUPTABLE3D_PROP","features":[393]},{"name":"D2D1_LOOKUPTABLE3D_PROP_ALPHA_MODE","features":[393]},{"name":"D2D1_LOOKUPTABLE3D_PROP_LUT","features":[393]},{"name":"D2D1_MAPPED_RECT","features":[393]},{"name":"D2D1_MAP_OPTIONS","features":[393]},{"name":"D2D1_MAP_OPTIONS_DISCARD","features":[393]},{"name":"D2D1_MAP_OPTIONS_NONE","features":[393]},{"name":"D2D1_MAP_OPTIONS_READ","features":[393]},{"name":"D2D1_MAP_OPTIONS_WRITE","features":[393]},{"name":"D2D1_MORPHOLOGY_MODE","features":[393]},{"name":"D2D1_MORPHOLOGY_MODE_DILATE","features":[393]},{"name":"D2D1_MORPHOLOGY_MODE_ERODE","features":[393]},{"name":"D2D1_MORPHOLOGY_PROP","features":[393]},{"name":"D2D1_MORPHOLOGY_PROP_HEIGHT","features":[393]},{"name":"D2D1_MORPHOLOGY_PROP_MODE","features":[393]},{"name":"D2D1_MORPHOLOGY_PROP_WIDTH","features":[393]},{"name":"D2D1_OPACITYMETADATA_PROP","features":[393]},{"name":"D2D1_OPACITYMETADATA_PROP_INPUT_OPAQUE_RECT","features":[393]},{"name":"D2D1_OPACITY_MASK_CONTENT","features":[393]},{"name":"D2D1_OPACITY_MASK_CONTENT_GRAPHICS","features":[393]},{"name":"D2D1_OPACITY_MASK_CONTENT_TEXT_GDI_COMPATIBLE","features":[393]},{"name":"D2D1_OPACITY_MASK_CONTENT_TEXT_NATURAL","features":[393]},{"name":"D2D1_OPACITY_PROP","features":[393]},{"name":"D2D1_OPACITY_PROP_OPACITY","features":[393]},{"name":"D2D1_ORIENTATION","features":[393]},{"name":"D2D1_ORIENTATION_DEFAULT","features":[393]},{"name":"D2D1_ORIENTATION_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE180","features":[393]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE180_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE270","features":[393]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE270_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE90","features":[393]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE90_FLIP_HORIZONTAL","features":[393]},{"name":"D2D1_PATCH_EDGE_MODE","features":[393]},{"name":"D2D1_PATCH_EDGE_MODE_ALIASED","features":[393]},{"name":"D2D1_PATCH_EDGE_MODE_ALIASED_INFLATED","features":[393]},{"name":"D2D1_PATCH_EDGE_MODE_ANTIALIASED","features":[393]},{"name":"D2D1_PIXEL_OPTIONS","features":[393]},{"name":"D2D1_PIXEL_OPTIONS_NONE","features":[393]},{"name":"D2D1_PIXEL_OPTIONS_TRIVIAL_SAMPLING","features":[393]},{"name":"D2D1_POINTDIFFUSE_PROP","features":[393]},{"name":"D2D1_POINTDIFFUSE_PROP_COLOR","features":[393]},{"name":"D2D1_POINTDIFFUSE_PROP_DIFFUSE_CONSTANT","features":[393]},{"name":"D2D1_POINTDIFFUSE_PROP_KERNEL_UNIT_LENGTH","features":[393]},{"name":"D2D1_POINTDIFFUSE_PROP_LIGHT_POSITION","features":[393]},{"name":"D2D1_POINTDIFFUSE_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_POINTDIFFUSE_PROP_SURFACE_SCALE","features":[393]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE","features":[393]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP_COLOR","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP_KERNEL_UNIT_LENGTH","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP_LIGHT_POSITION","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP_SPECULAR_CONSTANT","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP_SPECULAR_EXPONENT","features":[393]},{"name":"D2D1_POINTSPECULAR_PROP_SURFACE_SCALE","features":[393]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE","features":[393]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_POINT_DESCRIPTION","features":[394]},{"name":"D2D1_POSTERIZE_PROP","features":[393]},{"name":"D2D1_POSTERIZE_PROP_BLUE_VALUE_COUNT","features":[393]},{"name":"D2D1_POSTERIZE_PROP_GREEN_VALUE_COUNT","features":[393]},{"name":"D2D1_POSTERIZE_PROP_RED_VALUE_COUNT","features":[393]},{"name":"D2D1_PRESENT_OPTIONS","features":[393]},{"name":"D2D1_PRESENT_OPTIONS_IMMEDIATELY","features":[393]},{"name":"D2D1_PRESENT_OPTIONS_NONE","features":[393]},{"name":"D2D1_PRESENT_OPTIONS_RETAIN_CONTENTS","features":[393]},{"name":"D2D1_PRIMITIVE_BLEND","features":[393]},{"name":"D2D1_PRIMITIVE_BLEND_ADD","features":[393]},{"name":"D2D1_PRIMITIVE_BLEND_COPY","features":[393]},{"name":"D2D1_PRIMITIVE_BLEND_MAX","features":[393]},{"name":"D2D1_PRIMITIVE_BLEND_MIN","features":[393]},{"name":"D2D1_PRIMITIVE_BLEND_SOURCE_OVER","features":[393]},{"name":"D2D1_PRINT_CONTROL_PROPERTIES","features":[393]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE","features":[393]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE_DEFAULT","features":[393]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE_EACHPAGE","features":[393]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE_NONE","features":[393]},{"name":"D2D1_PROPERTY","features":[393]},{"name":"D2D1_PROPERTY_AUTHOR","features":[393]},{"name":"D2D1_PROPERTY_BINDING","features":[393]},{"name":"D2D1_PROPERTY_CACHED","features":[393]},{"name":"D2D1_PROPERTY_CATEGORY","features":[393]},{"name":"D2D1_PROPERTY_CLSID","features":[393]},{"name":"D2D1_PROPERTY_DESCRIPTION","features":[393]},{"name":"D2D1_PROPERTY_DISPLAYNAME","features":[393]},{"name":"D2D1_PROPERTY_INPUTS","features":[393]},{"name":"D2D1_PROPERTY_MAX_INPUTS","features":[393]},{"name":"D2D1_PROPERTY_MIN_INPUTS","features":[393]},{"name":"D2D1_PROPERTY_PRECISION","features":[393]},{"name":"D2D1_PROPERTY_TYPE","features":[393]},{"name":"D2D1_PROPERTY_TYPE_ARRAY","features":[393]},{"name":"D2D1_PROPERTY_TYPE_BLOB","features":[393]},{"name":"D2D1_PROPERTY_TYPE_BOOL","features":[393]},{"name":"D2D1_PROPERTY_TYPE_CLSID","features":[393]},{"name":"D2D1_PROPERTY_TYPE_COLOR_CONTEXT","features":[393]},{"name":"D2D1_PROPERTY_TYPE_ENUM","features":[393]},{"name":"D2D1_PROPERTY_TYPE_FLOAT","features":[393]},{"name":"D2D1_PROPERTY_TYPE_INT32","features":[393]},{"name":"D2D1_PROPERTY_TYPE_IUNKNOWN","features":[393]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_3X2","features":[393]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_4X3","features":[393]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_4X4","features":[393]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_5X4","features":[393]},{"name":"D2D1_PROPERTY_TYPE_STRING","features":[393]},{"name":"D2D1_PROPERTY_TYPE_UINT32","features":[393]},{"name":"D2D1_PROPERTY_TYPE_UNKNOWN","features":[393]},{"name":"D2D1_PROPERTY_TYPE_VECTOR2","features":[393]},{"name":"D2D1_PROPERTY_TYPE_VECTOR3","features":[393]},{"name":"D2D1_PROPERTY_TYPE_VECTOR4","features":[393]},{"name":"D2D1_QUADRATIC_BEZIER_SEGMENT","features":[394]},{"name":"D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES","features":[394]},{"name":"D2D1_RENDERING_CONTROLS","features":[394]},{"name":"D2D1_RENDERING_PRIORITY","features":[393]},{"name":"D2D1_RENDERING_PRIORITY_LOW","features":[393]},{"name":"D2D1_RENDERING_PRIORITY_NORMAL","features":[393]},{"name":"D2D1_RENDER_TARGET_PROPERTIES","features":[394,391]},{"name":"D2D1_RENDER_TARGET_TYPE","features":[393]},{"name":"D2D1_RENDER_TARGET_TYPE_DEFAULT","features":[393]},{"name":"D2D1_RENDER_TARGET_TYPE_HARDWARE","features":[393]},{"name":"D2D1_RENDER_TARGET_TYPE_SOFTWARE","features":[393]},{"name":"D2D1_RENDER_TARGET_USAGE","features":[393]},{"name":"D2D1_RENDER_TARGET_USAGE_FORCE_BITMAP_REMOTING","features":[393]},{"name":"D2D1_RENDER_TARGET_USAGE_GDI_COMPATIBLE","features":[393]},{"name":"D2D1_RENDER_TARGET_USAGE_NONE","features":[393]},{"name":"D2D1_RESOURCE_TEXTURE_PROPERTIES","features":[393]},{"name":"D2D1_RGBTOHUE_OUTPUT_COLOR_SPACE","features":[393]},{"name":"D2D1_RGBTOHUE_OUTPUT_COLOR_SPACE_HUE_SATURATION_LIGHTNESS","features":[393]},{"name":"D2D1_RGBTOHUE_OUTPUT_COLOR_SPACE_HUE_SATURATION_VALUE","features":[393]},{"name":"D2D1_RGBTOHUE_PROP","features":[393]},{"name":"D2D1_RGBTOHUE_PROP_OUTPUT_COLOR_SPACE","features":[393]},{"name":"D2D1_ROUNDED_RECT","features":[394]},{"name":"D2D1_SATURATION_PROP","features":[393]},{"name":"D2D1_SATURATION_PROP_SATURATION","features":[393]},{"name":"D2D1_SCALE_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_CUBIC","features":[393]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_SCALE_PROP","features":[393]},{"name":"D2D1_SCALE_PROP_BORDER_MODE","features":[393]},{"name":"D2D1_SCALE_PROP_CENTER_POINT","features":[393]},{"name":"D2D1_SCALE_PROP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_SCALE_PROP_SCALE","features":[393]},{"name":"D2D1_SCALE_PROP_SHARPNESS","features":[393]},{"name":"D2D1_SCENE_REFERRED_SDR_WHITE_LEVEL","features":[393]},{"name":"D2D1_SEPIA_PROP","features":[393]},{"name":"D2D1_SEPIA_PROP_ALPHA_MODE","features":[393]},{"name":"D2D1_SEPIA_PROP_INTENSITY","features":[393]},{"name":"D2D1_SHADOW_OPTIMIZATION","features":[393]},{"name":"D2D1_SHADOW_OPTIMIZATION_BALANCED","features":[393]},{"name":"D2D1_SHADOW_OPTIMIZATION_QUALITY","features":[393]},{"name":"D2D1_SHADOW_OPTIMIZATION_SPEED","features":[393]},{"name":"D2D1_SHADOW_PROP","features":[393]},{"name":"D2D1_SHADOW_PROP_BLUR_STANDARD_DEVIATION","features":[393]},{"name":"D2D1_SHADOW_PROP_COLOR","features":[393]},{"name":"D2D1_SHADOW_PROP_OPTIMIZATION","features":[393]},{"name":"D2D1_SHARPEN_PROP","features":[393]},{"name":"D2D1_SHARPEN_PROP_SHARPNESS","features":[393]},{"name":"D2D1_SHARPEN_PROP_THRESHOLD","features":[393]},{"name":"D2D1_SIMPLE_COLOR_PROFILE","features":[394]},{"name":"D2D1_SPOTDIFFUSE_PROP","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_COLOR","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_DIFFUSE_CONSTANT","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_FOCUS","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_KERNEL_UNIT_LENGTH","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_LIGHT_POSITION","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_LIMITING_CONE_ANGLE","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_POINTS_AT","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_SPOTDIFFUSE_PROP_SURFACE_SCALE","features":[393]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE","features":[393]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_COLOR","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_FOCUS","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_KERNEL_UNIT_LENGTH","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_LIGHT_POSITION","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_LIMITING_CONE_ANGLE","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_POINTS_AT","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_SPECULAR_CONSTANT","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_SPECULAR_EXPONENT","features":[393]},{"name":"D2D1_SPOTSPECULAR_PROP_SURFACE_SCALE","features":[393]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE","features":[393]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_SPRITE_OPTIONS","features":[393]},{"name":"D2D1_SPRITE_OPTIONS_CLAMP_TO_SOURCE_RECTANGLE","features":[393]},{"name":"D2D1_SPRITE_OPTIONS_NONE","features":[393]},{"name":"D2D1_STRAIGHTEN_PROP","features":[393]},{"name":"D2D1_STRAIGHTEN_PROP_ANGLE","features":[393]},{"name":"D2D1_STRAIGHTEN_PROP_MAINTAIN_SIZE","features":[393]},{"name":"D2D1_STRAIGHTEN_PROP_SCALE_MODE","features":[393]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE","features":[393]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_CUBIC","features":[393]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_LINEAR","features":[393]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_STROKE_STYLE_PROPERTIES","features":[393]},{"name":"D2D1_STROKE_STYLE_PROPERTIES1","features":[393]},{"name":"D2D1_STROKE_TRANSFORM_TYPE","features":[393]},{"name":"D2D1_STROKE_TRANSFORM_TYPE_FIXED","features":[393]},{"name":"D2D1_STROKE_TRANSFORM_TYPE_HAIRLINE","features":[393]},{"name":"D2D1_STROKE_TRANSFORM_TYPE_NORMAL","features":[393]},{"name":"D2D1_SUBPROPERTY","features":[393]},{"name":"D2D1_SUBPROPERTY_DEFAULT","features":[393]},{"name":"D2D1_SUBPROPERTY_DISPLAYNAME","features":[393]},{"name":"D2D1_SUBPROPERTY_FIELDS","features":[393]},{"name":"D2D1_SUBPROPERTY_INDEX","features":[393]},{"name":"D2D1_SUBPROPERTY_ISREADONLY","features":[393]},{"name":"D2D1_SUBPROPERTY_MAX","features":[393]},{"name":"D2D1_SUBPROPERTY_MIN","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_NONE","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MAX_Y_MAX","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MAX_Y_MID","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MAX_Y_MIN","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MID_Y_MAX","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MID_Y_MID","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MID_Y_MIN","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MIN_Y_MAX","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MIN_Y_MID","features":[393]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MIN_Y_MIN","features":[393]},{"name":"D2D1_SVG_ASPECT_SCALING","features":[393]},{"name":"D2D1_SVG_ASPECT_SCALING_MEET","features":[393]},{"name":"D2D1_SVG_ASPECT_SCALING_SLICE","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_COLOR","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_DISPLAY","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_EXTEND_MODE","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_FILL_MODE","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_FLOAT","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_LENGTH","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_LINE_CAP","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_LINE_JOIN","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_MATRIX","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_OVERFLOW","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_PRESERVE_ASPECT_RATIO","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_UNIT_TYPE","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_VIEWBOX","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_VISIBILITY","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_STRING_TYPE","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_STRING_TYPE_ID","features":[393]},{"name":"D2D1_SVG_ATTRIBUTE_STRING_TYPE_SVG","features":[393]},{"name":"D2D1_SVG_DISPLAY","features":[393]},{"name":"D2D1_SVG_DISPLAY_INLINE","features":[393]},{"name":"D2D1_SVG_DISPLAY_NONE","features":[393]},{"name":"D2D1_SVG_LENGTH","features":[393]},{"name":"D2D1_SVG_LENGTH_UNITS","features":[393]},{"name":"D2D1_SVG_LENGTH_UNITS_NUMBER","features":[393]},{"name":"D2D1_SVG_LENGTH_UNITS_PERCENTAGE","features":[393]},{"name":"D2D1_SVG_LINE_CAP","features":[393]},{"name":"D2D1_SVG_LINE_CAP_BUTT","features":[393]},{"name":"D2D1_SVG_LINE_CAP_ROUND","features":[393]},{"name":"D2D1_SVG_LINE_CAP_SQUARE","features":[393]},{"name":"D2D1_SVG_LINE_JOIN","features":[393]},{"name":"D2D1_SVG_LINE_JOIN_BEVEL","features":[393]},{"name":"D2D1_SVG_LINE_JOIN_MITER","features":[393]},{"name":"D2D1_SVG_LINE_JOIN_ROUND","features":[393]},{"name":"D2D1_SVG_OVERFLOW","features":[393]},{"name":"D2D1_SVG_OVERFLOW_HIDDEN","features":[393]},{"name":"D2D1_SVG_OVERFLOW_VISIBLE","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE_COLOR","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE_CURRENT_COLOR","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE_NONE","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE_URI","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE_URI_COLOR","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE_URI_CURRENT_COLOR","features":[393]},{"name":"D2D1_SVG_PAINT_TYPE_URI_NONE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_ARC_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_ARC_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_CLOSE_PATH","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_SMOOTH_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_SMOOTH_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_HORIZONTAL_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_HORIZONTAL_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_LINE_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_LINE_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_MOVE_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_MOVE_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_SMOOTH_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_SMOOTH_RELATIVE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_VERTICAL_ABSOLUTE","features":[393]},{"name":"D2D1_SVG_PATH_COMMAND_VERTICAL_RELATIVE","features":[393]},{"name":"D2D1_SVG_PRESERVE_ASPECT_RATIO","features":[303,393]},{"name":"D2D1_SVG_UNIT_TYPE","features":[393]},{"name":"D2D1_SVG_UNIT_TYPE_OBJECT_BOUNDING_BOX","features":[393]},{"name":"D2D1_SVG_UNIT_TYPE_USER_SPACE_ON_USE","features":[393]},{"name":"D2D1_SVG_VIEWBOX","features":[393]},{"name":"D2D1_SVG_VISIBILITY","features":[393]},{"name":"D2D1_SVG_VISIBILITY_HIDDEN","features":[393]},{"name":"D2D1_SVG_VISIBILITY_VISIBLE","features":[393]},{"name":"D2D1_SWEEP_DIRECTION","features":[393]},{"name":"D2D1_SWEEP_DIRECTION_CLOCKWISE","features":[393]},{"name":"D2D1_SWEEP_DIRECTION_COUNTER_CLOCKWISE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_ALPHA_DISABLE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_ALPHA_TABLE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_BLUE_DISABLE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_BLUE_TABLE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_GREEN_DISABLE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_GREEN_TABLE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_RED_DISABLE","features":[393]},{"name":"D2D1_TABLETRANSFER_PROP_RED_TABLE","features":[393]},{"name":"D2D1_TEMPERATUREANDTINT_PROP","features":[393]},{"name":"D2D1_TEMPERATUREANDTINT_PROP_TEMPERATURE","features":[393]},{"name":"D2D1_TEMPERATUREANDTINT_PROP_TINT","features":[393]},{"name":"D2D1_TEXT_ANTIALIAS_MODE","features":[393]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_ALIASED","features":[393]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_CLEARTYPE","features":[393]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_DEFAULT","features":[393]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_GRAYSCALE","features":[393]},{"name":"D2D1_THREADING_MODE","features":[393]},{"name":"D2D1_THREADING_MODE_MULTI_THREADED","features":[393]},{"name":"D2D1_THREADING_MODE_SINGLE_THREADED","features":[393]},{"name":"D2D1_TILE_PROP","features":[393]},{"name":"D2D1_TILE_PROP_RECT","features":[393]},{"name":"D2D1_TINT_PROP","features":[393]},{"name":"D2D1_TINT_PROP_CLAMP_OUTPUT","features":[393]},{"name":"D2D1_TINT_PROP_COLOR","features":[393]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_OPTIONS","features":[393]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_OPTIONS_DISABLE_DPI_SCALE","features":[393]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_OPTIONS_NONE","features":[393]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_PROPERTIES","features":[393]},{"name":"D2D1_TRIANGLE","features":[394]},{"name":"D2D1_TURBULENCE_PROP","features":[393]},{"name":"D2D1_TURBULENCE_PROP_BASE_FREQUENCY","features":[393]},{"name":"D2D1_TURBULENCE_PROP_NOISE","features":[393]},{"name":"D2D1_TURBULENCE_PROP_NUM_OCTAVES","features":[393]},{"name":"D2D1_TURBULENCE_PROP_OFFSET","features":[393]},{"name":"D2D1_TURBULENCE_PROP_SEED","features":[393]},{"name":"D2D1_TURBULENCE_PROP_SIZE","features":[393]},{"name":"D2D1_TURBULENCE_PROP_STITCHABLE","features":[393]},{"name":"D2D1_UNIT_MODE","features":[393]},{"name":"D2D1_UNIT_MODE_DIPS","features":[393]},{"name":"D2D1_UNIT_MODE_PIXELS","features":[393]},{"name":"D2D1_VERTEX_BUFFER_PROPERTIES","features":[393]},{"name":"D2D1_VERTEX_OPTIONS","features":[393]},{"name":"D2D1_VERTEX_OPTIONS_ASSUME_NO_OVERLAP","features":[393]},{"name":"D2D1_VERTEX_OPTIONS_DO_NOT_CLEAR","features":[393]},{"name":"D2D1_VERTEX_OPTIONS_NONE","features":[393]},{"name":"D2D1_VERTEX_OPTIONS_USE_DEPTH_BUFFER","features":[393]},{"name":"D2D1_VERTEX_RANGE","features":[393]},{"name":"D2D1_VERTEX_USAGE","features":[393]},{"name":"D2D1_VERTEX_USAGE_DYNAMIC","features":[393]},{"name":"D2D1_VERTEX_USAGE_STATIC","features":[393]},{"name":"D2D1_VIGNETTE_PROP","features":[393]},{"name":"D2D1_VIGNETTE_PROP_COLOR","features":[393]},{"name":"D2D1_VIGNETTE_PROP_STRENGTH","features":[393]},{"name":"D2D1_VIGNETTE_PROP_TRANSITION_SIZE","features":[393]},{"name":"D2D1_WHITELEVELADJUSTMENT_PROP","features":[393]},{"name":"D2D1_WHITELEVELADJUSTMENT_PROP_INPUT_WHITE_LEVEL","features":[393]},{"name":"D2D1_WHITELEVELADJUSTMENT_PROP_OUTPUT_WHITE_LEVEL","features":[393]},{"name":"D2D1_WINDOW_STATE","features":[393]},{"name":"D2D1_WINDOW_STATE_NONE","features":[393]},{"name":"D2D1_WINDOW_STATE_OCCLUDED","features":[393]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING","features":[393]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_420","features":[393]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_422","features":[393]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_440","features":[393]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_444","features":[393]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_AUTO","features":[393]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_ANISOTROPIC","features":[393]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_CUBIC","features":[393]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[393]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_LINEAR","features":[393]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[393]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[393]},{"name":"D2D1_YCBCR_PROP","features":[393]},{"name":"D2D1_YCBCR_PROP_CHROMA_SUBSAMPLING","features":[393]},{"name":"D2D1_YCBCR_PROP_INTERPOLATION_MODE","features":[393]},{"name":"D2D1_YCBCR_PROP_TRANSFORM_MATRIX","features":[393]},{"name":"DWRITE_PAINT_FEATURE_LEVEL","features":[393]},{"name":"FACILITY_D2D","features":[393]},{"name":"ID2D1AnalysisTransform","features":[393]},{"name":"ID2D1Bitmap","features":[393]},{"name":"ID2D1Bitmap1","features":[393]},{"name":"ID2D1BitmapBrush","features":[393]},{"name":"ID2D1BitmapBrush1","features":[393]},{"name":"ID2D1BitmapRenderTarget","features":[393]},{"name":"ID2D1BlendTransform","features":[393]},{"name":"ID2D1BorderTransform","features":[393]},{"name":"ID2D1BoundsAdjustmentTransform","features":[393]},{"name":"ID2D1Brush","features":[393]},{"name":"ID2D1ColorContext","features":[393]},{"name":"ID2D1ColorContext1","features":[393]},{"name":"ID2D1CommandList","features":[393]},{"name":"ID2D1CommandSink","features":[393]},{"name":"ID2D1CommandSink1","features":[393]},{"name":"ID2D1CommandSink2","features":[393]},{"name":"ID2D1CommandSink3","features":[393]},{"name":"ID2D1CommandSink4","features":[393]},{"name":"ID2D1CommandSink5","features":[393]},{"name":"ID2D1ComputeInfo","features":[393]},{"name":"ID2D1ComputeTransform","features":[393]},{"name":"ID2D1ConcreteTransform","features":[393]},{"name":"ID2D1DCRenderTarget","features":[393]},{"name":"ID2D1Device","features":[393]},{"name":"ID2D1Device1","features":[393]},{"name":"ID2D1Device2","features":[393]},{"name":"ID2D1Device3","features":[393]},{"name":"ID2D1Device4","features":[393]},{"name":"ID2D1Device5","features":[393]},{"name":"ID2D1Device6","features":[393]},{"name":"ID2D1Device7","features":[393]},{"name":"ID2D1DeviceContext","features":[393]},{"name":"ID2D1DeviceContext1","features":[393]},{"name":"ID2D1DeviceContext2","features":[393]},{"name":"ID2D1DeviceContext3","features":[393]},{"name":"ID2D1DeviceContext4","features":[393]},{"name":"ID2D1DeviceContext5","features":[393]},{"name":"ID2D1DeviceContext6","features":[393]},{"name":"ID2D1DeviceContext7","features":[393]},{"name":"ID2D1DrawInfo","features":[393]},{"name":"ID2D1DrawTransform","features":[393]},{"name":"ID2D1DrawingStateBlock","features":[393]},{"name":"ID2D1DrawingStateBlock1","features":[393]},{"name":"ID2D1Effect","features":[393]},{"name":"ID2D1EffectContext","features":[393]},{"name":"ID2D1EffectContext1","features":[393]},{"name":"ID2D1EffectContext2","features":[393]},{"name":"ID2D1EffectImpl","features":[393]},{"name":"ID2D1EllipseGeometry","features":[393]},{"name":"ID2D1Factory","features":[393]},{"name":"ID2D1Factory1","features":[393]},{"name":"ID2D1Factory2","features":[393]},{"name":"ID2D1Factory3","features":[393]},{"name":"ID2D1Factory4","features":[393]},{"name":"ID2D1Factory5","features":[393]},{"name":"ID2D1Factory6","features":[393]},{"name":"ID2D1Factory7","features":[393]},{"name":"ID2D1Factory8","features":[393]},{"name":"ID2D1GdiInteropRenderTarget","features":[393]},{"name":"ID2D1GdiMetafile","features":[393]},{"name":"ID2D1GdiMetafile1","features":[393]},{"name":"ID2D1GdiMetafileSink","features":[393]},{"name":"ID2D1GdiMetafileSink1","features":[393]},{"name":"ID2D1Geometry","features":[393]},{"name":"ID2D1GeometryGroup","features":[393]},{"name":"ID2D1GeometryRealization","features":[393]},{"name":"ID2D1GeometrySink","features":[394]},{"name":"ID2D1GradientMesh","features":[393]},{"name":"ID2D1GradientStopCollection","features":[393]},{"name":"ID2D1GradientStopCollection1","features":[393]},{"name":"ID2D1HwndRenderTarget","features":[393]},{"name":"ID2D1Image","features":[393]},{"name":"ID2D1ImageBrush","features":[393]},{"name":"ID2D1ImageSource","features":[393]},{"name":"ID2D1ImageSourceFromWic","features":[393]},{"name":"ID2D1Ink","features":[393]},{"name":"ID2D1InkStyle","features":[393]},{"name":"ID2D1Layer","features":[393]},{"name":"ID2D1LinearGradientBrush","features":[393]},{"name":"ID2D1LookupTable3D","features":[393]},{"name":"ID2D1Mesh","features":[393]},{"name":"ID2D1Multithread","features":[393]},{"name":"ID2D1OffsetTransform","features":[393]},{"name":"ID2D1PathGeometry","features":[393]},{"name":"ID2D1PathGeometry1","features":[393]},{"name":"ID2D1PrintControl","features":[393]},{"name":"ID2D1Properties","features":[393]},{"name":"ID2D1RadialGradientBrush","features":[393]},{"name":"ID2D1RectangleGeometry","features":[393]},{"name":"ID2D1RenderInfo","features":[393]},{"name":"ID2D1RenderTarget","features":[393]},{"name":"ID2D1Resource","features":[393]},{"name":"ID2D1ResourceTexture","features":[393]},{"name":"ID2D1RoundedRectangleGeometry","features":[393]},{"name":"ID2D1SolidColorBrush","features":[393]},{"name":"ID2D1SourceTransform","features":[393]},{"name":"ID2D1SpriteBatch","features":[393]},{"name":"ID2D1StrokeStyle","features":[393]},{"name":"ID2D1StrokeStyle1","features":[393]},{"name":"ID2D1SvgAttribute","features":[393]},{"name":"ID2D1SvgDocument","features":[393]},{"name":"ID2D1SvgElement","features":[393]},{"name":"ID2D1SvgGlyphStyle","features":[393]},{"name":"ID2D1SvgPaint","features":[393]},{"name":"ID2D1SvgPathData","features":[393]},{"name":"ID2D1SvgPointCollection","features":[393]},{"name":"ID2D1SvgStrokeDashArray","features":[393]},{"name":"ID2D1TessellationSink","features":[393]},{"name":"ID2D1Transform","features":[393]},{"name":"ID2D1TransformGraph","features":[393]},{"name":"ID2D1TransformNode","features":[393]},{"name":"ID2D1TransformedGeometry","features":[393]},{"name":"ID2D1TransformedImageSource","features":[393]},{"name":"ID2D1VertexBuffer","features":[393]},{"name":"PD2D1_EFFECT_FACTORY","features":[393]},{"name":"PD2D1_PROPERTY_GET_FUNCTION","features":[393]},{"name":"PD2D1_PROPERTY_SET_FUNCTION","features":[393]}],"396":[{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE","features":[394]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_ANISOTROPIC","features":[394]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_CUBIC","features":[394]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[394]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_LINEAR","features":[394]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[394]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[394]},{"name":"D2D1_ALPHA_MODE","features":[394]},{"name":"D2D1_ALPHA_MODE_IGNORE","features":[394]},{"name":"D2D1_ALPHA_MODE_PREMULTIPLIED","features":[394]},{"name":"D2D1_ALPHA_MODE_STRAIGHT","features":[394]},{"name":"D2D1_ALPHA_MODE_UNKNOWN","features":[394]},{"name":"D2D1_BEZIER_SEGMENT","features":[394]},{"name":"D2D1_BLEND_MODE","features":[394]},{"name":"D2D1_BLEND_MODE_COLOR","features":[394]},{"name":"D2D1_BLEND_MODE_COLOR_BURN","features":[394]},{"name":"D2D1_BLEND_MODE_COLOR_DODGE","features":[394]},{"name":"D2D1_BLEND_MODE_DARKEN","features":[394]},{"name":"D2D1_BLEND_MODE_DARKER_COLOR","features":[394]},{"name":"D2D1_BLEND_MODE_DIFFERENCE","features":[394]},{"name":"D2D1_BLEND_MODE_DISSOLVE","features":[394]},{"name":"D2D1_BLEND_MODE_DIVISION","features":[394]},{"name":"D2D1_BLEND_MODE_EXCLUSION","features":[394]},{"name":"D2D1_BLEND_MODE_HARD_LIGHT","features":[394]},{"name":"D2D1_BLEND_MODE_HARD_MIX","features":[394]},{"name":"D2D1_BLEND_MODE_HUE","features":[394]},{"name":"D2D1_BLEND_MODE_LIGHTEN","features":[394]},{"name":"D2D1_BLEND_MODE_LIGHTER_COLOR","features":[394]},{"name":"D2D1_BLEND_MODE_LINEAR_BURN","features":[394]},{"name":"D2D1_BLEND_MODE_LINEAR_DODGE","features":[394]},{"name":"D2D1_BLEND_MODE_LINEAR_LIGHT","features":[394]},{"name":"D2D1_BLEND_MODE_LUMINOSITY","features":[394]},{"name":"D2D1_BLEND_MODE_MULTIPLY","features":[394]},{"name":"D2D1_BLEND_MODE_OVERLAY","features":[394]},{"name":"D2D1_BLEND_MODE_PIN_LIGHT","features":[394]},{"name":"D2D1_BLEND_MODE_SATURATION","features":[394]},{"name":"D2D1_BLEND_MODE_SCREEN","features":[394]},{"name":"D2D1_BLEND_MODE_SOFT_LIGHT","features":[394]},{"name":"D2D1_BLEND_MODE_SUBTRACT","features":[394]},{"name":"D2D1_BLEND_MODE_VIVID_LIGHT","features":[394]},{"name":"D2D1_BORDER_MODE","features":[394]},{"name":"D2D1_BORDER_MODE_HARD","features":[394]},{"name":"D2D1_BORDER_MODE_SOFT","features":[394]},{"name":"D2D1_COLORMATRIX_ALPHA_MODE","features":[394]},{"name":"D2D1_COLORMATRIX_ALPHA_MODE_PREMULTIPLIED","features":[394]},{"name":"D2D1_COLORMATRIX_ALPHA_MODE_STRAIGHT","features":[394]},{"name":"D2D1_COLOR_F","features":[394]},{"name":"D2D1_COMPOSITE_MODE","features":[394]},{"name":"D2D1_COMPOSITE_MODE_BOUNDED_SOURCE_COPY","features":[394]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_ATOP","features":[394]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_IN","features":[394]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_OUT","features":[394]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_OVER","features":[394]},{"name":"D2D1_COMPOSITE_MODE_MASK_INVERT","features":[394]},{"name":"D2D1_COMPOSITE_MODE_PLUS","features":[394]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_ATOP","features":[394]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_COPY","features":[394]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_IN","features":[394]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_OUT","features":[394]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_OVER","features":[394]},{"name":"D2D1_COMPOSITE_MODE_XOR","features":[394]},{"name":"D2D1_FIGURE_BEGIN","features":[394]},{"name":"D2D1_FIGURE_BEGIN_FILLED","features":[394]},{"name":"D2D1_FIGURE_BEGIN_HOLLOW","features":[394]},{"name":"D2D1_FIGURE_END","features":[394]},{"name":"D2D1_FIGURE_END_CLOSED","features":[394]},{"name":"D2D1_FIGURE_END_OPEN","features":[394]},{"name":"D2D1_FILL_MODE","features":[394]},{"name":"D2D1_FILL_MODE_ALTERNATE","features":[394]},{"name":"D2D1_FILL_MODE_WINDING","features":[394]},{"name":"D2D1_GRADIENT_STOP","features":[394]},{"name":"D2D1_PATH_SEGMENT","features":[394]},{"name":"D2D1_PATH_SEGMENT_FORCE_ROUND_LINE_JOIN","features":[394]},{"name":"D2D1_PATH_SEGMENT_FORCE_UNSTROKED","features":[394]},{"name":"D2D1_PATH_SEGMENT_NONE","features":[394]},{"name":"D2D1_PIXEL_FORMAT","features":[394,391]},{"name":"D2D1_TURBULENCE_NOISE","features":[394]},{"name":"D2D1_TURBULENCE_NOISE_FRACTAL_SUM","features":[394]},{"name":"D2D1_TURBULENCE_NOISE_TURBULENCE","features":[394]},{"name":"D2D_COLOR_F","features":[394]},{"name":"D2D_MATRIX_3X2_F","features":[394]},{"name":"D2D_MATRIX_4X3_F","features":[394]},{"name":"D2D_MATRIX_4X4_F","features":[394]},{"name":"D2D_MATRIX_5X4_F","features":[394]},{"name":"D2D_POINT_2F","features":[394]},{"name":"D2D_POINT_2U","features":[394]},{"name":"D2D_RECT_F","features":[394]},{"name":"D2D_RECT_U","features":[394]},{"name":"D2D_SIZE_F","features":[394]},{"name":"D2D_SIZE_U","features":[394]},{"name":"D2D_VECTOR_2F","features":[394]},{"name":"D2D_VECTOR_3F","features":[394]},{"name":"D2D_VECTOR_4F","features":[394]},{"name":"ID2D1SimplifiedGeometrySink","features":[394]}],"397":[{"name":"D3D10_1_SRV_DIMENSION_BUFFER","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE1D","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE1DARRAY","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2D","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2DARRAY","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2DMS","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE3D","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURECUBE","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURECUBEARRAY","features":[396]},{"name":"D3D10_1_SRV_DIMENSION_UNKNOWN","features":[396]},{"name":"D3D10_CBF_USERPACKED","features":[396]},{"name":"D3D10_CT_CBUFFER","features":[396]},{"name":"D3D10_CT_TBUFFER","features":[396]},{"name":"D3D10_INCLUDE_LOCAL","features":[396]},{"name":"D3D10_INCLUDE_SYSTEM","features":[396]},{"name":"D3D10_NAME_CLIP_DISTANCE","features":[396]},{"name":"D3D10_NAME_COVERAGE","features":[396]},{"name":"D3D10_NAME_CULL_DISTANCE","features":[396]},{"name":"D3D10_NAME_DEPTH","features":[396]},{"name":"D3D10_NAME_INSTANCE_ID","features":[396]},{"name":"D3D10_NAME_IS_FRONT_FACE","features":[396]},{"name":"D3D10_NAME_POSITION","features":[396]},{"name":"D3D10_NAME_PRIMITIVE_ID","features":[396]},{"name":"D3D10_NAME_RENDER_TARGET_ARRAY_INDEX","features":[396]},{"name":"D3D10_NAME_SAMPLE_INDEX","features":[396]},{"name":"D3D10_NAME_TARGET","features":[396]},{"name":"D3D10_NAME_UNDEFINED","features":[396]},{"name":"D3D10_NAME_VERTEX_ID","features":[396]},{"name":"D3D10_NAME_VIEWPORT_ARRAY_INDEX","features":[396]},{"name":"D3D10_PRIMITIVE_LINE","features":[396]},{"name":"D3D10_PRIMITIVE_LINE_ADJ","features":[396]},{"name":"D3D10_PRIMITIVE_POINT","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINELIST","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINELIST_ADJ","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_POINTLIST","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ","features":[396]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_UNDEFINED","features":[396]},{"name":"D3D10_PRIMITIVE_TRIANGLE","features":[396]},{"name":"D3D10_PRIMITIVE_TRIANGLE_ADJ","features":[396]},{"name":"D3D10_PRIMITIVE_UNDEFINED","features":[396]},{"name":"D3D10_REGISTER_COMPONENT_FLOAT32","features":[396]},{"name":"D3D10_REGISTER_COMPONENT_SINT32","features":[396]},{"name":"D3D10_REGISTER_COMPONENT_UINT32","features":[396]},{"name":"D3D10_REGISTER_COMPONENT_UNKNOWN","features":[396]},{"name":"D3D10_RETURN_TYPE_FLOAT","features":[396]},{"name":"D3D10_RETURN_TYPE_MIXED","features":[396]},{"name":"D3D10_RETURN_TYPE_SINT","features":[396]},{"name":"D3D10_RETURN_TYPE_SNORM","features":[396]},{"name":"D3D10_RETURN_TYPE_UINT","features":[396]},{"name":"D3D10_RETURN_TYPE_UNORM","features":[396]},{"name":"D3D10_SIF_COMPARISON_SAMPLER","features":[396]},{"name":"D3D10_SIF_TEXTURE_COMPONENTS","features":[396]},{"name":"D3D10_SIF_TEXTURE_COMPONENT_0","features":[396]},{"name":"D3D10_SIF_TEXTURE_COMPONENT_1","features":[396]},{"name":"D3D10_SIF_USERPACKED","features":[396]},{"name":"D3D10_SIT_CBUFFER","features":[396]},{"name":"D3D10_SIT_SAMPLER","features":[396]},{"name":"D3D10_SIT_TBUFFER","features":[396]},{"name":"D3D10_SIT_TEXTURE","features":[396]},{"name":"D3D10_SRV_DIMENSION_BUFFER","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURE1D","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURE1DARRAY","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2D","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2DARRAY","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2DMS","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURE3D","features":[396]},{"name":"D3D10_SRV_DIMENSION_TEXTURECUBE","features":[396]},{"name":"D3D10_SRV_DIMENSION_UNKNOWN","features":[396]},{"name":"D3D10_SVC_MATRIX_COLUMNS","features":[396]},{"name":"D3D10_SVC_MATRIX_ROWS","features":[396]},{"name":"D3D10_SVC_OBJECT","features":[396]},{"name":"D3D10_SVC_SCALAR","features":[396]},{"name":"D3D10_SVC_STRUCT","features":[396]},{"name":"D3D10_SVC_VECTOR","features":[396]},{"name":"D3D10_SVF_USED","features":[396]},{"name":"D3D10_SVF_USERPACKED","features":[396]},{"name":"D3D10_SVT_BLEND","features":[396]},{"name":"D3D10_SVT_BOOL","features":[396]},{"name":"D3D10_SVT_BUFFER","features":[396]},{"name":"D3D10_SVT_CBUFFER","features":[396]},{"name":"D3D10_SVT_DEPTHSTENCIL","features":[396]},{"name":"D3D10_SVT_DEPTHSTENCILVIEW","features":[396]},{"name":"D3D10_SVT_FLOAT","features":[396]},{"name":"D3D10_SVT_GEOMETRYSHADER","features":[396]},{"name":"D3D10_SVT_INT","features":[396]},{"name":"D3D10_SVT_PIXELFRAGMENT","features":[396]},{"name":"D3D10_SVT_PIXELSHADER","features":[396]},{"name":"D3D10_SVT_RASTERIZER","features":[396]},{"name":"D3D10_SVT_RENDERTARGETVIEW","features":[396]},{"name":"D3D10_SVT_SAMPLER","features":[396]},{"name":"D3D10_SVT_SAMPLER1D","features":[396]},{"name":"D3D10_SVT_SAMPLER2D","features":[396]},{"name":"D3D10_SVT_SAMPLER3D","features":[396]},{"name":"D3D10_SVT_SAMPLERCUBE","features":[396]},{"name":"D3D10_SVT_STRING","features":[396]},{"name":"D3D10_SVT_TBUFFER","features":[396]},{"name":"D3D10_SVT_TEXTURE","features":[396]},{"name":"D3D10_SVT_TEXTURE1D","features":[396]},{"name":"D3D10_SVT_TEXTURE1DARRAY","features":[396]},{"name":"D3D10_SVT_TEXTURE2D","features":[396]},{"name":"D3D10_SVT_TEXTURE2DARRAY","features":[396]},{"name":"D3D10_SVT_TEXTURE2DMS","features":[396]},{"name":"D3D10_SVT_TEXTURE2DMSARRAY","features":[396]},{"name":"D3D10_SVT_TEXTURE3D","features":[396]},{"name":"D3D10_SVT_TEXTURECUBE","features":[396]},{"name":"D3D10_SVT_TEXTURECUBEARRAY","features":[396]},{"name":"D3D10_SVT_UINT","features":[396]},{"name":"D3D10_SVT_UINT8","features":[396]},{"name":"D3D10_SVT_VERTEXFRAGMENT","features":[396]},{"name":"D3D10_SVT_VERTEXSHADER","features":[396]},{"name":"D3D10_SVT_VOID","features":[396]},{"name":"D3D11_CT_CBUFFER","features":[396]},{"name":"D3D11_CT_INTERFACE_POINTERS","features":[396]},{"name":"D3D11_CT_RESOURCE_BIND_INFO","features":[396]},{"name":"D3D11_CT_TBUFFER","features":[396]},{"name":"D3D11_NAME_DEPTH_GREATER_EQUAL","features":[396]},{"name":"D3D11_NAME_DEPTH_LESS_EQUAL","features":[396]},{"name":"D3D11_NAME_FINAL_LINE_DENSITY_TESSFACTOR","features":[396]},{"name":"D3D11_NAME_FINAL_LINE_DETAIL_TESSFACTOR","features":[396]},{"name":"D3D11_NAME_FINAL_QUAD_EDGE_TESSFACTOR","features":[396]},{"name":"D3D11_NAME_FINAL_QUAD_INSIDE_TESSFACTOR","features":[396]},{"name":"D3D11_NAME_FINAL_TRI_EDGE_TESSFACTOR","features":[396]},{"name":"D3D11_NAME_FINAL_TRI_INSIDE_TESSFACTOR","features":[396]},{"name":"D3D11_NAME_INNER_COVERAGE","features":[396]},{"name":"D3D11_NAME_STENCIL_REF","features":[396]},{"name":"D3D11_PRIMITIVE_10_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_11_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_12_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_13_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_14_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_15_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_16_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_17_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_18_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_19_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_1_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_20_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_21_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_22_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_23_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_24_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_25_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_26_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_27_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_28_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_29_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_2_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_30_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_31_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_32_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_3_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_4_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_5_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_6_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_7_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_8_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_9_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D11_PRIMITIVE_LINE","features":[396]},{"name":"D3D11_PRIMITIVE_LINE_ADJ","features":[396]},{"name":"D3D11_PRIMITIVE_POINT","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINELIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINELIST_ADJ","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_POINTLIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ","features":[396]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_UNDEFINED","features":[396]},{"name":"D3D11_PRIMITIVE_TRIANGLE","features":[396]},{"name":"D3D11_PRIMITIVE_TRIANGLE_ADJ","features":[396]},{"name":"D3D11_PRIMITIVE_UNDEFINED","features":[396]},{"name":"D3D11_RETURN_TYPE_CONTINUED","features":[396]},{"name":"D3D11_RETURN_TYPE_DOUBLE","features":[396]},{"name":"D3D11_RETURN_TYPE_FLOAT","features":[396]},{"name":"D3D11_RETURN_TYPE_MIXED","features":[396]},{"name":"D3D11_RETURN_TYPE_SINT","features":[396]},{"name":"D3D11_RETURN_TYPE_SNORM","features":[396]},{"name":"D3D11_RETURN_TYPE_UINT","features":[396]},{"name":"D3D11_RETURN_TYPE_UNORM","features":[396]},{"name":"D3D11_SIT_BYTEADDRESS","features":[396]},{"name":"D3D11_SIT_STRUCTURED","features":[396]},{"name":"D3D11_SIT_UAV_APPEND_STRUCTURED","features":[396]},{"name":"D3D11_SIT_UAV_CONSUME_STRUCTURED","features":[396]},{"name":"D3D11_SIT_UAV_RWBYTEADDRESS","features":[396]},{"name":"D3D11_SIT_UAV_RWSTRUCTURED","features":[396]},{"name":"D3D11_SIT_UAV_RWSTRUCTURED_WITH_COUNTER","features":[396]},{"name":"D3D11_SIT_UAV_RWTYPED","features":[396]},{"name":"D3D11_SRV_DIMENSION_BUFFER","features":[396]},{"name":"D3D11_SRV_DIMENSION_BUFFEREX","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURE1D","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURE1DARRAY","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2D","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2DARRAY","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2DMS","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURE3D","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURECUBE","features":[396]},{"name":"D3D11_SRV_DIMENSION_TEXTURECUBEARRAY","features":[396]},{"name":"D3D11_SRV_DIMENSION_UNKNOWN","features":[396]},{"name":"D3D11_SVC_INTERFACE_CLASS","features":[396]},{"name":"D3D11_SVC_INTERFACE_POINTER","features":[396]},{"name":"D3D11_SVF_INTERFACE_PARAMETER","features":[396]},{"name":"D3D11_SVF_INTERFACE_POINTER","features":[396]},{"name":"D3D11_SVT_APPEND_STRUCTURED_BUFFER","features":[396]},{"name":"D3D11_SVT_BYTEADDRESS_BUFFER","features":[396]},{"name":"D3D11_SVT_COMPUTESHADER","features":[396]},{"name":"D3D11_SVT_CONSUME_STRUCTURED_BUFFER","features":[396]},{"name":"D3D11_SVT_DOMAINSHADER","features":[396]},{"name":"D3D11_SVT_DOUBLE","features":[396]},{"name":"D3D11_SVT_HULLSHADER","features":[396]},{"name":"D3D11_SVT_INTERFACE_POINTER","features":[396]},{"name":"D3D11_SVT_RWBUFFER","features":[396]},{"name":"D3D11_SVT_RWBYTEADDRESS_BUFFER","features":[396]},{"name":"D3D11_SVT_RWSTRUCTURED_BUFFER","features":[396]},{"name":"D3D11_SVT_RWTEXTURE1D","features":[396]},{"name":"D3D11_SVT_RWTEXTURE1DARRAY","features":[396]},{"name":"D3D11_SVT_RWTEXTURE2D","features":[396]},{"name":"D3D11_SVT_RWTEXTURE2DARRAY","features":[396]},{"name":"D3D11_SVT_RWTEXTURE3D","features":[396]},{"name":"D3D11_SVT_STRUCTURED_BUFFER","features":[396]},{"name":"D3D11_TESSELLATOR_DOMAIN_ISOLINE","features":[396]},{"name":"D3D11_TESSELLATOR_DOMAIN_QUAD","features":[396]},{"name":"D3D11_TESSELLATOR_DOMAIN_TRI","features":[396]},{"name":"D3D11_TESSELLATOR_DOMAIN_UNDEFINED","features":[396]},{"name":"D3D11_TESSELLATOR_OUTPUT_LINE","features":[396]},{"name":"D3D11_TESSELLATOR_OUTPUT_POINT","features":[396]},{"name":"D3D11_TESSELLATOR_OUTPUT_TRIANGLE_CCW","features":[396]},{"name":"D3D11_TESSELLATOR_OUTPUT_TRIANGLE_CW","features":[396]},{"name":"D3D11_TESSELLATOR_OUTPUT_UNDEFINED","features":[396]},{"name":"D3D11_TESSELLATOR_PARTITIONING_FRACTIONAL_EVEN","features":[396]},{"name":"D3D11_TESSELLATOR_PARTITIONING_FRACTIONAL_ODD","features":[396]},{"name":"D3D11_TESSELLATOR_PARTITIONING_INTEGER","features":[396]},{"name":"D3D11_TESSELLATOR_PARTITIONING_POW2","features":[396]},{"name":"D3D11_TESSELLATOR_PARTITIONING_UNDEFINED","features":[396]},{"name":"D3D12_NAME_BARYCENTRICS","features":[396]},{"name":"D3D12_NAME_CULLPRIMITIVE","features":[396]},{"name":"D3D12_NAME_SHADINGRATE","features":[396]},{"name":"D3DFCI_BIASED_FIXED_2_8","features":[396]},{"name":"D3DFCI_FLOAT","features":[396]},{"name":"D3DFCI_SINT","features":[396]},{"name":"D3DFCI_SNORM","features":[396]},{"name":"D3DFCI_TYPELESS","features":[396]},{"name":"D3DFCI_UINT","features":[396]},{"name":"D3DFCI_UNORM","features":[396]},{"name":"D3DFCI_UNORM_SRGB","features":[396]},{"name":"D3DFCN_A","features":[396]},{"name":"D3DFCN_B","features":[396]},{"name":"D3DFCN_D","features":[396]},{"name":"D3DFCN_G","features":[396]},{"name":"D3DFCN_R","features":[396]},{"name":"D3DFCN_S","features":[396]},{"name":"D3DFCN_X","features":[396]},{"name":"D3DFL_CUSTOM","features":[396]},{"name":"D3DFL_STANDARD","features":[396]},{"name":"D3DFTL_FULL_TYPE","features":[396]},{"name":"D3DFTL_NO_TYPE","features":[396]},{"name":"D3DFTL_PARTIAL_TYPE","features":[396]},{"name":"D3DMATRIX","features":[396]},{"name":"D3DVECTOR","features":[396]},{"name":"D3D_CBF_USERPACKED","features":[396]},{"name":"D3D_CBUFFER_TYPE","features":[396]},{"name":"D3D_COMPONENT_MASK_W","features":[396]},{"name":"D3D_COMPONENT_MASK_X","features":[396]},{"name":"D3D_COMPONENT_MASK_Y","features":[396]},{"name":"D3D_COMPONENT_MASK_Z","features":[396]},{"name":"D3D_CT_CBUFFER","features":[396]},{"name":"D3D_CT_INTERFACE_POINTERS","features":[396]},{"name":"D3D_CT_RESOURCE_BIND_INFO","features":[396]},{"name":"D3D_CT_TBUFFER","features":[396]},{"name":"D3D_DRIVER_TYPE","features":[396]},{"name":"D3D_DRIVER_TYPE_HARDWARE","features":[396]},{"name":"D3D_DRIVER_TYPE_NULL","features":[396]},{"name":"D3D_DRIVER_TYPE_REFERENCE","features":[396]},{"name":"D3D_DRIVER_TYPE_SOFTWARE","features":[396]},{"name":"D3D_DRIVER_TYPE_UNKNOWN","features":[396]},{"name":"D3D_DRIVER_TYPE_WARP","features":[396]},{"name":"D3D_FEATURE_LEVEL","features":[396]},{"name":"D3D_FEATURE_LEVEL_10_0","features":[396]},{"name":"D3D_FEATURE_LEVEL_10_1","features":[396]},{"name":"D3D_FEATURE_LEVEL_11_0","features":[396]},{"name":"D3D_FEATURE_LEVEL_11_1","features":[396]},{"name":"D3D_FEATURE_LEVEL_12_0","features":[396]},{"name":"D3D_FEATURE_LEVEL_12_1","features":[396]},{"name":"D3D_FEATURE_LEVEL_12_2","features":[396]},{"name":"D3D_FEATURE_LEVEL_1_0_CORE","features":[396]},{"name":"D3D_FEATURE_LEVEL_1_0_GENERIC","features":[396]},{"name":"D3D_FEATURE_LEVEL_9_1","features":[396]},{"name":"D3D_FEATURE_LEVEL_9_2","features":[396]},{"name":"D3D_FEATURE_LEVEL_9_3","features":[396]},{"name":"D3D_FL9_1_DEFAULT_MAX_ANISOTROPY","features":[396]},{"name":"D3D_FL9_1_IA_PRIMITIVE_MAX_COUNT","features":[396]},{"name":"D3D_FL9_1_MAX_TEXTURE_REPEAT","features":[396]},{"name":"D3D_FL9_1_REQ_TEXTURE1D_U_DIMENSION","features":[396]},{"name":"D3D_FL9_1_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[396]},{"name":"D3D_FL9_1_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[396]},{"name":"D3D_FL9_1_REQ_TEXTURECUBE_DIMENSION","features":[396]},{"name":"D3D_FL9_1_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[396]},{"name":"D3D_FL9_2_IA_PRIMITIVE_MAX_COUNT","features":[396]},{"name":"D3D_FL9_2_MAX_TEXTURE_REPEAT","features":[396]},{"name":"D3D_FL9_3_MAX_TEXTURE_REPEAT","features":[396]},{"name":"D3D_FL9_3_REQ_TEXTURE1D_U_DIMENSION","features":[396]},{"name":"D3D_FL9_3_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[396]},{"name":"D3D_FL9_3_REQ_TEXTURECUBE_DIMENSION","features":[396]},{"name":"D3D_FL9_3_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[396]},{"name":"D3D_FORMAT_COMPONENT_INTERPRETATION","features":[396]},{"name":"D3D_FORMAT_COMPONENT_NAME","features":[396]},{"name":"D3D_FORMAT_LAYOUT","features":[396]},{"name":"D3D_FORMAT_TYPE_LEVEL","features":[396]},{"name":"D3D_INCLUDE_LOCAL","features":[396]},{"name":"D3D_INCLUDE_SYSTEM","features":[396]},{"name":"D3D_INCLUDE_TYPE","features":[396]},{"name":"D3D_INTERPOLATION_CONSTANT","features":[396]},{"name":"D3D_INTERPOLATION_LINEAR","features":[396]},{"name":"D3D_INTERPOLATION_LINEAR_CENTROID","features":[396]},{"name":"D3D_INTERPOLATION_LINEAR_NOPERSPECTIVE","features":[396]},{"name":"D3D_INTERPOLATION_LINEAR_NOPERSPECTIVE_CENTROID","features":[396]},{"name":"D3D_INTERPOLATION_LINEAR_NOPERSPECTIVE_SAMPLE","features":[396]},{"name":"D3D_INTERPOLATION_LINEAR_SAMPLE","features":[396]},{"name":"D3D_INTERPOLATION_MODE","features":[396]},{"name":"D3D_INTERPOLATION_UNDEFINED","features":[396]},{"name":"D3D_MIN_PRECISION","features":[396]},{"name":"D3D_MIN_PRECISION_ANY_10","features":[396]},{"name":"D3D_MIN_PRECISION_ANY_16","features":[396]},{"name":"D3D_MIN_PRECISION_DEFAULT","features":[396]},{"name":"D3D_MIN_PRECISION_FLOAT_16","features":[396]},{"name":"D3D_MIN_PRECISION_FLOAT_2_8","features":[396]},{"name":"D3D_MIN_PRECISION_RESERVED","features":[396]},{"name":"D3D_MIN_PRECISION_SINT_16","features":[396]},{"name":"D3D_MIN_PRECISION_UINT_16","features":[396]},{"name":"D3D_NAME","features":[396]},{"name":"D3D_NAME_BARYCENTRICS","features":[396]},{"name":"D3D_NAME_CLIP_DISTANCE","features":[396]},{"name":"D3D_NAME_COVERAGE","features":[396]},{"name":"D3D_NAME_CULLPRIMITIVE","features":[396]},{"name":"D3D_NAME_CULL_DISTANCE","features":[396]},{"name":"D3D_NAME_DEPTH","features":[396]},{"name":"D3D_NAME_DEPTH_GREATER_EQUAL","features":[396]},{"name":"D3D_NAME_DEPTH_LESS_EQUAL","features":[396]},{"name":"D3D_NAME_FINAL_LINE_DENSITY_TESSFACTOR","features":[396]},{"name":"D3D_NAME_FINAL_LINE_DETAIL_TESSFACTOR","features":[396]},{"name":"D3D_NAME_FINAL_QUAD_EDGE_TESSFACTOR","features":[396]},{"name":"D3D_NAME_FINAL_QUAD_INSIDE_TESSFACTOR","features":[396]},{"name":"D3D_NAME_FINAL_TRI_EDGE_TESSFACTOR","features":[396]},{"name":"D3D_NAME_FINAL_TRI_INSIDE_TESSFACTOR","features":[396]},{"name":"D3D_NAME_INNER_COVERAGE","features":[396]},{"name":"D3D_NAME_INSTANCE_ID","features":[396]},{"name":"D3D_NAME_IS_FRONT_FACE","features":[396]},{"name":"D3D_NAME_POSITION","features":[396]},{"name":"D3D_NAME_PRIMITIVE_ID","features":[396]},{"name":"D3D_NAME_RENDER_TARGET_ARRAY_INDEX","features":[396]},{"name":"D3D_NAME_SAMPLE_INDEX","features":[396]},{"name":"D3D_NAME_SHADINGRATE","features":[396]},{"name":"D3D_NAME_STENCIL_REF","features":[396]},{"name":"D3D_NAME_TARGET","features":[396]},{"name":"D3D_NAME_UNDEFINED","features":[396]},{"name":"D3D_NAME_VERTEX_ID","features":[396]},{"name":"D3D_NAME_VIEWPORT_ARRAY_INDEX","features":[396]},{"name":"D3D_PARAMETER_FLAGS","features":[396]},{"name":"D3D_PF_IN","features":[396]},{"name":"D3D_PF_NONE","features":[396]},{"name":"D3D_PF_OUT","features":[396]},{"name":"D3D_PRIMITIVE","features":[396]},{"name":"D3D_PRIMITIVE_10_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_11_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_12_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_13_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_14_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_15_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_16_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_17_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_18_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_19_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_1_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_20_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_21_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_22_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_23_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_24_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_25_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_26_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_27_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_28_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_29_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_2_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_30_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_31_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_32_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_3_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_4_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_5_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_6_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_7_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_8_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_9_CONTROL_POINT_PATCH","features":[396]},{"name":"D3D_PRIMITIVE_LINE","features":[396]},{"name":"D3D_PRIMITIVE_LINE_ADJ","features":[396]},{"name":"D3D_PRIMITIVE_POINT","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINELIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINESTRIP","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_POINTLIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLEFAN","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ","features":[396]},{"name":"D3D_PRIMITIVE_TOPOLOGY_UNDEFINED","features":[396]},{"name":"D3D_PRIMITIVE_TRIANGLE","features":[396]},{"name":"D3D_PRIMITIVE_TRIANGLE_ADJ","features":[396]},{"name":"D3D_PRIMITIVE_UNDEFINED","features":[396]},{"name":"D3D_REGISTER_COMPONENT_FLOAT32","features":[396]},{"name":"D3D_REGISTER_COMPONENT_SINT32","features":[396]},{"name":"D3D_REGISTER_COMPONENT_TYPE","features":[396]},{"name":"D3D_REGISTER_COMPONENT_UINT32","features":[396]},{"name":"D3D_REGISTER_COMPONENT_UNKNOWN","features":[396]},{"name":"D3D_RESOURCE_RETURN_TYPE","features":[396]},{"name":"D3D_RETURN_TYPE_CONTINUED","features":[396]},{"name":"D3D_RETURN_TYPE_DOUBLE","features":[396]},{"name":"D3D_RETURN_TYPE_FLOAT","features":[396]},{"name":"D3D_RETURN_TYPE_MIXED","features":[396]},{"name":"D3D_RETURN_TYPE_SINT","features":[396]},{"name":"D3D_RETURN_TYPE_SNORM","features":[396]},{"name":"D3D_RETURN_TYPE_UINT","features":[396]},{"name":"D3D_RETURN_TYPE_UNORM","features":[396]},{"name":"D3D_SHADER_CBUFFER_FLAGS","features":[396]},{"name":"D3D_SHADER_FEATURE_11_1_DOUBLE_EXTENSIONS","features":[396]},{"name":"D3D_SHADER_FEATURE_11_1_SHADER_EXTENSIONS","features":[396]},{"name":"D3D_SHADER_FEATURE_64_UAVS","features":[396]},{"name":"D3D_SHADER_FEATURE_ATOMIC_INT64_ON_DESCRIPTOR_HEAP_RESOURCE","features":[396]},{"name":"D3D_SHADER_FEATURE_ATOMIC_INT64_ON_GROUP_SHARED","features":[396]},{"name":"D3D_SHADER_FEATURE_ATOMIC_INT64_ON_TYPED_RESOURCE","features":[396]},{"name":"D3D_SHADER_FEATURE_BARYCENTRICS","features":[396]},{"name":"D3D_SHADER_FEATURE_COMPUTE_SHADERS_PLUS_RAW_AND_STRUCTURED_BUFFERS_VIA_SHADER_4_X","features":[396]},{"name":"D3D_SHADER_FEATURE_DERIVATIVES_IN_MESH_AND_AMPLIFICATION_SHADERS","features":[396]},{"name":"D3D_SHADER_FEATURE_DOUBLES","features":[396]},{"name":"D3D_SHADER_FEATURE_INNER_COVERAGE","features":[396]},{"name":"D3D_SHADER_FEATURE_INT64_OPS","features":[396]},{"name":"D3D_SHADER_FEATURE_LEVEL_9_COMPARISON_FILTERING","features":[396]},{"name":"D3D_SHADER_FEATURE_MINIMUM_PRECISION","features":[396]},{"name":"D3D_SHADER_FEATURE_NATIVE_16BIT_OPS","features":[396]},{"name":"D3D_SHADER_FEATURE_RAYTRACING_TIER_1_1","features":[396]},{"name":"D3D_SHADER_FEATURE_RESOURCE_DESCRIPTOR_HEAP_INDEXING","features":[396]},{"name":"D3D_SHADER_FEATURE_ROVS","features":[396]},{"name":"D3D_SHADER_FEATURE_SAMPLER_DESCRIPTOR_HEAP_INDEXING","features":[396]},{"name":"D3D_SHADER_FEATURE_SAMPLER_FEEDBACK","features":[396]},{"name":"D3D_SHADER_FEATURE_SHADING_RATE","features":[396]},{"name":"D3D_SHADER_FEATURE_STENCIL_REF","features":[396]},{"name":"D3D_SHADER_FEATURE_TILED_RESOURCES","features":[396]},{"name":"D3D_SHADER_FEATURE_TYPED_UAV_LOAD_ADDITIONAL_FORMATS","features":[396]},{"name":"D3D_SHADER_FEATURE_UAVS_AT_EVERY_STAGE","features":[396]},{"name":"D3D_SHADER_FEATURE_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDING_RASTERIZER","features":[396]},{"name":"D3D_SHADER_FEATURE_VIEW_ID","features":[396]},{"name":"D3D_SHADER_FEATURE_WAVE_MMA","features":[396]},{"name":"D3D_SHADER_FEATURE_WAVE_OPS","features":[396]},{"name":"D3D_SHADER_INPUT_FLAGS","features":[396]},{"name":"D3D_SHADER_INPUT_TYPE","features":[396]},{"name":"D3D_SHADER_MACRO","features":[396]},{"name":"D3D_SHADER_VARIABLE_CLASS","features":[396]},{"name":"D3D_SHADER_VARIABLE_FLAGS","features":[396]},{"name":"D3D_SHADER_VARIABLE_TYPE","features":[396]},{"name":"D3D_SIF_COMPARISON_SAMPLER","features":[396]},{"name":"D3D_SIF_TEXTURE_COMPONENTS","features":[396]},{"name":"D3D_SIF_TEXTURE_COMPONENT_0","features":[396]},{"name":"D3D_SIF_TEXTURE_COMPONENT_1","features":[396]},{"name":"D3D_SIF_UNUSED","features":[396]},{"name":"D3D_SIF_USERPACKED","features":[396]},{"name":"D3D_SIT_BYTEADDRESS","features":[396]},{"name":"D3D_SIT_CBUFFER","features":[396]},{"name":"D3D_SIT_RTACCELERATIONSTRUCTURE","features":[396]},{"name":"D3D_SIT_SAMPLER","features":[396]},{"name":"D3D_SIT_STRUCTURED","features":[396]},{"name":"D3D_SIT_TBUFFER","features":[396]},{"name":"D3D_SIT_TEXTURE","features":[396]},{"name":"D3D_SIT_UAV_APPEND_STRUCTURED","features":[396]},{"name":"D3D_SIT_UAV_CONSUME_STRUCTURED","features":[396]},{"name":"D3D_SIT_UAV_FEEDBACKTEXTURE","features":[396]},{"name":"D3D_SIT_UAV_RWBYTEADDRESS","features":[396]},{"name":"D3D_SIT_UAV_RWSTRUCTURED","features":[396]},{"name":"D3D_SIT_UAV_RWSTRUCTURED_WITH_COUNTER","features":[396]},{"name":"D3D_SIT_UAV_RWTYPED","features":[396]},{"name":"D3D_SRV_DIMENSION","features":[396]},{"name":"D3D_SRV_DIMENSION_BUFFER","features":[396]},{"name":"D3D_SRV_DIMENSION_BUFFEREX","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURE1D","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURE1DARRAY","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURE2D","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURE2DARRAY","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURE2DMS","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURE3D","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURECUBE","features":[396]},{"name":"D3D_SRV_DIMENSION_TEXTURECUBEARRAY","features":[396]},{"name":"D3D_SRV_DIMENSION_UNKNOWN","features":[396]},{"name":"D3D_SVC_INTERFACE_CLASS","features":[396]},{"name":"D3D_SVC_INTERFACE_POINTER","features":[396]},{"name":"D3D_SVC_MATRIX_COLUMNS","features":[396]},{"name":"D3D_SVC_MATRIX_ROWS","features":[396]},{"name":"D3D_SVC_OBJECT","features":[396]},{"name":"D3D_SVC_SCALAR","features":[396]},{"name":"D3D_SVC_STRUCT","features":[396]},{"name":"D3D_SVC_VECTOR","features":[396]},{"name":"D3D_SVF_INTERFACE_PARAMETER","features":[396]},{"name":"D3D_SVF_INTERFACE_POINTER","features":[396]},{"name":"D3D_SVF_USED","features":[396]},{"name":"D3D_SVF_USERPACKED","features":[396]},{"name":"D3D_SVT_APPEND_STRUCTURED_BUFFER","features":[396]},{"name":"D3D_SVT_BLEND","features":[396]},{"name":"D3D_SVT_BOOL","features":[396]},{"name":"D3D_SVT_BUFFER","features":[396]},{"name":"D3D_SVT_BYTEADDRESS_BUFFER","features":[396]},{"name":"D3D_SVT_CBUFFER","features":[396]},{"name":"D3D_SVT_COMPUTESHADER","features":[396]},{"name":"D3D_SVT_CONSUME_STRUCTURED_BUFFER","features":[396]},{"name":"D3D_SVT_DEPTHSTENCIL","features":[396]},{"name":"D3D_SVT_DEPTHSTENCILVIEW","features":[396]},{"name":"D3D_SVT_DOMAINSHADER","features":[396]},{"name":"D3D_SVT_DOUBLE","features":[396]},{"name":"D3D_SVT_FLOAT","features":[396]},{"name":"D3D_SVT_FLOAT16","features":[396]},{"name":"D3D_SVT_GEOMETRYSHADER","features":[396]},{"name":"D3D_SVT_HULLSHADER","features":[396]},{"name":"D3D_SVT_INT","features":[396]},{"name":"D3D_SVT_INT16","features":[396]},{"name":"D3D_SVT_INT64","features":[396]},{"name":"D3D_SVT_INTERFACE_POINTER","features":[396]},{"name":"D3D_SVT_MIN10FLOAT","features":[396]},{"name":"D3D_SVT_MIN12INT","features":[396]},{"name":"D3D_SVT_MIN16FLOAT","features":[396]},{"name":"D3D_SVT_MIN16INT","features":[396]},{"name":"D3D_SVT_MIN16UINT","features":[396]},{"name":"D3D_SVT_MIN8FLOAT","features":[396]},{"name":"D3D_SVT_PIXELFRAGMENT","features":[396]},{"name":"D3D_SVT_PIXELSHADER","features":[396]},{"name":"D3D_SVT_RASTERIZER","features":[396]},{"name":"D3D_SVT_RENDERTARGETVIEW","features":[396]},{"name":"D3D_SVT_RWBUFFER","features":[396]},{"name":"D3D_SVT_RWBYTEADDRESS_BUFFER","features":[396]},{"name":"D3D_SVT_RWSTRUCTURED_BUFFER","features":[396]},{"name":"D3D_SVT_RWTEXTURE1D","features":[396]},{"name":"D3D_SVT_RWTEXTURE1DARRAY","features":[396]},{"name":"D3D_SVT_RWTEXTURE2D","features":[396]},{"name":"D3D_SVT_RWTEXTURE2DARRAY","features":[396]},{"name":"D3D_SVT_RWTEXTURE3D","features":[396]},{"name":"D3D_SVT_SAMPLER","features":[396]},{"name":"D3D_SVT_SAMPLER1D","features":[396]},{"name":"D3D_SVT_SAMPLER2D","features":[396]},{"name":"D3D_SVT_SAMPLER3D","features":[396]},{"name":"D3D_SVT_SAMPLERCUBE","features":[396]},{"name":"D3D_SVT_STRING","features":[396]},{"name":"D3D_SVT_STRUCTURED_BUFFER","features":[396]},{"name":"D3D_SVT_TBUFFER","features":[396]},{"name":"D3D_SVT_TEXTURE","features":[396]},{"name":"D3D_SVT_TEXTURE1D","features":[396]},{"name":"D3D_SVT_TEXTURE1DARRAY","features":[396]},{"name":"D3D_SVT_TEXTURE2D","features":[396]},{"name":"D3D_SVT_TEXTURE2DARRAY","features":[396]},{"name":"D3D_SVT_TEXTURE2DMS","features":[396]},{"name":"D3D_SVT_TEXTURE2DMSARRAY","features":[396]},{"name":"D3D_SVT_TEXTURE3D","features":[396]},{"name":"D3D_SVT_TEXTURECUBE","features":[396]},{"name":"D3D_SVT_TEXTURECUBEARRAY","features":[396]},{"name":"D3D_SVT_UINT","features":[396]},{"name":"D3D_SVT_UINT16","features":[396]},{"name":"D3D_SVT_UINT64","features":[396]},{"name":"D3D_SVT_UINT8","features":[396]},{"name":"D3D_SVT_VERTEXFRAGMENT","features":[396]},{"name":"D3D_SVT_VERTEXSHADER","features":[396]},{"name":"D3D_SVT_VOID","features":[396]},{"name":"D3D_TESSELLATOR_DOMAIN","features":[396]},{"name":"D3D_TESSELLATOR_DOMAIN_ISOLINE","features":[396]},{"name":"D3D_TESSELLATOR_DOMAIN_QUAD","features":[396]},{"name":"D3D_TESSELLATOR_DOMAIN_TRI","features":[396]},{"name":"D3D_TESSELLATOR_DOMAIN_UNDEFINED","features":[396]},{"name":"D3D_TESSELLATOR_OUTPUT_LINE","features":[396]},{"name":"D3D_TESSELLATOR_OUTPUT_POINT","features":[396]},{"name":"D3D_TESSELLATOR_OUTPUT_PRIMITIVE","features":[396]},{"name":"D3D_TESSELLATOR_OUTPUT_TRIANGLE_CCW","features":[396]},{"name":"D3D_TESSELLATOR_OUTPUT_TRIANGLE_CW","features":[396]},{"name":"D3D_TESSELLATOR_OUTPUT_UNDEFINED","features":[396]},{"name":"D3D_TESSELLATOR_PARTITIONING","features":[396]},{"name":"D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_EVEN","features":[396]},{"name":"D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_ODD","features":[396]},{"name":"D3D_TESSELLATOR_PARTITIONING_INTEGER","features":[396]},{"name":"D3D_TESSELLATOR_PARTITIONING_POW2","features":[396]},{"name":"D3D_TESSELLATOR_PARTITIONING_UNDEFINED","features":[396]},{"name":"D3D_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE","features":[396]},{"name":"D3D_TEXTURE_LAYOUT_ROW_MAJOR","features":[396]},{"name":"ID3DBlob","features":[396]},{"name":"ID3DDestructionNotifier","features":[396]},{"name":"ID3DInclude","features":[396]},{"name":"PFN_DESTRUCTION_CALLBACK","features":[396]},{"name":"WKPDID_CommentStringW","features":[396]},{"name":"WKPDID_D3D12UniqueObjectId","features":[396]},{"name":"WKPDID_D3DDebugObjectName","features":[396]},{"name":"WKPDID_D3DDebugObjectNameW","features":[396]}],"398":[{"name":"CLSID_DxcAssembler","features":[397]},{"name":"CLSID_DxcCompiler","features":[397]},{"name":"CLSID_DxcCompilerArgs","features":[397]},{"name":"CLSID_DxcContainerBuilder","features":[397]},{"name":"CLSID_DxcContainerReflection","features":[397]},{"name":"CLSID_DxcDiaDataSource","features":[397]},{"name":"CLSID_DxcLibrary","features":[397]},{"name":"CLSID_DxcLinker","features":[397]},{"name":"CLSID_DxcOptimizer","features":[397]},{"name":"CLSID_DxcPdbUtils","features":[397]},{"name":"CLSID_DxcUtils","features":[397]},{"name":"CLSID_DxcValidator","features":[397]},{"name":"DXC_ARG_ALL_RESOURCES_BOUND","features":[397]},{"name":"DXC_ARG_AVOID_FLOW_CONTROL","features":[397]},{"name":"DXC_ARG_DEBUG","features":[397]},{"name":"DXC_ARG_DEBUG_NAME_FOR_BINARY","features":[397]},{"name":"DXC_ARG_DEBUG_NAME_FOR_SOURCE","features":[397]},{"name":"DXC_ARG_ENABLE_BACKWARDS_COMPATIBILITY","features":[397]},{"name":"DXC_ARG_ENABLE_STRICTNESS","features":[397]},{"name":"DXC_ARG_IEEE_STRICTNESS","features":[397]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL0","features":[397]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL1","features":[397]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL2","features":[397]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL3","features":[397]},{"name":"DXC_ARG_PACK_MATRIX_COLUMN_MAJOR","features":[397]},{"name":"DXC_ARG_PACK_MATRIX_ROW_MAJOR","features":[397]},{"name":"DXC_ARG_PREFER_FLOW_CONTROL","features":[397]},{"name":"DXC_ARG_RESOURCES_MAY_ALIAS","features":[397]},{"name":"DXC_ARG_SKIP_OPTIMIZATIONS","features":[397]},{"name":"DXC_ARG_SKIP_VALIDATION","features":[397]},{"name":"DXC_ARG_WARNINGS_ARE_ERRORS","features":[397]},{"name":"DXC_CP","features":[397]},{"name":"DXC_CP_ACP","features":[397]},{"name":"DXC_CP_UTF16","features":[397]},{"name":"DXC_CP_UTF8","features":[397]},{"name":"DXC_EXTRA_OUTPUT_NAME_STDERR","features":[397]},{"name":"DXC_EXTRA_OUTPUT_NAME_STDOUT","features":[397]},{"name":"DXC_HASHFLAG_INCLUDES_SOURCE","features":[397]},{"name":"DXC_OUT_DISASSEMBLY","features":[397]},{"name":"DXC_OUT_ERRORS","features":[397]},{"name":"DXC_OUT_EXTRA_OUTPUTS","features":[397]},{"name":"DXC_OUT_HLSL","features":[397]},{"name":"DXC_OUT_KIND","features":[397]},{"name":"DXC_OUT_NONE","features":[397]},{"name":"DXC_OUT_OBJECT","features":[397]},{"name":"DXC_OUT_PDB","features":[397]},{"name":"DXC_OUT_REFLECTION","features":[397]},{"name":"DXC_OUT_ROOT_SIGNATURE","features":[397]},{"name":"DXC_OUT_SHADER_HASH","features":[397]},{"name":"DXC_OUT_TEXT","features":[397]},{"name":"DxcArgPair","features":[397]},{"name":"DxcBuffer","features":[397]},{"name":"DxcCreateInstance","features":[397]},{"name":"DxcCreateInstance2","features":[397,354]},{"name":"DxcCreateInstance2Proc","features":[397,354]},{"name":"DxcCreateInstanceProc","features":[397]},{"name":"DxcDefine","features":[397]},{"name":"DxcShaderHash","features":[397]},{"name":"DxcValidatorFlags_Default","features":[397]},{"name":"DxcValidatorFlags_InPlaceEdit","features":[397]},{"name":"DxcValidatorFlags_ModuleOnly","features":[397]},{"name":"DxcValidatorFlags_RootSignatureOnly","features":[397]},{"name":"DxcValidatorFlags_ValidMask","features":[397]},{"name":"DxcVersionInfoFlags_Debug","features":[397]},{"name":"DxcVersionInfoFlags_Internal","features":[397]},{"name":"DxcVersionInfoFlags_None","features":[397]},{"name":"IDxcAssembler","features":[397]},{"name":"IDxcBlob","features":[397]},{"name":"IDxcBlobEncoding","features":[397]},{"name":"IDxcBlobUtf16","features":[397]},{"name":"IDxcBlobUtf8","features":[397]},{"name":"IDxcCompiler","features":[397]},{"name":"IDxcCompiler2","features":[397]},{"name":"IDxcCompiler3","features":[397]},{"name":"IDxcCompilerArgs","features":[397]},{"name":"IDxcContainerBuilder","features":[397]},{"name":"IDxcContainerReflection","features":[397]},{"name":"IDxcExtraOutputs","features":[397]},{"name":"IDxcIncludeHandler","features":[397]},{"name":"IDxcLibrary","features":[397]},{"name":"IDxcLinker","features":[397]},{"name":"IDxcOperationResult","features":[397]},{"name":"IDxcOptimizer","features":[397]},{"name":"IDxcOptimizerPass","features":[397]},{"name":"IDxcPdbUtils","features":[397]},{"name":"IDxcResult","features":[397]},{"name":"IDxcUtils","features":[397]},{"name":"IDxcValidator","features":[397]},{"name":"IDxcValidator2","features":[397]},{"name":"IDxcVersionInfo","features":[397]},{"name":"IDxcVersionInfo2","features":[397]},{"name":"IDxcVersionInfo3","features":[397]}],"399":[{"name":"D3DCOMPILER_DLL_A","features":[398]},{"name":"D3DCOMPILER_DLL_W","features":[398]},{"name":"D3DCOMPILER_STRIP_DEBUG_INFO","features":[398]},{"name":"D3DCOMPILER_STRIP_FLAGS","features":[398]},{"name":"D3DCOMPILER_STRIP_PRIVATE_DATA","features":[398]},{"name":"D3DCOMPILER_STRIP_REFLECTION_DATA","features":[398]},{"name":"D3DCOMPILER_STRIP_ROOT_SIGNATURE","features":[398]},{"name":"D3DCOMPILER_STRIP_TEST_BLOBS","features":[398]},{"name":"D3DCOMPILE_ALL_RESOURCES_BOUND","features":[398]},{"name":"D3DCOMPILE_AVOID_FLOW_CONTROL","features":[398]},{"name":"D3DCOMPILE_DEBUG","features":[398]},{"name":"D3DCOMPILE_DEBUG_NAME_FOR_BINARY","features":[398]},{"name":"D3DCOMPILE_DEBUG_NAME_FOR_SOURCE","features":[398]},{"name":"D3DCOMPILE_EFFECT_ALLOW_SLOW_OPS","features":[398]},{"name":"D3DCOMPILE_EFFECT_CHILD_EFFECT","features":[398]},{"name":"D3DCOMPILE_ENABLE_BACKWARDS_COMPATIBILITY","features":[398]},{"name":"D3DCOMPILE_ENABLE_STRICTNESS","features":[398]},{"name":"D3DCOMPILE_ENABLE_UNBOUNDED_DESCRIPTOR_TABLES","features":[398]},{"name":"D3DCOMPILE_FLAGS2_FORCE_ROOT_SIGNATURE_1_0","features":[398]},{"name":"D3DCOMPILE_FLAGS2_FORCE_ROOT_SIGNATURE_1_1","features":[398]},{"name":"D3DCOMPILE_FLAGS2_FORCE_ROOT_SIGNATURE_LATEST","features":[398]},{"name":"D3DCOMPILE_FORCE_PS_SOFTWARE_NO_OPT","features":[398]},{"name":"D3DCOMPILE_FORCE_VS_SOFTWARE_NO_OPT","features":[398]},{"name":"D3DCOMPILE_IEEE_STRICTNESS","features":[398]},{"name":"D3DCOMPILE_NO_PRESHADER","features":[398]},{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL0","features":[398]},{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL1","features":[398]},{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL3","features":[398]},{"name":"D3DCOMPILE_PACK_MATRIX_COLUMN_MAJOR","features":[398]},{"name":"D3DCOMPILE_PACK_MATRIX_ROW_MAJOR","features":[398]},{"name":"D3DCOMPILE_PARTIAL_PRECISION","features":[398]},{"name":"D3DCOMPILE_PREFER_FLOW_CONTROL","features":[398]},{"name":"D3DCOMPILE_RESERVED16","features":[398]},{"name":"D3DCOMPILE_RESERVED17","features":[398]},{"name":"D3DCOMPILE_RESOURCES_MAY_ALIAS","features":[398]},{"name":"D3DCOMPILE_SECDATA_MERGE_UAV_SLOTS","features":[398]},{"name":"D3DCOMPILE_SECDATA_PRESERVE_TEMPLATE_SLOTS","features":[398]},{"name":"D3DCOMPILE_SECDATA_REQUIRE_TEMPLATE_MATCH","features":[398]},{"name":"D3DCOMPILE_SKIP_OPTIMIZATION","features":[398]},{"name":"D3DCOMPILE_SKIP_VALIDATION","features":[398]},{"name":"D3DCOMPILE_WARNINGS_ARE_ERRORS","features":[398]},{"name":"D3DCompile","features":[398]},{"name":"D3DCompile2","features":[398]},{"name":"D3DCompileFromFile","features":[398]},{"name":"D3DCompressShaders","features":[398]},{"name":"D3DCreateBlob","features":[398]},{"name":"D3DCreateFunctionLinkingGraph","features":[398,399]},{"name":"D3DCreateLinker","features":[398,399]},{"name":"D3DDecompressShaders","features":[398]},{"name":"D3DDisassemble","features":[398]},{"name":"D3DDisassemble10Effect","features":[398,400]},{"name":"D3DDisassembleRegion","features":[398]},{"name":"D3DGetBlobPart","features":[398]},{"name":"D3DGetDebugInfo","features":[398]},{"name":"D3DGetInputAndOutputSignatureBlob","features":[398]},{"name":"D3DGetInputSignatureBlob","features":[398]},{"name":"D3DGetOutputSignatureBlob","features":[398]},{"name":"D3DGetTraceInstructionOffsets","features":[398]},{"name":"D3DLoadModule","features":[398,399]},{"name":"D3DPreprocess","features":[398]},{"name":"D3DReadFileToBlob","features":[398]},{"name":"D3DReflect","features":[398]},{"name":"D3DReflectLibrary","features":[398]},{"name":"D3DSetBlobPart","features":[398]},{"name":"D3DStripShader","features":[398]},{"name":"D3DWriteBlobToFile","features":[303,398]},{"name":"D3D_BLOB_ALL_SIGNATURE_BLOB","features":[398]},{"name":"D3D_BLOB_DEBUG_INFO","features":[398]},{"name":"D3D_BLOB_DEBUG_NAME","features":[398]},{"name":"D3D_BLOB_INPUT_AND_OUTPUT_SIGNATURE_BLOB","features":[398]},{"name":"D3D_BLOB_INPUT_SIGNATURE_BLOB","features":[398]},{"name":"D3D_BLOB_LEGACY_SHADER","features":[398]},{"name":"D3D_BLOB_OUTPUT_SIGNATURE_BLOB","features":[398]},{"name":"D3D_BLOB_PART","features":[398]},{"name":"D3D_BLOB_PATCH_CONSTANT_SIGNATURE_BLOB","features":[398]},{"name":"D3D_BLOB_PDB","features":[398]},{"name":"D3D_BLOB_PRIVATE_DATA","features":[398]},{"name":"D3D_BLOB_ROOT_SIGNATURE","features":[398]},{"name":"D3D_BLOB_TEST_ALTERNATE_SHADER","features":[398]},{"name":"D3D_BLOB_TEST_COMPILE_DETAILS","features":[398]},{"name":"D3D_BLOB_TEST_COMPILE_PERF","features":[398]},{"name":"D3D_BLOB_TEST_COMPILE_REPORT","features":[398]},{"name":"D3D_BLOB_XNA_PREPASS_SHADER","features":[398]},{"name":"D3D_BLOB_XNA_SHADER","features":[398]},{"name":"D3D_COMPILER_VERSION","features":[398]},{"name":"D3D_COMPRESS_SHADER_KEEP_ALL_PARTS","features":[398]},{"name":"D3D_DISASM_DISABLE_DEBUG_INFO","features":[398]},{"name":"D3D_DISASM_ENABLE_COLOR_CODE","features":[398]},{"name":"D3D_DISASM_ENABLE_DEFAULT_VALUE_PRINTS","features":[398]},{"name":"D3D_DISASM_ENABLE_INSTRUCTION_CYCLE","features":[398]},{"name":"D3D_DISASM_ENABLE_INSTRUCTION_NUMBERING","features":[398]},{"name":"D3D_DISASM_ENABLE_INSTRUCTION_OFFSET","features":[398]},{"name":"D3D_DISASM_INSTRUCTION_ONLY","features":[398]},{"name":"D3D_DISASM_PRINT_HEX_LITERALS","features":[398]},{"name":"D3D_GET_INST_OFFSETS_INCLUDE_NON_EXECUTABLE","features":[398]},{"name":"D3D_SHADER_DATA","features":[398]},{"name":"pD3DCompile","features":[398]},{"name":"pD3DDisassemble","features":[398]},{"name":"pD3DPreprocess","features":[398]}],"400":[{"name":"D3D10CompileEffectFromMemory","features":[396,400]},{"name":"D3D10CompileShader","features":[396,400]},{"name":"D3D10CreateBlob","features":[396,400]},{"name":"D3D10CreateDevice","features":[303,400,395]},{"name":"D3D10CreateDevice1","features":[303,400,395]},{"name":"D3D10CreateDeviceAndSwapChain","features":[303,400,391]},{"name":"D3D10CreateDeviceAndSwapChain1","features":[303,400,391]},{"name":"D3D10CreateEffectFromMemory","features":[400]},{"name":"D3D10CreateEffectPoolFromMemory","features":[400]},{"name":"D3D10CreateStateBlock","features":[400]},{"name":"D3D10DisassembleEffect","features":[303,396,400]},{"name":"D3D10DisassembleShader","features":[303,396,400]},{"name":"D3D10GetGeometryShaderProfile","features":[400]},{"name":"D3D10GetInputAndOutputSignatureBlob","features":[396,400]},{"name":"D3D10GetInputSignatureBlob","features":[396,400]},{"name":"D3D10GetOutputSignatureBlob","features":[396,400]},{"name":"D3D10GetPixelShaderProfile","features":[400]},{"name":"D3D10GetShaderDebugInfo","features":[396,400]},{"name":"D3D10GetVertexShaderProfile","features":[400]},{"name":"D3D10PreprocessShader","features":[396,400]},{"name":"D3D10ReflectShader","features":[400]},{"name":"D3D10StateBlockMaskDifference","features":[400]},{"name":"D3D10StateBlockMaskDisableAll","features":[400]},{"name":"D3D10StateBlockMaskDisableCapture","features":[400]},{"name":"D3D10StateBlockMaskEnableAll","features":[400]},{"name":"D3D10StateBlockMaskEnableCapture","features":[400]},{"name":"D3D10StateBlockMaskGetSetting","features":[303,400]},{"name":"D3D10StateBlockMaskIntersect","features":[400]},{"name":"D3D10StateBlockMaskUnion","features":[400]},{"name":"D3D10_16BIT_INDEX_STRIP_CUT_VALUE","features":[400]},{"name":"D3D10_1_DEFAULT_SAMPLE_MASK","features":[400]},{"name":"D3D10_1_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[400]},{"name":"D3D10_1_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[400]},{"name":"D3D10_1_GS_INPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[400]},{"name":"D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[400]},{"name":"D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[400]},{"name":"D3D10_1_PS_OUTPUT_MASK_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_1_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_1_PS_OUTPUT_MASK_REGISTER_COUNT","features":[400]},{"name":"D3D10_1_SHADER_MAJOR_VERSION","features":[400]},{"name":"D3D10_1_SHADER_MINOR_VERSION","features":[400]},{"name":"D3D10_1_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[400]},{"name":"D3D10_1_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[400]},{"name":"D3D10_1_SO_BUFFER_SLOT_COUNT","features":[400]},{"name":"D3D10_1_SO_MULTIPLE_BUFFER_ELEMENTS_PER_BUFFER","features":[400]},{"name":"D3D10_1_SO_SINGLE_BUFFER_COMPONENT_LIMIT","features":[400]},{"name":"D3D10_1_STANDARD_VERTEX_ELEMENT_COUNT","features":[400]},{"name":"D3D10_1_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[400]},{"name":"D3D10_1_VS_INPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_1_VS_OUTPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_32BIT_INDEX_STRIP_CUT_VALUE","features":[400]},{"name":"D3D10_8BIT_INDEX_STRIP_CUT_VALUE","features":[400]},{"name":"D3D10_ALL_RESOURCES_BOUND","features":[400]},{"name":"D3D10_ANISOTROPIC_FILTERING_BIT","features":[400]},{"name":"D3D10_APPEND_ALIGNED_ELEMENT","features":[400]},{"name":"D3D10_APPNAME_STRING","features":[400]},{"name":"D3D10_APPSIZE_STRING","features":[400]},{"name":"D3D10_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT","features":[400]},{"name":"D3D10_ASYNC_GETDATA_DONOTFLUSH","features":[400]},{"name":"D3D10_ASYNC_GETDATA_FLAG","features":[400]},{"name":"D3D10_BIND_CONSTANT_BUFFER","features":[400]},{"name":"D3D10_BIND_DEPTH_STENCIL","features":[400]},{"name":"D3D10_BIND_FLAG","features":[400]},{"name":"D3D10_BIND_INDEX_BUFFER","features":[400]},{"name":"D3D10_BIND_RENDER_TARGET","features":[400]},{"name":"D3D10_BIND_SHADER_RESOURCE","features":[400]},{"name":"D3D10_BIND_STREAM_OUTPUT","features":[400]},{"name":"D3D10_BIND_VERTEX_BUFFER","features":[400]},{"name":"D3D10_BLEND","features":[400]},{"name":"D3D10_BLEND_BLEND_FACTOR","features":[400]},{"name":"D3D10_BLEND_DESC","features":[303,400]},{"name":"D3D10_BLEND_DESC1","features":[303,400]},{"name":"D3D10_BLEND_DEST_ALPHA","features":[400]},{"name":"D3D10_BLEND_DEST_COLOR","features":[400]},{"name":"D3D10_BLEND_INV_BLEND_FACTOR","features":[400]},{"name":"D3D10_BLEND_INV_DEST_ALPHA","features":[400]},{"name":"D3D10_BLEND_INV_DEST_COLOR","features":[400]},{"name":"D3D10_BLEND_INV_SRC1_ALPHA","features":[400]},{"name":"D3D10_BLEND_INV_SRC1_COLOR","features":[400]},{"name":"D3D10_BLEND_INV_SRC_ALPHA","features":[400]},{"name":"D3D10_BLEND_INV_SRC_COLOR","features":[400]},{"name":"D3D10_BLEND_ONE","features":[400]},{"name":"D3D10_BLEND_OP","features":[400]},{"name":"D3D10_BLEND_OP_ADD","features":[400]},{"name":"D3D10_BLEND_OP_MAX","features":[400]},{"name":"D3D10_BLEND_OP_MIN","features":[400]},{"name":"D3D10_BLEND_OP_REV_SUBTRACT","features":[400]},{"name":"D3D10_BLEND_OP_SUBTRACT","features":[400]},{"name":"D3D10_BLEND_SRC1_ALPHA","features":[400]},{"name":"D3D10_BLEND_SRC1_COLOR","features":[400]},{"name":"D3D10_BLEND_SRC_ALPHA","features":[400]},{"name":"D3D10_BLEND_SRC_ALPHA_SAT","features":[400]},{"name":"D3D10_BLEND_SRC_COLOR","features":[400]},{"name":"D3D10_BLEND_ZERO","features":[400]},{"name":"D3D10_BOX","features":[400]},{"name":"D3D10_BREAKON_CATEGORY","features":[400]},{"name":"D3D10_BREAKON_ID_DECIMAL","features":[400]},{"name":"D3D10_BREAKON_ID_STRING","features":[400]},{"name":"D3D10_BREAKON_SEVERITY","features":[400]},{"name":"D3D10_BUFFER_DESC","features":[400]},{"name":"D3D10_BUFFER_RTV","features":[400]},{"name":"D3D10_BUFFER_SRV","features":[400]},{"name":"D3D10_CENTER_MULTISAMPLE_PATTERN","features":[400]},{"name":"D3D10_CLEAR_DEPTH","features":[400]},{"name":"D3D10_CLEAR_FLAG","features":[400]},{"name":"D3D10_CLEAR_STENCIL","features":[400]},{"name":"D3D10_CLIP_OR_CULL_DISTANCE_COUNT","features":[400]},{"name":"D3D10_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT","features":[400]},{"name":"D3D10_COLOR_WRITE_ENABLE","features":[400]},{"name":"D3D10_COLOR_WRITE_ENABLE_ALL","features":[400]},{"name":"D3D10_COLOR_WRITE_ENABLE_ALPHA","features":[400]},{"name":"D3D10_COLOR_WRITE_ENABLE_BLUE","features":[400]},{"name":"D3D10_COLOR_WRITE_ENABLE_GREEN","features":[400]},{"name":"D3D10_COLOR_WRITE_ENABLE_RED","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT","features":[400]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_SUBROUTINE_NESTING_LIMIT","features":[400]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_COUNT","features":[400]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX","features":[400]},{"name":"D3D10_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN","features":[400]},{"name":"D3D10_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE","features":[400]},{"name":"D3D10_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE","features":[400]},{"name":"D3D10_COMPARISON_ALWAYS","features":[400]},{"name":"D3D10_COMPARISON_EQUAL","features":[400]},{"name":"D3D10_COMPARISON_FILTERING_BIT","features":[400]},{"name":"D3D10_COMPARISON_FUNC","features":[400]},{"name":"D3D10_COMPARISON_GREATER","features":[400]},{"name":"D3D10_COMPARISON_GREATER_EQUAL","features":[400]},{"name":"D3D10_COMPARISON_LESS","features":[400]},{"name":"D3D10_COMPARISON_LESS_EQUAL","features":[400]},{"name":"D3D10_COMPARISON_NEVER","features":[400]},{"name":"D3D10_COMPARISON_NOT_EQUAL","features":[400]},{"name":"D3D10_COUNTER","features":[400]},{"name":"D3D10_COUNTER_DESC","features":[400]},{"name":"D3D10_COUNTER_DEVICE_DEPENDENT_0","features":[400]},{"name":"D3D10_COUNTER_FILLRATE_THROUGHPUT_UTILIZATION","features":[400]},{"name":"D3D10_COUNTER_GEOMETRY_PROCESSING","features":[400]},{"name":"D3D10_COUNTER_GPU_IDLE","features":[400]},{"name":"D3D10_COUNTER_GS_COMPUTATION_LIMITED","features":[400]},{"name":"D3D10_COUNTER_GS_MEMORY_LIMITED","features":[400]},{"name":"D3D10_COUNTER_HOST_ADAPTER_BANDWIDTH_UTILIZATION","features":[400]},{"name":"D3D10_COUNTER_INFO","features":[400]},{"name":"D3D10_COUNTER_LOCAL_VIDMEM_BANDWIDTH_UTILIZATION","features":[400]},{"name":"D3D10_COUNTER_OTHER_GPU_PROCESSING","features":[400]},{"name":"D3D10_COUNTER_PIXEL_PROCESSING","features":[400]},{"name":"D3D10_COUNTER_POST_TRANSFORM_CACHE_HIT_RATE","features":[400]},{"name":"D3D10_COUNTER_PS_COMPUTATION_LIMITED","features":[400]},{"name":"D3D10_COUNTER_PS_MEMORY_LIMITED","features":[400]},{"name":"D3D10_COUNTER_TEXTURE_CACHE_HIT_RATE","features":[400]},{"name":"D3D10_COUNTER_TRIANGLE_SETUP_THROUGHPUT_UTILIZATION","features":[400]},{"name":"D3D10_COUNTER_TYPE","features":[400]},{"name":"D3D10_COUNTER_TYPE_FLOAT32","features":[400]},{"name":"D3D10_COUNTER_TYPE_UINT16","features":[400]},{"name":"D3D10_COUNTER_TYPE_UINT32","features":[400]},{"name":"D3D10_COUNTER_TYPE_UINT64","features":[400]},{"name":"D3D10_COUNTER_VERTEX_PROCESSING","features":[400]},{"name":"D3D10_COUNTER_VERTEX_THROUGHPUT_UTILIZATION","features":[400]},{"name":"D3D10_COUNTER_VS_COMPUTATION_LIMITED","features":[400]},{"name":"D3D10_COUNTER_VS_MEMORY_LIMITED","features":[400]},{"name":"D3D10_CPU_ACCESS_FLAG","features":[400]},{"name":"D3D10_CPU_ACCESS_READ","features":[400]},{"name":"D3D10_CPU_ACCESS_WRITE","features":[400]},{"name":"D3D10_CREATE_DEVICE_ALLOW_NULL_FROM_MAP","features":[400]},{"name":"D3D10_CREATE_DEVICE_BGRA_SUPPORT","features":[400]},{"name":"D3D10_CREATE_DEVICE_DEBUG","features":[400]},{"name":"D3D10_CREATE_DEVICE_DEBUGGABLE","features":[400]},{"name":"D3D10_CREATE_DEVICE_FLAG","features":[400]},{"name":"D3D10_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY","features":[400]},{"name":"D3D10_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS","features":[400]},{"name":"D3D10_CREATE_DEVICE_SINGLETHREADED","features":[400]},{"name":"D3D10_CREATE_DEVICE_STRICT_VALIDATION","features":[400]},{"name":"D3D10_CREATE_DEVICE_SWITCH_TO_REF","features":[400]},{"name":"D3D10_CULL_BACK","features":[400]},{"name":"D3D10_CULL_FRONT","features":[400]},{"name":"D3D10_CULL_MODE","features":[400]},{"name":"D3D10_CULL_NONE","features":[400]},{"name":"D3D10_DEBUG_FEATURE_FINISH_PER_RENDER_OP","features":[400]},{"name":"D3D10_DEBUG_FEATURE_FLUSH_PER_RENDER_OP","features":[400]},{"name":"D3D10_DEBUG_FEATURE_PRESENT_PER_RENDER_OP","features":[400]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_ALPHA","features":[400]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_BLUE","features":[400]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_GREEN","features":[400]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_RED","features":[400]},{"name":"D3D10_DEFAULT_BORDER_COLOR_COMPONENT","features":[400]},{"name":"D3D10_DEFAULT_DEPTH_BIAS","features":[400]},{"name":"D3D10_DEFAULT_DEPTH_BIAS_CLAMP","features":[400]},{"name":"D3D10_DEFAULT_MAX_ANISOTROPY","features":[400]},{"name":"D3D10_DEFAULT_MIP_LOD_BIAS","features":[400]},{"name":"D3D10_DEFAULT_RENDER_TARGET_ARRAY_INDEX","features":[400]},{"name":"D3D10_DEFAULT_SAMPLE_MASK","features":[400]},{"name":"D3D10_DEFAULT_SCISSOR_ENDX","features":[400]},{"name":"D3D10_DEFAULT_SCISSOR_ENDY","features":[400]},{"name":"D3D10_DEFAULT_SCISSOR_STARTX","features":[400]},{"name":"D3D10_DEFAULT_SCISSOR_STARTY","features":[400]},{"name":"D3D10_DEFAULT_SLOPE_SCALED_DEPTH_BIAS","features":[400]},{"name":"D3D10_DEFAULT_STENCIL_READ_MASK","features":[400]},{"name":"D3D10_DEFAULT_STENCIL_REFERENCE","features":[400]},{"name":"D3D10_DEFAULT_STENCIL_WRITE_MASK","features":[400]},{"name":"D3D10_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX","features":[400]},{"name":"D3D10_DEFAULT_VIEWPORT_HEIGHT","features":[400]},{"name":"D3D10_DEFAULT_VIEWPORT_MAX_DEPTH","features":[400]},{"name":"D3D10_DEFAULT_VIEWPORT_MIN_DEPTH","features":[400]},{"name":"D3D10_DEFAULT_VIEWPORT_TOPLEFTX","features":[400]},{"name":"D3D10_DEFAULT_VIEWPORT_TOPLEFTY","features":[400]},{"name":"D3D10_DEFAULT_VIEWPORT_WIDTH","features":[400]},{"name":"D3D10_DEPTH_STENCILOP_DESC","features":[400]},{"name":"D3D10_DEPTH_STENCIL_DESC","features":[303,400]},{"name":"D3D10_DEPTH_STENCIL_VIEW_DESC","features":[400,391]},{"name":"D3D10_DEPTH_WRITE_MASK","features":[400]},{"name":"D3D10_DEPTH_WRITE_MASK_ALL","features":[400]},{"name":"D3D10_DEPTH_WRITE_MASK_ZERO","features":[400]},{"name":"D3D10_DEVICE_STATE_TYPES","features":[400]},{"name":"D3D10_DRIVER_TYPE","features":[400]},{"name":"D3D10_DRIVER_TYPE_HARDWARE","features":[400]},{"name":"D3D10_DRIVER_TYPE_NULL","features":[400]},{"name":"D3D10_DRIVER_TYPE_REFERENCE","features":[400]},{"name":"D3D10_DRIVER_TYPE_SOFTWARE","features":[400]},{"name":"D3D10_DRIVER_TYPE_WARP","features":[400]},{"name":"D3D10_DST_GS","features":[400]},{"name":"D3D10_DST_GS_CONSTANT_BUFFERS","features":[400]},{"name":"D3D10_DST_GS_SAMPLERS","features":[400]},{"name":"D3D10_DST_GS_SHADER_RESOURCES","features":[400]},{"name":"D3D10_DST_IA_INDEX_BUFFER","features":[400]},{"name":"D3D10_DST_IA_INPUT_LAYOUT","features":[400]},{"name":"D3D10_DST_IA_PRIMITIVE_TOPOLOGY","features":[400]},{"name":"D3D10_DST_IA_VERTEX_BUFFERS","features":[400]},{"name":"D3D10_DST_OM_BLEND_STATE","features":[400]},{"name":"D3D10_DST_OM_DEPTH_STENCIL_STATE","features":[400]},{"name":"D3D10_DST_OM_RENDER_TARGETS","features":[400]},{"name":"D3D10_DST_PREDICATION","features":[400]},{"name":"D3D10_DST_PS","features":[400]},{"name":"D3D10_DST_PS_CONSTANT_BUFFERS","features":[400]},{"name":"D3D10_DST_PS_SAMPLERS","features":[400]},{"name":"D3D10_DST_PS_SHADER_RESOURCES","features":[400]},{"name":"D3D10_DST_RS_RASTERIZER_STATE","features":[400]},{"name":"D3D10_DST_RS_SCISSOR_RECTS","features":[400]},{"name":"D3D10_DST_RS_VIEWPORTS","features":[400]},{"name":"D3D10_DST_SO_BUFFERS","features":[400]},{"name":"D3D10_DST_VS","features":[400]},{"name":"D3D10_DST_VS_CONSTANT_BUFFERS","features":[400]},{"name":"D3D10_DST_VS_SAMPLERS","features":[400]},{"name":"D3D10_DST_VS_SHADER_RESOURCES","features":[400]},{"name":"D3D10_DSV_DIMENSION","features":[400]},{"name":"D3D10_DSV_DIMENSION_TEXTURE1D","features":[400]},{"name":"D3D10_DSV_DIMENSION_TEXTURE1DARRAY","features":[400]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2D","features":[400]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2DARRAY","features":[400]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2DMS","features":[400]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2DMSARRAY","features":[400]},{"name":"D3D10_DSV_DIMENSION_UNKNOWN","features":[400]},{"name":"D3D10_EFFECT_COMPILE_ALLOW_SLOW_OPS","features":[400]},{"name":"D3D10_EFFECT_COMPILE_CHILD_EFFECT","features":[400]},{"name":"D3D10_EFFECT_DESC","features":[303,400]},{"name":"D3D10_EFFECT_SHADER_DESC","features":[303,400]},{"name":"D3D10_EFFECT_SINGLE_THREADED","features":[400]},{"name":"D3D10_EFFECT_TYPE_DESC","features":[396,400]},{"name":"D3D10_EFFECT_VARIABLE_ANNOTATION","features":[400]},{"name":"D3D10_EFFECT_VARIABLE_DESC","features":[400]},{"name":"D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT","features":[400]},{"name":"D3D10_EFFECT_VARIABLE_POOLED","features":[400]},{"name":"D3D10_ENABLE_BREAK_ON_MESSAGE","features":[400]},{"name":"D3D10_ENABLE_UNBOUNDED_DESCRIPTOR_TABLES","features":[400]},{"name":"D3D10_FEATURE_LEVEL1","features":[400]},{"name":"D3D10_FEATURE_LEVEL_10_0","features":[400]},{"name":"D3D10_FEATURE_LEVEL_10_1","features":[400]},{"name":"D3D10_FEATURE_LEVEL_9_1","features":[400]},{"name":"D3D10_FEATURE_LEVEL_9_2","features":[400]},{"name":"D3D10_FEATURE_LEVEL_9_3","features":[400]},{"name":"D3D10_FILL_MODE","features":[400]},{"name":"D3D10_FILL_SOLID","features":[400]},{"name":"D3D10_FILL_WIREFRAME","features":[400]},{"name":"D3D10_FILTER","features":[400]},{"name":"D3D10_FILTER_ANISOTROPIC","features":[400]},{"name":"D3D10_FILTER_COMPARISON_ANISOTROPIC","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_MIN_MAG_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_MIN_MAG_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[400]},{"name":"D3D10_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[400]},{"name":"D3D10_FILTER_TEXT_1BIT","features":[400]},{"name":"D3D10_FILTER_TYPE","features":[400]},{"name":"D3D10_FILTER_TYPE_LINEAR","features":[400]},{"name":"D3D10_FILTER_TYPE_MASK","features":[400]},{"name":"D3D10_FILTER_TYPE_POINT","features":[400]},{"name":"D3D10_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[400]},{"name":"D3D10_FLOAT32_MAX","features":[400]},{"name":"D3D10_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[400]},{"name":"D3D10_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR","features":[400]},{"name":"D3D10_FLOAT_TO_SRGB_EXPONENT_NUMERATOR","features":[400]},{"name":"D3D10_FLOAT_TO_SRGB_OFFSET","features":[400]},{"name":"D3D10_FLOAT_TO_SRGB_SCALE_1","features":[400]},{"name":"D3D10_FLOAT_TO_SRGB_SCALE_2","features":[400]},{"name":"D3D10_FLOAT_TO_SRGB_THRESHOLD","features":[400]},{"name":"D3D10_FORMAT_SUPPORT","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_BACK_BUFFER_CAST","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_BLENDABLE","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_BUFFER","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_CPU_LOCKABLE","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_DEPTH_STENCIL","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_DISPLAY","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_IA_INDEX_BUFFER","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_IA_VERTEX_BUFFER","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_MIP","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_MIP_AUTOGEN","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_MULTISAMPLE_LOAD","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_RENDER_TARGET","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_GATHER","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_LOAD","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_SAMPLE","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_SO_BUFFER","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURE1D","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURE2D","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURE3D","features":[400]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURECUBE","features":[400]},{"name":"D3D10_FTOI_INSTRUCTION_MAX_INPUT","features":[400]},{"name":"D3D10_FTOI_INSTRUCTION_MIN_INPUT","features":[400]},{"name":"D3D10_FTOU_INSTRUCTION_MAX_INPUT","features":[400]},{"name":"D3D10_FTOU_INSTRUCTION_MIN_INPUT","features":[400]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_COUNT","features":[400]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_GS_INPUT_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_GS_INPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_GS_INPUT_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_GS_INPUT_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_GS_INPUT_REGISTER_VERTICES","features":[400]},{"name":"D3D10_GS_OUTPUT_ELEMENTS","features":[400]},{"name":"D3D10_GS_OUTPUT_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_GS_OUTPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES","features":[400]},{"name":"D3D10_IA_DEFAULT_PRIMITIVE_TOPOLOGY","features":[400]},{"name":"D3D10_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES","features":[400]},{"name":"D3D10_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT","features":[400]},{"name":"D3D10_IA_INSTANCE_ID_BIT_COUNT","features":[400]},{"name":"D3D10_IA_INTEGER_ARITHMETIC_BIT_COUNT","features":[400]},{"name":"D3D10_IA_PRIMITIVE_ID_BIT_COUNT","features":[400]},{"name":"D3D10_IA_VERTEX_ID_BIT_COUNT","features":[400]},{"name":"D3D10_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[400]},{"name":"D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[400]},{"name":"D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[400]},{"name":"D3D10_INFOQUEUE_STORAGE_FILTER_OVERRIDE","features":[400]},{"name":"D3D10_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[400]},{"name":"D3D10_INFO_QUEUE_FILTER","features":[400]},{"name":"D3D10_INFO_QUEUE_FILTER_DESC","features":[400]},{"name":"D3D10_INPUT_CLASSIFICATION","features":[400]},{"name":"D3D10_INPUT_ELEMENT_DESC","features":[400,391]},{"name":"D3D10_INPUT_PER_INSTANCE_DATA","features":[400]},{"name":"D3D10_INPUT_PER_VERTEX_DATA","features":[400]},{"name":"D3D10_INTEGER_DIVIDE_BY_ZERO_QUOTIENT","features":[400]},{"name":"D3D10_INTEGER_DIVIDE_BY_ZERO_REMAINDER","features":[400]},{"name":"D3D10_LINEAR_GAMMA","features":[400]},{"name":"D3D10_MAG_FILTER_SHIFT","features":[400]},{"name":"D3D10_MAP","features":[400]},{"name":"D3D10_MAPPED_TEXTURE2D","features":[400]},{"name":"D3D10_MAPPED_TEXTURE3D","features":[400]},{"name":"D3D10_MAP_FLAG","features":[400]},{"name":"D3D10_MAP_FLAG_DO_NOT_WAIT","features":[400]},{"name":"D3D10_MAP_READ","features":[400]},{"name":"D3D10_MAP_READ_WRITE","features":[400]},{"name":"D3D10_MAP_WRITE","features":[400]},{"name":"D3D10_MAP_WRITE_DISCARD","features":[400]},{"name":"D3D10_MAP_WRITE_NO_OVERWRITE","features":[400]},{"name":"D3D10_MAX_BORDER_COLOR_COMPONENT","features":[400]},{"name":"D3D10_MAX_DEPTH","features":[400]},{"name":"D3D10_MAX_MAXANISOTROPY","features":[400]},{"name":"D3D10_MAX_MULTISAMPLE_SAMPLE_COUNT","features":[400]},{"name":"D3D10_MAX_POSITION_VALUE","features":[400]},{"name":"D3D10_MAX_TEXTURE_DIMENSION_2_TO_EXP","features":[400]},{"name":"D3D10_MESSAGE","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_CLEANUP","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_COMPILATION","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_EXECUTION","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_INITIALIZATION","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_MISCELLANEOUS","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_SHADER","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_STATE_CREATION","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_STATE_GETTING","features":[400]},{"name":"D3D10_MESSAGE_CATEGORY_STATE_SETTING","features":[400]},{"name":"D3D10_MESSAGE_ID","features":[400]},{"name":"D3D10_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY","features":[400]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER","features":[400]},{"name":"D3D10_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[400]},{"name":"D3D10_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED","features":[400]},{"name":"D3D10_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED","features":[400]},{"name":"D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH","features":[400]},{"name":"D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_MULTITHREADING","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER1","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER10","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER11","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER12","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER13","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER14","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER15","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER2","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER3","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER4","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER5","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER6","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER7","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER8","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER9","features":[400]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_THIS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_NULLDESC","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_D3D10L9_MESSAGES_END","features":[400]},{"name":"D3D10_MESSAGE_ID_D3D10L9_MESSAGES_START","features":[400]},{"name":"D3D10_MESSAGE_ID_D3D10_MESSAGES_END","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD","features":[400]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY","features":[400]},{"name":"D3D10_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3","features":[400]},{"name":"D3D10_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE","features":[400]},{"name":"D3D10_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_GETPRIVATEDATA_MOREDATA","features":[400]},{"name":"D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX","features":[400]},{"name":"D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_BLENDSTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_BUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_COUNTER","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_DEVICE","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_GEOMETRYSHADER","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_INPUTLAYOUT","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_OBJECT_SUMMARY","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_PIXELSHADER","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_PREDICATE","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_QUERY","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_RASTERIZERSTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_RENDERTARGETVIEW","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_SAMPLER","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_SWAPCHAIN","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_TEXTURE1D","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_TEXTURE2D","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_TEXTURE3D","features":[400]},{"name":"D3D10_MESSAGE_ID_LIVE_VERTEXSHADER","features":[400]},{"name":"D3D10_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW","features":[400]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS","features":[400]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT","features":[400]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS","features":[400]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION","features":[400]},{"name":"D3D10_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION","features":[400]},{"name":"D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[400]},{"name":"D3D10_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_BEGIN_DUPLICATE","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE","features":[400]},{"name":"D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_HARDWARE_EXCEPTION","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_INFO","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_KMDRIVER_EXCEPTION","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_OUT_OF_MEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_THREADING_MODE","features":[400]},{"name":"D3D10_MESSAGE_ID_REF_UMDRIVER_EXCEPTION","features":[400]},{"name":"D3D10_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO","features":[400]},{"name":"D3D10_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE","features":[400]},{"name":"D3D10_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS","features":[400]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA","features":[400]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN","features":[400]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY","features":[400]},{"name":"D3D10_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY","features":[400]},{"name":"D3D10_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA","features":[400]},{"name":"D3D10_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_STRING_FROM_APPLICATION","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED","features":[400]},{"name":"D3D10_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_UNKNOWN","features":[400]},{"name":"D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX","features":[400]},{"name":"D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE","features":[400]},{"name":"D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT","features":[400]},{"name":"D3D10_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED","features":[400]},{"name":"D3D10_MESSAGE_SEVERITY","features":[400]},{"name":"D3D10_MESSAGE_SEVERITY_CORRUPTION","features":[400]},{"name":"D3D10_MESSAGE_SEVERITY_ERROR","features":[400]},{"name":"D3D10_MESSAGE_SEVERITY_INFO","features":[400]},{"name":"D3D10_MESSAGE_SEVERITY_MESSAGE","features":[400]},{"name":"D3D10_MESSAGE_SEVERITY_WARNING","features":[400]},{"name":"D3D10_MIN_BORDER_COLOR_COMPONENT","features":[400]},{"name":"D3D10_MIN_DEPTH","features":[400]},{"name":"D3D10_MIN_FILTER_SHIFT","features":[400]},{"name":"D3D10_MIN_MAXANISOTROPY","features":[400]},{"name":"D3D10_MIP_FILTER_SHIFT","features":[400]},{"name":"D3D10_MIP_LOD_BIAS_MAX","features":[400]},{"name":"D3D10_MIP_LOD_BIAS_MIN","features":[400]},{"name":"D3D10_MIP_LOD_FRACTIONAL_BIT_COUNT","features":[400]},{"name":"D3D10_MIP_LOD_RANGE_BIT_COUNT","features":[400]},{"name":"D3D10_MULTISAMPLE_ANTIALIAS_LINE_WIDTH","features":[400]},{"name":"D3D10_MUTE_CATEGORY","features":[400]},{"name":"D3D10_MUTE_DEBUG_OUTPUT","features":[400]},{"name":"D3D10_MUTE_ID_DECIMAL","features":[400]},{"name":"D3D10_MUTE_ID_STRING","features":[400]},{"name":"D3D10_MUTE_SEVERITY","features":[400]},{"name":"D3D10_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT","features":[400]},{"name":"D3D10_PASS_DESC","features":[400]},{"name":"D3D10_PASS_SHADER_DESC","features":[400]},{"name":"D3D10_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[400]},{"name":"D3D10_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[400]},{"name":"D3D10_PS_FRONTFACING_DEFAULT_VALUE","features":[400]},{"name":"D3D10_PS_FRONTFACING_FALSE_VALUE","features":[400]},{"name":"D3D10_PS_FRONTFACING_TRUE_VALUE","features":[400]},{"name":"D3D10_PS_INPUT_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_PS_INPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_PS_INPUT_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_PS_INPUT_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[400]},{"name":"D3D10_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_PS_OUTPUT_DEPTH_REGISTER_COUNT","features":[400]},{"name":"D3D10_PS_OUTPUT_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_PS_OUTPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[400]},{"name":"D3D10_QUERY","features":[400]},{"name":"D3D10_QUERY_DATA_PIPELINE_STATISTICS","features":[400]},{"name":"D3D10_QUERY_DATA_SO_STATISTICS","features":[400]},{"name":"D3D10_QUERY_DATA_TIMESTAMP_DISJOINT","features":[303,400]},{"name":"D3D10_QUERY_DESC","features":[400]},{"name":"D3D10_QUERY_EVENT","features":[400]},{"name":"D3D10_QUERY_MISC_FLAG","features":[400]},{"name":"D3D10_QUERY_MISC_PREDICATEHINT","features":[400]},{"name":"D3D10_QUERY_OCCLUSION","features":[400]},{"name":"D3D10_QUERY_OCCLUSION_PREDICATE","features":[400]},{"name":"D3D10_QUERY_PIPELINE_STATISTICS","features":[400]},{"name":"D3D10_QUERY_SO_OVERFLOW_PREDICATE","features":[400]},{"name":"D3D10_QUERY_SO_STATISTICS","features":[400]},{"name":"D3D10_QUERY_TIMESTAMP","features":[400]},{"name":"D3D10_QUERY_TIMESTAMP_DISJOINT","features":[400]},{"name":"D3D10_RAISE_FLAG","features":[400]},{"name":"D3D10_RAISE_FLAG_DRIVER_INTERNAL_ERROR","features":[400]},{"name":"D3D10_RASTERIZER_DESC","features":[303,400]},{"name":"D3D10_REGKEY_PATH","features":[400]},{"name":"D3D10_RENDER_TARGET_BLEND_DESC1","features":[303,400]},{"name":"D3D10_RENDER_TARGET_VIEW_DESC","features":[400,391]},{"name":"D3D10_REQ_BLEND_OBJECT_COUNT_PER_CONTEXT","features":[400]},{"name":"D3D10_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP","features":[400]},{"name":"D3D10_REQ_CONSTANT_BUFFER_ELEMENT_COUNT","features":[400]},{"name":"D3D10_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_CONTEXT","features":[400]},{"name":"D3D10_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[400]},{"name":"D3D10_REQ_DRAW_VERTEX_COUNT_2_TO_EXP","features":[400]},{"name":"D3D10_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION","features":[400]},{"name":"D3D10_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT","features":[400]},{"name":"D3D10_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT","features":[400]},{"name":"D3D10_REQ_MAXANISOTROPY","features":[400]},{"name":"D3D10_REQ_MIP_LEVELS","features":[400]},{"name":"D3D10_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES","features":[400]},{"name":"D3D10_REQ_RASTERIZER_OBJECT_COUNT_PER_CONTEXT","features":[400]},{"name":"D3D10_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH","features":[400]},{"name":"D3D10_REQ_RESOURCE_SIZE_IN_MEGABYTES","features":[400]},{"name":"D3D10_REQ_RESOURCE_VIEW_COUNT_PER_CONTEXT_2_TO_EXP","features":[400]},{"name":"D3D10_REQ_SAMPLER_OBJECT_COUNT_PER_CONTEXT","features":[400]},{"name":"D3D10_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION","features":[400]},{"name":"D3D10_REQ_TEXTURE1D_U_DIMENSION","features":[400]},{"name":"D3D10_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION","features":[400]},{"name":"D3D10_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[400]},{"name":"D3D10_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[400]},{"name":"D3D10_REQ_TEXTURECUBE_DIMENSION","features":[400]},{"name":"D3D10_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL","features":[400]},{"name":"D3D10_RESOURCE_DIMENSION","features":[400]},{"name":"D3D10_RESOURCE_DIMENSION_BUFFER","features":[400]},{"name":"D3D10_RESOURCE_DIMENSION_TEXTURE1D","features":[400]},{"name":"D3D10_RESOURCE_DIMENSION_TEXTURE2D","features":[400]},{"name":"D3D10_RESOURCE_DIMENSION_TEXTURE3D","features":[400]},{"name":"D3D10_RESOURCE_DIMENSION_UNKNOWN","features":[400]},{"name":"D3D10_RESOURCE_MISC_FLAG","features":[400]},{"name":"D3D10_RESOURCE_MISC_GDI_COMPATIBLE","features":[400]},{"name":"D3D10_RESOURCE_MISC_GENERATE_MIPS","features":[400]},{"name":"D3D10_RESOURCE_MISC_SHARED","features":[400]},{"name":"D3D10_RESOURCE_MISC_SHARED_KEYEDMUTEX","features":[400]},{"name":"D3D10_RESOURCE_MISC_TEXTURECUBE","features":[400]},{"name":"D3D10_RTV_DIMENSION","features":[400]},{"name":"D3D10_RTV_DIMENSION_BUFFER","features":[400]},{"name":"D3D10_RTV_DIMENSION_TEXTURE1D","features":[400]},{"name":"D3D10_RTV_DIMENSION_TEXTURE1DARRAY","features":[400]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2D","features":[400]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2DARRAY","features":[400]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2DMS","features":[400]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2DMSARRAY","features":[400]},{"name":"D3D10_RTV_DIMENSION_TEXTURE3D","features":[400]},{"name":"D3D10_RTV_DIMENSION_UNKNOWN","features":[400]},{"name":"D3D10_SAMPLER_DESC","features":[400]},{"name":"D3D10_SDK_LAYERS_VERSION","features":[400]},{"name":"D3D10_SDK_VERSION","features":[400]},{"name":"D3D10_SHADER_AVOID_FLOW_CONTROL","features":[400]},{"name":"D3D10_SHADER_BUFFER_DESC","features":[396,400]},{"name":"D3D10_SHADER_DEBUG","features":[400]},{"name":"D3D10_SHADER_DEBUG_FILE_INFO","features":[400]},{"name":"D3D10_SHADER_DEBUG_INFO","features":[400]},{"name":"D3D10_SHADER_DEBUG_INPUT_INFO","features":[400]},{"name":"D3D10_SHADER_DEBUG_INST_INFO","features":[303,400]},{"name":"D3D10_SHADER_DEBUG_NAME_FOR_BINARY","features":[400]},{"name":"D3D10_SHADER_DEBUG_NAME_FOR_SOURCE","features":[400]},{"name":"D3D10_SHADER_DEBUG_OUTPUTREG_INFO","features":[303,400]},{"name":"D3D10_SHADER_DEBUG_OUTPUTVAR","features":[303,400]},{"name":"D3D10_SHADER_DEBUG_REGTYPE","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_CBUFFER","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_IMMEDIATECBUFFER","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_INPUT","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_LITERAL","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_OUTPUT","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_SAMPLER","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_TBUFFER","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_TEMP","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_TEMPARRAY","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_TEXTURE","features":[400]},{"name":"D3D10_SHADER_DEBUG_REG_UNUSED","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPETYPE","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPEVAR_INFO","features":[396,400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_ANNOTATION","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_BLOCK","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_FORLOOP","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_FUNC_PARAMS","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_GLOBAL","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_INFO","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_NAMESPACE","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_STATEBLOCK","features":[400]},{"name":"D3D10_SHADER_DEBUG_SCOPE_STRUCT","features":[400]},{"name":"D3D10_SHADER_DEBUG_TOKEN_INFO","features":[400]},{"name":"D3D10_SHADER_DEBUG_VARTYPE","features":[400]},{"name":"D3D10_SHADER_DEBUG_VAR_FUNCTION","features":[400]},{"name":"D3D10_SHADER_DEBUG_VAR_INFO","features":[396,400]},{"name":"D3D10_SHADER_DEBUG_VAR_VARIABLE","features":[400]},{"name":"D3D10_SHADER_DESC","features":[396,400]},{"name":"D3D10_SHADER_ENABLE_BACKWARDS_COMPATIBILITY","features":[400]},{"name":"D3D10_SHADER_ENABLE_STRICTNESS","features":[400]},{"name":"D3D10_SHADER_FLAGS2_FORCE_ROOT_SIGNATURE_1_0","features":[400]},{"name":"D3D10_SHADER_FLAGS2_FORCE_ROOT_SIGNATURE_1_1","features":[400]},{"name":"D3D10_SHADER_FLAGS2_FORCE_ROOT_SIGNATURE_LATEST","features":[400]},{"name":"D3D10_SHADER_FORCE_PS_SOFTWARE_NO_OPT","features":[400]},{"name":"D3D10_SHADER_FORCE_VS_SOFTWARE_NO_OPT","features":[400]},{"name":"D3D10_SHADER_IEEE_STRICTNESS","features":[400]},{"name":"D3D10_SHADER_INPUT_BIND_DESC","features":[396,400]},{"name":"D3D10_SHADER_MAJOR_VERSION","features":[400]},{"name":"D3D10_SHADER_MINOR_VERSION","features":[400]},{"name":"D3D10_SHADER_NO_PRESHADER","features":[400]},{"name":"D3D10_SHADER_OPTIMIZATION_LEVEL0","features":[400]},{"name":"D3D10_SHADER_OPTIMIZATION_LEVEL1","features":[400]},{"name":"D3D10_SHADER_OPTIMIZATION_LEVEL3","features":[400]},{"name":"D3D10_SHADER_PACK_MATRIX_COLUMN_MAJOR","features":[400]},{"name":"D3D10_SHADER_PACK_MATRIX_ROW_MAJOR","features":[400]},{"name":"D3D10_SHADER_PARTIAL_PRECISION","features":[400]},{"name":"D3D10_SHADER_PREFER_FLOW_CONTROL","features":[400]},{"name":"D3D10_SHADER_RESOURCES_MAY_ALIAS","features":[400]},{"name":"D3D10_SHADER_RESOURCE_VIEW_DESC","features":[396,400,391]},{"name":"D3D10_SHADER_RESOURCE_VIEW_DESC1","features":[396,400,391]},{"name":"D3D10_SHADER_SKIP_OPTIMIZATION","features":[400]},{"name":"D3D10_SHADER_SKIP_VALIDATION","features":[400]},{"name":"D3D10_SHADER_TYPE_DESC","features":[396,400]},{"name":"D3D10_SHADER_VARIABLE_DESC","features":[400]},{"name":"D3D10_SHADER_WARNINGS_ARE_ERRORS","features":[400]},{"name":"D3D10_SHIFT_INSTRUCTION_PAD_VALUE","features":[400]},{"name":"D3D10_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT","features":[400]},{"name":"D3D10_SIGNATURE_PARAMETER_DESC","features":[396,400]},{"name":"D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[400]},{"name":"D3D10_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[400]},{"name":"D3D10_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[400]},{"name":"D3D10_SO_BUFFER_SLOT_COUNT","features":[400]},{"name":"D3D10_SO_DDI_REGISTER_INDEX_DENOTING_GAP","features":[400]},{"name":"D3D10_SO_DECLARATION_ENTRY","features":[400]},{"name":"D3D10_SO_MULTIPLE_BUFFER_ELEMENTS_PER_BUFFER","features":[400]},{"name":"D3D10_SO_SINGLE_BUFFER_COMPONENT_LIMIT","features":[400]},{"name":"D3D10_SRGB_GAMMA","features":[400]},{"name":"D3D10_SRGB_TO_FLOAT_DENOMINATOR_1","features":[400]},{"name":"D3D10_SRGB_TO_FLOAT_DENOMINATOR_2","features":[400]},{"name":"D3D10_SRGB_TO_FLOAT_EXPONENT","features":[400]},{"name":"D3D10_SRGB_TO_FLOAT_OFFSET","features":[400]},{"name":"D3D10_SRGB_TO_FLOAT_THRESHOLD","features":[400]},{"name":"D3D10_SRGB_TO_FLOAT_TOLERANCE_IN_ULP","features":[400]},{"name":"D3D10_STANDARD_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_STANDARD_COMPONENT_BIT_COUNT_DOUBLED","features":[400]},{"name":"D3D10_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE","features":[400]},{"name":"D3D10_STANDARD_MULTISAMPLE_PATTERN","features":[400]},{"name":"D3D10_STANDARD_MULTISAMPLE_QUALITY_LEVELS","features":[400]},{"name":"D3D10_STANDARD_PIXEL_COMPONENT_COUNT","features":[400]},{"name":"D3D10_STANDARD_PIXEL_ELEMENT_COUNT","features":[400]},{"name":"D3D10_STANDARD_VECTOR_SIZE","features":[400]},{"name":"D3D10_STANDARD_VERTEX_ELEMENT_COUNT","features":[400]},{"name":"D3D10_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT","features":[400]},{"name":"D3D10_STATE_BLOCK_MASK","features":[400]},{"name":"D3D10_STENCIL_OP","features":[400]},{"name":"D3D10_STENCIL_OP_DECR","features":[400]},{"name":"D3D10_STENCIL_OP_DECR_SAT","features":[400]},{"name":"D3D10_STENCIL_OP_INCR","features":[400]},{"name":"D3D10_STENCIL_OP_INCR_SAT","features":[400]},{"name":"D3D10_STENCIL_OP_INVERT","features":[400]},{"name":"D3D10_STENCIL_OP_KEEP","features":[400]},{"name":"D3D10_STENCIL_OP_REPLACE","features":[400]},{"name":"D3D10_STENCIL_OP_ZERO","features":[400]},{"name":"D3D10_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[400]},{"name":"D3D10_SUBRESOURCE_DATA","features":[400]},{"name":"D3D10_SUBTEXEL_FRACTIONAL_BIT_COUNT","features":[400]},{"name":"D3D10_TECHNIQUE_DESC","features":[400]},{"name":"D3D10_TEX1D_ARRAY_DSV","features":[400]},{"name":"D3D10_TEX1D_ARRAY_RTV","features":[400]},{"name":"D3D10_TEX1D_ARRAY_SRV","features":[400]},{"name":"D3D10_TEX1D_DSV","features":[400]},{"name":"D3D10_TEX1D_RTV","features":[400]},{"name":"D3D10_TEX1D_SRV","features":[400]},{"name":"D3D10_TEX2DMS_ARRAY_DSV","features":[400]},{"name":"D3D10_TEX2DMS_ARRAY_RTV","features":[400]},{"name":"D3D10_TEX2DMS_ARRAY_SRV","features":[400]},{"name":"D3D10_TEX2DMS_DSV","features":[400]},{"name":"D3D10_TEX2DMS_RTV","features":[400]},{"name":"D3D10_TEX2DMS_SRV","features":[400]},{"name":"D3D10_TEX2D_ARRAY_DSV","features":[400]},{"name":"D3D10_TEX2D_ARRAY_RTV","features":[400]},{"name":"D3D10_TEX2D_ARRAY_SRV","features":[400]},{"name":"D3D10_TEX2D_DSV","features":[400]},{"name":"D3D10_TEX2D_RTV","features":[400]},{"name":"D3D10_TEX2D_SRV","features":[400]},{"name":"D3D10_TEX3D_RTV","features":[400]},{"name":"D3D10_TEX3D_SRV","features":[400]},{"name":"D3D10_TEXCUBE_ARRAY_SRV1","features":[400]},{"name":"D3D10_TEXCUBE_SRV","features":[400]},{"name":"D3D10_TEXEL_ADDRESS_RANGE_BIT_COUNT","features":[400]},{"name":"D3D10_TEXTURE1D_DESC","features":[400,391]},{"name":"D3D10_TEXTURE2D_DESC","features":[400,391]},{"name":"D3D10_TEXTURE3D_DESC","features":[400,391]},{"name":"D3D10_TEXTURECUBE_FACE","features":[400]},{"name":"D3D10_TEXTURECUBE_FACE_NEGATIVE_X","features":[400]},{"name":"D3D10_TEXTURECUBE_FACE_NEGATIVE_Y","features":[400]},{"name":"D3D10_TEXTURECUBE_FACE_NEGATIVE_Z","features":[400]},{"name":"D3D10_TEXTURECUBE_FACE_POSITIVE_X","features":[400]},{"name":"D3D10_TEXTURECUBE_FACE_POSITIVE_Y","features":[400]},{"name":"D3D10_TEXTURECUBE_FACE_POSITIVE_Z","features":[400]},{"name":"D3D10_TEXTURE_ADDRESS_BORDER","features":[400]},{"name":"D3D10_TEXTURE_ADDRESS_CLAMP","features":[400]},{"name":"D3D10_TEXTURE_ADDRESS_MIRROR","features":[400]},{"name":"D3D10_TEXTURE_ADDRESS_MIRROR_ONCE","features":[400]},{"name":"D3D10_TEXTURE_ADDRESS_MODE","features":[400]},{"name":"D3D10_TEXTURE_ADDRESS_WRAP","features":[400]},{"name":"D3D10_TEXT_1BIT_BIT","features":[400]},{"name":"D3D10_UNBOUND_MEMORY_ACCESS_RESULT","features":[400]},{"name":"D3D10_UNMUTE_SEVERITY_INFO","features":[400]},{"name":"D3D10_USAGE","features":[400]},{"name":"D3D10_USAGE_DEFAULT","features":[400]},{"name":"D3D10_USAGE_DYNAMIC","features":[400]},{"name":"D3D10_USAGE_IMMUTABLE","features":[400]},{"name":"D3D10_USAGE_STAGING","features":[400]},{"name":"D3D10_VIEWPORT","features":[400]},{"name":"D3D10_VIEWPORT_AND_SCISSORRECT_MAX_INDEX","features":[400]},{"name":"D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE","features":[400]},{"name":"D3D10_VIEWPORT_BOUNDS_MAX","features":[400]},{"name":"D3D10_VIEWPORT_BOUNDS_MIN","features":[400]},{"name":"D3D10_VS_INPUT_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_VS_INPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_VS_INPUT_REGISTER_READS_PER_INST","features":[400]},{"name":"D3D10_VS_INPUT_REGISTER_READ_PORTS","features":[400]},{"name":"D3D10_VS_OUTPUT_REGISTER_COMPONENTS","features":[400]},{"name":"D3D10_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[400]},{"name":"D3D10_VS_OUTPUT_REGISTER_COUNT","features":[400]},{"name":"D3D10_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT","features":[400]},{"name":"D3D10_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[400]},{"name":"D3D10_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP","features":[400]},{"name":"D3D11_SHADER_DEBUG_REG_INTERFACE_POINTERS","features":[400]},{"name":"D3D11_SHADER_DEBUG_REG_UAV","features":[400]},{"name":"D3D_MAJOR_VERSION","features":[400]},{"name":"D3D_MINOR_VERSION","features":[400]},{"name":"D3D_SPEC_DATE_DAY","features":[400]},{"name":"D3D_SPEC_DATE_MONTH","features":[400]},{"name":"D3D_SPEC_DATE_YEAR","features":[400]},{"name":"D3D_SPEC_VERSION","features":[400]},{"name":"DXGI_DEBUG_D3D10","features":[400]},{"name":"GUID_DeviceType","features":[400]},{"name":"ID3D10Asynchronous","features":[400]},{"name":"ID3D10BlendState","features":[400]},{"name":"ID3D10BlendState1","features":[400]},{"name":"ID3D10Buffer","features":[400]},{"name":"ID3D10Counter","features":[400]},{"name":"ID3D10Debug","features":[400]},{"name":"ID3D10DepthStencilState","features":[400]},{"name":"ID3D10DepthStencilView","features":[400]},{"name":"ID3D10Device","features":[400]},{"name":"ID3D10Device1","features":[400]},{"name":"ID3D10DeviceChild","features":[400]},{"name":"ID3D10Effect","features":[400]},{"name":"ID3D10EffectBlendVariable","features":[400]},{"name":"ID3D10EffectConstantBuffer","features":[400]},{"name":"ID3D10EffectDepthStencilVariable","features":[400]},{"name":"ID3D10EffectDepthStencilViewVariable","features":[400]},{"name":"ID3D10EffectMatrixVariable","features":[400]},{"name":"ID3D10EffectPass","features":[400]},{"name":"ID3D10EffectPool","features":[400]},{"name":"ID3D10EffectRasterizerVariable","features":[400]},{"name":"ID3D10EffectRenderTargetViewVariable","features":[400]},{"name":"ID3D10EffectSamplerVariable","features":[400]},{"name":"ID3D10EffectScalarVariable","features":[400]},{"name":"ID3D10EffectShaderResourceVariable","features":[400]},{"name":"ID3D10EffectShaderVariable","features":[400]},{"name":"ID3D10EffectStringVariable","features":[400]},{"name":"ID3D10EffectTechnique","features":[400]},{"name":"ID3D10EffectType","features":[400]},{"name":"ID3D10EffectVariable","features":[400]},{"name":"ID3D10EffectVectorVariable","features":[400]},{"name":"ID3D10GeometryShader","features":[400]},{"name":"ID3D10InfoQueue","features":[400]},{"name":"ID3D10InputLayout","features":[400]},{"name":"ID3D10Multithread","features":[400]},{"name":"ID3D10PixelShader","features":[400]},{"name":"ID3D10Predicate","features":[400]},{"name":"ID3D10Query","features":[400]},{"name":"ID3D10RasterizerState","features":[400]},{"name":"ID3D10RenderTargetView","features":[400]},{"name":"ID3D10Resource","features":[400]},{"name":"ID3D10SamplerState","features":[400]},{"name":"ID3D10ShaderReflection","features":[400]},{"name":"ID3D10ShaderReflection1","features":[400]},{"name":"ID3D10ShaderReflectionConstantBuffer","features":[400]},{"name":"ID3D10ShaderReflectionType","features":[400]},{"name":"ID3D10ShaderReflectionVariable","features":[400]},{"name":"ID3D10ShaderResourceView","features":[400]},{"name":"ID3D10ShaderResourceView1","features":[400]},{"name":"ID3D10StateBlock","features":[400]},{"name":"ID3D10SwitchToRef","features":[400]},{"name":"ID3D10Texture1D","features":[400]},{"name":"ID3D10Texture2D","features":[400]},{"name":"ID3D10Texture3D","features":[400]},{"name":"ID3D10VertexShader","features":[400]},{"name":"ID3D10View","features":[400]},{"name":"PFN_D3D10_CREATE_DEVICE1","features":[303,400,395]},{"name":"PFN_D3D10_CREATE_DEVICE_AND_SWAP_CHAIN1","features":[303,400,391]},{"name":"_FACD3D10","features":[400]}],"401":[{"name":"D3D11CreateDevice","features":[303,396,399,395]},{"name":"D3D11CreateDeviceAndSwapChain","features":[303,396,399,391]},{"name":"D3D11_16BIT_INDEX_STRIP_CUT_VALUE","features":[399]},{"name":"D3D11_1_CREATE_DEVICE_CONTEXT_STATE_FLAG","features":[399]},{"name":"D3D11_1_CREATE_DEVICE_CONTEXT_STATE_SINGLETHREADED","features":[399]},{"name":"D3D11_1_UAV_SLOT_COUNT","features":[399]},{"name":"D3D11_2_TILED_RESOURCE_TILE_SIZE_IN_BYTES","features":[399]},{"name":"D3D11_32BIT_INDEX_STRIP_CUT_VALUE","features":[399]},{"name":"D3D11_4_VIDEO_DECODER_HISTOGRAM_OFFSET_ALIGNMENT","features":[399]},{"name":"D3D11_4_VIDEO_DECODER_MAX_HISTOGRAM_COMPONENTS","features":[399]},{"name":"D3D11_8BIT_INDEX_STRIP_CUT_VALUE","features":[399]},{"name":"D3D11_AES_CTR_IV","features":[399]},{"name":"D3D11_ANISOTROPIC_FILTERING_BIT","features":[399]},{"name":"D3D11_APPEND_ALIGNED_ELEMENT","features":[399]},{"name":"D3D11_APPNAME_STRING","features":[399]},{"name":"D3D11_APPSIZE_STRING","features":[399]},{"name":"D3D11_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT","features":[399]},{"name":"D3D11_ASYNC_GETDATA_DONOTFLUSH","features":[399]},{"name":"D3D11_ASYNC_GETDATA_FLAG","features":[399]},{"name":"D3D11_AUTHENTICATED_CHANNEL_D3D11","features":[399]},{"name":"D3D11_AUTHENTICATED_CHANNEL_DRIVER_HARDWARE","features":[399]},{"name":"D3D11_AUTHENTICATED_CHANNEL_DRIVER_SOFTWARE","features":[399]},{"name":"D3D11_AUTHENTICATED_CHANNEL_TYPE","features":[399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_ACCESSIBLE_ENCRYPTION_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION","features":[399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_ENCRYPTION_WHEN_ACCESSIBLE","features":[399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE","features":[399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_PROTECTION","features":[399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_PROTECTION_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE","features":[399]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_PROCESS_IDENTIFIER_TYPE","features":[399]},{"name":"D3D11_AUTHENTICATED_PROTECTION_FLAGS","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ATTRIBUTES","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_COUNT_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_CURRENT_ACCESSIBILITY_ENCRYPTION_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_CURRENT_ENCRYPTION_WHEN_ACCESSIBLE","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID_COUNT","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_PROTECTION","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_PROTECTION_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_INPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_OUTPUT","features":[303,399]},{"name":"D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT","features":[399]},{"name":"D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT_OUTPUT","features":[303,399]},{"name":"D3D11_BIND_CONSTANT_BUFFER","features":[399]},{"name":"D3D11_BIND_DECODER","features":[399]},{"name":"D3D11_BIND_DEPTH_STENCIL","features":[399]},{"name":"D3D11_BIND_FLAG","features":[399]},{"name":"D3D11_BIND_INDEX_BUFFER","features":[399]},{"name":"D3D11_BIND_RENDER_TARGET","features":[399]},{"name":"D3D11_BIND_SHADER_RESOURCE","features":[399]},{"name":"D3D11_BIND_STREAM_OUTPUT","features":[399]},{"name":"D3D11_BIND_UNORDERED_ACCESS","features":[399]},{"name":"D3D11_BIND_VERTEX_BUFFER","features":[399]},{"name":"D3D11_BIND_VIDEO_ENCODER","features":[399]},{"name":"D3D11_BLEND","features":[399]},{"name":"D3D11_BLEND_BLEND_FACTOR","features":[399]},{"name":"D3D11_BLEND_DESC","features":[303,399]},{"name":"D3D11_BLEND_DESC1","features":[303,399]},{"name":"D3D11_BLEND_DEST_ALPHA","features":[399]},{"name":"D3D11_BLEND_DEST_COLOR","features":[399]},{"name":"D3D11_BLEND_INV_BLEND_FACTOR","features":[399]},{"name":"D3D11_BLEND_INV_DEST_ALPHA","features":[399]},{"name":"D3D11_BLEND_INV_DEST_COLOR","features":[399]},{"name":"D3D11_BLEND_INV_SRC1_ALPHA","features":[399]},{"name":"D3D11_BLEND_INV_SRC1_COLOR","features":[399]},{"name":"D3D11_BLEND_INV_SRC_ALPHA","features":[399]},{"name":"D3D11_BLEND_INV_SRC_COLOR","features":[399]},{"name":"D3D11_BLEND_ONE","features":[399]},{"name":"D3D11_BLEND_OP","features":[399]},{"name":"D3D11_BLEND_OP_ADD","features":[399]},{"name":"D3D11_BLEND_OP_MAX","features":[399]},{"name":"D3D11_BLEND_OP_MIN","features":[399]},{"name":"D3D11_BLEND_OP_REV_SUBTRACT","features":[399]},{"name":"D3D11_BLEND_OP_SUBTRACT","features":[399]},{"name":"D3D11_BLEND_SRC1_ALPHA","features":[399]},{"name":"D3D11_BLEND_SRC1_COLOR","features":[399]},{"name":"D3D11_BLEND_SRC_ALPHA","features":[399]},{"name":"D3D11_BLEND_SRC_ALPHA_SAT","features":[399]},{"name":"D3D11_BLEND_SRC_COLOR","features":[399]},{"name":"D3D11_BLEND_ZERO","features":[399]},{"name":"D3D11_BOX","features":[399]},{"name":"D3D11_BREAKON_CATEGORY","features":[399]},{"name":"D3D11_BREAKON_ID_DECIMAL","features":[399]},{"name":"D3D11_BREAKON_ID_STRING","features":[399]},{"name":"D3D11_BREAKON_SEVERITY","features":[399]},{"name":"D3D11_BUFFEREX_SRV","features":[399]},{"name":"D3D11_BUFFEREX_SRV_FLAG","features":[399]},{"name":"D3D11_BUFFEREX_SRV_FLAG_RAW","features":[399]},{"name":"D3D11_BUFFER_DESC","features":[399]},{"name":"D3D11_BUFFER_RTV","features":[399]},{"name":"D3D11_BUFFER_SRV","features":[399]},{"name":"D3D11_BUFFER_UAV","features":[399]},{"name":"D3D11_BUFFER_UAV_FLAG","features":[399]},{"name":"D3D11_BUFFER_UAV_FLAG_APPEND","features":[399]},{"name":"D3D11_BUFFER_UAV_FLAG_COUNTER","features":[399]},{"name":"D3D11_BUFFER_UAV_FLAG_RAW","features":[399]},{"name":"D3D11_BUS_IMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[399]},{"name":"D3D11_BUS_IMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[399]},{"name":"D3D11_BUS_IMPL_MODIFIER_INSIDE_OF_CHIPSET","features":[399]},{"name":"D3D11_BUS_IMPL_MODIFIER_NON_STANDARD","features":[399]},{"name":"D3D11_BUS_IMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[399]},{"name":"D3D11_BUS_IMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[399]},{"name":"D3D11_BUS_TYPE","features":[399]},{"name":"D3D11_BUS_TYPE_AGP","features":[399]},{"name":"D3D11_BUS_TYPE_OTHER","features":[399]},{"name":"D3D11_BUS_TYPE_PCI","features":[399]},{"name":"D3D11_BUS_TYPE_PCIEXPRESS","features":[399]},{"name":"D3D11_BUS_TYPE_PCIX","features":[399]},{"name":"D3D11_CENTER_MULTISAMPLE_PATTERN","features":[399]},{"name":"D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_FLAG","features":[399]},{"name":"D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_TILED_RESOURCE","features":[399]},{"name":"D3D11_CLASS_INSTANCE_DESC","features":[303,399]},{"name":"D3D11_CLEAR_DEPTH","features":[399]},{"name":"D3D11_CLEAR_FLAG","features":[399]},{"name":"D3D11_CLEAR_STENCIL","features":[399]},{"name":"D3D11_CLIP_OR_CULL_DISTANCE_COUNT","features":[399]},{"name":"D3D11_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT","features":[399]},{"name":"D3D11_COLOR_WRITE_ENABLE","features":[399]},{"name":"D3D11_COLOR_WRITE_ENABLE_ALL","features":[399]},{"name":"D3D11_COLOR_WRITE_ENABLE_ALPHA","features":[399]},{"name":"D3D11_COLOR_WRITE_ENABLE_BLUE","features":[399]},{"name":"D3D11_COLOR_WRITE_ENABLE_GREEN","features":[399]},{"name":"D3D11_COLOR_WRITE_ENABLE_RED","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_PARTIAL_UPDATE_EXTENTS_BYTE_ALIGNMENT","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT","features":[399]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_SUBROUTINE_NESTING_LIMIT","features":[399]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_COUNT","features":[399]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX","features":[399]},{"name":"D3D11_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN","features":[399]},{"name":"D3D11_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE","features":[399]},{"name":"D3D11_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE","features":[399]},{"name":"D3D11_COMPARISON_ALWAYS","features":[399]},{"name":"D3D11_COMPARISON_EQUAL","features":[399]},{"name":"D3D11_COMPARISON_FILTERING_BIT","features":[399]},{"name":"D3D11_COMPARISON_FUNC","features":[399]},{"name":"D3D11_COMPARISON_GREATER","features":[399]},{"name":"D3D11_COMPARISON_GREATER_EQUAL","features":[399]},{"name":"D3D11_COMPARISON_LESS","features":[399]},{"name":"D3D11_COMPARISON_LESS_EQUAL","features":[399]},{"name":"D3D11_COMPARISON_NEVER","features":[399]},{"name":"D3D11_COMPARISON_NOT_EQUAL","features":[399]},{"name":"D3D11_COMPUTE_SHADER","features":[399]},{"name":"D3D11_COMPUTE_SHADER_TRACE_DESC","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_MODE","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_MODE_OFF","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_MODE_ON","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_NOT_SUPPORTED","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER_1","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER_2","features":[399]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER_3","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_CONTENT_KEY","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_DECRYPTION_BLT","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_ENCRYPTED_READ_BACK","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_ENCRYPTED_READ_BACK_KEY","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_ENCRYPT_SLICEDATA_ONLY","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_FRESHEN_SESSION_KEY","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_DRM_COMMUNICATION","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_DRM_COMMUNICATION_MULTI_THREADED","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_PROTECTED_MEMORY_PAGEABLE","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_PROTECT_UNCOMPRESSED","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_TEARDOWN","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_PARTIAL_DECRYPTION","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_PROTECTION_ALWAYS_ON","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_SEQUENTIAL_CTR_IV","features":[399]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_SOFTWARE","features":[399]},{"name":"D3D11_CONTEXT_TYPE","features":[399]},{"name":"D3D11_CONTEXT_TYPE_3D","features":[399]},{"name":"D3D11_CONTEXT_TYPE_ALL","features":[399]},{"name":"D3D11_CONTEXT_TYPE_COMPUTE","features":[399]},{"name":"D3D11_CONTEXT_TYPE_COPY","features":[399]},{"name":"D3D11_CONTEXT_TYPE_VIDEO","features":[399]},{"name":"D3D11_COPY_DISCARD","features":[399]},{"name":"D3D11_COPY_FLAGS","features":[399]},{"name":"D3D11_COPY_NO_OVERWRITE","features":[399]},{"name":"D3D11_COUNTER","features":[399]},{"name":"D3D11_COUNTER_DESC","features":[399]},{"name":"D3D11_COUNTER_DEVICE_DEPENDENT_0","features":[399]},{"name":"D3D11_COUNTER_INFO","features":[399]},{"name":"D3D11_COUNTER_TYPE","features":[399]},{"name":"D3D11_COUNTER_TYPE_FLOAT32","features":[399]},{"name":"D3D11_COUNTER_TYPE_UINT16","features":[399]},{"name":"D3D11_COUNTER_TYPE_UINT32","features":[399]},{"name":"D3D11_COUNTER_TYPE_UINT64","features":[399]},{"name":"D3D11_CPU_ACCESS_FLAG","features":[399]},{"name":"D3D11_CPU_ACCESS_READ","features":[399]},{"name":"D3D11_CPU_ACCESS_WRITE","features":[399]},{"name":"D3D11_CREATE_DEVICE_BGRA_SUPPORT","features":[399]},{"name":"D3D11_CREATE_DEVICE_DEBUG","features":[399]},{"name":"D3D11_CREATE_DEVICE_DEBUGGABLE","features":[399]},{"name":"D3D11_CREATE_DEVICE_DISABLE_GPU_TIMEOUT","features":[399]},{"name":"D3D11_CREATE_DEVICE_FLAG","features":[399]},{"name":"D3D11_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY","features":[399]},{"name":"D3D11_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS","features":[399]},{"name":"D3D11_CREATE_DEVICE_SINGLETHREADED","features":[399]},{"name":"D3D11_CREATE_DEVICE_SWITCH_TO_REF","features":[399]},{"name":"D3D11_CREATE_DEVICE_VIDEO_SUPPORT","features":[399]},{"name":"D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAGS","features":[399]},{"name":"D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAG_NONE","features":[399]},{"name":"D3D11_CRYPTO_SESSION_STATUS","features":[399]},{"name":"D3D11_CRYPTO_SESSION_STATUS_KEY_AND_CONTENT_LOST","features":[399]},{"name":"D3D11_CRYPTO_SESSION_STATUS_KEY_LOST","features":[399]},{"name":"D3D11_CRYPTO_SESSION_STATUS_OK","features":[399]},{"name":"D3D11_CRYPTO_TYPE_AES128_CTR","features":[399]},{"name":"D3D11_CS_4_X_BUCKET00_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET00_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET01_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET01_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET02_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET02_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET03_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET03_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET04_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET04_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET05_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET05_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET06_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET06_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET07_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET07_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET08_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET08_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET09_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET09_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET10_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET10_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET11_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET11_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET12_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET12_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET13_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET13_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET14_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET14_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_BUCKET15_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[399]},{"name":"D3D11_CS_4_X_BUCKET15_MAX_NUM_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_DISPATCH_MAX_THREAD_GROUPS_IN_Z_DIMENSION","features":[399]},{"name":"D3D11_CS_4_X_RAW_UAV_BYTE_ALIGNMENT","features":[399]},{"name":"D3D11_CS_4_X_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_4_X_THREAD_GROUP_MAX_X","features":[399]},{"name":"D3D11_CS_4_X_THREAD_GROUP_MAX_Y","features":[399]},{"name":"D3D11_CS_4_X_UAV_REGISTER_COUNT","features":[399]},{"name":"D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION","features":[399]},{"name":"D3D11_CS_TGSM_REGISTER_COUNT","features":[399]},{"name":"D3D11_CS_TGSM_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_CS_TGSM_RESOURCE_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_CS_TGSM_RESOURCE_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_CS_THREADGROUPID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_CS_THREADGROUPID_REGISTER_COUNT","features":[399]},{"name":"D3D11_CS_THREADIDINGROUPFLATTENED_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_CS_THREADIDINGROUPFLATTENED_REGISTER_COUNT","features":[399]},{"name":"D3D11_CS_THREADIDINGROUP_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_CS_THREADIDINGROUP_REGISTER_COUNT","features":[399]},{"name":"D3D11_CS_THREADID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_CS_THREADID_REGISTER_COUNT","features":[399]},{"name":"D3D11_CS_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[399]},{"name":"D3D11_CS_THREAD_GROUP_MAX_X","features":[399]},{"name":"D3D11_CS_THREAD_GROUP_MAX_Y","features":[399]},{"name":"D3D11_CS_THREAD_GROUP_MAX_Z","features":[399]},{"name":"D3D11_CS_THREAD_GROUP_MIN_X","features":[399]},{"name":"D3D11_CS_THREAD_GROUP_MIN_Y","features":[399]},{"name":"D3D11_CS_THREAD_GROUP_MIN_Z","features":[399]},{"name":"D3D11_CS_THREAD_LOCAL_TEMP_REGISTER_POOL","features":[399]},{"name":"D3D11_CULL_BACK","features":[399]},{"name":"D3D11_CULL_FRONT","features":[399]},{"name":"D3D11_CULL_MODE","features":[399]},{"name":"D3D11_CULL_NONE","features":[399]},{"name":"D3D11_DEBUG_FEATURE_ALWAYS_DISCARD_OFFERED_RESOURCE","features":[399]},{"name":"D3D11_DEBUG_FEATURE_AVOID_BEHAVIOR_CHANGING_DEBUG_AIDS","features":[399]},{"name":"D3D11_DEBUG_FEATURE_DISABLE_TILED_RESOURCE_MAPPING_TRACKING_AND_VALIDATION","features":[399]},{"name":"D3D11_DEBUG_FEATURE_FINISH_PER_RENDER_OP","features":[399]},{"name":"D3D11_DEBUG_FEATURE_FLUSH_PER_RENDER_OP","features":[399]},{"name":"D3D11_DEBUG_FEATURE_NEVER_DISCARD_OFFERED_RESOURCE","features":[399]},{"name":"D3D11_DEBUG_FEATURE_PRESENT_PER_RENDER_OP","features":[399]},{"name":"D3D11_DECODER_BITSTREAM_ENCRYPTION_TYPE_CBCS","features":[399]},{"name":"D3D11_DECODER_BITSTREAM_ENCRYPTION_TYPE_CENC","features":[399]},{"name":"D3D11_DECODER_ENCRYPTION_HW_CENC","features":[399]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_12BIT_PROFILE2","features":[399]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_12BIT_PROFILE2_420","features":[399]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_PROFILE0","features":[399]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_PROFILE1","features":[399]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_PROFILE2","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_IDCT_FGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_IDCT_NOFGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_MOCOMP_FGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_MOCOMP_NOFGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_FGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_MULTIVIEW_NOFGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_NOFGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_STEREO_NOFGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_STEREO_PROGRESSIVE_NOFGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_WITHFMOASO_NOFGT","features":[399]},{"name":"D3D11_DECODER_PROFILE_HEVC_VLD_MAIN","features":[399]},{"name":"D3D11_DECODER_PROFILE_HEVC_VLD_MAIN10","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG1_VLD","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG2_IDCT","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG2_MOCOMP","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG2_VLD","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG2and1_VLD","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG4PT2_VLD_ADVSIMPLE_GMC","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG4PT2_VLD_ADVSIMPLE_NOGMC","features":[399]},{"name":"D3D11_DECODER_PROFILE_MPEG4PT2_VLD_SIMPLE","features":[399]},{"name":"D3D11_DECODER_PROFILE_VC1_D2010","features":[399]},{"name":"D3D11_DECODER_PROFILE_VC1_IDCT","features":[399]},{"name":"D3D11_DECODER_PROFILE_VC1_MOCOMP","features":[399]},{"name":"D3D11_DECODER_PROFILE_VC1_POSTPROC","features":[399]},{"name":"D3D11_DECODER_PROFILE_VC1_VLD","features":[399]},{"name":"D3D11_DECODER_PROFILE_VP8_VLD","features":[399]},{"name":"D3D11_DECODER_PROFILE_VP9_VLD_10BIT_PROFILE2","features":[399]},{"name":"D3D11_DECODER_PROFILE_VP9_VLD_PROFILE0","features":[399]},{"name":"D3D11_DECODER_PROFILE_WMV8_MOCOMP","features":[399]},{"name":"D3D11_DECODER_PROFILE_WMV8_POSTPROC","features":[399]},{"name":"D3D11_DECODER_PROFILE_WMV9_IDCT","features":[399]},{"name":"D3D11_DECODER_PROFILE_WMV9_MOCOMP","features":[399]},{"name":"D3D11_DECODER_PROFILE_WMV9_POSTPROC","features":[399]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_ALPHA","features":[399]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_BLUE","features":[399]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_GREEN","features":[399]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_RED","features":[399]},{"name":"D3D11_DEFAULT_BORDER_COLOR_COMPONENT","features":[399]},{"name":"D3D11_DEFAULT_DEPTH_BIAS","features":[399]},{"name":"D3D11_DEFAULT_DEPTH_BIAS_CLAMP","features":[399]},{"name":"D3D11_DEFAULT_MAX_ANISOTROPY","features":[399]},{"name":"D3D11_DEFAULT_MIP_LOD_BIAS","features":[399]},{"name":"D3D11_DEFAULT_RENDER_TARGET_ARRAY_INDEX","features":[399]},{"name":"D3D11_DEFAULT_SAMPLE_MASK","features":[399]},{"name":"D3D11_DEFAULT_SCISSOR_ENDX","features":[399]},{"name":"D3D11_DEFAULT_SCISSOR_ENDY","features":[399]},{"name":"D3D11_DEFAULT_SCISSOR_STARTX","features":[399]},{"name":"D3D11_DEFAULT_SCISSOR_STARTY","features":[399]},{"name":"D3D11_DEFAULT_SLOPE_SCALED_DEPTH_BIAS","features":[399]},{"name":"D3D11_DEFAULT_STENCIL_READ_MASK","features":[399]},{"name":"D3D11_DEFAULT_STENCIL_REFERENCE","features":[399]},{"name":"D3D11_DEFAULT_STENCIL_WRITE_MASK","features":[399]},{"name":"D3D11_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX","features":[399]},{"name":"D3D11_DEFAULT_VIEWPORT_HEIGHT","features":[399]},{"name":"D3D11_DEFAULT_VIEWPORT_MAX_DEPTH","features":[399]},{"name":"D3D11_DEFAULT_VIEWPORT_MIN_DEPTH","features":[399]},{"name":"D3D11_DEFAULT_VIEWPORT_TOPLEFTX","features":[399]},{"name":"D3D11_DEFAULT_VIEWPORT_TOPLEFTY","features":[399]},{"name":"D3D11_DEFAULT_VIEWPORT_WIDTH","features":[399]},{"name":"D3D11_DEPTH_STENCILOP_DESC","features":[399]},{"name":"D3D11_DEPTH_STENCIL_DESC","features":[303,399]},{"name":"D3D11_DEPTH_STENCIL_VIEW_DESC","features":[399,391]},{"name":"D3D11_DEPTH_WRITE_MASK","features":[399]},{"name":"D3D11_DEPTH_WRITE_MASK_ALL","features":[399]},{"name":"D3D11_DEPTH_WRITE_MASK_ZERO","features":[399]},{"name":"D3D11_DEVICE_CONTEXT_DEFERRED","features":[399]},{"name":"D3D11_DEVICE_CONTEXT_IMMEDIATE","features":[399]},{"name":"D3D11_DEVICE_CONTEXT_TYPE","features":[399]},{"name":"D3D11_DOMAIN_SHADER","features":[399]},{"name":"D3D11_DOMAIN_SHADER_TRACE_DESC","features":[399]},{"name":"D3D11_DRAW_INDEXED_INSTANCED_INDIRECT_ARGS","features":[399]},{"name":"D3D11_DRAW_INSTANCED_INDIRECT_ARGS","features":[399]},{"name":"D3D11_DSV_DIMENSION","features":[399]},{"name":"D3D11_DSV_DIMENSION_TEXTURE1D","features":[399]},{"name":"D3D11_DSV_DIMENSION_TEXTURE1DARRAY","features":[399]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2D","features":[399]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2DARRAY","features":[399]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2DMS","features":[399]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2DMSARRAY","features":[399]},{"name":"D3D11_DSV_DIMENSION_UNKNOWN","features":[399]},{"name":"D3D11_DSV_FLAG","features":[399]},{"name":"D3D11_DSV_READ_ONLY_DEPTH","features":[399]},{"name":"D3D11_DSV_READ_ONLY_STENCIL","features":[399]},{"name":"D3D11_DS_INPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[399]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[399]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_DS_OUTPUT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_DS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_DS_OUTPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_ENABLE_BREAK_ON_MESSAGE","features":[399]},{"name":"D3D11_ENCRYPTED_BLOCK_INFO","features":[399]},{"name":"D3D11_FEATURE","features":[399]},{"name":"D3D11_FEATURE_ARCHITECTURE_INFO","features":[399]},{"name":"D3D11_FEATURE_D3D10_X_HARDWARE_OPTIONS","features":[399]},{"name":"D3D11_FEATURE_D3D11_OPTIONS","features":[399]},{"name":"D3D11_FEATURE_D3D11_OPTIONS1","features":[399]},{"name":"D3D11_FEATURE_D3D11_OPTIONS2","features":[399]},{"name":"D3D11_FEATURE_D3D11_OPTIONS3","features":[399]},{"name":"D3D11_FEATURE_D3D11_OPTIONS4","features":[399]},{"name":"D3D11_FEATURE_D3D11_OPTIONS5","features":[399]},{"name":"D3D11_FEATURE_D3D9_OPTIONS","features":[399]},{"name":"D3D11_FEATURE_D3D9_OPTIONS1","features":[399]},{"name":"D3D11_FEATURE_D3D9_SHADOW_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_D3D9_SIMPLE_INSTANCING_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_DATA_ARCHITECTURE_INFO","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS1","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS2","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS3","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS4","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS5","features":[399]},{"name":"D3D11_FEATURE_DATA_D3D9_OPTIONS","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D9_OPTIONS1","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D9_SHADOW_SUPPORT","features":[303,399]},{"name":"D3D11_FEATURE_DATA_D3D9_SIMPLE_INSTANCING_SUPPORT","features":[303,399]},{"name":"D3D11_FEATURE_DATA_DISPLAYABLE","features":[303,399]},{"name":"D3D11_FEATURE_DATA_DOUBLES","features":[303,399]},{"name":"D3D11_FEATURE_DATA_FORMAT_SUPPORT","features":[399,391]},{"name":"D3D11_FEATURE_DATA_FORMAT_SUPPORT2","features":[399,391]},{"name":"D3D11_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_DATA_MARKER_SUPPORT","features":[303,399]},{"name":"D3D11_FEATURE_DATA_SHADER_CACHE","features":[399]},{"name":"D3D11_FEATURE_DATA_SHADER_MIN_PRECISION_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_DATA_THREADING","features":[303,399]},{"name":"D3D11_FEATURE_DATA_VIDEO_DECODER_HISTOGRAM","features":[399,391]},{"name":"D3D11_FEATURE_DISPLAYABLE","features":[399]},{"name":"D3D11_FEATURE_DOUBLES","features":[399]},{"name":"D3D11_FEATURE_FORMAT_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_FORMAT_SUPPORT2","features":[399]},{"name":"D3D11_FEATURE_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_MARKER_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_SHADER_CACHE","features":[399]},{"name":"D3D11_FEATURE_SHADER_MIN_PRECISION_SUPPORT","features":[399]},{"name":"D3D11_FEATURE_THREADING","features":[399]},{"name":"D3D11_FEATURE_VIDEO","features":[399]},{"name":"D3D11_FEATURE_VIDEO_DECODER_HISTOGRAM","features":[399]},{"name":"D3D11_FENCE_FLAG","features":[399]},{"name":"D3D11_FENCE_FLAG_NONE","features":[399]},{"name":"D3D11_FENCE_FLAG_NON_MONITORED","features":[399]},{"name":"D3D11_FENCE_FLAG_SHARED","features":[399]},{"name":"D3D11_FENCE_FLAG_SHARED_CROSS_ADAPTER","features":[399]},{"name":"D3D11_FILL_MODE","features":[399]},{"name":"D3D11_FILL_SOLID","features":[399]},{"name":"D3D11_FILL_WIREFRAME","features":[399]},{"name":"D3D11_FILTER","features":[399]},{"name":"D3D11_FILTER_ANISOTROPIC","features":[399]},{"name":"D3D11_FILTER_COMPARISON_ANISOTROPIC","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_ANISOTROPIC","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MAXIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MINIMUM_ANISOTROPIC","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MINIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MIN_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MIN_MAG_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[399]},{"name":"D3D11_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[399]},{"name":"D3D11_FILTER_REDUCTION_TYPE","features":[399]},{"name":"D3D11_FILTER_REDUCTION_TYPE_COMPARISON","features":[399]},{"name":"D3D11_FILTER_REDUCTION_TYPE_MASK","features":[399]},{"name":"D3D11_FILTER_REDUCTION_TYPE_MAXIMUM","features":[399]},{"name":"D3D11_FILTER_REDUCTION_TYPE_MINIMUM","features":[399]},{"name":"D3D11_FILTER_REDUCTION_TYPE_SHIFT","features":[399]},{"name":"D3D11_FILTER_REDUCTION_TYPE_STANDARD","features":[399]},{"name":"D3D11_FILTER_TYPE","features":[399]},{"name":"D3D11_FILTER_TYPE_LINEAR","features":[399]},{"name":"D3D11_FILTER_TYPE_MASK","features":[399]},{"name":"D3D11_FILTER_TYPE_POINT","features":[399]},{"name":"D3D11_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[399]},{"name":"D3D11_FLOAT32_MAX","features":[399]},{"name":"D3D11_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[399]},{"name":"D3D11_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR","features":[399]},{"name":"D3D11_FLOAT_TO_SRGB_EXPONENT_NUMERATOR","features":[399]},{"name":"D3D11_FLOAT_TO_SRGB_OFFSET","features":[399]},{"name":"D3D11_FLOAT_TO_SRGB_SCALE_1","features":[399]},{"name":"D3D11_FLOAT_TO_SRGB_SCALE_2","features":[399]},{"name":"D3D11_FLOAT_TO_SRGB_THRESHOLD","features":[399]},{"name":"D3D11_FORCE_DEBUGGABLE","features":[399]},{"name":"D3D11_FORCE_SHADER_SKIP_OPTIMIZATION","features":[399]},{"name":"D3D11_FORMAT_SUPPORT","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_DISPLAYABLE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_MULTIPLANE_OVERLAY","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_OUTPUT_MERGER_LOGIC_OP","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_SHAREABLE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_TILED","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_ADD","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_BITWISE_OPS","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_COMPARE_STORE_OR_COMPARE_EXCHANGE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_EXCHANGE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_SIGNED_MIN_OR_MAX","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_UNSIGNED_MIN_OR_MAX","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_TYPED_LOAD","features":[399]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_TYPED_STORE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_BACK_BUFFER_CAST","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_BLENDABLE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_BUFFER","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_CPU_LOCKABLE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_DECODER_OUTPUT","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_DEPTH_STENCIL","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_DISPLAY","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_IA_INDEX_BUFFER","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_IA_VERTEX_BUFFER","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_MIP","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_MIP_AUTOGEN","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_MULTISAMPLE_LOAD","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_RENDER_TARGET","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_GATHER","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_GATHER_COMPARISON","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_LOAD","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_SAMPLE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_SO_BUFFER","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURE1D","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURE2D","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURE3D","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURECUBE","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_TYPED_UNORDERED_ACCESS_VIEW","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_VIDEO_ENCODER","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_VIDEO_PROCESSOR_INPUT","features":[399]},{"name":"D3D11_FORMAT_SUPPORT_VIDEO_PROCESSOR_OUTPUT","features":[399]},{"name":"D3D11_FTOI_INSTRUCTION_MAX_INPUT","features":[399]},{"name":"D3D11_FTOI_INSTRUCTION_MIN_INPUT","features":[399]},{"name":"D3D11_FTOU_INSTRUCTION_MAX_INPUT","features":[399]},{"name":"D3D11_FTOU_INSTRUCTION_MIN_INPUT","features":[399]},{"name":"D3D11_FUNCTION_DESC","features":[303,396,399]},{"name":"D3D11_GEOMETRY_SHADER","features":[399]},{"name":"D3D11_GEOMETRY_SHADER_TRACE_DESC","features":[399]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_READS_PER_INST","features":[399]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_READ_PORTS","features":[399]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COUNT","features":[399]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_COUNT","features":[399]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_GS_INPUT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_GS_INPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_GS_INPUT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_GS_INPUT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_GS_INPUT_REGISTER_VERTICES","features":[399]},{"name":"D3D11_GS_MAX_INSTANCE_COUNT","features":[399]},{"name":"D3D11_GS_MAX_OUTPUT_VERTEX_COUNT_ACROSS_INSTANCES","features":[399]},{"name":"D3D11_GS_OUTPUT_ELEMENTS","features":[399]},{"name":"D3D11_GS_OUTPUT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_GS_OUTPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_CONTROL_POINT_PHASE_INPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_CONTROL_POINT_PHASE_OUTPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_HS_FORK_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[399]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_HS_JOIN_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[399]},{"name":"D3D11_HS_MAXTESSFACTOR_LOWER_BOUND","features":[399]},{"name":"D3D11_HS_MAXTESSFACTOR_UPPER_BOUND","features":[399]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[399]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[399]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_SCALAR_COMPONENTS","features":[399]},{"name":"D3D11_HULL_SHADER","features":[399]},{"name":"D3D11_HULL_SHADER_TRACE_DESC","features":[399]},{"name":"D3D11_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES","features":[399]},{"name":"D3D11_IA_DEFAULT_PRIMITIVE_TOPOLOGY","features":[399]},{"name":"D3D11_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES","features":[399]},{"name":"D3D11_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT","features":[399]},{"name":"D3D11_IA_INSTANCE_ID_BIT_COUNT","features":[399]},{"name":"D3D11_IA_INTEGER_ARITHMETIC_BIT_COUNT","features":[399]},{"name":"D3D11_IA_PATCH_MAX_CONTROL_POINT_COUNT","features":[399]},{"name":"D3D11_IA_PRIMITIVE_ID_BIT_COUNT","features":[399]},{"name":"D3D11_IA_VERTEX_ID_BIT_COUNT","features":[399]},{"name":"D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[399]},{"name":"D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[399]},{"name":"D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[399]},{"name":"D3D11_INFOQUEUE_STORAGE_FILTER_OVERRIDE","features":[399]},{"name":"D3D11_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[399]},{"name":"D3D11_INFO_QUEUE_FILTER","features":[399]},{"name":"D3D11_INFO_QUEUE_FILTER_DESC","features":[399]},{"name":"D3D11_INPUT_CLASSIFICATION","features":[399]},{"name":"D3D11_INPUT_ELEMENT_DESC","features":[399,391]},{"name":"D3D11_INPUT_PER_INSTANCE_DATA","features":[399]},{"name":"D3D11_INPUT_PER_VERTEX_DATA","features":[399]},{"name":"D3D11_INTEGER_DIVIDE_BY_ZERO_QUOTIENT","features":[399]},{"name":"D3D11_INTEGER_DIVIDE_BY_ZERO_REMAINDER","features":[399]},{"name":"D3D11_KEEP_RENDER_TARGETS_AND_DEPTH_STENCIL","features":[399]},{"name":"D3D11_KEEP_UNORDERED_ACCESS_VIEWS","features":[399]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION","features":[399]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION_DATA","features":[399]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION_INPUT_DATA","features":[399]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION_OUTPUT_DATA","features":[399]},{"name":"D3D11_KEY_EXCHANGE_RSAES_OAEP","features":[399]},{"name":"D3D11_LIBRARY_DESC","features":[399]},{"name":"D3D11_LINEAR_GAMMA","features":[399]},{"name":"D3D11_LOGIC_OP","features":[399]},{"name":"D3D11_LOGIC_OP_AND","features":[399]},{"name":"D3D11_LOGIC_OP_AND_INVERTED","features":[399]},{"name":"D3D11_LOGIC_OP_AND_REVERSE","features":[399]},{"name":"D3D11_LOGIC_OP_CLEAR","features":[399]},{"name":"D3D11_LOGIC_OP_COPY","features":[399]},{"name":"D3D11_LOGIC_OP_COPY_INVERTED","features":[399]},{"name":"D3D11_LOGIC_OP_EQUIV","features":[399]},{"name":"D3D11_LOGIC_OP_INVERT","features":[399]},{"name":"D3D11_LOGIC_OP_NAND","features":[399]},{"name":"D3D11_LOGIC_OP_NOOP","features":[399]},{"name":"D3D11_LOGIC_OP_NOR","features":[399]},{"name":"D3D11_LOGIC_OP_OR","features":[399]},{"name":"D3D11_LOGIC_OP_OR_INVERTED","features":[399]},{"name":"D3D11_LOGIC_OP_OR_REVERSE","features":[399]},{"name":"D3D11_LOGIC_OP_SET","features":[399]},{"name":"D3D11_LOGIC_OP_XOR","features":[399]},{"name":"D3D11_MAG_FILTER_SHIFT","features":[399]},{"name":"D3D11_MAJOR_VERSION","features":[399]},{"name":"D3D11_MAP","features":[399]},{"name":"D3D11_MAPPED_SUBRESOURCE","features":[399]},{"name":"D3D11_MAP_FLAG","features":[399]},{"name":"D3D11_MAP_FLAG_DO_NOT_WAIT","features":[399]},{"name":"D3D11_MAP_READ","features":[399]},{"name":"D3D11_MAP_READ_WRITE","features":[399]},{"name":"D3D11_MAP_WRITE","features":[399]},{"name":"D3D11_MAP_WRITE_DISCARD","features":[399]},{"name":"D3D11_MAP_WRITE_NO_OVERWRITE","features":[399]},{"name":"D3D11_MAX_BORDER_COLOR_COMPONENT","features":[399]},{"name":"D3D11_MAX_DEPTH","features":[399]},{"name":"D3D11_MAX_MAXANISOTROPY","features":[399]},{"name":"D3D11_MAX_MULTISAMPLE_SAMPLE_COUNT","features":[399]},{"name":"D3D11_MAX_POSITION_VALUE","features":[399]},{"name":"D3D11_MAX_TEXTURE_DIMENSION_2_TO_EXP","features":[399]},{"name":"D3D11_MESSAGE","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_APPLICATION_DEFINED","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_CLEANUP","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_COMPILATION","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_EXECUTION","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_INITIALIZATION","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_MISCELLANEOUS","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_SHADER","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_STATE_CREATION","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_STATE_GETTING","features":[399]},{"name":"D3D11_MESSAGE_CATEGORY_STATE_SETTING","features":[399]},{"name":"D3D11_MESSAGE_ID","features":[399]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDARRAY","features":[399]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDBIND","features":[399]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY","features":[399]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_CANNOT_ADD_TRACKED_WORKLOAD","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKCRYPTOKEYEXCHANGE_INVALIDINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKCRYPTOKEYEXCHANGE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKCRYPTOSESSIONSTATUS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKFEATURESUPPORT_FORMAT_DEPRECATED","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_INVALIDCOLORSPACE","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_ZEROWIDTHHEIGHT","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERFORMAT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERFORMAT_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEOPROCESSORFORMATCONVERSION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEOPROCESSORFORMAT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DEPTH_READONLY","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_STENCIL_READONLY","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWUINT_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_DENORMFLUSH","features":[399]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_INVALIDPROCESSIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_UNSUPPORTEDCONFIGURE","features":[399]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_WRONGCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_WRONGSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDDESTINATIONSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDOFFSET","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDSOURCESTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_LARGEOFFSET","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION1_INVALIDCOPYFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_EMPTYSOURCEBOX","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYTILEMAPPINGS_INVALID_PARAMETER","features":[399]},{"name":"D3D11_MESSAGE_ID_COPYTILES_INVALID_PARAMETER","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_MULTITHREADING","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER1","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER10","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER11","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER12","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER13","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER14","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER15","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER2","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER3","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER4","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER5","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER6","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER7","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER8","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER9","features":[399]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_THIS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDLOGICOPS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSTRUCTURESTRIDE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCALL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECRYPTOSESSION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATECRYPTOSESSION_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_CALL_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_COMMANDLISTFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_SINGLETHREADED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_FEATURELEVELS_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDFEATURELEVEL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDREFIID","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICE_INVALIDARGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICE_WARNING","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCALL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEFENCE_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTREAMS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTREAMS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCALL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_LEVEL9_INSTANCING_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_LEVEL9_STEPRATE_NOT_1","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_DECODENOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_ENCODENOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDCONTEXTTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNSUPPORTEDCONTEXTTTYPEFORQUERY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFORCEDSAMPLECOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_CONSERVATIVERASTERMODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_AMBIGUOUSVIDEOPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDARRAYWITHDECODER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDVIDEOPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESESOURCEVIEW_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_AMBIGUOUSVIDEOPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDARRAYWITHDECODER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDVIDEOPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_NULLDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_AMBIGUOUSVIDEOPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDARRAYWITHDECODER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDVIDEOPLANEINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_TOOMANYOBJECTS","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDARRAY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDARRAYSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDBIND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDDIMENSION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDMIP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_UNSUPPORTEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_UNSUPPORTEMIP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_DRIVER_INVALIDBUFFERSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_DRIVER_INVALIDBUFFERUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_ZEROWIDTHHEIGHT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDFRAMEFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDINPUTFRAMERATE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDOUTPUTFRAMERATE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDWIDTHHEIGHT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDARRAY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDARRAYSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDBIND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDDIMENSION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDFOURCC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMIP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMISC","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMSAA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_UNSUPPORTEDMIP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDARRAY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDBIND","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDDIMENSION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDMIP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDMSAA","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_UNSUPPORTEDARRAY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_UNSUPPORTEDMIP","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOR_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOR_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_AUTHENTICATEDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_BLENDSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_BUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_CLASSINSTANCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_CLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_COMMANDLIST","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_COMPUTESHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_CONTEXT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_COUNTER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_CRYPTOSESSION","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_DECODEROUTPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_DEVICECONTEXTSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_DOMAINSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_FENCE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_GEOMETRYSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_HULLSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_INPUTLAYOUT","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_PIXELSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_PREDICATE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_PROCESSORINPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_PROCESSOROUTPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_QUERY","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_RASTERIZERSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_RENDERTARGETVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_SAMPLER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_SHADERRESOURCEVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_SYNCHRONIZEDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TEXTURE1D","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TEXTURE2D","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TEXTURE3D","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKEDWORKLOAD","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_DEADLINE_TYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_ENGINE_TYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_MAX_INSTANCES","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_UNORDEREDACCESSVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_VERTEXSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_VIDEODECODER","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_VIDEOPROCESSOR","features":[399]},{"name":"D3D11_MESSAGE_ID_CREATE_VIDEOPROCESSORENUM","features":[399]},{"name":"D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_CSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_CSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_CSSETSHADER_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_CSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D10L9_MESSAGES_END","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D10L9_MESSAGES_START","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D10_MESSAGES_END","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_1_MESSAGES_END","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_1_MESSAGES_START","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_2_MESSAGES_END","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_2_MESSAGES_START","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_3_MESSAGES_END","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_3_MESSAGES_START","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_5_MESSAGES_END","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_5_MESSAGES_START","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_MESSAGES_END","features":[399]},{"name":"D3D11_MESSAGE_ID_D3D11_MESSAGES_START","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_MISC_FLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_OFFSET","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_SIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_USAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_COMPONENT","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_COMPONENT_COUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODERENDFRAME_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODEREXTENSION_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_DECODEREXTENSION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_MAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_MULTISAMPLED","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_NOT_RENDER_TARGET","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_OFFERED","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_WRONGDEVICE","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_FORMAT_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SIZE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_CONTENT_UNDEFINED","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_MAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_NOT_STAGING","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_OFFERED","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_WRONGDEVICE","features":[399]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEFERRED_CONTEXT_REMOVAL_PROCESS_AT_FAULT","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_AUTHENTICATEDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_BLENDSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_BUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_CLASSINSTANCE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_CLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_COMMANDLIST","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_COMPUTESHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_CONTEXT","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_COUNTER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_CRYPTOSESSION","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_DECODEROUTPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_DEVICECONTEXTSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_DOMAINSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_FENCE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_GEOMETRYSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_HULLSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_INPUTLAYOUT","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_PIXELSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_PREDICATE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_PROCESSORINPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_PROCESSOROUTPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_QUERY","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_RASTERIZERSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_RENDERTARGETVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_SAMPLER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_SHADERRESOURCEVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_SYNCHRONIZEDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_TEXTURE1D","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_TEXTURE2D","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_TEXTURE3D","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_TRACKEDWORKLOAD","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_UNORDEREDACCESSVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_VERTEXSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_VIDEODECODER","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_VIDEOPROCESSOR","features":[399]},{"name":"D3D11_MESSAGE_ID_DESTROY_VIDEOPROCESSORENUM","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_UNRECOGNIZED_FEATURE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_EMPTYRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDSOURCERECT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_NOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_UAVSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEEXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_SHADEREXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UAVSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_UAVSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_UAVSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_UAVSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATESHADER_CLASSLINKAGE_FULL","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_UAVSNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETUNORDEREDACCESSS_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSS_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDOFFSET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_TOOMANYVIEWS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISCARDVIEW_INVALIDVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_INVALID_ARG_BUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_BOUND_RESOURCE_MAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_ZERO","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_INVALID_ARG_BUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_DEPTHSTENCILVIEW_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_CONTROL_POINT_COUNT_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_SIGNATURE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_TESSELLATOR_DOMAIN_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_XOR_DS_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_SYSTEMVALUE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_FORCED_SAMPLE_COUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_LOGIC_OPS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_PIXEL_SHADER_WITHOUT_RTV_OR_DSV","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RASTERIZING_CONTROL_POINTS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RENDERTARGETVIEW_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RENDERTARGETVIEW_NOT_SET_DUE_TO_FLIP_PRESENT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLE_MASK_IGNORED_ON_FL9","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_UNORDEREDACCESSVIEW_RENDERTARGETVIEW_OVERLAP","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSGETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSGETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDCONTEXT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSGETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSGETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_LOCKEDOUT_INTERFACE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_INVALIDOFFSET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NO_OP","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NUMUAVS_INVALIDRANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_OVERLAPPING_OLD_SLOTS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_TOOMANYVIEWS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE1_ACCESS_DENIED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE1_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BY_NAME_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETHARDWAREPROTECTION_INVALIDCONTEXT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDCONTEXT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDMINLOD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INSTANCE_DATA_BINDINGS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACES_FEATURELEVEL","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACE_COUNT_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_DATA","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_INDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_TYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_UNBOUND_INSTANCE_DATA","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_BUFFER_TYPE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_RAW_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_STRUCTURE_STRIDE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_MINPRECISION","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_APPEND_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMICS_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_ADD_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_BITWISE_OPS_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_CMPSTORE_CMPEXCHANGE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_EXCHANGE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_SIGNED_MINMAX_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_UNSIGNED_MINMAX_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_BUFFER_TYPE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_COUNTER_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_DIMENSION_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_LD_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_STORE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET_DUE_TO_FLIP_PRESENT","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RAW_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RETURN_TYPE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_STRUCTURE_STRIDE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY","features":[399]},{"name":"D3D11_MESSAGE_ID_DIRTY_TILE_MAPPING_ACCESS","features":[399]},{"name":"D3D11_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3","features":[399]},{"name":"D3D11_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE","features":[399]},{"name":"D3D11_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_DSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_DSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_DSSETSHADER_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_DUPLICATE_TILE_MAPPINGS_IN_COVERED_AREA","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_MAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_NOT_STAGING","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_OFFERED","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_WRONGDEVICE","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_FORMAT_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SIZE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_CONTENT_UNDEFINED","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_MAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_MULTISAMPLED","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_OFFERED","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_WRONGDEVICE","features":[399]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_END_TRACKED_WORKLOAD_INVALID_ARG","features":[399]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_ACCESSDENIED_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_FINISHDISPLAYLIST_INVALID_CALL_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_FINISHDISPLAYLIST_ONIMMEDIATECONTEXT","features":[399]},{"name":"D3D11_MESSAGE_ID_FINISHDISPLAYLIST_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_FINISHSESSIONKEYREFRESH_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_FLUSH1_INVALIDCONTEXTTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATESIZE_INVALIDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATESIZE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_INVALIDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_WRONGSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCONTENTPROTECTIONCAPS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATESIZE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATE_WRONGSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONHANDLE_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONHANDLE_WRONGSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONPRIVATEDATASIZE_INVALID_KEY_EXCHANGE_TYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONPRIVATEDATASIZE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOTYPE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDATAFORNEWHARDWAREKEY_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDC_INACCESSIBLE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_LOCKED","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDECODERCREATIONPARAMS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDECODERDRIVERHANDLE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETDECODERPROFILE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETENCRYPTIONBLTKEY_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETENCRYPTIONBLTKEY_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETPRIVATEDATA_MOREDATA","features":[399]},{"name":"D3D11_MESSAGE_ID_GETRESOURCETILING_NONTILED_RESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCAPS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCAPS_ZEROWIDTHHEIGHT","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIGCOUNT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIGCOUNT_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_INVALIDINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILECOUNT_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_INVALIDINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCAPS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCONTENTDESC_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCUSTOMRATE_INVALIDINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCUSTOMRATE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORFILTERRANGE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORFILTERRANGE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORRATECONVERSIONCAPS_INVALIDINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORRATECONVERSIONCAPS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_HSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_HSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_HSSETSHADER_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_1DESTUNSUPPORTEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_3DESTUNSUPPORTEDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_BACKBUFFERNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_CHROMASIZEMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXESINTERSECT","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXNOT2D","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXNOTSUB","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTINATIONNOT2D","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DIMENSIONSTOOLARGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_EMPTYDESTBOX","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_FORMATUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_FRACTIONALDOWNSCALETOLARGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_GUARDRECTSUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDCOMPONENTS","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDCOPYFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDMIPLEVEL","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDNUMDESTINATIONS","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSCANDATAOFFSET","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSOURCESIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_LUMACHROMASIZEMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_NONPOW2SCALEUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_NOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_OUTPUTDIMENSIONSTOOLARGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_SCALEUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_SUBBOXUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_TILEDRESOURCESUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDDSTTEXTUREUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDSRCBUFFERMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDSRCBUFFERUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPRTEDCOPYFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_XSUBSAMPLEMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_XSUBSAMPLEODD","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_YSUBSAMPLEMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_YSUBSAMPLEODD","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_BACKBUFFERNOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_DIMENSIONSTOOLARGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_FORMATUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_GUARDRECTSUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDCOMPONENTS","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDMIPLEVEL","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDSCANDATAOFFSET","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_NOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_SOURCENOT2D","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_TILEDRESOURCESUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDDSTBUFFERMISCFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDDSTBUFFERUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDSRCTEXTUREUSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_XSUBSAMPLEMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_YSUBSAMPLEMISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_AUTHENTICATEDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_BLENDSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_BLENDSTATE_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_BUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_BUFFER_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_CLASSINSTANCE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_CLASSLINKAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_COMMANDLIST","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_COMPUTESHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_CONTEXT","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_COUNTER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_CRYPTOSESSION","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DECODEROUTPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DEVICE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DEVICECONTEXTSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DEVICE_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_DOMAINSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_FENCE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_HULLSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_PIXELSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_PIXELSHADER_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_PREDICATE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_PREDICATE_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_PROCESSORINPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_PROCESSOROUTPUTVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_QUERY","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_QUERY_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_SAMPLER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_SAMPLER_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_SWAPCHAIN","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_SYNCHRONIZEDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE1D","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE1D_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE2D","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE2D_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE3D","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE3D_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_TRACKEDWORKLOAD","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_UNORDEREDACCESSVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_VERTEXSHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_VERTEXSHADER_WIN7","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_VIDEODECODER","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_VIDEOPROCESSOR","features":[399]},{"name":"D3D11_MESSAGE_ID_LIVE_VIDEOPROCESSORENUM","features":[399]},{"name":"D3D11_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOADS","features":[399]},{"name":"D3D11_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOAD_PAIRS","features":[399]},{"name":"D3D11_MESSAGE_ID_NEED_TO_CALL_TILEDRESOURCEBARRIER","features":[399]},{"name":"D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_INVALIDCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRPYTOSESSIONKEYEXCHANGE_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRPYTOSESSIONKEYEXCHANGE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRYPTOSESSIONKEYEXCHANGEMT_INVALIDKEYEXCHANGETYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRYPTOSESSIONKEYEXCHANGEMT_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_NO_TRACKED_WORKLOAD_SLOT_AVAILABLE","features":[399]},{"name":"D3D11_MESSAGE_ID_NULL_TILE_MAPPING_ACCESS_ERROR","features":[399]},{"name":"D3D11_MESSAGE_ID_NULL_TILE_MAPPING_ACCESS_WARNING","features":[399]},{"name":"D3D11_MESSAGE_ID_OFFERRELEASE_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_OFFERRESOURCES_INACCESSIBLE","features":[399]},{"name":"D3D11_MESSAGE_ID_OFFERRESOURCES_INVALIDPRIORITY","features":[399]},{"name":"D3D11_MESSAGE_ID_OFFERRESOURCES_INVALIDRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETDEPTHSTENCIL_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS","features":[399]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_OUT_OF_ORDER_TRACKED_WORKLOAD_PAIR","features":[399]},{"name":"D3D11_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION","features":[399]},{"name":"D3D11_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_PSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_INVALIDPROCESSINDEX","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_UNSUPPORTEDQUERY","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_WRONGCHANNEL","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_WRONGSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_BEGIN_DUPLICATE","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_INVALIDCOLORSPACE","features":[399]},{"name":"D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_ZEROWIDTHHEIGHT","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_HARDWARE_EXCEPTION","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_INFO","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_KMDRIVER_EXCEPTION","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_OUT_OF_MEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_THREADING_MODE","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_UMDRIVER_EXCEPTION","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_WARNING","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_ATOMIC_INCONSISTENT","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_RAW_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_READING_UNINITIALIZED_RESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_WAR_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_WAW_HAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_NOTLOCKED","features":[399]},{"name":"D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_RESIZETILEPOOL_INVALID_PARAMETER","features":[399]},{"name":"D3D11_MESSAGE_ID_RESIZETILEPOOL_SHRINK_WITH_MAPPINGS_STILL_DEFINED_PAST_END","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_ALREADYMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_DEVICEREMOVED_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDMAPTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_OUTOFMEMORY_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_WITHOUT_INITIAL_DISCARD","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_UNMAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO","features":[399]},{"name":"D3D11_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE","features":[399]},{"name":"D3D11_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS","features":[399]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA","features":[399]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN","features":[399]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY","features":[399]},{"name":"D3D11_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY","features":[399]},{"name":"D3D11_MESSAGE_ID_SHADER_ABORT","features":[399]},{"name":"D3D11_MESSAGE_ID_SHADER_ERROR","features":[399]},{"name":"D3D11_MESSAGE_ID_SHADER_MESSAGE","features":[399]},{"name":"D3D11_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA","features":[399]},{"name":"D3D11_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_STARTSESSIONKEYREFRESH_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_STARTSESSIONKEYREFRESH_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_STRING_FROM_APPLICATION","features":[399]},{"name":"D3D11_MESSAGE_ID_SUBMITDECODERBUFFERS_INVALIDTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_SUBMITDECODERBUFFERS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_SWAPDEVICECONTEXTSTATE_NOTSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED","features":[399]},{"name":"D3D11_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_TILEDRESOURCEBARRIER_INVALID_PARAMETER","features":[399]},{"name":"D3D11_MESSAGE_ID_TILED_RESOURCE_TIER_1_BUFFER_TEXTURE_MISMATCH","features":[399]},{"name":"D3D11_MESSAGE_ID_TILE_MAPPINGS_IN_COVERED_AREA_DUPLICATED_OUTSIDE","features":[399]},{"name":"D3D11_MESSAGE_ID_TILE_MAPPINGS_SHARED_BETWEEN_INCOMPATIBLE_RESOURCES","features":[399]},{"name":"D3D11_MESSAGE_ID_TILE_MAPPINGS_SHARED_BETWEEN_INPUT_AND_OUTPUT","features":[399]},{"name":"D3D11_MESSAGE_ID_TRACKED_WORKLOAD_DISJOINT_FAILURE","features":[399]},{"name":"D3D11_MESSAGE_ID_TRACKED_WORKLOAD_ENGINE_TYPE_NOT_FOUND","features":[399]},{"name":"D3D11_MESSAGE_ID_TRACKED_WORKLOAD_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_UNKNOWN","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE1_INVALIDCOPYFLAGS","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_EMPTYDESTBOX","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_PREFERUPDATESUBRESOURCE1","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATETILEMAPPINGS_INVALID_PARAMETER","features":[399]},{"name":"D3D11_MESSAGE_ID_UPDATETILES_INVALID_PARAMETER","features":[399]},{"name":"D3D11_MESSAGE_ID_USE_OF_ZERO_REFCOUNT_OBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERENABLEDOWNSAMPLING_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERENABLEDOWNSAMPLING_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERUPDATEDOWNSAMPLING_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERUPDATEDOWNSAMPLING_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INPUTHAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDARRAY","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDARRAYSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDDESTRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDFUTUREFRAMES","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDINPUTRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDOUTPUT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDPASTFRAMES","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDRIGHTRESOURCE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDSOURCERECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDSTREAMCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_NOSTEREOSTREAMS","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_OUTPUTHAZARD","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_RIGHTEXPECTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_RIGHTNOTEXPECTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_STEREONOTENABLED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_TARGETRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDDESTRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDSOURCERECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDSTREAMCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_TARGETRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTALPHAFILLMODE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTBACKGROUNDCOLOR_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCOLORSPACE1_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCOLORSPACE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCONSTRICTION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTEXTENSION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTHDRMETADATA_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTHDRMETADATA_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTSHADERUSAGE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTSTEREOMODE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTTARGETRECT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMALPHA_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMALPHA_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMAUTOPROCESSINGMODE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMAUTOPROCESSINGMODE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE1_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE1_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMDESTRECT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMDESTRECT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMEXTENSION_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMEXTENSION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFILTER_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFILTER_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFRAMEFORMAT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFRAMEFORMAT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMLUMAKEY_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMLUMAKEY_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMMIRROR_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMMIRROR_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMOUTPUTRATE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMOUTPUTRATE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPALETTE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPALETTE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPIXELASPECTRATIO_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPIXELASPECTRATIO_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMROTATION_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMROTATION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSOURCERECT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSOURCERECT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSTEREOFORMAT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSTEREOFORMAT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_INVALIDFILLMODE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTBACKGROUNDCOLOR_INVALIDALPHA","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTBACKGROUNDCOLOR_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCOLORSPACE1_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCOLORSPACE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTEXTENSION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTHDRMETADATA_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTHDRMETADATA_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSHADERUSAGE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSTEREOMODE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSTEREOMODE_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTTARGETRECT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_INVALIDALPHA","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMAUTOPROCESSINGMODE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMAUTOPROCESSINGMODE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE1_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE1_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_INVALIDRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMEXTENSION_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMEXTENSION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDFILTER","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDLEVEL","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_INVALIDSIZE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_INVALIDRANGE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDFLAG","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDRATE","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDALPHA","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_INVALIDRATIO","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_INVALID","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_INVALIDRECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_FLIPUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_FORMATUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_INVALIDFORMAT","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_INVALIDSTREAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_MONOOFFSETUNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_NULLPARAM","features":[399]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_UNSUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT","features":[399]},{"name":"D3D11_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED","features":[399]},{"name":"D3D11_MESSAGE_SEVERITY","features":[399]},{"name":"D3D11_MESSAGE_SEVERITY_CORRUPTION","features":[399]},{"name":"D3D11_MESSAGE_SEVERITY_ERROR","features":[399]},{"name":"D3D11_MESSAGE_SEVERITY_INFO","features":[399]},{"name":"D3D11_MESSAGE_SEVERITY_MESSAGE","features":[399]},{"name":"D3D11_MESSAGE_SEVERITY_WARNING","features":[399]},{"name":"D3D11_MINOR_VERSION","features":[399]},{"name":"D3D11_MIN_BORDER_COLOR_COMPONENT","features":[399]},{"name":"D3D11_MIN_DEPTH","features":[399]},{"name":"D3D11_MIN_FILTER_SHIFT","features":[399]},{"name":"D3D11_MIN_MAXANISOTROPY","features":[399]},{"name":"D3D11_MIP_FILTER_SHIFT","features":[399]},{"name":"D3D11_MIP_LOD_BIAS_MAX","features":[399]},{"name":"D3D11_MIP_LOD_BIAS_MIN","features":[399]},{"name":"D3D11_MIP_LOD_FRACTIONAL_BIT_COUNT","features":[399]},{"name":"D3D11_MIP_LOD_RANGE_BIT_COUNT","features":[399]},{"name":"D3D11_MULTISAMPLE_ANTIALIAS_LINE_WIDTH","features":[399]},{"name":"D3D11_MUTE_CATEGORY","features":[399]},{"name":"D3D11_MUTE_DEBUG_OUTPUT","features":[399]},{"name":"D3D11_MUTE_ID_DECIMAL","features":[399]},{"name":"D3D11_MUTE_ID_STRING","features":[399]},{"name":"D3D11_MUTE_SEVERITY","features":[399]},{"name":"D3D11_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT","features":[399]},{"name":"D3D11_OMAC","features":[399]},{"name":"D3D11_PACKED_MIP_DESC","features":[399]},{"name":"D3D11_PACKED_TILE","features":[399]},{"name":"D3D11_PARAMETER_DESC","features":[396,399]},{"name":"D3D11_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[399]},{"name":"D3D11_PIXEL_SHADER","features":[399]},{"name":"D3D11_PIXEL_SHADER_TRACE_DESC","features":[399]},{"name":"D3D11_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[399]},{"name":"D3D11_PROCESSIDTYPE_DWM","features":[399]},{"name":"D3D11_PROCESSIDTYPE_HANDLE","features":[399]},{"name":"D3D11_PROCESSIDTYPE_UNKNOWN","features":[399]},{"name":"D3D11_PS_CS_UAV_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_PS_CS_UAV_REGISTER_COUNT","features":[399]},{"name":"D3D11_PS_CS_UAV_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_PS_CS_UAV_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_PS_FRONTFACING_DEFAULT_VALUE","features":[399]},{"name":"D3D11_PS_FRONTFACING_FALSE_VALUE","features":[399]},{"name":"D3D11_PS_FRONTFACING_TRUE_VALUE","features":[399]},{"name":"D3D11_PS_INPUT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_PS_INPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_PS_INPUT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_PS_INPUT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[399]},{"name":"D3D11_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_PS_OUTPUT_DEPTH_REGISTER_COUNT","features":[399]},{"name":"D3D11_PS_OUTPUT_MASK_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_PS_OUTPUT_MASK_REGISTER_COUNT","features":[399]},{"name":"D3D11_PS_OUTPUT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_PS_OUTPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[399]},{"name":"D3D11_QUERY","features":[399]},{"name":"D3D11_QUERY_DATA_PIPELINE_STATISTICS","features":[399]},{"name":"D3D11_QUERY_DATA_SO_STATISTICS","features":[399]},{"name":"D3D11_QUERY_DATA_TIMESTAMP_DISJOINT","features":[303,399]},{"name":"D3D11_QUERY_DESC","features":[399]},{"name":"D3D11_QUERY_DESC1","features":[399]},{"name":"D3D11_QUERY_EVENT","features":[399]},{"name":"D3D11_QUERY_MISC_FLAG","features":[399]},{"name":"D3D11_QUERY_MISC_PREDICATEHINT","features":[399]},{"name":"D3D11_QUERY_OCCLUSION","features":[399]},{"name":"D3D11_QUERY_OCCLUSION_PREDICATE","features":[399]},{"name":"D3D11_QUERY_PIPELINE_STATISTICS","features":[399]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE","features":[399]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM0","features":[399]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM1","features":[399]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM2","features":[399]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM3","features":[399]},{"name":"D3D11_QUERY_SO_STATISTICS","features":[399]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM0","features":[399]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM1","features":[399]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM2","features":[399]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM3","features":[399]},{"name":"D3D11_QUERY_TIMESTAMP","features":[399]},{"name":"D3D11_QUERY_TIMESTAMP_DISJOINT","features":[399]},{"name":"D3D11_RAISE_FLAG","features":[399]},{"name":"D3D11_RAISE_FLAG_DRIVER_INTERNAL_ERROR","features":[399]},{"name":"D3D11_RASTERIZER_DESC","features":[303,399]},{"name":"D3D11_RASTERIZER_DESC1","features":[303,399]},{"name":"D3D11_RASTERIZER_DESC2","features":[303,399]},{"name":"D3D11_RAW_UAV_SRV_BYTE_ALIGNMENT","features":[399]},{"name":"D3D11_REGKEY_PATH","features":[399]},{"name":"D3D11_RENDER_TARGET_BLEND_DESC","features":[303,399]},{"name":"D3D11_RENDER_TARGET_BLEND_DESC1","features":[303,399]},{"name":"D3D11_RENDER_TARGET_VIEW_DESC","features":[399,391]},{"name":"D3D11_RENDER_TARGET_VIEW_DESC1","features":[399,391]},{"name":"D3D11_REQ_BLEND_OBJECT_COUNT_PER_DEVICE","features":[399]},{"name":"D3D11_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP","features":[399]},{"name":"D3D11_REQ_CONSTANT_BUFFER_ELEMENT_COUNT","features":[399]},{"name":"D3D11_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_DEVICE","features":[399]},{"name":"D3D11_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[399]},{"name":"D3D11_REQ_DRAW_VERTEX_COUNT_2_TO_EXP","features":[399]},{"name":"D3D11_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION","features":[399]},{"name":"D3D11_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT","features":[399]},{"name":"D3D11_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT","features":[399]},{"name":"D3D11_REQ_MAXANISOTROPY","features":[399]},{"name":"D3D11_REQ_MIP_LEVELS","features":[399]},{"name":"D3D11_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES","features":[399]},{"name":"D3D11_REQ_RASTERIZER_OBJECT_COUNT_PER_DEVICE","features":[399]},{"name":"D3D11_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH","features":[399]},{"name":"D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_A_TERM","features":[399]},{"name":"D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_B_TERM","features":[399]},{"name":"D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_C_TERM","features":[399]},{"name":"D3D11_REQ_RESOURCE_VIEW_COUNT_PER_DEVICE_2_TO_EXP","features":[399]},{"name":"D3D11_REQ_SAMPLER_OBJECT_COUNT_PER_DEVICE","features":[399]},{"name":"D3D11_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION","features":[399]},{"name":"D3D11_REQ_TEXTURE1D_U_DIMENSION","features":[399]},{"name":"D3D11_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION","features":[399]},{"name":"D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[399]},{"name":"D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[399]},{"name":"D3D11_REQ_TEXTURECUBE_DIMENSION","features":[399]},{"name":"D3D11_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL","features":[399]},{"name":"D3D11_RESOURCE_DIMENSION","features":[399]},{"name":"D3D11_RESOURCE_DIMENSION_BUFFER","features":[399]},{"name":"D3D11_RESOURCE_DIMENSION_TEXTURE1D","features":[399]},{"name":"D3D11_RESOURCE_DIMENSION_TEXTURE2D","features":[399]},{"name":"D3D11_RESOURCE_DIMENSION_TEXTURE3D","features":[399]},{"name":"D3D11_RESOURCE_DIMENSION_UNKNOWN","features":[399]},{"name":"D3D11_RESOURCE_MISC_BUFFER_ALLOW_RAW_VIEWS","features":[399]},{"name":"D3D11_RESOURCE_MISC_BUFFER_STRUCTURED","features":[399]},{"name":"D3D11_RESOURCE_MISC_DRAWINDIRECT_ARGS","features":[399]},{"name":"D3D11_RESOURCE_MISC_FLAG","features":[399]},{"name":"D3D11_RESOURCE_MISC_GDI_COMPATIBLE","features":[399]},{"name":"D3D11_RESOURCE_MISC_GENERATE_MIPS","features":[399]},{"name":"D3D11_RESOURCE_MISC_GUARDED","features":[399]},{"name":"D3D11_RESOURCE_MISC_HW_PROTECTED","features":[399]},{"name":"D3D11_RESOURCE_MISC_RESOURCE_CLAMP","features":[399]},{"name":"D3D11_RESOURCE_MISC_RESTRICTED_CONTENT","features":[399]},{"name":"D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE","features":[399]},{"name":"D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE_DRIVER","features":[399]},{"name":"D3D11_RESOURCE_MISC_SHARED","features":[399]},{"name":"D3D11_RESOURCE_MISC_SHARED_DISPLAYABLE","features":[399]},{"name":"D3D11_RESOURCE_MISC_SHARED_EXCLUSIVE_WRITER","features":[399]},{"name":"D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX","features":[399]},{"name":"D3D11_RESOURCE_MISC_SHARED_NTHANDLE","features":[399]},{"name":"D3D11_RESOURCE_MISC_TEXTURECUBE","features":[399]},{"name":"D3D11_RESOURCE_MISC_TILED","features":[399]},{"name":"D3D11_RESOURCE_MISC_TILE_POOL","features":[399]},{"name":"D3D11_RLDO_DETAIL","features":[399]},{"name":"D3D11_RLDO_FLAGS","features":[399]},{"name":"D3D11_RLDO_IGNORE_INTERNAL","features":[399]},{"name":"D3D11_RLDO_SUMMARY","features":[399]},{"name":"D3D11_RTV_DIMENSION","features":[399]},{"name":"D3D11_RTV_DIMENSION_BUFFER","features":[399]},{"name":"D3D11_RTV_DIMENSION_TEXTURE1D","features":[399]},{"name":"D3D11_RTV_DIMENSION_TEXTURE1DARRAY","features":[399]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2D","features":[399]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2DARRAY","features":[399]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2DMS","features":[399]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY","features":[399]},{"name":"D3D11_RTV_DIMENSION_TEXTURE3D","features":[399]},{"name":"D3D11_RTV_DIMENSION_UNKNOWN","features":[399]},{"name":"D3D11_SAMPLER_DESC","features":[399]},{"name":"D3D11_SDK_LAYERS_VERSION","features":[399]},{"name":"D3D11_SDK_VERSION","features":[399]},{"name":"D3D11_SHADER_BUFFER_DESC","features":[396,399]},{"name":"D3D11_SHADER_CACHE_SUPPORT_AUTOMATIC_DISK_CACHE","features":[399]},{"name":"D3D11_SHADER_CACHE_SUPPORT_AUTOMATIC_INPROC_CACHE","features":[399]},{"name":"D3D11_SHADER_CACHE_SUPPORT_FLAGS","features":[399]},{"name":"D3D11_SHADER_CACHE_SUPPORT_NONE","features":[399]},{"name":"D3D11_SHADER_DESC","features":[396,399]},{"name":"D3D11_SHADER_INPUT_BIND_DESC","features":[396,399]},{"name":"D3D11_SHADER_MAJOR_VERSION","features":[399]},{"name":"D3D11_SHADER_MAX_INSTANCES","features":[399]},{"name":"D3D11_SHADER_MAX_INTERFACES","features":[399]},{"name":"D3D11_SHADER_MAX_INTERFACE_CALL_SITES","features":[399]},{"name":"D3D11_SHADER_MAX_TYPES","features":[399]},{"name":"D3D11_SHADER_MINOR_VERSION","features":[399]},{"name":"D3D11_SHADER_MIN_PRECISION_10_BIT","features":[399]},{"name":"D3D11_SHADER_MIN_PRECISION_16_BIT","features":[399]},{"name":"D3D11_SHADER_MIN_PRECISION_SUPPORT","features":[399]},{"name":"D3D11_SHADER_RESOURCE_VIEW_DESC","features":[396,399,391]},{"name":"D3D11_SHADER_RESOURCE_VIEW_DESC1","features":[396,399,391]},{"name":"D3D11_SHADER_TRACE_DESC","features":[399]},{"name":"D3D11_SHADER_TRACE_FLAG_RECORD_REGISTER_READS","features":[399]},{"name":"D3D11_SHADER_TRACE_FLAG_RECORD_REGISTER_WRITES","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTIONS","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALLOW_SAME","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALL_HAZARDS","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALL_HAZARDS_ALLOWING_SAME","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALL_OPTIONS","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_IGNORE","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_ATOMIC_CONSISTENCY","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_ATOMIC_CONSISTENCY_ACROSS_THREADGROUPS","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_RAW","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_RAW_ACROSS_THREADGROUPS","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_UNINITIALIZED","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAR","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAR_ACROSS_THREADGROUPS","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAW","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAW_ACROSS_THREADGROUPS","features":[399]},{"name":"D3D11_SHADER_TRACKING_OPTION_UAV_SPECIFIC_FLAGS","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL_DEVICEMEMORY","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL_SHARED_MEMORY","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_GROUPSHARED_MEMORY","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_GROUPSHARED_NON_UAV","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_NONE","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_NON_UAV_DEVICEMEMORY","features":[399]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_UAV_DEVICEMEMORY","features":[399]},{"name":"D3D11_SHADER_TYPE","features":[399]},{"name":"D3D11_SHADER_TYPE_DESC","features":[396,399]},{"name":"D3D11_SHADER_VARIABLE_DESC","features":[399]},{"name":"D3D11_SHADER_VERSION_TYPE","features":[399]},{"name":"D3D11_SHARED_RESOURCE_TIER","features":[399]},{"name":"D3D11_SHARED_RESOURCE_TIER_0","features":[399]},{"name":"D3D11_SHARED_RESOURCE_TIER_1","features":[399]},{"name":"D3D11_SHARED_RESOURCE_TIER_2","features":[399]},{"name":"D3D11_SHARED_RESOURCE_TIER_3","features":[399]},{"name":"D3D11_SHIFT_INSTRUCTION_PAD_VALUE","features":[399]},{"name":"D3D11_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT","features":[399]},{"name":"D3D11_SHVER_COMPUTE_SHADER","features":[399]},{"name":"D3D11_SHVER_DOMAIN_SHADER","features":[399]},{"name":"D3D11_SHVER_GEOMETRY_SHADER","features":[399]},{"name":"D3D11_SHVER_HULL_SHADER","features":[399]},{"name":"D3D11_SHVER_PIXEL_SHADER","features":[399]},{"name":"D3D11_SHVER_RESERVED0","features":[399]},{"name":"D3D11_SHVER_VERTEX_SHADER","features":[399]},{"name":"D3D11_SIGNATURE_PARAMETER_DESC","features":[396,399]},{"name":"D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[399]},{"name":"D3D11_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[399]},{"name":"D3D11_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[399]},{"name":"D3D11_SO_BUFFER_SLOT_COUNT","features":[399]},{"name":"D3D11_SO_DDI_REGISTER_INDEX_DENOTING_GAP","features":[399]},{"name":"D3D11_SO_DECLARATION_ENTRY","features":[399]},{"name":"D3D11_SO_NO_RASTERIZED_STREAM","features":[399]},{"name":"D3D11_SO_OUTPUT_COMPONENT_COUNT","features":[399]},{"name":"D3D11_SO_STREAM_COUNT","features":[399]},{"name":"D3D11_SPEC_DATE_DAY","features":[399]},{"name":"D3D11_SPEC_DATE_MONTH","features":[399]},{"name":"D3D11_SPEC_DATE_YEAR","features":[399]},{"name":"D3D11_SPEC_VERSION","features":[399]},{"name":"D3D11_SRGB_GAMMA","features":[399]},{"name":"D3D11_SRGB_TO_FLOAT_DENOMINATOR_1","features":[399]},{"name":"D3D11_SRGB_TO_FLOAT_DENOMINATOR_2","features":[399]},{"name":"D3D11_SRGB_TO_FLOAT_EXPONENT","features":[399]},{"name":"D3D11_SRGB_TO_FLOAT_OFFSET","features":[399]},{"name":"D3D11_SRGB_TO_FLOAT_THRESHOLD","features":[399]},{"name":"D3D11_SRGB_TO_FLOAT_TOLERANCE_IN_ULP","features":[399]},{"name":"D3D11_STANDARD_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_STANDARD_COMPONENT_BIT_COUNT_DOUBLED","features":[399]},{"name":"D3D11_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE","features":[399]},{"name":"D3D11_STANDARD_MULTISAMPLE_PATTERN","features":[399]},{"name":"D3D11_STANDARD_MULTISAMPLE_QUALITY_LEVELS","features":[399]},{"name":"D3D11_STANDARD_PIXEL_COMPONENT_COUNT","features":[399]},{"name":"D3D11_STANDARD_PIXEL_ELEMENT_COUNT","features":[399]},{"name":"D3D11_STANDARD_VECTOR_SIZE","features":[399]},{"name":"D3D11_STANDARD_VERTEX_ELEMENT_COUNT","features":[399]},{"name":"D3D11_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT","features":[399]},{"name":"D3D11_STENCIL_OP","features":[399]},{"name":"D3D11_STENCIL_OP_DECR","features":[399]},{"name":"D3D11_STENCIL_OP_DECR_SAT","features":[399]},{"name":"D3D11_STENCIL_OP_INCR","features":[399]},{"name":"D3D11_STENCIL_OP_INCR_SAT","features":[399]},{"name":"D3D11_STENCIL_OP_INVERT","features":[399]},{"name":"D3D11_STENCIL_OP_KEEP","features":[399]},{"name":"D3D11_STENCIL_OP_REPLACE","features":[399]},{"name":"D3D11_STENCIL_OP_ZERO","features":[399]},{"name":"D3D11_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[399]},{"name":"D3D11_SUBRESOURCE_DATA","features":[399]},{"name":"D3D11_SUBRESOURCE_TILING","features":[399]},{"name":"D3D11_SUBTEXEL_FRACTIONAL_BIT_COUNT","features":[399]},{"name":"D3D11_TESSELLATOR_MAX_EVEN_TESSELLATION_FACTOR","features":[399]},{"name":"D3D11_TESSELLATOR_MAX_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[399]},{"name":"D3D11_TESSELLATOR_MAX_ODD_TESSELLATION_FACTOR","features":[399]},{"name":"D3D11_TESSELLATOR_MAX_TESSELLATION_FACTOR","features":[399]},{"name":"D3D11_TESSELLATOR_MIN_EVEN_TESSELLATION_FACTOR","features":[399]},{"name":"D3D11_TESSELLATOR_MIN_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[399]},{"name":"D3D11_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR","features":[399]},{"name":"D3D11_TEX1D_ARRAY_DSV","features":[399]},{"name":"D3D11_TEX1D_ARRAY_RTV","features":[399]},{"name":"D3D11_TEX1D_ARRAY_SRV","features":[399]},{"name":"D3D11_TEX1D_ARRAY_UAV","features":[399]},{"name":"D3D11_TEX1D_DSV","features":[399]},{"name":"D3D11_TEX1D_RTV","features":[399]},{"name":"D3D11_TEX1D_SRV","features":[399]},{"name":"D3D11_TEX1D_UAV","features":[399]},{"name":"D3D11_TEX2DMS_ARRAY_DSV","features":[399]},{"name":"D3D11_TEX2DMS_ARRAY_RTV","features":[399]},{"name":"D3D11_TEX2DMS_ARRAY_SRV","features":[399]},{"name":"D3D11_TEX2DMS_DSV","features":[399]},{"name":"D3D11_TEX2DMS_RTV","features":[399]},{"name":"D3D11_TEX2DMS_SRV","features":[399]},{"name":"D3D11_TEX2D_ARRAY_DSV","features":[399]},{"name":"D3D11_TEX2D_ARRAY_RTV","features":[399]},{"name":"D3D11_TEX2D_ARRAY_RTV1","features":[399]},{"name":"D3D11_TEX2D_ARRAY_SRV","features":[399]},{"name":"D3D11_TEX2D_ARRAY_SRV1","features":[399]},{"name":"D3D11_TEX2D_ARRAY_UAV","features":[399]},{"name":"D3D11_TEX2D_ARRAY_UAV1","features":[399]},{"name":"D3D11_TEX2D_ARRAY_VPOV","features":[399]},{"name":"D3D11_TEX2D_DSV","features":[399]},{"name":"D3D11_TEX2D_RTV","features":[399]},{"name":"D3D11_TEX2D_RTV1","features":[399]},{"name":"D3D11_TEX2D_SRV","features":[399]},{"name":"D3D11_TEX2D_SRV1","features":[399]},{"name":"D3D11_TEX2D_UAV","features":[399]},{"name":"D3D11_TEX2D_UAV1","features":[399]},{"name":"D3D11_TEX2D_VDOV","features":[399]},{"name":"D3D11_TEX2D_VPIV","features":[399]},{"name":"D3D11_TEX2D_VPOV","features":[399]},{"name":"D3D11_TEX3D_RTV","features":[399]},{"name":"D3D11_TEX3D_SRV","features":[399]},{"name":"D3D11_TEX3D_UAV","features":[399]},{"name":"D3D11_TEXCUBE_ARRAY_SRV","features":[399]},{"name":"D3D11_TEXCUBE_SRV","features":[399]},{"name":"D3D11_TEXEL_ADDRESS_RANGE_BIT_COUNT","features":[399]},{"name":"D3D11_TEXTURE1D_DESC","features":[399,391]},{"name":"D3D11_TEXTURE2D_DESC","features":[399,391]},{"name":"D3D11_TEXTURE2D_DESC1","features":[399,391]},{"name":"D3D11_TEXTURE3D_DESC","features":[399,391]},{"name":"D3D11_TEXTURE3D_DESC1","features":[399,391]},{"name":"D3D11_TEXTURECUBE_FACE","features":[399]},{"name":"D3D11_TEXTURECUBE_FACE_NEGATIVE_X","features":[399]},{"name":"D3D11_TEXTURECUBE_FACE_NEGATIVE_Y","features":[399]},{"name":"D3D11_TEXTURECUBE_FACE_NEGATIVE_Z","features":[399]},{"name":"D3D11_TEXTURECUBE_FACE_POSITIVE_X","features":[399]},{"name":"D3D11_TEXTURECUBE_FACE_POSITIVE_Y","features":[399]},{"name":"D3D11_TEXTURECUBE_FACE_POSITIVE_Z","features":[399]},{"name":"D3D11_TEXTURE_ADDRESS_BORDER","features":[399]},{"name":"D3D11_TEXTURE_ADDRESS_CLAMP","features":[399]},{"name":"D3D11_TEXTURE_ADDRESS_MIRROR","features":[399]},{"name":"D3D11_TEXTURE_ADDRESS_MIRROR_ONCE","features":[399]},{"name":"D3D11_TEXTURE_ADDRESS_MODE","features":[399]},{"name":"D3D11_TEXTURE_ADDRESS_WRAP","features":[399]},{"name":"D3D11_TEXTURE_LAYOUT","features":[399]},{"name":"D3D11_TEXTURE_LAYOUT_64K_STANDARD_SWIZZLE","features":[399]},{"name":"D3D11_TEXTURE_LAYOUT_ROW_MAJOR","features":[399]},{"name":"D3D11_TEXTURE_LAYOUT_UNDEFINED","features":[399]},{"name":"D3D11_TILED_RESOURCES_NOT_SUPPORTED","features":[399]},{"name":"D3D11_TILED_RESOURCES_TIER","features":[399]},{"name":"D3D11_TILED_RESOURCES_TIER_1","features":[399]},{"name":"D3D11_TILED_RESOURCES_TIER_2","features":[399]},{"name":"D3D11_TILED_RESOURCES_TIER_3","features":[399]},{"name":"D3D11_TILED_RESOURCE_COORDINATE","features":[399]},{"name":"D3D11_TILE_COPY_FLAG","features":[399]},{"name":"D3D11_TILE_COPY_LINEAR_BUFFER_TO_SWIZZLED_TILED_RESOURCE","features":[399]},{"name":"D3D11_TILE_COPY_NO_OVERWRITE","features":[399]},{"name":"D3D11_TILE_COPY_SWIZZLED_TILED_RESOURCE_TO_LINEAR_BUFFER","features":[399]},{"name":"D3D11_TILE_MAPPING_FLAG","features":[399]},{"name":"D3D11_TILE_MAPPING_NO_OVERWRITE","features":[399]},{"name":"D3D11_TILE_RANGE_FLAG","features":[399]},{"name":"D3D11_TILE_RANGE_NULL","features":[399]},{"name":"D3D11_TILE_RANGE_REUSE_SINGLE_TILE","features":[399]},{"name":"D3D11_TILE_RANGE_SKIP","features":[399]},{"name":"D3D11_TILE_REGION_SIZE","features":[303,399]},{"name":"D3D11_TILE_SHAPE","features":[399]},{"name":"D3D11_TRACE_COMPONENT_W","features":[399]},{"name":"D3D11_TRACE_COMPONENT_X","features":[399]},{"name":"D3D11_TRACE_COMPONENT_Y","features":[399]},{"name":"D3D11_TRACE_COMPONENT_Z","features":[399]},{"name":"D3D11_TRACE_CONSTANT_BUFFER","features":[399]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE","features":[399]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_LINE","features":[399]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_LINE_ADJ","features":[399]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_POINT","features":[399]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_TRIANGLE","features":[399]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_TRIANGLE_ADJ","features":[399]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_UNDEFINED","features":[399]},{"name":"D3D11_TRACE_IMMEDIATE32","features":[399]},{"name":"D3D11_TRACE_IMMEDIATE64","features":[399]},{"name":"D3D11_TRACE_IMMEDIATE_CONSTANT_BUFFER","features":[399]},{"name":"D3D11_TRACE_INDEXABLE_TEMP_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_CONTROL_POINT_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_COVERAGE_MASK_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_CYCLE_COUNTER_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_DOMAIN_POINT_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_FORK_INSTANCE_ID_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_GS_INSTANCE_ID_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_JOIN_INSTANCE_ID_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_PATCH_CONSTANT_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_PRIMITIVE_ID_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_THREAD_GROUP_ID_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_FLATTENED_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_REGISTER","features":[399]},{"name":"D3D11_TRACE_INPUT_THREAD_ID_REGISTER","features":[399]},{"name":"D3D11_TRACE_INTERFACE_POINTER","features":[399]},{"name":"D3D11_TRACE_MISC_GS_CUT","features":[399]},{"name":"D3D11_TRACE_MISC_GS_CUT_STREAM","features":[399]},{"name":"D3D11_TRACE_MISC_GS_EMIT","features":[399]},{"name":"D3D11_TRACE_MISC_GS_EMIT_STREAM","features":[399]},{"name":"D3D11_TRACE_MISC_HALT","features":[399]},{"name":"D3D11_TRACE_MISC_MESSAGE","features":[399]},{"name":"D3D11_TRACE_MISC_PS_DISCARD","features":[399]},{"name":"D3D11_TRACE_OUTPUT_CONTROL_POINT_ID_REGISTER","features":[399]},{"name":"D3D11_TRACE_OUTPUT_CONTROL_POINT_REGISTER","features":[399]},{"name":"D3D11_TRACE_OUTPUT_COVERAGE_MASK","features":[399]},{"name":"D3D11_TRACE_OUTPUT_DEPTH_GREATER_EQUAL_REGISTER","features":[399]},{"name":"D3D11_TRACE_OUTPUT_DEPTH_LESS_EQUAL_REGISTER","features":[399]},{"name":"D3D11_TRACE_OUTPUT_DEPTH_REGISTER","features":[399]},{"name":"D3D11_TRACE_OUTPUT_NULL_REGISTER","features":[399]},{"name":"D3D11_TRACE_OUTPUT_REGISTER","features":[399]},{"name":"D3D11_TRACE_RASTERIZER","features":[399]},{"name":"D3D11_TRACE_REGISTER","features":[399]},{"name":"D3D11_TRACE_REGISTER_FLAGS_RELATIVE_INDEXING","features":[399]},{"name":"D3D11_TRACE_REGISTER_TYPE","features":[399]},{"name":"D3D11_TRACE_RESOURCE","features":[399]},{"name":"D3D11_TRACE_SAMPLER","features":[399]},{"name":"D3D11_TRACE_STATS","features":[303,399]},{"name":"D3D11_TRACE_STEP","features":[303,399]},{"name":"D3D11_TRACE_STREAM","features":[399]},{"name":"D3D11_TRACE_TEMP_REGISTER","features":[399]},{"name":"D3D11_TRACE_THIS_POINTER","features":[399]},{"name":"D3D11_TRACE_THREAD_GROUP_SHARED_MEMORY","features":[399]},{"name":"D3D11_TRACE_UNORDERED_ACCESS_VIEW","features":[399]},{"name":"D3D11_TRACE_VALUE","features":[399]},{"name":"D3D11_UAV_DIMENSION","features":[399]},{"name":"D3D11_UAV_DIMENSION_BUFFER","features":[399]},{"name":"D3D11_UAV_DIMENSION_TEXTURE1D","features":[399]},{"name":"D3D11_UAV_DIMENSION_TEXTURE1DARRAY","features":[399]},{"name":"D3D11_UAV_DIMENSION_TEXTURE2D","features":[399]},{"name":"D3D11_UAV_DIMENSION_TEXTURE2DARRAY","features":[399]},{"name":"D3D11_UAV_DIMENSION_TEXTURE3D","features":[399]},{"name":"D3D11_UAV_DIMENSION_UNKNOWN","features":[399]},{"name":"D3D11_UNBOUND_MEMORY_ACCESS_RESULT","features":[399]},{"name":"D3D11_UNMUTE_SEVERITY_INFO","features":[399]},{"name":"D3D11_UNORDERED_ACCESS_VIEW_DESC","features":[399,391]},{"name":"D3D11_UNORDERED_ACCESS_VIEW_DESC1","features":[399,391]},{"name":"D3D11_USAGE","features":[399]},{"name":"D3D11_USAGE_DEFAULT","features":[399]},{"name":"D3D11_USAGE_DYNAMIC","features":[399]},{"name":"D3D11_USAGE_IMMUTABLE","features":[399]},{"name":"D3D11_USAGE_STAGING","features":[399]},{"name":"D3D11_VDOV_DIMENSION","features":[399]},{"name":"D3D11_VDOV_DIMENSION_TEXTURE2D","features":[399]},{"name":"D3D11_VDOV_DIMENSION_UNKNOWN","features":[399]},{"name":"D3D11_VERTEX_SHADER","features":[399]},{"name":"D3D11_VERTEX_SHADER_TRACE_DESC","features":[399]},{"name":"D3D11_VIDEO_COLOR","features":[399]},{"name":"D3D11_VIDEO_COLOR_RGBA","features":[399]},{"name":"D3D11_VIDEO_COLOR_YCbCrA","features":[399]},{"name":"D3D11_VIDEO_CONTENT_PROTECTION_CAPS","features":[399]},{"name":"D3D11_VIDEO_DECODER_BEGIN_FRAME_CRYPTO_SESSION","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_BITSTREAM","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DEBLOCKING_CONTROL","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DESC","features":[303,399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DESC1","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DESC2","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_FILM_GRAIN","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_INVERSE_QUANTIZATION_MATRIX","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_MACROBLOCK_CONTROL","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_MOTION_VECTOR","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_PICTURE_PARAMETERS","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_RESIDUAL_DIFFERENCE","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_SLICE_CONTROL","features":[399]},{"name":"D3D11_VIDEO_DECODER_BUFFER_TYPE","features":[399]},{"name":"D3D11_VIDEO_DECODER_CAPS","features":[399]},{"name":"D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE","features":[399]},{"name":"D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE_DYNAMIC","features":[399]},{"name":"D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE_REQUIRED","features":[399]},{"name":"D3D11_VIDEO_DECODER_CAPS_NON_REAL_TIME","features":[399]},{"name":"D3D11_VIDEO_DECODER_CAPS_UNSUPPORTED","features":[399]},{"name":"D3D11_VIDEO_DECODER_CONFIG","features":[399]},{"name":"D3D11_VIDEO_DECODER_DESC","features":[399,391]},{"name":"D3D11_VIDEO_DECODER_EXTENSION","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_A","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_B","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAGS","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_A","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_B","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_G","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_NONE","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_R","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_U","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_V","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_Y","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_G","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_R","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_U","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_V","features":[399]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_Y","features":[399]},{"name":"D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC","features":[399]},{"name":"D3D11_VIDEO_DECODER_SUB_SAMPLE_MAPPING_BLOCK","features":[399]},{"name":"D3D11_VIDEO_FRAME_FORMAT","features":[399]},{"name":"D3D11_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[399]},{"name":"D3D11_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[399]},{"name":"D3D11_VIDEO_FRAME_FORMAT_PROGRESSIVE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_BACKGROUND","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_DESTINATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_OPAQUE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_SOURCE_STREAM","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_ANAMORPHIC_SCALING","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_COLOR_CORRECTION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_DENOISE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_DERINGING","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_EDGE_ENHANCEMENT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_FLESH_TONE_MAPPING","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_IMAGE_STABILIZATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_SUPER_RESOLUTION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINTS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_COLOR_SPACE_CONVERSION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_RESIZE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_ROTATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_TRIPLE_BUFFER_OUTPUT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_COLOR_SPACE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_CONTENT_DESC","features":[399,391]},{"name":"D3D11_VIDEO_PROCESSOR_CUSTOM_RATE","features":[303,399,391]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_LINEAR_SPACE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_NOMINAL_RANGE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_RGB_RANGE_CONVERSION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_YCbCr_MATRIX_CONVERSION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_xvYCC","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_FILL","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_PALETTE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_STREAM","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_CONSTRICTION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_LEGACY","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_LUMA_KEY","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_METADATA_HDR10","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_MIRROR","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_PIXEL_ASPECT_RATIO","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ROTATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_SHADER_USAGE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_STEREO","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_ANAMORPHIC_SCALING","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_BRIGHTNESS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_ANAMORPHIC_SCALING","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_BRIGHTNESS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_CONTRAST","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_EDGE_ENHANCEMENT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_HUE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_NOISE_REDUCTION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_SATURATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_STEREO_ADJUSTMENT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CONTRAST","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_EDGE_ENHANCEMENT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_HUE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_NOISE_REDUCTION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_RANGE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_SATURATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_STEREO_ADJUSTMENT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_PALETTE_INTERLACED","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_INTERLACED","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_LUMA_KEY","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_PROCAMP","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_INPUT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_OUTPUT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_22","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_222222222223","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_2224","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_2332","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_32","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_32322","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_55","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_64","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_87","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_OTHER","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_0_255","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_16_235","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_UNDEFINED","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_CUSTOM","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_HALF","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_NORMAL","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_ADAPTIVE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_BLEND","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_BOB","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_MOTION_COMPENSATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_FRAME_RATE_CONVERSION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_INVERSE_TELECINE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_180","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_270","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_90","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_IDENTITY","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_CHECKERBOARD","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_COLUMN_INTERLEAVED","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_FLIP_MODE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_MONO_OFFSET","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_ROW_INTERLEAVED","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_FRAME0","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_FRAME1","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_NONE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_CHECKERBOARD","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_COLUMN_INTERLEAVED","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_HORIZONTAL","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_ROW_INTERLEAVED","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_VERTICAL","features":[399]},{"name":"D3D11_VIDEO_PROCESSOR_STREAM","features":[303,399]},{"name":"D3D11_VIDEO_PROCESSOR_STREAM_BEHAVIOR_HINT","features":[303,399,391]},{"name":"D3D11_VIDEO_SAMPLE_DESC","features":[399,391]},{"name":"D3D11_VIDEO_USAGE","features":[399]},{"name":"D3D11_VIDEO_USAGE_OPTIMAL_QUALITY","features":[399]},{"name":"D3D11_VIDEO_USAGE_OPTIMAL_SPEED","features":[399]},{"name":"D3D11_VIDEO_USAGE_PLAYBACK_NORMAL","features":[399]},{"name":"D3D11_VIEWPORT","features":[399]},{"name":"D3D11_VIEWPORT_AND_SCISSORRECT_MAX_INDEX","features":[399]},{"name":"D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE","features":[399]},{"name":"D3D11_VIEWPORT_BOUNDS_MAX","features":[399]},{"name":"D3D11_VIEWPORT_BOUNDS_MIN","features":[399]},{"name":"D3D11_VPIV_DIMENSION","features":[399]},{"name":"D3D11_VPIV_DIMENSION_TEXTURE2D","features":[399]},{"name":"D3D11_VPIV_DIMENSION_UNKNOWN","features":[399]},{"name":"D3D11_VPOV_DIMENSION","features":[399]},{"name":"D3D11_VPOV_DIMENSION_TEXTURE2D","features":[399]},{"name":"D3D11_VPOV_DIMENSION_TEXTURE2DARRAY","features":[399]},{"name":"D3D11_VPOV_DIMENSION_UNKNOWN","features":[399]},{"name":"D3D11_VS_INPUT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_VS_INPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_VS_INPUT_REGISTER_READS_PER_INST","features":[399]},{"name":"D3D11_VS_INPUT_REGISTER_READ_PORTS","features":[399]},{"name":"D3D11_VS_OUTPUT_REGISTER_COMPONENTS","features":[399]},{"name":"D3D11_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[399]},{"name":"D3D11_VS_OUTPUT_REGISTER_COUNT","features":[399]},{"name":"D3D11_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT","features":[399]},{"name":"D3D11_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[399]},{"name":"D3D11_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP","features":[399]},{"name":"D3DCSX_DLL","features":[399]},{"name":"D3DCSX_DLL_A","features":[399]},{"name":"D3DCSX_DLL_W","features":[399]},{"name":"D3DDisassemble11Trace","features":[396,399]},{"name":"D3DX11CreateFFT","features":[399]},{"name":"D3DX11CreateFFT1DComplex","features":[399]},{"name":"D3DX11CreateFFT1DReal","features":[399]},{"name":"D3DX11CreateFFT2DComplex","features":[399]},{"name":"D3DX11CreateFFT2DReal","features":[399]},{"name":"D3DX11CreateFFT3DComplex","features":[399]},{"name":"D3DX11CreateFFT3DReal","features":[399]},{"name":"D3DX11CreateScan","features":[399]},{"name":"D3DX11CreateSegmentedScan","features":[399]},{"name":"D3DX11_FFT_BUFFER_INFO","features":[399]},{"name":"D3DX11_FFT_CREATE_FLAG","features":[399]},{"name":"D3DX11_FFT_CREATE_FLAG_NO_PRECOMPUTE_BUFFERS","features":[399]},{"name":"D3DX11_FFT_DATA_TYPE","features":[399]},{"name":"D3DX11_FFT_DATA_TYPE_COMPLEX","features":[399]},{"name":"D3DX11_FFT_DATA_TYPE_REAL","features":[399]},{"name":"D3DX11_FFT_DESC","features":[399]},{"name":"D3DX11_FFT_DIM_MASK","features":[399]},{"name":"D3DX11_FFT_DIM_MASK_1D","features":[399]},{"name":"D3DX11_FFT_DIM_MASK_2D","features":[399]},{"name":"D3DX11_FFT_DIM_MASK_3D","features":[399]},{"name":"D3DX11_FFT_MAX_DIMENSIONS","features":[399]},{"name":"D3DX11_FFT_MAX_PRECOMPUTE_BUFFERS","features":[399]},{"name":"D3DX11_FFT_MAX_TEMP_BUFFERS","features":[399]},{"name":"D3DX11_SCAN_DATA_TYPE","features":[399]},{"name":"D3DX11_SCAN_DATA_TYPE_FLOAT","features":[399]},{"name":"D3DX11_SCAN_DATA_TYPE_INT","features":[399]},{"name":"D3DX11_SCAN_DATA_TYPE_UINT","features":[399]},{"name":"D3DX11_SCAN_DIRECTION","features":[399]},{"name":"D3DX11_SCAN_DIRECTION_BACKWARD","features":[399]},{"name":"D3DX11_SCAN_DIRECTION_FORWARD","features":[399]},{"name":"D3DX11_SCAN_OPCODE","features":[399]},{"name":"D3DX11_SCAN_OPCODE_ADD","features":[399]},{"name":"D3DX11_SCAN_OPCODE_AND","features":[399]},{"name":"D3DX11_SCAN_OPCODE_MAX","features":[399]},{"name":"D3DX11_SCAN_OPCODE_MIN","features":[399]},{"name":"D3DX11_SCAN_OPCODE_MUL","features":[399]},{"name":"D3DX11_SCAN_OPCODE_OR","features":[399]},{"name":"D3DX11_SCAN_OPCODE_XOR","features":[399]},{"name":"D3D_RETURN_PARAMETER_INDEX","features":[399]},{"name":"D3D_SHADER_REQUIRES_11_1_DOUBLE_EXTENSIONS","features":[399]},{"name":"D3D_SHADER_REQUIRES_11_1_SHADER_EXTENSIONS","features":[399]},{"name":"D3D_SHADER_REQUIRES_64_UAVS","features":[399]},{"name":"D3D_SHADER_REQUIRES_DOUBLES","features":[399]},{"name":"D3D_SHADER_REQUIRES_EARLY_DEPTH_STENCIL","features":[399]},{"name":"D3D_SHADER_REQUIRES_LEVEL_9_COMPARISON_FILTERING","features":[399]},{"name":"D3D_SHADER_REQUIRES_MINIMUM_PRECISION","features":[399]},{"name":"D3D_SHADER_REQUIRES_TILED_RESOURCES","features":[399]},{"name":"D3D_SHADER_REQUIRES_UAVS_AT_EVERY_STAGE","features":[399]},{"name":"DXGI_DEBUG_D3D11","features":[399]},{"name":"ID3D11Asynchronous","features":[399]},{"name":"ID3D11AuthenticatedChannel","features":[399]},{"name":"ID3D11BlendState","features":[399]},{"name":"ID3D11BlendState1","features":[399]},{"name":"ID3D11Buffer","features":[399]},{"name":"ID3D11ClassInstance","features":[399]},{"name":"ID3D11ClassLinkage","features":[399]},{"name":"ID3D11CommandList","features":[399]},{"name":"ID3D11ComputeShader","features":[399]},{"name":"ID3D11Counter","features":[399]},{"name":"ID3D11CryptoSession","features":[399]},{"name":"ID3D11Debug","features":[399]},{"name":"ID3D11DepthStencilState","features":[399]},{"name":"ID3D11DepthStencilView","features":[399]},{"name":"ID3D11Device","features":[399]},{"name":"ID3D11Device1","features":[399]},{"name":"ID3D11Device2","features":[399]},{"name":"ID3D11Device3","features":[399]},{"name":"ID3D11Device4","features":[399]},{"name":"ID3D11Device5","features":[399]},{"name":"ID3D11DeviceChild","features":[399]},{"name":"ID3D11DeviceContext","features":[399]},{"name":"ID3D11DeviceContext1","features":[399]},{"name":"ID3D11DeviceContext2","features":[399]},{"name":"ID3D11DeviceContext3","features":[399]},{"name":"ID3D11DeviceContext4","features":[399]},{"name":"ID3D11DomainShader","features":[399]},{"name":"ID3D11Fence","features":[399]},{"name":"ID3D11FunctionLinkingGraph","features":[399]},{"name":"ID3D11FunctionParameterReflection","features":[399]},{"name":"ID3D11FunctionReflection","features":[399]},{"name":"ID3D11GeometryShader","features":[399]},{"name":"ID3D11HullShader","features":[399]},{"name":"ID3D11InfoQueue","features":[399]},{"name":"ID3D11InputLayout","features":[399]},{"name":"ID3D11LibraryReflection","features":[399]},{"name":"ID3D11Linker","features":[399]},{"name":"ID3D11LinkingNode","features":[399]},{"name":"ID3D11Module","features":[399]},{"name":"ID3D11ModuleInstance","features":[399]},{"name":"ID3D11Multithread","features":[399]},{"name":"ID3D11PixelShader","features":[399]},{"name":"ID3D11Predicate","features":[399]},{"name":"ID3D11Query","features":[399]},{"name":"ID3D11Query1","features":[399]},{"name":"ID3D11RasterizerState","features":[399]},{"name":"ID3D11RasterizerState1","features":[399]},{"name":"ID3D11RasterizerState2","features":[399]},{"name":"ID3D11RefDefaultTrackingOptions","features":[399]},{"name":"ID3D11RefTrackingOptions","features":[399]},{"name":"ID3D11RenderTargetView","features":[399]},{"name":"ID3D11RenderTargetView1","features":[399]},{"name":"ID3D11Resource","features":[399]},{"name":"ID3D11SamplerState","features":[399]},{"name":"ID3D11ShaderReflection","features":[399]},{"name":"ID3D11ShaderReflectionConstantBuffer","features":[399]},{"name":"ID3D11ShaderReflectionType","features":[399]},{"name":"ID3D11ShaderReflectionVariable","features":[399]},{"name":"ID3D11ShaderResourceView","features":[399]},{"name":"ID3D11ShaderResourceView1","features":[399]},{"name":"ID3D11ShaderTrace","features":[399]},{"name":"ID3D11ShaderTraceFactory","features":[399]},{"name":"ID3D11SwitchToRef","features":[399]},{"name":"ID3D11Texture1D","features":[399]},{"name":"ID3D11Texture2D","features":[399]},{"name":"ID3D11Texture2D1","features":[399]},{"name":"ID3D11Texture3D","features":[399]},{"name":"ID3D11Texture3D1","features":[399]},{"name":"ID3D11TracingDevice","features":[399]},{"name":"ID3D11UnorderedAccessView","features":[399]},{"name":"ID3D11UnorderedAccessView1","features":[399]},{"name":"ID3D11VertexShader","features":[399]},{"name":"ID3D11VideoContext","features":[399]},{"name":"ID3D11VideoContext1","features":[399]},{"name":"ID3D11VideoContext2","features":[399]},{"name":"ID3D11VideoContext3","features":[399]},{"name":"ID3D11VideoDecoder","features":[399]},{"name":"ID3D11VideoDecoderOutputView","features":[399]},{"name":"ID3D11VideoDevice","features":[399]},{"name":"ID3D11VideoDevice1","features":[399]},{"name":"ID3D11VideoDevice2","features":[399]},{"name":"ID3D11VideoProcessor","features":[399]},{"name":"ID3D11VideoProcessorEnumerator","features":[399]},{"name":"ID3D11VideoProcessorEnumerator1","features":[399]},{"name":"ID3D11VideoProcessorInputView","features":[399]},{"name":"ID3D11VideoProcessorOutputView","features":[399]},{"name":"ID3D11View","features":[399]},{"name":"ID3DDeviceContextState","features":[399]},{"name":"ID3DUserDefinedAnnotation","features":[399]},{"name":"ID3DX11FFT","features":[399]},{"name":"ID3DX11Scan","features":[399]},{"name":"ID3DX11SegmentedScan","features":[399]},{"name":"PFN_D3D11_CREATE_DEVICE","features":[303,396,399,395]},{"name":"PFN_D3D11_CREATE_DEVICE_AND_SWAP_CHAIN","features":[303,396,399,391]},{"name":"_FACD3D11","features":[399]}],"402":[{"name":"D3D11On12CreateDevice","features":[396,399,401]},{"name":"D3D11_RESOURCE_FLAGS","features":[401]},{"name":"ID3D11On12Device","features":[401]},{"name":"ID3D11On12Device1","features":[401]},{"name":"ID3D11On12Device2","features":[401]},{"name":"PFN_D3D11ON12_CREATE_DEVICE","features":[396,399,401]}],"403":[{"name":"CLSID_D3D12Debug","features":[350]},{"name":"CLSID_D3D12DeviceFactory","features":[350]},{"name":"CLSID_D3D12DeviceRemovedExtendedData","features":[350]},{"name":"CLSID_D3D12SDKConfiguration","features":[350]},{"name":"CLSID_D3D12Tools","features":[350]},{"name":"D3D12CreateDevice","features":[396,350]},{"name":"D3D12CreateRootSignatureDeserializer","features":[350]},{"name":"D3D12CreateVersionedRootSignatureDeserializer","features":[350]},{"name":"D3D12EnableExperimentalFeatures","features":[350]},{"name":"D3D12ExperimentalShaderModels","features":[350]},{"name":"D3D12GetDebugInterface","features":[350]},{"name":"D3D12GetInterface","features":[350]},{"name":"D3D12MessageFunc","features":[350]},{"name":"D3D12SerializeRootSignature","features":[396,350]},{"name":"D3D12SerializeVersionedRootSignature","features":[396,350]},{"name":"D3D12TiledResourceTier4","features":[350]},{"name":"D3D12_16BIT_INDEX_STRIP_CUT_VALUE","features":[350]},{"name":"D3D12_32BIT_INDEX_STRIP_CUT_VALUE","features":[350]},{"name":"D3D12_8BIT_INDEX_STRIP_CUT_VALUE","features":[350]},{"name":"D3D12_ANISOTROPIC_FILTERING_BIT","features":[350]},{"name":"D3D12_APPEND_ALIGNED_ELEMENT","features":[350]},{"name":"D3D12_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_NODE","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_NODE1","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ATOMICCOPYBUFFERUINT","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ATOMICCOPYBUFFERUINT64","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BARRIER","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BEGINEVENT","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BEGINSUBMISSION","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BEGIN_COMMAND_LIST","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BUILDRAYTRACINGACCELERATIONSTRUCTURE","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_CLEARDEPTHSTENCILVIEW","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_CLEARRENDERTARGETVIEW","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_CLEARUNORDEREDACCESSVIEW","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYBUFFERREGION","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYRAYTRACINGACCELERATIONSTRUCTURE","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYRESOURCE","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYTEXTUREREGION","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYTILES","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME1","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME2","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DISPATCH","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DISPATCHMESH","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DISPATCHRAYS","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DRAWINDEXEDINSTANCED","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DRAWINSTANCED","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EMITRAYTRACINGACCELERATIONSTRUCTUREPOSTBUILDINFO","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ENCODEFRAME","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ENDEVENT","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ENDSUBMISSION","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ESTIMATEMOTION","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEBUNDLE","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEEXTENSIONCOMMAND","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEINDIRECT","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEMETACOMMAND","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_INITIALIZEEXTENSIONCOMMAND","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_INITIALIZEMETACOMMAND","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_PRESENT","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_PROCESSFRAMES","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_PROCESSFRAMES1","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVEENCODEROUTPUTMETADATA","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVEMOTIONVECTORHEAP","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVEQUERYDATA","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVESUBRESOURCE","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVESUBRESOURCEREGION","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOURCEBARRIER","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_SETMARKER","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_SETPIPELINESTATE1","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_SETPROTECTEDRESOURCESESSION","features":[350]},{"name":"D3D12_AUTO_BREADCRUMB_OP_WRITEBUFFERIMMEDIATE","features":[350]},{"name":"D3D12_AXIS_SHADING_RATE","features":[350]},{"name":"D3D12_AXIS_SHADING_RATE_1X","features":[350]},{"name":"D3D12_AXIS_SHADING_RATE_2X","features":[350]},{"name":"D3D12_AXIS_SHADING_RATE_4X","features":[350]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE","features":[350]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_ALLOWED","features":[350]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_ALLOW_INTRUSIVE_MEASUREMENTS","features":[350]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_DISABLE_BACKGROUND_WORK","features":[350]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_DISABLE_PROFILING_BY_SYSTEM","features":[350]},{"name":"D3D12_BARRIER_ACCESS","features":[350]},{"name":"D3D12_BARRIER_ACCESS_COMMON","features":[350]},{"name":"D3D12_BARRIER_ACCESS_CONSTANT_BUFFER","features":[350]},{"name":"D3D12_BARRIER_ACCESS_COPY_DEST","features":[350]},{"name":"D3D12_BARRIER_ACCESS_COPY_SOURCE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_DEPTH_STENCIL_READ","features":[350]},{"name":"D3D12_BARRIER_ACCESS_DEPTH_STENCIL_WRITE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_INDEX_BUFFER","features":[350]},{"name":"D3D12_BARRIER_ACCESS_INDIRECT_ARGUMENT","features":[350]},{"name":"D3D12_BARRIER_ACCESS_NO_ACCESS","features":[350]},{"name":"D3D12_BARRIER_ACCESS_PREDICATION","features":[350]},{"name":"D3D12_BARRIER_ACCESS_RAYTRACING_ACCELERATION_STRUCTURE_READ","features":[350]},{"name":"D3D12_BARRIER_ACCESS_RAYTRACING_ACCELERATION_STRUCTURE_WRITE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_RENDER_TARGET","features":[350]},{"name":"D3D12_BARRIER_ACCESS_RESOLVE_DEST","features":[350]},{"name":"D3D12_BARRIER_ACCESS_RESOLVE_SOURCE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_SHADER_RESOURCE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_SHADING_RATE_SOURCE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_STREAM_OUTPUT","features":[350]},{"name":"D3D12_BARRIER_ACCESS_UNORDERED_ACCESS","features":[350]},{"name":"D3D12_BARRIER_ACCESS_VERTEX_BUFFER","features":[350]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_DECODE_READ","features":[350]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_DECODE_WRITE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_ENCODE_READ","features":[350]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_ENCODE_WRITE","features":[350]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_PROCESS_READ","features":[350]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_PROCESS_WRITE","features":[350]},{"name":"D3D12_BARRIER_GROUP","features":[350]},{"name":"D3D12_BARRIER_LAYOUT","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COMMON","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_COMMON","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_COPY_DEST","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_COPY_SOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_GENERIC_READ","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_SHADER_RESOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_UNORDERED_ACCESS","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COPY_DEST","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_COPY_SOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DEPTH_STENCIL_READ","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DEPTH_STENCIL_WRITE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_COMMON","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_COPY_DEST","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_COPY_SOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_GENERIC_READ","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_SHADER_RESOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_UNORDERED_ACCESS","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_GENERIC_READ","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_PRESENT","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_RENDER_TARGET","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_RESOLVE_DEST","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_RESOLVE_SOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_SHADER_RESOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_SHADING_RATE_SOURCE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_UNDEFINED","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_UNORDERED_ACCESS","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_DECODE_READ","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_DECODE_WRITE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_ENCODE_READ","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_ENCODE_WRITE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_PROCESS_READ","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_PROCESS_WRITE","features":[350]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_QUEUE_COMMON","features":[350]},{"name":"D3D12_BARRIER_SUBRESOURCE_RANGE","features":[350]},{"name":"D3D12_BARRIER_SYNC","features":[350]},{"name":"D3D12_BARRIER_SYNC_ALL","features":[350]},{"name":"D3D12_BARRIER_SYNC_ALL_SHADING","features":[350]},{"name":"D3D12_BARRIER_SYNC_BUILD_RAYTRACING_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_BARRIER_SYNC_CLEAR_UNORDERED_ACCESS_VIEW","features":[350]},{"name":"D3D12_BARRIER_SYNC_COMPUTE_SHADING","features":[350]},{"name":"D3D12_BARRIER_SYNC_COPY","features":[350]},{"name":"D3D12_BARRIER_SYNC_COPY_RAYTRACING_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_BARRIER_SYNC_DEPTH_STENCIL","features":[350]},{"name":"D3D12_BARRIER_SYNC_DRAW","features":[350]},{"name":"D3D12_BARRIER_SYNC_EMIT_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO","features":[350]},{"name":"D3D12_BARRIER_SYNC_EXECUTE_INDIRECT","features":[350]},{"name":"D3D12_BARRIER_SYNC_INDEX_INPUT","features":[350]},{"name":"D3D12_BARRIER_SYNC_NONE","features":[350]},{"name":"D3D12_BARRIER_SYNC_NON_PIXEL_SHADING","features":[350]},{"name":"D3D12_BARRIER_SYNC_PIXEL_SHADING","features":[350]},{"name":"D3D12_BARRIER_SYNC_PREDICATION","features":[350]},{"name":"D3D12_BARRIER_SYNC_RAYTRACING","features":[350]},{"name":"D3D12_BARRIER_SYNC_RENDER_TARGET","features":[350]},{"name":"D3D12_BARRIER_SYNC_RESOLVE","features":[350]},{"name":"D3D12_BARRIER_SYNC_SPLIT","features":[350]},{"name":"D3D12_BARRIER_SYNC_VERTEX_SHADING","features":[350]},{"name":"D3D12_BARRIER_SYNC_VIDEO_DECODE","features":[350]},{"name":"D3D12_BARRIER_SYNC_VIDEO_ENCODE","features":[350]},{"name":"D3D12_BARRIER_SYNC_VIDEO_PROCESS","features":[350]},{"name":"D3D12_BARRIER_TYPE","features":[350]},{"name":"D3D12_BARRIER_TYPE_BUFFER","features":[350]},{"name":"D3D12_BARRIER_TYPE_GLOBAL","features":[350]},{"name":"D3D12_BARRIER_TYPE_TEXTURE","features":[350]},{"name":"D3D12_BLEND","features":[350]},{"name":"D3D12_BLEND_ALPHA_FACTOR","features":[350]},{"name":"D3D12_BLEND_BLEND_FACTOR","features":[350]},{"name":"D3D12_BLEND_DESC","features":[303,350]},{"name":"D3D12_BLEND_DEST_ALPHA","features":[350]},{"name":"D3D12_BLEND_DEST_COLOR","features":[350]},{"name":"D3D12_BLEND_INV_ALPHA_FACTOR","features":[350]},{"name":"D3D12_BLEND_INV_BLEND_FACTOR","features":[350]},{"name":"D3D12_BLEND_INV_DEST_ALPHA","features":[350]},{"name":"D3D12_BLEND_INV_DEST_COLOR","features":[350]},{"name":"D3D12_BLEND_INV_SRC1_ALPHA","features":[350]},{"name":"D3D12_BLEND_INV_SRC1_COLOR","features":[350]},{"name":"D3D12_BLEND_INV_SRC_ALPHA","features":[350]},{"name":"D3D12_BLEND_INV_SRC_COLOR","features":[350]},{"name":"D3D12_BLEND_ONE","features":[350]},{"name":"D3D12_BLEND_OP","features":[350]},{"name":"D3D12_BLEND_OP_ADD","features":[350]},{"name":"D3D12_BLEND_OP_MAX","features":[350]},{"name":"D3D12_BLEND_OP_MIN","features":[350]},{"name":"D3D12_BLEND_OP_REV_SUBTRACT","features":[350]},{"name":"D3D12_BLEND_OP_SUBTRACT","features":[350]},{"name":"D3D12_BLEND_SRC1_ALPHA","features":[350]},{"name":"D3D12_BLEND_SRC1_COLOR","features":[350]},{"name":"D3D12_BLEND_SRC_ALPHA","features":[350]},{"name":"D3D12_BLEND_SRC_ALPHA_SAT","features":[350]},{"name":"D3D12_BLEND_SRC_COLOR","features":[350]},{"name":"D3D12_BLEND_ZERO","features":[350]},{"name":"D3D12_BOX","features":[350]},{"name":"D3D12_BUFFER_BARRIER","features":[350]},{"name":"D3D12_BUFFER_RTV","features":[350]},{"name":"D3D12_BUFFER_SRV","features":[350]},{"name":"D3D12_BUFFER_SRV_FLAGS","features":[350]},{"name":"D3D12_BUFFER_SRV_FLAG_NONE","features":[350]},{"name":"D3D12_BUFFER_SRV_FLAG_RAW","features":[350]},{"name":"D3D12_BUFFER_UAV","features":[350]},{"name":"D3D12_BUFFER_UAV_FLAGS","features":[350]},{"name":"D3D12_BUFFER_UAV_FLAG_NONE","features":[350]},{"name":"D3D12_BUFFER_UAV_FLAG_RAW","features":[350]},{"name":"D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_DESC","features":[350,391]},{"name":"D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INPUTS","features":[350,391]},{"name":"D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_TOOLS_VISUALIZATION_HEADER","features":[350]},{"name":"D3D12_CACHED_PIPELINE_STATE","features":[350]},{"name":"D3D12_CLEAR_FLAGS","features":[350]},{"name":"D3D12_CLEAR_FLAG_DEPTH","features":[350]},{"name":"D3D12_CLEAR_FLAG_STENCIL","features":[350]},{"name":"D3D12_CLEAR_VALUE","features":[350,391]},{"name":"D3D12_CLIP_OR_CULL_DISTANCE_COUNT","features":[350]},{"name":"D3D12_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT","features":[350]},{"name":"D3D12_COLOR_WRITE_ENABLE","features":[350]},{"name":"D3D12_COLOR_WRITE_ENABLE_ALL","features":[350]},{"name":"D3D12_COLOR_WRITE_ENABLE_ALPHA","features":[350]},{"name":"D3D12_COLOR_WRITE_ENABLE_BLUE","features":[350]},{"name":"D3D12_COLOR_WRITE_ENABLE_GREEN","features":[350]},{"name":"D3D12_COLOR_WRITE_ENABLE_RED","features":[350]},{"name":"D3D12_COMMAND_LIST_FLAGS","features":[350]},{"name":"D3D12_COMMAND_LIST_FLAG_NONE","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAGS","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_BUNDLE","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_COMPUTE","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_COPY","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_DIRECT","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_NONE","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_DECODE","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_ENCODE","features":[350]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_PROCESS","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_BUNDLE","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_COMPUTE","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_COPY","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_DIRECT","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_NONE","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_VIDEO_DECODE","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_VIDEO_ENCODE","features":[350]},{"name":"D3D12_COMMAND_LIST_TYPE_VIDEO_PROCESS","features":[350]},{"name":"D3D12_COMMAND_POOL_FLAGS","features":[350]},{"name":"D3D12_COMMAND_POOL_FLAG_NONE","features":[350]},{"name":"D3D12_COMMAND_QUEUE_DESC","features":[350]},{"name":"D3D12_COMMAND_QUEUE_FLAGS","features":[350]},{"name":"D3D12_COMMAND_QUEUE_FLAG_DISABLE_GPU_TIMEOUT","features":[350]},{"name":"D3D12_COMMAND_QUEUE_FLAG_NONE","features":[350]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY","features":[350]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY_GLOBAL_REALTIME","features":[350]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY_HIGH","features":[350]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY_NORMAL","features":[350]},{"name":"D3D12_COMMAND_RECORDER_FLAGS","features":[350]},{"name":"D3D12_COMMAND_RECORDER_FLAG_NONE","features":[350]},{"name":"D3D12_COMMAND_SIGNATURE_DESC","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_PARTIAL_UPDATE_EXTENTS_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT","features":[350]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_COMMONSHADER_SAMPLER_SLOT_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_SUBROUTINE_NESTING_LIMIT","features":[350]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_COUNT","features":[350]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX","features":[350]},{"name":"D3D12_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN","features":[350]},{"name":"D3D12_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE","features":[350]},{"name":"D3D12_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE","features":[350]},{"name":"D3D12_COMPARISON_FUNC","features":[350]},{"name":"D3D12_COMPARISON_FUNC_ALWAYS","features":[350]},{"name":"D3D12_COMPARISON_FUNC_EQUAL","features":[350]},{"name":"D3D12_COMPARISON_FUNC_GREATER","features":[350]},{"name":"D3D12_COMPARISON_FUNC_GREATER_EQUAL","features":[350]},{"name":"D3D12_COMPARISON_FUNC_LESS","features":[350]},{"name":"D3D12_COMPARISON_FUNC_LESS_EQUAL","features":[350]},{"name":"D3D12_COMPARISON_FUNC_NEVER","features":[350]},{"name":"D3D12_COMPARISON_FUNC_NONE","features":[350]},{"name":"D3D12_COMPARISON_FUNC_NOT_EQUAL","features":[350]},{"name":"D3D12_COMPUTE_PIPELINE_STATE_DESC","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_MODE","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_MODE_OFF","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_MODE_ON","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_1","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_2","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_3","features":[350]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_CONSTANT_BUFFER_DATA_PLACEMENT_ALIGNMENT","features":[350]},{"name":"D3D12_CONSTANT_BUFFER_VIEW_DESC","features":[350]},{"name":"D3D12_CPU_DESCRIPTOR_HANDLE","features":[350]},{"name":"D3D12_CPU_PAGE_PROPERTY","features":[350]},{"name":"D3D12_CPU_PAGE_PROPERTY_NOT_AVAILABLE","features":[350]},{"name":"D3D12_CPU_PAGE_PROPERTY_UNKNOWN","features":[350]},{"name":"D3D12_CPU_PAGE_PROPERTY_WRITE_BACK","features":[350]},{"name":"D3D12_CPU_PAGE_PROPERTY_WRITE_COMBINE","features":[350]},{"name":"D3D12_CROSS_NODE_SHARING_TIER","features":[350]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_1","features":[350]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_1_EMULATED","features":[350]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_2","features":[350]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_3","features":[350]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_CS_4_X_BUCKET00_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET00_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET01_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET01_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET02_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET02_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET03_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET03_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET04_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET04_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET05_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET05_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET06_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET06_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET07_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET07_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET08_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET08_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET09_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET09_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET10_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET10_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET11_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET11_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET12_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET12_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET13_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET13_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET14_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET14_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_BUCKET15_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[350]},{"name":"D3D12_CS_4_X_BUCKET15_MAX_NUM_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_DISPATCH_MAX_THREAD_GROUPS_IN_Z_DIMENSION","features":[350]},{"name":"D3D12_CS_4_X_RAW_UAV_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_CS_4_X_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_4_X_THREAD_GROUP_MAX_X","features":[350]},{"name":"D3D12_CS_4_X_THREAD_GROUP_MAX_Y","features":[350]},{"name":"D3D12_CS_4_X_UAV_REGISTER_COUNT","features":[350]},{"name":"D3D12_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION","features":[350]},{"name":"D3D12_CS_TGSM_REGISTER_COUNT","features":[350]},{"name":"D3D12_CS_TGSM_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_CS_TGSM_RESOURCE_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_CS_TGSM_RESOURCE_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_CS_THREADGROUPID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_CS_THREADGROUPID_REGISTER_COUNT","features":[350]},{"name":"D3D12_CS_THREADIDINGROUPFLATTENED_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_CS_THREADIDINGROUPFLATTENED_REGISTER_COUNT","features":[350]},{"name":"D3D12_CS_THREADIDINGROUP_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_CS_THREADIDINGROUP_REGISTER_COUNT","features":[350]},{"name":"D3D12_CS_THREADID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_CS_THREADID_REGISTER_COUNT","features":[350]},{"name":"D3D12_CS_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[350]},{"name":"D3D12_CS_THREAD_GROUP_MAX_X","features":[350]},{"name":"D3D12_CS_THREAD_GROUP_MAX_Y","features":[350]},{"name":"D3D12_CS_THREAD_GROUP_MAX_Z","features":[350]},{"name":"D3D12_CS_THREAD_GROUP_MIN_X","features":[350]},{"name":"D3D12_CS_THREAD_GROUP_MIN_Y","features":[350]},{"name":"D3D12_CS_THREAD_GROUP_MIN_Z","features":[350]},{"name":"D3D12_CS_THREAD_LOCAL_TEMP_REGISTER_POOL","features":[350]},{"name":"D3D12_CULL_MODE","features":[350]},{"name":"D3D12_CULL_MODE_BACK","features":[350]},{"name":"D3D12_CULL_MODE_FRONT","features":[350]},{"name":"D3D12_CULL_MODE_NONE","features":[350]},{"name":"D3D12_DEBUG_COMMAND_LIST_GPU_BASED_VALIDATION_SETTINGS","features":[350]},{"name":"D3D12_DEBUG_COMMAND_LIST_PARAMETER_GPU_BASED_VALIDATION_SETTINGS","features":[350]},{"name":"D3D12_DEBUG_COMMAND_LIST_PARAMETER_TYPE","features":[350]},{"name":"D3D12_DEBUG_DEVICE_GPU_BASED_VALIDATION_SETTINGS","features":[350]},{"name":"D3D12_DEBUG_DEVICE_GPU_SLOWDOWN_PERFORMANCE_FACTOR","features":[350]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_FEATURE_FLAGS","features":[350]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_GPU_BASED_VALIDATION_SETTINGS","features":[350]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_GPU_SLOWDOWN_PERFORMANCE_FACTOR","features":[350]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_TYPE","features":[350]},{"name":"D3D12_DEBUG_FEATURE","features":[350]},{"name":"D3D12_DEBUG_FEATURE_ALLOW_BEHAVIOR_CHANGING_DEBUG_AIDS","features":[350]},{"name":"D3D12_DEBUG_FEATURE_CONSERVATIVE_RESOURCE_STATE_TRACKING","features":[350]},{"name":"D3D12_DEBUG_FEATURE_DISABLE_VIRTUALIZED_BUNDLES_VALIDATION","features":[350]},{"name":"D3D12_DEBUG_FEATURE_EMULATE_WINDOWS7","features":[350]},{"name":"D3D12_DEBUG_FEATURE_NONE","features":[350]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_ALPHA","features":[350]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_BLUE","features":[350]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_GREEN","features":[350]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_RED","features":[350]},{"name":"D3D12_DEFAULT_BORDER_COLOR_COMPONENT","features":[350]},{"name":"D3D12_DEFAULT_DEPTH_BIAS","features":[350]},{"name":"D3D12_DEFAULT_DEPTH_BIAS_CLAMP","features":[350]},{"name":"D3D12_DEFAULT_MAX_ANISOTROPY","features":[350]},{"name":"D3D12_DEFAULT_MIP_LOD_BIAS","features":[350]},{"name":"D3D12_DEFAULT_MSAA_RESOURCE_PLACEMENT_ALIGNMENT","features":[350]},{"name":"D3D12_DEFAULT_RENDER_TARGET_ARRAY_INDEX","features":[350]},{"name":"D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT","features":[350]},{"name":"D3D12_DEFAULT_SAMPLE_MASK","features":[350]},{"name":"D3D12_DEFAULT_SCISSOR_ENDX","features":[350]},{"name":"D3D12_DEFAULT_SCISSOR_ENDY","features":[350]},{"name":"D3D12_DEFAULT_SCISSOR_STARTX","features":[350]},{"name":"D3D12_DEFAULT_SCISSOR_STARTY","features":[350]},{"name":"D3D12_DEFAULT_SHADER_4_COMPONENT_MAPPING","features":[350]},{"name":"D3D12_DEFAULT_SLOPE_SCALED_DEPTH_BIAS","features":[350]},{"name":"D3D12_DEFAULT_STENCIL_READ_MASK","features":[350]},{"name":"D3D12_DEFAULT_STENCIL_REFERENCE","features":[350]},{"name":"D3D12_DEFAULT_STENCIL_WRITE_MASK","features":[350]},{"name":"D3D12_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX","features":[350]},{"name":"D3D12_DEFAULT_VIEWPORT_HEIGHT","features":[350]},{"name":"D3D12_DEFAULT_VIEWPORT_MAX_DEPTH","features":[350]},{"name":"D3D12_DEFAULT_VIEWPORT_MIN_DEPTH","features":[350]},{"name":"D3D12_DEFAULT_VIEWPORT_TOPLEFTX","features":[350]},{"name":"D3D12_DEFAULT_VIEWPORT_TOPLEFTY","features":[350]},{"name":"D3D12_DEFAULT_VIEWPORT_WIDTH","features":[350]},{"name":"D3D12_DEPTH_STENCILOP_DESC","features":[350]},{"name":"D3D12_DEPTH_STENCILOP_DESC1","features":[350]},{"name":"D3D12_DEPTH_STENCIL_DESC","features":[303,350]},{"name":"D3D12_DEPTH_STENCIL_DESC1","features":[303,350]},{"name":"D3D12_DEPTH_STENCIL_DESC2","features":[303,350]},{"name":"D3D12_DEPTH_STENCIL_VALUE","features":[350]},{"name":"D3D12_DEPTH_STENCIL_VIEW_DESC","features":[350,391]},{"name":"D3D12_DEPTH_WRITE_MASK","features":[350]},{"name":"D3D12_DEPTH_WRITE_MASK_ALL","features":[350]},{"name":"D3D12_DEPTH_WRITE_MASK_ZERO","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_DESC","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_FLAGS","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_FLAG_NONE","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_DSV","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_NUM_TYPES","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_RTV","features":[350]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_SAMPLER","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE1","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAGS","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DATA_STATIC","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DATA_STATIC_WHILE_SET_AT_EXECUTE","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DATA_VOLATILE","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DESCRIPTORS_STATIC_KEEPING_BUFFER_BOUNDS_CHECKS","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DESCRIPTORS_VOLATILE","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_NONE","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_CBV","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_SAMPLER","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_SRV","features":[350]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_UAV","features":[350]},{"name":"D3D12_DEVICE_CONFIGURATION_DESC","features":[350]},{"name":"D3D12_DEVICE_FACTORY_FLAGS","features":[350]},{"name":"D3D12_DEVICE_FACTORY_FLAG_ALLOW_RETURNING_EXISTING_DEVICE","features":[350]},{"name":"D3D12_DEVICE_FACTORY_FLAG_ALLOW_RETURNING_INCOMPATIBLE_EXISTING_DEVICE","features":[350]},{"name":"D3D12_DEVICE_FACTORY_FLAG_DISALLOW_STORING_NEW_DEVICE_AS_SINGLETON","features":[350]},{"name":"D3D12_DEVICE_FACTORY_FLAG_NONE","features":[350]},{"name":"D3D12_DEVICE_FLAGS","features":[350]},{"name":"D3D12_DEVICE_FLAG_AUTO_DEBUG_NAME_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_DEBUG_LAYER_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_DRED_AUTO_BREADCRUMBS_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_DRED_BREADCRUMB_CONTEXT_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_DRED_PAGE_FAULT_REPORTING_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_DRED_USE_MARKERS_ONLY_BREADCRUMBS","features":[350]},{"name":"D3D12_DEVICE_FLAG_DRED_WATSON_REPORTING_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_FORCE_LEGACY_STATE_VALIDATION","features":[350]},{"name":"D3D12_DEVICE_FLAG_GPU_BASED_VALIDATION_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_NONE","features":[350]},{"name":"D3D12_DEVICE_FLAG_SHADER_INSTRUMENTATION_ENABLED","features":[350]},{"name":"D3D12_DEVICE_FLAG_SYNCHRONIZED_COMMAND_QUEUE_VALIDATION_DISABLED","features":[350]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA","features":[350]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA1","features":[350]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA2","features":[350]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA3","features":[350]},{"name":"D3D12_DISCARD_REGION","features":[303,350]},{"name":"D3D12_DISPATCH_ARGUMENTS","features":[350]},{"name":"D3D12_DISPATCH_MESH_ARGUMENTS","features":[350]},{"name":"D3D12_DISPATCH_RAYS_DESC","features":[350]},{"name":"D3D12_DRAW_ARGUMENTS","features":[350]},{"name":"D3D12_DRAW_INDEXED_ARGUMENTS","features":[350]},{"name":"D3D12_DRED_ALLOCATION_NODE","features":[350]},{"name":"D3D12_DRED_ALLOCATION_NODE1","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_ALLOCATOR","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_LIST","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_POOL","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_QUEUE","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_RECORDER","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_SIGNATURE","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_CRYPTOSESSION","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_CRYPTOSESSIONPOLICY","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_DESCRIPTOR_HEAP","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_FENCE","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_HEAP","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_INVALID","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_METACOMMAND","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PASS","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PIPELINE_LIBRARY","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PIPELINE_STATE","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PROTECTEDRESOURCESESSION","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_QUERY_HEAP","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_RESOURCE","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_SCHEDULINGGROUP","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_STATE_OBJECT","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_DECODER","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_DECODER_HEAP","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_ENCODER","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_ENCODER_HEAP","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_EXTENSION_COMMAND","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_MOTION_ESTIMATOR","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_MOTION_VECTOR_HEAP","features":[350]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_PROCESSOR","features":[350]},{"name":"D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT","features":[350]},{"name":"D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT1","features":[350]},{"name":"D3D12_DRED_BREADCRUMB_CONTEXT","features":[350]},{"name":"D3D12_DRED_DEVICE_STATE","features":[350]},{"name":"D3D12_DRED_DEVICE_STATE_FAULT","features":[350]},{"name":"D3D12_DRED_DEVICE_STATE_HUNG","features":[350]},{"name":"D3D12_DRED_DEVICE_STATE_PAGEFAULT","features":[350]},{"name":"D3D12_DRED_DEVICE_STATE_UNKNOWN","features":[350]},{"name":"D3D12_DRED_ENABLEMENT","features":[350]},{"name":"D3D12_DRED_ENABLEMENT_FORCED_OFF","features":[350]},{"name":"D3D12_DRED_ENABLEMENT_FORCED_ON","features":[350]},{"name":"D3D12_DRED_ENABLEMENT_SYSTEM_CONTROLLED","features":[350]},{"name":"D3D12_DRED_FLAGS","features":[350]},{"name":"D3D12_DRED_FLAG_DISABLE_AUTOBREADCRUMBS","features":[350]},{"name":"D3D12_DRED_FLAG_FORCE_ENABLE","features":[350]},{"name":"D3D12_DRED_FLAG_NONE","features":[350]},{"name":"D3D12_DRED_PAGE_FAULT_FLAGS","features":[350]},{"name":"D3D12_DRED_PAGE_FAULT_FLAGS_NONE","features":[350]},{"name":"D3D12_DRED_PAGE_FAULT_OUTPUT","features":[350]},{"name":"D3D12_DRED_PAGE_FAULT_OUTPUT1","features":[350]},{"name":"D3D12_DRED_PAGE_FAULT_OUTPUT2","features":[350]},{"name":"D3D12_DRED_VERSION","features":[350]},{"name":"D3D12_DRED_VERSION_1_0","features":[350]},{"name":"D3D12_DRED_VERSION_1_1","features":[350]},{"name":"D3D12_DRED_VERSION_1_2","features":[350]},{"name":"D3D12_DRED_VERSION_1_3","features":[350]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_COMPATIBLE_WITH_DEVICE","features":[350]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_INCOMPATIBLE_TYPE","features":[350]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_INCOMPATIBLE_VERSION","features":[350]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_STATUS","features":[350]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_UNRECOGNIZED","features":[350]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_UNSUPPORTED_TYPE","features":[350]},{"name":"D3D12_DRIVER_RESERVED_REGISTER_SPACE_VALUES_END","features":[350]},{"name":"D3D12_DRIVER_RESERVED_REGISTER_SPACE_VALUES_START","features":[350]},{"name":"D3D12_DSV_DIMENSION","features":[350]},{"name":"D3D12_DSV_DIMENSION_TEXTURE1D","features":[350]},{"name":"D3D12_DSV_DIMENSION_TEXTURE1DARRAY","features":[350]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2D","features":[350]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2DARRAY","features":[350]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2DMS","features":[350]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2DMSARRAY","features":[350]},{"name":"D3D12_DSV_DIMENSION_UNKNOWN","features":[350]},{"name":"D3D12_DSV_FLAGS","features":[350]},{"name":"D3D12_DSV_FLAG_NONE","features":[350]},{"name":"D3D12_DSV_FLAG_READ_ONLY_DEPTH","features":[350]},{"name":"D3D12_DSV_FLAG_READ_ONLY_STENCIL","features":[350]},{"name":"D3D12_DS_INPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[350]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[350]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_DS_OUTPUT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_DS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_DS_OUTPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_DXIL_LIBRARY_DESC","features":[350]},{"name":"D3D12_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[350]},{"name":"D3D12_ELEMENTS_LAYOUT","features":[350]},{"name":"D3D12_ELEMENTS_LAYOUT_ARRAY","features":[350]},{"name":"D3D12_ELEMENTS_LAYOUT_ARRAY_OF_POINTERS","features":[350]},{"name":"D3D12_EXISTING_COLLECTION_DESC","features":[350]},{"name":"D3D12_EXPORT_DESC","features":[350]},{"name":"D3D12_EXPORT_FLAGS","features":[350]},{"name":"D3D12_EXPORT_FLAG_NONE","features":[350]},{"name":"D3D12_FEATURE","features":[350]},{"name":"D3D12_FEATURE_ARCHITECTURE","features":[350]},{"name":"D3D12_FEATURE_ARCHITECTURE1","features":[350]},{"name":"D3D12_FEATURE_COMMAND_QUEUE_PRIORITY","features":[350]},{"name":"D3D12_FEATURE_CROSS_NODE","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS1","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS10","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS11","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS12","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS13","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS14","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS15","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS16","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS17","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS18","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS19","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS2","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS20","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS3","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS4","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS5","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS6","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS7","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS8","features":[350]},{"name":"D3D12_FEATURE_D3D12_OPTIONS9","features":[350]},{"name":"D3D12_FEATURE_DATA_ARCHITECTURE","features":[303,350]},{"name":"D3D12_FEATURE_DATA_ARCHITECTURE1","features":[303,350]},{"name":"D3D12_FEATURE_DATA_COMMAND_QUEUE_PRIORITY","features":[303,350]},{"name":"D3D12_FEATURE_DATA_CROSS_NODE","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS1","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS10","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS11","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS12","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS13","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS14","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS15","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS16","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS17","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS18","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS19","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS2","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS20","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS3","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS4","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS5","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS6","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS7","features":[350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS8","features":[303,350]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS9","features":[303,350]},{"name":"D3D12_FEATURE_DATA_DISPLAYABLE","features":[303,350]},{"name":"D3D12_FEATURE_DATA_EXISTING_HEAPS","features":[303,350]},{"name":"D3D12_FEATURE_DATA_FEATURE_LEVELS","features":[396,350]},{"name":"D3D12_FEATURE_DATA_FORMAT_INFO","features":[350,391]},{"name":"D3D12_FEATURE_DATA_FORMAT_SUPPORT","features":[350,391]},{"name":"D3D12_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[350]},{"name":"D3D12_FEATURE_DATA_HARDWARE_COPY","features":[303,350]},{"name":"D3D12_FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS","features":[350,391]},{"name":"D3D12_FEATURE_DATA_PLACED_RESOURCE_SUPPORT_INFO","features":[303,350,391]},{"name":"D3D12_FEATURE_DATA_PREDICATION","features":[303,350]},{"name":"D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_SUPPORT","features":[350]},{"name":"D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPES","features":[350]},{"name":"D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPE_COUNT","features":[350]},{"name":"D3D12_FEATURE_DATA_QUERY_META_COMMAND","features":[350]},{"name":"D3D12_FEATURE_DATA_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_FEATURE_DATA_SERIALIZATION","features":[350]},{"name":"D3D12_FEATURE_DATA_SHADER_CACHE","features":[350]},{"name":"D3D12_FEATURE_DATA_SHADER_MODEL","features":[350]},{"name":"D3D12_FEATURE_DISPLAYABLE","features":[350]},{"name":"D3D12_FEATURE_EXISTING_HEAPS","features":[350]},{"name":"D3D12_FEATURE_FEATURE_LEVELS","features":[350]},{"name":"D3D12_FEATURE_FORMAT_INFO","features":[350]},{"name":"D3D12_FEATURE_FORMAT_SUPPORT","features":[350]},{"name":"D3D12_FEATURE_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[350]},{"name":"D3D12_FEATURE_HARDWARE_COPY","features":[350]},{"name":"D3D12_FEATURE_MULTISAMPLE_QUALITY_LEVELS","features":[350]},{"name":"D3D12_FEATURE_PLACED_RESOURCE_SUPPORT_INFO","features":[350]},{"name":"D3D12_FEATURE_PREDICATION","features":[350]},{"name":"D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_SUPPORT","features":[350]},{"name":"D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_TYPES","features":[350]},{"name":"D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_TYPE_COUNT","features":[350]},{"name":"D3D12_FEATURE_QUERY_META_COMMAND","features":[350]},{"name":"D3D12_FEATURE_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_FEATURE_SERIALIZATION","features":[350]},{"name":"D3D12_FEATURE_SHADER_CACHE","features":[350]},{"name":"D3D12_FEATURE_SHADER_MODEL","features":[350]},{"name":"D3D12_FENCE_FLAGS","features":[350]},{"name":"D3D12_FENCE_FLAG_NONE","features":[350]},{"name":"D3D12_FENCE_FLAG_NON_MONITORED","features":[350]},{"name":"D3D12_FENCE_FLAG_SHARED","features":[350]},{"name":"D3D12_FENCE_FLAG_SHARED_CROSS_ADAPTER","features":[350]},{"name":"D3D12_FILL_MODE","features":[350]},{"name":"D3D12_FILL_MODE_SOLID","features":[350]},{"name":"D3D12_FILL_MODE_WIREFRAME","features":[350]},{"name":"D3D12_FILTER","features":[350]},{"name":"D3D12_FILTER_ANISOTROPIC","features":[350]},{"name":"D3D12_FILTER_COMPARISON_ANISOTROPIC","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_ANISOTROPIC","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MAXIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MINIMUM_ANISOTROPIC","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MINIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MIN_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MIN_MAG_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[350]},{"name":"D3D12_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[350]},{"name":"D3D12_FILTER_REDUCTION_TYPE","features":[350]},{"name":"D3D12_FILTER_REDUCTION_TYPE_COMPARISON","features":[350]},{"name":"D3D12_FILTER_REDUCTION_TYPE_MASK","features":[350]},{"name":"D3D12_FILTER_REDUCTION_TYPE_MAXIMUM","features":[350]},{"name":"D3D12_FILTER_REDUCTION_TYPE_MINIMUM","features":[350]},{"name":"D3D12_FILTER_REDUCTION_TYPE_SHIFT","features":[350]},{"name":"D3D12_FILTER_REDUCTION_TYPE_STANDARD","features":[350]},{"name":"D3D12_FILTER_TYPE","features":[350]},{"name":"D3D12_FILTER_TYPE_LINEAR","features":[350]},{"name":"D3D12_FILTER_TYPE_MASK","features":[350]},{"name":"D3D12_FILTER_TYPE_POINT","features":[350]},{"name":"D3D12_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[350]},{"name":"D3D12_FLOAT32_MAX","features":[350]},{"name":"D3D12_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[350]},{"name":"D3D12_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR","features":[350]},{"name":"D3D12_FLOAT_TO_SRGB_EXPONENT_NUMERATOR","features":[350]},{"name":"D3D12_FLOAT_TO_SRGB_OFFSET","features":[350]},{"name":"D3D12_FLOAT_TO_SRGB_SCALE_1","features":[350]},{"name":"D3D12_FLOAT_TO_SRGB_SCALE_2","features":[350]},{"name":"D3D12_FLOAT_TO_SRGB_THRESHOLD","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_BACK_BUFFER_CAST","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_BLENDABLE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_BUFFER","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_CAST_WITHIN_BIT_LAYOUT","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_DECODER_OUTPUT","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_DEPTH_STENCIL","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_DISPLAY","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_IA_INDEX_BUFFER","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_IA_VERTEX_BUFFER","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_MIP","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_MULTISAMPLE_LOAD","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RENDERTARGET","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RESOLVE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_NONE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_RENDER_TARGET","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_GATHER","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_GATHER_COMPARISON","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_LOAD","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE_COMPARISON","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE_MONO_TEXT","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_SO_BUFFER","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURE1D","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURE2D","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURE3D","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURECUBE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_TYPED_UNORDERED_ACCESS_VIEW","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_VIDEO_ENCODER","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_VIDEO_PROCESSOR_INPUT","features":[350]},{"name":"D3D12_FORMAT_SUPPORT1_VIDEO_PROCESSOR_OUTPUT","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_MULTIPLANE_OVERLAY","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_NONE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_OUTPUT_MERGER_LOGIC_OP","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_SAMPLER_FEEDBACK","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_TILED","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_ADD","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_BITWISE_OPS","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_COMPARE_STORE_OR_COMPARE_EXCHANGE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_EXCHANGE","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_SIGNED_MIN_OR_MAX","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_UNSIGNED_MIN_OR_MAX","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_TYPED_LOAD","features":[350]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_TYPED_STORE","features":[350]},{"name":"D3D12_FTOI_INSTRUCTION_MAX_INPUT","features":[350]},{"name":"D3D12_FTOI_INSTRUCTION_MIN_INPUT","features":[350]},{"name":"D3D12_FTOU_INSTRUCTION_MAX_INPUT","features":[350]},{"name":"D3D12_FTOU_INSTRUCTION_MIN_INPUT","features":[350]},{"name":"D3D12_FUNCTION_DESC","features":[303,396,350]},{"name":"D3D12_GLOBAL_BARRIER","features":[350]},{"name":"D3D12_GLOBAL_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_FLAGS","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_FLAGS_DISABLE_STATE_TRACKING","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_FLAGS_NONE","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAGS","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAGS_VALID_MASK","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_GUARDED_VALIDATION_SHADERS","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_TRACKING_ONLY_SHADERS","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_UNGUARDED_VALIDATION_SHADERS","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_NONE","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_GUARDED_VALIDATION","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_NONE","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_STATE_TRACKING_ONLY","features":[350]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_UNGUARDED_VALIDATION","features":[350]},{"name":"D3D12_GPU_DESCRIPTOR_HANDLE","features":[350]},{"name":"D3D12_GPU_VIRTUAL_ADDRESS_AND_STRIDE","features":[350]},{"name":"D3D12_GPU_VIRTUAL_ADDRESS_RANGE","features":[350]},{"name":"D3D12_GPU_VIRTUAL_ADDRESS_RANGE_AND_STRIDE","features":[350]},{"name":"D3D12_GRAPHICS_PIPELINE_STATE_DESC","features":[303,350,391]},{"name":"D3D12_GRAPHICS_STATES","features":[350]},{"name":"D3D12_GRAPHICS_STATE_COMPUTE_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_GRAPHICS_STATE_DESCRIPTOR_HEAP","features":[350]},{"name":"D3D12_GRAPHICS_STATE_GRAPHICS_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_GRAPHICS_STATE_IA_INDEX_BUFFER","features":[350]},{"name":"D3D12_GRAPHICS_STATE_IA_PRIMITIVE_TOPOLOGY","features":[350]},{"name":"D3D12_GRAPHICS_STATE_IA_VERTEX_BUFFERS","features":[350]},{"name":"D3D12_GRAPHICS_STATE_NONE","features":[350]},{"name":"D3D12_GRAPHICS_STATE_OM_BLEND_FACTOR","features":[350]},{"name":"D3D12_GRAPHICS_STATE_OM_DEPTH_BOUNDS","features":[350]},{"name":"D3D12_GRAPHICS_STATE_OM_RENDER_TARGETS","features":[350]},{"name":"D3D12_GRAPHICS_STATE_OM_STENCIL_REF","features":[350]},{"name":"D3D12_GRAPHICS_STATE_PIPELINE_STATE","features":[350]},{"name":"D3D12_GRAPHICS_STATE_PREDICATION","features":[350]},{"name":"D3D12_GRAPHICS_STATE_RS_SCISSOR_RECTS","features":[350]},{"name":"D3D12_GRAPHICS_STATE_RS_VIEWPORTS","features":[350]},{"name":"D3D12_GRAPHICS_STATE_SAMPLE_POSITIONS","features":[350]},{"name":"D3D12_GRAPHICS_STATE_SO_TARGETS","features":[350]},{"name":"D3D12_GRAPHICS_STATE_VIEW_INSTANCE_MASK","features":[350]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_READS_PER_INST","features":[350]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_READ_PORTS","features":[350]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_REGISTER_COUNT","features":[350]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_COUNT","features":[350]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_GS_INPUT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_GS_INPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_GS_INPUT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_GS_INPUT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_GS_INPUT_REGISTER_VERTICES","features":[350]},{"name":"D3D12_GS_MAX_INSTANCE_COUNT","features":[350]},{"name":"D3D12_GS_MAX_OUTPUT_VERTEX_COUNT_ACROSS_INSTANCES","features":[350]},{"name":"D3D12_GS_OUTPUT_ELEMENTS","features":[350]},{"name":"D3D12_GS_OUTPUT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_GS_OUTPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_HEAP_DESC","features":[350]},{"name":"D3D12_HEAP_FLAGS","features":[350]},{"name":"D3D12_HEAP_FLAG_ALLOW_ALL_BUFFERS_AND_TEXTURES","features":[350]},{"name":"D3D12_HEAP_FLAG_ALLOW_DISPLAY","features":[350]},{"name":"D3D12_HEAP_FLAG_ALLOW_ONLY_BUFFERS","features":[350]},{"name":"D3D12_HEAP_FLAG_ALLOW_ONLY_NON_RT_DS_TEXTURES","features":[350]},{"name":"D3D12_HEAP_FLAG_ALLOW_ONLY_RT_DS_TEXTURES","features":[350]},{"name":"D3D12_HEAP_FLAG_ALLOW_SHADER_ATOMICS","features":[350]},{"name":"D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH","features":[350]},{"name":"D3D12_HEAP_FLAG_CREATE_NOT_RESIDENT","features":[350]},{"name":"D3D12_HEAP_FLAG_CREATE_NOT_ZEROED","features":[350]},{"name":"D3D12_HEAP_FLAG_DENY_BUFFERS","features":[350]},{"name":"D3D12_HEAP_FLAG_DENY_NON_RT_DS_TEXTURES","features":[350]},{"name":"D3D12_HEAP_FLAG_DENY_RT_DS_TEXTURES","features":[350]},{"name":"D3D12_HEAP_FLAG_HARDWARE_PROTECTED","features":[350]},{"name":"D3D12_HEAP_FLAG_NONE","features":[350]},{"name":"D3D12_HEAP_FLAG_SHARED","features":[350]},{"name":"D3D12_HEAP_FLAG_SHARED_CROSS_ADAPTER","features":[350]},{"name":"D3D12_HEAP_FLAG_TOOLS_USE_MANUAL_WRITE_TRACKING","features":[350]},{"name":"D3D12_HEAP_PROPERTIES","features":[350]},{"name":"D3D12_HEAP_SERIALIZATION_TIER","features":[350]},{"name":"D3D12_HEAP_SERIALIZATION_TIER_0","features":[350]},{"name":"D3D12_HEAP_SERIALIZATION_TIER_10","features":[350]},{"name":"D3D12_HEAP_TYPE","features":[350]},{"name":"D3D12_HEAP_TYPE_CUSTOM","features":[350]},{"name":"D3D12_HEAP_TYPE_DEFAULT","features":[350]},{"name":"D3D12_HEAP_TYPE_GPU_UPLOAD","features":[350]},{"name":"D3D12_HEAP_TYPE_READBACK","features":[350]},{"name":"D3D12_HEAP_TYPE_UPLOAD","features":[350]},{"name":"D3D12_HIT_GROUP_DESC","features":[350]},{"name":"D3D12_HIT_GROUP_TYPE","features":[350]},{"name":"D3D12_HIT_GROUP_TYPE_PROCEDURAL_PRIMITIVE","features":[350]},{"name":"D3D12_HIT_GROUP_TYPE_TRIANGLES","features":[350]},{"name":"D3D12_HIT_KIND","features":[350]},{"name":"D3D12_HIT_KIND_TRIANGLE_BACK_FACE","features":[350]},{"name":"D3D12_HIT_KIND_TRIANGLE_FRONT_FACE","features":[350]},{"name":"D3D12_HS_CONTROL_POINT_PHASE_INPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_HS_CONTROL_POINT_PHASE_OUTPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_HS_FORK_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[350]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COUNT","features":[350]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COUNT","features":[350]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[350]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_HS_JOIN_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[350]},{"name":"D3D12_HS_MAXTESSFACTOR_LOWER_BOUND","features":[350]},{"name":"D3D12_HS_MAXTESSFACTOR_UPPER_BOUND","features":[350]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[350]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COUNT","features":[350]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[350]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_SCALAR_COMPONENTS","features":[350]},{"name":"D3D12_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES","features":[350]},{"name":"D3D12_IA_DEFAULT_PRIMITIVE_TOPOLOGY","features":[350]},{"name":"D3D12_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES","features":[350]},{"name":"D3D12_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT","features":[350]},{"name":"D3D12_IA_INSTANCE_ID_BIT_COUNT","features":[350]},{"name":"D3D12_IA_INTEGER_ARITHMETIC_BIT_COUNT","features":[350]},{"name":"D3D12_IA_PATCH_MAX_CONTROL_POINT_COUNT","features":[350]},{"name":"D3D12_IA_PRIMITIVE_ID_BIT_COUNT","features":[350]},{"name":"D3D12_IA_VERTEX_ID_BIT_COUNT","features":[350]},{"name":"D3D12_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[350]},{"name":"D3D12_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[350]},{"name":"D3D12_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[350]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE","features":[350]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFF","features":[350]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFFFFFF","features":[350]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_DISABLED","features":[350]},{"name":"D3D12_INDEX_BUFFER_VIEW","features":[350,391]},{"name":"D3D12_INDIRECT_ARGUMENT_DESC","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_CONSTANT","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_CONSTANT_BUFFER_VIEW","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_MESH","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_RAYS","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DRAW","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DRAW_INDEXED","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_INDEX_BUFFER_VIEW","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_SHADER_RESOURCE_VIEW","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_UNORDERED_ACCESS_VIEW","features":[350]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_VERTEX_BUFFER_VIEW","features":[350]},{"name":"D3D12_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[350]},{"name":"D3D12_INFO_QUEUE_FILTER","features":[350]},{"name":"D3D12_INFO_QUEUE_FILTER_DESC","features":[350]},{"name":"D3D12_INPUT_CLASSIFICATION","features":[350]},{"name":"D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA","features":[350]},{"name":"D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA","features":[350]},{"name":"D3D12_INPUT_ELEMENT_DESC","features":[350,391]},{"name":"D3D12_INPUT_LAYOUT_DESC","features":[350,391]},{"name":"D3D12_INTEGER_DIVIDE_BY_ZERO_QUOTIENT","features":[350]},{"name":"D3D12_INTEGER_DIVIDE_BY_ZERO_REMAINDER","features":[350]},{"name":"D3D12_KEEP_RENDER_TARGETS_AND_DEPTH_STENCIL","features":[350]},{"name":"D3D12_KEEP_UNORDERED_ACCESS_VIEWS","features":[350]},{"name":"D3D12_LIBRARY_DESC","features":[350]},{"name":"D3D12_LIFETIME_STATE","features":[350]},{"name":"D3D12_LIFETIME_STATE_IN_USE","features":[350]},{"name":"D3D12_LIFETIME_STATE_NOT_IN_USE","features":[350]},{"name":"D3D12_LINEAR_GAMMA","features":[350]},{"name":"D3D12_LINE_RASTERIZATION_MODE","features":[350]},{"name":"D3D12_LINE_RASTERIZATION_MODE_ALIASED","features":[350]},{"name":"D3D12_LINE_RASTERIZATION_MODE_ALPHA_ANTIALIASED","features":[350]},{"name":"D3D12_LINE_RASTERIZATION_MODE_QUADRILATERAL_NARROW","features":[350]},{"name":"D3D12_LINE_RASTERIZATION_MODE_QUADRILATERAL_WIDE","features":[350]},{"name":"D3D12_LOCAL_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_LOGIC_OP","features":[350]},{"name":"D3D12_LOGIC_OP_AND","features":[350]},{"name":"D3D12_LOGIC_OP_AND_INVERTED","features":[350]},{"name":"D3D12_LOGIC_OP_AND_REVERSE","features":[350]},{"name":"D3D12_LOGIC_OP_CLEAR","features":[350]},{"name":"D3D12_LOGIC_OP_COPY","features":[350]},{"name":"D3D12_LOGIC_OP_COPY_INVERTED","features":[350]},{"name":"D3D12_LOGIC_OP_EQUIV","features":[350]},{"name":"D3D12_LOGIC_OP_INVERT","features":[350]},{"name":"D3D12_LOGIC_OP_NAND","features":[350]},{"name":"D3D12_LOGIC_OP_NOOP","features":[350]},{"name":"D3D12_LOGIC_OP_NOR","features":[350]},{"name":"D3D12_LOGIC_OP_OR","features":[350]},{"name":"D3D12_LOGIC_OP_OR_INVERTED","features":[350]},{"name":"D3D12_LOGIC_OP_OR_REVERSE","features":[350]},{"name":"D3D12_LOGIC_OP_SET","features":[350]},{"name":"D3D12_LOGIC_OP_XOR","features":[350]},{"name":"D3D12_MAG_FILTER_SHIFT","features":[350]},{"name":"D3D12_MAJOR_VERSION","features":[350]},{"name":"D3D12_MAX_BORDER_COLOR_COMPONENT","features":[350]},{"name":"D3D12_MAX_DEPTH","features":[350]},{"name":"D3D12_MAX_LIVE_STATIC_SAMPLERS","features":[350]},{"name":"D3D12_MAX_MAXANISOTROPY","features":[350]},{"name":"D3D12_MAX_MULTISAMPLE_SAMPLE_COUNT","features":[350]},{"name":"D3D12_MAX_POSITION_VALUE","features":[350]},{"name":"D3D12_MAX_ROOT_COST","features":[350]},{"name":"D3D12_MAX_SHADER_VISIBLE_DESCRIPTOR_HEAP_SIZE_TIER_1","features":[350]},{"name":"D3D12_MAX_SHADER_VISIBLE_DESCRIPTOR_HEAP_SIZE_TIER_2","features":[350]},{"name":"D3D12_MAX_SHADER_VISIBLE_SAMPLER_HEAP_SIZE","features":[350]},{"name":"D3D12_MAX_TEXTURE_DIMENSION_2_TO_EXP","features":[350]},{"name":"D3D12_MAX_VIEW_INSTANCE_COUNT","features":[350]},{"name":"D3D12_MEASUREMENTS_ACTION","features":[350]},{"name":"D3D12_MEASUREMENTS_ACTION_COMMIT_RESULTS","features":[350]},{"name":"D3D12_MEASUREMENTS_ACTION_COMMIT_RESULTS_HIGH_PRIORITY","features":[350]},{"name":"D3D12_MEASUREMENTS_ACTION_DISCARD_PREVIOUS","features":[350]},{"name":"D3D12_MEASUREMENTS_ACTION_KEEP_ALL","features":[350]},{"name":"D3D12_MEMCPY_DEST","features":[350]},{"name":"D3D12_MEMORY_POOL","features":[350]},{"name":"D3D12_MEMORY_POOL_L0","features":[350]},{"name":"D3D12_MEMORY_POOL_L1","features":[350]},{"name":"D3D12_MEMORY_POOL_UNKNOWN","features":[350]},{"name":"D3D12_MESH_SHADER_TIER","features":[350]},{"name":"D3D12_MESH_SHADER_TIER_1","features":[350]},{"name":"D3D12_MESH_SHADER_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE","features":[350]},{"name":"D3D12_MESSAGE_CALLBACK_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_CALLBACK_FLAG_NONE","features":[350]},{"name":"D3D12_MESSAGE_CALLBACK_IGNORE_FILTERS","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_APPLICATION_DEFINED","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_CLEANUP","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_COMPILATION","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_EXECUTION","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_INITIALIZATION","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_MISCELLANEOUS","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_SHADER","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_STATE_CREATION","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_STATE_GETTING","features":[350]},{"name":"D3D12_MESSAGE_CATEGORY_STATE_SETTING","features":[350]},{"name":"D3D12_MESSAGE_ID","features":[350]},{"name":"D3D12_MESSAGE_ID_ADD_TO_STATE_OBJECT_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_ALPHA_BLEND_FACTOR_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_RANGE_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_SUBRESOURCE_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DST_RANGE_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_ARCHITECTURE","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_SUBRESOURCE_RANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE_DIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_OFFSET_ALIGNMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE_DIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_RESOURCES","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_SUBRESOURCE_RANGES","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DST","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_SRC","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_SRC_RANGE_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_ZERO_DEPENDENCIES","features":[350]},{"name":"D3D12_MESSAGE_ID_BARRIER_INTEROP_INVALID_LAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_BARRIER_INTEROP_INVALID_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_BEGIN_END_EVENT_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_BEGIN_END_QUERY_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_BEGIN_EVENT","features":[350]},{"name":"D3D12_MESSAGE_ID_BUFFER_BARRIER_SUBREGION_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_BUNDLE_PIPELINE_STATE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CANNOT_ADD_TRACKED_WORKLOAD","features":[350]},{"name":"D3D12_MESSAGE_ID_CANNOT_CHANGE_COMMAND_RECORDER_TARGET_WHILE_RECORDING","features":[350]},{"name":"D3D12_MESSAGE_ID_CANNOT_CREATE_GRAPHICS_AND_VIDEO_COMMAND_RECORDER","features":[350]},{"name":"D3D12_MESSAGE_ID_CANNOT_EXECUTE_EMPTY_COMMAND_LIST","features":[350]},{"name":"D3D12_MESSAGE_ID_CANNOT_RESET_COMMAND_POOL_WITH_OPEN_COMMAND_LISTS","features":[350]},{"name":"D3D12_MESSAGE_ID_CANNOT_USE_COMMAND_RECORDER_WITHOUT_CURRENT_TARGET","features":[350]},{"name":"D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_DRIVER_REPORTED_ISSUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_MISMATCHINGCLEARVALUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CLEARRENDERTARGETVIEW_MISMATCHINGCLEARVALUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INCOMPATIBLE_WITH_STRUCTURED_BUFFERS","features":[350]},{"name":"D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INVALID_RESOURCE_PTR","features":[350]},{"name":"D3D12_MESSAGE_ID_CLEAR_UNORDERED_ACCESS_VIEW_INVALID_DESCRIPTOR_HANDLE","features":[350]},{"name":"D3D12_MESSAGE_ID_CLOSE_COMMAND_LIST_OPEN_QUERY","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CANNOT_RESET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CONTENTION","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET_BUNDLE","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_SYNC","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_USAGE_WITH_CREATECOMMANDLIST1_COMMAND_LIST","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_CLOSED","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DESCRIPTOR_TABLE_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ELEMENT_OFFSET_UNALIGNED","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_FORMAT_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_TOO_SMALL","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_OFFSET_UNALIGNED","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INVALID_PRIMITIVETOPOLOGY","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_RENDER_TARGET_DELETED","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_TOO_SMALL","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_STRIDE_UNALIGNED","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_MULTIPLE_SWAPCHAIN_BUFFER_REFERENCES","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_OPEN","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_PIPELINE_STATE_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_CONSTANT_BUFFER_VIEW_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_SHADER_RESOURCE_VIEW_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_UNORDERED_ACCESS_VIEW_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_SETRENDERTARGETS_INVALIDNUMRENDERTARGETS","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_RESOURCE_DIMENSION_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_SAMPLER_MODE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_SYNC","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_TOO_MANY_SWAPCHAIN_REFERENCES","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_POOL_SYNC","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_QUEUE_TOO_MANY_SWAPCHAIN_REFERENCES","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_RECORDER_CONTENTION","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_RECORDER_SUPPORT_FLAGS_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COMMAND_RECORDER_USAGE_WITH_CREATECOMMANDLIST_COMMAND_LIST","features":[350]},{"name":"D3D12_MESSAGE_ID_COMPUTE_ONLY_DEVICE_OPERATION_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_DSTRANGEOUTOFBOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDCOPYFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDDSTRESOURCEDIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDSRCRESOURCEDIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_DST_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_SRC_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLDST","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLSRC","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_SRCRANGEOUTOFBOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDDSTRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDSRCRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_DECODE_REFERENCE_ONLY_FLAG","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_NULLDST","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_NULLSRC","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_DSTREGIONOUTOFBOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_EMPTYBOX","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_FORMATMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDCOPYFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTCOORDINATES","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDIMENSIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDSPLACEDFOOTPRINTFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTOFFSET","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTPLACEMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCEDIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTROWPITCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTSUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCBOX","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDIMENSIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDSPLACEDFOOTPRINTFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCOFFSET","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCPLACEMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCEDIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCROWPITCH","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCSUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_DECODE_REFERENCE_ONLY_FLAG","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLDST","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLSRC","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_SRCREGIONOUTOFBOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPYTILEMAPPINGS_INVALID_PARAMETER","features":[350]},{"name":"D3D12_MESSAGE_ID_COPY_DESCRIPTORS_INVALID_RANGES","features":[350]},{"name":"D3D12_MESSAGE_ID_COPY_DESCRIPTORS_WRITE_ONLY_DESCRIPTOR","features":[350]},{"name":"D3D12_MESSAGE_ID_COPY_INVALIDLAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_COPY_ON_SAME_SUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_COPY_RAYTRACING_ACCELERATION_STRUCTURE_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_MULTITHREADING","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER1","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER10","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER11","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER12","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER13","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER14","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER15","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER2","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER3","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER4","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER5","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER6","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER7","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER8","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER9","features":[350]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_THIS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOPALPHA_WARNING","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOP_WARNING","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDLOGICOPS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMMANDLIST_NULL_COMMANDALLOCATOR","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMMANDSIGNATURE_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_CS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_INVALID_SHADER","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_MISSING_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_DEPTHBOUNDSTEST_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INDEPENDENT_MASKS_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEVICE_DEBUG_LAYER_STARTUP_OPTIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEVICE_INVALIDARGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDEVICE_WARNING","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_ALL_RENDER_TARGETS_HAVE_UNKNOWN_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_NOT_MS_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DEPTHSTENCILVIEW_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_INPUT_PRIMITIVE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_CONTROL_POINT_COUNT_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_TESSELLATOR_DOMAIN_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_XOR_DS_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_SHADER_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_INDEX_BUFFER_PROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_PRIMITIVETOPOLOGY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_RENDER_TARGET_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SAMPLE_DESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SYSTEMVALUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_FORCED_SAMPLE_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_METADATA_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_NOT_PS_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_PSO_DESC_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_LOGIC_OPS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_POSITION_NOT_PRESENT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_RT_OUTPUT_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_TYPE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RENDERTARGETVIEW_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RENDER_TARGET_WRONG_WRITE_MASK","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RTV_FORMAT_NOT_UNKNOWN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RUNTIME_INTERNAL_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_COMPONENTTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_HS_DS_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_MINPRECISION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERINDEX","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERMASK","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SYSTEMVALUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_MODEL_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VERTEX_SHADER_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VIEW_INSTANCING_VERTEX_SIZE_EXCEEDED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VS_ROOT_SIGNATURE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDALIGNMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDARG_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDHEAPTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDMISCFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDPROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDSIZE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_NULLDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_OUTOFMEMORY_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDHEAPTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMEMORYPOOL","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMISCFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_GROUPSHAREDEXCEEDSMAXSIZE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_MISMATCHEDASMSPAYLOADSIZE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTPUTEXCEEDSMAXSIZE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_TOPOLOGY_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_ADAPTERVERSIONMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_DRIVERVERSIONMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_INVALIDLIBRARYBLOB","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBADAPTERMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDESCMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDRIVERVERSIONMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBIGNORED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CANNOT_DEDUCE_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_DUPLICATE_SUBOBJECT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALIDCACHEDBLOB","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_STREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_MS_INCOMPLETE_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_UNKNOWN_SUBOBJECT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_ZERO_SIZE_STREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_DIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_OFFSET","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_DIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_BUFFER","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_RESOURCE_DESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_OUTOFMEMORY_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEQUERY_HEAP_COPY_QUEUE_TIMESTAMPS_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEQUERY_HEAP_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEQUERY_HEAP_VIDEO_DECODE_STATISTICS_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFORCEDSAMPLECOUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_CONSERVATIVERASTERMODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_LINERASTERIZATIONMODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_NON_WHOLE_DYNAMIC_DEPTH_BIAS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDPLANESLICE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDVIDEOPLANESLICE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDARG_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPMISCFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPPROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAPPROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLRESOURCEPROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_OUTOFMEMORY_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPMISCFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDMEMORYPOOL","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_CLEARVALUEDENORMFLUSH","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDALIGNMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDALIGNMENT_SMALLRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDARG_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUEFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONALITY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDLAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMIPLEVELS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMISCFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDSAMPLEDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_OUTOFMEMORY_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_STATE_IGNORED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDCLEARVALUEFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDDIMENSIONALITY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDLAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_ALREADYOPEN","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_DISABLED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_INVALIDARGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDPLANESLICE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDVIDEOPLANESLICE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHADER_INVALIDBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHAREDHEAP_INVALIDFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDPLANESLICE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDVIDEOPLANESLICE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDALLOCATOR","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDLIST12","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDPOOL","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDRECORDER","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_ALLOCATOR_VIDEO_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE_FOR_FEATURE_LEVEL","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_VIDEO_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_POOL_INVALID_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_HARDWARE_SUPPORT_FOR_GLOBAL_REALTIME","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_PRIVILEGE_FOR_GLOBAL_REALTIME","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_SUPPORT_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_MORE_RECORDERS_THAN_LOGICAL_PROCESSORS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_VIDEO_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_DESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION_POLICY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_DESCRIPTORHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_INVALID_DESC","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_LARGE_NUM_DESCRIPTORS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_FENCE_INVALID_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_HEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_LIBRARY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_LIFETIMETRACKER","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_META_COMMAND","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_MONITOREDFENCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_PIPELINELIBRARY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_PIPELINESTATE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_QUERYHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_PRIORITY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_VIDEO_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOTSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_BLOB_NOT_FOUND","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_DESERIALIZE_FAILED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_INVALID_CONFIGURATION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_SUPPORTED_ON_DEVICE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_UNIQUE_IN_DXIL_LIBRARY","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_UNBOUNDED_STATIC_DESCRIPTORS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_SAMPLER_COMPARISON_FUNC_IGNORED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_SAMPLER_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_SHADERCACHESESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_STATE_OBJECT_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_TRACKEDWORKLOAD","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_UNORDEREDACCESS_VIEW_INVALID_COUNTER_USAGE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODER","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODERHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODESTREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODER","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODERHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOEXTENSIONCOMMAND","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONESTIMATOR","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONVECTORHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSOR","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSSTREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_DECODER_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_FAILURE","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_UNSUPPORTED_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_UNSUPPORTED_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_PROCESSOR_CAPS_FAILURE","features":[350]},{"name":"D3D12_MESSAGE_ID_D3D12_MESSAGES_END","features":[350]},{"name":"D3D12_MESSAGE_ID_DATA_STATIC_DESCRIPTOR_INVALID_DATA_CHANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_DATA_STATIC_WHILE_SET_AT_EXECUTE_DESCRIPTOR_INVALID_DATA_CHANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_DECODE_FRAME_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_DEPRECATED_API","features":[350]},{"name":"D3D12_MESSAGE_ID_DEPTH_STENCIL_FORMAT_MISMATCH_PIPELINE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_DEPTH_STENCIL_SAMPLE_DESC_MISMATCH_PIPELINE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESCRIPTOR_HANDLE_WITH_INVALID_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESCRIPTOR_HEAP_NOT_SHADER_VISIBLE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROYOWNEDOBJECT_OBJECTNOTOWNED","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDALLOCATOR","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDLIST12","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDPOOL","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDRECORDER","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION_POLICY","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_DESCRIPTORHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_HEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_LIBRARY","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_LIFETIMETRACKER","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_META_COMMAND","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_MONITOREDFENCE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_PIPELINELIBRARY","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_PIPELINESTATE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_PROTECTED_RESOURCE_SESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_QUERYHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_ROOTSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_SHADERCACHESESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_TRACKEDWORKLOAD","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODER","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODERHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODESTREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODER","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODERHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOEXTENSIONCOMMAND","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONESTIMATOR","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONVECTORHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSOR","features":[350]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSSTREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_EMPTYRECT","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDSOURCERECT","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_UAVSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEEXTENSIONSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UAVSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_UAVSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_UAVSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_UAVSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_UAVSNOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATE_SHARED_HANDLE_INVALIDARG","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_OPEN_SHARED_HANDLE_ACCESS_DENIED","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT","features":[350]},{"name":"D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT","features":[350]},{"name":"D3D12_MESSAGE_ID_DISCARD_INVALID_SUBRESOURCE_RANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_DISCARD_NO_RECTS_FOR_NON_TEXTURE2D","features":[350]},{"name":"D3D12_MESSAGE_ID_DISCARD_ONE_SUBRESOURCE_FOR_MIPS_WITH_RECTS","features":[350]},{"name":"D3D12_MESSAGE_ID_DISPATCH_RAYS_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_DRAW_EMPTY_SCISSOR_RECTANGLE","features":[350]},{"name":"D3D12_MESSAGE_ID_DRAW_POTENTIALLY_OUTSIDE_OF_VALID_RENDER_AREA","features":[350]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_FLAG_MISSING","features":[350]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_NO_PIPELINE","features":[350]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_FLAG_MISSING","features":[350]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_NO_PIPELINE","features":[350]},{"name":"D3D12_MESSAGE_ID_EMIT_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_EMPTY_DISPATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_EMPTY_ROOT_DESCRIPTOR_TABLE","features":[350]},{"name":"D3D12_MESSAGE_ID_ENCODE_FRAME_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_ENCODE_FRAME_UNSUPPORTED_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_END_EVENT","features":[350]},{"name":"D3D12_MESSAGE_ID_ENHANCED_BARRIERS_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_ENQUEUE_MAKE_RESIDENT_INVALID_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_ESTIMATE_MOTION_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_EVICT_NULLOBJECTARRAY","features":[350]},{"name":"D3D12_MESSAGE_ID_EVICT_UNDERFLOW","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_BUNDLENOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_COMMANDLISTMISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_FAILEDCOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_GPU_WRITTEN_READBACK_RESOURCE_MAPPED","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_OPENCOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_WRONGSWAPCHAINBUFFERREFERENCE","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_DESCRIPTOR_HEAP_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_OPEN_BUNDLE","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_STATIC_DESCRIPTOR_DATA_STATIC_NOT_SET","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTE_INDIRECT_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_EXECUTE_INDIRECT_ZERO_COMMAND_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_FENCE_INVALIDOPERATION","features":[350]},{"name":"D3D12_MESSAGE_ID_GENERIC_DEVICE_OPERATION_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_GEOMETRY_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE","features":[350]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDBASEOFFSET","features":[350]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDSUBRESOURCERANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_UNSUPPORTED_BUFFER_WIDTH","features":[350]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDBASEOFFSET","features":[350]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDSUBRESOURCERANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_INVALIDHEAPTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_UNRECOGNIZEDHEAPTYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_HEAP_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_RESOURCE_DIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_GETHEAPPROPERTIES_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_GETPRIVATEDATA_MOREDATA","features":[350]},{"name":"D3D12_MESSAGE_ID_GETRESOURCEALLOCATIONINFO_INVALIDRDESCS","features":[350]},{"name":"D3D12_MESSAGE_ID_GET_PIPELINE_STACK_SIZE_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_GET_PROGRAM_IDENTIFIER_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_GET_RAYTRACING_ACCELERATION_STRUCTURE_PREBUILD_INFO_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_SIZE_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_GET_SHADER_STACK_SIZE_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_GET_WORK_GRAPH_PROPERTIES_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_HEAP_INDEX_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TABLE_REGISTER_INDEX_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TYPE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_UNINITIALIZED","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INCOMPATIBLE_RESOURCE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INCOMPATIBLE_TEXTURE_LAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INVALID_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_ACCESS_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_STATE_IMPRECISE","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_ARGUMENT_UNINITIALIZED","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_DESCRIPTOR_ACCESS_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SAMPLER_MODE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SRV_RESOURCE_DIMENSION_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UAV_RESOURCE_DIMENSION_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_GRAPHICS_PIPELINE_STATE_DESC_ZERO_SAMPLE_MASK","features":[350]},{"name":"D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_HAS_NO_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_INTERSECTS_MULTIPLE_BUFFERS","features":[350]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_ACCESS","features":[350]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_LAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_RESOURCE_DIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_SYNC","features":[350]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_VALUES","features":[350]},{"name":"D3D12_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR","features":[350]},{"name":"D3D12_MESSAGE_ID_INDEPENDENT_STENCIL_REF_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_INVALID_BUNDLE_API","features":[350]},{"name":"D3D12_MESSAGE_ID_INVALID_CAST_TARGET","features":[350]},{"name":"D3D12_MESSAGE_ID_INVALID_DESCRIPTOR_HANDLE","features":[350]},{"name":"D3D12_MESSAGE_ID_INVALID_NODE_INDEX","features":[350]},{"name":"D3D12_MESSAGE_ID_INVALID_SUBRESOURCE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_INVALID_USE_OF_NON_RESIDENT_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_INVALID_VIDEO_EXTENSION_COMMAND_ID","features":[350]},{"name":"D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDKEY","features":[350]},{"name":"D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDOBJECT","features":[350]},{"name":"D3D12_MESSAGE_ID_KEYEDMUTEX_WRONGSTATE","features":[350]},{"name":"D3D12_MESSAGE_ID_LEGACY_BARRIER_VALIDATION_FORCED_ON","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDALLOCATOR","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDLIST12","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDPOOL","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDRECORDER","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION_POLICY","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_DESCRIPTORHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_DEVICE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_HEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_LIBRARY","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_LIFETIMETRACKER","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_META_COMMAND","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_MONITOREDFENCE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_OBJECT_SUMMARY","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_PIPELINELIBRARY","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_PIPELINESTATE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_PROTECTED_RESOURCE_SESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_QUERYHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_ROOTSIGNATURE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_SHADERCACHESESSION","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_SWAPCHAIN","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_TRACKEDWORKLOAD","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODER","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODERHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODESTREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODER","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODERHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOEXTENSIONCOMMAND","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONESTIMATOR","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONVECTORHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDLIST","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDQUEUE","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSOR","features":[350]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSSTREAM","features":[350]},{"name":"D3D12_MESSAGE_ID_LOADPIPELINE_INVALIDDESC","features":[350]},{"name":"D3D12_MESSAGE_ID_LOADPIPELINE_NAMENOTFOUND","features":[350]},{"name":"D3D12_MESSAGE_ID_MAKERESIDENT_NULLOBJECTARRAY","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDARG_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDDATAPOINTER","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDRANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDSUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_INVALID_NULLRANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_MAP_OUTOFMEMORY_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_MESH_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE","features":[350]},{"name":"D3D12_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_FAILED_ENUMERATION","features":[350]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_ID_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_INVALID_GPU_VIRTUAL_ADDRESS","features":[350]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_PARAMETER_SIZE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_UNSUPPORTED_PARAMS","features":[350]},{"name":"D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOADS","features":[350]},{"name":"D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOAD_PAIRS","features":[350]},{"name":"D3D12_MESSAGE_ID_NODE_MASK_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_NONNORMALIZED_COORDINATE_SAMPLING_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_NONZERO_SAMPLER_FEEDBACK_MIP_REGION_WITH_INCOMPATIBLE_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_NON_OPTIMAL_BARRIER_ONLY_EXECUTE_COMMAND_LISTS","features":[350]},{"name":"D3D12_MESSAGE_ID_NON_RETAIL_SHADER_MODEL_WONT_VALIDATE","features":[350]},{"name":"D3D12_MESSAGE_ID_NO_COMPUTE_API_SUPPORT","features":[350]},{"name":"D3D12_MESSAGE_ID_NO_GRAPHICS_API_SUPPORT","features":[350]},{"name":"D3D12_MESSAGE_ID_NO_VIDEO_API_SUPPORT","features":[350]},{"name":"D3D12_MESSAGE_ID_OBJECT_ACCESSED_WHILE_STILL_IN_USE","features":[350]},{"name":"D3D12_MESSAGE_ID_OBJECT_DELETED_WHILE_STILL_IN_USE","features":[350]},{"name":"D3D12_MESSAGE_ID_OBJECT_EVICTED_WHILE_STILL_IN_USE","features":[350]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDADDRESS","features":[350]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDARG_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDHANDLE","features":[350]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_OUTOFMEMORY_RETURN","features":[350]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_OUT_OF_BOUNDS_BARRIER_SUBRESOURCE_RANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_OUT_OF_ORDER_TRACKED_WORKLOAD_PAIR","features":[350]},{"name":"D3D12_MESSAGE_ID_OVERSIZED_DISPATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_PIPELINELIBRARY_SERIALIZE_NOTENOUGHMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_PIPELINE_STATE_TYPE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_PIX_EVENT_UNDERFLOW","features":[350]},{"name":"D3D12_MESSAGE_ID_POSSIBLE_INVALID_USE_OF_NON_RESIDENT_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_POSSIBLY_INVALID_SUBRESOURCE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_PRIMITIVE_TOPOLOGY_MISMATCH_PIPELINE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_PRIMITIVE_TOPOLOGY_TRIANGLE_FANS_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_PROBABLE_PIX_EVENT_LEAK","features":[350]},{"name":"D3D12_MESSAGE_ID_PROCESS_FRAME_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_PROGRAMMABLE_MSAA_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_PROTECTED_RESOURCE_SESSION_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_EMPTYBOX","features":[350]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDBOX","features":[350]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDSUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_RECREATEAT_INSUFFICIENT_SUPPORT","features":[350]},{"name":"D3D12_MESSAGE_ID_RECREATEAT_INVALID_TARGET","features":[350]},{"name":"D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDOBJECT","features":[350]},{"name":"D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDSIZE","features":[350]},{"name":"D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_UNRECOGNIZEDPROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_CLOSE_COMMAND_LIST","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_END_WITHOUT_BEGIN","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_NEST_RENDER_PASSES","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_COMMANDLIST_INVALID_END_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_COMMANDLIST_INVALID_START_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_DISALLOWED_API_CALLED","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_GPU_WORK_WHILE_SUSPENDED","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_INVALID_RESOURCE_BARRIER","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_LOCAL_DEPTH_STENCIL_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_LOCAL_PRESERVE_RENDER_PARAMETERS_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_ACCESS","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_LOCAL_PRESERVE_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_NO_ACCESS","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_SUSPEND_RESUME","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_NO_PRIOR_SUSPEND_WITHIN_EXECUTECOMMANDLISTS","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_NO_SUBSEQUENT_RESUME_WITHIN_EXECUTECOMMANDLISTS","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_UNSUPPORTED_RESOLVE","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_TARGET_FORMAT_MISMATCH_PIPELINE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_RENDER_TARGET_SAMPLE_DESC_MISMATCH_PIPELINE_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCEREGION_INVALID_RECT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDDSTRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDSRCRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SAMPLE_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SUBRESOURCE_INDEX","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLDST","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLSRC","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_FLAGS_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_INVALID_MIP_LEVEL_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_ARRAY_SIZE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_INVALID_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_UNSUPPORTED_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVE_QUERY_DATA_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOLVE_QUERY_INVALID_QUERY_STATE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_BEFORE_AFTER_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_DUPLICATE_SUBRESOURCE_TRANSITIONS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINATION","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINED_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMMAND_LIST_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAG","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS_FOR_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_HEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SPLIT_BARRIER","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MATCHING_STATES","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_BEGIN_END","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_COMMAND_LIST_TYPE","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_MISC_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISSING_BIND_FLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_NULL_POINTER","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_POSSIBLE_BEFORE_AFTER_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_RESERVED_BITS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_SAMPLE_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_BEGIN","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_END","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_ZERO_BARRIERS","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_FORMAT_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY","features":[350]},{"name":"D3D12_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED","features":[350]},{"name":"D3D12_MESSAGE_ID_RSSETSHADINGRATEIMAGE_REQUIRES_TIER_2","features":[350]},{"name":"D3D12_MESSAGE_ID_RSSETSHADINGRATE_REQUIRES_TIER_1","features":[350]},{"name":"D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_COMBINER","features":[350]},{"name":"D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_SHADING_RATE","features":[350]},{"name":"D3D12_MESSAGE_ID_RSSETSHADING_RATE_SHADING_RATE_NOT_PERMITTED_BY_CAP","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_DEFERRED","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMCLEAR","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMFIRSTUSE","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_MISMATCHING_TARGETED_RESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_NULL_ARGUMENTS","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_REQUIRES_FEEDBACK_MAP_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_DIMENSION","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_LAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_MIP_REGION","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_QUALITY","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_REQUIRES_UNORDERED_ACCESS_FLAG","features":[350]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_UAV_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY","features":[350]},{"name":"D3D12_MESSAGE_ID_SETDEPTHBOUNDS_INVALIDARGS","features":[350]},{"name":"D3D12_MESSAGE_ID_SETEVENTONMULTIPLEFENCECOMPLETION_INVALIDFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS","features":[350]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA","features":[350]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_NO_ACCESS","features":[350]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY","features":[350]},{"name":"D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PAGEABLE","features":[350]},{"name":"D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PRIORITY","features":[350]},{"name":"D3D12_MESSAGE_ID_SETSAMPLEPOSITIONS_INVALIDARGS","features":[350]},{"name":"D3D12_MESSAGE_ID_SETTING_SHADING_RATE_FROM_MS_REQUIRES_CAPABILITY","features":[350]},{"name":"D3D12_MESSAGE_ID_SETVIEWINSTANCEMASK_INVALIDARGS","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_BACKGROUND_PROCESSING_MODE_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_DESCRIPTOR_HEAP_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_DESCRIPTOR_TABLE_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID_DESC","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_PIPELINE_STACK_SIZE_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_PREDICATION_INVALID_PARAMETERS","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_PROGRAM_ERROR","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_RENDER_TARGETS_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_BUFFER_VIEW_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_SHADER_RESOURCE_VIEW_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_UNORDERED_ACCESS_VIEW_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_SCISSOR_RECTS_INVALID_RECT","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID_DESC","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID","features":[350]},{"name":"D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID_DESC","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_DEVELOPERMODE","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_IGNOREDFLAG","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_INVALIDFLAGS","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_SHADERCACHECLEAR_NOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_STATEALREADYSET","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_CORRUPT","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_DISABLED","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_FINDVALUE_NOTFOUND","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_SHADERCACHEDELETE_NOTSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_ALREADYPRESENT","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_CACHEFULL","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_HASHCOLLISION","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_ARRAY_SIZE","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_MIP_LEVEL","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_COUNT","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_QUALITY","features":[350]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_SOURCE_REQUIRES_DIMENSION_TEXTURE2D","features":[350]},{"name":"D3D12_MESSAGE_ID_STATIC_DESCRIPTOR_INVALID_DESCRIPTOR_CHANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_STOREPIPELINE_DUPLICATENAME","features":[350]},{"name":"D3D12_MESSAGE_ID_STOREPIPELINE_NONAME","features":[350]},{"name":"D3D12_MESSAGE_ID_STRING_FROM_APPLICATION","features":[350]},{"name":"D3D12_MESSAGE_ID_TEXTURE_BARRIER_SUBRESOURCES_OUT_OF_BOUNDS","features":[350]},{"name":"D3D12_MESSAGE_ID_TIMESTAMPS_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_TOO_MANY_NODES_SPECIFIED","features":[350]},{"name":"D3D12_MESSAGE_ID_TRACKED_WORKLOAD_COMMAND_QUEUE_MISMATCH","features":[350]},{"name":"D3D12_MESSAGE_ID_TRACKED_WORKLOAD_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_UNINITIALIZED_META_COMMAND","features":[350]},{"name":"D3D12_MESSAGE_ID_UNKNOWN","features":[350]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDRANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDSUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALID_NULLRANGE","features":[350]},{"name":"D3D12_MESSAGE_ID_UNMAP_RANGE_NOT_EMPTY","features":[350]},{"name":"D3D12_MESSAGE_ID_UNSUPPORTED_BARRIER_LAYOUT","features":[350]},{"name":"D3D12_MESSAGE_ID_UNUSED_CROSS_EXECUTE_SPLIT_BARRIER","features":[350]},{"name":"D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_INVALID_PARAMETER","features":[350]},{"name":"D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_POSSIBLY_MISMATCHING_PROPERTIES","features":[350]},{"name":"D3D12_MESSAGE_ID_USE_OF_ZERO_REFCOUNT_OBJECT","features":[350]},{"name":"D3D12_MESSAGE_ID_VARIABLE_SHADING_RATE_NOT_ALLOWED_WITH_TIR","features":[350]},{"name":"D3D12_MESSAGE_ID_VERTEX_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_ESTIMATOR_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_DECODE_FRAME_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_INVALID_INPUT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_EXTENSION_COMMAND_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_PROCESS_FRAMES_INVALID_ARGUMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_INVALID_INPUT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_UNSUPPORTED_FORMAT","features":[350]},{"name":"D3D12_MESSAGE_ID_VIEW_INSTANCING_INVALIDARGS","features":[350]},{"name":"D3D12_MESSAGE_ID_VIEW_INSTANCING_UNSUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_VRS_SUM_COMBINER_REQUIRES_CAPABILITY","features":[350]},{"name":"D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_SIGNAL","features":[350]},{"name":"D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_WAIT","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_ALIGNMENT","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_DEST","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_MODE","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_NOT_SUPPORTED","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_EMPTYBOX","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDBOX","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDHEAP","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDSUBRESOURCE","features":[350]},{"name":"D3D12_MESSAGE_ID_WRITE_COMBINE_PERFORMANCE_WARNING","features":[350]},{"name":"D3D12_MESSAGE_ID_WRONG_COMMAND_ALLOCATOR_TYPE","features":[350]},{"name":"D3D12_MESSAGE_SEVERITY","features":[350]},{"name":"D3D12_MESSAGE_SEVERITY_CORRUPTION","features":[350]},{"name":"D3D12_MESSAGE_SEVERITY_ERROR","features":[350]},{"name":"D3D12_MESSAGE_SEVERITY_INFO","features":[350]},{"name":"D3D12_MESSAGE_SEVERITY_MESSAGE","features":[350]},{"name":"D3D12_MESSAGE_SEVERITY_WARNING","features":[350]},{"name":"D3D12_META_COMMAND_DESC","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_DESC","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_FLAGS","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_FLAG_INPUT","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_FLAG_OUTPUT","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE_CREATION","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE_EXECUTION","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE_INITIALIZATION","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_CPU_DESCRIPTOR_HANDLE_HEAP_TYPE_CBV_SRV_UAV","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_FLOAT","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_GPU_DESCRIPTOR_HANDLE_HEAP_TYPE_CBV_SRV_UAV","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_GPU_VIRTUAL_ADDRESS","features":[350]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_UINT64","features":[350]},{"name":"D3D12_MINOR_VERSION","features":[350]},{"name":"D3D12_MIN_BORDER_COLOR_COMPONENT","features":[350]},{"name":"D3D12_MIN_DEPTH","features":[350]},{"name":"D3D12_MIN_FILTER_SHIFT","features":[350]},{"name":"D3D12_MIN_MAXANISOTROPY","features":[350]},{"name":"D3D12_MIP_FILTER_SHIFT","features":[350]},{"name":"D3D12_MIP_LOD_BIAS_MAX","features":[350]},{"name":"D3D12_MIP_LOD_BIAS_MIN","features":[350]},{"name":"D3D12_MIP_LOD_FRACTIONAL_BIT_COUNT","features":[350]},{"name":"D3D12_MIP_LOD_RANGE_BIT_COUNT","features":[350]},{"name":"D3D12_MIP_REGION","features":[350]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAGS","features":[350]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAG_ALL","features":[350]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAG_ANY","features":[350]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAG_NONE","features":[350]},{"name":"D3D12_MULTISAMPLE_ANTIALIAS_LINE_WIDTH","features":[350]},{"name":"D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_NONE","features":[350]},{"name":"D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_TILED_RESOURCE","features":[350]},{"name":"D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS","features":[350]},{"name":"D3D12_NODE_MASK","features":[350]},{"name":"D3D12_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT","features":[350]},{"name":"D3D12_OS_RESERVED_REGISTER_SPACE_VALUES_END","features":[350]},{"name":"D3D12_OS_RESERVED_REGISTER_SPACE_VALUES_START","features":[350]},{"name":"D3D12_PACKED_MIP_INFO","features":[350]},{"name":"D3D12_PACKED_TILE","features":[350]},{"name":"D3D12_PARAMETER_DESC","features":[396,350]},{"name":"D3D12_PIPELINE_STATE_FLAGS","features":[350]},{"name":"D3D12_PIPELINE_STATE_FLAG_DYNAMIC_DEPTH_BIAS","features":[350]},{"name":"D3D12_PIPELINE_STATE_FLAG_DYNAMIC_INDEX_BUFFER_STRIP_CUT","features":[350]},{"name":"D3D12_PIPELINE_STATE_FLAG_NONE","features":[350]},{"name":"D3D12_PIPELINE_STATE_FLAG_TOOL_DEBUG","features":[350]},{"name":"D3D12_PIPELINE_STATE_STREAM_DESC","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_AS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_BLEND","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_CACHED_PSO","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_CS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL1","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL2","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL_FORMAT","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_FLAGS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_GS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_HS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_IB_STRIP_CUT_VALUE","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_INPUT_LAYOUT","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_MAX_VALID","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_MS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_NODE_MASK","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_PRIMITIVE_TOPOLOGY","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_PS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER1","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER2","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RENDER_TARGET_FORMATS","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_SAMPLE_DESC","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_SAMPLE_MASK","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_STREAM_OUTPUT","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_VIEW_INSTANCING","features":[350]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_VS","features":[350]},{"name":"D3D12_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[350]},{"name":"D3D12_PLACED_SUBRESOURCE_FOOTPRINT","features":[350,391]},{"name":"D3D12_PREDICATION_OP","features":[350]},{"name":"D3D12_PREDICATION_OP_EQUAL_ZERO","features":[350]},{"name":"D3D12_PREDICATION_OP_NOT_EQUAL_ZERO","features":[350]},{"name":"D3D12_PREVIEW_SDK_VERSION","features":[350]},{"name":"D3D12_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[350]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE","features":[350]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_LINE","features":[350]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_PATCH","features":[350]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_POINT","features":[350]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE","features":[350]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_UNDEFINED","features":[350]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER","features":[350]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_1","features":[350]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_2","features":[350]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_PROTECTED_RESOURCES_SESSION_HARDWARE_PROTECTED","features":[350]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_DESC","features":[350]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_DESC1","features":[350]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_FLAGS","features":[350]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_FLAG_NONE","features":[350]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS","features":[350]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAG_NONE","features":[350]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAG_SUPPORTED","features":[350]},{"name":"D3D12_PROTECTED_SESSION_STATUS","features":[350]},{"name":"D3D12_PROTECTED_SESSION_STATUS_INVALID","features":[350]},{"name":"D3D12_PROTECTED_SESSION_STATUS_OK","features":[350]},{"name":"D3D12_PS_CS_UAV_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_PS_CS_UAV_REGISTER_COUNT","features":[350]},{"name":"D3D12_PS_CS_UAV_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_PS_CS_UAV_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_PS_FRONTFACING_DEFAULT_VALUE","features":[350]},{"name":"D3D12_PS_FRONTFACING_FALSE_VALUE","features":[350]},{"name":"D3D12_PS_FRONTFACING_TRUE_VALUE","features":[350]},{"name":"D3D12_PS_INPUT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_PS_INPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_PS_INPUT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_PS_INPUT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[350]},{"name":"D3D12_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_PS_OUTPUT_DEPTH_REGISTER_COUNT","features":[350]},{"name":"D3D12_PS_OUTPUT_MASK_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_PS_OUTPUT_MASK_REGISTER_COUNT","features":[350]},{"name":"D3D12_PS_OUTPUT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_PS_OUTPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[350]},{"name":"D3D12_QUERY_DATA_PIPELINE_STATISTICS","features":[350]},{"name":"D3D12_QUERY_DATA_PIPELINE_STATISTICS1","features":[350]},{"name":"D3D12_QUERY_DATA_SO_STATISTICS","features":[350]},{"name":"D3D12_QUERY_HEAP_DESC","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE_OCCLUSION","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE_SO_STATISTICS","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE_TIMESTAMP","features":[350]},{"name":"D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS","features":[350]},{"name":"D3D12_QUERY_TYPE","features":[350]},{"name":"D3D12_QUERY_TYPE_BINARY_OCCLUSION","features":[350]},{"name":"D3D12_QUERY_TYPE_OCCLUSION","features":[350]},{"name":"D3D12_QUERY_TYPE_PIPELINE_STATISTICS","features":[350]},{"name":"D3D12_QUERY_TYPE_PIPELINE_STATISTICS1","features":[350]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM0","features":[350]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM1","features":[350]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM2","features":[350]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM3","features":[350]},{"name":"D3D12_QUERY_TYPE_TIMESTAMP","features":[350]},{"name":"D3D12_QUERY_TYPE_VIDEO_DECODE_STATISTICS","features":[350]},{"name":"D3D12_RANGE","features":[350]},{"name":"D3D12_RANGE_UINT64","features":[350]},{"name":"D3D12_RASTERIZER_DESC","features":[303,350]},{"name":"D3D12_RASTERIZER_DESC1","features":[303,350]},{"name":"D3D12_RASTERIZER_DESC2","features":[303,350]},{"name":"D3D12_RAW_UAV_SRV_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_RAYTRACING_AABB","features":[350]},{"name":"D3D12_RAYTRACING_AABB_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAGS","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_COMPACTION","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_MINIMIZE_MEMORY","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_NONE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PERFORM_UPDATE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_BUILD","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_TRACE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_CLONE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_COMPACT","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_DESERIALIZE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_SERIALIZE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_VISUALIZATION_DECODE_FOR_TOOLS","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE_DESC","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_CURRENT_SIZE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_CURRENT_SIZE_DESC","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_DESC","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION_DESC","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TOOLS_VISUALIZATION","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TOOLS_VISUALIZATION_DESC","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TYPE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_PREBUILD_INFO","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_SRV","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL","features":[350]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_AABBS_DESC","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_DESC","features":[350,391]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAGS","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAG_NONE","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAG_NO_DUPLICATE_ANYHIT_INVOCATION","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_TRIANGLES_DESC","features":[350,391]},{"name":"D3D12_RAYTRACING_GEOMETRY_TYPE","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_TYPE_PROCEDURAL_PRIMITIVE_AABBS","features":[350]},{"name":"D3D12_RAYTRACING_GEOMETRY_TYPE_TRIANGLES","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_DESC","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_DESCS_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAGS","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_NON_OPAQUE","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_OPAQUE","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_NONE","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_CULL_DISABLE","features":[350]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_FRONT_COUNTERCLOCKWISE","features":[350]},{"name":"D3D12_RAYTRACING_MAX_ATTRIBUTE_SIZE_IN_BYTES","features":[350]},{"name":"D3D12_RAYTRACING_MAX_DECLARABLE_TRACE_RECURSION_DEPTH","features":[350]},{"name":"D3D12_RAYTRACING_MAX_GEOMETRIES_PER_BOTTOM_LEVEL_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_RAYTRACING_MAX_INSTANCES_PER_TOP_LEVEL_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_RAYTRACING_MAX_PRIMITIVES_PER_BOTTOM_LEVEL_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_RAYTRACING_MAX_RAY_GENERATION_SHADER_THREADS","features":[350]},{"name":"D3D12_RAYTRACING_MAX_SHADER_RECORD_STRIDE","features":[350]},{"name":"D3D12_RAYTRACING_PIPELINE_CONFIG","features":[350]},{"name":"D3D12_RAYTRACING_PIPELINE_CONFIG1","features":[350]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAGS","features":[350]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAG_NONE","features":[350]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAG_SKIP_PROCEDURAL_PRIMITIVES","features":[350]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAG_SKIP_TRIANGLES","features":[350]},{"name":"D3D12_RAYTRACING_SHADER_CONFIG","features":[350]},{"name":"D3D12_RAYTRACING_SHADER_RECORD_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_RAYTRACING_SHADER_TABLE_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_RAYTRACING_TIER","features":[350]},{"name":"D3D12_RAYTRACING_TIER_1_0","features":[350]},{"name":"D3D12_RAYTRACING_TIER_1_1","features":[350]},{"name":"D3D12_RAYTRACING_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_RAYTRACING_TRANSFORM3X4_BYTE_ALIGNMENT","features":[350]},{"name":"D3D12_RAY_FLAGS","features":[350]},{"name":"D3D12_RAY_FLAG_ACCEPT_FIRST_HIT_AND_END_SEARCH","features":[350]},{"name":"D3D12_RAY_FLAG_CULL_BACK_FACING_TRIANGLES","features":[350]},{"name":"D3D12_RAY_FLAG_CULL_FRONT_FACING_TRIANGLES","features":[350]},{"name":"D3D12_RAY_FLAG_CULL_NON_OPAQUE","features":[350]},{"name":"D3D12_RAY_FLAG_CULL_OPAQUE","features":[350]},{"name":"D3D12_RAY_FLAG_FORCE_NON_OPAQUE","features":[350]},{"name":"D3D12_RAY_FLAG_FORCE_OPAQUE","features":[350]},{"name":"D3D12_RAY_FLAG_NONE","features":[350]},{"name":"D3D12_RAY_FLAG_SKIP_CLOSEST_HIT_SHADER","features":[350]},{"name":"D3D12_RAY_FLAG_SKIP_PROCEDURAL_PRIMITIVES","features":[350]},{"name":"D3D12_RAY_FLAG_SKIP_TRIANGLES","features":[350]},{"name":"D3D12_RECREATE_AT_TIER","features":[350]},{"name":"D3D12_RECREATE_AT_TIER_1","features":[350]},{"name":"D3D12_RECREATE_AT_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS","features":[350,391]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_CLEAR_PARAMETERS","features":[350,391]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_PRESERVE_LOCAL_PARAMETERS","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_CLEAR","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_DISCARD","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_NO_ACCESS","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE_LOCAL_RENDER","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE_LOCAL_SRV","features":[350]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE_LOCAL_UAV","features":[350]},{"name":"D3D12_RENDER_PASS_DEPTH_STENCIL_DESC","features":[303,350,391]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS","features":[303,350,391]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_PRESERVE_LOCAL_PARAMETERS","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS","features":[303,350,391]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS","features":[303,350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_DISCARD","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_NO_ACCESS","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE_LOCAL_RENDER","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE_LOCAL_SRV","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE_LOCAL_UAV","features":[350]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_RESOLVE","features":[350]},{"name":"D3D12_RENDER_PASS_FLAGS","features":[350]},{"name":"D3D12_RENDER_PASS_FLAG_ALLOW_UAV_WRITES","features":[350]},{"name":"D3D12_RENDER_PASS_FLAG_BIND_READ_ONLY_DEPTH","features":[350]},{"name":"D3D12_RENDER_PASS_FLAG_BIND_READ_ONLY_STENCIL","features":[350]},{"name":"D3D12_RENDER_PASS_FLAG_NONE","features":[350]},{"name":"D3D12_RENDER_PASS_FLAG_RESUMING_PASS","features":[350]},{"name":"D3D12_RENDER_PASS_FLAG_SUSPENDING_PASS","features":[350]},{"name":"D3D12_RENDER_PASS_RENDER_TARGET_DESC","features":[303,350,391]},{"name":"D3D12_RENDER_PASS_TIER","features":[350]},{"name":"D3D12_RENDER_PASS_TIER_0","features":[350]},{"name":"D3D12_RENDER_PASS_TIER_1","features":[350]},{"name":"D3D12_RENDER_PASS_TIER_2","features":[350]},{"name":"D3D12_RENDER_TARGET_BLEND_DESC","features":[303,350]},{"name":"D3D12_RENDER_TARGET_VIEW_DESC","features":[350,391]},{"name":"D3D12_REQ_BLEND_OBJECT_COUNT_PER_DEVICE","features":[350]},{"name":"D3D12_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP","features":[350]},{"name":"D3D12_REQ_CONSTANT_BUFFER_ELEMENT_COUNT","features":[350]},{"name":"D3D12_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_DEVICE","features":[350]},{"name":"D3D12_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[350]},{"name":"D3D12_REQ_DRAW_VERTEX_COUNT_2_TO_EXP","features":[350]},{"name":"D3D12_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION","features":[350]},{"name":"D3D12_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT","features":[350]},{"name":"D3D12_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT","features":[350]},{"name":"D3D12_REQ_MAXANISOTROPY","features":[350]},{"name":"D3D12_REQ_MIP_LEVELS","features":[350]},{"name":"D3D12_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES","features":[350]},{"name":"D3D12_REQ_RASTERIZER_OBJECT_COUNT_PER_DEVICE","features":[350]},{"name":"D3D12_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH","features":[350]},{"name":"D3D12_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_A_TERM","features":[350]},{"name":"D3D12_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_B_TERM","features":[350]},{"name":"D3D12_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_C_TERM","features":[350]},{"name":"D3D12_REQ_RESOURCE_VIEW_COUNT_PER_DEVICE_2_TO_EXP","features":[350]},{"name":"D3D12_REQ_SAMPLER_OBJECT_COUNT_PER_DEVICE","features":[350]},{"name":"D3D12_REQ_SUBRESOURCES","features":[350]},{"name":"D3D12_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION","features":[350]},{"name":"D3D12_REQ_TEXTURE1D_U_DIMENSION","features":[350]},{"name":"D3D12_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION","features":[350]},{"name":"D3D12_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[350]},{"name":"D3D12_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[350]},{"name":"D3D12_REQ_TEXTURECUBE_DIMENSION","features":[350]},{"name":"D3D12_RESIDENCY_FLAGS","features":[350]},{"name":"D3D12_RESIDENCY_FLAG_DENY_OVERBUDGET","features":[350]},{"name":"D3D12_RESIDENCY_FLAG_NONE","features":[350]},{"name":"D3D12_RESIDENCY_PRIORITY","features":[350]},{"name":"D3D12_RESIDENCY_PRIORITY_HIGH","features":[350]},{"name":"D3D12_RESIDENCY_PRIORITY_LOW","features":[350]},{"name":"D3D12_RESIDENCY_PRIORITY_MAXIMUM","features":[350]},{"name":"D3D12_RESIDENCY_PRIORITY_MINIMUM","features":[350]},{"name":"D3D12_RESIDENCY_PRIORITY_NORMAL","features":[350]},{"name":"D3D12_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL","features":[350]},{"name":"D3D12_RESOLVE_MODE","features":[350]},{"name":"D3D12_RESOLVE_MODE_AVERAGE","features":[350]},{"name":"D3D12_RESOLVE_MODE_DECODE_SAMPLER_FEEDBACK","features":[350]},{"name":"D3D12_RESOLVE_MODE_DECOMPRESS","features":[350]},{"name":"D3D12_RESOLVE_MODE_ENCODE_SAMPLER_FEEDBACK","features":[350]},{"name":"D3D12_RESOLVE_MODE_MAX","features":[350]},{"name":"D3D12_RESOLVE_MODE_MIN","features":[350]},{"name":"D3D12_RESOURCE_ALIASING_BARRIER","features":[350]},{"name":"D3D12_RESOURCE_ALLOCATION_INFO","features":[350]},{"name":"D3D12_RESOURCE_ALLOCATION_INFO1","features":[350]},{"name":"D3D12_RESOURCE_BARRIER","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_FLAGS","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_FLAG_BEGIN_ONLY","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_FLAG_END_ONLY","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_FLAG_NONE","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_TYPE","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_TYPE_ALIASING","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_TYPE_TRANSITION","features":[350]},{"name":"D3D12_RESOURCE_BARRIER_TYPE_UAV","features":[350]},{"name":"D3D12_RESOURCE_BINDING_TIER","features":[350]},{"name":"D3D12_RESOURCE_BINDING_TIER_1","features":[350]},{"name":"D3D12_RESOURCE_BINDING_TIER_2","features":[350]},{"name":"D3D12_RESOURCE_BINDING_TIER_3","features":[350]},{"name":"D3D12_RESOURCE_DESC","features":[350,391]},{"name":"D3D12_RESOURCE_DESC1","features":[350,391]},{"name":"D3D12_RESOURCE_DIMENSION","features":[350]},{"name":"D3D12_RESOURCE_DIMENSION_BUFFER","features":[350]},{"name":"D3D12_RESOURCE_DIMENSION_TEXTURE1D","features":[350]},{"name":"D3D12_RESOURCE_DIMENSION_TEXTURE2D","features":[350]},{"name":"D3D12_RESOURCE_DIMENSION_TEXTURE3D","features":[350]},{"name":"D3D12_RESOURCE_DIMENSION_UNKNOWN","features":[350]},{"name":"D3D12_RESOURCE_FLAGS","features":[350]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_CROSS_ADAPTER","features":[350]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL","features":[350]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET","features":[350]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_SIMULTANEOUS_ACCESS","features":[350]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_UNORDERED_ACCESS","features":[350]},{"name":"D3D12_RESOURCE_FLAG_DENY_SHADER_RESOURCE","features":[350]},{"name":"D3D12_RESOURCE_FLAG_NONE","features":[350]},{"name":"D3D12_RESOURCE_FLAG_RAYTRACING_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY","features":[350]},{"name":"D3D12_RESOURCE_FLAG_VIDEO_ENCODE_REFERENCE_ONLY","features":[350]},{"name":"D3D12_RESOURCE_HEAP_TIER","features":[350]},{"name":"D3D12_RESOURCE_HEAP_TIER_1","features":[350]},{"name":"D3D12_RESOURCE_HEAP_TIER_2","features":[350]},{"name":"D3D12_RESOURCE_STATES","features":[350]},{"name":"D3D12_RESOURCE_STATE_ALL_SHADER_RESOURCE","features":[350]},{"name":"D3D12_RESOURCE_STATE_COMMON","features":[350]},{"name":"D3D12_RESOURCE_STATE_COPY_DEST","features":[350]},{"name":"D3D12_RESOURCE_STATE_COPY_SOURCE","features":[350]},{"name":"D3D12_RESOURCE_STATE_DEPTH_READ","features":[350]},{"name":"D3D12_RESOURCE_STATE_DEPTH_WRITE","features":[350]},{"name":"D3D12_RESOURCE_STATE_GENERIC_READ","features":[350]},{"name":"D3D12_RESOURCE_STATE_INDEX_BUFFER","features":[350]},{"name":"D3D12_RESOURCE_STATE_INDIRECT_ARGUMENT","features":[350]},{"name":"D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE","features":[350]},{"name":"D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE","features":[350]},{"name":"D3D12_RESOURCE_STATE_PREDICATION","features":[350]},{"name":"D3D12_RESOURCE_STATE_PRESENT","features":[350]},{"name":"D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_RESOURCE_STATE_RENDER_TARGET","features":[350]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_100000","features":[350]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_4000","features":[350]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_40000000","features":[350]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_8000","features":[350]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_80000000","features":[350]},{"name":"D3D12_RESOURCE_STATE_RESOLVE_DEST","features":[350]},{"name":"D3D12_RESOURCE_STATE_RESOLVE_SOURCE","features":[350]},{"name":"D3D12_RESOURCE_STATE_SHADING_RATE_SOURCE","features":[350]},{"name":"D3D12_RESOURCE_STATE_STREAM_OUT","features":[350]},{"name":"D3D12_RESOURCE_STATE_UNORDERED_ACCESS","features":[350]},{"name":"D3D12_RESOURCE_STATE_VERTEX_AND_CONSTANT_BUFFER","features":[350]},{"name":"D3D12_RESOURCE_STATE_VIDEO_DECODE_READ","features":[350]},{"name":"D3D12_RESOURCE_STATE_VIDEO_DECODE_WRITE","features":[350]},{"name":"D3D12_RESOURCE_STATE_VIDEO_ENCODE_READ","features":[350]},{"name":"D3D12_RESOURCE_STATE_VIDEO_ENCODE_WRITE","features":[350]},{"name":"D3D12_RESOURCE_STATE_VIDEO_PROCESS_READ","features":[350]},{"name":"D3D12_RESOURCE_STATE_VIDEO_PROCESS_WRITE","features":[350]},{"name":"D3D12_RESOURCE_TRANSITION_BARRIER","features":[350]},{"name":"D3D12_RESOURCE_UAV_BARRIER","features":[350]},{"name":"D3D12_RLDO_DETAIL","features":[350]},{"name":"D3D12_RLDO_FLAGS","features":[350]},{"name":"D3D12_RLDO_IGNORE_INTERNAL","features":[350]},{"name":"D3D12_RLDO_NONE","features":[350]},{"name":"D3D12_RLDO_SUMMARY","features":[350]},{"name":"D3D12_ROOT_CONSTANTS","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR1","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAGS","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_DATA_STATIC","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_DATA_STATIC_WHILE_SET_AT_EXECUTE","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_DATA_VOLATILE","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_NONE","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR_TABLE","features":[350]},{"name":"D3D12_ROOT_DESCRIPTOR_TABLE1","features":[350]},{"name":"D3D12_ROOT_PARAMETER","features":[350]},{"name":"D3D12_ROOT_PARAMETER1","features":[350]},{"name":"D3D12_ROOT_PARAMETER_TYPE","features":[350]},{"name":"D3D12_ROOT_PARAMETER_TYPE_32BIT_CONSTANTS","features":[350]},{"name":"D3D12_ROOT_PARAMETER_TYPE_CBV","features":[350]},{"name":"D3D12_ROOT_PARAMETER_TYPE_DESCRIPTOR_TABLE","features":[350]},{"name":"D3D12_ROOT_PARAMETER_TYPE_SRV","features":[350]},{"name":"D3D12_ROOT_PARAMETER_TYPE_UAV","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_DESC","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_DESC1","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_DESC2","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAGS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_ALLOW_INPUT_ASSEMBLER_INPUT_LAYOUT","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_ALLOW_STREAM_OUTPUT","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_CBV_SRV_UAV_HEAP_DIRECTLY_INDEXED","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_AMPLIFICATION_SHADER_ROOT_ACCESS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_DOMAIN_SHADER_ROOT_ACCESS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_GEOMETRY_SHADER_ROOT_ACCESS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_HULL_SHADER_ROOT_ACCESS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_MESH_SHADER_ROOT_ACCESS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_PIXEL_SHADER_ROOT_ACCESS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_VERTEX_SHADER_ROOT_ACCESS","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_LOCAL_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_NONE","features":[350]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_SAMPLER_HEAP_DIRECTLY_INDEXED","features":[350]},{"name":"D3D12_RS_SET_SHADING_RATE_COMBINER_COUNT","features":[350]},{"name":"D3D12_RTV_DIMENSION","features":[350]},{"name":"D3D12_RTV_DIMENSION_BUFFER","features":[350]},{"name":"D3D12_RTV_DIMENSION_TEXTURE1D","features":[350]},{"name":"D3D12_RTV_DIMENSION_TEXTURE1DARRAY","features":[350]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2D","features":[350]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2DARRAY","features":[350]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2DMS","features":[350]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2DMSARRAY","features":[350]},{"name":"D3D12_RTV_DIMENSION_TEXTURE3D","features":[350]},{"name":"D3D12_RTV_DIMENSION_UNKNOWN","features":[350]},{"name":"D3D12_RT_FORMAT_ARRAY","features":[350,391]},{"name":"D3D12_SAMPLER_DESC","features":[350]},{"name":"D3D12_SAMPLER_DESC2","features":[350]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER","features":[350]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER_0_9","features":[350]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER_1_0","features":[350]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_SAMPLER_FLAGS","features":[350]},{"name":"D3D12_SAMPLER_FLAG_NONE","features":[350]},{"name":"D3D12_SAMPLER_FLAG_NON_NORMALIZED_COORDINATES","features":[350]},{"name":"D3D12_SAMPLER_FLAG_UINT_BORDER_COLOR","features":[350]},{"name":"D3D12_SAMPLE_POSITION","features":[350]},{"name":"D3D12_SDK_VERSION","features":[350]},{"name":"D3D12_SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER","features":[350]},{"name":"D3D12_SERIALIZED_DATA_RAYTRACING_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_SERIALIZED_DATA_TYPE","features":[350]},{"name":"D3D12_SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER","features":[350]},{"name":"D3D12_SHADER_BUFFER_DESC","features":[396,350]},{"name":"D3D12_SHADER_BYTECODE","features":[350]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAGS","features":[350]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAG_CLEAR","features":[350]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAG_DISABLE","features":[350]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAG_ENABLE","features":[350]},{"name":"D3D12_SHADER_CACHE_FLAGS","features":[350]},{"name":"D3D12_SHADER_CACHE_FLAG_DRIVER_VERSIONED","features":[350]},{"name":"D3D12_SHADER_CACHE_FLAG_NONE","features":[350]},{"name":"D3D12_SHADER_CACHE_FLAG_USE_WORKING_DIR","features":[350]},{"name":"D3D12_SHADER_CACHE_KIND_FLAGS","features":[350]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_APPLICATION_MANAGED","features":[350]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_D3D_CACHE_FOR_DRIVER","features":[350]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_D3D_CONVERSIONS","features":[350]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_DRIVER_MANAGED","features":[350]},{"name":"D3D12_SHADER_CACHE_MODE","features":[350]},{"name":"D3D12_SHADER_CACHE_MODE_DISK","features":[350]},{"name":"D3D12_SHADER_CACHE_MODE_MEMORY","features":[350]},{"name":"D3D12_SHADER_CACHE_SESSION_DESC","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_AUTOMATIC_DISK_CACHE","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_AUTOMATIC_INPROC_CACHE","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_DRIVER_MANAGED_CACHE","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_FLAGS","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_LIBRARY","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_NONE","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_SHADER_CONTROL_CLEAR","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_SHADER_SESSION_DELETE","features":[350]},{"name":"D3D12_SHADER_CACHE_SUPPORT_SINGLE_PSO","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_ALWAYS_SET_BIT_AVOIDING_ZEROMEM_MISTAKES","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FORCE_VALUE_0","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FORCE_VALUE_1","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_0","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_1","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_2","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_3","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_MASK","features":[350]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_SHIFT","features":[350]},{"name":"D3D12_SHADER_DESC","features":[396,350]},{"name":"D3D12_SHADER_IDENTIFIER_SIZE_IN_BYTES","features":[350]},{"name":"D3D12_SHADER_INPUT_BIND_DESC","features":[396,350]},{"name":"D3D12_SHADER_MAJOR_VERSION","features":[350]},{"name":"D3D12_SHADER_MAX_INSTANCES","features":[350]},{"name":"D3D12_SHADER_MAX_INTERFACES","features":[350]},{"name":"D3D12_SHADER_MAX_INTERFACE_CALL_SITES","features":[350]},{"name":"D3D12_SHADER_MAX_TYPES","features":[350]},{"name":"D3D12_SHADER_MINOR_VERSION","features":[350]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT","features":[350]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT_10_BIT","features":[350]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT_16_BIT","features":[350]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT_NONE","features":[350]},{"name":"D3D12_SHADER_RESOURCE_VIEW_DESC","features":[350,391]},{"name":"D3D12_SHADER_TYPE_DESC","features":[396,350]},{"name":"D3D12_SHADER_VARIABLE_DESC","features":[350]},{"name":"D3D12_SHADER_VERSION_TYPE","features":[350]},{"name":"D3D12_SHADER_VISIBILITY","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_ALL","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_AMPLIFICATION","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_DOMAIN","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_GEOMETRY","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_HULL","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_MESH","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_PIXEL","features":[350]},{"name":"D3D12_SHADER_VISIBILITY_VERTEX","features":[350]},{"name":"D3D12_SHADING_RATE","features":[350]},{"name":"D3D12_SHADING_RATE_1X1","features":[350]},{"name":"D3D12_SHADING_RATE_1X2","features":[350]},{"name":"D3D12_SHADING_RATE_2X1","features":[350]},{"name":"D3D12_SHADING_RATE_2X2","features":[350]},{"name":"D3D12_SHADING_RATE_2X4","features":[350]},{"name":"D3D12_SHADING_RATE_4X2","features":[350]},{"name":"D3D12_SHADING_RATE_4X4","features":[350]},{"name":"D3D12_SHADING_RATE_COMBINER","features":[350]},{"name":"D3D12_SHADING_RATE_COMBINER_MAX","features":[350]},{"name":"D3D12_SHADING_RATE_COMBINER_MIN","features":[350]},{"name":"D3D12_SHADING_RATE_COMBINER_OVERRIDE","features":[350]},{"name":"D3D12_SHADING_RATE_COMBINER_PASSTHROUGH","features":[350]},{"name":"D3D12_SHADING_RATE_COMBINER_SUM","features":[350]},{"name":"D3D12_SHADING_RATE_VALID_MASK","features":[350]},{"name":"D3D12_SHADING_RATE_X_AXIS_SHIFT","features":[350]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER","features":[350]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_0","features":[350]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_1","features":[350]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_2","features":[350]},{"name":"D3D12_SHIFT_INSTRUCTION_PAD_VALUE","features":[350]},{"name":"D3D12_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT","features":[350]},{"name":"D3D12_SHVER_AMPLIFICATION_SHADER","features":[350]},{"name":"D3D12_SHVER_ANY_HIT_SHADER","features":[350]},{"name":"D3D12_SHVER_CALLABLE_SHADER","features":[350]},{"name":"D3D12_SHVER_CLOSEST_HIT_SHADER","features":[350]},{"name":"D3D12_SHVER_COMPUTE_SHADER","features":[350]},{"name":"D3D12_SHVER_DOMAIN_SHADER","features":[350]},{"name":"D3D12_SHVER_GEOMETRY_SHADER","features":[350]},{"name":"D3D12_SHVER_HULL_SHADER","features":[350]},{"name":"D3D12_SHVER_INTERSECTION_SHADER","features":[350]},{"name":"D3D12_SHVER_LIBRARY","features":[350]},{"name":"D3D12_SHVER_MESH_SHADER","features":[350]},{"name":"D3D12_SHVER_MISS_SHADER","features":[350]},{"name":"D3D12_SHVER_PIXEL_SHADER","features":[350]},{"name":"D3D12_SHVER_RAY_GENERATION_SHADER","features":[350]},{"name":"D3D12_SHVER_RESERVED0","features":[350]},{"name":"D3D12_SHVER_VERTEX_SHADER","features":[350]},{"name":"D3D12_SIGNATURE_PARAMETER_DESC","features":[396,350]},{"name":"D3D12_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[350]},{"name":"D3D12_SMALL_MSAA_RESOURCE_PLACEMENT_ALIGNMENT","features":[350]},{"name":"D3D12_SMALL_RESOURCE_PLACEMENT_ALIGNMENT","features":[350]},{"name":"D3D12_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[350]},{"name":"D3D12_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[350]},{"name":"D3D12_SO_BUFFER_SLOT_COUNT","features":[350]},{"name":"D3D12_SO_DDI_REGISTER_INDEX_DENOTING_GAP","features":[350]},{"name":"D3D12_SO_DECLARATION_ENTRY","features":[350]},{"name":"D3D12_SO_NO_RASTERIZED_STREAM","features":[350]},{"name":"D3D12_SO_OUTPUT_COMPONENT_COUNT","features":[350]},{"name":"D3D12_SO_STREAM_COUNT","features":[350]},{"name":"D3D12_SPEC_DATE_DAY","features":[350]},{"name":"D3D12_SPEC_DATE_MONTH","features":[350]},{"name":"D3D12_SPEC_DATE_YEAR","features":[350]},{"name":"D3D12_SPEC_VERSION","features":[350]},{"name":"D3D12_SRGB_GAMMA","features":[350]},{"name":"D3D12_SRGB_TO_FLOAT_DENOMINATOR_1","features":[350]},{"name":"D3D12_SRGB_TO_FLOAT_DENOMINATOR_2","features":[350]},{"name":"D3D12_SRGB_TO_FLOAT_EXPONENT","features":[350]},{"name":"D3D12_SRGB_TO_FLOAT_OFFSET","features":[350]},{"name":"D3D12_SRGB_TO_FLOAT_THRESHOLD","features":[350]},{"name":"D3D12_SRGB_TO_FLOAT_TOLERANCE_IN_ULP","features":[350]},{"name":"D3D12_SRV_DIMENSION","features":[350]},{"name":"D3D12_SRV_DIMENSION_BUFFER","features":[350]},{"name":"D3D12_SRV_DIMENSION_RAYTRACING_ACCELERATION_STRUCTURE","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURE1D","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURE1DARRAY","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2D","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2DARRAY","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2DMS","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURE3D","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURECUBE","features":[350]},{"name":"D3D12_SRV_DIMENSION_TEXTURECUBEARRAY","features":[350]},{"name":"D3D12_SRV_DIMENSION_UNKNOWN","features":[350]},{"name":"D3D12_STANDARD_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_STANDARD_COMPONENT_BIT_COUNT_DOUBLED","features":[350]},{"name":"D3D12_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE","features":[350]},{"name":"D3D12_STANDARD_PIXEL_COMPONENT_COUNT","features":[350]},{"name":"D3D12_STANDARD_PIXEL_ELEMENT_COUNT","features":[350]},{"name":"D3D12_STANDARD_VECTOR_SIZE","features":[350]},{"name":"D3D12_STANDARD_VERTEX_ELEMENT_COUNT","features":[350]},{"name":"D3D12_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT","features":[350]},{"name":"D3D12_STATE_OBJECT_CONFIG","features":[350]},{"name":"D3D12_STATE_OBJECT_DESC","features":[350]},{"name":"D3D12_STATE_OBJECT_FLAGS","features":[350]},{"name":"D3D12_STATE_OBJECT_FLAG_ALLOW_EXTERNAL_DEPENDENCIES_ON_LOCAL_DEFINITIONS","features":[350]},{"name":"D3D12_STATE_OBJECT_FLAG_ALLOW_LOCAL_DEPENDENCIES_ON_EXTERNAL_DEFINITIONS","features":[350]},{"name":"D3D12_STATE_OBJECT_FLAG_ALLOW_STATE_OBJECT_ADDITIONS","features":[350]},{"name":"D3D12_STATE_OBJECT_FLAG_NONE","features":[350]},{"name":"D3D12_STATE_OBJECT_TYPE","features":[350]},{"name":"D3D12_STATE_OBJECT_TYPE_COLLECTION","features":[350]},{"name":"D3D12_STATE_OBJECT_TYPE_RAYTRACING_PIPELINE","features":[350]},{"name":"D3D12_STATE_SUBOBJECT","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DXIL_LIBRARY","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_EXISTING_COLLECTION","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_GLOBAL_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_HIT_GROUP","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_LOCAL_ROOT_SIGNATURE","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_MAX_VALID","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_NODE_MASK","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG1","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_SHADER_CONFIG","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_STATE_OBJECT_CONFIG","features":[350]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[350]},{"name":"D3D12_STATIC_BORDER_COLOR","features":[350]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_BLACK","features":[350]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_BLACK_UINT","features":[350]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_WHITE","features":[350]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_WHITE_UINT","features":[350]},{"name":"D3D12_STATIC_BORDER_COLOR_TRANSPARENT_BLACK","features":[350]},{"name":"D3D12_STATIC_SAMPLER_DESC","features":[350]},{"name":"D3D12_STATIC_SAMPLER_DESC1","features":[350]},{"name":"D3D12_STENCIL_OP","features":[350]},{"name":"D3D12_STENCIL_OP_DECR","features":[350]},{"name":"D3D12_STENCIL_OP_DECR_SAT","features":[350]},{"name":"D3D12_STENCIL_OP_INCR","features":[350]},{"name":"D3D12_STENCIL_OP_INCR_SAT","features":[350]},{"name":"D3D12_STENCIL_OP_INVERT","features":[350]},{"name":"D3D12_STENCIL_OP_KEEP","features":[350]},{"name":"D3D12_STENCIL_OP_REPLACE","features":[350]},{"name":"D3D12_STENCIL_OP_ZERO","features":[350]},{"name":"D3D12_STREAM_OUTPUT_BUFFER_VIEW","features":[350]},{"name":"D3D12_STREAM_OUTPUT_DESC","features":[350]},{"name":"D3D12_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[350]},{"name":"D3D12_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[350]},{"name":"D3D12_SUBRESOURCE_DATA","features":[350]},{"name":"D3D12_SUBRESOURCE_FOOTPRINT","features":[350,391]},{"name":"D3D12_SUBRESOURCE_INFO","features":[350]},{"name":"D3D12_SUBRESOURCE_RANGE_UINT64","features":[350]},{"name":"D3D12_SUBRESOURCE_TILING","features":[350]},{"name":"D3D12_SUBTEXEL_FRACTIONAL_BIT_COUNT","features":[350]},{"name":"D3D12_SYSTEM_RESERVED_REGISTER_SPACE_VALUES_END","features":[350]},{"name":"D3D12_SYSTEM_RESERVED_REGISTER_SPACE_VALUES_START","features":[350]},{"name":"D3D12_TESSELLATOR_MAX_EVEN_TESSELLATION_FACTOR","features":[350]},{"name":"D3D12_TESSELLATOR_MAX_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[350]},{"name":"D3D12_TESSELLATOR_MAX_ODD_TESSELLATION_FACTOR","features":[350]},{"name":"D3D12_TESSELLATOR_MAX_TESSELLATION_FACTOR","features":[350]},{"name":"D3D12_TESSELLATOR_MIN_EVEN_TESSELLATION_FACTOR","features":[350]},{"name":"D3D12_TESSELLATOR_MIN_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[350]},{"name":"D3D12_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR","features":[350]},{"name":"D3D12_TEX1D_ARRAY_DSV","features":[350]},{"name":"D3D12_TEX1D_ARRAY_RTV","features":[350]},{"name":"D3D12_TEX1D_ARRAY_SRV","features":[350]},{"name":"D3D12_TEX1D_ARRAY_UAV","features":[350]},{"name":"D3D12_TEX1D_DSV","features":[350]},{"name":"D3D12_TEX1D_RTV","features":[350]},{"name":"D3D12_TEX1D_SRV","features":[350]},{"name":"D3D12_TEX1D_UAV","features":[350]},{"name":"D3D12_TEX2DMS_ARRAY_DSV","features":[350]},{"name":"D3D12_TEX2DMS_ARRAY_RTV","features":[350]},{"name":"D3D12_TEX2DMS_ARRAY_SRV","features":[350]},{"name":"D3D12_TEX2DMS_ARRAY_UAV","features":[350]},{"name":"D3D12_TEX2DMS_DSV","features":[350]},{"name":"D3D12_TEX2DMS_RTV","features":[350]},{"name":"D3D12_TEX2DMS_SRV","features":[350]},{"name":"D3D12_TEX2DMS_UAV","features":[350]},{"name":"D3D12_TEX2D_ARRAY_DSV","features":[350]},{"name":"D3D12_TEX2D_ARRAY_RTV","features":[350]},{"name":"D3D12_TEX2D_ARRAY_SRV","features":[350]},{"name":"D3D12_TEX2D_ARRAY_UAV","features":[350]},{"name":"D3D12_TEX2D_DSV","features":[350]},{"name":"D3D12_TEX2D_RTV","features":[350]},{"name":"D3D12_TEX2D_SRV","features":[350]},{"name":"D3D12_TEX2D_UAV","features":[350]},{"name":"D3D12_TEX3D_RTV","features":[350]},{"name":"D3D12_TEX3D_SRV","features":[350]},{"name":"D3D12_TEX3D_UAV","features":[350]},{"name":"D3D12_TEXCUBE_ARRAY_SRV","features":[350]},{"name":"D3D12_TEXCUBE_SRV","features":[350]},{"name":"D3D12_TEXEL_ADDRESS_RANGE_BIT_COUNT","features":[350]},{"name":"D3D12_TEXTURE_ADDRESS_MODE","features":[350]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_BORDER","features":[350]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_CLAMP","features":[350]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_MIRROR","features":[350]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_MIRROR_ONCE","features":[350]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_WRAP","features":[350]},{"name":"D3D12_TEXTURE_BARRIER","features":[350]},{"name":"D3D12_TEXTURE_BARRIER_FLAGS","features":[350]},{"name":"D3D12_TEXTURE_BARRIER_FLAG_DISCARD","features":[350]},{"name":"D3D12_TEXTURE_BARRIER_FLAG_NONE","features":[350]},{"name":"D3D12_TEXTURE_COPY_LOCATION","features":[350,391]},{"name":"D3D12_TEXTURE_COPY_TYPE","features":[350]},{"name":"D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT","features":[350]},{"name":"D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX","features":[350]},{"name":"D3D12_TEXTURE_DATA_PITCH_ALIGNMENT","features":[350]},{"name":"D3D12_TEXTURE_DATA_PLACEMENT_ALIGNMENT","features":[350]},{"name":"D3D12_TEXTURE_LAYOUT","features":[350]},{"name":"D3D12_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE","features":[350]},{"name":"D3D12_TEXTURE_LAYOUT_64KB_UNDEFINED_SWIZZLE","features":[350]},{"name":"D3D12_TEXTURE_LAYOUT_ROW_MAJOR","features":[350]},{"name":"D3D12_TEXTURE_LAYOUT_UNKNOWN","features":[350]},{"name":"D3D12_TILED_RESOURCES_TIER","features":[350]},{"name":"D3D12_TILED_RESOURCES_TIER_1","features":[350]},{"name":"D3D12_TILED_RESOURCES_TIER_2","features":[350]},{"name":"D3D12_TILED_RESOURCES_TIER_3","features":[350]},{"name":"D3D12_TILED_RESOURCES_TIER_4","features":[350]},{"name":"D3D12_TILED_RESOURCES_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_TILED_RESOURCE_COORDINATE","features":[350]},{"name":"D3D12_TILED_RESOURCE_TILE_SIZE_IN_BYTES","features":[350]},{"name":"D3D12_TILE_COPY_FLAGS","features":[350]},{"name":"D3D12_TILE_COPY_FLAG_LINEAR_BUFFER_TO_SWIZZLED_TILED_RESOURCE","features":[350]},{"name":"D3D12_TILE_COPY_FLAG_NONE","features":[350]},{"name":"D3D12_TILE_COPY_FLAG_NO_HAZARD","features":[350]},{"name":"D3D12_TILE_COPY_FLAG_SWIZZLED_TILED_RESOURCE_TO_LINEAR_BUFFER","features":[350]},{"name":"D3D12_TILE_MAPPING_FLAGS","features":[350]},{"name":"D3D12_TILE_MAPPING_FLAG_NONE","features":[350]},{"name":"D3D12_TILE_MAPPING_FLAG_NO_HAZARD","features":[350]},{"name":"D3D12_TILE_RANGE_FLAGS","features":[350]},{"name":"D3D12_TILE_RANGE_FLAG_NONE","features":[350]},{"name":"D3D12_TILE_RANGE_FLAG_NULL","features":[350]},{"name":"D3D12_TILE_RANGE_FLAG_REUSE_SINGLE_TILE","features":[350]},{"name":"D3D12_TILE_RANGE_FLAG_SKIP","features":[350]},{"name":"D3D12_TILE_REGION_SIZE","features":[303,350]},{"name":"D3D12_TILE_SHAPE","features":[350]},{"name":"D3D12_TRACKED_WORKLOAD_MAX_INSTANCES","features":[350]},{"name":"D3D12_TRI_STATE","features":[350]},{"name":"D3D12_TRI_STATE_FALSE","features":[350]},{"name":"D3D12_TRI_STATE_TRUE","features":[350]},{"name":"D3D12_TRI_STATE_UNKNOWN","features":[350]},{"name":"D3D12_UAV_COUNTER_PLACEMENT_ALIGNMENT","features":[350]},{"name":"D3D12_UAV_DIMENSION","features":[350]},{"name":"D3D12_UAV_DIMENSION_BUFFER","features":[350]},{"name":"D3D12_UAV_DIMENSION_TEXTURE1D","features":[350]},{"name":"D3D12_UAV_DIMENSION_TEXTURE1DARRAY","features":[350]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2D","features":[350]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2DARRAY","features":[350]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2DMS","features":[350]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2DMSARRAY","features":[350]},{"name":"D3D12_UAV_DIMENSION_TEXTURE3D","features":[350]},{"name":"D3D12_UAV_DIMENSION_UNKNOWN","features":[350]},{"name":"D3D12_UAV_SLOT_COUNT","features":[350]},{"name":"D3D12_UNBOUND_MEMORY_ACCESS_RESULT","features":[350]},{"name":"D3D12_UNORDERED_ACCESS_VIEW_DESC","features":[350,391]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER","features":[350]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER_1","features":[350]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER_2","features":[350]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_VERSIONED_DEVICE_REMOVED_EXTENDED_DATA","features":[350]},{"name":"D3D12_VERSIONED_ROOT_SIGNATURE_DESC","features":[350]},{"name":"D3D12_VERTEX_BUFFER_VIEW","features":[350]},{"name":"D3D12_VIDEO_DECODE_MAX_ARGUMENTS","features":[350]},{"name":"D3D12_VIDEO_DECODE_MAX_HISTOGRAM_COMPONENTS","features":[350]},{"name":"D3D12_VIDEO_DECODE_MIN_BITSTREAM_OFFSET_ALIGNMENT","features":[350]},{"name":"D3D12_VIDEO_DECODE_MIN_HISTOGRAM_OFFSET_ALIGNMENT","features":[350]},{"name":"D3D12_VIDEO_DECODE_STATUS_MACROBLOCKS_AFFECTED_UNKNOWN","features":[350]},{"name":"D3D12_VIDEO_ENCODER_AV1_INVALID_DPB_RESOURCE_INDEX","features":[350]},{"name":"D3D12_VIDEO_ENCODER_AV1_MAX_TILE_COLS","features":[350]},{"name":"D3D12_VIDEO_ENCODER_AV1_MAX_TILE_ROWS","features":[350]},{"name":"D3D12_VIDEO_ENCODER_AV1_SUPERRES_DENOM_MIN","features":[350]},{"name":"D3D12_VIDEO_ENCODER_AV1_SUPERRES_NUM","features":[350]},{"name":"D3D12_VIDEO_PROCESS_MAX_FILTERS","features":[350]},{"name":"D3D12_VIDEO_PROCESS_STEREO_VIEWS","features":[350]},{"name":"D3D12_VIEWPORT","features":[350]},{"name":"D3D12_VIEWPORT_AND_SCISSORRECT_MAX_INDEX","features":[350]},{"name":"D3D12_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE","features":[350]},{"name":"D3D12_VIEWPORT_BOUNDS_MAX","features":[350]},{"name":"D3D12_VIEWPORT_BOUNDS_MIN","features":[350]},{"name":"D3D12_VIEW_INSTANCE_LOCATION","features":[350]},{"name":"D3D12_VIEW_INSTANCING_DESC","features":[350]},{"name":"D3D12_VIEW_INSTANCING_FLAGS","features":[350]},{"name":"D3D12_VIEW_INSTANCING_FLAG_ENABLE_VIEW_INSTANCE_MASKING","features":[350]},{"name":"D3D12_VIEW_INSTANCING_FLAG_NONE","features":[350]},{"name":"D3D12_VIEW_INSTANCING_TIER","features":[350]},{"name":"D3D12_VIEW_INSTANCING_TIER_1","features":[350]},{"name":"D3D12_VIEW_INSTANCING_TIER_2","features":[350]},{"name":"D3D12_VIEW_INSTANCING_TIER_3","features":[350]},{"name":"D3D12_VIEW_INSTANCING_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_VS_INPUT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_VS_INPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_VS_INPUT_REGISTER_READS_PER_INST","features":[350]},{"name":"D3D12_VS_INPUT_REGISTER_READ_PORTS","features":[350]},{"name":"D3D12_VS_OUTPUT_REGISTER_COMPONENTS","features":[350]},{"name":"D3D12_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[350]},{"name":"D3D12_VS_OUTPUT_REGISTER_COUNT","features":[350]},{"name":"D3D12_WAVE_MMA_TIER","features":[350]},{"name":"D3D12_WAVE_MMA_TIER_1_0","features":[350]},{"name":"D3D12_WAVE_MMA_TIER_NOT_SUPPORTED","features":[350]},{"name":"D3D12_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT","features":[350]},{"name":"D3D12_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[350]},{"name":"D3D12_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP","features":[350]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE","features":[350]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE_DEFAULT","features":[350]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_IN","features":[350]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_OUT","features":[350]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_PARAMETER","features":[350]},{"name":"D3D_HIGHEST_SHADER_MODEL","features":[350]},{"name":"D3D_ROOT_SIGNATURE_VERSION","features":[350]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1","features":[350]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1_0","features":[350]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1_1","features":[350]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1_2","features":[350]},{"name":"D3D_SHADER_FEATURE_ADVANCED_TEXTURE_OPS","features":[350]},{"name":"D3D_SHADER_FEATURE_WRITEABLE_MSAA_TEXTURES","features":[350]},{"name":"D3D_SHADER_MODEL","features":[350]},{"name":"D3D_SHADER_MODEL_5_1","features":[350]},{"name":"D3D_SHADER_MODEL_6_0","features":[350]},{"name":"D3D_SHADER_MODEL_6_1","features":[350]},{"name":"D3D_SHADER_MODEL_6_2","features":[350]},{"name":"D3D_SHADER_MODEL_6_3","features":[350]},{"name":"D3D_SHADER_MODEL_6_4","features":[350]},{"name":"D3D_SHADER_MODEL_6_5","features":[350]},{"name":"D3D_SHADER_MODEL_6_6","features":[350]},{"name":"D3D_SHADER_MODEL_6_7","features":[350]},{"name":"D3D_SHADER_MODEL_6_8","features":[350]},{"name":"D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_DESCRIPTOR_HEAP_RESOURCE","features":[350]},{"name":"D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_GROUP_SHARED","features":[350]},{"name":"D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_TYPED_RESOURCE","features":[350]},{"name":"D3D_SHADER_REQUIRES_BARYCENTRICS","features":[350]},{"name":"D3D_SHADER_REQUIRES_DERIVATIVES_IN_MESH_AND_AMPLIFICATION_SHADERS","features":[350]},{"name":"D3D_SHADER_REQUIRES_INNER_COVERAGE","features":[350]},{"name":"D3D_SHADER_REQUIRES_INT64_OPS","features":[350]},{"name":"D3D_SHADER_REQUIRES_NATIVE_16BIT_OPS","features":[350]},{"name":"D3D_SHADER_REQUIRES_RAYTRACING_TIER_1_1","features":[350]},{"name":"D3D_SHADER_REQUIRES_RESOURCE_DESCRIPTOR_HEAP_INDEXING","features":[350]},{"name":"D3D_SHADER_REQUIRES_ROVS","features":[350]},{"name":"D3D_SHADER_REQUIRES_SAMPLER_DESCRIPTOR_HEAP_INDEXING","features":[350]},{"name":"D3D_SHADER_REQUIRES_SAMPLER_FEEDBACK","features":[350]},{"name":"D3D_SHADER_REQUIRES_SHADING_RATE","features":[350]},{"name":"D3D_SHADER_REQUIRES_STENCIL_REF","features":[350]},{"name":"D3D_SHADER_REQUIRES_TYPED_UAV_LOAD_ADDITIONAL_FORMATS","features":[350]},{"name":"D3D_SHADER_REQUIRES_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDING_RASTERIZER","features":[350]},{"name":"D3D_SHADER_REQUIRES_VIEW_ID","features":[350]},{"name":"D3D_SHADER_REQUIRES_WAVE_MMA","features":[350]},{"name":"D3D_SHADER_REQUIRES_WAVE_OPS","features":[350]},{"name":"DXGI_DEBUG_D3D12","features":[350]},{"name":"ID3D12CommandAllocator","features":[350]},{"name":"ID3D12CommandList","features":[350]},{"name":"ID3D12CommandQueue","features":[350]},{"name":"ID3D12CommandSignature","features":[350]},{"name":"ID3D12Debug","features":[350]},{"name":"ID3D12Debug1","features":[350]},{"name":"ID3D12Debug2","features":[350]},{"name":"ID3D12Debug3","features":[350]},{"name":"ID3D12Debug4","features":[350]},{"name":"ID3D12Debug5","features":[350]},{"name":"ID3D12Debug6","features":[350]},{"name":"ID3D12DebugCommandList","features":[350]},{"name":"ID3D12DebugCommandList1","features":[350]},{"name":"ID3D12DebugCommandList2","features":[350]},{"name":"ID3D12DebugCommandList3","features":[350]},{"name":"ID3D12DebugCommandQueue","features":[350]},{"name":"ID3D12DebugCommandQueue1","features":[350]},{"name":"ID3D12DebugDevice","features":[350]},{"name":"ID3D12DebugDevice1","features":[350]},{"name":"ID3D12DebugDevice2","features":[350]},{"name":"ID3D12DescriptorHeap","features":[350]},{"name":"ID3D12Device","features":[350]},{"name":"ID3D12Device1","features":[350]},{"name":"ID3D12Device10","features":[350]},{"name":"ID3D12Device11","features":[350]},{"name":"ID3D12Device12","features":[350]},{"name":"ID3D12Device13","features":[350]},{"name":"ID3D12Device2","features":[350]},{"name":"ID3D12Device3","features":[350]},{"name":"ID3D12Device4","features":[350]},{"name":"ID3D12Device5","features":[350]},{"name":"ID3D12Device6","features":[350]},{"name":"ID3D12Device7","features":[350]},{"name":"ID3D12Device8","features":[350]},{"name":"ID3D12Device9","features":[350]},{"name":"ID3D12DeviceChild","features":[350]},{"name":"ID3D12DeviceConfiguration","features":[350]},{"name":"ID3D12DeviceFactory","features":[350]},{"name":"ID3D12DeviceRemovedExtendedData","features":[350]},{"name":"ID3D12DeviceRemovedExtendedData1","features":[350]},{"name":"ID3D12DeviceRemovedExtendedData2","features":[350]},{"name":"ID3D12DeviceRemovedExtendedDataSettings","features":[350]},{"name":"ID3D12DeviceRemovedExtendedDataSettings1","features":[350]},{"name":"ID3D12DeviceRemovedExtendedDataSettings2","features":[350]},{"name":"ID3D12Fence","features":[350]},{"name":"ID3D12Fence1","features":[350]},{"name":"ID3D12FunctionParameterReflection","features":[350]},{"name":"ID3D12FunctionReflection","features":[350]},{"name":"ID3D12GraphicsCommandList","features":[350]},{"name":"ID3D12GraphicsCommandList1","features":[350]},{"name":"ID3D12GraphicsCommandList2","features":[350]},{"name":"ID3D12GraphicsCommandList3","features":[350]},{"name":"ID3D12GraphicsCommandList4","features":[350]},{"name":"ID3D12GraphicsCommandList5","features":[350]},{"name":"ID3D12GraphicsCommandList6","features":[350]},{"name":"ID3D12GraphicsCommandList7","features":[350]},{"name":"ID3D12GraphicsCommandList8","features":[350]},{"name":"ID3D12GraphicsCommandList9","features":[350]},{"name":"ID3D12Heap","features":[350]},{"name":"ID3D12Heap1","features":[350]},{"name":"ID3D12InfoQueue","features":[350]},{"name":"ID3D12InfoQueue1","features":[350]},{"name":"ID3D12LibraryReflection","features":[350]},{"name":"ID3D12LifetimeOwner","features":[350]},{"name":"ID3D12LifetimeTracker","features":[350]},{"name":"ID3D12ManualWriteTrackingResource","features":[350]},{"name":"ID3D12MetaCommand","features":[350]},{"name":"ID3D12Object","features":[350]},{"name":"ID3D12Pageable","features":[350]},{"name":"ID3D12PipelineLibrary","features":[350]},{"name":"ID3D12PipelineLibrary1","features":[350]},{"name":"ID3D12PipelineState","features":[350]},{"name":"ID3D12ProtectedResourceSession","features":[350]},{"name":"ID3D12ProtectedResourceSession1","features":[350]},{"name":"ID3D12ProtectedSession","features":[350]},{"name":"ID3D12QueryHeap","features":[350]},{"name":"ID3D12Resource","features":[350]},{"name":"ID3D12Resource1","features":[350]},{"name":"ID3D12Resource2","features":[350]},{"name":"ID3D12RootSignature","features":[350]},{"name":"ID3D12RootSignatureDeserializer","features":[350]},{"name":"ID3D12SDKConfiguration","features":[350]},{"name":"ID3D12SDKConfiguration1","features":[350]},{"name":"ID3D12ShaderCacheSession","features":[350]},{"name":"ID3D12ShaderReflection","features":[350]},{"name":"ID3D12ShaderReflectionConstantBuffer","features":[350]},{"name":"ID3D12ShaderReflectionType","features":[350]},{"name":"ID3D12ShaderReflectionVariable","features":[350]},{"name":"ID3D12SharingContract","features":[350]},{"name":"ID3D12StateObject","features":[350]},{"name":"ID3D12StateObjectProperties","features":[350]},{"name":"ID3D12SwapChainAssistant","features":[350]},{"name":"ID3D12Tools","features":[350]},{"name":"ID3D12VersionedRootSignatureDeserializer","features":[350]},{"name":"ID3D12VirtualizationGuestDevice","features":[350]},{"name":"LUID_DEFINED","features":[350]},{"name":"NUM_D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODES","features":[350]},{"name":"PFN_D3D12_CREATE_DEVICE","features":[396,350]},{"name":"PFN_D3D12_CREATE_ROOT_SIGNATURE_DESERIALIZER","features":[350]},{"name":"PFN_D3D12_CREATE_VERSIONED_ROOT_SIGNATURE_DESERIALIZER","features":[350]},{"name":"PFN_D3D12_GET_DEBUG_INTERFACE","features":[350]},{"name":"PFN_D3D12_GET_INTERFACE","features":[350]},{"name":"PFN_D3D12_SERIALIZE_ROOT_SIGNATURE","features":[396,350]},{"name":"PFN_D3D12_SERIALIZE_VERSIONED_ROOT_SIGNATURE","features":[396,350]},{"name":"WKPDID_D3DAutoDebugObjectNameW","features":[350]}],"404":[{"name":"D3D9_RESOURCE_PRIORITY_HIGH","features":[312]},{"name":"D3D9_RESOURCE_PRIORITY_LOW","features":[312]},{"name":"D3D9_RESOURCE_PRIORITY_MAXIMUM","features":[312]},{"name":"D3D9_RESOURCE_PRIORITY_MINIMUM","features":[312]},{"name":"D3D9_RESOURCE_PRIORITY_NORMAL","features":[312]},{"name":"D3D9b_SDK_VERSION","features":[312]},{"name":"D3DADAPTER_DEFAULT","features":[312]},{"name":"D3DADAPTER_IDENTIFIER9","features":[312]},{"name":"D3DADAPTER_IDENTIFIER9","features":[312]},{"name":"D3DAES_CTR_IV","features":[312]},{"name":"D3DAES_CTR_IV","features":[312]},{"name":"D3DANTIALIASMODE","features":[312]},{"name":"D3DANTIALIAS_NONE","features":[312]},{"name":"D3DANTIALIAS_SORTDEPENDENT","features":[312]},{"name":"D3DANTIALIAS_SORTINDEPENDENT","features":[312]},{"name":"D3DAUTHENTICATEDCHANNELTYPE","features":[312]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURECRYPTOSESSION","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGUREINITIALIZE","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGUREPROTECTION","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURESHAREDRESOURCE","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGUREUNCOMPRESSEDENCRYPTION","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURE_INPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_D3D9","features":[312]},{"name":"D3DAUTHENTICATEDCHANNEL_DRIVER_HARDWARE","features":[312]},{"name":"D3DAUTHENTICATEDCHANNEL_DRIVER_SOFTWARE","features":[312]},{"name":"D3DAUTHENTICATEDCHANNEL_PROCESSIDENTIFIERTYPE","features":[312]},{"name":"D3DAUTHENTICATEDCHANNEL_PROTECTION_FLAGS","features":[312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYCHANNELTYPE_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_INPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYDEVICEHANDLE_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUIDCOUNT_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_INPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYINFOBUSTYPE_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_INPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_INPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYPROTECTION_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESSCOUNT_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_INPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYUNCOMPRESSEDENCRYPTIONLEVEL_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYUNRESTRICTEDPROTECTEDSHAREDRESOURCECOUNT_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERY_INPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERY_OUTPUT","features":[303,312]},{"name":"D3DAUTHENTICATEDCONFIGURE_CRYPTOSESSION","features":[312]},{"name":"D3DAUTHENTICATEDCONFIGURE_ENCRYPTIONWHENACCESSIBLE","features":[312]},{"name":"D3DAUTHENTICATEDCONFIGURE_INITIALIZE","features":[312]},{"name":"D3DAUTHENTICATEDCONFIGURE_PROTECTION","features":[312]},{"name":"D3DAUTHENTICATEDCONFIGURE_SHAREDRESOURCE","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_ACCESSIBILITYATTRIBUTES","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_CHANNELTYPE","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_CRYPTOSESSION","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_CURRENTENCRYPTIONWHENACCESSIBLE","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_DEVICEHANDLE","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_ENCRYPTIONWHENACCESSIBLEGUID","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_ENCRYPTIONWHENACCESSIBLEGUIDCOUNT","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_OUTPUTID","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_OUTPUTIDCOUNT","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_PROTECTION","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_RESTRICTEDSHAREDRESOURCEPROCESS","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_RESTRICTEDSHAREDRESOURCEPROCESSCOUNT","features":[312]},{"name":"D3DAUTHENTICATEDQUERY_UNRESTRICTEDPROTECTEDSHAREDRESOURCECOUNT","features":[312]},{"name":"D3DBACKBUFFER_TYPE","features":[312]},{"name":"D3DBACKBUFFER_TYPE_LEFT","features":[312]},{"name":"D3DBACKBUFFER_TYPE_MONO","features":[312]},{"name":"D3DBACKBUFFER_TYPE_RIGHT","features":[312]},{"name":"D3DBASISTYPE","features":[312]},{"name":"D3DBASIS_BEZIER","features":[312]},{"name":"D3DBASIS_BSPLINE","features":[312]},{"name":"D3DBASIS_CATMULL_ROM","features":[312]},{"name":"D3DBLEND","features":[312]},{"name":"D3DBLENDOP","features":[312]},{"name":"D3DBLENDOP_ADD","features":[312]},{"name":"D3DBLENDOP_MAX","features":[312]},{"name":"D3DBLENDOP_MIN","features":[312]},{"name":"D3DBLENDOP_REVSUBTRACT","features":[312]},{"name":"D3DBLENDOP_SUBTRACT","features":[312]},{"name":"D3DBLEND_BLENDFACTOR","features":[312]},{"name":"D3DBLEND_BOTHINVSRCALPHA","features":[312]},{"name":"D3DBLEND_BOTHSRCALPHA","features":[312]},{"name":"D3DBLEND_DESTALPHA","features":[312]},{"name":"D3DBLEND_DESTCOLOR","features":[312]},{"name":"D3DBLEND_INVBLENDFACTOR","features":[312]},{"name":"D3DBLEND_INVDESTALPHA","features":[312]},{"name":"D3DBLEND_INVDESTCOLOR","features":[312]},{"name":"D3DBLEND_INVSRCALPHA","features":[312]},{"name":"D3DBLEND_INVSRCCOLOR","features":[312]},{"name":"D3DBLEND_INVSRCCOLOR2","features":[312]},{"name":"D3DBLEND_ONE","features":[312]},{"name":"D3DBLEND_SRCALPHA","features":[312]},{"name":"D3DBLEND_SRCALPHASAT","features":[312]},{"name":"D3DBLEND_SRCCOLOR","features":[312]},{"name":"D3DBLEND_SRCCOLOR2","features":[312]},{"name":"D3DBLEND_ZERO","features":[312]},{"name":"D3DBOX","features":[312]},{"name":"D3DBRANCH","features":[303,312]},{"name":"D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[312]},{"name":"D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[312]},{"name":"D3DBUSIMPL_MODIFIER_INSIDE_OF_CHIPSET","features":[312]},{"name":"D3DBUSIMPL_MODIFIER_NON_STANDARD","features":[312]},{"name":"D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[312]},{"name":"D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[312]},{"name":"D3DBUSTYPE","features":[312]},{"name":"D3DBUSTYPE_AGP","features":[312]},{"name":"D3DBUSTYPE_OTHER","features":[312]},{"name":"D3DBUSTYPE_PCI","features":[312]},{"name":"D3DBUSTYPE_PCIEXPRESS","features":[312]},{"name":"D3DBUSTYPE_PCIX","features":[312]},{"name":"D3DCAPS2_CANAUTOGENMIPMAP","features":[312]},{"name":"D3DCAPS2_CANCALIBRATEGAMMA","features":[312]},{"name":"D3DCAPS2_CANMANAGERESOURCE","features":[312]},{"name":"D3DCAPS2_CANSHARERESOURCE","features":[312]},{"name":"D3DCAPS2_DYNAMICTEXTURES","features":[312]},{"name":"D3DCAPS2_FULLSCREENGAMMA","features":[312]},{"name":"D3DCAPS2_RESERVED","features":[312]},{"name":"D3DCAPS3_ALPHA_FULLSCREEN_FLIP_OR_DISCARD","features":[312]},{"name":"D3DCAPS3_COPY_TO_SYSTEMMEM","features":[312]},{"name":"D3DCAPS3_COPY_TO_VIDMEM","features":[312]},{"name":"D3DCAPS3_DXVAHD","features":[312]},{"name":"D3DCAPS3_DXVAHD_LIMITED","features":[312]},{"name":"D3DCAPS3_LINEAR_TO_SRGB_PRESENTATION","features":[312]},{"name":"D3DCAPS3_RESERVED","features":[312]},{"name":"D3DCAPS9","features":[312]},{"name":"D3DCAPS_OVERLAY","features":[312]},{"name":"D3DCAPS_READ_SCANLINE","features":[312]},{"name":"D3DCLEAR_STENCIL","features":[312]},{"name":"D3DCLEAR_TARGET","features":[312]},{"name":"D3DCLEAR_ZBUFFER","features":[312]},{"name":"D3DCLIPPLANE0","features":[312]},{"name":"D3DCLIPPLANE1","features":[312]},{"name":"D3DCLIPPLANE2","features":[312]},{"name":"D3DCLIPPLANE3","features":[312]},{"name":"D3DCLIPPLANE4","features":[312]},{"name":"D3DCLIPPLANE5","features":[312]},{"name":"D3DCLIPSTATUS","features":[312]},{"name":"D3DCLIPSTATUS9","features":[312]},{"name":"D3DCLIPSTATUS_EXTENTS2","features":[312]},{"name":"D3DCLIPSTATUS_EXTENTS3","features":[312]},{"name":"D3DCLIPSTATUS_STATUS","features":[312]},{"name":"D3DCLIP_BACK","features":[312]},{"name":"D3DCLIP_BOTTOM","features":[312]},{"name":"D3DCLIP_FRONT","features":[312]},{"name":"D3DCLIP_GEN0","features":[312]},{"name":"D3DCLIP_GEN1","features":[312]},{"name":"D3DCLIP_GEN2","features":[312]},{"name":"D3DCLIP_GEN3","features":[312]},{"name":"D3DCLIP_GEN4","features":[312]},{"name":"D3DCLIP_GEN5","features":[312]},{"name":"D3DCLIP_LEFT","features":[312]},{"name":"D3DCLIP_RIGHT","features":[312]},{"name":"D3DCLIP_TOP","features":[312]},{"name":"D3DCMPFUNC","features":[312]},{"name":"D3DCMP_ALWAYS","features":[312]},{"name":"D3DCMP_EQUAL","features":[312]},{"name":"D3DCMP_GREATER","features":[312]},{"name":"D3DCMP_GREATEREQUAL","features":[312]},{"name":"D3DCMP_LESS","features":[312]},{"name":"D3DCMP_LESSEQUAL","features":[312]},{"name":"D3DCMP_NEVER","features":[312]},{"name":"D3DCMP_NOTEQUAL","features":[312]},{"name":"D3DCOLORVALUE","features":[312]},{"name":"D3DCOLOR_MONO","features":[312]},{"name":"D3DCOLOR_RGB","features":[312]},{"name":"D3DCOMPOSERECTDESC","features":[312]},{"name":"D3DCOMPOSERECTDESTINATION","features":[312]},{"name":"D3DCOMPOSERECTSOP","features":[312]},{"name":"D3DCOMPOSERECTS_AND","features":[312]},{"name":"D3DCOMPOSERECTS_COPY","features":[312]},{"name":"D3DCOMPOSERECTS_MAXNUMRECTS","features":[312]},{"name":"D3DCOMPOSERECTS_NEG","features":[312]},{"name":"D3DCOMPOSERECTS_OR","features":[312]},{"name":"D3DCONVOLUTIONMONO_MAXHEIGHT","features":[312]},{"name":"D3DCONVOLUTIONMONO_MAXWIDTH","features":[312]},{"name":"D3DCPCAPS_CONTENTKEY","features":[312]},{"name":"D3DCPCAPS_ENCRYPTEDREADBACK","features":[312]},{"name":"D3DCPCAPS_ENCRYPTEDREADBACKKEY","features":[312]},{"name":"D3DCPCAPS_ENCRYPTSLICEDATAONLY","features":[312]},{"name":"D3DCPCAPS_FRESHENSESSIONKEY","features":[312]},{"name":"D3DCPCAPS_HARDWARE","features":[312]},{"name":"D3DCPCAPS_PARTIALDECRYPTION","features":[312]},{"name":"D3DCPCAPS_PROTECTIONALWAYSON","features":[312]},{"name":"D3DCPCAPS_SEQUENTIAL_CTR_IV","features":[312]},{"name":"D3DCPCAPS_SOFTWARE","features":[312]},{"name":"D3DCREATE_ADAPTERGROUP_DEVICE","features":[312]},{"name":"D3DCREATE_DISABLE_DRIVER_MANAGEMENT","features":[312]},{"name":"D3DCREATE_DISABLE_DRIVER_MANAGEMENT_EX","features":[312]},{"name":"D3DCREATE_DISABLE_PRINTSCREEN","features":[312]},{"name":"D3DCREATE_DISABLE_PSGP_THREADING","features":[312]},{"name":"D3DCREATE_ENABLE_PRESENTSTATS","features":[312]},{"name":"D3DCREATE_FPU_PRESERVE","features":[312]},{"name":"D3DCREATE_HARDWARE_VERTEXPROCESSING","features":[312]},{"name":"D3DCREATE_MIXED_VERTEXPROCESSING","features":[312]},{"name":"D3DCREATE_MULTITHREADED","features":[312]},{"name":"D3DCREATE_NOWINDOWCHANGES","features":[312]},{"name":"D3DCREATE_PUREDEVICE","features":[312]},{"name":"D3DCREATE_SCREENSAVER","features":[312]},{"name":"D3DCREATE_SOFTWARE_VERTEXPROCESSING","features":[312]},{"name":"D3DCRYPTOTYPE_AES128_CTR","features":[312]},{"name":"D3DCRYPTOTYPE_PROPRIETARY","features":[312]},{"name":"D3DCS_BACK","features":[312]},{"name":"D3DCS_BOTTOM","features":[312]},{"name":"D3DCS_FRONT","features":[312]},{"name":"D3DCS_LEFT","features":[312]},{"name":"D3DCS_PLANE0","features":[312]},{"name":"D3DCS_PLANE1","features":[312]},{"name":"D3DCS_PLANE2","features":[312]},{"name":"D3DCS_PLANE3","features":[312]},{"name":"D3DCS_PLANE4","features":[312]},{"name":"D3DCS_PLANE5","features":[312]},{"name":"D3DCS_RIGHT","features":[312]},{"name":"D3DCS_TOP","features":[312]},{"name":"D3DCUBEMAP_FACES","features":[312]},{"name":"D3DCUBEMAP_FACE_NEGATIVE_X","features":[312]},{"name":"D3DCUBEMAP_FACE_NEGATIVE_Y","features":[312]},{"name":"D3DCUBEMAP_FACE_NEGATIVE_Z","features":[312]},{"name":"D3DCUBEMAP_FACE_POSITIVE_X","features":[312]},{"name":"D3DCUBEMAP_FACE_POSITIVE_Y","features":[312]},{"name":"D3DCUBEMAP_FACE_POSITIVE_Z","features":[312]},{"name":"D3DCULL","features":[312]},{"name":"D3DCULL_CCW","features":[312]},{"name":"D3DCULL_CW","features":[312]},{"name":"D3DCULL_NONE","features":[312]},{"name":"D3DCURSORCAPS_COLOR","features":[312]},{"name":"D3DCURSORCAPS_LOWRES","features":[312]},{"name":"D3DCURSOR_IMMEDIATE_UPDATE","features":[312]},{"name":"D3DDD_BCLIPPING","features":[312]},{"name":"D3DDD_COLORMODEL","features":[312]},{"name":"D3DDD_DEVCAPS","features":[312]},{"name":"D3DDD_DEVICERENDERBITDEPTH","features":[312]},{"name":"D3DDD_DEVICEZBUFFERBITDEPTH","features":[312]},{"name":"D3DDD_LIGHTINGCAPS","features":[312]},{"name":"D3DDD_LINECAPS","features":[312]},{"name":"D3DDD_MAXBUFFERSIZE","features":[312]},{"name":"D3DDD_MAXVERTEXCOUNT","features":[312]},{"name":"D3DDD_TRANSFORMCAPS","features":[312]},{"name":"D3DDD_TRICAPS","features":[312]},{"name":"D3DDEBCAPS_SYSTEMMEMORY","features":[312]},{"name":"D3DDEBCAPS_VIDEOMEMORY","features":[312]},{"name":"D3DDEBUGMONITORTOKENS","features":[312]},{"name":"D3DDEB_BUFSIZE","features":[312]},{"name":"D3DDEB_CAPS","features":[312]},{"name":"D3DDEB_LPDATA","features":[312]},{"name":"D3DDECLMETHOD","features":[312]},{"name":"D3DDECLMETHOD_CROSSUV","features":[312]},{"name":"D3DDECLMETHOD_DEFAULT","features":[312]},{"name":"D3DDECLMETHOD_LOOKUP","features":[312]},{"name":"D3DDECLMETHOD_LOOKUPPRESAMPLED","features":[312]},{"name":"D3DDECLMETHOD_PARTIALU","features":[312]},{"name":"D3DDECLMETHOD_PARTIALV","features":[312]},{"name":"D3DDECLMETHOD_UV","features":[312]},{"name":"D3DDECLTYPE","features":[312]},{"name":"D3DDECLTYPE_D3DCOLOR","features":[312]},{"name":"D3DDECLTYPE_DEC3N","features":[312]},{"name":"D3DDECLTYPE_FLOAT1","features":[312]},{"name":"D3DDECLTYPE_FLOAT16_2","features":[312]},{"name":"D3DDECLTYPE_FLOAT16_4","features":[312]},{"name":"D3DDECLTYPE_FLOAT2","features":[312]},{"name":"D3DDECLTYPE_FLOAT3","features":[312]},{"name":"D3DDECLTYPE_FLOAT4","features":[312]},{"name":"D3DDECLTYPE_SHORT2","features":[312]},{"name":"D3DDECLTYPE_SHORT2N","features":[312]},{"name":"D3DDECLTYPE_SHORT4","features":[312]},{"name":"D3DDECLTYPE_SHORT4N","features":[312]},{"name":"D3DDECLTYPE_UBYTE4","features":[312]},{"name":"D3DDECLTYPE_UBYTE4N","features":[312]},{"name":"D3DDECLTYPE_UDEC3","features":[312]},{"name":"D3DDECLTYPE_UNUSED","features":[312]},{"name":"D3DDECLTYPE_USHORT2N","features":[312]},{"name":"D3DDECLTYPE_USHORT4N","features":[312]},{"name":"D3DDECLUSAGE","features":[312]},{"name":"D3DDECLUSAGE_BINORMAL","features":[312]},{"name":"D3DDECLUSAGE_BLENDINDICES","features":[312]},{"name":"D3DDECLUSAGE_BLENDWEIGHT","features":[312]},{"name":"D3DDECLUSAGE_COLOR","features":[312]},{"name":"D3DDECLUSAGE_DEPTH","features":[312]},{"name":"D3DDECLUSAGE_FOG","features":[312]},{"name":"D3DDECLUSAGE_NORMAL","features":[312]},{"name":"D3DDECLUSAGE_POSITION","features":[312]},{"name":"D3DDECLUSAGE_POSITIONT","features":[312]},{"name":"D3DDECLUSAGE_PSIZE","features":[312]},{"name":"D3DDECLUSAGE_SAMPLE","features":[312]},{"name":"D3DDECLUSAGE_TANGENT","features":[312]},{"name":"D3DDECLUSAGE_TESSFACTOR","features":[312]},{"name":"D3DDECLUSAGE_TEXCOORD","features":[312]},{"name":"D3DDEGREETYPE","features":[312]},{"name":"D3DDEGREE_CUBIC","features":[312]},{"name":"D3DDEGREE_LINEAR","features":[312]},{"name":"D3DDEGREE_QUADRATIC","features":[312]},{"name":"D3DDEGREE_QUINTIC","features":[312]},{"name":"D3DDEVCAPS2_ADAPTIVETESSNPATCH","features":[312]},{"name":"D3DDEVCAPS2_ADAPTIVETESSRTPATCH","features":[312]},{"name":"D3DDEVCAPS2_CAN_STRETCHRECT_FROM_TEXTURES","features":[312]},{"name":"D3DDEVCAPS2_DMAPNPATCH","features":[312]},{"name":"D3DDEVCAPS2_PRESAMPLEDDMAPNPATCH","features":[312]},{"name":"D3DDEVCAPS2_STREAMOFFSET","features":[312]},{"name":"D3DDEVCAPS2_VERTEXELEMENTSCANSHARESTREAMOFFSET","features":[312]},{"name":"D3DDEVCAPS_CANBLTSYSTONONLOCAL","features":[312]},{"name":"D3DDEVCAPS_CANRENDERAFTERFLIP","features":[312]},{"name":"D3DDEVCAPS_DRAWPRIMITIVES2","features":[312]},{"name":"D3DDEVCAPS_DRAWPRIMITIVES2EX","features":[312]},{"name":"D3DDEVCAPS_DRAWPRIMTLVERTEX","features":[312]},{"name":"D3DDEVCAPS_EXECUTESYSTEMMEMORY","features":[312]},{"name":"D3DDEVCAPS_EXECUTEVIDEOMEMORY","features":[312]},{"name":"D3DDEVCAPS_FLOATTLVERTEX","features":[312]},{"name":"D3DDEVCAPS_HWRASTERIZATION","features":[312]},{"name":"D3DDEVCAPS_HWTRANSFORMANDLIGHT","features":[312]},{"name":"D3DDEVCAPS_NPATCHES","features":[312]},{"name":"D3DDEVCAPS_PUREDEVICE","features":[312]},{"name":"D3DDEVCAPS_QUINTICRTPATCHES","features":[312]},{"name":"D3DDEVCAPS_RTPATCHES","features":[312]},{"name":"D3DDEVCAPS_RTPATCHHANDLEZERO","features":[312]},{"name":"D3DDEVCAPS_SEPARATETEXTUREMEMORIES","features":[312]},{"name":"D3DDEVCAPS_SORTDECREASINGZ","features":[312]},{"name":"D3DDEVCAPS_SORTEXACT","features":[312]},{"name":"D3DDEVCAPS_SORTINCREASINGZ","features":[312]},{"name":"D3DDEVCAPS_TEXTURENONLOCALVIDMEM","features":[312]},{"name":"D3DDEVCAPS_TEXTURESYSTEMMEMORY","features":[312]},{"name":"D3DDEVCAPS_TEXTUREVIDEOMEMORY","features":[312]},{"name":"D3DDEVCAPS_TLVERTEXSYSTEMMEMORY","features":[312]},{"name":"D3DDEVCAPS_TLVERTEXVIDEOMEMORY","features":[312]},{"name":"D3DDEVICEDESC","features":[303,312]},{"name":"D3DDEVICEDESC7","features":[312]},{"name":"D3DDEVICE_CREATION_PARAMETERS","features":[303,312]},{"name":"D3DDEVINFOID_D3DTEXTUREMANAGER","features":[312]},{"name":"D3DDEVINFOID_TEXTUREMANAGER","features":[312]},{"name":"D3DDEVINFOID_TEXTURING","features":[312]},{"name":"D3DDEVINFO_D3D9BANDWIDTHTIMINGS","features":[312]},{"name":"D3DDEVINFO_D3D9CACHEUTILIZATION","features":[312]},{"name":"D3DDEVINFO_D3D9INTERFACETIMINGS","features":[312]},{"name":"D3DDEVINFO_D3D9PIPELINETIMINGS","features":[312]},{"name":"D3DDEVINFO_D3D9STAGETIMINGS","features":[312]},{"name":"D3DDEVINFO_D3DVERTEXSTATS","features":[312]},{"name":"D3DDEVINFO_RESOURCEMANAGER","features":[303,312]},{"name":"D3DDEVINFO_VCACHE","features":[312]},{"name":"D3DDEVTYPE","features":[312]},{"name":"D3DDEVTYPE_HAL","features":[312]},{"name":"D3DDEVTYPE_NULLREF","features":[312]},{"name":"D3DDEVTYPE_REF","features":[312]},{"name":"D3DDEVTYPE_SW","features":[312]},{"name":"D3DDISPLAYMODE","features":[312]},{"name":"D3DDISPLAYMODEEX","features":[312]},{"name":"D3DDISPLAYMODEFILTER","features":[312]},{"name":"D3DDISPLAYROTATION","features":[312]},{"name":"D3DDISPLAYROTATION_180","features":[312]},{"name":"D3DDISPLAYROTATION_270","features":[312]},{"name":"D3DDISPLAYROTATION_90","features":[312]},{"name":"D3DDISPLAYROTATION_IDENTITY","features":[312]},{"name":"D3DDMAPSAMPLER","features":[312]},{"name":"D3DDMT_DISABLE","features":[312]},{"name":"D3DDMT_ENABLE","features":[312]},{"name":"D3DDP_MAXTEXCOORD","features":[312]},{"name":"D3DDP_PTRSTRIDE","features":[312]},{"name":"D3DDRAWPRIMITIVESTRIDEDDATA","features":[312]},{"name":"D3DDTCAPS_DEC3N","features":[312]},{"name":"D3DDTCAPS_FLOAT16_2","features":[312]},{"name":"D3DDTCAPS_FLOAT16_4","features":[312]},{"name":"D3DDTCAPS_SHORT2N","features":[312]},{"name":"D3DDTCAPS_SHORT4N","features":[312]},{"name":"D3DDTCAPS_UBYTE4","features":[312]},{"name":"D3DDTCAPS_UBYTE4N","features":[312]},{"name":"D3DDTCAPS_UDEC3","features":[312]},{"name":"D3DDTCAPS_USHORT2N","features":[312]},{"name":"D3DDTCAPS_USHORT4N","features":[312]},{"name":"D3DENCRYPTED_BLOCK_INFO","features":[312]},{"name":"D3DENUM_NO_DRIVERVERSION","features":[312]},{"name":"D3DENUM_WHQL_LEVEL","features":[312]},{"name":"D3DEXECUTEBUFFERDESC","features":[312]},{"name":"D3DEXECUTEDATA","features":[312]},{"name":"D3DEXECUTE_CLIPPED","features":[312]},{"name":"D3DEXECUTE_UNCLIPPED","features":[312]},{"name":"D3DFDS_ALPHACMPCAPS","features":[312]},{"name":"D3DFDS_COLORMODEL","features":[312]},{"name":"D3DFDS_DSTBLENDCAPS","features":[312]},{"name":"D3DFDS_GUID","features":[312]},{"name":"D3DFDS_HARDWARE","features":[312]},{"name":"D3DFDS_LINES","features":[312]},{"name":"D3DFDS_MISCCAPS","features":[312]},{"name":"D3DFDS_RASTERCAPS","features":[312]},{"name":"D3DFDS_SHADECAPS","features":[312]},{"name":"D3DFDS_SRCBLENDCAPS","features":[312]},{"name":"D3DFDS_TEXTUREADDRESSCAPS","features":[312]},{"name":"D3DFDS_TEXTUREBLENDCAPS","features":[312]},{"name":"D3DFDS_TEXTURECAPS","features":[312]},{"name":"D3DFDS_TEXTUREFILTERCAPS","features":[312]},{"name":"D3DFDS_TRIANGLES","features":[312]},{"name":"D3DFDS_ZCMPCAPS","features":[312]},{"name":"D3DFILLMODE","features":[312]},{"name":"D3DFILL_POINT","features":[312]},{"name":"D3DFILL_SOLID","features":[312]},{"name":"D3DFILL_WIREFRAME","features":[312]},{"name":"D3DFILTER_LINEAR","features":[312]},{"name":"D3DFILTER_LINEARMIPLINEAR","features":[312]},{"name":"D3DFILTER_LINEARMIPNEAREST","features":[312]},{"name":"D3DFILTER_MIPLINEAR","features":[312]},{"name":"D3DFILTER_MIPNEAREST","features":[312]},{"name":"D3DFILTER_NEAREST","features":[312]},{"name":"D3DFINDDEVICERESULT","features":[303,312]},{"name":"D3DFINDDEVICESEARCH","features":[303,312]},{"name":"D3DFMT_A1","features":[312]},{"name":"D3DFMT_A16B16G16R16","features":[312]},{"name":"D3DFMT_A16B16G16R16F","features":[312]},{"name":"D3DFMT_A1R5G5B5","features":[312]},{"name":"D3DFMT_A1_SURFACE_MAXHEIGHT","features":[312]},{"name":"D3DFMT_A1_SURFACE_MAXWIDTH","features":[312]},{"name":"D3DFMT_A2B10G10R10","features":[312]},{"name":"D3DFMT_A2B10G10R10_XR_BIAS","features":[312]},{"name":"D3DFMT_A2R10G10B10","features":[312]},{"name":"D3DFMT_A2W10V10U10","features":[312]},{"name":"D3DFMT_A32B32G32R32F","features":[312]},{"name":"D3DFMT_A4L4","features":[312]},{"name":"D3DFMT_A4R4G4B4","features":[312]},{"name":"D3DFMT_A8","features":[312]},{"name":"D3DFMT_A8B8G8R8","features":[312]},{"name":"D3DFMT_A8L8","features":[312]},{"name":"D3DFMT_A8P8","features":[312]},{"name":"D3DFMT_A8R3G3B2","features":[312]},{"name":"D3DFMT_A8R8G8B8","features":[312]},{"name":"D3DFMT_BINARYBUFFER","features":[312]},{"name":"D3DFMT_CxV8U8","features":[312]},{"name":"D3DFMT_D15S1","features":[312]},{"name":"D3DFMT_D16","features":[312]},{"name":"D3DFMT_D16_LOCKABLE","features":[312]},{"name":"D3DFMT_D24FS8","features":[312]},{"name":"D3DFMT_D24S8","features":[312]},{"name":"D3DFMT_D24X4S4","features":[312]},{"name":"D3DFMT_D24X8","features":[312]},{"name":"D3DFMT_D32","features":[312]},{"name":"D3DFMT_D32F_LOCKABLE","features":[312]},{"name":"D3DFMT_D32_LOCKABLE","features":[312]},{"name":"D3DFMT_DXT1","features":[312]},{"name":"D3DFMT_DXT2","features":[312]},{"name":"D3DFMT_DXT3","features":[312]},{"name":"D3DFMT_DXT4","features":[312]},{"name":"D3DFMT_DXT5","features":[312]},{"name":"D3DFMT_G16R16","features":[312]},{"name":"D3DFMT_G16R16F","features":[312]},{"name":"D3DFMT_G32R32F","features":[312]},{"name":"D3DFMT_G8R8_G8B8","features":[312]},{"name":"D3DFMT_INDEX16","features":[312]},{"name":"D3DFMT_INDEX32","features":[312]},{"name":"D3DFMT_L16","features":[312]},{"name":"D3DFMT_L6V5U5","features":[312]},{"name":"D3DFMT_L8","features":[312]},{"name":"D3DFMT_MULTI2_ARGB8","features":[312]},{"name":"D3DFMT_P8","features":[312]},{"name":"D3DFMT_Q16W16V16U16","features":[312]},{"name":"D3DFMT_Q8W8V8U8","features":[312]},{"name":"D3DFMT_R16F","features":[312]},{"name":"D3DFMT_R32F","features":[312]},{"name":"D3DFMT_R3G3B2","features":[312]},{"name":"D3DFMT_R5G6B5","features":[312]},{"name":"D3DFMT_R8G8B8","features":[312]},{"name":"D3DFMT_R8G8_B8G8","features":[312]},{"name":"D3DFMT_S8_LOCKABLE","features":[312]},{"name":"D3DFMT_UNKNOWN","features":[312]},{"name":"D3DFMT_UYVY","features":[312]},{"name":"D3DFMT_V16U16","features":[312]},{"name":"D3DFMT_V8U8","features":[312]},{"name":"D3DFMT_VERTEXDATA","features":[312]},{"name":"D3DFMT_X1R5G5B5","features":[312]},{"name":"D3DFMT_X4R4G4B4","features":[312]},{"name":"D3DFMT_X8B8G8R8","features":[312]},{"name":"D3DFMT_X8L8V8U8","features":[312]},{"name":"D3DFMT_X8R8G8B8","features":[312]},{"name":"D3DFMT_YUY2","features":[312]},{"name":"D3DFOGMODE","features":[312]},{"name":"D3DFOG_EXP","features":[312]},{"name":"D3DFOG_EXP2","features":[312]},{"name":"D3DFOG_LINEAR","features":[312]},{"name":"D3DFOG_NONE","features":[312]},{"name":"D3DFORMAT","features":[312]},{"name":"D3DFVFCAPS_DONOTSTRIPELEMENTS","features":[312]},{"name":"D3DFVFCAPS_PSIZE","features":[312]},{"name":"D3DFVFCAPS_TEXCOORDCOUNTMASK","features":[312]},{"name":"D3DFVF_DIFFUSE","features":[312]},{"name":"D3DFVF_LASTBETA_D3DCOLOR","features":[312]},{"name":"D3DFVF_LASTBETA_UBYTE4","features":[312]},{"name":"D3DFVF_NORMAL","features":[312]},{"name":"D3DFVF_POSITION_MASK","features":[312]},{"name":"D3DFVF_PSIZE","features":[312]},{"name":"D3DFVF_RESERVED0","features":[312]},{"name":"D3DFVF_RESERVED1","features":[312]},{"name":"D3DFVF_RESERVED2","features":[312]},{"name":"D3DFVF_SPECULAR","features":[312]},{"name":"D3DFVF_TEX0","features":[312]},{"name":"D3DFVF_TEX1","features":[312]},{"name":"D3DFVF_TEX2","features":[312]},{"name":"D3DFVF_TEX3","features":[312]},{"name":"D3DFVF_TEX4","features":[312]},{"name":"D3DFVF_TEX5","features":[312]},{"name":"D3DFVF_TEX6","features":[312]},{"name":"D3DFVF_TEX7","features":[312]},{"name":"D3DFVF_TEX8","features":[312]},{"name":"D3DFVF_TEXCOUNT_MASK","features":[312]},{"name":"D3DFVF_TEXCOUNT_SHIFT","features":[312]},{"name":"D3DFVF_TEXTUREFORMAT1","features":[312]},{"name":"D3DFVF_TEXTUREFORMAT2","features":[312]},{"name":"D3DFVF_TEXTUREFORMAT3","features":[312]},{"name":"D3DFVF_TEXTUREFORMAT4","features":[312]},{"name":"D3DFVF_XYZ","features":[312]},{"name":"D3DFVF_XYZB1","features":[312]},{"name":"D3DFVF_XYZB2","features":[312]},{"name":"D3DFVF_XYZB3","features":[312]},{"name":"D3DFVF_XYZB4","features":[312]},{"name":"D3DFVF_XYZB5","features":[312]},{"name":"D3DFVF_XYZRHW","features":[312]},{"name":"D3DFVF_XYZW","features":[312]},{"name":"D3DGAMMARAMP","features":[312]},{"name":"D3DGETDATA_FLUSH","features":[312]},{"name":"D3DHVERTEX","features":[312]},{"name":"D3DINDEXBUFFER_DESC","features":[312]},{"name":"D3DINSTRUCTION","features":[312]},{"name":"D3DISSUE_BEGIN","features":[312]},{"name":"D3DISSUE_END","features":[312]},{"name":"D3DKEYEXCHANGE_DXVA","features":[312]},{"name":"D3DKEYEXCHANGE_RSAES_OAEP","features":[312]},{"name":"D3DLIGHT","features":[396,312]},{"name":"D3DLIGHT2","features":[396,312]},{"name":"D3DLIGHT7","features":[396,312]},{"name":"D3DLIGHT9","features":[396,312]},{"name":"D3DLIGHTCAPS_DIRECTIONAL","features":[312]},{"name":"D3DLIGHTCAPS_GLSPOT","features":[312]},{"name":"D3DLIGHTCAPS_PARALLELPOINT","features":[312]},{"name":"D3DLIGHTCAPS_POINT","features":[312]},{"name":"D3DLIGHTCAPS_SPOT","features":[312]},{"name":"D3DLIGHTDATA","features":[396,312]},{"name":"D3DLIGHTINGCAPS","features":[312]},{"name":"D3DLIGHTINGELEMENT","features":[396,312]},{"name":"D3DLIGHTINGMODEL_MONO","features":[312]},{"name":"D3DLIGHTINGMODEL_RGB","features":[312]},{"name":"D3DLIGHTSTATETYPE","features":[312]},{"name":"D3DLIGHTSTATE_AMBIENT","features":[312]},{"name":"D3DLIGHTSTATE_COLORMODEL","features":[312]},{"name":"D3DLIGHTSTATE_COLORVERTEX","features":[312]},{"name":"D3DLIGHTSTATE_FOGDENSITY","features":[312]},{"name":"D3DLIGHTSTATE_FOGEND","features":[312]},{"name":"D3DLIGHTSTATE_FOGMODE","features":[312]},{"name":"D3DLIGHTSTATE_FOGSTART","features":[312]},{"name":"D3DLIGHTSTATE_MATERIAL","features":[312]},{"name":"D3DLIGHTTYPE","features":[312]},{"name":"D3DLIGHT_ACTIVE","features":[312]},{"name":"D3DLIGHT_DIRECTIONAL","features":[312]},{"name":"D3DLIGHT_NO_SPECULAR","features":[312]},{"name":"D3DLIGHT_POINT","features":[312]},{"name":"D3DLIGHT_SPOT","features":[312]},{"name":"D3DLINE","features":[312]},{"name":"D3DLINECAPS_ALPHACMP","features":[312]},{"name":"D3DLINECAPS_ANTIALIAS","features":[312]},{"name":"D3DLINECAPS_BLEND","features":[312]},{"name":"D3DLINECAPS_FOG","features":[312]},{"name":"D3DLINECAPS_TEXTURE","features":[312]},{"name":"D3DLINECAPS_ZTEST","features":[312]},{"name":"D3DLOCKED_BOX","features":[312]},{"name":"D3DLOCKED_RECT","features":[312]},{"name":"D3DLOCK_DISCARD","features":[312]},{"name":"D3DLOCK_DONOTWAIT","features":[312]},{"name":"D3DLOCK_NOOVERWRITE","features":[312]},{"name":"D3DLOCK_NOSYSLOCK","features":[312]},{"name":"D3DLOCK_NO_DIRTY_UPDATE","features":[312]},{"name":"D3DLOCK_READONLY","features":[312]},{"name":"D3DLVERTEX","features":[312]},{"name":"D3DMATERIAL","features":[312]},{"name":"D3DMATERIAL7","features":[312]},{"name":"D3DMATERIAL9","features":[312]},{"name":"D3DMATERIALCOLORSOURCE","features":[312]},{"name":"D3DMATRIXLOAD","features":[312]},{"name":"D3DMATRIXMULTIPLY","features":[312]},{"name":"D3DMAX30SHADERINSTRUCTIONS","features":[312]},{"name":"D3DMAXUSERCLIPPLANES","features":[312]},{"name":"D3DMCS_COLOR1","features":[312]},{"name":"D3DMCS_COLOR2","features":[312]},{"name":"D3DMCS_MATERIAL","features":[312]},{"name":"D3DMEMORYPRESSURE","features":[312]},{"name":"D3DMEMORYPRESSURE","features":[312]},{"name":"D3DMIN30SHADERINSTRUCTIONS","features":[312]},{"name":"D3DMP_16","features":[312]},{"name":"D3DMP_2_8","features":[312]},{"name":"D3DMP_DEFAULT","features":[312]},{"name":"D3DMULTISAMPLE_10_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_11_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_12_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_13_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_14_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_15_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_16_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_2_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_3_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_4_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_5_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_6_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_7_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_8_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_9_SAMPLES","features":[312]},{"name":"D3DMULTISAMPLE_NONE","features":[312]},{"name":"D3DMULTISAMPLE_NONMASKABLE","features":[312]},{"name":"D3DMULTISAMPLE_TYPE","features":[312]},{"name":"D3DOPCODE","features":[312]},{"name":"D3DOP_BRANCHFORWARD","features":[312]},{"name":"D3DOP_EXIT","features":[312]},{"name":"D3DOP_LINE","features":[312]},{"name":"D3DOP_MATRIXLOAD","features":[312]},{"name":"D3DOP_MATRIXMULTIPLY","features":[312]},{"name":"D3DOP_POINT","features":[312]},{"name":"D3DOP_PROCESSVERTICES","features":[312]},{"name":"D3DOP_SETSTATUS","features":[312]},{"name":"D3DOP_SPAN","features":[312]},{"name":"D3DOP_STATELIGHT","features":[312]},{"name":"D3DOP_STATERENDER","features":[312]},{"name":"D3DOP_STATETRANSFORM","features":[312]},{"name":"D3DOP_TEXTURELOAD","features":[312]},{"name":"D3DOP_TRIANGLE","features":[312]},{"name":"D3DOVERLAYCAPS_FULLRANGERGB","features":[312]},{"name":"D3DOVERLAYCAPS_LIMITEDRANGERGB","features":[312]},{"name":"D3DOVERLAYCAPS_STRETCHX","features":[312]},{"name":"D3DOVERLAYCAPS_STRETCHY","features":[312]},{"name":"D3DOVERLAYCAPS_YCbCr_BT601","features":[312]},{"name":"D3DOVERLAYCAPS_YCbCr_BT601_xvYCC","features":[312]},{"name":"D3DOVERLAYCAPS_YCbCr_BT709","features":[312]},{"name":"D3DOVERLAYCAPS_YCbCr_BT709_xvYCC","features":[312]},{"name":"D3DPAL_FREE","features":[312]},{"name":"D3DPAL_READONLY","features":[312]},{"name":"D3DPAL_RESERVED","features":[312]},{"name":"D3DPATCHEDGESTYLE","features":[312]},{"name":"D3DPATCHEDGE_CONTINUOUS","features":[312]},{"name":"D3DPATCHEDGE_DISCRETE","features":[312]},{"name":"D3DPBLENDCAPS_BLENDFACTOR","features":[312]},{"name":"D3DPBLENDCAPS_BOTHINVSRCALPHA","features":[312]},{"name":"D3DPBLENDCAPS_BOTHSRCALPHA","features":[312]},{"name":"D3DPBLENDCAPS_DESTALPHA","features":[312]},{"name":"D3DPBLENDCAPS_DESTCOLOR","features":[312]},{"name":"D3DPBLENDCAPS_INVDESTALPHA","features":[312]},{"name":"D3DPBLENDCAPS_INVDESTCOLOR","features":[312]},{"name":"D3DPBLENDCAPS_INVSRCALPHA","features":[312]},{"name":"D3DPBLENDCAPS_INVSRCCOLOR","features":[312]},{"name":"D3DPBLENDCAPS_INVSRCCOLOR2","features":[312]},{"name":"D3DPBLENDCAPS_ONE","features":[312]},{"name":"D3DPBLENDCAPS_SRCALPHA","features":[312]},{"name":"D3DPBLENDCAPS_SRCALPHASAT","features":[312]},{"name":"D3DPBLENDCAPS_SRCCOLOR","features":[312]},{"name":"D3DPBLENDCAPS_SRCCOLOR2","features":[312]},{"name":"D3DPBLENDCAPS_ZERO","features":[312]},{"name":"D3DPCMPCAPS_ALWAYS","features":[312]},{"name":"D3DPCMPCAPS_EQUAL","features":[312]},{"name":"D3DPCMPCAPS_GREATER","features":[312]},{"name":"D3DPCMPCAPS_GREATEREQUAL","features":[312]},{"name":"D3DPCMPCAPS_LESS","features":[312]},{"name":"D3DPCMPCAPS_LESSEQUAL","features":[312]},{"name":"D3DPCMPCAPS_NEVER","features":[312]},{"name":"D3DPCMPCAPS_NOTEQUAL","features":[312]},{"name":"D3DPERF_BeginEvent","features":[312]},{"name":"D3DPERF_EndEvent","features":[312]},{"name":"D3DPERF_GetStatus","features":[312]},{"name":"D3DPERF_QueryRepeatFrame","features":[303,312]},{"name":"D3DPERF_SetMarker","features":[312]},{"name":"D3DPERF_SetOptions","features":[312]},{"name":"D3DPERF_SetRegion","features":[312]},{"name":"D3DPICKRECORD","features":[312]},{"name":"D3DPMISCCAPS_BLENDOP","features":[312]},{"name":"D3DPMISCCAPS_CLIPPLANESCALEDPOINTS","features":[312]},{"name":"D3DPMISCCAPS_CLIPTLVERTS","features":[312]},{"name":"D3DPMISCCAPS_COLORWRITEENABLE","features":[312]},{"name":"D3DPMISCCAPS_CONFORMANT","features":[312]},{"name":"D3DPMISCCAPS_CULLCCW","features":[312]},{"name":"D3DPMISCCAPS_CULLCW","features":[312]},{"name":"D3DPMISCCAPS_CULLNONE","features":[312]},{"name":"D3DPMISCCAPS_FOGANDSPECULARALPHA","features":[312]},{"name":"D3DPMISCCAPS_FOGVERTEXCLAMPED","features":[312]},{"name":"D3DPMISCCAPS_INDEPENDENTWRITEMASKS","features":[312]},{"name":"D3DPMISCCAPS_LINEPATTERNREP","features":[312]},{"name":"D3DPMISCCAPS_MASKPLANES","features":[312]},{"name":"D3DPMISCCAPS_MASKZ","features":[312]},{"name":"D3DPMISCCAPS_MRTINDEPENDENTBITDEPTHS","features":[312]},{"name":"D3DPMISCCAPS_MRTPOSTPIXELSHADERBLENDING","features":[312]},{"name":"D3DPMISCCAPS_NULLREFERENCE","features":[312]},{"name":"D3DPMISCCAPS_PERSTAGECONSTANT","features":[312]},{"name":"D3DPMISCCAPS_POSTBLENDSRGBCONVERT","features":[312]},{"name":"D3DPMISCCAPS_SEPARATEALPHABLEND","features":[312]},{"name":"D3DPMISCCAPS_TSSARGTEMP","features":[312]},{"name":"D3DPOINT","features":[312]},{"name":"D3DPOOL","features":[312]},{"name":"D3DPOOL_DEFAULT","features":[312]},{"name":"D3DPOOL_MANAGED","features":[312]},{"name":"D3DPOOL_SCRATCH","features":[312]},{"name":"D3DPOOL_SYSTEMMEM","features":[312]},{"name":"D3DPRASTERCAPS_ANISOTROPY","features":[312]},{"name":"D3DPRASTERCAPS_ANTIALIASEDGES","features":[312]},{"name":"D3DPRASTERCAPS_ANTIALIASSORTDEPENDENT","features":[312]},{"name":"D3DPRASTERCAPS_ANTIALIASSORTINDEPENDENT","features":[312]},{"name":"D3DPRASTERCAPS_COLORPERSPECTIVE","features":[312]},{"name":"D3DPRASTERCAPS_DEPTHBIAS","features":[312]},{"name":"D3DPRASTERCAPS_DITHER","features":[312]},{"name":"D3DPRASTERCAPS_FOGRANGE","features":[312]},{"name":"D3DPRASTERCAPS_FOGTABLE","features":[312]},{"name":"D3DPRASTERCAPS_FOGVERTEX","features":[312]},{"name":"D3DPRASTERCAPS_MIPMAPLODBIAS","features":[312]},{"name":"D3DPRASTERCAPS_MULTISAMPLE_TOGGLE","features":[312]},{"name":"D3DPRASTERCAPS_PAT","features":[312]},{"name":"D3DPRASTERCAPS_ROP2","features":[312]},{"name":"D3DPRASTERCAPS_SCISSORTEST","features":[312]},{"name":"D3DPRASTERCAPS_SLOPESCALEDEPTHBIAS","features":[312]},{"name":"D3DPRASTERCAPS_STIPPLE","features":[312]},{"name":"D3DPRASTERCAPS_SUBPIXEL","features":[312]},{"name":"D3DPRASTERCAPS_SUBPIXELX","features":[312]},{"name":"D3DPRASTERCAPS_TRANSLUCENTSORTINDEPENDENT","features":[312]},{"name":"D3DPRASTERCAPS_WBUFFER","features":[312]},{"name":"D3DPRASTERCAPS_WFOG","features":[312]},{"name":"D3DPRASTERCAPS_XOR","features":[312]},{"name":"D3DPRASTERCAPS_ZBIAS","features":[312]},{"name":"D3DPRASTERCAPS_ZBUFFERLESSHSR","features":[312]},{"name":"D3DPRASTERCAPS_ZFOG","features":[312]},{"name":"D3DPRASTERCAPS_ZTEST","features":[312]},{"name":"D3DPRESENTFLAG_DEVICECLIP","features":[312]},{"name":"D3DPRESENTFLAG_DISCARD_DEPTHSTENCIL","features":[312]},{"name":"D3DPRESENTFLAG_LOCKABLE_BACKBUFFER","features":[312]},{"name":"D3DPRESENTFLAG_NOAUTOROTATE","features":[312]},{"name":"D3DPRESENTFLAG_OVERLAY_LIMITEDRGB","features":[312]},{"name":"D3DPRESENTFLAG_OVERLAY_YCbCr_BT709","features":[312]},{"name":"D3DPRESENTFLAG_OVERLAY_YCbCr_xvYCC","features":[312]},{"name":"D3DPRESENTFLAG_RESTRICTED_CONTENT","features":[312]},{"name":"D3DPRESENTFLAG_RESTRICT_SHARED_RESOURCE_DRIVER","features":[312]},{"name":"D3DPRESENTFLAG_UNPRUNEDMODE","features":[312]},{"name":"D3DPRESENTFLAG_VIDEO","features":[312]},{"name":"D3DPRESENTSTATS","features":[312]},{"name":"D3DPRESENTSTATS","features":[312]},{"name":"D3DPRESENT_BACK_BUFFERS_MAX","features":[312]},{"name":"D3DPRESENT_BACK_BUFFERS_MAX_EX","features":[312]},{"name":"D3DPRESENT_DONOTFLIP","features":[312]},{"name":"D3DPRESENT_DONOTWAIT","features":[312]},{"name":"D3DPRESENT_FLIPRESTART","features":[312]},{"name":"D3DPRESENT_FORCEIMMEDIATE","features":[312]},{"name":"D3DPRESENT_HIDEOVERLAY","features":[312]},{"name":"D3DPRESENT_INTERVAL_DEFAULT","features":[312]},{"name":"D3DPRESENT_INTERVAL_FOUR","features":[312]},{"name":"D3DPRESENT_INTERVAL_IMMEDIATE","features":[312]},{"name":"D3DPRESENT_INTERVAL_ONE","features":[312]},{"name":"D3DPRESENT_INTERVAL_THREE","features":[312]},{"name":"D3DPRESENT_INTERVAL_TWO","features":[312]},{"name":"D3DPRESENT_LINEAR_CONTENT","features":[312]},{"name":"D3DPRESENT_PARAMETERS","features":[303,312]},{"name":"D3DPRESENT_RATE_DEFAULT","features":[312]},{"name":"D3DPRESENT_UPDATECOLORKEY","features":[312]},{"name":"D3DPRESENT_UPDATEOVERLAYONLY","features":[312]},{"name":"D3DPRESENT_VIDEO_RESTRICT_TO_MONITOR","features":[312]},{"name":"D3DPRIMCAPS","features":[312]},{"name":"D3DPRIMITIVETYPE","features":[312]},{"name":"D3DPROCESSVERTICES","features":[312]},{"name":"D3DPROCESSVERTICES_COPY","features":[312]},{"name":"D3DPROCESSVERTICES_NOCOLOR","features":[312]},{"name":"D3DPROCESSVERTICES_OPMASK","features":[312]},{"name":"D3DPROCESSVERTICES_TRANSFORM","features":[312]},{"name":"D3DPROCESSVERTICES_TRANSFORMLIGHT","features":[312]},{"name":"D3DPROCESSVERTICES_UPDATEEXTENTS","features":[312]},{"name":"D3DPS20CAPS_ARBITRARYSWIZZLE","features":[312]},{"name":"D3DPS20CAPS_GRADIENTINSTRUCTIONS","features":[312]},{"name":"D3DPS20CAPS_NODEPENDENTREADLIMIT","features":[312]},{"name":"D3DPS20CAPS_NOTEXINSTRUCTIONLIMIT","features":[312]},{"name":"D3DPS20CAPS_PREDICATION","features":[312]},{"name":"D3DPS20_MAX_DYNAMICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DPS20_MAX_NUMINSTRUCTIONSLOTS","features":[312]},{"name":"D3DPS20_MAX_NUMTEMPS","features":[312]},{"name":"D3DPS20_MAX_STATICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DPS20_MIN_DYNAMICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DPS20_MIN_NUMINSTRUCTIONSLOTS","features":[312]},{"name":"D3DPS20_MIN_NUMTEMPS","features":[312]},{"name":"D3DPS20_MIN_STATICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DPSHADECAPS_ALPHAFLATBLEND","features":[312]},{"name":"D3DPSHADECAPS_ALPHAFLATSTIPPLED","features":[312]},{"name":"D3DPSHADECAPS_ALPHAGOURAUDBLEND","features":[312]},{"name":"D3DPSHADECAPS_ALPHAGOURAUDSTIPPLED","features":[312]},{"name":"D3DPSHADECAPS_ALPHAPHONGBLEND","features":[312]},{"name":"D3DPSHADECAPS_ALPHAPHONGSTIPPLED","features":[312]},{"name":"D3DPSHADECAPS_COLORFLATMONO","features":[312]},{"name":"D3DPSHADECAPS_COLORFLATRGB","features":[312]},{"name":"D3DPSHADECAPS_COLORGOURAUDMONO","features":[312]},{"name":"D3DPSHADECAPS_COLORGOURAUDRGB","features":[312]},{"name":"D3DPSHADECAPS_COLORPHONGMONO","features":[312]},{"name":"D3DPSHADECAPS_COLORPHONGRGB","features":[312]},{"name":"D3DPSHADECAPS_FOGFLAT","features":[312]},{"name":"D3DPSHADECAPS_FOGGOURAUD","features":[312]},{"name":"D3DPSHADECAPS_FOGPHONG","features":[312]},{"name":"D3DPSHADECAPS_SPECULARFLATMONO","features":[312]},{"name":"D3DPSHADECAPS_SPECULARFLATRGB","features":[312]},{"name":"D3DPSHADECAPS_SPECULARGOURAUDMONO","features":[312]},{"name":"D3DPSHADECAPS_SPECULARGOURAUDRGB","features":[312]},{"name":"D3DPSHADECAPS_SPECULARPHONGMONO","features":[312]},{"name":"D3DPSHADECAPS_SPECULARPHONGRGB","features":[312]},{"name":"D3DPSHADERCAPS2_0","features":[312]},{"name":"D3DPTADDRESSCAPS_BORDER","features":[312]},{"name":"D3DPTADDRESSCAPS_CLAMP","features":[312]},{"name":"D3DPTADDRESSCAPS_INDEPENDENTUV","features":[312]},{"name":"D3DPTADDRESSCAPS_MIRROR","features":[312]},{"name":"D3DPTADDRESSCAPS_MIRRORONCE","features":[312]},{"name":"D3DPTADDRESSCAPS_WRAP","features":[312]},{"name":"D3DPTBLENDCAPS_ADD","features":[312]},{"name":"D3DPTBLENDCAPS_COPY","features":[312]},{"name":"D3DPTBLENDCAPS_DECAL","features":[312]},{"name":"D3DPTBLENDCAPS_DECALALPHA","features":[312]},{"name":"D3DPTBLENDCAPS_DECALMASK","features":[312]},{"name":"D3DPTBLENDCAPS_MODULATE","features":[312]},{"name":"D3DPTBLENDCAPS_MODULATEALPHA","features":[312]},{"name":"D3DPTBLENDCAPS_MODULATEMASK","features":[312]},{"name":"D3DPTEXTURECAPS_ALPHA","features":[312]},{"name":"D3DPTEXTURECAPS_ALPHAPALETTE","features":[312]},{"name":"D3DPTEXTURECAPS_BORDER","features":[312]},{"name":"D3DPTEXTURECAPS_COLORKEYBLEND","features":[312]},{"name":"D3DPTEXTURECAPS_CUBEMAP","features":[312]},{"name":"D3DPTEXTURECAPS_CUBEMAP_POW2","features":[312]},{"name":"D3DPTEXTURECAPS_MIPCUBEMAP","features":[312]},{"name":"D3DPTEXTURECAPS_MIPMAP","features":[312]},{"name":"D3DPTEXTURECAPS_MIPVOLUMEMAP","features":[312]},{"name":"D3DPTEXTURECAPS_NONPOW2CONDITIONAL","features":[312]},{"name":"D3DPTEXTURECAPS_NOPROJECTEDBUMPENV","features":[312]},{"name":"D3DPTEXTURECAPS_PERSPECTIVE","features":[312]},{"name":"D3DPTEXTURECAPS_POW2","features":[312]},{"name":"D3DPTEXTURECAPS_PROJECTED","features":[312]},{"name":"D3DPTEXTURECAPS_SQUAREONLY","features":[312]},{"name":"D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE","features":[312]},{"name":"D3DPTEXTURECAPS_TRANSPARENCY","features":[312]},{"name":"D3DPTEXTURECAPS_VOLUMEMAP","features":[312]},{"name":"D3DPTEXTURECAPS_VOLUMEMAP_POW2","features":[312]},{"name":"D3DPTFILTERCAPS_CONVOLUTIONMONO","features":[312]},{"name":"D3DPTFILTERCAPS_LINEAR","features":[312]},{"name":"D3DPTFILTERCAPS_LINEARMIPLINEAR","features":[312]},{"name":"D3DPTFILTERCAPS_LINEARMIPNEAREST","features":[312]},{"name":"D3DPTFILTERCAPS_MAGFAFLATCUBIC","features":[312]},{"name":"D3DPTFILTERCAPS_MAGFANISOTROPIC","features":[312]},{"name":"D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC","features":[312]},{"name":"D3DPTFILTERCAPS_MAGFGAUSSIANQUAD","features":[312]},{"name":"D3DPTFILTERCAPS_MAGFLINEAR","features":[312]},{"name":"D3DPTFILTERCAPS_MAGFPOINT","features":[312]},{"name":"D3DPTFILTERCAPS_MAGFPYRAMIDALQUAD","features":[312]},{"name":"D3DPTFILTERCAPS_MINFANISOTROPIC","features":[312]},{"name":"D3DPTFILTERCAPS_MINFGAUSSIANQUAD","features":[312]},{"name":"D3DPTFILTERCAPS_MINFLINEAR","features":[312]},{"name":"D3DPTFILTERCAPS_MINFPOINT","features":[312]},{"name":"D3DPTFILTERCAPS_MINFPYRAMIDALQUAD","features":[312]},{"name":"D3DPTFILTERCAPS_MIPFLINEAR","features":[312]},{"name":"D3DPTFILTERCAPS_MIPFPOINT","features":[312]},{"name":"D3DPTFILTERCAPS_MIPLINEAR","features":[312]},{"name":"D3DPTFILTERCAPS_MIPNEAREST","features":[312]},{"name":"D3DPTFILTERCAPS_NEAREST","features":[312]},{"name":"D3DPT_LINELIST","features":[312]},{"name":"D3DPT_LINESTRIP","features":[312]},{"name":"D3DPT_POINTLIST","features":[312]},{"name":"D3DPT_TRIANGLEFAN","features":[312]},{"name":"D3DPT_TRIANGLELIST","features":[312]},{"name":"D3DPT_TRIANGLESTRIP","features":[312]},{"name":"D3DPV_DONOTCOPYDATA","features":[312]},{"name":"D3DQUERYTYPE","features":[312]},{"name":"D3DQUERYTYPE_BANDWIDTHTIMINGS","features":[312]},{"name":"D3DQUERYTYPE_CACHEUTILIZATION","features":[312]},{"name":"D3DQUERYTYPE_EVENT","features":[312]},{"name":"D3DQUERYTYPE_INTERFACETIMINGS","features":[312]},{"name":"D3DQUERYTYPE_MEMORYPRESSURE","features":[312]},{"name":"D3DQUERYTYPE_OCCLUSION","features":[312]},{"name":"D3DQUERYTYPE_PIPELINETIMINGS","features":[312]},{"name":"D3DQUERYTYPE_PIXELTIMINGS","features":[312]},{"name":"D3DQUERYTYPE_RESOURCEMANAGER","features":[312]},{"name":"D3DQUERYTYPE_TIMESTAMP","features":[312]},{"name":"D3DQUERYTYPE_TIMESTAMPDISJOINT","features":[312]},{"name":"D3DQUERYTYPE_TIMESTAMPFREQ","features":[312]},{"name":"D3DQUERYTYPE_VCACHE","features":[312]},{"name":"D3DQUERYTYPE_VERTEXSTATS","features":[312]},{"name":"D3DQUERYTYPE_VERTEXTIMINGS","features":[312]},{"name":"D3DRANGE","features":[312]},{"name":"D3DRASTER_STATUS","features":[303,312]},{"name":"D3DRECT","features":[312]},{"name":"D3DRECTPATCH_INFO","features":[312]},{"name":"D3DRENDERSTATETYPE","features":[312]},{"name":"D3DRENDERSTATE_WRAPBIAS","features":[312]},{"name":"D3DRESOURCESTATS","features":[303,312]},{"name":"D3DRESOURCETYPE","features":[312]},{"name":"D3DRS_ADAPTIVETESS_W","features":[312]},{"name":"D3DRS_ADAPTIVETESS_X","features":[312]},{"name":"D3DRS_ADAPTIVETESS_Y","features":[312]},{"name":"D3DRS_ADAPTIVETESS_Z","features":[312]},{"name":"D3DRS_ALPHABLENDENABLE","features":[312]},{"name":"D3DRS_ALPHAFUNC","features":[312]},{"name":"D3DRS_ALPHAREF","features":[312]},{"name":"D3DRS_ALPHATESTENABLE","features":[312]},{"name":"D3DRS_AMBIENT","features":[312]},{"name":"D3DRS_AMBIENTMATERIALSOURCE","features":[312]},{"name":"D3DRS_ANTIALIASEDLINEENABLE","features":[312]},{"name":"D3DRS_BLENDFACTOR","features":[312]},{"name":"D3DRS_BLENDOP","features":[312]},{"name":"D3DRS_BLENDOPALPHA","features":[312]},{"name":"D3DRS_CCW_STENCILFAIL","features":[312]},{"name":"D3DRS_CCW_STENCILFUNC","features":[312]},{"name":"D3DRS_CCW_STENCILPASS","features":[312]},{"name":"D3DRS_CCW_STENCILZFAIL","features":[312]},{"name":"D3DRS_CLIPPING","features":[312]},{"name":"D3DRS_CLIPPLANEENABLE","features":[312]},{"name":"D3DRS_COLORVERTEX","features":[312]},{"name":"D3DRS_COLORWRITEENABLE","features":[312]},{"name":"D3DRS_COLORWRITEENABLE1","features":[312]},{"name":"D3DRS_COLORWRITEENABLE2","features":[312]},{"name":"D3DRS_COLORWRITEENABLE3","features":[312]},{"name":"D3DRS_CULLMODE","features":[312]},{"name":"D3DRS_DEBUGMONITORTOKEN","features":[312]},{"name":"D3DRS_DEPTHBIAS","features":[312]},{"name":"D3DRS_DESTBLEND","features":[312]},{"name":"D3DRS_DESTBLENDALPHA","features":[312]},{"name":"D3DRS_DIFFUSEMATERIALSOURCE","features":[312]},{"name":"D3DRS_DITHERENABLE","features":[312]},{"name":"D3DRS_EMISSIVEMATERIALSOURCE","features":[312]},{"name":"D3DRS_ENABLEADAPTIVETESSELLATION","features":[312]},{"name":"D3DRS_FILLMODE","features":[312]},{"name":"D3DRS_FOGCOLOR","features":[312]},{"name":"D3DRS_FOGDENSITY","features":[312]},{"name":"D3DRS_FOGENABLE","features":[312]},{"name":"D3DRS_FOGEND","features":[312]},{"name":"D3DRS_FOGSTART","features":[312]},{"name":"D3DRS_FOGTABLEMODE","features":[312]},{"name":"D3DRS_FOGVERTEXMODE","features":[312]},{"name":"D3DRS_INDEXEDVERTEXBLENDENABLE","features":[312]},{"name":"D3DRS_LASTPIXEL","features":[312]},{"name":"D3DRS_LIGHTING","features":[312]},{"name":"D3DRS_LOCALVIEWER","features":[312]},{"name":"D3DRS_MAXTESSELLATIONLEVEL","features":[312]},{"name":"D3DRS_MINTESSELLATIONLEVEL","features":[312]},{"name":"D3DRS_MULTISAMPLEANTIALIAS","features":[312]},{"name":"D3DRS_MULTISAMPLEMASK","features":[312]},{"name":"D3DRS_NORMALDEGREE","features":[312]},{"name":"D3DRS_NORMALIZENORMALS","features":[312]},{"name":"D3DRS_PATCHEDGESTYLE","features":[312]},{"name":"D3DRS_POINTSCALEENABLE","features":[312]},{"name":"D3DRS_POINTSCALE_A","features":[312]},{"name":"D3DRS_POINTSCALE_B","features":[312]},{"name":"D3DRS_POINTSCALE_C","features":[312]},{"name":"D3DRS_POINTSIZE","features":[312]},{"name":"D3DRS_POINTSIZE_MAX","features":[312]},{"name":"D3DRS_POINTSIZE_MIN","features":[312]},{"name":"D3DRS_POINTSPRITEENABLE","features":[312]},{"name":"D3DRS_POSITIONDEGREE","features":[312]},{"name":"D3DRS_RANGEFOGENABLE","features":[312]},{"name":"D3DRS_SCISSORTESTENABLE","features":[312]},{"name":"D3DRS_SEPARATEALPHABLENDENABLE","features":[312]},{"name":"D3DRS_SHADEMODE","features":[312]},{"name":"D3DRS_SLOPESCALEDEPTHBIAS","features":[312]},{"name":"D3DRS_SPECULARENABLE","features":[312]},{"name":"D3DRS_SPECULARMATERIALSOURCE","features":[312]},{"name":"D3DRS_SRCBLEND","features":[312]},{"name":"D3DRS_SRCBLENDALPHA","features":[312]},{"name":"D3DRS_SRGBWRITEENABLE","features":[312]},{"name":"D3DRS_STENCILENABLE","features":[312]},{"name":"D3DRS_STENCILFAIL","features":[312]},{"name":"D3DRS_STENCILFUNC","features":[312]},{"name":"D3DRS_STENCILMASK","features":[312]},{"name":"D3DRS_STENCILPASS","features":[312]},{"name":"D3DRS_STENCILREF","features":[312]},{"name":"D3DRS_STENCILWRITEMASK","features":[312]},{"name":"D3DRS_STENCILZFAIL","features":[312]},{"name":"D3DRS_TEXTUREFACTOR","features":[312]},{"name":"D3DRS_TWEENFACTOR","features":[312]},{"name":"D3DRS_TWOSIDEDSTENCILMODE","features":[312]},{"name":"D3DRS_VERTEXBLEND","features":[312]},{"name":"D3DRS_WRAP0","features":[312]},{"name":"D3DRS_WRAP1","features":[312]},{"name":"D3DRS_WRAP10","features":[312]},{"name":"D3DRS_WRAP11","features":[312]},{"name":"D3DRS_WRAP12","features":[312]},{"name":"D3DRS_WRAP13","features":[312]},{"name":"D3DRS_WRAP14","features":[312]},{"name":"D3DRS_WRAP15","features":[312]},{"name":"D3DRS_WRAP2","features":[312]},{"name":"D3DRS_WRAP3","features":[312]},{"name":"D3DRS_WRAP4","features":[312]},{"name":"D3DRS_WRAP5","features":[312]},{"name":"D3DRS_WRAP6","features":[312]},{"name":"D3DRS_WRAP7","features":[312]},{"name":"D3DRS_WRAP8","features":[312]},{"name":"D3DRS_WRAP9","features":[312]},{"name":"D3DRS_ZENABLE","features":[312]},{"name":"D3DRS_ZFUNC","features":[312]},{"name":"D3DRS_ZWRITEENABLE","features":[312]},{"name":"D3DRTYPECOUNT","features":[312]},{"name":"D3DRTYPE_CUBETEXTURE","features":[312]},{"name":"D3DRTYPE_INDEXBUFFER","features":[312]},{"name":"D3DRTYPE_SURFACE","features":[312]},{"name":"D3DRTYPE_TEXTURE","features":[312]},{"name":"D3DRTYPE_VERTEXBUFFER","features":[312]},{"name":"D3DRTYPE_VOLUME","features":[312]},{"name":"D3DRTYPE_VOLUMETEXTURE","features":[312]},{"name":"D3DSAMPLERSTATETYPE","features":[312]},{"name":"D3DSAMPLER_TEXTURE_TYPE","features":[312]},{"name":"D3DSAMP_ADDRESSU","features":[312]},{"name":"D3DSAMP_ADDRESSV","features":[312]},{"name":"D3DSAMP_ADDRESSW","features":[312]},{"name":"D3DSAMP_BORDERCOLOR","features":[312]},{"name":"D3DSAMP_DMAPOFFSET","features":[312]},{"name":"D3DSAMP_ELEMENTINDEX","features":[312]},{"name":"D3DSAMP_MAGFILTER","features":[312]},{"name":"D3DSAMP_MAXANISOTROPY","features":[312]},{"name":"D3DSAMP_MAXMIPLEVEL","features":[312]},{"name":"D3DSAMP_MINFILTER","features":[312]},{"name":"D3DSAMP_MIPFILTER","features":[312]},{"name":"D3DSAMP_MIPMAPLODBIAS","features":[312]},{"name":"D3DSAMP_SRGBTEXTURE","features":[312]},{"name":"D3DSBT_ALL","features":[312]},{"name":"D3DSBT_PIXELSTATE","features":[312]},{"name":"D3DSBT_VERTEXSTATE","features":[312]},{"name":"D3DSCANLINEORDERING","features":[312]},{"name":"D3DSCANLINEORDERING_INTERLACED","features":[312]},{"name":"D3DSCANLINEORDERING_PROGRESSIVE","features":[312]},{"name":"D3DSCANLINEORDERING_UNKNOWN","features":[312]},{"name":"D3DSETSTATUS_EXTENTS","features":[312]},{"name":"D3DSETSTATUS_STATUS","features":[312]},{"name":"D3DSGR_CALIBRATE","features":[312]},{"name":"D3DSGR_NO_CALIBRATION","features":[312]},{"name":"D3DSHADEMODE","features":[312]},{"name":"D3DSHADER_ADDRESSMODE_SHIFT","features":[312]},{"name":"D3DSHADER_ADDRESSMODE_TYPE","features":[312]},{"name":"D3DSHADER_ADDRMODE_ABSOLUTE","features":[312]},{"name":"D3DSHADER_ADDRMODE_RELATIVE","features":[312]},{"name":"D3DSHADER_COMPARISON","features":[312]},{"name":"D3DSHADER_COMPARISON_SHIFT","features":[312]},{"name":"D3DSHADER_INSTRUCTION_OPCODE_TYPE","features":[312]},{"name":"D3DSHADER_MIN_PRECISION","features":[312]},{"name":"D3DSHADER_MISCTYPE_OFFSETS","features":[312]},{"name":"D3DSHADER_PARAM_REGISTER_TYPE","features":[312]},{"name":"D3DSHADER_PARAM_SRCMOD_TYPE","features":[312]},{"name":"D3DSHADE_FLAT","features":[312]},{"name":"D3DSHADE_GOURAUD","features":[312]},{"name":"D3DSHADE_PHONG","features":[312]},{"name":"D3DSIO_ABS","features":[312]},{"name":"D3DSIO_ADD","features":[312]},{"name":"D3DSIO_BEM","features":[312]},{"name":"D3DSIO_BREAK","features":[312]},{"name":"D3DSIO_BREAKC","features":[312]},{"name":"D3DSIO_BREAKP","features":[312]},{"name":"D3DSIO_CALL","features":[312]},{"name":"D3DSIO_CALLNZ","features":[312]},{"name":"D3DSIO_CMP","features":[312]},{"name":"D3DSIO_CND","features":[312]},{"name":"D3DSIO_COMMENT","features":[312]},{"name":"D3DSIO_CRS","features":[312]},{"name":"D3DSIO_DCL","features":[312]},{"name":"D3DSIO_DEF","features":[312]},{"name":"D3DSIO_DEFB","features":[312]},{"name":"D3DSIO_DEFI","features":[312]},{"name":"D3DSIO_DP2ADD","features":[312]},{"name":"D3DSIO_DP3","features":[312]},{"name":"D3DSIO_DP4","features":[312]},{"name":"D3DSIO_DST","features":[312]},{"name":"D3DSIO_DSX","features":[312]},{"name":"D3DSIO_DSY","features":[312]},{"name":"D3DSIO_ELSE","features":[312]},{"name":"D3DSIO_END","features":[312]},{"name":"D3DSIO_ENDIF","features":[312]},{"name":"D3DSIO_ENDLOOP","features":[312]},{"name":"D3DSIO_ENDREP","features":[312]},{"name":"D3DSIO_EXP","features":[312]},{"name":"D3DSIO_EXPP","features":[312]},{"name":"D3DSIO_FRC","features":[312]},{"name":"D3DSIO_IF","features":[312]},{"name":"D3DSIO_IFC","features":[312]},{"name":"D3DSIO_LABEL","features":[312]},{"name":"D3DSIO_LIT","features":[312]},{"name":"D3DSIO_LOG","features":[312]},{"name":"D3DSIO_LOGP","features":[312]},{"name":"D3DSIO_LOOP","features":[312]},{"name":"D3DSIO_LRP","features":[312]},{"name":"D3DSIO_M3x2","features":[312]},{"name":"D3DSIO_M3x3","features":[312]},{"name":"D3DSIO_M3x4","features":[312]},{"name":"D3DSIO_M4x3","features":[312]},{"name":"D3DSIO_M4x4","features":[312]},{"name":"D3DSIO_MAD","features":[312]},{"name":"D3DSIO_MAX","features":[312]},{"name":"D3DSIO_MIN","features":[312]},{"name":"D3DSIO_MOV","features":[312]},{"name":"D3DSIO_MOVA","features":[312]},{"name":"D3DSIO_MUL","features":[312]},{"name":"D3DSIO_NOP","features":[312]},{"name":"D3DSIO_NRM","features":[312]},{"name":"D3DSIO_PHASE","features":[312]},{"name":"D3DSIO_POW","features":[312]},{"name":"D3DSIO_RCP","features":[312]},{"name":"D3DSIO_REP","features":[312]},{"name":"D3DSIO_RESERVED0","features":[312]},{"name":"D3DSIO_RET","features":[312]},{"name":"D3DSIO_RSQ","features":[312]},{"name":"D3DSIO_SETP","features":[312]},{"name":"D3DSIO_SGE","features":[312]},{"name":"D3DSIO_SGN","features":[312]},{"name":"D3DSIO_SINCOS","features":[312]},{"name":"D3DSIO_SLT","features":[312]},{"name":"D3DSIO_SUB","features":[312]},{"name":"D3DSIO_TEX","features":[312]},{"name":"D3DSIO_TEXBEM","features":[312]},{"name":"D3DSIO_TEXBEML","features":[312]},{"name":"D3DSIO_TEXCOORD","features":[312]},{"name":"D3DSIO_TEXDEPTH","features":[312]},{"name":"D3DSIO_TEXDP3","features":[312]},{"name":"D3DSIO_TEXDP3TEX","features":[312]},{"name":"D3DSIO_TEXKILL","features":[312]},{"name":"D3DSIO_TEXLDD","features":[312]},{"name":"D3DSIO_TEXLDL","features":[312]},{"name":"D3DSIO_TEXM3x2DEPTH","features":[312]},{"name":"D3DSIO_TEXM3x2PAD","features":[312]},{"name":"D3DSIO_TEXM3x2TEX","features":[312]},{"name":"D3DSIO_TEXM3x3","features":[312]},{"name":"D3DSIO_TEXM3x3PAD","features":[312]},{"name":"D3DSIO_TEXM3x3SPEC","features":[312]},{"name":"D3DSIO_TEXM3x3TEX","features":[312]},{"name":"D3DSIO_TEXM3x3VSPEC","features":[312]},{"name":"D3DSIO_TEXREG2AR","features":[312]},{"name":"D3DSIO_TEXREG2GB","features":[312]},{"name":"D3DSIO_TEXREG2RGB","features":[312]},{"name":"D3DSI_COISSUE","features":[312]},{"name":"D3DSI_COMMENTSIZE_MASK","features":[312]},{"name":"D3DSI_COMMENTSIZE_SHIFT","features":[312]},{"name":"D3DSI_INSTLENGTH_MASK","features":[312]},{"name":"D3DSI_INSTLENGTH_SHIFT","features":[312]},{"name":"D3DSI_OPCODE_MASK","features":[312]},{"name":"D3DSMO_FACE","features":[312]},{"name":"D3DSMO_POSITION","features":[312]},{"name":"D3DSPAN","features":[312]},{"name":"D3DSPC_EQ","features":[312]},{"name":"D3DSPC_GE","features":[312]},{"name":"D3DSPC_GT","features":[312]},{"name":"D3DSPC_LE","features":[312]},{"name":"D3DSPC_LT","features":[312]},{"name":"D3DSPC_NE","features":[312]},{"name":"D3DSPC_RESERVED0","features":[312]},{"name":"D3DSPC_RESERVED1","features":[312]},{"name":"D3DSPD_IUNKNOWN","features":[312]},{"name":"D3DSPR_ADDR","features":[312]},{"name":"D3DSPR_ATTROUT","features":[312]},{"name":"D3DSPR_COLOROUT","features":[312]},{"name":"D3DSPR_CONST","features":[312]},{"name":"D3DSPR_CONST2","features":[312]},{"name":"D3DSPR_CONST3","features":[312]},{"name":"D3DSPR_CONST4","features":[312]},{"name":"D3DSPR_CONSTBOOL","features":[312]},{"name":"D3DSPR_CONSTINT","features":[312]},{"name":"D3DSPR_DEPTHOUT","features":[312]},{"name":"D3DSPR_INPUT","features":[312]},{"name":"D3DSPR_LABEL","features":[312]},{"name":"D3DSPR_LOOP","features":[312]},{"name":"D3DSPR_MISCTYPE","features":[312]},{"name":"D3DSPR_OUTPUT","features":[312]},{"name":"D3DSPR_PREDICATE","features":[312]},{"name":"D3DSPR_RASTOUT","features":[312]},{"name":"D3DSPR_SAMPLER","features":[312]},{"name":"D3DSPR_TEMP","features":[312]},{"name":"D3DSPR_TEMPFLOAT16","features":[312]},{"name":"D3DSPR_TEXCRDOUT","features":[312]},{"name":"D3DSPR_TEXTURE","features":[312]},{"name":"D3DSPSM_ABS","features":[312]},{"name":"D3DSPSM_ABSNEG","features":[312]},{"name":"D3DSPSM_BIAS","features":[312]},{"name":"D3DSPSM_BIASNEG","features":[312]},{"name":"D3DSPSM_COMP","features":[312]},{"name":"D3DSPSM_DW","features":[312]},{"name":"D3DSPSM_DZ","features":[312]},{"name":"D3DSPSM_NEG","features":[312]},{"name":"D3DSPSM_NONE","features":[312]},{"name":"D3DSPSM_NOT","features":[312]},{"name":"D3DSPSM_SIGN","features":[312]},{"name":"D3DSPSM_SIGNNEG","features":[312]},{"name":"D3DSPSM_X2","features":[312]},{"name":"D3DSPSM_X2NEG","features":[312]},{"name":"D3DSP_DCL_USAGEINDEX_MASK","features":[312]},{"name":"D3DSP_DCL_USAGEINDEX_SHIFT","features":[312]},{"name":"D3DSP_DCL_USAGE_MASK","features":[312]},{"name":"D3DSP_DCL_USAGE_SHIFT","features":[312]},{"name":"D3DSP_DSTMOD_MASK","features":[312]},{"name":"D3DSP_DSTMOD_SHIFT","features":[312]},{"name":"D3DSP_DSTSHIFT_MASK","features":[312]},{"name":"D3DSP_DSTSHIFT_SHIFT","features":[312]},{"name":"D3DSP_MIN_PRECISION_MASK","features":[312]},{"name":"D3DSP_MIN_PRECISION_SHIFT","features":[312]},{"name":"D3DSP_OPCODESPECIFICCONTROL_MASK","features":[312]},{"name":"D3DSP_OPCODESPECIFICCONTROL_SHIFT","features":[312]},{"name":"D3DSP_REGNUM_MASK","features":[312]},{"name":"D3DSP_REGTYPE_MASK","features":[312]},{"name":"D3DSP_REGTYPE_MASK2","features":[312]},{"name":"D3DSP_REGTYPE_SHIFT","features":[312]},{"name":"D3DSP_REGTYPE_SHIFT2","features":[312]},{"name":"D3DSP_SRCMOD_MASK","features":[312]},{"name":"D3DSP_SRCMOD_SHIFT","features":[312]},{"name":"D3DSP_SWIZZLE_MASK","features":[312]},{"name":"D3DSP_SWIZZLE_SHIFT","features":[312]},{"name":"D3DSP_TEXTURETYPE_MASK","features":[312]},{"name":"D3DSP_TEXTURETYPE_SHIFT","features":[312]},{"name":"D3DSP_WRITEMASK_0","features":[312]},{"name":"D3DSP_WRITEMASK_1","features":[312]},{"name":"D3DSP_WRITEMASK_2","features":[312]},{"name":"D3DSP_WRITEMASK_3","features":[312]},{"name":"D3DSP_WRITEMASK_ALL","features":[312]},{"name":"D3DSRO_FOG","features":[312]},{"name":"D3DSRO_POINT_SIZE","features":[312]},{"name":"D3DSRO_POSITION","features":[312]},{"name":"D3DSTATE","features":[312]},{"name":"D3DSTATEBLOCKTYPE","features":[312]},{"name":"D3DSTATE_OVERRIDE_BIAS","features":[312]},{"name":"D3DSTATS","features":[312]},{"name":"D3DSTATUS","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONBACK","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONBOTTOM","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONFRONT","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN0","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN1","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN2","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN3","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN4","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN5","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONLEFT","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONRIGHT","features":[312]},{"name":"D3DSTATUS_CLIPINTERSECTIONTOP","features":[312]},{"name":"D3DSTATUS_CLIPUNIONBACK","features":[312]},{"name":"D3DSTATUS_CLIPUNIONBOTTOM","features":[312]},{"name":"D3DSTATUS_CLIPUNIONFRONT","features":[312]},{"name":"D3DSTATUS_CLIPUNIONGEN0","features":[312]},{"name":"D3DSTATUS_CLIPUNIONGEN1","features":[312]},{"name":"D3DSTATUS_CLIPUNIONGEN2","features":[312]},{"name":"D3DSTATUS_CLIPUNIONGEN3","features":[312]},{"name":"D3DSTATUS_CLIPUNIONGEN4","features":[312]},{"name":"D3DSTATUS_CLIPUNIONGEN5","features":[312]},{"name":"D3DSTATUS_CLIPUNIONLEFT","features":[312]},{"name":"D3DSTATUS_CLIPUNIONRIGHT","features":[312]},{"name":"D3DSTATUS_CLIPUNIONTOP","features":[312]},{"name":"D3DSTATUS_ZNOTVISIBLE","features":[312]},{"name":"D3DSTENCILCAPS_DECR","features":[312]},{"name":"D3DSTENCILCAPS_DECRSAT","features":[312]},{"name":"D3DSTENCILCAPS_INCR","features":[312]},{"name":"D3DSTENCILCAPS_INCRSAT","features":[312]},{"name":"D3DSTENCILCAPS_INVERT","features":[312]},{"name":"D3DSTENCILCAPS_KEEP","features":[312]},{"name":"D3DSTENCILCAPS_REPLACE","features":[312]},{"name":"D3DSTENCILCAPS_TWOSIDED","features":[312]},{"name":"D3DSTENCILCAPS_ZERO","features":[312]},{"name":"D3DSTENCILOP","features":[312]},{"name":"D3DSTENCILOP_DECR","features":[312]},{"name":"D3DSTENCILOP_DECRSAT","features":[312]},{"name":"D3DSTENCILOP_INCR","features":[312]},{"name":"D3DSTENCILOP_INCRSAT","features":[312]},{"name":"D3DSTENCILOP_INVERT","features":[312]},{"name":"D3DSTENCILOP_KEEP","features":[312]},{"name":"D3DSTENCILOP_REPLACE","features":[312]},{"name":"D3DSTENCILOP_ZERO","features":[312]},{"name":"D3DSTREAMSOURCE_INDEXEDDATA","features":[312]},{"name":"D3DSTREAMSOURCE_INSTANCEDATA","features":[312]},{"name":"D3DSTT_2D","features":[312]},{"name":"D3DSTT_CUBE","features":[312]},{"name":"D3DSTT_UNKNOWN","features":[312]},{"name":"D3DSTT_VOLUME","features":[312]},{"name":"D3DSURFACE_DESC","features":[312]},{"name":"D3DSWAPEFFECT","features":[312]},{"name":"D3DSWAPEFFECT_COPY","features":[312]},{"name":"D3DSWAPEFFECT_DISCARD","features":[312]},{"name":"D3DSWAPEFFECT_FLIP","features":[312]},{"name":"D3DSWAPEFFECT_FLIPEX","features":[312]},{"name":"D3DSWAPEFFECT_OVERLAY","features":[312]},{"name":"D3DTADDRESS_BORDER","features":[312]},{"name":"D3DTADDRESS_CLAMP","features":[312]},{"name":"D3DTADDRESS_MIRROR","features":[312]},{"name":"D3DTADDRESS_MIRRORONCE","features":[312]},{"name":"D3DTADDRESS_WRAP","features":[312]},{"name":"D3DTA_ALPHAREPLICATE","features":[312]},{"name":"D3DTA_COMPLEMENT","features":[312]},{"name":"D3DTA_CONSTANT","features":[312]},{"name":"D3DTA_CURRENT","features":[312]},{"name":"D3DTA_DIFFUSE","features":[312]},{"name":"D3DTA_SELECTMASK","features":[312]},{"name":"D3DTA_SPECULAR","features":[312]},{"name":"D3DTA_TEMP","features":[312]},{"name":"D3DTA_TEXTURE","features":[312]},{"name":"D3DTA_TFACTOR","features":[312]},{"name":"D3DTBLEND_ADD","features":[312]},{"name":"D3DTBLEND_COPY","features":[312]},{"name":"D3DTBLEND_DECAL","features":[312]},{"name":"D3DTBLEND_DECALALPHA","features":[312]},{"name":"D3DTBLEND_DECALMASK","features":[312]},{"name":"D3DTBLEND_MODULATE","features":[312]},{"name":"D3DTBLEND_MODULATEALPHA","features":[312]},{"name":"D3DTBLEND_MODULATEMASK","features":[312]},{"name":"D3DTEXF_ANISOTROPIC","features":[312]},{"name":"D3DTEXF_CONVOLUTIONMONO","features":[312]},{"name":"D3DTEXF_GAUSSIANQUAD","features":[312]},{"name":"D3DTEXF_LINEAR","features":[312]},{"name":"D3DTEXF_NONE","features":[312]},{"name":"D3DTEXF_POINT","features":[312]},{"name":"D3DTEXF_PYRAMIDALQUAD","features":[312]},{"name":"D3DTEXOPCAPS_ADD","features":[312]},{"name":"D3DTEXOPCAPS_ADDSIGNED","features":[312]},{"name":"D3DTEXOPCAPS_ADDSIGNED2X","features":[312]},{"name":"D3DTEXOPCAPS_ADDSMOOTH","features":[312]},{"name":"D3DTEXOPCAPS_BLENDCURRENTALPHA","features":[312]},{"name":"D3DTEXOPCAPS_BLENDDIFFUSEALPHA","features":[312]},{"name":"D3DTEXOPCAPS_BLENDFACTORALPHA","features":[312]},{"name":"D3DTEXOPCAPS_BLENDTEXTUREALPHA","features":[312]},{"name":"D3DTEXOPCAPS_BLENDTEXTUREALPHAPM","features":[312]},{"name":"D3DTEXOPCAPS_BUMPENVMAP","features":[312]},{"name":"D3DTEXOPCAPS_BUMPENVMAPLUMINANCE","features":[312]},{"name":"D3DTEXOPCAPS_DISABLE","features":[312]},{"name":"D3DTEXOPCAPS_DOTPRODUCT3","features":[312]},{"name":"D3DTEXOPCAPS_LERP","features":[312]},{"name":"D3DTEXOPCAPS_MODULATE","features":[312]},{"name":"D3DTEXOPCAPS_MODULATE2X","features":[312]},{"name":"D3DTEXOPCAPS_MODULATE4X","features":[312]},{"name":"D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR","features":[312]},{"name":"D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA","features":[312]},{"name":"D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR","features":[312]},{"name":"D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA","features":[312]},{"name":"D3DTEXOPCAPS_MULTIPLYADD","features":[312]},{"name":"D3DTEXOPCAPS_PREMODULATE","features":[312]},{"name":"D3DTEXOPCAPS_SELECTARG1","features":[312]},{"name":"D3DTEXOPCAPS_SELECTARG2","features":[312]},{"name":"D3DTEXOPCAPS_SUBTRACT","features":[312]},{"name":"D3DTEXTUREADDRESS","features":[312]},{"name":"D3DTEXTUREBLEND","features":[312]},{"name":"D3DTEXTUREFILTER","features":[312]},{"name":"D3DTEXTUREFILTERTYPE","features":[312]},{"name":"D3DTEXTURELOAD","features":[312]},{"name":"D3DTEXTUREMAGFILTER","features":[312]},{"name":"D3DTEXTUREMINFILTER","features":[312]},{"name":"D3DTEXTUREMIPFILTER","features":[312]},{"name":"D3DTEXTUREOP","features":[312]},{"name":"D3DTEXTURESTAGESTATETYPE","features":[312]},{"name":"D3DTEXTURETRANSFORMFLAGS","features":[312]},{"name":"D3DTFG_ANISOTROPIC","features":[312]},{"name":"D3DTFG_FLATCUBIC","features":[312]},{"name":"D3DTFG_GAUSSIANCUBIC","features":[312]},{"name":"D3DTFG_LINEAR","features":[312]},{"name":"D3DTFG_POINT","features":[312]},{"name":"D3DTFN_ANISOTROPIC","features":[312]},{"name":"D3DTFN_LINEAR","features":[312]},{"name":"D3DTFN_POINT","features":[312]},{"name":"D3DTFP_LINEAR","features":[312]},{"name":"D3DTFP_NONE","features":[312]},{"name":"D3DTFP_POINT","features":[312]},{"name":"D3DTLVERTEX","features":[312]},{"name":"D3DTOP_ADD","features":[312]},{"name":"D3DTOP_ADDSIGNED","features":[312]},{"name":"D3DTOP_ADDSIGNED2X","features":[312]},{"name":"D3DTOP_ADDSMOOTH","features":[312]},{"name":"D3DTOP_BLENDCURRENTALPHA","features":[312]},{"name":"D3DTOP_BLENDDIFFUSEALPHA","features":[312]},{"name":"D3DTOP_BLENDFACTORALPHA","features":[312]},{"name":"D3DTOP_BLENDTEXTUREALPHA","features":[312]},{"name":"D3DTOP_BLENDTEXTUREALPHAPM","features":[312]},{"name":"D3DTOP_BUMPENVMAP","features":[312]},{"name":"D3DTOP_BUMPENVMAPLUMINANCE","features":[312]},{"name":"D3DTOP_DISABLE","features":[312]},{"name":"D3DTOP_DOTPRODUCT3","features":[312]},{"name":"D3DTOP_LERP","features":[312]},{"name":"D3DTOP_MODULATE","features":[312]},{"name":"D3DTOP_MODULATE2X","features":[312]},{"name":"D3DTOP_MODULATE4X","features":[312]},{"name":"D3DTOP_MODULATEALPHA_ADDCOLOR","features":[312]},{"name":"D3DTOP_MODULATECOLOR_ADDALPHA","features":[312]},{"name":"D3DTOP_MODULATEINVALPHA_ADDCOLOR","features":[312]},{"name":"D3DTOP_MODULATEINVCOLOR_ADDALPHA","features":[312]},{"name":"D3DTOP_MULTIPLYADD","features":[312]},{"name":"D3DTOP_PREMODULATE","features":[312]},{"name":"D3DTOP_SELECTARG1","features":[312]},{"name":"D3DTOP_SELECTARG2","features":[312]},{"name":"D3DTOP_SUBTRACT","features":[312]},{"name":"D3DTRANSFORMCAPS","features":[312]},{"name":"D3DTRANSFORMCAPS_CLIP","features":[312]},{"name":"D3DTRANSFORMDATA","features":[312]},{"name":"D3DTRANSFORMSTATETYPE","features":[312]},{"name":"D3DTRANSFORM_CLIPPED","features":[312]},{"name":"D3DTRANSFORM_UNCLIPPED","features":[312]},{"name":"D3DTRIANGLE","features":[312]},{"name":"D3DTRIFLAG_EDGEENABLE1","features":[312]},{"name":"D3DTRIFLAG_EDGEENABLE2","features":[312]},{"name":"D3DTRIFLAG_EDGEENABLE3","features":[312]},{"name":"D3DTRIFLAG_EVEN","features":[312]},{"name":"D3DTRIFLAG_ODD","features":[312]},{"name":"D3DTRIFLAG_START","features":[312]},{"name":"D3DTRIPATCH_INFO","features":[312]},{"name":"D3DTSS_ALPHAARG0","features":[312]},{"name":"D3DTSS_ALPHAARG1","features":[312]},{"name":"D3DTSS_ALPHAARG2","features":[312]},{"name":"D3DTSS_ALPHAOP","features":[312]},{"name":"D3DTSS_BUMPENVLOFFSET","features":[312]},{"name":"D3DTSS_BUMPENVLSCALE","features":[312]},{"name":"D3DTSS_BUMPENVMAT00","features":[312]},{"name":"D3DTSS_BUMPENVMAT01","features":[312]},{"name":"D3DTSS_BUMPENVMAT10","features":[312]},{"name":"D3DTSS_BUMPENVMAT11","features":[312]},{"name":"D3DTSS_COLORARG0","features":[312]},{"name":"D3DTSS_COLORARG1","features":[312]},{"name":"D3DTSS_COLORARG2","features":[312]},{"name":"D3DTSS_COLOROP","features":[312]},{"name":"D3DTSS_CONSTANT","features":[312]},{"name":"D3DTSS_RESULTARG","features":[312]},{"name":"D3DTSS_TCI_CAMERASPACENORMAL","features":[312]},{"name":"D3DTSS_TCI_CAMERASPACEPOSITION","features":[312]},{"name":"D3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR","features":[312]},{"name":"D3DTSS_TCI_PASSTHRU","features":[312]},{"name":"D3DTSS_TCI_SPHEREMAP","features":[312]},{"name":"D3DTSS_TEXCOORDINDEX","features":[312]},{"name":"D3DTSS_TEXTURETRANSFORMFLAGS","features":[312]},{"name":"D3DTS_PROJECTION","features":[312]},{"name":"D3DTS_TEXTURE0","features":[312]},{"name":"D3DTS_TEXTURE1","features":[312]},{"name":"D3DTS_TEXTURE2","features":[312]},{"name":"D3DTS_TEXTURE3","features":[312]},{"name":"D3DTS_TEXTURE4","features":[312]},{"name":"D3DTS_TEXTURE5","features":[312]},{"name":"D3DTS_TEXTURE6","features":[312]},{"name":"D3DTS_TEXTURE7","features":[312]},{"name":"D3DTS_VIEW","features":[312]},{"name":"D3DTTFF_COUNT1","features":[312]},{"name":"D3DTTFF_COUNT2","features":[312]},{"name":"D3DTTFF_COUNT3","features":[312]},{"name":"D3DTTFF_COUNT4","features":[312]},{"name":"D3DTTFF_DISABLE","features":[312]},{"name":"D3DTTFF_PROJECTED","features":[312]},{"name":"D3DUSAGE_AUTOGENMIPMAP","features":[312]},{"name":"D3DUSAGE_DEPTHSTENCIL","features":[312]},{"name":"D3DUSAGE_DMAP","features":[312]},{"name":"D3DUSAGE_DONOTCLIP","features":[312]},{"name":"D3DUSAGE_DYNAMIC","features":[312]},{"name":"D3DUSAGE_NONSECURE","features":[312]},{"name":"D3DUSAGE_NPATCHES","features":[312]},{"name":"D3DUSAGE_POINTS","features":[312]},{"name":"D3DUSAGE_QUERY_FILTER","features":[312]},{"name":"D3DUSAGE_QUERY_LEGACYBUMPMAP","features":[312]},{"name":"D3DUSAGE_QUERY_POSTPIXELSHADER_BLENDING","features":[312]},{"name":"D3DUSAGE_QUERY_SRGBREAD","features":[312]},{"name":"D3DUSAGE_QUERY_SRGBWRITE","features":[312]},{"name":"D3DUSAGE_QUERY_VERTEXTEXTURE","features":[312]},{"name":"D3DUSAGE_QUERY_WRAPANDMIP","features":[312]},{"name":"D3DUSAGE_RENDERTARGET","features":[312]},{"name":"D3DUSAGE_RESTRICTED_CONTENT","features":[312]},{"name":"D3DUSAGE_RESTRICT_SHARED_RESOURCE","features":[312]},{"name":"D3DUSAGE_RESTRICT_SHARED_RESOURCE_DRIVER","features":[312]},{"name":"D3DUSAGE_RTPATCHES","features":[312]},{"name":"D3DUSAGE_SOFTWAREPROCESSING","features":[312]},{"name":"D3DUSAGE_TEXTAPI","features":[312]},{"name":"D3DUSAGE_WRITEONLY","features":[312]},{"name":"D3DVBCAPS_DONOTCLIP","features":[312]},{"name":"D3DVBCAPS_OPTIMIZED","features":[312]},{"name":"D3DVBCAPS_SYSTEMMEMORY","features":[312]},{"name":"D3DVBCAPS_WRITEONLY","features":[312]},{"name":"D3DVBF_0WEIGHTS","features":[312]},{"name":"D3DVBF_1WEIGHTS","features":[312]},{"name":"D3DVBF_2WEIGHTS","features":[312]},{"name":"D3DVBF_3WEIGHTS","features":[312]},{"name":"D3DVBF_DISABLE","features":[312]},{"name":"D3DVBF_TWEENING","features":[312]},{"name":"D3DVERTEX","features":[312]},{"name":"D3DVERTEXBLENDFLAGS","features":[312]},{"name":"D3DVERTEXBUFFERDESC","features":[312]},{"name":"D3DVERTEXBUFFER_DESC","features":[312]},{"name":"D3DVERTEXELEMENT9","features":[312]},{"name":"D3DVERTEXTEXTURESAMPLER0","features":[312]},{"name":"D3DVERTEXTEXTURESAMPLER1","features":[312]},{"name":"D3DVERTEXTEXTURESAMPLER2","features":[312]},{"name":"D3DVERTEXTEXTURESAMPLER3","features":[312]},{"name":"D3DVERTEXTYPE","features":[312]},{"name":"D3DVIEWPORT","features":[312]},{"name":"D3DVIEWPORT2","features":[312]},{"name":"D3DVIEWPORT7","features":[312]},{"name":"D3DVIEWPORT9","features":[312]},{"name":"D3DVIS_INSIDE_BOTTOM","features":[312]},{"name":"D3DVIS_INSIDE_FAR","features":[312]},{"name":"D3DVIS_INSIDE_FRUSTUM","features":[312]},{"name":"D3DVIS_INSIDE_LEFT","features":[312]},{"name":"D3DVIS_INSIDE_NEAR","features":[312]},{"name":"D3DVIS_INSIDE_RIGHT","features":[312]},{"name":"D3DVIS_INSIDE_TOP","features":[312]},{"name":"D3DVIS_INTERSECT_BOTTOM","features":[312]},{"name":"D3DVIS_INTERSECT_FAR","features":[312]},{"name":"D3DVIS_INTERSECT_FRUSTUM","features":[312]},{"name":"D3DVIS_INTERSECT_LEFT","features":[312]},{"name":"D3DVIS_INTERSECT_NEAR","features":[312]},{"name":"D3DVIS_INTERSECT_RIGHT","features":[312]},{"name":"D3DVIS_INTERSECT_TOP","features":[312]},{"name":"D3DVIS_MASK_BOTTOM","features":[312]},{"name":"D3DVIS_MASK_FAR","features":[312]},{"name":"D3DVIS_MASK_FRUSTUM","features":[312]},{"name":"D3DVIS_MASK_LEFT","features":[312]},{"name":"D3DVIS_MASK_NEAR","features":[312]},{"name":"D3DVIS_MASK_RIGHT","features":[312]},{"name":"D3DVIS_MASK_TOP","features":[312]},{"name":"D3DVIS_OUTSIDE_BOTTOM","features":[312]},{"name":"D3DVIS_OUTSIDE_FAR","features":[312]},{"name":"D3DVIS_OUTSIDE_FRUSTUM","features":[312]},{"name":"D3DVIS_OUTSIDE_LEFT","features":[312]},{"name":"D3DVIS_OUTSIDE_NEAR","features":[312]},{"name":"D3DVIS_OUTSIDE_RIGHT","features":[312]},{"name":"D3DVIS_OUTSIDE_TOP","features":[312]},{"name":"D3DVOLUME_DESC","features":[312]},{"name":"D3DVOP_CLIP","features":[312]},{"name":"D3DVOP_EXTENTS","features":[312]},{"name":"D3DVOP_LIGHT","features":[312]},{"name":"D3DVOP_TRANSFORM","features":[312]},{"name":"D3DVS20CAPS_PREDICATION","features":[312]},{"name":"D3DVS20_MAX_DYNAMICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DVS20_MAX_NUMTEMPS","features":[312]},{"name":"D3DVS20_MAX_STATICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DVS20_MIN_DYNAMICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DVS20_MIN_NUMTEMPS","features":[312]},{"name":"D3DVS20_MIN_STATICFLOWCONTROLDEPTH","features":[312]},{"name":"D3DVSHADERCAPS2_0","features":[312]},{"name":"D3DVS_ADDRESSMODE_SHIFT","features":[312]},{"name":"D3DVS_ADDRESSMODE_TYPE","features":[312]},{"name":"D3DVS_ADDRMODE_ABSOLUTE","features":[312]},{"name":"D3DVS_ADDRMODE_RELATIVE","features":[312]},{"name":"D3DVS_RASTOUT_OFFSETS","features":[312]},{"name":"D3DVS_SWIZZLE_MASK","features":[312]},{"name":"D3DVS_SWIZZLE_SHIFT","features":[312]},{"name":"D3DVTXPCAPS_DIRECTIONALLIGHTS","features":[312]},{"name":"D3DVTXPCAPS_LOCALVIEWER","features":[312]},{"name":"D3DVTXPCAPS_MATERIALSOURCE7","features":[312]},{"name":"D3DVTXPCAPS_NO_TEXGEN_NONLOCALVIEWER","features":[312]},{"name":"D3DVTXPCAPS_POSITIONALLIGHTS","features":[312]},{"name":"D3DVTXPCAPS_TEXGEN","features":[312]},{"name":"D3DVTXPCAPS_TEXGEN_SPHEREMAP","features":[312]},{"name":"D3DVTXPCAPS_TWEENING","features":[312]},{"name":"D3DVTXPCAPS_VERTEXFOG","features":[312]},{"name":"D3DVT_LVERTEX","features":[312]},{"name":"D3DVT_TLVERTEX","features":[312]},{"name":"D3DVT_VERTEX","features":[312]},{"name":"D3DWRAPCOORD_0","features":[312]},{"name":"D3DWRAPCOORD_1","features":[312]},{"name":"D3DWRAPCOORD_2","features":[312]},{"name":"D3DWRAPCOORD_3","features":[312]},{"name":"D3DWRAP_U","features":[312]},{"name":"D3DWRAP_V","features":[312]},{"name":"D3DWRAP_W","features":[312]},{"name":"D3DZBUFFERTYPE","features":[312]},{"name":"D3DZB_FALSE","features":[312]},{"name":"D3DZB_TRUE","features":[312]},{"name":"D3DZB_USEW","features":[312]},{"name":"D3D_MAX_SIMULTANEOUS_RENDERTARGETS","features":[312]},{"name":"D3D_OMAC","features":[312]},{"name":"D3D_OMAC_SIZE","features":[312]},{"name":"D3D_SDK_VERSION","features":[312]},{"name":"DIRECT3D_VERSION","features":[312]},{"name":"Direct3DCreate9","features":[312]},{"name":"Direct3DCreate9Ex","features":[312]},{"name":"IDirect3D9","features":[312]},{"name":"IDirect3D9Ex","features":[312]},{"name":"IDirect3DBaseTexture9","features":[312]},{"name":"IDirect3DCubeTexture9","features":[312]},{"name":"IDirect3DDevice9","features":[312]},{"name":"IDirect3DDevice9Ex","features":[312]},{"name":"IDirect3DIndexBuffer9","features":[312]},{"name":"IDirect3DPixelShader9","features":[312]},{"name":"IDirect3DQuery9","features":[312]},{"name":"IDirect3DResource9","features":[312]},{"name":"IDirect3DStateBlock9","features":[312]},{"name":"IDirect3DSurface9","features":[312]},{"name":"IDirect3DSwapChain9","features":[312]},{"name":"IDirect3DSwapChain9Ex","features":[312]},{"name":"IDirect3DTexture9","features":[312]},{"name":"IDirect3DVertexBuffer9","features":[312]},{"name":"IDirect3DVertexDeclaration9","features":[312]},{"name":"IDirect3DVertexShader9","features":[312]},{"name":"IDirect3DVolume9","features":[312]},{"name":"IDirect3DVolumeTexture9","features":[312]},{"name":"LPD3DENUMDEVICESCALLBACK","features":[303,312]},{"name":"LPD3DENUMDEVICESCALLBACK7","features":[312]},{"name":"LPD3DENUMPIXELFORMATSCALLBACK","features":[312,313]},{"name":"LPD3DENUMTEXTUREFORMATSCALLBACK","features":[312,313]},{"name":"LPD3DVALIDATECALLBACK","features":[312]},{"name":"MAXD3DDECLLENGTH","features":[312]},{"name":"MAXD3DDECLUSAGEINDEX","features":[312]},{"name":"MAX_DEVICE_IDENTIFIER_STRING","features":[312]},{"name":"PROCESSIDTYPE_DWM","features":[312]},{"name":"PROCESSIDTYPE_HANDLE","features":[312]},{"name":"PROCESSIDTYPE_UNKNOWN","features":[312]},{"name":"_FACD3D","features":[312]}],"405":[{"name":"D3D9ON12_ARGS","features":[303,402]},{"name":"Direct3DCreate9On12","features":[303,312,402]},{"name":"Direct3DCreate9On12Ex","features":[303,312,402]},{"name":"IDirect3DDevice9On12","features":[402]},{"name":"MAX_D3D9ON12_QUEUES","features":[402]},{"name":"PFN_Direct3DCreate9On12","features":[303,312,402]},{"name":"PFN_Direct3DCreate9On12Ex","features":[303,312,402]}],"406":[{"name":"COMPOSITIONOBJECT_READ","features":[403]},{"name":"COMPOSITIONOBJECT_WRITE","features":[403]},{"name":"COMPOSITION_FRAME_ID_COMPLETED","features":[403]},{"name":"COMPOSITION_FRAME_ID_CONFIRMED","features":[403]},{"name":"COMPOSITION_FRAME_ID_CREATED","features":[403]},{"name":"COMPOSITION_FRAME_ID_TYPE","features":[403]},{"name":"COMPOSITION_FRAME_STATS","features":[403]},{"name":"COMPOSITION_STATS","features":[403]},{"name":"COMPOSITION_STATS_MAX_TARGETS","features":[403]},{"name":"COMPOSITION_TARGET_ID","features":[303,403]},{"name":"COMPOSITION_TARGET_STATS","features":[403]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY","features":[403]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY_HIDDEN","features":[403]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY_INHERIT","features":[403]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY_VISIBLE","features":[403]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE","features":[403]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE_INHERIT","features":[403]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE_LINEAR","features":[403]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[403]},{"name":"DCOMPOSITION_BORDER_MODE","features":[403]},{"name":"DCOMPOSITION_BORDER_MODE_HARD","features":[403]},{"name":"DCOMPOSITION_BORDER_MODE_INHERIT","features":[403]},{"name":"DCOMPOSITION_BORDER_MODE_SOFT","features":[403]},{"name":"DCOMPOSITION_COMPOSITE_MODE","features":[403]},{"name":"DCOMPOSITION_COMPOSITE_MODE_DESTINATION_INVERT","features":[403]},{"name":"DCOMPOSITION_COMPOSITE_MODE_INHERIT","features":[403]},{"name":"DCOMPOSITION_COMPOSITE_MODE_MIN_BLEND","features":[403]},{"name":"DCOMPOSITION_COMPOSITE_MODE_SOURCE_OVER","features":[403]},{"name":"DCOMPOSITION_DEPTH_MODE","features":[403]},{"name":"DCOMPOSITION_DEPTH_MODE_INHERIT","features":[403]},{"name":"DCOMPOSITION_DEPTH_MODE_SORTED","features":[403]},{"name":"DCOMPOSITION_DEPTH_MODE_SPATIAL","features":[403]},{"name":"DCOMPOSITION_DEPTH_MODE_TREE","features":[403]},{"name":"DCOMPOSITION_FRAME_STATISTICS","features":[403,391]},{"name":"DCOMPOSITION_MAX_WAITFORCOMPOSITORCLOCK_OBJECTS","features":[403]},{"name":"DCOMPOSITION_OPACITY_MODE","features":[403]},{"name":"DCOMPOSITION_OPACITY_MODE_INHERIT","features":[403]},{"name":"DCOMPOSITION_OPACITY_MODE_LAYER","features":[403]},{"name":"DCOMPOSITION_OPACITY_MODE_MULTIPLY","features":[403]},{"name":"DCompositionAttachMouseDragToHwnd","features":[303,403]},{"name":"DCompositionAttachMouseWheelToHwnd","features":[303,403]},{"name":"DCompositionBoostCompositorClock","features":[303,403]},{"name":"DCompositionCreateDevice","features":[403,395]},{"name":"DCompositionCreateDevice2","features":[403]},{"name":"DCompositionCreateDevice3","features":[403]},{"name":"DCompositionCreateSurfaceHandle","features":[303,403,306]},{"name":"DCompositionGetFrameId","features":[403]},{"name":"DCompositionGetStatistics","features":[303,403]},{"name":"DCompositionGetTargetStatistics","features":[303,403]},{"name":"DCompositionInkTrailPoint","features":[403]},{"name":"DCompositionWaitForCompositorClock","features":[303,403]},{"name":"IDCompositionAffineTransform2DEffect","features":[403]},{"name":"IDCompositionAnimation","features":[403]},{"name":"IDCompositionArithmeticCompositeEffect","features":[403]},{"name":"IDCompositionBlendEffect","features":[403]},{"name":"IDCompositionBrightnessEffect","features":[403]},{"name":"IDCompositionClip","features":[403]},{"name":"IDCompositionColorMatrixEffect","features":[403]},{"name":"IDCompositionCompositeEffect","features":[403]},{"name":"IDCompositionDelegatedInkTrail","features":[403]},{"name":"IDCompositionDesktopDevice","features":[403]},{"name":"IDCompositionDevice","features":[403]},{"name":"IDCompositionDevice2","features":[403]},{"name":"IDCompositionDevice3","features":[403]},{"name":"IDCompositionDevice4","features":[403]},{"name":"IDCompositionDeviceDebug","features":[403]},{"name":"IDCompositionEffect","features":[403]},{"name":"IDCompositionEffectGroup","features":[403]},{"name":"IDCompositionFilterEffect","features":[403]},{"name":"IDCompositionGaussianBlurEffect","features":[403]},{"name":"IDCompositionHueRotationEffect","features":[403]},{"name":"IDCompositionInkTrailDevice","features":[403]},{"name":"IDCompositionLinearTransferEffect","features":[403]},{"name":"IDCompositionMatrixTransform","features":[403]},{"name":"IDCompositionMatrixTransform3D","features":[403]},{"name":"IDCompositionRectangleClip","features":[403]},{"name":"IDCompositionRotateTransform","features":[403]},{"name":"IDCompositionRotateTransform3D","features":[403]},{"name":"IDCompositionSaturationEffect","features":[403]},{"name":"IDCompositionScaleTransform","features":[403]},{"name":"IDCompositionScaleTransform3D","features":[403]},{"name":"IDCompositionShadowEffect","features":[403]},{"name":"IDCompositionSkewTransform","features":[403]},{"name":"IDCompositionSurface","features":[403]},{"name":"IDCompositionSurfaceFactory","features":[403]},{"name":"IDCompositionTableTransferEffect","features":[403]},{"name":"IDCompositionTarget","features":[403]},{"name":"IDCompositionTexture","features":[403]},{"name":"IDCompositionTransform","features":[403]},{"name":"IDCompositionTransform3D","features":[403]},{"name":"IDCompositionTranslateTransform","features":[403]},{"name":"IDCompositionTranslateTransform3D","features":[403]},{"name":"IDCompositionTurbulenceEffect","features":[403]},{"name":"IDCompositionVirtualSurface","features":[403]},{"name":"IDCompositionVisual","features":[403]},{"name":"IDCompositionVisual2","features":[403]},{"name":"IDCompositionVisual3","features":[403]},{"name":"IDCompositionVisualDebug","features":[403]}],"407":[{"name":"ACCESSRECTLIST","features":[303,313,314]},{"name":"ACCESSRECT_BROKEN","features":[313]},{"name":"ACCESSRECT_NOTHOLDINGWIN16LOCK","features":[313]},{"name":"ACCESSRECT_VRAMSTYLE","features":[313]},{"name":"ATTACHLIST","features":[303,313,314]},{"name":"CCHDEVICENAME","features":[313]},{"name":"CLSID_DirectDraw","features":[313]},{"name":"CLSID_DirectDraw7","features":[313]},{"name":"CLSID_DirectDrawClipper","features":[313]},{"name":"D3DFMT_INTERNAL_D15S1","features":[313]},{"name":"D3DFMT_INTERNAL_D24S8","features":[313]},{"name":"D3DFMT_INTERNAL_D24X8","features":[313]},{"name":"D3DFMT_INTERNAL_D32","features":[313]},{"name":"D3DFMT_INTERNAL_S1D15","features":[313]},{"name":"D3DFMT_INTERNAL_S8D24","features":[313]},{"name":"D3DFMT_INTERNAL_X8D24","features":[313]},{"name":"D3DFORMAT_MEMBEROFGROUP_ARGB","features":[313]},{"name":"D3DFORMAT_OP_3DACCELERATION","features":[313]},{"name":"D3DFORMAT_OP_AUTOGENMIPMAP","features":[313]},{"name":"D3DFORMAT_OP_BUMPMAP","features":[313]},{"name":"D3DFORMAT_OP_CONVERT_TO_ARGB","features":[313]},{"name":"D3DFORMAT_OP_CUBETEXTURE","features":[313]},{"name":"D3DFORMAT_OP_DISPLAYMODE","features":[313]},{"name":"D3DFORMAT_OP_DMAP","features":[313]},{"name":"D3DFORMAT_OP_NOALPHABLEND","features":[313]},{"name":"D3DFORMAT_OP_NOFILTER","features":[313]},{"name":"D3DFORMAT_OP_NOTEXCOORDWRAPNORMIP","features":[313]},{"name":"D3DFORMAT_OP_OFFSCREENPLAIN","features":[313]},{"name":"D3DFORMAT_OP_OFFSCREEN_RENDERTARGET","features":[313]},{"name":"D3DFORMAT_OP_PIXELSIZE","features":[313]},{"name":"D3DFORMAT_OP_SAME_FORMAT_RENDERTARGET","features":[313]},{"name":"D3DFORMAT_OP_SAME_FORMAT_UP_TO_ALPHA_RENDERTARGET","features":[313]},{"name":"D3DFORMAT_OP_SRGBREAD","features":[313]},{"name":"D3DFORMAT_OP_SRGBWRITE","features":[313]},{"name":"D3DFORMAT_OP_TEXTURE","features":[313]},{"name":"D3DFORMAT_OP_VERTEXTEXTURE","features":[313]},{"name":"D3DFORMAT_OP_VOLUMETEXTURE","features":[313]},{"name":"D3DFORMAT_OP_ZSTENCIL","features":[313]},{"name":"D3DFORMAT_OP_ZSTENCIL_WITH_ARBITRARY_COLOR_DEPTH","features":[313]},{"name":"DBLNODE","features":[303,313,314]},{"name":"DCICOMMAND","features":[313]},{"name":"DD32BITDRIVERDATA","features":[313]},{"name":"DDABLT_SRCOVERDEST","features":[313]},{"name":"DDAL_IMPLICIT","features":[313]},{"name":"DDARGB","features":[313]},{"name":"DDBD_1","features":[313]},{"name":"DDBD_16","features":[313]},{"name":"DDBD_2","features":[313]},{"name":"DDBD_24","features":[313]},{"name":"DDBD_32","features":[313]},{"name":"DDBD_4","features":[313]},{"name":"DDBD_8","features":[313]},{"name":"DDBLTBATCH","features":[303,313]},{"name":"DDBLTFAST_DESTCOLORKEY","features":[313]},{"name":"DDBLTFAST_DONOTWAIT","features":[313]},{"name":"DDBLTFAST_NOCOLORKEY","features":[313]},{"name":"DDBLTFAST_SRCCOLORKEY","features":[313]},{"name":"DDBLTFAST_WAIT","features":[313]},{"name":"DDBLTFX","features":[313]},{"name":"DDBLTFX_ARITHSTRETCHY","features":[313]},{"name":"DDBLTFX_MIRRORLEFTRIGHT","features":[313]},{"name":"DDBLTFX_MIRRORUPDOWN","features":[313]},{"name":"DDBLTFX_NOTEARING","features":[313]},{"name":"DDBLTFX_ROTATE180","features":[313]},{"name":"DDBLTFX_ROTATE270","features":[313]},{"name":"DDBLTFX_ROTATE90","features":[313]},{"name":"DDBLTFX_ZBUFFERBASEDEST","features":[313]},{"name":"DDBLTFX_ZBUFFERRANGE","features":[313]},{"name":"DDBLT_AFLAGS","features":[313]},{"name":"DDBLT_ALPHADEST","features":[313]},{"name":"DDBLT_ALPHADESTCONSTOVERRIDE","features":[313]},{"name":"DDBLT_ALPHADESTNEG","features":[313]},{"name":"DDBLT_ALPHADESTSURFACEOVERRIDE","features":[313]},{"name":"DDBLT_ALPHAEDGEBLEND","features":[313]},{"name":"DDBLT_ALPHASRC","features":[313]},{"name":"DDBLT_ALPHASRCCONSTOVERRIDE","features":[313]},{"name":"DDBLT_ALPHASRCNEG","features":[313]},{"name":"DDBLT_ALPHASRCSURFACEOVERRIDE","features":[313]},{"name":"DDBLT_ASYNC","features":[313]},{"name":"DDBLT_COLORFILL","features":[313]},{"name":"DDBLT_DDFX","features":[313]},{"name":"DDBLT_DDROPS","features":[313]},{"name":"DDBLT_DEPTHFILL","features":[313]},{"name":"DDBLT_DONOTWAIT","features":[313]},{"name":"DDBLT_EXTENDED_FLAGS","features":[313]},{"name":"DDBLT_EXTENDED_LINEAR_CONTENT","features":[313]},{"name":"DDBLT_KEYDEST","features":[313]},{"name":"DDBLT_KEYDESTOVERRIDE","features":[313]},{"name":"DDBLT_KEYSRC","features":[313]},{"name":"DDBLT_KEYSRCOVERRIDE","features":[313]},{"name":"DDBLT_LAST_PRESENTATION","features":[313]},{"name":"DDBLT_PRESENTATION","features":[313]},{"name":"DDBLT_ROP","features":[313]},{"name":"DDBLT_ROTATIONANGLE","features":[313]},{"name":"DDBLT_WAIT","features":[313]},{"name":"DDBLT_ZBUFFER","features":[313]},{"name":"DDBLT_ZBUFFERDESTCONSTOVERRIDE","features":[313]},{"name":"DDBLT_ZBUFFERDESTOVERRIDE","features":[313]},{"name":"DDBLT_ZBUFFERSRCCONSTOVERRIDE","features":[313]},{"name":"DDBLT_ZBUFFERSRCOVERRIDE","features":[313]},{"name":"DDBOBNEXTFIELDINFO","features":[313]},{"name":"DDCAPS2_AUTOFLIPOVERLAY","features":[313]},{"name":"DDCAPS2_CANAUTOGENMIPMAP","features":[313]},{"name":"DDCAPS2_CANBOBHARDWARE","features":[313]},{"name":"DDCAPS2_CANBOBINTERLEAVED","features":[313]},{"name":"DDCAPS2_CANBOBNONINTERLEAVED","features":[313]},{"name":"DDCAPS2_CANCALIBRATEGAMMA","features":[313]},{"name":"DDCAPS2_CANDROPZ16BIT","features":[313]},{"name":"DDCAPS2_CANFLIPODDEVEN","features":[313]},{"name":"DDCAPS2_CANMANAGERESOURCE","features":[313]},{"name":"DDCAPS2_CANMANAGETEXTURE","features":[313]},{"name":"DDCAPS2_CANRENDERWINDOWED","features":[313]},{"name":"DDCAPS2_CANSHARERESOURCE","features":[313]},{"name":"DDCAPS2_CERTIFIED","features":[313]},{"name":"DDCAPS2_COLORCONTROLOVERLAY","features":[313]},{"name":"DDCAPS2_COLORCONTROLPRIMARY","features":[313]},{"name":"DDCAPS2_COPYFOURCC","features":[313]},{"name":"DDCAPS2_DYNAMICTEXTURES","features":[313]},{"name":"DDCAPS2_FLIPINTERVAL","features":[313]},{"name":"DDCAPS2_FLIPNOVSYNC","features":[313]},{"name":"DDCAPS2_NO2DDURING3DSCENE","features":[313]},{"name":"DDCAPS2_NONLOCALVIDMEM","features":[313]},{"name":"DDCAPS2_NONLOCALVIDMEMCAPS","features":[313]},{"name":"DDCAPS2_NOPAGELOCKREQUIRED","features":[313]},{"name":"DDCAPS2_PRIMARYGAMMA","features":[313]},{"name":"DDCAPS2_RESERVED1","features":[313]},{"name":"DDCAPS2_STEREO","features":[313]},{"name":"DDCAPS2_SYSTONONLOCAL_AS_SYSTOLOCAL","features":[313]},{"name":"DDCAPS2_TEXMANINNONLOCALVIDMEM","features":[313]},{"name":"DDCAPS2_VIDEOPORT","features":[313]},{"name":"DDCAPS2_WIDESURFACES","features":[313]},{"name":"DDCAPS_3D","features":[313]},{"name":"DDCAPS_ALIGNBOUNDARYDEST","features":[313]},{"name":"DDCAPS_ALIGNBOUNDARYSRC","features":[313]},{"name":"DDCAPS_ALIGNSIZEDEST","features":[313]},{"name":"DDCAPS_ALIGNSIZESRC","features":[313]},{"name":"DDCAPS_ALIGNSTRIDE","features":[313]},{"name":"DDCAPS_ALPHA","features":[313]},{"name":"DDCAPS_BANKSWITCHED","features":[313]},{"name":"DDCAPS_BLT","features":[313]},{"name":"DDCAPS_BLTCOLORFILL","features":[313]},{"name":"DDCAPS_BLTDEPTHFILL","features":[313]},{"name":"DDCAPS_BLTFOURCC","features":[313]},{"name":"DDCAPS_BLTQUEUE","features":[313]},{"name":"DDCAPS_BLTSTRETCH","features":[313]},{"name":"DDCAPS_CANBLTSYSMEM","features":[313]},{"name":"DDCAPS_CANCLIP","features":[313]},{"name":"DDCAPS_CANCLIPSTRETCHED","features":[313]},{"name":"DDCAPS_COLORKEY","features":[313]},{"name":"DDCAPS_COLORKEYHWASSIST","features":[313]},{"name":"DDCAPS_DX1","features":[313]},{"name":"DDCAPS_DX3","features":[313]},{"name":"DDCAPS_DX5","features":[313]},{"name":"DDCAPS_DX6","features":[313]},{"name":"DDCAPS_DX7","features":[313]},{"name":"DDCAPS_GDI","features":[313]},{"name":"DDCAPS_NOHARDWARE","features":[313]},{"name":"DDCAPS_OVERLAY","features":[313]},{"name":"DDCAPS_OVERLAYCANTCLIP","features":[313]},{"name":"DDCAPS_OVERLAYFOURCC","features":[313]},{"name":"DDCAPS_OVERLAYSTRETCH","features":[313]},{"name":"DDCAPS_PALETTE","features":[313]},{"name":"DDCAPS_PALETTEVSYNC","features":[313]},{"name":"DDCAPS_READSCANLINE","features":[313]},{"name":"DDCAPS_RESERVED1","features":[313]},{"name":"DDCAPS_VBI","features":[313]},{"name":"DDCAPS_ZBLTS","features":[313]},{"name":"DDCAPS_ZOVERLAYS","features":[313]},{"name":"DDCKEYCAPS_DESTBLT","features":[313]},{"name":"DDCKEYCAPS_DESTBLTCLRSPACE","features":[313]},{"name":"DDCKEYCAPS_DESTBLTCLRSPACEYUV","features":[313]},{"name":"DDCKEYCAPS_DESTBLTYUV","features":[313]},{"name":"DDCKEYCAPS_DESTOVERLAY","features":[313]},{"name":"DDCKEYCAPS_DESTOVERLAYCLRSPACE","features":[313]},{"name":"DDCKEYCAPS_DESTOVERLAYCLRSPACEYUV","features":[313]},{"name":"DDCKEYCAPS_DESTOVERLAYONEACTIVE","features":[313]},{"name":"DDCKEYCAPS_DESTOVERLAYYUV","features":[313]},{"name":"DDCKEYCAPS_NOCOSTOVERLAY","features":[313]},{"name":"DDCKEYCAPS_SRCBLT","features":[313]},{"name":"DDCKEYCAPS_SRCBLTCLRSPACE","features":[313]},{"name":"DDCKEYCAPS_SRCBLTCLRSPACEYUV","features":[313]},{"name":"DDCKEYCAPS_SRCBLTYUV","features":[313]},{"name":"DDCKEYCAPS_SRCOVERLAY","features":[313]},{"name":"DDCKEYCAPS_SRCOVERLAYCLRSPACE","features":[313]},{"name":"DDCKEYCAPS_SRCOVERLAYCLRSPACEYUV","features":[313]},{"name":"DDCKEYCAPS_SRCOVERLAYONEACTIVE","features":[313]},{"name":"DDCKEYCAPS_SRCOVERLAYYUV","features":[313]},{"name":"DDCKEY_COLORSPACE","features":[313]},{"name":"DDCKEY_DESTBLT","features":[313]},{"name":"DDCKEY_DESTOVERLAY","features":[313]},{"name":"DDCKEY_SRCBLT","features":[313]},{"name":"DDCKEY_SRCOVERLAY","features":[313]},{"name":"DDCOLORCONTROL","features":[313]},{"name":"DDCOLORKEY","features":[313]},{"name":"DDCOLOR_BRIGHTNESS","features":[313]},{"name":"DDCOLOR_COLORENABLE","features":[313]},{"name":"DDCOLOR_CONTRAST","features":[313]},{"name":"DDCOLOR_GAMMA","features":[313]},{"name":"DDCOLOR_HUE","features":[313]},{"name":"DDCOLOR_SATURATION","features":[313]},{"name":"DDCOLOR_SHARPNESS","features":[313]},{"name":"DDCOMPBUFFERINFO","features":[313]},{"name":"DDCORECAPS","features":[313]},{"name":"DDCREATEDRIVEROBJECT","features":[313]},{"name":"DDCREATE_EMULATIONONLY","features":[313]},{"name":"DDCREATE_HARDWAREONLY","features":[313]},{"name":"DDDEVICEIDENTIFIER","features":[313]},{"name":"DDDEVICEIDENTIFIER2","features":[313]},{"name":"DDEDM_REFRESHRATES","features":[313]},{"name":"DDEDM_STANDARDVGAMODES","features":[313]},{"name":"DDEM_MODEFAILED","features":[313]},{"name":"DDEM_MODEPASSED","features":[313]},{"name":"DDENABLEIRQINFO","features":[313]},{"name":"DDENUMOVERLAYZ_BACKTOFRONT","features":[313]},{"name":"DDENUMOVERLAYZ_FRONTTOBACK","features":[313]},{"name":"DDENUMRET_CANCEL","features":[313]},{"name":"DDENUMRET_OK","features":[313]},{"name":"DDENUMSURFACES_ALL","features":[313]},{"name":"DDENUMSURFACES_CANBECREATED","features":[313]},{"name":"DDENUMSURFACES_DOESEXIST","features":[313]},{"name":"DDENUMSURFACES_MATCH","features":[313]},{"name":"DDENUMSURFACES_NOMATCH","features":[313]},{"name":"DDENUM_ATTACHEDSECONDARYDEVICES","features":[313]},{"name":"DDENUM_DETACHEDSECONDARYDEVICES","features":[313]},{"name":"DDENUM_NONDISPLAYDEVICES","features":[313]},{"name":"DDERR_NOTINITIALIZED","features":[313]},{"name":"DDFLIPOVERLAYINFO","features":[313]},{"name":"DDFLIPVIDEOPORTINFO","features":[313]},{"name":"DDFLIP_DONOTWAIT","features":[313]},{"name":"DDFLIP_EVEN","features":[313]},{"name":"DDFLIP_INTERVAL2","features":[313]},{"name":"DDFLIP_INTERVAL3","features":[313]},{"name":"DDFLIP_INTERVAL4","features":[313]},{"name":"DDFLIP_NOVSYNC","features":[313]},{"name":"DDFLIP_ODD","features":[313]},{"name":"DDFLIP_STEREO","features":[313]},{"name":"DDFLIP_WAIT","features":[313]},{"name":"DDFXALPHACAPS_BLTALPHAEDGEBLEND","features":[313]},{"name":"DDFXALPHACAPS_BLTALPHAPIXELS","features":[313]},{"name":"DDFXALPHACAPS_BLTALPHAPIXELSNEG","features":[313]},{"name":"DDFXALPHACAPS_BLTALPHASURFACES","features":[313]},{"name":"DDFXALPHACAPS_BLTALPHASURFACESNEG","features":[313]},{"name":"DDFXALPHACAPS_OVERLAYALPHAEDGEBLEND","features":[313]},{"name":"DDFXALPHACAPS_OVERLAYALPHAPIXELS","features":[313]},{"name":"DDFXALPHACAPS_OVERLAYALPHAPIXELSNEG","features":[313]},{"name":"DDFXALPHACAPS_OVERLAYALPHASURFACES","features":[313]},{"name":"DDFXALPHACAPS_OVERLAYALPHASURFACESNEG","features":[313]},{"name":"DDFXCAPS_BLTALPHA","features":[313]},{"name":"DDFXCAPS_BLTARITHSTRETCHY","features":[313]},{"name":"DDFXCAPS_BLTARITHSTRETCHYN","features":[313]},{"name":"DDFXCAPS_BLTFILTER","features":[313]},{"name":"DDFXCAPS_BLTMIRRORLEFTRIGHT","features":[313]},{"name":"DDFXCAPS_BLTMIRRORUPDOWN","features":[313]},{"name":"DDFXCAPS_BLTROTATION","features":[313]},{"name":"DDFXCAPS_BLTROTATION90","features":[313]},{"name":"DDFXCAPS_BLTSHRINKX","features":[313]},{"name":"DDFXCAPS_BLTSHRINKXN","features":[313]},{"name":"DDFXCAPS_BLTSHRINKY","features":[313]},{"name":"DDFXCAPS_BLTSHRINKYN","features":[313]},{"name":"DDFXCAPS_BLTSTRETCHX","features":[313]},{"name":"DDFXCAPS_BLTSTRETCHXN","features":[313]},{"name":"DDFXCAPS_BLTSTRETCHY","features":[313]},{"name":"DDFXCAPS_BLTSTRETCHYN","features":[313]},{"name":"DDFXCAPS_OVERLAYALPHA","features":[313]},{"name":"DDFXCAPS_OVERLAYARITHSTRETCHY","features":[313]},{"name":"DDFXCAPS_OVERLAYARITHSTRETCHYN","features":[313]},{"name":"DDFXCAPS_OVERLAYDEINTERLACE","features":[313]},{"name":"DDFXCAPS_OVERLAYFILTER","features":[313]},{"name":"DDFXCAPS_OVERLAYMIRRORLEFTRIGHT","features":[313]},{"name":"DDFXCAPS_OVERLAYMIRRORUPDOWN","features":[313]},{"name":"DDFXCAPS_OVERLAYSHRINKX","features":[313]},{"name":"DDFXCAPS_OVERLAYSHRINKXN","features":[313]},{"name":"DDFXCAPS_OVERLAYSHRINKY","features":[313]},{"name":"DDFXCAPS_OVERLAYSHRINKYN","features":[313]},{"name":"DDFXCAPS_OVERLAYSTRETCHX","features":[313]},{"name":"DDFXCAPS_OVERLAYSTRETCHXN","features":[313]},{"name":"DDFXCAPS_OVERLAYSTRETCHY","features":[313]},{"name":"DDFXCAPS_OVERLAYSTRETCHYN","features":[313]},{"name":"DDGAMMARAMP","features":[313]},{"name":"DDGBS_CANBLT","features":[313]},{"name":"DDGBS_ISBLTDONE","features":[313]},{"name":"DDGDI_GETHOSTIDENTIFIER","features":[313]},{"name":"DDGET32BITDRIVERNAME","features":[313]},{"name":"DDGETCURRENTAUTOFLIPININFO","features":[313]},{"name":"DDGETCURRENTAUTOFLIPOUTINFO","features":[313]},{"name":"DDGETIRQINFO","features":[313]},{"name":"DDGETPOLARITYININFO","features":[313]},{"name":"DDGETPOLARITYOUTINFO","features":[313]},{"name":"DDGETPREVIOUSAUTOFLIPININFO","features":[313]},{"name":"DDGETPREVIOUSAUTOFLIPOUTINFO","features":[313]},{"name":"DDGETTRANSFERSTATUSOUTINFO","features":[313]},{"name":"DDGFS_CANFLIP","features":[313]},{"name":"DDGFS_ISFLIPDONE","features":[313]},{"name":"DDHALDDRAWFNS","features":[303,313,314]},{"name":"DDHALINFO","features":[303,313,314]},{"name":"DDHALINFO_GETDRIVERINFO2","features":[313]},{"name":"DDHALINFO_GETDRIVERINFOSET","features":[313]},{"name":"DDHALINFO_ISPRIMARYDISPLAY","features":[313]},{"name":"DDHALINFO_MODEXILLEGAL","features":[313]},{"name":"DDHALMODEINFO","features":[313]},{"name":"DDHAL_ADDATTACHEDSURFACEDATA","features":[303,313,314]},{"name":"DDHAL_APP_DLLNAME","features":[313]},{"name":"DDHAL_BEGINMOCOMPFRAMEDATA","features":[303,313,314]},{"name":"DDHAL_BLTDATA","features":[303,313,314]},{"name":"DDHAL_CALLBACKS","features":[303,313,314]},{"name":"DDHAL_CANCREATESURFACEDATA","features":[303,313,314]},{"name":"DDHAL_CANCREATEVPORTDATA","features":[303,313,314]},{"name":"DDHAL_CB32_CANCREATESURFACE","features":[313]},{"name":"DDHAL_CB32_CREATEPALETTE","features":[313]},{"name":"DDHAL_CB32_CREATESURFACE","features":[313]},{"name":"DDHAL_CB32_DESTROYDRIVER","features":[313]},{"name":"DDHAL_CB32_FLIPTOGDISURFACE","features":[313]},{"name":"DDHAL_CB32_GETSCANLINE","features":[313]},{"name":"DDHAL_CB32_MAPMEMORY","features":[313]},{"name":"DDHAL_CB32_SETCOLORKEY","features":[313]},{"name":"DDHAL_CB32_SETEXCLUSIVEMODE","features":[313]},{"name":"DDHAL_CB32_SETMODE","features":[313]},{"name":"DDHAL_CB32_WAITFORVERTICALBLANK","features":[313]},{"name":"DDHAL_COLORCONTROLDATA","features":[303,313,314]},{"name":"DDHAL_COLOR_COLORCONTROL","features":[313]},{"name":"DDHAL_CREATEMOCOMPDATA","features":[303,313,314]},{"name":"DDHAL_CREATEPALETTEDATA","features":[303,313,314]},{"name":"DDHAL_CREATESURFACEDATA","features":[303,313,314]},{"name":"DDHAL_CREATESURFACEEXDATA","features":[303,313,314]},{"name":"DDHAL_CREATESURFACEEX_SWAPHANDLES","features":[313]},{"name":"DDHAL_CREATEVPORTDATA","features":[303,313,314]},{"name":"DDHAL_D3DBUFCB32_CANCREATED3DBUF","features":[313]},{"name":"DDHAL_D3DBUFCB32_CREATED3DBUF","features":[313]},{"name":"DDHAL_D3DBUFCB32_DESTROYD3DBUF","features":[313]},{"name":"DDHAL_D3DBUFCB32_LOCKD3DBUF","features":[313]},{"name":"DDHAL_D3DBUFCB32_UNLOCKD3DBUF","features":[313]},{"name":"DDHAL_DDCALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDCOLORCONTROLCALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDEXEBUFCALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDKERNELCALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDMISCELLANEOUS2CALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDMISCELLANEOUSCALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDMOTIONCOMPCALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDPALETTECALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDSURFACECALLBACKS","features":[303,313,314]},{"name":"DDHAL_DDVIDEOPORTCALLBACKS","features":[303,313,314]},{"name":"DDHAL_DESTROYDDLOCALDATA","features":[303,313,314]},{"name":"DDHAL_DESTROYDRIVERDATA","features":[303,313,314]},{"name":"DDHAL_DESTROYMOCOMPDATA","features":[303,313,314]},{"name":"DDHAL_DESTROYPALETTEDATA","features":[303,313,314]},{"name":"DDHAL_DESTROYSURFACEDATA","features":[303,313,314]},{"name":"DDHAL_DESTROYVPORTDATA","features":[303,313,314]},{"name":"DDHAL_DRIVER_DLLNAME","features":[313]},{"name":"DDHAL_DRIVER_HANDLED","features":[313]},{"name":"DDHAL_DRIVER_NOCKEYHW","features":[313]},{"name":"DDHAL_DRIVER_NOTHANDLED","features":[313]},{"name":"DDHAL_DRVSETCOLORKEYDATA","features":[303,313,314]},{"name":"DDHAL_ENDMOCOMPFRAMEDATA","features":[303,313,314]},{"name":"DDHAL_EXEBUFCB32_CANCREATEEXEBUF","features":[313]},{"name":"DDHAL_EXEBUFCB32_CREATEEXEBUF","features":[313]},{"name":"DDHAL_EXEBUFCB32_DESTROYEXEBUF","features":[313]},{"name":"DDHAL_EXEBUFCB32_LOCKEXEBUF","features":[313]},{"name":"DDHAL_EXEBUFCB32_UNLOCKEXEBUF","features":[313]},{"name":"DDHAL_FLIPDATA","features":[303,313,314]},{"name":"DDHAL_FLIPTOGDISURFACEDATA","features":[303,313,314]},{"name":"DDHAL_FLIPVPORTDATA","features":[303,313,314]},{"name":"DDHAL_GETAVAILDRIVERMEMORYDATA","features":[303,313,314]},{"name":"DDHAL_GETBLTSTATUSDATA","features":[303,313,314]},{"name":"DDHAL_GETDRIVERINFODATA","features":[313]},{"name":"DDHAL_GETDRIVERSTATEDATA","features":[313]},{"name":"DDHAL_GETFLIPSTATUSDATA","features":[303,313,314]},{"name":"DDHAL_GETHEAPALIGNMENTDATA","features":[313]},{"name":"DDHAL_GETINTERNALMOCOMPDATA","features":[303,313,314]},{"name":"DDHAL_GETMOCOMPCOMPBUFFDATA","features":[303,313,314]},{"name":"DDHAL_GETMOCOMPFORMATSDATA","features":[303,313,314]},{"name":"DDHAL_GETMOCOMPGUIDSDATA","features":[303,313,314]},{"name":"DDHAL_GETSCANLINEDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTBANDWIDTHDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTCONNECTDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTFIELDDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTFLIPSTATUSDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTINPUTFORMATDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTLINEDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTOUTPUTFORMATDATA","features":[303,313,314]},{"name":"DDHAL_GETVPORTSIGNALDATA","features":[303,313,314]},{"name":"DDHAL_KERNEL_SYNCSURFACEDATA","features":[313]},{"name":"DDHAL_KERNEL_SYNCVIDEOPORTDATA","features":[313]},{"name":"DDHAL_LOCKDATA","features":[303,313,314]},{"name":"DDHAL_MISC2CB32_ALPHABLT","features":[313]},{"name":"DDHAL_MISC2CB32_CREATESURFACEEX","features":[313]},{"name":"DDHAL_MISC2CB32_DESTROYDDLOCAL","features":[313]},{"name":"DDHAL_MISC2CB32_GETDRIVERSTATE","features":[313]},{"name":"DDHAL_MISCCB32_GETAVAILDRIVERMEMORY","features":[313]},{"name":"DDHAL_MISCCB32_GETHEAPALIGNMENT","features":[313]},{"name":"DDHAL_MISCCB32_GETSYSMEMBLTSTATUS","features":[313]},{"name":"DDHAL_MISCCB32_UPDATENONLOCALHEAP","features":[313]},{"name":"DDHAL_MOCOMP32_BEGINFRAME","features":[313]},{"name":"DDHAL_MOCOMP32_CREATE","features":[313]},{"name":"DDHAL_MOCOMP32_DESTROY","features":[313]},{"name":"DDHAL_MOCOMP32_ENDFRAME","features":[313]},{"name":"DDHAL_MOCOMP32_GETCOMPBUFFINFO","features":[313]},{"name":"DDHAL_MOCOMP32_GETFORMATS","features":[313]},{"name":"DDHAL_MOCOMP32_GETGUIDS","features":[313]},{"name":"DDHAL_MOCOMP32_GETINTERNALINFO","features":[313]},{"name":"DDHAL_MOCOMP32_QUERYSTATUS","features":[313]},{"name":"DDHAL_MOCOMP32_RENDER","features":[313]},{"name":"DDHAL_NTCB32_FLIPTOGDISURFACE","features":[313]},{"name":"DDHAL_NTCB32_FREEDRIVERMEMORY","features":[313]},{"name":"DDHAL_NTCB32_SETEXCLUSIVEMODE","features":[313]},{"name":"DDHAL_PALCB32_DESTROYPALETTE","features":[313]},{"name":"DDHAL_PALCB32_SETENTRIES","features":[313]},{"name":"DDHAL_PLEASEALLOC_BLOCKSIZE","features":[313]},{"name":"DDHAL_PLEASEALLOC_LINEARSIZE","features":[313]},{"name":"DDHAL_PLEASEALLOC_USERMEM","features":[313]},{"name":"DDHAL_PRIVATECAP_ATOMICSURFACECREATION","features":[313]},{"name":"DDHAL_PRIVATECAP_NOTIFYPRIMARYCREATION","features":[313]},{"name":"DDHAL_PRIVATECAP_RESERVED1","features":[313]},{"name":"DDHAL_QUERYMOCOMPSTATUSDATA","features":[303,313,314]},{"name":"DDHAL_RENDERMOCOMPDATA","features":[303,313,314]},{"name":"DDHAL_SETCLIPLISTDATA","features":[303,313,314]},{"name":"DDHAL_SETCOLORKEYDATA","features":[303,313,314]},{"name":"DDHAL_SETENTRIESDATA","features":[303,313,314]},{"name":"DDHAL_SETEXCLUSIVEMODEDATA","features":[303,313,314]},{"name":"DDHAL_SETMODEDATA","features":[303,313,314]},{"name":"DDHAL_SETOVERLAYPOSITIONDATA","features":[303,313,314]},{"name":"DDHAL_SETPALETTEDATA","features":[303,313,314]},{"name":"DDHAL_SURFCB32_ADDATTACHEDSURFACE","features":[313]},{"name":"DDHAL_SURFCB32_BLT","features":[313]},{"name":"DDHAL_SURFCB32_DESTROYSURFACE","features":[313]},{"name":"DDHAL_SURFCB32_FLIP","features":[313]},{"name":"DDHAL_SURFCB32_GETBLTSTATUS","features":[313]},{"name":"DDHAL_SURFCB32_GETFLIPSTATUS","features":[313]},{"name":"DDHAL_SURFCB32_LOCK","features":[313]},{"name":"DDHAL_SURFCB32_RESERVED4","features":[313]},{"name":"DDHAL_SURFCB32_SETCLIPLIST","features":[313]},{"name":"DDHAL_SURFCB32_SETCOLORKEY","features":[313]},{"name":"DDHAL_SURFCB32_SETOVERLAYPOSITION","features":[313]},{"name":"DDHAL_SURFCB32_SETPALETTE","features":[313]},{"name":"DDHAL_SURFCB32_UNLOCK","features":[313]},{"name":"DDHAL_SURFCB32_UPDATEOVERLAY","features":[313]},{"name":"DDHAL_SYNCSURFACEDATA","features":[303,313,314]},{"name":"DDHAL_SYNCVIDEOPORTDATA","features":[303,313,314]},{"name":"DDHAL_UNLOCKDATA","features":[303,313,314]},{"name":"DDHAL_UPDATENONLOCALHEAPDATA","features":[303,313,314]},{"name":"DDHAL_UPDATEOVERLAYDATA","features":[303,313,314]},{"name":"DDHAL_UPDATEVPORTDATA","features":[303,313,314]},{"name":"DDHAL_VPORT32_CANCREATEVIDEOPORT","features":[313]},{"name":"DDHAL_VPORT32_COLORCONTROL","features":[313]},{"name":"DDHAL_VPORT32_CREATEVIDEOPORT","features":[313]},{"name":"DDHAL_VPORT32_DESTROY","features":[313]},{"name":"DDHAL_VPORT32_FLIP","features":[313]},{"name":"DDHAL_VPORT32_GETAUTOFLIPSURF","features":[313]},{"name":"DDHAL_VPORT32_GETBANDWIDTH","features":[313]},{"name":"DDHAL_VPORT32_GETCONNECT","features":[313]},{"name":"DDHAL_VPORT32_GETFIELD","features":[313]},{"name":"DDHAL_VPORT32_GETFLIPSTATUS","features":[313]},{"name":"DDHAL_VPORT32_GETINPUTFORMATS","features":[313]},{"name":"DDHAL_VPORT32_GETLINE","features":[313]},{"name":"DDHAL_VPORT32_GETOUTPUTFORMATS","features":[313]},{"name":"DDHAL_VPORT32_GETSIGNALSTATUS","features":[313]},{"name":"DDHAL_VPORT32_UPDATE","features":[313]},{"name":"DDHAL_VPORT32_WAITFORSYNC","features":[313]},{"name":"DDHAL_VPORTCOLORDATA","features":[303,313,314]},{"name":"DDHAL_WAITFORVERTICALBLANKDATA","features":[303,313,314]},{"name":"DDHAL_WAITFORVPORTSYNCDATA","features":[303,313,314]},{"name":"DDIRQ_BUSMASTER","features":[313]},{"name":"DDIRQ_DISPLAY_VSYNC","features":[313]},{"name":"DDIRQ_RESERVED1","features":[313]},{"name":"DDIRQ_VPORT0_LINE","features":[313]},{"name":"DDIRQ_VPORT0_VSYNC","features":[313]},{"name":"DDIRQ_VPORT1_LINE","features":[313]},{"name":"DDIRQ_VPORT1_VSYNC","features":[313]},{"name":"DDIRQ_VPORT2_LINE","features":[313]},{"name":"DDIRQ_VPORT2_VSYNC","features":[313]},{"name":"DDIRQ_VPORT3_LINE","features":[313]},{"name":"DDIRQ_VPORT3_VSYNC","features":[313]},{"name":"DDIRQ_VPORT4_LINE","features":[313]},{"name":"DDIRQ_VPORT4_VSYNC","features":[313]},{"name":"DDIRQ_VPORT5_LINE","features":[313]},{"name":"DDIRQ_VPORT5_VSYNC","features":[313]},{"name":"DDIRQ_VPORT6_LINE","features":[313]},{"name":"DDIRQ_VPORT6_VSYNC","features":[313]},{"name":"DDIRQ_VPORT7_LINE","features":[313]},{"name":"DDIRQ_VPORT7_VSYNC","features":[313]},{"name":"DDIRQ_VPORT8_LINE","features":[313]},{"name":"DDIRQ_VPORT8_VSYNC","features":[313]},{"name":"DDIRQ_VPORT9_LINE","features":[313]},{"name":"DDIRQ_VPORT9_VSYNC","features":[313]},{"name":"DDKERNELCAPS","features":[313]},{"name":"DDKERNELCAPS_AUTOFLIP","features":[313]},{"name":"DDKERNELCAPS_CAPTURE_INVERTED","features":[313]},{"name":"DDKERNELCAPS_CAPTURE_NONLOCALVIDMEM","features":[313]},{"name":"DDKERNELCAPS_CAPTURE_SYSMEM","features":[313]},{"name":"DDKERNELCAPS_FIELDPOLARITY","features":[313]},{"name":"DDKERNELCAPS_FLIPOVERLAY","features":[313]},{"name":"DDKERNELCAPS_FLIPVIDEOPORT","features":[313]},{"name":"DDKERNELCAPS_LOCK","features":[313]},{"name":"DDKERNELCAPS_SETSTATE","features":[313]},{"name":"DDKERNELCAPS_SKIPFIELDS","features":[313]},{"name":"DDLOCKININFO","features":[313]},{"name":"DDLOCKOUTINFO","features":[313]},{"name":"DDLOCK_DISCARDCONTENTS","features":[313]},{"name":"DDLOCK_DONOTWAIT","features":[313]},{"name":"DDLOCK_EVENT","features":[313]},{"name":"DDLOCK_HASVOLUMETEXTUREBOXRECT","features":[313]},{"name":"DDLOCK_NODIRTYUPDATE","features":[313]},{"name":"DDLOCK_NOOVERWRITE","features":[313]},{"name":"DDLOCK_NOSYSLOCK","features":[313]},{"name":"DDLOCK_OKTOSWAP","features":[313]},{"name":"DDLOCK_READONLY","features":[313]},{"name":"DDLOCK_SURFACEMEMORYPTR","features":[313]},{"name":"DDLOCK_WAIT","features":[313]},{"name":"DDLOCK_WRITEONLY","features":[313]},{"name":"DDMCBUFFERINFO","features":[303,313,314]},{"name":"DDMCCOMPBUFFERINFO","features":[313]},{"name":"DDMCQUERY_READ","features":[313]},{"name":"DDMDL","features":[313]},{"name":"DDMOCOMPBUFFERINFO","features":[303,313]},{"name":"DDMODEINFO_MAXREFRESH","features":[313]},{"name":"DDMODEINFO_MODEX","features":[313]},{"name":"DDMODEINFO_PALETTIZED","features":[313]},{"name":"DDMODEINFO_STANDARDVGA","features":[313]},{"name":"DDMODEINFO_STEREO","features":[313]},{"name":"DDMODEINFO_UNSUPPORTED","features":[313]},{"name":"DDMONITORINFO","features":[313]},{"name":"DDMORESURFACECAPS","features":[313]},{"name":"DDNEWCALLBACKFNS","features":[313]},{"name":"DDNONLOCALVIDMEMCAPS","features":[313]},{"name":"DDNTCORECAPS","features":[313]},{"name":"DDOPTSURFACEDESC","features":[313]},{"name":"DDOSCAPS","features":[313]},{"name":"DDOSDCAPS_MONOLITHICMIPMAP","features":[313]},{"name":"DDOSDCAPS_OPTCOMPRESSED","features":[313]},{"name":"DDOSDCAPS_OPTREORDERED","features":[313]},{"name":"DDOSDCAPS_VALIDOSCAPS","features":[313]},{"name":"DDOSDCAPS_VALIDSCAPS","features":[313]},{"name":"DDOSD_ALL","features":[313]},{"name":"DDOSD_COMPRESSION_RATIO","features":[313]},{"name":"DDOSD_GUID","features":[313]},{"name":"DDOSD_OSCAPS","features":[313]},{"name":"DDOSD_SCAPS","features":[313]},{"name":"DDOVERFX_ARITHSTRETCHY","features":[313]},{"name":"DDOVERFX_DEINTERLACE","features":[313]},{"name":"DDOVERFX_MIRRORLEFTRIGHT","features":[313]},{"name":"DDOVERFX_MIRRORUPDOWN","features":[313]},{"name":"DDOVERLAYFX","features":[313]},{"name":"DDOVERZ_INSERTINBACKOF","features":[313]},{"name":"DDOVERZ_INSERTINFRONTOF","features":[313]},{"name":"DDOVERZ_MOVEBACKWARD","features":[313]},{"name":"DDOVERZ_MOVEFORWARD","features":[313]},{"name":"DDOVERZ_SENDTOBACK","features":[313]},{"name":"DDOVERZ_SENDTOFRONT","features":[313]},{"name":"DDOVER_ADDDIRTYRECT","features":[313]},{"name":"DDOVER_ALPHADEST","features":[313]},{"name":"DDOVER_ALPHADESTCONSTOVERRIDE","features":[313]},{"name":"DDOVER_ALPHADESTNEG","features":[313]},{"name":"DDOVER_ALPHADESTSURFACEOVERRIDE","features":[313]},{"name":"DDOVER_ALPHAEDGEBLEND","features":[313]},{"name":"DDOVER_ALPHASRC","features":[313]},{"name":"DDOVER_ALPHASRCCONSTOVERRIDE","features":[313]},{"name":"DDOVER_ALPHASRCNEG","features":[313]},{"name":"DDOVER_ALPHASRCSURFACEOVERRIDE","features":[313]},{"name":"DDOVER_ARGBSCALEFACTORS","features":[313]},{"name":"DDOVER_AUTOFLIP","features":[313]},{"name":"DDOVER_BOB","features":[313]},{"name":"DDOVER_BOBHARDWARE","features":[313]},{"name":"DDOVER_DDFX","features":[313]},{"name":"DDOVER_DEGRADEARGBSCALING","features":[313]},{"name":"DDOVER_HIDE","features":[313]},{"name":"DDOVER_INTERLEAVED","features":[313]},{"name":"DDOVER_KEYDEST","features":[313]},{"name":"DDOVER_KEYDESTOVERRIDE","features":[313]},{"name":"DDOVER_KEYSRC","features":[313]},{"name":"DDOVER_KEYSRCOVERRIDE","features":[313]},{"name":"DDOVER_OVERRIDEBOBWEAVE","features":[313]},{"name":"DDOVER_REFRESHALL","features":[313]},{"name":"DDOVER_REFRESHDIRTYRECTS","features":[313]},{"name":"DDOVER_SHOW","features":[313]},{"name":"DDPCAPS_1BIT","features":[313]},{"name":"DDPCAPS_2BIT","features":[313]},{"name":"DDPCAPS_4BIT","features":[313]},{"name":"DDPCAPS_8BIT","features":[313]},{"name":"DDPCAPS_8BITENTRIES","features":[313]},{"name":"DDPCAPS_ALLOW256","features":[313]},{"name":"DDPCAPS_ALPHA","features":[313]},{"name":"DDPCAPS_INITIALIZE","features":[313]},{"name":"DDPCAPS_PRIMARYSURFACE","features":[313]},{"name":"DDPCAPS_PRIMARYSURFACELEFT","features":[313]},{"name":"DDPCAPS_VSYNC","features":[313]},{"name":"DDPF_ALPHA","features":[313]},{"name":"DDPF_ALPHAPIXELS","features":[313]},{"name":"DDPF_ALPHAPREMULT","features":[313]},{"name":"DDPF_BUMPDUDV","features":[313]},{"name":"DDPF_BUMPLUMINANCE","features":[313]},{"name":"DDPF_COMPRESSED","features":[313]},{"name":"DDPF_D3DFORMAT","features":[313]},{"name":"DDPF_FOURCC","features":[313]},{"name":"DDPF_LUMINANCE","features":[313]},{"name":"DDPF_NOVEL_TEXTURE_FORMAT","features":[313]},{"name":"DDPF_PALETTEINDEXED1","features":[313]},{"name":"DDPF_PALETTEINDEXED2","features":[313]},{"name":"DDPF_PALETTEINDEXED4","features":[313]},{"name":"DDPF_PALETTEINDEXED8","features":[313]},{"name":"DDPF_PALETTEINDEXEDTO8","features":[313]},{"name":"DDPF_RGB","features":[313]},{"name":"DDPF_RGBTOYUV","features":[313]},{"name":"DDPF_STENCILBUFFER","features":[313]},{"name":"DDPF_YUV","features":[313]},{"name":"DDPF_ZBUFFER","features":[313]},{"name":"DDPF_ZPIXELS","features":[313]},{"name":"DDPIXELFORMAT","features":[313]},{"name":"DDRAWICLIP_INMASTERSPRITELIST","features":[313]},{"name":"DDRAWICLIP_ISINITIALIZED","features":[313]},{"name":"DDRAWICLIP_WATCHWINDOW","features":[313]},{"name":"DDRAWILCL_ACTIVENO","features":[313]},{"name":"DDRAWILCL_ACTIVEYES","features":[313]},{"name":"DDRAWILCL_ALLOWMODEX","features":[313]},{"name":"DDRAWILCL_ATTEMPTEDD3DCONTEXT","features":[313]},{"name":"DDRAWILCL_CREATEDWINDOW","features":[313]},{"name":"DDRAWILCL_CURSORCLIPPED","features":[313]},{"name":"DDRAWILCL_DIRECTDRAW7","features":[313]},{"name":"DDRAWILCL_DIRECTDRAW8","features":[313]},{"name":"DDRAWILCL_DIRTYDC","features":[313]},{"name":"DDRAWILCL_DISABLEINACTIVATE","features":[313]},{"name":"DDRAWILCL_DX8DRIVER","features":[313]},{"name":"DDRAWILCL_EXPLICITMONITOR","features":[313]},{"name":"DDRAWILCL_FPUPRESERVE","features":[313]},{"name":"DDRAWILCL_FPUSETUP","features":[313]},{"name":"DDRAWILCL_HASEXCLUSIVEMODE","features":[313]},{"name":"DDRAWILCL_HOOKEDHWND","features":[313]},{"name":"DDRAWILCL_ISFULLSCREEN","features":[313]},{"name":"DDRAWILCL_MODEHASBEENCHANGED","features":[313]},{"name":"DDRAWILCL_MULTITHREADED","features":[313]},{"name":"DDRAWILCL_POWEREDDOWN","features":[313]},{"name":"DDRAWILCL_SETCOOPCALLED","features":[313]},{"name":"DDRAWILCL_V1SCLBEHAVIOUR","features":[313]},{"name":"DDRAWIPAL_16","features":[313]},{"name":"DDRAWIPAL_2","features":[313]},{"name":"DDRAWIPAL_256","features":[313]},{"name":"DDRAWIPAL_4","features":[313]},{"name":"DDRAWIPAL_ALLOW256","features":[313]},{"name":"DDRAWIPAL_ALPHA","features":[313]},{"name":"DDRAWIPAL_DIRTY","features":[313]},{"name":"DDRAWIPAL_EXCLUSIVE","features":[313]},{"name":"DDRAWIPAL_GDI","features":[313]},{"name":"DDRAWIPAL_INHEL","features":[313]},{"name":"DDRAWIPAL_STORED_16","features":[313]},{"name":"DDRAWIPAL_STORED_24","features":[313]},{"name":"DDRAWIPAL_STORED_8","features":[313]},{"name":"DDRAWIPAL_STORED_8INDEX","features":[313]},{"name":"DDRAWISURFGBL_DDHELDONTFREE","features":[313]},{"name":"DDRAWISURFGBL_DX8SURFACE","features":[313]},{"name":"DDRAWISURFGBL_FASTLOCKHELD","features":[313]},{"name":"DDRAWISURFGBL_HARDWAREOPDEST","features":[313]},{"name":"DDRAWISURFGBL_HARDWAREOPSOURCE","features":[313]},{"name":"DDRAWISURFGBL_IMPLICITHANDLE","features":[313]},{"name":"DDRAWISURFGBL_ISCLIENTMEM","features":[313]},{"name":"DDRAWISURFGBL_ISGDISURFACE","features":[313]},{"name":"DDRAWISURFGBL_LATEALLOCATELINEAR","features":[313]},{"name":"DDRAWISURFGBL_LOCKBROKEN","features":[313]},{"name":"DDRAWISURFGBL_LOCKNOTHOLDINGWIN16LOCK","features":[313]},{"name":"DDRAWISURFGBL_LOCKVRAMSTYLE","features":[313]},{"name":"DDRAWISURFGBL_MEMFREE","features":[313]},{"name":"DDRAWISURFGBL_NOTIFYWHENUNLOCKED","features":[313]},{"name":"DDRAWISURFGBL_READONLYLOCKHELD","features":[313]},{"name":"DDRAWISURFGBL_RESERVED0","features":[313]},{"name":"DDRAWISURFGBL_SOFTWAREAUTOFLIP","features":[313]},{"name":"DDRAWISURFGBL_SYSMEMEXECUTEBUFFER","features":[313]},{"name":"DDRAWISURFGBL_SYSMEMREQUESTED","features":[313]},{"name":"DDRAWISURFGBL_VPORTDATA","features":[313]},{"name":"DDRAWISURFGBL_VPORTINTERLEAVED","features":[313]},{"name":"DDRAWISURF_ATTACHED","features":[313]},{"name":"DDRAWISURF_ATTACHED_FROM","features":[313]},{"name":"DDRAWISURF_BACKBUFFER","features":[313]},{"name":"DDRAWISURF_DATAISALIASED","features":[313]},{"name":"DDRAWISURF_DCIBUSY","features":[313]},{"name":"DDRAWISURF_DCILOCK","features":[313]},{"name":"DDRAWISURF_DRIVERMANAGED","features":[313]},{"name":"DDRAWISURF_FRONTBUFFER","features":[313]},{"name":"DDRAWISURF_GETDCNULL","features":[313]},{"name":"DDRAWISURF_HASCKEYDESTBLT","features":[313]},{"name":"DDRAWISURF_HASCKEYDESTOVERLAY","features":[313]},{"name":"DDRAWISURF_HASCKEYSRCBLT","features":[313]},{"name":"DDRAWISURF_HASCKEYSRCOVERLAY","features":[313]},{"name":"DDRAWISURF_HASDC","features":[313]},{"name":"DDRAWISURF_HASOVERLAYDATA","features":[313]},{"name":"DDRAWISURF_HASPIXELFORMAT","features":[313]},{"name":"DDRAWISURF_HELCB","features":[313]},{"name":"DDRAWISURF_HW_CKEYDESTBLT","features":[313]},{"name":"DDRAWISURF_HW_CKEYDESTOVERLAY","features":[313]},{"name":"DDRAWISURF_HW_CKEYSRCBLT","features":[313]},{"name":"DDRAWISURF_HW_CKEYSRCOVERLAY","features":[313]},{"name":"DDRAWISURF_IMPLICITCREATE","features":[313]},{"name":"DDRAWISURF_IMPLICITROOT","features":[313]},{"name":"DDRAWISURF_INMASTERSPRITELIST","features":[313]},{"name":"DDRAWISURF_INVALID","features":[313]},{"name":"DDRAWISURF_ISFREE","features":[313]},{"name":"DDRAWISURF_LOCKEXCLUDEDCURSOR","features":[313]},{"name":"DDRAWISURF_PARTOFPRIMARYCHAIN","features":[313]},{"name":"DDRAWISURF_SETGAMMA","features":[313]},{"name":"DDRAWISURF_STEREOSURFACELEFT","features":[313]},{"name":"DDRAWISURF_SW_CKEYDESTBLT","features":[313]},{"name":"DDRAWISURF_SW_CKEYDESTOVERLAY","features":[313]},{"name":"DDRAWISURF_SW_CKEYSRCBLT","features":[313]},{"name":"DDRAWISURF_SW_CKEYSRCOVERLAY","features":[313]},{"name":"DDRAWIVPORT_COLORKEYANDINTERP","features":[313]},{"name":"DDRAWIVPORT_NOKERNELHANDLES","features":[313]},{"name":"DDRAWIVPORT_ON","features":[313]},{"name":"DDRAWIVPORT_SOFTWARE_AUTOFLIP","features":[313]},{"name":"DDRAWIVPORT_SOFTWARE_BOB","features":[313]},{"name":"DDRAWIVPORT_VBION","features":[313]},{"name":"DDRAWIVPORT_VIDEOON","features":[313]},{"name":"DDRAWI_ATTACHEDTODESKTOP","features":[313]},{"name":"DDRAWI_BADPDEV","features":[313]},{"name":"DDRAWI_CHANGINGMODE","features":[313]},{"name":"DDRAWI_DDMOTIONCOMP_INT","features":[303,313,314]},{"name":"DDRAWI_DDMOTIONCOMP_LCL","features":[303,313,314]},{"name":"DDRAWI_DDRAWCLIPPER_GBL","features":[303,313,314]},{"name":"DDRAWI_DDRAWCLIPPER_INT","features":[303,313,314]},{"name":"DDRAWI_DDRAWCLIPPER_LCL","features":[303,313,314]},{"name":"DDRAWI_DDRAWDATANOTFETCHED","features":[313]},{"name":"DDRAWI_DDRAWPALETTE_GBL","features":[303,313,314]},{"name":"DDRAWI_DDRAWPALETTE_INT","features":[303,313,314]},{"name":"DDRAWI_DDRAWPALETTE_LCL","features":[303,313,314]},{"name":"DDRAWI_DDRAWSURFACE_GBL","features":[303,313,314]},{"name":"DDRAWI_DDRAWSURFACE_GBL_MORE","features":[313]},{"name":"DDRAWI_DDRAWSURFACE_INT","features":[303,313,314]},{"name":"DDRAWI_DDRAWSURFACE_LCL","features":[303,313,314]},{"name":"DDRAWI_DDRAWSURFACE_MORE","features":[303,313,314]},{"name":"DDRAWI_DDVIDEOPORT_INT","features":[303,313,314]},{"name":"DDRAWI_DDVIDEOPORT_LCL","features":[303,313,314]},{"name":"DDRAWI_DIRECTDRAW_GBL","features":[303,313,314]},{"name":"DDRAWI_DIRECTDRAW_INT","features":[303,313,314]},{"name":"DDRAWI_DIRECTDRAW_LCL","features":[303,313,314]},{"name":"DDRAWI_DISPLAYDRV","features":[313]},{"name":"DDRAWI_DRIVERINFO2","features":[313]},{"name":"DDRAWI_EMULATIONINITIALIZED","features":[313]},{"name":"DDRAWI_EXTENDEDALIGNMENT","features":[313]},{"name":"DDRAWI_FLIPPEDTOGDI","features":[313]},{"name":"DDRAWI_FULLSCREEN","features":[313]},{"name":"DDRAWI_GDIDRV","features":[313]},{"name":"DDRAWI_GETCOLOR","features":[313]},{"name":"DDRAWI_HASCKEYDESTOVERLAY","features":[313]},{"name":"DDRAWI_HASCKEYSRCOVERLAY","features":[313]},{"name":"DDRAWI_HASGDIPALETTE","features":[313]},{"name":"DDRAWI_HASGDIPALETTE_EXCLUSIVE","features":[313]},{"name":"DDRAWI_MODECHANGED","features":[313]},{"name":"DDRAWI_MODEX","features":[313]},{"name":"DDRAWI_MODEXILLEGAL","features":[313]},{"name":"DDRAWI_NEEDSWIN16FORVRAMLOCK","features":[313]},{"name":"DDRAWI_NOEMULATION","features":[313]},{"name":"DDRAWI_NOHARDWARE","features":[313]},{"name":"DDRAWI_PALETTEINIT","features":[313]},{"name":"DDRAWI_PDEVICEVRAMBITCLEARED","features":[313]},{"name":"DDRAWI_SECONDARYDRIVERLOADED","features":[313]},{"name":"DDRAWI_SETCOLOR","features":[313]},{"name":"DDRAWI_STANDARDVGA","features":[313]},{"name":"DDRAWI_TESTINGMODES","features":[313]},{"name":"DDRAWI_UMODELOADED","features":[313]},{"name":"DDRAWI_VIRTUALDESKTOP","features":[313]},{"name":"DDRAWI_VPORTGETCOLOR","features":[313]},{"name":"DDRAWI_VPORTSETCOLOR","features":[313]},{"name":"DDRAWI_VPORTSTART","features":[313]},{"name":"DDRAWI_VPORTSTOP","features":[313]},{"name":"DDRAWI_VPORTUPDATE","features":[313]},{"name":"DDRAWI_xxxxxxxxx1","features":[313]},{"name":"DDRAWI_xxxxxxxxx2","features":[313]},{"name":"DDRGBA","features":[313]},{"name":"DDSCAPS","features":[313]},{"name":"DDSCAPS2","features":[313]},{"name":"DDSCAPS2_ADDITIONALPRIMARY","features":[313]},{"name":"DDSCAPS2_COMMANDBUFFER","features":[313]},{"name":"DDSCAPS2_CUBEMAP","features":[313]},{"name":"DDSCAPS2_CUBEMAP_NEGATIVEX","features":[313]},{"name":"DDSCAPS2_CUBEMAP_NEGATIVEY","features":[313]},{"name":"DDSCAPS2_CUBEMAP_NEGATIVEZ","features":[313]},{"name":"DDSCAPS2_CUBEMAP_POSITIVEX","features":[313]},{"name":"DDSCAPS2_CUBEMAP_POSITIVEY","features":[313]},{"name":"DDSCAPS2_CUBEMAP_POSITIVEZ","features":[313]},{"name":"DDSCAPS2_D3DTEXTUREMANAGE","features":[313]},{"name":"DDSCAPS2_DISCARDBACKBUFFER","features":[313]},{"name":"DDSCAPS2_DONOTPERSIST","features":[313]},{"name":"DDSCAPS2_ENABLEALPHACHANNEL","features":[313]},{"name":"DDSCAPS2_EXTENDEDFORMATPRIMARY","features":[313]},{"name":"DDSCAPS2_HARDWAREDEINTERLACE","features":[313]},{"name":"DDSCAPS2_HINTANTIALIASING","features":[313]},{"name":"DDSCAPS2_HINTDYNAMIC","features":[313]},{"name":"DDSCAPS2_HINTSTATIC","features":[313]},{"name":"DDSCAPS2_INDEXBUFFER","features":[313]},{"name":"DDSCAPS2_MIPMAPSUBLEVEL","features":[313]},{"name":"DDSCAPS2_NOTUSERLOCKABLE","features":[313]},{"name":"DDSCAPS2_NPATCHES","features":[313]},{"name":"DDSCAPS2_OPAQUE","features":[313]},{"name":"DDSCAPS2_POINTS","features":[313]},{"name":"DDSCAPS2_RESERVED1","features":[313]},{"name":"DDSCAPS2_RESERVED2","features":[313]},{"name":"DDSCAPS2_RESERVED3","features":[313]},{"name":"DDSCAPS2_RESERVED4","features":[313]},{"name":"DDSCAPS2_RTPATCHES","features":[313]},{"name":"DDSCAPS2_STEREOSURFACELEFT","features":[313]},{"name":"DDSCAPS2_TEXTUREMANAGE","features":[313]},{"name":"DDSCAPS2_VERTEXBUFFER","features":[313]},{"name":"DDSCAPS2_VOLUME","features":[313]},{"name":"DDSCAPS3_AUTOGENMIPMAP","features":[313]},{"name":"DDSCAPS3_CREATESHAREDRESOURCE","features":[313]},{"name":"DDSCAPS3_DMAP","features":[313]},{"name":"DDSCAPS3_LIGHTWEIGHTMIPMAP","features":[313]},{"name":"DDSCAPS3_MULTISAMPLE_MASK","features":[313]},{"name":"DDSCAPS3_MULTISAMPLE_QUALITY_MASK","features":[313]},{"name":"DDSCAPS3_MULTISAMPLE_QUALITY_SHIFT","features":[313]},{"name":"DDSCAPS3_OPENSHAREDRESOURCE","features":[313]},{"name":"DDSCAPS3_READONLYRESOURCE","features":[313]},{"name":"DDSCAPS3_RESERVED1","features":[313]},{"name":"DDSCAPS3_RESERVED2","features":[313]},{"name":"DDSCAPS3_VIDEO","features":[313]},{"name":"DDSCAPSEX","features":[313]},{"name":"DDSCAPS_3DDEVICE","features":[313]},{"name":"DDSCAPS_ALLOCONLOAD","features":[313]},{"name":"DDSCAPS_ALPHA","features":[313]},{"name":"DDSCAPS_BACKBUFFER","features":[313]},{"name":"DDSCAPS_COMMANDBUFFER","features":[313]},{"name":"DDSCAPS_COMPLEX","features":[313]},{"name":"DDSCAPS_EXECUTEBUFFER","features":[313]},{"name":"DDSCAPS_FLIP","features":[313]},{"name":"DDSCAPS_FRONTBUFFER","features":[313]},{"name":"DDSCAPS_HWCODEC","features":[313]},{"name":"DDSCAPS_LIVEVIDEO","features":[313]},{"name":"DDSCAPS_LOCALVIDMEM","features":[313]},{"name":"DDSCAPS_MIPMAP","features":[313]},{"name":"DDSCAPS_MODEX","features":[313]},{"name":"DDSCAPS_NONLOCALVIDMEM","features":[313]},{"name":"DDSCAPS_OFFSCREENPLAIN","features":[313]},{"name":"DDSCAPS_OPTIMIZED","features":[313]},{"name":"DDSCAPS_OVERLAY","features":[313]},{"name":"DDSCAPS_OWNDC","features":[313]},{"name":"DDSCAPS_PALETTE","features":[313]},{"name":"DDSCAPS_PRIMARYSURFACE","features":[313]},{"name":"DDSCAPS_PRIMARYSURFACELEFT","features":[313]},{"name":"DDSCAPS_RESERVED1","features":[313]},{"name":"DDSCAPS_RESERVED2","features":[313]},{"name":"DDSCAPS_RESERVED3","features":[313]},{"name":"DDSCAPS_STANDARDVGAMODE","features":[313]},{"name":"DDSCAPS_SYSTEMMEMORY","features":[313]},{"name":"DDSCAPS_TEXTURE","features":[313]},{"name":"DDSCAPS_VIDEOMEMORY","features":[313]},{"name":"DDSCAPS_VIDEOPORT","features":[313]},{"name":"DDSCAPS_VISIBLE","features":[313]},{"name":"DDSCAPS_WRITEONLY","features":[313]},{"name":"DDSCAPS_ZBUFFER","features":[313]},{"name":"DDSCL_ALLOWMODEX","features":[313]},{"name":"DDSCL_ALLOWREBOOT","features":[313]},{"name":"DDSCL_CREATEDEVICEWINDOW","features":[313]},{"name":"DDSCL_EXCLUSIVE","features":[313]},{"name":"DDSCL_FPUPRESERVE","features":[313]},{"name":"DDSCL_FPUSETUP","features":[313]},{"name":"DDSCL_FULLSCREEN","features":[313]},{"name":"DDSCL_MULTITHREADED","features":[313]},{"name":"DDSCL_NORMAL","features":[313]},{"name":"DDSCL_NOWINDOWCHANGES","features":[313]},{"name":"DDSCL_SETDEVICEWINDOW","features":[313]},{"name":"DDSCL_SETFOCUSWINDOW","features":[313]},{"name":"DDSDM_STANDARDVGAMODE","features":[313]},{"name":"DDSD_ALL","features":[313]},{"name":"DDSD_ALPHABITDEPTH","features":[313]},{"name":"DDSD_BACKBUFFERCOUNT","features":[313]},{"name":"DDSD_CAPS","features":[313]},{"name":"DDSD_CKDESTBLT","features":[313]},{"name":"DDSD_CKDESTOVERLAY","features":[313]},{"name":"DDSD_CKSRCBLT","features":[313]},{"name":"DDSD_CKSRCOVERLAY","features":[313]},{"name":"DDSD_DEPTH","features":[313]},{"name":"DDSD_FVF","features":[313]},{"name":"DDSD_HEIGHT","features":[313]},{"name":"DDSD_LINEARSIZE","features":[313]},{"name":"DDSD_LPSURFACE","features":[313]},{"name":"DDSD_MIPMAPCOUNT","features":[313]},{"name":"DDSD_PITCH","features":[313]},{"name":"DDSD_PIXELFORMAT","features":[313]},{"name":"DDSD_REFRESHRATE","features":[313]},{"name":"DDSD_SRCVBHANDLE","features":[313]},{"name":"DDSD_TEXTURESTAGE","features":[313]},{"name":"DDSD_WIDTH","features":[313]},{"name":"DDSD_ZBUFFERBITDEPTH","features":[313]},{"name":"DDSETSTATEININFO","features":[313]},{"name":"DDSETSTATEOUTINFO","features":[303,313]},{"name":"DDSETSURFACEDESC_PRESERVEDC","features":[313]},{"name":"DDSETSURFACEDESC_RECREATEDC","features":[313]},{"name":"DDSGR_CALIBRATE","features":[313]},{"name":"DDSKIPNEXTFIELDINFO","features":[313]},{"name":"DDSKIP_ENABLENEXT","features":[313]},{"name":"DDSKIP_SKIPNEXT","features":[313]},{"name":"DDSMT_ISTESTREQUIRED","features":[313]},{"name":"DDSPD_IUNKNOWNPOINTER","features":[313]},{"name":"DDSPD_VOLATILE","features":[313]},{"name":"DDSTEREOMODE","features":[303,313]},{"name":"DDSURFACEDATA","features":[313]},{"name":"DDSURFACEDESC","features":[313]},{"name":"DDSURFACEDESC2","features":[313]},{"name":"DDSVCAPS_RESERVED1","features":[313]},{"name":"DDSVCAPS_RESERVED2","features":[313]},{"name":"DDSVCAPS_RESERVED3","features":[313]},{"name":"DDSVCAPS_RESERVED4","features":[313]},{"name":"DDSVCAPS_STEREOSEQUENTIAL","features":[313]},{"name":"DDTRANSFERININFO","features":[313]},{"name":"DDTRANSFEROUTINFO","features":[313]},{"name":"DDTRANSFER_CANCEL","features":[313]},{"name":"DDTRANSFER_HALFLINES","features":[313]},{"name":"DDTRANSFER_INVERT","features":[313]},{"name":"DDTRANSFER_NONLOCALVIDMEM","features":[313]},{"name":"DDTRANSFER_SYSTEMMEMORY","features":[313]},{"name":"DDUNSUPPORTEDMODE","features":[313]},{"name":"DDVERSIONDATA","features":[313]},{"name":"DDVERSIONINFO","features":[313]},{"name":"DDVIDEOPORTBANDWIDTH","features":[313]},{"name":"DDVIDEOPORTCAPS","features":[313]},{"name":"DDVIDEOPORTCONNECT","features":[313]},{"name":"DDVIDEOPORTDATA","features":[313]},{"name":"DDVIDEOPORTDESC","features":[313]},{"name":"DDVIDEOPORTINFO","features":[303,313]},{"name":"DDVIDEOPORTNOTIFY","features":[313]},{"name":"DDVIDEOPORTSTATUS","features":[303,313]},{"name":"DDVPBCAPS_DESTINATION","features":[313]},{"name":"DDVPBCAPS_SOURCE","features":[313]},{"name":"DDVPB_OVERLAY","features":[313]},{"name":"DDVPB_TYPE","features":[313]},{"name":"DDVPB_VIDEOPORT","features":[313]},{"name":"DDVPCAPS_AUTOFLIP","features":[313]},{"name":"DDVPCAPS_COLORCONTROL","features":[313]},{"name":"DDVPCAPS_HARDWAREDEINTERLACE","features":[313]},{"name":"DDVPCAPS_INTERLACED","features":[313]},{"name":"DDVPCAPS_NONINTERLACED","features":[313]},{"name":"DDVPCAPS_OVERSAMPLEDVBI","features":[313]},{"name":"DDVPCAPS_READBACKFIELD","features":[313]},{"name":"DDVPCAPS_READBACKLINE","features":[313]},{"name":"DDVPCAPS_SHAREABLE","features":[313]},{"name":"DDVPCAPS_SKIPEVENFIELDS","features":[313]},{"name":"DDVPCAPS_SKIPODDFIELDS","features":[313]},{"name":"DDVPCAPS_SYNCMASTER","features":[313]},{"name":"DDVPCAPS_SYSTEMMEMORY","features":[313]},{"name":"DDVPCAPS_VBIANDVIDEOINDEPENDENT","features":[313]},{"name":"DDVPCAPS_VBISURFACE","features":[313]},{"name":"DDVPCONNECT_DISCARDSVREFDATA","features":[313]},{"name":"DDVPCONNECT_DOUBLECLOCK","features":[313]},{"name":"DDVPCONNECT_HALFLINE","features":[313]},{"name":"DDVPCONNECT_INTERLACED","features":[313]},{"name":"DDVPCONNECT_INVERTPOLARITY","features":[313]},{"name":"DDVPCONNECT_SHAREEVEN","features":[313]},{"name":"DDVPCONNECT_SHAREODD","features":[313]},{"name":"DDVPCONNECT_VACT","features":[313]},{"name":"DDVPCREATE_VBIONLY","features":[313]},{"name":"DDVPCREATE_VIDEOONLY","features":[313]},{"name":"DDVPD_ALIGN","features":[313]},{"name":"DDVPD_AUTOFLIP","features":[313]},{"name":"DDVPD_CAPS","features":[313]},{"name":"DDVPD_FILTERQUALITY","features":[313]},{"name":"DDVPD_FX","features":[313]},{"name":"DDVPD_HEIGHT","features":[313]},{"name":"DDVPD_ID","features":[313]},{"name":"DDVPD_PREFERREDAUTOFLIP","features":[313]},{"name":"DDVPD_WIDTH","features":[313]},{"name":"DDVPFLIP_VBI","features":[313]},{"name":"DDVPFLIP_VIDEO","features":[313]},{"name":"DDVPFORMAT_VBI","features":[313]},{"name":"DDVPFORMAT_VIDEO","features":[313]},{"name":"DDVPFX_CROPTOPDATA","features":[313]},{"name":"DDVPFX_CROPX","features":[313]},{"name":"DDVPFX_CROPY","features":[313]},{"name":"DDVPFX_IGNOREVBIXCROP","features":[313]},{"name":"DDVPFX_INTERLEAVE","features":[313]},{"name":"DDVPFX_MIRRORLEFTRIGHT","features":[313]},{"name":"DDVPFX_MIRRORUPDOWN","features":[313]},{"name":"DDVPFX_PRESHRINKX","features":[313]},{"name":"DDVPFX_PRESHRINKXB","features":[313]},{"name":"DDVPFX_PRESHRINKXS","features":[313]},{"name":"DDVPFX_PRESHRINKY","features":[313]},{"name":"DDVPFX_PRESHRINKYB","features":[313]},{"name":"DDVPFX_PRESHRINKYS","features":[313]},{"name":"DDVPFX_PRESTRETCHX","features":[313]},{"name":"DDVPFX_PRESTRETCHXN","features":[313]},{"name":"DDVPFX_PRESTRETCHY","features":[313]},{"name":"DDVPFX_PRESTRETCHYN","features":[313]},{"name":"DDVPFX_VBICONVERT","features":[313]},{"name":"DDVPFX_VBINOINTERLEAVE","features":[313]},{"name":"DDVPFX_VBINOSCALE","features":[313]},{"name":"DDVPSQ_NOSIGNAL","features":[313]},{"name":"DDVPSQ_SIGNALOK","features":[313]},{"name":"DDVPSTATUS_VBIONLY","features":[313]},{"name":"DDVPSTATUS_VIDEOONLY","features":[313]},{"name":"DDVPTARGET_VBI","features":[313]},{"name":"DDVPTARGET_VIDEO","features":[313]},{"name":"DDVPTYPE_BROOKTREE","features":[313]},{"name":"DDVPTYPE_CCIR656","features":[313]},{"name":"DDVPTYPE_E_HREFH_VREFH","features":[313]},{"name":"DDVPTYPE_E_HREFH_VREFL","features":[313]},{"name":"DDVPTYPE_E_HREFL_VREFH","features":[313]},{"name":"DDVPTYPE_E_HREFL_VREFL","features":[313]},{"name":"DDVPTYPE_PHILIPS","features":[313]},{"name":"DDVPWAIT_BEGIN","features":[313]},{"name":"DDVPWAIT_END","features":[313]},{"name":"DDVPWAIT_LINE","features":[313]},{"name":"DDVP_AUTOFLIP","features":[313]},{"name":"DDVP_CONVERT","features":[313]},{"name":"DDVP_CROP","features":[313]},{"name":"DDVP_HARDWAREDEINTERLACE","features":[313]},{"name":"DDVP_IGNOREVBIXCROP","features":[313]},{"name":"DDVP_INTERLEAVE","features":[313]},{"name":"DDVP_MIRRORLEFTRIGHT","features":[313]},{"name":"DDVP_MIRRORUPDOWN","features":[313]},{"name":"DDVP_OVERRIDEBOBWEAVE","features":[313]},{"name":"DDVP_PRESCALE","features":[313]},{"name":"DDVP_SKIPEVENFIELDS","features":[313]},{"name":"DDVP_SKIPODDFIELDS","features":[313]},{"name":"DDVP_SYNCMASTER","features":[313]},{"name":"DDVP_VBICONVERT","features":[313]},{"name":"DDVP_VBINOINTERLEAVE","features":[313]},{"name":"DDVP_VBINOSCALE","features":[313]},{"name":"DDWAITVB_BLOCKBEGIN","features":[313]},{"name":"DDWAITVB_BLOCKBEGINEVENT","features":[313]},{"name":"DDWAITVB_BLOCKEND","features":[313]},{"name":"DDWAITVB_I_TESTVB","features":[313]},{"name":"DD_ADDATTACHEDSURFACEDATA","features":[303,313]},{"name":"DD_ATTACHLIST","features":[303,313]},{"name":"DD_BEGINMOCOMPFRAMEDATA","features":[303,313]},{"name":"DD_BLTDATA","features":[303,313]},{"name":"DD_CALLBACKS","features":[303,313,314]},{"name":"DD_CANCREATESURFACEDATA","features":[313]},{"name":"DD_CANCREATEVPORTDATA","features":[313]},{"name":"DD_CLIPPER_GLOBAL","features":[313]},{"name":"DD_CLIPPER_LOCAL","features":[313]},{"name":"DD_COLORCONTROLCALLBACKS","features":[303,313]},{"name":"DD_COLORCONTROLDATA","features":[303,313]},{"name":"DD_CREATEMOCOMPDATA","features":[313]},{"name":"DD_CREATEPALETTEDATA","features":[303,313,314]},{"name":"DD_CREATESURFACEDATA","features":[303,313]},{"name":"DD_CREATESURFACEEXDATA","features":[303,313]},{"name":"DD_CREATEVPORTDATA","features":[303,313]},{"name":"DD_D3DBUFCALLBACKS","features":[303,313]},{"name":"DD_DESTROYDDLOCALDATA","features":[313]},{"name":"DD_DESTROYMOCOMPDATA","features":[313]},{"name":"DD_DESTROYPALETTEDATA","features":[313]},{"name":"DD_DESTROYSURFACEDATA","features":[303,313]},{"name":"DD_DESTROYVPORTDATA","features":[303,313]},{"name":"DD_DIRECTDRAW_GLOBAL","features":[313]},{"name":"DD_DIRECTDRAW_LOCAL","features":[313]},{"name":"DD_DRVSETCOLORKEYDATA","features":[303,313]},{"name":"DD_ENDMOCOMPFRAMEDATA","features":[313]},{"name":"DD_FLIPDATA","features":[303,313]},{"name":"DD_FLIPTOGDISURFACEDATA","features":[313]},{"name":"DD_FLIPVPORTDATA","features":[303,313]},{"name":"DD_FREEDRIVERMEMORYDATA","features":[303,313]},{"name":"DD_GETAVAILDRIVERMEMORYDATA","features":[313]},{"name":"DD_GETBLTSTATUSDATA","features":[303,313]},{"name":"DD_GETDRIVERINFODATA","features":[313]},{"name":"DD_GETDRIVERSTATEDATA","features":[313]},{"name":"DD_GETFLIPSTATUSDATA","features":[303,313]},{"name":"DD_GETHEAPALIGNMENTDATA","features":[313]},{"name":"DD_GETINTERNALMOCOMPDATA","features":[313]},{"name":"DD_GETMOCOMPCOMPBUFFDATA","features":[313]},{"name":"DD_GETMOCOMPFORMATSDATA","features":[313]},{"name":"DD_GETMOCOMPGUIDSDATA","features":[313]},{"name":"DD_GETSCANLINEDATA","features":[313]},{"name":"DD_GETVPORTBANDWIDTHDATA","features":[303,313]},{"name":"DD_GETVPORTCONNECTDATA","features":[313]},{"name":"DD_GETVPORTFIELDDATA","features":[303,313]},{"name":"DD_GETVPORTFLIPSTATUSDATA","features":[313]},{"name":"DD_GETVPORTINPUTFORMATDATA","features":[303,313]},{"name":"DD_GETVPORTLINEDATA","features":[303,313]},{"name":"DD_GETVPORTOUTPUTFORMATDATA","features":[303,313]},{"name":"DD_GETVPORTSIGNALDATA","features":[303,313]},{"name":"DD_HALINFO","features":[303,313]},{"name":"DD_HALINFO_V4","features":[313]},{"name":"DD_HAL_VERSION","features":[313]},{"name":"DD_KERNELCALLBACKS","features":[303,313]},{"name":"DD_LOCKDATA","features":[303,313]},{"name":"DD_MAPMEMORYDATA","features":[303,313]},{"name":"DD_MISCELLANEOUS2CALLBACKS","features":[303,313]},{"name":"DD_MISCELLANEOUSCALLBACKS","features":[313]},{"name":"DD_MORECAPS","features":[313]},{"name":"DD_MORESURFACECAPS","features":[313]},{"name":"DD_MOTIONCOMPCALLBACKS","features":[303,313]},{"name":"DD_MOTIONCOMP_LOCAL","features":[313]},{"name":"DD_NONLOCALVIDMEMCAPS","features":[313]},{"name":"DD_NTCALLBACKS","features":[303,313]},{"name":"DD_NTPRIVATEDRIVERCAPS","features":[313]},{"name":"DD_PALETTECALLBACKS","features":[313,314]},{"name":"DD_PALETTE_GLOBAL","features":[313]},{"name":"DD_PALETTE_LOCAL","features":[313]},{"name":"DD_QUERYMOCOMPSTATUSDATA","features":[303,313]},{"name":"DD_RENDERMOCOMPDATA","features":[303,313]},{"name":"DD_RUNTIME_VERSION","features":[313]},{"name":"DD_SETCLIPLISTDATA","features":[303,313]},{"name":"DD_SETCOLORKEYDATA","features":[303,313]},{"name":"DD_SETENTRIESDATA","features":[313,314]},{"name":"DD_SETEXCLUSIVEMODEDATA","features":[313]},{"name":"DD_SETOVERLAYPOSITIONDATA","features":[303,313]},{"name":"DD_SETPALETTEDATA","features":[303,313]},{"name":"DD_STEREOMODE","features":[303,313]},{"name":"DD_SURFACECALLBACKS","features":[303,313]},{"name":"DD_SURFACE_GLOBAL","features":[303,313]},{"name":"DD_SURFACE_INT","features":[303,313]},{"name":"DD_SURFACE_LOCAL","features":[303,313]},{"name":"DD_SURFACE_MORE","features":[303,313]},{"name":"DD_SYNCSURFACEDATA","features":[303,313]},{"name":"DD_SYNCVIDEOPORTDATA","features":[303,313]},{"name":"DD_UNLOCKDATA","features":[303,313]},{"name":"DD_UPDATENONLOCALHEAPDATA","features":[313]},{"name":"DD_UPDATEOVERLAYDATA","features":[303,313]},{"name":"DD_UPDATEVPORTDATA","features":[303,313]},{"name":"DD_VERSION","features":[313]},{"name":"DD_VIDEOPORTCALLBACKS","features":[303,313]},{"name":"DD_VIDEOPORT_LOCAL","features":[303,313]},{"name":"DD_VPORTCOLORDATA","features":[303,313]},{"name":"DD_WAITFORVERTICALBLANKDATA","features":[313]},{"name":"DD_WAITFORVPORTSYNCDATA","features":[303,313]},{"name":"DELETED_LASTONE","features":[313]},{"name":"DELETED_NOTFOUND","features":[313]},{"name":"DELETED_OK","features":[313]},{"name":"DIRECTDRAW_VERSION","features":[313]},{"name":"DXAPI_HALVERSION","features":[313]},{"name":"DXAPI_INTERFACE","features":[303,313]},{"name":"DXERR_GENERIC","features":[313]},{"name":"DXERR_OUTOFCAPS","features":[313]},{"name":"DXERR_UNSUPPORTED","features":[313]},{"name":"DX_IRQDATA","features":[313]},{"name":"DX_OK","features":[313]},{"name":"DirectDrawCreate","features":[313]},{"name":"DirectDrawCreateClipper","features":[313]},{"name":"DirectDrawCreateEx","features":[313]},{"name":"DirectDrawEnumerateA","features":[303,313]},{"name":"DirectDrawEnumerateExA","features":[303,313,314]},{"name":"DirectDrawEnumerateExW","features":[303,313,314]},{"name":"DirectDrawEnumerateW","features":[303,313]},{"name":"GUID_ColorControlCallbacks","features":[313]},{"name":"GUID_D3DCallbacks","features":[313]},{"name":"GUID_D3DCallbacks2","features":[313]},{"name":"GUID_D3DCallbacks3","features":[313]},{"name":"GUID_D3DCaps","features":[313]},{"name":"GUID_D3DExtendedCaps","features":[313]},{"name":"GUID_D3DParseUnknownCommandCallback","features":[313]},{"name":"GUID_DDMoreCaps","features":[313]},{"name":"GUID_DDMoreSurfaceCaps","features":[313]},{"name":"GUID_DDStereoMode","features":[313]},{"name":"GUID_DxApi","features":[313]},{"name":"GUID_GetHeapAlignment","features":[313]},{"name":"GUID_KernelCallbacks","features":[313]},{"name":"GUID_KernelCaps","features":[313]},{"name":"GUID_Miscellaneous2Callbacks","features":[313]},{"name":"GUID_MiscellaneousCallbacks","features":[313]},{"name":"GUID_MotionCompCallbacks","features":[313]},{"name":"GUID_NTCallbacks","features":[313]},{"name":"GUID_NTPrivateDriverCaps","features":[313]},{"name":"GUID_NonLocalVidMemCaps","features":[313]},{"name":"GUID_OptSurfaceKmodeInfo","features":[313]},{"name":"GUID_OptSurfaceUmodeInfo","features":[313]},{"name":"GUID_UpdateNonLocalHeap","features":[313]},{"name":"GUID_UserModeDriverInfo","features":[313]},{"name":"GUID_UserModeDriverPassword","features":[313]},{"name":"GUID_VPE2Callbacks","features":[313]},{"name":"GUID_VideoPortCallbacks","features":[313]},{"name":"GUID_VideoPortCaps","features":[313]},{"name":"GUID_ZPixelFormats","features":[313]},{"name":"HEAPALIAS","features":[313]},{"name":"HEAPALIASINFO","features":[313]},{"name":"HEAPALIASINFO_MAPPEDDUMMY","features":[313]},{"name":"HEAPALIASINFO_MAPPEDREAL","features":[313]},{"name":"HEAPALIGNMENT","features":[313]},{"name":"IDDVideoPortContainer","features":[313]},{"name":"IDirectDraw","features":[313]},{"name":"IDirectDraw2","features":[313]},{"name":"IDirectDraw4","features":[313]},{"name":"IDirectDraw7","features":[313]},{"name":"IDirectDrawClipper","features":[313]},{"name":"IDirectDrawColorControl","features":[313]},{"name":"IDirectDrawGammaControl","features":[313]},{"name":"IDirectDrawKernel","features":[313]},{"name":"IDirectDrawPalette","features":[313]},{"name":"IDirectDrawSurface","features":[313]},{"name":"IDirectDrawSurface2","features":[313]},{"name":"IDirectDrawSurface3","features":[313]},{"name":"IDirectDrawSurface4","features":[313]},{"name":"IDirectDrawSurface7","features":[313]},{"name":"IDirectDrawSurfaceKernel","features":[313]},{"name":"IDirectDrawVideoPort","features":[313]},{"name":"IDirectDrawVideoPortNotify","features":[313]},{"name":"IRQINFO_HANDLED","features":[313]},{"name":"IRQINFO_NOTHANDLED","features":[313]},{"name":"IUNKNOWN_LIST","features":[313]},{"name":"LPCLIPPERCALLBACK","features":[303,313]},{"name":"LPDD32BITDRIVERINIT","features":[313]},{"name":"LPDDENUMCALLBACKA","features":[303,313]},{"name":"LPDDENUMCALLBACKEXA","features":[303,313,314]},{"name":"LPDDENUMCALLBACKEXW","features":[303,313,314]},{"name":"LPDDENUMCALLBACKW","features":[303,313]},{"name":"LPDDENUMMODESCALLBACK","features":[313]},{"name":"LPDDENUMMODESCALLBACK2","features":[313]},{"name":"LPDDENUMSURFACESCALLBACK","features":[313]},{"name":"LPDDENUMSURFACESCALLBACK2","features":[313]},{"name":"LPDDENUMSURFACESCALLBACK7","features":[313]},{"name":"LPDDENUMVIDEOCALLBACK","features":[313]},{"name":"LPDDFXROP","features":[313]},{"name":"LPDDGAMMACALIBRATORPROC","features":[313]},{"name":"LPDDHALCOLORCB_COLORCONTROL","features":[303,313,314]},{"name":"LPDDHALEXEBUFCB_CANCREATEEXEBUF","features":[303,313,314]},{"name":"LPDDHALEXEBUFCB_CREATEEXEBUF","features":[303,313,314]},{"name":"LPDDHALEXEBUFCB_DESTROYEXEBUF","features":[303,313,314]},{"name":"LPDDHALEXEBUFCB_LOCKEXEBUF","features":[303,313,314]},{"name":"LPDDHALEXEBUFCB_UNLOCKEXEBUF","features":[303,313,314]},{"name":"LPDDHALKERNELCB_SYNCSURFACE","features":[303,313,314]},{"name":"LPDDHALKERNELCB_SYNCVIDEOPORT","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_BEGINFRAME","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_CREATE","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_DESTROY","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_ENDFRAME","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_GETCOMPBUFFINFO","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_GETFORMATS","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_GETGUIDS","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_GETINTERNALINFO","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_QUERYSTATUS","features":[303,313,314]},{"name":"LPDDHALMOCOMPCB_RENDER","features":[303,313,314]},{"name":"LPDDHALPALCB_DESTROYPALETTE","features":[303,313,314]},{"name":"LPDDHALPALCB_SETENTRIES","features":[303,313,314]},{"name":"LPDDHALSURFCB_ADDATTACHEDSURFACE","features":[303,313,314]},{"name":"LPDDHALSURFCB_BLT","features":[303,313,314]},{"name":"LPDDHALSURFCB_DESTROYSURFACE","features":[303,313,314]},{"name":"LPDDHALSURFCB_FLIP","features":[303,313,314]},{"name":"LPDDHALSURFCB_GETBLTSTATUS","features":[303,313,314]},{"name":"LPDDHALSURFCB_GETFLIPSTATUS","features":[303,313,314]},{"name":"LPDDHALSURFCB_LOCK","features":[303,313,314]},{"name":"LPDDHALSURFCB_SETCLIPLIST","features":[303,313,314]},{"name":"LPDDHALSURFCB_SETCOLORKEY","features":[303,313,314]},{"name":"LPDDHALSURFCB_SETOVERLAYPOSITION","features":[303,313,314]},{"name":"LPDDHALSURFCB_SETPALETTE","features":[303,313,314]},{"name":"LPDDHALSURFCB_UNLOCK","features":[303,313,314]},{"name":"LPDDHALSURFCB_UPDATEOVERLAY","features":[303,313,314]},{"name":"LPDDHALVPORTCB_CANCREATEVIDEOPORT","features":[303,313,314]},{"name":"LPDDHALVPORTCB_COLORCONTROL","features":[303,313,314]},{"name":"LPDDHALVPORTCB_CREATEVIDEOPORT","features":[303,313,314]},{"name":"LPDDHALVPORTCB_DESTROYVPORT","features":[303,313,314]},{"name":"LPDDHALVPORTCB_FLIP","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETBANDWIDTH","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETFIELD","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETFLIPSTATUS","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETINPUTFORMATS","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETLINE","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETOUTPUTFORMATS","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETSIGNALSTATUS","features":[303,313,314]},{"name":"LPDDHALVPORTCB_GETVPORTCONNECT","features":[303,313,314]},{"name":"LPDDHALVPORTCB_UPDATE","features":[303,313,314]},{"name":"LPDDHALVPORTCB_WAITFORSYNC","features":[303,313,314]},{"name":"LPDDHAL_CANCREATESURFACE","features":[303,313,314]},{"name":"LPDDHAL_CREATEPALETTE","features":[303,313,314]},{"name":"LPDDHAL_CREATESURFACE","features":[303,313,314]},{"name":"LPDDHAL_CREATESURFACEEX","features":[303,313,314]},{"name":"LPDDHAL_DESTROYDDLOCAL","features":[303,313,314]},{"name":"LPDDHAL_DESTROYDRIVER","features":[303,313,314]},{"name":"LPDDHAL_FLIPTOGDISURFACE","features":[303,313,314]},{"name":"LPDDHAL_GETAVAILDRIVERMEMORY","features":[303,313,314]},{"name":"LPDDHAL_GETDRIVERINFO","features":[313]},{"name":"LPDDHAL_GETDRIVERSTATE","features":[313]},{"name":"LPDDHAL_GETHEAPALIGNMENT","features":[313]},{"name":"LPDDHAL_GETSCANLINE","features":[303,313,314]},{"name":"LPDDHAL_SETCOLORKEY","features":[303,313,314]},{"name":"LPDDHAL_SETEXCLUSIVEMODE","features":[303,313,314]},{"name":"LPDDHAL_SETINFO","features":[303,313,314]},{"name":"LPDDHAL_SETMODE","features":[303,313,314]},{"name":"LPDDHAL_UPDATENONLOCALHEAP","features":[303,313,314]},{"name":"LPDDHAL_VIDMEMALLOC","features":[303,313,314]},{"name":"LPDDHAL_VIDMEMFREE","features":[303,313,314]},{"name":"LPDDHAL_WAITFORVERTICALBLANK","features":[303,313,314]},{"name":"LPDDHEL_INIT","features":[303,313,314]},{"name":"LPDIRECTDRAWENUMERATEEXA","features":[303,313,314]},{"name":"LPDIRECTDRAWENUMERATEEXW","features":[303,313,314]},{"name":"MAX_AUTOFLIP_BUFFERS","features":[313]},{"name":"MAX_DDDEVICEID_STRING","features":[313]},{"name":"MAX_DRIVER_NAME","features":[313]},{"name":"MAX_PALETTE_SIZE","features":[313]},{"name":"MDL_64_BIT_VA","features":[313]},{"name":"MDL_ALLOCATED_FIXED_SIZE","features":[313]},{"name":"MDL_ALLOCATED_MUST_SUCCEED","features":[313]},{"name":"MDL_IO_PAGE_READ","features":[313]},{"name":"MDL_IO_SPACE","features":[313]},{"name":"MDL_LOCK_HELD","features":[313]},{"name":"MDL_MAPPED_TO_SYSTEM_VA","features":[313]},{"name":"MDL_MAPPING_CAN_FAIL","features":[313]},{"name":"MDL_NETWORK_HEADER","features":[313]},{"name":"MDL_PAGES_LOCKED","features":[313]},{"name":"MDL_PARENT_MAPPED_SYSTEM_VA","features":[313]},{"name":"MDL_PARTIAL","features":[313]},{"name":"MDL_PARTIAL_HAS_BEEN_MAPPED","features":[313]},{"name":"MDL_SCATTER_GATHER_VA","features":[313]},{"name":"MDL_SOURCE_IS_NONPAGED_POOL","features":[313]},{"name":"MDL_WRITE_OPERATION","features":[313]},{"name":"OBJECT_ISROOT","features":[313]},{"name":"PDD_ALPHABLT","features":[303,313]},{"name":"PDD_CANCREATESURFACE","features":[313]},{"name":"PDD_COLORCB_COLORCONTROL","features":[303,313]},{"name":"PDD_CREATEPALETTE","features":[303,313,314]},{"name":"PDD_CREATESURFACE","features":[303,313]},{"name":"PDD_CREATESURFACEEX","features":[303,313]},{"name":"PDD_DESTROYDDLOCAL","features":[313]},{"name":"PDD_DESTROYDRIVER","features":[313]},{"name":"PDD_DESTROYDRIVERDATA","features":[313]},{"name":"PDD_FLIPTOGDISURFACE","features":[313]},{"name":"PDD_FREEDRIVERMEMORY","features":[303,313]},{"name":"PDD_GETAVAILDRIVERMEMORY","features":[313]},{"name":"PDD_GETDRIVERINFO","features":[313]},{"name":"PDD_GETDRIVERSTATE","features":[313]},{"name":"PDD_GETSCANLINE","features":[313]},{"name":"PDD_GETVPORTAUTOFLIPSURFACEDATA","features":[313]},{"name":"PDD_KERNELCB_SYNCSURFACE","features":[303,313]},{"name":"PDD_KERNELCB_SYNCVIDEOPORT","features":[303,313]},{"name":"PDD_MAPMEMORY","features":[303,313]},{"name":"PDD_MOCOMPCB_BEGINFRAME","features":[303,313]},{"name":"PDD_MOCOMPCB_CREATE","features":[313]},{"name":"PDD_MOCOMPCB_DESTROY","features":[313]},{"name":"PDD_MOCOMPCB_ENDFRAME","features":[313]},{"name":"PDD_MOCOMPCB_GETCOMPBUFFINFO","features":[313]},{"name":"PDD_MOCOMPCB_GETFORMATS","features":[313]},{"name":"PDD_MOCOMPCB_GETGUIDS","features":[313]},{"name":"PDD_MOCOMPCB_GETINTERNALINFO","features":[313]},{"name":"PDD_MOCOMPCB_QUERYSTATUS","features":[303,313]},{"name":"PDD_MOCOMPCB_RENDER","features":[303,313]},{"name":"PDD_PALCB_DESTROYPALETTE","features":[313]},{"name":"PDD_PALCB_SETENTRIES","features":[313,314]},{"name":"PDD_SETCOLORKEY","features":[303,313]},{"name":"PDD_SETEXCLUSIVEMODE","features":[313]},{"name":"PDD_SETMODE","features":[313]},{"name":"PDD_SETMODEDATA","features":[313]},{"name":"PDD_SURFCB_ADDATTACHEDSURFACE","features":[303,313]},{"name":"PDD_SURFCB_BLT","features":[303,313]},{"name":"PDD_SURFCB_DESTROYSURFACE","features":[303,313]},{"name":"PDD_SURFCB_FLIP","features":[303,313]},{"name":"PDD_SURFCB_GETBLTSTATUS","features":[303,313]},{"name":"PDD_SURFCB_GETFLIPSTATUS","features":[303,313]},{"name":"PDD_SURFCB_LOCK","features":[303,313]},{"name":"PDD_SURFCB_SETCLIPLIST","features":[303,313]},{"name":"PDD_SURFCB_SETCOLORKEY","features":[303,313]},{"name":"PDD_SURFCB_SETOVERLAYPOSITION","features":[303,313]},{"name":"PDD_SURFCB_SETPALETTE","features":[303,313]},{"name":"PDD_SURFCB_UNLOCK","features":[303,313]},{"name":"PDD_SURFCB_UPDATEOVERLAY","features":[303,313]},{"name":"PDD_VPORTCB_CANCREATEVIDEOPORT","features":[313]},{"name":"PDD_VPORTCB_COLORCONTROL","features":[303,313]},{"name":"PDD_VPORTCB_CREATEVIDEOPORT","features":[303,313]},{"name":"PDD_VPORTCB_DESTROYVPORT","features":[303,313]},{"name":"PDD_VPORTCB_FLIP","features":[303,313]},{"name":"PDD_VPORTCB_GETAUTOFLIPSURF","features":[313]},{"name":"PDD_VPORTCB_GETBANDWIDTH","features":[303,313]},{"name":"PDD_VPORTCB_GETFIELD","features":[303,313]},{"name":"PDD_VPORTCB_GETFLIPSTATUS","features":[313]},{"name":"PDD_VPORTCB_GETINPUTFORMATS","features":[303,313]},{"name":"PDD_VPORTCB_GETLINE","features":[303,313]},{"name":"PDD_VPORTCB_GETOUTPUTFORMATS","features":[303,313]},{"name":"PDD_VPORTCB_GETSIGNALSTATUS","features":[303,313]},{"name":"PDD_VPORTCB_GETVPORTCONNECT","features":[313]},{"name":"PDD_VPORTCB_UPDATE","features":[303,313]},{"name":"PDD_VPORTCB_WAITFORSYNC","features":[303,313]},{"name":"PDD_WAITFORVERTICALBLANK","features":[313]},{"name":"PDX_BOBNEXTFIELD","features":[313]},{"name":"PDX_ENABLEIRQ","features":[313]},{"name":"PDX_FLIPOVERLAY","features":[313]},{"name":"PDX_FLIPVIDEOPORT","features":[313]},{"name":"PDX_GETCURRENTAUTOFLIP","features":[313]},{"name":"PDX_GETIRQINFO","features":[313]},{"name":"PDX_GETPOLARITY","features":[313]},{"name":"PDX_GETPREVIOUSAUTOFLIP","features":[313]},{"name":"PDX_GETTRANSFERSTATUS","features":[313]},{"name":"PDX_IRQCALLBACK","features":[313]},{"name":"PDX_LOCK","features":[313]},{"name":"PDX_SETSTATE","features":[303,313]},{"name":"PDX_SKIPNEXTFIELD","features":[313]},{"name":"PDX_TRANSFER","features":[313]},{"name":"PFINDEX_UNINITIALIZED","features":[313]},{"name":"PROCESS_LIST","features":[313]},{"name":"REGSTR_KEY_DDHW_DESCRIPTION","features":[313]},{"name":"REGSTR_KEY_DDHW_DRIVERNAME","features":[313]},{"name":"REGSTR_PATH_DDHW","features":[313]},{"name":"ROP_HAS_PATTERN","features":[313]},{"name":"ROP_HAS_SOURCE","features":[313]},{"name":"SURFACEALIGNMENT","features":[313]},{"name":"SURFACEALIGN_DISCARDABLE","features":[313]},{"name":"VIDEOMEMORY","features":[303,313]},{"name":"VIDEOMEMORYINFO","features":[313]},{"name":"VIDMEM","features":[303,313]},{"name":"VIDMEMINFO","features":[303,313]},{"name":"VIDMEM_HEAPDISABLED","features":[313]},{"name":"VIDMEM_ISHEAP","features":[313]},{"name":"VIDMEM_ISLINEAR","features":[313]},{"name":"VIDMEM_ISNONLOCAL","features":[313]},{"name":"VIDMEM_ISRECTANGULAR","features":[313]},{"name":"VIDMEM_ISWC","features":[313]},{"name":"VMEMHEAP","features":[303,313]},{"name":"VMEMHEAP_ALIGNMENT","features":[313]},{"name":"VMEMHEAP_LINEAR","features":[313]},{"name":"VMEMHEAP_RECTANGULAR","features":[313]},{"name":"VMEML","features":[303,313]},{"name":"VMEMR","features":[303,313]},{"name":"_FACDD","features":[313]}],"408":[{"name":"CLSID_AutoScrollBehavior","features":[404]},{"name":"CLSID_DeferContactService","features":[404]},{"name":"CLSID_DragDropConfigurationBehavior","features":[404]},{"name":"CLSID_HorizontalIndicatorContent","features":[404]},{"name":"CLSID_VerticalIndicatorContent","features":[404]},{"name":"CLSID_VirtualViewportContent","features":[404]},{"name":"DCompManipulationCompositor","features":[404]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION","features":[404]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION_FORWARD","features":[404]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION_REVERSE","features":[404]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION_STOP","features":[404]},{"name":"DIRECTMANIPULATION_BUILDING","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_INTERACTION","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_NONE","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_RAILS_X","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_RAILS_Y","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_SCALING","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_SCALING_INERTIA","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_TRANSLATION_INERTIA","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_TRANSLATION_X","features":[404]},{"name":"DIRECTMANIPULATION_CONFIGURATION_TRANSLATION_Y","features":[404]},{"name":"DIRECTMANIPULATION_COORDINATE_BOUNDARY","features":[404]},{"name":"DIRECTMANIPULATION_COORDINATE_MIRRORED","features":[404]},{"name":"DIRECTMANIPULATION_COORDINATE_ORIGIN","features":[404]},{"name":"DIRECTMANIPULATION_DISABLED","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CANCELLED","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_COMMITTED","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_HOLD_DRAG","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_HORIZONTAL","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_SELECT_DRAG","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_SELECT_ONLY","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_VERTICAL","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_DRAGGING","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_PRESELECT","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_READY","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_SELECTING","features":[404]},{"name":"DIRECTMANIPULATION_DRAG_DROP_STATUS","features":[404]},{"name":"DIRECTMANIPULATION_ENABLED","features":[404]},{"name":"DIRECTMANIPULATION_GESTURE_CONFIGURATION","features":[404]},{"name":"DIRECTMANIPULATION_GESTURE_CROSS_SLIDE_HORIZONTAL","features":[404]},{"name":"DIRECTMANIPULATION_GESTURE_CROSS_SLIDE_VERTICAL","features":[404]},{"name":"DIRECTMANIPULATION_GESTURE_DEFAULT","features":[404]},{"name":"DIRECTMANIPULATION_GESTURE_NONE","features":[404]},{"name":"DIRECTMANIPULATION_GESTURE_PINCH_ZOOM","features":[404]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE","features":[404]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE_ASYNCHRONOUS","features":[404]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE_AUTO_SYNCHRONOUS","features":[404]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE_SYNCHRONOUS","features":[404]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT","features":[404]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_CENTER","features":[404]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_LEFT","features":[404]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_NONE","features":[404]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_RIGHT","features":[404]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_UNLOCKCENTER","features":[404]},{"name":"DIRECTMANIPULATION_INERTIA","features":[404]},{"name":"DIRECTMANIPULATION_INPUT_MODE","features":[404]},{"name":"DIRECTMANIPULATION_INPUT_MODE_AUTOMATIC","features":[404]},{"name":"DIRECTMANIPULATION_INPUT_MODE_MANUAL","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_BEGIN","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_END","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_CROSS_SLIDE","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_HOLD","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_PINCH_ZOOM","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_TAP","features":[404]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_MANIPULATION","features":[404]},{"name":"DIRECTMANIPULATION_KEYBOARDFOCUS","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_ALL","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_CENTERX","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_CENTERY","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_NONE","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_TRANSLATEX","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_TRANSLATEY","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_TYPES","features":[404]},{"name":"DIRECTMANIPULATION_MOTION_ZOOM","features":[404]},{"name":"DIRECTMANIPULATION_MOUSEFOCUS","features":[404]},{"name":"DIRECTMANIPULATION_READY","features":[404]},{"name":"DIRECTMANIPULATION_RUNNING","features":[404]},{"name":"DIRECTMANIPULATION_SNAPPOINT_COORDINATE","features":[404]},{"name":"DIRECTMANIPULATION_SNAPPOINT_MANDATORY","features":[404]},{"name":"DIRECTMANIPULATION_SNAPPOINT_MANDATORY_SINGLE","features":[404]},{"name":"DIRECTMANIPULATION_SNAPPOINT_OPTIONAL","features":[404]},{"name":"DIRECTMANIPULATION_SNAPPOINT_OPTIONAL_SINGLE","features":[404]},{"name":"DIRECTMANIPULATION_SNAPPOINT_TYPE","features":[404]},{"name":"DIRECTMANIPULATION_STATUS","features":[404]},{"name":"DIRECTMANIPULATION_SUSPENDED","features":[404]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT","features":[404]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_BOTTOM","features":[404]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_CENTER","features":[404]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_NONE","features":[404]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_TOP","features":[404]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_UNLOCKCENTER","features":[404]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS","features":[404]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_AUTODISABLE","features":[404]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_DEFAULT","features":[404]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_DISABLEPIXELSNAPPING","features":[404]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_EXPLICITHITTEST","features":[404]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_INPUT","features":[404]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_MANUALUPDATE","features":[404]},{"name":"DirectManipulationManager","features":[404]},{"name":"DirectManipulationPrimaryContent","features":[404]},{"name":"DirectManipulationSharedManager","features":[404]},{"name":"DirectManipulationUpdateManager","features":[404]},{"name":"DirectManipulationViewport","features":[404]},{"name":"IDirectManipulationAutoScrollBehavior","features":[404]},{"name":"IDirectManipulationCompositor","features":[404]},{"name":"IDirectManipulationCompositor2","features":[404]},{"name":"IDirectManipulationContent","features":[404]},{"name":"IDirectManipulationDeferContactService","features":[404]},{"name":"IDirectManipulationDragDropBehavior","features":[404]},{"name":"IDirectManipulationDragDropEventHandler","features":[404]},{"name":"IDirectManipulationFrameInfoProvider","features":[404]},{"name":"IDirectManipulationInteractionEventHandler","features":[404]},{"name":"IDirectManipulationManager","features":[404]},{"name":"IDirectManipulationManager2","features":[404]},{"name":"IDirectManipulationManager3","features":[404]},{"name":"IDirectManipulationPrimaryContent","features":[404]},{"name":"IDirectManipulationUpdateHandler","features":[404]},{"name":"IDirectManipulationUpdateManager","features":[404]},{"name":"IDirectManipulationViewport","features":[404]},{"name":"IDirectManipulationViewport2","features":[404]},{"name":"IDirectManipulationViewportEventHandler","features":[404]}],"409":[{"name":"DWRITE_ALPHA_MAX","features":[405]},{"name":"DWRITE_AUTOMATIC_FONT_AXES","features":[405]},{"name":"DWRITE_AUTOMATIC_FONT_AXES_NONE","features":[405]},{"name":"DWRITE_AUTOMATIC_FONT_AXES_OPTICAL_SIZE","features":[405]},{"name":"DWRITE_BASELINE","features":[405]},{"name":"DWRITE_BASELINE_CENTRAL","features":[405]},{"name":"DWRITE_BASELINE_DEFAULT","features":[405]},{"name":"DWRITE_BASELINE_HANGING","features":[405]},{"name":"DWRITE_BASELINE_IDEOGRAPHIC_BOTTOM","features":[405]},{"name":"DWRITE_BASELINE_IDEOGRAPHIC_TOP","features":[405]},{"name":"DWRITE_BASELINE_MATH","features":[405]},{"name":"DWRITE_BASELINE_MAXIMUM","features":[405]},{"name":"DWRITE_BASELINE_MINIMUM","features":[405]},{"name":"DWRITE_BASELINE_ROMAN","features":[405]},{"name":"DWRITE_BITMAP_DATA_BGRA32","features":[405]},{"name":"DWRITE_BREAK_CONDITION","features":[405]},{"name":"DWRITE_BREAK_CONDITION_CAN_BREAK","features":[405]},{"name":"DWRITE_BREAK_CONDITION_MAY_NOT_BREAK","features":[405]},{"name":"DWRITE_BREAK_CONDITION_MUST_BREAK","features":[405]},{"name":"DWRITE_BREAK_CONDITION_NEUTRAL","features":[405]},{"name":"DWRITE_CARET_METRICS","features":[405]},{"name":"DWRITE_CLUSTER_METRICS","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_CLEAR","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_COLOR_BURN","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_COLOR_DODGE","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_DARKEN","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_DEST","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_ATOP","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_IN","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_OUT","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_OVER","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_DIFFERENCE","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_EXCLUSION","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_HARD_LIGHT","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_COLOR","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_HUE","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_LUMINOSITY","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_SATURATION","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_LIGHTEN","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_MODE","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_MULTIPLY","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_OVERLAY","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_PLUS","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_SCREEN","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_SOFT_LIGHT","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_SRC","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_ATOP","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_IN","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_OUT","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_OVER","features":[405]},{"name":"DWRITE_COLOR_COMPOSITE_XOR","features":[405]},{"name":"DWRITE_COLOR_F","features":[405]},{"name":"DWRITE_COLOR_GLYPH_RUN","features":[303,405]},{"name":"DWRITE_COLOR_GLYPH_RUN1","features":[303,405]},{"name":"DWRITE_CONTAINER_TYPE","features":[405]},{"name":"DWRITE_CONTAINER_TYPE_UNKNOWN","features":[405]},{"name":"DWRITE_CONTAINER_TYPE_WOFF","features":[405]},{"name":"DWRITE_CONTAINER_TYPE_WOFF2","features":[405]},{"name":"DWRITE_ERR_BASE","features":[405]},{"name":"DWRITE_E_DOWNLOADCANCELLED","features":[405]},{"name":"DWRITE_E_DOWNLOADFAILED","features":[405]},{"name":"DWRITE_E_REMOTEFONT","features":[405]},{"name":"DWRITE_E_TOOMANYDOWNLOADS","features":[405]},{"name":"DWRITE_FACTORY_TYPE","features":[405]},{"name":"DWRITE_FACTORY_TYPE_ISOLATED","features":[405]},{"name":"DWRITE_FACTORY_TYPE_SHARED","features":[405]},{"name":"DWRITE_FILE_FRAGMENT","features":[405]},{"name":"DWRITE_FLOW_DIRECTION","features":[405]},{"name":"DWRITE_FLOW_DIRECTION_BOTTOM_TO_TOP","features":[405]},{"name":"DWRITE_FLOW_DIRECTION_LEFT_TO_RIGHT","features":[405]},{"name":"DWRITE_FLOW_DIRECTION_RIGHT_TO_LEFT","features":[405]},{"name":"DWRITE_FLOW_DIRECTION_TOP_TO_BOTTOM","features":[405]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES","features":[405]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES_HIDDEN","features":[405]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES_NONE","features":[405]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES_VARIABLE","features":[405]},{"name":"DWRITE_FONT_AXIS_RANGE","features":[405]},{"name":"DWRITE_FONT_AXIS_TAG","features":[405]},{"name":"DWRITE_FONT_AXIS_TAG_ITALIC","features":[405]},{"name":"DWRITE_FONT_AXIS_TAG_OPTICAL_SIZE","features":[405]},{"name":"DWRITE_FONT_AXIS_TAG_SLANT","features":[405]},{"name":"DWRITE_FONT_AXIS_TAG_WEIGHT","features":[405]},{"name":"DWRITE_FONT_AXIS_TAG_WIDTH","features":[405]},{"name":"DWRITE_FONT_AXIS_VALUE","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_BITMAP","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_CFF","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_OPENTYPE_COLLECTION","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_RAW_CFF","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_TRUETYPE","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_TRUETYPE_COLLECTION","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_TYPE1","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_UNKNOWN","features":[405]},{"name":"DWRITE_FONT_FACE_TYPE_VECTOR","features":[405]},{"name":"DWRITE_FONT_FAMILY_MODEL","features":[405]},{"name":"DWRITE_FONT_FAMILY_MODEL_TYPOGRAPHIC","features":[405]},{"name":"DWRITE_FONT_FAMILY_MODEL_WEIGHT_STRETCH_STYLE","features":[405]},{"name":"DWRITE_FONT_FEATURE","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_ALTERNATE_ANNOTATION_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_ALTERNATE_HALF_WIDTH","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_ALTERNATIVE_FRACTIONS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_CAPITAL_SPACING","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_CASE_SENSITIVE_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_ALTERNATES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_LIGATURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_SWASH","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_CURSIVE_POSITIONING","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_DEFAULT","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_DISCRETIONARY_LIGATURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_EXPERT_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_FRACTIONS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_FULL_WIDTH","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_GLYPH_COMPOSITION_DECOMPOSITION","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_HALANT_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_HALF_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_HALF_WIDTH","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_HISTORICAL_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_HISTORICAL_LIGATURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_HOJO_KANJI_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_HORIZONTAL_KANA_ALTERNATES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS04_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS78_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS83_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS90_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_KERNING","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_LINING_FIGURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_LOCALIZED_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_MARK_POSITIONING","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_MARK_TO_MARK_POSITIONING","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_MATHEMATICAL_GREEK","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_NLC_KANJI_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_OLD_STYLE_FIGURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_ORDINALS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_PETITE_CAPITALS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_PETITE_CAPITALS_FROM_CAPITALS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_ALTERNATE_WIDTH","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_FIGURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_WIDTHS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_QUARTER_WIDTHS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_REQUIRED_LIGATURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_RUBY_NOTATION_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SCIENTIFIC_INFERIORS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SIMPLIFIED_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SLASHED_ZERO","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SMALL_CAPITALS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SMALL_CAPITALS_FROM_CAPITALS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STANDARD_LIGATURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_ALTERNATES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_1","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_10","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_11","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_12","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_13","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_14","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_15","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_16","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_17","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_18","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_19","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_2","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_20","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_3","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_4","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_5","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_6","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_7","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_8","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_9","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SUBSCRIPT","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SUPERSCRIPT","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_SWASH","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_TABULAR_FIGURES","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_THIRD_WIDTHS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_TITLING","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_TRADITIONAL_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_TRADITIONAL_NAME_FORMS","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_UNICASE","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_VERTICAL_ALTERNATES_AND_ROTATION","features":[405]},{"name":"DWRITE_FONT_FEATURE_TAG_VERTICAL_WRITING","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_BITMAP","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_CFF","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_OPENTYPE_COLLECTION","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_TRUETYPE","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_TRUETYPE_COLLECTION","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_TYPE1_PFB","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_TYPE1_PFM","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_UNKNOWN","features":[405]},{"name":"DWRITE_FONT_FILE_TYPE_VECTOR","features":[405]},{"name":"DWRITE_FONT_LINE_GAP_USAGE","features":[405]},{"name":"DWRITE_FONT_LINE_GAP_USAGE_DEFAULT","features":[405]},{"name":"DWRITE_FONT_LINE_GAP_USAGE_DISABLED","features":[405]},{"name":"DWRITE_FONT_LINE_GAP_USAGE_ENABLED","features":[405]},{"name":"DWRITE_FONT_METRICS","features":[405]},{"name":"DWRITE_FONT_METRICS1","features":[303,405]},{"name":"DWRITE_FONT_PROPERTY","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_DESIGN_SCRIPT_LANGUAGE_TAG","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_FACE_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_FAMILY_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_FULL_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_NONE","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_POSTSCRIPT_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_PREFERRED_FAMILY_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_SEMANTIC_TAG","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_STRETCH","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_STYLE","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_SUPPORTED_SCRIPT_LANGUAGE_TAG","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_TOTAL","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_TOTAL_RS3","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FACE_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FAMILY_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_WEIGHT","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FACE_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FAMILY_NAME","features":[405]},{"name":"DWRITE_FONT_PROPERTY_ID_WIN32_FAMILY_NAME","features":[405]},{"name":"DWRITE_FONT_SIMULATIONS","features":[405]},{"name":"DWRITE_FONT_SIMULATIONS_BOLD","features":[405]},{"name":"DWRITE_FONT_SIMULATIONS_NONE","features":[405]},{"name":"DWRITE_FONT_SIMULATIONS_OBLIQUE","features":[405]},{"name":"DWRITE_FONT_SOURCE_TYPE","features":[405]},{"name":"DWRITE_FONT_SOURCE_TYPE_APPX_PACKAGE","features":[405]},{"name":"DWRITE_FONT_SOURCE_TYPE_PER_MACHINE","features":[405]},{"name":"DWRITE_FONT_SOURCE_TYPE_PER_USER","features":[405]},{"name":"DWRITE_FONT_SOURCE_TYPE_REMOTE_FONT_PROVIDER","features":[405]},{"name":"DWRITE_FONT_SOURCE_TYPE_UNKNOWN","features":[405]},{"name":"DWRITE_FONT_STRETCH","features":[405]},{"name":"DWRITE_FONT_STRETCH_CONDENSED","features":[405]},{"name":"DWRITE_FONT_STRETCH_EXPANDED","features":[405]},{"name":"DWRITE_FONT_STRETCH_EXTRA_CONDENSED","features":[405]},{"name":"DWRITE_FONT_STRETCH_EXTRA_EXPANDED","features":[405]},{"name":"DWRITE_FONT_STRETCH_MEDIUM","features":[405]},{"name":"DWRITE_FONT_STRETCH_NORMAL","features":[405]},{"name":"DWRITE_FONT_STRETCH_SEMI_CONDENSED","features":[405]},{"name":"DWRITE_FONT_STRETCH_SEMI_EXPANDED","features":[405]},{"name":"DWRITE_FONT_STRETCH_ULTRA_CONDENSED","features":[405]},{"name":"DWRITE_FONT_STRETCH_ULTRA_EXPANDED","features":[405]},{"name":"DWRITE_FONT_STRETCH_UNDEFINED","features":[405]},{"name":"DWRITE_FONT_STYLE","features":[405]},{"name":"DWRITE_FONT_STYLE_ITALIC","features":[405]},{"name":"DWRITE_FONT_STYLE_NORMAL","features":[405]},{"name":"DWRITE_FONT_STYLE_OBLIQUE","features":[405]},{"name":"DWRITE_FONT_WEIGHT","features":[405]},{"name":"DWRITE_FONT_WEIGHT_BLACK","features":[405]},{"name":"DWRITE_FONT_WEIGHT_BOLD","features":[405]},{"name":"DWRITE_FONT_WEIGHT_DEMI_BOLD","features":[405]},{"name":"DWRITE_FONT_WEIGHT_EXTRA_BLACK","features":[405]},{"name":"DWRITE_FONT_WEIGHT_EXTRA_BOLD","features":[405]},{"name":"DWRITE_FONT_WEIGHT_EXTRA_LIGHT","features":[405]},{"name":"DWRITE_FONT_WEIGHT_HEAVY","features":[405]},{"name":"DWRITE_FONT_WEIGHT_LIGHT","features":[405]},{"name":"DWRITE_FONT_WEIGHT_MEDIUM","features":[405]},{"name":"DWRITE_FONT_WEIGHT_NORMAL","features":[405]},{"name":"DWRITE_FONT_WEIGHT_REGULAR","features":[405]},{"name":"DWRITE_FONT_WEIGHT_SEMI_BOLD","features":[405]},{"name":"DWRITE_FONT_WEIGHT_SEMI_LIGHT","features":[405]},{"name":"DWRITE_FONT_WEIGHT_THIN","features":[405]},{"name":"DWRITE_FONT_WEIGHT_ULTRA_BLACK","features":[405]},{"name":"DWRITE_FONT_WEIGHT_ULTRA_BOLD","features":[405]},{"name":"DWRITE_FONT_WEIGHT_ULTRA_LIGHT","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_DATA","features":[303,394,405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_CFF","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_COLR","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_JPEG","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_NONE","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_PNG","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_PREMULTIPLIED_B8G8R8A8","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_SVG","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_TIFF","features":[405]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_TRUETYPE","features":[405]},{"name":"DWRITE_GLYPH_METRICS","features":[405]},{"name":"DWRITE_GLYPH_OFFSET","features":[405]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE","features":[405]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_0_DEGREES","features":[405]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_180_DEGREES","features":[405]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_270_DEGREES","features":[405]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_90_DEGREES","features":[405]},{"name":"DWRITE_GLYPH_RUN","features":[303,405]},{"name":"DWRITE_GLYPH_RUN_DESCRIPTION","features":[405]},{"name":"DWRITE_GRID_FIT_MODE","features":[405]},{"name":"DWRITE_GRID_FIT_MODE_DEFAULT","features":[405]},{"name":"DWRITE_GRID_FIT_MODE_DISABLED","features":[405]},{"name":"DWRITE_GRID_FIT_MODE_ENABLED","features":[405]},{"name":"DWRITE_HIT_TEST_METRICS","features":[303,405]},{"name":"DWRITE_INFORMATIONAL_STRING_COPYRIGHT_NOTICE","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_DESCRIPTION","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_DESIGNER","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_DESIGNER_URL","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_DESIGN_SCRIPT_LANGUAGE_TAG","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_FONT_VENDOR_URL","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_FULL_NAME","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_ID","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_LICENSE_DESCRIPTION","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_LICENSE_INFO_URL","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_MANUFACTURER","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_NONE","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_POSTSCRIPT_CID_NAME","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_POSTSCRIPT_NAME","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_PREFERRED_FAMILY_NAMES","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_PREFERRED_SUBFAMILY_NAMES","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_SAMPLE_TEXT","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_SUPPORTED_SCRIPT_LANGUAGE_TAG","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_TRADEMARK","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_TYPOGRAPHIC_FAMILY_NAMES","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_TYPOGRAPHIC_SUBFAMILY_NAMES","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_VERSION_STRINGS","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_WEIGHT_STRETCH_STYLE_FAMILY_NAME","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_WIN32_FAMILY_NAMES","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_WIN32_SUBFAMILY_NAMES","features":[405]},{"name":"DWRITE_INFORMATIONAL_STRING_WWS_FAMILY_NAME","features":[405]},{"name":"DWRITE_INLINE_OBJECT_METRICS","features":[303,405]},{"name":"DWRITE_JUSTIFICATION_OPPORTUNITY","features":[405]},{"name":"DWRITE_LINE_BREAKPOINT","features":[405]},{"name":"DWRITE_LINE_METRICS","features":[303,405]},{"name":"DWRITE_LINE_METRICS1","features":[303,405]},{"name":"DWRITE_LINE_SPACING","features":[405]},{"name":"DWRITE_LINE_SPACING_METHOD","features":[405]},{"name":"DWRITE_LINE_SPACING_METHOD_DEFAULT","features":[405]},{"name":"DWRITE_LINE_SPACING_METHOD_PROPORTIONAL","features":[405]},{"name":"DWRITE_LINE_SPACING_METHOD_UNIFORM","features":[405]},{"name":"DWRITE_LOCALITY","features":[405]},{"name":"DWRITE_LOCALITY_LOCAL","features":[405]},{"name":"DWRITE_LOCALITY_PARTIAL","features":[405]},{"name":"DWRITE_LOCALITY_REMOTE","features":[405]},{"name":"DWRITE_MATRIX","features":[405]},{"name":"DWRITE_MEASURING_MODE","features":[405]},{"name":"DWRITE_MEASURING_MODE_GDI_CLASSIC","features":[405]},{"name":"DWRITE_MEASURING_MODE_GDI_NATURAL","features":[405]},{"name":"DWRITE_MEASURING_MODE_NATURAL","features":[405]},{"name":"DWRITE_NO_PALETTE_INDEX","features":[405]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD","features":[405]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_CONTEXTUAL","features":[405]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_FROM_CULTURE","features":[405]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_NATIONAL","features":[405]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_NONE","features":[405]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_TRADITIONAL","features":[405]},{"name":"DWRITE_OPTICAL_ALIGNMENT","features":[405]},{"name":"DWRITE_OPTICAL_ALIGNMENT_NONE","features":[405]},{"name":"DWRITE_OPTICAL_ALIGNMENT_NO_SIDE_BEARINGS","features":[405]},{"name":"DWRITE_OUTLINE_THRESHOLD","features":[405]},{"name":"DWRITE_OUTLINE_THRESHOLD_ALIASED","features":[405]},{"name":"DWRITE_OUTLINE_THRESHOLD_ANTIALIASED","features":[405]},{"name":"DWRITE_OVERHANG_METRICS","features":[405]},{"name":"DWRITE_PAINT_ATTRIBUTES","features":[405]},{"name":"DWRITE_PAINT_ATTRIBUTES_NONE","features":[405]},{"name":"DWRITE_PAINT_ATTRIBUTES_USES_PALETTE","features":[405]},{"name":"DWRITE_PAINT_ATTRIBUTES_USES_TEXT_COLOR","features":[405]},{"name":"DWRITE_PAINT_COLOR","features":[405]},{"name":"DWRITE_PAINT_ELEMENT","features":[394,405]},{"name":"DWRITE_PAINT_FEATURE_LEVEL","features":[405]},{"name":"DWRITE_PAINT_FEATURE_LEVEL_COLR_V0","features":[405]},{"name":"DWRITE_PAINT_FEATURE_LEVEL_COLR_V1","features":[405]},{"name":"DWRITE_PAINT_FEATURE_LEVEL_NONE","features":[405]},{"name":"DWRITE_PAINT_TYPE","features":[405]},{"name":"DWRITE_PAINT_TYPE_COLOR_GLYPH","features":[405]},{"name":"DWRITE_PAINT_TYPE_COMPOSITE","features":[405]},{"name":"DWRITE_PAINT_TYPE_GLYPH","features":[405]},{"name":"DWRITE_PAINT_TYPE_LAYERS","features":[405]},{"name":"DWRITE_PAINT_TYPE_LINEAR_GRADIENT","features":[405]},{"name":"DWRITE_PAINT_TYPE_NONE","features":[405]},{"name":"DWRITE_PAINT_TYPE_RADIAL_GRADIENT","features":[405]},{"name":"DWRITE_PAINT_TYPE_SOLID","features":[405]},{"name":"DWRITE_PAINT_TYPE_SOLID_GLYPH","features":[405]},{"name":"DWRITE_PAINT_TYPE_SWEEP_GRADIENT","features":[405]},{"name":"DWRITE_PAINT_TYPE_TRANSFORM","features":[405]},{"name":"DWRITE_PANOSE","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_ANY","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_DOUBLE_SERIF","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_HORZ","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_SINGLE_SERIF","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_VERT","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_WEDGE","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_DOUBLE_SERIF","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_HORIZONTAL","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_SINGLE_SERIF","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_VERTICAL","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_WEDGE","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_DOUBLE_SERIF","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_HORIZONTAL","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_HORZ","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_SINGLE_SERIF","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_VERT","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_VERTICAL","features":[405]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_WEDGE","features":[405]},{"name":"DWRITE_PANOSE_ASPECT","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_ANY","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_CONDENSED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_EXTENDED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_MONOSPACED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_NORMAL","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_ANY","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_CONDENSED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_EXPANDED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_NORMAL","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_VERY_CONDENSED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_VERY_EXPANDED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_SUPER_CONDENSED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_SUPER_EXTENDED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_VERY_CONDENSED","features":[405]},{"name":"DWRITE_PANOSE_ASPECT_VERY_EXTENDED","features":[405]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES","features":[405]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_ANY","features":[405]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_EXTENDED_COLLECTION","features":[405]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_LITERALS","features":[405]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_NO_LOWER_CASE","features":[405]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_SMALL_CAPS","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_ANY","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_BROKEN","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_HIGH","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_HORIZONTAL_HIGH","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_HORIZONTAL_LOW","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_HORIZONTAL_MEDIUM","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_LOW","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_MEDIUM","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_MEDIUM_HIGH","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_MEDIUM_LOW","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_NONE","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_VERY_HIGH","features":[405]},{"name":"DWRITE_PANOSE_CONTRAST_VERY_LOW","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_ANY","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_CARTOON","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_COLLAGE","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_DERIVATIVE","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_INITIALS","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_MONTAGE","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NONSTANDARD_ASPECT","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NONSTANDARD_ELEMENTS","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NONSTANDARD_TOPOLOGY","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_ORNAMENTED","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_PICTURE_STEMS","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_TEXT_AND_BACKGROUND","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_ANY","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_ART_DECO","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_BLACKLETTER","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_CURSIVE","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_DIVERSE_ARMS","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_DIVERSE_FORMS","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_HORSESHOE_E_AND_A","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_IMPLIED_TOPOLOGY","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_LOMBARDIC_FORMS","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_MULTIPLE_SEGMENT","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_SQUARE","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_STANDARD","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_SWASH_VARIANCE","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_UNEVEN_WEIGHTING","features":[405]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_UPPER_CASE_IN_LOWER_CASE","features":[405]},{"name":"DWRITE_PANOSE_FAMILY","features":[405]},{"name":"DWRITE_PANOSE_FAMILY_ANY","features":[405]},{"name":"DWRITE_PANOSE_FAMILY_DECORATIVE","features":[405]},{"name":"DWRITE_PANOSE_FAMILY_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_FAMILY_PICTORIAL","features":[405]},{"name":"DWRITE_PANOSE_FAMILY_SCRIPT","features":[405]},{"name":"DWRITE_PANOSE_FAMILY_SYMBOL","features":[405]},{"name":"DWRITE_PANOSE_FAMILY_TEXT_DISPLAY","features":[405]},{"name":"DWRITE_PANOSE_FILL","features":[405]},{"name":"DWRITE_PANOSE_FILL_ANY","features":[405]},{"name":"DWRITE_PANOSE_FILL_COMPLEX_FILL","features":[405]},{"name":"DWRITE_PANOSE_FILL_DRAWN_DISTRESSED","features":[405]},{"name":"DWRITE_PANOSE_FILL_NO_FILL","features":[405]},{"name":"DWRITE_PANOSE_FILL_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_FILL_PATTERNED_FILL","features":[405]},{"name":"DWRITE_PANOSE_FILL_SHAPED_FILL","features":[405]},{"name":"DWRITE_PANOSE_FILL_STANDARD_SOLID_FILL","features":[405]},{"name":"DWRITE_PANOSE_FINIALS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_ANY","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_NONE_CLOSED_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_NONE_NO_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_NONE_OPEN_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_ROUND_CLOSED_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_ROUND_NO_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_ROUND_OPEN_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_SHARP_CLOSED_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_SHARP_NO_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_SHARP_OPEN_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_TAPERED_CLOSED_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_TAPERED_NO_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_FINIALS_TAPERED_OPEN_LOOPS","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_ANY","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_BOXED","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_CONTACT","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_FLATTENED","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_OFF_CENTER","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_ROUNDED","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_SQUARE","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_WEIGHTED","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_BOXED","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_CONTACT","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_FLATTENED","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_OFF_CENTER","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_ROUNDED","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_SQUARE","features":[405]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_WEIGHTED","features":[405]},{"name":"DWRITE_PANOSE_LINING","features":[405]},{"name":"DWRITE_PANOSE_LINING_ANY","features":[405]},{"name":"DWRITE_PANOSE_LINING_BACKDROP","features":[405]},{"name":"DWRITE_PANOSE_LINING_ENGRAVED","features":[405]},{"name":"DWRITE_PANOSE_LINING_INLINE","features":[405]},{"name":"DWRITE_PANOSE_LINING_NONE","features":[405]},{"name":"DWRITE_PANOSE_LINING_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_LINING_OUTLINE","features":[405]},{"name":"DWRITE_PANOSE_LINING_RELIEF","features":[405]},{"name":"DWRITE_PANOSE_LINING_SHADOW","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_ANY","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_CONSTANT_POINTED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_CONSTANT_SERIFED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_CONSTANT_TRIMMED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_HIGH_POINTED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_HIGH_SERIFED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_HIGH_TRIMMED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_LOW_POINTED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_LOW_SERIFED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_LOW_TRIMMED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_STANDARD_POINTED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_STANDARD_SERIFED","features":[405]},{"name":"DWRITE_PANOSE_MIDLINE_STANDARD_TRIMMED","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_ANY","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_CONDENSED","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_EVEN_WIDTH","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_EXPANDED","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_MODERN","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_MONOSPACED","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_OLD_STYLE","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_VERY_CONDENSED","features":[405]},{"name":"DWRITE_PANOSE_PROPORTION_VERY_EXPANDED","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_ANY","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_EXTREME_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_MORE_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_NO_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_SOME_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_EXTREME_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_MORE_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_NO_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_SOME_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_EXTREME_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_MORE_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_NO_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_SOME_WRAPPING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ANY","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_BLACKLETTER_CONNECTED","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_BLACKLETTER_DISCONNECTED","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_BLACKLETTER_TRAILING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_CURSIVE_CONNECTED","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_CURSIVE_DISCONNECTED","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_CURSIVE_TRAILING","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ROMAN_CONNECTED","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ROMAN_DISCONNECTED","features":[405]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ROMAN_TRAILING","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_ANY","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_BONE","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_COVE","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_EXAGGERATED","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_FLARED","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_NORMAL_SANS","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OBTUSE_COVE","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OBTUSE_SANS","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OBTUSE_SQUARE_COVE","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OVAL","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_PERPENDICULAR_SANS","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_PERP_SANS","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_ROUNDED","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_SCRIPT","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_SQUARE","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_SQUARE_COVE","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_THIN","features":[405]},{"name":"DWRITE_PANOSE_SERIF_STYLE_TRIANGLE","features":[405]},{"name":"DWRITE_PANOSE_SPACING","features":[405]},{"name":"DWRITE_PANOSE_SPACING_ANY","features":[405]},{"name":"DWRITE_PANOSE_SPACING_MONOSPACED","features":[405]},{"name":"DWRITE_PANOSE_SPACING_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_SPACING_PROPORTIONAL_SPACED","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_ANY","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_DIAGONAL","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_HORIZONTAL","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_TRANSITIONAL","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_VERTICAL","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_INSTANT_HORIZONTAL","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_INSTANT_VERTICAL","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_NO_VARIATION","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_RAPID_HORIZONTAL","features":[405]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_RAPID_VERTICAL","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_ANY","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_EXCEPTIONALLY_WIDE","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NARROW","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NORMAL","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NO_WIDTH","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_SUPER_WIDE","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_VERY_NARROW","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_VERY_WIDE","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_WIDE","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_ANY","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_BOARDERS","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_EXPERT","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_ICONS","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_INDUSTRY_SPECIFIC","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_LOGOS","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_MONTAGES","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_MUSIC","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_PATTERNS","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_PICTURES","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_SCIENTIFIC","features":[405]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_SHAPES","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_ANY","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_BALL","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_BRUSH","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_ENGRAVED","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_FELT_PEN_BRUSH_TIP","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_FLAT_NIB","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_PRESSURE_POINT","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_ROUGH","features":[405]},{"name":"DWRITE_PANOSE_TOOL_KIND_WILD_BRUSH","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_ANY","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_BLACK","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_BOLD","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_BOOK","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_DEMI","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_EXTRA_BLACK","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_HEAVY","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_LIGHT","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_MEDIUM","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_NORD","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_THIN","features":[405]},{"name":"DWRITE_PANOSE_WEIGHT_VERY_LIGHT","features":[405]},{"name":"DWRITE_PANOSE_XASCENT","features":[405]},{"name":"DWRITE_PANOSE_XASCENT_ANY","features":[405]},{"name":"DWRITE_PANOSE_XASCENT_HIGH","features":[405]},{"name":"DWRITE_PANOSE_XASCENT_LOW","features":[405]},{"name":"DWRITE_PANOSE_XASCENT_MEDIUM","features":[405]},{"name":"DWRITE_PANOSE_XASCENT_NO_FIT","features":[405]},{"name":"DWRITE_PANOSE_XASCENT_VERY_HIGH","features":[405]},{"name":"DWRITE_PANOSE_XASCENT_VERY_LOW","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_ANY","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_LARGE","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_SMALL","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_STANDARD","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_STD","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_LARGE","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_SMALL","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_STANDARD","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_STD","features":[405]},{"name":"DWRITE_PANOSE_XHEIGHT_NO_FIT","features":[405]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT","features":[405]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT_CENTER","features":[405]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT_FAR","features":[405]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT_NEAR","features":[405]},{"name":"DWRITE_PIXEL_GEOMETRY","features":[405]},{"name":"DWRITE_PIXEL_GEOMETRY_BGR","features":[405]},{"name":"DWRITE_PIXEL_GEOMETRY_FLAT","features":[405]},{"name":"DWRITE_PIXEL_GEOMETRY_RGB","features":[405]},{"name":"DWRITE_READING_DIRECTION","features":[405]},{"name":"DWRITE_READING_DIRECTION_BOTTOM_TO_TOP","features":[405]},{"name":"DWRITE_READING_DIRECTION_LEFT_TO_RIGHT","features":[405]},{"name":"DWRITE_READING_DIRECTION_RIGHT_TO_LEFT","features":[405]},{"name":"DWRITE_READING_DIRECTION_TOP_TO_BOTTOM","features":[405]},{"name":"DWRITE_RENDERING_MODE","features":[405]},{"name":"DWRITE_RENDERING_MODE1","features":[405]},{"name":"DWRITE_RENDERING_MODE1_ALIASED","features":[405]},{"name":"DWRITE_RENDERING_MODE1_DEFAULT","features":[405]},{"name":"DWRITE_RENDERING_MODE1_GDI_CLASSIC","features":[405]},{"name":"DWRITE_RENDERING_MODE1_GDI_NATURAL","features":[405]},{"name":"DWRITE_RENDERING_MODE1_NATURAL","features":[405]},{"name":"DWRITE_RENDERING_MODE1_NATURAL_SYMMETRIC","features":[405]},{"name":"DWRITE_RENDERING_MODE1_NATURAL_SYMMETRIC_DOWNSAMPLED","features":[405]},{"name":"DWRITE_RENDERING_MODE1_OUTLINE","features":[405]},{"name":"DWRITE_RENDERING_MODE_ALIASED","features":[405]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_GDI_CLASSIC","features":[405]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_GDI_NATURAL","features":[405]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL","features":[405]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL_SYMMETRIC","features":[405]},{"name":"DWRITE_RENDERING_MODE_DEFAULT","features":[405]},{"name":"DWRITE_RENDERING_MODE_GDI_CLASSIC","features":[405]},{"name":"DWRITE_RENDERING_MODE_GDI_NATURAL","features":[405]},{"name":"DWRITE_RENDERING_MODE_NATURAL","features":[405]},{"name":"DWRITE_RENDERING_MODE_NATURAL_SYMMETRIC","features":[405]},{"name":"DWRITE_RENDERING_MODE_OUTLINE","features":[405]},{"name":"DWRITE_SCRIPT_ANALYSIS","features":[405]},{"name":"DWRITE_SCRIPT_PROPERTIES","features":[405]},{"name":"DWRITE_SCRIPT_SHAPES","features":[405]},{"name":"DWRITE_SCRIPT_SHAPES_DEFAULT","features":[405]},{"name":"DWRITE_SCRIPT_SHAPES_NO_VISUAL","features":[405]},{"name":"DWRITE_SHAPING_GLYPH_PROPERTIES","features":[405]},{"name":"DWRITE_SHAPING_TEXT_PROPERTIES","features":[405]},{"name":"DWRITE_STANDARD_FONT_AXIS_COUNT","features":[405]},{"name":"DWRITE_STRIKETHROUGH","features":[405]},{"name":"DWRITE_TEXTURE_ALIASED_1x1","features":[405]},{"name":"DWRITE_TEXTURE_CLEARTYPE_3x1","features":[405]},{"name":"DWRITE_TEXTURE_TYPE","features":[405]},{"name":"DWRITE_TEXT_ALIGNMENT","features":[405]},{"name":"DWRITE_TEXT_ALIGNMENT_CENTER","features":[405]},{"name":"DWRITE_TEXT_ALIGNMENT_JUSTIFIED","features":[405]},{"name":"DWRITE_TEXT_ALIGNMENT_LEADING","features":[405]},{"name":"DWRITE_TEXT_ALIGNMENT_TRAILING","features":[405]},{"name":"DWRITE_TEXT_ANTIALIAS_MODE","features":[405]},{"name":"DWRITE_TEXT_ANTIALIAS_MODE_CLEARTYPE","features":[405]},{"name":"DWRITE_TEXT_ANTIALIAS_MODE_GRAYSCALE","features":[405]},{"name":"DWRITE_TEXT_METRICS","features":[405]},{"name":"DWRITE_TEXT_METRICS1","features":[405]},{"name":"DWRITE_TEXT_RANGE","features":[405]},{"name":"DWRITE_TRIMMING","features":[405]},{"name":"DWRITE_TRIMMING_GRANULARITY","features":[405]},{"name":"DWRITE_TRIMMING_GRANULARITY_CHARACTER","features":[405]},{"name":"DWRITE_TRIMMING_GRANULARITY_NONE","features":[405]},{"name":"DWRITE_TRIMMING_GRANULARITY_WORD","features":[405]},{"name":"DWRITE_TYPOGRAPHIC_FEATURES","features":[405]},{"name":"DWRITE_UNDERLINE","features":[405]},{"name":"DWRITE_UNICODE_RANGE","features":[405]},{"name":"DWRITE_VERTICAL_GLYPH_ORIENTATION","features":[405]},{"name":"DWRITE_VERTICAL_GLYPH_ORIENTATION_DEFAULT","features":[405]},{"name":"DWRITE_VERTICAL_GLYPH_ORIENTATION_STACKED","features":[405]},{"name":"DWRITE_WORD_WRAPPING","features":[405]},{"name":"DWRITE_WORD_WRAPPING_CHARACTER","features":[405]},{"name":"DWRITE_WORD_WRAPPING_EMERGENCY_BREAK","features":[405]},{"name":"DWRITE_WORD_WRAPPING_NO_WRAP","features":[405]},{"name":"DWRITE_WORD_WRAPPING_WHOLE_WORD","features":[405]},{"name":"DWRITE_WORD_WRAPPING_WRAP","features":[405]},{"name":"DWriteCreateFactory","features":[405]},{"name":"FACILITY_DWRITE","features":[405]},{"name":"IDWriteAsyncResult","features":[405]},{"name":"IDWriteBitmapRenderTarget","features":[405]},{"name":"IDWriteBitmapRenderTarget1","features":[405]},{"name":"IDWriteBitmapRenderTarget2","features":[405]},{"name":"IDWriteBitmapRenderTarget3","features":[405]},{"name":"IDWriteColorGlyphRunEnumerator","features":[405]},{"name":"IDWriteColorGlyphRunEnumerator1","features":[405]},{"name":"IDWriteFactory","features":[405]},{"name":"IDWriteFactory1","features":[405]},{"name":"IDWriteFactory2","features":[405]},{"name":"IDWriteFactory3","features":[405]},{"name":"IDWriteFactory4","features":[405]},{"name":"IDWriteFactory5","features":[405]},{"name":"IDWriteFactory6","features":[405]},{"name":"IDWriteFactory7","features":[405]},{"name":"IDWriteFactory8","features":[405]},{"name":"IDWriteFont","features":[405]},{"name":"IDWriteFont1","features":[405]},{"name":"IDWriteFont2","features":[405]},{"name":"IDWriteFont3","features":[405]},{"name":"IDWriteFontCollection","features":[405]},{"name":"IDWriteFontCollection1","features":[405]},{"name":"IDWriteFontCollection2","features":[405]},{"name":"IDWriteFontCollection3","features":[405]},{"name":"IDWriteFontCollectionLoader","features":[405]},{"name":"IDWriteFontDownloadListener","features":[405]},{"name":"IDWriteFontDownloadQueue","features":[405]},{"name":"IDWriteFontFace","features":[405]},{"name":"IDWriteFontFace1","features":[405]},{"name":"IDWriteFontFace2","features":[405]},{"name":"IDWriteFontFace3","features":[405]},{"name":"IDWriteFontFace4","features":[405]},{"name":"IDWriteFontFace5","features":[405]},{"name":"IDWriteFontFace6","features":[405]},{"name":"IDWriteFontFace7","features":[405]},{"name":"IDWriteFontFaceReference","features":[405]},{"name":"IDWriteFontFaceReference1","features":[405]},{"name":"IDWriteFontFallback","features":[405]},{"name":"IDWriteFontFallback1","features":[405]},{"name":"IDWriteFontFallbackBuilder","features":[405]},{"name":"IDWriteFontFamily","features":[405]},{"name":"IDWriteFontFamily1","features":[405]},{"name":"IDWriteFontFamily2","features":[405]},{"name":"IDWriteFontFile","features":[405]},{"name":"IDWriteFontFileEnumerator","features":[405]},{"name":"IDWriteFontFileLoader","features":[405]},{"name":"IDWriteFontFileStream","features":[405]},{"name":"IDWriteFontList","features":[405]},{"name":"IDWriteFontList1","features":[405]},{"name":"IDWriteFontList2","features":[405]},{"name":"IDWriteFontResource","features":[405]},{"name":"IDWriteFontSet","features":[405]},{"name":"IDWriteFontSet1","features":[405]},{"name":"IDWriteFontSet2","features":[405]},{"name":"IDWriteFontSet3","features":[405]},{"name":"IDWriteFontSet4","features":[405]},{"name":"IDWriteFontSetBuilder","features":[405]},{"name":"IDWriteFontSetBuilder1","features":[405]},{"name":"IDWriteFontSetBuilder2","features":[405]},{"name":"IDWriteGdiInterop","features":[405]},{"name":"IDWriteGdiInterop1","features":[405]},{"name":"IDWriteGlyphRunAnalysis","features":[405]},{"name":"IDWriteInMemoryFontFileLoader","features":[405]},{"name":"IDWriteInlineObject","features":[405]},{"name":"IDWriteLocalFontFileLoader","features":[405]},{"name":"IDWriteLocalizedStrings","features":[405]},{"name":"IDWriteNumberSubstitution","features":[405]},{"name":"IDWritePaintReader","features":[405]},{"name":"IDWritePixelSnapping","features":[405]},{"name":"IDWriteRemoteFontFileLoader","features":[405]},{"name":"IDWriteRemoteFontFileStream","features":[405]},{"name":"IDWriteRenderingParams","features":[405]},{"name":"IDWriteRenderingParams1","features":[405]},{"name":"IDWriteRenderingParams2","features":[405]},{"name":"IDWriteRenderingParams3","features":[405]},{"name":"IDWriteStringList","features":[405]},{"name":"IDWriteTextAnalysisSink","features":[405]},{"name":"IDWriteTextAnalysisSink1","features":[405]},{"name":"IDWriteTextAnalysisSource","features":[405]},{"name":"IDWriteTextAnalysisSource1","features":[405]},{"name":"IDWriteTextAnalyzer","features":[405]},{"name":"IDWriteTextAnalyzer1","features":[405]},{"name":"IDWriteTextAnalyzer2","features":[405]},{"name":"IDWriteTextFormat","features":[405]},{"name":"IDWriteTextFormat1","features":[405]},{"name":"IDWriteTextFormat2","features":[405]},{"name":"IDWriteTextFormat3","features":[405]},{"name":"IDWriteTextLayout","features":[405]},{"name":"IDWriteTextLayout1","features":[405]},{"name":"IDWriteTextLayout2","features":[405]},{"name":"IDWriteTextLayout3","features":[405]},{"name":"IDWriteTextLayout4","features":[405]},{"name":"IDWriteTextRenderer","features":[405]},{"name":"IDWriteTextRenderer1","features":[405]},{"name":"IDWriteTypography","features":[405]}],"410":[{"name":"DWMFLIP3DWINDOWPOLICY","features":[406]},{"name":"DWMFLIP3D_DEFAULT","features":[406]},{"name":"DWMFLIP3D_EXCLUDEABOVE","features":[406]},{"name":"DWMFLIP3D_EXCLUDEBELOW","features":[406]},{"name":"DWMFLIP3D_LAST","features":[406]},{"name":"DWMNCRENDERINGPOLICY","features":[406]},{"name":"DWMNCRP_DISABLED","features":[406]},{"name":"DWMNCRP_ENABLED","features":[406]},{"name":"DWMNCRP_LAST","features":[406]},{"name":"DWMNCRP_USEWINDOWSTYLE","features":[406]},{"name":"DWMSBT_AUTO","features":[406]},{"name":"DWMSBT_MAINWINDOW","features":[406]},{"name":"DWMSBT_NONE","features":[406]},{"name":"DWMSBT_TABBEDWINDOW","features":[406]},{"name":"DWMSBT_TRANSIENTWINDOW","features":[406]},{"name":"DWMSC_ALL","features":[406]},{"name":"DWMSC_DOWN","features":[406]},{"name":"DWMSC_DRAG","features":[406]},{"name":"DWMSC_HOLD","features":[406]},{"name":"DWMSC_NONE","features":[406]},{"name":"DWMSC_PENBARREL","features":[406]},{"name":"DWMSC_UP","features":[406]},{"name":"DWMTRANSITION_OWNEDWINDOW_NULL","features":[406]},{"name":"DWMTRANSITION_OWNEDWINDOW_REPOSITION","features":[406]},{"name":"DWMTRANSITION_OWNEDWINDOW_TARGET","features":[406]},{"name":"DWMTWR_APP_COMPAT","features":[406]},{"name":"DWMTWR_GROUP_POLICY","features":[406]},{"name":"DWMTWR_IMPLEMENTED_BY_SYSTEM","features":[406]},{"name":"DWMTWR_NONE","features":[406]},{"name":"DWMTWR_TABBING_ENABLED","features":[406]},{"name":"DWMTWR_USER_POLICY","features":[406]},{"name":"DWMTWR_WINDOW_DWM_ATTRIBUTES","features":[406]},{"name":"DWMTWR_WINDOW_MARGINS","features":[406]},{"name":"DWMTWR_WINDOW_REGION","features":[406]},{"name":"DWMTWR_WINDOW_RELATIONSHIP","features":[406]},{"name":"DWMTWR_WINDOW_STYLES","features":[406]},{"name":"DWMWA_ALLOW_NCPAINT","features":[406]},{"name":"DWMWA_BORDER_COLOR","features":[406]},{"name":"DWMWA_CAPTION_BUTTON_BOUNDS","features":[406]},{"name":"DWMWA_CAPTION_COLOR","features":[406]},{"name":"DWMWA_CLOAK","features":[406]},{"name":"DWMWA_CLOAKED","features":[406]},{"name":"DWMWA_COLOR_DEFAULT","features":[406]},{"name":"DWMWA_COLOR_NONE","features":[406]},{"name":"DWMWA_DISALLOW_PEEK","features":[406]},{"name":"DWMWA_EXCLUDED_FROM_PEEK","features":[406]},{"name":"DWMWA_EXTENDED_FRAME_BOUNDS","features":[406]},{"name":"DWMWA_FLIP3D_POLICY","features":[406]},{"name":"DWMWA_FORCE_ICONIC_REPRESENTATION","features":[406]},{"name":"DWMWA_FREEZE_REPRESENTATION","features":[406]},{"name":"DWMWA_HAS_ICONIC_BITMAP","features":[406]},{"name":"DWMWA_LAST","features":[406]},{"name":"DWMWA_NCRENDERING_ENABLED","features":[406]},{"name":"DWMWA_NCRENDERING_POLICY","features":[406]},{"name":"DWMWA_NONCLIENT_RTL_LAYOUT","features":[406]},{"name":"DWMWA_PASSIVE_UPDATE_MODE","features":[406]},{"name":"DWMWA_SYSTEMBACKDROP_TYPE","features":[406]},{"name":"DWMWA_TEXT_COLOR","features":[406]},{"name":"DWMWA_TRANSITIONS_FORCEDISABLED","features":[406]},{"name":"DWMWA_USE_HOSTBACKDROPBRUSH","features":[406]},{"name":"DWMWA_USE_IMMERSIVE_DARK_MODE","features":[406]},{"name":"DWMWA_VISIBLE_FRAME_BORDER_THICKNESS","features":[406]},{"name":"DWMWA_WINDOW_CORNER_PREFERENCE","features":[406]},{"name":"DWMWCP_DEFAULT","features":[406]},{"name":"DWMWCP_DONOTROUND","features":[406]},{"name":"DWMWCP_ROUND","features":[406]},{"name":"DWMWCP_ROUNDSMALL","features":[406]},{"name":"DWMWINDOWATTRIBUTE","features":[406]},{"name":"DWM_BB_BLURREGION","features":[406]},{"name":"DWM_BB_ENABLE","features":[406]},{"name":"DWM_BB_TRANSITIONONMAXIMIZED","features":[406]},{"name":"DWM_BLURBEHIND","features":[303,406,314]},{"name":"DWM_CLOAKED_APP","features":[406]},{"name":"DWM_CLOAKED_INHERITED","features":[406]},{"name":"DWM_CLOAKED_SHELL","features":[406]},{"name":"DWM_EC_DISABLECOMPOSITION","features":[406]},{"name":"DWM_EC_ENABLECOMPOSITION","features":[406]},{"name":"DWM_FRAME_DURATION_DEFAULT","features":[406]},{"name":"DWM_PRESENT_PARAMETERS","features":[303,406]},{"name":"DWM_SHOWCONTACT","features":[406]},{"name":"DWM_SIT_DISPLAYFRAME","features":[406]},{"name":"DWM_SOURCE_FRAME_SAMPLING","features":[406]},{"name":"DWM_SOURCE_FRAME_SAMPLING_COVERAGE","features":[406]},{"name":"DWM_SOURCE_FRAME_SAMPLING_LAST","features":[406]},{"name":"DWM_SOURCE_FRAME_SAMPLING_POINT","features":[406]},{"name":"DWM_SYSTEMBACKDROP_TYPE","features":[406]},{"name":"DWM_TAB_WINDOW_REQUIREMENTS","features":[406]},{"name":"DWM_THUMBNAIL_PROPERTIES","features":[303,406]},{"name":"DWM_TIMING_INFO","features":[406]},{"name":"DWM_TNP_OPACITY","features":[406]},{"name":"DWM_TNP_RECTDESTINATION","features":[406]},{"name":"DWM_TNP_RECTSOURCE","features":[406]},{"name":"DWM_TNP_SOURCECLIENTAREAONLY","features":[406]},{"name":"DWM_TNP_VISIBLE","features":[406]},{"name":"DWM_WINDOW_CORNER_PREFERENCE","features":[406]},{"name":"DwmAttachMilContent","features":[303,406]},{"name":"DwmDefWindowProc","features":[303,406]},{"name":"DwmDetachMilContent","features":[303,406]},{"name":"DwmEnableBlurBehindWindow","features":[303,406,314]},{"name":"DwmEnableComposition","features":[406]},{"name":"DwmEnableMMCSS","features":[303,406]},{"name":"DwmExtendFrameIntoClientArea","features":[303,406,353]},{"name":"DwmFlush","features":[406]},{"name":"DwmGetColorizationColor","features":[303,406]},{"name":"DwmGetCompositionTimingInfo","features":[303,406]},{"name":"DwmGetGraphicsStreamClient","features":[406]},{"name":"DwmGetGraphicsStreamTransformHint","features":[406]},{"name":"DwmGetTransportAttributes","features":[303,406]},{"name":"DwmGetUnmetTabRequirements","features":[303,406]},{"name":"DwmGetWindowAttribute","features":[303,406]},{"name":"DwmInvalidateIconicBitmaps","features":[303,406]},{"name":"DwmIsCompositionEnabled","features":[303,406]},{"name":"DwmModifyPreviousDxFrameDuration","features":[303,406]},{"name":"DwmQueryThumbnailSourceSize","features":[303,406]},{"name":"DwmRegisterThumbnail","features":[303,406]},{"name":"DwmRenderGesture","features":[303,406]},{"name":"DwmSetDxFrameDuration","features":[303,406]},{"name":"DwmSetIconicLivePreviewBitmap","features":[303,406,314]},{"name":"DwmSetIconicThumbnail","features":[303,406,314]},{"name":"DwmSetPresentParameters","features":[303,406]},{"name":"DwmSetWindowAttribute","features":[303,406]},{"name":"DwmShowContact","features":[406]},{"name":"DwmTetherContact","features":[303,406]},{"name":"DwmTransitionOwnedWindow","features":[303,406]},{"name":"DwmUnregisterThumbnail","features":[406]},{"name":"DwmUpdateThumbnailProperties","features":[303,406]},{"name":"GESTURE_TYPE","features":[406]},{"name":"GT_PEN_DOUBLETAP","features":[406]},{"name":"GT_PEN_PRESSANDHOLD","features":[406]},{"name":"GT_PEN_PRESSANDHOLDABORT","features":[406]},{"name":"GT_PEN_RIGHTTAP","features":[406]},{"name":"GT_PEN_TAP","features":[406]},{"name":"GT_TOUCH_DOUBLETAP","features":[406]},{"name":"GT_TOUCH_PRESSANDHOLD","features":[406]},{"name":"GT_TOUCH_PRESSANDHOLDABORT","features":[406]},{"name":"GT_TOUCH_PRESSANDTAP","features":[406]},{"name":"GT_TOUCH_RIGHTTAP","features":[406]},{"name":"GT_TOUCH_TAP","features":[406]},{"name":"MilMatrix3x2D","features":[406]},{"name":"UNSIGNED_RATIO","features":[406]},{"name":"c_DwmMaxAdapters","features":[406]},{"name":"c_DwmMaxMonitors","features":[406]},{"name":"c_DwmMaxQueuedBuffers","features":[406]}],"411":[{"name":"CreateDXGIFactory","features":[395]},{"name":"CreateDXGIFactory1","features":[395]},{"name":"CreateDXGIFactory2","features":[395]},{"name":"DXGIDeclareAdapterRemovalSupport","features":[395]},{"name":"DXGIDisableVBlankVirtualization","features":[395]},{"name":"DXGIGetDebugInterface1","features":[395]},{"name":"DXGI_ADAPTER_DESC","features":[303,395]},{"name":"DXGI_ADAPTER_DESC1","features":[303,395]},{"name":"DXGI_ADAPTER_DESC2","features":[303,395]},{"name":"DXGI_ADAPTER_DESC3","features":[303,395]},{"name":"DXGI_ADAPTER_FLAG","features":[395]},{"name":"DXGI_ADAPTER_FLAG3","features":[395]},{"name":"DXGI_ADAPTER_FLAG3_ACG_COMPATIBLE","features":[395]},{"name":"DXGI_ADAPTER_FLAG3_KEYED_MUTEX_CONFORMANCE","features":[395]},{"name":"DXGI_ADAPTER_FLAG3_NONE","features":[395]},{"name":"DXGI_ADAPTER_FLAG3_REMOTE","features":[395]},{"name":"DXGI_ADAPTER_FLAG3_SOFTWARE","features":[395]},{"name":"DXGI_ADAPTER_FLAG3_SUPPORT_MONITORED_FENCES","features":[395]},{"name":"DXGI_ADAPTER_FLAG3_SUPPORT_NON_MONITORED_FENCES","features":[395]},{"name":"DXGI_ADAPTER_FLAG_NONE","features":[395]},{"name":"DXGI_ADAPTER_FLAG_REMOTE","features":[395]},{"name":"DXGI_ADAPTER_FLAG_SOFTWARE","features":[395]},{"name":"DXGI_COMPUTE_PREEMPTION_DISPATCH_BOUNDARY","features":[395]},{"name":"DXGI_COMPUTE_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[395]},{"name":"DXGI_COMPUTE_PREEMPTION_GRANULARITY","features":[395]},{"name":"DXGI_COMPUTE_PREEMPTION_INSTRUCTION_BOUNDARY","features":[395]},{"name":"DXGI_COMPUTE_PREEMPTION_THREAD_BOUNDARY","features":[395]},{"name":"DXGI_COMPUTE_PREEMPTION_THREAD_GROUP_BOUNDARY","features":[395]},{"name":"DXGI_CREATE_FACTORY_DEBUG","features":[395]},{"name":"DXGI_DEBUG_ALL","features":[395]},{"name":"DXGI_DEBUG_APP","features":[395]},{"name":"DXGI_DEBUG_BINARY_VERSION","features":[395]},{"name":"DXGI_DEBUG_DX","features":[395]},{"name":"DXGI_DEBUG_DXGI","features":[395]},{"name":"DXGI_DEBUG_RLO_ALL","features":[395]},{"name":"DXGI_DEBUG_RLO_DETAIL","features":[395]},{"name":"DXGI_DEBUG_RLO_FLAGS","features":[395]},{"name":"DXGI_DEBUG_RLO_IGNORE_INTERNAL","features":[395]},{"name":"DXGI_DEBUG_RLO_SUMMARY","features":[395]},{"name":"DXGI_DECODE_SWAP_CHAIN_DESC","features":[395]},{"name":"DXGI_DISPLAY_COLOR_SPACE","features":[395]},{"name":"DXGI_ENUM_MODES_DISABLED_STEREO","features":[395]},{"name":"DXGI_ENUM_MODES_INTERLACED","features":[395]},{"name":"DXGI_ENUM_MODES_SCALING","features":[395]},{"name":"DXGI_ENUM_MODES_STEREO","features":[395]},{"name":"DXGI_ERROR_ACCESS_DENIED","features":[395]},{"name":"DXGI_ERROR_ACCESS_LOST","features":[395]},{"name":"DXGI_ERROR_ALREADY_EXISTS","features":[395]},{"name":"DXGI_ERROR_CACHE_CORRUPT","features":[395]},{"name":"DXGI_ERROR_CACHE_FULL","features":[395]},{"name":"DXGI_ERROR_CACHE_HASH_COLLISION","features":[395]},{"name":"DXGI_ERROR_CANNOT_PROTECT_CONTENT","features":[395]},{"name":"DXGI_ERROR_DEVICE_HUNG","features":[395]},{"name":"DXGI_ERROR_DEVICE_REMOVED","features":[395]},{"name":"DXGI_ERROR_DEVICE_RESET","features":[395]},{"name":"DXGI_ERROR_DRIVER_INTERNAL_ERROR","features":[395]},{"name":"DXGI_ERROR_DYNAMIC_CODE_POLICY_VIOLATION","features":[395]},{"name":"DXGI_ERROR_FRAME_STATISTICS_DISJOINT","features":[395]},{"name":"DXGI_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[395]},{"name":"DXGI_ERROR_HW_PROTECTION_OUTOFMEMORY","features":[395]},{"name":"DXGI_ERROR_INVALID_CALL","features":[395]},{"name":"DXGI_ERROR_MODE_CHANGE_IN_PROGRESS","features":[395]},{"name":"DXGI_ERROR_MORE_DATA","features":[395]},{"name":"DXGI_ERROR_MPO_UNPINNED","features":[395]},{"name":"DXGI_ERROR_NAME_ALREADY_EXISTS","features":[395]},{"name":"DXGI_ERROR_NONEXCLUSIVE","features":[395]},{"name":"DXGI_ERROR_NON_COMPOSITED_UI","features":[395]},{"name":"DXGI_ERROR_NOT_CURRENT","features":[395]},{"name":"DXGI_ERROR_NOT_CURRENTLY_AVAILABLE","features":[395]},{"name":"DXGI_ERROR_NOT_FOUND","features":[395]},{"name":"DXGI_ERROR_REMOTE_CLIENT_DISCONNECTED","features":[395]},{"name":"DXGI_ERROR_REMOTE_OUTOFMEMORY","features":[395]},{"name":"DXGI_ERROR_RESTRICT_TO_OUTPUT_STALE","features":[395]},{"name":"DXGI_ERROR_SDK_COMPONENT_MISSING","features":[395]},{"name":"DXGI_ERROR_SESSION_DISCONNECTED","features":[395]},{"name":"DXGI_ERROR_UNSUPPORTED","features":[395]},{"name":"DXGI_ERROR_WAIT_TIMEOUT","features":[395]},{"name":"DXGI_ERROR_WAS_STILL_DRAWING","features":[395]},{"name":"DXGI_FEATURE","features":[395]},{"name":"DXGI_FEATURE_PRESENT_ALLOW_TEARING","features":[395]},{"name":"DXGI_FRAME_PRESENTATION_MODE","features":[395]},{"name":"DXGI_FRAME_PRESENTATION_MODE_COMPOSED","features":[395]},{"name":"DXGI_FRAME_PRESENTATION_MODE_COMPOSITION_FAILURE","features":[395]},{"name":"DXGI_FRAME_PRESENTATION_MODE_NONE","features":[395]},{"name":"DXGI_FRAME_PRESENTATION_MODE_OVERLAY","features":[395]},{"name":"DXGI_FRAME_STATISTICS","features":[395]},{"name":"DXGI_FRAME_STATISTICS_MEDIA","features":[395]},{"name":"DXGI_GPU_PREFERENCE","features":[395]},{"name":"DXGI_GPU_PREFERENCE_HIGH_PERFORMANCE","features":[395]},{"name":"DXGI_GPU_PREFERENCE_MINIMUM_POWER","features":[395]},{"name":"DXGI_GPU_PREFERENCE_UNSPECIFIED","features":[395]},{"name":"DXGI_GRAPHICS_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[395]},{"name":"DXGI_GRAPHICS_PREEMPTION_GRANULARITY","features":[395]},{"name":"DXGI_GRAPHICS_PREEMPTION_INSTRUCTION_BOUNDARY","features":[395]},{"name":"DXGI_GRAPHICS_PREEMPTION_PIXEL_BOUNDARY","features":[395]},{"name":"DXGI_GRAPHICS_PREEMPTION_PRIMITIVE_BOUNDARY","features":[395]},{"name":"DXGI_GRAPHICS_PREEMPTION_TRIANGLE_BOUNDARY","features":[395]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAGS","features":[395]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAG_CURSOR_STRETCHED","features":[395]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAG_FULLSCREEN","features":[395]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAG_WINDOWED","features":[395]},{"name":"DXGI_HDR_METADATA_HDR10","features":[395]},{"name":"DXGI_HDR_METADATA_HDR10PLUS","features":[395]},{"name":"DXGI_HDR_METADATA_TYPE","features":[395]},{"name":"DXGI_HDR_METADATA_TYPE_HDR10","features":[395]},{"name":"DXGI_HDR_METADATA_TYPE_HDR10PLUS","features":[395]},{"name":"DXGI_HDR_METADATA_TYPE_NONE","features":[395]},{"name":"DXGI_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[395]},{"name":"DXGI_INFO_QUEUE_FILTER","features":[395]},{"name":"DXGI_INFO_QUEUE_FILTER_DESC","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_CLEANUP","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_COMPILATION","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_EXECUTION","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_INITIALIZATION","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_MISCELLANEOUS","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_SHADER","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_STATE_CREATION","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_STATE_GETTING","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_STATE_SETTING","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_UNKNOWN","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_ID_STRING_FROM_APPLICATION","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_CORRUPTION","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_ERROR","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_INFO","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_MESSAGE","features":[395]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_WARNING","features":[395]},{"name":"DXGI_MAPPED_RECT","features":[395]},{"name":"DXGI_MAP_DISCARD","features":[395]},{"name":"DXGI_MAP_READ","features":[395]},{"name":"DXGI_MAP_WRITE","features":[395]},{"name":"DXGI_MATRIX_3X2_F","features":[395]},{"name":"DXGI_MAX_SWAP_CHAIN_BUFFERS","features":[395]},{"name":"DXGI_MEMORY_SEGMENT_GROUP","features":[395]},{"name":"DXGI_MEMORY_SEGMENT_GROUP_LOCAL","features":[395]},{"name":"DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL","features":[395]},{"name":"DXGI_MODE_DESC1","features":[303,391]},{"name":"DXGI_MSG_DXGIGetDebugInterface1_InvalidFlags","features":[395]},{"name":"DXGI_MSG_DXGIGetDebugInterface1_NULL_ppDebug","features":[395]},{"name":"DXGI_MSG_IDXGIAdapter_EnumOutputs2_InvalidEnumOutputs2Flag","features":[395]},{"name":"DXGI_MSG_IDXGIAdapter_EnumOutputs_UnavailableInSession0","features":[395]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_GetDestSize_InvalidPointer","features":[395]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_GetSourceRect_InvalidPointer","features":[395]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_GetTargetRect_InvalidPointer","features":[395]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetColorSpace_InvalidFlags","features":[395]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetDestSize_InvalidSize","features":[395]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetSourceRect_InvalidRect","features":[395]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetTargetRect_InvalidRect","features":[395]},{"name":"DXGI_MSG_IDXGIDevice_CreateSurface_InvalidParametersWithpSharedResource","features":[395]},{"name":"DXGI_MSG_IDXGIDisplayControl_IsStereoEnabled_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCompositionSurface_InvalidHandle","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_ForegroundUnsupportedOnAdapter","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_InvalidAlphaMode","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_InvalidScaling","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_UnsupportedOnWindows7","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_pWindowIsInvalid","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_pWindowIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_RegisterOcclusionStatusEvent_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_RegisterOcclusionStatusWindow_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGIFactory2_UnregisterStatus_CookieNotFound","features":[395]},{"name":"DXGI_MSG_IDXGIFactory7_UnregisterAdaptersChangedEvent_CookieNotFound","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CheckFeatureSupport_InvalidFeature","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CheckFeatureSupport_InvalidSize","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSoftwareAdapter_ModuleIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSoftwareAdapter_ppAdapterInterfaceIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_InvalidAlphaMode","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_InvalidScaling","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_OnlyFlipSequentialSupported","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_UnsupportedOnAdapter","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_UnsupportedOnWindows7","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_WidthOrHeightIsZero","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForCoreWindow_InvalidSwapEffect","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForHwnd_InvalidScaling","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainOrRegisterOcclusionStatus_BlitModelUsedWhileRegisteredForOcclusionStatusEvents","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_10BitFormatNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AllowTearingFlagIsFlipModelOnly","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AlphaIsFlipModelOnly","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AlphaIsWindowlessOnly","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AlphaUnrecognized","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_BufferCountOOBForFlipSequential","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_DisplayOnlyFullscreenUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_DisplayOnlyOnLegacy","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_DisplayOnlyUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FSUnsupportedForModernApps","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FailedToGoFSButNonPreRotated","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FlipSequentialNotSupportedOnD3D10","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FlipSwapEffectRequired","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ForegroundIsCoreWindowOnly","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_HwProtectUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidDevice","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidFlags","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidFormatForFlipSequential","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidHwProtect","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidQueue","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_LegacyBltModelSwapEffect","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_MultiSamplingNotSupportedForFlipSequential","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_MultipleSwapchainRefToSurface_DeferredDtr","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_NonPreRotatedAndGDICompatibleFlags","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_NonPreRotatedFlagAndWindowed","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_NullDeviceInterface","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_RestrictOutputNotSupportedOnAdapter","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_RestrictToOutputAdapterMismatch","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ScalingNoneIsFlipModelOnly","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ScalingNoneRequiresWindows8OrNewer","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ScalingUnrecognized","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ShaderInputUnsupported_YUV","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_UnavailableInSession0","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_UnknownSwapEffect","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_UnsupportedBufferUsageFlags","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_WaitableSwapChainsAreFlipModelOnly","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_WaitableSwapChainsAreNotFullscreen","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_pDescIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_pDeviceHasMismatchedDXGIFactory","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_pRestrictToOutputFromOtherIDXGIFactory","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ppSwapChainIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_Creation_CalledFromDllMain","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_EnumAdapters_ppAdapterInterfaceIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_GetSharedResourceAdapterLuid_InvalidLUID","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_GetSharedResourceAdapterLuid_InvalidResource","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_GetSharedResourceAdapterLuid_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_GetWindowAssociation_UnavailableInSession0","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_GetWindowAssociation_phWndIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_InvalidFlags","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_ModernApp","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_NoOpBehavior","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_UnavailableInSession0","features":[395]},{"name":"DXGI_MSG_IDXGIFactory_Release_CalledFromDllMain","features":[395]},{"name":"DXGI_MSG_IDXGIObject_GetPrivateData_puiDataSizeIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIOutput1_DuplicateOutput_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_2DOnly","features":[395]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_MappedOrOfferedResource","features":[395]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_NeedCPUAccessWrite","features":[395]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_NoShared","features":[395]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_OnlyMipLevels1","features":[395]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_StagingOnly","features":[395]},{"name":"DXGI_MSG_IDXGIOutput3_CheckOverlaySupport_IDXGIDeviceNotSupportedBypConcernedDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput3_CheckOverlaySupport_NullPointers","features":[395]},{"name":"DXGI_MSG_IDXGIOutput4_CheckOverlayColorSpaceSupport_IDXGIDeviceNotSupportedBypConcernedDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput4_CheckOverlayColorSpaceSupport_NullPointers","features":[395]},{"name":"DXGI_MSG_IDXGIOutput6_CheckHardwareCompositionSupport_NullPointer","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_DuplicateOutput1_PerMonitorDpiRequired","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_DuplicateOutput_PerMonitorDpiShimApplied","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_IDXGIDeviceNotSupportedBypConcernedDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_InvalidDisplayModeFormatAndDeviceCombination","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_InvalidDisplayModeScaling","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_InvalidDisplayModeScanlineOrdering","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_ModeHasInvalidWidthOrHeight","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_ModeHasRefreshRateDenominatorZero","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_RemoteDeviceNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_RemoteOutputNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_UnknownFormatIsInvalidForConfiguration","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_pModeToMatchOrpClosestMatchIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetCammaControlCapabilities_NoOwnerDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplayModeList_RemoteDeviceNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplayModeList_RemoteOutputNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplayModeList_pNumModesIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_ArraySizeMismatch","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_InvalidTargetSurfaceFormat","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_MapOfDestinationFailed","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_NoOwnerDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_pDestinationIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetFrameStatistics_NoOwnerDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetFrameStatistics_pStatsIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetGammaControl_NoGammaControls","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_GetGammaControl_NoOwnerDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_IDXGIResourceNotSupportedBypPrimary","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_ModernApp","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_NoOwnerDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_pPrimaryIsInvalid","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_SetGammaControl_NoOwnerDevice","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_SetOrGetGammaControl_pArrayIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_FailedToAcquireFullscreenMutex","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_ModernApp","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_RemoteDeviceNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_RemoteOutputNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_Unsupported","features":[395]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_pDeviceIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGIResource1_CreateSharedHandle_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGIResource1_CreateSubresourceSurface_InvalidIndex","features":[395]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_GDICompatibleFlagNotSet","features":[395]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_ModernApp","features":[395]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_SurfaceNotTexture2D","features":[395]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_UnreleasedHDC","features":[395]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_pHdcIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISurface1_ReleaseDC_GetDCNotCalled","features":[395]},{"name":"DXGI_MSG_IDXGISurface1_ReleaseDC_InvalidRectangleDimensions","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_DiscardAndReadFlagSet","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_DiscardButNotWriteFlagSet","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_DiscardFlagSetButCPUAccessIsNotDynamic","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_FlagsSetToZero","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_InvalidSurface","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_NoCPUAccess","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_NoCPUAccess2","features":[395]},{"name":"DXGI_MSG_IDXGISurface_Map_ReadFlagSetButCPUAccessIsDynamic","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain1_GetRotation_FlipSequentialRequired","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain1_GetRotation_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain1_SetBackgroundColor_OutOfRange","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain1_SetRotation_FlipSequentialRequired","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain1_SetRotation_InvalidRotation","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain1_SetRotation_UnsupportedOS","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain3_CheckColorSpaceSupport_NullPointers","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain3_ResizeBuffers1_InvalidQueue","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain3_SetColorSpace1_InvalidColorSpace","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain3_SetHDRMetaData_InvalidPointer","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain3_SetHDRMetaData_InvalidSize","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain3_SetHDRMetaData_InvalidType","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain4_SetHDRMetaData_MetadataUnchanged","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_CreateSwapChain_InvalidHwProtectGdiFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_BufferHeightInferred","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_BufferWidthInferred","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_InvalidOutputWindow","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_NoScanoutFlagChanged","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrSetFullscreenState_FSUnsupportedForFlipDiscard","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrSetFullscreenState_StereoDisabled","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_InvalidOutputWindow","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_InvalidWindowStyle","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_MaxBufferCountExceeded","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_NoOutputWindow","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_TooFewBuffers","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Destruction_OtherMethodsCalled","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_NoAllocatedBuffers","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_iBufferMustBeZero","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_iBufferOOB","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_ppSurfaceIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetCompositionSurface_WrongType","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetContainingOutput_SwapchainAdapterDoesNotControlOutput","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetContainingOutput_ppOutputIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetCoreWindow_WrongType","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetDesc_pDescIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetFrameLatencyWaitableObject_OnlyWaitable","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetFrameStatistics_UnsupportedStatistics","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetFrameStatistics_pStatsIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetFullscreenDesc_NonHwnd","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetHwnd_WrongType","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetLastPresentCount_pLastPresentCountIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetMatrixTransform_MatrixPointerCannotBeNull","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetMatrixTransform_RequiresCompositionSwapChain","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetMatrixTransform_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetMaximumFrameLatency_OnlyWaitable","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetMaximumFrameLatency_pMaxLatencyIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetSourceSize_Decode","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetSourceSize_NullPointers","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_GetSourceSize_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_PresentBuffer_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_11On12_Released_Resource","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_AllowTearingRequiresCreationFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_AllowTearingRequiresPresentIntervalZero","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_BlitModelUsedWhileRegisteredForOcclusionStatusEvents","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_Decode","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_DirtyRectOutOfBackbufferBounds","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_DoNotSequenceFlagSetButPreviousBufferIsUndefined","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_EmptyDirtyRect","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_EmptyScrollRect","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_FlipModelChainMustResizeOrCreateOnFSTransition","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_FullscreenAllowTearingIsInvalid","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_FullscreenPartialPresentIsInvalid","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_GetDXGIAdapterFailed","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_InvalidNonPreRotatedFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_InvalidPresentTestOrDoNotSequenceFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_NoAllocatedBuffers","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_NonOptimalFSConfiguration","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_OtherFlagsCausingInvalidPresentTestFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentationBeforeStandardPresentation","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentationWithMSAABuffers","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentationWithSwapEffectDiscard","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentation_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentInWindowedModeWithDWMOffOrInvalidDisplayAffinity","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentInWindowedModeWithoutFSOrOverlay","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentInWindowedModeWithoutFlipSequential","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentWithRDPDriver","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedWindowlessPresentationRequiresDisplayOnly","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestartIsFullscreenOnly","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestrictOutputFlagWithStaleSwapChain","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestrictToOutputFlagSetButInvalidpRestrictToOutput","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestrictToOutputFlagdWithFullscreen","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ScrollInfoWithNoDirtyRectsSpecified","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ScrollRectOutOfBackbufferBounds","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ScrollRectOutOfBackbufferBoundsWithOffset","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_SyncIntervalOOB","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoAndPreferRight","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoOrPreferRightWithDoNotSequence","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoOrPreferRightWithoutStereo","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_UnreleasedHDC","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Present_UnsupportedFlags","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_Release_SwapChainIsFullscreen","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers1_D3D12Only","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers1_FlipModel","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers1_NodeMaskAndQueueRequired","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_Alignment_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_BufferCountOOB","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_BufferCountOOBForFlipSequential","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveAllowTearingFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveFlag_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveForegroundFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveWaitableFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_Decode","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_DisplayOnlyFullscreenUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_DisplayOnlyOnLegacy","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_DisplayOnlyUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_HwProtectUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidFormatForFlipSequential","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidHwProtect","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidHwProtectGdiFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidNonPreRotatedFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidSwapChainFlag","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_NonPreRotatedAndGDICompatibleFlags","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_UnreleasedReferences","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_WidthOrHeightIsZero","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_InvalidWithCompositionSwapChain","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_ModernApp","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_RefreshRateDivideByZero","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_pNewTargetParametersIsNULL","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_CoreWindow","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_DisplayOnlyUnsupported","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_FSTransitionWithCompositionSwapChain","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_FSUnsupportedForModernApps","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_FullscreenInvalidForChildWindows","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_InvalidTarget","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_OutputNotOwnedBySwapChainDevice","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_PerMonitorDpiShimApplied","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_RemoteNotSupported","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_Waitable","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_MatrixMustBeFinite","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_MatrixMustBeTranslateAndOrScale","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_MatrixPointerCannotBeNull","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_RequiresCompositionSwapChain","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetMaximumFrameLatency_MaxLatencyIsOutOfBounds","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetMaximumFrameLatency_OnlyWaitable","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_Decode","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_FlipModel","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_WidthHeight","features":[395]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_YUV","features":[395]},{"name":"DXGI_MSG_IDXGISwapchain_Present_FullscreenRotation","features":[395]},{"name":"DXGI_MSG_IDXGISwapchain_Present_ScrollUnsupported","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_DISCARD_BufferCount","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_FLIP_Modern_CoreWindow_Only","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_FLIP_SEQUENTIAL_BufferCount","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_FailedRegisterWithCompositor","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_MSAA_NotSupported","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_NotForegroundWindow","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_NotForegroundWindow_AtRendering","features":[395]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_ScalingAspectRatioStretch_Supported_ModernApp","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_GetBackgroundColor_FlipSequentialRequired","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_GetFrameStatistics_NotAvailable_ModernApp","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present1_RequiresOverlays","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidBlend","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidDestinationRect","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidFlag","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidIndexForOverlay","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidIndexForPrimary","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidInterval","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidLayerFlag","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidLayerIndex","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidMultiPlaneOverlayResource","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidResource","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidRotation","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidSourceRect","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidSubResourceIndex","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_MultipleLayerIndex","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_MultipleResource","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_NotSharedResource","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_ReplaceInterval0With1","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_ResizeBuffers_NotAvailable","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_ResizeTarget_NotAvailable","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_SetBackgroundColor_FlipSequentialRequired","features":[395]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_SetFullscreenState_NotAvailable","features":[395]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS","features":[395]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709","features":[395]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE","features":[395]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_xvYCC","features":[395]},{"name":"DXGI_MWA_NO_ALT_ENTER","features":[395]},{"name":"DXGI_MWA_NO_PRINT_SCREEN","features":[395]},{"name":"DXGI_MWA_NO_WINDOW_CHANGES","features":[395]},{"name":"DXGI_MWA_VALID","features":[395]},{"name":"DXGI_Message_Id","features":[395]},{"name":"DXGI_OFFER_RESOURCE_FLAGS","features":[395]},{"name":"DXGI_OFFER_RESOURCE_FLAG_ALLOW_DECOMMIT","features":[395]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY","features":[395]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY_HIGH","features":[395]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY_LOW","features":[395]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY_NORMAL","features":[395]},{"name":"DXGI_OUTDUPL_COMPOSITED_UI_CAPTURE_ONLY","features":[395]},{"name":"DXGI_OUTDUPL_DESC","features":[303,391]},{"name":"DXGI_OUTDUPL_FLAG","features":[395]},{"name":"DXGI_OUTDUPL_FRAME_INFO","features":[303,395]},{"name":"DXGI_OUTDUPL_MOVE_RECT","features":[303,395]},{"name":"DXGI_OUTDUPL_POINTER_POSITION","features":[303,395]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_INFO","features":[303,395]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE","features":[395]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE_COLOR","features":[395]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR","features":[395]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MONOCHROME","features":[395]},{"name":"DXGI_OUTPUT_DESC","features":[303,391,314]},{"name":"DXGI_OUTPUT_DESC1","features":[303,391,314]},{"name":"DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG","features":[395]},{"name":"DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG_PRESENT","features":[395]},{"name":"DXGI_OVERLAY_SUPPORT_FLAG","features":[395]},{"name":"DXGI_OVERLAY_SUPPORT_FLAG_DIRECT","features":[395]},{"name":"DXGI_OVERLAY_SUPPORT_FLAG_SCALING","features":[395]},{"name":"DXGI_PRESENT_ALLOW_TEARING","features":[395]},{"name":"DXGI_PRESENT_DO_NOT_SEQUENCE","features":[395]},{"name":"DXGI_PRESENT_DO_NOT_WAIT","features":[395]},{"name":"DXGI_PRESENT_PARAMETERS","features":[303,395]},{"name":"DXGI_PRESENT_RESTART","features":[395]},{"name":"DXGI_PRESENT_RESTRICT_TO_OUTPUT","features":[395]},{"name":"DXGI_PRESENT_STEREO_PREFER_RIGHT","features":[395]},{"name":"DXGI_PRESENT_STEREO_TEMPORARY_MONO","features":[395]},{"name":"DXGI_PRESENT_TEST","features":[395]},{"name":"DXGI_PRESENT_USE_DURATION","features":[395]},{"name":"DXGI_QUERY_VIDEO_MEMORY_INFO","features":[395]},{"name":"DXGI_RECLAIM_RESOURCE_RESULTS","features":[395]},{"name":"DXGI_RECLAIM_RESOURCE_RESULT_DISCARDED","features":[395]},{"name":"DXGI_RECLAIM_RESOURCE_RESULT_NOT_COMMITTED","features":[395]},{"name":"DXGI_RECLAIM_RESOURCE_RESULT_OK","features":[395]},{"name":"DXGI_RESIDENCY","features":[395]},{"name":"DXGI_RESIDENCY_EVICTED_TO_DISK","features":[395]},{"name":"DXGI_RESIDENCY_FULLY_RESIDENT","features":[395]},{"name":"DXGI_RESIDENCY_RESIDENT_IN_SHARED_MEMORY","features":[395]},{"name":"DXGI_RESOURCE_PRIORITY_HIGH","features":[395]},{"name":"DXGI_RESOURCE_PRIORITY_LOW","features":[395]},{"name":"DXGI_RESOURCE_PRIORITY_MAXIMUM","features":[395]},{"name":"DXGI_RESOURCE_PRIORITY_MINIMUM","features":[395]},{"name":"DXGI_RESOURCE_PRIORITY_NORMAL","features":[395]},{"name":"DXGI_RGBA","features":[395]},{"name":"DXGI_SCALING","features":[395]},{"name":"DXGI_SCALING_ASPECT_RATIO_STRETCH","features":[395]},{"name":"DXGI_SCALING_NONE","features":[395]},{"name":"DXGI_SCALING_STRETCH","features":[395]},{"name":"DXGI_SHARED_RESOURCE","features":[303,395]},{"name":"DXGI_SHARED_RESOURCE_READ","features":[395]},{"name":"DXGI_SHARED_RESOURCE_WRITE","features":[395]},{"name":"DXGI_SURFACE_DESC","features":[391]},{"name":"DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG","features":[395]},{"name":"DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_OVERLAY_PRESENT","features":[395]},{"name":"DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_PRESENT","features":[395]},{"name":"DXGI_SWAP_CHAIN_DESC","features":[303,391]},{"name":"DXGI_SWAP_CHAIN_DESC1","features":[303,391]},{"name":"DXGI_SWAP_CHAIN_FLAG","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_ALLOW_TEARING","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_DISPLAY_ONLY","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_FOREGROUND_LAYER","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_FRAME_LATENCY_WAITABLE_OBJECT","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_FULLSCREEN_VIDEO","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_GDI_COMPATIBLE","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_HW_PROTECTED","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_NONPREROTATED","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_RESTRICTED_CONTENT","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_RESTRICTED_TO_ALL_HOLOGRAPHIC_DISPLAYS","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_RESTRICT_SHARED_RESOURCE_DRIVER","features":[395]},{"name":"DXGI_SWAP_CHAIN_FLAG_YUV_VIDEO","features":[395]},{"name":"DXGI_SWAP_CHAIN_FULLSCREEN_DESC","features":[303,391]},{"name":"DXGI_SWAP_EFFECT","features":[395]},{"name":"DXGI_SWAP_EFFECT_DISCARD","features":[395]},{"name":"DXGI_SWAP_EFFECT_FLIP_DISCARD","features":[395]},{"name":"DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL","features":[395]},{"name":"DXGI_SWAP_EFFECT_SEQUENTIAL","features":[395]},{"name":"DXGI_USAGE","features":[395]},{"name":"DXGI_USAGE_BACK_BUFFER","features":[395]},{"name":"DXGI_USAGE_DISCARD_ON_PRESENT","features":[395]},{"name":"DXGI_USAGE_READ_ONLY","features":[395]},{"name":"DXGI_USAGE_RENDER_TARGET_OUTPUT","features":[395]},{"name":"DXGI_USAGE_SHADER_INPUT","features":[395]},{"name":"DXGI_USAGE_SHARED","features":[395]},{"name":"DXGI_USAGE_UNORDERED_ACCESS","features":[395]},{"name":"IDXGIAdapter","features":[395]},{"name":"IDXGIAdapter1","features":[395]},{"name":"IDXGIAdapter2","features":[395]},{"name":"IDXGIAdapter3","features":[395]},{"name":"IDXGIAdapter4","features":[395]},{"name":"IDXGIDebug","features":[395]},{"name":"IDXGIDebug1","features":[395]},{"name":"IDXGIDecodeSwapChain","features":[395]},{"name":"IDXGIDevice","features":[395]},{"name":"IDXGIDevice1","features":[395]},{"name":"IDXGIDevice2","features":[395]},{"name":"IDXGIDevice3","features":[395]},{"name":"IDXGIDevice4","features":[395]},{"name":"IDXGIDeviceSubObject","features":[395]},{"name":"IDXGIDisplayControl","features":[395]},{"name":"IDXGIFactory","features":[395]},{"name":"IDXGIFactory1","features":[395]},{"name":"IDXGIFactory2","features":[395]},{"name":"IDXGIFactory3","features":[395]},{"name":"IDXGIFactory4","features":[395]},{"name":"IDXGIFactory5","features":[395]},{"name":"IDXGIFactory6","features":[395]},{"name":"IDXGIFactory7","features":[395]},{"name":"IDXGIFactoryMedia","features":[395]},{"name":"IDXGIInfoQueue","features":[395]},{"name":"IDXGIKeyedMutex","features":[395]},{"name":"IDXGIObject","features":[395]},{"name":"IDXGIOutput","features":[395]},{"name":"IDXGIOutput1","features":[395]},{"name":"IDXGIOutput2","features":[395]},{"name":"IDXGIOutput3","features":[395]},{"name":"IDXGIOutput4","features":[395]},{"name":"IDXGIOutput5","features":[395]},{"name":"IDXGIOutput6","features":[395]},{"name":"IDXGIOutputDuplication","features":[395]},{"name":"IDXGIResource","features":[395]},{"name":"IDXGIResource1","features":[395]},{"name":"IDXGISurface","features":[395]},{"name":"IDXGISurface1","features":[395]},{"name":"IDXGISurface2","features":[395]},{"name":"IDXGISwapChain","features":[395]},{"name":"IDXGISwapChain1","features":[395]},{"name":"IDXGISwapChain2","features":[395]},{"name":"IDXGISwapChain3","features":[395]},{"name":"IDXGISwapChain4","features":[395]},{"name":"IDXGISwapChainMedia","features":[395]},{"name":"IDXGraphicsAnalysis","features":[395]}],"412":[{"name":"DXGI_ALPHA_MODE","features":[391]},{"name":"DXGI_ALPHA_MODE_IGNORE","features":[391]},{"name":"DXGI_ALPHA_MODE_PREMULTIPLIED","features":[391]},{"name":"DXGI_ALPHA_MODE_STRAIGHT","features":[391]},{"name":"DXGI_ALPHA_MODE_UNSPECIFIED","features":[391]},{"name":"DXGI_CENTER_MULTISAMPLE_QUALITY_PATTERN","features":[391]},{"name":"DXGI_COLOR_SPACE_CUSTOM","features":[391]},{"name":"DXGI_COLOR_SPACE_RESERVED","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G2084_NONE_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P709","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P709","features":[391]},{"name":"DXGI_COLOR_SPACE_TYPE","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P601","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P709","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_GHLG_TOPLEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G2084_LEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G2084_TOPLEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_TOPLEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P709","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_TOPLEFT_P2020","features":[391]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_GHLG_TOPLEFT_P2020","features":[391]},{"name":"DXGI_CPU_ACCESS_DYNAMIC","features":[391]},{"name":"DXGI_CPU_ACCESS_FIELD","features":[391]},{"name":"DXGI_CPU_ACCESS_NONE","features":[391]},{"name":"DXGI_CPU_ACCESS_READ_WRITE","features":[391]},{"name":"DXGI_CPU_ACCESS_SCRATCH","features":[391]},{"name":"DXGI_FORMAT","features":[391]},{"name":"DXGI_FORMAT_420_OPAQUE","features":[391]},{"name":"DXGI_FORMAT_A4B4G4R4_UNORM","features":[391]},{"name":"DXGI_FORMAT_A8P8","features":[391]},{"name":"DXGI_FORMAT_A8_UNORM","features":[391]},{"name":"DXGI_FORMAT_AI44","features":[391]},{"name":"DXGI_FORMAT_AYUV","features":[391]},{"name":"DXGI_FORMAT_B4G4R4A4_UNORM","features":[391]},{"name":"DXGI_FORMAT_B5G5R5A1_UNORM","features":[391]},{"name":"DXGI_FORMAT_B5G6R5_UNORM","features":[391]},{"name":"DXGI_FORMAT_B8G8R8A8_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_B8G8R8A8_UNORM","features":[391]},{"name":"DXGI_FORMAT_B8G8R8A8_UNORM_SRGB","features":[391]},{"name":"DXGI_FORMAT_B8G8R8X8_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_B8G8R8X8_UNORM","features":[391]},{"name":"DXGI_FORMAT_B8G8R8X8_UNORM_SRGB","features":[391]},{"name":"DXGI_FORMAT_BC1_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_BC1_UNORM","features":[391]},{"name":"DXGI_FORMAT_BC1_UNORM_SRGB","features":[391]},{"name":"DXGI_FORMAT_BC2_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_BC2_UNORM","features":[391]},{"name":"DXGI_FORMAT_BC2_UNORM_SRGB","features":[391]},{"name":"DXGI_FORMAT_BC3_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_BC3_UNORM","features":[391]},{"name":"DXGI_FORMAT_BC3_UNORM_SRGB","features":[391]},{"name":"DXGI_FORMAT_BC4_SNORM","features":[391]},{"name":"DXGI_FORMAT_BC4_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_BC4_UNORM","features":[391]},{"name":"DXGI_FORMAT_BC5_SNORM","features":[391]},{"name":"DXGI_FORMAT_BC5_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_BC5_UNORM","features":[391]},{"name":"DXGI_FORMAT_BC6H_SF16","features":[391]},{"name":"DXGI_FORMAT_BC6H_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_BC6H_UF16","features":[391]},{"name":"DXGI_FORMAT_BC7_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_BC7_UNORM","features":[391]},{"name":"DXGI_FORMAT_BC7_UNORM_SRGB","features":[391]},{"name":"DXGI_FORMAT_D16_UNORM","features":[391]},{"name":"DXGI_FORMAT_D24_UNORM_S8_UINT","features":[391]},{"name":"DXGI_FORMAT_D32_FLOAT","features":[391]},{"name":"DXGI_FORMAT_D32_FLOAT_S8X24_UINT","features":[391]},{"name":"DXGI_FORMAT_DEFINED","features":[391]},{"name":"DXGI_FORMAT_G8R8_G8B8_UNORM","features":[391]},{"name":"DXGI_FORMAT_IA44","features":[391]},{"name":"DXGI_FORMAT_NV11","features":[391]},{"name":"DXGI_FORMAT_NV12","features":[391]},{"name":"DXGI_FORMAT_P010","features":[391]},{"name":"DXGI_FORMAT_P016","features":[391]},{"name":"DXGI_FORMAT_P208","features":[391]},{"name":"DXGI_FORMAT_P8","features":[391]},{"name":"DXGI_FORMAT_R10G10B10A2_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R10G10B10A2_UINT","features":[391]},{"name":"DXGI_FORMAT_R10G10B10A2_UNORM","features":[391]},{"name":"DXGI_FORMAT_R10G10B10_XR_BIAS_A2_UNORM","features":[391]},{"name":"DXGI_FORMAT_R11G11B10_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R16G16B16A16_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R16G16B16A16_SINT","features":[391]},{"name":"DXGI_FORMAT_R16G16B16A16_SNORM","features":[391]},{"name":"DXGI_FORMAT_R16G16B16A16_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R16G16B16A16_UINT","features":[391]},{"name":"DXGI_FORMAT_R16G16B16A16_UNORM","features":[391]},{"name":"DXGI_FORMAT_R16G16_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R16G16_SINT","features":[391]},{"name":"DXGI_FORMAT_R16G16_SNORM","features":[391]},{"name":"DXGI_FORMAT_R16G16_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R16G16_UINT","features":[391]},{"name":"DXGI_FORMAT_R16G16_UNORM","features":[391]},{"name":"DXGI_FORMAT_R16_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R16_SINT","features":[391]},{"name":"DXGI_FORMAT_R16_SNORM","features":[391]},{"name":"DXGI_FORMAT_R16_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R16_UINT","features":[391]},{"name":"DXGI_FORMAT_R16_UNORM","features":[391]},{"name":"DXGI_FORMAT_R1_UNORM","features":[391]},{"name":"DXGI_FORMAT_R24G8_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R24_UNORM_X8_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R32G32B32A32_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R32G32B32A32_SINT","features":[391]},{"name":"DXGI_FORMAT_R32G32B32A32_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R32G32B32A32_UINT","features":[391]},{"name":"DXGI_FORMAT_R32G32B32_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R32G32B32_SINT","features":[391]},{"name":"DXGI_FORMAT_R32G32B32_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R32G32B32_UINT","features":[391]},{"name":"DXGI_FORMAT_R32G32_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R32G32_SINT","features":[391]},{"name":"DXGI_FORMAT_R32G32_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R32G32_UINT","features":[391]},{"name":"DXGI_FORMAT_R32G8X24_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R32_FLOAT","features":[391]},{"name":"DXGI_FORMAT_R32_FLOAT_X8X24_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R32_SINT","features":[391]},{"name":"DXGI_FORMAT_R32_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R32_UINT","features":[391]},{"name":"DXGI_FORMAT_R8G8B8A8_SINT","features":[391]},{"name":"DXGI_FORMAT_R8G8B8A8_SNORM","features":[391]},{"name":"DXGI_FORMAT_R8G8B8A8_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R8G8B8A8_UINT","features":[391]},{"name":"DXGI_FORMAT_R8G8B8A8_UNORM","features":[391]},{"name":"DXGI_FORMAT_R8G8B8A8_UNORM_SRGB","features":[391]},{"name":"DXGI_FORMAT_R8G8_B8G8_UNORM","features":[391]},{"name":"DXGI_FORMAT_R8G8_SINT","features":[391]},{"name":"DXGI_FORMAT_R8G8_SNORM","features":[391]},{"name":"DXGI_FORMAT_R8G8_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R8G8_UINT","features":[391]},{"name":"DXGI_FORMAT_R8G8_UNORM","features":[391]},{"name":"DXGI_FORMAT_R8_SINT","features":[391]},{"name":"DXGI_FORMAT_R8_SNORM","features":[391]},{"name":"DXGI_FORMAT_R8_TYPELESS","features":[391]},{"name":"DXGI_FORMAT_R8_UINT","features":[391]},{"name":"DXGI_FORMAT_R8_UNORM","features":[391]},{"name":"DXGI_FORMAT_R9G9B9E5_SHAREDEXP","features":[391]},{"name":"DXGI_FORMAT_SAMPLER_FEEDBACK_MIN_MIP_OPAQUE","features":[391]},{"name":"DXGI_FORMAT_SAMPLER_FEEDBACK_MIP_REGION_USED_OPAQUE","features":[391]},{"name":"DXGI_FORMAT_UNKNOWN","features":[391]},{"name":"DXGI_FORMAT_V208","features":[391]},{"name":"DXGI_FORMAT_V408","features":[391]},{"name":"DXGI_FORMAT_X24_TYPELESS_G8_UINT","features":[391]},{"name":"DXGI_FORMAT_X32_TYPELESS_G8X24_UINT","features":[391]},{"name":"DXGI_FORMAT_Y210","features":[391]},{"name":"DXGI_FORMAT_Y216","features":[391]},{"name":"DXGI_FORMAT_Y410","features":[391]},{"name":"DXGI_FORMAT_Y416","features":[391]},{"name":"DXGI_FORMAT_YUY2","features":[391]},{"name":"DXGI_GAMMA_CONTROL","features":[391]},{"name":"DXGI_GAMMA_CONTROL_CAPABILITIES","features":[303,391]},{"name":"DXGI_JPEG_AC_HUFFMAN_TABLE","features":[391]},{"name":"DXGI_JPEG_DC_HUFFMAN_TABLE","features":[391]},{"name":"DXGI_JPEG_QUANTIZATION_TABLE","features":[391]},{"name":"DXGI_MODE_DESC","features":[391]},{"name":"DXGI_MODE_ROTATION","features":[391]},{"name":"DXGI_MODE_ROTATION_IDENTITY","features":[391]},{"name":"DXGI_MODE_ROTATION_ROTATE180","features":[391]},{"name":"DXGI_MODE_ROTATION_ROTATE270","features":[391]},{"name":"DXGI_MODE_ROTATION_ROTATE90","features":[391]},{"name":"DXGI_MODE_ROTATION_UNSPECIFIED","features":[391]},{"name":"DXGI_MODE_SCALING","features":[391]},{"name":"DXGI_MODE_SCALING_CENTERED","features":[391]},{"name":"DXGI_MODE_SCALING_STRETCHED","features":[391]},{"name":"DXGI_MODE_SCALING_UNSPECIFIED","features":[391]},{"name":"DXGI_MODE_SCANLINE_ORDER","features":[391]},{"name":"DXGI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST","features":[391]},{"name":"DXGI_MODE_SCANLINE_ORDER_PROGRESSIVE","features":[391]},{"name":"DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED","features":[391]},{"name":"DXGI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST","features":[391]},{"name":"DXGI_RATIONAL","features":[391]},{"name":"DXGI_RGB","features":[391]},{"name":"DXGI_SAMPLE_DESC","features":[391]},{"name":"DXGI_STANDARD_MULTISAMPLE_QUALITY_PATTERN","features":[391]},{"name":"_FACDXGI","features":[391]}],"413":[{"name":"ABC","features":[314]},{"name":"ABCFLOAT","features":[314]},{"name":"ABORTDOC","features":[314]},{"name":"ABORTPATH","features":[314]},{"name":"ABSOLUTE","features":[314]},{"name":"AC_SRC_ALPHA","features":[314]},{"name":"AC_SRC_OVER","features":[314]},{"name":"AD_CLOCKWISE","features":[314]},{"name":"AD_COUNTERCLOCKWISE","features":[314]},{"name":"ALTERNATE","features":[314]},{"name":"ANSI_CHARSET","features":[314]},{"name":"ANSI_FIXED_FONT","features":[314]},{"name":"ANSI_VAR_FONT","features":[314]},{"name":"ANTIALIASED_QUALITY","features":[314]},{"name":"ARABIC_CHARSET","features":[314]},{"name":"ARC_DIRECTION","features":[314]},{"name":"ASPECTX","features":[314]},{"name":"ASPECTXY","features":[314]},{"name":"ASPECTY","features":[314]},{"name":"ASPECT_FILTERING","features":[314]},{"name":"AXESLISTA","features":[314]},{"name":"AXESLISTW","features":[314]},{"name":"AXISINFOA","features":[314]},{"name":"AXISINFOW","features":[314]},{"name":"AbortPath","features":[303,314]},{"name":"AddFontMemResourceEx","features":[303,314]},{"name":"AddFontResourceA","features":[314]},{"name":"AddFontResourceExA","features":[314]},{"name":"AddFontResourceExW","features":[314]},{"name":"AddFontResourceW","features":[314]},{"name":"AlphaBlend","features":[303,314]},{"name":"AngleArc","features":[303,314]},{"name":"AnimatePalette","features":[303,314]},{"name":"Arc","features":[303,314]},{"name":"ArcTo","features":[303,314]},{"name":"BACKGROUND_MODE","features":[314]},{"name":"BALTIC_CHARSET","features":[314]},{"name":"BANDINFO","features":[314]},{"name":"BDR_INNER","features":[314]},{"name":"BDR_OUTER","features":[314]},{"name":"BDR_RAISED","features":[314]},{"name":"BDR_RAISEDINNER","features":[314]},{"name":"BDR_RAISEDOUTER","features":[314]},{"name":"BDR_SUNKEN","features":[314]},{"name":"BDR_SUNKENINNER","features":[314]},{"name":"BDR_SUNKENOUTER","features":[314]},{"name":"BEGIN_PATH","features":[314]},{"name":"BF_ADJUST","features":[314]},{"name":"BF_BOTTOM","features":[314]},{"name":"BF_BOTTOMLEFT","features":[314]},{"name":"BF_BOTTOMRIGHT","features":[314]},{"name":"BF_DIAGONAL","features":[314]},{"name":"BF_DIAGONAL_ENDBOTTOMLEFT","features":[314]},{"name":"BF_DIAGONAL_ENDBOTTOMRIGHT","features":[314]},{"name":"BF_DIAGONAL_ENDTOPLEFT","features":[314]},{"name":"BF_DIAGONAL_ENDTOPRIGHT","features":[314]},{"name":"BF_FLAT","features":[314]},{"name":"BF_LEFT","features":[314]},{"name":"BF_MIDDLE","features":[314]},{"name":"BF_MONO","features":[314]},{"name":"BF_RECT","features":[314]},{"name":"BF_RIGHT","features":[314]},{"name":"BF_SOFT","features":[314]},{"name":"BF_TOP","features":[314]},{"name":"BF_TOPLEFT","features":[314]},{"name":"BF_TOPRIGHT","features":[314]},{"name":"BITMAP","features":[314]},{"name":"BITMAPCOREHEADER","features":[314]},{"name":"BITMAPCOREINFO","features":[314]},{"name":"BITMAPFILEHEADER","features":[314]},{"name":"BITMAPINFO","features":[314]},{"name":"BITMAPINFOHEADER","features":[314]},{"name":"BITMAPV4HEADER","features":[314]},{"name":"BITMAPV5HEADER","features":[314]},{"name":"BITSPIXEL","features":[314]},{"name":"BI_BITFIELDS","features":[314]},{"name":"BI_COMPRESSION","features":[314]},{"name":"BI_JPEG","features":[314]},{"name":"BI_PNG","features":[314]},{"name":"BI_RGB","features":[314]},{"name":"BI_RLE4","features":[314]},{"name":"BI_RLE8","features":[314]},{"name":"BKMODE_LAST","features":[314]},{"name":"BLACKNESS","features":[314]},{"name":"BLACKONWHITE","features":[314]},{"name":"BLACK_BRUSH","features":[314]},{"name":"BLACK_PEN","features":[314]},{"name":"BLENDFUNCTION","features":[314]},{"name":"BLTALIGNMENT","features":[314]},{"name":"BRUSH_STYLE","features":[314]},{"name":"BS_DIBPATTERN","features":[314]},{"name":"BS_DIBPATTERN8X8","features":[314]},{"name":"BS_DIBPATTERNPT","features":[314]},{"name":"BS_HATCHED","features":[314]},{"name":"BS_HOLLOW","features":[314]},{"name":"BS_INDEXED","features":[314]},{"name":"BS_MONOPATTERN","features":[314]},{"name":"BS_NULL","features":[314]},{"name":"BS_PATTERN","features":[314]},{"name":"BS_PATTERN8X8","features":[314]},{"name":"BS_SOLID","features":[314]},{"name":"BeginPaint","features":[303,314]},{"name":"BeginPath","features":[303,314]},{"name":"BitBlt","features":[303,314]},{"name":"CAPTUREBLT","features":[314]},{"name":"CA_LOG_FILTER","features":[314]},{"name":"CA_NEGATIVE","features":[314]},{"name":"CBM_INIT","features":[314]},{"name":"CCHFORMNAME","features":[314]},{"name":"CC_CHORD","features":[314]},{"name":"CC_CIRCLES","features":[314]},{"name":"CC_ELLIPSES","features":[314]},{"name":"CC_INTERIORS","features":[314]},{"name":"CC_NONE","features":[314]},{"name":"CC_PIE","features":[314]},{"name":"CC_ROUNDRECT","features":[314]},{"name":"CC_STYLED","features":[314]},{"name":"CC_WIDE","features":[314]},{"name":"CC_WIDESTYLED","features":[314]},{"name":"CDS_DISABLE_UNSAFE_MODES","features":[314]},{"name":"CDS_ENABLE_UNSAFE_MODES","features":[314]},{"name":"CDS_FULLSCREEN","features":[314]},{"name":"CDS_GLOBAL","features":[314]},{"name":"CDS_NORESET","features":[314]},{"name":"CDS_RESET","features":[314]},{"name":"CDS_RESET_EX","features":[314]},{"name":"CDS_SET_PRIMARY","features":[314]},{"name":"CDS_TEST","features":[314]},{"name":"CDS_TYPE","features":[314]},{"name":"CDS_UPDATEREGISTRY","features":[314]},{"name":"CDS_VIDEOPARAMETERS","features":[314]},{"name":"CFP_ALLOCPROC","features":[314]},{"name":"CFP_FREEPROC","features":[314]},{"name":"CFP_REALLOCPROC","features":[314]},{"name":"CHARSET_DEFAULT","features":[314]},{"name":"CHARSET_GLYPHIDX","features":[314]},{"name":"CHARSET_SYMBOL","features":[314]},{"name":"CHARSET_UNICODE","features":[314]},{"name":"CHECKJPEGFORMAT","features":[314]},{"name":"CHECKPNGFORMAT","features":[314]},{"name":"CHINESEBIG5_CHARSET","features":[314]},{"name":"CIEXYZ","features":[314]},{"name":"CIEXYZTRIPLE","features":[314]},{"name":"CLEARTYPE_NATURAL_QUALITY","features":[314]},{"name":"CLEARTYPE_QUALITY","features":[314]},{"name":"CLIPCAPS","features":[314]},{"name":"CLIP_CHARACTER_PRECIS","features":[314]},{"name":"CLIP_DEFAULT_PRECIS","features":[314]},{"name":"CLIP_DFA_DISABLE","features":[314]},{"name":"CLIP_DFA_OVERRIDE","features":[314]},{"name":"CLIP_EMBEDDED","features":[314]},{"name":"CLIP_LH_ANGLES","features":[314]},{"name":"CLIP_MASK","features":[314]},{"name":"CLIP_STROKE_PRECIS","features":[314]},{"name":"CLIP_TO_PATH","features":[314]},{"name":"CLIP_TT_ALWAYS","features":[314]},{"name":"CLOSECHANNEL","features":[314]},{"name":"CLR_INVALID","features":[314]},{"name":"CM_CMYK_COLOR","features":[314]},{"name":"CM_DEVICE_ICM","features":[314]},{"name":"CM_GAMMA_RAMP","features":[314]},{"name":"CM_IN_GAMUT","features":[314]},{"name":"CM_NONE","features":[314]},{"name":"CM_OUT_OF_GAMUT","features":[314]},{"name":"COLORADJUSTMENT","features":[314]},{"name":"COLORMATCHTOTARGET_EMBEDED","features":[314]},{"name":"COLORMGMTCAPS","features":[314]},{"name":"COLORONCOLOR","features":[314]},{"name":"COLORRES","features":[314]},{"name":"COLOR_3DDKSHADOW","features":[314]},{"name":"COLOR_3DFACE","features":[314]},{"name":"COLOR_3DHIGHLIGHT","features":[314]},{"name":"COLOR_3DHILIGHT","features":[314]},{"name":"COLOR_3DLIGHT","features":[314]},{"name":"COLOR_3DSHADOW","features":[314]},{"name":"COLOR_ACTIVEBORDER","features":[314]},{"name":"COLOR_ACTIVECAPTION","features":[314]},{"name":"COLOR_APPWORKSPACE","features":[314]},{"name":"COLOR_BACKGROUND","features":[314]},{"name":"COLOR_BTNFACE","features":[314]},{"name":"COLOR_BTNHIGHLIGHT","features":[314]},{"name":"COLOR_BTNHILIGHT","features":[314]},{"name":"COLOR_BTNSHADOW","features":[314]},{"name":"COLOR_BTNTEXT","features":[314]},{"name":"COLOR_CAPTIONTEXT","features":[314]},{"name":"COLOR_DESKTOP","features":[314]},{"name":"COLOR_GRADIENTACTIVECAPTION","features":[314]},{"name":"COLOR_GRADIENTINACTIVECAPTION","features":[314]},{"name":"COLOR_GRAYTEXT","features":[314]},{"name":"COLOR_HIGHLIGHT","features":[314]},{"name":"COLOR_HIGHLIGHTTEXT","features":[314]},{"name":"COLOR_HOTLIGHT","features":[314]},{"name":"COLOR_INACTIVEBORDER","features":[314]},{"name":"COLOR_INACTIVECAPTION","features":[314]},{"name":"COLOR_INACTIVECAPTIONTEXT","features":[314]},{"name":"COLOR_INFOBK","features":[314]},{"name":"COLOR_INFOTEXT","features":[314]},{"name":"COLOR_MENU","features":[314]},{"name":"COLOR_MENUBAR","features":[314]},{"name":"COLOR_MENUHILIGHT","features":[314]},{"name":"COLOR_MENUTEXT","features":[314]},{"name":"COLOR_SCROLLBAR","features":[314]},{"name":"COLOR_WINDOW","features":[314]},{"name":"COLOR_WINDOWFRAME","features":[314]},{"name":"COLOR_WINDOWTEXT","features":[314]},{"name":"COMPLEXREGION","features":[314]},{"name":"CP_NONE","features":[314]},{"name":"CP_RECTANGLE","features":[314]},{"name":"CP_REGION","features":[314]},{"name":"CREATECOLORSPACE_EMBEDED","features":[314]},{"name":"CREATE_FONT_PACKAGE_SUBSET_ENCODING","features":[314]},{"name":"CREATE_FONT_PACKAGE_SUBSET_PLATFORM","features":[314]},{"name":"CREATE_POLYGON_RGN_MODE","features":[314]},{"name":"CURVECAPS","features":[314]},{"name":"CancelDC","features":[303,314]},{"name":"ChangeDisplaySettingsA","features":[303,314]},{"name":"ChangeDisplaySettingsExA","features":[303,314]},{"name":"ChangeDisplaySettingsExW","features":[303,314]},{"name":"ChangeDisplaySettingsW","features":[303,314]},{"name":"Chord","features":[303,314]},{"name":"ClientToScreen","features":[303,314]},{"name":"CloseEnhMetaFile","features":[314]},{"name":"CloseFigure","features":[303,314]},{"name":"CloseMetaFile","features":[314]},{"name":"CombineRgn","features":[314]},{"name":"CombineTransform","features":[303,314]},{"name":"CopyEnhMetaFileA","features":[314]},{"name":"CopyEnhMetaFileW","features":[314]},{"name":"CopyMetaFileA","features":[314]},{"name":"CopyMetaFileW","features":[314]},{"name":"CopyRect","features":[303,314]},{"name":"CreateBitmap","features":[314]},{"name":"CreateBitmapIndirect","features":[314]},{"name":"CreateBrushIndirect","features":[303,314]},{"name":"CreateCompatibleBitmap","features":[314]},{"name":"CreateCompatibleDC","features":[314]},{"name":"CreateDCA","features":[303,314]},{"name":"CreateDCW","features":[303,314]},{"name":"CreateDIBPatternBrush","features":[303,314]},{"name":"CreateDIBPatternBrushPt","features":[314]},{"name":"CreateDIBSection","features":[303,314]},{"name":"CreateDIBitmap","features":[314]},{"name":"CreateDiscardableBitmap","features":[314]},{"name":"CreateEllipticRgn","features":[314]},{"name":"CreateEllipticRgnIndirect","features":[303,314]},{"name":"CreateEnhMetaFileA","features":[303,314]},{"name":"CreateEnhMetaFileW","features":[303,314]},{"name":"CreateFontA","features":[314]},{"name":"CreateFontIndirectA","features":[314]},{"name":"CreateFontIndirectExA","features":[314]},{"name":"CreateFontIndirectExW","features":[314]},{"name":"CreateFontIndirectW","features":[314]},{"name":"CreateFontPackage","features":[314]},{"name":"CreateFontW","features":[314]},{"name":"CreateHalftonePalette","features":[314]},{"name":"CreateHatchBrush","features":[303,314]},{"name":"CreateICA","features":[303,314]},{"name":"CreateICW","features":[303,314]},{"name":"CreateMetaFileA","features":[314]},{"name":"CreateMetaFileW","features":[314]},{"name":"CreatePalette","features":[314]},{"name":"CreatePatternBrush","features":[314]},{"name":"CreatePen","features":[303,314]},{"name":"CreatePenIndirect","features":[303,314]},{"name":"CreatePolyPolygonRgn","features":[303,314]},{"name":"CreatePolygonRgn","features":[303,314]},{"name":"CreateRectRgn","features":[314]},{"name":"CreateRectRgnIndirect","features":[303,314]},{"name":"CreateRoundRectRgn","features":[314]},{"name":"CreateScalableFontResourceA","features":[303,314]},{"name":"CreateScalableFontResourceW","features":[303,314]},{"name":"CreateSolidBrush","features":[303,314]},{"name":"DCBA_FACEDOWNCENTER","features":[314]},{"name":"DCBA_FACEDOWNLEFT","features":[314]},{"name":"DCBA_FACEDOWNNONE","features":[314]},{"name":"DCBA_FACEDOWNRIGHT","features":[314]},{"name":"DCBA_FACEUPCENTER","features":[314]},{"name":"DCBA_FACEUPLEFT","features":[314]},{"name":"DCBA_FACEUPNONE","features":[314]},{"name":"DCBA_FACEUPRIGHT","features":[314]},{"name":"DCB_ACCUMULATE","features":[314]},{"name":"DCB_DISABLE","features":[314]},{"name":"DCB_ENABLE","features":[314]},{"name":"DCB_RESET","features":[314]},{"name":"DCTT_BITMAP","features":[314]},{"name":"DCTT_DOWNLOAD","features":[314]},{"name":"DCTT_DOWNLOAD_OUTLINE","features":[314]},{"name":"DCTT_SUBDEV","features":[314]},{"name":"DCX_CACHE","features":[314]},{"name":"DCX_CLIPCHILDREN","features":[314]},{"name":"DCX_CLIPSIBLINGS","features":[314]},{"name":"DCX_EXCLUDERGN","features":[314]},{"name":"DCX_INTERSECTRGN","features":[314]},{"name":"DCX_INTERSECTUPDATE","features":[314]},{"name":"DCX_LOCKWINDOWUPDATE","features":[314]},{"name":"DCX_NORESETATTRS","features":[314]},{"name":"DCX_PARENTCLIP","features":[314]},{"name":"DCX_VALIDATE","features":[314]},{"name":"DCX_WINDOW","features":[314]},{"name":"DC_ACTIVE","features":[314]},{"name":"DC_BINADJUST","features":[314]},{"name":"DC_BRUSH","features":[314]},{"name":"DC_BUTTONS","features":[314]},{"name":"DC_DATATYPE_PRODUCED","features":[314]},{"name":"DC_EMF_COMPLIANT","features":[314]},{"name":"DC_GRADIENT","features":[314]},{"name":"DC_ICON","features":[314]},{"name":"DC_INBUTTON","features":[314]},{"name":"DC_LAYOUT","features":[314]},{"name":"DC_MANUFACTURER","features":[314]},{"name":"DC_MODEL","features":[314]},{"name":"DC_PEN","features":[314]},{"name":"DC_SMALLCAP","features":[314]},{"name":"DC_TEXT","features":[314]},{"name":"DEFAULT_CHARSET","features":[314]},{"name":"DEFAULT_GUI_FONT","features":[314]},{"name":"DEFAULT_PALETTE","features":[314]},{"name":"DEFAULT_PITCH","features":[314]},{"name":"DEFAULT_QUALITY","features":[314]},{"name":"DESIGNVECTOR","features":[314]},{"name":"DESKTOPHORZRES","features":[314]},{"name":"DESKTOPVERTRES","features":[314]},{"name":"DEVICEDATA","features":[314]},{"name":"DEVICE_DEFAULT_FONT","features":[314]},{"name":"DEVICE_FONTTYPE","features":[314]},{"name":"DEVMODEA","features":[303,314]},{"name":"DEVMODEW","features":[303,314]},{"name":"DEVMODE_COLLATE","features":[314]},{"name":"DEVMODE_COLOR","features":[314]},{"name":"DEVMODE_DISPLAY_FIXED_OUTPUT","features":[314]},{"name":"DEVMODE_DISPLAY_ORIENTATION","features":[314]},{"name":"DEVMODE_DUPLEX","features":[314]},{"name":"DEVMODE_FIELD_FLAGS","features":[314]},{"name":"DEVMODE_TRUETYPE_OPTION","features":[314]},{"name":"DFCS_ADJUSTRECT","features":[314]},{"name":"DFCS_BUTTON3STATE","features":[314]},{"name":"DFCS_BUTTONCHECK","features":[314]},{"name":"DFCS_BUTTONPUSH","features":[314]},{"name":"DFCS_BUTTONRADIO","features":[314]},{"name":"DFCS_BUTTONRADIOIMAGE","features":[314]},{"name":"DFCS_BUTTONRADIOMASK","features":[314]},{"name":"DFCS_CAPTIONCLOSE","features":[314]},{"name":"DFCS_CAPTIONHELP","features":[314]},{"name":"DFCS_CAPTIONMAX","features":[314]},{"name":"DFCS_CAPTIONMIN","features":[314]},{"name":"DFCS_CAPTIONRESTORE","features":[314]},{"name":"DFCS_CHECKED","features":[314]},{"name":"DFCS_FLAT","features":[314]},{"name":"DFCS_HOT","features":[314]},{"name":"DFCS_INACTIVE","features":[314]},{"name":"DFCS_MENUARROW","features":[314]},{"name":"DFCS_MENUARROWRIGHT","features":[314]},{"name":"DFCS_MENUBULLET","features":[314]},{"name":"DFCS_MENUCHECK","features":[314]},{"name":"DFCS_MONO","features":[314]},{"name":"DFCS_PUSHED","features":[314]},{"name":"DFCS_SCROLLCOMBOBOX","features":[314]},{"name":"DFCS_SCROLLDOWN","features":[314]},{"name":"DFCS_SCROLLLEFT","features":[314]},{"name":"DFCS_SCROLLRIGHT","features":[314]},{"name":"DFCS_SCROLLSIZEGRIP","features":[314]},{"name":"DFCS_SCROLLSIZEGRIPRIGHT","features":[314]},{"name":"DFCS_SCROLLUP","features":[314]},{"name":"DFCS_STATE","features":[314]},{"name":"DFCS_TRANSPARENT","features":[314]},{"name":"DFC_BUTTON","features":[314]},{"name":"DFC_CAPTION","features":[314]},{"name":"DFC_MENU","features":[314]},{"name":"DFC_POPUPMENU","features":[314]},{"name":"DFC_SCROLL","features":[314]},{"name":"DFC_TYPE","features":[314]},{"name":"DIBSECTION","features":[303,314]},{"name":"DIB_PAL_COLORS","features":[314]},{"name":"DIB_RGB_COLORS","features":[314]},{"name":"DIB_USAGE","features":[314]},{"name":"DISPLAYCONFIG_COLOR_ENCODING","features":[314]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_INTENSITY","features":[314]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_RGB","features":[314]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR420","features":[314]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR422","features":[314]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR444","features":[314]},{"name":"DISPLAYCONFIG_MAXPATH","features":[314]},{"name":"DISPLAYCONFIG_PATH_ACTIVE","features":[314]},{"name":"DISPLAYCONFIG_PATH_CLONE_GROUP_INVALID","features":[314]},{"name":"DISPLAYCONFIG_PATH_DESKTOP_IMAGE_IDX_INVALID","features":[314]},{"name":"DISPLAYCONFIG_PATH_MODE_IDX_INVALID","features":[314]},{"name":"DISPLAYCONFIG_PATH_PREFERRED_UNSCALED","features":[314]},{"name":"DISPLAYCONFIG_PATH_SOURCE_MODE_IDX_INVALID","features":[314]},{"name":"DISPLAYCONFIG_PATH_SUPPORT_VIRTUAL_MODE","features":[314]},{"name":"DISPLAYCONFIG_PATH_TARGET_MODE_IDX_INVALID","features":[314]},{"name":"DISPLAYCONFIG_PATH_VALID_FLAGS","features":[314]},{"name":"DISPLAYCONFIG_SOURCE_IN_USE","features":[314]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_BOOT","features":[314]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_PATH","features":[314]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_SYSTEM","features":[314]},{"name":"DISPLAYCONFIG_TARGET_FORCIBLE","features":[314]},{"name":"DISPLAYCONFIG_TARGET_IN_USE","features":[314]},{"name":"DISPLAYCONFIG_TARGET_IS_HMD","features":[314]},{"name":"DISPLAY_DEVICEA","features":[314]},{"name":"DISPLAY_DEVICEW","features":[314]},{"name":"DISPLAY_DEVICE_ACC_DRIVER","features":[314]},{"name":"DISPLAY_DEVICE_ACTIVE","features":[314]},{"name":"DISPLAY_DEVICE_ATTACHED","features":[314]},{"name":"DISPLAY_DEVICE_ATTACHED_TO_DESKTOP","features":[314]},{"name":"DISPLAY_DEVICE_DISCONNECT","features":[314]},{"name":"DISPLAY_DEVICE_MIRRORING_DRIVER","features":[314]},{"name":"DISPLAY_DEVICE_MODESPRUNED","features":[314]},{"name":"DISPLAY_DEVICE_MULTI_DRIVER","features":[314]},{"name":"DISPLAY_DEVICE_PRIMARY_DEVICE","features":[314]},{"name":"DISPLAY_DEVICE_RDPUDD","features":[314]},{"name":"DISPLAY_DEVICE_REMOTE","features":[314]},{"name":"DISPLAY_DEVICE_REMOVABLE","features":[314]},{"name":"DISPLAY_DEVICE_TS_COMPATIBLE","features":[314]},{"name":"DISPLAY_DEVICE_UNSAFE_MODES_ON","features":[314]},{"name":"DISPLAY_DEVICE_VGA_COMPATIBLE","features":[314]},{"name":"DISP_CHANGE","features":[314]},{"name":"DISP_CHANGE_BADDUALVIEW","features":[314]},{"name":"DISP_CHANGE_BADFLAGS","features":[314]},{"name":"DISP_CHANGE_BADMODE","features":[314]},{"name":"DISP_CHANGE_BADPARAM","features":[314]},{"name":"DISP_CHANGE_FAILED","features":[314]},{"name":"DISP_CHANGE_NOTUPDATED","features":[314]},{"name":"DISP_CHANGE_RESTART","features":[314]},{"name":"DISP_CHANGE_SUCCESSFUL","features":[314]},{"name":"DI_APPBANDING","features":[314]},{"name":"DI_ROPS_READ_DESTINATION","features":[314]},{"name":"DKGRAY_BRUSH","features":[314]},{"name":"DMBIN_AUTO","features":[314]},{"name":"DMBIN_CASSETTE","features":[314]},{"name":"DMBIN_ENVELOPE","features":[314]},{"name":"DMBIN_ENVMANUAL","features":[314]},{"name":"DMBIN_FORMSOURCE","features":[314]},{"name":"DMBIN_LARGECAPACITY","features":[314]},{"name":"DMBIN_LARGEFMT","features":[314]},{"name":"DMBIN_LAST","features":[314]},{"name":"DMBIN_LOWER","features":[314]},{"name":"DMBIN_MANUAL","features":[314]},{"name":"DMBIN_MIDDLE","features":[314]},{"name":"DMBIN_ONLYONE","features":[314]},{"name":"DMBIN_SMALLFMT","features":[314]},{"name":"DMBIN_TRACTOR","features":[314]},{"name":"DMBIN_UPPER","features":[314]},{"name":"DMBIN_USER","features":[314]},{"name":"DMCOLLATE_FALSE","features":[314]},{"name":"DMCOLLATE_TRUE","features":[314]},{"name":"DMCOLOR_COLOR","features":[314]},{"name":"DMCOLOR_MONOCHROME","features":[314]},{"name":"DMDFO_CENTER","features":[314]},{"name":"DMDFO_DEFAULT","features":[314]},{"name":"DMDFO_STRETCH","features":[314]},{"name":"DMDISPLAYFLAGS_TEXTMODE","features":[314]},{"name":"DMDITHER_COARSE","features":[314]},{"name":"DMDITHER_ERRORDIFFUSION","features":[314]},{"name":"DMDITHER_FINE","features":[314]},{"name":"DMDITHER_GRAYSCALE","features":[314]},{"name":"DMDITHER_LINEART","features":[314]},{"name":"DMDITHER_NONE","features":[314]},{"name":"DMDITHER_RESERVED6","features":[314]},{"name":"DMDITHER_RESERVED7","features":[314]},{"name":"DMDITHER_RESERVED8","features":[314]},{"name":"DMDITHER_RESERVED9","features":[314]},{"name":"DMDITHER_USER","features":[314]},{"name":"DMDO_180","features":[314]},{"name":"DMDO_270","features":[314]},{"name":"DMDO_90","features":[314]},{"name":"DMDO_DEFAULT","features":[314]},{"name":"DMDUP_HORIZONTAL","features":[314]},{"name":"DMDUP_SIMPLEX","features":[314]},{"name":"DMDUP_VERTICAL","features":[314]},{"name":"DMICMMETHOD_DEVICE","features":[314]},{"name":"DMICMMETHOD_DRIVER","features":[314]},{"name":"DMICMMETHOD_NONE","features":[314]},{"name":"DMICMMETHOD_SYSTEM","features":[314]},{"name":"DMICMMETHOD_USER","features":[314]},{"name":"DMICM_ABS_COLORIMETRIC","features":[314]},{"name":"DMICM_COLORIMETRIC","features":[314]},{"name":"DMICM_CONTRAST","features":[314]},{"name":"DMICM_SATURATE","features":[314]},{"name":"DMICM_USER","features":[314]},{"name":"DMMEDIA_GLOSSY","features":[314]},{"name":"DMMEDIA_STANDARD","features":[314]},{"name":"DMMEDIA_TRANSPARENCY","features":[314]},{"name":"DMMEDIA_USER","features":[314]},{"name":"DMNUP_ONEUP","features":[314]},{"name":"DMNUP_SYSTEM","features":[314]},{"name":"DMORIENT_LANDSCAPE","features":[314]},{"name":"DMORIENT_PORTRAIT","features":[314]},{"name":"DMPAPER_10X11","features":[314]},{"name":"DMPAPER_10X14","features":[314]},{"name":"DMPAPER_11X17","features":[314]},{"name":"DMPAPER_12X11","features":[314]},{"name":"DMPAPER_15X11","features":[314]},{"name":"DMPAPER_9X11","features":[314]},{"name":"DMPAPER_A2","features":[314]},{"name":"DMPAPER_A3","features":[314]},{"name":"DMPAPER_A3_EXTRA","features":[314]},{"name":"DMPAPER_A3_EXTRA_TRANSVERSE","features":[314]},{"name":"DMPAPER_A3_ROTATED","features":[314]},{"name":"DMPAPER_A3_TRANSVERSE","features":[314]},{"name":"DMPAPER_A4","features":[314]},{"name":"DMPAPER_A4SMALL","features":[314]},{"name":"DMPAPER_A4_EXTRA","features":[314]},{"name":"DMPAPER_A4_PLUS","features":[314]},{"name":"DMPAPER_A4_ROTATED","features":[314]},{"name":"DMPAPER_A4_TRANSVERSE","features":[314]},{"name":"DMPAPER_A5","features":[314]},{"name":"DMPAPER_A5_EXTRA","features":[314]},{"name":"DMPAPER_A5_ROTATED","features":[314]},{"name":"DMPAPER_A5_TRANSVERSE","features":[314]},{"name":"DMPAPER_A6","features":[314]},{"name":"DMPAPER_A6_ROTATED","features":[314]},{"name":"DMPAPER_A_PLUS","features":[314]},{"name":"DMPAPER_B4","features":[314]},{"name":"DMPAPER_B4_JIS_ROTATED","features":[314]},{"name":"DMPAPER_B5","features":[314]},{"name":"DMPAPER_B5_EXTRA","features":[314]},{"name":"DMPAPER_B5_JIS_ROTATED","features":[314]},{"name":"DMPAPER_B5_TRANSVERSE","features":[314]},{"name":"DMPAPER_B6_JIS","features":[314]},{"name":"DMPAPER_B6_JIS_ROTATED","features":[314]},{"name":"DMPAPER_B_PLUS","features":[314]},{"name":"DMPAPER_CSHEET","features":[314]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD","features":[314]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED","features":[314]},{"name":"DMPAPER_DSHEET","features":[314]},{"name":"DMPAPER_ENV_10","features":[314]},{"name":"DMPAPER_ENV_11","features":[314]},{"name":"DMPAPER_ENV_12","features":[314]},{"name":"DMPAPER_ENV_14","features":[314]},{"name":"DMPAPER_ENV_9","features":[314]},{"name":"DMPAPER_ENV_B4","features":[314]},{"name":"DMPAPER_ENV_B5","features":[314]},{"name":"DMPAPER_ENV_B6","features":[314]},{"name":"DMPAPER_ENV_C3","features":[314]},{"name":"DMPAPER_ENV_C4","features":[314]},{"name":"DMPAPER_ENV_C5","features":[314]},{"name":"DMPAPER_ENV_C6","features":[314]},{"name":"DMPAPER_ENV_C65","features":[314]},{"name":"DMPAPER_ENV_DL","features":[314]},{"name":"DMPAPER_ENV_INVITE","features":[314]},{"name":"DMPAPER_ENV_ITALY","features":[314]},{"name":"DMPAPER_ENV_MONARCH","features":[314]},{"name":"DMPAPER_ENV_PERSONAL","features":[314]},{"name":"DMPAPER_ESHEET","features":[314]},{"name":"DMPAPER_EXECUTIVE","features":[314]},{"name":"DMPAPER_FANFOLD_LGL_GERMAN","features":[314]},{"name":"DMPAPER_FANFOLD_STD_GERMAN","features":[314]},{"name":"DMPAPER_FANFOLD_US","features":[314]},{"name":"DMPAPER_FOLIO","features":[314]},{"name":"DMPAPER_ISO_B4","features":[314]},{"name":"DMPAPER_JAPANESE_POSTCARD","features":[314]},{"name":"DMPAPER_JAPANESE_POSTCARD_ROTATED","features":[314]},{"name":"DMPAPER_JENV_CHOU3","features":[314]},{"name":"DMPAPER_JENV_CHOU3_ROTATED","features":[314]},{"name":"DMPAPER_JENV_CHOU4","features":[314]},{"name":"DMPAPER_JENV_CHOU4_ROTATED","features":[314]},{"name":"DMPAPER_JENV_KAKU2","features":[314]},{"name":"DMPAPER_JENV_KAKU2_ROTATED","features":[314]},{"name":"DMPAPER_JENV_KAKU3","features":[314]},{"name":"DMPAPER_JENV_KAKU3_ROTATED","features":[314]},{"name":"DMPAPER_JENV_YOU4","features":[314]},{"name":"DMPAPER_JENV_YOU4_ROTATED","features":[314]},{"name":"DMPAPER_LAST","features":[314]},{"name":"DMPAPER_LEDGER","features":[314]},{"name":"DMPAPER_LEGAL","features":[314]},{"name":"DMPAPER_LEGAL_EXTRA","features":[314]},{"name":"DMPAPER_LETTER","features":[314]},{"name":"DMPAPER_LETTERSMALL","features":[314]},{"name":"DMPAPER_LETTER_EXTRA","features":[314]},{"name":"DMPAPER_LETTER_EXTRA_TRANSVERSE","features":[314]},{"name":"DMPAPER_LETTER_PLUS","features":[314]},{"name":"DMPAPER_LETTER_ROTATED","features":[314]},{"name":"DMPAPER_LETTER_TRANSVERSE","features":[314]},{"name":"DMPAPER_NOTE","features":[314]},{"name":"DMPAPER_P16K","features":[314]},{"name":"DMPAPER_P16K_ROTATED","features":[314]},{"name":"DMPAPER_P32K","features":[314]},{"name":"DMPAPER_P32KBIG","features":[314]},{"name":"DMPAPER_P32KBIG_ROTATED","features":[314]},{"name":"DMPAPER_P32K_ROTATED","features":[314]},{"name":"DMPAPER_PENV_1","features":[314]},{"name":"DMPAPER_PENV_10","features":[314]},{"name":"DMPAPER_PENV_10_ROTATED","features":[314]},{"name":"DMPAPER_PENV_1_ROTATED","features":[314]},{"name":"DMPAPER_PENV_2","features":[314]},{"name":"DMPAPER_PENV_2_ROTATED","features":[314]},{"name":"DMPAPER_PENV_3","features":[314]},{"name":"DMPAPER_PENV_3_ROTATED","features":[314]},{"name":"DMPAPER_PENV_4","features":[314]},{"name":"DMPAPER_PENV_4_ROTATED","features":[314]},{"name":"DMPAPER_PENV_5","features":[314]},{"name":"DMPAPER_PENV_5_ROTATED","features":[314]},{"name":"DMPAPER_PENV_6","features":[314]},{"name":"DMPAPER_PENV_6_ROTATED","features":[314]},{"name":"DMPAPER_PENV_7","features":[314]},{"name":"DMPAPER_PENV_7_ROTATED","features":[314]},{"name":"DMPAPER_PENV_8","features":[314]},{"name":"DMPAPER_PENV_8_ROTATED","features":[314]},{"name":"DMPAPER_PENV_9","features":[314]},{"name":"DMPAPER_PENV_9_ROTATED","features":[314]},{"name":"DMPAPER_QUARTO","features":[314]},{"name":"DMPAPER_RESERVED_48","features":[314]},{"name":"DMPAPER_RESERVED_49","features":[314]},{"name":"DMPAPER_STATEMENT","features":[314]},{"name":"DMPAPER_TABLOID","features":[314]},{"name":"DMPAPER_TABLOID_EXTRA","features":[314]},{"name":"DMPAPER_USER","features":[314]},{"name":"DMRES_DRAFT","features":[314]},{"name":"DMRES_HIGH","features":[314]},{"name":"DMRES_LOW","features":[314]},{"name":"DMRES_MEDIUM","features":[314]},{"name":"DMTT_BITMAP","features":[314]},{"name":"DMTT_DOWNLOAD","features":[314]},{"name":"DMTT_DOWNLOAD_OUTLINE","features":[314]},{"name":"DMTT_SUBDEV","features":[314]},{"name":"DM_BITSPERPEL","features":[314]},{"name":"DM_COLLATE","features":[314]},{"name":"DM_COLOR","features":[314]},{"name":"DM_COPIES","features":[314]},{"name":"DM_COPY","features":[314]},{"name":"DM_DEFAULTSOURCE","features":[314]},{"name":"DM_DISPLAYFIXEDOUTPUT","features":[314]},{"name":"DM_DISPLAYFLAGS","features":[314]},{"name":"DM_DISPLAYFREQUENCY","features":[314]},{"name":"DM_DISPLAYORIENTATION","features":[314]},{"name":"DM_DITHERTYPE","features":[314]},{"name":"DM_DUPLEX","features":[314]},{"name":"DM_FORMNAME","features":[314]},{"name":"DM_ICMINTENT","features":[314]},{"name":"DM_ICMMETHOD","features":[314]},{"name":"DM_INTERLACED","features":[314]},{"name":"DM_IN_BUFFER","features":[314]},{"name":"DM_IN_PROMPT","features":[314]},{"name":"DM_LOGPIXELS","features":[314]},{"name":"DM_MEDIATYPE","features":[314]},{"name":"DM_MODIFY","features":[314]},{"name":"DM_NUP","features":[314]},{"name":"DM_ORIENTATION","features":[314]},{"name":"DM_OUT_BUFFER","features":[314]},{"name":"DM_OUT_DEFAULT","features":[314]},{"name":"DM_PANNINGHEIGHT","features":[314]},{"name":"DM_PANNINGWIDTH","features":[314]},{"name":"DM_PAPERLENGTH","features":[314]},{"name":"DM_PAPERSIZE","features":[314]},{"name":"DM_PAPERWIDTH","features":[314]},{"name":"DM_PELSHEIGHT","features":[314]},{"name":"DM_PELSWIDTH","features":[314]},{"name":"DM_POSITION","features":[314]},{"name":"DM_PRINTQUALITY","features":[314]},{"name":"DM_PROMPT","features":[314]},{"name":"DM_SCALE","features":[314]},{"name":"DM_SPECVERSION","features":[314]},{"name":"DM_TTOPTION","features":[314]},{"name":"DM_UPDATE","features":[314]},{"name":"DM_YRESOLUTION","features":[314]},{"name":"DOWNLOADFACE","features":[314]},{"name":"DOWNLOADHEADER","features":[314]},{"name":"DPtoLP","features":[303,314]},{"name":"DRAFTMODE","features":[314]},{"name":"DRAFT_QUALITY","features":[314]},{"name":"DRAWEDGE_FLAGS","features":[314]},{"name":"DRAWPATTERNRECT","features":[314]},{"name":"DRAWSTATEPROC","features":[303,314]},{"name":"DRAWSTATE_FLAGS","features":[314]},{"name":"DRAWTEXTPARAMS","features":[314]},{"name":"DRAW_CAPTION_FLAGS","features":[314]},{"name":"DRAW_EDGE_FLAGS","features":[314]},{"name":"DRAW_TEXT_FORMAT","features":[314]},{"name":"DRIVERVERSION","features":[314]},{"name":"DSS_DISABLED","features":[314]},{"name":"DSS_HIDEPREFIX","features":[314]},{"name":"DSS_MONO","features":[314]},{"name":"DSS_NORMAL","features":[314]},{"name":"DSS_PREFIXONLY","features":[314]},{"name":"DSS_RIGHT","features":[314]},{"name":"DSS_UNION","features":[314]},{"name":"DSTINVERT","features":[314]},{"name":"DST_BITMAP","features":[314]},{"name":"DST_COMPLEX","features":[314]},{"name":"DST_ICON","features":[314]},{"name":"DST_PREFIXTEXT","features":[314]},{"name":"DST_TEXT","features":[314]},{"name":"DT_BOTTOM","features":[314]},{"name":"DT_CALCRECT","features":[314]},{"name":"DT_CENTER","features":[314]},{"name":"DT_CHARSTREAM","features":[314]},{"name":"DT_DISPFILE","features":[314]},{"name":"DT_EDITCONTROL","features":[314]},{"name":"DT_END_ELLIPSIS","features":[314]},{"name":"DT_EXPANDTABS","features":[314]},{"name":"DT_EXTERNALLEADING","features":[314]},{"name":"DT_HIDEPREFIX","features":[314]},{"name":"DT_INTERNAL","features":[314]},{"name":"DT_LEFT","features":[314]},{"name":"DT_METAFILE","features":[314]},{"name":"DT_MODIFYSTRING","features":[314]},{"name":"DT_NOCLIP","features":[314]},{"name":"DT_NOFULLWIDTHCHARBREAK","features":[314]},{"name":"DT_NOPREFIX","features":[314]},{"name":"DT_PATH_ELLIPSIS","features":[314]},{"name":"DT_PLOTTER","features":[314]},{"name":"DT_PREFIXONLY","features":[314]},{"name":"DT_RASCAMERA","features":[314]},{"name":"DT_RASDISPLAY","features":[314]},{"name":"DT_RASPRINTER","features":[314]},{"name":"DT_RIGHT","features":[314]},{"name":"DT_RTLREADING","features":[314]},{"name":"DT_SINGLELINE","features":[314]},{"name":"DT_TABSTOP","features":[314]},{"name":"DT_TOP","features":[314]},{"name":"DT_VCENTER","features":[314]},{"name":"DT_WORDBREAK","features":[314]},{"name":"DT_WORD_ELLIPSIS","features":[314]},{"name":"DeleteDC","features":[303,314]},{"name":"DeleteEnhMetaFile","features":[303,314]},{"name":"DeleteMetaFile","features":[303,314]},{"name":"DeleteObject","features":[303,314]},{"name":"DrawAnimatedRects","features":[303,314]},{"name":"DrawCaption","features":[303,314]},{"name":"DrawEdge","features":[303,314]},{"name":"DrawEscape","features":[314]},{"name":"DrawFocusRect","features":[303,314]},{"name":"DrawFrameControl","features":[303,314]},{"name":"DrawStateA","features":[303,314]},{"name":"DrawStateW","features":[303,314]},{"name":"DrawTextA","features":[303,314]},{"name":"DrawTextExA","features":[303,314]},{"name":"DrawTextExW","features":[303,314]},{"name":"DrawTextW","features":[303,314]},{"name":"EASTEUROPE_CHARSET","features":[314]},{"name":"EDGE_BUMP","features":[314]},{"name":"EDGE_ETCHED","features":[314]},{"name":"EDGE_RAISED","features":[314]},{"name":"EDGE_SUNKEN","features":[314]},{"name":"EDS_RAWMODE","features":[314]},{"name":"EDS_ROTATEDMODE","features":[314]},{"name":"ELF_CULTURE_LATIN","features":[314]},{"name":"ELF_VENDOR_SIZE","features":[314]},{"name":"ELF_VERSION","features":[314]},{"name":"EMBEDDED_FONT_PRIV_STATUS","features":[314]},{"name":"EMBED_EDITABLE","features":[314]},{"name":"EMBED_FONT_CHARSET","features":[314]},{"name":"EMBED_INSTALLABLE","features":[314]},{"name":"EMBED_NOEMBEDDING","features":[314]},{"name":"EMBED_PREVIEWPRINT","features":[314]},{"name":"EMR","features":[314]},{"name":"EMRALPHABLEND","features":[303,314]},{"name":"EMRANGLEARC","features":[303,314]},{"name":"EMRARC","features":[303,314]},{"name":"EMRBITBLT","features":[303,314]},{"name":"EMRCOLORCORRECTPALETTE","features":[314]},{"name":"EMRCOLORMATCHTOTARGET","features":[314]},{"name":"EMRCREATEBRUSHINDIRECT","features":[303,314]},{"name":"EMRCREATEDIBPATTERNBRUSHPT","features":[314]},{"name":"EMRCREATEMONOBRUSH","features":[314]},{"name":"EMRCREATEPALETTE","features":[314]},{"name":"EMRCREATEPEN","features":[303,314]},{"name":"EMRELLIPSE","features":[303,314]},{"name":"EMREOF","features":[314]},{"name":"EMREXCLUDECLIPRECT","features":[303,314]},{"name":"EMREXTCREATEFONTINDIRECTW","features":[314]},{"name":"EMREXTCREATEPEN","features":[303,314]},{"name":"EMREXTESCAPE","features":[314]},{"name":"EMREXTFLOODFILL","features":[303,314]},{"name":"EMREXTSELECTCLIPRGN","features":[314]},{"name":"EMREXTTEXTOUTA","features":[303,314]},{"name":"EMRFILLPATH","features":[303,314]},{"name":"EMRFILLRGN","features":[303,314]},{"name":"EMRFORMAT","features":[314]},{"name":"EMRFRAMERGN","features":[303,314]},{"name":"EMRGDICOMMENT","features":[314]},{"name":"EMRGLSBOUNDEDRECORD","features":[303,314]},{"name":"EMRGLSRECORD","features":[314]},{"name":"EMRGRADIENTFILL","features":[303,314]},{"name":"EMRINVERTRGN","features":[303,314]},{"name":"EMRLINETO","features":[303,314]},{"name":"EMRMASKBLT","features":[303,314]},{"name":"EMRMODIFYWORLDTRANSFORM","features":[314]},{"name":"EMRNAMEDESCAPE","features":[314]},{"name":"EMROFFSETCLIPRGN","features":[303,314]},{"name":"EMRPLGBLT","features":[303,314]},{"name":"EMRPOLYDRAW","features":[303,314]},{"name":"EMRPOLYDRAW16","features":[303,314]},{"name":"EMRPOLYLINE","features":[303,314]},{"name":"EMRPOLYLINE16","features":[303,314]},{"name":"EMRPOLYPOLYLINE","features":[303,314]},{"name":"EMRPOLYPOLYLINE16","features":[303,314]},{"name":"EMRPOLYTEXTOUTA","features":[303,314]},{"name":"EMRRESIZEPALETTE","features":[314]},{"name":"EMRRESTOREDC","features":[314]},{"name":"EMRROUNDRECT","features":[303,314]},{"name":"EMRSCALEVIEWPORTEXTEX","features":[314]},{"name":"EMRSELECTCLIPPATH","features":[314]},{"name":"EMRSELECTOBJECT","features":[314]},{"name":"EMRSELECTPALETTE","features":[314]},{"name":"EMRSETARCDIRECTION","features":[314]},{"name":"EMRSETCOLORADJUSTMENT","features":[314]},{"name":"EMRSETCOLORSPACE","features":[314]},{"name":"EMRSETDIBITSTODEVICE","features":[303,314]},{"name":"EMRSETICMPROFILE","features":[314]},{"name":"EMRSETMAPPERFLAGS","features":[314]},{"name":"EMRSETMITERLIMIT","features":[314]},{"name":"EMRSETPALETTEENTRIES","features":[314]},{"name":"EMRSETPIXELV","features":[303,314]},{"name":"EMRSETTEXTCOLOR","features":[303,314]},{"name":"EMRSETVIEWPORTEXTEX","features":[303,314]},{"name":"EMRSETVIEWPORTORGEX","features":[303,314]},{"name":"EMRSETWORLDTRANSFORM","features":[314]},{"name":"EMRSTRETCHBLT","features":[303,314]},{"name":"EMRSTRETCHDIBITS","features":[303,314]},{"name":"EMRTEXT","features":[303,314]},{"name":"EMRTRANSPARENTBLT","features":[303,314]},{"name":"EMR_ABORTPATH","features":[314]},{"name":"EMR_ALPHABLEND","features":[314]},{"name":"EMR_ANGLEARC","features":[314]},{"name":"EMR_ARC","features":[314]},{"name":"EMR_ARCTO","features":[314]},{"name":"EMR_BEGINPATH","features":[314]},{"name":"EMR_BITBLT","features":[314]},{"name":"EMR_CHORD","features":[314]},{"name":"EMR_CLOSEFIGURE","features":[314]},{"name":"EMR_COLORCORRECTPALETTE","features":[314]},{"name":"EMR_COLORMATCHTOTARGETW","features":[314]},{"name":"EMR_CREATEBRUSHINDIRECT","features":[314]},{"name":"EMR_CREATECOLORSPACE","features":[314]},{"name":"EMR_CREATECOLORSPACEW","features":[314]},{"name":"EMR_CREATEDIBPATTERNBRUSHPT","features":[314]},{"name":"EMR_CREATEMONOBRUSH","features":[314]},{"name":"EMR_CREATEPALETTE","features":[314]},{"name":"EMR_CREATEPEN","features":[314]},{"name":"EMR_DELETECOLORSPACE","features":[314]},{"name":"EMR_DELETEOBJECT","features":[314]},{"name":"EMR_ELLIPSE","features":[314]},{"name":"EMR_ENDPATH","features":[314]},{"name":"EMR_EOF","features":[314]},{"name":"EMR_EXCLUDECLIPRECT","features":[314]},{"name":"EMR_EXTCREATEFONTINDIRECTW","features":[314]},{"name":"EMR_EXTCREATEPEN","features":[314]},{"name":"EMR_EXTFLOODFILL","features":[314]},{"name":"EMR_EXTSELECTCLIPRGN","features":[314]},{"name":"EMR_EXTTEXTOUTA","features":[314]},{"name":"EMR_EXTTEXTOUTW","features":[314]},{"name":"EMR_FILLPATH","features":[314]},{"name":"EMR_FILLRGN","features":[314]},{"name":"EMR_FLATTENPATH","features":[314]},{"name":"EMR_FRAMERGN","features":[314]},{"name":"EMR_GDICOMMENT","features":[314]},{"name":"EMR_GLSBOUNDEDRECORD","features":[314]},{"name":"EMR_GLSRECORD","features":[314]},{"name":"EMR_GRADIENTFILL","features":[314]},{"name":"EMR_HEADER","features":[314]},{"name":"EMR_INTERSECTCLIPRECT","features":[314]},{"name":"EMR_INVERTRGN","features":[314]},{"name":"EMR_LINETO","features":[314]},{"name":"EMR_MASKBLT","features":[314]},{"name":"EMR_MAX","features":[314]},{"name":"EMR_MIN","features":[314]},{"name":"EMR_MODIFYWORLDTRANSFORM","features":[314]},{"name":"EMR_MOVETOEX","features":[314]},{"name":"EMR_OFFSETCLIPRGN","features":[314]},{"name":"EMR_PAINTRGN","features":[314]},{"name":"EMR_PIE","features":[314]},{"name":"EMR_PIXELFORMAT","features":[314]},{"name":"EMR_PLGBLT","features":[314]},{"name":"EMR_POLYBEZIER","features":[314]},{"name":"EMR_POLYBEZIER16","features":[314]},{"name":"EMR_POLYBEZIERTO","features":[314]},{"name":"EMR_POLYBEZIERTO16","features":[314]},{"name":"EMR_POLYDRAW","features":[314]},{"name":"EMR_POLYDRAW16","features":[314]},{"name":"EMR_POLYGON","features":[314]},{"name":"EMR_POLYGON16","features":[314]},{"name":"EMR_POLYLINE","features":[314]},{"name":"EMR_POLYLINE16","features":[314]},{"name":"EMR_POLYLINETO","features":[314]},{"name":"EMR_POLYLINETO16","features":[314]},{"name":"EMR_POLYPOLYGON","features":[314]},{"name":"EMR_POLYPOLYGON16","features":[314]},{"name":"EMR_POLYPOLYLINE","features":[314]},{"name":"EMR_POLYPOLYLINE16","features":[314]},{"name":"EMR_POLYTEXTOUTA","features":[314]},{"name":"EMR_POLYTEXTOUTW","features":[314]},{"name":"EMR_REALIZEPALETTE","features":[314]},{"name":"EMR_RECTANGLE","features":[314]},{"name":"EMR_RESERVED_105","features":[314]},{"name":"EMR_RESERVED_106","features":[314]},{"name":"EMR_RESERVED_107","features":[314]},{"name":"EMR_RESERVED_108","features":[314]},{"name":"EMR_RESERVED_109","features":[314]},{"name":"EMR_RESERVED_110","features":[314]},{"name":"EMR_RESERVED_117","features":[314]},{"name":"EMR_RESERVED_119","features":[314]},{"name":"EMR_RESERVED_120","features":[314]},{"name":"EMR_RESIZEPALETTE","features":[314]},{"name":"EMR_RESTOREDC","features":[314]},{"name":"EMR_ROUNDRECT","features":[314]},{"name":"EMR_SAVEDC","features":[314]},{"name":"EMR_SCALEVIEWPORTEXTEX","features":[314]},{"name":"EMR_SCALEWINDOWEXTEX","features":[314]},{"name":"EMR_SELECTCLIPPATH","features":[314]},{"name":"EMR_SELECTOBJECT","features":[314]},{"name":"EMR_SELECTPALETTE","features":[314]},{"name":"EMR_SETARCDIRECTION","features":[314]},{"name":"EMR_SETBKCOLOR","features":[314]},{"name":"EMR_SETBKMODE","features":[314]},{"name":"EMR_SETBRUSHORGEX","features":[314]},{"name":"EMR_SETCOLORADJUSTMENT","features":[314]},{"name":"EMR_SETCOLORSPACE","features":[314]},{"name":"EMR_SETDIBITSTODEVICE","features":[314]},{"name":"EMR_SETICMMODE","features":[314]},{"name":"EMR_SETICMPROFILEA","features":[314]},{"name":"EMR_SETICMPROFILEW","features":[314]},{"name":"EMR_SETLAYOUT","features":[314]},{"name":"EMR_SETMAPMODE","features":[314]},{"name":"EMR_SETMAPPERFLAGS","features":[314]},{"name":"EMR_SETMETARGN","features":[314]},{"name":"EMR_SETMITERLIMIT","features":[314]},{"name":"EMR_SETPALETTEENTRIES","features":[314]},{"name":"EMR_SETPIXELV","features":[314]},{"name":"EMR_SETPOLYFILLMODE","features":[314]},{"name":"EMR_SETROP2","features":[314]},{"name":"EMR_SETSTRETCHBLTMODE","features":[314]},{"name":"EMR_SETTEXTALIGN","features":[314]},{"name":"EMR_SETTEXTCOLOR","features":[314]},{"name":"EMR_SETVIEWPORTEXTEX","features":[314]},{"name":"EMR_SETVIEWPORTORGEX","features":[314]},{"name":"EMR_SETWINDOWEXTEX","features":[314]},{"name":"EMR_SETWINDOWORGEX","features":[314]},{"name":"EMR_SETWORLDTRANSFORM","features":[314]},{"name":"EMR_STRETCHBLT","features":[314]},{"name":"EMR_STRETCHDIBITS","features":[314]},{"name":"EMR_STROKEANDFILLPATH","features":[314]},{"name":"EMR_STROKEPATH","features":[314]},{"name":"EMR_TRANSPARENTBLT","features":[314]},{"name":"EMR_WIDENPATH","features":[314]},{"name":"ENABLEDUPLEX","features":[314]},{"name":"ENABLEPAIRKERNING","features":[314]},{"name":"ENABLERELATIVEWIDTHS","features":[314]},{"name":"ENCAPSULATED_POSTSCRIPT","features":[314]},{"name":"ENDDOC","features":[314]},{"name":"END_PATH","features":[314]},{"name":"ENHANCED_METAFILE_RECORD_TYPE","features":[314]},{"name":"ENHMETAHEADER","features":[303,314]},{"name":"ENHMETARECORD","features":[314]},{"name":"ENHMETA_SIGNATURE","features":[314]},{"name":"ENHMETA_STOCK_OBJECT","features":[314]},{"name":"ENHMFENUMPROC","features":[303,314]},{"name":"ENUMLOGFONTA","features":[314]},{"name":"ENUMLOGFONTEXA","features":[314]},{"name":"ENUMLOGFONTEXDVA","features":[314]},{"name":"ENUMLOGFONTEXDVW","features":[314]},{"name":"ENUMLOGFONTEXW","features":[314]},{"name":"ENUMLOGFONTW","features":[314]},{"name":"ENUMPAPERBINS","features":[314]},{"name":"ENUMPAPERMETRICS","features":[314]},{"name":"ENUM_CURRENT_SETTINGS","features":[314]},{"name":"ENUM_DISPLAY_SETTINGS_FLAGS","features":[314]},{"name":"ENUM_DISPLAY_SETTINGS_MODE","features":[314]},{"name":"ENUM_REGISTRY_SETTINGS","features":[314]},{"name":"EPSPRINTING","features":[314]},{"name":"EPS_SIGNATURE","features":[314]},{"name":"ERROR","features":[314]},{"name":"ERR_FORMAT","features":[314]},{"name":"ERR_GENERIC","features":[314]},{"name":"ERR_INVALID_BASE","features":[314]},{"name":"ERR_INVALID_CMAP","features":[314]},{"name":"ERR_INVALID_DELTA_FORMAT","features":[314]},{"name":"ERR_INVALID_EBLC","features":[314]},{"name":"ERR_INVALID_GDEF","features":[314]},{"name":"ERR_INVALID_GLYF","features":[314]},{"name":"ERR_INVALID_GPOS","features":[314]},{"name":"ERR_INVALID_GSUB","features":[314]},{"name":"ERR_INVALID_HDMX","features":[314]},{"name":"ERR_INVALID_HEAD","features":[314]},{"name":"ERR_INVALID_HHEA","features":[314]},{"name":"ERR_INVALID_HHEA_OR_VHEA","features":[314]},{"name":"ERR_INVALID_HMTX","features":[314]},{"name":"ERR_INVALID_HMTX_OR_VMTX","features":[314]},{"name":"ERR_INVALID_JSTF","features":[314]},{"name":"ERR_INVALID_LOCA","features":[314]},{"name":"ERR_INVALID_LTSH","features":[314]},{"name":"ERR_INVALID_MAXP","features":[314]},{"name":"ERR_INVALID_MERGE_CHECKSUMS","features":[314]},{"name":"ERR_INVALID_MERGE_FORMATS","features":[314]},{"name":"ERR_INVALID_MERGE_NUMGLYPHS","features":[314]},{"name":"ERR_INVALID_NAME","features":[314]},{"name":"ERR_INVALID_OS2","features":[314]},{"name":"ERR_INVALID_POST","features":[314]},{"name":"ERR_INVALID_TTC_INDEX","features":[314]},{"name":"ERR_INVALID_TTO","features":[314]},{"name":"ERR_INVALID_VDMX","features":[314]},{"name":"ERR_INVALID_VHEA","features":[314]},{"name":"ERR_INVALID_VMTX","features":[314]},{"name":"ERR_MEM","features":[314]},{"name":"ERR_MISSING_CMAP","features":[314]},{"name":"ERR_MISSING_EBDT","features":[314]},{"name":"ERR_MISSING_GLYF","features":[314]},{"name":"ERR_MISSING_HEAD","features":[314]},{"name":"ERR_MISSING_HHEA","features":[314]},{"name":"ERR_MISSING_HHEA_OR_VHEA","features":[314]},{"name":"ERR_MISSING_HMTX","features":[314]},{"name":"ERR_MISSING_HMTX_OR_VMTX","features":[314]},{"name":"ERR_MISSING_LOCA","features":[314]},{"name":"ERR_MISSING_MAXP","features":[314]},{"name":"ERR_MISSING_NAME","features":[314]},{"name":"ERR_MISSING_OS2","features":[314]},{"name":"ERR_MISSING_POST","features":[314]},{"name":"ERR_MISSING_VHEA","features":[314]},{"name":"ERR_MISSING_VMTX","features":[314]},{"name":"ERR_NOT_TTC","features":[314]},{"name":"ERR_NO_GLYPHS","features":[314]},{"name":"ERR_PARAMETER0","features":[314]},{"name":"ERR_PARAMETER1","features":[314]},{"name":"ERR_PARAMETER10","features":[314]},{"name":"ERR_PARAMETER11","features":[314]},{"name":"ERR_PARAMETER12","features":[314]},{"name":"ERR_PARAMETER13","features":[314]},{"name":"ERR_PARAMETER14","features":[314]},{"name":"ERR_PARAMETER15","features":[314]},{"name":"ERR_PARAMETER16","features":[314]},{"name":"ERR_PARAMETER2","features":[314]},{"name":"ERR_PARAMETER3","features":[314]},{"name":"ERR_PARAMETER4","features":[314]},{"name":"ERR_PARAMETER5","features":[314]},{"name":"ERR_PARAMETER6","features":[314]},{"name":"ERR_PARAMETER7","features":[314]},{"name":"ERR_PARAMETER8","features":[314]},{"name":"ERR_PARAMETER9","features":[314]},{"name":"ERR_READCONTROL","features":[314]},{"name":"ERR_READOUTOFBOUNDS","features":[314]},{"name":"ERR_VERSION","features":[314]},{"name":"ERR_WOULD_GROW","features":[314]},{"name":"ERR_WRITECONTROL","features":[314]},{"name":"ERR_WRITEOUTOFBOUNDS","features":[314]},{"name":"ETO_CLIPPED","features":[314]},{"name":"ETO_GLYPH_INDEX","features":[314]},{"name":"ETO_IGNORELANGUAGE","features":[314]},{"name":"ETO_NUMERICSLATIN","features":[314]},{"name":"ETO_NUMERICSLOCAL","features":[314]},{"name":"ETO_OPAQUE","features":[314]},{"name":"ETO_OPTIONS","features":[314]},{"name":"ETO_PDY","features":[314]},{"name":"ETO_REVERSE_INDEX_MAP","features":[314]},{"name":"ETO_RTLREADING","features":[314]},{"name":"EXTLOGFONTA","features":[314]},{"name":"EXTLOGFONTW","features":[314]},{"name":"EXTLOGPEN","features":[303,314]},{"name":"EXTLOGPEN32","features":[303,314]},{"name":"EXTTEXTOUT","features":[314]},{"name":"EXT_DEVICE_CAPS","features":[314]},{"name":"EXT_FLOOD_FILL_TYPE","features":[314]},{"name":"E_ADDFONTFAILED","features":[314]},{"name":"E_API_NOTIMPL","features":[314]},{"name":"E_CHARCODECOUNTINVALID","features":[314]},{"name":"E_CHARCODESETINVALID","features":[314]},{"name":"E_CHARSETINVALID","features":[314]},{"name":"E_COULDNTCREATETEMPFILE","features":[314]},{"name":"E_DEVICETRUETYPEFONT","features":[314]},{"name":"E_ERRORACCESSINGEXCLUDELIST","features":[314]},{"name":"E_ERRORACCESSINGFACENAME","features":[314]},{"name":"E_ERRORACCESSINGFONTDATA","features":[314]},{"name":"E_ERRORCOMPRESSINGFONTDATA","features":[314]},{"name":"E_ERRORCONVERTINGCHARS","features":[314]},{"name":"E_ERRORCREATINGFONTFILE","features":[314]},{"name":"E_ERRORDECOMPRESSINGFONTDATA","features":[314]},{"name":"E_ERROREXPANDINGFONTDATA","features":[314]},{"name":"E_ERRORGETTINGDC","features":[314]},{"name":"E_ERRORREADINGFONTDATA","features":[314]},{"name":"E_ERRORUNICODECONVERSION","features":[314]},{"name":"E_EXCEPTION","features":[314]},{"name":"E_EXCEPTIONINCOMPRESSION","features":[314]},{"name":"E_EXCEPTIONINDECOMPRESSION","features":[314]},{"name":"E_FACENAMEINVALID","features":[314]},{"name":"E_FILE_NOT_FOUND","features":[314]},{"name":"E_FLAGSINVALID","features":[314]},{"name":"E_FONTALREADYEXISTS","features":[314]},{"name":"E_FONTDATAINVALID","features":[314]},{"name":"E_FONTFAMILYNAMENOTINFULL","features":[314]},{"name":"E_FONTFILECREATEFAILED","features":[314]},{"name":"E_FONTFILENOTFOUND","features":[314]},{"name":"E_FONTINSTALLFAILED","features":[314]},{"name":"E_FONTNAMEALREADYEXISTS","features":[314]},{"name":"E_FONTNOTEMBEDDABLE","features":[314]},{"name":"E_FONTREFERENCEINVALID","features":[314]},{"name":"E_FONTVARIATIONSIMULATED","features":[314]},{"name":"E_HDCINVALID","features":[314]},{"name":"E_INPUTPARAMINVALID","features":[314]},{"name":"E_NAMECHANGEFAILED","features":[314]},{"name":"E_NOFREEMEMORY","features":[314]},{"name":"E_NONE","features":[314]},{"name":"E_NOOS2","features":[314]},{"name":"E_NOTATRUETYPEFONT","features":[314]},{"name":"E_PBENABLEDINVALID","features":[314]},{"name":"E_PERMISSIONSINVALID","features":[314]},{"name":"E_PRIVSINVALID","features":[314]},{"name":"E_PRIVSTATUSINVALID","features":[314]},{"name":"E_READFROMSTREAMFAILED","features":[314]},{"name":"E_RESERVEDPARAMNOTNULL","features":[314]},{"name":"E_RESOURCEFILECREATEFAILED","features":[314]},{"name":"E_SAVETOSTREAMFAILED","features":[314]},{"name":"E_STATUSINVALID","features":[314]},{"name":"E_STREAMINVALID","features":[314]},{"name":"E_SUBSETTINGEXCEPTION","features":[314]},{"name":"E_SUBSETTINGFAILED","features":[314]},{"name":"E_SUBSTRING_TEST_FAIL","features":[314]},{"name":"E_T2NOFREEMEMORY","features":[314]},{"name":"E_TTC_INDEX_OUT_OF_RANGE","features":[314]},{"name":"E_WINDOWSAPI","features":[314]},{"name":"Ellipse","features":[303,314]},{"name":"EndPaint","features":[303,314]},{"name":"EndPath","features":[303,314]},{"name":"EnumDisplayDevicesA","features":[303,314]},{"name":"EnumDisplayDevicesW","features":[303,314]},{"name":"EnumDisplayMonitors","features":[303,314]},{"name":"EnumDisplaySettingsA","features":[303,314]},{"name":"EnumDisplaySettingsExA","features":[303,314]},{"name":"EnumDisplaySettingsExW","features":[303,314]},{"name":"EnumDisplaySettingsW","features":[303,314]},{"name":"EnumEnhMetaFile","features":[303,314]},{"name":"EnumFontFamiliesA","features":[303,314]},{"name":"EnumFontFamiliesExA","features":[303,314]},{"name":"EnumFontFamiliesExW","features":[303,314]},{"name":"EnumFontFamiliesW","features":[303,314]},{"name":"EnumFontsA","features":[303,314]},{"name":"EnumFontsW","features":[303,314]},{"name":"EnumMetaFile","features":[303,314]},{"name":"EnumObjects","features":[303,314]},{"name":"EqualRect","features":[303,314]},{"name":"EqualRgn","features":[303,314]},{"name":"ExcludeClipRect","features":[314]},{"name":"ExcludeUpdateRgn","features":[303,314]},{"name":"ExtCreatePen","features":[303,314]},{"name":"ExtCreateRegion","features":[303,314]},{"name":"ExtFloodFill","features":[303,314]},{"name":"ExtSelectClipRgn","features":[314]},{"name":"ExtTextOutA","features":[303,314]},{"name":"ExtTextOutW","features":[303,314]},{"name":"FEATURESETTING_CUSTPAPER","features":[314]},{"name":"FEATURESETTING_MIRROR","features":[314]},{"name":"FEATURESETTING_NEGATIVE","features":[314]},{"name":"FEATURESETTING_NUP","features":[314]},{"name":"FEATURESETTING_OUTPUT","features":[314]},{"name":"FEATURESETTING_PRIVATE_BEGIN","features":[314]},{"name":"FEATURESETTING_PRIVATE_END","features":[314]},{"name":"FEATURESETTING_PROTOCOL","features":[314]},{"name":"FEATURESETTING_PSLEVEL","features":[314]},{"name":"FF_DECORATIVE","features":[314]},{"name":"FF_DONTCARE","features":[314]},{"name":"FF_MODERN","features":[314]},{"name":"FF_ROMAN","features":[314]},{"name":"FF_SCRIPT","features":[314]},{"name":"FF_SWISS","features":[314]},{"name":"FIXED","features":[314]},{"name":"FIXED_PITCH","features":[314]},{"name":"FLI_GLYPHS","features":[314]},{"name":"FLI_MASK","features":[314]},{"name":"FLOODFILLBORDER","features":[314]},{"name":"FLOODFILLSURFACE","features":[314]},{"name":"FLUSHOUTPUT","features":[314]},{"name":"FONTENUMPROCA","features":[303,314]},{"name":"FONTENUMPROCW","features":[303,314]},{"name":"FONTMAPPER_MAX","features":[314]},{"name":"FONT_CHARSET","features":[314]},{"name":"FONT_CLIP_PRECISION","features":[314]},{"name":"FONT_FAMILY","features":[314]},{"name":"FONT_LICENSE_PRIVS","features":[314]},{"name":"FONT_OUTPUT_PRECISION","features":[314]},{"name":"FONT_PITCH","features":[314]},{"name":"FONT_QUALITY","features":[314]},{"name":"FONT_RESOURCE_CHARACTERISTICS","features":[314]},{"name":"FONT_WEIGHT","features":[314]},{"name":"FR_NOT_ENUM","features":[314]},{"name":"FR_PRIVATE","features":[314]},{"name":"FS_ARABIC","features":[314]},{"name":"FS_BALTIC","features":[314]},{"name":"FS_CHINESESIMP","features":[314]},{"name":"FS_CHINESETRAD","features":[314]},{"name":"FS_CYRILLIC","features":[314]},{"name":"FS_GREEK","features":[314]},{"name":"FS_HEBREW","features":[314]},{"name":"FS_JISJAPAN","features":[314]},{"name":"FS_JOHAB","features":[314]},{"name":"FS_LATIN1","features":[314]},{"name":"FS_LATIN2","features":[314]},{"name":"FS_SYMBOL","features":[314]},{"name":"FS_THAI","features":[314]},{"name":"FS_TURKISH","features":[314]},{"name":"FS_VIETNAMESE","features":[314]},{"name":"FS_WANSUNG","features":[314]},{"name":"FW_BLACK","features":[314]},{"name":"FW_BOLD","features":[314]},{"name":"FW_DEMIBOLD","features":[314]},{"name":"FW_DONTCARE","features":[314]},{"name":"FW_EXTRABOLD","features":[314]},{"name":"FW_EXTRALIGHT","features":[314]},{"name":"FW_HEAVY","features":[314]},{"name":"FW_LIGHT","features":[314]},{"name":"FW_MEDIUM","features":[314]},{"name":"FW_NORMAL","features":[314]},{"name":"FW_REGULAR","features":[314]},{"name":"FW_SEMIBOLD","features":[314]},{"name":"FW_THIN","features":[314]},{"name":"FW_ULTRABOLD","features":[314]},{"name":"FW_ULTRALIGHT","features":[314]},{"name":"FillPath","features":[303,314]},{"name":"FillRect","features":[303,314]},{"name":"FillRgn","features":[303,314]},{"name":"FixBrushOrgEx","features":[303,314]},{"name":"FlattenPath","features":[303,314]},{"name":"FloodFill","features":[303,314]},{"name":"FrameRect","features":[303,314]},{"name":"FrameRgn","features":[303,314]},{"name":"GB2312_CHARSET","features":[314]},{"name":"GCPCLASS_ARABIC","features":[314]},{"name":"GCPCLASS_HEBREW","features":[314]},{"name":"GCPCLASS_LATIN","features":[314]},{"name":"GCPCLASS_LATINNUMBER","features":[314]},{"name":"GCPCLASS_LATINNUMERICSEPARATOR","features":[314]},{"name":"GCPCLASS_LATINNUMERICTERMINATOR","features":[314]},{"name":"GCPCLASS_LOCALNUMBER","features":[314]},{"name":"GCPCLASS_NEUTRAL","features":[314]},{"name":"GCPCLASS_NUMERICSEPARATOR","features":[314]},{"name":"GCPCLASS_POSTBOUNDLTR","features":[314]},{"name":"GCPCLASS_POSTBOUNDRTL","features":[314]},{"name":"GCPCLASS_PREBOUNDLTR","features":[314]},{"name":"GCPCLASS_PREBOUNDRTL","features":[314]},{"name":"GCPGLYPH_LINKAFTER","features":[314]},{"name":"GCPGLYPH_LINKBEFORE","features":[314]},{"name":"GCP_CLASSIN","features":[314]},{"name":"GCP_DBCS","features":[314]},{"name":"GCP_DIACRITIC","features":[314]},{"name":"GCP_DISPLAYZWG","features":[314]},{"name":"GCP_ERROR","features":[314]},{"name":"GCP_GLYPHSHAPE","features":[314]},{"name":"GCP_JUSTIFY","features":[314]},{"name":"GCP_JUSTIFYIN","features":[314]},{"name":"GCP_KASHIDA","features":[314]},{"name":"GCP_LIGATE","features":[314]},{"name":"GCP_MAXEXTENT","features":[314]},{"name":"GCP_NEUTRALOVERRIDE","features":[314]},{"name":"GCP_NUMERICOVERRIDE","features":[314]},{"name":"GCP_NUMERICSLATIN","features":[314]},{"name":"GCP_NUMERICSLOCAL","features":[314]},{"name":"GCP_REORDER","features":[314]},{"name":"GCP_RESULTSA","features":[314]},{"name":"GCP_RESULTSW","features":[314]},{"name":"GCP_SYMSWAPOFF","features":[314]},{"name":"GCP_USEKERNING","features":[314]},{"name":"GDICOMMENT_BEGINGROUP","features":[314]},{"name":"GDICOMMENT_ENDGROUP","features":[314]},{"name":"GDICOMMENT_IDENTIFIER","features":[314]},{"name":"GDICOMMENT_MULTIFORMATS","features":[314]},{"name":"GDICOMMENT_UNICODE_END","features":[314]},{"name":"GDICOMMENT_UNICODE_STRING","features":[314]},{"name":"GDICOMMENT_WINDOWS_METAFILE","features":[314]},{"name":"GDIPLUS_TS_QUERYVER","features":[314]},{"name":"GDIPLUS_TS_RECORD","features":[314]},{"name":"GDIREGISTERDDRAWPACKETVERSION","features":[314]},{"name":"GDI_ERROR","features":[314]},{"name":"GDI_REGION_TYPE","features":[314]},{"name":"GETCOLORTABLE","features":[314]},{"name":"GETDEVICEUNITS","features":[314]},{"name":"GETEXTENDEDTEXTMETRICS","features":[314]},{"name":"GETEXTENTTABLE","features":[314]},{"name":"GETFACENAME","features":[314]},{"name":"GETPAIRKERNTABLE","features":[314]},{"name":"GETPENWIDTH","features":[314]},{"name":"GETPHYSPAGESIZE","features":[314]},{"name":"GETPRINTINGOFFSET","features":[314]},{"name":"GETSCALINGFACTOR","features":[314]},{"name":"GETSETPAPERBINS","features":[314]},{"name":"GETSETPAPERMETRICS","features":[314]},{"name":"GETSETPRINTORIENT","features":[314]},{"name":"GETSETSCREENPARAMS","features":[314]},{"name":"GETTECHNOLGY","features":[314]},{"name":"GETTECHNOLOGY","features":[314]},{"name":"GETTRACKKERNTABLE","features":[314]},{"name":"GETVECTORBRUSHSIZE","features":[314]},{"name":"GETVECTORPENSIZE","features":[314]},{"name":"GET_CHARACTER_PLACEMENT_FLAGS","features":[314]},{"name":"GET_DCX_FLAGS","features":[314]},{"name":"GET_DEVICE_CAPS_INDEX","features":[314]},{"name":"GET_GLYPH_OUTLINE_FORMAT","features":[314]},{"name":"GET_PS_FEATURESETTING","features":[314]},{"name":"GET_STOCK_OBJECT_FLAGS","features":[314]},{"name":"GGI_MARK_NONEXISTING_GLYPHS","features":[314]},{"name":"GGO_BEZIER","features":[314]},{"name":"GGO_BITMAP","features":[314]},{"name":"GGO_GLYPH_INDEX","features":[314]},{"name":"GGO_GRAY2_BITMAP","features":[314]},{"name":"GGO_GRAY4_BITMAP","features":[314]},{"name":"GGO_GRAY8_BITMAP","features":[314]},{"name":"GGO_METRICS","features":[314]},{"name":"GGO_NATIVE","features":[314]},{"name":"GGO_UNHINTED","features":[314]},{"name":"GLYPHMETRICS","features":[303,314]},{"name":"GLYPHSET","features":[314]},{"name":"GM_ADVANCED","features":[314]},{"name":"GM_COMPATIBLE","features":[314]},{"name":"GM_LAST","features":[314]},{"name":"GOBJENUMPROC","features":[303,314]},{"name":"GRADIENT_FILL","features":[314]},{"name":"GRADIENT_FILL_OP_FLAG","features":[314]},{"name":"GRADIENT_FILL_RECT_H","features":[314]},{"name":"GRADIENT_FILL_RECT_V","features":[314]},{"name":"GRADIENT_FILL_TRIANGLE","features":[314]},{"name":"GRADIENT_RECT","features":[314]},{"name":"GRADIENT_TRIANGLE","features":[314]},{"name":"GRAPHICS_MODE","features":[314]},{"name":"GRAYSTRINGPROC","features":[303,314]},{"name":"GRAY_BRUSH","features":[314]},{"name":"GREEK_CHARSET","features":[314]},{"name":"GS_8BIT_INDICES","features":[314]},{"name":"GdiAlphaBlend","features":[303,314]},{"name":"GdiComment","features":[303,314]},{"name":"GdiFlush","features":[303,314]},{"name":"GdiGetBatchLimit","features":[314]},{"name":"GdiGradientFill","features":[303,314]},{"name":"GdiSetBatchLimit","features":[314]},{"name":"GdiTransparentBlt","features":[303,314]},{"name":"GetArcDirection","features":[314]},{"name":"GetAspectRatioFilterEx","features":[303,314]},{"name":"GetBitmapBits","features":[314]},{"name":"GetBitmapDimensionEx","features":[303,314]},{"name":"GetBkColor","features":[303,314]},{"name":"GetBkMode","features":[314]},{"name":"GetBoundsRect","features":[303,314]},{"name":"GetBrushOrgEx","features":[303,314]},{"name":"GetCharABCWidthsA","features":[303,314]},{"name":"GetCharABCWidthsFloatA","features":[303,314]},{"name":"GetCharABCWidthsFloatW","features":[303,314]},{"name":"GetCharABCWidthsI","features":[303,314]},{"name":"GetCharABCWidthsW","features":[303,314]},{"name":"GetCharWidth32A","features":[303,314]},{"name":"GetCharWidth32W","features":[303,314]},{"name":"GetCharWidthA","features":[303,314]},{"name":"GetCharWidthFloatA","features":[303,314]},{"name":"GetCharWidthFloatW","features":[303,314]},{"name":"GetCharWidthI","features":[303,314]},{"name":"GetCharWidthW","features":[303,314]},{"name":"GetCharacterPlacementA","features":[314]},{"name":"GetCharacterPlacementW","features":[314]},{"name":"GetClipBox","features":[303,314]},{"name":"GetClipRgn","features":[314]},{"name":"GetColorAdjustment","features":[303,314]},{"name":"GetCurrentObject","features":[314]},{"name":"GetCurrentPositionEx","features":[303,314]},{"name":"GetDC","features":[303,314]},{"name":"GetDCBrushColor","features":[303,314]},{"name":"GetDCEx","features":[303,314]},{"name":"GetDCOrgEx","features":[303,314]},{"name":"GetDCPenColor","features":[303,314]},{"name":"GetDIBColorTable","features":[314]},{"name":"GetDIBits","features":[314]},{"name":"GetDeviceCaps","features":[314]},{"name":"GetEnhMetaFileA","features":[314]},{"name":"GetEnhMetaFileBits","features":[314]},{"name":"GetEnhMetaFileDescriptionA","features":[314]},{"name":"GetEnhMetaFileDescriptionW","features":[314]},{"name":"GetEnhMetaFileHeader","features":[303,314]},{"name":"GetEnhMetaFilePaletteEntries","features":[314]},{"name":"GetEnhMetaFileW","features":[314]},{"name":"GetFontData","features":[314]},{"name":"GetFontLanguageInfo","features":[314]},{"name":"GetFontUnicodeRanges","features":[314]},{"name":"GetGlyphIndicesA","features":[314]},{"name":"GetGlyphIndicesW","features":[314]},{"name":"GetGlyphOutlineA","features":[303,314]},{"name":"GetGlyphOutlineW","features":[303,314]},{"name":"GetGraphicsMode","features":[314]},{"name":"GetKerningPairsA","features":[314]},{"name":"GetKerningPairsW","features":[314]},{"name":"GetLayout","features":[314]},{"name":"GetMapMode","features":[314]},{"name":"GetMetaFileA","features":[314]},{"name":"GetMetaFileBitsEx","features":[314]},{"name":"GetMetaFileW","features":[314]},{"name":"GetMetaRgn","features":[314]},{"name":"GetMiterLimit","features":[303,314]},{"name":"GetMonitorInfoA","features":[303,314]},{"name":"GetMonitorInfoW","features":[303,314]},{"name":"GetNearestColor","features":[303,314]},{"name":"GetNearestPaletteIndex","features":[303,314]},{"name":"GetObjectA","features":[314]},{"name":"GetObjectType","features":[314]},{"name":"GetObjectW","features":[314]},{"name":"GetOutlineTextMetricsA","features":[303,314]},{"name":"GetOutlineTextMetricsW","features":[303,314]},{"name":"GetPaletteEntries","features":[314]},{"name":"GetPath","features":[303,314]},{"name":"GetPixel","features":[303,314]},{"name":"GetPolyFillMode","features":[314]},{"name":"GetROP2","features":[314]},{"name":"GetRandomRgn","features":[314]},{"name":"GetRasterizerCaps","features":[303,314]},{"name":"GetRegionData","features":[303,314]},{"name":"GetRgnBox","features":[303,314]},{"name":"GetStockObject","features":[314]},{"name":"GetStretchBltMode","features":[314]},{"name":"GetSysColor","features":[314]},{"name":"GetSysColorBrush","features":[314]},{"name":"GetSystemPaletteEntries","features":[314]},{"name":"GetSystemPaletteUse","features":[314]},{"name":"GetTabbedTextExtentA","features":[314]},{"name":"GetTabbedTextExtentW","features":[314]},{"name":"GetTextAlign","features":[314]},{"name":"GetTextCharacterExtra","features":[314]},{"name":"GetTextColor","features":[303,314]},{"name":"GetTextExtentExPointA","features":[303,314]},{"name":"GetTextExtentExPointI","features":[303,314]},{"name":"GetTextExtentExPointW","features":[303,314]},{"name":"GetTextExtentPoint32A","features":[303,314]},{"name":"GetTextExtentPoint32W","features":[303,314]},{"name":"GetTextExtentPointA","features":[303,314]},{"name":"GetTextExtentPointI","features":[303,314]},{"name":"GetTextExtentPointW","features":[303,314]},{"name":"GetTextFaceA","features":[314]},{"name":"GetTextFaceW","features":[314]},{"name":"GetTextMetricsA","features":[303,314]},{"name":"GetTextMetricsW","features":[303,314]},{"name":"GetUpdateRect","features":[303,314]},{"name":"GetUpdateRgn","features":[303,314]},{"name":"GetViewportExtEx","features":[303,314]},{"name":"GetViewportOrgEx","features":[303,314]},{"name":"GetWinMetaFileBits","features":[314]},{"name":"GetWindowDC","features":[303,314]},{"name":"GetWindowExtEx","features":[303,314]},{"name":"GetWindowOrgEx","features":[303,314]},{"name":"GetWindowRgn","features":[303,314]},{"name":"GetWindowRgnBox","features":[303,314]},{"name":"GetWorldTransform","features":[303,314]},{"name":"GradientFill","features":[303,314]},{"name":"GrayStringA","features":[303,314]},{"name":"GrayStringW","features":[303,314]},{"name":"HALFTONE","features":[314]},{"name":"HANDLETABLE","features":[314]},{"name":"HANGEUL_CHARSET","features":[314]},{"name":"HANGUL_CHARSET","features":[314]},{"name":"HATCH_BRUSH_STYLE","features":[314]},{"name":"HBITMAP","features":[314]},{"name":"HBRUSH","features":[314]},{"name":"HDC","features":[314]},{"name":"HDC_MAP_MODE","features":[314]},{"name":"HEBREW_CHARSET","features":[314]},{"name":"HENHMETAFILE","features":[314]},{"name":"HFONT","features":[314]},{"name":"HGDIOBJ","features":[314]},{"name":"HMETAFILE","features":[314]},{"name":"HMONITOR","features":[314]},{"name":"HOLLOW_BRUSH","features":[314]},{"name":"HORZRES","features":[314]},{"name":"HORZSIZE","features":[314]},{"name":"HPALETTE","features":[314]},{"name":"HPEN","features":[314]},{"name":"HRGN","features":[314]},{"name":"HS_API_MAX","features":[314]},{"name":"HS_BDIAGONAL","features":[314]},{"name":"HS_CROSS","features":[314]},{"name":"HS_DIAGCROSS","features":[314]},{"name":"HS_FDIAGONAL","features":[314]},{"name":"HS_HORIZONTAL","features":[314]},{"name":"HS_VERTICAL","features":[314]},{"name":"ILLUMINANT_A","features":[314]},{"name":"ILLUMINANT_B","features":[314]},{"name":"ILLUMINANT_C","features":[314]},{"name":"ILLUMINANT_D50","features":[314]},{"name":"ILLUMINANT_D55","features":[314]},{"name":"ILLUMINANT_D65","features":[314]},{"name":"ILLUMINANT_D75","features":[314]},{"name":"ILLUMINANT_DAYLIGHT","features":[314]},{"name":"ILLUMINANT_DEVICE_DEFAULT","features":[314]},{"name":"ILLUMINANT_F2","features":[314]},{"name":"ILLUMINANT_FLUORESCENT","features":[314]},{"name":"ILLUMINANT_MAX_INDEX","features":[314]},{"name":"ILLUMINANT_NTSC","features":[314]},{"name":"ILLUMINANT_TUNGSTEN","features":[314]},{"name":"InflateRect","features":[303,314]},{"name":"IntersectClipRect","features":[314]},{"name":"IntersectRect","features":[303,314]},{"name":"InvalidateRect","features":[303,314]},{"name":"InvalidateRgn","features":[303,314]},{"name":"InvertRect","features":[303,314]},{"name":"InvertRgn","features":[303,314]},{"name":"IsRectEmpty","features":[303,314]},{"name":"JOHAB_CHARSET","features":[314]},{"name":"KERNINGPAIR","features":[314]},{"name":"LAYOUT_BITMAPORIENTATIONPRESERVED","features":[314]},{"name":"LAYOUT_BTT","features":[314]},{"name":"LAYOUT_RTL","features":[314]},{"name":"LAYOUT_VBH","features":[314]},{"name":"LCS_GM_ABS_COLORIMETRIC","features":[314]},{"name":"LCS_GM_BUSINESS","features":[314]},{"name":"LCS_GM_GRAPHICS","features":[314]},{"name":"LCS_GM_IMAGES","features":[314]},{"name":"LC_INTERIORS","features":[314]},{"name":"LC_MARKER","features":[314]},{"name":"LC_NONE","features":[314]},{"name":"LC_POLYLINE","features":[314]},{"name":"LC_POLYMARKER","features":[314]},{"name":"LC_STYLED","features":[314]},{"name":"LC_WIDE","features":[314]},{"name":"LC_WIDESTYLED","features":[314]},{"name":"LF_FACESIZE","features":[314]},{"name":"LF_FULLFACESIZE","features":[314]},{"name":"LICENSE_DEFAULT","features":[314]},{"name":"LICENSE_EDITABLE","features":[314]},{"name":"LICENSE_INSTALLABLE","features":[314]},{"name":"LICENSE_NOEMBEDDING","features":[314]},{"name":"LICENSE_PREVIEWPRINT","features":[314]},{"name":"LINECAPS","features":[314]},{"name":"LINEDDAPROC","features":[303,314]},{"name":"LOGBRUSH","features":[303,314]},{"name":"LOGBRUSH32","features":[303,314]},{"name":"LOGFONTA","features":[314]},{"name":"LOGFONTW","features":[314]},{"name":"LOGPALETTE","features":[314]},{"name":"LOGPEN","features":[303,314]},{"name":"LOGPIXELSX","features":[314]},{"name":"LOGPIXELSY","features":[314]},{"name":"LPD_DOUBLEBUFFER","features":[314]},{"name":"LPD_SHARE_ACCUM","features":[314]},{"name":"LPD_SHARE_DEPTH","features":[314]},{"name":"LPD_SHARE_STENCIL","features":[314]},{"name":"LPD_STEREO","features":[314]},{"name":"LPD_SUPPORT_GDI","features":[314]},{"name":"LPD_SUPPORT_OPENGL","features":[314]},{"name":"LPD_SWAP_COPY","features":[314]},{"name":"LPD_SWAP_EXCHANGE","features":[314]},{"name":"LPD_TRANSPARENT","features":[314]},{"name":"LPD_TYPE_COLORINDEX","features":[314]},{"name":"LPD_TYPE_RGBA","features":[314]},{"name":"LPFNDEVCAPS","features":[303,314]},{"name":"LPFNDEVMODE","features":[303,314]},{"name":"LPtoDP","features":[303,314]},{"name":"LTGRAY_BRUSH","features":[314]},{"name":"LineDDA","features":[303,314]},{"name":"LineTo","features":[303,314]},{"name":"LoadBitmapA","features":[303,314]},{"name":"LoadBitmapW","features":[303,314]},{"name":"LockWindowUpdate","features":[303,314]},{"name":"MAC_CHARSET","features":[314]},{"name":"MAT2","features":[314]},{"name":"MAXSTRETCHBLTMODE","features":[314]},{"name":"MERGECOPY","features":[314]},{"name":"MERGEPAINT","features":[314]},{"name":"METAFILE_DRIVER","features":[314]},{"name":"METAHEADER","features":[314]},{"name":"METARECORD","features":[314]},{"name":"META_ANIMATEPALETTE","features":[314]},{"name":"META_ARC","features":[314]},{"name":"META_BITBLT","features":[314]},{"name":"META_CHORD","features":[314]},{"name":"META_CREATEBRUSHINDIRECT","features":[314]},{"name":"META_CREATEFONTINDIRECT","features":[314]},{"name":"META_CREATEPALETTE","features":[314]},{"name":"META_CREATEPATTERNBRUSH","features":[314]},{"name":"META_CREATEPENINDIRECT","features":[314]},{"name":"META_CREATEREGION","features":[314]},{"name":"META_DELETEOBJECT","features":[314]},{"name":"META_DIBBITBLT","features":[314]},{"name":"META_DIBCREATEPATTERNBRUSH","features":[314]},{"name":"META_DIBSTRETCHBLT","features":[314]},{"name":"META_ELLIPSE","features":[314]},{"name":"META_ESCAPE","features":[314]},{"name":"META_EXCLUDECLIPRECT","features":[314]},{"name":"META_EXTFLOODFILL","features":[314]},{"name":"META_EXTTEXTOUT","features":[314]},{"name":"META_FILLREGION","features":[314]},{"name":"META_FLOODFILL","features":[314]},{"name":"META_FRAMEREGION","features":[314]},{"name":"META_INTERSECTCLIPRECT","features":[314]},{"name":"META_INVERTREGION","features":[314]},{"name":"META_LINETO","features":[314]},{"name":"META_MOVETO","features":[314]},{"name":"META_OFFSETCLIPRGN","features":[314]},{"name":"META_OFFSETVIEWPORTORG","features":[314]},{"name":"META_OFFSETWINDOWORG","features":[314]},{"name":"META_PAINTREGION","features":[314]},{"name":"META_PATBLT","features":[314]},{"name":"META_PIE","features":[314]},{"name":"META_POLYGON","features":[314]},{"name":"META_POLYLINE","features":[314]},{"name":"META_POLYPOLYGON","features":[314]},{"name":"META_REALIZEPALETTE","features":[314]},{"name":"META_RECTANGLE","features":[314]},{"name":"META_RESIZEPALETTE","features":[314]},{"name":"META_RESTOREDC","features":[314]},{"name":"META_ROUNDRECT","features":[314]},{"name":"META_SAVEDC","features":[314]},{"name":"META_SCALEVIEWPORTEXT","features":[314]},{"name":"META_SCALEWINDOWEXT","features":[314]},{"name":"META_SELECTCLIPREGION","features":[314]},{"name":"META_SELECTOBJECT","features":[314]},{"name":"META_SELECTPALETTE","features":[314]},{"name":"META_SETBKCOLOR","features":[314]},{"name":"META_SETBKMODE","features":[314]},{"name":"META_SETDIBTODEV","features":[314]},{"name":"META_SETLAYOUT","features":[314]},{"name":"META_SETMAPMODE","features":[314]},{"name":"META_SETMAPPERFLAGS","features":[314]},{"name":"META_SETPALENTRIES","features":[314]},{"name":"META_SETPIXEL","features":[314]},{"name":"META_SETPOLYFILLMODE","features":[314]},{"name":"META_SETRELABS","features":[314]},{"name":"META_SETROP2","features":[314]},{"name":"META_SETSTRETCHBLTMODE","features":[314]},{"name":"META_SETTEXTALIGN","features":[314]},{"name":"META_SETTEXTCHAREXTRA","features":[314]},{"name":"META_SETTEXTCOLOR","features":[314]},{"name":"META_SETTEXTJUSTIFICATION","features":[314]},{"name":"META_SETVIEWPORTEXT","features":[314]},{"name":"META_SETVIEWPORTORG","features":[314]},{"name":"META_SETWINDOWEXT","features":[314]},{"name":"META_SETWINDOWORG","features":[314]},{"name":"META_STRETCHBLT","features":[314]},{"name":"META_STRETCHDIB","features":[314]},{"name":"META_TEXTOUT","features":[314]},{"name":"MFCOMMENT","features":[314]},{"name":"MFENUMPROC","features":[303,314]},{"name":"MILCORE_TS_QUERYVER_RESULT_FALSE","features":[314]},{"name":"MILCORE_TS_QUERYVER_RESULT_TRUE","features":[314]},{"name":"MM_ANISOTROPIC","features":[314]},{"name":"MM_HIENGLISH","features":[314]},{"name":"MM_HIMETRIC","features":[314]},{"name":"MM_ISOTROPIC","features":[314]},{"name":"MM_LOENGLISH","features":[314]},{"name":"MM_LOMETRIC","features":[314]},{"name":"MM_MAX_AXES_NAMELEN","features":[314]},{"name":"MM_MAX_NUMAXES","features":[314]},{"name":"MM_TEXT","features":[314]},{"name":"MM_TWIPS","features":[314]},{"name":"MODIFY_WORLD_TRANSFORM_MODE","features":[314]},{"name":"MONITORENUMPROC","features":[303,314]},{"name":"MONITORINFO","features":[303,314]},{"name":"MONITORINFOEXA","features":[303,314]},{"name":"MONITORINFOEXW","features":[303,314]},{"name":"MONITOR_DEFAULTTONEAREST","features":[314]},{"name":"MONITOR_DEFAULTTONULL","features":[314]},{"name":"MONITOR_DEFAULTTOPRIMARY","features":[314]},{"name":"MONITOR_FROM_FLAGS","features":[314]},{"name":"MONO_FONT","features":[314]},{"name":"MOUSETRAILS","features":[314]},{"name":"MWT_IDENTITY","features":[314]},{"name":"MWT_LEFTMULTIPLY","features":[314]},{"name":"MWT_RIGHTMULTIPLY","features":[314]},{"name":"MapWindowPoints","features":[303,314]},{"name":"MaskBlt","features":[303,314]},{"name":"MergeFontPackage","features":[314]},{"name":"ModifyWorldTransform","features":[303,314]},{"name":"MonitorFromPoint","features":[303,314]},{"name":"MonitorFromRect","features":[303,314]},{"name":"MonitorFromWindow","features":[303,314]},{"name":"MoveToEx","features":[303,314]},{"name":"NEWFRAME","features":[314]},{"name":"NEWTEXTMETRICA","features":[314]},{"name":"NEWTEXTMETRICW","features":[314]},{"name":"NEWTRANSPARENT","features":[314]},{"name":"NEXTBAND","features":[314]},{"name":"NOMIRRORBITMAP","features":[314]},{"name":"NONANTIALIASED_QUALITY","features":[314]},{"name":"NOTSRCCOPY","features":[314]},{"name":"NOTSRCERASE","features":[314]},{"name":"NTM_BOLD","features":[314]},{"name":"NTM_DSIG","features":[314]},{"name":"NTM_ITALIC","features":[314]},{"name":"NTM_MULTIPLEMASTER","features":[314]},{"name":"NTM_NONNEGATIVE_AC","features":[314]},{"name":"NTM_PS_OPENTYPE","features":[314]},{"name":"NTM_REGULAR","features":[314]},{"name":"NTM_TT_OPENTYPE","features":[314]},{"name":"NTM_TYPE1","features":[314]},{"name":"NULLREGION","features":[314]},{"name":"NULL_BRUSH","features":[314]},{"name":"NULL_PEN","features":[314]},{"name":"NUMBRUSHES","features":[314]},{"name":"NUMCOLORS","features":[314]},{"name":"NUMFONTS","features":[314]},{"name":"NUMMARKERS","features":[314]},{"name":"NUMPENS","features":[314]},{"name":"NUMRESERVED","features":[314]},{"name":"OBJ_BITMAP","features":[314]},{"name":"OBJ_BRUSH","features":[314]},{"name":"OBJ_COLORSPACE","features":[314]},{"name":"OBJ_DC","features":[314]},{"name":"OBJ_ENHMETADC","features":[314]},{"name":"OBJ_ENHMETAFILE","features":[314]},{"name":"OBJ_EXTPEN","features":[314]},{"name":"OBJ_FONT","features":[314]},{"name":"OBJ_MEMDC","features":[314]},{"name":"OBJ_METADC","features":[314]},{"name":"OBJ_METAFILE","features":[314]},{"name":"OBJ_PAL","features":[314]},{"name":"OBJ_PEN","features":[314]},{"name":"OBJ_REGION","features":[314]},{"name":"OBJ_TYPE","features":[314]},{"name":"OEM_CHARSET","features":[314]},{"name":"OEM_FIXED_FONT","features":[314]},{"name":"OPAQUE","features":[314]},{"name":"OPENCHANNEL","features":[314]},{"name":"OUTLINETEXTMETRICA","features":[303,314]},{"name":"OUTLINETEXTMETRICW","features":[303,314]},{"name":"OUT_CHARACTER_PRECIS","features":[314]},{"name":"OUT_DEFAULT_PRECIS","features":[314]},{"name":"OUT_DEVICE_PRECIS","features":[314]},{"name":"OUT_OUTLINE_PRECIS","features":[314]},{"name":"OUT_PS_ONLY_PRECIS","features":[314]},{"name":"OUT_RASTER_PRECIS","features":[314]},{"name":"OUT_SCREEN_OUTLINE_PRECIS","features":[314]},{"name":"OUT_STRING_PRECIS","features":[314]},{"name":"OUT_STROKE_PRECIS","features":[314]},{"name":"OUT_TT_ONLY_PRECIS","features":[314]},{"name":"OUT_TT_PRECIS","features":[314]},{"name":"OffsetClipRgn","features":[314]},{"name":"OffsetRect","features":[303,314]},{"name":"OffsetRgn","features":[314]},{"name":"OffsetViewportOrgEx","features":[303,314]},{"name":"OffsetWindowOrgEx","features":[303,314]},{"name":"PAINTSTRUCT","features":[303,314]},{"name":"PALETTEENTRY","features":[314]},{"name":"PANOSE","features":[314]},{"name":"PANOSE_COUNT","features":[314]},{"name":"PAN_ANY","features":[314]},{"name":"PAN_ARMSTYLE_INDEX","features":[314]},{"name":"PAN_ARM_ANY","features":[314]},{"name":"PAN_ARM_NO_FIT","features":[314]},{"name":"PAN_ARM_STYLE","features":[314]},{"name":"PAN_BENT_ARMS_DOUBLE_SERIF","features":[314]},{"name":"PAN_BENT_ARMS_HORZ","features":[314]},{"name":"PAN_BENT_ARMS_SINGLE_SERIF","features":[314]},{"name":"PAN_BENT_ARMS_VERT","features":[314]},{"name":"PAN_BENT_ARMS_WEDGE","features":[314]},{"name":"PAN_CONTRAST","features":[314]},{"name":"PAN_CONTRAST_ANY","features":[314]},{"name":"PAN_CONTRAST_HIGH","features":[314]},{"name":"PAN_CONTRAST_INDEX","features":[314]},{"name":"PAN_CONTRAST_LOW","features":[314]},{"name":"PAN_CONTRAST_MEDIUM","features":[314]},{"name":"PAN_CONTRAST_MEDIUM_HIGH","features":[314]},{"name":"PAN_CONTRAST_MEDIUM_LOW","features":[314]},{"name":"PAN_CONTRAST_NONE","features":[314]},{"name":"PAN_CONTRAST_NO_FIT","features":[314]},{"name":"PAN_CONTRAST_VERY_HIGH","features":[314]},{"name":"PAN_CONTRAST_VERY_LOW","features":[314]},{"name":"PAN_CULTURE_LATIN","features":[314]},{"name":"PAN_FAMILYTYPE_INDEX","features":[314]},{"name":"PAN_FAMILY_ANY","features":[314]},{"name":"PAN_FAMILY_DECORATIVE","features":[314]},{"name":"PAN_FAMILY_NO_FIT","features":[314]},{"name":"PAN_FAMILY_PICTORIAL","features":[314]},{"name":"PAN_FAMILY_SCRIPT","features":[314]},{"name":"PAN_FAMILY_TEXT_DISPLAY","features":[314]},{"name":"PAN_FAMILY_TYPE","features":[314]},{"name":"PAN_LETTERFORM_INDEX","features":[314]},{"name":"PAN_LETT_FORM","features":[314]},{"name":"PAN_LETT_FORM_ANY","features":[314]},{"name":"PAN_LETT_FORM_NO_FIT","features":[314]},{"name":"PAN_LETT_NORMAL_BOXED","features":[314]},{"name":"PAN_LETT_NORMAL_CONTACT","features":[314]},{"name":"PAN_LETT_NORMAL_FLATTENED","features":[314]},{"name":"PAN_LETT_NORMAL_OFF_CENTER","features":[314]},{"name":"PAN_LETT_NORMAL_ROUNDED","features":[314]},{"name":"PAN_LETT_NORMAL_SQUARE","features":[314]},{"name":"PAN_LETT_NORMAL_WEIGHTED","features":[314]},{"name":"PAN_LETT_OBLIQUE_BOXED","features":[314]},{"name":"PAN_LETT_OBLIQUE_CONTACT","features":[314]},{"name":"PAN_LETT_OBLIQUE_FLATTENED","features":[314]},{"name":"PAN_LETT_OBLIQUE_OFF_CENTER","features":[314]},{"name":"PAN_LETT_OBLIQUE_ROUNDED","features":[314]},{"name":"PAN_LETT_OBLIQUE_SQUARE","features":[314]},{"name":"PAN_LETT_OBLIQUE_WEIGHTED","features":[314]},{"name":"PAN_MIDLINE","features":[314]},{"name":"PAN_MIDLINE_ANY","features":[314]},{"name":"PAN_MIDLINE_CONSTANT_POINTED","features":[314]},{"name":"PAN_MIDLINE_CONSTANT_SERIFED","features":[314]},{"name":"PAN_MIDLINE_CONSTANT_TRIMMED","features":[314]},{"name":"PAN_MIDLINE_HIGH_POINTED","features":[314]},{"name":"PAN_MIDLINE_HIGH_SERIFED","features":[314]},{"name":"PAN_MIDLINE_HIGH_TRIMMED","features":[314]},{"name":"PAN_MIDLINE_INDEX","features":[314]},{"name":"PAN_MIDLINE_LOW_POINTED","features":[314]},{"name":"PAN_MIDLINE_LOW_SERIFED","features":[314]},{"name":"PAN_MIDLINE_LOW_TRIMMED","features":[314]},{"name":"PAN_MIDLINE_NO_FIT","features":[314]},{"name":"PAN_MIDLINE_STANDARD_POINTED","features":[314]},{"name":"PAN_MIDLINE_STANDARD_SERIFED","features":[314]},{"name":"PAN_MIDLINE_STANDARD_TRIMMED","features":[314]},{"name":"PAN_NO_FIT","features":[314]},{"name":"PAN_PROPORTION","features":[314]},{"name":"PAN_PROPORTION_INDEX","features":[314]},{"name":"PAN_PROP_ANY","features":[314]},{"name":"PAN_PROP_CONDENSED","features":[314]},{"name":"PAN_PROP_EVEN_WIDTH","features":[314]},{"name":"PAN_PROP_EXPANDED","features":[314]},{"name":"PAN_PROP_MODERN","features":[314]},{"name":"PAN_PROP_MONOSPACED","features":[314]},{"name":"PAN_PROP_NO_FIT","features":[314]},{"name":"PAN_PROP_OLD_STYLE","features":[314]},{"name":"PAN_PROP_VERY_CONDENSED","features":[314]},{"name":"PAN_PROP_VERY_EXPANDED","features":[314]},{"name":"PAN_SERIFSTYLE_INDEX","features":[314]},{"name":"PAN_SERIF_ANY","features":[314]},{"name":"PAN_SERIF_BONE","features":[314]},{"name":"PAN_SERIF_COVE","features":[314]},{"name":"PAN_SERIF_EXAGGERATED","features":[314]},{"name":"PAN_SERIF_FLARED","features":[314]},{"name":"PAN_SERIF_NORMAL_SANS","features":[314]},{"name":"PAN_SERIF_NO_FIT","features":[314]},{"name":"PAN_SERIF_OBTUSE_COVE","features":[314]},{"name":"PAN_SERIF_OBTUSE_SANS","features":[314]},{"name":"PAN_SERIF_OBTUSE_SQUARE_COVE","features":[314]},{"name":"PAN_SERIF_PERP_SANS","features":[314]},{"name":"PAN_SERIF_ROUNDED","features":[314]},{"name":"PAN_SERIF_SQUARE","features":[314]},{"name":"PAN_SERIF_SQUARE_COVE","features":[314]},{"name":"PAN_SERIF_STYLE","features":[314]},{"name":"PAN_SERIF_THIN","features":[314]},{"name":"PAN_SERIF_TRIANGLE","features":[314]},{"name":"PAN_STRAIGHT_ARMS_DOUBLE_SERIF","features":[314]},{"name":"PAN_STRAIGHT_ARMS_HORZ","features":[314]},{"name":"PAN_STRAIGHT_ARMS_SINGLE_SERIF","features":[314]},{"name":"PAN_STRAIGHT_ARMS_VERT","features":[314]},{"name":"PAN_STRAIGHT_ARMS_WEDGE","features":[314]},{"name":"PAN_STROKEVARIATION_INDEX","features":[314]},{"name":"PAN_STROKE_ANY","features":[314]},{"name":"PAN_STROKE_GRADUAL_DIAG","features":[314]},{"name":"PAN_STROKE_GRADUAL_HORZ","features":[314]},{"name":"PAN_STROKE_GRADUAL_TRAN","features":[314]},{"name":"PAN_STROKE_GRADUAL_VERT","features":[314]},{"name":"PAN_STROKE_INSTANT_VERT","features":[314]},{"name":"PAN_STROKE_NO_FIT","features":[314]},{"name":"PAN_STROKE_RAPID_HORZ","features":[314]},{"name":"PAN_STROKE_RAPID_VERT","features":[314]},{"name":"PAN_STROKE_VARIATION","features":[314]},{"name":"PAN_WEIGHT","features":[314]},{"name":"PAN_WEIGHT_ANY","features":[314]},{"name":"PAN_WEIGHT_BLACK","features":[314]},{"name":"PAN_WEIGHT_BOLD","features":[314]},{"name":"PAN_WEIGHT_BOOK","features":[314]},{"name":"PAN_WEIGHT_DEMI","features":[314]},{"name":"PAN_WEIGHT_HEAVY","features":[314]},{"name":"PAN_WEIGHT_INDEX","features":[314]},{"name":"PAN_WEIGHT_LIGHT","features":[314]},{"name":"PAN_WEIGHT_MEDIUM","features":[314]},{"name":"PAN_WEIGHT_NORD","features":[314]},{"name":"PAN_WEIGHT_NO_FIT","features":[314]},{"name":"PAN_WEIGHT_THIN","features":[314]},{"name":"PAN_WEIGHT_VERY_LIGHT","features":[314]},{"name":"PAN_XHEIGHT","features":[314]},{"name":"PAN_XHEIGHT_ANY","features":[314]},{"name":"PAN_XHEIGHT_CONSTANT_LARGE","features":[314]},{"name":"PAN_XHEIGHT_CONSTANT_SMALL","features":[314]},{"name":"PAN_XHEIGHT_CONSTANT_STD","features":[314]},{"name":"PAN_XHEIGHT_DUCKING_LARGE","features":[314]},{"name":"PAN_XHEIGHT_DUCKING_SMALL","features":[314]},{"name":"PAN_XHEIGHT_DUCKING_STD","features":[314]},{"name":"PAN_XHEIGHT_INDEX","features":[314]},{"name":"PAN_XHEIGHT_NO_FIT","features":[314]},{"name":"PASSTHROUGH","features":[314]},{"name":"PATCOPY","features":[314]},{"name":"PATINVERT","features":[314]},{"name":"PATPAINT","features":[314]},{"name":"PC_EXPLICIT","features":[314]},{"name":"PC_INTERIORS","features":[314]},{"name":"PC_NOCOLLAPSE","features":[314]},{"name":"PC_NONE","features":[314]},{"name":"PC_PATHS","features":[314]},{"name":"PC_POLYGON","features":[314]},{"name":"PC_POLYPOLYGON","features":[314]},{"name":"PC_RECTANGLE","features":[314]},{"name":"PC_RESERVED","features":[314]},{"name":"PC_SCANLINE","features":[314]},{"name":"PC_STYLED","features":[314]},{"name":"PC_TRAPEZOID","features":[314]},{"name":"PC_WIDE","features":[314]},{"name":"PC_WIDESTYLED","features":[314]},{"name":"PC_WINDPOLYGON","features":[314]},{"name":"PDEVICESIZE","features":[314]},{"name":"PELARRAY","features":[314]},{"name":"PEN_STYLE","features":[314]},{"name":"PHYSICALHEIGHT","features":[314]},{"name":"PHYSICALOFFSETX","features":[314]},{"name":"PHYSICALOFFSETY","features":[314]},{"name":"PHYSICALWIDTH","features":[314]},{"name":"PLANES","features":[314]},{"name":"POINTFX","features":[314]},{"name":"POLYFILL_LAST","features":[314]},{"name":"POLYGONALCAPS","features":[314]},{"name":"POLYTEXTA","features":[303,314]},{"name":"POLYTEXTW","features":[303,314]},{"name":"POSTSCRIPT_DATA","features":[314]},{"name":"POSTSCRIPT_IDENTIFY","features":[314]},{"name":"POSTSCRIPT_IGNORE","features":[314]},{"name":"POSTSCRIPT_INJECTION","features":[314]},{"name":"POSTSCRIPT_PASSTHROUGH","features":[314]},{"name":"PRINTRATEUNIT_CPS","features":[314]},{"name":"PRINTRATEUNIT_IPM","features":[314]},{"name":"PRINTRATEUNIT_LPM","features":[314]},{"name":"PRINTRATEUNIT_PPM","features":[314]},{"name":"PROOF_QUALITY","features":[314]},{"name":"PR_JOBSTATUS","features":[314]},{"name":"PSIDENT_GDICENTRIC","features":[314]},{"name":"PSIDENT_PSCENTRIC","features":[314]},{"name":"PSINJECT_DLFONT","features":[314]},{"name":"PSPROTOCOL_ASCII","features":[314]},{"name":"PSPROTOCOL_BCP","features":[314]},{"name":"PSPROTOCOL_BINARY","features":[314]},{"name":"PSPROTOCOL_TBCP","features":[314]},{"name":"PS_ALTERNATE","features":[314]},{"name":"PS_COSMETIC","features":[314]},{"name":"PS_DASH","features":[314]},{"name":"PS_DASHDOT","features":[314]},{"name":"PS_DASHDOTDOT","features":[314]},{"name":"PS_DOT","features":[314]},{"name":"PS_ENDCAP_FLAT","features":[314]},{"name":"PS_ENDCAP_MASK","features":[314]},{"name":"PS_ENDCAP_ROUND","features":[314]},{"name":"PS_ENDCAP_SQUARE","features":[314]},{"name":"PS_GEOMETRIC","features":[314]},{"name":"PS_INSIDEFRAME","features":[314]},{"name":"PS_JOIN_BEVEL","features":[314]},{"name":"PS_JOIN_MASK","features":[314]},{"name":"PS_JOIN_MITER","features":[314]},{"name":"PS_JOIN_ROUND","features":[314]},{"name":"PS_NULL","features":[314]},{"name":"PS_SOLID","features":[314]},{"name":"PS_STYLE_MASK","features":[314]},{"name":"PS_TYPE_MASK","features":[314]},{"name":"PS_USERSTYLE","features":[314]},{"name":"PT_BEZIERTO","features":[314]},{"name":"PT_CLOSEFIGURE","features":[314]},{"name":"PT_LINETO","features":[314]},{"name":"PT_MOVETO","features":[314]},{"name":"PaintDesktop","features":[303,314]},{"name":"PaintRgn","features":[303,314]},{"name":"PatBlt","features":[303,314]},{"name":"PathToRegion","features":[314]},{"name":"Pie","features":[303,314]},{"name":"PlayEnhMetaFile","features":[303,314]},{"name":"PlayEnhMetaFileRecord","features":[303,314]},{"name":"PlayMetaFile","features":[303,314]},{"name":"PlayMetaFileRecord","features":[303,314]},{"name":"PlgBlt","features":[303,314]},{"name":"PolyBezier","features":[303,314]},{"name":"PolyBezierTo","features":[303,314]},{"name":"PolyDraw","features":[303,314]},{"name":"PolyPolygon","features":[303,314]},{"name":"PolyPolyline","features":[303,314]},{"name":"PolyTextOutA","features":[303,314]},{"name":"PolyTextOutW","features":[303,314]},{"name":"Polygon","features":[303,314]},{"name":"Polyline","features":[303,314]},{"name":"PolylineTo","features":[303,314]},{"name":"PtInRect","features":[303,314]},{"name":"PtInRegion","features":[303,314]},{"name":"PtVisible","features":[303,314]},{"name":"QDI_DIBTOSCREEN","features":[314]},{"name":"QDI_GETDIBITS","features":[314]},{"name":"QDI_SETDIBITS","features":[314]},{"name":"QDI_STRETCHDIB","features":[314]},{"name":"QUERYDIBSUPPORT","features":[314]},{"name":"QUERYESCSUPPORT","features":[314]},{"name":"QUERYROPSUPPORT","features":[314]},{"name":"R2_BLACK","features":[314]},{"name":"R2_COPYPEN","features":[314]},{"name":"R2_LAST","features":[314]},{"name":"R2_MASKNOTPEN","features":[314]},{"name":"R2_MASKPEN","features":[314]},{"name":"R2_MASKPENNOT","features":[314]},{"name":"R2_MERGENOTPEN","features":[314]},{"name":"R2_MERGEPEN","features":[314]},{"name":"R2_MERGEPENNOT","features":[314]},{"name":"R2_MODE","features":[314]},{"name":"R2_NOP","features":[314]},{"name":"R2_NOT","features":[314]},{"name":"R2_NOTCOPYPEN","features":[314]},{"name":"R2_NOTMASKPEN","features":[314]},{"name":"R2_NOTMERGEPEN","features":[314]},{"name":"R2_NOTXORPEN","features":[314]},{"name":"R2_WHITE","features":[314]},{"name":"R2_XORPEN","features":[314]},{"name":"RASTERCAPS","features":[314]},{"name":"RASTERIZER_STATUS","features":[314]},{"name":"RASTER_FONTTYPE","features":[314]},{"name":"RC_BANDING","features":[314]},{"name":"RC_BIGFONT","features":[314]},{"name":"RC_BITBLT","features":[314]},{"name":"RC_BITMAP64","features":[314]},{"name":"RC_DEVBITS","features":[314]},{"name":"RC_DIBTODEV","features":[314]},{"name":"RC_DI_BITMAP","features":[314]},{"name":"RC_FLOODFILL","features":[314]},{"name":"RC_GDI20_OUTPUT","features":[314]},{"name":"RC_GDI20_STATE","features":[314]},{"name":"RC_OP_DX_OUTPUT","features":[314]},{"name":"RC_PALETTE","features":[314]},{"name":"RC_SAVEBITMAP","features":[314]},{"name":"RC_SCALING","features":[314]},{"name":"RC_STRETCHBLT","features":[314]},{"name":"RC_STRETCHDIB","features":[314]},{"name":"RDH_RECTANGLES","features":[314]},{"name":"RDW_ALLCHILDREN","features":[314]},{"name":"RDW_ERASE","features":[314]},{"name":"RDW_ERASENOW","features":[314]},{"name":"RDW_FRAME","features":[314]},{"name":"RDW_INTERNALPAINT","features":[314]},{"name":"RDW_INVALIDATE","features":[314]},{"name":"RDW_NOCHILDREN","features":[314]},{"name":"RDW_NOERASE","features":[314]},{"name":"RDW_NOFRAME","features":[314]},{"name":"RDW_NOINTERNALPAINT","features":[314]},{"name":"RDW_UPDATENOW","features":[314]},{"name":"RDW_VALIDATE","features":[314]},{"name":"READEMBEDPROC","features":[314]},{"name":"REDRAW_WINDOW_FLAGS","features":[314]},{"name":"RELATIVE","features":[314]},{"name":"RESTORE_CTM","features":[314]},{"name":"RGBQUAD","features":[314]},{"name":"RGBTRIPLE","features":[314]},{"name":"RGNDATA","features":[303,314]},{"name":"RGNDATAHEADER","features":[303,314]},{"name":"RGN_AND","features":[314]},{"name":"RGN_COMBINE_MODE","features":[314]},{"name":"RGN_COPY","features":[314]},{"name":"RGN_DIFF","features":[314]},{"name":"RGN_ERROR","features":[314]},{"name":"RGN_MAX","features":[314]},{"name":"RGN_MIN","features":[314]},{"name":"RGN_OR","features":[314]},{"name":"RGN_XOR","features":[314]},{"name":"ROP_CODE","features":[314]},{"name":"RUSSIAN_CHARSET","features":[314]},{"name":"RealizePalette","features":[314]},{"name":"RectInRegion","features":[303,314]},{"name":"RectVisible","features":[303,314]},{"name":"Rectangle","features":[303,314]},{"name":"RedrawWindow","features":[303,314]},{"name":"ReleaseDC","features":[303,314]},{"name":"RemoveFontMemResourceEx","features":[303,314]},{"name":"RemoveFontResourceA","features":[303,314]},{"name":"RemoveFontResourceExA","features":[303,314]},{"name":"RemoveFontResourceExW","features":[303,314]},{"name":"RemoveFontResourceW","features":[303,314]},{"name":"ResetDCA","features":[303,314]},{"name":"ResetDCW","features":[303,314]},{"name":"ResizePalette","features":[303,314]},{"name":"RestoreDC","features":[303,314]},{"name":"RoundRect","features":[303,314]},{"name":"SAVE_CTM","features":[314]},{"name":"SB_CONST_ALPHA","features":[314]},{"name":"SB_GRAD_RECT","features":[314]},{"name":"SB_GRAD_TRI","features":[314]},{"name":"SB_NONE","features":[314]},{"name":"SB_PIXEL_ALPHA","features":[314]},{"name":"SB_PREMULT_ALPHA","features":[314]},{"name":"SCALINGFACTORX","features":[314]},{"name":"SCALINGFACTORY","features":[314]},{"name":"SC_SCREENSAVE","features":[314]},{"name":"SELECTDIB","features":[314]},{"name":"SELECTPAPERSOURCE","features":[314]},{"name":"SETABORTPROC","features":[314]},{"name":"SETALLJUSTVALUES","features":[314]},{"name":"SETCHARSET","features":[314]},{"name":"SETCOLORTABLE","features":[314]},{"name":"SETCOPYCOUNT","features":[314]},{"name":"SETDIBSCALING","features":[314]},{"name":"SETICMPROFILE_EMBEDED","features":[314]},{"name":"SETKERNTRACK","features":[314]},{"name":"SETLINECAP","features":[314]},{"name":"SETLINEJOIN","features":[314]},{"name":"SETMITERLIMIT","features":[314]},{"name":"SET_ARC_DIRECTION","features":[314]},{"name":"SET_BACKGROUND_COLOR","features":[314]},{"name":"SET_BOUNDS","features":[314]},{"name":"SET_BOUNDS_RECT_FLAGS","features":[314]},{"name":"SET_CLIP_BOX","features":[314]},{"name":"SET_MIRROR_MODE","features":[314]},{"name":"SET_POLY_MODE","features":[314]},{"name":"SET_SCREEN_ANGLE","features":[314]},{"name":"SET_SPREAD","features":[314]},{"name":"SHADEBLENDCAPS","features":[314]},{"name":"SHIFTJIS_CHARSET","features":[314]},{"name":"SIMPLEREGION","features":[314]},{"name":"SIZEPALETTE","features":[314]},{"name":"SPCLPASSTHROUGH2","features":[314]},{"name":"SP_APPABORT","features":[314]},{"name":"SP_ERROR","features":[314]},{"name":"SP_NOTREPORTED","features":[314]},{"name":"SP_OUTOFDISK","features":[314]},{"name":"SP_OUTOFMEMORY","features":[314]},{"name":"SP_USERABORT","features":[314]},{"name":"SRCAND","features":[314]},{"name":"SRCCOPY","features":[314]},{"name":"SRCERASE","features":[314]},{"name":"SRCINVERT","features":[314]},{"name":"SRCPAINT","features":[314]},{"name":"STARTDOC","features":[314]},{"name":"STOCK_LAST","features":[314]},{"name":"STRETCHBLT","features":[314]},{"name":"STRETCH_ANDSCANS","features":[314]},{"name":"STRETCH_BLT_MODE","features":[314]},{"name":"STRETCH_DELETESCANS","features":[314]},{"name":"STRETCH_HALFTONE","features":[314]},{"name":"STRETCH_ORSCANS","features":[314]},{"name":"SYMBOL_CHARSET","features":[314]},{"name":"SYSPAL_ERROR","features":[314]},{"name":"SYSPAL_NOSTATIC","features":[314]},{"name":"SYSPAL_NOSTATIC256","features":[314]},{"name":"SYSPAL_STATIC","features":[314]},{"name":"SYSRGN","features":[314]},{"name":"SYSTEM_FIXED_FONT","features":[314]},{"name":"SYSTEM_FONT","features":[314]},{"name":"SYSTEM_PALETTE_USE","features":[314]},{"name":"SYS_COLOR_INDEX","features":[314]},{"name":"SaveDC","features":[314]},{"name":"ScaleViewportExtEx","features":[303,314]},{"name":"ScaleWindowExtEx","features":[303,314]},{"name":"ScreenToClient","features":[303,314]},{"name":"SelectClipPath","features":[303,314]},{"name":"SelectClipRgn","features":[314]},{"name":"SelectObject","features":[314]},{"name":"SelectPalette","features":[303,314]},{"name":"SetArcDirection","features":[314]},{"name":"SetBitmapBits","features":[314]},{"name":"SetBitmapDimensionEx","features":[303,314]},{"name":"SetBkColor","features":[303,314]},{"name":"SetBkMode","features":[314]},{"name":"SetBoundsRect","features":[303,314]},{"name":"SetBrushOrgEx","features":[303,314]},{"name":"SetColorAdjustment","features":[303,314]},{"name":"SetDCBrushColor","features":[303,314]},{"name":"SetDCPenColor","features":[303,314]},{"name":"SetDIBColorTable","features":[314]},{"name":"SetDIBits","features":[314]},{"name":"SetDIBitsToDevice","features":[314]},{"name":"SetEnhMetaFileBits","features":[314]},{"name":"SetGraphicsMode","features":[314]},{"name":"SetLayout","features":[314]},{"name":"SetMapMode","features":[314]},{"name":"SetMapperFlags","features":[314]},{"name":"SetMetaFileBitsEx","features":[314]},{"name":"SetMetaRgn","features":[314]},{"name":"SetMiterLimit","features":[303,314]},{"name":"SetPaletteEntries","features":[314]},{"name":"SetPixel","features":[303,314]},{"name":"SetPixelV","features":[303,314]},{"name":"SetPolyFillMode","features":[314]},{"name":"SetROP2","features":[314]},{"name":"SetRect","features":[303,314]},{"name":"SetRectEmpty","features":[303,314]},{"name":"SetRectRgn","features":[303,314]},{"name":"SetStretchBltMode","features":[314]},{"name":"SetSysColors","features":[303,314]},{"name":"SetSystemPaletteUse","features":[314]},{"name":"SetTextAlign","features":[314]},{"name":"SetTextCharacterExtra","features":[314]},{"name":"SetTextColor","features":[303,314]},{"name":"SetTextJustification","features":[303,314]},{"name":"SetViewportExtEx","features":[303,314]},{"name":"SetViewportOrgEx","features":[303,314]},{"name":"SetWindowExtEx","features":[303,314]},{"name":"SetWindowOrgEx","features":[303,314]},{"name":"SetWindowRgn","features":[303,314]},{"name":"SetWorldTransform","features":[303,314]},{"name":"StretchBlt","features":[303,314]},{"name":"StretchDIBits","features":[314]},{"name":"StrokeAndFillPath","features":[303,314]},{"name":"StrokePath","features":[303,314]},{"name":"SubtractRect","features":[303,314]},{"name":"TA_BASELINE","features":[314]},{"name":"TA_BOTTOM","features":[314]},{"name":"TA_CENTER","features":[314]},{"name":"TA_LEFT","features":[314]},{"name":"TA_MASK","features":[314]},{"name":"TA_NOUPDATECP","features":[314]},{"name":"TA_RIGHT","features":[314]},{"name":"TA_RTLREADING","features":[314]},{"name":"TA_TOP","features":[314]},{"name":"TA_UPDATECP","features":[314]},{"name":"TC_CP_STROKE","features":[314]},{"name":"TC_CR_90","features":[314]},{"name":"TC_CR_ANY","features":[314]},{"name":"TC_EA_DOUBLE","features":[314]},{"name":"TC_IA_ABLE","features":[314]},{"name":"TC_OP_CHARACTER","features":[314]},{"name":"TC_OP_STROKE","features":[314]},{"name":"TC_RA_ABLE","features":[314]},{"name":"TC_RESERVED","features":[314]},{"name":"TC_SA_CONTIN","features":[314]},{"name":"TC_SA_DOUBLE","features":[314]},{"name":"TC_SA_INTEGER","features":[314]},{"name":"TC_SCROLLBLT","features":[314]},{"name":"TC_SF_X_YINDEP","features":[314]},{"name":"TC_SO_ABLE","features":[314]},{"name":"TC_UA_ABLE","features":[314]},{"name":"TC_VA_ABLE","features":[314]},{"name":"TECHNOLOGY","features":[314]},{"name":"TEXTCAPS","features":[314]},{"name":"TEXTMETRICA","features":[314]},{"name":"TEXTMETRICW","features":[314]},{"name":"TEXT_ALIGN_OPTIONS","features":[314]},{"name":"THAI_CHARSET","features":[314]},{"name":"TMPF_DEVICE","features":[314]},{"name":"TMPF_FIXED_PITCH","features":[314]},{"name":"TMPF_FLAGS","features":[314]},{"name":"TMPF_TRUETYPE","features":[314]},{"name":"TMPF_VECTOR","features":[314]},{"name":"TRANSFORM_CTM","features":[314]},{"name":"TRANSPARENT","features":[314]},{"name":"TRIVERTEX","features":[314]},{"name":"TRUETYPE_FONTTYPE","features":[314]},{"name":"TTCharToUnicode","features":[314]},{"name":"TTDELETE_DONTREMOVEFONT","features":[314]},{"name":"TTDeleteEmbeddedFont","features":[303,314]},{"name":"TTEMBEDINFO","features":[314]},{"name":"TTEMBED_EMBEDEUDC","features":[314]},{"name":"TTEMBED_EUDCEMBEDDED","features":[314]},{"name":"TTEMBED_FAILIFVARIATIONSIMULATED","features":[314]},{"name":"TTEMBED_FLAGS","features":[314]},{"name":"TTEMBED_RAW","features":[314]},{"name":"TTEMBED_SUBSET","features":[314]},{"name":"TTEMBED_SUBSETCANCEL","features":[314]},{"name":"TTEMBED_TTCOMPRESSED","features":[314]},{"name":"TTEMBED_VARIATIONSIMULATED","features":[314]},{"name":"TTEMBED_WEBOBJECT","features":[314]},{"name":"TTEMBED_XORENCRYPTDATA","features":[314]},{"name":"TTEmbedFont","features":[314]},{"name":"TTEmbedFontEx","features":[314]},{"name":"TTEmbedFontFromFileA","features":[314]},{"name":"TTEnableEmbeddingForFacename","features":[303,314]},{"name":"TTFCFP_APPLE_PLATFORMID","features":[314]},{"name":"TTFCFP_DELTA","features":[314]},{"name":"TTFCFP_DONT_CARE","features":[314]},{"name":"TTFCFP_FLAGS_COMPRESS","features":[314]},{"name":"TTFCFP_FLAGS_GLYPHLIST","features":[314]},{"name":"TTFCFP_FLAGS_SUBSET","features":[314]},{"name":"TTFCFP_FLAGS_TTC","features":[314]},{"name":"TTFCFP_ISO_PLATFORMID","features":[314]},{"name":"TTFCFP_LANG_KEEP_ALL","features":[314]},{"name":"TTFCFP_MS_PLATFORMID","features":[314]},{"name":"TTFCFP_STD_MAC_CHAR_SET","features":[314]},{"name":"TTFCFP_SUBSET","features":[314]},{"name":"TTFCFP_SUBSET1","features":[314]},{"name":"TTFCFP_SYMBOL_CHAR_SET","features":[314]},{"name":"TTFCFP_UNICODE_CHAR_SET","features":[314]},{"name":"TTFCFP_UNICODE_PLATFORMID","features":[314]},{"name":"TTFMFP_DELTA","features":[314]},{"name":"TTFMFP_SUBSET","features":[314]},{"name":"TTFMFP_SUBSET1","features":[314]},{"name":"TTGetEmbeddedFontInfo","features":[314]},{"name":"TTGetEmbeddingType","features":[314]},{"name":"TTGetNewFontName","features":[303,314]},{"name":"TTIsEmbeddingEnabled","features":[303,314]},{"name":"TTIsEmbeddingEnabledForFacename","features":[303,314]},{"name":"TTLOADINFO","features":[314]},{"name":"TTLOAD_EMBEDDED_FONT_STATUS","features":[314]},{"name":"TTLOAD_EUDC_OVERWRITE","features":[314]},{"name":"TTLOAD_EUDC_SET","features":[314]},{"name":"TTLOAD_FONT_IN_SYSSTARTUP","features":[314]},{"name":"TTLOAD_FONT_SUBSETTED","features":[314]},{"name":"TTLOAD_PRIVATE","features":[314]},{"name":"TTLoadEmbeddedFont","features":[303,314]},{"name":"TTPOLYCURVE","features":[314]},{"name":"TTPOLYGONHEADER","features":[314]},{"name":"TTRunValidationTests","features":[314]},{"name":"TTRunValidationTestsEx","features":[314]},{"name":"TTVALIDATIONTESTSPARAMS","features":[314]},{"name":"TTVALIDATIONTESTSPARAMSEX","features":[314]},{"name":"TT_AVAILABLE","features":[314]},{"name":"TT_ENABLED","features":[314]},{"name":"TT_POLYGON_TYPE","features":[314]},{"name":"TT_PRIM_CSPLINE","features":[314]},{"name":"TT_PRIM_LINE","features":[314]},{"name":"TT_PRIM_QSPLINE","features":[314]},{"name":"TURKISH_CHARSET","features":[314]},{"name":"TabbedTextOutA","features":[314]},{"name":"TabbedTextOutW","features":[314]},{"name":"TextOutA","features":[303,314]},{"name":"TextOutW","features":[303,314]},{"name":"TransparentBlt","features":[303,314]},{"name":"UnionRect","features":[303,314]},{"name":"UnrealizeObject","features":[303,314]},{"name":"UpdateColors","features":[303,314]},{"name":"UpdateWindow","features":[303,314]},{"name":"VARIABLE_PITCH","features":[314]},{"name":"VERTRES","features":[314]},{"name":"VERTSIZE","features":[314]},{"name":"VIETNAMESE_CHARSET","features":[314]},{"name":"VREFRESH","features":[314]},{"name":"VTA_BASELINE","features":[314]},{"name":"VTA_BOTTOM","features":[314]},{"name":"VTA_CENTER","features":[314]},{"name":"VTA_LEFT","features":[314]},{"name":"VTA_RIGHT","features":[314]},{"name":"VTA_TOP","features":[314]},{"name":"ValidateRect","features":[303,314]},{"name":"ValidateRgn","features":[303,314]},{"name":"WCRANGE","features":[314]},{"name":"WGLSWAP","features":[314]},{"name":"WGL_FONT_LINES","features":[314]},{"name":"WGL_FONT_POLYGONS","features":[314]},{"name":"WGL_SWAPMULTIPLE_MAX","features":[314]},{"name":"WGL_SWAP_MAIN_PLANE","features":[314]},{"name":"WGL_SWAP_OVERLAY1","features":[314]},{"name":"WGL_SWAP_OVERLAY10","features":[314]},{"name":"WGL_SWAP_OVERLAY11","features":[314]},{"name":"WGL_SWAP_OVERLAY12","features":[314]},{"name":"WGL_SWAP_OVERLAY13","features":[314]},{"name":"WGL_SWAP_OVERLAY14","features":[314]},{"name":"WGL_SWAP_OVERLAY15","features":[314]},{"name":"WGL_SWAP_OVERLAY2","features":[314]},{"name":"WGL_SWAP_OVERLAY3","features":[314]},{"name":"WGL_SWAP_OVERLAY4","features":[314]},{"name":"WGL_SWAP_OVERLAY5","features":[314]},{"name":"WGL_SWAP_OVERLAY6","features":[314]},{"name":"WGL_SWAP_OVERLAY7","features":[314]},{"name":"WGL_SWAP_OVERLAY8","features":[314]},{"name":"WGL_SWAP_OVERLAY9","features":[314]},{"name":"WGL_SWAP_UNDERLAY1","features":[314]},{"name":"WGL_SWAP_UNDERLAY10","features":[314]},{"name":"WGL_SWAP_UNDERLAY11","features":[314]},{"name":"WGL_SWAP_UNDERLAY12","features":[314]},{"name":"WGL_SWAP_UNDERLAY13","features":[314]},{"name":"WGL_SWAP_UNDERLAY14","features":[314]},{"name":"WGL_SWAP_UNDERLAY15","features":[314]},{"name":"WGL_SWAP_UNDERLAY2","features":[314]},{"name":"WGL_SWAP_UNDERLAY3","features":[314]},{"name":"WGL_SWAP_UNDERLAY4","features":[314]},{"name":"WGL_SWAP_UNDERLAY5","features":[314]},{"name":"WGL_SWAP_UNDERLAY6","features":[314]},{"name":"WGL_SWAP_UNDERLAY7","features":[314]},{"name":"WGL_SWAP_UNDERLAY8","features":[314]},{"name":"WGL_SWAP_UNDERLAY9","features":[314]},{"name":"WHITENESS","features":[314]},{"name":"WHITEONBLACK","features":[314]},{"name":"WHITE_BRUSH","features":[314]},{"name":"WHITE_PEN","features":[314]},{"name":"WINDING","features":[314]},{"name":"WRITEEMBEDPROC","features":[314]},{"name":"WidenPath","features":[303,314]},{"name":"WindowFromDC","features":[303,314]},{"name":"XFORM","features":[314]},{"name":"wglSwapMultipleBuffers","features":[314]}],"414":[{"name":"ALPHA_SHIFT","features":[407]},{"name":"Aborted","features":[407]},{"name":"AccessDenied","features":[407]},{"name":"AdjustBlackSaturation","features":[407]},{"name":"AdjustContrast","features":[407]},{"name":"AdjustDensity","features":[407]},{"name":"AdjustExposure","features":[407]},{"name":"AdjustHighlight","features":[407]},{"name":"AdjustMidtone","features":[407]},{"name":"AdjustShadow","features":[407]},{"name":"AdjustWhiteSaturation","features":[407]},{"name":"BLUE_SHIFT","features":[407]},{"name":"Bitmap","features":[407]},{"name":"BitmapData","features":[407]},{"name":"Blur","features":[303,407]},{"name":"BlurEffectGuid","features":[407]},{"name":"BlurParams","features":[303,407]},{"name":"BrightnessContrast","features":[303,407]},{"name":"BrightnessContrastEffectGuid","features":[407]},{"name":"BrightnessContrastParams","features":[407]},{"name":"BrushType","features":[407]},{"name":"BrushTypeHatchFill","features":[407]},{"name":"BrushTypeLinearGradient","features":[407]},{"name":"BrushTypePathGradient","features":[407]},{"name":"BrushTypeSolidColor","features":[407]},{"name":"BrushTypeTextureFill","features":[407]},{"name":"CGpEffect","features":[407]},{"name":"CachedBitmap","features":[407]},{"name":"CharacterRange","features":[407]},{"name":"CodecIImageBytes","features":[407]},{"name":"Color","features":[407]},{"name":"ColorAdjustType","features":[407]},{"name":"ColorAdjustTypeAny","features":[407]},{"name":"ColorAdjustTypeBitmap","features":[407]},{"name":"ColorAdjustTypeBrush","features":[407]},{"name":"ColorAdjustTypeCount","features":[407]},{"name":"ColorAdjustTypeDefault","features":[407]},{"name":"ColorAdjustTypePen","features":[407]},{"name":"ColorAdjustTypeText","features":[407]},{"name":"ColorBalance","features":[303,407]},{"name":"ColorBalanceEffectGuid","features":[407]},{"name":"ColorBalanceParams","features":[407]},{"name":"ColorChannelFlags","features":[407]},{"name":"ColorChannelFlagsC","features":[407]},{"name":"ColorChannelFlagsK","features":[407]},{"name":"ColorChannelFlagsLast","features":[407]},{"name":"ColorChannelFlagsM","features":[407]},{"name":"ColorChannelFlagsY","features":[407]},{"name":"ColorCurve","features":[303,407]},{"name":"ColorCurveEffectGuid","features":[407]},{"name":"ColorCurveParams","features":[407]},{"name":"ColorLUT","features":[303,407]},{"name":"ColorLUTEffectGuid","features":[407]},{"name":"ColorLUTParams","features":[407]},{"name":"ColorMap","features":[407]},{"name":"ColorMatrix","features":[407]},{"name":"ColorMatrixEffect","features":[303,407]},{"name":"ColorMatrixEffectGuid","features":[407]},{"name":"ColorMatrixFlags","features":[407]},{"name":"ColorMatrixFlagsAltGray","features":[407]},{"name":"ColorMatrixFlagsDefault","features":[407]},{"name":"ColorMatrixFlagsSkipGrays","features":[407]},{"name":"ColorMode","features":[407]},{"name":"ColorModeARGB32","features":[407]},{"name":"ColorModeARGB64","features":[407]},{"name":"ColorPalette","features":[407]},{"name":"CombineMode","features":[407]},{"name":"CombineModeComplement","features":[407]},{"name":"CombineModeExclude","features":[407]},{"name":"CombineModeIntersect","features":[407]},{"name":"CombineModeReplace","features":[407]},{"name":"CombineModeUnion","features":[407]},{"name":"CombineModeXor","features":[407]},{"name":"CompositingMode","features":[407]},{"name":"CompositingModeSourceCopy","features":[407]},{"name":"CompositingModeSourceOver","features":[407]},{"name":"CompositingQuality","features":[407]},{"name":"CompositingQualityAssumeLinear","features":[407]},{"name":"CompositingQualityDefault","features":[407]},{"name":"CompositingQualityGammaCorrected","features":[407]},{"name":"CompositingQualityHighQuality","features":[407]},{"name":"CompositingQualityHighSpeed","features":[407]},{"name":"CompositingQualityInvalid","features":[407]},{"name":"ConvertToEmfPlusFlags","features":[407]},{"name":"ConvertToEmfPlusFlagsDefault","features":[407]},{"name":"ConvertToEmfPlusFlagsInvalidRecord","features":[407]},{"name":"ConvertToEmfPlusFlagsRopUsed","features":[407]},{"name":"ConvertToEmfPlusFlagsText","features":[407]},{"name":"CoordinateSpace","features":[407]},{"name":"CoordinateSpaceDevice","features":[407]},{"name":"CoordinateSpacePage","features":[407]},{"name":"CoordinateSpaceWorld","features":[407]},{"name":"CurveAdjustments","features":[407]},{"name":"CurveChannel","features":[407]},{"name":"CurveChannelAll","features":[407]},{"name":"CurveChannelBlue","features":[407]},{"name":"CurveChannelGreen","features":[407]},{"name":"CurveChannelRed","features":[407]},{"name":"CustomLineCap","features":[407]},{"name":"CustomLineCapType","features":[407]},{"name":"CustomLineCapTypeAdjustableArrow","features":[407]},{"name":"CustomLineCapTypeDefault","features":[407]},{"name":"DashCap","features":[407]},{"name":"DashCapFlat","features":[407]},{"name":"DashCapRound","features":[407]},{"name":"DashCapTriangle","features":[407]},{"name":"DashStyle","features":[407]},{"name":"DashStyleCustom","features":[407]},{"name":"DashStyleDash","features":[407]},{"name":"DashStyleDashDot","features":[407]},{"name":"DashStyleDashDotDot","features":[407]},{"name":"DashStyleDot","features":[407]},{"name":"DashStyleSolid","features":[407]},{"name":"DebugEventLevel","features":[407]},{"name":"DebugEventLevelFatal","features":[407]},{"name":"DebugEventLevelWarning","features":[407]},{"name":"DebugEventProc","features":[407]},{"name":"DitherType","features":[407]},{"name":"DitherTypeDualSpiral4x4","features":[407]},{"name":"DitherTypeDualSpiral8x8","features":[407]},{"name":"DitherTypeErrorDiffusion","features":[407]},{"name":"DitherTypeMax","features":[407]},{"name":"DitherTypeNone","features":[407]},{"name":"DitherTypeOrdered16x16","features":[407]},{"name":"DitherTypeOrdered4x4","features":[407]},{"name":"DitherTypeOrdered8x8","features":[407]},{"name":"DitherTypeSolid","features":[407]},{"name":"DitherTypeSpiral4x4","features":[407]},{"name":"DitherTypeSpiral8x8","features":[407]},{"name":"DrawImageAbort","features":[303,407]},{"name":"DriverStringOptions","features":[407]},{"name":"DriverStringOptionsCmapLookup","features":[407]},{"name":"DriverStringOptionsLimitSubpixel","features":[407]},{"name":"DriverStringOptionsRealizedAdvance","features":[407]},{"name":"DriverStringOptionsVertical","features":[407]},{"name":"ENHMETAHEADER3","features":[303,407]},{"name":"Effect","features":[303,407]},{"name":"EmfPlusRecordTotal","features":[407]},{"name":"EmfPlusRecordType","features":[407]},{"name":"EmfPlusRecordTypeBeginContainer","features":[407]},{"name":"EmfPlusRecordTypeBeginContainerNoParams","features":[407]},{"name":"EmfPlusRecordTypeClear","features":[407]},{"name":"EmfPlusRecordTypeComment","features":[407]},{"name":"EmfPlusRecordTypeDrawArc","features":[407]},{"name":"EmfPlusRecordTypeDrawBeziers","features":[407]},{"name":"EmfPlusRecordTypeDrawClosedCurve","features":[407]},{"name":"EmfPlusRecordTypeDrawCurve","features":[407]},{"name":"EmfPlusRecordTypeDrawDriverString","features":[407]},{"name":"EmfPlusRecordTypeDrawEllipse","features":[407]},{"name":"EmfPlusRecordTypeDrawImage","features":[407]},{"name":"EmfPlusRecordTypeDrawImagePoints","features":[407]},{"name":"EmfPlusRecordTypeDrawLines","features":[407]},{"name":"EmfPlusRecordTypeDrawPath","features":[407]},{"name":"EmfPlusRecordTypeDrawPie","features":[407]},{"name":"EmfPlusRecordTypeDrawRects","features":[407]},{"name":"EmfPlusRecordTypeDrawString","features":[407]},{"name":"EmfPlusRecordTypeEndContainer","features":[407]},{"name":"EmfPlusRecordTypeEndOfFile","features":[407]},{"name":"EmfPlusRecordTypeFillClosedCurve","features":[407]},{"name":"EmfPlusRecordTypeFillEllipse","features":[407]},{"name":"EmfPlusRecordTypeFillPath","features":[407]},{"name":"EmfPlusRecordTypeFillPie","features":[407]},{"name":"EmfPlusRecordTypeFillPolygon","features":[407]},{"name":"EmfPlusRecordTypeFillRects","features":[407]},{"name":"EmfPlusRecordTypeFillRegion","features":[407]},{"name":"EmfPlusRecordTypeGetDC","features":[407]},{"name":"EmfPlusRecordTypeHeader","features":[407]},{"name":"EmfPlusRecordTypeInvalid","features":[407]},{"name":"EmfPlusRecordTypeMax","features":[407]},{"name":"EmfPlusRecordTypeMin","features":[407]},{"name":"EmfPlusRecordTypeMultiFormatEnd","features":[407]},{"name":"EmfPlusRecordTypeMultiFormatSection","features":[407]},{"name":"EmfPlusRecordTypeMultiFormatStart","features":[407]},{"name":"EmfPlusRecordTypeMultiplyWorldTransform","features":[407]},{"name":"EmfPlusRecordTypeObject","features":[407]},{"name":"EmfPlusRecordTypeOffsetClip","features":[407]},{"name":"EmfPlusRecordTypeResetClip","features":[407]},{"name":"EmfPlusRecordTypeResetWorldTransform","features":[407]},{"name":"EmfPlusRecordTypeRestore","features":[407]},{"name":"EmfPlusRecordTypeRotateWorldTransform","features":[407]},{"name":"EmfPlusRecordTypeSave","features":[407]},{"name":"EmfPlusRecordTypeScaleWorldTransform","features":[407]},{"name":"EmfPlusRecordTypeSerializableObject","features":[407]},{"name":"EmfPlusRecordTypeSetAntiAliasMode","features":[407]},{"name":"EmfPlusRecordTypeSetClipPath","features":[407]},{"name":"EmfPlusRecordTypeSetClipRect","features":[407]},{"name":"EmfPlusRecordTypeSetClipRegion","features":[407]},{"name":"EmfPlusRecordTypeSetCompositingMode","features":[407]},{"name":"EmfPlusRecordTypeSetCompositingQuality","features":[407]},{"name":"EmfPlusRecordTypeSetInterpolationMode","features":[407]},{"name":"EmfPlusRecordTypeSetPageTransform","features":[407]},{"name":"EmfPlusRecordTypeSetPixelOffsetMode","features":[407]},{"name":"EmfPlusRecordTypeSetRenderingOrigin","features":[407]},{"name":"EmfPlusRecordTypeSetTSClip","features":[407]},{"name":"EmfPlusRecordTypeSetTSGraphics","features":[407]},{"name":"EmfPlusRecordTypeSetTextContrast","features":[407]},{"name":"EmfPlusRecordTypeSetTextRenderingHint","features":[407]},{"name":"EmfPlusRecordTypeSetWorldTransform","features":[407]},{"name":"EmfPlusRecordTypeStrokeFillPath","features":[407]},{"name":"EmfPlusRecordTypeTranslateWorldTransform","features":[407]},{"name":"EmfRecordTypeAbortPath","features":[407]},{"name":"EmfRecordTypeAlphaBlend","features":[407]},{"name":"EmfRecordTypeAngleArc","features":[407]},{"name":"EmfRecordTypeArc","features":[407]},{"name":"EmfRecordTypeArcTo","features":[407]},{"name":"EmfRecordTypeBeginPath","features":[407]},{"name":"EmfRecordTypeBitBlt","features":[407]},{"name":"EmfRecordTypeChord","features":[407]},{"name":"EmfRecordTypeCloseFigure","features":[407]},{"name":"EmfRecordTypeColorCorrectPalette","features":[407]},{"name":"EmfRecordTypeColorMatchToTargetW","features":[407]},{"name":"EmfRecordTypeCreateBrushIndirect","features":[407]},{"name":"EmfRecordTypeCreateColorSpace","features":[407]},{"name":"EmfRecordTypeCreateColorSpaceW","features":[407]},{"name":"EmfRecordTypeCreateDIBPatternBrushPt","features":[407]},{"name":"EmfRecordTypeCreateMonoBrush","features":[407]},{"name":"EmfRecordTypeCreatePalette","features":[407]},{"name":"EmfRecordTypeCreatePen","features":[407]},{"name":"EmfRecordTypeDeleteColorSpace","features":[407]},{"name":"EmfRecordTypeDeleteObject","features":[407]},{"name":"EmfRecordTypeDrawEscape","features":[407]},{"name":"EmfRecordTypeEOF","features":[407]},{"name":"EmfRecordTypeEllipse","features":[407]},{"name":"EmfRecordTypeEndPath","features":[407]},{"name":"EmfRecordTypeExcludeClipRect","features":[407]},{"name":"EmfRecordTypeExtCreateFontIndirect","features":[407]},{"name":"EmfRecordTypeExtCreatePen","features":[407]},{"name":"EmfRecordTypeExtEscape","features":[407]},{"name":"EmfRecordTypeExtFloodFill","features":[407]},{"name":"EmfRecordTypeExtSelectClipRgn","features":[407]},{"name":"EmfRecordTypeExtTextOutA","features":[407]},{"name":"EmfRecordTypeExtTextOutW","features":[407]},{"name":"EmfRecordTypeFillPath","features":[407]},{"name":"EmfRecordTypeFillRgn","features":[407]},{"name":"EmfRecordTypeFlattenPath","features":[407]},{"name":"EmfRecordTypeForceUFIMapping","features":[407]},{"name":"EmfRecordTypeFrameRgn","features":[407]},{"name":"EmfRecordTypeGLSBoundedRecord","features":[407]},{"name":"EmfRecordTypeGLSRecord","features":[407]},{"name":"EmfRecordTypeGdiComment","features":[407]},{"name":"EmfRecordTypeGradientFill","features":[407]},{"name":"EmfRecordTypeHeader","features":[407]},{"name":"EmfRecordTypeIntersectClipRect","features":[407]},{"name":"EmfRecordTypeInvertRgn","features":[407]},{"name":"EmfRecordTypeLineTo","features":[407]},{"name":"EmfRecordTypeMaskBlt","features":[407]},{"name":"EmfRecordTypeMax","features":[407]},{"name":"EmfRecordTypeMin","features":[407]},{"name":"EmfRecordTypeModifyWorldTransform","features":[407]},{"name":"EmfRecordTypeMoveToEx","features":[407]},{"name":"EmfRecordTypeNamedEscape","features":[407]},{"name":"EmfRecordTypeOffsetClipRgn","features":[407]},{"name":"EmfRecordTypePaintRgn","features":[407]},{"name":"EmfRecordTypePie","features":[407]},{"name":"EmfRecordTypePixelFormat","features":[407]},{"name":"EmfRecordTypePlgBlt","features":[407]},{"name":"EmfRecordTypePolyBezier","features":[407]},{"name":"EmfRecordTypePolyBezier16","features":[407]},{"name":"EmfRecordTypePolyBezierTo","features":[407]},{"name":"EmfRecordTypePolyBezierTo16","features":[407]},{"name":"EmfRecordTypePolyDraw","features":[407]},{"name":"EmfRecordTypePolyDraw16","features":[407]},{"name":"EmfRecordTypePolyLineTo","features":[407]},{"name":"EmfRecordTypePolyPolygon","features":[407]},{"name":"EmfRecordTypePolyPolygon16","features":[407]},{"name":"EmfRecordTypePolyPolyline","features":[407]},{"name":"EmfRecordTypePolyPolyline16","features":[407]},{"name":"EmfRecordTypePolyTextOutA","features":[407]},{"name":"EmfRecordTypePolyTextOutW","features":[407]},{"name":"EmfRecordTypePolygon","features":[407]},{"name":"EmfRecordTypePolygon16","features":[407]},{"name":"EmfRecordTypePolyline","features":[407]},{"name":"EmfRecordTypePolyline16","features":[407]},{"name":"EmfRecordTypePolylineTo16","features":[407]},{"name":"EmfRecordTypeRealizePalette","features":[407]},{"name":"EmfRecordTypeRectangle","features":[407]},{"name":"EmfRecordTypeReserved_069","features":[407]},{"name":"EmfRecordTypeReserved_117","features":[407]},{"name":"EmfRecordTypeResizePalette","features":[407]},{"name":"EmfRecordTypeRestoreDC","features":[407]},{"name":"EmfRecordTypeRoundRect","features":[407]},{"name":"EmfRecordTypeSaveDC","features":[407]},{"name":"EmfRecordTypeScaleViewportExtEx","features":[407]},{"name":"EmfRecordTypeScaleWindowExtEx","features":[407]},{"name":"EmfRecordTypeSelectClipPath","features":[407]},{"name":"EmfRecordTypeSelectObject","features":[407]},{"name":"EmfRecordTypeSelectPalette","features":[407]},{"name":"EmfRecordTypeSetArcDirection","features":[407]},{"name":"EmfRecordTypeSetBkColor","features":[407]},{"name":"EmfRecordTypeSetBkMode","features":[407]},{"name":"EmfRecordTypeSetBrushOrgEx","features":[407]},{"name":"EmfRecordTypeSetColorAdjustment","features":[407]},{"name":"EmfRecordTypeSetColorSpace","features":[407]},{"name":"EmfRecordTypeSetDIBitsToDevice","features":[407]},{"name":"EmfRecordTypeSetICMMode","features":[407]},{"name":"EmfRecordTypeSetICMProfileA","features":[407]},{"name":"EmfRecordTypeSetICMProfileW","features":[407]},{"name":"EmfRecordTypeSetLayout","features":[407]},{"name":"EmfRecordTypeSetLinkedUFIs","features":[407]},{"name":"EmfRecordTypeSetMapMode","features":[407]},{"name":"EmfRecordTypeSetMapperFlags","features":[407]},{"name":"EmfRecordTypeSetMetaRgn","features":[407]},{"name":"EmfRecordTypeSetMiterLimit","features":[407]},{"name":"EmfRecordTypeSetPaletteEntries","features":[407]},{"name":"EmfRecordTypeSetPixelV","features":[407]},{"name":"EmfRecordTypeSetPolyFillMode","features":[407]},{"name":"EmfRecordTypeSetROP2","features":[407]},{"name":"EmfRecordTypeSetStretchBltMode","features":[407]},{"name":"EmfRecordTypeSetTextAlign","features":[407]},{"name":"EmfRecordTypeSetTextColor","features":[407]},{"name":"EmfRecordTypeSetTextJustification","features":[407]},{"name":"EmfRecordTypeSetViewportExtEx","features":[407]},{"name":"EmfRecordTypeSetViewportOrgEx","features":[407]},{"name":"EmfRecordTypeSetWindowExtEx","features":[407]},{"name":"EmfRecordTypeSetWindowOrgEx","features":[407]},{"name":"EmfRecordTypeSetWorldTransform","features":[407]},{"name":"EmfRecordTypeSmallTextOut","features":[407]},{"name":"EmfRecordTypeStartDoc","features":[407]},{"name":"EmfRecordTypeStretchBlt","features":[407]},{"name":"EmfRecordTypeStretchDIBits","features":[407]},{"name":"EmfRecordTypeStrokeAndFillPath","features":[407]},{"name":"EmfRecordTypeStrokePath","features":[407]},{"name":"EmfRecordTypeTransparentBlt","features":[407]},{"name":"EmfRecordTypeWidenPath","features":[407]},{"name":"EmfToWmfBitsFlags","features":[407]},{"name":"EmfToWmfBitsFlagsDefault","features":[407]},{"name":"EmfToWmfBitsFlagsEmbedEmf","features":[407]},{"name":"EmfToWmfBitsFlagsIncludePlaceable","features":[407]},{"name":"EmfToWmfBitsFlagsNoXORClip","features":[407]},{"name":"EmfType","features":[407]},{"name":"EmfTypeEmfOnly","features":[407]},{"name":"EmfTypeEmfPlusDual","features":[407]},{"name":"EmfTypeEmfPlusOnly","features":[407]},{"name":"EncoderChrominanceTable","features":[407]},{"name":"EncoderColorDepth","features":[407]},{"name":"EncoderColorSpace","features":[407]},{"name":"EncoderCompression","features":[407]},{"name":"EncoderImageItems","features":[407]},{"name":"EncoderLuminanceTable","features":[407]},{"name":"EncoderParameter","features":[407]},{"name":"EncoderParameterValueType","features":[407]},{"name":"EncoderParameterValueTypeASCII","features":[407]},{"name":"EncoderParameterValueTypeByte","features":[407]},{"name":"EncoderParameterValueTypeLong","features":[407]},{"name":"EncoderParameterValueTypeLongRange","features":[407]},{"name":"EncoderParameterValueTypePointer","features":[407]},{"name":"EncoderParameterValueTypeRational","features":[407]},{"name":"EncoderParameterValueTypeRationalRange","features":[407]},{"name":"EncoderParameterValueTypeShort","features":[407]},{"name":"EncoderParameterValueTypeUndefined","features":[407]},{"name":"EncoderParameters","features":[407]},{"name":"EncoderQuality","features":[407]},{"name":"EncoderRenderMethod","features":[407]},{"name":"EncoderSaveAsCMYK","features":[407]},{"name":"EncoderSaveFlag","features":[407]},{"name":"EncoderScanMethod","features":[407]},{"name":"EncoderTransformation","features":[407]},{"name":"EncoderValue","features":[407]},{"name":"EncoderValueColorTypeCMYK","features":[407]},{"name":"EncoderValueColorTypeGray","features":[407]},{"name":"EncoderValueColorTypeRGB","features":[407]},{"name":"EncoderValueColorTypeYCCK","features":[407]},{"name":"EncoderValueCompressionCCITT3","features":[407]},{"name":"EncoderValueCompressionCCITT4","features":[407]},{"name":"EncoderValueCompressionLZW","features":[407]},{"name":"EncoderValueCompressionNone","features":[407]},{"name":"EncoderValueCompressionRle","features":[407]},{"name":"EncoderValueFlush","features":[407]},{"name":"EncoderValueFrameDimensionPage","features":[407]},{"name":"EncoderValueFrameDimensionResolution","features":[407]},{"name":"EncoderValueFrameDimensionTime","features":[407]},{"name":"EncoderValueLastFrame","features":[407]},{"name":"EncoderValueMultiFrame","features":[407]},{"name":"EncoderValueRenderNonProgressive","features":[407]},{"name":"EncoderValueRenderProgressive","features":[407]},{"name":"EncoderValueScanMethodInterlaced","features":[407]},{"name":"EncoderValueScanMethodNonInterlaced","features":[407]},{"name":"EncoderValueTransformFlipHorizontal","features":[407]},{"name":"EncoderValueTransformFlipVertical","features":[407]},{"name":"EncoderValueTransformRotate180","features":[407]},{"name":"EncoderValueTransformRotate270","features":[407]},{"name":"EncoderValueTransformRotate90","features":[407]},{"name":"EncoderValueVersionGif87","features":[407]},{"name":"EncoderValueVersionGif89","features":[407]},{"name":"EncoderVersion","features":[407]},{"name":"EnumerateMetafileProc","features":[303,407]},{"name":"FileNotFound","features":[407]},{"name":"FillMode","features":[407]},{"name":"FillModeAlternate","features":[407]},{"name":"FillModeWinding","features":[407]},{"name":"FlatnessDefault","features":[407]},{"name":"FlushIntention","features":[407]},{"name":"FlushIntentionFlush","features":[407]},{"name":"FlushIntentionSync","features":[407]},{"name":"Font","features":[407]},{"name":"FontCollection","features":[407]},{"name":"FontFamily","features":[407]},{"name":"FontFamilyNotFound","features":[407]},{"name":"FontStyle","features":[407]},{"name":"FontStyleBold","features":[407]},{"name":"FontStyleBoldItalic","features":[407]},{"name":"FontStyleItalic","features":[407]},{"name":"FontStyleNotFound","features":[407]},{"name":"FontStyleRegular","features":[407]},{"name":"FontStyleStrikeout","features":[407]},{"name":"FontStyleUnderline","features":[407]},{"name":"FormatIDImageInformation","features":[407]},{"name":"FormatIDJpegAppHeaders","features":[407]},{"name":"FrameDimensionPage","features":[407]},{"name":"FrameDimensionResolution","features":[407]},{"name":"FrameDimensionTime","features":[407]},{"name":"GDIP_EMFPLUSFLAGS_DISPLAY","features":[407]},{"name":"GDIP_EMFPLUS_RECORD_BASE","features":[407]},{"name":"GDIP_WMF_RECORD_BASE","features":[407]},{"name":"GREEN_SHIFT","features":[407]},{"name":"GdipAddPathArc","features":[407]},{"name":"GdipAddPathArcI","features":[407]},{"name":"GdipAddPathBezier","features":[407]},{"name":"GdipAddPathBezierI","features":[407]},{"name":"GdipAddPathBeziers","features":[407]},{"name":"GdipAddPathBeziersI","features":[407]},{"name":"GdipAddPathClosedCurve","features":[407]},{"name":"GdipAddPathClosedCurve2","features":[407]},{"name":"GdipAddPathClosedCurve2I","features":[407]},{"name":"GdipAddPathClosedCurveI","features":[407]},{"name":"GdipAddPathCurve","features":[407]},{"name":"GdipAddPathCurve2","features":[407]},{"name":"GdipAddPathCurve2I","features":[407]},{"name":"GdipAddPathCurve3","features":[407]},{"name":"GdipAddPathCurve3I","features":[407]},{"name":"GdipAddPathCurveI","features":[407]},{"name":"GdipAddPathEllipse","features":[407]},{"name":"GdipAddPathEllipseI","features":[407]},{"name":"GdipAddPathLine","features":[407]},{"name":"GdipAddPathLine2","features":[407]},{"name":"GdipAddPathLine2I","features":[407]},{"name":"GdipAddPathLineI","features":[407]},{"name":"GdipAddPathPath","features":[303,407]},{"name":"GdipAddPathPie","features":[407]},{"name":"GdipAddPathPieI","features":[407]},{"name":"GdipAddPathPolygon","features":[407]},{"name":"GdipAddPathPolygonI","features":[407]},{"name":"GdipAddPathRectangle","features":[407]},{"name":"GdipAddPathRectangleI","features":[407]},{"name":"GdipAddPathRectangles","features":[407]},{"name":"GdipAddPathRectanglesI","features":[407]},{"name":"GdipAddPathString","features":[407]},{"name":"GdipAddPathStringI","features":[407]},{"name":"GdipAlloc","features":[407]},{"name":"GdipBeginContainer","features":[407]},{"name":"GdipBeginContainer2","features":[407]},{"name":"GdipBeginContainerI","features":[407]},{"name":"GdipBitmapApplyEffect","features":[303,407]},{"name":"GdipBitmapConvertFormat","features":[407]},{"name":"GdipBitmapCreateApplyEffect","features":[303,407]},{"name":"GdipBitmapGetHistogram","features":[407]},{"name":"GdipBitmapGetHistogramSize","features":[407]},{"name":"GdipBitmapGetPixel","features":[407]},{"name":"GdipBitmapLockBits","features":[407]},{"name":"GdipBitmapSetPixel","features":[407]},{"name":"GdipBitmapSetResolution","features":[407]},{"name":"GdipBitmapUnlockBits","features":[407]},{"name":"GdipClearPathMarkers","features":[407]},{"name":"GdipCloneBitmapArea","features":[407]},{"name":"GdipCloneBitmapAreaI","features":[407]},{"name":"GdipCloneBrush","features":[407]},{"name":"GdipCloneCustomLineCap","features":[407]},{"name":"GdipCloneFont","features":[407]},{"name":"GdipCloneFontFamily","features":[407]},{"name":"GdipCloneImage","features":[407]},{"name":"GdipCloneImageAttributes","features":[407]},{"name":"GdipCloneMatrix","features":[407]},{"name":"GdipClonePath","features":[407]},{"name":"GdipClonePen","features":[407]},{"name":"GdipCloneRegion","features":[407]},{"name":"GdipCloneStringFormat","features":[407]},{"name":"GdipClosePathFigure","features":[407]},{"name":"GdipClosePathFigures","features":[407]},{"name":"GdipCombineRegionPath","features":[407]},{"name":"GdipCombineRegionRect","features":[407]},{"name":"GdipCombineRegionRectI","features":[407]},{"name":"GdipCombineRegionRegion","features":[407]},{"name":"GdipComment","features":[407]},{"name":"GdipConvertToEmfPlus","features":[407]},{"name":"GdipConvertToEmfPlusToFile","features":[407]},{"name":"GdipConvertToEmfPlusToStream","features":[407,354]},{"name":"GdipCreateAdjustableArrowCap","features":[303,407]},{"name":"GdipCreateBitmapFromDirectDrawSurface","features":[313,407]},{"name":"GdipCreateBitmapFromFile","features":[407]},{"name":"GdipCreateBitmapFromFileICM","features":[407]},{"name":"GdipCreateBitmapFromGdiDib","features":[314,407]},{"name":"GdipCreateBitmapFromGraphics","features":[407]},{"name":"GdipCreateBitmapFromHBITMAP","features":[314,407]},{"name":"GdipCreateBitmapFromHICON","features":[407,365]},{"name":"GdipCreateBitmapFromResource","features":[303,407]},{"name":"GdipCreateBitmapFromScan0","features":[407]},{"name":"GdipCreateBitmapFromStream","features":[407,354]},{"name":"GdipCreateBitmapFromStreamICM","features":[407,354]},{"name":"GdipCreateCachedBitmap","features":[407]},{"name":"GdipCreateCustomLineCap","features":[407]},{"name":"GdipCreateEffect","features":[407]},{"name":"GdipCreateFont","features":[407]},{"name":"GdipCreateFontFamilyFromName","features":[407]},{"name":"GdipCreateFontFromDC","features":[314,407]},{"name":"GdipCreateFontFromLogfontA","features":[314,407]},{"name":"GdipCreateFontFromLogfontW","features":[314,407]},{"name":"GdipCreateFromHDC","features":[314,407]},{"name":"GdipCreateFromHDC2","features":[303,314,407]},{"name":"GdipCreateFromHWND","features":[303,407]},{"name":"GdipCreateFromHWNDICM","features":[303,407]},{"name":"GdipCreateHBITMAPFromBitmap","features":[314,407]},{"name":"GdipCreateHICONFromBitmap","features":[407,365]},{"name":"GdipCreateHalftonePalette","features":[314,407]},{"name":"GdipCreateHatchBrush","features":[407]},{"name":"GdipCreateImageAttributes","features":[407]},{"name":"GdipCreateLineBrush","features":[407]},{"name":"GdipCreateLineBrushFromRect","features":[407]},{"name":"GdipCreateLineBrushFromRectI","features":[407]},{"name":"GdipCreateLineBrushFromRectWithAngle","features":[303,407]},{"name":"GdipCreateLineBrushFromRectWithAngleI","features":[303,407]},{"name":"GdipCreateLineBrushI","features":[407]},{"name":"GdipCreateMatrix","features":[407]},{"name":"GdipCreateMatrix2","features":[407]},{"name":"GdipCreateMatrix3","features":[407]},{"name":"GdipCreateMatrix3I","features":[407]},{"name":"GdipCreateMetafileFromEmf","features":[303,314,407]},{"name":"GdipCreateMetafileFromFile","features":[407]},{"name":"GdipCreateMetafileFromStream","features":[407,354]},{"name":"GdipCreateMetafileFromWmf","features":[303,314,407]},{"name":"GdipCreateMetafileFromWmfFile","features":[407]},{"name":"GdipCreatePath","features":[407]},{"name":"GdipCreatePath2","features":[407]},{"name":"GdipCreatePath2I","features":[407]},{"name":"GdipCreatePathGradient","features":[407]},{"name":"GdipCreatePathGradientFromPath","features":[407]},{"name":"GdipCreatePathGradientI","features":[407]},{"name":"GdipCreatePathIter","features":[407]},{"name":"GdipCreatePen1","features":[407]},{"name":"GdipCreatePen2","features":[407]},{"name":"GdipCreateRegion","features":[407]},{"name":"GdipCreateRegionHrgn","features":[314,407]},{"name":"GdipCreateRegionPath","features":[407]},{"name":"GdipCreateRegionRect","features":[407]},{"name":"GdipCreateRegionRectI","features":[407]},{"name":"GdipCreateRegionRgnData","features":[407]},{"name":"GdipCreateSolidFill","features":[407]},{"name":"GdipCreateStreamOnFile","features":[407,354]},{"name":"GdipCreateStringFormat","features":[407]},{"name":"GdipCreateTexture","features":[407]},{"name":"GdipCreateTexture2","features":[407]},{"name":"GdipCreateTexture2I","features":[407]},{"name":"GdipCreateTextureIA","features":[407]},{"name":"GdipCreateTextureIAI","features":[407]},{"name":"GdipDeleteBrush","features":[407]},{"name":"GdipDeleteCachedBitmap","features":[407]},{"name":"GdipDeleteCustomLineCap","features":[407]},{"name":"GdipDeleteEffect","features":[407]},{"name":"GdipDeleteFont","features":[407]},{"name":"GdipDeleteFontFamily","features":[407]},{"name":"GdipDeleteGraphics","features":[407]},{"name":"GdipDeleteMatrix","features":[407]},{"name":"GdipDeletePath","features":[407]},{"name":"GdipDeletePathIter","features":[407]},{"name":"GdipDeletePen","features":[407]},{"name":"GdipDeletePrivateFontCollection","features":[407]},{"name":"GdipDeleteRegion","features":[407]},{"name":"GdipDeleteStringFormat","features":[407]},{"name":"GdipDisposeImage","features":[407]},{"name":"GdipDisposeImageAttributes","features":[407]},{"name":"GdipDrawArc","features":[407]},{"name":"GdipDrawArcI","features":[407]},{"name":"GdipDrawBezier","features":[407]},{"name":"GdipDrawBezierI","features":[407]},{"name":"GdipDrawBeziers","features":[407]},{"name":"GdipDrawBeziersI","features":[407]},{"name":"GdipDrawCachedBitmap","features":[407]},{"name":"GdipDrawClosedCurve","features":[407]},{"name":"GdipDrawClosedCurve2","features":[407]},{"name":"GdipDrawClosedCurve2I","features":[407]},{"name":"GdipDrawClosedCurveI","features":[407]},{"name":"GdipDrawCurve","features":[407]},{"name":"GdipDrawCurve2","features":[407]},{"name":"GdipDrawCurve2I","features":[407]},{"name":"GdipDrawCurve3","features":[407]},{"name":"GdipDrawCurve3I","features":[407]},{"name":"GdipDrawCurveI","features":[407]},{"name":"GdipDrawDriverString","features":[407]},{"name":"GdipDrawEllipse","features":[407]},{"name":"GdipDrawEllipseI","features":[407]},{"name":"GdipDrawImage","features":[407]},{"name":"GdipDrawImageFX","features":[407]},{"name":"GdipDrawImageI","features":[407]},{"name":"GdipDrawImagePointRect","features":[407]},{"name":"GdipDrawImagePointRectI","features":[407]},{"name":"GdipDrawImagePoints","features":[407]},{"name":"GdipDrawImagePointsI","features":[407]},{"name":"GdipDrawImagePointsRect","features":[407]},{"name":"GdipDrawImagePointsRectI","features":[407]},{"name":"GdipDrawImageRect","features":[407]},{"name":"GdipDrawImageRectI","features":[407]},{"name":"GdipDrawImageRectRect","features":[407]},{"name":"GdipDrawImageRectRectI","features":[407]},{"name":"GdipDrawLine","features":[407]},{"name":"GdipDrawLineI","features":[407]},{"name":"GdipDrawLines","features":[407]},{"name":"GdipDrawLinesI","features":[407]},{"name":"GdipDrawPath","features":[407]},{"name":"GdipDrawPie","features":[407]},{"name":"GdipDrawPieI","features":[407]},{"name":"GdipDrawPolygon","features":[407]},{"name":"GdipDrawPolygonI","features":[407]},{"name":"GdipDrawRectangle","features":[407]},{"name":"GdipDrawRectangleI","features":[407]},{"name":"GdipDrawRectangles","features":[407]},{"name":"GdipDrawRectanglesI","features":[407]},{"name":"GdipDrawString","features":[407]},{"name":"GdipEmfToWmfBits","features":[314,407]},{"name":"GdipEndContainer","features":[407]},{"name":"GdipEnumerateMetafileDestPoint","features":[407]},{"name":"GdipEnumerateMetafileDestPointI","features":[407]},{"name":"GdipEnumerateMetafileDestPoints","features":[407]},{"name":"GdipEnumerateMetafileDestPointsI","features":[407]},{"name":"GdipEnumerateMetafileDestRect","features":[407]},{"name":"GdipEnumerateMetafileDestRectI","features":[407]},{"name":"GdipEnumerateMetafileSrcRectDestPoint","features":[407]},{"name":"GdipEnumerateMetafileSrcRectDestPointI","features":[407]},{"name":"GdipEnumerateMetafileSrcRectDestPoints","features":[407]},{"name":"GdipEnumerateMetafileSrcRectDestPointsI","features":[407]},{"name":"GdipEnumerateMetafileSrcRectDestRect","features":[407]},{"name":"GdipEnumerateMetafileSrcRectDestRectI","features":[407]},{"name":"GdipFillClosedCurve","features":[407]},{"name":"GdipFillClosedCurve2","features":[407]},{"name":"GdipFillClosedCurve2I","features":[407]},{"name":"GdipFillClosedCurveI","features":[407]},{"name":"GdipFillEllipse","features":[407]},{"name":"GdipFillEllipseI","features":[407]},{"name":"GdipFillPath","features":[407]},{"name":"GdipFillPie","features":[407]},{"name":"GdipFillPieI","features":[407]},{"name":"GdipFillPolygon","features":[407]},{"name":"GdipFillPolygon2","features":[407]},{"name":"GdipFillPolygon2I","features":[407]},{"name":"GdipFillPolygonI","features":[407]},{"name":"GdipFillRectangle","features":[407]},{"name":"GdipFillRectangleI","features":[407]},{"name":"GdipFillRectangles","features":[407]},{"name":"GdipFillRectanglesI","features":[407]},{"name":"GdipFillRegion","features":[407]},{"name":"GdipFindFirstImageItem","features":[407]},{"name":"GdipFindNextImageItem","features":[407]},{"name":"GdipFlattenPath","features":[407]},{"name":"GdipFlush","features":[407]},{"name":"GdipFree","features":[407]},{"name":"GdipGetAdjustableArrowCapFillState","features":[303,407]},{"name":"GdipGetAdjustableArrowCapHeight","features":[407]},{"name":"GdipGetAdjustableArrowCapMiddleInset","features":[407]},{"name":"GdipGetAdjustableArrowCapWidth","features":[407]},{"name":"GdipGetAllPropertyItems","features":[407]},{"name":"GdipGetBrushType","features":[407]},{"name":"GdipGetCellAscent","features":[407]},{"name":"GdipGetCellDescent","features":[407]},{"name":"GdipGetClip","features":[407]},{"name":"GdipGetClipBounds","features":[407]},{"name":"GdipGetClipBoundsI","features":[407]},{"name":"GdipGetCompositingMode","features":[407]},{"name":"GdipGetCompositingQuality","features":[407]},{"name":"GdipGetCustomLineCapBaseCap","features":[407]},{"name":"GdipGetCustomLineCapBaseInset","features":[407]},{"name":"GdipGetCustomLineCapStrokeCaps","features":[407]},{"name":"GdipGetCustomLineCapStrokeJoin","features":[407]},{"name":"GdipGetCustomLineCapType","features":[407]},{"name":"GdipGetCustomLineCapWidthScale","features":[407]},{"name":"GdipGetDC","features":[314,407]},{"name":"GdipGetDpiX","features":[407]},{"name":"GdipGetDpiY","features":[407]},{"name":"GdipGetEffectParameterSize","features":[407]},{"name":"GdipGetEffectParameters","features":[407]},{"name":"GdipGetEmHeight","features":[407]},{"name":"GdipGetEncoderParameterList","features":[407]},{"name":"GdipGetEncoderParameterListSize","features":[407]},{"name":"GdipGetFamily","features":[407]},{"name":"GdipGetFamilyName","features":[407]},{"name":"GdipGetFontCollectionFamilyCount","features":[407]},{"name":"GdipGetFontCollectionFamilyList","features":[407]},{"name":"GdipGetFontHeight","features":[407]},{"name":"GdipGetFontHeightGivenDPI","features":[407]},{"name":"GdipGetFontSize","features":[407]},{"name":"GdipGetFontStyle","features":[407]},{"name":"GdipGetFontUnit","features":[407]},{"name":"GdipGetGenericFontFamilyMonospace","features":[407]},{"name":"GdipGetGenericFontFamilySansSerif","features":[407]},{"name":"GdipGetGenericFontFamilySerif","features":[407]},{"name":"GdipGetHatchBackgroundColor","features":[407]},{"name":"GdipGetHatchForegroundColor","features":[407]},{"name":"GdipGetHatchStyle","features":[407]},{"name":"GdipGetHemfFromMetafile","features":[314,407]},{"name":"GdipGetImageAttributesAdjustedPalette","features":[407]},{"name":"GdipGetImageBounds","features":[407]},{"name":"GdipGetImageDecoders","features":[407]},{"name":"GdipGetImageDecodersSize","features":[407]},{"name":"GdipGetImageDimension","features":[407]},{"name":"GdipGetImageEncoders","features":[407]},{"name":"GdipGetImageEncodersSize","features":[407]},{"name":"GdipGetImageFlags","features":[407]},{"name":"GdipGetImageGraphicsContext","features":[407]},{"name":"GdipGetImageHeight","features":[407]},{"name":"GdipGetImageHorizontalResolution","features":[407]},{"name":"GdipGetImageItemData","features":[407]},{"name":"GdipGetImagePalette","features":[407]},{"name":"GdipGetImagePaletteSize","features":[407]},{"name":"GdipGetImagePixelFormat","features":[407]},{"name":"GdipGetImageRawFormat","features":[407]},{"name":"GdipGetImageThumbnail","features":[407]},{"name":"GdipGetImageType","features":[407]},{"name":"GdipGetImageVerticalResolution","features":[407]},{"name":"GdipGetImageWidth","features":[407]},{"name":"GdipGetInterpolationMode","features":[407]},{"name":"GdipGetLineBlend","features":[407]},{"name":"GdipGetLineBlendCount","features":[407]},{"name":"GdipGetLineColors","features":[407]},{"name":"GdipGetLineGammaCorrection","features":[303,407]},{"name":"GdipGetLinePresetBlend","features":[407]},{"name":"GdipGetLinePresetBlendCount","features":[407]},{"name":"GdipGetLineRect","features":[407]},{"name":"GdipGetLineRectI","features":[407]},{"name":"GdipGetLineSpacing","features":[407]},{"name":"GdipGetLineTransform","features":[407]},{"name":"GdipGetLineWrapMode","features":[407]},{"name":"GdipGetLogFontA","features":[314,407]},{"name":"GdipGetLogFontW","features":[314,407]},{"name":"GdipGetMatrixElements","features":[407]},{"name":"GdipGetMetafileDownLevelRasterizationLimit","features":[407]},{"name":"GdipGetMetafileHeaderFromEmf","features":[303,314,407]},{"name":"GdipGetMetafileHeaderFromFile","features":[303,314,407]},{"name":"GdipGetMetafileHeaderFromMetafile","features":[303,314,407]},{"name":"GdipGetMetafileHeaderFromStream","features":[303,314,407,354]},{"name":"GdipGetMetafileHeaderFromWmf","features":[303,314,407]},{"name":"GdipGetNearestColor","features":[407]},{"name":"GdipGetPageScale","features":[407]},{"name":"GdipGetPageUnit","features":[407]},{"name":"GdipGetPathData","features":[407]},{"name":"GdipGetPathFillMode","features":[407]},{"name":"GdipGetPathGradientBlend","features":[407]},{"name":"GdipGetPathGradientBlendCount","features":[407]},{"name":"GdipGetPathGradientCenterColor","features":[407]},{"name":"GdipGetPathGradientCenterPoint","features":[407]},{"name":"GdipGetPathGradientCenterPointI","features":[407]},{"name":"GdipGetPathGradientFocusScales","features":[407]},{"name":"GdipGetPathGradientGammaCorrection","features":[303,407]},{"name":"GdipGetPathGradientPath","features":[407]},{"name":"GdipGetPathGradientPointCount","features":[407]},{"name":"GdipGetPathGradientPresetBlend","features":[407]},{"name":"GdipGetPathGradientPresetBlendCount","features":[407]},{"name":"GdipGetPathGradientRect","features":[407]},{"name":"GdipGetPathGradientRectI","features":[407]},{"name":"GdipGetPathGradientSurroundColorCount","features":[407]},{"name":"GdipGetPathGradientSurroundColorsWithCount","features":[407]},{"name":"GdipGetPathGradientTransform","features":[407]},{"name":"GdipGetPathGradientWrapMode","features":[407]},{"name":"GdipGetPathLastPoint","features":[407]},{"name":"GdipGetPathPoints","features":[407]},{"name":"GdipGetPathPointsI","features":[407]},{"name":"GdipGetPathTypes","features":[407]},{"name":"GdipGetPathWorldBounds","features":[407]},{"name":"GdipGetPathWorldBoundsI","features":[407]},{"name":"GdipGetPenBrushFill","features":[407]},{"name":"GdipGetPenColor","features":[407]},{"name":"GdipGetPenCompoundArray","features":[407]},{"name":"GdipGetPenCompoundCount","features":[407]},{"name":"GdipGetPenCustomEndCap","features":[407]},{"name":"GdipGetPenCustomStartCap","features":[407]},{"name":"GdipGetPenDashArray","features":[407]},{"name":"GdipGetPenDashCap197819","features":[407]},{"name":"GdipGetPenDashCount","features":[407]},{"name":"GdipGetPenDashOffset","features":[407]},{"name":"GdipGetPenDashStyle","features":[407]},{"name":"GdipGetPenEndCap","features":[407]},{"name":"GdipGetPenFillType","features":[407]},{"name":"GdipGetPenLineJoin","features":[407]},{"name":"GdipGetPenMiterLimit","features":[407]},{"name":"GdipGetPenMode","features":[407]},{"name":"GdipGetPenStartCap","features":[407]},{"name":"GdipGetPenTransform","features":[407]},{"name":"GdipGetPenUnit","features":[407]},{"name":"GdipGetPenWidth","features":[407]},{"name":"GdipGetPixelOffsetMode","features":[407]},{"name":"GdipGetPointCount","features":[407]},{"name":"GdipGetPropertyCount","features":[407]},{"name":"GdipGetPropertyIdList","features":[407]},{"name":"GdipGetPropertyItem","features":[407]},{"name":"GdipGetPropertyItemSize","features":[407]},{"name":"GdipGetPropertySize","features":[407]},{"name":"GdipGetRegionBounds","features":[407]},{"name":"GdipGetRegionBoundsI","features":[407]},{"name":"GdipGetRegionData","features":[407]},{"name":"GdipGetRegionDataSize","features":[407]},{"name":"GdipGetRegionHRgn","features":[314,407]},{"name":"GdipGetRegionScans","features":[407]},{"name":"GdipGetRegionScansCount","features":[407]},{"name":"GdipGetRegionScansI","features":[407]},{"name":"GdipGetRenderingOrigin","features":[407]},{"name":"GdipGetSmoothingMode","features":[407]},{"name":"GdipGetSolidFillColor","features":[407]},{"name":"GdipGetStringFormatAlign","features":[407]},{"name":"GdipGetStringFormatDigitSubstitution","features":[407]},{"name":"GdipGetStringFormatFlags","features":[407]},{"name":"GdipGetStringFormatHotkeyPrefix","features":[407]},{"name":"GdipGetStringFormatLineAlign","features":[407]},{"name":"GdipGetStringFormatMeasurableCharacterRangeCount","features":[407]},{"name":"GdipGetStringFormatTabStopCount","features":[407]},{"name":"GdipGetStringFormatTabStops","features":[407]},{"name":"GdipGetStringFormatTrimming","features":[407]},{"name":"GdipGetTextContrast","features":[407]},{"name":"GdipGetTextRenderingHint","features":[407]},{"name":"GdipGetTextureImage","features":[407]},{"name":"GdipGetTextureTransform","features":[407]},{"name":"GdipGetTextureWrapMode","features":[407]},{"name":"GdipGetVisibleClipBounds","features":[407]},{"name":"GdipGetVisibleClipBoundsI","features":[407]},{"name":"GdipGetWorldTransform","features":[407]},{"name":"GdipGraphicsClear","features":[407]},{"name":"GdipGraphicsSetAbort","features":[407]},{"name":"GdipImageForceValidation","features":[407]},{"name":"GdipImageGetFrameCount","features":[407]},{"name":"GdipImageGetFrameDimensionsCount","features":[407]},{"name":"GdipImageGetFrameDimensionsList","features":[407]},{"name":"GdipImageRotateFlip","features":[407]},{"name":"GdipImageSelectActiveFrame","features":[407]},{"name":"GdipImageSetAbort","features":[407]},{"name":"GdipInitializePalette","features":[303,407]},{"name":"GdipInvertMatrix","features":[407]},{"name":"GdipIsClipEmpty","features":[303,407]},{"name":"GdipIsEmptyRegion","features":[303,407]},{"name":"GdipIsEqualRegion","features":[303,407]},{"name":"GdipIsInfiniteRegion","features":[303,407]},{"name":"GdipIsMatrixEqual","features":[303,407]},{"name":"GdipIsMatrixIdentity","features":[303,407]},{"name":"GdipIsMatrixInvertible","features":[303,407]},{"name":"GdipIsOutlineVisiblePathPoint","features":[303,407]},{"name":"GdipIsOutlineVisiblePathPointI","features":[303,407]},{"name":"GdipIsStyleAvailable","features":[303,407]},{"name":"GdipIsVisibleClipEmpty","features":[303,407]},{"name":"GdipIsVisiblePathPoint","features":[303,407]},{"name":"GdipIsVisiblePathPointI","features":[303,407]},{"name":"GdipIsVisiblePoint","features":[303,407]},{"name":"GdipIsVisiblePointI","features":[303,407]},{"name":"GdipIsVisibleRect","features":[303,407]},{"name":"GdipIsVisibleRectI","features":[303,407]},{"name":"GdipIsVisibleRegionPoint","features":[303,407]},{"name":"GdipIsVisibleRegionPointI","features":[303,407]},{"name":"GdipIsVisibleRegionRect","features":[303,407]},{"name":"GdipIsVisibleRegionRectI","features":[303,407]},{"name":"GdipLoadImageFromFile","features":[407]},{"name":"GdipLoadImageFromFileICM","features":[407]},{"name":"GdipLoadImageFromStream","features":[407,354]},{"name":"GdipLoadImageFromStreamICM","features":[407,354]},{"name":"GdipMeasureCharacterRanges","features":[407]},{"name":"GdipMeasureDriverString","features":[407]},{"name":"GdipMeasureString","features":[407]},{"name":"GdipMultiplyLineTransform","features":[407]},{"name":"GdipMultiplyMatrix","features":[407]},{"name":"GdipMultiplyPathGradientTransform","features":[407]},{"name":"GdipMultiplyPenTransform","features":[407]},{"name":"GdipMultiplyTextureTransform","features":[407]},{"name":"GdipMultiplyWorldTransform","features":[407]},{"name":"GdipNewInstalledFontCollection","features":[407]},{"name":"GdipNewPrivateFontCollection","features":[407]},{"name":"GdipPathIterCopyData","features":[407]},{"name":"GdipPathIterEnumerate","features":[407]},{"name":"GdipPathIterGetCount","features":[407]},{"name":"GdipPathIterGetSubpathCount","features":[407]},{"name":"GdipPathIterHasCurve","features":[303,407]},{"name":"GdipPathIterIsValid","features":[303,407]},{"name":"GdipPathIterNextMarker","features":[407]},{"name":"GdipPathIterNextMarkerPath","features":[407]},{"name":"GdipPathIterNextPathType","features":[407]},{"name":"GdipPathIterNextSubpath","features":[303,407]},{"name":"GdipPathIterNextSubpathPath","features":[303,407]},{"name":"GdipPathIterRewind","features":[407]},{"name":"GdipPlayMetafileRecord","features":[407]},{"name":"GdipPrivateAddFontFile","features":[407]},{"name":"GdipPrivateAddMemoryFont","features":[407]},{"name":"GdipRecordMetafile","features":[314,407]},{"name":"GdipRecordMetafileFileName","features":[314,407]},{"name":"GdipRecordMetafileFileNameI","features":[314,407]},{"name":"GdipRecordMetafileI","features":[314,407]},{"name":"GdipRecordMetafileStream","features":[314,407,354]},{"name":"GdipRecordMetafileStreamI","features":[314,407,354]},{"name":"GdipReleaseDC","features":[314,407]},{"name":"GdipRemovePropertyItem","features":[407]},{"name":"GdipResetClip","features":[407]},{"name":"GdipResetImageAttributes","features":[407]},{"name":"GdipResetLineTransform","features":[407]},{"name":"GdipResetPageTransform","features":[407]},{"name":"GdipResetPath","features":[407]},{"name":"GdipResetPathGradientTransform","features":[407]},{"name":"GdipResetPenTransform","features":[407]},{"name":"GdipResetTextureTransform","features":[407]},{"name":"GdipResetWorldTransform","features":[407]},{"name":"GdipRestoreGraphics","features":[407]},{"name":"GdipReversePath","features":[407]},{"name":"GdipRotateLineTransform","features":[407]},{"name":"GdipRotateMatrix","features":[407]},{"name":"GdipRotatePathGradientTransform","features":[407]},{"name":"GdipRotatePenTransform","features":[407]},{"name":"GdipRotateTextureTransform","features":[407]},{"name":"GdipRotateWorldTransform","features":[407]},{"name":"GdipSaveAdd","features":[407]},{"name":"GdipSaveAddImage","features":[407]},{"name":"GdipSaveGraphics","features":[407]},{"name":"GdipSaveImageToFile","features":[407]},{"name":"GdipSaveImageToStream","features":[407,354]},{"name":"GdipScaleLineTransform","features":[407]},{"name":"GdipScaleMatrix","features":[407]},{"name":"GdipScalePathGradientTransform","features":[407]},{"name":"GdipScalePenTransform","features":[407]},{"name":"GdipScaleTextureTransform","features":[407]},{"name":"GdipScaleWorldTransform","features":[407]},{"name":"GdipSetAdjustableArrowCapFillState","features":[303,407]},{"name":"GdipSetAdjustableArrowCapHeight","features":[407]},{"name":"GdipSetAdjustableArrowCapMiddleInset","features":[407]},{"name":"GdipSetAdjustableArrowCapWidth","features":[407]},{"name":"GdipSetClipGraphics","features":[407]},{"name":"GdipSetClipHrgn","features":[314,407]},{"name":"GdipSetClipPath","features":[407]},{"name":"GdipSetClipRect","features":[407]},{"name":"GdipSetClipRectI","features":[407]},{"name":"GdipSetClipRegion","features":[407]},{"name":"GdipSetCompositingMode","features":[407]},{"name":"GdipSetCompositingQuality","features":[407]},{"name":"GdipSetCustomLineCapBaseCap","features":[407]},{"name":"GdipSetCustomLineCapBaseInset","features":[407]},{"name":"GdipSetCustomLineCapStrokeCaps","features":[407]},{"name":"GdipSetCustomLineCapStrokeJoin","features":[407]},{"name":"GdipSetCustomLineCapWidthScale","features":[407]},{"name":"GdipSetEffectParameters","features":[407]},{"name":"GdipSetEmpty","features":[407]},{"name":"GdipSetImageAttributesCachedBackground","features":[303,407]},{"name":"GdipSetImageAttributesColorKeys","features":[303,407]},{"name":"GdipSetImageAttributesColorMatrix","features":[303,407]},{"name":"GdipSetImageAttributesGamma","features":[303,407]},{"name":"GdipSetImageAttributesNoOp","features":[303,407]},{"name":"GdipSetImageAttributesOutputChannel","features":[303,407]},{"name":"GdipSetImageAttributesOutputChannelColorProfile","features":[303,407]},{"name":"GdipSetImageAttributesRemapTable","features":[303,407]},{"name":"GdipSetImageAttributesThreshold","features":[303,407]},{"name":"GdipSetImageAttributesToIdentity","features":[407]},{"name":"GdipSetImageAttributesWrapMode","features":[303,407]},{"name":"GdipSetImagePalette","features":[407]},{"name":"GdipSetInfinite","features":[407]},{"name":"GdipSetInterpolationMode","features":[407]},{"name":"GdipSetLineBlend","features":[407]},{"name":"GdipSetLineColors","features":[407]},{"name":"GdipSetLineGammaCorrection","features":[303,407]},{"name":"GdipSetLineLinearBlend","features":[407]},{"name":"GdipSetLinePresetBlend","features":[407]},{"name":"GdipSetLineSigmaBlend","features":[407]},{"name":"GdipSetLineTransform","features":[407]},{"name":"GdipSetLineWrapMode","features":[407]},{"name":"GdipSetMatrixElements","features":[407]},{"name":"GdipSetMetafileDownLevelRasterizationLimit","features":[407]},{"name":"GdipSetPageScale","features":[407]},{"name":"GdipSetPageUnit","features":[407]},{"name":"GdipSetPathFillMode","features":[407]},{"name":"GdipSetPathGradientBlend","features":[407]},{"name":"GdipSetPathGradientCenterColor","features":[407]},{"name":"GdipSetPathGradientCenterPoint","features":[407]},{"name":"GdipSetPathGradientCenterPointI","features":[407]},{"name":"GdipSetPathGradientFocusScales","features":[407]},{"name":"GdipSetPathGradientGammaCorrection","features":[303,407]},{"name":"GdipSetPathGradientLinearBlend","features":[407]},{"name":"GdipSetPathGradientPath","features":[407]},{"name":"GdipSetPathGradientPresetBlend","features":[407]},{"name":"GdipSetPathGradientSigmaBlend","features":[407]},{"name":"GdipSetPathGradientSurroundColorsWithCount","features":[407]},{"name":"GdipSetPathGradientTransform","features":[407]},{"name":"GdipSetPathGradientWrapMode","features":[407]},{"name":"GdipSetPathMarker","features":[407]},{"name":"GdipSetPenBrushFill","features":[407]},{"name":"GdipSetPenColor","features":[407]},{"name":"GdipSetPenCompoundArray","features":[407]},{"name":"GdipSetPenCustomEndCap","features":[407]},{"name":"GdipSetPenCustomStartCap","features":[407]},{"name":"GdipSetPenDashArray","features":[407]},{"name":"GdipSetPenDashCap197819","features":[407]},{"name":"GdipSetPenDashOffset","features":[407]},{"name":"GdipSetPenDashStyle","features":[407]},{"name":"GdipSetPenEndCap","features":[407]},{"name":"GdipSetPenLineCap197819","features":[407]},{"name":"GdipSetPenLineJoin","features":[407]},{"name":"GdipSetPenMiterLimit","features":[407]},{"name":"GdipSetPenMode","features":[407]},{"name":"GdipSetPenStartCap","features":[407]},{"name":"GdipSetPenTransform","features":[407]},{"name":"GdipSetPenUnit","features":[407]},{"name":"GdipSetPenWidth","features":[407]},{"name":"GdipSetPixelOffsetMode","features":[407]},{"name":"GdipSetPropertyItem","features":[407]},{"name":"GdipSetRenderingOrigin","features":[407]},{"name":"GdipSetSmoothingMode","features":[407]},{"name":"GdipSetSolidFillColor","features":[407]},{"name":"GdipSetStringFormatAlign","features":[407]},{"name":"GdipSetStringFormatDigitSubstitution","features":[407]},{"name":"GdipSetStringFormatFlags","features":[407]},{"name":"GdipSetStringFormatHotkeyPrefix","features":[407]},{"name":"GdipSetStringFormatLineAlign","features":[407]},{"name":"GdipSetStringFormatMeasurableCharacterRanges","features":[407]},{"name":"GdipSetStringFormatTabStops","features":[407]},{"name":"GdipSetStringFormatTrimming","features":[407]},{"name":"GdipSetTextContrast","features":[407]},{"name":"GdipSetTextRenderingHint","features":[407]},{"name":"GdipSetTextureTransform","features":[407]},{"name":"GdipSetTextureWrapMode","features":[407]},{"name":"GdipSetWorldTransform","features":[407]},{"name":"GdipShearMatrix","features":[407]},{"name":"GdipStartPathFigure","features":[407]},{"name":"GdipStringFormatGetGenericDefault","features":[407]},{"name":"GdipStringFormatGetGenericTypographic","features":[407]},{"name":"GdipTestControl","features":[407]},{"name":"GdipTransformMatrixPoints","features":[407]},{"name":"GdipTransformMatrixPointsI","features":[407]},{"name":"GdipTransformPath","features":[407]},{"name":"GdipTransformPoints","features":[407]},{"name":"GdipTransformPointsI","features":[407]},{"name":"GdipTransformRegion","features":[407]},{"name":"GdipTranslateClip","features":[407]},{"name":"GdipTranslateClipI","features":[407]},{"name":"GdipTranslateLineTransform","features":[407]},{"name":"GdipTranslateMatrix","features":[407]},{"name":"GdipTranslatePathGradientTransform","features":[407]},{"name":"GdipTranslatePenTransform","features":[407]},{"name":"GdipTranslateRegion","features":[407]},{"name":"GdipTranslateRegionI","features":[407]},{"name":"GdipTranslateTextureTransform","features":[407]},{"name":"GdipTranslateWorldTransform","features":[407]},{"name":"GdipVectorTransformMatrixPoints","features":[407]},{"name":"GdipVectorTransformMatrixPointsI","features":[407]},{"name":"GdipWarpPath","features":[407]},{"name":"GdipWidenPath","features":[407]},{"name":"GdipWindingModeOutline","features":[407]},{"name":"GdiplusAbort","features":[407]},{"name":"GdiplusNotInitialized","features":[407]},{"name":"GdiplusNotificationHook","features":[407]},{"name":"GdiplusNotificationUnhook","features":[407]},{"name":"GdiplusShutdown","features":[407]},{"name":"GdiplusStartup","features":[303,407]},{"name":"GdiplusStartupDefault","features":[407]},{"name":"GdiplusStartupInput","features":[303,407]},{"name":"GdiplusStartupInputEx","features":[303,407]},{"name":"GdiplusStartupNoSetRound","features":[407]},{"name":"GdiplusStartupOutput","features":[407]},{"name":"GdiplusStartupParams","features":[407]},{"name":"GdiplusStartupSetPSValue","features":[407]},{"name":"GdiplusStartupTransparencyMask","features":[407]},{"name":"GenericError","features":[407]},{"name":"GenericFontFamily","features":[407]},{"name":"GenericFontFamilyMonospace","features":[407]},{"name":"GenericFontFamilySansSerif","features":[407]},{"name":"GenericFontFamilySerif","features":[407]},{"name":"GetThumbnailImageAbort","features":[303,407]},{"name":"GpAdjustableArrowCap","features":[407]},{"name":"GpBitmap","features":[407]},{"name":"GpBrush","features":[407]},{"name":"GpCachedBitmap","features":[407]},{"name":"GpCustomLineCap","features":[407]},{"name":"GpFont","features":[407]},{"name":"GpFontCollection","features":[407]},{"name":"GpFontFamily","features":[407]},{"name":"GpGraphics","features":[407]},{"name":"GpHatch","features":[407]},{"name":"GpImage","features":[407]},{"name":"GpImageAttributes","features":[407]},{"name":"GpInstalledFontCollection","features":[407]},{"name":"GpLineGradient","features":[407]},{"name":"GpMetafile","features":[407]},{"name":"GpPath","features":[407]},{"name":"GpPathGradient","features":[407]},{"name":"GpPathIterator","features":[407]},{"name":"GpPen","features":[407]},{"name":"GpPrivateFontCollection","features":[407]},{"name":"GpRegion","features":[407]},{"name":"GpSolidFill","features":[407]},{"name":"GpStringFormat","features":[407]},{"name":"GpTestControlEnum","features":[407]},{"name":"GpTexture","features":[407]},{"name":"HatchStyle","features":[407]},{"name":"HatchStyle05Percent","features":[407]},{"name":"HatchStyle10Percent","features":[407]},{"name":"HatchStyle20Percent","features":[407]},{"name":"HatchStyle25Percent","features":[407]},{"name":"HatchStyle30Percent","features":[407]},{"name":"HatchStyle40Percent","features":[407]},{"name":"HatchStyle50Percent","features":[407]},{"name":"HatchStyle60Percent","features":[407]},{"name":"HatchStyle70Percent","features":[407]},{"name":"HatchStyle75Percent","features":[407]},{"name":"HatchStyle80Percent","features":[407]},{"name":"HatchStyle90Percent","features":[407]},{"name":"HatchStyleBackwardDiagonal","features":[407]},{"name":"HatchStyleCross","features":[407]},{"name":"HatchStyleDarkDownwardDiagonal","features":[407]},{"name":"HatchStyleDarkHorizontal","features":[407]},{"name":"HatchStyleDarkUpwardDiagonal","features":[407]},{"name":"HatchStyleDarkVertical","features":[407]},{"name":"HatchStyleDashedDownwardDiagonal","features":[407]},{"name":"HatchStyleDashedHorizontal","features":[407]},{"name":"HatchStyleDashedUpwardDiagonal","features":[407]},{"name":"HatchStyleDashedVertical","features":[407]},{"name":"HatchStyleDiagonalBrick","features":[407]},{"name":"HatchStyleDiagonalCross","features":[407]},{"name":"HatchStyleDivot","features":[407]},{"name":"HatchStyleDottedDiamond","features":[407]},{"name":"HatchStyleDottedGrid","features":[407]},{"name":"HatchStyleForwardDiagonal","features":[407]},{"name":"HatchStyleHorizontal","features":[407]},{"name":"HatchStyleHorizontalBrick","features":[407]},{"name":"HatchStyleLargeCheckerBoard","features":[407]},{"name":"HatchStyleLargeConfetti","features":[407]},{"name":"HatchStyleLargeGrid","features":[407]},{"name":"HatchStyleLightDownwardDiagonal","features":[407]},{"name":"HatchStyleLightHorizontal","features":[407]},{"name":"HatchStyleLightUpwardDiagonal","features":[407]},{"name":"HatchStyleLightVertical","features":[407]},{"name":"HatchStyleMax","features":[407]},{"name":"HatchStyleMin","features":[407]},{"name":"HatchStyleNarrowHorizontal","features":[407]},{"name":"HatchStyleNarrowVertical","features":[407]},{"name":"HatchStyleOutlinedDiamond","features":[407]},{"name":"HatchStylePlaid","features":[407]},{"name":"HatchStyleShingle","features":[407]},{"name":"HatchStyleSmallCheckerBoard","features":[407]},{"name":"HatchStyleSmallConfetti","features":[407]},{"name":"HatchStyleSmallGrid","features":[407]},{"name":"HatchStyleSolidDiamond","features":[407]},{"name":"HatchStyleSphere","features":[407]},{"name":"HatchStyleTotal","features":[407]},{"name":"HatchStyleTrellis","features":[407]},{"name":"HatchStyleVertical","features":[407]},{"name":"HatchStyleWave","features":[407]},{"name":"HatchStyleWeave","features":[407]},{"name":"HatchStyleWideDownwardDiagonal","features":[407]},{"name":"HatchStyleWideUpwardDiagonal","features":[407]},{"name":"HatchStyleZigZag","features":[407]},{"name":"HistogramFormat","features":[407]},{"name":"HistogramFormatA","features":[407]},{"name":"HistogramFormatARGB","features":[407]},{"name":"HistogramFormatB","features":[407]},{"name":"HistogramFormatG","features":[407]},{"name":"HistogramFormatGray","features":[407]},{"name":"HistogramFormatPARGB","features":[407]},{"name":"HistogramFormatR","features":[407]},{"name":"HistogramFormatRGB","features":[407]},{"name":"HotkeyPrefix","features":[407]},{"name":"HotkeyPrefixHide","features":[407]},{"name":"HotkeyPrefixNone","features":[407]},{"name":"HotkeyPrefixShow","features":[407]},{"name":"HueSaturationLightness","features":[303,407]},{"name":"HueSaturationLightnessEffectGuid","features":[407]},{"name":"HueSaturationLightnessParams","features":[407]},{"name":"IImageBytes","features":[407]},{"name":"Image","features":[407]},{"name":"ImageAbort","features":[303,407]},{"name":"ImageCodecFlags","features":[407]},{"name":"ImageCodecFlagsBlockingDecode","features":[407]},{"name":"ImageCodecFlagsBuiltin","features":[407]},{"name":"ImageCodecFlagsDecoder","features":[407]},{"name":"ImageCodecFlagsEncoder","features":[407]},{"name":"ImageCodecFlagsSeekableEncode","features":[407]},{"name":"ImageCodecFlagsSupportBitmap","features":[407]},{"name":"ImageCodecFlagsSupportVector","features":[407]},{"name":"ImageCodecFlagsSystem","features":[407]},{"name":"ImageCodecFlagsUser","features":[407]},{"name":"ImageCodecInfo","features":[407]},{"name":"ImageFlags","features":[407]},{"name":"ImageFlagsCaching","features":[407]},{"name":"ImageFlagsColorSpaceCMYK","features":[407]},{"name":"ImageFlagsColorSpaceGRAY","features":[407]},{"name":"ImageFlagsColorSpaceRGB","features":[407]},{"name":"ImageFlagsColorSpaceYCBCR","features":[407]},{"name":"ImageFlagsColorSpaceYCCK","features":[407]},{"name":"ImageFlagsHasAlpha","features":[407]},{"name":"ImageFlagsHasRealDPI","features":[407]},{"name":"ImageFlagsHasRealPixelSize","features":[407]},{"name":"ImageFlagsHasTranslucent","features":[407]},{"name":"ImageFlagsNone","features":[407]},{"name":"ImageFlagsPartiallyScalable","features":[407]},{"name":"ImageFlagsReadOnly","features":[407]},{"name":"ImageFlagsScalable","features":[407]},{"name":"ImageFormatBMP","features":[407]},{"name":"ImageFormatEMF","features":[407]},{"name":"ImageFormatEXIF","features":[407]},{"name":"ImageFormatGIF","features":[407]},{"name":"ImageFormatHEIF","features":[407]},{"name":"ImageFormatIcon","features":[407]},{"name":"ImageFormatJPEG","features":[407]},{"name":"ImageFormatMemoryBMP","features":[407]},{"name":"ImageFormatPNG","features":[407]},{"name":"ImageFormatTIFF","features":[407]},{"name":"ImageFormatUndefined","features":[407]},{"name":"ImageFormatWEBP","features":[407]},{"name":"ImageFormatWMF","features":[407]},{"name":"ImageItemData","features":[407]},{"name":"ImageLockMode","features":[407]},{"name":"ImageLockModeRead","features":[407]},{"name":"ImageLockModeUserInputBuf","features":[407]},{"name":"ImageLockModeWrite","features":[407]},{"name":"ImageType","features":[407]},{"name":"ImageTypeBitmap","features":[407]},{"name":"ImageTypeMetafile","features":[407]},{"name":"ImageTypeUnknown","features":[407]},{"name":"InstalledFontCollection","features":[407]},{"name":"InsufficientBuffer","features":[407]},{"name":"InterpolationMode","features":[407]},{"name":"InterpolationModeBicubic","features":[407]},{"name":"InterpolationModeBilinear","features":[407]},{"name":"InterpolationModeDefault","features":[407]},{"name":"InterpolationModeHighQuality","features":[407]},{"name":"InterpolationModeHighQualityBicubic","features":[407]},{"name":"InterpolationModeHighQualityBilinear","features":[407]},{"name":"InterpolationModeInvalid","features":[407]},{"name":"InterpolationModeLowQuality","features":[407]},{"name":"InterpolationModeNearestNeighbor","features":[407]},{"name":"InvalidParameter","features":[407]},{"name":"ItemDataPosition","features":[407]},{"name":"ItemDataPositionAfterBits","features":[407]},{"name":"ItemDataPositionAfterHeader","features":[407]},{"name":"ItemDataPositionAfterPalette","features":[407]},{"name":"Levels","features":[303,407]},{"name":"LevelsEffectGuid","features":[407]},{"name":"LevelsParams","features":[407]},{"name":"LineCap","features":[407]},{"name":"LineCapAnchorMask","features":[407]},{"name":"LineCapArrowAnchor","features":[407]},{"name":"LineCapCustom","features":[407]},{"name":"LineCapDiamondAnchor","features":[407]},{"name":"LineCapFlat","features":[407]},{"name":"LineCapNoAnchor","features":[407]},{"name":"LineCapRound","features":[407]},{"name":"LineCapRoundAnchor","features":[407]},{"name":"LineCapSquare","features":[407]},{"name":"LineCapSquareAnchor","features":[407]},{"name":"LineCapTriangle","features":[407]},{"name":"LineJoin","features":[407]},{"name":"LineJoinBevel","features":[407]},{"name":"LineJoinMiter","features":[407]},{"name":"LineJoinMiterClipped","features":[407]},{"name":"LineJoinRound","features":[407]},{"name":"LinearGradientMode","features":[407]},{"name":"LinearGradientModeBackwardDiagonal","features":[407]},{"name":"LinearGradientModeForwardDiagonal","features":[407]},{"name":"LinearGradientModeHorizontal","features":[407]},{"name":"LinearGradientModeVertical","features":[407]},{"name":"Matrix","features":[407]},{"name":"MatrixOrder","features":[407]},{"name":"MatrixOrderAppend","features":[407]},{"name":"MatrixOrderPrepend","features":[407]},{"name":"Metafile","features":[407]},{"name":"MetafileFrameUnit","features":[407]},{"name":"MetafileFrameUnitDocument","features":[407]},{"name":"MetafileFrameUnitGdi","features":[407]},{"name":"MetafileFrameUnitInch","features":[407]},{"name":"MetafileFrameUnitMillimeter","features":[407]},{"name":"MetafileFrameUnitPixel","features":[407]},{"name":"MetafileFrameUnitPoint","features":[407]},{"name":"MetafileHeader","features":[303,314,407]},{"name":"MetafileType","features":[407]},{"name":"MetafileTypeEmf","features":[407]},{"name":"MetafileTypeEmfPlusDual","features":[407]},{"name":"MetafileTypeEmfPlusOnly","features":[407]},{"name":"MetafileTypeInvalid","features":[407]},{"name":"MetafileTypeWmf","features":[407]},{"name":"MetafileTypeWmfPlaceable","features":[407]},{"name":"NotImplemented","features":[407]},{"name":"NotTrueTypeFont","features":[407]},{"name":"NotificationHookProc","features":[407]},{"name":"NotificationUnhookProc","features":[407]},{"name":"ObjectBusy","features":[407]},{"name":"ObjectType","features":[407]},{"name":"ObjectTypeBrush","features":[407]},{"name":"ObjectTypeCustomLineCap","features":[407]},{"name":"ObjectTypeFont","features":[407]},{"name":"ObjectTypeGraphics","features":[407]},{"name":"ObjectTypeImage","features":[407]},{"name":"ObjectTypeImageAttributes","features":[407]},{"name":"ObjectTypeInvalid","features":[407]},{"name":"ObjectTypeMax","features":[407]},{"name":"ObjectTypeMin","features":[407]},{"name":"ObjectTypePath","features":[407]},{"name":"ObjectTypePen","features":[407]},{"name":"ObjectTypeRegion","features":[407]},{"name":"ObjectTypeStringFormat","features":[407]},{"name":"Ok","features":[407]},{"name":"OutOfMemory","features":[407]},{"name":"PWMFRect16","features":[407]},{"name":"PaletteFlags","features":[407]},{"name":"PaletteFlagsGrayScale","features":[407]},{"name":"PaletteFlagsHalftone","features":[407]},{"name":"PaletteFlagsHasAlpha","features":[407]},{"name":"PaletteType","features":[407]},{"name":"PaletteTypeCustom","features":[407]},{"name":"PaletteTypeFixedBW","features":[407]},{"name":"PaletteTypeFixedHalftone125","features":[407]},{"name":"PaletteTypeFixedHalftone216","features":[407]},{"name":"PaletteTypeFixedHalftone252","features":[407]},{"name":"PaletteTypeFixedHalftone256","features":[407]},{"name":"PaletteTypeFixedHalftone27","features":[407]},{"name":"PaletteTypeFixedHalftone64","features":[407]},{"name":"PaletteTypeFixedHalftone8","features":[407]},{"name":"PaletteTypeOptimal","features":[407]},{"name":"PathData","features":[407]},{"name":"PathPointType","features":[407]},{"name":"PathPointTypeBezier","features":[407]},{"name":"PathPointTypeBezier3","features":[407]},{"name":"PathPointTypeCloseSubpath","features":[407]},{"name":"PathPointTypeDashMode","features":[407]},{"name":"PathPointTypeLine","features":[407]},{"name":"PathPointTypePathMarker","features":[407]},{"name":"PathPointTypePathTypeMask","features":[407]},{"name":"PathPointTypeStart","features":[407]},{"name":"PenAlignment","features":[407]},{"name":"PenAlignmentCenter","features":[407]},{"name":"PenAlignmentInset","features":[407]},{"name":"PenType","features":[407]},{"name":"PenTypeHatchFill","features":[407]},{"name":"PenTypeLinearGradient","features":[407]},{"name":"PenTypePathGradient","features":[407]},{"name":"PenTypeSolidColor","features":[407]},{"name":"PenTypeTextureFill","features":[407]},{"name":"PenTypeUnknown","features":[407]},{"name":"PixelFormatAlpha","features":[407]},{"name":"PixelFormatCanonical","features":[407]},{"name":"PixelFormatDontCare","features":[407]},{"name":"PixelFormatExtended","features":[407]},{"name":"PixelFormatGDI","features":[407]},{"name":"PixelFormatIndexed","features":[407]},{"name":"PixelFormatMax","features":[407]},{"name":"PixelFormatPAlpha","features":[407]},{"name":"PixelFormatUndefined","features":[407]},{"name":"PixelOffsetMode","features":[407]},{"name":"PixelOffsetModeDefault","features":[407]},{"name":"PixelOffsetModeHalf","features":[407]},{"name":"PixelOffsetModeHighQuality","features":[407]},{"name":"PixelOffsetModeHighSpeed","features":[407]},{"name":"PixelOffsetModeInvalid","features":[407]},{"name":"PixelOffsetModeNone","features":[407]},{"name":"Point","features":[407]},{"name":"PointF","features":[407]},{"name":"PrivateFontCollection","features":[407]},{"name":"ProfileNotFound","features":[407]},{"name":"PropertyItem","features":[407]},{"name":"PropertyNotFound","features":[407]},{"name":"PropertyNotSupported","features":[407]},{"name":"PropertyTagArtist","features":[407]},{"name":"PropertyTagBitsPerSample","features":[407]},{"name":"PropertyTagCellHeight","features":[407]},{"name":"PropertyTagCellWidth","features":[407]},{"name":"PropertyTagChrominanceTable","features":[407]},{"name":"PropertyTagColorMap","features":[407]},{"name":"PropertyTagColorTransferFunction","features":[407]},{"name":"PropertyTagCompression","features":[407]},{"name":"PropertyTagCopyright","features":[407]},{"name":"PropertyTagDateTime","features":[407]},{"name":"PropertyTagDocumentName","features":[407]},{"name":"PropertyTagDotRange","features":[407]},{"name":"PropertyTagEquipMake","features":[407]},{"name":"PropertyTagEquipModel","features":[407]},{"name":"PropertyTagExifAperture","features":[407]},{"name":"PropertyTagExifBrightness","features":[407]},{"name":"PropertyTagExifCfaPattern","features":[407]},{"name":"PropertyTagExifColorSpace","features":[407]},{"name":"PropertyTagExifCompBPP","features":[407]},{"name":"PropertyTagExifCompConfig","features":[407]},{"name":"PropertyTagExifContrast","features":[407]},{"name":"PropertyTagExifCustomRendered","features":[407]},{"name":"PropertyTagExifDTDigSS","features":[407]},{"name":"PropertyTagExifDTDigitized","features":[407]},{"name":"PropertyTagExifDTOrig","features":[407]},{"name":"PropertyTagExifDTOrigSS","features":[407]},{"name":"PropertyTagExifDTSubsec","features":[407]},{"name":"PropertyTagExifDeviceSettingDesc","features":[407]},{"name":"PropertyTagExifDigitalZoomRatio","features":[407]},{"name":"PropertyTagExifExposureBias","features":[407]},{"name":"PropertyTagExifExposureIndex","features":[407]},{"name":"PropertyTagExifExposureMode","features":[407]},{"name":"PropertyTagExifExposureProg","features":[407]},{"name":"PropertyTagExifExposureTime","features":[407]},{"name":"PropertyTagExifFNumber","features":[407]},{"name":"PropertyTagExifFPXVer","features":[407]},{"name":"PropertyTagExifFileSource","features":[407]},{"name":"PropertyTagExifFlash","features":[407]},{"name":"PropertyTagExifFlashEnergy","features":[407]},{"name":"PropertyTagExifFocalLength","features":[407]},{"name":"PropertyTagExifFocalLengthIn35mmFilm","features":[407]},{"name":"PropertyTagExifFocalResUnit","features":[407]},{"name":"PropertyTagExifFocalXRes","features":[407]},{"name":"PropertyTagExifFocalYRes","features":[407]},{"name":"PropertyTagExifGainControl","features":[407]},{"name":"PropertyTagExifIFD","features":[407]},{"name":"PropertyTagExifISOSpeed","features":[407]},{"name":"PropertyTagExifInterop","features":[407]},{"name":"PropertyTagExifLightSource","features":[407]},{"name":"PropertyTagExifMakerNote","features":[407]},{"name":"PropertyTagExifMaxAperture","features":[407]},{"name":"PropertyTagExifMeteringMode","features":[407]},{"name":"PropertyTagExifOECF","features":[407]},{"name":"PropertyTagExifPixXDim","features":[407]},{"name":"PropertyTagExifPixYDim","features":[407]},{"name":"PropertyTagExifRelatedWav","features":[407]},{"name":"PropertyTagExifSaturation","features":[407]},{"name":"PropertyTagExifSceneCaptureType","features":[407]},{"name":"PropertyTagExifSceneType","features":[407]},{"name":"PropertyTagExifSensingMethod","features":[407]},{"name":"PropertyTagExifSharpness","features":[407]},{"name":"PropertyTagExifShutterSpeed","features":[407]},{"name":"PropertyTagExifSpatialFR","features":[407]},{"name":"PropertyTagExifSpectralSense","features":[407]},{"name":"PropertyTagExifSubjectArea","features":[407]},{"name":"PropertyTagExifSubjectDist","features":[407]},{"name":"PropertyTagExifSubjectDistanceRange","features":[407]},{"name":"PropertyTagExifSubjectLoc","features":[407]},{"name":"PropertyTagExifUniqueImageID","features":[407]},{"name":"PropertyTagExifUserComment","features":[407]},{"name":"PropertyTagExifVer","features":[407]},{"name":"PropertyTagExifWhiteBalance","features":[407]},{"name":"PropertyTagExtraSamples","features":[407]},{"name":"PropertyTagFillOrder","features":[407]},{"name":"PropertyTagFrameDelay","features":[407]},{"name":"PropertyTagFreeByteCounts","features":[407]},{"name":"PropertyTagFreeOffset","features":[407]},{"name":"PropertyTagGamma","features":[407]},{"name":"PropertyTagGlobalPalette","features":[407]},{"name":"PropertyTagGpsAltitude","features":[407]},{"name":"PropertyTagGpsAltitudeRef","features":[407]},{"name":"PropertyTagGpsAreaInformation","features":[407]},{"name":"PropertyTagGpsDate","features":[407]},{"name":"PropertyTagGpsDestBear","features":[407]},{"name":"PropertyTagGpsDestBearRef","features":[407]},{"name":"PropertyTagGpsDestDist","features":[407]},{"name":"PropertyTagGpsDestDistRef","features":[407]},{"name":"PropertyTagGpsDestLat","features":[407]},{"name":"PropertyTagGpsDestLatRef","features":[407]},{"name":"PropertyTagGpsDestLong","features":[407]},{"name":"PropertyTagGpsDestLongRef","features":[407]},{"name":"PropertyTagGpsDifferential","features":[407]},{"name":"PropertyTagGpsGpsDop","features":[407]},{"name":"PropertyTagGpsGpsMeasureMode","features":[407]},{"name":"PropertyTagGpsGpsSatellites","features":[407]},{"name":"PropertyTagGpsGpsStatus","features":[407]},{"name":"PropertyTagGpsGpsTime","features":[407]},{"name":"PropertyTagGpsIFD","features":[407]},{"name":"PropertyTagGpsImgDir","features":[407]},{"name":"PropertyTagGpsImgDirRef","features":[407]},{"name":"PropertyTagGpsLatitude","features":[407]},{"name":"PropertyTagGpsLatitudeRef","features":[407]},{"name":"PropertyTagGpsLongitude","features":[407]},{"name":"PropertyTagGpsLongitudeRef","features":[407]},{"name":"PropertyTagGpsMapDatum","features":[407]},{"name":"PropertyTagGpsProcessingMethod","features":[407]},{"name":"PropertyTagGpsSpeed","features":[407]},{"name":"PropertyTagGpsSpeedRef","features":[407]},{"name":"PropertyTagGpsTrack","features":[407]},{"name":"PropertyTagGpsTrackRef","features":[407]},{"name":"PropertyTagGpsVer","features":[407]},{"name":"PropertyTagGrayResponseCurve","features":[407]},{"name":"PropertyTagGrayResponseUnit","features":[407]},{"name":"PropertyTagGridSize","features":[407]},{"name":"PropertyTagHalftoneDegree","features":[407]},{"name":"PropertyTagHalftoneHints","features":[407]},{"name":"PropertyTagHalftoneLPI","features":[407]},{"name":"PropertyTagHalftoneLPIUnit","features":[407]},{"name":"PropertyTagHalftoneMisc","features":[407]},{"name":"PropertyTagHalftoneScreen","features":[407]},{"name":"PropertyTagHalftoneShape","features":[407]},{"name":"PropertyTagHostComputer","features":[407]},{"name":"PropertyTagICCProfile","features":[407]},{"name":"PropertyTagICCProfileDescriptor","features":[407]},{"name":"PropertyTagImageDescription","features":[407]},{"name":"PropertyTagImageHeight","features":[407]},{"name":"PropertyTagImageTitle","features":[407]},{"name":"PropertyTagImageWidth","features":[407]},{"name":"PropertyTagIndexBackground","features":[407]},{"name":"PropertyTagIndexTransparent","features":[407]},{"name":"PropertyTagInkNames","features":[407]},{"name":"PropertyTagInkSet","features":[407]},{"name":"PropertyTagJPEGACTables","features":[407]},{"name":"PropertyTagJPEGDCTables","features":[407]},{"name":"PropertyTagJPEGInterFormat","features":[407]},{"name":"PropertyTagJPEGInterLength","features":[407]},{"name":"PropertyTagJPEGLosslessPredictors","features":[407]},{"name":"PropertyTagJPEGPointTransforms","features":[407]},{"name":"PropertyTagJPEGProc","features":[407]},{"name":"PropertyTagJPEGQTables","features":[407]},{"name":"PropertyTagJPEGQuality","features":[407]},{"name":"PropertyTagJPEGRestartInterval","features":[407]},{"name":"PropertyTagLoopCount","features":[407]},{"name":"PropertyTagLuminanceTable","features":[407]},{"name":"PropertyTagMaxSampleValue","features":[407]},{"name":"PropertyTagMinSampleValue","features":[407]},{"name":"PropertyTagNewSubfileType","features":[407]},{"name":"PropertyTagNumberOfInks","features":[407]},{"name":"PropertyTagOrientation","features":[407]},{"name":"PropertyTagPageName","features":[407]},{"name":"PropertyTagPageNumber","features":[407]},{"name":"PropertyTagPaletteHistogram","features":[407]},{"name":"PropertyTagPhotometricInterp","features":[407]},{"name":"PropertyTagPixelPerUnitX","features":[407]},{"name":"PropertyTagPixelPerUnitY","features":[407]},{"name":"PropertyTagPixelUnit","features":[407]},{"name":"PropertyTagPlanarConfig","features":[407]},{"name":"PropertyTagPredictor","features":[407]},{"name":"PropertyTagPrimaryChromaticities","features":[407]},{"name":"PropertyTagPrintFlags","features":[407]},{"name":"PropertyTagPrintFlagsBleedWidth","features":[407]},{"name":"PropertyTagPrintFlagsBleedWidthScale","features":[407]},{"name":"PropertyTagPrintFlagsCrop","features":[407]},{"name":"PropertyTagPrintFlagsVersion","features":[407]},{"name":"PropertyTagREFBlackWhite","features":[407]},{"name":"PropertyTagResolutionUnit","features":[407]},{"name":"PropertyTagResolutionXLengthUnit","features":[407]},{"name":"PropertyTagResolutionXUnit","features":[407]},{"name":"PropertyTagResolutionYLengthUnit","features":[407]},{"name":"PropertyTagResolutionYUnit","features":[407]},{"name":"PropertyTagRowsPerStrip","features":[407]},{"name":"PropertyTagSMaxSampleValue","features":[407]},{"name":"PropertyTagSMinSampleValue","features":[407]},{"name":"PropertyTagSRGBRenderingIntent","features":[407]},{"name":"PropertyTagSampleFormat","features":[407]},{"name":"PropertyTagSamplesPerPixel","features":[407]},{"name":"PropertyTagSoftwareUsed","features":[407]},{"name":"PropertyTagStripBytesCount","features":[407]},{"name":"PropertyTagStripOffsets","features":[407]},{"name":"PropertyTagSubfileType","features":[407]},{"name":"PropertyTagT4Option","features":[407]},{"name":"PropertyTagT6Option","features":[407]},{"name":"PropertyTagTargetPrinter","features":[407]},{"name":"PropertyTagThreshHolding","features":[407]},{"name":"PropertyTagThumbnailArtist","features":[407]},{"name":"PropertyTagThumbnailBitsPerSample","features":[407]},{"name":"PropertyTagThumbnailColorDepth","features":[407]},{"name":"PropertyTagThumbnailCompressedSize","features":[407]},{"name":"PropertyTagThumbnailCompression","features":[407]},{"name":"PropertyTagThumbnailCopyRight","features":[407]},{"name":"PropertyTagThumbnailData","features":[407]},{"name":"PropertyTagThumbnailDateTime","features":[407]},{"name":"PropertyTagThumbnailEquipMake","features":[407]},{"name":"PropertyTagThumbnailEquipModel","features":[407]},{"name":"PropertyTagThumbnailFormat","features":[407]},{"name":"PropertyTagThumbnailHeight","features":[407]},{"name":"PropertyTagThumbnailImageDescription","features":[407]},{"name":"PropertyTagThumbnailImageHeight","features":[407]},{"name":"PropertyTagThumbnailImageWidth","features":[407]},{"name":"PropertyTagThumbnailOrientation","features":[407]},{"name":"PropertyTagThumbnailPhotometricInterp","features":[407]},{"name":"PropertyTagThumbnailPlanarConfig","features":[407]},{"name":"PropertyTagThumbnailPlanes","features":[407]},{"name":"PropertyTagThumbnailPrimaryChromaticities","features":[407]},{"name":"PropertyTagThumbnailRawBytes","features":[407]},{"name":"PropertyTagThumbnailRefBlackWhite","features":[407]},{"name":"PropertyTagThumbnailResolutionUnit","features":[407]},{"name":"PropertyTagThumbnailResolutionX","features":[407]},{"name":"PropertyTagThumbnailResolutionY","features":[407]},{"name":"PropertyTagThumbnailRowsPerStrip","features":[407]},{"name":"PropertyTagThumbnailSamplesPerPixel","features":[407]},{"name":"PropertyTagThumbnailSize","features":[407]},{"name":"PropertyTagThumbnailSoftwareUsed","features":[407]},{"name":"PropertyTagThumbnailStripBytesCount","features":[407]},{"name":"PropertyTagThumbnailStripOffsets","features":[407]},{"name":"PropertyTagThumbnailTransferFunction","features":[407]},{"name":"PropertyTagThumbnailWhitePoint","features":[407]},{"name":"PropertyTagThumbnailWidth","features":[407]},{"name":"PropertyTagThumbnailYCbCrCoefficients","features":[407]},{"name":"PropertyTagThumbnailYCbCrPositioning","features":[407]},{"name":"PropertyTagThumbnailYCbCrSubsampling","features":[407]},{"name":"PropertyTagTileByteCounts","features":[407]},{"name":"PropertyTagTileLength","features":[407]},{"name":"PropertyTagTileOffset","features":[407]},{"name":"PropertyTagTileWidth","features":[407]},{"name":"PropertyTagTransferFuncition","features":[407]},{"name":"PropertyTagTransferRange","features":[407]},{"name":"PropertyTagTypeASCII","features":[407]},{"name":"PropertyTagTypeByte","features":[407]},{"name":"PropertyTagTypeLong","features":[407]},{"name":"PropertyTagTypeRational","features":[407]},{"name":"PropertyTagTypeSLONG","features":[407]},{"name":"PropertyTagTypeSRational","features":[407]},{"name":"PropertyTagTypeShort","features":[407]},{"name":"PropertyTagTypeUndefined","features":[407]},{"name":"PropertyTagWhitePoint","features":[407]},{"name":"PropertyTagXPosition","features":[407]},{"name":"PropertyTagXResolution","features":[407]},{"name":"PropertyTagYCbCrCoefficients","features":[407]},{"name":"PropertyTagYCbCrPositioning","features":[407]},{"name":"PropertyTagYCbCrSubsampling","features":[407]},{"name":"PropertyTagYPosition","features":[407]},{"name":"PropertyTagYResolution","features":[407]},{"name":"QualityMode","features":[407]},{"name":"QualityModeDefault","features":[407]},{"name":"QualityModeHigh","features":[407]},{"name":"QualityModeInvalid","features":[407]},{"name":"QualityModeLow","features":[407]},{"name":"RED_SHIFT","features":[407]},{"name":"Rect","features":[407]},{"name":"RectF","features":[407]},{"name":"RedEyeCorrection","features":[303,407]},{"name":"RedEyeCorrectionEffectGuid","features":[407]},{"name":"RedEyeCorrectionParams","features":[303,407]},{"name":"Region","features":[407]},{"name":"Rotate180FlipNone","features":[407]},{"name":"Rotate180FlipX","features":[407]},{"name":"Rotate180FlipXY","features":[407]},{"name":"Rotate180FlipY","features":[407]},{"name":"Rotate270FlipNone","features":[407]},{"name":"Rotate270FlipX","features":[407]},{"name":"Rotate270FlipXY","features":[407]},{"name":"Rotate270FlipY","features":[407]},{"name":"Rotate90FlipNone","features":[407]},{"name":"Rotate90FlipX","features":[407]},{"name":"Rotate90FlipXY","features":[407]},{"name":"Rotate90FlipY","features":[407]},{"name":"RotateFlipType","features":[407]},{"name":"RotateNoneFlipNone","features":[407]},{"name":"RotateNoneFlipX","features":[407]},{"name":"RotateNoneFlipXY","features":[407]},{"name":"RotateNoneFlipY","features":[407]},{"name":"Sharpen","features":[303,407]},{"name":"SharpenEffectGuid","features":[407]},{"name":"SharpenParams","features":[407]},{"name":"Size","features":[407]},{"name":"SizeF","features":[407]},{"name":"SmoothingMode","features":[407]},{"name":"SmoothingModeAntiAlias","features":[407]},{"name":"SmoothingModeAntiAlias8x4","features":[407]},{"name":"SmoothingModeAntiAlias8x8","features":[407]},{"name":"SmoothingModeDefault","features":[407]},{"name":"SmoothingModeHighQuality","features":[407]},{"name":"SmoothingModeHighSpeed","features":[407]},{"name":"SmoothingModeInvalid","features":[407]},{"name":"SmoothingModeNone","features":[407]},{"name":"Status","features":[407]},{"name":"StringAlignment","features":[407]},{"name":"StringAlignmentCenter","features":[407]},{"name":"StringAlignmentFar","features":[407]},{"name":"StringAlignmentNear","features":[407]},{"name":"StringDigitSubstitute","features":[407]},{"name":"StringDigitSubstituteNational","features":[407]},{"name":"StringDigitSubstituteNone","features":[407]},{"name":"StringDigitSubstituteTraditional","features":[407]},{"name":"StringDigitSubstituteUser","features":[407]},{"name":"StringFormatFlags","features":[407]},{"name":"StringFormatFlagsBypassGDI","features":[407]},{"name":"StringFormatFlagsDirectionRightToLeft","features":[407]},{"name":"StringFormatFlagsDirectionVertical","features":[407]},{"name":"StringFormatFlagsDisplayFormatControl","features":[407]},{"name":"StringFormatFlagsLineLimit","features":[407]},{"name":"StringFormatFlagsMeasureTrailingSpaces","features":[407]},{"name":"StringFormatFlagsNoClip","features":[407]},{"name":"StringFormatFlagsNoFitBlackBox","features":[407]},{"name":"StringFormatFlagsNoFontFallback","features":[407]},{"name":"StringFormatFlagsNoWrap","features":[407]},{"name":"StringTrimming","features":[407]},{"name":"StringTrimmingCharacter","features":[407]},{"name":"StringTrimmingEllipsisCharacter","features":[407]},{"name":"StringTrimmingEllipsisPath","features":[407]},{"name":"StringTrimmingEllipsisWord","features":[407]},{"name":"StringTrimmingNone","features":[407]},{"name":"StringTrimmingWord","features":[407]},{"name":"TestControlForceBilinear","features":[407]},{"name":"TestControlGetBuildNumber","features":[407]},{"name":"TestControlNoICM","features":[407]},{"name":"TextRenderingHint","features":[407]},{"name":"TextRenderingHintAntiAlias","features":[407]},{"name":"TextRenderingHintAntiAliasGridFit","features":[407]},{"name":"TextRenderingHintClearTypeGridFit","features":[407]},{"name":"TextRenderingHintSingleBitPerPixel","features":[407]},{"name":"TextRenderingHintSingleBitPerPixelGridFit","features":[407]},{"name":"TextRenderingHintSystemDefault","features":[407]},{"name":"Tint","features":[303,407]},{"name":"TintEffectGuid","features":[407]},{"name":"TintParams","features":[407]},{"name":"Unit","features":[407]},{"name":"UnitDisplay","features":[407]},{"name":"UnitDocument","features":[407]},{"name":"UnitInch","features":[407]},{"name":"UnitMillimeter","features":[407]},{"name":"UnitPixel","features":[407]},{"name":"UnitPoint","features":[407]},{"name":"UnitWorld","features":[407]},{"name":"UnknownImageFormat","features":[407]},{"name":"UnsupportedGdiplusVersion","features":[407]},{"name":"ValueOverflow","features":[407]},{"name":"WarpMode","features":[407]},{"name":"WarpModeBilinear","features":[407]},{"name":"WarpModePerspective","features":[407]},{"name":"Win32Error","features":[407]},{"name":"WmfPlaceableFileHeader","features":[407]},{"name":"WmfRecordTypeAbortDoc","features":[407]},{"name":"WmfRecordTypeAnimatePalette","features":[407]},{"name":"WmfRecordTypeArc","features":[407]},{"name":"WmfRecordTypeBitBlt","features":[407]},{"name":"WmfRecordTypeChord","features":[407]},{"name":"WmfRecordTypeCreateBitmap","features":[407]},{"name":"WmfRecordTypeCreateBitmapIndirect","features":[407]},{"name":"WmfRecordTypeCreateBrush","features":[407]},{"name":"WmfRecordTypeCreateBrushIndirect","features":[407]},{"name":"WmfRecordTypeCreateFontIndirect","features":[407]},{"name":"WmfRecordTypeCreatePalette","features":[407]},{"name":"WmfRecordTypeCreatePatternBrush","features":[407]},{"name":"WmfRecordTypeCreatePenIndirect","features":[407]},{"name":"WmfRecordTypeCreateRegion","features":[407]},{"name":"WmfRecordTypeDIBBitBlt","features":[407]},{"name":"WmfRecordTypeDIBCreatePatternBrush","features":[407]},{"name":"WmfRecordTypeDIBStretchBlt","features":[407]},{"name":"WmfRecordTypeDeleteObject","features":[407]},{"name":"WmfRecordTypeDrawText","features":[407]},{"name":"WmfRecordTypeEllipse","features":[407]},{"name":"WmfRecordTypeEndDoc","features":[407]},{"name":"WmfRecordTypeEndPage","features":[407]},{"name":"WmfRecordTypeEscape","features":[407]},{"name":"WmfRecordTypeExcludeClipRect","features":[407]},{"name":"WmfRecordTypeExtFloodFill","features":[407]},{"name":"WmfRecordTypeExtTextOut","features":[407]},{"name":"WmfRecordTypeFillRegion","features":[407]},{"name":"WmfRecordTypeFloodFill","features":[407]},{"name":"WmfRecordTypeFrameRegion","features":[407]},{"name":"WmfRecordTypeIntersectClipRect","features":[407]},{"name":"WmfRecordTypeInvertRegion","features":[407]},{"name":"WmfRecordTypeLineTo","features":[407]},{"name":"WmfRecordTypeMoveTo","features":[407]},{"name":"WmfRecordTypeOffsetClipRgn","features":[407]},{"name":"WmfRecordTypeOffsetViewportOrg","features":[407]},{"name":"WmfRecordTypeOffsetWindowOrg","features":[407]},{"name":"WmfRecordTypePaintRegion","features":[407]},{"name":"WmfRecordTypePatBlt","features":[407]},{"name":"WmfRecordTypePie","features":[407]},{"name":"WmfRecordTypePolyPolygon","features":[407]},{"name":"WmfRecordTypePolygon","features":[407]},{"name":"WmfRecordTypePolyline","features":[407]},{"name":"WmfRecordTypeRealizePalette","features":[407]},{"name":"WmfRecordTypeRectangle","features":[407]},{"name":"WmfRecordTypeResetDC","features":[407]},{"name":"WmfRecordTypeResizePalette","features":[407]},{"name":"WmfRecordTypeRestoreDC","features":[407]},{"name":"WmfRecordTypeRoundRect","features":[407]},{"name":"WmfRecordTypeSaveDC","features":[407]},{"name":"WmfRecordTypeScaleViewportExt","features":[407]},{"name":"WmfRecordTypeScaleWindowExt","features":[407]},{"name":"WmfRecordTypeSelectClipRegion","features":[407]},{"name":"WmfRecordTypeSelectObject","features":[407]},{"name":"WmfRecordTypeSelectPalette","features":[407]},{"name":"WmfRecordTypeSetBkColor","features":[407]},{"name":"WmfRecordTypeSetBkMode","features":[407]},{"name":"WmfRecordTypeSetDIBToDev","features":[407]},{"name":"WmfRecordTypeSetLayout","features":[407]},{"name":"WmfRecordTypeSetMapMode","features":[407]},{"name":"WmfRecordTypeSetMapperFlags","features":[407]},{"name":"WmfRecordTypeSetPalEntries","features":[407]},{"name":"WmfRecordTypeSetPixel","features":[407]},{"name":"WmfRecordTypeSetPolyFillMode","features":[407]},{"name":"WmfRecordTypeSetROP2","features":[407]},{"name":"WmfRecordTypeSetRelAbs","features":[407]},{"name":"WmfRecordTypeSetStretchBltMode","features":[407]},{"name":"WmfRecordTypeSetTextAlign","features":[407]},{"name":"WmfRecordTypeSetTextCharExtra","features":[407]},{"name":"WmfRecordTypeSetTextColor","features":[407]},{"name":"WmfRecordTypeSetTextJustification","features":[407]},{"name":"WmfRecordTypeSetViewportExt","features":[407]},{"name":"WmfRecordTypeSetViewportOrg","features":[407]},{"name":"WmfRecordTypeSetWindowExt","features":[407]},{"name":"WmfRecordTypeSetWindowOrg","features":[407]},{"name":"WmfRecordTypeStartDoc","features":[407]},{"name":"WmfRecordTypeStartPage","features":[407]},{"name":"WmfRecordTypeStretchBlt","features":[407]},{"name":"WmfRecordTypeStretchDIB","features":[407]},{"name":"WmfRecordTypeTextOut","features":[407]},{"name":"WrapMode","features":[407]},{"name":"WrapModeClamp","features":[407]},{"name":"WrapModeTile","features":[407]},{"name":"WrapModeTileFlipX","features":[407]},{"name":"WrapModeTileFlipXY","features":[407]},{"name":"WrapModeTileFlipY","features":[407]},{"name":"WrongState","features":[407]}],"415":[{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL2","features":[408]},{"name":"D3D_COMPILE_STANDARD_FILE_INCLUDE","features":[408]}],"416":[{"name":"CATID_WICBitmapDecoders","features":[409]},{"name":"CATID_WICBitmapEncoders","features":[409]},{"name":"CATID_WICFormatConverters","features":[409]},{"name":"CATID_WICMetadataReader","features":[409]},{"name":"CATID_WICMetadataWriter","features":[409]},{"name":"CATID_WICPixelFormats","features":[409]},{"name":"CLSID_WIC8BIMIPTCDigestMetadataReader","features":[409]},{"name":"CLSID_WIC8BIMIPTCDigestMetadataWriter","features":[409]},{"name":"CLSID_WIC8BIMIPTCMetadataReader","features":[409]},{"name":"CLSID_WIC8BIMIPTCMetadataWriter","features":[409]},{"name":"CLSID_WIC8BIMResolutionInfoMetadataReader","features":[409]},{"name":"CLSID_WIC8BIMResolutionInfoMetadataWriter","features":[409]},{"name":"CLSID_WICAPEMetadataReader","features":[409]},{"name":"CLSID_WICAPEMetadataWriter","features":[409]},{"name":"CLSID_WICAdngDecoder","features":[409]},{"name":"CLSID_WICApp0MetadataReader","features":[409]},{"name":"CLSID_WICApp0MetadataWriter","features":[409]},{"name":"CLSID_WICApp13MetadataReader","features":[409]},{"name":"CLSID_WICApp13MetadataWriter","features":[409]},{"name":"CLSID_WICApp1MetadataReader","features":[409]},{"name":"CLSID_WICApp1MetadataWriter","features":[409]},{"name":"CLSID_WICBmpDecoder","features":[409]},{"name":"CLSID_WICBmpEncoder","features":[409]},{"name":"CLSID_WICDdsDecoder","features":[409]},{"name":"CLSID_WICDdsEncoder","features":[409]},{"name":"CLSID_WICDdsMetadataReader","features":[409]},{"name":"CLSID_WICDdsMetadataWriter","features":[409]},{"name":"CLSID_WICDefaultFormatConverter","features":[409]},{"name":"CLSID_WICExifMetadataReader","features":[409]},{"name":"CLSID_WICExifMetadataWriter","features":[409]},{"name":"CLSID_WICFormatConverterHighColor","features":[409]},{"name":"CLSID_WICFormatConverterNChannel","features":[409]},{"name":"CLSID_WICFormatConverterWMPhoto","features":[409]},{"name":"CLSID_WICGCEMetadataReader","features":[409]},{"name":"CLSID_WICGCEMetadataWriter","features":[409]},{"name":"CLSID_WICGifCommentMetadataReader","features":[409]},{"name":"CLSID_WICGifCommentMetadataWriter","features":[409]},{"name":"CLSID_WICGifDecoder","features":[409]},{"name":"CLSID_WICGifEncoder","features":[409]},{"name":"CLSID_WICGpsMetadataReader","features":[409]},{"name":"CLSID_WICGpsMetadataWriter","features":[409]},{"name":"CLSID_WICHeifDecoder","features":[409]},{"name":"CLSID_WICHeifEncoder","features":[409]},{"name":"CLSID_WICHeifHDRMetadataReader","features":[409]},{"name":"CLSID_WICHeifMetadataReader","features":[409]},{"name":"CLSID_WICHeifMetadataWriter","features":[409]},{"name":"CLSID_WICIMDMetadataReader","features":[409]},{"name":"CLSID_WICIMDMetadataWriter","features":[409]},{"name":"CLSID_WICIPTCMetadataReader","features":[409]},{"name":"CLSID_WICIPTCMetadataWriter","features":[409]},{"name":"CLSID_WICIRBMetadataReader","features":[409]},{"name":"CLSID_WICIRBMetadataWriter","features":[409]},{"name":"CLSID_WICIcoDecoder","features":[409]},{"name":"CLSID_WICIfdMetadataReader","features":[409]},{"name":"CLSID_WICIfdMetadataWriter","features":[409]},{"name":"CLSID_WICImagingCategories","features":[409]},{"name":"CLSID_WICImagingFactory","features":[409]},{"name":"CLSID_WICImagingFactory1","features":[409]},{"name":"CLSID_WICImagingFactory2","features":[409]},{"name":"CLSID_WICInteropMetadataReader","features":[409]},{"name":"CLSID_WICInteropMetadataWriter","features":[409]},{"name":"CLSID_WICJpegChrominanceMetadataReader","features":[409]},{"name":"CLSID_WICJpegChrominanceMetadataWriter","features":[409]},{"name":"CLSID_WICJpegCommentMetadataReader","features":[409]},{"name":"CLSID_WICJpegCommentMetadataWriter","features":[409]},{"name":"CLSID_WICJpegDecoder","features":[409]},{"name":"CLSID_WICJpegEncoder","features":[409]},{"name":"CLSID_WICJpegLuminanceMetadataReader","features":[409]},{"name":"CLSID_WICJpegLuminanceMetadataWriter","features":[409]},{"name":"CLSID_WICJpegQualcommPhoneEncoder","features":[409]},{"name":"CLSID_WICLSDMetadataReader","features":[409]},{"name":"CLSID_WICLSDMetadataWriter","features":[409]},{"name":"CLSID_WICPlanarFormatConverter","features":[409]},{"name":"CLSID_WICPngBkgdMetadataReader","features":[409]},{"name":"CLSID_WICPngBkgdMetadataWriter","features":[409]},{"name":"CLSID_WICPngChrmMetadataReader","features":[409]},{"name":"CLSID_WICPngChrmMetadataWriter","features":[409]},{"name":"CLSID_WICPngDecoder","features":[409]},{"name":"CLSID_WICPngDecoder1","features":[409]},{"name":"CLSID_WICPngDecoder2","features":[409]},{"name":"CLSID_WICPngEncoder","features":[409]},{"name":"CLSID_WICPngGamaMetadataReader","features":[409]},{"name":"CLSID_WICPngGamaMetadataWriter","features":[409]},{"name":"CLSID_WICPngHistMetadataReader","features":[409]},{"name":"CLSID_WICPngHistMetadataWriter","features":[409]},{"name":"CLSID_WICPngIccpMetadataReader","features":[409]},{"name":"CLSID_WICPngIccpMetadataWriter","features":[409]},{"name":"CLSID_WICPngItxtMetadataReader","features":[409]},{"name":"CLSID_WICPngItxtMetadataWriter","features":[409]},{"name":"CLSID_WICPngSrgbMetadataReader","features":[409]},{"name":"CLSID_WICPngSrgbMetadataWriter","features":[409]},{"name":"CLSID_WICPngTextMetadataReader","features":[409]},{"name":"CLSID_WICPngTextMetadataWriter","features":[409]},{"name":"CLSID_WICPngTimeMetadataReader","features":[409]},{"name":"CLSID_WICPngTimeMetadataWriter","features":[409]},{"name":"CLSID_WICRAWDecoder","features":[409]},{"name":"CLSID_WICSubIfdMetadataReader","features":[409]},{"name":"CLSID_WICSubIfdMetadataWriter","features":[409]},{"name":"CLSID_WICThumbnailMetadataReader","features":[409]},{"name":"CLSID_WICThumbnailMetadataWriter","features":[409]},{"name":"CLSID_WICTiffDecoder","features":[409]},{"name":"CLSID_WICTiffEncoder","features":[409]},{"name":"CLSID_WICUnknownMetadataReader","features":[409]},{"name":"CLSID_WICUnknownMetadataWriter","features":[409]},{"name":"CLSID_WICWebpAnimMetadataReader","features":[409]},{"name":"CLSID_WICWebpAnmfMetadataReader","features":[409]},{"name":"CLSID_WICWebpDecoder","features":[409]},{"name":"CLSID_WICWmpDecoder","features":[409]},{"name":"CLSID_WICWmpEncoder","features":[409]},{"name":"CLSID_WICXMPAltMetadataReader","features":[409]},{"name":"CLSID_WICXMPAltMetadataWriter","features":[409]},{"name":"CLSID_WICXMPBagMetadataReader","features":[409]},{"name":"CLSID_WICXMPBagMetadataWriter","features":[409]},{"name":"CLSID_WICXMPMetadataReader","features":[409]},{"name":"CLSID_WICXMPMetadataWriter","features":[409]},{"name":"CLSID_WICXMPSeqMetadataReader","features":[409]},{"name":"CLSID_WICXMPSeqMetadataWriter","features":[409]},{"name":"CLSID_WICXMPStructMetadataReader","features":[409]},{"name":"CLSID_WICXMPStructMetadataWriter","features":[409]},{"name":"FACILITY_WINCODEC_ERR","features":[409]},{"name":"GUID_ContainerFormatAdng","features":[409]},{"name":"GUID_ContainerFormatBmp","features":[409]},{"name":"GUID_ContainerFormatDds","features":[409]},{"name":"GUID_ContainerFormatGif","features":[409]},{"name":"GUID_ContainerFormatHeif","features":[409]},{"name":"GUID_ContainerFormatIco","features":[409]},{"name":"GUID_ContainerFormatJpeg","features":[409]},{"name":"GUID_ContainerFormatPng","features":[409]},{"name":"GUID_ContainerFormatRaw","features":[409]},{"name":"GUID_ContainerFormatTiff","features":[409]},{"name":"GUID_ContainerFormatWebp","features":[409]},{"name":"GUID_ContainerFormatWmp","features":[409]},{"name":"GUID_MetadataFormat8BIMIPTC","features":[409]},{"name":"GUID_MetadataFormat8BIMIPTCDigest","features":[409]},{"name":"GUID_MetadataFormat8BIMResolutionInfo","features":[409]},{"name":"GUID_MetadataFormatAPE","features":[409]},{"name":"GUID_MetadataFormatApp0","features":[409]},{"name":"GUID_MetadataFormatApp1","features":[409]},{"name":"GUID_MetadataFormatApp13","features":[409]},{"name":"GUID_MetadataFormatChunkbKGD","features":[409]},{"name":"GUID_MetadataFormatChunkcHRM","features":[409]},{"name":"GUID_MetadataFormatChunkgAMA","features":[409]},{"name":"GUID_MetadataFormatChunkhIST","features":[409]},{"name":"GUID_MetadataFormatChunkiCCP","features":[409]},{"name":"GUID_MetadataFormatChunkiTXt","features":[409]},{"name":"GUID_MetadataFormatChunksRGB","features":[409]},{"name":"GUID_MetadataFormatChunktEXt","features":[409]},{"name":"GUID_MetadataFormatChunktIME","features":[409]},{"name":"GUID_MetadataFormatDds","features":[409]},{"name":"GUID_MetadataFormatExif","features":[409]},{"name":"GUID_MetadataFormatGCE","features":[409]},{"name":"GUID_MetadataFormatGifComment","features":[409]},{"name":"GUID_MetadataFormatGps","features":[409]},{"name":"GUID_MetadataFormatHeif","features":[409]},{"name":"GUID_MetadataFormatHeifHDR","features":[409]},{"name":"GUID_MetadataFormatIMD","features":[409]},{"name":"GUID_MetadataFormatIPTC","features":[409]},{"name":"GUID_MetadataFormatIRB","features":[409]},{"name":"GUID_MetadataFormatIfd","features":[409]},{"name":"GUID_MetadataFormatInterop","features":[409]},{"name":"GUID_MetadataFormatJpegChrominance","features":[409]},{"name":"GUID_MetadataFormatJpegComment","features":[409]},{"name":"GUID_MetadataFormatJpegLuminance","features":[409]},{"name":"GUID_MetadataFormatLSD","features":[409]},{"name":"GUID_MetadataFormatSubIfd","features":[409]},{"name":"GUID_MetadataFormatThumbnail","features":[409]},{"name":"GUID_MetadataFormatUnknown","features":[409]},{"name":"GUID_MetadataFormatWebpANIM","features":[409]},{"name":"GUID_MetadataFormatWebpANMF","features":[409]},{"name":"GUID_MetadataFormatXMP","features":[409]},{"name":"GUID_MetadataFormatXMPAlt","features":[409]},{"name":"GUID_MetadataFormatXMPBag","features":[409]},{"name":"GUID_MetadataFormatXMPSeq","features":[409]},{"name":"GUID_MetadataFormatXMPStruct","features":[409]},{"name":"GUID_VendorMicrosoft","features":[409]},{"name":"GUID_VendorMicrosoftBuiltIn","features":[409]},{"name":"GUID_WICPixelFormat112bpp6ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat112bpp7Channels","features":[409]},{"name":"GUID_WICPixelFormat128bpp7ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat128bpp8Channels","features":[409]},{"name":"GUID_WICPixelFormat128bppPRGBAFloat","features":[409]},{"name":"GUID_WICPixelFormat128bppRGBAFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat128bppRGBAFloat","features":[409]},{"name":"GUID_WICPixelFormat128bppRGBFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat128bppRGBFloat","features":[409]},{"name":"GUID_WICPixelFormat144bpp8ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat16bppBGR555","features":[409]},{"name":"GUID_WICPixelFormat16bppBGR565","features":[409]},{"name":"GUID_WICPixelFormat16bppBGRA5551","features":[409]},{"name":"GUID_WICPixelFormat16bppCbCr","features":[409]},{"name":"GUID_WICPixelFormat16bppCbQuantizedDctCoefficients","features":[409]},{"name":"GUID_WICPixelFormat16bppCrQuantizedDctCoefficients","features":[409]},{"name":"GUID_WICPixelFormat16bppGray","features":[409]},{"name":"GUID_WICPixelFormat16bppGrayFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat16bppGrayHalf","features":[409]},{"name":"GUID_WICPixelFormat16bppYQuantizedDctCoefficients","features":[409]},{"name":"GUID_WICPixelFormat1bppIndexed","features":[409]},{"name":"GUID_WICPixelFormat24bpp3Channels","features":[409]},{"name":"GUID_WICPixelFormat24bppBGR","features":[409]},{"name":"GUID_WICPixelFormat24bppRGB","features":[409]},{"name":"GUID_WICPixelFormat2bppGray","features":[409]},{"name":"GUID_WICPixelFormat2bppIndexed","features":[409]},{"name":"GUID_WICPixelFormat32bpp3ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat32bpp4Channels","features":[409]},{"name":"GUID_WICPixelFormat32bppBGR","features":[409]},{"name":"GUID_WICPixelFormat32bppBGR101010","features":[409]},{"name":"GUID_WICPixelFormat32bppBGRA","features":[409]},{"name":"GUID_WICPixelFormat32bppCMYK","features":[409]},{"name":"GUID_WICPixelFormat32bppGrayFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat32bppGrayFloat","features":[409]},{"name":"GUID_WICPixelFormat32bppPBGRA","features":[409]},{"name":"GUID_WICPixelFormat32bppPRGBA","features":[409]},{"name":"GUID_WICPixelFormat32bppR10G10B10A2","features":[409]},{"name":"GUID_WICPixelFormat32bppR10G10B10A2HDR10","features":[409]},{"name":"GUID_WICPixelFormat32bppRGB","features":[409]},{"name":"GUID_WICPixelFormat32bppRGBA","features":[409]},{"name":"GUID_WICPixelFormat32bppRGBA1010102","features":[409]},{"name":"GUID_WICPixelFormat32bppRGBA1010102XR","features":[409]},{"name":"GUID_WICPixelFormat32bppRGBE","features":[409]},{"name":"GUID_WICPixelFormat40bpp4ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat40bpp5Channels","features":[409]},{"name":"GUID_WICPixelFormat40bppCMYKAlpha","features":[409]},{"name":"GUID_WICPixelFormat48bpp3Channels","features":[409]},{"name":"GUID_WICPixelFormat48bpp5ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat48bpp6Channels","features":[409]},{"name":"GUID_WICPixelFormat48bppBGR","features":[409]},{"name":"GUID_WICPixelFormat48bppBGRFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat48bppRGB","features":[409]},{"name":"GUID_WICPixelFormat48bppRGBFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat48bppRGBHalf","features":[409]},{"name":"GUID_WICPixelFormat4bppGray","features":[409]},{"name":"GUID_WICPixelFormat4bppIndexed","features":[409]},{"name":"GUID_WICPixelFormat56bpp6ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat56bpp7Channels","features":[409]},{"name":"GUID_WICPixelFormat64bpp3ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat64bpp4Channels","features":[409]},{"name":"GUID_WICPixelFormat64bpp7ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat64bpp8Channels","features":[409]},{"name":"GUID_WICPixelFormat64bppBGRA","features":[409]},{"name":"GUID_WICPixelFormat64bppBGRAFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat64bppCMYK","features":[409]},{"name":"GUID_WICPixelFormat64bppPBGRA","features":[409]},{"name":"GUID_WICPixelFormat64bppPRGBA","features":[409]},{"name":"GUID_WICPixelFormat64bppPRGBAHalf","features":[409]},{"name":"GUID_WICPixelFormat64bppRGB","features":[409]},{"name":"GUID_WICPixelFormat64bppRGBA","features":[409]},{"name":"GUID_WICPixelFormat64bppRGBAFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat64bppRGBAHalf","features":[409]},{"name":"GUID_WICPixelFormat64bppRGBFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat64bppRGBHalf","features":[409]},{"name":"GUID_WICPixelFormat72bpp8ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat80bpp4ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat80bpp5Channels","features":[409]},{"name":"GUID_WICPixelFormat80bppCMYKAlpha","features":[409]},{"name":"GUID_WICPixelFormat8bppAlpha","features":[409]},{"name":"GUID_WICPixelFormat8bppCb","features":[409]},{"name":"GUID_WICPixelFormat8bppCr","features":[409]},{"name":"GUID_WICPixelFormat8bppGray","features":[409]},{"name":"GUID_WICPixelFormat8bppIndexed","features":[409]},{"name":"GUID_WICPixelFormat8bppY","features":[409]},{"name":"GUID_WICPixelFormat96bpp5ChannelsAlpha","features":[409]},{"name":"GUID_WICPixelFormat96bpp6Channels","features":[409]},{"name":"GUID_WICPixelFormat96bppRGBFixedPoint","features":[409]},{"name":"GUID_WICPixelFormat96bppRGBFloat","features":[409]},{"name":"GUID_WICPixelFormatBlackWhite","features":[409]},{"name":"GUID_WICPixelFormatDontCare","features":[409]},{"name":"IWICBitmap","features":[409]},{"name":"IWICBitmapClipper","features":[409]},{"name":"IWICBitmapCodecInfo","features":[409]},{"name":"IWICBitmapCodecProgressNotification","features":[409]},{"name":"IWICBitmapDecoder","features":[409]},{"name":"IWICBitmapDecoderInfo","features":[409]},{"name":"IWICBitmapEncoder","features":[409]},{"name":"IWICBitmapEncoderInfo","features":[409]},{"name":"IWICBitmapFlipRotator","features":[409]},{"name":"IWICBitmapFrameDecode","features":[409]},{"name":"IWICBitmapFrameEncode","features":[409]},{"name":"IWICBitmapLock","features":[409]},{"name":"IWICBitmapScaler","features":[409]},{"name":"IWICBitmapSource","features":[409]},{"name":"IWICBitmapSourceTransform","features":[409]},{"name":"IWICColorContext","features":[409]},{"name":"IWICColorTransform","features":[409]},{"name":"IWICComponentFactory","features":[409]},{"name":"IWICComponentInfo","features":[409]},{"name":"IWICDdsDecoder","features":[409]},{"name":"IWICDdsEncoder","features":[409]},{"name":"IWICDdsFrameDecode","features":[409]},{"name":"IWICDevelopRaw","features":[409]},{"name":"IWICDevelopRawNotificationCallback","features":[409]},{"name":"IWICEnumMetadataItem","features":[409]},{"name":"IWICFastMetadataEncoder","features":[409]},{"name":"IWICFormatConverter","features":[409]},{"name":"IWICFormatConverterInfo","features":[409]},{"name":"IWICImagingFactory","features":[409]},{"name":"IWICJpegFrameDecode","features":[409]},{"name":"IWICJpegFrameEncode","features":[409]},{"name":"IWICMetadataBlockReader","features":[409]},{"name":"IWICMetadataBlockWriter","features":[409]},{"name":"IWICMetadataHandlerInfo","features":[409]},{"name":"IWICMetadataQueryReader","features":[409]},{"name":"IWICMetadataQueryWriter","features":[409]},{"name":"IWICMetadataReader","features":[409]},{"name":"IWICMetadataReaderInfo","features":[409]},{"name":"IWICMetadataWriter","features":[409]},{"name":"IWICMetadataWriterInfo","features":[409]},{"name":"IWICPalette","features":[409]},{"name":"IWICPersistStream","features":[409,354]},{"name":"IWICPixelFormatInfo","features":[409]},{"name":"IWICPixelFormatInfo2","features":[409]},{"name":"IWICPlanarBitmapFrameEncode","features":[409]},{"name":"IWICPlanarBitmapSourceTransform","features":[409]},{"name":"IWICPlanarFormatConverter","features":[409]},{"name":"IWICProgressCallback","features":[409]},{"name":"IWICProgressiveLevelControl","features":[409]},{"name":"IWICStream","features":[409,354]},{"name":"IWICStreamProvider","features":[409]},{"name":"PFNProgressNotification","features":[409]},{"name":"WIC8BIMIptcDigestIptcDigest","features":[409]},{"name":"WIC8BIMIptcDigestPString","features":[409]},{"name":"WIC8BIMIptcDigestProperties","features":[409]},{"name":"WIC8BIMIptcEmbeddedIPTC","features":[409]},{"name":"WIC8BIMIptcPString","features":[409]},{"name":"WIC8BIMIptcProperties","features":[409]},{"name":"WIC8BIMResolutionInfoHResolution","features":[409]},{"name":"WIC8BIMResolutionInfoHResolutionUnit","features":[409]},{"name":"WIC8BIMResolutionInfoHeightUnit","features":[409]},{"name":"WIC8BIMResolutionInfoPString","features":[409]},{"name":"WIC8BIMResolutionInfoProperties","features":[409]},{"name":"WIC8BIMResolutionInfoVResolution","features":[409]},{"name":"WIC8BIMResolutionInfoVResolutionUnit","features":[409]},{"name":"WIC8BIMResolutionInfoWidthUnit","features":[409]},{"name":"WICAllComponents","features":[409]},{"name":"WICAsShotParameterSet","features":[409]},{"name":"WICAutoAdjustedParameterSet","features":[409]},{"name":"WICBitmapAlphaChannelOption","features":[409]},{"name":"WICBitmapCacheOnDemand","features":[409]},{"name":"WICBitmapCacheOnLoad","features":[409]},{"name":"WICBitmapCreateCacheOption","features":[409]},{"name":"WICBitmapDecoderCapabilities","features":[409]},{"name":"WICBitmapDecoderCapabilityCanDecodeAllImages","features":[409]},{"name":"WICBitmapDecoderCapabilityCanDecodeSomeImages","features":[409]},{"name":"WICBitmapDecoderCapabilityCanDecodeThumbnail","features":[409]},{"name":"WICBitmapDecoderCapabilityCanEnumerateMetadata","features":[409]},{"name":"WICBitmapDecoderCapabilitySameEncoder","features":[409]},{"name":"WICBitmapDitherType","features":[409]},{"name":"WICBitmapDitherTypeDualSpiral4x4","features":[409]},{"name":"WICBitmapDitherTypeDualSpiral8x8","features":[409]},{"name":"WICBitmapDitherTypeErrorDiffusion","features":[409]},{"name":"WICBitmapDitherTypeNone","features":[409]},{"name":"WICBitmapDitherTypeOrdered16x16","features":[409]},{"name":"WICBitmapDitherTypeOrdered4x4","features":[409]},{"name":"WICBitmapDitherTypeOrdered8x8","features":[409]},{"name":"WICBitmapDitherTypeSolid","features":[409]},{"name":"WICBitmapDitherTypeSpiral4x4","features":[409]},{"name":"WICBitmapDitherTypeSpiral8x8","features":[409]},{"name":"WICBitmapEncoderCacheInMemory","features":[409]},{"name":"WICBitmapEncoderCacheOption","features":[409]},{"name":"WICBitmapEncoderCacheTempFile","features":[409]},{"name":"WICBitmapEncoderNoCache","features":[409]},{"name":"WICBitmapIgnoreAlpha","features":[409]},{"name":"WICBitmapInterpolationMode","features":[409]},{"name":"WICBitmapInterpolationModeCubic","features":[409]},{"name":"WICBitmapInterpolationModeFant","features":[409]},{"name":"WICBitmapInterpolationModeHighQualityCubic","features":[409]},{"name":"WICBitmapInterpolationModeLinear","features":[409]},{"name":"WICBitmapInterpolationModeNearestNeighbor","features":[409]},{"name":"WICBitmapLockFlags","features":[409]},{"name":"WICBitmapLockRead","features":[409]},{"name":"WICBitmapLockWrite","features":[409]},{"name":"WICBitmapNoCache","features":[409]},{"name":"WICBitmapPaletteType","features":[409]},{"name":"WICBitmapPaletteTypeCustom","features":[409]},{"name":"WICBitmapPaletteTypeFixedBW","features":[409]},{"name":"WICBitmapPaletteTypeFixedGray16","features":[409]},{"name":"WICBitmapPaletteTypeFixedGray256","features":[409]},{"name":"WICBitmapPaletteTypeFixedGray4","features":[409]},{"name":"WICBitmapPaletteTypeFixedHalftone125","features":[409]},{"name":"WICBitmapPaletteTypeFixedHalftone216","features":[409]},{"name":"WICBitmapPaletteTypeFixedHalftone252","features":[409]},{"name":"WICBitmapPaletteTypeFixedHalftone256","features":[409]},{"name":"WICBitmapPaletteTypeFixedHalftone27","features":[409]},{"name":"WICBitmapPaletteTypeFixedHalftone64","features":[409]},{"name":"WICBitmapPaletteTypeFixedHalftone8","features":[409]},{"name":"WICBitmapPaletteTypeFixedWebPalette","features":[409]},{"name":"WICBitmapPaletteTypeMedianCut","features":[409]},{"name":"WICBitmapPattern","features":[303,409]},{"name":"WICBitmapPlane","features":[409]},{"name":"WICBitmapPlaneDescription","features":[409]},{"name":"WICBitmapTransformFlipHorizontal","features":[409]},{"name":"WICBitmapTransformFlipVertical","features":[409]},{"name":"WICBitmapTransformOptions","features":[409]},{"name":"WICBitmapTransformRotate0","features":[409]},{"name":"WICBitmapTransformRotate180","features":[409]},{"name":"WICBitmapTransformRotate270","features":[409]},{"name":"WICBitmapTransformRotate90","features":[409]},{"name":"WICBitmapUseAlpha","features":[409]},{"name":"WICBitmapUsePremultipliedAlpha","features":[409]},{"name":"WICColorContextExifColorSpace","features":[409]},{"name":"WICColorContextProfile","features":[409]},{"name":"WICColorContextType","features":[409]},{"name":"WICColorContextUninitialized","features":[409]},{"name":"WICComponentDisabled","features":[409]},{"name":"WICComponentEnumerateBuiltInOnly","features":[409]},{"name":"WICComponentEnumerateDefault","features":[409]},{"name":"WICComponentEnumerateDisabled","features":[409]},{"name":"WICComponentEnumerateOptions","features":[409]},{"name":"WICComponentEnumerateRefresh","features":[409]},{"name":"WICComponentEnumerateUnsigned","features":[409]},{"name":"WICComponentSafe","features":[409]},{"name":"WICComponentSigned","features":[409]},{"name":"WICComponentSigning","features":[409]},{"name":"WICComponentType","features":[409]},{"name":"WICComponentUnsigned","features":[409]},{"name":"WICConvertBitmapSource","features":[409]},{"name":"WICCreateBitmapFromSection","features":[303,409]},{"name":"WICCreateBitmapFromSectionEx","features":[303,409]},{"name":"WICDdsAlphaMode","features":[409]},{"name":"WICDdsAlphaModeCustom","features":[409]},{"name":"WICDdsAlphaModeOpaque","features":[409]},{"name":"WICDdsAlphaModePremultiplied","features":[409]},{"name":"WICDdsAlphaModeStraight","features":[409]},{"name":"WICDdsAlphaModeUnknown","features":[409]},{"name":"WICDdsDimension","features":[409]},{"name":"WICDdsFormatInfo","features":[391,409]},{"name":"WICDdsParameters","features":[391,409]},{"name":"WICDdsTexture1D","features":[409]},{"name":"WICDdsTexture2D","features":[409]},{"name":"WICDdsTexture3D","features":[409]},{"name":"WICDdsTextureCube","features":[409]},{"name":"WICDecodeMetadataCacheOnDemand","features":[409]},{"name":"WICDecodeMetadataCacheOnLoad","features":[409]},{"name":"WICDecodeOptions","features":[409]},{"name":"WICDecoder","features":[409]},{"name":"WICEncoder","features":[409]},{"name":"WICGetMetadataContentSize","features":[409]},{"name":"WICGifApplicationExtensionApplication","features":[409]},{"name":"WICGifApplicationExtensionData","features":[409]},{"name":"WICGifApplicationExtensionProperties","features":[409]},{"name":"WICGifCommentExtensionProperties","features":[409]},{"name":"WICGifCommentExtensionText","features":[409]},{"name":"WICGifGraphicControlExtensionDelay","features":[409]},{"name":"WICGifGraphicControlExtensionDisposal","features":[409]},{"name":"WICGifGraphicControlExtensionProperties","features":[409]},{"name":"WICGifGraphicControlExtensionTransparencyFlag","features":[409]},{"name":"WICGifGraphicControlExtensionTransparentColorIndex","features":[409]},{"name":"WICGifGraphicControlExtensionUserInputFlag","features":[409]},{"name":"WICGifImageDescriptorHeight","features":[409]},{"name":"WICGifImageDescriptorInterlaceFlag","features":[409]},{"name":"WICGifImageDescriptorLeft","features":[409]},{"name":"WICGifImageDescriptorLocalColorTableFlag","features":[409]},{"name":"WICGifImageDescriptorLocalColorTableSize","features":[409]},{"name":"WICGifImageDescriptorProperties","features":[409]},{"name":"WICGifImageDescriptorSortFlag","features":[409]},{"name":"WICGifImageDescriptorTop","features":[409]},{"name":"WICGifImageDescriptorWidth","features":[409]},{"name":"WICGifLogicalScreenDescriptorBackgroundColorIndex","features":[409]},{"name":"WICGifLogicalScreenDescriptorColorResolution","features":[409]},{"name":"WICGifLogicalScreenDescriptorGlobalColorTableFlag","features":[409]},{"name":"WICGifLogicalScreenDescriptorGlobalColorTableSize","features":[409]},{"name":"WICGifLogicalScreenDescriptorHeight","features":[409]},{"name":"WICGifLogicalScreenDescriptorPixelAspectRatio","features":[409]},{"name":"WICGifLogicalScreenDescriptorProperties","features":[409]},{"name":"WICGifLogicalScreenDescriptorSortFlag","features":[409]},{"name":"WICGifLogicalScreenDescriptorWidth","features":[409]},{"name":"WICGifLogicalScreenSignature","features":[409]},{"name":"WICHeifHdrCustomVideoPrimaries","features":[409]},{"name":"WICHeifHdrMaximumFrameAverageLuminanceLevel","features":[409]},{"name":"WICHeifHdrMaximumLuminanceLevel","features":[409]},{"name":"WICHeifHdrMaximumMasteringDisplayLuminanceLevel","features":[409]},{"name":"WICHeifHdrMinimumMasteringDisplayLuminanceLevel","features":[409]},{"name":"WICHeifHdrProperties","features":[409]},{"name":"WICHeifOrientation","features":[409]},{"name":"WICHeifProperties","features":[409]},{"name":"WICImageParameters","features":[394,391,409]},{"name":"WICJpegChrominanceProperties","features":[409]},{"name":"WICJpegChrominanceTable","features":[409]},{"name":"WICJpegCommentProperties","features":[409]},{"name":"WICJpegCommentText","features":[409]},{"name":"WICJpegFrameHeader","features":[409]},{"name":"WICJpegIndexingOptions","features":[409]},{"name":"WICJpegIndexingOptionsGenerateOnDemand","features":[409]},{"name":"WICJpegIndexingOptionsGenerateOnLoad","features":[409]},{"name":"WICJpegLuminanceProperties","features":[409]},{"name":"WICJpegLuminanceTable","features":[409]},{"name":"WICJpegScanHeader","features":[409]},{"name":"WICJpegScanType","features":[409]},{"name":"WICJpegScanTypeInterleaved","features":[409]},{"name":"WICJpegScanTypePlanarComponents","features":[409]},{"name":"WICJpegScanTypeProgressive","features":[409]},{"name":"WICJpegTransferMatrix","features":[409]},{"name":"WICJpegTransferMatrixBT601","features":[409]},{"name":"WICJpegTransferMatrixIdentity","features":[409]},{"name":"WICJpegYCrCbSubsampling420","features":[409]},{"name":"WICJpegYCrCbSubsampling422","features":[409]},{"name":"WICJpegYCrCbSubsampling440","features":[409]},{"name":"WICJpegYCrCbSubsampling444","features":[409]},{"name":"WICJpegYCrCbSubsamplingDefault","features":[409]},{"name":"WICJpegYCrCbSubsamplingOption","features":[409]},{"name":"WICMapGuidToShortName","features":[409]},{"name":"WICMapSchemaToName","features":[409]},{"name":"WICMapShortNameToGuid","features":[409]},{"name":"WICMatchMetadataContent","features":[409,354]},{"name":"WICMetadataCreationAllowUnknown","features":[409]},{"name":"WICMetadataCreationDefault","features":[409]},{"name":"WICMetadataCreationFailUnknown","features":[409]},{"name":"WICMetadataCreationMask","features":[409]},{"name":"WICMetadataCreationOptions","features":[409]},{"name":"WICMetadataHeader","features":[409]},{"name":"WICMetadataPattern","features":[409]},{"name":"WICMetadataReader","features":[409]},{"name":"WICMetadataWriter","features":[409]},{"name":"WICNamedWhitePoint","features":[409]},{"name":"WICPersistOptionBigEndian","features":[409]},{"name":"WICPersistOptionDefault","features":[409]},{"name":"WICPersistOptionLittleEndian","features":[409]},{"name":"WICPersistOptionMask","features":[409]},{"name":"WICPersistOptionNoCacheStream","features":[409]},{"name":"WICPersistOptionPreferUTF8","features":[409]},{"name":"WICPersistOptionStrictFormat","features":[409]},{"name":"WICPersistOptions","features":[409]},{"name":"WICPixelFormat","features":[409]},{"name":"WICPixelFormatConverter","features":[409]},{"name":"WICPixelFormatNumericRepresentation","features":[409]},{"name":"WICPixelFormatNumericRepresentationFixed","features":[409]},{"name":"WICPixelFormatNumericRepresentationFloat","features":[409]},{"name":"WICPixelFormatNumericRepresentationIndexed","features":[409]},{"name":"WICPixelFormatNumericRepresentationSignedInteger","features":[409]},{"name":"WICPixelFormatNumericRepresentationUnsignedInteger","features":[409]},{"name":"WICPixelFormatNumericRepresentationUnspecified","features":[409]},{"name":"WICPlanarOptions","features":[409]},{"name":"WICPlanarOptionsDefault","features":[409]},{"name":"WICPlanarOptionsPreserveSubsampling","features":[409]},{"name":"WICPngBkgdBackgroundColor","features":[409]},{"name":"WICPngBkgdProperties","features":[409]},{"name":"WICPngChrmBlueX","features":[409]},{"name":"WICPngChrmBlueY","features":[409]},{"name":"WICPngChrmGreenX","features":[409]},{"name":"WICPngChrmGreenY","features":[409]},{"name":"WICPngChrmProperties","features":[409]},{"name":"WICPngChrmRedX","features":[409]},{"name":"WICPngChrmRedY","features":[409]},{"name":"WICPngChrmWhitePointX","features":[409]},{"name":"WICPngChrmWhitePointY","features":[409]},{"name":"WICPngFilterAdaptive","features":[409]},{"name":"WICPngFilterAverage","features":[409]},{"name":"WICPngFilterNone","features":[409]},{"name":"WICPngFilterOption","features":[409]},{"name":"WICPngFilterPaeth","features":[409]},{"name":"WICPngFilterSub","features":[409]},{"name":"WICPngFilterUnspecified","features":[409]},{"name":"WICPngFilterUp","features":[409]},{"name":"WICPngGamaGamma","features":[409]},{"name":"WICPngGamaProperties","features":[409]},{"name":"WICPngHistFrequencies","features":[409]},{"name":"WICPngHistProperties","features":[409]},{"name":"WICPngIccpProfileData","features":[409]},{"name":"WICPngIccpProfileName","features":[409]},{"name":"WICPngIccpProperties","features":[409]},{"name":"WICPngItxtCompressionFlag","features":[409]},{"name":"WICPngItxtKeyword","features":[409]},{"name":"WICPngItxtLanguageTag","features":[409]},{"name":"WICPngItxtProperties","features":[409]},{"name":"WICPngItxtText","features":[409]},{"name":"WICPngItxtTranslatedKeyword","features":[409]},{"name":"WICPngSrgbProperties","features":[409]},{"name":"WICPngSrgbRenderingIntent","features":[409]},{"name":"WICPngTimeDay","features":[409]},{"name":"WICPngTimeHour","features":[409]},{"name":"WICPngTimeMinute","features":[409]},{"name":"WICPngTimeMonth","features":[409]},{"name":"WICPngTimeProperties","features":[409]},{"name":"WICPngTimeSecond","features":[409]},{"name":"WICPngTimeYear","features":[409]},{"name":"WICProgressNotification","features":[409]},{"name":"WICProgressNotificationAll","features":[409]},{"name":"WICProgressNotificationBegin","features":[409]},{"name":"WICProgressNotificationEnd","features":[409]},{"name":"WICProgressNotificationFrequent","features":[409]},{"name":"WICProgressOperation","features":[409]},{"name":"WICProgressOperationAll","features":[409]},{"name":"WICProgressOperationCopyPixels","features":[409]},{"name":"WICProgressOperationWritePixels","features":[409]},{"name":"WICRawCapabilities","features":[409]},{"name":"WICRawCapabilitiesInfo","features":[409]},{"name":"WICRawCapabilityFullySupported","features":[409]},{"name":"WICRawCapabilityGetSupported","features":[409]},{"name":"WICRawCapabilityNotSupported","features":[409]},{"name":"WICRawChangeNotification_Contrast","features":[409]},{"name":"WICRawChangeNotification_DestinationColorContext","features":[409]},{"name":"WICRawChangeNotification_ExposureCompensation","features":[409]},{"name":"WICRawChangeNotification_Gamma","features":[409]},{"name":"WICRawChangeNotification_KelvinWhitePoint","features":[409]},{"name":"WICRawChangeNotification_NamedWhitePoint","features":[409]},{"name":"WICRawChangeNotification_NoiseReduction","features":[409]},{"name":"WICRawChangeNotification_RGBWhitePoint","features":[409]},{"name":"WICRawChangeNotification_RenderMode","features":[409]},{"name":"WICRawChangeNotification_Rotation","features":[409]},{"name":"WICRawChangeNotification_Saturation","features":[409]},{"name":"WICRawChangeNotification_Sharpness","features":[409]},{"name":"WICRawChangeNotification_Tint","features":[409]},{"name":"WICRawChangeNotification_ToneCurve","features":[409]},{"name":"WICRawParameterSet","features":[409]},{"name":"WICRawRenderMode","features":[409]},{"name":"WICRawRenderModeBestQuality","features":[409]},{"name":"WICRawRenderModeDraft","features":[409]},{"name":"WICRawRenderModeNormal","features":[409]},{"name":"WICRawRotationCapabilities","features":[409]},{"name":"WICRawRotationCapabilityFullySupported","features":[409]},{"name":"WICRawRotationCapabilityGetSupported","features":[409]},{"name":"WICRawRotationCapabilityNinetyDegreesSupported","features":[409]},{"name":"WICRawRotationCapabilityNotSupported","features":[409]},{"name":"WICRawToneCurve","features":[409]},{"name":"WICRawToneCurvePoint","features":[409]},{"name":"WICRect","features":[409]},{"name":"WICSectionAccessLevel","features":[409]},{"name":"WICSectionAccessLevelRead","features":[409]},{"name":"WICSectionAccessLevelReadWrite","features":[409]},{"name":"WICSerializeMetadataContent","features":[409,354]},{"name":"WICTiffCompressionCCITT3","features":[409]},{"name":"WICTiffCompressionCCITT4","features":[409]},{"name":"WICTiffCompressionDontCare","features":[409]},{"name":"WICTiffCompressionLZW","features":[409]},{"name":"WICTiffCompressionLZWHDifferencing","features":[409]},{"name":"WICTiffCompressionNone","features":[409]},{"name":"WICTiffCompressionOption","features":[409]},{"name":"WICTiffCompressionRLE","features":[409]},{"name":"WICTiffCompressionZIP","features":[409]},{"name":"WICUserAdjustedParameterSet","features":[409]},{"name":"WICWebpAnimLoopCount","features":[409]},{"name":"WICWebpAnimProperties","features":[409]},{"name":"WICWebpAnmfFrameDuration","features":[409]},{"name":"WICWebpAnmfProperties","features":[409]},{"name":"WICWhitePointAsShot","features":[409]},{"name":"WICWhitePointAutoWhiteBalance","features":[409]},{"name":"WICWhitePointCloudy","features":[409]},{"name":"WICWhitePointCustom","features":[409]},{"name":"WICWhitePointDaylight","features":[409]},{"name":"WICWhitePointDefault","features":[409]},{"name":"WICWhitePointFlash","features":[409]},{"name":"WICWhitePointFluorescent","features":[409]},{"name":"WICWhitePointShade","features":[409]},{"name":"WICWhitePointTungsten","features":[409]},{"name":"WICWhitePointUnderwater","features":[409]},{"name":"WIC_JPEG_HUFFMAN_BASELINE_ONE","features":[409]},{"name":"WIC_JPEG_HUFFMAN_BASELINE_THREE","features":[409]},{"name":"WIC_JPEG_MAX_COMPONENT_COUNT","features":[409]},{"name":"WIC_JPEG_MAX_TABLE_INDEX","features":[409]},{"name":"WIC_JPEG_QUANTIZATION_BASELINE_ONE","features":[409]},{"name":"WIC_JPEG_QUANTIZATION_BASELINE_THREE","features":[409]},{"name":"WIC_JPEG_SAMPLE_FACTORS_ONE","features":[409]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_420","features":[409]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_422","features":[409]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_440","features":[409]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_444","features":[409]},{"name":"WINCODEC_ERR_ABORTED","features":[409]},{"name":"WINCODEC_ERR_ACCESSDENIED","features":[409]},{"name":"WINCODEC_ERR_BASE","features":[409]},{"name":"WINCODEC_ERR_GENERIC_ERROR","features":[409]},{"name":"WINCODEC_ERR_INVALIDPARAMETER","features":[409]},{"name":"WINCODEC_ERR_NOTIMPLEMENTED","features":[409]},{"name":"WINCODEC_ERR_OUTOFMEMORY","features":[409]},{"name":"WINCODEC_SDK_VERSION","features":[409]},{"name":"WINCODEC_SDK_VERSION1","features":[409]},{"name":"WINCODEC_SDK_VERSION2","features":[409]}],"417":[{"name":"IWICImageEncoder","features":[410]},{"name":"IWICImagingFactory2","features":[410]}],"418":[{"name":"ChoosePixelFormat","features":[314,369]},{"name":"DescribePixelFormat","features":[314,369]},{"name":"EMRPIXELFORMAT","features":[314,369]},{"name":"GLU_AUTO_LOAD_MATRIX","features":[369]},{"name":"GLU_BEGIN","features":[369]},{"name":"GLU_CCW","features":[369]},{"name":"GLU_CULLING","features":[369]},{"name":"GLU_CW","features":[369]},{"name":"GLU_DISPLAY_MODE","features":[369]},{"name":"GLU_DOMAIN_DISTANCE","features":[369]},{"name":"GLU_EDGE_FLAG","features":[369]},{"name":"GLU_END","features":[369]},{"name":"GLU_ERROR","features":[369]},{"name":"GLU_EXTENSIONS","features":[369]},{"name":"GLU_EXTERIOR","features":[369]},{"name":"GLU_FALSE","features":[369]},{"name":"GLU_FILL","features":[369]},{"name":"GLU_FLAT","features":[369]},{"name":"GLU_INCOMPATIBLE_GL_VERSION","features":[369]},{"name":"GLU_INSIDE","features":[369]},{"name":"GLU_INTERIOR","features":[369]},{"name":"GLU_INVALID_ENUM","features":[369]},{"name":"GLU_INVALID_VALUE","features":[369]},{"name":"GLU_LINE","features":[369]},{"name":"GLU_MAP1_TRIM_2","features":[369]},{"name":"GLU_MAP1_TRIM_3","features":[369]},{"name":"GLU_NONE","features":[369]},{"name":"GLU_NURBS_ERROR1","features":[369]},{"name":"GLU_NURBS_ERROR10","features":[369]},{"name":"GLU_NURBS_ERROR11","features":[369]},{"name":"GLU_NURBS_ERROR12","features":[369]},{"name":"GLU_NURBS_ERROR13","features":[369]},{"name":"GLU_NURBS_ERROR14","features":[369]},{"name":"GLU_NURBS_ERROR15","features":[369]},{"name":"GLU_NURBS_ERROR16","features":[369]},{"name":"GLU_NURBS_ERROR17","features":[369]},{"name":"GLU_NURBS_ERROR18","features":[369]},{"name":"GLU_NURBS_ERROR19","features":[369]},{"name":"GLU_NURBS_ERROR2","features":[369]},{"name":"GLU_NURBS_ERROR20","features":[369]},{"name":"GLU_NURBS_ERROR21","features":[369]},{"name":"GLU_NURBS_ERROR22","features":[369]},{"name":"GLU_NURBS_ERROR23","features":[369]},{"name":"GLU_NURBS_ERROR24","features":[369]},{"name":"GLU_NURBS_ERROR25","features":[369]},{"name":"GLU_NURBS_ERROR26","features":[369]},{"name":"GLU_NURBS_ERROR27","features":[369]},{"name":"GLU_NURBS_ERROR28","features":[369]},{"name":"GLU_NURBS_ERROR29","features":[369]},{"name":"GLU_NURBS_ERROR3","features":[369]},{"name":"GLU_NURBS_ERROR30","features":[369]},{"name":"GLU_NURBS_ERROR31","features":[369]},{"name":"GLU_NURBS_ERROR32","features":[369]},{"name":"GLU_NURBS_ERROR33","features":[369]},{"name":"GLU_NURBS_ERROR34","features":[369]},{"name":"GLU_NURBS_ERROR35","features":[369]},{"name":"GLU_NURBS_ERROR36","features":[369]},{"name":"GLU_NURBS_ERROR37","features":[369]},{"name":"GLU_NURBS_ERROR4","features":[369]},{"name":"GLU_NURBS_ERROR5","features":[369]},{"name":"GLU_NURBS_ERROR6","features":[369]},{"name":"GLU_NURBS_ERROR7","features":[369]},{"name":"GLU_NURBS_ERROR8","features":[369]},{"name":"GLU_NURBS_ERROR9","features":[369]},{"name":"GLU_OUTLINE_PATCH","features":[369]},{"name":"GLU_OUTLINE_POLYGON","features":[369]},{"name":"GLU_OUTSIDE","features":[369]},{"name":"GLU_OUT_OF_MEMORY","features":[369]},{"name":"GLU_PARAMETRIC_ERROR","features":[369]},{"name":"GLU_PARAMETRIC_TOLERANCE","features":[369]},{"name":"GLU_PATH_LENGTH","features":[369]},{"name":"GLU_POINT","features":[369]},{"name":"GLU_SAMPLING_METHOD","features":[369]},{"name":"GLU_SAMPLING_TOLERANCE","features":[369]},{"name":"GLU_SILHOUETTE","features":[369]},{"name":"GLU_SMOOTH","features":[369]},{"name":"GLU_TESS_BEGIN","features":[369]},{"name":"GLU_TESS_BEGIN_DATA","features":[369]},{"name":"GLU_TESS_BOUNDARY_ONLY","features":[369]},{"name":"GLU_TESS_COMBINE","features":[369]},{"name":"GLU_TESS_COMBINE_DATA","features":[369]},{"name":"GLU_TESS_COORD_TOO_LARGE","features":[369]},{"name":"GLU_TESS_EDGE_FLAG","features":[369]},{"name":"GLU_TESS_EDGE_FLAG_DATA","features":[369]},{"name":"GLU_TESS_END","features":[369]},{"name":"GLU_TESS_END_DATA","features":[369]},{"name":"GLU_TESS_ERROR","features":[369]},{"name":"GLU_TESS_ERROR1","features":[369]},{"name":"GLU_TESS_ERROR2","features":[369]},{"name":"GLU_TESS_ERROR3","features":[369]},{"name":"GLU_TESS_ERROR4","features":[369]},{"name":"GLU_TESS_ERROR5","features":[369]},{"name":"GLU_TESS_ERROR6","features":[369]},{"name":"GLU_TESS_ERROR7","features":[369]},{"name":"GLU_TESS_ERROR8","features":[369]},{"name":"GLU_TESS_ERROR_DATA","features":[369]},{"name":"GLU_TESS_MISSING_BEGIN_CONTOUR","features":[369]},{"name":"GLU_TESS_MISSING_BEGIN_POLYGON","features":[369]},{"name":"GLU_TESS_MISSING_END_CONTOUR","features":[369]},{"name":"GLU_TESS_MISSING_END_POLYGON","features":[369]},{"name":"GLU_TESS_NEED_COMBINE_CALLBACK","features":[369]},{"name":"GLU_TESS_TOLERANCE","features":[369]},{"name":"GLU_TESS_VERTEX","features":[369]},{"name":"GLU_TESS_VERTEX_DATA","features":[369]},{"name":"GLU_TESS_WINDING_ABS_GEQ_TWO","features":[369]},{"name":"GLU_TESS_WINDING_NEGATIVE","features":[369]},{"name":"GLU_TESS_WINDING_NONZERO","features":[369]},{"name":"GLU_TESS_WINDING_ODD","features":[369]},{"name":"GLU_TESS_WINDING_POSITIVE","features":[369]},{"name":"GLU_TESS_WINDING_RULE","features":[369]},{"name":"GLU_TRUE","features":[369]},{"name":"GLU_UNKNOWN","features":[369]},{"name":"GLU_U_STEP","features":[369]},{"name":"GLU_VERSION","features":[369]},{"name":"GLU_VERSION_1_1","features":[369]},{"name":"GLU_VERSION_1_2","features":[369]},{"name":"GLU_VERTEX","features":[369]},{"name":"GLU_V_STEP","features":[369]},{"name":"GLUnurbs","features":[369]},{"name":"GLUnurbsErrorProc","features":[369]},{"name":"GLUquadric","features":[369]},{"name":"GLUquadricErrorProc","features":[369]},{"name":"GLUtessBeginDataProc","features":[369]},{"name":"GLUtessBeginProc","features":[369]},{"name":"GLUtessCombineDataProc","features":[369]},{"name":"GLUtessCombineProc","features":[369]},{"name":"GLUtessEdgeFlagDataProc","features":[369]},{"name":"GLUtessEdgeFlagProc","features":[369]},{"name":"GLUtessEndDataProc","features":[369]},{"name":"GLUtessEndProc","features":[369]},{"name":"GLUtessErrorDataProc","features":[369]},{"name":"GLUtessErrorProc","features":[369]},{"name":"GLUtessVertexDataProc","features":[369]},{"name":"GLUtessVertexProc","features":[369]},{"name":"GLUtesselator","features":[369]},{"name":"GLYPHMETRICSFLOAT","features":[369]},{"name":"GL_2D","features":[369]},{"name":"GL_2_BYTES","features":[369]},{"name":"GL_3D","features":[369]},{"name":"GL_3D_COLOR","features":[369]},{"name":"GL_3D_COLOR_TEXTURE","features":[369]},{"name":"GL_3_BYTES","features":[369]},{"name":"GL_4D_COLOR_TEXTURE","features":[369]},{"name":"GL_4_BYTES","features":[369]},{"name":"GL_ACCUM","features":[369]},{"name":"GL_ACCUM_ALPHA_BITS","features":[369]},{"name":"GL_ACCUM_BLUE_BITS","features":[369]},{"name":"GL_ACCUM_BUFFER_BIT","features":[369]},{"name":"GL_ACCUM_CLEAR_VALUE","features":[369]},{"name":"GL_ACCUM_GREEN_BITS","features":[369]},{"name":"GL_ACCUM_RED_BITS","features":[369]},{"name":"GL_ADD","features":[369]},{"name":"GL_ALL_ATTRIB_BITS","features":[369]},{"name":"GL_ALPHA","features":[369]},{"name":"GL_ALPHA12","features":[369]},{"name":"GL_ALPHA16","features":[369]},{"name":"GL_ALPHA4","features":[369]},{"name":"GL_ALPHA8","features":[369]},{"name":"GL_ALPHA_BIAS","features":[369]},{"name":"GL_ALPHA_BITS","features":[369]},{"name":"GL_ALPHA_SCALE","features":[369]},{"name":"GL_ALPHA_TEST","features":[369]},{"name":"GL_ALPHA_TEST_FUNC","features":[369]},{"name":"GL_ALPHA_TEST_REF","features":[369]},{"name":"GL_ALWAYS","features":[369]},{"name":"GL_AMBIENT","features":[369]},{"name":"GL_AMBIENT_AND_DIFFUSE","features":[369]},{"name":"GL_AND","features":[369]},{"name":"GL_AND_INVERTED","features":[369]},{"name":"GL_AND_REVERSE","features":[369]},{"name":"GL_ATTRIB_STACK_DEPTH","features":[369]},{"name":"GL_AUTO_NORMAL","features":[369]},{"name":"GL_AUX0","features":[369]},{"name":"GL_AUX1","features":[369]},{"name":"GL_AUX2","features":[369]},{"name":"GL_AUX3","features":[369]},{"name":"GL_AUX_BUFFERS","features":[369]},{"name":"GL_BACK","features":[369]},{"name":"GL_BACK_LEFT","features":[369]},{"name":"GL_BACK_RIGHT","features":[369]},{"name":"GL_BGRA_EXT","features":[369]},{"name":"GL_BGR_EXT","features":[369]},{"name":"GL_BITMAP","features":[369]},{"name":"GL_BITMAP_TOKEN","features":[369]},{"name":"GL_BLEND","features":[369]},{"name":"GL_BLEND_DST","features":[369]},{"name":"GL_BLEND_SRC","features":[369]},{"name":"GL_BLUE","features":[369]},{"name":"GL_BLUE_BIAS","features":[369]},{"name":"GL_BLUE_BITS","features":[369]},{"name":"GL_BLUE_SCALE","features":[369]},{"name":"GL_BYTE","features":[369]},{"name":"GL_C3F_V3F","features":[369]},{"name":"GL_C4F_N3F_V3F","features":[369]},{"name":"GL_C4UB_V2F","features":[369]},{"name":"GL_C4UB_V3F","features":[369]},{"name":"GL_CCW","features":[369]},{"name":"GL_CLAMP","features":[369]},{"name":"GL_CLEAR","features":[369]},{"name":"GL_CLIENT_ALL_ATTRIB_BITS","features":[369]},{"name":"GL_CLIENT_ATTRIB_STACK_DEPTH","features":[369]},{"name":"GL_CLIENT_PIXEL_STORE_BIT","features":[369]},{"name":"GL_CLIENT_VERTEX_ARRAY_BIT","features":[369]},{"name":"GL_CLIP_PLANE0","features":[369]},{"name":"GL_CLIP_PLANE1","features":[369]},{"name":"GL_CLIP_PLANE2","features":[369]},{"name":"GL_CLIP_PLANE3","features":[369]},{"name":"GL_CLIP_PLANE4","features":[369]},{"name":"GL_CLIP_PLANE5","features":[369]},{"name":"GL_COEFF","features":[369]},{"name":"GL_COLOR","features":[369]},{"name":"GL_COLOR_ARRAY","features":[369]},{"name":"GL_COLOR_ARRAY_COUNT_EXT","features":[369]},{"name":"GL_COLOR_ARRAY_EXT","features":[369]},{"name":"GL_COLOR_ARRAY_POINTER","features":[369]},{"name":"GL_COLOR_ARRAY_POINTER_EXT","features":[369]},{"name":"GL_COLOR_ARRAY_SIZE","features":[369]},{"name":"GL_COLOR_ARRAY_SIZE_EXT","features":[369]},{"name":"GL_COLOR_ARRAY_STRIDE","features":[369]},{"name":"GL_COLOR_ARRAY_STRIDE_EXT","features":[369]},{"name":"GL_COLOR_ARRAY_TYPE","features":[369]},{"name":"GL_COLOR_ARRAY_TYPE_EXT","features":[369]},{"name":"GL_COLOR_BUFFER_BIT","features":[369]},{"name":"GL_COLOR_CLEAR_VALUE","features":[369]},{"name":"GL_COLOR_INDEX","features":[369]},{"name":"GL_COLOR_INDEX12_EXT","features":[369]},{"name":"GL_COLOR_INDEX16_EXT","features":[369]},{"name":"GL_COLOR_INDEX1_EXT","features":[369]},{"name":"GL_COLOR_INDEX2_EXT","features":[369]},{"name":"GL_COLOR_INDEX4_EXT","features":[369]},{"name":"GL_COLOR_INDEX8_EXT","features":[369]},{"name":"GL_COLOR_INDEXES","features":[369]},{"name":"GL_COLOR_LOGIC_OP","features":[369]},{"name":"GL_COLOR_MATERIAL","features":[369]},{"name":"GL_COLOR_MATERIAL_FACE","features":[369]},{"name":"GL_COLOR_MATERIAL_PARAMETER","features":[369]},{"name":"GL_COLOR_TABLE_ALPHA_SIZE_EXT","features":[369]},{"name":"GL_COLOR_TABLE_BLUE_SIZE_EXT","features":[369]},{"name":"GL_COLOR_TABLE_FORMAT_EXT","features":[369]},{"name":"GL_COLOR_TABLE_GREEN_SIZE_EXT","features":[369]},{"name":"GL_COLOR_TABLE_INTENSITY_SIZE_EXT","features":[369]},{"name":"GL_COLOR_TABLE_LUMINANCE_SIZE_EXT","features":[369]},{"name":"GL_COLOR_TABLE_RED_SIZE_EXT","features":[369]},{"name":"GL_COLOR_TABLE_WIDTH_EXT","features":[369]},{"name":"GL_COLOR_WRITEMASK","features":[369]},{"name":"GL_COMPILE","features":[369]},{"name":"GL_COMPILE_AND_EXECUTE","features":[369]},{"name":"GL_CONSTANT_ATTENUATION","features":[369]},{"name":"GL_COPY","features":[369]},{"name":"GL_COPY_INVERTED","features":[369]},{"name":"GL_COPY_PIXEL_TOKEN","features":[369]},{"name":"GL_CULL_FACE","features":[369]},{"name":"GL_CULL_FACE_MODE","features":[369]},{"name":"GL_CURRENT_BIT","features":[369]},{"name":"GL_CURRENT_COLOR","features":[369]},{"name":"GL_CURRENT_INDEX","features":[369]},{"name":"GL_CURRENT_NORMAL","features":[369]},{"name":"GL_CURRENT_RASTER_COLOR","features":[369]},{"name":"GL_CURRENT_RASTER_DISTANCE","features":[369]},{"name":"GL_CURRENT_RASTER_INDEX","features":[369]},{"name":"GL_CURRENT_RASTER_POSITION","features":[369]},{"name":"GL_CURRENT_RASTER_POSITION_VALID","features":[369]},{"name":"GL_CURRENT_RASTER_TEXTURE_COORDS","features":[369]},{"name":"GL_CURRENT_TEXTURE_COORDS","features":[369]},{"name":"GL_CW","features":[369]},{"name":"GL_DECAL","features":[369]},{"name":"GL_DECR","features":[369]},{"name":"GL_DEPTH","features":[369]},{"name":"GL_DEPTH_BIAS","features":[369]},{"name":"GL_DEPTH_BITS","features":[369]},{"name":"GL_DEPTH_BUFFER_BIT","features":[369]},{"name":"GL_DEPTH_CLEAR_VALUE","features":[369]},{"name":"GL_DEPTH_COMPONENT","features":[369]},{"name":"GL_DEPTH_FUNC","features":[369]},{"name":"GL_DEPTH_RANGE","features":[369]},{"name":"GL_DEPTH_SCALE","features":[369]},{"name":"GL_DEPTH_TEST","features":[369]},{"name":"GL_DEPTH_WRITEMASK","features":[369]},{"name":"GL_DIFFUSE","features":[369]},{"name":"GL_DITHER","features":[369]},{"name":"GL_DOMAIN","features":[369]},{"name":"GL_DONT_CARE","features":[369]},{"name":"GL_DOUBLE","features":[369]},{"name":"GL_DOUBLEBUFFER","features":[369]},{"name":"GL_DOUBLE_EXT","features":[369]},{"name":"GL_DRAW_BUFFER","features":[369]},{"name":"GL_DRAW_PIXEL_TOKEN","features":[369]},{"name":"GL_DST_ALPHA","features":[369]},{"name":"GL_DST_COLOR","features":[369]},{"name":"GL_EDGE_FLAG","features":[369]},{"name":"GL_EDGE_FLAG_ARRAY","features":[369]},{"name":"GL_EDGE_FLAG_ARRAY_COUNT_EXT","features":[369]},{"name":"GL_EDGE_FLAG_ARRAY_EXT","features":[369]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER","features":[369]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER_EXT","features":[369]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE","features":[369]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE_EXT","features":[369]},{"name":"GL_EMISSION","features":[369]},{"name":"GL_ENABLE_BIT","features":[369]},{"name":"GL_EQUAL","features":[369]},{"name":"GL_EQUIV","features":[369]},{"name":"GL_EVAL_BIT","features":[369]},{"name":"GL_EXP","features":[369]},{"name":"GL_EXP2","features":[369]},{"name":"GL_EXTENSIONS","features":[369]},{"name":"GL_EXT_bgra","features":[369]},{"name":"GL_EXT_paletted_texture","features":[369]},{"name":"GL_EXT_vertex_array","features":[369]},{"name":"GL_EYE_LINEAR","features":[369]},{"name":"GL_EYE_PLANE","features":[369]},{"name":"GL_FALSE","features":[369]},{"name":"GL_FASTEST","features":[369]},{"name":"GL_FEEDBACK","features":[369]},{"name":"GL_FEEDBACK_BUFFER_POINTER","features":[369]},{"name":"GL_FEEDBACK_BUFFER_SIZE","features":[369]},{"name":"GL_FEEDBACK_BUFFER_TYPE","features":[369]},{"name":"GL_FILL","features":[369]},{"name":"GL_FLAT","features":[369]},{"name":"GL_FLOAT","features":[369]},{"name":"GL_FOG","features":[369]},{"name":"GL_FOG_BIT","features":[369]},{"name":"GL_FOG_COLOR","features":[369]},{"name":"GL_FOG_DENSITY","features":[369]},{"name":"GL_FOG_END","features":[369]},{"name":"GL_FOG_HINT","features":[369]},{"name":"GL_FOG_INDEX","features":[369]},{"name":"GL_FOG_MODE","features":[369]},{"name":"GL_FOG_SPECULAR_TEXTURE_WIN","features":[369]},{"name":"GL_FOG_START","features":[369]},{"name":"GL_FRONT","features":[369]},{"name":"GL_FRONT_AND_BACK","features":[369]},{"name":"GL_FRONT_FACE","features":[369]},{"name":"GL_FRONT_LEFT","features":[369]},{"name":"GL_FRONT_RIGHT","features":[369]},{"name":"GL_GEQUAL","features":[369]},{"name":"GL_GREATER","features":[369]},{"name":"GL_GREEN","features":[369]},{"name":"GL_GREEN_BIAS","features":[369]},{"name":"GL_GREEN_BITS","features":[369]},{"name":"GL_GREEN_SCALE","features":[369]},{"name":"GL_HINT_BIT","features":[369]},{"name":"GL_INCR","features":[369]},{"name":"GL_INDEX_ARRAY","features":[369]},{"name":"GL_INDEX_ARRAY_COUNT_EXT","features":[369]},{"name":"GL_INDEX_ARRAY_EXT","features":[369]},{"name":"GL_INDEX_ARRAY_POINTER","features":[369]},{"name":"GL_INDEX_ARRAY_POINTER_EXT","features":[369]},{"name":"GL_INDEX_ARRAY_STRIDE","features":[369]},{"name":"GL_INDEX_ARRAY_STRIDE_EXT","features":[369]},{"name":"GL_INDEX_ARRAY_TYPE","features":[369]},{"name":"GL_INDEX_ARRAY_TYPE_EXT","features":[369]},{"name":"GL_INDEX_BITS","features":[369]},{"name":"GL_INDEX_CLEAR_VALUE","features":[369]},{"name":"GL_INDEX_LOGIC_OP","features":[369]},{"name":"GL_INDEX_MODE","features":[369]},{"name":"GL_INDEX_OFFSET","features":[369]},{"name":"GL_INDEX_SHIFT","features":[369]},{"name":"GL_INDEX_WRITEMASK","features":[369]},{"name":"GL_INT","features":[369]},{"name":"GL_INTENSITY","features":[369]},{"name":"GL_INTENSITY12","features":[369]},{"name":"GL_INTENSITY16","features":[369]},{"name":"GL_INTENSITY4","features":[369]},{"name":"GL_INTENSITY8","features":[369]},{"name":"GL_INVALID_ENUM","features":[369]},{"name":"GL_INVALID_OPERATION","features":[369]},{"name":"GL_INVALID_VALUE","features":[369]},{"name":"GL_INVERT","features":[369]},{"name":"GL_KEEP","features":[369]},{"name":"GL_LEFT","features":[369]},{"name":"GL_LEQUAL","features":[369]},{"name":"GL_LESS","features":[369]},{"name":"GL_LIGHT0","features":[369]},{"name":"GL_LIGHT1","features":[369]},{"name":"GL_LIGHT2","features":[369]},{"name":"GL_LIGHT3","features":[369]},{"name":"GL_LIGHT4","features":[369]},{"name":"GL_LIGHT5","features":[369]},{"name":"GL_LIGHT6","features":[369]},{"name":"GL_LIGHT7","features":[369]},{"name":"GL_LIGHTING","features":[369]},{"name":"GL_LIGHTING_BIT","features":[369]},{"name":"GL_LIGHT_MODEL_AMBIENT","features":[369]},{"name":"GL_LIGHT_MODEL_LOCAL_VIEWER","features":[369]},{"name":"GL_LIGHT_MODEL_TWO_SIDE","features":[369]},{"name":"GL_LINE","features":[369]},{"name":"GL_LINEAR","features":[369]},{"name":"GL_LINEAR_ATTENUATION","features":[369]},{"name":"GL_LINEAR_MIPMAP_LINEAR","features":[369]},{"name":"GL_LINEAR_MIPMAP_NEAREST","features":[369]},{"name":"GL_LINES","features":[369]},{"name":"GL_LINE_BIT","features":[369]},{"name":"GL_LINE_LOOP","features":[369]},{"name":"GL_LINE_RESET_TOKEN","features":[369]},{"name":"GL_LINE_SMOOTH","features":[369]},{"name":"GL_LINE_SMOOTH_HINT","features":[369]},{"name":"GL_LINE_STIPPLE","features":[369]},{"name":"GL_LINE_STIPPLE_PATTERN","features":[369]},{"name":"GL_LINE_STIPPLE_REPEAT","features":[369]},{"name":"GL_LINE_STRIP","features":[369]},{"name":"GL_LINE_TOKEN","features":[369]},{"name":"GL_LINE_WIDTH","features":[369]},{"name":"GL_LINE_WIDTH_GRANULARITY","features":[369]},{"name":"GL_LINE_WIDTH_RANGE","features":[369]},{"name":"GL_LIST_BASE","features":[369]},{"name":"GL_LIST_BIT","features":[369]},{"name":"GL_LIST_INDEX","features":[369]},{"name":"GL_LIST_MODE","features":[369]},{"name":"GL_LOAD","features":[369]},{"name":"GL_LOGIC_OP","features":[369]},{"name":"GL_LOGIC_OP_MODE","features":[369]},{"name":"GL_LUMINANCE","features":[369]},{"name":"GL_LUMINANCE12","features":[369]},{"name":"GL_LUMINANCE12_ALPHA12","features":[369]},{"name":"GL_LUMINANCE12_ALPHA4","features":[369]},{"name":"GL_LUMINANCE16","features":[369]},{"name":"GL_LUMINANCE16_ALPHA16","features":[369]},{"name":"GL_LUMINANCE4","features":[369]},{"name":"GL_LUMINANCE4_ALPHA4","features":[369]},{"name":"GL_LUMINANCE6_ALPHA2","features":[369]},{"name":"GL_LUMINANCE8","features":[369]},{"name":"GL_LUMINANCE8_ALPHA8","features":[369]},{"name":"GL_LUMINANCE_ALPHA","features":[369]},{"name":"GL_MAP1_COLOR_4","features":[369]},{"name":"GL_MAP1_GRID_DOMAIN","features":[369]},{"name":"GL_MAP1_GRID_SEGMENTS","features":[369]},{"name":"GL_MAP1_INDEX","features":[369]},{"name":"GL_MAP1_NORMAL","features":[369]},{"name":"GL_MAP1_TEXTURE_COORD_1","features":[369]},{"name":"GL_MAP1_TEXTURE_COORD_2","features":[369]},{"name":"GL_MAP1_TEXTURE_COORD_3","features":[369]},{"name":"GL_MAP1_TEXTURE_COORD_4","features":[369]},{"name":"GL_MAP1_VERTEX_3","features":[369]},{"name":"GL_MAP1_VERTEX_4","features":[369]},{"name":"GL_MAP2_COLOR_4","features":[369]},{"name":"GL_MAP2_GRID_DOMAIN","features":[369]},{"name":"GL_MAP2_GRID_SEGMENTS","features":[369]},{"name":"GL_MAP2_INDEX","features":[369]},{"name":"GL_MAP2_NORMAL","features":[369]},{"name":"GL_MAP2_TEXTURE_COORD_1","features":[369]},{"name":"GL_MAP2_TEXTURE_COORD_2","features":[369]},{"name":"GL_MAP2_TEXTURE_COORD_3","features":[369]},{"name":"GL_MAP2_TEXTURE_COORD_4","features":[369]},{"name":"GL_MAP2_VERTEX_3","features":[369]},{"name":"GL_MAP2_VERTEX_4","features":[369]},{"name":"GL_MAP_COLOR","features":[369]},{"name":"GL_MAP_STENCIL","features":[369]},{"name":"GL_MATRIX_MODE","features":[369]},{"name":"GL_MAX_ATTRIB_STACK_DEPTH","features":[369]},{"name":"GL_MAX_CLIENT_ATTRIB_STACK_DEPTH","features":[369]},{"name":"GL_MAX_CLIP_PLANES","features":[369]},{"name":"GL_MAX_ELEMENTS_INDICES_WIN","features":[369]},{"name":"GL_MAX_ELEMENTS_VERTICES_WIN","features":[369]},{"name":"GL_MAX_EVAL_ORDER","features":[369]},{"name":"GL_MAX_LIGHTS","features":[369]},{"name":"GL_MAX_LIST_NESTING","features":[369]},{"name":"GL_MAX_MODELVIEW_STACK_DEPTH","features":[369]},{"name":"GL_MAX_NAME_STACK_DEPTH","features":[369]},{"name":"GL_MAX_PIXEL_MAP_TABLE","features":[369]},{"name":"GL_MAX_PROJECTION_STACK_DEPTH","features":[369]},{"name":"GL_MAX_TEXTURE_SIZE","features":[369]},{"name":"GL_MAX_TEXTURE_STACK_DEPTH","features":[369]},{"name":"GL_MAX_VIEWPORT_DIMS","features":[369]},{"name":"GL_MODELVIEW","features":[369]},{"name":"GL_MODELVIEW_MATRIX","features":[369]},{"name":"GL_MODELVIEW_STACK_DEPTH","features":[369]},{"name":"GL_MODULATE","features":[369]},{"name":"GL_MULT","features":[369]},{"name":"GL_N3F_V3F","features":[369]},{"name":"GL_NAME_STACK_DEPTH","features":[369]},{"name":"GL_NAND","features":[369]},{"name":"GL_NEAREST","features":[369]},{"name":"GL_NEAREST_MIPMAP_LINEAR","features":[369]},{"name":"GL_NEAREST_MIPMAP_NEAREST","features":[369]},{"name":"GL_NEVER","features":[369]},{"name":"GL_NICEST","features":[369]},{"name":"GL_NONE","features":[369]},{"name":"GL_NOOP","features":[369]},{"name":"GL_NOR","features":[369]},{"name":"GL_NORMALIZE","features":[369]},{"name":"GL_NORMAL_ARRAY","features":[369]},{"name":"GL_NORMAL_ARRAY_COUNT_EXT","features":[369]},{"name":"GL_NORMAL_ARRAY_EXT","features":[369]},{"name":"GL_NORMAL_ARRAY_POINTER","features":[369]},{"name":"GL_NORMAL_ARRAY_POINTER_EXT","features":[369]},{"name":"GL_NORMAL_ARRAY_STRIDE","features":[369]},{"name":"GL_NORMAL_ARRAY_STRIDE_EXT","features":[369]},{"name":"GL_NORMAL_ARRAY_TYPE","features":[369]},{"name":"GL_NORMAL_ARRAY_TYPE_EXT","features":[369]},{"name":"GL_NOTEQUAL","features":[369]},{"name":"GL_NO_ERROR","features":[369]},{"name":"GL_OBJECT_LINEAR","features":[369]},{"name":"GL_OBJECT_PLANE","features":[369]},{"name":"GL_ONE","features":[369]},{"name":"GL_ONE_MINUS_DST_ALPHA","features":[369]},{"name":"GL_ONE_MINUS_DST_COLOR","features":[369]},{"name":"GL_ONE_MINUS_SRC_ALPHA","features":[369]},{"name":"GL_ONE_MINUS_SRC_COLOR","features":[369]},{"name":"GL_OR","features":[369]},{"name":"GL_ORDER","features":[369]},{"name":"GL_OR_INVERTED","features":[369]},{"name":"GL_OR_REVERSE","features":[369]},{"name":"GL_OUT_OF_MEMORY","features":[369]},{"name":"GL_PACK_ALIGNMENT","features":[369]},{"name":"GL_PACK_LSB_FIRST","features":[369]},{"name":"GL_PACK_ROW_LENGTH","features":[369]},{"name":"GL_PACK_SKIP_PIXELS","features":[369]},{"name":"GL_PACK_SKIP_ROWS","features":[369]},{"name":"GL_PACK_SWAP_BYTES","features":[369]},{"name":"GL_PASS_THROUGH_TOKEN","features":[369]},{"name":"GL_PERSPECTIVE_CORRECTION_HINT","features":[369]},{"name":"GL_PHONG_HINT_WIN","features":[369]},{"name":"GL_PHONG_WIN","features":[369]},{"name":"GL_PIXEL_MAP_A_TO_A","features":[369]},{"name":"GL_PIXEL_MAP_A_TO_A_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_B_TO_B","features":[369]},{"name":"GL_PIXEL_MAP_B_TO_B_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_G_TO_G","features":[369]},{"name":"GL_PIXEL_MAP_G_TO_G_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_A","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_A_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_B","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_B_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_G","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_G_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_I","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_I_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_R","features":[369]},{"name":"GL_PIXEL_MAP_I_TO_R_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_R_TO_R","features":[369]},{"name":"GL_PIXEL_MAP_R_TO_R_SIZE","features":[369]},{"name":"GL_PIXEL_MAP_S_TO_S","features":[369]},{"name":"GL_PIXEL_MAP_S_TO_S_SIZE","features":[369]},{"name":"GL_PIXEL_MODE_BIT","features":[369]},{"name":"GL_POINT","features":[369]},{"name":"GL_POINTS","features":[369]},{"name":"GL_POINT_BIT","features":[369]},{"name":"GL_POINT_SIZE","features":[369]},{"name":"GL_POINT_SIZE_GRANULARITY","features":[369]},{"name":"GL_POINT_SIZE_RANGE","features":[369]},{"name":"GL_POINT_SMOOTH","features":[369]},{"name":"GL_POINT_SMOOTH_HINT","features":[369]},{"name":"GL_POINT_TOKEN","features":[369]},{"name":"GL_POLYGON","features":[369]},{"name":"GL_POLYGON_BIT","features":[369]},{"name":"GL_POLYGON_MODE","features":[369]},{"name":"GL_POLYGON_OFFSET_FACTOR","features":[369]},{"name":"GL_POLYGON_OFFSET_FILL","features":[369]},{"name":"GL_POLYGON_OFFSET_LINE","features":[369]},{"name":"GL_POLYGON_OFFSET_POINT","features":[369]},{"name":"GL_POLYGON_OFFSET_UNITS","features":[369]},{"name":"GL_POLYGON_SMOOTH","features":[369]},{"name":"GL_POLYGON_SMOOTH_HINT","features":[369]},{"name":"GL_POLYGON_STIPPLE","features":[369]},{"name":"GL_POLYGON_STIPPLE_BIT","features":[369]},{"name":"GL_POLYGON_TOKEN","features":[369]},{"name":"GL_POSITION","features":[369]},{"name":"GL_PROJECTION","features":[369]},{"name":"GL_PROJECTION_MATRIX","features":[369]},{"name":"GL_PROJECTION_STACK_DEPTH","features":[369]},{"name":"GL_PROXY_TEXTURE_1D","features":[369]},{"name":"GL_PROXY_TEXTURE_2D","features":[369]},{"name":"GL_Q","features":[369]},{"name":"GL_QUADRATIC_ATTENUATION","features":[369]},{"name":"GL_QUADS","features":[369]},{"name":"GL_QUAD_STRIP","features":[369]},{"name":"GL_R","features":[369]},{"name":"GL_R3_G3_B2","features":[369]},{"name":"GL_READ_BUFFER","features":[369]},{"name":"GL_RED","features":[369]},{"name":"GL_RED_BIAS","features":[369]},{"name":"GL_RED_BITS","features":[369]},{"name":"GL_RED_SCALE","features":[369]},{"name":"GL_RENDER","features":[369]},{"name":"GL_RENDERER","features":[369]},{"name":"GL_RENDER_MODE","features":[369]},{"name":"GL_REPEAT","features":[369]},{"name":"GL_REPLACE","features":[369]},{"name":"GL_RETURN","features":[369]},{"name":"GL_RGB","features":[369]},{"name":"GL_RGB10","features":[369]},{"name":"GL_RGB10_A2","features":[369]},{"name":"GL_RGB12","features":[369]},{"name":"GL_RGB16","features":[369]},{"name":"GL_RGB4","features":[369]},{"name":"GL_RGB5","features":[369]},{"name":"GL_RGB5_A1","features":[369]},{"name":"GL_RGB8","features":[369]},{"name":"GL_RGBA","features":[369]},{"name":"GL_RGBA12","features":[369]},{"name":"GL_RGBA16","features":[369]},{"name":"GL_RGBA2","features":[369]},{"name":"GL_RGBA4","features":[369]},{"name":"GL_RGBA8","features":[369]},{"name":"GL_RGBA_MODE","features":[369]},{"name":"GL_RIGHT","features":[369]},{"name":"GL_S","features":[369]},{"name":"GL_SCISSOR_BIT","features":[369]},{"name":"GL_SCISSOR_BOX","features":[369]},{"name":"GL_SCISSOR_TEST","features":[369]},{"name":"GL_SELECT","features":[369]},{"name":"GL_SELECTION_BUFFER_POINTER","features":[369]},{"name":"GL_SELECTION_BUFFER_SIZE","features":[369]},{"name":"GL_SET","features":[369]},{"name":"GL_SHADE_MODEL","features":[369]},{"name":"GL_SHININESS","features":[369]},{"name":"GL_SHORT","features":[369]},{"name":"GL_SMOOTH","features":[369]},{"name":"GL_SPECULAR","features":[369]},{"name":"GL_SPHERE_MAP","features":[369]},{"name":"GL_SPOT_CUTOFF","features":[369]},{"name":"GL_SPOT_DIRECTION","features":[369]},{"name":"GL_SPOT_EXPONENT","features":[369]},{"name":"GL_SRC_ALPHA","features":[369]},{"name":"GL_SRC_ALPHA_SATURATE","features":[369]},{"name":"GL_SRC_COLOR","features":[369]},{"name":"GL_STACK_OVERFLOW","features":[369]},{"name":"GL_STACK_UNDERFLOW","features":[369]},{"name":"GL_STENCIL","features":[369]},{"name":"GL_STENCIL_BITS","features":[369]},{"name":"GL_STENCIL_BUFFER_BIT","features":[369]},{"name":"GL_STENCIL_CLEAR_VALUE","features":[369]},{"name":"GL_STENCIL_FAIL","features":[369]},{"name":"GL_STENCIL_FUNC","features":[369]},{"name":"GL_STENCIL_INDEX","features":[369]},{"name":"GL_STENCIL_PASS_DEPTH_FAIL","features":[369]},{"name":"GL_STENCIL_PASS_DEPTH_PASS","features":[369]},{"name":"GL_STENCIL_REF","features":[369]},{"name":"GL_STENCIL_TEST","features":[369]},{"name":"GL_STENCIL_VALUE_MASK","features":[369]},{"name":"GL_STENCIL_WRITEMASK","features":[369]},{"name":"GL_STEREO","features":[369]},{"name":"GL_SUBPIXEL_BITS","features":[369]},{"name":"GL_T","features":[369]},{"name":"GL_T2F_C3F_V3F","features":[369]},{"name":"GL_T2F_C4F_N3F_V3F","features":[369]},{"name":"GL_T2F_C4UB_V3F","features":[369]},{"name":"GL_T2F_N3F_V3F","features":[369]},{"name":"GL_T2F_V3F","features":[369]},{"name":"GL_T4F_C4F_N3F_V4F","features":[369]},{"name":"GL_T4F_V4F","features":[369]},{"name":"GL_TEXTURE","features":[369]},{"name":"GL_TEXTURE_1D","features":[369]},{"name":"GL_TEXTURE_2D","features":[369]},{"name":"GL_TEXTURE_ALPHA_SIZE","features":[369]},{"name":"GL_TEXTURE_BINDING_1D","features":[369]},{"name":"GL_TEXTURE_BINDING_2D","features":[369]},{"name":"GL_TEXTURE_BIT","features":[369]},{"name":"GL_TEXTURE_BLUE_SIZE","features":[369]},{"name":"GL_TEXTURE_BORDER","features":[369]},{"name":"GL_TEXTURE_BORDER_COLOR","features":[369]},{"name":"GL_TEXTURE_COMPONENTS","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_COUNT_EXT","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_EXT","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER_EXT","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE_EXT","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE_EXT","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE","features":[369]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE_EXT","features":[369]},{"name":"GL_TEXTURE_ENV","features":[369]},{"name":"GL_TEXTURE_ENV_COLOR","features":[369]},{"name":"GL_TEXTURE_ENV_MODE","features":[369]},{"name":"GL_TEXTURE_GEN_MODE","features":[369]},{"name":"GL_TEXTURE_GEN_Q","features":[369]},{"name":"GL_TEXTURE_GEN_R","features":[369]},{"name":"GL_TEXTURE_GEN_S","features":[369]},{"name":"GL_TEXTURE_GEN_T","features":[369]},{"name":"GL_TEXTURE_GREEN_SIZE","features":[369]},{"name":"GL_TEXTURE_HEIGHT","features":[369]},{"name":"GL_TEXTURE_INTENSITY_SIZE","features":[369]},{"name":"GL_TEXTURE_INTERNAL_FORMAT","features":[369]},{"name":"GL_TEXTURE_LUMINANCE_SIZE","features":[369]},{"name":"GL_TEXTURE_MAG_FILTER","features":[369]},{"name":"GL_TEXTURE_MATRIX","features":[369]},{"name":"GL_TEXTURE_MIN_FILTER","features":[369]},{"name":"GL_TEXTURE_PRIORITY","features":[369]},{"name":"GL_TEXTURE_RED_SIZE","features":[369]},{"name":"GL_TEXTURE_RESIDENT","features":[369]},{"name":"GL_TEXTURE_STACK_DEPTH","features":[369]},{"name":"GL_TEXTURE_WIDTH","features":[369]},{"name":"GL_TEXTURE_WRAP_S","features":[369]},{"name":"GL_TEXTURE_WRAP_T","features":[369]},{"name":"GL_TRANSFORM_BIT","features":[369]},{"name":"GL_TRIANGLES","features":[369]},{"name":"GL_TRIANGLE_FAN","features":[369]},{"name":"GL_TRIANGLE_STRIP","features":[369]},{"name":"GL_TRUE","features":[369]},{"name":"GL_UNPACK_ALIGNMENT","features":[369]},{"name":"GL_UNPACK_LSB_FIRST","features":[369]},{"name":"GL_UNPACK_ROW_LENGTH","features":[369]},{"name":"GL_UNPACK_SKIP_PIXELS","features":[369]},{"name":"GL_UNPACK_SKIP_ROWS","features":[369]},{"name":"GL_UNPACK_SWAP_BYTES","features":[369]},{"name":"GL_UNSIGNED_BYTE","features":[369]},{"name":"GL_UNSIGNED_INT","features":[369]},{"name":"GL_UNSIGNED_SHORT","features":[369]},{"name":"GL_V2F","features":[369]},{"name":"GL_V3F","features":[369]},{"name":"GL_VENDOR","features":[369]},{"name":"GL_VERSION","features":[369]},{"name":"GL_VERSION_1_1","features":[369]},{"name":"GL_VERTEX_ARRAY","features":[369]},{"name":"GL_VERTEX_ARRAY_COUNT_EXT","features":[369]},{"name":"GL_VERTEX_ARRAY_EXT","features":[369]},{"name":"GL_VERTEX_ARRAY_POINTER","features":[369]},{"name":"GL_VERTEX_ARRAY_POINTER_EXT","features":[369]},{"name":"GL_VERTEX_ARRAY_SIZE","features":[369]},{"name":"GL_VERTEX_ARRAY_SIZE_EXT","features":[369]},{"name":"GL_VERTEX_ARRAY_STRIDE","features":[369]},{"name":"GL_VERTEX_ARRAY_STRIDE_EXT","features":[369]},{"name":"GL_VERTEX_ARRAY_TYPE","features":[369]},{"name":"GL_VERTEX_ARRAY_TYPE_EXT","features":[369]},{"name":"GL_VIEWPORT","features":[369]},{"name":"GL_VIEWPORT_BIT","features":[369]},{"name":"GL_WIN_draw_range_elements","features":[369]},{"name":"GL_WIN_swap_hint","features":[369]},{"name":"GL_XOR","features":[369]},{"name":"GL_ZERO","features":[369]},{"name":"GL_ZOOM_X","features":[369]},{"name":"GL_ZOOM_Y","features":[369]},{"name":"GetEnhMetaFilePixelFormat","features":[314,369]},{"name":"GetPixelFormat","features":[314,369]},{"name":"HGLRC","features":[369]},{"name":"LAYERPLANEDESCRIPTOR","features":[303,369]},{"name":"PFD_DEPTH_DONTCARE","features":[369]},{"name":"PFD_DIRECT3D_ACCELERATED","features":[369]},{"name":"PFD_DOUBLEBUFFER","features":[369]},{"name":"PFD_DOUBLEBUFFER_DONTCARE","features":[369]},{"name":"PFD_DRAW_TO_BITMAP","features":[369]},{"name":"PFD_DRAW_TO_WINDOW","features":[369]},{"name":"PFD_FLAGS","features":[369]},{"name":"PFD_GENERIC_ACCELERATED","features":[369]},{"name":"PFD_GENERIC_FORMAT","features":[369]},{"name":"PFD_LAYER_TYPE","features":[369]},{"name":"PFD_MAIN_PLANE","features":[369]},{"name":"PFD_NEED_PALETTE","features":[369]},{"name":"PFD_NEED_SYSTEM_PALETTE","features":[369]},{"name":"PFD_OVERLAY_PLANE","features":[369]},{"name":"PFD_PIXEL_TYPE","features":[369]},{"name":"PFD_STEREO","features":[369]},{"name":"PFD_STEREO_DONTCARE","features":[369]},{"name":"PFD_SUPPORT_COMPOSITION","features":[369]},{"name":"PFD_SUPPORT_DIRECTDRAW","features":[369]},{"name":"PFD_SUPPORT_GDI","features":[369]},{"name":"PFD_SUPPORT_OPENGL","features":[369]},{"name":"PFD_SWAP_COPY","features":[369]},{"name":"PFD_SWAP_EXCHANGE","features":[369]},{"name":"PFD_SWAP_LAYER_BUFFERS","features":[369]},{"name":"PFD_TYPE_COLORINDEX","features":[369]},{"name":"PFD_TYPE_RGBA","features":[369]},{"name":"PFD_UNDERLAY_PLANE","features":[369]},{"name":"PFNGLADDSWAPHINTRECTWINPROC","features":[369]},{"name":"PFNGLARRAYELEMENTARRAYEXTPROC","features":[369]},{"name":"PFNGLARRAYELEMENTEXTPROC","features":[369]},{"name":"PFNGLCOLORPOINTEREXTPROC","features":[369]},{"name":"PFNGLCOLORSUBTABLEEXTPROC","features":[369]},{"name":"PFNGLCOLORTABLEEXTPROC","features":[369]},{"name":"PFNGLDRAWARRAYSEXTPROC","features":[369]},{"name":"PFNGLDRAWRANGEELEMENTSWINPROC","features":[369]},{"name":"PFNGLEDGEFLAGPOINTEREXTPROC","features":[369]},{"name":"PFNGLGETCOLORTABLEEXTPROC","features":[369]},{"name":"PFNGLGETCOLORTABLEPARAMETERFVEXTPROC","features":[369]},{"name":"PFNGLGETCOLORTABLEPARAMETERIVEXTPROC","features":[369]},{"name":"PFNGLGETPOINTERVEXTPROC","features":[369]},{"name":"PFNGLINDEXPOINTEREXTPROC","features":[369]},{"name":"PFNGLNORMALPOINTEREXTPROC","features":[369]},{"name":"PFNGLTEXCOORDPOINTEREXTPROC","features":[369]},{"name":"PFNGLVERTEXPOINTEREXTPROC","features":[369]},{"name":"PIXELFORMATDESCRIPTOR","features":[369]},{"name":"POINTFLOAT","features":[369]},{"name":"SetPixelFormat","features":[303,314,369]},{"name":"SwapBuffers","features":[303,314,369]},{"name":"glAccum","features":[369]},{"name":"glAlphaFunc","features":[369]},{"name":"glAreTexturesResident","features":[369]},{"name":"glArrayElement","features":[369]},{"name":"glBegin","features":[369]},{"name":"glBindTexture","features":[369]},{"name":"glBitmap","features":[369]},{"name":"glBlendFunc","features":[369]},{"name":"glCallList","features":[369]},{"name":"glCallLists","features":[369]},{"name":"glClear","features":[369]},{"name":"glClearAccum","features":[369]},{"name":"glClearColor","features":[369]},{"name":"glClearDepth","features":[369]},{"name":"glClearIndex","features":[369]},{"name":"glClearStencil","features":[369]},{"name":"glClipPlane","features":[369]},{"name":"glColor3b","features":[369]},{"name":"glColor3bv","features":[369]},{"name":"glColor3d","features":[369]},{"name":"glColor3dv","features":[369]},{"name":"glColor3f","features":[369]},{"name":"glColor3fv","features":[369]},{"name":"glColor3i","features":[369]},{"name":"glColor3iv","features":[369]},{"name":"glColor3s","features":[369]},{"name":"glColor3sv","features":[369]},{"name":"glColor3ub","features":[369]},{"name":"glColor3ubv","features":[369]},{"name":"glColor3ui","features":[369]},{"name":"glColor3uiv","features":[369]},{"name":"glColor3us","features":[369]},{"name":"glColor3usv","features":[369]},{"name":"glColor4b","features":[369]},{"name":"glColor4bv","features":[369]},{"name":"glColor4d","features":[369]},{"name":"glColor4dv","features":[369]},{"name":"glColor4f","features":[369]},{"name":"glColor4fv","features":[369]},{"name":"glColor4i","features":[369]},{"name":"glColor4iv","features":[369]},{"name":"glColor4s","features":[369]},{"name":"glColor4sv","features":[369]},{"name":"glColor4ub","features":[369]},{"name":"glColor4ubv","features":[369]},{"name":"glColor4ui","features":[369]},{"name":"glColor4uiv","features":[369]},{"name":"glColor4us","features":[369]},{"name":"glColor4usv","features":[369]},{"name":"glColorMask","features":[369]},{"name":"glColorMaterial","features":[369]},{"name":"glColorPointer","features":[369]},{"name":"glCopyPixels","features":[369]},{"name":"glCopyTexImage1D","features":[369]},{"name":"glCopyTexImage2D","features":[369]},{"name":"glCopyTexSubImage1D","features":[369]},{"name":"glCopyTexSubImage2D","features":[369]},{"name":"glCullFace","features":[369]},{"name":"glDeleteLists","features":[369]},{"name":"glDeleteTextures","features":[369]},{"name":"glDepthFunc","features":[369]},{"name":"glDepthMask","features":[369]},{"name":"glDepthRange","features":[369]},{"name":"glDisable","features":[369]},{"name":"glDisableClientState","features":[369]},{"name":"glDrawArrays","features":[369]},{"name":"glDrawBuffer","features":[369]},{"name":"glDrawElements","features":[369]},{"name":"glDrawPixels","features":[369]},{"name":"glEdgeFlag","features":[369]},{"name":"glEdgeFlagPointer","features":[369]},{"name":"glEdgeFlagv","features":[369]},{"name":"glEnable","features":[369]},{"name":"glEnableClientState","features":[369]},{"name":"glEnd","features":[369]},{"name":"glEndList","features":[369]},{"name":"glEvalCoord1d","features":[369]},{"name":"glEvalCoord1dv","features":[369]},{"name":"glEvalCoord1f","features":[369]},{"name":"glEvalCoord1fv","features":[369]},{"name":"glEvalCoord2d","features":[369]},{"name":"glEvalCoord2dv","features":[369]},{"name":"glEvalCoord2f","features":[369]},{"name":"glEvalCoord2fv","features":[369]},{"name":"glEvalMesh1","features":[369]},{"name":"glEvalMesh2","features":[369]},{"name":"glEvalPoint1","features":[369]},{"name":"glEvalPoint2","features":[369]},{"name":"glFeedbackBuffer","features":[369]},{"name":"glFinish","features":[369]},{"name":"glFlush","features":[369]},{"name":"glFogf","features":[369]},{"name":"glFogfv","features":[369]},{"name":"glFogi","features":[369]},{"name":"glFogiv","features":[369]},{"name":"glFrontFace","features":[369]},{"name":"glFrustum","features":[369]},{"name":"glGenLists","features":[369]},{"name":"glGenTextures","features":[369]},{"name":"glGetBooleanv","features":[369]},{"name":"glGetClipPlane","features":[369]},{"name":"glGetDoublev","features":[369]},{"name":"glGetError","features":[369]},{"name":"glGetFloatv","features":[369]},{"name":"glGetIntegerv","features":[369]},{"name":"glGetLightfv","features":[369]},{"name":"glGetLightiv","features":[369]},{"name":"glGetMapdv","features":[369]},{"name":"glGetMapfv","features":[369]},{"name":"glGetMapiv","features":[369]},{"name":"glGetMaterialfv","features":[369]},{"name":"glGetMaterialiv","features":[369]},{"name":"glGetPixelMapfv","features":[369]},{"name":"glGetPixelMapuiv","features":[369]},{"name":"glGetPixelMapusv","features":[369]},{"name":"glGetPointerv","features":[369]},{"name":"glGetPolygonStipple","features":[369]},{"name":"glGetString","features":[369]},{"name":"glGetTexEnvfv","features":[369]},{"name":"glGetTexEnviv","features":[369]},{"name":"glGetTexGendv","features":[369]},{"name":"glGetTexGenfv","features":[369]},{"name":"glGetTexGeniv","features":[369]},{"name":"glGetTexImage","features":[369]},{"name":"glGetTexLevelParameterfv","features":[369]},{"name":"glGetTexLevelParameteriv","features":[369]},{"name":"glGetTexParameterfv","features":[369]},{"name":"glGetTexParameteriv","features":[369]},{"name":"glHint","features":[369]},{"name":"glIndexMask","features":[369]},{"name":"glIndexPointer","features":[369]},{"name":"glIndexd","features":[369]},{"name":"glIndexdv","features":[369]},{"name":"glIndexf","features":[369]},{"name":"glIndexfv","features":[369]},{"name":"glIndexi","features":[369]},{"name":"glIndexiv","features":[369]},{"name":"glIndexs","features":[369]},{"name":"glIndexsv","features":[369]},{"name":"glIndexub","features":[369]},{"name":"glIndexubv","features":[369]},{"name":"glInitNames","features":[369]},{"name":"glInterleavedArrays","features":[369]},{"name":"glIsEnabled","features":[369]},{"name":"glIsList","features":[369]},{"name":"glIsTexture","features":[369]},{"name":"glLightModelf","features":[369]},{"name":"glLightModelfv","features":[369]},{"name":"glLightModeli","features":[369]},{"name":"glLightModeliv","features":[369]},{"name":"glLightf","features":[369]},{"name":"glLightfv","features":[369]},{"name":"glLighti","features":[369]},{"name":"glLightiv","features":[369]},{"name":"glLineStipple","features":[369]},{"name":"glLineWidth","features":[369]},{"name":"glListBase","features":[369]},{"name":"glLoadIdentity","features":[369]},{"name":"glLoadMatrixd","features":[369]},{"name":"glLoadMatrixf","features":[369]},{"name":"glLoadName","features":[369]},{"name":"glLogicOp","features":[369]},{"name":"glMap1d","features":[369]},{"name":"glMap1f","features":[369]},{"name":"glMap2d","features":[369]},{"name":"glMap2f","features":[369]},{"name":"glMapGrid1d","features":[369]},{"name":"glMapGrid1f","features":[369]},{"name":"glMapGrid2d","features":[369]},{"name":"glMapGrid2f","features":[369]},{"name":"glMaterialf","features":[369]},{"name":"glMaterialfv","features":[369]},{"name":"glMateriali","features":[369]},{"name":"glMaterialiv","features":[369]},{"name":"glMatrixMode","features":[369]},{"name":"glMultMatrixd","features":[369]},{"name":"glMultMatrixf","features":[369]},{"name":"glNewList","features":[369]},{"name":"glNormal3b","features":[369]},{"name":"glNormal3bv","features":[369]},{"name":"glNormal3d","features":[369]},{"name":"glNormal3dv","features":[369]},{"name":"glNormal3f","features":[369]},{"name":"glNormal3fv","features":[369]},{"name":"glNormal3i","features":[369]},{"name":"glNormal3iv","features":[369]},{"name":"glNormal3s","features":[369]},{"name":"glNormal3sv","features":[369]},{"name":"glNormalPointer","features":[369]},{"name":"glOrtho","features":[369]},{"name":"glPassThrough","features":[369]},{"name":"glPixelMapfv","features":[369]},{"name":"glPixelMapuiv","features":[369]},{"name":"glPixelMapusv","features":[369]},{"name":"glPixelStoref","features":[369]},{"name":"glPixelStorei","features":[369]},{"name":"glPixelTransferf","features":[369]},{"name":"glPixelTransferi","features":[369]},{"name":"glPixelZoom","features":[369]},{"name":"glPointSize","features":[369]},{"name":"glPolygonMode","features":[369]},{"name":"glPolygonOffset","features":[369]},{"name":"glPolygonStipple","features":[369]},{"name":"glPopAttrib","features":[369]},{"name":"glPopClientAttrib","features":[369]},{"name":"glPopMatrix","features":[369]},{"name":"glPopName","features":[369]},{"name":"glPrioritizeTextures","features":[369]},{"name":"glPushAttrib","features":[369]},{"name":"glPushClientAttrib","features":[369]},{"name":"glPushMatrix","features":[369]},{"name":"glPushName","features":[369]},{"name":"glRasterPos2d","features":[369]},{"name":"glRasterPos2dv","features":[369]},{"name":"glRasterPos2f","features":[369]},{"name":"glRasterPos2fv","features":[369]},{"name":"glRasterPos2i","features":[369]},{"name":"glRasterPos2iv","features":[369]},{"name":"glRasterPos2s","features":[369]},{"name":"glRasterPos2sv","features":[369]},{"name":"glRasterPos3d","features":[369]},{"name":"glRasterPos3dv","features":[369]},{"name":"glRasterPos3f","features":[369]},{"name":"glRasterPos3fv","features":[369]},{"name":"glRasterPos3i","features":[369]},{"name":"glRasterPos3iv","features":[369]},{"name":"glRasterPos3s","features":[369]},{"name":"glRasterPos3sv","features":[369]},{"name":"glRasterPos4d","features":[369]},{"name":"glRasterPos4dv","features":[369]},{"name":"glRasterPos4f","features":[369]},{"name":"glRasterPos4fv","features":[369]},{"name":"glRasterPos4i","features":[369]},{"name":"glRasterPos4iv","features":[369]},{"name":"glRasterPos4s","features":[369]},{"name":"glRasterPos4sv","features":[369]},{"name":"glReadBuffer","features":[369]},{"name":"glReadPixels","features":[369]},{"name":"glRectd","features":[369]},{"name":"glRectdv","features":[369]},{"name":"glRectf","features":[369]},{"name":"glRectfv","features":[369]},{"name":"glRecti","features":[369]},{"name":"glRectiv","features":[369]},{"name":"glRects","features":[369]},{"name":"glRectsv","features":[369]},{"name":"glRenderMode","features":[369]},{"name":"glRotated","features":[369]},{"name":"glRotatef","features":[369]},{"name":"glScaled","features":[369]},{"name":"glScalef","features":[369]},{"name":"glScissor","features":[369]},{"name":"glSelectBuffer","features":[369]},{"name":"glShadeModel","features":[369]},{"name":"glStencilFunc","features":[369]},{"name":"glStencilMask","features":[369]},{"name":"glStencilOp","features":[369]},{"name":"glTexCoord1d","features":[369]},{"name":"glTexCoord1dv","features":[369]},{"name":"glTexCoord1f","features":[369]},{"name":"glTexCoord1fv","features":[369]},{"name":"glTexCoord1i","features":[369]},{"name":"glTexCoord1iv","features":[369]},{"name":"glTexCoord1s","features":[369]},{"name":"glTexCoord1sv","features":[369]},{"name":"glTexCoord2d","features":[369]},{"name":"glTexCoord2dv","features":[369]},{"name":"glTexCoord2f","features":[369]},{"name":"glTexCoord2fv","features":[369]},{"name":"glTexCoord2i","features":[369]},{"name":"glTexCoord2iv","features":[369]},{"name":"glTexCoord2s","features":[369]},{"name":"glTexCoord2sv","features":[369]},{"name":"glTexCoord3d","features":[369]},{"name":"glTexCoord3dv","features":[369]},{"name":"glTexCoord3f","features":[369]},{"name":"glTexCoord3fv","features":[369]},{"name":"glTexCoord3i","features":[369]},{"name":"glTexCoord3iv","features":[369]},{"name":"glTexCoord3s","features":[369]},{"name":"glTexCoord3sv","features":[369]},{"name":"glTexCoord4d","features":[369]},{"name":"glTexCoord4dv","features":[369]},{"name":"glTexCoord4f","features":[369]},{"name":"glTexCoord4fv","features":[369]},{"name":"glTexCoord4i","features":[369]},{"name":"glTexCoord4iv","features":[369]},{"name":"glTexCoord4s","features":[369]},{"name":"glTexCoord4sv","features":[369]},{"name":"glTexCoordPointer","features":[369]},{"name":"glTexEnvf","features":[369]},{"name":"glTexEnvfv","features":[369]},{"name":"glTexEnvi","features":[369]},{"name":"glTexEnviv","features":[369]},{"name":"glTexGend","features":[369]},{"name":"glTexGendv","features":[369]},{"name":"glTexGenf","features":[369]},{"name":"glTexGenfv","features":[369]},{"name":"glTexGeni","features":[369]},{"name":"glTexGeniv","features":[369]},{"name":"glTexImage1D","features":[369]},{"name":"glTexImage2D","features":[369]},{"name":"glTexParameterf","features":[369]},{"name":"glTexParameterfv","features":[369]},{"name":"glTexParameteri","features":[369]},{"name":"glTexParameteriv","features":[369]},{"name":"glTexSubImage1D","features":[369]},{"name":"glTexSubImage2D","features":[369]},{"name":"glTranslated","features":[369]},{"name":"glTranslatef","features":[369]},{"name":"glVertex2d","features":[369]},{"name":"glVertex2dv","features":[369]},{"name":"glVertex2f","features":[369]},{"name":"glVertex2fv","features":[369]},{"name":"glVertex2i","features":[369]},{"name":"glVertex2iv","features":[369]},{"name":"glVertex2s","features":[369]},{"name":"glVertex2sv","features":[369]},{"name":"glVertex3d","features":[369]},{"name":"glVertex3dv","features":[369]},{"name":"glVertex3f","features":[369]},{"name":"glVertex3fv","features":[369]},{"name":"glVertex3i","features":[369]},{"name":"glVertex3iv","features":[369]},{"name":"glVertex3s","features":[369]},{"name":"glVertex3sv","features":[369]},{"name":"glVertex4d","features":[369]},{"name":"glVertex4dv","features":[369]},{"name":"glVertex4f","features":[369]},{"name":"glVertex4fv","features":[369]},{"name":"glVertex4i","features":[369]},{"name":"glVertex4iv","features":[369]},{"name":"glVertex4s","features":[369]},{"name":"glVertex4sv","features":[369]},{"name":"glVertexPointer","features":[369]},{"name":"glViewport","features":[369]},{"name":"gluBeginCurve","features":[369]},{"name":"gluBeginPolygon","features":[369]},{"name":"gluBeginSurface","features":[369]},{"name":"gluBeginTrim","features":[369]},{"name":"gluBuild1DMipmaps","features":[369]},{"name":"gluBuild2DMipmaps","features":[369]},{"name":"gluCylinder","features":[369]},{"name":"gluDeleteNurbsRenderer","features":[369]},{"name":"gluDeleteQuadric","features":[369]},{"name":"gluDeleteTess","features":[369]},{"name":"gluDisk","features":[369]},{"name":"gluEndCurve","features":[369]},{"name":"gluEndPolygon","features":[369]},{"name":"gluEndSurface","features":[369]},{"name":"gluEndTrim","features":[369]},{"name":"gluErrorString","features":[369]},{"name":"gluErrorUnicodeStringEXT","features":[369]},{"name":"gluGetNurbsProperty","features":[369]},{"name":"gluGetString","features":[369]},{"name":"gluGetTessProperty","features":[369]},{"name":"gluLoadSamplingMatrices","features":[369]},{"name":"gluLookAt","features":[369]},{"name":"gluNewNurbsRenderer","features":[369]},{"name":"gluNewQuadric","features":[369]},{"name":"gluNewTess","features":[369]},{"name":"gluNextContour","features":[369]},{"name":"gluNurbsCallback","features":[369]},{"name":"gluNurbsCurve","features":[369]},{"name":"gluNurbsProperty","features":[369]},{"name":"gluNurbsSurface","features":[369]},{"name":"gluOrtho2D","features":[369]},{"name":"gluPartialDisk","features":[369]},{"name":"gluPerspective","features":[369]},{"name":"gluPickMatrix","features":[369]},{"name":"gluProject","features":[369]},{"name":"gluPwlCurve","features":[369]},{"name":"gluQuadricCallback","features":[369]},{"name":"gluQuadricDrawStyle","features":[369]},{"name":"gluQuadricNormals","features":[369]},{"name":"gluQuadricOrientation","features":[369]},{"name":"gluQuadricTexture","features":[369]},{"name":"gluScaleImage","features":[369]},{"name":"gluSphere","features":[369]},{"name":"gluTessBeginContour","features":[369]},{"name":"gluTessBeginPolygon","features":[369]},{"name":"gluTessCallback","features":[369]},{"name":"gluTessEndContour","features":[369]},{"name":"gluTessEndPolygon","features":[369]},{"name":"gluTessNormal","features":[369]},{"name":"gluTessProperty","features":[369]},{"name":"gluTessVertex","features":[369]},{"name":"gluUnProject","features":[369]},{"name":"wglCopyContext","features":[303,369]},{"name":"wglCreateContext","features":[314,369]},{"name":"wglCreateLayerContext","features":[314,369]},{"name":"wglDeleteContext","features":[303,369]},{"name":"wglDescribeLayerPlane","features":[303,314,369]},{"name":"wglGetCurrentContext","features":[369]},{"name":"wglGetCurrentDC","features":[314,369]},{"name":"wglGetLayerPaletteEntries","features":[303,314,369]},{"name":"wglGetProcAddress","features":[303,369]},{"name":"wglMakeCurrent","features":[303,314,369]},{"name":"wglRealizeLayerPalette","features":[303,314,369]},{"name":"wglSetLayerPaletteEntries","features":[303,314,369]},{"name":"wglShareLists","features":[303,369]},{"name":"wglSwapLayerBuffers","features":[303,314,369]},{"name":"wglUseFontBitmapsA","features":[303,314,369]},{"name":"wglUseFontBitmapsW","features":[303,314,369]},{"name":"wglUseFontOutlinesA","features":[303,314,369]},{"name":"wglUseFontOutlinesW","features":[303,314,369]}],"419":[{"name":"ADDJOB_INFO_1A","features":[411]},{"name":"ADDJOB_INFO_1W","features":[411]},{"name":"ALREADY_REGISTERED","features":[411]},{"name":"ALREADY_UNREGISTERED","features":[411]},{"name":"APD_COPY_ALL_FILES","features":[411]},{"name":"APD_COPY_FROM_DIRECTORY","features":[411]},{"name":"APD_COPY_NEW_FILES","features":[411]},{"name":"APD_STRICT_DOWNGRADE","features":[411]},{"name":"APD_STRICT_UPGRADE","features":[411]},{"name":"APPLYCPSUI_NO_NEWDEF","features":[411]},{"name":"APPLYCPSUI_OK_CANCEL_BUTTON","features":[411]},{"name":"ASYNC_CALL_ALREADY_PARKED","features":[411]},{"name":"ASYNC_CALL_IN_PROGRESS","features":[411]},{"name":"ASYNC_NOTIFICATION_FAILURE","features":[411]},{"name":"ATTRIBUTE_INFO_1","features":[411]},{"name":"ATTRIBUTE_INFO_2","features":[411]},{"name":"ATTRIBUTE_INFO_3","features":[411]},{"name":"ATTRIBUTE_INFO_4","features":[411]},{"name":"AbortPrinter","features":[303,411]},{"name":"AddFormA","features":[303,411]},{"name":"AddFormW","features":[303,411]},{"name":"AddJobA","features":[303,411]},{"name":"AddJobW","features":[303,411]},{"name":"AddMonitorA","features":[303,411]},{"name":"AddMonitorW","features":[303,411]},{"name":"AddPortA","features":[303,411]},{"name":"AddPortW","features":[303,411]},{"name":"AddPrintDeviceObject","features":[303,411]},{"name":"AddPrintProcessorA","features":[303,411]},{"name":"AddPrintProcessorW","features":[303,411]},{"name":"AddPrintProvidorA","features":[303,411]},{"name":"AddPrintProvidorW","features":[303,411]},{"name":"AddPrinterA","features":[303,411]},{"name":"AddPrinterConnection2A","features":[303,411]},{"name":"AddPrinterConnection2W","features":[303,411]},{"name":"AddPrinterConnectionA","features":[303,411]},{"name":"AddPrinterConnectionW","features":[303,411]},{"name":"AddPrinterDriverA","features":[303,411]},{"name":"AddPrinterDriverExA","features":[303,411]},{"name":"AddPrinterDriverExW","features":[303,411]},{"name":"AddPrinterDriverW","features":[303,411]},{"name":"AddPrinterW","features":[303,411]},{"name":"AdvancedDocumentPropertiesA","features":[303,314,411]},{"name":"AdvancedDocumentPropertiesW","features":[303,314,411]},{"name":"AppendPrinterNotifyInfoData","features":[303,411]},{"name":"BIDI_ACCESS_ADMINISTRATOR","features":[411]},{"name":"BIDI_ACCESS_USER","features":[411]},{"name":"BIDI_ACTION_ENUM_SCHEMA","features":[411]},{"name":"BIDI_ACTION_GET","features":[411]},{"name":"BIDI_ACTION_GET_ALL","features":[411]},{"name":"BIDI_ACTION_GET_WITH_ARGUMENT","features":[411]},{"name":"BIDI_ACTION_SET","features":[411]},{"name":"BIDI_BLOB","features":[411]},{"name":"BIDI_BOOL","features":[411]},{"name":"BIDI_DATA","features":[303,411]},{"name":"BIDI_ENUM","features":[411]},{"name":"BIDI_FLOAT","features":[411]},{"name":"BIDI_INT","features":[411]},{"name":"BIDI_NULL","features":[411]},{"name":"BIDI_REQUEST_CONTAINER","features":[303,411]},{"name":"BIDI_REQUEST_DATA","features":[303,411]},{"name":"BIDI_RESPONSE_CONTAINER","features":[303,411]},{"name":"BIDI_RESPONSE_DATA","features":[303,411]},{"name":"BIDI_STRING","features":[411]},{"name":"BIDI_TEXT","features":[411]},{"name":"BIDI_TYPE","features":[411]},{"name":"BINARY_CONTAINER","features":[411]},{"name":"BOOKLET_EDGE_LEFT","features":[411]},{"name":"BOOKLET_EDGE_RIGHT","features":[411]},{"name":"BOOKLET_PRINT","features":[411]},{"name":"BORDER_PRINT","features":[411]},{"name":"BidiRequest","features":[411]},{"name":"BidiRequestContainer","features":[411]},{"name":"BidiSpl","features":[411]},{"name":"BranchOfficeJobData","features":[411]},{"name":"BranchOfficeJobDataContainer","features":[411]},{"name":"BranchOfficeJobDataError","features":[411]},{"name":"BranchOfficeJobDataPipelineFailed","features":[411]},{"name":"BranchOfficeJobDataPrinted","features":[411]},{"name":"BranchOfficeJobDataRendered","features":[411]},{"name":"BranchOfficeLogOfflineFileFull","features":[411]},{"name":"CC_BIG5","features":[411]},{"name":"CC_CP437","features":[411]},{"name":"CC_CP850","features":[411]},{"name":"CC_CP863","features":[411]},{"name":"CC_DEFAULT","features":[411]},{"name":"CC_GB2312","features":[411]},{"name":"CC_ISC","features":[411]},{"name":"CC_JIS","features":[411]},{"name":"CC_JIS_ANK","features":[411]},{"name":"CC_NOPRECNV","features":[411]},{"name":"CC_NS86","features":[411]},{"name":"CC_SJIS","features":[411]},{"name":"CC_TCA","features":[411]},{"name":"CC_WANSUNG","features":[411]},{"name":"CDM_CONVERT","features":[411]},{"name":"CDM_CONVERT351","features":[411]},{"name":"CDM_DRIVER_DEFAULT","features":[411]},{"name":"CHANNEL_ACQUIRED","features":[411]},{"name":"CHANNEL_ALREADY_CLOSED","features":[411]},{"name":"CHANNEL_ALREADY_OPENED","features":[411]},{"name":"CHANNEL_CLOSED_BY_ANOTHER_LISTENER","features":[411]},{"name":"CHANNEL_CLOSED_BY_SAME_LISTENER","features":[411]},{"name":"CHANNEL_CLOSED_BY_SERVER","features":[411]},{"name":"CHANNEL_NOT_OPENED","features":[411]},{"name":"CHANNEL_RELEASED_BY_LISTENER","features":[411]},{"name":"CHANNEL_WAITING_FOR_CLIENT_NOTIFICATION","features":[411]},{"name":"CHKBOXS_FALSE_PDATA","features":[411]},{"name":"CHKBOXS_FALSE_TRUE","features":[411]},{"name":"CHKBOXS_NONE_PDATA","features":[411]},{"name":"CHKBOXS_NO_PDATA","features":[411]},{"name":"CHKBOXS_NO_YES","features":[411]},{"name":"CHKBOXS_OFF_ON","features":[411]},{"name":"CHKBOXS_OFF_PDATA","features":[411]},{"name":"CLSID_OEMPTPROVIDER","features":[411]},{"name":"CLSID_OEMRENDER","features":[411]},{"name":"CLSID_OEMUI","features":[411]},{"name":"CLSID_OEMUIMXDC","features":[411]},{"name":"CLSID_PTPROVIDER","features":[411]},{"name":"CLSID_XPSRASTERIZER_FACTORY","features":[411]},{"name":"COLOR_OPTIMIZATION","features":[411]},{"name":"COMPROPSHEETUI","features":[303,411,365]},{"name":"CONFIG_INFO_DATA_1","features":[411]},{"name":"COPYFILE_EVENT_ADD_PRINTER_CONNECTION","features":[411]},{"name":"COPYFILE_EVENT_DELETE_PRINTER","features":[411]},{"name":"COPYFILE_EVENT_DELETE_PRINTER_CONNECTION","features":[411]},{"name":"COPYFILE_EVENT_FILES_CHANGED","features":[411]},{"name":"COPYFILE_EVENT_SET_PRINTER_DATAEX","features":[411]},{"name":"COPYFILE_FLAG_CLIENT_SPOOLER","features":[411]},{"name":"COPYFILE_FLAG_SERVER_SPOOLER","features":[411]},{"name":"CORE_PRINTER_DRIVERA","features":[303,411]},{"name":"CORE_PRINTER_DRIVERW","features":[303,411]},{"name":"CPSFUNC_ADD_HPROPSHEETPAGE","features":[411]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUI","features":[411]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIA","features":[411]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIW","features":[411]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUI","features":[411]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIA","features":[411]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIW","features":[411]},{"name":"CPSFUNC_ADD_PROPSHEETPAGE","features":[411]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEA","features":[411]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEW","features":[411]},{"name":"CPSFUNC_DELETE_HCOMPROPSHEET","features":[411]},{"name":"CPSFUNC_DO_APPLY_CPSUI","features":[411]},{"name":"CPSFUNC_GET_HPSUIPAGES","features":[411]},{"name":"CPSFUNC_GET_PAGECOUNT","features":[411]},{"name":"CPSFUNC_GET_PFNPROPSHEETUI_ICON","features":[411]},{"name":"CPSFUNC_IGNORE_CPSUI_PSN_APPLY","features":[411]},{"name":"CPSFUNC_INSERT_PSUIPAGE","features":[411]},{"name":"CPSFUNC_INSERT_PSUIPAGEA","features":[411]},{"name":"CPSFUNC_INSERT_PSUIPAGEW","features":[411]},{"name":"CPSFUNC_LOAD_CPSUI_ICON","features":[411]},{"name":"CPSFUNC_LOAD_CPSUI_STRING","features":[411]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGA","features":[411]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGW","features":[411]},{"name":"CPSFUNC_QUERY_DATABLOCK","features":[411]},{"name":"CPSFUNC_SET_DATABLOCK","features":[411]},{"name":"CPSFUNC_SET_DMPUB_HIDEBITS","features":[411]},{"name":"CPSFUNC_SET_FUSION_CONTEXT","features":[411]},{"name":"CPSFUNC_SET_HSTARTPAGE","features":[411]},{"name":"CPSFUNC_SET_PSUIPAGE_ICON","features":[411]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLE","features":[411]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEA","features":[411]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEW","features":[411]},{"name":"CPSFUNC_SET_RESULT","features":[411]},{"name":"CPSUICBPARAM","features":[303,411,365]},{"name":"CPSUICB_ACTION_ITEMS_APPLIED","features":[411]},{"name":"CPSUICB_ACTION_NONE","features":[411]},{"name":"CPSUICB_ACTION_NO_APPLY_EXIT","features":[411]},{"name":"CPSUICB_ACTION_OPTIF_CHANGED","features":[411]},{"name":"CPSUICB_ACTION_REINIT_ITEMS","features":[411]},{"name":"CPSUICB_REASON_ABOUT","features":[411]},{"name":"CPSUICB_REASON_APPLYNOW","features":[411]},{"name":"CPSUICB_REASON_DLGPROC","features":[411]},{"name":"CPSUICB_REASON_ECB_CHANGED","features":[411]},{"name":"CPSUICB_REASON_EXTPUSH","features":[411]},{"name":"CPSUICB_REASON_ITEMS_REVERTED","features":[411]},{"name":"CPSUICB_REASON_KILLACTIVE","features":[411]},{"name":"CPSUICB_REASON_OPTITEM_SETFOCUS","features":[411]},{"name":"CPSUICB_REASON_PUSHBUTTON","features":[411]},{"name":"CPSUICB_REASON_SEL_CHANGED","features":[411]},{"name":"CPSUICB_REASON_SETACTIVE","features":[411]},{"name":"CPSUICB_REASON_UNDO_CHANGES","features":[411]},{"name":"CPSUIDATABLOCK","features":[411]},{"name":"CPSUIF_ABOUT_CALLBACK","features":[411]},{"name":"CPSUIF_ICONID_AS_HICON","features":[411]},{"name":"CPSUIF_UPDATE_PERMISSION","features":[411]},{"name":"CPSUI_CANCEL","features":[411]},{"name":"CPSUI_OK","features":[411]},{"name":"CPSUI_REBOOTSYSTEM","features":[411]},{"name":"CPSUI_RESTARTWINDOWS","features":[411]},{"name":"CUSTOMPARAM_HEIGHT","features":[411]},{"name":"CUSTOMPARAM_HEIGHTOFFSET","features":[411]},{"name":"CUSTOMPARAM_MAX","features":[411]},{"name":"CUSTOMPARAM_ORIENTATION","features":[411]},{"name":"CUSTOMPARAM_WIDTH","features":[411]},{"name":"CUSTOMPARAM_WIDTHOFFSET","features":[411]},{"name":"CUSTOMSIZEPARAM","features":[411]},{"name":"CallRouterFindFirstPrinterChangeNotification","features":[303,411]},{"name":"ClosePrinter","features":[303,411]},{"name":"CloseSpoolFileHandle","features":[303,411]},{"name":"CommitSpoolData","features":[303,411]},{"name":"CommonPropertySheetUIA","features":[303,411]},{"name":"CommonPropertySheetUIW","features":[303,411]},{"name":"Compression_Fast","features":[411]},{"name":"Compression_Normal","features":[411]},{"name":"Compression_NotCompressed","features":[411]},{"name":"Compression_Small","features":[411]},{"name":"ConfigurePortA","features":[303,411]},{"name":"ConfigurePortW","features":[303,411]},{"name":"ConnectToPrinterDlg","features":[303,411]},{"name":"CorePrinterDriverInstalledA","features":[303,411]},{"name":"CorePrinterDriverInstalledW","features":[303,411]},{"name":"CreatePrintAsyncNotifyChannel","features":[411]},{"name":"CreatePrinterIC","features":[303,314,411]},{"name":"DATATYPES_INFO_1A","features":[411]},{"name":"DATATYPES_INFO_1W","features":[411]},{"name":"DATA_HEADER","features":[411]},{"name":"DEF_PRIORITY","features":[411]},{"name":"DELETE_PORT_DATA_1","features":[411]},{"name":"DEVICEPROPERTYHEADER","features":[303,411]},{"name":"DEVQUERYPRINT_INFO","features":[303,314,411]},{"name":"DF_BKSP_OK","features":[411]},{"name":"DF_NOITALIC","features":[411]},{"name":"DF_NOUNDER","features":[411]},{"name":"DF_NO_BOLD","features":[411]},{"name":"DF_NO_DOUBLE_UNDERLINE","features":[411]},{"name":"DF_NO_STRIKETHRU","features":[411]},{"name":"DF_TYPE_CAPSL","features":[411]},{"name":"DF_TYPE_HPINTELLIFONT","features":[411]},{"name":"DF_TYPE_OEM1","features":[411]},{"name":"DF_TYPE_OEM2","features":[411]},{"name":"DF_TYPE_PST1","features":[411]},{"name":"DF_TYPE_TRUETYPE","features":[411]},{"name":"DF_XM_CR","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_COUNT","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_GETAT","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_DRIVERPROPERTIES","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTERQUEUE","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTSCHEMATICKET","features":[411]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_USERPROPERTIES","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENT","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_BIDINOTIFICATION","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_DETAILEDREASONID","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REASONID","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REQUEST","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_SOURCEAPPLICATION","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWMODAL","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWPARENT","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONDRIVEREVENT","features":[411]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONPRINTERQUEUESENUMERATED","features":[411]},{"name":"DISPID_PRINTEREXTENSION_REQUEST","features":[411]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_CANCEL","features":[411]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_COMPLETE","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBOOL","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBYTES","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_GETINT32","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_GETREADSTREAM","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_GETSTRING","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_GETWRITESTREAM","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBOOL","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBYTES","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_SETINT32","features":[411]},{"name":"DISPID_PRINTERPROPERTYBAG_SETSTRING","features":[411]},{"name":"DISPID_PRINTERQUEUE","features":[411]},{"name":"DISPID_PRINTERQUEUEEVENT","features":[411]},{"name":"DISPID_PRINTERQUEUEEVENT_ONBIDIRESPONSERECEIVED","features":[411]},{"name":"DISPID_PRINTERQUEUEVIEW","features":[411]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT","features":[411]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT_ONCHANGED","features":[411]},{"name":"DISPID_PRINTERQUEUEVIEW_SETVIEWRANGE","features":[411]},{"name":"DISPID_PRINTERQUEUE_GETPRINTERQUEUEVIEW","features":[411]},{"name":"DISPID_PRINTERQUEUE_GETPROPERTIES","features":[411]},{"name":"DISPID_PRINTERQUEUE_HANDLE","features":[411]},{"name":"DISPID_PRINTERQUEUE_NAME","features":[411]},{"name":"DISPID_PRINTERQUEUE_SENDBIDIQUERY","features":[411]},{"name":"DISPID_PRINTERQUEUE_SENDBIDISETREQUESTASYNC","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBOOL","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBYTES","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETINT32","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETREADSTREAM","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTREAMASXML","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTRING","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETWRITESTREAM","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBOOL","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBYTES","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETINT32","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETSTRING","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_READ","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_WRITE","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_COMMIT","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SEEK","features":[411]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SETSIZE","features":[411]},{"name":"DISPID_PRINTERSCRIPTCONTEXT","features":[411]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_DRIVERPROPERTIES","features":[411]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_QUEUEPROPERTIES","features":[411]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_USERPROPERTIES","features":[411]},{"name":"DISPID_PRINTJOBCOLLECTION","features":[411]},{"name":"DISPID_PRINTJOBCOLLECTION_COUNT","features":[411]},{"name":"DISPID_PRINTJOBCOLLECTION_GETAT","features":[411]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION","features":[411]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT","features":[411]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT_COMPLETED","features":[411]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_CANCEL","features":[411]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_START","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE_KEYNAME","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETOPTIONS","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETPARAMETERDEFINITION","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETSELECTEDOPTION","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMAXVALUE","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMINVALUE","features":[411]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_PAGEIMAGEABLESIZE","features":[411]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT","features":[411]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT_DISPLAYNAME","features":[411]},{"name":"DISPID_PRINTSCHEMA_ELEMENT","features":[411]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAME","features":[411]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAMESPACEURI","features":[411]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_XMLNODE","features":[411]},{"name":"DISPID_PRINTSCHEMA_FEATURE","features":[411]},{"name":"DISPID_PRINTSCHEMA_FEATURE_DISPLAYUI","features":[411]},{"name":"DISPID_PRINTSCHEMA_FEATURE_GETOPTION","features":[411]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTEDOPTION","features":[411]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTIONTYPE","features":[411]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION","features":[411]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION_PAGESPERSHEET","features":[411]},{"name":"DISPID_PRINTSCHEMA_OPTION","features":[411]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION","features":[411]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_COUNT","features":[411]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_GETAT","features":[411]},{"name":"DISPID_PRINTSCHEMA_OPTION_CONSTRAINED","features":[411]},{"name":"DISPID_PRINTSCHEMA_OPTION_GETPROPERTYVALUE","features":[411]},{"name":"DISPID_PRINTSCHEMA_OPTION_SELECTED","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_HEIGHT","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_WIDTH","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_HEIGHT","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_WIDTH","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_HEIGHT","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_WIDTH","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_HEIGHT","features":[411]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_WIDTH","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_DATATYPE","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMAX","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMIN","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_UNITTYPE","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_USERINPUTREQUIRED","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER","features":[411]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER_VALUE","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_COMMITASYNC","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETCAPABILITIES","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE_KEYNAME","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETPARAMETERINITIALIZER","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_JOBCOPIESALLDOCUMENTS","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_NOTIFYXMLCHANGED","features":[411]},{"name":"DISPID_PRINTSCHEMA_TICKET_VALIDATEASYNC","features":[411]},{"name":"DI_CHANNEL","features":[411]},{"name":"DI_MEMORYMAP_WRITE","features":[411]},{"name":"DI_READ_SPOOL_JOB","features":[411]},{"name":"DLGPAGE","features":[303,411,365]},{"name":"DMPUB_BOOKLET_EDGE","features":[411]},{"name":"DMPUB_COLOR","features":[411]},{"name":"DMPUB_COPIES_COLLATE","features":[411]},{"name":"DMPUB_DEFSOURCE","features":[411]},{"name":"DMPUB_DITHERTYPE","features":[411]},{"name":"DMPUB_DUPLEX","features":[411]},{"name":"DMPUB_FIRST","features":[411]},{"name":"DMPUB_FORMNAME","features":[411]},{"name":"DMPUB_ICMINTENT","features":[411]},{"name":"DMPUB_ICMMETHOD","features":[411]},{"name":"DMPUB_LAST","features":[411]},{"name":"DMPUB_MANUAL_DUPLEX","features":[411]},{"name":"DMPUB_MEDIATYPE","features":[411]},{"name":"DMPUB_NONE","features":[411]},{"name":"DMPUB_NUP","features":[411]},{"name":"DMPUB_NUP_DIRECTION","features":[411]},{"name":"DMPUB_OEM_GRAPHIC_ITEM","features":[411]},{"name":"DMPUB_OEM_PAPER_ITEM","features":[411]},{"name":"DMPUB_OEM_ROOT_ITEM","features":[411]},{"name":"DMPUB_ORIENTATION","features":[411]},{"name":"DMPUB_OUTPUTBIN","features":[411]},{"name":"DMPUB_PAGEORDER","features":[411]},{"name":"DMPUB_PRINTQUALITY","features":[411]},{"name":"DMPUB_QUALITY","features":[411]},{"name":"DMPUB_SCALE","features":[411]},{"name":"DMPUB_STAPLE","features":[411]},{"name":"DMPUB_TTOPTION","features":[411]},{"name":"DMPUB_USER","features":[411]},{"name":"DM_ADVANCED","features":[411]},{"name":"DM_INVALIDATE_DRIVER_CACHE","features":[411]},{"name":"DM_NOPERMISSION","features":[411]},{"name":"DM_PROMPT_NON_MODAL","features":[411]},{"name":"DM_RESERVED","features":[411]},{"name":"DM_USER_DEFAULT","features":[411]},{"name":"DOCEVENT_CREATEDCPRE","features":[303,314,411]},{"name":"DOCEVENT_ESCAPE","features":[411]},{"name":"DOCEVENT_FILTER","features":[411]},{"name":"DOCUMENTEVENT_ABORTDOC","features":[411]},{"name":"DOCUMENTEVENT_CREATEDCPOST","features":[411]},{"name":"DOCUMENTEVENT_CREATEDCPRE","features":[411]},{"name":"DOCUMENTEVENT_DELETEDC","features":[411]},{"name":"DOCUMENTEVENT_ENDDOC","features":[411]},{"name":"DOCUMENTEVENT_ENDDOCPOST","features":[411]},{"name":"DOCUMENTEVENT_ENDDOCPRE","features":[411]},{"name":"DOCUMENTEVENT_ENDPAGE","features":[411]},{"name":"DOCUMENTEVENT_ESCAPE","features":[411]},{"name":"DOCUMENTEVENT_FAILURE","features":[411]},{"name":"DOCUMENTEVENT_FIRST","features":[411]},{"name":"DOCUMENTEVENT_LAST","features":[411]},{"name":"DOCUMENTEVENT_QUERYFILTER","features":[411]},{"name":"DOCUMENTEVENT_RESETDCPOST","features":[411]},{"name":"DOCUMENTEVENT_RESETDCPRE","features":[411]},{"name":"DOCUMENTEVENT_SPOOLED","features":[411]},{"name":"DOCUMENTEVENT_STARTDOC","features":[411]},{"name":"DOCUMENTEVENT_STARTDOCPOST","features":[411]},{"name":"DOCUMENTEVENT_STARTDOCPRE","features":[411]},{"name":"DOCUMENTEVENT_STARTPAGE","features":[411]},{"name":"DOCUMENTEVENT_SUCCESS","features":[411]},{"name":"DOCUMENTEVENT_UNSUPPORTED","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPOST","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRE","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPOST","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPRE","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPOST","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRE","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPOST","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPRE","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEEPRE","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPOST","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPOST","features":[411]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPRE","features":[411]},{"name":"DOCUMENTEVENT_XPS_CANCELJOB","features":[411]},{"name":"DOCUMENTPROPERTYHEADER","features":[303,314,411]},{"name":"DOC_INFO_1A","features":[411]},{"name":"DOC_INFO_1W","features":[411]},{"name":"DOC_INFO_2A","features":[411]},{"name":"DOC_INFO_2W","features":[411]},{"name":"DOC_INFO_3A","features":[411]},{"name":"DOC_INFO_3W","features":[411]},{"name":"DOC_INFO_INTERNAL","features":[303,411]},{"name":"DOC_INFO_INTERNAL_LEVEL","features":[411]},{"name":"DPD_DELETE_ALL_FILES","features":[411]},{"name":"DPD_DELETE_SPECIFIC_VERSION","features":[411]},{"name":"DPD_DELETE_UNUSED_FILES","features":[411]},{"name":"DPF_ICONID_AS_HICON","features":[411]},{"name":"DPF_USE_HDLGTEMPLATE","features":[411]},{"name":"DPS_NOPERMISSION","features":[411]},{"name":"DP_STD_DOCPROPPAGE1","features":[411]},{"name":"DP_STD_DOCPROPPAGE2","features":[411]},{"name":"DP_STD_RESERVED_START","features":[411]},{"name":"DP_STD_TREEVIEWPAGE","features":[411]},{"name":"DRIVER_EVENT_DELETE","features":[411]},{"name":"DRIVER_EVENT_INITIALIZE","features":[411]},{"name":"DRIVER_INFO_1A","features":[411]},{"name":"DRIVER_INFO_1W","features":[411]},{"name":"DRIVER_INFO_2A","features":[411]},{"name":"DRIVER_INFO_2W","features":[411]},{"name":"DRIVER_INFO_3A","features":[411]},{"name":"DRIVER_INFO_3W","features":[411]},{"name":"DRIVER_INFO_4A","features":[411]},{"name":"DRIVER_INFO_4W","features":[411]},{"name":"DRIVER_INFO_5A","features":[411]},{"name":"DRIVER_INFO_5W","features":[411]},{"name":"DRIVER_INFO_6A","features":[303,411]},{"name":"DRIVER_INFO_6W","features":[303,411]},{"name":"DRIVER_INFO_8A","features":[303,411]},{"name":"DRIVER_INFO_8W","features":[303,411]},{"name":"DRIVER_KERNELMODE","features":[411]},{"name":"DRIVER_UPGRADE_INFO_1","features":[411]},{"name":"DRIVER_UPGRADE_INFO_2","features":[411]},{"name":"DRIVER_USERMODE","features":[411]},{"name":"DSPRINT_PENDING","features":[411]},{"name":"DSPRINT_PUBLISH","features":[411]},{"name":"DSPRINT_REPUBLISH","features":[411]},{"name":"DSPRINT_UNPUBLISH","features":[411]},{"name":"DSPRINT_UPDATE","features":[411]},{"name":"DeleteFormA","features":[303,411]},{"name":"DeleteFormW","features":[303,411]},{"name":"DeleteJobNamedProperty","features":[303,411]},{"name":"DeleteMonitorA","features":[303,411]},{"name":"DeleteMonitorW","features":[303,411]},{"name":"DeletePortA","features":[303,411]},{"name":"DeletePortW","features":[303,411]},{"name":"DeletePrintProcessorA","features":[303,411]},{"name":"DeletePrintProcessorW","features":[303,411]},{"name":"DeletePrintProvidorA","features":[303,411]},{"name":"DeletePrintProvidorW","features":[303,411]},{"name":"DeletePrinter","features":[303,411]},{"name":"DeletePrinterConnectionA","features":[303,411]},{"name":"DeletePrinterConnectionW","features":[303,411]},{"name":"DeletePrinterDataA","features":[303,411]},{"name":"DeletePrinterDataExA","features":[303,411]},{"name":"DeletePrinterDataExW","features":[303,411]},{"name":"DeletePrinterDataW","features":[303,411]},{"name":"DeletePrinterDriverA","features":[303,411]},{"name":"DeletePrinterDriverExA","features":[303,411]},{"name":"DeletePrinterDriverExW","features":[303,411]},{"name":"DeletePrinterDriverPackageA","features":[411]},{"name":"DeletePrinterDriverPackageW","features":[411]},{"name":"DeletePrinterDriverW","features":[303,411]},{"name":"DeletePrinterIC","features":[303,411]},{"name":"DeletePrinterKeyA","features":[303,411]},{"name":"DeletePrinterKeyW","features":[303,411]},{"name":"DevQueryPrint","features":[303,314,411]},{"name":"DevQueryPrintEx","features":[303,314,411]},{"name":"DocumentPropertiesA","features":[303,314,411]},{"name":"DocumentPropertiesW","features":[303,314,411]},{"name":"EATTRIBUTE_DATATYPE","features":[411]},{"name":"EBranchOfficeJobEventType","features":[411]},{"name":"ECBF_CHECKNAME_AT_FRONT","features":[411]},{"name":"ECBF_CHECKNAME_ONLY","features":[411]},{"name":"ECBF_CHECKNAME_ONLY_ENABLED","features":[411]},{"name":"ECBF_ICONID_AS_HICON","features":[411]},{"name":"ECBF_MASK","features":[411]},{"name":"ECBF_OVERLAY_ECBICON_IF_CHECKED","features":[411]},{"name":"ECBF_OVERLAY_NO_ICON","features":[411]},{"name":"ECBF_OVERLAY_STOP_ICON","features":[411]},{"name":"ECBF_OVERLAY_WARNING_ICON","features":[411]},{"name":"EMFPLAYPROC","features":[303,314,411]},{"name":"EMF_PP_COLOR_OPTIMIZATION","features":[411]},{"name":"EPF_ICONID_AS_HICON","features":[411]},{"name":"EPF_INCL_SETUP_TITLE","features":[411]},{"name":"EPF_MASK","features":[411]},{"name":"EPF_NO_DOT_DOT_DOT","features":[411]},{"name":"EPF_OVERLAY_NO_ICON","features":[411]},{"name":"EPF_OVERLAY_STOP_ICON","features":[411]},{"name":"EPF_OVERLAY_WARNING_ICON","features":[411]},{"name":"EPF_PUSH_TYPE_DLGPROC","features":[411]},{"name":"EPF_USE_HDLGTEMPLATE","features":[411]},{"name":"EPrintPropertyType","features":[411]},{"name":"EPrintXPSJobOperation","features":[411]},{"name":"EPrintXPSJobProgress","features":[411]},{"name":"ERROR_BIDI_DEVICE_CONFIG_UNCHANGED","features":[411]},{"name":"ERROR_BIDI_DEVICE_OFFLINE","features":[411]},{"name":"ERROR_BIDI_ERROR_BASE","features":[411]},{"name":"ERROR_BIDI_GET_ARGUMENT_NOT_SUPPORTED","features":[411]},{"name":"ERROR_BIDI_GET_MISSING_ARGUMENT","features":[411]},{"name":"ERROR_BIDI_GET_REQUIRES_ARGUMENT","features":[411]},{"name":"ERROR_BIDI_NO_BIDI_SCHEMA_EXTENSIONS","features":[411]},{"name":"ERROR_BIDI_NO_LOCALIZED_RESOURCES","features":[411]},{"name":"ERROR_BIDI_SCHEMA_NOT_SUPPORTED","features":[411]},{"name":"ERROR_BIDI_SCHEMA_READ_ONLY","features":[411]},{"name":"ERROR_BIDI_SCHEMA_WRITE_ONLY","features":[411]},{"name":"ERROR_BIDI_SERVER_OFFLINE","features":[411]},{"name":"ERROR_BIDI_SET_DIFFERENT_TYPE","features":[411]},{"name":"ERROR_BIDI_SET_INVALID_SCHEMAPATH","features":[411]},{"name":"ERROR_BIDI_SET_MULTIPLE_SCHEMAPATH","features":[411]},{"name":"ERROR_BIDI_SET_UNKNOWN_FAILURE","features":[411]},{"name":"ERROR_BIDI_STATUS_OK","features":[411]},{"name":"ERROR_BIDI_STATUS_WARNING","features":[411]},{"name":"ERROR_BIDI_UNSUPPORTED_CLIENT_LANGUAGE","features":[411]},{"name":"ERROR_BIDI_UNSUPPORTED_RESOURCE_FORMAT","features":[411]},{"name":"ERR_CPSUI_ALLOCMEM_FAILED","features":[411]},{"name":"ERR_CPSUI_CREATEPROPPAGE_FAILED","features":[411]},{"name":"ERR_CPSUI_CREATE_IMAGELIST_FAILED","features":[411]},{"name":"ERR_CPSUI_CREATE_TRACKBAR_FAILED","features":[411]},{"name":"ERR_CPSUI_CREATE_UDARROW_FAILED","features":[411]},{"name":"ERR_CPSUI_DMCOPIES_USE_EXTPUSH","features":[411]},{"name":"ERR_CPSUI_FUNCTION_NOT_IMPLEMENTED","features":[411]},{"name":"ERR_CPSUI_GETLASTERROR","features":[411]},{"name":"ERR_CPSUI_INTERNAL_ERROR","features":[411]},{"name":"ERR_CPSUI_INVALID_DLGPAGEIDX","features":[411]},{"name":"ERR_CPSUI_INVALID_DLGPAGE_CBSIZE","features":[411]},{"name":"ERR_CPSUI_INVALID_DMPUBID","features":[411]},{"name":"ERR_CPSUI_INVALID_DMPUB_TVOT","features":[411]},{"name":"ERR_CPSUI_INVALID_ECB_CBSIZE","features":[411]},{"name":"ERR_CPSUI_INVALID_EDITBOX_BUF_SIZE","features":[411]},{"name":"ERR_CPSUI_INVALID_EDITBOX_PSEL","features":[411]},{"name":"ERR_CPSUI_INVALID_EXTPUSH_CBSIZE","features":[411]},{"name":"ERR_CPSUI_INVALID_LBCB_TYPE","features":[411]},{"name":"ERR_CPSUI_INVALID_LPARAM","features":[411]},{"name":"ERR_CPSUI_INVALID_OPTITEM_CBSIZE","features":[411]},{"name":"ERR_CPSUI_INVALID_OPTPARAM_CBSIZE","features":[411]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_CBSIZE","features":[411]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_COUNT","features":[411]},{"name":"ERR_CPSUI_INVALID_PDATA","features":[411]},{"name":"ERR_CPSUI_INVALID_PDLGPAGE","features":[411]},{"name":"ERR_CPSUI_INVALID_PUSHBUTTON_TYPE","features":[411]},{"name":"ERR_CPSUI_INVALID_TVOT_TYPE","features":[411]},{"name":"ERR_CPSUI_MORE_THAN_ONE_STDPAGE","features":[411]},{"name":"ERR_CPSUI_MORE_THAN_ONE_TVPAGE","features":[411]},{"name":"ERR_CPSUI_NO_EXTPUSH_DLGTEMPLATEID","features":[411]},{"name":"ERR_CPSUI_NO_PROPSHEETPAGE","features":[411]},{"name":"ERR_CPSUI_NULL_CALLERNAME","features":[411]},{"name":"ERR_CPSUI_NULL_ECB_PCHECKEDNAME","features":[411]},{"name":"ERR_CPSUI_NULL_ECB_PTITLE","features":[411]},{"name":"ERR_CPSUI_NULL_EXTPUSH_CALLBACK","features":[411]},{"name":"ERR_CPSUI_NULL_EXTPUSH_DLGPROC","features":[411]},{"name":"ERR_CPSUI_NULL_HINST","features":[411]},{"name":"ERR_CPSUI_NULL_OPTITEMNAME","features":[411]},{"name":"ERR_CPSUI_NULL_POPTITEM","features":[411]},{"name":"ERR_CPSUI_NULL_POPTPARAM","features":[411]},{"name":"ERR_CPSUI_SUBITEM_DIFF_DLGPAGEIDX","features":[411]},{"name":"ERR_CPSUI_SUBITEM_DIFF_OPTIF_HIDE","features":[411]},{"name":"ERR_CPSUI_TOO_MANY_DLGPAGES","features":[411]},{"name":"ERR_CPSUI_TOO_MANY_PROPSHEETPAGES","features":[411]},{"name":"ERR_CPSUI_ZERO_OPTITEM","features":[411]},{"name":"EXTCHKBOX","features":[411]},{"name":"EXTPUSH","features":[303,411,365]},{"name":"EXTTEXTMETRIC","features":[411]},{"name":"EXpsCompressionOptions","features":[411]},{"name":"EXpsFontOptions","features":[411]},{"name":"EXpsFontRestriction","features":[411]},{"name":"EXpsJobConsumption","features":[411]},{"name":"E_VERSION_NOT_SUPPORTED","features":[411]},{"name":"EndDocPrinter","features":[303,411]},{"name":"EndPagePrinter","features":[303,411]},{"name":"EnumFormsA","features":[303,411]},{"name":"EnumFormsW","features":[303,411]},{"name":"EnumJobNamedProperties","features":[303,411]},{"name":"EnumJobsA","features":[303,411]},{"name":"EnumJobsW","features":[303,411]},{"name":"EnumMonitorsA","features":[303,411]},{"name":"EnumMonitorsW","features":[303,411]},{"name":"EnumPortsA","features":[303,411]},{"name":"EnumPortsW","features":[303,411]},{"name":"EnumPrintProcessorDatatypesA","features":[303,411]},{"name":"EnumPrintProcessorDatatypesW","features":[303,411]},{"name":"EnumPrintProcessorsA","features":[303,411]},{"name":"EnumPrintProcessorsW","features":[303,411]},{"name":"EnumPrinterDataA","features":[303,411]},{"name":"EnumPrinterDataExA","features":[303,411]},{"name":"EnumPrinterDataExW","features":[303,411]},{"name":"EnumPrinterDataW","features":[303,411]},{"name":"EnumPrinterDriversA","features":[303,411]},{"name":"EnumPrinterDriversW","features":[303,411]},{"name":"EnumPrinterKeyA","features":[303,411]},{"name":"EnumPrinterKeyW","features":[303,411]},{"name":"EnumPrintersA","features":[303,411]},{"name":"EnumPrintersW","features":[303,411]},{"name":"ExtDeviceMode","features":[303,314,411]},{"name":"FG_CANCHANGE","features":[411]},{"name":"FILL_WITH_DEFAULTS","features":[411]},{"name":"FMTID_PrinterPropertyBag","features":[411]},{"name":"FNT_INFO_CURRENTFONTID","features":[411]},{"name":"FNT_INFO_FONTBOLD","features":[411]},{"name":"FNT_INFO_FONTHEIGHT","features":[411]},{"name":"FNT_INFO_FONTITALIC","features":[411]},{"name":"FNT_INFO_FONTMAXWIDTH","features":[411]},{"name":"FNT_INFO_FONTSTRIKETHRU","features":[411]},{"name":"FNT_INFO_FONTUNDERLINE","features":[411]},{"name":"FNT_INFO_FONTWIDTH","features":[411]},{"name":"FNT_INFO_GRAYPERCENTAGE","features":[411]},{"name":"FNT_INFO_MAX","features":[411]},{"name":"FNT_INFO_NEXTFONTID","features":[411]},{"name":"FNT_INFO_NEXTGLYPH","features":[411]},{"name":"FNT_INFO_PRINTDIRINCCDEGREES","features":[411]},{"name":"FNT_INFO_TEXTXRES","features":[411]},{"name":"FNT_INFO_TEXTYRES","features":[411]},{"name":"FONT_DIR_SORTED","features":[411]},{"name":"FONT_FL_DEVICEFONT","features":[411]},{"name":"FONT_FL_GLYPHSET_GTT","features":[411]},{"name":"FONT_FL_GLYPHSET_RLE","features":[411]},{"name":"FONT_FL_IFI","features":[411]},{"name":"FONT_FL_PERMANENT_SF","features":[411]},{"name":"FONT_FL_RESERVED","features":[411]},{"name":"FONT_FL_SOFTFONT","features":[411]},{"name":"FONT_FL_UFM","features":[411]},{"name":"FORM_BUILTIN","features":[411]},{"name":"FORM_INFO_1A","features":[303,411]},{"name":"FORM_INFO_1W","features":[303,411]},{"name":"FORM_INFO_2A","features":[303,411]},{"name":"FORM_INFO_2W","features":[303,411]},{"name":"FORM_PRINTER","features":[411]},{"name":"FORM_USER","features":[411]},{"name":"FinalPageCount","features":[411]},{"name":"FindClosePrinterChangeNotification","features":[303,411]},{"name":"FindFirstPrinterChangeNotification","features":[303,411]},{"name":"FindNextPrinterChangeNotification","features":[303,411]},{"name":"FlushPrinter","features":[303,411]},{"name":"Font_Normal","features":[411]},{"name":"Font_Obfusticate","features":[411]},{"name":"FreePrintNamedPropertyArray","features":[411]},{"name":"FreePrintPropertyValue","features":[411]},{"name":"FreePrinterNotifyInfo","features":[303,411]},{"name":"GLYPHRUN","features":[411]},{"name":"GPD_OEMCUSTOMDATA","features":[411]},{"name":"GUID_DEVINTERFACE_IPPUSB_PRINT","features":[411]},{"name":"GUID_DEVINTERFACE_USBPRINT","features":[411]},{"name":"GdiDeleteSpoolFileHandle","features":[303,411]},{"name":"GdiEndDocEMF","features":[303,411]},{"name":"GdiEndPageEMF","features":[303,411]},{"name":"GdiGetDC","features":[303,314,411]},{"name":"GdiGetDevmodeForPage","features":[303,314,411]},{"name":"GdiGetPageCount","features":[303,411]},{"name":"GdiGetPageHandle","features":[303,411]},{"name":"GdiGetSpoolFileHandle","features":[303,314,411]},{"name":"GdiPlayPageEMF","features":[303,411]},{"name":"GdiResetDCEMF","features":[303,314,411]},{"name":"GdiStartDocEMF","features":[303,411,412]},{"name":"GdiStartPageEMF","features":[303,411]},{"name":"GenerateCopyFilePaths","features":[411]},{"name":"GetCPSUIUserData","features":[303,411]},{"name":"GetCorePrinterDriversA","features":[303,411]},{"name":"GetCorePrinterDriversW","features":[303,411]},{"name":"GetDefaultPrinterA","features":[303,411]},{"name":"GetDefaultPrinterW","features":[303,411]},{"name":"GetFormA","features":[303,411]},{"name":"GetFormW","features":[303,411]},{"name":"GetJobA","features":[303,411]},{"name":"GetJobAttributes","features":[303,314,411]},{"name":"GetJobAttributesEx","features":[303,314,411]},{"name":"GetJobNamedPropertyValue","features":[303,411]},{"name":"GetJobW","features":[303,411]},{"name":"GetPrintExecutionData","features":[303,411]},{"name":"GetPrintOutputInfo","features":[303,411]},{"name":"GetPrintProcessorDirectoryA","features":[303,411]},{"name":"GetPrintProcessorDirectoryW","features":[303,411]},{"name":"GetPrinterA","features":[303,411]},{"name":"GetPrinterDataA","features":[303,411]},{"name":"GetPrinterDataExA","features":[303,411]},{"name":"GetPrinterDataExW","features":[303,411]},{"name":"GetPrinterDataW","features":[303,411]},{"name":"GetPrinterDriver2A","features":[303,411]},{"name":"GetPrinterDriver2W","features":[303,411]},{"name":"GetPrinterDriverA","features":[303,411]},{"name":"GetPrinterDriverDirectoryA","features":[303,411]},{"name":"GetPrinterDriverDirectoryW","features":[303,411]},{"name":"GetPrinterDriverPackagePathA","features":[411]},{"name":"GetPrinterDriverPackagePathW","features":[411]},{"name":"GetPrinterDriverW","features":[303,411]},{"name":"GetPrinterW","features":[303,411]},{"name":"GetSpoolFileHandle","features":[303,411]},{"name":"IAsyncGetSendNotificationCookie","features":[411]},{"name":"IAsyncGetSrvReferralCookie","features":[411]},{"name":"IBidiAsyncNotifyChannel","features":[411]},{"name":"IBidiRequest","features":[411]},{"name":"IBidiRequestContainer","features":[411]},{"name":"IBidiSpl","features":[411]},{"name":"IBidiSpl2","features":[411]},{"name":"IDI_CPSUI_ADVANCE","features":[411]},{"name":"IDI_CPSUI_AUTOSEL","features":[411]},{"name":"IDI_CPSUI_COLLATE","features":[411]},{"name":"IDI_CPSUI_COLOR","features":[411]},{"name":"IDI_CPSUI_COPY","features":[411]},{"name":"IDI_CPSUI_DEVICE","features":[411]},{"name":"IDI_CPSUI_DEVICE2","features":[411]},{"name":"IDI_CPSUI_DEVICE_FEATURE","features":[411]},{"name":"IDI_CPSUI_DITHER_COARSE","features":[411]},{"name":"IDI_CPSUI_DITHER_FINE","features":[411]},{"name":"IDI_CPSUI_DITHER_LINEART","features":[411]},{"name":"IDI_CPSUI_DITHER_NONE","features":[411]},{"name":"IDI_CPSUI_DOCUMENT","features":[411]},{"name":"IDI_CPSUI_DUPLEX_HORZ","features":[411]},{"name":"IDI_CPSUI_DUPLEX_HORZ_L","features":[411]},{"name":"IDI_CPSUI_DUPLEX_NONE","features":[411]},{"name":"IDI_CPSUI_DUPLEX_NONE_L","features":[411]},{"name":"IDI_CPSUI_DUPLEX_VERT","features":[411]},{"name":"IDI_CPSUI_DUPLEX_VERT_L","features":[411]},{"name":"IDI_CPSUI_EMPTY","features":[411]},{"name":"IDI_CPSUI_ENVELOPE","features":[411]},{"name":"IDI_CPSUI_ENVELOPE_FEED","features":[411]},{"name":"IDI_CPSUI_ERROR","features":[411]},{"name":"IDI_CPSUI_FALSE","features":[411]},{"name":"IDI_CPSUI_FAX","features":[411]},{"name":"IDI_CPSUI_FONTCART","features":[411]},{"name":"IDI_CPSUI_FONTCARTHDR","features":[411]},{"name":"IDI_CPSUI_FONTCART_SLOT","features":[411]},{"name":"IDI_CPSUI_FONTSUB","features":[411]},{"name":"IDI_CPSUI_FORMTRAYASSIGN","features":[411]},{"name":"IDI_CPSUI_GENERIC_ITEM","features":[411]},{"name":"IDI_CPSUI_GENERIC_OPTION","features":[411]},{"name":"IDI_CPSUI_GRAPHIC","features":[411]},{"name":"IDI_CPSUI_HALFTONE_SETUP","features":[411]},{"name":"IDI_CPSUI_HTCLRADJ","features":[411]},{"name":"IDI_CPSUI_HT_DEVICE","features":[411]},{"name":"IDI_CPSUI_HT_HOST","features":[411]},{"name":"IDI_CPSUI_ICM_INTENT","features":[411]},{"name":"IDI_CPSUI_ICM_METHOD","features":[411]},{"name":"IDI_CPSUI_ICM_OPTION","features":[411]},{"name":"IDI_CPSUI_ICONID_FIRST","features":[411]},{"name":"IDI_CPSUI_ICONID_LAST","features":[411]},{"name":"IDI_CPSUI_INSTALLABLE_OPTION","features":[411]},{"name":"IDI_CPSUI_LANDSCAPE","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWL","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWLR","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWS","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL_NB","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP_NB","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_PORTRAIT","features":[411]},{"name":"IDI_CPSUI_LAYOUT_BMP_ROT_PORT","features":[411]},{"name":"IDI_CPSUI_LF_PEN_PLOTTER","features":[411]},{"name":"IDI_CPSUI_LF_RASTER_PLOTTER","features":[411]},{"name":"IDI_CPSUI_MANUAL_FEED","features":[411]},{"name":"IDI_CPSUI_MEM","features":[411]},{"name":"IDI_CPSUI_MONO","features":[411]},{"name":"IDI_CPSUI_NO","features":[411]},{"name":"IDI_CPSUI_NOTINSTALLED","features":[411]},{"name":"IDI_CPSUI_NUP_BORDER","features":[411]},{"name":"IDI_CPSUI_OFF","features":[411]},{"name":"IDI_CPSUI_ON","features":[411]},{"name":"IDI_CPSUI_OPTION","features":[411]},{"name":"IDI_CPSUI_OPTION2","features":[411]},{"name":"IDI_CPSUI_OUTBIN","features":[411]},{"name":"IDI_CPSUI_OUTPUT","features":[411]},{"name":"IDI_CPSUI_PAGE_PROTECT","features":[411]},{"name":"IDI_CPSUI_PAPER_OUTPUT","features":[411]},{"name":"IDI_CPSUI_PAPER_TRAY","features":[411]},{"name":"IDI_CPSUI_PAPER_TRAY2","features":[411]},{"name":"IDI_CPSUI_PAPER_TRAY3","features":[411]},{"name":"IDI_CPSUI_PEN_CARROUSEL","features":[411]},{"name":"IDI_CPSUI_PLOTTER_PEN","features":[411]},{"name":"IDI_CPSUI_PORTRAIT","features":[411]},{"name":"IDI_CPSUI_POSTSCRIPT","features":[411]},{"name":"IDI_CPSUI_PRINTER","features":[411]},{"name":"IDI_CPSUI_PRINTER2","features":[411]},{"name":"IDI_CPSUI_PRINTER3","features":[411]},{"name":"IDI_CPSUI_PRINTER4","features":[411]},{"name":"IDI_CPSUI_PRINTER_FEATURE","features":[411]},{"name":"IDI_CPSUI_PRINTER_FOLDER","features":[411]},{"name":"IDI_CPSUI_QUESTION","features":[411]},{"name":"IDI_CPSUI_RES_DRAFT","features":[411]},{"name":"IDI_CPSUI_RES_HIGH","features":[411]},{"name":"IDI_CPSUI_RES_LOW","features":[411]},{"name":"IDI_CPSUI_RES_MEDIUM","features":[411]},{"name":"IDI_CPSUI_RES_PRESENTATION","features":[411]},{"name":"IDI_CPSUI_ROLL_PAPER","features":[411]},{"name":"IDI_CPSUI_ROT_LAND","features":[411]},{"name":"IDI_CPSUI_ROT_PORT","features":[411]},{"name":"IDI_CPSUI_RUN_DIALOG","features":[411]},{"name":"IDI_CPSUI_SCALING","features":[411]},{"name":"IDI_CPSUI_SEL_NONE","features":[411]},{"name":"IDI_CPSUI_SF_PEN_PLOTTER","features":[411]},{"name":"IDI_CPSUI_SF_RASTER_PLOTTER","features":[411]},{"name":"IDI_CPSUI_STAPLER_OFF","features":[411]},{"name":"IDI_CPSUI_STAPLER_ON","features":[411]},{"name":"IDI_CPSUI_STD_FORM","features":[411]},{"name":"IDI_CPSUI_STOP","features":[411]},{"name":"IDI_CPSUI_STOP_WARNING_OVERLAY","features":[411]},{"name":"IDI_CPSUI_TELEPHONE","features":[411]},{"name":"IDI_CPSUI_TRANSPARENT","features":[411]},{"name":"IDI_CPSUI_TRUE","features":[411]},{"name":"IDI_CPSUI_TT_DOWNLOADSOFT","features":[411]},{"name":"IDI_CPSUI_TT_DOWNLOADVECT","features":[411]},{"name":"IDI_CPSUI_TT_PRINTASGRAPHIC","features":[411]},{"name":"IDI_CPSUI_TT_SUBDEV","features":[411]},{"name":"IDI_CPSUI_WARNING","features":[411]},{"name":"IDI_CPSUI_WARNING_OVERLAY","features":[411]},{"name":"IDI_CPSUI_WATERMARK","features":[411]},{"name":"IDI_CPSUI_YES","features":[411]},{"name":"IDS_CPSUI_ABOUT","features":[411]},{"name":"IDS_CPSUI_ADVANCED","features":[411]},{"name":"IDS_CPSUI_ADVANCEDOCUMENT","features":[411]},{"name":"IDS_CPSUI_ALL","features":[411]},{"name":"IDS_CPSUI_AUTOSELECT","features":[411]},{"name":"IDS_CPSUI_BACKTOFRONT","features":[411]},{"name":"IDS_CPSUI_BOND","features":[411]},{"name":"IDS_CPSUI_BOOKLET","features":[411]},{"name":"IDS_CPSUI_BOOKLET_EDGE","features":[411]},{"name":"IDS_CPSUI_BOOKLET_EDGE_LEFT","features":[411]},{"name":"IDS_CPSUI_BOOKLET_EDGE_RIGHT","features":[411]},{"name":"IDS_CPSUI_CASSETTE_TRAY","features":[411]},{"name":"IDS_CPSUI_CHANGE","features":[411]},{"name":"IDS_CPSUI_CHANGED","features":[411]},{"name":"IDS_CPSUI_CHANGES","features":[411]},{"name":"IDS_CPSUI_COARSE","features":[411]},{"name":"IDS_CPSUI_COLLATE","features":[411]},{"name":"IDS_CPSUI_COLLATED","features":[411]},{"name":"IDS_CPSUI_COLON_SEP","features":[411]},{"name":"IDS_CPSUI_COLOR","features":[411]},{"name":"IDS_CPSUI_COLOR_APPERANCE","features":[411]},{"name":"IDS_CPSUI_COPIES","features":[411]},{"name":"IDS_CPSUI_COPY","features":[411]},{"name":"IDS_CPSUI_DEFAULT","features":[411]},{"name":"IDS_CPSUI_DEFAULTDOCUMENT","features":[411]},{"name":"IDS_CPSUI_DEFAULT_TRAY","features":[411]},{"name":"IDS_CPSUI_DEVICE","features":[411]},{"name":"IDS_CPSUI_DEVICEOPTIONS","features":[411]},{"name":"IDS_CPSUI_DEVICE_SETTINGS","features":[411]},{"name":"IDS_CPSUI_DITHERING","features":[411]},{"name":"IDS_CPSUI_DOCUMENT","features":[411]},{"name":"IDS_CPSUI_DOWN_THEN_LEFT","features":[411]},{"name":"IDS_CPSUI_DOWN_THEN_RIGHT","features":[411]},{"name":"IDS_CPSUI_DRAFT","features":[411]},{"name":"IDS_CPSUI_DUPLEX","features":[411]},{"name":"IDS_CPSUI_ENVELOPE_TRAY","features":[411]},{"name":"IDS_CPSUI_ENVMANUAL_TRAY","features":[411]},{"name":"IDS_CPSUI_ERRDIFFUSE","features":[411]},{"name":"IDS_CPSUI_ERROR","features":[411]},{"name":"IDS_CPSUI_EXIST","features":[411]},{"name":"IDS_CPSUI_FALSE","features":[411]},{"name":"IDS_CPSUI_FAST","features":[411]},{"name":"IDS_CPSUI_FAX","features":[411]},{"name":"IDS_CPSUI_FINE","features":[411]},{"name":"IDS_CPSUI_FORMNAME","features":[411]},{"name":"IDS_CPSUI_FORMSOURCE","features":[411]},{"name":"IDS_CPSUI_FORMTRAYASSIGN","features":[411]},{"name":"IDS_CPSUI_FRONTTOBACK","features":[411]},{"name":"IDS_CPSUI_GLOSSY","features":[411]},{"name":"IDS_CPSUI_GRAPHIC","features":[411]},{"name":"IDS_CPSUI_GRAYSCALE","features":[411]},{"name":"IDS_CPSUI_HALFTONE","features":[411]},{"name":"IDS_CPSUI_HALFTONE_SETUP","features":[411]},{"name":"IDS_CPSUI_HIGH","features":[411]},{"name":"IDS_CPSUI_HORIZONTAL","features":[411]},{"name":"IDS_CPSUI_HTCLRADJ","features":[411]},{"name":"IDS_CPSUI_ICM","features":[411]},{"name":"IDS_CPSUI_ICMINTENT","features":[411]},{"name":"IDS_CPSUI_ICMMETHOD","features":[411]},{"name":"IDS_CPSUI_ICM_BLACKWHITE","features":[411]},{"name":"IDS_CPSUI_ICM_COLORMETRIC","features":[411]},{"name":"IDS_CPSUI_ICM_CONTRAST","features":[411]},{"name":"IDS_CPSUI_ICM_NO","features":[411]},{"name":"IDS_CPSUI_ICM_SATURATION","features":[411]},{"name":"IDS_CPSUI_ICM_YES","features":[411]},{"name":"IDS_CPSUI_INSTFONTCART","features":[411]},{"name":"IDS_CPSUI_LANDSCAPE","features":[411]},{"name":"IDS_CPSUI_LARGECAP_TRAY","features":[411]},{"name":"IDS_CPSUI_LARGEFMT_TRAY","features":[411]},{"name":"IDS_CPSUI_LBCB_NOSEL","features":[411]},{"name":"IDS_CPSUI_LEFT_ANGLE","features":[411]},{"name":"IDS_CPSUI_LEFT_SLOT","features":[411]},{"name":"IDS_CPSUI_LEFT_THEN_DOWN","features":[411]},{"name":"IDS_CPSUI_LINEART","features":[411]},{"name":"IDS_CPSUI_LONG_SIDE","features":[411]},{"name":"IDS_CPSUI_LOW","features":[411]},{"name":"IDS_CPSUI_LOWER_TRAY","features":[411]},{"name":"IDS_CPSUI_MAILBOX","features":[411]},{"name":"IDS_CPSUI_MAKE","features":[411]},{"name":"IDS_CPSUI_MANUALFEED","features":[411]},{"name":"IDS_CPSUI_MANUAL_DUPLEX","features":[411]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_OFF","features":[411]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_ON","features":[411]},{"name":"IDS_CPSUI_MANUAL_TRAY","features":[411]},{"name":"IDS_CPSUI_MEDIA","features":[411]},{"name":"IDS_CPSUI_MEDIUM","features":[411]},{"name":"IDS_CPSUI_MIDDLE_TRAY","features":[411]},{"name":"IDS_CPSUI_MONOCHROME","features":[411]},{"name":"IDS_CPSUI_MORE","features":[411]},{"name":"IDS_CPSUI_NO","features":[411]},{"name":"IDS_CPSUI_NONE","features":[411]},{"name":"IDS_CPSUI_NOT","features":[411]},{"name":"IDS_CPSUI_NOTINSTALLED","features":[411]},{"name":"IDS_CPSUI_NO_NAME","features":[411]},{"name":"IDS_CPSUI_NUM_OF_COPIES","features":[411]},{"name":"IDS_CPSUI_NUP","features":[411]},{"name":"IDS_CPSUI_NUP_BORDER","features":[411]},{"name":"IDS_CPSUI_NUP_BORDERED","features":[411]},{"name":"IDS_CPSUI_NUP_DIRECTION","features":[411]},{"name":"IDS_CPSUI_NUP_FOURUP","features":[411]},{"name":"IDS_CPSUI_NUP_NINEUP","features":[411]},{"name":"IDS_CPSUI_NUP_NORMAL","features":[411]},{"name":"IDS_CPSUI_NUP_SIXTEENUP","features":[411]},{"name":"IDS_CPSUI_NUP_SIXUP","features":[411]},{"name":"IDS_CPSUI_NUP_TWOUP","features":[411]},{"name":"IDS_CPSUI_OF","features":[411]},{"name":"IDS_CPSUI_OFF","features":[411]},{"name":"IDS_CPSUI_ON","features":[411]},{"name":"IDS_CPSUI_ONLYONE","features":[411]},{"name":"IDS_CPSUI_OPTION","features":[411]},{"name":"IDS_CPSUI_OPTIONS","features":[411]},{"name":"IDS_CPSUI_ORIENTATION","features":[411]},{"name":"IDS_CPSUI_OUTBINASSIGN","features":[411]},{"name":"IDS_CPSUI_OUTPUTBIN","features":[411]},{"name":"IDS_CPSUI_PAGEORDER","features":[411]},{"name":"IDS_CPSUI_PAGEPROTECT","features":[411]},{"name":"IDS_CPSUI_PAPER_OUTPUT","features":[411]},{"name":"IDS_CPSUI_PERCENT","features":[411]},{"name":"IDS_CPSUI_PLOT","features":[411]},{"name":"IDS_CPSUI_PORTRAIT","features":[411]},{"name":"IDS_CPSUI_POSTER","features":[411]},{"name":"IDS_CPSUI_POSTER_2x2","features":[411]},{"name":"IDS_CPSUI_POSTER_3x3","features":[411]},{"name":"IDS_CPSUI_POSTER_4x4","features":[411]},{"name":"IDS_CPSUI_PRESENTATION","features":[411]},{"name":"IDS_CPSUI_PRINT","features":[411]},{"name":"IDS_CPSUI_PRINTER","features":[411]},{"name":"IDS_CPSUI_PRINTERMEM_KB","features":[411]},{"name":"IDS_CPSUI_PRINTERMEM_MB","features":[411]},{"name":"IDS_CPSUI_PRINTFLDSETTING","features":[411]},{"name":"IDS_CPSUI_PRINTQUALITY","features":[411]},{"name":"IDS_CPSUI_PROPERTIES","features":[411]},{"name":"IDS_CPSUI_QUALITY_BEST","features":[411]},{"name":"IDS_CPSUI_QUALITY_BETTER","features":[411]},{"name":"IDS_CPSUI_QUALITY_CUSTOM","features":[411]},{"name":"IDS_CPSUI_QUALITY_DRAFT","features":[411]},{"name":"IDS_CPSUI_QUALITY_SETTINGS","features":[411]},{"name":"IDS_CPSUI_RANGE_FROM","features":[411]},{"name":"IDS_CPSUI_REGULAR","features":[411]},{"name":"IDS_CPSUI_RESET","features":[411]},{"name":"IDS_CPSUI_RESOLUTION","features":[411]},{"name":"IDS_CPSUI_REVERT","features":[411]},{"name":"IDS_CPSUI_RIGHT_ANGLE","features":[411]},{"name":"IDS_CPSUI_RIGHT_SLOT","features":[411]},{"name":"IDS_CPSUI_RIGHT_THEN_DOWN","features":[411]},{"name":"IDS_CPSUI_ROTATED","features":[411]},{"name":"IDS_CPSUI_ROT_LAND","features":[411]},{"name":"IDS_CPSUI_ROT_PORT","features":[411]},{"name":"IDS_CPSUI_SCALING","features":[411]},{"name":"IDS_CPSUI_SETTING","features":[411]},{"name":"IDS_CPSUI_SETTINGS","features":[411]},{"name":"IDS_CPSUI_SETUP","features":[411]},{"name":"IDS_CPSUI_SHORT_SIDE","features":[411]},{"name":"IDS_CPSUI_SIDE1","features":[411]},{"name":"IDS_CPSUI_SIDE2","features":[411]},{"name":"IDS_CPSUI_SIMPLEX","features":[411]},{"name":"IDS_CPSUI_SLASH_SEP","features":[411]},{"name":"IDS_CPSUI_SLOT1","features":[411]},{"name":"IDS_CPSUI_SLOT2","features":[411]},{"name":"IDS_CPSUI_SLOT3","features":[411]},{"name":"IDS_CPSUI_SLOT4","features":[411]},{"name":"IDS_CPSUI_SLOW","features":[411]},{"name":"IDS_CPSUI_SMALLFMT_TRAY","features":[411]},{"name":"IDS_CPSUI_SOURCE","features":[411]},{"name":"IDS_CPSUI_STACKER","features":[411]},{"name":"IDS_CPSUI_STANDARD","features":[411]},{"name":"IDS_CPSUI_STAPLE","features":[411]},{"name":"IDS_CPSUI_STAPLER","features":[411]},{"name":"IDS_CPSUI_STAPLER_OFF","features":[411]},{"name":"IDS_CPSUI_STAPLER_ON","features":[411]},{"name":"IDS_CPSUI_STDDOCPROPTAB","features":[411]},{"name":"IDS_CPSUI_STDDOCPROPTAB1","features":[411]},{"name":"IDS_CPSUI_STDDOCPROPTAB2","features":[411]},{"name":"IDS_CPSUI_STDDOCPROPTVTAB","features":[411]},{"name":"IDS_CPSUI_STRID_FIRST","features":[411]},{"name":"IDS_CPSUI_STRID_LAST","features":[411]},{"name":"IDS_CPSUI_TO","features":[411]},{"name":"IDS_CPSUI_TOTAL","features":[411]},{"name":"IDS_CPSUI_TRACTOR_TRAY","features":[411]},{"name":"IDS_CPSUI_TRANSPARENCY","features":[411]},{"name":"IDS_CPSUI_TRUE","features":[411]},{"name":"IDS_CPSUI_TTOPTION","features":[411]},{"name":"IDS_CPSUI_TT_DOWNLOADSOFT","features":[411]},{"name":"IDS_CPSUI_TT_DOWNLOADVECT","features":[411]},{"name":"IDS_CPSUI_TT_PRINTASGRAPHIC","features":[411]},{"name":"IDS_CPSUI_TT_SUBDEV","features":[411]},{"name":"IDS_CPSUI_UPPER_TRAY","features":[411]},{"name":"IDS_CPSUI_USE_DEVICE_HT","features":[411]},{"name":"IDS_CPSUI_USE_HOST_HT","features":[411]},{"name":"IDS_CPSUI_USE_PRINTER_HT","features":[411]},{"name":"IDS_CPSUI_VERSION","features":[411]},{"name":"IDS_CPSUI_VERTICAL","features":[411]},{"name":"IDS_CPSUI_WARNING","features":[411]},{"name":"IDS_CPSUI_WATERMARK","features":[411]},{"name":"IDS_CPSUI_YES","features":[411]},{"name":"IFixedDocument","features":[411]},{"name":"IFixedDocumentSequence","features":[411]},{"name":"IFixedPage","features":[411]},{"name":"IImgCreateErrorInfo","features":[411,413]},{"name":"IImgErrorInfo","features":[411,354]},{"name":"IInterFilterCommunicator","features":[411]},{"name":"INSERTPSUIPAGE_INFO","features":[411]},{"name":"INSPSUIPAGE_MODE_AFTER","features":[411]},{"name":"INSPSUIPAGE_MODE_BEFORE","features":[411]},{"name":"INSPSUIPAGE_MODE_FIRST_CHILD","features":[411]},{"name":"INSPSUIPAGE_MODE_INDEX","features":[411]},{"name":"INSPSUIPAGE_MODE_LAST_CHILD","features":[411]},{"name":"INTERNAL_NOTIFICATION_QUEUE_IS_FULL","features":[411]},{"name":"INVALID_NOTIFICATION_TYPE","features":[411]},{"name":"INVOC","features":[411]},{"name":"IOCTL_USBPRINT_ADD_CHILD_DEVICE","features":[411]},{"name":"IOCTL_USBPRINT_ADD_MSIPP_COMPAT_ID","features":[411]},{"name":"IOCTL_USBPRINT_CYCLE_PORT","features":[411]},{"name":"IOCTL_USBPRINT_GET_1284_ID","features":[411]},{"name":"IOCTL_USBPRINT_GET_INTERFACE_TYPE","features":[411]},{"name":"IOCTL_USBPRINT_GET_LPT_STATUS","features":[411]},{"name":"IOCTL_USBPRINT_GET_PROTOCOL","features":[411]},{"name":"IOCTL_USBPRINT_SET_DEVICE_ID","features":[411]},{"name":"IOCTL_USBPRINT_SET_PORT_NUMBER","features":[411]},{"name":"IOCTL_USBPRINT_SET_PROTOCOL","features":[411]},{"name":"IOCTL_USBPRINT_SOFT_RESET","features":[411]},{"name":"IOCTL_USBPRINT_VENDOR_GET_COMMAND","features":[411]},{"name":"IOCTL_USBPRINT_VENDOR_SET_COMMAND","features":[411]},{"name":"IPDFP_COPY_ALL_FILES","features":[411]},{"name":"IPartBase","features":[411]},{"name":"IPartColorProfile","features":[411]},{"name":"IPartDiscardControl","features":[411]},{"name":"IPartFont","features":[411]},{"name":"IPartFont2","features":[411]},{"name":"IPartImage","features":[411]},{"name":"IPartPrintTicket","features":[411]},{"name":"IPartResourceDictionary","features":[411]},{"name":"IPartThumbnail","features":[411]},{"name":"IPrintAsyncCookie","features":[411]},{"name":"IPrintAsyncNewChannelCookie","features":[411]},{"name":"IPrintAsyncNotify","features":[411]},{"name":"IPrintAsyncNotifyCallback","features":[411]},{"name":"IPrintAsyncNotifyChannel","features":[411]},{"name":"IPrintAsyncNotifyDataObject","features":[411]},{"name":"IPrintAsyncNotifyRegistration","features":[411]},{"name":"IPrintAsyncNotifyServerReferral","features":[411]},{"name":"IPrintBidiAsyncNotifyRegistration","features":[411]},{"name":"IPrintClassObjectFactory","features":[411]},{"name":"IPrintCoreHelper","features":[411]},{"name":"IPrintCoreHelperPS","features":[411]},{"name":"IPrintCoreHelperUni","features":[411]},{"name":"IPrintCoreHelperUni2","features":[411]},{"name":"IPrintCoreUI2","features":[411]},{"name":"IPrintJob","features":[411]},{"name":"IPrintJobCollection","features":[411,354]},{"name":"IPrintOemCommon","features":[411]},{"name":"IPrintOemDriverUI","features":[411]},{"name":"IPrintOemUI","features":[411]},{"name":"IPrintOemUI2","features":[411]},{"name":"IPrintOemUIMXDC","features":[411]},{"name":"IPrintPipelineFilter","features":[411]},{"name":"IPrintPipelineManagerControl","features":[411]},{"name":"IPrintPipelineProgressReport","features":[411]},{"name":"IPrintPipelinePropertyBag","features":[411]},{"name":"IPrintPreviewDxgiPackageTarget","features":[411]},{"name":"IPrintReadStream","features":[411]},{"name":"IPrintReadStreamFactory","features":[411]},{"name":"IPrintSchemaAsyncOperation","features":[411,354]},{"name":"IPrintSchemaAsyncOperationEvent","features":[411,354]},{"name":"IPrintSchemaCapabilities","features":[411,354]},{"name":"IPrintSchemaCapabilities2","features":[411,354]},{"name":"IPrintSchemaDisplayableElement","features":[411,354]},{"name":"IPrintSchemaElement","features":[411,354]},{"name":"IPrintSchemaFeature","features":[411,354]},{"name":"IPrintSchemaNUpOption","features":[411,354]},{"name":"IPrintSchemaOption","features":[411,354]},{"name":"IPrintSchemaOptionCollection","features":[411,354]},{"name":"IPrintSchemaPageImageableSize","features":[411,354]},{"name":"IPrintSchemaPageMediaSizeOption","features":[411,354]},{"name":"IPrintSchemaParameterDefinition","features":[411,354]},{"name":"IPrintSchemaParameterInitializer","features":[411,354]},{"name":"IPrintSchemaTicket","features":[411,354]},{"name":"IPrintSchemaTicket2","features":[411,354]},{"name":"IPrintTicketProvider","features":[411]},{"name":"IPrintTicketProvider2","features":[411]},{"name":"IPrintUnidiAsyncNotifyRegistration","features":[411]},{"name":"IPrintWriteStream","features":[411]},{"name":"IPrintWriteStreamFlush","features":[411]},{"name":"IPrinterBidiSetRequestCallback","features":[411]},{"name":"IPrinterExtensionAsyncOperation","features":[411]},{"name":"IPrinterExtensionContext","features":[411,354]},{"name":"IPrinterExtensionContextCollection","features":[411,354]},{"name":"IPrinterExtensionEvent","features":[411,354]},{"name":"IPrinterExtensionEventArgs","features":[411,354]},{"name":"IPrinterExtensionManager","features":[411]},{"name":"IPrinterExtensionRequest","features":[411,354]},{"name":"IPrinterPropertyBag","features":[411,354]},{"name":"IPrinterQueue","features":[411,354]},{"name":"IPrinterQueue2","features":[411,354]},{"name":"IPrinterQueueEvent","features":[411,354]},{"name":"IPrinterQueueView","features":[411,354]},{"name":"IPrinterQueueViewEvent","features":[411,354]},{"name":"IPrinterScriptContext","features":[411,354]},{"name":"IPrinterScriptablePropertyBag","features":[411,354]},{"name":"IPrinterScriptablePropertyBag2","features":[411,354]},{"name":"IPrinterScriptableSequentialStream","features":[411,354]},{"name":"IPrinterScriptableStream","features":[411,354]},{"name":"IXpsDocument","features":[411]},{"name":"IXpsDocumentConsumer","features":[411]},{"name":"IXpsDocumentProvider","features":[411]},{"name":"IXpsPartIterator","features":[411]},{"name":"IXpsRasterizationFactory","features":[411]},{"name":"IXpsRasterizationFactory1","features":[411]},{"name":"IXpsRasterizationFactory2","features":[411]},{"name":"IXpsRasterizer","features":[411]},{"name":"IXpsRasterizerNotificationCallback","features":[411]},{"name":"ImgErrorInfo","features":[411]},{"name":"ImpersonatePrinterClient","features":[303,411]},{"name":"InstallPrinterDriverFromPackageA","features":[411]},{"name":"InstallPrinterDriverFromPackageW","features":[411]},{"name":"IntermediatePageCount","features":[411]},{"name":"IsValidDevmodeA","features":[303,314,411]},{"name":"IsValidDevmodeW","features":[303,314,411]},{"name":"JOB_ACCESS_ADMINISTER","features":[411]},{"name":"JOB_ACCESS_READ","features":[411]},{"name":"JOB_CONTROL_CANCEL","features":[411]},{"name":"JOB_CONTROL_DELETE","features":[411]},{"name":"JOB_CONTROL_LAST_PAGE_EJECTED","features":[411]},{"name":"JOB_CONTROL_PAUSE","features":[411]},{"name":"JOB_CONTROL_RELEASE","features":[411]},{"name":"JOB_CONTROL_RESTART","features":[411]},{"name":"JOB_CONTROL_RESUME","features":[411]},{"name":"JOB_CONTROL_RETAIN","features":[411]},{"name":"JOB_CONTROL_SEND_TOAST","features":[411]},{"name":"JOB_CONTROL_SENT_TO_PRINTER","features":[411]},{"name":"JOB_INFO_1A","features":[303,411]},{"name":"JOB_INFO_1W","features":[303,411]},{"name":"JOB_INFO_2A","features":[303,314,411,306]},{"name":"JOB_INFO_2W","features":[303,314,411,306]},{"name":"JOB_INFO_3","features":[411]},{"name":"JOB_INFO_4A","features":[303,314,411,306]},{"name":"JOB_INFO_4W","features":[303,314,411,306]},{"name":"JOB_NOTIFY_FIELD_BYTES_PRINTED","features":[411]},{"name":"JOB_NOTIFY_FIELD_DATATYPE","features":[411]},{"name":"JOB_NOTIFY_FIELD_DEVMODE","features":[411]},{"name":"JOB_NOTIFY_FIELD_DOCUMENT","features":[411]},{"name":"JOB_NOTIFY_FIELD_DRIVER_NAME","features":[411]},{"name":"JOB_NOTIFY_FIELD_MACHINE_NAME","features":[411]},{"name":"JOB_NOTIFY_FIELD_NOTIFY_NAME","features":[411]},{"name":"JOB_NOTIFY_FIELD_PAGES_PRINTED","features":[411]},{"name":"JOB_NOTIFY_FIELD_PARAMETERS","features":[411]},{"name":"JOB_NOTIFY_FIELD_PORT_NAME","features":[411]},{"name":"JOB_NOTIFY_FIELD_POSITION","features":[411]},{"name":"JOB_NOTIFY_FIELD_PRINTER_NAME","features":[411]},{"name":"JOB_NOTIFY_FIELD_PRINT_PROCESSOR","features":[411]},{"name":"JOB_NOTIFY_FIELD_PRIORITY","features":[411]},{"name":"JOB_NOTIFY_FIELD_REMOTE_JOB_ID","features":[411]},{"name":"JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[411]},{"name":"JOB_NOTIFY_FIELD_START_TIME","features":[411]},{"name":"JOB_NOTIFY_FIELD_STATUS","features":[411]},{"name":"JOB_NOTIFY_FIELD_STATUS_STRING","features":[411]},{"name":"JOB_NOTIFY_FIELD_SUBMITTED","features":[411]},{"name":"JOB_NOTIFY_FIELD_TIME","features":[411]},{"name":"JOB_NOTIFY_FIELD_TOTAL_BYTES","features":[411]},{"name":"JOB_NOTIFY_FIELD_TOTAL_PAGES","features":[411]},{"name":"JOB_NOTIFY_FIELD_UNTIL_TIME","features":[411]},{"name":"JOB_NOTIFY_FIELD_USER_NAME","features":[411]},{"name":"JOB_NOTIFY_TYPE","features":[411]},{"name":"JOB_POSITION_UNSPECIFIED","features":[411]},{"name":"JOB_STATUS_BLOCKED_DEVQ","features":[411]},{"name":"JOB_STATUS_COMPLETE","features":[411]},{"name":"JOB_STATUS_DELETED","features":[411]},{"name":"JOB_STATUS_DELETING","features":[411]},{"name":"JOB_STATUS_ERROR","features":[411]},{"name":"JOB_STATUS_OFFLINE","features":[411]},{"name":"JOB_STATUS_PAPEROUT","features":[411]},{"name":"JOB_STATUS_PAUSED","features":[411]},{"name":"JOB_STATUS_PRINTED","features":[411]},{"name":"JOB_STATUS_PRINTING","features":[411]},{"name":"JOB_STATUS_RENDERING_LOCALLY","features":[411]},{"name":"JOB_STATUS_RESTART","features":[411]},{"name":"JOB_STATUS_RETAINED","features":[411]},{"name":"JOB_STATUS_SPOOLING","features":[411]},{"name":"JOB_STATUS_USER_INTERVENTION","features":[411]},{"name":"KERNDATA","features":[367,411]},{"name":"LOCAL_ONLY_REGISTRATION","features":[411]},{"name":"LPR","features":[411]},{"name":"MAPTABLE","features":[411]},{"name":"MAX_ADDRESS_STR_LEN","features":[411]},{"name":"MAX_CHANNEL_COUNT_EXCEEDED","features":[411]},{"name":"MAX_CPSFUNC_INDEX","features":[411]},{"name":"MAX_DEVICEDESCRIPTION_STR_LEN","features":[411]},{"name":"MAX_DLGPAGE_COUNT","features":[411]},{"name":"MAX_FORM_KEYWORD_LENGTH","features":[411]},{"name":"MAX_IPADDR_STR_LEN","features":[411]},{"name":"MAX_NETWORKNAME2_LEN","features":[411]},{"name":"MAX_NETWORKNAME_LEN","features":[411]},{"name":"MAX_NOTIFICATION_SIZE_EXCEEDED","features":[411]},{"name":"MAX_PORTNAME_LEN","features":[411]},{"name":"MAX_PRIORITY","features":[411]},{"name":"MAX_PROPSHEETUI_REASON_INDEX","features":[411]},{"name":"MAX_PSUIPAGEINSERT_INDEX","features":[411]},{"name":"MAX_QUEUENAME_LEN","features":[411]},{"name":"MAX_REGISTRATION_COUNT_EXCEEDED","features":[411]},{"name":"MAX_RES_STR_CHARS","features":[411]},{"name":"MAX_SNMP_COMMUNITY_STR_LEN","features":[411]},{"name":"MESSAGEBOX_PARAMS","features":[303,411]},{"name":"MIN_PRIORITY","features":[411]},{"name":"MONITOR","features":[361,303,411,310]},{"name":"MONITOR2","features":[361,303,411,310]},{"name":"MONITOREX","features":[361,303,411,310]},{"name":"MONITORINIT","features":[303,411,364]},{"name":"MONITORREG","features":[411]},{"name":"MONITORUI","features":[411]},{"name":"MONITOR_INFO_1A","features":[411]},{"name":"MONITOR_INFO_1W","features":[411]},{"name":"MONITOR_INFO_2A","features":[411]},{"name":"MONITOR_INFO_2W","features":[411]},{"name":"MS_PRINT_JOB_OUTPUT_FILE","features":[411]},{"name":"MTYPE_ADD","features":[411]},{"name":"MTYPE_COMPOSE","features":[411]},{"name":"MTYPE_DIRECT","features":[411]},{"name":"MTYPE_DISABLE","features":[411]},{"name":"MTYPE_DOUBLE","features":[411]},{"name":"MTYPE_DOUBLEBYTECHAR_MASK","features":[411]},{"name":"MTYPE_FORMAT_MASK","features":[411]},{"name":"MTYPE_PAIRED","features":[411]},{"name":"MTYPE_PREDEFIN_MASK","features":[411]},{"name":"MTYPE_REPLACE","features":[411]},{"name":"MTYPE_SINGLE","features":[411]},{"name":"MV_GRAPHICS","features":[411]},{"name":"MV_PHYSICAL","features":[411]},{"name":"MV_RELATIVE","features":[411]},{"name":"MV_SENDXMOVECMD","features":[411]},{"name":"MV_SENDYMOVECMD","features":[411]},{"name":"MV_UPDATE","features":[411]},{"name":"MXDCOP_GET_FILENAME","features":[411]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC","features":[411]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC_SEQ","features":[411]},{"name":"MXDCOP_PRINTTICKET_FIXED_PAGE","features":[411]},{"name":"MXDCOP_SET_S0PAGE","features":[411]},{"name":"MXDCOP_SET_S0PAGE_RESOURCE","features":[411]},{"name":"MXDCOP_SET_XPSPASSTHRU_MODE","features":[411]},{"name":"MXDC_ESCAPE","features":[411]},{"name":"MXDC_ESCAPE_HEADER_T","features":[411]},{"name":"MXDC_GET_FILENAME_DATA_T","features":[411]},{"name":"MXDC_IMAGETYPE_JPEGHIGH_COMPRESSION","features":[411]},{"name":"MXDC_IMAGETYPE_JPEGLOW_COMPRESSION","features":[411]},{"name":"MXDC_IMAGETYPE_JPEGMEDIUM_COMPRESSION","features":[411]},{"name":"MXDC_IMAGETYPE_PNG","features":[411]},{"name":"MXDC_IMAGE_TYPE_ENUMS","features":[411]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_270_DEGREES","features":[411]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_90_DEGREES","features":[411]},{"name":"MXDC_LANDSCAPE_ROTATE_NONE","features":[411]},{"name":"MXDC_LANDSCAPE_ROTATION_ENUMS","features":[411]},{"name":"MXDC_PRINTTICKET_DATA_T","features":[411]},{"name":"MXDC_PRINTTICKET_ESCAPE_T","features":[411]},{"name":"MXDC_RESOURCE_DICTIONARY","features":[411]},{"name":"MXDC_RESOURCE_ICC_PROFILE","features":[411]},{"name":"MXDC_RESOURCE_JPEG","features":[411]},{"name":"MXDC_RESOURCE_JPEG_THUMBNAIL","features":[411]},{"name":"MXDC_RESOURCE_MAX","features":[411]},{"name":"MXDC_RESOURCE_PNG","features":[411]},{"name":"MXDC_RESOURCE_PNG_THUMBNAIL","features":[411]},{"name":"MXDC_RESOURCE_TIFF","features":[411]},{"name":"MXDC_RESOURCE_TTF","features":[411]},{"name":"MXDC_RESOURCE_WDP","features":[411]},{"name":"MXDC_S0PAGE_DATA_T","features":[411]},{"name":"MXDC_S0PAGE_PASSTHROUGH_ESCAPE_T","features":[411]},{"name":"MXDC_S0PAGE_RESOURCE_ESCAPE_T","features":[411]},{"name":"MXDC_S0_PAGE_ENUMS","features":[411]},{"name":"MXDC_XPS_S0PAGE_RESOURCE_T","features":[411]},{"name":"NORMAL_PRINT","features":[411]},{"name":"NOTIFICATION_CALLBACK_COMMANDS","features":[411]},{"name":"NOTIFICATION_COMMAND_CONTEXT_ACQUIRE","features":[411]},{"name":"NOTIFICATION_COMMAND_CONTEXT_RELEASE","features":[411]},{"name":"NOTIFICATION_COMMAND_NOTIFY","features":[411]},{"name":"NOTIFICATION_CONFIG_1","features":[303,411]},{"name":"NOTIFICATION_CONFIG_ASYNC_CHANNEL","features":[411]},{"name":"NOTIFICATION_CONFIG_CREATE_EVENT","features":[411]},{"name":"NOTIFICATION_CONFIG_EVENT_TRIGGER","features":[411]},{"name":"NOTIFICATION_CONFIG_FLAGS","features":[411]},{"name":"NOTIFICATION_CONFIG_REGISTER_CALLBACK","features":[411]},{"name":"NOTIFICATION_RELEASE","features":[411]},{"name":"NOT_REGISTERED","features":[411]},{"name":"NO_BORDER_PRINT","features":[411]},{"name":"NO_COLOR_OPTIMIZATION","features":[411]},{"name":"NO_LISTENERS","features":[411]},{"name":"NO_PRIORITY","features":[411]},{"name":"OEMCUIPCALLBACK","features":[303,314,411,365]},{"name":"OEMCUIPPARAM","features":[303,314,411,365]},{"name":"OEMCUIP_DOCPROP","features":[411]},{"name":"OEMCUIP_PRNPROP","features":[411]},{"name":"OEMDMPARAM","features":[303,314,411]},{"name":"OEMDM_CONVERT","features":[411]},{"name":"OEMDM_DEFAULT","features":[411]},{"name":"OEMDM_MERGE","features":[411]},{"name":"OEMDM_SIZE","features":[411]},{"name":"OEMFONTINSTPARAM","features":[303,411]},{"name":"OEMGDS_FREEMEM","features":[411]},{"name":"OEMGDS_JOBTIMEOUT","features":[411]},{"name":"OEMGDS_MAX","features":[411]},{"name":"OEMGDS_MAXBITMAP","features":[411]},{"name":"OEMGDS_MINOUTLINE","features":[411]},{"name":"OEMGDS_MIN_DOCSTICKY","features":[411]},{"name":"OEMGDS_MIN_PRINTERSTICKY","features":[411]},{"name":"OEMGDS_PRINTFLAGS","features":[411]},{"name":"OEMGDS_PROTOCOL","features":[411]},{"name":"OEMGDS_PSDM_CUSTOMSIZE","features":[411]},{"name":"OEMGDS_PSDM_DIALECT","features":[411]},{"name":"OEMGDS_PSDM_FLAGS","features":[411]},{"name":"OEMGDS_PSDM_NUP","features":[411]},{"name":"OEMGDS_PSDM_PSLEVEL","features":[411]},{"name":"OEMGDS_PSDM_TTDLFMT","features":[411]},{"name":"OEMGDS_UNIDM_FLAGS","features":[411]},{"name":"OEMGDS_UNIDM_GPDVER","features":[411]},{"name":"OEMGDS_WAITTIMEOUT","features":[411]},{"name":"OEMGI_GETINTERFACEVERSION","features":[411]},{"name":"OEMGI_GETPUBLISHERINFO","features":[411]},{"name":"OEMGI_GETREQUESTEDHELPERINTERFACES","features":[411]},{"name":"OEMGI_GETSIGNATURE","features":[411]},{"name":"OEMGI_GETVERSION","features":[411]},{"name":"OEMPUBLISH_DEFAULT","features":[411]},{"name":"OEMPUBLISH_IPRINTCOREHELPER","features":[411]},{"name":"OEMTTY_INFO_CODEPAGE","features":[411]},{"name":"OEMTTY_INFO_MARGINS","features":[411]},{"name":"OEMTTY_INFO_NUM_UFMS","features":[411]},{"name":"OEMTTY_INFO_UFM_IDS","features":[411]},{"name":"OEMUIOBJ","features":[303,411]},{"name":"OEMUIPROCS","features":[303,411]},{"name":"OEMUIPSPARAM","features":[303,314,411]},{"name":"OEM_DMEXTRAHEADER","features":[411]},{"name":"OEM_MODE_PUBLISHER","features":[411]},{"name":"OIEXT","features":[303,411]},{"name":"OIEXTF_ANSI_STRING","features":[411]},{"name":"OPTCF_HIDE","features":[411]},{"name":"OPTCF_MASK","features":[411]},{"name":"OPTCOMBO","features":[303,411]},{"name":"OPTIF_CALLBACK","features":[411]},{"name":"OPTIF_CHANGED","features":[411]},{"name":"OPTIF_CHANGEONCE","features":[411]},{"name":"OPTIF_COLLAPSE","features":[411]},{"name":"OPTIF_DISABLED","features":[411]},{"name":"OPTIF_ECB_CHECKED","features":[411]},{"name":"OPTIF_EXT_DISABLED","features":[411]},{"name":"OPTIF_EXT_HIDE","features":[411]},{"name":"OPTIF_EXT_IS_EXTPUSH","features":[411]},{"name":"OPTIF_HAS_POIEXT","features":[411]},{"name":"OPTIF_HIDE","features":[411]},{"name":"OPTIF_INITIAL_TVITEM","features":[411]},{"name":"OPTIF_MASK","features":[411]},{"name":"OPTIF_NO_GROUPBOX_NAME","features":[411]},{"name":"OPTIF_OVERLAY_NO_ICON","features":[411]},{"name":"OPTIF_OVERLAY_STOP_ICON","features":[411]},{"name":"OPTIF_OVERLAY_WARNING_ICON","features":[411]},{"name":"OPTIF_SEL_AS_HICON","features":[411]},{"name":"OPTITEM","features":[303,411,365]},{"name":"OPTPARAM","features":[303,411]},{"name":"OPTPF_DISABLED","features":[411]},{"name":"OPTPF_HIDE","features":[411]},{"name":"OPTPF_ICONID_AS_HICON","features":[411]},{"name":"OPTPF_MASK","features":[411]},{"name":"OPTPF_OVERLAY_NO_ICON","features":[411]},{"name":"OPTPF_OVERLAY_STOP_ICON","features":[411]},{"name":"OPTPF_OVERLAY_WARNING_ICON","features":[411]},{"name":"OPTPF_USE_HDLGTEMPLATE","features":[411]},{"name":"OPTTF_MASK","features":[411]},{"name":"OPTTF_NOSPACE_BEFORE_POSTFIX","features":[411]},{"name":"OPTTF_TYPE_DISABLED","features":[411]},{"name":"OPTTYPE","features":[303,411]},{"name":"OTS_LBCB_INCL_ITEM_NONE","features":[411]},{"name":"OTS_LBCB_NO_ICON16_IN_ITEM","features":[411]},{"name":"OTS_LBCB_PROPPAGE_CBUSELB","features":[411]},{"name":"OTS_LBCB_PROPPAGE_LBUSECB","features":[411]},{"name":"OTS_LBCB_SORT","features":[411]},{"name":"OTS_MASK","features":[411]},{"name":"OTS_PUSH_ENABLE_ALWAYS","features":[411]},{"name":"OTS_PUSH_INCL_SETUP_TITLE","features":[411]},{"name":"OTS_PUSH_NO_DOT_DOT_DOT","features":[411]},{"name":"OpenPrinter2A","features":[303,314,411]},{"name":"OpenPrinter2W","features":[303,314,411]},{"name":"OpenPrinterA","features":[303,314,411]},{"name":"OpenPrinterW","features":[303,314,411]},{"name":"PDEV_ADJUST_PAPER_MARGIN_TYPE","features":[411]},{"name":"PDEV_HOSTFONT_ENABLED_TYPE","features":[411]},{"name":"PDEV_USE_TRUE_COLOR_TYPE","features":[411]},{"name":"PFNCOMPROPSHEET","features":[303,411]},{"name":"PFNPROPSHEETUI","features":[303,411]},{"name":"PFN_DrvGetDriverSetting","features":[303,411]},{"name":"PFN_DrvUpdateUISetting","features":[303,411]},{"name":"PFN_DrvUpgradeRegistrySetting","features":[303,411]},{"name":"PFN_PRINTING_ADDPORT","features":[303,411]},{"name":"PFN_PRINTING_ADDPORT2","features":[303,411]},{"name":"PFN_PRINTING_ADDPORTEX","features":[303,411]},{"name":"PFN_PRINTING_ADDPORTEX2","features":[303,411]},{"name":"PFN_PRINTING_CLOSEPORT","features":[303,411]},{"name":"PFN_PRINTING_CLOSEPORT2","features":[303,411]},{"name":"PFN_PRINTING_CONFIGUREPORT","features":[303,411]},{"name":"PFN_PRINTING_CONFIGUREPORT2","features":[303,411]},{"name":"PFN_PRINTING_DELETEPORT","features":[303,411]},{"name":"PFN_PRINTING_DELETEPORT2","features":[303,411]},{"name":"PFN_PRINTING_ENDDOCPORT","features":[303,411]},{"name":"PFN_PRINTING_ENDDOCPORT2","features":[303,411]},{"name":"PFN_PRINTING_ENUMPORTS","features":[303,411]},{"name":"PFN_PRINTING_ENUMPORTS2","features":[303,411]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT","features":[303,411]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT2","features":[303,411]},{"name":"PFN_PRINTING_NOTIFYUNUSEDPORTS2","features":[303,411]},{"name":"PFN_PRINTING_NOTIFYUSEDPORTS2","features":[303,411]},{"name":"PFN_PRINTING_OPENPORT","features":[303,411]},{"name":"PFN_PRINTING_OPENPORT2","features":[303,411]},{"name":"PFN_PRINTING_OPENPORTEX","features":[361,303,411,310]},{"name":"PFN_PRINTING_OPENPORTEX2","features":[361,303,411,310]},{"name":"PFN_PRINTING_POWEREVENT2","features":[303,411,310]},{"name":"PFN_PRINTING_READPORT","features":[303,411]},{"name":"PFN_PRINTING_READPORT2","features":[303,411]},{"name":"PFN_PRINTING_SENDRECVBIDIDATAFROMPORT2","features":[303,411]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS","features":[361,303,411]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS2","features":[361,303,411]},{"name":"PFN_PRINTING_SHUTDOWN2","features":[303,411]},{"name":"PFN_PRINTING_STARTDOCPORT","features":[303,411]},{"name":"PFN_PRINTING_STARTDOCPORT2","features":[303,411]},{"name":"PFN_PRINTING_WRITEPORT","features":[303,411]},{"name":"PFN_PRINTING_WRITEPORT2","features":[303,411]},{"name":"PFN_PRINTING_XCVCLOSEPORT","features":[303,411]},{"name":"PFN_PRINTING_XCVCLOSEPORT2","features":[303,411]},{"name":"PFN_PRINTING_XCVDATAPORT","features":[303,411]},{"name":"PFN_PRINTING_XCVDATAPORT2","features":[303,411]},{"name":"PFN_PRINTING_XCVOPENPORT","features":[303,411]},{"name":"PFN_PRINTING_XCVOPENPORT2","features":[303,411]},{"name":"PORT_DATA_1","features":[411]},{"name":"PORT_DATA_2","features":[411]},{"name":"PORT_DATA_LIST_1","features":[411]},{"name":"PORT_INFO_1A","features":[411]},{"name":"PORT_INFO_1W","features":[411]},{"name":"PORT_INFO_2A","features":[411]},{"name":"PORT_INFO_2W","features":[411]},{"name":"PORT_INFO_3A","features":[411]},{"name":"PORT_INFO_3W","features":[411]},{"name":"PORT_STATUS_DOOR_OPEN","features":[411]},{"name":"PORT_STATUS_NO_TONER","features":[411]},{"name":"PORT_STATUS_OFFLINE","features":[411]},{"name":"PORT_STATUS_OUTPUT_BIN_FULL","features":[411]},{"name":"PORT_STATUS_OUT_OF_MEMORY","features":[411]},{"name":"PORT_STATUS_PAPER_JAM","features":[411]},{"name":"PORT_STATUS_PAPER_OUT","features":[411]},{"name":"PORT_STATUS_PAPER_PROBLEM","features":[411]},{"name":"PORT_STATUS_POWER_SAVE","features":[411]},{"name":"PORT_STATUS_TONER_LOW","features":[411]},{"name":"PORT_STATUS_TYPE_ERROR","features":[411]},{"name":"PORT_STATUS_TYPE_INFO","features":[411]},{"name":"PORT_STATUS_TYPE_WARNING","features":[411]},{"name":"PORT_STATUS_USER_INTERVENTION","features":[411]},{"name":"PORT_STATUS_WARMING_UP","features":[411]},{"name":"PORT_TYPE_NET_ATTACHED","features":[411]},{"name":"PORT_TYPE_READ","features":[411]},{"name":"PORT_TYPE_REDIRECTED","features":[411]},{"name":"PORT_TYPE_WRITE","features":[411]},{"name":"PPCAPS_BOOKLET_EDGE","features":[411]},{"name":"PPCAPS_BORDER_PRINT","features":[411]},{"name":"PPCAPS_REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[411]},{"name":"PPCAPS_RIGHT_THEN_DOWN","features":[411]},{"name":"PPCAPS_SQUARE_SCALING","features":[411]},{"name":"PRINTER_ACCESS_ADMINISTER","features":[411]},{"name":"PRINTER_ACCESS_MANAGE_LIMITED","features":[411]},{"name":"PRINTER_ACCESS_RIGHTS","features":[411]},{"name":"PRINTER_ACCESS_USE","features":[411]},{"name":"PRINTER_ALL_ACCESS","features":[411]},{"name":"PRINTER_ATTRIBUTE_DEFAULT","features":[411]},{"name":"PRINTER_ATTRIBUTE_DIRECT","features":[411]},{"name":"PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST","features":[411]},{"name":"PRINTER_ATTRIBUTE_ENABLE_BIDI","features":[411]},{"name":"PRINTER_ATTRIBUTE_ENABLE_DEVQ","features":[411]},{"name":"PRINTER_ATTRIBUTE_ENTERPRISE_CLOUD","features":[411]},{"name":"PRINTER_ATTRIBUTE_FAX","features":[411]},{"name":"PRINTER_ATTRIBUTE_FRIENDLY_NAME","features":[411]},{"name":"PRINTER_ATTRIBUTE_HIDDEN","features":[411]},{"name":"PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS","features":[411]},{"name":"PRINTER_ATTRIBUTE_LOCAL","features":[411]},{"name":"PRINTER_ATTRIBUTE_MACHINE","features":[411]},{"name":"PRINTER_ATTRIBUTE_NETWORK","features":[411]},{"name":"PRINTER_ATTRIBUTE_PER_USER","features":[411]},{"name":"PRINTER_ATTRIBUTE_PUBLISHED","features":[411]},{"name":"PRINTER_ATTRIBUTE_PUSHED_MACHINE","features":[411]},{"name":"PRINTER_ATTRIBUTE_PUSHED_USER","features":[411]},{"name":"PRINTER_ATTRIBUTE_QUEUED","features":[411]},{"name":"PRINTER_ATTRIBUTE_RAW_ONLY","features":[411]},{"name":"PRINTER_ATTRIBUTE_SHARED","features":[411]},{"name":"PRINTER_ATTRIBUTE_TS","features":[411]},{"name":"PRINTER_ATTRIBUTE_TS_GENERIC_DRIVER","features":[411]},{"name":"PRINTER_ATTRIBUTE_WORK_OFFLINE","features":[411]},{"name":"PRINTER_CHANGE_ADD_FORM","features":[411]},{"name":"PRINTER_CHANGE_ADD_JOB","features":[411]},{"name":"PRINTER_CHANGE_ADD_PORT","features":[411]},{"name":"PRINTER_CHANGE_ADD_PRINTER","features":[411]},{"name":"PRINTER_CHANGE_ADD_PRINTER_DRIVER","features":[411]},{"name":"PRINTER_CHANGE_ADD_PRINT_PROCESSOR","features":[411]},{"name":"PRINTER_CHANGE_ALL","features":[411]},{"name":"PRINTER_CHANGE_CONFIGURE_PORT","features":[411]},{"name":"PRINTER_CHANGE_DELETE_FORM","features":[411]},{"name":"PRINTER_CHANGE_DELETE_JOB","features":[411]},{"name":"PRINTER_CHANGE_DELETE_PORT","features":[411]},{"name":"PRINTER_CHANGE_DELETE_PRINTER","features":[411]},{"name":"PRINTER_CHANGE_DELETE_PRINTER_DRIVER","features":[411]},{"name":"PRINTER_CHANGE_DELETE_PRINT_PROCESSOR","features":[411]},{"name":"PRINTER_CHANGE_FAILED_CONNECTION_PRINTER","features":[411]},{"name":"PRINTER_CHANGE_FORM","features":[411]},{"name":"PRINTER_CHANGE_JOB","features":[411]},{"name":"PRINTER_CHANGE_PORT","features":[411]},{"name":"PRINTER_CHANGE_PRINTER","features":[411]},{"name":"PRINTER_CHANGE_PRINTER_DRIVER","features":[411]},{"name":"PRINTER_CHANGE_PRINT_PROCESSOR","features":[411]},{"name":"PRINTER_CHANGE_SERVER","features":[411]},{"name":"PRINTER_CHANGE_SET_FORM","features":[411]},{"name":"PRINTER_CHANGE_SET_JOB","features":[411]},{"name":"PRINTER_CHANGE_SET_PRINTER","features":[411]},{"name":"PRINTER_CHANGE_SET_PRINTER_DRIVER","features":[411]},{"name":"PRINTER_CHANGE_TIMEOUT","features":[411]},{"name":"PRINTER_CHANGE_WRITE_JOB","features":[411]},{"name":"PRINTER_CONNECTION_INFO_1A","features":[411]},{"name":"PRINTER_CONNECTION_INFO_1W","features":[411]},{"name":"PRINTER_CONNECTION_MISMATCH","features":[411]},{"name":"PRINTER_CONNECTION_NO_UI","features":[411]},{"name":"PRINTER_CONTROL_PAUSE","features":[411]},{"name":"PRINTER_CONTROL_PURGE","features":[411]},{"name":"PRINTER_CONTROL_RESUME","features":[411]},{"name":"PRINTER_CONTROL_SET_STATUS","features":[411]},{"name":"PRINTER_DEFAULTSA","features":[303,314,411]},{"name":"PRINTER_DEFAULTSW","features":[303,314,411]},{"name":"PRINTER_DELETE","features":[411]},{"name":"PRINTER_DRIVER_CATEGORY_3D","features":[411]},{"name":"PRINTER_DRIVER_CATEGORY_CLOUD","features":[411]},{"name":"PRINTER_DRIVER_CATEGORY_FAX","features":[411]},{"name":"PRINTER_DRIVER_CATEGORY_FILE","features":[411]},{"name":"PRINTER_DRIVER_CATEGORY_SERVICE","features":[411]},{"name":"PRINTER_DRIVER_CATEGORY_VIRTUAL","features":[411]},{"name":"PRINTER_DRIVER_CLASS","features":[411]},{"name":"PRINTER_DRIVER_DERIVED","features":[411]},{"name":"PRINTER_DRIVER_NOT_SHAREABLE","features":[411]},{"name":"PRINTER_DRIVER_PACKAGE_AWARE","features":[411]},{"name":"PRINTER_DRIVER_SANDBOX_DISABLED","features":[411]},{"name":"PRINTER_DRIVER_SANDBOX_ENABLED","features":[411]},{"name":"PRINTER_DRIVER_SOFT_RESET_REQUIRED","features":[411]},{"name":"PRINTER_DRIVER_XPS","features":[411]},{"name":"PRINTER_ENUM_CATEGORY_3D","features":[411]},{"name":"PRINTER_ENUM_CATEGORY_ALL","features":[411]},{"name":"PRINTER_ENUM_CONNECTIONS","features":[411]},{"name":"PRINTER_ENUM_CONTAINER","features":[411]},{"name":"PRINTER_ENUM_DEFAULT","features":[411]},{"name":"PRINTER_ENUM_EXPAND","features":[411]},{"name":"PRINTER_ENUM_FAVORITE","features":[411]},{"name":"PRINTER_ENUM_HIDE","features":[411]},{"name":"PRINTER_ENUM_ICON1","features":[411]},{"name":"PRINTER_ENUM_ICON2","features":[411]},{"name":"PRINTER_ENUM_ICON3","features":[411]},{"name":"PRINTER_ENUM_ICON4","features":[411]},{"name":"PRINTER_ENUM_ICON5","features":[411]},{"name":"PRINTER_ENUM_ICON6","features":[411]},{"name":"PRINTER_ENUM_ICON7","features":[411]},{"name":"PRINTER_ENUM_ICON8","features":[411]},{"name":"PRINTER_ENUM_ICONMASK","features":[411]},{"name":"PRINTER_ENUM_LOCAL","features":[411]},{"name":"PRINTER_ENUM_NAME","features":[411]},{"name":"PRINTER_ENUM_NETWORK","features":[411]},{"name":"PRINTER_ENUM_REMOTE","features":[411]},{"name":"PRINTER_ENUM_SHARED","features":[411]},{"name":"PRINTER_ENUM_VALUESA","features":[411]},{"name":"PRINTER_ENUM_VALUESW","features":[411]},{"name":"PRINTER_ERROR_INFORMATION","features":[411]},{"name":"PRINTER_ERROR_JAM","features":[411]},{"name":"PRINTER_ERROR_OUTOFPAPER","features":[411]},{"name":"PRINTER_ERROR_OUTOFTONER","features":[411]},{"name":"PRINTER_ERROR_SEVERE","features":[411]},{"name":"PRINTER_ERROR_WARNING","features":[411]},{"name":"PRINTER_EVENT_ADD_CONNECTION","features":[411]},{"name":"PRINTER_EVENT_ADD_CONNECTION_NO_UI","features":[411]},{"name":"PRINTER_EVENT_ATTRIBUTES_CHANGED","features":[411]},{"name":"PRINTER_EVENT_ATTRIBUTES_INFO","features":[411]},{"name":"PRINTER_EVENT_CACHE_DELETE","features":[411]},{"name":"PRINTER_EVENT_CACHE_REFRESH","features":[411]},{"name":"PRINTER_EVENT_CONFIGURATION_CHANGE","features":[411]},{"name":"PRINTER_EVENT_CONFIGURATION_UPDATE","features":[411]},{"name":"PRINTER_EVENT_DELETE","features":[411]},{"name":"PRINTER_EVENT_DELETE_CONNECTION","features":[411]},{"name":"PRINTER_EVENT_DELETE_CONNECTION_NO_UI","features":[411]},{"name":"PRINTER_EVENT_FLAG_NO_UI","features":[411]},{"name":"PRINTER_EVENT_INITIALIZE","features":[411]},{"name":"PRINTER_EXECUTE","features":[411]},{"name":"PRINTER_EXTENSION_DETAILEDREASON_PRINTER_STATUS","features":[411]},{"name":"PRINTER_EXTENSION_REASON_DRIVER_EVENT","features":[411]},{"name":"PRINTER_EXTENSION_REASON_PRINT_PREFERENCES","features":[411]},{"name":"PRINTER_INFO_1A","features":[411]},{"name":"PRINTER_INFO_1W","features":[411]},{"name":"PRINTER_INFO_2A","features":[303,314,411,306]},{"name":"PRINTER_INFO_2W","features":[303,314,411,306]},{"name":"PRINTER_INFO_3","features":[411,306]},{"name":"PRINTER_INFO_4A","features":[411]},{"name":"PRINTER_INFO_4W","features":[411]},{"name":"PRINTER_INFO_5A","features":[411]},{"name":"PRINTER_INFO_5W","features":[411]},{"name":"PRINTER_INFO_6","features":[411]},{"name":"PRINTER_INFO_7A","features":[411]},{"name":"PRINTER_INFO_7W","features":[411]},{"name":"PRINTER_INFO_8A","features":[303,314,411]},{"name":"PRINTER_INFO_8W","features":[303,314,411]},{"name":"PRINTER_INFO_9A","features":[303,314,411]},{"name":"PRINTER_INFO_9W","features":[303,314,411]},{"name":"PRINTER_NOTIFY_CATEGORY_3D","features":[411]},{"name":"PRINTER_NOTIFY_CATEGORY_ALL","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_ATTRIBUTES","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_AVERAGE_PPM","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_BRANCH_OFFICE_PRINTING","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_BYTES_PRINTED","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_CJOBS","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_COMMENT","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_DATATYPE","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_DEVMODE","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_DRIVER_NAME","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_FRIENDLY_NAME","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_LOCATION","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_OBJECT_GUID","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_PAGES_PRINTED","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_PARAMETERS","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_PORT_NAME","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_PRINTER_NAME","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_PRIORITY","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_SEPFILE","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_SERVER_NAME","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_SHARE_NAME","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_START_TIME","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_STATUS","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_STATUS_STRING","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_BYTES","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_PAGES","features":[411]},{"name":"PRINTER_NOTIFY_FIELD_UNTIL_TIME","features":[411]},{"name":"PRINTER_NOTIFY_INFO","features":[411]},{"name":"PRINTER_NOTIFY_INFO_DATA","features":[411]},{"name":"PRINTER_NOTIFY_INFO_DATA_COMPACT","features":[411]},{"name":"PRINTER_NOTIFY_INFO_DISCARDED","features":[411]},{"name":"PRINTER_NOTIFY_INIT","features":[411]},{"name":"PRINTER_NOTIFY_OPTIONS","features":[411]},{"name":"PRINTER_NOTIFY_OPTIONS_REFRESH","features":[411]},{"name":"PRINTER_NOTIFY_OPTIONS_TYPE","features":[411]},{"name":"PRINTER_NOTIFY_STATUS_ENDPOINT","features":[411]},{"name":"PRINTER_NOTIFY_STATUS_INFO","features":[411]},{"name":"PRINTER_NOTIFY_STATUS_POLL","features":[411]},{"name":"PRINTER_NOTIFY_TYPE","features":[411]},{"name":"PRINTER_OEMINTF_VERSION","features":[411]},{"name":"PRINTER_OPTIONSA","features":[411]},{"name":"PRINTER_OPTIONSW","features":[411]},{"name":"PRINTER_OPTION_CACHE","features":[411]},{"name":"PRINTER_OPTION_CLIENT_CHANGE","features":[411]},{"name":"PRINTER_OPTION_FLAGS","features":[411]},{"name":"PRINTER_OPTION_NO_CACHE","features":[411]},{"name":"PRINTER_OPTION_NO_CLIENT_DATA","features":[411]},{"name":"PRINTER_READ","features":[411]},{"name":"PRINTER_READ_CONTROL","features":[411]},{"name":"PRINTER_STANDARD_RIGHTS_EXECUTE","features":[411]},{"name":"PRINTER_STANDARD_RIGHTS_READ","features":[411]},{"name":"PRINTER_STANDARD_RIGHTS_REQUIRED","features":[411]},{"name":"PRINTER_STANDARD_RIGHTS_WRITE","features":[411]},{"name":"PRINTER_STATUS_BUSY","features":[411]},{"name":"PRINTER_STATUS_DOOR_OPEN","features":[411]},{"name":"PRINTER_STATUS_DRIVER_UPDATE_NEEDED","features":[411]},{"name":"PRINTER_STATUS_ERROR","features":[411]},{"name":"PRINTER_STATUS_INITIALIZING","features":[411]},{"name":"PRINTER_STATUS_IO_ACTIVE","features":[411]},{"name":"PRINTER_STATUS_MANUAL_FEED","features":[411]},{"name":"PRINTER_STATUS_NOT_AVAILABLE","features":[411]},{"name":"PRINTER_STATUS_NO_TONER","features":[411]},{"name":"PRINTER_STATUS_OFFLINE","features":[411]},{"name":"PRINTER_STATUS_OUTPUT_BIN_FULL","features":[411]},{"name":"PRINTER_STATUS_OUT_OF_MEMORY","features":[411]},{"name":"PRINTER_STATUS_PAGE_PUNT","features":[411]},{"name":"PRINTER_STATUS_PAPER_JAM","features":[411]},{"name":"PRINTER_STATUS_PAPER_OUT","features":[411]},{"name":"PRINTER_STATUS_PAPER_PROBLEM","features":[411]},{"name":"PRINTER_STATUS_PAUSED","features":[411]},{"name":"PRINTER_STATUS_PENDING_DELETION","features":[411]},{"name":"PRINTER_STATUS_POWER_SAVE","features":[411]},{"name":"PRINTER_STATUS_PRINTING","features":[411]},{"name":"PRINTER_STATUS_PROCESSING","features":[411]},{"name":"PRINTER_STATUS_SERVER_OFFLINE","features":[411]},{"name":"PRINTER_STATUS_SERVER_UNKNOWN","features":[411]},{"name":"PRINTER_STATUS_TONER_LOW","features":[411]},{"name":"PRINTER_STATUS_USER_INTERVENTION","features":[411]},{"name":"PRINTER_STATUS_WAITING","features":[411]},{"name":"PRINTER_STATUS_WARMING_UP","features":[411]},{"name":"PRINTER_SYNCHRONIZE","features":[411]},{"name":"PRINTER_WRITE","features":[411]},{"name":"PRINTER_WRITE_DAC","features":[411]},{"name":"PRINTER_WRITE_OWNER","features":[411]},{"name":"PRINTIFI32","features":[303,314,411]},{"name":"PRINTPROCESSOROPENDATA","features":[303,314,411]},{"name":"PRINTPROCESSOR_CAPS_1","features":[411]},{"name":"PRINTPROCESSOR_CAPS_2","features":[411]},{"name":"PRINTPROCESSOR_INFO_1A","features":[411]},{"name":"PRINTPROCESSOR_INFO_1W","features":[411]},{"name":"PRINTPROVIDOR","features":[411]},{"name":"PRINT_APP_BIDI_NOTIFY_CHANNEL","features":[411]},{"name":"PRINT_EXECUTION_CONTEXT","features":[411]},{"name":"PRINT_EXECUTION_CONTEXT_APPLICATION","features":[411]},{"name":"PRINT_EXECUTION_CONTEXT_FILTER_PIPELINE","features":[411]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_ISOLATION_HOST","features":[411]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_SERVICE","features":[411]},{"name":"PRINT_EXECUTION_CONTEXT_WOW64","features":[411]},{"name":"PRINT_EXECUTION_DATA","features":[411]},{"name":"PRINT_FEATURE_OPTION","features":[411]},{"name":"PRINT_PORT_MONITOR_NOTIFY_CHANNEL","features":[411]},{"name":"PROPSHEETUI_GETICON_INFO","features":[411,365]},{"name":"PROPSHEETUI_INFO","features":[303,411]},{"name":"PROPSHEETUI_INFO_HEADER","features":[303,411,365]},{"name":"PROPSHEETUI_INFO_VERSION","features":[411]},{"name":"PROPSHEETUI_REASON_BEFORE_INIT","features":[411]},{"name":"PROPSHEETUI_REASON_DESTROY","features":[411]},{"name":"PROPSHEETUI_REASON_GET_ICON","features":[411]},{"name":"PROPSHEETUI_REASON_GET_INFO_HEADER","features":[411]},{"name":"PROPSHEETUI_REASON_INIT","features":[411]},{"name":"PROPSHEETUI_REASON_SET_RESULT","features":[411]},{"name":"PROTOCOL_LPR_TYPE","features":[411]},{"name":"PROTOCOL_RAWTCP_TYPE","features":[411]},{"name":"PROTOCOL_UNKNOWN_TYPE","features":[411]},{"name":"PROVIDOR_INFO_1A","features":[411]},{"name":"PROVIDOR_INFO_1W","features":[411]},{"name":"PROVIDOR_INFO_2A","features":[411]},{"name":"PROVIDOR_INFO_2W","features":[411]},{"name":"PSCRIPT5_PRIVATE_DEVMODE","features":[411]},{"name":"PSPINFO","features":[303,411]},{"name":"PSUIHDRF_DEFTITLE","features":[411]},{"name":"PSUIHDRF_EXACT_PTITLE","features":[411]},{"name":"PSUIHDRF_NOAPPLYNOW","features":[411]},{"name":"PSUIHDRF_OBSOLETE","features":[411]},{"name":"PSUIHDRF_PROPTITLE","features":[411]},{"name":"PSUIHDRF_USEHICON","features":[411]},{"name":"PSUIINFO_UNICODE","features":[411]},{"name":"PSUIPAGEINSERT_DLL","features":[411]},{"name":"PSUIPAGEINSERT_GROUP_PARENT","features":[411]},{"name":"PSUIPAGEINSERT_HPROPSHEETPAGE","features":[411]},{"name":"PSUIPAGEINSERT_PCOMPROPSHEETUI","features":[411]},{"name":"PSUIPAGEINSERT_PFNPROPSHEETUI","features":[411]},{"name":"PSUIPAGEINSERT_PROPSHEETPAGE","features":[411]},{"name":"PTSHIM_DEFAULT","features":[411]},{"name":"PTSHIM_NOSNAPSHOT","features":[411]},{"name":"PUBLISHERINFO","features":[411]},{"name":"PUSHBUTTON_TYPE_CALLBACK","features":[411]},{"name":"PUSHBUTTON_TYPE_DLGPROC","features":[411]},{"name":"PUSHBUTTON_TYPE_HTCLRADJ","features":[411]},{"name":"PUSHBUTTON_TYPE_HTSETUP","features":[411]},{"name":"PageCountType","features":[411]},{"name":"PartialReplyPrinterChangeNotification","features":[303,411]},{"name":"PlayGdiScriptOnPrinterIC","features":[303,411]},{"name":"PrintAsyncNotifyConversationStyle","features":[411]},{"name":"PrintAsyncNotifyError","features":[411]},{"name":"PrintAsyncNotifyUserFilter","features":[411]},{"name":"PrintJobStatus","features":[411]},{"name":"PrintJobStatus_BlockedDeviceQueue","features":[411]},{"name":"PrintJobStatus_Complete","features":[411]},{"name":"PrintJobStatus_Deleted","features":[411]},{"name":"PrintJobStatus_Deleting","features":[411]},{"name":"PrintJobStatus_Error","features":[411]},{"name":"PrintJobStatus_Offline","features":[411]},{"name":"PrintJobStatus_PaperOut","features":[411]},{"name":"PrintJobStatus_Paused","features":[411]},{"name":"PrintJobStatus_Printed","features":[411]},{"name":"PrintJobStatus_Printing","features":[411]},{"name":"PrintJobStatus_Restarted","features":[411]},{"name":"PrintJobStatus_Retained","features":[411]},{"name":"PrintJobStatus_Spooling","features":[411]},{"name":"PrintJobStatus_UserIntervention","features":[411]},{"name":"PrintNamedProperty","features":[411]},{"name":"PrintPropertiesCollection","features":[411]},{"name":"PrintPropertyValue","features":[411]},{"name":"PrintSchemaAsyncOperation","features":[411]},{"name":"PrintSchemaConstrainedSetting","features":[411]},{"name":"PrintSchemaConstrainedSetting_Admin","features":[411]},{"name":"PrintSchemaConstrainedSetting_Device","features":[411]},{"name":"PrintSchemaConstrainedSetting_None","features":[411]},{"name":"PrintSchemaConstrainedSetting_PrintTicket","features":[411]},{"name":"PrintSchemaParameterDataType","features":[411]},{"name":"PrintSchemaParameterDataType_Integer","features":[411]},{"name":"PrintSchemaParameterDataType_NumericString","features":[411]},{"name":"PrintSchemaParameterDataType_String","features":[411]},{"name":"PrintSchemaSelectionType","features":[411]},{"name":"PrintSchemaSelectionType_PickMany","features":[411]},{"name":"PrintSchemaSelectionType_PickOne","features":[411]},{"name":"PrinterExtensionManager","features":[411]},{"name":"PrinterMessageBoxA","features":[303,411]},{"name":"PrinterMessageBoxW","features":[303,411]},{"name":"PrinterProperties","features":[303,411]},{"name":"PrinterQueue","features":[411]},{"name":"PrinterQueueView","features":[411]},{"name":"ProvidorFindClosePrinterChangeNotification","features":[303,411]},{"name":"ProvidorFindFirstPrinterChangeNotification","features":[303,411]},{"name":"QCP_DEVICEPROFILE","features":[411]},{"name":"QCP_PROFILEDISK","features":[411]},{"name":"QCP_PROFILEMEMORY","features":[411]},{"name":"QCP_SOURCEPROFILE","features":[411]},{"name":"RAWTCP","features":[411]},{"name":"REMOTE_ONLY_REGISTRATION","features":[411]},{"name":"REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[411]},{"name":"REVERSE_PRINT","features":[411]},{"name":"RIGHT_THEN_DOWN","features":[411]},{"name":"ROUTER_NOTIFY_CALLBACK","features":[303,411]},{"name":"ROUTER_STOP_ROUTING","features":[411]},{"name":"ROUTER_SUCCESS","features":[411]},{"name":"ROUTER_UNKNOWN","features":[411]},{"name":"ReadPrinter","features":[303,411]},{"name":"RegisterForPrintAsyncNotifications","features":[303,411]},{"name":"RemovePrintDeviceObject","features":[303,411]},{"name":"ReplyPrinterChangeNotification","features":[303,411]},{"name":"ReplyPrinterChangeNotificationEx","features":[303,411]},{"name":"ReportJobProcessingProgress","features":[303,411]},{"name":"ResetPrinterA","features":[303,314,411]},{"name":"ResetPrinterW","features":[303,314,411]},{"name":"RevertToPrinterSelf","features":[303,411]},{"name":"RouterAllocBidiMem","features":[411]},{"name":"RouterAllocBidiResponseContainer","features":[303,411]},{"name":"RouterAllocPrinterNotifyInfo","features":[411]},{"name":"RouterFreeBidiMem","features":[411]},{"name":"RouterFreeBidiResponseContainer","features":[303,411]},{"name":"RouterFreePrinterNotifyInfo","features":[303,411]},{"name":"SERVER_ACCESS_ADMINISTER","features":[411]},{"name":"SERVER_ACCESS_ENUMERATE","features":[411]},{"name":"SERVER_ALL_ACCESS","features":[411]},{"name":"SERVER_EXECUTE","features":[411]},{"name":"SERVER_NOTIFY_FIELD_PRINT_DRIVER_ISOLATION_GROUP","features":[411]},{"name":"SERVER_NOTIFY_TYPE","features":[411]},{"name":"SERVER_READ","features":[411]},{"name":"SERVER_WRITE","features":[411]},{"name":"SETOPTIONS_FLAG_KEEP_CONFLICT","features":[411]},{"name":"SETOPTIONS_FLAG_RESOLVE_CONFLICT","features":[411]},{"name":"SETOPTIONS_RESULT_CONFLICT_REMAINED","features":[411]},{"name":"SETOPTIONS_RESULT_CONFLICT_RESOLVED","features":[411]},{"name":"SETOPTIONS_RESULT_NO_CONFLICT","features":[411]},{"name":"SETRESULT_INFO","features":[303,411]},{"name":"SHIMOPTS","features":[411]},{"name":"SHOWUIPARAMS","features":[303,411]},{"name":"SIMULATE_CAPS_1","features":[411]},{"name":"SPLCLIENT_INFO_1","features":[411]},{"name":"SPLCLIENT_INFO_2_W2K","features":[411]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[411]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[411]},{"name":"SPLCLIENT_INFO_3_VISTA","features":[411]},{"name":"SPLCLIENT_INFO_INTERNAL","features":[411]},{"name":"SPLCLIENT_INFO_INTERNAL_LEVEL","features":[411]},{"name":"SPLDS_ASSET_NUMBER","features":[411]},{"name":"SPLDS_BYTES_PER_MINUTE","features":[411]},{"name":"SPLDS_DESCRIPTION","features":[411]},{"name":"SPLDS_DRIVER_KEY","features":[411]},{"name":"SPLDS_DRIVER_NAME","features":[411]},{"name":"SPLDS_DRIVER_VERSION","features":[411]},{"name":"SPLDS_FLAGS","features":[411]},{"name":"SPLDS_LOCATION","features":[411]},{"name":"SPLDS_PORT_NAME","features":[411]},{"name":"SPLDS_PRINTER_CLASS","features":[411]},{"name":"SPLDS_PRINTER_LOCATIONS","features":[411]},{"name":"SPLDS_PRINTER_MODEL","features":[411]},{"name":"SPLDS_PRINTER_NAME","features":[411]},{"name":"SPLDS_PRINTER_NAME_ALIASES","features":[411]},{"name":"SPLDS_PRINT_ATTRIBUTES","features":[411]},{"name":"SPLDS_PRINT_BIN_NAMES","features":[411]},{"name":"SPLDS_PRINT_COLLATE","features":[411]},{"name":"SPLDS_PRINT_COLOR","features":[411]},{"name":"SPLDS_PRINT_DUPLEX_SUPPORTED","features":[411]},{"name":"SPLDS_PRINT_END_TIME","features":[411]},{"name":"SPLDS_PRINT_KEEP_PRINTED_JOBS","features":[411]},{"name":"SPLDS_PRINT_LANGUAGE","features":[411]},{"name":"SPLDS_PRINT_MAC_ADDRESS","features":[411]},{"name":"SPLDS_PRINT_MAX_RESOLUTION_SUPPORTED","features":[411]},{"name":"SPLDS_PRINT_MAX_X_EXTENT","features":[411]},{"name":"SPLDS_PRINT_MAX_Y_EXTENT","features":[411]},{"name":"SPLDS_PRINT_MEDIA_READY","features":[411]},{"name":"SPLDS_PRINT_MEDIA_SUPPORTED","features":[411]},{"name":"SPLDS_PRINT_MEMORY","features":[411]},{"name":"SPLDS_PRINT_MIN_X_EXTENT","features":[411]},{"name":"SPLDS_PRINT_MIN_Y_EXTENT","features":[411]},{"name":"SPLDS_PRINT_NETWORK_ADDRESS","features":[411]},{"name":"SPLDS_PRINT_NOTIFY","features":[411]},{"name":"SPLDS_PRINT_NUMBER_UP","features":[411]},{"name":"SPLDS_PRINT_ORIENTATIONS_SUPPORTED","features":[411]},{"name":"SPLDS_PRINT_OWNER","features":[411]},{"name":"SPLDS_PRINT_PAGES_PER_MINUTE","features":[411]},{"name":"SPLDS_PRINT_RATE","features":[411]},{"name":"SPLDS_PRINT_RATE_UNIT","features":[411]},{"name":"SPLDS_PRINT_SEPARATOR_FILE","features":[411]},{"name":"SPLDS_PRINT_SHARE_NAME","features":[411]},{"name":"SPLDS_PRINT_SPOOLING","features":[411]},{"name":"SPLDS_PRINT_STAPLING_SUPPORTED","features":[411]},{"name":"SPLDS_PRINT_START_TIME","features":[411]},{"name":"SPLDS_PRINT_STATUS","features":[411]},{"name":"SPLDS_PRIORITY","features":[411]},{"name":"SPLDS_SERVER_NAME","features":[411]},{"name":"SPLDS_SHORT_SERVER_NAME","features":[411]},{"name":"SPLDS_SPOOLER_KEY","features":[411]},{"name":"SPLDS_UNC_NAME","features":[411]},{"name":"SPLDS_URL","features":[411]},{"name":"SPLDS_USER_KEY","features":[411]},{"name":"SPLDS_VERSION_NUMBER","features":[411]},{"name":"SPLPRINTER_USER_MODE_PRINTER_DRIVER","features":[411]},{"name":"SPLREG_ALLOW_USER_MANAGEFORMS","features":[411]},{"name":"SPLREG_ARCHITECTURE","features":[411]},{"name":"SPLREG_BEEP_ENABLED","features":[411]},{"name":"SPLREG_DEFAULT_SPOOL_DIRECTORY","features":[411]},{"name":"SPLREG_DNS_MACHINE_NAME","features":[411]},{"name":"SPLREG_DS_PRESENT","features":[411]},{"name":"SPLREG_DS_PRESENT_FOR_USER","features":[411]},{"name":"SPLREG_EVENT_LOG","features":[411]},{"name":"SPLREG_MAJOR_VERSION","features":[411]},{"name":"SPLREG_MINOR_VERSION","features":[411]},{"name":"SPLREG_NET_POPUP","features":[411]},{"name":"SPLREG_NET_POPUP_TO_COMPUTER","features":[411]},{"name":"SPLREG_OS_VERSION","features":[411]},{"name":"SPLREG_OS_VERSIONEX","features":[411]},{"name":"SPLREG_PORT_THREAD_PRIORITY","features":[411]},{"name":"SPLREG_PORT_THREAD_PRIORITY_DEFAULT","features":[411]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_EXECUTION_POLICY","features":[411]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_GROUPS","features":[411]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_IDLE_TIMEOUT","features":[411]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_MAX_OBJECTS_BEFORE_RECYCLE","features":[411]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_OVERRIDE_POLICY","features":[411]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_TIME_BEFORE_RECYCLE","features":[411]},{"name":"SPLREG_PRINT_QUEUE_V4_DRIVER_DIRECTORY","features":[411]},{"name":"SPLREG_REMOTE_FAX","features":[411]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ENABLED","features":[411]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ERROR","features":[411]},{"name":"SPLREG_RETRY_POPUP","features":[411]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY","features":[411]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY_DEFAULT","features":[411]},{"name":"SPLREG_WEBSHAREMGMT","features":[411]},{"name":"SPOOL_FILE_PERSISTENT","features":[411]},{"name":"SPOOL_FILE_TEMPORARY","features":[411]},{"name":"SR_OWNER","features":[411]},{"name":"SR_OWNER_PARENT","features":[411]},{"name":"SSP_STDPAGE1","features":[411]},{"name":"SSP_STDPAGE2","features":[411]},{"name":"SSP_TVPAGE","features":[411]},{"name":"STRING_LANGPAIR","features":[411]},{"name":"STRING_MUIDLL","features":[411]},{"name":"STRING_NONE","features":[411]},{"name":"S_CONFLICT_RESOLVED","features":[411]},{"name":"S_DEVCAP_OUTPUT_FULL_REPLACEMENT","features":[411]},{"name":"S_NO_CONFLICT","features":[411]},{"name":"ScheduleJob","features":[303,411]},{"name":"SetCPSUIUserData","features":[303,411]},{"name":"SetDefaultPrinterA","features":[303,411]},{"name":"SetDefaultPrinterW","features":[303,411]},{"name":"SetFormA","features":[303,411]},{"name":"SetFormW","features":[303,411]},{"name":"SetJobA","features":[303,411]},{"name":"SetJobNamedProperty","features":[303,411]},{"name":"SetJobW","features":[303,411]},{"name":"SetPortA","features":[303,411]},{"name":"SetPortW","features":[303,411]},{"name":"SetPrinterA","features":[303,411]},{"name":"SetPrinterDataA","features":[303,411]},{"name":"SetPrinterDataExA","features":[303,411]},{"name":"SetPrinterDataExW","features":[303,411]},{"name":"SetPrinterDataW","features":[303,411]},{"name":"SetPrinterW","features":[303,411]},{"name":"SplIsSessionZero","features":[303,411]},{"name":"SplPromptUIInUsersSession","features":[303,411]},{"name":"SpoolerCopyFileEvent","features":[303,411]},{"name":"SpoolerFindClosePrinterChangeNotification","features":[303,411]},{"name":"SpoolerFindFirstPrinterChangeNotification","features":[303,411]},{"name":"SpoolerFindNextPrinterChangeNotification","features":[303,411]},{"name":"SpoolerFreePrinterNotifyInfo","features":[411]},{"name":"SpoolerRefreshPrinterChangeNotification","features":[303,411]},{"name":"StartDocPrinterA","features":[303,411]},{"name":"StartDocPrinterW","features":[303,411]},{"name":"StartPagePrinter","features":[303,411]},{"name":"TRANSDATA","features":[411]},{"name":"TTDOWNLOAD_BITMAP","features":[411]},{"name":"TTDOWNLOAD_DONTCARE","features":[411]},{"name":"TTDOWNLOAD_GRAPHICS","features":[411]},{"name":"TTDOWNLOAD_TTOUTLINE","features":[411]},{"name":"TVOT_2STATES","features":[411]},{"name":"TVOT_3STATES","features":[411]},{"name":"TVOT_CHKBOX","features":[411]},{"name":"TVOT_COMBOBOX","features":[411]},{"name":"TVOT_EDITBOX","features":[411]},{"name":"TVOT_LISTBOX","features":[411]},{"name":"TVOT_NSTATES_EX","features":[411]},{"name":"TVOT_PUSHBUTTON","features":[411]},{"name":"TVOT_SCROLLBAR","features":[411]},{"name":"TVOT_TRACKBAR","features":[411]},{"name":"TVOT_UDARROW","features":[411]},{"name":"TYPE_GLYPHHANDLE","features":[411]},{"name":"TYPE_GLYPHID","features":[411]},{"name":"TYPE_TRANSDATA","features":[411]},{"name":"TYPE_UNICODE","features":[411]},{"name":"UFF_FILEHEADER","features":[411]},{"name":"UFF_FONTDIRECTORY","features":[411]},{"name":"UFF_VERSION_NUMBER","features":[411]},{"name":"UFM_CART","features":[411]},{"name":"UFM_SCALABLE","features":[411]},{"name":"UFM_SOFT","features":[411]},{"name":"UFOFLAG_TTDOWNLOAD_BITMAP","features":[411]},{"name":"UFOFLAG_TTDOWNLOAD_TTOUTLINE","features":[411]},{"name":"UFOFLAG_TTFONT","features":[411]},{"name":"UFOFLAG_TTOUTLINE_BOLD_SIM","features":[411]},{"name":"UFOFLAG_TTOUTLINE_ITALIC_SIM","features":[411]},{"name":"UFOFLAG_TTOUTLINE_VERTICAL","features":[411]},{"name":"UFOFLAG_TTSUBSTITUTED","features":[411]},{"name":"UFO_GETINFO_FONTOBJ","features":[411]},{"name":"UFO_GETINFO_GLYPHBITMAP","features":[411]},{"name":"UFO_GETINFO_GLYPHSTRING","features":[411]},{"name":"UFO_GETINFO_GLYPHWIDTH","features":[411]},{"name":"UFO_GETINFO_MEMORY","features":[411]},{"name":"UFO_GETINFO_STDVARIABLE","features":[411]},{"name":"UI_TYPE","features":[411]},{"name":"UNIDRVINFO","features":[411]},{"name":"UNIDRV_PRIVATE_DEVMODE","features":[411]},{"name":"UNIFM_HDR","features":[411]},{"name":"UNIFM_VERSION_1_0","features":[411]},{"name":"UNIRECTIONAL_NOTIFICATION_LOST","features":[411]},{"name":"UNI_CODEPAGEINFO","features":[411]},{"name":"UNI_GLYPHSETDATA","features":[411]},{"name":"UNI_GLYPHSETDATA_VERSION_1_0","features":[411]},{"name":"UNKNOWN_PROTOCOL","features":[411]},{"name":"UPDP_CHECK_DRIVERSTORE","features":[411]},{"name":"UPDP_SILENT_UPLOAD","features":[411]},{"name":"UPDP_UPLOAD_ALWAYS","features":[411]},{"name":"USBPRINT_IOCTL_INDEX","features":[411]},{"name":"USB_PRINTER_INTERFACE_CLASSIC","features":[411]},{"name":"USB_PRINTER_INTERFACE_DUAL","features":[411]},{"name":"USB_PRINTER_INTERFACE_IPP","features":[411]},{"name":"USERDATA","features":[411]},{"name":"UnRegisterForPrintAsyncNotifications","features":[303,411]},{"name":"UpdatePrintDeviceObject","features":[303,411]},{"name":"UploadPrinterDriverPackageA","features":[303,411]},{"name":"UploadPrinterDriverPackageW","features":[303,411]},{"name":"WIDTHRUN","features":[411]},{"name":"WIDTHTABLE","features":[411]},{"name":"WM_FI_FILENAME","features":[411]},{"name":"WaitForPrinterChange","features":[303,411]},{"name":"WritePrinter","features":[303,411]},{"name":"XPSRAS_BACKGROUND_COLOR","features":[411]},{"name":"XPSRAS_BACKGROUND_COLOR_OPAQUE","features":[411]},{"name":"XPSRAS_BACKGROUND_COLOR_TRANSPARENT","features":[411]},{"name":"XPSRAS_PIXEL_FORMAT","features":[411]},{"name":"XPSRAS_PIXEL_FORMAT_128BPP_PRGBA_FLOAT_SCRGB","features":[411]},{"name":"XPSRAS_PIXEL_FORMAT_32BPP_PBGRA_UINT_SRGB","features":[411]},{"name":"XPSRAS_PIXEL_FORMAT_64BPP_PRGBA_HALF_SCRGB","features":[411]},{"name":"XPSRAS_RENDERING_MODE","features":[411]},{"name":"XPSRAS_RENDERING_MODE_ALIASED","features":[411]},{"name":"XPSRAS_RENDERING_MODE_ANTIALIASED","features":[411]},{"name":"XPS_FP_DRIVER_PROPERTY_BAG","features":[411]},{"name":"XPS_FP_JOB_ID","features":[411]},{"name":"XPS_FP_JOB_LEVEL_PRINTTICKET","features":[411]},{"name":"XPS_FP_MERGED_DATAFILE_PATH","features":[411]},{"name":"XPS_FP_MS_CONTENT_TYPE","features":[411]},{"name":"XPS_FP_MS_CONTENT_TYPE_OPENXPS","features":[411]},{"name":"XPS_FP_MS_CONTENT_TYPE_XPS","features":[411]},{"name":"XPS_FP_OUTPUT_FILE","features":[411]},{"name":"XPS_FP_PRINTDEVICECAPABILITIES","features":[411]},{"name":"XPS_FP_PRINTER_HANDLE","features":[411]},{"name":"XPS_FP_PRINTER_NAME","features":[411]},{"name":"XPS_FP_PRINT_CLASS_FACTORY","features":[411]},{"name":"XPS_FP_PROGRESS_REPORT","features":[411]},{"name":"XPS_FP_QUEUE_PROPERTY_BAG","features":[411]},{"name":"XPS_FP_RESOURCE_DLL_PATHS","features":[411]},{"name":"XPS_FP_USER_PRINT_TICKET","features":[411]},{"name":"XPS_FP_USER_TOKEN","features":[411]},{"name":"XcvDataW","features":[303,411]},{"name":"XpsJob_DocumentSequenceAdded","features":[411]},{"name":"XpsJob_FixedDocumentAdded","features":[411]},{"name":"XpsJob_FixedPageAdded","features":[411]},{"name":"Xps_Restricted_Font_Editable","features":[411]},{"name":"Xps_Restricted_Font_Installable","features":[411]},{"name":"Xps_Restricted_Font_NoEmbedding","features":[411]},{"name":"Xps_Restricted_Font_PreviewPrint","features":[411]},{"name":"_CPSUICALLBACK","features":[303,411,365]},{"name":"_SPLCLIENT_INFO_2_V3","features":[411]},{"name":"kADT_ASCII","features":[411]},{"name":"kADT_BINARY","features":[411]},{"name":"kADT_BOOL","features":[411]},{"name":"kADT_CUSTOMSIZEPARAMS","features":[411]},{"name":"kADT_DWORD","features":[411]},{"name":"kADT_INT","features":[411]},{"name":"kADT_LONG","features":[411]},{"name":"kADT_RECT","features":[411]},{"name":"kADT_SIZE","features":[411]},{"name":"kADT_UNICODE","features":[411]},{"name":"kADT_UNKNOWN","features":[411]},{"name":"kAddingDocumentSequence","features":[411]},{"name":"kAddingFixedDocument","features":[411]},{"name":"kAddingFixedPage","features":[411]},{"name":"kAllUsers","features":[411]},{"name":"kBiDirectional","features":[411]},{"name":"kDocumentSequenceAdded","features":[411]},{"name":"kFixedDocumentAdded","features":[411]},{"name":"kFixedPageAdded","features":[411]},{"name":"kFontAdded","features":[411]},{"name":"kImageAdded","features":[411]},{"name":"kInvalidJobState","features":[411]},{"name":"kJobConsumption","features":[411]},{"name":"kJobProduction","features":[411]},{"name":"kLogJobError","features":[411]},{"name":"kLogJobPipelineError","features":[411]},{"name":"kLogJobPrinted","features":[411]},{"name":"kLogJobRendered","features":[411]},{"name":"kLogOfflineFileFull","features":[411]},{"name":"kMessageBox","features":[411]},{"name":"kPerUser","features":[411]},{"name":"kPropertyTypeBuffer","features":[411]},{"name":"kPropertyTypeByte","features":[411]},{"name":"kPropertyTypeDevMode","features":[411]},{"name":"kPropertyTypeInt32","features":[411]},{"name":"kPropertyTypeInt64","features":[411]},{"name":"kPropertyTypeNotificationOptions","features":[411]},{"name":"kPropertyTypeNotificationReply","features":[411]},{"name":"kPropertyTypeSD","features":[411]},{"name":"kPropertyTypeString","features":[411]},{"name":"kPropertyTypeTime","features":[411]},{"name":"kResourceAdded","features":[411]},{"name":"kUniDirectional","features":[411]},{"name":"kXpsDocumentCommitted","features":[411]}],"420":[{"name":"EDefaultDevmodeType","features":[414]},{"name":"EPrintTicketScope","features":[414]},{"name":"E_DELTA_PRINTTICKET_FORMAT","features":[414]},{"name":"E_PRINTCAPABILITIES_FORMAT","features":[414]},{"name":"E_PRINTDEVICECAPABILITIES_FORMAT","features":[414]},{"name":"E_PRINTTICKET_FORMAT","features":[414]},{"name":"PRINTTICKET_ISTREAM_APIS","features":[414]},{"name":"PTCloseProvider","features":[414,412]},{"name":"PTConvertDevModeToPrintTicket","features":[303,314,414,412,354]},{"name":"PTConvertPrintTicketToDevMode","features":[303,314,414,412,354]},{"name":"PTGetPrintCapabilities","features":[414,412,354]},{"name":"PTGetPrintDeviceCapabilities","features":[414,412,354]},{"name":"PTGetPrintDeviceResources","features":[414,412,354]},{"name":"PTMergeAndValidatePrintTicket","features":[414,412,354]},{"name":"PTOpenProvider","features":[414,412]},{"name":"PTOpenProviderEx","features":[414,412]},{"name":"PTQuerySchemaVersionSupport","features":[414]},{"name":"PTReleaseMemory","features":[414]},{"name":"S_PT_CONFLICT_RESOLVED","features":[414]},{"name":"S_PT_NO_CONFLICT","features":[414]},{"name":"kPTDocumentScope","features":[414]},{"name":"kPTJobScope","features":[414]},{"name":"kPTPageScope","features":[414]},{"name":"kPrinterDefaultDevmode","features":[414]},{"name":"kUserDefaultDevmode","features":[414]}],"421":[{"name":"ApplyLocalManagementSyncML","features":[415]},{"name":"DEVICEREGISTRATIONTYPE_MAM","features":[415]},{"name":"DEVICEREGISTRATIONTYPE_MDM_DEVICEWIDE_WITH_AAD","features":[415]},{"name":"DEVICEREGISTRATIONTYPE_MDM_ONLY","features":[415]},{"name":"DEVICEREGISTRATIONTYPE_MDM_USERSPECIFIC_WITH_AAD","features":[415]},{"name":"DEVICE_ENROLLER_FACILITY_CODE","features":[415]},{"name":"DeviceRegistrationBasicInfo","features":[415]},{"name":"DiscoverManagementService","features":[415]},{"name":"DiscoverManagementServiceEx","features":[415]},{"name":"GetDeviceManagementConfigInfo","features":[415]},{"name":"GetDeviceRegistrationInfo","features":[415]},{"name":"GetManagementAppHyperlink","features":[415]},{"name":"IsDeviceRegisteredWithManagement","features":[303,415]},{"name":"IsManagementRegistrationAllowed","features":[303,415]},{"name":"IsMdmUxWithoutAadAllowed","features":[303,415]},{"name":"MANAGEMENT_REGISTRATION_INFO","features":[303,415]},{"name":"MANAGEMENT_SERVICE_INFO","features":[415]},{"name":"MDM_REGISTRATION_FACILITY_CODE","features":[415]},{"name":"MENROLL_E_CERTAUTH_FAILED_TO_FIND_CERT","features":[415]},{"name":"MENROLL_E_CERTPOLICY_PRIVATEKEYCREATION_FAILED","features":[415]},{"name":"MENROLL_E_CONNECTIVITY","features":[415]},{"name":"MENROLL_E_CUSTOMSERVERERROR","features":[415]},{"name":"MENROLL_E_DEVICECAPREACHED","features":[415]},{"name":"MENROLL_E_DEVICENOTSUPPORTED","features":[415]},{"name":"MENROLL_E_DEVICE_ALREADY_ENROLLED","features":[415]},{"name":"MENROLL_E_DEVICE_AUTHENTICATION_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_AUTHORIZATION_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_CERTIFICATEREQUEST_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_INTERNALSERVICE_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_INVALIDSECURITY_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_MANAGEMENT_BLOCKED","features":[415]},{"name":"MENROLL_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[415]},{"name":"MENROLL_E_DEVICE_NOT_ENROLLED","features":[415]},{"name":"MENROLL_E_DEVICE_UNKNOWN_ERROR","features":[415]},{"name":"MENROLL_E_DISCOVERY_SEC_CERT_DATE_INVALID","features":[415]},{"name":"MENROLL_E_EMPTY_MESSAGE","features":[415]},{"name":"MENROLL_E_ENROLLMENTDATAINVALID","features":[415]},{"name":"MENROLL_E_ENROLLMENT_IN_PROGRESS","features":[415]},{"name":"MENROLL_E_INMAINTENANCE","features":[415]},{"name":"MENROLL_E_INSECUREREDIRECT","features":[415]},{"name":"MENROLL_E_INVALIDSSLCERT","features":[415]},{"name":"MENROLL_E_MDM_NOT_CONFIGURED","features":[415]},{"name":"MENROLL_E_NOTELIGIBLETORENEW","features":[415]},{"name":"MENROLL_E_NOTSUPPORTED","features":[415]},{"name":"MENROLL_E_NOT_SUPPORTED","features":[415]},{"name":"MENROLL_E_PASSWORD_NEEDED","features":[415]},{"name":"MENROLL_E_PLATFORM_LICENSE_ERROR","features":[415]},{"name":"MENROLL_E_PLATFORM_UNKNOWN_ERROR","features":[415]},{"name":"MENROLL_E_PLATFORM_WRONG_STATE","features":[415]},{"name":"MENROLL_E_PROV_CSP_APPMGMT","features":[415]},{"name":"MENROLL_E_PROV_CSP_CERTSTORE","features":[415]},{"name":"MENROLL_E_PROV_CSP_DMCLIENT","features":[415]},{"name":"MENROLL_E_PROV_CSP_MISC","features":[415]},{"name":"MENROLL_E_PROV_CSP_PFW","features":[415]},{"name":"MENROLL_E_PROV_CSP_W7","features":[415]},{"name":"MENROLL_E_PROV_SSLCERTNOTFOUND","features":[415]},{"name":"MENROLL_E_PROV_UNKNOWN","features":[415]},{"name":"MENROLL_E_USERLICENSE","features":[415]},{"name":"MENROLL_E_USER_CANCELED","features":[415]},{"name":"MENROLL_E_USER_CANCELLED","features":[415]},{"name":"MENROLL_E_USER_LICENSE","features":[415]},{"name":"MENROLL_E_WAB_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_ALREADY_REGISTERED","features":[415]},{"name":"MREGISTER_E_DEVICE_AUTHENTICATION_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_AUTHORIZATION_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_INTERNALSERVICE_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_INVALIDSECURITY_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_NOT_AD_REGISTERED_ERROR","features":[415]},{"name":"MREGISTER_E_DEVICE_NOT_REGISTERED","features":[415]},{"name":"MREGISTER_E_DEVICE_UNKNOWN_ERROR","features":[415]},{"name":"MREGISTER_E_DISCOVERY_FAILED","features":[415]},{"name":"MREGISTER_E_DISCOVERY_REDIRECTED","features":[415]},{"name":"MREGISTER_E_REGISTRATION_IN_PROGRESS","features":[415]},{"name":"MaxDeviceInfoClass","features":[415]},{"name":"REGISTRATION_INFORMATION_CLASS","features":[415]},{"name":"RegisterDeviceWithLocalManagement","features":[303,415]},{"name":"RegisterDeviceWithManagement","features":[415]},{"name":"RegisterDeviceWithManagementUsingAADCredentials","features":[303,415]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials","features":[415]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials2","features":[415]},{"name":"SetDeviceManagementConfigInfo","features":[415]},{"name":"SetManagedExternally","features":[303,415]},{"name":"UnregisterDeviceWithLocalManagement","features":[415]},{"name":"UnregisterDeviceWithManagement","features":[415]}],"422":[{"name":"ED_DEVCAP_ATN_READ","features":[416]},{"name":"ED_DEVCAP_RTC_READ","features":[416]},{"name":"ED_DEVCAP_TIMECODE_READ","features":[416]},{"name":"HTASK","features":[416]},{"name":"IReferenceClock","features":[416]},{"name":"IReferenceClock2","features":[416]},{"name":"IReferenceClockTimerControl","features":[416]},{"name":"JOYERR_BASE","features":[416]},{"name":"LPDRVCALLBACK","features":[417]},{"name":"LPTIMECALLBACK","features":[416]},{"name":"MAXERRORLENGTH","features":[416]},{"name":"MAXPNAMELEN","features":[416]},{"name":"MCIERR_BASE","features":[416]},{"name":"MCI_CD_OFFSET","features":[416]},{"name":"MCI_SEQ_OFFSET","features":[416]},{"name":"MCI_STRING_OFFSET","features":[416]},{"name":"MCI_VD_OFFSET","features":[416]},{"name":"MCI_WAVE_OFFSET","features":[416]},{"name":"MIDIERR_BASE","features":[416]},{"name":"MIXERR_BASE","features":[416]},{"name":"MMSYSERR_ALLOCATED","features":[416]},{"name":"MMSYSERR_BADDB","features":[416]},{"name":"MMSYSERR_BADDEVICEID","features":[416]},{"name":"MMSYSERR_BADERRNUM","features":[416]},{"name":"MMSYSERR_BASE","features":[416]},{"name":"MMSYSERR_DELETEERROR","features":[416]},{"name":"MMSYSERR_ERROR","features":[416]},{"name":"MMSYSERR_HANDLEBUSY","features":[416]},{"name":"MMSYSERR_INVALFLAG","features":[416]},{"name":"MMSYSERR_INVALHANDLE","features":[416]},{"name":"MMSYSERR_INVALIDALIAS","features":[416]},{"name":"MMSYSERR_INVALPARAM","features":[416]},{"name":"MMSYSERR_KEYNOTFOUND","features":[416]},{"name":"MMSYSERR_LASTERROR","features":[416]},{"name":"MMSYSERR_MOREDATA","features":[416]},{"name":"MMSYSERR_NODRIVER","features":[416]},{"name":"MMSYSERR_NODRIVERCB","features":[416]},{"name":"MMSYSERR_NOERROR","features":[416]},{"name":"MMSYSERR_NOMEM","features":[416]},{"name":"MMSYSERR_NOTENABLED","features":[416]},{"name":"MMSYSERR_NOTSUPPORTED","features":[416]},{"name":"MMSYSERR_READERROR","features":[416]},{"name":"MMSYSERR_VALNOTFOUND","features":[416]},{"name":"MMSYSERR_WRITEERROR","features":[416]},{"name":"MMTIME","features":[416]},{"name":"MM_ADLIB","features":[416]},{"name":"MM_DRVM_CLOSE","features":[416]},{"name":"MM_DRVM_DATA","features":[416]},{"name":"MM_DRVM_ERROR","features":[416]},{"name":"MM_DRVM_OPEN","features":[416]},{"name":"MM_JOY1BUTTONDOWN","features":[416]},{"name":"MM_JOY1BUTTONUP","features":[416]},{"name":"MM_JOY1MOVE","features":[416]},{"name":"MM_JOY1ZMOVE","features":[416]},{"name":"MM_JOY2BUTTONDOWN","features":[416]},{"name":"MM_JOY2BUTTONUP","features":[416]},{"name":"MM_JOY2MOVE","features":[416]},{"name":"MM_JOY2ZMOVE","features":[416]},{"name":"MM_MCINOTIFY","features":[416]},{"name":"MM_MCISIGNAL","features":[416]},{"name":"MM_MICROSOFT","features":[416]},{"name":"MM_MIDI_MAPPER","features":[416]},{"name":"MM_MIM_CLOSE","features":[416]},{"name":"MM_MIM_DATA","features":[416]},{"name":"MM_MIM_ERROR","features":[416]},{"name":"MM_MIM_LONGDATA","features":[416]},{"name":"MM_MIM_LONGERROR","features":[416]},{"name":"MM_MIM_MOREDATA","features":[416]},{"name":"MM_MIM_OPEN","features":[416]},{"name":"MM_MIXM_CONTROL_CHANGE","features":[416]},{"name":"MM_MIXM_LINE_CHANGE","features":[416]},{"name":"MM_MOM_CLOSE","features":[416]},{"name":"MM_MOM_DONE","features":[416]},{"name":"MM_MOM_OPEN","features":[416]},{"name":"MM_MOM_POSITIONCB","features":[416]},{"name":"MM_MPU401_MIDIIN","features":[416]},{"name":"MM_MPU401_MIDIOUT","features":[416]},{"name":"MM_PC_JOYSTICK","features":[416]},{"name":"MM_SNDBLST_MIDIIN","features":[416]},{"name":"MM_SNDBLST_MIDIOUT","features":[416]},{"name":"MM_SNDBLST_SYNTH","features":[416]},{"name":"MM_SNDBLST_WAVEIN","features":[416]},{"name":"MM_SNDBLST_WAVEOUT","features":[416]},{"name":"MM_STREAM_CLOSE","features":[416]},{"name":"MM_STREAM_DONE","features":[416]},{"name":"MM_STREAM_ERROR","features":[416]},{"name":"MM_STREAM_OPEN","features":[416]},{"name":"MM_WAVE_MAPPER","features":[416]},{"name":"MM_WIM_CLOSE","features":[416]},{"name":"MM_WIM_DATA","features":[416]},{"name":"MM_WIM_OPEN","features":[416]},{"name":"MM_WOM_CLOSE","features":[416]},{"name":"MM_WOM_DONE","features":[416]},{"name":"MM_WOM_OPEN","features":[416]},{"name":"TIMECAPS","features":[416]},{"name":"TIMECODE","features":[416]},{"name":"TIMECODE_SAMPLE","features":[416]},{"name":"TIMECODE_SAMPLE_FLAGS","features":[416]},{"name":"TIMERR_BASE","features":[416]},{"name":"TIMERR_NOCANDO","features":[416]},{"name":"TIMERR_NOERROR","features":[416]},{"name":"TIMERR_STRUCT","features":[416]},{"name":"TIME_BYTES","features":[416]},{"name":"TIME_CALLBACK_EVENT_PULSE","features":[416]},{"name":"TIME_CALLBACK_EVENT_SET","features":[416]},{"name":"TIME_CALLBACK_FUNCTION","features":[416]},{"name":"TIME_KILL_SYNCHRONOUS","features":[416]},{"name":"TIME_MIDI","features":[416]},{"name":"TIME_MS","features":[416]},{"name":"TIME_ONESHOT","features":[416]},{"name":"TIME_PERIODIC","features":[416]},{"name":"TIME_SAMPLES","features":[416]},{"name":"TIME_SMPTE","features":[416]},{"name":"TIME_TICKS","features":[416]},{"name":"WAVERR_BASE","features":[416]},{"name":"timeBeginPeriod","features":[416]},{"name":"timeEndPeriod","features":[416]},{"name":"timeGetDevCaps","features":[416]},{"name":"timeGetSystemTime","features":[416]},{"name":"timeGetTime","features":[416]},{"name":"timeKillEvent","features":[416]},{"name":"timeSetEvent","features":[416]}],"423":[{"name":"ACMDM_DRIVER_ABOUT","features":[418]},{"name":"ACMDM_DRIVER_DETAILS","features":[418]},{"name":"ACMDM_DRIVER_NOTIFY","features":[418]},{"name":"ACMDM_FILTERTAG_DETAILS","features":[418]},{"name":"ACMDM_FILTER_DETAILS","features":[418]},{"name":"ACMDM_FORMATTAG_DETAILS","features":[418]},{"name":"ACMDM_FORMAT_DETAILS","features":[418]},{"name":"ACMDM_FORMAT_SUGGEST","features":[418]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_INPUT","features":[418]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_OUTPUT","features":[418]},{"name":"ACMDM_RESERVED_HIGH","features":[418]},{"name":"ACMDM_RESERVED_LOW","features":[418]},{"name":"ACMDM_STREAM_CLOSE","features":[418]},{"name":"ACMDM_STREAM_CONVERT","features":[418]},{"name":"ACMDM_STREAM_OPEN","features":[418]},{"name":"ACMDM_STREAM_PREPARE","features":[418]},{"name":"ACMDM_STREAM_RESET","features":[418]},{"name":"ACMDM_STREAM_SIZE","features":[418]},{"name":"ACMDM_STREAM_UNPREPARE","features":[418]},{"name":"ACMDM_STREAM_UPDATE","features":[418]},{"name":"ACMDM_USER","features":[418]},{"name":"ACMDRIVERDETAILSA","features":[418,365]},{"name":"ACMDRIVERDETAILSW","features":[418,365]},{"name":"ACMDRIVERDETAILS_COPYRIGHT_CHARS","features":[418]},{"name":"ACMDRIVERDETAILS_FEATURES_CHARS","features":[418]},{"name":"ACMDRIVERDETAILS_LICENSING_CHARS","features":[418]},{"name":"ACMDRIVERDETAILS_LONGNAME_CHARS","features":[418]},{"name":"ACMDRIVERDETAILS_SHORTNAME_CHARS","features":[418]},{"name":"ACMDRIVERDETAILS_SUPPORTF_ASYNC","features":[418]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CODEC","features":[418]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CONVERTER","features":[418]},{"name":"ACMDRIVERDETAILS_SUPPORTF_DISABLED","features":[418]},{"name":"ACMDRIVERDETAILS_SUPPORTF_FILTER","features":[418]},{"name":"ACMDRIVERDETAILS_SUPPORTF_HARDWARE","features":[418]},{"name":"ACMDRIVERDETAILS_SUPPORTF_LOCAL","features":[418]},{"name":"ACMDRIVERENUMCB","features":[303,418]},{"name":"ACMDRVFORMATSUGGEST","features":[418]},{"name":"ACMDRVOPENDESCA","features":[418]},{"name":"ACMDRVOPENDESCW","features":[418]},{"name":"ACMDRVSTREAMHEADER","features":[418]},{"name":"ACMDRVSTREAMINSTANCE","features":[418]},{"name":"ACMDRVSTREAMSIZE","features":[418]},{"name":"ACMERR_BASE","features":[418]},{"name":"ACMERR_BUSY","features":[418]},{"name":"ACMERR_CANCELED","features":[418]},{"name":"ACMERR_NOTPOSSIBLE","features":[418]},{"name":"ACMERR_UNPREPARED","features":[418]},{"name":"ACMFILTERCHOOSEA","features":[303,418]},{"name":"ACMFILTERCHOOSEHOOKPROCA","features":[303,418]},{"name":"ACMFILTERCHOOSEHOOKPROCW","features":[303,418]},{"name":"ACMFILTERCHOOSEW","features":[303,418]},{"name":"ACMFILTERCHOOSE_STYLEF_CONTEXTHELP","features":[418]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLEHOOK","features":[418]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATE","features":[418]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[418]},{"name":"ACMFILTERCHOOSE_STYLEF_INITTOFILTERSTRUCT","features":[418]},{"name":"ACMFILTERCHOOSE_STYLEF_SHOWHELP","features":[418]},{"name":"ACMFILTERDETAILSA","features":[418]},{"name":"ACMFILTERDETAILSW","features":[418]},{"name":"ACMFILTERDETAILS_FILTER_CHARS","features":[418]},{"name":"ACMFILTERENUMCBA","features":[303,418]},{"name":"ACMFILTERENUMCBW","features":[303,418]},{"name":"ACMFILTERTAGDETAILSA","features":[418]},{"name":"ACMFILTERTAGDETAILSW","features":[418]},{"name":"ACMFILTERTAGDETAILS_FILTERTAG_CHARS","features":[418]},{"name":"ACMFILTERTAGENUMCBA","features":[303,418]},{"name":"ACMFILTERTAGENUMCBW","features":[303,418]},{"name":"ACMFORMATCHOOSEA","features":[303,418]},{"name":"ACMFORMATCHOOSEHOOKPROCA","features":[303,418]},{"name":"ACMFORMATCHOOSEHOOKPROCW","features":[303,418]},{"name":"ACMFORMATCHOOSEW","features":[303,418]},{"name":"ACMFORMATCHOOSE_STYLEF_CONTEXTHELP","features":[418]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLEHOOK","features":[418]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATE","features":[418]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[418]},{"name":"ACMFORMATCHOOSE_STYLEF_INITTOWFXSTRUCT","features":[418]},{"name":"ACMFORMATCHOOSE_STYLEF_SHOWHELP","features":[418]},{"name":"ACMFORMATDETAILSA","features":[418]},{"name":"ACMFORMATDETAILS_FORMAT_CHARS","features":[418]},{"name":"ACMFORMATENUMCBA","features":[303,418]},{"name":"ACMFORMATENUMCBW","features":[303,418]},{"name":"ACMFORMATTAGDETAILSA","features":[418]},{"name":"ACMFORMATTAGDETAILSW","features":[418]},{"name":"ACMFORMATTAGDETAILS_FORMATTAG_CHARS","features":[418]},{"name":"ACMFORMATTAGENUMCBA","features":[303,418]},{"name":"ACMFORMATTAGENUMCBW","features":[303,418]},{"name":"ACMHELPMSGCONTEXTHELP","features":[418]},{"name":"ACMHELPMSGCONTEXTHELPA","features":[418]},{"name":"ACMHELPMSGCONTEXTHELPW","features":[418]},{"name":"ACMHELPMSGCONTEXTMENU","features":[418]},{"name":"ACMHELPMSGCONTEXTMENUA","features":[418]},{"name":"ACMHELPMSGCONTEXTMENUW","features":[418]},{"name":"ACMHELPMSGSTRING","features":[418]},{"name":"ACMHELPMSGSTRINGA","features":[418]},{"name":"ACMHELPMSGSTRINGW","features":[418]},{"name":"ACMSTREAMHEADER","features":[418]},{"name":"ACMSTREAMHEADER","features":[418]},{"name":"ACMSTREAMHEADER_STATUSF_DONE","features":[418]},{"name":"ACMSTREAMHEADER_STATUSF_INQUEUE","features":[418]},{"name":"ACMSTREAMHEADER_STATUSF_PREPARED","features":[418]},{"name":"ACM_DRIVERADDF_FUNCTION","features":[418]},{"name":"ACM_DRIVERADDF_GLOBAL","features":[418]},{"name":"ACM_DRIVERADDF_LOCAL","features":[418]},{"name":"ACM_DRIVERADDF_NAME","features":[418]},{"name":"ACM_DRIVERADDF_NOTIFYHWND","features":[418]},{"name":"ACM_DRIVERADDF_TYPEMASK","features":[418]},{"name":"ACM_DRIVERENUMF_DISABLED","features":[418]},{"name":"ACM_DRIVERENUMF_NOLOCAL","features":[418]},{"name":"ACM_DRIVERPRIORITYF_ABLEMASK","features":[418]},{"name":"ACM_DRIVERPRIORITYF_BEGIN","features":[418]},{"name":"ACM_DRIVERPRIORITYF_DEFERMASK","features":[418]},{"name":"ACM_DRIVERPRIORITYF_DISABLE","features":[418]},{"name":"ACM_DRIVERPRIORITYF_ENABLE","features":[418]},{"name":"ACM_DRIVERPRIORITYF_END","features":[418]},{"name":"ACM_FILTERDETAILSF_FILTER","features":[418]},{"name":"ACM_FILTERDETAILSF_INDEX","features":[418]},{"name":"ACM_FILTERDETAILSF_QUERYMASK","features":[418]},{"name":"ACM_FILTERENUMF_DWFILTERTAG","features":[418]},{"name":"ACM_FILTERTAGDETAILSF_FILTERTAG","features":[418]},{"name":"ACM_FILTERTAGDETAILSF_INDEX","features":[418]},{"name":"ACM_FILTERTAGDETAILSF_LARGESTSIZE","features":[418]},{"name":"ACM_FILTERTAGDETAILSF_QUERYMASK","features":[418]},{"name":"ACM_FORMATDETAILSF_FORMAT","features":[418]},{"name":"ACM_FORMATDETAILSF_INDEX","features":[418]},{"name":"ACM_FORMATDETAILSF_QUERYMASK","features":[418]},{"name":"ACM_FORMATENUMF_CONVERT","features":[418]},{"name":"ACM_FORMATENUMF_HARDWARE","features":[418]},{"name":"ACM_FORMATENUMF_INPUT","features":[418]},{"name":"ACM_FORMATENUMF_NCHANNELS","features":[418]},{"name":"ACM_FORMATENUMF_NSAMPLESPERSEC","features":[418]},{"name":"ACM_FORMATENUMF_OUTPUT","features":[418]},{"name":"ACM_FORMATENUMF_SUGGEST","features":[418]},{"name":"ACM_FORMATENUMF_WBITSPERSAMPLE","features":[418]},{"name":"ACM_FORMATENUMF_WFORMATTAG","features":[418]},{"name":"ACM_FORMATSUGGESTF_NCHANNELS","features":[418]},{"name":"ACM_FORMATSUGGESTF_NSAMPLESPERSEC","features":[418]},{"name":"ACM_FORMATSUGGESTF_TYPEMASK","features":[418]},{"name":"ACM_FORMATSUGGESTF_WBITSPERSAMPLE","features":[418]},{"name":"ACM_FORMATSUGGESTF_WFORMATTAG","features":[418]},{"name":"ACM_FORMATTAGDETAILSF_FORMATTAG","features":[418]},{"name":"ACM_FORMATTAGDETAILSF_INDEX","features":[418]},{"name":"ACM_FORMATTAGDETAILSF_LARGESTSIZE","features":[418]},{"name":"ACM_FORMATTAGDETAILSF_QUERYMASK","features":[418]},{"name":"ACM_METRIC_COUNT_CODECS","features":[418]},{"name":"ACM_METRIC_COUNT_CONVERTERS","features":[418]},{"name":"ACM_METRIC_COUNT_DISABLED","features":[418]},{"name":"ACM_METRIC_COUNT_DRIVERS","features":[418]},{"name":"ACM_METRIC_COUNT_FILTERS","features":[418]},{"name":"ACM_METRIC_COUNT_HARDWARE","features":[418]},{"name":"ACM_METRIC_COUNT_LOCAL_CODECS","features":[418]},{"name":"ACM_METRIC_COUNT_LOCAL_CONVERTERS","features":[418]},{"name":"ACM_METRIC_COUNT_LOCAL_DISABLED","features":[418]},{"name":"ACM_METRIC_COUNT_LOCAL_DRIVERS","features":[418]},{"name":"ACM_METRIC_COUNT_LOCAL_FILTERS","features":[418]},{"name":"ACM_METRIC_DRIVER_PRIORITY","features":[418]},{"name":"ACM_METRIC_DRIVER_SUPPORT","features":[418]},{"name":"ACM_METRIC_HARDWARE_WAVE_INPUT","features":[418]},{"name":"ACM_METRIC_HARDWARE_WAVE_OUTPUT","features":[418]},{"name":"ACM_METRIC_MAX_SIZE_FILTER","features":[418]},{"name":"ACM_METRIC_MAX_SIZE_FORMAT","features":[418]},{"name":"ACM_STREAMCONVERTF_BLOCKALIGN","features":[418]},{"name":"ACM_STREAMCONVERTF_END","features":[418]},{"name":"ACM_STREAMCONVERTF_START","features":[418]},{"name":"ACM_STREAMOPENF_ASYNC","features":[418]},{"name":"ACM_STREAMOPENF_NONREALTIME","features":[418]},{"name":"ACM_STREAMOPENF_QUERY","features":[418]},{"name":"ACM_STREAMSIZEF_DESTINATION","features":[418]},{"name":"ACM_STREAMSIZEF_QUERYMASK","features":[418]},{"name":"ACM_STREAMSIZEF_SOURCE","features":[418]},{"name":"AMBISONICS_CHANNEL_ORDERING","features":[418]},{"name":"AMBISONICS_CHANNEL_ORDERING_ACN","features":[418]},{"name":"AMBISONICS_NORMALIZATION","features":[418]},{"name":"AMBISONICS_NORMALIZATION_N3D","features":[418]},{"name":"AMBISONICS_NORMALIZATION_SN3D","features":[418]},{"name":"AMBISONICS_PARAMS","features":[418]},{"name":"AMBISONICS_PARAM_VERSION_1","features":[418]},{"name":"AMBISONICS_TYPE","features":[418]},{"name":"AMBISONICS_TYPE_FULL3D","features":[418]},{"name":"AUDCLNT_BUFFERFLAGS_DATA_DISCONTINUITY","features":[418]},{"name":"AUDCLNT_BUFFERFLAGS_SILENT","features":[418]},{"name":"AUDCLNT_BUFFERFLAGS_TIMESTAMP_ERROR","features":[418]},{"name":"AUDCLNT_E_ALREADY_INITIALIZED","features":[418]},{"name":"AUDCLNT_E_BUFDURATION_PERIOD_NOT_EQUAL","features":[418]},{"name":"AUDCLNT_E_BUFFER_ERROR","features":[418]},{"name":"AUDCLNT_E_BUFFER_OPERATION_PENDING","features":[418]},{"name":"AUDCLNT_E_BUFFER_SIZE_ERROR","features":[418]},{"name":"AUDCLNT_E_BUFFER_SIZE_NOT_ALIGNED","features":[418]},{"name":"AUDCLNT_E_BUFFER_TOO_LARGE","features":[418]},{"name":"AUDCLNT_E_CPUUSAGE_EXCEEDED","features":[418]},{"name":"AUDCLNT_E_DEVICE_INVALIDATED","features":[418]},{"name":"AUDCLNT_E_DEVICE_IN_USE","features":[418]},{"name":"AUDCLNT_E_EFFECT_NOT_AVAILABLE","features":[418]},{"name":"AUDCLNT_E_EFFECT_STATE_READ_ONLY","features":[418]},{"name":"AUDCLNT_E_ENDPOINT_CREATE_FAILED","features":[418]},{"name":"AUDCLNT_E_ENDPOINT_OFFLOAD_NOT_CAPABLE","features":[418]},{"name":"AUDCLNT_E_ENGINE_FORMAT_LOCKED","features":[418]},{"name":"AUDCLNT_E_ENGINE_PERIODICITY_LOCKED","features":[418]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_EXPECTED","features":[418]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_SET","features":[418]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED","features":[418]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_ONLY","features":[418]},{"name":"AUDCLNT_E_HEADTRACKING_ENABLED","features":[418]},{"name":"AUDCLNT_E_HEADTRACKING_UNSUPPORTED","features":[418]},{"name":"AUDCLNT_E_INCORRECT_BUFFER_SIZE","features":[418]},{"name":"AUDCLNT_E_INVALID_DEVICE_PERIOD","features":[418]},{"name":"AUDCLNT_E_INVALID_SIZE","features":[418]},{"name":"AUDCLNT_E_INVALID_STREAM_FLAG","features":[418]},{"name":"AUDCLNT_E_NONOFFLOAD_MODE_ONLY","features":[418]},{"name":"AUDCLNT_E_NOT_INITIALIZED","features":[418]},{"name":"AUDCLNT_E_NOT_STOPPED","features":[418]},{"name":"AUDCLNT_E_OFFLOAD_MODE_ONLY","features":[418]},{"name":"AUDCLNT_E_OUT_OF_OFFLOAD_RESOURCES","features":[418]},{"name":"AUDCLNT_E_OUT_OF_ORDER","features":[418]},{"name":"AUDCLNT_E_RAW_MODE_UNSUPPORTED","features":[418]},{"name":"AUDCLNT_E_RESOURCES_INVALIDATED","features":[418]},{"name":"AUDCLNT_E_SERVICE_NOT_RUNNING","features":[418]},{"name":"AUDCLNT_E_THREAD_NOT_REGISTERED","features":[418]},{"name":"AUDCLNT_E_UNSUPPORTED_FORMAT","features":[418]},{"name":"AUDCLNT_E_WRONG_ENDPOINT_TYPE","features":[418]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDE","features":[418]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDEWHENEXPIRED","features":[418]},{"name":"AUDCLNT_SESSIONFLAGS_EXPIREWHENUNOWNED","features":[418]},{"name":"AUDCLNT_SHAREMODE","features":[418]},{"name":"AUDCLNT_SHAREMODE_EXCLUSIVE","features":[418]},{"name":"AUDCLNT_SHAREMODE_SHARED","features":[418]},{"name":"AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM","features":[418]},{"name":"AUDCLNT_STREAMFLAGS_CROSSPROCESS","features":[418]},{"name":"AUDCLNT_STREAMFLAGS_EVENTCALLBACK","features":[418]},{"name":"AUDCLNT_STREAMFLAGS_LOOPBACK","features":[418]},{"name":"AUDCLNT_STREAMFLAGS_NOPERSIST","features":[418]},{"name":"AUDCLNT_STREAMFLAGS_RATEADJUST","features":[418]},{"name":"AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY","features":[418]},{"name":"AUDCLNT_STREAMOPTIONS","features":[418]},{"name":"AUDCLNT_STREAMOPTIONS_AMBISONICS","features":[418]},{"name":"AUDCLNT_STREAMOPTIONS_MATCH_FORMAT","features":[418]},{"name":"AUDCLNT_STREAMOPTIONS_NONE","features":[418]},{"name":"AUDCLNT_STREAMOPTIONS_RAW","features":[418]},{"name":"AUDCLNT_S_BUFFER_EMPTY","features":[418]},{"name":"AUDCLNT_S_POSITION_STALLED","features":[418]},{"name":"AUDCLNT_S_THREAD_ALREADY_REGISTERED","features":[418]},{"name":"AUDIOCLIENT_ACTIVATION_PARAMS","features":[418]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE","features":[418]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_DEFAULT","features":[418]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_PROCESS_LOOPBACK","features":[418]},{"name":"AUDIOCLIENT_PROCESS_LOOPBACK_PARAMS","features":[418]},{"name":"AUDIOCLOCK_CHARACTERISTIC_FIXED_FREQ","features":[418]},{"name":"AUDIO_DUCKING_OPTIONS","features":[418]},{"name":"AUDIO_DUCKING_OPTIONS_DEFAULT","features":[418]},{"name":"AUDIO_DUCKING_OPTIONS_DO_NOT_DUCK_OTHER_STREAMS","features":[418]},{"name":"AUDIO_EFFECT","features":[303,418]},{"name":"AUDIO_EFFECT_STATE","features":[418]},{"name":"AUDIO_EFFECT_STATE_OFF","features":[418]},{"name":"AUDIO_EFFECT_STATE_ON","features":[418]},{"name":"AUDIO_STREAM_CATEGORY","features":[418]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE","features":[418]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_DEFAULT","features":[418]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_ENUM_COUNT","features":[418]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_USER","features":[418]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_VOLATILE","features":[418]},{"name":"AUDIO_VOLUME_NOTIFICATION_DATA","features":[303,418]},{"name":"AUXCAPS2A","features":[418]},{"name":"AUXCAPS2W","features":[418]},{"name":"AUXCAPSA","features":[418]},{"name":"AUXCAPSW","features":[418]},{"name":"AUXCAPS_AUXIN","features":[418]},{"name":"AUXCAPS_CDAUDIO","features":[418]},{"name":"AUXCAPS_LRVOLUME","features":[418]},{"name":"AUXCAPS_VOLUME","features":[418]},{"name":"ActivateAudioInterfaceAsync","features":[418]},{"name":"AudioCategory_Alerts","features":[418]},{"name":"AudioCategory_Communications","features":[418]},{"name":"AudioCategory_FarFieldSpeech","features":[418]},{"name":"AudioCategory_ForegroundOnlyMedia","features":[418]},{"name":"AudioCategory_GameChat","features":[418]},{"name":"AudioCategory_GameEffects","features":[418]},{"name":"AudioCategory_GameMedia","features":[418]},{"name":"AudioCategory_Media","features":[418]},{"name":"AudioCategory_Movie","features":[418]},{"name":"AudioCategory_Other","features":[418]},{"name":"AudioCategory_SoundEffects","features":[418]},{"name":"AudioCategory_Speech","features":[418]},{"name":"AudioCategory_UniformSpeech","features":[418]},{"name":"AudioCategory_VoiceTyping","features":[418]},{"name":"AudioClient3ActivationParams","features":[418]},{"name":"AudioClientProperties","features":[303,418]},{"name":"AudioExtensionParams","features":[303,418]},{"name":"AudioObjectType","features":[418]},{"name":"AudioObjectType_BackCenter","features":[418]},{"name":"AudioObjectType_BackLeft","features":[418]},{"name":"AudioObjectType_BackRight","features":[418]},{"name":"AudioObjectType_BottomBackLeft","features":[418]},{"name":"AudioObjectType_BottomBackRight","features":[418]},{"name":"AudioObjectType_BottomFrontLeft","features":[418]},{"name":"AudioObjectType_BottomFrontRight","features":[418]},{"name":"AudioObjectType_Dynamic","features":[418]},{"name":"AudioObjectType_FrontCenter","features":[418]},{"name":"AudioObjectType_FrontLeft","features":[418]},{"name":"AudioObjectType_FrontRight","features":[418]},{"name":"AudioObjectType_LowFrequency","features":[418]},{"name":"AudioObjectType_None","features":[418]},{"name":"AudioObjectType_SideLeft","features":[418]},{"name":"AudioObjectType_SideRight","features":[418]},{"name":"AudioObjectType_TopBackLeft","features":[418]},{"name":"AudioObjectType_TopBackRight","features":[418]},{"name":"AudioObjectType_TopFrontLeft","features":[418]},{"name":"AudioObjectType_TopFrontRight","features":[418]},{"name":"AudioSessionDisconnectReason","features":[418]},{"name":"AudioSessionState","features":[418]},{"name":"AudioSessionStateActive","features":[418]},{"name":"AudioSessionStateExpired","features":[418]},{"name":"AudioSessionStateInactive","features":[418]},{"name":"AudioStateMonitorSoundLevel","features":[418]},{"name":"CALLBACK_EVENT","features":[418]},{"name":"CALLBACK_FUNCTION","features":[418]},{"name":"CALLBACK_NULL","features":[418]},{"name":"CALLBACK_TASK","features":[418]},{"name":"CALLBACK_THREAD","features":[418]},{"name":"CALLBACK_TYPEMASK","features":[418]},{"name":"CALLBACK_WINDOW","features":[418]},{"name":"CoRegisterMessageFilter","features":[418]},{"name":"Connector","features":[418]},{"name":"ConnectorType","features":[418]},{"name":"CreateCaptureAudioStateMonitor","features":[418]},{"name":"CreateCaptureAudioStateMonitorForCategory","features":[418]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceId","features":[418]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceRole","features":[418]},{"name":"CreateRenderAudioStateMonitor","features":[418]},{"name":"CreateRenderAudioStateMonitorForCategory","features":[418]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceId","features":[418]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceRole","features":[418]},{"name":"DEVICE_STATE","features":[418]},{"name":"DEVICE_STATEMASK_ALL","features":[418]},{"name":"DEVICE_STATE_ACTIVE","features":[418]},{"name":"DEVICE_STATE_DISABLED","features":[418]},{"name":"DEVICE_STATE_NOTPRESENT","features":[418]},{"name":"DEVICE_STATE_UNPLUGGED","features":[418]},{"name":"DEVINTERFACE_AUDIO_CAPTURE","features":[418]},{"name":"DEVINTERFACE_AUDIO_RENDER","features":[418]},{"name":"DEVINTERFACE_MIDI_INPUT","features":[418]},{"name":"DEVINTERFACE_MIDI_OUTPUT","features":[418]},{"name":"DIRECTX_AUDIO_ACTIVATION_PARAMS","features":[418]},{"name":"DRVM_MAPPER","features":[418]},{"name":"DRVM_MAPPER_STATUS","features":[418]},{"name":"DRV_MAPPER_PREFERRED_INPUT_GET","features":[418]},{"name":"DRV_MAPPER_PREFERRED_OUTPUT_GET","features":[418]},{"name":"DataFlow","features":[418]},{"name":"DeviceTopology","features":[418]},{"name":"DigitalAudioDisplayDevice","features":[418]},{"name":"DisconnectReasonDeviceRemoval","features":[418]},{"name":"DisconnectReasonExclusiveModeOverride","features":[418]},{"name":"DisconnectReasonFormatChanged","features":[418]},{"name":"DisconnectReasonServerShutdown","features":[418]},{"name":"DisconnectReasonSessionDisconnected","features":[418]},{"name":"DisconnectReasonSessionLogoff","features":[418]},{"name":"ECHOWAVEFILTER","features":[418]},{"name":"EDataFlow","features":[418]},{"name":"EDataFlow_enum_count","features":[418]},{"name":"ENDPOINT_FORMAT_RESET_MIX_ONLY","features":[418]},{"name":"ENDPOINT_HARDWARE_SUPPORT_METER","features":[418]},{"name":"ENDPOINT_HARDWARE_SUPPORT_MUTE","features":[418]},{"name":"ENDPOINT_HARDWARE_SUPPORT_VOLUME","features":[418]},{"name":"ENDPOINT_SYSFX_DISABLED","features":[418]},{"name":"ENDPOINT_SYSFX_ENABLED","features":[418]},{"name":"ERole","features":[418]},{"name":"ERole_enum_count","features":[418]},{"name":"EVENTCONTEXT_VOLUMESLIDER","features":[418]},{"name":"EndpointFormFactor","features":[418]},{"name":"EndpointFormFactor_enum_count","features":[418]},{"name":"FILTERCHOOSE_CUSTOM_VERIFY","features":[418]},{"name":"FILTERCHOOSE_FILTERTAG_VERIFY","features":[418]},{"name":"FILTERCHOOSE_FILTER_VERIFY","features":[418]},{"name":"FILTERCHOOSE_MESSAGE","features":[418]},{"name":"FORMATCHOOSE_CUSTOM_VERIFY","features":[418]},{"name":"FORMATCHOOSE_FORMATTAG_VERIFY","features":[418]},{"name":"FORMATCHOOSE_FORMAT_VERIFY","features":[418]},{"name":"FORMATCHOOSE_MESSAGE","features":[418]},{"name":"Full","features":[418]},{"name":"HACMDRIVER","features":[418]},{"name":"HACMDRIVERID","features":[418]},{"name":"HACMOBJ","features":[418]},{"name":"HACMSTREAM","features":[418]},{"name":"HMIDI","features":[418]},{"name":"HMIDIIN","features":[418]},{"name":"HMIDIOUT","features":[418]},{"name":"HMIDISTRM","features":[418]},{"name":"HMIXER","features":[418]},{"name":"HMIXEROBJ","features":[418]},{"name":"HWAVE","features":[418]},{"name":"HWAVEIN","features":[418]},{"name":"HWAVEOUT","features":[418]},{"name":"Handset","features":[418]},{"name":"Headphones","features":[418]},{"name":"Headset","features":[418]},{"name":"IAcousticEchoCancellationControl","features":[418]},{"name":"IActivateAudioInterfaceAsyncOperation","features":[418]},{"name":"IActivateAudioInterfaceCompletionHandler","features":[418]},{"name":"IAudioAmbisonicsControl","features":[418]},{"name":"IAudioAutoGainControl","features":[418]},{"name":"IAudioBass","features":[418]},{"name":"IAudioCaptureClient","features":[418]},{"name":"IAudioChannelConfig","features":[418]},{"name":"IAudioClient","features":[418]},{"name":"IAudioClient2","features":[418]},{"name":"IAudioClient3","features":[418]},{"name":"IAudioClientDuckingControl","features":[418]},{"name":"IAudioClock","features":[418]},{"name":"IAudioClock2","features":[418]},{"name":"IAudioClockAdjustment","features":[418]},{"name":"IAudioEffectsChangedNotificationClient","features":[418]},{"name":"IAudioEffectsManager","features":[418]},{"name":"IAudioFormatEnumerator","features":[418]},{"name":"IAudioInputSelector","features":[418]},{"name":"IAudioLoudness","features":[418]},{"name":"IAudioMidrange","features":[418]},{"name":"IAudioMute","features":[418]},{"name":"IAudioOutputSelector","features":[418]},{"name":"IAudioPeakMeter","features":[418]},{"name":"IAudioRenderClient","features":[418]},{"name":"IAudioSessionControl","features":[418]},{"name":"IAudioSessionControl2","features":[418]},{"name":"IAudioSessionEnumerator","features":[418]},{"name":"IAudioSessionEvents","features":[418]},{"name":"IAudioSessionManager","features":[418]},{"name":"IAudioSessionManager2","features":[418]},{"name":"IAudioSessionNotification","features":[418]},{"name":"IAudioStateMonitor","features":[418]},{"name":"IAudioStreamVolume","features":[418]},{"name":"IAudioSystemEffectsPropertyChangeNotificationClient","features":[418]},{"name":"IAudioSystemEffectsPropertyStore","features":[418]},{"name":"IAudioTreble","features":[418]},{"name":"IAudioViewManagerService","features":[418]},{"name":"IAudioVolumeDuckNotification","features":[418]},{"name":"IAudioVolumeLevel","features":[418]},{"name":"IChannelAudioVolume","features":[418]},{"name":"IConnector","features":[418]},{"name":"IControlChangeNotify","features":[418]},{"name":"IControlInterface","features":[418]},{"name":"IDeviceSpecificProperty","features":[418]},{"name":"IDeviceTopology","features":[418]},{"name":"IMMDevice","features":[418]},{"name":"IMMDeviceActivator","features":[418]},{"name":"IMMDeviceCollection","features":[418]},{"name":"IMMDeviceEnumerator","features":[418]},{"name":"IMMEndpoint","features":[418]},{"name":"IMMNotificationClient","features":[418]},{"name":"IMessageFilter","features":[418]},{"name":"IPart","features":[418]},{"name":"IPartsList","features":[418]},{"name":"IPerChannelDbLevel","features":[418]},{"name":"ISimpleAudioVolume","features":[418]},{"name":"ISpatialAudioClient","features":[418]},{"name":"ISpatialAudioClient2","features":[418]},{"name":"ISpatialAudioMetadataClient","features":[418]},{"name":"ISpatialAudioMetadataCopier","features":[418]},{"name":"ISpatialAudioMetadataItems","features":[418]},{"name":"ISpatialAudioMetadataItemsBuffer","features":[418]},{"name":"ISpatialAudioMetadataReader","features":[418]},{"name":"ISpatialAudioMetadataWriter","features":[418]},{"name":"ISpatialAudioObject","features":[418]},{"name":"ISpatialAudioObjectBase","features":[418]},{"name":"ISpatialAudioObjectForHrtf","features":[418]},{"name":"ISpatialAudioObjectForMetadataCommands","features":[418]},{"name":"ISpatialAudioObjectForMetadataItems","features":[418]},{"name":"ISpatialAudioObjectRenderStream","features":[418]},{"name":"ISpatialAudioObjectRenderStreamBase","features":[418]},{"name":"ISpatialAudioObjectRenderStreamForHrtf","features":[418]},{"name":"ISpatialAudioObjectRenderStreamForMetadata","features":[418]},{"name":"ISpatialAudioObjectRenderStreamNotify","features":[418]},{"name":"ISubunit","features":[418]},{"name":"In","features":[418]},{"name":"LPACMDRIVERPROC","features":[303,418]},{"name":"LPMIDICALLBACK","features":[418,417]},{"name":"LPWAVECALLBACK","features":[418,417]},{"name":"LineLevel","features":[418]},{"name":"Low","features":[418]},{"name":"MEVT_COMMENT","features":[418]},{"name":"MEVT_F_CALLBACK","features":[418]},{"name":"MEVT_F_LONG","features":[418]},{"name":"MEVT_F_SHORT","features":[418]},{"name":"MEVT_LONGMSG","features":[418]},{"name":"MEVT_NOP","features":[418]},{"name":"MEVT_SHORTMSG","features":[418]},{"name":"MEVT_TEMPO","features":[418]},{"name":"MEVT_VERSION","features":[418]},{"name":"MHDR_DONE","features":[418]},{"name":"MHDR_INQUEUE","features":[418]},{"name":"MHDR_ISSTRM","features":[418]},{"name":"MHDR_PREPARED","features":[418]},{"name":"MIDICAPS_CACHE","features":[418]},{"name":"MIDICAPS_LRVOLUME","features":[418]},{"name":"MIDICAPS_STREAM","features":[418]},{"name":"MIDICAPS_VOLUME","features":[418]},{"name":"MIDIERR_BADOPENMODE","features":[418]},{"name":"MIDIERR_DONT_CONTINUE","features":[418]},{"name":"MIDIERR_INVALIDSETUP","features":[418]},{"name":"MIDIERR_LASTERROR","features":[418]},{"name":"MIDIERR_NODEVICE","features":[418]},{"name":"MIDIERR_NOMAP","features":[418]},{"name":"MIDIERR_NOTREADY","features":[418]},{"name":"MIDIERR_STILLPLAYING","features":[418]},{"name":"MIDIERR_UNPREPARED","features":[418]},{"name":"MIDIEVENT","features":[418]},{"name":"MIDIHDR","features":[418]},{"name":"MIDIINCAPS2A","features":[418]},{"name":"MIDIINCAPS2W","features":[418]},{"name":"MIDIINCAPSA","features":[418]},{"name":"MIDIINCAPSW","features":[418]},{"name":"MIDIOUTCAPS2A","features":[418]},{"name":"MIDIOUTCAPS2W","features":[418]},{"name":"MIDIOUTCAPSA","features":[418]},{"name":"MIDIOUTCAPSW","features":[418]},{"name":"MIDIPATCHSIZE","features":[418]},{"name":"MIDIPROPTEMPO","features":[418]},{"name":"MIDIPROPTIMEDIV","features":[418]},{"name":"MIDIPROP_GET","features":[418]},{"name":"MIDIPROP_SET","features":[418]},{"name":"MIDIPROP_TEMPO","features":[418]},{"name":"MIDIPROP_TIMEDIV","features":[418]},{"name":"MIDISTRMBUFFVER","features":[418]},{"name":"MIDISTRM_ERROR","features":[418]},{"name":"MIDI_CACHE_ALL","features":[418]},{"name":"MIDI_CACHE_BESTFIT","features":[418]},{"name":"MIDI_CACHE_QUERY","features":[418]},{"name":"MIDI_IO_STATUS","features":[418]},{"name":"MIDI_UNCACHE","features":[418]},{"name":"MIDI_WAVE_OPEN_TYPE","features":[418]},{"name":"MIXERCAPS2A","features":[418]},{"name":"MIXERCAPS2W","features":[418]},{"name":"MIXERCAPSA","features":[418]},{"name":"MIXERCAPSW","features":[418]},{"name":"MIXERCONTROLA","features":[418]},{"name":"MIXERCONTROLDETAILS","features":[303,418]},{"name":"MIXERCONTROLDETAILS_BOOLEAN","features":[418]},{"name":"MIXERCONTROLDETAILS_LISTTEXTA","features":[418]},{"name":"MIXERCONTROLDETAILS_LISTTEXTW","features":[418]},{"name":"MIXERCONTROLDETAILS_SIGNED","features":[418]},{"name":"MIXERCONTROLDETAILS_UNSIGNED","features":[418]},{"name":"MIXERCONTROLW","features":[418]},{"name":"MIXERCONTROL_CONTROLF_DISABLED","features":[418]},{"name":"MIXERCONTROL_CONTROLF_MULTIPLE","features":[418]},{"name":"MIXERCONTROL_CONTROLF_UNIFORM","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS_BOOST","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEAN","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEANMETER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_BUTTON","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_CUSTOM","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_DECIBELS","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_EQUALIZER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_FADER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_LOUDNESS","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_MICROTIME","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_MILLITIME","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_MIXER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_MONO","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_MUTE","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_MUX","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_ONOFF","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_PAN","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_PEAKMETER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_PERCENT","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_QSOUNDPAN","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNED","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNEDMETER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_SINGLESELECT","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_SLIDER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_STEREOENH","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_TREBLE","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNED","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER","features":[418]},{"name":"MIXERCONTROL_CONTROLTYPE_VOLUME","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_CUSTOM","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_FADER","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_LIST","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_MASK","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_METER","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_NUMBER","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_SLIDER","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_SWITCH","features":[418]},{"name":"MIXERCONTROL_CT_CLASS_TIME","features":[418]},{"name":"MIXERCONTROL_CT_SC_LIST_MULTIPLE","features":[418]},{"name":"MIXERCONTROL_CT_SC_LIST_SINGLE","features":[418]},{"name":"MIXERCONTROL_CT_SC_METER_POLLED","features":[418]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BOOLEAN","features":[418]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BUTTON","features":[418]},{"name":"MIXERCONTROL_CT_SC_TIME_MICROSECS","features":[418]},{"name":"MIXERCONTROL_CT_SC_TIME_MILLISECS","features":[418]},{"name":"MIXERCONTROL_CT_SUBCLASS_MASK","features":[418]},{"name":"MIXERCONTROL_CT_UNITS_BOOLEAN","features":[418]},{"name":"MIXERCONTROL_CT_UNITS_CUSTOM","features":[418]},{"name":"MIXERCONTROL_CT_UNITS_DECIBELS","features":[418]},{"name":"MIXERCONTROL_CT_UNITS_MASK","features":[418]},{"name":"MIXERCONTROL_CT_UNITS_PERCENT","features":[418]},{"name":"MIXERCONTROL_CT_UNITS_SIGNED","features":[418]},{"name":"MIXERCONTROL_CT_UNITS_UNSIGNED","features":[418]},{"name":"MIXERLINEA","features":[418]},{"name":"MIXERLINECONTROLSA","features":[418]},{"name":"MIXERLINECONTROLSW","features":[418]},{"name":"MIXERLINEW","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_DIGITAL","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_FIRST","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_HEADPHONES","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LAST","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LINE","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_MONITOR","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_SPEAKERS","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_TELEPHONE","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_UNDEFINED","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_VOICEIN","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_DST_WAVEIN","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_ANALOG","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_DIGITAL","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_FIRST","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LAST","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LINE","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED","features":[418]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT","features":[418]},{"name":"MIXERLINE_LINEF_ACTIVE","features":[418]},{"name":"MIXERLINE_LINEF_DISCONNECTED","features":[418]},{"name":"MIXERLINE_LINEF_SOURCE","features":[418]},{"name":"MIXERLINE_TARGETTYPE_AUX","features":[418]},{"name":"MIXERLINE_TARGETTYPE_MIDIIN","features":[418]},{"name":"MIXERLINE_TARGETTYPE_MIDIOUT","features":[418]},{"name":"MIXERLINE_TARGETTYPE_UNDEFINED","features":[418]},{"name":"MIXERLINE_TARGETTYPE_WAVEIN","features":[418]},{"name":"MIXERLINE_TARGETTYPE_WAVEOUT","features":[418]},{"name":"MIXERR_INVALCONTROL","features":[418]},{"name":"MIXERR_INVALLINE","features":[418]},{"name":"MIXERR_INVALVALUE","features":[418]},{"name":"MIXERR_LASTERROR","features":[418]},{"name":"MIXER_GETCONTROLDETAILSF_LISTTEXT","features":[418]},{"name":"MIXER_GETCONTROLDETAILSF_QUERYMASK","features":[418]},{"name":"MIXER_GETCONTROLDETAILSF_VALUE","features":[418]},{"name":"MIXER_GETLINECONTROLSF_ALL","features":[418]},{"name":"MIXER_GETLINECONTROLSF_ONEBYID","features":[418]},{"name":"MIXER_GETLINECONTROLSF_ONEBYTYPE","features":[418]},{"name":"MIXER_GETLINECONTROLSF_QUERYMASK","features":[418]},{"name":"MIXER_GETLINEINFOF_COMPONENTTYPE","features":[418]},{"name":"MIXER_GETLINEINFOF_DESTINATION","features":[418]},{"name":"MIXER_GETLINEINFOF_LINEID","features":[418]},{"name":"MIXER_GETLINEINFOF_QUERYMASK","features":[418]},{"name":"MIXER_GETLINEINFOF_SOURCE","features":[418]},{"name":"MIXER_GETLINEINFOF_TARGETTYPE","features":[418]},{"name":"MIXER_LONG_NAME_CHARS","features":[418]},{"name":"MIXER_OBJECTF_AUX","features":[418]},{"name":"MIXER_OBJECTF_HANDLE","features":[418]},{"name":"MIXER_OBJECTF_MIDIIN","features":[418]},{"name":"MIXER_OBJECTF_MIDIOUT","features":[418]},{"name":"MIXER_OBJECTF_MIXER","features":[418]},{"name":"MIXER_OBJECTF_WAVEIN","features":[418]},{"name":"MIXER_OBJECTF_WAVEOUT","features":[418]},{"name":"MIXER_SETCONTROLDETAILSF_CUSTOM","features":[418]},{"name":"MIXER_SETCONTROLDETAILSF_QUERYMASK","features":[418]},{"name":"MIXER_SETCONTROLDETAILSF_VALUE","features":[418]},{"name":"MIXER_SHORT_NAME_CHARS","features":[418]},{"name":"MMDeviceEnumerator","features":[418]},{"name":"MM_ACM_FILTERCHOOSE","features":[418]},{"name":"MM_ACM_FORMATCHOOSE","features":[418]},{"name":"MOD_FMSYNTH","features":[418]},{"name":"MOD_MAPPER","features":[418]},{"name":"MOD_MIDIPORT","features":[418]},{"name":"MOD_SQSYNTH","features":[418]},{"name":"MOD_SWSYNTH","features":[418]},{"name":"MOD_SYNTH","features":[418]},{"name":"MOD_WAVETABLE","features":[418]},{"name":"Microphone","features":[418]},{"name":"Muted","features":[418]},{"name":"Out","features":[418]},{"name":"PAudioStateMonitorCallback","features":[418]},{"name":"PCMWAVEFORMAT","features":[418]},{"name":"PKEY_AudioEndpointLogo_IconEffects","features":[418,374]},{"name":"PKEY_AudioEndpointLogo_IconPath","features":[418,374]},{"name":"PKEY_AudioEndpointSettings_LaunchContract","features":[418,374]},{"name":"PKEY_AudioEndpointSettings_MenuText","features":[418,374]},{"name":"PKEY_AudioEndpoint_Association","features":[418,374]},{"name":"PKEY_AudioEndpoint_ControlPanelPageProvider","features":[418,374]},{"name":"PKEY_AudioEndpoint_Default_VolumeInDb","features":[418,374]},{"name":"PKEY_AudioEndpoint_Disable_SysFx","features":[418,374]},{"name":"PKEY_AudioEndpoint_FormFactor","features":[418,374]},{"name":"PKEY_AudioEndpoint_FullRangeSpeakers","features":[418,374]},{"name":"PKEY_AudioEndpoint_GUID","features":[418,374]},{"name":"PKEY_AudioEndpoint_JackSubType","features":[418,374]},{"name":"PKEY_AudioEndpoint_PhysicalSpeakers","features":[418,374]},{"name":"PKEY_AudioEndpoint_Supports_EventDriven_Mode","features":[418,374]},{"name":"PKEY_AudioEngine_DeviceFormat","features":[418,374]},{"name":"PKEY_AudioEngine_OEMFormat","features":[418,374]},{"name":"PROCESS_LOOPBACK_MODE","features":[418]},{"name":"PROCESS_LOOPBACK_MODE_EXCLUDE_TARGET_PROCESS_TREE","features":[418]},{"name":"PROCESS_LOOPBACK_MODE_INCLUDE_TARGET_PROCESS_TREE","features":[418]},{"name":"PartType","features":[418]},{"name":"PlaySoundA","features":[303,418]},{"name":"PlaySoundW","features":[303,418]},{"name":"RemoteNetworkDevice","features":[418]},{"name":"SND_ALIAS","features":[418]},{"name":"SND_ALIAS_ID","features":[418]},{"name":"SND_ALIAS_START","features":[418]},{"name":"SND_APPLICATION","features":[418]},{"name":"SND_ASYNC","features":[418]},{"name":"SND_FILENAME","features":[418]},{"name":"SND_FLAGS","features":[418]},{"name":"SND_LOOP","features":[418]},{"name":"SND_MEMORY","features":[418]},{"name":"SND_NODEFAULT","features":[418]},{"name":"SND_NOSTOP","features":[418]},{"name":"SND_NOWAIT","features":[418]},{"name":"SND_PURGE","features":[418]},{"name":"SND_RESOURCE","features":[418]},{"name":"SND_RING","features":[418]},{"name":"SND_SENTRY","features":[418]},{"name":"SND_SYNC","features":[418]},{"name":"SND_SYSTEM","features":[418]},{"name":"SPATIAL_AUDIO_POSITION","features":[418]},{"name":"SPATIAL_AUDIO_STANDARD_COMMANDS_START","features":[418]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS","features":[418]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_NONE","features":[418]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_OFFLOAD","features":[418]},{"name":"SPDIF","features":[418]},{"name":"SPTLAUDCLNT_E_DESTROYED","features":[418]},{"name":"SPTLAUDCLNT_E_ERRORS_IN_OBJECT_CALLS","features":[418]},{"name":"SPTLAUDCLNT_E_INTERNAL","features":[418]},{"name":"SPTLAUDCLNT_E_INVALID_LICENSE","features":[418]},{"name":"SPTLAUDCLNT_E_METADATA_FORMAT_NOT_SUPPORTED","features":[418]},{"name":"SPTLAUDCLNT_E_NO_MORE_OBJECTS","features":[418]},{"name":"SPTLAUDCLNT_E_OBJECT_ALREADY_ACTIVE","features":[418]},{"name":"SPTLAUDCLNT_E_OUT_OF_ORDER","features":[418]},{"name":"SPTLAUDCLNT_E_PROPERTY_NOT_SUPPORTED","features":[418]},{"name":"SPTLAUDCLNT_E_RESOURCES_INVALIDATED","features":[418]},{"name":"SPTLAUDCLNT_E_STATIC_OBJECT_NOT_AVAILABLE","features":[418]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_AVAILABLE","features":[418]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_STOPPED","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_ATTACH_FAILED_INTERNAL_BUFFER","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_ALREADY_ATTACHED","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_NOT_ATTACHED","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_STILL_ATTACHED","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_ALREADY_WRITTEN","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_NOT_FOUND","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_DETACH_FAILED_INTERNAL_BUFFER","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_FORMAT_MISMATCH","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_FRAMECOUNT_OUT_OF_RANGE","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_FRAMEOFFSET_OUT_OF_RANGE","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_INVALID_ARGS","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_ALREADY_OPEN","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_LOCKED_FOR_WRITING","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_COPY_OVERFLOW","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_MUST_HAVE_COMMANDS","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_MEMORY_BOUNDS","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_METADATA_FORMAT_NOT_FOUND","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_NO_BUFFER_ATTACHED","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMOFFSET_WRITTEN","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_FOUND","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_OPEN","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_WRITTEN","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_COMMANDS","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_ITEMS","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_OBJECT_NOT_INITIALIZED","features":[418]},{"name":"SPTLAUD_MD_CLNT_E_VALUE_BUFFER_INCORRECT_SIZE","features":[418]},{"name":"SpatialAudioClientActivationParams","features":[418]},{"name":"SpatialAudioHrtfActivationParams","features":[303,418]},{"name":"SpatialAudioHrtfActivationParams2","features":[303,418]},{"name":"SpatialAudioHrtfDirectivity","features":[418]},{"name":"SpatialAudioHrtfDirectivityCardioid","features":[418]},{"name":"SpatialAudioHrtfDirectivityCone","features":[418]},{"name":"SpatialAudioHrtfDirectivityType","features":[418]},{"name":"SpatialAudioHrtfDirectivityUnion","features":[418]},{"name":"SpatialAudioHrtfDirectivity_Cardioid","features":[418]},{"name":"SpatialAudioHrtfDirectivity_Cone","features":[418]},{"name":"SpatialAudioHrtfDirectivity_OmniDirectional","features":[418]},{"name":"SpatialAudioHrtfDistanceDecay","features":[418]},{"name":"SpatialAudioHrtfDistanceDecayType","features":[418]},{"name":"SpatialAudioHrtfDistanceDecay_CustomDecay","features":[418]},{"name":"SpatialAudioHrtfDistanceDecay_NaturalDecay","features":[418]},{"name":"SpatialAudioHrtfEnvironmentType","features":[418]},{"name":"SpatialAudioHrtfEnvironment_Average","features":[418]},{"name":"SpatialAudioHrtfEnvironment_Large","features":[418]},{"name":"SpatialAudioHrtfEnvironment_Medium","features":[418]},{"name":"SpatialAudioHrtfEnvironment_Outdoors","features":[418]},{"name":"SpatialAudioHrtfEnvironment_Small","features":[418]},{"name":"SpatialAudioMetadataCopyMode","features":[418]},{"name":"SpatialAudioMetadataCopy_Append","features":[418]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithFirst","features":[418]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithLast","features":[418]},{"name":"SpatialAudioMetadataCopy_Overwrite","features":[418]},{"name":"SpatialAudioMetadataItemsInfo","features":[418]},{"name":"SpatialAudioMetadataWriterOverflowMode","features":[418]},{"name":"SpatialAudioMetadataWriterOverflow_Fail","features":[418]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithLast","features":[418]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithNew","features":[418]},{"name":"SpatialAudioObjectRenderStreamActivationParams","features":[303,418]},{"name":"SpatialAudioObjectRenderStreamActivationParams2","features":[303,418]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams","features":[303,418]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams2","features":[303,418]},{"name":"Speakers","features":[418]},{"name":"Subunit","features":[418]},{"name":"UnknownDigitalPassthrough","features":[418]},{"name":"UnknownFormFactor","features":[418]},{"name":"VIRTUAL_AUDIO_DEVICE_PROCESS_LOOPBACK","features":[418]},{"name":"VOLUMEWAVEFILTER","features":[418]},{"name":"WAVECAPS_LRVOLUME","features":[418]},{"name":"WAVECAPS_PITCH","features":[418]},{"name":"WAVECAPS_PLAYBACKRATE","features":[418]},{"name":"WAVECAPS_SAMPLEACCURATE","features":[418]},{"name":"WAVECAPS_SYNC","features":[418]},{"name":"WAVECAPS_VOLUME","features":[418]},{"name":"WAVEFILTER","features":[418]},{"name":"WAVEFORMAT","features":[418]},{"name":"WAVEFORMATEX","features":[418]},{"name":"WAVEFORMATEXTENSIBLE","features":[418]},{"name":"WAVEHDR","features":[418]},{"name":"WAVEINCAPS2A","features":[418]},{"name":"WAVEINCAPS2W","features":[418]},{"name":"WAVEINCAPSA","features":[418]},{"name":"WAVEINCAPSW","features":[418]},{"name":"WAVEIN_MAPPER_STATUS_DEVICE","features":[418]},{"name":"WAVEIN_MAPPER_STATUS_FORMAT","features":[418]},{"name":"WAVEIN_MAPPER_STATUS_MAPPED","features":[418]},{"name":"WAVEOUTCAPS2A","features":[418]},{"name":"WAVEOUTCAPS2W","features":[418]},{"name":"WAVEOUTCAPSA","features":[418]},{"name":"WAVEOUTCAPSW","features":[418]},{"name":"WAVEOUT_MAPPER_STATUS_DEVICE","features":[418]},{"name":"WAVEOUT_MAPPER_STATUS_FORMAT","features":[418]},{"name":"WAVEOUT_MAPPER_STATUS_MAPPED","features":[418]},{"name":"WAVERR_BADFORMAT","features":[418]},{"name":"WAVERR_LASTERROR","features":[418]},{"name":"WAVERR_STILLPLAYING","features":[418]},{"name":"WAVERR_SYNC","features":[418]},{"name":"WAVERR_UNPREPARED","features":[418]},{"name":"WAVE_ALLOWSYNC","features":[418]},{"name":"WAVE_FORMAT_1M08","features":[418]},{"name":"WAVE_FORMAT_1M16","features":[418]},{"name":"WAVE_FORMAT_1S08","features":[418]},{"name":"WAVE_FORMAT_1S16","features":[418]},{"name":"WAVE_FORMAT_2M08","features":[418]},{"name":"WAVE_FORMAT_2M16","features":[418]},{"name":"WAVE_FORMAT_2S08","features":[418]},{"name":"WAVE_FORMAT_2S16","features":[418]},{"name":"WAVE_FORMAT_44M08","features":[418]},{"name":"WAVE_FORMAT_44M16","features":[418]},{"name":"WAVE_FORMAT_44S08","features":[418]},{"name":"WAVE_FORMAT_44S16","features":[418]},{"name":"WAVE_FORMAT_48M08","features":[418]},{"name":"WAVE_FORMAT_48M16","features":[418]},{"name":"WAVE_FORMAT_48S08","features":[418]},{"name":"WAVE_FORMAT_48S16","features":[418]},{"name":"WAVE_FORMAT_4M08","features":[418]},{"name":"WAVE_FORMAT_4M16","features":[418]},{"name":"WAVE_FORMAT_4S08","features":[418]},{"name":"WAVE_FORMAT_4S16","features":[418]},{"name":"WAVE_FORMAT_96M08","features":[418]},{"name":"WAVE_FORMAT_96M16","features":[418]},{"name":"WAVE_FORMAT_96S08","features":[418]},{"name":"WAVE_FORMAT_96S16","features":[418]},{"name":"WAVE_FORMAT_DIRECT","features":[418]},{"name":"WAVE_FORMAT_DIRECT_QUERY","features":[418]},{"name":"WAVE_FORMAT_PCM","features":[418]},{"name":"WAVE_FORMAT_QUERY","features":[418]},{"name":"WAVE_INVALIDFORMAT","features":[418]},{"name":"WAVE_MAPPED","features":[418]},{"name":"WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE","features":[418]},{"name":"WAVE_MAPPER","features":[418]},{"name":"WHDR_BEGINLOOP","features":[418]},{"name":"WHDR_DONE","features":[418]},{"name":"WHDR_ENDLOOP","features":[418]},{"name":"WHDR_INQUEUE","features":[418]},{"name":"WHDR_PREPARED","features":[418]},{"name":"WIDM_MAPPER_STATUS","features":[418]},{"name":"WODM_MAPPER_STATUS","features":[418]},{"name":"_AUDCLNT_BUFFERFLAGS","features":[418]},{"name":"acmDriverAddA","features":[303,418]},{"name":"acmDriverAddW","features":[303,418]},{"name":"acmDriverClose","features":[418]},{"name":"acmDriverDetailsA","features":[418,365]},{"name":"acmDriverDetailsW","features":[418,365]},{"name":"acmDriverEnum","features":[303,418]},{"name":"acmDriverID","features":[418]},{"name":"acmDriverMessage","features":[303,418]},{"name":"acmDriverOpen","features":[418]},{"name":"acmDriverPriority","features":[418]},{"name":"acmDriverRemove","features":[418]},{"name":"acmFilterChooseA","features":[303,418]},{"name":"acmFilterChooseW","features":[303,418]},{"name":"acmFilterDetailsA","features":[418]},{"name":"acmFilterDetailsW","features":[418]},{"name":"acmFilterEnumA","features":[303,418]},{"name":"acmFilterEnumW","features":[303,418]},{"name":"acmFilterTagDetailsA","features":[418]},{"name":"acmFilterTagDetailsW","features":[418]},{"name":"acmFilterTagEnumA","features":[303,418]},{"name":"acmFilterTagEnumW","features":[303,418]},{"name":"acmFormatChooseA","features":[303,418]},{"name":"acmFormatChooseW","features":[303,418]},{"name":"acmFormatDetailsA","features":[418]},{"name":"acmFormatDetailsW","features":[418]},{"name":"acmFormatEnumA","features":[303,418]},{"name":"acmFormatEnumW","features":[303,418]},{"name":"acmFormatSuggest","features":[418]},{"name":"acmFormatTagDetailsA","features":[418]},{"name":"acmFormatTagDetailsW","features":[418]},{"name":"acmFormatTagEnumA","features":[303,418]},{"name":"acmFormatTagEnumW","features":[303,418]},{"name":"acmGetVersion","features":[418]},{"name":"acmMetrics","features":[418]},{"name":"acmStreamClose","features":[418]},{"name":"acmStreamConvert","features":[418]},{"name":"acmStreamMessage","features":[303,418]},{"name":"acmStreamOpen","features":[418]},{"name":"acmStreamPrepareHeader","features":[418]},{"name":"acmStreamReset","features":[418]},{"name":"acmStreamSize","features":[418]},{"name":"acmStreamUnprepareHeader","features":[418]},{"name":"auxGetDevCapsA","features":[418]},{"name":"auxGetDevCapsW","features":[418]},{"name":"auxGetNumDevs","features":[418]},{"name":"auxGetVolume","features":[418]},{"name":"auxOutMessage","features":[418]},{"name":"auxSetVolume","features":[418]},{"name":"eAll","features":[418]},{"name":"eCapture","features":[418]},{"name":"eCommunications","features":[418]},{"name":"eConsole","features":[418]},{"name":"eMultimedia","features":[418]},{"name":"eRender","features":[418]},{"name":"midiConnect","features":[418]},{"name":"midiDisconnect","features":[418]},{"name":"midiInAddBuffer","features":[418]},{"name":"midiInClose","features":[418]},{"name":"midiInGetDevCapsA","features":[418]},{"name":"midiInGetDevCapsW","features":[418]},{"name":"midiInGetErrorTextA","features":[418]},{"name":"midiInGetErrorTextW","features":[418]},{"name":"midiInGetID","features":[418]},{"name":"midiInGetNumDevs","features":[418]},{"name":"midiInMessage","features":[418]},{"name":"midiInOpen","features":[418]},{"name":"midiInPrepareHeader","features":[418]},{"name":"midiInReset","features":[418]},{"name":"midiInStart","features":[418]},{"name":"midiInStop","features":[418]},{"name":"midiInUnprepareHeader","features":[418]},{"name":"midiOutCacheDrumPatches","features":[418]},{"name":"midiOutCachePatches","features":[418]},{"name":"midiOutClose","features":[418]},{"name":"midiOutGetDevCapsA","features":[418]},{"name":"midiOutGetDevCapsW","features":[418]},{"name":"midiOutGetErrorTextA","features":[418]},{"name":"midiOutGetErrorTextW","features":[418]},{"name":"midiOutGetID","features":[418]},{"name":"midiOutGetNumDevs","features":[418]},{"name":"midiOutGetVolume","features":[418]},{"name":"midiOutLongMsg","features":[418]},{"name":"midiOutMessage","features":[418]},{"name":"midiOutOpen","features":[418]},{"name":"midiOutPrepareHeader","features":[418]},{"name":"midiOutReset","features":[418]},{"name":"midiOutSetVolume","features":[418]},{"name":"midiOutShortMsg","features":[418]},{"name":"midiOutUnprepareHeader","features":[418]},{"name":"midiStreamClose","features":[418]},{"name":"midiStreamOpen","features":[418]},{"name":"midiStreamOut","features":[418]},{"name":"midiStreamPause","features":[418]},{"name":"midiStreamPosition","features":[418]},{"name":"midiStreamProperty","features":[418]},{"name":"midiStreamRestart","features":[418]},{"name":"midiStreamStop","features":[418]},{"name":"mixerClose","features":[418]},{"name":"mixerGetControlDetailsA","features":[303,418]},{"name":"mixerGetControlDetailsW","features":[303,418]},{"name":"mixerGetDevCapsA","features":[418]},{"name":"mixerGetDevCapsW","features":[418]},{"name":"mixerGetID","features":[418]},{"name":"mixerGetLineControlsA","features":[418]},{"name":"mixerGetLineControlsW","features":[418]},{"name":"mixerGetLineInfoA","features":[418]},{"name":"mixerGetLineInfoW","features":[418]},{"name":"mixerGetNumDevs","features":[418]},{"name":"mixerMessage","features":[418]},{"name":"mixerOpen","features":[418]},{"name":"mixerSetControlDetails","features":[303,418]},{"name":"sndPlaySoundA","features":[303,418]},{"name":"sndPlaySoundW","features":[303,418]},{"name":"tACMFORMATDETAILSW","features":[418]},{"name":"waveInAddBuffer","features":[418]},{"name":"waveInClose","features":[418]},{"name":"waveInGetDevCapsA","features":[418]},{"name":"waveInGetDevCapsW","features":[418]},{"name":"waveInGetErrorTextA","features":[418]},{"name":"waveInGetErrorTextW","features":[418]},{"name":"waveInGetID","features":[418]},{"name":"waveInGetNumDevs","features":[418]},{"name":"waveInGetPosition","features":[418]},{"name":"waveInMessage","features":[418]},{"name":"waveInOpen","features":[418]},{"name":"waveInPrepareHeader","features":[418]},{"name":"waveInReset","features":[418]},{"name":"waveInStart","features":[418]},{"name":"waveInStop","features":[418]},{"name":"waveInUnprepareHeader","features":[418]},{"name":"waveOutBreakLoop","features":[418]},{"name":"waveOutClose","features":[418]},{"name":"waveOutGetDevCapsA","features":[418]},{"name":"waveOutGetDevCapsW","features":[418]},{"name":"waveOutGetErrorTextA","features":[418]},{"name":"waveOutGetErrorTextW","features":[418]},{"name":"waveOutGetID","features":[418]},{"name":"waveOutGetNumDevs","features":[418]},{"name":"waveOutGetPitch","features":[418]},{"name":"waveOutGetPlaybackRate","features":[418]},{"name":"waveOutGetPosition","features":[418]},{"name":"waveOutGetVolume","features":[418]},{"name":"waveOutMessage","features":[418]},{"name":"waveOutOpen","features":[418]},{"name":"waveOutPause","features":[418]},{"name":"waveOutPrepareHeader","features":[418]},{"name":"waveOutReset","features":[418]},{"name":"waveOutRestart","features":[418]},{"name":"waveOutSetPitch","features":[418]},{"name":"waveOutSetPlaybackRate","features":[418]},{"name":"waveOutSetVolume","features":[418]},{"name":"waveOutUnprepareHeader","features":[418]},{"name":"waveOutWrite","features":[418]}],"424":[{"name":"APOERR_ALREADY_INITIALIZED","features":[419]},{"name":"APOERR_ALREADY_UNLOCKED","features":[419]},{"name":"APOERR_APO_LOCKED","features":[419]},{"name":"APOERR_BUFFERS_OVERLAP","features":[419]},{"name":"APOERR_FORMAT_NOT_SUPPORTED","features":[419]},{"name":"APOERR_INVALID_APO_CLSID","features":[419]},{"name":"APOERR_INVALID_COEFFCOUNT","features":[419]},{"name":"APOERR_INVALID_COEFFICIENT","features":[419]},{"name":"APOERR_INVALID_CONNECTION_FORMAT","features":[419]},{"name":"APOERR_INVALID_CURVE_PARAM","features":[419]},{"name":"APOERR_INVALID_INPUTID","features":[419]},{"name":"APOERR_INVALID_OUTPUT_MAXFRAMECOUNT","features":[419]},{"name":"APOERR_NOT_INITIALIZED","features":[419]},{"name":"APOERR_NUM_CONNECTIONS_INVALID","features":[419]},{"name":"APOInitBaseStruct","features":[419]},{"name":"APOInitSystemEffects","features":[419,374]},{"name":"APOInitSystemEffects2","features":[303,419,374]},{"name":"APOInitSystemEffects3","features":[303,419,354,374]},{"name":"APO_BUFFER_FLAGS","features":[419]},{"name":"APO_CONNECTION_BUFFER_TYPE","features":[419]},{"name":"APO_CONNECTION_BUFFER_TYPE_ALLOCATED","features":[419]},{"name":"APO_CONNECTION_BUFFER_TYPE_DEPENDANT","features":[419]},{"name":"APO_CONNECTION_BUFFER_TYPE_EXTERNAL","features":[419]},{"name":"APO_CONNECTION_DESCRIPTOR","features":[419]},{"name":"APO_CONNECTION_PROPERTY","features":[419]},{"name":"APO_CONNECTION_PROPERTY_V2","features":[419]},{"name":"APO_FLAG","features":[419]},{"name":"APO_FLAG_BITSPERSAMPLE_MUST_MATCH","features":[419]},{"name":"APO_FLAG_DEFAULT","features":[419]},{"name":"APO_FLAG_FRAMESPERSECOND_MUST_MATCH","features":[419]},{"name":"APO_FLAG_INPLACE","features":[419]},{"name":"APO_FLAG_MIXER","features":[419]},{"name":"APO_FLAG_NONE","features":[419]},{"name":"APO_FLAG_SAMPLESPERFRAME_MUST_MATCH","features":[419]},{"name":"APO_LOG_LEVEL","features":[419]},{"name":"APO_LOG_LEVEL_ALWAYS","features":[419]},{"name":"APO_LOG_LEVEL_CRITICAL","features":[419]},{"name":"APO_LOG_LEVEL_ERROR","features":[419]},{"name":"APO_LOG_LEVEL_INFO","features":[419]},{"name":"APO_LOG_LEVEL_VERBOSE","features":[419]},{"name":"APO_LOG_LEVEL_WARNING","features":[419]},{"name":"APO_NOTIFICATION","features":[303,419,374]},{"name":"APO_NOTIFICATION_DESCRIPTOR","features":[419]},{"name":"APO_NOTIFICATION_TYPE","features":[419]},{"name":"APO_NOTIFICATION_TYPE_DEVICE_ORIENTATION","features":[419]},{"name":"APO_NOTIFICATION_TYPE_ENDPOINT_PROPERTY_CHANGE","features":[419]},{"name":"APO_NOTIFICATION_TYPE_ENDPOINT_VOLUME","features":[419]},{"name":"APO_NOTIFICATION_TYPE_ENDPOINT_VOLUME2","features":[419]},{"name":"APO_NOTIFICATION_TYPE_MICROPHONE_BOOST","features":[419]},{"name":"APO_NOTIFICATION_TYPE_NONE","features":[419]},{"name":"APO_NOTIFICATION_TYPE_SYSTEM_EFFECTS_PROPERTY_CHANGE","features":[419]},{"name":"APO_REG_PROPERTIES","features":[419]},{"name":"AUDIOMEDIATYPE_EQUAL_FORMAT_DATA","features":[419]},{"name":"AUDIOMEDIATYPE_EQUAL_FORMAT_TYPES","features":[419]},{"name":"AUDIOMEDIATYPE_EQUAL_FORMAT_USER_DATA","features":[419]},{"name":"AUDIO_ENDPOINT_PROPERTY_CHANGE_APO_NOTIFICATION_DESCRIPTOR","features":[419]},{"name":"AUDIO_ENDPOINT_PROPERTY_CHANGE_NOTIFICATION","features":[419,374]},{"name":"AUDIO_ENDPOINT_VOLUME_APO_NOTIFICATION_DESCRIPTOR","features":[419]},{"name":"AUDIO_ENDPOINT_VOLUME_CHANGE_NOTIFICATION","features":[303,419]},{"name":"AUDIO_ENDPOINT_VOLUME_CHANGE_NOTIFICATION2","features":[303,419]},{"name":"AUDIO_FLOW_PULL","features":[419]},{"name":"AUDIO_FLOW_PUSH","features":[419]},{"name":"AUDIO_FLOW_TYPE","features":[419]},{"name":"AUDIO_MAX_CHANNELS","features":[419]},{"name":"AUDIO_MAX_FRAMERATE","features":[419]},{"name":"AUDIO_MICROPHONE_BOOST_APO_NOTIFICATION_DESCRIPTOR","features":[419]},{"name":"AUDIO_MICROPHONE_BOOST_NOTIFICATION","features":[303,419]},{"name":"AUDIO_MIN_CHANNELS","features":[419]},{"name":"AUDIO_MIN_FRAMERATE","features":[419]},{"name":"AUDIO_SYSTEMEFFECT","features":[303,419]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTY_CHANGE_APO_NOTIFICATION_DESCRIPTOR","features":[419]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTY_CHANGE_NOTIFICATION","features":[419,374]},{"name":"AUDIO_SYSTEMEFFECT_STATE","features":[419]},{"name":"AUDIO_SYSTEMEFFECT_STATE_OFF","features":[419]},{"name":"AUDIO_SYSTEMEFFECT_STATE_ON","features":[419]},{"name":"AUDIO_VOLUME_NOTIFICATION_DATA2","features":[303,419]},{"name":"AudioFXExtensionParams","features":[303,419,374]},{"name":"BUFFER_INVALID","features":[419]},{"name":"BUFFER_SILENT","features":[419]},{"name":"BUFFER_VALID","features":[419]},{"name":"DEVICE_NOT_ROTATED","features":[419]},{"name":"DEVICE_ORIENTATION_TYPE","features":[419]},{"name":"DEVICE_ROTATED_180_DEGREES_CLOCKWISE","features":[419]},{"name":"DEVICE_ROTATED_270_DEGREES_CLOCKWISE","features":[419]},{"name":"DEVICE_ROTATED_90_DEGREES_CLOCKWISE","features":[419]},{"name":"EAudioConstriction","features":[419]},{"name":"FNAPONOTIFICATIONCALLBACK","features":[419]},{"name":"IApoAcousticEchoCancellation","features":[419]},{"name":"IApoAuxiliaryInputConfiguration","features":[419]},{"name":"IApoAuxiliaryInputRT","features":[419]},{"name":"IAudioDeviceModulesClient","features":[419]},{"name":"IAudioMediaType","features":[419]},{"name":"IAudioProcessingObject","features":[419]},{"name":"IAudioProcessingObjectConfiguration","features":[419]},{"name":"IAudioProcessingObjectLoggingService","features":[419]},{"name":"IAudioProcessingObjectNotifications","features":[419]},{"name":"IAudioProcessingObjectNotifications2","features":[419]},{"name":"IAudioProcessingObjectRT","features":[419]},{"name":"IAudioProcessingObjectRTQueueService","features":[419]},{"name":"IAudioProcessingObjectVBR","features":[419]},{"name":"IAudioSystemEffects","features":[419]},{"name":"IAudioSystemEffects2","features":[419]},{"name":"IAudioSystemEffects3","features":[419]},{"name":"IAudioSystemEffectsCustomFormats","features":[419]},{"name":"PKEY_APO_SWFallback_ProcessingModes","features":[419,374]},{"name":"PKEY_CompositeFX_EndpointEffectClsid","features":[419,374]},{"name":"PKEY_CompositeFX_KeywordDetector_EndpointEffectClsid","features":[419,374]},{"name":"PKEY_CompositeFX_KeywordDetector_ModeEffectClsid","features":[419,374]},{"name":"PKEY_CompositeFX_KeywordDetector_StreamEffectClsid","features":[419,374]},{"name":"PKEY_CompositeFX_ModeEffectClsid","features":[419,374]},{"name":"PKEY_CompositeFX_Offload_ModeEffectClsid","features":[419,374]},{"name":"PKEY_CompositeFX_Offload_StreamEffectClsid","features":[419,374]},{"name":"PKEY_CompositeFX_StreamEffectClsid","features":[419,374]},{"name":"PKEY_EFX_KeywordDetector_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"PKEY_EFX_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"PKEY_FX_ApplyToBluetooth","features":[419,374]},{"name":"PKEY_FX_ApplyToCapture","features":[419,374]},{"name":"PKEY_FX_ApplyToRender","features":[419,374]},{"name":"PKEY_FX_ApplyToUsb","features":[419,374]},{"name":"PKEY_FX_Association","features":[419,374]},{"name":"PKEY_FX_Author","features":[419,374]},{"name":"PKEY_FX_EffectPackSchema_Version","features":[419,374]},{"name":"PKEY_FX_EffectPack_Schema_V1","features":[419]},{"name":"PKEY_FX_EndpointEffectClsid","features":[419,374]},{"name":"PKEY_FX_Enumerator","features":[419,374]},{"name":"PKEY_FX_FriendlyName","features":[419,374]},{"name":"PKEY_FX_KeywordDetector_EndpointEffectClsid","features":[419,374]},{"name":"PKEY_FX_KeywordDetector_ModeEffectClsid","features":[419,374]},{"name":"PKEY_FX_KeywordDetector_StreamEffectClsid","features":[419,374]},{"name":"PKEY_FX_ModeEffectClsid","features":[419,374]},{"name":"PKEY_FX_ObjectId","features":[419,374]},{"name":"PKEY_FX_Offload_ModeEffectClsid","features":[419,374]},{"name":"PKEY_FX_Offload_StreamEffectClsid","features":[419,374]},{"name":"PKEY_FX_PostMixEffectClsid","features":[419,374]},{"name":"PKEY_FX_PreMixEffectClsid","features":[419,374]},{"name":"PKEY_FX_State","features":[419,374]},{"name":"PKEY_FX_StreamEffectClsid","features":[419,374]},{"name":"PKEY_FX_SupportAppLauncher","features":[419,374]},{"name":"PKEY_FX_SupportedFormats","features":[419,374]},{"name":"PKEY_FX_UserInterfaceClsid","features":[419,374]},{"name":"PKEY_FX_VersionMajor","features":[419,374]},{"name":"PKEY_FX_VersionMinor","features":[419,374]},{"name":"PKEY_MFX_KeywordDetector_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"PKEY_MFX_Offload_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"PKEY_MFX_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"PKEY_SFX_KeywordDetector_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"PKEY_SFX_Offload_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"PKEY_SFX_ProcessingModes_Supported_For_Streaming","features":[419,374]},{"name":"SID_AudioProcessingObjectLoggingService","features":[419]},{"name":"SID_AudioProcessingObjectRTQueue","features":[419]},{"name":"UNCOMPRESSEDAUDIOFORMAT","features":[419]},{"name":"eAudioConstriction14_14","features":[419]},{"name":"eAudioConstriction44_16","features":[419]},{"name":"eAudioConstriction48_16","features":[419]},{"name":"eAudioConstrictionMute","features":[419]},{"name":"eAudioConstrictionOff","features":[419]}],"425":[{"name":"CLSID_DirectMusic","features":[420]},{"name":"CLSID_DirectMusicCollection","features":[420]},{"name":"CLSID_DirectMusicSynth","features":[420]},{"name":"CLSID_DirectMusicSynthSink","features":[420]},{"name":"CLSID_DirectSoundPrivate","features":[420]},{"name":"CONNECTION","features":[420]},{"name":"CONNECTIONLIST","features":[420]},{"name":"CONN_DST_ATTENUATION","features":[420]},{"name":"CONN_DST_CENTER","features":[420]},{"name":"CONN_DST_CHORUS","features":[420]},{"name":"CONN_DST_EG1_ATTACKTIME","features":[420]},{"name":"CONN_DST_EG1_DECAYTIME","features":[420]},{"name":"CONN_DST_EG1_DELAYTIME","features":[420]},{"name":"CONN_DST_EG1_HOLDTIME","features":[420]},{"name":"CONN_DST_EG1_RELEASETIME","features":[420]},{"name":"CONN_DST_EG1_SHUTDOWNTIME","features":[420]},{"name":"CONN_DST_EG1_SUSTAINLEVEL","features":[420]},{"name":"CONN_DST_EG2_ATTACKTIME","features":[420]},{"name":"CONN_DST_EG2_DECAYTIME","features":[420]},{"name":"CONN_DST_EG2_DELAYTIME","features":[420]},{"name":"CONN_DST_EG2_HOLDTIME","features":[420]},{"name":"CONN_DST_EG2_RELEASETIME","features":[420]},{"name":"CONN_DST_EG2_SUSTAINLEVEL","features":[420]},{"name":"CONN_DST_FILTER_CUTOFF","features":[420]},{"name":"CONN_DST_FILTER_Q","features":[420]},{"name":"CONN_DST_GAIN","features":[420]},{"name":"CONN_DST_KEYNUMBER","features":[420]},{"name":"CONN_DST_LEFT","features":[420]},{"name":"CONN_DST_LEFTREAR","features":[420]},{"name":"CONN_DST_LFE_CHANNEL","features":[420]},{"name":"CONN_DST_LFO_FREQUENCY","features":[420]},{"name":"CONN_DST_LFO_STARTDELAY","features":[420]},{"name":"CONN_DST_NONE","features":[420]},{"name":"CONN_DST_PAN","features":[420]},{"name":"CONN_DST_PITCH","features":[420]},{"name":"CONN_DST_REVERB","features":[420]},{"name":"CONN_DST_RIGHT","features":[420]},{"name":"CONN_DST_RIGHTREAR","features":[420]},{"name":"CONN_DST_VIB_FREQUENCY","features":[420]},{"name":"CONN_DST_VIB_STARTDELAY","features":[420]},{"name":"CONN_SRC_CC1","features":[420]},{"name":"CONN_SRC_CC10","features":[420]},{"name":"CONN_SRC_CC11","features":[420]},{"name":"CONN_SRC_CC7","features":[420]},{"name":"CONN_SRC_CC91","features":[420]},{"name":"CONN_SRC_CC93","features":[420]},{"name":"CONN_SRC_CHANNELPRESSURE","features":[420]},{"name":"CONN_SRC_EG1","features":[420]},{"name":"CONN_SRC_EG2","features":[420]},{"name":"CONN_SRC_KEYNUMBER","features":[420]},{"name":"CONN_SRC_KEYONVELOCITY","features":[420]},{"name":"CONN_SRC_LFO","features":[420]},{"name":"CONN_SRC_MONOPRESSURE","features":[420]},{"name":"CONN_SRC_NONE","features":[420]},{"name":"CONN_SRC_PITCHWHEEL","features":[420]},{"name":"CONN_SRC_POLYPRESSURE","features":[420]},{"name":"CONN_SRC_VIBRATO","features":[420]},{"name":"CONN_TRN_CONCAVE","features":[420]},{"name":"CONN_TRN_CONVEX","features":[420]},{"name":"CONN_TRN_NONE","features":[420]},{"name":"CONN_TRN_SWITCH","features":[420]},{"name":"DAUD_CHAN10_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN11_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN12_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN13_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN14_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN15_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN16_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN1_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN2_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN3_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN4_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN5_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN6_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN7_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN8_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CHAN9_VOICE_PRIORITY_OFFSET","features":[420]},{"name":"DAUD_CRITICAL_VOICE_PRIORITY","features":[420]},{"name":"DAUD_HIGH_VOICE_PRIORITY","features":[420]},{"name":"DAUD_LOW_VOICE_PRIORITY","features":[420]},{"name":"DAUD_PERSIST_VOICE_PRIORITY","features":[420]},{"name":"DAUD_STANDARD_VOICE_PRIORITY","features":[420]},{"name":"DIRECTSOUNDDEVICE_DATAFLOW","features":[420]},{"name":"DIRECTSOUNDDEVICE_DATAFLOW_CAPTURE","features":[420]},{"name":"DIRECTSOUNDDEVICE_DATAFLOW_RENDER","features":[420]},{"name":"DIRECTSOUNDDEVICE_TYPE","features":[420]},{"name":"DIRECTSOUNDDEVICE_TYPE_EMULATED","features":[420]},{"name":"DIRECTSOUNDDEVICE_TYPE_VXD","features":[420]},{"name":"DIRECTSOUNDDEVICE_TYPE_WDM","features":[420]},{"name":"DLSHEADER","features":[420]},{"name":"DLSID","features":[420]},{"name":"DLSID_GMInHardware","features":[420]},{"name":"DLSID_GSInHardware","features":[420]},{"name":"DLSID_ManufacturersID","features":[420]},{"name":"DLSID_ProductID","features":[420]},{"name":"DLSID_SampleMemorySize","features":[420]},{"name":"DLSID_SamplePlaybackRate","features":[420]},{"name":"DLSID_SupportsDLS1","features":[420]},{"name":"DLSID_SupportsDLS2","features":[420]},{"name":"DLSID_XGInHardware","features":[420]},{"name":"DLSVERSION","features":[420]},{"name":"DLS_CDL_ADD","features":[420]},{"name":"DLS_CDL_AND","features":[420]},{"name":"DLS_CDL_CONST","features":[420]},{"name":"DLS_CDL_DIVIDE","features":[420]},{"name":"DLS_CDL_EQ","features":[420]},{"name":"DLS_CDL_GE","features":[420]},{"name":"DLS_CDL_GT","features":[420]},{"name":"DLS_CDL_LE","features":[420]},{"name":"DLS_CDL_LOGICAL_AND","features":[420]},{"name":"DLS_CDL_LOGICAL_OR","features":[420]},{"name":"DLS_CDL_LT","features":[420]},{"name":"DLS_CDL_MULTIPLY","features":[420]},{"name":"DLS_CDL_NOT","features":[420]},{"name":"DLS_CDL_OR","features":[420]},{"name":"DLS_CDL_QUERY","features":[420]},{"name":"DLS_CDL_QUERYSUPPORTED","features":[420]},{"name":"DLS_CDL_SUBTRACT","features":[420]},{"name":"DLS_CDL_XOR","features":[420]},{"name":"DMUS_ARTICPARAMS","features":[420]},{"name":"DMUS_ARTICULATION","features":[420]},{"name":"DMUS_ARTICULATION2","features":[420]},{"name":"DMUS_BUFFERDESC","features":[420]},{"name":"DMUS_CLOCKF_GLOBAL","features":[420]},{"name":"DMUS_CLOCKINFO7","features":[420]},{"name":"DMUS_CLOCKINFO8","features":[420]},{"name":"DMUS_CLOCKTYPE","features":[420]},{"name":"DMUS_CLOCK_SYSTEM","features":[420]},{"name":"DMUS_CLOCK_WAVE","features":[420]},{"name":"DMUS_COPYRIGHT","features":[420]},{"name":"DMUS_DEFAULT_SIZE_OFFSETTABLE","features":[420]},{"name":"DMUS_DOWNLOADINFO","features":[420]},{"name":"DMUS_DOWNLOADINFO_INSTRUMENT","features":[420]},{"name":"DMUS_DOWNLOADINFO_INSTRUMENT2","features":[420]},{"name":"DMUS_DOWNLOADINFO_ONESHOTWAVE","features":[420]},{"name":"DMUS_DOWNLOADINFO_STREAMINGWAVE","features":[420]},{"name":"DMUS_DOWNLOADINFO_WAVE","features":[420]},{"name":"DMUS_DOWNLOADINFO_WAVEARTICULATION","features":[420]},{"name":"DMUS_EFFECT_CHORUS","features":[420]},{"name":"DMUS_EFFECT_DELAY","features":[420]},{"name":"DMUS_EFFECT_NONE","features":[420]},{"name":"DMUS_EFFECT_REVERB","features":[420]},{"name":"DMUS_EVENTHEADER","features":[420]},{"name":"DMUS_EVENT_STRUCTURED","features":[420]},{"name":"DMUS_EXTENSIONCHUNK","features":[420]},{"name":"DMUS_INSTRUMENT","features":[420]},{"name":"DMUS_INSTRUMENT_GM_INSTRUMENT","features":[420]},{"name":"DMUS_LFOPARAMS","features":[420]},{"name":"DMUS_MAX_DESCRIPTION","features":[420]},{"name":"DMUS_MAX_DRIVER","features":[420]},{"name":"DMUS_MIN_DATA_SIZE","features":[420]},{"name":"DMUS_MSCPARAMS","features":[420]},{"name":"DMUS_NOTERANGE","features":[420]},{"name":"DMUS_OFFSETTABLE","features":[420]},{"name":"DMUS_PC_AUDIOPATH","features":[420]},{"name":"DMUS_PC_DIRECTSOUND","features":[420]},{"name":"DMUS_PC_DLS","features":[420]},{"name":"DMUS_PC_DLS2","features":[420]},{"name":"DMUS_PC_EXTERNAL","features":[420]},{"name":"DMUS_PC_GMINHARDWARE","features":[420]},{"name":"DMUS_PC_GSINHARDWARE","features":[420]},{"name":"DMUS_PC_INPUTCLASS","features":[420]},{"name":"DMUS_PC_MEMORYSIZEFIXED","features":[420]},{"name":"DMUS_PC_OUTPUTCLASS","features":[420]},{"name":"DMUS_PC_SHAREABLE","features":[420]},{"name":"DMUS_PC_SOFTWARESYNTH","features":[420]},{"name":"DMUS_PC_SYSTEMMEMORY","features":[420]},{"name":"DMUS_PC_WAVE","features":[420]},{"name":"DMUS_PC_XGINHARDWARE","features":[420]},{"name":"DMUS_PEGPARAMS","features":[420]},{"name":"DMUS_PORTCAPS","features":[420]},{"name":"DMUS_PORTPARAMS7","features":[303,420]},{"name":"DMUS_PORTPARAMS8","features":[303,420]},{"name":"DMUS_PORTPARAMS_AUDIOCHANNELS","features":[420]},{"name":"DMUS_PORTPARAMS_CHANNELGROUPS","features":[420]},{"name":"DMUS_PORTPARAMS_EFFECTS","features":[420]},{"name":"DMUS_PORTPARAMS_FEATURES","features":[420]},{"name":"DMUS_PORTPARAMS_SAMPLERATE","features":[420]},{"name":"DMUS_PORTPARAMS_SHARE","features":[420]},{"name":"DMUS_PORTPARAMS_VOICES","features":[420]},{"name":"DMUS_PORT_FEATURE_AUDIOPATH","features":[420]},{"name":"DMUS_PORT_FEATURE_STREAMING","features":[420]},{"name":"DMUS_PORT_KERNEL_MODE","features":[420]},{"name":"DMUS_PORT_USER_MODE_SYNTH","features":[420]},{"name":"DMUS_PORT_WINMM_DRIVER","features":[420]},{"name":"DMUS_REGION","features":[420]},{"name":"DMUS_SYNTHSTATS","features":[420]},{"name":"DMUS_SYNTHSTATS8","features":[420]},{"name":"DMUS_SYNTHSTATS_CPU_PER_VOICE","features":[420]},{"name":"DMUS_SYNTHSTATS_FREE_MEMORY","features":[420]},{"name":"DMUS_SYNTHSTATS_LOST_NOTES","features":[420]},{"name":"DMUS_SYNTHSTATS_PEAK_VOLUME","features":[420]},{"name":"DMUS_SYNTHSTATS_SYSTEMMEMORY","features":[420]},{"name":"DMUS_SYNTHSTATS_TOTAL_CPU","features":[420]},{"name":"DMUS_SYNTHSTATS_VOICES","features":[420]},{"name":"DMUS_VEGPARAMS","features":[420]},{"name":"DMUS_VOICE_STATE","features":[303,420]},{"name":"DMUS_VOLUME_MAX","features":[420]},{"name":"DMUS_VOLUME_MIN","features":[420]},{"name":"DMUS_WAVE","features":[420]},{"name":"DMUS_WAVEARTDL","features":[420]},{"name":"DMUS_WAVEDATA","features":[420]},{"name":"DMUS_WAVEDL","features":[420]},{"name":"DMUS_WAVES_REVERB_PARAMS","features":[420]},{"name":"DSBUSID_BACK_CENTER","features":[420]},{"name":"DSBUSID_BACK_LEFT","features":[420]},{"name":"DSBUSID_BACK_RIGHT","features":[420]},{"name":"DSBUSID_CHORUS_SEND","features":[420]},{"name":"DSBUSID_DYNAMIC_0","features":[420]},{"name":"DSBUSID_FIRST_SPKR_LOC","features":[420]},{"name":"DSBUSID_FRONT_CENTER","features":[420]},{"name":"DSBUSID_FRONT_LEFT","features":[420]},{"name":"DSBUSID_FRONT_LEFT_OF_CENTER","features":[420]},{"name":"DSBUSID_FRONT_RIGHT","features":[420]},{"name":"DSBUSID_FRONT_RIGHT_OF_CENTER","features":[420]},{"name":"DSBUSID_LAST_SPKR_LOC","features":[420]},{"name":"DSBUSID_LEFT","features":[420]},{"name":"DSBUSID_LOW_FREQUENCY","features":[420]},{"name":"DSBUSID_NULL","features":[420]},{"name":"DSBUSID_REVERB_SEND","features":[420]},{"name":"DSBUSID_RIGHT","features":[420]},{"name":"DSBUSID_SIDE_LEFT","features":[420]},{"name":"DSBUSID_SIDE_RIGHT","features":[420]},{"name":"DSBUSID_TOP_BACK_CENTER","features":[420]},{"name":"DSBUSID_TOP_BACK_LEFT","features":[420]},{"name":"DSBUSID_TOP_BACK_RIGHT","features":[420]},{"name":"DSBUSID_TOP_CENTER","features":[420]},{"name":"DSBUSID_TOP_FRONT_CENTER","features":[420]},{"name":"DSBUSID_TOP_FRONT_LEFT","features":[420]},{"name":"DSBUSID_TOP_FRONT_RIGHT","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1_DATA","features":[303,420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A_DATA","features":[303,420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W_DATA","features":[303,420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A_DATA","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W","features":[420]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W_DATA","features":[420]},{"name":"DSPROPSETID_DirectSoundDevice","features":[420]},{"name":"DVAudInfo","features":[420]},{"name":"DV_AUDIOMODE","features":[420]},{"name":"DV_AUDIOQU","features":[420]},{"name":"DV_AUDIOSMP","features":[420]},{"name":"DV_CAP_AUD12Bits","features":[420]},{"name":"DV_CAP_AUD16Bits","features":[420]},{"name":"DV_DVSD_NTSC_FRAMESIZE","features":[420]},{"name":"DV_DVSD_PAL_FRAMESIZE","features":[420]},{"name":"DV_HD","features":[420]},{"name":"DV_NTSC","features":[420]},{"name":"DV_NTSCPAL","features":[420]},{"name":"DV_PAL","features":[420]},{"name":"DV_SD","features":[420]},{"name":"DV_SL","features":[420]},{"name":"DV_SMCHN","features":[420]},{"name":"DV_STYPE","features":[420]},{"name":"F_INSTRUMENT_DRUMS","features":[420]},{"name":"F_RGN_OPTION_SELFNONEXCLUSIVE","features":[420]},{"name":"F_WAVELINK_MULTICHANNEL","features":[420]},{"name":"F_WAVELINK_PHASE_MASTER","features":[420]},{"name":"F_WSMP_NO_COMPRESSION","features":[420]},{"name":"F_WSMP_NO_TRUNCATION","features":[420]},{"name":"GUID_DMUS_PROP_DLS1","features":[420]},{"name":"GUID_DMUS_PROP_DLS2","features":[420]},{"name":"GUID_DMUS_PROP_Effects","features":[420]},{"name":"GUID_DMUS_PROP_GM_Hardware","features":[420]},{"name":"GUID_DMUS_PROP_GS_Capable","features":[420]},{"name":"GUID_DMUS_PROP_GS_Hardware","features":[420]},{"name":"GUID_DMUS_PROP_INSTRUMENT2","features":[420]},{"name":"GUID_DMUS_PROP_LegacyCaps","features":[420]},{"name":"GUID_DMUS_PROP_MemorySize","features":[420]},{"name":"GUID_DMUS_PROP_SampleMemorySize","features":[420]},{"name":"GUID_DMUS_PROP_SamplePlaybackRate","features":[420]},{"name":"GUID_DMUS_PROP_SetSynthSink","features":[420]},{"name":"GUID_DMUS_PROP_SinkUsesDSound","features":[420]},{"name":"GUID_DMUS_PROP_SynthSink_DSOUND","features":[420]},{"name":"GUID_DMUS_PROP_SynthSink_WAVE","features":[420]},{"name":"GUID_DMUS_PROP_Volume","features":[420]},{"name":"GUID_DMUS_PROP_WavesReverb","features":[420]},{"name":"GUID_DMUS_PROP_WriteLatency","features":[420]},{"name":"GUID_DMUS_PROP_WritePeriod","features":[420]},{"name":"GUID_DMUS_PROP_XG_Capable","features":[420]},{"name":"GUID_DMUS_PROP_XG_Hardware","features":[420]},{"name":"IDirectMusic","features":[420]},{"name":"IDirectMusic8","features":[420]},{"name":"IDirectMusicBuffer","features":[420]},{"name":"IDirectMusicCollection","features":[420]},{"name":"IDirectMusicDownload","features":[420]},{"name":"IDirectMusicDownloadedInstrument","features":[420]},{"name":"IDirectMusicInstrument","features":[420]},{"name":"IDirectMusicPort","features":[420]},{"name":"IDirectMusicPortDownload","features":[420]},{"name":"IDirectMusicSynth","features":[420]},{"name":"IDirectMusicSynth8","features":[420]},{"name":"IDirectMusicSynthSink","features":[420]},{"name":"IDirectMusicThru","features":[420]},{"name":"INSTHEADER","features":[420]},{"name":"LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK1","features":[303,420]},{"name":"LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKA","features":[303,420]},{"name":"LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKW","features":[303,420]},{"name":"MDEVICECAPSEX","features":[420]},{"name":"MIDILOCALE","features":[420]},{"name":"MIDIOPENDESC","features":[420,417]},{"name":"POOLCUE","features":[420]},{"name":"POOLTABLE","features":[420]},{"name":"POOL_CUE_NULL","features":[420]},{"name":"REFRESH_F_LASTBUFFER","features":[420]},{"name":"REGSTR_PATH_SOFTWARESYNTHS","features":[420]},{"name":"RGNHEADER","features":[420]},{"name":"RGNRANGE","features":[420]},{"name":"SIZE_DVINFO","features":[420]},{"name":"WAVELINK","features":[420]},{"name":"WAVELINK_CHANNEL_LEFT","features":[420]},{"name":"WAVELINK_CHANNEL_RIGHT","features":[420]},{"name":"WLOOP","features":[420]},{"name":"WLOOP_TYPE_FORWARD","features":[420]},{"name":"WLOOP_TYPE_RELEASE","features":[420]},{"name":"WSMPL","features":[420]}],"426":[{"name":"CLSID_DirectSound","features":[421]},{"name":"CLSID_DirectSound8","features":[421]},{"name":"CLSID_DirectSoundCapture","features":[421]},{"name":"CLSID_DirectSoundCapture8","features":[421]},{"name":"CLSID_DirectSoundFullDuplex","features":[421]},{"name":"DIRECTSOUND_VERSION","features":[421]},{"name":"DS3DALG_HRTF_FULL","features":[421]},{"name":"DS3DALG_HRTF_LIGHT","features":[421]},{"name":"DS3DALG_NO_VIRTUALIZATION","features":[421]},{"name":"DS3DBUFFER","features":[396,421]},{"name":"DS3DLISTENER","features":[396,421]},{"name":"DS3DMODE_DISABLE","features":[421]},{"name":"DS3DMODE_HEADRELATIVE","features":[421]},{"name":"DS3DMODE_NORMAL","features":[421]},{"name":"DS3D_DEFAULTCONEANGLE","features":[421]},{"name":"DS3D_DEFAULTCONEOUTSIDEVOLUME","features":[421]},{"name":"DS3D_DEFAULTDISTANCEFACTOR","features":[421]},{"name":"DS3D_DEFAULTDOPPLERFACTOR","features":[421]},{"name":"DS3D_DEFAULTMAXDISTANCE","features":[421]},{"name":"DS3D_DEFAULTMINDISTANCE","features":[421]},{"name":"DS3D_DEFAULTROLLOFFFACTOR","features":[421]},{"name":"DS3D_DEFERRED","features":[421]},{"name":"DS3D_IMMEDIATE","features":[421]},{"name":"DS3D_MAXCONEANGLE","features":[421]},{"name":"DS3D_MAXDOPPLERFACTOR","features":[421]},{"name":"DS3D_MAXROLLOFFFACTOR","features":[421]},{"name":"DS3D_MINCONEANGLE","features":[421]},{"name":"DS3D_MINDOPPLERFACTOR","features":[421]},{"name":"DS3D_MINROLLOFFFACTOR","features":[421]},{"name":"DSBCAPS","features":[421]},{"name":"DSBCAPS_CTRL3D","features":[421]},{"name":"DSBCAPS_CTRLFREQUENCY","features":[421]},{"name":"DSBCAPS_CTRLFX","features":[421]},{"name":"DSBCAPS_CTRLPAN","features":[421]},{"name":"DSBCAPS_CTRLPOSITIONNOTIFY","features":[421]},{"name":"DSBCAPS_CTRLVOLUME","features":[421]},{"name":"DSBCAPS_GETCURRENTPOSITION2","features":[421]},{"name":"DSBCAPS_GLOBALFOCUS","features":[421]},{"name":"DSBCAPS_LOCDEFER","features":[421]},{"name":"DSBCAPS_LOCHARDWARE","features":[421]},{"name":"DSBCAPS_LOCSOFTWARE","features":[421]},{"name":"DSBCAPS_MUTE3DATMAXDISTANCE","features":[421]},{"name":"DSBCAPS_PRIMARYBUFFER","features":[421]},{"name":"DSBCAPS_STATIC","features":[421]},{"name":"DSBCAPS_STICKYFOCUS","features":[421]},{"name":"DSBCAPS_TRUEPLAYPOSITION","features":[421]},{"name":"DSBFREQUENCY_MAX","features":[421]},{"name":"DSBFREQUENCY_MIN","features":[421]},{"name":"DSBFREQUENCY_ORIGINAL","features":[421]},{"name":"DSBLOCK_ENTIREBUFFER","features":[421]},{"name":"DSBLOCK_FROMWRITECURSOR","features":[421]},{"name":"DSBNOTIFICATIONS_MAX","features":[421]},{"name":"DSBPAN_CENTER","features":[421]},{"name":"DSBPAN_LEFT","features":[421]},{"name":"DSBPAN_RIGHT","features":[421]},{"name":"DSBPLAY_LOCHARDWARE","features":[421]},{"name":"DSBPLAY_LOCSOFTWARE","features":[421]},{"name":"DSBPLAY_LOOPING","features":[421]},{"name":"DSBPLAY_TERMINATEBY_DISTANCE","features":[421]},{"name":"DSBPLAY_TERMINATEBY_PRIORITY","features":[421]},{"name":"DSBPLAY_TERMINATEBY_TIME","features":[421]},{"name":"DSBPN_OFFSETSTOP","features":[421]},{"name":"DSBPOSITIONNOTIFY","features":[303,421]},{"name":"DSBSIZE_FX_MIN","features":[421]},{"name":"DSBSIZE_MAX","features":[421]},{"name":"DSBSIZE_MIN","features":[421]},{"name":"DSBSTATUS_BUFFERLOST","features":[421]},{"name":"DSBSTATUS_LOCHARDWARE","features":[421]},{"name":"DSBSTATUS_LOCSOFTWARE","features":[421]},{"name":"DSBSTATUS_LOOPING","features":[421]},{"name":"DSBSTATUS_PLAYING","features":[421]},{"name":"DSBSTATUS_TERMINATED","features":[421]},{"name":"DSBUFFERDESC","features":[421]},{"name":"DSBUFFERDESC1","features":[421]},{"name":"DSBVOLUME_MAX","features":[421]},{"name":"DSBVOLUME_MIN","features":[421]},{"name":"DSCAPS","features":[421]},{"name":"DSCAPS_CERTIFIED","features":[421]},{"name":"DSCAPS_CONTINUOUSRATE","features":[421]},{"name":"DSCAPS_EMULDRIVER","features":[421]},{"name":"DSCAPS_PRIMARY16BIT","features":[421]},{"name":"DSCAPS_PRIMARY8BIT","features":[421]},{"name":"DSCAPS_PRIMARYMONO","features":[421]},{"name":"DSCAPS_PRIMARYSTEREO","features":[421]},{"name":"DSCAPS_SECONDARY16BIT","features":[421]},{"name":"DSCAPS_SECONDARY8BIT","features":[421]},{"name":"DSCAPS_SECONDARYMONO","features":[421]},{"name":"DSCAPS_SECONDARYSTEREO","features":[421]},{"name":"DSCBCAPS","features":[421]},{"name":"DSCBCAPS_CTRLFX","features":[421]},{"name":"DSCBCAPS_WAVEMAPPED","features":[421]},{"name":"DSCBLOCK_ENTIREBUFFER","features":[421]},{"name":"DSCBSTART_LOOPING","features":[421]},{"name":"DSCBSTATUS_CAPTURING","features":[421]},{"name":"DSCBSTATUS_LOOPING","features":[421]},{"name":"DSCBUFFERDESC","features":[421]},{"name":"DSCBUFFERDESC1","features":[421]},{"name":"DSCCAPS","features":[421]},{"name":"DSCCAPS_CERTIFIED","features":[421]},{"name":"DSCCAPS_EMULDRIVER","features":[421]},{"name":"DSCCAPS_MULTIPLECAPTURE","features":[421]},{"name":"DSCEFFECTDESC","features":[421]},{"name":"DSCFXAec","features":[303,421]},{"name":"DSCFXNoiseSuppress","features":[303,421]},{"name":"DSCFXR_LOCHARDWARE","features":[421]},{"name":"DSCFXR_LOCSOFTWARE","features":[421]},{"name":"DSCFX_AEC_MODE_FULL_DUPLEX","features":[421]},{"name":"DSCFX_AEC_MODE_HALF_DUPLEX","features":[421]},{"name":"DSCFX_AEC_MODE_PASS_THROUGH","features":[421]},{"name":"DSCFX_AEC_STATUS_CURRENTLY_CONVERGED","features":[421]},{"name":"DSCFX_AEC_STATUS_HISTORY_CONTINUOUSLY_CONVERGED","features":[421]},{"name":"DSCFX_AEC_STATUS_HISTORY_PREVIOUSLY_DIVERGED","features":[421]},{"name":"DSCFX_AEC_STATUS_HISTORY_UNINITIALIZED","features":[421]},{"name":"DSCFX_LOCHARDWARE","features":[421]},{"name":"DSCFX_LOCSOFTWARE","features":[421]},{"name":"DSDEVID_DefaultCapture","features":[421]},{"name":"DSDEVID_DefaultPlayback","features":[421]},{"name":"DSDEVID_DefaultVoiceCapture","features":[421]},{"name":"DSDEVID_DefaultVoicePlayback","features":[421]},{"name":"DSEFFECTDESC","features":[421]},{"name":"DSFXCHORUS_DELAY_MAX","features":[421]},{"name":"DSFXCHORUS_DELAY_MIN","features":[421]},{"name":"DSFXCHORUS_DEPTH_MAX","features":[421]},{"name":"DSFXCHORUS_DEPTH_MIN","features":[421]},{"name":"DSFXCHORUS_FEEDBACK_MAX","features":[421]},{"name":"DSFXCHORUS_FEEDBACK_MIN","features":[421]},{"name":"DSFXCHORUS_FREQUENCY_MAX","features":[421]},{"name":"DSFXCHORUS_FREQUENCY_MIN","features":[421]},{"name":"DSFXCHORUS_PHASE_180","features":[421]},{"name":"DSFXCHORUS_PHASE_90","features":[421]},{"name":"DSFXCHORUS_PHASE_MAX","features":[421]},{"name":"DSFXCHORUS_PHASE_MIN","features":[421]},{"name":"DSFXCHORUS_PHASE_NEG_180","features":[421]},{"name":"DSFXCHORUS_PHASE_NEG_90","features":[421]},{"name":"DSFXCHORUS_PHASE_ZERO","features":[421]},{"name":"DSFXCHORUS_WAVE_SIN","features":[421]},{"name":"DSFXCHORUS_WAVE_TRIANGLE","features":[421]},{"name":"DSFXCHORUS_WETDRYMIX_MAX","features":[421]},{"name":"DSFXCHORUS_WETDRYMIX_MIN","features":[421]},{"name":"DSFXCOMPRESSOR_ATTACK_MAX","features":[421]},{"name":"DSFXCOMPRESSOR_ATTACK_MIN","features":[421]},{"name":"DSFXCOMPRESSOR_GAIN_MAX","features":[421]},{"name":"DSFXCOMPRESSOR_GAIN_MIN","features":[421]},{"name":"DSFXCOMPRESSOR_PREDELAY_MAX","features":[421]},{"name":"DSFXCOMPRESSOR_PREDELAY_MIN","features":[421]},{"name":"DSFXCOMPRESSOR_RATIO_MAX","features":[421]},{"name":"DSFXCOMPRESSOR_RATIO_MIN","features":[421]},{"name":"DSFXCOMPRESSOR_RELEASE_MAX","features":[421]},{"name":"DSFXCOMPRESSOR_RELEASE_MIN","features":[421]},{"name":"DSFXCOMPRESSOR_THRESHOLD_MAX","features":[421]},{"name":"DSFXCOMPRESSOR_THRESHOLD_MIN","features":[421]},{"name":"DSFXChorus","features":[421]},{"name":"DSFXCompressor","features":[421]},{"name":"DSFXDISTORTION_EDGE_MAX","features":[421]},{"name":"DSFXDISTORTION_EDGE_MIN","features":[421]},{"name":"DSFXDISTORTION_GAIN_MAX","features":[421]},{"name":"DSFXDISTORTION_GAIN_MIN","features":[421]},{"name":"DSFXDISTORTION_POSTEQBANDWIDTH_MAX","features":[421]},{"name":"DSFXDISTORTION_POSTEQBANDWIDTH_MIN","features":[421]},{"name":"DSFXDISTORTION_POSTEQCENTERFREQUENCY_MAX","features":[421]},{"name":"DSFXDISTORTION_POSTEQCENTERFREQUENCY_MIN","features":[421]},{"name":"DSFXDISTORTION_PRELOWPASSCUTOFF_MAX","features":[421]},{"name":"DSFXDISTORTION_PRELOWPASSCUTOFF_MIN","features":[421]},{"name":"DSFXDistortion","features":[421]},{"name":"DSFXECHO_FEEDBACK_MAX","features":[421]},{"name":"DSFXECHO_FEEDBACK_MIN","features":[421]},{"name":"DSFXECHO_LEFTDELAY_MAX","features":[421]},{"name":"DSFXECHO_LEFTDELAY_MIN","features":[421]},{"name":"DSFXECHO_PANDELAY_MAX","features":[421]},{"name":"DSFXECHO_PANDELAY_MIN","features":[421]},{"name":"DSFXECHO_RIGHTDELAY_MAX","features":[421]},{"name":"DSFXECHO_RIGHTDELAY_MIN","features":[421]},{"name":"DSFXECHO_WETDRYMIX_MAX","features":[421]},{"name":"DSFXECHO_WETDRYMIX_MIN","features":[421]},{"name":"DSFXEcho","features":[421]},{"name":"DSFXFLANGER_DELAY_MAX","features":[421]},{"name":"DSFXFLANGER_DELAY_MIN","features":[421]},{"name":"DSFXFLANGER_DEPTH_MAX","features":[421]},{"name":"DSFXFLANGER_DEPTH_MIN","features":[421]},{"name":"DSFXFLANGER_FEEDBACK_MAX","features":[421]},{"name":"DSFXFLANGER_FEEDBACK_MIN","features":[421]},{"name":"DSFXFLANGER_FREQUENCY_MAX","features":[421]},{"name":"DSFXFLANGER_FREQUENCY_MIN","features":[421]},{"name":"DSFXFLANGER_PHASE_180","features":[421]},{"name":"DSFXFLANGER_PHASE_90","features":[421]},{"name":"DSFXFLANGER_PHASE_MAX","features":[421]},{"name":"DSFXFLANGER_PHASE_MIN","features":[421]},{"name":"DSFXFLANGER_PHASE_NEG_180","features":[421]},{"name":"DSFXFLANGER_PHASE_NEG_90","features":[421]},{"name":"DSFXFLANGER_PHASE_ZERO","features":[421]},{"name":"DSFXFLANGER_WAVE_SIN","features":[421]},{"name":"DSFXFLANGER_WAVE_TRIANGLE","features":[421]},{"name":"DSFXFLANGER_WETDRYMIX_MAX","features":[421]},{"name":"DSFXFLANGER_WETDRYMIX_MIN","features":[421]},{"name":"DSFXFlanger","features":[421]},{"name":"DSFXGARGLE_RATEHZ_MAX","features":[421]},{"name":"DSFXGARGLE_RATEHZ_MIN","features":[421]},{"name":"DSFXGARGLE_WAVE_SQUARE","features":[421]},{"name":"DSFXGARGLE_WAVE_TRIANGLE","features":[421]},{"name":"DSFXGargle","features":[421]},{"name":"DSFXI3DL2Reverb","features":[421]},{"name":"DSFXPARAMEQ_BANDWIDTH_MAX","features":[421]},{"name":"DSFXPARAMEQ_BANDWIDTH_MIN","features":[421]},{"name":"DSFXPARAMEQ_CENTER_MAX","features":[421]},{"name":"DSFXPARAMEQ_CENTER_MIN","features":[421]},{"name":"DSFXPARAMEQ_GAIN_MAX","features":[421]},{"name":"DSFXPARAMEQ_GAIN_MIN","features":[421]},{"name":"DSFXParamEq","features":[421]},{"name":"DSFXR_FAILED","features":[421]},{"name":"DSFXR_LOCHARDWARE","features":[421]},{"name":"DSFXR_LOCSOFTWARE","features":[421]},{"name":"DSFXR_PRESENT","features":[421]},{"name":"DSFXR_SENDLOOP","features":[421]},{"name":"DSFXR_UNALLOCATED","features":[421]},{"name":"DSFXR_UNKNOWN","features":[421]},{"name":"DSFXWavesReverb","features":[421]},{"name":"DSFX_I3DL2REVERB_DECAYHFRATIO_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_DECAYHFRATIO_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_DECAYHFRATIO_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_DECAYTIME_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_DECAYTIME_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_DECAYTIME_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_DENSITY_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_DENSITY_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_DENSITY_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_DIFFUSION_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_DIFFUSION_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_DIFFUSION_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_HFREFERENCE_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_HFREFERENCE_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_HFREFERENCE_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_QUALITY_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_QUALITY_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_QUALITY_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_REFLECTIONSDELAY_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_REFLECTIONSDELAY_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_REFLECTIONSDELAY_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_REFLECTIONS_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_REFLECTIONS_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_REFLECTIONS_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_REVERBDELAY_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_REVERBDELAY_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_REVERBDELAY_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_REVERB_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_REVERB_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_REVERB_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOMHF_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOMHF_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOMHF_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MIN","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOM_DEFAULT","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOM_MAX","features":[421]},{"name":"DSFX_I3DL2REVERB_ROOM_MIN","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_ALLEY","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_ARENA","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_AUDITORIUM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_BATHROOM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CAVE","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CITY","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CONCERTHALL","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_DEFAULT","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_FOREST","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_GENERIC","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_HALLWAY","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_HANGAR","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEHALL","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEROOM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_LIVINGROOM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_MOUNTAINS","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PADDEDCELL","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PARKINGLOT","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PLAIN","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PLATE","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_QUARRY","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_ROOM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_SEWERPIPE","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_SMALLROOM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_STONEROOM","features":[421]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_UNDERWATER","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_BRICKWALL","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_CURTAIN","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_DOUBLEWINDOW","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_SINGLEWINDOW","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_STONEWALL","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_THICKDOOR","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_THINDOOR","features":[421]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_WOODWALL","features":[421]},{"name":"DSFX_LOCHARDWARE","features":[421]},{"name":"DSFX_LOCSOFTWARE","features":[421]},{"name":"DSFX_WAVESREVERB_HIGHFREQRTRATIO_DEFAULT","features":[421]},{"name":"DSFX_WAVESREVERB_HIGHFREQRTRATIO_MAX","features":[421]},{"name":"DSFX_WAVESREVERB_HIGHFREQRTRATIO_MIN","features":[421]},{"name":"DSFX_WAVESREVERB_INGAIN_DEFAULT","features":[421]},{"name":"DSFX_WAVESREVERB_INGAIN_MAX","features":[421]},{"name":"DSFX_WAVESREVERB_INGAIN_MIN","features":[421]},{"name":"DSFX_WAVESREVERB_REVERBMIX_DEFAULT","features":[421]},{"name":"DSFX_WAVESREVERB_REVERBMIX_MAX","features":[421]},{"name":"DSFX_WAVESREVERB_REVERBMIX_MIN","features":[421]},{"name":"DSFX_WAVESREVERB_REVERBTIME_DEFAULT","features":[421]},{"name":"DSFX_WAVESREVERB_REVERBTIME_MAX","features":[421]},{"name":"DSFX_WAVESREVERB_REVERBTIME_MIN","features":[421]},{"name":"DSSCL_EXCLUSIVE","features":[421]},{"name":"DSSCL_NORMAL","features":[421]},{"name":"DSSCL_PRIORITY","features":[421]},{"name":"DSSCL_WRITEPRIMARY","features":[421]},{"name":"DSSPEAKER_5POINT1","features":[421]},{"name":"DSSPEAKER_5POINT1_BACK","features":[421]},{"name":"DSSPEAKER_5POINT1_SURROUND","features":[421]},{"name":"DSSPEAKER_7POINT1","features":[421]},{"name":"DSSPEAKER_7POINT1_SURROUND","features":[421]},{"name":"DSSPEAKER_7POINT1_WIDE","features":[421]},{"name":"DSSPEAKER_DIRECTOUT","features":[421]},{"name":"DSSPEAKER_GEOMETRY_MAX","features":[421]},{"name":"DSSPEAKER_GEOMETRY_MIN","features":[421]},{"name":"DSSPEAKER_GEOMETRY_NARROW","features":[421]},{"name":"DSSPEAKER_GEOMETRY_WIDE","features":[421]},{"name":"DSSPEAKER_HEADPHONE","features":[421]},{"name":"DSSPEAKER_MONO","features":[421]},{"name":"DSSPEAKER_QUAD","features":[421]},{"name":"DSSPEAKER_STEREO","features":[421]},{"name":"DSSPEAKER_SURROUND","features":[421]},{"name":"DS_CERTIFIED","features":[421]},{"name":"DS_NO_VIRTUALIZATION","features":[421]},{"name":"DS_UNCERTIFIED","features":[421]},{"name":"DirectSoundCaptureCreate","features":[421]},{"name":"DirectSoundCaptureCreate8","features":[421]},{"name":"DirectSoundCaptureEnumerateA","features":[303,421]},{"name":"DirectSoundCaptureEnumerateW","features":[303,421]},{"name":"DirectSoundCreate","features":[421]},{"name":"DirectSoundCreate8","features":[421]},{"name":"DirectSoundEnumerateA","features":[303,421]},{"name":"DirectSoundEnumerateW","features":[303,421]},{"name":"DirectSoundFullDuplexCreate","features":[303,421]},{"name":"GUID_All_Objects","features":[421]},{"name":"GUID_DSCFX_CLASS_AEC","features":[421]},{"name":"GUID_DSCFX_CLASS_NS","features":[421]},{"name":"GUID_DSCFX_MS_AEC","features":[421]},{"name":"GUID_DSCFX_MS_NS","features":[421]},{"name":"GUID_DSCFX_SYSTEM_AEC","features":[421]},{"name":"GUID_DSCFX_SYSTEM_NS","features":[421]},{"name":"GUID_DSFX_STANDARD_CHORUS","features":[421]},{"name":"GUID_DSFX_STANDARD_COMPRESSOR","features":[421]},{"name":"GUID_DSFX_STANDARD_DISTORTION","features":[421]},{"name":"GUID_DSFX_STANDARD_ECHO","features":[421]},{"name":"GUID_DSFX_STANDARD_FLANGER","features":[421]},{"name":"GUID_DSFX_STANDARD_GARGLE","features":[421]},{"name":"GUID_DSFX_STANDARD_I3DL2REVERB","features":[421]},{"name":"GUID_DSFX_STANDARD_PARAMEQ","features":[421]},{"name":"GUID_DSFX_WAVES_REVERB","features":[421]},{"name":"GetDeviceID","features":[421]},{"name":"IDirectSound","features":[421]},{"name":"IDirectSound3DBuffer","features":[421]},{"name":"IDirectSound3DListener","features":[421]},{"name":"IDirectSound8","features":[421]},{"name":"IDirectSoundBuffer","features":[421]},{"name":"IDirectSoundBuffer8","features":[421]},{"name":"IDirectSoundCapture","features":[421]},{"name":"IDirectSoundCaptureBuffer","features":[421]},{"name":"IDirectSoundCaptureBuffer8","features":[421]},{"name":"IDirectSoundCaptureFXAec","features":[421]},{"name":"IDirectSoundCaptureFXNoiseSuppress","features":[421]},{"name":"IDirectSoundFXChorus","features":[421]},{"name":"IDirectSoundFXCompressor","features":[421]},{"name":"IDirectSoundFXDistortion","features":[421]},{"name":"IDirectSoundFXEcho","features":[421]},{"name":"IDirectSoundFXFlanger","features":[421]},{"name":"IDirectSoundFXGargle","features":[421]},{"name":"IDirectSoundFXI3DL2Reverb","features":[421]},{"name":"IDirectSoundFXParamEq","features":[421]},{"name":"IDirectSoundFXWavesReverb","features":[421]},{"name":"IDirectSoundFullDuplex","features":[421]},{"name":"IDirectSoundNotify","features":[421]},{"name":"KSPROPERTY_SUPPORT_GET","features":[421]},{"name":"KSPROPERTY_SUPPORT_SET","features":[421]},{"name":"LPDSENUMCALLBACKA","features":[303,421]},{"name":"LPDSENUMCALLBACKW","features":[303,421]},{"name":"_FACDS","features":[421]}],"427":[{"name":"AUDIO_ENDPOINT_SHARED_CREATE_PARAMS","features":[422]},{"name":"DEVINTERFACE_AUDIOENDPOINTPLUGIN","features":[422]},{"name":"DEVPKEY_AudioEndpointPlugin2_FactoryCLSID","features":[422,374]},{"name":"DEVPKEY_AudioEndpointPlugin_DataFlow","features":[422,374]},{"name":"DEVPKEY_AudioEndpointPlugin_FactoryCLSID","features":[422,374]},{"name":"DEVPKEY_AudioEndpointPlugin_PnPInterface","features":[422,374]},{"name":"EndpointConnectorType","features":[422]},{"name":"IAudioEndpointFormatControl","features":[422]},{"name":"IAudioEndpointLastBufferControl","features":[422]},{"name":"IAudioEndpointOffloadStreamMeter","features":[422]},{"name":"IAudioEndpointOffloadStreamMute","features":[422]},{"name":"IAudioEndpointOffloadStreamVolume","features":[422]},{"name":"IAudioEndpointVolume","features":[422]},{"name":"IAudioEndpointVolumeCallback","features":[422]},{"name":"IAudioEndpointVolumeEx","features":[422]},{"name":"IAudioLfxControl","features":[422]},{"name":"IAudioMeterInformation","features":[422]},{"name":"IHardwareAudioEngineBase","features":[422]},{"name":"eConnectorCount","features":[422]},{"name":"eHostProcessConnector","features":[422]},{"name":"eKeywordDetectorConnector","features":[422]},{"name":"eLoopbackConnector","features":[422]},{"name":"eOffloadConnector","features":[422]}],"428":[{"name":"AudioReverb","features":[423]},{"name":"AudioVolumeMeter","features":[423]},{"name":"BandPassFilter","features":[423]},{"name":"Cardioid","features":[423]},{"name":"Cone","features":[423]},{"name":"CreateAudioReverb","features":[423]},{"name":"CreateAudioVolumeMeter","features":[423]},{"name":"CreateFX","features":[423]},{"name":"CreateHrtfApo","features":[423]},{"name":"CustomDecay","features":[423]},{"name":"FACILITY_XAPO","features":[423]},{"name":"FACILITY_XAUDIO2","features":[423]},{"name":"FXECHO_DEFAULT_DELAY","features":[423]},{"name":"FXECHO_DEFAULT_FEEDBACK","features":[423]},{"name":"FXECHO_DEFAULT_WETDRYMIX","features":[423]},{"name":"FXECHO_INITDATA","features":[423]},{"name":"FXECHO_MAX_DELAY","features":[423]},{"name":"FXECHO_MAX_FEEDBACK","features":[423]},{"name":"FXECHO_MAX_WETDRYMIX","features":[423]},{"name":"FXECHO_MIN_DELAY","features":[423]},{"name":"FXECHO_MIN_FEEDBACK","features":[423]},{"name":"FXECHO_MIN_WETDRYMIX","features":[423]},{"name":"FXECHO_PARAMETERS","features":[423]},{"name":"FXEQ","features":[423]},{"name":"FXEQ_DEFAULT_BANDWIDTH","features":[423]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_0","features":[423]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_1","features":[423]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_2","features":[423]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_3","features":[423]},{"name":"FXEQ_DEFAULT_GAIN","features":[423]},{"name":"FXEQ_MAX_BANDWIDTH","features":[423]},{"name":"FXEQ_MAX_FRAMERATE","features":[423]},{"name":"FXEQ_MAX_FREQUENCY_CENTER","features":[423]},{"name":"FXEQ_MAX_GAIN","features":[423]},{"name":"FXEQ_MIN_BANDWIDTH","features":[423]},{"name":"FXEQ_MIN_FRAMERATE","features":[423]},{"name":"FXEQ_MIN_FREQUENCY_CENTER","features":[423]},{"name":"FXEQ_MIN_GAIN","features":[423]},{"name":"FXEQ_PARAMETERS","features":[423]},{"name":"FXEcho","features":[423]},{"name":"FXLOUDNESS_DEFAULT_MOMENTARY_MS","features":[423]},{"name":"FXLOUDNESS_DEFAULT_SHORTTERM_MS","features":[423]},{"name":"FXMASTERINGLIMITER_DEFAULT_LOUDNESS","features":[423]},{"name":"FXMASTERINGLIMITER_DEFAULT_RELEASE","features":[423]},{"name":"FXMASTERINGLIMITER_MAX_LOUDNESS","features":[423]},{"name":"FXMASTERINGLIMITER_MAX_RELEASE","features":[423]},{"name":"FXMASTERINGLIMITER_MIN_LOUDNESS","features":[423]},{"name":"FXMASTERINGLIMITER_MIN_RELEASE","features":[423]},{"name":"FXMASTERINGLIMITER_PARAMETERS","features":[423]},{"name":"FXMasteringLimiter","features":[423]},{"name":"FXREVERB_DEFAULT_DIFFUSION","features":[423]},{"name":"FXREVERB_DEFAULT_ROOMSIZE","features":[423]},{"name":"FXREVERB_MAX_DIFFUSION","features":[423]},{"name":"FXREVERB_MAX_ROOMSIZE","features":[423]},{"name":"FXREVERB_MIN_DIFFUSION","features":[423]},{"name":"FXREVERB_MIN_ROOMSIZE","features":[423]},{"name":"FXREVERB_PARAMETERS","features":[423]},{"name":"FXReverb","features":[423]},{"name":"HRTF_DEFAULT_UNITY_GAIN_DISTANCE","features":[423]},{"name":"HRTF_MAX_GAIN_LIMIT","features":[423]},{"name":"HRTF_MIN_GAIN_LIMIT","features":[423]},{"name":"HRTF_MIN_UNITY_GAIN_DISTANCE","features":[423]},{"name":"HighPassFilter","features":[423]},{"name":"HighPassOnePoleFilter","features":[423]},{"name":"HrtfApoInit","features":[423]},{"name":"HrtfDirectivity","features":[423]},{"name":"HrtfDirectivityCardioid","features":[423]},{"name":"HrtfDirectivityCone","features":[423]},{"name":"HrtfDirectivityType","features":[423]},{"name":"HrtfDistanceDecay","features":[423]},{"name":"HrtfDistanceDecayType","features":[423]},{"name":"HrtfEnvironment","features":[423]},{"name":"HrtfOrientation","features":[423]},{"name":"HrtfPosition","features":[423]},{"name":"IXAPO","features":[423]},{"name":"IXAPOHrtfParameters","features":[423]},{"name":"IXAPOParameters","features":[423]},{"name":"IXAudio2","features":[423]},{"name":"IXAudio2EngineCallback","features":[423]},{"name":"IXAudio2Extension","features":[423]},{"name":"IXAudio2MasteringVoice","features":[423]},{"name":"IXAudio2SourceVoice","features":[423]},{"name":"IXAudio2SubmixVoice","features":[423]},{"name":"IXAudio2Voice","features":[423]},{"name":"IXAudio2VoiceCallback","features":[423]},{"name":"Large","features":[423]},{"name":"LowPassFilter","features":[423]},{"name":"LowPassOnePoleFilter","features":[423]},{"name":"Medium","features":[423]},{"name":"NaturalDecay","features":[423]},{"name":"NotchFilter","features":[423]},{"name":"OmniDirectional","features":[423]},{"name":"Outdoors","features":[423]},{"name":"Processor1","features":[423]},{"name":"Processor10","features":[423]},{"name":"Processor11","features":[423]},{"name":"Processor12","features":[423]},{"name":"Processor13","features":[423]},{"name":"Processor14","features":[423]},{"name":"Processor15","features":[423]},{"name":"Processor16","features":[423]},{"name":"Processor17","features":[423]},{"name":"Processor18","features":[423]},{"name":"Processor19","features":[423]},{"name":"Processor2","features":[423]},{"name":"Processor20","features":[423]},{"name":"Processor21","features":[423]},{"name":"Processor22","features":[423]},{"name":"Processor23","features":[423]},{"name":"Processor24","features":[423]},{"name":"Processor25","features":[423]},{"name":"Processor26","features":[423]},{"name":"Processor27","features":[423]},{"name":"Processor28","features":[423]},{"name":"Processor29","features":[423]},{"name":"Processor3","features":[423]},{"name":"Processor30","features":[423]},{"name":"Processor31","features":[423]},{"name":"Processor32","features":[423]},{"name":"Processor4","features":[423]},{"name":"Processor5","features":[423]},{"name":"Processor6","features":[423]},{"name":"Processor7","features":[423]},{"name":"Processor8","features":[423]},{"name":"Processor9","features":[423]},{"name":"SPEAKER_MONO","features":[423]},{"name":"Small","features":[423]},{"name":"X3DAUDIO_2PI","features":[423]},{"name":"X3DAUDIO_CALCULATE_DELAY","features":[423]},{"name":"X3DAUDIO_CALCULATE_DOPPLER","features":[423]},{"name":"X3DAUDIO_CALCULATE_EMITTER_ANGLE","features":[423]},{"name":"X3DAUDIO_CALCULATE_LPF_DIRECT","features":[423]},{"name":"X3DAUDIO_CALCULATE_LPF_REVERB","features":[423]},{"name":"X3DAUDIO_CALCULATE_MATRIX","features":[423]},{"name":"X3DAUDIO_CALCULATE_REDIRECT_TO_LFE","features":[423]},{"name":"X3DAUDIO_CALCULATE_REVERB","features":[423]},{"name":"X3DAUDIO_CALCULATE_ZEROCENTER","features":[423]},{"name":"X3DAUDIO_HANDLE_BYTESIZE","features":[423]},{"name":"X3DAUDIO_PI","features":[423]},{"name":"X3DAUDIO_SPEED_OF_SOUND","features":[423]},{"name":"XAPO_BUFFER_FLAGS","features":[423]},{"name":"XAPO_BUFFER_SILENT","features":[423]},{"name":"XAPO_BUFFER_VALID","features":[423]},{"name":"XAPO_E_FORMAT_UNSUPPORTED","features":[423]},{"name":"XAPO_FLAG_BITSPERSAMPLE_MUST_MATCH","features":[423]},{"name":"XAPO_FLAG_BUFFERCOUNT_MUST_MATCH","features":[423]},{"name":"XAPO_FLAG_CHANNELS_MUST_MATCH","features":[423]},{"name":"XAPO_FLAG_FRAMERATE_MUST_MATCH","features":[423]},{"name":"XAPO_FLAG_INPLACE_REQUIRED","features":[423]},{"name":"XAPO_FLAG_INPLACE_SUPPORTED","features":[423]},{"name":"XAPO_LOCKFORPROCESS_PARAMETERS","features":[423]},{"name":"XAPO_MAX_CHANNELS","features":[423]},{"name":"XAPO_MAX_FRAMERATE","features":[423]},{"name":"XAPO_MIN_CHANNELS","features":[423]},{"name":"XAPO_MIN_FRAMERATE","features":[423]},{"name":"XAPO_PROCESS_BUFFER_PARAMETERS","features":[423]},{"name":"XAPO_REGISTRATION_PROPERTIES","features":[423]},{"name":"XAPO_REGISTRATION_STRING_LENGTH","features":[423]},{"name":"XAUDIO2D_DLL","features":[423]},{"name":"XAUDIO2D_DLL_A","features":[423]},{"name":"XAUDIO2D_DLL_W","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_7POINT1_REAR_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_7POINT1_SIDE_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_DECAY_TIME","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_DENSITY","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_DISABLE_LATE_FIELD","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_EARLY_DIFFUSION","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_HIGH_EQ_CUTOFF","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_HIGH_EQ_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_LATE_DIFFUSION","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_LOW_EQ_CUTOFF","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_LOW_EQ_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_POSITION","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_POSITION_MATRIX","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REAR_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REFLECTIONS_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REFLECTIONS_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REVERB_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REVERB_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_FREQ","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_HF","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_MAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_SIZE","features":[423]},{"name":"XAUDIO2FX_REVERB_DEFAULT_WET_DRY_MIX","features":[423]},{"name":"XAUDIO2FX_REVERB_I3DL2_PARAMETERS","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_7POINT1_REAR_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_7POINT1_SIDE_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_DENSITY","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_DIFFUSION","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_FRAMERATE","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_HIGH_EQ_CUTOFF","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_HIGH_EQ_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_LOW_EQ_CUTOFF","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_LOW_EQ_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_POSITION","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_REAR_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_REFLECTIONS_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_REFLECTIONS_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_REVERB_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_REVERB_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_FILTER_FREQ","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_FILTER_HF","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_FILTER_MAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_SIZE","features":[423]},{"name":"XAUDIO2FX_REVERB_MAX_WET_DRY_MIX","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_7POINT1_REAR_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_7POINT1_SIDE_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_DECAY_TIME","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_DENSITY","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_DIFFUSION","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_FRAMERATE","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_HIGH_EQ_CUTOFF","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_HIGH_EQ_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_LOW_EQ_CUTOFF","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_LOW_EQ_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_POSITION","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_REAR_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_REFLECTIONS_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_REFLECTIONS_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_REVERB_DELAY","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_REVERB_GAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_FILTER_FREQ","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_FILTER_HF","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_FILTER_MAIN","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_SIZE","features":[423]},{"name":"XAUDIO2FX_REVERB_MIN_WET_DRY_MIX","features":[423]},{"name":"XAUDIO2FX_REVERB_PARAMETERS","features":[303,423]},{"name":"XAUDIO2FX_VOLUMEMETER_LEVELS","features":[423]},{"name":"XAUDIO2_1024_QUANTUM","features":[423]},{"name":"XAUDIO2_ANY_PROCESSOR","features":[423]},{"name":"XAUDIO2_BUFFER","features":[423]},{"name":"XAUDIO2_BUFFER_WMA","features":[423]},{"name":"XAUDIO2_COMMIT_ALL","features":[423]},{"name":"XAUDIO2_COMMIT_NOW","features":[423]},{"name":"XAUDIO2_DEBUG_CONFIGURATION","features":[303,423]},{"name":"XAUDIO2_DEBUG_ENGINE","features":[423]},{"name":"XAUDIO2_DEFAULT_CHANNELS","features":[423]},{"name":"XAUDIO2_DEFAULT_FILTER_FREQUENCY","features":[423]},{"name":"XAUDIO2_DEFAULT_FILTER_ONEOVERQ","features":[423]},{"name":"XAUDIO2_DEFAULT_FREQ_RATIO","features":[423]},{"name":"XAUDIO2_DEFAULT_PROCESSOR","features":[423]},{"name":"XAUDIO2_DEFAULT_SAMPLERATE","features":[423]},{"name":"XAUDIO2_DLL","features":[423]},{"name":"XAUDIO2_DLL_A","features":[423]},{"name":"XAUDIO2_DLL_W","features":[423]},{"name":"XAUDIO2_EFFECT_CHAIN","features":[303,423]},{"name":"XAUDIO2_EFFECT_DESCRIPTOR","features":[303,423]},{"name":"XAUDIO2_END_OF_STREAM","features":[423]},{"name":"XAUDIO2_E_DEVICE_INVALIDATED","features":[423]},{"name":"XAUDIO2_E_INVALID_CALL","features":[423]},{"name":"XAUDIO2_E_XAPO_CREATION_FAILED","features":[423]},{"name":"XAUDIO2_E_XMA_DECODER_ERROR","features":[423]},{"name":"XAUDIO2_FILTER_PARAMETERS","features":[423]},{"name":"XAUDIO2_FILTER_TYPE","features":[423]},{"name":"XAUDIO2_LOG_API_CALLS","features":[423]},{"name":"XAUDIO2_LOG_DETAIL","features":[423]},{"name":"XAUDIO2_LOG_ERRORS","features":[423]},{"name":"XAUDIO2_LOG_FUNC_CALLS","features":[423]},{"name":"XAUDIO2_LOG_INFO","features":[423]},{"name":"XAUDIO2_LOG_LOCKS","features":[423]},{"name":"XAUDIO2_LOG_MEMORY","features":[423]},{"name":"XAUDIO2_LOG_STREAMING","features":[423]},{"name":"XAUDIO2_LOG_TIMING","features":[423]},{"name":"XAUDIO2_LOG_WARNINGS","features":[423]},{"name":"XAUDIO2_LOOP_INFINITE","features":[423]},{"name":"XAUDIO2_MAX_AUDIO_CHANNELS","features":[423]},{"name":"XAUDIO2_MAX_BUFFERS_SYSTEM","features":[423]},{"name":"XAUDIO2_MAX_BUFFER_BYTES","features":[423]},{"name":"XAUDIO2_MAX_FILTER_FREQUENCY","features":[423]},{"name":"XAUDIO2_MAX_FILTER_ONEOVERQ","features":[423]},{"name":"XAUDIO2_MAX_FREQ_RATIO","features":[423]},{"name":"XAUDIO2_MAX_INSTANCES","features":[423]},{"name":"XAUDIO2_MAX_LOOP_COUNT","features":[423]},{"name":"XAUDIO2_MAX_QUEUED_BUFFERS","features":[423]},{"name":"XAUDIO2_MAX_RATIO_TIMES_RATE_XMA_MONO","features":[423]},{"name":"XAUDIO2_MAX_RATIO_TIMES_RATE_XMA_MULTICHANNEL","features":[423]},{"name":"XAUDIO2_MAX_SAMPLE_RATE","features":[423]},{"name":"XAUDIO2_MAX_VOLUME_LEVEL","features":[423]},{"name":"XAUDIO2_MIN_SAMPLE_RATE","features":[423]},{"name":"XAUDIO2_NO_LOOP_REGION","features":[423]},{"name":"XAUDIO2_NO_VIRTUAL_AUDIO_CLIENT","features":[423]},{"name":"XAUDIO2_PERFORMANCE_DATA","features":[423]},{"name":"XAUDIO2_PLAY_TAILS","features":[423]},{"name":"XAUDIO2_QUANTUM_DENOMINATOR","features":[423]},{"name":"XAUDIO2_QUANTUM_NUMERATOR","features":[423]},{"name":"XAUDIO2_SEND_DESCRIPTOR","features":[423]},{"name":"XAUDIO2_SEND_USEFILTER","features":[423]},{"name":"XAUDIO2_STOP_ENGINE_WHEN_IDLE","features":[423]},{"name":"XAUDIO2_USE_DEFAULT_PROCESSOR","features":[423]},{"name":"XAUDIO2_VOICE_DETAILS","features":[423]},{"name":"XAUDIO2_VOICE_NOPITCH","features":[423]},{"name":"XAUDIO2_VOICE_NOSAMPLESPLAYED","features":[423]},{"name":"XAUDIO2_VOICE_NOSRC","features":[423]},{"name":"XAUDIO2_VOICE_SENDS","features":[423]},{"name":"XAUDIO2_VOICE_STATE","features":[423]},{"name":"XAUDIO2_VOICE_USEFILTER","features":[423]},{"name":"XAudio2CreateWithVersionInfo","features":[423]}],"429":[{"name":"ALLOW_OUTOFBAND_NOTIFICATION","features":[424]},{"name":"DO_NOT_VIRTUALIZE_STORAGES_AS_DEVICES","features":[424]},{"name":"ENUM_MODE_METADATA_VIEWS","features":[424]},{"name":"ENUM_MODE_RAW","features":[424]},{"name":"ENUM_MODE_USE_DEVICE_PREF","features":[424]},{"name":"EVENT_WMDM_CONTENT_TRANSFER","features":[424]},{"name":"IComponentAuthenticate","features":[424]},{"name":"IMDSPDevice","features":[424]},{"name":"IMDSPDevice2","features":[424]},{"name":"IMDSPDevice3","features":[424]},{"name":"IMDSPDeviceControl","features":[424]},{"name":"IMDSPDirectTransfer","features":[424]},{"name":"IMDSPEnumDevice","features":[424]},{"name":"IMDSPEnumStorage","features":[424]},{"name":"IMDSPObject","features":[424]},{"name":"IMDSPObject2","features":[424]},{"name":"IMDSPObjectInfo","features":[424]},{"name":"IMDSPRevoked","features":[424]},{"name":"IMDSPStorage","features":[424]},{"name":"IMDSPStorage2","features":[424]},{"name":"IMDSPStorage3","features":[424]},{"name":"IMDSPStorage4","features":[424]},{"name":"IMDSPStorageGlobals","features":[424]},{"name":"IMDServiceProvider","features":[424]},{"name":"IMDServiceProvider2","features":[424]},{"name":"IMDServiceProvider3","features":[424]},{"name":"IOCTL_MTP_CUSTOM_COMMAND","features":[424]},{"name":"ISCPSecureAuthenticate","features":[424]},{"name":"ISCPSecureAuthenticate2","features":[424]},{"name":"ISCPSecureExchange","features":[424]},{"name":"ISCPSecureExchange2","features":[424]},{"name":"ISCPSecureExchange3","features":[424]},{"name":"ISCPSecureQuery","features":[424]},{"name":"ISCPSecureQuery2","features":[424]},{"name":"ISCPSecureQuery3","features":[424]},{"name":"ISCPSession","features":[424]},{"name":"IWMDMDevice","features":[424]},{"name":"IWMDMDevice2","features":[424]},{"name":"IWMDMDevice3","features":[424]},{"name":"IWMDMDeviceControl","features":[424]},{"name":"IWMDMDeviceSession","features":[424]},{"name":"IWMDMEnumDevice","features":[424]},{"name":"IWMDMEnumStorage","features":[424]},{"name":"IWMDMLogger","features":[424]},{"name":"IWMDMMetaData","features":[424]},{"name":"IWMDMNotification","features":[424]},{"name":"IWMDMObjectInfo","features":[424]},{"name":"IWMDMOperation","features":[424]},{"name":"IWMDMOperation2","features":[424]},{"name":"IWMDMOperation3","features":[424]},{"name":"IWMDMProgress","features":[424]},{"name":"IWMDMProgress2","features":[424]},{"name":"IWMDMProgress3","features":[424]},{"name":"IWMDMRevoked","features":[424]},{"name":"IWMDMStorage","features":[424]},{"name":"IWMDMStorage2","features":[424]},{"name":"IWMDMStorage3","features":[424]},{"name":"IWMDMStorage4","features":[424]},{"name":"IWMDMStorageControl","features":[424]},{"name":"IWMDMStorageControl2","features":[424]},{"name":"IWMDMStorageControl3","features":[424]},{"name":"IWMDMStorageGlobals","features":[424]},{"name":"IWMDeviceManager","features":[424]},{"name":"IWMDeviceManager2","features":[424]},{"name":"IWMDeviceManager3","features":[424]},{"name":"MACINFO","features":[303,424]},{"name":"MDSP_READ","features":[424]},{"name":"MDSP_SEEK_BOF","features":[424]},{"name":"MDSP_SEEK_CUR","features":[424]},{"name":"MDSP_SEEK_EOF","features":[424]},{"name":"MDSP_WRITE","features":[424]},{"name":"MTP_COMMAND_DATA_IN","features":[424]},{"name":"MTP_COMMAND_DATA_OUT","features":[424]},{"name":"MTP_COMMAND_MAX_PARAMS","features":[424]},{"name":"MTP_NEXTPHASE_NO_DATA","features":[424]},{"name":"MTP_NEXTPHASE_READ_DATA","features":[424]},{"name":"MTP_NEXTPHASE_WRITE_DATA","features":[424]},{"name":"MTP_RESPONSE_MAX_PARAMS","features":[424]},{"name":"MTP_RESPONSE_OK","features":[424]},{"name":"MediaDevMgr","features":[424]},{"name":"MediaDevMgrClassFactory","features":[424]},{"name":"OPAQUECOMMAND","features":[424]},{"name":"RSA_KEY_LEN","features":[424]},{"name":"SAC_CERT_V1","features":[424]},{"name":"SAC_CERT_X509","features":[424]},{"name":"SAC_MAC_LEN","features":[424]},{"name":"SAC_PROTOCOL_V1","features":[424]},{"name":"SAC_PROTOCOL_WMDM","features":[424]},{"name":"SAC_SESSION_KEYLEN","features":[424]},{"name":"SCP_EVENTID_ACQSECURECLOCK","features":[424]},{"name":"SCP_EVENTID_DRMINFO","features":[424]},{"name":"SCP_EVENTID_NEEDTOINDIV","features":[424]},{"name":"SCP_PARAMID_DRMVERSION","features":[424]},{"name":"WMDMDATETIME","features":[424]},{"name":"WMDMDetermineMaxPropStringLen","features":[424]},{"name":"WMDMDevice","features":[424]},{"name":"WMDMDeviceEnum","features":[424]},{"name":"WMDMID","features":[424]},{"name":"WMDMID_LENGTH","features":[424]},{"name":"WMDMLogger","features":[424]},{"name":"WMDMMessage","features":[424]},{"name":"WMDMMetadataView","features":[424]},{"name":"WMDMRIGHTS","features":[424]},{"name":"WMDMStorage","features":[424]},{"name":"WMDMStorageEnum","features":[424]},{"name":"WMDMStorageGlobal","features":[424]},{"name":"WMDM_APP_REVOKED","features":[424]},{"name":"WMDM_CONTENT_FILE","features":[424]},{"name":"WMDM_CONTENT_FOLDER","features":[424]},{"name":"WMDM_CONTENT_OPERATIONINTERFACE","features":[424]},{"name":"WMDM_DEVICECAP_CANPAUSE","features":[424]},{"name":"WMDM_DEVICECAP_CANPLAY","features":[424]},{"name":"WMDM_DEVICECAP_CANRECORD","features":[424]},{"name":"WMDM_DEVICECAP_CANRESUME","features":[424]},{"name":"WMDM_DEVICECAP_CANSEEK","features":[424]},{"name":"WMDM_DEVICECAP_CANSTOP","features":[424]},{"name":"WMDM_DEVICECAP_CANSTREAMPLAY","features":[424]},{"name":"WMDM_DEVICECAP_CANSTREAMRECORD","features":[424]},{"name":"WMDM_DEVICECAP_HASSECURECLOCK","features":[424]},{"name":"WMDM_DEVICE_PROTOCOL_MSC","features":[424]},{"name":"WMDM_DEVICE_PROTOCOL_MTP","features":[424]},{"name":"WMDM_DEVICE_PROTOCOL_RAPI","features":[424]},{"name":"WMDM_DEVICE_TYPE_DECODE","features":[424]},{"name":"WMDM_DEVICE_TYPE_ENCODE","features":[424]},{"name":"WMDM_DEVICE_TYPE_FILELISTRESYNC","features":[424]},{"name":"WMDM_DEVICE_TYPE_NONREENTRANT","features":[424]},{"name":"WMDM_DEVICE_TYPE_NONSDMI","features":[424]},{"name":"WMDM_DEVICE_TYPE_PLAYBACK","features":[424]},{"name":"WMDM_DEVICE_TYPE_RECORD","features":[424]},{"name":"WMDM_DEVICE_TYPE_SDMI","features":[424]},{"name":"WMDM_DEVICE_TYPE_STORAGE","features":[424]},{"name":"WMDM_DEVICE_TYPE_VIEW_PREF_METADATAVIEW","features":[424]},{"name":"WMDM_DEVICE_TYPE_VIRTUAL","features":[424]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_ANY","features":[424]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_ENUM","features":[424]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_FORM","features":[424]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_RANGE","features":[424]},{"name":"WMDM_E_BUFFERTOOSMALL","features":[424]},{"name":"WMDM_E_BUSY","features":[424]},{"name":"WMDM_E_CALL_OUT_OF_SEQUENCE","features":[424]},{"name":"WMDM_E_CANTOPEN_PMSN_SERVICE_PIPE","features":[424]},{"name":"WMDM_E_INCORRECT_APPSEC","features":[424]},{"name":"WMDM_E_INCORRECT_RIGHTS","features":[424]},{"name":"WMDM_E_INTERFACEDEAD","features":[424]},{"name":"WMDM_E_INVALIDTYPE","features":[424]},{"name":"WMDM_E_LICENSE_EXPIRED","features":[424]},{"name":"WMDM_E_LICENSE_NOTEXIST","features":[424]},{"name":"WMDM_E_MAC_CHECK_FAILED","features":[424]},{"name":"WMDM_E_MOREDATA","features":[424]},{"name":"WMDM_E_NORIGHTS","features":[424]},{"name":"WMDM_E_NOTCERTIFIED","features":[424]},{"name":"WMDM_E_NOTSUPPORTED","features":[424]},{"name":"WMDM_E_PROCESSFAILED","features":[424]},{"name":"WMDM_E_REVOKED","features":[424]},{"name":"WMDM_E_SDMI_NOMORECOPIES","features":[424]},{"name":"WMDM_E_SDMI_TRIGGER","features":[424]},{"name":"WMDM_E_TOO_MANY_SESSIONS","features":[424]},{"name":"WMDM_E_USER_CANCELLED","features":[424]},{"name":"WMDM_FILE_ATTR_AUDIO","features":[424]},{"name":"WMDM_FILE_ATTR_AUDIOBOOK","features":[424]},{"name":"WMDM_FILE_ATTR_CANDELETE","features":[424]},{"name":"WMDM_FILE_ATTR_CANMOVE","features":[424]},{"name":"WMDM_FILE_ATTR_CANPLAY","features":[424]},{"name":"WMDM_FILE_ATTR_CANREAD","features":[424]},{"name":"WMDM_FILE_ATTR_CANRENAME","features":[424]},{"name":"WMDM_FILE_ATTR_DATA","features":[424]},{"name":"WMDM_FILE_ATTR_FILE","features":[424]},{"name":"WMDM_FILE_ATTR_FOLDER","features":[424]},{"name":"WMDM_FILE_ATTR_HIDDEN","features":[424]},{"name":"WMDM_FILE_ATTR_LINK","features":[424]},{"name":"WMDM_FILE_ATTR_MUSIC","features":[424]},{"name":"WMDM_FILE_ATTR_READONLY","features":[424]},{"name":"WMDM_FILE_ATTR_SYSTEM","features":[424]},{"name":"WMDM_FILE_ATTR_VIDEO","features":[424]},{"name":"WMDM_FILE_CREATE_OVERWRITE","features":[424]},{"name":"WMDM_FIND_SCOPE","features":[424]},{"name":"WMDM_FIND_SCOPE_GLOBAL","features":[424]},{"name":"WMDM_FIND_SCOPE_IMMEDIATE_CHILDREN","features":[424]},{"name":"WMDM_FORMATCODE","features":[424]},{"name":"WMDM_FORMATCODE_3G2","features":[424]},{"name":"WMDM_FORMATCODE_3G2A","features":[424]},{"name":"WMDM_FORMATCODE_3GP","features":[424]},{"name":"WMDM_FORMATCODE_3GPA","features":[424]},{"name":"WMDM_FORMATCODE_AAC","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTAUDIOALBUM","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTAUDIOVIDEOPLAYLIST","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTCALENDARITEM","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTCHAPTEREDPRODUCTION","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTCONTACT","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTCONTACTGROUP","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTDOCUMENT","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTIMAGEALBUM","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTMESSAGE","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTMESSAGEFOLDER","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTMULTIMEDIAALBUM","features":[424]},{"name":"WMDM_FORMATCODE_ABSTRACTVIDEOALBUM","features":[424]},{"name":"WMDM_FORMATCODE_AIFF","features":[424]},{"name":"WMDM_FORMATCODE_ALLIMAGES","features":[424]},{"name":"WMDM_FORMATCODE_AMR","features":[424]},{"name":"WMDM_FORMATCODE_ASF","features":[424]},{"name":"WMDM_FORMATCODE_ASSOCIATION","features":[424]},{"name":"WMDM_FORMATCODE_ASXPLAYLIST","features":[424]},{"name":"WMDM_FORMATCODE_ATSCTS","features":[424]},{"name":"WMDM_FORMATCODE_AUDIBLE","features":[424]},{"name":"WMDM_FORMATCODE_AVCHD","features":[424]},{"name":"WMDM_FORMATCODE_AVI","features":[424]},{"name":"WMDM_FORMATCODE_DPOF","features":[424]},{"name":"WMDM_FORMATCODE_DVBTS","features":[424]},{"name":"WMDM_FORMATCODE_EXECUTABLE","features":[424]},{"name":"WMDM_FORMATCODE_FLAC","features":[424]},{"name":"WMDM_FORMATCODE_HTML","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_BMP","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_CIFF","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_EXIF","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_FLASHPIX","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_GIF","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_JFIF","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_JP2","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_JPX","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_PCD","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_PICT","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_PNG","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_RESERVED_FIRST","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_RESERVED_LAST","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_TIFF","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_TIFFEP","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_TIFFIT","features":[424]},{"name":"WMDM_FORMATCODE_IMAGE_UNDEFINED","features":[424]},{"name":"WMDM_FORMATCODE_JPEGXR","features":[424]},{"name":"WMDM_FORMATCODE_M3UPLAYLIST","features":[424]},{"name":"WMDM_FORMATCODE_M4A","features":[424]},{"name":"WMDM_FORMATCODE_MEDIA_CAST","features":[424]},{"name":"WMDM_FORMATCODE_MHTCOMPILEDHTMLDOCUMENT","features":[424]},{"name":"WMDM_FORMATCODE_MICROSOFTEXCELSPREADSHEET","features":[424]},{"name":"WMDM_FORMATCODE_MICROSOFTPOWERPOINTDOCUMENT","features":[424]},{"name":"WMDM_FORMATCODE_MICROSOFTWORDDOCUMENT","features":[424]},{"name":"WMDM_FORMATCODE_MK3D","features":[424]},{"name":"WMDM_FORMATCODE_MKA","features":[424]},{"name":"WMDM_FORMATCODE_MKV","features":[424]},{"name":"WMDM_FORMATCODE_MP2","features":[424]},{"name":"WMDM_FORMATCODE_MP3","features":[424]},{"name":"WMDM_FORMATCODE_MP4","features":[424]},{"name":"WMDM_FORMATCODE_MPEG","features":[424]},{"name":"WMDM_FORMATCODE_MPLPLAYLIST","features":[424]},{"name":"WMDM_FORMATCODE_NOTUSED","features":[424]},{"name":"WMDM_FORMATCODE_OGG","features":[424]},{"name":"WMDM_FORMATCODE_PLSPLAYLIST","features":[424]},{"name":"WMDM_FORMATCODE_QCELP","features":[424]},{"name":"WMDM_FORMATCODE_RESERVED_FIRST","features":[424]},{"name":"WMDM_FORMATCODE_RESERVED_LAST","features":[424]},{"name":"WMDM_FORMATCODE_SCRIPT","features":[424]},{"name":"WMDM_FORMATCODE_SECTION","features":[424]},{"name":"WMDM_FORMATCODE_TEXT","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINED","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDAUDIO","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDCALENDARITEM","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDCOLLECTION","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDCONTACT","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDDOCUMENT","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDFIRMWARE","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDMESSAGE","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDVIDEO","features":[424]},{"name":"WMDM_FORMATCODE_UNDEFINEDWINDOWSEXECUTABLE","features":[424]},{"name":"WMDM_FORMATCODE_VCALENDAR1","features":[424]},{"name":"WMDM_FORMATCODE_VCALENDAR2","features":[424]},{"name":"WMDM_FORMATCODE_VCARD2","features":[424]},{"name":"WMDM_FORMATCODE_VCARD3","features":[424]},{"name":"WMDM_FORMATCODE_WAVE","features":[424]},{"name":"WMDM_FORMATCODE_WBMP","features":[424]},{"name":"WMDM_FORMATCODE_WINDOWSIMAGEFORMAT","features":[424]},{"name":"WMDM_FORMATCODE_WMA","features":[424]},{"name":"WMDM_FORMATCODE_WMV","features":[424]},{"name":"WMDM_FORMATCODE_WPLPLAYLIST","features":[424]},{"name":"WMDM_FORMATCODE_XMLDOCUMENT","features":[424]},{"name":"WMDM_FORMAT_CAPABILITY","features":[424]},{"name":"WMDM_GET_FORMAT_SUPPORT_AUDIO","features":[424]},{"name":"WMDM_GET_FORMAT_SUPPORT_FILE","features":[424]},{"name":"WMDM_GET_FORMAT_SUPPORT_VIDEO","features":[424]},{"name":"WMDM_LOG_NOTIMESTAMP","features":[424]},{"name":"WMDM_LOG_SEV_ERROR","features":[424]},{"name":"WMDM_LOG_SEV_INFO","features":[424]},{"name":"WMDM_LOG_SEV_WARN","features":[424]},{"name":"WMDM_MAC_LENGTH","features":[424]},{"name":"WMDM_MODE_BLOCK","features":[424]},{"name":"WMDM_MODE_PROGRESS","features":[424]},{"name":"WMDM_MODE_QUERY","features":[424]},{"name":"WMDM_MODE_RECURSIVE","features":[424]},{"name":"WMDM_MODE_THREAD","features":[424]},{"name":"WMDM_MODE_TRANSFER_PROTECTED","features":[424]},{"name":"WMDM_MODE_TRANSFER_UNPROTECTED","features":[424]},{"name":"WMDM_MSG_DEVICE_ARRIVAL","features":[424]},{"name":"WMDM_MSG_DEVICE_REMOVAL","features":[424]},{"name":"WMDM_MSG_MEDIA_ARRIVAL","features":[424]},{"name":"WMDM_MSG_MEDIA_REMOVAL","features":[424]},{"name":"WMDM_POWER_CAP_BATTERY","features":[424]},{"name":"WMDM_POWER_CAP_EXTERNAL","features":[424]},{"name":"WMDM_POWER_IS_BATTERY","features":[424]},{"name":"WMDM_POWER_IS_EXTERNAL","features":[424]},{"name":"WMDM_POWER_PERCENT_AVAILABLE","features":[424]},{"name":"WMDM_PROP_CONFIG","features":[424]},{"name":"WMDM_PROP_DESC","features":[424]},{"name":"WMDM_PROP_VALUES_ENUM","features":[424]},{"name":"WMDM_PROP_VALUES_RANGE","features":[424]},{"name":"WMDM_RIGHTS_COPY_TO_CD","features":[424]},{"name":"WMDM_RIGHTS_COPY_TO_NON_SDMI_DEVICE","features":[424]},{"name":"WMDM_RIGHTS_COPY_TO_SDMI_DEVICE","features":[424]},{"name":"WMDM_RIGHTS_EXPIRATIONDATE","features":[424]},{"name":"WMDM_RIGHTS_FREESERIALIDS","features":[424]},{"name":"WMDM_RIGHTS_GROUPID","features":[424]},{"name":"WMDM_RIGHTS_NAMEDSERIALIDS","features":[424]},{"name":"WMDM_RIGHTS_PLAYBACKCOUNT","features":[424]},{"name":"WMDM_RIGHTS_PLAY_ON_PC","features":[424]},{"name":"WMDM_SCP_DECIDE_DATA","features":[424]},{"name":"WMDM_SCP_DRMINFO_NOT_DRMPROTECTED","features":[424]},{"name":"WMDM_SCP_DRMINFO_V1HEADER","features":[424]},{"name":"WMDM_SCP_DRMINFO_V2HEADER","features":[424]},{"name":"WMDM_SCP_EXAMINE_DATA","features":[424]},{"name":"WMDM_SCP_EXAMINE_EXTENSION","features":[424]},{"name":"WMDM_SCP_NO_MORE_CHANGES","features":[424]},{"name":"WMDM_SCP_PROTECTED_OUTPUT","features":[424]},{"name":"WMDM_SCP_REVOKED","features":[424]},{"name":"WMDM_SCP_RIGHTS_DATA","features":[424]},{"name":"WMDM_SCP_TRANSFER_OBJECTDATA","features":[424]},{"name":"WMDM_SCP_UNPROTECTED_OUTPUT","features":[424]},{"name":"WMDM_SEEK_BEGIN","features":[424]},{"name":"WMDM_SEEK_CURRENT","features":[424]},{"name":"WMDM_SEEK_END","features":[424]},{"name":"WMDM_SEEK_REMOTECONTROL","features":[424]},{"name":"WMDM_SEEK_STREAMINGAUDIO","features":[424]},{"name":"WMDM_SERVICE_PROVIDER_VENDOR_MICROSOFT","features":[424]},{"name":"WMDM_SESSION_CUSTOM","features":[424]},{"name":"WMDM_SESSION_DELETE","features":[424]},{"name":"WMDM_SESSION_NONE","features":[424]},{"name":"WMDM_SESSION_TRANSFER_FROM_DEVICE","features":[424]},{"name":"WMDM_SESSION_TRANSFER_TO_DEVICE","features":[424]},{"name":"WMDM_SESSION_TYPE","features":[424]},{"name":"WMDM_SP_REVOKED","features":[424]},{"name":"WMDM_STATUS_BUSY","features":[424]},{"name":"WMDM_STATUS_DEVICECONTROL_PAUSED","features":[424]},{"name":"WMDM_STATUS_DEVICECONTROL_PLAYING","features":[424]},{"name":"WMDM_STATUS_DEVICECONTROL_RECORDING","features":[424]},{"name":"WMDM_STATUS_DEVICECONTROL_REMOTE","features":[424]},{"name":"WMDM_STATUS_DEVICECONTROL_STREAM","features":[424]},{"name":"WMDM_STATUS_DEVICE_NOTPRESENT","features":[424]},{"name":"WMDM_STATUS_READY","features":[424]},{"name":"WMDM_STATUS_STORAGECONTROL_APPENDING","features":[424]},{"name":"WMDM_STATUS_STORAGECONTROL_DELETING","features":[424]},{"name":"WMDM_STATUS_STORAGECONTROL_INSERTING","features":[424]},{"name":"WMDM_STATUS_STORAGECONTROL_MOVING","features":[424]},{"name":"WMDM_STATUS_STORAGECONTROL_READING","features":[424]},{"name":"WMDM_STATUS_STORAGE_BROKEN","features":[424]},{"name":"WMDM_STATUS_STORAGE_INITIALIZING","features":[424]},{"name":"WMDM_STATUS_STORAGE_NOTPRESENT","features":[424]},{"name":"WMDM_STATUS_STORAGE_NOTSUPPORTED","features":[424]},{"name":"WMDM_STATUS_STORAGE_UNFORMATTED","features":[424]},{"name":"WMDM_STORAGECAP_FILELIMITEXISTS","features":[424]},{"name":"WMDM_STORAGECAP_FILESINFOLDERS","features":[424]},{"name":"WMDM_STORAGECAP_FILESINROOT","features":[424]},{"name":"WMDM_STORAGECAP_FOLDERLIMITEXISTS","features":[424]},{"name":"WMDM_STORAGECAP_FOLDERSINFOLDERS","features":[424]},{"name":"WMDM_STORAGECAP_FOLDERSINROOT","features":[424]},{"name":"WMDM_STORAGECAP_NOT_INITIALIZABLE","features":[424]},{"name":"WMDM_STORAGECONTROL_INSERTAFTER","features":[424]},{"name":"WMDM_STORAGECONTROL_INSERTBEFORE","features":[424]},{"name":"WMDM_STORAGECONTROL_INSERTINTO","features":[424]},{"name":"WMDM_STORAGE_ATTR_CANEDITMETADATA","features":[424]},{"name":"WMDM_STORAGE_ATTR_FILESYSTEM","features":[424]},{"name":"WMDM_STORAGE_ATTR_FOLDERS","features":[424]},{"name":"WMDM_STORAGE_ATTR_HAS_FILES","features":[424]},{"name":"WMDM_STORAGE_ATTR_HAS_FOLDERS","features":[424]},{"name":"WMDM_STORAGE_ATTR_NONREMOVABLE","features":[424]},{"name":"WMDM_STORAGE_ATTR_REMOVABLE","features":[424]},{"name":"WMDM_STORAGE_ATTR_VIRTUAL","features":[424]},{"name":"WMDM_STORAGE_CONTAINS_DEFAULT","features":[424]},{"name":"WMDM_STORAGE_ENUM_MODE","features":[424]},{"name":"WMDM_STORAGE_IS_DEFAULT","features":[424]},{"name":"WMDM_S_NOT_ALL_PROPERTIES_APPLIED","features":[424]},{"name":"WMDM_S_NOT_ALL_PROPERTIES_RETRIEVED","features":[424]},{"name":"WMDM_TAG_DATATYPE","features":[424]},{"name":"WMDM_TYPE_BINARY","features":[424]},{"name":"WMDM_TYPE_BOOL","features":[424]},{"name":"WMDM_TYPE_DATE","features":[424]},{"name":"WMDM_TYPE_DWORD","features":[424]},{"name":"WMDM_TYPE_GUID","features":[424]},{"name":"WMDM_TYPE_QWORD","features":[424]},{"name":"WMDM_TYPE_STRING","features":[424]},{"name":"WMDM_TYPE_WORD","features":[424]},{"name":"WMDM_WMDM_REVOKED","features":[424]},{"name":"WMFILECAPABILITIES","features":[424]},{"name":"g_wszAudioWAVECodec","features":[424]},{"name":"g_wszVideoFourCCCodec","features":[424]},{"name":"g_wszWMDMAlbumArt","features":[424]},{"name":"g_wszWMDMAlbumArtist","features":[424]},{"name":"g_wszWMDMAlbumCoverData","features":[424]},{"name":"g_wszWMDMAlbumCoverDuration","features":[424]},{"name":"g_wszWMDMAlbumCoverFormat","features":[424]},{"name":"g_wszWMDMAlbumCoverHeight","features":[424]},{"name":"g_wszWMDMAlbumCoverSize","features":[424]},{"name":"g_wszWMDMAlbumCoverWidth","features":[424]},{"name":"g_wszWMDMAlbumTitle","features":[424]},{"name":"g_wszWMDMAudioBitDepth","features":[424]},{"name":"g_wszWMDMAuthor","features":[424]},{"name":"g_wszWMDMAuthorDate","features":[424]},{"name":"g_wszWMDMBitRateType","features":[424]},{"name":"g_wszWMDMBitrate","features":[424]},{"name":"g_wszWMDMBlockAlignment","features":[424]},{"name":"g_wszWMDMBufferSize","features":[424]},{"name":"g_wszWMDMBuyNow","features":[424]},{"name":"g_wszWMDMByteBookmark","features":[424]},{"name":"g_wszWMDMCategory","features":[424]},{"name":"g_wszWMDMCodec","features":[424]},{"name":"g_wszWMDMCollectionID","features":[424]},{"name":"g_wszWMDMComposer","features":[424]},{"name":"g_wszWMDMDRMId","features":[424]},{"name":"g_wszWMDMDataLength","features":[424]},{"name":"g_wszWMDMDataOffset","features":[424]},{"name":"g_wszWMDMDataUnits","features":[424]},{"name":"g_wszWMDMDescription","features":[424]},{"name":"g_wszWMDMDestinationURL","features":[424]},{"name":"g_wszWMDMDeviceFirmwareVersion","features":[424]},{"name":"g_wszWMDMDeviceFriendlyName","features":[424]},{"name":"g_wszWMDMDeviceModelName","features":[424]},{"name":"g_wszWMDMDevicePlayCount","features":[424]},{"name":"g_wszWMDMDeviceProtocol","features":[424]},{"name":"g_wszWMDMDeviceRevocationInfo","features":[424]},{"name":"g_wszWMDMDeviceServiceProviderVendor","features":[424]},{"name":"g_wszWMDMDeviceVendorExtension","features":[424]},{"name":"g_wszWMDMDuration","features":[424]},{"name":"g_wszWMDMEditor","features":[424]},{"name":"g_wszWMDMEncodingProfile","features":[424]},{"name":"g_wszWMDMFileAttributes","features":[424]},{"name":"g_wszWMDMFileCreationDate","features":[424]},{"name":"g_wszWMDMFileName","features":[424]},{"name":"g_wszWMDMFileSize","features":[424]},{"name":"g_wszWMDMFormatCode","features":[424]},{"name":"g_wszWMDMFormatsSupported","features":[424]},{"name":"g_wszWMDMFormatsSupportedAreOrdered","features":[424]},{"name":"g_wszWMDMFrameRate","features":[424]},{"name":"g_wszWMDMGenre","features":[424]},{"name":"g_wszWMDMHeight","features":[424]},{"name":"g_wszWMDMIsProtected","features":[424]},{"name":"g_wszWMDMIsRepeat","features":[424]},{"name":"g_wszWMDMKeyFrameDistance","features":[424]},{"name":"g_wszWMDMLastModifiedDate","features":[424]},{"name":"g_wszWMDMMediaClassSecondaryID","features":[424]},{"name":"g_wszWMDMMediaCredits","features":[424]},{"name":"g_wszWMDMMediaGuid","features":[424]},{"name":"g_wszWMDMMediaOriginalBroadcastDateTime","features":[424]},{"name":"g_wszWMDMMediaOriginalChannel","features":[424]},{"name":"g_wszWMDMMediaStationName","features":[424]},{"name":"g_wszWMDMMetaGenre","features":[424]},{"name":"g_wszWMDMNonConsumable","features":[424]},{"name":"g_wszWMDMNumChannels","features":[424]},{"name":"g_wszWMDMObjectBookmark","features":[424]},{"name":"g_wszWMDMOwner","features":[424]},{"name":"g_wszWMDMParentalRating","features":[424]},{"name":"g_wszWMDMPersistentUniqueID","features":[424]},{"name":"g_wszWMDMPlayCount","features":[424]},{"name":"g_wszWMDMProviderCopyright","features":[424]},{"name":"g_wszWMDMQualitySetting","features":[424]},{"name":"g_wszWMDMSampleRate","features":[424]},{"name":"g_wszWMDMScanType","features":[424]},{"name":"g_wszWMDMSourceURL","features":[424]},{"name":"g_wszWMDMSubTitle","features":[424]},{"name":"g_wszWMDMSubTitleDescription","features":[424]},{"name":"g_wszWMDMSupportedDeviceProperties","features":[424]},{"name":"g_wszWMDMSyncID","features":[424]},{"name":"g_wszWMDMSyncRelationshipID","features":[424]},{"name":"g_wszWMDMSyncTime","features":[424]},{"name":"g_wszWMDMTimeBookmark","features":[424]},{"name":"g_wszWMDMTimeToLive","features":[424]},{"name":"g_wszWMDMTitle","features":[424]},{"name":"g_wszWMDMTotalBitrate","features":[424]},{"name":"g_wszWMDMTrack","features":[424]},{"name":"g_wszWMDMTrackMood","features":[424]},{"name":"g_wszWMDMUserEffectiveRating","features":[424]},{"name":"g_wszWMDMUserLastPlayTime","features":[424]},{"name":"g_wszWMDMUserRating","features":[424]},{"name":"g_wszWMDMUserRatingOnDevice","features":[424]},{"name":"g_wszWMDMVideoBitrate","features":[424]},{"name":"g_wszWMDMWebmaster","features":[424]},{"name":"g_wszWMDMWidth","features":[424]},{"name":"g_wszWMDMYear","features":[424]},{"name":"g_wszWMDMediaClassPrimaryID","features":[424]},{"name":"g_wszWPDPassthroughPropertyValues","features":[424]}],"430":[{"name":"ADVISE_CLIPPING","features":[425]},{"name":"ADVISE_COLORKEY","features":[425]},{"name":"ADVISE_DISPLAY_CHANGE","features":[425]},{"name":"ADVISE_NONE","features":[425]},{"name":"ADVISE_PALETTE","features":[425]},{"name":"ADVISE_POSITION","features":[425]},{"name":"ADVISE_TYPE","features":[425]},{"name":"ALLOCATOR_PROPERTIES","features":[425]},{"name":"AMAP_3D_TARGET","features":[425]},{"name":"AMAP_ALLOW_SYSMEM","features":[425]},{"name":"AMAP_DIRECTED_FLIP","features":[425]},{"name":"AMAP_DXVA_TARGET","features":[425]},{"name":"AMAP_FORCE_SYSMEM","features":[425]},{"name":"AMAP_PIXELFORMAT_VALID","features":[425]},{"name":"AMCONTROL_COLORINFO_PRESENT","features":[425]},{"name":"AMCONTROL_PAD_TO_16x9","features":[425]},{"name":"AMCONTROL_PAD_TO_4x3","features":[425]},{"name":"AMCONTROL_USED","features":[425]},{"name":"AMCOPPCommand","features":[425]},{"name":"AMCOPPSignature","features":[425]},{"name":"AMCOPPStatusInput","features":[425]},{"name":"AMCOPPStatusOutput","features":[425]},{"name":"AMCOPYPROTECT_RestrictDuplication","features":[425]},{"name":"AMDDS_ALL","features":[425]},{"name":"AMDDS_DCIPS","features":[425]},{"name":"AMDDS_DEFAULT","features":[425]},{"name":"AMDDS_NONE","features":[425]},{"name":"AMDDS_PS","features":[425]},{"name":"AMDDS_RGBFLP","features":[425]},{"name":"AMDDS_RGBOFF","features":[425]},{"name":"AMDDS_RGBOVR","features":[425]},{"name":"AMDDS_YUVFLP","features":[425]},{"name":"AMDDS_YUVOFF","features":[425]},{"name":"AMDDS_YUVOVR","features":[425]},{"name":"AMExtendedSeekingCapabilities","features":[425]},{"name":"AMF_AUTOMATICGAIN","features":[425]},{"name":"AMGETERRORTEXTPROCA","features":[303,425]},{"name":"AMGETERRORTEXTPROCW","features":[303,425]},{"name":"AMGetErrorTextA","features":[425]},{"name":"AMGetErrorTextW","features":[425]},{"name":"AMINTERLACE_1FieldPerSample","features":[425]},{"name":"AMINTERLACE_DisplayModeBobOnly","features":[425]},{"name":"AMINTERLACE_DisplayModeBobOrWeave","features":[425]},{"name":"AMINTERLACE_DisplayModeMask","features":[425]},{"name":"AMINTERLACE_DisplayModeWeaveOnly","features":[425]},{"name":"AMINTERLACE_Field1First","features":[425]},{"name":"AMINTERLACE_FieldPatBothIrregular","features":[425]},{"name":"AMINTERLACE_FieldPatBothRegular","features":[425]},{"name":"AMINTERLACE_FieldPatField1Only","features":[425]},{"name":"AMINTERLACE_FieldPatField2Only","features":[425]},{"name":"AMINTERLACE_FieldPatternMask","features":[425]},{"name":"AMINTERLACE_IsInterlaced","features":[425]},{"name":"AMINTERLACE_UNUSED","features":[425]},{"name":"AMMSF_ADDDEFAULTRENDERER","features":[425]},{"name":"AMMSF_CREATEPEER","features":[425]},{"name":"AMMSF_MMS_INIT_FLAGS","features":[425]},{"name":"AMMSF_MS_FLAGS","features":[425]},{"name":"AMMSF_NOCLOCK","features":[425]},{"name":"AMMSF_NOGRAPHTHREAD","features":[425]},{"name":"AMMSF_NORENDER","features":[425]},{"name":"AMMSF_NOSTALL","features":[425]},{"name":"AMMSF_RENDERALLSTREAMS","features":[425]},{"name":"AMMSF_RENDERTOEXISTING","features":[425]},{"name":"AMMSF_RENDERTYPEMASK","features":[425]},{"name":"AMMSF_RENDER_FLAGS","features":[425]},{"name":"AMMSF_RUN","features":[425]},{"name":"AMMSF_STOPIFNOSAMPLES","features":[425]},{"name":"AMOVERFX_DEINTERLACE","features":[425]},{"name":"AMOVERFX_MIRRORLEFTRIGHT","features":[425]},{"name":"AMOVERFX_MIRRORUPDOWN","features":[425]},{"name":"AMOVERFX_NOFX","features":[425]},{"name":"AMOVERLAYFX","features":[425]},{"name":"AMPLAYLISTEVENT_BREAK","features":[425]},{"name":"AMPLAYLISTEVENT_MASK","features":[425]},{"name":"AMPLAYLISTEVENT_NEXT","features":[425]},{"name":"AMPLAYLISTEVENT_REFRESH","features":[425]},{"name":"AMPLAYLISTEVENT_RESUME","features":[425]},{"name":"AMPLAYLISTITEM_CANBIND","features":[425]},{"name":"AMPLAYLISTITEM_CANSKIP","features":[425]},{"name":"AMPLAYLIST_FORCEBANNER","features":[425]},{"name":"AMPLAYLIST_STARTINSCANMODE","features":[425]},{"name":"AMPROPERTY_PIN","features":[425]},{"name":"AMPROPERTY_PIN_CATEGORY","features":[425]},{"name":"AMPROPERTY_PIN_MEDIUM","features":[425]},{"name":"AMPlayListEventFlags","features":[425]},{"name":"AMPlayListFlags","features":[425]},{"name":"AMPlayListItemFlags","features":[425]},{"name":"AMRESCTL_RESERVEFLAGS_RESERVE","features":[425]},{"name":"AMRESCTL_RESERVEFLAGS_UNRESERVE","features":[425]},{"name":"AMSTREAMSELECTENABLE_ENABLE","features":[425]},{"name":"AMSTREAMSELECTENABLE_ENABLEALL","features":[425]},{"name":"AMSTREAMSELECTINFO_ENABLED","features":[425]},{"name":"AMSTREAMSELECTINFO_EXCLUSIVE","features":[425]},{"name":"AMTUNER_EVENT_CHANGED","features":[425]},{"name":"AMTUNER_HASNOSIGNALSTRENGTH","features":[425]},{"name":"AMTUNER_MODE_AM_RADIO","features":[425]},{"name":"AMTUNER_MODE_DEFAULT","features":[425]},{"name":"AMTUNER_MODE_DSS","features":[425]},{"name":"AMTUNER_MODE_FM_RADIO","features":[425]},{"name":"AMTUNER_MODE_TV","features":[425]},{"name":"AMTUNER_NOSIGNAL","features":[425]},{"name":"AMTUNER_SIGNALPRESENT","features":[425]},{"name":"AMTUNER_SUBCHAN_DEFAULT","features":[425]},{"name":"AMTUNER_SUBCHAN_NO_TUNE","features":[425]},{"name":"AMTVAUDIO_EVENT_CHANGED","features":[425]},{"name":"AMTVAUDIO_MODE_LANG_A","features":[425]},{"name":"AMTVAUDIO_MODE_LANG_B","features":[425]},{"name":"AMTVAUDIO_MODE_LANG_C","features":[425]},{"name":"AMTVAUDIO_MODE_MONO","features":[425]},{"name":"AMTVAUDIO_MODE_STEREO","features":[425]},{"name":"AMTVAUDIO_PRESET_LANG_A","features":[425]},{"name":"AMTVAUDIO_PRESET_LANG_B","features":[425]},{"name":"AMTVAUDIO_PRESET_LANG_C","features":[425]},{"name":"AMTVAUDIO_PRESET_STEREO","features":[425]},{"name":"AMTVAudioEventType","features":[425]},{"name":"AMTunerEventType","features":[425]},{"name":"AMTunerModeType","features":[425]},{"name":"AMTunerSignalStrength","features":[425]},{"name":"AMTunerSubChannel","features":[425]},{"name":"AMVABUFFERINFO","features":[425]},{"name":"AMVABeginFrameInfo","features":[425]},{"name":"AMVACompBufferInfo","features":[313,425]},{"name":"AMVAEndFrameInfo","features":[425]},{"name":"AMVAInternalMemInfo","features":[425]},{"name":"AMVAUncompBufferInfo","features":[313,425]},{"name":"AMVAUncompDataInfo","features":[313,425]},{"name":"AMVA_QUERYRENDERSTATUSF_READ","features":[425]},{"name":"AMVA_TYPEINDEX_OUTPUTFRAME","features":[425]},{"name":"AMVPDATAINFO","features":[303,425]},{"name":"AMVPDIMINFO","features":[303,425]},{"name":"AMVPSIZE","features":[425]},{"name":"AMVP_BEST_BANDWIDTH","features":[425]},{"name":"AMVP_DO_NOT_CARE","features":[425]},{"name":"AMVP_INPUT_SAME_AS_OUTPUT","features":[425]},{"name":"AMVP_MODE","features":[425]},{"name":"AMVP_MODE_BOBINTERLEAVED","features":[425]},{"name":"AMVP_MODE_BOBNONINTERLEAVED","features":[425]},{"name":"AMVP_MODE_SKIPEVEN","features":[425]},{"name":"AMVP_MODE_SKIPODD","features":[425]},{"name":"AMVP_MODE_WEAVE","features":[425]},{"name":"AMVP_SELECT_FORMAT_BY","features":[425]},{"name":"AM_AC3_ALTERNATE_AUDIO","features":[303,425]},{"name":"AM_AC3_ALTERNATE_AUDIO_1","features":[425]},{"name":"AM_AC3_ALTERNATE_AUDIO_2","features":[425]},{"name":"AM_AC3_ALTERNATE_AUDIO_BOTH","features":[425]},{"name":"AM_AC3_BIT_STREAM_MODE","features":[425]},{"name":"AM_AC3_DIALOGUE_LEVEL","features":[425]},{"name":"AM_AC3_DOWNMIX","features":[303,425]},{"name":"AM_AC3_ERROR_CONCEALMENT","features":[303,425]},{"name":"AM_AC3_ROOM_TYPE","features":[303,425]},{"name":"AM_AC3_SERVICE_COMMENTARY","features":[425]},{"name":"AM_AC3_SERVICE_DIALOG_ONLY","features":[425]},{"name":"AM_AC3_SERVICE_EMERGENCY_FLASH","features":[425]},{"name":"AM_AC3_SERVICE_HEARING_IMPAIRED","features":[425]},{"name":"AM_AC3_SERVICE_MAIN_AUDIO","features":[425]},{"name":"AM_AC3_SERVICE_NO_DIALOG","features":[425]},{"name":"AM_AC3_SERVICE_VISUALLY_IMPAIRED","features":[425]},{"name":"AM_AC3_SERVICE_VOICE_OVER","features":[425]},{"name":"AM_ARMODE_CROP","features":[425]},{"name":"AM_ARMODE_LETTER_BOX","features":[425]},{"name":"AM_ARMODE_STRETCHED","features":[425]},{"name":"AM_ARMODE_STRETCHED_AS_PRIMARY","features":[425]},{"name":"AM_ASPECT_RATIO_MODE","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_BREAK_COUNT","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_BUFFERFULLNESS","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_DISCONTINUITIES","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_JITTER","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_LAST_BUFFER_DUR","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_SILENCE_DUR","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_ACCUMERROR","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_DROPWRITE_DUR","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_HIGHLOWERROR","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_LASTHIGHLOWERROR","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_MODE","features":[425]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_RATE","features":[425]},{"name":"AM_COLCON","features":[425]},{"name":"AM_CONTENTPROPERTY_AUTHOR","features":[425]},{"name":"AM_CONTENTPROPERTY_COPYRIGHT","features":[425]},{"name":"AM_CONTENTPROPERTY_DESCRIPTION","features":[425]},{"name":"AM_CONTENTPROPERTY_TITLE","features":[425]},{"name":"AM_COPY_MACROVISION","features":[425]},{"name":"AM_COPY_MACROVISION_LEVEL","features":[425]},{"name":"AM_DIGITAL_CP","features":[425]},{"name":"AM_DIGITAL_CP_DVD_COMPLIANT","features":[425]},{"name":"AM_DIGITAL_CP_OFF","features":[425]},{"name":"AM_DIGITAL_CP_ON","features":[425]},{"name":"AM_DVDCOPYSTATE","features":[425]},{"name":"AM_DVDCOPYSTATE_AUTHENTICATION_NOT_REQUIRED","features":[425]},{"name":"AM_DVDCOPYSTATE_AUTHENTICATION_REQUIRED","features":[425]},{"name":"AM_DVDCOPYSTATE_DONE","features":[425]},{"name":"AM_DVDCOPYSTATE_INITIALIZE","features":[425]},{"name":"AM_DVDCOPYSTATE_INITIALIZE_TITLE","features":[425]},{"name":"AM_DVDCOPY_BUSKEY","features":[425]},{"name":"AM_DVDCOPY_CHLGKEY","features":[425]},{"name":"AM_DVDCOPY_DISCKEY","features":[425]},{"name":"AM_DVDCOPY_SET_COPY_STATE","features":[425]},{"name":"AM_DVDCOPY_TITLEKEY","features":[425]},{"name":"AM_DVD_ADAPT_GRAPH","features":[425]},{"name":"AM_DVD_CGMS_COPY_ONCE","features":[425]},{"name":"AM_DVD_CGMS_COPY_PERMITTED","features":[425]},{"name":"AM_DVD_CGMS_COPY_PROTECT_MASK","features":[425]},{"name":"AM_DVD_CGMS_NO_COPY","features":[425]},{"name":"AM_DVD_CGMS_RESERVED_MASK","features":[425]},{"name":"AM_DVD_COPYRIGHTED","features":[425]},{"name":"AM_DVD_COPYRIGHT_MASK","features":[425]},{"name":"AM_DVD_ChangeRate","features":[425]},{"name":"AM_DVD_DO_NOT_CLEAR","features":[425]},{"name":"AM_DVD_EVR_ONLY","features":[425]},{"name":"AM_DVD_EVR_QOS","features":[425]},{"name":"AM_DVD_GRAPH_FLAGS","features":[425]},{"name":"AM_DVD_HWDEC_ONLY","features":[425]},{"name":"AM_DVD_HWDEC_PREFER","features":[425]},{"name":"AM_DVD_MASK","features":[425]},{"name":"AM_DVD_NOT_COPYRIGHTED","features":[425]},{"name":"AM_DVD_NOVPE","features":[425]},{"name":"AM_DVD_RENDERSTATUS","features":[303,425]},{"name":"AM_DVD_SECTOR_NOT_PROTECTED","features":[425]},{"name":"AM_DVD_SECTOR_PROTECTED","features":[425]},{"name":"AM_DVD_SECTOR_PROTECT_MASK","features":[425]},{"name":"AM_DVD_STREAM_AUDIO","features":[425]},{"name":"AM_DVD_STREAM_FLAGS","features":[425]},{"name":"AM_DVD_STREAM_SUBPIC","features":[425]},{"name":"AM_DVD_STREAM_VIDEO","features":[425]},{"name":"AM_DVD_SWDEC_ONLY","features":[425]},{"name":"AM_DVD_SWDEC_PREFER","features":[425]},{"name":"AM_DVD_VMR9_ONLY","features":[425]},{"name":"AM_DVD_YUV","features":[425]},{"name":"AM_DvdKaraokeData","features":[425]},{"name":"AM_EXSEEK_BUFFERING","features":[425]},{"name":"AM_EXSEEK_CANSCAN","features":[425]},{"name":"AM_EXSEEK_CANSEEK","features":[425]},{"name":"AM_EXSEEK_MARKERSEEK","features":[425]},{"name":"AM_EXSEEK_NOSTANDARDREPAINT","features":[425]},{"name":"AM_EXSEEK_SCANWITHOUTCLOCK","features":[425]},{"name":"AM_EXSEEK_SENDS_VIDEOFRAMEREADY","features":[425]},{"name":"AM_ExactRateChange","features":[425]},{"name":"AM_FILESINK_FLAGS","features":[425]},{"name":"AM_FILE_OVERWRITE","features":[425]},{"name":"AM_FILTER_FLAGS","features":[425]},{"name":"AM_FILTER_FLAGS_REMOVABLE","features":[425]},{"name":"AM_FILTER_MISC_FLAGS_IS_RENDERER","features":[425]},{"name":"AM_FILTER_MISC_FLAGS_IS_SOURCE","features":[425]},{"name":"AM_FRAMESTEP_STEP","features":[425]},{"name":"AM_GBF_NODDSURFACELOCK","features":[425]},{"name":"AM_GBF_NOTASYNCPOINT","features":[425]},{"name":"AM_GBF_NOWAIT","features":[425]},{"name":"AM_GBF_PREVFRAMESKIPPED","features":[425]},{"name":"AM_GETDECODERCAP_QUERY_EVR_SUPPORT","features":[425]},{"name":"AM_GETDECODERCAP_QUERY_VMR9_SUPPORT","features":[425]},{"name":"AM_GETDECODERCAP_QUERY_VMR_SUPPORT","features":[425]},{"name":"AM_GRAPH_CONFIG_RECONNECT_CACHE_REMOVED_FILTERS","features":[425]},{"name":"AM_GRAPH_CONFIG_RECONNECT_DIRECTCONNECT","features":[425]},{"name":"AM_GRAPH_CONFIG_RECONNECT_FLAGS","features":[425]},{"name":"AM_GRAPH_CONFIG_RECONNECT_USE_ONLY_CACHED_FILTERS","features":[425]},{"name":"AM_INTERFACESETID_Standard","features":[425]},{"name":"AM_INTF_SEARCH_FILTER","features":[425]},{"name":"AM_INTF_SEARCH_INPUT_PIN","features":[425]},{"name":"AM_INTF_SEARCH_OUTPUT_PIN","features":[425]},{"name":"AM_KSCATEGORY_AUDIO","features":[425]},{"name":"AM_KSCATEGORY_CAPTURE","features":[425]},{"name":"AM_KSCATEGORY_CROSSBAR","features":[425]},{"name":"AM_KSCATEGORY_DATACOMPRESSOR","features":[425]},{"name":"AM_KSCATEGORY_RENDER","features":[425]},{"name":"AM_KSCATEGORY_SPLITTER","features":[425]},{"name":"AM_KSCATEGORY_TVAUDIO","features":[425]},{"name":"AM_KSCATEGORY_TVTUNER","features":[425]},{"name":"AM_KSCATEGORY_VBICODEC","features":[425]},{"name":"AM_KSCATEGORY_VBICODEC_MI","features":[425]},{"name":"AM_KSCATEGORY_VIDEO","features":[425]},{"name":"AM_KSPROPSETID_AC3","features":[425]},{"name":"AM_KSPROPSETID_CopyProt","features":[425]},{"name":"AM_KSPROPSETID_DVD_RateChange","features":[425]},{"name":"AM_KSPROPSETID_DvdKaraoke","features":[425]},{"name":"AM_KSPROPSETID_DvdSubPic","features":[425]},{"name":"AM_KSPROPSETID_FrameStep","features":[425]},{"name":"AM_KSPROPSETID_MPEG4_MediaType_Attributes","features":[425]},{"name":"AM_KSPROPSETID_TSRateChange","features":[425]},{"name":"AM_L21_CCLEVEL_TC2","features":[425]},{"name":"AM_L21_CCSERVICE_Caption1","features":[425]},{"name":"AM_L21_CCSERVICE_Caption2","features":[425]},{"name":"AM_L21_CCSERVICE_DefChannel","features":[425]},{"name":"AM_L21_CCSERVICE_Invalid","features":[425]},{"name":"AM_L21_CCSERVICE_None","features":[425]},{"name":"AM_L21_CCSERVICE_Text1","features":[425]},{"name":"AM_L21_CCSERVICE_Text2","features":[425]},{"name":"AM_L21_CCSERVICE_XDS","features":[425]},{"name":"AM_L21_CCSTATE_Off","features":[425]},{"name":"AM_L21_CCSTATE_On","features":[425]},{"name":"AM_L21_CCSTYLE_None","features":[425]},{"name":"AM_L21_CCSTYLE_PaintOn","features":[425]},{"name":"AM_L21_CCSTYLE_PopOn","features":[425]},{"name":"AM_L21_CCSTYLE_RollUp","features":[425]},{"name":"AM_L21_DRAWBGMODE_Opaque","features":[425]},{"name":"AM_L21_DRAWBGMODE_Transparent","features":[425]},{"name":"AM_LINE21_CCLEVEL","features":[425]},{"name":"AM_LINE21_CCSERVICE","features":[425]},{"name":"AM_LINE21_CCSTATE","features":[425]},{"name":"AM_LINE21_CCSTYLE","features":[425]},{"name":"AM_LINE21_DRAWBGMODE","features":[425]},{"name":"AM_LOADSTATUS_CLOSED","features":[425]},{"name":"AM_LOADSTATUS_CONNECTING","features":[425]},{"name":"AM_LOADSTATUS_LOADINGDESCR","features":[425]},{"name":"AM_LOADSTATUS_LOADINGMCAST","features":[425]},{"name":"AM_LOADSTATUS_LOCATING","features":[425]},{"name":"AM_LOADSTATUS_OPEN","features":[425]},{"name":"AM_LOADSTATUS_OPENING","features":[425]},{"name":"AM_MACROVISION_DISABLED","features":[425]},{"name":"AM_MACROVISION_LEVEL1","features":[425]},{"name":"AM_MACROVISION_LEVEL2","features":[425]},{"name":"AM_MACROVISION_LEVEL3","features":[425]},{"name":"AM_MEDIAEVENT_FLAGS","features":[425]},{"name":"AM_MEDIAEVENT_NONOTIFY","features":[425]},{"name":"AM_MPEG2Level","features":[425]},{"name":"AM_MPEG2Level_High","features":[425]},{"name":"AM_MPEG2Level_High1440","features":[425]},{"name":"AM_MPEG2Level_Low","features":[425]},{"name":"AM_MPEG2Level_Main","features":[425]},{"name":"AM_MPEG2Profile","features":[425]},{"name":"AM_MPEG2Profile_High","features":[425]},{"name":"AM_MPEG2Profile_Main","features":[425]},{"name":"AM_MPEG2Profile_SNRScalable","features":[425]},{"name":"AM_MPEG2Profile_Simple","features":[425]},{"name":"AM_MPEG2Profile_SpatiallyScalable","features":[425]},{"name":"AM_MPEGSTREAMTYPE","features":[303,425,426]},{"name":"AM_MPEGSYSTEMTYPE","features":[303,425,426]},{"name":"AM_MPEG_AUDIO_DUAL_LEFT","features":[425]},{"name":"AM_MPEG_AUDIO_DUAL_MERGE","features":[425]},{"name":"AM_MPEG_AUDIO_DUAL_RIGHT","features":[425]},{"name":"AM_OVERLAY_NOTIFY_DEST_CHANGE","features":[425]},{"name":"AM_OVERLAY_NOTIFY_SOURCE_CHANGE","features":[425]},{"name":"AM_OVERLAY_NOTIFY_VISIBLE_CHANGE","features":[425]},{"name":"AM_PIN_FLOW_CONTROL_BLOCK","features":[425]},{"name":"AM_PROPERTY_AC3","features":[425]},{"name":"AM_PROPERTY_AC3_ALTERNATE_AUDIO","features":[425]},{"name":"AM_PROPERTY_AC3_BIT_STREAM_MODE","features":[425]},{"name":"AM_PROPERTY_AC3_DIALOGUE_LEVEL","features":[425]},{"name":"AM_PROPERTY_AC3_DOWNMIX","features":[425]},{"name":"AM_PROPERTY_AC3_ERROR_CONCEALMENT","features":[425]},{"name":"AM_PROPERTY_AC3_LANGUAGE_CODE","features":[425]},{"name":"AM_PROPERTY_AC3_ROOM_TYPE","features":[425]},{"name":"AM_PROPERTY_COPY_ANALOG_COMPONENT","features":[425]},{"name":"AM_PROPERTY_COPY_DIGITAL_CP","features":[425]},{"name":"AM_PROPERTY_COPY_DVD_SRM","features":[425]},{"name":"AM_PROPERTY_COPY_MACROVISION","features":[425]},{"name":"AM_PROPERTY_DVDCOPYPROT","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_CHLG_KEY","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_DEC_KEY2","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_DISC_KEY","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_DVD_KEY1","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_REGION","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_SET_COPY_STATE","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_SUPPORTS_NEW_KEYCOUNT","features":[425]},{"name":"AM_PROPERTY_DVDCOPY_TITLE_KEY","features":[425]},{"name":"AM_PROPERTY_DVDKARAOKE","features":[425]},{"name":"AM_PROPERTY_DVDKARAOKE_DATA","features":[425]},{"name":"AM_PROPERTY_DVDKARAOKE_ENABLE","features":[425]},{"name":"AM_PROPERTY_DVDSUBPIC","features":[425]},{"name":"AM_PROPERTY_DVDSUBPIC_COMPOSIT_ON","features":[425]},{"name":"AM_PROPERTY_DVDSUBPIC_HLI","features":[425]},{"name":"AM_PROPERTY_DVDSUBPIC_PALETTE","features":[425]},{"name":"AM_PROPERTY_DVD_RATE_CHANGE","features":[425]},{"name":"AM_PROPERTY_FRAMESTEP","features":[425]},{"name":"AM_PROPERTY_FRAMESTEP_CANCEL","features":[425]},{"name":"AM_PROPERTY_FRAMESTEP_CANSTEP","features":[425]},{"name":"AM_PROPERTY_FRAMESTEP_CANSTEPMULTIPLE","features":[425]},{"name":"AM_PROPERTY_FRAMESTEP_STEP","features":[425]},{"name":"AM_PROPERTY_SPHLI","features":[425]},{"name":"AM_PROPERTY_SPPAL","features":[425]},{"name":"AM_PROPERTY_TS_RATE_CHANGE","features":[425]},{"name":"AM_PUSHSOURCECAPS_INTERNAL_RM","features":[425]},{"name":"AM_PUSHSOURCECAPS_NOT_LIVE","features":[425]},{"name":"AM_PUSHSOURCECAPS_PRIVATE_CLOCK","features":[425]},{"name":"AM_PUSHSOURCEREQS_USE_CLOCK_CHAIN","features":[425]},{"name":"AM_PUSHSOURCEREQS_USE_STREAM_CLOCK","features":[425]},{"name":"AM_QUERY_DECODER_ATSC_HD_SUPPORT","features":[425]},{"name":"AM_QUERY_DECODER_ATSC_SD_SUPPORT","features":[425]},{"name":"AM_QUERY_DECODER_DVD_SUPPORT","features":[425]},{"name":"AM_QUERY_DECODER_DXVA_1_SUPPORT","features":[425]},{"name":"AM_QUERY_DECODER_VMR_SUPPORT","features":[425]},{"name":"AM_QueryRate","features":[425]},{"name":"AM_RATE_ChangeRate","features":[425]},{"name":"AM_RATE_CorrectTS","features":[425]},{"name":"AM_RATE_DecoderPosition","features":[425]},{"name":"AM_RATE_DecoderVersion","features":[425]},{"name":"AM_RATE_ExactRateChange","features":[425]},{"name":"AM_RATE_FullDataRateMax","features":[425]},{"name":"AM_RATE_MaxFullDataRate","features":[425]},{"name":"AM_RATE_QueryFullFrameRate","features":[425]},{"name":"AM_RATE_QueryLastRateSegPTS","features":[425]},{"name":"AM_RATE_QueryMapping","features":[425]},{"name":"AM_RATE_ResetOnTimeDisc","features":[425]},{"name":"AM_RATE_ReverseDecode","features":[425]},{"name":"AM_RATE_ReverseMaxFullDataRate","features":[425]},{"name":"AM_RATE_SimpleRateChange","features":[425]},{"name":"AM_RATE_Step","features":[425]},{"name":"AM_RATE_UseRateVersion","features":[425]},{"name":"AM_RENDEREX_RENDERTOEXISTINGRENDERERS","features":[425]},{"name":"AM_ReverseBlockEnd","features":[425]},{"name":"AM_ReverseBlockStart","features":[425]},{"name":"AM_SAMPLE2_PROPERTIES","features":[303,425,426]},{"name":"AM_SAMPLE_DATADISCONTINUITY","features":[425]},{"name":"AM_SAMPLE_ENDOFSTREAM","features":[425]},{"name":"AM_SAMPLE_FLUSH_ON_PAUSE","features":[425]},{"name":"AM_SAMPLE_PREROLL","features":[425]},{"name":"AM_SAMPLE_PROPERTY_FLAGS","features":[425]},{"name":"AM_SAMPLE_SPLICEPOINT","features":[425]},{"name":"AM_SAMPLE_STOPVALID","features":[425]},{"name":"AM_SAMPLE_TIMEDISCONTINUITY","features":[425]},{"name":"AM_SAMPLE_TIMEVALID","features":[425]},{"name":"AM_SAMPLE_TYPECHANGED","features":[425]},{"name":"AM_SEEKING_AbsolutePositioning","features":[425]},{"name":"AM_SEEKING_CanDoSegments","features":[425]},{"name":"AM_SEEKING_CanGetCurrentPos","features":[425]},{"name":"AM_SEEKING_CanGetDuration","features":[425]},{"name":"AM_SEEKING_CanGetStopPos","features":[425]},{"name":"AM_SEEKING_CanPlayBackwards","features":[425]},{"name":"AM_SEEKING_CanSeekAbsolute","features":[425]},{"name":"AM_SEEKING_CanSeekBackwards","features":[425]},{"name":"AM_SEEKING_CanSeekForwards","features":[425]},{"name":"AM_SEEKING_IncrementalPositioning","features":[425]},{"name":"AM_SEEKING_NoFlush","features":[425]},{"name":"AM_SEEKING_NoPositioning","features":[425]},{"name":"AM_SEEKING_PositioningBitsMask","features":[425]},{"name":"AM_SEEKING_RelativePositioning","features":[425]},{"name":"AM_SEEKING_ReturnTime","features":[425]},{"name":"AM_SEEKING_SEEKING_CAPABILITIES","features":[425]},{"name":"AM_SEEKING_SEEKING_FLAGS","features":[425]},{"name":"AM_SEEKING_SeekToKeyFrame","features":[425]},{"name":"AM_SEEKING_Segment","features":[425]},{"name":"AM_SEEKING_Source","features":[425]},{"name":"AM_STREAM_CONTROL","features":[425]},{"name":"AM_STREAM_INFO","features":[425]},{"name":"AM_STREAM_INFO_DISCARDING","features":[425]},{"name":"AM_STREAM_INFO_FLAGS","features":[425]},{"name":"AM_STREAM_INFO_START_DEFINED","features":[425]},{"name":"AM_STREAM_INFO_STOP_DEFINED","features":[425]},{"name":"AM_STREAM_INFO_STOP_SEND_EXTRA","features":[425]},{"name":"AM_STREAM_MEDIA","features":[425]},{"name":"AM_SimpleRateChange","features":[425]},{"name":"AM_UseNewCSSKey","features":[425]},{"name":"AM_VIDEO_FLAG_B_SAMPLE","features":[425]},{"name":"AM_VIDEO_FLAG_FIELD1","features":[425]},{"name":"AM_VIDEO_FLAG_FIELD1FIRST","features":[425]},{"name":"AM_VIDEO_FLAG_FIELD2","features":[425]},{"name":"AM_VIDEO_FLAG_FIELD_MASK","features":[425]},{"name":"AM_VIDEO_FLAG_INTERLEAVED_FRAME","features":[425]},{"name":"AM_VIDEO_FLAG_IPB_MASK","features":[425]},{"name":"AM_VIDEO_FLAG_I_SAMPLE","features":[425]},{"name":"AM_VIDEO_FLAG_P_SAMPLE","features":[425]},{"name":"AM_VIDEO_FLAG_REPEAT_FIELD","features":[425]},{"name":"AM_VIDEO_FLAG_WEAVE","features":[425]},{"name":"AM_WST_DRAWBGMODE","features":[425]},{"name":"AM_WST_DRAWBGMODE_Opaque","features":[425]},{"name":"AM_WST_DRAWBGMODE_Transparent","features":[425]},{"name":"AM_WST_LEVEL","features":[425]},{"name":"AM_WST_LEVEL_1_5","features":[425]},{"name":"AM_WST_PAGE","features":[425]},{"name":"AM_WST_SERVICE","features":[425]},{"name":"AM_WST_SERVICE_IDS","features":[425]},{"name":"AM_WST_SERVICE_Invalid","features":[425]},{"name":"AM_WST_SERVICE_None","features":[425]},{"name":"AM_WST_SERVICE_Text","features":[425]},{"name":"AM_WST_STATE","features":[425]},{"name":"AM_WST_STATE_Off","features":[425]},{"name":"AM_WST_STATE_On","features":[425]},{"name":"AM_WST_STYLE","features":[425]},{"name":"AM_WST_STYLE_Invers","features":[425]},{"name":"AM_WST_STYLE_None","features":[425]},{"name":"ANALOGVIDEOINFO","features":[303,425]},{"name":"ANNEX_A_DSM_CC","features":[425]},{"name":"ATSCCT_AC3","features":[425]},{"name":"ATSCComponentTypeFlags","features":[425]},{"name":"AUDIO_STREAM_CONFIG_CAPS","features":[425]},{"name":"AVIEXTHEADER","features":[425]},{"name":"AVIFIELDINDEX","features":[425]},{"name":"AVIF_COPYRIGHTED","features":[425]},{"name":"AVIF_HASINDEX","features":[425]},{"name":"AVIF_ISINTERLEAVED","features":[425]},{"name":"AVIF_MUSTUSEINDEX","features":[425]},{"name":"AVIF_TRUSTCKTYPE","features":[425]},{"name":"AVIF_WASCAPTUREFILE","features":[425]},{"name":"AVIIF_COMPRESSOR","features":[425]},{"name":"AVIIF_COMPUSE","features":[425]},{"name":"AVIIF_FIRSTPART","features":[425]},{"name":"AVIIF_KEYFRAME","features":[425]},{"name":"AVIIF_LASTPART","features":[425]},{"name":"AVIIF_LIST","features":[425]},{"name":"AVIIF_NOTIME","features":[425]},{"name":"AVIIF_NO_TIME","features":[425]},{"name":"AVIINDEXENTRY","features":[425]},{"name":"AVIMAINHEADER","features":[425]},{"name":"AVIMETAINDEX","features":[425]},{"name":"AVIOLDINDEX","features":[425]},{"name":"AVIPALCHANGE","features":[314,425]},{"name":"AVISF_DISABLED","features":[425]},{"name":"AVISF_VIDEO_PALCHANGES","features":[425]},{"name":"AVISTDINDEX","features":[425]},{"name":"AVISTDINDEX_DELTAFRAME","features":[425]},{"name":"AVISTDINDEX_ENTRY","features":[425]},{"name":"AVISTREAMHEADER","features":[425]},{"name":"AVISUPERINDEX","features":[425]},{"name":"AVIStreamHeader","features":[303,425]},{"name":"AVITCDLINDEX","features":[425]},{"name":"AVITCDLINDEX_ENTRY","features":[425]},{"name":"AVITIMECODEINDEX","features":[425]},{"name":"AVITIMEDINDEX","features":[425]},{"name":"AVITIMEDINDEX_ENTRY","features":[425]},{"name":"AVI_HEADERSIZE","features":[425]},{"name":"AVI_INDEX_IS_DATA","features":[425]},{"name":"AVI_INDEX_OF_CHUNKS","features":[425]},{"name":"AVI_INDEX_OF_INDEXES","features":[425]},{"name":"AVI_INDEX_OF_SUB_2FIELD","features":[425]},{"name":"AVI_INDEX_OF_TIMED_CHUNKS","features":[425]},{"name":"AVI_INDEX_SUB_2FIELD","features":[425]},{"name":"AVI_INDEX_SUB_DEFAULT","features":[425]},{"name":"AnalogVideoMask_MCE_NTSC","features":[425]},{"name":"AnalogVideoMask_MCE_PAL","features":[425]},{"name":"AnalogVideoMask_MCE_SECAM","features":[425]},{"name":"AnalogVideoStandard","features":[425]},{"name":"AnalogVideo_NTSC_433","features":[425]},{"name":"AnalogVideo_NTSC_M","features":[425]},{"name":"AnalogVideo_NTSC_M_J","features":[425]},{"name":"AnalogVideo_NTSC_Mask","features":[425]},{"name":"AnalogVideo_None","features":[425]},{"name":"AnalogVideo_PAL_60","features":[425]},{"name":"AnalogVideo_PAL_B","features":[425]},{"name":"AnalogVideo_PAL_D","features":[425]},{"name":"AnalogVideo_PAL_G","features":[425]},{"name":"AnalogVideo_PAL_H","features":[425]},{"name":"AnalogVideo_PAL_I","features":[425]},{"name":"AnalogVideo_PAL_M","features":[425]},{"name":"AnalogVideo_PAL_Mask","features":[425]},{"name":"AnalogVideo_PAL_N","features":[425]},{"name":"AnalogVideo_PAL_N_COMBO","features":[425]},{"name":"AnalogVideo_SECAM_B","features":[425]},{"name":"AnalogVideo_SECAM_D","features":[425]},{"name":"AnalogVideo_SECAM_G","features":[425]},{"name":"AnalogVideo_SECAM_H","features":[425]},{"name":"AnalogVideo_SECAM_K","features":[425]},{"name":"AnalogVideo_SECAM_K1","features":[425]},{"name":"AnalogVideo_SECAM_L","features":[425]},{"name":"AnalogVideo_SECAM_L1","features":[425]},{"name":"AnalogVideo_SECAM_Mask","features":[425]},{"name":"ApplicationTypeType","features":[425]},{"name":"Associated","features":[425]},{"name":"AssociationUnknown","features":[425]},{"name":"BDACOMP_EXCLUDE_TS_FROM_TR","features":[425]},{"name":"BDACOMP_INCLUDE_COMPONENTS_IN_TR","features":[425]},{"name":"BDACOMP_INCLUDE_LOCATOR_IN_TR","features":[425]},{"name":"BDACOMP_NOT_DEFINED","features":[425]},{"name":"BDANODE_DESCRIPTOR","features":[425]},{"name":"BDA_BCC_RATE_1_2","features":[425]},{"name":"BDA_BCC_RATE_1_3","features":[425]},{"name":"BDA_BCC_RATE_1_4","features":[425]},{"name":"BDA_BCC_RATE_2_3","features":[425]},{"name":"BDA_BCC_RATE_2_5","features":[425]},{"name":"BDA_BCC_RATE_3_4","features":[425]},{"name":"BDA_BCC_RATE_3_5","features":[425]},{"name":"BDA_BCC_RATE_4_5","features":[425]},{"name":"BDA_BCC_RATE_5_11","features":[425]},{"name":"BDA_BCC_RATE_5_6","features":[425]},{"name":"BDA_BCC_RATE_6_7","features":[425]},{"name":"BDA_BCC_RATE_7_8","features":[425]},{"name":"BDA_BCC_RATE_8_9","features":[425]},{"name":"BDA_BCC_RATE_9_10","features":[425]},{"name":"BDA_BCC_RATE_MAX","features":[425]},{"name":"BDA_BCC_RATE_NOT_DEFINED","features":[425]},{"name":"BDA_BCC_RATE_NOT_SET","features":[425]},{"name":"BDA_BUFFER","features":[425]},{"name":"BDA_CAS_CHECK_ENTITLEMENTTOKEN","features":[425]},{"name":"BDA_CAS_CLOSEMMIDATA","features":[425]},{"name":"BDA_CAS_CLOSE_MMIDIALOG","features":[425]},{"name":"BDA_CAS_OPENMMIDATA","features":[425]},{"name":"BDA_CAS_REQUESTTUNERDATA","features":[425]},{"name":"BDA_CA_MODULE_UI","features":[425]},{"name":"BDA_CHANGES_COMPLETE","features":[425]},{"name":"BDA_CHANGES_PENDING","features":[425]},{"name":"BDA_CHANGE_STATE","features":[425]},{"name":"BDA_CHAN_BANDWITH_NOT_DEFINED","features":[425]},{"name":"BDA_CHAN_BANDWITH_NOT_SET","features":[425]},{"name":"BDA_CONDITIONALACCESS_MMICLOSEREASON","features":[425]},{"name":"BDA_CONDITIONALACCESS_REQUESTTYPE","features":[425]},{"name":"BDA_CONDITIONALACCESS_SESSION_RESULT","features":[425]},{"name":"BDA_Channel","features":[425]},{"name":"BDA_Channel_Bandwidth","features":[425]},{"name":"BDA_Comp_Flags","features":[425]},{"name":"BDA_DISCOVERY_COMPLETE","features":[425]},{"name":"BDA_DISCOVERY_REQUIRED","features":[425]},{"name":"BDA_DISCOVERY_STATE","features":[425]},{"name":"BDA_DISCOVERY_UNSPECIFIED","features":[425]},{"name":"BDA_DISEQC_RESPONSE","features":[425]},{"name":"BDA_DISEQC_SEND","features":[425]},{"name":"BDA_DRM_DRMSTATUS","features":[425]},{"name":"BDA_DVBT2_L1_SIGNALLING_DATA","features":[425]},{"name":"BDA_DrmPairingError","features":[425]},{"name":"BDA_DrmPairing_Aborted","features":[425]},{"name":"BDA_DrmPairing_DrmInitFailed","features":[425]},{"name":"BDA_DrmPairing_DrmNotPaired","features":[425]},{"name":"BDA_DrmPairing_DrmRePairSoon","features":[425]},{"name":"BDA_DrmPairing_HardwareFailure","features":[425]},{"name":"BDA_DrmPairing_NeedIndiv","features":[425]},{"name":"BDA_DrmPairing_NeedRevocationData","features":[425]},{"name":"BDA_DrmPairing_NeedSDKUpdate","features":[425]},{"name":"BDA_DrmPairing_Other","features":[425]},{"name":"BDA_DrmPairing_Succeeded","features":[425]},{"name":"BDA_ETHERNET_ADDRESS","features":[425]},{"name":"BDA_ETHERNET_ADDRESS_LIST","features":[425]},{"name":"BDA_EVENT_ACCESS_DENIED","features":[425]},{"name":"BDA_EVENT_ACCESS_GRANTED","features":[425]},{"name":"BDA_EVENT_CHANNEL_ACQUIRED","features":[425]},{"name":"BDA_EVENT_CHANNEL_ACTIVATED","features":[425]},{"name":"BDA_EVENT_CHANNEL_DEACTIVATED","features":[425]},{"name":"BDA_EVENT_CHANNEL_LOST","features":[425]},{"name":"BDA_EVENT_CHANNEL_SOURCE_CHANGED","features":[425]},{"name":"BDA_EVENT_DATA_START","features":[425]},{"name":"BDA_EVENT_DATA_STOP","features":[425]},{"name":"BDA_EVENT_ID","features":[425]},{"name":"BDA_EVENT_OFFER_EXTENDED","features":[425]},{"name":"BDA_EVENT_PURCHASE_COMPLETED","features":[425]},{"name":"BDA_EVENT_SIGNAL_LOCK","features":[425]},{"name":"BDA_EVENT_SIGNAL_LOSS","features":[425]},{"name":"BDA_EVENT_SMART_CARD_INSERTED","features":[425]},{"name":"BDA_EVENT_SMART_CARD_REMOVED","features":[425]},{"name":"BDA_EVENT_SUBCHANNEL_ACQUIRED","features":[425]},{"name":"BDA_EVENT_SUBCHANNEL_ACTIVATED","features":[425]},{"name":"BDA_EVENT_SUBCHANNEL_DEACTIVATED","features":[425]},{"name":"BDA_EVENT_SUBCHANNEL_LOST","features":[425]},{"name":"BDA_EVENT_SUBCHANNEL_SOURCE_CHANGED","features":[425]},{"name":"BDA_E_ACCESS_DENIED","features":[425]},{"name":"BDA_E_BUFFER_TOO_SMALL","features":[425]},{"name":"BDA_E_DISABLED","features":[425]},{"name":"BDA_E_FAILURE","features":[425]},{"name":"BDA_E_INVALID_CAPTURE_TOKEN","features":[425]},{"name":"BDA_E_INVALID_ENTITLEMENT_TOKEN","features":[425]},{"name":"BDA_E_INVALID_HANDLE","features":[425]},{"name":"BDA_E_INVALID_LANGUAGE","features":[425]},{"name":"BDA_E_INVALID_PURCHASE_TOKEN","features":[425]},{"name":"BDA_E_INVALID_SCHEMA","features":[425]},{"name":"BDA_E_INVALID_TUNE_REQUEST","features":[425]},{"name":"BDA_E_INVALID_TYPE","features":[425]},{"name":"BDA_E_IPNETWORK_ADDRESS_NOT_FOUND","features":[425]},{"name":"BDA_E_IPNETWORK_ERROR","features":[425]},{"name":"BDA_E_IPNETWORK_TIMEOUT","features":[425]},{"name":"BDA_E_IPNETWORK_UNAVAILABLE","features":[425]},{"name":"BDA_E_NOT_FOUND","features":[425]},{"name":"BDA_E_NOT_IMPLEMENTED","features":[425]},{"name":"BDA_E_NO_HANDLER","features":[425]},{"name":"BDA_E_NO_MORE_DATA","features":[425]},{"name":"BDA_E_NO_MORE_EVENTS","features":[425]},{"name":"BDA_E_NO_SUCH_COMMAND","features":[425]},{"name":"BDA_E_OUT_OF_BOUNDS","features":[425]},{"name":"BDA_E_OUT_OF_MEMORY","features":[425]},{"name":"BDA_E_OUT_OF_RESOURCES","features":[425]},{"name":"BDA_E_READ_ONLY","features":[425]},{"name":"BDA_E_TIMEOUT_ELAPSED","features":[425]},{"name":"BDA_E_TUNER_CONFLICT","features":[425]},{"name":"BDA_E_TUNER_INITIALIZING","features":[425]},{"name":"BDA_E_TUNER_REQUIRED","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV01","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV02","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV03","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV04","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV05","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV06","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV07","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDV08","features":[425]},{"name":"BDA_E_TUNE_FAILED_SDVFF","features":[425]},{"name":"BDA_E_WMDRM_INVALID_CERTIFICATE","features":[425]},{"name":"BDA_E_WMDRM_INVALID_DATE","features":[425]},{"name":"BDA_E_WMDRM_INVALID_PROXIMITY","features":[425]},{"name":"BDA_E_WMDRM_INVALID_SIGNATURE","features":[425]},{"name":"BDA_E_WMDRM_INVALID_VERSION","features":[425]},{"name":"BDA_E_WMDRM_KEY_ID_NOT_FOUND","features":[425]},{"name":"BDA_E_WOULD_DISRUPT_STREAMING","features":[425]},{"name":"BDA_FEC_BCH","features":[425]},{"name":"BDA_FEC_LDPC","features":[425]},{"name":"BDA_FEC_MAX","features":[425]},{"name":"BDA_FEC_METHOD_NOT_DEFINED","features":[425]},{"name":"BDA_FEC_METHOD_NOT_SET","features":[425]},{"name":"BDA_FEC_RS_147_130","features":[425]},{"name":"BDA_FEC_RS_204_188","features":[425]},{"name":"BDA_FEC_VITERBI","features":[425]},{"name":"BDA_FILTERED_MULTICAST","features":[425]},{"name":"BDA_FREQUENCY_MULTIPLIER_NOT_DEFINED","features":[425]},{"name":"BDA_FREQUENCY_MULTIPLIER_NOT_SET","features":[425]},{"name":"BDA_FREQUENCY_NOT_DEFINED","features":[425]},{"name":"BDA_FREQUENCY_NOT_SET","features":[425]},{"name":"BDA_Frequency","features":[425]},{"name":"BDA_Frequency_Multiplier","features":[425]},{"name":"BDA_GDDS_DATA","features":[425]},{"name":"BDA_GDDS_DATATYPE","features":[425]},{"name":"BDA_GUARD_19_128","features":[425]},{"name":"BDA_GUARD_19_256","features":[425]},{"name":"BDA_GUARD_1_128","features":[425]},{"name":"BDA_GUARD_1_16","features":[425]},{"name":"BDA_GUARD_1_32","features":[425]},{"name":"BDA_GUARD_1_4","features":[425]},{"name":"BDA_GUARD_1_8","features":[425]},{"name":"BDA_GUARD_MAX","features":[425]},{"name":"BDA_GUARD_NOT_DEFINED","features":[425]},{"name":"BDA_GUARD_NOT_SET","features":[425]},{"name":"BDA_HALPHA_1","features":[425]},{"name":"BDA_HALPHA_2","features":[425]},{"name":"BDA_HALPHA_4","features":[425]},{"name":"BDA_HALPHA_MAX","features":[425]},{"name":"BDA_HALPHA_NOT_DEFINED","features":[425]},{"name":"BDA_HALPHA_NOT_SET","features":[425]},{"name":"BDA_IPv4_ADDRESS","features":[425]},{"name":"BDA_IPv4_ADDRESS_LIST","features":[425]},{"name":"BDA_IPv6_ADDRESS","features":[425]},{"name":"BDA_IPv6_ADDRESS_LIST","features":[425]},{"name":"BDA_ISDBCAS_EMG_REQ","features":[425]},{"name":"BDA_ISDBCAS_REQUESTHEADER","features":[425]},{"name":"BDA_ISDBCAS_RESPONSEDATA","features":[425]},{"name":"BDA_LNB_SOURCE_A","features":[425]},{"name":"BDA_LNB_SOURCE_B","features":[425]},{"name":"BDA_LNB_SOURCE_C","features":[425]},{"name":"BDA_LNB_SOURCE_D","features":[425]},{"name":"BDA_LNB_SOURCE_MAX","features":[425]},{"name":"BDA_LNB_SOURCE_NOT_DEFINED","features":[425]},{"name":"BDA_LNB_SOURCE_NOT_SET","features":[425]},{"name":"BDA_MOD_1024QAM","features":[425]},{"name":"BDA_MOD_112QAM","features":[425]},{"name":"BDA_MOD_128QAM","features":[425]},{"name":"BDA_MOD_160QAM","features":[425]},{"name":"BDA_MOD_16APSK","features":[425]},{"name":"BDA_MOD_16QAM","features":[425]},{"name":"BDA_MOD_16VSB","features":[425]},{"name":"BDA_MOD_192QAM","features":[425]},{"name":"BDA_MOD_224QAM","features":[425]},{"name":"BDA_MOD_256QAM","features":[425]},{"name":"BDA_MOD_320QAM","features":[425]},{"name":"BDA_MOD_32APSK","features":[425]},{"name":"BDA_MOD_32QAM","features":[425]},{"name":"BDA_MOD_384QAM","features":[425]},{"name":"BDA_MOD_448QAM","features":[425]},{"name":"BDA_MOD_512QAM","features":[425]},{"name":"BDA_MOD_640QAM","features":[425]},{"name":"BDA_MOD_64QAM","features":[425]},{"name":"BDA_MOD_768QAM","features":[425]},{"name":"BDA_MOD_80QAM","features":[425]},{"name":"BDA_MOD_896QAM","features":[425]},{"name":"BDA_MOD_8PSK","features":[425]},{"name":"BDA_MOD_8VSB","features":[425]},{"name":"BDA_MOD_96QAM","features":[425]},{"name":"BDA_MOD_ANALOG_AMPLITUDE","features":[425]},{"name":"BDA_MOD_ANALOG_FREQUENCY","features":[425]},{"name":"BDA_MOD_BPSK","features":[425]},{"name":"BDA_MOD_DIRECTV","features":[425]},{"name":"BDA_MOD_ISDB_S_TMCC","features":[425]},{"name":"BDA_MOD_ISDB_T_TMCC","features":[425]},{"name":"BDA_MOD_MAX","features":[425]},{"name":"BDA_MOD_NBC_8PSK","features":[425]},{"name":"BDA_MOD_NBC_QPSK","features":[425]},{"name":"BDA_MOD_NOT_DEFINED","features":[425]},{"name":"BDA_MOD_NOT_SET","features":[425]},{"name":"BDA_MOD_OQPSK","features":[425]},{"name":"BDA_MOD_QPSK","features":[425]},{"name":"BDA_MOD_RF","features":[425]},{"name":"BDA_MULTICAST_MODE","features":[425]},{"name":"BDA_MUX_PIDLISTITEM","features":[425]},{"name":"BDA_NO_MULTICAST","features":[425]},{"name":"BDA_PID_MAP","features":[425]},{"name":"BDA_PID_UNMAP","features":[425]},{"name":"BDA_PILOT_MAX","features":[425]},{"name":"BDA_PILOT_NOT_DEFINED","features":[425]},{"name":"BDA_PILOT_NOT_SET","features":[425]},{"name":"BDA_PILOT_OFF","features":[425]},{"name":"BDA_PILOT_ON","features":[425]},{"name":"BDA_PLP_ID_NOT_SET","features":[425]},{"name":"BDA_POLARISATION_CIRCULAR_L","features":[425]},{"name":"BDA_POLARISATION_CIRCULAR_R","features":[425]},{"name":"BDA_POLARISATION_LINEAR_H","features":[425]},{"name":"BDA_POLARISATION_LINEAR_V","features":[425]},{"name":"BDA_POLARISATION_MAX","features":[425]},{"name":"BDA_POLARISATION_NOT_DEFINED","features":[425]},{"name":"BDA_POLARISATION_NOT_SET","features":[425]},{"name":"BDA_PROGRAM_PID_LIST","features":[425]},{"name":"BDA_PROMISCUOUS_MULTICAST","features":[425]},{"name":"BDA_RANGE_NOT_DEFINED","features":[425]},{"name":"BDA_RANGE_NOT_SET","features":[425]},{"name":"BDA_RATING_PINRESET","features":[425]},{"name":"BDA_ROLL_OFF_20","features":[425]},{"name":"BDA_ROLL_OFF_25","features":[425]},{"name":"BDA_ROLL_OFF_35","features":[425]},{"name":"BDA_ROLL_OFF_MAX","features":[425]},{"name":"BDA_ROLL_OFF_NOT_DEFINED","features":[425]},{"name":"BDA_ROLL_OFF_NOT_SET","features":[425]},{"name":"BDA_Range","features":[425]},{"name":"BDA_SCAN_CAPABILTIES","features":[425]},{"name":"BDA_SCAN_MOD_1024QAM","features":[425]},{"name":"BDA_SCAN_MOD_112QAM","features":[425]},{"name":"BDA_SCAN_MOD_128QAM","features":[425]},{"name":"BDA_SCAN_MOD_160QAM","features":[425]},{"name":"BDA_SCAN_MOD_16APSK","features":[425]},{"name":"BDA_SCAN_MOD_16QAM","features":[425]},{"name":"BDA_SCAN_MOD_16VSB","features":[425]},{"name":"BDA_SCAN_MOD_192QAM","features":[425]},{"name":"BDA_SCAN_MOD_224QAM","features":[425]},{"name":"BDA_SCAN_MOD_256QAM","features":[425]},{"name":"BDA_SCAN_MOD_320QAM","features":[425]},{"name":"BDA_SCAN_MOD_32APSK","features":[425]},{"name":"BDA_SCAN_MOD_32QAM","features":[425]},{"name":"BDA_SCAN_MOD_384QAM","features":[425]},{"name":"BDA_SCAN_MOD_448QAM","features":[425]},{"name":"BDA_SCAN_MOD_512QAM","features":[425]},{"name":"BDA_SCAN_MOD_640QAM","features":[425]},{"name":"BDA_SCAN_MOD_64QAM","features":[425]},{"name":"BDA_SCAN_MOD_768QAM","features":[425]},{"name":"BDA_SCAN_MOD_80QAM","features":[425]},{"name":"BDA_SCAN_MOD_896QAM","features":[425]},{"name":"BDA_SCAN_MOD_8PSK","features":[425]},{"name":"BDA_SCAN_MOD_8VSB","features":[425]},{"name":"BDA_SCAN_MOD_96QAM","features":[425]},{"name":"BDA_SCAN_MOD_AM_RADIO","features":[425]},{"name":"BDA_SCAN_MOD_BPSK","features":[425]},{"name":"BDA_SCAN_MOD_FM_RADIO","features":[425]},{"name":"BDA_SCAN_MOD_OQPSK","features":[425]},{"name":"BDA_SCAN_MOD_QPSK","features":[425]},{"name":"BDA_SCAN_MOD_RF","features":[425]},{"name":"BDA_SCAN_START","features":[425]},{"name":"BDA_SCAN_STATE","features":[425]},{"name":"BDA_SIGNAL_ACTIVE","features":[425]},{"name":"BDA_SIGNAL_INACTIVE","features":[425]},{"name":"BDA_SIGNAL_STATE","features":[425]},{"name":"BDA_SIGNAL_TIMEOUTS","features":[425]},{"name":"BDA_SIGNAL_UNAVAILABLE","features":[425]},{"name":"BDA_SPECTRAL_INVERSION_AUTOMATIC","features":[425]},{"name":"BDA_SPECTRAL_INVERSION_INVERTED","features":[425]},{"name":"BDA_SPECTRAL_INVERSION_MAX","features":[425]},{"name":"BDA_SPECTRAL_INVERSION_NORMAL","features":[425]},{"name":"BDA_SPECTRAL_INVERSION_NOT_DEFINED","features":[425]},{"name":"BDA_SPECTRAL_INVERSION_NOT_SET","features":[425]},{"name":"BDA_STRING","features":[425]},{"name":"BDA_TABLE_SECTION","features":[425]},{"name":"BDA_TEMPLATE_CONNECTION","features":[425]},{"name":"BDA_TEMPLATE_PIN_JOINT","features":[425]},{"name":"BDA_TS_SELECTORINFO","features":[425]},{"name":"BDA_TS_SELECTORINFO_ISDBS_EXT","features":[425]},{"name":"BDA_TUNER_DIAGNOSTICS","features":[425]},{"name":"BDA_TUNER_TUNERSTATE","features":[425]},{"name":"BDA_UNDEFINED_CHANNEL","features":[425]},{"name":"BDA_UNITIALIZED_MPEG2STREAMTYPE","features":[425]},{"name":"BDA_USERACTIVITY_INTERVAL","features":[425]},{"name":"BDA_WMDRMTUNER_PIDPROTECTION","features":[425]},{"name":"BDA_WMDRMTUNER_PURCHASEENTITLEMENT","features":[425]},{"name":"BDA_WMDRM_KEYINFOLIST","features":[425]},{"name":"BDA_WMDRM_RENEWLICENSE","features":[425]},{"name":"BDA_WMDRM_STATUS","features":[425]},{"name":"BDA_XMIT_MODE_16K","features":[425]},{"name":"BDA_XMIT_MODE_1K","features":[425]},{"name":"BDA_XMIT_MODE_2K","features":[425]},{"name":"BDA_XMIT_MODE_2K_INTERLEAVED","features":[425]},{"name":"BDA_XMIT_MODE_32K","features":[425]},{"name":"BDA_XMIT_MODE_4K","features":[425]},{"name":"BDA_XMIT_MODE_4K_INTERLEAVED","features":[425]},{"name":"BDA_XMIT_MODE_8K","features":[425]},{"name":"BDA_XMIT_MODE_MAX","features":[425]},{"name":"BDA_XMIT_MODE_NOT_DEFINED","features":[425]},{"name":"BDA_XMIT_MODE_NOT_SET","features":[425]},{"name":"BinaryConvolutionCodeRate","features":[425]},{"name":"CATEGORY_COUNT","features":[425]},{"name":"CDEF_BYPASS_CLASS_MANAGER","features":[425]},{"name":"CDEF_CLASS_DEFAULT","features":[425]},{"name":"CDEF_DEVMON_CMGR_DEVICE","features":[425]},{"name":"CDEF_DEVMON_DMO","features":[425]},{"name":"CDEF_DEVMON_FILTER","features":[425]},{"name":"CDEF_DEVMON_PNP_DEVICE","features":[425]},{"name":"CDEF_DEVMON_SELECTIVE_MASK","features":[425]},{"name":"CDEF_MERIT_ABOVE_DO_NOT_USE","features":[425]},{"name":"CFSTR_VFW_FILTERLIST","features":[425]},{"name":"CHARS_IN_GUID","features":[425]},{"name":"CK_INDEX","features":[425]},{"name":"CK_NOCOLORKEY","features":[425]},{"name":"CK_RGB","features":[425]},{"name":"CLSID_AMAudioData","features":[425]},{"name":"CLSID_AMAudioStream","features":[425]},{"name":"CLSID_AMDirectDrawStream","features":[425]},{"name":"CLSID_AMMediaTypeStream","features":[425]},{"name":"CLSID_AMMultiMediaStream","features":[425]},{"name":"CLSID_DMOFilterCategory","features":[425]},{"name":"CLSID_DMOWrapperFilter","features":[425]},{"name":"CLSID_PBDA_AUX_DATA_TYPE","features":[425]},{"name":"CLSID_PBDA_Encoder_DATA_TYPE","features":[425]},{"name":"CLSID_PBDA_FDC_DATA_TYPE","features":[425]},{"name":"CLSID_PBDA_GDDS_DATA_TYPE","features":[425]},{"name":"COLORKEY","features":[303,425]},{"name":"COLORKEY_TYPE","features":[425]},{"name":"COMPLETION_STATUS_FLAGS","features":[425]},{"name":"COMPSTAT_ABORT","features":[425]},{"name":"COMPSTAT_NOUPDATEOK","features":[425]},{"name":"COMPSTAT_WAIT","features":[425]},{"name":"CONDITIONALACCESS_ABORTED","features":[425]},{"name":"CONDITIONALACCESS_ACCESS_NOT_POSSIBLE","features":[425]},{"name":"CONDITIONALACCESS_ACCESS_POSSIBLE","features":[425]},{"name":"CONDITIONALACCESS_ACCESS_POSSIBLE_NO_STREAMING_DISRUPTION","features":[425]},{"name":"CONDITIONALACCESS_ACCESS_UNSPECIFIED","features":[425]},{"name":"CONDITIONALACCESS_CLOSED_ITSELF","features":[425]},{"name":"CONDITIONALACCESS_DIALOG_FOCUS_CHANGE","features":[425]},{"name":"CONDITIONALACCESS_DIALOG_TIMEOUT","features":[425]},{"name":"CONDITIONALACCESS_DIALOG_USER_DISMISSED","features":[425]},{"name":"CONDITIONALACCESS_DIALOG_USER_NOT_AVAILABLE","features":[425]},{"name":"CONDITIONALACCESS_ENDED_NOCHANGE","features":[425]},{"name":"CONDITIONALACCESS_SUCCESSFULL","features":[425]},{"name":"CONDITIONALACCESS_TUNER_REQUESTED_CLOSE","features":[425]},{"name":"CONDITIONALACCESS_UNSPECIFIED","features":[425]},{"name":"COPP_ACP_ForceDWORD","features":[425]},{"name":"COPP_ACP_Level0","features":[425]},{"name":"COPP_ACP_Level1","features":[425]},{"name":"COPP_ACP_Level2","features":[425]},{"name":"COPP_ACP_Level3","features":[425]},{"name":"COPP_ACP_LevelMax","features":[425]},{"name":"COPP_ACP_LevelMin","features":[425]},{"name":"COPP_ACP_Protection_Level","features":[425]},{"name":"COPP_AspectRatio_EN300294_Box14by9Center","features":[425]},{"name":"COPP_AspectRatio_EN300294_Box14by9Top","features":[425]},{"name":"COPP_AspectRatio_EN300294_Box16by9Center","features":[425]},{"name":"COPP_AspectRatio_EN300294_Box16by9Top","features":[425]},{"name":"COPP_AspectRatio_EN300294_BoxGT16by9Center","features":[425]},{"name":"COPP_AspectRatio_EN300294_FullFormat16by9Anamorphic","features":[425]},{"name":"COPP_AspectRatio_EN300294_FullFormat4by3","features":[425]},{"name":"COPP_AspectRatio_EN300294_FullFormat4by3ProtectedCenter","features":[425]},{"name":"COPP_AspectRatio_ForceDWORD","features":[425]},{"name":"COPP_BusType","features":[425]},{"name":"COPP_BusType_AGP","features":[425]},{"name":"COPP_BusType_ForceDWORD","features":[425]},{"name":"COPP_BusType_Integrated","features":[425]},{"name":"COPP_BusType_PCI","features":[425]},{"name":"COPP_BusType_PCIExpress","features":[425]},{"name":"COPP_BusType_PCIX","features":[425]},{"name":"COPP_BusType_Unknown","features":[425]},{"name":"COPP_CGMSA_CopyFreely","features":[425]},{"name":"COPP_CGMSA_CopyNever","features":[425]},{"name":"COPP_CGMSA_CopyNoMore","features":[425]},{"name":"COPP_CGMSA_CopyOneGeneration","features":[425]},{"name":"COPP_CGMSA_Disabled","features":[425]},{"name":"COPP_CGMSA_ForceDWORD","features":[425]},{"name":"COPP_CGMSA_LevelMax","features":[425]},{"name":"COPP_CGMSA_LevelMin","features":[425]},{"name":"COPP_CGMSA_Protection_Level","features":[425]},{"name":"COPP_CGMSA_RedistributionControlRequired","features":[425]},{"name":"COPP_ConnectorType","features":[425]},{"name":"COPP_ConnectorType_ComponentVideo","features":[425]},{"name":"COPP_ConnectorType_CompositeVideo","features":[425]},{"name":"COPP_ConnectorType_DVI","features":[425]},{"name":"COPP_ConnectorType_D_JPN","features":[425]},{"name":"COPP_ConnectorType_ForceDWORD","features":[425]},{"name":"COPP_ConnectorType_HDMI","features":[425]},{"name":"COPP_ConnectorType_Internal","features":[425]},{"name":"COPP_ConnectorType_LVDS","features":[425]},{"name":"COPP_ConnectorType_SVideo","features":[425]},{"name":"COPP_ConnectorType_TMDS","features":[425]},{"name":"COPP_ConnectorType_Unknown","features":[425]},{"name":"COPP_ConnectorType_VGA","features":[425]},{"name":"COPP_DefaultProtectionLevel","features":[425]},{"name":"COPP_HDCPFlagsReserved","features":[425]},{"name":"COPP_HDCPRepeater","features":[425]},{"name":"COPP_HDCP_ForceDWORD","features":[425]},{"name":"COPP_HDCP_Level0","features":[425]},{"name":"COPP_HDCP_Level1","features":[425]},{"name":"COPP_HDCP_LevelMax","features":[425]},{"name":"COPP_HDCP_LevelMin","features":[425]},{"name":"COPP_HDCP_Protection_Level","features":[425]},{"name":"COPP_ImageAspectRatio_EN300294","features":[425]},{"name":"COPP_ImageAspectRatio_EN300294_Mask","features":[425]},{"name":"COPP_LinkLost","features":[425]},{"name":"COPP_NoProtectionLevelAvailable","features":[425]},{"name":"COPP_ProtectionStandard_ARIBTRB15_1125i","features":[425]},{"name":"COPP_ProtectionStandard_ARIBTRB15_525i","features":[425]},{"name":"COPP_ProtectionStandard_ARIBTRB15_525p","features":[425]},{"name":"COPP_ProtectionStandard_ARIBTRB15_750p","features":[425]},{"name":"COPP_ProtectionStandard_CEA805A_TypeA_1125i","features":[425]},{"name":"COPP_ProtectionStandard_CEA805A_TypeA_525p","features":[425]},{"name":"COPP_ProtectionStandard_CEA805A_TypeA_750p","features":[425]},{"name":"COPP_ProtectionStandard_CEA805A_TypeB_1125i","features":[425]},{"name":"COPP_ProtectionStandard_CEA805A_TypeB_525p","features":[425]},{"name":"COPP_ProtectionStandard_CEA805A_TypeB_750p","features":[425]},{"name":"COPP_ProtectionStandard_EIA608B_525","features":[425]},{"name":"COPP_ProtectionStandard_EN300294_625i","features":[425]},{"name":"COPP_ProtectionStandard_IEC61880_2_525i","features":[425]},{"name":"COPP_ProtectionStandard_IEC61880_525i","features":[425]},{"name":"COPP_ProtectionStandard_IEC62375_625p","features":[425]},{"name":"COPP_ProtectionStandard_Mask","features":[425]},{"name":"COPP_ProtectionStandard_None","features":[425]},{"name":"COPP_ProtectionStandard_Reserved","features":[425]},{"name":"COPP_ProtectionStandard_Unknown","features":[425]},{"name":"COPP_RenegotiationRequired","features":[425]},{"name":"COPP_StatusFlags","features":[425]},{"name":"COPP_StatusFlagsReserved","features":[425]},{"name":"COPP_StatusHDCPFlags","features":[425]},{"name":"COPP_StatusNormal","features":[425]},{"name":"COPP_TVProtectionStandard","features":[425]},{"name":"CameraControlFlags","features":[425]},{"name":"CameraControlProperty","features":[425]},{"name":"CameraControl_Exposure","features":[425]},{"name":"CameraControl_Flags_Auto","features":[425]},{"name":"CameraControl_Flags_Manual","features":[425]},{"name":"CameraControl_Focus","features":[425]},{"name":"CameraControl_Iris","features":[425]},{"name":"CameraControl_Pan","features":[425]},{"name":"CameraControl_Roll","features":[425]},{"name":"CameraControl_Tilt","features":[425]},{"name":"CameraControl_Zoom","features":[425]},{"name":"CardDataChanged","features":[425]},{"name":"CardError","features":[425]},{"name":"CardFirmwareUpgrade","features":[425]},{"name":"CardInserted","features":[425]},{"name":"CardRemoved","features":[425]},{"name":"CategoryAudio","features":[425]},{"name":"CategoryCaptions","features":[425]},{"name":"CategoryData","features":[425]},{"name":"CategoryNotSet","features":[425]},{"name":"CategoryOther","features":[425]},{"name":"CategorySubtitles","features":[425]},{"name":"CategorySuperimpose","features":[425]},{"name":"CategoryText","features":[425]},{"name":"CategoryVideo","features":[425]},{"name":"ComponentCategory","features":[425]},{"name":"ComponentStatus","features":[425]},{"name":"CompressionCaps","features":[425]},{"name":"CompressionCaps_CanBFrame","features":[425]},{"name":"CompressionCaps_CanCrunch","features":[425]},{"name":"CompressionCaps_CanKeyFrame","features":[425]},{"name":"CompressionCaps_CanQuality","features":[425]},{"name":"CompressionCaps_CanWindow","features":[425]},{"name":"ConstantBitRate","features":[425]},{"name":"DDSFF_FLAGS","features":[425]},{"name":"DDSFF_PROGRESSIVERENDER","features":[425]},{"name":"DECIMATION_DEFAULT","features":[425]},{"name":"DECIMATION_LEGACY","features":[425]},{"name":"DECIMATION_USAGE","features":[425]},{"name":"DECIMATION_USE_DECODER_ONLY","features":[425]},{"name":"DECIMATION_USE_OVERLAY_ONLY","features":[425]},{"name":"DECIMATION_USE_VIDEOPORT_ONLY","features":[425]},{"name":"DECODER_CAP_NOTSUPPORTED","features":[425]},{"name":"DECODER_CAP_SUPPORTED","features":[425]},{"name":"DISPLAY_16x9","features":[425]},{"name":"DISPLAY_4x3_LETTERBOX_PREFERRED","features":[425]},{"name":"DISPLAY_4x3_PANSCAN_PREFERRED","features":[425]},{"name":"DISPLAY_CONTENT_DEFAULT","features":[425]},{"name":"DOLBY_AC3_AUDIO","features":[425]},{"name":"DOLBY_DIGITAL_PLUS_AUDIO_ATSC","features":[425]},{"name":"DVBSystemType","features":[425]},{"name":"DVB_Cable","features":[425]},{"name":"DVB_Satellite","features":[425]},{"name":"DVB_Terrestrial","features":[425]},{"name":"DVDECODERRESOLUTION_180x120","features":[425]},{"name":"DVDECODERRESOLUTION_360x240","features":[425]},{"name":"DVDECODERRESOLUTION_720x480","features":[425]},{"name":"DVDECODERRESOLUTION_88x60","features":[425]},{"name":"DVD_ATR","features":[425]},{"name":"DVD_AUDIO_APPMODE","features":[425]},{"name":"DVD_AUDIO_CAPS_AC3","features":[425]},{"name":"DVD_AUDIO_CAPS_DTS","features":[425]},{"name":"DVD_AUDIO_CAPS_LPCM","features":[425]},{"name":"DVD_AUDIO_CAPS_MPEG2","features":[425]},{"name":"DVD_AUDIO_CAPS_SDDS","features":[425]},{"name":"DVD_AUDIO_FORMAT","features":[425]},{"name":"DVD_AUDIO_LANG_EXT","features":[425]},{"name":"DVD_AUD_EXT_Captions","features":[425]},{"name":"DVD_AUD_EXT_DirectorComments1","features":[425]},{"name":"DVD_AUD_EXT_DirectorComments2","features":[425]},{"name":"DVD_AUD_EXT_NotSpecified","features":[425]},{"name":"DVD_AUD_EXT_VisuallyImpaired","features":[425]},{"name":"DVD_AppMode_Karaoke","features":[425]},{"name":"DVD_AppMode_Not_Specified","features":[425]},{"name":"DVD_AppMode_Other","features":[425]},{"name":"DVD_Assignment_LR","features":[425]},{"name":"DVD_Assignment_LR1","features":[425]},{"name":"DVD_Assignment_LR12","features":[425]},{"name":"DVD_Assignment_LRM","features":[425]},{"name":"DVD_Assignment_LRM1","features":[425]},{"name":"DVD_Assignment_LRM12","features":[425]},{"name":"DVD_Assignment_reserved0","features":[425]},{"name":"DVD_Assignment_reserved1","features":[425]},{"name":"DVD_AudioAttributes","features":[303,425]},{"name":"DVD_AudioDuringFFwdRew","features":[425]},{"name":"DVD_AudioFormat_AC3","features":[425]},{"name":"DVD_AudioFormat_DTS","features":[425]},{"name":"DVD_AudioFormat_LPCM","features":[425]},{"name":"DVD_AudioFormat_MPEG1","features":[425]},{"name":"DVD_AudioFormat_MPEG1_DRC","features":[425]},{"name":"DVD_AudioFormat_MPEG2","features":[425]},{"name":"DVD_AudioFormat_MPEG2_DRC","features":[425]},{"name":"DVD_AudioFormat_Other","features":[425]},{"name":"DVD_AudioFormat_SDDS","features":[425]},{"name":"DVD_AudioMode_Karaoke","features":[425]},{"name":"DVD_AudioMode_None","features":[425]},{"name":"DVD_AudioMode_Other","features":[425]},{"name":"DVD_AudioMode_Surround","features":[425]},{"name":"DVD_CMD_FLAGS","features":[425]},{"name":"DVD_CMD_FLAG_Block","features":[425]},{"name":"DVD_CMD_FLAG_EndAfterRendered","features":[425]},{"name":"DVD_CMD_FLAG_Flush","features":[425]},{"name":"DVD_CMD_FLAG_None","features":[425]},{"name":"DVD_CMD_FLAG_SendEvents","features":[425]},{"name":"DVD_CMD_FLAG_StartWhenRendered","features":[425]},{"name":"DVD_CacheSizeInMB","features":[425]},{"name":"DVD_Channel_Audio","features":[425]},{"name":"DVD_CharSet_ISO646","features":[425]},{"name":"DVD_CharSet_ISO8859_1","features":[425]},{"name":"DVD_CharSet_JIS_Roman_Kanji","features":[425]},{"name":"DVD_CharSet_ShiftJIS_Kanji_Roman_Katakana","features":[425]},{"name":"DVD_CharSet_Unicode","features":[425]},{"name":"DVD_DECODER_CAPS","features":[425]},{"name":"DVD_DEFAULT_AUDIO_STREAM","features":[425]},{"name":"DVD_DIR_BACKWARD","features":[425]},{"name":"DVD_DIR_FORWARD","features":[425]},{"name":"DVD_DISC_SIDE","features":[425]},{"name":"DVD_DOMAIN","features":[425]},{"name":"DVD_DOMAIN_FirstPlay","features":[425]},{"name":"DVD_DOMAIN_Stop","features":[425]},{"name":"DVD_DOMAIN_Title","features":[425]},{"name":"DVD_DOMAIN_VideoManagerMenu","features":[425]},{"name":"DVD_DOMAIN_VideoTitleSetMenu","features":[425]},{"name":"DVD_DisableStillThrottle","features":[425]},{"name":"DVD_ERROR","features":[425]},{"name":"DVD_ERROR_CopyProtectFail","features":[425]},{"name":"DVD_ERROR_CopyProtectOutputFail","features":[425]},{"name":"DVD_ERROR_CopyProtectOutputNotSupported","features":[425]},{"name":"DVD_ERROR_IncompatibleDiscAndDecoderRegions","features":[425]},{"name":"DVD_ERROR_IncompatibleSystemAndDecoderRegions","features":[425]},{"name":"DVD_ERROR_InvalidDVD1_0Disc","features":[425]},{"name":"DVD_ERROR_InvalidDiscRegion","features":[425]},{"name":"DVD_ERROR_LowParentalLevel","features":[425]},{"name":"DVD_ERROR_MacrovisionFail","features":[425]},{"name":"DVD_ERROR_Unexpected","features":[425]},{"name":"DVD_EnableCC","features":[425]},{"name":"DVD_EnableESOutput","features":[425]},{"name":"DVD_EnableExtendedCopyProtectErrors","features":[425]},{"name":"DVD_EnableLoggingEvents","features":[425]},{"name":"DVD_EnableNonblockingAPIs","features":[425]},{"name":"DVD_EnablePortableBookmarks","features":[425]},{"name":"DVD_EnableStreaming","features":[425]},{"name":"DVD_EnableTitleLength","features":[425]},{"name":"DVD_FPS_25","features":[425]},{"name":"DVD_FPS_30NonDrop","features":[425]},{"name":"DVD_FRAMERATE","features":[425]},{"name":"DVD_General_Comments","features":[425]},{"name":"DVD_General_Name","features":[425]},{"name":"DVD_HMSF_TIMECODE","features":[425]},{"name":"DVD_HMSF_TimeCodeEvents","features":[425]},{"name":"DVD_IncreaseOutputControl","features":[425]},{"name":"DVD_KARAOKE_ASSIGNMENT","features":[425]},{"name":"DVD_KARAOKE_CONTENTS","features":[425]},{"name":"DVD_KARAOKE_DOWNMIX","features":[425]},{"name":"DVD_KaraokeAttributes","features":[303,425]},{"name":"DVD_Karaoke_GuideMelody1","features":[425]},{"name":"DVD_Karaoke_GuideMelody2","features":[425]},{"name":"DVD_Karaoke_GuideMelodyA","features":[425]},{"name":"DVD_Karaoke_GuideMelodyB","features":[425]},{"name":"DVD_Karaoke_GuideVocal1","features":[425]},{"name":"DVD_Karaoke_GuideVocal2","features":[425]},{"name":"DVD_Karaoke_SoundEffectA","features":[425]},{"name":"DVD_Karaoke_SoundEffectB","features":[425]},{"name":"DVD_MENU_Angle","features":[425]},{"name":"DVD_MENU_Audio","features":[425]},{"name":"DVD_MENU_Chapter","features":[425]},{"name":"DVD_MENU_ID","features":[425]},{"name":"DVD_MENU_Root","features":[425]},{"name":"DVD_MENU_Subpicture","features":[425]},{"name":"DVD_MENU_Title","features":[425]},{"name":"DVD_MUA_Coeff","features":[425]},{"name":"DVD_MUA_MixingInfo","features":[303,425]},{"name":"DVD_MaxReadBurstInKB","features":[425]},{"name":"DVD_MenuAttributes","features":[303,425]},{"name":"DVD_Mix_0to0","features":[425]},{"name":"DVD_Mix_0to1","features":[425]},{"name":"DVD_Mix_1to0","features":[425]},{"name":"DVD_Mix_1to1","features":[425]},{"name":"DVD_Mix_2to0","features":[425]},{"name":"DVD_Mix_2to1","features":[425]},{"name":"DVD_Mix_3to0","features":[425]},{"name":"DVD_Mix_3to1","features":[425]},{"name":"DVD_Mix_4to0","features":[425]},{"name":"DVD_Mix_4to1","features":[425]},{"name":"DVD_Mix_Lto0","features":[425]},{"name":"DVD_Mix_Lto1","features":[425]},{"name":"DVD_Mix_Rto0","features":[425]},{"name":"DVD_Mix_Rto1","features":[425]},{"name":"DVD_MultichannelAudioAttributes","features":[303,425]},{"name":"DVD_NavCmdType","features":[425]},{"name":"DVD_NavCmdType_Button","features":[425]},{"name":"DVD_NavCmdType_Cell","features":[425]},{"name":"DVD_NavCmdType_Post","features":[425]},{"name":"DVD_NavCmdType_Pre","features":[425]},{"name":"DVD_NotifyParentalLevelChange","features":[425]},{"name":"DVD_NotifyPositionChange","features":[425]},{"name":"DVD_OPTION_FLAG","features":[425]},{"name":"DVD_Other_Cut","features":[425]},{"name":"DVD_Other_Scene","features":[425]},{"name":"DVD_Other_Take","features":[425]},{"name":"DVD_PARENTAL_LEVEL","features":[425]},{"name":"DVD_PARENTAL_LEVEL_1","features":[425]},{"name":"DVD_PARENTAL_LEVEL_2","features":[425]},{"name":"DVD_PARENTAL_LEVEL_3","features":[425]},{"name":"DVD_PARENTAL_LEVEL_4","features":[425]},{"name":"DVD_PARENTAL_LEVEL_5","features":[425]},{"name":"DVD_PARENTAL_LEVEL_6","features":[425]},{"name":"DVD_PARENTAL_LEVEL_7","features":[425]},{"name":"DVD_PARENTAL_LEVEL_8","features":[425]},{"name":"DVD_PB_STOPPED","features":[425]},{"name":"DVD_PB_STOPPED_CopyProtectFailure","features":[425]},{"name":"DVD_PB_STOPPED_CopyProtectOutputFailure","features":[425]},{"name":"DVD_PB_STOPPED_CopyProtectOutputNotSupported","features":[425]},{"name":"DVD_PB_STOPPED_DiscEjected","features":[425]},{"name":"DVD_PB_STOPPED_DiscReadError","features":[425]},{"name":"DVD_PB_STOPPED_IllegalNavCommand","features":[425]},{"name":"DVD_PB_STOPPED_MacrovisionFailure","features":[425]},{"name":"DVD_PB_STOPPED_NoBranch","features":[425]},{"name":"DVD_PB_STOPPED_NoFirstPlayDomain","features":[425]},{"name":"DVD_PB_STOPPED_Other","features":[425]},{"name":"DVD_PB_STOPPED_ParentalFailure","features":[425]},{"name":"DVD_PB_STOPPED_PlayChapterAutoStop","features":[425]},{"name":"DVD_PB_STOPPED_PlayPeriodAutoStop","features":[425]},{"name":"DVD_PB_STOPPED_RegionFailure","features":[425]},{"name":"DVD_PB_STOPPED_Reset","features":[425]},{"name":"DVD_PB_STOPPED_StopCommand","features":[425]},{"name":"DVD_PLAYBACK_LOCATION","features":[425]},{"name":"DVD_PLAYBACK_LOCATION2","features":[425]},{"name":"DVD_PLAY_DIRECTION","features":[425]},{"name":"DVD_PREFERRED_DISPLAY_MODE","features":[425]},{"name":"DVD_REGION","features":[425]},{"name":"DVD_RELATIVE_BUTTON","features":[425]},{"name":"DVD_ReadBurstPeriodInMS","features":[425]},{"name":"DVD_Relative_Left","features":[425]},{"name":"DVD_Relative_Lower","features":[425]},{"name":"DVD_Relative_Right","features":[425]},{"name":"DVD_Relative_Upper","features":[425]},{"name":"DVD_ResetOnStop","features":[425]},{"name":"DVD_RestartDisc","features":[425]},{"name":"DVD_SIDE_A","features":[425]},{"name":"DVD_SIDE_B","features":[425]},{"name":"DVD_SPCoding_Extended","features":[425]},{"name":"DVD_SPCoding_Other","features":[425]},{"name":"DVD_SPCoding_RunLength","features":[425]},{"name":"DVD_SPType_Language","features":[425]},{"name":"DVD_SPType_NotSpecified","features":[425]},{"name":"DVD_SPType_Other","features":[425]},{"name":"DVD_SP_EXT_CC_Big","features":[425]},{"name":"DVD_SP_EXT_CC_Children","features":[425]},{"name":"DVD_SP_EXT_CC_Normal","features":[425]},{"name":"DVD_SP_EXT_Caption_Big","features":[425]},{"name":"DVD_SP_EXT_Caption_Children","features":[425]},{"name":"DVD_SP_EXT_Caption_Normal","features":[425]},{"name":"DVD_SP_EXT_DirectorComments_Big","features":[425]},{"name":"DVD_SP_EXT_DirectorComments_Children","features":[425]},{"name":"DVD_SP_EXT_DirectorComments_Normal","features":[425]},{"name":"DVD_SP_EXT_Forced","features":[425]},{"name":"DVD_SP_EXT_NotSpecified","features":[425]},{"name":"DVD_STREAM_DATA_CURRENT","features":[425]},{"name":"DVD_STREAM_DATA_VMGM","features":[425]},{"name":"DVD_STREAM_DATA_VTSM","features":[425]},{"name":"DVD_SUBPICTURE_CODING","features":[425]},{"name":"DVD_SUBPICTURE_LANG_EXT","features":[425]},{"name":"DVD_SUBPICTURE_TYPE","features":[425]},{"name":"DVD_Stream_Angle","features":[425]},{"name":"DVD_Stream_Audio","features":[425]},{"name":"DVD_Stream_Subpicture","features":[425]},{"name":"DVD_Struct_Cell","features":[425]},{"name":"DVD_Struct_ParentalID","features":[425]},{"name":"DVD_Struct_PartOfTitle","features":[425]},{"name":"DVD_Struct_Title","features":[425]},{"name":"DVD_Struct_Volume","features":[425]},{"name":"DVD_SubpictureAttributes","features":[425]},{"name":"DVD_TC_FLAG_25fps","features":[425]},{"name":"DVD_TC_FLAG_30fps","features":[425]},{"name":"DVD_TC_FLAG_DropFrame","features":[425]},{"name":"DVD_TC_FLAG_Interpolated","features":[425]},{"name":"DVD_TIMECODE","features":[425]},{"name":"DVD_TIMECODE_FLAGS","features":[425]},{"name":"DVD_TITLE_APPMODE","features":[425]},{"name":"DVD_TITLE_MENU","features":[425]},{"name":"DVD_TextCharSet","features":[425]},{"name":"DVD_TextStringType","features":[425]},{"name":"DVD_TitleAttributes","features":[303,425]},{"name":"DVD_Title_Album","features":[425]},{"name":"DVD_Title_Movie","features":[425]},{"name":"DVD_Title_Orig_Album","features":[425]},{"name":"DVD_Title_Orig_Movie","features":[425]},{"name":"DVD_Title_Orig_Other","features":[425]},{"name":"DVD_Title_Orig_Series","features":[425]},{"name":"DVD_Title_Orig_Song","features":[425]},{"name":"DVD_Title_Orig_Video","features":[425]},{"name":"DVD_Title_Other","features":[425]},{"name":"DVD_Title_Series","features":[425]},{"name":"DVD_Title_Song","features":[425]},{"name":"DVD_Title_Sub_Album","features":[425]},{"name":"DVD_Title_Sub_Movie","features":[425]},{"name":"DVD_Title_Sub_Other","features":[425]},{"name":"DVD_Title_Sub_Series","features":[425]},{"name":"DVD_Title_Sub_Song","features":[425]},{"name":"DVD_Title_Sub_Video","features":[425]},{"name":"DVD_Title_Video","features":[425]},{"name":"DVD_VIDEO_COMPRESSION","features":[425]},{"name":"DVD_VideoAttributes","features":[303,425]},{"name":"DVD_VideoCompression_MPEG1","features":[425]},{"name":"DVD_VideoCompression_MPEG2","features":[425]},{"name":"DVD_VideoCompression_Other","features":[425]},{"name":"DVD_WARNING","features":[425]},{"name":"DVD_WARNING_FormatNotSupported","features":[425]},{"name":"DVD_WARNING_IllegalNavCommand","features":[425]},{"name":"DVD_WARNING_InvalidDVD1_0Disc","features":[425]},{"name":"DVD_WARNING_Open","features":[425]},{"name":"DVD_WARNING_Read","features":[425]},{"name":"DVD_WARNING_Seek","features":[425]},{"name":"DVENCODERFORMAT_DVHD","features":[425]},{"name":"DVENCODERFORMAT_DVSD","features":[425]},{"name":"DVENCODERFORMAT_DVSL","features":[425]},{"name":"DVENCODERRESOLUTION_180x120","features":[425]},{"name":"DVENCODERRESOLUTION_360x240","features":[425]},{"name":"DVENCODERRESOLUTION_720x480","features":[425]},{"name":"DVENCODERRESOLUTION_88x60","features":[425]},{"name":"DVENCODERVIDEOFORMAT_NTSC","features":[425]},{"name":"DVENCODERVIDEOFORMAT_PAL","features":[425]},{"name":"DVINFO","features":[425]},{"name":"DVRESOLUTION_DC","features":[425]},{"name":"DVRESOLUTION_FULL","features":[425]},{"name":"DVRESOLUTION_HALF","features":[425]},{"name":"DVRESOLUTION_QUARTER","features":[425]},{"name":"DWORD_ALLPARAMS","features":[425]},{"name":"DXVA2SW_CALLBACKS","features":[303,312,425,426]},{"name":"DXVA2TraceVideoProcessBltData","features":[303,425,332]},{"name":"DXVA2Trace_Control","features":[425]},{"name":"DXVA2Trace_DecodeDevBeginFrame","features":[425]},{"name":"DXVA2Trace_DecodeDevBeginFrameData","features":[303,425,332]},{"name":"DXVA2Trace_DecodeDevCreated","features":[425]},{"name":"DXVA2Trace_DecodeDevCreatedData","features":[303,425,332]},{"name":"DXVA2Trace_DecodeDevDestroyed","features":[425]},{"name":"DXVA2Trace_DecodeDevEndFrame","features":[425]},{"name":"DXVA2Trace_DecodeDevExecute","features":[425]},{"name":"DXVA2Trace_DecodeDevGetBuffer","features":[425]},{"name":"DXVA2Trace_DecodeDevGetBufferData","features":[303,425,332]},{"name":"DXVA2Trace_DecodeDeviceData","features":[303,425,332]},{"name":"DXVA2Trace_VideoProcessBlt","features":[425]},{"name":"DXVA2Trace_VideoProcessDevCreated","features":[425]},{"name":"DXVA2Trace_VideoProcessDevCreatedData","features":[303,425,332]},{"name":"DXVA2Trace_VideoProcessDevDestroyed","features":[425]},{"name":"DXVA2Trace_VideoProcessDeviceData","features":[303,425,332]},{"name":"DXVA2_DestinationFlagMask","features":[425]},{"name":"DXVA2_DestinationFlag_Alpha_Changed","features":[425]},{"name":"DXVA2_DestinationFlag_Background_Changed","features":[425]},{"name":"DXVA2_DestinationFlag_ColorData_Changed","features":[425]},{"name":"DXVA2_DestinationFlag_RFF","features":[425]},{"name":"DXVA2_DestinationFlag_RFF_TFF_Present","features":[425]},{"name":"DXVA2_DestinationFlag_TFF","features":[425]},{"name":"DXVA2_DestinationFlag_TargetRect_Changed","features":[425]},{"name":"DXVA2_DestinationFlags","features":[425]},{"name":"DXVA2_SampleFlag_ColorData_Changed","features":[425]},{"name":"DXVA2_SampleFlag_DstRect_Changed","features":[425]},{"name":"DXVA2_SampleFlag_Palette_Changed","features":[425]},{"name":"DXVA2_SampleFlag_PlanarAlpha_Changed","features":[425]},{"name":"DXVA2_SampleFlag_RFF","features":[425]},{"name":"DXVA2_SampleFlag_RFF_TFF_Present","features":[425]},{"name":"DXVA2_SampleFlag_SrcRect_Changed","features":[425]},{"name":"DXVA2_SampleFlag_TFF","features":[425]},{"name":"DXVA2_SampleFlags","features":[425]},{"name":"DXVA2_SampleFlagsMask","features":[425]},{"name":"DXVA2_VIDEOPROCESSBLT","features":[303,425,426]},{"name":"DXVA2_VIDEOSAMPLE","features":[303,425,426]},{"name":"DXVA_ALPHA_BLEND_COMBINATION_BUFFER","features":[425]},{"name":"DXVA_ALPHA_BLEND_COMBINATION_FUNCTION","features":[425]},{"name":"DXVA_ALPHA_BLEND_DATA_LOAD_FUNCTION","features":[425]},{"name":"DXVA_AYUV_BUFFER","features":[425]},{"name":"DXVA_BIDIRECTIONAL_AVERAGING_H263_TRUNC","features":[425]},{"name":"DXVA_BIDIRECTIONAL_AVERAGING_MPEG2_ROUND","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_BACKWARD","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_FORWARD","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_INTRA","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_UNSPECIFIED","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_LIKELY","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_MILD","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_SEVERE","features":[425]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_UNLIKELY","features":[425]},{"name":"DXVA_BITSTREAM_DATA_BUFFER","features":[425]},{"name":"DXVA_CHROMA_FORMAT_420","features":[425]},{"name":"DXVA_CHROMA_FORMAT_422","features":[425]},{"name":"DXVA_CHROMA_FORMAT_444","features":[425]},{"name":"DXVA_COMPBUFFER_TYPE_THAT_IS_NOT_USED","features":[425]},{"name":"DXVA_CONFIG_BLEND_TYPE_BACK_HARDWARE","features":[425]},{"name":"DXVA_CONFIG_BLEND_TYPE_FRONT_BUFFER","features":[425]},{"name":"DXVA_CONFIG_DATA_TYPE_AI44","features":[425]},{"name":"DXVA_CONFIG_DATA_TYPE_AYUV","features":[425]},{"name":"DXVA_CONFIG_DATA_TYPE_DPXD","features":[425]},{"name":"DXVA_CONFIG_DATA_TYPE_IA44","features":[425]},{"name":"DXVA_COPPCommandFnCode","features":[425]},{"name":"DXVA_COPPDevice","features":[425]},{"name":"DXVA_COPPGetCertificateLengthFnCode","features":[425]},{"name":"DXVA_COPPKeyExchangeFnCode","features":[425]},{"name":"DXVA_COPPQueryBusData","features":[425]},{"name":"DXVA_COPPQueryConnectorType","features":[425]},{"name":"DXVA_COPPQueryDisplayData","features":[425]},{"name":"DXVA_COPPQueryGlobalProtectionLevel","features":[425]},{"name":"DXVA_COPPQueryHDCPKeyData","features":[425]},{"name":"DXVA_COPPQueryLocalProtectionLevel","features":[425]},{"name":"DXVA_COPPQueryProtectionType","features":[425]},{"name":"DXVA_COPPQuerySignaling","features":[425]},{"name":"DXVA_COPPQueryStatusFnCode","features":[425]},{"name":"DXVA_COPPSequenceStartFnCode","features":[425]},{"name":"DXVA_COPPSetProtectionLevel","features":[425]},{"name":"DXVA_COPPSetProtectionLevelCmdData","features":[425]},{"name":"DXVA_COPPSetSignaling","features":[425]},{"name":"DXVA_COPPSetSignalingCmdData","features":[425]},{"name":"DXVA_COPPStatusData","features":[425]},{"name":"DXVA_COPPStatusDisplayData","features":[425]},{"name":"DXVA_COPPStatusHDCPKeyData","features":[425]},{"name":"DXVA_COPPStatusSignalingCmdData","features":[425]},{"name":"DXVA_DCCMD_SURFACE_BUFFER","features":[425]},{"name":"DXVA_DEBLOCKING_CONTROL_BUFFER","features":[425]},{"name":"DXVA_DEBLOCKING_FILTER_FUNCTION","features":[425]},{"name":"DXVA_DPXD_SURFACE_BUFFER","features":[425]},{"name":"DXVA_DeinterlaceBltExFnCode","features":[425]},{"name":"DXVA_DeinterlaceBltFnCode","features":[425]},{"name":"DXVA_DeinterlaceBobDevice","features":[425]},{"name":"DXVA_DeinterlaceContainerDevice","features":[425]},{"name":"DXVA_DeinterlaceQueryAvailableModesFnCode","features":[425]},{"name":"DXVA_DeinterlaceQueryModeCapsFnCode","features":[425]},{"name":"DXVA_ENCRYPTPROTOCOLFUNCFLAG_ACCEL","features":[425]},{"name":"DXVA_ENCRYPTPROTOCOLFUNCFLAG_HOST","features":[425]},{"name":"DXVA_EXECUTE_RETURN_DATA_ERROR_MINOR","features":[425]},{"name":"DXVA_EXECUTE_RETURN_DATA_ERROR_SEVERE","features":[425]},{"name":"DXVA_EXECUTE_RETURN_DATA_ERROR_SIGNIF","features":[425]},{"name":"DXVA_EXECUTE_RETURN_OK","features":[425]},{"name":"DXVA_EXECUTE_RETURN_OTHER_ERROR_SEVERE","features":[425]},{"name":"DXVA_ExtColorData_ShiftBase","features":[425]},{"name":"DXVA_FILM_GRAIN_BUFFER","features":[425]},{"name":"DXVA_FILM_GRAIN_SYNTHESIS_FUNCTION","features":[425]},{"name":"DXVA_HIGHLIGHT_BUFFER","features":[425]},{"name":"DXVA_IA44_SURFACE_BUFFER","features":[425]},{"name":"DXVA_INVERSE_QUANTIZATION_MATRIX_BUFFER","features":[425]},{"name":"DXVA_MACROBLOCK_CONTROL_BUFFER","features":[425]},{"name":"DXVA_MOTION_VECTOR_BUFFER","features":[425]},{"name":"DXVA_MV_PRECISION_AND_CHROMA_RELATION_H261","features":[425]},{"name":"DXVA_MV_PRECISION_AND_CHROMA_RELATION_H263","features":[425]},{"name":"DXVA_MV_PRECISION_AND_CHROMA_RELATION_MPEG2","features":[425]},{"name":"DXVA_ModeAV1_VLD_12bit_Profile2","features":[425]},{"name":"DXVA_ModeAV1_VLD_12bit_Profile2_420","features":[425]},{"name":"DXVA_ModeAV1_VLD_Profile0","features":[425]},{"name":"DXVA_ModeAV1_VLD_Profile1","features":[425]},{"name":"DXVA_ModeAV1_VLD_Profile2","features":[425]},{"name":"DXVA_ModeH261_A","features":[425]},{"name":"DXVA_ModeH261_B","features":[425]},{"name":"DXVA_ModeH263_A","features":[425]},{"name":"DXVA_ModeH263_B","features":[425]},{"name":"DXVA_ModeH263_C","features":[425]},{"name":"DXVA_ModeH263_D","features":[425]},{"name":"DXVA_ModeH263_E","features":[425]},{"name":"DXVA_ModeH263_F","features":[425]},{"name":"DXVA_ModeH264_A","features":[425]},{"name":"DXVA_ModeH264_B","features":[425]},{"name":"DXVA_ModeH264_C","features":[425]},{"name":"DXVA_ModeH264_D","features":[425]},{"name":"DXVA_ModeH264_E","features":[425]},{"name":"DXVA_ModeH264_F","features":[425]},{"name":"DXVA_ModeH264_VLD_Multiview_NoFGT","features":[425]},{"name":"DXVA_ModeH264_VLD_Stereo_NoFGT","features":[425]},{"name":"DXVA_ModeH264_VLD_Stereo_Progressive_NoFGT","features":[425]},{"name":"DXVA_ModeH264_VLD_WithFMOASO_NoFGT","features":[425]},{"name":"DXVA_ModeHEVC_VLD_Main","features":[425]},{"name":"DXVA_ModeHEVC_VLD_Main10","features":[425]},{"name":"DXVA_ModeMPEG1_A","features":[425]},{"name":"DXVA_ModeMPEG1_VLD","features":[425]},{"name":"DXVA_ModeMPEG2_A","features":[425]},{"name":"DXVA_ModeMPEG2_B","features":[425]},{"name":"DXVA_ModeMPEG2_C","features":[425]},{"name":"DXVA_ModeMPEG2_D","features":[425]},{"name":"DXVA_ModeMPEG2and1_VLD","features":[425]},{"name":"DXVA_ModeMPEG4pt2_VLD_AdvSimple_GMC","features":[425]},{"name":"DXVA_ModeMPEG4pt2_VLD_AdvSimple_NoGMC","features":[425]},{"name":"DXVA_ModeMPEG4pt2_VLD_Simple","features":[425]},{"name":"DXVA_ModeNone","features":[425]},{"name":"DXVA_ModeVC1_A","features":[425]},{"name":"DXVA_ModeVC1_B","features":[425]},{"name":"DXVA_ModeVC1_C","features":[425]},{"name":"DXVA_ModeVC1_D","features":[425]},{"name":"DXVA_ModeVC1_D2010","features":[425]},{"name":"DXVA_ModeVP8_VLD","features":[425]},{"name":"DXVA_ModeVP9_VLD_10bit_Profile2","features":[425]},{"name":"DXVA_ModeVP9_VLD_Profile0","features":[425]},{"name":"DXVA_ModeWMV8_A","features":[425]},{"name":"DXVA_ModeWMV8_B","features":[425]},{"name":"DXVA_ModeWMV9_A","features":[425]},{"name":"DXVA_ModeWMV9_B","features":[425]},{"name":"DXVA_ModeWMV9_C","features":[425]},{"name":"DXVA_NUM_TYPES_COMP_BUFFERS","features":[425]},{"name":"DXVA_NoEncrypt","features":[425]},{"name":"DXVA_NumMV_OBMC_off_BinPBwith4MV_off","features":[425]},{"name":"DXVA_NumMV_OBMC_off_BinPBwith4MV_on","features":[425]},{"name":"DXVA_NumMV_OBMC_on__BinPB_off","features":[425]},{"name":"DXVA_NumMV_OBMC_on__BinPB_on","features":[425]},{"name":"DXVA_PICTURE_DECODE_BUFFER","features":[425]},{"name":"DXVA_PICTURE_DECODING_FUNCTION","features":[425]},{"name":"DXVA_PICTURE_RESAMPLE_BUFFER","features":[425]},{"name":"DXVA_PICTURE_RESAMPLE_FUNCTION","features":[425]},{"name":"DXVA_PICTURE_STRUCTURE_BOTTOM_FIELD","features":[425]},{"name":"DXVA_PICTURE_STRUCTURE_FRAME","features":[425]},{"name":"DXVA_PICTURE_STRUCTURE_TOP_FIELD","features":[425]},{"name":"DXVA_ProcAmpControlBltFnCode","features":[425]},{"name":"DXVA_ProcAmpControlDevice","features":[425]},{"name":"DXVA_ProcAmpControlQueryCapsFnCode","features":[425]},{"name":"DXVA_ProcAmpControlQueryRangeFnCode","features":[425]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_LOCK_FALSE_PLUS","features":[425]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_LOCK_OK_COPY","features":[425]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_PROBE_FALSE_PLUS","features":[425]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_PROBE_OK_COPY","features":[425]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_PROBE_OK_PLUS","features":[425]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_DECODER_LOCK_QUERY","features":[425]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_DECODER_PROBE_QUERY","features":[425]},{"name":"DXVA_READ_BACK_BUFFER","features":[425]},{"name":"DXVA_RESIDUAL_DIFFERENCE_BUFFER","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H261_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H261_B","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H263_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H263_B","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H263_C","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H263_D","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H263_E","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H263_F","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_B","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_C","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_D","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_E","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_F","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_IDCT_FGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_IDCT_NOFGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_MOCOMP_FGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_MOCOMP_NOFGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_FGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_MULTIVIEW_NOFGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_NOFGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_STEREO_NOFGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_STEREO_PROGRESSIVE_NOFGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_WITHFMOASO_NOFGT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG1_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG1_VLD","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_B","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_C","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_D","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG2and1_VLD","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG4PT2_VLD_ADV_SIMPLE_GMC","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG4PT2_VLD_ADV_SIMPLE_NOGMC","features":[425]},{"name":"DXVA_RESTRICTED_MODE_MPEG4PT2_VLD_SIMPLE","features":[425]},{"name":"DXVA_RESTRICTED_MODE_UNRESTRICTED","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_B","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_C","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_D","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_D2010","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_IDCT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_MOCOMP","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_POSTPROC","features":[425]},{"name":"DXVA_RESTRICTED_MODE_VC1_VLD","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV8_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV8_B","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV8_MOCOMP","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV8_POSTPROC","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV9_A","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV9_B","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV9_C","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV9_IDCT","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV9_MOCOMP","features":[425]},{"name":"DXVA_RESTRICTED_MODE_WMV9_POSTPROC","features":[425]},{"name":"DXVA_SCAN_METHOD_ALTERNATE_HORIZONTAL","features":[425]},{"name":"DXVA_SCAN_METHOD_ALTERNATE_VERTICAL","features":[425]},{"name":"DXVA_SCAN_METHOD_ARBITRARY","features":[425]},{"name":"DXVA_SCAN_METHOD_ZIG_ZAG","features":[425]},{"name":"DXVA_SLICE_CONTROL_BUFFER","features":[425]},{"name":"DXVA_STATUS_REPORTING_FUNCTION","features":[425]},{"name":"DXVA_USUAL_BLOCK_HEIGHT","features":[425]},{"name":"DXVA_USUAL_BLOCK_WIDTH","features":[425]},{"name":"DeinterlacePref9_BOB","features":[425]},{"name":"DeinterlacePref9_Mask","features":[425]},{"name":"DeinterlacePref9_NextBest","features":[425]},{"name":"DeinterlacePref9_Weave","features":[425]},{"name":"DeinterlacePref_BOB","features":[425]},{"name":"DeinterlacePref_Mask","features":[425]},{"name":"DeinterlacePref_NextBest","features":[425]},{"name":"DeinterlacePref_Weave","features":[425]},{"name":"DeinterlaceTech9_BOBLineReplicate","features":[425]},{"name":"DeinterlaceTech9_BOBVerticalStretch","features":[425]},{"name":"DeinterlaceTech9_EdgeFiltering","features":[425]},{"name":"DeinterlaceTech9_FieldAdaptive","features":[425]},{"name":"DeinterlaceTech9_MedianFiltering","features":[425]},{"name":"DeinterlaceTech9_MotionVectorSteered","features":[425]},{"name":"DeinterlaceTech9_PixelAdaptive","features":[425]},{"name":"DeinterlaceTech9_Unknown","features":[425]},{"name":"DeinterlaceTech_BOBLineReplicate","features":[425]},{"name":"DeinterlaceTech_BOBVerticalStretch","features":[425]},{"name":"DeinterlaceTech_EdgeFiltering","features":[425]},{"name":"DeinterlaceTech_FieldAdaptive","features":[425]},{"name":"DeinterlaceTech_MedianFiltering","features":[425]},{"name":"DeinterlaceTech_MotionVectorSteered","features":[425]},{"name":"DeinterlaceTech_PixelAdaptive","features":[425]},{"name":"DeinterlaceTech_Unknown","features":[425]},{"name":"DeviceClosed","features":[425]},{"name":"Disabled","features":[425]},{"name":"EALocationCodeType","features":[425]},{"name":"EC_ACTIVATE","features":[425]},{"name":"EC_BANDWIDTHCHANGE","features":[425]},{"name":"EC_BUFFERING_DATA","features":[425]},{"name":"EC_BUILT","features":[425]},{"name":"EC_CLOCK_CHANGED","features":[425]},{"name":"EC_CLOCK_UNSET","features":[425]},{"name":"EC_CODECAPI_EVENT","features":[425]},{"name":"EC_COMPLETE","features":[425]},{"name":"EC_CONTENTPROPERTY_CHANGED","features":[425]},{"name":"EC_DEVICE_LOST","features":[425]},{"name":"EC_DISPLAY_CHANGED","features":[425]},{"name":"EC_DVDBASE","features":[425]},{"name":"EC_DVD_ANGLES_AVAILABLE","features":[425]},{"name":"EC_DVD_ANGLE_CHANGE","features":[425]},{"name":"EC_DVD_AUDIO_STREAM_CHANGE","features":[425]},{"name":"EC_DVD_BUTTON_AUTO_ACTIVATED","features":[425]},{"name":"EC_DVD_BUTTON_CHANGE","features":[425]},{"name":"EC_DVD_BeginNavigationCommands","features":[425]},{"name":"EC_DVD_CHAPTER_AUTOSTOP","features":[425]},{"name":"EC_DVD_CHAPTER_START","features":[425]},{"name":"EC_DVD_CMD_END","features":[425]},{"name":"EC_DVD_CMD_START","features":[425]},{"name":"EC_DVD_CURRENT_HMSF_TIME","features":[425]},{"name":"EC_DVD_CURRENT_TIME","features":[425]},{"name":"EC_DVD_DISC_EJECTED","features":[425]},{"name":"EC_DVD_DISC_INSERTED","features":[425]},{"name":"EC_DVD_DOMAIN_CHANGE","features":[425]},{"name":"EC_DVD_ERROR","features":[425]},{"name":"EC_DVD_GPRM_Change","features":[425]},{"name":"EC_DVD_KARAOKE_MODE","features":[425]},{"name":"EC_DVD_NO_FP_PGC","features":[425]},{"name":"EC_DVD_NavigationCommand","features":[425]},{"name":"EC_DVD_PARENTAL_LEVEL_CHANGE","features":[425]},{"name":"EC_DVD_PLAYBACK_RATE_CHANGE","features":[425]},{"name":"EC_DVD_PLAYBACK_STOPPED","features":[425]},{"name":"EC_DVD_PLAYPERIOD_AUTOSTOP","features":[425]},{"name":"EC_DVD_PROGRAM_CELL_CHANGE","features":[425]},{"name":"EC_DVD_PROGRAM_CHAIN_CHANGE","features":[425]},{"name":"EC_DVD_SPRM_Change","features":[425]},{"name":"EC_DVD_STILL_OFF","features":[425]},{"name":"EC_DVD_STILL_ON","features":[425]},{"name":"EC_DVD_SUBPICTURE_STREAM_CHANGE","features":[425]},{"name":"EC_DVD_TITLE_CHANGE","features":[425]},{"name":"EC_DVD_TITLE_SET_CHANGE","features":[425]},{"name":"EC_DVD_VALID_UOPS_CHANGE","features":[425]},{"name":"EC_DVD_VOBU_Offset","features":[425]},{"name":"EC_DVD_VOBU_Timestamp","features":[425]},{"name":"EC_DVD_WARNING","features":[425]},{"name":"EC_END_OF_SEGMENT","features":[425]},{"name":"EC_EOS_SOON","features":[425]},{"name":"EC_ERRORABORT","features":[425]},{"name":"EC_ERRORABORTEX","features":[425]},{"name":"EC_ERROR_STILLPLAYING","features":[425]},{"name":"EC_EXTDEVICE_MODE_CHANGE","features":[425]},{"name":"EC_FILE_CLOSED","features":[425]},{"name":"EC_FULLSCREEN_LOST","features":[425]},{"name":"EC_GRAPH_CHANGED","features":[425]},{"name":"EC_LENGTH_CHANGED","features":[425]},{"name":"EC_LOADSTATUS","features":[425]},{"name":"EC_MARKER_HIT","features":[425]},{"name":"EC_NEED_RESTART","features":[425]},{"name":"EC_NEW_PIN","features":[425]},{"name":"EC_NOTIFY_WINDOW","features":[425]},{"name":"EC_OLE_EVENT","features":[425]},{"name":"EC_OPENING_FILE","features":[425]},{"name":"EC_PALETTE_CHANGED","features":[425]},{"name":"EC_PAUSED","features":[425]},{"name":"EC_PLEASE_REOPEN","features":[425]},{"name":"EC_PREPROCESS_COMPLETE","features":[425]},{"name":"EC_PROCESSING_LATENCY","features":[425]},{"name":"EC_QUALITY_CHANGE","features":[425]},{"name":"EC_RENDER_FINISHED","features":[425]},{"name":"EC_REPAINT","features":[425]},{"name":"EC_SAMPLE_LATENCY","features":[425]},{"name":"EC_SAMPLE_NEEDED","features":[425]},{"name":"EC_SCRUB_TIME","features":[425]},{"name":"EC_SEGMENT_STARTED","features":[425]},{"name":"EC_SHUTTING_DOWN","features":[425]},{"name":"EC_SKIP_FRAMES","features":[425]},{"name":"EC_SNDDEV_IN_ERROR","features":[425]},{"name":"EC_SNDDEV_OUT_ERROR","features":[425]},{"name":"EC_SND_DEVICE_ERROR_BASE","features":[425]},{"name":"EC_STARVATION","features":[425]},{"name":"EC_STATE_CHANGE","features":[425]},{"name":"EC_STATUS","features":[425]},{"name":"EC_STEP_COMPLETE","features":[425]},{"name":"EC_STREAM_CONTROL_STARTED","features":[425]},{"name":"EC_STREAM_CONTROL_STOPPED","features":[425]},{"name":"EC_STREAM_ERROR_STILLPLAYING","features":[425]},{"name":"EC_STREAM_ERROR_STOPPED","features":[425]},{"name":"EC_SYSTEMBASE","features":[425]},{"name":"EC_TIME","features":[425]},{"name":"EC_TIMECODE_AVAILABLE","features":[425]},{"name":"EC_UNBUILT","features":[425]},{"name":"EC_USER","features":[425]},{"name":"EC_USERABORT","features":[425]},{"name":"EC_VIDEOFRAMEREADY","features":[425]},{"name":"EC_VIDEO_SIZE_CHANGED","features":[425]},{"name":"EC_VMR_RECONNECTION_FAILED","features":[425]},{"name":"EC_VMR_RENDERDEVICE_SET","features":[425]},{"name":"EC_VMR_SURFACE_FLIPPED","features":[425]},{"name":"EC_WINDOW_DESTROYED","features":[425]},{"name":"EC_WMT_EVENT","features":[425]},{"name":"EC_WMT_EVENT_BASE","features":[425]},{"name":"EC_WMT_INDEX_EVENT","features":[425]},{"name":"E_PROP_ID_UNSUPPORTED","features":[425]},{"name":"E_PROP_SET_UNSUPPORTED","features":[425]},{"name":"Entitled","features":[425]},{"name":"EntitlementType","features":[425]},{"name":"ErrorClosed","features":[425]},{"name":"FECMethod","features":[425]},{"name":"FILTER_INFO","features":[425]},{"name":"FILTER_STATE","features":[425]},{"name":"FORMAT_DVD_LPCMAudio","features":[425]},{"name":"FORMAT_DolbyAC3","features":[425]},{"name":"FORMAT_Image","features":[425]},{"name":"FORMAT_JPEGImage","features":[425]},{"name":"FORMAT_MPEG2Audio","features":[425]},{"name":"FORMAT_MPEG2Video","features":[425]},{"name":"FORMAT_MPEG2_VIDEO","features":[425]},{"name":"FORMAT_UVCH264Video","features":[425]},{"name":"Famine","features":[425]},{"name":"FilgraphManager","features":[425]},{"name":"Flood","features":[425]},{"name":"GUID_TIME_MUSIC","features":[425]},{"name":"GUID_TIME_REFERENCE","features":[425]},{"name":"GUID_TIME_SAMPLES","features":[425]},{"name":"GuardInterval","features":[425]},{"name":"HEAACWAVEFORMAT","features":[418,425]},{"name":"HEAACWAVEINFO","features":[418,425]},{"name":"HEVC_TEMPORAL_VIDEO_SUBSET","features":[425]},{"name":"HEVC_VIDEO_OR_TEMPORAL_VIDEO","features":[425]},{"name":"HierarchyAlpha","features":[425]},{"name":"IAMAnalogVideoDecoder","features":[425]},{"name":"IAMAnalogVideoEncoder","features":[425]},{"name":"IAMAsyncReaderTimestampScaling","features":[425]},{"name":"IAMAudioInputMixer","features":[425]},{"name":"IAMAudioRendererStats","features":[425]},{"name":"IAMBufferNegotiation","features":[425]},{"name":"IAMCameraControl","features":[425]},{"name":"IAMCertifiedOutputProtection","features":[425]},{"name":"IAMChannelInfo","features":[425,354]},{"name":"IAMClockAdjust","features":[425]},{"name":"IAMClockSlave","features":[425]},{"name":"IAMCollection","features":[425,354]},{"name":"IAMCopyCaptureFileProgress","features":[425]},{"name":"IAMCrossbar","features":[425]},{"name":"IAMDecoderCaps","features":[425]},{"name":"IAMDevMemoryAllocator","features":[425]},{"name":"IAMDevMemoryControl","features":[425]},{"name":"IAMDeviceRemoval","features":[425]},{"name":"IAMDirectSound","features":[425]},{"name":"IAMDroppedFrames","features":[425]},{"name":"IAMExtDevice","features":[425]},{"name":"IAMExtTransport","features":[425]},{"name":"IAMExtendedErrorInfo","features":[425,354]},{"name":"IAMExtendedSeeking","features":[425,354]},{"name":"IAMFilterGraphCallback","features":[425]},{"name":"IAMFilterMiscFlags","features":[425]},{"name":"IAMGraphBuilderCallback","features":[425]},{"name":"IAMGraphStreams","features":[425]},{"name":"IAMLatency","features":[425]},{"name":"IAMLine21Decoder","features":[425]},{"name":"IAMMediaContent","features":[425,354]},{"name":"IAMMediaContent2","features":[425,354]},{"name":"IAMMediaStream","features":[425]},{"name":"IAMMediaTypeSample","features":[425]},{"name":"IAMMediaTypeStream","features":[425]},{"name":"IAMMultiMediaStream","features":[425]},{"name":"IAMNetShowConfig","features":[425,354]},{"name":"IAMNetShowExProps","features":[425,354]},{"name":"IAMNetShowPreroll","features":[425,354]},{"name":"IAMNetworkStatus","features":[425,354]},{"name":"IAMOpenProgress","features":[425]},{"name":"IAMOverlayFX","features":[425]},{"name":"IAMParse","features":[425]},{"name":"IAMPhysicalPinInfo","features":[425]},{"name":"IAMPlayList","features":[425]},{"name":"IAMPlayListItem","features":[425]},{"name":"IAMPluginControl","features":[425]},{"name":"IAMPushSource","features":[425]},{"name":"IAMRebuild","features":[425]},{"name":"IAMResourceControl","features":[425]},{"name":"IAMStats","features":[425,354]},{"name":"IAMStreamConfig","features":[425]},{"name":"IAMStreamControl","features":[425]},{"name":"IAMStreamSelect","features":[425]},{"name":"IAMTVAudio","features":[425]},{"name":"IAMTVAudioNotification","features":[425]},{"name":"IAMTVTuner","features":[425]},{"name":"IAMTimecodeDisplay","features":[425]},{"name":"IAMTimecodeGenerator","features":[425]},{"name":"IAMTimecodeReader","features":[425]},{"name":"IAMTuner","features":[425]},{"name":"IAMTunerNotification","features":[425]},{"name":"IAMVfwCaptureDialogs","features":[425]},{"name":"IAMVfwCompressDialogs","features":[425]},{"name":"IAMVideoAccelerator","features":[425]},{"name":"IAMVideoAcceleratorNotify","features":[425]},{"name":"IAMVideoCompression","features":[425]},{"name":"IAMVideoControl","features":[425]},{"name":"IAMVideoDecimationProperties","features":[425]},{"name":"IAMVideoProcAmp","features":[425]},{"name":"IAMWMBufferPass","features":[425]},{"name":"IAMWMBufferPassCallback","features":[425]},{"name":"IAMWstDecoder","features":[425]},{"name":"IAMovieSetup","features":[425]},{"name":"IAsyncReader","features":[425]},{"name":"IAudioData","features":[425]},{"name":"IAudioMediaStream","features":[425]},{"name":"IAudioStreamSample","features":[425]},{"name":"IBDA_AUX","features":[425]},{"name":"IBDA_AutoDemodulate","features":[425]},{"name":"IBDA_AutoDemodulateEx","features":[425]},{"name":"IBDA_ConditionalAccess","features":[425]},{"name":"IBDA_ConditionalAccessEx","features":[425]},{"name":"IBDA_DRIDRMService","features":[425]},{"name":"IBDA_DRIWMDRMSession","features":[425]},{"name":"IBDA_DRM","features":[425]},{"name":"IBDA_DRMService","features":[425]},{"name":"IBDA_DeviceControl","features":[425]},{"name":"IBDA_DiagnosticProperties","features":[425,427]},{"name":"IBDA_DigitalDemodulator","features":[425]},{"name":"IBDA_DigitalDemodulator2","features":[425]},{"name":"IBDA_DigitalDemodulator3","features":[425]},{"name":"IBDA_DiseqCommand","features":[425]},{"name":"IBDA_EasMessage","features":[425]},{"name":"IBDA_Encoder","features":[425]},{"name":"IBDA_EthernetFilter","features":[425]},{"name":"IBDA_EventingService","features":[425]},{"name":"IBDA_FDC","features":[425]},{"name":"IBDA_FrequencyFilter","features":[425]},{"name":"IBDA_GuideDataDeliveryService","features":[425]},{"name":"IBDA_IPSinkControl","features":[425]},{"name":"IBDA_IPSinkInfo","features":[425]},{"name":"IBDA_IPV4Filter","features":[425]},{"name":"IBDA_IPV6Filter","features":[425]},{"name":"IBDA_ISDBConditionalAccess","features":[425]},{"name":"IBDA_LNBInfo","features":[425]},{"name":"IBDA_MUX","features":[425]},{"name":"IBDA_NameValueService","features":[425]},{"name":"IBDA_NetworkProvider","features":[425]},{"name":"IBDA_NullTransform","features":[425]},{"name":"IBDA_PinControl","features":[425]},{"name":"IBDA_SignalProperties","features":[425]},{"name":"IBDA_SignalStatistics","features":[425]},{"name":"IBDA_Topology","features":[425]},{"name":"IBDA_TransportStreamInfo","features":[425]},{"name":"IBDA_TransportStreamSelector","features":[425]},{"name":"IBDA_UserActivityService","features":[425]},{"name":"IBDA_VoidTransform","features":[425]},{"name":"IBDA_WMDRMSession","features":[425]},{"name":"IBDA_WMDRMTuner","features":[425]},{"name":"IBPCSatelliteTuner","features":[425]},{"name":"IBaseFilter","features":[425,354]},{"name":"IBaseVideoMixer","features":[425]},{"name":"IBasicAudio","features":[425,354]},{"name":"IBasicVideo","features":[425,354]},{"name":"IBasicVideo2","features":[425,354]},{"name":"IBroadcastEvent","features":[425]},{"name":"IBroadcastEventEx","features":[425]},{"name":"IBufferingTime","features":[425]},{"name":"ICCSubStreamFiltering","features":[425]},{"name":"ICameraControl","features":[425]},{"name":"ICaptureGraphBuilder","features":[425]},{"name":"ICaptureGraphBuilder2","features":[425]},{"name":"IConfigAsfWriter","features":[425]},{"name":"IConfigAsfWriter2","features":[425]},{"name":"IConfigAviMux","features":[425]},{"name":"IConfigInterleaving","features":[425]},{"name":"ICreateDevEnum","features":[425]},{"name":"IDDrawExclModeVideo","features":[425]},{"name":"IDDrawExclModeVideoCallback","features":[425]},{"name":"IDMOWrapperFilter","features":[425]},{"name":"IDShowPlugin","features":[425]},{"name":"IDVEnc","features":[425]},{"name":"IDVRGB219","features":[425]},{"name":"IDVSplitter","features":[425]},{"name":"IDecimateVideoImage","features":[425]},{"name":"IDeferredCommand","features":[425]},{"name":"IDirectDrawMediaSample","features":[425]},{"name":"IDirectDrawMediaSampleAllocator","features":[425]},{"name":"IDirectDrawMediaStream","features":[425]},{"name":"IDirectDrawStreamSample","features":[425]},{"name":"IDirectDrawVideo","features":[425]},{"name":"IDistributorNotify","features":[425]},{"name":"IDrawVideoImage","features":[425]},{"name":"IDvdCmd","features":[425]},{"name":"IDvdControl","features":[425]},{"name":"IDvdControl2","features":[425]},{"name":"IDvdGraphBuilder","features":[425]},{"name":"IDvdInfo","features":[425]},{"name":"IDvdInfo2","features":[425]},{"name":"IDvdState","features":[425]},{"name":"IESEvent","features":[425]},{"name":"IESEvents","features":[425]},{"name":"IEncoderAPI","features":[425]},{"name":"IEnumFilters","features":[425]},{"name":"IEnumMediaTypes","features":[425]},{"name":"IEnumPIDMap","features":[425]},{"name":"IEnumPins","features":[425]},{"name":"IEnumRegFilters","features":[425]},{"name":"IEnumStreamIdMap","features":[425]},{"name":"IFILTERMAPPER_MERIT","features":[425]},{"name":"IFileSinkFilter","features":[425]},{"name":"IFileSinkFilter2","features":[425]},{"name":"IFileSourceFilter","features":[425]},{"name":"IFilterChain","features":[425]},{"name":"IFilterGraph","features":[425]},{"name":"IFilterGraph2","features":[425]},{"name":"IFilterGraph3","features":[425]},{"name":"IFilterInfo","features":[425,354]},{"name":"IFilterMapper","features":[425]},{"name":"IFilterMapper2","features":[425]},{"name":"IFilterMapper3","features":[425]},{"name":"IFrequencyMap","features":[425]},{"name":"IFullScreenVideo","features":[425]},{"name":"IFullScreenVideoEx","features":[425]},{"name":"IGetCapabilitiesKey","features":[425]},{"name":"IGraphBuilder","features":[425]},{"name":"IGraphConfig","features":[425]},{"name":"IGraphConfigCallback","features":[425]},{"name":"IGraphVersion","features":[425]},{"name":"IIPDVDec","features":[425]},{"name":"IMPEG2PIDMap","features":[425]},{"name":"IMPEG2StreamIdMap","features":[425]},{"name":"IMediaControl","features":[425,354]},{"name":"IMediaEvent","features":[425,354]},{"name":"IMediaEventEx","features":[425,354]},{"name":"IMediaEventSink","features":[425]},{"name":"IMediaFilter","features":[425,354]},{"name":"IMediaParamInfo","features":[425]},{"name":"IMediaParams","features":[425]},{"name":"IMediaPosition","features":[425,354]},{"name":"IMediaPropertyBag","features":[425,427]},{"name":"IMediaSample","features":[425]},{"name":"IMediaSample2","features":[425]},{"name":"IMediaSample2Config","features":[425]},{"name":"IMediaSeeking","features":[425]},{"name":"IMediaStream","features":[425]},{"name":"IMediaStreamFilter","features":[425,354]},{"name":"IMediaTypeInfo","features":[425,354]},{"name":"IMemAllocator","features":[425]},{"name":"IMemAllocatorCallbackTemp","features":[425]},{"name":"IMemAllocatorNotifyCallbackTemp","features":[425]},{"name":"IMemInputPin","features":[425]},{"name":"IMemoryData","features":[425]},{"name":"IMixerOCX","features":[425]},{"name":"IMixerOCXNotify","features":[425]},{"name":"IMixerPinConfig","features":[425]},{"name":"IMixerPinConfig2","features":[425]},{"name":"IMpeg2Demultiplexer","features":[425]},{"name":"IMpegAudioDecoder","features":[425]},{"name":"IMultiMediaStream","features":[425]},{"name":"INTERLEAVE_CAPTURE","features":[425]},{"name":"INTERLEAVE_FULL","features":[425]},{"name":"INTERLEAVE_NONE","features":[425]},{"name":"INTERLEAVE_NONE_BUFFERED","features":[425]},{"name":"IOverlay","features":[425]},{"name":"IOverlayNotify","features":[425]},{"name":"IOverlayNotify2","features":[425]},{"name":"IPersistMediaPropertyBag","features":[425,354]},{"name":"IPin","features":[425]},{"name":"IPinConnection","features":[425]},{"name":"IPinFlowControl","features":[425]},{"name":"IPinInfo","features":[425,354]},{"name":"IQualProp","features":[425]},{"name":"IQualityControl","features":[425]},{"name":"IQueueCommand","features":[425]},{"name":"IRPM_STREAMM","features":[425]},{"name":"IRegFilterInfo","features":[425,354]},{"name":"IRegisterServiceProvider","features":[425]},{"name":"IResourceConsumer","features":[425]},{"name":"IResourceManager","features":[425]},{"name":"ISDBCAS_REQUEST_ID","features":[425]},{"name":"ISDBCAS_REQUEST_ID_EMD","features":[425]},{"name":"ISDBCAS_REQUEST_ID_EMG","features":[425]},{"name":"ISDB_Satellite","features":[425]},{"name":"ISDB_Terrestrial","features":[425]},{"name":"ISO_IEC_11172_2_VIDEO","features":[425]},{"name":"ISO_IEC_11172_3_AUDIO","features":[425]},{"name":"ISO_IEC_13522_MHEG","features":[425]},{"name":"ISO_IEC_13818_1_AUXILIARY","features":[425]},{"name":"ISO_IEC_13818_1_PES","features":[425]},{"name":"ISO_IEC_13818_1_PRIVATE_SECTION","features":[425]},{"name":"ISO_IEC_13818_1_RESERVED","features":[425]},{"name":"ISO_IEC_13818_2_VIDEO","features":[425]},{"name":"ISO_IEC_13818_3_AUDIO","features":[425]},{"name":"ISO_IEC_13818_6_DOWNLOAD","features":[425]},{"name":"ISO_IEC_13818_6_TYPE_A","features":[425]},{"name":"ISO_IEC_13818_6_TYPE_B","features":[425]},{"name":"ISO_IEC_13818_6_TYPE_C","features":[425]},{"name":"ISO_IEC_13818_6_TYPE_D","features":[425]},{"name":"ISO_IEC_13818_7_AUDIO","features":[425]},{"name":"ISO_IEC_14496_1_IN_PES","features":[425]},{"name":"ISO_IEC_14496_1_IN_SECTION","features":[425]},{"name":"ISO_IEC_14496_2_VISUAL","features":[425]},{"name":"ISO_IEC_14496_3_AUDIO","features":[425]},{"name":"ISO_IEC_USER_PRIVATE","features":[425]},{"name":"ISeekingPassThru","features":[425]},{"name":"ISelector","features":[425]},{"name":"ISpecifyParticularPages","features":[425]},{"name":"IStreamBuilder","features":[425]},{"name":"IStreamSample","features":[425]},{"name":"ITU_T_H264","features":[425]},{"name":"ITU_T_REC_H_222_1","features":[425]},{"name":"IVMRAspectRatioControl","features":[425]},{"name":"IVMRAspectRatioControl9","features":[425]},{"name":"IVMRDeinterlaceControl","features":[425]},{"name":"IVMRDeinterlaceControl9","features":[425]},{"name":"IVMRFilterConfig","features":[425]},{"name":"IVMRFilterConfig9","features":[425]},{"name":"IVMRImageCompositor","features":[425]},{"name":"IVMRImageCompositor9","features":[425]},{"name":"IVMRImagePresenter","features":[425]},{"name":"IVMRImagePresenter9","features":[425]},{"name":"IVMRImagePresenterConfig","features":[425]},{"name":"IVMRImagePresenterConfig9","features":[425]},{"name":"IVMRImagePresenterExclModeConfig","features":[425]},{"name":"IVMRMixerBitmap","features":[425]},{"name":"IVMRMixerBitmap9","features":[425]},{"name":"IVMRMixerControl","features":[425]},{"name":"IVMRMixerControl9","features":[425]},{"name":"IVMRMonitorConfig","features":[425]},{"name":"IVMRMonitorConfig9","features":[425]},{"name":"IVMRSurface","features":[425]},{"name":"IVMRSurface9","features":[425]},{"name":"IVMRSurfaceAllocator","features":[425]},{"name":"IVMRSurfaceAllocator9","features":[425]},{"name":"IVMRSurfaceAllocatorEx9","features":[425]},{"name":"IVMRSurfaceAllocatorNotify","features":[425]},{"name":"IVMRSurfaceAllocatorNotify9","features":[425]},{"name":"IVMRVideoStreamControl","features":[425]},{"name":"IVMRVideoStreamControl9","features":[425]},{"name":"IVMRWindowlessControl","features":[425]},{"name":"IVMRWindowlessControl9","features":[425]},{"name":"IVPBaseConfig","features":[425]},{"name":"IVPBaseNotify","features":[425]},{"name":"IVPConfig","features":[425]},{"name":"IVPManager","features":[425]},{"name":"IVPNotify","features":[425]},{"name":"IVPNotify2","features":[425]},{"name":"IVPVBIConfig","features":[425]},{"name":"IVPVBINotify","features":[425]},{"name":"IVideoEncoder","features":[425]},{"name":"IVideoFrameStep","features":[425]},{"name":"IVideoProcAmp","features":[425]},{"name":"IVideoWindow","features":[425,354]},{"name":"IWMCodecAMVideoAccelerator","features":[425]},{"name":"IWMCodecVideoAccelerator","features":[425]},{"name":"InterleavingMode","features":[425]},{"name":"KSPROPERTY_IPSINK","features":[425]},{"name":"KSPROPERTY_IPSINK_ADAPTER_ADDRESS","features":[425]},{"name":"KSPROPERTY_IPSINK_ADAPTER_DESCRIPTION","features":[425]},{"name":"KSPROPERTY_IPSINK_MULTICASTLIST","features":[425]},{"name":"KS_BDA_FRAME_INFO","features":[425]},{"name":"LIBID_QuartzNetTypeLib","features":[425]},{"name":"LIBID_QuartzTypeLib","features":[425]},{"name":"LNB_Source","features":[425]},{"name":"LocationCodeSchemeType","features":[425]},{"name":"MAX_DEINTERLACE_DEVICE_GUIDS","features":[425]},{"name":"MAX_DEINTERLACE_SURFACES","features":[425]},{"name":"MAX_ERROR_TEXT_LEN","features":[425]},{"name":"MAX_FILTER_NAME","features":[425]},{"name":"MAX_NUMBER_OF_STREAMS","features":[425]},{"name":"MAX_PIN_NAME","features":[425]},{"name":"MAX_SIZE_MPEG1_SEQUENCE_INFO","features":[425]},{"name":"MEDIASUBTYPE_ATSC_SI","features":[425]},{"name":"MEDIASUBTYPE_DOLBY_AC3","features":[425]},{"name":"MEDIASUBTYPE_DTS","features":[425]},{"name":"MEDIASUBTYPE_DVB_SI","features":[425]},{"name":"MEDIASUBTYPE_DVD_LPCM_AUDIO","features":[425]},{"name":"MEDIASUBTYPE_DVD_NAVIGATION_DSI","features":[425]},{"name":"MEDIASUBTYPE_DVD_NAVIGATION_PCI","features":[425]},{"name":"MEDIASUBTYPE_DVD_NAVIGATION_PROVIDER","features":[425]},{"name":"MEDIASUBTYPE_DVD_SUBPICTURE","features":[425]},{"name":"MEDIASUBTYPE_ISDB_SI","features":[425]},{"name":"MEDIASUBTYPE_MPEG2DATA","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_AUDIO","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_PBDA_TRANSPORT_PROCESSED","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_PBDA_TRANSPORT_RAW","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_PROGRAM","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_TRANSPORT","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_TRANSPORT_STRIDE","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_UDCR_TRANSPORT","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_VERSIONED_TABLES","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_VIDEO","features":[425]},{"name":"MEDIASUBTYPE_MPEG2_WMDRM_TRANSPORT","features":[425]},{"name":"MEDIASUBTYPE_SDDS","features":[425]},{"name":"MEDIASUBTYPE_TIF_SI","features":[425]},{"name":"MEDIATYPE_CONTROL","features":[425]},{"name":"MEDIATYPE_DVD_ENCRYPTED_PACK","features":[425]},{"name":"MEDIATYPE_DVD_NAVIGATION","features":[425]},{"name":"MEDIATYPE_MPEG2_PACK","features":[425]},{"name":"MEDIATYPE_MPEG2_PES","features":[425]},{"name":"MEDIATYPE_MPEG2_SECTIONS","features":[425]},{"name":"MEDIA_ELEMENTARY_STREAM","features":[425]},{"name":"MEDIA_MPEG2_PSI","features":[425]},{"name":"MEDIA_SAMPLE_CONTENT","features":[425]},{"name":"MEDIA_TRANSPORT_PACKET","features":[425]},{"name":"MEDIA_TRANSPORT_PAYLOAD","features":[425]},{"name":"MERIT_DO_NOT_USE","features":[425]},{"name":"MERIT_HW_COMPRESSOR","features":[425]},{"name":"MERIT_NORMAL","features":[425]},{"name":"MERIT_PREFERRED","features":[425]},{"name":"MERIT_SW_COMPRESSOR","features":[425]},{"name":"MERIT_UNLIKELY","features":[425]},{"name":"METADATA_IN_DATA_CAROUSEL","features":[425]},{"name":"METADATA_IN_DOWNLOAD_PROTOCOL","features":[425]},{"name":"METADATA_IN_OBJECT_CAROUSEL","features":[425]},{"name":"METADATA_IN_PES","features":[425]},{"name":"METADATA_IN_SECTION","features":[425]},{"name":"MIN_DIMENSION","features":[425]},{"name":"MMSSF_ASYNCHRONOUS","features":[425]},{"name":"MMSSF_GET_INFORMATION_FLAGS","features":[425]},{"name":"MMSSF_HASCLOCK","features":[425]},{"name":"MMSSF_SUPPORTSEEK","features":[425]},{"name":"MPBOOL_FALSE","features":[425]},{"name":"MPBOOL_TRUE","features":[425]},{"name":"MPEG1WAVEFORMAT","features":[418,425]},{"name":"MPEG2StreamType","features":[425]},{"name":"MPEG2_BASE","features":[425]},{"name":"MPEG2_E_ALREADY_INITIALIZED","features":[425]},{"name":"MPEG2_E_BUFFER_TOO_SMALL","features":[425]},{"name":"MPEG2_E_DATA_SOURCE_FAILED","features":[425]},{"name":"MPEG2_E_DII_NOT_FOUND","features":[425]},{"name":"MPEG2_E_DSHOW_PIN_NOT_FOUND","features":[425]},{"name":"MPEG2_E_DSI_NOT_FOUND","features":[425]},{"name":"MPEG2_E_FILE_OFFSET_TOO_BIG","features":[425]},{"name":"MPEG2_E_INCORRECT_DESCRIPTOR_TAG","features":[425]},{"name":"MPEG2_E_INVALID_CAROUSEL_ID","features":[425]},{"name":"MPEG2_E_INVALID_SG_OBJECT_KIND","features":[425]},{"name":"MPEG2_E_INVALID_UDP_PORT","features":[425]},{"name":"MPEG2_E_MALFORMED_DSMCC_MESSAGE","features":[425]},{"name":"MPEG2_E_MALFORMED_TABLE","features":[425]},{"name":"MPEG2_E_MISSING_SECTIONS","features":[425]},{"name":"MPEG2_E_NEXT_TABLE_OPS_NOT_AVAILABLE","features":[425]},{"name":"MPEG2_E_NOT_PRESENT","features":[425]},{"name":"MPEG2_E_OBJECT_KIND_NOT_A_DIRECTORY","features":[425]},{"name":"MPEG2_E_OBJECT_KIND_NOT_A_FILE","features":[425]},{"name":"MPEG2_E_OBJECT_NOT_FOUND","features":[425]},{"name":"MPEG2_E_OUT_OF_BOUNDS","features":[425]},{"name":"MPEG2_E_REGISTRY_ACCESS_FAILED","features":[425]},{"name":"MPEG2_E_SECTION_NOT_FOUND","features":[425]},{"name":"MPEG2_E_SERVER_UNAVAILABLE","features":[425]},{"name":"MPEG2_E_SERVICE_ID_NOT_FOUND","features":[425]},{"name":"MPEG2_E_SERVICE_PMT_NOT_FOUND","features":[425]},{"name":"MPEG2_E_STREAM_STOPPED","features":[425]},{"name":"MPEG2_E_TOO_MANY_SECTIONS","features":[425]},{"name":"MPEG2_E_TX_STREAM_UNAVAILABLE","features":[425]},{"name":"MPEG2_E_UNDEFINED","features":[425]},{"name":"MPEG2_E_UNINITIALIZED","features":[425]},{"name":"MPEG2_PROGRAM_DIRECTORY_PES_PACKET","features":[425]},{"name":"MPEG2_PROGRAM_ELEMENTARY_STREAM","features":[425]},{"name":"MPEG2_PROGRAM_PACK_HEADER","features":[425]},{"name":"MPEG2_PROGRAM_PES_STREAM","features":[425]},{"name":"MPEG2_PROGRAM_STREAM_MAP","features":[425]},{"name":"MPEG2_PROGRAM_SYSTEM_HEADER","features":[425]},{"name":"MPEG2_S_MORE_DATA_AVAILABLE","features":[425]},{"name":"MPEG2_S_MPE_INFO_FOUND","features":[425]},{"name":"MPEG2_S_MPE_INFO_NOT_FOUND","features":[425]},{"name":"MPEG2_S_NEW_MODULE_VERSION","features":[425]},{"name":"MPEG2_S_NO_MORE_DATA_AVAILABLE","features":[425]},{"name":"MPEG2_S_SG_INFO_FOUND","features":[425]},{"name":"MPEG2_S_SG_INFO_NOT_FOUND","features":[425]},{"name":"MPEG2_TRANSPORT_STRIDE","features":[425]},{"name":"MPEGLAYER3WAVEFORMAT","features":[418,425]},{"name":"MPEGLAYER3WAVEFORMAT_FLAGS","features":[425]},{"name":"MPEGLAYER3_FLAG_PADDING_ISO","features":[425]},{"name":"MPEGLAYER3_FLAG_PADDING_OFF","features":[425]},{"name":"MPEGLAYER3_FLAG_PADDING_ON","features":[425]},{"name":"MPF_ENVLP_BEGIN_CURRENTVAL","features":[425]},{"name":"MPF_ENVLP_BEGIN_NEUTRALVAL","features":[425]},{"name":"MPF_ENVLP_STANDARD","features":[425]},{"name":"MPF_PUNCHIN_NOW","features":[425]},{"name":"MPF_PUNCHIN_REFTIME","features":[425]},{"name":"MPF_PUNCHIN_STOPPED","features":[425]},{"name":"MPT_BOOL","features":[425]},{"name":"MPT_ENUM","features":[425]},{"name":"MPT_FLOAT","features":[425]},{"name":"MPT_INT","features":[425]},{"name":"MPT_MAX","features":[425]},{"name":"MP_CURVE_INVSQUARE","features":[425]},{"name":"MP_CURVE_JUMP","features":[425]},{"name":"MP_CURVE_LINEAR","features":[425]},{"name":"MP_CURVE_SINE","features":[425]},{"name":"MP_CURVE_SQUARE","features":[425]},{"name":"MP_CURVE_TYPE","features":[425]},{"name":"MP_ENVELOPE_SEGMENT","features":[425]},{"name":"MP_PARAMINFO","features":[425]},{"name":"MP_TYPE","features":[425]},{"name":"MSDRI_S_MMI_PENDING","features":[425]},{"name":"MSDRI_S_PENDING","features":[425]},{"name":"MSPID_PrimaryAudio","features":[425]},{"name":"MSPID_PrimaryVideo","features":[425]},{"name":"MSTapeDeviceGUID","features":[425]},{"name":"MUX_PID_TYPE","features":[425]},{"name":"MainAVIHeader","features":[425]},{"name":"MixerPref9_ARAdjustXorY","features":[425]},{"name":"MixerPref9_AnisotropicFiltering","features":[425]},{"name":"MixerPref9_BiLinearFiltering","features":[425]},{"name":"MixerPref9_DecimateMask","features":[425]},{"name":"MixerPref9_DecimateOutput","features":[425]},{"name":"MixerPref9_DynamicDecimateBy2","features":[425]},{"name":"MixerPref9_DynamicMask","features":[425]},{"name":"MixerPref9_DynamicReserved","features":[425]},{"name":"MixerPref9_DynamicSwitchToBOB","features":[425]},{"name":"MixerPref9_FilteringMask","features":[425]},{"name":"MixerPref9_FilteringReserved","features":[425]},{"name":"MixerPref9_GaussianQuadFiltering","features":[425]},{"name":"MixerPref9_NoDecimation","features":[425]},{"name":"MixerPref9_NonSquareMixing","features":[425]},{"name":"MixerPref9_PointFiltering","features":[425]},{"name":"MixerPref9_PyramidalQuadFiltering","features":[425]},{"name":"MixerPref9_RenderTargetMask","features":[425]},{"name":"MixerPref9_RenderTargetRGB","features":[425]},{"name":"MixerPref9_RenderTargetReserved","features":[425]},{"name":"MixerPref9_RenderTargetYUV","features":[425]},{"name":"MixerPref_ARAdjustXorY","features":[425]},{"name":"MixerPref_BiLinearFiltering","features":[425]},{"name":"MixerPref_DecimateMask","features":[425]},{"name":"MixerPref_DecimateOutput","features":[425]},{"name":"MixerPref_DecimationReserved","features":[425]},{"name":"MixerPref_DynamicDecimateBy2","features":[425]},{"name":"MixerPref_DynamicMask","features":[425]},{"name":"MixerPref_DynamicReserved","features":[425]},{"name":"MixerPref_DynamicSwitchToBOB","features":[425]},{"name":"MixerPref_FilteringMask","features":[425]},{"name":"MixerPref_NoDecimation","features":[425]},{"name":"MixerPref_PointFiltering","features":[425]},{"name":"MixerPref_RenderTargetMask","features":[425]},{"name":"MixerPref_RenderTargetRGB","features":[425]},{"name":"MixerPref_RenderTargetReserved","features":[425]},{"name":"MixerPref_RenderTargetYUV","features":[425]},{"name":"MixerPref_RenderTargetYUV420","features":[425]},{"name":"MixerPref_RenderTargetYUV422","features":[425]},{"name":"MixerPref_RenderTargetYUV444","features":[425]},{"name":"ModulationType","features":[425]},{"name":"NORMALIZEDRECT","features":[425]},{"name":"NotAssociated","features":[425]},{"name":"NotEntitled","features":[425]},{"name":"NotReady","features":[425]},{"name":"OAFALSE","features":[425]},{"name":"OATRUE","features":[425]},{"name":"OA_BOOL","features":[425]},{"name":"OUTPUT_STATE","features":[425]},{"name":"PBDA_AUX_CONNECTOR_TYPE_Composite","features":[425]},{"name":"PBDA_AUX_CONNECTOR_TYPE_SVideo","features":[425]},{"name":"PBDA_Encoder_Audio_AlgorithmType_AC3","features":[425]},{"name":"PBDA_Encoder_Audio_AlgorithmType_MPEG1LayerII","features":[425]},{"name":"PBDA_Encoder_BitrateMode_Average","features":[425]},{"name":"PBDA_Encoder_BitrateMode_Constant","features":[425]},{"name":"PBDA_Encoder_BitrateMode_Variable","features":[425]},{"name":"PBDA_Encoder_Video_AVC","features":[425]},{"name":"PBDA_Encoder_Video_H264","features":[425]},{"name":"PBDA_Encoder_Video_MPEG2PartII","features":[425]},{"name":"PBDA_Encoder_Video_MPEG4Part10","features":[425]},{"name":"PDXVA2SW_CREATEVIDEOPROCESSDEVICE","features":[303,312,425,426]},{"name":"PDXVA2SW_DESTROYVIDEOPROCESSDEVICE","features":[303,425]},{"name":"PDXVA2SW_GETFILTERPROPERTYRANGE","features":[312,425,426]},{"name":"PDXVA2SW_GETPROCAMPRANGE","features":[312,425,426]},{"name":"PDXVA2SW_GETVIDEOPROCESSORCAPS","features":[312,425,426]},{"name":"PDXVA2SW_GETVIDEOPROCESSORRENDERTARGETCOUNT","features":[312,425,426]},{"name":"PDXVA2SW_GETVIDEOPROCESSORRENDERTARGETS","features":[312,425,426]},{"name":"PDXVA2SW_GETVIDEOPROCESSORSUBSTREAMFORMATCOUNT","features":[312,425,426]},{"name":"PDXVA2SW_GETVIDEOPROCESSORSUBSTREAMFORMATS","features":[312,425,426]},{"name":"PDXVA2SW_VIDEOPROCESSBEGINFRAME","features":[303,425]},{"name":"PDXVA2SW_VIDEOPROCESSBLT","features":[303,425,426]},{"name":"PDXVA2SW_VIDEOPROCESSENDFRAME","features":[303,425]},{"name":"PDXVA2SW_VIDEOPROCESSSETRENDERTARGET","features":[303,312,425]},{"name":"PID_ELEMENTARY_STREAM","features":[425]},{"name":"PID_MAP","features":[425]},{"name":"PID_MPEG2_SECTION_PSI_SI","features":[425]},{"name":"PID_OTHER","features":[425]},{"name":"PINDIR_INPUT","features":[425]},{"name":"PINDIR_OUTPUT","features":[425]},{"name":"PIN_DIRECTION","features":[425]},{"name":"PIN_INFO","features":[425,354]},{"name":"PhysConn_Audio_1394","features":[425]},{"name":"PhysConn_Audio_AESDigital","features":[425]},{"name":"PhysConn_Audio_AUX","features":[425]},{"name":"PhysConn_Audio_AudioDecoder","features":[425]},{"name":"PhysConn_Audio_Line","features":[425]},{"name":"PhysConn_Audio_Mic","features":[425]},{"name":"PhysConn_Audio_SCSI","features":[425]},{"name":"PhysConn_Audio_SPDIFDigital","features":[425]},{"name":"PhysConn_Audio_Tuner","features":[425]},{"name":"PhysConn_Audio_USB","features":[425]},{"name":"PhysConn_Video_1394","features":[425]},{"name":"PhysConn_Video_AUX","features":[425]},{"name":"PhysConn_Video_Black","features":[425]},{"name":"PhysConn_Video_Composite","features":[425]},{"name":"PhysConn_Video_ParallelDigital","features":[425]},{"name":"PhysConn_Video_RGB","features":[425]},{"name":"PhysConn_Video_SCART","features":[425]},{"name":"PhysConn_Video_SCSI","features":[425]},{"name":"PhysConn_Video_SVideo","features":[425]},{"name":"PhysConn_Video_SerialDigital","features":[425]},{"name":"PhysConn_Video_Tuner","features":[425]},{"name":"PhysConn_Video_USB","features":[425]},{"name":"PhysConn_Video_VideoDecoder","features":[425]},{"name":"PhysConn_Video_VideoEncoder","features":[425]},{"name":"PhysConn_Video_YRYBY","features":[425]},{"name":"PhysicalConnectorType","features":[425]},{"name":"Pilot","features":[425]},{"name":"Polarisation","features":[425]},{"name":"ProcAmpControl9_Brightness","features":[425]},{"name":"ProcAmpControl9_Contrast","features":[425]},{"name":"ProcAmpControl9_Hue","features":[425]},{"name":"ProcAmpControl9_Mask","features":[425]},{"name":"ProcAmpControl9_Saturation","features":[425]},{"name":"Quality","features":[425]},{"name":"QualityMessageType","features":[425]},{"name":"REGFILTER","features":[425]},{"name":"REGFILTER2","features":[303,425]},{"name":"REGFILTERPINS","features":[303,425]},{"name":"REGFILTERPINS2","features":[425]},{"name":"REGPINMEDIUM","features":[425]},{"name":"REGPINTYPES","features":[425]},{"name":"REG_PINFLAG","features":[425]},{"name":"REG_PINFLAG_B_MANY","features":[425]},{"name":"REG_PINFLAG_B_OUTPUT","features":[425]},{"name":"REG_PINFLAG_B_RENDERER","features":[425]},{"name":"REG_PINFLAG_B_ZERO","features":[425]},{"name":"REMFILTERF_LEAVECONNECTED","features":[425]},{"name":"RIFFCHUNK","features":[425]},{"name":"RIFFLIST","features":[425]},{"name":"ReadData","features":[425]},{"name":"RenderData","features":[425]},{"name":"RenderPrefs9_DoNotRenderBorder","features":[425]},{"name":"RenderPrefs9_Mask","features":[425]},{"name":"RenderPrefs_AllowOffscreen","features":[425]},{"name":"RenderPrefs_AllowOverlays","features":[425]},{"name":"RenderPrefs_DoNotRenderColorKeyAndBorder","features":[425]},{"name":"RenderPrefs_ForceOffscreen","features":[425]},{"name":"RenderPrefs_ForceOverlays","features":[425]},{"name":"RenderPrefs_Mask","features":[425]},{"name":"RenderPrefs_PreferAGPMemWhenMixing","features":[425]},{"name":"RenderPrefs_Reserved","features":[425]},{"name":"RenderPrefs_RestrictToInitialMonitor","features":[425]},{"name":"Reserved1","features":[425]},{"name":"RollOff","features":[425]},{"name":"SCTE28_ConditionalAccess","features":[425]},{"name":"SCTE28_CopyProtection","features":[425]},{"name":"SCTE28_Diagnostic","features":[425]},{"name":"SCTE28_IPService","features":[425]},{"name":"SCTE28_NetworkInterface_SCTE55_1","features":[425]},{"name":"SCTE28_NetworkInterface_SCTE55_2","features":[425]},{"name":"SCTE28_POD_Host_Binding_Information","features":[425]},{"name":"SCTE28_Reserved","features":[425]},{"name":"SCTE28_Undesignated","features":[425]},{"name":"SCTE_18","features":[425]},{"name":"SNDDEV_ERR","features":[425]},{"name":"SNDDEV_ERROR_AddBuffer","features":[425]},{"name":"SNDDEV_ERROR_Close","features":[425]},{"name":"SNDDEV_ERROR_GetCaps","features":[425]},{"name":"SNDDEV_ERROR_GetPosition","features":[425]},{"name":"SNDDEV_ERROR_Open","features":[425]},{"name":"SNDDEV_ERROR_Pause","features":[425]},{"name":"SNDDEV_ERROR_PrepareHeader","features":[425]},{"name":"SNDDEV_ERROR_Query","features":[425]},{"name":"SNDDEV_ERROR_Reset","features":[425]},{"name":"SNDDEV_ERROR_Restart","features":[425]},{"name":"SNDDEV_ERROR_Start","features":[425]},{"name":"SNDDEV_ERROR_Stop","features":[425]},{"name":"SNDDEV_ERROR_UnprepareHeader","features":[425]},{"name":"SNDDEV_ERROR_Write","features":[425]},{"name":"SPECIFYPAGES_STATISTICS","features":[425]},{"name":"SSUPDATE_ASYNC","features":[425]},{"name":"SSUPDATE_CONTINUOUS","features":[425]},{"name":"SSUPDATE_TYPE","features":[425]},{"name":"STDINDEXSIZE","features":[425]},{"name":"STREAMIF_CONSTANTS","features":[425]},{"name":"STREAMSTATE_RUN","features":[425]},{"name":"STREAMSTATE_STOP","features":[425]},{"name":"STREAMTYPE_READ","features":[425]},{"name":"STREAMTYPE_TRANSFORM","features":[425]},{"name":"STREAMTYPE_WRITE","features":[425]},{"name":"STREAM_ID_MAP","features":[425]},{"name":"STREAM_STATE","features":[425]},{"name":"STREAM_TYPE","features":[425]},{"name":"SUBSTREAM_FILTER_VAL_NONE","features":[425]},{"name":"ScanModulationTypes","features":[425]},{"name":"ScanModulationTypesMask_DVBC","features":[425]},{"name":"ScanModulationTypesMask_MCE_All_TV","features":[425]},{"name":"ScanModulationTypesMask_MCE_AnalogTv","features":[425]},{"name":"ScanModulationTypesMask_MCE_DigitalCable","features":[425]},{"name":"ScanModulationTypesMask_MCE_TerrestrialATSC","features":[425]},{"name":"SmartCardApplication","features":[425]},{"name":"SmartCardAssociationType","features":[425]},{"name":"SmartCardStatusType","features":[425]},{"name":"SpectralInversion","features":[425]},{"name":"State_Paused","features":[425]},{"name":"State_Running","features":[425]},{"name":"State_Stopped","features":[425]},{"name":"StatusActive","features":[425]},{"name":"StatusInactive","features":[425]},{"name":"StatusUnavailable","features":[425]},{"name":"SystemClosed","features":[425]},{"name":"TIMECODEDATA","features":[425]},{"name":"TIMECODE_RATE_30DROP","features":[425]},{"name":"TIMECODE_SMPTE_BINARY_GROUP","features":[425]},{"name":"TIMECODE_SMPTE_COLOR_FRAME","features":[425]},{"name":"TRUECOLORINFO","features":[314,425]},{"name":"TVAudioMode","features":[425]},{"name":"TechnicalFailure","features":[425]},{"name":"TransmissionMode","features":[425]},{"name":"TunerInputAntenna","features":[425]},{"name":"TunerInputCable","features":[425]},{"name":"TunerInputType","features":[425]},{"name":"UICloseReasonType","features":[425]},{"name":"UOP_FLAG_Pause_On","features":[425]},{"name":"UOP_FLAG_PlayNext_Chapter","features":[425]},{"name":"UOP_FLAG_PlayPrev_Or_Replay_Chapter","features":[425]},{"name":"UOP_FLAG_Play_Backwards","features":[425]},{"name":"UOP_FLAG_Play_Chapter","features":[425]},{"name":"UOP_FLAG_Play_Chapter_Or_AtTime","features":[425]},{"name":"UOP_FLAG_Play_Forwards","features":[425]},{"name":"UOP_FLAG_Play_Title","features":[425]},{"name":"UOP_FLAG_Play_Title_Or_AtTime","features":[425]},{"name":"UOP_FLAG_Resume","features":[425]},{"name":"UOP_FLAG_ReturnFromSubMenu","features":[425]},{"name":"UOP_FLAG_Select_Angle","features":[425]},{"name":"UOP_FLAG_Select_Audio_Stream","features":[425]},{"name":"UOP_FLAG_Select_Karaoke_Audio_Presentation_Mode","features":[425]},{"name":"UOP_FLAG_Select_Or_Activate_Button","features":[425]},{"name":"UOP_FLAG_Select_SubPic_Stream","features":[425]},{"name":"UOP_FLAG_Select_Video_Mode_Preference","features":[425]},{"name":"UOP_FLAG_ShowMenu_Angle","features":[425]},{"name":"UOP_FLAG_ShowMenu_Audio","features":[425]},{"name":"UOP_FLAG_ShowMenu_Chapter","features":[425]},{"name":"UOP_FLAG_ShowMenu_Root","features":[425]},{"name":"UOP_FLAG_ShowMenu_SubPic","features":[425]},{"name":"UOP_FLAG_ShowMenu_Title","features":[425]},{"name":"UOP_FLAG_Still_Off","features":[425]},{"name":"UOP_FLAG_Stop","features":[425]},{"name":"USER_PRIVATE","features":[425]},{"name":"UserClosed","features":[425]},{"name":"VALID_UOP_FLAG","features":[425]},{"name":"VFW_E_ADVISE_ALREADY_SET","features":[425]},{"name":"VFW_E_ALREADY_CANCELLED","features":[425]},{"name":"VFW_E_ALREADY_COMMITTED","features":[425]},{"name":"VFW_E_ALREADY_CONNECTED","features":[425]},{"name":"VFW_E_BADALIGN","features":[425]},{"name":"VFW_E_BAD_KEY","features":[425]},{"name":"VFW_E_BAD_VIDEOCD","features":[425]},{"name":"VFW_E_BUFFERS_OUTSTANDING","features":[425]},{"name":"VFW_E_BUFFER_NOTSET","features":[425]},{"name":"VFW_E_BUFFER_OVERFLOW","features":[425]},{"name":"VFW_E_BUFFER_UNDERFLOW","features":[425]},{"name":"VFW_E_CANNOT_CONNECT","features":[425]},{"name":"VFW_E_CANNOT_LOAD_SOURCE_FILTER","features":[425]},{"name":"VFW_E_CANNOT_RENDER","features":[425]},{"name":"VFW_E_CERTIFICATION_FAILURE","features":[425]},{"name":"VFW_E_CHANGING_FORMAT","features":[425]},{"name":"VFW_E_CIRCULAR_GRAPH","features":[425]},{"name":"VFW_E_CODECAPI_ENUMERATED","features":[425]},{"name":"VFW_E_CODECAPI_LINEAR_RANGE","features":[425]},{"name":"VFW_E_CODECAPI_NO_CURRENT_VALUE","features":[425]},{"name":"VFW_E_CODECAPI_NO_DEFAULT","features":[425]},{"name":"VFW_E_COLOR_KEY_SET","features":[425]},{"name":"VFW_E_COPYPROT_FAILED","features":[425]},{"name":"VFW_E_CORRUPT_GRAPH_FILE","features":[425]},{"name":"VFW_E_DDRAW_CAPS_NOT_SUITABLE","features":[425]},{"name":"VFW_E_DDRAW_VERSION_NOT_SUITABLE","features":[425]},{"name":"VFW_E_DUPLICATE_NAME","features":[425]},{"name":"VFW_E_DVD_CHAPTER_DOES_NOT_EXIST","features":[425]},{"name":"VFW_E_DVD_CMD_CANCELLED","features":[425]},{"name":"VFW_E_DVD_DECNOTENOUGH","features":[425]},{"name":"VFW_E_DVD_GRAPHNOTREADY","features":[425]},{"name":"VFW_E_DVD_INCOMPATIBLE_REGION","features":[425]},{"name":"VFW_E_DVD_INVALIDDOMAIN","features":[425]},{"name":"VFW_E_DVD_INVALID_DISC","features":[425]},{"name":"VFW_E_DVD_LOW_PARENTAL_LEVEL","features":[425]},{"name":"VFW_E_DVD_MENU_DOES_NOT_EXIST","features":[425]},{"name":"VFW_E_DVD_NONBLOCKING","features":[425]},{"name":"VFW_E_DVD_NON_EVR_RENDERER_IN_FILTER_GRAPH","features":[425]},{"name":"VFW_E_DVD_NOT_IN_KARAOKE_MODE","features":[425]},{"name":"VFW_E_DVD_NO_ATTRIBUTES","features":[425]},{"name":"VFW_E_DVD_NO_BUTTON","features":[425]},{"name":"VFW_E_DVD_NO_GOUP_PGC","features":[425]},{"name":"VFW_E_DVD_NO_RESUME_INFORMATION","features":[425]},{"name":"VFW_E_DVD_OPERATION_INHIBITED","features":[425]},{"name":"VFW_E_DVD_RENDERFAIL","features":[425]},{"name":"VFW_E_DVD_RESOLUTION_ERROR","features":[425]},{"name":"VFW_E_DVD_STATE_CORRUPT","features":[425]},{"name":"VFW_E_DVD_STATE_WRONG_DISC","features":[425]},{"name":"VFW_E_DVD_STATE_WRONG_VERSION","features":[425]},{"name":"VFW_E_DVD_STREAM_DISABLED","features":[425]},{"name":"VFW_E_DVD_TITLE_UNKNOWN","features":[425]},{"name":"VFW_E_DVD_TOO_MANY_RENDERERS_IN_FILTER_GRAPH","features":[425]},{"name":"VFW_E_DVD_VMR9_INCOMPATIBLEDEC","features":[425]},{"name":"VFW_E_DVD_WRONG_SPEED","features":[425]},{"name":"VFW_E_ENUM_OUT_OF_RANGE","features":[425]},{"name":"VFW_E_ENUM_OUT_OF_SYNC","features":[425]},{"name":"VFW_E_FILE_TOO_SHORT","features":[425]},{"name":"VFW_E_FILTER_ACTIVE","features":[425]},{"name":"VFW_E_FRAME_STEP_UNSUPPORTED","features":[425]},{"name":"VFW_E_INVALIDMEDIATYPE","features":[425]},{"name":"VFW_E_INVALIDSUBTYPE","features":[425]},{"name":"VFW_E_INVALID_CLSID","features":[425]},{"name":"VFW_E_INVALID_DIRECTION","features":[425]},{"name":"VFW_E_INVALID_FILE_FORMAT","features":[425]},{"name":"VFW_E_INVALID_FILE_VERSION","features":[425]},{"name":"VFW_E_INVALID_MEDIA_TYPE","features":[425]},{"name":"VFW_E_INVALID_RECT","features":[425]},{"name":"VFW_E_IN_FULLSCREEN_MODE","features":[425]},{"name":"VFW_E_MEDIA_TIME_NOT_SET","features":[425]},{"name":"VFW_E_MONO_AUDIO_HW","features":[425]},{"name":"VFW_E_MPEG_NOT_CONSTRAINED","features":[425]},{"name":"VFW_E_NEED_OWNER","features":[425]},{"name":"VFW_E_NOT_ALLOWED_TO_SAVE","features":[425]},{"name":"VFW_E_NOT_COMMITTED","features":[425]},{"name":"VFW_E_NOT_CONNECTED","features":[425]},{"name":"VFW_E_NOT_FOUND","features":[425]},{"name":"VFW_E_NOT_IN_GRAPH","features":[425]},{"name":"VFW_E_NOT_OVERLAY_CONNECTION","features":[425]},{"name":"VFW_E_NOT_PAUSED","features":[425]},{"name":"VFW_E_NOT_RUNNING","features":[425]},{"name":"VFW_E_NOT_SAMPLE_CONNECTION","features":[425]},{"name":"VFW_E_NOT_STOPPED","features":[425]},{"name":"VFW_E_NO_ACCEPTABLE_TYPES","features":[425]},{"name":"VFW_E_NO_ADVISE_SET","features":[425]},{"name":"VFW_E_NO_ALLOCATOR","features":[425]},{"name":"VFW_E_NO_AUDIO_HARDWARE","features":[425]},{"name":"VFW_E_NO_CAPTURE_HARDWARE","features":[425]},{"name":"VFW_E_NO_CLOCK","features":[425]},{"name":"VFW_E_NO_COLOR_KEY_FOUND","features":[425]},{"name":"VFW_E_NO_COLOR_KEY_SET","features":[425]},{"name":"VFW_E_NO_COPP_HW","features":[425]},{"name":"VFW_E_NO_DECOMPRESSOR","features":[425]},{"name":"VFW_E_NO_DISPLAY_PALETTE","features":[425]},{"name":"VFW_E_NO_FULLSCREEN","features":[425]},{"name":"VFW_E_NO_INTERFACE","features":[425]},{"name":"VFW_E_NO_MODEX_AVAILABLE","features":[425]},{"name":"VFW_E_NO_PALETTE_AVAILABLE","features":[425]},{"name":"VFW_E_NO_SINK","features":[425]},{"name":"VFW_E_NO_TIME_FORMAT","features":[425]},{"name":"VFW_E_NO_TIME_FORMAT_SET","features":[425]},{"name":"VFW_E_NO_TRANSPORT","features":[425]},{"name":"VFW_E_NO_TYPES","features":[425]},{"name":"VFW_E_NO_VP_HARDWARE","features":[425]},{"name":"VFW_E_OUT_OF_VIDEO_MEMORY","features":[425]},{"name":"VFW_E_PALETTE_SET","features":[425]},{"name":"VFW_E_PIN_ALREADY_BLOCKED","features":[425]},{"name":"VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD","features":[425]},{"name":"VFW_E_PROCESSOR_NOT_SUITABLE","features":[425]},{"name":"VFW_E_READ_ONLY","features":[425]},{"name":"VFW_E_RPZA","features":[425]},{"name":"VFW_E_RUNTIME_ERROR","features":[425]},{"name":"VFW_E_SAMPLE_REJECTED","features":[425]},{"name":"VFW_E_SAMPLE_REJECTED_EOS","features":[425]},{"name":"VFW_E_SAMPLE_TIME_NOT_SET","features":[425]},{"name":"VFW_E_SIZENOTSET","features":[425]},{"name":"VFW_E_START_TIME_AFTER_END","features":[425]},{"name":"VFW_E_STATE_CHANGED","features":[425]},{"name":"VFW_E_TIMEOUT","features":[425]},{"name":"VFW_E_TIME_ALREADY_PASSED","features":[425]},{"name":"VFW_E_TIME_EXPIRED","features":[425]},{"name":"VFW_E_TOO_MANY_COLORS","features":[425]},{"name":"VFW_E_TYPE_NOT_ACCEPTED","features":[425]},{"name":"VFW_E_UNKNOWN_FILE_TYPE","features":[425]},{"name":"VFW_E_UNSUPPORTED_AUDIO","features":[425]},{"name":"VFW_E_UNSUPPORTED_STREAM","features":[425]},{"name":"VFW_E_UNSUPPORTED_VIDEO","features":[425]},{"name":"VFW_E_VMR_NOT_IN_MIXER_MODE","features":[425]},{"name":"VFW_E_VMR_NO_AP_SUPPLIED","features":[425]},{"name":"VFW_E_VMR_NO_DEINTERLACE_HW","features":[425]},{"name":"VFW_E_VMR_NO_PROCAMP_HW","features":[425]},{"name":"VFW_E_VP_NEGOTIATION_FAILED","features":[425]},{"name":"VFW_E_WRONG_STATE","features":[425]},{"name":"VFW_FILTERLIST","features":[425]},{"name":"VFW_FIRST_CODE","features":[425]},{"name":"VFW_S_AUDIO_NOT_RENDERED","features":[425]},{"name":"VFW_S_CANT_CUE","features":[425]},{"name":"VFW_S_CONNECTIONS_DEFERRED","features":[425]},{"name":"VFW_S_DUPLICATE_NAME","features":[425]},{"name":"VFW_S_DVD_CHANNEL_CONTENTS_NOT_AVAILABLE","features":[425]},{"name":"VFW_S_DVD_NON_ONE_SEQUENTIAL","features":[425]},{"name":"VFW_S_DVD_NOT_ACCURATE","features":[425]},{"name":"VFW_S_DVD_RENDER_STATUS","features":[425]},{"name":"VFW_S_ESTIMATED","features":[425]},{"name":"VFW_S_MEDIA_TYPE_IGNORED","features":[425]},{"name":"VFW_S_NOPREVIEWPIN","features":[425]},{"name":"VFW_S_NO_MORE_ITEMS","features":[425]},{"name":"VFW_S_NO_STOP_TIME","features":[425]},{"name":"VFW_S_PARTIAL_RENDER","features":[425]},{"name":"VFW_S_RESERVED","features":[425]},{"name":"VFW_S_RESOURCE_NOT_NEEDED","features":[425]},{"name":"VFW_S_RPZA","features":[425]},{"name":"VFW_S_SOME_DATA_IGNORED","features":[425]},{"name":"VFW_S_STATE_INTERMEDIATE","features":[425]},{"name":"VFW_S_STREAM_OFF","features":[425]},{"name":"VFW_S_VIDEO_NOT_RENDERED","features":[425]},{"name":"VIDEOENCODER_BITRATE_MODE","features":[425]},{"name":"VIDEOINFO","features":[303,314,425]},{"name":"VIDEO_STREAM_CONFIG_CAPS","features":[303,425]},{"name":"VMR9ARMode_LetterBox","features":[425]},{"name":"VMR9ARMode_None","features":[425]},{"name":"VMR9AllocFlag_3DRenderTarget","features":[425]},{"name":"VMR9AllocFlag_DXVATarget","features":[425]},{"name":"VMR9AllocFlag_OffscreenSurface","features":[425]},{"name":"VMR9AllocFlag_RGBDynamicSwitch","features":[425]},{"name":"VMR9AllocFlag_TextureSurface","features":[425]},{"name":"VMR9AllocFlag_UsageMask","features":[425]},{"name":"VMR9AllocFlag_UsageReserved","features":[425]},{"name":"VMR9AllocationInfo","features":[303,312,425]},{"name":"VMR9AlphaBitmap","features":[303,312,314,425]},{"name":"VMR9AlphaBitmapFlags","features":[425]},{"name":"VMR9AlphaBitmap_Disable","features":[425]},{"name":"VMR9AlphaBitmap_EntireDDS","features":[425]},{"name":"VMR9AlphaBitmap_FilterMode","features":[425]},{"name":"VMR9AlphaBitmap_SrcColorKey","features":[425]},{"name":"VMR9AlphaBitmap_SrcRect","features":[425]},{"name":"VMR9AlphaBitmap_hDC","features":[425]},{"name":"VMR9AspectRatioMode","features":[425]},{"name":"VMR9DeinterlaceCaps","features":[425]},{"name":"VMR9DeinterlacePrefs","features":[425]},{"name":"VMR9DeinterlaceTech","features":[425]},{"name":"VMR9Frequency","features":[425]},{"name":"VMR9MixerPrefs","features":[425]},{"name":"VMR9Mode","features":[425]},{"name":"VMR9Mode_Mask","features":[425]},{"name":"VMR9Mode_Renderless","features":[425]},{"name":"VMR9Mode_Windowed","features":[425]},{"name":"VMR9Mode_Windowless","features":[425]},{"name":"VMR9MonitorInfo","features":[303,314,425]},{"name":"VMR9NormalizedRect","features":[425]},{"name":"VMR9PresentationFlags","features":[425]},{"name":"VMR9PresentationInfo","features":[303,312,425]},{"name":"VMR9ProcAmpControl","features":[425]},{"name":"VMR9ProcAmpControlFlags","features":[425]},{"name":"VMR9ProcAmpControlRange","features":[425]},{"name":"VMR9RenderPrefs","features":[425]},{"name":"VMR9Sample_Discontinuity","features":[425]},{"name":"VMR9Sample_Preroll","features":[425]},{"name":"VMR9Sample_SrcDstRectsValid","features":[425]},{"name":"VMR9Sample_SyncPoint","features":[425]},{"name":"VMR9Sample_TimeValid","features":[425]},{"name":"VMR9SurfaceAllocationFlags","features":[425]},{"name":"VMR9VideoDesc","features":[425]},{"name":"VMR9VideoStreamInfo","features":[312,425]},{"name":"VMR9_SampleFieldInterleavedEvenFirst","features":[425]},{"name":"VMR9_SampleFieldInterleavedOddFirst","features":[425]},{"name":"VMR9_SampleFieldSingleEven","features":[425]},{"name":"VMR9_SampleFieldSingleOdd","features":[425]},{"name":"VMR9_SampleFormat","features":[425]},{"name":"VMR9_SampleProgressiveFrame","features":[425]},{"name":"VMR9_SampleReserved","features":[425]},{"name":"VMRALLOCATIONINFO","features":[303,313,314,425]},{"name":"VMRALPHABITMAP","features":[303,313,314,425]},{"name":"VMRBITMAP_DISABLE","features":[425]},{"name":"VMRBITMAP_ENTIREDDS","features":[425]},{"name":"VMRBITMAP_HDC","features":[425]},{"name":"VMRBITMAP_SRCCOLORKEY","features":[425]},{"name":"VMRBITMAP_SRCRECT","features":[425]},{"name":"VMRDeinterlaceCaps","features":[425]},{"name":"VMRDeinterlacePrefs","features":[425]},{"name":"VMRDeinterlaceTech","features":[425]},{"name":"VMRFrequency","features":[425]},{"name":"VMRGUID","features":[425]},{"name":"VMRMONITORINFO","features":[303,314,425]},{"name":"VMRMixerPrefs","features":[425]},{"name":"VMRMode","features":[425]},{"name":"VMRMode_Mask","features":[425]},{"name":"VMRMode_Renderless","features":[425]},{"name":"VMRMode_Windowed","features":[425]},{"name":"VMRMode_Windowless","features":[425]},{"name":"VMRPRESENTATIONINFO","features":[303,313,425]},{"name":"VMRPresentationFlags","features":[425]},{"name":"VMRRenderPrefs","features":[425]},{"name":"VMRSample_Discontinuity","features":[425]},{"name":"VMRSample_Preroll","features":[425]},{"name":"VMRSample_SrcDstRectsValid","features":[425]},{"name":"VMRSample_SyncPoint","features":[425]},{"name":"VMRSample_TimeValid","features":[425]},{"name":"VMRSurfaceAllocationFlags","features":[425]},{"name":"VMRVIDEOSTREAMINFO","features":[313,425]},{"name":"VMRVideoDesc","features":[303,425]},{"name":"VMR_ARMODE_LETTER_BOX","features":[425]},{"name":"VMR_ARMODE_NONE","features":[425]},{"name":"VMR_ASPECT_RATIO_MODE","features":[425]},{"name":"VMR_NOTSUPPORTED","features":[425]},{"name":"VMR_RENDER_DEVICE_OVERLAY","features":[425]},{"name":"VMR_RENDER_DEVICE_SYSMEM","features":[425]},{"name":"VMR_RENDER_DEVICE_VIDMEM","features":[425]},{"name":"VMR_SUPPORTED","features":[425]},{"name":"VariableBitRateAverage","features":[425]},{"name":"VariableBitRatePeak","features":[425]},{"name":"VfwCaptureDialog_Display","features":[425]},{"name":"VfwCaptureDialog_Format","features":[425]},{"name":"VfwCaptureDialog_Source","features":[425]},{"name":"VfwCaptureDialogs","features":[425]},{"name":"VfwCompressDialog_About","features":[425]},{"name":"VfwCompressDialog_Config","features":[425]},{"name":"VfwCompressDialog_QueryAbout","features":[425]},{"name":"VfwCompressDialog_QueryConfig","features":[425]},{"name":"VfwCompressDialogs","features":[425]},{"name":"VideoControlFlag_ExternalTriggerEnable","features":[425]},{"name":"VideoControlFlag_FlipHorizontal","features":[425]},{"name":"VideoControlFlag_FlipVertical","features":[425]},{"name":"VideoControlFlag_Trigger","features":[425]},{"name":"VideoControlFlags","features":[425]},{"name":"VideoCopyProtectionMacrovisionBasic","features":[425]},{"name":"VideoCopyProtectionMacrovisionCBI","features":[425]},{"name":"VideoCopyProtectionType","features":[425]},{"name":"VideoProcAmpFlags","features":[425]},{"name":"VideoProcAmpProperty","features":[425]},{"name":"VideoProcAmp_BacklightCompensation","features":[425]},{"name":"VideoProcAmp_Brightness","features":[425]},{"name":"VideoProcAmp_ColorEnable","features":[425]},{"name":"VideoProcAmp_Contrast","features":[425]},{"name":"VideoProcAmp_Flags_Auto","features":[425]},{"name":"VideoProcAmp_Flags_Manual","features":[425]},{"name":"VideoProcAmp_Gain","features":[425]},{"name":"VideoProcAmp_Gamma","features":[425]},{"name":"VideoProcAmp_Hue","features":[425]},{"name":"VideoProcAmp_Saturation","features":[425]},{"name":"VideoProcAmp_Sharpness","features":[425]},{"name":"VideoProcAmp_WhiteBalance","features":[425]},{"name":"_AMRESCTL_RESERVEFLAGS","features":[425]},{"name":"_AMSTREAMSELECTENABLEFLAGS","features":[425]},{"name":"_AMSTREAMSELECTINFOFLAGS","features":[425]},{"name":"_AM_AUDIO_RENDERER_STAT_PARAM","features":[425]},{"name":"_AM_FILTER_MISC_FLAGS","features":[425]},{"name":"_AM_INTF_SEARCH_FLAGS","features":[425]},{"name":"_AM_OVERLAY_NOTIFY_FLAGS","features":[425]},{"name":"_AM_PIN_FLOW_CONTROL_BLOCK_FLAGS","features":[425]},{"name":"_AM_PUSHSOURCE_FLAGS","features":[425]},{"name":"_AM_RENSDEREXFLAGS","features":[425]},{"name":"_DVDECODERRESOLUTION","features":[425]},{"name":"_DVENCODERFORMAT","features":[425]},{"name":"_DVENCODERRESOLUTION","features":[425]},{"name":"_DVENCODERVIDEOFORMAT","features":[425]},{"name":"_DVRESOLUTION","features":[425]},{"name":"_REM_FILTER_FLAGS","features":[425]},{"name":"g_wszExcludeScriptStreamDeliverySynchronization","features":[425]},{"name":"iBLUE","features":[425]},{"name":"iEGA_COLORS","features":[425]},{"name":"iGREEN","features":[425]},{"name":"iMASK_COLORS","features":[425]},{"name":"iMAXBITS","features":[425]},{"name":"iPALETTE","features":[425]},{"name":"iPALETTE_COLORS","features":[425]},{"name":"iRED","features":[425]},{"name":"iTRUECOLOR","features":[425]}],"431":[{"name":"ANALOG_AUXIN_NETWORK_TYPE","features":[428]},{"name":"ANALOG_FM_NETWORK_TYPE","features":[428]},{"name":"ANALOG_TV_NETWORK_TYPE","features":[428]},{"name":"ATSCChannelTuneRequest","features":[428]},{"name":"ATSCComponentType","features":[428]},{"name":"ATSCLocator","features":[428]},{"name":"ATSCTuningSpace","features":[428]},{"name":"ATSC_EIT_TID","features":[428]},{"name":"ATSC_ETM_LOCATION_IN_PTC_FOR_EVENT","features":[428]},{"name":"ATSC_ETM_LOCATION_IN_PTC_FOR_PSIP","features":[428]},{"name":"ATSC_ETM_LOCATION_NOT_PRESENT","features":[428]},{"name":"ATSC_ETM_LOCATION_RESERVED","features":[428]},{"name":"ATSC_ETT_TID","features":[428]},{"name":"ATSC_FILTER_OPTIONS","features":[303,428]},{"name":"ATSC_MGT_PID","features":[428]},{"name":"ATSC_MGT_TID","features":[428]},{"name":"ATSC_PIT_TID","features":[428]},{"name":"ATSC_RRT_PID","features":[428]},{"name":"ATSC_RRT_TID","features":[428]},{"name":"ATSC_STT_PID","features":[428]},{"name":"ATSC_STT_TID","features":[428]},{"name":"ATSC_TERRESTRIAL_TV_NETWORK_TYPE","features":[428]},{"name":"ATSC_VCT_CABL_TID","features":[428]},{"name":"ATSC_VCT_PID","features":[428]},{"name":"ATSC_VCT_TERR_TID","features":[428]},{"name":"AgeBased","features":[428]},{"name":"AnalogAudioComponentType","features":[428]},{"name":"AnalogLocator","features":[428]},{"name":"AnalogRadioTuningSpace","features":[428]},{"name":"AnalogTVTuningSpace","features":[428]},{"name":"AudioType_Commentary","features":[428]},{"name":"AudioType_Dialogue","features":[428]},{"name":"AudioType_Emergency","features":[428]},{"name":"AudioType_Hearing_Impaired","features":[428]},{"name":"AudioType_Music_And_Effects","features":[428]},{"name":"AudioType_Reserved","features":[428]},{"name":"AudioType_Standard","features":[428]},{"name":"AudioType_Visually_Impaired","features":[428]},{"name":"AudioType_Voiceover","features":[428]},{"name":"AuxInTuningSpace","features":[428]},{"name":"BDANETWORKTYPE_ATSC","features":[428]},{"name":"BDA_DEBUG_DATA","features":[428]},{"name":"BDA_DEBUG_DATA_AVAILABLE","features":[428]},{"name":"BDA_DEBUG_DATA_TYPE_STRING","features":[428]},{"name":"BDA_DigitalSignalStandard","features":[428]},{"name":"BDA_EVENT_DATA","features":[428]},{"name":"BDA_LockType","features":[428]},{"name":"BDA_SignalType","features":[428]},{"name":"BDA_TRANSPORT_INFO","features":[428]},{"name":"BSKYB_TERRESTRIAL_TV_NETWORK_TYPE","features":[428]},{"name":"BadSampleInfo","features":[428]},{"name":"Bda_DigitalStandard_ATSC","features":[428]},{"name":"Bda_DigitalStandard_DVB_C","features":[428]},{"name":"Bda_DigitalStandard_DVB_S","features":[428]},{"name":"Bda_DigitalStandard_DVB_T","features":[428]},{"name":"Bda_DigitalStandard_ISDB_C","features":[428]},{"name":"Bda_DigitalStandard_ISDB_S","features":[428]},{"name":"Bda_DigitalStandard_ISDB_T","features":[428]},{"name":"Bda_DigitalStandard_None","features":[428]},{"name":"Bda_LockType_Complete","features":[428]},{"name":"Bda_LockType_DecoderDemod","features":[428]},{"name":"Bda_LockType_None","features":[428]},{"name":"Bda_LockType_PLL","features":[428]},{"name":"Bda_SignalType_Analog","features":[428]},{"name":"Bda_SignalType_Digital","features":[428]},{"name":"Bda_SignalType_Unknown","features":[428]},{"name":"BfAttrNone","features":[428]},{"name":"BfEnTvRat_Attributes_CAE_TV","features":[428]},{"name":"BfEnTvRat_Attributes_CAF_TV","features":[428]},{"name":"BfEnTvRat_Attributes_MPAA","features":[428]},{"name":"BfEnTvRat_Attributes_US_TV","features":[428]},{"name":"BfEnTvRat_GenericAttributes","features":[428]},{"name":"BfIsAttr_1","features":[428]},{"name":"BfIsAttr_2","features":[428]},{"name":"BfIsAttr_3","features":[428]},{"name":"BfIsAttr_4","features":[428]},{"name":"BfIsAttr_5","features":[428]},{"name":"BfIsAttr_6","features":[428]},{"name":"BfIsAttr_7","features":[428]},{"name":"BfIsBlocked","features":[428]},{"name":"BfValidAttrSubmask","features":[428]},{"name":"BroadcastEventService","features":[428]},{"name":"CAE_IsBlocked","features":[428]},{"name":"CAE_TV_14","features":[428]},{"name":"CAE_TV_18","features":[428]},{"name":"CAE_TV_C","features":[428]},{"name":"CAE_TV_C8","features":[428]},{"name":"CAE_TV_Exempt","features":[428]},{"name":"CAE_TV_G","features":[428]},{"name":"CAE_TV_PG","features":[428]},{"name":"CAE_TV_Reserved","features":[428]},{"name":"CAE_ValidAttrSubmask","features":[428]},{"name":"CAF_IsBlocked","features":[428]},{"name":"CAF_TV_13","features":[428]},{"name":"CAF_TV_16","features":[428]},{"name":"CAF_TV_18","features":[428]},{"name":"CAF_TV_8","features":[428]},{"name":"CAF_TV_Exempt","features":[428]},{"name":"CAF_TV_G","features":[428]},{"name":"CAF_TV_Reserved","features":[428]},{"name":"CAF_TV_Reserved6","features":[428]},{"name":"CAF_ValidAttrSubmask","features":[428]},{"name":"CAPTURE_STREAMTIME","features":[428]},{"name":"CLSID_CPCAFiltersCategory","features":[428]},{"name":"CLSID_DTFilterEncProperties","features":[428]},{"name":"CLSID_DTFilterTagProperties","features":[428]},{"name":"CLSID_ETFilterEncProperties","features":[428]},{"name":"CLSID_ETFilterTagProperties","features":[428]},{"name":"CLSID_Mpeg2TableFilter","features":[428]},{"name":"CLSID_PTFilter","features":[428]},{"name":"CLSID_XDSCodecProperties","features":[428]},{"name":"CLSID_XDSCodecTagProperties","features":[428]},{"name":"COMPONENT_TAG_CAPTION_MAX","features":[428]},{"name":"COMPONENT_TAG_CAPTION_MIN","features":[428]},{"name":"COMPONENT_TAG_SUPERIMPOSE_MAX","features":[428]},{"name":"COMPONENT_TAG_SUPERIMPOSE_MIN","features":[428]},{"name":"CONTENT","features":[428]},{"name":"COPPEventBlockReason","features":[428]},{"name":"COPP_Activate","features":[428]},{"name":"COPP_AeroGlassOff","features":[428]},{"name":"COPP_BadCertificate","features":[428]},{"name":"COPP_BadDriver","features":[428]},{"name":"COPP_DigitalAudioUnprotected","features":[428]},{"name":"COPP_ForbiddenVideo","features":[428]},{"name":"COPP_InvalidBusProtection","features":[428]},{"name":"COPP_NoCardHDCPSupport","features":[428]},{"name":"COPP_NoMonitorHDCPSupport","features":[428]},{"name":"COPP_RogueApp","features":[428]},{"name":"COPP_Unknown","features":[428]},{"name":"CPEVENT_BITSHIFT_COPP","features":[428]},{"name":"CPEVENT_BITSHIFT_DOWNRES","features":[428]},{"name":"CPEVENT_BITSHIFT_LICENSE","features":[428]},{"name":"CPEVENT_BITSHIFT_NO_PLAYREADY","features":[428]},{"name":"CPEVENT_BITSHIFT_PENDING_CERTIFICATE","features":[428]},{"name":"CPEVENT_BITSHIFT_RATINGS","features":[428]},{"name":"CPEVENT_BITSHIFT_ROLLBACK","features":[428]},{"name":"CPEVENT_BITSHIFT_SAC","features":[428]},{"name":"CPEVENT_BITSHIFT_STUBLIB","features":[428]},{"name":"CPEVENT_BITSHIFT_UNTRUSTEDGRAPH","features":[428]},{"name":"CPEVENT_COPP","features":[428]},{"name":"CPEVENT_DOWNRES","features":[428]},{"name":"CPEVENT_LICENSE","features":[428]},{"name":"CPEVENT_NONE","features":[428]},{"name":"CPEVENT_PROTECTWINDOWED","features":[428]},{"name":"CPEVENT_RATINGS","features":[428]},{"name":"CPEVENT_ROLLBACK","features":[428]},{"name":"CPEVENT_SAC","features":[428]},{"name":"CPEVENT_STUBLIB","features":[428]},{"name":"CPEVENT_UNTRUSTEDGRAPH","features":[428]},{"name":"CPEventBitShift","features":[428]},{"name":"CPEvents","features":[428]},{"name":"CPRecordingStatus","features":[428]},{"name":"CRID_LOCATION","features":[428]},{"name":"CRID_LOCATION_DVB_RESERVED1","features":[428]},{"name":"CRID_LOCATION_DVB_RESERVED2","features":[428]},{"name":"CRID_LOCATION_IN_CIT","features":[428]},{"name":"CRID_LOCATION_IN_DESCRIPTOR","features":[428]},{"name":"CROSSBAR_DEFAULT_FLAGS","features":[428]},{"name":"CXDSData","features":[428]},{"name":"Canadian_English","features":[428]},{"name":"Canadian_French","features":[428]},{"name":"ChannelChangeInfo","features":[428]},{"name":"ChannelChangeSpanningEvent_End","features":[428]},{"name":"ChannelChangeSpanningEvent_Start","features":[428]},{"name":"ChannelChangeSpanningEvent_State","features":[428]},{"name":"ChannelIDTuneRequest","features":[428]},{"name":"ChannelIDTuningSpace","features":[428]},{"name":"ChannelInfo","features":[428]},{"name":"ChannelTuneRequest","features":[428]},{"name":"ChannelType","features":[428]},{"name":"ChannelTypeAudio","features":[428]},{"name":"ChannelTypeCaptions","features":[428]},{"name":"ChannelTypeData","features":[428]},{"name":"ChannelTypeInfo","features":[428]},{"name":"ChannelTypeNone","features":[428]},{"name":"ChannelTypeOther","features":[428]},{"name":"ChannelTypeSubtitles","features":[428]},{"name":"ChannelTypeSuperimpose","features":[428]},{"name":"ChannelTypeText","features":[428]},{"name":"ChannelTypeVideo","features":[428]},{"name":"Component","features":[428]},{"name":"ComponentType","features":[428]},{"name":"ComponentTypes","features":[428]},{"name":"Components","features":[428]},{"name":"CreatePropBagOnRegKey","features":[428]},{"name":"DEF_MODE_PROFILE","features":[428]},{"name":"DEF_MODE_STREAMS","features":[428]},{"name":"DESC_LINKAGE_CA_REPLACEMENT","features":[428]},{"name":"DESC_LINKAGE_COMPLETE_NET_BOUQUET_SI","features":[428]},{"name":"DESC_LINKAGE_DATA","features":[428]},{"name":"DESC_LINKAGE_EPG","features":[428]},{"name":"DESC_LINKAGE_INFORMATION","features":[428]},{"name":"DESC_LINKAGE_REPLACEMENT","features":[428]},{"name":"DESC_LINKAGE_RESERVED0","features":[428]},{"name":"DESC_LINKAGE_RESERVED1","features":[428]},{"name":"DESC_LINKAGE_RESERVED2","features":[428]},{"name":"DESC_LINKAGE_TYPE","features":[428]},{"name":"DESC_LINKAGE_USER","features":[428]},{"name":"DIGITAL_CABLE_NETWORK_TYPE","features":[428]},{"name":"DIRECT_TV_SATELLITE_TV_NETWORK_TYPE","features":[428]},{"name":"DISPID_CHTUNER_ACTR_MINOR_CHANNEL","features":[428]},{"name":"DISPID_CHTUNER_ATVAC_CHANNEL","features":[428]},{"name":"DISPID_CHTUNER_ATVDC_CONTENT","features":[428]},{"name":"DISPID_CHTUNER_ATVDC_SYSTEM","features":[428]},{"name":"DISPID_CHTUNER_CIDTR_CHANNELID","features":[428]},{"name":"DISPID_CHTUNER_CTR_CHANNEL","features":[428]},{"name":"DISPID_CHTUNER_DCTR_MAJOR_CHANNEL","features":[428]},{"name":"DISPID_CHTUNER_DCTR_SRCID","features":[428]},{"name":"DISPID_DVBTUNER_DVBC_ATTRIBUTESVALID","features":[428]},{"name":"DISPID_DVBTUNER_DVBC_COMPONENTTYPE","features":[428]},{"name":"DISPID_DVBTUNER_DVBC_PID","features":[428]},{"name":"DISPID_DVBTUNER_DVBC_TAG","features":[428]},{"name":"DISPID_DVBTUNER_ONID","features":[428]},{"name":"DISPID_DVBTUNER_SID","features":[428]},{"name":"DISPID_DVBTUNER_TSID","features":[428]},{"name":"DISPID_MP2TUNERFACTORY_CREATETUNEREQUEST","features":[428]},{"name":"DISPID_MP2TUNER_PROGNO","features":[428]},{"name":"DISPID_MP2TUNER_TSID","features":[428]},{"name":"DISPID_TUNER","features":[428]},{"name":"DISPID_TUNER_ATSCCT_FLAGS","features":[428]},{"name":"DISPID_TUNER_CT_CATEGORY","features":[428]},{"name":"DISPID_TUNER_CT_CLONE","features":[428]},{"name":"DISPID_TUNER_CT_MEDIAFORMATTYPE","features":[428]},{"name":"DISPID_TUNER_CT_MEDIAMAJORTYPE","features":[428]},{"name":"DISPID_TUNER_CT_MEDIASUBTYPE","features":[428]},{"name":"DISPID_TUNER_CT_MEDIATYPE","features":[428]},{"name":"DISPID_TUNER_CT__MEDIAFORMATTYPE","features":[428]},{"name":"DISPID_TUNER_CT__MEDIAMAJORTYPE","features":[428]},{"name":"DISPID_TUNER_CT__MEDIASUBTYPE","features":[428]},{"name":"DISPID_TUNER_C_ANALOG_AUDIO","features":[428]},{"name":"DISPID_TUNER_C_CLONE","features":[428]},{"name":"DISPID_TUNER_C_DESCRIPTION","features":[428]},{"name":"DISPID_TUNER_C_LANGID","features":[428]},{"name":"DISPID_TUNER_C_MP2_PCRPID","features":[428]},{"name":"DISPID_TUNER_C_MP2_PID","features":[428]},{"name":"DISPID_TUNER_C_MP2_PROGNO","features":[428]},{"name":"DISPID_TUNER_C_STATUS","features":[428]},{"name":"DISPID_TUNER_C_TYPE","features":[428]},{"name":"DISPID_TUNER_LCT_LANGID","features":[428]},{"name":"DISPID_TUNER_L_ANALOG_STANDARD","features":[428]},{"name":"DISPID_TUNER_L_ATSC_MP2_PROGNO","features":[428]},{"name":"DISPID_TUNER_L_ATSC_PHYS_CHANNEL","features":[428]},{"name":"DISPID_TUNER_L_ATSC_TSID","features":[428]},{"name":"DISPID_TUNER_L_CARRFREQ","features":[428]},{"name":"DISPID_TUNER_L_CLONE","features":[428]},{"name":"DISPID_TUNER_L_DTV_O_MAJOR_CHANNEL","features":[428]},{"name":"DISPID_TUNER_L_DVBS2_DISEQ_LNB_SOURCE","features":[428]},{"name":"DISPID_TUNER_L_DVBS2_PILOT","features":[428]},{"name":"DISPID_TUNER_L_DVBS2_ROLLOFF","features":[428]},{"name":"DISPID_TUNER_L_DVBS_AZIMUTH","features":[428]},{"name":"DISPID_TUNER_L_DVBS_ELEVATION","features":[428]},{"name":"DISPID_TUNER_L_DVBS_ORBITAL","features":[428]},{"name":"DISPID_TUNER_L_DVBS_POLARISATION","features":[428]},{"name":"DISPID_TUNER_L_DVBS_WEST","features":[428]},{"name":"DISPID_TUNER_L_DVBT2_PHYSICALLAYERPIPEID","features":[428]},{"name":"DISPID_TUNER_L_DVBT_BANDWIDTH","features":[428]},{"name":"DISPID_TUNER_L_DVBT_GUARDINTERVAL","features":[428]},{"name":"DISPID_TUNER_L_DVBT_HALPHA","features":[428]},{"name":"DISPID_TUNER_L_DVBT_INUSE","features":[428]},{"name":"DISPID_TUNER_L_DVBT_LPINNERFECMETHOD","features":[428]},{"name":"DISPID_TUNER_L_DVBT_LPINNERFECRATE","features":[428]},{"name":"DISPID_TUNER_L_DVBT_TRANSMISSIONMODE","features":[428]},{"name":"DISPID_TUNER_L_INNERFECMETHOD","features":[428]},{"name":"DISPID_TUNER_L_INNERFECRATE","features":[428]},{"name":"DISPID_TUNER_L_MOD","features":[428]},{"name":"DISPID_TUNER_L_OUTERFECMETHOD","features":[428]},{"name":"DISPID_TUNER_L_OUTERFECRATE","features":[428]},{"name":"DISPID_TUNER_L_SYMRATE","features":[428]},{"name":"DISPID_TUNER_MP2CT_TYPE","features":[428]},{"name":"DISPID_TUNER_TR_CLONE","features":[428]},{"name":"DISPID_TUNER_TR_COMPONENTS","features":[428]},{"name":"DISPID_TUNER_TR_LOCATOR","features":[428]},{"name":"DISPID_TUNER_TR_TUNINGSPACE","features":[428]},{"name":"DISPID_TUNER_TS_AR_COUNTRYCODE","features":[428]},{"name":"DISPID_TUNER_TS_AR_MAXFREQUENCY","features":[428]},{"name":"DISPID_TUNER_TS_AR_MINFREQUENCY","features":[428]},{"name":"DISPID_TUNER_TS_AR_STEP","features":[428]},{"name":"DISPID_TUNER_TS_ATSC_MAXMINORCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_ATSC_MAXPHYSCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_ATSC_MINMINORCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_ATSC_MINPHYSCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_ATV_COUNTRYCODE","features":[428]},{"name":"DISPID_TUNER_TS_ATV_INPUTTYPE","features":[428]},{"name":"DISPID_TUNER_TS_ATV_MAXCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_ATV_MINCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_AUX_COUNTRYCODE","features":[428]},{"name":"DISPID_TUNER_TS_CLONE","features":[428]},{"name":"DISPID_TUNER_TS_CLSID","features":[428]},{"name":"DISPID_TUNER_TS_CREATETUNEREQUEST","features":[428]},{"name":"DISPID_TUNER_TS_DC_MAXMAJORCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_DC_MAXSOURCEID","features":[428]},{"name":"DISPID_TUNER_TS_DC_MINMAJORCHANNEL","features":[428]},{"name":"DISPID_TUNER_TS_DC_MINSOURCEID","features":[428]},{"name":"DISPID_TUNER_TS_DEFAULTPREFERREDCOMPONENTTYPES","features":[428]},{"name":"DISPID_TUNER_TS_DEFLOCATOR","features":[428]},{"name":"DISPID_TUNER_TS_DVB2_NETWORK_ID","features":[428]},{"name":"DISPID_TUNER_TS_DVBS2_HI_OSC_FREQ_OVERRIDE","features":[428]},{"name":"DISPID_TUNER_TS_DVBS2_LNB_SWITCH_FREQ_OVERRIDE","features":[428]},{"name":"DISPID_TUNER_TS_DVBS2_LOW_OSC_FREQ_OVERRIDE","features":[428]},{"name":"DISPID_TUNER_TS_DVBS2_SPECTRAL_INVERSION_OVERRIDE","features":[428]},{"name":"DISPID_TUNER_TS_DVBS_HI_OSC_FREQ","features":[428]},{"name":"DISPID_TUNER_TS_DVBS_INPUT_RANGE","features":[428]},{"name":"DISPID_TUNER_TS_DVBS_LNB_SWITCH_FREQ","features":[428]},{"name":"DISPID_TUNER_TS_DVBS_LOW_OSC_FREQ","features":[428]},{"name":"DISPID_TUNER_TS_DVBS_SPECTRAL_INVERSION","features":[428]},{"name":"DISPID_TUNER_TS_DVB_SYSTEMTYPE","features":[428]},{"name":"DISPID_TUNER_TS_ENUMCATEGORYGUIDS","features":[428]},{"name":"DISPID_TUNER_TS_ENUMDEVICEMONIKERS","features":[428]},{"name":"DISPID_TUNER_TS_FREQMAP","features":[428]},{"name":"DISPID_TUNER_TS_FRIENDLYNAME","features":[428]},{"name":"DISPID_TUNER_TS_NETWORKTYPE","features":[428]},{"name":"DISPID_TUNER_TS_UNIQUENAME","features":[428]},{"name":"DISPID_TUNER_TS__NETWORKTYPE","features":[428]},{"name":"DOWNRES_Always","features":[428]},{"name":"DOWNRES_InWindowOnly","features":[428]},{"name":"DOWNRES_Undefined","features":[428]},{"name":"DSATTRIB_BadSampleInfo","features":[428]},{"name":"DSATTRIB_WMDRMProtectionInfo","features":[428]},{"name":"DSHOW_STREAM_DESC","features":[303,428]},{"name":"DSMCC_ELEMENT","features":[428]},{"name":"DSMCC_FILTER_OPTIONS","features":[303,428]},{"name":"DSMCC_SECTION","features":[428]},{"name":"DTFilter","features":[428]},{"name":"DTV_CardStatus_Error","features":[428]},{"name":"DTV_CardStatus_FirmwareDownload","features":[428]},{"name":"DTV_CardStatus_Inserted","features":[428]},{"name":"DTV_CardStatus_Removed","features":[428]},{"name":"DTV_Entitlement_CanDecrypt","features":[428]},{"name":"DTV_Entitlement_NotEntitled","features":[428]},{"name":"DTV_Entitlement_TechnicalFailure","features":[428]},{"name":"DTV_MMIMessage_Close","features":[428]},{"name":"DTV_MMIMessage_Open","features":[428]},{"name":"DVBCLocator","features":[428]},{"name":"DVBSLocator","features":[428]},{"name":"DVBSTuningSpace","features":[428]},{"name":"DVBS_SCAN_TABLE_MAX_SIZE","features":[428]},{"name":"DVBScramblingControlSpanningEvent","features":[303,428]},{"name":"DVBTLocator","features":[428]},{"name":"DVBTLocator2","features":[428]},{"name":"DVBTuneRequest","features":[428]},{"name":"DVBTuningSpace","features":[428]},{"name":"DVB_BAT_PID","features":[428]},{"name":"DVB_BAT_TID","features":[428]},{"name":"DVB_CABLE_TV_NETWORK_TYPE","features":[428]},{"name":"DVB_DIT_PID","features":[428]},{"name":"DVB_DIT_TID","features":[428]},{"name":"DVB_EIT_ACTUAL_TID","features":[428]},{"name":"DVB_EIT_FILTER_OPTIONS","features":[303,428]},{"name":"DVB_EIT_OTHER_TID","features":[428]},{"name":"DVB_EIT_PID","features":[428]},{"name":"DVB_NIT_ACTUAL_TID","features":[428]},{"name":"DVB_NIT_OTHER_TID","features":[428]},{"name":"DVB_NIT_PID","features":[428]},{"name":"DVB_RST_PID","features":[428]},{"name":"DVB_RST_TID","features":[428]},{"name":"DVB_SATELLITE_TV_NETWORK_TYPE","features":[428]},{"name":"DVB_SDT_ACTUAL_TID","features":[428]},{"name":"DVB_SDT_OTHER_TID","features":[428]},{"name":"DVB_SDT_PID","features":[428]},{"name":"DVB_SIT_PID","features":[428]},{"name":"DVB_SIT_TID","features":[428]},{"name":"DVB_STRCONV_MODE","features":[428]},{"name":"DVB_ST_PID_16","features":[428]},{"name":"DVB_ST_PID_17","features":[428]},{"name":"DVB_ST_PID_18","features":[428]},{"name":"DVB_ST_PID_19","features":[428]},{"name":"DVB_ST_PID_20","features":[428]},{"name":"DVB_ST_TID","features":[428]},{"name":"DVB_TDT_PID","features":[428]},{"name":"DVB_TDT_TID","features":[428]},{"name":"DVB_TERRESTRIAL_TV_NETWORK_TYPE","features":[428]},{"name":"DVB_TOT_PID","features":[428]},{"name":"DVB_TOT_TID","features":[428]},{"name":"DVDFilterState","features":[428]},{"name":"DVDMenuIDConstants","features":[428]},{"name":"DVDSPExt","features":[428]},{"name":"DVDTextStringType","features":[428]},{"name":"DVR_STREAM_DESC","features":[303,428,426]},{"name":"DigitalCableLocator","features":[428]},{"name":"DigitalCableTuneRequest","features":[428]},{"name":"DigitalCableTuningSpace","features":[428]},{"name":"DigitalLocator","features":[428]},{"name":"DisplaySizeList","features":[428]},{"name":"DownResEventParam","features":[428]},{"name":"DualMonoInfo","features":[428]},{"name":"DvbParentalRatingDescriptor","features":[428]},{"name":"DvbParentalRatingParam","features":[428]},{"name":"ECHOSTAR_SATELLITE_TV_NETWORK_TYPE","features":[428]},{"name":"ENCDEC_CPEVENT","features":[428]},{"name":"ENCDEC_RECORDING_STATUS","features":[428]},{"name":"ESEventFactory","features":[428]},{"name":"ESEventService","features":[428]},{"name":"ETFilter","features":[428]},{"name":"EVENTID_ARIBcontentSpanningEvent","features":[428]},{"name":"EVENTID_AudioDescriptorSpanningEvent","features":[428]},{"name":"EVENTID_AudioTypeSpanningEvent","features":[428]},{"name":"EVENTID_BDAConditionalAccessTAG","features":[428]},{"name":"EVENTID_BDAEventingServicePendingEvent","features":[428]},{"name":"EVENTID_BDA_CASBroadcastMMI","features":[428]},{"name":"EVENTID_BDA_CASCloseMMI","features":[428]},{"name":"EVENTID_BDA_CASOpenMMI","features":[428]},{"name":"EVENTID_BDA_CASReleaseTuner","features":[428]},{"name":"EVENTID_BDA_CASRequestTuner","features":[428]},{"name":"EVENTID_BDA_DiseqCResponseAvailable","features":[428]},{"name":"EVENTID_BDA_EncoderSignalLock","features":[428]},{"name":"EVENTID_BDA_FdcStatus","features":[428]},{"name":"EVENTID_BDA_FdcTableSection","features":[428]},{"name":"EVENTID_BDA_GPNVValueUpdate","features":[428]},{"name":"EVENTID_BDA_GuideDataAvailable","features":[428]},{"name":"EVENTID_BDA_GuideDataError","features":[428]},{"name":"EVENTID_BDA_GuideServiceInformationUpdated","features":[428]},{"name":"EVENTID_BDA_IsdbCASResponse","features":[428]},{"name":"EVENTID_BDA_LbigsCloseConnectionHandle","features":[428]},{"name":"EVENTID_BDA_LbigsOpenConnection","features":[428]},{"name":"EVENTID_BDA_LbigsSendData","features":[428]},{"name":"EVENTID_BDA_RatingPinReset","features":[428]},{"name":"EVENTID_BDA_TransprtStreamSelectorInfo","features":[428]},{"name":"EVENTID_BDA_TunerNoSignal","features":[428]},{"name":"EVENTID_BDA_TunerSignalLock","features":[428]},{"name":"EVENTID_BDA_UpdateDrmStatus","features":[428]},{"name":"EVENTID_BDA_UpdateScanState","features":[428]},{"name":"EVENTID_CADenialCountChanged","features":[428]},{"name":"EVENTID_CASFailureSpanningEvent","features":[428]},{"name":"EVENTID_CSDescriptorSpanningEvent","features":[428]},{"name":"EVENTID_CandidatePostTuneData","features":[428]},{"name":"EVENTID_CardStatusChanged","features":[428]},{"name":"EVENTID_ChannelChangeSpanningEvent","features":[428]},{"name":"EVENTID_ChannelInfoSpanningEvent","features":[428]},{"name":"EVENTID_ChannelTypeSpanningEvent","features":[428]},{"name":"EVENTID_CtxADescriptorSpanningEvent","features":[428]},{"name":"EVENTID_DFNWithNoActualAVData","features":[428]},{"name":"EVENTID_DRMParingStatusChanged","features":[428]},{"name":"EVENTID_DRMParingStepComplete","features":[428]},{"name":"EVENTID_DTFilterCOPPBlock","features":[428]},{"name":"EVENTID_DTFilterCOPPUnblock","features":[428]},{"name":"EVENTID_DTFilterDataFormatFailure","features":[428]},{"name":"EVENTID_DTFilterDataFormatOK","features":[428]},{"name":"EVENTID_DTFilterRatingChange","features":[428]},{"name":"EVENTID_DTFilterRatingsBlock","features":[428]},{"name":"EVENTID_DTFilterRatingsUnblock","features":[428]},{"name":"EVENTID_DTFilterXDSPacket","features":[428]},{"name":"EVENTID_DVBScramblingControlSpanningEvent","features":[428]},{"name":"EVENTID_DemultiplexerFilterDiscontinuity","features":[428]},{"name":"EVENTID_DualMonoSpanningEvent","features":[428]},{"name":"EVENTID_DvbParentalRatingDescriptor","features":[428]},{"name":"EVENTID_EASMessageReceived","features":[428]},{"name":"EVENTID_ETDTFilterLicenseFailure","features":[428]},{"name":"EVENTID_ETDTFilterLicenseOK","features":[428]},{"name":"EVENTID_ETFilterCopyNever","features":[428]},{"name":"EVENTID_ETFilterCopyOnce","features":[428]},{"name":"EVENTID_ETFilterEncryptionOff","features":[428]},{"name":"EVENTID_ETFilterEncryptionOn","features":[428]},{"name":"EVENTID_EmmMessageSpanningEvent","features":[428]},{"name":"EVENTID_EncDecFilterError","features":[428]},{"name":"EVENTID_EncDecFilterEvent","features":[428]},{"name":"EVENTID_EntitlementChanged","features":[428]},{"name":"EVENTID_FormatNotSupportedEvent","features":[428]},{"name":"EVENTID_LanguageSpanningEvent","features":[428]},{"name":"EVENTID_MMIMessage","features":[428]},{"name":"EVENTID_NewSignalAcquired","features":[428]},{"name":"EVENTID_PBDAParentalControlEvent","features":[428]},{"name":"EVENTID_PIDListSpanningEvent","features":[428]},{"name":"EVENTID_PSITable","features":[428]},{"name":"EVENTID_RRTSpanningEvent","features":[428]},{"name":"EVENTID_SBE2RecControlStarted","features":[428]},{"name":"EVENTID_SBE2RecControlStopped","features":[428]},{"name":"EVENTID_STBChannelNumber","features":[428]},{"name":"EVENTID_ServiceTerminated","features":[428]},{"name":"EVENTID_SignalAndServiceStatusSpanningEvent","features":[428]},{"name":"EVENTID_SignalStatusChanged","features":[428]},{"name":"EVENTID_StreamIDSpanningEvent","features":[428]},{"name":"EVENTID_StreamTypeSpanningEvent","features":[428]},{"name":"EVENTID_SubtitleSpanningEvent","features":[428]},{"name":"EVENTID_TeletextSpanningEvent","features":[428]},{"name":"EVENTID_TuneFailureEvent","features":[428]},{"name":"EVENTID_TuneFailureSpanningEvent","features":[428]},{"name":"EVENTID_TuningChanged","features":[428]},{"name":"EVENTID_TuningChanging","features":[428]},{"name":"EVENTID_XDSCodecDuplicateXDSRating","features":[428]},{"name":"EVENTID_XDSCodecNewXDSPacket","features":[428]},{"name":"EVENTID_XDSCodecNewXDSRating","features":[428]},{"name":"EVENTTYPE_CASDescrambleFailureEvent","features":[428]},{"name":"EnTag_Mode","features":[428]},{"name":"EnTag_Once","features":[428]},{"name":"EnTag_Remove","features":[428]},{"name":"EnTag_Repeat","features":[428]},{"name":"EnTvRat_CAE_TV","features":[428]},{"name":"EnTvRat_CAF_TV","features":[428]},{"name":"EnTvRat_GenericLevel","features":[428]},{"name":"EnTvRat_MPAA","features":[428]},{"name":"EnTvRat_System","features":[428]},{"name":"EnTvRat_US_TV","features":[428]},{"name":"EncDecEvents","features":[428]},{"name":"EvalRat","features":[428]},{"name":"FORMATNOTSUPPORTED_CLEAR","features":[428]},{"name":"FORMATNOTSUPPORTED_NOTSUPPORTED","features":[428]},{"name":"FORMATTYPE_CPFilters_Processed","features":[428]},{"name":"FORMATTYPE_ETDTFilter_Tagged","features":[428]},{"name":"FormatNotSupportedEvents","features":[428]},{"name":"FrameMode","features":[428]},{"name":"IATSCChannelTuneRequest","features":[428,354]},{"name":"IATSCComponentType","features":[428,354]},{"name":"IATSCLocator","features":[428,354]},{"name":"IATSCLocator2","features":[428,354]},{"name":"IATSCTuningSpace","features":[428,354]},{"name":"IATSC_EIT","features":[428]},{"name":"IATSC_ETT","features":[428]},{"name":"IATSC_MGT","features":[428]},{"name":"IATSC_STT","features":[428]},{"name":"IATSC_VCT","features":[428]},{"name":"IAnalogAudioComponentType","features":[428,354]},{"name":"IAnalogLocator","features":[428,354]},{"name":"IAnalogRadioTuningSpace","features":[428,354]},{"name":"IAnalogRadioTuningSpace2","features":[428,354]},{"name":"IAnalogTVTuningSpace","features":[428,354]},{"name":"IAtscContentAdvisoryDescriptor","features":[428]},{"name":"IAtscPsipParser","features":[428]},{"name":"IAttributeGet","features":[428]},{"name":"IAttributeSet","features":[428]},{"name":"IAuxInTuningSpace","features":[428,354]},{"name":"IAuxInTuningSpace2","features":[428,354]},{"name":"IBDAComparable","features":[428]},{"name":"IBDACreateTuneRequestEx","features":[428]},{"name":"IBDA_TIF_REGISTRATION","features":[428]},{"name":"ICAT","features":[428]},{"name":"ICaptionServiceDescriptor","features":[428]},{"name":"IChannelIDTuneRequest","features":[428,354]},{"name":"IChannelTuneRequest","features":[428,354]},{"name":"IComponent","features":[428,354]},{"name":"IComponentType","features":[428,354]},{"name":"IComponentTypes","features":[428,354]},{"name":"IComponents","features":[428,354]},{"name":"IComponentsOld","features":[428,354]},{"name":"ICreatePropBagOnRegKey","features":[428]},{"name":"IDTFilter","features":[428]},{"name":"IDTFilter2","features":[428]},{"name":"IDTFilter3","features":[428]},{"name":"IDTFilterConfig","features":[428]},{"name":"IDTFilterEvents","features":[428,354]},{"name":"IDTFilterLicenseRenewal","features":[428]},{"name":"IDVBCLocator","features":[428,354]},{"name":"IDVBSLocator","features":[428,354]},{"name":"IDVBSLocator2","features":[428,354]},{"name":"IDVBSTuningSpace","features":[428,354]},{"name":"IDVBTLocator","features":[428,354]},{"name":"IDVBTLocator2","features":[428,354]},{"name":"IDVBTuneRequest","features":[428,354]},{"name":"IDVBTuningSpace","features":[428,354]},{"name":"IDVBTuningSpace2","features":[428,354]},{"name":"IDVB_BAT","features":[428]},{"name":"IDVB_DIT","features":[428]},{"name":"IDVB_EIT","features":[428]},{"name":"IDVB_EIT2","features":[428]},{"name":"IDVB_NIT","features":[428]},{"name":"IDVB_RST","features":[428]},{"name":"IDVB_SDT","features":[428]},{"name":"IDVB_SIT","features":[428]},{"name":"IDVB_ST","features":[428]},{"name":"IDVB_TDT","features":[428]},{"name":"IDVB_TOT","features":[428]},{"name":"IDigitalCableLocator","features":[428,354]},{"name":"IDigitalCableTuneRequest","features":[428,354]},{"name":"IDigitalCableTuningSpace","features":[428,354]},{"name":"IDigitalLocator","features":[428,354]},{"name":"IDvbCableDeliverySystemDescriptor","features":[428]},{"name":"IDvbComponentDescriptor","features":[428]},{"name":"IDvbContentDescriptor","features":[428]},{"name":"IDvbContentIdentifierDescriptor","features":[428]},{"name":"IDvbDataBroadcastDescriptor","features":[428]},{"name":"IDvbDataBroadcastIDDescriptor","features":[428]},{"name":"IDvbDefaultAuthorityDescriptor","features":[428]},{"name":"IDvbExtendedEventDescriptor","features":[428]},{"name":"IDvbFrequencyListDescriptor","features":[428]},{"name":"IDvbHDSimulcastLogicalChannelDescriptor","features":[428]},{"name":"IDvbLinkageDescriptor","features":[428]},{"name":"IDvbLogicalChannel2Descriptor","features":[428]},{"name":"IDvbLogicalChannelDescriptor","features":[428]},{"name":"IDvbLogicalChannelDescriptor2","features":[428]},{"name":"IDvbMultilingualServiceNameDescriptor","features":[428]},{"name":"IDvbNetworkNameDescriptor","features":[428]},{"name":"IDvbParentalRatingDescriptor","features":[428]},{"name":"IDvbPrivateDataSpecifierDescriptor","features":[428]},{"name":"IDvbSatelliteDeliverySystemDescriptor","features":[428]},{"name":"IDvbServiceAttributeDescriptor","features":[428]},{"name":"IDvbServiceDescriptor","features":[428]},{"name":"IDvbServiceDescriptor2","features":[428]},{"name":"IDvbServiceListDescriptor","features":[428]},{"name":"IDvbShortEventDescriptor","features":[428]},{"name":"IDvbSiParser","features":[428]},{"name":"IDvbSiParser2","features":[428]},{"name":"IDvbSubtitlingDescriptor","features":[428]},{"name":"IDvbTeletextDescriptor","features":[428]},{"name":"IDvbTerrestrial2DeliverySystemDescriptor","features":[428]},{"name":"IDvbTerrestrialDeliverySystemDescriptor","features":[428]},{"name":"IESCloseMmiEvent","features":[428]},{"name":"IESEventFactory","features":[428]},{"name":"IESEventService","features":[428]},{"name":"IESEventServiceConfiguration","features":[428]},{"name":"IESFileExpiryDateEvent","features":[428]},{"name":"IESIsdbCasResponseEvent","features":[428]},{"name":"IESLicenseRenewalResultEvent","features":[428]},{"name":"IESOpenMmiEvent","features":[428]},{"name":"IESRequestTunerEvent","features":[428]},{"name":"IESValueUpdatedEvent","features":[428]},{"name":"IETFilter","features":[428]},{"name":"IETFilterConfig","features":[428]},{"name":"IETFilterEvents","features":[428,354]},{"name":"IEnumComponentTypes","features":[428]},{"name":"IEnumComponents","features":[428]},{"name":"IEnumGuideDataProperties","features":[428]},{"name":"IEnumMSVidGraphSegment","features":[428]},{"name":"IEnumStreamBufferRecordingAttrib","features":[428]},{"name":"IEnumTuneRequests","features":[428]},{"name":"IEnumTuningSpaces","features":[428]},{"name":"IEvalRat","features":[428,354]},{"name":"IGenericDescriptor","features":[428]},{"name":"IGenericDescriptor2","features":[428]},{"name":"IGpnvsCommonBase","features":[428]},{"name":"IGuideData","features":[428]},{"name":"IGuideDataEvent","features":[428]},{"name":"IGuideDataLoader","features":[428]},{"name":"IGuideDataProperty","features":[428]},{"name":"IISDBSLocator","features":[428,354]},{"name":"IISDB_BIT","features":[428]},{"name":"IISDB_CDT","features":[428]},{"name":"IISDB_EMM","features":[428]},{"name":"IISDB_LDT","features":[428]},{"name":"IISDB_NBIT","features":[428]},{"name":"IISDB_SDT","features":[428]},{"name":"IISDB_SDTT","features":[428]},{"name":"IIsdbAudioComponentDescriptor","features":[428]},{"name":"IIsdbCAContractInformationDescriptor","features":[428]},{"name":"IIsdbCADescriptor","features":[428]},{"name":"IIsdbCAServiceDescriptor","features":[428]},{"name":"IIsdbComponentGroupDescriptor","features":[428]},{"name":"IIsdbDataContentDescriptor","features":[428]},{"name":"IIsdbDigitalCopyControlDescriptor","features":[428]},{"name":"IIsdbDownloadContentDescriptor","features":[428]},{"name":"IIsdbEmergencyInformationDescriptor","features":[428]},{"name":"IIsdbEventGroupDescriptor","features":[428]},{"name":"IIsdbHierarchicalTransmissionDescriptor","features":[428]},{"name":"IIsdbLogoTransmissionDescriptor","features":[428]},{"name":"IIsdbSIParameterDescriptor","features":[428]},{"name":"IIsdbSeriesDescriptor","features":[428]},{"name":"IIsdbSiParser2","features":[428]},{"name":"IIsdbTSInformationDescriptor","features":[428]},{"name":"IIsdbTerrestrialDeliverySystemDescriptor","features":[428]},{"name":"ILanguageComponentType","features":[428,354]},{"name":"ILocator","features":[428,354]},{"name":"IMPEG2Component","features":[428,354]},{"name":"IMPEG2ComponentType","features":[428,354]},{"name":"IMPEG2TuneRequest","features":[428,354]},{"name":"IMPEG2TuneRequestFactory","features":[428,354]},{"name":"IMPEG2TuneRequestSupport","features":[428]},{"name":"IMPEG2_TIF_CONTROL","features":[428]},{"name":"IMSEventBinder","features":[428,354]},{"name":"IMSVidAnalogTuner","features":[428,354]},{"name":"IMSVidAnalogTuner2","features":[428,354]},{"name":"IMSVidAnalogTunerEvent","features":[428,354]},{"name":"IMSVidAudioRenderer","features":[428,354]},{"name":"IMSVidAudioRendererDevices","features":[428,354]},{"name":"IMSVidAudioRendererEvent","features":[428,354]},{"name":"IMSVidAudioRendererEvent2","features":[428,354]},{"name":"IMSVidClosedCaptioning","features":[428,354]},{"name":"IMSVidClosedCaptioning2","features":[428,354]},{"name":"IMSVidClosedCaptioning3","features":[428,354]},{"name":"IMSVidCompositionSegment","features":[428,354]},{"name":"IMSVidCtl","features":[428,354]},{"name":"IMSVidDataServices","features":[428,354]},{"name":"IMSVidDataServicesEvent","features":[428,354]},{"name":"IMSVidDevice","features":[428,354]},{"name":"IMSVidDevice2","features":[428]},{"name":"IMSVidDeviceEvent","features":[428,354]},{"name":"IMSVidEVR","features":[428,354]},{"name":"IMSVidEVREvent","features":[428,354]},{"name":"IMSVidEncoder","features":[428,354]},{"name":"IMSVidFeature","features":[428,354]},{"name":"IMSVidFeatureEvent","features":[428,354]},{"name":"IMSVidFeatures","features":[428,354]},{"name":"IMSVidFilePlayback","features":[428,354]},{"name":"IMSVidFilePlayback2","features":[428,354]},{"name":"IMSVidFilePlaybackEvent","features":[428,354]},{"name":"IMSVidGenericSink","features":[428,354]},{"name":"IMSVidGenericSink2","features":[428,354]},{"name":"IMSVidGraphSegment","features":[428,354]},{"name":"IMSVidGraphSegmentContainer","features":[428]},{"name":"IMSVidGraphSegmentUserInput","features":[428]},{"name":"IMSVidInputDevice","features":[428,354]},{"name":"IMSVidInputDeviceEvent","features":[428,354]},{"name":"IMSVidInputDevices","features":[428,354]},{"name":"IMSVidOutputDevice","features":[428,354]},{"name":"IMSVidOutputDeviceEvent","features":[428,354]},{"name":"IMSVidOutputDevices","features":[428,354]},{"name":"IMSVidPlayback","features":[428,354]},{"name":"IMSVidPlaybackEvent","features":[428,354]},{"name":"IMSVidRect","features":[428,354]},{"name":"IMSVidStreamBufferRecordingControl","features":[428,354]},{"name":"IMSVidStreamBufferSink","features":[428,354]},{"name":"IMSVidStreamBufferSink2","features":[428,354]},{"name":"IMSVidStreamBufferSink3","features":[428,354]},{"name":"IMSVidStreamBufferSinkEvent","features":[428,354]},{"name":"IMSVidStreamBufferSinkEvent2","features":[428,354]},{"name":"IMSVidStreamBufferSinkEvent3","features":[428,354]},{"name":"IMSVidStreamBufferSinkEvent4","features":[428,354]},{"name":"IMSVidStreamBufferSource","features":[428,354]},{"name":"IMSVidStreamBufferSource2","features":[428,354]},{"name":"IMSVidStreamBufferSourceEvent","features":[428,354]},{"name":"IMSVidStreamBufferSourceEvent2","features":[428,354]},{"name":"IMSVidStreamBufferSourceEvent3","features":[428,354]},{"name":"IMSVidStreamBufferV2SourceEvent","features":[428,354]},{"name":"IMSVidTuner","features":[428,354]},{"name":"IMSVidTunerEvent","features":[428,354]},{"name":"IMSVidVMR9","features":[428,354]},{"name":"IMSVidVRGraphSegment","features":[428,354]},{"name":"IMSVidVideoInputDevice","features":[428,354]},{"name":"IMSVidVideoRenderer","features":[428,354]},{"name":"IMSVidVideoRenderer2","features":[428,354]},{"name":"IMSVidVideoRendererDevices","features":[428,354]},{"name":"IMSVidVideoRendererEvent","features":[428,354]},{"name":"IMSVidVideoRendererEvent2","features":[428,354]},{"name":"IMSVidWebDVD","features":[428,354]},{"name":"IMSVidWebDVD2","features":[428,354]},{"name":"IMSVidWebDVDAdm","features":[428,354]},{"name":"IMSVidWebDVDEvent","features":[428,354]},{"name":"IMSVidXDS","features":[428,354]},{"name":"IMSVidXDSEvent","features":[428,354]},{"name":"IMceBurnerControl","features":[428]},{"name":"IMpeg2Data","features":[428]},{"name":"IMpeg2Stream","features":[428]},{"name":"IMpeg2TableFilter","features":[428]},{"name":"IPAT","features":[428]},{"name":"IPBDAAttributesDescriptor","features":[428]},{"name":"IPBDAEntitlementDescriptor","features":[428]},{"name":"IPBDASiParser","features":[428]},{"name":"IPBDA_EIT","features":[428]},{"name":"IPBDA_Services","features":[428]},{"name":"IPMT","features":[428]},{"name":"IPSITables","features":[428]},{"name":"IPTFilterLicenseRenewal","features":[428]},{"name":"IPersistTuneXml","features":[428,354]},{"name":"IPersistTuneXmlUtility","features":[428]},{"name":"IPersistTuneXmlUtility2","features":[428]},{"name":"IRegisterTuner","features":[428]},{"name":"ISBE2Crossbar","features":[428]},{"name":"ISBE2EnumStream","features":[428]},{"name":"ISBE2FileScan","features":[428]},{"name":"ISBE2GlobalEvent","features":[428]},{"name":"ISBE2GlobalEvent2","features":[428]},{"name":"ISBE2MediaTypeProfile","features":[428]},{"name":"ISBE2SpanningEvent","features":[428]},{"name":"ISBE2StreamMap","features":[428]},{"name":"ISCTE_EAS","features":[428]},{"name":"ISDBSLocator","features":[428]},{"name":"ISDB_BIT_PID","features":[428]},{"name":"ISDB_BIT_TID","features":[428]},{"name":"ISDB_CABLE_TV_NETWORK_TYPE","features":[428]},{"name":"ISDB_CDT_PID","features":[428]},{"name":"ISDB_CDT_TID","features":[428]},{"name":"ISDB_EMM_TID","features":[428]},{"name":"ISDB_LDT_PID","features":[428]},{"name":"ISDB_LDT_TID","features":[428]},{"name":"ISDB_NBIT_MSG_TID","features":[428]},{"name":"ISDB_NBIT_PID","features":[428]},{"name":"ISDB_NBIT_REF_TID","features":[428]},{"name":"ISDB_SATELLITE_TV_NETWORK_TYPE","features":[428]},{"name":"ISDB_SDTT_ALT_PID","features":[428]},{"name":"ISDB_SDTT_PID","features":[428]},{"name":"ISDB_SDTT_TID","features":[428]},{"name":"ISDB_ST_TID","features":[428]},{"name":"ISDB_S_NETWORK_TYPE","features":[428]},{"name":"ISDB_TERRESTRIAL_TV_NETWORK_TYPE","features":[428]},{"name":"ISDB_T_NETWORK_TYPE","features":[428]},{"name":"ISIInbandEPG","features":[428]},{"name":"ISIInbandEPGEvent","features":[428]},{"name":"IScanningTuner","features":[428]},{"name":"IScanningTunerEx","features":[428]},{"name":"ISectionList","features":[428]},{"name":"IServiceLocationDescriptor","features":[428]},{"name":"IStreamBufferConfigure","features":[428]},{"name":"IStreamBufferConfigure2","features":[428]},{"name":"IStreamBufferConfigure3","features":[428]},{"name":"IStreamBufferDataCounters","features":[428]},{"name":"IStreamBufferInitialize","features":[428]},{"name":"IStreamBufferMediaSeeking","features":[428]},{"name":"IStreamBufferMediaSeeking2","features":[428]},{"name":"IStreamBufferRecComp","features":[428]},{"name":"IStreamBufferRecordControl","features":[428]},{"name":"IStreamBufferRecordingAttribute","features":[428]},{"name":"IStreamBufferSink","features":[428]},{"name":"IStreamBufferSink2","features":[428]},{"name":"IStreamBufferSink3","features":[428]},{"name":"IStreamBufferSource","features":[428]},{"name":"ITSDT","features":[428]},{"name":"ITuneRequest","features":[428,354]},{"name":"ITuneRequestInfo","features":[428]},{"name":"ITuneRequestInfoEx","features":[428]},{"name":"ITuner","features":[428]},{"name":"ITunerCap","features":[428]},{"name":"ITunerCapEx","features":[428]},{"name":"ITuningSpace","features":[428,354]},{"name":"ITuningSpaceContainer","features":[428,354]},{"name":"ITuningSpaces","features":[428,354]},{"name":"IXDSCodec","features":[428]},{"name":"IXDSCodecConfig","features":[428]},{"name":"IXDSCodecEvents","features":[428,354]},{"name":"IXDSToRat","features":[428,354]},{"name":"KSCATEGORY_BDA_IP_SINK","features":[428]},{"name":"KSCATEGORY_BDA_NETWORK_EPG","features":[428]},{"name":"KSCATEGORY_BDA_NETWORK_PROVIDER","features":[428]},{"name":"KSCATEGORY_BDA_NETWORK_TUNER","features":[428]},{"name":"KSCATEGORY_BDA_RECEIVER_COMPONENT","features":[428]},{"name":"KSCATEGORY_BDA_TRANSPORT_INFORMATION","features":[428]},{"name":"KSDATAFORMAT_SPECIFIER_BDA_IP","features":[428]},{"name":"KSDATAFORMAT_SPECIFIER_BDA_TRANSPORT","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_ATSC_SI","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_IP","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_IP_CONTROL","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_MPEG2_TRANSPORT","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_OPENCABLE_OOB_PSIP","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_OPENCABLE_PSIP","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_DVB_SI","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_ISDB_SI","features":[428]},{"name":"KSDATAFORMAT_SUBTYPE_PBDA_TRANSPORT_RAW","features":[428]},{"name":"KSDATAFORMAT_TYPE_BDA_ANTENNA","features":[428]},{"name":"KSDATAFORMAT_TYPE_BDA_IF_SIGNAL","features":[428]},{"name":"KSDATAFORMAT_TYPE_BDA_IP","features":[428]},{"name":"KSDATAFORMAT_TYPE_BDA_IP_CONTROL","features":[428]},{"name":"KSDATAFORMAT_TYPE_MPE","features":[428]},{"name":"KSDATAFORMAT_TYPE_MPEG2_SECTIONS","features":[428]},{"name":"KSEVENTDATA_BDA_RF_TUNER_SCAN_S","features":[303,428,429]},{"name":"KSEVENTSETID_BdaCAEvent","features":[428]},{"name":"KSEVENTSETID_BdaDiseqCEvent","features":[428]},{"name":"KSEVENTSETID_BdaEvent","features":[428]},{"name":"KSEVENTSETID_BdaPinEvent","features":[428]},{"name":"KSEVENTSETID_BdaTunerEvent","features":[428]},{"name":"KSEVENT_BDA_CA_MODULE_STATUS_CHANGED","features":[428]},{"name":"KSEVENT_BDA_CA_MODULE_UI_REQUESTED","features":[428]},{"name":"KSEVENT_BDA_CA_SMART_CARD_STATUS_CHANGED","features":[428]},{"name":"KSEVENT_BDA_DISEQC_DATA_RECEIVED","features":[428]},{"name":"KSEVENT_BDA_EVENT_PENDINGEVENT","features":[428]},{"name":"KSEVENT_BDA_EVENT_TYPE","features":[428]},{"name":"KSEVENT_BDA_PIN_CONNECTED","features":[428]},{"name":"KSEVENT_BDA_PIN_DISCONNECTED","features":[428]},{"name":"KSEVENT_BDA_PROGRAM_FLOW_STATUS_CHANGED","features":[428]},{"name":"KSEVENT_BDA_TUNER","features":[428]},{"name":"KSEVENT_BDA_TUNER_SCAN","features":[428]},{"name":"KSMETHODSETID_BdaChangeSync","features":[428]},{"name":"KSMETHODSETID_BdaConditionalAccessService","features":[428]},{"name":"KSMETHODSETID_BdaDebug","features":[428]},{"name":"KSMETHODSETID_BdaDeviceConfiguration","features":[428]},{"name":"KSMETHODSETID_BdaDrmService","features":[428]},{"name":"KSMETHODSETID_BdaEventing","features":[428]},{"name":"KSMETHODSETID_BdaGuideDataDeliveryService","features":[428]},{"name":"KSMETHODSETID_BdaIsdbConditionalAccess","features":[428]},{"name":"KSMETHODSETID_BdaMux","features":[428]},{"name":"KSMETHODSETID_BdaNameValue","features":[428]},{"name":"KSMETHODSETID_BdaNameValueA","features":[428]},{"name":"KSMETHODSETID_BdaScanning","features":[428]},{"name":"KSMETHODSETID_BdaTSSelector","features":[428]},{"name":"KSMETHODSETID_BdaTuner","features":[428]},{"name":"KSMETHODSETID_BdaUserActivity","features":[428]},{"name":"KSMETHODSETID_BdaWmdrmSession","features":[428]},{"name":"KSMETHODSETID_BdaWmdrmTuner","features":[428]},{"name":"KSMETHOD_BDA_CAS_CHECKENTITLEMENTTOKEN","features":[428]},{"name":"KSMETHOD_BDA_CAS_CLOSEMMIDIALOG","features":[428]},{"name":"KSMETHOD_BDA_CAS_OPENBROADCASTMMI","features":[428]},{"name":"KSMETHOD_BDA_CAS_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_CAS_SETCAPTURETOKEN","features":[428]},{"name":"KSMETHOD_BDA_CHANGE_SYNC","features":[428]},{"name":"KSMETHOD_BDA_CHECK_CHANGES","features":[428]},{"name":"KSMETHOD_BDA_COMMIT_CHANGES","features":[428]},{"name":"KSMETHOD_BDA_CREATE_PIN_FACTORY","features":[428]},{"name":"KSMETHOD_BDA_CREATE_TOPOLOGY","features":[428]},{"name":"KSMETHOD_BDA_DEBUG_DATA","features":[428]},{"name":"KSMETHOD_BDA_DEBUG_LEVEL","features":[428]},{"name":"KSMETHOD_BDA_DEBUG_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_DELETE_PIN_FACTORY","features":[428]},{"name":"KSMETHOD_BDA_DEVICE_CONFIGURATION","features":[428]},{"name":"KSMETHOD_BDA_DRM","features":[428]},{"name":"KSMETHOD_BDA_DRM_CURRENT","features":[428]},{"name":"KSMETHOD_BDA_DRM_DRMSTATUS","features":[428]},{"name":"KSMETHOD_BDA_EVENTING_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_EVENT_COMPLETE","features":[428]},{"name":"KSMETHOD_BDA_EVENT_DATA","features":[428]},{"name":"KSMETHOD_BDA_GDDS_DATA","features":[428]},{"name":"KSMETHOD_BDA_GDDS_DATATYPE","features":[428]},{"name":"KSMETHOD_BDA_GDDS_DATAUPDATE","features":[428]},{"name":"KSMETHOD_BDA_GDDS_GETSERVICES","features":[428]},{"name":"KSMETHOD_BDA_GDDS_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_GDDS_SERVICEFROMTUNEXML","features":[428]},{"name":"KSMETHOD_BDA_GDDS_TUNEXMLFROMIDX","features":[428]},{"name":"KSMETHOD_BDA_GET_CHANGE_STATE","features":[428]},{"name":"KSMETHOD_BDA_GPNV_GETVALUE","features":[428]},{"name":"KSMETHOD_BDA_GPNV_GETVALUEUPDATENAME","features":[428]},{"name":"KSMETHOD_BDA_GPNV_NAMEFROMINDEX","features":[428]},{"name":"KSMETHOD_BDA_GPNV_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_GPNV_SETVALUE","features":[428]},{"name":"KSMETHOD_BDA_ISDBCAS_RESPONSEDATA","features":[428]},{"name":"KSMETHOD_BDA_ISDBCAS_SETREQUEST","features":[428]},{"name":"KSMETHOD_BDA_ISDB_CAS","features":[428]},{"name":"KSMETHOD_BDA_MUX_GETPIDLIST","features":[428]},{"name":"KSMETHOD_BDA_MUX_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_MUX_SETPIDLIST","features":[428]},{"name":"KSMETHOD_BDA_SCANNING_STATE","features":[428]},{"name":"KSMETHOD_BDA_SCAN_CAPABILTIES","features":[428]},{"name":"KSMETHOD_BDA_SCAN_FILTER","features":[428]},{"name":"KSMETHOD_BDA_SCAN_RESUME","features":[428]},{"name":"KSMETHOD_BDA_SCAN_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_SCAN_START","features":[428]},{"name":"KSMETHOD_BDA_SCAN_STOP","features":[428]},{"name":"KSMETHOD_BDA_START_CHANGES","features":[428]},{"name":"KSMETHOD_BDA_TS_SELECTOR","features":[428]},{"name":"KSMETHOD_BDA_TS_SELECTOR_GETTSINFORMATION","features":[428]},{"name":"KSMETHOD_BDA_TS_SELECTOR_SETTSID","features":[428]},{"name":"KSMETHOD_BDA_TUNER_GETTUNERSTATE","features":[428]},{"name":"KSMETHOD_BDA_TUNER_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_TUNER_SETTUNER","features":[428]},{"name":"KSMETHOD_BDA_TUNER_SIGNALNOISERATIO","features":[428]},{"name":"KSMETHOD_BDA_USERACTIVITY_DETECTED","features":[428]},{"name":"KSMETHOD_BDA_USERACTIVITY_INTERVAL","features":[428]},{"name":"KSMETHOD_BDA_USERACTIVITY_SERVICE","features":[428]},{"name":"KSMETHOD_BDA_USERACTIVITY_USEREASON","features":[428]},{"name":"KSMETHOD_BDA_WMDRM","features":[428]},{"name":"KSMETHOD_BDA_WMDRMTUNER_CANCELCAPTURETOKEN","features":[428]},{"name":"KSMETHOD_BDA_WMDRMTUNER_GETPIDPROTECTION","features":[428]},{"name":"KSMETHOD_BDA_WMDRMTUNER_PURCHASE_ENTITLEMENT","features":[428]},{"name":"KSMETHOD_BDA_WMDRMTUNER_SETPIDPROTECTION","features":[428]},{"name":"KSMETHOD_BDA_WMDRMTUNER_SETSYNCVALUE","features":[428]},{"name":"KSMETHOD_BDA_WMDRMTUNER_STARTCODEPROFILE","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_CRL","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_KEYINFO","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_LICENSE","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_MESSAGE","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_REISSUELICENSE","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_RENEWLICENSE","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_REVINFO","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_STATUS","features":[428]},{"name":"KSMETHOD_BDA_WMDRM_TUNER","features":[428]},{"name":"KSM_BDA_BUFFER","features":[428,429]},{"name":"KSM_BDA_CAS_CAPTURETOKEN","features":[428,429]},{"name":"KSM_BDA_CAS_CLOSEMMIDIALOG","features":[428,429]},{"name":"KSM_BDA_CAS_ENTITLEMENTTOKEN","features":[428,429]},{"name":"KSM_BDA_CAS_OPENBROADCASTMMI","features":[428,429]},{"name":"KSM_BDA_DEBUG_LEVEL","features":[428,429]},{"name":"KSM_BDA_DRM_SETDRM","features":[428,429]},{"name":"KSM_BDA_EVENT_COMPLETE","features":[428,429]},{"name":"KSM_BDA_GDDS_SERVICEFROMTUNEXML","features":[428,429]},{"name":"KSM_BDA_GDDS_TUNEXMLFROMIDX","features":[428,429]},{"name":"KSM_BDA_GPNV_GETVALUE","features":[428,429]},{"name":"KSM_BDA_GPNV_NAMEINDEX","features":[428,429]},{"name":"KSM_BDA_GPNV_SETVALUE","features":[428,429]},{"name":"KSM_BDA_ISDBCAS_REQUEST","features":[428,429]},{"name":"KSM_BDA_PIN","features":[428,429]},{"name":"KSM_BDA_PIN_PAIR","features":[428,429]},{"name":"KSM_BDA_SCAN_CAPABILTIES","features":[428,429]},{"name":"KSM_BDA_SCAN_FILTER","features":[428,429]},{"name":"KSM_BDA_SCAN_START","features":[428,429]},{"name":"KSM_BDA_TS_SELECTOR_SETTSID","features":[428,429]},{"name":"KSM_BDA_TUNER_TUNEREQUEST","features":[428,429]},{"name":"KSM_BDA_USERACTIVITY_USEREASON","features":[428,429]},{"name":"KSM_BDA_WMDRMTUNER_GETPIDPROTECTION","features":[428,429]},{"name":"KSM_BDA_WMDRMTUNER_PURCHASEENTITLEMENT","features":[428,429]},{"name":"KSM_BDA_WMDRMTUNER_SETPIDPROTECTION","features":[428,429]},{"name":"KSM_BDA_WMDRMTUNER_SYNCVALUE","features":[428,429]},{"name":"KSM_BDA_WMDRM_LICENSE","features":[428,429]},{"name":"KSM_BDA_WMDRM_RENEWLICENSE","features":[428,429]},{"name":"KSNODE_BDA_8PSK_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_8VSB_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_ANALOG_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_COFDM_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_COMMON_CA_POD","features":[428]},{"name":"KSNODE_BDA_DRI_DRM","features":[428]},{"name":"KSNODE_BDA_IP_SINK","features":[428]},{"name":"KSNODE_BDA_ISDB_S_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_ISDB_T_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_OPENCABLE_POD","features":[428]},{"name":"KSNODE_BDA_PBDA_CAS","features":[428]},{"name":"KSNODE_BDA_PBDA_DRM","features":[428]},{"name":"KSNODE_BDA_PBDA_ISDBCAS","features":[428]},{"name":"KSNODE_BDA_PBDA_MUX","features":[428]},{"name":"KSNODE_BDA_PBDA_TUNER","features":[428]},{"name":"KSNODE_BDA_PID_FILTER","features":[428]},{"name":"KSNODE_BDA_QAM_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_QPSK_DEMODULATOR","features":[428]},{"name":"KSNODE_BDA_RF_TUNER","features":[428]},{"name":"KSNODE_BDA_TS_SELECTOR","features":[428]},{"name":"KSNODE_BDA_VIDEO_ENCODER","features":[428]},{"name":"KSPROPERTY_BDA_AUTODEMODULATE","features":[428]},{"name":"KSPROPERTY_BDA_AUTODEMODULATE_START","features":[428]},{"name":"KSPROPERTY_BDA_AUTODEMODULATE_STOP","features":[428]},{"name":"KSPROPERTY_BDA_CA","features":[428]},{"name":"KSPROPERTY_BDA_CA_EVENT","features":[428]},{"name":"KSPROPERTY_BDA_CA_MODULE_STATUS","features":[428]},{"name":"KSPROPERTY_BDA_CA_MODULE_UI","features":[428]},{"name":"KSPROPERTY_BDA_CA_REMOVE_PROGRAM","features":[428]},{"name":"KSPROPERTY_BDA_CA_SET_PROGRAM_PIDS","features":[428]},{"name":"KSPROPERTY_BDA_CA_SMART_CARD_STATUS","features":[428]},{"name":"KSPROPERTY_BDA_CONTROLLING_PIN_ID","features":[428]},{"name":"KSPROPERTY_BDA_DIGITAL_DEMODULATOR","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_COMMAND","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_ENABLE","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_EVENT","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_LNB_SOURCE","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_REPEATS","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_RESPONSE","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_SEND","features":[428]},{"name":"KSPROPERTY_BDA_DISEQC_USETONEBURST","features":[428]},{"name":"KSPROPERTY_BDA_ECM_MAP_STATUS","features":[428]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER","features":[428]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER_MULTICAST_LIST","features":[428]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER_MULTICAST_LIST_SIZE","features":[428]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER_MULTICAST_MODE","features":[428]},{"name":"KSPROPERTY_BDA_FREQUENCY_FILTER","features":[428]},{"name":"KSPROPERTY_BDA_GUARD_INTERVAL","features":[428]},{"name":"KSPROPERTY_BDA_INNER_FEC_RATE","features":[428]},{"name":"KSPROPERTY_BDA_INNER_FEC_TYPE","features":[428]},{"name":"KSPROPERTY_BDA_IPv4_FILTER","features":[428]},{"name":"KSPROPERTY_BDA_IPv4_FILTER_MULTICAST_LIST","features":[428]},{"name":"KSPROPERTY_BDA_IPv4_FILTER_MULTICAST_LIST_SIZE","features":[428]},{"name":"KSPROPERTY_BDA_IPv4_FILTER_MULTICAST_MODE","features":[428]},{"name":"KSPROPERTY_BDA_IPv6_FILTER","features":[428]},{"name":"KSPROPERTY_BDA_IPv6_FILTER_MULTICAST_LIST","features":[428]},{"name":"KSPROPERTY_BDA_IPv6_FILTER_MULTICAST_LIST_SIZE","features":[428]},{"name":"KSPROPERTY_BDA_IPv6_FILTER_MULTICAST_MODE","features":[428]},{"name":"KSPROPERTY_BDA_LNB_INFO","features":[428]},{"name":"KSPROPERTY_BDA_LNB_LOF_HIGH_BAND","features":[428]},{"name":"KSPROPERTY_BDA_LNB_LOF_LOW_BAND","features":[428]},{"name":"KSPROPERTY_BDA_LNB_SWITCH_FREQUENCY","features":[428]},{"name":"KSPROPERTY_BDA_MODULATION_TYPE","features":[428]},{"name":"KSPROPERTY_BDA_NODE_DESCRIPTORS","features":[428]},{"name":"KSPROPERTY_BDA_NODE_EVENTS","features":[428]},{"name":"KSPROPERTY_BDA_NODE_METHODS","features":[428]},{"name":"KSPROPERTY_BDA_NODE_PROPERTIES","features":[428]},{"name":"KSPROPERTY_BDA_NODE_TYPES","features":[428]},{"name":"KSPROPERTY_BDA_NULL_TRANSFORM","features":[428]},{"name":"KSPROPERTY_BDA_NULL_TRANSFORM_START","features":[428]},{"name":"KSPROPERTY_BDA_NULL_TRANSFORM_STOP","features":[428]},{"name":"KSPROPERTY_BDA_OUTER_FEC_RATE","features":[428]},{"name":"KSPROPERTY_BDA_OUTER_FEC_TYPE","features":[428]},{"name":"KSPROPERTY_BDA_PIDFILTER","features":[428]},{"name":"KSPROPERTY_BDA_PIDFILTER_LIST_PIDS","features":[428]},{"name":"KSPROPERTY_BDA_PIDFILTER_MAP_PIDS","features":[428]},{"name":"KSPROPERTY_BDA_PIDFILTER_UNMAP_PIDS","features":[428]},{"name":"KSPROPERTY_BDA_PILOT","features":[428]},{"name":"KSPROPERTY_BDA_PIN_CONTROL","features":[428]},{"name":"KSPROPERTY_BDA_PIN_EVENT","features":[428]},{"name":"KSPROPERTY_BDA_PIN_ID","features":[428]},{"name":"KSPROPERTY_BDA_PIN_TYPE","features":[428]},{"name":"KSPROPERTY_BDA_PIN_TYPES","features":[428]},{"name":"KSPROPERTY_BDA_PLP_NUMBER","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_BANDWIDTH","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_CAPS","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_CAPS_S","features":[428,429]},{"name":"KSPROPERTY_BDA_RF_TUNER_FREQUENCY","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_FREQUENCY_MULTIPLIER","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_POLARITY","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_RANGE","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_SCAN_STATUS","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_SCAN_STATUS_S","features":[428,429]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD_MODE","features":[428]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD_MODE_S","features":[303,428,429]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD_S","features":[428,429]},{"name":"KSPROPERTY_BDA_RF_TUNER_TRANSPONDER","features":[428]},{"name":"KSPROPERTY_BDA_ROLL_OFF","features":[428]},{"name":"KSPROPERTY_BDA_SAMPLE_TIME","features":[428]},{"name":"KSPROPERTY_BDA_SIGNALTIMEOUTS","features":[428]},{"name":"KSPROPERTY_BDA_SIGNAL_LOCKED","features":[428]},{"name":"KSPROPERTY_BDA_SIGNAL_LOCK_CAPS","features":[428]},{"name":"KSPROPERTY_BDA_SIGNAL_LOCK_TYPE","features":[428]},{"name":"KSPROPERTY_BDA_SIGNAL_PRESENT","features":[428]},{"name":"KSPROPERTY_BDA_SIGNAL_QUALITY","features":[428]},{"name":"KSPROPERTY_BDA_SIGNAL_STATS","features":[428]},{"name":"KSPROPERTY_BDA_SIGNAL_STRENGTH","features":[428]},{"name":"KSPROPERTY_BDA_SPECTRAL_INVERSION","features":[428]},{"name":"KSPROPERTY_BDA_SYMBOL_RATE","features":[428]},{"name":"KSPROPERTY_BDA_TABLE_SECTION","features":[428]},{"name":"KSPROPERTY_BDA_TEMPLATE_CONNECTIONS","features":[428]},{"name":"KSPROPERTY_BDA_TOPOLOGY","features":[428]},{"name":"KSPROPERTY_BDA_TRANSMISSION_MODE","features":[428]},{"name":"KSPROPERTY_BDA_VOID_TRANSFORM","features":[428]},{"name":"KSPROPERTY_BDA_VOID_TRANSFORM_START","features":[428]},{"name":"KSPROPERTY_BDA_VOID_TRANSFORM_STOP","features":[428]},{"name":"KSPROPERTY_IDS_BDA_TABLE","features":[428]},{"name":"KSPROPSETID_BdaAutodemodulate","features":[428]},{"name":"KSPROPSETID_BdaCA","features":[428]},{"name":"KSPROPSETID_BdaDigitalDemodulator","features":[428]},{"name":"KSPROPSETID_BdaDiseqCommand","features":[428]},{"name":"KSPROPSETID_BdaEthernetFilter","features":[428]},{"name":"KSPROPSETID_BdaFrequencyFilter","features":[428]},{"name":"KSPROPSETID_BdaIPv4Filter","features":[428]},{"name":"KSPROPSETID_BdaIPv6Filter","features":[428]},{"name":"KSPROPSETID_BdaLNBInfo","features":[428]},{"name":"KSPROPSETID_BdaNullTransform","features":[428]},{"name":"KSPROPSETID_BdaPIDFilter","features":[428]},{"name":"KSPROPSETID_BdaPinControl","features":[428]},{"name":"KSPROPSETID_BdaSignalStats","features":[428]},{"name":"KSPROPSETID_BdaTableSection","features":[428]},{"name":"KSPROPSETID_BdaTopology","features":[428]},{"name":"KSPROPSETID_BdaVoidTransform","features":[428]},{"name":"KSP_BDA_NODE_PIN","features":[428,429]},{"name":"KSP_NODE_ESPID","features":[428,429]},{"name":"KS_DATARANGE_BDA_ANTENNA","features":[428,429]},{"name":"KS_DATARANGE_BDA_TRANSPORT","features":[428,429]},{"name":"LIC_BadLicense","features":[428]},{"name":"LIC_Expired","features":[428]},{"name":"LIC_ExtenderBlocked","features":[428]},{"name":"LIC_NeedActivation","features":[428]},{"name":"LIC_NeedIndiv","features":[428]},{"name":"LONG_SECTION","features":[428]},{"name":"LanguageComponentType","features":[428]},{"name":"LanguageInfo","features":[428]},{"name":"LastReservedDeviceDispid","features":[428]},{"name":"LastReservedDeviceEvent","features":[428]},{"name":"LicenseEventBlockReason","features":[428]},{"name":"Locator","features":[428]},{"name":"MAX_COUNTRY_CODE_STRING","features":[428]},{"name":"MEDIASUBTYPE_CPFilters_Processed","features":[428]},{"name":"MEDIASUBTYPE_ETDTFilter_Tagged","features":[428]},{"name":"MPAA","features":[428]},{"name":"MPAA_G","features":[428]},{"name":"MPAA_IsBlocked","features":[428]},{"name":"MPAA_NC17","features":[428]},{"name":"MPAA_NotApplicable","features":[428]},{"name":"MPAA_NotRated","features":[428]},{"name":"MPAA_PG","features":[428]},{"name":"MPAA_PG13","features":[428]},{"name":"MPAA_R","features":[428]},{"name":"MPAA_ValidAttrSubmask","features":[428]},{"name":"MPAA_X","features":[428]},{"name":"MPEG2Component","features":[428]},{"name":"MPEG2ComponentType","features":[428]},{"name":"MPEG2TuneRequest","features":[428]},{"name":"MPEG2TuneRequestFactory","features":[428]},{"name":"MPEG2_FILTER","features":[303,428]},{"name":"MPEG2_FILTER2","features":[303,428]},{"name":"MPEG2_FILTER_VERSION_1_SIZE","features":[428]},{"name":"MPEG2_FILTER_VERSION_2_SIZE","features":[428]},{"name":"MPEG_BCS_DEMUX","features":[428]},{"name":"MPEG_CAT_PID","features":[428]},{"name":"MPEG_CAT_TID","features":[428]},{"name":"MPEG_CONTEXT","features":[428]},{"name":"MPEG_CONTEXT_BCS_DEMUX","features":[428]},{"name":"MPEG_CONTEXT_TYPE","features":[428]},{"name":"MPEG_CONTEXT_WINSOCK","features":[428]},{"name":"MPEG_CURRENT_NEXT_BIT","features":[428]},{"name":"MPEG_DATE","features":[428]},{"name":"MPEG_DATE_AND_TIME","features":[428]},{"name":"MPEG_HEADER_BITS","features":[428]},{"name":"MPEG_HEADER_BITS_MIDL","features":[428]},{"name":"MPEG_HEADER_VERSION_BITS","features":[428]},{"name":"MPEG_HEADER_VERSION_BITS_MIDL","features":[428]},{"name":"MPEG_PACKET_LIST","features":[428]},{"name":"MPEG_PAT_PID","features":[428]},{"name":"MPEG_PAT_TID","features":[428]},{"name":"MPEG_PMT_TID","features":[428]},{"name":"MPEG_REQUEST_TYPE","features":[428]},{"name":"MPEG_RQST_GET_PES_STREAM","features":[428]},{"name":"MPEG_RQST_GET_SECTION","features":[428]},{"name":"MPEG_RQST_GET_SECTIONS_STREAM","features":[428]},{"name":"MPEG_RQST_GET_SECTION_ASYNC","features":[428]},{"name":"MPEG_RQST_GET_TABLE","features":[428]},{"name":"MPEG_RQST_GET_TABLE_ASYNC","features":[428]},{"name":"MPEG_RQST_GET_TS_STREAM","features":[428]},{"name":"MPEG_RQST_PACKET","features":[428]},{"name":"MPEG_RQST_START_MPE_STREAM","features":[428]},{"name":"MPEG_RQST_UNKNOWN","features":[428]},{"name":"MPEG_SECTION_IS_CURRENT","features":[428]},{"name":"MPEG_SECTION_IS_NEXT","features":[428]},{"name":"MPEG_SERVICE_REQUEST","features":[303,428]},{"name":"MPEG_SERVICE_RESPONSE","features":[428]},{"name":"MPEG_STREAM_BUFFER","features":[428]},{"name":"MPEG_STREAM_FILTER","features":[303,428]},{"name":"MPEG_TIME","features":[428]},{"name":"MPEG_TSDT_PID","features":[428]},{"name":"MPEG_TSDT_TID","features":[428]},{"name":"MPEG_WINSOCK","features":[428]},{"name":"MPE_ELEMENT","features":[428]},{"name":"MSEventBinder","features":[428]},{"name":"MSVIDCTL_ALT","features":[428]},{"name":"MSVIDCTL_CTRL","features":[428]},{"name":"MSVIDCTL_LEFT_BUTTON","features":[428]},{"name":"MSVIDCTL_MIDDLE_BUTTON","features":[428]},{"name":"MSVIDCTL_RIGHT_BUTTON","features":[428]},{"name":"MSVIDCTL_SHIFT","features":[428]},{"name":"MSVIDCTL_X_BUTTON1","features":[428]},{"name":"MSVIDCTL_X_BUTTON2","features":[428]},{"name":"MSVidAnalogCaptureToCCA","features":[428]},{"name":"MSVidAnalogCaptureToDataServices","features":[428]},{"name":"MSVidAnalogCaptureToOverlayMixer","features":[428]},{"name":"MSVidAnalogCaptureToStreamBufferSink","features":[428]},{"name":"MSVidAnalogCaptureToXDS","features":[428]},{"name":"MSVidAnalogTVToEncoder","features":[428]},{"name":"MSVidAnalogTunerDevice","features":[428]},{"name":"MSVidAudioRenderer","features":[428]},{"name":"MSVidAudioRendererDevices","features":[428]},{"name":"MSVidBDATunerDevice","features":[428]},{"name":"MSVidCCA","features":[428]},{"name":"MSVidCCAToStreamBufferSink","features":[428]},{"name":"MSVidCCService","features":[428]},{"name":"MSVidCCToAR","features":[428]},{"name":"MSVidCCToVMR","features":[428]},{"name":"MSVidClosedCaptioning","features":[428]},{"name":"MSVidClosedCaptioningSI","features":[428]},{"name":"MSVidCtl","features":[428]},{"name":"MSVidCtlButtonstate","features":[428]},{"name":"MSVidCtlStateList","features":[428]},{"name":"MSVidDataServices","features":[428]},{"name":"MSVidDataServicesToStreamBufferSink","features":[428]},{"name":"MSVidDataServicesToXDS","features":[428]},{"name":"MSVidDevice","features":[428]},{"name":"MSVidDevice2","features":[428]},{"name":"MSVidDigitalCaptureToCCA","features":[428]},{"name":"MSVidDigitalCaptureToITV","features":[428]},{"name":"MSVidDigitalCaptureToStreamBufferSink","features":[428]},{"name":"MSVidEVR","features":[428]},{"name":"MSVidEncoder","features":[428]},{"name":"MSVidEncoderToStreamBufferSink","features":[428]},{"name":"MSVidFeature","features":[428]},{"name":"MSVidFeatures","features":[428]},{"name":"MSVidFilePlaybackDevice","features":[428]},{"name":"MSVidFilePlaybackToAudioRenderer","features":[428]},{"name":"MSVidFilePlaybackToVideoRenderer","features":[428]},{"name":"MSVidGenericComposite","features":[428]},{"name":"MSVidGenericSink","features":[428]},{"name":"MSVidITVCapture","features":[428]},{"name":"MSVidITVPlayback","features":[428]},{"name":"MSVidITVToStreamBufferSink","features":[428]},{"name":"MSVidInputDevice","features":[428]},{"name":"MSVidInputDevices","features":[428]},{"name":"MSVidMPEG2DecoderToClosedCaptioning","features":[428]},{"name":"MSVidOutput","features":[428]},{"name":"MSVidOutputDevices","features":[428]},{"name":"MSVidRect","features":[428]},{"name":"MSVidSBESourceToCC","features":[428]},{"name":"MSVidSBESourceToGenericSink","features":[428]},{"name":"MSVidSBESourceToITV","features":[428]},{"name":"MSVidSEG_DEST","features":[428]},{"name":"MSVidSEG_SOURCE","features":[428]},{"name":"MSVidSEG_XFORM","features":[428]},{"name":"MSVidSegmentType","features":[428]},{"name":"MSVidSinkStreams","features":[428]},{"name":"MSVidSink_Audio","features":[428]},{"name":"MSVidSink_Other","features":[428]},{"name":"MSVidSink_Video","features":[428]},{"name":"MSVidStreamBufferRecordingControl","features":[428]},{"name":"MSVidStreamBufferSink","features":[428]},{"name":"MSVidStreamBufferSource","features":[428]},{"name":"MSVidStreamBufferSourceToVideoRenderer","features":[428]},{"name":"MSVidStreamBufferV2Source","features":[428]},{"name":"MSVidVMR9","features":[428]},{"name":"MSVidVideoInputDevice","features":[428]},{"name":"MSVidVideoPlaybackDevice","features":[428]},{"name":"MSVidVideoRenderer","features":[428]},{"name":"MSVidVideoRendererDevices","features":[428]},{"name":"MSVidWebDVD","features":[428]},{"name":"MSVidWebDVDAdm","features":[428]},{"name":"MSVidWebDVDToAudioRenderer","features":[428]},{"name":"MSVidWebDVDToVideoRenderer","features":[428]},{"name":"MSVidXDS","features":[428]},{"name":"MSViddispidList","features":[428]},{"name":"Mpeg2Data","features":[428]},{"name":"Mpeg2DataLib","features":[428]},{"name":"Mpeg2Stream","features":[428]},{"name":"Mpeg2TableSampleHdr","features":[428]},{"name":"OCUR_PAIRING_PROTOCOL_VERSION","features":[428]},{"name":"PARENTAL_CONTROL_ATTRIB_DIALOGUE","features":[428]},{"name":"PARENTAL_CONTROL_ATTRIB_FANTASY","features":[428]},{"name":"PARENTAL_CONTROL_ATTRIB_LANGUAGE","features":[428]},{"name":"PARENTAL_CONTROL_ATTRIB_SEXUAL","features":[428]},{"name":"PARENTAL_CONTROL_ATTRIB_VIOLENCE","features":[428]},{"name":"PARENTAL_CONTROL_CONTENT_RATING","features":[428]},{"name":"PARENTAL_CONTROL_TIME_RANGE","features":[428]},{"name":"PARENTAL_CONTROL_VALUE_UNDEFINED","features":[428]},{"name":"PBDA","features":[428]},{"name":"PBDAParentalControl","features":[428]},{"name":"PBDA_ALWAYS_TUNE_IN_MUX","features":[428]},{"name":"PBDA_PAIRING_PROTOCOL_VERSION","features":[428]},{"name":"PBDA_TAG_ATTRIBUTE","features":[428]},{"name":"PIC_SEQ_SAMPLE","features":[428]},{"name":"PIDListSpanningEvent","features":[428]},{"name":"PID_BITS","features":[428]},{"name":"PID_BITS_MIDL","features":[428]},{"name":"PINNAME_BDA_ANALOG_AUDIO","features":[428]},{"name":"PINNAME_BDA_ANALOG_VIDEO","features":[428]},{"name":"PINNAME_BDA_FM_RADIO","features":[428]},{"name":"PINNAME_BDA_IF_PIN","features":[428]},{"name":"PINNAME_BDA_OPENCABLE_PSIP_PIN","features":[428]},{"name":"PINNAME_BDA_TRANSPORT","features":[428]},{"name":"PINNAME_IPSINK_INPUT","features":[428]},{"name":"PINNAME_MPE","features":[428]},{"name":"PROT_COPY_BF","features":[428]},{"name":"PROT_COPY_CN_RECORDING_STOP","features":[428]},{"name":"PROT_COPY_FREE","features":[428]},{"name":"PROT_COPY_FREE_CIT","features":[428]},{"name":"PROT_COPY_FREE_SECURE","features":[428]},{"name":"PROT_COPY_INVALID","features":[428]},{"name":"PROT_COPY_NEVER","features":[428]},{"name":"PROT_COPY_NEVER_REALLY","features":[428]},{"name":"PROT_COPY_NO_MORE","features":[428]},{"name":"PROT_COPY_ONCE","features":[428]},{"name":"PersistTuneXmlUtility","features":[428]},{"name":"PositionModeList","features":[428]},{"name":"ProgramElement","features":[428]},{"name":"ProtType","features":[428]},{"name":"RATING_ATTRIBUTE","features":[428]},{"name":"RATING_INFO","features":[428]},{"name":"RATING_SYSTEM","features":[428]},{"name":"RECORDING_STARTED","features":[428]},{"name":"RECORDING_STOPPED","features":[428]},{"name":"RECORDING_TYPE","features":[428]},{"name":"RECORDING_TYPE_CONTENT","features":[428]},{"name":"RECORDING_TYPE_REFERENCE","features":[428]},{"name":"REFERENCE","features":[428]},{"name":"REQUIRED_PARENTAL_CONTROL_TIME_RANGE","features":[428]},{"name":"REVOKED_APP_STUB","features":[428]},{"name":"REVOKED_COPP","features":[428]},{"name":"REVOKED_MAX_TYPES","features":[428]},{"name":"REVOKED_SAC","features":[428]},{"name":"REVOKED_SECURE_PIPELINE","features":[428]},{"name":"RecordingType","features":[428]},{"name":"Reserved4","features":[428]},{"name":"Reserved7","features":[428]},{"name":"RevokedComponent","features":[428]},{"name":"SAMPLE_LIVE_STREAM_TIME","features":[428]},{"name":"SAMPLE_SEQ_CONTENT_B_FRAME","features":[428]},{"name":"SAMPLE_SEQ_CONTENT_I_FRAME","features":[428]},{"name":"SAMPLE_SEQ_CONTENT_NONREF_FRAME","features":[428]},{"name":"SAMPLE_SEQ_CONTENT_P_FRAME","features":[428]},{"name":"SAMPLE_SEQ_CONTENT_REF_FRAME","features":[428]},{"name":"SAMPLE_SEQ_CONTENT_STANDALONE_FRAME","features":[428]},{"name":"SAMPLE_SEQ_CONTENT_UNKNOWN","features":[428]},{"name":"SAMPLE_SEQ_FRAME_START","features":[428]},{"name":"SAMPLE_SEQ_GOP_HEADER","features":[428]},{"name":"SAMPLE_SEQ_OFFSET","features":[428]},{"name":"SAMPLE_SEQ_PICTURE_HEADER","features":[428]},{"name":"SAMPLE_SEQ_SEEK_POINT","features":[428]},{"name":"SAMPLE_SEQ_SEQUENCE_HEADER","features":[428]},{"name":"SAMPLE_SEQ_SEQUENCE_START","features":[428]},{"name":"SBE2_STREAM_DESC","features":[428]},{"name":"SBE2_STREAM_DESC_EVENT","features":[428]},{"name":"SBE2_STREAM_DESC_VERSION","features":[428]},{"name":"SBE2_V1_STREAMS_CREATION_EVENT","features":[428]},{"name":"SBE2_V2_STREAMS_CREATION_EVENT","features":[428]},{"name":"SBE_PIN_DATA","features":[428]},{"name":"SCTE_EAS_IB_PID","features":[428]},{"name":"SCTE_EAS_OOB_PID","features":[428]},{"name":"SCTE_EAS_TID","features":[428]},{"name":"SECTION","features":[428]},{"name":"SID_DRMSecureServiceChannel","features":[428]},{"name":"SID_MSVidCtl_CurrentAudioEndpoint","features":[428]},{"name":"STATE_PAUSE","features":[428]},{"name":"STATE_PLAY","features":[428]},{"name":"STATE_STOP","features":[428]},{"name":"STATE_UNBUILT","features":[428]},{"name":"STRCONV_MODE_DVB","features":[428]},{"name":"STRCONV_MODE_DVB_EMPHASIS","features":[428]},{"name":"STRCONV_MODE_DVB_WITHOUT_EMPHASIS","features":[428]},{"name":"STRCONV_MODE_ISDB","features":[428]},{"name":"STREAMBUFFER_ATTRIBUTE","features":[428]},{"name":"STREAMBUFFER_ATTR_DATATYPE","features":[428]},{"name":"STREAMBUFFER_EC_BASE","features":[428]},{"name":"STREAMBUFFER_EC_CONTENT_BECOMING_STALE","features":[428]},{"name":"STREAMBUFFER_EC_PRIMARY_AUDIO","features":[428]},{"name":"STREAMBUFFER_EC_RATE_CHANGED","features":[428]},{"name":"STREAMBUFFER_EC_RATE_CHANGING_FOR_SETPOSITIONS","features":[428]},{"name":"STREAMBUFFER_EC_READ_FAILURE","features":[428]},{"name":"STREAMBUFFER_EC_SETPOSITIONS_EVENTS_DONE","features":[428]},{"name":"STREAMBUFFER_EC_STALE_DATA_READ","features":[428]},{"name":"STREAMBUFFER_EC_STALE_FILE_DELETED","features":[428]},{"name":"STREAMBUFFER_EC_TIMEHOLE","features":[428]},{"name":"STREAMBUFFER_EC_WRITE_FAILURE","features":[428]},{"name":"STREAMBUFFER_EC_WRITE_FAILURE_CLEAR","features":[428]},{"name":"STREAMBUFFER_TYPE_BINARY","features":[428]},{"name":"STREAMBUFFER_TYPE_BOOL","features":[428]},{"name":"STREAMBUFFER_TYPE_DWORD","features":[428]},{"name":"STREAMBUFFER_TYPE_GUID","features":[428]},{"name":"STREAMBUFFER_TYPE_QWORD","features":[428]},{"name":"STREAMBUFFER_TYPE_STRING","features":[428]},{"name":"STREAMBUFFER_TYPE_WORD","features":[428]},{"name":"SectionList","features":[428]},{"name":"SegDispidList","features":[428]},{"name":"SegEventidList","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_AllAVScrambled","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_Clear","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_NoSubscription","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_NoTVSignal","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_None","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_ServiceOffAir","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_State","features":[428]},{"name":"SignalAndServiceStatusSpanningEvent_WeakTVSignal","features":[428]},{"name":"SourceSizeList","features":[428]},{"name":"SpanningEventDescriptor","features":[428]},{"name":"SpanningEventEmmMessage","features":[428]},{"name":"System5","features":[428]},{"name":"System6","features":[428]},{"name":"SystemTuningSpaces","features":[428]},{"name":"TID_EXTENSION","features":[428]},{"name":"TIFLoad","features":[428]},{"name":"TRANSPORT_PROPERTIES","features":[428]},{"name":"TenthsSecondsMode","features":[428]},{"name":"TuneRequest","features":[428]},{"name":"TunerMarshaler","features":[428]},{"name":"TuningSpace","features":[428]},{"name":"TvRat_0","features":[428]},{"name":"TvRat_1","features":[428]},{"name":"TvRat_10","features":[428]},{"name":"TvRat_11","features":[428]},{"name":"TvRat_12","features":[428]},{"name":"TvRat_13","features":[428]},{"name":"TvRat_14","features":[428]},{"name":"TvRat_15","features":[428]},{"name":"TvRat_16","features":[428]},{"name":"TvRat_17","features":[428]},{"name":"TvRat_18","features":[428]},{"name":"TvRat_19","features":[428]},{"name":"TvRat_2","features":[428]},{"name":"TvRat_20","features":[428]},{"name":"TvRat_21","features":[428]},{"name":"TvRat_3","features":[428]},{"name":"TvRat_4","features":[428]},{"name":"TvRat_5","features":[428]},{"name":"TvRat_6","features":[428]},{"name":"TvRat_7","features":[428]},{"name":"TvRat_8","features":[428]},{"name":"TvRat_9","features":[428]},{"name":"TvRat_LevelDontKnow","features":[428]},{"name":"TvRat_SystemDontKnow","features":[428]},{"name":"TvRat_Unblock","features":[428]},{"name":"TvRat_kLevels","features":[428]},{"name":"TvRat_kSystems","features":[428]},{"name":"UDCR_TAG","features":[303,428]},{"name":"US_TV","features":[428]},{"name":"US_TV_14","features":[428]},{"name":"US_TV_G","features":[428]},{"name":"US_TV_IsAdultLanguage","features":[428]},{"name":"US_TV_IsBlocked","features":[428]},{"name":"US_TV_IsSexualSituation","features":[428]},{"name":"US_TV_IsSexuallySuggestiveDialog","features":[428]},{"name":"US_TV_IsViolent","features":[428]},{"name":"US_TV_MA","features":[428]},{"name":"US_TV_None","features":[428]},{"name":"US_TV_None7","features":[428]},{"name":"US_TV_PG","features":[428]},{"name":"US_TV_ValidAttrSubmask","features":[428]},{"name":"US_TV_Y","features":[428]},{"name":"US_TV_Y7","features":[428]},{"name":"VA_COLOR_PRIMARIES","features":[428]},{"name":"VA_MATRIX_COEFFICIENTS","features":[428]},{"name":"VA_MATRIX_COEFF_FCC","features":[428]},{"name":"VA_MATRIX_COEFF_H264_RGB","features":[428]},{"name":"VA_MATRIX_COEFF_H264_YCgCo","features":[428]},{"name":"VA_MATRIX_COEFF_ITU_R_BT_470_SYSTEM_B_G","features":[428]},{"name":"VA_MATRIX_COEFF_ITU_R_BT_709","features":[428]},{"name":"VA_MATRIX_COEFF_SMPTE_170M","features":[428]},{"name":"VA_MATRIX_COEFF_SMPTE_240M","features":[428]},{"name":"VA_MATRIX_COEFF_UNSPECIFIED","features":[428]},{"name":"VA_OPTIONAL_VIDEO_PROPERTIES","features":[428]},{"name":"VA_PRIMARIES_H264_GENERIC_FILM","features":[428]},{"name":"VA_PRIMARIES_ITU_R_BT_470_SYSTEM_B_G","features":[428]},{"name":"VA_PRIMARIES_ITU_R_BT_470_SYSTEM_M","features":[428]},{"name":"VA_PRIMARIES_ITU_R_BT_709","features":[428]},{"name":"VA_PRIMARIES_SMPTE_170M","features":[428]},{"name":"VA_PRIMARIES_SMPTE_240M","features":[428]},{"name":"VA_PRIMARIES_UNSPECIFIED","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_H264_LOG_100_TO_1","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_H264_LOG_316_TO_1","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_ITU_R_BT_470_SYSTEM_B_G","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_ITU_R_BT_470_SYSTEM_M","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_ITU_R_BT_709","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_LINEAR","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_SMPTE_170M","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_SMPTE_240M","features":[428]},{"name":"VA_TRANSFER_CHARACTERISTICS_UNSPECIFIED","features":[428]},{"name":"VA_VIDEO_COMPONENT","features":[428]},{"name":"VA_VIDEO_FORMAT","features":[428]},{"name":"VA_VIDEO_MAC","features":[428]},{"name":"VA_VIDEO_NTSC","features":[428]},{"name":"VA_VIDEO_PAL","features":[428]},{"name":"VA_VIDEO_SECAM","features":[428]},{"name":"VA_VIDEO_UNSPECIFIED","features":[428]},{"name":"WMDRMProtectionInfo","features":[428]},{"name":"XDSCodec","features":[428]},{"name":"XDSToRat","features":[428]},{"name":"_IMSVidCtlEvents","features":[428,354]},{"name":"dispidAVAudioChannelConfigEvent","features":[428]},{"name":"dispidAVAudioChannelCountEvent","features":[428]},{"name":"dispidAVAudioSampleRateEvent","features":[428]},{"name":"dispidAVDDSurroundModeEvent","features":[428]},{"name":"dispidAVDecAudioDualMonoEvent","features":[428]},{"name":"dispidAVDecCommonInputFormatEvent","features":[428]},{"name":"dispidAVDecCommonMeanBitRateEvent","features":[428]},{"name":"dispidAVDecCommonOutputFormatEvent","features":[428]},{"name":"dispidAllocPresentID","features":[428]},{"name":"dispidAlloctor","features":[428]},{"name":"dispidAudioRenderer","features":[428]},{"name":"dispidAudioRenderers","features":[428]},{"name":"dispidAuxInputs","features":[428]},{"name":"dispidAvailableSourceRect","features":[428]},{"name":"dispidBookmarkOnStop","features":[428]},{"name":"dispidBuild","features":[428]},{"name":"dispidCCEnable","features":[428]},{"name":"dispidCLSID","features":[428]},{"name":"dispidCapture","features":[428]},{"name":"dispidChangePassword","features":[428]},{"name":"dispidChannelAvailable","features":[428]},{"name":"dispidClip","features":[428]},{"name":"dispidClippedSourceRect","features":[428]},{"name":"dispidColorKey","features":[428]},{"name":"dispidConfirmPassword","features":[428]},{"name":"dispidCount","features":[428]},{"name":"dispidCustomCompositorClass","features":[428]},{"name":"dispidDecompose","features":[428]},{"name":"dispidDefaultAudioLCID","features":[428]},{"name":"dispidDefaultMenuLCID","features":[428]},{"name":"dispidDefaultSubpictureLCID","features":[428]},{"name":"dispidDevAudioFrequency","features":[428]},{"name":"dispidDevAudioSubchannel","features":[428]},{"name":"dispidDevBalance","features":[428]},{"name":"dispidDevCanStep","features":[428]},{"name":"dispidDevCountryCode","features":[428]},{"name":"dispidDevFileName","features":[428]},{"name":"dispidDevImageSourceHeight","features":[428]},{"name":"dispidDevImageSourceWidth","features":[428]},{"name":"dispidDevOverScan","features":[428]},{"name":"dispidDevPause","features":[428]},{"name":"dispidDevPower","features":[428]},{"name":"dispidDevRun","features":[428]},{"name":"dispidDevSAP","features":[428]},{"name":"dispidDevStep","features":[428]},{"name":"dispidDevStop","features":[428]},{"name":"dispidDevVideoFrequency","features":[428]},{"name":"dispidDevVideoSubchannel","features":[428]},{"name":"dispidDevView","features":[428]},{"name":"dispidDevVolume","features":[428]},{"name":"dispidDevicePath","features":[428]},{"name":"dispidDisableAudio","features":[428]},{"name":"dispidDisableVideo","features":[428]},{"name":"dispidDisplayChange","features":[428]},{"name":"dispidDisplaySize","features":[428]},{"name":"dispidFeatures","features":[428]},{"name":"dispidGetParentalCountry","features":[428]},{"name":"dispidGetParentalLevel","features":[428]},{"name":"dispidInput","features":[428]},{"name":"dispidInputs","features":[428]},{"name":"dispidKSCat","features":[428]},{"name":"dispidMaintainAspectRatio","features":[428]},{"name":"dispidMaxVidRect","features":[428]},{"name":"dispidMediaPosition","features":[428]},{"name":"dispidMessageDrain","features":[428]},{"name":"dispidMinVidRect","features":[428]},{"name":"dispidMixerBitmap","features":[428]},{"name":"dispidMixerBitmapOpacity","features":[428]},{"name":"dispidMixerBitmapRect","features":[428]},{"name":"dispidModes","features":[428]},{"name":"dispidName","features":[428]},{"name":"dispidNameSetLock","features":[428]},{"name":"dispidOutput","features":[428]},{"name":"dispidOutputs","features":[428]},{"name":"dispidOwner","features":[428]},{"name":"dispidPause","features":[428]},{"name":"dispidRateEx","features":[428]},{"name":"dispidRePaint","features":[428]},{"name":"dispidRecordingAttribute","features":[428]},{"name":"dispidRequestedClipRect","features":[428]},{"name":"dispidRun","features":[428]},{"name":"dispidSBEConfigure","features":[428]},{"name":"dispidSaveParentalCountry","features":[428]},{"name":"dispidSaveParentalLevel","features":[428]},{"name":"dispidSegment","features":[428]},{"name":"dispidSelectedFeatures","features":[428]},{"name":"dispidService","features":[428]},{"name":"dispidServiceP","features":[428]},{"name":"dispidSetAllocator","features":[428]},{"name":"dispidSetMinSeek","features":[428]},{"name":"dispidSetSinkFilter","features":[428]},{"name":"dispidSetupMixerBitmap","features":[428]},{"name":"dispidSourceSize","features":[428]},{"name":"dispidStateChange","features":[428]},{"name":"dispidStatus","features":[428]},{"name":"dispidStop","features":[428]},{"name":"dispidStreamBufferContentRecording","features":[428]},{"name":"dispidStreamBufferReferenceRecording","features":[428]},{"name":"dispidStreamBufferSinkName","features":[428]},{"name":"dispidStreamBufferSourceName","features":[428]},{"name":"dispidTS","features":[428]},{"name":"dispidTVFormats","features":[428]},{"name":"dispidTeleTextFilter","features":[428]},{"name":"dispidTune","features":[428]},{"name":"dispidTuneChan","features":[428]},{"name":"dispidUnlockProfile","features":[428]},{"name":"dispidUserEvent","features":[428]},{"name":"dispidUsingOverlay","features":[428]},{"name":"dispidVideoRenderer","features":[428]},{"name":"dispidVideoRenderers","features":[428]},{"name":"dispidView","features":[428]},{"name":"dispidViewNext","features":[428]},{"name":"dispidViewable","features":[428]},{"name":"dispidVisible","features":[428]},{"name":"dispid_AcceptParentalLevelChange","features":[428]},{"name":"dispid_ActivateAtPosition","features":[428]},{"name":"dispid_ActivateButton","features":[428]},{"name":"dispid_AddFilter","features":[428]},{"name":"dispid_Allocator","features":[428]},{"name":"dispid_AnglesAvailable","features":[428]},{"name":"dispid_AudioStreamsAvailable","features":[428]},{"name":"dispid_BlockUnrated","features":[428]},{"name":"dispid_Bookmark","features":[428]},{"name":"dispid_ButtonAtPosition","features":[428]},{"name":"dispid_ButtonRect","features":[428]},{"name":"dispid_CCActive","features":[428]},{"name":"dispid_CLSID","features":[428]},{"name":"dispid_CurrentAngle","features":[428]},{"name":"dispid_CurrentAudioStream","features":[428]},{"name":"dispid_CurrentCCService","features":[428]},{"name":"dispid_CurrentChapter","features":[428]},{"name":"dispid_CurrentDiscSide","features":[428]},{"name":"dispid_CurrentDomain","features":[428]},{"name":"dispid_CurrentRatings","features":[428]},{"name":"dispid_CurrentSubpictureStream","features":[428]},{"name":"dispid_CurrentTime","features":[428]},{"name":"dispid_CurrentTitle","features":[428]},{"name":"dispid_CurrentVolume","features":[428]},{"name":"dispid_CustomCompositor","features":[428]},{"name":"dispid_CustomCompositorClass","features":[428]},{"name":"dispid_DVDAdm","features":[428]},{"name":"dispid_DVDDirectory","features":[428]},{"name":"dispid_DVDScreenInMouseCoordinates","features":[428]},{"name":"dispid_DVDTextLanguageLCID","features":[428]},{"name":"dispid_DVDTextNumberOfLanguages","features":[428]},{"name":"dispid_DVDTextNumberOfStrings","features":[428]},{"name":"dispid_DVDTextString","features":[428]},{"name":"dispid_DVDTextStringType","features":[428]},{"name":"dispid_DVDTimeCode2bstr","features":[428]},{"name":"dispid_DVDUniqueID","features":[428]},{"name":"dispid_DecimateInput","features":[428]},{"name":"dispid_DefaultAudioLanguage","features":[428]},{"name":"dispid_DefaultAudioLanguageExt","features":[428]},{"name":"dispid_DefaultMenuLanguage","features":[428]},{"name":"dispid_DefaultSubpictureLanguage","features":[428]},{"name":"dispid_DefaultSubpictureLanguageExt","features":[428]},{"name":"dispid_DeleteBookmark","features":[428]},{"name":"dispid_Eject","features":[428]},{"name":"dispid_EnableResetOnStop","features":[428]},{"name":"dispid_FramesPerSecond","features":[428]},{"name":"dispid_GPRM","features":[428]},{"name":"dispid_Inputs","features":[428]},{"name":"dispid_IsAudioStreamEnabled","features":[428]},{"name":"dispid_IsEqualDevice","features":[428]},{"name":"dispid_IsSubpictureStreamEnabled","features":[428]},{"name":"dispid_KSCat","features":[428]},{"name":"dispid_KaraokeAudioPresentationMode","features":[428]},{"name":"dispid_KaraokeChannelAssignment","features":[428]},{"name":"dispid_KaraokeChannelContent","features":[428]},{"name":"dispid_LanguageFromLCID","features":[428]},{"name":"dispid_MaxRatingsLevel","features":[428]},{"name":"dispid_MixerBitmap","features":[428]},{"name":"dispid_NotifyParentalLevelChange","features":[428]},{"name":"dispid_NumberOfChapters","features":[428]},{"name":"dispid_Outputs","features":[428]},{"name":"dispid_PlayerParentalCountry","features":[428]},{"name":"dispid_PlayerParentalLevel","features":[428]},{"name":"dispid_PreferredSubpictureStream","features":[428]},{"name":"dispid_RecordingAttribute","features":[428]},{"name":"dispid_RegionChange","features":[428]},{"name":"dispid_RestoreBookmark","features":[428]},{"name":"dispid_RestorePreferredSettings","features":[428]},{"name":"dispid_SPRM","features":[428]},{"name":"dispid_SaveBookmark","features":[428]},{"name":"dispid_SelectAndActivateButton","features":[428]},{"name":"dispid_SelectAtPosition","features":[428]},{"name":"dispid_SelectDefaultAudioLanguage","features":[428]},{"name":"dispid_SelectDefaultSubpictureLanguage","features":[428]},{"name":"dispid_SelectLeftButton","features":[428]},{"name":"dispid_SelectLowerButton","features":[428]},{"name":"dispid_SelectParentalCountry","features":[428]},{"name":"dispid_SelectParentalLevel","features":[428]},{"name":"dispid_SelectRightButton","features":[428]},{"name":"dispid_SelectUpperButton","features":[428]},{"name":"dispid_SetAllocator","features":[428]},{"name":"dispid_SinkStreams","features":[428]},{"name":"dispid_SourceFilter","features":[428]},{"name":"dispid_SubpictureLanguage","features":[428]},{"name":"dispid_SubpictureOn","features":[428]},{"name":"dispid_SubpictureStreamsAvailable","features":[428]},{"name":"dispid_SuppressEffects","features":[428]},{"name":"dispid_TitleParentalLevels","features":[428]},{"name":"dispid_TitlesAvailable","features":[428]},{"name":"dispid_TotalTitleTime","features":[428]},{"name":"dispid_UOPValid","features":[428]},{"name":"dispid_UnratedDelay","features":[428]},{"name":"dispid_VolumesAvailable","features":[428]},{"name":"dispid__SourceFilter","features":[428]},{"name":"dispid_audiocounter","features":[428]},{"name":"dispid_audioencoderint","features":[428]},{"name":"dispid_audiolanguage","features":[428]},{"name":"dispid_buttonsavailable","features":[428]},{"name":"dispid_cccounter","features":[428]},{"name":"dispid_channelchangeint","features":[428]},{"name":"dispid_currentbutton","features":[428]},{"name":"dispid_playattime","features":[428]},{"name":"dispid_playattimeintitle","features":[428]},{"name":"dispid_playbackwards","features":[428]},{"name":"dispid_playchapter","features":[428]},{"name":"dispid_playchapterintitle","features":[428]},{"name":"dispid_playchaptersautostop","features":[428]},{"name":"dispid_playforwards","features":[428]},{"name":"dispid_playnextchapter","features":[428]},{"name":"dispid_playperiodintitleautostop","features":[428]},{"name":"dispid_playprevchapter","features":[428]},{"name":"dispid_playtitle","features":[428]},{"name":"dispid_replaychapter","features":[428]},{"name":"dispid_resetFilterList","features":[428]},{"name":"dispid_resume","features":[428]},{"name":"dispid_returnfromsubmenu","features":[428]},{"name":"dispid_showmenu","features":[428]},{"name":"dispid_stilloff","features":[428]},{"name":"dispid_videocounter","features":[428]},{"name":"dispid_videoencoderint","features":[428]},{"name":"dispid_wstcounter","features":[428]},{"name":"dispidaudio_analysis","features":[428]},{"name":"dispidaudioanalysis","features":[428]},{"name":"dispidaudiocounter","features":[428]},{"name":"dispidbind","features":[428]},{"name":"dispidcccounter","features":[428]},{"name":"dispiddata_analysis","features":[428]},{"name":"dispiddataanalysis","features":[428]},{"name":"dispidgetState","features":[428]},{"name":"dispidlength","features":[428]},{"name":"dispidlicenseerrorcode","features":[428]},{"name":"dispidposition","features":[428]},{"name":"dispidpositionmode","features":[428]},{"name":"dispidrate","features":[428]},{"name":"dispidrecordingstarted","features":[428]},{"name":"dispidrecordingstopped","features":[428]},{"name":"dispidrecordingtype","features":[428]},{"name":"dispidsbesource","features":[428]},{"name":"dispidstart","features":[428]},{"name":"dispidstarttime","features":[428]},{"name":"dispidstoptime","features":[428]},{"name":"dispidunbind","features":[428]},{"name":"dispidvideo_analysis","features":[428]},{"name":"dispidvideoanalysis","features":[428]},{"name":"dispidvideocounter","features":[428]},{"name":"dispidwstcounter","features":[428]},{"name":"dslDefaultSize","features":[428]},{"name":"dslDoubleSourceSize","features":[428]},{"name":"dslFullScreen","features":[428]},{"name":"dslHalfScreen","features":[428]},{"name":"dslHalfSourceSize","features":[428]},{"name":"dslQuarterScreen","features":[428]},{"name":"dslSixteenthScreen","features":[428]},{"name":"dslSourceSize","features":[428]},{"name":"dvdChannel_Audio","features":[428]},{"name":"dvdGeneral_Comments","features":[428]},{"name":"dvdGeneral_Name","features":[428]},{"name":"dvdMenu_Angle","features":[428]},{"name":"dvdMenu_Audio","features":[428]},{"name":"dvdMenu_Chapter","features":[428]},{"name":"dvdMenu_Root","features":[428]},{"name":"dvdMenu_Subpicture","features":[428]},{"name":"dvdMenu_Title","features":[428]},{"name":"dvdOther_Cut","features":[428]},{"name":"dvdOther_Scene","features":[428]},{"name":"dvdOther_Take","features":[428]},{"name":"dvdSPExt_CC_Big","features":[428]},{"name":"dvdSPExt_CC_Children","features":[428]},{"name":"dvdSPExt_CC_Normal","features":[428]},{"name":"dvdSPExt_Caption_Big","features":[428]},{"name":"dvdSPExt_Caption_Children","features":[428]},{"name":"dvdSPExt_Caption_Normal","features":[428]},{"name":"dvdSPExt_DirectorComments_Big","features":[428]},{"name":"dvdSPExt_DirectorComments_Children","features":[428]},{"name":"dvdSPExt_DirectorComments_Normal","features":[428]},{"name":"dvdSPExt_Forced","features":[428]},{"name":"dvdSPExt_NotSpecified","features":[428]},{"name":"dvdState_Paused","features":[428]},{"name":"dvdState_Running","features":[428]},{"name":"dvdState_Stopped","features":[428]},{"name":"dvdState_Undefined","features":[428]},{"name":"dvdState_Unitialized","features":[428]},{"name":"dvdStream_Angle","features":[428]},{"name":"dvdStream_Audio","features":[428]},{"name":"dvdStream_Subpicture","features":[428]},{"name":"dvdStruct_Cell","features":[428]},{"name":"dvdStruct_ParentalID","features":[428]},{"name":"dvdStruct_PartOfTitle","features":[428]},{"name":"dvdStruct_Title","features":[428]},{"name":"dvdStruct_Volume","features":[428]},{"name":"dvdTitle_Album","features":[428]},{"name":"dvdTitle_Movie","features":[428]},{"name":"dvdTitle_Orig_Album","features":[428]},{"name":"dvdTitle_Orig_Movie","features":[428]},{"name":"dvdTitle_Orig_Other","features":[428]},{"name":"dvdTitle_Orig_Series","features":[428]},{"name":"dvdTitle_Orig_Song","features":[428]},{"name":"dvdTitle_Orig_Video","features":[428]},{"name":"dvdTitle_Other","features":[428]},{"name":"dvdTitle_Series","features":[428]},{"name":"dvdTitle_Song","features":[428]},{"name":"dvdTitle_Sub_Album","features":[428]},{"name":"dvdTitle_Sub_Movie","features":[428]},{"name":"dvdTitle_Sub_Other","features":[428]},{"name":"dvdTitle_Sub_Series","features":[428]},{"name":"dvdTitle_Sub_Song","features":[428]},{"name":"dvdTitle_Sub_Video","features":[428]},{"name":"dvdTitle_Video","features":[428]},{"name":"eventidBroadcastEvent","features":[428]},{"name":"eventidBroadcastEventEx","features":[428]},{"name":"eventidCOPPBlocked","features":[428]},{"name":"eventidCOPPUnblocked","features":[428]},{"name":"eventidChangeCurrentAngle","features":[428]},{"name":"eventidChangeCurrentAudioStream","features":[428]},{"name":"eventidChangeCurrentSubpictureStream","features":[428]},{"name":"eventidChangeKaraokePresMode","features":[428]},{"name":"eventidChangeVideoPresMode","features":[428]},{"name":"eventidContentBecomingStale","features":[428]},{"name":"eventidContentPrimarilyAudio","features":[428]},{"name":"eventidDVDNotify","features":[428]},{"name":"eventidEncryptionOff","features":[428]},{"name":"eventidEncryptionOn","features":[428]},{"name":"eventidEndOfMedia","features":[428]},{"name":"eventidLicenseChange","features":[428]},{"name":"eventidOnTuneChanged","features":[428]},{"name":"eventidOverlayUnavailable","features":[428]},{"name":"eventidPauseOn","features":[428]},{"name":"eventidPlayAtTime","features":[428]},{"name":"eventidPlayAtTimeInTitle","features":[428]},{"name":"eventidPlayBackwards","features":[428]},{"name":"eventidPlayChapter","features":[428]},{"name":"eventidPlayChapterInTitle","features":[428]},{"name":"eventidPlayForwards","features":[428]},{"name":"eventidPlayNextChapter","features":[428]},{"name":"eventidPlayPrevChapter","features":[428]},{"name":"eventidPlayTitle","features":[428]},{"name":"eventidRateChange","features":[428]},{"name":"eventidRatingsBlocked","features":[428]},{"name":"eventidRatingsChanged","features":[428]},{"name":"eventidRatingsUnlocked","features":[428]},{"name":"eventidReplayChapter","features":[428]},{"name":"eventidResume","features":[428]},{"name":"eventidReturnFromSubmenu","features":[428]},{"name":"eventidSelectOrActivateButton","features":[428]},{"name":"eventidShowMenu","features":[428]},{"name":"eventidSinkCertificateFailure","features":[428]},{"name":"eventidSinkCertificateSuccess","features":[428]},{"name":"eventidSourceCertificateFailure","features":[428]},{"name":"eventidSourceCertificateSuccess","features":[428]},{"name":"eventidStaleDataRead","features":[428]},{"name":"eventidStaleFileDeleted","features":[428]},{"name":"eventidStateChange","features":[428]},{"name":"eventidStillOff","features":[428]},{"name":"eventidStop","features":[428]},{"name":"eventidTimeHole","features":[428]},{"name":"eventidWriteFailure","features":[428]},{"name":"eventidWriteFailureClear","features":[428]},{"name":"g_wszStreamBufferRecordingAlbumArtist","features":[428]},{"name":"g_wszStreamBufferRecordingAlbumCoverURL","features":[428]},{"name":"g_wszStreamBufferRecordingAlbumTitle","features":[428]},{"name":"g_wszStreamBufferRecordingAspectRatioX","features":[428]},{"name":"g_wszStreamBufferRecordingAspectRatioY","features":[428]},{"name":"g_wszStreamBufferRecordingAuthor","features":[428]},{"name":"g_wszStreamBufferRecordingBannerImageData","features":[428]},{"name":"g_wszStreamBufferRecordingBannerImageType","features":[428]},{"name":"g_wszStreamBufferRecordingBannerImageURL","features":[428]},{"name":"g_wszStreamBufferRecordingBitrate","features":[428]},{"name":"g_wszStreamBufferRecordingBroadcast","features":[428]},{"name":"g_wszStreamBufferRecordingComposer","features":[428]},{"name":"g_wszStreamBufferRecordingCopyright","features":[428]},{"name":"g_wszStreamBufferRecordingCopyrightURL","features":[428]},{"name":"g_wszStreamBufferRecordingCurrentBitrate","features":[428]},{"name":"g_wszStreamBufferRecordingDRM_Flags","features":[428]},{"name":"g_wszStreamBufferRecordingDRM_Level","features":[428]},{"name":"g_wszStreamBufferRecordingDescription","features":[428]},{"name":"g_wszStreamBufferRecordingDuration","features":[428]},{"name":"g_wszStreamBufferRecordingFileSize","features":[428]},{"name":"g_wszStreamBufferRecordingGenre","features":[428]},{"name":"g_wszStreamBufferRecordingGenreID","features":[428]},{"name":"g_wszStreamBufferRecordingHasArbitraryDataStream","features":[428]},{"name":"g_wszStreamBufferRecordingHasAttachedImages","features":[428]},{"name":"g_wszStreamBufferRecordingHasAudio","features":[428]},{"name":"g_wszStreamBufferRecordingHasFileTransferStream","features":[428]},{"name":"g_wszStreamBufferRecordingHasImage","features":[428]},{"name":"g_wszStreamBufferRecordingHasScript","features":[428]},{"name":"g_wszStreamBufferRecordingHasVideo","features":[428]},{"name":"g_wszStreamBufferRecordingIsVBR","features":[428]},{"name":"g_wszStreamBufferRecordingLyrics","features":[428]},{"name":"g_wszStreamBufferRecordingMCDI","features":[428]},{"name":"g_wszStreamBufferRecordingNSCAddress","features":[428]},{"name":"g_wszStreamBufferRecordingNSCDescription","features":[428]},{"name":"g_wszStreamBufferRecordingNSCEmail","features":[428]},{"name":"g_wszStreamBufferRecordingNSCName","features":[428]},{"name":"g_wszStreamBufferRecordingNSCPhone","features":[428]},{"name":"g_wszStreamBufferRecordingNumberOfFrames","features":[428]},{"name":"g_wszStreamBufferRecordingOptimalBitrate","features":[428]},{"name":"g_wszStreamBufferRecordingPromotionURL","features":[428]},{"name":"g_wszStreamBufferRecordingProtected","features":[428]},{"name":"g_wszStreamBufferRecordingRating","features":[428]},{"name":"g_wszStreamBufferRecordingSeekable","features":[428]},{"name":"g_wszStreamBufferRecordingSignature_Name","features":[428]},{"name":"g_wszStreamBufferRecordingSkipBackward","features":[428]},{"name":"g_wszStreamBufferRecordingSkipForward","features":[428]},{"name":"g_wszStreamBufferRecordingStridable","features":[428]},{"name":"g_wszStreamBufferRecordingTitle","features":[428]},{"name":"g_wszStreamBufferRecordingToolName","features":[428]},{"name":"g_wszStreamBufferRecordingToolVersion","features":[428]},{"name":"g_wszStreamBufferRecordingTrack","features":[428]},{"name":"g_wszStreamBufferRecordingTrackNumber","features":[428]},{"name":"g_wszStreamBufferRecordingTrusted","features":[428]},{"name":"g_wszStreamBufferRecordingUse_DRM","features":[428]},{"name":"g_wszStreamBufferRecordingYear","features":[428]},{"name":"sslClipByClipRect","features":[428]},{"name":"sslClipByOverScan","features":[428]},{"name":"sslFullSize","features":[428]}],"432":[{"name":"CLSID_XMLGraphBuilder","features":[430]},{"name":"IXMLGraphBuilder","features":[430]}],"433":[{"name":"DMOCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[431]},{"name":"DMOCATEGORY_AGC","features":[431]},{"name":"DMOCATEGORY_AUDIO_CAPTURE_EFFECT","features":[431]},{"name":"DMOCATEGORY_AUDIO_DECODER","features":[431]},{"name":"DMOCATEGORY_AUDIO_EFFECT","features":[431]},{"name":"DMOCATEGORY_AUDIO_ENCODER","features":[431]},{"name":"DMOCATEGORY_AUDIO_NOISE_SUPPRESS","features":[431]},{"name":"DMOCATEGORY_VIDEO_DECODER","features":[431]},{"name":"DMOCATEGORY_VIDEO_EFFECT","features":[431]},{"name":"DMOCATEGORY_VIDEO_ENCODER","features":[431]},{"name":"DMOEnum","features":[431]},{"name":"DMOGetName","features":[431]},{"name":"DMOGetTypes","features":[431]},{"name":"DMORegister","features":[431]},{"name":"DMOUnregister","features":[431]},{"name":"DMO_ENUMF_INCLUDE_KEYED","features":[431]},{"name":"DMO_ENUM_FLAGS","features":[431]},{"name":"DMO_E_INVALIDSTREAMINDEX","features":[431]},{"name":"DMO_E_INVALIDTYPE","features":[431]},{"name":"DMO_E_NOTACCEPTING","features":[431]},{"name":"DMO_E_NO_MORE_ITEMS","features":[431]},{"name":"DMO_E_TYPE_NOT_ACCEPTED","features":[431]},{"name":"DMO_E_TYPE_NOT_SET","features":[431]},{"name":"DMO_INPLACE_NORMAL","features":[431]},{"name":"DMO_INPLACE_ZERO","features":[431]},{"name":"DMO_INPUT_DATA_BUFFERF_DISCONTINUITY","features":[431]},{"name":"DMO_INPUT_DATA_BUFFERF_SYNCPOINT","features":[431]},{"name":"DMO_INPUT_DATA_BUFFERF_TIME","features":[431]},{"name":"DMO_INPUT_DATA_BUFFERF_TIMELENGTH","features":[431]},{"name":"DMO_INPUT_STATUSF_ACCEPT_DATA","features":[431]},{"name":"DMO_INPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[431]},{"name":"DMO_INPUT_STREAMF_HOLDS_BUFFERS","features":[431]},{"name":"DMO_INPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[431]},{"name":"DMO_INPUT_STREAMF_WHOLE_SAMPLES","features":[431]},{"name":"DMO_MEDIA_TYPE","features":[303,431]},{"name":"DMO_OUTPUT_DATA_BUFFER","features":[431]},{"name":"DMO_OUTPUT_DATA_BUFFERF_DISCONTINUITY","features":[431]},{"name":"DMO_OUTPUT_DATA_BUFFERF_INCOMPLETE","features":[431]},{"name":"DMO_OUTPUT_DATA_BUFFERF_SYNCPOINT","features":[431]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIME","features":[431]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIMELENGTH","features":[431]},{"name":"DMO_OUTPUT_STREAMF_DISCARDABLE","features":[431]},{"name":"DMO_OUTPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[431]},{"name":"DMO_OUTPUT_STREAMF_OPTIONAL","features":[431]},{"name":"DMO_OUTPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[431]},{"name":"DMO_OUTPUT_STREAMF_WHOLE_SAMPLES","features":[431]},{"name":"DMO_PARTIAL_MEDIATYPE","features":[431]},{"name":"DMO_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER","features":[431]},{"name":"DMO_QUALITY_STATUS_ENABLED","features":[431]},{"name":"DMO_REGISTERF_IS_KEYED","features":[431]},{"name":"DMO_REGISTER_FLAGS","features":[431]},{"name":"DMO_SET_TYPEF_CLEAR","features":[431]},{"name":"DMO_SET_TYPEF_TEST_ONLY","features":[431]},{"name":"DMO_VOSF_NEEDS_PREVIOUS_SAMPLE","features":[431]},{"name":"IDMOQualityControl","features":[431]},{"name":"IDMOVideoOutputOptimizations","features":[431]},{"name":"IEnumDMO","features":[431]},{"name":"IMediaBuffer","features":[431]},{"name":"IMediaObject","features":[431]},{"name":"IMediaObjectInPlace","features":[431]},{"name":"MoCopyMediaType","features":[303,431]},{"name":"MoCreateMediaType","features":[303,431]},{"name":"MoDeleteMediaType","features":[303,431]},{"name":"MoDuplicateMediaType","features":[303,431]},{"name":"MoFreeMediaType","features":[303,431]},{"name":"MoInitMediaType","features":[303,431]},{"name":"_DMO_INPLACE_PROCESS_FLAGS","features":[431]},{"name":"_DMO_INPUT_DATA_BUFFER_FLAGS","features":[431]},{"name":"_DMO_INPUT_STATUS_FLAGS","features":[431]},{"name":"_DMO_INPUT_STREAM_INFO_FLAGS","features":[431]},{"name":"_DMO_OUTPUT_DATA_BUFFER_FLAGS","features":[431]},{"name":"_DMO_OUTPUT_STREAM_INFO_FLAGS","features":[431]},{"name":"_DMO_PROCESS_OUTPUT_FLAGS","features":[431]},{"name":"_DMO_QUALITY_STATUS_FLAGS","features":[431]},{"name":"_DMO_SET_TYPE_FLAGS","features":[431]},{"name":"_DMO_VIDEO_OUTPUT_STREAM_FLAGS","features":[431]}],"434":[{"name":"AEC_MODE_FULL_DUPLEX","features":[429]},{"name":"AEC_MODE_HALF_DUPLEX","features":[429]},{"name":"AEC_MODE_PASS_THROUGH","features":[429]},{"name":"AEC_STATUS_FD_CURRENTLY_CONVERGED","features":[429]},{"name":"AEC_STATUS_FD_HISTORY_CONTINUOUSLY_CONVERGED","features":[429]},{"name":"AEC_STATUS_FD_HISTORY_PREVIOUSLY_DIVERGED","features":[429]},{"name":"AEC_STATUS_FD_HISTORY_UNINITIALIZED","features":[429]},{"name":"ALLOCATOR_PROPERTIES_EX","features":[429]},{"name":"APO_CLASS_UUID","features":[429]},{"name":"AUDIOENDPOINT_CLASS_UUID","features":[429]},{"name":"AUDIOMODULE_MAX_DATA_SIZE","features":[429]},{"name":"AUDIOMODULE_MAX_NAME_CCH_SIZE","features":[429]},{"name":"AUDIOPOSTURE_ORIENTATION","features":[429]},{"name":"AUDIOPOSTURE_ORIENTATION_NOTROTATED","features":[429]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED180DEGREESCOUNTERCLOCKWISE","features":[429]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED270DEGREESCOUNTERCLOCKWISE","features":[429]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED90DEGREESCOUNTERCLOCKWISE","features":[429]},{"name":"AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[303,429]},{"name":"AUDIO_CURVE_TYPE","features":[429]},{"name":"AUDIO_CURVE_TYPE_NONE","features":[429]},{"name":"AUDIO_CURVE_TYPE_WINDOWS_FADE","features":[429]},{"name":"AUDIO_EFFECT_TYPE_ACOUSTIC_ECHO_CANCELLATION","features":[429]},{"name":"AUDIO_EFFECT_TYPE_AUTOMATIC_GAIN_CONTROL","features":[429]},{"name":"AUDIO_EFFECT_TYPE_BASS_BOOST","features":[429]},{"name":"AUDIO_EFFECT_TYPE_BASS_MANAGEMENT","features":[429]},{"name":"AUDIO_EFFECT_TYPE_BEAMFORMING","features":[429]},{"name":"AUDIO_EFFECT_TYPE_CONSTANT_TONE_REMOVAL","features":[429]},{"name":"AUDIO_EFFECT_TYPE_DEEP_NOISE_SUPPRESSION","features":[429]},{"name":"AUDIO_EFFECT_TYPE_DYNAMIC_RANGE_COMPRESSION","features":[429]},{"name":"AUDIO_EFFECT_TYPE_ENVIRONMENTAL_EFFECTS","features":[429]},{"name":"AUDIO_EFFECT_TYPE_EQUALIZER","features":[429]},{"name":"AUDIO_EFFECT_TYPE_FAR_FIELD_BEAMFORMING","features":[429]},{"name":"AUDIO_EFFECT_TYPE_LOUDNESS_EQUALIZER","features":[429]},{"name":"AUDIO_EFFECT_TYPE_NOISE_SUPPRESSION","features":[429]},{"name":"AUDIO_EFFECT_TYPE_ROOM_CORRECTION","features":[429]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_COMPENSATION","features":[429]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_FILL","features":[429]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_PROTECTION","features":[429]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_HEADPHONES","features":[429]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_SURROUND","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_COMMUNICATIONS","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_DEFAULT","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_FAR_FIELD_SPEECH","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MEDIA","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MOVIE","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_NOTIFICATION","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_RAW","features":[429]},{"name":"AUDIO_SIGNALPROCESSINGMODE_SPEECH","features":[429]},{"name":"AllocatorStrategy_DontCare","features":[429]},{"name":"AllocatorStrategy_MaximizeSpeed","features":[429]},{"name":"AllocatorStrategy_MinimizeFrameSize","features":[429]},{"name":"AllocatorStrategy_MinimizeNumberOfAllocators","features":[429]},{"name":"AllocatorStrategy_MinimizeNumberOfFrames","features":[429]},{"name":"BLUETOOTHLE_MIDI_SERVICE_UUID","features":[429]},{"name":"BLUETOOTH_MIDI_DATAIO_CHARACTERISTIC","features":[429]},{"name":"BUS_INTERFACE_REFERENCE_VERSION","features":[429]},{"name":"CAPTURE_MEMORY_ALLOCATION_FLAGS","features":[429]},{"name":"CASCADE_FORM","features":[429]},{"name":"CC_BYTE_PAIR","features":[429]},{"name":"CC_HW_FIELD","features":[429]},{"name":"CC_MAX_HW_DECODE_LINES","features":[429]},{"name":"CLSID_KsIBasicAudioInterfaceHandler","features":[429]},{"name":"CLSID_Proxy","features":[429]},{"name":"CONSTRICTOR_OPTION","features":[429]},{"name":"CONSTRICTOR_OPTION_DISABLE","features":[429]},{"name":"CONSTRICTOR_OPTION_MUTE","features":[429]},{"name":"DEVCAPS","features":[429]},{"name":"DEVPKEY_KsAudio_Controller_DeviceInterface_Path","features":[336,429]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints","features":[336,429]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints2","features":[336,429]},{"name":"DIRECT_FORM","features":[429]},{"name":"DS3DVECTOR","features":[429]},{"name":"DS3D_HRTF_VERSION_1","features":[429]},{"name":"EDeviceControlUseType","features":[429]},{"name":"EPcxConnectionType","features":[429]},{"name":"EPcxGenLocation","features":[429]},{"name":"EPcxGenLocation_enum_count","features":[429]},{"name":"EPcxGeoLocation","features":[429]},{"name":"EPcxGeoLocation_enum_count","features":[429]},{"name":"EPxcPortConnection","features":[429]},{"name":"EVENTSETID_CROSSBAR","features":[429]},{"name":"EVENTSETID_TUNER","features":[429]},{"name":"EVENTSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[429]},{"name":"EVENTSETID_VIDEODECODER","features":[429]},{"name":"FLOAT_COEFF","features":[429]},{"name":"FRAMING_CACHE_OPS","features":[429]},{"name":"FRAMING_PROP","features":[429]},{"name":"FULL_FILTER","features":[429]},{"name":"FramingProp_Ex","features":[429]},{"name":"FramingProp_None","features":[429]},{"name":"FramingProp_Old","features":[429]},{"name":"FramingProp_Uninitialized","features":[429]},{"name":"Framing_Cache_ReadLast","features":[429]},{"name":"Framing_Cache_ReadOrig","features":[429]},{"name":"Framing_Cache_Update","features":[429]},{"name":"Framing_Cache_Write","features":[429]},{"name":"GUID_NULL","features":[429]},{"name":"IKsAggregateControl","features":[429]},{"name":"IKsAllocator","features":[429]},{"name":"IKsAllocatorEx","features":[429]},{"name":"IKsClockPropertySet","features":[429]},{"name":"IKsControl","features":[429]},{"name":"IKsDataTypeCompletion","features":[429]},{"name":"IKsDataTypeHandler","features":[429]},{"name":"IKsFormatSupport","features":[429]},{"name":"IKsInterfaceHandler","features":[429]},{"name":"IKsJackContainerId","features":[429]},{"name":"IKsJackDescription","features":[429]},{"name":"IKsJackDescription2","features":[429]},{"name":"IKsJackDescription3","features":[429]},{"name":"IKsJackSinkInformation","features":[429]},{"name":"IKsNodeControl","features":[429]},{"name":"IKsNotifyEvent","features":[429]},{"name":"IKsObject","features":[429]},{"name":"IKsPin","features":[429]},{"name":"IKsPinEx","features":[429]},{"name":"IKsPinFactory","features":[429]},{"name":"IKsPinPipe","features":[429]},{"name":"IKsPropertySet","features":[429]},{"name":"IKsQualityForwarder","features":[429]},{"name":"IKsTopology","features":[429]},{"name":"IKsTopologyInfo","features":[429]},{"name":"INTERLEAVED_AUDIO_FORMAT_INFORMATION","features":[429]},{"name":"IOCTL_KS_DISABLE_EVENT","features":[429]},{"name":"IOCTL_KS_ENABLE_EVENT","features":[429]},{"name":"IOCTL_KS_HANDSHAKE","features":[429]},{"name":"IOCTL_KS_METHOD","features":[429]},{"name":"IOCTL_KS_PROPERTY","features":[429]},{"name":"IOCTL_KS_READ_STREAM","features":[429]},{"name":"IOCTL_KS_RESET_STATE","features":[429]},{"name":"IOCTL_KS_WRITE_STREAM","features":[429]},{"name":"JACKDESC2_DYNAMIC_FORMAT_CHANGE_CAPABILITY","features":[429]},{"name":"JACKDESC2_PRESENCE_DETECT_CAPABILITY","features":[429]},{"name":"KSAC3_ALTERNATE_AUDIO","features":[303,429]},{"name":"KSAC3_ALTERNATE_AUDIO_1","features":[429]},{"name":"KSAC3_ALTERNATE_AUDIO_2","features":[429]},{"name":"KSAC3_ALTERNATE_AUDIO_BOTH","features":[429]},{"name":"KSAC3_BIT_STREAM_MODE","features":[429]},{"name":"KSAC3_DIALOGUE_LEVEL","features":[429]},{"name":"KSAC3_DOWNMIX","features":[303,429]},{"name":"KSAC3_ERROR_CONCEALMENT","features":[303,429]},{"name":"KSAC3_ROOM_TYPE","features":[303,429]},{"name":"KSAC3_SERVICE_COMMENTARY","features":[429]},{"name":"KSAC3_SERVICE_DIALOG_ONLY","features":[429]},{"name":"KSAC3_SERVICE_EMERGENCY_FLASH","features":[429]},{"name":"KSAC3_SERVICE_HEARING_IMPAIRED","features":[429]},{"name":"KSAC3_SERVICE_MAIN_AUDIO","features":[429]},{"name":"KSAC3_SERVICE_NO_DIALOG","features":[429]},{"name":"KSAC3_SERVICE_VISUALLY_IMPAIRED","features":[429]},{"name":"KSAC3_SERVICE_VOICE_OVER","features":[429]},{"name":"KSALGORITHMINSTANCE_SYSTEM_ACOUSTIC_ECHO_CANCEL","features":[429]},{"name":"KSALGORITHMINSTANCE_SYSTEM_AGC","features":[429]},{"name":"KSALGORITHMINSTANCE_SYSTEM_MICROPHONE_ARRAY_PROCESSOR","features":[429]},{"name":"KSALGORITHMINSTANCE_SYSTEM_NOISE_SUPPRESS","features":[429]},{"name":"KSALLOCATORMODE","features":[429]},{"name":"KSALLOCATOR_FLAG_2D_BUFFER_REQUIRED","features":[429]},{"name":"KSALLOCATOR_FLAG_ALLOCATOR_EXISTS","features":[429]},{"name":"KSALLOCATOR_FLAG_ATTENTION_STEPPING","features":[429]},{"name":"KSALLOCATOR_FLAG_CAN_ALLOCATE","features":[429]},{"name":"KSALLOCATOR_FLAG_CYCLE","features":[429]},{"name":"KSALLOCATOR_FLAG_DEVICE_SPECIFIC","features":[429]},{"name":"KSALLOCATOR_FLAG_ENABLE_CACHED_MDL","features":[429]},{"name":"KSALLOCATOR_FLAG_INDEPENDENT_RANGES","features":[429]},{"name":"KSALLOCATOR_FLAG_INSIST_ON_FRAMESIZE_RATIO","features":[429]},{"name":"KSALLOCATOR_FLAG_MULTIPLE_OUTPUT","features":[429]},{"name":"KSALLOCATOR_FLAG_NO_FRAME_INTEGRITY","features":[429]},{"name":"KSALLOCATOR_FLAG_PARTIAL_READ_SUPPORT","features":[429]},{"name":"KSALLOCATOR_FRAMING","features":[429]},{"name":"KSALLOCATOR_FRAMING_EX","features":[429]},{"name":"KSALLOCATOR_OPTIONF_COMPATIBLE","features":[429]},{"name":"KSALLOCATOR_OPTIONF_SYSTEM_MEMORY","features":[429]},{"name":"KSALLOCATOR_OPTIONF_VALID","features":[429]},{"name":"KSALLOCATOR_REQUIREMENTF_FRAME_INTEGRITY","features":[429]},{"name":"KSALLOCATOR_REQUIREMENTF_INPLACE_MODIFIER","features":[429]},{"name":"KSALLOCATOR_REQUIREMENTF_MUST_ALLOCATE","features":[429]},{"name":"KSALLOCATOR_REQUIREMENTF_PREFERENCES_ONLY","features":[429]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY","features":[429]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY_CUSTOM_ALLOCATION","features":[429]},{"name":"KSATTRIBUTE","features":[429]},{"name":"KSATTRIBUTEID_AUDIOSIGNALPROCESSING_MODE","features":[429]},{"name":"KSATTRIBUTE_AUDIOSIGNALPROCESSING_MODE","features":[429]},{"name":"KSATTRIBUTE_REQUIRED","features":[429]},{"name":"KSAUDDECOUTMODE_PCM_51","features":[429]},{"name":"KSAUDDECOUTMODE_SPDIFF","features":[429]},{"name":"KSAUDDECOUTMODE_STEREO_ANALOG","features":[429]},{"name":"KSAUDFNAME_3D_CENTER","features":[429]},{"name":"KSAUDFNAME_3D_DEPTH","features":[429]},{"name":"KSAUDFNAME_3D_STEREO","features":[429]},{"name":"KSAUDFNAME_ALTERNATE_MICROPHONE","features":[429]},{"name":"KSAUDFNAME_AUX","features":[429]},{"name":"KSAUDFNAME_AUX_MUTE","features":[429]},{"name":"KSAUDFNAME_AUX_VOLUME","features":[429]},{"name":"KSAUDFNAME_BASS","features":[429]},{"name":"KSAUDFNAME_CD_AUDIO","features":[429]},{"name":"KSAUDFNAME_CD_IN_VOLUME","features":[429]},{"name":"KSAUDFNAME_CD_MUTE","features":[429]},{"name":"KSAUDFNAME_CD_VOLUME","features":[429]},{"name":"KSAUDFNAME_LINE_IN","features":[429]},{"name":"KSAUDFNAME_LINE_IN_VOLUME","features":[429]},{"name":"KSAUDFNAME_LINE_MUTE","features":[429]},{"name":"KSAUDFNAME_LINE_VOLUME","features":[429]},{"name":"KSAUDFNAME_MASTER_MUTE","features":[429]},{"name":"KSAUDFNAME_MASTER_VOLUME","features":[429]},{"name":"KSAUDFNAME_MICROPHONE_BOOST","features":[429]},{"name":"KSAUDFNAME_MIC_IN_VOLUME","features":[429]},{"name":"KSAUDFNAME_MIC_MUTE","features":[429]},{"name":"KSAUDFNAME_MIC_VOLUME","features":[429]},{"name":"KSAUDFNAME_MIDI","features":[429]},{"name":"KSAUDFNAME_MIDI_IN_VOLUME","features":[429]},{"name":"KSAUDFNAME_MIDI_MUTE","features":[429]},{"name":"KSAUDFNAME_MIDI_VOLUME","features":[429]},{"name":"KSAUDFNAME_MIDRANGE","features":[429]},{"name":"KSAUDFNAME_MONO_MIX","features":[429]},{"name":"KSAUDFNAME_MONO_MIX_MUTE","features":[429]},{"name":"KSAUDFNAME_MONO_MIX_VOLUME","features":[429]},{"name":"KSAUDFNAME_MONO_OUT","features":[429]},{"name":"KSAUDFNAME_MONO_OUT_MUTE","features":[429]},{"name":"KSAUDFNAME_MONO_OUT_VOLUME","features":[429]},{"name":"KSAUDFNAME_PC_SPEAKER","features":[429]},{"name":"KSAUDFNAME_PC_SPEAKER_MUTE","features":[429]},{"name":"KSAUDFNAME_PC_SPEAKER_VOLUME","features":[429]},{"name":"KSAUDFNAME_PEAKMETER","features":[429]},{"name":"KSAUDFNAME_RECORDING_CONTROL","features":[429]},{"name":"KSAUDFNAME_RECORDING_SOURCE","features":[429]},{"name":"KSAUDFNAME_STEREO_MIX","features":[429]},{"name":"KSAUDFNAME_STEREO_MIX_MUTE","features":[429]},{"name":"KSAUDFNAME_STEREO_MIX_VOLUME","features":[429]},{"name":"KSAUDFNAME_TREBLE","features":[429]},{"name":"KSAUDFNAME_VIDEO","features":[429]},{"name":"KSAUDFNAME_VIDEO_MUTE","features":[429]},{"name":"KSAUDFNAME_VIDEO_VOLUME","features":[429]},{"name":"KSAUDFNAME_VOLUME_CONTROL","features":[429]},{"name":"KSAUDFNAME_WAVE_IN_VOLUME","features":[429]},{"name":"KSAUDFNAME_WAVE_MUTE","features":[429]},{"name":"KSAUDFNAME_WAVE_OUT_MIX","features":[429]},{"name":"KSAUDFNAME_WAVE_VOLUME","features":[429]},{"name":"KSAUDIOENGINE_BUFFER_SIZE_RANGE","features":[429]},{"name":"KSAUDIOENGINE_DESCRIPTOR","features":[429]},{"name":"KSAUDIOENGINE_DEVICECONTROLS","features":[429]},{"name":"KSAUDIOENGINE_VOLUMELEVEL","features":[429]},{"name":"KSAUDIOMODULE_DESCRIPTOR","features":[429]},{"name":"KSAUDIOMODULE_NOTIFICATION","features":[429]},{"name":"KSAUDIOMODULE_PROPERTY","features":[429]},{"name":"KSAUDIO_CHANNEL_CONFIG","features":[429]},{"name":"KSAUDIO_COPY_PROTECTION","features":[303,429]},{"name":"KSAUDIO_CPU_RESOURCES_HOST_CPU","features":[429]},{"name":"KSAUDIO_CPU_RESOURCES_NOT_HOST_CPU","features":[429]},{"name":"KSAUDIO_DYNAMIC_RANGE","features":[429]},{"name":"KSAUDIO_MICROPHONE_COORDINATES","features":[429]},{"name":"KSAUDIO_MIC_ARRAY_GEOMETRY","features":[429]},{"name":"KSAUDIO_MIXCAP_TABLE","features":[303,429]},{"name":"KSAUDIO_MIXLEVEL","features":[303,429]},{"name":"KSAUDIO_MIX_CAPS","features":[303,429]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS","features":[429]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS2","features":[429]},{"name":"KSAUDIO_PACKETSIZE_PROCESSINGMODE_CONSTRAINT","features":[429]},{"name":"KSAUDIO_POSITION","features":[429]},{"name":"KSAUDIO_POSITIONEX","features":[429]},{"name":"KSAUDIO_PRESENTATION_POSITION","features":[429]},{"name":"KSAUDIO_QUALITY_ADVANCED","features":[429]},{"name":"KSAUDIO_QUALITY_BASIC","features":[429]},{"name":"KSAUDIO_QUALITY_PC","features":[429]},{"name":"KSAUDIO_QUALITY_WORST","features":[429]},{"name":"KSAUDIO_SPEAKER_DIRECTOUT","features":[429]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_CENTER","features":[429]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_LEFT","features":[429]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_RIGHT","features":[429]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_LEFT","features":[429]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_RIGHT","features":[429]},{"name":"KSAUDIO_SPEAKER_MONO","features":[429]},{"name":"KSAUDIO_SPEAKER_SUPER_WOOFER","features":[429]},{"name":"KSAUDIO_SPEAKER_TOP_MIDDLE","features":[429]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_HEADPHONE","features":[429]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MAX","features":[429]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MIN","features":[429]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_NARROW","features":[429]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_WIDE","features":[429]},{"name":"KSCAMERAPROFILE_BalancedVideoAndPhoto","features":[429]},{"name":"KSCAMERAPROFILE_CompressedCamera","features":[429]},{"name":"KSCAMERAPROFILE_FLAGS_FACEDETECTION","features":[429]},{"name":"KSCAMERAPROFILE_FLAGS_PHOTOHDR","features":[429]},{"name":"KSCAMERAPROFILE_FLAGS_PREVIEW_RES_MUSTMATCH","features":[429]},{"name":"KSCAMERAPROFILE_FLAGS_VARIABLEPHOTOSEQUENCE","features":[429]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOHDR","features":[429]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOSTABLIZATION","features":[429]},{"name":"KSCAMERAPROFILE_FaceAuth_Mode","features":[429]},{"name":"KSCAMERAPROFILE_HDRWithWCGPhoto","features":[429]},{"name":"KSCAMERAPROFILE_HDRWithWCGVideo","features":[429]},{"name":"KSCAMERAPROFILE_HighFrameRate","features":[429]},{"name":"KSCAMERAPROFILE_HighQualityPhoto","features":[429]},{"name":"KSCAMERAPROFILE_Legacy","features":[429]},{"name":"KSCAMERAPROFILE_PhotoSequence","features":[429]},{"name":"KSCAMERAPROFILE_VariablePhotoSequence","features":[429]},{"name":"KSCAMERAPROFILE_VideoConferencing","features":[429]},{"name":"KSCAMERAPROFILE_VideoHDR8","features":[429]},{"name":"KSCAMERAPROFILE_VideoRecording","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_FNF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_HDR","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_ULTRALOWLIGHT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_BLUR","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_CONFIGCAPS","features":[303,429]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_MASK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_SHALLOWFOCUS","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_CAMERAOFFSET","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_ASYNCCONTROL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_CANCELLABLE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_MASK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_RESERVED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_AUTOFACEFRAMING","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPS","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPSHEADER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_MANUAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_SETTING","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMPENSATION","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_FULLSTEP","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_HALFSTEP","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_QUARTERSTEP","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_SIXTHSTEP","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_THIRDSTEP","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_STARE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_ALTERNATIVE_FRAME_ILLUMINATION","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_BACKGROUND_SUBTRACTION","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_DISABLED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_BLINK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PHOTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PREVIEW","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_SMILE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_VIDEO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FIELDOFVIEW","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FILTERSCOPE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_CANCELOPERATION","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_MASK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO_ADJUSTABLEPOWER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_MULTIFLASHSUPPORTED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON_ADJUSTABLEPOWER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_REDEYEREDUCTION","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_SINGLEFLASH","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FAILED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FOCUSED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_LOST","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_SEARCHING","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_UNINITIALIZED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUS","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUSLOCK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_HYPERFOCAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_INFINITY","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_NEAREST","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DRIVERFALLBACK_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_FULLRANGE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_HYPERFOCAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_INFINITY","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_MACRO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_NORMAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_REGIONBASED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_UNLOCK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_HEADER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALTERNATING_FRAME_ILLUMINATION","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALWAYS_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_100","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_12800","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_1600","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_200","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_25600","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_3200","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_400","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_50","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_6400","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_80","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_800","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_MANUAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_METADATAINFO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_ALIGNMENTREQUIRED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_MEMORYTYPE_MASK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_SYSTEMMEMORY","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_1024","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_128","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_16","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_2048","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_256","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_32","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_4096","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_512","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_64","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_8192","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_DEFAULT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_LATENCY","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_PHOTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_POWER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_QUALITY","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_VIDEO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_NORMAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_NONE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_VARIABLE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_16X","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_2X","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_4X","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_8X","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_DISABLE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_PROFILE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_DYNAMIC","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_FACE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_UNKNOWN","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPS","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPSHEADER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_EXPOSURE","features":[303,429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_FOCUS","features":[303,429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_INFO","features":[303,429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROLHEADER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_WHITEBALANCE","features":[303,429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BACKLIT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BEACH","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_CANDLELIGHT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_LANDSCAPE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MACRO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MANUAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHTPORTRAIT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_PORTRAIT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SNOW","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SPORT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SUNSET","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_DISABLED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_ENABLED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VALUE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_LOCK","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_MANUAL","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCSETTING","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_AUTO","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_OFF","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON_ADJUSTABLEPOWER","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_DISABLED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_ENABLED","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CANDLELIGHT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CLOUDY","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_DAYLIGHT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLASH","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLUORESCENT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_TUNGSTEN","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_MODE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_PRESET","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_TEMPERATURE","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DEFAULT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DIRECT","features":[429]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_SMOOTH","features":[429]},{"name":"KSCAMERA_MAXVIDEOFPS_FORPHOTORES","features":[429]},{"name":"KSCAMERA_METADATA_BACKGROUNDSEGMENTATIONMASK","features":[303,429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURECOMPENSATION","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURETIME","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASH","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASHPOWER","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FOCUSSTATE","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ISOSPEED","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_LENSPOSITION","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SCENEMODE","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SENSORFRAMERATE","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_WHITEBALANCE","features":[429]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ZOOMFACTOR","features":[429]},{"name":"KSCAMERA_METADATA_DIGITALWINDOW","features":[429]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION","features":[429]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION_FLAG_ON","features":[429]},{"name":"KSCAMERA_METADATA_ITEMHEADER","features":[429]},{"name":"KSCAMERA_METADATA_PHOTOCONFIRMATION","features":[429]},{"name":"KSCAMERA_MetadataId","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_AUTO","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_HEADER","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_ITEM_HEADER","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_CUSTOM_ITEM","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_FRAME_HEADER","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_HEADER","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_CUSTOM","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_COMPENSATION","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_TIME","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FLASH","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FOCUS","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_HEADER","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_ISO","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_PHOTOCONFIRMATION","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_TYPE","features":[429]},{"name":"KSCAMERA_PERFRAMESETTING_MANUAL","features":[429]},{"name":"KSCAMERA_PROFILE_CONCURRENCYINFO","features":[429]},{"name":"KSCAMERA_PROFILE_INFO","features":[429]},{"name":"KSCAMERA_PROFILE_MEDIAINFO","features":[429]},{"name":"KSCAMERA_PROFILE_PININFO","features":[429]},{"name":"KSCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[429]},{"name":"KSCATEGORY_AUDIO","features":[429]},{"name":"KSCATEGORY_BRIDGE","features":[429]},{"name":"KSCATEGORY_CAPTURE","features":[429]},{"name":"KSCATEGORY_CLOCK","features":[429]},{"name":"KSCATEGORY_COMMUNICATIONSTRANSFORM","features":[429]},{"name":"KSCATEGORY_CROSSBAR","features":[429]},{"name":"KSCATEGORY_DATACOMPRESSOR","features":[429]},{"name":"KSCATEGORY_DATADECOMPRESSOR","features":[429]},{"name":"KSCATEGORY_DATATRANSFORM","features":[429]},{"name":"KSCATEGORY_ENCODER","features":[429]},{"name":"KSCATEGORY_ESCALANTE_PLATFORM_DRIVER","features":[429]},{"name":"KSCATEGORY_FILESYSTEM","features":[429]},{"name":"KSCATEGORY_INTERFACETRANSFORM","features":[429]},{"name":"KSCATEGORY_MEDIUMTRANSFORM","features":[429]},{"name":"KSCATEGORY_MICROPHONE_ARRAY_PROCESSOR","features":[429]},{"name":"KSCATEGORY_MIXER","features":[429]},{"name":"KSCATEGORY_MULTIPLEXER","features":[429]},{"name":"KSCATEGORY_NETWORK","features":[429]},{"name":"KSCATEGORY_NETWORK_CAMERA","features":[429]},{"name":"KSCATEGORY_PROXY","features":[429]},{"name":"KSCATEGORY_QUALITY","features":[429]},{"name":"KSCATEGORY_REALTIME","features":[429]},{"name":"KSCATEGORY_RENDER","features":[429]},{"name":"KSCATEGORY_SENSOR_CAMERA","features":[429]},{"name":"KSCATEGORY_SENSOR_GROUP","features":[429]},{"name":"KSCATEGORY_SPLITTER","features":[429]},{"name":"KSCATEGORY_TEXT","features":[429]},{"name":"KSCATEGORY_TOPOLOGY","features":[429]},{"name":"KSCATEGORY_TVAUDIO","features":[429]},{"name":"KSCATEGORY_TVTUNER","features":[429]},{"name":"KSCATEGORY_VBICODEC","features":[429]},{"name":"KSCATEGORY_VIDEO","features":[429]},{"name":"KSCATEGORY_VIDEO_CAMERA","features":[429]},{"name":"KSCATEGORY_VIRTUAL","features":[429]},{"name":"KSCATEGORY_VPMUX","features":[429]},{"name":"KSCATEGORY_WDMAUD_USE_PIN_NAME","features":[429]},{"name":"KSCLOCK_CREATE","features":[429]},{"name":"KSCOMPONENTID","features":[429]},{"name":"KSCOMPONENTID_USBAUDIO","features":[429]},{"name":"KSCORRELATED_TIME","features":[429]},{"name":"KSCREATE_ITEM_FREEONSTOP","features":[429]},{"name":"KSCREATE_ITEM_NOPARAMETERS","features":[429]},{"name":"KSCREATE_ITEM_SECURITYCHANGED","features":[429]},{"name":"KSCREATE_ITEM_WILDCARD","features":[429]},{"name":"KSCameraProfileSensorType_Custom","features":[429]},{"name":"KSCameraProfileSensorType_Depth","features":[429]},{"name":"KSCameraProfileSensorType_ImageSegmentation","features":[429]},{"name":"KSCameraProfileSensorType_Infrared","features":[429]},{"name":"KSCameraProfileSensorType_PoseTracking","features":[429]},{"name":"KSCameraProfileSensorType_RGB","features":[429]},{"name":"KSDATAFORMAT","features":[429]},{"name":"KSDATAFORMAT_BIT_ATTRIBUTES","features":[429]},{"name":"KSDATAFORMAT_BIT_TEMPORAL_COMPRESSION","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_AC3_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_ANALOGVIDEO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_AC3_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_DSOUND","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_FILEHANDLE","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_FILENAME","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_H264_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_IMAGE","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_JPEG_IMAGE","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_LPCM_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG1_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_NONE","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_VBI","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_VC_ID","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO2","features":[429]},{"name":"KSDATAFORMAT_SPECIFIER_WAVEFORMATEX","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_AC3_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_ANALOG","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_CC","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_D16","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_DTS_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_AAC","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ATRAC","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS_ATMOS","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT20","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT21","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MLP","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DST","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E1","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E2","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS_HD","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG1","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG2","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG3","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ONE_BIT_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_WMA_PRO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_IMAGE_RGB32","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_JPEG","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_L16","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_L16_CUSTOM","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_L16_IR","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_L8","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_L8_CUSTOM","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_L8_IR","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_LPCM_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_BytePair","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_GOPPacket","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI_BUS","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_CUSTOM","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_DEPTH","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_IR","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Packet","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Payload","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Video","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MPEGLAYER3","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG_HEAAC","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS_FEC","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_NONE","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_OVERLAY","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_PCM","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_RAW8","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_RIFF","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFMIDI","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFWAVE","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_SDDS_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_AC3_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_AUDIO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_VIDEO","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_SUBPICTURE","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_TELETEXT","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_VPVBI","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_VPVideo","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_WAVEFORMATEX","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO2","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO3","features":[429]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO_LOSSLESS","features":[429]},{"name":"KSDATAFORMAT_TYPE_ANALOGAUDIO","features":[429]},{"name":"KSDATAFORMAT_TYPE_ANALOGVIDEO","features":[429]},{"name":"KSDATAFORMAT_TYPE_AUDIO","features":[429]},{"name":"KSDATAFORMAT_TYPE_AUXLine21Data","features":[429]},{"name":"KSDATAFORMAT_TYPE_DVD_ENCRYPTED_PACK","features":[429]},{"name":"KSDATAFORMAT_TYPE_IMAGE","features":[429]},{"name":"KSDATAFORMAT_TYPE_MIDI","features":[429]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PES","features":[429]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PROGRAM","features":[429]},{"name":"KSDATAFORMAT_TYPE_MPEG2_TRANSPORT","features":[429]},{"name":"KSDATAFORMAT_TYPE_MUSIC","features":[429]},{"name":"KSDATAFORMAT_TYPE_NABTS","features":[429]},{"name":"KSDATAFORMAT_TYPE_STANDARD_ELEMENTARY_STREAM","features":[429]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PACK_HEADER","features":[429]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PES_PACKET","features":[429]},{"name":"KSDATAFORMAT_TYPE_STREAM","features":[429]},{"name":"KSDATAFORMAT_TYPE_TEXT","features":[429]},{"name":"KSDATAFORMAT_TYPE_VBI","features":[429]},{"name":"KSDATAFORMAT_TYPE_VIDEO","features":[429]},{"name":"KSDATARANGE_AUDIO","features":[429]},{"name":"KSDATARANGE_BIT_ATTRIBUTES","features":[429]},{"name":"KSDATARANGE_BIT_REQUIRED_ATTRIBUTES","features":[429]},{"name":"KSDATARANGE_MUSIC","features":[429]},{"name":"KSDEGRADESETID_Standard","features":[429]},{"name":"KSDEGRADE_STANDARD","features":[429]},{"name":"KSDEGRADE_STANDARD_COMPUTATION","features":[429]},{"name":"KSDEGRADE_STANDARD_QUALITY","features":[429]},{"name":"KSDEGRADE_STANDARD_SAMPLE","features":[429]},{"name":"KSDEGRADE_STANDARD_SKIP","features":[429]},{"name":"KSDEVICE_DESCRIPTOR_VERSION","features":[429]},{"name":"KSDEVICE_DESCRIPTOR_VERSION_2","features":[429]},{"name":"KSDEVICE_FLAG_ENABLE_QUERYINTERFACE","features":[429]},{"name":"KSDEVICE_FLAG_ENABLE_REMOTE_WAKEUP","features":[429]},{"name":"KSDEVICE_FLAG_LOWPOWER_PASSTHROUGH","features":[429]},{"name":"KSDEVICE_PROFILE_INFO","features":[429]},{"name":"KSDEVICE_PROFILE_TYPE_CAMERA","features":[429]},{"name":"KSDEVICE_PROFILE_TYPE_UNKNOWN","features":[429]},{"name":"KSDEVICE_THERMAL_STATE","features":[429]},{"name":"KSDEVICE_THERMAL_STATE_HIGH","features":[429]},{"name":"KSDEVICE_THERMAL_STATE_LOW","features":[429]},{"name":"KSDISPATCH_FASTIO","features":[429]},{"name":"KSDISPLAYCHANGE","features":[429]},{"name":"KSDS3D_BUFFER_ALL","features":[429]},{"name":"KSDS3D_BUFFER_CONE_ANGLES","features":[429]},{"name":"KSDS3D_COEFF_COUNT","features":[429]},{"name":"KSDS3D_FILTER_METHOD_COUNT","features":[429]},{"name":"KSDS3D_FILTER_QUALITY_COUNT","features":[429]},{"name":"KSDS3D_HRTF_COEFF_FORMAT","features":[429]},{"name":"KSDS3D_HRTF_FILTER_FORMAT_MSG","features":[429]},{"name":"KSDS3D_HRTF_FILTER_METHOD","features":[429]},{"name":"KSDS3D_HRTF_FILTER_QUALITY","features":[429]},{"name":"KSDS3D_HRTF_FILTER_VERSION","features":[429]},{"name":"KSDS3D_HRTF_INIT_MSG","features":[429]},{"name":"KSDS3D_HRTF_PARAMS_MSG","features":[303,429]},{"name":"KSDS3D_ITD_PARAMS","features":[429]},{"name":"KSDS3D_ITD_PARAMS_MSG","features":[429]},{"name":"KSDS3D_LISTENER_ALL","features":[429]},{"name":"KSDS3D_LISTENER_ORIENTATION","features":[429]},{"name":"KSDSOUND_3D_MODE_DISABLE","features":[429]},{"name":"KSDSOUND_3D_MODE_HEADRELATIVE","features":[429]},{"name":"KSDSOUND_3D_MODE_NORMAL","features":[429]},{"name":"KSDSOUND_BUFFER_CTRL_3D","features":[429]},{"name":"KSDSOUND_BUFFER_CTRL_FREQUENCY","features":[429]},{"name":"KSDSOUND_BUFFER_CTRL_HRTF_3D","features":[429]},{"name":"KSDSOUND_BUFFER_CTRL_PAN","features":[429]},{"name":"KSDSOUND_BUFFER_CTRL_POSITIONNOTIFY","features":[429]},{"name":"KSDSOUND_BUFFER_CTRL_VOLUME","features":[429]},{"name":"KSDSOUND_BUFFER_LOCHARDWARE","features":[429]},{"name":"KSDSOUND_BUFFER_LOCSOFTWARE","features":[429]},{"name":"KSDSOUND_BUFFER_PRIMARY","features":[429]},{"name":"KSDSOUND_BUFFER_STATIC","features":[429]},{"name":"KSERROR","features":[429]},{"name":"KSEVENTDATA","features":[303,429]},{"name":"KSEVENTF_DPC","features":[429]},{"name":"KSEVENTF_EVENT_HANDLE","features":[429]},{"name":"KSEVENTF_EVENT_OBJECT","features":[429]},{"name":"KSEVENTF_KSWORKITEM","features":[429]},{"name":"KSEVENTF_SEMAPHORE_HANDLE","features":[429]},{"name":"KSEVENTF_SEMAPHORE_OBJECT","features":[429]},{"name":"KSEVENTF_WORKITEM","features":[429]},{"name":"KSEVENTSETID_AudioControlChange","features":[429]},{"name":"KSEVENTSETID_CameraAsyncControl","features":[429]},{"name":"KSEVENTSETID_CameraEvent","features":[429]},{"name":"KSEVENTSETID_Clock","features":[429]},{"name":"KSEVENTSETID_Connection","features":[429]},{"name":"KSEVENTSETID_Device","features":[429]},{"name":"KSEVENTSETID_DynamicFormatChange","features":[429]},{"name":"KSEVENTSETID_EXTDEV_Command","features":[429]},{"name":"KSEVENTSETID_ExtendedCameraControl","features":[429]},{"name":"KSEVENTSETID_LoopedStreaming","features":[429]},{"name":"KSEVENTSETID_PinCapsChange","features":[429]},{"name":"KSEVENTSETID_SoundDetector","features":[429]},{"name":"KSEVENTSETID_StreamAllocator","features":[429]},{"name":"KSEVENTSETID_Telephony","features":[429]},{"name":"KSEVENTSETID_VIDCAPTOSTI","features":[429]},{"name":"KSEVENTSETID_VIDCAP_TVAUDIO","features":[429]},{"name":"KSEVENTSETID_VPNotify","features":[429]},{"name":"KSEVENTSETID_VPVBINotify","features":[429]},{"name":"KSEVENTSETID_VolumeLimit","features":[429]},{"name":"KSEVENT_AUDIO_CONTROL_CHANGE","features":[429]},{"name":"KSEVENT_CAMERACONTROL","features":[429]},{"name":"KSEVENT_CAMERACONTROL_FOCUS","features":[429]},{"name":"KSEVENT_CAMERACONTROL_ZOOM","features":[429]},{"name":"KSEVENT_CAMERAEVENT","features":[429]},{"name":"KSEVENT_CLOCK_INTERVAL_MARK","features":[429]},{"name":"KSEVENT_CLOCK_POSITION","features":[429]},{"name":"KSEVENT_CLOCK_POSITION_MARK","features":[429]},{"name":"KSEVENT_CONNECTION","features":[429]},{"name":"KSEVENT_CONNECTION_DATADISCONTINUITY","features":[429]},{"name":"KSEVENT_CONNECTION_ENDOFSTREAM","features":[429]},{"name":"KSEVENT_CONNECTION_POSITIONUPDATE","features":[429]},{"name":"KSEVENT_CONNECTION_PRIORITY","features":[429]},{"name":"KSEVENT_CONNECTION_TIMEDISCONTINUITY","features":[429]},{"name":"KSEVENT_CONTROL_CHANGE","features":[429]},{"name":"KSEVENT_CROSSBAR","features":[429]},{"name":"KSEVENT_CROSSBAR_CHANGED","features":[429]},{"name":"KSEVENT_DEVCMD","features":[429]},{"name":"KSEVENT_DEVICE","features":[429]},{"name":"KSEVENT_DEVICE_LOST","features":[429]},{"name":"KSEVENT_DEVICE_PREEMPTED","features":[429]},{"name":"KSEVENT_DEVICE_THERMAL_HIGH","features":[429]},{"name":"KSEVENT_DEVICE_THERMAL_LOW","features":[429]},{"name":"KSEVENT_DYNAMICFORMATCHANGE","features":[429]},{"name":"KSEVENT_DYNAMIC_FORMAT_CHANGE","features":[429]},{"name":"KSEVENT_ENTRY_BUFFERED","features":[429]},{"name":"KSEVENT_ENTRY_DELETED","features":[429]},{"name":"KSEVENT_ENTRY_ONESHOT","features":[429]},{"name":"KSEVENT_EXTDEV_COMMAND_BUSRESET","features":[429]},{"name":"KSEVENT_EXTDEV_COMMAND_CONTROL_INTERIM_READY","features":[429]},{"name":"KSEVENT_EXTDEV_COMMAND_NOTIFY_INTERIM_READY","features":[429]},{"name":"KSEVENT_EXTDEV_NOTIFY_MEDIUM_CHANGE","features":[429]},{"name":"KSEVENT_EXTDEV_NOTIFY_REMOVAL","features":[429]},{"name":"KSEVENT_EXTDEV_OPERATION_MODE_UPDATE","features":[429]},{"name":"KSEVENT_EXTDEV_TIMECODE_UPDATE","features":[429]},{"name":"KSEVENT_EXTDEV_TRANSPORT_STATE_UPDATE","features":[429]},{"name":"KSEVENT_LOOPEDSTREAMING","features":[429]},{"name":"KSEVENT_LOOPEDSTREAMING_POSITION","features":[429]},{"name":"KSEVENT_PHOTO_SAMPLE_SCANNED","features":[429]},{"name":"KSEVENT_PINCAPS_CHANGENOTIFICATIONS","features":[429]},{"name":"KSEVENT_PINCAPS_FORMATCHANGE","features":[429]},{"name":"KSEVENT_PINCAPS_JACKINFOCHANGE","features":[429]},{"name":"KSEVENT_SOUNDDETECTOR","features":[429]},{"name":"KSEVENT_SOUNDDETECTOR_MATCHDETECTED","features":[429]},{"name":"KSEVENT_STREAMALLOCATOR","features":[429]},{"name":"KSEVENT_STREAMALLOCATOR_FREEFRAME","features":[429]},{"name":"KSEVENT_STREAMALLOCATOR_INTERNAL_FREEFRAME","features":[429]},{"name":"KSEVENT_TELEPHONY","features":[429]},{"name":"KSEVENT_TELEPHONY_ENDPOINTPAIRS_CHANGED","features":[429]},{"name":"KSEVENT_TIME_INTERVAL","features":[303,429]},{"name":"KSEVENT_TIME_MARK","features":[303,429]},{"name":"KSEVENT_TUNER","features":[429]},{"name":"KSEVENT_TUNER_CHANGED","features":[429]},{"name":"KSEVENT_TUNER_INITIATE_SCAN","features":[429]},{"name":"KSEVENT_TUNER_INITIATE_SCAN_S","features":[303,429]},{"name":"KSEVENT_TVAUDIO","features":[429]},{"name":"KSEVENT_TVAUDIO_CHANGED","features":[429]},{"name":"KSEVENT_TYPE_BASICSUPPORT","features":[429]},{"name":"KSEVENT_TYPE_ENABLE","features":[429]},{"name":"KSEVENT_TYPE_ENABLEBUFFERED","features":[429]},{"name":"KSEVENT_TYPE_ONESHOT","features":[429]},{"name":"KSEVENT_TYPE_QUERYBUFFER","features":[429]},{"name":"KSEVENT_TYPE_SETSUPPORT","features":[429]},{"name":"KSEVENT_TYPE_TOPOLOGY","features":[429]},{"name":"KSEVENT_VIDCAPTOSTI","features":[429]},{"name":"KSEVENT_VIDCAPTOSTI_EXT_TRIGGER","features":[429]},{"name":"KSEVENT_VIDCAP_AUTO_UPDATE","features":[429]},{"name":"KSEVENT_VIDCAP_SEARCH","features":[429]},{"name":"KSEVENT_VIDEODECODER","features":[429]},{"name":"KSEVENT_VIDEODECODER_CHANGED","features":[429]},{"name":"KSEVENT_VOLUMELIMIT","features":[429]},{"name":"KSEVENT_VOLUMELIMIT_CHANGED","features":[429]},{"name":"KSEVENT_VPNOTIFY","features":[429]},{"name":"KSEVENT_VPNOTIFY_FORMATCHANGE","features":[429]},{"name":"KSEVENT_VPVBINOTIFY","features":[429]},{"name":"KSEVENT_VPVBINOTIFY_FORMATCHANGE","features":[429]},{"name":"KSE_NODE","features":[429]},{"name":"KSE_PIN","features":[429]},{"name":"KSFILTER_FLAG_CRITICAL_PROCESSING","features":[429]},{"name":"KSFILTER_FLAG_DENY_USERMODE_ACCESS","features":[429]},{"name":"KSFILTER_FLAG_DISPATCH_LEVEL_PROCESSING","features":[429]},{"name":"KSFILTER_FLAG_HYPERCRITICAL_PROCESSING","features":[429]},{"name":"KSFILTER_FLAG_PRIORITIZE_REFERENCEGUID","features":[429]},{"name":"KSFILTER_FLAG_RECEIVE_ZERO_LENGTH_SAMPLES","features":[429]},{"name":"KSFRAMETIME","features":[429]},{"name":"KSFRAMETIME_VARIABLESIZE","features":[429]},{"name":"KSGOP_USERDATA","features":[429]},{"name":"KSIDENTIFIER","features":[429]},{"name":"KSINTERFACESETID_FileIo","features":[429]},{"name":"KSINTERFACESETID_Media","features":[429]},{"name":"KSINTERFACESETID_Standard","features":[429]},{"name":"KSINTERFACE_FILEIO","features":[429]},{"name":"KSINTERFACE_FILEIO_STREAMING","features":[429]},{"name":"KSINTERFACE_MEDIA","features":[429]},{"name":"KSINTERFACE_MEDIA_MUSIC","features":[429]},{"name":"KSINTERFACE_MEDIA_WAVE_BUFFERED","features":[429]},{"name":"KSINTERFACE_MEDIA_WAVE_QUEUED","features":[429]},{"name":"KSINTERFACE_STANDARD","features":[429]},{"name":"KSINTERFACE_STANDARD_CONTROL","features":[429]},{"name":"KSINTERFACE_STANDARD_LOOPED_STREAMING","features":[429]},{"name":"KSINTERFACE_STANDARD_STREAMING","features":[429]},{"name":"KSINTERVAL","features":[429]},{"name":"KSIOOPERATION","features":[429]},{"name":"KSJACK_DESCRIPTION","features":[303,429]},{"name":"KSJACK_DESCRIPTION2","features":[429]},{"name":"KSJACK_DESCRIPTION3","features":[429]},{"name":"KSJACK_SINK_CONNECTIONTYPE","features":[429]},{"name":"KSJACK_SINK_CONNECTIONTYPE_DISPLAYPORT","features":[429]},{"name":"KSJACK_SINK_CONNECTIONTYPE_HDMI","features":[429]},{"name":"KSJACK_SINK_INFORMATION","features":[303,429]},{"name":"KSMEDIUMSETID_MidiBus","features":[429]},{"name":"KSMEDIUMSETID_Standard","features":[429]},{"name":"KSMEDIUMSETID_VPBus","features":[429]},{"name":"KSMEDIUM_STANDARD_DEVIO","features":[429]},{"name":"KSMEDIUM_TYPE_ANYINSTANCE","features":[429]},{"name":"KSMEMORY_TYPE_DEVICE_UNKNOWN","features":[429]},{"name":"KSMEMORY_TYPE_KERNEL_NONPAGED","features":[429]},{"name":"KSMEMORY_TYPE_KERNEL_PAGED","features":[429]},{"name":"KSMEMORY_TYPE_SYSTEM","features":[429]},{"name":"KSMEMORY_TYPE_USER","features":[429]},{"name":"KSMETHODSETID_StreamAllocator","features":[429]},{"name":"KSMETHODSETID_StreamIo","features":[429]},{"name":"KSMETHODSETID_Wavetable","features":[429]},{"name":"KSMETHOD_STREAMALLOCATOR","features":[429]},{"name":"KSMETHOD_STREAMALLOCATOR_ALLOC","features":[429]},{"name":"KSMETHOD_STREAMALLOCATOR_FREE","features":[429]},{"name":"KSMETHOD_STREAMIO","features":[429]},{"name":"KSMETHOD_STREAMIO_READ","features":[429]},{"name":"KSMETHOD_STREAMIO_WRITE","features":[429]},{"name":"KSMETHOD_TYPE_BASICSUPPORT","features":[429]},{"name":"KSMETHOD_TYPE_MODIFY","features":[429]},{"name":"KSMETHOD_TYPE_NONE","features":[429]},{"name":"KSMETHOD_TYPE_READ","features":[429]},{"name":"KSMETHOD_TYPE_SEND","features":[429]},{"name":"KSMETHOD_TYPE_SETSUPPORT","features":[429]},{"name":"KSMETHOD_TYPE_SOURCE","features":[429]},{"name":"KSMETHOD_TYPE_TOPOLOGY","features":[429]},{"name":"KSMETHOD_TYPE_WRITE","features":[429]},{"name":"KSMETHOD_WAVETABLE","features":[429]},{"name":"KSMETHOD_WAVETABLE_WAVE_ALLOC","features":[429]},{"name":"KSMETHOD_WAVETABLE_WAVE_FIND","features":[429]},{"name":"KSMETHOD_WAVETABLE_WAVE_FREE","features":[429]},{"name":"KSMETHOD_WAVETABLE_WAVE_WRITE","features":[429]},{"name":"KSMETHOD_WAVE_QUEUED_BREAKLOOP","features":[429]},{"name":"KSMFT_CATEGORY_AUDIO_DECODER","features":[429]},{"name":"KSMFT_CATEGORY_AUDIO_EFFECT","features":[429]},{"name":"KSMFT_CATEGORY_AUDIO_ENCODER","features":[429]},{"name":"KSMFT_CATEGORY_DEMULTIPLEXER","features":[429]},{"name":"KSMFT_CATEGORY_MULTIPLEXER","features":[429]},{"name":"KSMFT_CATEGORY_OTHER","features":[429]},{"name":"KSMFT_CATEGORY_VIDEO_DECODER","features":[429]},{"name":"KSMFT_CATEGORY_VIDEO_EFFECT","features":[429]},{"name":"KSMFT_CATEGORY_VIDEO_ENCODER","features":[429]},{"name":"KSMFT_CATEGORY_VIDEO_PROCESSOR","features":[429]},{"name":"KSMICARRAY_MICARRAYTYPE","features":[429]},{"name":"KSMICARRAY_MICARRAYTYPE_3D","features":[429]},{"name":"KSMICARRAY_MICARRAYTYPE_LINEAR","features":[429]},{"name":"KSMICARRAY_MICARRAYTYPE_PLANAR","features":[429]},{"name":"KSMICARRAY_MICTYPE","features":[429]},{"name":"KSMICARRAY_MICTYPE_8SHAPED","features":[429]},{"name":"KSMICARRAY_MICTYPE_CARDIOID","features":[429]},{"name":"KSMICARRAY_MICTYPE_HYPERCARDIOID","features":[429]},{"name":"KSMICARRAY_MICTYPE_OMNIDIRECTIONAL","features":[429]},{"name":"KSMICARRAY_MICTYPE_SUBCARDIOID","features":[429]},{"name":"KSMICARRAY_MICTYPE_SUPERCARDIOID","features":[429]},{"name":"KSMICARRAY_MICTYPE_VENDORDEFINED","features":[429]},{"name":"KSMPEGVIDMODE_LTRBOX","features":[429]},{"name":"KSMPEGVIDMODE_PANSCAN","features":[429]},{"name":"KSMPEGVIDMODE_SCALE","features":[429]},{"name":"KSMPEGVID_RECT","features":[429]},{"name":"KSMULTIPLE_DATA_PROP","features":[429]},{"name":"KSMULTIPLE_ITEM","features":[429]},{"name":"KSMUSICFORMAT","features":[429]},{"name":"KSMUSIC_TECHNOLOGY_FMSYNTH","features":[429]},{"name":"KSMUSIC_TECHNOLOGY_PORT","features":[429]},{"name":"KSMUSIC_TECHNOLOGY_SQSYNTH","features":[429]},{"name":"KSMUSIC_TECHNOLOGY_SWSYNTH","features":[429]},{"name":"KSMUSIC_TECHNOLOGY_WAVETABLE","features":[429]},{"name":"KSM_NODE","features":[429]},{"name":"KSNAME_Allocator","features":[429]},{"name":"KSNAME_Clock","features":[429]},{"name":"KSNAME_Filter","features":[429]},{"name":"KSNAME_Pin","features":[429]},{"name":"KSNAME_TopologyNode","features":[429]},{"name":"KSNODEPIN_AEC_CAPTURE_IN","features":[429]},{"name":"KSNODEPIN_AEC_CAPTURE_OUT","features":[429]},{"name":"KSNODEPIN_AEC_RENDER_IN","features":[429]},{"name":"KSNODEPIN_AEC_RENDER_OUT","features":[429]},{"name":"KSNODEPIN_DEMUX_IN","features":[429]},{"name":"KSNODEPIN_DEMUX_OUT","features":[429]},{"name":"KSNODEPIN_STANDARD_IN","features":[429]},{"name":"KSNODEPIN_STANDARD_OUT","features":[429]},{"name":"KSNODEPIN_SUM_MUX_IN","features":[429]},{"name":"KSNODEPIN_SUM_MUX_OUT","features":[429]},{"name":"KSNODEPROPERTY","features":[429]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[429]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[429]},{"name":"KSNODEPROPERTY_AUDIO_CHANNEL","features":[429]},{"name":"KSNODEPROPERTY_AUDIO_DEV_SPECIFIC","features":[429]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[429]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[429]},{"name":"KSNODETYPE_1394_DA_STREAM","features":[429]},{"name":"KSNODETYPE_1394_DV_STREAM_SOUNDTRACK","features":[429]},{"name":"KSNODETYPE_3D_EFFECTS","features":[429]},{"name":"KSNODETYPE_ADC","features":[429]},{"name":"KSNODETYPE_AGC","features":[429]},{"name":"KSNODETYPE_ANALOG_CONNECTOR","features":[429]},{"name":"KSNODETYPE_ANALOG_TAPE","features":[429]},{"name":"KSNODETYPE_AUDIO_ENGINE","features":[429]},{"name":"KSNODETYPE_AUDIO_KEYWORDDETECTOR","features":[429]},{"name":"KSNODETYPE_AUDIO_LOOPBACK","features":[429]},{"name":"KSNODETYPE_AUDIO_MODULE","features":[429]},{"name":"KSNODETYPE_BIDIRECTIONAL_UNDEFINED","features":[429]},{"name":"KSNODETYPE_CABLE_TUNER_AUDIO","features":[429]},{"name":"KSNODETYPE_CD_PLAYER","features":[429]},{"name":"KSNODETYPE_CHORUS","features":[429]},{"name":"KSNODETYPE_COMMUNICATION_SPEAKER","features":[429]},{"name":"KSNODETYPE_DAC","features":[429]},{"name":"KSNODETYPE_DAT_IO_DIGITAL_AUDIO_TAPE","features":[429]},{"name":"KSNODETYPE_DCC_IO_DIGITAL_COMPACT_CASSETTE","features":[429]},{"name":"KSNODETYPE_DELAY","features":[429]},{"name":"KSNODETYPE_DEMUX","features":[429]},{"name":"KSNODETYPE_DESKTOP_MICROPHONE","features":[429]},{"name":"KSNODETYPE_DESKTOP_SPEAKER","features":[429]},{"name":"KSNODETYPE_DEV_SPECIFIC","features":[429]},{"name":"KSNODETYPE_DIGITAL_AUDIO_INTERFACE","features":[429]},{"name":"KSNODETYPE_DISPLAYPORT_INTERFACE","features":[429]},{"name":"KSNODETYPE_DOWN_LINE_PHONE","features":[429]},{"name":"KSNODETYPE_DRM_DESCRAMBLE","features":[429]},{"name":"KSNODETYPE_DSS_AUDIO","features":[429]},{"name":"KSNODETYPE_DVD_AUDIO","features":[429]},{"name":"KSNODETYPE_DYN_RANGE_COMPRESSOR","features":[429]},{"name":"KSNODETYPE_ECHO_CANCELING_SPEAKERPHONE","features":[429]},{"name":"KSNODETYPE_ECHO_SUPPRESSING_SPEAKERPHONE","features":[429]},{"name":"KSNODETYPE_EMBEDDED_UNDEFINED","features":[429]},{"name":"KSNODETYPE_EQUALIZATION_NOISE","features":[429]},{"name":"KSNODETYPE_EQUALIZER","features":[429]},{"name":"KSNODETYPE_EXTERNAL_UNDEFINED","features":[429]},{"name":"KSNODETYPE_FM_RX","features":[429]},{"name":"KSNODETYPE_HANDSET","features":[429]},{"name":"KSNODETYPE_HDMI_INTERFACE","features":[429]},{"name":"KSNODETYPE_HEADPHONES","features":[429]},{"name":"KSNODETYPE_HEADSET","features":[429]},{"name":"KSNODETYPE_HEAD_MOUNTED_DISPLAY_AUDIO","features":[429]},{"name":"KSNODETYPE_INPUT_UNDEFINED","features":[429]},{"name":"KSNODETYPE_LEGACY_AUDIO_CONNECTOR","features":[429]},{"name":"KSNODETYPE_LEVEL_CALIBRATION_NOISE_SOURCE","features":[429]},{"name":"KSNODETYPE_LINE_CONNECTOR","features":[429]},{"name":"KSNODETYPE_LOUDNESS","features":[429]},{"name":"KSNODETYPE_LOW_FREQUENCY_EFFECTS_SPEAKER","features":[429]},{"name":"KSNODETYPE_MICROPHONE","features":[429]},{"name":"KSNODETYPE_MICROPHONE_ARRAY","features":[429]},{"name":"KSNODETYPE_MIDI_ELEMENT","features":[429]},{"name":"KSNODETYPE_MIDI_JACK","features":[429]},{"name":"KSNODETYPE_MINIDISK","features":[429]},{"name":"KSNODETYPE_MULTITRACK_RECORDER","features":[429]},{"name":"KSNODETYPE_MUTE","features":[429]},{"name":"KSNODETYPE_MUX","features":[429]},{"name":"KSNODETYPE_NOISE_SUPPRESS","features":[429]},{"name":"KSNODETYPE_OMNI_DIRECTIONAL_MICROPHONE","features":[429]},{"name":"KSNODETYPE_OUTPUT_UNDEFINED","features":[429]},{"name":"KSNODETYPE_PARAMETRIC_EQUALIZER","features":[429]},{"name":"KSNODETYPE_PEAKMETER","features":[429]},{"name":"KSNODETYPE_PERSONAL_MICROPHONE","features":[429]},{"name":"KSNODETYPE_PHONE_LINE","features":[429]},{"name":"KSNODETYPE_PHONOGRAPH","features":[429]},{"name":"KSNODETYPE_PROCESSING_MICROPHONE_ARRAY","features":[429]},{"name":"KSNODETYPE_PROLOGIC_DECODER","features":[429]},{"name":"KSNODETYPE_PROLOGIC_ENCODER","features":[429]},{"name":"KSNODETYPE_RADIO_RECEIVER","features":[429]},{"name":"KSNODETYPE_RADIO_TRANSMITTER","features":[429]},{"name":"KSNODETYPE_REVERB","features":[429]},{"name":"KSNODETYPE_ROOM_SPEAKER","features":[429]},{"name":"KSNODETYPE_SATELLITE_RECEIVER_AUDIO","features":[429]},{"name":"KSNODETYPE_SPDIF_INTERFACE","features":[429]},{"name":"KSNODETYPE_SPEAKER","features":[429]},{"name":"KSNODETYPE_SPEAKERPHONE_NO_ECHO_REDUCTION","features":[429]},{"name":"KSNODETYPE_SPEAKERS_STATIC_JACK","features":[429]},{"name":"KSNODETYPE_SRC","features":[429]},{"name":"KSNODETYPE_STEREO_WIDE","features":[429]},{"name":"KSNODETYPE_SUM","features":[429]},{"name":"KSNODETYPE_SUPERMIX","features":[429]},{"name":"KSNODETYPE_SYNTHESIZER","features":[429]},{"name":"KSNODETYPE_TELEPHONE","features":[429]},{"name":"KSNODETYPE_TELEPHONY_BIDI","features":[429]},{"name":"KSNODETYPE_TELEPHONY_UNDEFINED","features":[429]},{"name":"KSNODETYPE_TONE","features":[429]},{"name":"KSNODETYPE_TV_TUNER_AUDIO","features":[429]},{"name":"KSNODETYPE_UPDOWN_MIX","features":[429]},{"name":"KSNODETYPE_VCR_AUDIO","features":[429]},{"name":"KSNODETYPE_VIDEO_CAMERA_TERMINAL","features":[429]},{"name":"KSNODETYPE_VIDEO_DISC_AUDIO","features":[429]},{"name":"KSNODETYPE_VIDEO_INPUT_MTT","features":[429]},{"name":"KSNODETYPE_VIDEO_INPUT_TERMINAL","features":[429]},{"name":"KSNODETYPE_VIDEO_OUTPUT_MTT","features":[429]},{"name":"KSNODETYPE_VIDEO_OUTPUT_TERMINAL","features":[429]},{"name":"KSNODETYPE_VIDEO_PROCESSING","features":[429]},{"name":"KSNODETYPE_VIDEO_SELECTOR","features":[429]},{"name":"KSNODETYPE_VIDEO_STREAMING","features":[429]},{"name":"KSNODETYPE_VOLUME","features":[429]},{"name":"KSNODE_CREATE","features":[429]},{"name":"KSNOTIFICATIONID_AudioModule","features":[429]},{"name":"KSNOTIFICATIONID_SoundDetector","features":[429]},{"name":"KSPEEKOPERATION","features":[429]},{"name":"KSPIN_CINSTANCES","features":[429]},{"name":"KSPIN_COMMUNICATION","features":[429]},{"name":"KSPIN_COMMUNICATION_BOTH","features":[429]},{"name":"KSPIN_COMMUNICATION_BRIDGE","features":[429]},{"name":"KSPIN_COMMUNICATION_NONE","features":[429]},{"name":"KSPIN_COMMUNICATION_SINK","features":[429]},{"name":"KSPIN_COMMUNICATION_SOURCE","features":[429]},{"name":"KSPIN_CONNECT","features":[303,429]},{"name":"KSPIN_DATAFLOW","features":[429]},{"name":"KSPIN_DATAFLOW_IN","features":[429]},{"name":"KSPIN_DATAFLOW_OUT","features":[429]},{"name":"KSPIN_FLAG_ASYNCHRONOUS_PROCESSING","features":[429]},{"name":"KSPIN_FLAG_CRITICAL_PROCESSING","features":[429]},{"name":"KSPIN_FLAG_DENY_USERMODE_ACCESS","features":[429]},{"name":"KSPIN_FLAG_DISPATCH_LEVEL_PROCESSING","features":[429]},{"name":"KSPIN_FLAG_DISTINCT_TRAILING_EDGE","features":[429]},{"name":"KSPIN_FLAG_DO_NOT_INITIATE_PROCESSING","features":[429]},{"name":"KSPIN_FLAG_DO_NOT_USE_STANDARD_TRANSPORT","features":[429]},{"name":"KSPIN_FLAG_ENFORCE_FIFO","features":[429]},{"name":"KSPIN_FLAG_FIXED_FORMAT","features":[429]},{"name":"KSPIN_FLAG_FRAMES_NOT_REQUIRED_FOR_PROCESSING","features":[429]},{"name":"KSPIN_FLAG_GENERATE_EOS_EVENTS","features":[429]},{"name":"KSPIN_FLAG_GENERATE_MAPPINGS","features":[429]},{"name":"KSPIN_FLAG_HYPERCRITICAL_PROCESSING","features":[429]},{"name":"KSPIN_FLAG_IMPLEMENT_CLOCK","features":[429]},{"name":"KSPIN_FLAG_INITIATE_PROCESSING_ON_EVERY_ARRIVAL","features":[429]},{"name":"KSPIN_FLAG_PROCESS_IF_ANY_IN_RUN_STATE","features":[429]},{"name":"KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY","features":[429]},{"name":"KSPIN_FLAG_SOME_FRAMES_REQUIRED_FOR_PROCESSING","features":[429]},{"name":"KSPIN_FLAG_SPLITTER","features":[429]},{"name":"KSPIN_FLAG_USE_STANDARD_TRANSPORT","features":[429]},{"name":"KSPIN_MDL_CACHING_EVENT","features":[429]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION","features":[429]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION32","features":[429]},{"name":"KSPIN_MDL_CACHING_NOTIFY_ADDSAMPLE","features":[429]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_NOWAIT","features":[429]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_WAIT","features":[429]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANUP","features":[429]},{"name":"KSPIN_PHYSICALCONNECTION","features":[429]},{"name":"KSPPROPERTY_ALLOCATOR_MDLCACHING","features":[429]},{"name":"KSPRIORITY","features":[429]},{"name":"KSPRIORITY_EXCLUSIVE","features":[429]},{"name":"KSPRIORITY_HIGH","features":[429]},{"name":"KSPRIORITY_LOW","features":[429]},{"name":"KSPRIORITY_NORMAL","features":[429]},{"name":"KSPROBE_ALLOCATEMDL","features":[429]},{"name":"KSPROBE_ALLOWFORMATCHANGE","features":[429]},{"name":"KSPROBE_MODIFY","features":[429]},{"name":"KSPROBE_PROBEANDLOCK","features":[429]},{"name":"KSPROBE_STREAMREAD","features":[429]},{"name":"KSPROBE_STREAMWRITE","features":[429]},{"name":"KSPROBE_SYSTEMADDRESS","features":[429]},{"name":"KSPROPERTYSETID_ExtendedCameraControl","features":[429]},{"name":"KSPROPERTYSETID_NetworkCameraControl","features":[429]},{"name":"KSPROPERTYSETID_PerFrameSettingControl","features":[429]},{"name":"KSPROPERTY_AC3","features":[429]},{"name":"KSPROPERTY_AC3_ALTERNATE_AUDIO","features":[429]},{"name":"KSPROPERTY_AC3_BIT_STREAM_MODE","features":[429]},{"name":"KSPROPERTY_AC3_DIALOGUE_LEVEL","features":[429]},{"name":"KSPROPERTY_AC3_DOWNMIX","features":[429]},{"name":"KSPROPERTY_AC3_ERROR_CONCEALMENT","features":[429]},{"name":"KSPROPERTY_AC3_LANGUAGE_CODE","features":[429]},{"name":"KSPROPERTY_AC3_ROOM_TYPE","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CLEANUP_CACHEDMDLPAGES","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS_S","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE_S","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_HONOR_COUNT","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE","features":[429]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE_S","features":[429]},{"name":"KSPROPERTY_ATN_READER","features":[429]},{"name":"KSPROPERTY_AUDDECOUT","features":[429]},{"name":"KSPROPERTY_AUDDECOUT_CUR_MODE","features":[429]},{"name":"KSPROPERTY_AUDDECOUT_MODES","features":[429]},{"name":"KSPROPERTY_AUDIO","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_BUFFER_SIZE_RANGE","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_DESCRIPTOR","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICECONTROLS","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICEFORMAT","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_GFXENABLE","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_LFXENABLE","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_LOOPBACK_PROTECTION","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_MIXFORMAT","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_SUPPORTEDDEVICEFORMATS","features":[429]},{"name":"KSPROPERTY_AUDIOENGINE_VOLUMELEVEL","features":[429]},{"name":"KSPROPERTY_AUDIOMODULE","features":[429]},{"name":"KSPROPERTY_AUDIOMODULE_COMMAND","features":[429]},{"name":"KSPROPERTY_AUDIOMODULE_DESCRIPTORS","features":[429]},{"name":"KSPROPERTY_AUDIOMODULE_NOTIFICATION_DEVICE_ID","features":[429]},{"name":"KSPROPERTY_AUDIOPOSTURE","features":[429]},{"name":"KSPROPERTY_AUDIOPOSTURE_ORIENTATION","features":[429]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT","features":[429]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[429]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING","features":[429]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING_MODES","features":[429]},{"name":"KSPROPERTY_AUDIO_3D_INTERFACE","features":[429]},{"name":"KSPROPERTY_AUDIO_AGC","features":[429]},{"name":"KSPROPERTY_AUDIO_ALGORITHM_INSTANCE","features":[429]},{"name":"KSPROPERTY_AUDIO_BASS","features":[429]},{"name":"KSPROPERTY_AUDIO_BASS_BOOST","features":[429]},{"name":"KSPROPERTY_AUDIO_BUFFER_DURATION","features":[429]},{"name":"KSPROPERTY_AUDIO_CHANNEL_CONFIG","features":[429]},{"name":"KSPROPERTY_AUDIO_CHORUS_LEVEL","features":[429]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_DEPTH","features":[429]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_RATE","features":[429]},{"name":"KSPROPERTY_AUDIO_COPY_PROTECTION","features":[429]},{"name":"KSPROPERTY_AUDIO_CPU_RESOURCES","features":[429]},{"name":"KSPROPERTY_AUDIO_DELAY","features":[429]},{"name":"KSPROPERTY_AUDIO_DEMUX_DEST","features":[429]},{"name":"KSPROPERTY_AUDIO_DEV_SPECIFIC","features":[429]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_RANGE","features":[429]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_SAMPLING_RATE","features":[429]},{"name":"KSPROPERTY_AUDIO_EQ_BANDS","features":[429]},{"name":"KSPROPERTY_AUDIO_EQ_LEVEL","features":[429]},{"name":"KSPROPERTY_AUDIO_FILTER_STATE","features":[429]},{"name":"KSPROPERTY_AUDIO_LATENCY","features":[429]},{"name":"KSPROPERTY_AUDIO_LINEAR_BUFFER_POSITION","features":[429]},{"name":"KSPROPERTY_AUDIO_LOUDNESS","features":[429]},{"name":"KSPROPERTY_AUDIO_MANUFACTURE_GUID","features":[429]},{"name":"KSPROPERTY_AUDIO_MIC_ARRAY_GEOMETRY","features":[429]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY","features":[429]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY2","features":[429]},{"name":"KSPROPERTY_AUDIO_MIC_SNR","features":[429]},{"name":"KSPROPERTY_AUDIO_MID","features":[429]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_CAPS","features":[429]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_TABLE","features":[429]},{"name":"KSPROPERTY_AUDIO_MUTE","features":[429]},{"name":"KSPROPERTY_AUDIO_MUX_SOURCE","features":[429]},{"name":"KSPROPERTY_AUDIO_NUM_EQ_BANDS","features":[429]},{"name":"KSPROPERTY_AUDIO_PEAKMETER","features":[429]},{"name":"KSPROPERTY_AUDIO_PEAKMETER2","features":[429]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_CENTER_FREQ","features":[429]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_LEVEL","features":[429]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_Q_FACTOR","features":[429]},{"name":"KSPROPERTY_AUDIO_PEQ_MAX_BANDS","features":[429]},{"name":"KSPROPERTY_AUDIO_PEQ_NUM_BANDS","features":[429]},{"name":"KSPROPERTY_AUDIO_POSITION","features":[429]},{"name":"KSPROPERTY_AUDIO_POSITIONEX","features":[429]},{"name":"KSPROPERTY_AUDIO_PREFERRED_STATUS","features":[429]},{"name":"KSPROPERTY_AUDIO_PRESENTATION_POSITION","features":[429]},{"name":"KSPROPERTY_AUDIO_PRODUCT_GUID","features":[429]},{"name":"KSPROPERTY_AUDIO_QUALITY","features":[429]},{"name":"KSPROPERTY_AUDIO_REVERB_DELAY_FEEDBACK","features":[429]},{"name":"KSPROPERTY_AUDIO_REVERB_LEVEL","features":[429]},{"name":"KSPROPERTY_AUDIO_REVERB_TIME","features":[429]},{"name":"KSPROPERTY_AUDIO_SAMPLING_RATE","features":[429]},{"name":"KSPROPERTY_AUDIO_STEREO_ENHANCE","features":[429]},{"name":"KSPROPERTY_AUDIO_STEREO_SPEAKER_GEOMETRY","features":[429]},{"name":"KSPROPERTY_AUDIO_SURROUND_ENCODE","features":[429]},{"name":"KSPROPERTY_AUDIO_TREBLE","features":[429]},{"name":"KSPROPERTY_AUDIO_VOLUMELEVEL","features":[429]},{"name":"KSPROPERTY_AUDIO_VOLUMELIMIT_ENGAGED","features":[429]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_LASTBUFFER_POSITION","features":[429]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_POSITION","features":[429]},{"name":"KSPROPERTY_AUDIO_WIDENESS","features":[429]},{"name":"KSPROPERTY_AUDIO_WIDE_MODE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYGEOGRAPHIC","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYPERSONALNAME","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYRELATED","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTITLE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTOPICALTERM","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYUNIFORMTITLE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDFORMAVAILABLE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_AWARDS","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_BIBLIOGRAPHYNOTE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CATALOGINGSOURCE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CITATION","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CONTENTSNOTE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CREATIONCREDIT","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_GENERALNOTE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMCURRICULUM","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMGENRE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISBN","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISSN","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LCCN","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LEADER","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINCORPORATEBODY","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINMEETINGNAME","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINPERSONALNAME","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINUNIFORMTITLE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PARTICIPANT","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PHYSICALDESCRIPTION","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PUBLICATION","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENT","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTPERSONALNAME","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTUNIFORMTITLE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SUMMARY","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SYSTEMDETAILS","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TARGETAUDIENCE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TITLESTATEMENT","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_UNIFORMTITLE","features":[429]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_VARYINGFORMTITLE","features":[429]},{"name":"KSPROPERTY_BOUNDS_LONG","features":[429]},{"name":"KSPROPERTY_BOUNDS_LONGLONG","features":[429]},{"name":"KSPROPERTY_BTAUDIO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_AUTO_EXPOSURE_PRIORITY","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ADVANCEDPHOTO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_BACKGROUNDSEGMENTATION","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_CAMERAANGLEOFFSET","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW_CONFIGCAPS","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END2","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EVCOMPENSATION","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EXPOSUREMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EYEGAZECORRECTION","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEAUTH_MODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEDETECTION","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FIELDOFVIEW","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FLASHMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSPRIORITY","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSSTATE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_HISTOGRAM","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_IRTORCHMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO_ADVANCED","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MAXVIDFPS_PHOTORES","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MCC","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_METADATA","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OIS","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OPTIMIZATIONHINT","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOCONFIRMATION","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOFRAMERATE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMAXFRAMERATE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTHUMBNAIL","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTRIGGERTIME","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROFILE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROPERTY","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_RELATIVEPANELOPTIMIZATION","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_CONFIGCAPS","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_ISPCONTROL","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SCENEMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SECURE_MODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_TORCHMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VFR","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOHDR","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOSTABILIZATION","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOTEMPORALDENOISING","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WARMSTART","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WHITEBALANCEMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ZOOM","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ABSOLUTE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ASYNCHRONOUS","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_AUTO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_MANUAL","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_AUTO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_AUTO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_MANUAL","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_OFF","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_ON","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_PROPERTY_ID","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_S","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH_S","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_EXCLUSIVE_WITH_RECORD","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_PROPERTY_ID","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_S","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_SEQUENCE_EXCLUSIVE_WITH_RECORD","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_FOCAL_LENGTH_S","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S2","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PAN","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PAN_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CAPABILITY","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CLEAR","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_PROPERTY","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_SET","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_PRIVACY","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_EXPOSURE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_FOCUS","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_WB","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONVERGEMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_ASYNC","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_AUTO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_MANUAL","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_PROPERTY_ID","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_S","features":[303,429]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_S","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_S2","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_SCANMODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_S_EX","features":[303,429]},{"name":"KSPROPERTY_CAMERACONTROL_TILT","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_TILT_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_AUTO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_AUTO","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_MANUAL","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_HIGH","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_LOW","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_MEDIUM","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_OFF","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_S","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE_PROPERTY_ID","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM","features":[429]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM_RELATIVE","features":[429]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_CLEAR","features":[429]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_FLAGS","features":[429]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_SET","features":[429]},{"name":"KSPROPERTY_CLOCK","features":[429]},{"name":"KSPROPERTY_CLOCK_CORRELATEDPHYSICALTIME","features":[429]},{"name":"KSPROPERTY_CLOCK_CORRELATEDTIME","features":[429]},{"name":"KSPROPERTY_CLOCK_PHYSICALTIME","features":[429]},{"name":"KSPROPERTY_CLOCK_RESOLUTION","features":[429]},{"name":"KSPROPERTY_CLOCK_STATE","features":[429]},{"name":"KSPROPERTY_CLOCK_TIME","features":[429]},{"name":"KSPROPERTY_CONNECTION","features":[429]},{"name":"KSPROPERTY_CONNECTION_ACQUIREORDERING","features":[429]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING","features":[429]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING_EX","features":[429]},{"name":"KSPROPERTY_CONNECTION_DATAFORMAT","features":[429]},{"name":"KSPROPERTY_CONNECTION_PRIORITY","features":[429]},{"name":"KSPROPERTY_CONNECTION_PROPOSEDATAFORMAT","features":[429]},{"name":"KSPROPERTY_CONNECTION_STARTAT","features":[429]},{"name":"KSPROPERTY_CONNECTION_STATE","features":[429]},{"name":"KSPROPERTY_COPYPROT","features":[429]},{"name":"KSPROPERTY_COPY_MACROVISION","features":[429]},{"name":"KSPROPERTY_CROSSBAR_ACTIVE_S","features":[429]},{"name":"KSPROPERTY_CROSSBAR_CAN_ROUTE","features":[429]},{"name":"KSPROPERTY_CROSSBAR_CAPS","features":[429]},{"name":"KSPROPERTY_CROSSBAR_CAPS_S","features":[429]},{"name":"KSPROPERTY_CROSSBAR_INPUT_ACTIVE","features":[429]},{"name":"KSPROPERTY_CROSSBAR_PININFO","features":[429]},{"name":"KSPROPERTY_CROSSBAR_PININFO_S","features":[429]},{"name":"KSPROPERTY_CROSSBAR_ROUTE","features":[429]},{"name":"KSPROPERTY_CROSSBAR_ROUTE_S","features":[429]},{"name":"KSPROPERTY_CURRENT_CAPTURE_SURFACE","features":[429]},{"name":"KSPROPERTY_CYCLIC","features":[429]},{"name":"KSPROPERTY_CYCLIC_POSITION","features":[429]},{"name":"KSPROPERTY_DESCRIPTION","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_ALL","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEANGLES","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEORIENTATION","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEOUTSIDEVOLUME","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MAXDISTANCE","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MINDISTANCE","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MODE","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_POSITION","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_VELOCITY","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALL","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALLOCATION","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_BATCH","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DISTANCEFACTOR","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DOPPLERFACTOR","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ORIENTATION","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_POSITION","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ROLLOFFFACTOR","features":[429]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_VELOCITY","features":[429]},{"name":"KSPROPERTY_DISPLAY_ADAPTER_GUID","features":[429]},{"name":"KSPROPERTY_DRMAUDIOSTREAM","features":[429]},{"name":"KSPROPERTY_DRMAUDIOSTREAM_CONTENTID","features":[429]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT","features":[429]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT_S","features":[429]},{"name":"KSPROPERTY_DVDCOPY_CHLG_KEY","features":[429]},{"name":"KSPROPERTY_DVDCOPY_DEC_KEY2","features":[429]},{"name":"KSPROPERTY_DVDCOPY_DISC_KEY","features":[429]},{"name":"KSPROPERTY_DVDCOPY_DVD_KEY1","features":[429]},{"name":"KSPROPERTY_DVDCOPY_REGION","features":[429]},{"name":"KSPROPERTY_DVDCOPY_SET_COPY_STATE","features":[429]},{"name":"KSPROPERTY_DVDCOPY_TITLE_KEY","features":[429]},{"name":"KSPROPERTY_DVDSUBPIC","features":[429]},{"name":"KSPROPERTY_DVDSUBPIC_COMPOSIT_ON","features":[429]},{"name":"KSPROPERTY_DVDSUBPIC_HLI","features":[429]},{"name":"KSPROPERTY_DVDSUBPIC_PALETTE","features":[429]},{"name":"KSPROPERTY_EXTDEVICE","features":[429]},{"name":"KSPROPERTY_EXTDEVICE_CAPABILITIES","features":[429]},{"name":"KSPROPERTY_EXTDEVICE_ID","features":[429]},{"name":"KSPROPERTY_EXTDEVICE_PORT","features":[429]},{"name":"KSPROPERTY_EXTDEVICE_POWER_STATE","features":[429]},{"name":"KSPROPERTY_EXTDEVICE_S","features":[429]},{"name":"KSPROPERTY_EXTDEVICE_VERSION","features":[429]},{"name":"KSPROPERTY_EXTENSION_UNIT","features":[429]},{"name":"KSPROPERTY_EXTENSION_UNIT_CONTROL","features":[429]},{"name":"KSPROPERTY_EXTENSION_UNIT_INFO","features":[429]},{"name":"KSPROPERTY_EXTENSION_UNIT_PASS_THROUGH","features":[429]},{"name":"KSPROPERTY_EXTXPORT","features":[429]},{"name":"KSPROPERTY_EXTXPORT_ATN_SEARCH","features":[429]},{"name":"KSPROPERTY_EXTXPORT_CAPABILITIES","features":[429]},{"name":"KSPROPERTY_EXTXPORT_INPUT_SIGNAL_MODE","features":[429]},{"name":"KSPROPERTY_EXTXPORT_LOAD_MEDIUM","features":[429]},{"name":"KSPROPERTY_EXTXPORT_MEDIUM_INFO","features":[429]},{"name":"KSPROPERTY_EXTXPORT_NODE_S","features":[303,429]},{"name":"KSPROPERTY_EXTXPORT_OUTPUT_SIGNAL_MODE","features":[429]},{"name":"KSPROPERTY_EXTXPORT_RTC_SEARCH","features":[429]},{"name":"KSPROPERTY_EXTXPORT_S","features":[303,429]},{"name":"KSPROPERTY_EXTXPORT_STATE","features":[429]},{"name":"KSPROPERTY_EXTXPORT_STATE_NOTIFY","features":[429]},{"name":"KSPROPERTY_EXTXPORT_TIMECODE_SEARCH","features":[429]},{"name":"KSPROPERTY_FMRX_ANTENNAENDPOINTID","features":[429]},{"name":"KSPROPERTY_FMRX_CONTROL","features":[429]},{"name":"KSPROPERTY_FMRX_ENDPOINTID","features":[429]},{"name":"KSPROPERTY_FMRX_STATE","features":[429]},{"name":"KSPROPERTY_FMRX_TOPOLOGY","features":[429]},{"name":"KSPROPERTY_FMRX_VOLUME","features":[429]},{"name":"KSPROPERTY_GENERAL","features":[429]},{"name":"KSPROPERTY_GENERAL_COMPONENTID","features":[429]},{"name":"KSPROPERTY_HRTF3D","features":[429]},{"name":"KSPROPERTY_HRTF3D_FILTER_FORMAT","features":[429]},{"name":"KSPROPERTY_HRTF3D_INITIALIZE","features":[429]},{"name":"KSPROPERTY_HRTF3D_PARAMS","features":[429]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO","features":[429]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO_FORMATINFORMATION","features":[429]},{"name":"KSPROPERTY_ITD3D","features":[429]},{"name":"KSPROPERTY_ITD3D_PARAMS","features":[429]},{"name":"KSPROPERTY_JACK","features":[429]},{"name":"KSPROPERTY_JACK_CONTAINERID","features":[429]},{"name":"KSPROPERTY_JACK_DESCRIPTION","features":[429]},{"name":"KSPROPERTY_JACK_DESCRIPTION2","features":[429]},{"name":"KSPROPERTY_JACK_DESCRIPTION3","features":[429]},{"name":"KSPROPERTY_JACK_SINK_INFO","features":[429]},{"name":"KSPROPERTY_MAP_CAPTURE_HANDLE_TO_VRAM_ADDRESS","features":[429]},{"name":"KSPROPERTY_MEDIAAVAILABLE","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_AVAILABLE","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_CAPABILITIES","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_CONVERTTIMEFORMAT","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_DURATION","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_FORMATS","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_POSITION","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_POSITIONS","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_PREROLL","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_STOPPOSITION","features":[429]},{"name":"KSPROPERTY_MEDIASEEKING_TIMEFORMAT","features":[429]},{"name":"KSPROPERTY_MEMBERSHEADER","features":[429]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_MULTICHANNEL","features":[429]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_UNIFORM","features":[429]},{"name":"KSPROPERTY_MEMBER_FLAG_DEFAULT","features":[429]},{"name":"KSPROPERTY_MEMBER_RANGES","features":[429]},{"name":"KSPROPERTY_MEMBER_STEPPEDRANGES","features":[429]},{"name":"KSPROPERTY_MEMBER_VALUES","features":[429]},{"name":"KSPROPERTY_MEMORY_TRANSPORT","features":[429]},{"name":"KSPROPERTY_MPEG2VID","features":[429]},{"name":"KSPROPERTY_MPEG2VID_16_9_PANSCAN","features":[429]},{"name":"KSPROPERTY_MPEG2VID_16_9_RECT","features":[429]},{"name":"KSPROPERTY_MPEG2VID_4_3_RECT","features":[429]},{"name":"KSPROPERTY_MPEG2VID_CUR_MODE","features":[429]},{"name":"KSPROPERTY_MPEG2VID_MODES","features":[429]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_ATTRIBUTES","features":[429]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_SD_BOX","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENTTOPICS_XML","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENT_INFO","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_INFO","features":[303,429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE_EVENTSINFO","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTP","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_HEADER","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_CUSTOM","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_DISABLE","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_HOSTNTP","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_PROPERTY","features":[429]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_URI","features":[429]},{"name":"KSPROPERTY_ONESHOT_DISCONNECT","features":[429]},{"name":"KSPROPERTY_ONESHOT_RECONNECT","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE_CLIPLIST","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORKEY","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORREF","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE_DISPLAYCHANGE","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE_INTERESTS","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE_PALETTE","features":[429]},{"name":"KSPROPERTY_OVERLAYUPDATE_VIDEOPOSITION","features":[429]},{"name":"KSPROPERTY_PIN","features":[429]},{"name":"KSPROPERTY_PIN_CATEGORY","features":[429]},{"name":"KSPROPERTY_PIN_CINSTANCES","features":[429]},{"name":"KSPROPERTY_PIN_COMMUNICATION","features":[429]},{"name":"KSPROPERTY_PIN_CONSTRAINEDDATARANGES","features":[429]},{"name":"KSPROPERTY_PIN_CTYPES","features":[429]},{"name":"KSPROPERTY_PIN_DATAFLOW","features":[429]},{"name":"KSPROPERTY_PIN_DATAINTERSECTION","features":[429]},{"name":"KSPROPERTY_PIN_DATARANGES","features":[429]},{"name":"KSPROPERTY_PIN_FLAGS_ATTRIBUTE_RANGE_AWARE","features":[429]},{"name":"KSPROPERTY_PIN_FLAGS_MASK","features":[429]},{"name":"KSPROPERTY_PIN_GLOBALCINSTANCES","features":[429]},{"name":"KSPROPERTY_PIN_INTERFACES","features":[429]},{"name":"KSPROPERTY_PIN_MEDIUMS","features":[429]},{"name":"KSPROPERTY_PIN_MODEDATAFORMATS","features":[429]},{"name":"KSPROPERTY_PIN_NAME","features":[429]},{"name":"KSPROPERTY_PIN_NECESSARYINSTANCES","features":[429]},{"name":"KSPROPERTY_PIN_PHYSICALCONNECTION","features":[429]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT","features":[429]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT2","features":[429]},{"name":"KSPROPERTY_POSITIONS","features":[429]},{"name":"KSPROPERTY_PREFERRED_CAPTURE_SURFACE","features":[429]},{"name":"KSPROPERTY_QUALITY","features":[429]},{"name":"KSPROPERTY_QUALITY_ERROR","features":[429]},{"name":"KSPROPERTY_QUALITY_REPORT","features":[429]},{"name":"KSPROPERTY_RAW_AVC_CMD","features":[429]},{"name":"KSPROPERTY_RTAUDIO","features":[429]},{"name":"KSPROPERTY_RTAUDIO_BUFFER","features":[429]},{"name":"KSPROPERTY_RTAUDIO_BUFFER_WITH_NOTIFICATION","features":[429]},{"name":"KSPROPERTY_RTAUDIO_CLOCKREGISTER","features":[429]},{"name":"KSPROPERTY_RTAUDIO_GETPOSITIONFUNCTION","features":[429]},{"name":"KSPROPERTY_RTAUDIO_GETREADPACKET","features":[429]},{"name":"KSPROPERTY_RTAUDIO_HWLATENCY","features":[429]},{"name":"KSPROPERTY_RTAUDIO_PACKETCOUNT","features":[429]},{"name":"KSPROPERTY_RTAUDIO_PACKETVREGISTER","features":[429]},{"name":"KSPROPERTY_RTAUDIO_POSITIONREGISTER","features":[429]},{"name":"KSPROPERTY_RTAUDIO_PRESENTATION_POSITION","features":[429]},{"name":"KSPROPERTY_RTAUDIO_QUERY_NOTIFICATION_SUPPORT","features":[429]},{"name":"KSPROPERTY_RTAUDIO_REGISTER_NOTIFICATION_EVENT","features":[429]},{"name":"KSPROPERTY_RTAUDIO_SETWRITEPACKET","features":[429]},{"name":"KSPROPERTY_RTAUDIO_UNREGISTER_NOTIFICATION_EVENT","features":[429]},{"name":"KSPROPERTY_RTC_READER","features":[429]},{"name":"KSPROPERTY_SELECTOR_NODE_S","features":[429]},{"name":"KSPROPERTY_SELECTOR_NUM_SOURCES","features":[429]},{"name":"KSPROPERTY_SELECTOR_S","features":[429]},{"name":"KSPROPERTY_SELECTOR_SOURCE_NODE_ID","features":[429]},{"name":"KSPROPERTY_SERIAL","features":[429]},{"name":"KSPROPERTY_SERIALHDR","features":[429]},{"name":"KSPROPERTY_SOUNDDETECTOR","features":[429]},{"name":"KSPROPERTY_SOUNDDETECTOR_ARMED","features":[429]},{"name":"KSPROPERTY_SOUNDDETECTOR_MATCHRESULT","features":[429]},{"name":"KSPROPERTY_SOUNDDETECTOR_PATTERNS","features":[429]},{"name":"KSPROPERTY_SOUNDDETECTOR_RESET","features":[429]},{"name":"KSPROPERTY_SOUNDDETECTOR_STREAMINGSUPPORT","features":[429]},{"name":"KSPROPERTY_SOUNDDETECTOR_SUPPORTEDPATTERNS","features":[429]},{"name":"KSPROPERTY_SPHLI","features":[429]},{"name":"KSPROPERTY_SPPAL","features":[429]},{"name":"KSPROPERTY_STEPPING_LONG","features":[429]},{"name":"KSPROPERTY_STEPPING_LONGLONG","features":[429]},{"name":"KSPROPERTY_STREAM","features":[429]},{"name":"KSPROPERTY_STREAMINTERFACE","features":[429]},{"name":"KSPROPERTY_STREAMINTERFACE_HEADERSIZE","features":[429]},{"name":"KSPROPERTY_STREAM_ALLOCATOR","features":[429]},{"name":"KSPROPERTY_STREAM_DEGRADATION","features":[429]},{"name":"KSPROPERTY_STREAM_FRAMETIME","features":[429]},{"name":"KSPROPERTY_STREAM_MASTERCLOCK","features":[429]},{"name":"KSPROPERTY_STREAM_PIPE_ID","features":[429]},{"name":"KSPROPERTY_STREAM_PRESENTATIONEXTENT","features":[429]},{"name":"KSPROPERTY_STREAM_PRESENTATIONTIME","features":[429]},{"name":"KSPROPERTY_STREAM_QUALITY","features":[429]},{"name":"KSPROPERTY_STREAM_RATE","features":[429]},{"name":"KSPROPERTY_STREAM_RATECAPABILITY","features":[429]},{"name":"KSPROPERTY_STREAM_TIMEFORMAT","features":[429]},{"name":"KSPROPERTY_TELEPHONY_CALLCONTROL","features":[429]},{"name":"KSPROPERTY_TELEPHONY_CALLHOLD","features":[429]},{"name":"KSPROPERTY_TELEPHONY_CALLINFO","features":[429]},{"name":"KSPROPERTY_TELEPHONY_CONTROL","features":[429]},{"name":"KSPROPERTY_TELEPHONY_ENDPOINTIDPAIR","features":[429]},{"name":"KSPROPERTY_TELEPHONY_MUTE_TX","features":[429]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERCHANGE","features":[429]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERID","features":[429]},{"name":"KSPROPERTY_TELEPHONY_TOPOLOGY","features":[429]},{"name":"KSPROPERTY_TELEPHONY_VOLUME","features":[429]},{"name":"KSPROPERTY_TIMECODE","features":[429]},{"name":"KSPROPERTY_TIMECODE_NODE_S","features":[429]},{"name":"KSPROPERTY_TIMECODE_READER","features":[429]},{"name":"KSPROPERTY_TIMECODE_S","features":[429]},{"name":"KSPROPERTY_TOPOLOGY","features":[429]},{"name":"KSPROPERTY_TOPOLOGYNODE","features":[429]},{"name":"KSPROPERTY_TOPOLOGYNODE_ENABLE","features":[429]},{"name":"KSPROPERTY_TOPOLOGYNODE_RESET","features":[429]},{"name":"KSPROPERTY_TOPOLOGY_CATEGORIES","features":[429]},{"name":"KSPROPERTY_TOPOLOGY_CONNECTIONS","features":[429]},{"name":"KSPROPERTY_TOPOLOGY_NAME","features":[429]},{"name":"KSPROPERTY_TOPOLOGY_NODES","features":[429]},{"name":"KSPROPERTY_TUNER","features":[429]},{"name":"KSPROPERTY_TUNER_CAPS","features":[429]},{"name":"KSPROPERTY_TUNER_CAPS_S","features":[429]},{"name":"KSPROPERTY_TUNER_FREQUENCY","features":[429]},{"name":"KSPROPERTY_TUNER_FREQUENCY_S","features":[429]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM","features":[429]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM_S","features":[429]},{"name":"KSPROPERTY_TUNER_INPUT","features":[429]},{"name":"KSPROPERTY_TUNER_INPUT_S","features":[429]},{"name":"KSPROPERTY_TUNER_MODE","features":[429]},{"name":"KSPROPERTY_TUNER_MODES","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_AM_RADIO","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_ATSC","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_CAPS","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_CAPS_S","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_DSS","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_FM_RADIO","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_S","features":[429]},{"name":"KSPROPERTY_TUNER_MODE_TV","features":[429]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS","features":[429]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS_S","features":[429]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS","features":[429]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS_S","features":[303,429]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS","features":[429]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS_S","features":[429]},{"name":"KSPROPERTY_TUNER_STANDARD","features":[429]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE","features":[429]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE_S","features":[303,429]},{"name":"KSPROPERTY_TUNER_STANDARD_S","features":[429]},{"name":"KSPROPERTY_TUNER_STATUS","features":[429]},{"name":"KSPROPERTY_TUNER_STATUS_S","features":[429]},{"name":"KSPROPERTY_TVAUDIO_CAPS","features":[429]},{"name":"KSPROPERTY_TVAUDIO_CAPS_S","features":[429]},{"name":"KSPROPERTY_TVAUDIO_CURRENTLY_AVAILABLE_MODES","features":[429]},{"name":"KSPROPERTY_TVAUDIO_MODE","features":[429]},{"name":"KSPROPERTY_TVAUDIO_S","features":[429]},{"name":"KSPROPERTY_TYPE_BASICSUPPORT","features":[429]},{"name":"KSPROPERTY_TYPE_COPYPAYLOAD","features":[429]},{"name":"KSPROPERTY_TYPE_DEFAULTVALUES","features":[429]},{"name":"KSPROPERTY_TYPE_FSFILTERSCOPE","features":[429]},{"name":"KSPROPERTY_TYPE_GET","features":[429]},{"name":"KSPROPERTY_TYPE_GETPAYLOADSIZE","features":[429]},{"name":"KSPROPERTY_TYPE_HIGHPRIORITY","features":[429]},{"name":"KSPROPERTY_TYPE_RELATIONS","features":[429]},{"name":"KSPROPERTY_TYPE_SERIALIZERAW","features":[429]},{"name":"KSPROPERTY_TYPE_SERIALIZESET","features":[429]},{"name":"KSPROPERTY_TYPE_SERIALIZESIZE","features":[429]},{"name":"KSPROPERTY_TYPE_SET","features":[429]},{"name":"KSPROPERTY_TYPE_SETSUPPORT","features":[429]},{"name":"KSPROPERTY_TYPE_TOPOLOGY","features":[429]},{"name":"KSPROPERTY_TYPE_UNSERIALIZERAW","features":[429]},{"name":"KSPROPERTY_TYPE_UNSERIALIZESET","features":[429]},{"name":"KSPROPERTY_VBICAP","features":[429]},{"name":"KSPROPERTY_VBICAP_PROPERTIES_PROTECTION","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_CC_SUBSTREAMS_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_NABTS_SUBSTREAMS_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_DISCOVERED_BIT_ARRAY","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_REQUESTED_BIT_ARRAY","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_PIN_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_PIN_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_PIN_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_S","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_DISCOVERED_BIT_ARRAY","features":[429]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_REQUESTED_BIT_ARRAY","features":[429]},{"name":"KSPROPERTY_VIDCAP_CAMERACONTROL","features":[429]},{"name":"KSPROPERTY_VIDCAP_CROSSBAR","features":[429]},{"name":"KSPROPERTY_VIDCAP_DROPPEDFRAMES","features":[429]},{"name":"KSPROPERTY_VIDCAP_SELECTOR","features":[429]},{"name":"KSPROPERTY_VIDCAP_TVAUDIO","features":[429]},{"name":"KSPROPERTY_VIDCAP_VIDEOCOMPRESSION","features":[429]},{"name":"KSPROPERTY_VIDCAP_VIDEOCONTROL","features":[429]},{"name":"KSPROPERTY_VIDCAP_VIDEODECODER","features":[429]},{"name":"KSPROPERTY_VIDCAP_VIDEOENCODER","features":[429]},{"name":"KSPROPERTY_VIDCAP_VIDEOPROCAMP","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO_S","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_KEYFRAME_RATE","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_FRAME_SIZE","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_KEYFRAME","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_PFRAMES_PER_KEYFRAME","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_QUALITY","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S1","features":[429]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_WINDOWSIZE","features":[429]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE","features":[429]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE_S","features":[303,429]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS","features":[429]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS_S","features":[429]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES","features":[429]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES_S","features":[303,429]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE","features":[429]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE_S","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_CAPS","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_CAPS_S","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_OUTPUT_ENABLE","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_S","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_STANDARD","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_STATUS","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2_S","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_STATUS_S","features":[429]},{"name":"KSPROPERTY_VIDEODECODER_VCR_TIMING","features":[429]},{"name":"KSPROPERTY_VIDEOENCODER_CAPS","features":[429]},{"name":"KSPROPERTY_VIDEOENCODER_CC_ENABLE","features":[429]},{"name":"KSPROPERTY_VIDEOENCODER_COPYPROTECTION","features":[429]},{"name":"KSPROPERTY_VIDEOENCODER_S","features":[429]},{"name":"KSPROPERTY_VIDEOENCODER_STANDARD","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_BACKLIGHT_COMPENSATION","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_BRIGHTNESS","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_COLORENABLE","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_CONTRAST","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER_LIMIT","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_AUTO","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_MANUAL","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAIN","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAMMA","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_HUE","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S2","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_POWERLINE_FREQUENCY","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_S","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_S2","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_SATURATION","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_SHARPNESS","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE","features":[429]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE_COMPONENT","features":[429]},{"name":"KSPROPERTY_VIDMEM_TRANSPORT","features":[429]},{"name":"KSPROPERTY_VPCONFIG","features":[429]},{"name":"KSPROPERTY_VPCONFIG_DDRAWHANDLE","features":[429]},{"name":"KSPROPERTY_VPCONFIG_DDRAWSURFACEHANDLE","features":[429]},{"name":"KSPROPERTY_VPCONFIG_DECIMATIONCAPABILITY","features":[429]},{"name":"KSPROPERTY_VPCONFIG_GETCONNECTINFO","features":[429]},{"name":"KSPROPERTY_VPCONFIG_GETVIDEOFORMAT","features":[429]},{"name":"KSPROPERTY_VPCONFIG_INFORMVPINPUT","features":[429]},{"name":"KSPROPERTY_VPCONFIG_INVERTPOLARITY","features":[429]},{"name":"KSPROPERTY_VPCONFIG_MAXPIXELRATE","features":[429]},{"name":"KSPROPERTY_VPCONFIG_NUMCONNECTINFO","features":[429]},{"name":"KSPROPERTY_VPCONFIG_NUMVIDEOFORMAT","features":[429]},{"name":"KSPROPERTY_VPCONFIG_SCALEFACTOR","features":[429]},{"name":"KSPROPERTY_VPCONFIG_SETCONNECTINFO","features":[429]},{"name":"KSPROPERTY_VPCONFIG_SETVIDEOFORMAT","features":[429]},{"name":"KSPROPERTY_VPCONFIG_SURFACEPARAMS","features":[429]},{"name":"KSPROPERTY_VPCONFIG_VIDEOPORTID","features":[429]},{"name":"KSPROPERTY_VPCONFIG_VPDATAINFO","features":[429]},{"name":"KSPROPERTY_WAVE","features":[429]},{"name":"KSPROPERTY_WAVE_BUFFER","features":[429]},{"name":"KSPROPERTY_WAVE_COMPATIBLE_CAPABILITIES","features":[429]},{"name":"KSPROPERTY_WAVE_FREQUENCY","features":[429]},{"name":"KSPROPERTY_WAVE_INPUT_CAPABILITIES","features":[429]},{"name":"KSPROPERTY_WAVE_OUTPUT_CAPABILITIES","features":[429]},{"name":"KSPROPERTY_WAVE_PAN","features":[429]},{"name":"KSPROPERTY_WAVE_QUEUED_POSITION","features":[429]},{"name":"KSPROPERTY_WAVE_VOLUME","features":[429]},{"name":"KSPROPSETID_AC3","features":[429]},{"name":"KSPROPSETID_Audio","features":[429]},{"name":"KSPROPSETID_AudioBufferDuration","features":[429]},{"name":"KSPROPSETID_AudioDecoderOut","features":[429]},{"name":"KSPROPSETID_AudioEngine","features":[429]},{"name":"KSPROPSETID_AudioModule","features":[429]},{"name":"KSPROPSETID_AudioPosture","features":[429]},{"name":"KSPROPSETID_AudioResourceManagement","features":[429]},{"name":"KSPROPSETID_AudioSignalProcessing","features":[429]},{"name":"KSPROPSETID_Bibliographic","features":[429]},{"name":"KSPROPSETID_BtAudio","features":[429]},{"name":"KSPROPSETID_Clock","features":[429]},{"name":"KSPROPSETID_Connection","features":[429]},{"name":"KSPROPSETID_CopyProt","features":[429]},{"name":"KSPROPSETID_Cyclic","features":[429]},{"name":"KSPROPSETID_DirectSound3DBuffer","features":[429]},{"name":"KSPROPSETID_DirectSound3DListener","features":[429]},{"name":"KSPROPSETID_DrmAudioStream","features":[429]},{"name":"KSPROPSETID_DvdSubPic","features":[429]},{"name":"KSPROPSETID_FMRXControl","features":[429]},{"name":"KSPROPSETID_FMRXTopology","features":[429]},{"name":"KSPROPSETID_General","features":[429]},{"name":"KSPROPSETID_Hrtf3d","features":[429]},{"name":"KSPROPSETID_InterleavedAudio","features":[429]},{"name":"KSPROPSETID_Itd3d","features":[429]},{"name":"KSPROPSETID_Jack","features":[429]},{"name":"KSPROPSETID_MPEG4_MediaType_Attributes","features":[429]},{"name":"KSPROPSETID_MediaSeeking","features":[429]},{"name":"KSPROPSETID_MemoryTransport","features":[429]},{"name":"KSPROPSETID_Mpeg2Vid","features":[429]},{"name":"KSPROPSETID_OverlayUpdate","features":[429]},{"name":"KSPROPSETID_Pin","features":[429]},{"name":"KSPROPSETID_PinMDLCacheClearProp","features":[429]},{"name":"KSPROPSETID_Quality","features":[429]},{"name":"KSPROPSETID_RtAudio","features":[429]},{"name":"KSPROPSETID_SoundDetector","features":[429]},{"name":"KSPROPSETID_SoundDetector2","features":[429]},{"name":"KSPROPSETID_Stream","features":[429]},{"name":"KSPROPSETID_StreamAllocator","features":[429]},{"name":"KSPROPSETID_StreamInterface","features":[429]},{"name":"KSPROPSETID_TSRateChange","features":[429]},{"name":"KSPROPSETID_TelephonyControl","features":[429]},{"name":"KSPROPSETID_TelephonyTopology","features":[429]},{"name":"KSPROPSETID_Topology","features":[429]},{"name":"KSPROPSETID_TopologyNode","features":[429]},{"name":"KSPROPSETID_VBICAP_PROPERTIES","features":[429]},{"name":"KSPROPSETID_VBICodecFiltering","features":[429]},{"name":"KSPROPSETID_VPConfig","features":[429]},{"name":"KSPROPSETID_VPVBIConfig","features":[429]},{"name":"KSPROPSETID_VramCapture","features":[429]},{"name":"KSPROPSETID_Wave","features":[429]},{"name":"KSPROPTYPESETID_General","features":[429]},{"name":"KSP_NODE","features":[429]},{"name":"KSP_PIN","features":[429]},{"name":"KSP_TIMEFORMAT","features":[429]},{"name":"KSQUALITY","features":[429]},{"name":"KSQUALITY_MANAGER","features":[303,429]},{"name":"KSQUERYBUFFER","features":[303,429]},{"name":"KSRATE","features":[429]},{"name":"KSRATE_CAPABILITY","features":[429]},{"name":"KSRATE_NOPRESENTATIONDURATION","features":[429]},{"name":"KSRATE_NOPRESENTATIONSTART","features":[429]},{"name":"KSRELATIVEEVENT","features":[303,429]},{"name":"KSRELATIVEEVENT_FLAG_HANDLE","features":[429]},{"name":"KSRELATIVEEVENT_FLAG_POINTER","features":[429]},{"name":"KSRESET","features":[429]},{"name":"KSRESET_BEGIN","features":[429]},{"name":"KSRESET_END","features":[429]},{"name":"KSRESOLUTION","features":[429]},{"name":"KSRTAUDIO_BUFFER","features":[303,429]},{"name":"KSRTAUDIO_BUFFER32","features":[303,429]},{"name":"KSRTAUDIO_BUFFER_PROPERTY","features":[429]},{"name":"KSRTAUDIO_BUFFER_PROPERTY32","features":[429]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION","features":[429]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION32","features":[429]},{"name":"KSRTAUDIO_GETREADPACKET_INFO","features":[303,429]},{"name":"KSRTAUDIO_HWLATENCY","features":[429]},{"name":"KSRTAUDIO_HWREGISTER","features":[429]},{"name":"KSRTAUDIO_HWREGISTER32","features":[429]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY","features":[429]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY32","features":[429]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY","features":[303,429]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY32","features":[429]},{"name":"KSRTAUDIO_PACKETVREGISTER","features":[429]},{"name":"KSRTAUDIO_PACKETVREGISTER_PROPERTY","features":[429]},{"name":"KSRTAUDIO_SETWRITEPACKET_INFO","features":[429]},{"name":"KSSOUNDDETECTORPROPERTY","features":[429]},{"name":"KSSTATE","features":[429]},{"name":"KSSTATE_ACQUIRE","features":[429]},{"name":"KSSTATE_PAUSE","features":[429]},{"name":"KSSTATE_RUN","features":[429]},{"name":"KSSTATE_STOP","features":[429]},{"name":"KSSTREAMALLOCATOR_STATUS","features":[429]},{"name":"KSSTREAMALLOCATOR_STATUS_EX","features":[429]},{"name":"KSSTREAM_FAILUREEXCEPTION","features":[429]},{"name":"KSSTREAM_HEADER","features":[429]},{"name":"KSSTREAM_HEADER","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_BUFFEREDTRANSFER","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_DATADISCONTINUITY","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_DURATIONVALID","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFPHOTOSEQUENCE","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFSTREAM","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_FLUSHONPAUSE","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_FRAMEINFO","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_LOOPEDDATA","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_METADATA","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_PERSIST_SAMPLE","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_PREROLL","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_SAMPLE_PERSISTED","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_SECUREBUFFERTRANSFER","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_SPLICEPOINT","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEDISCONTINUITY","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEVALID","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_TYPECHANGED","features":[429]},{"name":"KSSTREAM_HEADER_OPTIONSF_VRAM_DATA_TRANSFER","features":[429]},{"name":"KSSTREAM_HEADER_TRACK_COMPLETION_NUMBERS","features":[429]},{"name":"KSSTREAM_METADATA_INFO","features":[429]},{"name":"KSSTREAM_NONPAGED_DATA","features":[429]},{"name":"KSSTREAM_PAGED_DATA","features":[429]},{"name":"KSSTREAM_READ","features":[429]},{"name":"KSSTREAM_SEGMENT","features":[303,429]},{"name":"KSSTREAM_SYNCHRONOUS","features":[429]},{"name":"KSSTREAM_UVC_METADATA","features":[429]},{"name":"KSSTREAM_UVC_METADATATYPE_TIMESTAMP","features":[429]},{"name":"KSSTREAM_UVC_SECURE_ATTRIBUTE_SIZE","features":[429]},{"name":"KSSTREAM_WRITE","features":[429]},{"name":"KSSTRING_Allocator","features":[429]},{"name":"KSSTRING_AllocatorEx","features":[429]},{"name":"KSSTRING_Clock","features":[429]},{"name":"KSSTRING_Filter","features":[429]},{"name":"KSSTRING_Pin","features":[429]},{"name":"KSSTRING_TopologyNode","features":[429]},{"name":"KSTELEPHONY_CALLCONTROL","features":[429]},{"name":"KSTELEPHONY_CALLINFO","features":[429]},{"name":"KSTELEPHONY_PROVIDERCHANGE","features":[429]},{"name":"KSTIME","features":[429]},{"name":"KSTIME_FORMAT_BYTE","features":[429]},{"name":"KSTIME_FORMAT_FIELD","features":[429]},{"name":"KSTIME_FORMAT_FRAME","features":[429]},{"name":"KSTIME_FORMAT_MEDIA_TIME","features":[429]},{"name":"KSTIME_FORMAT_SAMPLE","features":[429]},{"name":"KSTOPOLOGY","features":[429]},{"name":"KSTOPOLOGY_CONNECTION","features":[429]},{"name":"KSTOPOLOGY_ENDPOINTID","features":[429]},{"name":"KSTOPOLOGY_ENDPOINTIDPAIR","features":[429]},{"name":"KSVPMAXPIXELRATE","features":[429]},{"name":"KSVPSIZE_PROP","features":[429]},{"name":"KSVPSURFACEPARAMS","features":[429]},{"name":"KSWAVETABLE_WAVE_DESC","features":[303,429]},{"name":"KSWAVE_BUFFER","features":[429]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_LOOPING","features":[429]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_STATIC","features":[429]},{"name":"KSWAVE_COMPATCAPS","features":[429]},{"name":"KSWAVE_COMPATCAPS_INPUT","features":[429]},{"name":"KSWAVE_COMPATCAPS_OUTPUT","features":[429]},{"name":"KSWAVE_INPUT_CAPABILITIES","features":[429]},{"name":"KSWAVE_OUTPUT_CAPABILITIES","features":[429]},{"name":"KSWAVE_VOLUME","features":[429]},{"name":"KS_AMCONTROL_COLORINFO_PRESENT","features":[429]},{"name":"KS_AMCONTROL_PAD_TO_16x9","features":[429]},{"name":"KS_AMCONTROL_PAD_TO_4x3","features":[429]},{"name":"KS_AMCONTROL_USED","features":[429]},{"name":"KS_AMPixAspectRatio","features":[429]},{"name":"KS_AMVPDATAINFO","features":[303,429]},{"name":"KS_AMVPDIMINFO","features":[303,429]},{"name":"KS_AMVPSIZE","features":[429]},{"name":"KS_AMVP_BEST_BANDWIDTH","features":[429]},{"name":"KS_AMVP_DO_NOT_CARE","features":[429]},{"name":"KS_AMVP_INPUT_SAME_AS_OUTPUT","features":[429]},{"name":"KS_AMVP_MODE","features":[429]},{"name":"KS_AMVP_MODE_BOBINTERLEAVED","features":[429]},{"name":"KS_AMVP_MODE_BOBNONINTERLEAVED","features":[429]},{"name":"KS_AMVP_MODE_SKIPEVEN","features":[429]},{"name":"KS_AMVP_MODE_SKIPODD","features":[429]},{"name":"KS_AMVP_MODE_WEAVE","features":[429]},{"name":"KS_AMVP_SELECTFORMATBY","features":[429]},{"name":"KS_AM_ExactRateChange","features":[429]},{"name":"KS_AM_PROPERTY_TS_RATE_CHANGE","features":[429]},{"name":"KS_AM_RATE_ExactRateChange","features":[429]},{"name":"KS_AM_RATE_MaxFullDataRate","features":[429]},{"name":"KS_AM_RATE_SimpleRateChange","features":[429]},{"name":"KS_AM_RATE_Step","features":[429]},{"name":"KS_AM_SimpleRateChange","features":[429]},{"name":"KS_AM_UseNewCSSKey","features":[429]},{"name":"KS_ANALOGVIDEOINFO","features":[303,429]},{"name":"KS_AnalogVideoStandard","features":[429]},{"name":"KS_AnalogVideo_NTSC_433","features":[429]},{"name":"KS_AnalogVideo_NTSC_M","features":[429]},{"name":"KS_AnalogVideo_NTSC_M_J","features":[429]},{"name":"KS_AnalogVideo_NTSC_Mask","features":[429]},{"name":"KS_AnalogVideo_None","features":[429]},{"name":"KS_AnalogVideo_PAL_60","features":[429]},{"name":"KS_AnalogVideo_PAL_B","features":[429]},{"name":"KS_AnalogVideo_PAL_D","features":[429]},{"name":"KS_AnalogVideo_PAL_G","features":[429]},{"name":"KS_AnalogVideo_PAL_H","features":[429]},{"name":"KS_AnalogVideo_PAL_I","features":[429]},{"name":"KS_AnalogVideo_PAL_M","features":[429]},{"name":"KS_AnalogVideo_PAL_Mask","features":[429]},{"name":"KS_AnalogVideo_PAL_N","features":[429]},{"name":"KS_AnalogVideo_PAL_N_COMBO","features":[429]},{"name":"KS_AnalogVideo_SECAM_B","features":[429]},{"name":"KS_AnalogVideo_SECAM_D","features":[429]},{"name":"KS_AnalogVideo_SECAM_G","features":[429]},{"name":"KS_AnalogVideo_SECAM_H","features":[429]},{"name":"KS_AnalogVideo_SECAM_K","features":[429]},{"name":"KS_AnalogVideo_SECAM_K1","features":[429]},{"name":"KS_AnalogVideo_SECAM_L","features":[429]},{"name":"KS_AnalogVideo_SECAM_L1","features":[429]},{"name":"KS_AnalogVideo_SECAM_Mask","features":[429]},{"name":"KS_BITMAPINFOHEADER","features":[429]},{"name":"KS_BI_BITFIELDS","features":[429]},{"name":"KS_BI_JPEG","features":[429]},{"name":"KS_BI_RGB","features":[429]},{"name":"KS_BI_RLE4","features":[429]},{"name":"KS_BI_RLE8","features":[429]},{"name":"KS_CAMERACONTROL_ASYNC_RESET","features":[429]},{"name":"KS_CAMERACONTROL_ASYNC_START","features":[429]},{"name":"KS_CAMERACONTROL_ASYNC_STOP","features":[429]},{"name":"KS_CAPTURE_ALLOC_INVALID","features":[429]},{"name":"KS_CAPTURE_ALLOC_SECURE_BUFFER","features":[429]},{"name":"KS_CAPTURE_ALLOC_SYSTEM","features":[429]},{"name":"KS_CAPTURE_ALLOC_SYSTEM_AGP","features":[429]},{"name":"KS_CAPTURE_ALLOC_VRAM","features":[429]},{"name":"KS_CAPTURE_ALLOC_VRAM_MAPPED","features":[429]},{"name":"KS_CC_SUBSTREAM_EVEN","features":[429]},{"name":"KS_CC_SUBSTREAM_FIELD1_MASK","features":[429]},{"name":"KS_CC_SUBSTREAM_FIELD2_MASK","features":[429]},{"name":"KS_CC_SUBSTREAM_ODD","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC1","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC2","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC3","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC4","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_T1","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_T2","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_T3","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_T4","features":[429]},{"name":"KS_CC_SUBSTREAM_SERVICE_XDS","features":[429]},{"name":"KS_COLCON","features":[429]},{"name":"KS_COMPRESSION","features":[429]},{"name":"KS_COPYPROTECT_RestrictDuplication","features":[429]},{"name":"KS_COPY_MACROVISION","features":[429]},{"name":"KS_COPY_MACROVISION_LEVEL","features":[429]},{"name":"KS_CameraControlAsyncOperation","features":[429]},{"name":"KS_CompressionCaps","features":[429]},{"name":"KS_CompressionCaps_CanBFrame","features":[429]},{"name":"KS_CompressionCaps_CanCrunch","features":[429]},{"name":"KS_CompressionCaps_CanKeyFrame","features":[429]},{"name":"KS_CompressionCaps_CanQuality","features":[429]},{"name":"KS_CompressionCaps_CanWindow","features":[429]},{"name":"KS_DATAFORMAT_H264VIDEOINFO","features":[429]},{"name":"KS_DATAFORMAT_IMAGEINFO","features":[429]},{"name":"KS_DATAFORMAT_MPEGVIDEOINFO2","features":[303,429]},{"name":"KS_DATAFORMAT_VBIINFOHEADER","features":[429]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER","features":[303,429]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER2","features":[303,429]},{"name":"KS_DATAFORMAT_VIDEOINFO_PALETTE","features":[303,429]},{"name":"KS_DATARANGE_ANALOGVIDEO","features":[303,429]},{"name":"KS_DATARANGE_H264_VIDEO","features":[303,429]},{"name":"KS_DATARANGE_IMAGE","features":[303,429]},{"name":"KS_DATARANGE_MPEG1_VIDEO","features":[303,429]},{"name":"KS_DATARANGE_MPEG2_VIDEO","features":[303,429]},{"name":"KS_DATARANGE_VIDEO","features":[303,429]},{"name":"KS_DATARANGE_VIDEO2","features":[303,429]},{"name":"KS_DATARANGE_VIDEO_PALETTE","features":[303,429]},{"name":"KS_DATARANGE_VIDEO_VBI","features":[303,429]},{"name":"KS_DVDCOPYSTATE","features":[429]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_NOT_REQUIRED","features":[429]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_REQUIRED","features":[429]},{"name":"KS_DVDCOPYSTATE_DONE","features":[429]},{"name":"KS_DVDCOPYSTATE_INITIALIZE","features":[429]},{"name":"KS_DVDCOPYSTATE_INITIALIZE_TITLE","features":[429]},{"name":"KS_DVDCOPY_BUSKEY","features":[429]},{"name":"KS_DVDCOPY_CHLGKEY","features":[429]},{"name":"KS_DVDCOPY_DISCKEY","features":[429]},{"name":"KS_DVDCOPY_REGION","features":[429]},{"name":"KS_DVDCOPY_SET_COPY_STATE","features":[429]},{"name":"KS_DVDCOPY_TITLEKEY","features":[429]},{"name":"KS_DVD_CGMS_COPY_ONCE","features":[429]},{"name":"KS_DVD_CGMS_COPY_PERMITTED","features":[429]},{"name":"KS_DVD_CGMS_COPY_PROTECT_MASK","features":[429]},{"name":"KS_DVD_CGMS_NO_COPY","features":[429]},{"name":"KS_DVD_CGMS_RESERVED_MASK","features":[429]},{"name":"KS_DVD_COPYRIGHTED","features":[429]},{"name":"KS_DVD_COPYRIGHT_MASK","features":[429]},{"name":"KS_DVD_NOT_COPYRIGHTED","features":[429]},{"name":"KS_DVD_SECTOR_NOT_PROTECTED","features":[429]},{"name":"KS_DVD_SECTOR_PROTECTED","features":[429]},{"name":"KS_DVD_SECTOR_PROTECT_MASK","features":[429]},{"name":"KS_DVD_YCrCb","features":[429]},{"name":"KS_DVD_YUV","features":[429]},{"name":"KS_FRAME_INFO","features":[303,429]},{"name":"KS_FRAMING_ITEM","features":[429]},{"name":"KS_FRAMING_RANGE","features":[429]},{"name":"KS_FRAMING_RANGE_WEIGHTED","features":[429]},{"name":"KS_H264VIDEOINFO","features":[429]},{"name":"KS_INTERLACE_1FieldPerSample","features":[429]},{"name":"KS_INTERLACE_DisplayModeBobOnly","features":[429]},{"name":"KS_INTERLACE_DisplayModeBobOrWeave","features":[429]},{"name":"KS_INTERLACE_DisplayModeMask","features":[429]},{"name":"KS_INTERLACE_DisplayModeWeaveOnly","features":[429]},{"name":"KS_INTERLACE_Field1First","features":[429]},{"name":"KS_INTERLACE_FieldPatBothIrregular","features":[429]},{"name":"KS_INTERLACE_FieldPatBothRegular","features":[429]},{"name":"KS_INTERLACE_FieldPatField1Only","features":[429]},{"name":"KS_INTERLACE_FieldPatField2Only","features":[429]},{"name":"KS_INTERLACE_FieldPatternMask","features":[429]},{"name":"KS_INTERLACE_IsInterlaced","features":[429]},{"name":"KS_INTERLACE_UNUSED","features":[429]},{"name":"KS_LogicalMemoryType","features":[429]},{"name":"KS_MACROVISION_DISABLED","features":[429]},{"name":"KS_MACROVISION_LEVEL1","features":[429]},{"name":"KS_MACROVISION_LEVEL2","features":[429]},{"name":"KS_MACROVISION_LEVEL3","features":[429]},{"name":"KS_MAX_SIZE_MPEG1_SEQUENCE_INFO","features":[429]},{"name":"KS_MPEG1VIDEOINFO","features":[303,429]},{"name":"KS_MPEG2Level","features":[429]},{"name":"KS_MPEG2Level_High","features":[429]},{"name":"KS_MPEG2Level_High1440","features":[429]},{"name":"KS_MPEG2Level_Low","features":[429]},{"name":"KS_MPEG2Level_Main","features":[429]},{"name":"KS_MPEG2Profile","features":[429]},{"name":"KS_MPEG2Profile_High","features":[429]},{"name":"KS_MPEG2Profile_Main","features":[429]},{"name":"KS_MPEG2Profile_SNRScalable","features":[429]},{"name":"KS_MPEG2Profile_Simple","features":[429]},{"name":"KS_MPEG2Profile_SpatiallyScalable","features":[429]},{"name":"KS_MPEG2_27MhzTimebase","features":[429]},{"name":"KS_MPEG2_DSS_UserData","features":[429]},{"name":"KS_MPEG2_DVB_UserData","features":[429]},{"name":"KS_MPEG2_DVDLine21Field1","features":[429]},{"name":"KS_MPEG2_DVDLine21Field2","features":[429]},{"name":"KS_MPEG2_DoPanScan","features":[429]},{"name":"KS_MPEG2_FilmCameraMode","features":[429]},{"name":"KS_MPEG2_LetterboxAnalogOut","features":[429]},{"name":"KS_MPEG2_SourceIsLetterboxed","features":[429]},{"name":"KS_MPEG2_WidescreenAnalogOut","features":[429]},{"name":"KS_MPEGAUDIOINFO","features":[429]},{"name":"KS_MPEGAUDIOINFO_27MhzTimebase","features":[429]},{"name":"KS_MPEGVIDEOINFO2","features":[303,429]},{"name":"KS_MemoryTypeAnyHost","features":[429]},{"name":"KS_MemoryTypeDeviceHostMapped","features":[429]},{"name":"KS_MemoryTypeDeviceSpecific","features":[429]},{"name":"KS_MemoryTypeDontCare","features":[429]},{"name":"KS_MemoryTypeKernelNonPaged","features":[429]},{"name":"KS_MemoryTypeKernelPaged","features":[429]},{"name":"KS_MemoryTypeUser","features":[429]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_ADVERTISER_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_CONTENT_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_MICROSOFT_RESERVED_TEST_DATA_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_ADVERTISER_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_CONTENT_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_ADVERTISER_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_ADVERTISER_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_CONTENT_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_ADVERTISER_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_CONTENT_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_ADVERTISER_BASE","features":[429]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_CONTENT_BASE","features":[429]},{"name":"KS_Obsolete_VideoControlFlag_ExternalTriggerEnable","features":[429]},{"name":"KS_Obsolete_VideoControlFlag_Trigger","features":[429]},{"name":"KS_PhysConn_Audio_1394","features":[429]},{"name":"KS_PhysConn_Audio_AESDigital","features":[429]},{"name":"KS_PhysConn_Audio_AUX","features":[429]},{"name":"KS_PhysConn_Audio_AudioDecoder","features":[429]},{"name":"KS_PhysConn_Audio_Line","features":[429]},{"name":"KS_PhysConn_Audio_Mic","features":[429]},{"name":"KS_PhysConn_Audio_SCSI","features":[429]},{"name":"KS_PhysConn_Audio_SPDIFDigital","features":[429]},{"name":"KS_PhysConn_Audio_Tuner","features":[429]},{"name":"KS_PhysConn_Audio_USB","features":[429]},{"name":"KS_PhysConn_Video_1394","features":[429]},{"name":"KS_PhysConn_Video_AUX","features":[429]},{"name":"KS_PhysConn_Video_Composite","features":[429]},{"name":"KS_PhysConn_Video_ParallelDigital","features":[429]},{"name":"KS_PhysConn_Video_RGB","features":[429]},{"name":"KS_PhysConn_Video_SCART","features":[429]},{"name":"KS_PhysConn_Video_SCSI","features":[429]},{"name":"KS_PhysConn_Video_SVideo","features":[429]},{"name":"KS_PhysConn_Video_SerialDigital","features":[429]},{"name":"KS_PhysConn_Video_Tuner","features":[429]},{"name":"KS_PhysConn_Video_USB","features":[429]},{"name":"KS_PhysConn_Video_VideoDecoder","features":[429]},{"name":"KS_PhysConn_Video_VideoEncoder","features":[429]},{"name":"KS_PhysConn_Video_YRYBY","features":[429]},{"name":"KS_PhysicalConnectorType","features":[429]},{"name":"KS_PixAspectRatio_NTSC16x9","features":[429]},{"name":"KS_PixAspectRatio_NTSC4x3","features":[429]},{"name":"KS_PixAspectRatio_PAL16x9","features":[429]},{"name":"KS_PixAspectRatio_PAL4x3","features":[429]},{"name":"KS_RGBQUAD","features":[429]},{"name":"KS_SECURE_CAMERA_SCENARIO_ID","features":[429]},{"name":"KS_SEEKING_AbsolutePositioning","features":[429]},{"name":"KS_SEEKING_CAPABILITIES","features":[429]},{"name":"KS_SEEKING_CanGetCurrentPos","features":[429]},{"name":"KS_SEEKING_CanGetDuration","features":[429]},{"name":"KS_SEEKING_CanGetStopPos","features":[429]},{"name":"KS_SEEKING_CanPlayBackwards","features":[429]},{"name":"KS_SEEKING_CanSeekAbsolute","features":[429]},{"name":"KS_SEEKING_CanSeekBackwards","features":[429]},{"name":"KS_SEEKING_CanSeekForwards","features":[429]},{"name":"KS_SEEKING_FLAGS","features":[429]},{"name":"KS_SEEKING_IncrementalPositioning","features":[429]},{"name":"KS_SEEKING_NoPositioning","features":[429]},{"name":"KS_SEEKING_PositioningBitsMask","features":[429]},{"name":"KS_SEEKING_RelativePositioning","features":[429]},{"name":"KS_SEEKING_ReturnTime","features":[429]},{"name":"KS_SEEKING_SeekToKeyFrame","features":[429]},{"name":"KS_StreamingHint_CompQuality","features":[429]},{"name":"KS_StreamingHint_CompWindowSize","features":[429]},{"name":"KS_StreamingHint_FrameInterval","features":[429]},{"name":"KS_StreamingHint_KeyFrameRate","features":[429]},{"name":"KS_StreamingHint_PFrameRate","features":[429]},{"name":"KS_TRUECOLORINFO","features":[429]},{"name":"KS_TUNER_STRATEGY","features":[429]},{"name":"KS_TUNER_STRATEGY_DRIVER_TUNES","features":[429]},{"name":"KS_TUNER_STRATEGY_PLL","features":[429]},{"name":"KS_TUNER_STRATEGY_SIGNAL_STRENGTH","features":[429]},{"name":"KS_TUNER_TUNING_COARSE","features":[429]},{"name":"KS_TUNER_TUNING_EXACT","features":[429]},{"name":"KS_TUNER_TUNING_FINE","features":[429]},{"name":"KS_TUNER_TUNING_FLAGS","features":[429]},{"name":"KS_TVAUDIO_MODE_LANG_A","features":[429]},{"name":"KS_TVAUDIO_MODE_LANG_B","features":[429]},{"name":"KS_TVAUDIO_MODE_LANG_C","features":[429]},{"name":"KS_TVAUDIO_MODE_MONO","features":[429]},{"name":"KS_TVAUDIO_MODE_STEREO","features":[429]},{"name":"KS_TVAUDIO_PRESET_LANG_A","features":[429]},{"name":"KS_TVAUDIO_PRESET_LANG_B","features":[429]},{"name":"KS_TVAUDIO_PRESET_LANG_C","features":[429]},{"name":"KS_TVAUDIO_PRESET_STEREO","features":[429]},{"name":"KS_TVTUNER_CHANGE_BEGIN_TUNE","features":[429]},{"name":"KS_TVTUNER_CHANGE_END_TUNE","features":[429]},{"name":"KS_TVTUNER_CHANGE_INFO","features":[429]},{"name":"KS_VBICAP_PROTECTION_MV_DETECTED","features":[429]},{"name":"KS_VBICAP_PROTECTION_MV_HARDWARE","features":[429]},{"name":"KS_VBICAP_PROTECTION_MV_PRESENT","features":[429]},{"name":"KS_VBIDATARATE_CC","features":[429]},{"name":"KS_VBIDATARATE_NABTS","features":[429]},{"name":"KS_VBIINFOHEADER","features":[429]},{"name":"KS_VBI_FLAG_FIELD1","features":[429]},{"name":"KS_VBI_FLAG_FIELD2","features":[429]},{"name":"KS_VBI_FLAG_FRAME","features":[429]},{"name":"KS_VBI_FLAG_MV_DETECTED","features":[429]},{"name":"KS_VBI_FLAG_MV_HARDWARE","features":[429]},{"name":"KS_VBI_FLAG_MV_PRESENT","features":[429]},{"name":"KS_VBI_FLAG_TVTUNER_CHANGE","features":[429]},{"name":"KS_VBI_FLAG_VBIINFOHEADER_CHANGE","features":[429]},{"name":"KS_VBI_FRAME_INFO","features":[429]},{"name":"KS_VIDEODECODER_FLAGS","features":[429]},{"name":"KS_VIDEODECODER_FLAGS_CAN_DISABLE_OUTPUT","features":[429]},{"name":"KS_VIDEODECODER_FLAGS_CAN_INDICATE_LOCKED","features":[429]},{"name":"KS_VIDEODECODER_FLAGS_CAN_USE_VCR_LOCKING","features":[429]},{"name":"KS_VIDEOINFO","features":[303,429]},{"name":"KS_VIDEOINFOHEADER","features":[303,429]},{"name":"KS_VIDEOINFOHEADER2","features":[303,429]},{"name":"KS_VIDEOSTREAM_CAPTURE","features":[429]},{"name":"KS_VIDEOSTREAM_CC","features":[429]},{"name":"KS_VIDEOSTREAM_EDS","features":[429]},{"name":"KS_VIDEOSTREAM_IS_VPE","features":[429]},{"name":"KS_VIDEOSTREAM_NABTS","features":[429]},{"name":"KS_VIDEOSTREAM_PREVIEW","features":[429]},{"name":"KS_VIDEOSTREAM_STILL","features":[429]},{"name":"KS_VIDEOSTREAM_TELETEXT","features":[429]},{"name":"KS_VIDEOSTREAM_VBI","features":[429]},{"name":"KS_VIDEO_ALLOC_VPE_AGP","features":[429]},{"name":"KS_VIDEO_ALLOC_VPE_DISPLAY","features":[429]},{"name":"KS_VIDEO_ALLOC_VPE_SYSTEM","features":[429]},{"name":"KS_VIDEO_FLAG_B_FRAME","features":[429]},{"name":"KS_VIDEO_FLAG_FIELD1","features":[429]},{"name":"KS_VIDEO_FLAG_FIELD1FIRST","features":[429]},{"name":"KS_VIDEO_FLAG_FIELD2","features":[429]},{"name":"KS_VIDEO_FLAG_FIELD_MASK","features":[429]},{"name":"KS_VIDEO_FLAG_FRAME","features":[429]},{"name":"KS_VIDEO_FLAG_IPB_MASK","features":[429]},{"name":"KS_VIDEO_FLAG_I_FRAME","features":[429]},{"name":"KS_VIDEO_FLAG_P_FRAME","features":[429]},{"name":"KS_VIDEO_FLAG_REPEAT_FIELD","features":[429]},{"name":"KS_VIDEO_FLAG_WEAVE","features":[429]},{"name":"KS_VIDEO_STREAM_CONFIG_CAPS","features":[303,429]},{"name":"KS_VideoControlFlag_ExternalTriggerEnable","features":[429]},{"name":"KS_VideoControlFlag_FlipHorizontal","features":[429]},{"name":"KS_VideoControlFlag_FlipVertical","features":[429]},{"name":"KS_VideoControlFlag_IndependentImagePin","features":[429]},{"name":"KS_VideoControlFlag_StartPhotoSequenceCapture","features":[429]},{"name":"KS_VideoControlFlag_StillCapturePreviewFrame","features":[429]},{"name":"KS_VideoControlFlag_StopPhotoSequenceCapture","features":[429]},{"name":"KS_VideoControlFlag_Trigger","features":[429]},{"name":"KS_VideoControlFlags","features":[429]},{"name":"KS_VideoStreamingHints","features":[429]},{"name":"KS_iBLUE","features":[429]},{"name":"KS_iEGA_COLORS","features":[429]},{"name":"KS_iGREEN","features":[429]},{"name":"KS_iMASK_COLORS","features":[429]},{"name":"KS_iMAXBITS","features":[429]},{"name":"KS_iPALETTE","features":[429]},{"name":"KS_iPALETTE_COLORS","features":[429]},{"name":"KS_iRED","features":[429]},{"name":"KS_iTRUECOLOR","features":[429]},{"name":"KsAllocatorMode_Kernel","features":[429]},{"name":"KsAllocatorMode_User","features":[429]},{"name":"KsCreateAllocator","features":[303,429]},{"name":"KsCreateAllocator2","features":[303,429]},{"name":"KsCreateClock","features":[303,429]},{"name":"KsCreateClock2","features":[303,429]},{"name":"KsCreatePin","features":[303,429]},{"name":"KsCreatePin2","features":[303,429]},{"name":"KsCreateTopologyNode","features":[303,429]},{"name":"KsCreateTopologyNode2","features":[303,429]},{"name":"KsGetMediaType","features":[303,429,426]},{"name":"KsGetMediaTypeCount","features":[303,429]},{"name":"KsGetMultiplePinFactoryItems","features":[303,429]},{"name":"KsIoOperation_Read","features":[429]},{"name":"KsIoOperation_Write","features":[429]},{"name":"KsOpenDefaultDevice","features":[303,429]},{"name":"KsPeekOperation_AddRef","features":[429]},{"name":"KsPeekOperation_PeekOnly","features":[429]},{"name":"KsResolveRequiredAttributes","features":[429]},{"name":"KsSynchronousDeviceControl","features":[303,429]},{"name":"LIGHT_FILTER","features":[429]},{"name":"LOOPEDSTREAMING_POSITION_EVENT_DATA","features":[303,429]},{"name":"MAX_NABTS_VBI_LINES_PER_FIELD","features":[429]},{"name":"MAX_RESOURCEGROUPID_LENGTH","features":[429]},{"name":"MAX_SINK_DESCRIPTION_NAME_LENGTH","features":[429]},{"name":"MAX_WST_VBI_LINES_PER_FIELD","features":[429]},{"name":"MEDIUM_INFO","features":[303,429]},{"name":"MF_MDL_SHARED_PAYLOAD_KEY","features":[429]},{"name":"MIN_DEV_VER_FOR_FLAGS","features":[429]},{"name":"MIN_DEV_VER_FOR_QI","features":[429]},{"name":"MetadataId_BackgroundSegmentationMask","features":[429]},{"name":"MetadataId_CameraExtrinsics","features":[429]},{"name":"MetadataId_CameraIntrinsics","features":[429]},{"name":"MetadataId_CaptureStats","features":[429]},{"name":"MetadataId_Custom_Start","features":[429]},{"name":"MetadataId_DigitalWindow","features":[429]},{"name":"MetadataId_FrameIllumination","features":[429]},{"name":"MetadataId_PhotoConfirmation","features":[429]},{"name":"MetadataId_Standard_End","features":[429]},{"name":"MetadataId_Standard_Start","features":[429]},{"name":"MetadataId_UsbVideoHeader","features":[429]},{"name":"NABTSFEC_BUFFER","features":[429]},{"name":"NABTS_BUFFER","features":[429]},{"name":"NABTS_BUFFER_LINE","features":[429]},{"name":"NABTS_BUFFER_PICTURENUMBER_SUPPORT","features":[429]},{"name":"NABTS_BYTES_PER_LINE","features":[429]},{"name":"NABTS_LINES_PER_BUNDLE","features":[429]},{"name":"NABTS_PAYLOAD_PER_LINE","features":[429]},{"name":"NANOSECONDS","features":[429]},{"name":"OPTIMAL_WEIGHT_TOTALS","features":[429]},{"name":"PINNAME_DISPLAYPORT_OUT","features":[429]},{"name":"PINNAME_HDMI_OUT","features":[429]},{"name":"PINNAME_IMAGE","features":[429]},{"name":"PINNAME_SPDIF_IN","features":[429]},{"name":"PINNAME_SPDIF_OUT","features":[429]},{"name":"PINNAME_VIDEO_ANALOGVIDEOIN","features":[429]},{"name":"PINNAME_VIDEO_CAPTURE","features":[429]},{"name":"PINNAME_VIDEO_CC","features":[429]},{"name":"PINNAME_VIDEO_CC_CAPTURE","features":[429]},{"name":"PINNAME_VIDEO_EDS","features":[429]},{"name":"PINNAME_VIDEO_NABTS","features":[429]},{"name":"PINNAME_VIDEO_NABTS_CAPTURE","features":[429]},{"name":"PINNAME_VIDEO_PREVIEW","features":[429]},{"name":"PINNAME_VIDEO_STILL","features":[429]},{"name":"PINNAME_VIDEO_TELETEXT","features":[429]},{"name":"PINNAME_VIDEO_TIMECODE","features":[429]},{"name":"PINNAME_VIDEO_VBI","features":[429]},{"name":"PINNAME_VIDEO_VIDEOPORT","features":[429]},{"name":"PINNAME_VIDEO_VIDEOPORT_VBI","features":[429]},{"name":"PIPE_ALLOCATOR_PLACE","features":[429]},{"name":"PIPE_DIMENSIONS","features":[429]},{"name":"PIPE_STATE","features":[429]},{"name":"PIPE_TERMINATION","features":[429]},{"name":"PROPSETID_ALLOCATOR_CONTROL","features":[429]},{"name":"PROPSETID_EXT_DEVICE","features":[429]},{"name":"PROPSETID_EXT_TRANSPORT","features":[429]},{"name":"PROPSETID_TIMECODE_READER","features":[429]},{"name":"PROPSETID_TUNER","features":[429]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL","features":[429]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_FLASH","features":[429]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[429]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[429]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_VIDEO_STABILIZATION","features":[429]},{"name":"PROPSETID_VIDCAP_CROSSBAR","features":[429]},{"name":"PROPSETID_VIDCAP_DROPPEDFRAMES","features":[429]},{"name":"PROPSETID_VIDCAP_SELECTOR","features":[429]},{"name":"PROPSETID_VIDCAP_TVAUDIO","features":[429]},{"name":"PROPSETID_VIDCAP_VIDEOCOMPRESSION","features":[429]},{"name":"PROPSETID_VIDCAP_VIDEOCONTROL","features":[429]},{"name":"PROPSETID_VIDCAP_VIDEODECODER","features":[429]},{"name":"PROPSETID_VIDCAP_VIDEOENCODER","features":[429]},{"name":"PROPSETID_VIDCAP_VIDEOPROCAMP","features":[429]},{"name":"PipeFactor_Align","features":[429]},{"name":"PipeFactor_Buffers","features":[429]},{"name":"PipeFactor_FixedCompression","features":[429]},{"name":"PipeFactor_Flags","features":[429]},{"name":"PipeFactor_LogicalEnd","features":[429]},{"name":"PipeFactor_MemoryTypes","features":[429]},{"name":"PipeFactor_None","features":[429]},{"name":"PipeFactor_OptimalRanges","features":[429]},{"name":"PipeFactor_PhysicalEnd","features":[429]},{"name":"PipeFactor_PhysicalRanges","features":[429]},{"name":"PipeFactor_UnknownCompression","features":[429]},{"name":"PipeFactor_UserModeDownstream","features":[429]},{"name":"PipeFactor_UserModeUpstream","features":[429]},{"name":"PipeState_CompressionUnknown","features":[429]},{"name":"PipeState_DontCare","features":[429]},{"name":"PipeState_Finalized","features":[429]},{"name":"PipeState_RangeFixed","features":[429]},{"name":"PipeState_RangeNotFixed","features":[429]},{"name":"Pipe_Allocator_FirstPin","features":[429]},{"name":"Pipe_Allocator_LastPin","features":[429]},{"name":"Pipe_Allocator_MiddlePin","features":[429]},{"name":"Pipe_Allocator_None","features":[429]},{"name":"RT_RCDATA","features":[429]},{"name":"RT_STRING","features":[429]},{"name":"SECURE_BUFFER_INFO","features":[429]},{"name":"SHORT_COEFF","features":[429]},{"name":"SOUNDDETECTOR_PATTERNHEADER","features":[429]},{"name":"SPEAKER_ALL","features":[429]},{"name":"SPEAKER_BACK_CENTER","features":[429]},{"name":"SPEAKER_BACK_LEFT","features":[429]},{"name":"SPEAKER_BACK_RIGHT","features":[429]},{"name":"SPEAKER_FRONT_CENTER","features":[429]},{"name":"SPEAKER_FRONT_LEFT","features":[429]},{"name":"SPEAKER_FRONT_LEFT_OF_CENTER","features":[429]},{"name":"SPEAKER_FRONT_RIGHT","features":[429]},{"name":"SPEAKER_FRONT_RIGHT_OF_CENTER","features":[429]},{"name":"SPEAKER_LOW_FREQUENCY","features":[429]},{"name":"SPEAKER_RESERVED","features":[429]},{"name":"SPEAKER_SIDE_LEFT","features":[429]},{"name":"SPEAKER_SIDE_RIGHT","features":[429]},{"name":"SPEAKER_TOP_BACK_CENTER","features":[429]},{"name":"SPEAKER_TOP_BACK_LEFT","features":[429]},{"name":"SPEAKER_TOP_BACK_RIGHT","features":[429]},{"name":"SPEAKER_TOP_CENTER","features":[429]},{"name":"SPEAKER_TOP_FRONT_CENTER","features":[429]},{"name":"SPEAKER_TOP_FRONT_LEFT","features":[429]},{"name":"SPEAKER_TOP_FRONT_RIGHT","features":[429]},{"name":"SYSAUDIO_FLAGS_CLEAR_PREFERRED","features":[429]},{"name":"SYSAUDIO_FLAGS_DONT_COMBINE_PINS","features":[429]},{"name":"TELEPHONY_CALLCONTROLOP","features":[429]},{"name":"TELEPHONY_CALLCONTROLOP_DISABLE","features":[429]},{"name":"TELEPHONY_CALLCONTROLOP_ENABLE","features":[429]},{"name":"TELEPHONY_CALLSTATE","features":[429]},{"name":"TELEPHONY_CALLSTATE_DISABLED","features":[429]},{"name":"TELEPHONY_CALLSTATE_ENABLED","features":[429]},{"name":"TELEPHONY_CALLSTATE_HOLD","features":[429]},{"name":"TELEPHONY_CALLSTATE_PROVIDERTRANSITION","features":[429]},{"name":"TELEPHONY_CALLTYPE","features":[429]},{"name":"TELEPHONY_CALLTYPE_CIRCUITSWITCHED","features":[429]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_LTE","features":[429]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_WLAN","features":[429]},{"name":"TELEPHONY_PROVIDERCHANGEOP","features":[429]},{"name":"TELEPHONY_PROVIDERCHANGEOP_BEGIN","features":[429]},{"name":"TELEPHONY_PROVIDERCHANGEOP_CANCEL","features":[429]},{"name":"TELEPHONY_PROVIDERCHANGEOP_END","features":[429]},{"name":"TRANSPORTAUDIOPARMS","features":[429]},{"name":"TRANSPORTBASICPARMS","features":[429]},{"name":"TRANSPORTSTATUS","features":[429]},{"name":"TRANSPORTVIDEOPARMS","features":[429]},{"name":"TRANSPORT_STATE","features":[429]},{"name":"TUNER_ANALOG_CAPS_S","features":[429]},{"name":"TunerLockType","features":[429]},{"name":"Tuner_LockType_Locked","features":[429]},{"name":"Tuner_LockType_None","features":[429]},{"name":"Tuner_LockType_Within_Scan_Sensing_Range","features":[429]},{"name":"VBICAP_PROPERTIES_PROTECTION_S","features":[429]},{"name":"VBICODECFILTERING_CC_SUBSTREAMS","features":[429]},{"name":"VBICODECFILTERING_NABTS_SUBSTREAMS","features":[429]},{"name":"VBICODECFILTERING_SCANLINES","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_CC","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_CC_PIN","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_COMMON","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_COMMON_PIN","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_NABTS","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_NABTS_PIN","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT","features":[429]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT_PIN","features":[429]},{"name":"VRAM_SURFACE_INFO","features":[429]},{"name":"VRAM_SURFACE_INFO_PROPERTY_S","features":[429]},{"name":"WAVE_FORMAT_EXTENSIBLE","features":[429]},{"name":"WNF_KSCAMERA_STREAMSTATE_INFO","features":[429]},{"name":"WST_BUFFER","features":[429]},{"name":"WST_BUFFER_LINE","features":[429]},{"name":"WST_BYTES_PER_LINE","features":[429]},{"name":"WST_TVTUNER_CHANGE_BEGIN_TUNE","features":[429]},{"name":"WST_TVTUNER_CHANGE_END_TUNE","features":[429]},{"name":"eConnType3Point5mm","features":[429]},{"name":"eConnTypeAtapiInternal","features":[429]},{"name":"eConnTypeCombination","features":[429]},{"name":"eConnTypeMultichannelAnalogDIN","features":[429]},{"name":"eConnTypeOptical","features":[429]},{"name":"eConnTypeOtherAnalog","features":[429]},{"name":"eConnTypeOtherDigital","features":[429]},{"name":"eConnTypeQuarter","features":[429]},{"name":"eConnTypeRCA","features":[429]},{"name":"eConnTypeRJ11Modem","features":[429]},{"name":"eConnTypeUnknown","features":[429]},{"name":"eConnTypeXlrProfessional","features":[429]},{"name":"eDeviceControlUseMissing","features":[429]},{"name":"eDeviceControlUsePrimary","features":[429]},{"name":"eDeviceControlUseSecondary","features":[429]},{"name":"eGenLocInternal","features":[429]},{"name":"eGenLocOther","features":[429]},{"name":"eGenLocPrimaryBox","features":[429]},{"name":"eGenLocSeparate","features":[429]},{"name":"eGeoLocATAPI","features":[429]},{"name":"eGeoLocBottom","features":[429]},{"name":"eGeoLocDrivebay","features":[429]},{"name":"eGeoLocFront","features":[429]},{"name":"eGeoLocHDMI","features":[429]},{"name":"eGeoLocInsideMobileLid","features":[429]},{"name":"eGeoLocLeft","features":[429]},{"name":"eGeoLocNotApplicable","features":[429]},{"name":"eGeoLocOutsideMobileLid","features":[429]},{"name":"eGeoLocRear","features":[429]},{"name":"eGeoLocRearPanel","features":[429]},{"name":"eGeoLocReserved6","features":[429]},{"name":"eGeoLocRight","features":[429]},{"name":"eGeoLocRiser","features":[429]},{"name":"eGeoLocTop","features":[429]},{"name":"ePortConnBothIntegratedAndJack","features":[429]},{"name":"ePortConnIntegratedDevice","features":[429]},{"name":"ePortConnJack","features":[429]},{"name":"ePortConnUnknown","features":[429]}],"435":[{"name":"DEVICE_AUTHORIZATION_ALLOWED","features":[432]},{"name":"DEVICE_AUTHORIZATION_DENIED","features":[432]},{"name":"DEVICE_AUTHORIZATION_UNKNOWN","features":[432]},{"name":"IWindowsMediaLibrarySharingDevice","features":[432,354]},{"name":"IWindowsMediaLibrarySharingDeviceProperties","features":[432,354]},{"name":"IWindowsMediaLibrarySharingDeviceProperty","features":[432,354]},{"name":"IWindowsMediaLibrarySharingDevices","features":[432,354]},{"name":"IWindowsMediaLibrarySharingServices","features":[432,354]},{"name":"WindowsMediaLibrarySharingDeviceAuthorizationStatus","features":[432]},{"name":"WindowsMediaLibrarySharingServices","features":[432]}],"436":[{"name":"AACMFTEncoder","features":[426]},{"name":"ACCESSMODE_READ","features":[426]},{"name":"ACCESSMODE_READWRITE","features":[426]},{"name":"ACCESSMODE_WRITE","features":[426]},{"name":"ACCESSMODE_WRITE_EXCLUSIVE","features":[426]},{"name":"ADAPTIVE_ARRAY_AND_AEC","features":[426]},{"name":"ADAPTIVE_ARRAY_ONLY","features":[426]},{"name":"AEC_CAPTURE_STREAM","features":[426]},{"name":"AEC_INPUT_STREAM","features":[426]},{"name":"AEC_MAX_SYSTEM_MODES","features":[426]},{"name":"AEC_REFERENCE_STREAM","features":[426]},{"name":"AEC_SYSTEM_MODE","features":[426]},{"name":"AEC_VAD_DISABLED","features":[426]},{"name":"AEC_VAD_FOR_AGC","features":[426]},{"name":"AEC_VAD_FOR_SILENCE_SUPPRESSION","features":[426]},{"name":"AEC_VAD_MODE","features":[426]},{"name":"AEC_VAD_NORMAL","features":[426]},{"name":"ALawCodecWrapper","features":[426]},{"name":"AMMPEG2_27MhzTimebase","features":[426]},{"name":"AMMPEG2_DSS_UserData","features":[426]},{"name":"AMMPEG2_DVB_UserData","features":[426]},{"name":"AMMPEG2_DVDLine21Field1","features":[426]},{"name":"AMMPEG2_DVDLine21Field2","features":[426]},{"name":"AMMPEG2_DoPanScan","features":[426]},{"name":"AMMPEG2_FilmCameraMode","features":[426]},{"name":"AMMPEG2_LetterboxAnalogOut","features":[426]},{"name":"AMMPEG2_SourceIsLetterboxed","features":[426]},{"name":"AMMPEG2_WidescreenAnalogOut","features":[426]},{"name":"AMPROPSETID_Pin","features":[426]},{"name":"AM_MEDIA_TYPE","features":[303,426]},{"name":"AM_MEDIA_TYPE_REPRESENTATION","features":[426]},{"name":"ASF_FLAT_PICTURE","features":[426]},{"name":"ASF_FLAT_SYNCHRONISED_LYRICS","features":[426]},{"name":"ASF_INDEX_DESCRIPTOR","features":[426]},{"name":"ASF_INDEX_IDENTIFIER","features":[426]},{"name":"ASF_MUX_STATISTICS","features":[426]},{"name":"ASF_SELECTION_STATUS","features":[426]},{"name":"ASF_STATUSFLAGS","features":[426]},{"name":"ASF_STATUSFLAGS_INCOMPLETE","features":[426]},{"name":"ASF_STATUSFLAGS_NONFATAL_ERROR","features":[426]},{"name":"ASF_STATUS_ALLDATAUNITS","features":[426]},{"name":"ASF_STATUS_CLEANPOINTSONLY","features":[426]},{"name":"ASF_STATUS_NOTSELECTED","features":[426]},{"name":"AVENC_H263V_LEVELCOUNT","features":[426]},{"name":"AVENC_H264V_LEVELCOUNT","features":[426]},{"name":"AVENC_H264V_MAX_MBBITS","features":[426]},{"name":"AVEncAudioInputContent_Music","features":[426]},{"name":"AVEncAudioInputContent_Unknown","features":[426]},{"name":"AVEncAudioInputContent_Voice","features":[426]},{"name":"AecQualityMetrics_Struct","features":[426]},{"name":"CAC3DecMediaObject","features":[426]},{"name":"CAPTION_FORMAT_ATSC","features":[426]},{"name":"CAPTION_FORMAT_DIRECTV","features":[426]},{"name":"CAPTION_FORMAT_DVB","features":[426]},{"name":"CAPTION_FORMAT_ECHOSTAR","features":[426]},{"name":"CClusterDetectorDmo","features":[426]},{"name":"CColorControlDmo","features":[426]},{"name":"CColorConvertDMO","features":[426]},{"name":"CColorLegalizerDmo","features":[426]},{"name":"CDTVAudDecoderDS","features":[426]},{"name":"CDTVVidDecoderDS","features":[426]},{"name":"CDVDecoderMediaObject","features":[426]},{"name":"CDVEncoderMediaObject","features":[426]},{"name":"CDeColorConvMediaObject","features":[426]},{"name":"CFrameInterpDMO","features":[426]},{"name":"CFrameRateConvertDmo","features":[426]},{"name":"CInterlaceMediaObject","features":[426]},{"name":"CLSID_ACMWrapper","features":[426]},{"name":"CLSID_ATSCNetworkPropertyPage","features":[426]},{"name":"CLSID_ATSCNetworkProvider","features":[426]},{"name":"CLSID_AVICo","features":[426]},{"name":"CLSID_AVIDec","features":[426]},{"name":"CLSID_AVIDoc","features":[426]},{"name":"CLSID_AVIDraw","features":[426]},{"name":"CLSID_AVIMIDIRender","features":[426]},{"name":"CLSID_ActiveMovieCategories","features":[426]},{"name":"CLSID_AllocPresenter","features":[426]},{"name":"CLSID_AllocPresenterDDXclMode","features":[426]},{"name":"CLSID_AnalogVideoDecoderPropertyPage","features":[426]},{"name":"CLSID_AsyncReader","features":[426]},{"name":"CLSID_AudioCompressorCategory","features":[426]},{"name":"CLSID_AudioInputDeviceCategory","features":[426]},{"name":"CLSID_AudioInputMixerProperties","features":[426]},{"name":"CLSID_AudioProperties","features":[426]},{"name":"CLSID_AudioRecord","features":[426]},{"name":"CLSID_AudioRender","features":[426]},{"name":"CLSID_AudioRendererAdvancedProperties","features":[426]},{"name":"CLSID_AudioRendererCategory","features":[426]},{"name":"CLSID_AudioResamplerMediaObject","features":[426]},{"name":"CLSID_AviDest","features":[426]},{"name":"CLSID_AviMuxProptyPage","features":[426]},{"name":"CLSID_AviMuxProptyPage1","features":[426]},{"name":"CLSID_AviReader","features":[426]},{"name":"CLSID_AviSplitter","features":[426]},{"name":"CLSID_CAcmCoClassManager","features":[426]},{"name":"CLSID_CAsfTocParser","features":[426]},{"name":"CLSID_CAviTocParser","features":[426]},{"name":"CLSID_CCAFilter","features":[426]},{"name":"CLSID_CClusterDetectorEx","features":[426]},{"name":"CLSID_CDeviceMoniker","features":[426]},{"name":"CLSID_CFileClient","features":[426]},{"name":"CLSID_CFileIo","features":[426]},{"name":"CLSID_CIcmCoClassManager","features":[426]},{"name":"CLSID_CMidiOutClassManager","features":[426]},{"name":"CLSID_CMpegAudioCodec","features":[426]},{"name":"CLSID_CMpegVideoCodec","features":[426]},{"name":"CLSID_CQzFilterClassManager","features":[426]},{"name":"CLSID_CToc","features":[426]},{"name":"CLSID_CTocCollection","features":[426]},{"name":"CLSID_CTocEntry","features":[426]},{"name":"CLSID_CTocEntryList","features":[426]},{"name":"CLSID_CTocParser","features":[426]},{"name":"CLSID_CVidCapClassManager","features":[426]},{"name":"CLSID_CWaveOutClassManager","features":[426]},{"name":"CLSID_CWaveinClassManager","features":[426]},{"name":"CLSID_CameraConfigurationManager","features":[426]},{"name":"CLSID_CameraControlPropertyPage","features":[426]},{"name":"CLSID_CaptionsFilter","features":[426]},{"name":"CLSID_CaptureGraphBuilder","features":[426]},{"name":"CLSID_CaptureGraphBuilder2","features":[426]},{"name":"CLSID_CaptureProperties","features":[426]},{"name":"CLSID_Colour","features":[426]},{"name":"CLSID_CreateMediaExtensionObject","features":[426]},{"name":"CLSID_CrossbarFilterPropertyPage","features":[426]},{"name":"CLSID_DShowTVEFilter","features":[426]},{"name":"CLSID_DSoundRender","features":[426]},{"name":"CLSID_DVBCNetworkProvider","features":[426]},{"name":"CLSID_DVBSNetworkProvider","features":[426]},{"name":"CLSID_DVBTNetworkProvider","features":[426]},{"name":"CLSID_DVDHWDecodersCategory","features":[426]},{"name":"CLSID_DVDNavigator","features":[426]},{"name":"CLSID_DVDState","features":[426]},{"name":"CLSID_DVDecPropertiesPage","features":[426]},{"name":"CLSID_DVEncPropertiesPage","features":[426]},{"name":"CLSID_DVMux","features":[426]},{"name":"CLSID_DVMuxPropertyPage","features":[426]},{"name":"CLSID_DVSplitter","features":[426]},{"name":"CLSID_DVVideoCodec","features":[426]},{"name":"CLSID_DVVideoEnc","features":[426]},{"name":"CLSID_DeviceControlCategory","features":[426]},{"name":"CLSID_DirectDrawProperties","features":[426]},{"name":"CLSID_DirectShowPluginControl","features":[426]},{"name":"CLSID_Dither","features":[426]},{"name":"CLSID_DtvCcFilter","features":[426]},{"name":"CLSID_DvdGraphBuilder","features":[426]},{"name":"CLSID_EVRPlaybackPipelineOptimizer","features":[426]},{"name":"CLSID_EVRTearlessWindowPresenter9","features":[426]},{"name":"CLSID_EnhancedVideoRenderer","features":[426]},{"name":"CLSID_FGControl","features":[426]},{"name":"CLSID_FileSource","features":[426]},{"name":"CLSID_FileWriter","features":[426]},{"name":"CLSID_FilterGraph","features":[426]},{"name":"CLSID_FilterGraphNoThread","features":[426]},{"name":"CLSID_FilterGraphPrivateThread","features":[426]},{"name":"CLSID_FilterMapper","features":[426]},{"name":"CLSID_FilterMapper2","features":[426]},{"name":"CLSID_FrameServerNetworkCameraSource","features":[426]},{"name":"CLSID_HttpSchemePlugin","features":[426]},{"name":"CLSID_ICodecAPIProxy","features":[426]},{"name":"CLSID_IVideoEncoderCodecAPIProxy","features":[426]},{"name":"CLSID_IVideoEncoderProxy","features":[426]},{"name":"CLSID_InfTee","features":[426]},{"name":"CLSID_LegacyAmFilterCategory","features":[426]},{"name":"CLSID_Line21Decoder","features":[426]},{"name":"CLSID_Line21Decoder2","features":[426]},{"name":"CLSID_MFByteStreamProxyClassFactory","features":[426]},{"name":"CLSID_MFCaptureEngine","features":[426]},{"name":"CLSID_MFCaptureEngineClassFactory","features":[426]},{"name":"CLSID_MFImageSharingEngineClassFactory","features":[426]},{"name":"CLSID_MFMediaEngineClassFactory","features":[426]},{"name":"CLSID_MFMediaSharingEngineClassFactory","features":[426]},{"name":"CLSID_MFReadWriteClassFactory","features":[426]},{"name":"CLSID_MFSinkWriter","features":[426]},{"name":"CLSID_MFSourceReader","features":[426]},{"name":"CLSID_MFSourceResolver","features":[426]},{"name":"CLSID_MFVideoMixer9","features":[426]},{"name":"CLSID_MFVideoPresenter9","features":[426]},{"name":"CLSID_MJPGEnc","features":[426]},{"name":"CLSID_MMSPLITTER","features":[426]},{"name":"CLSID_MOVReader","features":[426]},{"name":"CLSID_MP3DecMediaObject","features":[426]},{"name":"CLSID_MPEG1Doc","features":[426]},{"name":"CLSID_MPEG1PacketPlayer","features":[426]},{"name":"CLSID_MPEG1Splitter","features":[426]},{"name":"CLSID_MPEG2ByteStreamPlugin","features":[426]},{"name":"CLSID_MPEG2DLNASink","features":[426]},{"name":"CLSID_MPEG2Demultiplexer","features":[426]},{"name":"CLSID_MPEG2Demultiplexer_NoClock","features":[426]},{"name":"CLSID_MSAACDecMFT","features":[426]},{"name":"CLSID_MSDDPlusDecMFT","features":[426]},{"name":"CLSID_MSH264DecoderMFT","features":[426]},{"name":"CLSID_MSH264EncoderMFT","features":[426]},{"name":"CLSID_MSH265DecoderMFT","features":[426]},{"name":"CLSID_MSMPEGAudDecMFT","features":[426]},{"name":"CLSID_MSMPEGDecoderMFT","features":[426]},{"name":"CLSID_MSOpusDecoder","features":[426]},{"name":"CLSID_MSVPxDecoder","features":[426]},{"name":"CLSID_MediaEncoderCategory","features":[426]},{"name":"CLSID_MediaMultiplexerCategory","features":[426]},{"name":"CLSID_MediaPropertyBag","features":[426]},{"name":"CLSID_MemoryAllocator","features":[426]},{"name":"CLSID_MidiRendererCategory","features":[426]},{"name":"CLSID_MjpegDec","features":[426]},{"name":"CLSID_ModexRenderer","features":[426]},{"name":"CLSID_Mpeg2VideoStreamAnalyzer","features":[426]},{"name":"CLSID_NetSchemePlugin","features":[426]},{"name":"CLSID_NetworkProvider","features":[426]},{"name":"CLSID_OverlayMixer","features":[426]},{"name":"CLSID_PerformanceProperties","features":[426]},{"name":"CLSID_PersistMonikerPID","features":[426]},{"name":"CLSID_PlayToSourceClassFactory","features":[426]},{"name":"CLSID_ProtoFilterGraph","features":[426]},{"name":"CLSID_QTDec","features":[426]},{"name":"CLSID_QualityProperties","features":[426]},{"name":"CLSID_QuickTimeParser","features":[426]},{"name":"CLSID_SBE2File","features":[426]},{"name":"CLSID_SBE2FileScan","features":[426]},{"name":"CLSID_SBE2MediaTypeProfile","features":[426]},{"name":"CLSID_SBE2Sink","features":[426]},{"name":"CLSID_SeekingPassThru","features":[426]},{"name":"CLSID_SmartTee","features":[426]},{"name":"CLSID_StreamBufferComposeRecording","features":[426]},{"name":"CLSID_StreamBufferConfig","features":[426]},{"name":"CLSID_StreamBufferPropertyHandler","features":[426]},{"name":"CLSID_StreamBufferRecordingAttributes","features":[426]},{"name":"CLSID_StreamBufferSink","features":[426]},{"name":"CLSID_StreamBufferSource","features":[426]},{"name":"CLSID_StreamBufferThumbnailHandler","features":[426]},{"name":"CLSID_SubtitlesFilter","features":[426]},{"name":"CLSID_SystemClock","features":[426]},{"name":"CLSID_SystemDeviceEnum","features":[426]},{"name":"CLSID_TVAudioFilterPropertyPage","features":[426]},{"name":"CLSID_TVEFilterCCProperties","features":[426]},{"name":"CLSID_TVEFilterStatsProperties","features":[426]},{"name":"CLSID_TVEFilterTuneProperties","features":[426]},{"name":"CLSID_TVTunerFilterPropertyPage","features":[426]},{"name":"CLSID_TextRender","features":[426]},{"name":"CLSID_TransmitCategory","features":[426]},{"name":"CLSID_URLReader","features":[426]},{"name":"CLSID_UrlmonSchemePlugin","features":[426]},{"name":"CLSID_VBISurfaces","features":[426]},{"name":"CLSID_VPObject","features":[426]},{"name":"CLSID_VPVBIObject","features":[426]},{"name":"CLSID_VfwCapture","features":[426]},{"name":"CLSID_VideoCompressorCategory","features":[426]},{"name":"CLSID_VideoInputDeviceCategory","features":[426]},{"name":"CLSID_VideoMixingRenderer","features":[426]},{"name":"CLSID_VideoMixingRenderer9","features":[426]},{"name":"CLSID_VideoPortManager","features":[426]},{"name":"CLSID_VideoProcAmpPropertyPage","features":[426]},{"name":"CLSID_VideoProcessorMFT","features":[426]},{"name":"CLSID_VideoRenderer","features":[426]},{"name":"CLSID_VideoRendererDefault","features":[426]},{"name":"CLSID_VideoStreamConfigPropertyPage","features":[426]},{"name":"CLSID_WMADecMediaObject","features":[426]},{"name":"CLSID_WMAsfReader","features":[426]},{"name":"CLSID_WMAsfWriter","features":[426]},{"name":"CLSID_WMDRMSystemID","features":[426]},{"name":"CLSID_WMVDecoderMFT","features":[426]},{"name":"CLSID_WSTDecoder","features":[426]},{"name":"CLSID_WstDecoderPropertyPage","features":[426]},{"name":"CMP3DecMediaObject","features":[426]},{"name":"CMPEG2AudDecoderDS","features":[426]},{"name":"CMPEG2AudioEncoderMFT","features":[426]},{"name":"CMPEG2EncoderAudioDS","features":[426]},{"name":"CMPEG2EncoderDS","features":[426]},{"name":"CMPEG2EncoderVideoDS","features":[426]},{"name":"CMPEG2VidDecoderDS","features":[426]},{"name":"CMPEG2VideoEncoderMFT","features":[426]},{"name":"CMPEGAACDecMediaObject","features":[426]},{"name":"CMSAACDecMFT","features":[426]},{"name":"CMSAC3Enc","features":[426]},{"name":"CMSALACDecMFT","features":[426]},{"name":"CMSALACEncMFT","features":[426]},{"name":"CMSDDPlusDecMFT","features":[426]},{"name":"CMSDolbyDigitalEncMFT","features":[426]},{"name":"CMSFLACDecMFT","features":[426]},{"name":"CMSFLACEncMFT","features":[426]},{"name":"CMSH263EncoderMFT","features":[426]},{"name":"CMSH264DecoderMFT","features":[426]},{"name":"CMSH264EncoderMFT","features":[426]},{"name":"CMSH264RemuxMFT","features":[426]},{"name":"CMSH265EncoderMFT","features":[426]},{"name":"CMSMPEGAudDecMFT","features":[426]},{"name":"CMSMPEGDecoderMFT","features":[426]},{"name":"CMSOpusDecMFT","features":[426]},{"name":"CMSSCDecMediaObject","features":[426]},{"name":"CMSSCEncMediaObject","features":[426]},{"name":"CMSSCEncMediaObject2","features":[426]},{"name":"CMSVPXEncoderMFT","features":[426]},{"name":"CMSVideoDSPMFT","features":[426]},{"name":"CMpeg2DecMediaObject","features":[426]},{"name":"CMpeg43DecMediaObject","features":[426]},{"name":"CMpeg4DecMediaObject","features":[426]},{"name":"CMpeg4EncMediaObject","features":[426]},{"name":"CMpeg4sDecMFT","features":[426]},{"name":"CMpeg4sDecMediaObject","features":[426]},{"name":"CMpeg4sEncMediaObject","features":[426]},{"name":"CNokiaAACCCDecMediaObject","features":[426]},{"name":"CNokiaAACDecMediaObject","features":[426]},{"name":"CODECAPI_ALLSETTINGS","features":[426]},{"name":"CODECAPI_AUDIO_ENCODER","features":[426]},{"name":"CODECAPI_AVAudioChannelConfig","features":[426]},{"name":"CODECAPI_AVAudioChannelCount","features":[426]},{"name":"CODECAPI_AVAudioSampleRate","features":[426]},{"name":"CODECAPI_AVDDSurroundMode","features":[426]},{"name":"CODECAPI_AVDSPLoudnessEqualization","features":[426]},{"name":"CODECAPI_AVDSPSpeakerFill","features":[426]},{"name":"CODECAPI_AVDecAACDownmixMode","features":[426]},{"name":"CODECAPI_AVDecAudioDualMono","features":[426]},{"name":"CODECAPI_AVDecAudioDualMonoReproMode","features":[426]},{"name":"CODECAPI_AVDecCommonInputFormat","features":[426]},{"name":"CODECAPI_AVDecCommonMeanBitRate","features":[426]},{"name":"CODECAPI_AVDecCommonMeanBitRateInterval","features":[426]},{"name":"CODECAPI_AVDecCommonOutputFormat","features":[426]},{"name":"CODECAPI_AVDecDDDynamicRangeScaleHigh","features":[426]},{"name":"CODECAPI_AVDecDDDynamicRangeScaleLow","features":[426]},{"name":"CODECAPI_AVDecDDMatrixDecodingMode","features":[426]},{"name":"CODECAPI_AVDecDDOperationalMode","features":[426]},{"name":"CODECAPI_AVDecDDStereoDownMixMode","features":[426]},{"name":"CODECAPI_AVDecDisableVideoPostProcessing","features":[426]},{"name":"CODECAPI_AVDecHEAACDynamicRangeControl","features":[426]},{"name":"CODECAPI_AVDecMmcssClass","features":[426]},{"name":"CODECAPI_AVDecNumWorkerThreads","features":[426]},{"name":"CODECAPI_AVDecSoftwareDynamicFormatChange","features":[426]},{"name":"CODECAPI_AVDecVideoAcceleration_H264","features":[426]},{"name":"CODECAPI_AVDecVideoAcceleration_MPEG2","features":[426]},{"name":"CODECAPI_AVDecVideoAcceleration_VC1","features":[426]},{"name":"CODECAPI_AVDecVideoCodecType","features":[426]},{"name":"CODECAPI_AVDecVideoDXVABusEncryption","features":[426]},{"name":"CODECAPI_AVDecVideoDXVAMode","features":[426]},{"name":"CODECAPI_AVDecVideoDropPicWithMissingRef","features":[426]},{"name":"CODECAPI_AVDecVideoFastDecodeMode","features":[426]},{"name":"CODECAPI_AVDecVideoH264ErrorConcealment","features":[426]},{"name":"CODECAPI_AVDecVideoImageSize","features":[426]},{"name":"CODECAPI_AVDecVideoInputScanType","features":[426]},{"name":"CODECAPI_AVDecVideoMPEG2ErrorConcealment","features":[426]},{"name":"CODECAPI_AVDecVideoMaxCodedHeight","features":[426]},{"name":"CODECAPI_AVDecVideoMaxCodedWidth","features":[426]},{"name":"CODECAPI_AVDecVideoPixelAspectRatio","features":[426]},{"name":"CODECAPI_AVDecVideoProcDeinterlaceCSC","features":[426]},{"name":"CODECAPI_AVDecVideoSWPowerLevel","features":[426]},{"name":"CODECAPI_AVDecVideoSoftwareDeinterlaceMode","features":[426]},{"name":"CODECAPI_AVDecVideoThumbnailGenerationMode","features":[426]},{"name":"CODECAPI_AVEnableInLoopDeblockFilter","features":[426]},{"name":"CODECAPI_AVEncAACEnableVBR","features":[426]},{"name":"CODECAPI_AVEncAdaptiveMode","features":[426]},{"name":"CODECAPI_AVEncAudioDualMono","features":[426]},{"name":"CODECAPI_AVEncAudioInputContent","features":[426]},{"name":"CODECAPI_AVEncAudioIntervalToEncode","features":[426]},{"name":"CODECAPI_AVEncAudioIntervalToSkip","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel0","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel1","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel10","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel11","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel12","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel13","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel14","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel15","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel2","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel3","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel4","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel5","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel6","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel7","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel8","features":[426]},{"name":"CODECAPI_AVEncAudioMapDestChannel9","features":[426]},{"name":"CODECAPI_AVEncAudioMeanBitRate","features":[426]},{"name":"CODECAPI_AVEncChromaEncodeMode","features":[426]},{"name":"CODECAPI_AVEncChromaUpdateTime","features":[426]},{"name":"CODECAPI_AVEncCodecType","features":[426]},{"name":"CODECAPI_AVEncCommonAllowFrameDrops","features":[426]},{"name":"CODECAPI_AVEncCommonBufferInLevel","features":[426]},{"name":"CODECAPI_AVEncCommonBufferOutLevel","features":[426]},{"name":"CODECAPI_AVEncCommonBufferSize","features":[426]},{"name":"CODECAPI_AVEncCommonFormatConstraint","features":[426]},{"name":"CODECAPI_AVEncCommonLowLatency","features":[426]},{"name":"CODECAPI_AVEncCommonMaxBitRate","features":[426]},{"name":"CODECAPI_AVEncCommonMeanBitRate","features":[426]},{"name":"CODECAPI_AVEncCommonMeanBitRateInterval","features":[426]},{"name":"CODECAPI_AVEncCommonMinBitRate","features":[426]},{"name":"CODECAPI_AVEncCommonMultipassMode","features":[426]},{"name":"CODECAPI_AVEncCommonPassEnd","features":[426]},{"name":"CODECAPI_AVEncCommonPassStart","features":[426]},{"name":"CODECAPI_AVEncCommonQuality","features":[426]},{"name":"CODECAPI_AVEncCommonQualityVsSpeed","features":[426]},{"name":"CODECAPI_AVEncCommonRateControlMode","features":[426]},{"name":"CODECAPI_AVEncCommonRealTime","features":[426]},{"name":"CODECAPI_AVEncCommonStreamEndHandling","features":[426]},{"name":"CODECAPI_AVEncCommonTranscodeEncodingProfile","features":[426]},{"name":"CODECAPI_AVEncDDAtoDConverterType","features":[426]},{"name":"CODECAPI_AVEncDDCentreDownMixLevel","features":[426]},{"name":"CODECAPI_AVEncDDChannelBWLowPassFilter","features":[426]},{"name":"CODECAPI_AVEncDDCopyright","features":[426]},{"name":"CODECAPI_AVEncDDDCHighPassFilter","features":[426]},{"name":"CODECAPI_AVEncDDDialogNormalization","features":[426]},{"name":"CODECAPI_AVEncDDDigitalDeemphasis","features":[426]},{"name":"CODECAPI_AVEncDDDynamicRangeCompressionControl","features":[426]},{"name":"CODECAPI_AVEncDDHeadphoneMode","features":[426]},{"name":"CODECAPI_AVEncDDLFELowPassFilter","features":[426]},{"name":"CODECAPI_AVEncDDLoRoCenterMixLvl_x10","features":[426]},{"name":"CODECAPI_AVEncDDLoRoSurroundMixLvl_x10","features":[426]},{"name":"CODECAPI_AVEncDDLtRtCenterMixLvl_x10","features":[426]},{"name":"CODECAPI_AVEncDDLtRtSurroundMixLvl_x10","features":[426]},{"name":"CODECAPI_AVEncDDOriginalBitstream","features":[426]},{"name":"CODECAPI_AVEncDDPreferredStereoDownMixMode","features":[426]},{"name":"CODECAPI_AVEncDDProductionInfoExists","features":[426]},{"name":"CODECAPI_AVEncDDProductionMixLevel","features":[426]},{"name":"CODECAPI_AVEncDDProductionRoomType","features":[426]},{"name":"CODECAPI_AVEncDDRFPreEmphasisFilter","features":[426]},{"name":"CODECAPI_AVEncDDService","features":[426]},{"name":"CODECAPI_AVEncDDSurround3dBAttenuation","features":[426]},{"name":"CODECAPI_AVEncDDSurround90DegreeePhaseShift","features":[426]},{"name":"CODECAPI_AVEncDDSurroundDownMixLevel","features":[426]},{"name":"CODECAPI_AVEncDDSurroundExMode","features":[426]},{"name":"CODECAPI_AVEncEnableVideoProcessing","features":[426]},{"name":"CODECAPI_AVEncH264CABACEnable","features":[426]},{"name":"CODECAPI_AVEncH264PPSID","features":[426]},{"name":"CODECAPI_AVEncH264SPSID","features":[426]},{"name":"CODECAPI_AVEncInputVideoSystem","features":[426]},{"name":"CODECAPI_AVEncLowPowerEncoder","features":[426]},{"name":"CODECAPI_AVEncMP12MuxDVDNavPacks","features":[426]},{"name":"CODECAPI_AVEncMP12MuxEarliestPTS","features":[426]},{"name":"CODECAPI_AVEncMP12MuxInitialSCR","features":[426]},{"name":"CODECAPI_AVEncMP12MuxLargestPacketSize","features":[426]},{"name":"CODECAPI_AVEncMP12MuxMuxRate","features":[426]},{"name":"CODECAPI_AVEncMP12MuxNumStreams","features":[426]},{"name":"CODECAPI_AVEncMP12MuxPackSize","features":[426]},{"name":"CODECAPI_AVEncMP12MuxPacketOverhead","features":[426]},{"name":"CODECAPI_AVEncMP12MuxSysAudioLock","features":[426]},{"name":"CODECAPI_AVEncMP12MuxSysCSPS","features":[426]},{"name":"CODECAPI_AVEncMP12MuxSysFixed","features":[426]},{"name":"CODECAPI_AVEncMP12MuxSysRateBound","features":[426]},{"name":"CODECAPI_AVEncMP12MuxSysSTDBufferBound","features":[426]},{"name":"CODECAPI_AVEncMP12MuxSysVideoLock","features":[426]},{"name":"CODECAPI_AVEncMP12MuxTargetPacketizer","features":[426]},{"name":"CODECAPI_AVEncMP12PktzCopyright","features":[426]},{"name":"CODECAPI_AVEncMP12PktzInitialPTS","features":[426]},{"name":"CODECAPI_AVEncMP12PktzOriginal","features":[426]},{"name":"CODECAPI_AVEncMP12PktzPacketSize","features":[426]},{"name":"CODECAPI_AVEncMP12PktzSTDBuffer","features":[426]},{"name":"CODECAPI_AVEncMP12PktzStreamID","features":[426]},{"name":"CODECAPI_AVEncMPACodingMode","features":[426]},{"name":"CODECAPI_AVEncMPACopyright","features":[426]},{"name":"CODECAPI_AVEncMPAEmphasisType","features":[426]},{"name":"CODECAPI_AVEncMPAEnableRedundancyProtection","features":[426]},{"name":"CODECAPI_AVEncMPALayer","features":[426]},{"name":"CODECAPI_AVEncMPAOriginalBitstream","features":[426]},{"name":"CODECAPI_AVEncMPAPrivateUserBit","features":[426]},{"name":"CODECAPI_AVEncMPVAddSeqEndCode","features":[426]},{"name":"CODECAPI_AVEncMPVDefaultBPictureCount","features":[426]},{"name":"CODECAPI_AVEncMPVFrameFieldMode","features":[426]},{"name":"CODECAPI_AVEncMPVGOPOpen","features":[426]},{"name":"CODECAPI_AVEncMPVGOPSInSeq","features":[426]},{"name":"CODECAPI_AVEncMPVGOPSize","features":[426]},{"name":"CODECAPI_AVEncMPVGOPSizeMax","features":[426]},{"name":"CODECAPI_AVEncMPVGOPSizeMin","features":[426]},{"name":"CODECAPI_AVEncMPVGenerateHeaderPicDispExt","features":[426]},{"name":"CODECAPI_AVEncMPVGenerateHeaderPicExt","features":[426]},{"name":"CODECAPI_AVEncMPVGenerateHeaderSeqDispExt","features":[426]},{"name":"CODECAPI_AVEncMPVGenerateHeaderSeqExt","features":[426]},{"name":"CODECAPI_AVEncMPVGenerateHeaderSeqScaleExt","features":[426]},{"name":"CODECAPI_AVEncMPVIntraDCPrecision","features":[426]},{"name":"CODECAPI_AVEncMPVIntraVLCTable","features":[426]},{"name":"CODECAPI_AVEncMPVLevel","features":[426]},{"name":"CODECAPI_AVEncMPVProfile","features":[426]},{"name":"CODECAPI_AVEncMPVQScaleType","features":[426]},{"name":"CODECAPI_AVEncMPVQuantMatrixChromaIntra","features":[426]},{"name":"CODECAPI_AVEncMPVQuantMatrixChromaNonIntra","features":[426]},{"name":"CODECAPI_AVEncMPVQuantMatrixIntra","features":[426]},{"name":"CODECAPI_AVEncMPVQuantMatrixNonIntra","features":[426]},{"name":"CODECAPI_AVEncMPVScanPattern","features":[426]},{"name":"CODECAPI_AVEncMPVSceneDetection","features":[426]},{"name":"CODECAPI_AVEncMPVUseConcealmentMotionVectors","features":[426]},{"name":"CODECAPI_AVEncMaxFrameRate","features":[426]},{"name":"CODECAPI_AVEncMuxOutputStreamType","features":[426]},{"name":"CODECAPI_AVEncNoInputCopy","features":[426]},{"name":"CODECAPI_AVEncNumWorkerThreads","features":[426]},{"name":"CODECAPI_AVEncProgressiveUpdateTime","features":[426]},{"name":"CODECAPI_AVEncSliceControlMode","features":[426]},{"name":"CODECAPI_AVEncSliceControlSize","features":[426]},{"name":"CODECAPI_AVEncSliceGenerationMode","features":[426]},{"name":"CODECAPI_AVEncStatAudioAverageBPS","features":[426]},{"name":"CODECAPI_AVEncStatAudioAveragePCMValue","features":[426]},{"name":"CODECAPI_AVEncStatAudioPeakPCMValue","features":[426]},{"name":"CODECAPI_AVEncStatAverageBPS","features":[426]},{"name":"CODECAPI_AVEncStatCommonCompletedPasses","features":[426]},{"name":"CODECAPI_AVEncStatHardwareBandwidthUtilitization","features":[426]},{"name":"CODECAPI_AVEncStatHardwareProcessorUtilitization","features":[426]},{"name":"CODECAPI_AVEncStatMPVSkippedEmptyFrames","features":[426]},{"name":"CODECAPI_AVEncStatVideoCodedFrames","features":[426]},{"name":"CODECAPI_AVEncStatVideoOutputFrameRate","features":[426]},{"name":"CODECAPI_AVEncStatVideoTotalFrames","features":[426]},{"name":"CODECAPI_AVEncStatWMVCBAvg","features":[426]},{"name":"CODECAPI_AVEncStatWMVCBMax","features":[426]},{"name":"CODECAPI_AVEncStatWMVDecoderComplexityProfile","features":[426]},{"name":"CODECAPI_AVEncTileColumns","features":[426]},{"name":"CODECAPI_AVEncTileRows","features":[426]},{"name":"CODECAPI_AVEncVideoCBRMotionTradeoff","features":[426]},{"name":"CODECAPI_AVEncVideoCTBSize","features":[426]},{"name":"CODECAPI_AVEncVideoCodedVideoAccessUnitSize","features":[426]},{"name":"CODECAPI_AVEncVideoConsecutiveFramesForLayer","features":[426]},{"name":"CODECAPI_AVEncVideoContentType","features":[426]},{"name":"CODECAPI_AVEncVideoDefaultUpperFieldDominant","features":[426]},{"name":"CODECAPI_AVEncVideoDirtyRectEnabled","features":[426]},{"name":"CODECAPI_AVEncVideoDisplayDimension","features":[426]},{"name":"CODECAPI_AVEncVideoEncodeDimension","features":[426]},{"name":"CODECAPI_AVEncVideoEncodeFrameTypeQP","features":[426]},{"name":"CODECAPI_AVEncVideoEncodeOffsetOrigin","features":[426]},{"name":"CODECAPI_AVEncVideoEncodeQP","features":[426]},{"name":"CODECAPI_AVEncVideoFieldSwap","features":[426]},{"name":"CODECAPI_AVEncVideoForceKeyFrame","features":[426]},{"name":"CODECAPI_AVEncVideoForceSourceScanType","features":[426]},{"name":"CODECAPI_AVEncVideoGradualIntraRefresh","features":[426]},{"name":"CODECAPI_AVEncVideoHeaderDropFrame","features":[426]},{"name":"CODECAPI_AVEncVideoHeaderFrames","features":[426]},{"name":"CODECAPI_AVEncVideoHeaderHours","features":[426]},{"name":"CODECAPI_AVEncVideoHeaderMinutes","features":[426]},{"name":"CODECAPI_AVEncVideoHeaderSeconds","features":[426]},{"name":"CODECAPI_AVEncVideoInputChromaResolution","features":[426]},{"name":"CODECAPI_AVEncVideoInputChromaSubsampling","features":[426]},{"name":"CODECAPI_AVEncVideoInputColorLighting","features":[426]},{"name":"CODECAPI_AVEncVideoInputColorNominalRange","features":[426]},{"name":"CODECAPI_AVEncVideoInputColorPrimaries","features":[426]},{"name":"CODECAPI_AVEncVideoInputColorTransferFunction","features":[426]},{"name":"CODECAPI_AVEncVideoInputColorTransferMatrix","features":[426]},{"name":"CODECAPI_AVEncVideoInstantTemporalUpSwitching","features":[426]},{"name":"CODECAPI_AVEncVideoIntraLayerPrediction","features":[426]},{"name":"CODECAPI_AVEncVideoInverseTelecineEnable","features":[426]},{"name":"CODECAPI_AVEncVideoInverseTelecineThreshold","features":[426]},{"name":"CODECAPI_AVEncVideoLTRBufferControl","features":[426]},{"name":"CODECAPI_AVEncVideoMarkLTRFrame","features":[426]},{"name":"CODECAPI_AVEncVideoMaxCTBSize","features":[426]},{"name":"CODECAPI_AVEncVideoMaxKeyframeDistance","features":[426]},{"name":"CODECAPI_AVEncVideoMaxNumRefFrame","features":[426]},{"name":"CODECAPI_AVEncVideoMaxNumRefFrameForLayer","features":[426]},{"name":"CODECAPI_AVEncVideoMaxQP","features":[426]},{"name":"CODECAPI_AVEncVideoMaxTemporalLayers","features":[426]},{"name":"CODECAPI_AVEncVideoMeanAbsoluteDifference","features":[426]},{"name":"CODECAPI_AVEncVideoMinQP","features":[426]},{"name":"CODECAPI_AVEncVideoNoOfFieldsToEncode","features":[426]},{"name":"CODECAPI_AVEncVideoNoOfFieldsToSkip","features":[426]},{"name":"CODECAPI_AVEncVideoNumGOPsPerIDR","features":[426]},{"name":"CODECAPI_AVEncVideoOutputChromaResolution","features":[426]},{"name":"CODECAPI_AVEncVideoOutputChromaSubsampling","features":[426]},{"name":"CODECAPI_AVEncVideoOutputColorLighting","features":[426]},{"name":"CODECAPI_AVEncVideoOutputColorNominalRange","features":[426]},{"name":"CODECAPI_AVEncVideoOutputColorPrimaries","features":[426]},{"name":"CODECAPI_AVEncVideoOutputColorTransferFunction","features":[426]},{"name":"CODECAPI_AVEncVideoOutputColorTransferMatrix","features":[426]},{"name":"CODECAPI_AVEncVideoOutputFrameRate","features":[426]},{"name":"CODECAPI_AVEncVideoOutputFrameRateConversion","features":[426]},{"name":"CODECAPI_AVEncVideoOutputScanType","features":[426]},{"name":"CODECAPI_AVEncVideoPixelAspectRatio","features":[426]},{"name":"CODECAPI_AVEncVideoROIEnabled","features":[426]},{"name":"CODECAPI_AVEncVideoRateControlParams","features":[426]},{"name":"CODECAPI_AVEncVideoSelectLayer","features":[426]},{"name":"CODECAPI_AVEncVideoSourceFilmContent","features":[426]},{"name":"CODECAPI_AVEncVideoSourceIsBW","features":[426]},{"name":"CODECAPI_AVEncVideoSupportedControls","features":[426]},{"name":"CODECAPI_AVEncVideoTemporalLayerCount","features":[426]},{"name":"CODECAPI_AVEncVideoUsage","features":[426]},{"name":"CODECAPI_AVEncVideoUseLTRFrame","features":[426]},{"name":"CODECAPI_AVEncWMVDecoderComplexity","features":[426]},{"name":"CODECAPI_AVEncWMVInterlacedEncoding","features":[426]},{"name":"CODECAPI_AVEncWMVKeyFrameBufferLevelMarker","features":[426]},{"name":"CODECAPI_AVEncWMVKeyFrameDistance","features":[426]},{"name":"CODECAPI_AVEncWMVProduceDummyFrames","features":[426]},{"name":"CODECAPI_AVLowLatencyMode","features":[426]},{"name":"CODECAPI_AVPriorityControl","features":[426]},{"name":"CODECAPI_AVRealtimeControl","features":[426]},{"name":"CODECAPI_AVScenarioInfo","features":[426]},{"name":"CODECAPI_CHANGELISTS","features":[426]},{"name":"CODECAPI_CURRENTCHANGELIST","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputAAC","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputDTS","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputDolby","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputDolbyDigitalPlus","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputHEAAC","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputMPEG","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputPCM","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputWMA","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioInputWMAPro","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM_Headphones","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM_Stereo_Auto","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM_Stereo_MatrixEncoded","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_SPDIF_Bitstream","features":[426]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_SPDIF_PCM","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatATSC","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVB","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVD_DashVR","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVD_PlusVR","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVD_V","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatHighMAT","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatHighMPV","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatMP3","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatSVCD","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatUnSpecified","features":[426]},{"name":"CODECAPI_GUID_AVEncCommonFormatVCD","features":[426]},{"name":"CODECAPI_GUID_AVEncDTS","features":[426]},{"name":"CODECAPI_GUID_AVEncDTSHD","features":[426]},{"name":"CODECAPI_GUID_AVEncDV","features":[426]},{"name":"CODECAPI_GUID_AVEncDolbyDigitalConsumer","features":[426]},{"name":"CODECAPI_GUID_AVEncDolbyDigitalPlus","features":[426]},{"name":"CODECAPI_GUID_AVEncDolbyDigitalPro","features":[426]},{"name":"CODECAPI_GUID_AVEncH264Video","features":[426]},{"name":"CODECAPI_GUID_AVEncMLP","features":[426]},{"name":"CODECAPI_GUID_AVEncMPEG1Audio","features":[426]},{"name":"CODECAPI_GUID_AVEncMPEG1Video","features":[426]},{"name":"CODECAPI_GUID_AVEncMPEG2Audio","features":[426]},{"name":"CODECAPI_GUID_AVEncMPEG2Video","features":[426]},{"name":"CODECAPI_GUID_AVEncPCM","features":[426]},{"name":"CODECAPI_GUID_AVEncSDDS","features":[426]},{"name":"CODECAPI_GUID_AVEncWMALossless","features":[426]},{"name":"CODECAPI_GUID_AVEncWMAPro","features":[426]},{"name":"CODECAPI_GUID_AVEncWMAVoice","features":[426]},{"name":"CODECAPI_GUID_AVEncWMV","features":[426]},{"name":"CODECAPI_GUID_AVEndMPEG4Video","features":[426]},{"name":"CODECAPI_GetOPMContext","features":[426]},{"name":"CODECAPI_SETALLDEFAULTS","features":[426]},{"name":"CODECAPI_SUPPORTSEVENTS","features":[426]},{"name":"CODECAPI_SetHDCPManagerContext","features":[426]},{"name":"CODECAPI_VIDEO_ENCODER","features":[426]},{"name":"CODECAPI_VideoEncoderDisplayContentType","features":[426]},{"name":"COPP_ProtectionType_ACP","features":[426]},{"name":"COPP_ProtectionType_CGMSA","features":[426]},{"name":"COPP_ProtectionType_HDCP","features":[426]},{"name":"COPP_ProtectionType_Mask","features":[426]},{"name":"COPP_ProtectionType_None","features":[426]},{"name":"COPP_ProtectionType_Reserved","features":[426]},{"name":"COPP_ProtectionType_Unknown","features":[426]},{"name":"CPK_DS_AC3Decoder","features":[426]},{"name":"CPK_DS_MPEG2Decoder","features":[426]},{"name":"CResamplerMediaObject","features":[426]},{"name":"CResizerDMO","features":[426]},{"name":"CResizerMediaObject","features":[426]},{"name":"CShotDetectorDmo","features":[426]},{"name":"CSmpteTransformsDmo","features":[426]},{"name":"CThumbnailGeneratorDmo","features":[426]},{"name":"CTocGeneratorDmo","features":[426]},{"name":"CVodafoneAACCCDecMediaObject","features":[426]},{"name":"CVodafoneAACDecMediaObject","features":[426]},{"name":"CWMADecMediaObject","features":[426]},{"name":"CWMAEncMediaObject","features":[426]},{"name":"CWMATransMediaObject","features":[426]},{"name":"CWMAudioAEC","features":[426]},{"name":"CWMAudioCAPXGFXAPO","features":[426]},{"name":"CWMAudioCAPXLFXAPO","features":[426]},{"name":"CWMAudioGFXAPO","features":[426]},{"name":"CWMAudioLFXAPO","features":[426]},{"name":"CWMAudioSpdTxDMO","features":[426]},{"name":"CWMSPDecMediaObject","features":[426]},{"name":"CWMSPEncMediaObject","features":[426]},{"name":"CWMSPEncMediaObject2","features":[426]},{"name":"CWMTDecMediaObject","features":[426]},{"name":"CWMTEncMediaObject","features":[426]},{"name":"CWMV9EncMediaObject","features":[426]},{"name":"CWMVDecMediaObject","features":[426]},{"name":"CWMVEncMediaObject2","features":[426]},{"name":"CWMVXEncMediaObject","features":[426]},{"name":"CWVC1DecMediaObject","features":[426]},{"name":"CWVC1EncMediaObject","features":[426]},{"name":"CZuneAACCCDecMediaObject","features":[426]},{"name":"CZuneM4S2DecMediaObject","features":[426]},{"name":"CodecAPIEventData","features":[426]},{"name":"CreateNamedPropertyStore","features":[426,374]},{"name":"CreatePropertyStore","features":[426,374]},{"name":"D3D12_BITSTREAM_ENCRYPTION_TYPE","features":[426]},{"name":"D3D12_BITSTREAM_ENCRYPTION_TYPE_NONE","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ARCHITECTURE","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODER_HEAP_SIZE","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODER_HEAP_SIZE1","features":[303,391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_CONVERSION_SUPPORT","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_FORMATS","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_FORMAT_COUNT","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_HISTOGRAM","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_PROFILES","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_PROFILE_COUNT","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_PROTECTED_RESOURCES","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_CODEC","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_CONFIG","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_HEAP_SIZE","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_INPUT_FORMAT","features":[303,391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_INTRA_REFRESH_MODE","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_OUTPUT_RESOLUTION","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_OUTPUT_RESOLUTION_RATIOS_COUNT","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_PROFILE_LEVEL","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_RATE_CONTROL_MODE","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_RESOLUTION_SUPPORT_LIMITS","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_RESOURCE_REQUIREMENTS","features":[303,391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_SUPPORT","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_SUPPORT1","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMANDS","features":[350,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_COUNT","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_PARAMETERS","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_PARAMETER_COUNT","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_SIZE","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_FEATURE_AREA_SUPPORT","features":[303,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR","features":[391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR_PROTECTED_RESOURCES","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR_SIZE","features":[303,391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESSOR_SIZE","features":[303,391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESSOR_SIZE1","features":[303,391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_MAX_INPUT_STREAMS","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_PROTECTED_RESOURCES","features":[426]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_REFERENCE_INFO","features":[303,391,426]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_SUPPORT","features":[391,426]},{"name":"D3D12_FEATURE_VIDEO","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ARCHITECTURE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODER_HEAP_SIZE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODER_HEAP_SIZE1","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_CONVERSION_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_FORMATS","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_FORMAT_COUNT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_HISTOGRAM","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_PROFILES","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_PROFILE_COUNT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_PROTECTED_RESOURCES","features":[426]},{"name":"D3D12_FEATURE_VIDEO_DECODE_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_CODEC","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_CONFIG","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_HEAP_SIZE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_INPUT_FORMAT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_INTRA_REFRESH_MODE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_OUTPUT_RESOLUTION","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_OUTPUT_RESOLUTION_RATIOS_COUNT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_PROFILE_LEVEL","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_RATE_CONTROL_MODE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_RESOURCE_REQUIREMENTS","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_SUPPORT1","features":[426]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMANDS","features":[426]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_COUNT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_PARAMETERS","features":[426]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_PARAMETER_COUNT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_SIZE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_FEATURE_AREA_SUPPORT","features":[426]},{"name":"D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR","features":[426]},{"name":"D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR_PROTECTED_RESOURCES","features":[426]},{"name":"D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR_SIZE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_PROCESSOR_SIZE","features":[426]},{"name":"D3D12_FEATURE_VIDEO_PROCESSOR_SIZE1","features":[426]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_MAX_INPUT_STREAMS","features":[426]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_PROTECTED_RESOURCES","features":[426]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_REFERENCE_INFO","features":[426]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_SUPPORT","features":[426]},{"name":"D3D12_QUERY_DATA_VIDEO_DECODE_STATISTICS","features":[391,426]},{"name":"D3D12_RESOLVE_VIDEO_MOTION_VECTOR_HEAP_INPUT","features":[350,426]},{"name":"D3D12_RESOLVE_VIDEO_MOTION_VECTOR_HEAP_OUTPUT","features":[350,426]},{"name":"D3D12_RESOURCE_COORDINATE","features":[426]},{"name":"D3D12_VIDEO_DECODER_DESC","features":[426]},{"name":"D3D12_VIDEO_DECODER_HEAP_DESC","features":[391,426]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE","features":[426]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_INVERSE_QUANTIZATION_MATRIX","features":[426]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_MAX_VALID","features":[426]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_PICTURE_PARAMETERS","features":[426]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_SLICE_CONTROL","features":[426]},{"name":"D3D12_VIDEO_DECODE_COMPRESSED_BITSTREAM","features":[350,426]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAGS","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_ALLOW_RESOLUTION_CHANGE_ON_NON_KEY_FRAME","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_HEIGHT_ALIGNMENT_MULTIPLE_32_REQUIRED","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_POST_PROCESSING_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_REFERENCE_ONLY_ALLOCATIONS_REQUIRED","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS","features":[303,350,391,426]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS1","features":[303,350,391,426]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_SUPPORT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_SUPPORT_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_SUPPORT_FLAG_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_DECODE_FRAME_ARGUMENT","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_A","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_B","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_A","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_B","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_G","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_R","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_U","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_V","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_Y","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_G","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_R","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_U","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_V","features":[426]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_Y","features":[426]},{"name":"D3D12_VIDEO_DECODE_INPUT_STREAM_ARGUMENTS","features":[350,426]},{"name":"D3D12_VIDEO_DECODE_OUTPUT_HISTOGRAM","features":[350,426]},{"name":"D3D12_VIDEO_DECODE_OUTPUT_STREAM_ARGUMENTS","features":[303,350,391,426]},{"name":"D3D12_VIDEO_DECODE_OUTPUT_STREAM_ARGUMENTS1","features":[303,350,391,426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_12BIT_PROFILE2","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_12BIT_PROFILE2_420","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_PROFILE0","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_PROFILE1","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_PROFILE2","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264_MULTIVIEW","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264_STEREO","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264_STEREO_PROGRESSIVE","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10_422","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10_444","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10_EXT","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN12","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN12_422","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN12_444","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN16","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN_444","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MONOCHROME","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MONOCHROME10","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG1_AND_MPEG2","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG2","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG4PT2_ADVSIMPLE_NOGMC","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG4PT2_SIMPLE","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VC1","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VC1_D2010","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VP8","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VP9","features":[426]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VP9_10BIT_PROFILE2","features":[426]},{"name":"D3D12_VIDEO_DECODE_REFERENCE_FRAMES","features":[350,426]},{"name":"D3D12_VIDEO_DECODE_STATUS","features":[426]},{"name":"D3D12_VIDEO_DECODE_STATUS_CONTINUE","features":[426]},{"name":"D3D12_VIDEO_DECODE_STATUS_CONTINUE_SKIP_DISPLAY","features":[426]},{"name":"D3D12_VIDEO_DECODE_STATUS_OK","features":[426]},{"name":"D3D12_VIDEO_DECODE_STATUS_RATE_EXCEEDED","features":[426]},{"name":"D3D12_VIDEO_DECODE_STATUS_RESTART","features":[426]},{"name":"D3D12_VIDEO_DECODE_SUPPORT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_DECODE_SUPPORT_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_DECODE_SUPPORT_FLAG_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_DECODE_TIER","features":[426]},{"name":"D3D12_VIDEO_DECODE_TIER_1","features":[426]},{"name":"D3D12_VIDEO_DECODE_TIER_2","features":[426]},{"name":"D3D12_VIDEO_DECODE_TIER_3","features":[426]},{"name":"D3D12_VIDEO_DECODE_TIER_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_CDEF_CONFIG","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_CODEC_CONFIGURATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_CODEC_CONFIGURATION_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_COMP_PREDICTION_TYPE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_COMP_PREDICTION_TYPE_COMPOUND_REFERENCE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_COMP_PREDICTION_TYPE_SINGLE_REFERENCE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_128x128_SUPERBLOCK","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_ALLOW_HIGH_PRECISION_MV","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_AUTO_SEGMENTATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_CDEF_FILTERING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_CUSTOM_SEGMENTATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_DELTA_LF_PARAMS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_DUAL_FILTER","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_FILTER_INTRA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_FORCED_INTEGER_MOTION_VECTORS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_FRAME_REFERENCE_MOTION_VECTORS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_INTERINTRA_COMPOUND","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_INTRA_BLOCK_COPY","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_INTRA_EDGE_FILTER","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_JNT_COMP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_LOOP_FILTER_DELTAS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_LOOP_RESTORATION_FILTER","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_MASKED_COMPOUND","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_MOTION_MODE_SWITCHABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_ORDER_HINT_TOOLS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_PALETTE_ENCODING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_QUANTIZATION_DELTAS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_QUANTIZATION_MATRIX","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_REDUCED_TX_SET","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_SKIP_MODE_PRESENT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_SUPER_RESOLUTION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_WARPED_MOTION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_SUPPORT","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_AREA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_CODEC_CONSTRAINT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_COLS_COUNT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_HARDWARE_CONSTRAINT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_NOT_SPECIFIED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_ROWS_COUNT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_TOTAL_TILES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_WIDTH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_INTER_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_INTRA_ONLY_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_KEY_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_SWITCH_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_INTER_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_INTRA_ONLY_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_KEY_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_SWITCH_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_BILINEAR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_EIGHTTAP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_EIGHTTAP_SHARP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_EIGHTTAP_SMOOTH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_BILINEAR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_EIGHTTAP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_EIGHTTAP_SHARP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_EIGHTTAP_SMOOTH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_SWITCHABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_SWITCHABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_0","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_0","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_0","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_0","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_0","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_0","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVEL_TIER_CONSTRAINTS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_CODEC_DATA","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ALLOW_HIGH_PRECISION_MV","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ALLOW_INTRA_BLOCK_COPY","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_DISABLE_CDF_UPDATE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_DISABLE_FRAME_END_UPDATE_CDF","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_ERROR_RESILIENT_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_FRAME_SEGMENTATION_AUTO","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_FRAME_SEGMENTATION_CUSTOM","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_PALETTE_ENCODING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_SKIP_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_WARPED_MOTION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_FORCE_INTEGER_MOTION_VECTORS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_FRAME_REFERENCE_MOTION_VECTORS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_MOTION_MODE_SWITCHABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_REDUCED_TX_SET","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_USE_SUPER_RESOLUTION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_SUBREGIONS_LAYOUT_DATA_TILES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_CDEF_DATA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_COMPOUND_PREDICTION_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_CONTEXT_UPDATE_TILE_ID","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_LOOP_FILTER","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_LOOP_FILTER_DELTA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_PRIMARY_REF_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_QUANTIZATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_QUANTIZATION_DELTA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_REFERENCE_INDICES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE_HIGH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE_MAIN","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE_PROFESSIONAL","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_PICTURE_DESCRIPTOR","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_PICTURE_WARPED_MOTION_INFO","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_AFFINE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_AFFINE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_IDENTITY","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_ROTZOOM","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_TRANSLATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_IDENTITY","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_ROTZOOM","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_TRANSLATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_CONFIG","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_128x128","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_256x256","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_32x32","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_64x64","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_128x128","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_256x256","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_32x32","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_64x64","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_DISABLED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_DISABLED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_SGRPROJ","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_SWITCHABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_WIENER","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_16x16","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_32x32","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_4x4","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_64x64","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_8x8","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_CONFIG","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MAP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_GLOBALMV","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_U","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_V","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_Y_H","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_Y_V","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_Q","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_REF_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_SKIP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_DISABLED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_GLOBALMV","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_U","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_V","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_Y_H","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_Y_V","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_Q","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_SKIP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_DISABLED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_REF_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENT_DATA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEQUENCE_STRUCTURE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TIER","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TIER_HIGH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TIER_MAIN","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_LARGEST","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_ONLY4x4","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_SELECT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_LARGEST","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_ONLY4x4","features":[426]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_SELECT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_LOOP_FILTER_CONFIG","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_LOOP_FILTER_DELTA_CONFIG","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_PICTURE_CONTROL_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_QUANTIZATION_CONFIG","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_QUANTIZATION_DELTA_CONFIG","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES_DISABLED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES_SPATIAL","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES_TEMPORAL","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_ALLOW_REQUEST_INTRA_CONSTRAINED_SLICES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_ENABLE_CABAC_ENCODING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_USE_ADAPTIVE_8x8_TRANSFORM","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_USE_CONSTRAINED_INTRAPREDICTION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_0_ALL_LUMA_CHROMA_SLICE_BLOCK_EDGES_ALWAYS_FILTERED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_1_DISABLE_ALL_SLICE_BLOCK_EDGES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_2_DISABLE_SLICE_BOUNDARIES_BLOCKS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_3_USE_TWO_STAGE_DEBLOCKING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_4_DISABLE_CHROMA_BLOCK_EDGES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_5_DISABLE_CHROMA_BLOCK_EDGES_AND_LUMA_BOUNDARIES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_6_DISABLE_CHROMA_BLOCK_EDGES_AND_USE_LUMA_TWO_STAGE_DEBLOCKING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_0_ALL_LUMA_CHROMA_SLICE_BLOCK_EDGES_ALWAYS_FILTERED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_1_DISABLE_ALL_SLICE_BLOCK_EDGES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_2_DISABLE_SLICE_BOUNDARIES_BLOCKS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_3_USE_TWO_STAGE_DEBLOCKING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_4_DISABLE_CHROMA_BLOCK_EDGES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_5_DISABLE_CHROMA_BLOCK_EDGES_AND_LUMA_BOUNDARIES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_6_DISABLE_CHROMA_BLOCK_EDGES_AND_USE_LUMA_TWO_STAGE_DEBLOCKING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_16x16","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_32x32","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_64x64","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_8x8","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ALLOW_REQUEST_INTRA_CONSTRAINED_SLICES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_DISABLE_LOOP_FILTER_ACROSS_SLICES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_LONG_TERM_REFERENCES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_SAO_FILTER","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_TRANSFORM_SKIPPING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_USE_ASYMETRIC_MOTION_PARTITION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_USE_CONSTRAINED_INTRAPREDICTION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_16x16","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_32x32","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_4x4","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_8x8","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_ADAPTIVE_8x8_TRANSFORM_ENCODING_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_BFRAME_LTR_COMBINED_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_CABAC_ENCODING_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_CONSTRAINED_INTRAPREDICTION_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_DIRECT_SPATIAL_ENCODING_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_DIRECT_TEMPORAL_ENCODING_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_INTRA_SLICE_CONSTRAINED_ENCODING_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_ASYMETRIC_MOTION_PARTITION_REQUIRED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_ASYMETRIC_MOTION_PARTITION_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_BFRAME_LTR_COMBINED_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CONSTRAINED_INTRAPREDICTION_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_DISABLING_LOOP_FILTER_ACROSS_SLICES_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_INTRA_SLICE_CONSTRAINED_ENCODING_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_P_FRAMES_IMPLEMENTED_AS_LOW_DELAY_B_FRAMES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_SAO_FILTER_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_COMPRESSED_BITSTREAM","features":[350,426]},{"name":"D3D12_VIDEO_ENCODER_DESC","features":[391,426]},{"name":"D3D12_VIDEO_ENCODER_ENCODEFRAME_INPUT_ARGUMENTS","features":[303,350,391,426]},{"name":"D3D12_VIDEO_ENCODER_ENCODEFRAME_OUTPUT_ARGUMENTS","features":[350,426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_CODEC_PICTURE_CONTROL_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_INVALID_METADATA_BUFFER_SOURCE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_INVALID_REFERENCE_PICTURES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_NO_ERROR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_RECONFIGURATION_REQUEST_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_SUBREGION_LAYOUT_CONFIGURATION_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_OPERATION_METADATA_BUFFER","features":[350,426]},{"name":"D3D12_VIDEO_ENCODER_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_CONFIG_SUPPORT","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_BYTES_PER_SUBREGION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_CONFIGURABLE_GRID_PARTITION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_FULL_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_SQUARE_UNITS_PER_SUBREGION_ROW_UNALIGNED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_UNIFORM_GRID_PARTITION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_UNIFORM_PARTITIONING_ROWS_PER_SUBREGION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_UNIFORM_PARTITIONING_SUBREGIONS_PER_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_METADATA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_B_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_IDR_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_I_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_P_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_B_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_IDR_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_I_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_P_FRAME","features":[426]},{"name":"D3D12_VIDEO_ENCODER_HEAP_DESC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_HEAP_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_HEAP_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH_MODE_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH_MODE_ROW_BASED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_11","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_12","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_13","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_1b","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_21","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_22","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_31","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_32","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_4","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_41","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_42","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_5","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_51","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_52","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_6","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_61","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_62","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_2","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_21","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_3","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_31","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_4","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_41","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_5","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_51","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_52","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_6","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_61","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_62","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVEL_SETTING","features":[426]},{"name":"D3D12_VIDEO_ENCODER_LEVEL_TIER_CONSTRAINTS_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_EIGHTH_PIXEL","features":[426]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_FULL_PIXEL","features":[426]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_HALF_PIXEL","features":[426]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_MAXIMUM","features":[426]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_QUARTER_PIXEL","features":[426]},{"name":"D3D12_VIDEO_ENCODER_OUTPUT_METADATA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_OUTPUT_METADATA_STATISTICS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_REQUEST_INTRA_CONSTRAINED_SLICES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_REFERENCE_PICTURE_LIST_MODIFICATION_OPERATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_REFERENCE_PICTURE_MARKING_OPERATION","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_REQUEST_INTRA_CONSTRAINED_SLICES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_DESC","features":[303,350,426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAG_USED_AS_REFERENCE_PICTURE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_SUBREGIONS_LAYOUT_DATA","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_SUBREGIONS_LAYOUT_DATA_SLICES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_RESOLUTION_DESC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_RESOLUTION_RATIO_DESC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_DESC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH_10","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264_MAIN","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN","features":[426]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL","features":[391,426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_ABSOLUTE_QP_MAP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CBR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CBR1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CONFIGURATION_PARAMS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CQP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CQP1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_DELTA_QP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_EXTENSION1_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_FRAME_ANALYSIS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_INITIAL_QP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_MAX_FRAME_SIZE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_QP_RANGE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_QUALITY_VS_SPEED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_VBV_SIZES","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_ABSOLUTE_QP_MAP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_CBR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_CQP","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_QVBR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_VBR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_QVBR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_QVBR1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_VBR","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_VBR1","features":[426]},{"name":"D3D12_VIDEO_ENCODER_RECONSTRUCTED_PICTURE","features":[350,426]},{"name":"D3D12_VIDEO_ENCODER_REFERENCE_PICTURE_DESCRIPTOR_H264","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_REFERENCE_PICTURE_DESCRIPTOR_HEVC","features":[303,426]},{"name":"D3D12_VIDEO_ENCODER_RESOLVE_METADATA_INPUT_ARGUMENTS","features":[350,391,426]},{"name":"D3D12_VIDEO_ENCODER_RESOLVE_METADATA_OUTPUT_ARGUMENTS","features":[350,426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_DESC","features":[391,426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_GOP_SEQUENCE_CHANGE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_RATE_CONTROL_CHANGE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_REQUEST_INTRA_REFRESH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_RESOLUTION_CHANGE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_SUBREGION_LAYOUT_CHANGE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_GOP_STRUCTURE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_GOP_STRUCTURE_H264","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_GOP_STRUCTURE_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_GENERAL_SUPPORT_OK","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_MOTION_ESTIMATION_PRECISION_MODE_LIMIT_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_ADJUSTABLE_QP_RANGE_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_DELTA_QP_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_EXTENSION1_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_FRAME_ANALYSIS_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_INITIAL_QP_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_MAX_FRAME_SIZE_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_QUALITY_VS_SPEED_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_RECONFIGURATION_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_VBV_SIZE_CONFIG_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RECONSTRUCTED_FRAMES_REQUIRE_TEXTURE_ARRAYS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RESOLUTION_RECONFIGURATION_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_SEQUENCE_GOP_RECONFIGURATION_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_SUBREGION_LAYOUT_RECONFIGURATION_AVAILABLE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_TIER_HEVC","features":[426]},{"name":"D3D12_VIDEO_ENCODER_TIER_HEVC_HIGH","features":[426]},{"name":"D3D12_VIDEO_ENCODER_TIER_HEVC_MAIN","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAGS","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_CODEC_CONFIGURATION_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_CODEC_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_GOP_STRUCTURE_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_INPUT_FORMAT_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_INTRA_REFRESH_MODE_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_RATE_CONTROL_CONFIGURATION_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_RATE_CONTROL_MODE_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_RESOLUTION_NOT_SUPPORTED_IN_LIST","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_SUBREGION_LAYOUT_DATA_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_SUBREGION_LAYOUT_MODE_NOT_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_ENCODE_REFERENCE_FRAMES","features":[350,426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_DESC","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_INFO","features":[350,426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAGS","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAG_READ","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAG_WRITE","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_INFO","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CAPS_INPUT","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CAPS_OUTPUT","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CREATION","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_DEVICE_EXECUTE_INPUT","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_DEVICE_EXECUTE_OUTPUT","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_EXECUTION","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_INITIALIZATION","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_DOUBLE","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_FLOAT","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_RESOURCE","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT16","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT32","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT64","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT8","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT16","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT32","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT64","features":[426]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT8","features":[426]},{"name":"D3D12_VIDEO_FIELD_TYPE","features":[426]},{"name":"D3D12_VIDEO_FIELD_TYPE_INTERLACED_BOTTOM_FIELD_FIRST","features":[426]},{"name":"D3D12_VIDEO_FIELD_TYPE_INTERLACED_TOP_FIELD_FIRST","features":[426]},{"name":"D3D12_VIDEO_FIELD_TYPE_NONE","features":[426]},{"name":"D3D12_VIDEO_FORMAT","features":[391,426]},{"name":"D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE","features":[426]},{"name":"D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE_FIELD_BASED","features":[426]},{"name":"D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE_NONE","features":[426]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT","features":[426]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_HORIZONTAL","features":[426]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_MONO","features":[426]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_NONE","features":[426]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_SEPARATE","features":[426]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_VERTICAL","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_DESC","features":[391,426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_INPUT","features":[350,426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_OUTPUT","features":[350,426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_16X16","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_8X8","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAG_16X16","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAG_8X8","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_FLAGS","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_FLAG_QUARTER_PEL","features":[426]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_QUARTER_PEL","features":[426]},{"name":"D3D12_VIDEO_MOTION_VECTOR_HEAP_DESC","features":[391,426]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_BLENDING","features":[303,426]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_BACKGROUND","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_DESTINATION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_OPAQUE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_SOURCE_STREAM","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAGS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_ANAMORPHIC_SCALING","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_COLOR_CORRECTION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_CUSTOM","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_DENOISE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_DERINGING","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_EDGE_ENHANCEMENT","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_FLESH_TONE_MAPPING","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_IMAGE_STABILIZATION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_SUPER_RESOLUTION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAG_BOB","features":[426]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAG_CUSTOM","features":[426]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAGS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_ALPHA_BLENDING","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_ALPHA_FILL","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_FLIP","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_LUMA_KEY","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_PIXEL_ASPECT_RATIO","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_ROTATION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_STEREO","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_ANAMORPHIC_SCALING","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_BRIGHTNESS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_CONTRAST","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_EDGE_ENHANCEMENT","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAGS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_ANAMORPHIC_SCALING","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_BRIGHTNESS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_CONTRAST","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_EDGE_ENHANCEMENT","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_HUE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_NOISE_REDUCTION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_SATURATION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_STEREO_ADJUSTMENT","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_HUE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_NOISE_REDUCTION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_RANGE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_SATURATION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_FILTER_STEREO_ADJUSTMENT","features":[426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM","features":[350,426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS","features":[303,350,426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS1","features":[303,350,426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_DESC","features":[303,391,426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAGS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAG_FRAME_DISCONTINUITY","features":[426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAG_FRAME_REPEAT","features":[426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_RATE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_LUMA_KEY","features":[303,426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_180","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_270","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_270_FLIP_HORIZONTAL","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_90","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_90_FLIP_HORIZONTAL","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_DEFAULT","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_FLIP_HORIZONTAL","features":[426]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_FLIP_VERTICAL","features":[426]},{"name":"D3D12_VIDEO_PROCESS_OUTPUT_STREAM","features":[350,426]},{"name":"D3D12_VIDEO_PROCESS_OUTPUT_STREAM_ARGUMENTS","features":[303,350,426]},{"name":"D3D12_VIDEO_PROCESS_OUTPUT_STREAM_DESC","features":[303,391,426]},{"name":"D3D12_VIDEO_PROCESS_REFERENCE_SET","features":[350,426]},{"name":"D3D12_VIDEO_PROCESS_SUPPORT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_PROCESS_SUPPORT_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_PROCESS_SUPPORT_FLAG_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_PROCESS_TRANSFORM","features":[303,426]},{"name":"D3D12_VIDEO_PROTECTED_RESOURCE_SUPPORT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_PROTECTED_RESOURCE_SUPPORT_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_PROTECTED_RESOURCE_SUPPORT_FLAG_SUPPORTED","features":[426]},{"name":"D3D12_VIDEO_SAMPLE","features":[391,426]},{"name":"D3D12_VIDEO_SCALE_SUPPORT","features":[426]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAGS","features":[426]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAG_EVEN_DIMENSIONS_ONLY","features":[426]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAG_NONE","features":[426]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAG_POW2_ONLY","features":[426]},{"name":"D3D12_VIDEO_SIZE_RANGE","features":[426]},{"name":"D3DCONTENTPROTECTIONCAPS","features":[426]},{"name":"D3DCONTENTPROTECTIONCAPS","features":[426]},{"name":"D3DOVERLAYCAPS","features":[426]},{"name":"DEVICE_INFO","features":[426]},{"name":"DEVPKEY_DeviceInterface_IsVirtualCamera","features":[336,426]},{"name":"DEVPKEY_DeviceInterface_IsWindowsCameraEffectAvailable","features":[336,426]},{"name":"DEVPKEY_DeviceInterface_VirtualCameraAssociatedCameras","features":[336,426]},{"name":"DIRTYRECT_INFO","features":[303,426]},{"name":"DSATTRIB_CAPTURE_STREAMTIME","features":[426]},{"name":"DSATTRIB_CC_CONTAINER_INFO","features":[426]},{"name":"DSATTRIB_DSHOW_STREAM_DESC","features":[426]},{"name":"DSATTRIB_OptionalVideoAttributes","features":[426]},{"name":"DSATTRIB_PBDATAG_ATTRIBUTE","features":[426]},{"name":"DSATTRIB_PicSampleSeq","features":[426]},{"name":"DSATTRIB_SAMPLE_LIVE_STREAM_TIME","features":[426]},{"name":"DSATTRIB_TRANSPORT_PROPERTIES","features":[426]},{"name":"DSATTRIB_UDCRTag","features":[426]},{"name":"DXVA2CreateDirect3DDeviceManager9","features":[426]},{"name":"DXVA2CreateVideoService","features":[312,426]},{"name":"DXVA2_AES_CTR_IV","features":[426]},{"name":"DXVA2_AYUVSample16","features":[426]},{"name":"DXVA2_AYUVSample8","features":[426]},{"name":"DXVA2_BitStreamDateBufferType","features":[426]},{"name":"DXVA2_BufferfType","features":[426]},{"name":"DXVA2_ConfigPictureDecode","features":[426]},{"name":"DXVA2_DECODE_GET_DRIVER_HANDLE","features":[426]},{"name":"DXVA2_DECODE_SPECIFY_ENCRYPTED_BLOCKS","features":[426]},{"name":"DXVA2_DeblockingControlBufferType","features":[426]},{"name":"DXVA2_DecodeBufferDesc","features":[426]},{"name":"DXVA2_DecodeExecuteParams","features":[426]},{"name":"DXVA2_DecodeExtensionData","features":[426]},{"name":"DXVA2_DeinterlaceTech","features":[426]},{"name":"DXVA2_DeinterlaceTech_BOBLineReplicate","features":[426]},{"name":"DXVA2_DeinterlaceTech_BOBVerticalStretch","features":[426]},{"name":"DXVA2_DeinterlaceTech_BOBVerticalStretch4Tap","features":[426]},{"name":"DXVA2_DeinterlaceTech_EdgeFiltering","features":[426]},{"name":"DXVA2_DeinterlaceTech_FieldAdaptive","features":[426]},{"name":"DXVA2_DeinterlaceTech_InverseTelecine","features":[426]},{"name":"DXVA2_DeinterlaceTech_Mask","features":[426]},{"name":"DXVA2_DeinterlaceTech_MedianFiltering","features":[426]},{"name":"DXVA2_DeinterlaceTech_MotionVectorSteered","features":[426]},{"name":"DXVA2_DeinterlaceTech_PixelAdaptive","features":[426]},{"name":"DXVA2_DeinterlaceTech_Unknown","features":[426]},{"name":"DXVA2_DestData","features":[426]},{"name":"DXVA2_DestData_Mask","features":[426]},{"name":"DXVA2_DestData_RFF","features":[426]},{"name":"DXVA2_DestData_RFF_TFF_Present","features":[426]},{"name":"DXVA2_DestData_TFF","features":[426]},{"name":"DXVA2_DetailFilterChromaLevel","features":[426]},{"name":"DXVA2_DetailFilterChromaRadius","features":[426]},{"name":"DXVA2_DetailFilterChromaThreshold","features":[426]},{"name":"DXVA2_DetailFilterLumaLevel","features":[426]},{"name":"DXVA2_DetailFilterLumaRadius","features":[426]},{"name":"DXVA2_DetailFilterLumaThreshold","features":[426]},{"name":"DXVA2_DetailFilterTech","features":[426]},{"name":"DXVA2_DetailFilterTech_Edge","features":[426]},{"name":"DXVA2_DetailFilterTech_Mask","features":[426]},{"name":"DXVA2_DetailFilterTech_Sharpening","features":[426]},{"name":"DXVA2_DetailFilterTech_Unknown","features":[426]},{"name":"DXVA2_DetailFilterTech_Unsupported","features":[426]},{"name":"DXVA2_E_NEW_VIDEO_DEVICE","features":[426]},{"name":"DXVA2_E_NOT_AVAILABLE","features":[426]},{"name":"DXVA2_E_NOT_INITIALIZED","features":[426]},{"name":"DXVA2_E_VIDEO_DEVICE_LOCKED","features":[426]},{"name":"DXVA2_ExtendedFormat","features":[426]},{"name":"DXVA2_FilmGrainBuffer","features":[426]},{"name":"DXVA2_FilterType","features":[426]},{"name":"DXVA2_FilterValues","features":[426]},{"name":"DXVA2_Fixed32","features":[426]},{"name":"DXVA2_Frequency","features":[426]},{"name":"DXVA2_InverseQuantizationMatrixBufferType","features":[426]},{"name":"DXVA2_MacroBlockControlBufferType","features":[426]},{"name":"DXVA2_ModeH264_A","features":[426]},{"name":"DXVA2_ModeH264_B","features":[426]},{"name":"DXVA2_ModeH264_C","features":[426]},{"name":"DXVA2_ModeH264_D","features":[426]},{"name":"DXVA2_ModeH264_E","features":[426]},{"name":"DXVA2_ModeH264_F","features":[426]},{"name":"DXVA2_ModeH264_VLD_Multiview_NoFGT","features":[426]},{"name":"DXVA2_ModeH264_VLD_Stereo_NoFGT","features":[426]},{"name":"DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT","features":[426]},{"name":"DXVA2_ModeH264_VLD_WithFMOASO_NoFGT","features":[426]},{"name":"DXVA2_ModeHEVC_VLD_Main","features":[426]},{"name":"DXVA2_ModeHEVC_VLD_Main10","features":[426]},{"name":"DXVA2_ModeMPEG1_VLD","features":[426]},{"name":"DXVA2_ModeMPEG2_IDCT","features":[426]},{"name":"DXVA2_ModeMPEG2_MoComp","features":[426]},{"name":"DXVA2_ModeMPEG2_VLD","features":[426]},{"name":"DXVA2_ModeMPEG2and1_VLD","features":[426]},{"name":"DXVA2_ModeMPEG4pt2_VLD_AdvSimple_GMC","features":[426]},{"name":"DXVA2_ModeMPEG4pt2_VLD_AdvSimple_NoGMC","features":[426]},{"name":"DXVA2_ModeMPEG4pt2_VLD_Simple","features":[426]},{"name":"DXVA2_ModeVC1_A","features":[426]},{"name":"DXVA2_ModeVC1_B","features":[426]},{"name":"DXVA2_ModeVC1_C","features":[426]},{"name":"DXVA2_ModeVC1_D","features":[426]},{"name":"DXVA2_ModeVC1_D2010","features":[426]},{"name":"DXVA2_ModeVP8_VLD","features":[426]},{"name":"DXVA2_ModeVP9_VLD_10bit_Profile2","features":[426]},{"name":"DXVA2_ModeVP9_VLD_Profile0","features":[426]},{"name":"DXVA2_ModeWMV8_A","features":[426]},{"name":"DXVA2_ModeWMV8_B","features":[426]},{"name":"DXVA2_ModeWMV9_A","features":[426]},{"name":"DXVA2_ModeWMV9_B","features":[426]},{"name":"DXVA2_ModeWMV9_C","features":[426]},{"name":"DXVA2_MotionVectorBuffer","features":[426]},{"name":"DXVA2_NoEncrypt","features":[426]},{"name":"DXVA2_NoiseFilterChromaLevel","features":[426]},{"name":"DXVA2_NoiseFilterChromaRadius","features":[426]},{"name":"DXVA2_NoiseFilterChromaThreshold","features":[426]},{"name":"DXVA2_NoiseFilterLumaLevel","features":[426]},{"name":"DXVA2_NoiseFilterLumaRadius","features":[426]},{"name":"DXVA2_NoiseFilterLumaThreshold","features":[426]},{"name":"DXVA2_NoiseFilterTech","features":[426]},{"name":"DXVA2_NoiseFilterTech_BlockNoise","features":[426]},{"name":"DXVA2_NoiseFilterTech_Mask","features":[426]},{"name":"DXVA2_NoiseFilterTech_Median","features":[426]},{"name":"DXVA2_NoiseFilterTech_MosquitoNoise","features":[426]},{"name":"DXVA2_NoiseFilterTech_Temporal","features":[426]},{"name":"DXVA2_NoiseFilterTech_Unknown","features":[426]},{"name":"DXVA2_NoiseFilterTech_Unsupported","features":[426]},{"name":"DXVA2_NominalRange","features":[426]},{"name":"DXVA2_NominalRangeMask","features":[426]},{"name":"DXVA2_NominalRange_0_255","features":[426]},{"name":"DXVA2_NominalRange_16_235","features":[426]},{"name":"DXVA2_NominalRange_48_208","features":[426]},{"name":"DXVA2_NominalRange_Normal","features":[426]},{"name":"DXVA2_NominalRange_Unknown","features":[426]},{"name":"DXVA2_NominalRange_Wide","features":[426]},{"name":"DXVA2_PictureParametersBufferType","features":[426]},{"name":"DXVA2_ProcAmp","features":[426]},{"name":"DXVA2_ProcAmpValues","features":[426]},{"name":"DXVA2_ProcAmp_Brightness","features":[426]},{"name":"DXVA2_ProcAmp_Contrast","features":[426]},{"name":"DXVA2_ProcAmp_Hue","features":[426]},{"name":"DXVA2_ProcAmp_Mask","features":[426]},{"name":"DXVA2_ProcAmp_None","features":[426]},{"name":"DXVA2_ProcAmp_Saturation","features":[426]},{"name":"DXVA2_ResidualDifferenceBufferType","features":[426]},{"name":"DXVA2_SampleData","features":[426]},{"name":"DXVA2_SampleData_Mask","features":[426]},{"name":"DXVA2_SampleData_RFF","features":[426]},{"name":"DXVA2_SampleData_RFF_TFF_Present","features":[426]},{"name":"DXVA2_SampleData_TFF","features":[426]},{"name":"DXVA2_SampleFieldInterleavedEvenFirst","features":[426]},{"name":"DXVA2_SampleFieldInterleavedOddFirst","features":[426]},{"name":"DXVA2_SampleFieldSingleEven","features":[426]},{"name":"DXVA2_SampleFieldSingleOdd","features":[426]},{"name":"DXVA2_SampleFormat","features":[426]},{"name":"DXVA2_SampleFormatMask","features":[426]},{"name":"DXVA2_SampleProgressiveFrame","features":[426]},{"name":"DXVA2_SampleSubStream","features":[426]},{"name":"DXVA2_SampleUnknown","features":[426]},{"name":"DXVA2_SliceControlBufferType","features":[426]},{"name":"DXVA2_SurfaceType","features":[426]},{"name":"DXVA2_SurfaceType_D3DRenderTargetTexture","features":[426]},{"name":"DXVA2_SurfaceType_DecoderRenderTarget","features":[426]},{"name":"DXVA2_SurfaceType_ProcessorRenderTarget","features":[426]},{"name":"DXVA2_VPDev","features":[426]},{"name":"DXVA2_VPDev_EmulatedDXVA1","features":[426]},{"name":"DXVA2_VPDev_HardwareDevice","features":[426]},{"name":"DXVA2_VPDev_Mask","features":[426]},{"name":"DXVA2_VPDev_SoftwareDevice","features":[426]},{"name":"DXVA2_ValueRange","features":[426]},{"name":"DXVA2_VideoChromaSubSampling","features":[426]},{"name":"DXVA2_VideoChromaSubsamplingMask","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_Cosited","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_DV_PAL","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_Horizontally_Cosited","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_MPEG1","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_MPEG2","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_ProgressiveChroma","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_Unknown","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_Vertically_AlignedChromaPlanes","features":[426]},{"name":"DXVA2_VideoChromaSubsampling_Vertically_Cosited","features":[426]},{"name":"DXVA2_VideoDecoderRenderTarget","features":[426]},{"name":"DXVA2_VideoDesc","features":[312,426]},{"name":"DXVA2_VideoLighting","features":[426]},{"name":"DXVA2_VideoLightingMask","features":[426]},{"name":"DXVA2_VideoLighting_Unknown","features":[426]},{"name":"DXVA2_VideoLighting_bright","features":[426]},{"name":"DXVA2_VideoLighting_dark","features":[426]},{"name":"DXVA2_VideoLighting_dim","features":[426]},{"name":"DXVA2_VideoLighting_office","features":[426]},{"name":"DXVA2_VideoPrimaries","features":[426]},{"name":"DXVA2_VideoPrimariesMask","features":[426]},{"name":"DXVA2_VideoPrimaries_BT470_2_SysBG","features":[426]},{"name":"DXVA2_VideoPrimaries_BT470_2_SysM","features":[426]},{"name":"DXVA2_VideoPrimaries_BT709","features":[426]},{"name":"DXVA2_VideoPrimaries_EBU3213","features":[426]},{"name":"DXVA2_VideoPrimaries_SMPTE170M","features":[426]},{"name":"DXVA2_VideoPrimaries_SMPTE240M","features":[426]},{"name":"DXVA2_VideoPrimaries_SMPTE_C","features":[426]},{"name":"DXVA2_VideoPrimaries_Unknown","features":[426]},{"name":"DXVA2_VideoPrimaries_reserved","features":[426]},{"name":"DXVA2_VideoProcBobDevice","features":[426]},{"name":"DXVA2_VideoProcProgressiveDevice","features":[426]},{"name":"DXVA2_VideoProcSoftwareDevice","features":[426]},{"name":"DXVA2_VideoProcess","features":[426]},{"name":"DXVA2_VideoProcessBltParams","features":[303,426]},{"name":"DXVA2_VideoProcess_AlphaBlend","features":[426]},{"name":"DXVA2_VideoProcess_AlphaBlendExtended","features":[426]},{"name":"DXVA2_VideoProcess_Constriction","features":[426]},{"name":"DXVA2_VideoProcess_DetailFilter","features":[426]},{"name":"DXVA2_VideoProcess_GammaCompensated","features":[426]},{"name":"DXVA2_VideoProcess_LinearScaling","features":[426]},{"name":"DXVA2_VideoProcess_MaintainsOriginalFieldData","features":[426]},{"name":"DXVA2_VideoProcess_Mask","features":[426]},{"name":"DXVA2_VideoProcess_NoiseFilter","features":[426]},{"name":"DXVA2_VideoProcess_None","features":[426]},{"name":"DXVA2_VideoProcess_PlanarAlpha","features":[426]},{"name":"DXVA2_VideoProcess_StretchX","features":[426]},{"name":"DXVA2_VideoProcess_StretchY","features":[426]},{"name":"DXVA2_VideoProcess_SubRects","features":[426]},{"name":"DXVA2_VideoProcess_SubStreams","features":[426]},{"name":"DXVA2_VideoProcess_SubStreamsExtended","features":[426]},{"name":"DXVA2_VideoProcess_YUV2RGB","features":[426]},{"name":"DXVA2_VideoProcess_YUV2RGBExtended","features":[426]},{"name":"DXVA2_VideoProcessorCaps","features":[312,426]},{"name":"DXVA2_VideoProcessorRenderTarget","features":[426]},{"name":"DXVA2_VideoRenderTargetType","features":[426]},{"name":"DXVA2_VideoSample","features":[303,312,426]},{"name":"DXVA2_VideoSoftwareRenderTarget","features":[426]},{"name":"DXVA2_VideoTransFuncMask","features":[426]},{"name":"DXVA2_VideoTransFunc_10","features":[426]},{"name":"DXVA2_VideoTransFunc_18","features":[426]},{"name":"DXVA2_VideoTransFunc_20","features":[426]},{"name":"DXVA2_VideoTransFunc_22","features":[426]},{"name":"DXVA2_VideoTransFunc_240M","features":[426]},{"name":"DXVA2_VideoTransFunc_28","features":[426]},{"name":"DXVA2_VideoTransFunc_709","features":[426]},{"name":"DXVA2_VideoTransFunc_Unknown","features":[426]},{"name":"DXVA2_VideoTransFunc_sRGB","features":[426]},{"name":"DXVA2_VideoTransferFunction","features":[426]},{"name":"DXVA2_VideoTransferMatrix","features":[426]},{"name":"DXVA2_VideoTransferMatrixMask","features":[426]},{"name":"DXVA2_VideoTransferMatrix_BT601","features":[426]},{"name":"DXVA2_VideoTransferMatrix_BT709","features":[426]},{"name":"DXVA2_VideoTransferMatrix_SMPTE240M","features":[426]},{"name":"DXVA2_VideoTransferMatrix_Unknown","features":[426]},{"name":"DXVABufferInfo","features":[426]},{"name":"DXVACompBufferInfo","features":[312,426]},{"name":"DXVAHDControlGuid","features":[426]},{"name":"DXVAHDETWGUID_CREATEVIDEOPROCESSOR","features":[426]},{"name":"DXVAHDETWGUID_DESTROYVIDEOPROCESSOR","features":[426]},{"name":"DXVAHDETWGUID_VIDEOPROCESSBLTHD","features":[426]},{"name":"DXVAHDETWGUID_VIDEOPROCESSBLTHD_STREAM","features":[426]},{"name":"DXVAHDETWGUID_VIDEOPROCESSBLTSTATE","features":[426]},{"name":"DXVAHDETWGUID_VIDEOPROCESSSTREAMSTATE","features":[426]},{"name":"DXVAHDETW_CREATEVIDEOPROCESSOR","features":[426]},{"name":"DXVAHDETW_DESTROYVIDEOPROCESSOR","features":[426]},{"name":"DXVAHDETW_VIDEOPROCESSBLTHD","features":[303,312,426]},{"name":"DXVAHDETW_VIDEOPROCESSBLTHD_STREAM","features":[303,312,426]},{"name":"DXVAHDETW_VIDEOPROCESSBLTSTATE","features":[303,426]},{"name":"DXVAHDETW_VIDEOPROCESSSTREAMSTATE","features":[303,426]},{"name":"DXVAHDSW_CALLBACKS","features":[303,312,426]},{"name":"DXVAHD_ALPHA_FILL_MODE","features":[426]},{"name":"DXVAHD_ALPHA_FILL_MODE_BACKGROUND","features":[426]},{"name":"DXVAHD_ALPHA_FILL_MODE_DESTINATION","features":[426]},{"name":"DXVAHD_ALPHA_FILL_MODE_OPAQUE","features":[426]},{"name":"DXVAHD_ALPHA_FILL_MODE_SOURCE_STREAM","features":[426]},{"name":"DXVAHD_BLT_STATE","features":[426]},{"name":"DXVAHD_BLT_STATE_ALPHA_FILL","features":[426]},{"name":"DXVAHD_BLT_STATE_ALPHA_FILL_DATA","features":[426]},{"name":"DXVAHD_BLT_STATE_BACKGROUND_COLOR","features":[426]},{"name":"DXVAHD_BLT_STATE_BACKGROUND_COLOR_DATA","features":[303,426]},{"name":"DXVAHD_BLT_STATE_CONSTRICTION","features":[426]},{"name":"DXVAHD_BLT_STATE_CONSTRICTION_DATA","features":[303,426]},{"name":"DXVAHD_BLT_STATE_OUTPUT_COLOR_SPACE","features":[426]},{"name":"DXVAHD_BLT_STATE_OUTPUT_COLOR_SPACE_DATA","features":[426]},{"name":"DXVAHD_BLT_STATE_PRIVATE","features":[426]},{"name":"DXVAHD_BLT_STATE_PRIVATE_DATA","features":[426]},{"name":"DXVAHD_BLT_STATE_TARGET_RECT","features":[426]},{"name":"DXVAHD_BLT_STATE_TARGET_RECT_DATA","features":[303,426]},{"name":"DXVAHD_COLOR","features":[426]},{"name":"DXVAHD_COLOR_RGBA","features":[426]},{"name":"DXVAHD_COLOR_YCbCrA","features":[426]},{"name":"DXVAHD_CONTENT_DESC","features":[426]},{"name":"DXVAHD_CUSTOM_RATE_DATA","features":[303,426]},{"name":"DXVAHD_CreateDevice","features":[312,426]},{"name":"DXVAHD_DEVICE_CAPS","features":[426]},{"name":"DXVAHD_DEVICE_CAPS_LINEAR_SPACE","features":[426]},{"name":"DXVAHD_DEVICE_CAPS_RGB_RANGE_CONVERSION","features":[426]},{"name":"DXVAHD_DEVICE_CAPS_YCbCr_MATRIX_CONVERSION","features":[426]},{"name":"DXVAHD_DEVICE_CAPS_xvYCC","features":[426]},{"name":"DXVAHD_DEVICE_TYPE","features":[426]},{"name":"DXVAHD_DEVICE_TYPE_HARDWARE","features":[426]},{"name":"DXVAHD_DEVICE_TYPE_OTHER","features":[426]},{"name":"DXVAHD_DEVICE_TYPE_REFERENCE","features":[426]},{"name":"DXVAHD_DEVICE_TYPE_SOFTWARE","features":[426]},{"name":"DXVAHD_DEVICE_USAGE","features":[426]},{"name":"DXVAHD_DEVICE_USAGE_OPTIMAL_QUALITY","features":[426]},{"name":"DXVAHD_DEVICE_USAGE_OPTIMAL_SPEED","features":[426]},{"name":"DXVAHD_DEVICE_USAGE_PLAYBACK_NORMAL","features":[426]},{"name":"DXVAHD_FEATURE_CAPS","features":[426]},{"name":"DXVAHD_FEATURE_CAPS_ALPHA_FILL","features":[426]},{"name":"DXVAHD_FEATURE_CAPS_ALPHA_PALETTE","features":[426]},{"name":"DXVAHD_FEATURE_CAPS_CONSTRICTION","features":[426]},{"name":"DXVAHD_FEATURE_CAPS_LUMA_KEY","features":[426]},{"name":"DXVAHD_FILTER","features":[426]},{"name":"DXVAHD_FILTER_ANAMORPHIC_SCALING","features":[426]},{"name":"DXVAHD_FILTER_BRIGHTNESS","features":[426]},{"name":"DXVAHD_FILTER_CAPS","features":[426]},{"name":"DXVAHD_FILTER_CAPS_ANAMORPHIC_SCALING","features":[426]},{"name":"DXVAHD_FILTER_CAPS_BRIGHTNESS","features":[426]},{"name":"DXVAHD_FILTER_CAPS_CONTRAST","features":[426]},{"name":"DXVAHD_FILTER_CAPS_EDGE_ENHANCEMENT","features":[426]},{"name":"DXVAHD_FILTER_CAPS_HUE","features":[426]},{"name":"DXVAHD_FILTER_CAPS_NOISE_REDUCTION","features":[426]},{"name":"DXVAHD_FILTER_CAPS_SATURATION","features":[426]},{"name":"DXVAHD_FILTER_CONTRAST","features":[426]},{"name":"DXVAHD_FILTER_EDGE_ENHANCEMENT","features":[426]},{"name":"DXVAHD_FILTER_HUE","features":[426]},{"name":"DXVAHD_FILTER_NOISE_REDUCTION","features":[426]},{"name":"DXVAHD_FILTER_RANGE_DATA","features":[426]},{"name":"DXVAHD_FILTER_SATURATION","features":[426]},{"name":"DXVAHD_FRAME_FORMAT","features":[426]},{"name":"DXVAHD_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[426]},{"name":"DXVAHD_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[426]},{"name":"DXVAHD_FRAME_FORMAT_PROGRESSIVE","features":[426]},{"name":"DXVAHD_INPUT_FORMAT_CAPS","features":[426]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_PALETTE_INTERLACED","features":[426]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_RGB_INTERLACED","features":[426]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_RGB_LUMA_KEY","features":[426]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_RGB_PROCAMP","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_22","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_222222222223","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_2224","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_2332","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_32","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_32322","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_55","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_64","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_87","features":[426]},{"name":"DXVAHD_ITELECINE_CAPS_OTHER","features":[426]},{"name":"DXVAHD_OUTPUT_RATE","features":[426]},{"name":"DXVAHD_OUTPUT_RATE_CUSTOM","features":[426]},{"name":"DXVAHD_OUTPUT_RATE_HALF","features":[426]},{"name":"DXVAHD_OUTPUT_RATE_NORMAL","features":[426]},{"name":"DXVAHD_PROCESSOR_CAPS","features":[426]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_ADAPTIVE","features":[426]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_BLEND","features":[426]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_BOB","features":[426]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_MOTION_COMPENSATION","features":[426]},{"name":"DXVAHD_PROCESSOR_CAPS_FRAME_RATE_CONVERSION","features":[426]},{"name":"DXVAHD_PROCESSOR_CAPS_INVERSE_TELECINE","features":[426]},{"name":"DXVAHD_RATIONAL","features":[426]},{"name":"DXVAHD_STREAM_DATA","features":[303,312,426]},{"name":"DXVAHD_STREAM_STATE","features":[426]},{"name":"DXVAHD_STREAM_STATE_ALPHA","features":[426]},{"name":"DXVAHD_STREAM_STATE_ALPHA_DATA","features":[303,426]},{"name":"DXVAHD_STREAM_STATE_ASPECT_RATIO","features":[426]},{"name":"DXVAHD_STREAM_STATE_ASPECT_RATIO_DATA","features":[303,426]},{"name":"DXVAHD_STREAM_STATE_D3DFORMAT","features":[426]},{"name":"DXVAHD_STREAM_STATE_D3DFORMAT_DATA","features":[312,426]},{"name":"DXVAHD_STREAM_STATE_DESTINATION_RECT","features":[426]},{"name":"DXVAHD_STREAM_STATE_DESTINATION_RECT_DATA","features":[303,426]},{"name":"DXVAHD_STREAM_STATE_FILTER_ANAMORPHIC_SCALING","features":[426]},{"name":"DXVAHD_STREAM_STATE_FILTER_BRIGHTNESS","features":[426]},{"name":"DXVAHD_STREAM_STATE_FILTER_CONTRAST","features":[426]},{"name":"DXVAHD_STREAM_STATE_FILTER_DATA","features":[303,426]},{"name":"DXVAHD_STREAM_STATE_FILTER_EDGE_ENHANCEMENT","features":[426]},{"name":"DXVAHD_STREAM_STATE_FILTER_HUE","features":[426]},{"name":"DXVAHD_STREAM_STATE_FILTER_NOISE_REDUCTION","features":[426]},{"name":"DXVAHD_STREAM_STATE_FILTER_SATURATION","features":[426]},{"name":"DXVAHD_STREAM_STATE_FRAME_FORMAT","features":[426]},{"name":"DXVAHD_STREAM_STATE_FRAME_FORMAT_DATA","features":[426]},{"name":"DXVAHD_STREAM_STATE_INPUT_COLOR_SPACE","features":[426]},{"name":"DXVAHD_STREAM_STATE_INPUT_COLOR_SPACE_DATA","features":[426]},{"name":"DXVAHD_STREAM_STATE_LUMA_KEY","features":[426]},{"name":"DXVAHD_STREAM_STATE_LUMA_KEY_DATA","features":[303,426]},{"name":"DXVAHD_STREAM_STATE_OUTPUT_RATE","features":[426]},{"name":"DXVAHD_STREAM_STATE_OUTPUT_RATE_DATA","features":[303,426]},{"name":"DXVAHD_STREAM_STATE_PALETTE","features":[426]},{"name":"DXVAHD_STREAM_STATE_PALETTE_DATA","features":[426]},{"name":"DXVAHD_STREAM_STATE_PRIVATE","features":[426]},{"name":"DXVAHD_STREAM_STATE_PRIVATE_DATA","features":[426]},{"name":"DXVAHD_STREAM_STATE_PRIVATE_IVTC","features":[426]},{"name":"DXVAHD_STREAM_STATE_PRIVATE_IVTC_DATA","features":[303,426]},{"name":"DXVAHD_STREAM_STATE_SOURCE_RECT","features":[426]},{"name":"DXVAHD_STREAM_STATE_SOURCE_RECT_DATA","features":[303,426]},{"name":"DXVAHD_SURFACE_TYPE","features":[426]},{"name":"DXVAHD_SURFACE_TYPE_VIDEO_INPUT","features":[426]},{"name":"DXVAHD_SURFACE_TYPE_VIDEO_INPUT_PRIVATE","features":[426]},{"name":"DXVAHD_SURFACE_TYPE_VIDEO_OUTPUT","features":[426]},{"name":"DXVAHD_VPCAPS","features":[426]},{"name":"DXVAHD_VPDEVCAPS","features":[312,426]},{"name":"DXVAUncompDataInfo","features":[312,426]},{"name":"DXVA_AYUVsample2","features":[426]},{"name":"DXVA_BufferDescription","features":[426]},{"name":"DXVA_COPPCommand","features":[426]},{"name":"DXVA_COPPSignature","features":[426]},{"name":"DXVA_COPPStatusInput","features":[426]},{"name":"DXVA_COPPStatusOutput","features":[426]},{"name":"DXVA_ConfigPictureDecode","features":[426]},{"name":"DXVA_DeinterlaceBlt","features":[303,426]},{"name":"DXVA_DeinterlaceBltEx","features":[303,426]},{"name":"DXVA_DeinterlaceBltEx32","features":[303,426]},{"name":"DXVA_DeinterlaceCaps","features":[312,426]},{"name":"DXVA_DeinterlaceQueryAvailableModes","features":[426]},{"name":"DXVA_DeinterlaceQueryModeCaps","features":[312,426]},{"name":"DXVA_DeinterlaceTech","features":[426]},{"name":"DXVA_DeinterlaceTech_BOBLineReplicate","features":[426]},{"name":"DXVA_DeinterlaceTech_BOBVerticalStretch","features":[426]},{"name":"DXVA_DeinterlaceTech_BOBVerticalStretch4Tap","features":[426]},{"name":"DXVA_DeinterlaceTech_EdgeFiltering","features":[426]},{"name":"DXVA_DeinterlaceTech_FieldAdaptive","features":[426]},{"name":"DXVA_DeinterlaceTech_MedianFiltering","features":[426]},{"name":"DXVA_DeinterlaceTech_MotionVectorSteered","features":[426]},{"name":"DXVA_DeinterlaceTech_PixelAdaptive","features":[426]},{"name":"DXVA_DeinterlaceTech_Unknown","features":[426]},{"name":"DXVA_DestinationFlagMask","features":[426]},{"name":"DXVA_DestinationFlag_Alpha_Changed","features":[426]},{"name":"DXVA_DestinationFlag_Background_Changed","features":[426]},{"name":"DXVA_DestinationFlag_ColorData_Changed","features":[426]},{"name":"DXVA_DestinationFlag_TargetRect_Changed","features":[426]},{"name":"DXVA_DestinationFlags","features":[426]},{"name":"DXVA_ExtendedFormat","features":[426]},{"name":"DXVA_Frequency","features":[426]},{"name":"DXVA_NominalRange","features":[426]},{"name":"DXVA_NominalRangeMask","features":[426]},{"name":"DXVA_NominalRangeShift","features":[426]},{"name":"DXVA_NominalRange_0_255","features":[426]},{"name":"DXVA_NominalRange_16_235","features":[426]},{"name":"DXVA_NominalRange_48_208","features":[426]},{"name":"DXVA_NominalRange_Normal","features":[426]},{"name":"DXVA_NominalRange_Unknown","features":[426]},{"name":"DXVA_NominalRange_Wide","features":[426]},{"name":"DXVA_PictureParameters","features":[426]},{"name":"DXVA_ProcAmpControlBlt","features":[303,426]},{"name":"DXVA_ProcAmpControlCaps","features":[312,426]},{"name":"DXVA_ProcAmpControlProp","features":[426]},{"name":"DXVA_ProcAmpControlQueryRange","features":[312,426]},{"name":"DXVA_ProcAmp_Brightness","features":[426]},{"name":"DXVA_ProcAmp_Contrast","features":[426]},{"name":"DXVA_ProcAmp_Hue","features":[426]},{"name":"DXVA_ProcAmp_None","features":[426]},{"name":"DXVA_ProcAmp_Saturation","features":[426]},{"name":"DXVA_SampleFieldInterleavedEvenFirst","features":[426]},{"name":"DXVA_SampleFieldInterleavedOddFirst","features":[426]},{"name":"DXVA_SampleFieldSingleEven","features":[426]},{"name":"DXVA_SampleFieldSingleOdd","features":[426]},{"name":"DXVA_SampleFlag_ColorData_Changed","features":[426]},{"name":"DXVA_SampleFlag_DstRect_Changed","features":[426]},{"name":"DXVA_SampleFlag_Palette_Changed","features":[426]},{"name":"DXVA_SampleFlag_SrcRect_Changed","features":[426]},{"name":"DXVA_SampleFlags","features":[426]},{"name":"DXVA_SampleFlagsMask","features":[426]},{"name":"DXVA_SampleFormat","features":[426]},{"name":"DXVA_SampleFormatMask","features":[426]},{"name":"DXVA_SamplePreviousFrame","features":[426]},{"name":"DXVA_SampleProgressiveFrame","features":[426]},{"name":"DXVA_SampleSubStream","features":[426]},{"name":"DXVA_SampleUnknown","features":[426]},{"name":"DXVA_VideoChromaSubsampling","features":[426]},{"name":"DXVA_VideoChromaSubsamplingMask","features":[426]},{"name":"DXVA_VideoChromaSubsamplingShift","features":[426]},{"name":"DXVA_VideoChromaSubsampling_Cosited","features":[426]},{"name":"DXVA_VideoChromaSubsampling_DV_PAL","features":[426]},{"name":"DXVA_VideoChromaSubsampling_Horizontally_Cosited","features":[426]},{"name":"DXVA_VideoChromaSubsampling_MPEG1","features":[426]},{"name":"DXVA_VideoChromaSubsampling_MPEG2","features":[426]},{"name":"DXVA_VideoChromaSubsampling_ProgressiveChroma","features":[426]},{"name":"DXVA_VideoChromaSubsampling_Unknown","features":[426]},{"name":"DXVA_VideoChromaSubsampling_Vertically_AlignedChromaPlanes","features":[426]},{"name":"DXVA_VideoChromaSubsampling_Vertically_Cosited","features":[426]},{"name":"DXVA_VideoDesc","features":[312,426]},{"name":"DXVA_VideoLighting","features":[426]},{"name":"DXVA_VideoLightingMask","features":[426]},{"name":"DXVA_VideoLightingShift","features":[426]},{"name":"DXVA_VideoLighting_Unknown","features":[426]},{"name":"DXVA_VideoLighting_bright","features":[426]},{"name":"DXVA_VideoLighting_dark","features":[426]},{"name":"DXVA_VideoLighting_dim","features":[426]},{"name":"DXVA_VideoLighting_office","features":[426]},{"name":"DXVA_VideoPrimaries","features":[426]},{"name":"DXVA_VideoPrimariesMask","features":[426]},{"name":"DXVA_VideoPrimariesShift","features":[426]},{"name":"DXVA_VideoPrimaries_BT470_2_SysBG","features":[426]},{"name":"DXVA_VideoPrimaries_BT470_2_SysM","features":[426]},{"name":"DXVA_VideoPrimaries_BT709","features":[426]},{"name":"DXVA_VideoPrimaries_EBU3213","features":[426]},{"name":"DXVA_VideoPrimaries_SMPTE170M","features":[426]},{"name":"DXVA_VideoPrimaries_SMPTE240M","features":[426]},{"name":"DXVA_VideoPrimaries_SMPTE_C","features":[426]},{"name":"DXVA_VideoPrimaries_Unknown","features":[426]},{"name":"DXVA_VideoPrimaries_reserved","features":[426]},{"name":"DXVA_VideoProcessCaps","features":[426]},{"name":"DXVA_VideoProcess_AlphaBlend","features":[426]},{"name":"DXVA_VideoProcess_AlphaBlendExtended","features":[426]},{"name":"DXVA_VideoProcess_None","features":[426]},{"name":"DXVA_VideoProcess_StretchX","features":[426]},{"name":"DXVA_VideoProcess_StretchY","features":[426]},{"name":"DXVA_VideoProcess_SubRects","features":[426]},{"name":"DXVA_VideoProcess_SubStreams","features":[426]},{"name":"DXVA_VideoProcess_SubStreamsExtended","features":[426]},{"name":"DXVA_VideoProcess_YUV2RGB","features":[426]},{"name":"DXVA_VideoProcess_YUV2RGBExtended","features":[426]},{"name":"DXVA_VideoPropertyRange","features":[426]},{"name":"DXVA_VideoSample","features":[426]},{"name":"DXVA_VideoSample2","features":[303,426]},{"name":"DXVA_VideoSample2","features":[303,426]},{"name":"DXVA_VideoSample32","features":[303,426]},{"name":"DXVA_VideoTransFuncMask","features":[426]},{"name":"DXVA_VideoTransFuncShift","features":[426]},{"name":"DXVA_VideoTransFunc_10","features":[426]},{"name":"DXVA_VideoTransFunc_18","features":[426]},{"name":"DXVA_VideoTransFunc_20","features":[426]},{"name":"DXVA_VideoTransFunc_22","features":[426]},{"name":"DXVA_VideoTransFunc_22_240M","features":[426]},{"name":"DXVA_VideoTransFunc_22_709","features":[426]},{"name":"DXVA_VideoTransFunc_22_8bit_sRGB","features":[426]},{"name":"DXVA_VideoTransFunc_28","features":[426]},{"name":"DXVA_VideoTransFunc_Unknown","features":[426]},{"name":"DXVA_VideoTransferFunction","features":[426]},{"name":"DXVA_VideoTransferMatrix","features":[426]},{"name":"DXVA_VideoTransferMatrixMask","features":[426]},{"name":"DXVA_VideoTransferMatrixShift","features":[426]},{"name":"DXVA_VideoTransferMatrix_BT601","features":[426]},{"name":"DXVA_VideoTransferMatrix_BT709","features":[426]},{"name":"DXVA_VideoTransferMatrix_SMPTE240M","features":[426]},{"name":"DXVA_VideoTransferMatrix_Unknown","features":[426]},{"name":"DXVAp_DeinterlaceBobDevice","features":[426]},{"name":"DXVAp_DeinterlaceContainerDevice","features":[426]},{"name":"DXVAp_ModeMPEG2_A","features":[426]},{"name":"DXVAp_ModeMPEG2_C","features":[426]},{"name":"DXVAp_NoEncrypt","features":[426]},{"name":"DeviceStreamState","features":[426]},{"name":"DeviceStreamState_Disabled","features":[426]},{"name":"DeviceStreamState_Pause","features":[426]},{"name":"DeviceStreamState_Run","features":[426]},{"name":"DeviceStreamState_Stop","features":[426]},{"name":"DigitalWindowSetting","features":[426]},{"name":"DistanceToFocalPlane","features":[426]},{"name":"DistanceToOpticalCenter","features":[426]},{"name":"EAllocationType","features":[426]},{"name":"ENCAPIPARAM_BITRATE","features":[426]},{"name":"ENCAPIPARAM_BITRATE_MODE","features":[426]},{"name":"ENCAPIPARAM_PEAK_BITRATE","features":[426]},{"name":"ENCAPIPARAM_SAP_MODE","features":[426]},{"name":"EVRConfig_ForceBatching","features":[426]},{"name":"EVRConfig_ForceBob","features":[426]},{"name":"EVRConfig_ForceHalfInterlace","features":[426]},{"name":"EVRConfig_ForceScaling","features":[426]},{"name":"EVRConfig_ForceThrottle","features":[426]},{"name":"EVRFilterConfigPrefs","features":[426]},{"name":"EVRFilterConfigPrefs_EnableQoS","features":[426]},{"name":"EVRFilterConfigPrefs_Mask","features":[426]},{"name":"E_TOCPARSER_INVALIDASFFILE","features":[426]},{"name":"E_TOCPARSER_INVALIDRIFFFILE","features":[426]},{"name":"FACILITY_MF","features":[426]},{"name":"FACILITY_MF_WIN32","features":[426]},{"name":"FILE_ACCESSMODE","features":[426]},{"name":"FILE_OPENMODE","features":[426]},{"name":"FORMAT_525WSS","features":[426]},{"name":"FORMAT_AnalogVideo","features":[426]},{"name":"FORMAT_CAPTIONED_H264VIDEO","features":[426]},{"name":"FORMAT_CAPTIONED_MPEG2VIDEO","features":[426]},{"name":"FORMAT_CC_CONTAINER","features":[426]},{"name":"FORMAT_DvInfo","features":[426]},{"name":"FORMAT_MFVideoFormat","features":[426]},{"name":"FORMAT_MPEGStreams","features":[426]},{"name":"FORMAT_MPEGVideo","features":[426]},{"name":"FORMAT_None","features":[426]},{"name":"FORMAT_VideoInfo","features":[426]},{"name":"FORMAT_VideoInfo2","features":[426]},{"name":"FORMAT_WaveFormatEx","features":[426]},{"name":"GUID_NativeDeviceService","features":[426]},{"name":"GUID_PlayToService","features":[426]},{"name":"IAdvancedMediaCapture","features":[426]},{"name":"IAdvancedMediaCaptureInitializationSettings","features":[426]},{"name":"IAdvancedMediaCaptureSettings","features":[426]},{"name":"IAudioSourceProvider","features":[426]},{"name":"IClusterDetector","features":[426]},{"name":"ICodecAPI","features":[426]},{"name":"ID3D12VideoDecodeCommandList","features":[350,426]},{"name":"ID3D12VideoDecodeCommandList1","features":[350,426]},{"name":"ID3D12VideoDecodeCommandList2","features":[350,426]},{"name":"ID3D12VideoDecodeCommandList3","features":[350,426]},{"name":"ID3D12VideoDecoder","features":[350,426]},{"name":"ID3D12VideoDecoder1","features":[350,426]},{"name":"ID3D12VideoDecoderHeap","features":[350,426]},{"name":"ID3D12VideoDecoderHeap1","features":[350,426]},{"name":"ID3D12VideoDevice","features":[426]},{"name":"ID3D12VideoDevice1","features":[426]},{"name":"ID3D12VideoDevice2","features":[426]},{"name":"ID3D12VideoDevice3","features":[426]},{"name":"ID3D12VideoEncodeCommandList","features":[350,426]},{"name":"ID3D12VideoEncodeCommandList1","features":[350,426]},{"name":"ID3D12VideoEncodeCommandList2","features":[350,426]},{"name":"ID3D12VideoEncodeCommandList3","features":[350,426]},{"name":"ID3D12VideoEncoder","features":[350,426]},{"name":"ID3D12VideoEncoderHeap","features":[350,426]},{"name":"ID3D12VideoExtensionCommand","features":[350,426]},{"name":"ID3D12VideoMotionEstimator","features":[350,426]},{"name":"ID3D12VideoMotionVectorHeap","features":[350,426]},{"name":"ID3D12VideoProcessCommandList","features":[350,426]},{"name":"ID3D12VideoProcessCommandList1","features":[350,426]},{"name":"ID3D12VideoProcessCommandList2","features":[350,426]},{"name":"ID3D12VideoProcessCommandList3","features":[350,426]},{"name":"ID3D12VideoProcessor","features":[350,426]},{"name":"ID3D12VideoProcessor1","features":[350,426]},{"name":"IDXVAHD_Device","features":[426]},{"name":"IDXVAHD_VideoProcessor","features":[426]},{"name":"IDirect3D9ExOverlayExtension","features":[426]},{"name":"IDirect3DAuthenticatedChannel9","features":[426]},{"name":"IDirect3DCryptoSession9","features":[426]},{"name":"IDirect3DDevice9Video","features":[426]},{"name":"IDirect3DDeviceManager9","features":[426]},{"name":"IDirectXVideoAccelerationService","features":[426]},{"name":"IDirectXVideoDecoder","features":[426]},{"name":"IDirectXVideoDecoderService","features":[426]},{"name":"IDirectXVideoMemoryConfiguration","features":[426]},{"name":"IDirectXVideoProcessor","features":[426]},{"name":"IDirectXVideoProcessorService","features":[426]},{"name":"IEVRFilterConfig","features":[426]},{"name":"IEVRFilterConfigEx","features":[426]},{"name":"IEVRTrustedVideoPlugin","features":[426]},{"name":"IEVRVideoStreamControl","features":[426]},{"name":"IFileClient","features":[426]},{"name":"IFileIo","features":[426]},{"name":"IMF2DBuffer","features":[426]},{"name":"IMF2DBuffer2","features":[426]},{"name":"IMFASFContentInfo","features":[426]},{"name":"IMFASFIndexer","features":[426]},{"name":"IMFASFMultiplexer","features":[426]},{"name":"IMFASFMutualExclusion","features":[426]},{"name":"IMFASFProfile","features":[426]},{"name":"IMFASFSplitter","features":[426]},{"name":"IMFASFStreamConfig","features":[426]},{"name":"IMFASFStreamPrioritization","features":[426]},{"name":"IMFASFStreamSelector","features":[426]},{"name":"IMFActivate","features":[426]},{"name":"IMFAsyncCallback","features":[426]},{"name":"IMFAsyncCallbackLogging","features":[426]},{"name":"IMFAsyncResult","features":[426]},{"name":"IMFAttributes","features":[426]},{"name":"IMFAudioMediaType","features":[426]},{"name":"IMFAudioPolicy","features":[426]},{"name":"IMFAudioStreamVolume","features":[426]},{"name":"IMFBufferListNotify","features":[426]},{"name":"IMFByteStream","features":[426]},{"name":"IMFByteStreamBuffering","features":[426]},{"name":"IMFByteStreamCacheControl","features":[426]},{"name":"IMFByteStreamCacheControl2","features":[426]},{"name":"IMFByteStreamHandler","features":[426]},{"name":"IMFByteStreamProxyClassFactory","features":[426]},{"name":"IMFByteStreamTimeSeek","features":[426]},{"name":"IMFCameraConfigurationManager","features":[426]},{"name":"IMFCameraControlDefaults","features":[426]},{"name":"IMFCameraControlDefaultsCollection","features":[426]},{"name":"IMFCameraControlMonitor","features":[426]},{"name":"IMFCameraControlNotify","features":[426]},{"name":"IMFCameraOcclusionStateMonitor","features":[426]},{"name":"IMFCameraOcclusionStateReport","features":[426]},{"name":"IMFCameraOcclusionStateReportCallback","features":[426]},{"name":"IMFCameraSyncObject","features":[426]},{"name":"IMFCaptureEngine","features":[426]},{"name":"IMFCaptureEngineClassFactory","features":[426]},{"name":"IMFCaptureEngineOnEventCallback","features":[426]},{"name":"IMFCaptureEngineOnSampleCallback","features":[426]},{"name":"IMFCaptureEngineOnSampleCallback2","features":[426]},{"name":"IMFCapturePhotoConfirmation","features":[426]},{"name":"IMFCapturePhotoSink","features":[426]},{"name":"IMFCapturePreviewSink","features":[426]},{"name":"IMFCaptureRecordSink","features":[426]},{"name":"IMFCaptureSink","features":[426]},{"name":"IMFCaptureSink2","features":[426]},{"name":"IMFCaptureSource","features":[426]},{"name":"IMFCdmSuspendNotify","features":[426]},{"name":"IMFClock","features":[426]},{"name":"IMFClockConsumer","features":[426]},{"name":"IMFClockStateSink","features":[426]},{"name":"IMFCollection","features":[426]},{"name":"IMFContentDecryptionModule","features":[426]},{"name":"IMFContentDecryptionModuleAccess","features":[426]},{"name":"IMFContentDecryptionModuleFactory","features":[426]},{"name":"IMFContentDecryptionModuleSession","features":[426]},{"name":"IMFContentDecryptionModuleSessionCallbacks","features":[426]},{"name":"IMFContentDecryptorContext","features":[426]},{"name":"IMFContentEnabler","features":[426]},{"name":"IMFContentProtectionDevice","features":[426]},{"name":"IMFContentProtectionManager","features":[426]},{"name":"IMFD3D12SynchronizationObject","features":[426]},{"name":"IMFD3D12SynchronizationObjectCommands","features":[426]},{"name":"IMFDLNASinkInit","features":[426]},{"name":"IMFDRMNetHelper","features":[426]},{"name":"IMFDXGIBuffer","features":[426]},{"name":"IMFDXGIDeviceManager","features":[426]},{"name":"IMFDXGIDeviceManagerSource","features":[426]},{"name":"IMFDesiredSample","features":[426]},{"name":"IMFDeviceTransform","features":[426]},{"name":"IMFDeviceTransformCallback","features":[426]},{"name":"IMFExtendedCameraControl","features":[426]},{"name":"IMFExtendedCameraController","features":[426]},{"name":"IMFExtendedCameraIntrinsicModel","features":[426]},{"name":"IMFExtendedCameraIntrinsics","features":[426]},{"name":"IMFExtendedCameraIntrinsicsDistortionModel6KT","features":[426]},{"name":"IMFExtendedCameraIntrinsicsDistortionModelArcTan","features":[426]},{"name":"IMFExtendedDRMTypeSupport","features":[426]},{"name":"IMFFieldOfUseMFTUnlock","features":[426]},{"name":"IMFFinalizableMediaSink","features":[426]},{"name":"IMFGetService","features":[426]},{"name":"IMFHDCPStatus","features":[426]},{"name":"IMFHttpDownloadRequest","features":[426]},{"name":"IMFHttpDownloadSession","features":[426]},{"name":"IMFHttpDownloadSessionProvider","features":[426]},{"name":"IMFImageSharingEngine","features":[426]},{"name":"IMFImageSharingEngineClassFactory","features":[426]},{"name":"IMFInputTrustAuthority","features":[426]},{"name":"IMFLocalMFTRegistration","features":[426]},{"name":"IMFMediaBuffer","features":[426]},{"name":"IMFMediaEngine","features":[426]},{"name":"IMFMediaEngineAudioEndpointId","features":[426]},{"name":"IMFMediaEngineClassFactory","features":[426]},{"name":"IMFMediaEngineClassFactory2","features":[426]},{"name":"IMFMediaEngineClassFactory3","features":[426]},{"name":"IMFMediaEngineClassFactory4","features":[426]},{"name":"IMFMediaEngineClassFactoryEx","features":[426]},{"name":"IMFMediaEngineEME","features":[426]},{"name":"IMFMediaEngineEMENotify","features":[426]},{"name":"IMFMediaEngineEx","features":[426]},{"name":"IMFMediaEngineExtension","features":[426]},{"name":"IMFMediaEngineNeedKeyNotify","features":[426]},{"name":"IMFMediaEngineNotify","features":[426]},{"name":"IMFMediaEngineOPMInfo","features":[426]},{"name":"IMFMediaEngineProtectedContent","features":[426]},{"name":"IMFMediaEngineSrcElements","features":[426]},{"name":"IMFMediaEngineSrcElementsEx","features":[426]},{"name":"IMFMediaEngineSupportsSourceTransfer","features":[426]},{"name":"IMFMediaEngineTransferSource","features":[426]},{"name":"IMFMediaEngineWebSupport","features":[426]},{"name":"IMFMediaError","features":[426]},{"name":"IMFMediaEvent","features":[426]},{"name":"IMFMediaEventGenerator","features":[426]},{"name":"IMFMediaEventQueue","features":[426]},{"name":"IMFMediaKeySession","features":[426]},{"name":"IMFMediaKeySession2","features":[426]},{"name":"IMFMediaKeySessionNotify","features":[426]},{"name":"IMFMediaKeySessionNotify2","features":[426]},{"name":"IMFMediaKeySystemAccess","features":[426]},{"name":"IMFMediaKeys","features":[426]},{"name":"IMFMediaKeys2","features":[426]},{"name":"IMFMediaSession","features":[426]},{"name":"IMFMediaSharingEngine","features":[426]},{"name":"IMFMediaSharingEngineClassFactory","features":[426]},{"name":"IMFMediaSink","features":[426]},{"name":"IMFMediaSinkPreroll","features":[426]},{"name":"IMFMediaSource","features":[426]},{"name":"IMFMediaSource2","features":[426]},{"name":"IMFMediaSourceEx","features":[426]},{"name":"IMFMediaSourceExtension","features":[426]},{"name":"IMFMediaSourceExtensionLiveSeekableRange","features":[426]},{"name":"IMFMediaSourceExtensionNotify","features":[426]},{"name":"IMFMediaSourcePresentationProvider","features":[426]},{"name":"IMFMediaSourceTopologyProvider","features":[426]},{"name":"IMFMediaStream","features":[426]},{"name":"IMFMediaStream2","features":[426]},{"name":"IMFMediaStreamSourceSampleRequest","features":[426]},{"name":"IMFMediaTimeRange","features":[426]},{"name":"IMFMediaType","features":[426]},{"name":"IMFMediaTypeHandler","features":[426]},{"name":"IMFMetadata","features":[426]},{"name":"IMFMetadataProvider","features":[426]},{"name":"IMFMuxStreamAttributesManager","features":[426]},{"name":"IMFMuxStreamMediaTypeManager","features":[426]},{"name":"IMFMuxStreamSampleManager","features":[426]},{"name":"IMFNetCredential","features":[426]},{"name":"IMFNetCredentialCache","features":[426]},{"name":"IMFNetCredentialManager","features":[426]},{"name":"IMFNetCrossOriginSupport","features":[426]},{"name":"IMFNetProxyLocator","features":[426]},{"name":"IMFNetProxyLocatorFactory","features":[426]},{"name":"IMFNetResourceFilter","features":[426]},{"name":"IMFNetSchemeHandlerConfig","features":[426]},{"name":"IMFObjectReferenceStream","features":[426]},{"name":"IMFOutputPolicy","features":[426]},{"name":"IMFOutputSchema","features":[426]},{"name":"IMFOutputTrustAuthority","features":[426]},{"name":"IMFPMPClient","features":[426]},{"name":"IMFPMPClientApp","features":[426]},{"name":"IMFPMPHost","features":[426]},{"name":"IMFPMPHostApp","features":[426]},{"name":"IMFPMPServer","features":[426]},{"name":"IMFPMediaItem","features":[426]},{"name":"IMFPMediaPlayer","features":[426]},{"name":"IMFPMediaPlayerCallback","features":[426]},{"name":"IMFPluginControl","features":[426]},{"name":"IMFPluginControl2","features":[426]},{"name":"IMFPresentationClock","features":[426]},{"name":"IMFPresentationDescriptor","features":[426]},{"name":"IMFPresentationTimeSource","features":[426]},{"name":"IMFProtectedEnvironmentAccess","features":[426]},{"name":"IMFQualityAdvise","features":[426]},{"name":"IMFQualityAdvise2","features":[426]},{"name":"IMFQualityAdviseLimits","features":[426]},{"name":"IMFQualityManager","features":[426]},{"name":"IMFRateControl","features":[426]},{"name":"IMFRateSupport","features":[426]},{"name":"IMFReadWriteClassFactory","features":[426]},{"name":"IMFRealTimeClient","features":[426]},{"name":"IMFRealTimeClientEx","features":[426]},{"name":"IMFRelativePanelReport","features":[426]},{"name":"IMFRelativePanelWatcher","features":[426]},{"name":"IMFRemoteAsyncCallback","features":[426]},{"name":"IMFRemoteDesktopPlugin","features":[426]},{"name":"IMFRemoteProxy","features":[426]},{"name":"IMFSAMIStyle","features":[426]},{"name":"IMFSSLCertificateManager","features":[426]},{"name":"IMFSample","features":[426]},{"name":"IMFSampleAllocatorControl","features":[426]},{"name":"IMFSampleGrabberSinkCallback","features":[426]},{"name":"IMFSampleGrabberSinkCallback2","features":[426]},{"name":"IMFSampleOutputStream","features":[426]},{"name":"IMFSampleProtection","features":[426]},{"name":"IMFSaveJob","features":[426]},{"name":"IMFSchemeHandler","features":[426]},{"name":"IMFSecureBuffer","features":[426]},{"name":"IMFSecureChannel","features":[426]},{"name":"IMFSeekInfo","features":[426]},{"name":"IMFSensorActivitiesReport","features":[426]},{"name":"IMFSensorActivitiesReportCallback","features":[426]},{"name":"IMFSensorActivityMonitor","features":[426]},{"name":"IMFSensorActivityReport","features":[426]},{"name":"IMFSensorDevice","features":[426]},{"name":"IMFSensorGroup","features":[426]},{"name":"IMFSensorProcessActivity","features":[426]},{"name":"IMFSensorProfile","features":[426]},{"name":"IMFSensorProfileCollection","features":[426]},{"name":"IMFSensorStream","features":[426]},{"name":"IMFSensorTransformFactory","features":[426]},{"name":"IMFSequencerSource","features":[426]},{"name":"IMFSharingEngineClassFactory","features":[426]},{"name":"IMFShutdown","features":[426]},{"name":"IMFSignedLibrary","features":[426]},{"name":"IMFSimpleAudioVolume","features":[426]},{"name":"IMFSinkWriter","features":[426]},{"name":"IMFSinkWriterCallback","features":[426]},{"name":"IMFSinkWriterCallback2","features":[426]},{"name":"IMFSinkWriterEncoderConfig","features":[426]},{"name":"IMFSinkWriterEx","features":[426]},{"name":"IMFSourceBuffer","features":[426]},{"name":"IMFSourceBufferAppendMode","features":[426]},{"name":"IMFSourceBufferList","features":[426]},{"name":"IMFSourceBufferNotify","features":[426]},{"name":"IMFSourceOpenMonitor","features":[426]},{"name":"IMFSourceReader","features":[426]},{"name":"IMFSourceReaderCallback","features":[426]},{"name":"IMFSourceReaderCallback2","features":[426]},{"name":"IMFSourceReaderEx","features":[426]},{"name":"IMFSourceResolver","features":[426]},{"name":"IMFSpatialAudioObjectBuffer","features":[426]},{"name":"IMFSpatialAudioSample","features":[426]},{"name":"IMFStreamDescriptor","features":[426]},{"name":"IMFStreamSink","features":[426]},{"name":"IMFStreamingSinkConfig","features":[426]},{"name":"IMFSystemId","features":[426]},{"name":"IMFTimecodeTranslate","features":[426]},{"name":"IMFTimedText","features":[426]},{"name":"IMFTimedTextBinary","features":[426]},{"name":"IMFTimedTextBouten","features":[426]},{"name":"IMFTimedTextCue","features":[426]},{"name":"IMFTimedTextCueList","features":[426]},{"name":"IMFTimedTextFormattedText","features":[426]},{"name":"IMFTimedTextNotify","features":[426]},{"name":"IMFTimedTextRegion","features":[426]},{"name":"IMFTimedTextRuby","features":[426]},{"name":"IMFTimedTextStyle","features":[426]},{"name":"IMFTimedTextStyle2","features":[426]},{"name":"IMFTimedTextTrack","features":[426]},{"name":"IMFTimedTextTrackList","features":[426]},{"name":"IMFTimer","features":[426]},{"name":"IMFTopoLoader","features":[426]},{"name":"IMFTopology","features":[426]},{"name":"IMFTopologyNode","features":[426]},{"name":"IMFTopologyNodeAttributeEditor","features":[426]},{"name":"IMFTopologyServiceLookup","features":[426]},{"name":"IMFTopologyServiceLookupClient","features":[426]},{"name":"IMFTrackedSample","features":[426]},{"name":"IMFTranscodeProfile","features":[426]},{"name":"IMFTranscodeSinkInfoProvider","features":[426]},{"name":"IMFTransform","features":[426]},{"name":"IMFTrustedInput","features":[426]},{"name":"IMFTrustedOutput","features":[426]},{"name":"IMFVideoCaptureSampleAllocator","features":[426]},{"name":"IMFVideoDeviceID","features":[426]},{"name":"IMFVideoDisplayControl","features":[426]},{"name":"IMFVideoMediaType","features":[426]},{"name":"IMFVideoMixerBitmap","features":[426]},{"name":"IMFVideoMixerControl","features":[426]},{"name":"IMFVideoMixerControl2","features":[426]},{"name":"IMFVideoPositionMapper","features":[426]},{"name":"IMFVideoPresenter","features":[426]},{"name":"IMFVideoProcessor","features":[426]},{"name":"IMFVideoProcessorControl","features":[426]},{"name":"IMFVideoProcessorControl2","features":[426]},{"name":"IMFVideoProcessorControl3","features":[426]},{"name":"IMFVideoRenderer","features":[426]},{"name":"IMFVideoRendererEffectControl","features":[426]},{"name":"IMFVideoSampleAllocator","features":[426]},{"name":"IMFVideoSampleAllocatorCallback","features":[426]},{"name":"IMFVideoSampleAllocatorEx","features":[426]},{"name":"IMFVideoSampleAllocatorNotify","features":[426]},{"name":"IMFVideoSampleAllocatorNotifyEx","features":[426]},{"name":"IMFVirtualCamera","features":[426]},{"name":"IMFWorkQueueServices","features":[426]},{"name":"IMFWorkQueueServicesEx","features":[426]},{"name":"IOPMVideoOutput","features":[426]},{"name":"IPlayToControl","features":[426]},{"name":"IPlayToControlWithCapabilities","features":[426]},{"name":"IPlayToSourceClassFactory","features":[426]},{"name":"IToc","features":[426]},{"name":"ITocCollection","features":[426]},{"name":"ITocEntry","features":[426]},{"name":"ITocEntryList","features":[426]},{"name":"ITocParser","features":[426]},{"name":"IValidateBinding","features":[426]},{"name":"IWMCodecLeakyBucket","features":[426]},{"name":"IWMCodecOutputTimestamp","features":[426]},{"name":"IWMCodecPrivateData","features":[426]},{"name":"IWMCodecProps","features":[426]},{"name":"IWMCodecStrings","features":[426]},{"name":"IWMColorConvProps","features":[426]},{"name":"IWMColorLegalizerProps","features":[426]},{"name":"IWMFrameInterpProps","features":[426]},{"name":"IWMInterlaceProps","features":[426]},{"name":"IWMResamplerProps","features":[426]},{"name":"IWMResizerProps","features":[426]},{"name":"IWMSampleExtensionSupport","features":[426]},{"name":"IWMValidate","features":[426]},{"name":"IWMVideoDecoderHurryup","features":[426]},{"name":"IWMVideoDecoderReconBuffer","features":[426]},{"name":"IWMVideoForceKeyFrame","features":[426]},{"name":"KSMETHOD_OPMVIDEOOUTPUT","features":[426]},{"name":"KSMETHOD_OPMVIDEOOUTPUT_FINISHINITIALIZATION","features":[426]},{"name":"KSMETHOD_OPMVIDEOOUTPUT_GETINFORMATION","features":[426]},{"name":"KSMETHOD_OPMVIDEOOUTPUT_STARTINITIALIZATION","features":[426]},{"name":"KSPROPERTYSETID_ANYCAMERACONTROL","features":[426]},{"name":"KSPROPSETID_OPMVideoOutput","features":[426]},{"name":"LOCAL_D3DFMT_DEFINES","features":[426]},{"name":"LOOK_DOWNSTREAM_ONLY","features":[426]},{"name":"LOOK_UPSTREAM_ONLY","features":[426]},{"name":"MACROBLOCK_DATA","features":[426]},{"name":"MACROBLOCK_FLAG_DIRTY","features":[426]},{"name":"MACROBLOCK_FLAG_HAS_MOTION_VECTOR","features":[426]},{"name":"MACROBLOCK_FLAG_HAS_QP","features":[426]},{"name":"MACROBLOCK_FLAG_MOTION","features":[426]},{"name":"MACROBLOCK_FLAG_SKIP","features":[426]},{"name":"MACROBLOCK_FLAG_VIDEO","features":[426]},{"name":"MAX_SUBSTREAMS","features":[426]},{"name":"MEAudioSessionDeviceRemoved","features":[426]},{"name":"MEAudioSessionDisconnected","features":[426]},{"name":"MEAudioSessionExclusiveModeOverride","features":[426]},{"name":"MEAudioSessionFormatChanged","features":[426]},{"name":"MEAudioSessionGroupingParamChanged","features":[426]},{"name":"MEAudioSessionIconChanged","features":[426]},{"name":"MEAudioSessionNameChanged","features":[426]},{"name":"MEAudioSessionServerShutdown","features":[426]},{"name":"MEAudioSessionVolumeChanged","features":[426]},{"name":"MEBufferingStarted","features":[426]},{"name":"MEBufferingStopped","features":[426]},{"name":"MEByteStreamCharacteristicsChanged","features":[426]},{"name":"MECaptureAudioSessionDeviceRemoved","features":[426]},{"name":"MECaptureAudioSessionDisconnected","features":[426]},{"name":"MECaptureAudioSessionExclusiveModeOverride","features":[426]},{"name":"MECaptureAudioSessionFormatChanged","features":[426]},{"name":"MECaptureAudioSessionServerShutdown","features":[426]},{"name":"MECaptureAudioSessionVolumeChanged","features":[426]},{"name":"MEConnectEnd","features":[426]},{"name":"MEConnectStart","features":[426]},{"name":"MEContentProtectionMessage","features":[426]},{"name":"MEContentProtectionMetadata","features":[426]},{"name":"MEDIASINK_CANNOT_MATCH_CLOCK","features":[426]},{"name":"MEDIASINK_CAN_PREROLL","features":[426]},{"name":"MEDIASINK_CLOCK_REQUIRED","features":[426]},{"name":"MEDIASINK_FIXED_STREAMS","features":[426]},{"name":"MEDIASINK_RATELESS","features":[426]},{"name":"MEDIASINK_REQUIRE_REFERENCE_MEDIATYPE","features":[426]},{"name":"MEDIASUBTYPE_420O","features":[426]},{"name":"MEDIASUBTYPE_708_608Data","features":[426]},{"name":"MEDIASUBTYPE_A2B10G10R10","features":[426]},{"name":"MEDIASUBTYPE_A2R10G10B10","features":[426]},{"name":"MEDIASUBTYPE_AI44","features":[426]},{"name":"MEDIASUBTYPE_AIFF","features":[426]},{"name":"MEDIASUBTYPE_ARGB1555","features":[426]},{"name":"MEDIASUBTYPE_ARGB1555_D3D_DX7_RT","features":[426]},{"name":"MEDIASUBTYPE_ARGB1555_D3D_DX9_RT","features":[426]},{"name":"MEDIASUBTYPE_ARGB32","features":[426]},{"name":"MEDIASUBTYPE_ARGB32_D3D_DX7_RT","features":[426]},{"name":"MEDIASUBTYPE_ARGB32_D3D_DX9_RT","features":[426]},{"name":"MEDIASUBTYPE_ARGB4444","features":[426]},{"name":"MEDIASUBTYPE_ARGB4444_D3D_DX7_RT","features":[426]},{"name":"MEDIASUBTYPE_ARGB4444_D3D_DX9_RT","features":[426]},{"name":"MEDIASUBTYPE_AU","features":[426]},{"name":"MEDIASUBTYPE_AVC1","features":[426]},{"name":"MEDIASUBTYPE_AYUV","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_NTSC_M","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_B","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_D","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_G","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_H","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_I","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_M","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_N","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_N_COMBO","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_B","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_D","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_G","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_H","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_K","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_K1","features":[426]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_L","features":[426]},{"name":"MEDIASUBTYPE_Asf","features":[426]},{"name":"MEDIASUBTYPE_Avi","features":[426]},{"name":"MEDIASUBTYPE_CC_CONTAINER","features":[426]},{"name":"MEDIASUBTYPE_CFCC","features":[426]},{"name":"MEDIASUBTYPE_CLJR","features":[426]},{"name":"MEDIASUBTYPE_CLPL","features":[426]},{"name":"MEDIASUBTYPE_CPLA","features":[426]},{"name":"MEDIASUBTYPE_DOLBY_AC3_SPDIF","features":[426]},{"name":"MEDIASUBTYPE_DOLBY_DDPLUS","features":[426]},{"name":"MEDIASUBTYPE_DOLBY_TRUEHD","features":[426]},{"name":"MEDIASUBTYPE_DRM_Audio","features":[426]},{"name":"MEDIASUBTYPE_DTS2","features":[426]},{"name":"MEDIASUBTYPE_DTS_HD","features":[426]},{"name":"MEDIASUBTYPE_DTS_HD_HRA","features":[426]},{"name":"MEDIASUBTYPE_DVB_SUBTITLES","features":[426]},{"name":"MEDIASUBTYPE_DVCS","features":[426]},{"name":"MEDIASUBTYPE_DVM","features":[426]},{"name":"MEDIASUBTYPE_DVSD","features":[426]},{"name":"MEDIASUBTYPE_DssAudio","features":[426]},{"name":"MEDIASUBTYPE_DssVideo","features":[426]},{"name":"MEDIASUBTYPE_DtvCcData","features":[426]},{"name":"MEDIASUBTYPE_H264","features":[426]},{"name":"MEDIASUBTYPE_I420","features":[426]},{"name":"MEDIASUBTYPE_IA44","features":[426]},{"name":"MEDIASUBTYPE_IEEE_FLOAT","features":[426]},{"name":"MEDIASUBTYPE_IF09","features":[426]},{"name":"MEDIASUBTYPE_IJPG","features":[426]},{"name":"MEDIASUBTYPE_IMC1","features":[426]},{"name":"MEDIASUBTYPE_IMC2","features":[426]},{"name":"MEDIASUBTYPE_IMC3","features":[426]},{"name":"MEDIASUBTYPE_IMC4","features":[426]},{"name":"MEDIASUBTYPE_ISDB_CAPTIONS","features":[426]},{"name":"MEDIASUBTYPE_ISDB_SUPERIMPOSE","features":[426]},{"name":"MEDIASUBTYPE_IYUV","features":[426]},{"name":"MEDIASUBTYPE_Line21_BytePair","features":[426]},{"name":"MEDIASUBTYPE_Line21_GOPPacket","features":[426]},{"name":"MEDIASUBTYPE_Line21_VBIRawData","features":[426]},{"name":"MEDIASUBTYPE_M4S2","features":[426]},{"name":"MEDIASUBTYPE_MDVF","features":[426]},{"name":"MEDIASUBTYPE_MJPG","features":[426]},{"name":"MEDIASUBTYPE_MP42","features":[426]},{"name":"MEDIASUBTYPE_MP43","features":[426]},{"name":"MEDIASUBTYPE_MP4S","features":[426]},{"name":"MEDIASUBTYPE_MPEG1Audio","features":[426]},{"name":"MEDIASUBTYPE_MPEG1AudioPayload","features":[426]},{"name":"MEDIASUBTYPE_MPEG1Packet","features":[426]},{"name":"MEDIASUBTYPE_MPEG1Payload","features":[426]},{"name":"MEDIASUBTYPE_MPEG1System","features":[426]},{"name":"MEDIASUBTYPE_MPEG1Video","features":[426]},{"name":"MEDIASUBTYPE_MPEG1VideoCD","features":[426]},{"name":"MEDIASUBTYPE_MPEG_ADTS_AAC","features":[426]},{"name":"MEDIASUBTYPE_MPEG_HEAAC","features":[426]},{"name":"MEDIASUBTYPE_MPEG_LOAS","features":[426]},{"name":"MEDIASUBTYPE_MPEG_RAW_AAC","features":[426]},{"name":"MEDIASUBTYPE_MPG4","features":[426]},{"name":"MEDIASUBTYPE_MSAUDIO1","features":[426]},{"name":"MEDIASUBTYPE_MSS1","features":[426]},{"name":"MEDIASUBTYPE_MSS2","features":[426]},{"name":"MEDIASUBTYPE_NOKIA_MPEG_ADTS_AAC","features":[426]},{"name":"MEDIASUBTYPE_NOKIA_MPEG_RAW_AAC","features":[426]},{"name":"MEDIASUBTYPE_NV11","features":[426]},{"name":"MEDIASUBTYPE_NV12","features":[426]},{"name":"MEDIASUBTYPE_NV24","features":[426]},{"name":"MEDIASUBTYPE_None","features":[426]},{"name":"MEDIASUBTYPE_Overlay","features":[426]},{"name":"MEDIASUBTYPE_P010","features":[426]},{"name":"MEDIASUBTYPE_P016","features":[426]},{"name":"MEDIASUBTYPE_P208","features":[426]},{"name":"MEDIASUBTYPE_P210","features":[426]},{"name":"MEDIASUBTYPE_P216","features":[426]},{"name":"MEDIASUBTYPE_P408","features":[426]},{"name":"MEDIASUBTYPE_PCM","features":[426]},{"name":"MEDIASUBTYPE_PCMAudio_Obsolete","features":[426]},{"name":"MEDIASUBTYPE_Plum","features":[426]},{"name":"MEDIASUBTYPE_QTJpeg","features":[426]},{"name":"MEDIASUBTYPE_QTMovie","features":[426]},{"name":"MEDIASUBTYPE_QTRle","features":[426]},{"name":"MEDIASUBTYPE_QTRpza","features":[426]},{"name":"MEDIASUBTYPE_QTSmc","features":[426]},{"name":"MEDIASUBTYPE_RAW_AAC1","features":[426]},{"name":"MEDIASUBTYPE_RAW_SPORT","features":[426]},{"name":"MEDIASUBTYPE_RGB1","features":[426]},{"name":"MEDIASUBTYPE_RGB16_D3D_DX7_RT","features":[426]},{"name":"MEDIASUBTYPE_RGB16_D3D_DX9_RT","features":[426]},{"name":"MEDIASUBTYPE_RGB24","features":[426]},{"name":"MEDIASUBTYPE_RGB32","features":[426]},{"name":"MEDIASUBTYPE_RGB32_D3D_DX7_RT","features":[426]},{"name":"MEDIASUBTYPE_RGB32_D3D_DX9_RT","features":[426]},{"name":"MEDIASUBTYPE_RGB4","features":[426]},{"name":"MEDIASUBTYPE_RGB555","features":[426]},{"name":"MEDIASUBTYPE_RGB565","features":[426]},{"name":"MEDIASUBTYPE_RGB8","features":[426]},{"name":"MEDIASUBTYPE_S340","features":[426]},{"name":"MEDIASUBTYPE_S342","features":[426]},{"name":"MEDIASUBTYPE_SPDIF_TAG_241h","features":[426]},{"name":"MEDIASUBTYPE_TELETEXT","features":[426]},{"name":"MEDIASUBTYPE_TVMJ","features":[426]},{"name":"MEDIASUBTYPE_UYVY","features":[426]},{"name":"MEDIASUBTYPE_V216","features":[426]},{"name":"MEDIASUBTYPE_V410","features":[426]},{"name":"MEDIASUBTYPE_VBI","features":[426]},{"name":"MEDIASUBTYPE_VODAFONE_MPEG_ADTS_AAC","features":[426]},{"name":"MEDIASUBTYPE_VODAFONE_MPEG_RAW_AAC","features":[426]},{"name":"MEDIASUBTYPE_VPS","features":[426]},{"name":"MEDIASUBTYPE_VPVBI","features":[426]},{"name":"MEDIASUBTYPE_VPVideo","features":[426]},{"name":"MEDIASUBTYPE_WAKE","features":[426]},{"name":"MEDIASUBTYPE_WAVE","features":[426]},{"name":"MEDIASUBTYPE_WMASPDIF","features":[426]},{"name":"MEDIASUBTYPE_WMAUDIO2","features":[426]},{"name":"MEDIASUBTYPE_WMAUDIO3","features":[426]},{"name":"MEDIASUBTYPE_WMAUDIO4","features":[426]},{"name":"MEDIASUBTYPE_WMAUDIO_LOSSLESS","features":[426]},{"name":"MEDIASUBTYPE_WMV1","features":[426]},{"name":"MEDIASUBTYPE_WMV2","features":[426]},{"name":"MEDIASUBTYPE_WMV3","features":[426]},{"name":"MEDIASUBTYPE_WMVA","features":[426]},{"name":"MEDIASUBTYPE_WMVB","features":[426]},{"name":"MEDIASUBTYPE_WMVP","features":[426]},{"name":"MEDIASUBTYPE_WMVR","features":[426]},{"name":"MEDIASUBTYPE_WSS","features":[426]},{"name":"MEDIASUBTYPE_WVC1","features":[426]},{"name":"MEDIASUBTYPE_WVP2","features":[426]},{"name":"MEDIASUBTYPE_X264","features":[426]},{"name":"MEDIASUBTYPE_XDS","features":[426]},{"name":"MEDIASUBTYPE_Y210","features":[426]},{"name":"MEDIASUBTYPE_Y211","features":[426]},{"name":"MEDIASUBTYPE_Y216","features":[426]},{"name":"MEDIASUBTYPE_Y411","features":[426]},{"name":"MEDIASUBTYPE_Y41P","features":[426]},{"name":"MEDIASUBTYPE_Y41T","features":[426]},{"name":"MEDIASUBTYPE_Y42T","features":[426]},{"name":"MEDIASUBTYPE_YUY2","features":[426]},{"name":"MEDIASUBTYPE_YUYV","features":[426]},{"name":"MEDIASUBTYPE_YV12","features":[426]},{"name":"MEDIASUBTYPE_YVU9","features":[426]},{"name":"MEDIASUBTYPE_YVYU","features":[426]},{"name":"MEDIASUBTYPE_dv25","features":[426]},{"name":"MEDIASUBTYPE_dv50","features":[426]},{"name":"MEDIASUBTYPE_dvh1","features":[426]},{"name":"MEDIASUBTYPE_dvhd","features":[426]},{"name":"MEDIASUBTYPE_dvsl","features":[426]},{"name":"MEDIASUBTYPE_v210","features":[426]},{"name":"MEDIATYPE_AUXLine21Data","features":[426]},{"name":"MEDIATYPE_AUXTeletextPage","features":[426]},{"name":"MEDIATYPE_AnalogAudio","features":[426]},{"name":"MEDIATYPE_AnalogVideo","features":[426]},{"name":"MEDIATYPE_Audio","features":[426]},{"name":"MEDIATYPE_CC_CONTAINER","features":[426]},{"name":"MEDIATYPE_DTVCCData","features":[426]},{"name":"MEDIATYPE_File","features":[426]},{"name":"MEDIATYPE_Interleaved","features":[426]},{"name":"MEDIATYPE_LMRT","features":[426]},{"name":"MEDIATYPE_MPEG1SystemStream","features":[426]},{"name":"MEDIATYPE_MSTVCaption","features":[426]},{"name":"MEDIATYPE_Midi","features":[426]},{"name":"MEDIATYPE_ScriptCommand","features":[426]},{"name":"MEDIATYPE_Stream","features":[426]},{"name":"MEDIATYPE_Text","features":[426]},{"name":"MEDIATYPE_Timecode","features":[426]},{"name":"MEDIATYPE_URL_STREAM","features":[426]},{"name":"MEDIATYPE_VBI","features":[426]},{"name":"MEDIATYPE_Video","features":[426]},{"name":"MEDIA_EVENT_GENERATOR_GET_EVENT_FLAGS","features":[426]},{"name":"MEDeviceStreamCreated","features":[426]},{"name":"MEDeviceThermalStateChanged","features":[426]},{"name":"MEEnablerCompleted","features":[426]},{"name":"MEEnablerProgress","features":[426]},{"name":"MEEncodingParameters","features":[426]},{"name":"MEEndOfPresentation","features":[426]},{"name":"MEEndOfPresentationSegment","features":[426]},{"name":"MEEndOfStream","features":[426]},{"name":"MEError","features":[426]},{"name":"MEExtendedType","features":[426]},{"name":"MEGenericV1Anchor","features":[426]},{"name":"MEIndividualizationCompleted","features":[426]},{"name":"MEIndividualizationStart","features":[426]},{"name":"MELicenseAcquisitionCompleted","features":[426]},{"name":"MELicenseAcquisitionStart","features":[426]},{"name":"MEMediaSample","features":[426]},{"name":"MENewPresentation","features":[426]},{"name":"MENewStream","features":[426]},{"name":"MENonFatalError","features":[426]},{"name":"MEPolicyChanged","features":[426]},{"name":"MEPolicyError","features":[426]},{"name":"MEPolicyReport","features":[426]},{"name":"MEPolicySet","features":[426]},{"name":"MEQualityNotify","features":[426]},{"name":"MEReconnectEnd","features":[426]},{"name":"MEReconnectStart","features":[426]},{"name":"MERendererEvent","features":[426]},{"name":"MEReservedMax","features":[426]},{"name":"MESequencerSourceTopologyUpdated","features":[426]},{"name":"MESessionCapabilitiesChanged","features":[426]},{"name":"MESessionClosed","features":[426]},{"name":"MESessionEnded","features":[426]},{"name":"MESessionNotifyPresentationTime","features":[426]},{"name":"MESessionPaused","features":[426]},{"name":"MESessionRateChanged","features":[426]},{"name":"MESessionScrubSampleComplete","features":[426]},{"name":"MESessionStarted","features":[426]},{"name":"MESessionStopped","features":[426]},{"name":"MESessionStreamSinkFormatChanged","features":[426]},{"name":"MESessionTopologiesCleared","features":[426]},{"name":"MESessionTopologySet","features":[426]},{"name":"MESessionTopologyStatus","features":[426]},{"name":"MESessionUnknown","features":[426]},{"name":"MESessionV1Anchor","features":[426]},{"name":"MESinkInvalidated","features":[426]},{"name":"MESinkUnknown","features":[426]},{"name":"MESinkV1Anchor","features":[426]},{"name":"MESinkV2Anchor","features":[426]},{"name":"MESourceCharacteristicsChanged","features":[426]},{"name":"MESourceMetadataChanged","features":[426]},{"name":"MESourcePaused","features":[426]},{"name":"MESourceRateChangeRequested","features":[426]},{"name":"MESourceRateChanged","features":[426]},{"name":"MESourceSeeked","features":[426]},{"name":"MESourceStarted","features":[426]},{"name":"MESourceStopped","features":[426]},{"name":"MESourceUnknown","features":[426]},{"name":"MESourceV1Anchor","features":[426]},{"name":"MEStreamFormatChanged","features":[426]},{"name":"MEStreamPaused","features":[426]},{"name":"MEStreamSeeked","features":[426]},{"name":"MEStreamSinkDeviceChanged","features":[426]},{"name":"MEStreamSinkFormatChanged","features":[426]},{"name":"MEStreamSinkFormatInvalidated","features":[426]},{"name":"MEStreamSinkMarker","features":[426]},{"name":"MEStreamSinkPaused","features":[426]},{"name":"MEStreamSinkPrerolled","features":[426]},{"name":"MEStreamSinkRateChanged","features":[426]},{"name":"MEStreamSinkRequestSample","features":[426]},{"name":"MEStreamSinkScrubSampleComplete","features":[426]},{"name":"MEStreamSinkStarted","features":[426]},{"name":"MEStreamSinkStopped","features":[426]},{"name":"MEStreamStarted","features":[426]},{"name":"MEStreamStopped","features":[426]},{"name":"MEStreamThinMode","features":[426]},{"name":"MEStreamTick","features":[426]},{"name":"METransformDrainComplete","features":[426]},{"name":"METransformHaveOutput","features":[426]},{"name":"METransformInputStreamStateChanged","features":[426]},{"name":"METransformMarker","features":[426]},{"name":"METransformNeedInput","features":[426]},{"name":"METransformUnknown","features":[426]},{"name":"METrustUnknown","features":[426]},{"name":"METrustV1Anchor","features":[426]},{"name":"MEUnknown","features":[426]},{"name":"MEUpdatedStream","features":[426]},{"name":"MEVideoCaptureDevicePreempted","features":[426]},{"name":"MEVideoCaptureDeviceRemoved","features":[426]},{"name":"MEWMDRMIndividualizationCompleted","features":[426]},{"name":"MEWMDRMIndividualizationProgress","features":[426]},{"name":"MEWMDRMLicenseAcquisitionCompleted","features":[426]},{"name":"MEWMDRMLicenseBackupCompleted","features":[426]},{"name":"MEWMDRMLicenseBackupProgress","features":[426]},{"name":"MEWMDRMLicenseRestoreCompleted","features":[426]},{"name":"MEWMDRMLicenseRestoreProgress","features":[426]},{"name":"MEWMDRMLicenseStoreCleaned","features":[426]},{"name":"MEWMDRMProximityCompleted","features":[426]},{"name":"MEWMDRMRevocationDownloadCompleted","features":[426]},{"name":"MEWMDRMV1Anchor","features":[426]},{"name":"MF2DBuffer_LockFlags","features":[426]},{"name":"MF2DBuffer_LockFlags_ForceDWORD","features":[426]},{"name":"MF2DBuffer_LockFlags_LockTypeMask","features":[426]},{"name":"MF2DBuffer_LockFlags_Read","features":[426]},{"name":"MF2DBuffer_LockFlags_ReadWrite","features":[426]},{"name":"MF2DBuffer_LockFlags_Write","features":[426]},{"name":"MF3DVideoOutputType","features":[426]},{"name":"MF3DVideoOutputType_BaseView","features":[426]},{"name":"MF3DVideoOutputType_Stereo","features":[426]},{"name":"MFAMRNBByteStreamHandler","features":[426]},{"name":"MFAMRNBSinkClassFactory","features":[426]},{"name":"MFARGB","features":[426]},{"name":"MFASFINDEXER_APPROX_SEEK_TIME_UNKNOWN","features":[426]},{"name":"MFASFINDEXER_NO_FIXED_INTERVAL","features":[426]},{"name":"MFASFINDEXER_PER_ENTRY_BYTES_DYNAMIC","features":[426]},{"name":"MFASFINDEXER_READ_FOR_REVERSEPLAYBACK_OUTOFDATASEGMENT","features":[426]},{"name":"MFASFINDEXER_TYPE_TIMECODE","features":[426]},{"name":"MFASFMutexType_Bitrate","features":[426]},{"name":"MFASFMutexType_Language","features":[426]},{"name":"MFASFMutexType_Presentation","features":[426]},{"name":"MFASFMutexType_Unknown","features":[426]},{"name":"MFASFSPLITTER_PACKET_BOUNDARY","features":[426]},{"name":"MFASFSampleExtension_ContentType","features":[426]},{"name":"MFASFSampleExtension_Encryption_KeyID","features":[426]},{"name":"MFASFSampleExtension_Encryption_SampleID","features":[426]},{"name":"MFASFSampleExtension_FileName","features":[426]},{"name":"MFASFSampleExtension_OutputCleanPoint","features":[426]},{"name":"MFASFSampleExtension_PixelAspectRatio","features":[426]},{"name":"MFASFSampleExtension_SMPTE","features":[426]},{"name":"MFASFSampleExtension_SampleDuration","features":[426]},{"name":"MFASF_DEFAULT_BUFFER_WINDOW_MS","features":[426]},{"name":"MFASF_INDEXER_FLAGS","features":[426]},{"name":"MFASF_INDEXER_READ_FOR_REVERSEPLAYBACK","features":[426]},{"name":"MFASF_INDEXER_WRITE_FOR_LIVEREAD","features":[426]},{"name":"MFASF_INDEXER_WRITE_NEW_INDEX","features":[426]},{"name":"MFASF_INVALID_STREAM_NUMBER","features":[426]},{"name":"MFASF_MAX_STREAM_NUMBER","features":[426]},{"name":"MFASF_MULTIPLEXERFLAGS","features":[426]},{"name":"MFASF_MULTIPLEXER_AUTOADJUST_BITRATE","features":[426]},{"name":"MFASF_PAYLOADEXTENSION_MAX_SIZE","features":[426]},{"name":"MFASF_PAYLOADEXTENSION_VARIABLE_SIZE","features":[426]},{"name":"MFASF_SPLITTERFLAGS","features":[426]},{"name":"MFASF_SPLITTER_REVERSE","features":[426]},{"name":"MFASF_SPLITTER_WMDRM","features":[426]},{"name":"MFASF_STREAMSELECTOR_DISABLE_THINNING","features":[426]},{"name":"MFASF_STREAMSELECTOR_FLAGS","features":[426]},{"name":"MFASF_STREAMSELECTOR_USE_AVERAGE_BITRATE","features":[426]},{"name":"MFASYNCRESULT","features":[426]},{"name":"MFASYNC_BLOCKING_CALLBACK","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_ALL","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_IO","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_LONG_FUNCTION","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_MULTITHREADED","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_PRIVATE_MASK","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_RT","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_STANDARD","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_TIMER","features":[426]},{"name":"MFASYNC_CALLBACK_QUEUE_UNDEFINED","features":[426]},{"name":"MFASYNC_FAST_IO_PROCESSING_CALLBACK","features":[426]},{"name":"MFASYNC_LOCALIZE_REMOTE_CALLBACK","features":[426]},{"name":"MFASYNC_REPLY_CALLBACK","features":[426]},{"name":"MFASYNC_SIGNAL_CALLBACK","features":[426]},{"name":"MFASYNC_WORKQUEUE_TYPE","features":[426]},{"name":"MFAYUVSample","features":[426]},{"name":"MFAddPeriodicCallback","features":[426]},{"name":"MFAllocateSerialWorkQueue","features":[426]},{"name":"MFAllocateWorkQueue","features":[426]},{"name":"MFAllocateWorkQueueEx","features":[426]},{"name":"MFAudioConstriction","features":[426]},{"name":"MFAudioDecoderDegradationInfo","features":[426]},{"name":"MFAudioFormat_AAC","features":[426]},{"name":"MFAudioFormat_AAC_HDCP","features":[426]},{"name":"MFAudioFormat_ADTS","features":[426]},{"name":"MFAudioFormat_ADTS_HDCP","features":[426]},{"name":"MFAudioFormat_ALAC","features":[426]},{"name":"MFAudioFormat_AMR_NB","features":[426]},{"name":"MFAudioFormat_AMR_WB","features":[426]},{"name":"MFAudioFormat_AMR_WP","features":[426]},{"name":"MFAudioFormat_Base","features":[426]},{"name":"MFAudioFormat_Base_HDCP","features":[426]},{"name":"MFAudioFormat_DRM","features":[426]},{"name":"MFAudioFormat_DTS","features":[426]},{"name":"MFAudioFormat_DTS_HD","features":[426]},{"name":"MFAudioFormat_DTS_LBR","features":[426]},{"name":"MFAudioFormat_DTS_RAW","features":[426]},{"name":"MFAudioFormat_DTS_UHD","features":[426]},{"name":"MFAudioFormat_DTS_UHDY","features":[426]},{"name":"MFAudioFormat_DTS_XLL","features":[426]},{"name":"MFAudioFormat_Dolby_AC3","features":[426]},{"name":"MFAudioFormat_Dolby_AC3_HDCP","features":[426]},{"name":"MFAudioFormat_Dolby_AC3_SPDIF","features":[426]},{"name":"MFAudioFormat_Dolby_AC4","features":[426]},{"name":"MFAudioFormat_Dolby_AC4_V1","features":[426]},{"name":"MFAudioFormat_Dolby_AC4_V1_ES","features":[426]},{"name":"MFAudioFormat_Dolby_AC4_V2","features":[426]},{"name":"MFAudioFormat_Dolby_AC4_V2_ES","features":[426]},{"name":"MFAudioFormat_Dolby_DDPlus","features":[426]},{"name":"MFAudioFormat_FLAC","features":[426]},{"name":"MFAudioFormat_Float","features":[426]},{"name":"MFAudioFormat_Float_SpatialObjects","features":[426]},{"name":"MFAudioFormat_LPCM","features":[426]},{"name":"MFAudioFormat_MP3","features":[426]},{"name":"MFAudioFormat_MPEG","features":[426]},{"name":"MFAudioFormat_MSP1","features":[426]},{"name":"MFAudioFormat_Opus","features":[426]},{"name":"MFAudioFormat_PCM","features":[426]},{"name":"MFAudioFormat_PCM_HDCP","features":[426]},{"name":"MFAudioFormat_Vorbis","features":[426]},{"name":"MFAudioFormat_WMASPDIF","features":[426]},{"name":"MFAudioFormat_WMAudioV8","features":[426]},{"name":"MFAudioFormat_WMAudioV9","features":[426]},{"name":"MFAudioFormat_WMAudio_Lossless","features":[426]},{"name":"MFAverageTimePerFrameToFrameRate","features":[426]},{"name":"MFBYTESTREAM_BUFFERING_PARAMS","features":[426]},{"name":"MFBYTESTREAM_DOES_NOT_USE_NETWORK","features":[426]},{"name":"MFBYTESTREAM_HAS_SLOW_SEEK","features":[426]},{"name":"MFBYTESTREAM_IS_DIRECTORY","features":[426]},{"name":"MFBYTESTREAM_IS_PARTIALLY_DOWNLOADED","features":[426]},{"name":"MFBYTESTREAM_IS_READABLE","features":[426]},{"name":"MFBYTESTREAM_IS_REMOTE","features":[426]},{"name":"MFBYTESTREAM_IS_SEEKABLE","features":[426]},{"name":"MFBYTESTREAM_IS_WRITABLE","features":[426]},{"name":"MFBYTESTREAM_SEEK_FLAG_CANCEL_PENDING_IO","features":[426]},{"name":"MFBYTESTREAM_SEEK_ORIGIN","features":[426]},{"name":"MFBYTESTREAM_SHARE_WRITE","features":[426]},{"name":"MFBeginCreateFile","features":[426]},{"name":"MFBeginRegisterWorkQueueWithMMCSS","features":[426]},{"name":"MFBeginRegisterWorkQueueWithMMCSSEx","features":[426]},{"name":"MFBeginUnregisterWorkQueueWithMMCSS","features":[426]},{"name":"MFCAPTURE_METADATA_SCANLINE_VERTICAL","features":[426]},{"name":"MFCAPTURE_METADATA_SCAN_BOTTOM_TOP","features":[426]},{"name":"MFCAPTURE_METADATA_SCAN_RIGHT_LEFT","features":[426]},{"name":"MFCLOCK_CHARACTERISTICS_FLAGS","features":[426]},{"name":"MFCLOCK_CHARACTERISTICS_FLAG_ALWAYS_RUNNING","features":[426]},{"name":"MFCLOCK_CHARACTERISTICS_FLAG_FREQUENCY_10MHZ","features":[426]},{"name":"MFCLOCK_CHARACTERISTICS_FLAG_IS_SYSTEM_CLOCK","features":[426]},{"name":"MFCLOCK_FREQUENCY_HNS","features":[426]},{"name":"MFCLOCK_JITTER_DPC","features":[426]},{"name":"MFCLOCK_JITTER_ISR","features":[426]},{"name":"MFCLOCK_JITTER_PASSIVE","features":[426]},{"name":"MFCLOCK_PROPERTIES","features":[426]},{"name":"MFCLOCK_RELATIONAL_FLAGS","features":[426]},{"name":"MFCLOCK_RELATIONAL_FLAG_JITTER_NEVER_AHEAD","features":[426]},{"name":"MFCLOCK_STATE","features":[426]},{"name":"MFCLOCK_STATE_INVALID","features":[426]},{"name":"MFCLOCK_STATE_PAUSED","features":[426]},{"name":"MFCLOCK_STATE_RUNNING","features":[426]},{"name":"MFCLOCK_STATE_STOPPED","features":[426]},{"name":"MFCLOCK_TOLERANCE_UNKNOWN","features":[426]},{"name":"MFCONNECTOR_AGP","features":[426]},{"name":"MFCONNECTOR_COMPONENT","features":[426]},{"name":"MFCONNECTOR_COMPOSITE","features":[426]},{"name":"MFCONNECTOR_DISPLAYPORT_EMBEDDED","features":[426]},{"name":"MFCONNECTOR_DISPLAYPORT_EXTERNAL","features":[426]},{"name":"MFCONNECTOR_DVI","features":[426]},{"name":"MFCONNECTOR_D_JPN","features":[426]},{"name":"MFCONNECTOR_HDMI","features":[426]},{"name":"MFCONNECTOR_LVDS","features":[426]},{"name":"MFCONNECTOR_MIRACAST","features":[426]},{"name":"MFCONNECTOR_PCI","features":[426]},{"name":"MFCONNECTOR_PCIX","features":[426]},{"name":"MFCONNECTOR_PCI_Express","features":[426]},{"name":"MFCONNECTOR_SDI","features":[426]},{"name":"MFCONNECTOR_SPDIF","features":[426]},{"name":"MFCONNECTOR_SVIDEO","features":[426]},{"name":"MFCONNECTOR_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[426]},{"name":"MFCONNECTOR_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[426]},{"name":"MFCONNECTOR_UDI_EMBEDDED","features":[426]},{"name":"MFCONNECTOR_UDI_EXTERNAL","features":[426]},{"name":"MFCONNECTOR_UNKNOWN","features":[426]},{"name":"MFCONNECTOR_VGA","features":[426]},{"name":"MFCONTENTPROTECTIONDEVICE_FUNCTIONID_START","features":[426]},{"name":"MFCONTENTPROTECTIONDEVICE_INPUT_DATA","features":[426]},{"name":"MFCONTENTPROTECTIONDEVICE_OUTPUT_DATA","features":[426]},{"name":"MFCONTENTPROTECTIONDEVICE_REALTIMECLIENT_DATA","features":[426]},{"name":"MFCONTENTPROTECTIONDEVICE_REALTIMECLIENT_DATA_FUNCTIONID","features":[426]},{"name":"MFCalculateBitmapImageSize","features":[303,314,426]},{"name":"MFCalculateImageSize","features":[426]},{"name":"MFCameraExtrinsic_CalibratedTransform","features":[426]},{"name":"MFCameraExtrinsics","features":[426]},{"name":"MFCameraIntrinsic_CameraModel","features":[426]},{"name":"MFCameraIntrinsic_DistortionModel","features":[426]},{"name":"MFCameraIntrinsic_DistortionModel6KT","features":[426]},{"name":"MFCameraIntrinsic_DistortionModelArcTan","features":[426]},{"name":"MFCameraIntrinsic_DistortionModelType","features":[426]},{"name":"MFCameraIntrinsic_DistortionModelType_6KT","features":[426]},{"name":"MFCameraIntrinsic_DistortionModelType_ArcTan","features":[426]},{"name":"MFCameraIntrinsic_PinholeCameraModel","features":[426]},{"name":"MFCameraOcclusionState","features":[426]},{"name":"MFCameraOcclusionState_OccludedByCameraHardware","features":[426]},{"name":"MFCameraOcclusionState_OccludedByLid","features":[426]},{"name":"MFCameraOcclusionState_Open","features":[426]},{"name":"MFCancelCreateFile","features":[426]},{"name":"MFCancelWorkItem","features":[426]},{"name":"MFCombineSamples","features":[303,426]},{"name":"MFCompareFullToPartialMediaType","features":[303,426]},{"name":"MFConvertColorInfoFromDXVA","features":[303,426]},{"name":"MFConvertColorInfoToDXVA","features":[303,426]},{"name":"MFConvertFromFP16Array","features":[426]},{"name":"MFConvertToFP16Array","features":[426]},{"name":"MFCopyImage","features":[426]},{"name":"MFCreate2DMediaBuffer","features":[303,426]},{"name":"MFCreate3GPMediaSink","features":[426]},{"name":"MFCreateAC3MediaSink","features":[426]},{"name":"MFCreateADTSMediaSink","features":[426]},{"name":"MFCreateAMMediaTypeFromMFMediaType","features":[303,426]},{"name":"MFCreateASFContentInfo","features":[426]},{"name":"MFCreateASFIndexer","features":[426]},{"name":"MFCreateASFIndexerByteStream","features":[426]},{"name":"MFCreateASFMediaSink","features":[426]},{"name":"MFCreateASFMediaSinkActivate","features":[426]},{"name":"MFCreateASFMultiplexer","features":[426]},{"name":"MFCreateASFProfile","features":[426]},{"name":"MFCreateASFProfileFromPresentationDescriptor","features":[426]},{"name":"MFCreateASFSplitter","features":[426]},{"name":"MFCreateASFStreamSelector","features":[426]},{"name":"MFCreateASFStreamingMediaSink","features":[426]},{"name":"MFCreateASFStreamingMediaSinkActivate","features":[426]},{"name":"MFCreateAVIMediaSink","features":[426]},{"name":"MFCreateAggregateSource","features":[426]},{"name":"MFCreateAlignedMemoryBuffer","features":[426]},{"name":"MFCreateAsyncResult","features":[426]},{"name":"MFCreateAttributes","features":[426]},{"name":"MFCreateAudioMediaType","features":[418,426]},{"name":"MFCreateAudioRenderer","features":[426]},{"name":"MFCreateAudioRendererActivate","features":[426]},{"name":"MFCreateCameraControlMonitor","features":[426]},{"name":"MFCreateCameraOcclusionStateMonitor","features":[426]},{"name":"MFCreateCollection","features":[426]},{"name":"MFCreateContentDecryptorContext","features":[426]},{"name":"MFCreateContentProtectionDevice","features":[426]},{"name":"MFCreateCredentialCache","features":[426]},{"name":"MFCreateD3D12SynchronizationObject","features":[350,426]},{"name":"MFCreateDXGIDeviceManager","features":[426]},{"name":"MFCreateDXGISurfaceBuffer","features":[303,426]},{"name":"MFCreateDXSurfaceBuffer","features":[303,426]},{"name":"MFCreateDeviceSource","features":[426]},{"name":"MFCreateDeviceSourceActivate","features":[426]},{"name":"MFCreateEncryptedMediaExtensionsStoreActivate","features":[426,354]},{"name":"MFCreateEventQueue","features":[426]},{"name":"MFCreateExtendedCameraIntrinsicModel","features":[426]},{"name":"MFCreateExtendedCameraIntrinsics","features":[426]},{"name":"MFCreateFMPEG4MediaSink","features":[426]},{"name":"MFCreateFile","features":[426]},{"name":"MFCreateLegacyMediaBufferOnMFMediaBuffer","features":[431,426]},{"name":"MFCreateMFByteStreamOnStream","features":[426,354]},{"name":"MFCreateMFByteStreamOnStreamEx","features":[426]},{"name":"MFCreateMFByteStreamWrapper","features":[426]},{"name":"MFCreateMFVideoFormatFromMFMediaType","features":[303,426]},{"name":"MFCreateMP3MediaSink","features":[426]},{"name":"MFCreateMPEG4MediaSink","features":[426]},{"name":"MFCreateMediaBufferFromMediaType","features":[426]},{"name":"MFCreateMediaBufferWrapper","features":[426]},{"name":"MFCreateMediaEvent","features":[426]},{"name":"MFCreateMediaExtensionActivate","features":[426]},{"name":"MFCreateMediaSession","features":[426]},{"name":"MFCreateMediaType","features":[426]},{"name":"MFCreateMediaTypeFromProperties","features":[426]},{"name":"MFCreateMediaTypeFromRepresentation","features":[426]},{"name":"MFCreateMemoryBuffer","features":[426]},{"name":"MFCreateMuxSink","features":[426]},{"name":"MFCreateMuxStreamAttributes","features":[426]},{"name":"MFCreateMuxStreamMediaType","features":[426]},{"name":"MFCreateMuxStreamSample","features":[426]},{"name":"MFCreateNetSchemePlugin","features":[426]},{"name":"MFCreatePMPMediaSession","features":[426]},{"name":"MFCreatePMPServer","features":[426]},{"name":"MFCreatePresentationClock","features":[426]},{"name":"MFCreatePresentationDescriptor","features":[426]},{"name":"MFCreatePresentationDescriptorFromASFProfile","features":[426]},{"name":"MFCreatePropertiesFromMediaType","features":[426]},{"name":"MFCreateProtectedEnvironmentAccess","features":[426]},{"name":"MFCreateProxyLocator","features":[426,374]},{"name":"MFCreateRelativePanelWatcher","features":[426]},{"name":"MFCreateRemoteDesktopPlugin","features":[426]},{"name":"MFCreateSample","features":[426]},{"name":"MFCreateSampleCopierMFT","features":[426]},{"name":"MFCreateSampleGrabberSinkActivate","features":[426]},{"name":"MFCreateSensorActivityMonitor","features":[426]},{"name":"MFCreateSensorGroup","features":[426]},{"name":"MFCreateSensorProfile","features":[426]},{"name":"MFCreateSensorProfileCollection","features":[426]},{"name":"MFCreateSensorStream","features":[426]},{"name":"MFCreateSequencerSegmentOffset","features":[426]},{"name":"MFCreateSequencerSource","features":[426]},{"name":"MFCreateSimpleTypeHandler","features":[426]},{"name":"MFCreateSinkWriterFromMediaSink","features":[426]},{"name":"MFCreateSinkWriterFromURL","features":[426]},{"name":"MFCreateSourceReaderFromByteStream","features":[426]},{"name":"MFCreateSourceReaderFromMediaSource","features":[426]},{"name":"MFCreateSourceReaderFromURL","features":[426]},{"name":"MFCreateSourceResolver","features":[426]},{"name":"MFCreateStandardQualityManager","features":[426]},{"name":"MFCreateStreamDescriptor","features":[426]},{"name":"MFCreateStreamOnMFByteStream","features":[426,354]},{"name":"MFCreateStreamOnMFByteStreamEx","features":[426]},{"name":"MFCreateSystemTimeSource","features":[426]},{"name":"MFCreateTempFile","features":[426]},{"name":"MFCreateTopoLoader","features":[426]},{"name":"MFCreateTopology","features":[426]},{"name":"MFCreateTopologyNode","features":[426]},{"name":"MFCreateTrackedSample","features":[426]},{"name":"MFCreateTranscodeProfile","features":[426]},{"name":"MFCreateTranscodeSinkActivate","features":[426]},{"name":"MFCreateTranscodeTopology","features":[426]},{"name":"MFCreateTranscodeTopologyFromByteStream","features":[426]},{"name":"MFCreateTransformActivate","features":[426]},{"name":"MFCreateVideoMediaType","features":[303,426]},{"name":"MFCreateVideoMediaTypeFromBitMapInfoHeader","features":[314,426]},{"name":"MFCreateVideoMediaTypeFromBitMapInfoHeaderEx","features":[314,426]},{"name":"MFCreateVideoMediaTypeFromSubtype","features":[426]},{"name":"MFCreateVideoMixer","features":[426]},{"name":"MFCreateVideoMixerAndPresenter","features":[426]},{"name":"MFCreateVideoPresenter","features":[426]},{"name":"MFCreateVideoRenderer","features":[426]},{"name":"MFCreateVideoRendererActivate","features":[303,426]},{"name":"MFCreateVideoSampleAllocator","features":[426]},{"name":"MFCreateVideoSampleAllocatorEx","features":[426]},{"name":"MFCreateVideoSampleFromSurface","features":[426]},{"name":"MFCreateVirtualCamera","features":[426]},{"name":"MFCreateWAVEMediaSink","features":[426]},{"name":"MFCreateWICBitmapBuffer","features":[426]},{"name":"MFCreateWMAEncoderActivate","features":[426,374]},{"name":"MFCreateWMVEncoderActivate","features":[426,374]},{"name":"MFCreateWaveFormatExFromMFMediaType","features":[418,426]},{"name":"MFDepthMeasurement","features":[426]},{"name":"MFDeserializeAttributesFromStream","features":[426,354]},{"name":"MFDeserializePresentationDescriptor","features":[426]},{"name":"MFENABLETYPE_MF_RebootRequired","features":[426]},{"name":"MFENABLETYPE_MF_UpdateRevocationInformation","features":[426]},{"name":"MFENABLETYPE_MF_UpdateUntrustedComponent","features":[426]},{"name":"MFENABLETYPE_WMDRMV1_LicenseAcquisition","features":[426]},{"name":"MFENABLETYPE_WMDRMV7_Individualization","features":[426]},{"name":"MFENABLETYPE_WMDRMV7_LicenseAcquisition","features":[426]},{"name":"MFEVRDLL","features":[426]},{"name":"MFEndCreateFile","features":[426]},{"name":"MFEndRegisterWorkQueueWithMMCSS","features":[426]},{"name":"MFEndUnregisterWorkQueueWithMMCSS","features":[426]},{"name":"MFEnumDeviceSources","features":[426]},{"name":"MFExtendedCameraIntrinsic_IntrinsicModel","features":[426]},{"name":"MFFLACBytestreamHandler","features":[426]},{"name":"MFFLACSinkClassFactory","features":[426]},{"name":"MFFOLDDOWN_MATRIX","features":[426]},{"name":"MFFrameRateToAverageTimePerFrame","features":[426]},{"name":"MFFrameSourceTypes","features":[426]},{"name":"MFFrameSourceTypes_Color","features":[426]},{"name":"MFFrameSourceTypes_Custom","features":[426]},{"name":"MFFrameSourceTypes_Depth","features":[426]},{"name":"MFFrameSourceTypes_Image","features":[426]},{"name":"MFFrameSourceTypes_Infrared","features":[426]},{"name":"MFGetAttributesAsBlob","features":[426]},{"name":"MFGetAttributesAsBlobSize","features":[426]},{"name":"MFGetContentProtectionSystemCLSID","features":[426]},{"name":"MFGetLocalId","features":[426]},{"name":"MFGetMFTMerit","features":[426]},{"name":"MFGetPlaneSize","features":[426]},{"name":"MFGetPluginControl","features":[426]},{"name":"MFGetService","features":[426]},{"name":"MFGetStrideForBitmapInfoHeader","features":[426]},{"name":"MFGetSupportedMimeTypes","features":[426]},{"name":"MFGetSupportedSchemes","features":[426]},{"name":"MFGetSystemId","features":[426]},{"name":"MFGetSystemTime","features":[426]},{"name":"MFGetTimerPeriodicity","features":[426]},{"name":"MFGetTopoNodeCurrentType","features":[303,426]},{"name":"MFGetUncompressedVideoFormat","features":[303,426]},{"name":"MFGetWorkQueueMMCSSClass","features":[426]},{"name":"MFGetWorkQueueMMCSSPriority","features":[426]},{"name":"MFGetWorkQueueMMCSSTaskId","features":[426]},{"name":"MFHeapAlloc","features":[426]},{"name":"MFHeapFree","features":[426]},{"name":"MFINPUTTRUSTAUTHORITY_ACCESS_ACTION","features":[426]},{"name":"MFINPUTTRUSTAUTHORITY_ACCESS_PARAMS","features":[426]},{"name":"MFImageFormat_JPEG","features":[426]},{"name":"MFImageFormat_RGB32","features":[426]},{"name":"MFInitAMMediaTypeFromMFMediaType","features":[303,426]},{"name":"MFInitAttributesFromBlob","features":[426]},{"name":"MFInitMediaTypeFromAMMediaType","features":[303,426]},{"name":"MFInitMediaTypeFromMFVideoFormat","features":[303,426]},{"name":"MFInitMediaTypeFromMPEG1VideoInfo","features":[303,314,426]},{"name":"MFInitMediaTypeFromMPEG2VideoInfo","features":[303,314,426]},{"name":"MFInitMediaTypeFromVideoInfoHeader","features":[303,314,426]},{"name":"MFInitMediaTypeFromVideoInfoHeader2","features":[303,314,426]},{"name":"MFInitMediaTypeFromWaveFormatEx","features":[418,426]},{"name":"MFInitVideoFormat","features":[303,426]},{"name":"MFInitVideoFormat_RGB","features":[303,426]},{"name":"MFInvokeCallback","features":[426]},{"name":"MFIsContentProtectionDeviceSupported","features":[303,426]},{"name":"MFIsFormatYUV","features":[303,426]},{"name":"MFIsVirtualCameraTypeSupported","features":[303,426]},{"name":"MFLoadSignedLibrary","features":[426]},{"name":"MFLockDXGIDeviceManager","features":[426]},{"name":"MFLockPlatform","features":[426]},{"name":"MFLockSharedWorkQueue","features":[426]},{"name":"MFLockWorkQueue","features":[426]},{"name":"MFMEDIASOURCE_CAN_PAUSE","features":[426]},{"name":"MFMEDIASOURCE_CAN_SEEK","features":[426]},{"name":"MFMEDIASOURCE_CAN_SKIPBACKWARD","features":[426]},{"name":"MFMEDIASOURCE_CAN_SKIPFORWARD","features":[426]},{"name":"MFMEDIASOURCE_CHARACTERISTICS","features":[426]},{"name":"MFMEDIASOURCE_DOES_NOT_USE_NETWORK","features":[426]},{"name":"MFMEDIASOURCE_HAS_MULTIPLE_PRESENTATIONS","features":[426]},{"name":"MFMEDIASOURCE_HAS_SLOW_SEEK","features":[426]},{"name":"MFMEDIASOURCE_IS_LIVE","features":[426]},{"name":"MFMPEG2DLNASINKSTATS","features":[303,426]},{"name":"MFMPEG4Format_Base","features":[426]},{"name":"MFMapDX9FormatToDXGIFormat","features":[391,426]},{"name":"MFMapDXGIFormatToDX9Format","features":[391,426]},{"name":"MFMediaKeyStatus","features":[426]},{"name":"MFMediaType_Audio","features":[426]},{"name":"MFMediaType_Binary","features":[426]},{"name":"MFMediaType_Default","features":[426]},{"name":"MFMediaType_FileTransfer","features":[426]},{"name":"MFMediaType_HTML","features":[426]},{"name":"MFMediaType_Image","features":[426]},{"name":"MFMediaType_Metadata","features":[426]},{"name":"MFMediaType_MultiplexedFrames","features":[426]},{"name":"MFMediaType_Perception","features":[426]},{"name":"MFMediaType_Protected","features":[426]},{"name":"MFMediaType_SAMI","features":[426]},{"name":"MFMediaType_Script","features":[426]},{"name":"MFMediaType_Stream","features":[426]},{"name":"MFMediaType_Subtitle","features":[426]},{"name":"MFMediaType_Video","features":[426]},{"name":"MFNETSOURCE_ACCELERATEDSTREAMINGDURATION","features":[426]},{"name":"MFNETSOURCE_AUTORECONNECTLIMIT","features":[426]},{"name":"MFNETSOURCE_AUTORECONNECTPROGRESS","features":[426]},{"name":"MFNETSOURCE_AVGBANDWIDTHBPS_ID","features":[426]},{"name":"MFNETSOURCE_BROWSERUSERAGENT","features":[426]},{"name":"MFNETSOURCE_BROWSERWEBPAGE","features":[426]},{"name":"MFNETSOURCE_BUFFERINGCOUNT_ID","features":[426]},{"name":"MFNETSOURCE_BUFFERINGTIME","features":[426]},{"name":"MFNETSOURCE_BUFFERPROGRESS_ID","features":[426]},{"name":"MFNETSOURCE_BUFFERSIZE_ID","features":[426]},{"name":"MFNETSOURCE_BYTESRECEIVED_ID","features":[426]},{"name":"MFNETSOURCE_CACHEENABLED","features":[426]},{"name":"MFNETSOURCE_CACHE_ACTIVE_COMPLETE","features":[426]},{"name":"MFNETSOURCE_CACHE_ACTIVE_WRITING","features":[426]},{"name":"MFNETSOURCE_CACHE_STATE","features":[426]},{"name":"MFNETSOURCE_CACHE_STATE_ID","features":[426]},{"name":"MFNETSOURCE_CACHE_UNAVAILABLE","features":[426]},{"name":"MFNETSOURCE_CLIENTGUID","features":[426]},{"name":"MFNETSOURCE_CONNECTIONBANDWIDTH","features":[426]},{"name":"MFNETSOURCE_CONTENTBITRATE_ID","features":[426]},{"name":"MFNETSOURCE_CREDENTIAL_MANAGER","features":[426]},{"name":"MFNETSOURCE_CROSS_ORIGIN_SUPPORT","features":[426]},{"name":"MFNETSOURCE_DOWNLOADPROGRESS_ID","features":[426]},{"name":"MFNETSOURCE_DRMNET_LICENSE_REPRESENTATION","features":[426]},{"name":"MFNETSOURCE_ENABLE_DOWNLOAD","features":[426]},{"name":"MFNETSOURCE_ENABLE_HTTP","features":[426]},{"name":"MFNETSOURCE_ENABLE_MSB","features":[426]},{"name":"MFNETSOURCE_ENABLE_PRIVATEMODE","features":[426]},{"name":"MFNETSOURCE_ENABLE_RTSP","features":[426]},{"name":"MFNETSOURCE_ENABLE_STREAMING","features":[426]},{"name":"MFNETSOURCE_ENABLE_TCP","features":[426]},{"name":"MFNETSOURCE_ENABLE_UDP","features":[426]},{"name":"MFNETSOURCE_FILE","features":[426]},{"name":"MFNETSOURCE_FRIENDLYNAME","features":[426]},{"name":"MFNETSOURCE_HOSTEXE","features":[426]},{"name":"MFNETSOURCE_HOSTVERSION","features":[426]},{"name":"MFNETSOURCE_HTTP","features":[426]},{"name":"MFNETSOURCE_HTTP_DOWNLOAD_SESSION_PROVIDER","features":[426]},{"name":"MFNETSOURCE_INCORRECTLYSIGNEDPACKETS_ID","features":[426]},{"name":"MFNETSOURCE_LASTBWSWITCHTS_ID","features":[426]},{"name":"MFNETSOURCE_LINKBANDWIDTH_ID","features":[426]},{"name":"MFNETSOURCE_LOGPARAMS","features":[426]},{"name":"MFNETSOURCE_LOGURL","features":[426]},{"name":"MFNETSOURCE_LOSTPACKETS_ID","features":[426]},{"name":"MFNETSOURCE_MAXBITRATE_ID","features":[426]},{"name":"MFNETSOURCE_MAXBUFFERTIMEMS","features":[426]},{"name":"MFNETSOURCE_MAXUDPACCELERATEDSTREAMINGDURATION","features":[426]},{"name":"MFNETSOURCE_MULTICAST","features":[426]},{"name":"MFNETSOURCE_OUTPACKETS_ID","features":[426]},{"name":"MFNETSOURCE_PEERMANAGER","features":[426]},{"name":"MFNETSOURCE_PLAYERID","features":[426]},{"name":"MFNETSOURCE_PLAYERUSERAGENT","features":[426]},{"name":"MFNETSOURCE_PLAYERVERSION","features":[426]},{"name":"MFNETSOURCE_PPBANDWIDTH","features":[426]},{"name":"MFNETSOURCE_PREVIEWMODEENABLED","features":[426]},{"name":"MFNETSOURCE_PROTOCOL","features":[426]},{"name":"MFNETSOURCE_PROTOCOL_ID","features":[426]},{"name":"MFNETSOURCE_PROTOCOL_TYPE","features":[426]},{"name":"MFNETSOURCE_PROXYBYPASSFORLOCAL","features":[426]},{"name":"MFNETSOURCE_PROXYEXCEPTIONLIST","features":[426]},{"name":"MFNETSOURCE_PROXYHOSTNAME","features":[426]},{"name":"MFNETSOURCE_PROXYINFO","features":[426]},{"name":"MFNETSOURCE_PROXYLOCATORFACTORY","features":[426]},{"name":"MFNETSOURCE_PROXYPORT","features":[426]},{"name":"MFNETSOURCE_PROXYRERUNAUTODETECTION","features":[426]},{"name":"MFNETSOURCE_PROXYSETTINGS","features":[426]},{"name":"MFNETSOURCE_RECEPTION_QUALITY_ID","features":[426]},{"name":"MFNETSOURCE_RECOVEREDBYECCPACKETS_ID","features":[426]},{"name":"MFNETSOURCE_RECOVEREDBYRTXPACKETS_ID","features":[426]},{"name":"MFNETSOURCE_RECOVEREDPACKETS_ID","features":[426]},{"name":"MFNETSOURCE_RECVPACKETS_ID","features":[426]},{"name":"MFNETSOURCE_RECVRATE_ID","features":[426]},{"name":"MFNETSOURCE_RESENDSENABLED","features":[426]},{"name":"MFNETSOURCE_RESENDSRECEIVED_ID","features":[426]},{"name":"MFNETSOURCE_RESENDSREQUESTED_ID","features":[426]},{"name":"MFNETSOURCE_RESOURCE_FILTER","features":[426]},{"name":"MFNETSOURCE_RTSP","features":[426]},{"name":"MFNETSOURCE_SEEKRANGEEND_ID","features":[426]},{"name":"MFNETSOURCE_SEEKRANGESTART_ID","features":[426]},{"name":"MFNETSOURCE_SIGNEDSESSION_ID","features":[426]},{"name":"MFNETSOURCE_SPEEDFACTOR_ID","features":[426]},{"name":"MFNETSOURCE_SSLCERTIFICATE_MANAGER","features":[426]},{"name":"MFNETSOURCE_STATISTICS","features":[426]},{"name":"MFNETSOURCE_STATISTICS_IDS","features":[426]},{"name":"MFNETSOURCE_STATISTICS_SERVICE","features":[426]},{"name":"MFNETSOURCE_STREAM_LANGUAGE","features":[426]},{"name":"MFNETSOURCE_TCP","features":[426]},{"name":"MFNETSOURCE_THINNINGENABLED","features":[426]},{"name":"MFNETSOURCE_TRANSPORT","features":[426]},{"name":"MFNETSOURCE_TRANSPORT_ID","features":[426]},{"name":"MFNETSOURCE_TRANSPORT_TYPE","features":[426]},{"name":"MFNETSOURCE_UDP","features":[426]},{"name":"MFNETSOURCE_UDP_PORT_RANGE","features":[426]},{"name":"MFNETSOURCE_UNDEFINED","features":[426]},{"name":"MFNETSOURCE_UNPREDEFINEDPROTOCOLNAME_ID","features":[426]},{"name":"MFNETSOURCE_VBR_ID","features":[426]},{"name":"MFNET_AUTHENTICATION_CLEAR_TEXT","features":[426]},{"name":"MFNET_AUTHENTICATION_LOGGED_ON_USER","features":[426]},{"name":"MFNET_AUTHENTICATION_PROXY","features":[426]},{"name":"MFNET_CREDENTIAL_ALLOW_CLEAR_TEXT","features":[426]},{"name":"MFNET_CREDENTIAL_DONT_CACHE","features":[426]},{"name":"MFNET_CREDENTIAL_SAVE","features":[426]},{"name":"MFNET_PROXYSETTINGS","features":[426]},{"name":"MFNET_PROXYSETTING_AUTO","features":[426]},{"name":"MFNET_PROXYSETTING_BROWSER","features":[426]},{"name":"MFNET_PROXYSETTING_MANUAL","features":[426]},{"name":"MFNET_PROXYSETTING_NONE","features":[426]},{"name":"MFNET_SAVEJOB_SERVICE","features":[426]},{"name":"MFNetAuthenticationFlags","features":[426]},{"name":"MFNetCredentialManagerGetParam","features":[303,426]},{"name":"MFNetCredentialOptions","features":[426]},{"name":"MFNetCredentialRequirements","features":[426]},{"name":"MFNominalRange","features":[426]},{"name":"MFNominalRange_0_255","features":[426]},{"name":"MFNominalRange_16_235","features":[426]},{"name":"MFNominalRange_48_208","features":[426]},{"name":"MFNominalRange_64_127","features":[426]},{"name":"MFNominalRange_ForceDWORD","features":[426]},{"name":"MFNominalRange_Last","features":[426]},{"name":"MFNominalRange_Normal","features":[426]},{"name":"MFNominalRange_Unknown","features":[426]},{"name":"MFNominalRange_Wide","features":[426]},{"name":"MFOffset","features":[426]},{"name":"MFPCreateMediaPlayer","features":[303,426]},{"name":"MFPERIODICCALLBACK","features":[426]},{"name":"MFPMPSESSION_CREATION_FLAGS","features":[426]},{"name":"MFPMPSESSION_IN_PROCESS","features":[426]},{"name":"MFPMPSESSION_UNPROTECTED_PROCESS","features":[426]},{"name":"MFPOLICYMANAGER_ACTION","features":[426]},{"name":"MFPROTECTIONATTRIBUTE_BEST_EFFORT","features":[426]},{"name":"MFPROTECTIONATTRIBUTE_CONSTRICTVIDEO_IMAGESIZE","features":[426]},{"name":"MFPROTECTIONATTRIBUTE_FAIL_OVER","features":[426]},{"name":"MFPROTECTIONATTRIBUTE_HDCP_SRM","features":[426]},{"name":"MFPROTECTION_ACP","features":[426]},{"name":"MFPROTECTION_CGMSA","features":[426]},{"name":"MFPROTECTION_CONSTRICTAUDIO","features":[426]},{"name":"MFPROTECTION_CONSTRICTVIDEO","features":[426]},{"name":"MFPROTECTION_CONSTRICTVIDEO_NOOPM","features":[426]},{"name":"MFPROTECTION_DISABLE","features":[426]},{"name":"MFPROTECTION_DISABLE_SCREEN_SCRAPE","features":[426]},{"name":"MFPROTECTION_FFT","features":[426]},{"name":"MFPROTECTION_GRAPHICS_TRANSFER_AES_ENCRYPTION","features":[426]},{"name":"MFPROTECTION_HARDWARE","features":[426]},{"name":"MFPROTECTION_HDCP","features":[426]},{"name":"MFPROTECTION_HDCP_WITH_TYPE_ENFORCEMENT","features":[426]},{"name":"MFPROTECTION_PROTECTED_SURFACE","features":[426]},{"name":"MFPROTECTION_TRUSTEDAUDIODRIVERS","features":[426]},{"name":"MFPROTECTION_VIDEO_FRAMES","features":[426]},{"name":"MFPROTECTION_WMDRMOTA","features":[426]},{"name":"MFP_ACQUIRE_USER_CREDENTIAL_EVENT","features":[303,426,374]},{"name":"MFP_CREATION_OPTIONS","features":[426]},{"name":"MFP_CREDENTIAL_CLEAR_TEXT","features":[426]},{"name":"MFP_CREDENTIAL_DO_NOT_CACHE","features":[426]},{"name":"MFP_CREDENTIAL_LOGGED_ON_USER","features":[426]},{"name":"MFP_CREDENTIAL_PROMPT","features":[426]},{"name":"MFP_CREDENTIAL_PROXY","features":[426]},{"name":"MFP_CREDENTIAL_SAVE","features":[426]},{"name":"MFP_ERROR_EVENT","features":[426,374]},{"name":"MFP_EVENT_HEADER","features":[426,374]},{"name":"MFP_EVENT_TYPE","features":[426]},{"name":"MFP_EVENT_TYPE_ACQUIRE_USER_CREDENTIAL","features":[426]},{"name":"MFP_EVENT_TYPE_ERROR","features":[426]},{"name":"MFP_EVENT_TYPE_FRAME_STEP","features":[426]},{"name":"MFP_EVENT_TYPE_MEDIAITEM_CLEARED","features":[426]},{"name":"MFP_EVENT_TYPE_MEDIAITEM_CREATED","features":[426]},{"name":"MFP_EVENT_TYPE_MEDIAITEM_SET","features":[426]},{"name":"MFP_EVENT_TYPE_MF","features":[426]},{"name":"MFP_EVENT_TYPE_PAUSE","features":[426]},{"name":"MFP_EVENT_TYPE_PLAY","features":[426]},{"name":"MFP_EVENT_TYPE_PLAYBACK_ENDED","features":[426]},{"name":"MFP_EVENT_TYPE_POSITION_SET","features":[426]},{"name":"MFP_EVENT_TYPE_RATE_SET","features":[426]},{"name":"MFP_EVENT_TYPE_STOP","features":[426]},{"name":"MFP_FRAME_STEP_EVENT","features":[426,374]},{"name":"MFP_MEDIAITEM_CAN_PAUSE","features":[426]},{"name":"MFP_MEDIAITEM_CAN_SEEK","features":[426]},{"name":"MFP_MEDIAITEM_CLEARED_EVENT","features":[426,374]},{"name":"MFP_MEDIAITEM_CREATED_EVENT","features":[426,374]},{"name":"MFP_MEDIAITEM_HAS_SLOW_SEEK","features":[426]},{"name":"MFP_MEDIAITEM_IS_LIVE","features":[426]},{"name":"MFP_MEDIAITEM_SET_EVENT","features":[426,374]},{"name":"MFP_MEDIAPLAYER_STATE","features":[426]},{"name":"MFP_MEDIAPLAYER_STATE_EMPTY","features":[426]},{"name":"MFP_MEDIAPLAYER_STATE_PAUSED","features":[426]},{"name":"MFP_MEDIAPLAYER_STATE_PLAYING","features":[426]},{"name":"MFP_MEDIAPLAYER_STATE_SHUTDOWN","features":[426]},{"name":"MFP_MEDIAPLAYER_STATE_STOPPED","features":[426]},{"name":"MFP_MF_EVENT","features":[426,374]},{"name":"MFP_OPTION_FREE_THREADED_CALLBACK","features":[426]},{"name":"MFP_OPTION_NONE","features":[426]},{"name":"MFP_OPTION_NO_MMCSS","features":[426]},{"name":"MFP_OPTION_NO_REMOTE_DESKTOP_OPTIMIZATION","features":[426]},{"name":"MFP_PAUSE_EVENT","features":[426,374]},{"name":"MFP_PLAYBACK_ENDED_EVENT","features":[426,374]},{"name":"MFP_PLAY_EVENT","features":[426,374]},{"name":"MFP_POSITIONTYPE_100NS","features":[426]},{"name":"MFP_POSITION_SET_EVENT","features":[426,374]},{"name":"MFP_RATE_SET_EVENT","features":[426,374]},{"name":"MFP_STOP_EVENT","features":[426,374]},{"name":"MFPaletteEntry","features":[426]},{"name":"MFPinholeCameraIntrinsic_IntrinsicModel","features":[426]},{"name":"MFPinholeCameraIntrinsics","features":[426]},{"name":"MFPutWaitingWorkItem","features":[303,426]},{"name":"MFPutWorkItem","features":[426]},{"name":"MFPutWorkItem2","features":[426]},{"name":"MFPutWorkItemEx","features":[426]},{"name":"MFPutWorkItemEx2","features":[426]},{"name":"MFRATE_DIRECTION","features":[426]},{"name":"MFRATE_FORWARD","features":[426]},{"name":"MFRATE_REVERSE","features":[426]},{"name":"MFRR_COMPONENTS","features":[426]},{"name":"MFRR_COMPONENT_HASH_INFO","features":[426]},{"name":"MFRR_INFO_VERSION","features":[426]},{"name":"MFRatio","features":[426]},{"name":"MFRegisterLocalByteStreamHandler","features":[426]},{"name":"MFRegisterLocalSchemeHandler","features":[426]},{"name":"MFRegisterPlatformWithMMCSS","features":[426]},{"name":"MFRemovePeriodicCallback","features":[426]},{"name":"MFRequireProtectedEnvironment","features":[426]},{"name":"MFSEQUENCER_INVALID_ELEMENT_ID","features":[426]},{"name":"MFSESSIONCAP_DOES_NOT_USE_NETWORK","features":[426]},{"name":"MFSESSIONCAP_PAUSE","features":[426]},{"name":"MFSESSIONCAP_RATE_FORWARD","features":[426]},{"name":"MFSESSIONCAP_RATE_REVERSE","features":[426]},{"name":"MFSESSIONCAP_SEEK","features":[426]},{"name":"MFSESSIONCAP_START","features":[426]},{"name":"MFSESSION_GETFULLTOPOLOGY_CURRENT","features":[426]},{"name":"MFSESSION_GETFULLTOPOLOGY_FLAGS","features":[426]},{"name":"MFSESSION_SETTOPOLOGY_CLEAR_CURRENT","features":[426]},{"name":"MFSESSION_SETTOPOLOGY_FLAGS","features":[426]},{"name":"MFSESSION_SETTOPOLOGY_IMMEDIATE","features":[426]},{"name":"MFSESSION_SETTOPOLOGY_NORESOLUTION","features":[426]},{"name":"MFSHUTDOWN_COMPLETED","features":[426]},{"name":"MFSHUTDOWN_INITIATED","features":[426]},{"name":"MFSHUTDOWN_STATUS","features":[426]},{"name":"MFSINK_WMDRMACTION","features":[426]},{"name":"MFSINK_WMDRMACTION_ENCODE","features":[426]},{"name":"MFSINK_WMDRMACTION_LAST","features":[426]},{"name":"MFSINK_WMDRMACTION_TRANSCODE","features":[426]},{"name":"MFSINK_WMDRMACTION_TRANSCRYPT","features":[426]},{"name":"MFSINK_WMDRMACTION_UNDEFINED","features":[426]},{"name":"MFSTARTUP_FULL","features":[426]},{"name":"MFSTARTUP_LITE","features":[426]},{"name":"MFSTARTUP_NOSOCKET","features":[426]},{"name":"MFSTREAMSINK_MARKER_DEFAULT","features":[426]},{"name":"MFSTREAMSINK_MARKER_ENDOFSEGMENT","features":[426]},{"name":"MFSTREAMSINK_MARKER_EVENT","features":[426]},{"name":"MFSTREAMSINK_MARKER_TICK","features":[426]},{"name":"MFSTREAMSINK_MARKER_TYPE","features":[426]},{"name":"MFSampleAllocatorUsage","features":[426]},{"name":"MFSampleAllocatorUsage_DoesNotAllocate","features":[426]},{"name":"MFSampleAllocatorUsage_UsesCustomAllocator","features":[426]},{"name":"MFSampleAllocatorUsage_UsesProvidedAllocator","features":[426]},{"name":"MFSampleEncryptionProtectionScheme","features":[426]},{"name":"MFSampleExtension_3DVideo","features":[426]},{"name":"MFSampleExtension_3DVideo_MultiView","features":[426]},{"name":"MFSampleExtension_3DVideo_Packed","features":[426]},{"name":"MFSampleExtension_3DVideo_SampleFormat","features":[426]},{"name":"MFSampleExtension_AccumulatedNonRefPicPercent","features":[426]},{"name":"MFSampleExtension_BottomFieldFirst","features":[426]},{"name":"MFSampleExtension_CameraExtrinsics","features":[426]},{"name":"MFSampleExtension_CaptureMetadata","features":[426]},{"name":"MFSampleExtension_ChromaOnly","features":[426]},{"name":"MFSampleExtension_CleanPoint","features":[426]},{"name":"MFSampleExtension_ClosedCaption_CEA708","features":[426]},{"name":"MFSampleExtension_ClosedCaption_CEA708_MAX_SIZE","features":[426]},{"name":"MFSampleExtension_Content_KeyID","features":[426]},{"name":"MFSampleExtension_DecodeTimestamp","features":[426]},{"name":"MFSampleExtension_Depth_MaxReliableDepth","features":[426]},{"name":"MFSampleExtension_Depth_MinReliableDepth","features":[426]},{"name":"MFSampleExtension_DerivedFromTopField","features":[426]},{"name":"MFSampleExtension_DescrambleData","features":[426]},{"name":"MFSampleExtension_DeviceReferenceSystemTime","features":[426]},{"name":"MFSampleExtension_DeviceTimestamp","features":[426]},{"name":"MFSampleExtension_DirtyRects","features":[426]},{"name":"MFSampleExtension_Discontinuity","features":[426]},{"name":"MFSampleExtension_Encryption_ClearSliceHeaderData","features":[426]},{"name":"MFSampleExtension_Encryption_CryptByteBlock","features":[426]},{"name":"MFSampleExtension_Encryption_HardwareProtection","features":[426]},{"name":"MFSampleExtension_Encryption_HardwareProtection_KeyInfo","features":[426]},{"name":"MFSampleExtension_Encryption_HardwareProtection_KeyInfoID","features":[426]},{"name":"MFSampleExtension_Encryption_HardwareProtection_VideoDecryptorContext","features":[426]},{"name":"MFSampleExtension_Encryption_KeyID","features":[426]},{"name":"MFSampleExtension_Encryption_NALUTypes","features":[426]},{"name":"MFSampleExtension_Encryption_Opaque_Data","features":[426]},{"name":"MFSampleExtension_Encryption_ProtectionScheme","features":[426]},{"name":"MFSampleExtension_Encryption_ResumeVideoOutput","features":[426]},{"name":"MFSampleExtension_Encryption_SEIData","features":[426]},{"name":"MFSampleExtension_Encryption_SPSPPSData","features":[426]},{"name":"MFSampleExtension_Encryption_SampleID","features":[426]},{"name":"MFSampleExtension_Encryption_SkipByteBlock","features":[426]},{"name":"MFSampleExtension_Encryption_SubSampleMappingSplit","features":[426]},{"name":"MFSampleExtension_Encryption_SubSample_Mapping","features":[426]},{"name":"MFSampleExtension_ExtendedCameraIntrinsics","features":[426]},{"name":"MFSampleExtension_FeatureMap","features":[426]},{"name":"MFSampleExtension_ForwardedDecodeUnitType","features":[426]},{"name":"MFSampleExtension_ForwardedDecodeUnits","features":[426]},{"name":"MFSampleExtension_FrameCorruption","features":[426]},{"name":"MFSampleExtension_GenKeyCtx","features":[426]},{"name":"MFSampleExtension_GenKeyFunc","features":[426]},{"name":"MFSampleExtension_HDCP_FrameCounter","features":[426]},{"name":"MFSampleExtension_HDCP_OptionalHeader","features":[426]},{"name":"MFSampleExtension_HDCP_StreamID","features":[426]},{"name":"MFSampleExtension_Interlaced","features":[426]},{"name":"MFSampleExtension_LastSlice","features":[426]},{"name":"MFSampleExtension_LongTermReferenceFrameInfo","features":[426]},{"name":"MFSampleExtension_MDLCacheCookie","features":[426]},{"name":"MFSampleExtension_MULTIPLEXED_MANAGER","features":[426]},{"name":"MFSampleExtension_MaxDecodeFrameSize","features":[426]},{"name":"MFSampleExtension_MeanAbsoluteDifference","features":[426]},{"name":"MFSampleExtension_MoveRegions","features":[426]},{"name":"MFSampleExtension_NALULengthInfo","features":[426]},{"name":"MFSampleExtension_PacketCrossOffsets","features":[426]},{"name":"MFSampleExtension_PhotoThumbnail","features":[426]},{"name":"MFSampleExtension_PhotoThumbnailMediaType","features":[426]},{"name":"MFSampleExtension_PinholeCameraIntrinsics","features":[426]},{"name":"MFSampleExtension_ROIRectangle","features":[426]},{"name":"MFSampleExtension_RepeatFirstField","features":[426]},{"name":"MFSampleExtension_RepeatFrame","features":[426]},{"name":"MFSampleExtension_SampleKeyID","features":[426]},{"name":"MFSampleExtension_SingleField","features":[426]},{"name":"MFSampleExtension_Spatial_CameraCoordinateSystem","features":[426]},{"name":"MFSampleExtension_Spatial_CameraProjectionTransform","features":[426]},{"name":"MFSampleExtension_Spatial_CameraViewTransform","features":[426]},{"name":"MFSampleExtension_TargetGlobalLuminance","features":[426]},{"name":"MFSampleExtension_Timestamp","features":[426]},{"name":"MFSampleExtension_Token","features":[426]},{"name":"MFSampleExtension_VideoDSPMode","features":[426]},{"name":"MFSampleExtension_VideoEncodePictureType","features":[426]},{"name":"MFSampleExtension_VideoEncodeQP","features":[426]},{"name":"MFScheduleWorkItem","features":[426]},{"name":"MFScheduleWorkItemEx","features":[426]},{"name":"MFSensorDeviceMode","features":[426]},{"name":"MFSensorDeviceMode_Controller","features":[426]},{"name":"MFSensorDeviceMode_Shared","features":[426]},{"name":"MFSensorDeviceType","features":[426]},{"name":"MFSensorDeviceType_Device","features":[426]},{"name":"MFSensorDeviceType_FrameProvider","features":[426]},{"name":"MFSensorDeviceType_MediaSource","features":[426]},{"name":"MFSensorDeviceType_SensorTransform","features":[426]},{"name":"MFSensorDeviceType_Unknown","features":[426]},{"name":"MFSensorStreamType","features":[426]},{"name":"MFSensorStreamType_Input","features":[426]},{"name":"MFSensorStreamType_Output","features":[426]},{"name":"MFSensorStreamType_Unknown","features":[426]},{"name":"MFSequencerTopologyFlags","features":[426]},{"name":"MFSerializeAttributesToStream","features":[426,354]},{"name":"MFSerializePresentationDescriptor","features":[426]},{"name":"MFShutdown","features":[426]},{"name":"MFShutdownObject","features":[426]},{"name":"MFSplitSample","features":[426]},{"name":"MFStandardVideoFormat","features":[426]},{"name":"MFStartup","features":[426]},{"name":"MFStdVideoFormat_ATSC_HD1080i","features":[426]},{"name":"MFStdVideoFormat_ATSC_HD720p","features":[426]},{"name":"MFStdVideoFormat_ATSC_SD480i","features":[426]},{"name":"MFStdVideoFormat_DVD_NTSC","features":[426]},{"name":"MFStdVideoFormat_DVD_PAL","features":[426]},{"name":"MFStdVideoFormat_DV_NTSC","features":[426]},{"name":"MFStdVideoFormat_DV_PAL","features":[426]},{"name":"MFStdVideoFormat_NTSC","features":[426]},{"name":"MFStdVideoFormat_PAL","features":[426]},{"name":"MFStdVideoFormat_reserved","features":[426]},{"name":"MFStreamExtension_CameraExtrinsics","features":[426]},{"name":"MFStreamExtension_ExtendedCameraIntrinsics","features":[426]},{"name":"MFStreamExtension_PinholeCameraIntrinsics","features":[426]},{"name":"MFStreamFormat_MPEG2Program","features":[426]},{"name":"MFStreamFormat_MPEG2Transport","features":[426]},{"name":"MFSubtitleFormat_ATSC","features":[426]},{"name":"MFSubtitleFormat_CustomUserData","features":[426]},{"name":"MFSubtitleFormat_PGS","features":[426]},{"name":"MFSubtitleFormat_SRT","features":[426]},{"name":"MFSubtitleFormat_SSA","features":[426]},{"name":"MFSubtitleFormat_TTML","features":[426]},{"name":"MFSubtitleFormat_VobSub","features":[426]},{"name":"MFSubtitleFormat_WebVTT","features":[426]},{"name":"MFSubtitleFormat_XML","features":[426]},{"name":"MFTEnum","features":[426]},{"name":"MFTEnum2","features":[426]},{"name":"MFTEnumEx","features":[426]},{"name":"MFTGetInfo","features":[426]},{"name":"MFTIMER_FLAGS","features":[426]},{"name":"MFTIMER_RELATIVE","features":[426]},{"name":"MFTOPOLOGY_DXVA_DEFAULT","features":[426]},{"name":"MFTOPOLOGY_DXVA_FULL","features":[426]},{"name":"MFTOPOLOGY_DXVA_MODE","features":[426]},{"name":"MFTOPOLOGY_DXVA_NONE","features":[426]},{"name":"MFTOPOLOGY_HARDWARE_MODE","features":[426]},{"name":"MFTOPOLOGY_HWMODE_SOFTWARE_ONLY","features":[426]},{"name":"MFTOPOLOGY_HWMODE_USE_HARDWARE","features":[426]},{"name":"MFTOPOLOGY_HWMODE_USE_ONLY_HARDWARE","features":[426]},{"name":"MFTOPONODE_ATTRIBUTE_UPDATE","features":[426]},{"name":"MFTRegister","features":[426]},{"name":"MFTRegisterLocal","features":[426,354]},{"name":"MFTRegisterLocalByCLSID","features":[426]},{"name":"MFTUnregister","features":[426]},{"name":"MFTUnregisterLocal","features":[426,354]},{"name":"MFTUnregisterLocalByCLSID","features":[426]},{"name":"MFT_AUDIO_DECODER_AUDIO_ENDPOINT_ID","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_INFO_ATTRIBUTE","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_REASON","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_REASON_LICENSING_REQUIREMENT","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_REASON_NONE","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_DOWNMIX2CHANNEL","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_DOWNMIX6CHANNEL","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_DOWNMIX8CHANNEL","features":[426]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_NONE","features":[426]},{"name":"MFT_AUDIO_DECODER_SPATIAL_METADATA_CLIENT","features":[426]},{"name":"MFT_CATEGORY_AUDIO_DECODER","features":[426]},{"name":"MFT_CATEGORY_AUDIO_EFFECT","features":[426]},{"name":"MFT_CATEGORY_AUDIO_ENCODER","features":[426]},{"name":"MFT_CATEGORY_DEMULTIPLEXER","features":[426]},{"name":"MFT_CATEGORY_ENCRYPTOR","features":[426]},{"name":"MFT_CATEGORY_MULTIPLEXER","features":[426]},{"name":"MFT_CATEGORY_OTHER","features":[426]},{"name":"MFT_CATEGORY_VIDEO_DECODER","features":[426]},{"name":"MFT_CATEGORY_VIDEO_EFFECT","features":[426]},{"name":"MFT_CATEGORY_VIDEO_ENCODER","features":[426]},{"name":"MFT_CATEGORY_VIDEO_PROCESSOR","features":[426]},{"name":"MFT_CATEGORY_VIDEO_RENDERER_EFFECT","features":[426]},{"name":"MFT_CODEC_MERIT_Attribute","features":[426]},{"name":"MFT_CONNECTED_STREAM_ATTRIBUTE","features":[426]},{"name":"MFT_CONNECTED_TO_HW_STREAM","features":[426]},{"name":"MFT_DECODER_EXPOSE_OUTPUT_TYPES_IN_NATIVE_ORDER","features":[426]},{"name":"MFT_DECODER_FINAL_VIDEO_RESOLUTION_HINT","features":[426]},{"name":"MFT_DECODER_QUALITY_MANAGEMENT_CUSTOM_CONTROL","features":[426]},{"name":"MFT_DECODER_QUALITY_MANAGEMENT_RECOVERY_WITHOUT_ARTIFACTS","features":[426]},{"name":"MFT_DRAIN_NO_TAILS","features":[426]},{"name":"MFT_DRAIN_PRODUCE_TAILS","features":[426]},{"name":"MFT_DRAIN_TYPE","features":[426]},{"name":"MFT_ENCODER_ERROR","features":[426]},{"name":"MFT_ENCODER_SUPPORTS_CONFIG_EVENT","features":[426]},{"name":"MFT_END_STREAMING_AWARE","features":[426]},{"name":"MFT_ENUM_ADAPTER_LUID","features":[426]},{"name":"MFT_ENUM_FLAG","features":[426]},{"name":"MFT_ENUM_FLAG_ALL","features":[426]},{"name":"MFT_ENUM_FLAG_ASYNCMFT","features":[426]},{"name":"MFT_ENUM_FLAG_FIELDOFUSE","features":[426]},{"name":"MFT_ENUM_FLAG_HARDWARE","features":[426]},{"name":"MFT_ENUM_FLAG_LOCALMFT","features":[426]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER","features":[426]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER_APPROVED_ONLY","features":[426]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER_WEB_ONLY","features":[426]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER_WEB_ONLY_EDGEMODE","features":[426]},{"name":"MFT_ENUM_FLAG_SYNCMFT","features":[426]},{"name":"MFT_ENUM_FLAG_TRANSCODE_ONLY","features":[426]},{"name":"MFT_ENUM_FLAG_UNTRUSTED_STOREMFT","features":[426]},{"name":"MFT_ENUM_HARDWARE_URL_Attribute","features":[426]},{"name":"MFT_ENUM_HARDWARE_VENDOR_ID_Attribute","features":[426]},{"name":"MFT_ENUM_TRANSCODE_ONLY_ATTRIBUTE","features":[426]},{"name":"MFT_ENUM_VIDEO_RENDERER_EXTENSION_PROFILE","features":[426]},{"name":"MFT_FIELDOFUSE_UNLOCK_Attribute","features":[426]},{"name":"MFT_FRIENDLY_NAME_Attribute","features":[426]},{"name":"MFT_GFX_DRIVER_VERSION_ID_Attribute","features":[426]},{"name":"MFT_HW_TIMESTAMP_WITH_QPC_Attribute","features":[426]},{"name":"MFT_INPUT_DATA_BUFFER_PLACEHOLDER","features":[426]},{"name":"MFT_INPUT_STATUS_ACCEPT_DATA","features":[426]},{"name":"MFT_INPUT_STREAM_DOES_NOT_ADDREF","features":[426]},{"name":"MFT_INPUT_STREAM_FIXED_SAMPLE_SIZE","features":[426]},{"name":"MFT_INPUT_STREAM_HOLDS_BUFFERS","features":[426]},{"name":"MFT_INPUT_STREAM_INFO","features":[426]},{"name":"MFT_INPUT_STREAM_OPTIONAL","features":[426]},{"name":"MFT_INPUT_STREAM_PROCESSES_IN_PLACE","features":[426]},{"name":"MFT_INPUT_STREAM_REMOVABLE","features":[426]},{"name":"MFT_INPUT_STREAM_SINGLE_SAMPLE_PER_BUFFER","features":[426]},{"name":"MFT_INPUT_STREAM_WHOLE_SAMPLES","features":[426]},{"name":"MFT_INPUT_TYPES_Attributes","features":[426]},{"name":"MFT_MESSAGE_COMMAND_DRAIN","features":[426]},{"name":"MFT_MESSAGE_COMMAND_FLUSH","features":[426]},{"name":"MFT_MESSAGE_COMMAND_FLUSH_OUTPUT_STREAM","features":[426]},{"name":"MFT_MESSAGE_COMMAND_MARKER","features":[426]},{"name":"MFT_MESSAGE_COMMAND_SET_OUTPUT_STREAM_STATE","features":[426]},{"name":"MFT_MESSAGE_COMMAND_TICK","features":[426]},{"name":"MFT_MESSAGE_DROP_SAMPLES","features":[426]},{"name":"MFT_MESSAGE_NOTIFY_BEGIN_STREAMING","features":[426]},{"name":"MFT_MESSAGE_NOTIFY_END_OF_STREAM","features":[426]},{"name":"MFT_MESSAGE_NOTIFY_END_STREAMING","features":[426]},{"name":"MFT_MESSAGE_NOTIFY_EVENT","features":[426]},{"name":"MFT_MESSAGE_NOTIFY_REACQUIRE_RESOURCES","features":[426]},{"name":"MFT_MESSAGE_NOTIFY_RELEASE_RESOURCES","features":[426]},{"name":"MFT_MESSAGE_NOTIFY_START_OF_STREAM","features":[426]},{"name":"MFT_MESSAGE_SET_D3D_MANAGER","features":[426]},{"name":"MFT_MESSAGE_TYPE","features":[426]},{"name":"MFT_OUTPUT_BOUND_UPPER_UNBOUNDED","features":[426]},{"name":"MFT_OUTPUT_DATA_BUFFER","features":[426]},{"name":"MFT_OUTPUT_DATA_BUFFER_FORMAT_CHANGE","features":[426]},{"name":"MFT_OUTPUT_DATA_BUFFER_INCOMPLETE","features":[426]},{"name":"MFT_OUTPUT_DATA_BUFFER_NO_SAMPLE","features":[426]},{"name":"MFT_OUTPUT_DATA_BUFFER_STREAM_END","features":[426]},{"name":"MFT_OUTPUT_STATUS_SAMPLE_READY","features":[426]},{"name":"MFT_OUTPUT_STREAM_CAN_PROVIDE_SAMPLES","features":[426]},{"name":"MFT_OUTPUT_STREAM_DISCARDABLE","features":[426]},{"name":"MFT_OUTPUT_STREAM_FIXED_SAMPLE_SIZE","features":[426]},{"name":"MFT_OUTPUT_STREAM_INFO","features":[426]},{"name":"MFT_OUTPUT_STREAM_LAZY_READ","features":[426]},{"name":"MFT_OUTPUT_STREAM_OPTIONAL","features":[426]},{"name":"MFT_OUTPUT_STREAM_PROVIDES_SAMPLES","features":[426]},{"name":"MFT_OUTPUT_STREAM_REMOVABLE","features":[426]},{"name":"MFT_OUTPUT_STREAM_SINGLE_SAMPLE_PER_BUFFER","features":[426]},{"name":"MFT_OUTPUT_STREAM_WHOLE_SAMPLES","features":[426]},{"name":"MFT_OUTPUT_TYPES_Attributes","features":[426]},{"name":"MFT_POLICY_SET_AWARE","features":[426]},{"name":"MFT_PREFERRED_ENCODER_PROFILE","features":[426]},{"name":"MFT_PREFERRED_OUTPUTTYPE_Attribute","features":[426]},{"name":"MFT_PROCESS_LOCAL_Attribute","features":[426]},{"name":"MFT_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER","features":[426]},{"name":"MFT_PROCESS_OUTPUT_REGENERATE_LAST_OUTPUT","features":[426]},{"name":"MFT_PROCESS_OUTPUT_STATUS_NEW_STREAMS","features":[426]},{"name":"MFT_REGISTER_TYPE_INFO","features":[426]},{"name":"MFT_REGISTRATION_INFO","features":[426]},{"name":"MFT_REMUX_MARK_I_PICTURE_AS_CLEAN_POINT","features":[426]},{"name":"MFT_SET_TYPE_TEST_ONLY","features":[426]},{"name":"MFT_STREAMS_UNLIMITED","features":[426]},{"name":"MFT_STREAM_STATE_PARAM","features":[426]},{"name":"MFT_SUPPORT_3DVIDEO","features":[426]},{"name":"MFT_SUPPORT_DYNAMIC_FORMAT_CHANGE","features":[426]},{"name":"MFT_TRANSFORM_CLSID_Attribute","features":[426]},{"name":"MFT_USING_HARDWARE_DRM","features":[426]},{"name":"MFTranscodeContainerType_3GP","features":[426]},{"name":"MFTranscodeContainerType_AC3","features":[426]},{"name":"MFTranscodeContainerType_ADTS","features":[426]},{"name":"MFTranscodeContainerType_AMR","features":[426]},{"name":"MFTranscodeContainerType_ASF","features":[426]},{"name":"MFTranscodeContainerType_AVI","features":[426]},{"name":"MFTranscodeContainerType_FLAC","features":[426]},{"name":"MFTranscodeContainerType_FMPEG4","features":[426]},{"name":"MFTranscodeContainerType_MP3","features":[426]},{"name":"MFTranscodeContainerType_MPEG2","features":[426]},{"name":"MFTranscodeContainerType_MPEG4","features":[426]},{"name":"MFTranscodeContainerType_WAVE","features":[426]},{"name":"MFTranscodeGetAudioOutputAvailableTypes","features":[426]},{"name":"MFUnlockDXGIDeviceManager","features":[426]},{"name":"MFUnlockPlatform","features":[426]},{"name":"MFUnlockWorkQueue","features":[426]},{"name":"MFUnregisterPlatformFromMMCSS","features":[426]},{"name":"MFUnwrapMediaType","features":[426]},{"name":"MFVIDEOFORMAT","features":[303,426]},{"name":"MFVP_MESSAGE_BEGINSTREAMING","features":[426]},{"name":"MFVP_MESSAGE_CANCELSTEP","features":[426]},{"name":"MFVP_MESSAGE_ENDOFSTREAM","features":[426]},{"name":"MFVP_MESSAGE_ENDSTREAMING","features":[426]},{"name":"MFVP_MESSAGE_FLUSH","features":[426]},{"name":"MFVP_MESSAGE_INVALIDATEMEDIATYPE","features":[426]},{"name":"MFVP_MESSAGE_PROCESSINPUTNOTIFY","features":[426]},{"name":"MFVP_MESSAGE_STEP","features":[426]},{"name":"MFVP_MESSAGE_TYPE","features":[426]},{"name":"MFValidateMediaTypeSize","features":[426]},{"name":"MFVideo3DFormat","features":[426]},{"name":"MFVideo3DSampleFormat","features":[426]},{"name":"MFVideo3DSampleFormat_BaseView","features":[426]},{"name":"MFVideo3DSampleFormat_MultiView","features":[426]},{"name":"MFVideo3DSampleFormat_Packed_LeftRight","features":[426]},{"name":"MFVideo3DSampleFormat_Packed_TopBottom","features":[426]},{"name":"MFVideoARMode_Mask","features":[426]},{"name":"MFVideoARMode_NonLinearStretch","features":[426]},{"name":"MFVideoARMode_None","features":[426]},{"name":"MFVideoARMode_PreservePicture","features":[426]},{"name":"MFVideoARMode_PreservePixel","features":[426]},{"name":"MFVideoAlphaBitmap","features":[303,312,314,426]},{"name":"MFVideoAlphaBitmapFlags","features":[426]},{"name":"MFVideoAlphaBitmapParams","features":[303,426]},{"name":"MFVideoAlphaBitmap_Alpha","features":[426]},{"name":"MFVideoAlphaBitmap_BitMask","features":[426]},{"name":"MFVideoAlphaBitmap_DestRect","features":[426]},{"name":"MFVideoAlphaBitmap_EntireDDS","features":[426]},{"name":"MFVideoAlphaBitmap_FilterMode","features":[426]},{"name":"MFVideoAlphaBitmap_SrcColorKey","features":[426]},{"name":"MFVideoAlphaBitmap_SrcRect","features":[426]},{"name":"MFVideoArea","features":[303,426]},{"name":"MFVideoAspectRatioMode","features":[426]},{"name":"MFVideoChromaSubsampling","features":[426]},{"name":"MFVideoChromaSubsampling_Cosited","features":[426]},{"name":"MFVideoChromaSubsampling_DV_PAL","features":[426]},{"name":"MFVideoChromaSubsampling_ForceDWORD","features":[426]},{"name":"MFVideoChromaSubsampling_Horizontally_Cosited","features":[426]},{"name":"MFVideoChromaSubsampling_Last","features":[426]},{"name":"MFVideoChromaSubsampling_MPEG1","features":[426]},{"name":"MFVideoChromaSubsampling_MPEG2","features":[426]},{"name":"MFVideoChromaSubsampling_ProgressiveChroma","features":[426]},{"name":"MFVideoChromaSubsampling_Unknown","features":[426]},{"name":"MFVideoChromaSubsampling_Vertically_AlignedChromaPlanes","features":[426]},{"name":"MFVideoChromaSubsampling_Vertically_Cosited","features":[426]},{"name":"MFVideoCompressedInfo","features":[426]},{"name":"MFVideoDRMFlag_AnalogProtected","features":[426]},{"name":"MFVideoDRMFlag_DigitallyProtected","features":[426]},{"name":"MFVideoDRMFlag_None","features":[426]},{"name":"MFVideoDRMFlags","features":[426]},{"name":"MFVideoDSPMode","features":[426]},{"name":"MFVideoDSPMode_Passthrough","features":[426]},{"name":"MFVideoDSPMode_Stabilization","features":[426]},{"name":"MFVideoFlag_AnalogProtected","features":[426]},{"name":"MFVideoFlag_BottomUpLinearRep","features":[426]},{"name":"MFVideoFlag_DigitallyProtected","features":[426]},{"name":"MFVideoFlag_FieldRepeatCountMask","features":[426]},{"name":"MFVideoFlag_FieldRepeatCountShift","features":[426]},{"name":"MFVideoFlag_LowerFieldFirst","features":[426]},{"name":"MFVideoFlag_PAD_TO_16x9","features":[426]},{"name":"MFVideoFlag_PAD_TO_4x3","features":[426]},{"name":"MFVideoFlag_PAD_TO_Mask","features":[426]},{"name":"MFVideoFlag_PAD_TO_None","features":[426]},{"name":"MFVideoFlag_PanScanEnabled","features":[426]},{"name":"MFVideoFlag_ProgressiveContent","features":[426]},{"name":"MFVideoFlag_ProgressiveSeqReset","features":[426]},{"name":"MFVideoFlag_SrcContentHint16x9","features":[426]},{"name":"MFVideoFlag_SrcContentHint235_1","features":[426]},{"name":"MFVideoFlag_SrcContentHintMask","features":[426]},{"name":"MFVideoFlag_SrcContentHintNone","features":[426]},{"name":"MFVideoFlags","features":[426]},{"name":"MFVideoFlags_DXVASurface","features":[426]},{"name":"MFVideoFlags_ForceQWORD","features":[426]},{"name":"MFVideoFlags_RenderTargetSurface","features":[426]},{"name":"MFVideoFormat_420O","features":[426]},{"name":"MFVideoFormat_A16B16G16R16F","features":[426]},{"name":"MFVideoFormat_A2R10G10B10","features":[426]},{"name":"MFVideoFormat_AI44","features":[426]},{"name":"MFVideoFormat_ARGB32","features":[426]},{"name":"MFVideoFormat_AV1","features":[426]},{"name":"MFVideoFormat_AYUV","features":[426]},{"name":"MFVideoFormat_Base","features":[426]},{"name":"MFVideoFormat_Base_HDCP","features":[426]},{"name":"MFVideoFormat_D16","features":[426]},{"name":"MFVideoFormat_DV25","features":[426]},{"name":"MFVideoFormat_DV50","features":[426]},{"name":"MFVideoFormat_DVH1","features":[426]},{"name":"MFVideoFormat_DVHD","features":[426]},{"name":"MFVideoFormat_DVSD","features":[426]},{"name":"MFVideoFormat_DVSL","features":[426]},{"name":"MFVideoFormat_H263","features":[426]},{"name":"MFVideoFormat_H264","features":[426]},{"name":"MFVideoFormat_H264_ES","features":[426]},{"name":"MFVideoFormat_H264_HDCP","features":[426]},{"name":"MFVideoFormat_H265","features":[426]},{"name":"MFVideoFormat_HEVC","features":[426]},{"name":"MFVideoFormat_HEVC_ES","features":[426]},{"name":"MFVideoFormat_HEVC_HDCP","features":[426]},{"name":"MFVideoFormat_I420","features":[426]},{"name":"MFVideoFormat_IYUV","features":[426]},{"name":"MFVideoFormat_L16","features":[426]},{"name":"MFVideoFormat_L8","features":[426]},{"name":"MFVideoFormat_M4S2","features":[426]},{"name":"MFVideoFormat_MJPG","features":[426]},{"name":"MFVideoFormat_MP43","features":[426]},{"name":"MFVideoFormat_MP4S","features":[426]},{"name":"MFVideoFormat_MP4V","features":[426]},{"name":"MFVideoFormat_MPEG2","features":[426]},{"name":"MFVideoFormat_MPG1","features":[426]},{"name":"MFVideoFormat_MSS1","features":[426]},{"name":"MFVideoFormat_MSS2","features":[426]},{"name":"MFVideoFormat_NV11","features":[426]},{"name":"MFVideoFormat_NV12","features":[426]},{"name":"MFVideoFormat_NV21","features":[426]},{"name":"MFVideoFormat_ORAW","features":[426]},{"name":"MFVideoFormat_P010","features":[426]},{"name":"MFVideoFormat_P016","features":[426]},{"name":"MFVideoFormat_P210","features":[426]},{"name":"MFVideoFormat_P216","features":[426]},{"name":"MFVideoFormat_RGB24","features":[426]},{"name":"MFVideoFormat_RGB32","features":[426]},{"name":"MFVideoFormat_RGB555","features":[426]},{"name":"MFVideoFormat_RGB565","features":[426]},{"name":"MFVideoFormat_RGB8","features":[426]},{"name":"MFVideoFormat_Theora","features":[426]},{"name":"MFVideoFormat_UYVY","features":[426]},{"name":"MFVideoFormat_VP10","features":[426]},{"name":"MFVideoFormat_VP80","features":[426]},{"name":"MFVideoFormat_VP90","features":[426]},{"name":"MFVideoFormat_WMV1","features":[426]},{"name":"MFVideoFormat_WMV2","features":[426]},{"name":"MFVideoFormat_WMV3","features":[426]},{"name":"MFVideoFormat_WVC1","features":[426]},{"name":"MFVideoFormat_Y210","features":[426]},{"name":"MFVideoFormat_Y216","features":[426]},{"name":"MFVideoFormat_Y410","features":[426]},{"name":"MFVideoFormat_Y416","features":[426]},{"name":"MFVideoFormat_Y41P","features":[426]},{"name":"MFVideoFormat_Y41T","features":[426]},{"name":"MFVideoFormat_Y42T","features":[426]},{"name":"MFVideoFormat_YUY2","features":[426]},{"name":"MFVideoFormat_YV12","features":[426]},{"name":"MFVideoFormat_YVU9","features":[426]},{"name":"MFVideoFormat_YVYU","features":[426]},{"name":"MFVideoFormat_v210","features":[426]},{"name":"MFVideoFormat_v216","features":[426]},{"name":"MFVideoFormat_v410","features":[426]},{"name":"MFVideoInfo","features":[303,426]},{"name":"MFVideoInterlaceMode","features":[426]},{"name":"MFVideoInterlace_FieldInterleavedLowerFirst","features":[426]},{"name":"MFVideoInterlace_FieldInterleavedUpperFirst","features":[426]},{"name":"MFVideoInterlace_FieldSingleLower","features":[426]},{"name":"MFVideoInterlace_FieldSingleUpper","features":[426]},{"name":"MFVideoInterlace_ForceDWORD","features":[426]},{"name":"MFVideoInterlace_Last","features":[426]},{"name":"MFVideoInterlace_MixedInterlaceOrProgressive","features":[426]},{"name":"MFVideoInterlace_Progressive","features":[426]},{"name":"MFVideoInterlace_Unknown","features":[426]},{"name":"MFVideoLighting","features":[426]},{"name":"MFVideoLighting_ForceDWORD","features":[426]},{"name":"MFVideoLighting_Last","features":[426]},{"name":"MFVideoLighting_Unknown","features":[426]},{"name":"MFVideoLighting_bright","features":[426]},{"name":"MFVideoLighting_dark","features":[426]},{"name":"MFVideoLighting_dim","features":[426]},{"name":"MFVideoLighting_office","features":[426]},{"name":"MFVideoMixPrefs","features":[426]},{"name":"MFVideoMixPrefs_AllowDropToBob","features":[426]},{"name":"MFVideoMixPrefs_AllowDropToHalfInterlace","features":[426]},{"name":"MFVideoMixPrefs_EnableRotation","features":[426]},{"name":"MFVideoMixPrefs_ForceBob","features":[426]},{"name":"MFVideoMixPrefs_ForceHalfInterlace","features":[426]},{"name":"MFVideoMixPrefs_Mask","features":[426]},{"name":"MFVideoNormalizedRect","features":[426]},{"name":"MFVideoPadFlag_PAD_TO_16x9","features":[426]},{"name":"MFVideoPadFlag_PAD_TO_4x3","features":[426]},{"name":"MFVideoPadFlag_PAD_TO_None","features":[426]},{"name":"MFVideoPadFlags","features":[426]},{"name":"MFVideoPrimaries","features":[426]},{"name":"MFVideoPrimaries_ACES","features":[426]},{"name":"MFVideoPrimaries_BT2020","features":[426]},{"name":"MFVideoPrimaries_BT470_2_SysBG","features":[426]},{"name":"MFVideoPrimaries_BT470_2_SysM","features":[426]},{"name":"MFVideoPrimaries_BT709","features":[426]},{"name":"MFVideoPrimaries_DCI_P3","features":[426]},{"name":"MFVideoPrimaries_EBU3213","features":[426]},{"name":"MFVideoPrimaries_ForceDWORD","features":[426]},{"name":"MFVideoPrimaries_Last","features":[426]},{"name":"MFVideoPrimaries_SMPTE170M","features":[426]},{"name":"MFVideoPrimaries_SMPTE240M","features":[426]},{"name":"MFVideoPrimaries_SMPTE_C","features":[426]},{"name":"MFVideoPrimaries_Unknown","features":[426]},{"name":"MFVideoPrimaries_XYZ","features":[426]},{"name":"MFVideoPrimaries_reserved","features":[426]},{"name":"MFVideoRenderPrefs","features":[426]},{"name":"MFVideoRenderPrefs_AllowBatching","features":[426]},{"name":"MFVideoRenderPrefs_AllowOutputThrottling","features":[426]},{"name":"MFVideoRenderPrefs_AllowScaling","features":[426]},{"name":"MFVideoRenderPrefs_DoNotClipToDevice","features":[426]},{"name":"MFVideoRenderPrefs_DoNotRenderBorder","features":[426]},{"name":"MFVideoRenderPrefs_DoNotRepaintOnStop","features":[426]},{"name":"MFVideoRenderPrefs_ForceBatching","features":[426]},{"name":"MFVideoRenderPrefs_ForceOutputThrottling","features":[426]},{"name":"MFVideoRenderPrefs_ForceScaling","features":[426]},{"name":"MFVideoRenderPrefs_Mask","features":[426]},{"name":"MFVideoRotationFormat","features":[426]},{"name":"MFVideoRotationFormat_0","features":[426]},{"name":"MFVideoRotationFormat_180","features":[426]},{"name":"MFVideoRotationFormat_270","features":[426]},{"name":"MFVideoRotationFormat_90","features":[426]},{"name":"MFVideoSphericalFormat","features":[426]},{"name":"MFVideoSphericalFormat_3DMesh","features":[426]},{"name":"MFVideoSphericalFormat_CubeMap","features":[426]},{"name":"MFVideoSphericalFormat_Equirectangular","features":[426]},{"name":"MFVideoSphericalFormat_Unsupported","features":[426]},{"name":"MFVideoSphericalProjectionMode","features":[426]},{"name":"MFVideoSphericalProjectionMode_Flat","features":[426]},{"name":"MFVideoSphericalProjectionMode_Spherical","features":[426]},{"name":"MFVideoSrcContentHintFlag_16x9","features":[426]},{"name":"MFVideoSrcContentHintFlag_235_1","features":[426]},{"name":"MFVideoSrcContentHintFlag_None","features":[426]},{"name":"MFVideoSrcContentHintFlags","features":[426]},{"name":"MFVideoSurfaceInfo","features":[426]},{"name":"MFVideoTransFunc_10","features":[426]},{"name":"MFVideoTransFunc_10_rel","features":[426]},{"name":"MFVideoTransFunc_18","features":[426]},{"name":"MFVideoTransFunc_20","features":[426]},{"name":"MFVideoTransFunc_2020","features":[426]},{"name":"MFVideoTransFunc_2020_const","features":[426]},{"name":"MFVideoTransFunc_2084","features":[426]},{"name":"MFVideoTransFunc_22","features":[426]},{"name":"MFVideoTransFunc_240M","features":[426]},{"name":"MFVideoTransFunc_26","features":[426]},{"name":"MFVideoTransFunc_28","features":[426]},{"name":"MFVideoTransFunc_709","features":[426]},{"name":"MFVideoTransFunc_709_sym","features":[426]},{"name":"MFVideoTransFunc_ForceDWORD","features":[426]},{"name":"MFVideoTransFunc_HLG","features":[426]},{"name":"MFVideoTransFunc_Last","features":[426]},{"name":"MFVideoTransFunc_Log_100","features":[426]},{"name":"MFVideoTransFunc_Log_316","features":[426]},{"name":"MFVideoTransFunc_Unknown","features":[426]},{"name":"MFVideoTransFunc_sRGB","features":[426]},{"name":"MFVideoTransferFunction","features":[426]},{"name":"MFVideoTransferMatrix","features":[426]},{"name":"MFVideoTransferMatrix_BT2020_10","features":[426]},{"name":"MFVideoTransferMatrix_BT2020_12","features":[426]},{"name":"MFVideoTransferMatrix_BT601","features":[426]},{"name":"MFVideoTransferMatrix_BT709","features":[426]},{"name":"MFVideoTransferMatrix_ForceDWORD","features":[426]},{"name":"MFVideoTransferMatrix_Last","features":[426]},{"name":"MFVideoTransferMatrix_SMPTE240M","features":[426]},{"name":"MFVideoTransferMatrix_Unknown","features":[426]},{"name":"MFVirtualCameraAccess","features":[426]},{"name":"MFVirtualCameraAccess_AllUsers","features":[426]},{"name":"MFVirtualCameraAccess_CurrentUser","features":[426]},{"name":"MFVirtualCameraLifetime","features":[426]},{"name":"MFVirtualCameraLifetime_Session","features":[426]},{"name":"MFVirtualCameraLifetime_System","features":[426]},{"name":"MFVirtualCameraType","features":[426]},{"name":"MFVirtualCameraType_SoftwareCameraSource","features":[426]},{"name":"MFWaveFormatExConvertFlag_ForceExtensible","features":[426]},{"name":"MFWaveFormatExConvertFlag_Normal","features":[426]},{"name":"MFWaveFormatExConvertFlags","features":[426]},{"name":"MFWrapMediaType","features":[426]},{"name":"MF_1024_BYTE_ALIGNMENT","features":[426]},{"name":"MF_128_BYTE_ALIGNMENT","features":[426]},{"name":"MF_16_BYTE_ALIGNMENT","features":[426]},{"name":"MF_1_BYTE_ALIGNMENT","features":[426]},{"name":"MF_2048_BYTE_ALIGNMENT","features":[426]},{"name":"MF_256_BYTE_ALIGNMENT","features":[426]},{"name":"MF_2_BYTE_ALIGNMENT","features":[426]},{"name":"MF_32_BYTE_ALIGNMENT","features":[426]},{"name":"MF_4096_BYTE_ALIGNMENT","features":[426]},{"name":"MF_4_BYTE_ALIGNMENT","features":[426]},{"name":"MF_512_BYTE_ALIGNMENT","features":[426]},{"name":"MF_64_BYTE_ALIGNMENT","features":[426]},{"name":"MF_8192_BYTE_ALIGNMENT","features":[426]},{"name":"MF_8_BYTE_ALIGNMENT","features":[426]},{"name":"MF_ACCESSMODE_READ","features":[426]},{"name":"MF_ACCESSMODE_READWRITE","features":[426]},{"name":"MF_ACCESSMODE_WRITE","features":[426]},{"name":"MF_ACCESS_CONTROLLED_MEDIASOURCE_SERVICE","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_MIXER","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_MIXER_ALLOWFAIL","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_PRESENTER","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_PRESENTER_ALLOWFAIL","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_MIXER_ACTIVATE","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_MIXER_CLSID","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_MIXER_FLAGS","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_PRESENTER_ACTIVATE","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_PRESENTER_CLSID","features":[426]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_PRESENTER_FLAGS","features":[426]},{"name":"MF_ACTIVATE_MFT_LOCKED","features":[426]},{"name":"MF_ACTIVATE_VIDEO_WINDOW","features":[426]},{"name":"MF_API_VERSION","features":[426]},{"name":"MF_ASFPROFILE_MAXPACKETSIZE","features":[426]},{"name":"MF_ASFPROFILE_MINPACKETSIZE","features":[426]},{"name":"MF_ASFSTREAMCONFIG_LEAKYBUCKET1","features":[426]},{"name":"MF_ASFSTREAMCONFIG_LEAKYBUCKET2","features":[426]},{"name":"MF_ATTRIBUTES_MATCH_ALL_ITEMS","features":[426]},{"name":"MF_ATTRIBUTES_MATCH_INTERSECTION","features":[426]},{"name":"MF_ATTRIBUTES_MATCH_OUR_ITEMS","features":[426]},{"name":"MF_ATTRIBUTES_MATCH_SMALLER","features":[426]},{"name":"MF_ATTRIBUTES_MATCH_THEIR_ITEMS","features":[426]},{"name":"MF_ATTRIBUTES_MATCH_TYPE","features":[426]},{"name":"MF_ATTRIBUTE_BLOB","features":[426]},{"name":"MF_ATTRIBUTE_DOUBLE","features":[426]},{"name":"MF_ATTRIBUTE_GUID","features":[426]},{"name":"MF_ATTRIBUTE_IUNKNOWN","features":[426]},{"name":"MF_ATTRIBUTE_SERIALIZE_OPTIONS","features":[426]},{"name":"MF_ATTRIBUTE_SERIALIZE_UNKNOWN_BYREF","features":[426]},{"name":"MF_ATTRIBUTE_STRING","features":[426]},{"name":"MF_ATTRIBUTE_TYPE","features":[426]},{"name":"MF_ATTRIBUTE_UINT32","features":[426]},{"name":"MF_ATTRIBUTE_UINT64","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_ENDPOINT_ID","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_ENDPOINT_ROLE","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS_CROSSPROCESS","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS_DONT_ALLOW_FORMAT_CHANGES","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS_NOPERSIST","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_SESSION_ID","features":[426]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_STREAM_CATEGORY","features":[426]},{"name":"MF_AUVRHP_ROOMMODEL","features":[426]},{"name":"MF_BD_MVC_PLANE_OFFSET_METADATA","features":[426]},{"name":"MF_BOOT_DRIVER_VERIFICATION_FAILED","features":[426]},{"name":"MF_BYTESTREAMHANDLER_ACCEPTS_SHARE_WRITE","features":[426]},{"name":"MF_BYTESTREAM_CONTENT_TYPE","features":[426]},{"name":"MF_BYTESTREAM_DLNA_PROFILE_ID","features":[426]},{"name":"MF_BYTESTREAM_DURATION","features":[426]},{"name":"MF_BYTESTREAM_EFFECTIVE_URL","features":[426]},{"name":"MF_BYTESTREAM_IFO_FILE_URI","features":[426]},{"name":"MF_BYTESTREAM_LAST_MODIFIED_TIME","features":[426]},{"name":"MF_BYTESTREAM_ORIGIN_NAME","features":[426]},{"name":"MF_BYTESTREAM_SERVICE","features":[426]},{"name":"MF_BYTESTREAM_TRANSCODED","features":[426]},{"name":"MF_BYTE_STREAM_CACHE_RANGE","features":[426]},{"name":"MF_CAMERA_CONTROL_CONFIGURATION_TYPE","features":[426]},{"name":"MF_CAMERA_CONTROL_CONFIGURATION_TYPE_POSTSTART","features":[426]},{"name":"MF_CAMERA_CONTROL_CONFIGURATION_TYPE_PRESTART","features":[426]},{"name":"MF_CAMERA_CONTROL_RANGE_INFO","features":[426]},{"name":"MF_CAPTURE_ENGINE_ALL_EFFECTS_REMOVED","features":[426]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING","features":[426]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING_DEFAULT","features":[426]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING_MODE","features":[426]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING_RAW","features":[426]},{"name":"MF_CAPTURE_ENGINE_CAMERA_STREAM_BLOCKED","features":[426]},{"name":"MF_CAPTURE_ENGINE_CAMERA_STREAM_UNBLOCKED","features":[426]},{"name":"MF_CAPTURE_ENGINE_D3D_MANAGER","features":[426]},{"name":"MF_CAPTURE_ENGINE_DECODER_MFT_FIELDOFUSE_UNLOCK_Attribute","features":[426]},{"name":"MF_CAPTURE_ENGINE_DEVICE_TYPE","features":[426]},{"name":"MF_CAPTURE_ENGINE_DEVICE_TYPE_AUDIO","features":[426]},{"name":"MF_CAPTURE_ENGINE_DEVICE_TYPE_VIDEO","features":[426]},{"name":"MF_CAPTURE_ENGINE_DISABLE_DXVA","features":[426]},{"name":"MF_CAPTURE_ENGINE_DISABLE_HARDWARE_TRANSFORMS","features":[426]},{"name":"MF_CAPTURE_ENGINE_EFFECT_ADDED","features":[426]},{"name":"MF_CAPTURE_ENGINE_EFFECT_REMOVED","features":[426]},{"name":"MF_CAPTURE_ENGINE_ENABLE_CAMERA_STREAMSTATE_NOTIFICATION","features":[426]},{"name":"MF_CAPTURE_ENGINE_ENCODER_MFT_FIELDOFUSE_UNLOCK_Attribute","features":[426]},{"name":"MF_CAPTURE_ENGINE_ERROR","features":[426]},{"name":"MF_CAPTURE_ENGINE_EVENT_GENERATOR_GUID","features":[426]},{"name":"MF_CAPTURE_ENGINE_EVENT_STREAM_INDEX","features":[426]},{"name":"MF_CAPTURE_ENGINE_INITIALIZED","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIASOURCE","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIASOURCE_CONFIG","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_COMMUNICATIONS","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_FARFIELDSPEECH","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_GAMECHAT","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_MEDIA","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_OTHER","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_SPEECH","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_UNIFORMSPEECH","features":[426]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_VOICETYPING","features":[426]},{"name":"MF_CAPTURE_ENGINE_OUTPUT_MEDIA_TYPE_SET","features":[426]},{"name":"MF_CAPTURE_ENGINE_PHOTO_TAKEN","features":[426]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_AUDIO","features":[426]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_METADATA","features":[426]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_PHOTO","features":[426]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_VIDEO_PREVIEW","features":[426]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_VIDEO_RECORD","features":[426]},{"name":"MF_CAPTURE_ENGINE_PREVIEW_STARTED","features":[426]},{"name":"MF_CAPTURE_ENGINE_PREVIEW_STOPPED","features":[426]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_AUDIO_MAX_PROCESSED_SAMPLES","features":[426]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_AUDIO_MAX_UNPROCESSED_SAMPLES","features":[426]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_VIDEO_MAX_PROCESSED_SAMPLES","features":[426]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_VIDEO_MAX_UNPROCESSED_SAMPLES","features":[426]},{"name":"MF_CAPTURE_ENGINE_RECORD_STARTED","features":[426]},{"name":"MF_CAPTURE_ENGINE_RECORD_STOPPED","features":[426]},{"name":"MF_CAPTURE_ENGINE_SELECTEDCAMERAPROFILE","features":[426]},{"name":"MF_CAPTURE_ENGINE_SELECTEDCAMERAPROFILE_INDEX","features":[426]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE","features":[426]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE_PHOTO","features":[426]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE_PREVIEW","features":[426]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE_RECORD","features":[426]},{"name":"MF_CAPTURE_ENGINE_SOURCE","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_AUDIO","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_METADATA","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_PHOTO_DEPENDENT","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_PHOTO_INDEPENDENT","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_UNSUPPORTED","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_VIDEO_CAPTURE","features":[426]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_VIDEO_PREVIEW","features":[426]},{"name":"MF_CAPTURE_ENGINE_USE_AUDIO_DEVICE_ONLY","features":[426]},{"name":"MF_CAPTURE_ENGINE_USE_VIDEO_DEVICE_ONLY","features":[426]},{"name":"MF_CAPTURE_METADATA_DIGITALWINDOW","features":[426]},{"name":"MF_CAPTURE_METADATA_EXIF","features":[426]},{"name":"MF_CAPTURE_METADATA_EXPOSURE_COMPENSATION","features":[426]},{"name":"MF_CAPTURE_METADATA_EXPOSURE_TIME","features":[426]},{"name":"MF_CAPTURE_METADATA_FACEROICHARACTERIZATIONS","features":[426]},{"name":"MF_CAPTURE_METADATA_FACEROIS","features":[426]},{"name":"MF_CAPTURE_METADATA_FACEROITIMESTAMPS","features":[426]},{"name":"MF_CAPTURE_METADATA_FIRST_SCANLINE_START_TIME_QPC","features":[426]},{"name":"MF_CAPTURE_METADATA_FLASH","features":[426]},{"name":"MF_CAPTURE_METADATA_FLASH_POWER","features":[426]},{"name":"MF_CAPTURE_METADATA_FOCUSSTATE","features":[426]},{"name":"MF_CAPTURE_METADATA_FRAME_BACKGROUND_MASK","features":[426]},{"name":"MF_CAPTURE_METADATA_FRAME_ILLUMINATION","features":[426]},{"name":"MF_CAPTURE_METADATA_FRAME_RAWSTREAM","features":[426]},{"name":"MF_CAPTURE_METADATA_HISTOGRAM","features":[426]},{"name":"MF_CAPTURE_METADATA_ISO_GAINS","features":[426]},{"name":"MF_CAPTURE_METADATA_ISO_SPEED","features":[426]},{"name":"MF_CAPTURE_METADATA_LAST_SCANLINE_END_TIME_QPC","features":[426]},{"name":"MF_CAPTURE_METADATA_LENS_POSITION","features":[426]},{"name":"MF_CAPTURE_METADATA_PHOTO_FRAME_FLASH","features":[426]},{"name":"MF_CAPTURE_METADATA_REQUESTED_FRAME_SETTING_ID","features":[426]},{"name":"MF_CAPTURE_METADATA_SCANLINE_DIRECTION","features":[426]},{"name":"MF_CAPTURE_METADATA_SCANLINE_TIME_QPC_ACCURACY","features":[426]},{"name":"MF_CAPTURE_METADATA_SCENE_MODE","features":[426]},{"name":"MF_CAPTURE_METADATA_SENSORFRAMERATE","features":[426]},{"name":"MF_CAPTURE_METADATA_UVC_PAYLOADHEADER","features":[426]},{"name":"MF_CAPTURE_METADATA_WHITEBALANCE","features":[426]},{"name":"MF_CAPTURE_METADATA_WHITEBALANCE_GAINS","features":[426]},{"name":"MF_CAPTURE_METADATA_ZOOMFACTOR","features":[426]},{"name":"MF_CAPTURE_SINK_PREPARED","features":[426]},{"name":"MF_CAPTURE_SOURCE_CURRENT_DEVICE_MEDIA_TYPE_SET","features":[426]},{"name":"MF_COMPONENT_CERT_REVOKED","features":[426]},{"name":"MF_COMPONENT_HS_CERT_REVOKED","features":[426]},{"name":"MF_COMPONENT_INVALID_EKU","features":[426]},{"name":"MF_COMPONENT_INVALID_ROOT","features":[426]},{"name":"MF_COMPONENT_LS_CERT_REVOKED","features":[426]},{"name":"MF_COMPONENT_REVOKED","features":[426]},{"name":"MF_CONNECT_ALLOW_CONVERTER","features":[426]},{"name":"MF_CONNECT_ALLOW_DECODER","features":[426]},{"name":"MF_CONNECT_AS_OPTIONAL","features":[426]},{"name":"MF_CONNECT_AS_OPTIONAL_BRANCH","features":[426]},{"name":"MF_CONNECT_DIRECT","features":[426]},{"name":"MF_CONNECT_METHOD","features":[426]},{"name":"MF_CONNECT_RESOLVE_INDEPENDENT_OUTPUTTYPES","features":[426]},{"name":"MF_CONTENTDECRYPTIONMODULE_SERVICE","features":[426]},{"name":"MF_CONTENT_DECRYPTOR_SERVICE","features":[426]},{"name":"MF_CONTENT_PROTECTION_DEVICE_SERVICE","features":[426]},{"name":"MF_CROSS_ORIGIN_POLICY","features":[426]},{"name":"MF_CROSS_ORIGIN_POLICY_ANONYMOUS","features":[426]},{"name":"MF_CROSS_ORIGIN_POLICY_NONE","features":[426]},{"name":"MF_CROSS_ORIGIN_POLICY_USE_CREDENTIALS","features":[426]},{"name":"MF_CUSTOM_DECODE_UNIT_TYPE","features":[426]},{"name":"MF_D3D11_RESOURCE","features":[426]},{"name":"MF_D3D12_RESOURCE","features":[426]},{"name":"MF_D3D12_SYNCHRONIZATION_OBJECT","features":[426]},{"name":"MF_DECODER_FWD_CUSTOM_SEI_DECODE_ORDER","features":[426]},{"name":"MF_DECODE_UNIT_NAL","features":[426]},{"name":"MF_DECODE_UNIT_SEI","features":[426]},{"name":"MF_DEVICEMFT_CONNECTED_FILTER_KSCONTROL","features":[426]},{"name":"MF_DEVICEMFT_CONNECTED_PIN_KSCONTROL","features":[426]},{"name":"MF_DEVICEMFT_EXTENSION_PLUGIN_CLSID","features":[426]},{"name":"MF_DEVICEMFT_SENSORPROFILE_COLLECTION","features":[426]},{"name":"MF_DEVICESTREAM_ATTRIBUTE_FACEAUTH_CAPABILITY","features":[426]},{"name":"MF_DEVICESTREAM_ATTRIBUTE_FRAMESOURCE_TYPES","features":[426]},{"name":"MF_DEVICESTREAM_ATTRIBUTE_SECURE_CAPABILITY","features":[426]},{"name":"MF_DEVICESTREAM_EXTENSION_PLUGIN_CLSID","features":[426]},{"name":"MF_DEVICESTREAM_EXTENSION_PLUGIN_CONNECTION_POINT","features":[426]},{"name":"MF_DEVICESTREAM_FILTER_KSCONTROL","features":[426]},{"name":"MF_DEVICESTREAM_FRAMESERVER_HIDDEN","features":[426]},{"name":"MF_DEVICESTREAM_FRAMESERVER_SHARED","features":[426]},{"name":"MF_DEVICESTREAM_IMAGE_STREAM","features":[426]},{"name":"MF_DEVICESTREAM_INDEPENDENT_IMAGE_STREAM","features":[426]},{"name":"MF_DEVICESTREAM_MAX_FRAME_BUFFERS","features":[426]},{"name":"MF_DEVICESTREAM_MULTIPLEXED_MANAGER","features":[426]},{"name":"MF_DEVICESTREAM_PIN_KSCONTROL","features":[426]},{"name":"MF_DEVICESTREAM_REQUIRED_CAPABILITIES","features":[426]},{"name":"MF_DEVICESTREAM_REQUIRED_SDDL","features":[426]},{"name":"MF_DEVICESTREAM_SENSORSTREAM_ID","features":[426]},{"name":"MF_DEVICESTREAM_SOURCE_ATTRIBUTES","features":[426]},{"name":"MF_DEVICESTREAM_STREAM_CATEGORY","features":[426]},{"name":"MF_DEVICESTREAM_STREAM_ID","features":[426]},{"name":"MF_DEVICESTREAM_TAKEPHOTO_TRIGGER","features":[426]},{"name":"MF_DEVICESTREAM_TRANSFORM_STREAM_ID","features":[426]},{"name":"MF_DEVICE_THERMAL_STATE_CHANGED","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_ENABLE_MS_CAMERA_EFFECTS","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_FRIENDLY_NAME","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_MEDIA_TYPE","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_PASSWORD","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_STREAM_URL","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_ENDPOINT_ID","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_GUID","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_ROLE","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_SYMBOLIC_LINK","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_CATEGORY","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_GUID","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_HW_SOURCE","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_MAX_BUFFERS","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_PROVIDER_DEVICE_ID","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_SYMBOLIC_LINK","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_USERNAME","features":[426]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_XADDRESS","features":[426]},{"name":"MF_DISABLE_FRAME_CORRUPTION_INFO","features":[426]},{"name":"MF_DISABLE_LOCALLY_REGISTERED_PLUGINS","features":[426]},{"name":"MF_DMFT_FRAME_BUFFER_INFO","features":[426]},{"name":"MF_DROP_MODE_1","features":[426]},{"name":"MF_DROP_MODE_2","features":[426]},{"name":"MF_DROP_MODE_3","features":[426]},{"name":"MF_DROP_MODE_4","features":[426]},{"name":"MF_DROP_MODE_5","features":[426]},{"name":"MF_DROP_MODE_NONE","features":[426]},{"name":"MF_ENABLE_3DVIDEO_OUTPUT","features":[426]},{"name":"MF_EVENT_DO_THINNING","features":[426]},{"name":"MF_EVENT_FLAG_NONE","features":[426]},{"name":"MF_EVENT_FLAG_NO_WAIT","features":[426]},{"name":"MF_EVENT_MFT_CONTEXT","features":[426]},{"name":"MF_EVENT_MFT_INPUT_STREAM_ID","features":[426]},{"name":"MF_EVENT_OUTPUT_NODE","features":[426]},{"name":"MF_EVENT_PRESENTATION_TIME_OFFSET","features":[426]},{"name":"MF_EVENT_SCRUBSAMPLE_TIME","features":[426]},{"name":"MF_EVENT_SESSIONCAPS","features":[426]},{"name":"MF_EVENT_SESSIONCAPS_DELTA","features":[426]},{"name":"MF_EVENT_SOURCE_ACTUAL_START","features":[426]},{"name":"MF_EVENT_SOURCE_CHARACTERISTICS","features":[426]},{"name":"MF_EVENT_SOURCE_CHARACTERISTICS_OLD","features":[426]},{"name":"MF_EVENT_SOURCE_FAKE_START","features":[426]},{"name":"MF_EVENT_SOURCE_PROJECTSTART","features":[426]},{"name":"MF_EVENT_SOURCE_TOPOLOGY_CANCELED","features":[426]},{"name":"MF_EVENT_START_PRESENTATION_TIME","features":[426]},{"name":"MF_EVENT_START_PRESENTATION_TIME_AT_OUTPUT","features":[426]},{"name":"MF_EVENT_STREAM_METADATA_CONTENT_KEYIDS","features":[426]},{"name":"MF_EVENT_STREAM_METADATA_KEYDATA","features":[426]},{"name":"MF_EVENT_STREAM_METADATA_SYSTEMID","features":[426]},{"name":"MF_EVENT_TOPOLOGY_STATUS","features":[426]},{"name":"MF_EVENT_TYPE","features":[426]},{"name":"MF_E_ALLOCATOR_ALREADY_COMMITED","features":[426]},{"name":"MF_E_ALLOCATOR_NOT_COMMITED","features":[426]},{"name":"MF_E_ALLOCATOR_NOT_INITIALIZED","features":[426]},{"name":"MF_E_ALL_PROCESS_RESTART_REQUIRED","features":[426]},{"name":"MF_E_ALREADY_INITIALIZED","features":[426]},{"name":"MF_E_ASF_DROPPED_PACKET","features":[426]},{"name":"MF_E_ASF_FILESINK_BITRATE_UNKNOWN","features":[426]},{"name":"MF_E_ASF_INDEXNOTLOADED","features":[426]},{"name":"MF_E_ASF_INVALIDDATA","features":[426]},{"name":"MF_E_ASF_MISSINGDATA","features":[426]},{"name":"MF_E_ASF_NOINDEX","features":[426]},{"name":"MF_E_ASF_OPAQUEPACKET","features":[426]},{"name":"MF_E_ASF_OUTOFRANGE","features":[426]},{"name":"MF_E_ASF_PARSINGINCOMPLETE","features":[426]},{"name":"MF_E_ASF_TOO_MANY_PAYLOADS","features":[426]},{"name":"MF_E_ASF_UNSUPPORTED_STREAM_TYPE","features":[426]},{"name":"MF_E_ATTRIBUTENOTFOUND","features":[426]},{"name":"MF_E_AUDIO_BUFFER_SIZE_ERROR","features":[426]},{"name":"MF_E_AUDIO_CLIENT_WRAPPER_SPOOF_ERROR","features":[426]},{"name":"MF_E_AUDIO_PLAYBACK_DEVICE_INVALIDATED","features":[426]},{"name":"MF_E_AUDIO_PLAYBACK_DEVICE_IN_USE","features":[426]},{"name":"MF_E_AUDIO_RECORDING_DEVICE_INVALIDATED","features":[426]},{"name":"MF_E_AUDIO_RECORDING_DEVICE_IN_USE","features":[426]},{"name":"MF_E_AUDIO_SERVICE_NOT_RUNNING","features":[426]},{"name":"MF_E_BACKUP_RESTRICTED_LICENSE","features":[426]},{"name":"MF_E_BAD_OPL_STRUCTURE_FORMAT","features":[426]},{"name":"MF_E_BAD_STARTUP_VERSION","features":[426]},{"name":"MF_E_BANDWIDTH_OVERRUN","features":[426]},{"name":"MF_E_BUFFERTOOSMALL","features":[426]},{"name":"MF_E_BYTESTREAM_NOT_SEEKABLE","features":[426]},{"name":"MF_E_BYTESTREAM_UNKNOWN_LENGTH","features":[426]},{"name":"MF_E_CANNOT_CREATE_SINK","features":[426]},{"name":"MF_E_CANNOT_FIND_KEYFRAME_SAMPLE","features":[426]},{"name":"MF_E_CANNOT_INDEX_IN_PLACE","features":[426]},{"name":"MF_E_CANNOT_PARSE_BYTESTREAM","features":[426]},{"name":"MF_E_CAPTURE_ENGINE_ALL_EFFECTS_REMOVED","features":[426]},{"name":"MF_E_CAPTURE_ENGINE_INVALID_OP","features":[426]},{"name":"MF_E_CAPTURE_NO_SAMPLES_IN_QUEUE","features":[426]},{"name":"MF_E_CAPTURE_PROPERTY_SET_DURING_PHOTO","features":[426]},{"name":"MF_E_CAPTURE_SINK_MIRROR_ERROR","features":[426]},{"name":"MF_E_CAPTURE_SINK_OUTPUT_NOT_SET","features":[426]},{"name":"MF_E_CAPTURE_SINK_ROTATE_ERROR","features":[426]},{"name":"MF_E_CAPTURE_SOURCE_DEVICE_EXTENDEDPROP_OP_IN_PROGRESS","features":[426]},{"name":"MF_E_CAPTURE_SOURCE_NO_AUDIO_STREAM_PRESENT","features":[426]},{"name":"MF_E_CAPTURE_SOURCE_NO_INDEPENDENT_PHOTO_STREAM_PRESENT","features":[426]},{"name":"MF_E_CAPTURE_SOURCE_NO_VIDEO_STREAM_PRESENT","features":[426]},{"name":"MF_E_CLOCK_AUDIO_DEVICE_POSITION_UNEXPECTED","features":[426]},{"name":"MF_E_CLOCK_AUDIO_RENDER_POSITION_UNEXPECTED","features":[426]},{"name":"MF_E_CLOCK_AUDIO_RENDER_TIME_UNEXPECTED","features":[426]},{"name":"MF_E_CLOCK_INVALID_CONTINUITY_KEY","features":[426]},{"name":"MF_E_CLOCK_NOT_SIMPLE","features":[426]},{"name":"MF_E_CLOCK_NO_TIME_SOURCE","features":[426]},{"name":"MF_E_CLOCK_STATE_ALREADY_SET","features":[426]},{"name":"MF_E_CODE_EXPIRED","features":[426]},{"name":"MF_E_COMPONENT_REVOKED","features":[426]},{"name":"MF_E_CONTENT_PROTECTION_SYSTEM_NOT_ENABLED","features":[426]},{"name":"MF_E_DEBUGGING_NOT_ALLOWED","features":[426]},{"name":"MF_E_DISABLED_IN_SAFEMODE","features":[426]},{"name":"MF_E_DRM_HARDWARE_INCONSISTENT","features":[426]},{"name":"MF_E_DRM_MIGRATION_NOT_SUPPORTED","features":[426]},{"name":"MF_E_DRM_UNSUPPORTED","features":[426]},{"name":"MF_E_DROPTIME_NOT_SUPPORTED","features":[426]},{"name":"MF_E_DURATION_TOO_LONG","features":[426]},{"name":"MF_E_DXGI_DEVICE_NOT_INITIALIZED","features":[426]},{"name":"MF_E_DXGI_NEW_VIDEO_DEVICE","features":[426]},{"name":"MF_E_DXGI_VIDEO_DEVICE_LOCKED","features":[426]},{"name":"MF_E_END_OF_STREAM","features":[426]},{"name":"MF_E_FLUSH_NEEDED","features":[426]},{"name":"MF_E_FORMAT_CHANGE_NOT_SUPPORTED","features":[426]},{"name":"MF_E_GRL_ABSENT","features":[426]},{"name":"MF_E_GRL_EXTENSIBLE_ENTRY_NOT_FOUND","features":[426]},{"name":"MF_E_GRL_INVALID_FORMAT","features":[426]},{"name":"MF_E_GRL_RENEWAL_NOT_FOUND","features":[426]},{"name":"MF_E_GRL_UNRECOGNIZED_FORMAT","features":[426]},{"name":"MF_E_GRL_VERSION_TOO_LOW","features":[426]},{"name":"MF_E_HARDWARE_DRM_UNSUPPORTED","features":[426]},{"name":"MF_E_HDCP_AUTHENTICATION_FAILURE","features":[426]},{"name":"MF_E_HDCP_LINK_FAILURE","features":[426]},{"name":"MF_E_HIGH_SECURITY_LEVEL_CONTENT_NOT_ALLOWED","features":[426]},{"name":"MF_E_HW_ACCELERATED_THUMBNAIL_NOT_SUPPORTED","features":[426]},{"name":"MF_E_HW_MFT_FAILED_START_STREAMING","features":[426]},{"name":"MF_E_HW_STREAM_NOT_CONNECTED","features":[426]},{"name":"MF_E_INCOMPATIBLE_SAMPLE_PROTECTION","features":[426]},{"name":"MF_E_INDEX_NOT_COMMITTED","features":[426]},{"name":"MF_E_INSUFFICIENT_BUFFER","features":[426]},{"name":"MF_E_INVALIDINDEX","features":[426]},{"name":"MF_E_INVALIDMEDIATYPE","features":[426]},{"name":"MF_E_INVALIDNAME","features":[426]},{"name":"MF_E_INVALIDREQUEST","features":[426]},{"name":"MF_E_INVALIDSTREAMNUMBER","features":[426]},{"name":"MF_E_INVALIDTYPE","features":[426]},{"name":"MF_E_INVALID_AKE_CHANNEL_PARAMETERS","features":[426]},{"name":"MF_E_INVALID_ASF_STREAMID","features":[426]},{"name":"MF_E_INVALID_CODEC_MERIT","features":[426]},{"name":"MF_E_INVALID_FILE_FORMAT","features":[426]},{"name":"MF_E_INVALID_FORMAT","features":[426]},{"name":"MF_E_INVALID_KEY","features":[426]},{"name":"MF_E_INVALID_POSITION","features":[426]},{"name":"MF_E_INVALID_PROFILE","features":[426]},{"name":"MF_E_INVALID_STATE_TRANSITION","features":[426]},{"name":"MF_E_INVALID_STREAM_DATA","features":[426]},{"name":"MF_E_INVALID_STREAM_STATE","features":[426]},{"name":"MF_E_INVALID_TIMESTAMP","features":[426]},{"name":"MF_E_INVALID_WORKQUEUE","features":[426]},{"name":"MF_E_ITA_ERROR_PARSING_SAP_PARAMETERS","features":[426]},{"name":"MF_E_ITA_OPL_DATA_NOT_INITIALIZED","features":[426]},{"name":"MF_E_ITA_UNRECOGNIZED_ANALOG_VIDEO_OUTPUT","features":[426]},{"name":"MF_E_ITA_UNRECOGNIZED_ANALOG_VIDEO_PROTECTION_GUID","features":[426]},{"name":"MF_E_ITA_UNRECOGNIZED_DIGITAL_VIDEO_OUTPUT","features":[426]},{"name":"MF_E_ITA_UNSUPPORTED_ACTION","features":[426]},{"name":"MF_E_KERNEL_UNTRUSTED","features":[426]},{"name":"MF_E_LATE_SAMPLE","features":[426]},{"name":"MF_E_LICENSE_INCORRECT_RIGHTS","features":[426]},{"name":"MF_E_LICENSE_OUTOFDATE","features":[426]},{"name":"MF_E_LICENSE_REQUIRED","features":[426]},{"name":"MF_E_LICENSE_RESTORE_NEEDS_INDIVIDUALIZATION","features":[426]},{"name":"MF_E_LICENSE_RESTORE_NO_RIGHTS","features":[426]},{"name":"MF_E_MEDIAPROC_WRONGSTATE","features":[426]},{"name":"MF_E_MEDIA_EXTENSION_APPSERVICE_CONNECTION_FAILED","features":[426]},{"name":"MF_E_MEDIA_EXTENSION_APPSERVICE_REQUEST_FAILED","features":[426]},{"name":"MF_E_MEDIA_EXTENSION_PACKAGE_INTEGRITY_CHECK_FAILED","features":[426]},{"name":"MF_E_MEDIA_EXTENSION_PACKAGE_LICENSE_INVALID","features":[426]},{"name":"MF_E_MEDIA_SOURCE_NOT_STARTED","features":[426]},{"name":"MF_E_MEDIA_SOURCE_NO_STREAMS_SELECTED","features":[426]},{"name":"MF_E_MEDIA_SOURCE_WRONGSTATE","features":[426]},{"name":"MF_E_METADATA_TOO_LONG","features":[426]},{"name":"MF_E_MISSING_ASF_LEAKYBUCKET","features":[426]},{"name":"MF_E_MP3_BAD_CRC","features":[426]},{"name":"MF_E_MP3_NOTFOUND","features":[426]},{"name":"MF_E_MP3_NOTMP3","features":[426]},{"name":"MF_E_MP3_NOTSUPPORTED","features":[426]},{"name":"MF_E_MP3_OUTOFDATA","features":[426]},{"name":"MF_E_MULTIPLE_BEGIN","features":[426]},{"name":"MF_E_MULTIPLE_SUBSCRIBERS","features":[426]},{"name":"MF_E_NETWORK_RESOURCE_FAILURE","features":[426]},{"name":"MF_E_NET_BAD_CONTROL_DATA","features":[426]},{"name":"MF_E_NET_BAD_REQUEST","features":[426]},{"name":"MF_E_NET_BUSY","features":[426]},{"name":"MF_E_NET_BWLEVEL_NOT_SUPPORTED","features":[426]},{"name":"MF_E_NET_CACHESTREAM_NOT_FOUND","features":[426]},{"name":"MF_E_NET_CACHE_NO_DATA","features":[426]},{"name":"MF_E_NET_CANNOTCONNECT","features":[426]},{"name":"MF_E_NET_CLIENT_CLOSE","features":[426]},{"name":"MF_E_NET_COMPANION_DRIVER_DISCONNECT","features":[426]},{"name":"MF_E_NET_CONNECTION_FAILURE","features":[426]},{"name":"MF_E_NET_EOL","features":[426]},{"name":"MF_E_NET_ERROR_FROM_PROXY","features":[426]},{"name":"MF_E_NET_INCOMPATIBLE_PUSHSERVER","features":[426]},{"name":"MF_E_NET_INCOMPATIBLE_SERVER","features":[426]},{"name":"MF_E_NET_INTERNAL_SERVER_ERROR","features":[426]},{"name":"MF_E_NET_INVALID_PRESENTATION_DESCRIPTOR","features":[426]},{"name":"MF_E_NET_INVALID_PUSH_PUBLISHING_POINT","features":[426]},{"name":"MF_E_NET_INVALID_PUSH_TEMPLATE","features":[426]},{"name":"MF_E_NET_MANUALSS_NOT_SUPPORTED","features":[426]},{"name":"MF_E_NET_NOCONNECTION","features":[426]},{"name":"MF_E_NET_PROTOCOL_DISABLED","features":[426]},{"name":"MF_E_NET_PROXY_ACCESSDENIED","features":[426]},{"name":"MF_E_NET_PROXY_TIMEOUT","features":[426]},{"name":"MF_E_NET_READ","features":[426]},{"name":"MF_E_NET_REDIRECT","features":[426]},{"name":"MF_E_NET_REDIRECT_TO_PROXY","features":[426]},{"name":"MF_E_NET_REQUIRE_ASYNC","features":[426]},{"name":"MF_E_NET_REQUIRE_INPUT","features":[426]},{"name":"MF_E_NET_REQUIRE_NETWORK","features":[426]},{"name":"MF_E_NET_RESOURCE_GONE","features":[426]},{"name":"MF_E_NET_SERVER_ACCESSDENIED","features":[426]},{"name":"MF_E_NET_SERVER_UNAVAILABLE","features":[426]},{"name":"MF_E_NET_SESSION_INVALID","features":[426]},{"name":"MF_E_NET_SESSION_NOT_FOUND","features":[426]},{"name":"MF_E_NET_STREAMGROUPS_NOT_SUPPORTED","features":[426]},{"name":"MF_E_NET_TIMEOUT","features":[426]},{"name":"MF_E_NET_TOO_MANY_REDIRECTS","features":[426]},{"name":"MF_E_NET_TOO_MUCH_DATA","features":[426]},{"name":"MF_E_NET_UDP_BLOCKED","features":[426]},{"name":"MF_E_NET_UNSAFE_URL","features":[426]},{"name":"MF_E_NET_UNSUPPORTED_CONFIGURATION","features":[426]},{"name":"MF_E_NET_WRITE","features":[426]},{"name":"MF_E_NEW_VIDEO_DEVICE","features":[426]},{"name":"MF_E_NON_PE_PROCESS","features":[426]},{"name":"MF_E_NOTACCEPTING","features":[426]},{"name":"MF_E_NOT_AVAILABLE","features":[426]},{"name":"MF_E_NOT_FOUND","features":[426]},{"name":"MF_E_NOT_INITIALIZED","features":[426]},{"name":"MF_E_NOT_PROTECTED","features":[426]},{"name":"MF_E_NO_AUDIO_PLAYBACK_DEVICE","features":[426]},{"name":"MF_E_NO_AUDIO_RECORDING_DEVICE","features":[426]},{"name":"MF_E_NO_BITPUMP","features":[426]},{"name":"MF_E_NO_CAPTURE_DEVICES_AVAILABLE","features":[426]},{"name":"MF_E_NO_CLOCK","features":[426]},{"name":"MF_E_NO_CONTENT_PROTECTION_MANAGER","features":[426]},{"name":"MF_E_NO_DURATION","features":[426]},{"name":"MF_E_NO_EVENTS_AVAILABLE","features":[426]},{"name":"MF_E_NO_INDEX","features":[426]},{"name":"MF_E_NO_MORE_DROP_MODES","features":[426]},{"name":"MF_E_NO_MORE_QUALITY_LEVELS","features":[426]},{"name":"MF_E_NO_MORE_TYPES","features":[426]},{"name":"MF_E_NO_PMP_HOST","features":[426]},{"name":"MF_E_NO_SAMPLE_DURATION","features":[426]},{"name":"MF_E_NO_SAMPLE_TIMESTAMP","features":[426]},{"name":"MF_E_NO_SOURCE_IN_CACHE","features":[426]},{"name":"MF_E_NO_VIDEO_SAMPLE_AVAILABLE","features":[426]},{"name":"MF_E_OFFLINE_MODE","features":[426]},{"name":"MF_E_OPERATION_CANCELLED","features":[426]},{"name":"MF_E_OPERATION_IN_PROGRESS","features":[426]},{"name":"MF_E_OPERATION_UNSUPPORTED_AT_D3D_FEATURE_LEVEL","features":[426]},{"name":"MF_E_OPL_NOT_SUPPORTED","features":[426]},{"name":"MF_E_OUT_OF_RANGE","features":[426]},{"name":"MF_E_PEAUTH_NOT_STARTED","features":[426]},{"name":"MF_E_PEAUTH_PUBLICKEY_REVOKED","features":[426]},{"name":"MF_E_PEAUTH_SESSION_NOT_STARTED","features":[426]},{"name":"MF_E_PEAUTH_UNTRUSTED","features":[426]},{"name":"MF_E_PE_SESSIONS_MAXED","features":[426]},{"name":"MF_E_PE_UNTRUSTED","features":[426]},{"name":"MF_E_PLATFORM_NOT_INITIALIZED","features":[426]},{"name":"MF_E_POLICY_MGR_ACTION_OUTOFBOUNDS","features":[426]},{"name":"MF_E_POLICY_UNSUPPORTED","features":[426]},{"name":"MF_E_PROCESS_RESTART_REQUIRED","features":[426]},{"name":"MF_E_PROPERTY_EMPTY","features":[426]},{"name":"MF_E_PROPERTY_NOT_ALLOWED","features":[426]},{"name":"MF_E_PROPERTY_NOT_EMPTY","features":[426]},{"name":"MF_E_PROPERTY_NOT_FOUND","features":[426]},{"name":"MF_E_PROPERTY_READ_ONLY","features":[426]},{"name":"MF_E_PROPERTY_TYPE_NOT_ALLOWED","features":[426]},{"name":"MF_E_PROPERTY_TYPE_NOT_SUPPORTED","features":[426]},{"name":"MF_E_PROPERTY_VECTOR_NOT_ALLOWED","features":[426]},{"name":"MF_E_PROPERTY_VECTOR_REQUIRED","features":[426]},{"name":"MF_E_QM_INVALIDSTATE","features":[426]},{"name":"MF_E_QUALITYKNOB_WAIT_LONGER","features":[426]},{"name":"MF_E_RATE_CHANGE_PREEMPTED","features":[426]},{"name":"MF_E_REBOOT_REQUIRED","features":[426]},{"name":"MF_E_RESOLUTION_REQUIRES_PMP_CREATION_CALLBACK","features":[426]},{"name":"MF_E_REVERSE_UNSUPPORTED","features":[426]},{"name":"MF_E_RT_OUTOFMEMORY","features":[426]},{"name":"MF_E_RT_THROUGHPUT_NOT_AVAILABLE","features":[426]},{"name":"MF_E_RT_TOO_MANY_CLASSES","features":[426]},{"name":"MF_E_RT_UNAVAILABLE","features":[426]},{"name":"MF_E_RT_WORKQUEUE_CLASS_NOT_SPECIFIED","features":[426]},{"name":"MF_E_RT_WOULDBLOCK","features":[426]},{"name":"MF_E_SAMPLEALLOCATOR_CANCELED","features":[426]},{"name":"MF_E_SAMPLEALLOCATOR_EMPTY","features":[426]},{"name":"MF_E_SAMPLE_HAS_TOO_MANY_BUFFERS","features":[426]},{"name":"MF_E_SAMPLE_NOT_WRITABLE","features":[426]},{"name":"MF_E_SEQUENCER_UNKNOWN_SEGMENT_ID","features":[426]},{"name":"MF_E_SESSION_PAUSEWHILESTOPPED","features":[426]},{"name":"MF_E_SHUTDOWN","features":[426]},{"name":"MF_E_SIGNATURE_VERIFICATION_FAILED","features":[426]},{"name":"MF_E_SINK_ALREADYSTOPPED","features":[426]},{"name":"MF_E_SINK_HEADERS_NOT_FOUND","features":[426]},{"name":"MF_E_SINK_NO_SAMPLES_PROCESSED","features":[426]},{"name":"MF_E_SINK_NO_STREAMS","features":[426]},{"name":"MF_E_SOURCERESOLVER_MUTUALLY_EXCLUSIVE_FLAGS","features":[426]},{"name":"MF_E_STATE_TRANSITION_PENDING","features":[426]},{"name":"MF_E_STREAMSINKS_FIXED","features":[426]},{"name":"MF_E_STREAMSINKS_OUT_OF_SYNC","features":[426]},{"name":"MF_E_STREAMSINK_EXISTS","features":[426]},{"name":"MF_E_STREAMSINK_REMOVED","features":[426]},{"name":"MF_E_STREAM_ERROR","features":[426]},{"name":"MF_E_TEST_SIGNED_COMPONENTS_NOT_ALLOWED","features":[426]},{"name":"MF_E_THINNING_UNSUPPORTED","features":[426]},{"name":"MF_E_TIMELINECONTROLLER_CANNOT_ATTACH","features":[426]},{"name":"MF_E_TIMELINECONTROLLER_NOT_ALLOWED","features":[426]},{"name":"MF_E_TIMELINECONTROLLER_UNSUPPORTED_SOURCE_TYPE","features":[426]},{"name":"MF_E_TIMER_ORPHANED","features":[426]},{"name":"MF_E_TOPOLOGY_VERIFICATION_FAILED","features":[426]},{"name":"MF_E_TOPO_CANNOT_CONNECT","features":[426]},{"name":"MF_E_TOPO_CANNOT_FIND_DECRYPTOR","features":[426]},{"name":"MF_E_TOPO_CODEC_NOT_FOUND","features":[426]},{"name":"MF_E_TOPO_INVALID_OPTIONAL_NODE","features":[426]},{"name":"MF_E_TOPO_INVALID_TIME_ATTRIBUTES","features":[426]},{"name":"MF_E_TOPO_LOOPS_IN_TOPOLOGY","features":[426]},{"name":"MF_E_TOPO_MISSING_PRESENTATION_DESCRIPTOR","features":[426]},{"name":"MF_E_TOPO_MISSING_SOURCE","features":[426]},{"name":"MF_E_TOPO_MISSING_STREAM_DESCRIPTOR","features":[426]},{"name":"MF_E_TOPO_SINK_ACTIVATES_UNSUPPORTED","features":[426]},{"name":"MF_E_TOPO_STREAM_DESCRIPTOR_NOT_SELECTED","features":[426]},{"name":"MF_E_TOPO_UNSUPPORTED","features":[426]},{"name":"MF_E_TRANSCODE_INVALID_PROFILE","features":[426]},{"name":"MF_E_TRANSCODE_NO_CONTAINERTYPE","features":[426]},{"name":"MF_E_TRANSCODE_NO_MATCHING_ENCODER","features":[426]},{"name":"MF_E_TRANSCODE_PROFILE_NO_MATCHING_STREAMS","features":[426]},{"name":"MF_E_TRANSFORM_ASYNC_LOCKED","features":[426]},{"name":"MF_E_TRANSFORM_ASYNC_MFT_NOT_SUPPORTED","features":[426]},{"name":"MF_E_TRANSFORM_CANNOT_CHANGE_MEDIATYPE_WHILE_PROCESSING","features":[426]},{"name":"MF_E_TRANSFORM_CANNOT_INITIALIZE_ACM_DRIVER","features":[426]},{"name":"MF_E_TRANSFORM_CONFLICTS_WITH_OTHER_CURRENTLY_ENABLED_FEATURES","features":[426]},{"name":"MF_E_TRANSFORM_EXATTRIBUTE_NOT_SUPPORTED","features":[426]},{"name":"MF_E_TRANSFORM_INPUT_REMAINING","features":[426]},{"name":"MF_E_TRANSFORM_NEED_MORE_INPUT","features":[426]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_INPUT_MEDIATYPE","features":[426]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_MEDIATYPE_COMBINATION","features":[426]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_OUTPUT_MEDIATYPE","features":[426]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_SPKR_CONFIG","features":[426]},{"name":"MF_E_TRANSFORM_PROFILE_INVALID_OR_CORRUPT","features":[426]},{"name":"MF_E_TRANSFORM_PROFILE_MISSING","features":[426]},{"name":"MF_E_TRANSFORM_PROFILE_TRUNCATED","features":[426]},{"name":"MF_E_TRANSFORM_PROPERTY_ARRAY_VALUE_WRONG_NUM_DIM","features":[426]},{"name":"MF_E_TRANSFORM_PROPERTY_NOT_WRITEABLE","features":[426]},{"name":"MF_E_TRANSFORM_PROPERTY_PID_NOT_RECOGNIZED","features":[426]},{"name":"MF_E_TRANSFORM_PROPERTY_VALUE_INCOMPATIBLE","features":[426]},{"name":"MF_E_TRANSFORM_PROPERTY_VALUE_OUT_OF_RANGE","features":[426]},{"name":"MF_E_TRANSFORM_PROPERTY_VALUE_SIZE_WRONG","features":[426]},{"name":"MF_E_TRANSFORM_PROPERTY_VARIANT_TYPE_WRONG","features":[426]},{"name":"MF_E_TRANSFORM_STREAM_CHANGE","features":[426]},{"name":"MF_E_TRANSFORM_STREAM_INVALID_RESOLUTION","features":[426]},{"name":"MF_E_TRANSFORM_TYPE_NOT_SET","features":[426]},{"name":"MF_E_TRUST_DISABLED","features":[426]},{"name":"MF_E_UNAUTHORIZED","features":[426]},{"name":"MF_E_UNEXPECTED","features":[426]},{"name":"MF_E_UNRECOVERABLE_ERROR_OCCURRED","features":[426]},{"name":"MF_E_UNSUPPORTED_BYTESTREAM_TYPE","features":[426]},{"name":"MF_E_UNSUPPORTED_CAPTION","features":[426]},{"name":"MF_E_UNSUPPORTED_CAPTURE_DEVICE_PRESENT","features":[426]},{"name":"MF_E_UNSUPPORTED_CHARACTERISTICS","features":[426]},{"name":"MF_E_UNSUPPORTED_CONTENT_PROTECTION_SYSTEM","features":[426]},{"name":"MF_E_UNSUPPORTED_D3D_TYPE","features":[426]},{"name":"MF_E_UNSUPPORTED_FORMAT","features":[426]},{"name":"MF_E_UNSUPPORTED_MEDIATYPE_AT_D3D_FEATURE_LEVEL","features":[426]},{"name":"MF_E_UNSUPPORTED_RATE","features":[426]},{"name":"MF_E_UNSUPPORTED_RATE_TRANSITION","features":[426]},{"name":"MF_E_UNSUPPORTED_REPRESENTATION","features":[426]},{"name":"MF_E_UNSUPPORTED_SCHEME","features":[426]},{"name":"MF_E_UNSUPPORTED_SERVICE","features":[426]},{"name":"MF_E_UNSUPPORTED_STATE_TRANSITION","features":[426]},{"name":"MF_E_UNSUPPORTED_TIME_FORMAT","features":[426]},{"name":"MF_E_USERMODE_UNTRUSTED","features":[426]},{"name":"MF_E_VIDEO_DEVICE_LOCKED","features":[426]},{"name":"MF_E_VIDEO_RECORDING_DEVICE_INVALIDATED","features":[426]},{"name":"MF_E_VIDEO_RECORDING_DEVICE_PREEMPTED","features":[426]},{"name":"MF_E_VIDEO_REN_COPYPROT_FAILED","features":[426]},{"name":"MF_E_VIDEO_REN_NO_DEINTERLACE_HW","features":[426]},{"name":"MF_E_VIDEO_REN_NO_PROCAMP_HW","features":[426]},{"name":"MF_E_VIDEO_REN_SURFACE_NOT_SHARED","features":[426]},{"name":"MF_E_WMDRMOTA_ACTION_ALREADY_SET","features":[426]},{"name":"MF_E_WMDRMOTA_ACTION_MISMATCH","features":[426]},{"name":"MF_E_WMDRMOTA_DRM_ENCRYPTION_SCHEME_NOT_SUPPORTED","features":[426]},{"name":"MF_E_WMDRMOTA_DRM_HEADER_NOT_AVAILABLE","features":[426]},{"name":"MF_E_WMDRMOTA_INVALID_POLICY","features":[426]},{"name":"MF_E_WMDRMOTA_NO_ACTION","features":[426]},{"name":"MF_FILEFLAGS_ALLOW_WRITE_SHARING","features":[426]},{"name":"MF_FILEFLAGS_NOBUFFERING","features":[426]},{"name":"MF_FILEFLAGS_NONE","features":[426]},{"name":"MF_FILE_ACCESSMODE","features":[426]},{"name":"MF_FILE_FLAGS","features":[426]},{"name":"MF_FILE_OPENMODE","features":[426]},{"name":"MF_FLOAT2","features":[426]},{"name":"MF_FLOAT3","features":[426]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_CUSTOM_EVENT","features":[426]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_PIPELINE_SHUTDOWN","features":[426]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_INITIALIZE","features":[426]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_START","features":[426]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_STOP","features":[426]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_UNINITIALIZE","features":[426]},{"name":"MF_GRL_ABSENT","features":[426]},{"name":"MF_GRL_LOAD_FAILED","features":[426]},{"name":"MF_HDCP_STATUS","features":[426]},{"name":"MF_HDCP_STATUS_OFF","features":[426]},{"name":"MF_HDCP_STATUS_ON","features":[426]},{"name":"MF_HDCP_STATUS_ON_WITH_TYPE_ENFORCEMENT","features":[426]},{"name":"MF_HISTOGRAM_CHANNEL_B","features":[426]},{"name":"MF_HISTOGRAM_CHANNEL_Cb","features":[426]},{"name":"MF_HISTOGRAM_CHANNEL_Cr","features":[426]},{"name":"MF_HISTOGRAM_CHANNEL_G","features":[426]},{"name":"MF_HISTOGRAM_CHANNEL_R","features":[426]},{"name":"MF_HISTOGRAM_CHANNEL_Y","features":[426]},{"name":"MF_INDEPENDENT_STILL_IMAGE","features":[426]},{"name":"MF_INDEX_SIZE_ERR","features":[426]},{"name":"MF_INVALID_ACCESS_ERR","features":[426]},{"name":"MF_INVALID_GRL_SIGNATURE","features":[426]},{"name":"MF_INVALID_PRESENTATION_TIME","features":[426]},{"name":"MF_INVALID_STATE_ERR","features":[426]},{"name":"MF_I_MANUAL_PROXY","features":[426]},{"name":"MF_KERNEL_MODE_COMPONENT_LOAD","features":[426]},{"name":"MF_LEAKY_BUCKET_PAIR","features":[426]},{"name":"MF_LICENSE_URL_TAMPERED","features":[426]},{"name":"MF_LICENSE_URL_TRUSTED","features":[426]},{"name":"MF_LICENSE_URL_UNTRUSTED","features":[426]},{"name":"MF_LOCAL_MFT_REGISTRATION_SERVICE","features":[426]},{"name":"MF_LOCAL_PLUGIN_CONTROL_POLICY","features":[426]},{"name":"MF_LOW_LATENCY","features":[426]},{"name":"MF_LUMA_KEY_ENABLE","features":[426]},{"name":"MF_LUMA_KEY_LOWER","features":[426]},{"name":"MF_LUMA_KEY_UPPER","features":[426]},{"name":"MF_MEDIAENGINE_KEYERR_CLIENT","features":[426]},{"name":"MF_MEDIAENGINE_KEYERR_DOMAIN","features":[426]},{"name":"MF_MEDIAENGINE_KEYERR_HARDWARECHANGE","features":[426]},{"name":"MF_MEDIAENGINE_KEYERR_OUTPUT","features":[426]},{"name":"MF_MEDIAENGINE_KEYERR_SERVICE","features":[426]},{"name":"MF_MEDIAENGINE_KEYERR_UNKNOWN","features":[426]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE","features":[426]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_INDIVIDUALIZATION_REQUEST","features":[426]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_LICENSE_RELEASE","features":[426]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_LICENSE_RENEWAL","features":[426]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_LICENSE_REQUEST","features":[426]},{"name":"MF_MEDIAKEYSESSION_TYPE","features":[426]},{"name":"MF_MEDIAKEYSESSION_TYPE_PERSISTENT_LICENSE","features":[426]},{"name":"MF_MEDIAKEYSESSION_TYPE_PERSISTENT_RELEASE_MESSAGE","features":[426]},{"name":"MF_MEDIAKEYSESSION_TYPE_PERSISTENT_USAGE_RECORD","features":[426]},{"name":"MF_MEDIAKEYSESSION_TYPE_TEMPORARY","features":[426]},{"name":"MF_MEDIAKEYS_REQUIREMENT","features":[426]},{"name":"MF_MEDIAKEYS_REQUIREMENT_NOT_ALLOWED","features":[426]},{"name":"MF_MEDIAKEYS_REQUIREMENT_OPTIONAL","features":[426]},{"name":"MF_MEDIAKEYS_REQUIREMENT_REQUIRED","features":[426]},{"name":"MF_MEDIAKEY_STATUS","features":[426]},{"name":"MF_MEDIAKEY_STATUS_EXPIRED","features":[426]},{"name":"MF_MEDIAKEY_STATUS_INTERNAL_ERROR","features":[426]},{"name":"MF_MEDIAKEY_STATUS_OUTPUT_DOWNSCALED","features":[426]},{"name":"MF_MEDIAKEY_STATUS_OUTPUT_NOT_ALLOWED","features":[426]},{"name":"MF_MEDIAKEY_STATUS_OUTPUT_RESTRICTED","features":[426]},{"name":"MF_MEDIAKEY_STATUS_RELEASED","features":[426]},{"name":"MF_MEDIAKEY_STATUS_STATUS_PENDING","features":[426]},{"name":"MF_MEDIAKEY_STATUS_USABLE","features":[426]},{"name":"MF_MEDIASINK_AUTOFINALIZE_SUPPORTED","features":[426]},{"name":"MF_MEDIASINK_ENABLE_AUTOFINALIZE","features":[426]},{"name":"MF_MEDIASOURCE_EXPOSE_ALL_STREAMS","features":[426]},{"name":"MF_MEDIASOURCE_SERVICE","features":[426]},{"name":"MF_MEDIATYPE_EQUAL_FORMAT_DATA","features":[426]},{"name":"MF_MEDIATYPE_EQUAL_FORMAT_TYPES","features":[426]},{"name":"MF_MEDIATYPE_EQUAL_FORMAT_USER_DATA","features":[426]},{"name":"MF_MEDIATYPE_EQUAL_MAJOR_TYPES","features":[426]},{"name":"MF_MEDIATYPE_MULTIPLEXED_MANAGER","features":[426]},{"name":"MF_MEDIA_ENGINE_AUDIOONLY","features":[426]},{"name":"MF_MEDIA_ENGINE_AUDIO_CATEGORY","features":[426]},{"name":"MF_MEDIA_ENGINE_AUDIO_ENDPOINT_ROLE","features":[426]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE","features":[426]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE10","features":[426]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE11","features":[426]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE9","features":[426]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE_EDGE","features":[426]},{"name":"MF_MEDIA_ENGINE_CALLBACK","features":[426]},{"name":"MF_MEDIA_ENGINE_CANPLAY","features":[426]},{"name":"MF_MEDIA_ENGINE_CANPLAY_MAYBE","features":[426]},{"name":"MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED","features":[426]},{"name":"MF_MEDIA_ENGINE_CANPLAY_PROBABLY","features":[426]},{"name":"MF_MEDIA_ENGINE_COMPATIBILITY_MODE","features":[426]},{"name":"MF_MEDIA_ENGINE_COMPATIBILITY_MODE_WIN10","features":[426]},{"name":"MF_MEDIA_ENGINE_COMPATIBILITY_MODE_WWA_EDGE","features":[426]},{"name":"MF_MEDIA_ENGINE_CONTENT_PROTECTION_FLAGS","features":[426]},{"name":"MF_MEDIA_ENGINE_CONTENT_PROTECTION_MANAGER","features":[426]},{"name":"MF_MEDIA_ENGINE_CONTINUE_ON_CODEC_ERROR","features":[426]},{"name":"MF_MEDIA_ENGINE_COREWINDOW","features":[426]},{"name":"MF_MEDIA_ENGINE_CREATEFLAGS","features":[426]},{"name":"MF_MEDIA_ENGINE_CREATEFLAGS_MASK","features":[426]},{"name":"MF_MEDIA_ENGINE_DISABLE_LOCAL_PLUGINS","features":[426]},{"name":"MF_MEDIA_ENGINE_DXGI_MANAGER","features":[426]},{"name":"MF_MEDIA_ENGINE_EME_CALLBACK","features":[426]},{"name":"MF_MEDIA_ENGINE_ENABLE_PROTECTED_CONTENT","features":[426]},{"name":"MF_MEDIA_ENGINE_ERR","features":[426]},{"name":"MF_MEDIA_ENGINE_ERR_ABORTED","features":[426]},{"name":"MF_MEDIA_ENGINE_ERR_DECODE","features":[426]},{"name":"MF_MEDIA_ENGINE_ERR_ENCRYPTED","features":[426]},{"name":"MF_MEDIA_ENGINE_ERR_NETWORK","features":[426]},{"name":"MF_MEDIA_ENGINE_ERR_NOERROR","features":[426]},{"name":"MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_ABORT","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_AUDIOENDPOINTCHANGE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_BALANCECHANGE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_BUFFERINGENDED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_BUFFERINGSTARTED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_CANPLAY","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_CANPLAYTHROUGH","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_DELAYLOADEVENT_CHANGED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_DOWNLOADCOMPLETE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_DURATIONCHANGE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_EMPTIED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_ENDED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_ERROR","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_FIRSTFRAMEREADY","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_FORMATCHANGE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_FRAMESTEPCOMPLETED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_LOADEDDATA","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_LOADEDMETADATA","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_LOADSTART","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_NOTIFYSTABLESTATE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_OPMINFO","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_PAUSE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_PLAY","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_PLAYING","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_PROGRESS","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_PURGEQUEUEDEVENTS","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_RATECHANGE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_RESOURCELOST","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_SEEKED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_SEEKING","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_STALLED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_STREAMRENDERINGERROR","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_SUPPORTEDRATES_CHANGED","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_SUSPEND","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_TIMELINE_MARKER","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_TIMEUPDATE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_TRACKSCHANGE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_VOLUMECHANGE","features":[426]},{"name":"MF_MEDIA_ENGINE_EVENT_WAITING","features":[426]},{"name":"MF_MEDIA_ENGINE_EXTENSION","features":[426]},{"name":"MF_MEDIA_ENGINE_EXTENSION_TYPE","features":[426]},{"name":"MF_MEDIA_ENGINE_EXTENSION_TYPE_BYTESTREAM","features":[426]},{"name":"MF_MEDIA_ENGINE_EXTENSION_TYPE_MEDIASOURCE","features":[426]},{"name":"MF_MEDIA_ENGINE_FORCEMUTE","features":[426]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAGS","features":[426]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAG_PROTECTED","features":[426]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAG_REQUIRES_ANTI_SCREEN_SCRAPE_PROTECTION","features":[426]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAG_REQUIRES_SURFACE_PROTECTION","features":[426]},{"name":"MF_MEDIA_ENGINE_KEYERR","features":[426]},{"name":"MF_MEDIA_ENGINE_MEDIA_PLAYER_MODE","features":[426]},{"name":"MF_MEDIA_ENGINE_NEEDKEY_CALLBACK","features":[426]},{"name":"MF_MEDIA_ENGINE_NETWORK","features":[426]},{"name":"MF_MEDIA_ENGINE_NETWORK_EMPTY","features":[426]},{"name":"MF_MEDIA_ENGINE_NETWORK_IDLE","features":[426]},{"name":"MF_MEDIA_ENGINE_NETWORK_LOADING","features":[426]},{"name":"MF_MEDIA_ENGINE_NETWORK_NO_SOURCE","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_ESTABLISHED","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED_BDA","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED_UNSIGNED_DRIVER","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED_VM","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_HWND","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_NOT_REQUESTED","features":[426]},{"name":"MF_MEDIA_ENGINE_OPM_STATUS","features":[426]},{"name":"MF_MEDIA_ENGINE_PLAYBACK_HWND","features":[426]},{"name":"MF_MEDIA_ENGINE_PLAYBACK_VISUAL","features":[426]},{"name":"MF_MEDIA_ENGINE_PRELOAD","features":[426]},{"name":"MF_MEDIA_ENGINE_PRELOAD_AUTOMATIC","features":[426]},{"name":"MF_MEDIA_ENGINE_PRELOAD_EMPTY","features":[426]},{"name":"MF_MEDIA_ENGINE_PRELOAD_METADATA","features":[426]},{"name":"MF_MEDIA_ENGINE_PRELOAD_MISSING","features":[426]},{"name":"MF_MEDIA_ENGINE_PRELOAD_NONE","features":[426]},{"name":"MF_MEDIA_ENGINE_PROTECTION_FLAGS","features":[426]},{"name":"MF_MEDIA_ENGINE_READY","features":[426]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_CURRENT_DATA","features":[426]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_ENOUGH_DATA","features":[426]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_FUTURE_DATA","features":[426]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_METADATA","features":[426]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_NOTHING","features":[426]},{"name":"MF_MEDIA_ENGINE_REAL_TIME_MODE","features":[426]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE","features":[426]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE_NONE","features":[426]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE_SIDE_BY_SIDE","features":[426]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE_TOP_BOTTOM","features":[426]},{"name":"MF_MEDIA_ENGINE_SEEK_MODE","features":[426]},{"name":"MF_MEDIA_ENGINE_SEEK_MODE_APPROXIMATE","features":[426]},{"name":"MF_MEDIA_ENGINE_SEEK_MODE_NORMAL","features":[426]},{"name":"MF_MEDIA_ENGINE_SOURCE_RESOLVER_CONFIG_STORE","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_BUFFER_PROGRESS","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_BYTES_DOWNLOADED","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_CORRUPTED","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_DROPPED","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_PER_SECOND","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_RENDERED","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_PLAYBACK_JITTER","features":[426]},{"name":"MF_MEDIA_ENGINE_STATISTIC_TOTAL_FRAME_DELAY","features":[426]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED","features":[426]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED_AUDIO","features":[426]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED_UNKNOWN","features":[426]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED_VIDEO","features":[426]},{"name":"MF_MEDIA_ENGINE_STREAM_CONTAINS_ALPHA_CHANNEL","features":[426]},{"name":"MF_MEDIA_ENGINE_SYNCHRONOUS_CLOSE","features":[426]},{"name":"MF_MEDIA_ENGINE_TELEMETRY_APPLICATION_ID","features":[426]},{"name":"MF_MEDIA_ENGINE_TIMEDTEXT","features":[426]},{"name":"MF_MEDIA_ENGINE_TRACK_ID","features":[426]},{"name":"MF_MEDIA_ENGINE_USE_PMP_FOR_ALL_CONTENT","features":[426]},{"name":"MF_MEDIA_ENGINE_USE_UNPROTECTED_PMP","features":[426]},{"name":"MF_MEDIA_ENGINE_VIDEO_OUTPUT_FORMAT","features":[426]},{"name":"MF_MEDIA_ENGINE_WAITFORSTABLE_STATE","features":[426]},{"name":"MF_MEDIA_PROTECTION_MANAGER_PROPERTIES","features":[426]},{"name":"MF_MEDIA_SHARING_ENGINE_DEVICE","features":[426]},{"name":"MF_MEDIA_SHARING_ENGINE_DEVICE_NAME","features":[426]},{"name":"MF_MEDIA_SHARING_ENGINE_EVENT","features":[426]},{"name":"MF_MEDIA_SHARING_ENGINE_EVENT_DISCONNECT","features":[426]},{"name":"MF_MEDIA_SHARING_ENGINE_INITIAL_SEEK_TIME","features":[426]},{"name":"MF_METADATAFACIALEXPRESSION_SMILE","features":[426]},{"name":"MF_METADATATIMESTAMPS_DEVICE","features":[426]},{"name":"MF_METADATATIMESTAMPS_PRESENTATION","features":[426]},{"name":"MF_METADATA_PROVIDER_SERVICE","features":[426]},{"name":"MF_MINCRYPT_FAILURE","features":[426]},{"name":"MF_MP2DLNA_AUDIO_BIT_RATE","features":[426]},{"name":"MF_MP2DLNA_ENCODE_QUALITY","features":[426]},{"name":"MF_MP2DLNA_STATISTICS","features":[426]},{"name":"MF_MP2DLNA_USE_MMCSS","features":[426]},{"name":"MF_MP2DLNA_VIDEO_BIT_RATE","features":[426]},{"name":"MF_MPEG4SINK_MAX_CODED_SEQUENCES_PER_FRAGMENT","features":[426]},{"name":"MF_MPEG4SINK_MINIMUM_PROPERTIES_SIZE","features":[426]},{"name":"MF_MPEG4SINK_MIN_FRAGMENT_DURATION","features":[426]},{"name":"MF_MPEG4SINK_MOOV_BEFORE_MDAT","features":[426]},{"name":"MF_MPEG4SINK_SPSPPS_PASSTHROUGH","features":[426]},{"name":"MF_MSE_ACTIVELIST_CALLBACK","features":[426]},{"name":"MF_MSE_APPEND_MODE","features":[426]},{"name":"MF_MSE_APPEND_MODE_SEGMENTS","features":[426]},{"name":"MF_MSE_APPEND_MODE_SEQUENCE","features":[426]},{"name":"MF_MSE_BUFFERLIST_CALLBACK","features":[426]},{"name":"MF_MSE_CALLBACK","features":[426]},{"name":"MF_MSE_ERROR","features":[426]},{"name":"MF_MSE_ERROR_DECODE","features":[426]},{"name":"MF_MSE_ERROR_NETWORK","features":[426]},{"name":"MF_MSE_ERROR_NOERROR","features":[426]},{"name":"MF_MSE_ERROR_UNKNOWN_ERROR","features":[426]},{"name":"MF_MSE_OPUS_SUPPORT","features":[426]},{"name":"MF_MSE_OPUS_SUPPORT_OFF","features":[426]},{"name":"MF_MSE_OPUS_SUPPORT_ON","features":[426]},{"name":"MF_MSE_OPUS_SUPPORT_TYPE","features":[426]},{"name":"MF_MSE_READY","features":[426]},{"name":"MF_MSE_READY_CLOSED","features":[426]},{"name":"MF_MSE_READY_ENDED","features":[426]},{"name":"MF_MSE_READY_OPEN","features":[426]},{"name":"MF_MSE_VP9_SUPPORT","features":[426]},{"name":"MF_MSE_VP9_SUPPORT_DEFAULT","features":[426]},{"name":"MF_MSE_VP9_SUPPORT_OFF","features":[426]},{"name":"MF_MSE_VP9_SUPPORT_ON","features":[426]},{"name":"MF_MSE_VP9_SUPPORT_TYPE","features":[426]},{"name":"MF_MT_AAC_AUDIO_PROFILE_LEVEL_INDICATION","features":[426]},{"name":"MF_MT_AAC_PAYLOAD_TYPE","features":[426]},{"name":"MF_MT_ALL_SAMPLES_INDEPENDENT","features":[426]},{"name":"MF_MT_ALPHA_MODE","features":[426]},{"name":"MF_MT_AM_FORMAT_TYPE","features":[426]},{"name":"MF_MT_ARBITRARY_FORMAT","features":[426]},{"name":"MF_MT_ARBITRARY_HEADER","features":[426]},{"name":"MF_MT_AUDIO_AVG_BYTES_PER_SECOND","features":[426]},{"name":"MF_MT_AUDIO_BITS_PER_SAMPLE","features":[426]},{"name":"MF_MT_AUDIO_BLOCK_ALIGNMENT","features":[426]},{"name":"MF_MT_AUDIO_CHANNEL_MASK","features":[426]},{"name":"MF_MT_AUDIO_FLAC_MAX_BLOCK_SIZE","features":[426]},{"name":"MF_MT_AUDIO_FLOAT_SAMPLES_PER_SECOND","features":[426]},{"name":"MF_MT_AUDIO_FOLDDOWN_MATRIX","features":[426]},{"name":"MF_MT_AUDIO_NUM_CHANNELS","features":[426]},{"name":"MF_MT_AUDIO_PREFER_WAVEFORMATEX","features":[426]},{"name":"MF_MT_AUDIO_SAMPLES_PER_BLOCK","features":[426]},{"name":"MF_MT_AUDIO_SAMPLES_PER_SECOND","features":[426]},{"name":"MF_MT_AUDIO_VALID_BITS_PER_SAMPLE","features":[426]},{"name":"MF_MT_AUDIO_WMADRC_AVGREF","features":[426]},{"name":"MF_MT_AUDIO_WMADRC_AVGTARGET","features":[426]},{"name":"MF_MT_AUDIO_WMADRC_PEAKREF","features":[426]},{"name":"MF_MT_AUDIO_WMADRC_PEAKTARGET","features":[426]},{"name":"MF_MT_AVG_BITRATE","features":[426]},{"name":"MF_MT_AVG_BIT_ERROR_RATE","features":[426]},{"name":"MF_MT_COMPRESSED","features":[426]},{"name":"MF_MT_CONTAINER_RATE_SCALING","features":[426]},{"name":"MF_MT_CUSTOM_VIDEO_PRIMARIES","features":[426]},{"name":"MF_MT_D3D12_CPU_READBACK","features":[426]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_CROSS_ADAPTER","features":[426]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL","features":[426]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET","features":[426]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_SIMULTANEOUS_ACCESS","features":[426]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_UNORDERED_ACCESS","features":[426]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_DENY_SHADER_RESOURCE","features":[426]},{"name":"MF_MT_D3D12_TEXTURE_LAYOUT","features":[426]},{"name":"MF_MT_D3D_RESOURCE_VERSION","features":[426]},{"name":"MF_MT_D3D_RESOURCE_VERSION_ENUM","features":[426]},{"name":"MF_MT_DECODER_MAX_DPB_COUNT","features":[426]},{"name":"MF_MT_DECODER_USE_MAX_RESOLUTION","features":[426]},{"name":"MF_MT_DEFAULT_STRIDE","features":[426]},{"name":"MF_MT_DEPTH_MEASUREMENT","features":[426]},{"name":"MF_MT_DEPTH_VALUE_UNIT","features":[426]},{"name":"MF_MT_DRM_FLAGS","features":[426]},{"name":"MF_MT_DV_AAUX_CTRL_PACK_0","features":[426]},{"name":"MF_MT_DV_AAUX_CTRL_PACK_1","features":[426]},{"name":"MF_MT_DV_AAUX_SRC_PACK_0","features":[426]},{"name":"MF_MT_DV_AAUX_SRC_PACK_1","features":[426]},{"name":"MF_MT_DV_VAUX_CTRL_PACK","features":[426]},{"name":"MF_MT_DV_VAUX_SRC_PACK","features":[426]},{"name":"MF_MT_FIXED_SIZE_SAMPLES","features":[426]},{"name":"MF_MT_FORWARD_CUSTOM_NALU","features":[426]},{"name":"MF_MT_FORWARD_CUSTOM_SEI","features":[426]},{"name":"MF_MT_FRAME_RATE","features":[426]},{"name":"MF_MT_FRAME_RATE_RANGE_MAX","features":[426]},{"name":"MF_MT_FRAME_RATE_RANGE_MIN","features":[426]},{"name":"MF_MT_FRAME_SIZE","features":[426]},{"name":"MF_MT_GEOMETRIC_APERTURE","features":[426]},{"name":"MF_MT_H264_CAPABILITIES","features":[426]},{"name":"MF_MT_H264_LAYOUT_PER_STREAM","features":[426]},{"name":"MF_MT_H264_MAX_CODEC_CONFIG_DELAY","features":[426]},{"name":"MF_MT_H264_MAX_MB_PER_SEC","features":[426]},{"name":"MF_MT_H264_RATE_CONTROL_MODES","features":[426]},{"name":"MF_MT_H264_RESOLUTION_SCALING","features":[426]},{"name":"MF_MT_H264_SIMULCAST_SUPPORT","features":[426]},{"name":"MF_MT_H264_SUPPORTED_RATE_CONTROL_MODES","features":[426]},{"name":"MF_MT_H264_SUPPORTED_SLICE_MODES","features":[426]},{"name":"MF_MT_H264_SUPPORTED_SYNC_FRAME_TYPES","features":[426]},{"name":"MF_MT_H264_SUPPORTED_USAGES","features":[426]},{"name":"MF_MT_H264_SVC_CAPABILITIES","features":[426]},{"name":"MF_MT_H264_USAGE","features":[426]},{"name":"MF_MT_IMAGE_LOSS_TOLERANT","features":[426]},{"name":"MF_MT_INTERLACE_MODE","features":[426]},{"name":"MF_MT_IN_BAND_PARAMETER_SET","features":[426]},{"name":"MF_MT_MAJOR_TYPE","features":[426]},{"name":"MF_MT_MAX_FRAME_AVERAGE_LUMINANCE_LEVEL","features":[426]},{"name":"MF_MT_MAX_KEYFRAME_SPACING","features":[426]},{"name":"MF_MT_MAX_LUMINANCE_LEVEL","features":[426]},{"name":"MF_MT_MAX_MASTERING_LUMINANCE","features":[426]},{"name":"MF_MT_MINIMUM_DISPLAY_APERTURE","features":[426]},{"name":"MF_MT_MIN_MASTERING_LUMINANCE","features":[426]},{"name":"MF_MT_MPEG2_CONTENT_PACKET","features":[426]},{"name":"MF_MT_MPEG2_FLAGS","features":[426]},{"name":"MF_MT_MPEG2_HDCP","features":[426]},{"name":"MF_MT_MPEG2_LEVEL","features":[426]},{"name":"MF_MT_MPEG2_ONE_FRAME_PER_PACKET","features":[426]},{"name":"MF_MT_MPEG2_PROFILE","features":[426]},{"name":"MF_MT_MPEG2_STANDARD","features":[426]},{"name":"MF_MT_MPEG2_TIMECODE","features":[426]},{"name":"MF_MT_MPEG4_CURRENT_SAMPLE_ENTRY","features":[426]},{"name":"MF_MT_MPEG4_SAMPLE_DESCRIPTION","features":[426]},{"name":"MF_MT_MPEG4_TRACK_TYPE","features":[426]},{"name":"MF_MT_MPEG_SEQUENCE_HEADER","features":[426]},{"name":"MF_MT_MPEG_START_TIME_CODE","features":[426]},{"name":"MF_MT_ORIGINAL_4CC","features":[426]},{"name":"MF_MT_ORIGINAL_WAVE_FORMAT_TAG","features":[426]},{"name":"MF_MT_OUTPUT_BUFFER_NUM","features":[426]},{"name":"MF_MT_PAD_CONTROL_FLAGS","features":[426]},{"name":"MF_MT_PALETTE","features":[426]},{"name":"MF_MT_PAN_SCAN_APERTURE","features":[426]},{"name":"MF_MT_PAN_SCAN_ENABLED","features":[426]},{"name":"MF_MT_PIXEL_ASPECT_RATIO","features":[426]},{"name":"MF_MT_REALTIME_CONTENT","features":[426]},{"name":"MF_MT_SAMPLE_SIZE","features":[426]},{"name":"MF_MT_SECURE","features":[426]},{"name":"MF_MT_SOURCE_CONTENT_HINT","features":[426]},{"name":"MF_MT_SPATIAL_AUDIO_DATA_PRESENT","features":[426]},{"name":"MF_MT_SPATIAL_AUDIO_MAX_DYNAMIC_OBJECTS","features":[426]},{"name":"MF_MT_SPATIAL_AUDIO_MAX_METADATA_ITEMS","features":[426]},{"name":"MF_MT_SPATIAL_AUDIO_MIN_METADATA_ITEM_OFFSET_SPACING","features":[426]},{"name":"MF_MT_SPATIAL_AUDIO_OBJECT_METADATA_FORMAT_ID","features":[426]},{"name":"MF_MT_SPATIAL_AUDIO_OBJECT_METADATA_LENGTH","features":[426]},{"name":"MF_MT_SUBTYPE","features":[426]},{"name":"MF_MT_TIMESTAMP_CAN_BE_DTS","features":[426]},{"name":"MF_MT_TRANSFER_FUNCTION","features":[426]},{"name":"MF_MT_USER_DATA","features":[426]},{"name":"MF_MT_VIDEO_3D","features":[426]},{"name":"MF_MT_VIDEO_3D_FIRST_IS_LEFT","features":[426]},{"name":"MF_MT_VIDEO_3D_FORMAT","features":[426]},{"name":"MF_MT_VIDEO_3D_LEFT_IS_BASE","features":[426]},{"name":"MF_MT_VIDEO_3D_NUM_VIEWS","features":[426]},{"name":"MF_MT_VIDEO_CHROMA_SITING","features":[426]},{"name":"MF_MT_VIDEO_H264_NO_FMOASO","features":[426]},{"name":"MF_MT_VIDEO_LEVEL","features":[426]},{"name":"MF_MT_VIDEO_LIGHTING","features":[426]},{"name":"MF_MT_VIDEO_NOMINAL_RANGE","features":[426]},{"name":"MF_MT_VIDEO_NO_FRAME_ORDERING","features":[426]},{"name":"MF_MT_VIDEO_PRIMARIES","features":[426]},{"name":"MF_MT_VIDEO_PROFILE","features":[426]},{"name":"MF_MT_VIDEO_RENDERER_EXTENSION_PROFILE","features":[426]},{"name":"MF_MT_VIDEO_ROTATION","features":[426]},{"name":"MF_MT_WRAPPED_TYPE","features":[426]},{"name":"MF_MT_YUV_MATRIX","features":[426]},{"name":"MF_MULTITHREADED_WORKQUEUE","features":[426]},{"name":"MF_NALU_LENGTH_INFORMATION","features":[426]},{"name":"MF_NALU_LENGTH_SET","features":[426]},{"name":"MF_NOT_FOUND_ERR","features":[426]},{"name":"MF_NOT_SUPPORTED_ERR","features":[426]},{"name":"MF_NUM_DROP_MODES","features":[426]},{"name":"MF_NUM_QUALITY_LEVELS","features":[426]},{"name":"MF_OBJECT_BYTESTREAM","features":[426]},{"name":"MF_OBJECT_INVALID","features":[426]},{"name":"MF_OBJECT_MEDIASOURCE","features":[426]},{"name":"MF_OBJECT_TYPE","features":[426]},{"name":"MF_OPENMODE_APPEND_IF_EXIST","features":[426]},{"name":"MF_OPENMODE_DELETE_IF_EXIST","features":[426]},{"name":"MF_OPENMODE_FAIL_IF_EXIST","features":[426]},{"name":"MF_OPENMODE_FAIL_IF_NOT_EXIST","features":[426]},{"name":"MF_OPENMODE_RESET_IF_EXIST","features":[426]},{"name":"MF_OPM_ACP_LEVEL_ONE","features":[426]},{"name":"MF_OPM_ACP_LEVEL_THREE","features":[426]},{"name":"MF_OPM_ACP_LEVEL_TWO","features":[426]},{"name":"MF_OPM_ACP_OFF","features":[426]},{"name":"MF_OPM_ACP_PROTECTION_LEVEL","features":[426]},{"name":"MF_OPM_CGMSA_COPY_FREELY","features":[426]},{"name":"MF_OPM_CGMSA_COPY_NEVER","features":[426]},{"name":"MF_OPM_CGMSA_COPY_NO_MORE","features":[426]},{"name":"MF_OPM_CGMSA_COPY_ONE_GENERATION","features":[426]},{"name":"MF_OPM_CGMSA_OFF","features":[426]},{"name":"MF_OPM_CGMSA_PROTECTION_LEVEL","features":[426]},{"name":"MF_OPM_CGMSA_REDISTRIBUTION_CONTROL_REQUIRED","features":[426]},{"name":"MF_OPTIONAL_NODE_REJECTED_MEDIA_TYPE","features":[426]},{"name":"MF_OPTIONAL_NODE_REJECTED_PROTECTED_PROCESS","features":[426]},{"name":"MF_PARSE_ERR","features":[426]},{"name":"MF_PD_ADAPTIVE_STREAMING","features":[426]},{"name":"MF_PD_APP_CONTEXT","features":[426]},{"name":"MF_PD_ASF_CODECLIST","features":[426]},{"name":"MF_PD_ASF_CONTENTENCRYPTIONEX_ENCRYPTION_DATA","features":[426]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_KEYID","features":[426]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_LICENSE_URL","features":[426]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_SECRET_DATA","features":[426]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_TYPE","features":[426]},{"name":"MF_PD_ASF_DATA_LENGTH","features":[426]},{"name":"MF_PD_ASF_DATA_START_OFFSET","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_CREATION_TIME","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_FILE_ID","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_FLAGS","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_MAX_BITRATE","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_MAX_PACKET_SIZE","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_MIN_PACKET_SIZE","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_PACKETS","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_PLAY_DURATION","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_PREROLL","features":[426]},{"name":"MF_PD_ASF_FILEPROPERTIES_SEND_DURATION","features":[426]},{"name":"MF_PD_ASF_INFO_HAS_AUDIO","features":[426]},{"name":"MF_PD_ASF_INFO_HAS_NON_AUDIO_VIDEO","features":[426]},{"name":"MF_PD_ASF_INFO_HAS_VIDEO","features":[426]},{"name":"MF_PD_ASF_LANGLIST","features":[426]},{"name":"MF_PD_ASF_LANGLIST_LEGACYORDER","features":[426]},{"name":"MF_PD_ASF_MARKER","features":[426]},{"name":"MF_PD_ASF_METADATA_IS_VBR","features":[426]},{"name":"MF_PD_ASF_METADATA_LEAKY_BUCKET_PAIRS","features":[426]},{"name":"MF_PD_ASF_METADATA_V8_BUFFERAVERAGE","features":[426]},{"name":"MF_PD_ASF_METADATA_V8_VBRPEAK","features":[426]},{"name":"MF_PD_ASF_SCRIPT","features":[426]},{"name":"MF_PD_AUDIO_ENCODING_BITRATE","features":[426]},{"name":"MF_PD_AUDIO_ISVARIABLEBITRATE","features":[426]},{"name":"MF_PD_DURATION","features":[426]},{"name":"MF_PD_LAST_MODIFIED_TIME","features":[426]},{"name":"MF_PD_MIME_TYPE","features":[426]},{"name":"MF_PD_PLAYBACK_BOUNDARY_TIME","features":[426]},{"name":"MF_PD_PLAYBACK_ELEMENT_ID","features":[426]},{"name":"MF_PD_PMPHOST_CONTEXT","features":[426]},{"name":"MF_PD_PREFERRED_LANGUAGE","features":[426]},{"name":"MF_PD_SAMI_STYLELIST","features":[426]},{"name":"MF_PD_TOTAL_FILE_SIZE","features":[426]},{"name":"MF_PD_VIDEO_ENCODING_BITRATE","features":[426]},{"name":"MF_PLUGIN_CONTROL_POLICY","features":[426]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_ALL_PLUGINS","features":[426]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_APPROVED_PLUGINS","features":[426]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_WEB_PLUGINS","features":[426]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_WEB_PLUGINS_EDGEMODE","features":[426]},{"name":"MF_PMP_SERVER_CONTEXT","features":[426]},{"name":"MF_POLICY_ID","features":[426]},{"name":"MF_PREFERRED_SOURCE_URI","features":[426]},{"name":"MF_PROGRESSIVE_CODING_CONTENT","features":[426]},{"name":"MF_PROPERTY_HANDLER_SERVICE","features":[426]},{"name":"MF_Plugin_Type","features":[426]},{"name":"MF_Plugin_Type_MFT","features":[426]},{"name":"MF_Plugin_Type_MFT_MatchOutputType","features":[426]},{"name":"MF_Plugin_Type_MediaSource","features":[426]},{"name":"MF_Plugin_Type_Other","features":[426]},{"name":"MF_QUALITY_ADVISE_FLAGS","features":[426]},{"name":"MF_QUALITY_CANNOT_KEEP_UP","features":[426]},{"name":"MF_QUALITY_DROP_MODE","features":[426]},{"name":"MF_QUALITY_LEVEL","features":[426]},{"name":"MF_QUALITY_NORMAL","features":[426]},{"name":"MF_QUALITY_NORMAL_MINUS_1","features":[426]},{"name":"MF_QUALITY_NORMAL_MINUS_2","features":[426]},{"name":"MF_QUALITY_NORMAL_MINUS_3","features":[426]},{"name":"MF_QUALITY_NORMAL_MINUS_4","features":[426]},{"name":"MF_QUALITY_NORMAL_MINUS_5","features":[426]},{"name":"MF_QUALITY_NOTIFY_PROCESSING_LATENCY","features":[426]},{"name":"MF_QUALITY_NOTIFY_SAMPLE_LAG","features":[426]},{"name":"MF_QUALITY_SERVICES","features":[426]},{"name":"MF_QUATERNION","features":[426]},{"name":"MF_QUOTA_EXCEEDED_ERR","features":[426]},{"name":"MF_RATE_CONTROL_SERVICE","features":[426]},{"name":"MF_READWRITE_D3D_OPTIONAL","features":[426]},{"name":"MF_READWRITE_DISABLE_CONVERTERS","features":[426]},{"name":"MF_READWRITE_ENABLE_AUTOFINALIZE","features":[426]},{"name":"MF_READWRITE_ENABLE_HARDWARE_TRANSFORMS","features":[426]},{"name":"MF_READWRITE_MMCSS_CLASS","features":[426]},{"name":"MF_READWRITE_MMCSS_CLASS_AUDIO","features":[426]},{"name":"MF_READWRITE_MMCSS_PRIORITY","features":[426]},{"name":"MF_READWRITE_MMCSS_PRIORITY_AUDIO","features":[426]},{"name":"MF_REMOTE_PROXY","features":[426]},{"name":"MF_RESOLUTION_BYTESTREAM","features":[426]},{"name":"MF_RESOLUTION_CONTENT_DOES_NOT_HAVE_TO_MATCH_EXTENSION_OR_MIME_TYPE","features":[426]},{"name":"MF_RESOLUTION_DISABLE_LOCAL_PLUGINS","features":[426]},{"name":"MF_RESOLUTION_ENABLE_STORE_PLUGINS","features":[426]},{"name":"MF_RESOLUTION_FLAGS","features":[426]},{"name":"MF_RESOLUTION_KEEP_BYTE_STREAM_ALIVE_ON_FAIL","features":[426]},{"name":"MF_RESOLUTION_MEDIASOURCE","features":[426]},{"name":"MF_RESOLUTION_PLUGIN_CONTROL_POLICY_APPROVED_ONLY","features":[426]},{"name":"MF_RESOLUTION_PLUGIN_CONTROL_POLICY_WEB_ONLY","features":[426]},{"name":"MF_RESOLUTION_PLUGIN_CONTROL_POLICY_WEB_ONLY_EDGEMODE","features":[426]},{"name":"MF_RESOLUTION_READ","features":[426]},{"name":"MF_RESOLUTION_WRITE","features":[426]},{"name":"MF_SAMI_SERVICE","features":[426]},{"name":"MF_SAMPLEGRABBERSINK_IGNORE_CLOCK","features":[426]},{"name":"MF_SAMPLEGRABBERSINK_SAMPLE_TIME_OFFSET","features":[426]},{"name":"MF_SAMPLE_ENCRYPTION_PROTECTION_SCHEME_AES_CBC","features":[426]},{"name":"MF_SAMPLE_ENCRYPTION_PROTECTION_SCHEME_AES_CTR","features":[426]},{"name":"MF_SAMPLE_ENCRYPTION_PROTECTION_SCHEME_NONE","features":[426]},{"name":"MF_SA_AUDIO_ENDPOINT_AWARE","features":[426]},{"name":"MF_SA_BUFFERS_PER_SAMPLE","features":[426]},{"name":"MF_SA_D3D11_ALLOCATE_DISPLAYABLE_RESOURCES","features":[426]},{"name":"MF_SA_D3D11_ALLOW_DYNAMIC_YUV_TEXTURE","features":[426]},{"name":"MF_SA_D3D11_AWARE","features":[426]},{"name":"MF_SA_D3D11_BINDFLAGS","features":[426]},{"name":"MF_SA_D3D11_HW_PROTECTED","features":[426]},{"name":"MF_SA_D3D11_SHARED","features":[426]},{"name":"MF_SA_D3D11_SHARED_WITHOUT_MUTEX","features":[426]},{"name":"MF_SA_D3D11_USAGE","features":[426]},{"name":"MF_SA_D3D12_CLEAR_VALUE","features":[426]},{"name":"MF_SA_D3D12_HEAP_FLAGS","features":[426]},{"name":"MF_SA_D3D12_HEAP_TYPE","features":[426]},{"name":"MF_SA_D3D_AWARE","features":[426]},{"name":"MF_SA_MINIMUM_OUTPUT_SAMPLE_COUNT","features":[426]},{"name":"MF_SA_MINIMUM_OUTPUT_SAMPLE_COUNT_PROGRESSIVE","features":[426]},{"name":"MF_SA_REQUIRED_SAMPLE_COUNT","features":[426]},{"name":"MF_SA_REQUIRED_SAMPLE_COUNT_PROGRESSIVE","features":[426]},{"name":"MF_SDK_VERSION","features":[426]},{"name":"MF_SD_AMBISONICS_SAMPLE3D_DESCRIPTION","features":[426]},{"name":"MF_SD_ASF_EXTSTRMPROP_AVG_BUFFERSIZE","features":[426]},{"name":"MF_SD_ASF_EXTSTRMPROP_AVG_DATA_BITRATE","features":[426]},{"name":"MF_SD_ASF_EXTSTRMPROP_LANGUAGE_ID_INDEX","features":[426]},{"name":"MF_SD_ASF_EXTSTRMPROP_MAX_BUFFERSIZE","features":[426]},{"name":"MF_SD_ASF_EXTSTRMPROP_MAX_DATA_BITRATE","features":[426]},{"name":"MF_SD_ASF_METADATA_DEVICE_CONFORMANCE_TEMPLATE","features":[426]},{"name":"MF_SD_ASF_STREAMBITRATES_BITRATE","features":[426]},{"name":"MF_SD_AUDIO_ENCODER_DELAY","features":[426]},{"name":"MF_SD_AUDIO_ENCODER_PADDING","features":[426]},{"name":"MF_SD_LANGUAGE","features":[426]},{"name":"MF_SD_MEDIASOURCE_STATUS","features":[426]},{"name":"MF_SD_MUTUALLY_EXCLUSIVE","features":[426]},{"name":"MF_SD_PROTECTED","features":[426]},{"name":"MF_SD_SAMI_LANGUAGE","features":[426]},{"name":"MF_SD_STREAM_NAME","features":[426]},{"name":"MF_SD_VIDEO_SPHERICAL","features":[426]},{"name":"MF_SD_VIDEO_SPHERICAL_FORMAT","features":[426]},{"name":"MF_SD_VIDEO_SPHERICAL_INITIAL_VIEWDIRECTION","features":[426]},{"name":"MF_SERVICE_LOOKUP_ALL","features":[426]},{"name":"MF_SERVICE_LOOKUP_DOWNSTREAM","features":[426]},{"name":"MF_SERVICE_LOOKUP_DOWNSTREAM_DIRECT","features":[426]},{"name":"MF_SERVICE_LOOKUP_GLOBAL","features":[426]},{"name":"MF_SERVICE_LOOKUP_TYPE","features":[426]},{"name":"MF_SERVICE_LOOKUP_UPSTREAM","features":[426]},{"name":"MF_SERVICE_LOOKUP_UPSTREAM_DIRECT","features":[426]},{"name":"MF_SESSION_APPROX_EVENT_OCCURRENCE_TIME","features":[426]},{"name":"MF_SESSION_CONTENT_PROTECTION_MANAGER","features":[426]},{"name":"MF_SESSION_GLOBAL_TIME","features":[426]},{"name":"MF_SESSION_QUALITY_MANAGER","features":[426]},{"name":"MF_SESSION_REMOTE_SOURCE_MODE","features":[426]},{"name":"MF_SESSION_SERVER_CONTEXT","features":[426]},{"name":"MF_SESSION_TOPOLOADER","features":[426]},{"name":"MF_SHARING_ENGINE_CALLBACK","features":[426]},{"name":"MF_SHARING_ENGINE_EVENT","features":[426]},{"name":"MF_SHARING_ENGINE_EVENT_DISCONNECT","features":[426]},{"name":"MF_SHARING_ENGINE_EVENT_ERROR","features":[426]},{"name":"MF_SHARING_ENGINE_EVENT_LOCALRENDERINGENDED","features":[426]},{"name":"MF_SHARING_ENGINE_EVENT_LOCALRENDERINGSTARTED","features":[426]},{"name":"MF_SHARING_ENGINE_EVENT_STOPPED","features":[426]},{"name":"MF_SHARING_ENGINE_SHAREDRENDERER","features":[426]},{"name":"MF_SHUTDOWN_RENDERER_ON_ENGINE_SHUTDOWN","features":[426]},{"name":"MF_SINK_VIDEO_DISPLAY_ASPECT_RATIO_DENOMINATOR","features":[426]},{"name":"MF_SINK_VIDEO_DISPLAY_ASPECT_RATIO_NUMERATOR","features":[426]},{"name":"MF_SINK_VIDEO_NATIVE_HEIGHT","features":[426]},{"name":"MF_SINK_VIDEO_NATIVE_WIDTH","features":[426]},{"name":"MF_SINK_VIDEO_PTS","features":[426]},{"name":"MF_SINK_WRITER_ALL_STREAMS","features":[426]},{"name":"MF_SINK_WRITER_ASYNC_CALLBACK","features":[426]},{"name":"MF_SINK_WRITER_CONSTANTS","features":[426]},{"name":"MF_SINK_WRITER_D3D_MANAGER","features":[426]},{"name":"MF_SINK_WRITER_DISABLE_THROTTLING","features":[426]},{"name":"MF_SINK_WRITER_ENCODER_CONFIG","features":[426]},{"name":"MF_SINK_WRITER_INVALID_STREAM_INDEX","features":[426]},{"name":"MF_SINK_WRITER_MEDIASINK","features":[426]},{"name":"MF_SINK_WRITER_STATISTICS","features":[426]},{"name":"MF_SOURCE_PRESENTATION_PROVIDER_SERVICE","features":[426]},{"name":"MF_SOURCE_READERF_ALLEFFECTSREMOVED","features":[426]},{"name":"MF_SOURCE_READERF_CURRENTMEDIATYPECHANGED","features":[426]},{"name":"MF_SOURCE_READERF_ENDOFSTREAM","features":[426]},{"name":"MF_SOURCE_READERF_ERROR","features":[426]},{"name":"MF_SOURCE_READERF_NATIVEMEDIATYPECHANGED","features":[426]},{"name":"MF_SOURCE_READERF_NEWSTREAM","features":[426]},{"name":"MF_SOURCE_READERF_STREAMTICK","features":[426]},{"name":"MF_SOURCE_READER_ALL_STREAMS","features":[426]},{"name":"MF_SOURCE_READER_ANY_STREAM","features":[426]},{"name":"MF_SOURCE_READER_ASYNC_CALLBACK","features":[426]},{"name":"MF_SOURCE_READER_CONSTANTS","features":[426]},{"name":"MF_SOURCE_READER_CONTROLF_DRAIN","features":[426]},{"name":"MF_SOURCE_READER_CONTROL_FLAG","features":[426]},{"name":"MF_SOURCE_READER_CURRENT_TYPE_CONSTANTS","features":[426]},{"name":"MF_SOURCE_READER_CURRENT_TYPE_INDEX","features":[426]},{"name":"MF_SOURCE_READER_D3D11_BIND_FLAGS","features":[426]},{"name":"MF_SOURCE_READER_D3D_MANAGER","features":[426]},{"name":"MF_SOURCE_READER_DISABLE_CAMERA_PLUGINS","features":[426]},{"name":"MF_SOURCE_READER_DISABLE_DXVA","features":[426]},{"name":"MF_SOURCE_READER_DISCONNECT_MEDIASOURCE_ON_SHUTDOWN","features":[426]},{"name":"MF_SOURCE_READER_ENABLE_ADVANCED_VIDEO_PROCESSING","features":[426]},{"name":"MF_SOURCE_READER_ENABLE_TRANSCODE_ONLY_TRANSFORMS","features":[426]},{"name":"MF_SOURCE_READER_ENABLE_VIDEO_PROCESSING","features":[426]},{"name":"MF_SOURCE_READER_FIRST_AUDIO_STREAM","features":[426]},{"name":"MF_SOURCE_READER_FIRST_VIDEO_STREAM","features":[426]},{"name":"MF_SOURCE_READER_FLAG","features":[426]},{"name":"MF_SOURCE_READER_INVALID_STREAM_INDEX","features":[426]},{"name":"MF_SOURCE_READER_MEDIASOURCE","features":[426]},{"name":"MF_SOURCE_READER_MEDIASOURCE_CHARACTERISTICS","features":[426]},{"name":"MF_SOURCE_READER_MEDIASOURCE_CONFIG","features":[426]},{"name":"MF_SOURCE_STREAM_SUPPORTS_HW_CONNECTION","features":[426]},{"name":"MF_STANDARD_WORKQUEUE","features":[426]},{"name":"MF_STF_VERSION_DATE","features":[426]},{"name":"MF_STF_VERSION_INFO","features":[426]},{"name":"MF_STREAM_SINK_SUPPORTS_HW_CONNECTION","features":[426]},{"name":"MF_STREAM_SINK_SUPPORTS_ROTATION","features":[426]},{"name":"MF_STREAM_STATE","features":[426]},{"name":"MF_STREAM_STATE_PAUSED","features":[426]},{"name":"MF_STREAM_STATE_RUNNING","features":[426]},{"name":"MF_STREAM_STATE_STOPPED","features":[426]},{"name":"MF_ST_MEDIASOURCE_COLLECTION","features":[426]},{"name":"MF_SYNTAX_ERR","features":[426]},{"name":"MF_S_ACTIVATE_REPLACED","features":[426]},{"name":"MF_S_ASF_PARSEINPROGRESS","features":[426]},{"name":"MF_S_CLOCK_STOPPED","features":[426]},{"name":"MF_S_MULTIPLE_BEGIN","features":[426]},{"name":"MF_S_PE_TRUSTED","features":[426]},{"name":"MF_S_PROTECTION_NOT_REQUIRED","features":[426]},{"name":"MF_S_SEQUENCER_CONTEXT_CANCELED","features":[426]},{"name":"MF_S_SEQUENCER_SEGMENT_AT_END_OF_STREAM","features":[426]},{"name":"MF_S_SINK_NOT_FINALIZED","features":[426]},{"name":"MF_S_TRANSFORM_DO_NOT_PROPAGATE_EVENT","features":[426]},{"name":"MF_S_VIDEO_DISABLED_WITH_UNKNOWN_SOFTWARE_OUTPUT","features":[426]},{"name":"MF_S_WAIT_FOR_POLICY_SET","features":[426]},{"name":"MF_SampleProtectionSalt","features":[426]},{"name":"MF_TEST_SIGNED_COMPONENT_LOADING","features":[426]},{"name":"MF_TIMECODE_SERVICE","features":[426]},{"name":"MF_TIMED_TEXT_ALIGNMENT","features":[426]},{"name":"MF_TIMED_TEXT_ALIGNMENT_CENTER","features":[426]},{"name":"MF_TIMED_TEXT_ALIGNMENT_END","features":[426]},{"name":"MF_TIMED_TEXT_ALIGNMENT_START","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION_AFTER","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION_BEFORE","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION_OUTSIDE","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_AUTO","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_FILLEDCIRCLE","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_FILLEDDOT","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_FILLEDSESAME","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_NONE","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_OPENCIRCLE","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_OPENDOT","features":[426]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_OPENSESAME","features":[426]},{"name":"MF_TIMED_TEXT_CUE_EVENT","features":[426]},{"name":"MF_TIMED_TEXT_CUE_EVENT_ACTIVE","features":[426]},{"name":"MF_TIMED_TEXT_CUE_EVENT_CLEAR","features":[426]},{"name":"MF_TIMED_TEXT_CUE_EVENT_INACTIVE","features":[426]},{"name":"MF_TIMED_TEXT_DECORATION","features":[426]},{"name":"MF_TIMED_TEXT_DECORATION_LINE_THROUGH","features":[426]},{"name":"MF_TIMED_TEXT_DECORATION_NONE","features":[426]},{"name":"MF_TIMED_TEXT_DECORATION_OVERLINE","features":[426]},{"name":"MF_TIMED_TEXT_DECORATION_UNDERLINE","features":[426]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT","features":[426]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT_AFTER","features":[426]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT_BEFORE","features":[426]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT_CENTER","features":[426]},{"name":"MF_TIMED_TEXT_ERROR_CODE","features":[426]},{"name":"MF_TIMED_TEXT_ERROR_CODE_DATA_FORMAT","features":[426]},{"name":"MF_TIMED_TEXT_ERROR_CODE_FATAL","features":[426]},{"name":"MF_TIMED_TEXT_ERROR_CODE_INTERNAL","features":[426]},{"name":"MF_TIMED_TEXT_ERROR_CODE_NETWORK","features":[426]},{"name":"MF_TIMED_TEXT_ERROR_CODE_NOERROR","features":[426]},{"name":"MF_TIMED_TEXT_FONT_STYLE","features":[426]},{"name":"MF_TIMED_TEXT_FONT_STYLE_ITALIC","features":[426]},{"name":"MF_TIMED_TEXT_FONT_STYLE_NORMAL","features":[426]},{"name":"MF_TIMED_TEXT_FONT_STYLE_OBLIQUE","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_CENTER","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_END","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_SPACEAROUND","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_SPACEBETWEEN","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_START","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_WITHBASE","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_POSITION","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_POSITION_AFTER","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_POSITION_BEFORE","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_POSITION_OUTSIDE","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_AFTER","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_BEFORE","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_BOTH","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_NONE","features":[426]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_OUTSIDE","features":[426]},{"name":"MF_TIMED_TEXT_SCROLL_MODE","features":[426]},{"name":"MF_TIMED_TEXT_SCROLL_MODE_POP_ON","features":[426]},{"name":"MF_TIMED_TEXT_SCROLL_MODE_ROLL_UP","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_KIND","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_KIND_CAPTIONS","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_KIND_METADATA","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_KIND_SUBTITLES","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_KIND_UNKNOWN","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_ERROR","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_LOADED","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_LOADING","features":[426]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_NONE","features":[426]},{"name":"MF_TIMED_TEXT_UNIT_TYPE","features":[426]},{"name":"MF_TIMED_TEXT_UNIT_TYPE_PERCENTAGE","features":[426]},{"name":"MF_TIMED_TEXT_UNIT_TYPE_PIXELS","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE_LR","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE_LRTB","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE_RL","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE_RLTB","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE_TB","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE_TBLR","features":[426]},{"name":"MF_TIMED_TEXT_WRITING_MODE_TBRL","features":[426]},{"name":"MF_TIME_FORMAT_ENTRY_RELATIVE","features":[426]},{"name":"MF_TIME_FORMAT_SEGMENT_OFFSET","features":[426]},{"name":"MF_TOPOLOGY_DXVA_MODE","features":[426]},{"name":"MF_TOPOLOGY_DYNAMIC_CHANGE_NOT_ALLOWED","features":[426]},{"name":"MF_TOPOLOGY_ENABLE_XVP_FOR_PLAYBACK","features":[426]},{"name":"MF_TOPOLOGY_ENUMERATE_SOURCE_TYPES","features":[426]},{"name":"MF_TOPOLOGY_HARDWARE_MODE","features":[426]},{"name":"MF_TOPOLOGY_MAX","features":[426]},{"name":"MF_TOPOLOGY_NO_MARKIN_MARKOUT","features":[426]},{"name":"MF_TOPOLOGY_OUTPUT_NODE","features":[426]},{"name":"MF_TOPOLOGY_PLAYBACK_FRAMERATE","features":[426]},{"name":"MF_TOPOLOGY_PLAYBACK_MAX_DIMS","features":[426]},{"name":"MF_TOPOLOGY_PROJECTSTART","features":[426]},{"name":"MF_TOPOLOGY_PROJECTSTOP","features":[426]},{"name":"MF_TOPOLOGY_RESOLUTION_STATUS","features":[426]},{"name":"MF_TOPOLOGY_RESOLUTION_STATUS_FLAGS","features":[426]},{"name":"MF_TOPOLOGY_RESOLUTION_SUCCEEDED","features":[426]},{"name":"MF_TOPOLOGY_SOURCESTREAM_NODE","features":[426]},{"name":"MF_TOPOLOGY_START_TIME_ON_PRESENTATION_SWITCH","features":[426]},{"name":"MF_TOPOLOGY_STATIC_PLAYBACK_OPTIMIZATIONS","features":[426]},{"name":"MF_TOPOLOGY_TEE_NODE","features":[426]},{"name":"MF_TOPOLOGY_TRANSFORM_NODE","features":[426]},{"name":"MF_TOPOLOGY_TYPE","features":[426]},{"name":"MF_TOPONODE_ATTRIBUTE_EDITOR_SERVICE","features":[426]},{"name":"MF_TOPONODE_CONNECT_METHOD","features":[426]},{"name":"MF_TOPONODE_D3DAWARE","features":[426]},{"name":"MF_TOPONODE_DECODER","features":[426]},{"name":"MF_TOPONODE_DECRYPTOR","features":[426]},{"name":"MF_TOPONODE_DISABLE_PREROLL","features":[426]},{"name":"MF_TOPONODE_DISCARDABLE","features":[426]},{"name":"MF_TOPONODE_DRAIN","features":[426]},{"name":"MF_TOPONODE_DRAIN_ALWAYS","features":[426]},{"name":"MF_TOPONODE_DRAIN_DEFAULT","features":[426]},{"name":"MF_TOPONODE_DRAIN_MODE","features":[426]},{"name":"MF_TOPONODE_DRAIN_NEVER","features":[426]},{"name":"MF_TOPONODE_ERRORCODE","features":[426]},{"name":"MF_TOPONODE_ERROR_MAJORTYPE","features":[426]},{"name":"MF_TOPONODE_ERROR_SUBTYPE","features":[426]},{"name":"MF_TOPONODE_FLUSH","features":[426]},{"name":"MF_TOPONODE_FLUSH_ALWAYS","features":[426]},{"name":"MF_TOPONODE_FLUSH_MODE","features":[426]},{"name":"MF_TOPONODE_FLUSH_NEVER","features":[426]},{"name":"MF_TOPONODE_FLUSH_SEEK","features":[426]},{"name":"MF_TOPONODE_LOCKED","features":[426]},{"name":"MF_TOPONODE_MARKIN_HERE","features":[426]},{"name":"MF_TOPONODE_MARKOUT_HERE","features":[426]},{"name":"MF_TOPONODE_MEDIASTART","features":[426]},{"name":"MF_TOPONODE_MEDIASTOP","features":[426]},{"name":"MF_TOPONODE_NOSHUTDOWN_ON_REMOVE","features":[426]},{"name":"MF_TOPONODE_PRESENTATION_DESCRIPTOR","features":[426]},{"name":"MF_TOPONODE_PRIMARYOUTPUT","features":[426]},{"name":"MF_TOPONODE_RATELESS","features":[426]},{"name":"MF_TOPONODE_SEQUENCE_ELEMENTID","features":[426]},{"name":"MF_TOPONODE_SOURCE","features":[426]},{"name":"MF_TOPONODE_STREAMID","features":[426]},{"name":"MF_TOPONODE_STREAM_DESCRIPTOR","features":[426]},{"name":"MF_TOPONODE_TRANSFORM_OBJECTID","features":[426]},{"name":"MF_TOPONODE_WORKQUEUE_ID","features":[426]},{"name":"MF_TOPONODE_WORKQUEUE_ITEM_PRIORITY","features":[426]},{"name":"MF_TOPONODE_WORKQUEUE_MMCSS_CLASS","features":[426]},{"name":"MF_TOPONODE_WORKQUEUE_MMCSS_PRIORITY","features":[426]},{"name":"MF_TOPONODE_WORKQUEUE_MMCSS_TASKID","features":[426]},{"name":"MF_TOPOSTATUS","features":[426]},{"name":"MF_TOPOSTATUS_DYNAMIC_CHANGED","features":[426]},{"name":"MF_TOPOSTATUS_ENDED","features":[426]},{"name":"MF_TOPOSTATUS_INVALID","features":[426]},{"name":"MF_TOPOSTATUS_READY","features":[426]},{"name":"MF_TOPOSTATUS_SINK_SWITCHED","features":[426]},{"name":"MF_TOPOSTATUS_STARTED_SOURCE","features":[426]},{"name":"MF_TRANSCODE_ADJUST_PROFILE","features":[426]},{"name":"MF_TRANSCODE_ADJUST_PROFILE_DEFAULT","features":[426]},{"name":"MF_TRANSCODE_ADJUST_PROFILE_FLAGS","features":[426]},{"name":"MF_TRANSCODE_ADJUST_PROFILE_USE_SOURCE_ATTRIBUTES","features":[426]},{"name":"MF_TRANSCODE_CONTAINERTYPE","features":[426]},{"name":"MF_TRANSCODE_DONOT_INSERT_ENCODER","features":[426]},{"name":"MF_TRANSCODE_ENCODINGPROFILE","features":[426]},{"name":"MF_TRANSCODE_QUALITYVSSPEED","features":[426]},{"name":"MF_TRANSCODE_SINK_INFO","features":[426]},{"name":"MF_TRANSCODE_SKIP_METADATA_TRANSFER","features":[426]},{"name":"MF_TRANSCODE_TOPOLOGYMODE","features":[426]},{"name":"MF_TRANSCODE_TOPOLOGYMODE_FLAGS","features":[426]},{"name":"MF_TRANSCODE_TOPOLOGYMODE_HARDWARE_ALLOWED","features":[426]},{"name":"MF_TRANSCODE_TOPOLOGYMODE_SOFTWARE_ONLY","features":[426]},{"name":"MF_TRANSFORM_ASYNC","features":[426]},{"name":"MF_TRANSFORM_ASYNC_UNLOCK","features":[426]},{"name":"MF_TRANSFORM_CATEGORY_Attribute","features":[426]},{"name":"MF_TRANSFORM_FLAGS_Attribute","features":[426]},{"name":"MF_TYPE_ERR","features":[426]},{"name":"MF_UNKNOWN_DURATION","features":[426]},{"name":"MF_URL_TRUST_STATUS","features":[426]},{"name":"MF_USER_DATA_PAYLOAD","features":[426]},{"name":"MF_USER_EXTENDED_ATTRIBUTES","features":[426]},{"name":"MF_USER_MODE_COMPONENT_LOAD","features":[426]},{"name":"MF_VERSION","features":[426]},{"name":"MF_VIDEODSP_MODE","features":[426]},{"name":"MF_VIDEO_MAX_MB_PER_SEC","features":[426]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM","features":[426]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM_DEFAULT","features":[426]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM_MRF_CRF_444","features":[426]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM_TYPE","features":[426]},{"name":"MF_VIDEO_PROCESSOR_MIRROR","features":[426]},{"name":"MF_VIDEO_PROCESSOR_ROTATION","features":[426]},{"name":"MF_VIDEO_RENDERER_EFFECT_APP_SERVICE_NAME","features":[426]},{"name":"MF_VIDEO_SPHERICAL_VIEWDIRECTION","features":[426]},{"name":"MF_VIRTUALCAMERA_ASSOCIATED_CAMERA_SOURCES","features":[426]},{"name":"MF_VIRTUALCAMERA_CONFIGURATION_APP_PACKAGE_FAMILY_NAME","features":[426]},{"name":"MF_VIRTUALCAMERA_PROVIDE_ASSOCIATED_CAMERA_SOURCES","features":[426]},{"name":"MF_WINDOW_WORKQUEUE","features":[426]},{"name":"MF_WORKQUEUE_SERVICES","features":[426]},{"name":"MF_WRAPPED_BUFFER_SERVICE","features":[426]},{"name":"MF_WRAPPED_OBJECT","features":[426]},{"name":"MF_WRAPPED_SAMPLE_SERVICE","features":[426]},{"name":"MF_WVC1_PROG_SINGLE_SLICE_CONTENT","features":[426]},{"name":"MF_XVP_CALLER_ALLOCATES_OUTPUT","features":[426]},{"name":"MF_XVP_DISABLE_FRC","features":[426]},{"name":"MF_XVP_SAMPLE_LOCK_TIMEOUT","features":[426]},{"name":"MFaudioConstriction14_14","features":[426]},{"name":"MFaudioConstriction44_16","features":[426]},{"name":"MFaudioConstriction48_16","features":[426]},{"name":"MFaudioConstrictionMute","features":[426]},{"name":"MFaudioConstrictionOff","features":[426]},{"name":"MFllMulDiv","features":[426]},{"name":"MICARRAY_EXTERN_BEAM","features":[426]},{"name":"MICARRAY_FIXED_BEAM","features":[426]},{"name":"MICARRAY_SIMPLE_SUM","features":[426]},{"name":"MICARRAY_SINGLE_BEAM","features":[426]},{"name":"MICARRAY_SINGLE_CHAN","features":[426]},{"name":"MIC_ARRAY_MODE","features":[426]},{"name":"MIRROR_HORIZONTAL","features":[426]},{"name":"MIRROR_NONE","features":[426]},{"name":"MIRROR_VERTICAL","features":[426]},{"name":"MODE_NOT_SET","features":[426]},{"name":"MOVEREGION_INFO","features":[303,426]},{"name":"MOVE_RECT","features":[303,426]},{"name":"MP3ACMCodecWrapper","features":[426]},{"name":"MPEG1VIDEOINFO","features":[303,314,426]},{"name":"MPEG2VIDEOINFO","features":[303,314,426]},{"name":"MPEG2VIDEOINFO_FLAGS","features":[426]},{"name":"MR_AUDIO_POLICY_SERVICE","features":[426]},{"name":"MR_BUFFER_SERVICE","features":[426]},{"name":"MR_CAPTURE_POLICY_VOLUME_SERVICE","features":[426]},{"name":"MR_POLICY_VOLUME_SERVICE","features":[426]},{"name":"MR_STREAM_VOLUME_SERVICE","features":[426]},{"name":"MR_VIDEO_ACCELERATION_SERVICE","features":[426]},{"name":"MR_VIDEO_MIXER_SERVICE","features":[426]},{"name":"MR_VIDEO_RENDER_SERVICE","features":[426]},{"name":"MSAMRNBDecoder","features":[426]},{"name":"MSAMRNBEncoder","features":[426]},{"name":"MT_ARBITRARY_HEADER","features":[303,426]},{"name":"MT_CUSTOM_VIDEO_PRIMARIES","features":[426]},{"name":"MULawCodecWrapper","features":[426]},{"name":"OPENMODE_APPEND_IF_EXIST","features":[426]},{"name":"OPENMODE_DELETE_IF_EXIST","features":[426]},{"name":"OPENMODE_FAIL_IF_EXIST","features":[426]},{"name":"OPENMODE_FAIL_IF_NOT_EXIST","features":[426]},{"name":"OPENMODE_RESET_IF_EXIST","features":[426]},{"name":"OPMGetVideoOutputForTarget","features":[303,426]},{"name":"OPMGetVideoOutputsFromHMONITOR","features":[314,426]},{"name":"OPMGetVideoOutputsFromIDirect3DDevice9Object","features":[312,426]},{"name":"OPMXboxEnableHDCP","features":[426]},{"name":"OPMXboxGetHDCPStatus","features":[426]},{"name":"OPMXboxGetHDCPStatusAndType","features":[426]},{"name":"OPM_128_BIT_RANDOM_NUMBER_SIZE","features":[426]},{"name":"OPM_ACP_AND_CGMSA_SIGNALING","features":[426]},{"name":"OPM_ACP_LEVEL_ONE","features":[426]},{"name":"OPM_ACP_LEVEL_THREE","features":[426]},{"name":"OPM_ACP_LEVEL_TWO","features":[426]},{"name":"OPM_ACP_OFF","features":[426]},{"name":"OPM_ACP_PROTECTION_LEVEL","features":[426]},{"name":"OPM_ACTUAL_OUTPUT_FORMAT","features":[312,426]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_CENTER","features":[426]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_TOP","features":[426]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_CENTER","features":[426]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_TOP","features":[426]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_GT_16_BY_9_CENTER","features":[426]},{"name":"OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_16_BY_9_ANAMORPHIC","features":[426]},{"name":"OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3","features":[426]},{"name":"OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3_PROTECTED_CENTER","features":[426]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[426]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[426]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_INSIDE_OF_CHIPSET","features":[426]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_MASK","features":[426]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_NON_STANDARD","features":[426]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[426]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[426]},{"name":"OPM_BUS_TYPE","features":[426]},{"name":"OPM_BUS_TYPE_AGP","features":[426]},{"name":"OPM_BUS_TYPE_MASK","features":[426]},{"name":"OPM_BUS_TYPE_OTHER","features":[426]},{"name":"OPM_BUS_TYPE_PCI","features":[426]},{"name":"OPM_BUS_TYPE_PCIEXPRESS","features":[426]},{"name":"OPM_BUS_TYPE_PCIX","features":[426]},{"name":"OPM_CGMSA","features":[426]},{"name":"OPM_CGMSA_COPY_FREELY","features":[426]},{"name":"OPM_CGMSA_COPY_NEVER","features":[426]},{"name":"OPM_CGMSA_COPY_NO_MORE","features":[426]},{"name":"OPM_CGMSA_COPY_ONE_GENERATION","features":[426]},{"name":"OPM_CGMSA_OFF","features":[426]},{"name":"OPM_CGMSA_REDISTRIBUTION_CONTROL_REQUIRED","features":[426]},{"name":"OPM_CONFIGURE_PARAMETERS","features":[426]},{"name":"OPM_CONFIGURE_SETTING_DATA_SIZE","features":[426]},{"name":"OPM_CONNECTED_HDCP_DEVICE_INFORMATION","features":[426]},{"name":"OPM_CONNECTOR_TYPE","features":[426]},{"name":"OPM_CONNECTOR_TYPE_COMPONENT_VIDEO","features":[426]},{"name":"OPM_CONNECTOR_TYPE_COMPOSITE_VIDEO","features":[426]},{"name":"OPM_CONNECTOR_TYPE_DISPLAYPORT_EMBEDDED","features":[426]},{"name":"OPM_CONNECTOR_TYPE_DISPLAYPORT_EXTERNAL","features":[426]},{"name":"OPM_CONNECTOR_TYPE_DVI","features":[426]},{"name":"OPM_CONNECTOR_TYPE_D_JPN","features":[426]},{"name":"OPM_CONNECTOR_TYPE_HDMI","features":[426]},{"name":"OPM_CONNECTOR_TYPE_LVDS","features":[426]},{"name":"OPM_CONNECTOR_TYPE_MIRACAST","features":[426]},{"name":"OPM_CONNECTOR_TYPE_OTHER","features":[426]},{"name":"OPM_CONNECTOR_TYPE_RESERVED","features":[426]},{"name":"OPM_CONNECTOR_TYPE_SDI","features":[426]},{"name":"OPM_CONNECTOR_TYPE_SVIDEO","features":[426]},{"name":"OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[426]},{"name":"OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[426]},{"name":"OPM_CONNECTOR_TYPE_UDI_EMBEDDED","features":[426]},{"name":"OPM_CONNECTOR_TYPE_UDI_EXTERNAL","features":[426]},{"name":"OPM_CONNECTOR_TYPE_VGA","features":[426]},{"name":"OPM_COPP_COMPATIBLE_BUS_TYPE_INTEGRATED","features":[426]},{"name":"OPM_COPP_COMPATIBLE_CONNECTOR_TYPE_INTERNAL","features":[426]},{"name":"OPM_COPP_COMPATIBLE_GET_INFO_PARAMETERS","features":[426]},{"name":"OPM_DPCP_OFF","features":[426]},{"name":"OPM_DPCP_ON","features":[426]},{"name":"OPM_DPCP_PROTECTION_LEVEL","features":[426]},{"name":"OPM_DVI_CHARACTERISTIC","features":[426]},{"name":"OPM_DVI_CHARACTERISTIC_1_0","features":[426]},{"name":"OPM_DVI_CHARACTERISTIC_1_1_OR_ABOVE","features":[426]},{"name":"OPM_ENCRYPTED_INITIALIZATION_PARAMETERS","features":[426]},{"name":"OPM_ENCRYPTED_INITIALIZATION_PARAMETERS_SIZE","features":[426]},{"name":"OPM_GET_ACP_AND_CGMSA_SIGNALING","features":[426]},{"name":"OPM_GET_ACTUAL_OUTPUT_FORMAT","features":[426]},{"name":"OPM_GET_ACTUAL_PROTECTION_LEVEL","features":[426]},{"name":"OPM_GET_ADAPTER_BUS_TYPE","features":[426]},{"name":"OPM_GET_CODEC_INFO","features":[426]},{"name":"OPM_GET_CODEC_INFO_INFORMATION","features":[426]},{"name":"OPM_GET_CODEC_INFO_PARAMETERS","features":[426]},{"name":"OPM_GET_CONNECTED_HDCP_DEVICE_INFORMATION","features":[426]},{"name":"OPM_GET_CONNECTOR_TYPE","features":[426]},{"name":"OPM_GET_CURRENT_HDCP_SRM_VERSION","features":[426]},{"name":"OPM_GET_DVI_CHARACTERISTICS","features":[426]},{"name":"OPM_GET_INFORMATION_PARAMETERS_SIZE","features":[426]},{"name":"OPM_GET_INFO_PARAMETERS","features":[426]},{"name":"OPM_GET_OUTPUT_HARDWARE_PROTECTION_SUPPORT","features":[426]},{"name":"OPM_GET_OUTPUT_ID","features":[426]},{"name":"OPM_GET_SUPPORTED_PROTECTION_TYPES","features":[426]},{"name":"OPM_GET_VIRTUAL_PROTECTION_LEVEL","features":[426]},{"name":"OPM_HDCP_FLAGS","features":[426]},{"name":"OPM_HDCP_FLAG_NONE","features":[426]},{"name":"OPM_HDCP_FLAG_REPEATER","features":[426]},{"name":"OPM_HDCP_KEY_SELECTION_VECTOR","features":[426]},{"name":"OPM_HDCP_KEY_SELECTION_VECTOR_SIZE","features":[426]},{"name":"OPM_HDCP_OFF","features":[426]},{"name":"OPM_HDCP_ON","features":[426]},{"name":"OPM_HDCP_PROTECTION_LEVEL","features":[426]},{"name":"OPM_HDCP_STATUS","features":[426]},{"name":"OPM_HDCP_STATUS_OFF","features":[426]},{"name":"OPM_HDCP_STATUS_ON","features":[426]},{"name":"OPM_HDCP_TYPE","features":[426]},{"name":"OPM_HDCP_TYPE_0","features":[426]},{"name":"OPM_HDCP_TYPE_1","features":[426]},{"name":"OPM_IMAGE_ASPECT_RATIO_EN300294","features":[426]},{"name":"OPM_OMAC","features":[426]},{"name":"OPM_OMAC_SIZE","features":[426]},{"name":"OPM_OUTPUT_HARDWARE_PROTECTION","features":[426]},{"name":"OPM_OUTPUT_HARDWARE_PROTECTION_NOT_SUPPORTED","features":[426]},{"name":"OPM_OUTPUT_HARDWARE_PROTECTION_SUPPORTED","features":[426]},{"name":"OPM_OUTPUT_ID_DATA","features":[426]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_1125I","features":[426]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_525I","features":[426]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_525P","features":[426]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_750P","features":[426]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEA_1125I","features":[426]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEA_525P","features":[426]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEA_750P","features":[426]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEB_1125I","features":[426]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEB_525P","features":[426]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEB_750P","features":[426]},{"name":"OPM_PROTECTION_STANDARD_EIA608B_525","features":[426]},{"name":"OPM_PROTECTION_STANDARD_EN300294_625I","features":[426]},{"name":"OPM_PROTECTION_STANDARD_IEC61880_2_525I","features":[426]},{"name":"OPM_PROTECTION_STANDARD_IEC61880_525I","features":[426]},{"name":"OPM_PROTECTION_STANDARD_IEC62375_625P","features":[426]},{"name":"OPM_PROTECTION_STANDARD_NONE","features":[426]},{"name":"OPM_PROTECTION_STANDARD_OTHER","features":[426]},{"name":"OPM_PROTECTION_STANDARD_TYPE","features":[426]},{"name":"OPM_PROTECTION_TYPE","features":[426]},{"name":"OPM_PROTECTION_TYPE_ACP","features":[426]},{"name":"OPM_PROTECTION_TYPE_CGMSA","features":[426]},{"name":"OPM_PROTECTION_TYPE_COPP_COMPATIBLE_HDCP","features":[426]},{"name":"OPM_PROTECTION_TYPE_DPCP","features":[426]},{"name":"OPM_PROTECTION_TYPE_HDCP","features":[426]},{"name":"OPM_PROTECTION_TYPE_NONE","features":[426]},{"name":"OPM_PROTECTION_TYPE_OTHER","features":[426]},{"name":"OPM_PROTECTION_TYPE_SIZE","features":[426]},{"name":"OPM_PROTECTION_TYPE_TYPE_ENFORCEMENT_HDCP","features":[426]},{"name":"OPM_RANDOM_NUMBER","features":[426]},{"name":"OPM_REQUESTED_INFORMATION","features":[426]},{"name":"OPM_REQUESTED_INFORMATION_SIZE","features":[426]},{"name":"OPM_SET_ACP_AND_CGMSA_SIGNALING","features":[426]},{"name":"OPM_SET_ACP_AND_CGMSA_SIGNALING_PARAMETERS","features":[426]},{"name":"OPM_SET_HDCP_SRM","features":[426]},{"name":"OPM_SET_HDCP_SRM_PARAMETERS","features":[426]},{"name":"OPM_SET_PROTECTION_LEVEL","features":[426]},{"name":"OPM_SET_PROTECTION_LEVEL_ACCORDING_TO_CSS_DVD","features":[426]},{"name":"OPM_SET_PROTECTION_LEVEL_PARAMETERS","features":[426]},{"name":"OPM_STANDARD_INFORMATION","features":[426]},{"name":"OPM_STATUS","features":[426]},{"name":"OPM_STATUS_LINK_LOST","features":[426]},{"name":"OPM_STATUS_NORMAL","features":[426]},{"name":"OPM_STATUS_RENEGOTIATION_REQUIRED","features":[426]},{"name":"OPM_STATUS_REVOKED_HDCP_DEVICE_ATTACHED","features":[426]},{"name":"OPM_STATUS_TAMPERING_DETECTED","features":[426]},{"name":"OPM_TYPE","features":[426]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_OFF","features":[426]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_NO_TYPE_RESTRICTION","features":[426]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_TYPE1_RESTRICTION","features":[426]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_PROTECTION_LEVEL","features":[426]},{"name":"OPM_VIDEO_OUTPUT_SEMANTICS","features":[426]},{"name":"OPM_VOS_COPP_SEMANTICS","features":[426]},{"name":"OPM_VOS_OPM_INDIRECT_DISPLAY","features":[426]},{"name":"OPM_VOS_OPM_SEMANTICS","features":[426]},{"name":"OPTIBEAM_ARRAY_AND_AEC","features":[426]},{"name":"OPTIBEAM_ARRAY_ONLY","features":[426]},{"name":"PDXVAHDSW_CreateDevice","features":[303,312,426]},{"name":"PDXVAHDSW_CreateVideoProcessor","features":[303,426]},{"name":"PDXVAHDSW_DestroyDevice","features":[303,426]},{"name":"PDXVAHDSW_DestroyVideoProcessor","features":[303,426]},{"name":"PDXVAHDSW_GetVideoProcessBltStatePrivate","features":[303,426]},{"name":"PDXVAHDSW_GetVideoProcessStreamStatePrivate","features":[303,426]},{"name":"PDXVAHDSW_GetVideoProcessorCaps","features":[303,426]},{"name":"PDXVAHDSW_GetVideoProcessorCustomRates","features":[303,426]},{"name":"PDXVAHDSW_GetVideoProcessorDeviceCaps","features":[303,312,426]},{"name":"PDXVAHDSW_GetVideoProcessorFilterRange","features":[303,426]},{"name":"PDXVAHDSW_GetVideoProcessorInputFormats","features":[303,312,426]},{"name":"PDXVAHDSW_GetVideoProcessorOutputFormats","features":[303,312,426]},{"name":"PDXVAHDSW_Plugin","features":[426]},{"name":"PDXVAHDSW_ProposeVideoPrivateFormat","features":[303,312,426]},{"name":"PDXVAHDSW_SetVideoProcessBltState","features":[303,426]},{"name":"PDXVAHDSW_SetVideoProcessStreamState","features":[303,426]},{"name":"PDXVAHDSW_VideoProcessBltHD","features":[303,312,426]},{"name":"PDXVAHD_CreateDevice","features":[312,426]},{"name":"PEACTION_COPY","features":[426]},{"name":"PEACTION_EXPORT","features":[426]},{"name":"PEACTION_EXTRACT","features":[426]},{"name":"PEACTION_LAST","features":[426]},{"name":"PEACTION_NO","features":[426]},{"name":"PEACTION_PLAY","features":[426]},{"name":"PEACTION_RESERVED1","features":[426]},{"name":"PEACTION_RESERVED2","features":[426]},{"name":"PEACTION_RESERVED3","features":[426]},{"name":"PIN_CATEGORY_ANALOGVIDEOIN","features":[426]},{"name":"PIN_CATEGORY_CAPTURE","features":[426]},{"name":"PIN_CATEGORY_CC","features":[426]},{"name":"PIN_CATEGORY_EDS","features":[426]},{"name":"PIN_CATEGORY_NABTS","features":[426]},{"name":"PIN_CATEGORY_PREVIEW","features":[426]},{"name":"PIN_CATEGORY_STILL","features":[426]},{"name":"PIN_CATEGORY_TELETEXT","features":[426]},{"name":"PIN_CATEGORY_TIMECODE","features":[426]},{"name":"PIN_CATEGORY_VBI","features":[426]},{"name":"PIN_CATEGORY_VIDEOPORT","features":[426]},{"name":"PIN_CATEGORY_VIDEOPORT_VBI","features":[426]},{"name":"PLAYTO_SOURCE_AUDIO","features":[426]},{"name":"PLAYTO_SOURCE_CREATEFLAGS","features":[426]},{"name":"PLAYTO_SOURCE_IMAGE","features":[426]},{"name":"PLAYTO_SOURCE_NONE","features":[426]},{"name":"PLAYTO_SOURCE_PROTECTED","features":[426]},{"name":"PLAYTO_SOURCE_VIDEO","features":[426]},{"name":"PRESENTATION_CURRENT_POSITION","features":[426]},{"name":"REQUIRE_PROMPT","features":[426]},{"name":"REQUIRE_SAVE_SELECTED","features":[426]},{"name":"ROI_AREA","features":[303,426]},{"name":"ROTATION_NONE","features":[426]},{"name":"ROTATION_NORMAL","features":[426]},{"name":"SAMPLE_PROTECTION_VERSION","features":[426]},{"name":"SAMPLE_PROTECTION_VERSION_AES128CTR","features":[426]},{"name":"SAMPLE_PROTECTION_VERSION_BASIC_LOKI","features":[426]},{"name":"SAMPLE_PROTECTION_VERSION_NO","features":[426]},{"name":"SAMPLE_PROTECTION_VERSION_RC4","features":[426]},{"name":"SAMPLE_PROTECTION_VERSION_SCATTER","features":[426]},{"name":"SEEK_ORIGIN","features":[426]},{"name":"SENSORPROFILEID","features":[426]},{"name":"SHA_HASH_LEN","features":[426]},{"name":"SINGLE_CHANNEL_AEC","features":[426]},{"name":"SINGLE_CHANNEL_NSAGC","features":[426]},{"name":"STREAM_MEDIUM","features":[426]},{"name":"SYSFXUI_DONOTSHOW_BASSBOOST","features":[426]},{"name":"SYSFXUI_DONOTSHOW_BASSMANAGEMENT","features":[426]},{"name":"SYSFXUI_DONOTSHOW_CHANNELPHANTOMING","features":[426]},{"name":"SYSFXUI_DONOTSHOW_HEADPHONEVIRTUALIZATION","features":[426]},{"name":"SYSFXUI_DONOTSHOW_LOUDNESSEQUALIZATION","features":[426]},{"name":"SYSFXUI_DONOTSHOW_ROOMCORRECTION","features":[426]},{"name":"SYSFXUI_DONOTSHOW_SPEAKERFILLING","features":[426]},{"name":"SYSFXUI_DONOTSHOW_VIRTUALSURROUND","features":[426]},{"name":"SequencerTopologyFlags_Last","features":[426]},{"name":"TIME_FORMAT_BYTE","features":[426]},{"name":"TIME_FORMAT_FIELD","features":[426]},{"name":"TIME_FORMAT_FRAME","features":[426]},{"name":"TIME_FORMAT_MEDIA_TIME","features":[426]},{"name":"TIME_FORMAT_NONE","features":[426]},{"name":"TIME_FORMAT_SAMPLE","features":[426]},{"name":"TOC_DESCRIPTOR","features":[426]},{"name":"TOC_ENTRY_DESCRIPTOR","features":[426]},{"name":"TOC_ENTRY_MAX_TITLE_SIZE","features":[426]},{"name":"TOC_MAX_DESCRIPTION_SIZE","features":[426]},{"name":"TOC_POS_INHEADER","features":[426]},{"name":"TOC_POS_TOPLEVELOBJECT","features":[426]},{"name":"TOC_POS_TYPE","features":[426]},{"name":"UUID_UdriTagTables","features":[426]},{"name":"UUID_WMDRMTagTables","features":[426]},{"name":"VIDEOINFOHEADER","features":[303,314,426]},{"name":"VIDEOINFOHEADER2","features":[303,314,426]},{"name":"VIDEO_ZOOM_RECT","features":[426]},{"name":"VRHP_BIGROOM","features":[426]},{"name":"VRHP_CUSTUMIZEDROOM","features":[426]},{"name":"VRHP_MEDIUMROOM","features":[426]},{"name":"VRHP_SMALLROOM","features":[426]},{"name":"VorbisDecoderMFT","features":[426]},{"name":"WMAAECMA_E_NO_ACTIVE_RENDER_STREAM","features":[426]},{"name":"WMT_PROP_DATATYPE","features":[426]},{"name":"WMT_PROP_TYPE_BINARY","features":[426]},{"name":"WMT_PROP_TYPE_BOOL","features":[426]},{"name":"WMT_PROP_TYPE_DWORD","features":[426]},{"name":"WMT_PROP_TYPE_GUID","features":[426]},{"name":"WMT_PROP_TYPE_QWORD","features":[426]},{"name":"WMT_PROP_TYPE_STRING","features":[426]},{"name":"WMT_PROP_TYPE_WORD","features":[426]},{"name":"WMV_DYNAMIC_BITRATE","features":[426]},{"name":"WMV_DYNAMIC_COMPLEXITY","features":[426]},{"name":"WMV_DYNAMIC_FLAGS","features":[426]},{"name":"WMV_DYNAMIC_RESOLUTION","features":[426]},{"name":"WM_CODEC_ONEPASS_CBR","features":[426]},{"name":"WM_CODEC_ONEPASS_VBR","features":[426]},{"name":"WM_CODEC_TWOPASS_CBR","features":[426]},{"name":"WM_CODEC_TWOPASS_VBR_PEAKCONSTRAINED","features":[426]},{"name":"WM_CODEC_TWOPASS_VBR_UNCONSTRAINED","features":[426]},{"name":"_MFP_CREDENTIAL_FLAGS","features":[426]},{"name":"_MFP_MEDIAITEM_CHARACTERISTICS","features":[426]},{"name":"_MFT_INPUT_DATA_BUFFER_FLAGS","features":[426]},{"name":"_MFT_INPUT_STATUS_FLAGS","features":[426]},{"name":"_MFT_INPUT_STREAM_INFO_FLAGS","features":[426]},{"name":"_MFT_OUTPUT_DATA_BUFFER_FLAGS","features":[426]},{"name":"_MFT_OUTPUT_STATUS_FLAGS","features":[426]},{"name":"_MFT_OUTPUT_STREAM_INFO_FLAGS","features":[426]},{"name":"_MFT_PROCESS_OUTPUT_FLAGS","features":[426]},{"name":"_MFT_PROCESS_OUTPUT_STATUS","features":[426]},{"name":"_MFT_SET_TYPE_FLAGS","features":[426]},{"name":"_msoBegin","features":[426]},{"name":"_msoCurrent","features":[426]},{"name":"eAVAudioChannelConfig","features":[426]},{"name":"eAVAudioChannelConfig_BACK_CENTER","features":[426]},{"name":"eAVAudioChannelConfig_BACK_LEFT","features":[426]},{"name":"eAVAudioChannelConfig_BACK_RIGHT","features":[426]},{"name":"eAVAudioChannelConfig_FRONT_CENTER","features":[426]},{"name":"eAVAudioChannelConfig_FRONT_LEFT","features":[426]},{"name":"eAVAudioChannelConfig_FRONT_LEFT_OF_CENTER","features":[426]},{"name":"eAVAudioChannelConfig_FRONT_RIGHT","features":[426]},{"name":"eAVAudioChannelConfig_FRONT_RIGHT_OF_CENTER","features":[426]},{"name":"eAVAudioChannelConfig_LOW_FREQUENCY","features":[426]},{"name":"eAVAudioChannelConfig_SIDE_LEFT","features":[426]},{"name":"eAVAudioChannelConfig_SIDE_RIGHT","features":[426]},{"name":"eAVAudioChannelConfig_TOP_BACK_CENTER","features":[426]},{"name":"eAVAudioChannelConfig_TOP_BACK_LEFT","features":[426]},{"name":"eAVAudioChannelConfig_TOP_BACK_RIGHT","features":[426]},{"name":"eAVAudioChannelConfig_TOP_CENTER","features":[426]},{"name":"eAVAudioChannelConfig_TOP_FRONT_CENTER","features":[426]},{"name":"eAVAudioChannelConfig_TOP_FRONT_LEFT","features":[426]},{"name":"eAVAudioChannelConfig_TOP_FRONT_RIGHT","features":[426]},{"name":"eAVDDSurroundMode","features":[426]},{"name":"eAVDDSurroundMode_No","features":[426]},{"name":"eAVDDSurroundMode_NotIndicated","features":[426]},{"name":"eAVDDSurroundMode_Yes","features":[426]},{"name":"eAVDSPLoudnessEqualization","features":[426]},{"name":"eAVDSPLoudnessEqualization_AUTO","features":[426]},{"name":"eAVDSPLoudnessEqualization_OFF","features":[426]},{"name":"eAVDSPLoudnessEqualization_ON","features":[426]},{"name":"eAVDSPSpeakerFill","features":[426]},{"name":"eAVDSPSpeakerFill_AUTO","features":[426]},{"name":"eAVDSPSpeakerFill_OFF","features":[426]},{"name":"eAVDSPSpeakerFill_ON","features":[426]},{"name":"eAVDecAACDownmixMode","features":[426]},{"name":"eAVDecAACUseARIBDownmix","features":[426]},{"name":"eAVDecAACUseISODownmix","features":[426]},{"name":"eAVDecAudioDualMono","features":[426]},{"name":"eAVDecAudioDualMonoReproMode","features":[426]},{"name":"eAVDecAudioDualMonoReproMode_LEFT_MONO","features":[426]},{"name":"eAVDecAudioDualMonoReproMode_MIX_MONO","features":[426]},{"name":"eAVDecAudioDualMonoReproMode_RIGHT_MONO","features":[426]},{"name":"eAVDecAudioDualMonoReproMode_STEREO","features":[426]},{"name":"eAVDecAudioDualMono_IsDualMono","features":[426]},{"name":"eAVDecAudioDualMono_IsNotDualMono","features":[426]},{"name":"eAVDecAudioDualMono_UnSpecified","features":[426]},{"name":"eAVDecDDMatrixDecodingMode","features":[426]},{"name":"eAVDecDDMatrixDecodingMode_AUTO","features":[426]},{"name":"eAVDecDDMatrixDecodingMode_OFF","features":[426]},{"name":"eAVDecDDMatrixDecodingMode_ON","features":[426]},{"name":"eAVDecDDOperationalMode","features":[426]},{"name":"eAVDecDDOperationalMode_CUSTOM0","features":[426]},{"name":"eAVDecDDOperationalMode_CUSTOM1","features":[426]},{"name":"eAVDecDDOperationalMode_LINE","features":[426]},{"name":"eAVDecDDOperationalMode_NONE","features":[426]},{"name":"eAVDecDDOperationalMode_PORTABLE11","features":[426]},{"name":"eAVDecDDOperationalMode_PORTABLE14","features":[426]},{"name":"eAVDecDDOperationalMode_PORTABLE8","features":[426]},{"name":"eAVDecDDOperationalMode_RF","features":[426]},{"name":"eAVDecDDStereoDownMixMode","features":[426]},{"name":"eAVDecDDStereoDownMixMode_Auto","features":[426]},{"name":"eAVDecDDStereoDownMixMode_LoRo","features":[426]},{"name":"eAVDecDDStereoDownMixMode_LtRt","features":[426]},{"name":"eAVDecHEAACDynamicRangeControl","features":[426]},{"name":"eAVDecHEAACDynamicRangeControl_OFF","features":[426]},{"name":"eAVDecHEAACDynamicRangeControl_ON","features":[426]},{"name":"eAVDecVideoCodecType","features":[426]},{"name":"eAVDecVideoCodecType_H264","features":[426]},{"name":"eAVDecVideoCodecType_MPEG2","features":[426]},{"name":"eAVDecVideoCodecType_NOTPLAYING","features":[426]},{"name":"eAVDecVideoDXVABusEncryption","features":[426]},{"name":"eAVDecVideoDXVABusEncryption_AES","features":[426]},{"name":"eAVDecVideoDXVABusEncryption_NONE","features":[426]},{"name":"eAVDecVideoDXVABusEncryption_PRIVATE","features":[426]},{"name":"eAVDecVideoDXVAMode","features":[426]},{"name":"eAVDecVideoDXVAMode_IDCT","features":[426]},{"name":"eAVDecVideoDXVAMode_MC","features":[426]},{"name":"eAVDecVideoDXVAMode_NOTPLAYING","features":[426]},{"name":"eAVDecVideoDXVAMode_SW","features":[426]},{"name":"eAVDecVideoDXVAMode_VLD","features":[426]},{"name":"eAVDecVideoH264ErrorConcealment","features":[426]},{"name":"eAVDecVideoInputScanType","features":[426]},{"name":"eAVDecVideoInputScan_Interlaced_LowerFieldFirst","features":[426]},{"name":"eAVDecVideoInputScan_Interlaced_UpperFieldFirst","features":[426]},{"name":"eAVDecVideoInputScan_Progressive","features":[426]},{"name":"eAVDecVideoInputScan_Unknown","features":[426]},{"name":"eAVDecVideoMPEG2ErrorConcealment","features":[426]},{"name":"eAVDecVideoSWPowerLevel","features":[426]},{"name":"eAVDecVideoSWPowerLevel_Balanced","features":[426]},{"name":"eAVDecVideoSWPowerLevel_BatteryLife","features":[426]},{"name":"eAVDecVideoSWPowerLevel_VideoQuality","features":[426]},{"name":"eAVDecVideoSoftwareDeinterlaceMode","features":[426]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_BOBDeinterlacing","features":[426]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_NoDeinterlacing","features":[426]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_ProgressiveDeinterlacing","features":[426]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_SmartBOBDeinterlacing","features":[426]},{"name":"eAVEncAV1PictureType","features":[426]},{"name":"eAVEncAV1PictureType_Inter","features":[426]},{"name":"eAVEncAV1PictureType_Intra_Only","features":[426]},{"name":"eAVEncAV1PictureType_Key","features":[426]},{"name":"eAVEncAV1PictureType_Switch","features":[426]},{"name":"eAVEncAV1VLevel","features":[426]},{"name":"eAVEncAV1VLevel2","features":[426]},{"name":"eAVEncAV1VLevel2_1","features":[426]},{"name":"eAVEncAV1VLevel3","features":[426]},{"name":"eAVEncAV1VLevel3_1","features":[426]},{"name":"eAVEncAV1VLevel4","features":[426]},{"name":"eAVEncAV1VLevel4_1","features":[426]},{"name":"eAVEncAV1VLevel5","features":[426]},{"name":"eAVEncAV1VLevel5_1","features":[426]},{"name":"eAVEncAV1VLevel5_2","features":[426]},{"name":"eAVEncAV1VLevel5_3","features":[426]},{"name":"eAVEncAV1VLevel6","features":[426]},{"name":"eAVEncAV1VLevel6_1","features":[426]},{"name":"eAVEncAV1VLevel6_2","features":[426]},{"name":"eAVEncAV1VLevel6_3","features":[426]},{"name":"eAVEncAV1VProfile","features":[426]},{"name":"eAVEncAV1VProfile_High_444_10","features":[426]},{"name":"eAVEncAV1VProfile_High_444_8","features":[426]},{"name":"eAVEncAV1VProfile_Main_400_10","features":[426]},{"name":"eAVEncAV1VProfile_Main_400_8","features":[426]},{"name":"eAVEncAV1VProfile_Main_420_10","features":[426]},{"name":"eAVEncAV1VProfile_Main_420_8","features":[426]},{"name":"eAVEncAV1VProfile_Professional_400_12","features":[426]},{"name":"eAVEncAV1VProfile_Professional_420_12","features":[426]},{"name":"eAVEncAV1VProfile_Professional_422_10","features":[426]},{"name":"eAVEncAV1VProfile_Professional_422_12","features":[426]},{"name":"eAVEncAV1VProfile_Professional_422_8","features":[426]},{"name":"eAVEncAV1VProfile_Professional_444_12","features":[426]},{"name":"eAVEncAV1VProfile_unknown","features":[426]},{"name":"eAVEncAdaptiveMode","features":[426]},{"name":"eAVEncAdaptiveMode_FrameRate","features":[426]},{"name":"eAVEncAdaptiveMode_None","features":[426]},{"name":"eAVEncAdaptiveMode_Resolution","features":[426]},{"name":"eAVEncAudioDualMono","features":[426]},{"name":"eAVEncAudioDualMono_Off","features":[426]},{"name":"eAVEncAudioDualMono_On","features":[426]},{"name":"eAVEncAudioDualMono_SameAsInput","features":[426]},{"name":"eAVEncAudioInputContent","features":[426]},{"name":"eAVEncChromaEncodeMode","features":[426]},{"name":"eAVEncChromaEncodeMode_420","features":[426]},{"name":"eAVEncChromaEncodeMode_444","features":[426]},{"name":"eAVEncChromaEncodeMode_444_v2","features":[426]},{"name":"eAVEncCommonRateControlMode","features":[426]},{"name":"eAVEncCommonRateControlMode_CBR","features":[426]},{"name":"eAVEncCommonRateControlMode_GlobalLowDelayVBR","features":[426]},{"name":"eAVEncCommonRateControlMode_GlobalVBR","features":[426]},{"name":"eAVEncCommonRateControlMode_LowDelayVBR","features":[426]},{"name":"eAVEncCommonRateControlMode_PeakConstrainedVBR","features":[426]},{"name":"eAVEncCommonRateControlMode_Quality","features":[426]},{"name":"eAVEncCommonRateControlMode_UnconstrainedVBR","features":[426]},{"name":"eAVEncCommonStreamEndHandling","features":[426]},{"name":"eAVEncCommonStreamEndHandling_DiscardPartial","features":[426]},{"name":"eAVEncCommonStreamEndHandling_EnsureComplete","features":[426]},{"name":"eAVEncDDAtoDConverterType","features":[426]},{"name":"eAVEncDDAtoDConverterType_HDCD","features":[426]},{"name":"eAVEncDDAtoDConverterType_Standard","features":[426]},{"name":"eAVEncDDDynamicRangeCompressionControl","features":[426]},{"name":"eAVEncDDDynamicRangeCompressionControl_FilmLight","features":[426]},{"name":"eAVEncDDDynamicRangeCompressionControl_FilmStandard","features":[426]},{"name":"eAVEncDDDynamicRangeCompressionControl_MusicLight","features":[426]},{"name":"eAVEncDDDynamicRangeCompressionControl_MusicStandard","features":[426]},{"name":"eAVEncDDDynamicRangeCompressionControl_None","features":[426]},{"name":"eAVEncDDDynamicRangeCompressionControl_Speech","features":[426]},{"name":"eAVEncDDHeadphoneMode","features":[426]},{"name":"eAVEncDDHeadphoneMode_Encoded","features":[426]},{"name":"eAVEncDDHeadphoneMode_NotEncoded","features":[426]},{"name":"eAVEncDDHeadphoneMode_NotIndicated","features":[426]},{"name":"eAVEncDDPreferredStereoDownMixMode","features":[426]},{"name":"eAVEncDDPreferredStereoDownMixMode_LoRo","features":[426]},{"name":"eAVEncDDPreferredStereoDownMixMode_LtRt","features":[426]},{"name":"eAVEncDDProductionRoomType","features":[426]},{"name":"eAVEncDDProductionRoomType_Large","features":[426]},{"name":"eAVEncDDProductionRoomType_NotIndicated","features":[426]},{"name":"eAVEncDDProductionRoomType_Small","features":[426]},{"name":"eAVEncDDService","features":[426]},{"name":"eAVEncDDService_C","features":[426]},{"name":"eAVEncDDService_CM","features":[426]},{"name":"eAVEncDDService_D","features":[426]},{"name":"eAVEncDDService_E","features":[426]},{"name":"eAVEncDDService_HI","features":[426]},{"name":"eAVEncDDService_ME","features":[426]},{"name":"eAVEncDDService_VI","features":[426]},{"name":"eAVEncDDService_VO","features":[426]},{"name":"eAVEncDDSurroundExMode","features":[426]},{"name":"eAVEncDDSurroundExMode_No","features":[426]},{"name":"eAVEncDDSurroundExMode_NotIndicated","features":[426]},{"name":"eAVEncDDSurroundExMode_Yes","features":[426]},{"name":"eAVEncH263PictureType","features":[426]},{"name":"eAVEncH263PictureType_B","features":[426]},{"name":"eAVEncH263PictureType_I","features":[426]},{"name":"eAVEncH263PictureType_P","features":[426]},{"name":"eAVEncH263VLevel","features":[426]},{"name":"eAVEncH263VLevel1","features":[426]},{"name":"eAVEncH263VLevel2","features":[426]},{"name":"eAVEncH263VLevel3","features":[426]},{"name":"eAVEncH263VLevel4","features":[426]},{"name":"eAVEncH263VLevel4_5","features":[426]},{"name":"eAVEncH263VLevel5","features":[426]},{"name":"eAVEncH263VLevel6","features":[426]},{"name":"eAVEncH263VLevel7","features":[426]},{"name":"eAVEncH263VProfile","features":[426]},{"name":"eAVEncH263VProfile_Base","features":[426]},{"name":"eAVEncH263VProfile_CompatibilityV1","features":[426]},{"name":"eAVEncH263VProfile_CompatibilityV2","features":[426]},{"name":"eAVEncH263VProfile_HighCompression","features":[426]},{"name":"eAVEncH263VProfile_HighLatency","features":[426]},{"name":"eAVEncH263VProfile_Interlace","features":[426]},{"name":"eAVEncH263VProfile_Internet","features":[426]},{"name":"eAVEncH263VProfile_WirelessV2","features":[426]},{"name":"eAVEncH263VProfile_WirelessV3","features":[426]},{"name":"eAVEncH264PictureType","features":[426]},{"name":"eAVEncH264PictureType_B","features":[426]},{"name":"eAVEncH264PictureType_IDR","features":[426]},{"name":"eAVEncH264PictureType_P","features":[426]},{"name":"eAVEncH264VLevel","features":[426]},{"name":"eAVEncH264VLevel1","features":[426]},{"name":"eAVEncH264VLevel1_1","features":[426]},{"name":"eAVEncH264VLevel1_2","features":[426]},{"name":"eAVEncH264VLevel1_3","features":[426]},{"name":"eAVEncH264VLevel1_b","features":[426]},{"name":"eAVEncH264VLevel2","features":[426]},{"name":"eAVEncH264VLevel2_1","features":[426]},{"name":"eAVEncH264VLevel2_2","features":[426]},{"name":"eAVEncH264VLevel3","features":[426]},{"name":"eAVEncH264VLevel3_1","features":[426]},{"name":"eAVEncH264VLevel3_2","features":[426]},{"name":"eAVEncH264VLevel4","features":[426]},{"name":"eAVEncH264VLevel4_1","features":[426]},{"name":"eAVEncH264VLevel4_2","features":[426]},{"name":"eAVEncH264VLevel5","features":[426]},{"name":"eAVEncH264VLevel5_1","features":[426]},{"name":"eAVEncH264VLevel5_2","features":[426]},{"name":"eAVEncH264VProfile","features":[426]},{"name":"eAVEncH264VProfile_422","features":[426]},{"name":"eAVEncH264VProfile_444","features":[426]},{"name":"eAVEncH264VProfile_Base","features":[426]},{"name":"eAVEncH264VProfile_ConstrainedBase","features":[426]},{"name":"eAVEncH264VProfile_Extended","features":[426]},{"name":"eAVEncH264VProfile_High","features":[426]},{"name":"eAVEncH264VProfile_High10","features":[426]},{"name":"eAVEncH264VProfile_Main","features":[426]},{"name":"eAVEncH264VProfile_MultiviewHigh","features":[426]},{"name":"eAVEncH264VProfile_ScalableBase","features":[426]},{"name":"eAVEncH264VProfile_ScalableHigh","features":[426]},{"name":"eAVEncH264VProfile_Simple","features":[426]},{"name":"eAVEncH264VProfile_StereoHigh","features":[426]},{"name":"eAVEncH264VProfile_UCConstrainedHigh","features":[426]},{"name":"eAVEncH264VProfile_UCScalableConstrainedBase","features":[426]},{"name":"eAVEncH264VProfile_UCScalableConstrainedHigh","features":[426]},{"name":"eAVEncH264VProfile_unknown","features":[426]},{"name":"eAVEncH265VLevel","features":[426]},{"name":"eAVEncH265VLevel1","features":[426]},{"name":"eAVEncH265VLevel2","features":[426]},{"name":"eAVEncH265VLevel2_1","features":[426]},{"name":"eAVEncH265VLevel3","features":[426]},{"name":"eAVEncH265VLevel3_1","features":[426]},{"name":"eAVEncH265VLevel4","features":[426]},{"name":"eAVEncH265VLevel4_1","features":[426]},{"name":"eAVEncH265VLevel5","features":[426]},{"name":"eAVEncH265VLevel5_1","features":[426]},{"name":"eAVEncH265VLevel5_2","features":[426]},{"name":"eAVEncH265VLevel6","features":[426]},{"name":"eAVEncH265VLevel6_1","features":[426]},{"name":"eAVEncH265VLevel6_2","features":[426]},{"name":"eAVEncH265VProfile","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_420_10","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_420_12","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_420_8","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_422_10","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_422_12","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_444_10","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_444_12","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_444_16","features":[426]},{"name":"eAVEncH265VProfile_MainIntra_444_8","features":[426]},{"name":"eAVEncH265VProfile_MainStill_420_8","features":[426]},{"name":"eAVEncH265VProfile_MainStill_444_16","features":[426]},{"name":"eAVEncH265VProfile_MainStill_444_8","features":[426]},{"name":"eAVEncH265VProfile_Main_420_10","features":[426]},{"name":"eAVEncH265VProfile_Main_420_12","features":[426]},{"name":"eAVEncH265VProfile_Main_420_8","features":[426]},{"name":"eAVEncH265VProfile_Main_422_10","features":[426]},{"name":"eAVEncH265VProfile_Main_422_12","features":[426]},{"name":"eAVEncH265VProfile_Main_444_10","features":[426]},{"name":"eAVEncH265VProfile_Main_444_12","features":[426]},{"name":"eAVEncH265VProfile_Main_444_8","features":[426]},{"name":"eAVEncH265VProfile_Monochrome_12","features":[426]},{"name":"eAVEncH265VProfile_Monochrome_16","features":[426]},{"name":"eAVEncH265VProfile_unknown","features":[426]},{"name":"eAVEncInputVideoSystem","features":[426]},{"name":"eAVEncInputVideoSystem_Component","features":[426]},{"name":"eAVEncInputVideoSystem_HDV","features":[426]},{"name":"eAVEncInputVideoSystem_MAC","features":[426]},{"name":"eAVEncInputVideoSystem_NTSC","features":[426]},{"name":"eAVEncInputVideoSystem_PAL","features":[426]},{"name":"eAVEncInputVideoSystem_SECAM","features":[426]},{"name":"eAVEncInputVideoSystem_Unspecified","features":[426]},{"name":"eAVEncMPACodingMode","features":[426]},{"name":"eAVEncMPACodingMode_DualChannel","features":[426]},{"name":"eAVEncMPACodingMode_JointStereo","features":[426]},{"name":"eAVEncMPACodingMode_Mono","features":[426]},{"name":"eAVEncMPACodingMode_Stereo","features":[426]},{"name":"eAVEncMPACodingMode_Surround","features":[426]},{"name":"eAVEncMPAEmphasisType","features":[426]},{"name":"eAVEncMPAEmphasisType_50_15","features":[426]},{"name":"eAVEncMPAEmphasisType_CCITT_J17","features":[426]},{"name":"eAVEncMPAEmphasisType_None","features":[426]},{"name":"eAVEncMPAEmphasisType_Reserved","features":[426]},{"name":"eAVEncMPALayer","features":[426]},{"name":"eAVEncMPALayer_1","features":[426]},{"name":"eAVEncMPALayer_2","features":[426]},{"name":"eAVEncMPALayer_3","features":[426]},{"name":"eAVEncMPVFrameFieldMode","features":[426]},{"name":"eAVEncMPVFrameFieldMode_FieldMode","features":[426]},{"name":"eAVEncMPVFrameFieldMode_FrameMode","features":[426]},{"name":"eAVEncMPVIntraVLCTable","features":[426]},{"name":"eAVEncMPVIntraVLCTable_Alternate","features":[426]},{"name":"eAVEncMPVIntraVLCTable_Auto","features":[426]},{"name":"eAVEncMPVIntraVLCTable_MPEG1","features":[426]},{"name":"eAVEncMPVLevel","features":[426]},{"name":"eAVEncMPVLevel_High","features":[426]},{"name":"eAVEncMPVLevel_High1440","features":[426]},{"name":"eAVEncMPVLevel_Low","features":[426]},{"name":"eAVEncMPVLevel_Main","features":[426]},{"name":"eAVEncMPVProfile","features":[426]},{"name":"eAVEncMPVProfile_422","features":[426]},{"name":"eAVEncMPVProfile_High","features":[426]},{"name":"eAVEncMPVProfile_Main","features":[426]},{"name":"eAVEncMPVProfile_Simple","features":[426]},{"name":"eAVEncMPVProfile_unknown","features":[426]},{"name":"eAVEncMPVQScaleType","features":[426]},{"name":"eAVEncMPVQScaleType_Auto","features":[426]},{"name":"eAVEncMPVQScaleType_Linear","features":[426]},{"name":"eAVEncMPVQScaleType_NonLinear","features":[426]},{"name":"eAVEncMPVScanPattern","features":[426]},{"name":"eAVEncMPVScanPattern_AlternateScan","features":[426]},{"name":"eAVEncMPVScanPattern_Auto","features":[426]},{"name":"eAVEncMPVScanPattern_ZigZagScan","features":[426]},{"name":"eAVEncMPVSceneDetection","features":[426]},{"name":"eAVEncMPVSceneDetection_InsertIPicture","features":[426]},{"name":"eAVEncMPVSceneDetection_None","features":[426]},{"name":"eAVEncMPVSceneDetection_StartNewGOP","features":[426]},{"name":"eAVEncMPVSceneDetection_StartNewLocatableGOP","features":[426]},{"name":"eAVEncMuxOutput","features":[426]},{"name":"eAVEncMuxOutputAuto","features":[426]},{"name":"eAVEncMuxOutputPS","features":[426]},{"name":"eAVEncMuxOutputTS","features":[426]},{"name":"eAVEncVP9VProfile","features":[426]},{"name":"eAVEncVP9VProfile_420_10","features":[426]},{"name":"eAVEncVP9VProfile_420_12","features":[426]},{"name":"eAVEncVP9VProfile_420_8","features":[426]},{"name":"eAVEncVP9VProfile_unknown","features":[426]},{"name":"eAVEncVideoChromaResolution","features":[426]},{"name":"eAVEncVideoChromaResolution_411","features":[426]},{"name":"eAVEncVideoChromaResolution_420","features":[426]},{"name":"eAVEncVideoChromaResolution_422","features":[426]},{"name":"eAVEncVideoChromaResolution_444","features":[426]},{"name":"eAVEncVideoChromaResolution_SameAsSource","features":[426]},{"name":"eAVEncVideoChromaSubsampling","features":[426]},{"name":"eAVEncVideoChromaSubsamplingFormat_Horizontally_Cosited","features":[426]},{"name":"eAVEncVideoChromaSubsamplingFormat_ProgressiveChroma","features":[426]},{"name":"eAVEncVideoChromaSubsamplingFormat_SameAsSource","features":[426]},{"name":"eAVEncVideoChromaSubsamplingFormat_Vertically_AlignedChromaPlanes","features":[426]},{"name":"eAVEncVideoChromaSubsamplingFormat_Vertically_Cosited","features":[426]},{"name":"eAVEncVideoColorLighting","features":[426]},{"name":"eAVEncVideoColorLighting_Bright","features":[426]},{"name":"eAVEncVideoColorLighting_Dark","features":[426]},{"name":"eAVEncVideoColorLighting_Dim","features":[426]},{"name":"eAVEncVideoColorLighting_Office","features":[426]},{"name":"eAVEncVideoColorLighting_SameAsSource","features":[426]},{"name":"eAVEncVideoColorLighting_Unknown","features":[426]},{"name":"eAVEncVideoColorNominalRange","features":[426]},{"name":"eAVEncVideoColorNominalRange_0_255","features":[426]},{"name":"eAVEncVideoColorNominalRange_16_235","features":[426]},{"name":"eAVEncVideoColorNominalRange_48_208","features":[426]},{"name":"eAVEncVideoColorNominalRange_SameAsSource","features":[426]},{"name":"eAVEncVideoColorPrimaries","features":[426]},{"name":"eAVEncVideoColorPrimaries_BT470_2_SysBG","features":[426]},{"name":"eAVEncVideoColorPrimaries_BT470_2_SysM","features":[426]},{"name":"eAVEncVideoColorPrimaries_BT709","features":[426]},{"name":"eAVEncVideoColorPrimaries_EBU3231","features":[426]},{"name":"eAVEncVideoColorPrimaries_Reserved","features":[426]},{"name":"eAVEncVideoColorPrimaries_SMPTE170M","features":[426]},{"name":"eAVEncVideoColorPrimaries_SMPTE240M","features":[426]},{"name":"eAVEncVideoColorPrimaries_SMPTE_C","features":[426]},{"name":"eAVEncVideoColorPrimaries_SameAsSource","features":[426]},{"name":"eAVEncVideoColorTransferFunction","features":[426]},{"name":"eAVEncVideoColorTransferFunction_10","features":[426]},{"name":"eAVEncVideoColorTransferFunction_18","features":[426]},{"name":"eAVEncVideoColorTransferFunction_20","features":[426]},{"name":"eAVEncVideoColorTransferFunction_22","features":[426]},{"name":"eAVEncVideoColorTransferFunction_22_240M","features":[426]},{"name":"eAVEncVideoColorTransferFunction_22_709","features":[426]},{"name":"eAVEncVideoColorTransferFunction_22_8bit_sRGB","features":[426]},{"name":"eAVEncVideoColorTransferFunction_28","features":[426]},{"name":"eAVEncVideoColorTransferFunction_SameAsSource","features":[426]},{"name":"eAVEncVideoColorTransferMatrix","features":[426]},{"name":"eAVEncVideoColorTransferMatrix_BT601","features":[426]},{"name":"eAVEncVideoColorTransferMatrix_BT709","features":[426]},{"name":"eAVEncVideoColorTransferMatrix_SMPTE240M","features":[426]},{"name":"eAVEncVideoColorTransferMatrix_SameAsSource","features":[426]},{"name":"eAVEncVideoContentType","features":[426]},{"name":"eAVEncVideoContentType_FixedCameraAngle","features":[426]},{"name":"eAVEncVideoContentType_Unknown","features":[426]},{"name":"eAVEncVideoFilmContent","features":[426]},{"name":"eAVEncVideoFilmContent_FilmOnly","features":[426]},{"name":"eAVEncVideoFilmContent_Mixed","features":[426]},{"name":"eAVEncVideoFilmContent_VideoOnly","features":[426]},{"name":"eAVEncVideoOutputFrameRateConversion","features":[426]},{"name":"eAVEncVideoOutputFrameRateConversion_Alias","features":[426]},{"name":"eAVEncVideoOutputFrameRateConversion_Disable","features":[426]},{"name":"eAVEncVideoOutputFrameRateConversion_Enable","features":[426]},{"name":"eAVEncVideoOutputScanType","features":[426]},{"name":"eAVEncVideoOutputScan_Automatic","features":[426]},{"name":"eAVEncVideoOutputScan_Interlaced","features":[426]},{"name":"eAVEncVideoOutputScan_Progressive","features":[426]},{"name":"eAVEncVideoOutputScan_SameAsInput","features":[426]},{"name":"eAVEncVideoSourceScanType","features":[426]},{"name":"eAVEncVideoSourceScan_Automatic","features":[426]},{"name":"eAVEncVideoSourceScan_Interlaced","features":[426]},{"name":"eAVEncVideoSourceScan_Progressive","features":[426]},{"name":"eAVFastDecodeMode","features":[426]},{"name":"eAVScenarioInfo","features":[426]},{"name":"eAVScenarioInfo_Archive","features":[426]},{"name":"eAVScenarioInfo_CameraRecord","features":[426]},{"name":"eAVScenarioInfo_DisplayRemoting","features":[426]},{"name":"eAVScenarioInfo_DisplayRemotingWithFeatureMap","features":[426]},{"name":"eAVScenarioInfo_LiveStreaming","features":[426]},{"name":"eAVScenarioInfo_Unknown","features":[426]},{"name":"eAVScenarioInfo_VideoConference","features":[426]},{"name":"eAllocationTypeDynamic","features":[426]},{"name":"eAllocationTypeIgnore","features":[426]},{"name":"eAllocationTypePageable","features":[426]},{"name":"eAllocationTypeRT","features":[426]},{"name":"eErrorConcealmentOff","features":[426]},{"name":"eErrorConcealmentOn","features":[426]},{"name":"eErrorConcealmentTypeAdvanced","features":[426]},{"name":"eErrorConcealmentTypeBasic","features":[426]},{"name":"eErrorConcealmentTypeDXVASetBlack","features":[426]},{"name":"eErrorConcealmentTypeDrop","features":[426]},{"name":"eVideoDecodeCompliant","features":[426]},{"name":"eVideoDecodeDisableLF","features":[426]},{"name":"eVideoDecodeFastest","features":[426]},{"name":"eVideoDecodeOptimalLF","features":[426]},{"name":"eVideoEncoderDisplayContentType","features":[426]},{"name":"eVideoEncoderDisplayContent_FullScreenVideo","features":[426]},{"name":"eVideoEncoderDisplayContent_Unknown","features":[426]},{"name":"g_wszSpeechFormatCaps","features":[426]},{"name":"g_wszWMCPAudioVBRQuality","features":[426]},{"name":"g_wszWMCPAudioVBRSupported","features":[426]},{"name":"g_wszWMCPCodecName","features":[426]},{"name":"g_wszWMCPDefaultCrisp","features":[426]},{"name":"g_wszWMCPMaxPasses","features":[426]},{"name":"g_wszWMCPSupportedVBRModes","features":[426]},{"name":"msoBegin","features":[426]},{"name":"msoCurrent","features":[426]}],"437":[{"name":"CLSID_WMPMediaPluginRegistrar","features":[433]},{"name":"CLSID_WMPSkinManager","features":[433]},{"name":"CLSID_XFeedsManager","features":[433]},{"name":"DISPID_DELTA","features":[433]},{"name":"DISPID_FEEDENCLOSURE_AsyncDownload","features":[433]},{"name":"DISPID_FEEDENCLOSURE_CancelAsyncDownload","features":[433]},{"name":"DISPID_FEEDENCLOSURE_DownloadMimeType","features":[433]},{"name":"DISPID_FEEDENCLOSURE_DownloadStatus","features":[433]},{"name":"DISPID_FEEDENCLOSURE_DownloadUrl","features":[433]},{"name":"DISPID_FEEDENCLOSURE_LastDownloadError","features":[433]},{"name":"DISPID_FEEDENCLOSURE_Length","features":[433]},{"name":"DISPID_FEEDENCLOSURE_LocalPath","features":[433]},{"name":"DISPID_FEEDENCLOSURE_Parent","features":[433]},{"name":"DISPID_FEEDENCLOSURE_RemoveFile","features":[433]},{"name":"DISPID_FEEDENCLOSURE_SetFile","features":[433]},{"name":"DISPID_FEEDENCLOSURE_Type","features":[433]},{"name":"DISPID_FEEDENCLOSURE_Url","features":[433]},{"name":"DISPID_FEEDEVENTS_Error","features":[433]},{"name":"DISPID_FEEDEVENTS_FeedDeleted","features":[433]},{"name":"DISPID_FEEDEVENTS_FeedDownloadCompleted","features":[433]},{"name":"DISPID_FEEDEVENTS_FeedDownloading","features":[433]},{"name":"DISPID_FEEDEVENTS_FeedItemCountChanged","features":[433]},{"name":"DISPID_FEEDEVENTS_FeedMoved","features":[433]},{"name":"DISPID_FEEDEVENTS_FeedRenamed","features":[433]},{"name":"DISPID_FEEDEVENTS_FeedUrlChanged","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_Error","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedAdded","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedDeleted","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedDownloadCompleted","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedDownloading","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedItemCountChanged","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedMovedFrom","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedMovedTo","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedRenamed","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedUrlChanged","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderAdded","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderDeleted","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderItemCountChanged","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderMovedFrom","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderMovedTo","features":[433]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderRenamed","features":[433]},{"name":"DISPID_FEEDFOLDER_CreateFeed","features":[433]},{"name":"DISPID_FEEDFOLDER_CreateSubfolder","features":[433]},{"name":"DISPID_FEEDFOLDER_Delete","features":[433]},{"name":"DISPID_FEEDFOLDER_ExistsFeed","features":[433]},{"name":"DISPID_FEEDFOLDER_ExistsSubfolder","features":[433]},{"name":"DISPID_FEEDFOLDER_Feeds","features":[433]},{"name":"DISPID_FEEDFOLDER_GetFeed","features":[433]},{"name":"DISPID_FEEDFOLDER_GetSubfolder","features":[433]},{"name":"DISPID_FEEDFOLDER_GetWatcher","features":[433]},{"name":"DISPID_FEEDFOLDER_IsRoot","features":[433]},{"name":"DISPID_FEEDFOLDER_Move","features":[433]},{"name":"DISPID_FEEDFOLDER_Name","features":[433]},{"name":"DISPID_FEEDFOLDER_Parent","features":[433]},{"name":"DISPID_FEEDFOLDER_Path","features":[433]},{"name":"DISPID_FEEDFOLDER_Rename","features":[433]},{"name":"DISPID_FEEDFOLDER_Subfolders","features":[433]},{"name":"DISPID_FEEDFOLDER_TotalItemCount","features":[433]},{"name":"DISPID_FEEDFOLDER_TotalUnreadItemCount","features":[433]},{"name":"DISPID_FEEDITEM_Author","features":[433]},{"name":"DISPID_FEEDITEM_Comments","features":[433]},{"name":"DISPID_FEEDITEM_Delete","features":[433]},{"name":"DISPID_FEEDITEM_Description","features":[433]},{"name":"DISPID_FEEDITEM_DownloadUrl","features":[433]},{"name":"DISPID_FEEDITEM_EffectiveId","features":[433]},{"name":"DISPID_FEEDITEM_Enclosure","features":[433]},{"name":"DISPID_FEEDITEM_Guid","features":[433]},{"name":"DISPID_FEEDITEM_IsRead","features":[433]},{"name":"DISPID_FEEDITEM_LastDownloadTime","features":[433]},{"name":"DISPID_FEEDITEM_Link","features":[433]},{"name":"DISPID_FEEDITEM_LocalId","features":[433]},{"name":"DISPID_FEEDITEM_Modified","features":[433]},{"name":"DISPID_FEEDITEM_Parent","features":[433]},{"name":"DISPID_FEEDITEM_PubDate","features":[433]},{"name":"DISPID_FEEDITEM_Title","features":[433]},{"name":"DISPID_FEEDITEM_Xml","features":[433]},{"name":"DISPID_FEEDSENUM_Count","features":[433]},{"name":"DISPID_FEEDSENUM_Item","features":[433]},{"name":"DISPID_FEEDS_AsyncSyncAll","features":[433]},{"name":"DISPID_FEEDS_BackgroundSync","features":[433]},{"name":"DISPID_FEEDS_BackgroundSyncStatus","features":[433]},{"name":"DISPID_FEEDS_DefaultInterval","features":[433]},{"name":"DISPID_FEEDS_DeleteFeed","features":[433]},{"name":"DISPID_FEEDS_DeleteFolder","features":[433]},{"name":"DISPID_FEEDS_ExistsFeed","features":[433]},{"name":"DISPID_FEEDS_ExistsFolder","features":[433]},{"name":"DISPID_FEEDS_GetFeed","features":[433]},{"name":"DISPID_FEEDS_GetFeedByUrl","features":[433]},{"name":"DISPID_FEEDS_GetFolder","features":[433]},{"name":"DISPID_FEEDS_IsSubscribed","features":[433]},{"name":"DISPID_FEEDS_ItemCountLimit","features":[433]},{"name":"DISPID_FEEDS_Normalize","features":[433]},{"name":"DISPID_FEEDS_RootFolder","features":[433]},{"name":"DISPID_FEED_AsyncDownload","features":[433]},{"name":"DISPID_FEED_CancelAsyncDownload","features":[433]},{"name":"DISPID_FEED_ClearCredentials","features":[433]},{"name":"DISPID_FEED_Copyright","features":[433]},{"name":"DISPID_FEED_Delete","features":[433]},{"name":"DISPID_FEED_Description","features":[433]},{"name":"DISPID_FEED_Download","features":[433]},{"name":"DISPID_FEED_DownloadEnclosuresAutomatically","features":[433]},{"name":"DISPID_FEED_DownloadStatus","features":[433]},{"name":"DISPID_FEED_DownloadUrl","features":[433]},{"name":"DISPID_FEED_GetItem","features":[433]},{"name":"DISPID_FEED_GetItemByEffectiveId","features":[433]},{"name":"DISPID_FEED_GetWatcher","features":[433]},{"name":"DISPID_FEED_Image","features":[433]},{"name":"DISPID_FEED_Interval","features":[433]},{"name":"DISPID_FEED_IsList","features":[433]},{"name":"DISPID_FEED_ItemCount","features":[433]},{"name":"DISPID_FEED_Items","features":[433]},{"name":"DISPID_FEED_Language","features":[433]},{"name":"DISPID_FEED_LastBuildDate","features":[433]},{"name":"DISPID_FEED_LastDownloadError","features":[433]},{"name":"DISPID_FEED_LastDownloadTime","features":[433]},{"name":"DISPID_FEED_LastItemDownloadTime","features":[433]},{"name":"DISPID_FEED_LastWriteTime","features":[433]},{"name":"DISPID_FEED_Link","features":[433]},{"name":"DISPID_FEED_LocalEnclosurePath","features":[433]},{"name":"DISPID_FEED_LocalId","features":[433]},{"name":"DISPID_FEED_MarkAllItemsRead","features":[433]},{"name":"DISPID_FEED_MaxItemCount","features":[433]},{"name":"DISPID_FEED_Merge","features":[433]},{"name":"DISPID_FEED_Move","features":[433]},{"name":"DISPID_FEED_Name","features":[433]},{"name":"DISPID_FEED_Parent","features":[433]},{"name":"DISPID_FEED_Password","features":[433]},{"name":"DISPID_FEED_Path","features":[433]},{"name":"DISPID_FEED_PubDate","features":[433]},{"name":"DISPID_FEED_Rename","features":[433]},{"name":"DISPID_FEED_SetCredentials","features":[433]},{"name":"DISPID_FEED_SyncSetting","features":[433]},{"name":"DISPID_FEED_Title","features":[433]},{"name":"DISPID_FEED_Ttl","features":[433]},{"name":"DISPID_FEED_UnreadItemCount","features":[433]},{"name":"DISPID_FEED_Url","features":[433]},{"name":"DISPID_FEED_Username","features":[433]},{"name":"DISPID_FEED_Xml","features":[433]},{"name":"DISPID_WMPCDROMCOLLECTION_BASE","features":[433]},{"name":"DISPID_WMPCDROMCOLLECTION_COUNT","features":[433]},{"name":"DISPID_WMPCDROMCOLLECTION_GETBYDRIVESPECIFIER","features":[433]},{"name":"DISPID_WMPCDROMCOLLECTION_ITEM","features":[433]},{"name":"DISPID_WMPCDROMCOLLECTION_STARTMONITORINGCDROMS","features":[433]},{"name":"DISPID_WMPCDROMCOLLECTION_STOPMONITORINGCDROMS","features":[433]},{"name":"DISPID_WMPCDROM_BASE","features":[433]},{"name":"DISPID_WMPCDROM_DRIVESPECIFIER","features":[433]},{"name":"DISPID_WMPCDROM_EJECT","features":[433]},{"name":"DISPID_WMPCDROM_PLAYLIST","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETLANGCOUNT","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETLANGID","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETLANGNAME","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETSTYLECOUNT","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETSTYLENAME","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION_BASE","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION_CAPTIONINGID","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION_SAMIFILENAME","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION_SAMILANG","features":[433]},{"name":"DISPID_WMPCLOSEDCAPTION_SAMISTYLE","features":[433]},{"name":"DISPID_WMPCONTROLS2_STEP","features":[433]},{"name":"DISPID_WMPCONTROLS3_AUDIOLANGUAGECOUNT","features":[433]},{"name":"DISPID_WMPCONTROLS3_CURRENTAUDIOLANGUAGE","features":[433]},{"name":"DISPID_WMPCONTROLS3_CURRENTAUDIOLANGUAGEINDEX","features":[433]},{"name":"DISPID_WMPCONTROLS3_CURRENTPOSITIONTIMECODE","features":[433]},{"name":"DISPID_WMPCONTROLS3_GETAUDIOLANGUAGEDESC","features":[433]},{"name":"DISPID_WMPCONTROLS3_GETAUDIOLANGUAGEID","features":[433]},{"name":"DISPID_WMPCONTROLS3_GETLANGUAGENAME","features":[433]},{"name":"DISPID_WMPCONTROLSFAKE_TIMECOMPRESSION","features":[433]},{"name":"DISPID_WMPCONTROLS_BASE","features":[433]},{"name":"DISPID_WMPCONTROLS_CURRENTITEM","features":[433]},{"name":"DISPID_WMPCONTROLS_CURRENTMARKER","features":[433]},{"name":"DISPID_WMPCONTROLS_CURRENTPOSITION","features":[433]},{"name":"DISPID_WMPCONTROLS_CURRENTPOSITIONSTRING","features":[433]},{"name":"DISPID_WMPCONTROLS_FASTFORWARD","features":[433]},{"name":"DISPID_WMPCONTROLS_FASTREVERSE","features":[433]},{"name":"DISPID_WMPCONTROLS_ISAVAILABLE","features":[433]},{"name":"DISPID_WMPCONTROLS_NEXT","features":[433]},{"name":"DISPID_WMPCONTROLS_PAUSE","features":[433]},{"name":"DISPID_WMPCONTROLS_PLAY","features":[433]},{"name":"DISPID_WMPCONTROLS_PLAYITEM","features":[433]},{"name":"DISPID_WMPCONTROLS_PREVIOUS","features":[433]},{"name":"DISPID_WMPCONTROLS_STOP","features":[433]},{"name":"DISPID_WMPCORE2_BASE","features":[433]},{"name":"DISPID_WMPCORE2_DVD","features":[433]},{"name":"DISPID_WMPCORE3_NEWMEDIA","features":[433]},{"name":"DISPID_WMPCORE3_NEWPLAYLIST","features":[433]},{"name":"DISPID_WMPCOREEVENT_AUDIOLANGUAGECHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_BUFFERING","features":[433]},{"name":"DISPID_WMPCOREEVENT_CDROMMEDIACHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_CURRENTITEMCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_CURRENTMEDIAITEMAVAILABLE","features":[433]},{"name":"DISPID_WMPCOREEVENT_CURRENTPLAYLISTCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_CURRENTPLAYLISTITEMAVAILABLE","features":[433]},{"name":"DISPID_WMPCOREEVENT_DISCONNECT","features":[433]},{"name":"DISPID_WMPCOREEVENT_DOMAINCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_DURATIONUNITCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_ENDOFSTREAM","features":[433]},{"name":"DISPID_WMPCOREEVENT_ERROR","features":[433]},{"name":"DISPID_WMPCOREEVENT_MARKERHIT","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONATTRIBUTESTRINGADDED","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONATTRIBUTESTRINGCHANGED","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONATTRIBUTESTRINGREMOVED","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONCONTENTSCANADDEDITEM","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONCONTENTSCANPROGRESS","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONMEDIAADDED","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONMEDIAREMOVED","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONSEARCHCOMPLETE","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONSEARCHFOUNDITEM","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONSEARCHPROGRESS","features":[433]},{"name":"DISPID_WMPCOREEVENT_MEDIAERROR","features":[433]},{"name":"DISPID_WMPCOREEVENT_MODECHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_NEWSTREAM","features":[433]},{"name":"DISPID_WMPCOREEVENT_OPENPLAYLISTSWITCH","features":[433]},{"name":"DISPID_WMPCOREEVENT_OPENSTATECHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONPLAYLISTADDED","features":[433]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONPLAYLISTREMOVED","features":[433]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONPLAYLISTSETASDELETED","features":[433]},{"name":"DISPID_WMPCOREEVENT_PLAYSTATECHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_POSITIONCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_SCRIPTCOMMAND","features":[433]},{"name":"DISPID_WMPCOREEVENT_STATUSCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_STRINGCOLLECTIONCHANGE","features":[433]},{"name":"DISPID_WMPCOREEVENT_WARNING","features":[433]},{"name":"DISPID_WMPCORE_BASE","features":[433]},{"name":"DISPID_WMPCORE_CDROMCOLLECTION","features":[433]},{"name":"DISPID_WMPCORE_CLOSE","features":[433]},{"name":"DISPID_WMPCORE_CLOSEDCAPTION","features":[433]},{"name":"DISPID_WMPCORE_CONTROLS","features":[433]},{"name":"DISPID_WMPCORE_CURRENTMEDIA","features":[433]},{"name":"DISPID_WMPCORE_CURRENTPLAYLIST","features":[433]},{"name":"DISPID_WMPCORE_ERROR","features":[433]},{"name":"DISPID_WMPCORE_ISONLINE","features":[433]},{"name":"DISPID_WMPCORE_LAST","features":[433]},{"name":"DISPID_WMPCORE_LAUNCHURL","features":[433]},{"name":"DISPID_WMPCORE_MAX","features":[433]},{"name":"DISPID_WMPCORE_MEDIACOLLECTION","features":[433]},{"name":"DISPID_WMPCORE_MIN","features":[433]},{"name":"DISPID_WMPCORE_NETWORK","features":[433]},{"name":"DISPID_WMPCORE_OPENSTATE","features":[433]},{"name":"DISPID_WMPCORE_PLAYLISTCOLLECTION","features":[433]},{"name":"DISPID_WMPCORE_PLAYSTATE","features":[433]},{"name":"DISPID_WMPCORE_SETTINGS","features":[433]},{"name":"DISPID_WMPCORE_STATUS","features":[433]},{"name":"DISPID_WMPCORE_URL","features":[433]},{"name":"DISPID_WMPCORE_VERSIONINFO","features":[433]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_BASE","features":[433]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_CLEAR","features":[433]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_COUNT","features":[433]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_ID","features":[433]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_ITEM","features":[433]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_REMOVEITEM","features":[433]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_STARTDOWNLOAD","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM2_BASE","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM2_GETITEMINFO","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_BASE","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_CANCEL","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_DOWNLOADSTATE","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_PAUSE","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_PROGRESS","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_RESUME","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_SIZE","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_SOURCEURL","features":[433]},{"name":"DISPID_WMPDOWNLOADITEM_TYPE","features":[433]},{"name":"DISPID_WMPDOWNLOADMANAGER_BASE","features":[433]},{"name":"DISPID_WMPDOWNLOADMANAGER_CREATEDOWNLOADCOLLECTION","features":[433]},{"name":"DISPID_WMPDOWNLOADMANAGER_GETDOWNLOADCOLLECTION","features":[433]},{"name":"DISPID_WMPDVD_BACK","features":[433]},{"name":"DISPID_WMPDVD_BASE","features":[433]},{"name":"DISPID_WMPDVD_DOMAIN","features":[433]},{"name":"DISPID_WMPDVD_ISAVAILABLE","features":[433]},{"name":"DISPID_WMPDVD_RESUME","features":[433]},{"name":"DISPID_WMPDVD_TITLEMENU","features":[433]},{"name":"DISPID_WMPDVD_TOPMENU","features":[433]},{"name":"DISPID_WMPERRORITEM2_CONDITION","features":[433]},{"name":"DISPID_WMPERRORITEM_BASE","features":[433]},{"name":"DISPID_WMPERRORITEM_CUSTOMURL","features":[433]},{"name":"DISPID_WMPERRORITEM_ERRORCODE","features":[433]},{"name":"DISPID_WMPERRORITEM_ERRORCONTEXT","features":[433]},{"name":"DISPID_WMPERRORITEM_ERRORDESCRIPTION","features":[433]},{"name":"DISPID_WMPERRORITEM_REMEDY","features":[433]},{"name":"DISPID_WMPERROR_BASE","features":[433]},{"name":"DISPID_WMPERROR_CLEARERRORQUEUE","features":[433]},{"name":"DISPID_WMPERROR_ERRORCOUNT","features":[433]},{"name":"DISPID_WMPERROR_ITEM","features":[433]},{"name":"DISPID_WMPERROR_WEBHELP","features":[433]},{"name":"DISPID_WMPMEDIA2_ERROR","features":[433]},{"name":"DISPID_WMPMEDIA3_GETATTRIBUTECOUNTBYTYPE","features":[433]},{"name":"DISPID_WMPMEDIA3_GETITEMINFOBYTYPE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION2_BASE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION2_CREATEQUERY","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION2_GETBYATTRANDMEDIATYPE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION2_GETPLAYLISTBYQUERY","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION2_GETSTRINGCOLLBYQUERY","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_ADD","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_BASE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_FREEZECOLLECTIONCHANGE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETALL","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETATTRIBUTESTRINGCOLLECTION","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYALBUM","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYATTRIBUTE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYAUTHOR","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYGENRE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYNAME","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYQUERYDESCRIPTION","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_GETMEDIAATOM","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_ISDELETED","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_NEWQUERY","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_POSTCOLLECTIONCHANGE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_REMOVE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_SETDELETED","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_STARTCONTENTSCAN","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_STARTMONITORING","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_STARTSEARCH","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_STOPCONTENTSCAN","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_STOPMONITORING","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_STOPSEARCH","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_UNFREEZECOLLECTIONCHANGE","features":[433]},{"name":"DISPID_WMPMEDIACOLLECTION_UPDATEMETADATA","features":[433]},{"name":"DISPID_WMPMEDIA_ATTRIBUTECOUNT","features":[433]},{"name":"DISPID_WMPMEDIA_BASE","features":[433]},{"name":"DISPID_WMPMEDIA_DURATION","features":[433]},{"name":"DISPID_WMPMEDIA_DURATIONSTRING","features":[433]},{"name":"DISPID_WMPMEDIA_GETATTRIBUTENAME","features":[433]},{"name":"DISPID_WMPMEDIA_GETITEMINFO","features":[433]},{"name":"DISPID_WMPMEDIA_GETITEMINFOBYATOM","features":[433]},{"name":"DISPID_WMPMEDIA_GETMARKERNAME","features":[433]},{"name":"DISPID_WMPMEDIA_GETMARKERTIME","features":[433]},{"name":"DISPID_WMPMEDIA_IMAGESOURCEHEIGHT","features":[433]},{"name":"DISPID_WMPMEDIA_IMAGESOURCEWIDTH","features":[433]},{"name":"DISPID_WMPMEDIA_ISIDENTICAL","features":[433]},{"name":"DISPID_WMPMEDIA_ISMEMBEROF","features":[433]},{"name":"DISPID_WMPMEDIA_ISREADONLYITEM","features":[433]},{"name":"DISPID_WMPMEDIA_MARKERCOUNT","features":[433]},{"name":"DISPID_WMPMEDIA_NAME","features":[433]},{"name":"DISPID_WMPMEDIA_SETITEMINFO","features":[433]},{"name":"DISPID_WMPMEDIA_SOURCEURL","features":[433]},{"name":"DISPID_WMPMETADATA_BASE","features":[433]},{"name":"DISPID_WMPMETADATA_PICTURE_DESCRIPTION","features":[433]},{"name":"DISPID_WMPMETADATA_PICTURE_MIMETYPE","features":[433]},{"name":"DISPID_WMPMETADATA_PICTURE_PICTURETYPE","features":[433]},{"name":"DISPID_WMPMETADATA_PICTURE_URL","features":[433]},{"name":"DISPID_WMPMETADATA_TEXT_DESCRIPTION","features":[433]},{"name":"DISPID_WMPMETADATA_TEXT_TEXT","features":[433]},{"name":"DISPID_WMPNETWORK_BANDWIDTH","features":[433]},{"name":"DISPID_WMPNETWORK_BASE","features":[433]},{"name":"DISPID_WMPNETWORK_BITRATE","features":[433]},{"name":"DISPID_WMPNETWORK_BUFFERINGCOUNT","features":[433]},{"name":"DISPID_WMPNETWORK_BUFFERINGPROGRESS","features":[433]},{"name":"DISPID_WMPNETWORK_BUFFERINGTIME","features":[433]},{"name":"DISPID_WMPNETWORK_DOWNLOADPROGRESS","features":[433]},{"name":"DISPID_WMPNETWORK_ENCODEDFRAMERATE","features":[433]},{"name":"DISPID_WMPNETWORK_FRAMERATE","features":[433]},{"name":"DISPID_WMPNETWORK_FRAMESSKIPPED","features":[433]},{"name":"DISPID_WMPNETWORK_GETPROXYBYPASSFORLOCAL","features":[433]},{"name":"DISPID_WMPNETWORK_GETPROXYEXCEPTIONLIST","features":[433]},{"name":"DISPID_WMPNETWORK_GETPROXYNAME","features":[433]},{"name":"DISPID_WMPNETWORK_GETPROXYPORT","features":[433]},{"name":"DISPID_WMPNETWORK_GETPROXYSETTINGS","features":[433]},{"name":"DISPID_WMPNETWORK_LOSTPACKETS","features":[433]},{"name":"DISPID_WMPNETWORK_MAXBANDWIDTH","features":[433]},{"name":"DISPID_WMPNETWORK_MAXBITRATE","features":[433]},{"name":"DISPID_WMPNETWORK_RECEIVEDPACKETS","features":[433]},{"name":"DISPID_WMPNETWORK_RECEPTIONQUALITY","features":[433]},{"name":"DISPID_WMPNETWORK_RECOVEREDPACKETS","features":[433]},{"name":"DISPID_WMPNETWORK_SETPROXYBYPASSFORLOCAL","features":[433]},{"name":"DISPID_WMPNETWORK_SETPROXYEXCEPTIONLIST","features":[433]},{"name":"DISPID_WMPNETWORK_SETPROXYNAME","features":[433]},{"name":"DISPID_WMPNETWORK_SETPROXYPORT","features":[433]},{"name":"DISPID_WMPNETWORK_SETPROXYSETTINGS","features":[433]},{"name":"DISPID_WMPNETWORK_SOURCEPROTOCOL","features":[433]},{"name":"DISPID_WMPOCX2_BASE","features":[433]},{"name":"DISPID_WMPOCX2_STRETCHTOFIT","features":[433]},{"name":"DISPID_WMPOCX2_WINDOWLESSVIDEO","features":[433]},{"name":"DISPID_WMPOCX4_ISREMOTE","features":[433]},{"name":"DISPID_WMPOCX4_OPENPLAYER","features":[433]},{"name":"DISPID_WMPOCX4_PLAYERAPPLICATION","features":[433]},{"name":"DISPID_WMPOCXEVENT_CDROMBURNERROR","features":[433]},{"name":"DISPID_WMPOCXEVENT_CDROMBURNMEDIAERROR","features":[433]},{"name":"DISPID_WMPOCXEVENT_CDROMBURNSTATECHANGE","features":[433]},{"name":"DISPID_WMPOCXEVENT_CDROMRIPMEDIAERROR","features":[433]},{"name":"DISPID_WMPOCXEVENT_CDROMRIPSTATECHANGE","features":[433]},{"name":"DISPID_WMPOCXEVENT_CLICK","features":[433]},{"name":"DISPID_WMPOCXEVENT_CREATEPARTNERSHIPCOMPLETE","features":[433]},{"name":"DISPID_WMPOCXEVENT_DEVICECONNECT","features":[433]},{"name":"DISPID_WMPOCXEVENT_DEVICEDISCONNECT","features":[433]},{"name":"DISPID_WMPOCXEVENT_DEVICEESTIMATION","features":[433]},{"name":"DISPID_WMPOCXEVENT_DEVICESTATUSCHANGE","features":[433]},{"name":"DISPID_WMPOCXEVENT_DEVICESYNCERROR","features":[433]},{"name":"DISPID_WMPOCXEVENT_DEVICESYNCSTATECHANGE","features":[433]},{"name":"DISPID_WMPOCXEVENT_DOUBLECLICK","features":[433]},{"name":"DISPID_WMPOCXEVENT_FOLDERSCANSTATECHANGE","features":[433]},{"name":"DISPID_WMPOCXEVENT_KEYDOWN","features":[433]},{"name":"DISPID_WMPOCXEVENT_KEYPRESS","features":[433]},{"name":"DISPID_WMPOCXEVENT_KEYUP","features":[433]},{"name":"DISPID_WMPOCXEVENT_LIBRARYCONNECT","features":[433]},{"name":"DISPID_WMPOCXEVENT_LIBRARYDISCONNECT","features":[433]},{"name":"DISPID_WMPOCXEVENT_MOUSEDOWN","features":[433]},{"name":"DISPID_WMPOCXEVENT_MOUSEMOVE","features":[433]},{"name":"DISPID_WMPOCXEVENT_MOUSEUP","features":[433]},{"name":"DISPID_WMPOCXEVENT_PLAYERDOCKEDSTATECHANGE","features":[433]},{"name":"DISPID_WMPOCXEVENT_PLAYERRECONNECT","features":[433]},{"name":"DISPID_WMPOCXEVENT_SWITCHEDTOCONTROL","features":[433]},{"name":"DISPID_WMPOCXEVENT_SWITCHEDTOPLAYERAPPLICATION","features":[433]},{"name":"DISPID_WMPOCX_BASE","features":[433]},{"name":"DISPID_WMPOCX_ENABLECONTEXTMENU","features":[433]},{"name":"DISPID_WMPOCX_ENABLED","features":[433]},{"name":"DISPID_WMPOCX_FULLSCREEN","features":[433]},{"name":"DISPID_WMPOCX_LAST","features":[433]},{"name":"DISPID_WMPOCX_TRANSPARENTATSTART","features":[433]},{"name":"DISPID_WMPOCX_UIMODE","features":[433]},{"name":"DISPID_WMPPLAYERAPP_BASE","features":[433]},{"name":"DISPID_WMPPLAYERAPP_HASDISPLAY","features":[433]},{"name":"DISPID_WMPPLAYERAPP_PLAYERDOCKED","features":[433]},{"name":"DISPID_WMPPLAYERAPP_REMOTESTATUS","features":[433]},{"name":"DISPID_WMPPLAYERAPP_SWITCHTOCONTROL","features":[433]},{"name":"DISPID_WMPPLAYERAPP_SWITCHTOPLAYERAPPLICATION","features":[433]},{"name":"DISPID_WMPPLAYLISTARRAY_BASE","features":[433]},{"name":"DISPID_WMPPLAYLISTARRAY_COUNT","features":[433]},{"name":"DISPID_WMPPLAYLISTARRAY_ITEM","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_BASE","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_GETALL","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_GETBYNAME","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_GETBYQUERYDESCRIPTION","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_IMPORTPLAYLIST","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_ISDELETED","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_NEWPLAYLIST","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_NEWQUERY","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_REMOVE","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_SETDELETED","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_STARTMONITORING","features":[433]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_STOPMONITORING","features":[433]},{"name":"DISPID_WMPPLAYLIST_APPENDITEM","features":[433]},{"name":"DISPID_WMPPLAYLIST_ATTRIBUTECOUNT","features":[433]},{"name":"DISPID_WMPPLAYLIST_ATTRIBUTENAME","features":[433]},{"name":"DISPID_WMPPLAYLIST_BASE","features":[433]},{"name":"DISPID_WMPPLAYLIST_CLEAR","features":[433]},{"name":"DISPID_WMPPLAYLIST_COUNT","features":[433]},{"name":"DISPID_WMPPLAYLIST_GETITEMINFO","features":[433]},{"name":"DISPID_WMPPLAYLIST_INSERTITEM","features":[433]},{"name":"DISPID_WMPPLAYLIST_ISIDENTICAL","features":[433]},{"name":"DISPID_WMPPLAYLIST_ITEM","features":[433]},{"name":"DISPID_WMPPLAYLIST_MOVEITEM","features":[433]},{"name":"DISPID_WMPPLAYLIST_NAME","features":[433]},{"name":"DISPID_WMPPLAYLIST_REMOVEITEM","features":[433]},{"name":"DISPID_WMPPLAYLIST_SETITEMINFO","features":[433]},{"name":"DISPID_WMPQUERY_ADDCONDITION","features":[433]},{"name":"DISPID_WMPQUERY_BASE","features":[433]},{"name":"DISPID_WMPQUERY_BEGINNEXTGROUP","features":[433]},{"name":"DISPID_WMPSETTINGS2_DEFAULTAUDIOLANGUAGE","features":[433]},{"name":"DISPID_WMPSETTINGS2_LIBRARYACCESSRIGHTS","features":[433]},{"name":"DISPID_WMPSETTINGS2_REQUESTLIBRARYACCESSRIGHTS","features":[433]},{"name":"DISPID_WMPSETTINGS_AUTOSTART","features":[433]},{"name":"DISPID_WMPSETTINGS_BALANCE","features":[433]},{"name":"DISPID_WMPSETTINGS_BASE","features":[433]},{"name":"DISPID_WMPSETTINGS_BASEURL","features":[433]},{"name":"DISPID_WMPSETTINGS_DEFAULTFRAME","features":[433]},{"name":"DISPID_WMPSETTINGS_ENABLEERRORDIALOGS","features":[433]},{"name":"DISPID_WMPSETTINGS_GETMODE","features":[433]},{"name":"DISPID_WMPSETTINGS_INVOKEURLS","features":[433]},{"name":"DISPID_WMPSETTINGS_ISAVAILABLE","features":[433]},{"name":"DISPID_WMPSETTINGS_MUTE","features":[433]},{"name":"DISPID_WMPSETTINGS_PLAYCOUNT","features":[433]},{"name":"DISPID_WMPSETTINGS_RATE","features":[433]},{"name":"DISPID_WMPSETTINGS_SETMODE","features":[433]},{"name":"DISPID_WMPSETTINGS_VOLUME","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION2_BASE","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION2_GETATTRCOUNTBYTYPE","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION2_GETITEMINFO","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION2_GETITEMINFOBYTYPE","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION2_ISIDENTICAL","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION_BASE","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION_COUNT","features":[433]},{"name":"DISPID_WMPSTRINGCOLLECTION_ITEM","features":[433]},{"name":"EFFECT2_FULLSCREENEXCLUSIVE","features":[433]},{"name":"EFFECT_CANGOFULLSCREEN","features":[433]},{"name":"EFFECT_HASPROPERTYPAGE","features":[433]},{"name":"EFFECT_VARIABLEFREQSTEP","features":[433]},{"name":"EFFECT_WINDOWEDONLY","features":[433]},{"name":"FBSA_DISABLE","features":[433]},{"name":"FBSA_ENABLE","features":[433]},{"name":"FBSA_RUNNOW","features":[433]},{"name":"FBSS_DISABLED","features":[433]},{"name":"FBSS_ENABLED","features":[433]},{"name":"FDE_ACCESS_DENIED","features":[433]},{"name":"FDE_AUTH_FAILED","features":[433]},{"name":"FDE_BACKGROUND_DOWNLOAD_DISABLED","features":[433]},{"name":"FDE_CANCELED","features":[433]},{"name":"FDE_DOWNLOAD_BLOCKED","features":[433]},{"name":"FDE_DOWNLOAD_FAILED","features":[433]},{"name":"FDE_DOWNLOAD_SIZE_LIMIT_EXCEEDED","features":[433]},{"name":"FDE_INVALID_AUTH","features":[433]},{"name":"FDE_INVALID_FEED_FORMAT","features":[433]},{"name":"FDE_NONE","features":[433]},{"name":"FDE_NORMALIZATION_FAILED","features":[433]},{"name":"FDE_NOT_EXIST","features":[433]},{"name":"FDE_PERSISTENCE_FAILED","features":[433]},{"name":"FDE_UNSUPPORTED_AUTH","features":[433]},{"name":"FDE_UNSUPPORTED_DTD","features":[433]},{"name":"FDE_UNSUPPORTED_MSXML","features":[433]},{"name":"FDS_DOWNLOADED","features":[433]},{"name":"FDS_DOWNLOADING","features":[433]},{"name":"FDS_DOWNLOAD_FAILED","features":[433]},{"name":"FDS_NONE","features":[433]},{"name":"FDS_PENDING","features":[433]},{"name":"FEC_E_DOWNLOADSIZELIMITEXCEEDED","features":[433]},{"name":"FEC_E_ERRORBASE","features":[433]},{"name":"FEC_E_INVALIDMSXMLPROPERTY","features":[433]},{"name":"FEEDS_BACKGROUNDSYNC_ACTION","features":[433]},{"name":"FEEDS_BACKGROUNDSYNC_STATUS","features":[433]},{"name":"FEEDS_DOWNLOAD_ERROR","features":[433]},{"name":"FEEDS_DOWNLOAD_STATUS","features":[433]},{"name":"FEEDS_ERROR_CODE","features":[433]},{"name":"FEEDS_EVENTS_ITEM_COUNT_FLAGS","features":[433]},{"name":"FEEDS_EVENTS_MASK","features":[433]},{"name":"FEEDS_EVENTS_SCOPE","features":[433]},{"name":"FEEDS_SYNC_SETTING","features":[433]},{"name":"FEEDS_XML_FILTER_FLAGS","features":[433]},{"name":"FEEDS_XML_INCLUDE_FLAGS","features":[433]},{"name":"FEEDS_XML_SORT_ORDER","features":[433]},{"name":"FEEDS_XML_SORT_PROPERTY","features":[433]},{"name":"FEICF_READ_ITEM_COUNT_CHANGED","features":[433]},{"name":"FEICF_UNREAD_ITEM_COUNT_CHANGED","features":[433]},{"name":"FEM_FEEDEVENTS","features":[433]},{"name":"FEM_FOLDEREVENTS","features":[433]},{"name":"FES_ALL","features":[433]},{"name":"FES_SELF_AND_CHILDREN_ONLY","features":[433]},{"name":"FES_SELF_ONLY","features":[433]},{"name":"FSS_DEFAULT","features":[433]},{"name":"FSS_INTERVAL","features":[433]},{"name":"FSS_MANUAL","features":[433]},{"name":"FSS_SUGGESTED","features":[433]},{"name":"FXFF_ALL","features":[433]},{"name":"FXFF_READ","features":[433]},{"name":"FXFF_UNREAD","features":[433]},{"name":"FXIF_CF_EXTENSIONS","features":[433]},{"name":"FXIF_NONE","features":[433]},{"name":"FXSO_ASCENDING","features":[433]},{"name":"FXSO_DESCENDING","features":[433]},{"name":"FXSO_NONE","features":[433]},{"name":"FXSP_DOWNLOADTIME","features":[433]},{"name":"FXSP_NONE","features":[433]},{"name":"FXSP_PUBDATE","features":[433]},{"name":"FeedFolderWatcher","features":[433]},{"name":"FeedWatcher","features":[433]},{"name":"FeedsManager","features":[433]},{"name":"IFeed","features":[433,354]},{"name":"IFeed2","features":[433,354]},{"name":"IFeedEnclosure","features":[433,354]},{"name":"IFeedEvents","features":[433,354]},{"name":"IFeedFolder","features":[433,354]},{"name":"IFeedFolderEvents","features":[433,354]},{"name":"IFeedItem","features":[433,354]},{"name":"IFeedItem2","features":[433,354]},{"name":"IFeedsEnum","features":[433,354]},{"name":"IFeedsManager","features":[433,354]},{"name":"IOCTL_WMP_DEVICE_CAN_SYNC","features":[433]},{"name":"IOCTL_WMP_METADATA_ROUND_TRIP","features":[433]},{"name":"IWMPAudioRenderConfig","features":[433]},{"name":"IWMPCdrom","features":[433,354]},{"name":"IWMPCdromBurn","features":[433]},{"name":"IWMPCdromCollection","features":[433,354]},{"name":"IWMPCdromRip","features":[433]},{"name":"IWMPClosedCaption","features":[433,354]},{"name":"IWMPClosedCaption2","features":[433,354]},{"name":"IWMPContentContainer","features":[433]},{"name":"IWMPContentContainerList","features":[433]},{"name":"IWMPContentPartner","features":[433]},{"name":"IWMPContentPartnerCallback","features":[433]},{"name":"IWMPControls","features":[433,354]},{"name":"IWMPControls2","features":[433,354]},{"name":"IWMPControls3","features":[433,354]},{"name":"IWMPConvert","features":[433]},{"name":"IWMPCore","features":[433,354]},{"name":"IWMPCore2","features":[433,354]},{"name":"IWMPCore3","features":[433,354]},{"name":"IWMPDVD","features":[433,354]},{"name":"IWMPDownloadCollection","features":[433,354]},{"name":"IWMPDownloadItem","features":[433,354]},{"name":"IWMPDownloadItem2","features":[433,354]},{"name":"IWMPDownloadManager","features":[433,354]},{"name":"IWMPEffects","features":[433]},{"name":"IWMPEffects2","features":[433]},{"name":"IWMPError","features":[433,354]},{"name":"IWMPErrorItem","features":[433,354]},{"name":"IWMPErrorItem2","features":[433,354]},{"name":"IWMPEvents","features":[433]},{"name":"IWMPEvents2","features":[433]},{"name":"IWMPEvents3","features":[433]},{"name":"IWMPEvents4","features":[433]},{"name":"IWMPFolderMonitorServices","features":[433]},{"name":"IWMPGraphCreation","features":[433]},{"name":"IWMPLibrary","features":[433]},{"name":"IWMPLibrary2","features":[433]},{"name":"IWMPLibraryServices","features":[433]},{"name":"IWMPLibrarySharingServices","features":[433]},{"name":"IWMPMedia","features":[433,354]},{"name":"IWMPMedia2","features":[433,354]},{"name":"IWMPMedia3","features":[433,354]},{"name":"IWMPMediaCollection","features":[433,354]},{"name":"IWMPMediaCollection2","features":[433,354]},{"name":"IWMPMediaPluginRegistrar","features":[433]},{"name":"IWMPMetadataPicture","features":[433,354]},{"name":"IWMPMetadataText","features":[433,354]},{"name":"IWMPNetwork","features":[433,354]},{"name":"IWMPNodeRealEstate","features":[433]},{"name":"IWMPNodeRealEstateHost","features":[433]},{"name":"IWMPNodeWindowed","features":[433]},{"name":"IWMPNodeWindowedHost","features":[433]},{"name":"IWMPNodeWindowless","features":[433]},{"name":"IWMPNodeWindowlessHost","features":[433]},{"name":"IWMPPlayer","features":[433,354]},{"name":"IWMPPlayer2","features":[433,354]},{"name":"IWMPPlayer3","features":[433,354]},{"name":"IWMPPlayer4","features":[433,354]},{"name":"IWMPPlayerApplication","features":[433,354]},{"name":"IWMPPlayerServices","features":[433]},{"name":"IWMPPlayerServices2","features":[433]},{"name":"IWMPPlaylist","features":[433,354]},{"name":"IWMPPlaylistArray","features":[433,354]},{"name":"IWMPPlaylistCollection","features":[433,354]},{"name":"IWMPPlugin","features":[433]},{"name":"IWMPPluginEnable","features":[433]},{"name":"IWMPPluginUI","features":[433]},{"name":"IWMPQuery","features":[433,354]},{"name":"IWMPRemoteMediaServices","features":[433]},{"name":"IWMPRenderConfig","features":[433]},{"name":"IWMPServices","features":[433]},{"name":"IWMPSettings","features":[433,354]},{"name":"IWMPSettings2","features":[433,354]},{"name":"IWMPSkinManager","features":[433]},{"name":"IWMPStringCollection","features":[433,354]},{"name":"IWMPStringCollection2","features":[433,354]},{"name":"IWMPSubscriptionService","features":[433]},{"name":"IWMPSubscriptionService2","features":[433]},{"name":"IWMPSubscriptionServiceCallback","features":[433]},{"name":"IWMPSyncDevice","features":[433]},{"name":"IWMPSyncDevice2","features":[433]},{"name":"IWMPSyncDevice3","features":[433]},{"name":"IWMPSyncServices","features":[433]},{"name":"IWMPTranscodePolicy","features":[433]},{"name":"IWMPUserEventSink","features":[433]},{"name":"IWMPVideoRenderConfig","features":[433]},{"name":"IWMPWindowMessageSink","features":[433]},{"name":"IXFeed","features":[433]},{"name":"IXFeed2","features":[433]},{"name":"IXFeedEnclosure","features":[433]},{"name":"IXFeedEvents","features":[433]},{"name":"IXFeedFolder","features":[433]},{"name":"IXFeedFolderEvents","features":[433]},{"name":"IXFeedItem","features":[433]},{"name":"IXFeedItem2","features":[433]},{"name":"IXFeedsEnum","features":[433]},{"name":"IXFeedsManager","features":[433]},{"name":"PLUGIN_ALL_MEDIASENDTO","features":[433]},{"name":"PLUGIN_ALL_PLAYLISTSENDTO","features":[433]},{"name":"PLUGIN_FLAGS_ACCEPTSMEDIA","features":[433]},{"name":"PLUGIN_FLAGS_ACCEPTSPLAYLISTS","features":[433]},{"name":"PLUGIN_FLAGS_HASPRESETS","features":[433]},{"name":"PLUGIN_FLAGS_HASPROPERTYPAGE","features":[433]},{"name":"PLUGIN_FLAGS_HIDDEN","features":[433]},{"name":"PLUGIN_FLAGS_INSTALLAUTORUN","features":[433]},{"name":"PLUGIN_FLAGS_LAUNCHPROPERTYPAGE","features":[433]},{"name":"PLUGIN_INSTALLREGKEY","features":[433]},{"name":"PLUGIN_INSTALLREGKEY_CAPABILITIES","features":[433]},{"name":"PLUGIN_INSTALLREGKEY_DESCRIPTION","features":[433]},{"name":"PLUGIN_INSTALLREGKEY_FRIENDLYNAME","features":[433]},{"name":"PLUGIN_INSTALLREGKEY_UNINSTALL","features":[433]},{"name":"PLUGIN_MISC_CURRENTPRESET","features":[433]},{"name":"PLUGIN_MISC_PRESETCOUNT","features":[433]},{"name":"PLUGIN_MISC_PRESETNAMES","features":[433]},{"name":"PLUGIN_MISC_QUERYDESTROY","features":[433]},{"name":"PLUGIN_SEPARATEWINDOW_DEFAULTHEIGHT","features":[433]},{"name":"PLUGIN_SEPARATEWINDOW_DEFAULTWIDTH","features":[433]},{"name":"PLUGIN_SEPARATEWINDOW_MAXHEIGHT","features":[433]},{"name":"PLUGIN_SEPARATEWINDOW_MAXWIDTH","features":[433]},{"name":"PLUGIN_SEPARATEWINDOW_MINHEIGHT","features":[433]},{"name":"PLUGIN_SEPARATEWINDOW_MINWIDTH","features":[433]},{"name":"PLUGIN_SEPARATEWINDOW_RESIZABLE","features":[433]},{"name":"PLUGIN_TYPE_BACKGROUND","features":[433]},{"name":"PLUGIN_TYPE_DISPLAYAREA","features":[433]},{"name":"PLUGIN_TYPE_METADATAAREA","features":[433]},{"name":"PLUGIN_TYPE_SEPARATEWINDOW","features":[433]},{"name":"PLUGIN_TYPE_SETTINGSAREA","features":[433]},{"name":"PlayerState","features":[433]},{"name":"SA_BUFFER_SIZE","features":[433]},{"name":"SUBSCRIPTION_CAP_ALLOWCDBURN","features":[433]},{"name":"SUBSCRIPTION_CAP_ALLOWPDATRANSFER","features":[433]},{"name":"SUBSCRIPTION_CAP_ALLOWPLAY","features":[433]},{"name":"SUBSCRIPTION_CAP_ALTLOGIN","features":[433]},{"name":"SUBSCRIPTION_CAP_BACKGROUNDPROCESSING","features":[433]},{"name":"SUBSCRIPTION_CAP_DEVICEAVAILABLE","features":[433]},{"name":"SUBSCRIPTION_CAP_IS_CONTENTPARTNER","features":[433]},{"name":"SUBSCRIPTION_CAP_PREPAREFORSYNC","features":[433]},{"name":"SUBSCRIPTION_CAP_UILESSMODE_ALLOWPLAY","features":[433]},{"name":"SUBSCRIPTION_V1_CAPS","features":[433]},{"name":"TimedLevel","features":[433]},{"name":"WMPAccountType","features":[433]},{"name":"WMPBurnFormat","features":[433]},{"name":"WMPBurnState","features":[433]},{"name":"WMPCOREEVENT_BASE","features":[433]},{"name":"WMPCOREEVENT_CDROM_BASE","features":[433]},{"name":"WMPCOREEVENT_CONTENT_BASE","features":[433]},{"name":"WMPCOREEVENT_CONTROL_BASE","features":[433]},{"name":"WMPCOREEVENT_ERROR_BASE","features":[433]},{"name":"WMPCOREEVENT_NETWORK_BASE","features":[433]},{"name":"WMPCOREEVENT_PLAYLIST_BASE","features":[433]},{"name":"WMPCOREEVENT_SEEK_BASE","features":[433]},{"name":"WMPCOREEVENT_WARNING_BASE","features":[433]},{"name":"WMPCallbackNotification","features":[433]},{"name":"WMPContextMenuInfo","features":[433]},{"name":"WMPDeviceStatus","features":[433]},{"name":"WMPFolderScanState","features":[433]},{"name":"WMPGC_FLAGS_ALLOW_PREROLL","features":[433]},{"name":"WMPGC_FLAGS_DISABLE_PLUGINS","features":[433]},{"name":"WMPGC_FLAGS_IGNORE_AV_SYNC","features":[433]},{"name":"WMPGC_FLAGS_SUPPRESS_DIALOGS","features":[433]},{"name":"WMPGC_FLAGS_USE_CUSTOM_GRAPH","features":[433]},{"name":"WMPLib","features":[433]},{"name":"WMPLibraryType","features":[433]},{"name":"WMPOCXEVENT_BASE","features":[433]},{"name":"WMPOpenState","features":[433]},{"name":"WMPPartnerNotification","features":[433]},{"name":"WMPPlayState","features":[433]},{"name":"WMPPlaylistChangeEventType","features":[433]},{"name":"WMPPlugin_Caps","features":[433]},{"name":"WMPPlugin_Caps_CannotConvertFormats","features":[433]},{"name":"WMPRemoteMediaServices","features":[433]},{"name":"WMPRipState","features":[433]},{"name":"WMPServices_StreamState","features":[433]},{"name":"WMPServices_StreamState_Pause","features":[433]},{"name":"WMPServices_StreamState_Play","features":[433]},{"name":"WMPServices_StreamState_Stop","features":[433]},{"name":"WMPStreamingType","features":[433]},{"name":"WMPStringCollectionChangeEventType","features":[433]},{"name":"WMPSubscriptionDownloadState","features":[433]},{"name":"WMPSubscriptionServiceEvent","features":[433]},{"name":"WMPSyncState","features":[433]},{"name":"WMPTaskType","features":[433]},{"name":"WMPTemplateSize","features":[433]},{"name":"WMPTransactionType","features":[433]},{"name":"WMPUE_EC_USER","features":[433]},{"name":"WMP_MDRT_FLAGS_UNREPORTED_ADDED_ITEMS","features":[433]},{"name":"WMP_MDRT_FLAGS_UNREPORTED_DELETED_ITEMS","features":[433]},{"name":"WMP_PLUGINTYPE_DSP","features":[433]},{"name":"WMP_PLUGINTYPE_DSP_OUTOFPROC","features":[433]},{"name":"WMP_PLUGINTYPE_RENDERING","features":[433]},{"name":"WMP_SUBSCR_DL_TYPE_BACKGROUND","features":[433]},{"name":"WMP_SUBSCR_DL_TYPE_REALTIME","features":[433]},{"name":"WMP_WMDM_METADATA_ROUND_TRIP_DEVICE2PC","features":[433]},{"name":"WMP_WMDM_METADATA_ROUND_TRIP_PC2DEVICE","features":[433]},{"name":"WMProfile_V40_100Video","features":[433]},{"name":"WMProfile_V40_128Audio","features":[433]},{"name":"WMProfile_V40_16AMRadio","features":[433]},{"name":"WMProfile_V40_1MBVideo","features":[433]},{"name":"WMProfile_V40_250Video","features":[433]},{"name":"WMProfile_V40_2856100MBR","features":[433]},{"name":"WMProfile_V40_288FMRadioMono","features":[433]},{"name":"WMProfile_V40_288FMRadioStereo","features":[433]},{"name":"WMProfile_V40_288VideoAudio","features":[433]},{"name":"WMProfile_V40_288VideoVoice","features":[433]},{"name":"WMProfile_V40_288VideoWebServer","features":[433]},{"name":"WMProfile_V40_3MBVideo","features":[433]},{"name":"WMProfile_V40_512Video","features":[433]},{"name":"WMProfile_V40_56DialUpStereo","features":[433]},{"name":"WMProfile_V40_56DialUpVideo","features":[433]},{"name":"WMProfile_V40_56DialUpVideoWebServer","features":[433]},{"name":"WMProfile_V40_64Audio","features":[433]},{"name":"WMProfile_V40_6VoiceAudio","features":[433]},{"name":"WMProfile_V40_96Audio","features":[433]},{"name":"WMProfile_V40_DialUpMBR","features":[433]},{"name":"WMProfile_V40_IntranetMBR","features":[433]},{"name":"WMProfile_V70_100Video","features":[433]},{"name":"WMProfile_V70_128Audio","features":[433]},{"name":"WMProfile_V70_1500FilmContentVideo","features":[433]},{"name":"WMProfile_V70_1500Video","features":[433]},{"name":"WMProfile_V70_150VideoPDA","features":[433]},{"name":"WMProfile_V70_2000Video","features":[433]},{"name":"WMProfile_V70_225VideoPDA","features":[433]},{"name":"WMProfile_V70_256Video","features":[433]},{"name":"WMProfile_V70_2856100MBR","features":[433]},{"name":"WMProfile_V70_288FMRadioMono","features":[433]},{"name":"WMProfile_V70_288FMRadioStereo","features":[433]},{"name":"WMProfile_V70_288VideoAudio","features":[433]},{"name":"WMProfile_V70_288VideoVoice","features":[433]},{"name":"WMProfile_V70_288VideoWebServer","features":[433]},{"name":"WMProfile_V70_384Video","features":[433]},{"name":"WMProfile_V70_56DialUpStereo","features":[433]},{"name":"WMProfile_V70_56VideoWebServer","features":[433]},{"name":"WMProfile_V70_64Audio","features":[433]},{"name":"WMProfile_V70_64AudioISDN","features":[433]},{"name":"WMProfile_V70_64VideoISDN","features":[433]},{"name":"WMProfile_V70_6VoiceAudio","features":[433]},{"name":"WMProfile_V70_700FilmContentVideo","features":[433]},{"name":"WMProfile_V70_768Video","features":[433]},{"name":"WMProfile_V70_96Audio","features":[433]},{"name":"WMProfile_V70_DialUpMBR","features":[433]},{"name":"WMProfile_V70_IntranetMBR","features":[433]},{"name":"WMProfile_V80_100768VideoMBR","features":[433]},{"name":"WMProfile_V80_100Video","features":[433]},{"name":"WMProfile_V80_128StereoAudio","features":[433]},{"name":"WMProfile_V80_1400NTSCVideo","features":[433]},{"name":"WMProfile_V80_150VideoPDA","features":[433]},{"name":"WMProfile_V80_255VideoPDA","features":[433]},{"name":"WMProfile_V80_256Video","features":[433]},{"name":"WMProfile_V80_288100VideoMBR","features":[433]},{"name":"WMProfile_V80_28856VideoMBR","features":[433]},{"name":"WMProfile_V80_288MonoAudio","features":[433]},{"name":"WMProfile_V80_288StereoAudio","features":[433]},{"name":"WMProfile_V80_288Video","features":[433]},{"name":"WMProfile_V80_288VideoOnly","features":[433]},{"name":"WMProfile_V80_32StereoAudio","features":[433]},{"name":"WMProfile_V80_384PALVideo","features":[433]},{"name":"WMProfile_V80_384Video","features":[433]},{"name":"WMProfile_V80_48StereoAudio","features":[433]},{"name":"WMProfile_V80_56Video","features":[433]},{"name":"WMProfile_V80_56VideoOnly","features":[433]},{"name":"WMProfile_V80_64StereoAudio","features":[433]},{"name":"WMProfile_V80_700NTSCVideo","features":[433]},{"name":"WMProfile_V80_700PALVideo","features":[433]},{"name":"WMProfile_V80_768Video","features":[433]},{"name":"WMProfile_V80_96StereoAudio","features":[433]},{"name":"WMProfile_V80_BESTVBRVideo","features":[433]},{"name":"WMProfile_V80_FAIRVBRVideo","features":[433]},{"name":"WMProfile_V80_HIGHVBRVideo","features":[433]},{"name":"WindowsMediaPlayer","features":[433]},{"name":"_WMPOCXEvents","features":[433,354]},{"name":"g_szAllAuthors","features":[433]},{"name":"g_szAllCPAlbumIDs","features":[433]},{"name":"g_szAllCPAlbumSubGenreIDs","features":[433]},{"name":"g_szAllCPArtistIDs","features":[433]},{"name":"g_szAllCPGenreIDs","features":[433]},{"name":"g_szAllCPListIDs","features":[433]},{"name":"g_szAllCPRadioIDs","features":[433]},{"name":"g_szAllCPTrackIDs","features":[433]},{"name":"g_szAllReleaseDateYears","features":[433]},{"name":"g_szAllUserEffectiveRatingStarss","features":[433]},{"name":"g_szAllWMParentalRatings","features":[433]},{"name":"g_szAuthor","features":[433]},{"name":"g_szCPAlbumID","features":[433]},{"name":"g_szCPAlbumSubGenreID","features":[433]},{"name":"g_szCPArtistID","features":[433]},{"name":"g_szCPGenreID","features":[433]},{"name":"g_szCPListID","features":[433]},{"name":"g_szCPRadioID","features":[433]},{"name":"g_szCPTrackID","features":[433]},{"name":"g_szContentPartnerInfo_AccountBalance","features":[433]},{"name":"g_szContentPartnerInfo_AccountType","features":[433]},{"name":"g_szContentPartnerInfo_HasCachedCredentials","features":[433]},{"name":"g_szContentPartnerInfo_LicenseRefreshAdvanceWarning","features":[433]},{"name":"g_szContentPartnerInfo_LoginState","features":[433]},{"name":"g_szContentPartnerInfo_MaximumTrackPurchasePerPurchase","features":[433]},{"name":"g_szContentPartnerInfo_MediaPlayerAccountType","features":[433]},{"name":"g_szContentPartnerInfo_PurchasedTrackRequiresReDownload","features":[433]},{"name":"g_szContentPartnerInfo_UserName","features":[433]},{"name":"g_szContentPrice_CannotBuy","features":[433]},{"name":"g_szContentPrice_Free","features":[433]},{"name":"g_szContentPrice_Unknown","features":[433]},{"name":"g_szFlyoutMenu","features":[433]},{"name":"g_szItemInfo_ALTLoginCaption","features":[433]},{"name":"g_szItemInfo_ALTLoginURL","features":[433]},{"name":"g_szItemInfo_AlbumArtURL","features":[433]},{"name":"g_szItemInfo_ArtistArtURL","features":[433]},{"name":"g_szItemInfo_AuthenticationSuccessURL","features":[433]},{"name":"g_szItemInfo_CreateAccountURL","features":[433]},{"name":"g_szItemInfo_ErrorDescription","features":[433]},{"name":"g_szItemInfo_ErrorURL","features":[433]},{"name":"g_szItemInfo_ErrorURLLinkText","features":[433]},{"name":"g_szItemInfo_ForgetPasswordURL","features":[433]},{"name":"g_szItemInfo_GenreArtURL","features":[433]},{"name":"g_szItemInfo_HTMLViewURL","features":[433]},{"name":"g_szItemInfo_ListArtURL","features":[433]},{"name":"g_szItemInfo_LoginFailureURL","features":[433]},{"name":"g_szItemInfo_PopupCaption","features":[433]},{"name":"g_szItemInfo_PopupURL","features":[433]},{"name":"g_szItemInfo_RadioArtURL","features":[433]},{"name":"g_szItemInfo_SubGenreArtURL","features":[433]},{"name":"g_szItemInfo_TreeListIconURL","features":[433]},{"name":"g_szMediaPlayerTask_Browse","features":[433]},{"name":"g_szMediaPlayerTask_Burn","features":[433]},{"name":"g_szMediaPlayerTask_Sync","features":[433]},{"name":"g_szOnlineStore","features":[433]},{"name":"g_szRefreshLicenseBurn","features":[433]},{"name":"g_szRefreshLicensePlay","features":[433]},{"name":"g_szRefreshLicenseSync","features":[433]},{"name":"g_szReleaseDateYear","features":[433]},{"name":"g_szRootLocation","features":[433]},{"name":"g_szStationEvent_Complete","features":[433]},{"name":"g_szStationEvent_Skipped","features":[433]},{"name":"g_szStationEvent_Started","features":[433]},{"name":"g_szUnknownLocation","features":[433]},{"name":"g_szUserEffectiveRatingStars","features":[433]},{"name":"g_szUserPlaylist","features":[433]},{"name":"g_szVerifyPermissionSync","features":[433]},{"name":"g_szVideoRecent","features":[433]},{"name":"g_szVideoRoot","features":[433]},{"name":"g_szViewMode_Details","features":[433]},{"name":"g_szViewMode_Icon","features":[433]},{"name":"g_szViewMode_OrderedList","features":[433]},{"name":"g_szViewMode_Report","features":[433]},{"name":"g_szViewMode_Tile","features":[433]},{"name":"g_szWMParentalRating","features":[433]},{"name":"kfltTimedLevelMaximumFrequency","features":[433]},{"name":"kfltTimedLevelMinimumFrequency","features":[433]},{"name":"pause_state","features":[433]},{"name":"play_state","features":[433]},{"name":"stop_state","features":[433]},{"name":"wmpatBuyOnly","features":[433]},{"name":"wmpatJanus","features":[433]},{"name":"wmpatSubscription","features":[433]},{"name":"wmpbfAudioCD","features":[433]},{"name":"wmpbfDataCD","features":[433]},{"name":"wmpbsBurning","features":[433]},{"name":"wmpbsBusy","features":[433]},{"name":"wmpbsDownloading","features":[433]},{"name":"wmpbsErasing","features":[433]},{"name":"wmpbsPreparingToBurn","features":[433]},{"name":"wmpbsReady","features":[433]},{"name":"wmpbsRefreshStatusPending","features":[433]},{"name":"wmpbsStopped","features":[433]},{"name":"wmpbsUnknown","features":[433]},{"name":"wmpbsWaitingForDisc","features":[433]},{"name":"wmpcnAuthResult","features":[433]},{"name":"wmpcnDisableRadioSkipping","features":[433]},{"name":"wmpcnLicenseUpdated","features":[433]},{"name":"wmpcnLoginStateChange","features":[433]},{"name":"wmpcnNewCatalogAvailable","features":[433]},{"name":"wmpcnNewPluginAvailable","features":[433]},{"name":"wmpdsLast","features":[433]},{"name":"wmpdsManualDevice","features":[433]},{"name":"wmpdsNewDevice","features":[433]},{"name":"wmpdsPartnershipAnother","features":[433]},{"name":"wmpdsPartnershipDeclined","features":[433]},{"name":"wmpdsPartnershipExists","features":[433]},{"name":"wmpdsUnknown","features":[433]},{"name":"wmpfssScanning","features":[433]},{"name":"wmpfssStopped","features":[433]},{"name":"wmpfssUnknown","features":[433]},{"name":"wmpfssUpdating","features":[433]},{"name":"wmplcAppend","features":[433]},{"name":"wmplcClear","features":[433]},{"name":"wmplcDelete","features":[433]},{"name":"wmplcInfoChange","features":[433]},{"name":"wmplcInsert","features":[433]},{"name":"wmplcLast","features":[433]},{"name":"wmplcMorph","features":[433]},{"name":"wmplcMove","features":[433]},{"name":"wmplcNameChange","features":[433]},{"name":"wmplcPrivate","features":[433]},{"name":"wmplcSort","features":[433]},{"name":"wmplcUnknown","features":[433]},{"name":"wmpltAll","features":[433]},{"name":"wmpltDisc","features":[433]},{"name":"wmpltLocal","features":[433]},{"name":"wmpltPortableDevice","features":[433]},{"name":"wmpltRemote","features":[433]},{"name":"wmpltUnknown","features":[433]},{"name":"wmposBeginCodecAcquisition","features":[433]},{"name":"wmposBeginIndividualization","features":[433]},{"name":"wmposBeginLicenseAcquisition","features":[433]},{"name":"wmposEndCodecAcquisition","features":[433]},{"name":"wmposEndIndividualization","features":[433]},{"name":"wmposEndLicenseAcquisition","features":[433]},{"name":"wmposMediaChanging","features":[433]},{"name":"wmposMediaConnecting","features":[433]},{"name":"wmposMediaLoading","features":[433]},{"name":"wmposMediaLocating","features":[433]},{"name":"wmposMediaOpen","features":[433]},{"name":"wmposMediaOpening","features":[433]},{"name":"wmposMediaWaiting","features":[433]},{"name":"wmposOpeningUnknownURL","features":[433]},{"name":"wmposPlaylistChanged","features":[433]},{"name":"wmposPlaylistChanging","features":[433]},{"name":"wmposPlaylistConnecting","features":[433]},{"name":"wmposPlaylistLoading","features":[433]},{"name":"wmposPlaylistLocating","features":[433]},{"name":"wmposPlaylistOpenNoMedia","features":[433]},{"name":"wmposPlaylistOpening","features":[433]},{"name":"wmposUndefined","features":[433]},{"name":"wmppsBuffering","features":[433]},{"name":"wmppsLast","features":[433]},{"name":"wmppsMediaEnded","features":[433]},{"name":"wmppsPaused","features":[433]},{"name":"wmppsPlaying","features":[433]},{"name":"wmppsReady","features":[433]},{"name":"wmppsReconnecting","features":[433]},{"name":"wmppsScanForward","features":[433]},{"name":"wmppsScanReverse","features":[433]},{"name":"wmppsStopped","features":[433]},{"name":"wmppsTransitioning","features":[433]},{"name":"wmppsUndefined","features":[433]},{"name":"wmppsWaiting","features":[433]},{"name":"wmprsRipping","features":[433]},{"name":"wmprsStopped","features":[433]},{"name":"wmprsUnknown","features":[433]},{"name":"wmpsccetBeginUpdates","features":[433]},{"name":"wmpsccetChange","features":[433]},{"name":"wmpsccetClear","features":[433]},{"name":"wmpsccetDelete","features":[433]},{"name":"wmpsccetEndUpdates","features":[433]},{"name":"wmpsccetInsert","features":[433]},{"name":"wmpsccetUnknown","features":[433]},{"name":"wmpsdlsCancelled","features":[433]},{"name":"wmpsdlsCompleted","features":[433]},{"name":"wmpsdlsDownloading","features":[433]},{"name":"wmpsdlsPaused","features":[433]},{"name":"wmpsdlsProcessing","features":[433]},{"name":"wmpsnBackgroundProcessingBegin","features":[433]},{"name":"wmpsnBackgroundProcessingEnd","features":[433]},{"name":"wmpsnCatalogDownloadComplete","features":[433]},{"name":"wmpsnCatalogDownloadFailure","features":[433]},{"name":"wmpssEstimating","features":[433]},{"name":"wmpssLast","features":[433]},{"name":"wmpssStopped","features":[433]},{"name":"wmpssSynchronizing","features":[433]},{"name":"wmpssUnknown","features":[433]},{"name":"wmpsseCurrentBegin","features":[433]},{"name":"wmpsseCurrentEnd","features":[433]},{"name":"wmpsseFullBegin","features":[433]},{"name":"wmpsseFullEnd","features":[433]},{"name":"wmpstMusic","features":[433]},{"name":"wmpstRadio","features":[433]},{"name":"wmpstUnknown","features":[433]},{"name":"wmpstVideo","features":[433]},{"name":"wmptsLarge","features":[433]},{"name":"wmptsMedium","features":[433]},{"name":"wmptsSmall","features":[433]},{"name":"wmpttBrowse","features":[433]},{"name":"wmpttBurn","features":[433]},{"name":"wmpttBuy","features":[433]},{"name":"wmpttCurrent","features":[433]},{"name":"wmpttDownload","features":[433]},{"name":"wmpttNoTransaction","features":[433]},{"name":"wmpttSync","features":[433]}],"438":[{"name":"ACMDM_BASE","features":[417]},{"name":"ACM_MPEG_COPYRIGHT","features":[417]},{"name":"ACM_MPEG_DUALCHANNEL","features":[417]},{"name":"ACM_MPEG_ID_MPEG1","features":[417]},{"name":"ACM_MPEG_JOINTSTEREO","features":[417]},{"name":"ACM_MPEG_LAYER1","features":[417]},{"name":"ACM_MPEG_LAYER2","features":[417]},{"name":"ACM_MPEG_LAYER3","features":[417]},{"name":"ACM_MPEG_ORIGINALHOME","features":[417]},{"name":"ACM_MPEG_PRIVATEBIT","features":[417]},{"name":"ACM_MPEG_PROTECTIONBIT","features":[417]},{"name":"ACM_MPEG_SINGLECHANNEL","features":[417]},{"name":"ACM_MPEG_STEREO","features":[417]},{"name":"ADPCMCOEFSET","features":[417]},{"name":"ADPCMEWAVEFORMAT","features":[418,417]},{"name":"ADPCMWAVEFORMAT","features":[418,417]},{"name":"APTXWAVEFORMAT","features":[418,417]},{"name":"AUDIOFILE_AF10WAVEFORMAT","features":[418,417]},{"name":"AUDIOFILE_AF36WAVEFORMAT","features":[418,417]},{"name":"AUXDM_GETDEVCAPS","features":[417]},{"name":"AUXDM_GETNUMDEVS","features":[417]},{"name":"AUXDM_GETVOLUME","features":[417]},{"name":"AUXDM_SETVOLUME","features":[417]},{"name":"AUXM_INIT","features":[417]},{"name":"AUXM_INIT_EX","features":[417]},{"name":"AVIBuildFilterA","features":[303,417]},{"name":"AVIBuildFilterW","features":[303,417]},{"name":"AVICOMPRESSF_DATARATE","features":[417]},{"name":"AVICOMPRESSF_INTERLEAVE","features":[417]},{"name":"AVICOMPRESSF_KEYFRAMES","features":[417]},{"name":"AVICOMPRESSF_VALID","features":[417]},{"name":"AVICOMPRESSOPTIONS","features":[417]},{"name":"AVIClearClipboard","features":[417]},{"name":"AVIERR_OK","features":[417]},{"name":"AVIFILECAPS_ALLKEYFRAMES","features":[417]},{"name":"AVIFILECAPS_CANREAD","features":[417]},{"name":"AVIFILECAPS_CANWRITE","features":[417]},{"name":"AVIFILECAPS_NOCOMPRESSION","features":[417]},{"name":"AVIFILEHANDLER_CANACCEPTNONRGB","features":[417]},{"name":"AVIFILEHANDLER_CANREAD","features":[417]},{"name":"AVIFILEHANDLER_CANWRITE","features":[417]},{"name":"AVIFILEINFOA","features":[417]},{"name":"AVIFILEINFOW","features":[417]},{"name":"AVIFILEINFO_COPYRIGHTED","features":[417]},{"name":"AVIFILEINFO_HASINDEX","features":[417]},{"name":"AVIFILEINFO_ISINTERLEAVED","features":[417]},{"name":"AVIFILEINFO_MUSTUSEINDEX","features":[417]},{"name":"AVIFILEINFO_WASCAPTUREFILE","features":[417]},{"name":"AVIFileAddRef","features":[417]},{"name":"AVIFileCreateStreamA","features":[303,417]},{"name":"AVIFileCreateStreamW","features":[303,417]},{"name":"AVIFileEndRecord","features":[417]},{"name":"AVIFileExit","features":[417]},{"name":"AVIFileGetStream","features":[417]},{"name":"AVIFileInfoA","features":[417]},{"name":"AVIFileInfoW","features":[417]},{"name":"AVIFileInit","features":[417]},{"name":"AVIFileOpenA","features":[417]},{"name":"AVIFileOpenW","features":[417]},{"name":"AVIFileReadData","features":[417]},{"name":"AVIFileRelease","features":[417]},{"name":"AVIFileWriteData","features":[417]},{"name":"AVIGETFRAMEF_BESTDISPLAYFMT","features":[417]},{"name":"AVIGetFromClipboard","features":[417]},{"name":"AVIIF_CONTROLFRAME","features":[417]},{"name":"AVIIF_TWOCC","features":[417]},{"name":"AVIMakeCompressedStream","features":[417]},{"name":"AVIMakeFileFromStreams","features":[417]},{"name":"AVIMakeStreamFromClipboard","features":[303,417]},{"name":"AVIPutFileOnClipboard","features":[417]},{"name":"AVISAVECALLBACK","features":[303,417]},{"name":"AVISTREAMINFOA","features":[303,417]},{"name":"AVISTREAMINFOW","features":[303,417]},{"name":"AVISTREAMINFO_DISABLED","features":[417]},{"name":"AVISTREAMINFO_FORMATCHANGES","features":[417]},{"name":"AVISTREAMREAD_CONVENIENT","features":[417]},{"name":"AVISaveA","features":[303,417]},{"name":"AVISaveOptions","features":[303,417]},{"name":"AVISaveOptionsFree","features":[417]},{"name":"AVISaveVA","features":[303,417]},{"name":"AVISaveVW","features":[303,417]},{"name":"AVISaveW","features":[303,417]},{"name":"AVIStreamAddRef","features":[417]},{"name":"AVIStreamBeginStreaming","features":[417]},{"name":"AVIStreamCreate","features":[417]},{"name":"AVIStreamEndStreaming","features":[417]},{"name":"AVIStreamFindSample","features":[417]},{"name":"AVIStreamGetFrame","features":[417]},{"name":"AVIStreamGetFrameClose","features":[417]},{"name":"AVIStreamGetFrameOpen","features":[314,417]},{"name":"AVIStreamInfoA","features":[303,417]},{"name":"AVIStreamInfoW","features":[303,417]},{"name":"AVIStreamLength","features":[417]},{"name":"AVIStreamOpenFromFileA","features":[417]},{"name":"AVIStreamOpenFromFileW","features":[417]},{"name":"AVIStreamRead","features":[417]},{"name":"AVIStreamReadData","features":[417]},{"name":"AVIStreamReadFormat","features":[417]},{"name":"AVIStreamRelease","features":[417]},{"name":"AVIStreamSampleToTime","features":[417]},{"name":"AVIStreamSetFormat","features":[417]},{"name":"AVIStreamStart","features":[417]},{"name":"AVIStreamTimeToSample","features":[417]},{"name":"AVIStreamWrite","features":[417]},{"name":"AVIStreamWriteData","features":[417]},{"name":"AVSTREAMMASTER_AUDIO","features":[417]},{"name":"AVSTREAMMASTER_NONE","features":[417]},{"name":"BI_1632","features":[417]},{"name":"CAPCONTROLCALLBACK","features":[303,417]},{"name":"CAPDRIVERCAPS","features":[303,417]},{"name":"CAPERRORCALLBACKA","features":[303,417]},{"name":"CAPERRORCALLBACKW","features":[303,417]},{"name":"CAPINFOCHUNK","features":[417]},{"name":"CAPSTATUS","features":[303,314,417]},{"name":"CAPSTATUSCALLBACKA","features":[303,417]},{"name":"CAPSTATUSCALLBACKW","features":[303,417]},{"name":"CAPTUREPARMS","features":[303,417]},{"name":"CAPVIDEOCALLBACK","features":[303,417]},{"name":"CAPWAVECALLBACK","features":[303,418,417]},{"name":"CAPYIELDCALLBACK","features":[303,417]},{"name":"CHANNEL_CAPS","features":[417]},{"name":"CLSID_AVIFile","features":[417]},{"name":"CLSID_AVISimpleUnMarshal","features":[417]},{"name":"COMPVARS","features":[314,417]},{"name":"CONTRESCR10WAVEFORMAT","features":[418,417]},{"name":"CONTRESVQLPCWAVEFORMAT","features":[418,417]},{"name":"CONTROLCALLBACK_CAPTURING","features":[417]},{"name":"CONTROLCALLBACK_PREROLL","features":[417]},{"name":"CREATIVEADPCMWAVEFORMAT","features":[418,417]},{"name":"CREATIVEFASTSPEECH10WAVEFORMAT","features":[418,417]},{"name":"CREATIVEFASTSPEECH8WAVEFORMAT","features":[418,417]},{"name":"CRYSTAL_NET_SFM_CODEC","features":[417]},{"name":"CSIMAADPCMWAVEFORMAT","features":[418,417]},{"name":"CloseDriver","features":[303,417]},{"name":"CreateEditableStream","features":[417]},{"name":"DCB_EVENT","features":[417]},{"name":"DCB_FUNCTION","features":[417]},{"name":"DCB_NOSWITCH","features":[417]},{"name":"DCB_NULL","features":[417]},{"name":"DCB_TASK","features":[417]},{"name":"DCB_TYPEMASK","features":[417]},{"name":"DCB_WINDOW","features":[417]},{"name":"DDF_0001","features":[417]},{"name":"DDF_2000","features":[417]},{"name":"DDF_ANIMATE","features":[417]},{"name":"DDF_BACKGROUNDPAL","features":[417]},{"name":"DDF_BUFFER","features":[417]},{"name":"DDF_DONTDRAW","features":[417]},{"name":"DDF_FULLSCREEN","features":[417]},{"name":"DDF_HALFTONE","features":[417]},{"name":"DDF_HURRYUP","features":[417]},{"name":"DDF_JUSTDRAWIT","features":[417]},{"name":"DDF_NOTKEYFRAME","features":[417]},{"name":"DDF_PREROLL","features":[417]},{"name":"DDF_SAME_DIB","features":[417]},{"name":"DDF_SAME_DRAW","features":[417]},{"name":"DDF_SAME_HDC","features":[417]},{"name":"DDF_SAME_SIZE","features":[417]},{"name":"DDF_UPDATE","features":[417]},{"name":"DIALOGICOKIADPCMWAVEFORMAT","features":[418,417]},{"name":"DIGIADPCMWAVEFORMAT","features":[418,417]},{"name":"DIGIFIXWAVEFORMAT","features":[418,417]},{"name":"DIGIREALWAVEFORMAT","features":[418,417]},{"name":"DIGISTDWAVEFORMAT","features":[418,417]},{"name":"DLG_ACMFILTERCHOOSE_ID","features":[417]},{"name":"DLG_ACMFORMATCHOOSE_ID","features":[417]},{"name":"DOLBYAC2WAVEFORMAT","features":[418,417]},{"name":"DRAWDIBTIME","features":[417]},{"name":"DRIVERMSGPROC","features":[417]},{"name":"DRIVERPROC","features":[303,417]},{"name":"DRIVERS_SECTION","features":[417]},{"name":"DRMWAVEFORMAT","features":[418,417]},{"name":"DRVCNF_CANCEL","features":[417]},{"name":"DRVCNF_OK","features":[417]},{"name":"DRVCNF_RESTART","features":[417]},{"name":"DRVCONFIGINFO","features":[417]},{"name":"DRVCONFIGINFOEX","features":[417]},{"name":"DRVM_ADD_THRU","features":[417]},{"name":"DRVM_DISABLE","features":[417]},{"name":"DRVM_ENABLE","features":[417]},{"name":"DRVM_EXIT","features":[417]},{"name":"DRVM_INIT","features":[417]},{"name":"DRVM_INIT_EX","features":[417]},{"name":"DRVM_IOCTL","features":[417]},{"name":"DRVM_IOCTL_CMD_SYSTEM","features":[417]},{"name":"DRVM_IOCTL_CMD_USER","features":[417]},{"name":"DRVM_IOCTL_DATA","features":[417]},{"name":"DRVM_IOCTL_LAST","features":[417]},{"name":"DRVM_MAPPER_CONSOLEVOICECOM_GET","features":[417]},{"name":"DRVM_MAPPER_PREFERRED_FLAGS_PREFERREDONLY","features":[417]},{"name":"DRVM_MAPPER_PREFERRED_GET","features":[417]},{"name":"DRVM_MAPPER_RECONFIGURE","features":[417]},{"name":"DRVM_REMOVE_THRU","features":[417]},{"name":"DRVM_USER","features":[417]},{"name":"DRV_CANCEL","features":[417]},{"name":"DRV_CLOSE","features":[417]},{"name":"DRV_CONFIGURE","features":[417]},{"name":"DRV_DISABLE","features":[417]},{"name":"DRV_ENABLE","features":[417]},{"name":"DRV_EXITSESSION","features":[417]},{"name":"DRV_FREE","features":[417]},{"name":"DRV_INSTALL","features":[417]},{"name":"DRV_LOAD","features":[417]},{"name":"DRV_MCI_FIRST","features":[417]},{"name":"DRV_MCI_LAST","features":[417]},{"name":"DRV_OK","features":[417]},{"name":"DRV_OPEN","features":[417]},{"name":"DRV_PNPINSTALL","features":[417]},{"name":"DRV_POWER","features":[417]},{"name":"DRV_QUERYCONFIGURE","features":[417]},{"name":"DRV_QUERYDEVICEINTERFACE","features":[417]},{"name":"DRV_QUERYDEVICEINTERFACESIZE","features":[417]},{"name":"DRV_QUERYDEVNODE","features":[417]},{"name":"DRV_QUERYFUNCTIONINSTANCEID","features":[417]},{"name":"DRV_QUERYFUNCTIONINSTANCEIDSIZE","features":[417]},{"name":"DRV_QUERYIDFROMSTRINGID","features":[417]},{"name":"DRV_QUERYMAPPABLE","features":[417]},{"name":"DRV_QUERYMODULE","features":[417]},{"name":"DRV_QUERYSTRINGID","features":[417]},{"name":"DRV_QUERYSTRINGIDSIZE","features":[417]},{"name":"DRV_REMOVE","features":[417]},{"name":"DRV_RESERVED","features":[417]},{"name":"DRV_RESTART","features":[417]},{"name":"DRV_USER","features":[417]},{"name":"DVIADPCMWAVEFORMAT","features":[418,417]},{"name":"DVM_CONFIGURE_END","features":[417]},{"name":"DVM_CONFIGURE_START","features":[417]},{"name":"DVM_DST_RECT","features":[417]},{"name":"DVM_FORMAT","features":[417]},{"name":"DVM_PALETTE","features":[417]},{"name":"DVM_PALETTERGB555","features":[417]},{"name":"DVM_SRC_RECT","features":[417]},{"name":"DVM_USER","features":[417]},{"name":"DV_ERR_13","features":[417]},{"name":"DV_ERR_ALLOCATED","features":[417]},{"name":"DV_ERR_BADDEVICEID","features":[417]},{"name":"DV_ERR_BADERRNUM","features":[417]},{"name":"DV_ERR_BADFORMAT","features":[417]},{"name":"DV_ERR_BADINSTALL","features":[417]},{"name":"DV_ERR_BASE","features":[417]},{"name":"DV_ERR_CONFIG1","features":[417]},{"name":"DV_ERR_CONFIG2","features":[417]},{"name":"DV_ERR_CREATEPALETTE","features":[417]},{"name":"DV_ERR_DMA_CONFLICT","features":[417]},{"name":"DV_ERR_FLAGS","features":[417]},{"name":"DV_ERR_INT_CONFLICT","features":[417]},{"name":"DV_ERR_INVALHANDLE","features":[417]},{"name":"DV_ERR_IO_CONFLICT","features":[417]},{"name":"DV_ERR_LASTERROR","features":[417]},{"name":"DV_ERR_MEM_CONFLICT","features":[417]},{"name":"DV_ERR_NOMEM","features":[417]},{"name":"DV_ERR_NONSPECIFIC","features":[417]},{"name":"DV_ERR_NOTDETECTED","features":[417]},{"name":"DV_ERR_NOTSUPPORTED","features":[417]},{"name":"DV_ERR_NO_BUFFERS","features":[417]},{"name":"DV_ERR_OK","features":[417]},{"name":"DV_ERR_PARAM1","features":[417]},{"name":"DV_ERR_PARAM2","features":[417]},{"name":"DV_ERR_PROTECT_ONLY","features":[417]},{"name":"DV_ERR_SIZEFIELD","features":[417]},{"name":"DV_ERR_STILLPLAYING","features":[417]},{"name":"DV_ERR_SYNC","features":[417]},{"name":"DV_ERR_TOOMANYCHANNELS","features":[417]},{"name":"DV_ERR_UNPREPARED","features":[417]},{"name":"DV_ERR_USER_MSG","features":[417]},{"name":"DV_VM_CLOSE","features":[417]},{"name":"DV_VM_DATA","features":[417]},{"name":"DV_VM_ERROR","features":[417]},{"name":"DV_VM_OPEN","features":[417]},{"name":"DefDriverProc","features":[303,417]},{"name":"DrawDibBegin","features":[303,314,417]},{"name":"DrawDibChangePalette","features":[303,314,417]},{"name":"DrawDibClose","features":[303,417]},{"name":"DrawDibDraw","features":[303,314,417]},{"name":"DrawDibEnd","features":[303,417]},{"name":"DrawDibGetBuffer","features":[314,417]},{"name":"DrawDibGetPalette","features":[314,417]},{"name":"DrawDibOpen","features":[417]},{"name":"DrawDibProfileDisplay","features":[303,314,417]},{"name":"DrawDibRealize","features":[303,314,417]},{"name":"DrawDibSetPalette","features":[303,314,417]},{"name":"DrawDibStart","features":[303,417]},{"name":"DrawDibStop","features":[303,417]},{"name":"DrawDibTime","features":[303,417]},{"name":"DriverCallback","features":[303,417]},{"name":"DrvGetModuleHandle","features":[303,417]},{"name":"ECHOSC1WAVEFORMAT","features":[418,417]},{"name":"EXBMINFOHEADER","features":[314,417]},{"name":"EditStreamClone","features":[417]},{"name":"EditStreamCopy","features":[417]},{"name":"EditStreamCut","features":[417]},{"name":"EditStreamPaste","features":[417]},{"name":"EditStreamSetInfoA","features":[303,417]},{"name":"EditStreamSetInfoW","features":[303,417]},{"name":"EditStreamSetNameA","features":[417]},{"name":"EditStreamSetNameW","features":[417]},{"name":"FACILITY_NS","features":[417]},{"name":"FACILITY_NS_WIN32","features":[417]},{"name":"FIND_ANY","features":[417]},{"name":"FIND_DIR","features":[417]},{"name":"FIND_FORMAT","features":[417]},{"name":"FIND_FROM_START","features":[417]},{"name":"FIND_INDEX","features":[417]},{"name":"FIND_KEY","features":[417]},{"name":"FIND_LENGTH","features":[417]},{"name":"FIND_NEXT","features":[417]},{"name":"FIND_OFFSET","features":[417]},{"name":"FIND_POS","features":[417]},{"name":"FIND_PREV","features":[417]},{"name":"FIND_RET","features":[417]},{"name":"FIND_SIZE","features":[417]},{"name":"FIND_TYPE","features":[417]},{"name":"FMTOWNS_SND_WAVEFORMAT","features":[418,417]},{"name":"G721_ADPCMWAVEFORMAT","features":[418,417]},{"name":"G723_ADPCMWAVEFORMAT","features":[418,417]},{"name":"GSM610WAVEFORMAT","features":[418,417]},{"name":"GetDriverModuleHandle","features":[303,417]},{"name":"GetOpenFileNamePreviewA","features":[303,417,434]},{"name":"GetOpenFileNamePreviewW","features":[303,417,434]},{"name":"GetSaveFileNamePreviewA","features":[303,417,434]},{"name":"GetSaveFileNamePreviewW","features":[303,417,434]},{"name":"HDRVR","features":[417]},{"name":"HIC","features":[417]},{"name":"HMMIO","features":[417]},{"name":"HVIDEO","features":[417]},{"name":"IAVIEditStream","features":[417]},{"name":"IAVIFile","features":[417]},{"name":"IAVIPersistFile","features":[417,354]},{"name":"IAVIStream","features":[417]},{"name":"IAVIStreaming","features":[417]},{"name":"ICCOMPRESS","features":[314,417]},{"name":"ICCOMPRESSFRAMES","features":[303,314,417]},{"name":"ICCOMPRESSFRAMES_PADDING","features":[417]},{"name":"ICCOMPRESS_KEYFRAME","features":[417]},{"name":"ICClose","features":[303,417]},{"name":"ICCompress","features":[314,417]},{"name":"ICCompressorChoose","features":[303,314,417]},{"name":"ICCompressorFree","features":[314,417]},{"name":"ICDECOMPRESS","features":[314,417]},{"name":"ICDECOMPRESSEX","features":[314,417]},{"name":"ICDECOMPRESS_HURRYUP","features":[417]},{"name":"ICDECOMPRESS_NOTKEYFRAME","features":[417]},{"name":"ICDECOMPRESS_NULLFRAME","features":[417]},{"name":"ICDECOMPRESS_PREROLL","features":[417]},{"name":"ICDECOMPRESS_UPDATE","features":[417]},{"name":"ICDRAW","features":[417]},{"name":"ICDRAWBEGIN","features":[303,314,417]},{"name":"ICDRAWSUGGEST","features":[314,417]},{"name":"ICDRAW_ANIMATE","features":[417]},{"name":"ICDRAW_BUFFER","features":[417]},{"name":"ICDRAW_CONTINUE","features":[417]},{"name":"ICDRAW_FULLSCREEN","features":[417]},{"name":"ICDRAW_HDC","features":[417]},{"name":"ICDRAW_HURRYUP","features":[417]},{"name":"ICDRAW_MEMORYDC","features":[417]},{"name":"ICDRAW_NOTKEYFRAME","features":[417]},{"name":"ICDRAW_NULLFRAME","features":[417]},{"name":"ICDRAW_PREROLL","features":[417]},{"name":"ICDRAW_QUERY","features":[417]},{"name":"ICDRAW_RENDER","features":[417]},{"name":"ICDRAW_UPDATE","features":[417]},{"name":"ICDRAW_UPDATING","features":[417]},{"name":"ICDecompress","features":[314,417]},{"name":"ICDraw","features":[417]},{"name":"ICDrawBegin","features":[303,314,417]},{"name":"ICERR_ABORT","features":[417]},{"name":"ICERR_BADBITDEPTH","features":[417]},{"name":"ICERR_BADFLAGS","features":[417]},{"name":"ICERR_BADFORMAT","features":[417]},{"name":"ICERR_BADHANDLE","features":[417]},{"name":"ICERR_BADIMAGESIZE","features":[417]},{"name":"ICERR_BADPARAM","features":[417]},{"name":"ICERR_BADSIZE","features":[417]},{"name":"ICERR_CANTUPDATE","features":[417]},{"name":"ICERR_CUSTOM","features":[417]},{"name":"ICERR_DONTDRAW","features":[417]},{"name":"ICERR_ERROR","features":[417]},{"name":"ICERR_GOTOKEYFRAME","features":[417]},{"name":"ICERR_INTERNAL","features":[417]},{"name":"ICERR_MEMORY","features":[417]},{"name":"ICERR_NEWPALETTE","features":[417]},{"name":"ICERR_OK","features":[417]},{"name":"ICERR_STOPDRAWING","features":[417]},{"name":"ICERR_UNSUPPORTED","features":[417]},{"name":"ICGetDisplayFormat","features":[314,417]},{"name":"ICGetInfo","features":[303,417]},{"name":"ICINFO","features":[417]},{"name":"ICINSTALL_DRIVER","features":[417]},{"name":"ICINSTALL_DRIVERW","features":[417]},{"name":"ICINSTALL_FUNCTION","features":[417]},{"name":"ICINSTALL_HDRV","features":[417]},{"name":"ICINSTALL_UNICODE","features":[417]},{"name":"ICImageCompress","features":[303,314,417]},{"name":"ICImageDecompress","features":[303,314,417]},{"name":"ICInfo","features":[303,417]},{"name":"ICInstall","features":[303,417]},{"name":"ICLocate","features":[314,417]},{"name":"ICMF_ABOUT_QUERY","features":[417]},{"name":"ICMF_CHOOSE_ALLCOMPRESSORS","features":[417]},{"name":"ICMF_CHOOSE_DATARATE","features":[417]},{"name":"ICMF_CHOOSE_KEYFRAME","features":[417]},{"name":"ICMF_CHOOSE_PREVIEW","features":[417]},{"name":"ICMF_COMPVARS_VALID","features":[417]},{"name":"ICMF_CONFIGURE_QUERY","features":[417]},{"name":"ICMODE_COMPRESS","features":[417]},{"name":"ICMODE_DECOMPRESS","features":[417]},{"name":"ICMODE_DRAW","features":[417]},{"name":"ICMODE_FASTCOMPRESS","features":[417]},{"name":"ICMODE_FASTDECOMPRESS","features":[417]},{"name":"ICMODE_INTERNALF_FUNCTION32","features":[417]},{"name":"ICMODE_INTERNALF_MASK","features":[417]},{"name":"ICMODE_QUERY","features":[417]},{"name":"ICM_ABOUT","features":[417]},{"name":"ICM_COMPRESS","features":[417]},{"name":"ICM_COMPRESS_BEGIN","features":[417]},{"name":"ICM_COMPRESS_END","features":[417]},{"name":"ICM_COMPRESS_FRAMES","features":[417]},{"name":"ICM_COMPRESS_FRAMES_INFO","features":[417]},{"name":"ICM_COMPRESS_GET_FORMAT","features":[417]},{"name":"ICM_COMPRESS_GET_SIZE","features":[417]},{"name":"ICM_COMPRESS_QUERY","features":[417]},{"name":"ICM_CONFIGURE","features":[417]},{"name":"ICM_DECOMPRESS","features":[417]},{"name":"ICM_DECOMPRESSEX","features":[417]},{"name":"ICM_DECOMPRESSEX_BEGIN","features":[417]},{"name":"ICM_DECOMPRESSEX_END","features":[417]},{"name":"ICM_DECOMPRESSEX_QUERY","features":[417]},{"name":"ICM_DECOMPRESS_BEGIN","features":[417]},{"name":"ICM_DECOMPRESS_END","features":[417]},{"name":"ICM_DECOMPRESS_GET_FORMAT","features":[417]},{"name":"ICM_DECOMPRESS_GET_PALETTE","features":[417]},{"name":"ICM_DECOMPRESS_QUERY","features":[417]},{"name":"ICM_DECOMPRESS_SET_PALETTE","features":[417]},{"name":"ICM_DRAW","features":[417]},{"name":"ICM_DRAW_BEGIN","features":[417]},{"name":"ICM_DRAW_BITS","features":[417]},{"name":"ICM_DRAW_CHANGEPALETTE","features":[417]},{"name":"ICM_DRAW_END","features":[417]},{"name":"ICM_DRAW_FLUSH","features":[417]},{"name":"ICM_DRAW_GETTIME","features":[417]},{"name":"ICM_DRAW_GET_PALETTE","features":[417]},{"name":"ICM_DRAW_IDLE","features":[417]},{"name":"ICM_DRAW_QUERY","features":[417]},{"name":"ICM_DRAW_REALIZE","features":[417]},{"name":"ICM_DRAW_RENDERBUFFER","features":[417]},{"name":"ICM_DRAW_SETTIME","features":[417]},{"name":"ICM_DRAW_START","features":[417]},{"name":"ICM_DRAW_START_PLAY","features":[417]},{"name":"ICM_DRAW_STOP","features":[417]},{"name":"ICM_DRAW_STOP_PLAY","features":[417]},{"name":"ICM_DRAW_SUGGESTFORMAT","features":[417]},{"name":"ICM_DRAW_UPDATE","features":[417]},{"name":"ICM_DRAW_WINDOW","features":[417]},{"name":"ICM_ENUMFORMATS","features":[417]},{"name":"ICM_GET","features":[417]},{"name":"ICM_GETBUFFERSWANTED","features":[417]},{"name":"ICM_GETDEFAULTKEYFRAMERATE","features":[417]},{"name":"ICM_GETDEFAULTQUALITY","features":[417]},{"name":"ICM_GETERRORTEXT","features":[417]},{"name":"ICM_GETFORMATNAME","features":[417]},{"name":"ICM_GETINFO","features":[417]},{"name":"ICM_GETQUALITY","features":[417]},{"name":"ICM_GETSTATE","features":[417]},{"name":"ICM_RESERVED","features":[417]},{"name":"ICM_RESERVED_HIGH","features":[417]},{"name":"ICM_RESERVED_LOW","features":[417]},{"name":"ICM_SET","features":[417]},{"name":"ICM_SETQUALITY","features":[417]},{"name":"ICM_SETSTATE","features":[417]},{"name":"ICM_SET_STATUS_PROC","features":[417]},{"name":"ICM_USER","features":[417]},{"name":"ICOPEN","features":[303,417]},{"name":"ICOpen","features":[417]},{"name":"ICOpenFunction","features":[303,417]},{"name":"ICPALETTE","features":[314,417]},{"name":"ICQUALITY_DEFAULT","features":[417]},{"name":"ICQUALITY_HIGH","features":[417]},{"name":"ICQUALITY_LOW","features":[417]},{"name":"ICRemove","features":[303,417]},{"name":"ICSETSTATUSPROC","features":[303,417]},{"name":"ICSTATUS_END","features":[417]},{"name":"ICSTATUS_ERROR","features":[417]},{"name":"ICSTATUS_START","features":[417]},{"name":"ICSTATUS_STATUS","features":[417]},{"name":"ICSTATUS_YIELD","features":[417]},{"name":"ICSendMessage","features":[303,417]},{"name":"ICSeqCompressFrame","features":[303,314,417]},{"name":"ICSeqCompressFrameEnd","features":[314,417]},{"name":"ICSeqCompressFrameStart","features":[303,314,417]},{"name":"ICVERSION","features":[417]},{"name":"IDD_ACMFILTERCHOOSE_BTN_DELNAME","features":[417]},{"name":"IDD_ACMFILTERCHOOSE_BTN_HELP","features":[417]},{"name":"IDD_ACMFILTERCHOOSE_BTN_SETNAME","features":[417]},{"name":"IDD_ACMFILTERCHOOSE_CMB_CUSTOM","features":[417]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTER","features":[417]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTERTAG","features":[417]},{"name":"IDD_ACMFORMATCHOOSE_BTN_DELNAME","features":[417]},{"name":"IDD_ACMFORMATCHOOSE_BTN_HELP","features":[417]},{"name":"IDD_ACMFORMATCHOOSE_BTN_SETNAME","features":[417]},{"name":"IDD_ACMFORMATCHOOSE_CMB_CUSTOM","features":[417]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMAT","features":[417]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMATTAG","features":[417]},{"name":"IDS_CAP_AUDIO_DROP_COMPERROR","features":[417]},{"name":"IDS_CAP_AUDIO_DROP_ERROR","features":[417]},{"name":"IDS_CAP_AVI_DRAWDIB_ERROR","features":[417]},{"name":"IDS_CAP_AVI_INIT_ERROR","features":[417]},{"name":"IDS_CAP_BEGIN","features":[417]},{"name":"IDS_CAP_CANTOPEN","features":[417]},{"name":"IDS_CAP_COMPRESSOR_ERROR","features":[417]},{"name":"IDS_CAP_DEFAVIEXT","features":[417]},{"name":"IDS_CAP_DEFPALEXT","features":[417]},{"name":"IDS_CAP_DRIVER_ERROR","features":[417]},{"name":"IDS_CAP_END","features":[417]},{"name":"IDS_CAP_ERRORDIBSAVE","features":[417]},{"name":"IDS_CAP_ERRORPALOPEN","features":[417]},{"name":"IDS_CAP_ERRORPALSAVE","features":[417]},{"name":"IDS_CAP_FILEEXISTS","features":[417]},{"name":"IDS_CAP_FILE_OPEN_ERROR","features":[417]},{"name":"IDS_CAP_FILE_WRITE_ERROR","features":[417]},{"name":"IDS_CAP_INFO","features":[417]},{"name":"IDS_CAP_MCI_CANT_STEP_ERROR","features":[417]},{"name":"IDS_CAP_MCI_CONTROL_ERROR","features":[417]},{"name":"IDS_CAP_NODISKSPACE","features":[417]},{"name":"IDS_CAP_NO_AUDIO_CAP_ERROR","features":[417]},{"name":"IDS_CAP_NO_FRAME_CAP_ERROR","features":[417]},{"name":"IDS_CAP_NO_PALETTE_WARN","features":[417]},{"name":"IDS_CAP_OUTOFMEM","features":[417]},{"name":"IDS_CAP_READONLYFILE","features":[417]},{"name":"IDS_CAP_RECORDING_ERROR","features":[417]},{"name":"IDS_CAP_RECORDING_ERROR2","features":[417]},{"name":"IDS_CAP_SAVEASPERCENT","features":[417]},{"name":"IDS_CAP_SEQ_MSGSTART","features":[417]},{"name":"IDS_CAP_SEQ_MSGSTOP","features":[417]},{"name":"IDS_CAP_SETFILESIZE","features":[417]},{"name":"IDS_CAP_STAT_CAP_AUDIO","features":[417]},{"name":"IDS_CAP_STAT_CAP_FINI","features":[417]},{"name":"IDS_CAP_STAT_CAP_INIT","features":[417]},{"name":"IDS_CAP_STAT_CAP_L_FRAMES","features":[417]},{"name":"IDS_CAP_STAT_FRAMESDROPPED","features":[417]},{"name":"IDS_CAP_STAT_I_FRAMES","features":[417]},{"name":"IDS_CAP_STAT_LIVE_MODE","features":[417]},{"name":"IDS_CAP_STAT_L_FRAMES","features":[417]},{"name":"IDS_CAP_STAT_OPTPAL_BUILD","features":[417]},{"name":"IDS_CAP_STAT_OVERLAY_MODE","features":[417]},{"name":"IDS_CAP_STAT_PALETTE_BUILD","features":[417]},{"name":"IDS_CAP_STAT_VIDEOAUDIO","features":[417]},{"name":"IDS_CAP_STAT_VIDEOCURRENT","features":[417]},{"name":"IDS_CAP_STAT_VIDEOONLY","features":[417]},{"name":"IDS_CAP_VIDEDITERR","features":[417]},{"name":"IDS_CAP_VIDEO_ADD_ERROR","features":[417]},{"name":"IDS_CAP_VIDEO_ALLOC_ERROR","features":[417]},{"name":"IDS_CAP_VIDEO_OPEN_ERROR","features":[417]},{"name":"IDS_CAP_VIDEO_PREPARE_ERROR","features":[417]},{"name":"IDS_CAP_VIDEO_SIZE_ERROR","features":[417]},{"name":"IDS_CAP_WAVE_ADD_ERROR","features":[417]},{"name":"IDS_CAP_WAVE_ALLOC_ERROR","features":[417]},{"name":"IDS_CAP_WAVE_OPEN_ERROR","features":[417]},{"name":"IDS_CAP_WAVE_PREPARE_ERROR","features":[417]},{"name":"IDS_CAP_WAVE_SIZE_ERROR","features":[417]},{"name":"IDS_CAP_WRITEERROR","features":[417]},{"name":"IGetFrame","features":[417]},{"name":"IMAADPCMWAVEFORMAT","features":[418,417]},{"name":"JDD_CONFIGCHANGED","features":[417]},{"name":"JDD_GETDEVCAPS","features":[417]},{"name":"JDD_GETNUMDEVS","features":[417]},{"name":"JDD_GETPOS","features":[417]},{"name":"JDD_GETPOSEX","features":[417]},{"name":"JDD_SETCALIBRATION","features":[417]},{"name":"JIFMK_00","features":[417]},{"name":"JIFMK_APP0","features":[417]},{"name":"JIFMK_APP1","features":[417]},{"name":"JIFMK_APP2","features":[417]},{"name":"JIFMK_APP3","features":[417]},{"name":"JIFMK_APP4","features":[417]},{"name":"JIFMK_APP5","features":[417]},{"name":"JIFMK_APP6","features":[417]},{"name":"JIFMK_APP7","features":[417]},{"name":"JIFMK_COM","features":[417]},{"name":"JIFMK_DAC","features":[417]},{"name":"JIFMK_DHP","features":[417]},{"name":"JIFMK_DHT","features":[417]},{"name":"JIFMK_DNL","features":[417]},{"name":"JIFMK_DQT","features":[417]},{"name":"JIFMK_DRI","features":[417]},{"name":"JIFMK_EOI","features":[417]},{"name":"JIFMK_EXP","features":[417]},{"name":"JIFMK_FF","features":[417]},{"name":"JIFMK_JPG","features":[417]},{"name":"JIFMK_JPG0","features":[417]},{"name":"JIFMK_JPG1","features":[417]},{"name":"JIFMK_JPG10","features":[417]},{"name":"JIFMK_JPG11","features":[417]},{"name":"JIFMK_JPG12","features":[417]},{"name":"JIFMK_JPG13","features":[417]},{"name":"JIFMK_JPG2","features":[417]},{"name":"JIFMK_JPG3","features":[417]},{"name":"JIFMK_JPG4","features":[417]},{"name":"JIFMK_JPG5","features":[417]},{"name":"JIFMK_JPG6","features":[417]},{"name":"JIFMK_JPG7","features":[417]},{"name":"JIFMK_JPG8","features":[417]},{"name":"JIFMK_JPG9","features":[417]},{"name":"JIFMK_RES","features":[417]},{"name":"JIFMK_RST0","features":[417]},{"name":"JIFMK_RST1","features":[417]},{"name":"JIFMK_RST2","features":[417]},{"name":"JIFMK_RST3","features":[417]},{"name":"JIFMK_RST4","features":[417]},{"name":"JIFMK_RST5","features":[417]},{"name":"JIFMK_RST6","features":[417]},{"name":"JIFMK_RST7","features":[417]},{"name":"JIFMK_SOF0","features":[417]},{"name":"JIFMK_SOF1","features":[417]},{"name":"JIFMK_SOF10","features":[417]},{"name":"JIFMK_SOF11","features":[417]},{"name":"JIFMK_SOF13","features":[417]},{"name":"JIFMK_SOF14","features":[417]},{"name":"JIFMK_SOF15","features":[417]},{"name":"JIFMK_SOF2","features":[417]},{"name":"JIFMK_SOF3","features":[417]},{"name":"JIFMK_SOF5","features":[417]},{"name":"JIFMK_SOF6","features":[417]},{"name":"JIFMK_SOF7","features":[417]},{"name":"JIFMK_SOF9","features":[417]},{"name":"JIFMK_SOI","features":[417]},{"name":"JIFMK_SOS","features":[417]},{"name":"JIFMK_TEM","features":[417]},{"name":"JOYCAPS2A","features":[417]},{"name":"JOYCAPS2W","features":[417]},{"name":"JOYCAPSA","features":[417]},{"name":"JOYCAPSW","features":[417]},{"name":"JOYCAPS_HASPOV","features":[417]},{"name":"JOYCAPS_HASR","features":[417]},{"name":"JOYCAPS_HASU","features":[417]},{"name":"JOYCAPS_HASV","features":[417]},{"name":"JOYCAPS_HASZ","features":[417]},{"name":"JOYCAPS_POV4DIR","features":[417]},{"name":"JOYCAPS_POVCTS","features":[417]},{"name":"JOYERR_NOCANDO","features":[417]},{"name":"JOYERR_NOERROR","features":[417]},{"name":"JOYERR_PARMS","features":[417]},{"name":"JOYERR_UNPLUGGED","features":[417]},{"name":"JOYINFO","features":[417]},{"name":"JOYINFOEX","features":[417]},{"name":"JOYSTICKID1","features":[417]},{"name":"JOYSTICKID2","features":[417]},{"name":"JOY_BUTTON1","features":[417]},{"name":"JOY_BUTTON10","features":[417]},{"name":"JOY_BUTTON11","features":[417]},{"name":"JOY_BUTTON12","features":[417]},{"name":"JOY_BUTTON13","features":[417]},{"name":"JOY_BUTTON14","features":[417]},{"name":"JOY_BUTTON15","features":[417]},{"name":"JOY_BUTTON16","features":[417]},{"name":"JOY_BUTTON17","features":[417]},{"name":"JOY_BUTTON18","features":[417]},{"name":"JOY_BUTTON19","features":[417]},{"name":"JOY_BUTTON1CHG","features":[417]},{"name":"JOY_BUTTON2","features":[417]},{"name":"JOY_BUTTON20","features":[417]},{"name":"JOY_BUTTON21","features":[417]},{"name":"JOY_BUTTON22","features":[417]},{"name":"JOY_BUTTON23","features":[417]},{"name":"JOY_BUTTON24","features":[417]},{"name":"JOY_BUTTON25","features":[417]},{"name":"JOY_BUTTON26","features":[417]},{"name":"JOY_BUTTON27","features":[417]},{"name":"JOY_BUTTON28","features":[417]},{"name":"JOY_BUTTON29","features":[417]},{"name":"JOY_BUTTON2CHG","features":[417]},{"name":"JOY_BUTTON3","features":[417]},{"name":"JOY_BUTTON30","features":[417]},{"name":"JOY_BUTTON31","features":[417]},{"name":"JOY_BUTTON32","features":[417]},{"name":"JOY_BUTTON3CHG","features":[417]},{"name":"JOY_BUTTON4","features":[417]},{"name":"JOY_BUTTON4CHG","features":[417]},{"name":"JOY_BUTTON5","features":[417]},{"name":"JOY_BUTTON6","features":[417]},{"name":"JOY_BUTTON7","features":[417]},{"name":"JOY_BUTTON8","features":[417]},{"name":"JOY_BUTTON9","features":[417]},{"name":"JOY_CAL_READ3","features":[417]},{"name":"JOY_CAL_READ4","features":[417]},{"name":"JOY_CAL_READ5","features":[417]},{"name":"JOY_CAL_READ6","features":[417]},{"name":"JOY_CAL_READALWAYS","features":[417]},{"name":"JOY_CAL_READRONLY","features":[417]},{"name":"JOY_CAL_READUONLY","features":[417]},{"name":"JOY_CAL_READVONLY","features":[417]},{"name":"JOY_CAL_READXONLY","features":[417]},{"name":"JOY_CAL_READXYONLY","features":[417]},{"name":"JOY_CAL_READYONLY","features":[417]},{"name":"JOY_CAL_READZONLY","features":[417]},{"name":"JOY_CONFIGCHANGED_MSGSTRING","features":[417]},{"name":"JOY_POVBACKWARD","features":[417]},{"name":"JOY_POVFORWARD","features":[417]},{"name":"JOY_POVLEFT","features":[417]},{"name":"JOY_POVRIGHT","features":[417]},{"name":"JOY_RETURNBUTTONS","features":[417]},{"name":"JOY_RETURNCENTERED","features":[417]},{"name":"JOY_RETURNPOV","features":[417]},{"name":"JOY_RETURNPOVCTS","features":[417]},{"name":"JOY_RETURNR","features":[417]},{"name":"JOY_RETURNRAWDATA","features":[417]},{"name":"JOY_RETURNU","features":[417]},{"name":"JOY_RETURNV","features":[417]},{"name":"JOY_RETURNX","features":[417]},{"name":"JOY_RETURNY","features":[417]},{"name":"JOY_RETURNZ","features":[417]},{"name":"JOY_USEDEADZONE","features":[417]},{"name":"JPEGINFOHEADER","features":[417]},{"name":"JPEG_PROCESS_BASELINE","features":[417]},{"name":"JPEG_RGB","features":[417]},{"name":"JPEG_Y","features":[417]},{"name":"JPEG_YCbCr","features":[417]},{"name":"KSDATAFORMAT_SUBTYPE_IEEE_FLOAT","features":[417]},{"name":"LPFNEXTDEVIO","features":[303,417,308]},{"name":"LPMMIOPROC","features":[303,417]},{"name":"LPTASKCALLBACK","features":[417]},{"name":"MCIERR_AVI_AUDIOERROR","features":[417]},{"name":"MCIERR_AVI_BADPALETTE","features":[417]},{"name":"MCIERR_AVI_CANTPLAYFULLSCREEN","features":[417]},{"name":"MCIERR_AVI_DISPLAYERROR","features":[417]},{"name":"MCIERR_AVI_NOCOMPRESSOR","features":[417]},{"name":"MCIERR_AVI_NODISPDIB","features":[417]},{"name":"MCIERR_AVI_NOTINTERLEAVED","features":[417]},{"name":"MCIERR_AVI_OLDAVIFORMAT","features":[417]},{"name":"MCIERR_AVI_TOOBIGFORVGA","features":[417]},{"name":"MCIERR_BAD_CONSTANT","features":[417]},{"name":"MCIERR_BAD_INTEGER","features":[417]},{"name":"MCIERR_BAD_TIME_FORMAT","features":[417]},{"name":"MCIERR_CANNOT_LOAD_DRIVER","features":[417]},{"name":"MCIERR_CANNOT_USE_ALL","features":[417]},{"name":"MCIERR_CREATEWINDOW","features":[417]},{"name":"MCIERR_CUSTOM_DRIVER_BASE","features":[417]},{"name":"MCIERR_DEVICE_LENGTH","features":[417]},{"name":"MCIERR_DEVICE_LOCKED","features":[417]},{"name":"MCIERR_DEVICE_NOT_INSTALLED","features":[417]},{"name":"MCIERR_DEVICE_NOT_READY","features":[417]},{"name":"MCIERR_DEVICE_OPEN","features":[417]},{"name":"MCIERR_DEVICE_ORD_LENGTH","features":[417]},{"name":"MCIERR_DEVICE_TYPE_REQUIRED","features":[417]},{"name":"MCIERR_DGV_BAD_CLIPBOARD_RANGE","features":[417]},{"name":"MCIERR_DGV_DEVICE_LIMIT","features":[417]},{"name":"MCIERR_DGV_DEVICE_MEMORY_FULL","features":[417]},{"name":"MCIERR_DGV_DISK_FULL","features":[417]},{"name":"MCIERR_DGV_IOERR","features":[417]},{"name":"MCIERR_DGV_WORKSPACE_EMPTY","features":[417]},{"name":"MCIERR_DRIVER","features":[417]},{"name":"MCIERR_DRIVER_INTERNAL","features":[417]},{"name":"MCIERR_DUPLICATE_ALIAS","features":[417]},{"name":"MCIERR_DUPLICATE_FLAGS","features":[417]},{"name":"MCIERR_EXTENSION_NOT_FOUND","features":[417]},{"name":"MCIERR_EXTRA_CHARACTERS","features":[417]},{"name":"MCIERR_FILENAME_REQUIRED","features":[417]},{"name":"MCIERR_FILE_NOT_FOUND","features":[417]},{"name":"MCIERR_FILE_NOT_SAVED","features":[417]},{"name":"MCIERR_FILE_READ","features":[417]},{"name":"MCIERR_FILE_WRITE","features":[417]},{"name":"MCIERR_FLAGS_NOT_COMPATIBLE","features":[417]},{"name":"MCIERR_GET_CD","features":[417]},{"name":"MCIERR_HARDWARE","features":[417]},{"name":"MCIERR_ILLEGAL_FOR_AUTO_OPEN","features":[417]},{"name":"MCIERR_INTERNAL","features":[417]},{"name":"MCIERR_INVALID_DEVICE_ID","features":[417]},{"name":"MCIERR_INVALID_DEVICE_NAME","features":[417]},{"name":"MCIERR_INVALID_FILE","features":[417]},{"name":"MCIERR_MISSING_COMMAND_STRING","features":[417]},{"name":"MCIERR_MISSING_DEVICE_NAME","features":[417]},{"name":"MCIERR_MISSING_PARAMETER","features":[417]},{"name":"MCIERR_MISSING_STRING_ARGUMENT","features":[417]},{"name":"MCIERR_MULTIPLE","features":[417]},{"name":"MCIERR_MUST_USE_SHAREABLE","features":[417]},{"name":"MCIERR_NEW_REQUIRES_ALIAS","features":[417]},{"name":"MCIERR_NONAPPLICABLE_FUNCTION","features":[417]},{"name":"MCIERR_NOTIFY_ON_AUTO_OPEN","features":[417]},{"name":"MCIERR_NO_CLOSING_QUOTE","features":[417]},{"name":"MCIERR_NO_ELEMENT_ALLOWED","features":[417]},{"name":"MCIERR_NO_IDENTITY","features":[417]},{"name":"MCIERR_NO_INTEGER","features":[417]},{"name":"MCIERR_NO_WINDOW","features":[417]},{"name":"MCIERR_NULL_PARAMETER_BLOCK","features":[417]},{"name":"MCIERR_OUTOFRANGE","features":[417]},{"name":"MCIERR_OUT_OF_MEMORY","features":[417]},{"name":"MCIERR_PARAM_OVERFLOW","features":[417]},{"name":"MCIERR_PARSER_INTERNAL","features":[417]},{"name":"MCIERR_SEQ_DIV_INCOMPATIBLE","features":[417]},{"name":"MCIERR_SEQ_NOMIDIPRESENT","features":[417]},{"name":"MCIERR_SEQ_PORTUNSPECIFIED","features":[417]},{"name":"MCIERR_SEQ_PORT_INUSE","features":[417]},{"name":"MCIERR_SEQ_PORT_MAPNODEVICE","features":[417]},{"name":"MCIERR_SEQ_PORT_MISCERROR","features":[417]},{"name":"MCIERR_SEQ_PORT_NONEXISTENT","features":[417]},{"name":"MCIERR_SEQ_TIMER","features":[417]},{"name":"MCIERR_SET_CD","features":[417]},{"name":"MCIERR_SET_DRIVE","features":[417]},{"name":"MCIERR_UNNAMED_RESOURCE","features":[417]},{"name":"MCIERR_UNRECOGNIZED_COMMAND","features":[417]},{"name":"MCIERR_UNRECOGNIZED_KEYWORD","features":[417]},{"name":"MCIERR_UNSUPPORTED_FUNCTION","features":[417]},{"name":"MCIERR_WAVE_INPUTSINUSE","features":[417]},{"name":"MCIERR_WAVE_INPUTSUNSUITABLE","features":[417]},{"name":"MCIERR_WAVE_INPUTUNSPECIFIED","features":[417]},{"name":"MCIERR_WAVE_OUTPUTSINUSE","features":[417]},{"name":"MCIERR_WAVE_OUTPUTSUNSUITABLE","features":[417]},{"name":"MCIERR_WAVE_OUTPUTUNSPECIFIED","features":[417]},{"name":"MCIERR_WAVE_SETINPUTINUSE","features":[417]},{"name":"MCIERR_WAVE_SETINPUTUNSUITABLE","features":[417]},{"name":"MCIERR_WAVE_SETOUTPUTINUSE","features":[417]},{"name":"MCIERR_WAVE_SETOUTPUTUNSUITABLE","features":[417]},{"name":"MCIWNDF_NOAUTOSIZEMOVIE","features":[417]},{"name":"MCIWNDF_NOAUTOSIZEWINDOW","features":[417]},{"name":"MCIWNDF_NOERRORDLG","features":[417]},{"name":"MCIWNDF_NOMENU","features":[417]},{"name":"MCIWNDF_NOOPEN","features":[417]},{"name":"MCIWNDF_NOPLAYBAR","features":[417]},{"name":"MCIWNDF_NOTIFYALL","features":[417]},{"name":"MCIWNDF_NOTIFYANSI","features":[417]},{"name":"MCIWNDF_NOTIFYERROR","features":[417]},{"name":"MCIWNDF_NOTIFYMEDIA","features":[417]},{"name":"MCIWNDF_NOTIFYMEDIAA","features":[417]},{"name":"MCIWNDF_NOTIFYMEDIAW","features":[417]},{"name":"MCIWNDF_NOTIFYMODE","features":[417]},{"name":"MCIWNDF_NOTIFYPOS","features":[417]},{"name":"MCIWNDF_NOTIFYSIZE","features":[417]},{"name":"MCIWNDF_RECORD","features":[417]},{"name":"MCIWNDF_SHOWALL","features":[417]},{"name":"MCIWNDF_SHOWMODE","features":[417]},{"name":"MCIWNDF_SHOWNAME","features":[417]},{"name":"MCIWNDF_SHOWPOS","features":[417]},{"name":"MCIWNDM_CAN_CONFIG","features":[417]},{"name":"MCIWNDM_CAN_EJECT","features":[417]},{"name":"MCIWNDM_CAN_PLAY","features":[417]},{"name":"MCIWNDM_CAN_RECORD","features":[417]},{"name":"MCIWNDM_CAN_SAVE","features":[417]},{"name":"MCIWNDM_CAN_WINDOW","features":[417]},{"name":"MCIWNDM_CHANGESTYLES","features":[417]},{"name":"MCIWNDM_EJECT","features":[417]},{"name":"MCIWNDM_GETACTIVETIMER","features":[417]},{"name":"MCIWNDM_GETALIAS","features":[417]},{"name":"MCIWNDM_GETDEVICE","features":[417]},{"name":"MCIWNDM_GETDEVICEA","features":[417]},{"name":"MCIWNDM_GETDEVICEID","features":[417]},{"name":"MCIWNDM_GETDEVICEW","features":[417]},{"name":"MCIWNDM_GETEND","features":[417]},{"name":"MCIWNDM_GETERROR","features":[417]},{"name":"MCIWNDM_GETERRORA","features":[417]},{"name":"MCIWNDM_GETERRORW","features":[417]},{"name":"MCIWNDM_GETFILENAME","features":[417]},{"name":"MCIWNDM_GETFILENAMEA","features":[417]},{"name":"MCIWNDM_GETFILENAMEW","features":[417]},{"name":"MCIWNDM_GETINACTIVETIMER","features":[417]},{"name":"MCIWNDM_GETLENGTH","features":[417]},{"name":"MCIWNDM_GETMODE","features":[417]},{"name":"MCIWNDM_GETMODEA","features":[417]},{"name":"MCIWNDM_GETMODEW","features":[417]},{"name":"MCIWNDM_GETPALETTE","features":[417]},{"name":"MCIWNDM_GETPOSITION","features":[417]},{"name":"MCIWNDM_GETPOSITIONA","features":[417]},{"name":"MCIWNDM_GETPOSITIONW","features":[417]},{"name":"MCIWNDM_GETREPEAT","features":[417]},{"name":"MCIWNDM_GETSPEED","features":[417]},{"name":"MCIWNDM_GETSTART","features":[417]},{"name":"MCIWNDM_GETSTYLES","features":[417]},{"name":"MCIWNDM_GETTIMEFORMAT","features":[417]},{"name":"MCIWNDM_GETTIMEFORMATA","features":[417]},{"name":"MCIWNDM_GETTIMEFORMATW","features":[417]},{"name":"MCIWNDM_GETVOLUME","features":[417]},{"name":"MCIWNDM_GETZOOM","features":[417]},{"name":"MCIWNDM_GET_DEST","features":[417]},{"name":"MCIWNDM_GET_SOURCE","features":[417]},{"name":"MCIWNDM_NEW","features":[417]},{"name":"MCIWNDM_NEWA","features":[417]},{"name":"MCIWNDM_NEWW","features":[417]},{"name":"MCIWNDM_NOTIFYERROR","features":[417]},{"name":"MCIWNDM_NOTIFYMEDIA","features":[417]},{"name":"MCIWNDM_NOTIFYMODE","features":[417]},{"name":"MCIWNDM_NOTIFYPOS","features":[417]},{"name":"MCIWNDM_NOTIFYSIZE","features":[417]},{"name":"MCIWNDM_OPEN","features":[417]},{"name":"MCIWNDM_OPENA","features":[417]},{"name":"MCIWNDM_OPENINTERFACE","features":[417]},{"name":"MCIWNDM_OPENW","features":[417]},{"name":"MCIWNDM_PALETTEKICK","features":[417]},{"name":"MCIWNDM_PLAYFROM","features":[417]},{"name":"MCIWNDM_PLAYREVERSE","features":[417]},{"name":"MCIWNDM_PLAYTO","features":[417]},{"name":"MCIWNDM_PUT_DEST","features":[417]},{"name":"MCIWNDM_PUT_SOURCE","features":[417]},{"name":"MCIWNDM_REALIZE","features":[417]},{"name":"MCIWNDM_RETURNSTRING","features":[417]},{"name":"MCIWNDM_RETURNSTRINGA","features":[417]},{"name":"MCIWNDM_RETURNSTRINGW","features":[417]},{"name":"MCIWNDM_SENDSTRING","features":[417]},{"name":"MCIWNDM_SENDSTRINGA","features":[417]},{"name":"MCIWNDM_SENDSTRINGW","features":[417]},{"name":"MCIWNDM_SETACTIVETIMER","features":[417]},{"name":"MCIWNDM_SETINACTIVETIMER","features":[417]},{"name":"MCIWNDM_SETOWNER","features":[417]},{"name":"MCIWNDM_SETPALETTE","features":[417]},{"name":"MCIWNDM_SETREPEAT","features":[417]},{"name":"MCIWNDM_SETSPEED","features":[417]},{"name":"MCIWNDM_SETTIMEFORMAT","features":[417]},{"name":"MCIWNDM_SETTIMEFORMATA","features":[417]},{"name":"MCIWNDM_SETTIMEFORMATW","features":[417]},{"name":"MCIWNDM_SETTIMERS","features":[417]},{"name":"MCIWNDM_SETVOLUME","features":[417]},{"name":"MCIWNDM_SETZOOM","features":[417]},{"name":"MCIWNDM_VALIDATEMEDIA","features":[417]},{"name":"MCIWNDOPENF_NEW","features":[417]},{"name":"MCIWND_END","features":[417]},{"name":"MCIWND_START","features":[417]},{"name":"MCIWND_WINDOW_CLASS","features":[417]},{"name":"MCIWndCreateA","features":[303,417]},{"name":"MCIWndCreateW","features":[303,417]},{"name":"MCIWndRegisterClass","features":[303,417]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_REVERSE","features":[417]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_STRETCH","features":[417]},{"name":"MCI_ANIM_GETDEVCAPS_FAST_RATE","features":[417]},{"name":"MCI_ANIM_GETDEVCAPS_MAX_WINDOWS","features":[417]},{"name":"MCI_ANIM_GETDEVCAPS_NORMAL_RATE","features":[417]},{"name":"MCI_ANIM_GETDEVCAPS_PALETTES","features":[417]},{"name":"MCI_ANIM_GETDEVCAPS_SLOW_RATE","features":[417]},{"name":"MCI_ANIM_INFO_TEXT","features":[417]},{"name":"MCI_ANIM_OPEN_NOSTATIC","features":[417]},{"name":"MCI_ANIM_OPEN_PARENT","features":[417]},{"name":"MCI_ANIM_OPEN_PARMSA","features":[303,417]},{"name":"MCI_ANIM_OPEN_PARMSW","features":[303,417]},{"name":"MCI_ANIM_OPEN_WS","features":[417]},{"name":"MCI_ANIM_PLAY_FAST","features":[417]},{"name":"MCI_ANIM_PLAY_PARMS","features":[417]},{"name":"MCI_ANIM_PLAY_REVERSE","features":[417]},{"name":"MCI_ANIM_PLAY_SCAN","features":[417]},{"name":"MCI_ANIM_PLAY_SLOW","features":[417]},{"name":"MCI_ANIM_PLAY_SPEED","features":[417]},{"name":"MCI_ANIM_PUT_DESTINATION","features":[417]},{"name":"MCI_ANIM_PUT_SOURCE","features":[417]},{"name":"MCI_ANIM_REALIZE_BKGD","features":[417]},{"name":"MCI_ANIM_REALIZE_NORM","features":[417]},{"name":"MCI_ANIM_RECT","features":[417]},{"name":"MCI_ANIM_RECT_PARMS","features":[303,417]},{"name":"MCI_ANIM_STATUS_FORWARD","features":[417]},{"name":"MCI_ANIM_STATUS_HPAL","features":[417]},{"name":"MCI_ANIM_STATUS_HWND","features":[417]},{"name":"MCI_ANIM_STATUS_SPEED","features":[417]},{"name":"MCI_ANIM_STATUS_STRETCH","features":[417]},{"name":"MCI_ANIM_STEP_FRAMES","features":[417]},{"name":"MCI_ANIM_STEP_PARMS","features":[417]},{"name":"MCI_ANIM_STEP_REVERSE","features":[417]},{"name":"MCI_ANIM_UPDATE_HDC","features":[417]},{"name":"MCI_ANIM_UPDATE_PARMS","features":[303,314,417]},{"name":"MCI_ANIM_WHERE_DESTINATION","features":[417]},{"name":"MCI_ANIM_WHERE_SOURCE","features":[417]},{"name":"MCI_ANIM_WINDOW_DEFAULT","features":[417]},{"name":"MCI_ANIM_WINDOW_DISABLE_STRETCH","features":[417]},{"name":"MCI_ANIM_WINDOW_ENABLE_STRETCH","features":[417]},{"name":"MCI_ANIM_WINDOW_HWND","features":[417]},{"name":"MCI_ANIM_WINDOW_PARMSA","features":[303,417]},{"name":"MCI_ANIM_WINDOW_PARMSW","features":[303,417]},{"name":"MCI_ANIM_WINDOW_STATE","features":[417]},{"name":"MCI_ANIM_WINDOW_TEXT","features":[417]},{"name":"MCI_AVI_SETVIDEO_DRAW_PROCEDURE","features":[417]},{"name":"MCI_AVI_SETVIDEO_PALETTE_COLOR","features":[417]},{"name":"MCI_AVI_SETVIDEO_PALETTE_HALFTONE","features":[417]},{"name":"MCI_AVI_STATUS_AUDIO_BREAKS","features":[417]},{"name":"MCI_AVI_STATUS_FRAMES_SKIPPED","features":[417]},{"name":"MCI_AVI_STATUS_LAST_PLAY_SPEED","features":[417]},{"name":"MCI_BREAK","features":[417]},{"name":"MCI_BREAK_HWND","features":[417]},{"name":"MCI_BREAK_KEY","features":[417]},{"name":"MCI_BREAK_OFF","features":[417]},{"name":"MCI_BREAK_PARMS","features":[303,417]},{"name":"MCI_CAPTURE","features":[417]},{"name":"MCI_CDA_STATUS_TYPE_TRACK","features":[417]},{"name":"MCI_CDA_TRACK_AUDIO","features":[417]},{"name":"MCI_CDA_TRACK_OTHER","features":[417]},{"name":"MCI_CLOSE","features":[417]},{"name":"MCI_CLOSE_DRIVER","features":[417]},{"name":"MCI_COLONIZED3_RETURN","features":[417]},{"name":"MCI_COLONIZED4_RETURN","features":[417]},{"name":"MCI_COMMAND_HEAD","features":[417]},{"name":"MCI_CONFIGURE","features":[417]},{"name":"MCI_CONSTANT","features":[417]},{"name":"MCI_COPY","features":[417]},{"name":"MCI_CUE","features":[417]},{"name":"MCI_CUT","features":[417]},{"name":"MCI_DELETE","features":[417]},{"name":"MCI_DEVTYPE_ANIMATION","features":[417]},{"name":"MCI_DEVTYPE_CD_AUDIO","features":[417]},{"name":"MCI_DEVTYPE_DAT","features":[417]},{"name":"MCI_DEVTYPE_DIGITAL_VIDEO","features":[417]},{"name":"MCI_DEVTYPE_FIRST","features":[417]},{"name":"MCI_DEVTYPE_FIRST_USER","features":[417]},{"name":"MCI_DEVTYPE_LAST","features":[417]},{"name":"MCI_DEVTYPE_OTHER","features":[417]},{"name":"MCI_DEVTYPE_OVERLAY","features":[417]},{"name":"MCI_DEVTYPE_SCANNER","features":[417]},{"name":"MCI_DEVTYPE_SEQUENCER","features":[417]},{"name":"MCI_DEVTYPE_VCR","features":[417]},{"name":"MCI_DEVTYPE_VIDEODISC","features":[417]},{"name":"MCI_DEVTYPE_WAVEFORM_AUDIO","features":[417]},{"name":"MCI_DGV_CAPTURE_AS","features":[417]},{"name":"MCI_DGV_CAPTURE_AT","features":[417]},{"name":"MCI_DGV_CAPTURE_PARMSA","features":[303,417]},{"name":"MCI_DGV_CAPTURE_PARMSW","features":[303,417]},{"name":"MCI_DGV_COPY_AT","features":[417]},{"name":"MCI_DGV_COPY_AUDIO_STREAM","features":[417]},{"name":"MCI_DGV_COPY_PARMS","features":[303,417]},{"name":"MCI_DGV_COPY_VIDEO_STREAM","features":[417]},{"name":"MCI_DGV_CUE_INPUT","features":[417]},{"name":"MCI_DGV_CUE_NOSHOW","features":[417]},{"name":"MCI_DGV_CUE_OUTPUT","features":[417]},{"name":"MCI_DGV_CUE_PARMS","features":[417]},{"name":"MCI_DGV_CUT_AT","features":[417]},{"name":"MCI_DGV_CUT_AUDIO_STREAM","features":[417]},{"name":"MCI_DGV_CUT_PARMS","features":[303,417]},{"name":"MCI_DGV_CUT_VIDEO_STREAM","features":[417]},{"name":"MCI_DGV_DELETE_AT","features":[417]},{"name":"MCI_DGV_DELETE_AUDIO_STREAM","features":[417]},{"name":"MCI_DGV_DELETE_PARMS","features":[303,417]},{"name":"MCI_DGV_DELETE_VIDEO_STREAM","features":[417]},{"name":"MCI_DGV_FF_AVI","features":[417]},{"name":"MCI_DGV_FF_AVSS","features":[417]},{"name":"MCI_DGV_FF_DIB","features":[417]},{"name":"MCI_DGV_FF_JFIF","features":[417]},{"name":"MCI_DGV_FF_JPEG","features":[417]},{"name":"MCI_DGV_FF_MPEG","features":[417]},{"name":"MCI_DGV_FF_RDIB","features":[417]},{"name":"MCI_DGV_FF_RJPEG","features":[417]},{"name":"MCI_DGV_FILE_MODE_EDITING","features":[417]},{"name":"MCI_DGV_FILE_MODE_EDITING_S","features":[417]},{"name":"MCI_DGV_FILE_MODE_IDLE","features":[417]},{"name":"MCI_DGV_FILE_MODE_IDLE_S","features":[417]},{"name":"MCI_DGV_FILE_MODE_LOADING","features":[417]},{"name":"MCI_DGV_FILE_MODE_LOADING_S","features":[417]},{"name":"MCI_DGV_FILE_MODE_SAVING","features":[417]},{"name":"MCI_DGV_FILE_MODE_SAVING_S","features":[417]},{"name":"MCI_DGV_FILE_S","features":[417]},{"name":"MCI_DGV_FREEZE_AT","features":[417]},{"name":"MCI_DGV_FREEZE_OUTSIDE","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_CAN_FREEZE","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_CAN_LOCK","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_CAN_REVERSE","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STRETCH","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STR_IN","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_CAN_TEST","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_HAS_STILL","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_MAXIMUM_RATE","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_MAX_WINDOWS","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_MINIMUM_RATE","features":[417]},{"name":"MCI_DGV_GETDEVCAPS_PALETTES","features":[417]},{"name":"MCI_DGV_INFO_AUDIO_ALG","features":[417]},{"name":"MCI_DGV_INFO_AUDIO_QUALITY","features":[417]},{"name":"MCI_DGV_INFO_ITEM","features":[417]},{"name":"MCI_DGV_INFO_PARMSA","features":[417]},{"name":"MCI_DGV_INFO_PARMSW","features":[417]},{"name":"MCI_DGV_INFO_STILL_ALG","features":[417]},{"name":"MCI_DGV_INFO_STILL_QUALITY","features":[417]},{"name":"MCI_DGV_INFO_TEXT","features":[417]},{"name":"MCI_DGV_INFO_USAGE","features":[417]},{"name":"MCI_DGV_INFO_VIDEO_ALG","features":[417]},{"name":"MCI_DGV_INFO_VIDEO_QUALITY","features":[417]},{"name":"MCI_DGV_INPUT_S","features":[417]},{"name":"MCI_DGV_LIST_ALG","features":[417]},{"name":"MCI_DGV_LIST_AUDIO_ALG","features":[417]},{"name":"MCI_DGV_LIST_AUDIO_QUALITY","features":[417]},{"name":"MCI_DGV_LIST_AUDIO_STREAM","features":[417]},{"name":"MCI_DGV_LIST_COUNT","features":[417]},{"name":"MCI_DGV_LIST_ITEM","features":[417]},{"name":"MCI_DGV_LIST_NUMBER","features":[417]},{"name":"MCI_DGV_LIST_PARMSA","features":[417]},{"name":"MCI_DGV_LIST_PARMSW","features":[417]},{"name":"MCI_DGV_LIST_STILL_ALG","features":[417]},{"name":"MCI_DGV_LIST_STILL_QUALITY","features":[417]},{"name":"MCI_DGV_LIST_VIDEO_ALG","features":[417]},{"name":"MCI_DGV_LIST_VIDEO_QUALITY","features":[417]},{"name":"MCI_DGV_LIST_VIDEO_SOURCE","features":[417]},{"name":"MCI_DGV_LIST_VIDEO_STREAM","features":[417]},{"name":"MCI_DGV_METHOD_DIRECT","features":[417]},{"name":"MCI_DGV_METHOD_POST","features":[417]},{"name":"MCI_DGV_METHOD_PRE","features":[417]},{"name":"MCI_DGV_MONITOR_FILE","features":[417]},{"name":"MCI_DGV_MONITOR_INPUT","features":[417]},{"name":"MCI_DGV_MONITOR_METHOD","features":[417]},{"name":"MCI_DGV_MONITOR_PARMS","features":[417]},{"name":"MCI_DGV_MONITOR_SOURCE","features":[417]},{"name":"MCI_DGV_OPEN_16BIT","features":[417]},{"name":"MCI_DGV_OPEN_32BIT","features":[417]},{"name":"MCI_DGV_OPEN_NOSTATIC","features":[417]},{"name":"MCI_DGV_OPEN_PARENT","features":[417]},{"name":"MCI_DGV_OPEN_PARMSA","features":[303,417]},{"name":"MCI_DGV_OPEN_PARMSW","features":[303,417]},{"name":"MCI_DGV_OPEN_WS","features":[417]},{"name":"MCI_DGV_PASTE_AT","features":[417]},{"name":"MCI_DGV_PASTE_AUDIO_STREAM","features":[417]},{"name":"MCI_DGV_PASTE_INSERT","features":[417]},{"name":"MCI_DGV_PASTE_OVERWRITE","features":[417]},{"name":"MCI_DGV_PASTE_PARMS","features":[303,417]},{"name":"MCI_DGV_PASTE_VIDEO_STREAM","features":[417]},{"name":"MCI_DGV_PLAY_REPEAT","features":[417]},{"name":"MCI_DGV_PLAY_REVERSE","features":[417]},{"name":"MCI_DGV_PUT_CLIENT","features":[417]},{"name":"MCI_DGV_PUT_DESTINATION","features":[417]},{"name":"MCI_DGV_PUT_FRAME","features":[417]},{"name":"MCI_DGV_PUT_SOURCE","features":[417]},{"name":"MCI_DGV_PUT_VIDEO","features":[417]},{"name":"MCI_DGV_PUT_WINDOW","features":[417]},{"name":"MCI_DGV_QUALITY_PARMSA","features":[417]},{"name":"MCI_DGV_QUALITY_PARMSW","features":[417]},{"name":"MCI_DGV_REALIZE_BKGD","features":[417]},{"name":"MCI_DGV_REALIZE_NORM","features":[417]},{"name":"MCI_DGV_RECORD_AUDIO_STREAM","features":[417]},{"name":"MCI_DGV_RECORD_HOLD","features":[417]},{"name":"MCI_DGV_RECORD_PARMS","features":[303,417]},{"name":"MCI_DGV_RECORD_VIDEO_STREAM","features":[417]},{"name":"MCI_DGV_RECT","features":[417]},{"name":"MCI_DGV_RECT_PARMS","features":[303,417]},{"name":"MCI_DGV_RESERVE_IN","features":[417]},{"name":"MCI_DGV_RESERVE_PARMSA","features":[417]},{"name":"MCI_DGV_RESERVE_PARMSW","features":[417]},{"name":"MCI_DGV_RESERVE_SIZE","features":[417]},{"name":"MCI_DGV_RESTORE_AT","features":[417]},{"name":"MCI_DGV_RESTORE_FROM","features":[417]},{"name":"MCI_DGV_RESTORE_PARMSA","features":[303,417]},{"name":"MCI_DGV_RESTORE_PARMSW","features":[303,417]},{"name":"MCI_DGV_SAVE_ABORT","features":[417]},{"name":"MCI_DGV_SAVE_KEEPRESERVE","features":[417]},{"name":"MCI_DGV_SAVE_PARMSA","features":[303,417]},{"name":"MCI_DGV_SAVE_PARMSW","features":[303,417]},{"name":"MCI_DGV_SETAUDIO_ALG","features":[417]},{"name":"MCI_DGV_SETAUDIO_AVGBYTESPERSEC","features":[417]},{"name":"MCI_DGV_SETAUDIO_BASS","features":[417]},{"name":"MCI_DGV_SETAUDIO_BITSPERSAMPLE","features":[417]},{"name":"MCI_DGV_SETAUDIO_BLOCKALIGN","features":[417]},{"name":"MCI_DGV_SETAUDIO_CLOCKTIME","features":[417]},{"name":"MCI_DGV_SETAUDIO_INPUT","features":[417]},{"name":"MCI_DGV_SETAUDIO_ITEM","features":[417]},{"name":"MCI_DGV_SETAUDIO_LEFT","features":[417]},{"name":"MCI_DGV_SETAUDIO_OUTPUT","features":[417]},{"name":"MCI_DGV_SETAUDIO_OVER","features":[417]},{"name":"MCI_DGV_SETAUDIO_PARMSA","features":[417]},{"name":"MCI_DGV_SETAUDIO_PARMSW","features":[417]},{"name":"MCI_DGV_SETAUDIO_QUALITY","features":[417]},{"name":"MCI_DGV_SETAUDIO_RECORD","features":[417]},{"name":"MCI_DGV_SETAUDIO_RIGHT","features":[417]},{"name":"MCI_DGV_SETAUDIO_SAMPLESPERSEC","features":[417]},{"name":"MCI_DGV_SETAUDIO_SOURCE","features":[417]},{"name":"MCI_DGV_SETAUDIO_SOURCE_AVERAGE","features":[417]},{"name":"MCI_DGV_SETAUDIO_SOURCE_LEFT","features":[417]},{"name":"MCI_DGV_SETAUDIO_SOURCE_RIGHT","features":[417]},{"name":"MCI_DGV_SETAUDIO_SOURCE_STEREO","features":[417]},{"name":"MCI_DGV_SETAUDIO_SRC_AVERAGE_S","features":[417]},{"name":"MCI_DGV_SETAUDIO_SRC_LEFT_S","features":[417]},{"name":"MCI_DGV_SETAUDIO_SRC_RIGHT_S","features":[417]},{"name":"MCI_DGV_SETAUDIO_SRC_STEREO_S","features":[417]},{"name":"MCI_DGV_SETAUDIO_STREAM","features":[417]},{"name":"MCI_DGV_SETAUDIO_TREBLE","features":[417]},{"name":"MCI_DGV_SETAUDIO_VALUE","features":[417]},{"name":"MCI_DGV_SETAUDIO_VOLUME","features":[417]},{"name":"MCI_DGV_SETVIDEO_ALG","features":[417]},{"name":"MCI_DGV_SETVIDEO_BITSPERPEL","features":[417]},{"name":"MCI_DGV_SETVIDEO_BRIGHTNESS","features":[417]},{"name":"MCI_DGV_SETVIDEO_CLOCKTIME","features":[417]},{"name":"MCI_DGV_SETVIDEO_COLOR","features":[417]},{"name":"MCI_DGV_SETVIDEO_CONTRAST","features":[417]},{"name":"MCI_DGV_SETVIDEO_FRAME_RATE","features":[417]},{"name":"MCI_DGV_SETVIDEO_GAMMA","features":[417]},{"name":"MCI_DGV_SETVIDEO_INPUT","features":[417]},{"name":"MCI_DGV_SETVIDEO_ITEM","features":[417]},{"name":"MCI_DGV_SETVIDEO_KEY_COLOR","features":[417]},{"name":"MCI_DGV_SETVIDEO_KEY_INDEX","features":[417]},{"name":"MCI_DGV_SETVIDEO_OUTPUT","features":[417]},{"name":"MCI_DGV_SETVIDEO_OVER","features":[417]},{"name":"MCI_DGV_SETVIDEO_PALHANDLE","features":[417]},{"name":"MCI_DGV_SETVIDEO_PARMSA","features":[417]},{"name":"MCI_DGV_SETVIDEO_PARMSW","features":[417]},{"name":"MCI_DGV_SETVIDEO_QUALITY","features":[417]},{"name":"MCI_DGV_SETVIDEO_RECORD","features":[417]},{"name":"MCI_DGV_SETVIDEO_SHARPNESS","features":[417]},{"name":"MCI_DGV_SETVIDEO_SOURCE","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC_S","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC_S","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_NUMBER","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL_S","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB_S","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM_S","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO","features":[417]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO_S","features":[417]},{"name":"MCI_DGV_SETVIDEO_STILL","features":[417]},{"name":"MCI_DGV_SETVIDEO_STREAM","features":[417]},{"name":"MCI_DGV_SETVIDEO_TINT","features":[417]},{"name":"MCI_DGV_SETVIDEO_VALUE","features":[417]},{"name":"MCI_DGV_SET_FILEFORMAT","features":[417]},{"name":"MCI_DGV_SET_PARMS","features":[417]},{"name":"MCI_DGV_SET_SEEK_EXACTLY","features":[417]},{"name":"MCI_DGV_SET_SPEED","features":[417]},{"name":"MCI_DGV_SET_STILL","features":[417]},{"name":"MCI_DGV_SIGNAL_AT","features":[417]},{"name":"MCI_DGV_SIGNAL_CANCEL","features":[417]},{"name":"MCI_DGV_SIGNAL_EVERY","features":[417]},{"name":"MCI_DGV_SIGNAL_PARMS","features":[417]},{"name":"MCI_DGV_SIGNAL_POSITION","features":[417]},{"name":"MCI_DGV_SIGNAL_USERVAL","features":[417]},{"name":"MCI_DGV_STATUS_AUDIO","features":[417]},{"name":"MCI_DGV_STATUS_AUDIO_INPUT","features":[417]},{"name":"MCI_DGV_STATUS_AUDIO_RECORD","features":[417]},{"name":"MCI_DGV_STATUS_AUDIO_SOURCE","features":[417]},{"name":"MCI_DGV_STATUS_AUDIO_STREAM","features":[417]},{"name":"MCI_DGV_STATUS_AVGBYTESPERSEC","features":[417]},{"name":"MCI_DGV_STATUS_BASS","features":[417]},{"name":"MCI_DGV_STATUS_BITSPERPEL","features":[417]},{"name":"MCI_DGV_STATUS_BITSPERSAMPLE","features":[417]},{"name":"MCI_DGV_STATUS_BLOCKALIGN","features":[417]},{"name":"MCI_DGV_STATUS_BRIGHTNESS","features":[417]},{"name":"MCI_DGV_STATUS_COLOR","features":[417]},{"name":"MCI_DGV_STATUS_CONTRAST","features":[417]},{"name":"MCI_DGV_STATUS_DISKSPACE","features":[417]},{"name":"MCI_DGV_STATUS_FILEFORMAT","features":[417]},{"name":"MCI_DGV_STATUS_FILE_COMPLETION","features":[417]},{"name":"MCI_DGV_STATUS_FILE_MODE","features":[417]},{"name":"MCI_DGV_STATUS_FORWARD","features":[417]},{"name":"MCI_DGV_STATUS_FRAME_RATE","features":[417]},{"name":"MCI_DGV_STATUS_GAMMA","features":[417]},{"name":"MCI_DGV_STATUS_HPAL","features":[417]},{"name":"MCI_DGV_STATUS_HWND","features":[417]},{"name":"MCI_DGV_STATUS_INPUT","features":[417]},{"name":"MCI_DGV_STATUS_KEY_COLOR","features":[417]},{"name":"MCI_DGV_STATUS_KEY_INDEX","features":[417]},{"name":"MCI_DGV_STATUS_LEFT","features":[417]},{"name":"MCI_DGV_STATUS_MONITOR","features":[417]},{"name":"MCI_DGV_STATUS_MONITOR_METHOD","features":[417]},{"name":"MCI_DGV_STATUS_NOMINAL","features":[417]},{"name":"MCI_DGV_STATUS_OUTPUT","features":[417]},{"name":"MCI_DGV_STATUS_PARMSA","features":[417]},{"name":"MCI_DGV_STATUS_PARMSW","features":[417]},{"name":"MCI_DGV_STATUS_PAUSE_MODE","features":[417]},{"name":"MCI_DGV_STATUS_RECORD","features":[417]},{"name":"MCI_DGV_STATUS_REFERENCE","features":[417]},{"name":"MCI_DGV_STATUS_RIGHT","features":[417]},{"name":"MCI_DGV_STATUS_SAMPLESPERSEC","features":[417]},{"name":"MCI_DGV_STATUS_SEEK_EXACTLY","features":[417]},{"name":"MCI_DGV_STATUS_SHARPNESS","features":[417]},{"name":"MCI_DGV_STATUS_SIZE","features":[417]},{"name":"MCI_DGV_STATUS_SMPTE","features":[417]},{"name":"MCI_DGV_STATUS_SPEED","features":[417]},{"name":"MCI_DGV_STATUS_STILL_FILEFORMAT","features":[417]},{"name":"MCI_DGV_STATUS_TINT","features":[417]},{"name":"MCI_DGV_STATUS_TREBLE","features":[417]},{"name":"MCI_DGV_STATUS_UNSAVED","features":[417]},{"name":"MCI_DGV_STATUS_VIDEO","features":[417]},{"name":"MCI_DGV_STATUS_VIDEO_RECORD","features":[417]},{"name":"MCI_DGV_STATUS_VIDEO_SOURCE","features":[417]},{"name":"MCI_DGV_STATUS_VIDEO_SRC_NUM","features":[417]},{"name":"MCI_DGV_STATUS_VIDEO_STREAM","features":[417]},{"name":"MCI_DGV_STATUS_VOLUME","features":[417]},{"name":"MCI_DGV_STATUS_WINDOW_MAXIMIZED","features":[417]},{"name":"MCI_DGV_STATUS_WINDOW_MINIMIZED","features":[417]},{"name":"MCI_DGV_STATUS_WINDOW_VISIBLE","features":[417]},{"name":"MCI_DGV_STEP_FRAMES","features":[417]},{"name":"MCI_DGV_STEP_PARMS","features":[417]},{"name":"MCI_DGV_STEP_REVERSE","features":[417]},{"name":"MCI_DGV_STOP_HOLD","features":[417]},{"name":"MCI_DGV_UPDATE_HDC","features":[417]},{"name":"MCI_DGV_UPDATE_PAINT","features":[417]},{"name":"MCI_DGV_UPDATE_PARMS","features":[303,314,417]},{"name":"MCI_DGV_WHERE_DESTINATION","features":[417]},{"name":"MCI_DGV_WHERE_FRAME","features":[417]},{"name":"MCI_DGV_WHERE_MAX","features":[417]},{"name":"MCI_DGV_WHERE_SOURCE","features":[417]},{"name":"MCI_DGV_WHERE_VIDEO","features":[417]},{"name":"MCI_DGV_WHERE_WINDOW","features":[417]},{"name":"MCI_DGV_WINDOW_DEFAULT","features":[417]},{"name":"MCI_DGV_WINDOW_HWND","features":[417]},{"name":"MCI_DGV_WINDOW_PARMSA","features":[303,417]},{"name":"MCI_DGV_WINDOW_PARMSW","features":[303,417]},{"name":"MCI_DGV_WINDOW_STATE","features":[417]},{"name":"MCI_DGV_WINDOW_TEXT","features":[417]},{"name":"MCI_END_COMMAND","features":[417]},{"name":"MCI_END_COMMAND_LIST","features":[417]},{"name":"MCI_END_CONSTANT","features":[417]},{"name":"MCI_ESCAPE","features":[417]},{"name":"MCI_FALSE","features":[417]},{"name":"MCI_FIRST","features":[417]},{"name":"MCI_FLAG","features":[417]},{"name":"MCI_FORMAT_BYTES","features":[417]},{"name":"MCI_FORMAT_BYTES_S","features":[417]},{"name":"MCI_FORMAT_FRAMES","features":[417]},{"name":"MCI_FORMAT_FRAMES_S","features":[417]},{"name":"MCI_FORMAT_HMS","features":[417]},{"name":"MCI_FORMAT_HMS_S","features":[417]},{"name":"MCI_FORMAT_MILLISECONDS","features":[417]},{"name":"MCI_FORMAT_MILLISECONDS_S","features":[417]},{"name":"MCI_FORMAT_MSF","features":[417]},{"name":"MCI_FORMAT_MSF_S","features":[417]},{"name":"MCI_FORMAT_SAMPLES","features":[417]},{"name":"MCI_FORMAT_SAMPLES_S","features":[417]},{"name":"MCI_FORMAT_SMPTE_24","features":[417]},{"name":"MCI_FORMAT_SMPTE_24_S","features":[417]},{"name":"MCI_FORMAT_SMPTE_25","features":[417]},{"name":"MCI_FORMAT_SMPTE_25_S","features":[417]},{"name":"MCI_FORMAT_SMPTE_30","features":[417]},{"name":"MCI_FORMAT_SMPTE_30DROP","features":[417]},{"name":"MCI_FORMAT_SMPTE_30DROP_S","features":[417]},{"name":"MCI_FORMAT_SMPTE_30_S","features":[417]},{"name":"MCI_FORMAT_TMSF","features":[417]},{"name":"MCI_FORMAT_TMSF_S","features":[417]},{"name":"MCI_FREEZE","features":[417]},{"name":"MCI_FROM","features":[417]},{"name":"MCI_GENERIC_PARMS","features":[417]},{"name":"MCI_GETDEVCAPS","features":[417]},{"name":"MCI_GETDEVCAPS_CAN_EJECT","features":[417]},{"name":"MCI_GETDEVCAPS_CAN_PLAY","features":[417]},{"name":"MCI_GETDEVCAPS_CAN_RECORD","features":[417]},{"name":"MCI_GETDEVCAPS_CAN_SAVE","features":[417]},{"name":"MCI_GETDEVCAPS_COMPOUND_DEVICE","features":[417]},{"name":"MCI_GETDEVCAPS_DEVICE_TYPE","features":[417]},{"name":"MCI_GETDEVCAPS_HAS_AUDIO","features":[417]},{"name":"MCI_GETDEVCAPS_HAS_VIDEO","features":[417]},{"name":"MCI_GETDEVCAPS_ITEM","features":[417]},{"name":"MCI_GETDEVCAPS_PARMS","features":[417]},{"name":"MCI_GETDEVCAPS_USES_FILES","features":[417]},{"name":"MCI_HDC","features":[417]},{"name":"MCI_HPAL","features":[417]},{"name":"MCI_HWND","features":[417]},{"name":"MCI_INFO","features":[417]},{"name":"MCI_INFO_COPYRIGHT","features":[417]},{"name":"MCI_INFO_FILE","features":[417]},{"name":"MCI_INFO_MEDIA_IDENTITY","features":[417]},{"name":"MCI_INFO_MEDIA_UPC","features":[417]},{"name":"MCI_INFO_NAME","features":[417]},{"name":"MCI_INFO_PARMSA","features":[417]},{"name":"MCI_INFO_PARMSW","features":[417]},{"name":"MCI_INFO_PRODUCT","features":[417]},{"name":"MCI_INFO_VERSION","features":[417]},{"name":"MCI_INTEGER","features":[417]},{"name":"MCI_INTEGER64","features":[417]},{"name":"MCI_INTEGER_RETURNED","features":[417]},{"name":"MCI_LAST","features":[417]},{"name":"MCI_LIST","features":[417]},{"name":"MCI_LOAD","features":[417]},{"name":"MCI_LOAD_FILE","features":[417]},{"name":"MCI_LOAD_PARMSA","features":[417]},{"name":"MCI_LOAD_PARMSW","features":[417]},{"name":"MCI_MAX_DEVICE_TYPE_LENGTH","features":[417]},{"name":"MCI_MCIAVI_PLAY_FULLBY2","features":[417]},{"name":"MCI_MCIAVI_PLAY_FULLSCREEN","features":[417]},{"name":"MCI_MCIAVI_PLAY_WINDOW","features":[417]},{"name":"MCI_MODE_NOT_READY","features":[417]},{"name":"MCI_MODE_OPEN","features":[417]},{"name":"MCI_MODE_PAUSE","features":[417]},{"name":"MCI_MODE_PLAY","features":[417]},{"name":"MCI_MODE_RECORD","features":[417]},{"name":"MCI_MODE_SEEK","features":[417]},{"name":"MCI_MODE_STOP","features":[417]},{"name":"MCI_MONITOR","features":[417]},{"name":"MCI_NOTIFY","features":[417]},{"name":"MCI_NOTIFY_ABORTED","features":[417]},{"name":"MCI_NOTIFY_FAILURE","features":[417]},{"name":"MCI_NOTIFY_SUCCESSFUL","features":[417]},{"name":"MCI_NOTIFY_SUPERSEDED","features":[417]},{"name":"MCI_OFF","features":[417]},{"name":"MCI_OFF_S","features":[417]},{"name":"MCI_ON","features":[417]},{"name":"MCI_ON_S","features":[417]},{"name":"MCI_OPEN","features":[417]},{"name":"MCI_OPEN_ALIAS","features":[417]},{"name":"MCI_OPEN_DRIVER","features":[417]},{"name":"MCI_OPEN_DRIVER_PARMS","features":[417]},{"name":"MCI_OPEN_ELEMENT","features":[417]},{"name":"MCI_OPEN_ELEMENT_ID","features":[417]},{"name":"MCI_OPEN_PARMSA","features":[417]},{"name":"MCI_OPEN_PARMSW","features":[417]},{"name":"MCI_OPEN_SHAREABLE","features":[417]},{"name":"MCI_OPEN_TYPE","features":[417]},{"name":"MCI_OPEN_TYPE_ID","features":[417]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_FREEZE","features":[417]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_STRETCH","features":[417]},{"name":"MCI_OVLY_GETDEVCAPS_MAX_WINDOWS","features":[417]},{"name":"MCI_OVLY_INFO_TEXT","features":[417]},{"name":"MCI_OVLY_LOAD_PARMSA","features":[303,417]},{"name":"MCI_OVLY_LOAD_PARMSW","features":[303,417]},{"name":"MCI_OVLY_OPEN_PARENT","features":[417]},{"name":"MCI_OVLY_OPEN_PARMSA","features":[303,417]},{"name":"MCI_OVLY_OPEN_PARMSW","features":[303,417]},{"name":"MCI_OVLY_OPEN_WS","features":[417]},{"name":"MCI_OVLY_PUT_DESTINATION","features":[417]},{"name":"MCI_OVLY_PUT_FRAME","features":[417]},{"name":"MCI_OVLY_PUT_SOURCE","features":[417]},{"name":"MCI_OVLY_PUT_VIDEO","features":[417]},{"name":"MCI_OVLY_RECT","features":[417]},{"name":"MCI_OVLY_RECT_PARMS","features":[303,417]},{"name":"MCI_OVLY_SAVE_PARMSA","features":[303,417]},{"name":"MCI_OVLY_SAVE_PARMSW","features":[303,417]},{"name":"MCI_OVLY_STATUS_HWND","features":[417]},{"name":"MCI_OVLY_STATUS_STRETCH","features":[417]},{"name":"MCI_OVLY_WHERE_DESTINATION","features":[417]},{"name":"MCI_OVLY_WHERE_FRAME","features":[417]},{"name":"MCI_OVLY_WHERE_SOURCE","features":[417]},{"name":"MCI_OVLY_WHERE_VIDEO","features":[417]},{"name":"MCI_OVLY_WINDOW_DEFAULT","features":[417]},{"name":"MCI_OVLY_WINDOW_DISABLE_STRETCH","features":[417]},{"name":"MCI_OVLY_WINDOW_ENABLE_STRETCH","features":[417]},{"name":"MCI_OVLY_WINDOW_HWND","features":[417]},{"name":"MCI_OVLY_WINDOW_PARMSA","features":[303,417]},{"name":"MCI_OVLY_WINDOW_PARMSW","features":[303,417]},{"name":"MCI_OVLY_WINDOW_STATE","features":[417]},{"name":"MCI_OVLY_WINDOW_TEXT","features":[417]},{"name":"MCI_PASTE","features":[417]},{"name":"MCI_PAUSE","features":[417]},{"name":"MCI_PLAY","features":[417]},{"name":"MCI_PLAY_PARMS","features":[417]},{"name":"MCI_PUT","features":[417]},{"name":"MCI_QUALITY","features":[417]},{"name":"MCI_QUALITY_ALG","features":[417]},{"name":"MCI_QUALITY_DIALOG","features":[417]},{"name":"MCI_QUALITY_HANDLE","features":[417]},{"name":"MCI_QUALITY_ITEM","features":[417]},{"name":"MCI_QUALITY_ITEM_AUDIO","features":[417]},{"name":"MCI_QUALITY_ITEM_STILL","features":[417]},{"name":"MCI_QUALITY_ITEM_VIDEO","features":[417]},{"name":"MCI_QUALITY_NAME","features":[417]},{"name":"MCI_REALIZE","features":[417]},{"name":"MCI_RECORD","features":[417]},{"name":"MCI_RECORD_INSERT","features":[417]},{"name":"MCI_RECORD_OVERWRITE","features":[417]},{"name":"MCI_RECORD_PARMS","features":[417]},{"name":"MCI_RECT","features":[417]},{"name":"MCI_RESERVE","features":[417]},{"name":"MCI_RESOURCE_DRIVER","features":[417]},{"name":"MCI_RESOURCE_RETURNED","features":[417]},{"name":"MCI_RESTORE","features":[417]},{"name":"MCI_RESUME","features":[417]},{"name":"MCI_RETURN","features":[417]},{"name":"MCI_SAVE","features":[417]},{"name":"MCI_SAVE_FILE","features":[417]},{"name":"MCI_SAVE_PARMSA","features":[417]},{"name":"MCI_SAVE_PARMSW","features":[417]},{"name":"MCI_SECTION","features":[417]},{"name":"MCI_SEEK","features":[417]},{"name":"MCI_SEEK_PARMS","features":[417]},{"name":"MCI_SEEK_TO_END","features":[417]},{"name":"MCI_SEEK_TO_START","features":[417]},{"name":"MCI_SEQ_FILE","features":[417]},{"name":"MCI_SEQ_FILE_S","features":[417]},{"name":"MCI_SEQ_FORMAT_SONGPTR","features":[417]},{"name":"MCI_SEQ_FORMAT_SONGPTR_S","features":[417]},{"name":"MCI_SEQ_MAPPER","features":[417]},{"name":"MCI_SEQ_MAPPER_S","features":[417]},{"name":"MCI_SEQ_MIDI","features":[417]},{"name":"MCI_SEQ_MIDI_S","features":[417]},{"name":"MCI_SEQ_NONE","features":[417]},{"name":"MCI_SEQ_NONE_S","features":[417]},{"name":"MCI_SEQ_SET_MASTER","features":[417]},{"name":"MCI_SEQ_SET_OFFSET","features":[417]},{"name":"MCI_SEQ_SET_PARMS","features":[417]},{"name":"MCI_SEQ_SET_PORT","features":[417]},{"name":"MCI_SEQ_SET_SLAVE","features":[417]},{"name":"MCI_SEQ_SET_TEMPO","features":[417]},{"name":"MCI_SEQ_SMPTE","features":[417]},{"name":"MCI_SEQ_SMPTE_S","features":[417]},{"name":"MCI_SEQ_STATUS_COPYRIGHT","features":[417]},{"name":"MCI_SEQ_STATUS_DIVTYPE","features":[417]},{"name":"MCI_SEQ_STATUS_MASTER","features":[417]},{"name":"MCI_SEQ_STATUS_NAME","features":[417]},{"name":"MCI_SEQ_STATUS_OFFSET","features":[417]},{"name":"MCI_SEQ_STATUS_PORT","features":[417]},{"name":"MCI_SEQ_STATUS_SLAVE","features":[417]},{"name":"MCI_SEQ_STATUS_TEMPO","features":[417]},{"name":"MCI_SET","features":[417]},{"name":"MCI_SETAUDIO","features":[417]},{"name":"MCI_SETVIDEO","features":[417]},{"name":"MCI_SET_AUDIO","features":[417]},{"name":"MCI_SET_AUDIO_ALL","features":[417]},{"name":"MCI_SET_AUDIO_LEFT","features":[417]},{"name":"MCI_SET_AUDIO_RIGHT","features":[417]},{"name":"MCI_SET_DOOR_CLOSED","features":[417]},{"name":"MCI_SET_DOOR_OPEN","features":[417]},{"name":"MCI_SET_OFF","features":[417]},{"name":"MCI_SET_ON","features":[417]},{"name":"MCI_SET_PARMS","features":[417]},{"name":"MCI_SET_TIME_FORMAT","features":[417]},{"name":"MCI_SET_VIDEO","features":[417]},{"name":"MCI_SIGNAL","features":[417]},{"name":"MCI_SPIN","features":[417]},{"name":"MCI_STATUS","features":[417]},{"name":"MCI_STATUS_CURRENT_TRACK","features":[417]},{"name":"MCI_STATUS_ITEM","features":[417]},{"name":"MCI_STATUS_LENGTH","features":[417]},{"name":"MCI_STATUS_MEDIA_PRESENT","features":[417]},{"name":"MCI_STATUS_MODE","features":[417]},{"name":"MCI_STATUS_NUMBER_OF_TRACKS","features":[417]},{"name":"MCI_STATUS_PARMS","features":[417]},{"name":"MCI_STATUS_POSITION","features":[417]},{"name":"MCI_STATUS_READY","features":[417]},{"name":"MCI_STATUS_START","features":[417]},{"name":"MCI_STATUS_TIME_FORMAT","features":[417]},{"name":"MCI_STEP","features":[417]},{"name":"MCI_STOP","features":[417]},{"name":"MCI_STRING","features":[417]},{"name":"MCI_SYSINFO","features":[417]},{"name":"MCI_SYSINFO_INSTALLNAME","features":[417]},{"name":"MCI_SYSINFO_NAME","features":[417]},{"name":"MCI_SYSINFO_OPEN","features":[417]},{"name":"MCI_SYSINFO_PARMSA","features":[417]},{"name":"MCI_SYSINFO_PARMSW","features":[417]},{"name":"MCI_SYSINFO_QUANTITY","features":[417]},{"name":"MCI_TEST","features":[417]},{"name":"MCI_TO","features":[417]},{"name":"MCI_TRACK","features":[417]},{"name":"MCI_TRUE","features":[417]},{"name":"MCI_UNDO","features":[417]},{"name":"MCI_UNFREEZE","features":[417]},{"name":"MCI_UPDATE","features":[417]},{"name":"MCI_USER_MESSAGES","features":[417]},{"name":"MCI_VD_ESCAPE_PARMSA","features":[417]},{"name":"MCI_VD_ESCAPE_PARMSW","features":[417]},{"name":"MCI_VD_ESCAPE_STRING","features":[417]},{"name":"MCI_VD_FORMAT_TRACK","features":[417]},{"name":"MCI_VD_FORMAT_TRACK_S","features":[417]},{"name":"MCI_VD_GETDEVCAPS_CAN_REVERSE","features":[417]},{"name":"MCI_VD_GETDEVCAPS_CAV","features":[417]},{"name":"MCI_VD_GETDEVCAPS_CLV","features":[417]},{"name":"MCI_VD_GETDEVCAPS_FAST_RATE","features":[417]},{"name":"MCI_VD_GETDEVCAPS_NORMAL_RATE","features":[417]},{"name":"MCI_VD_GETDEVCAPS_SLOW_RATE","features":[417]},{"name":"MCI_VD_MEDIA_CAV","features":[417]},{"name":"MCI_VD_MEDIA_CLV","features":[417]},{"name":"MCI_VD_MEDIA_OTHER","features":[417]},{"name":"MCI_VD_MODE_PARK","features":[417]},{"name":"MCI_VD_PLAY_FAST","features":[417]},{"name":"MCI_VD_PLAY_PARMS","features":[417]},{"name":"MCI_VD_PLAY_REVERSE","features":[417]},{"name":"MCI_VD_PLAY_SCAN","features":[417]},{"name":"MCI_VD_PLAY_SLOW","features":[417]},{"name":"MCI_VD_PLAY_SPEED","features":[417]},{"name":"MCI_VD_SEEK_REVERSE","features":[417]},{"name":"MCI_VD_SPIN_DOWN","features":[417]},{"name":"MCI_VD_SPIN_UP","features":[417]},{"name":"MCI_VD_STATUS_DISC_SIZE","features":[417]},{"name":"MCI_VD_STATUS_FORWARD","features":[417]},{"name":"MCI_VD_STATUS_MEDIA_TYPE","features":[417]},{"name":"MCI_VD_STATUS_SIDE","features":[417]},{"name":"MCI_VD_STATUS_SPEED","features":[417]},{"name":"MCI_VD_STEP_FRAMES","features":[417]},{"name":"MCI_VD_STEP_PARMS","features":[417]},{"name":"MCI_VD_STEP_REVERSE","features":[417]},{"name":"MCI_WAIT","features":[417]},{"name":"MCI_WAVE_DELETE_PARMS","features":[417]},{"name":"MCI_WAVE_GETDEVCAPS_INPUTS","features":[417]},{"name":"MCI_WAVE_GETDEVCAPS_OUTPUTS","features":[417]},{"name":"MCI_WAVE_INPUT","features":[417]},{"name":"MCI_WAVE_MAPPER","features":[417]},{"name":"MCI_WAVE_OPEN_BUFFER","features":[417]},{"name":"MCI_WAVE_OPEN_PARMSA","features":[417]},{"name":"MCI_WAVE_OPEN_PARMSW","features":[417]},{"name":"MCI_WAVE_OUTPUT","features":[417]},{"name":"MCI_WAVE_PCM","features":[417]},{"name":"MCI_WAVE_SET_ANYINPUT","features":[417]},{"name":"MCI_WAVE_SET_ANYOUTPUT","features":[417]},{"name":"MCI_WAVE_SET_AVGBYTESPERSEC","features":[417]},{"name":"MCI_WAVE_SET_BITSPERSAMPLE","features":[417]},{"name":"MCI_WAVE_SET_BLOCKALIGN","features":[417]},{"name":"MCI_WAVE_SET_CHANNELS","features":[417]},{"name":"MCI_WAVE_SET_FORMATTAG","features":[417]},{"name":"MCI_WAVE_SET_PARMS","features":[417]},{"name":"MCI_WAVE_SET_SAMPLESPERSEC","features":[417]},{"name":"MCI_WAVE_STATUS_AVGBYTESPERSEC","features":[417]},{"name":"MCI_WAVE_STATUS_BITSPERSAMPLE","features":[417]},{"name":"MCI_WAVE_STATUS_BLOCKALIGN","features":[417]},{"name":"MCI_WAVE_STATUS_CHANNELS","features":[417]},{"name":"MCI_WAVE_STATUS_FORMATTAG","features":[417]},{"name":"MCI_WAVE_STATUS_LEVEL","features":[417]},{"name":"MCI_WAVE_STATUS_SAMPLESPERSEC","features":[417]},{"name":"MCI_WHERE","features":[417]},{"name":"MCI_WINDOW","features":[417]},{"name":"MCMADM_E_REGKEY_NOT_FOUND","features":[417]},{"name":"MCMADM_I_NO_EVENTS","features":[417]},{"name":"MEDIASPACEADPCMWAVEFORMAT","features":[418,417]},{"name":"MIDIMAPPER_S","features":[417]},{"name":"MIDIOPENSTRMID","features":[417]},{"name":"MIDI_IO_COOKED","features":[417]},{"name":"MIDI_IO_PACKED","features":[417]},{"name":"MIDM_ADDBUFFER","features":[417]},{"name":"MIDM_CLOSE","features":[417]},{"name":"MIDM_GETDEVCAPS","features":[417]},{"name":"MIDM_GETNUMDEVS","features":[417]},{"name":"MIDM_INIT","features":[417]},{"name":"MIDM_INIT_EX","features":[417]},{"name":"MIDM_MAPPER","features":[417]},{"name":"MIDM_OPEN","features":[417]},{"name":"MIDM_PREPARE","features":[417]},{"name":"MIDM_RESET","features":[417]},{"name":"MIDM_START","features":[417]},{"name":"MIDM_STOP","features":[417]},{"name":"MIDM_UNPREPARE","features":[417]},{"name":"MIDM_USER","features":[417]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_MTS","features":[417]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_ONOFF","features":[417]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_SYNTHSELECT","features":[417]},{"name":"MIXEROPENDESC","features":[418,417]},{"name":"MMCKINFO","features":[417]},{"name":"MMIOERR_ACCESSDENIED","features":[417]},{"name":"MMIOERR_BASE","features":[417]},{"name":"MMIOERR_CANNOTCLOSE","features":[417]},{"name":"MMIOERR_CANNOTEXPAND","features":[417]},{"name":"MMIOERR_CANNOTOPEN","features":[417]},{"name":"MMIOERR_CANNOTREAD","features":[417]},{"name":"MMIOERR_CANNOTSEEK","features":[417]},{"name":"MMIOERR_CANNOTWRITE","features":[417]},{"name":"MMIOERR_CHUNKNOTFOUND","features":[417]},{"name":"MMIOERR_FILENOTFOUND","features":[417]},{"name":"MMIOERR_INVALIDFILE","features":[417]},{"name":"MMIOERR_NETWORKERROR","features":[417]},{"name":"MMIOERR_OUTOFMEMORY","features":[417]},{"name":"MMIOERR_PATHNOTFOUND","features":[417]},{"name":"MMIOERR_SHARINGVIOLATION","features":[417]},{"name":"MMIOERR_TOOMANYOPENFILES","features":[417]},{"name":"MMIOERR_UNBUFFERED","features":[417]},{"name":"MMIOINFO","features":[303,417]},{"name":"MMIOM_CLOSE","features":[417]},{"name":"MMIOM_OPEN","features":[417]},{"name":"MMIOM_READ","features":[417]},{"name":"MMIOM_RENAME","features":[417]},{"name":"MMIOM_SEEK","features":[417]},{"name":"MMIOM_USER","features":[417]},{"name":"MMIOM_WRITE","features":[417]},{"name":"MMIOM_WRITEFLUSH","features":[417]},{"name":"MMIO_ALLOCBUF","features":[417]},{"name":"MMIO_COMPAT","features":[417]},{"name":"MMIO_CREATE","features":[417]},{"name":"MMIO_CREATELIST","features":[417]},{"name":"MMIO_CREATERIFF","features":[417]},{"name":"MMIO_DEFAULTBUFFER","features":[417]},{"name":"MMIO_DELETE","features":[417]},{"name":"MMIO_DENYNONE","features":[417]},{"name":"MMIO_DENYREAD","features":[417]},{"name":"MMIO_DENYWRITE","features":[417]},{"name":"MMIO_DIRTY","features":[417]},{"name":"MMIO_EMPTYBUF","features":[417]},{"name":"MMIO_EXCLUSIVE","features":[417]},{"name":"MMIO_EXIST","features":[417]},{"name":"MMIO_FHOPEN","features":[417]},{"name":"MMIO_FINDCHUNK","features":[417]},{"name":"MMIO_FINDLIST","features":[417]},{"name":"MMIO_FINDPROC","features":[417]},{"name":"MMIO_FINDRIFF","features":[417]},{"name":"MMIO_GETTEMP","features":[417]},{"name":"MMIO_GLOBALPROC","features":[417]},{"name":"MMIO_INSTALLPROC","features":[417]},{"name":"MMIO_PARSE","features":[417]},{"name":"MMIO_READ","features":[417]},{"name":"MMIO_READWRITE","features":[417]},{"name":"MMIO_REMOVEPROC","features":[417]},{"name":"MMIO_RWMODE","features":[417]},{"name":"MMIO_SHAREMODE","features":[417]},{"name":"MMIO_TOUPPER","features":[417]},{"name":"MMIO_UNICODEPROC","features":[417]},{"name":"MMIO_WRITE","features":[417]},{"name":"MM_3COM","features":[417]},{"name":"MM_3COM_CB_MIXER","features":[417]},{"name":"MM_3COM_CB_WAVEIN","features":[417]},{"name":"MM_3COM_CB_WAVEOUT","features":[417]},{"name":"MM_3DFX","features":[417]},{"name":"MM_AARDVARK","features":[417]},{"name":"MM_AARDVARK_STUDIO12_WAVEIN","features":[417]},{"name":"MM_AARDVARK_STUDIO12_WAVEOUT","features":[417]},{"name":"MM_AARDVARK_STUDIO88_WAVEIN","features":[417]},{"name":"MM_AARDVARK_STUDIO88_WAVEOUT","features":[417]},{"name":"MM_ACTIVEVOICE","features":[417]},{"name":"MM_ACTIVEVOICE_ACM_VOXADPCM","features":[417]},{"name":"MM_ACULAB","features":[417]},{"name":"MM_ADDX","features":[417]},{"name":"MM_ADDX_PCTV_AUX_CD","features":[417]},{"name":"MM_ADDX_PCTV_AUX_LINE","features":[417]},{"name":"MM_ADDX_PCTV_DIGITALMIX","features":[417]},{"name":"MM_ADDX_PCTV_MIXER","features":[417]},{"name":"MM_ADDX_PCTV_WAVEIN","features":[417]},{"name":"MM_ADDX_PCTV_WAVEOUT","features":[417]},{"name":"MM_ADLACC","features":[417]},{"name":"MM_ADMOS","features":[417]},{"name":"MM_ADMOS_FM_SYNTH","features":[417]},{"name":"MM_ADMOS_QS3AMIDIIN","features":[417]},{"name":"MM_ADMOS_QS3AMIDIOUT","features":[417]},{"name":"MM_ADMOS_QS3AWAVEIN","features":[417]},{"name":"MM_ADMOS_QS3AWAVEOUT","features":[417]},{"name":"MM_AHEAD","features":[417]},{"name":"MM_AHEAD_GENERIC","features":[417]},{"name":"MM_AHEAD_MULTISOUND","features":[417]},{"name":"MM_AHEAD_PROAUDIO","features":[417]},{"name":"MM_AHEAD_SOUNDBLASTER","features":[417]},{"name":"MM_ALARIS","features":[417]},{"name":"MM_ALDIGITAL","features":[417]},{"name":"MM_ALESIS","features":[417]},{"name":"MM_ALGOVISION","features":[417]},{"name":"MM_ALGOVISION_VB80AUX","features":[417]},{"name":"MM_ALGOVISION_VB80AUX2","features":[417]},{"name":"MM_ALGOVISION_VB80MIXER","features":[417]},{"name":"MM_ALGOVISION_VB80WAVEIN","features":[417]},{"name":"MM_ALGOVISION_VB80WAVEOUT","features":[417]},{"name":"MM_AMD","features":[417]},{"name":"MM_AMD_INTERWAVE_AUX1","features":[417]},{"name":"MM_AMD_INTERWAVE_AUX2","features":[417]},{"name":"MM_AMD_INTERWAVE_AUX_CD","features":[417]},{"name":"MM_AMD_INTERWAVE_AUX_MIC","features":[417]},{"name":"MM_AMD_INTERWAVE_EX_CD","features":[417]},{"name":"MM_AMD_INTERWAVE_EX_TELEPHONY","features":[417]},{"name":"MM_AMD_INTERWAVE_JOYSTICK","features":[417]},{"name":"MM_AMD_INTERWAVE_MIDIIN","features":[417]},{"name":"MM_AMD_INTERWAVE_MIDIOUT","features":[417]},{"name":"MM_AMD_INTERWAVE_MIXER1","features":[417]},{"name":"MM_AMD_INTERWAVE_MIXER2","features":[417]},{"name":"MM_AMD_INTERWAVE_MONO_IN","features":[417]},{"name":"MM_AMD_INTERWAVE_MONO_OUT","features":[417]},{"name":"MM_AMD_INTERWAVE_STEREO_ENHANCED","features":[417]},{"name":"MM_AMD_INTERWAVE_SYNTH","features":[417]},{"name":"MM_AMD_INTERWAVE_WAVEIN","features":[417]},{"name":"MM_AMD_INTERWAVE_WAVEOUT","features":[417]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_BASE","features":[417]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_TREBLE","features":[417]},{"name":"MM_ANALOGDEVICES","features":[417]},{"name":"MM_ANTEX","features":[417]},{"name":"MM_ANTEX_AUDIOPORT22_FEEDTHRU","features":[417]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEIN","features":[417]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEOUT","features":[417]},{"name":"MM_ANTEX_SX12_WAVEIN","features":[417]},{"name":"MM_ANTEX_SX12_WAVEOUT","features":[417]},{"name":"MM_ANTEX_SX15_WAVEIN","features":[417]},{"name":"MM_ANTEX_SX15_WAVEOUT","features":[417]},{"name":"MM_ANTEX_VP625_WAVEIN","features":[417]},{"name":"MM_ANTEX_VP625_WAVEOUT","features":[417]},{"name":"MM_APICOM","features":[417]},{"name":"MM_APPLE","features":[417]},{"name":"MM_APPS","features":[417]},{"name":"MM_APT","features":[417]},{"name":"MM_APT_ACE100CD","features":[417]},{"name":"MM_ARRAY","features":[417]},{"name":"MM_ARTISOFT","features":[417]},{"name":"MM_ARTISOFT_SBWAVEIN","features":[417]},{"name":"MM_ARTISOFT_SBWAVEOUT","features":[417]},{"name":"MM_AST","features":[417]},{"name":"MM_AST_MODEMWAVE_WAVEIN","features":[417]},{"name":"MM_AST_MODEMWAVE_WAVEOUT","features":[417]},{"name":"MM_ATI","features":[417]},{"name":"MM_ATT","features":[417]},{"name":"MM_ATT_G729A","features":[417]},{"name":"MM_ATT_MICROELECTRONICS","features":[417]},{"name":"MM_AU8820_AUX","features":[417]},{"name":"MM_AU8820_MIDIIN","features":[417]},{"name":"MM_AU8820_MIDIOUT","features":[417]},{"name":"MM_AU8820_MIXER","features":[417]},{"name":"MM_AU8820_SYNTH","features":[417]},{"name":"MM_AU8820_WAVEIN","features":[417]},{"name":"MM_AU8820_WAVEOUT","features":[417]},{"name":"MM_AU8830_AUX","features":[417]},{"name":"MM_AU8830_MIDIIN","features":[417]},{"name":"MM_AU8830_MIDIOUT","features":[417]},{"name":"MM_AU8830_MIXER","features":[417]},{"name":"MM_AU8830_SYNTH","features":[417]},{"name":"MM_AU8830_WAVEIN","features":[417]},{"name":"MM_AU8830_WAVEOUT","features":[417]},{"name":"MM_AUDIOFILE","features":[417]},{"name":"MM_AUDIOPT","features":[417]},{"name":"MM_AUDIOSCIENCE","features":[417]},{"name":"MM_AURAVISION","features":[417]},{"name":"MM_AUREAL","features":[417]},{"name":"MM_AUREAL_AU8820","features":[417]},{"name":"MM_AUREAL_AU8830","features":[417]},{"name":"MM_AZTECH","features":[417]},{"name":"MM_AZTECH_AUX","features":[417]},{"name":"MM_AZTECH_AUX_CD","features":[417]},{"name":"MM_AZTECH_AUX_LINE","features":[417]},{"name":"MM_AZTECH_AUX_MIC","features":[417]},{"name":"MM_AZTECH_DSP16_FMSYNTH","features":[417]},{"name":"MM_AZTECH_DSP16_WAVEIN","features":[417]},{"name":"MM_AZTECH_DSP16_WAVEOUT","features":[417]},{"name":"MM_AZTECH_DSP16_WAVESYNTH","features":[417]},{"name":"MM_AZTECH_FMSYNTH","features":[417]},{"name":"MM_AZTECH_MIDIIN","features":[417]},{"name":"MM_AZTECH_MIDIOUT","features":[417]},{"name":"MM_AZTECH_MIXER","features":[417]},{"name":"MM_AZTECH_NOVA16_MIXER","features":[417]},{"name":"MM_AZTECH_NOVA16_WAVEIN","features":[417]},{"name":"MM_AZTECH_NOVA16_WAVEOUT","features":[417]},{"name":"MM_AZTECH_PRO16_FMSYNTH","features":[417]},{"name":"MM_AZTECH_PRO16_WAVEIN","features":[417]},{"name":"MM_AZTECH_PRO16_WAVEOUT","features":[417]},{"name":"MM_AZTECH_WASH16_MIXER","features":[417]},{"name":"MM_AZTECH_WASH16_WAVEIN","features":[417]},{"name":"MM_AZTECH_WASH16_WAVEOUT","features":[417]},{"name":"MM_AZTECH_WAVEIN","features":[417]},{"name":"MM_AZTECH_WAVEOUT","features":[417]},{"name":"MM_BCB","features":[417]},{"name":"MM_BCB_NETBOARD_10","features":[417]},{"name":"MM_BCB_TT75_10","features":[417]},{"name":"MM_BECUBED","features":[417]},{"name":"MM_BERCOS","features":[417]},{"name":"MM_BERCOS_MIXER","features":[417]},{"name":"MM_BERCOS_WAVEIN","features":[417]},{"name":"MM_BERCOS_WAVEOUT","features":[417]},{"name":"MM_BERKOM","features":[417]},{"name":"MM_BINTEC","features":[417]},{"name":"MM_BINTEC_TAPI_WAVE","features":[417]},{"name":"MM_BROOKTREE","features":[417]},{"name":"MM_BTV_AUX_CD","features":[417]},{"name":"MM_BTV_AUX_LINE","features":[417]},{"name":"MM_BTV_AUX_MIC","features":[417]},{"name":"MM_BTV_DIGITALIN","features":[417]},{"name":"MM_BTV_DIGITALOUT","features":[417]},{"name":"MM_BTV_MIDIIN","features":[417]},{"name":"MM_BTV_MIDIOUT","features":[417]},{"name":"MM_BTV_MIDISYNTH","features":[417]},{"name":"MM_BTV_MIDIWAVESTREAM","features":[417]},{"name":"MM_BTV_MIXER","features":[417]},{"name":"MM_BTV_WAVEIN","features":[417]},{"name":"MM_BTV_WAVEOUT","features":[417]},{"name":"MM_CANAM","features":[417]},{"name":"MM_CANAM_CBXWAVEIN","features":[417]},{"name":"MM_CANAM_CBXWAVEOUT","features":[417]},{"name":"MM_CANOPUS","features":[417]},{"name":"MM_CANOPUS_ACM_DVREX","features":[417]},{"name":"MM_CASIO","features":[417]},{"name":"MM_CASIO_LSG_MIDIOUT","features":[417]},{"name":"MM_CASIO_WP150_MIDIIN","features":[417]},{"name":"MM_CASIO_WP150_MIDIOUT","features":[417]},{"name":"MM_CAT","features":[417]},{"name":"MM_CAT_WAVEOUT","features":[417]},{"name":"MM_CDPC_AUX","features":[417]},{"name":"MM_CDPC_MIDIIN","features":[417]},{"name":"MM_CDPC_MIDIOUT","features":[417]},{"name":"MM_CDPC_MIXER","features":[417]},{"name":"MM_CDPC_SYNTH","features":[417]},{"name":"MM_CDPC_WAVEIN","features":[417]},{"name":"MM_CDPC_WAVEOUT","features":[417]},{"name":"MM_CHROMATIC","features":[417]},{"name":"MM_CHROMATIC_M1","features":[417]},{"name":"MM_CHROMATIC_M1_AUX","features":[417]},{"name":"MM_CHROMATIC_M1_AUX_CD","features":[417]},{"name":"MM_CHROMATIC_M1_FMSYNTH","features":[417]},{"name":"MM_CHROMATIC_M1_MIDIIN","features":[417]},{"name":"MM_CHROMATIC_M1_MIDIOUT","features":[417]},{"name":"MM_CHROMATIC_M1_MIXER","features":[417]},{"name":"MM_CHROMATIC_M1_MPEGWAVEIN","features":[417]},{"name":"MM_CHROMATIC_M1_MPEGWAVEOUT","features":[417]},{"name":"MM_CHROMATIC_M1_WAVEIN","features":[417]},{"name":"MM_CHROMATIC_M1_WAVEOUT","features":[417]},{"name":"MM_CHROMATIC_M1_WTSYNTH","features":[417]},{"name":"MM_CHROMATIC_M2","features":[417]},{"name":"MM_CHROMATIC_M2_AUX","features":[417]},{"name":"MM_CHROMATIC_M2_AUX_CD","features":[417]},{"name":"MM_CHROMATIC_M2_FMSYNTH","features":[417]},{"name":"MM_CHROMATIC_M2_MIDIIN","features":[417]},{"name":"MM_CHROMATIC_M2_MIDIOUT","features":[417]},{"name":"MM_CHROMATIC_M2_MIXER","features":[417]},{"name":"MM_CHROMATIC_M2_MPEGWAVEIN","features":[417]},{"name":"MM_CHROMATIC_M2_MPEGWAVEOUT","features":[417]},{"name":"MM_CHROMATIC_M2_WAVEIN","features":[417]},{"name":"MM_CHROMATIC_M2_WAVEOUT","features":[417]},{"name":"MM_CHROMATIC_M2_WTSYNTH","features":[417]},{"name":"MM_CIRRUSLOGIC","features":[417]},{"name":"MM_COLORGRAPH","features":[417]},{"name":"MM_COMPAQ","features":[417]},{"name":"MM_COMPAQ_BB_WAVEAUX","features":[417]},{"name":"MM_COMPAQ_BB_WAVEIN","features":[417]},{"name":"MM_COMPAQ_BB_WAVEOUT","features":[417]},{"name":"MM_COMPUSIC","features":[417]},{"name":"MM_COMPUTER_FRIENDS","features":[417]},{"name":"MM_CONCEPTS","features":[417]},{"name":"MM_CONNECTIX","features":[417]},{"name":"MM_CONNECTIX_VIDEC_CODEC","features":[417]},{"name":"MM_CONTROLRES","features":[417]},{"name":"MM_COREDYNAMICS","features":[417]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_VGA","features":[417]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_IN","features":[417]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_OUT","features":[417]},{"name":"MM_COREDYNAMICS_DYNAMIXHR","features":[417]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_IN","features":[417]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_OUT","features":[417]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_IN","features":[417]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_OUT","features":[417]},{"name":"MM_COREDYNAMICS_DYNASONIX_SYNTH","features":[417]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_IN","features":[417]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_OUT","features":[417]},{"name":"MM_CREATIVE","features":[417]},{"name":"MM_CREATIVE_AUX_CD","features":[417]},{"name":"MM_CREATIVE_AUX_LINE","features":[417]},{"name":"MM_CREATIVE_AUX_MASTER","features":[417]},{"name":"MM_CREATIVE_AUX_MIC","features":[417]},{"name":"MM_CREATIVE_AUX_MIDI","features":[417]},{"name":"MM_CREATIVE_AUX_PCSPK","features":[417]},{"name":"MM_CREATIVE_AUX_WAVE","features":[417]},{"name":"MM_CREATIVE_FMSYNTH_MONO","features":[417]},{"name":"MM_CREATIVE_FMSYNTH_STEREO","features":[417]},{"name":"MM_CREATIVE_MIDIIN","features":[417]},{"name":"MM_CREATIVE_MIDIOUT","features":[417]},{"name":"MM_CREATIVE_MIDI_AWE32","features":[417]},{"name":"MM_CREATIVE_PHNBLST_WAVEIN","features":[417]},{"name":"MM_CREATIVE_PHNBLST_WAVEOUT","features":[417]},{"name":"MM_CREATIVE_SB15_WAVEIN","features":[417]},{"name":"MM_CREATIVE_SB15_WAVEOUT","features":[417]},{"name":"MM_CREATIVE_SB16_MIXER","features":[417]},{"name":"MM_CREATIVE_SB20_WAVEIN","features":[417]},{"name":"MM_CREATIVE_SB20_WAVEOUT","features":[417]},{"name":"MM_CREATIVE_SBP16_WAVEIN","features":[417]},{"name":"MM_CREATIVE_SBP16_WAVEOUT","features":[417]},{"name":"MM_CREATIVE_SBPRO_MIXER","features":[417]},{"name":"MM_CREATIVE_SBPRO_WAVEIN","features":[417]},{"name":"MM_CREATIVE_SBPRO_WAVEOUT","features":[417]},{"name":"MM_CRYSTAL","features":[417]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_AUX1","features":[417]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_LOOP","features":[417]},{"name":"MM_CRYSTAL_CS4232_MIDIIN","features":[417]},{"name":"MM_CRYSTAL_CS4232_MIDIOUT","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX1","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX2","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_LINE","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MASTER","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MONO","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEIN","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEMIXER","features":[417]},{"name":"MM_CRYSTAL_CS4232_WAVEOUT","features":[417]},{"name":"MM_CRYSTAL_NET","features":[417]},{"name":"MM_CRYSTAL_SOUND_FUSION_JOYSTICK","features":[417]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIIN","features":[417]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIOUT","features":[417]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIXER","features":[417]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEIN","features":[417]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEOUT","features":[417]},{"name":"MM_CS","features":[417]},{"name":"MM_CYRIX","features":[417]},{"name":"MM_CYRIX_XAAUX","features":[417]},{"name":"MM_CYRIX_XAMIDIIN","features":[417]},{"name":"MM_CYRIX_XAMIDIOUT","features":[417]},{"name":"MM_CYRIX_XAMIXER","features":[417]},{"name":"MM_CYRIX_XASYNTH","features":[417]},{"name":"MM_CYRIX_XAWAVEIN","features":[417]},{"name":"MM_CYRIX_XAWAVEOUT","features":[417]},{"name":"MM_DATAFUSION","features":[417]},{"name":"MM_DATARAN","features":[417]},{"name":"MM_DDD","features":[417]},{"name":"MM_DDD_MIDILINK_MIDIIN","features":[417]},{"name":"MM_DDD_MIDILINK_MIDIOUT","features":[417]},{"name":"MM_DF_ACM_G726","features":[417]},{"name":"MM_DF_ACM_GSM610","features":[417]},{"name":"MM_DIACOUSTICS","features":[417]},{"name":"MM_DIACOUSTICS_DRUM_ACTION","features":[417]},{"name":"MM_DIALOGIC","features":[417]},{"name":"MM_DIAMONDMM","features":[417]},{"name":"MM_DICTAPHONE","features":[417]},{"name":"MM_DICTAPHONE_G726","features":[417]},{"name":"MM_DIGIGRAM","features":[417]},{"name":"MM_DIGITAL","features":[417]},{"name":"MM_DIGITAL_ACM_G723","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS_CDLX","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS_CPRO","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS_CTDIF","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS_DOC","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS_TC","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS_V8","features":[417]},{"name":"MM_DIGITAL_AUDIO_LABS_VP","features":[417]},{"name":"MM_DIGITAL_AV320_WAVEIN","features":[417]},{"name":"MM_DIGITAL_AV320_WAVEOUT","features":[417]},{"name":"MM_DIGITAL_ICM_H261","features":[417]},{"name":"MM_DIGITAL_ICM_H263","features":[417]},{"name":"MM_DIMD_AUX_LINE","features":[417]},{"name":"MM_DIMD_DIRSOUND","features":[417]},{"name":"MM_DIMD_MIDIIN","features":[417]},{"name":"MM_DIMD_MIDIOUT","features":[417]},{"name":"MM_DIMD_MIXER","features":[417]},{"name":"MM_DIMD_PLATFORM","features":[417]},{"name":"MM_DIMD_VIRTJOY","features":[417]},{"name":"MM_DIMD_VIRTMPU","features":[417]},{"name":"MM_DIMD_VIRTSB","features":[417]},{"name":"MM_DIMD_WAVEIN","features":[417]},{"name":"MM_DIMD_WAVEOUT","features":[417]},{"name":"MM_DIMD_WSS_AUX","features":[417]},{"name":"MM_DIMD_WSS_MIXER","features":[417]},{"name":"MM_DIMD_WSS_SYNTH","features":[417]},{"name":"MM_DIMD_WSS_WAVEIN","features":[417]},{"name":"MM_DIMD_WSS_WAVEOUT","features":[417]},{"name":"MM_DOLBY","features":[417]},{"name":"MM_DPSINC","features":[417]},{"name":"MM_DSP_GROUP","features":[417]},{"name":"MM_DSP_GROUP_TRUESPEECH","features":[417]},{"name":"MM_DSP_SOLUTIONS","features":[417]},{"name":"MM_DSP_SOLUTIONS_AUX","features":[417]},{"name":"MM_DSP_SOLUTIONS_SYNTH","features":[417]},{"name":"MM_DSP_SOLUTIONS_WAVEIN","features":[417]},{"name":"MM_DSP_SOLUTIONS_WAVEOUT","features":[417]},{"name":"MM_DTS","features":[417]},{"name":"MM_DTS_DS","features":[417]},{"name":"MM_DUCK","features":[417]},{"name":"MM_DVISION","features":[417]},{"name":"MM_ECHO","features":[417]},{"name":"MM_ECHO_AUX","features":[417]},{"name":"MM_ECHO_MIDIIN","features":[417]},{"name":"MM_ECHO_MIDIOUT","features":[417]},{"name":"MM_ECHO_SYNTH","features":[417]},{"name":"MM_ECHO_WAVEIN","features":[417]},{"name":"MM_ECHO_WAVEOUT","features":[417]},{"name":"MM_ECS","features":[417]},{"name":"MM_ECS_AADF_MIDI_IN","features":[417]},{"name":"MM_ECS_AADF_MIDI_OUT","features":[417]},{"name":"MM_ECS_AADF_WAVE2MIDI_IN","features":[417]},{"name":"MM_EES","features":[417]},{"name":"MM_EES_PCMIDI14","features":[417]},{"name":"MM_EES_PCMIDI14_IN","features":[417]},{"name":"MM_EES_PCMIDI14_OUT1","features":[417]},{"name":"MM_EES_PCMIDI14_OUT2","features":[417]},{"name":"MM_EES_PCMIDI14_OUT3","features":[417]},{"name":"MM_EES_PCMIDI14_OUT4","features":[417]},{"name":"MM_EMAGIC","features":[417]},{"name":"MM_EMAGIC_UNITOR8","features":[417]},{"name":"MM_EMU","features":[417]},{"name":"MM_EMU_APSMIDIIN","features":[417]},{"name":"MM_EMU_APSMIDIOUT","features":[417]},{"name":"MM_EMU_APSSYNTH","features":[417]},{"name":"MM_EMU_APSWAVEIN","features":[417]},{"name":"MM_EMU_APSWAVEOUT","features":[417]},{"name":"MM_ENET","features":[417]},{"name":"MM_ENET_T2000_HANDSETIN","features":[417]},{"name":"MM_ENET_T2000_HANDSETOUT","features":[417]},{"name":"MM_ENET_T2000_LINEIN","features":[417]},{"name":"MM_ENET_T2000_LINEOUT","features":[417]},{"name":"MM_ENSONIQ","features":[417]},{"name":"MM_ENSONIQ_SOUNDSCAPE","features":[417]},{"name":"MM_EPSON","features":[417]},{"name":"MM_EPS_FMSND","features":[417]},{"name":"MM_ESS","features":[417]},{"name":"MM_ESS_AMAUX","features":[417]},{"name":"MM_ESS_AMMIDIIN","features":[417]},{"name":"MM_ESS_AMMIDIOUT","features":[417]},{"name":"MM_ESS_AMSYNTH","features":[417]},{"name":"MM_ESS_AMWAVEIN","features":[417]},{"name":"MM_ESS_AMWAVEOUT","features":[417]},{"name":"MM_ESS_AUX_CD","features":[417]},{"name":"MM_ESS_ES1488_MIXER","features":[417]},{"name":"MM_ESS_ES1488_WAVEIN","features":[417]},{"name":"MM_ESS_ES1488_WAVEOUT","features":[417]},{"name":"MM_ESS_ES1688_MIXER","features":[417]},{"name":"MM_ESS_ES1688_WAVEIN","features":[417]},{"name":"MM_ESS_ES1688_WAVEOUT","features":[417]},{"name":"MM_ESS_ES1788_MIXER","features":[417]},{"name":"MM_ESS_ES1788_WAVEIN","features":[417]},{"name":"MM_ESS_ES1788_WAVEOUT","features":[417]},{"name":"MM_ESS_ES1868_MIXER","features":[417]},{"name":"MM_ESS_ES1868_WAVEIN","features":[417]},{"name":"MM_ESS_ES1868_WAVEOUT","features":[417]},{"name":"MM_ESS_ES1878_MIXER","features":[417]},{"name":"MM_ESS_ES1878_WAVEIN","features":[417]},{"name":"MM_ESS_ES1878_WAVEOUT","features":[417]},{"name":"MM_ESS_ES1888_MIXER","features":[417]},{"name":"MM_ESS_ES1888_WAVEIN","features":[417]},{"name":"MM_ESS_ES1888_WAVEOUT","features":[417]},{"name":"MM_ESS_ES488_MIXER","features":[417]},{"name":"MM_ESS_ES488_WAVEIN","features":[417]},{"name":"MM_ESS_ES488_WAVEOUT","features":[417]},{"name":"MM_ESS_ES688_MIXER","features":[417]},{"name":"MM_ESS_ES688_WAVEIN","features":[417]},{"name":"MM_ESS_ES688_WAVEOUT","features":[417]},{"name":"MM_ESS_MIXER","features":[417]},{"name":"MM_ESS_MPU401_MIDIIN","features":[417]},{"name":"MM_ESS_MPU401_MIDIOUT","features":[417]},{"name":"MM_ETEK","features":[417]},{"name":"MM_ETEK_KWIKMIDI_MIDIIN","features":[417]},{"name":"MM_ETEK_KWIKMIDI_MIDIOUT","features":[417]},{"name":"MM_EUPHONICS","features":[417]},{"name":"MM_EUPHONICS_AUX_CD","features":[417]},{"name":"MM_EUPHONICS_AUX_LINE","features":[417]},{"name":"MM_EUPHONICS_AUX_MASTER","features":[417]},{"name":"MM_EUPHONICS_AUX_MIC","features":[417]},{"name":"MM_EUPHONICS_AUX_MIDI","features":[417]},{"name":"MM_EUPHONICS_AUX_WAVE","features":[417]},{"name":"MM_EUPHONICS_EUSYNTH","features":[417]},{"name":"MM_EUPHONICS_FMSYNTH_MONO","features":[417]},{"name":"MM_EUPHONICS_FMSYNTH_STEREO","features":[417]},{"name":"MM_EUPHONICS_MIDIIN","features":[417]},{"name":"MM_EUPHONICS_MIDIOUT","features":[417]},{"name":"MM_EUPHONICS_MIXER","features":[417]},{"name":"MM_EUPHONICS_WAVEIN","features":[417]},{"name":"MM_EUPHONICS_WAVEOUT","features":[417]},{"name":"MM_EVEREX","features":[417]},{"name":"MM_EVEREX_CARRIER","features":[417]},{"name":"MM_EXAN","features":[417]},{"name":"MM_FAITH","features":[417]},{"name":"MM_FAST","features":[417]},{"name":"MM_FHGIIS_MPEGLAYER3","features":[417]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCED","features":[417]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCEDPLUS","features":[417]},{"name":"MM_FHGIIS_MPEGLAYER3_BASIC","features":[417]},{"name":"MM_FHGIIS_MPEGLAYER3_DECODE","features":[417]},{"name":"MM_FHGIIS_MPEGLAYER3_LITE","features":[417]},{"name":"MM_FHGIIS_MPEGLAYER3_PROFESSIONAL","features":[417]},{"name":"MM_FLEXION","features":[417]},{"name":"MM_FLEXION_X300_WAVEIN","features":[417]},{"name":"MM_FLEXION_X300_WAVEOUT","features":[417]},{"name":"MM_FORTEMEDIA","features":[417]},{"name":"MM_FORTEMEDIA_AUX","features":[417]},{"name":"MM_FORTEMEDIA_FMSYNC","features":[417]},{"name":"MM_FORTEMEDIA_MIXER","features":[417]},{"name":"MM_FORTEMEDIA_WAVEIN","features":[417]},{"name":"MM_FORTEMEDIA_WAVEOUT","features":[417]},{"name":"MM_FRAUNHOFER_IIS","features":[417]},{"name":"MM_FRONTIER","features":[417]},{"name":"MM_FRONTIER_WAVECENTER_MIDIIN","features":[417]},{"name":"MM_FRONTIER_WAVECENTER_MIDIOUT","features":[417]},{"name":"MM_FRONTIER_WAVECENTER_WAVEIN","features":[417]},{"name":"MM_FRONTIER_WAVECENTER_WAVEOUT","features":[417]},{"name":"MM_FTR","features":[417]},{"name":"MM_FTR_ACM","features":[417]},{"name":"MM_FTR_ENCODER_WAVEIN","features":[417]},{"name":"MM_FUJITSU","features":[417]},{"name":"MM_GADGETLABS","features":[417]},{"name":"MM_GADGETLABS_WAVE42_WAVEIN","features":[417]},{"name":"MM_GADGETLABS_WAVE42_WAVEOUT","features":[417]},{"name":"MM_GADGETLABS_WAVE44_WAVEIN","features":[417]},{"name":"MM_GADGETLABS_WAVE44_WAVEOUT","features":[417]},{"name":"MM_GADGETLABS_WAVE4_MIDIIN","features":[417]},{"name":"MM_GADGETLABS_WAVE4_MIDIOUT","features":[417]},{"name":"MM_GRANDE","features":[417]},{"name":"MM_GRAVIS","features":[417]},{"name":"MM_GUILLEMOT","features":[417]},{"name":"MM_GULBRANSEN","features":[417]},{"name":"MM_HAFTMANN","features":[417]},{"name":"MM_HAFTMANN_LPTDAC2","features":[417]},{"name":"MM_HEADSPACE","features":[417]},{"name":"MM_HEADSPACE_HAEMIXER","features":[417]},{"name":"MM_HEADSPACE_HAESYNTH","features":[417]},{"name":"MM_HEADSPACE_HAEWAVEIN","features":[417]},{"name":"MM_HEADSPACE_HAEWAVEOUT","features":[417]},{"name":"MM_HEWLETT_PACKARD","features":[417]},{"name":"MM_HEWLETT_PACKARD_CU_CODEC","features":[417]},{"name":"MM_HORIZONS","features":[417]},{"name":"MM_HP","features":[417]},{"name":"MM_HP_WAVEIN","features":[417]},{"name":"MM_HP_WAVEOUT","features":[417]},{"name":"MM_HYPERACTIVE","features":[417]},{"name":"MM_IBM","features":[417]},{"name":"MM_IBM_MWAVE_AUX","features":[417]},{"name":"MM_IBM_MWAVE_MIDIIN","features":[417]},{"name":"MM_IBM_MWAVE_MIDIOUT","features":[417]},{"name":"MM_IBM_MWAVE_MIXER","features":[417]},{"name":"MM_IBM_MWAVE_WAVEIN","features":[417]},{"name":"MM_IBM_MWAVE_WAVEOUT","features":[417]},{"name":"MM_IBM_PCMCIA_AUX","features":[417]},{"name":"MM_IBM_PCMCIA_MIDIIN","features":[417]},{"name":"MM_IBM_PCMCIA_MIDIOUT","features":[417]},{"name":"MM_IBM_PCMCIA_SYNTH","features":[417]},{"name":"MM_IBM_PCMCIA_WAVEIN","features":[417]},{"name":"MM_IBM_PCMCIA_WAVEOUT","features":[417]},{"name":"MM_IBM_THINKPAD200","features":[417]},{"name":"MM_IBM_WC_MIDIOUT","features":[417]},{"name":"MM_IBM_WC_MIXEROUT","features":[417]},{"name":"MM_IBM_WC_WAVEOUT","features":[417]},{"name":"MM_ICCC","features":[417]},{"name":"MM_ICCC_UNA3_AUX","features":[417]},{"name":"MM_ICCC_UNA3_MIXER","features":[417]},{"name":"MM_ICCC_UNA3_WAVEIN","features":[417]},{"name":"MM_ICCC_UNA3_WAVEOUT","features":[417]},{"name":"MM_ICE","features":[417]},{"name":"MM_ICE_AUX","features":[417]},{"name":"MM_ICE_MIDIIN1","features":[417]},{"name":"MM_ICE_MIDIIN2","features":[417]},{"name":"MM_ICE_MIDIOUT1","features":[417]},{"name":"MM_ICE_MIDIOUT2","features":[417]},{"name":"MM_ICE_MIXER","features":[417]},{"name":"MM_ICE_MTWAVEIN","features":[417]},{"name":"MM_ICE_MTWAVEOUT","features":[417]},{"name":"MM_ICE_SYNTH","features":[417]},{"name":"MM_ICE_WAVEIN","features":[417]},{"name":"MM_ICE_WAVEOUT","features":[417]},{"name":"MM_ICL_PS","features":[417]},{"name":"MM_ICOM_AUX","features":[417]},{"name":"MM_ICOM_LINE","features":[417]},{"name":"MM_ICOM_MIXER","features":[417]},{"name":"MM_ICOM_WAVEIN","features":[417]},{"name":"MM_ICOM_WAVEOUT","features":[417]},{"name":"MM_ICS","features":[417]},{"name":"MM_ICS_2115_LITE_MIDIOUT","features":[417]},{"name":"MM_ICS_2120_LITE_MIDIOUT","features":[417]},{"name":"MM_ICS_WAVEDECK_AUX","features":[417]},{"name":"MM_ICS_WAVEDECK_MIXER","features":[417]},{"name":"MM_ICS_WAVEDECK_SYNTH","features":[417]},{"name":"MM_ICS_WAVEDECK_WAVEIN","features":[417]},{"name":"MM_ICS_WAVEDECK_WAVEOUT","features":[417]},{"name":"MM_ICS_WAVEDEC_SB_AUX","features":[417]},{"name":"MM_ICS_WAVEDEC_SB_FM_MIDIOUT","features":[417]},{"name":"MM_ICS_WAVEDEC_SB_MIXER","features":[417]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIIN","features":[417]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIOUT","features":[417]},{"name":"MM_ICS_WAVEDEC_SB_WAVEIN","features":[417]},{"name":"MM_ICS_WAVEDEC_SB_WAVEOUT","features":[417]},{"name":"MM_INSOFT","features":[417]},{"name":"MM_INTEL","features":[417]},{"name":"MM_INTELOPD_AUX","features":[417]},{"name":"MM_INTELOPD_WAVEIN","features":[417]},{"name":"MM_INTELOPD_WAVEOUT","features":[417]},{"name":"MM_INTEL_NSPMODEMLINEIN","features":[417]},{"name":"MM_INTEL_NSPMODEMLINEOUT","features":[417]},{"name":"MM_INTERACTIVE","features":[417]},{"name":"MM_INTERACTIVE_WAVEIN","features":[417]},{"name":"MM_INTERACTIVE_WAVEOUT","features":[417]},{"name":"MM_INTERNET","features":[417]},{"name":"MM_INTERNET_SSW_MIDIIN","features":[417]},{"name":"MM_INTERNET_SSW_MIDIOUT","features":[417]},{"name":"MM_INTERNET_SSW_WAVEIN","features":[417]},{"name":"MM_INTERNET_SSW_WAVEOUT","features":[417]},{"name":"MM_INVISION","features":[417]},{"name":"MM_IODD","features":[417]},{"name":"MM_IOMAGIC","features":[417]},{"name":"MM_IOMAGIC_TEMPO_AUXOUT","features":[417]},{"name":"MM_IOMAGIC_TEMPO_MIDIOUT","features":[417]},{"name":"MM_IOMAGIC_TEMPO_MXDOUT","features":[417]},{"name":"MM_IOMAGIC_TEMPO_SYNTH","features":[417]},{"name":"MM_IOMAGIC_TEMPO_WAVEIN","features":[417]},{"name":"MM_IOMAGIC_TEMPO_WAVEOUT","features":[417]},{"name":"MM_IPI","features":[417]},{"name":"MM_IPI_ACM_HSX","features":[417]},{"name":"MM_IPI_ACM_RPELP","features":[417]},{"name":"MM_IPI_AT_MIXER","features":[417]},{"name":"MM_IPI_AT_WAVEIN","features":[417]},{"name":"MM_IPI_AT_WAVEOUT","features":[417]},{"name":"MM_IPI_WF_ASSS","features":[417]},{"name":"MM_ISOLUTION","features":[417]},{"name":"MM_ISOLUTION_PASCAL","features":[417]},{"name":"MM_ITERATEDSYS","features":[417]},{"name":"MM_ITERATEDSYS_FUFCODEC","features":[417]},{"name":"MM_I_LINK","features":[417]},{"name":"MM_I_LINK_VOICE_CODER","features":[417]},{"name":"MM_KAY_ELEMETRICS","features":[417]},{"name":"MM_KAY_ELEMETRICS_CSL","features":[417]},{"name":"MM_KAY_ELEMETRICS_CSL_4CHANNEL","features":[417]},{"name":"MM_KAY_ELEMETRICS_CSL_DAT","features":[417]},{"name":"MM_KORG","features":[417]},{"name":"MM_KORG_1212IO_MSWAVEIN","features":[417]},{"name":"MM_KORG_1212IO_MSWAVEOUT","features":[417]},{"name":"MM_KORG_PCIF_MIDIIN","features":[417]},{"name":"MM_KORG_PCIF_MIDIOUT","features":[417]},{"name":"MM_LERNOUT_ANDHAUSPIE_LHCODECACM","features":[417]},{"name":"MM_LERNOUT_AND_HAUSPIE","features":[417]},{"name":"MM_LEXICON","features":[417]},{"name":"MM_LEXICON_STUDIO_WAVE_IN","features":[417]},{"name":"MM_LEXICON_STUDIO_WAVE_OUT","features":[417]},{"name":"MM_LOGITECH","features":[417]},{"name":"MM_LUCENT","features":[417]},{"name":"MM_LUCENT_ACM_G723","features":[417]},{"name":"MM_LUCID","features":[417]},{"name":"MM_LUCID_PCI24WAVEIN","features":[417]},{"name":"MM_LUCID_PCI24WAVEOUT","features":[417]},{"name":"MM_LUMINOSITI","features":[417]},{"name":"MM_LUMINOSITI_SCWAVEIN","features":[417]},{"name":"MM_LUMINOSITI_SCWAVEMIX","features":[417]},{"name":"MM_LUMINOSITI_SCWAVEOUT","features":[417]},{"name":"MM_LYNX","features":[417]},{"name":"MM_LYRRUS","features":[417]},{"name":"MM_LYRRUS_BRIDGE_GUITAR","features":[417]},{"name":"MM_MALDEN","features":[417]},{"name":"MM_MARIAN","features":[417]},{"name":"MM_MARIAN_ARC44WAVEIN","features":[417]},{"name":"MM_MARIAN_ARC44WAVEOUT","features":[417]},{"name":"MM_MARIAN_ARC88WAVEIN","features":[417]},{"name":"MM_MARIAN_ARC88WAVEOUT","features":[417]},{"name":"MM_MARIAN_PRODIF24WAVEIN","features":[417]},{"name":"MM_MARIAN_PRODIF24WAVEOUT","features":[417]},{"name":"MM_MATROX_DIV","features":[417]},{"name":"MM_MATSUSHITA","features":[417]},{"name":"MM_MATSUSHITA_AUX","features":[417]},{"name":"MM_MATSUSHITA_FMSYNTH_STEREO","features":[417]},{"name":"MM_MATSUSHITA_MIXER","features":[417]},{"name":"MM_MATSUSHITA_WAVEIN","features":[417]},{"name":"MM_MATSUSHITA_WAVEOUT","features":[417]},{"name":"MM_MEDIASONIC","features":[417]},{"name":"MM_MEDIASONIC_ACM_G723","features":[417]},{"name":"MM_MEDIASONIC_ICOM","features":[417]},{"name":"MM_MEDIATRIX","features":[417]},{"name":"MM_MEDIAVISION","features":[417]},{"name":"MM_MEDIAVISION_CDPC","features":[417]},{"name":"MM_MEDIAVISION_OPUS1208","features":[417]},{"name":"MM_MEDIAVISION_OPUS1216","features":[417]},{"name":"MM_MEDIAVISION_PROAUDIO","features":[417]},{"name":"MM_MEDIAVISION_PROAUDIO_16","features":[417]},{"name":"MM_MEDIAVISION_PROAUDIO_PLUS","features":[417]},{"name":"MM_MEDIAVISION_PROSTUDIO_16","features":[417]},{"name":"MM_MEDIAVISION_THUNDER","features":[417]},{"name":"MM_MEDIAVISION_TPORT","features":[417]},{"name":"MM_MELABS","features":[417]},{"name":"MM_MELABS_MIDI2GO","features":[417]},{"name":"MM_MERGING_MPEGL3","features":[417]},{"name":"MM_MERGING_TECHNOLOGIES","features":[417]},{"name":"MM_METHEUS","features":[417]},{"name":"MM_METHEUS_ZIPPER","features":[417]},{"name":"MM_MICRONAS","features":[417]},{"name":"MM_MICRONAS_CLP833","features":[417]},{"name":"MM_MICRONAS_SC4","features":[417]},{"name":"MM_MINDMAKER","features":[417]},{"name":"MM_MINDMAKER_GC_MIXER","features":[417]},{"name":"MM_MINDMAKER_GC_WAVEIN","features":[417]},{"name":"MM_MINDMAKER_GC_WAVEOUT","features":[417]},{"name":"MM_MIRO","features":[417]},{"name":"MM_MIRO_DC30_MIX","features":[417]},{"name":"MM_MIRO_DC30_WAVEIN","features":[417]},{"name":"MM_MIRO_DC30_WAVEOUT","features":[417]},{"name":"MM_MIRO_MOVIEPRO","features":[417]},{"name":"MM_MIRO_VIDEOD1","features":[417]},{"name":"MM_MIRO_VIDEODC1TV","features":[417]},{"name":"MM_MIRO_VIDEOTD","features":[417]},{"name":"MM_MITEL","features":[417]},{"name":"MM_MITEL_MEDIAPATH_WAVEIN","features":[417]},{"name":"MM_MITEL_MEDIAPATH_WAVEOUT","features":[417]},{"name":"MM_MITEL_MPA_HANDSET_WAVEIN","features":[417]},{"name":"MM_MITEL_MPA_HANDSET_WAVEOUT","features":[417]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEIN","features":[417]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEOUT","features":[417]},{"name":"MM_MITEL_MPA_LINE1_WAVEIN","features":[417]},{"name":"MM_MITEL_MPA_LINE1_WAVEOUT","features":[417]},{"name":"MM_MITEL_MPA_LINE2_WAVEIN","features":[417]},{"name":"MM_MITEL_MPA_LINE2_WAVEOUT","features":[417]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEIN","features":[417]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEOUT","features":[417]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEIN","features":[417]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEOUT","features":[417]},{"name":"MM_MITEL_TALKTO_LINE_WAVEIN","features":[417]},{"name":"MM_MITEL_TALKTO_LINE_WAVEOUT","features":[417]},{"name":"MM_MMOTION_WAVEAUX","features":[417]},{"name":"MM_MMOTION_WAVEIN","features":[417]},{"name":"MM_MMOTION_WAVEOUT","features":[417]},{"name":"MM_MOSCOM","features":[417]},{"name":"MM_MOSCOM_VPC2400_IN","features":[417]},{"name":"MM_MOSCOM_VPC2400_OUT","features":[417]},{"name":"MM_MOTIONPIXELS","features":[417]},{"name":"MM_MOTIONPIXELS_MVI2","features":[417]},{"name":"MM_MOTOROLA","features":[417]},{"name":"MM_MOTU","features":[417]},{"name":"MM_MOTU_DTX_MIDI_IN_A","features":[417]},{"name":"MM_MOTU_DTX_MIDI_IN_B","features":[417]},{"name":"MM_MOTU_DTX_MIDI_IN_SYNC","features":[417]},{"name":"MM_MOTU_DTX_MIDI_OUT_A","features":[417]},{"name":"MM_MOTU_DTX_MIDI_OUT_B","features":[417]},{"name":"MM_MOTU_FLYER_MIDI_IN_A","features":[417]},{"name":"MM_MOTU_FLYER_MIDI_IN_B","features":[417]},{"name":"MM_MOTU_FLYER_MIDI_IN_SYNC","features":[417]},{"name":"MM_MOTU_FLYER_MIDI_OUT_A","features":[417]},{"name":"MM_MOTU_FLYER_MIDI_OUT_B","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_7","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_8","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_ADAT","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIIN_SYNC","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_7","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_8","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ADAT","features":[417]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ALL","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_7","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_8","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_7","features":[417]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_8","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_7","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_8","features":[417]},{"name":"MM_MOTU_MTPII_MIDIIN_SYNC","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_7","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_8","features":[417]},{"name":"MM_MOTU_MTPII_MIDIOUT_ALL","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_7","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_8","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_7","features":[417]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_8","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_7","features":[417]},{"name":"MM_MOTU_MTP_MIDIIN_8","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_7","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_8","features":[417]},{"name":"MM_MOTU_MTP_MIDIOUT_ALL","features":[417]},{"name":"MM_MOTU_MXN_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MXN_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MXN_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MXN_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MXN_MIDIIN_SYNC","features":[417]},{"name":"MM_MOTU_MXN_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MXN_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MXN_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MXN_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MXN_MIDIOUT_ALL","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIIN_SYNC","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_ALL","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_7","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_8","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIIN_SYNC","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_7","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_8","features":[417]},{"name":"MM_MOTU_MXPXT_MIDIOUT_ALL","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_1","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_2","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_3","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_4","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_5","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_6","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_1","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_2","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_3","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_4","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_5","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_6","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_ALL","features":[417]},{"name":"MM_MOTU_MXP_MIDIIN_SYNC","features":[417]},{"name":"MM_MOTU_PKX_MIDI_IN_A","features":[417]},{"name":"MM_MOTU_PKX_MIDI_IN_B","features":[417]},{"name":"MM_MOTU_PKX_MIDI_IN_SYNC","features":[417]},{"name":"MM_MOTU_PKX_MIDI_OUT_A","features":[417]},{"name":"MM_MOTU_PKX_MIDI_OUT_B","features":[417]},{"name":"MM_MPTUS","features":[417]},{"name":"MM_MPTUS_SPWAVEOUT","features":[417]},{"name":"MM_MSFT_ACM_G711","features":[417]},{"name":"MM_MSFT_ACM_GSM610","features":[417]},{"name":"MM_MSFT_ACM_IMAADPCM","features":[417]},{"name":"MM_MSFT_ACM_MSADPCM","features":[417]},{"name":"MM_MSFT_ACM_MSAUDIO1","features":[417]},{"name":"MM_MSFT_ACM_MSFILTER","features":[417]},{"name":"MM_MSFT_ACM_MSG723","features":[417]},{"name":"MM_MSFT_ACM_MSNAUDIO","features":[417]},{"name":"MM_MSFT_ACM_MSRT24","features":[417]},{"name":"MM_MSFT_ACM_PCM","features":[417]},{"name":"MM_MSFT_ACM_WMAUDIO","features":[417]},{"name":"MM_MSFT_ACM_WMAUDIO2","features":[417]},{"name":"MM_MSFT_GENERIC_AUX_CD","features":[417]},{"name":"MM_MSFT_GENERIC_AUX_LINE","features":[417]},{"name":"MM_MSFT_GENERIC_AUX_MIC","features":[417]},{"name":"MM_MSFT_GENERIC_MIDIIN","features":[417]},{"name":"MM_MSFT_GENERIC_MIDIOUT","features":[417]},{"name":"MM_MSFT_GENERIC_MIDISYNTH","features":[417]},{"name":"MM_MSFT_GENERIC_WAVEIN","features":[417]},{"name":"MM_MSFT_GENERIC_WAVEOUT","features":[417]},{"name":"MM_MSFT_MSACM","features":[417]},{"name":"MM_MSFT_MSOPL_SYNTH","features":[417]},{"name":"MM_MSFT_SB16_AUX_CD","features":[417]},{"name":"MM_MSFT_SB16_AUX_LINE","features":[417]},{"name":"MM_MSFT_SB16_MIDIIN","features":[417]},{"name":"MM_MSFT_SB16_MIDIOUT","features":[417]},{"name":"MM_MSFT_SB16_MIXER","features":[417]},{"name":"MM_MSFT_SB16_SYNTH","features":[417]},{"name":"MM_MSFT_SB16_WAVEIN","features":[417]},{"name":"MM_MSFT_SB16_WAVEOUT","features":[417]},{"name":"MM_MSFT_SBPRO_AUX_CD","features":[417]},{"name":"MM_MSFT_SBPRO_AUX_LINE","features":[417]},{"name":"MM_MSFT_SBPRO_MIDIIN","features":[417]},{"name":"MM_MSFT_SBPRO_MIDIOUT","features":[417]},{"name":"MM_MSFT_SBPRO_MIXER","features":[417]},{"name":"MM_MSFT_SBPRO_SYNTH","features":[417]},{"name":"MM_MSFT_SBPRO_WAVEIN","features":[417]},{"name":"MM_MSFT_SBPRO_WAVEOUT","features":[417]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEIN","features":[417]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEOUT","features":[417]},{"name":"MM_MSFT_VMDMS_LINE_WAVEIN","features":[417]},{"name":"MM_MSFT_VMDMS_LINE_WAVEOUT","features":[417]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEIN","features":[417]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEOUT","features":[417]},{"name":"MM_MSFT_VMDMW_LINE_WAVEIN","features":[417]},{"name":"MM_MSFT_VMDMW_LINE_WAVEOUT","features":[417]},{"name":"MM_MSFT_VMDMW_MIXER","features":[417]},{"name":"MM_MSFT_VMDM_GAME_WAVEIN","features":[417]},{"name":"MM_MSFT_VMDM_GAME_WAVEOUT","features":[417]},{"name":"MM_MSFT_WDMAUDIO_AUX","features":[417]},{"name":"MM_MSFT_WDMAUDIO_MIDIIN","features":[417]},{"name":"MM_MSFT_WDMAUDIO_MIDIOUT","features":[417]},{"name":"MM_MSFT_WDMAUDIO_MIXER","features":[417]},{"name":"MM_MSFT_WDMAUDIO_WAVEIN","features":[417]},{"name":"MM_MSFT_WDMAUDIO_WAVEOUT","features":[417]},{"name":"MM_MSFT_WSS_AUX","features":[417]},{"name":"MM_MSFT_WSS_FMSYNTH_STEREO","features":[417]},{"name":"MM_MSFT_WSS_MIXER","features":[417]},{"name":"MM_MSFT_WSS_NT_AUX","features":[417]},{"name":"MM_MSFT_WSS_NT_FMSYNTH_STEREO","features":[417]},{"name":"MM_MSFT_WSS_NT_MIXER","features":[417]},{"name":"MM_MSFT_WSS_NT_WAVEIN","features":[417]},{"name":"MM_MSFT_WSS_NT_WAVEOUT","features":[417]},{"name":"MM_MSFT_WSS_OEM_AUX","features":[417]},{"name":"MM_MSFT_WSS_OEM_FMSYNTH_STEREO","features":[417]},{"name":"MM_MSFT_WSS_OEM_MIXER","features":[417]},{"name":"MM_MSFT_WSS_OEM_WAVEIN","features":[417]},{"name":"MM_MSFT_WSS_OEM_WAVEOUT","features":[417]},{"name":"MM_MSFT_WSS_WAVEIN","features":[417]},{"name":"MM_MSFT_WSS_WAVEOUT","features":[417]},{"name":"MM_MWM","features":[417]},{"name":"MM_NCR","features":[417]},{"name":"MM_NCR_BA_AUX","features":[417]},{"name":"MM_NCR_BA_MIXER","features":[417]},{"name":"MM_NCR_BA_SYNTH","features":[417]},{"name":"MM_NCR_BA_WAVEIN","features":[417]},{"name":"MM_NCR_BA_WAVEOUT","features":[417]},{"name":"MM_NEC","features":[417]},{"name":"MM_NEC_26_SYNTH","features":[417]},{"name":"MM_NEC_73_86_SYNTH","features":[417]},{"name":"MM_NEC_73_86_WAVEIN","features":[417]},{"name":"MM_NEC_73_86_WAVEOUT","features":[417]},{"name":"MM_NEC_JOYSTICK","features":[417]},{"name":"MM_NEC_MPU401_MIDIIN","features":[417]},{"name":"MM_NEC_MPU401_MIDIOUT","features":[417]},{"name":"MM_NEOMAGIC","features":[417]},{"name":"MM_NEOMAGIC_AUX","features":[417]},{"name":"MM_NEOMAGIC_MIDIIN","features":[417]},{"name":"MM_NEOMAGIC_MIDIOUT","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_AUX","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_FMSYNTH","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_GMSYNTH","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_MIDIIN","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_MIDIOUT","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_MIXER","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_WAVEIN","features":[417]},{"name":"MM_NEOMAGIC_MW3DX_WAVEOUT","features":[417]},{"name":"MM_NEOMAGIC_MWAVE_AUX","features":[417]},{"name":"MM_NEOMAGIC_MWAVE_MIDIIN","features":[417]},{"name":"MM_NEOMAGIC_MWAVE_MIDIOUT","features":[417]},{"name":"MM_NEOMAGIC_MWAVE_MIXER","features":[417]},{"name":"MM_NEOMAGIC_MWAVE_WAVEIN","features":[417]},{"name":"MM_NEOMAGIC_MWAVE_WAVEOUT","features":[417]},{"name":"MM_NEOMAGIC_SYNTH","features":[417]},{"name":"MM_NEOMAGIC_WAVEIN","features":[417]},{"name":"MM_NEOMAGIC_WAVEOUT","features":[417]},{"name":"MM_NETSCAPE","features":[417]},{"name":"MM_NETXL","features":[417]},{"name":"MM_NETXL_XLVIDEO","features":[417]},{"name":"MM_NEWMEDIA","features":[417]},{"name":"MM_NEWMEDIA_WAVJAMMER","features":[417]},{"name":"MM_NMP","features":[417]},{"name":"MM_NMP_ACM_AMR","features":[417]},{"name":"MM_NMP_CCP_WAVEIN","features":[417]},{"name":"MM_NMP_CCP_WAVEOUT","features":[417]},{"name":"MM_NMS","features":[417]},{"name":"MM_NOGATECH","features":[417]},{"name":"MM_NORRIS","features":[417]},{"name":"MM_NORRIS_VOICELINK","features":[417]},{"name":"MM_NORTEL_MPXAC_WAVEIN","features":[417]},{"name":"MM_NORTEL_MPXAC_WAVEOUT","features":[417]},{"name":"MM_NORTHERN_TELECOM","features":[417]},{"name":"MM_NVIDIA","features":[417]},{"name":"MM_NVIDIA_AUX","features":[417]},{"name":"MM_NVIDIA_GAMEPORT","features":[417]},{"name":"MM_NVIDIA_MIDIIN","features":[417]},{"name":"MM_NVIDIA_MIDIOUT","features":[417]},{"name":"MM_NVIDIA_MIXER","features":[417]},{"name":"MM_NVIDIA_WAVEIN","features":[417]},{"name":"MM_NVIDIA_WAVEOUT","features":[417]},{"name":"MM_OKI","features":[417]},{"name":"MM_OKSORI","features":[417]},{"name":"MM_OKSORI_BASE","features":[417]},{"name":"MM_OKSORI_EXT_MIC1","features":[417]},{"name":"MM_OKSORI_EXT_MIC2","features":[417]},{"name":"MM_OKSORI_FM_OPL4","features":[417]},{"name":"MM_OKSORI_MIDIIN","features":[417]},{"name":"MM_OKSORI_MIDIOUT","features":[417]},{"name":"MM_OKSORI_MIX_AUX1","features":[417]},{"name":"MM_OKSORI_MIX_CD","features":[417]},{"name":"MM_OKSORI_MIX_ECHO","features":[417]},{"name":"MM_OKSORI_MIX_FM","features":[417]},{"name":"MM_OKSORI_MIX_LINE","features":[417]},{"name":"MM_OKSORI_MIX_LINE1","features":[417]},{"name":"MM_OKSORI_MIX_MASTER","features":[417]},{"name":"MM_OKSORI_MIX_MIC","features":[417]},{"name":"MM_OKSORI_MIX_WAVE","features":[417]},{"name":"MM_OKSORI_MPEG_CDVISION","features":[417]},{"name":"MM_OKSORI_OSR16_WAVEIN","features":[417]},{"name":"MM_OKSORI_OSR16_WAVEOUT","features":[417]},{"name":"MM_OKSORI_OSR8_WAVEIN","features":[417]},{"name":"MM_OKSORI_OSR8_WAVEOUT","features":[417]},{"name":"MM_OLIVETTI","features":[417]},{"name":"MM_OLIVETTI_ACM_ADPCM","features":[417]},{"name":"MM_OLIVETTI_ACM_CELP","features":[417]},{"name":"MM_OLIVETTI_ACM_GSM","features":[417]},{"name":"MM_OLIVETTI_ACM_OPR","features":[417]},{"name":"MM_OLIVETTI_ACM_SBC","features":[417]},{"name":"MM_OLIVETTI_AUX","features":[417]},{"name":"MM_OLIVETTI_JOYSTICK","features":[417]},{"name":"MM_OLIVETTI_MIDIIN","features":[417]},{"name":"MM_OLIVETTI_MIDIOUT","features":[417]},{"name":"MM_OLIVETTI_MIXER","features":[417]},{"name":"MM_OLIVETTI_SYNTH","features":[417]},{"name":"MM_OLIVETTI_WAVEIN","features":[417]},{"name":"MM_OLIVETTI_WAVEOUT","features":[417]},{"name":"MM_ONLIVE","features":[417]},{"name":"MM_ONLIVE_MPCODEC","features":[417]},{"name":"MM_OPCODE","features":[417]},{"name":"MM_OPTI","features":[417]},{"name":"MM_OPTI_M16_AUX","features":[417]},{"name":"MM_OPTI_M16_FMSYNTH_STEREO","features":[417]},{"name":"MM_OPTI_M16_MIDIIN","features":[417]},{"name":"MM_OPTI_M16_MIDIOUT","features":[417]},{"name":"MM_OPTI_M16_MIXER","features":[417]},{"name":"MM_OPTI_M16_WAVEIN","features":[417]},{"name":"MM_OPTI_M16_WAVEOUT","features":[417]},{"name":"MM_OPTI_M32_AUX","features":[417]},{"name":"MM_OPTI_M32_MIDIIN","features":[417]},{"name":"MM_OPTI_M32_MIDIOUT","features":[417]},{"name":"MM_OPTI_M32_MIXER","features":[417]},{"name":"MM_OPTI_M32_SYNTH_STEREO","features":[417]},{"name":"MM_OPTI_M32_WAVEIN","features":[417]},{"name":"MM_OPTI_M32_WAVEOUT","features":[417]},{"name":"MM_OPTI_P16_AUX","features":[417]},{"name":"MM_OPTI_P16_FMSYNTH_STEREO","features":[417]},{"name":"MM_OPTI_P16_MIDIIN","features":[417]},{"name":"MM_OPTI_P16_MIDIOUT","features":[417]},{"name":"MM_OPTI_P16_MIXER","features":[417]},{"name":"MM_OPTI_P16_WAVEIN","features":[417]},{"name":"MM_OPTI_P16_WAVEOUT","features":[417]},{"name":"MM_OPUS1208_AUX","features":[417]},{"name":"MM_OPUS1208_MIXER","features":[417]},{"name":"MM_OPUS1208_SYNTH","features":[417]},{"name":"MM_OPUS1208_WAVEIN","features":[417]},{"name":"MM_OPUS1208_WAVEOUT","features":[417]},{"name":"MM_OPUS1216_AUX","features":[417]},{"name":"MM_OPUS1216_MIDIIN","features":[417]},{"name":"MM_OPUS1216_MIDIOUT","features":[417]},{"name":"MM_OPUS1216_MIXER","features":[417]},{"name":"MM_OPUS1216_SYNTH","features":[417]},{"name":"MM_OPUS1216_WAVEIN","features":[417]},{"name":"MM_OPUS1216_WAVEOUT","features":[417]},{"name":"MM_OPUS401_MIDIIN","features":[417]},{"name":"MM_OPUS401_MIDIOUT","features":[417]},{"name":"MM_OSITECH","features":[417]},{"name":"MM_OSITECH_TRUMPCARD","features":[417]},{"name":"MM_OSPREY","features":[417]},{"name":"MM_OSPREY_1000WAVEIN","features":[417]},{"name":"MM_OSPREY_1000WAVEOUT","features":[417]},{"name":"MM_OTI","features":[417]},{"name":"MM_OTI_611MIDIN","features":[417]},{"name":"MM_OTI_611MIDIOUT","features":[417]},{"name":"MM_OTI_611MIXER","features":[417]},{"name":"MM_OTI_611WAVEIN","features":[417]},{"name":"MM_OTI_611WAVEOUT","features":[417]},{"name":"MM_PACIFICRESEARCH","features":[417]},{"name":"MM_PCSPEAKER_WAVEOUT","features":[417]},{"name":"MM_PHILIPS_ACM_LPCBB","features":[417]},{"name":"MM_PHILIPS_SPEECH_PROCESSING","features":[417]},{"name":"MM_PHONET","features":[417]},{"name":"MM_PHONET_PP_MIXER","features":[417]},{"name":"MM_PHONET_PP_WAVEIN","features":[417]},{"name":"MM_PHONET_PP_WAVEOUT","features":[417]},{"name":"MM_PICTURETEL","features":[417]},{"name":"MM_PID_UNMAPPED","features":[417]},{"name":"MM_PINNACLE","features":[417]},{"name":"MM_PRAGMATRAX","features":[417]},{"name":"MM_PRECEPT","features":[417]},{"name":"MM_PROAUD_16_AUX","features":[417]},{"name":"MM_PROAUD_16_MIDIIN","features":[417]},{"name":"MM_PROAUD_16_MIDIOUT","features":[417]},{"name":"MM_PROAUD_16_MIXER","features":[417]},{"name":"MM_PROAUD_16_SYNTH","features":[417]},{"name":"MM_PROAUD_16_WAVEIN","features":[417]},{"name":"MM_PROAUD_16_WAVEOUT","features":[417]},{"name":"MM_PROAUD_AUX","features":[417]},{"name":"MM_PROAUD_MIDIIN","features":[417]},{"name":"MM_PROAUD_MIDIOUT","features":[417]},{"name":"MM_PROAUD_MIXER","features":[417]},{"name":"MM_PROAUD_PLUS_AUX","features":[417]},{"name":"MM_PROAUD_PLUS_MIDIIN","features":[417]},{"name":"MM_PROAUD_PLUS_MIDIOUT","features":[417]},{"name":"MM_PROAUD_PLUS_MIXER","features":[417]},{"name":"MM_PROAUD_PLUS_SYNTH","features":[417]},{"name":"MM_PROAUD_PLUS_WAVEIN","features":[417]},{"name":"MM_PROAUD_PLUS_WAVEOUT","features":[417]},{"name":"MM_PROAUD_SYNTH","features":[417]},{"name":"MM_PROAUD_WAVEIN","features":[417]},{"name":"MM_PROAUD_WAVEOUT","features":[417]},{"name":"MM_QCIAR","features":[417]},{"name":"MM_QDESIGN","features":[417]},{"name":"MM_QDESIGN_ACM_MPEG","features":[417]},{"name":"MM_QDESIGN_ACM_QDESIGN_MUSIC","features":[417]},{"name":"MM_QTEAM","features":[417]},{"name":"MM_QUALCOMM","features":[417]},{"name":"MM_QUANTUM3D","features":[417]},{"name":"MM_QUARTERDECK","features":[417]},{"name":"MM_QUARTERDECK_LHWAVEIN","features":[417]},{"name":"MM_QUARTERDECK_LHWAVEOUT","features":[417]},{"name":"MM_QUICKAUDIO","features":[417]},{"name":"MM_QUICKAUDIO_MAXIMIDI","features":[417]},{"name":"MM_QUICKAUDIO_MINIMIDI","features":[417]},{"name":"MM_QUICKNET","features":[417]},{"name":"MM_QUICKNET_PJWAVEIN","features":[417]},{"name":"MM_QUICKNET_PJWAVEOUT","features":[417]},{"name":"MM_RADIUS","features":[417]},{"name":"MM_RHETOREX","features":[417]},{"name":"MM_RHETOREX_WAVEIN","features":[417]},{"name":"MM_RHETOREX_WAVEOUT","features":[417]},{"name":"MM_RICHMOND","features":[417]},{"name":"MM_ROCKWELL","features":[417]},{"name":"MM_ROLAND","features":[417]},{"name":"MM_ROLAND_MPU401_MIDIIN","features":[417]},{"name":"MM_ROLAND_MPU401_MIDIOUT","features":[417]},{"name":"MM_ROLAND_RAP10_MIDIIN","features":[417]},{"name":"MM_ROLAND_RAP10_MIDIOUT","features":[417]},{"name":"MM_ROLAND_RAP10_SYNTH","features":[417]},{"name":"MM_ROLAND_RAP10_WAVEIN","features":[417]},{"name":"MM_ROLAND_RAP10_WAVEOUT","features":[417]},{"name":"MM_ROLAND_SC7_MIDIIN","features":[417]},{"name":"MM_ROLAND_SC7_MIDIOUT","features":[417]},{"name":"MM_ROLAND_SCP_AUX","features":[417]},{"name":"MM_ROLAND_SCP_MIDIIN","features":[417]},{"name":"MM_ROLAND_SCP_MIDIOUT","features":[417]},{"name":"MM_ROLAND_SCP_MIXER","features":[417]},{"name":"MM_ROLAND_SCP_WAVEIN","features":[417]},{"name":"MM_ROLAND_SCP_WAVEOUT","features":[417]},{"name":"MM_ROLAND_SERIAL_MIDIIN","features":[417]},{"name":"MM_ROLAND_SERIAL_MIDIOUT","features":[417]},{"name":"MM_ROLAND_SMPU_MIDIINA","features":[417]},{"name":"MM_ROLAND_SMPU_MIDIINB","features":[417]},{"name":"MM_ROLAND_SMPU_MIDIOUTA","features":[417]},{"name":"MM_ROLAND_SMPU_MIDIOUTB","features":[417]},{"name":"MM_RZS","features":[417]},{"name":"MM_RZS_ACM_TUBGSM","features":[417]},{"name":"MM_S3","features":[417]},{"name":"MM_S3_AUX","features":[417]},{"name":"MM_S3_FMSYNTH","features":[417]},{"name":"MM_S3_MIDIIN","features":[417]},{"name":"MM_S3_MIDIOUT","features":[417]},{"name":"MM_S3_MIXER","features":[417]},{"name":"MM_S3_WAVEIN","features":[417]},{"name":"MM_S3_WAVEOUT","features":[417]},{"name":"MM_SANYO","features":[417]},{"name":"MM_SANYO_ACM_LD_ADPCM","features":[417]},{"name":"MM_SCALACS","features":[417]},{"name":"MM_SEERSYS","features":[417]},{"name":"MM_SEERSYS_REALITY","features":[417]},{"name":"MM_SEERSYS_SEERMIX","features":[417]},{"name":"MM_SEERSYS_SEERSYNTH","features":[417]},{"name":"MM_SEERSYS_SEERWAVE","features":[417]},{"name":"MM_SEERSYS_WAVESYNTH","features":[417]},{"name":"MM_SEERSYS_WAVESYNTH_WG","features":[417]},{"name":"MM_SELSIUS_SYSTEMS","features":[417]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEIN","features":[417]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEOUT","features":[417]},{"name":"MM_SGI","features":[417]},{"name":"MM_SGI_320_MIXER","features":[417]},{"name":"MM_SGI_320_WAVEIN","features":[417]},{"name":"MM_SGI_320_WAVEOUT","features":[417]},{"name":"MM_SGI_540_MIXER","features":[417]},{"name":"MM_SGI_540_WAVEIN","features":[417]},{"name":"MM_SGI_540_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO32_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO34_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_AESMONO1_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_AESMONO1_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_AESMONO2_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_AESMONO2_WAVEOUT","features":[417]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEIN","features":[417]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEOUT","features":[417]},{"name":"MM_SHARP","features":[417]},{"name":"MM_SHARP_MDC_AUX","features":[417]},{"name":"MM_SHARP_MDC_AUX_BASS","features":[417]},{"name":"MM_SHARP_MDC_AUX_CHR","features":[417]},{"name":"MM_SHARP_MDC_AUX_MASTER","features":[417]},{"name":"MM_SHARP_MDC_AUX_MIDI_VOL","features":[417]},{"name":"MM_SHARP_MDC_AUX_RVB","features":[417]},{"name":"MM_SHARP_MDC_AUX_TREBLE","features":[417]},{"name":"MM_SHARP_MDC_AUX_VOL","features":[417]},{"name":"MM_SHARP_MDC_AUX_WAVE_CHR","features":[417]},{"name":"MM_SHARP_MDC_AUX_WAVE_RVB","features":[417]},{"name":"MM_SHARP_MDC_AUX_WAVE_VOL","features":[417]},{"name":"MM_SHARP_MDC_MIDI_IN","features":[417]},{"name":"MM_SHARP_MDC_MIDI_OUT","features":[417]},{"name":"MM_SHARP_MDC_MIDI_SYNTH","features":[417]},{"name":"MM_SHARP_MDC_MIXER","features":[417]},{"name":"MM_SHARP_MDC_WAVE_IN","features":[417]},{"name":"MM_SHARP_MDC_WAVE_OUT","features":[417]},{"name":"MM_SICRESOURCE","features":[417]},{"name":"MM_SICRESOURCE_SSO3D","features":[417]},{"name":"MM_SICRESOURCE_SSOW3DI","features":[417]},{"name":"MM_SIEMENS_SBC","features":[417]},{"name":"MM_SIERRA","features":[417]},{"name":"MM_SIERRA_ARIA_AUX","features":[417]},{"name":"MM_SIERRA_ARIA_AUX2","features":[417]},{"name":"MM_SIERRA_ARIA_MIDIIN","features":[417]},{"name":"MM_SIERRA_ARIA_MIDIOUT","features":[417]},{"name":"MM_SIERRA_ARIA_SYNTH","features":[417]},{"name":"MM_SIERRA_ARIA_WAVEIN","features":[417]},{"name":"MM_SIERRA_ARIA_WAVEOUT","features":[417]},{"name":"MM_SIERRA_QUARTET_AUX_CD","features":[417]},{"name":"MM_SIERRA_QUARTET_AUX_LINE","features":[417]},{"name":"MM_SIERRA_QUARTET_AUX_MODEM","features":[417]},{"name":"MM_SIERRA_QUARTET_MIDIIN","features":[417]},{"name":"MM_SIERRA_QUARTET_MIDIOUT","features":[417]},{"name":"MM_SIERRA_QUARTET_MIXER","features":[417]},{"name":"MM_SIERRA_QUARTET_SYNTH","features":[417]},{"name":"MM_SIERRA_QUARTET_WAVEIN","features":[417]},{"name":"MM_SIERRA_QUARTET_WAVEOUT","features":[417]},{"name":"MM_SILICONSOFT","features":[417]},{"name":"MM_SILICONSOFT_SC1_WAVEIN","features":[417]},{"name":"MM_SILICONSOFT_SC1_WAVEOUT","features":[417]},{"name":"MM_SILICONSOFT_SC2_WAVEIN","features":[417]},{"name":"MM_SILICONSOFT_SC2_WAVEOUT","features":[417]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEIN","features":[417]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEOUT","features":[417]},{"name":"MM_SILICONSOFT_SOUNDJR2_WAVEOUT","features":[417]},{"name":"MM_SILICONSOFT_SOUNDJR3_WAVEOUT","features":[417]},{"name":"MM_SIPROLAB","features":[417]},{"name":"MM_SIPROLAB_ACELPNET","features":[417]},{"name":"MM_SNI","features":[417]},{"name":"MM_SNI_ACM_G721","features":[417]},{"name":"MM_SOFTLAB_NSK","features":[417]},{"name":"MM_SOFTLAB_NSK_FRW_AUX","features":[417]},{"name":"MM_SOFTLAB_NSK_FRW_MIXER","features":[417]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEIN","features":[417]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEOUT","features":[417]},{"name":"MM_SOFTSOUND","features":[417]},{"name":"MM_SOFTSOUND_CODEC","features":[417]},{"name":"MM_SONICFOUNDRY","features":[417]},{"name":"MM_SONORUS","features":[417]},{"name":"MM_SONORUS_STUDIO","features":[417]},{"name":"MM_SONY","features":[417]},{"name":"MM_SONY_ACM_SCX","features":[417]},{"name":"MM_SORVIS","features":[417]},{"name":"MM_SOUNDESIGNS","features":[417]},{"name":"MM_SOUNDESIGNS_WAVEIN","features":[417]},{"name":"MM_SOUNDESIGNS_WAVEOUT","features":[417]},{"name":"MM_SOUNDSCAPE_AUX","features":[417]},{"name":"MM_SOUNDSCAPE_MIDIIN","features":[417]},{"name":"MM_SOUNDSCAPE_MIDIOUT","features":[417]},{"name":"MM_SOUNDSCAPE_MIXER","features":[417]},{"name":"MM_SOUNDSCAPE_SYNTH","features":[417]},{"name":"MM_SOUNDSCAPE_WAVEIN","features":[417]},{"name":"MM_SOUNDSCAPE_WAVEOUT","features":[417]},{"name":"MM_SOUNDSCAPE_WAVEOUT_AUX","features":[417]},{"name":"MM_SOUNDSPACE","features":[417]},{"name":"MM_SPECTRUM_PRODUCTIONS","features":[417]},{"name":"MM_SPECTRUM_SIGNAL_PROCESSING","features":[417]},{"name":"MM_SPEECHCOMP","features":[417]},{"name":"MM_SPLASH_STUDIOS","features":[417]},{"name":"MM_SSP_SNDFESAUX","features":[417]},{"name":"MM_SSP_SNDFESMIDIIN","features":[417]},{"name":"MM_SSP_SNDFESMIDIOUT","features":[417]},{"name":"MM_SSP_SNDFESMIX","features":[417]},{"name":"MM_SSP_SNDFESSYNTH","features":[417]},{"name":"MM_SSP_SNDFESWAVEIN","features":[417]},{"name":"MM_SSP_SNDFESWAVEOUT","features":[417]},{"name":"MM_STUDER","features":[417]},{"name":"MM_STUDIO_16_AUX","features":[417]},{"name":"MM_STUDIO_16_MIDIIN","features":[417]},{"name":"MM_STUDIO_16_MIDIOUT","features":[417]},{"name":"MM_STUDIO_16_MIXER","features":[417]},{"name":"MM_STUDIO_16_SYNTH","features":[417]},{"name":"MM_STUDIO_16_WAVEIN","features":[417]},{"name":"MM_STUDIO_16_WAVEOUT","features":[417]},{"name":"MM_ST_MICROELECTRONICS","features":[417]},{"name":"MM_SUNCOM","features":[417]},{"name":"MM_SUPERMAC","features":[417]},{"name":"MM_SYDEC_NV","features":[417]},{"name":"MM_SYDEC_NV_WAVEIN","features":[417]},{"name":"MM_SYDEC_NV_WAVEOUT","features":[417]},{"name":"MM_TANDY","features":[417]},{"name":"MM_TANDY_PSSJWAVEIN","features":[417]},{"name":"MM_TANDY_PSSJWAVEOUT","features":[417]},{"name":"MM_TANDY_SENS_MMAMIDIIN","features":[417]},{"name":"MM_TANDY_SENS_MMAMIDIOUT","features":[417]},{"name":"MM_TANDY_SENS_MMAWAVEIN","features":[417]},{"name":"MM_TANDY_SENS_MMAWAVEOUT","features":[417]},{"name":"MM_TANDY_SENS_VISWAVEOUT","features":[417]},{"name":"MM_TANDY_VISBIOSSYNTH","features":[417]},{"name":"MM_TANDY_VISWAVEIN","features":[417]},{"name":"MM_TANDY_VISWAVEOUT","features":[417]},{"name":"MM_TBS_TROPEZ_AUX1","features":[417]},{"name":"MM_TBS_TROPEZ_AUX2","features":[417]},{"name":"MM_TBS_TROPEZ_LINE","features":[417]},{"name":"MM_TBS_TROPEZ_WAVEIN","features":[417]},{"name":"MM_TBS_TROPEZ_WAVEOUT","features":[417]},{"name":"MM_TDK","features":[417]},{"name":"MM_TDK_MW_AUX","features":[417]},{"name":"MM_TDK_MW_AUX_BASS","features":[417]},{"name":"MM_TDK_MW_AUX_CHR","features":[417]},{"name":"MM_TDK_MW_AUX_MASTER","features":[417]},{"name":"MM_TDK_MW_AUX_MIDI_VOL","features":[417]},{"name":"MM_TDK_MW_AUX_RVB","features":[417]},{"name":"MM_TDK_MW_AUX_TREBLE","features":[417]},{"name":"MM_TDK_MW_AUX_VOL","features":[417]},{"name":"MM_TDK_MW_AUX_WAVE_CHR","features":[417]},{"name":"MM_TDK_MW_AUX_WAVE_RVB","features":[417]},{"name":"MM_TDK_MW_AUX_WAVE_VOL","features":[417]},{"name":"MM_TDK_MW_MIDI_IN","features":[417]},{"name":"MM_TDK_MW_MIDI_OUT","features":[417]},{"name":"MM_TDK_MW_MIDI_SYNTH","features":[417]},{"name":"MM_TDK_MW_MIXER","features":[417]},{"name":"MM_TDK_MW_WAVE_IN","features":[417]},{"name":"MM_TDK_MW_WAVE_OUT","features":[417]},{"name":"MM_TELEKOL","features":[417]},{"name":"MM_TELEKOL_WAVEIN","features":[417]},{"name":"MM_TELEKOL_WAVEOUT","features":[417]},{"name":"MM_TERALOGIC","features":[417]},{"name":"MM_TERRATEC","features":[417]},{"name":"MM_THUNDER_AUX","features":[417]},{"name":"MM_THUNDER_SYNTH","features":[417]},{"name":"MM_THUNDER_WAVEIN","features":[417]},{"name":"MM_THUNDER_WAVEOUT","features":[417]},{"name":"MM_TPORT_SYNTH","features":[417]},{"name":"MM_TPORT_WAVEIN","features":[417]},{"name":"MM_TPORT_WAVEOUT","features":[417]},{"name":"MM_TRUEVISION","features":[417]},{"name":"MM_TRUEVISION_WAVEIN1","features":[417]},{"name":"MM_TRUEVISION_WAVEOUT1","features":[417]},{"name":"MM_TTEWS_AUX","features":[417]},{"name":"MM_TTEWS_MIDIIN","features":[417]},{"name":"MM_TTEWS_MIDIMONITOR","features":[417]},{"name":"MM_TTEWS_MIDIOUT","features":[417]},{"name":"MM_TTEWS_MIDISYNTH","features":[417]},{"name":"MM_TTEWS_MIXER","features":[417]},{"name":"MM_TTEWS_VMIDIIN","features":[417]},{"name":"MM_TTEWS_VMIDIOUT","features":[417]},{"name":"MM_TTEWS_WAVEIN","features":[417]},{"name":"MM_TTEWS_WAVEOUT","features":[417]},{"name":"MM_TURTLE_BEACH","features":[417]},{"name":"MM_UHER_INFORMATIC","features":[417]},{"name":"MM_UH_ACM_ADPCM","features":[417]},{"name":"MM_UNISYS","features":[417]},{"name":"MM_UNISYS_ACM_NAP","features":[417]},{"name":"MM_UNMAPPED","features":[417]},{"name":"MM_VAL","features":[417]},{"name":"MM_VAL_MICROKEY_AP_WAVEIN","features":[417]},{"name":"MM_VAL_MICROKEY_AP_WAVEOUT","features":[417]},{"name":"MM_VANKOEVERING","features":[417]},{"name":"MM_VIA","features":[417]},{"name":"MM_VIA_AUX","features":[417]},{"name":"MM_VIA_MIXER","features":[417]},{"name":"MM_VIA_MPU401_MIDIIN","features":[417]},{"name":"MM_VIA_MPU401_MIDIOUT","features":[417]},{"name":"MM_VIA_SWFM_SYNTH","features":[417]},{"name":"MM_VIA_WAVEIN","features":[417]},{"name":"MM_VIA_WAVEOUT","features":[417]},{"name":"MM_VIA_WDM_MIXER","features":[417]},{"name":"MM_VIA_WDM_MPU401_MIDIIN","features":[417]},{"name":"MM_VIA_WDM_MPU401_MIDIOUT","features":[417]},{"name":"MM_VIA_WDM_WAVEIN","features":[417]},{"name":"MM_VIA_WDM_WAVEOUT","features":[417]},{"name":"MM_VIDEOLOGIC","features":[417]},{"name":"MM_VIDEOLOGIC_MSWAVEIN","features":[417]},{"name":"MM_VIDEOLOGIC_MSWAVEOUT","features":[417]},{"name":"MM_VIENNASYS","features":[417]},{"name":"MM_VIENNASYS_TSP_WAVE_DRIVER","features":[417]},{"name":"MM_VIONA","features":[417]},{"name":"MM_VIONAQVINPCI_WAVEOUT","features":[417]},{"name":"MM_VIONA_BUSTER_MIXER","features":[417]},{"name":"MM_VIONA_CINEMASTER_MIXER","features":[417]},{"name":"MM_VIONA_CONCERTO_MIXER","features":[417]},{"name":"MM_VIONA_QVINPCI_MIXER","features":[417]},{"name":"MM_VIONA_QVINPCI_WAVEIN","features":[417]},{"name":"MM_VIRTUALMUSIC","features":[417]},{"name":"MM_VITEC","features":[417]},{"name":"MM_VITEC_VMAKER","features":[417]},{"name":"MM_VITEC_VMPRO","features":[417]},{"name":"MM_VIVO","features":[417]},{"name":"MM_VIVO_AUDIO_CODEC","features":[417]},{"name":"MM_VKC_MPU401_MIDIIN","features":[417]},{"name":"MM_VKC_MPU401_MIDIOUT","features":[417]},{"name":"MM_VKC_SERIAL_MIDIIN","features":[417]},{"name":"MM_VKC_SERIAL_MIDIOUT","features":[417]},{"name":"MM_VOCALTEC","features":[417]},{"name":"MM_VOCALTEC_WAVEIN","features":[417]},{"name":"MM_VOCALTEC_WAVEOUT","features":[417]},{"name":"MM_VOICEINFO","features":[417]},{"name":"MM_VOICEMIXER","features":[417]},{"name":"MM_VOXWARE","features":[417]},{"name":"MM_VOXWARE_CODEC","features":[417]},{"name":"MM_VOYETRA","features":[417]},{"name":"MM_VQST","features":[417]},{"name":"MM_VQST_VQC1","features":[417]},{"name":"MM_VQST_VQC2","features":[417]},{"name":"MM_VTG","features":[417]},{"name":"MM_WANGLABS","features":[417]},{"name":"MM_WANGLABS_WAVEIN1","features":[417]},{"name":"MM_WANGLABS_WAVEOUT1","features":[417]},{"name":"MM_WEITEK","features":[417]},{"name":"MM_WILDCAT","features":[417]},{"name":"MM_WILDCAT_AUTOSCOREMIDIIN","features":[417]},{"name":"MM_WILLOPOND_SNDCOMM_WAVEIN","features":[417]},{"name":"MM_WILLOWPOND","features":[417]},{"name":"MM_WILLOWPOND_FMSYNTH_STEREO","features":[417]},{"name":"MM_WILLOWPOND_GENERIC_AUX","features":[417]},{"name":"MM_WILLOWPOND_GENERIC_MIXER","features":[417]},{"name":"MM_WILLOWPOND_GENERIC_WAVEIN","features":[417]},{"name":"MM_WILLOWPOND_GENERIC_WAVEOUT","features":[417]},{"name":"MM_WILLOWPOND_MPU401","features":[417]},{"name":"MM_WILLOWPOND_PH_AUX","features":[417]},{"name":"MM_WILLOWPOND_PH_MIXER","features":[417]},{"name":"MM_WILLOWPOND_PH_WAVEIN","features":[417]},{"name":"MM_WILLOWPOND_PH_WAVEOUT","features":[417]},{"name":"MM_WILLOWPOND_SNDCOMM_AUX","features":[417]},{"name":"MM_WILLOWPOND_SNDCOMM_MIXER","features":[417]},{"name":"MM_WILLOWPOND_SNDCOMM_WAVEOUT","features":[417]},{"name":"MM_WILLOWPOND_SNDPORT_AUX","features":[417]},{"name":"MM_WILLOWPOND_SNDPORT_MIXER","features":[417]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEIN","features":[417]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEOUT","features":[417]},{"name":"MM_WINBOND","features":[417]},{"name":"MM_WINNOV","features":[417]},{"name":"MM_WINNOV_CAVIAR_CHAMPAGNE","features":[417]},{"name":"MM_WINNOV_CAVIAR_VIDC","features":[417]},{"name":"MM_WINNOV_CAVIAR_WAVEIN","features":[417]},{"name":"MM_WINNOV_CAVIAR_WAVEOUT","features":[417]},{"name":"MM_WINNOV_CAVIAR_YUV8","features":[417]},{"name":"MM_WORKBIT","features":[417]},{"name":"MM_WORKBIT_AUX","features":[417]},{"name":"MM_WORKBIT_FMSYNTH","features":[417]},{"name":"MM_WORKBIT_JOYSTICK","features":[417]},{"name":"MM_WORKBIT_MIDIIN","features":[417]},{"name":"MM_WORKBIT_MIDIOUT","features":[417]},{"name":"MM_WORKBIT_MIXER","features":[417]},{"name":"MM_WORKBIT_WAVEIN","features":[417]},{"name":"MM_WORKBIT_WAVEOUT","features":[417]},{"name":"MM_WSS_SB16_AUX_CD","features":[417]},{"name":"MM_WSS_SB16_AUX_LINE","features":[417]},{"name":"MM_WSS_SB16_MIDIIN","features":[417]},{"name":"MM_WSS_SB16_MIDIOUT","features":[417]},{"name":"MM_WSS_SB16_MIXER","features":[417]},{"name":"MM_WSS_SB16_SYNTH","features":[417]},{"name":"MM_WSS_SB16_WAVEIN","features":[417]},{"name":"MM_WSS_SB16_WAVEOUT","features":[417]},{"name":"MM_WSS_SBPRO_AUX_CD","features":[417]},{"name":"MM_WSS_SBPRO_AUX_LINE","features":[417]},{"name":"MM_WSS_SBPRO_MIDIIN","features":[417]},{"name":"MM_WSS_SBPRO_MIDIOUT","features":[417]},{"name":"MM_WSS_SBPRO_MIXER","features":[417]},{"name":"MM_WSS_SBPRO_SYNTH","features":[417]},{"name":"MM_WSS_SBPRO_WAVEIN","features":[417]},{"name":"MM_WSS_SBPRO_WAVEOUT","features":[417]},{"name":"MM_XEBEC","features":[417]},{"name":"MM_XIRLINK","features":[417]},{"name":"MM_XIRLINK_VISIONLINK","features":[417]},{"name":"MM_XYZ","features":[417]},{"name":"MM_YAMAHA","features":[417]},{"name":"MM_YAMAHA_ACXG_AUX","features":[417]},{"name":"MM_YAMAHA_ACXG_MIDIOUT","features":[417]},{"name":"MM_YAMAHA_ACXG_MIXER","features":[417]},{"name":"MM_YAMAHA_ACXG_WAVEIN","features":[417]},{"name":"MM_YAMAHA_ACXG_WAVEOUT","features":[417]},{"name":"MM_YAMAHA_GSS_AUX","features":[417]},{"name":"MM_YAMAHA_GSS_MIDIIN","features":[417]},{"name":"MM_YAMAHA_GSS_MIDIOUT","features":[417]},{"name":"MM_YAMAHA_GSS_SYNTH","features":[417]},{"name":"MM_YAMAHA_GSS_WAVEIN","features":[417]},{"name":"MM_YAMAHA_GSS_WAVEOUT","features":[417]},{"name":"MM_YAMAHA_OPL3SA_FMSYNTH","features":[417]},{"name":"MM_YAMAHA_OPL3SA_JOYSTICK","features":[417]},{"name":"MM_YAMAHA_OPL3SA_MIDIIN","features":[417]},{"name":"MM_YAMAHA_OPL3SA_MIDIOUT","features":[417]},{"name":"MM_YAMAHA_OPL3SA_MIXER","features":[417]},{"name":"MM_YAMAHA_OPL3SA_WAVEIN","features":[417]},{"name":"MM_YAMAHA_OPL3SA_WAVEOUT","features":[417]},{"name":"MM_YAMAHA_OPL3SA_YSYNTH","features":[417]},{"name":"MM_YAMAHA_SERIAL_MIDIIN","features":[417]},{"name":"MM_YAMAHA_SERIAL_MIDIOUT","features":[417]},{"name":"MM_YAMAHA_SXG_MIDIOUT","features":[417]},{"name":"MM_YAMAHA_SXG_MIXER","features":[417]},{"name":"MM_YAMAHA_SXG_WAVEOUT","features":[417]},{"name":"MM_YAMAHA_YMF724LEG_FMSYNTH","features":[417]},{"name":"MM_YAMAHA_YMF724LEG_MIDIIN","features":[417]},{"name":"MM_YAMAHA_YMF724LEG_MIDIOUT","features":[417]},{"name":"MM_YAMAHA_YMF724LEG_MIXER","features":[417]},{"name":"MM_YAMAHA_YMF724_AUX","features":[417]},{"name":"MM_YAMAHA_YMF724_MIDIOUT","features":[417]},{"name":"MM_YAMAHA_YMF724_MIXER","features":[417]},{"name":"MM_YAMAHA_YMF724_WAVEIN","features":[417]},{"name":"MM_YAMAHA_YMF724_WAVEOUT","features":[417]},{"name":"MM_YOUCOM","features":[417]},{"name":"MM_ZEFIRO","features":[417]},{"name":"MM_ZEFIRO_ZA2","features":[417]},{"name":"MM_ZYXEL","features":[417]},{"name":"MM_ZYXEL_ACM_ADPCM","features":[417]},{"name":"MODM_CACHEDRUMPATCHES","features":[417]},{"name":"MODM_CACHEPATCHES","features":[417]},{"name":"MODM_CLOSE","features":[417]},{"name":"MODM_DATA","features":[417]},{"name":"MODM_GETDEVCAPS","features":[417]},{"name":"MODM_GETNUMDEVS","features":[417]},{"name":"MODM_GETPOS","features":[417]},{"name":"MODM_GETVOLUME","features":[417]},{"name":"MODM_INIT","features":[417]},{"name":"MODM_INIT_EX","features":[417]},{"name":"MODM_LONGDATA","features":[417]},{"name":"MODM_MAPPER","features":[417]},{"name":"MODM_OPEN","features":[417]},{"name":"MODM_PAUSE","features":[417]},{"name":"MODM_PREFERRED","features":[417]},{"name":"MODM_PREPARE","features":[417]},{"name":"MODM_PROPERTIES","features":[417]},{"name":"MODM_RECONFIGURE","features":[417]},{"name":"MODM_RESET","features":[417]},{"name":"MODM_RESTART","features":[417]},{"name":"MODM_SETVOLUME","features":[417]},{"name":"MODM_STOP","features":[417]},{"name":"MODM_STRMDATA","features":[417]},{"name":"MODM_UNPREPARE","features":[417]},{"name":"MODM_USER","features":[417]},{"name":"MPEGLAYER3_ID_CONSTANTFRAMESIZE","features":[417]},{"name":"MPEGLAYER3_ID_MPEG","features":[417]},{"name":"MPEGLAYER3_ID_UNKNOWN","features":[417]},{"name":"MPEGLAYER3_WFX_EXTRA_BYTES","features":[417]},{"name":"MSAUDIO1WAVEFORMAT","features":[418,417]},{"name":"MSAUDIO1_BITS_PER_SAMPLE","features":[417]},{"name":"MSAUDIO1_MAX_CHANNELS","features":[417]},{"name":"MXDM_BASE","features":[417]},{"name":"MXDM_CLOSE","features":[417]},{"name":"MXDM_GETCONTROLDETAILS","features":[417]},{"name":"MXDM_GETDEVCAPS","features":[417]},{"name":"MXDM_GETLINECONTROLS","features":[417]},{"name":"MXDM_GETLINEINFO","features":[417]},{"name":"MXDM_GETNUMDEVS","features":[417]},{"name":"MXDM_INIT","features":[417]},{"name":"MXDM_INIT_EX","features":[417]},{"name":"MXDM_OPEN","features":[417]},{"name":"MXDM_SETCONTROLDETAILS","features":[417]},{"name":"MXDM_USER","features":[417]},{"name":"NMS_VBXADPCMWAVEFORMAT","features":[418,417]},{"name":"NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS","features":[417]},{"name":"NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE","features":[417]},{"name":"NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH","features":[417]},{"name":"NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID","features":[417]},{"name":"NS_E_8BIT_WAVE_UNSUPPORTED","features":[417]},{"name":"NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED","features":[417]},{"name":"NS_E_ACTIVE_SG_DEVICE_DISCONNECTED","features":[417]},{"name":"NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES","features":[417]},{"name":"NS_E_ALLOCATE_FILE_FAIL","features":[417]},{"name":"NS_E_ALL_PROTOCOLS_DISABLED","features":[417]},{"name":"NS_E_ALREADY_CONNECTED","features":[417]},{"name":"NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[417]},{"name":"NS_E_ARCHIVE_ABORT_DUE_TO_BCAST","features":[417]},{"name":"NS_E_ARCHIVE_FILENAME_NOTSET","features":[417]},{"name":"NS_E_ARCHIVE_GAP_DETECTED","features":[417]},{"name":"NS_E_ARCHIVE_REACH_QUOTA","features":[417]},{"name":"NS_E_ARCHIVE_SAME_AS_INPUT","features":[417]},{"name":"NS_E_ASSERT","features":[417]},{"name":"NS_E_ASX_INVALIDFORMAT","features":[417]},{"name":"NS_E_ASX_INVALIDVERSION","features":[417]},{"name":"NS_E_ASX_INVALID_REPEAT_BLOCK","features":[417]},{"name":"NS_E_ASX_NOTHING_TO_WRITE","features":[417]},{"name":"NS_E_ATTRIBUTE_NOT_ALLOWED","features":[417]},{"name":"NS_E_ATTRIBUTE_READ_ONLY","features":[417]},{"name":"NS_E_AUDIENCE_CONTENTTYPE_MISMATCH","features":[417]},{"name":"NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH","features":[417]},{"name":"NS_E_AUDIODEVICE_BADFORMAT","features":[417]},{"name":"NS_E_AUDIODEVICE_BUSY","features":[417]},{"name":"NS_E_AUDIODEVICE_UNEXPECTED","features":[417]},{"name":"NS_E_AUDIO_BITRATE_STEPDOWN","features":[417]},{"name":"NS_E_AUDIO_CODEC_ERROR","features":[417]},{"name":"NS_E_AUDIO_CODEC_NOT_INSTALLED","features":[417]},{"name":"NS_E_AUTHORIZATION_FILE_NOT_FOUND","features":[417]},{"name":"NS_E_BACKUP_RESTORE_BAD_DATA","features":[417]},{"name":"NS_E_BACKUP_RESTORE_BAD_REQUEST_ID","features":[417]},{"name":"NS_E_BACKUP_RESTORE_FAILURE","features":[417]},{"name":"NS_E_BACKUP_RESTORE_TOO_MANY_RESETS","features":[417]},{"name":"NS_E_BAD_ADAPTER_ADDRESS","features":[417]},{"name":"NS_E_BAD_ADAPTER_NAME","features":[417]},{"name":"NS_E_BAD_BLOCK0_VERSION","features":[417]},{"name":"NS_E_BAD_CONTENTEDL","features":[417]},{"name":"NS_E_BAD_CONTROL_DATA","features":[417]},{"name":"NS_E_BAD_CUB_UID","features":[417]},{"name":"NS_E_BAD_DELIVERY_MODE","features":[417]},{"name":"NS_E_BAD_DISK_UID","features":[417]},{"name":"NS_E_BAD_FSMAJOR_VERSION","features":[417]},{"name":"NS_E_BAD_MARKIN","features":[417]},{"name":"NS_E_BAD_MARKOUT","features":[417]},{"name":"NS_E_BAD_MULTICAST_ADDRESS","features":[417]},{"name":"NS_E_BAD_REQUEST","features":[417]},{"name":"NS_E_BAD_STAMPNUMBER","features":[417]},{"name":"NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE","features":[417]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCENDED","features":[417]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCFAILED","features":[417]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT","features":[417]},{"name":"NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB","features":[417]},{"name":"NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB","features":[417]},{"name":"NS_E_BKGDOWNLOAD_FAILEDINITIALIZE","features":[417]},{"name":"NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE","features":[417]},{"name":"NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE","features":[417]},{"name":"NS_E_BKGDOWNLOAD_INVALID_FILE_NAME","features":[417]},{"name":"NS_E_BKGDOWNLOAD_NOJOBPOINTER","features":[417]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE","features":[417]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE","features":[417]},{"name":"NS_E_BKGDOWNLOAD_WMDUNPACKFAILED","features":[417]},{"name":"NS_E_BKGDOWNLOAD_WRONG_NO_FILES","features":[417]},{"name":"NS_E_BUSY","features":[417]},{"name":"NS_E_CACHE_ARCHIVE_CONFLICT","features":[417]},{"name":"NS_E_CACHE_CANNOT_BE_CACHED","features":[417]},{"name":"NS_E_CACHE_NOT_BROADCAST","features":[417]},{"name":"NS_E_CACHE_NOT_MODIFIED","features":[417]},{"name":"NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND","features":[417]},{"name":"NS_E_CACHE_ORIGIN_SERVER_TIMEOUT","features":[417]},{"name":"NS_E_CANNOTCONNECT","features":[417]},{"name":"NS_E_CANNOTCONNECTEVENTS","features":[417]},{"name":"NS_E_CANNOTDESTROYTITLE","features":[417]},{"name":"NS_E_CANNOTOFFLINEDISK","features":[417]},{"name":"NS_E_CANNOTONLINEDISK","features":[417]},{"name":"NS_E_CANNOTRENAMETITLE","features":[417]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT","features":[417]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES","features":[417]},{"name":"NS_E_CANNOT_CONNECT_TO_PROXY","features":[417]},{"name":"NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP","features":[417]},{"name":"NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR","features":[417]},{"name":"NS_E_CANNOT_PAUSE_LIVEBROADCAST","features":[417]},{"name":"NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER","features":[417]},{"name":"NS_E_CANNOT_REMOVE_PLUGIN","features":[417]},{"name":"NS_E_CANNOT_REMOVE_PUBLISHING_POINT","features":[417]},{"name":"NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE","features":[417]},{"name":"NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING","features":[417]},{"name":"NS_E_CANT_READ_DIGITAL","features":[417]},{"name":"NS_E_CCLINK_DOWN","features":[417]},{"name":"NS_E_CD_COPYTO_CD","features":[417]},{"name":"NS_E_CD_DRIVER_PROBLEM","features":[417]},{"name":"NS_E_CD_EMPTY_TRACK_QUEUE","features":[417]},{"name":"NS_E_CD_ISRC_INVALID","features":[417]},{"name":"NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID","features":[417]},{"name":"NS_E_CD_NO_BUFFERS_READ","features":[417]},{"name":"NS_E_CD_NO_READER","features":[417]},{"name":"NS_E_CD_QUEUEING_DISABLED","features":[417]},{"name":"NS_E_CD_READ_ERROR","features":[417]},{"name":"NS_E_CD_READ_ERROR_NO_CORRECTION","features":[417]},{"name":"NS_E_CD_REFRESH","features":[417]},{"name":"NS_E_CD_SLOW_COPY","features":[417]},{"name":"NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS","features":[417]},{"name":"NS_E_CHANGING_PROXYBYPASS","features":[417]},{"name":"NS_E_CHANGING_PROXY_EXCEPTIONLIST","features":[417]},{"name":"NS_E_CHANGING_PROXY_NAME","features":[417]},{"name":"NS_E_CHANGING_PROXY_PORT","features":[417]},{"name":"NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND","features":[417]},{"name":"NS_E_CLOSED_ON_SUSPEND","features":[417]},{"name":"NS_E_CODEC_DMO_ERROR","features":[417]},{"name":"NS_E_CODEC_UNAVAILABLE","features":[417]},{"name":"NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[417]},{"name":"NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[417]},{"name":"NS_E_CONNECTION_FAILURE","features":[417]},{"name":"NS_E_CONNECT_TIMEOUT","features":[417]},{"name":"NS_E_CONTENT_PARTNER_STILL_INITIALIZING","features":[417]},{"name":"NS_E_CORECD_NOTAMEDIACD","features":[417]},{"name":"NS_E_CRITICAL_ERROR","features":[417]},{"name":"NS_E_CUB_FAIL","features":[417]},{"name":"NS_E_CUB_FAIL_LINK","features":[417]},{"name":"NS_E_CURLHELPER_NOTADIRECTORY","features":[417]},{"name":"NS_E_CURLHELPER_NOTAFILE","features":[417]},{"name":"NS_E_CURLHELPER_NOTRELATIVE","features":[417]},{"name":"NS_E_CURL_CANTDECODE","features":[417]},{"name":"NS_E_CURL_CANTWALK","features":[417]},{"name":"NS_E_CURL_INVALIDBUFFERSIZE","features":[417]},{"name":"NS_E_CURL_INVALIDCHAR","features":[417]},{"name":"NS_E_CURL_INVALIDHOSTNAME","features":[417]},{"name":"NS_E_CURL_INVALIDPATH","features":[417]},{"name":"NS_E_CURL_INVALIDPORT","features":[417]},{"name":"NS_E_CURL_INVALIDSCHEME","features":[417]},{"name":"NS_E_CURL_INVALIDURL","features":[417]},{"name":"NS_E_CURL_NOTSAFE","features":[417]},{"name":"NS_E_DAMAGED_FILE","features":[417]},{"name":"NS_E_DATAPATH_NO_SINK","features":[417]},{"name":"NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED","features":[417]},{"name":"NS_E_DATA_UNIT_EXTENSION_TOO_LARGE","features":[417]},{"name":"NS_E_DDRAW_GENERIC","features":[417]},{"name":"NS_E_DEVCONTROL_FAILED_SEEK","features":[417]},{"name":"NS_E_DEVICECONTROL_UNSTABLE","features":[417]},{"name":"NS_E_DEVICE_DISCONNECTED","features":[417]},{"name":"NS_E_DEVICE_IS_NOT_READY","features":[417]},{"name":"NS_E_DEVICE_NOT_READY","features":[417]},{"name":"NS_E_DEVICE_NOT_SUPPORT_FORMAT","features":[417]},{"name":"NS_E_DEVICE_NOT_WMDRM_DEVICE","features":[417]},{"name":"NS_E_DISK_FAIL","features":[417]},{"name":"NS_E_DISK_READ","features":[417]},{"name":"NS_E_DISK_WRITE","features":[417]},{"name":"NS_E_DISPLAY_MODE_CHANGE_FAILED","features":[417]},{"name":"NS_E_DRMPROFILE_NOTFOUND","features":[417]},{"name":"NS_E_DRM_ACQUIRING_LICENSE","features":[417]},{"name":"NS_E_DRM_ACTION_NOT_QUERIED","features":[417]},{"name":"NS_E_DRM_ALREADY_INDIVIDUALIZED","features":[417]},{"name":"NS_E_DRM_APPCERT_REVOKED","features":[417]},{"name":"NS_E_DRM_ATTRIBUTE_TOO_LONG","features":[417]},{"name":"NS_E_DRM_BACKUPRESTORE_BUSY","features":[417]},{"name":"NS_E_DRM_BACKUP_CORRUPT","features":[417]},{"name":"NS_E_DRM_BACKUP_EXISTS","features":[417]},{"name":"NS_E_DRM_BAD_REQUEST","features":[417]},{"name":"NS_E_DRM_BB_UNABLE_TO_INITIALIZE","features":[417]},{"name":"NS_E_DRM_BUFFER_TOO_SMALL","features":[417]},{"name":"NS_E_DRM_BUSY","features":[417]},{"name":"NS_E_DRM_CACHED_CONTENT_ERROR","features":[417]},{"name":"NS_E_DRM_CERTIFICATE_REVOKED","features":[417]},{"name":"NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE","features":[417]},{"name":"NS_E_DRM_CHAIN_TOO_LONG","features":[417]},{"name":"NS_E_DRM_CHECKPOINT_CORRUPT","features":[417]},{"name":"NS_E_DRM_CHECKPOINT_FAILED","features":[417]},{"name":"NS_E_DRM_CHECKPOINT_MISMATCH","features":[417]},{"name":"NS_E_DRM_CLIENT_CODE_EXPIRED","features":[417]},{"name":"NS_E_DRM_DATASTORE_CORRUPT","features":[417]},{"name":"NS_E_DRM_DEBUGGING_NOT_ALLOWED","features":[417]},{"name":"NS_E_DRM_DECRYPT_ERROR","features":[417]},{"name":"NS_E_DRM_DEVICE_ACTIVATION_CANCELED","features":[417]},{"name":"NS_E_DRM_DEVICE_ALREADY_REGISTERED","features":[417]},{"name":"NS_E_DRM_DEVICE_LIMIT_REACHED","features":[417]},{"name":"NS_E_DRM_DEVICE_NOT_OPEN","features":[417]},{"name":"NS_E_DRM_DEVICE_NOT_REGISTERED","features":[417]},{"name":"NS_E_DRM_DRIVER_AUTH_FAILURE","features":[417]},{"name":"NS_E_DRM_DRIVER_DIGIOUT_FAILURE","features":[417]},{"name":"NS_E_DRM_DRMV2CLT_REVOKED","features":[417]},{"name":"NS_E_DRM_ENCRYPT_ERROR","features":[417]},{"name":"NS_E_DRM_ENUM_LICENSE_FAILED","features":[417]},{"name":"NS_E_DRM_ERROR_BAD_NET_RESP","features":[417]},{"name":"NS_E_DRM_EXPIRED_LICENSEBLOB","features":[417]},{"name":"NS_E_DRM_GET_CONTENTSTRING_ERROR","features":[417]},{"name":"NS_E_DRM_GET_LICENSESTRING_ERROR","features":[417]},{"name":"NS_E_DRM_GET_LICENSE_ERROR","features":[417]},{"name":"NS_E_DRM_HARDWAREID_MISMATCH","features":[417]},{"name":"NS_E_DRM_HARDWARE_INCONSISTENT","features":[417]},{"name":"NS_E_DRM_INCLUSION_LIST_REQUIRED","features":[417]},{"name":"NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE","features":[417]},{"name":"NS_E_DRM_INDIVIDUALIZE_ERROR","features":[417]},{"name":"NS_E_DRM_INDIVIDUALIZING","features":[417]},{"name":"NS_E_DRM_INDIV_FRAUD","features":[417]},{"name":"NS_E_DRM_INDIV_NO_CABS","features":[417]},{"name":"NS_E_DRM_INDIV_SERVICE_UNAVAILABLE","features":[417]},{"name":"NS_E_DRM_INVALID_APPCERT","features":[417]},{"name":"NS_E_DRM_INVALID_APPDATA","features":[417]},{"name":"NS_E_DRM_INVALID_APPDATA_VERSION","features":[417]},{"name":"NS_E_DRM_INVALID_APPLICATION","features":[417]},{"name":"NS_E_DRM_INVALID_CERTIFICATE","features":[417]},{"name":"NS_E_DRM_INVALID_CONTENT","features":[417]},{"name":"NS_E_DRM_INVALID_CRL","features":[417]},{"name":"NS_E_DRM_INVALID_DATA","features":[417]},{"name":"NS_E_DRM_INVALID_KID","features":[417]},{"name":"NS_E_DRM_INVALID_LICENSE","features":[417]},{"name":"NS_E_DRM_INVALID_LICENSEBLOB","features":[417]},{"name":"NS_E_DRM_INVALID_LICENSE_ACQUIRED","features":[417]},{"name":"NS_E_DRM_INVALID_LICENSE_REQUEST","features":[417]},{"name":"NS_E_DRM_INVALID_MACHINE","features":[417]},{"name":"NS_E_DRM_INVALID_MIGRATION_IMAGE","features":[417]},{"name":"NS_E_DRM_INVALID_PROPERTY","features":[417]},{"name":"NS_E_DRM_INVALID_PROXIMITY_RESPONSE","features":[417]},{"name":"NS_E_DRM_INVALID_SECURESTORE_PASSWORD","features":[417]},{"name":"NS_E_DRM_INVALID_SESSION","features":[417]},{"name":"NS_E_DRM_KEY_ERROR","features":[417]},{"name":"NS_E_DRM_LICENSE_APPSECLOW","features":[417]},{"name":"NS_E_DRM_LICENSE_APP_NOTALLOWED","features":[417]},{"name":"NS_E_DRM_LICENSE_CERT_EXPIRED","features":[417]},{"name":"NS_E_DRM_LICENSE_CLOSE_ERROR","features":[417]},{"name":"NS_E_DRM_LICENSE_CONTENT_REVOKED","features":[417]},{"name":"NS_E_DRM_LICENSE_DELETION_ERROR","features":[417]},{"name":"NS_E_DRM_LICENSE_EXPIRED","features":[417]},{"name":"NS_E_DRM_LICENSE_INITIALIZATION_ERROR","features":[417]},{"name":"NS_E_DRM_LICENSE_INVALID_XML","features":[417]},{"name":"NS_E_DRM_LICENSE_NOSAP","features":[417]},{"name":"NS_E_DRM_LICENSE_NOSVP","features":[417]},{"name":"NS_E_DRM_LICENSE_NOTACQUIRED","features":[417]},{"name":"NS_E_DRM_LICENSE_NOTENABLED","features":[417]},{"name":"NS_E_DRM_LICENSE_NOTRUSTEDCODEC","features":[417]},{"name":"NS_E_DRM_LICENSE_NOWDM","features":[417]},{"name":"NS_E_DRM_LICENSE_OPEN_ERROR","features":[417]},{"name":"NS_E_DRM_LICENSE_SECLOW","features":[417]},{"name":"NS_E_DRM_LICENSE_SERVER_INFO_MISSING","features":[417]},{"name":"NS_E_DRM_LICENSE_STORE_ERROR","features":[417]},{"name":"NS_E_DRM_LICENSE_STORE_SAVE_ERROR","features":[417]},{"name":"NS_E_DRM_LICENSE_UNAVAILABLE","features":[417]},{"name":"NS_E_DRM_LICENSE_UNUSABLE","features":[417]},{"name":"NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET","features":[417]},{"name":"NS_E_DRM_MALFORMED_CONTENT_HEADER","features":[417]},{"name":"NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE","features":[417]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA","features":[417]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD","features":[417]},{"name":"NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS","features":[417]},{"name":"NS_E_DRM_MIGRATION_NOT_SUPPORTED","features":[417]},{"name":"NS_E_DRM_MIGRATION_OBJECT_IN_USE","features":[417]},{"name":"NS_E_DRM_MIGRATION_OPERATION_CANCELLED","features":[417]},{"name":"NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE","features":[417]},{"name":"NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED","features":[417]},{"name":"NS_E_DRM_MONITOR_ERROR","features":[417]},{"name":"NS_E_DRM_MUST_APPROVE","features":[417]},{"name":"NS_E_DRM_MUST_REGISTER","features":[417]},{"name":"NS_E_DRM_MUST_REVALIDATE","features":[417]},{"name":"NS_E_DRM_NEEDS_INDIVIDUALIZATION","features":[417]},{"name":"NS_E_DRM_NEEDS_UPGRADE_TEMPFILE","features":[417]},{"name":"NS_E_DRM_NEED_UPGRADE_MSSAP","features":[417]},{"name":"NS_E_DRM_NEED_UPGRADE_PD","features":[417]},{"name":"NS_E_DRM_NOT_CONFIGURED","features":[417]},{"name":"NS_E_DRM_NO_RIGHTS","features":[417]},{"name":"NS_E_DRM_NO_UPLINK_LICENSE","features":[417]},{"name":"NS_E_DRM_OPERATION_CANCELED","features":[417]},{"name":"NS_E_DRM_PARAMETERS_MISMATCHED","features":[417]},{"name":"NS_E_DRM_PASSWORD_TOO_LONG","features":[417]},{"name":"NS_E_DRM_PD_TOO_MANY_DEVICES","features":[417]},{"name":"NS_E_DRM_POLICY_DISABLE_ONLINE","features":[417]},{"name":"NS_E_DRM_POLICY_METERING_DISABLED","features":[417]},{"name":"NS_E_DRM_PROFILE_NOT_SET","features":[417]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE","features":[417]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION","features":[417]},{"name":"NS_E_DRM_QUERY_ERROR","features":[417]},{"name":"NS_E_DRM_REOPEN_CONTENT","features":[417]},{"name":"NS_E_DRM_REPORT_ERROR","features":[417]},{"name":"NS_E_DRM_RESTORE_FRAUD","features":[417]},{"name":"NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE","features":[417]},{"name":"NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED","features":[417]},{"name":"NS_E_DRM_RIV_TOO_SMALL","features":[417]},{"name":"NS_E_DRM_SDK_VERSIONMISMATCH","features":[417]},{"name":"NS_E_DRM_SDMI_NOMORECOPIES","features":[417]},{"name":"NS_E_DRM_SDMI_TRIGGER","features":[417]},{"name":"NS_E_DRM_SECURE_STORE_ERROR","features":[417]},{"name":"NS_E_DRM_SECURE_STORE_NOT_FOUND","features":[417]},{"name":"NS_E_DRM_SECURE_STORE_UNLOCK_ERROR","features":[417]},{"name":"NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID","features":[417]},{"name":"NS_E_DRM_SIGNATURE_FAILURE","features":[417]},{"name":"NS_E_DRM_SOURCEID_NOT_SUPPORTED","features":[417]},{"name":"NS_E_DRM_STORE_NEEDINDI","features":[417]},{"name":"NS_E_DRM_STORE_NOTALLOWED","features":[417]},{"name":"NS_E_DRM_STORE_NOTALLSTORED","features":[417]},{"name":"NS_E_DRM_STUBLIB_REQUIRED","features":[417]},{"name":"NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION","features":[417]},{"name":"NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION","features":[417]},{"name":"NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_INITIALIZE","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_LICENSE","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_PORT","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_SET_PARAMETER","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK","features":[417]},{"name":"NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY","features":[417]},{"name":"NS_E_DRM_UNSUPPORTED_ACTION","features":[417]},{"name":"NS_E_DRM_UNSUPPORTED_ALGORITHM","features":[417]},{"name":"NS_E_DRM_UNSUPPORTED_PROPERTY","features":[417]},{"name":"NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION","features":[417]},{"name":"NS_E_DUPLICATE_ADDRESS","features":[417]},{"name":"NS_E_DUPLICATE_DRMPROFILE","features":[417]},{"name":"NS_E_DUPLICATE_NAME","features":[417]},{"name":"NS_E_DUPLICATE_PACKET","features":[417]},{"name":"NS_E_DVD_AUTHORING_PROBLEM","features":[417]},{"name":"NS_E_DVD_CANNOT_COPY_PROTECTED","features":[417]},{"name":"NS_E_DVD_CANNOT_JUMP","features":[417]},{"name":"NS_E_DVD_COMPATIBLE_VIDEO_CARD","features":[417]},{"name":"NS_E_DVD_COPY_PROTECT","features":[417]},{"name":"NS_E_DVD_DEVICE_CONTENTION","features":[417]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED","features":[417]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS","features":[417]},{"name":"NS_E_DVD_DISC_DECODER_REGION","features":[417]},{"name":"NS_E_DVD_GRAPH_BUILDING","features":[417]},{"name":"NS_E_DVD_INVALID_DISC_REGION","features":[417]},{"name":"NS_E_DVD_INVALID_TITLE_CHAPTER","features":[417]},{"name":"NS_E_DVD_MACROVISION","features":[417]},{"name":"NS_E_DVD_NO_AUDIO_STREAM","features":[417]},{"name":"NS_E_DVD_NO_DECODER","features":[417]},{"name":"NS_E_DVD_NO_SUBPICTURE_STREAM","features":[417]},{"name":"NS_E_DVD_NO_VIDEO_MEMORY","features":[417]},{"name":"NS_E_DVD_NO_VIDEO_STREAM","features":[417]},{"name":"NS_E_DVD_PARENTAL","features":[417]},{"name":"NS_E_DVD_REQUIRED_PROPERTY_NOT_SET","features":[417]},{"name":"NS_E_DVD_SYSTEM_DECODER_REGION","features":[417]},{"name":"NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS","features":[417]},{"name":"NS_E_EMPTY_PLAYLIST","features":[417]},{"name":"NS_E_EMPTY_PROGRAM_NAME","features":[417]},{"name":"NS_E_ENACTPLAN_GIVEUP","features":[417]},{"name":"NS_E_END_OF_PLAYLIST","features":[417]},{"name":"NS_E_END_OF_TAPE","features":[417]},{"name":"NS_E_ERROR_FROM_PROXY","features":[417]},{"name":"NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT","features":[417]},{"name":"NS_E_EXPECT_MONO_WAV_INPUT","features":[417]},{"name":"NS_E_FAILED_DOWNLOAD_ABORT_BURN","features":[417]},{"name":"NS_E_FAIL_LAUNCH_ROXIO_PLUGIN","features":[417]},{"name":"NS_E_FEATURE_DISABLED_BY_GROUP_POLICY","features":[417]},{"name":"NS_E_FEATURE_DISABLED_IN_SKU","features":[417]},{"name":"NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER","features":[417]},{"name":"NS_E_FILE_ALLOCATION_FAILED","features":[417]},{"name":"NS_E_FILE_BANDWIDTH_LIMIT","features":[417]},{"name":"NS_E_FILE_EXISTS","features":[417]},{"name":"NS_E_FILE_FAILED_CHECKS","features":[417]},{"name":"NS_E_FILE_INIT_FAILED","features":[417]},{"name":"NS_E_FILE_NOT_FOUND","features":[417]},{"name":"NS_E_FILE_OPEN_FAILED","features":[417]},{"name":"NS_E_FILE_PLAY_FAILED","features":[417]},{"name":"NS_E_FILE_READ","features":[417]},{"name":"NS_E_FILE_WRITE","features":[417]},{"name":"NS_E_FIREWALL","features":[417]},{"name":"NS_E_FLASH_PLAYBACK_NOT_ALLOWED","features":[417]},{"name":"NS_E_GLITCH_MODE","features":[417]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGE","features":[417]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGESELECTED","features":[417]},{"name":"NS_E_HDS_KEY_MISMATCH","features":[417]},{"name":"NS_E_HEADER_MISMATCH","features":[417]},{"name":"NS_E_HTTP_DISABLED","features":[417]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE","features":[417]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED","features":[417]},{"name":"NS_E_ICMQUERYFORMAT","features":[417]},{"name":"NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[417]},{"name":"NS_E_IMAGE_DOWNLOAD_FAILED","features":[417]},{"name":"NS_E_IMAPI_LOSSOFSTREAMING","features":[417]},{"name":"NS_E_IMAPI_MEDIUM_INVALIDTYPE","features":[417]},{"name":"NS_E_INCOMPATIBLE_FORMAT","features":[417]},{"name":"NS_E_INCOMPATIBLE_PUSH_SERVER","features":[417]},{"name":"NS_E_INCOMPATIBLE_SERVER","features":[417]},{"name":"NS_E_INCOMPATIBLE_VERSION","features":[417]},{"name":"NS_E_INCOMPLETE_PLAYLIST","features":[417]},{"name":"NS_E_INCORRECTCLIPSETTINGS","features":[417]},{"name":"NS_E_INDUCED","features":[417]},{"name":"NS_E_INPUTSOURCE_PROBLEM","features":[417]},{"name":"NS_E_INPUT_DOESNOT_SUPPORT_SMPTE","features":[417]},{"name":"NS_E_INPUT_WAVFORMAT_MISMATCH","features":[417]},{"name":"NS_E_INSUFFICIENT_BANDWIDTH","features":[417]},{"name":"NS_E_INSUFFICIENT_DATA","features":[417]},{"name":"NS_E_INTERFACE_NOT_REGISTERED_IN_GIT","features":[417]},{"name":"NS_E_INTERLACEMODE_MISMATCH","features":[417]},{"name":"NS_E_INTERLACE_REQUIRE_SAMESIZE","features":[417]},{"name":"NS_E_INTERNAL","features":[417]},{"name":"NS_E_INTERNAL_SERVER_ERROR","features":[417]},{"name":"NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING","features":[417]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING","features":[417]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED","features":[417]},{"name":"NS_E_INVALIDINPUTFPS","features":[417]},{"name":"NS_E_INVALIDPACKETSIZE","features":[417]},{"name":"NS_E_INVALIDPROFILE","features":[417]},{"name":"NS_E_INVALID_ARCHIVE","features":[417]},{"name":"NS_E_INVALID_AUDIO_BUFFERMAX","features":[417]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE","features":[417]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE_2","features":[417]},{"name":"NS_E_INVALID_BLACKHOLE_ADDRESS","features":[417]},{"name":"NS_E_INVALID_CHANNEL","features":[417]},{"name":"NS_E_INVALID_CLIENT","features":[417]},{"name":"NS_E_INVALID_DATA","features":[417]},{"name":"NS_E_INVALID_DEVICE","features":[417]},{"name":"NS_E_INVALID_DRMV2CLT_STUBLIB","features":[417]},{"name":"NS_E_INVALID_EDL","features":[417]},{"name":"NS_E_INVALID_FILE_BITRATE","features":[417]},{"name":"NS_E_INVALID_FOLDDOWN_COEFFICIENTS","features":[417]},{"name":"NS_E_INVALID_INDEX","features":[417]},{"name":"NS_E_INVALID_INDEX2","features":[417]},{"name":"NS_E_INVALID_INPUT_AUDIENCE_INDEX","features":[417]},{"name":"NS_E_INVALID_INPUT_FORMAT","features":[417]},{"name":"NS_E_INVALID_INPUT_LANGUAGE","features":[417]},{"name":"NS_E_INVALID_INPUT_STREAM","features":[417]},{"name":"NS_E_INVALID_INTERLACEMODE","features":[417]},{"name":"NS_E_INVALID_INTERLACE_COMPAT","features":[417]},{"name":"NS_E_INVALID_KEY","features":[417]},{"name":"NS_E_INVALID_LOG_URL","features":[417]},{"name":"NS_E_INVALID_MTU_RANGE","features":[417]},{"name":"NS_E_INVALID_NAME","features":[417]},{"name":"NS_E_INVALID_NONSQUAREPIXEL_COMPAT","features":[417]},{"name":"NS_E_INVALID_NUM_PASSES","features":[417]},{"name":"NS_E_INVALID_OPERATING_SYSTEM_VERSION","features":[417]},{"name":"NS_E_INVALID_OUTPUT_FORMAT","features":[417]},{"name":"NS_E_INVALID_PIXEL_ASPECT_RATIO","features":[417]},{"name":"NS_E_INVALID_PLAY_STATISTICS","features":[417]},{"name":"NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION","features":[417]},{"name":"NS_E_INVALID_PORT","features":[417]},{"name":"NS_E_INVALID_PROFILE_CONTENTTYPE","features":[417]},{"name":"NS_E_INVALID_PUBLISHING_POINT_NAME","features":[417]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT","features":[417]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST","features":[417]},{"name":"NS_E_INVALID_PUSH_TEMPLATE","features":[417]},{"name":"NS_E_INVALID_QUERY_OPERATOR","features":[417]},{"name":"NS_E_INVALID_QUERY_PROPERTY","features":[417]},{"name":"NS_E_INVALID_REDIRECT","features":[417]},{"name":"NS_E_INVALID_REQUEST","features":[417]},{"name":"NS_E_INVALID_SAMPLING_RATE","features":[417]},{"name":"NS_E_INVALID_SCRIPT_BITRATE","features":[417]},{"name":"NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL","features":[417]},{"name":"NS_E_INVALID_STREAM","features":[417]},{"name":"NS_E_INVALID_TIMECODE","features":[417]},{"name":"NS_E_INVALID_TTL","features":[417]},{"name":"NS_E_INVALID_VBR_COMPAT","features":[417]},{"name":"NS_E_INVALID_VBR_WITH_UNCOMP","features":[417]},{"name":"NS_E_INVALID_VIDEO_BITRATE","features":[417]},{"name":"NS_E_INVALID_VIDEO_BUFFER","features":[417]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX","features":[417]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX_2","features":[417]},{"name":"NS_E_INVALID_VIDEO_CQUALITY","features":[417]},{"name":"NS_E_INVALID_VIDEO_FPS","features":[417]},{"name":"NS_E_INVALID_VIDEO_HEIGHT","features":[417]},{"name":"NS_E_INVALID_VIDEO_HEIGHT_ALIGN","features":[417]},{"name":"NS_E_INVALID_VIDEO_IQUALITY","features":[417]},{"name":"NS_E_INVALID_VIDEO_KEYFRAME","features":[417]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE","features":[417]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE_2","features":[417]},{"name":"NS_E_INVALID_VIDEO_WIDTH","features":[417]},{"name":"NS_E_INVALID_VIDEO_WIDTH_ALIGN","features":[417]},{"name":"NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING","features":[417]},{"name":"NS_E_LANGUAGE_MISMATCH","features":[417]},{"name":"NS_E_LATE_OPERATION","features":[417]},{"name":"NS_E_LATE_PACKET","features":[417]},{"name":"NS_E_LICENSE_EXPIRED","features":[417]},{"name":"NS_E_LICENSE_HEADER_MISSING_URL","features":[417]},{"name":"NS_E_LICENSE_INCORRECT_RIGHTS","features":[417]},{"name":"NS_E_LICENSE_OUTOFDATE","features":[417]},{"name":"NS_E_LICENSE_REQUIRED","features":[417]},{"name":"NS_E_LOGFILEPERIOD","features":[417]},{"name":"NS_E_LOG_FILE_SIZE","features":[417]},{"name":"NS_E_LOG_NEED_TO_BE_SKIPPED","features":[417]},{"name":"NS_E_MARKIN_UNSUPPORTED","features":[417]},{"name":"NS_E_MAX_BITRATE","features":[417]},{"name":"NS_E_MAX_CLIENTS","features":[417]},{"name":"NS_E_MAX_FILERATE","features":[417]},{"name":"NS_E_MAX_FUNNELS_ALERT","features":[417]},{"name":"NS_E_MAX_PACKET_SIZE_TOO_SMALL","features":[417]},{"name":"NS_E_MEDIACD_READ_ERROR","features":[417]},{"name":"NS_E_MEDIA_LIBRARY_FAILED","features":[417]},{"name":"NS_E_MEDIA_PARSER_INVALID_FORMAT","features":[417]},{"name":"NS_E_MEMSTORAGE_BAD_DATA","features":[417]},{"name":"NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE","features":[417]},{"name":"NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE","features":[417]},{"name":"NS_E_METADATA_CANNOT_SET_LOCALE","features":[417]},{"name":"NS_E_METADATA_FORMAT_NOT_SUPPORTED","features":[417]},{"name":"NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE","features":[417]},{"name":"NS_E_METADATA_INVALID_DOCUMENT_TYPE","features":[417]},{"name":"NS_E_METADATA_LANGUAGE_NOT_SUPORTED","features":[417]},{"name":"NS_E_METADATA_NOT_AVAILABLE","features":[417]},{"name":"NS_E_METADATA_NO_EDITING_CAPABILITY","features":[417]},{"name":"NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE","features":[417]},{"name":"NS_E_MISMATCHED_MEDIACONTENT","features":[417]},{"name":"NS_E_MISSING_AUDIENCE","features":[417]},{"name":"NS_E_MISSING_CHANNEL","features":[417]},{"name":"NS_E_MISSING_SOURCE_INDEX","features":[417]},{"name":"NS_E_MIXER_INVALID_CONTROL","features":[417]},{"name":"NS_E_MIXER_INVALID_LINE","features":[417]},{"name":"NS_E_MIXER_INVALID_VALUE","features":[417]},{"name":"NS_E_MIXER_NODRIVER","features":[417]},{"name":"NS_E_MIXER_UNKNOWN_MMRESULT","features":[417]},{"name":"NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED","features":[417]},{"name":"NS_E_MMSAUTOSERVER_CANTFINDWALKER","features":[417]},{"name":"NS_E_MMS_NOT_SUPPORTED","features":[417]},{"name":"NS_E_MONITOR_GIVEUP","features":[417]},{"name":"NS_E_MP3_FORMAT_NOT_FOUND","features":[417]},{"name":"NS_E_MPDB_GENERIC","features":[417]},{"name":"NS_E_MSAUDIO_NOT_INSTALLED","features":[417]},{"name":"NS_E_MSBD_NO_LONGER_SUPPORTED","features":[417]},{"name":"NS_E_MULTICAST_DISABLED","features":[417]},{"name":"NS_E_MULTICAST_PLUGIN_NOT_ENABLED","features":[417]},{"name":"NS_E_MULTIPLE_AUDIO_CODECS","features":[417]},{"name":"NS_E_MULTIPLE_AUDIO_FORMATS","features":[417]},{"name":"NS_E_MULTIPLE_FILE_BITRATES","features":[417]},{"name":"NS_E_MULTIPLE_SCRIPT_BITRATES","features":[417]},{"name":"NS_E_MULTIPLE_VBR_AUDIENCES","features":[417]},{"name":"NS_E_MULTIPLE_VIDEO_CODECS","features":[417]},{"name":"NS_E_MULTIPLE_VIDEO_SIZES","features":[417]},{"name":"NS_E_NAMESPACE_BAD_NAME","features":[417]},{"name":"NS_E_NAMESPACE_BUFFER_TOO_SMALL","features":[417]},{"name":"NS_E_NAMESPACE_CALLBACK_NOT_FOUND","features":[417]},{"name":"NS_E_NAMESPACE_DUPLICATE_CALLBACK","features":[417]},{"name":"NS_E_NAMESPACE_DUPLICATE_NAME","features":[417]},{"name":"NS_E_NAMESPACE_EMPTY_NAME","features":[417]},{"name":"NS_E_NAMESPACE_INDEX_TOO_LARGE","features":[417]},{"name":"NS_E_NAMESPACE_NAME_TOO_LONG","features":[417]},{"name":"NS_E_NAMESPACE_NODE_CONFLICT","features":[417]},{"name":"NS_E_NAMESPACE_NODE_NOT_FOUND","features":[417]},{"name":"NS_E_NAMESPACE_TOO_MANY_CALLBACKS","features":[417]},{"name":"NS_E_NAMESPACE_WRONG_PERSIST","features":[417]},{"name":"NS_E_NAMESPACE_WRONG_SECURITY","features":[417]},{"name":"NS_E_NAMESPACE_WRONG_TYPE","features":[417]},{"name":"NS_E_NEED_CORE_REFERENCE","features":[417]},{"name":"NS_E_NEED_TO_ASK_USER","features":[417]},{"name":"NS_E_NETWORK_BUSY","features":[417]},{"name":"NS_E_NETWORK_RESOURCE_FAILURE","features":[417]},{"name":"NS_E_NETWORK_SERVICE_FAILURE","features":[417]},{"name":"NS_E_NETWORK_SINK_WRITE","features":[417]},{"name":"NS_E_NET_READ","features":[417]},{"name":"NS_E_NET_WRITE","features":[417]},{"name":"NS_E_NOCONNECTION","features":[417]},{"name":"NS_E_NOFUNNEL","features":[417]},{"name":"NS_E_NOMATCHING_ELEMENT","features":[417]},{"name":"NS_E_NOMATCHING_MEDIASOURCE","features":[417]},{"name":"NS_E_NONSQUAREPIXELMODE_MISMATCH","features":[417]},{"name":"NS_E_NOREGISTEREDWALKER","features":[417]},{"name":"NS_E_NOSOURCEGROUPS","features":[417]},{"name":"NS_E_NOSTATSAVAILABLE","features":[417]},{"name":"NS_E_NOTARCHIVING","features":[417]},{"name":"NS_E_NOTHING_TO_DO","features":[417]},{"name":"NS_E_NOTITLES","features":[417]},{"name":"NS_E_NOT_CONFIGURED","features":[417]},{"name":"NS_E_NOT_CONNECTED","features":[417]},{"name":"NS_E_NOT_CONTENT_PARTNER_TRACK","features":[417]},{"name":"NS_E_NOT_LICENSED","features":[417]},{"name":"NS_E_NOT_REBUILDING","features":[417]},{"name":"NS_E_NO_ACTIVE_SOURCEGROUP","features":[417]},{"name":"NS_E_NO_AUDIENCES","features":[417]},{"name":"NS_E_NO_AUDIODATA","features":[417]},{"name":"NS_E_NO_AUDIO_COMPAT","features":[417]},{"name":"NS_E_NO_AUDIO_TIMECOMPRESSION","features":[417]},{"name":"NS_E_NO_CD","features":[417]},{"name":"NS_E_NO_CD_BURNER","features":[417]},{"name":"NS_E_NO_CHANNELS","features":[417]},{"name":"NS_E_NO_DATAVIEW_SUPPORT","features":[417]},{"name":"NS_E_NO_DEVICE","features":[417]},{"name":"NS_E_NO_ERROR_STRING_FOUND","features":[417]},{"name":"NS_E_NO_EXISTING_PACKETIZER","features":[417]},{"name":"NS_E_NO_FORMATS","features":[417]},{"name":"NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER","features":[417]},{"name":"NS_E_NO_LOCALPLAY","features":[417]},{"name":"NS_E_NO_MBR_WITH_TIMECODE","features":[417]},{"name":"NS_E_NO_MEDIAFORMAT_IN_SOURCE","features":[417]},{"name":"NS_E_NO_MEDIA_IN_AUDIENCE","features":[417]},{"name":"NS_E_NO_MEDIA_PROTOCOL","features":[417]},{"name":"NS_E_NO_MORE_SAMPLES","features":[417]},{"name":"NS_E_NO_MULTICAST","features":[417]},{"name":"NS_E_NO_MULTIPASS_FOR_LIVEDEVICE","features":[417]},{"name":"NS_E_NO_NEW_CONNECTIONS","features":[417]},{"name":"NS_E_NO_PAL_INVERSE_TELECINE","features":[417]},{"name":"NS_E_NO_PDA","features":[417]},{"name":"NS_E_NO_PROFILE_IN_SOURCEGROUP","features":[417]},{"name":"NS_E_NO_PROFILE_NAME","features":[417]},{"name":"NS_E_NO_REALTIME_PREPROCESS","features":[417]},{"name":"NS_E_NO_REALTIME_TIMECOMPRESSION","features":[417]},{"name":"NS_E_NO_REFERENCES","features":[417]},{"name":"NS_E_NO_REPEAT_PREPROCESS","features":[417]},{"name":"NS_E_NO_SCRIPT_ENGINE","features":[417]},{"name":"NS_E_NO_SCRIPT_STREAM","features":[417]},{"name":"NS_E_NO_SERVER_CONTACT","features":[417]},{"name":"NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS","features":[417]},{"name":"NS_E_NO_SPECIFIED_DEVICE","features":[417]},{"name":"NS_E_NO_STREAM","features":[417]},{"name":"NS_E_NO_TWOPASS_TIMECOMPRESSION","features":[417]},{"name":"NS_E_NO_VALID_OUTPUT_STREAM","features":[417]},{"name":"NS_E_NO_VALID_SOURCE_PLUGIN","features":[417]},{"name":"NS_E_NUM_LANGUAGE_MISMATCH","features":[417]},{"name":"NS_E_OFFLINE_MODE","features":[417]},{"name":"NS_E_OPEN_CONTAINING_FOLDER_FAILED","features":[417]},{"name":"NS_E_OPEN_FILE_LIMIT","features":[417]},{"name":"NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED","features":[417]},{"name":"NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED","features":[417]},{"name":"NS_E_PACKETSINK_UNKNOWN_FEC_STREAM","features":[417]},{"name":"NS_E_PAGING_ERROR","features":[417]},{"name":"NS_E_PARTIALLY_REBUILT_DISK","features":[417]},{"name":"NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP","features":[417]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_INTERNET","features":[417]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_LOCATION","features":[417]},{"name":"NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST","features":[417]},{"name":"NS_E_PDA_CANNOT_TRANSCODE","features":[417]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO","features":[417]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE","features":[417]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO","features":[417]},{"name":"NS_E_PDA_CEWMDM_DRM_ERROR","features":[417]},{"name":"NS_E_PDA_DELETE_FAILED","features":[417]},{"name":"NS_E_PDA_DEVICESUPPORTDISABLED","features":[417]},{"name":"NS_E_PDA_DEVICE_FULL","features":[417]},{"name":"NS_E_PDA_DEVICE_FULL_IN_SESSION","features":[417]},{"name":"NS_E_PDA_DEVICE_NOT_RESPONDING","features":[417]},{"name":"NS_E_PDA_ENCODER_NOT_RESPONDING","features":[417]},{"name":"NS_E_PDA_FAILED_TO_BURN","features":[417]},{"name":"NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE","features":[417]},{"name":"NS_E_PDA_FAILED_TO_RETRIEVE_FILE","features":[417]},{"name":"NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE","features":[417]},{"name":"NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO","features":[417]},{"name":"NS_E_PDA_FAIL_READ_WAVE_FILE","features":[417]},{"name":"NS_E_PDA_FAIL_SELECT_DEVICE","features":[417]},{"name":"NS_E_PDA_INITIALIZINGDEVICES","features":[417]},{"name":"NS_E_PDA_MANUALDEVICE","features":[417]},{"name":"NS_E_PDA_NO_LONGER_AVAILABLE","features":[417]},{"name":"NS_E_PDA_NO_TRANSCODE_OF_DRM","features":[417]},{"name":"NS_E_PDA_OBSOLETE_SP","features":[417]},{"name":"NS_E_PDA_PARTNERSHIPNOTEXIST","features":[417]},{"name":"NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG","features":[417]},{"name":"NS_E_PDA_SYNC_FAILED","features":[417]},{"name":"NS_E_PDA_SYNC_LOGIN_ERROR","features":[417]},{"name":"NS_E_PDA_SYNC_RUNNING","features":[417]},{"name":"NS_E_PDA_TITLE_COLLISION","features":[417]},{"name":"NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY","features":[417]},{"name":"NS_E_PDA_TOO_MANY_FILE_COLLISIONS","features":[417]},{"name":"NS_E_PDA_TRANSCODECACHEFULL","features":[417]},{"name":"NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND","features":[417]},{"name":"NS_E_PDA_TRANSCODE_NOT_PERMITTED","features":[417]},{"name":"NS_E_PDA_UNSPECIFIED_ERROR","features":[417]},{"name":"NS_E_PDA_UNSUPPORTED_FORMAT","features":[417]},{"name":"NS_E_PLAYLIST_CONTAINS_ERRORS","features":[417]},{"name":"NS_E_PLAYLIST_END_RECEDING","features":[417]},{"name":"NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING","features":[417]},{"name":"NS_E_PLAYLIST_ENTRY_HAS_CHANGED","features":[417]},{"name":"NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST","features":[417]},{"name":"NS_E_PLAYLIST_ENTRY_SEEK","features":[417]},{"name":"NS_E_PLAYLIST_PARSE_FAILURE","features":[417]},{"name":"NS_E_PLAYLIST_PLUGIN_NOT_FOUND","features":[417]},{"name":"NS_E_PLAYLIST_RECURSIVE_PLAYLISTS","features":[417]},{"name":"NS_E_PLAYLIST_SHUTDOWN","features":[417]},{"name":"NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS","features":[417]},{"name":"NS_E_PLAYLIST_UNSUPPORTED_ENTRY","features":[417]},{"name":"NS_E_PLUGIN_CLSID_INVALID","features":[417]},{"name":"NS_E_PLUGIN_ERROR_REPORTED","features":[417]},{"name":"NS_E_PLUGIN_NOTSHUTDOWN","features":[417]},{"name":"NS_E_PORT_IN_USE","features":[417]},{"name":"NS_E_PORT_IN_USE_HTTP","features":[417]},{"name":"NS_E_PROCESSINGSHOWSYNCWIZARD","features":[417]},{"name":"NS_E_PROFILE_MISMATCH","features":[417]},{"name":"NS_E_PROPERTY_NOT_FOUND","features":[417]},{"name":"NS_E_PROPERTY_NOT_SUPPORTED","features":[417]},{"name":"NS_E_PROPERTY_READ_ONLY","features":[417]},{"name":"NS_E_PROTECTED_CONTENT","features":[417]},{"name":"NS_E_PROTOCOL_MISMATCH","features":[417]},{"name":"NS_E_PROXY_ACCESSDENIED","features":[417]},{"name":"NS_E_PROXY_CONNECT_TIMEOUT","features":[417]},{"name":"NS_E_PROXY_DNS_TIMEOUT","features":[417]},{"name":"NS_E_PROXY_NOT_FOUND","features":[417]},{"name":"NS_E_PROXY_SOURCE_ACCESSDENIED","features":[417]},{"name":"NS_E_PROXY_TIMEOUT","features":[417]},{"name":"NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED","features":[417]},{"name":"NS_E_PUBLISHING_POINT_REMOVED","features":[417]},{"name":"NS_E_PUBLISHING_POINT_STOPPED","features":[417]},{"name":"NS_E_PUSH_CANNOTCONNECT","features":[417]},{"name":"NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME","features":[417]},{"name":"NS_E_REBOOT_RECOMMENDED","features":[417]},{"name":"NS_E_REBOOT_REQUIRED","features":[417]},{"name":"NS_E_RECORDQ_DISK_FULL","features":[417]},{"name":"NS_E_REDBOOK_ENABLED_WHILE_COPYING","features":[417]},{"name":"NS_E_REDIRECT","features":[417]},{"name":"NS_E_REDIRECT_TO_PROXY","features":[417]},{"name":"NS_E_REFUSED_BY_SERVER","features":[417]},{"name":"NS_E_REG_FLUSH_FAILURE","features":[417]},{"name":"NS_E_REMIRRORED_DISK","features":[417]},{"name":"NS_E_REQUIRE_STREAMING_CLIENT","features":[417]},{"name":"NS_E_RESET_SOCKET_CONNECTION","features":[417]},{"name":"NS_E_RESOURCE_GONE","features":[417]},{"name":"NS_E_SAME_AS_INPUT_COMBINATION","features":[417]},{"name":"NS_E_SCHEMA_CLASSIFY_FAILURE","features":[417]},{"name":"NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED","features":[417]},{"name":"NS_E_SDK_BUFFERTOOSMALL","features":[417]},{"name":"NS_E_SERVER_ACCESSDENIED","features":[417]},{"name":"NS_E_SERVER_DNS_TIMEOUT","features":[417]},{"name":"NS_E_SERVER_NOT_FOUND","features":[417]},{"name":"NS_E_SERVER_UNAVAILABLE","features":[417]},{"name":"NS_E_SESSION_INVALID","features":[417]},{"name":"NS_E_SESSION_NOT_FOUND","features":[417]},{"name":"NS_E_SETUP_BLOCKED","features":[417]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED","features":[417]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE","features":[417]},{"name":"NS_E_SETUP_IGNORABLE_FAILURE","features":[417]},{"name":"NS_E_SETUP_INCOMPLETE","features":[417]},{"name":"NS_E_SET_DISK_UID_FAILED","features":[417]},{"name":"NS_E_SHARING_STATE_OUT_OF_SYNC","features":[417]},{"name":"NS_E_SHARING_VIOLATION","features":[417]},{"name":"NS_E_SHUTDOWN","features":[417]},{"name":"NS_E_SLOW_READ_DIGITAL","features":[417]},{"name":"NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION","features":[417]},{"name":"NS_E_SMPTEMODE_MISMATCH","features":[417]},{"name":"NS_E_SOURCEGROUP_NOTPREPARED","features":[417]},{"name":"NS_E_SOURCE_CANNOT_LOOP","features":[417]},{"name":"NS_E_SOURCE_NOTSPECIFIED","features":[417]},{"name":"NS_E_SOURCE_PLUGIN_NOT_FOUND","features":[417]},{"name":"NS_E_SPEECHEDL_ON_NON_MIXEDMODE","features":[417]},{"name":"NS_E_STALE_PRESENTATION","features":[417]},{"name":"NS_E_STREAM_END","features":[417]},{"name":"NS_E_STRIDE_REFUSED","features":[417]},{"name":"NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT","features":[417]},{"name":"NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED","features":[417]},{"name":"NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED","features":[417]},{"name":"NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS","features":[417]},{"name":"NS_E_SYNCWIZ_DEVICE_FULL","features":[417]},{"name":"NS_E_TABLE_KEY_NOT_FOUND","features":[417]},{"name":"NS_E_TAMPERED_CONTENT","features":[417]},{"name":"NS_E_TCP_DISABLED","features":[417]},{"name":"NS_E_TIGER_FAIL","features":[417]},{"name":"NS_E_TIMECODE_REQUIRES_VIDEOSTREAM","features":[417]},{"name":"NS_E_TIMEOUT","features":[417]},{"name":"NS_E_TITLE_BITRATE","features":[417]},{"name":"NS_E_TITLE_SIZE_EXCEEDED","features":[417]},{"name":"NS_E_TOO_MANY_AUDIO","features":[417]},{"name":"NS_E_TOO_MANY_DEVICECONTROL","features":[417]},{"name":"NS_E_TOO_MANY_HOPS","features":[417]},{"name":"NS_E_TOO_MANY_MULTICAST_SINKS","features":[417]},{"name":"NS_E_TOO_MANY_SESS","features":[417]},{"name":"NS_E_TOO_MANY_TITLES","features":[417]},{"name":"NS_E_TOO_MANY_VIDEO","features":[417]},{"name":"NS_E_TOO_MUCH_DATA","features":[417]},{"name":"NS_E_TOO_MUCH_DATA_FROM_SERVER","features":[417]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE","features":[417]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE","features":[417]},{"name":"NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED","features":[417]},{"name":"NS_E_TRANSCODE_DELETECACHEERROR","features":[417]},{"name":"NS_E_TRANSFORM_PLUGIN_INVALID","features":[417]},{"name":"NS_E_TRANSFORM_PLUGIN_NOT_FOUND","features":[417]},{"name":"NS_E_UDP_DISABLED","features":[417]},{"name":"NS_E_UNABLE_TO_CREATE_RIP_LOCATION","features":[417]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[417]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[417]},{"name":"NS_E_UNCOMP_COMP_COMBINATION","features":[417]},{"name":"NS_E_UNEXPECTED_DISPLAY_SETTINGS","features":[417]},{"name":"NS_E_UNEXPECTED_MSAUDIO_ERROR","features":[417]},{"name":"NS_E_UNKNOWN_PROTOCOL","features":[417]},{"name":"NS_E_UNRECOGNIZED_STREAM_TYPE","features":[417]},{"name":"NS_E_UNSUPPORTED_ARCHIVEOPERATION","features":[417]},{"name":"NS_E_UNSUPPORTED_ARCHIVETYPE","features":[417]},{"name":"NS_E_UNSUPPORTED_ENCODER_DEVICE","features":[417]},{"name":"NS_E_UNSUPPORTED_LANGUAGE","features":[417]},{"name":"NS_E_UNSUPPORTED_LOAD_TYPE","features":[417]},{"name":"NS_E_UNSUPPORTED_PROPERTY","features":[417]},{"name":"NS_E_UNSUPPORTED_SOURCETYPE","features":[417]},{"name":"NS_E_URLLIST_INVALIDFORMAT","features":[417]},{"name":"NS_E_USER_STOP","features":[417]},{"name":"NS_E_USE_FILE_SOURCE","features":[417]},{"name":"NS_E_VBRMODE_MISMATCH","features":[417]},{"name":"NS_E_VIDCAPCREATEWINDOW","features":[417]},{"name":"NS_E_VIDCAPDRVINUSE","features":[417]},{"name":"NS_E_VIDCAPSTARTFAILED","features":[417]},{"name":"NS_E_VIDEODEVICE_BUSY","features":[417]},{"name":"NS_E_VIDEODEVICE_UNEXPECTED","features":[417]},{"name":"NS_E_VIDEODRIVER_UNSTABLE","features":[417]},{"name":"NS_E_VIDEO_BITRATE_STEPDOWN","features":[417]},{"name":"NS_E_VIDEO_CODEC_ERROR","features":[417]},{"name":"NS_E_VIDEO_CODEC_NOT_INSTALLED","features":[417]},{"name":"NS_E_VIDSOURCECOMPRESSION","features":[417]},{"name":"NS_E_VIDSOURCESIZE","features":[417]},{"name":"NS_E_WALKER_SERVER","features":[417]},{"name":"NS_E_WALKER_UNKNOWN","features":[417]},{"name":"NS_E_WALKER_USAGE","features":[417]},{"name":"NS_E_WAVE_OPEN","features":[417]},{"name":"NS_E_WINSOCK_ERROR_STRING","features":[417]},{"name":"NS_E_WIZARD_RUNNING","features":[417]},{"name":"NS_E_WMDM_REVOKED","features":[417]},{"name":"NS_E_WMDRM_DEPRECATED","features":[417]},{"name":"NS_E_WME_VERSION_MISMATCH","features":[417]},{"name":"NS_E_WMG_CANNOTQUEUE","features":[417]},{"name":"NS_E_WMG_COPP_SECURITY_INVALID","features":[417]},{"name":"NS_E_WMG_COPP_UNSUPPORTED","features":[417]},{"name":"NS_E_WMG_FILETRANSFERNOTALLOWED","features":[417]},{"name":"NS_E_WMG_INVALIDSTATE","features":[417]},{"name":"NS_E_WMG_INVALID_COPP_CERTIFICATE","features":[417]},{"name":"NS_E_WMG_LICENSE_TAMPERED","features":[417]},{"name":"NS_E_WMG_NOSDKINTERFACE","features":[417]},{"name":"NS_E_WMG_NOTALLOUTPUTSRENDERED","features":[417]},{"name":"NS_E_WMG_PLUGINUNAVAILABLE","features":[417]},{"name":"NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED","features":[417]},{"name":"NS_E_WMG_RATEUNAVAILABLE","features":[417]},{"name":"NS_E_WMG_SINKALREADYEXISTS","features":[417]},{"name":"NS_E_WMG_UNEXPECTEDPREROLLSTATUS","features":[417]},{"name":"NS_E_WMPBR_BACKUPCANCEL","features":[417]},{"name":"NS_E_WMPBR_BACKUPRESTOREFAILED","features":[417]},{"name":"NS_E_WMPBR_DRIVE_INVALID","features":[417]},{"name":"NS_E_WMPBR_ERRORWITHURL","features":[417]},{"name":"NS_E_WMPBR_NAMECOLLISION","features":[417]},{"name":"NS_E_WMPBR_NOLISTENER","features":[417]},{"name":"NS_E_WMPBR_RESTORECANCEL","features":[417]},{"name":"NS_E_WMPCORE_BUFFERTOOSMALL","features":[417]},{"name":"NS_E_WMPCORE_BUSY","features":[417]},{"name":"NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT","features":[417]},{"name":"NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED","features":[417]},{"name":"NS_E_WMPCORE_CODEC_NOT_FOUND","features":[417]},{"name":"NS_E_WMPCORE_CODEC_NOT_TRUSTED","features":[417]},{"name":"NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE","features":[417]},{"name":"NS_E_WMPCORE_DEVICE_DRIVERS_MISSING","features":[417]},{"name":"NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE","features":[417]},{"name":"NS_E_WMPCORE_ERRORSINKNOTREGISTERED","features":[417]},{"name":"NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST","features":[417]},{"name":"NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE","features":[417]},{"name":"NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST","features":[417]},{"name":"NS_E_WMPCORE_FILE_NOT_FOUND","features":[417]},{"name":"NS_E_WMPCORE_GRAPH_NOT_IN_LIST","features":[417]},{"name":"NS_E_WMPCORE_INVALIDPLAYLISTMODE","features":[417]},{"name":"NS_E_WMPCORE_INVALID_PLAYLIST_URL","features":[417]},{"name":"NS_E_WMPCORE_ITEMNOTINPLAYLIST","features":[417]},{"name":"NS_E_WMPCORE_LIST_ENTRY_NO_REF","features":[417]},{"name":"NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY","features":[417]},{"name":"NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE","features":[417]},{"name":"NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED","features":[417]},{"name":"NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST","features":[417]},{"name":"NS_E_WMPCORE_MEDIA_UNAVAILABLE","features":[417]},{"name":"NS_E_WMPCORE_MEDIA_URL_TOO_LONG","features":[417]},{"name":"NS_E_WMPCORE_MISMATCHED_RUNTIME","features":[417]},{"name":"NS_E_WMPCORE_MISNAMED_FILE","features":[417]},{"name":"NS_E_WMPCORE_NOBROWSER","features":[417]},{"name":"NS_E_WMPCORE_NOSOURCEURLSTRING","features":[417]},{"name":"NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST","features":[417]},{"name":"NS_E_WMPCORE_NO_REF_IN_ENTRY","features":[417]},{"name":"NS_E_WMPCORE_PLAYLISTEMPTY","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE","features":[417]},{"name":"NS_E_WMPCORE_PLAYLIST_STACK_EMPTY","features":[417]},{"name":"NS_E_WMPCORE_SOME_CODECS_MISSING","features":[417]},{"name":"NS_E_WMPCORE_TEMP_FILE_NOT_FOUND","features":[417]},{"name":"NS_E_WMPCORE_UNAVAILABLE","features":[417]},{"name":"NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL","features":[417]},{"name":"NS_E_WMPCORE_USER_CANCEL","features":[417]},{"name":"NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION","features":[417]},{"name":"NS_E_WMPCORE_WEBHELPFAILED","features":[417]},{"name":"NS_E_WMPCORE_WMX_ENTRYREF_NO_REF","features":[417]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY","features":[417]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL","features":[417]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY","features":[417]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL","features":[417]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY","features":[417]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL","features":[417]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY","features":[417]},{"name":"NS_E_WMPFLASH_CANT_FIND_COM_SERVER","features":[417]},{"name":"NS_E_WMPFLASH_INCOMPATIBLEVERSION","features":[417]},{"name":"NS_E_WMPIM_DIALUPFAILED","features":[417]},{"name":"NS_E_WMPIM_USERCANCELED","features":[417]},{"name":"NS_E_WMPIM_USEROFFLINE","features":[417]},{"name":"NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[417]},{"name":"NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE","features":[417]},{"name":"NS_E_WMPOCX_NOT_RUNNING_REMOTELY","features":[417]},{"name":"NS_E_WMPOCX_NO_ACTIVE_CORE","features":[417]},{"name":"NS_E_WMPOCX_NO_REMOTE_CORE","features":[417]},{"name":"NS_E_WMPOCX_NO_REMOTE_WINDOW","features":[417]},{"name":"NS_E_WMPOCX_PLAYER_NOT_DOCKED","features":[417]},{"name":"NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING","features":[417]},{"name":"NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN","features":[417]},{"name":"NS_E_WMPXML_ATTRIBUTENOTFOUND","features":[417]},{"name":"NS_E_WMPXML_EMPTYDOC","features":[417]},{"name":"NS_E_WMPXML_ENDOFDATA","features":[417]},{"name":"NS_E_WMPXML_NOERROR","features":[417]},{"name":"NS_E_WMPXML_PARSEERROR","features":[417]},{"name":"NS_E_WMPXML_PINOTFOUND","features":[417]},{"name":"NS_E_WMPZIP_CORRUPT","features":[417]},{"name":"NS_E_WMPZIP_FILENOTFOUND","features":[417]},{"name":"NS_E_WMPZIP_NOTAZIPFILE","features":[417]},{"name":"NS_E_WMP_ACCESS_DENIED","features":[417]},{"name":"NS_E_WMP_ADDTOLIBRARY_FAILED","features":[417]},{"name":"NS_E_WMP_ALREADY_IN_USE","features":[417]},{"name":"NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED","features":[417]},{"name":"NS_E_WMP_AUDIO_DEVICE_LOST","features":[417]},{"name":"NS_E_WMP_AUDIO_HW_PROBLEM","features":[417]},{"name":"NS_E_WMP_AUTOPLAY_INVALID_STATE","features":[417]},{"name":"NS_E_WMP_BAD_DRIVER","features":[417]},{"name":"NS_E_WMP_BMP_BITMAP_NOT_CREATED","features":[417]},{"name":"NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED","features":[417]},{"name":"NS_E_WMP_BMP_INVALID_BITMASK","features":[417]},{"name":"NS_E_WMP_BMP_INVALID_FORMAT","features":[417]},{"name":"NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED","features":[417]},{"name":"NS_E_WMP_BSTR_TOO_LONG","features":[417]},{"name":"NS_E_WMP_BURN_DISC_OVERFLOW","features":[417]},{"name":"NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE","features":[417]},{"name":"NS_E_WMP_CANNOT_FIND_FILE","features":[417]},{"name":"NS_E_WMP_CANNOT_FIND_FOLDER","features":[417]},{"name":"NS_E_WMP_CANT_PLAY_PROTECTED","features":[417]},{"name":"NS_E_WMP_CD_ANOTHER_USER","features":[417]},{"name":"NS_E_WMP_CD_STASH_NO_SPACE","features":[417]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_4CC","features":[417]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG","features":[417]},{"name":"NS_E_WMP_COMPONENT_REVOKED","features":[417]},{"name":"NS_E_WMP_CONNECT_TIMEOUT","features":[417]},{"name":"NS_E_WMP_CONVERT_FILE_CORRUPT","features":[417]},{"name":"NS_E_WMP_CONVERT_FILE_FAILED","features":[417]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL","features":[417]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL","features":[417]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL","features":[417]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL","features":[417]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER","features":[417]},{"name":"NS_E_WMP_CS_JPGPOSITIONIMAGE","features":[417]},{"name":"NS_E_WMP_CS_NOTEVENLYDIVISIBLE","features":[417]},{"name":"NS_E_WMP_DAI_SONGTOOSHORT","features":[417]},{"name":"NS_E_WMP_DRM_ACQUIRING_LICENSE","features":[417]},{"name":"NS_E_WMP_DRM_CANNOT_RESTORE","features":[417]},{"name":"NS_E_WMP_DRM_COMPONENT_FAILURE","features":[417]},{"name":"NS_E_WMP_DRM_CORRUPT_BACKUP","features":[417]},{"name":"NS_E_WMP_DRM_DRIVER_AUTH_FAILURE","features":[417]},{"name":"NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE","features":[417]},{"name":"NS_E_WMP_DRM_INDIV_FAILED","features":[417]},{"name":"NS_E_WMP_DRM_INVALID_SIG","features":[417]},{"name":"NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED","features":[417]},{"name":"NS_E_WMP_DRM_LICENSE_EXPIRED","features":[417]},{"name":"NS_E_WMP_DRM_LICENSE_NOSAP","features":[417]},{"name":"NS_E_WMP_DRM_LICENSE_NOTACQUIRED","features":[417]},{"name":"NS_E_WMP_DRM_LICENSE_NOTENABLED","features":[417]},{"name":"NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE","features":[417]},{"name":"NS_E_WMP_DRM_LICENSE_UNUSABLE","features":[417]},{"name":"NS_E_WMP_DRM_NEEDS_AUTHORIZATION","features":[417]},{"name":"NS_E_WMP_DRM_NEW_HARDWARE","features":[417]},{"name":"NS_E_WMP_DRM_NOT_ACQUIRING","features":[417]},{"name":"NS_E_WMP_DRM_NO_DEVICE_CERT","features":[417]},{"name":"NS_E_WMP_DRM_NO_RIGHTS","features":[417]},{"name":"NS_E_WMP_DRM_NO_SECURE_CLOCK","features":[417]},{"name":"NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[417]},{"name":"NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT","features":[417]},{"name":"NS_E_WMP_ERASE_FAILED","features":[417]},{"name":"NS_E_WMP_EXTERNAL_NOTREADY","features":[417]},{"name":"NS_E_WMP_FAILED_TO_OPEN_IMAGE","features":[417]},{"name":"NS_E_WMP_FAILED_TO_OPEN_WMD","features":[417]},{"name":"NS_E_WMP_FAILED_TO_RIP_TRACK","features":[417]},{"name":"NS_E_WMP_FAILED_TO_SAVE_FILE","features":[417]},{"name":"NS_E_WMP_FAILED_TO_SAVE_PLAYLIST","features":[417]},{"name":"NS_E_WMP_FILESCANALREADYSTARTED","features":[417]},{"name":"NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD","features":[417]},{"name":"NS_E_WMP_FILE_NO_DURATION","features":[417]},{"name":"NS_E_WMP_FILE_OPEN_FAILED","features":[417]},{"name":"NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD","features":[417]},{"name":"NS_E_WMP_FORMAT_FAILED","features":[417]},{"name":"NS_E_WMP_GIF_BAD_VERSION_NUMBER","features":[417]},{"name":"NS_E_WMP_GIF_INVALID_FORMAT","features":[417]},{"name":"NS_E_WMP_GIF_NO_IMAGE_IN_FILE","features":[417]},{"name":"NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE","features":[417]},{"name":"NS_E_WMP_GOFULLSCREEN_FAILED","features":[417]},{"name":"NS_E_WMP_HME_INVALIDOBJECTID","features":[417]},{"name":"NS_E_WMP_HME_NOTSEARCHABLEFORITEMS","features":[417]},{"name":"NS_E_WMP_HME_STALEREQUEST","features":[417]},{"name":"NS_E_WMP_HWND_NOTFOUND","features":[417]},{"name":"NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED","features":[417]},{"name":"NS_E_WMP_IMAGE_INVALID_FORMAT","features":[417]},{"name":"NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY","features":[417]},{"name":"NS_E_WMP_IMAPI2_ERASE_FAIL","features":[417]},{"name":"NS_E_WMP_IMAPI_DEVICE_BUSY","features":[417]},{"name":"NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE","features":[417]},{"name":"NS_E_WMP_IMAPI_DEVICE_NOTPRESENT","features":[417]},{"name":"NS_E_WMP_IMAPI_FAILURE","features":[417]},{"name":"NS_E_WMP_IMAPI_GENERIC","features":[417]},{"name":"NS_E_WMP_IMAPI_LOSS_OF_STREAMING","features":[417]},{"name":"NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE","features":[417]},{"name":"NS_E_WMP_INVALID_ASX","features":[417]},{"name":"NS_E_WMP_INVALID_KEY","features":[417]},{"name":"NS_E_WMP_INVALID_LIBRARY_ADD","features":[417]},{"name":"NS_E_WMP_INVALID_MAX_VAL","features":[417]},{"name":"NS_E_WMP_INVALID_MIN_VAL","features":[417]},{"name":"NS_E_WMP_INVALID_PROTOCOL","features":[417]},{"name":"NS_E_WMP_INVALID_REQUEST","features":[417]},{"name":"NS_E_WMP_INVALID_SKIN","features":[417]},{"name":"NS_E_WMP_JPGTRANSPARENCY","features":[417]},{"name":"NS_E_WMP_JPG_BAD_DCTSIZE","features":[417]},{"name":"NS_E_WMP_JPG_BAD_PRECISION","features":[417]},{"name":"NS_E_WMP_JPG_BAD_VERSION_NUMBER","features":[417]},{"name":"NS_E_WMP_JPG_CCIR601_NOTIMPL","features":[417]},{"name":"NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL","features":[417]},{"name":"NS_E_WMP_JPG_IMAGE_TOO_BIG","features":[417]},{"name":"NS_E_WMP_JPG_INVALID_FORMAT","features":[417]},{"name":"NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL","features":[417]},{"name":"NS_E_WMP_JPG_NO_IMAGE_IN_FILE","features":[417]},{"name":"NS_E_WMP_JPG_READ_ERROR","features":[417]},{"name":"NS_E_WMP_JPG_SOF_UNSUPPORTED","features":[417]},{"name":"NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE","features":[417]},{"name":"NS_E_WMP_JPG_UNKNOWN_MARKER","features":[417]},{"name":"NS_E_WMP_LICENSE_REQUIRED","features":[417]},{"name":"NS_E_WMP_LICENSE_RESTRICTS","features":[417]},{"name":"NS_E_WMP_LOCKEDINSKINMODE","features":[417]},{"name":"NS_E_WMP_LOGON_FAILURE","features":[417]},{"name":"NS_E_WMP_MF_CODE_EXPIRED","features":[417]},{"name":"NS_E_WMP_MLS_STALE_DATA","features":[417]},{"name":"NS_E_WMP_MMS_NOT_SUPPORTED","features":[417]},{"name":"NS_E_WMP_MSSAP_NOT_AVAILABLE","features":[417]},{"name":"NS_E_WMP_MULTICAST_DISABLED","features":[417]},{"name":"NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST","features":[417]},{"name":"NS_E_WMP_NEED_UPGRADE","features":[417]},{"name":"NS_E_WMP_NETWORK_ERROR","features":[417]},{"name":"NS_E_WMP_NETWORK_FIREWALL","features":[417]},{"name":"NS_E_WMP_NETWORK_RESOURCE_FAILURE","features":[417]},{"name":"NS_E_WMP_NONMEDIA_FILES","features":[417]},{"name":"NS_E_WMP_NO_DISK_SPACE","features":[417]},{"name":"NS_E_WMP_NO_PROTOCOLS_SELECTED","features":[417]},{"name":"NS_E_WMP_NO_REMOVABLE_MEDIA","features":[417]},{"name":"NS_E_WMP_OUTOFMEMORY","features":[417]},{"name":"NS_E_WMP_PATH_ALREADY_IN_LIBRARY","features":[417]},{"name":"NS_E_WMP_PLAYLIST_EXISTS","features":[417]},{"name":"NS_E_WMP_PLUGINDLL_NOTFOUND","features":[417]},{"name":"NS_E_WMP_PNG_INVALIDFORMAT","features":[417]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC","features":[417]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH","features":[417]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION","features":[417]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_FILTER","features":[417]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_INTERLACE","features":[417]},{"name":"NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED","features":[417]},{"name":"NS_E_WMP_PROTECTED_CONTENT","features":[417]},{"name":"NS_E_WMP_PROTOCOL_PROBLEM","features":[417]},{"name":"NS_E_WMP_PROXY_CONNECT_TIMEOUT","features":[417]},{"name":"NS_E_WMP_PROXY_NOT_FOUND","features":[417]},{"name":"NS_E_WMP_RBC_JPGMAPPINGIMAGE","features":[417]},{"name":"NS_E_WMP_RECORDING_NOT_ALLOWED","features":[417]},{"name":"NS_E_WMP_RIP_FAILED","features":[417]},{"name":"NS_E_WMP_SAVEAS_READONLY","features":[417]},{"name":"NS_E_WMP_SENDMAILFAILED","features":[417]},{"name":"NS_E_WMP_SERVER_DNS_TIMEOUT","features":[417]},{"name":"NS_E_WMP_SERVER_INACCESSIBLE","features":[417]},{"name":"NS_E_WMP_SERVER_NONEWCONNECTIONS","features":[417]},{"name":"NS_E_WMP_SERVER_NOT_RESPONDING","features":[417]},{"name":"NS_E_WMP_SERVER_SECURITY_ERROR","features":[417]},{"name":"NS_E_WMP_SERVER_UNAVAILABLE","features":[417]},{"name":"NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED","features":[417]},{"name":"NS_E_WMP_TAMPERED_CONTENT","features":[417]},{"name":"NS_E_WMP_UDRM_NOUSERLIST","features":[417]},{"name":"NS_E_WMP_UI_NOSKININZIP","features":[417]},{"name":"NS_E_WMP_UI_NOTATHEMEFILE","features":[417]},{"name":"NS_E_WMP_UI_OBJECTNOTFOUND","features":[417]},{"name":"NS_E_WMP_UI_PASSTHROUGH","features":[417]},{"name":"NS_E_WMP_UI_SECONDHANDLER","features":[417]},{"name":"NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED","features":[417]},{"name":"NS_E_WMP_UI_SUBELEMENTNOTFOUND","features":[417]},{"name":"NS_E_WMP_UI_VERSIONMISMATCH","features":[417]},{"name":"NS_E_WMP_UI_VERSIONPARSE","features":[417]},{"name":"NS_E_WMP_UI_VIEWIDNOTFOUND","features":[417]},{"name":"NS_E_WMP_UNKNOWN_ERROR","features":[417]},{"name":"NS_E_WMP_UNSUPPORTED_FORMAT","features":[417]},{"name":"NS_E_WMP_UPGRADE_APPLICATION","features":[417]},{"name":"NS_E_WMP_URLDOWNLOADFAILED","features":[417]},{"name":"NS_E_WMP_VERIFY_ONLINE","features":[417]},{"name":"NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED","features":[417]},{"name":"NS_E_WMP_WINDOWSAPIFAILURE","features":[417]},{"name":"NS_E_WMP_WMDM_BUSY","features":[417]},{"name":"NS_E_WMP_WMDM_FAILURE","features":[417]},{"name":"NS_E_WMP_WMDM_INCORRECT_RIGHTS","features":[417]},{"name":"NS_E_WMP_WMDM_INTERFACEDEAD","features":[417]},{"name":"NS_E_WMP_WMDM_LICENSE_EXPIRED","features":[417]},{"name":"NS_E_WMP_WMDM_LICENSE_NOTEXIST","features":[417]},{"name":"NS_E_WMP_WMDM_NORIGHTS","features":[417]},{"name":"NS_E_WMP_WMDM_NOTCERTIFIED","features":[417]},{"name":"NS_E_WMR_CANNOT_RENDER_BINARY_STREAM","features":[417]},{"name":"NS_E_WMR_NOCALLBACKAVAILABLE","features":[417]},{"name":"NS_E_WMR_NOSOURCEFILTER","features":[417]},{"name":"NS_E_WMR_PINNOTFOUND","features":[417]},{"name":"NS_E_WMR_PINTYPENOMATCH","features":[417]},{"name":"NS_E_WMR_SAMPLEPROPERTYNOTSET","features":[417]},{"name":"NS_E_WMR_UNSUPPORTEDSTREAM","features":[417]},{"name":"NS_E_WMR_WAITINGONFORMATSWITCH","features":[417]},{"name":"NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM","features":[417]},{"name":"NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS","features":[417]},{"name":"NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST","features":[417]},{"name":"NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE","features":[417]},{"name":"NS_E_WMX_INVALID_FORMAT_OVER_NESTING","features":[417]},{"name":"NS_E_WMX_ITEM_DOES_NOT_EXIST","features":[417]},{"name":"NS_E_WMX_ITEM_TYPE_ILLEGAL","features":[417]},{"name":"NS_E_WMX_ITEM_UNSETTABLE","features":[417]},{"name":"NS_E_WMX_PLAYLIST_EMPTY","features":[417]},{"name":"NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT","features":[417]},{"name":"NS_E_WONT_DO_DIGITAL","features":[417]},{"name":"NS_E_WRONG_OS_VERSION","features":[417]},{"name":"NS_E_WRONG_PUBLISHING_POINT_TYPE","features":[417]},{"name":"NS_E_WSX_INVALID_VERSION","features":[417]},{"name":"NS_I_CATATONIC_AUTO_UNFAIL","features":[417]},{"name":"NS_I_CATATONIC_FAILURE","features":[417]},{"name":"NS_I_CUB_RUNNING","features":[417]},{"name":"NS_I_CUB_START","features":[417]},{"name":"NS_I_CUB_UNFAIL_LINK","features":[417]},{"name":"NS_I_DISK_REBUILD_ABORTED","features":[417]},{"name":"NS_I_DISK_REBUILD_FINISHED","features":[417]},{"name":"NS_I_DISK_REBUILD_STARTED","features":[417]},{"name":"NS_I_DISK_START","features":[417]},{"name":"NS_I_DISK_STOP","features":[417]},{"name":"NS_I_EXISTING_PACKETIZER","features":[417]},{"name":"NS_I_KILL_CONNECTION","features":[417]},{"name":"NS_I_KILL_USERSESSION","features":[417]},{"name":"NS_I_LIMIT_BANDWIDTH","features":[417]},{"name":"NS_I_LIMIT_FUNNELS","features":[417]},{"name":"NS_I_LOGGING_FAILED","features":[417]},{"name":"NS_I_MANUAL_PROXY","features":[417]},{"name":"NS_I_NOLOG_STOP","features":[417]},{"name":"NS_I_PLAYLIST_CHANGE_RECEDING","features":[417]},{"name":"NS_I_REBUILD_DISK","features":[417]},{"name":"NS_I_RECONNECTED","features":[417]},{"name":"NS_I_RESTRIPE_CUB_OUT","features":[417]},{"name":"NS_I_RESTRIPE_DISK_OUT","features":[417]},{"name":"NS_I_RESTRIPE_DONE","features":[417]},{"name":"NS_I_RESTRIPE_START","features":[417]},{"name":"NS_I_START_DISK","features":[417]},{"name":"NS_I_STOP_CUB","features":[417]},{"name":"NS_I_STOP_DISK","features":[417]},{"name":"NS_I_TIGER_START","features":[417]},{"name":"NS_S_CALLABORTED","features":[417]},{"name":"NS_S_CALLPENDING","features":[417]},{"name":"NS_S_CHANGENOTICE","features":[417]},{"name":"NS_S_DEGRADING_QUALITY","features":[417]},{"name":"NS_S_DRM_ACQUIRE_CANCELLED","features":[417]},{"name":"NS_S_DRM_BURNABLE_TRACK","features":[417]},{"name":"NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION","features":[417]},{"name":"NS_S_DRM_INDIVIDUALIZED","features":[417]},{"name":"NS_S_DRM_LICENSE_ACQUIRED","features":[417]},{"name":"NS_S_DRM_MONITOR_CANCELLED","features":[417]},{"name":"NS_S_DRM_NEEDS_INDIVIDUALIZATION","features":[417]},{"name":"NS_S_EOSRECEDING","features":[417]},{"name":"NS_S_NAVIGATION_COMPLETE_WITH_ERRORS","features":[417]},{"name":"NS_S_NEED_TO_BUY_BURN_RIGHTS","features":[417]},{"name":"NS_S_OPERATION_PENDING","features":[417]},{"name":"NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS","features":[417]},{"name":"NS_S_REBOOT_RECOMMENDED","features":[417]},{"name":"NS_S_REBOOT_REQUIRED","features":[417]},{"name":"NS_S_REBUFFERING","features":[417]},{"name":"NS_S_STREAM_TRUNCATED","features":[417]},{"name":"NS_S_TRACK_ALREADY_DOWNLOADED","features":[417]},{"name":"NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE","features":[417]},{"name":"NS_S_TRANSCRYPTOR_EOF","features":[417]},{"name":"NS_S_WMG_ADVISE_DROP_FRAME","features":[417]},{"name":"NS_S_WMG_ADVISE_DROP_TO_KEYFRAME","features":[417]},{"name":"NS_S_WMG_FORCE_DROP_FRAME","features":[417]},{"name":"NS_S_WMPBR_PARTIALSUCCESS","features":[417]},{"name":"NS_S_WMPBR_SUCCESS","features":[417]},{"name":"NS_S_WMPCORE_COMMAND_NOT_AVAILABLE","features":[417]},{"name":"NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING","features":[417]},{"name":"NS_S_WMPCORE_MEDIA_VALIDATION_PENDING","features":[417]},{"name":"NS_S_WMPCORE_MORE_NODES_AVAIABLE","features":[417]},{"name":"NS_S_WMPCORE_PLAYLISTCLEARABORT","features":[417]},{"name":"NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT","features":[417]},{"name":"NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA","features":[417]},{"name":"NS_S_WMPCORE_PLAYLIST_CREATION_PENDING","features":[417]},{"name":"NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS","features":[417]},{"name":"NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED","features":[417]},{"name":"NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED","features":[417]},{"name":"NS_S_WMPEFFECT_OPAQUE","features":[417]},{"name":"NS_S_WMPEFFECT_TRANSPARENT","features":[417]},{"name":"NS_S_WMP_EXCEPTION","features":[417]},{"name":"NS_S_WMP_LOADED_BMP_IMAGE","features":[417]},{"name":"NS_S_WMP_LOADED_GIF_IMAGE","features":[417]},{"name":"NS_S_WMP_LOADED_JPG_IMAGE","features":[417]},{"name":"NS_S_WMP_LOADED_PNG_IMAGE","features":[417]},{"name":"NS_S_WMP_UI_VERSIONMISMATCH","features":[417]},{"name":"NS_S_WMR_ALREADYRENDERED","features":[417]},{"name":"NS_S_WMR_PINTYPEFULLMATCH","features":[417]},{"name":"NS_S_WMR_PINTYPEPARTIALMATCH","features":[417]},{"name":"NS_W_FILE_BANDWIDTH_LIMIT","features":[417]},{"name":"NS_W_SERVER_BANDWIDTH_LIMIT","features":[417]},{"name":"NS_W_UNKNOWN_EVENT","features":[417]},{"name":"OLIADPCMWAVEFORMAT","features":[418,417]},{"name":"OLICELPWAVEFORMAT","features":[418,417]},{"name":"OLIGSMWAVEFORMAT","features":[418,417]},{"name":"OLIOPRWAVEFORMAT","features":[418,417]},{"name":"OLISBCWAVEFORMAT","features":[418,417]},{"name":"OpenDriver","features":[303,417]},{"name":"PD_CAN_DRAW_DIB","features":[417]},{"name":"PD_CAN_STRETCHDIB","features":[417]},{"name":"PD_STRETCHDIB_1_1_OK","features":[417]},{"name":"PD_STRETCHDIB_1_2_OK","features":[417]},{"name":"PD_STRETCHDIB_1_N_OK","features":[417]},{"name":"ROCKWELL_WA1_MIXER","features":[417]},{"name":"ROCKWELL_WA1_MPU401_IN","features":[417]},{"name":"ROCKWELL_WA1_MPU401_OUT","features":[417]},{"name":"ROCKWELL_WA1_SYNTH","features":[417]},{"name":"ROCKWELL_WA1_WAVEIN","features":[417]},{"name":"ROCKWELL_WA1_WAVEOUT","features":[417]},{"name":"ROCKWELL_WA2_MIXER","features":[417]},{"name":"ROCKWELL_WA2_MPU401_IN","features":[417]},{"name":"ROCKWELL_WA2_MPU401_OUT","features":[417]},{"name":"ROCKWELL_WA2_SYNTH","features":[417]},{"name":"ROCKWELL_WA2_WAVEIN","features":[417]},{"name":"ROCKWELL_WA2_WAVEOUT","features":[417]},{"name":"SEARCH_ANY","features":[417]},{"name":"SEARCH_BACKWARD","features":[417]},{"name":"SEARCH_FORWARD","features":[417]},{"name":"SEARCH_KEY","features":[417]},{"name":"SEARCH_NEAREST","features":[417]},{"name":"SEEK_CUR","features":[417]},{"name":"SEEK_END","features":[417]},{"name":"SEEK_SET","features":[417]},{"name":"SIERRAADPCMWAVEFORMAT","features":[418,417]},{"name":"SONARCWAVEFORMAT","features":[418,417]},{"name":"SendDriverMessage","features":[303,417]},{"name":"TARGET_DEVICE_FRIENDLY_NAME","features":[417]},{"name":"TARGET_DEVICE_OPEN_EXCLUSIVELY","features":[417]},{"name":"TASKERR_NOTASKSUPPORT","features":[417]},{"name":"TASKERR_OUTOFMEMORY","features":[417]},{"name":"TDD_BEGINMINPERIOD","features":[417]},{"name":"TDD_ENDMINPERIOD","features":[417]},{"name":"TDD_GETDEVCAPS","features":[417]},{"name":"TDD_GETSYSTEMTIME","features":[417]},{"name":"TDD_KILLTIMEREVENT","features":[417]},{"name":"TDD_SETTIMEREVENT","features":[417]},{"name":"TIMEREVENT","features":[417]},{"name":"TRUESPEECHWAVEFORMAT","features":[418,417]},{"name":"VADMAD_Device_ID","features":[417]},{"name":"VCAPS_CAN_SCALE","features":[417]},{"name":"VCAPS_DST_CAN_CLIP","features":[417]},{"name":"VCAPS_OVERLAY","features":[417]},{"name":"VCAPS_SRC_CAN_CLIP","features":[417]},{"name":"VFWWDMExtensionProc","features":[303,417,353]},{"name":"VFW_HIDE_CAMERACONTROL_PAGE","features":[417]},{"name":"VFW_HIDE_SETTINGS_PAGE","features":[417]},{"name":"VFW_HIDE_VIDEOSRC_PAGE","features":[417]},{"name":"VFW_OEM_ADD_PAGE","features":[417]},{"name":"VFW_QUERY_DEV_CHANGED","features":[417]},{"name":"VFW_USE_DEVICE_HANDLE","features":[417]},{"name":"VFW_USE_STREAM_HANDLE","features":[417]},{"name":"VHDR_DONE","features":[417]},{"name":"VHDR_INQUEUE","features":[417]},{"name":"VHDR_KEYFRAME","features":[417]},{"name":"VHDR_PREPARED","features":[417]},{"name":"VHDR_VALID","features":[417]},{"name":"VIDCF_COMPRESSFRAMES","features":[417]},{"name":"VIDCF_CRUNCH","features":[417]},{"name":"VIDCF_DRAW","features":[417]},{"name":"VIDCF_FASTTEMPORALC","features":[417]},{"name":"VIDCF_FASTTEMPORALD","features":[417]},{"name":"VIDCF_QUALITY","features":[417]},{"name":"VIDCF_TEMPORAL","features":[417]},{"name":"VIDEOHDR","features":[417]},{"name":"VIDEO_CONFIGURE_CURRENT","features":[417]},{"name":"VIDEO_CONFIGURE_GET","features":[417]},{"name":"VIDEO_CONFIGURE_MAX","features":[417]},{"name":"VIDEO_CONFIGURE_MIN","features":[417]},{"name":"VIDEO_CONFIGURE_NOMINAL","features":[417]},{"name":"VIDEO_CONFIGURE_QUERY","features":[417]},{"name":"VIDEO_CONFIGURE_QUERYSIZE","features":[417]},{"name":"VIDEO_CONFIGURE_SET","features":[417]},{"name":"VIDEO_DLG_QUERY","features":[417]},{"name":"VIDEO_EXTERNALIN","features":[417]},{"name":"VIDEO_EXTERNALOUT","features":[417]},{"name":"VIDEO_IN","features":[417]},{"name":"VIDEO_OUT","features":[417]},{"name":"VP_COMMAND_GET","features":[417]},{"name":"VP_COMMAND_SET","features":[417]},{"name":"VP_CP_CMD_ACTIVATE","features":[417]},{"name":"VP_CP_CMD_CHANGE","features":[417]},{"name":"VP_CP_CMD_DEACTIVATE","features":[417]},{"name":"VP_CP_TYPE_APS_TRIGGER","features":[417]},{"name":"VP_CP_TYPE_MACROVISION","features":[417]},{"name":"VP_FLAGS_BRIGHTNESS","features":[417]},{"name":"VP_FLAGS_CONTRAST","features":[417]},{"name":"VP_FLAGS_COPYPROTECT","features":[417]},{"name":"VP_FLAGS_FLICKER","features":[417]},{"name":"VP_FLAGS_MAX_UNSCALED","features":[417]},{"name":"VP_FLAGS_OVERSCAN","features":[417]},{"name":"VP_FLAGS_POSITION","features":[417]},{"name":"VP_FLAGS_TV_MODE","features":[417]},{"name":"VP_FLAGS_TV_STANDARD","features":[417]},{"name":"VP_MODE_TV_PLAYBACK","features":[417]},{"name":"VP_MODE_WIN_GRAPHICS","features":[417]},{"name":"VP_TV_STANDARD_NTSC_433","features":[417]},{"name":"VP_TV_STANDARD_NTSC_M","features":[417]},{"name":"VP_TV_STANDARD_NTSC_M_J","features":[417]},{"name":"VP_TV_STANDARD_PAL_60","features":[417]},{"name":"VP_TV_STANDARD_PAL_B","features":[417]},{"name":"VP_TV_STANDARD_PAL_D","features":[417]},{"name":"VP_TV_STANDARD_PAL_G","features":[417]},{"name":"VP_TV_STANDARD_PAL_H","features":[417]},{"name":"VP_TV_STANDARD_PAL_I","features":[417]},{"name":"VP_TV_STANDARD_PAL_M","features":[417]},{"name":"VP_TV_STANDARD_PAL_N","features":[417]},{"name":"VP_TV_STANDARD_SECAM_B","features":[417]},{"name":"VP_TV_STANDARD_SECAM_D","features":[417]},{"name":"VP_TV_STANDARD_SECAM_G","features":[417]},{"name":"VP_TV_STANDARD_SECAM_H","features":[417]},{"name":"VP_TV_STANDARD_SECAM_K","features":[417]},{"name":"VP_TV_STANDARD_SECAM_K1","features":[417]},{"name":"VP_TV_STANDARD_SECAM_L","features":[417]},{"name":"VP_TV_STANDARD_SECAM_L1","features":[417]},{"name":"VP_TV_STANDARD_WIN_VGA","features":[417]},{"name":"VideoForWindowsVersion","features":[417]},{"name":"WAVEOPENDESC","features":[418,417]},{"name":"WAVE_FILTER_DEVELOPMENT","features":[417]},{"name":"WAVE_FILTER_ECHO","features":[417]},{"name":"WAVE_FILTER_UNKNOWN","features":[417]},{"name":"WAVE_FILTER_VOLUME","features":[417]},{"name":"WAVE_FORMAT_3COM_NBX","features":[417]},{"name":"WAVE_FORMAT_ADPCM","features":[417]},{"name":"WAVE_FORMAT_ALAC","features":[417]},{"name":"WAVE_FORMAT_ALAW","features":[417]},{"name":"WAVE_FORMAT_AMR_NB","features":[417]},{"name":"WAVE_FORMAT_AMR_WB","features":[417]},{"name":"WAVE_FORMAT_AMR_WP","features":[417]},{"name":"WAVE_FORMAT_ANTEX_ADPCME","features":[417]},{"name":"WAVE_FORMAT_APTX","features":[417]},{"name":"WAVE_FORMAT_AUDIOFILE_AF10","features":[417]},{"name":"WAVE_FORMAT_AUDIOFILE_AF36","features":[417]},{"name":"WAVE_FORMAT_BTV_DIGITAL","features":[417]},{"name":"WAVE_FORMAT_CANOPUS_ATRAC","features":[417]},{"name":"WAVE_FORMAT_CIRRUS","features":[417]},{"name":"WAVE_FORMAT_CODIAN","features":[417]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_AVQSBC","features":[417]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_G723_1","features":[417]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_SBC","features":[417]},{"name":"WAVE_FORMAT_CONGRUENCY","features":[417]},{"name":"WAVE_FORMAT_CONTROL_RES_CR10","features":[417]},{"name":"WAVE_FORMAT_CONTROL_RES_VQLPC","features":[417]},{"name":"WAVE_FORMAT_CONVEDIA_G729","features":[417]},{"name":"WAVE_FORMAT_CREATIVE_ADPCM","features":[417]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH10","features":[417]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH8","features":[417]},{"name":"WAVE_FORMAT_CS2","features":[417]},{"name":"WAVE_FORMAT_CS_IMAADPCM","features":[417]},{"name":"WAVE_FORMAT_CUSEEME","features":[417]},{"name":"WAVE_FORMAT_CU_CODEC","features":[417]},{"name":"WAVE_FORMAT_DEVELOPMENT","features":[417]},{"name":"WAVE_FORMAT_DF_G726","features":[417]},{"name":"WAVE_FORMAT_DF_GSM610","features":[417]},{"name":"WAVE_FORMAT_DIALOGIC_OKI_ADPCM","features":[417]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP54","features":[417]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP68","features":[417]},{"name":"WAVE_FORMAT_DIGIADPCM","features":[417]},{"name":"WAVE_FORMAT_DIGIFIX","features":[417]},{"name":"WAVE_FORMAT_DIGIREAL","features":[417]},{"name":"WAVE_FORMAT_DIGISTD","features":[417]},{"name":"WAVE_FORMAT_DIGITAL_G723","features":[417]},{"name":"WAVE_FORMAT_DIVIO_G726","features":[417]},{"name":"WAVE_FORMAT_DIVIO_MPEG4_AAC","features":[417]},{"name":"WAVE_FORMAT_DOLBY_AC2","features":[417]},{"name":"WAVE_FORMAT_DOLBY_AC3_SPDIF","features":[417]},{"name":"WAVE_FORMAT_DOLBY_AC4","features":[417]},{"name":"WAVE_FORMAT_DRM","features":[417]},{"name":"WAVE_FORMAT_DSAT","features":[417]},{"name":"WAVE_FORMAT_DSAT_DISPLAY","features":[417]},{"name":"WAVE_FORMAT_DSPGROUP_TRUESPEECH","features":[417]},{"name":"WAVE_FORMAT_DTS","features":[417]},{"name":"WAVE_FORMAT_DTS2","features":[417]},{"name":"WAVE_FORMAT_DTS_DS","features":[417]},{"name":"WAVE_FORMAT_DVI_ADPCM","features":[417]},{"name":"WAVE_FORMAT_DVM","features":[417]},{"name":"WAVE_FORMAT_ECHOSC1","features":[417]},{"name":"WAVE_FORMAT_ECHOSC3","features":[417]},{"name":"WAVE_FORMAT_ENCORE_G726","features":[417]},{"name":"WAVE_FORMAT_ESPCM","features":[417]},{"name":"WAVE_FORMAT_ESST_AC3","features":[417]},{"name":"WAVE_FORMAT_FAAD_AAC","features":[417]},{"name":"WAVE_FORMAT_FLAC","features":[417]},{"name":"WAVE_FORMAT_FM_TOWNS_SND","features":[417]},{"name":"WAVE_FORMAT_FRACE_TELECOM_G729","features":[417]},{"name":"WAVE_FORMAT_FRAUNHOFER_IIS_MPEG2_AAC","features":[417]},{"name":"WAVE_FORMAT_G721_ADPCM","features":[417]},{"name":"WAVE_FORMAT_G722_ADPCM","features":[417]},{"name":"WAVE_FORMAT_G723_ADPCM","features":[417]},{"name":"WAVE_FORMAT_G726ADPCM","features":[417]},{"name":"WAVE_FORMAT_G726_ADPCM","features":[417]},{"name":"WAVE_FORMAT_G728_CELP","features":[417]},{"name":"WAVE_FORMAT_G729A","features":[417]},{"name":"WAVE_FORMAT_GENERIC_PASSTHRU","features":[417]},{"name":"WAVE_FORMAT_GLOBAL_IP_ILBC","features":[417]},{"name":"WAVE_FORMAT_GSM610","features":[417]},{"name":"WAVE_FORMAT_GSM_610","features":[417]},{"name":"WAVE_FORMAT_GSM_620","features":[417]},{"name":"WAVE_FORMAT_GSM_660","features":[417]},{"name":"WAVE_FORMAT_GSM_690","features":[417]},{"name":"WAVE_FORMAT_GSM_ADAPTIVE_MULTIRATE_WB","features":[417]},{"name":"WAVE_FORMAT_GSM_AMR_CBR","features":[417]},{"name":"WAVE_FORMAT_GSM_AMR_VBR_SID","features":[417]},{"name":"WAVE_FORMAT_HP_DYN_VOICE","features":[417]},{"name":"WAVE_FORMAT_IBM_CVSD","features":[417]},{"name":"WAVE_FORMAT_IEEE_FLOAT","features":[417]},{"name":"WAVE_FORMAT_ILINK_VC","features":[417]},{"name":"WAVE_FORMAT_IMA_ADPCM","features":[417]},{"name":"WAVE_FORMAT_INDEO_AUDIO","features":[417]},{"name":"WAVE_FORMAT_INFOCOM_ITS_G721_ADPCM","features":[417]},{"name":"WAVE_FORMAT_INGENIENT_G726","features":[417]},{"name":"WAVE_FORMAT_INNINGS_TELECOM_ADPCM","features":[417]},{"name":"WAVE_FORMAT_INTEL_G723_1","features":[417]},{"name":"WAVE_FORMAT_INTEL_G729","features":[417]},{"name":"WAVE_FORMAT_INTEL_MUSIC_CODER","features":[417]},{"name":"WAVE_FORMAT_IPI_HSX","features":[417]},{"name":"WAVE_FORMAT_IPI_RPELP","features":[417]},{"name":"WAVE_FORMAT_IRAT","features":[417]},{"name":"WAVE_FORMAT_ISIAUDIO","features":[417]},{"name":"WAVE_FORMAT_ISIAUDIO_2","features":[417]},{"name":"WAVE_FORMAT_KNOWLEDGE_ADVENTURE_ADPCM","features":[417]},{"name":"WAVE_FORMAT_LEAD_SPEECH","features":[417]},{"name":"WAVE_FORMAT_LEAD_VORBIS","features":[417]},{"name":"WAVE_FORMAT_LH_CODEC","features":[417]},{"name":"WAVE_FORMAT_LH_CODEC_CELP","features":[417]},{"name":"WAVE_FORMAT_LH_CODEC_SBC12","features":[417]},{"name":"WAVE_FORMAT_LH_CODEC_SBC16","features":[417]},{"name":"WAVE_FORMAT_LH_CODEC_SBC8","features":[417]},{"name":"WAVE_FORMAT_LIGHTWAVE_LOSSLESS","features":[417]},{"name":"WAVE_FORMAT_LRC","features":[417]},{"name":"WAVE_FORMAT_LUCENT_G723","features":[417]},{"name":"WAVE_FORMAT_LUCENT_SX5363S","features":[417]},{"name":"WAVE_FORMAT_LUCENT_SX8300P","features":[417]},{"name":"WAVE_FORMAT_MAKEAVIS","features":[417]},{"name":"WAVE_FORMAT_MALDEN_PHONYTALK","features":[417]},{"name":"WAVE_FORMAT_MEDIASONIC_G723","features":[417]},{"name":"WAVE_FORMAT_MEDIASPACE_ADPCM","features":[417]},{"name":"WAVE_FORMAT_MEDIAVISION_ADPCM","features":[417]},{"name":"WAVE_FORMAT_MICRONAS","features":[417]},{"name":"WAVE_FORMAT_MICRONAS_CELP833","features":[417]},{"name":"WAVE_FORMAT_MPEG","features":[417]},{"name":"WAVE_FORMAT_MPEG4_AAC","features":[417]},{"name":"WAVE_FORMAT_MPEGLAYER3","features":[417]},{"name":"WAVE_FORMAT_MPEG_ADTS_AAC","features":[417]},{"name":"WAVE_FORMAT_MPEG_HEAAC","features":[417]},{"name":"WAVE_FORMAT_MPEG_LOAS","features":[417]},{"name":"WAVE_FORMAT_MPEG_RAW_AAC","features":[417]},{"name":"WAVE_FORMAT_MSAUDIO1","features":[417]},{"name":"WAVE_FORMAT_MSG723","features":[417]},{"name":"WAVE_FORMAT_MSNAUDIO","features":[417]},{"name":"WAVE_FORMAT_MSRT24","features":[417]},{"name":"WAVE_FORMAT_MULAW","features":[417]},{"name":"WAVE_FORMAT_MULTITUDE_FT_SX20","features":[417]},{"name":"WAVE_FORMAT_MVI_MVI2","features":[417]},{"name":"WAVE_FORMAT_NEC_AAC","features":[417]},{"name":"WAVE_FORMAT_NICE_ACA","features":[417]},{"name":"WAVE_FORMAT_NICE_ADPCM","features":[417]},{"name":"WAVE_FORMAT_NICE_G728","features":[417]},{"name":"WAVE_FORMAT_NMS_VBXADPCM","features":[417]},{"name":"WAVE_FORMAT_NOKIA_ADAPTIVE_MULTIRATE","features":[417]},{"name":"WAVE_FORMAT_NOKIA_MPEG_ADTS_AAC","features":[417]},{"name":"WAVE_FORMAT_NOKIA_MPEG_RAW_AAC","features":[417]},{"name":"WAVE_FORMAT_NORCOM_VOICE_SYSTEMS_ADPCM","features":[417]},{"name":"WAVE_FORMAT_NORRIS","features":[417]},{"name":"WAVE_FORMAT_NTCSOFT_ALF2CM_ACM","features":[417]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1","features":[417]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1_PLUS","features":[417]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2","features":[417]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2_PLUS","features":[417]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3","features":[417]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3_PLUS","features":[417]},{"name":"WAVE_FORMAT_OKI_ADPCM","features":[417]},{"name":"WAVE_FORMAT_OLIADPCM","features":[417]},{"name":"WAVE_FORMAT_OLICELP","features":[417]},{"name":"WAVE_FORMAT_OLIGSM","features":[417]},{"name":"WAVE_FORMAT_OLIOPR","features":[417]},{"name":"WAVE_FORMAT_OLISBC","features":[417]},{"name":"WAVE_FORMAT_ON2_VP6_AUDIO","features":[417]},{"name":"WAVE_FORMAT_ON2_VP7_AUDIO","features":[417]},{"name":"WAVE_FORMAT_ONLIVE","features":[417]},{"name":"WAVE_FORMAT_OPUS","features":[417]},{"name":"WAVE_FORMAT_PAC","features":[417]},{"name":"WAVE_FORMAT_PACKED","features":[417]},{"name":"WAVE_FORMAT_PCM_S","features":[417]},{"name":"WAVE_FORMAT_PHILIPS_CELP","features":[417]},{"name":"WAVE_FORMAT_PHILIPS_GRUNDIG","features":[417]},{"name":"WAVE_FORMAT_PHILIPS_LPCBB","features":[417]},{"name":"WAVE_FORMAT_POLYCOM_G722","features":[417]},{"name":"WAVE_FORMAT_POLYCOM_G728","features":[417]},{"name":"WAVE_FORMAT_POLYCOM_G729_A","features":[417]},{"name":"WAVE_FORMAT_POLYCOM_SIREN","features":[417]},{"name":"WAVE_FORMAT_PROSODY_1612","features":[417]},{"name":"WAVE_FORMAT_PROSODY_8KBPS","features":[417]},{"name":"WAVE_FORMAT_QDESIGN_MUSIC","features":[417]},{"name":"WAVE_FORMAT_QUALCOMM_HALFRATE","features":[417]},{"name":"WAVE_FORMAT_QUALCOMM_PUREVOICE","features":[417]},{"name":"WAVE_FORMAT_QUARTERDECK","features":[417]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G720_A","features":[417]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G723_1","features":[417]},{"name":"WAVE_FORMAT_RACAL_RECORDER_GSM","features":[417]},{"name":"WAVE_FORMAT_RACAL_RECORDER_TETRA_ACELP","features":[417]},{"name":"WAVE_FORMAT_RADIOTIME_TIME_SHIFT_RADIO","features":[417]},{"name":"WAVE_FORMAT_RAW_AAC1","features":[417]},{"name":"WAVE_FORMAT_RAW_SPORT","features":[417]},{"name":"WAVE_FORMAT_RHETOREX_ADPCM","features":[417]},{"name":"WAVE_FORMAT_ROCKWELL_ADPCM","features":[417]},{"name":"WAVE_FORMAT_ROCKWELL_DIGITALK","features":[417]},{"name":"WAVE_FORMAT_RT24","features":[417]},{"name":"WAVE_FORMAT_SANYO_LD_ADPCM","features":[417]},{"name":"WAVE_FORMAT_SBC24","features":[417]},{"name":"WAVE_FORMAT_SHARP_G726","features":[417]},{"name":"WAVE_FORMAT_SIERRA_ADPCM","features":[417]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP4800","features":[417]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP8V3","features":[417]},{"name":"WAVE_FORMAT_SIPROLAB_ACEPLNET","features":[417]},{"name":"WAVE_FORMAT_SIPROLAB_G729","features":[417]},{"name":"WAVE_FORMAT_SIPROLAB_G729A","features":[417]},{"name":"WAVE_FORMAT_SIPROLAB_KELVIN","features":[417]},{"name":"WAVE_FORMAT_SOFTSOUND","features":[417]},{"name":"WAVE_FORMAT_SONARC","features":[417]},{"name":"WAVE_FORMAT_SONICFOUNDRY_LOSSLESS","features":[417]},{"name":"WAVE_FORMAT_SONY_ATRAC3","features":[417]},{"name":"WAVE_FORMAT_SONY_SCX","features":[417]},{"name":"WAVE_FORMAT_SONY_SCY","features":[417]},{"name":"WAVE_FORMAT_SONY_SPC","features":[417]},{"name":"WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS","features":[417]},{"name":"WAVE_FORMAT_SPEEX_VOICE","features":[417]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC008","features":[417]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP54","features":[417]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP68","features":[417]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_G726L","features":[417]},{"name":"WAVE_FORMAT_SYMBOL_G729_A","features":[417]},{"name":"WAVE_FORMAT_TELUM_AUDIO","features":[417]},{"name":"WAVE_FORMAT_TELUM_IA_AUDIO","features":[417]},{"name":"WAVE_FORMAT_TPC","features":[417]},{"name":"WAVE_FORMAT_TUBGSM","features":[417]},{"name":"WAVE_FORMAT_UHER_ADPCM","features":[417]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO","features":[417]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO_1","features":[417]},{"name":"WAVE_FORMAT_UNISYS_NAP_16K","features":[417]},{"name":"WAVE_FORMAT_UNISYS_NAP_ADPCM","features":[417]},{"name":"WAVE_FORMAT_UNISYS_NAP_ALAW","features":[417]},{"name":"WAVE_FORMAT_UNISYS_NAP_ULAW","features":[417]},{"name":"WAVE_FORMAT_UNKNOWN","features":[417]},{"name":"WAVE_FORMAT_VIANIX_MASC","features":[417]},{"name":"WAVE_FORMAT_VIVO_G723","features":[417]},{"name":"WAVE_FORMAT_VIVO_SIREN","features":[417]},{"name":"WAVE_FORMAT_VME_VMPCM","features":[417]},{"name":"WAVE_FORMAT_VOCORD_G721","features":[417]},{"name":"WAVE_FORMAT_VOCORD_G722_1","features":[417]},{"name":"WAVE_FORMAT_VOCORD_G723_1","features":[417]},{"name":"WAVE_FORMAT_VOCORD_G726","features":[417]},{"name":"WAVE_FORMAT_VOCORD_G728","features":[417]},{"name":"WAVE_FORMAT_VOCORD_G729","features":[417]},{"name":"WAVE_FORMAT_VOCORD_G729_A","features":[417]},{"name":"WAVE_FORMAT_VOCORD_LBC","features":[417]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_ADTS_AAC","features":[417]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_RAW_AAC","features":[417]},{"name":"WAVE_FORMAT_VOICEAGE_AMR","features":[417]},{"name":"WAVE_FORMAT_VOICEAGE_AMR_WB","features":[417]},{"name":"WAVE_FORMAT_VOXWARE","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_AC10","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_AC16","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_AC20","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_AC8","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_BYTE_ALIGNED","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_RT24","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_RT24_SPEECH","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_RT29","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_RT29HW","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_SC3","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_SC3_1","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_TQ40","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_TQ60","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_VR12","features":[417]},{"name":"WAVE_FORMAT_VOXWARE_VR18","features":[417]},{"name":"WAVE_FORMAT_VSELP","features":[417]},{"name":"WAVE_FORMAT_WAVPACK_AUDIO","features":[417]},{"name":"WAVE_FORMAT_WM9_SPECTRUM_ANALYZER","features":[417]},{"name":"WAVE_FORMAT_WMASPDIF","features":[417]},{"name":"WAVE_FORMAT_WMAUDIO2","features":[417]},{"name":"WAVE_FORMAT_WMAUDIO3","features":[417]},{"name":"WAVE_FORMAT_WMAUDIO_LOSSLESS","features":[417]},{"name":"WAVE_FORMAT_WMAVOICE10","features":[417]},{"name":"WAVE_FORMAT_WMAVOICE9","features":[417]},{"name":"WAVE_FORMAT_WMF_SPECTRUM_ANAYZER","features":[417]},{"name":"WAVE_FORMAT_XEBEC","features":[417]},{"name":"WAVE_FORMAT_YAMAHA_ADPCM","features":[417]},{"name":"WAVE_FORMAT_ZOLL_ASAO","features":[417]},{"name":"WAVE_FORMAT_ZYXEL_ADPCM","features":[417]},{"name":"WAVE_MAPPER_S","features":[417]},{"name":"WIDM_ADDBUFFER","features":[417]},{"name":"WIDM_CLOSE","features":[417]},{"name":"WIDM_GETDEVCAPS","features":[417]},{"name":"WIDM_GETNUMDEVS","features":[417]},{"name":"WIDM_GETPOS","features":[417]},{"name":"WIDM_INIT","features":[417]},{"name":"WIDM_INIT_EX","features":[417]},{"name":"WIDM_OPEN","features":[417]},{"name":"WIDM_PREFERRED","features":[417]},{"name":"WIDM_PREPARE","features":[417]},{"name":"WIDM_RESET","features":[417]},{"name":"WIDM_START","features":[417]},{"name":"WIDM_STOP","features":[417]},{"name":"WIDM_UNPREPARE","features":[417]},{"name":"WMAUDIO2WAVEFORMAT","features":[418,417]},{"name":"WMAUDIO2_BITS_PER_SAMPLE","features":[417]},{"name":"WMAUDIO2_MAX_CHANNELS","features":[417]},{"name":"WMAUDIO3WAVEFORMAT","features":[418,417]},{"name":"WMAUDIO_BITS_PER_SAMPLE","features":[417]},{"name":"WMAUDIO_MAX_CHANNELS","features":[417]},{"name":"WM_CAP_ABORT","features":[417]},{"name":"WM_CAP_DLG_VIDEOCOMPRESSION","features":[417]},{"name":"WM_CAP_DLG_VIDEODISPLAY","features":[417]},{"name":"WM_CAP_DLG_VIDEOFORMAT","features":[417]},{"name":"WM_CAP_DLG_VIDEOSOURCE","features":[417]},{"name":"WM_CAP_DRIVER_CONNECT","features":[417]},{"name":"WM_CAP_DRIVER_DISCONNECT","features":[417]},{"name":"WM_CAP_DRIVER_GET_CAPS","features":[417]},{"name":"WM_CAP_DRIVER_GET_NAME","features":[417]},{"name":"WM_CAP_DRIVER_GET_NAMEA","features":[417]},{"name":"WM_CAP_DRIVER_GET_NAMEW","features":[417]},{"name":"WM_CAP_DRIVER_GET_VERSION","features":[417]},{"name":"WM_CAP_DRIVER_GET_VERSIONA","features":[417]},{"name":"WM_CAP_DRIVER_GET_VERSIONW","features":[417]},{"name":"WM_CAP_EDIT_COPY","features":[417]},{"name":"WM_CAP_END","features":[417]},{"name":"WM_CAP_FILE_ALLOCATE","features":[417]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILE","features":[417]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEA","features":[417]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEW","features":[417]},{"name":"WM_CAP_FILE_SAVEAS","features":[417]},{"name":"WM_CAP_FILE_SAVEASA","features":[417]},{"name":"WM_CAP_FILE_SAVEASW","features":[417]},{"name":"WM_CAP_FILE_SAVEDIB","features":[417]},{"name":"WM_CAP_FILE_SAVEDIBA","features":[417]},{"name":"WM_CAP_FILE_SAVEDIBW","features":[417]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILE","features":[417]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEA","features":[417]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEW","features":[417]},{"name":"WM_CAP_FILE_SET_INFOCHUNK","features":[417]},{"name":"WM_CAP_GET_AUDIOFORMAT","features":[417]},{"name":"WM_CAP_GET_CAPSTREAMPTR","features":[417]},{"name":"WM_CAP_GET_MCI_DEVICE","features":[417]},{"name":"WM_CAP_GET_MCI_DEVICEA","features":[417]},{"name":"WM_CAP_GET_MCI_DEVICEW","features":[417]},{"name":"WM_CAP_GET_SEQUENCE_SETUP","features":[417]},{"name":"WM_CAP_GET_STATUS","features":[417]},{"name":"WM_CAP_GET_USER_DATA","features":[417]},{"name":"WM_CAP_GET_VIDEOFORMAT","features":[417]},{"name":"WM_CAP_GRAB_FRAME","features":[417]},{"name":"WM_CAP_GRAB_FRAME_NOSTOP","features":[417]},{"name":"WM_CAP_PAL_AUTOCREATE","features":[417]},{"name":"WM_CAP_PAL_MANUALCREATE","features":[417]},{"name":"WM_CAP_PAL_OPEN","features":[417]},{"name":"WM_CAP_PAL_OPENA","features":[417]},{"name":"WM_CAP_PAL_OPENW","features":[417]},{"name":"WM_CAP_PAL_PASTE","features":[417]},{"name":"WM_CAP_PAL_SAVE","features":[417]},{"name":"WM_CAP_PAL_SAVEA","features":[417]},{"name":"WM_CAP_PAL_SAVEW","features":[417]},{"name":"WM_CAP_SEQUENCE","features":[417]},{"name":"WM_CAP_SEQUENCE_NOFILE","features":[417]},{"name":"WM_CAP_SET_AUDIOFORMAT","features":[417]},{"name":"WM_CAP_SET_CALLBACK_CAPCONTROL","features":[417]},{"name":"WM_CAP_SET_CALLBACK_ERROR","features":[417]},{"name":"WM_CAP_SET_CALLBACK_ERRORA","features":[417]},{"name":"WM_CAP_SET_CALLBACK_ERRORW","features":[417]},{"name":"WM_CAP_SET_CALLBACK_FRAME","features":[417]},{"name":"WM_CAP_SET_CALLBACK_STATUS","features":[417]},{"name":"WM_CAP_SET_CALLBACK_STATUSA","features":[417]},{"name":"WM_CAP_SET_CALLBACK_STATUSW","features":[417]},{"name":"WM_CAP_SET_CALLBACK_VIDEOSTREAM","features":[417]},{"name":"WM_CAP_SET_CALLBACK_WAVESTREAM","features":[417]},{"name":"WM_CAP_SET_CALLBACK_YIELD","features":[417]},{"name":"WM_CAP_SET_MCI_DEVICE","features":[417]},{"name":"WM_CAP_SET_MCI_DEVICEA","features":[417]},{"name":"WM_CAP_SET_MCI_DEVICEW","features":[417]},{"name":"WM_CAP_SET_OVERLAY","features":[417]},{"name":"WM_CAP_SET_PREVIEW","features":[417]},{"name":"WM_CAP_SET_PREVIEWRATE","features":[417]},{"name":"WM_CAP_SET_SCALE","features":[417]},{"name":"WM_CAP_SET_SCROLL","features":[417]},{"name":"WM_CAP_SET_SEQUENCE_SETUP","features":[417]},{"name":"WM_CAP_SET_USER_DATA","features":[417]},{"name":"WM_CAP_SET_VIDEOFORMAT","features":[417]},{"name":"WM_CAP_SINGLE_FRAME","features":[417]},{"name":"WM_CAP_SINGLE_FRAME_CLOSE","features":[417]},{"name":"WM_CAP_SINGLE_FRAME_OPEN","features":[417]},{"name":"WM_CAP_START","features":[417]},{"name":"WM_CAP_STOP","features":[417]},{"name":"WM_CAP_UNICODE_END","features":[417]},{"name":"WM_CAP_UNICODE_START","features":[417]},{"name":"WODM_BREAKLOOP","features":[417]},{"name":"WODM_BUSY","features":[417]},{"name":"WODM_CLOSE","features":[417]},{"name":"WODM_GETDEVCAPS","features":[417]},{"name":"WODM_GETNUMDEVS","features":[417]},{"name":"WODM_GETPITCH","features":[417]},{"name":"WODM_GETPLAYBACKRATE","features":[417]},{"name":"WODM_GETPOS","features":[417]},{"name":"WODM_GETVOLUME","features":[417]},{"name":"WODM_INIT","features":[417]},{"name":"WODM_INIT_EX","features":[417]},{"name":"WODM_OPEN","features":[417]},{"name":"WODM_PAUSE","features":[417]},{"name":"WODM_PREFERRED","features":[417]},{"name":"WODM_PREPARE","features":[417]},{"name":"WODM_RESET","features":[417]},{"name":"WODM_RESTART","features":[417]},{"name":"WODM_SETPITCH","features":[417]},{"name":"WODM_SETPLAYBACKRATE","features":[417]},{"name":"WODM_SETVOLUME","features":[417]},{"name":"WODM_UNPREPARE","features":[417]},{"name":"WODM_WRITE","features":[417]},{"name":"YAMAHA_ADPCMWAVEFORMAT","features":[418,417]},{"name":"YIELDPROC","features":[417]},{"name":"capCreateCaptureWindowA","features":[303,417]},{"name":"capCreateCaptureWindowW","features":[303,417]},{"name":"capGetDriverDescriptionA","features":[303,417]},{"name":"capGetDriverDescriptionW","features":[303,417]},{"name":"joyGetDevCapsA","features":[417]},{"name":"joyGetDevCapsW","features":[417]},{"name":"joyGetNumDevs","features":[417]},{"name":"joyGetPos","features":[417]},{"name":"joyGetPosEx","features":[417]},{"name":"joyGetThreshold","features":[417]},{"name":"joyReleaseCapture","features":[417]},{"name":"joySetCapture","features":[303,417]},{"name":"joySetThreshold","features":[417]},{"name":"mciDriverNotify","features":[303,417]},{"name":"mciDriverYield","features":[417]},{"name":"mciFreeCommandResource","features":[303,417]},{"name":"mciGetCreatorTask","features":[417]},{"name":"mciGetDeviceIDA","features":[417]},{"name":"mciGetDeviceIDFromElementIDA","features":[417]},{"name":"mciGetDeviceIDFromElementIDW","features":[417]},{"name":"mciGetDeviceIDW","features":[417]},{"name":"mciGetDriverData","features":[417]},{"name":"mciGetErrorStringA","features":[303,417]},{"name":"mciGetErrorStringW","features":[303,417]},{"name":"mciGetYieldProc","features":[417]},{"name":"mciLoadCommandResource","features":[303,417]},{"name":"mciSendCommandA","features":[417]},{"name":"mciSendCommandW","features":[417]},{"name":"mciSendStringA","features":[303,417]},{"name":"mciSendStringW","features":[303,417]},{"name":"mciSetDriverData","features":[303,417]},{"name":"mciSetYieldProc","features":[303,417]},{"name":"mmDrvInstall","features":[417]},{"name":"mmGetCurrentTask","features":[417]},{"name":"mmTaskBlock","features":[417]},{"name":"mmTaskCreate","features":[303,417]},{"name":"mmTaskSignal","features":[303,417]},{"name":"mmTaskYield","features":[417]},{"name":"mmioAdvance","features":[303,417]},{"name":"mmioAscend","features":[417]},{"name":"mmioClose","features":[417]},{"name":"mmioCreateChunk","features":[417]},{"name":"mmioDescend","features":[417]},{"name":"mmioFlush","features":[417]},{"name":"mmioGetInfo","features":[303,417]},{"name":"mmioInstallIOProcA","features":[303,417]},{"name":"mmioInstallIOProcW","features":[303,417]},{"name":"mmioOpenA","features":[303,417]},{"name":"mmioOpenW","features":[303,417]},{"name":"mmioRead","features":[417]},{"name":"mmioRenameA","features":[303,417]},{"name":"mmioRenameW","features":[303,417]},{"name":"mmioSeek","features":[417]},{"name":"mmioSendMessage","features":[303,417]},{"name":"mmioSetBuffer","features":[417]},{"name":"mmioSetInfo","features":[303,417]},{"name":"mmioStringToFOURCCA","features":[417]},{"name":"mmioStringToFOURCCW","features":[417]},{"name":"mmioWrite","features":[417]},{"name":"s_RIFFWAVE_inst","features":[417]},{"name":"sndOpenSound","features":[303,417]}],"439":[{"name":"DEVICE_SELECTION_DEVICE_TYPE","features":[435]},{"name":"DSF_ALL_DEVICES","features":[435]},{"name":"DSF_CPL_MODE","features":[435]},{"name":"DSF_DV_DEVICES","features":[435]},{"name":"DSF_FS_DEVICES","features":[435]},{"name":"DSF_SHOW_OFFLINE","features":[435]},{"name":"DSF_STI_DEVICES","features":[435]},{"name":"DSF_TWAIN_DEVICE","features":[435]},{"name":"DSF_TWAIN_DEVICES","features":[435]},{"name":"DSF_WIA_CAMERAS","features":[435]},{"name":"DSF_WIA_SCANNERS","features":[435]},{"name":"DSF_WPD_DEVICES","features":[435]},{"name":"DST_DV_DEVICE","features":[435]},{"name":"DST_FS_DEVICE","features":[435]},{"name":"DST_STI_DEVICE","features":[435]},{"name":"DST_UNKNOWN_DEVICE","features":[435]},{"name":"DST_WIA_DEVICE","features":[435]},{"name":"DST_WPD_DEVICE","features":[435]},{"name":"ERROR_ADVISE_MESSAGE_TYPE","features":[435]},{"name":"ERROR_ADVISE_RESULT","features":[435]},{"name":"IPhotoAcquire","features":[435]},{"name":"IPhotoAcquireDeviceSelectionDialog","features":[435]},{"name":"IPhotoAcquireItem","features":[435]},{"name":"IPhotoAcquireOptionsDialog","features":[435]},{"name":"IPhotoAcquirePlugin","features":[435]},{"name":"IPhotoAcquireProgressCB","features":[435]},{"name":"IPhotoAcquireSettings","features":[435]},{"name":"IPhotoAcquireSource","features":[435]},{"name":"IPhotoProgressActionCB","features":[435]},{"name":"IPhotoProgressDialog","features":[435]},{"name":"IUserInputString","features":[435]},{"name":"PAPS_CLEANUP","features":[435]},{"name":"PAPS_POSTSAVE","features":[435]},{"name":"PAPS_PRESAVE","features":[435]},{"name":"PHOTOACQUIRE_ERROR_OK","features":[435]},{"name":"PHOTOACQUIRE_ERROR_RETRYCANCEL","features":[435]},{"name":"PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL","features":[435]},{"name":"PHOTOACQUIRE_ERROR_YESNO","features":[435]},{"name":"PHOTOACQUIRE_RESULT_ABORT","features":[435]},{"name":"PHOTOACQUIRE_RESULT_NO","features":[435]},{"name":"PHOTOACQUIRE_RESULT_OK","features":[435]},{"name":"PHOTOACQUIRE_RESULT_RETRY","features":[435]},{"name":"PHOTOACQUIRE_RESULT_SKIP","features":[435]},{"name":"PHOTOACQUIRE_RESULT_SKIP_ALL","features":[435]},{"name":"PHOTOACQUIRE_RESULT_YES","features":[435]},{"name":"PHOTOACQ_ABORT_ON_SETTINGS_UPDATE","features":[435]},{"name":"PHOTOACQ_DELETE_AFTER_ACQUIRE","features":[435]},{"name":"PHOTOACQ_DISABLE_AUTO_ROTATE","features":[435]},{"name":"PHOTOACQ_DISABLE_DB_INTEGRATION","features":[435]},{"name":"PHOTOACQ_DISABLE_DUPLICATE_DETECTION","features":[435]},{"name":"PHOTOACQ_DISABLE_GROUP_TAG_PROMPT","features":[435]},{"name":"PHOTOACQ_DISABLE_METADATA_WRITE","features":[435]},{"name":"PHOTOACQ_DISABLE_PLUGINS","features":[435]},{"name":"PHOTOACQ_DISABLE_SETTINGS_LINK","features":[435]},{"name":"PHOTOACQ_DISABLE_THUMBNAIL_PROGRESS","features":[435]},{"name":"PHOTOACQ_ENABLE_THUMBNAIL_CACHING","features":[435]},{"name":"PHOTOACQ_ERROR_RESTART_REQUIRED","features":[435]},{"name":"PHOTOACQ_IMPORT_VIDEO_AS_MULTIPLE_FILES","features":[435]},{"name":"PHOTOACQ_NO_GALLERY_LAUNCH","features":[435]},{"name":"PHOTOACQ_RUN_DEFAULT","features":[435]},{"name":"PKEY_PhotoAcquire_CameraSequenceNumber","features":[435,374]},{"name":"PKEY_PhotoAcquire_DuplicateDetectionID","features":[435,374]},{"name":"PKEY_PhotoAcquire_FinalFilename","features":[435,374]},{"name":"PKEY_PhotoAcquire_GroupTag","features":[435,374]},{"name":"PKEY_PhotoAcquire_IntermediateFile","features":[435,374]},{"name":"PKEY_PhotoAcquire_OriginalFilename","features":[435,374]},{"name":"PKEY_PhotoAcquire_RelativePathname","features":[435,374]},{"name":"PKEY_PhotoAcquire_SkipImport","features":[435,374]},{"name":"PKEY_PhotoAcquire_TransferResult","features":[435,374]},{"name":"PROGRESS_DIALOG_BITMAP_THUMBNAIL","features":[435]},{"name":"PROGRESS_DIALOG_CHECKBOX_ID","features":[435]},{"name":"PROGRESS_DIALOG_CHECKBOX_ID_DEFAULT","features":[435]},{"name":"PROGRESS_DIALOG_ICON_LARGE","features":[435]},{"name":"PROGRESS_DIALOG_ICON_SMALL","features":[435]},{"name":"PROGRESS_DIALOG_ICON_THUMBNAIL","features":[435]},{"name":"PROGRESS_DIALOG_IMAGE_TYPE","features":[435]},{"name":"PROGRESS_INDETERMINATE","features":[435]},{"name":"PhotoAcquire","features":[435]},{"name":"PhotoAcquireAutoPlayDropTarget","features":[435]},{"name":"PhotoAcquireAutoPlayHWEventHandler","features":[435]},{"name":"PhotoAcquireDeviceSelectionDialog","features":[435]},{"name":"PhotoAcquireOptionsDialog","features":[435]},{"name":"PhotoProgressDialog","features":[435]},{"name":"USER_INPUT_DEFAULT","features":[435]},{"name":"USER_INPUT_PATH_ELEMENT","features":[435]},{"name":"USER_INPUT_STRING_TYPE","features":[435]}],"440":[{"name":"AllWords","features":[436]},{"name":"DEFAULT_WEIGHT","features":[436]},{"name":"DISPIDSPRG","features":[436]},{"name":"DISPIDSPTSI","features":[436]},{"name":"DISPIDSPTSI_ActiveLength","features":[436]},{"name":"DISPIDSPTSI_ActiveOffset","features":[436]},{"name":"DISPIDSPTSI_SelectionLength","features":[436]},{"name":"DISPIDSPTSI_SelectionOffset","features":[436]},{"name":"DISPID_SABIBufferSize","features":[436]},{"name":"DISPID_SABIEventBias","features":[436]},{"name":"DISPID_SABIMinNotification","features":[436]},{"name":"DISPID_SABufferInfo","features":[436]},{"name":"DISPID_SABufferNotifySize","features":[436]},{"name":"DISPID_SADefaultFormat","features":[436]},{"name":"DISPID_SAEventHandle","features":[436]},{"name":"DISPID_SAFGetWaveFormatEx","features":[436]},{"name":"DISPID_SAFGuid","features":[436]},{"name":"DISPID_SAFSetWaveFormatEx","features":[436]},{"name":"DISPID_SAFType","features":[436]},{"name":"DISPID_SASCurrentDevicePosition","features":[436]},{"name":"DISPID_SASCurrentSeekPosition","features":[436]},{"name":"DISPID_SASFreeBufferSpace","features":[436]},{"name":"DISPID_SASNonBlockingIO","features":[436]},{"name":"DISPID_SASState","features":[436]},{"name":"DISPID_SASetState","features":[436]},{"name":"DISPID_SAStatus","features":[436]},{"name":"DISPID_SAVolume","features":[436]},{"name":"DISPID_SBSFormat","features":[436]},{"name":"DISPID_SBSRead","features":[436]},{"name":"DISPID_SBSSeek","features":[436]},{"name":"DISPID_SBSWrite","features":[436]},{"name":"DISPID_SCSBaseStream","features":[436]},{"name":"DISPID_SDKCreateKey","features":[436]},{"name":"DISPID_SDKDeleteKey","features":[436]},{"name":"DISPID_SDKDeleteValue","features":[436]},{"name":"DISPID_SDKEnumKeys","features":[436]},{"name":"DISPID_SDKEnumValues","features":[436]},{"name":"DISPID_SDKGetBinaryValue","features":[436]},{"name":"DISPID_SDKGetStringValue","features":[436]},{"name":"DISPID_SDKGetlongValue","features":[436]},{"name":"DISPID_SDKOpenKey","features":[436]},{"name":"DISPID_SDKSetBinaryValue","features":[436]},{"name":"DISPID_SDKSetLongValue","features":[436]},{"name":"DISPID_SDKSetStringValue","features":[436]},{"name":"DISPID_SFSClose","features":[436]},{"name":"DISPID_SFSOpen","features":[436]},{"name":"DISPID_SGRAddResource","features":[436]},{"name":"DISPID_SGRAddState","features":[436]},{"name":"DISPID_SGRAttributes","features":[436]},{"name":"DISPID_SGRClear","features":[436]},{"name":"DISPID_SGRId","features":[436]},{"name":"DISPID_SGRInitialState","features":[436]},{"name":"DISPID_SGRName","features":[436]},{"name":"DISPID_SGRSAddRuleTransition","features":[436]},{"name":"DISPID_SGRSAddSpecialTransition","features":[436]},{"name":"DISPID_SGRSAddWordTransition","features":[436]},{"name":"DISPID_SGRSRule","features":[436]},{"name":"DISPID_SGRSTNextState","features":[436]},{"name":"DISPID_SGRSTPropertyId","features":[436]},{"name":"DISPID_SGRSTPropertyName","features":[436]},{"name":"DISPID_SGRSTPropertyValue","features":[436]},{"name":"DISPID_SGRSTRule","features":[436]},{"name":"DISPID_SGRSTText","features":[436]},{"name":"DISPID_SGRSTType","features":[436]},{"name":"DISPID_SGRSTWeight","features":[436]},{"name":"DISPID_SGRSTransitions","features":[436]},{"name":"DISPID_SGRSTsCount","features":[436]},{"name":"DISPID_SGRSTsItem","features":[436]},{"name":"DISPID_SGRSTs_NewEnum","features":[436]},{"name":"DISPID_SGRsAdd","features":[436]},{"name":"DISPID_SGRsCommit","features":[436]},{"name":"DISPID_SGRsCommitAndSave","features":[436]},{"name":"DISPID_SGRsCount","features":[436]},{"name":"DISPID_SGRsDynamic","features":[436]},{"name":"DISPID_SGRsFindRule","features":[436]},{"name":"DISPID_SGRsItem","features":[436]},{"name":"DISPID_SGRs_NewEnum","features":[436]},{"name":"DISPID_SLAddPronunciation","features":[436]},{"name":"DISPID_SLAddPronunciationByPhoneIds","features":[436]},{"name":"DISPID_SLGenerationId","features":[436]},{"name":"DISPID_SLGetGenerationChange","features":[436]},{"name":"DISPID_SLGetPronunciations","features":[436]},{"name":"DISPID_SLGetWords","features":[436]},{"name":"DISPID_SLPLangId","features":[436]},{"name":"DISPID_SLPPartOfSpeech","features":[436]},{"name":"DISPID_SLPPhoneIds","features":[436]},{"name":"DISPID_SLPSymbolic","features":[436]},{"name":"DISPID_SLPType","features":[436]},{"name":"DISPID_SLPsCount","features":[436]},{"name":"DISPID_SLPsItem","features":[436]},{"name":"DISPID_SLPs_NewEnum","features":[436]},{"name":"DISPID_SLRemovePronunciation","features":[436]},{"name":"DISPID_SLRemovePronunciationByPhoneIds","features":[436]},{"name":"DISPID_SLWLangId","features":[436]},{"name":"DISPID_SLWPronunciations","features":[436]},{"name":"DISPID_SLWType","features":[436]},{"name":"DISPID_SLWWord","features":[436]},{"name":"DISPID_SLWsCount","features":[436]},{"name":"DISPID_SLWsItem","features":[436]},{"name":"DISPID_SLWs_NewEnum","features":[436]},{"name":"DISPID_SMSADeviceId","features":[436]},{"name":"DISPID_SMSALineId","features":[436]},{"name":"DISPID_SMSAMMHandle","features":[436]},{"name":"DISPID_SMSGetData","features":[436]},{"name":"DISPID_SMSSetData","features":[436]},{"name":"DISPID_SOTCDefault","features":[436]},{"name":"DISPID_SOTCEnumerateTokens","features":[436]},{"name":"DISPID_SOTCGetDataKey","features":[436]},{"name":"DISPID_SOTCId","features":[436]},{"name":"DISPID_SOTCSetId","features":[436]},{"name":"DISPID_SOTCategory","features":[436]},{"name":"DISPID_SOTCreateInstance","features":[436]},{"name":"DISPID_SOTDataKey","features":[436]},{"name":"DISPID_SOTDisplayUI","features":[436]},{"name":"DISPID_SOTGetAttribute","features":[436]},{"name":"DISPID_SOTGetDescription","features":[436]},{"name":"DISPID_SOTGetStorageFileName","features":[436]},{"name":"DISPID_SOTId","features":[436]},{"name":"DISPID_SOTIsUISupported","features":[436]},{"name":"DISPID_SOTMatchesAttributes","features":[436]},{"name":"DISPID_SOTRemove","features":[436]},{"name":"DISPID_SOTRemoveStorageFileName","features":[436]},{"name":"DISPID_SOTSetId","features":[436]},{"name":"DISPID_SOTsCount","features":[436]},{"name":"DISPID_SOTsItem","features":[436]},{"name":"DISPID_SOTs_NewEnum","features":[436]},{"name":"DISPID_SPACommit","features":[436]},{"name":"DISPID_SPANumberOfElementsInResult","features":[436]},{"name":"DISPID_SPAPhraseInfo","features":[436]},{"name":"DISPID_SPARecoResult","features":[436]},{"name":"DISPID_SPAStartElementInResult","features":[436]},{"name":"DISPID_SPAsCount","features":[436]},{"name":"DISPID_SPAsItem","features":[436]},{"name":"DISPID_SPAs_NewEnum","features":[436]},{"name":"DISPID_SPCIdToPhone","features":[436]},{"name":"DISPID_SPCLangId","features":[436]},{"name":"DISPID_SPCPhoneToId","features":[436]},{"name":"DISPID_SPEActualConfidence","features":[436]},{"name":"DISPID_SPEAudioSizeBytes","features":[436]},{"name":"DISPID_SPEAudioSizeTime","features":[436]},{"name":"DISPID_SPEAudioStreamOffset","features":[436]},{"name":"DISPID_SPEAudioTimeOffset","features":[436]},{"name":"DISPID_SPEDisplayAttributes","features":[436]},{"name":"DISPID_SPEDisplayText","features":[436]},{"name":"DISPID_SPEEngineConfidence","features":[436]},{"name":"DISPID_SPELexicalForm","features":[436]},{"name":"DISPID_SPEPronunciation","features":[436]},{"name":"DISPID_SPERequiredConfidence","features":[436]},{"name":"DISPID_SPERetainedSizeBytes","features":[436]},{"name":"DISPID_SPERetainedStreamOffset","features":[436]},{"name":"DISPID_SPEsCount","features":[436]},{"name":"DISPID_SPEsItem","features":[436]},{"name":"DISPID_SPEs_NewEnum","features":[436]},{"name":"DISPID_SPIAudioSizeBytes","features":[436]},{"name":"DISPID_SPIAudioSizeTime","features":[436]},{"name":"DISPID_SPIAudioStreamPosition","features":[436]},{"name":"DISPID_SPIElements","features":[436]},{"name":"DISPID_SPIEngineId","features":[436]},{"name":"DISPID_SPIEnginePrivateData","features":[436]},{"name":"DISPID_SPIGetDisplayAttributes","features":[436]},{"name":"DISPID_SPIGetText","features":[436]},{"name":"DISPID_SPIGrammarId","features":[436]},{"name":"DISPID_SPILanguageId","features":[436]},{"name":"DISPID_SPIProperties","features":[436]},{"name":"DISPID_SPIReplacements","features":[436]},{"name":"DISPID_SPIRetainedSizeBytes","features":[436]},{"name":"DISPID_SPIRule","features":[436]},{"name":"DISPID_SPISaveToMemory","features":[436]},{"name":"DISPID_SPIStartTime","features":[436]},{"name":"DISPID_SPPBRestorePhraseFromMemory","features":[436]},{"name":"DISPID_SPPChildren","features":[436]},{"name":"DISPID_SPPConfidence","features":[436]},{"name":"DISPID_SPPEngineConfidence","features":[436]},{"name":"DISPID_SPPFirstElement","features":[436]},{"name":"DISPID_SPPId","features":[436]},{"name":"DISPID_SPPName","features":[436]},{"name":"DISPID_SPPNumberOfElements","features":[436]},{"name":"DISPID_SPPParent","features":[436]},{"name":"DISPID_SPPValue","features":[436]},{"name":"DISPID_SPPsCount","features":[436]},{"name":"DISPID_SPPsItem","features":[436]},{"name":"DISPID_SPPs_NewEnum","features":[436]},{"name":"DISPID_SPRDisplayAttributes","features":[436]},{"name":"DISPID_SPRFirstElement","features":[436]},{"name":"DISPID_SPRNumberOfElements","features":[436]},{"name":"DISPID_SPRText","features":[436]},{"name":"DISPID_SPRsCount","features":[436]},{"name":"DISPID_SPRsItem","features":[436]},{"name":"DISPID_SPRs_NewEnum","features":[436]},{"name":"DISPID_SPRuleChildren","features":[436]},{"name":"DISPID_SPRuleConfidence","features":[436]},{"name":"DISPID_SPRuleEngineConfidence","features":[436]},{"name":"DISPID_SPRuleFirstElement","features":[436]},{"name":"DISPID_SPRuleId","features":[436]},{"name":"DISPID_SPRuleName","features":[436]},{"name":"DISPID_SPRuleNumberOfElements","features":[436]},{"name":"DISPID_SPRuleParent","features":[436]},{"name":"DISPID_SPRulesCount","features":[436]},{"name":"DISPID_SPRulesItem","features":[436]},{"name":"DISPID_SPRules_NewEnum","features":[436]},{"name":"DISPID_SRAllowAudioInputFormatChangesOnNextSet","features":[436]},{"name":"DISPID_SRAllowVoiceFormatMatchingOnNextSet","features":[436]},{"name":"DISPID_SRAudioInput","features":[436]},{"name":"DISPID_SRAudioInputStream","features":[436]},{"name":"DISPID_SRCAudioInInterferenceStatus","features":[436]},{"name":"DISPID_SRCBookmark","features":[436]},{"name":"DISPID_SRCCmdMaxAlternates","features":[436]},{"name":"DISPID_SRCCreateGrammar","features":[436]},{"name":"DISPID_SRCCreateResultFromMemory","features":[436]},{"name":"DISPID_SRCEAdaptation","features":[436]},{"name":"DISPID_SRCEAudioLevel","features":[436]},{"name":"DISPID_SRCEBookmark","features":[436]},{"name":"DISPID_SRCEEndStream","features":[436]},{"name":"DISPID_SRCEEnginePrivate","features":[436]},{"name":"DISPID_SRCEFalseRecognition","features":[436]},{"name":"DISPID_SRCEHypothesis","features":[436]},{"name":"DISPID_SRCEInterference","features":[436]},{"name":"DISPID_SRCEPhraseStart","features":[436]},{"name":"DISPID_SRCEPropertyNumberChange","features":[436]},{"name":"DISPID_SRCEPropertyStringChange","features":[436]},{"name":"DISPID_SRCERecognition","features":[436]},{"name":"DISPID_SRCERecognitionForOtherContext","features":[436]},{"name":"DISPID_SRCERecognizerStateChange","features":[436]},{"name":"DISPID_SRCERequestUI","features":[436]},{"name":"DISPID_SRCESoundEnd","features":[436]},{"name":"DISPID_SRCESoundStart","features":[436]},{"name":"DISPID_SRCEStartStream","features":[436]},{"name":"DISPID_SRCEventInterests","features":[436]},{"name":"DISPID_SRCPause","features":[436]},{"name":"DISPID_SRCRecognizer","features":[436]},{"name":"DISPID_SRCRequestedUIType","features":[436]},{"name":"DISPID_SRCResume","features":[436]},{"name":"DISPID_SRCRetainedAudio","features":[436]},{"name":"DISPID_SRCRetainedAudioFormat","features":[436]},{"name":"DISPID_SRCSetAdaptationData","features":[436]},{"name":"DISPID_SRCState","features":[436]},{"name":"DISPID_SRCVoice","features":[436]},{"name":"DISPID_SRCVoicePurgeEvent","features":[436]},{"name":"DISPID_SRCreateRecoContext","features":[436]},{"name":"DISPID_SRDisplayUI","features":[436]},{"name":"DISPID_SREmulateRecognition","features":[436]},{"name":"DISPID_SRGCmdLoadFromFile","features":[436]},{"name":"DISPID_SRGCmdLoadFromMemory","features":[436]},{"name":"DISPID_SRGCmdLoadFromObject","features":[436]},{"name":"DISPID_SRGCmdLoadFromProprietaryGrammar","features":[436]},{"name":"DISPID_SRGCmdLoadFromResource","features":[436]},{"name":"DISPID_SRGCmdSetRuleIdState","features":[436]},{"name":"DISPID_SRGCmdSetRuleState","features":[436]},{"name":"DISPID_SRGCommit","features":[436]},{"name":"DISPID_SRGDictationLoad","features":[436]},{"name":"DISPID_SRGDictationSetState","features":[436]},{"name":"DISPID_SRGDictationUnload","features":[436]},{"name":"DISPID_SRGId","features":[436]},{"name":"DISPID_SRGIsPronounceable","features":[436]},{"name":"DISPID_SRGRecoContext","features":[436]},{"name":"DISPID_SRGReset","features":[436]},{"name":"DISPID_SRGRules","features":[436]},{"name":"DISPID_SRGSetTextSelection","features":[436]},{"name":"DISPID_SRGSetWordSequenceData","features":[436]},{"name":"DISPID_SRGState","features":[436]},{"name":"DISPID_SRGetFormat","features":[436]},{"name":"DISPID_SRGetPropertyNumber","features":[436]},{"name":"DISPID_SRGetPropertyString","features":[436]},{"name":"DISPID_SRGetRecognizers","features":[436]},{"name":"DISPID_SRIsShared","features":[436]},{"name":"DISPID_SRIsUISupported","features":[436]},{"name":"DISPID_SRProfile","features":[436]},{"name":"DISPID_SRRAlternates","features":[436]},{"name":"DISPID_SRRAudio","features":[436]},{"name":"DISPID_SRRAudioFormat","features":[436]},{"name":"DISPID_SRRDiscardResultInfo","features":[436]},{"name":"DISPID_SRRGetXMLErrorInfo","features":[436]},{"name":"DISPID_SRRGetXMLResult","features":[436]},{"name":"DISPID_SRRPhraseInfo","features":[436]},{"name":"DISPID_SRRRecoContext","features":[436]},{"name":"DISPID_SRRSaveToMemory","features":[436]},{"name":"DISPID_SRRSetTextFeedback","features":[436]},{"name":"DISPID_SRRSpeakAudio","features":[436]},{"name":"DISPID_SRRTLength","features":[436]},{"name":"DISPID_SRRTOffsetFromStart","features":[436]},{"name":"DISPID_SRRTStreamTime","features":[436]},{"name":"DISPID_SRRTTickCount","features":[436]},{"name":"DISPID_SRRTimes","features":[436]},{"name":"DISPID_SRRecognizer","features":[436]},{"name":"DISPID_SRSAudioStatus","features":[436]},{"name":"DISPID_SRSClsidEngine","features":[436]},{"name":"DISPID_SRSCurrentStreamNumber","features":[436]},{"name":"DISPID_SRSCurrentStreamPosition","features":[436]},{"name":"DISPID_SRSNumberOfActiveRules","features":[436]},{"name":"DISPID_SRSSupportedLanguages","features":[436]},{"name":"DISPID_SRSetPropertyNumber","features":[436]},{"name":"DISPID_SRSetPropertyString","features":[436]},{"name":"DISPID_SRState","features":[436]},{"name":"DISPID_SRStatus","features":[436]},{"name":"DISPID_SVAlertBoundary","features":[436]},{"name":"DISPID_SVAllowAudioOuputFormatChangesOnNextSet","features":[436]},{"name":"DISPID_SVAudioOutput","features":[436]},{"name":"DISPID_SVAudioOutputStream","features":[436]},{"name":"DISPID_SVDisplayUI","features":[436]},{"name":"DISPID_SVEAudioLevel","features":[436]},{"name":"DISPID_SVEBookmark","features":[436]},{"name":"DISPID_SVEEnginePrivate","features":[436]},{"name":"DISPID_SVEPhoneme","features":[436]},{"name":"DISPID_SVESentenceBoundary","features":[436]},{"name":"DISPID_SVEStreamEnd","features":[436]},{"name":"DISPID_SVEStreamStart","features":[436]},{"name":"DISPID_SVEViseme","features":[436]},{"name":"DISPID_SVEVoiceChange","features":[436]},{"name":"DISPID_SVEWord","features":[436]},{"name":"DISPID_SVEventInterests","features":[436]},{"name":"DISPID_SVGetAudioInputs","features":[436]},{"name":"DISPID_SVGetAudioOutputs","features":[436]},{"name":"DISPID_SVGetProfiles","features":[436]},{"name":"DISPID_SVGetVoices","features":[436]},{"name":"DISPID_SVIsUISupported","features":[436]},{"name":"DISPID_SVPause","features":[436]},{"name":"DISPID_SVPriority","features":[436]},{"name":"DISPID_SVRate","features":[436]},{"name":"DISPID_SVResume","features":[436]},{"name":"DISPID_SVSCurrentStreamNumber","features":[436]},{"name":"DISPID_SVSInputSentenceLength","features":[436]},{"name":"DISPID_SVSInputSentencePosition","features":[436]},{"name":"DISPID_SVSInputWordLength","features":[436]},{"name":"DISPID_SVSInputWordPosition","features":[436]},{"name":"DISPID_SVSLastBookmark","features":[436]},{"name":"DISPID_SVSLastBookmarkId","features":[436]},{"name":"DISPID_SVSLastResult","features":[436]},{"name":"DISPID_SVSLastStreamNumberQueued","features":[436]},{"name":"DISPID_SVSPhonemeId","features":[436]},{"name":"DISPID_SVSRunningState","features":[436]},{"name":"DISPID_SVSVisemeId","features":[436]},{"name":"DISPID_SVSkip","features":[436]},{"name":"DISPID_SVSpeak","features":[436]},{"name":"DISPID_SVSpeakCompleteEvent","features":[436]},{"name":"DISPID_SVSpeakStream","features":[436]},{"name":"DISPID_SVStatus","features":[436]},{"name":"DISPID_SVSyncronousSpeakTimeout","features":[436]},{"name":"DISPID_SVVoice","features":[436]},{"name":"DISPID_SVVolume","features":[436]},{"name":"DISPID_SVWaitUntilDone","features":[436]},{"name":"DISPID_SWFEAvgBytesPerSec","features":[436]},{"name":"DISPID_SWFEBitsPerSample","features":[436]},{"name":"DISPID_SWFEBlockAlign","features":[436]},{"name":"DISPID_SWFEChannels","features":[436]},{"name":"DISPID_SWFEExtraData","features":[436]},{"name":"DISPID_SWFEFormatTag","features":[436]},{"name":"DISPID_SWFESamplesPerSec","features":[436]},{"name":"DISPID_SpeechAudio","features":[436]},{"name":"DISPID_SpeechAudioBufferInfo","features":[436]},{"name":"DISPID_SpeechAudioFormat","features":[436]},{"name":"DISPID_SpeechAudioStatus","features":[436]},{"name":"DISPID_SpeechBaseStream","features":[436]},{"name":"DISPID_SpeechCustomStream","features":[436]},{"name":"DISPID_SpeechDataKey","features":[436]},{"name":"DISPID_SpeechFileStream","features":[436]},{"name":"DISPID_SpeechGrammarRule","features":[436]},{"name":"DISPID_SpeechGrammarRuleState","features":[436]},{"name":"DISPID_SpeechGrammarRuleStateTransition","features":[436]},{"name":"DISPID_SpeechGrammarRuleStateTransitions","features":[436]},{"name":"DISPID_SpeechGrammarRules","features":[436]},{"name":"DISPID_SpeechLexicon","features":[436]},{"name":"DISPID_SpeechLexiconProns","features":[436]},{"name":"DISPID_SpeechLexiconPronunciation","features":[436]},{"name":"DISPID_SpeechLexiconWord","features":[436]},{"name":"DISPID_SpeechLexiconWords","features":[436]},{"name":"DISPID_SpeechMMSysAudio","features":[436]},{"name":"DISPID_SpeechMemoryStream","features":[436]},{"name":"DISPID_SpeechObjectToken","features":[436]},{"name":"DISPID_SpeechObjectTokenCategory","features":[436]},{"name":"DISPID_SpeechObjectTokens","features":[436]},{"name":"DISPID_SpeechPhoneConverter","features":[436]},{"name":"DISPID_SpeechPhraseAlternate","features":[436]},{"name":"DISPID_SpeechPhraseAlternates","features":[436]},{"name":"DISPID_SpeechPhraseBuilder","features":[436]},{"name":"DISPID_SpeechPhraseElement","features":[436]},{"name":"DISPID_SpeechPhraseElements","features":[436]},{"name":"DISPID_SpeechPhraseInfo","features":[436]},{"name":"DISPID_SpeechPhraseProperties","features":[436]},{"name":"DISPID_SpeechPhraseProperty","features":[436]},{"name":"DISPID_SpeechPhraseReplacement","features":[436]},{"name":"DISPID_SpeechPhraseReplacements","features":[436]},{"name":"DISPID_SpeechPhraseRule","features":[436]},{"name":"DISPID_SpeechPhraseRules","features":[436]},{"name":"DISPID_SpeechRecoContext","features":[436]},{"name":"DISPID_SpeechRecoContextEvents","features":[436]},{"name":"DISPID_SpeechRecoResult","features":[436]},{"name":"DISPID_SpeechRecoResult2","features":[436]},{"name":"DISPID_SpeechRecoResultTimes","features":[436]},{"name":"DISPID_SpeechRecognizer","features":[436]},{"name":"DISPID_SpeechRecognizerStatus","features":[436]},{"name":"DISPID_SpeechVoice","features":[436]},{"name":"DISPID_SpeechVoiceEvent","features":[436]},{"name":"DISPID_SpeechVoiceStatus","features":[436]},{"name":"DISPID_SpeechWaveFormatEx","features":[436]},{"name":"DISPID_SpeechXMLRecoResult","features":[436]},{"name":"IEnumSpObjectTokens","features":[436]},{"name":"ISpAudio","features":[436,354]},{"name":"ISpCFGInterpreter","features":[436]},{"name":"ISpCFGInterpreterSite","features":[436]},{"name":"ISpContainerLexicon","features":[436]},{"name":"ISpDataKey","features":[436]},{"name":"ISpDisplayAlternates","features":[436]},{"name":"ISpEnginePronunciation","features":[436]},{"name":"ISpErrorLog","features":[436]},{"name":"ISpEventSink","features":[436]},{"name":"ISpEventSource","features":[436]},{"name":"ISpEventSource2","features":[436]},{"name":"ISpGramCompBackend","features":[436]},{"name":"ISpGrammarBuilder","features":[436]},{"name":"ISpGrammarBuilder2","features":[436]},{"name":"ISpGrammarCompiler","features":[436]},{"name":"ISpITNProcessor","features":[436]},{"name":"ISpLexicon","features":[436]},{"name":"ISpMMSysAudio","features":[436,354]},{"name":"ISpNotifyCallback","features":[436]},{"name":"ISpNotifySink","features":[436]},{"name":"ISpNotifySource","features":[436]},{"name":"ISpNotifyTranslator","features":[436]},{"name":"ISpObjectToken","features":[436]},{"name":"ISpObjectTokenCategory","features":[436]},{"name":"ISpObjectTokenEnumBuilder","features":[436]},{"name":"ISpObjectTokenInit","features":[436]},{"name":"ISpObjectWithToken","features":[436]},{"name":"ISpPhoneConverter","features":[436]},{"name":"ISpPhoneticAlphabetConverter","features":[436]},{"name":"ISpPhoneticAlphabetSelection","features":[436]},{"name":"ISpPhrase","features":[436]},{"name":"ISpPhrase2","features":[436]},{"name":"ISpPhraseAlt","features":[436]},{"name":"ISpPhraseBuilder","features":[436]},{"name":"ISpPrivateEngineCallEx","features":[436]},{"name":"ISpProperties","features":[436]},{"name":"ISpRecoContext","features":[436]},{"name":"ISpRecoContext2","features":[436]},{"name":"ISpRecoGrammar","features":[436]},{"name":"ISpRecoGrammar2","features":[436]},{"name":"ISpRecoResult","features":[436]},{"name":"ISpRecoResult2","features":[436]},{"name":"ISpRecognizer","features":[436]},{"name":"ISpRecognizer2","features":[436]},{"name":"ISpRegDataKey","features":[436]},{"name":"ISpResourceManager","features":[436,354]},{"name":"ISpSRAlternates","features":[436]},{"name":"ISpSRAlternates2","features":[436]},{"name":"ISpSREngine","features":[436]},{"name":"ISpSREngine2","features":[436]},{"name":"ISpSREngineSite","features":[436]},{"name":"ISpSREngineSite2","features":[436]},{"name":"ISpSerializeState","features":[436]},{"name":"ISpShortcut","features":[436]},{"name":"ISpStream","features":[436,354]},{"name":"ISpStreamFormat","features":[436,354]},{"name":"ISpStreamFormatConverter","features":[436,354]},{"name":"ISpTTSEngine","features":[436]},{"name":"ISpTTSEngineSite","features":[436]},{"name":"ISpTask","features":[436]},{"name":"ISpTaskManager","features":[436]},{"name":"ISpThreadControl","features":[436]},{"name":"ISpThreadTask","features":[436]},{"name":"ISpTokenUI","features":[436]},{"name":"ISpTranscript","features":[436]},{"name":"ISpVoice","features":[436]},{"name":"ISpXMLRecoResult","features":[436]},{"name":"ISpeechAudio","features":[436,354]},{"name":"ISpeechAudioBufferInfo","features":[436,354]},{"name":"ISpeechAudioFormat","features":[436,354]},{"name":"ISpeechAudioStatus","features":[436,354]},{"name":"ISpeechBaseStream","features":[436,354]},{"name":"ISpeechCustomStream","features":[436,354]},{"name":"ISpeechDataKey","features":[436,354]},{"name":"ISpeechFileStream","features":[436,354]},{"name":"ISpeechGrammarRule","features":[436,354]},{"name":"ISpeechGrammarRuleState","features":[436,354]},{"name":"ISpeechGrammarRuleStateTransition","features":[436,354]},{"name":"ISpeechGrammarRuleStateTransitions","features":[436,354]},{"name":"ISpeechGrammarRules","features":[436,354]},{"name":"ISpeechLexicon","features":[436,354]},{"name":"ISpeechLexiconPronunciation","features":[436,354]},{"name":"ISpeechLexiconPronunciations","features":[436,354]},{"name":"ISpeechLexiconWord","features":[436,354]},{"name":"ISpeechLexiconWords","features":[436,354]},{"name":"ISpeechMMSysAudio","features":[436,354]},{"name":"ISpeechMemoryStream","features":[436,354]},{"name":"ISpeechObjectToken","features":[436,354]},{"name":"ISpeechObjectTokenCategory","features":[436,354]},{"name":"ISpeechObjectTokens","features":[436,354]},{"name":"ISpeechPhoneConverter","features":[436,354]},{"name":"ISpeechPhraseAlternate","features":[436,354]},{"name":"ISpeechPhraseAlternates","features":[436,354]},{"name":"ISpeechPhraseElement","features":[436,354]},{"name":"ISpeechPhraseElements","features":[436,354]},{"name":"ISpeechPhraseInfo","features":[436,354]},{"name":"ISpeechPhraseInfoBuilder","features":[436,354]},{"name":"ISpeechPhraseProperties","features":[436,354]},{"name":"ISpeechPhraseProperty","features":[436,354]},{"name":"ISpeechPhraseReplacement","features":[436,354]},{"name":"ISpeechPhraseReplacements","features":[436,354]},{"name":"ISpeechPhraseRule","features":[436,354]},{"name":"ISpeechPhraseRules","features":[436,354]},{"name":"ISpeechRecoContext","features":[436,354]},{"name":"ISpeechRecoGrammar","features":[436,354]},{"name":"ISpeechRecoResult","features":[436,354]},{"name":"ISpeechRecoResult2","features":[436,354]},{"name":"ISpeechRecoResultDispatch","features":[436,354]},{"name":"ISpeechRecoResultTimes","features":[436,354]},{"name":"ISpeechRecognizer","features":[436,354]},{"name":"ISpeechRecognizerStatus","features":[436,354]},{"name":"ISpeechResourceLoader","features":[436,354]},{"name":"ISpeechTextSelectionInformation","features":[436,354]},{"name":"ISpeechVoice","features":[436,354]},{"name":"ISpeechVoiceStatus","features":[436,354]},{"name":"ISpeechWaveFormatEx","features":[436,354]},{"name":"ISpeechXMLRecoResult","features":[436,354]},{"name":"OrderedSubset","features":[436]},{"name":"OrderedSubsetContentRequired","features":[436]},{"name":"PA_Ipa","features":[436]},{"name":"PA_Sapi","features":[436]},{"name":"PA_Ups","features":[436]},{"name":"PHONETICALPHABET","features":[436]},{"name":"SAFT11kHz16BitMono","features":[436]},{"name":"SAFT11kHz16BitStereo","features":[436]},{"name":"SAFT11kHz8BitMono","features":[436]},{"name":"SAFT11kHz8BitStereo","features":[436]},{"name":"SAFT12kHz16BitMono","features":[436]},{"name":"SAFT12kHz16BitStereo","features":[436]},{"name":"SAFT12kHz8BitMono","features":[436]},{"name":"SAFT12kHz8BitStereo","features":[436]},{"name":"SAFT16kHz16BitMono","features":[436]},{"name":"SAFT16kHz16BitStereo","features":[436]},{"name":"SAFT16kHz8BitMono","features":[436]},{"name":"SAFT16kHz8BitStereo","features":[436]},{"name":"SAFT22kHz16BitMono","features":[436]},{"name":"SAFT22kHz16BitStereo","features":[436]},{"name":"SAFT22kHz8BitMono","features":[436]},{"name":"SAFT22kHz8BitStereo","features":[436]},{"name":"SAFT24kHz16BitMono","features":[436]},{"name":"SAFT24kHz16BitStereo","features":[436]},{"name":"SAFT24kHz8BitMono","features":[436]},{"name":"SAFT24kHz8BitStereo","features":[436]},{"name":"SAFT32kHz16BitMono","features":[436]},{"name":"SAFT32kHz16BitStereo","features":[436]},{"name":"SAFT32kHz8BitMono","features":[436]},{"name":"SAFT32kHz8BitStereo","features":[436]},{"name":"SAFT44kHz16BitMono","features":[436]},{"name":"SAFT44kHz16BitStereo","features":[436]},{"name":"SAFT44kHz8BitMono","features":[436]},{"name":"SAFT44kHz8BitStereo","features":[436]},{"name":"SAFT48kHz16BitMono","features":[436]},{"name":"SAFT48kHz16BitStereo","features":[436]},{"name":"SAFT48kHz8BitMono","features":[436]},{"name":"SAFT48kHz8BitStereo","features":[436]},{"name":"SAFT8kHz16BitMono","features":[436]},{"name":"SAFT8kHz16BitStereo","features":[436]},{"name":"SAFT8kHz8BitMono","features":[436]},{"name":"SAFT8kHz8BitStereo","features":[436]},{"name":"SAFTADPCM_11kHzMono","features":[436]},{"name":"SAFTADPCM_11kHzStereo","features":[436]},{"name":"SAFTADPCM_22kHzMono","features":[436]},{"name":"SAFTADPCM_22kHzStereo","features":[436]},{"name":"SAFTADPCM_44kHzMono","features":[436]},{"name":"SAFTADPCM_44kHzStereo","features":[436]},{"name":"SAFTADPCM_8kHzMono","features":[436]},{"name":"SAFTADPCM_8kHzStereo","features":[436]},{"name":"SAFTCCITT_ALaw_11kHzMono","features":[436]},{"name":"SAFTCCITT_ALaw_11kHzStereo","features":[436]},{"name":"SAFTCCITT_ALaw_22kHzMono","features":[436]},{"name":"SAFTCCITT_ALaw_22kHzStereo","features":[436]},{"name":"SAFTCCITT_ALaw_44kHzMono","features":[436]},{"name":"SAFTCCITT_ALaw_44kHzStereo","features":[436]},{"name":"SAFTCCITT_ALaw_8kHzMono","features":[436]},{"name":"SAFTCCITT_ALaw_8kHzStereo","features":[436]},{"name":"SAFTCCITT_uLaw_11kHzMono","features":[436]},{"name":"SAFTCCITT_uLaw_11kHzStereo","features":[436]},{"name":"SAFTCCITT_uLaw_22kHzMono","features":[436]},{"name":"SAFTCCITT_uLaw_22kHzStereo","features":[436]},{"name":"SAFTCCITT_uLaw_44kHzMono","features":[436]},{"name":"SAFTCCITT_uLaw_44kHzStereo","features":[436]},{"name":"SAFTCCITT_uLaw_8kHzMono","features":[436]},{"name":"SAFTCCITT_uLaw_8kHzStereo","features":[436]},{"name":"SAFTDefault","features":[436]},{"name":"SAFTExtendedAudioFormat","features":[436]},{"name":"SAFTGSM610_11kHzMono","features":[436]},{"name":"SAFTGSM610_22kHzMono","features":[436]},{"name":"SAFTGSM610_44kHzMono","features":[436]},{"name":"SAFTGSM610_8kHzMono","features":[436]},{"name":"SAFTNoAssignedFormat","features":[436]},{"name":"SAFTNonStandardFormat","features":[436]},{"name":"SAFTText","features":[436]},{"name":"SAFTTrueSpeech_8kHz1BitMono","features":[436]},{"name":"SAPI_ERROR_BASE","features":[436]},{"name":"SASClosed","features":[436]},{"name":"SASPause","features":[436]},{"name":"SASRun","features":[436]},{"name":"SASStop","features":[436]},{"name":"SBONone","features":[436]},{"name":"SBOPause","features":[436]},{"name":"SDA_Consume_Leading_Spaces","features":[436]},{"name":"SDA_No_Trailing_Space","features":[436]},{"name":"SDA_One_Trailing_Space","features":[436]},{"name":"SDA_Two_Trailing_Spaces","features":[436]},{"name":"SDKLCurrentConfig","features":[436]},{"name":"SDKLCurrentUser","features":[436]},{"name":"SDKLDefaultLocation","features":[436]},{"name":"SDKLLocalMachine","features":[436]},{"name":"SDTAll","features":[436]},{"name":"SDTAlternates","features":[436]},{"name":"SDTAudio","features":[436]},{"name":"SDTDisplayText","features":[436]},{"name":"SDTLexicalForm","features":[436]},{"name":"SDTPronunciation","features":[436]},{"name":"SDTProperty","features":[436]},{"name":"SDTReplacement","features":[436]},{"name":"SDTRule","features":[436]},{"name":"SECFDefault","features":[436]},{"name":"SECFEmulateResult","features":[436]},{"name":"SECFIgnoreCase","features":[436]},{"name":"SECFIgnoreKanaType","features":[436]},{"name":"SECFIgnoreWidth","features":[436]},{"name":"SECFNoSpecialChars","features":[436]},{"name":"SECHighConfidence","features":[436]},{"name":"SECLowConfidence","features":[436]},{"name":"SECNormalConfidence","features":[436]},{"name":"SFTInput","features":[436]},{"name":"SFTSREngine","features":[436]},{"name":"SGDSActive","features":[436]},{"name":"SGDSActiveUserDelimited","features":[436]},{"name":"SGDSActiveWithAutoPause","features":[436]},{"name":"SGDSInactive","features":[436]},{"name":"SGDisplay","features":[436]},{"name":"SGLexical","features":[436]},{"name":"SGLexicalNoSpecialChars","features":[436]},{"name":"SGPronounciation","features":[436]},{"name":"SGRSTTDictation","features":[436]},{"name":"SGRSTTEpsilon","features":[436]},{"name":"SGRSTTRule","features":[436]},{"name":"SGRSTTTextBuffer","features":[436]},{"name":"SGRSTTWildcard","features":[436]},{"name":"SGRSTTWord","features":[436]},{"name":"SGSDisabled","features":[436]},{"name":"SGSEnabled","features":[436]},{"name":"SGSExclusive","features":[436]},{"name":"SINoSignal","features":[436]},{"name":"SINoise","features":[436]},{"name":"SINone","features":[436]},{"name":"SITooFast","features":[436]},{"name":"SITooLoud","features":[436]},{"name":"SITooQuiet","features":[436]},{"name":"SITooSlow","features":[436]},{"name":"SLODynamic","features":[436]},{"name":"SLOStatic","features":[436]},{"name":"SLTApp","features":[436]},{"name":"SLTUser","features":[436]},{"name":"SPADAPTATIONRELEVANCE","features":[436]},{"name":"SPADAPTATIONSETTINGS","features":[436]},{"name":"SPADS_CurrentRecognizer","features":[436]},{"name":"SPADS_Default","features":[436]},{"name":"SPADS_HighVolumeDataSource","features":[436]},{"name":"SPADS_Immediate","features":[436]},{"name":"SPADS_RecoProfile","features":[436]},{"name":"SPADS_Reset","features":[436]},{"name":"SPAF_ALL","features":[436]},{"name":"SPAF_BUFFER_POSITION","features":[436]},{"name":"SPAF_CONSUME_LEADING_SPACES","features":[436]},{"name":"SPAF_ONE_TRAILING_SPACE","features":[436]},{"name":"SPAF_TWO_TRAILING_SPACES","features":[436]},{"name":"SPAF_USER_SPECIFIED","features":[436]},{"name":"SPALTERNATESCLSID","features":[436]},{"name":"SPAO_NONE","features":[436]},{"name":"SPAO_RETAIN_AUDIO","features":[436]},{"name":"SPAR_High","features":[436]},{"name":"SPAR_Low","features":[436]},{"name":"SPAR_Medium","features":[436]},{"name":"SPAR_Unknown","features":[436]},{"name":"SPAS_CLOSED","features":[436]},{"name":"SPAS_PAUSE","features":[436]},{"name":"SPAS_RUN","features":[436]},{"name":"SPAS_STOP","features":[436]},{"name":"SPAUDIOBUFFERINFO","features":[436]},{"name":"SPAUDIOOPTIONS","features":[436]},{"name":"SPAUDIOSTATE","features":[436]},{"name":"SPAUDIOSTATUS","features":[436]},{"name":"SPBINARYGRAMMAR","features":[436]},{"name":"SPBOOKMARKOPTIONS","features":[436]},{"name":"SPBO_AHEAD","features":[436]},{"name":"SPBO_NONE","features":[436]},{"name":"SPBO_PAUSE","features":[436]},{"name":"SPBO_TIME_UNITS","features":[436]},{"name":"SPCAT_APPLEXICONS","features":[436]},{"name":"SPCAT_AUDIOIN","features":[436]},{"name":"SPCAT_AUDIOOUT","features":[436]},{"name":"SPCAT_PHONECONVERTERS","features":[436]},{"name":"SPCAT_RECOGNIZERS","features":[436]},{"name":"SPCAT_RECOPROFILES","features":[436]},{"name":"SPCAT_TEXTNORMALIZERS","features":[436]},{"name":"SPCAT_VOICES","features":[436]},{"name":"SPCFGNOTIFY","features":[436]},{"name":"SPCFGN_ACTIVATE","features":[436]},{"name":"SPCFGN_ADD","features":[436]},{"name":"SPCFGN_DEACTIVATE","features":[436]},{"name":"SPCFGN_INVALIDATE","features":[436]},{"name":"SPCFGN_REMOVE","features":[436]},{"name":"SPCFGRULEATTRIBUTES","features":[436]},{"name":"SPCF_ADD_TO_USER_LEXICON","features":[436]},{"name":"SPCF_DEFINITE_CORRECTION","features":[436]},{"name":"SPCF_NONE","features":[436]},{"name":"SPCOMMITFLAGS","features":[436]},{"name":"SPCONTEXTSTATE","features":[436]},{"name":"SPCS_DISABLED","features":[436]},{"name":"SPCS_ENABLED","features":[436]},{"name":"SPCURRENT_USER_LEXICON_TOKEN_ID","features":[436]},{"name":"SPCURRENT_USER_SHORTCUT_TOKEN_ID","features":[436]},{"name":"SPDATAKEYLOCATION","features":[436]},{"name":"SPDF_ALL","features":[436]},{"name":"SPDF_ALTERNATES","features":[436]},{"name":"SPDF_AUDIO","features":[436]},{"name":"SPDF_DISPLAYTEXT","features":[436]},{"name":"SPDF_LEXICALFORM","features":[436]},{"name":"SPDF_PRONUNCIATION","features":[436]},{"name":"SPDF_PROPERTY","features":[436]},{"name":"SPDF_REPLACEMENT","features":[436]},{"name":"SPDF_RULE","features":[436]},{"name":"SPDICTATION","features":[436]},{"name":"SPDISPLAYATTRIBUTES","features":[436]},{"name":"SPDISPLAYPHRASE","features":[436]},{"name":"SPDISPLAYTOKEN","features":[436]},{"name":"SPDKL_CurrentConfig","features":[436]},{"name":"SPDKL_CurrentUser","features":[436]},{"name":"SPDKL_DefaultLocation","features":[436]},{"name":"SPDKL_LocalMachine","features":[436]},{"name":"SPDUI_AddRemoveWord","features":[436]},{"name":"SPDUI_AudioProperties","features":[436]},{"name":"SPDUI_AudioVolume","features":[436]},{"name":"SPDUI_EngineProperties","features":[436]},{"name":"SPDUI_MicTraining","features":[436]},{"name":"SPDUI_RecoProfileProperties","features":[436]},{"name":"SPDUI_ShareData","features":[436]},{"name":"SPDUI_Tutorial","features":[436]},{"name":"SPDUI_UserEnrollment","features":[436]},{"name":"SPDUI_UserTraining","features":[436]},{"name":"SPEAKFLAGS","features":[436]},{"name":"SPEI_ADAPTATION","features":[436]},{"name":"SPEI_END_INPUT_STREAM","features":[436]},{"name":"SPEI_END_SR_STREAM","features":[436]},{"name":"SPEI_FALSE_RECOGNITION","features":[436]},{"name":"SPEI_HYPOTHESIS","features":[436]},{"name":"SPEI_INTERFERENCE","features":[436]},{"name":"SPEI_MAX_SR","features":[436]},{"name":"SPEI_MAX_TTS","features":[436]},{"name":"SPEI_MIN_SR","features":[436]},{"name":"SPEI_MIN_TTS","features":[436]},{"name":"SPEI_PHONEME","features":[436]},{"name":"SPEI_PHRASE_START","features":[436]},{"name":"SPEI_PROPERTY_NUM_CHANGE","features":[436]},{"name":"SPEI_PROPERTY_STRING_CHANGE","features":[436]},{"name":"SPEI_RECOGNITION","features":[436]},{"name":"SPEI_RECO_OTHER_CONTEXT","features":[436]},{"name":"SPEI_RECO_STATE_CHANGE","features":[436]},{"name":"SPEI_REQUEST_UI","features":[436]},{"name":"SPEI_RESERVED1","features":[436]},{"name":"SPEI_RESERVED2","features":[436]},{"name":"SPEI_RESERVED3","features":[436]},{"name":"SPEI_RESERVED4","features":[436]},{"name":"SPEI_RESERVED5","features":[436]},{"name":"SPEI_RESERVED6","features":[436]},{"name":"SPEI_SENTENCE_BOUNDARY","features":[436]},{"name":"SPEI_SOUND_END","features":[436]},{"name":"SPEI_SOUND_START","features":[436]},{"name":"SPEI_SR_AUDIO_LEVEL","features":[436]},{"name":"SPEI_SR_BOOKMARK","features":[436]},{"name":"SPEI_SR_PRIVATE","features":[436]},{"name":"SPEI_SR_RETAINEDAUDIO","features":[436]},{"name":"SPEI_START_INPUT_STREAM","features":[436]},{"name":"SPEI_START_SR_STREAM","features":[436]},{"name":"SPEI_TTS_AUDIO_LEVEL","features":[436]},{"name":"SPEI_TTS_BOOKMARK","features":[436]},{"name":"SPEI_TTS_PRIVATE","features":[436]},{"name":"SPEI_UNDEFINED","features":[436]},{"name":"SPEI_VISEME","features":[436]},{"name":"SPEI_VOICE_CHANGE","features":[436]},{"name":"SPEI_WORD_BOUNDARY","features":[436]},{"name":"SPENDSRSTREAMFLAGS","features":[436]},{"name":"SPESF_EMULATED","features":[436]},{"name":"SPESF_NONE","features":[436]},{"name":"SPESF_STREAM_RELEASED","features":[436]},{"name":"SPET_LPARAM_IS_OBJECT","features":[436]},{"name":"SPET_LPARAM_IS_POINTER","features":[436]},{"name":"SPET_LPARAM_IS_STRING","features":[436]},{"name":"SPET_LPARAM_IS_TOKEN","features":[436]},{"name":"SPET_LPARAM_IS_UNDEFINED","features":[436]},{"name":"SPEVENT","features":[303,436]},{"name":"SPEVENTENUM","features":[436]},{"name":"SPEVENTEX","features":[303,436]},{"name":"SPEVENTLPARAMTYPE","features":[436]},{"name":"SPEVENTSOURCEINFO","features":[436]},{"name":"SPFILEMODE","features":[436]},{"name":"SPFM_CREATE","features":[436]},{"name":"SPFM_CREATE_ALWAYS","features":[436]},{"name":"SPFM_NUM_MODES","features":[436]},{"name":"SPFM_OPEN_READONLY","features":[436]},{"name":"SPFM_OPEN_READWRITE","features":[436]},{"name":"SPF_ASYNC","features":[436]},{"name":"SPF_DEFAULT","features":[436]},{"name":"SPF_IS_FILENAME","features":[436]},{"name":"SPF_IS_NOT_XML","features":[436]},{"name":"SPF_IS_XML","features":[436]},{"name":"SPF_NLP_MASK","features":[436]},{"name":"SPF_NLP_SPEAK_PUNC","features":[436]},{"name":"SPF_PARSE_AUTODETECT","features":[436]},{"name":"SPF_PARSE_MASK","features":[436]},{"name":"SPF_PARSE_SAPI","features":[436]},{"name":"SPF_PARSE_SSML","features":[436]},{"name":"SPF_PERSIST_XML","features":[436]},{"name":"SPF_PURGEBEFORESPEAK","features":[436]},{"name":"SPF_UNUSED_FLAGS","features":[436]},{"name":"SPF_VOICE_MASK","features":[436]},{"name":"SPGO_ALL","features":[436]},{"name":"SPGO_DEFAULT","features":[436]},{"name":"SPGO_FILE","features":[436]},{"name":"SPGO_HTTP","features":[436]},{"name":"SPGO_OBJECT","features":[436]},{"name":"SPGO_RES","features":[436]},{"name":"SPGO_SAPI","features":[436]},{"name":"SPGO_SRGS","features":[436]},{"name":"SPGO_SRGS_MS_SCRIPT","features":[436]},{"name":"SPGO_SRGS_SCRIPT","features":[436]},{"name":"SPGO_SRGS_STG_SCRIPT","features":[436]},{"name":"SPGO_SRGS_W3C_SCRIPT","features":[436]},{"name":"SPGO_UPS","features":[436]},{"name":"SPGRAMMARHANDLE","features":[436]},{"name":"SPGRAMMAROPTIONS","features":[436]},{"name":"SPGRAMMARSTATE","features":[436]},{"name":"SPGRAMMARWORDTYPE","features":[436]},{"name":"SPGS_DISABLED","features":[436]},{"name":"SPGS_ENABLED","features":[436]},{"name":"SPGS_EXCLUSIVE","features":[436]},{"name":"SPINFDICTATION","features":[436]},{"name":"SPINTERFERENCE","features":[436]},{"name":"SPINTERFERENCE_LATENCY_TRUNCATE_BEGIN","features":[436]},{"name":"SPINTERFERENCE_LATENCY_TRUNCATE_END","features":[436]},{"name":"SPINTERFERENCE_LATENCY_WARNING","features":[436]},{"name":"SPINTERFERENCE_NOISE","features":[436]},{"name":"SPINTERFERENCE_NONE","features":[436]},{"name":"SPINTERFERENCE_NOSIGNAL","features":[436]},{"name":"SPINTERFERENCE_TOOFAST","features":[436]},{"name":"SPINTERFERENCE_TOOLOUD","features":[436]},{"name":"SPINTERFERENCE_TOOQUIET","features":[436]},{"name":"SPINTERFERENCE_TOOSLOW","features":[436]},{"name":"SPLEXICONTYPE","features":[436]},{"name":"SPLOADOPTIONS","features":[436]},{"name":"SPLO_DYNAMIC","features":[436]},{"name":"SPLO_STATIC","features":[436]},{"name":"SPMATCHINGMODE","features":[436]},{"name":"SPMAX_RATE","features":[436]},{"name":"SPMAX_VOLUME","features":[436]},{"name":"SPMIN_RATE","features":[436]},{"name":"SPMIN_VOLUME","features":[436]},{"name":"SPMMSYS_AUDIO_IN_TOKEN_ID","features":[436]},{"name":"SPMMSYS_AUDIO_OUT_TOKEN_ID","features":[436]},{"name":"SPNORMALIZATIONLIST","features":[436]},{"name":"SPNOTIFYCALLBACK","features":[303,436]},{"name":"SPPARSEINFO","features":[303,436]},{"name":"SPPARTOFSPEECH","features":[436]},{"name":"SPPATHENTRY","features":[436]},{"name":"SPPHRASE","features":[436]},{"name":"SPPHRASEALT","features":[436]},{"name":"SPPHRASEALTREQUEST","features":[436]},{"name":"SPPHRASEELEMENT","features":[436]},{"name":"SPPHRASEPROPERTY","features":[436]},{"name":"SPPHRASEPROPERTYHANDLE","features":[436]},{"name":"SPPHRASEPROPERTYUNIONTYPE","features":[436]},{"name":"SPPHRASEREPLACEMENT","features":[436]},{"name":"SPPHRASERNG","features":[436]},{"name":"SPPHRASERULE","features":[436]},{"name":"SPPHRASERULEHANDLE","features":[436]},{"name":"SPPHRASE_50","features":[436]},{"name":"SPPPUT_ARRAY_INDEX","features":[436]},{"name":"SPPPUT_UNUSED","features":[436]},{"name":"SPPRONUNCIATIONFLAGS","features":[436]},{"name":"SPPROPERTYINFO","features":[436]},{"name":"SPPROPSRC","features":[436]},{"name":"SPPROPSRC_RECO_CTX","features":[436]},{"name":"SPPROPSRC_RECO_GRAMMAR","features":[436]},{"name":"SPPROPSRC_RECO_INST","features":[436]},{"name":"SPPROP_ADAPTATION_ON","features":[436]},{"name":"SPPROP_COMPLEX_RESPONSE_SPEED","features":[436]},{"name":"SPPROP_HIGH_CONFIDENCE_THRESHOLD","features":[436]},{"name":"SPPROP_LOW_CONFIDENCE_THRESHOLD","features":[436]},{"name":"SPPROP_NORMAL_CONFIDENCE_THRESHOLD","features":[436]},{"name":"SPPROP_PERSISTED_BACKGROUND_ADAPTATION","features":[436]},{"name":"SPPROP_PERSISTED_LANGUAGE_MODEL_ADAPTATION","features":[436]},{"name":"SPPROP_RESOURCE_USAGE","features":[436]},{"name":"SPPROP_RESPONSE_SPEED","features":[436]},{"name":"SPPROP_UX_IS_LISTENING","features":[436]},{"name":"SPPR_ALL_ELEMENTS","features":[436]},{"name":"SPPS_Function","features":[436]},{"name":"SPPS_Interjection","features":[436]},{"name":"SPPS_LMA","features":[436]},{"name":"SPPS_Modifier","features":[436]},{"name":"SPPS_Noncontent","features":[436]},{"name":"SPPS_NotOverriden","features":[436]},{"name":"SPPS_Noun","features":[436]},{"name":"SPPS_RESERVED1","features":[436]},{"name":"SPPS_RESERVED2","features":[436]},{"name":"SPPS_RESERVED3","features":[436]},{"name":"SPPS_RESERVED4","features":[436]},{"name":"SPPS_SuppressWord","features":[436]},{"name":"SPPS_Unknown","features":[436]},{"name":"SPPS_Verb","features":[436]},{"name":"SPRAF_Active","features":[436]},{"name":"SPRAF_AutoPause","features":[436]},{"name":"SPRAF_Dynamic","features":[436]},{"name":"SPRAF_Export","features":[436]},{"name":"SPRAF_Import","features":[436]},{"name":"SPRAF_Interpreter","features":[436]},{"name":"SPRAF_Root","features":[436]},{"name":"SPRAF_TopLevel","features":[436]},{"name":"SPRAF_UserDelimited","features":[436]},{"name":"SPRECOCONTEXTHANDLE","features":[436]},{"name":"SPRECOCONTEXTSTATUS","features":[436]},{"name":"SPRECOEVENTFLAGS","features":[436]},{"name":"SPRECOEXTENSION","features":[436]},{"name":"SPRECOGNIZERSTATUS","features":[436]},{"name":"SPRECORESULTINFO","features":[303,436]},{"name":"SPRECORESULTINFOEX","features":[303,436]},{"name":"SPRECORESULTTIMES","features":[303,436]},{"name":"SPRECOSTATE","features":[436]},{"name":"SPREF_AutoPause","features":[436]},{"name":"SPREF_Emulated","features":[436]},{"name":"SPREF_ExtendableParse","features":[436]},{"name":"SPREF_FalseRecognition","features":[436]},{"name":"SPREF_Hypothesis","features":[436]},{"name":"SPREF_ReSent","features":[436]},{"name":"SPREF_SMLTimeout","features":[436]},{"name":"SPREG_LOCAL_MACHINE_ROOT","features":[436]},{"name":"SPREG_SAFE_USER_TOKENS","features":[436]},{"name":"SPREG_USER_ROOT","features":[436]},{"name":"SPRESULTTYPE","features":[436]},{"name":"SPRIO_NONE","features":[436]},{"name":"SPRP_NORMAL","features":[436]},{"name":"SPRST_ACTIVE","features":[436]},{"name":"SPRST_ACTIVE_ALWAYS","features":[436]},{"name":"SPRST_INACTIVE","features":[436]},{"name":"SPRST_INACTIVE_WITH_PURGE","features":[436]},{"name":"SPRST_NUM_STATES","features":[436]},{"name":"SPRS_ACTIVE","features":[436]},{"name":"SPRS_ACTIVE_USER_DELIMITED","features":[436]},{"name":"SPRS_ACTIVE_WITH_AUTO_PAUSE","features":[436]},{"name":"SPRS_DONE","features":[436]},{"name":"SPRS_INACTIVE","features":[436]},{"name":"SPRS_IS_SPEAKING","features":[436]},{"name":"SPRT_CFG","features":[436]},{"name":"SPRT_EMULATED","features":[436]},{"name":"SPRT_EXTENDABLE_PARSE","features":[436]},{"name":"SPRT_FALSE_RECOGNITION","features":[436]},{"name":"SPRT_PROPRIETARY","features":[436]},{"name":"SPRT_SLM","features":[436]},{"name":"SPRT_TYPE_MASK","features":[436]},{"name":"SPRULE","features":[436]},{"name":"SPRULEENTRY","features":[436]},{"name":"SPRULEHANDLE","features":[436]},{"name":"SPRULEINFOOPT","features":[436]},{"name":"SPRULESTATE","features":[436]},{"name":"SPRUNSTATE","features":[436]},{"name":"SPSEMANTICERRORINFO","features":[436]},{"name":"SPSEMANTICFORMAT","features":[436]},{"name":"SPSERIALIZEDEVENT","features":[436]},{"name":"SPSERIALIZEDEVENT64","features":[436]},{"name":"SPSERIALIZEDPHRASE","features":[436]},{"name":"SPSERIALIZEDRESULT","features":[436]},{"name":"SPSF_11kHz16BitMono","features":[436]},{"name":"SPSF_11kHz16BitStereo","features":[436]},{"name":"SPSF_11kHz8BitMono","features":[436]},{"name":"SPSF_11kHz8BitStereo","features":[436]},{"name":"SPSF_12kHz16BitMono","features":[436]},{"name":"SPSF_12kHz16BitStereo","features":[436]},{"name":"SPSF_12kHz8BitMono","features":[436]},{"name":"SPSF_12kHz8BitStereo","features":[436]},{"name":"SPSF_16kHz16BitMono","features":[436]},{"name":"SPSF_16kHz16BitStereo","features":[436]},{"name":"SPSF_16kHz8BitMono","features":[436]},{"name":"SPSF_16kHz8BitStereo","features":[436]},{"name":"SPSF_22kHz16BitMono","features":[436]},{"name":"SPSF_22kHz16BitStereo","features":[436]},{"name":"SPSF_22kHz8BitMono","features":[436]},{"name":"SPSF_22kHz8BitStereo","features":[436]},{"name":"SPSF_24kHz16BitMono","features":[436]},{"name":"SPSF_24kHz16BitStereo","features":[436]},{"name":"SPSF_24kHz8BitMono","features":[436]},{"name":"SPSF_24kHz8BitStereo","features":[436]},{"name":"SPSF_32kHz16BitMono","features":[436]},{"name":"SPSF_32kHz16BitStereo","features":[436]},{"name":"SPSF_32kHz8BitMono","features":[436]},{"name":"SPSF_32kHz8BitStereo","features":[436]},{"name":"SPSF_44kHz16BitMono","features":[436]},{"name":"SPSF_44kHz16BitStereo","features":[436]},{"name":"SPSF_44kHz8BitMono","features":[436]},{"name":"SPSF_44kHz8BitStereo","features":[436]},{"name":"SPSF_48kHz16BitMono","features":[436]},{"name":"SPSF_48kHz16BitStereo","features":[436]},{"name":"SPSF_48kHz8BitMono","features":[436]},{"name":"SPSF_48kHz8BitStereo","features":[436]},{"name":"SPSF_8kHz16BitMono","features":[436]},{"name":"SPSF_8kHz16BitStereo","features":[436]},{"name":"SPSF_8kHz8BitMono","features":[436]},{"name":"SPSF_8kHz8BitStereo","features":[436]},{"name":"SPSF_ADPCM_11kHzMono","features":[436]},{"name":"SPSF_ADPCM_11kHzStereo","features":[436]},{"name":"SPSF_ADPCM_22kHzMono","features":[436]},{"name":"SPSF_ADPCM_22kHzStereo","features":[436]},{"name":"SPSF_ADPCM_44kHzMono","features":[436]},{"name":"SPSF_ADPCM_44kHzStereo","features":[436]},{"name":"SPSF_ADPCM_8kHzMono","features":[436]},{"name":"SPSF_ADPCM_8kHzStereo","features":[436]},{"name":"SPSF_CCITT_ALaw_11kHzMono","features":[436]},{"name":"SPSF_CCITT_ALaw_11kHzStereo","features":[436]},{"name":"SPSF_CCITT_ALaw_22kHzMono","features":[436]},{"name":"SPSF_CCITT_ALaw_22kHzStereo","features":[436]},{"name":"SPSF_CCITT_ALaw_44kHzMono","features":[436]},{"name":"SPSF_CCITT_ALaw_44kHzStereo","features":[436]},{"name":"SPSF_CCITT_ALaw_8kHzMono","features":[436]},{"name":"SPSF_CCITT_ALaw_8kHzStereo","features":[436]},{"name":"SPSF_CCITT_uLaw_11kHzMono","features":[436]},{"name":"SPSF_CCITT_uLaw_11kHzStereo","features":[436]},{"name":"SPSF_CCITT_uLaw_22kHzMono","features":[436]},{"name":"SPSF_CCITT_uLaw_22kHzStereo","features":[436]},{"name":"SPSF_CCITT_uLaw_44kHzMono","features":[436]},{"name":"SPSF_CCITT_uLaw_44kHzStereo","features":[436]},{"name":"SPSF_CCITT_uLaw_8kHzMono","features":[436]},{"name":"SPSF_CCITT_uLaw_8kHzStereo","features":[436]},{"name":"SPSF_Default","features":[436]},{"name":"SPSF_ExtendedAudioFormat","features":[436]},{"name":"SPSF_GSM610_11kHzMono","features":[436]},{"name":"SPSF_GSM610_22kHzMono","features":[436]},{"name":"SPSF_GSM610_44kHzMono","features":[436]},{"name":"SPSF_GSM610_8kHzMono","features":[436]},{"name":"SPSF_NUM_FORMATS","features":[436]},{"name":"SPSF_NoAssignedFormat","features":[436]},{"name":"SPSF_NonStandardFormat","features":[436]},{"name":"SPSF_Text","features":[436]},{"name":"SPSF_TrueSpeech_8kHz1BitMono","features":[436]},{"name":"SPSFunction","features":[436]},{"name":"SPSHORTCUTPAIR","features":[436]},{"name":"SPSHORTCUTPAIRLIST","features":[436]},{"name":"SPSHORTCUTTYPE","features":[436]},{"name":"SPSHT_EMAIL","features":[436]},{"name":"SPSHT_NotOverriden","features":[436]},{"name":"SPSHT_OTHER","features":[436]},{"name":"SPSHT_Unknown","features":[436]},{"name":"SPSInterjection","features":[436]},{"name":"SPSLMA","features":[436]},{"name":"SPSMF_SAPI_PROPERTIES","features":[436]},{"name":"SPSMF_SRGS_SAPIPROPERTIES","features":[436]},{"name":"SPSMF_SRGS_SEMANTICINTERPRETATION_MS","features":[436]},{"name":"SPSMF_SRGS_SEMANTICINTERPRETATION_W3C","features":[436]},{"name":"SPSMF_UPS","features":[436]},{"name":"SPSModifier","features":[436]},{"name":"SPSNotOverriden","features":[436]},{"name":"SPSNoun","features":[436]},{"name":"SPSSuppressWord","features":[436]},{"name":"SPSTATEHANDLE","features":[436]},{"name":"SPSTATEINFO","features":[436]},{"name":"SPSTREAMFORMAT","features":[436]},{"name":"SPSTREAMFORMATTYPE","features":[436]},{"name":"SPSUnknown","features":[436]},{"name":"SPSVerb","features":[436]},{"name":"SPTEXTSELECTIONINFO","features":[436]},{"name":"SPTMTHREADINFO","features":[436]},{"name":"SPTOKENKEY_ATTRIBUTES","features":[436]},{"name":"SPTOKENKEY_AUDIO_LATENCY_TRUNCATE","features":[436]},{"name":"SPTOKENKEY_AUDIO_LATENCY_UPDATE_INTERVAL","features":[436]},{"name":"SPTOKENKEY_AUDIO_LATENCY_WARNING","features":[436]},{"name":"SPTOKENKEY_FILES","features":[436]},{"name":"SPTOKENKEY_RETAINEDAUDIO","features":[436]},{"name":"SPTOKENKEY_UI","features":[436]},{"name":"SPTOKENVALUE_CLSID","features":[436]},{"name":"SPTOPIC_SPELLING","features":[436]},{"name":"SPTRANSDICTATION","features":[436]},{"name":"SPTRANSEPSILON","features":[436]},{"name":"SPTRANSITIONENTRY","features":[436]},{"name":"SPTRANSITIONID","features":[436]},{"name":"SPTRANSITIONPROPERTY","features":[436]},{"name":"SPTRANSITIONTYPE","features":[436]},{"name":"SPTRANSRULE","features":[436]},{"name":"SPTRANSTEXTBUF","features":[436]},{"name":"SPTRANSWILDCARD","features":[436]},{"name":"SPTRANSWORD","features":[436]},{"name":"SPVACTIONS","features":[436]},{"name":"SPVALUETYPE","features":[436]},{"name":"SPVA_Bookmark","features":[436]},{"name":"SPVA_ParseUnknownTag","features":[436]},{"name":"SPVA_Pronounce","features":[436]},{"name":"SPVA_Section","features":[436]},{"name":"SPVA_Silence","features":[436]},{"name":"SPVA_Speak","features":[436]},{"name":"SPVA_SpellOut","features":[436]},{"name":"SPVCONTEXT","features":[436]},{"name":"SPVESACTIONS","features":[436]},{"name":"SPVES_ABORT","features":[436]},{"name":"SPVES_CONTINUE","features":[436]},{"name":"SPVES_RATE","features":[436]},{"name":"SPVES_SKIP","features":[436]},{"name":"SPVES_VOLUME","features":[436]},{"name":"SPVFEATURE","features":[436]},{"name":"SPVFEATURE_EMPHASIS","features":[436]},{"name":"SPVFEATURE_STRESSED","features":[436]},{"name":"SPVISEMES","features":[436]},{"name":"SPVLIMITS","features":[436]},{"name":"SPVOICECATEGORY_TTSRATE","features":[436]},{"name":"SPVOICESTATUS","features":[436]},{"name":"SPVPITCH","features":[436]},{"name":"SPVPRIORITY","features":[436]},{"name":"SPVPRI_ALERT","features":[436]},{"name":"SPVPRI_NORMAL","features":[436]},{"name":"SPVPRI_OVER","features":[436]},{"name":"SPVSKIPTYPE","features":[436]},{"name":"SPVSTATE","features":[436]},{"name":"SPVST_SENTENCE","features":[436]},{"name":"SPVTEXTFRAG","features":[436]},{"name":"SPWF_INPUT","features":[436]},{"name":"SPWF_SRENGINE","features":[436]},{"name":"SPWILDCARD","features":[436]},{"name":"SPWIO_NONE","features":[436]},{"name":"SPWIO_WANT_TEXT","features":[436]},{"name":"SPWORD","features":[436]},{"name":"SPWORDENTRY","features":[436]},{"name":"SPWORDHANDLE","features":[436]},{"name":"SPWORDINFOOPT","features":[436]},{"name":"SPWORDLIST","features":[436]},{"name":"SPWORDPRONOUNCEABLE","features":[436]},{"name":"SPWORDPRONUNCIATION","features":[436]},{"name":"SPWORDPRONUNCIATIONLIST","features":[436]},{"name":"SPWORDTYPE","features":[436]},{"name":"SPWP_KNOWN_WORD_PRONOUNCEABLE","features":[436]},{"name":"SPWP_UNKNOWN_WORD_PRONOUNCEABLE","features":[436]},{"name":"SPWP_UNKNOWN_WORD_UNPRONOUNCEABLE","features":[436]},{"name":"SPWT_DISPLAY","features":[436]},{"name":"SPWT_LEXICAL","features":[436]},{"name":"SPWT_LEXICAL_NO_SPECIAL_CHARS","features":[436]},{"name":"SPWT_PRONUNCIATION","features":[436]},{"name":"SPXMLRESULTOPTIONS","features":[436]},{"name":"SPXRO_Alternates_SML","features":[436]},{"name":"SPXRO_SML","features":[436]},{"name":"SP_EMULATE_RESULT","features":[436]},{"name":"SP_LOW_CONFIDENCE","features":[436]},{"name":"SP_MAX_LANGIDS","features":[436]},{"name":"SP_MAX_PRON_LENGTH","features":[436]},{"name":"SP_MAX_WORD_LENGTH","features":[436]},{"name":"SP_NORMAL_CONFIDENCE","features":[436]},{"name":"SP_STREAMPOS_ASAP","features":[436]},{"name":"SP_STREAMPOS_REALTIME","features":[436]},{"name":"SP_VISEME_0","features":[436]},{"name":"SP_VISEME_1","features":[436]},{"name":"SP_VISEME_10","features":[436]},{"name":"SP_VISEME_11","features":[436]},{"name":"SP_VISEME_12","features":[436]},{"name":"SP_VISEME_13","features":[436]},{"name":"SP_VISEME_14","features":[436]},{"name":"SP_VISEME_15","features":[436]},{"name":"SP_VISEME_16","features":[436]},{"name":"SP_VISEME_17","features":[436]},{"name":"SP_VISEME_18","features":[436]},{"name":"SP_VISEME_19","features":[436]},{"name":"SP_VISEME_2","features":[436]},{"name":"SP_VISEME_20","features":[436]},{"name":"SP_VISEME_21","features":[436]},{"name":"SP_VISEME_3","features":[436]},{"name":"SP_VISEME_4","features":[436]},{"name":"SP_VISEME_5","features":[436]},{"name":"SP_VISEME_6","features":[436]},{"name":"SP_VISEME_7","features":[436]},{"name":"SP_VISEME_8","features":[436]},{"name":"SP_VISEME_9","features":[436]},{"name":"SRADefaultToActive","features":[436]},{"name":"SRADynamic","features":[436]},{"name":"SRAExport","features":[436]},{"name":"SRAImport","features":[436]},{"name":"SRAInterpreter","features":[436]},{"name":"SRAONone","features":[436]},{"name":"SRAORetainAudio","features":[436]},{"name":"SRARoot","features":[436]},{"name":"SRATopLevel","features":[436]},{"name":"SRCS_Disabled","features":[436]},{"name":"SRCS_Enabled","features":[436]},{"name":"SREAdaptation","features":[436]},{"name":"SREAllEvents","features":[436]},{"name":"SREAudioLevel","features":[436]},{"name":"SREBookmark","features":[436]},{"name":"SREFalseRecognition","features":[436]},{"name":"SREHypothesis","features":[436]},{"name":"SREInterference","features":[436]},{"name":"SREPhraseStart","features":[436]},{"name":"SREPrivate","features":[436]},{"name":"SREPropertyNumChange","features":[436]},{"name":"SREPropertyStringChange","features":[436]},{"name":"SRERecoOtherContext","features":[436]},{"name":"SRERecognition","features":[436]},{"name":"SRERequestUI","features":[436]},{"name":"SRESoundEnd","features":[436]},{"name":"SRESoundStart","features":[436]},{"name":"SREStateChange","features":[436]},{"name":"SREStreamEnd","features":[436]},{"name":"SREStreamStart","features":[436]},{"name":"SRSActive","features":[436]},{"name":"SRSActiveAlways","features":[436]},{"name":"SRSEDone","features":[436]},{"name":"SRSEIsSpeaking","features":[436]},{"name":"SRSInactive","features":[436]},{"name":"SRSInactiveWithPurge","features":[436]},{"name":"SRTAutopause","features":[436]},{"name":"SRTEmulated","features":[436]},{"name":"SRTExtendableParse","features":[436]},{"name":"SRTReSent","features":[436]},{"name":"SRTSMLTimeout","features":[436]},{"name":"SRTStandard","features":[436]},{"name":"SR_LOCALIZED_DESCRIPTION","features":[436]},{"name":"SSFMCreate","features":[436]},{"name":"SSFMCreateForWrite","features":[436]},{"name":"SSFMOpenForRead","features":[436]},{"name":"SSFMOpenReadWrite","features":[436]},{"name":"SSSPTRelativeToCurrentPosition","features":[436]},{"name":"SSSPTRelativeToEnd","features":[436]},{"name":"SSSPTRelativeToStart","features":[436]},{"name":"SSTTDictation","features":[436]},{"name":"SSTTTextBuffer","features":[436]},{"name":"SSTTWildcard","features":[436]},{"name":"STCAll","features":[436]},{"name":"STCInprocHandler","features":[436]},{"name":"STCInprocServer","features":[436]},{"name":"STCLocalServer","features":[436]},{"name":"STCRemoteServer","features":[436]},{"name":"STSF_AppData","features":[436]},{"name":"STSF_CommonAppData","features":[436]},{"name":"STSF_FlagCreate","features":[436]},{"name":"STSF_LocalAppData","features":[436]},{"name":"SVEAllEvents","features":[436]},{"name":"SVEAudioLevel","features":[436]},{"name":"SVEBookmark","features":[436]},{"name":"SVEEndInputStream","features":[436]},{"name":"SVEPhoneme","features":[436]},{"name":"SVEPrivate","features":[436]},{"name":"SVESentenceBoundary","features":[436]},{"name":"SVEStartInputStream","features":[436]},{"name":"SVEViseme","features":[436]},{"name":"SVEVoiceChange","features":[436]},{"name":"SVEWordBoundary","features":[436]},{"name":"SVF_Emphasis","features":[436]},{"name":"SVF_None","features":[436]},{"name":"SVF_Stressed","features":[436]},{"name":"SVPAlert","features":[436]},{"name":"SVPNormal","features":[436]},{"name":"SVPOver","features":[436]},{"name":"SVP_0","features":[436]},{"name":"SVP_1","features":[436]},{"name":"SVP_10","features":[436]},{"name":"SVP_11","features":[436]},{"name":"SVP_12","features":[436]},{"name":"SVP_13","features":[436]},{"name":"SVP_14","features":[436]},{"name":"SVP_15","features":[436]},{"name":"SVP_16","features":[436]},{"name":"SVP_17","features":[436]},{"name":"SVP_18","features":[436]},{"name":"SVP_19","features":[436]},{"name":"SVP_2","features":[436]},{"name":"SVP_20","features":[436]},{"name":"SVP_21","features":[436]},{"name":"SVP_3","features":[436]},{"name":"SVP_4","features":[436]},{"name":"SVP_5","features":[436]},{"name":"SVP_6","features":[436]},{"name":"SVP_7","features":[436]},{"name":"SVP_8","features":[436]},{"name":"SVP_9","features":[436]},{"name":"SVSFDefault","features":[436]},{"name":"SVSFIsFilename","features":[436]},{"name":"SVSFIsNotXML","features":[436]},{"name":"SVSFIsXML","features":[436]},{"name":"SVSFNLPMask","features":[436]},{"name":"SVSFNLPSpeakPunc","features":[436]},{"name":"SVSFParseAutodetect","features":[436]},{"name":"SVSFParseMask","features":[436]},{"name":"SVSFParseSapi","features":[436]},{"name":"SVSFParseSsml","features":[436]},{"name":"SVSFPersistXML","features":[436]},{"name":"SVSFPurgeBeforeSpeak","features":[436]},{"name":"SVSFUnusedFlags","features":[436]},{"name":"SVSFVoiceMask","features":[436]},{"name":"SVSFlagsAsync","features":[436]},{"name":"SWPKnownWordPronounceable","features":[436]},{"name":"SWPUnknownWordPronounceable","features":[436]},{"name":"SWPUnknownWordUnpronounceable","features":[436]},{"name":"SWTAdded","features":[436]},{"name":"SWTDeleted","features":[436]},{"name":"SpAudioFormat","features":[436]},{"name":"SpCompressedLexicon","features":[436]},{"name":"SpCustomStream","features":[436]},{"name":"SpDataKey","features":[436]},{"name":"SpFileStream","features":[436]},{"name":"SpGramCompBackend","features":[436]},{"name":"SpGrammarCompiler","features":[436]},{"name":"SpITNProcessor","features":[436]},{"name":"SpInProcRecoContext","features":[436]},{"name":"SpInprocRecognizer","features":[436]},{"name":"SpLexicon","features":[436]},{"name":"SpMMAudioEnum","features":[436]},{"name":"SpMMAudioIn","features":[436]},{"name":"SpMMAudioOut","features":[436]},{"name":"SpMemoryStream","features":[436]},{"name":"SpNotifyTranslator","features":[436]},{"name":"SpNullPhoneConverter","features":[436]},{"name":"SpObjectToken","features":[436]},{"name":"SpObjectTokenCategory","features":[436]},{"name":"SpObjectTokenEnum","features":[436]},{"name":"SpPhoneConverter","features":[436]},{"name":"SpPhoneticAlphabetConverter","features":[436]},{"name":"SpPhraseBuilder","features":[436]},{"name":"SpPhraseInfoBuilder","features":[436]},{"name":"SpResourceManager","features":[436]},{"name":"SpSharedRecoContext","features":[436]},{"name":"SpSharedRecognizer","features":[436]},{"name":"SpShortcut","features":[436]},{"name":"SpStream","features":[436]},{"name":"SpStreamFormatConverter","features":[436]},{"name":"SpTextSelectionInformation","features":[436]},{"name":"SpUnCompressedLexicon","features":[436]},{"name":"SpVoice","features":[436]},{"name":"SpW3CGrammarCompiler","features":[436]},{"name":"SpWaveFormatEx","features":[436]},{"name":"SpeechAllElements","features":[436]},{"name":"SpeechAudioFormatType","features":[436]},{"name":"SpeechAudioState","features":[436]},{"name":"SpeechBookmarkOptions","features":[436]},{"name":"SpeechDataKeyLocation","features":[436]},{"name":"SpeechDiscardType","features":[436]},{"name":"SpeechDisplayAttributes","features":[436]},{"name":"SpeechEmulationCompareFlags","features":[436]},{"name":"SpeechEngineConfidence","features":[436]},{"name":"SpeechFormatType","features":[436]},{"name":"SpeechGrammarRuleStateTransitionType","features":[436]},{"name":"SpeechGrammarState","features":[436]},{"name":"SpeechGrammarWordType","features":[436]},{"name":"SpeechInterference","features":[436]},{"name":"SpeechLexiconType","features":[436]},{"name":"SpeechLoadOption","features":[436]},{"name":"SpeechPartOfSpeech","features":[436]},{"name":"SpeechRecoContextState","features":[436]},{"name":"SpeechRecoEvents","features":[436]},{"name":"SpeechRecognitionType","features":[436]},{"name":"SpeechRecognizerState","features":[436]},{"name":"SpeechRetainedAudioOptions","features":[436]},{"name":"SpeechRuleAttributes","features":[436]},{"name":"SpeechRuleState","features":[436]},{"name":"SpeechRunState","features":[436]},{"name":"SpeechSpecialTransitionType","features":[436]},{"name":"SpeechStreamFileMode","features":[436]},{"name":"SpeechStreamSeekPositionType","features":[436]},{"name":"SpeechTokenContext","features":[436]},{"name":"SpeechTokenShellFolder","features":[436]},{"name":"SpeechVisemeFeature","features":[436]},{"name":"SpeechVisemeType","features":[436]},{"name":"SpeechVoiceEvents","features":[436]},{"name":"SpeechVoicePriority","features":[436]},{"name":"SpeechVoiceSpeakFlags","features":[436]},{"name":"SpeechWordPronounceable","features":[436]},{"name":"SpeechWordType","features":[436]},{"name":"Speech_Default_Weight","features":[436]},{"name":"Speech_Max_Pron_Length","features":[436]},{"name":"Speech_Max_Word_Length","features":[436]},{"name":"Speech_StreamPos_Asap","features":[436]},{"name":"Speech_StreamPos_RealTime","features":[436]},{"name":"Subsequence","features":[436]},{"name":"SubsequenceContentRequired","features":[436]},{"name":"_ISpPrivateEngineCall","features":[436]},{"name":"_ISpeechRecoContextEvents","features":[436,354]},{"name":"_ISpeechVoiceEvents","features":[436,354]},{"name":"eLEXTYPE_APP","features":[436]},{"name":"eLEXTYPE_LETTERTOSOUND","features":[436]},{"name":"eLEXTYPE_MORPHOLOGY","features":[436]},{"name":"eLEXTYPE_PRIVATE1","features":[436]},{"name":"eLEXTYPE_PRIVATE10","features":[436]},{"name":"eLEXTYPE_PRIVATE11","features":[436]},{"name":"eLEXTYPE_PRIVATE12","features":[436]},{"name":"eLEXTYPE_PRIVATE13","features":[436]},{"name":"eLEXTYPE_PRIVATE14","features":[436]},{"name":"eLEXTYPE_PRIVATE15","features":[436]},{"name":"eLEXTYPE_PRIVATE16","features":[436]},{"name":"eLEXTYPE_PRIVATE17","features":[436]},{"name":"eLEXTYPE_PRIVATE18","features":[436]},{"name":"eLEXTYPE_PRIVATE19","features":[436]},{"name":"eLEXTYPE_PRIVATE2","features":[436]},{"name":"eLEXTYPE_PRIVATE20","features":[436]},{"name":"eLEXTYPE_PRIVATE3","features":[436]},{"name":"eLEXTYPE_PRIVATE4","features":[436]},{"name":"eLEXTYPE_PRIVATE5","features":[436]},{"name":"eLEXTYPE_PRIVATE6","features":[436]},{"name":"eLEXTYPE_PRIVATE7","features":[436]},{"name":"eLEXTYPE_PRIVATE8","features":[436]},{"name":"eLEXTYPE_PRIVATE9","features":[436]},{"name":"eLEXTYPE_RESERVED10","features":[436]},{"name":"eLEXTYPE_RESERVED4","features":[436]},{"name":"eLEXTYPE_RESERVED6","features":[436]},{"name":"eLEXTYPE_RESERVED7","features":[436]},{"name":"eLEXTYPE_RESERVED8","features":[436]},{"name":"eLEXTYPE_RESERVED9","features":[436]},{"name":"eLEXTYPE_USER","features":[436]},{"name":"eLEXTYPE_USER_SHORTCUT","features":[436]},{"name":"eLEXTYPE_VENDORLEXICON","features":[436]},{"name":"ePRONFLAG_USED","features":[436]},{"name":"eWORDTYPE_ADDED","features":[436]},{"name":"eWORDTYPE_DELETED","features":[436]}],"441":[{"name":"CapturedMetadataExposureCompensation","features":[437]},{"name":"CapturedMetadataISOGains","features":[437]},{"name":"CapturedMetadataWhiteBalanceGains","features":[437]},{"name":"DEVPKEY_Device_DLNACAP","features":[336,437]},{"name":"DEVPKEY_Device_DLNADOC","features":[336,437]},{"name":"DEVPKEY_Device_MaxVolume","features":[336,437]},{"name":"DEVPKEY_Device_PacketWakeSupported","features":[336,437]},{"name":"DEVPKEY_Device_SendPacketWakeSupported","features":[336,437]},{"name":"DEVPKEY_Device_SinkProtocolInfo","features":[336,437]},{"name":"DEVPKEY_Device_SupportsAudio","features":[336,437]},{"name":"DEVPKEY_Device_SupportsImages","features":[336,437]},{"name":"DEVPKEY_Device_SupportsMute","features":[336,437]},{"name":"DEVPKEY_Device_SupportsSearch","features":[336,437]},{"name":"DEVPKEY_Device_SupportsSetNextAVT","features":[336,437]},{"name":"DEVPKEY_Device_SupportsVideo","features":[336,437]},{"name":"DEVPKEY_Device_UDN","features":[336,437]},{"name":"FaceCharacterization","features":[437]},{"name":"FaceCharacterizationBlobHeader","features":[437]},{"name":"FaceRectInfo","features":[303,437]},{"name":"FaceRectInfoBlobHeader","features":[437]},{"name":"GUID_DEVINTERFACE_DMP","features":[437]},{"name":"GUID_DEVINTERFACE_DMR","features":[437]},{"name":"GUID_DEVINTERFACE_DMS","features":[437]},{"name":"HistogramBlobHeader","features":[437]},{"name":"HistogramDataHeader","features":[437]},{"name":"HistogramGrid","features":[303,437]},{"name":"HistogramHeader","features":[303,437]},{"name":"MF_MEDIASOURCE_STATUS_INFO","features":[437]},{"name":"MF_MEDIASOURCE_STATUS_INFO_FULLYSUPPORTED","features":[437]},{"name":"MF_MEDIASOURCE_STATUS_INFO_UNKNOWN","features":[437]},{"name":"MF_TRANSFER_VIDEO_FRAME_DEFAULT","features":[437]},{"name":"MF_TRANSFER_VIDEO_FRAME_FLAGS","features":[437]},{"name":"MF_TRANSFER_VIDEO_FRAME_IGNORE_PAR","features":[437]},{"name":"MF_TRANSFER_VIDEO_FRAME_STRETCH","features":[437]},{"name":"MetadataTimeStamps","features":[437]}],"442":[{"name":"AM_CONFIGASFWRITER_PARAM_AUTOINDEX","features":[438]},{"name":"AM_CONFIGASFWRITER_PARAM_DONTCOMPRESS","features":[438]},{"name":"AM_CONFIGASFWRITER_PARAM_MULTIPASS","features":[438]},{"name":"AM_WMT_EVENT_DATA","features":[438]},{"name":"CLSID_ClientNetManager","features":[438]},{"name":"CLSID_WMBandwidthSharing_Exclusive","features":[438]},{"name":"CLSID_WMBandwidthSharing_Partial","features":[438]},{"name":"CLSID_WMMUTEX_Bitrate","features":[438]},{"name":"CLSID_WMMUTEX_Language","features":[438]},{"name":"CLSID_WMMUTEX_Presentation","features":[438]},{"name":"CLSID_WMMUTEX_Unknown","features":[438]},{"name":"DRM_COPY_OPL","features":[438]},{"name":"DRM_MINIMUM_OUTPUT_PROTECTION_LEVELS","features":[438]},{"name":"DRM_OPL_OUTPUT_IDS","features":[438]},{"name":"DRM_OPL_TYPES","features":[438]},{"name":"DRM_OUTPUT_PROTECTION","features":[438]},{"name":"DRM_PLAY_OPL","features":[438]},{"name":"DRM_VAL16","features":[438]},{"name":"DRM_VIDEO_OUTPUT_PROTECTION_IDS","features":[438]},{"name":"INSNetSourceCreator","features":[438]},{"name":"INSSBuffer","features":[438]},{"name":"INSSBuffer2","features":[438]},{"name":"INSSBuffer3","features":[438]},{"name":"INSSBuffer4","features":[438]},{"name":"IWMAddressAccess","features":[438]},{"name":"IWMAddressAccess2","features":[438]},{"name":"IWMAuthorizer","features":[438]},{"name":"IWMBackupRestoreProps","features":[438]},{"name":"IWMBandwidthSharing","features":[438]},{"name":"IWMClientConnections","features":[438]},{"name":"IWMClientConnections2","features":[438]},{"name":"IWMCodecInfo","features":[438]},{"name":"IWMCodecInfo2","features":[438]},{"name":"IWMCodecInfo3","features":[438]},{"name":"IWMCredentialCallback","features":[438]},{"name":"IWMDRMEditor","features":[438]},{"name":"IWMDRMMessageParser","features":[438]},{"name":"IWMDRMReader","features":[438]},{"name":"IWMDRMReader2","features":[438]},{"name":"IWMDRMReader3","features":[438]},{"name":"IWMDRMTranscryptionManager","features":[438]},{"name":"IWMDRMTranscryptor","features":[438]},{"name":"IWMDRMTranscryptor2","features":[438]},{"name":"IWMDRMWriter","features":[438]},{"name":"IWMDRMWriter2","features":[438]},{"name":"IWMDRMWriter3","features":[438]},{"name":"IWMDeviceRegistration","features":[438]},{"name":"IWMGetSecureChannel","features":[438]},{"name":"IWMHeaderInfo","features":[438]},{"name":"IWMHeaderInfo2","features":[438]},{"name":"IWMHeaderInfo3","features":[438]},{"name":"IWMIStreamProps","features":[438]},{"name":"IWMImageInfo","features":[438]},{"name":"IWMIndexer","features":[438]},{"name":"IWMIndexer2","features":[438]},{"name":"IWMInputMediaProps","features":[438]},{"name":"IWMLanguageList","features":[438]},{"name":"IWMLicenseBackup","features":[438]},{"name":"IWMLicenseRestore","features":[438]},{"name":"IWMLicenseRevocationAgent","features":[438]},{"name":"IWMMediaProps","features":[438]},{"name":"IWMMetadataEditor","features":[438]},{"name":"IWMMetadataEditor2","features":[438]},{"name":"IWMMutualExclusion","features":[438]},{"name":"IWMMutualExclusion2","features":[438]},{"name":"IWMOutputMediaProps","features":[438]},{"name":"IWMPacketSize","features":[438]},{"name":"IWMPacketSize2","features":[438]},{"name":"IWMPlayerHook","features":[438]},{"name":"IWMPlayerTimestampHook","features":[438]},{"name":"IWMProfile","features":[438]},{"name":"IWMProfile2","features":[438]},{"name":"IWMProfile3","features":[438]},{"name":"IWMProfileManager","features":[438]},{"name":"IWMProfileManager2","features":[438]},{"name":"IWMProfileManagerLanguage","features":[438]},{"name":"IWMPropertyVault","features":[438]},{"name":"IWMProximityDetection","features":[438]},{"name":"IWMReader","features":[438]},{"name":"IWMReaderAccelerator","features":[438]},{"name":"IWMReaderAdvanced","features":[438]},{"name":"IWMReaderAdvanced2","features":[438]},{"name":"IWMReaderAdvanced3","features":[438]},{"name":"IWMReaderAdvanced4","features":[438]},{"name":"IWMReaderAdvanced5","features":[438]},{"name":"IWMReaderAdvanced6","features":[438]},{"name":"IWMReaderAllocatorEx","features":[438]},{"name":"IWMReaderCallback","features":[438]},{"name":"IWMReaderCallbackAdvanced","features":[438]},{"name":"IWMReaderNetworkConfig","features":[438]},{"name":"IWMReaderNetworkConfig2","features":[438]},{"name":"IWMReaderPlaylistBurn","features":[438]},{"name":"IWMReaderStreamClock","features":[438]},{"name":"IWMReaderTimecode","features":[438]},{"name":"IWMReaderTypeNegotiation","features":[438]},{"name":"IWMRegisterCallback","features":[438]},{"name":"IWMRegisteredDevice","features":[438]},{"name":"IWMSBufferAllocator","features":[438]},{"name":"IWMSInternalAdminNetSource","features":[438]},{"name":"IWMSInternalAdminNetSource2","features":[438]},{"name":"IWMSInternalAdminNetSource3","features":[438]},{"name":"IWMSecureChannel","features":[438]},{"name":"IWMStatusCallback","features":[438]},{"name":"IWMStreamConfig","features":[438]},{"name":"IWMStreamConfig2","features":[438]},{"name":"IWMStreamConfig3","features":[438]},{"name":"IWMStreamList","features":[438]},{"name":"IWMStreamPrioritization","features":[438]},{"name":"IWMSyncReader","features":[438]},{"name":"IWMSyncReader2","features":[438]},{"name":"IWMVideoMediaProps","features":[438]},{"name":"IWMWatermarkInfo","features":[438]},{"name":"IWMWriter","features":[438]},{"name":"IWMWriterAdvanced","features":[438]},{"name":"IWMWriterAdvanced2","features":[438]},{"name":"IWMWriterAdvanced3","features":[438]},{"name":"IWMWriterFileSink","features":[438]},{"name":"IWMWriterFileSink2","features":[438]},{"name":"IWMWriterFileSink3","features":[438]},{"name":"IWMWriterNetworkSink","features":[438]},{"name":"IWMWriterPostView","features":[438]},{"name":"IWMWriterPostViewCallback","features":[438]},{"name":"IWMWriterPreprocess","features":[438]},{"name":"IWMWriterPushSink","features":[438]},{"name":"IWMWriterSink","features":[438]},{"name":"NETSOURCE_URLCREDPOLICY_SETTINGS","features":[438]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_ANONYMOUSONLY","features":[438]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_MUSTPROMPTUSER","features":[438]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_SILENTLOGONOK","features":[438]},{"name":"WEBSTREAM_SAMPLE_TYPE","features":[438]},{"name":"WEBSTREAM_SAMPLE_TYPE_FILE","features":[438]},{"name":"WEBSTREAM_SAMPLE_TYPE_RENDER","features":[438]},{"name":"WMCreateBackupRestorer","features":[438]},{"name":"WMCreateEditor","features":[438]},{"name":"WMCreateIndexer","features":[438]},{"name":"WMCreateProfileManager","features":[438]},{"name":"WMCreateReader","features":[438]},{"name":"WMCreateSyncReader","features":[438]},{"name":"WMCreateWriter","features":[438]},{"name":"WMCreateWriterFileSink","features":[438]},{"name":"WMCreateWriterNetworkSink","features":[438]},{"name":"WMCreateWriterPushSink","features":[438]},{"name":"WMDRM_IMPORT_INIT_STRUCT","features":[438]},{"name":"WMDRM_IMPORT_INIT_STRUCT_DEFINED","features":[438]},{"name":"WMFORMAT_MPEG2Video","features":[438]},{"name":"WMFORMAT_Script","features":[438]},{"name":"WMFORMAT_VideoInfo","features":[438]},{"name":"WMFORMAT_WaveFormatEx","features":[438]},{"name":"WMFORMAT_WebStream","features":[438]},{"name":"WMIsContentProtected","features":[303,438]},{"name":"WMMEDIASUBTYPE_ACELPnet","features":[438]},{"name":"WMMEDIASUBTYPE_Base","features":[438]},{"name":"WMMEDIASUBTYPE_DRM","features":[438]},{"name":"WMMEDIASUBTYPE_I420","features":[438]},{"name":"WMMEDIASUBTYPE_IYUV","features":[438]},{"name":"WMMEDIASUBTYPE_M4S2","features":[438]},{"name":"WMMEDIASUBTYPE_MP3","features":[438]},{"name":"WMMEDIASUBTYPE_MP43","features":[438]},{"name":"WMMEDIASUBTYPE_MP4S","features":[438]},{"name":"WMMEDIASUBTYPE_MPEG2_VIDEO","features":[438]},{"name":"WMMEDIASUBTYPE_MSS1","features":[438]},{"name":"WMMEDIASUBTYPE_MSS2","features":[438]},{"name":"WMMEDIASUBTYPE_P422","features":[438]},{"name":"WMMEDIASUBTYPE_PCM","features":[438]},{"name":"WMMEDIASUBTYPE_RGB1","features":[438]},{"name":"WMMEDIASUBTYPE_RGB24","features":[438]},{"name":"WMMEDIASUBTYPE_RGB32","features":[438]},{"name":"WMMEDIASUBTYPE_RGB4","features":[438]},{"name":"WMMEDIASUBTYPE_RGB555","features":[438]},{"name":"WMMEDIASUBTYPE_RGB565","features":[438]},{"name":"WMMEDIASUBTYPE_RGB8","features":[438]},{"name":"WMMEDIASUBTYPE_UYVY","features":[438]},{"name":"WMMEDIASUBTYPE_VIDEOIMAGE","features":[438]},{"name":"WMMEDIASUBTYPE_WMAudioV2","features":[438]},{"name":"WMMEDIASUBTYPE_WMAudioV7","features":[438]},{"name":"WMMEDIASUBTYPE_WMAudioV8","features":[438]},{"name":"WMMEDIASUBTYPE_WMAudioV9","features":[438]},{"name":"WMMEDIASUBTYPE_WMAudio_Lossless","features":[438]},{"name":"WMMEDIASUBTYPE_WMSP1","features":[438]},{"name":"WMMEDIASUBTYPE_WMSP2","features":[438]},{"name":"WMMEDIASUBTYPE_WMV1","features":[438]},{"name":"WMMEDIASUBTYPE_WMV2","features":[438]},{"name":"WMMEDIASUBTYPE_WMV3","features":[438]},{"name":"WMMEDIASUBTYPE_WMVA","features":[438]},{"name":"WMMEDIASUBTYPE_WMVP","features":[438]},{"name":"WMMEDIASUBTYPE_WVC1","features":[438]},{"name":"WMMEDIASUBTYPE_WVP2","features":[438]},{"name":"WMMEDIASUBTYPE_WebStream","features":[438]},{"name":"WMMEDIASUBTYPE_YUY2","features":[438]},{"name":"WMMEDIASUBTYPE_YV12","features":[438]},{"name":"WMMEDIASUBTYPE_YVU9","features":[438]},{"name":"WMMEDIASUBTYPE_YVYU","features":[438]},{"name":"WMMEDIATYPE_Audio","features":[438]},{"name":"WMMEDIATYPE_FileTransfer","features":[438]},{"name":"WMMEDIATYPE_Image","features":[438]},{"name":"WMMEDIATYPE_Script","features":[438]},{"name":"WMMEDIATYPE_Text","features":[438]},{"name":"WMMEDIATYPE_Video","features":[438]},{"name":"WMMPEG2VIDEOINFO","features":[303,314,438]},{"name":"WMSCRIPTFORMAT","features":[438]},{"name":"WMSCRIPTTYPE_TwoStrings","features":[438]},{"name":"WMT_ACQUIRE_LICENSE","features":[438]},{"name":"WMT_ATTR_DATATYPE","features":[438]},{"name":"WMT_ATTR_IMAGETYPE","features":[438]},{"name":"WMT_BACKUPRESTORE_BEGIN","features":[438]},{"name":"WMT_BACKUPRESTORE_CONNECTING","features":[438]},{"name":"WMT_BACKUPRESTORE_DISCONNECTING","features":[438]},{"name":"WMT_BACKUPRESTORE_END","features":[438]},{"name":"WMT_BUFFERING_START","features":[438]},{"name":"WMT_BUFFERING_STOP","features":[438]},{"name":"WMT_BUFFER_SEGMENT","features":[438]},{"name":"WMT_CLEANPOINT_ONLY","features":[438]},{"name":"WMT_CLIENT_CONNECT","features":[438]},{"name":"WMT_CLIENT_CONNECT_EX","features":[438]},{"name":"WMT_CLIENT_DISCONNECT","features":[438]},{"name":"WMT_CLIENT_DISCONNECT_EX","features":[438]},{"name":"WMT_CLIENT_PROPERTIES","features":[438]},{"name":"WMT_CLOSED","features":[438]},{"name":"WMT_CODECINFO_AUDIO","features":[438]},{"name":"WMT_CODECINFO_UNKNOWN","features":[438]},{"name":"WMT_CODECINFO_VIDEO","features":[438]},{"name":"WMT_CODEC_INFO_TYPE","features":[438]},{"name":"WMT_COLORSPACEINFO_EXTENSION_DATA","features":[438]},{"name":"WMT_CONNECTING","features":[438]},{"name":"WMT_CONTENT_ENABLER","features":[438]},{"name":"WMT_CREDENTIAL_CLEAR_TEXT","features":[438]},{"name":"WMT_CREDENTIAL_DONT_CACHE","features":[438]},{"name":"WMT_CREDENTIAL_ENCRYPT","features":[438]},{"name":"WMT_CREDENTIAL_FLAGS","features":[438]},{"name":"WMT_CREDENTIAL_PROXY","features":[438]},{"name":"WMT_CREDENTIAL_SAVE","features":[438]},{"name":"WMT_DMOCATEGORY_AUDIO_WATERMARK","features":[438]},{"name":"WMT_DMOCATEGORY_VIDEO_WATERMARK","features":[438]},{"name":"WMT_DRMLA_TAMPERED","features":[438]},{"name":"WMT_DRMLA_TRUST","features":[438]},{"name":"WMT_DRMLA_TRUSTED","features":[438]},{"name":"WMT_DRMLA_UNTRUSTED","features":[438]},{"name":"WMT_END_OF_FILE","features":[438]},{"name":"WMT_END_OF_SEGMENT","features":[438]},{"name":"WMT_END_OF_STREAMING","features":[438]},{"name":"WMT_EOF","features":[438]},{"name":"WMT_ERROR","features":[438]},{"name":"WMT_ERROR_WITHURL","features":[438]},{"name":"WMT_FILESINK_DATA_UNIT","features":[438]},{"name":"WMT_FILESINK_MODE","features":[438]},{"name":"WMT_FM_FILESINK_DATA_UNITS","features":[438]},{"name":"WMT_FM_FILESINK_UNBUFFERED","features":[438]},{"name":"WMT_FM_SINGLE_BUFFERS","features":[438]},{"name":"WMT_IMAGETYPE_BITMAP","features":[438]},{"name":"WMT_IMAGETYPE_GIF","features":[438]},{"name":"WMT_IMAGETYPE_JPEG","features":[438]},{"name":"WMT_IMAGE_TYPE","features":[438]},{"name":"WMT_INDEXER_TYPE","features":[438]},{"name":"WMT_INDEX_PROGRESS","features":[438]},{"name":"WMT_INDEX_TYPE","features":[438]},{"name":"WMT_INDIVIDUALIZE","features":[438]},{"name":"WMT_INIT_PLAYLIST_BURN","features":[438]},{"name":"WMT_IT_BITMAP","features":[438]},{"name":"WMT_IT_FRAME_NUMBERS","features":[438]},{"name":"WMT_IT_GIF","features":[438]},{"name":"WMT_IT_JPEG","features":[438]},{"name":"WMT_IT_NEAREST_CLEAN_POINT","features":[438]},{"name":"WMT_IT_NEAREST_DATA_UNIT","features":[438]},{"name":"WMT_IT_NEAREST_OBJECT","features":[438]},{"name":"WMT_IT_NONE","features":[438]},{"name":"WMT_IT_PRESENTATION_TIME","features":[438]},{"name":"WMT_IT_TIMECODE","features":[438]},{"name":"WMT_LICENSEURL_SIGNATURE_STATE","features":[438]},{"name":"WMT_LOCATING","features":[438]},{"name":"WMT_MISSING_CODEC","features":[438]},{"name":"WMT_MS_CLASS_MIXED","features":[438]},{"name":"WMT_MS_CLASS_MUSIC","features":[438]},{"name":"WMT_MS_CLASS_SPEECH","features":[438]},{"name":"WMT_MUSICSPEECH_CLASS_MODE","features":[438]},{"name":"WMT_NATIVE_OUTPUT_PROPS_CHANGED","features":[438]},{"name":"WMT_NEEDS_INDIVIDUALIZATION","features":[438]},{"name":"WMT_NET_PROTOCOL","features":[438]},{"name":"WMT_NEW_METADATA","features":[438]},{"name":"WMT_NEW_SOURCEFLAGS","features":[438]},{"name":"WMT_NO_RIGHTS","features":[438]},{"name":"WMT_NO_RIGHTS_EX","features":[438]},{"name":"WMT_OFF","features":[438]},{"name":"WMT_OFFSET_FORMAT","features":[438]},{"name":"WMT_OFFSET_FORMAT_100NS","features":[438]},{"name":"WMT_OFFSET_FORMAT_100NS_APPROXIMATE","features":[438]},{"name":"WMT_OFFSET_FORMAT_FRAME_NUMBERS","features":[438]},{"name":"WMT_OFFSET_FORMAT_PLAYLIST_OFFSET","features":[438]},{"name":"WMT_OFFSET_FORMAT_TIMECODE","features":[438]},{"name":"WMT_ON","features":[438]},{"name":"WMT_OPENED","features":[438]},{"name":"WMT_PAYLOAD_FRAGMENT","features":[438]},{"name":"WMT_PLAY_MODE","features":[438]},{"name":"WMT_PLAY_MODE_AUTOSELECT","features":[438]},{"name":"WMT_PLAY_MODE_DOWNLOAD","features":[438]},{"name":"WMT_PLAY_MODE_LOCAL","features":[438]},{"name":"WMT_PLAY_MODE_STREAMING","features":[438]},{"name":"WMT_PREROLL_COMPLETE","features":[438]},{"name":"WMT_PREROLL_READY","features":[438]},{"name":"WMT_PROTOCOL_HTTP","features":[438]},{"name":"WMT_PROXIMITY_COMPLETED","features":[438]},{"name":"WMT_PROXIMITY_RESULT","features":[438]},{"name":"WMT_PROXY_SETTINGS","features":[438]},{"name":"WMT_PROXY_SETTING_AUTO","features":[438]},{"name":"WMT_PROXY_SETTING_BROWSER","features":[438]},{"name":"WMT_PROXY_SETTING_MANUAL","features":[438]},{"name":"WMT_PROXY_SETTING_MAX","features":[438]},{"name":"WMT_PROXY_SETTING_NONE","features":[438]},{"name":"WMT_RECONNECT_END","features":[438]},{"name":"WMT_RECONNECT_START","features":[438]},{"name":"WMT_RESTRICTED_LICENSE","features":[438]},{"name":"WMT_RIGHTS","features":[438]},{"name":"WMT_RIGHT_COLLABORATIVE_PLAY","features":[438]},{"name":"WMT_RIGHT_COPY","features":[438]},{"name":"WMT_RIGHT_COPY_TO_CD","features":[438]},{"name":"WMT_RIGHT_COPY_TO_NON_SDMI_DEVICE","features":[438]},{"name":"WMT_RIGHT_COPY_TO_SDMI_DEVICE","features":[438]},{"name":"WMT_RIGHT_ONE_TIME","features":[438]},{"name":"WMT_RIGHT_PLAYBACK","features":[438]},{"name":"WMT_RIGHT_SAVE_STREAM_PROTECTED","features":[438]},{"name":"WMT_RIGHT_SDMI_NOMORECOPIES","features":[438]},{"name":"WMT_RIGHT_SDMI_TRIGGER","features":[438]},{"name":"WMT_SAVEAS_START","features":[438]},{"name":"WMT_SAVEAS_STOP","features":[438]},{"name":"WMT_SET_FEC_SPAN","features":[438]},{"name":"WMT_SOURCE_SWITCH","features":[438]},{"name":"WMT_STARTED","features":[438]},{"name":"WMT_STATUS","features":[438]},{"name":"WMT_STOPPED","features":[438]},{"name":"WMT_STORAGE_FORMAT","features":[438]},{"name":"WMT_STREAM_SELECTION","features":[438]},{"name":"WMT_STRIDING","features":[438]},{"name":"WMT_Storage_Format_MP3","features":[438]},{"name":"WMT_Storage_Format_V1","features":[438]},{"name":"WMT_TIMECODE_EXTENSION_DATA","features":[438]},{"name":"WMT_TIMECODE_FRAMERATE","features":[438]},{"name":"WMT_TIMECODE_FRAMERATE_24","features":[438]},{"name":"WMT_TIMECODE_FRAMERATE_25","features":[438]},{"name":"WMT_TIMECODE_FRAMERATE_30","features":[438]},{"name":"WMT_TIMECODE_FRAMERATE_30DROP","features":[438]},{"name":"WMT_TIMER","features":[438]},{"name":"WMT_TRANSCRYPTOR_CLOSED","features":[438]},{"name":"WMT_TRANSCRYPTOR_INIT","features":[438]},{"name":"WMT_TRANSCRYPTOR_READ","features":[438]},{"name":"WMT_TRANSCRYPTOR_SEEKED","features":[438]},{"name":"WMT_TRANSPORT_TYPE","features":[438]},{"name":"WMT_TYPE_BINARY","features":[438]},{"name":"WMT_TYPE_BOOL","features":[438]},{"name":"WMT_TYPE_DWORD","features":[438]},{"name":"WMT_TYPE_GUID","features":[438]},{"name":"WMT_TYPE_QWORD","features":[438]},{"name":"WMT_TYPE_STRING","features":[438]},{"name":"WMT_TYPE_WORD","features":[438]},{"name":"WMT_Transport_Type_Reliable","features":[438]},{"name":"WMT_Transport_Type_Unreliable","features":[438]},{"name":"WMT_VERSION","features":[438]},{"name":"WMT_VER_4_0","features":[438]},{"name":"WMT_VER_7_0","features":[438]},{"name":"WMT_VER_8_0","features":[438]},{"name":"WMT_VER_9_0","features":[438]},{"name":"WMT_VIDEOIMAGE_INTEGER_DENOMINATOR","features":[438]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER","features":[438]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER_2","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE2","features":[303,438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ADV_BLENDING","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_BLENDING","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_INPUT_FRAME","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_MOTION","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_OUTPUT_FRAME","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ROTATION","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_CURRENT_INPUT_FRAME","features":[438]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_PREVIOUS_INPUT_FRAME","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_BOW_TIE","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CIRCLE","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CROSS_FADE","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAGONAL","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAMOND","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FADE_TO_COLOR","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FILLED_V","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FLIP","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_INSET","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_IRIS","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_PAGE_ROLL","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_RECTANGLE","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_REVEAL","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SLIDE","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SPLIT","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_STAR","features":[438]},{"name":"WMT_VIDEOIMAGE_TRANSITION_WHEEL","features":[438]},{"name":"WMT_WATERMARK_ENTRY","features":[438]},{"name":"WMT_WATERMARK_ENTRY_TYPE","features":[438]},{"name":"WMT_WEBSTREAM_FORMAT","features":[438]},{"name":"WMT_WEBSTREAM_SAMPLE_HEADER","features":[438]},{"name":"WMT_WMETYPE_AUDIO","features":[438]},{"name":"WMT_WMETYPE_VIDEO","features":[438]},{"name":"WMVIDEOINFOHEADER","features":[303,314,438]},{"name":"WMVIDEOINFOHEADER2","features":[303,314,438]},{"name":"WM_ADDRESS_ACCESSENTRY","features":[438]},{"name":"WM_AETYPE","features":[438]},{"name":"WM_AETYPE_EXCLUDE","features":[438]},{"name":"WM_AETYPE_INCLUDE","features":[438]},{"name":"WM_CLIENT_PROPERTIES","features":[438]},{"name":"WM_CLIENT_PROPERTIES_EX","features":[438]},{"name":"WM_CL_INTERLACED420","features":[438]},{"name":"WM_CL_PROGRESSIVE420","features":[438]},{"name":"WM_CT_BOTTOM_FIELD_FIRST","features":[438]},{"name":"WM_CT_INTERLACED","features":[438]},{"name":"WM_CT_REPEAT_FIRST_FIELD","features":[438]},{"name":"WM_CT_TOP_FIELD_FIRST","features":[438]},{"name":"WM_DM_DEINTERLACE_HALFSIZE","features":[438]},{"name":"WM_DM_DEINTERLACE_HALFSIZEDOUBLERATE","features":[438]},{"name":"WM_DM_DEINTERLACE_INVERSETELECINE","features":[438]},{"name":"WM_DM_DEINTERLACE_NORMAL","features":[438]},{"name":"WM_DM_DEINTERLACE_VERTICALHALFSIZEDOUBLERATE","features":[438]},{"name":"WM_DM_INTERLACED_TYPE","features":[438]},{"name":"WM_DM_IT_DISABLE_COHERENT_MODE","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_COHERENCY","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_BOTTOM","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_TOP","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_BOTTOM","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_TOP","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_BOTTOM","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_TOP","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_BOTTOM","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_TOP","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_BOTTOM","features":[438]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_TOP","features":[438]},{"name":"WM_DM_NOTINTERLACED","features":[438]},{"name":"WM_LEAKY_BUCKET_PAIR","features":[438]},{"name":"WM_MAX_STREAMS","features":[438]},{"name":"WM_MAX_VIDEO_STREAMS","features":[438]},{"name":"WM_MEDIA_TYPE","features":[303,438]},{"name":"WM_PICTURE","features":[438]},{"name":"WM_PLAYBACK_DRC_HIGH","features":[438]},{"name":"WM_PLAYBACK_DRC_LEVEL","features":[438]},{"name":"WM_PLAYBACK_DRC_LOW","features":[438]},{"name":"WM_PLAYBACK_DRC_MEDIUM","features":[438]},{"name":"WM_PORT_NUMBER_RANGE","features":[438]},{"name":"WM_READER_CLIENTINFO","features":[303,438]},{"name":"WM_READER_STATISTICS","features":[438]},{"name":"WM_SFEX_DATALOSS","features":[438]},{"name":"WM_SFEX_NOTASYNCPOINT","features":[438]},{"name":"WM_SFEX_TYPE","features":[438]},{"name":"WM_SF_CLEANPOINT","features":[438]},{"name":"WM_SF_DATALOSS","features":[438]},{"name":"WM_SF_DISCONTINUITY","features":[438]},{"name":"WM_SF_TYPE","features":[438]},{"name":"WM_STREAM_PRIORITY_RECORD","features":[303,438]},{"name":"WM_STREAM_TYPE_INFO","features":[438]},{"name":"WM_SYNCHRONISED_LYRICS","features":[438]},{"name":"WM_SampleExtensionGUID_ChromaLocation","features":[438]},{"name":"WM_SampleExtensionGUID_ColorSpaceInfo","features":[438]},{"name":"WM_SampleExtensionGUID_ContentType","features":[438]},{"name":"WM_SampleExtensionGUID_FileName","features":[438]},{"name":"WM_SampleExtensionGUID_OutputCleanPoint","features":[438]},{"name":"WM_SampleExtensionGUID_PixelAspectRatio","features":[438]},{"name":"WM_SampleExtensionGUID_SampleDuration","features":[438]},{"name":"WM_SampleExtensionGUID_SampleProtectionSalt","features":[438]},{"name":"WM_SampleExtensionGUID_Timecode","features":[438]},{"name":"WM_SampleExtensionGUID_UserDataInfo","features":[438]},{"name":"WM_SampleExtension_ChromaLocation_Size","features":[438]},{"name":"WM_SampleExtension_ColorSpaceInfo_Size","features":[438]},{"name":"WM_SampleExtension_ContentType_Size","features":[438]},{"name":"WM_SampleExtension_PixelAspectRatio_Size","features":[438]},{"name":"WM_SampleExtension_SampleDuration_Size","features":[438]},{"name":"WM_SampleExtension_Timecode_Size","features":[438]},{"name":"WM_USER_TEXT","features":[438]},{"name":"WM_USER_WEB_URL","features":[438]},{"name":"WM_WRITER_STATISTICS","features":[438]},{"name":"WM_WRITER_STATISTICS_EX","features":[438]},{"name":"_AM_ASFWRITERCONFIG_PARAM","features":[438]},{"name":"g_dwWMContentAttributes","features":[438]},{"name":"g_dwWMNSCAttributes","features":[438]},{"name":"g_dwWMSpecialAttributes","features":[438]},{"name":"g_wszASFLeakyBucketPairs","features":[438]},{"name":"g_wszAllowInterlacedOutput","features":[438]},{"name":"g_wszAverageLevel","features":[438]},{"name":"g_wszBufferAverage","features":[438]},{"name":"g_wszComplexity","features":[438]},{"name":"g_wszComplexityLive","features":[438]},{"name":"g_wszComplexityMax","features":[438]},{"name":"g_wszComplexityOffline","features":[438]},{"name":"g_wszDecoderComplexityRequested","features":[438]},{"name":"g_wszDedicatedDeliveryThread","features":[438]},{"name":"g_wszDeinterlaceMode","features":[438]},{"name":"g_wszDeliverOnReceive","features":[438]},{"name":"g_wszDeviceConformanceTemplate","features":[438]},{"name":"g_wszDynamicRangeControl","features":[438]},{"name":"g_wszEDL","features":[438]},{"name":"g_wszEarlyDataDelivery","features":[438]},{"name":"g_wszEnableDiscreteOutput","features":[438]},{"name":"g_wszEnableFrameInterpolation","features":[438]},{"name":"g_wszEnableWMAProSPDIFOutput","features":[438]},{"name":"g_wszFailSeekOnError","features":[438]},{"name":"g_wszFixedFrameRate","features":[438]},{"name":"g_wszFold6To2Channels3","features":[438]},{"name":"g_wszFoldToChannelsTemplate","features":[438]},{"name":"g_wszInitialPatternForInverseTelecine","features":[438]},{"name":"g_wszInterlacedCoding","features":[438]},{"name":"g_wszIsVBRSupported","features":[438]},{"name":"g_wszJPEGCompressionQuality","features":[438]},{"name":"g_wszJustInTimeDecode","features":[438]},{"name":"g_wszMixedClassMode","features":[438]},{"name":"g_wszMusicClassMode","features":[438]},{"name":"g_wszMusicSpeechClassMode","features":[438]},{"name":"g_wszNeedsPreviousSample","features":[438]},{"name":"g_wszNumPasses","features":[438]},{"name":"g_wszOriginalSourceFormatTag","features":[438]},{"name":"g_wszOriginalWaveFormat","features":[438]},{"name":"g_wszPeakValue","features":[438]},{"name":"g_wszPermitSeeksBeyondEndOfStream","features":[438]},{"name":"g_wszReloadIndexOnSeek","features":[438]},{"name":"g_wszScrambledAudio","features":[438]},{"name":"g_wszSingleOutputBuffer","features":[438]},{"name":"g_wszSoftwareScaling","features":[438]},{"name":"g_wszSourceBufferTime","features":[438]},{"name":"g_wszSourceMaxBytesAtOnce","features":[438]},{"name":"g_wszSpeakerConfig","features":[438]},{"name":"g_wszSpeechCaps","features":[438]},{"name":"g_wszSpeechClassMode","features":[438]},{"name":"g_wszStreamLanguage","features":[438]},{"name":"g_wszStreamNumIndexObjects","features":[438]},{"name":"g_wszUsePacketAtSeekPoint","features":[438]},{"name":"g_wszVBRBitrateMax","features":[438]},{"name":"g_wszVBRBufferWindowMax","features":[438]},{"name":"g_wszVBREnabled","features":[438]},{"name":"g_wszVBRPeak","features":[438]},{"name":"g_wszVBRQuality","features":[438]},{"name":"g_wszVideoSampleDurations","features":[438]},{"name":"g_wszWMADID","features":[438]},{"name":"g_wszWMASFPacketCount","features":[438]},{"name":"g_wszWMASFSecurityObjectsSize","features":[438]},{"name":"g_wszWMAlbumArtist","features":[438]},{"name":"g_wszWMAlbumArtistSort","features":[438]},{"name":"g_wszWMAlbumCoverURL","features":[438]},{"name":"g_wszWMAlbumTitle","features":[438]},{"name":"g_wszWMAlbumTitleSort","features":[438]},{"name":"g_wszWMAspectRatioX","features":[438]},{"name":"g_wszWMAspectRatioY","features":[438]},{"name":"g_wszWMAudioFileURL","features":[438]},{"name":"g_wszWMAudioSourceURL","features":[438]},{"name":"g_wszWMAuthor","features":[438]},{"name":"g_wszWMAuthorSort","features":[438]},{"name":"g_wszWMAuthorURL","features":[438]},{"name":"g_wszWMBannerImageData","features":[438]},{"name":"g_wszWMBannerImageType","features":[438]},{"name":"g_wszWMBannerImageURL","features":[438]},{"name":"g_wszWMBeatsPerMinute","features":[438]},{"name":"g_wszWMBitrate","features":[438]},{"name":"g_wszWMBroadcast","features":[438]},{"name":"g_wszWMCategory","features":[438]},{"name":"g_wszWMCodec","features":[438]},{"name":"g_wszWMComposer","features":[438]},{"name":"g_wszWMComposerSort","features":[438]},{"name":"g_wszWMConductor","features":[438]},{"name":"g_wszWMContainerFormat","features":[438]},{"name":"g_wszWMContentDistributor","features":[438]},{"name":"g_wszWMContentGroupDescription","features":[438]},{"name":"g_wszWMCopyright","features":[438]},{"name":"g_wszWMCopyrightURL","features":[438]},{"name":"g_wszWMCurrentBitrate","features":[438]},{"name":"g_wszWMDRM","features":[438]},{"name":"g_wszWMDRM_ContentID","features":[438]},{"name":"g_wszWMDRM_Flags","features":[438]},{"name":"g_wszWMDRM_HeaderSignPrivKey","features":[438]},{"name":"g_wszWMDRM_IndividualizedVersion","features":[438]},{"name":"g_wszWMDRM_KeyID","features":[438]},{"name":"g_wszWMDRM_KeySeed","features":[438]},{"name":"g_wszWMDRM_LASignatureCert","features":[438]},{"name":"g_wszWMDRM_LASignatureLicSrvCert","features":[438]},{"name":"g_wszWMDRM_LASignaturePrivKey","features":[438]},{"name":"g_wszWMDRM_LASignatureRootCert","features":[438]},{"name":"g_wszWMDRM_Level","features":[438]},{"name":"g_wszWMDRM_LicenseAcqURL","features":[438]},{"name":"g_wszWMDRM_SourceID","features":[438]},{"name":"g_wszWMDRM_V1LicenseAcqURL","features":[438]},{"name":"g_wszWMDVDID","features":[438]},{"name":"g_wszWMDescription","features":[438]},{"name":"g_wszWMDirector","features":[438]},{"name":"g_wszWMDuration","features":[438]},{"name":"g_wszWMEncodedBy","features":[438]},{"name":"g_wszWMEncodingSettings","features":[438]},{"name":"g_wszWMEncodingTime","features":[438]},{"name":"g_wszWMEpisodeNumber","features":[438]},{"name":"g_wszWMFileSize","features":[438]},{"name":"g_wszWMGenre","features":[438]},{"name":"g_wszWMGenreID","features":[438]},{"name":"g_wszWMHasArbitraryDataStream","features":[438]},{"name":"g_wszWMHasAttachedImages","features":[438]},{"name":"g_wszWMHasAudio","features":[438]},{"name":"g_wszWMHasFileTransferStream","features":[438]},{"name":"g_wszWMHasImage","features":[438]},{"name":"g_wszWMHasScript","features":[438]},{"name":"g_wszWMHasVideo","features":[438]},{"name":"g_wszWMISAN","features":[438]},{"name":"g_wszWMISRC","features":[438]},{"name":"g_wszWMInitialKey","features":[438]},{"name":"g_wszWMIsCompilation","features":[438]},{"name":"g_wszWMIsVBR","features":[438]},{"name":"g_wszWMLanguage","features":[438]},{"name":"g_wszWMLyrics","features":[438]},{"name":"g_wszWMLyrics_Synchronised","features":[438]},{"name":"g_wszWMMCDI","features":[438]},{"name":"g_wszWMMediaClassPrimaryID","features":[438]},{"name":"g_wszWMMediaClassSecondaryID","features":[438]},{"name":"g_wszWMMediaCredits","features":[438]},{"name":"g_wszWMMediaIsDelay","features":[438]},{"name":"g_wszWMMediaIsFinale","features":[438]},{"name":"g_wszWMMediaIsLive","features":[438]},{"name":"g_wszWMMediaIsPremiere","features":[438]},{"name":"g_wszWMMediaIsRepeat","features":[438]},{"name":"g_wszWMMediaIsSAP","features":[438]},{"name":"g_wszWMMediaIsStereo","features":[438]},{"name":"g_wszWMMediaIsSubtitled","features":[438]},{"name":"g_wszWMMediaIsTape","features":[438]},{"name":"g_wszWMMediaNetworkAffiliation","features":[438]},{"name":"g_wszWMMediaOriginalBroadcastDateTime","features":[438]},{"name":"g_wszWMMediaOriginalChannel","features":[438]},{"name":"g_wszWMMediaStationCallSign","features":[438]},{"name":"g_wszWMMediaStationName","features":[438]},{"name":"g_wszWMModifiedBy","features":[438]},{"name":"g_wszWMMood","features":[438]},{"name":"g_wszWMNSCAddress","features":[438]},{"name":"g_wszWMNSCDescription","features":[438]},{"name":"g_wszWMNSCEmail","features":[438]},{"name":"g_wszWMNSCName","features":[438]},{"name":"g_wszWMNSCPhone","features":[438]},{"name":"g_wszWMNumberOfFrames","features":[438]},{"name":"g_wszWMOptimalBitrate","features":[438]},{"name":"g_wszWMOriginalAlbumTitle","features":[438]},{"name":"g_wszWMOriginalArtist","features":[438]},{"name":"g_wszWMOriginalFilename","features":[438]},{"name":"g_wszWMOriginalLyricist","features":[438]},{"name":"g_wszWMOriginalReleaseTime","features":[438]},{"name":"g_wszWMOriginalReleaseYear","features":[438]},{"name":"g_wszWMParentalRating","features":[438]},{"name":"g_wszWMParentalRatingReason","features":[438]},{"name":"g_wszWMPartOfSet","features":[438]},{"name":"g_wszWMPeakBitrate","features":[438]},{"name":"g_wszWMPeriod","features":[438]},{"name":"g_wszWMPicture","features":[438]},{"name":"g_wszWMPlaylistDelay","features":[438]},{"name":"g_wszWMProducer","features":[438]},{"name":"g_wszWMPromotionURL","features":[438]},{"name":"g_wszWMProtected","features":[438]},{"name":"g_wszWMProtectionType","features":[438]},{"name":"g_wszWMProvider","features":[438]},{"name":"g_wszWMProviderCopyright","features":[438]},{"name":"g_wszWMProviderRating","features":[438]},{"name":"g_wszWMProviderStyle","features":[438]},{"name":"g_wszWMPublisher","features":[438]},{"name":"g_wszWMRadioStationName","features":[438]},{"name":"g_wszWMRadioStationOwner","features":[438]},{"name":"g_wszWMRating","features":[438]},{"name":"g_wszWMSeasonNumber","features":[438]},{"name":"g_wszWMSeekable","features":[438]},{"name":"g_wszWMSharedUserRating","features":[438]},{"name":"g_wszWMSignature_Name","features":[438]},{"name":"g_wszWMSkipBackward","features":[438]},{"name":"g_wszWMSkipForward","features":[438]},{"name":"g_wszWMStreamTypeInfo","features":[438]},{"name":"g_wszWMStridable","features":[438]},{"name":"g_wszWMSubTitle","features":[438]},{"name":"g_wszWMSubTitleDescription","features":[438]},{"name":"g_wszWMSubscriptionContentID","features":[438]},{"name":"g_wszWMText","features":[438]},{"name":"g_wszWMTitle","features":[438]},{"name":"g_wszWMTitleSort","features":[438]},{"name":"g_wszWMToolName","features":[438]},{"name":"g_wszWMToolVersion","features":[438]},{"name":"g_wszWMTrack","features":[438]},{"name":"g_wszWMTrackNumber","features":[438]},{"name":"g_wszWMTrusted","features":[438]},{"name":"g_wszWMUniqueFileIdentifier","features":[438]},{"name":"g_wszWMUse_Advanced_DRM","features":[438]},{"name":"g_wszWMUse_DRM","features":[438]},{"name":"g_wszWMUserWebURL","features":[438]},{"name":"g_wszWMVideoClosedCaptioning","features":[438]},{"name":"g_wszWMVideoFrameRate","features":[438]},{"name":"g_wszWMVideoHeight","features":[438]},{"name":"g_wszWMVideoWidth","features":[438]},{"name":"g_wszWMWMADRCAverageReference","features":[438]},{"name":"g_wszWMWMADRCAverageTarget","features":[438]},{"name":"g_wszWMWMADRCPeakReference","features":[438]},{"name":"g_wszWMWMADRCPeakTarget","features":[438]},{"name":"g_wszWMWMCPDistributor","features":[438]},{"name":"g_wszWMWMCPDistributorID","features":[438]},{"name":"g_wszWMWMCollectionGroupID","features":[438]},{"name":"g_wszWMWMCollectionID","features":[438]},{"name":"g_wszWMWMContentID","features":[438]},{"name":"g_wszWMWMShadowFileSourceDRMType","features":[438]},{"name":"g_wszWMWMShadowFileSourceFileType","features":[438]},{"name":"g_wszWMWriter","features":[438]},{"name":"g_wszWMYear","features":[438]},{"name":"g_wszWatermarkCLSID","features":[438]},{"name":"g_wszWatermarkConfig","features":[438]}],"443":[{"name":"ADDRESS_TYPE_IANA","features":[439]},{"name":"ADDRESS_TYPE_IATA","features":[439]},{"name":"Allow","features":[439]},{"name":"CHANGESTATE","features":[439]},{"name":"CLIENT_TYPE_BOOTP","features":[439]},{"name":"CLIENT_TYPE_DHCP","features":[439]},{"name":"CLIENT_TYPE_NONE","features":[439]},{"name":"CLIENT_TYPE_RESERVATION_FLAG","features":[439]},{"name":"CLIENT_TYPE_UNSPECIFIED","features":[439]},{"name":"COMMUNICATION_INT","features":[439]},{"name":"CONFLICT_DONE","features":[439]},{"name":"DATE_TIME","features":[439]},{"name":"DEFAULTQUARSETTING","features":[439]},{"name":"DHCPAPI_PARAMS","features":[303,439]},{"name":"DHCPCAPI_CLASSID","features":[439]},{"name":"DHCPCAPI_DEREGISTER_HANDLE_EVENT","features":[439]},{"name":"DHCPCAPI_PARAMS_ARRAY","features":[303,439]},{"name":"DHCPCAPI_REGISTER_HANDLE_EVENT","features":[439]},{"name":"DHCPCAPI_REQUEST_ASYNCHRONOUS","features":[439]},{"name":"DHCPCAPI_REQUEST_CANCEL","features":[439]},{"name":"DHCPCAPI_REQUEST_MASK","features":[439]},{"name":"DHCPCAPI_REQUEST_PERSISTENT","features":[439]},{"name":"DHCPCAPI_REQUEST_SYNCHRONOUS","features":[439]},{"name":"DHCPDS_SERVER","features":[439]},{"name":"DHCPDS_SERVERS","features":[439]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO","features":[303,439]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_ARRAY","features":[303,439]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_EX","features":[303,439]},{"name":"DHCPV6CAPI_CLASSID","features":[439]},{"name":"DHCPV6CAPI_PARAMS","features":[303,439]},{"name":"DHCPV6CAPI_PARAMS_ARRAY","features":[303,439]},{"name":"DHCPV6Prefix","features":[439]},{"name":"DHCPV6PrefixLeaseInformation","features":[439]},{"name":"DHCPV6_BIND_ELEMENT","features":[303,439]},{"name":"DHCPV6_BIND_ELEMENT_ARRAY","features":[303,439]},{"name":"DHCPV6_IP_ARRAY","features":[439]},{"name":"DHCPV6_OPTION_CLIENTID","features":[439]},{"name":"DHCPV6_OPTION_DNS_SERVERS","features":[439]},{"name":"DHCPV6_OPTION_DOMAIN_LIST","features":[439]},{"name":"DHCPV6_OPTION_IA_NA","features":[439]},{"name":"DHCPV6_OPTION_IA_PD","features":[439]},{"name":"DHCPV6_OPTION_IA_TA","features":[439]},{"name":"DHCPV6_OPTION_NISP_DOMAIN_NAME","features":[439]},{"name":"DHCPV6_OPTION_NISP_SERVERS","features":[439]},{"name":"DHCPV6_OPTION_NIS_DOMAIN_NAME","features":[439]},{"name":"DHCPV6_OPTION_NIS_SERVERS","features":[439]},{"name":"DHCPV6_OPTION_ORO","features":[439]},{"name":"DHCPV6_OPTION_PREFERENCE","features":[439]},{"name":"DHCPV6_OPTION_RAPID_COMMIT","features":[439]},{"name":"DHCPV6_OPTION_RECONF_MSG","features":[439]},{"name":"DHCPV6_OPTION_SERVERID","features":[439]},{"name":"DHCPV6_OPTION_SIP_SERVERS_ADDRS","features":[439]},{"name":"DHCPV6_OPTION_SIP_SERVERS_NAMES","features":[439]},{"name":"DHCPV6_OPTION_UNICAST","features":[439]},{"name":"DHCPV6_OPTION_USER_CLASS","features":[439]},{"name":"DHCPV6_OPTION_VENDOR_CLASS","features":[439]},{"name":"DHCPV6_OPTION_VENDOR_OPTS","features":[439]},{"name":"DHCPV6_STATELESS_PARAMS","features":[303,439]},{"name":"DHCPV6_STATELESS_PARAM_TYPE","features":[439]},{"name":"DHCPV6_STATELESS_SCOPE_STATS","features":[439]},{"name":"DHCPV6_STATELESS_STATS","features":[439]},{"name":"DHCP_ADDR_PATTERN","features":[303,439]},{"name":"DHCP_ALL_OPTIONS","features":[439]},{"name":"DHCP_ALL_OPTION_VALUES","features":[303,439]},{"name":"DHCP_ALL_OPTION_VALUES_PB","features":[303,439]},{"name":"DHCP_ATTRIB","features":[303,439]},{"name":"DHCP_ATTRIB_ARRAY","features":[303,439]},{"name":"DHCP_ATTRIB_BOOL_IS_ADMIN","features":[439]},{"name":"DHCP_ATTRIB_BOOL_IS_BINDING_AWARE","features":[439]},{"name":"DHCP_ATTRIB_BOOL_IS_DYNBOOTP","features":[439]},{"name":"DHCP_ATTRIB_BOOL_IS_PART_OF_DSDC","features":[439]},{"name":"DHCP_ATTRIB_BOOL_IS_ROGUE","features":[439]},{"name":"DHCP_ATTRIB_TYPE_BOOL","features":[439]},{"name":"DHCP_ATTRIB_TYPE_ULONG","features":[439]},{"name":"DHCP_ATTRIB_ULONG_RESTORE_STATUS","features":[439]},{"name":"DHCP_BINARY_DATA","features":[439]},{"name":"DHCP_BIND_ELEMENT","features":[303,439]},{"name":"DHCP_BIND_ELEMENT_ARRAY","features":[303,439]},{"name":"DHCP_BOOTP_IP_RANGE","features":[439]},{"name":"DHCP_CALLOUT_ENTRY_POINT","features":[439]},{"name":"DHCP_CALLOUT_LIST_KEY","features":[439]},{"name":"DHCP_CALLOUT_LIST_VALUE","features":[439]},{"name":"DHCP_CALLOUT_TABLE","features":[303,439]},{"name":"DHCP_CLASS_INFO","features":[303,439]},{"name":"DHCP_CLASS_INFO_ARRAY","features":[303,439]},{"name":"DHCP_CLASS_INFO_ARRAY_V6","features":[303,439]},{"name":"DHCP_CLASS_INFO_V6","features":[303,439]},{"name":"DHCP_CLIENT_BOOTP","features":[439]},{"name":"DHCP_CLIENT_DHCP","features":[439]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO","features":[303,439]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY","features":[303,439]},{"name":"DHCP_CLIENT_INFO","features":[439]},{"name":"DHCP_CLIENT_INFO_ARRAY","features":[439]},{"name":"DHCP_CLIENT_INFO_ARRAY_V4","features":[439]},{"name":"DHCP_CLIENT_INFO_ARRAY_V5","features":[439]},{"name":"DHCP_CLIENT_INFO_ARRAY_V6","features":[439]},{"name":"DHCP_CLIENT_INFO_ARRAY_VQ","features":[303,439]},{"name":"DHCP_CLIENT_INFO_EX","features":[303,439]},{"name":"DHCP_CLIENT_INFO_EX_ARRAY","features":[303,439]},{"name":"DHCP_CLIENT_INFO_PB","features":[303,439]},{"name":"DHCP_CLIENT_INFO_PB_ARRAY","features":[303,439]},{"name":"DHCP_CLIENT_INFO_V4","features":[439]},{"name":"DHCP_CLIENT_INFO_V5","features":[439]},{"name":"DHCP_CLIENT_INFO_V6","features":[439]},{"name":"DHCP_CLIENT_INFO_VQ","features":[303,439]},{"name":"DHCP_CONTROL_CONTINUE","features":[439]},{"name":"DHCP_CONTROL_PAUSE","features":[439]},{"name":"DHCP_CONTROL_START","features":[439]},{"name":"DHCP_CONTROL_STOP","features":[439]},{"name":"DHCP_DROP_DUPLICATE","features":[439]},{"name":"DHCP_DROP_GEN_FAILURE","features":[439]},{"name":"DHCP_DROP_INTERNAL_ERROR","features":[439]},{"name":"DHCP_DROP_INVALID","features":[439]},{"name":"DHCP_DROP_NOADDRESS","features":[439]},{"name":"DHCP_DROP_NOMEM","features":[439]},{"name":"DHCP_DROP_NO_SUBNETS","features":[439]},{"name":"DHCP_DROP_PAUSED","features":[439]},{"name":"DHCP_DROP_PROCESSED","features":[439]},{"name":"DHCP_DROP_TIMEOUT","features":[439]},{"name":"DHCP_DROP_UNAUTH","features":[439]},{"name":"DHCP_DROP_WRONG_SERVER","features":[439]},{"name":"DHCP_ENDPOINT_FLAG_CANT_MODIFY","features":[439]},{"name":"DHCP_FAILOVER_DELETE_SCOPES","features":[439]},{"name":"DHCP_FAILOVER_MAX_NUM_ADD_SCOPES","features":[439]},{"name":"DHCP_FAILOVER_MAX_NUM_REL","features":[439]},{"name":"DHCP_FAILOVER_MODE","features":[439]},{"name":"DHCP_FAILOVER_RELATIONSHIP","features":[439]},{"name":"DHCP_FAILOVER_RELATIONSHIP_ARRAY","features":[439]},{"name":"DHCP_FAILOVER_SERVER","features":[439]},{"name":"DHCP_FAILOVER_STATISTICS","features":[439]},{"name":"DHCP_FILTER_ADD_INFO","features":[303,439]},{"name":"DHCP_FILTER_ENUM_INFO","features":[303,439]},{"name":"DHCP_FILTER_GLOBAL_INFO","features":[303,439]},{"name":"DHCP_FILTER_LIST_TYPE","features":[439]},{"name":"DHCP_FILTER_RECORD","features":[303,439]},{"name":"DHCP_FLAGS_DONT_ACCESS_DS","features":[439]},{"name":"DHCP_FLAGS_DONT_DO_RPC","features":[439]},{"name":"DHCP_FLAGS_OPTION_IS_VENDOR","features":[439]},{"name":"DHCP_FORCE_FLAG","features":[439]},{"name":"DHCP_GIVE_ADDRESS_NEW","features":[439]},{"name":"DHCP_GIVE_ADDRESS_OLD","features":[439]},{"name":"DHCP_HOST_INFO","features":[439]},{"name":"DHCP_HOST_INFO_V6","features":[439]},{"name":"DHCP_IPV6_ADDRESS","features":[439]},{"name":"DHCP_IP_ARRAY","features":[439]},{"name":"DHCP_IP_CLUSTER","features":[439]},{"name":"DHCP_IP_RANGE","features":[439]},{"name":"DHCP_IP_RANGE_ARRAY","features":[439]},{"name":"DHCP_IP_RANGE_V6","features":[439]},{"name":"DHCP_IP_RESERVATION","features":[439]},{"name":"DHCP_IP_RESERVATION_INFO","features":[439]},{"name":"DHCP_IP_RESERVATION_V4","features":[439]},{"name":"DHCP_IP_RESERVATION_V6","features":[439]},{"name":"DHCP_MAX_DELAY","features":[439]},{"name":"DHCP_MIB_INFO","features":[439]},{"name":"DHCP_MIB_INFO_V5","features":[439]},{"name":"DHCP_MIB_INFO_V6","features":[439]},{"name":"DHCP_MIB_INFO_VQ","features":[439]},{"name":"DHCP_MIN_DELAY","features":[439]},{"name":"DHCP_OPTION","features":[439]},{"name":"DHCP_OPTION_ARRAY","features":[439]},{"name":"DHCP_OPTION_DATA","features":[439]},{"name":"DHCP_OPTION_DATA_ELEMENT","features":[439]},{"name":"DHCP_OPTION_DATA_TYPE","features":[439]},{"name":"DHCP_OPTION_LIST","features":[439]},{"name":"DHCP_OPTION_SCOPE_INFO","features":[439]},{"name":"DHCP_OPTION_SCOPE_INFO6","features":[439]},{"name":"DHCP_OPTION_SCOPE_TYPE","features":[439]},{"name":"DHCP_OPTION_SCOPE_TYPE6","features":[439]},{"name":"DHCP_OPTION_TYPE","features":[439]},{"name":"DHCP_OPTION_VALUE","features":[439]},{"name":"DHCP_OPTION_VALUE_ARRAY","features":[439]},{"name":"DHCP_OPT_ENUM_IGNORE_VENDOR","features":[439]},{"name":"DHCP_OPT_ENUM_USE_CLASSNAME","features":[439]},{"name":"DHCP_PERF_STATS","features":[439]},{"name":"DHCP_POLICY","features":[303,439]},{"name":"DHCP_POLICY_ARRAY","features":[303,439]},{"name":"DHCP_POLICY_EX","features":[303,439]},{"name":"DHCP_POLICY_EX_ARRAY","features":[303,439]},{"name":"DHCP_POLICY_FIELDS_TO_UPDATE","features":[439]},{"name":"DHCP_POL_ATTR_TYPE","features":[439]},{"name":"DHCP_POL_COMPARATOR","features":[439]},{"name":"DHCP_POL_COND","features":[439]},{"name":"DHCP_POL_COND_ARRAY","features":[439]},{"name":"DHCP_POL_EXPR","features":[439]},{"name":"DHCP_POL_EXPR_ARRAY","features":[439]},{"name":"DHCP_POL_LOGIC_OPER","features":[439]},{"name":"DHCP_PROB_CONFLICT","features":[439]},{"name":"DHCP_PROB_DECLINE","features":[439]},{"name":"DHCP_PROB_NACKED","features":[439]},{"name":"DHCP_PROB_RELEASE","features":[439]},{"name":"DHCP_PROPERTY","features":[439]},{"name":"DHCP_PROPERTY_ARRAY","features":[439]},{"name":"DHCP_PROPERTY_ID","features":[439]},{"name":"DHCP_PROPERTY_TYPE","features":[439]},{"name":"DHCP_RESERVATION_INFO_ARRAY","features":[439]},{"name":"DHCP_RESERVED_SCOPE","features":[439]},{"name":"DHCP_RESERVED_SCOPE6","features":[439]},{"name":"DHCP_SCAN_FLAG","features":[439]},{"name":"DHCP_SCAN_ITEM","features":[439]},{"name":"DHCP_SCAN_LIST","features":[439]},{"name":"DHCP_SEARCH_INFO","features":[439]},{"name":"DHCP_SEARCH_INFO_TYPE","features":[439]},{"name":"DHCP_SEARCH_INFO_TYPE_V6","features":[439]},{"name":"DHCP_SEARCH_INFO_V6","features":[439]},{"name":"DHCP_SEND_PACKET","features":[439]},{"name":"DHCP_SERVER_CONFIG_INFO","features":[439]},{"name":"DHCP_SERVER_CONFIG_INFO_V4","features":[303,439]},{"name":"DHCP_SERVER_CONFIG_INFO_V6","features":[303,439]},{"name":"DHCP_SERVER_CONFIG_INFO_VQ","features":[303,439]},{"name":"DHCP_SERVER_OPTIONS","features":[303,439]},{"name":"DHCP_SERVER_SPECIFIC_STRINGS","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_DATA","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V4","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V5","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V6","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V4","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V5","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V6","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_TYPE","features":[439]},{"name":"DHCP_SUBNET_ELEMENT_TYPE_V6","features":[439]},{"name":"DHCP_SUBNET_INFO","features":[439]},{"name":"DHCP_SUBNET_INFO_V6","features":[439]},{"name":"DHCP_SUBNET_INFO_VQ","features":[439]},{"name":"DHCP_SUBNET_INFO_VQ_FLAG_QUARANTINE","features":[439]},{"name":"DHCP_SUBNET_STATE","features":[439]},{"name":"DHCP_SUPER_SCOPE_TABLE","features":[439]},{"name":"DHCP_SUPER_SCOPE_TABLE_ENTRY","features":[439]},{"name":"DNS_FLAG_CLEANUP_EXPIRED","features":[439]},{"name":"DNS_FLAG_DISABLE_PTR_UPDATE","features":[439]},{"name":"DNS_FLAG_ENABLED","features":[439]},{"name":"DNS_FLAG_HAS_DNS_SUFFIX","features":[439]},{"name":"DNS_FLAG_UPDATE_BOTH_ALWAYS","features":[439]},{"name":"DNS_FLAG_UPDATE_DHCID","features":[439]},{"name":"DNS_FLAG_UPDATE_DOWNLEVEL","features":[439]},{"name":"DROPPACKET","features":[439]},{"name":"DWORD_DWORD","features":[439]},{"name":"Deny","features":[439]},{"name":"DhcpAddFilterV4","features":[303,439]},{"name":"DhcpAddSecurityGroup","features":[439]},{"name":"DhcpAddServer","features":[439]},{"name":"DhcpAddSubnetElement","features":[439]},{"name":"DhcpAddSubnetElementV4","features":[439]},{"name":"DhcpAddSubnetElementV5","features":[439]},{"name":"DhcpAddSubnetElementV6","features":[439]},{"name":"DhcpArrayTypeOption","features":[439]},{"name":"DhcpAttrFqdn","features":[439]},{"name":"DhcpAttrFqdnSingleLabel","features":[439]},{"name":"DhcpAttrHWAddr","features":[439]},{"name":"DhcpAttrOption","features":[439]},{"name":"DhcpAttrSubOption","features":[439]},{"name":"DhcpAuditLogGetParams","features":[439]},{"name":"DhcpAuditLogSetParams","features":[439]},{"name":"DhcpBinaryDataOption","features":[439]},{"name":"DhcpByteOption","features":[439]},{"name":"DhcpCApiCleanup","features":[439]},{"name":"DhcpCApiInitialize","features":[439]},{"name":"DhcpClientHardwareAddress","features":[439]},{"name":"DhcpClientIpAddress","features":[439]},{"name":"DhcpClientName","features":[439]},{"name":"DhcpCompBeginsWith","features":[439]},{"name":"DhcpCompEndsWith","features":[439]},{"name":"DhcpCompEqual","features":[439]},{"name":"DhcpCompNotBeginWith","features":[439]},{"name":"DhcpCompNotEndWith","features":[439]},{"name":"DhcpCompNotEqual","features":[439]},{"name":"DhcpCreateClass","features":[303,439]},{"name":"DhcpCreateClassV6","features":[303,439]},{"name":"DhcpCreateClientInfo","features":[439]},{"name":"DhcpCreateClientInfoV4","features":[439]},{"name":"DhcpCreateClientInfoVQ","features":[303,439]},{"name":"DhcpCreateOption","features":[439]},{"name":"DhcpCreateOptionV5","features":[439]},{"name":"DhcpCreateOptionV6","features":[439]},{"name":"DhcpCreateSubnet","features":[439]},{"name":"DhcpCreateSubnetV6","features":[439]},{"name":"DhcpCreateSubnetVQ","features":[439]},{"name":"DhcpDWordDWordOption","features":[439]},{"name":"DhcpDWordOption","features":[439]},{"name":"DhcpDatabaseFix","features":[439]},{"name":"DhcpDeRegisterParamChange","features":[439]},{"name":"DhcpDefaultOptions","features":[439]},{"name":"DhcpDefaultOptions6","features":[439]},{"name":"DhcpDeleteClass","features":[439]},{"name":"DhcpDeleteClassV6","features":[439]},{"name":"DhcpDeleteClientInfo","features":[439]},{"name":"DhcpDeleteClientInfoV6","features":[439]},{"name":"DhcpDeleteFilterV4","features":[303,439]},{"name":"DhcpDeleteServer","features":[439]},{"name":"DhcpDeleteSubnet","features":[439]},{"name":"DhcpDeleteSubnetV6","features":[439]},{"name":"DhcpDeleteSuperScopeV4","features":[439]},{"name":"DhcpDsCleanup","features":[439]},{"name":"DhcpDsInit","features":[439]},{"name":"DhcpEncapsulatedDataOption","features":[439]},{"name":"DhcpEnumClasses","features":[303,439]},{"name":"DhcpEnumClassesV6","features":[303,439]},{"name":"DhcpEnumFilterV4","features":[303,439]},{"name":"DhcpEnumOptionValues","features":[439]},{"name":"DhcpEnumOptionValuesV5","features":[439]},{"name":"DhcpEnumOptionValuesV6","features":[439]},{"name":"DhcpEnumOptions","features":[439]},{"name":"DhcpEnumOptionsV5","features":[439]},{"name":"DhcpEnumOptionsV6","features":[439]},{"name":"DhcpEnumServers","features":[439]},{"name":"DhcpEnumSubnetClients","features":[439]},{"name":"DhcpEnumSubnetClientsFilterStatusInfo","features":[303,439]},{"name":"DhcpEnumSubnetClientsV4","features":[439]},{"name":"DhcpEnumSubnetClientsV5","features":[439]},{"name":"DhcpEnumSubnetClientsV6","features":[439]},{"name":"DhcpEnumSubnetClientsVQ","features":[303,439]},{"name":"DhcpEnumSubnetElements","features":[439]},{"name":"DhcpEnumSubnetElementsV4","features":[439]},{"name":"DhcpEnumSubnetElementsV5","features":[439]},{"name":"DhcpEnumSubnetElementsV6","features":[439]},{"name":"DhcpEnumSubnets","features":[439]},{"name":"DhcpEnumSubnetsV6","features":[439]},{"name":"DhcpExcludedIpRanges","features":[439]},{"name":"DhcpFailoverForce","features":[439]},{"name":"DhcpFullForce","features":[439]},{"name":"DhcpGetAllOptionValues","features":[303,439]},{"name":"DhcpGetAllOptionValuesV6","features":[303,439]},{"name":"DhcpGetAllOptions","features":[439]},{"name":"DhcpGetAllOptionsV6","features":[439]},{"name":"DhcpGetClassInfo","features":[303,439]},{"name":"DhcpGetClientInfo","features":[439]},{"name":"DhcpGetClientInfoV4","features":[439]},{"name":"DhcpGetClientInfoV6","features":[439]},{"name":"DhcpGetClientInfoVQ","features":[303,439]},{"name":"DhcpGetClientOptions","features":[439]},{"name":"DhcpGetFilterV4","features":[303,439]},{"name":"DhcpGetMibInfo","features":[439]},{"name":"DhcpGetMibInfoV5","features":[439]},{"name":"DhcpGetMibInfoV6","features":[439]},{"name":"DhcpGetOptionInfo","features":[439]},{"name":"DhcpGetOptionInfoV5","features":[439]},{"name":"DhcpGetOptionInfoV6","features":[439]},{"name":"DhcpGetOptionValue","features":[439]},{"name":"DhcpGetOptionValueV5","features":[439]},{"name":"DhcpGetOptionValueV6","features":[439]},{"name":"DhcpGetOriginalSubnetMask","features":[439]},{"name":"DhcpGetServerBindingInfo","features":[303,439]},{"name":"DhcpGetServerBindingInfoV6","features":[303,439]},{"name":"DhcpGetServerSpecificStrings","features":[439]},{"name":"DhcpGetSubnetDelayOffer","features":[439]},{"name":"DhcpGetSubnetInfo","features":[439]},{"name":"DhcpGetSubnetInfoV6","features":[439]},{"name":"DhcpGetSubnetInfoVQ","features":[439]},{"name":"DhcpGetSuperScopeInfoV4","features":[439]},{"name":"DhcpGetThreadOptions","features":[439]},{"name":"DhcpGetVersion","features":[439]},{"name":"DhcpGlobalOptions","features":[439]},{"name":"DhcpGlobalOptions6","features":[439]},{"name":"DhcpHlprAddV4PolicyCondition","features":[303,439]},{"name":"DhcpHlprAddV4PolicyExpr","features":[303,439]},{"name":"DhcpHlprAddV4PolicyRange","features":[303,439]},{"name":"DhcpHlprCreateV4Policy","features":[303,439]},{"name":"DhcpHlprCreateV4PolicyEx","features":[303,439]},{"name":"DhcpHlprFindV4DhcpProperty","features":[439]},{"name":"DhcpHlprFreeV4DhcpProperty","features":[439]},{"name":"DhcpHlprFreeV4DhcpPropertyArray","features":[439]},{"name":"DhcpHlprFreeV4Policy","features":[303,439]},{"name":"DhcpHlprFreeV4PolicyArray","features":[303,439]},{"name":"DhcpHlprFreeV4PolicyEx","features":[303,439]},{"name":"DhcpHlprFreeV4PolicyExArray","features":[303,439]},{"name":"DhcpHlprIsV4PolicySingleUC","features":[303,439]},{"name":"DhcpHlprIsV4PolicyValid","features":[303,439]},{"name":"DhcpHlprIsV4PolicyWellFormed","features":[303,439]},{"name":"DhcpHlprModifyV4PolicyExpr","features":[303,439]},{"name":"DhcpHlprResetV4PolicyExpr","features":[303,439]},{"name":"DhcpIpAddressOption","features":[439]},{"name":"DhcpIpRanges","features":[439]},{"name":"DhcpIpRangesBootpOnly","features":[439]},{"name":"DhcpIpRangesDhcpBootp","features":[439]},{"name":"DhcpIpRangesDhcpOnly","features":[439]},{"name":"DhcpIpUsedClusters","features":[439]},{"name":"DhcpIpv6AddressOption","features":[439]},{"name":"DhcpLogicalAnd","features":[439]},{"name":"DhcpLogicalOr","features":[439]},{"name":"DhcpMScopeOptions","features":[439]},{"name":"DhcpModifyClass","features":[303,439]},{"name":"DhcpModifyClassV6","features":[303,439]},{"name":"DhcpNoForce","features":[439]},{"name":"DhcpPropIdClientAddressStateEx","features":[439]},{"name":"DhcpPropIdPolicyDnsSuffix","features":[439]},{"name":"DhcpPropTypeBinary","features":[439]},{"name":"DhcpPropTypeByte","features":[439]},{"name":"DhcpPropTypeDword","features":[439]},{"name":"DhcpPropTypeString","features":[439]},{"name":"DhcpPropTypeWord","features":[439]},{"name":"DhcpRegisterParamChange","features":[303,439]},{"name":"DhcpRegistryFix","features":[439]},{"name":"DhcpRemoveDNSRegistrations","features":[439]},{"name":"DhcpRemoveOption","features":[439]},{"name":"DhcpRemoveOptionV5","features":[439]},{"name":"DhcpRemoveOptionV6","features":[439]},{"name":"DhcpRemoveOptionValue","features":[439]},{"name":"DhcpRemoveOptionValueV5","features":[439]},{"name":"DhcpRemoveOptionValueV6","features":[439]},{"name":"DhcpRemoveSubnetElement","features":[439]},{"name":"DhcpRemoveSubnetElementV4","features":[439]},{"name":"DhcpRemoveSubnetElementV5","features":[439]},{"name":"DhcpRemoveSubnetElementV6","features":[439]},{"name":"DhcpRequestParams","features":[303,439]},{"name":"DhcpReservedIps","features":[439]},{"name":"DhcpReservedOptions","features":[439]},{"name":"DhcpReservedOptions6","features":[439]},{"name":"DhcpRpcFreeMemory","features":[439]},{"name":"DhcpScanDatabase","features":[439]},{"name":"DhcpScopeOptions6","features":[439]},{"name":"DhcpSecondaryHosts","features":[439]},{"name":"DhcpServerAuditlogParamsFree","features":[303,439]},{"name":"DhcpServerBackupDatabase","features":[439]},{"name":"DhcpServerGetConfig","features":[439]},{"name":"DhcpServerGetConfigV4","features":[303,439]},{"name":"DhcpServerGetConfigV6","features":[303,439]},{"name":"DhcpServerGetConfigVQ","features":[303,439]},{"name":"DhcpServerQueryAttribute","features":[303,439]},{"name":"DhcpServerQueryAttributes","features":[303,439]},{"name":"DhcpServerQueryDnsRegCredentials","features":[439]},{"name":"DhcpServerRedoAuthorization","features":[439]},{"name":"DhcpServerRestoreDatabase","features":[439]},{"name":"DhcpServerSetConfig","features":[439]},{"name":"DhcpServerSetConfigV4","features":[303,439]},{"name":"DhcpServerSetConfigV6","features":[303,439]},{"name":"DhcpServerSetConfigVQ","features":[303,439]},{"name":"DhcpServerSetDnsRegCredentials","features":[439]},{"name":"DhcpServerSetDnsRegCredentialsV5","features":[439]},{"name":"DhcpSetClientInfo","features":[439]},{"name":"DhcpSetClientInfoV4","features":[439]},{"name":"DhcpSetClientInfoV6","features":[439]},{"name":"DhcpSetClientInfoVQ","features":[303,439]},{"name":"DhcpSetFilterV4","features":[303,439]},{"name":"DhcpSetOptionInfo","features":[439]},{"name":"DhcpSetOptionInfoV5","features":[439]},{"name":"DhcpSetOptionInfoV6","features":[439]},{"name":"DhcpSetOptionValue","features":[439]},{"name":"DhcpSetOptionValueV5","features":[439]},{"name":"DhcpSetOptionValueV6","features":[439]},{"name":"DhcpSetOptionValues","features":[439]},{"name":"DhcpSetOptionValuesV5","features":[439]},{"name":"DhcpSetServerBindingInfo","features":[303,439]},{"name":"DhcpSetServerBindingInfoV6","features":[303,439]},{"name":"DhcpSetSubnetDelayOffer","features":[439]},{"name":"DhcpSetSubnetInfo","features":[439]},{"name":"DhcpSetSubnetInfoV6","features":[439]},{"name":"DhcpSetSubnetInfoVQ","features":[439]},{"name":"DhcpSetSuperScopeV4","features":[303,439]},{"name":"DhcpSetThreadOptions","features":[439]},{"name":"DhcpStatelessPurgeInterval","features":[439]},{"name":"DhcpStatelessStatus","features":[439]},{"name":"DhcpStringDataOption","features":[439]},{"name":"DhcpSubnetDisabled","features":[439]},{"name":"DhcpSubnetDisabledSwitched","features":[439]},{"name":"DhcpSubnetEnabled","features":[439]},{"name":"DhcpSubnetEnabledSwitched","features":[439]},{"name":"DhcpSubnetInvalidState","features":[439]},{"name":"DhcpSubnetOptions","features":[439]},{"name":"DhcpUnaryElementTypeOption","features":[439]},{"name":"DhcpUndoRequestParams","features":[439]},{"name":"DhcpUpdatePolicyDescr","features":[439]},{"name":"DhcpUpdatePolicyDnsSuffix","features":[439]},{"name":"DhcpUpdatePolicyExpr","features":[439]},{"name":"DhcpUpdatePolicyName","features":[439]},{"name":"DhcpUpdatePolicyOrder","features":[439]},{"name":"DhcpUpdatePolicyRanges","features":[439]},{"name":"DhcpUpdatePolicyStatus","features":[439]},{"name":"DhcpV4AddPolicyRange","features":[439]},{"name":"DhcpV4CreateClientInfo","features":[303,439]},{"name":"DhcpV4CreateClientInfoEx","features":[303,439]},{"name":"DhcpV4CreatePolicy","features":[303,439]},{"name":"DhcpV4CreatePolicyEx","features":[303,439]},{"name":"DhcpV4DeletePolicy","features":[303,439]},{"name":"DhcpV4EnumPolicies","features":[303,439]},{"name":"DhcpV4EnumPoliciesEx","features":[303,439]},{"name":"DhcpV4EnumSubnetClients","features":[303,439]},{"name":"DhcpV4EnumSubnetClientsEx","features":[303,439]},{"name":"DhcpV4EnumSubnetReservations","features":[439]},{"name":"DhcpV4FailoverAddScopeToRelationship","features":[439]},{"name":"DhcpV4FailoverCreateRelationship","features":[439]},{"name":"DhcpV4FailoverDeleteRelationship","features":[439]},{"name":"DhcpV4FailoverDeleteScopeFromRelationship","features":[439]},{"name":"DhcpV4FailoverEnumRelationship","features":[439]},{"name":"DhcpV4FailoverGetAddressStatus","features":[439]},{"name":"DhcpV4FailoverGetClientInfo","features":[303,439]},{"name":"DhcpV4FailoverGetRelationship","features":[439]},{"name":"DhcpV4FailoverGetScopeRelationship","features":[439]},{"name":"DhcpV4FailoverGetScopeStatistics","features":[439]},{"name":"DhcpV4FailoverGetSystemTime","features":[439]},{"name":"DhcpV4FailoverSetRelationship","features":[439]},{"name":"DhcpV4FailoverTriggerAddrAllocation","features":[439]},{"name":"DhcpV4GetAllOptionValues","features":[303,439]},{"name":"DhcpV4GetClientInfo","features":[303,439]},{"name":"DhcpV4GetClientInfoEx","features":[303,439]},{"name":"DhcpV4GetFreeIPAddress","features":[439]},{"name":"DhcpV4GetOptionValue","features":[439]},{"name":"DhcpV4GetPolicy","features":[303,439]},{"name":"DhcpV4GetPolicyEx","features":[303,439]},{"name":"DhcpV4QueryPolicyEnforcement","features":[303,439]},{"name":"DhcpV4RemoveOptionValue","features":[439]},{"name":"DhcpV4RemovePolicyRange","features":[439]},{"name":"DhcpV4SetOptionValue","features":[439]},{"name":"DhcpV4SetOptionValues","features":[439]},{"name":"DhcpV4SetPolicy","features":[303,439]},{"name":"DhcpV4SetPolicyEnforcement","features":[303,439]},{"name":"DhcpV4SetPolicyEx","features":[303,439]},{"name":"DhcpV6CreateClientInfo","features":[439]},{"name":"DhcpV6GetFreeIPAddress","features":[439]},{"name":"DhcpV6GetStatelessStatistics","features":[439]},{"name":"DhcpV6GetStatelessStoreParams","features":[303,439]},{"name":"DhcpV6SetStatelessStoreParams","features":[303,439]},{"name":"DhcpWordOption","features":[439]},{"name":"Dhcpv6CApiCleanup","features":[439]},{"name":"Dhcpv6CApiInitialize","features":[439]},{"name":"Dhcpv6ClientDUID","features":[439]},{"name":"Dhcpv6ClientIpAddress","features":[439]},{"name":"Dhcpv6ClientName","features":[439]},{"name":"Dhcpv6ExcludedIpRanges","features":[439]},{"name":"Dhcpv6IpRanges","features":[439]},{"name":"Dhcpv6ReleasePrefix","features":[439]},{"name":"Dhcpv6RenewPrefix","features":[439]},{"name":"Dhcpv6RequestParams","features":[303,439]},{"name":"Dhcpv6RequestPrefix","features":[439]},{"name":"Dhcpv6ReservedIps","features":[439]},{"name":"ERROR_DDS_CLASS_DOES_NOT_EXIST","features":[439]},{"name":"ERROR_DDS_CLASS_EXISTS","features":[439]},{"name":"ERROR_DDS_DHCP_SERVER_NOT_FOUND","features":[439]},{"name":"ERROR_DDS_NO_DHCP_ROOT","features":[439]},{"name":"ERROR_DDS_NO_DS_AVAILABLE","features":[439]},{"name":"ERROR_DDS_OPTION_ALREADY_EXISTS","features":[439]},{"name":"ERROR_DDS_OPTION_DOES_NOT_EXIST","features":[439]},{"name":"ERROR_DDS_POSSIBLE_RANGE_CONFLICT","features":[439]},{"name":"ERROR_DDS_RANGE_DOES_NOT_EXIST","features":[439]},{"name":"ERROR_DDS_RESERVATION_CONFLICT","features":[439]},{"name":"ERROR_DDS_RESERVATION_NOT_PRESENT","features":[439]},{"name":"ERROR_DDS_SERVER_ADDRESS_MISMATCH","features":[439]},{"name":"ERROR_DDS_SERVER_ALREADY_EXISTS","features":[439]},{"name":"ERROR_DDS_SERVER_DOES_NOT_EXIST","features":[439]},{"name":"ERROR_DDS_SUBNET_EXISTS","features":[439]},{"name":"ERROR_DDS_SUBNET_HAS_DIFF_SSCOPE","features":[439]},{"name":"ERROR_DDS_SUBNET_NOT_PRESENT","features":[439]},{"name":"ERROR_DDS_TOO_MANY_ERRORS","features":[439]},{"name":"ERROR_DDS_UNEXPECTED_ERROR","features":[439]},{"name":"ERROR_DHCP_ADDRESS_NOT_AVAILABLE","features":[439]},{"name":"ERROR_DHCP_CANNOT_MODIFY_BINDINGS","features":[439]},{"name":"ERROR_DHCP_CANT_CHANGE_ATTRIBUTE","features":[439]},{"name":"ERROR_DHCP_CLASS_ALREADY_EXISTS","features":[439]},{"name":"ERROR_DHCP_CLASS_NOT_FOUND","features":[439]},{"name":"ERROR_DHCP_CLIENT_EXISTS","features":[439]},{"name":"ERROR_DHCP_DATABASE_INIT_FAILED","features":[439]},{"name":"ERROR_DHCP_DEFAULT_SCOPE_EXITS","features":[439]},{"name":"ERROR_DHCP_DELETE_BUILTIN_CLASS","features":[439]},{"name":"ERROR_DHCP_ELEMENT_CANT_REMOVE","features":[439]},{"name":"ERROR_DHCP_EXEMPTION_EXISTS","features":[439]},{"name":"ERROR_DHCP_EXEMPTION_NOT_PRESENT","features":[439]},{"name":"ERROR_DHCP_FO_ADDSCOPE_LEASES_NOT_SYNCED","features":[439]},{"name":"ERROR_DHCP_FO_BOOT_NOT_SUPPORTED","features":[439]},{"name":"ERROR_DHCP_FO_FEATURE_NOT_SUPPORTED","features":[439]},{"name":"ERROR_DHCP_FO_IPRANGE_TYPE_CONV_ILLEGAL","features":[439]},{"name":"ERROR_DHCP_FO_MAX_ADD_SCOPES","features":[439]},{"name":"ERROR_DHCP_FO_MAX_RELATIONSHIPS","features":[439]},{"name":"ERROR_DHCP_FO_NOT_SUPPORTED","features":[439]},{"name":"ERROR_DHCP_FO_RANGE_PART_OF_REL","features":[439]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_DOES_NOT_EXIST","features":[439]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_EXISTS","features":[439]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_NAME_TOO_LONG","features":[439]},{"name":"ERROR_DHCP_FO_RELATION_IS_SECONDARY","features":[439]},{"name":"ERROR_DHCP_FO_SCOPE_ALREADY_IN_RELATIONSHIP","features":[439]},{"name":"ERROR_DHCP_FO_SCOPE_NOT_IN_RELATIONSHIP","features":[439]},{"name":"ERROR_DHCP_FO_SCOPE_SYNC_IN_PROGRESS","features":[439]},{"name":"ERROR_DHCP_FO_STATE_NOT_NORMAL","features":[439]},{"name":"ERROR_DHCP_FO_TIME_OUT_OF_SYNC","features":[439]},{"name":"ERROR_DHCP_HARDWARE_ADDRESS_TYPE_ALREADY_EXEMPT","features":[439]},{"name":"ERROR_DHCP_INVALID_DELAY","features":[439]},{"name":"ERROR_DHCP_INVALID_DHCP_CLIENT","features":[439]},{"name":"ERROR_DHCP_INVALID_DHCP_MESSAGE","features":[439]},{"name":"ERROR_DHCP_INVALID_PARAMETER_OPTION32","features":[439]},{"name":"ERROR_DHCP_INVALID_POLICY_EXPRESSION","features":[439]},{"name":"ERROR_DHCP_INVALID_PROCESSING_ORDER","features":[439]},{"name":"ERROR_DHCP_INVALID_RANGE","features":[439]},{"name":"ERROR_DHCP_INVALID_SUBNET_PREFIX","features":[439]},{"name":"ERROR_DHCP_IPRANGE_CONV_ILLEGAL","features":[439]},{"name":"ERROR_DHCP_IPRANGE_EXITS","features":[439]},{"name":"ERROR_DHCP_IP_ADDRESS_IN_USE","features":[439]},{"name":"ERROR_DHCP_JET97_CONV_REQUIRED","features":[439]},{"name":"ERROR_DHCP_JET_CONV_REQUIRED","features":[439]},{"name":"ERROR_DHCP_JET_ERROR","features":[439]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_DOES_NOT_EXIST","features":[439]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_EXISTS","features":[439]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_RESERVATION_EXISTS","features":[439]},{"name":"ERROR_DHCP_LOG_FILE_PATH_TOO_LONG","features":[439]},{"name":"ERROR_DHCP_MSCOPE_EXISTS","features":[439]},{"name":"ERROR_DHCP_NAP_NOT_SUPPORTED","features":[439]},{"name":"ERROR_DHCP_NETWORK_CHANGED","features":[439]},{"name":"ERROR_DHCP_NETWORK_INIT_FAILED","features":[439]},{"name":"ERROR_DHCP_NOT_RESERVED_CLIENT","features":[439]},{"name":"ERROR_DHCP_NO_ADMIN_PERMISSION","features":[439]},{"name":"ERROR_DHCP_OPTION_EXITS","features":[439]},{"name":"ERROR_DHCP_OPTION_NOT_PRESENT","features":[439]},{"name":"ERROR_DHCP_OPTION_TYPE_MISMATCH","features":[439]},{"name":"ERROR_DHCP_POLICY_BAD_PARENT_EXPR","features":[439]},{"name":"ERROR_DHCP_POLICY_EDIT_FQDN_UNSUPPORTED","features":[439]},{"name":"ERROR_DHCP_POLICY_EXISTS","features":[439]},{"name":"ERROR_DHCP_POLICY_FQDN_OPTION_UNSUPPORTED","features":[439]},{"name":"ERROR_DHCP_POLICY_FQDN_RANGE_UNSUPPORTED","features":[439]},{"name":"ERROR_DHCP_POLICY_NOT_FOUND","features":[439]},{"name":"ERROR_DHCP_POLICY_RANGE_BAD","features":[439]},{"name":"ERROR_DHCP_POLICY_RANGE_EXISTS","features":[439]},{"name":"ERROR_DHCP_PRIMARY_NOT_FOUND","features":[439]},{"name":"ERROR_DHCP_RANGE_EXTENDED","features":[439]},{"name":"ERROR_DHCP_RANGE_FULL","features":[439]},{"name":"ERROR_DHCP_RANGE_INVALID_IN_SERVER_POLICY","features":[439]},{"name":"ERROR_DHCP_RANGE_TOO_SMALL","features":[439]},{"name":"ERROR_DHCP_REACHED_END_OF_SELECTION","features":[439]},{"name":"ERROR_DHCP_REGISTRY_INIT_FAILED","features":[439]},{"name":"ERROR_DHCP_RESERVEDIP_EXITS","features":[439]},{"name":"ERROR_DHCP_RESERVED_CLIENT","features":[439]},{"name":"ERROR_DHCP_ROGUE_DS_CONFLICT","features":[439]},{"name":"ERROR_DHCP_ROGUE_DS_UNREACHABLE","features":[439]},{"name":"ERROR_DHCP_ROGUE_INIT_FAILED","features":[439]},{"name":"ERROR_DHCP_ROGUE_NOT_AUTHORIZED","features":[439]},{"name":"ERROR_DHCP_ROGUE_NOT_OUR_ENTERPRISE","features":[439]},{"name":"ERROR_DHCP_ROGUE_SAMSHUTDOWN","features":[439]},{"name":"ERROR_DHCP_ROGUE_STANDALONE_IN_DS","features":[439]},{"name":"ERROR_DHCP_RPC_INIT_FAILED","features":[439]},{"name":"ERROR_DHCP_SCOPE_NAME_TOO_LONG","features":[439]},{"name":"ERROR_DHCP_SERVER_NAME_NOT_RESOLVED","features":[439]},{"name":"ERROR_DHCP_SERVER_NOT_REACHABLE","features":[439]},{"name":"ERROR_DHCP_SERVER_NOT_RUNNING","features":[439]},{"name":"ERROR_DHCP_SERVICE_PAUSED","features":[439]},{"name":"ERROR_DHCP_SUBNET_EXISTS","features":[439]},{"name":"ERROR_DHCP_SUBNET_EXITS","features":[439]},{"name":"ERROR_DHCP_SUBNET_NOT_PRESENT","features":[439]},{"name":"ERROR_DHCP_SUPER_SCOPE_NAME_TOO_LONG","features":[439]},{"name":"ERROR_DHCP_UNDEFINED_HARDWARE_ADDRESS_TYPE","features":[439]},{"name":"ERROR_DHCP_UNSUPPORTED_CLIENT","features":[439]},{"name":"ERROR_EXTEND_TOO_SMALL","features":[439]},{"name":"ERROR_LAST_DHCP_SERVER_ERROR","features":[439]},{"name":"ERROR_MSCOPE_RANGE_TOO_SMALL","features":[439]},{"name":"ERROR_SCOPE_RANGE_POLICY_RANGE_CONFLICT","features":[439]},{"name":"ERROR_SERVER_INVALID_BOOT_FILE_TABLE","features":[439]},{"name":"ERROR_SERVER_UNKNOWN_BOOT_FILE_NAME","features":[439]},{"name":"EXEMPT","features":[439]},{"name":"FILTER_STATUS_FULL_MATCH_IN_ALLOW_LIST","features":[439]},{"name":"FILTER_STATUS_FULL_MATCH_IN_DENY_LIST","features":[439]},{"name":"FILTER_STATUS_NONE","features":[439]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_ALLOW_LIST","features":[439]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_DENY_LIST","features":[439]},{"name":"FSM_STATE","features":[439]},{"name":"HWTYPE_ETHERNET_10MB","features":[439]},{"name":"HotStandby","features":[439]},{"name":"INIT","features":[439]},{"name":"LPDHCP_CONTROL","features":[439]},{"name":"LPDHCP_DELETE_CLIENT","features":[439]},{"name":"LPDHCP_DROP_SEND","features":[439]},{"name":"LPDHCP_ENTRY_POINT_FUNC","features":[303,439]},{"name":"LPDHCP_GIVE_ADDRESS","features":[439]},{"name":"LPDHCP_HANDLE_OPTIONS","features":[303,439]},{"name":"LPDHCP_NEWPKT","features":[303,439]},{"name":"LPDHCP_PROB","features":[439]},{"name":"LoadBalance","features":[439]},{"name":"MAC_ADDRESS_LENGTH","features":[439]},{"name":"MAX_PATTERN_LENGTH","features":[439]},{"name":"MCLT","features":[439]},{"name":"MODE","features":[439]},{"name":"NOQUARANTINE","features":[439]},{"name":"NOQUARINFO","features":[439]},{"name":"NORMAL","features":[439]},{"name":"NO_STATE","features":[439]},{"name":"OPTION_ALL_SUBNETS_MTU","features":[439]},{"name":"OPTION_ARP_CACHE_TIMEOUT","features":[439]},{"name":"OPTION_BE_A_MASK_SUPPLIER","features":[439]},{"name":"OPTION_BE_A_ROUTER","features":[439]},{"name":"OPTION_BOOTFILE_NAME","features":[439]},{"name":"OPTION_BOOT_FILE_SIZE","features":[439]},{"name":"OPTION_BROADCAST_ADDRESS","features":[439]},{"name":"OPTION_CLIENT_CLASS_INFO","features":[439]},{"name":"OPTION_CLIENT_ID","features":[439]},{"name":"OPTION_COOKIE_SERVERS","features":[439]},{"name":"OPTION_DEFAULT_TTL","features":[439]},{"name":"OPTION_DOMAIN_NAME","features":[439]},{"name":"OPTION_DOMAIN_NAME_SERVERS","features":[439]},{"name":"OPTION_END","features":[439]},{"name":"OPTION_ETHERNET_ENCAPSULATION","features":[439]},{"name":"OPTION_EXTENSIONS_PATH","features":[439]},{"name":"OPTION_HOST_NAME","features":[439]},{"name":"OPTION_IEN116_NAME_SERVERS","features":[439]},{"name":"OPTION_IMPRESS_SERVERS","features":[439]},{"name":"OPTION_KEEP_ALIVE_DATA_SIZE","features":[439]},{"name":"OPTION_KEEP_ALIVE_INTERVAL","features":[439]},{"name":"OPTION_LEASE_TIME","features":[439]},{"name":"OPTION_LOG_SERVERS","features":[439]},{"name":"OPTION_LPR_SERVERS","features":[439]},{"name":"OPTION_MAX_REASSEMBLY_SIZE","features":[439]},{"name":"OPTION_MERIT_DUMP_FILE","features":[439]},{"name":"OPTION_MESSAGE","features":[439]},{"name":"OPTION_MESSAGE_LENGTH","features":[439]},{"name":"OPTION_MESSAGE_TYPE","features":[439]},{"name":"OPTION_MSFT_IE_PROXY","features":[439]},{"name":"OPTION_MTU","features":[439]},{"name":"OPTION_NETBIOS_DATAGRAM_SERVER","features":[439]},{"name":"OPTION_NETBIOS_NAME_SERVER","features":[439]},{"name":"OPTION_NETBIOS_NODE_TYPE","features":[439]},{"name":"OPTION_NETBIOS_SCOPE_OPTION","features":[439]},{"name":"OPTION_NETWORK_INFO_SERVERS","features":[439]},{"name":"OPTION_NETWORK_INFO_SERVICE_DOM","features":[439]},{"name":"OPTION_NETWORK_TIME_SERVERS","features":[439]},{"name":"OPTION_NON_LOCAL_SOURCE_ROUTING","features":[439]},{"name":"OPTION_OK_TO_OVERLAY","features":[439]},{"name":"OPTION_PAD","features":[439]},{"name":"OPTION_PARAMETER_REQUEST_LIST","features":[439]},{"name":"OPTION_PERFORM_MASK_DISCOVERY","features":[439]},{"name":"OPTION_PERFORM_ROUTER_DISCOVERY","features":[439]},{"name":"OPTION_PMTU_AGING_TIMEOUT","features":[439]},{"name":"OPTION_PMTU_PLATEAU_TABLE","features":[439]},{"name":"OPTION_POLICY_FILTER_FOR_NLSR","features":[439]},{"name":"OPTION_REBIND_TIME","features":[439]},{"name":"OPTION_RENEWAL_TIME","features":[439]},{"name":"OPTION_REQUESTED_ADDRESS","features":[439]},{"name":"OPTION_RLP_SERVERS","features":[439]},{"name":"OPTION_ROOT_DISK","features":[439]},{"name":"OPTION_ROUTER_ADDRESS","features":[439]},{"name":"OPTION_ROUTER_SOLICITATION_ADDR","features":[439]},{"name":"OPTION_SERVER_IDENTIFIER","features":[439]},{"name":"OPTION_STATIC_ROUTES","features":[439]},{"name":"OPTION_SUBNET_MASK","features":[439]},{"name":"OPTION_SWAP_SERVER","features":[439]},{"name":"OPTION_TFTP_SERVER_NAME","features":[439]},{"name":"OPTION_TIME_OFFSET","features":[439]},{"name":"OPTION_TIME_SERVERS","features":[439]},{"name":"OPTION_TRAILERS","features":[439]},{"name":"OPTION_TTL","features":[439]},{"name":"OPTION_VENDOR_SPEC_INFO","features":[439]},{"name":"OPTION_XWINDOW_DISPLAY_MANAGER","features":[439]},{"name":"OPTION_XWINDOW_FONT_SERVER","features":[439]},{"name":"PARTNER_DOWN","features":[439]},{"name":"PAUSED","features":[439]},{"name":"PERCENTAGE","features":[439]},{"name":"POTENTIAL_CONFLICT","features":[439]},{"name":"PREVSTATE","features":[439]},{"name":"PROBATION","features":[439]},{"name":"PrimaryServer","features":[439]},{"name":"QUARANTINE_CONFIG_OPTION","features":[439]},{"name":"QUARANTINE_SCOPE_QUARPROFILE_OPTION","features":[439]},{"name":"QUARANTIN_OPTION_BASE","features":[439]},{"name":"QuarantineStatus","features":[439]},{"name":"RECOVER","features":[439]},{"name":"RECOVER_DONE","features":[439]},{"name":"RECOVER_WAIT","features":[439]},{"name":"RESOLUTION_INT","features":[439]},{"name":"RESTRICTEDACCESS","features":[439]},{"name":"SAFEPERIOD","features":[439]},{"name":"SCOPE_MIB_INFO","features":[439]},{"name":"SCOPE_MIB_INFO_V5","features":[439]},{"name":"SCOPE_MIB_INFO_V6","features":[439]},{"name":"SCOPE_MIB_INFO_VQ","features":[439]},{"name":"SHAREDSECRET","features":[439]},{"name":"SHUTDOWN","features":[439]},{"name":"STARTUP","features":[439]},{"name":"STATUS_NOPREFIX_AVAIL","features":[439]},{"name":"STATUS_NO_BINDING","features":[439]},{"name":"STATUS_NO_ERROR","features":[439]},{"name":"STATUS_UNSPECIFIED_FAILURE","features":[439]},{"name":"SecondaryServer","features":[439]},{"name":"Set_APIProtocolSupport","features":[439]},{"name":"Set_AuditLogState","features":[439]},{"name":"Set_BackupInterval","features":[439]},{"name":"Set_BackupPath","features":[439]},{"name":"Set_BootFileTable","features":[439]},{"name":"Set_DatabaseCleanupInterval","features":[439]},{"name":"Set_DatabaseLoggingFlag","features":[439]},{"name":"Set_DatabaseName","features":[439]},{"name":"Set_DatabasePath","features":[439]},{"name":"Set_DebugFlag","features":[439]},{"name":"Set_PingRetries","features":[439]},{"name":"Set_PreferredLifetime","features":[439]},{"name":"Set_PreferredLifetimeIATA","features":[439]},{"name":"Set_QuarantineDefFail","features":[439]},{"name":"Set_QuarantineON","features":[439]},{"name":"Set_RapidCommitFlag","features":[439]},{"name":"Set_RestoreFlag","features":[439]},{"name":"Set_T1","features":[439]},{"name":"Set_T2","features":[439]},{"name":"Set_UnicastFlag","features":[439]},{"name":"Set_ValidLifetime","features":[439]},{"name":"Set_ValidLifetimeIATA","features":[439]},{"name":"StatusCode","features":[439]},{"name":"V5_ADDRESS_BIT_BOTH_REC","features":[439]},{"name":"V5_ADDRESS_BIT_DELETED","features":[439]},{"name":"V5_ADDRESS_BIT_UNREGISTERED","features":[439]},{"name":"V5_ADDRESS_EX_BIT_DISABLE_PTR_RR","features":[439]},{"name":"V5_ADDRESS_STATE_ACTIVE","features":[439]},{"name":"V5_ADDRESS_STATE_DECLINED","features":[439]},{"name":"V5_ADDRESS_STATE_DOOM","features":[439]},{"name":"V5_ADDRESS_STATE_OFFERED","features":[439]},{"name":"WARNING_EXTENDED_LESS","features":[439]}],"444":[{"name":"DDR_MAX_IP_HINTS","features":[440]},{"name":"DNSREC_ADDITIONAL","features":[440]},{"name":"DNSREC_ANSWER","features":[440]},{"name":"DNSREC_AUTHORITY","features":[440]},{"name":"DNSREC_DELETE","features":[440]},{"name":"DNSREC_NOEXIST","features":[440]},{"name":"DNSREC_PREREQ","features":[440]},{"name":"DNSREC_QUESTION","features":[440]},{"name":"DNSREC_SECTION","features":[440]},{"name":"DNSREC_UPDATE","features":[440]},{"name":"DNSREC_ZONE","features":[440]},{"name":"DNSSEC_ALGORITHM_ECDSAP256_SHA256","features":[440]},{"name":"DNSSEC_ALGORITHM_ECDSAP384_SHA384","features":[440]},{"name":"DNSSEC_ALGORITHM_NULL","features":[440]},{"name":"DNSSEC_ALGORITHM_PRIVATE","features":[440]},{"name":"DNSSEC_ALGORITHM_RSAMD5","features":[440]},{"name":"DNSSEC_ALGORITHM_RSASHA1","features":[440]},{"name":"DNSSEC_ALGORITHM_RSASHA1_NSEC3","features":[440]},{"name":"DNSSEC_ALGORITHM_RSASHA256","features":[440]},{"name":"DNSSEC_ALGORITHM_RSASHA512","features":[440]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA1","features":[440]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA256","features":[440]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA384","features":[440]},{"name":"DNSSEC_KEY_FLAG_EXTEND","features":[440]},{"name":"DNSSEC_KEY_FLAG_FLAG10","features":[440]},{"name":"DNSSEC_KEY_FLAG_FLAG11","features":[440]},{"name":"DNSSEC_KEY_FLAG_FLAG2","features":[440]},{"name":"DNSSEC_KEY_FLAG_FLAG4","features":[440]},{"name":"DNSSEC_KEY_FLAG_FLAG5","features":[440]},{"name":"DNSSEC_KEY_FLAG_FLAG8","features":[440]},{"name":"DNSSEC_KEY_FLAG_FLAG9","features":[440]},{"name":"DNSSEC_KEY_FLAG_HOST","features":[440]},{"name":"DNSSEC_KEY_FLAG_NOAUTH","features":[440]},{"name":"DNSSEC_KEY_FLAG_NOCONF","features":[440]},{"name":"DNSSEC_KEY_FLAG_NTPE3","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG0","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG1","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG10","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG11","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG12","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG13","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG14","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG15","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG2","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG3","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG4","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG5","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG6","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG7","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG8","features":[440]},{"name":"DNSSEC_KEY_FLAG_SIG9","features":[440]},{"name":"DNSSEC_KEY_FLAG_USER","features":[440]},{"name":"DNSSEC_KEY_FLAG_ZONE","features":[440]},{"name":"DNSSEC_PROTOCOL_DNSSEC","features":[440]},{"name":"DNSSEC_PROTOCOL_EMAIL","features":[440]},{"name":"DNSSEC_PROTOCOL_IPSEC","features":[440]},{"name":"DNSSEC_PROTOCOL_NONE","features":[440]},{"name":"DNSSEC_PROTOCOL_TLS","features":[440]},{"name":"DNS_AAAA_DATA","features":[440]},{"name":"DNS_ADDR","features":[440]},{"name":"DNS_ADDRESS_STRING_LENGTH","features":[440]},{"name":"DNS_ADDR_ARRAY","features":[440]},{"name":"DNS_ADDR_MAX_SOCKADDR_LENGTH","features":[440]},{"name":"DNS_APPLICATION_SETTINGS","features":[440]},{"name":"DNS_APP_SETTINGS_EXCLUSIVE_SERVERS","features":[440]},{"name":"DNS_APP_SETTINGS_VERSION1","features":[440]},{"name":"DNS_ATMA_AESA_ADDR_LENGTH","features":[440]},{"name":"DNS_ATMA_DATA","features":[440]},{"name":"DNS_ATMA_FORMAT_AESA","features":[440]},{"name":"DNS_ATMA_FORMAT_E164","features":[440]},{"name":"DNS_ATMA_MAX_ADDR_LENGTH","features":[440]},{"name":"DNS_ATMA_MAX_RECORD_LENGTH","features":[440]},{"name":"DNS_A_DATA","features":[440]},{"name":"DNS_CHARSET","features":[440]},{"name":"DNS_CLASS_ALL","features":[440]},{"name":"DNS_CLASS_ANY","features":[440]},{"name":"DNS_CLASS_CHAOS","features":[440]},{"name":"DNS_CLASS_CSNET","features":[440]},{"name":"DNS_CLASS_HESIOD","features":[440]},{"name":"DNS_CLASS_INTERNET","features":[440]},{"name":"DNS_CLASS_NONE","features":[440]},{"name":"DNS_CLASS_UNICAST_RESPONSE","features":[440]},{"name":"DNS_COMPRESSED_QUESTION_NAME","features":[440]},{"name":"DNS_CONFIG_FLAG_ALLOC","features":[440]},{"name":"DNS_CONFIG_TYPE","features":[440]},{"name":"DNS_CONNECTION_IFINDEX_ENTRY","features":[440]},{"name":"DNS_CONNECTION_IFINDEX_LIST","features":[440]},{"name":"DNS_CONNECTION_NAME","features":[440]},{"name":"DNS_CONNECTION_NAME_LIST","features":[440]},{"name":"DNS_CONNECTION_NAME_MAX_LENGTH","features":[440]},{"name":"DNS_CONNECTION_POLICY_ENTRY","features":[440]},{"name":"DNS_CONNECTION_POLICY_ENTRY_LIST","features":[440]},{"name":"DNS_CONNECTION_POLICY_ENTRY_ONDEMAND","features":[440]},{"name":"DNS_CONNECTION_POLICY_TAG","features":[440]},{"name":"DNS_CONNECTION_PROXY_ELEMENT","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_CURRENT_VERSION","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_EX","features":[303,440]},{"name":"DNS_CONNECTION_PROXY_INFO_EXCEPTION_MAX_LENGTH","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_EXTRA_INFO_MAX_LENGTH","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_BYPASSLOCAL","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_DISABLED","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_FRIENDLY_NAME_MAX_LENGTH","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_PASSWORD_MAX_LENGTH","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_SERVER_MAX_LENGTH","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_CONFIG","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_SCRIPT","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_WPAD","features":[440]},{"name":"DNS_CONNECTION_PROXY_INFO_USERNAME_MAX_LENGTH","features":[440]},{"name":"DNS_CONNECTION_PROXY_LIST","features":[440]},{"name":"DNS_CONNECTION_PROXY_TYPE","features":[440]},{"name":"DNS_CONNECTION_PROXY_TYPE_HTTP","features":[440]},{"name":"DNS_CONNECTION_PROXY_TYPE_NULL","features":[440]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS4","features":[440]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS5","features":[440]},{"name":"DNS_CONNECTION_PROXY_TYPE_WAP","features":[440]},{"name":"DNS_CUSTOM_SERVER","features":[440]},{"name":"DNS_CUSTOM_SERVER_TYPE_DOH","features":[440]},{"name":"DNS_CUSTOM_SERVER_TYPE_UDP","features":[440]},{"name":"DNS_CUSTOM_SERVER_UDP_FALLBACK","features":[440]},{"name":"DNS_DHCID_DATA","features":[440]},{"name":"DNS_DS_DATA","features":[440]},{"name":"DNS_FREE_TYPE","features":[440]},{"name":"DNS_HEADER","features":[440]},{"name":"DNS_HEADER_EXT","features":[440]},{"name":"DNS_KEY_DATA","features":[440]},{"name":"DNS_LOC_DATA","features":[440]},{"name":"DNS_MAX_IP4_REVERSE_NAME_BUFFER_LENGTH","features":[440]},{"name":"DNS_MAX_IP4_REVERSE_NAME_LENGTH","features":[440]},{"name":"DNS_MAX_IP6_REVERSE_NAME_BUFFER_LENGTH","features":[440]},{"name":"DNS_MAX_IP6_REVERSE_NAME_LENGTH","features":[440]},{"name":"DNS_MAX_LABEL_BUFFER_LENGTH","features":[440]},{"name":"DNS_MAX_LABEL_LENGTH","features":[440]},{"name":"DNS_MAX_NAME_BUFFER_LENGTH","features":[440]},{"name":"DNS_MAX_NAME_LENGTH","features":[440]},{"name":"DNS_MAX_REVERSE_NAME_BUFFER_LENGTH","features":[440]},{"name":"DNS_MAX_REVERSE_NAME_LENGTH","features":[440]},{"name":"DNS_MAX_TEXT_STRING_LENGTH","features":[440]},{"name":"DNS_MESSAGE_BUFFER","features":[440]},{"name":"DNS_MINFO_DATAA","features":[440]},{"name":"DNS_MINFO_DATAW","features":[440]},{"name":"DNS_MX_DATAA","features":[440]},{"name":"DNS_MX_DATAW","features":[440]},{"name":"DNS_NAME_FORMAT","features":[440]},{"name":"DNS_NAPTR_DATAA","features":[440]},{"name":"DNS_NAPTR_DATAW","features":[440]},{"name":"DNS_NSEC3PARAM_DATA","features":[440]},{"name":"DNS_NSEC3_DATA","features":[440]},{"name":"DNS_NSEC_DATAA","features":[440]},{"name":"DNS_NSEC_DATAW","features":[440]},{"name":"DNS_NULL_DATA","features":[440]},{"name":"DNS_NXT_DATAA","features":[440]},{"name":"DNS_NXT_DATAW","features":[440]},{"name":"DNS_OPCODE_IQUERY","features":[440]},{"name":"DNS_OPCODE_NOTIFY","features":[440]},{"name":"DNS_OPCODE_QUERY","features":[440]},{"name":"DNS_OPCODE_SERVER_STATUS","features":[440]},{"name":"DNS_OPCODE_UNKNOWN","features":[440]},{"name":"DNS_OPCODE_UPDATE","features":[440]},{"name":"DNS_OPT_DATA","features":[440]},{"name":"DNS_PORT_HOST_ORDER","features":[440]},{"name":"DNS_PORT_NET_ORDER","features":[440]},{"name":"DNS_PROTOCOL_DOH","features":[440]},{"name":"DNS_PROTOCOL_NO_WIRE","features":[440]},{"name":"DNS_PROTOCOL_TCP","features":[440]},{"name":"DNS_PROTOCOL_UDP","features":[440]},{"name":"DNS_PROTOCOL_UNSPECIFIED","features":[440]},{"name":"DNS_PROXY_COMPLETION_ROUTINE","features":[440]},{"name":"DNS_PROXY_INFORMATION","features":[440]},{"name":"DNS_PROXY_INFORMATION_DEFAULT_SETTINGS","features":[440]},{"name":"DNS_PROXY_INFORMATION_DIRECT","features":[440]},{"name":"DNS_PROXY_INFORMATION_DOES_NOT_EXIST","features":[440]},{"name":"DNS_PROXY_INFORMATION_PROXY_NAME","features":[440]},{"name":"DNS_PROXY_INFORMATION_TYPE","features":[440]},{"name":"DNS_PTR_DATAA","features":[440]},{"name":"DNS_PTR_DATAW","features":[440]},{"name":"DNS_QUERY_ACCEPT_TRUNCATED_RESPONSE","features":[440]},{"name":"DNS_QUERY_ADDRCONFIG","features":[440]},{"name":"DNS_QUERY_APPEND_MULTILABEL","features":[440]},{"name":"DNS_QUERY_BYPASS_CACHE","features":[440]},{"name":"DNS_QUERY_CACHE_ONLY","features":[440]},{"name":"DNS_QUERY_CANCEL","features":[440]},{"name":"DNS_QUERY_DISABLE_IDN_ENCODING","features":[440]},{"name":"DNS_QUERY_DNSSEC_CHECKING_DISABLED","features":[440]},{"name":"DNS_QUERY_DNSSEC_OK","features":[440]},{"name":"DNS_QUERY_DONT_RESET_TTL_VALUES","features":[440]},{"name":"DNS_QUERY_DUAL_ADDR","features":[440]},{"name":"DNS_QUERY_MULTICAST_ONLY","features":[440]},{"name":"DNS_QUERY_NO_HOSTS_FILE","features":[440]},{"name":"DNS_QUERY_NO_LOCAL_NAME","features":[440]},{"name":"DNS_QUERY_NO_MULTICAST","features":[440]},{"name":"DNS_QUERY_NO_NETBT","features":[440]},{"name":"DNS_QUERY_NO_RECURSION","features":[440]},{"name":"DNS_QUERY_NO_WIRE_QUERY","features":[440]},{"name":"DNS_QUERY_OPTIONS","features":[440]},{"name":"DNS_QUERY_RAW_CANCEL","features":[440]},{"name":"DNS_QUERY_RAW_COMPLETION_ROUTINE","features":[303,440]},{"name":"DNS_QUERY_RAW_OPTION_BEST_EFFORT_PARSE","features":[440]},{"name":"DNS_QUERY_RAW_REQUEST","features":[303,440]},{"name":"DNS_QUERY_RAW_REQUEST_VERSION1","features":[440]},{"name":"DNS_QUERY_RAW_RESULT","features":[303,440]},{"name":"DNS_QUERY_RAW_RESULTS_VERSION1","features":[440]},{"name":"DNS_QUERY_REQUEST","features":[303,440]},{"name":"DNS_QUERY_REQUEST3","features":[303,440]},{"name":"DNS_QUERY_REQUEST_VERSION1","features":[440]},{"name":"DNS_QUERY_REQUEST_VERSION2","features":[440]},{"name":"DNS_QUERY_REQUEST_VERSION3","features":[440]},{"name":"DNS_QUERY_RESERVED","features":[440]},{"name":"DNS_QUERY_RESULT","features":[303,440]},{"name":"DNS_QUERY_RESULTS_VERSION1","features":[440]},{"name":"DNS_QUERY_RETURN_MESSAGE","features":[440]},{"name":"DNS_QUERY_STANDARD","features":[440]},{"name":"DNS_QUERY_TREAT_AS_FQDN","features":[440]},{"name":"DNS_QUERY_USE_TCP_ONLY","features":[440]},{"name":"DNS_QUERY_WIRE_ONLY","features":[440]},{"name":"DNS_RCLASS_ALL","features":[440]},{"name":"DNS_RCLASS_ANY","features":[440]},{"name":"DNS_RCLASS_CHAOS","features":[440]},{"name":"DNS_RCLASS_CSNET","features":[440]},{"name":"DNS_RCLASS_HESIOD","features":[440]},{"name":"DNS_RCLASS_INTERNET","features":[440]},{"name":"DNS_RCLASS_MDNS_CACHE_FLUSH","features":[440]},{"name":"DNS_RCLASS_NONE","features":[440]},{"name":"DNS_RCLASS_UNICAST_RESPONSE","features":[440]},{"name":"DNS_RCODE_BADKEY","features":[440]},{"name":"DNS_RCODE_BADSIG","features":[440]},{"name":"DNS_RCODE_BADTIME","features":[440]},{"name":"DNS_RCODE_BADVERS","features":[440]},{"name":"DNS_RCODE_FORMAT_ERROR","features":[440]},{"name":"DNS_RCODE_FORMERR","features":[440]},{"name":"DNS_RCODE_MAX","features":[440]},{"name":"DNS_RCODE_NAME_ERROR","features":[440]},{"name":"DNS_RCODE_NOERROR","features":[440]},{"name":"DNS_RCODE_NOTAUTH","features":[440]},{"name":"DNS_RCODE_NOTIMPL","features":[440]},{"name":"DNS_RCODE_NOTZONE","features":[440]},{"name":"DNS_RCODE_NOT_IMPLEMENTED","features":[440]},{"name":"DNS_RCODE_NO_ERROR","features":[440]},{"name":"DNS_RCODE_NXDOMAIN","features":[440]},{"name":"DNS_RCODE_NXRRSET","features":[440]},{"name":"DNS_RCODE_REFUSED","features":[440]},{"name":"DNS_RCODE_SERVER_FAILURE","features":[440]},{"name":"DNS_RCODE_SERVFAIL","features":[440]},{"name":"DNS_RCODE_YXDOMAIN","features":[440]},{"name":"DNS_RCODE_YXRRSET","features":[440]},{"name":"DNS_RECORDA","features":[303,440]},{"name":"DNS_RECORDW","features":[303,440]},{"name":"DNS_RECORD_FLAGS","features":[440]},{"name":"DNS_RECORD_OPTW","features":[303,440]},{"name":"DNS_RFC_MAX_UDP_PACKET_LENGTH","features":[440]},{"name":"DNS_RRSET","features":[303,440]},{"name":"DNS_RTYPE_A","features":[440]},{"name":"DNS_RTYPE_A6","features":[440]},{"name":"DNS_RTYPE_AAAA","features":[440]},{"name":"DNS_RTYPE_AFSDB","features":[440]},{"name":"DNS_RTYPE_ALL","features":[440]},{"name":"DNS_RTYPE_ANY","features":[440]},{"name":"DNS_RTYPE_ATMA","features":[440]},{"name":"DNS_RTYPE_AXFR","features":[440]},{"name":"DNS_RTYPE_CERT","features":[440]},{"name":"DNS_RTYPE_CNAME","features":[440]},{"name":"DNS_RTYPE_DHCID","features":[440]},{"name":"DNS_RTYPE_DNAME","features":[440]},{"name":"DNS_RTYPE_DNSKEY","features":[440]},{"name":"DNS_RTYPE_DS","features":[440]},{"name":"DNS_RTYPE_EID","features":[440]},{"name":"DNS_RTYPE_GID","features":[440]},{"name":"DNS_RTYPE_GPOS","features":[440]},{"name":"DNS_RTYPE_HINFO","features":[440]},{"name":"DNS_RTYPE_ISDN","features":[440]},{"name":"DNS_RTYPE_IXFR","features":[440]},{"name":"DNS_RTYPE_KEY","features":[440]},{"name":"DNS_RTYPE_KX","features":[440]},{"name":"DNS_RTYPE_LOC","features":[440]},{"name":"DNS_RTYPE_MAILA","features":[440]},{"name":"DNS_RTYPE_MAILB","features":[440]},{"name":"DNS_RTYPE_MB","features":[440]},{"name":"DNS_RTYPE_MD","features":[440]},{"name":"DNS_RTYPE_MF","features":[440]},{"name":"DNS_RTYPE_MG","features":[440]},{"name":"DNS_RTYPE_MINFO","features":[440]},{"name":"DNS_RTYPE_MR","features":[440]},{"name":"DNS_RTYPE_MX","features":[440]},{"name":"DNS_RTYPE_NAPTR","features":[440]},{"name":"DNS_RTYPE_NIMLOC","features":[440]},{"name":"DNS_RTYPE_NS","features":[440]},{"name":"DNS_RTYPE_NSAP","features":[440]},{"name":"DNS_RTYPE_NSAPPTR","features":[440]},{"name":"DNS_RTYPE_NSEC","features":[440]},{"name":"DNS_RTYPE_NSEC3","features":[440]},{"name":"DNS_RTYPE_NSEC3PARAM","features":[440]},{"name":"DNS_RTYPE_NULL","features":[440]},{"name":"DNS_RTYPE_NXT","features":[440]},{"name":"DNS_RTYPE_OPT","features":[440]},{"name":"DNS_RTYPE_PTR","features":[440]},{"name":"DNS_RTYPE_PX","features":[440]},{"name":"DNS_RTYPE_RP","features":[440]},{"name":"DNS_RTYPE_RRSIG","features":[440]},{"name":"DNS_RTYPE_RT","features":[440]},{"name":"DNS_RTYPE_SIG","features":[440]},{"name":"DNS_RTYPE_SINK","features":[440]},{"name":"DNS_RTYPE_SOA","features":[440]},{"name":"DNS_RTYPE_SRV","features":[440]},{"name":"DNS_RTYPE_TEXT","features":[440]},{"name":"DNS_RTYPE_TKEY","features":[440]},{"name":"DNS_RTYPE_TLSA","features":[440]},{"name":"DNS_RTYPE_TSIG","features":[440]},{"name":"DNS_RTYPE_UID","features":[440]},{"name":"DNS_RTYPE_UINFO","features":[440]},{"name":"DNS_RTYPE_UNSPEC","features":[440]},{"name":"DNS_RTYPE_WINS","features":[440]},{"name":"DNS_RTYPE_WINSR","features":[440]},{"name":"DNS_RTYPE_WKS","features":[440]},{"name":"DNS_RTYPE_X25","features":[440]},{"name":"DNS_SECTION","features":[440]},{"name":"DNS_SERVICE_BROWSE_REQUEST","features":[303,440]},{"name":"DNS_SERVICE_CANCEL","features":[440]},{"name":"DNS_SERVICE_INSTANCE","features":[440]},{"name":"DNS_SERVICE_REGISTER_REQUEST","features":[303,440]},{"name":"DNS_SERVICE_RESOLVE_REQUEST","features":[440]},{"name":"DNS_SIG_DATAA","features":[440]},{"name":"DNS_SIG_DATAW","features":[440]},{"name":"DNS_SOA_DATAA","features":[440]},{"name":"DNS_SOA_DATAW","features":[440]},{"name":"DNS_SRV_DATAA","features":[440]},{"name":"DNS_SRV_DATAW","features":[440]},{"name":"DNS_SVCB_DATA","features":[440]},{"name":"DNS_SVCB_PARAM","features":[440]},{"name":"DNS_SVCB_PARAM_ALPN","features":[440]},{"name":"DNS_SVCB_PARAM_ALPN_ID","features":[440]},{"name":"DNS_SVCB_PARAM_IPV4","features":[440]},{"name":"DNS_SVCB_PARAM_IPV6","features":[440]},{"name":"DNS_SVCB_PARAM_MANDATORY","features":[440]},{"name":"DNS_SVCB_PARAM_TYPE","features":[440]},{"name":"DNS_SVCB_PARAM_UNKNOWN","features":[440]},{"name":"DNS_TKEY_DATAA","features":[303,440]},{"name":"DNS_TKEY_DATAW","features":[303,440]},{"name":"DNS_TKEY_MODE_DIFFIE_HELLMAN","features":[440]},{"name":"DNS_TKEY_MODE_GSS","features":[440]},{"name":"DNS_TKEY_MODE_RESOLVER_ASSIGN","features":[440]},{"name":"DNS_TKEY_MODE_SERVER_ASSIGN","features":[440]},{"name":"DNS_TLSA_DATA","features":[440]},{"name":"DNS_TSIG_DATAA","features":[303,440]},{"name":"DNS_TSIG_DATAW","features":[303,440]},{"name":"DNS_TXT_DATAA","features":[440]},{"name":"DNS_TXT_DATAW","features":[440]},{"name":"DNS_TYPE","features":[440]},{"name":"DNS_TYPE_A","features":[440]},{"name":"DNS_TYPE_A6","features":[440]},{"name":"DNS_TYPE_AAAA","features":[440]},{"name":"DNS_TYPE_ADDRS","features":[440]},{"name":"DNS_TYPE_AFSDB","features":[440]},{"name":"DNS_TYPE_ALL","features":[440]},{"name":"DNS_TYPE_ANY","features":[440]},{"name":"DNS_TYPE_ATMA","features":[440]},{"name":"DNS_TYPE_AXFR","features":[440]},{"name":"DNS_TYPE_CERT","features":[440]},{"name":"DNS_TYPE_CNAME","features":[440]},{"name":"DNS_TYPE_DHCID","features":[440]},{"name":"DNS_TYPE_DNAME","features":[440]},{"name":"DNS_TYPE_DNSKEY","features":[440]},{"name":"DNS_TYPE_DS","features":[440]},{"name":"DNS_TYPE_EID","features":[440]},{"name":"DNS_TYPE_GID","features":[440]},{"name":"DNS_TYPE_GPOS","features":[440]},{"name":"DNS_TYPE_HINFO","features":[440]},{"name":"DNS_TYPE_HTTPS","features":[440]},{"name":"DNS_TYPE_ISDN","features":[440]},{"name":"DNS_TYPE_IXFR","features":[440]},{"name":"DNS_TYPE_KEY","features":[440]},{"name":"DNS_TYPE_KX","features":[440]},{"name":"DNS_TYPE_LOC","features":[440]},{"name":"DNS_TYPE_MAILA","features":[440]},{"name":"DNS_TYPE_MAILB","features":[440]},{"name":"DNS_TYPE_MB","features":[440]},{"name":"DNS_TYPE_MD","features":[440]},{"name":"DNS_TYPE_MF","features":[440]},{"name":"DNS_TYPE_MG","features":[440]},{"name":"DNS_TYPE_MINFO","features":[440]},{"name":"DNS_TYPE_MR","features":[440]},{"name":"DNS_TYPE_MX","features":[440]},{"name":"DNS_TYPE_NAPTR","features":[440]},{"name":"DNS_TYPE_NBSTAT","features":[440]},{"name":"DNS_TYPE_NIMLOC","features":[440]},{"name":"DNS_TYPE_NS","features":[440]},{"name":"DNS_TYPE_NSAP","features":[440]},{"name":"DNS_TYPE_NSAPPTR","features":[440]},{"name":"DNS_TYPE_NSEC","features":[440]},{"name":"DNS_TYPE_NSEC3","features":[440]},{"name":"DNS_TYPE_NSEC3PARAM","features":[440]},{"name":"DNS_TYPE_NULL","features":[440]},{"name":"DNS_TYPE_NXT","features":[440]},{"name":"DNS_TYPE_OPT","features":[440]},{"name":"DNS_TYPE_PTR","features":[440]},{"name":"DNS_TYPE_PX","features":[440]},{"name":"DNS_TYPE_RP","features":[440]},{"name":"DNS_TYPE_RRSIG","features":[440]},{"name":"DNS_TYPE_RT","features":[440]},{"name":"DNS_TYPE_SIG","features":[440]},{"name":"DNS_TYPE_SINK","features":[440]},{"name":"DNS_TYPE_SOA","features":[440]},{"name":"DNS_TYPE_SRV","features":[440]},{"name":"DNS_TYPE_SVCB","features":[440]},{"name":"DNS_TYPE_TEXT","features":[440]},{"name":"DNS_TYPE_TKEY","features":[440]},{"name":"DNS_TYPE_TLSA","features":[440]},{"name":"DNS_TYPE_TSIG","features":[440]},{"name":"DNS_TYPE_UID","features":[440]},{"name":"DNS_TYPE_UINFO","features":[440]},{"name":"DNS_TYPE_UNSPEC","features":[440]},{"name":"DNS_TYPE_WINS","features":[440]},{"name":"DNS_TYPE_WINSR","features":[440]},{"name":"DNS_TYPE_WKS","features":[440]},{"name":"DNS_TYPE_X25","features":[440]},{"name":"DNS_TYPE_ZERO","features":[440]},{"name":"DNS_UNKNOWN_DATA","features":[440]},{"name":"DNS_UPDATE_CACHE_SECURITY_CONTEXT","features":[440]},{"name":"DNS_UPDATE_FORCE_SECURITY_NEGO","features":[440]},{"name":"DNS_UPDATE_REMOTE_SERVER","features":[440]},{"name":"DNS_UPDATE_RESERVED","features":[440]},{"name":"DNS_UPDATE_SECURITY_OFF","features":[440]},{"name":"DNS_UPDATE_SECURITY_ON","features":[440]},{"name":"DNS_UPDATE_SECURITY_ONLY","features":[440]},{"name":"DNS_UPDATE_SECURITY_USE_DEFAULT","features":[440]},{"name":"DNS_UPDATE_SKIP_NO_UPDATE_ADAPTERS","features":[440]},{"name":"DNS_UPDATE_TEST_USE_LOCAL_SYS_ACCT","features":[440]},{"name":"DNS_UPDATE_TRY_ALL_MASTER_SERVERS","features":[440]},{"name":"DNS_VALSVR_ERROR_INVALID_ADDR","features":[440]},{"name":"DNS_VALSVR_ERROR_INVALID_NAME","features":[440]},{"name":"DNS_VALSVR_ERROR_NO_AUTH","features":[440]},{"name":"DNS_VALSVR_ERROR_NO_RESPONSE","features":[440]},{"name":"DNS_VALSVR_ERROR_NO_TCP","features":[440]},{"name":"DNS_VALSVR_ERROR_REFUSED","features":[440]},{"name":"DNS_VALSVR_ERROR_UNKNOWN","features":[440]},{"name":"DNS_VALSVR_ERROR_UNREACHABLE","features":[440]},{"name":"DNS_WINSR_DATAA","features":[440]},{"name":"DNS_WINSR_DATAW","features":[440]},{"name":"DNS_WINS_DATA","features":[440]},{"name":"DNS_WINS_FLAG_LOCAL","features":[440]},{"name":"DNS_WINS_FLAG_SCOPE","features":[440]},{"name":"DNS_WIRE_QUESTION","features":[440]},{"name":"DNS_WIRE_RECORD","features":[440]},{"name":"DNS_WKS_DATA","features":[440]},{"name":"DnsAcquireContextHandle_A","features":[303,440]},{"name":"DnsAcquireContextHandle_W","features":[303,440]},{"name":"DnsCancelQuery","features":[440]},{"name":"DnsCancelQueryRaw","features":[440]},{"name":"DnsCharSetAnsi","features":[440]},{"name":"DnsCharSetUnicode","features":[440]},{"name":"DnsCharSetUnknown","features":[440]},{"name":"DnsCharSetUtf8","features":[440]},{"name":"DnsConfigAdapterDomainName_A","features":[440]},{"name":"DnsConfigAdapterDomainName_UTF8","features":[440]},{"name":"DnsConfigAdapterDomainName_W","features":[440]},{"name":"DnsConfigAdapterHostNameRegistrationEnabled","features":[440]},{"name":"DnsConfigAdapterInfo","features":[440]},{"name":"DnsConfigAddressRegistrationMaxCount","features":[440]},{"name":"DnsConfigDnsServerList","features":[440]},{"name":"DnsConfigFullHostName_A","features":[440]},{"name":"DnsConfigFullHostName_UTF8","features":[440]},{"name":"DnsConfigFullHostName_W","features":[440]},{"name":"DnsConfigHostName_A","features":[440]},{"name":"DnsConfigHostName_UTF8","features":[440]},{"name":"DnsConfigHostName_W","features":[440]},{"name":"DnsConfigNameServer","features":[440]},{"name":"DnsConfigPrimaryDomainName_A","features":[440]},{"name":"DnsConfigPrimaryDomainName_UTF8","features":[440]},{"name":"DnsConfigPrimaryDomainName_W","features":[440]},{"name":"DnsConfigPrimaryHostNameRegistrationEnabled","features":[440]},{"name":"DnsConfigSearchList","features":[440]},{"name":"DnsConnectionDeletePolicyEntries","features":[440]},{"name":"DnsConnectionDeleteProxyInfo","features":[440]},{"name":"DnsConnectionFreeNameList","features":[440]},{"name":"DnsConnectionFreeProxyInfo","features":[440]},{"name":"DnsConnectionFreeProxyInfoEx","features":[303,440]},{"name":"DnsConnectionFreeProxyList","features":[440]},{"name":"DnsConnectionGetNameList","features":[440]},{"name":"DnsConnectionGetProxyInfo","features":[440]},{"name":"DnsConnectionGetProxyInfoForHostUrl","features":[303,440]},{"name":"DnsConnectionGetProxyInfoForHostUrlEx","features":[303,440]},{"name":"DnsConnectionGetProxyList","features":[440]},{"name":"DnsConnectionSetPolicyEntries","features":[440]},{"name":"DnsConnectionSetProxyInfo","features":[440]},{"name":"DnsConnectionUpdateIfIndexTable","features":[440]},{"name":"DnsExtractRecordsFromMessage_UTF8","features":[303,440]},{"name":"DnsExtractRecordsFromMessage_W","features":[303,440]},{"name":"DnsFree","features":[440]},{"name":"DnsFreeCustomServers","features":[440]},{"name":"DnsFreeFlat","features":[440]},{"name":"DnsFreeParsedMessageFields","features":[440]},{"name":"DnsFreeProxyName","features":[440]},{"name":"DnsFreeRecordList","features":[440]},{"name":"DnsGetApplicationSettings","features":[440]},{"name":"DnsGetProxyInformation","features":[440]},{"name":"DnsModifyRecordsInSet_A","features":[303,440]},{"name":"DnsModifyRecordsInSet_UTF8","features":[303,440]},{"name":"DnsModifyRecordsInSet_W","features":[303,440]},{"name":"DnsNameCompare_A","features":[303,440]},{"name":"DnsNameCompare_W","features":[303,440]},{"name":"DnsNameDomain","features":[440]},{"name":"DnsNameDomainLabel","features":[440]},{"name":"DnsNameHostnameFull","features":[440]},{"name":"DnsNameHostnameLabel","features":[440]},{"name":"DnsNameSrvRecord","features":[440]},{"name":"DnsNameValidateTld","features":[440]},{"name":"DnsNameWildcard","features":[440]},{"name":"DnsQueryConfig","features":[440]},{"name":"DnsQueryEx","features":[303,440]},{"name":"DnsQueryRaw","features":[303,440]},{"name":"DnsQueryRawResultFree","features":[303,440]},{"name":"DnsQuery_A","features":[303,440]},{"name":"DnsQuery_UTF8","features":[303,440]},{"name":"DnsQuery_W","features":[303,440]},{"name":"DnsRecordCompare","features":[303,440]},{"name":"DnsRecordCopyEx","features":[303,440]},{"name":"DnsRecordSetCompare","features":[303,440]},{"name":"DnsRecordSetCopyEx","features":[303,440]},{"name":"DnsRecordSetDetach","features":[303,440]},{"name":"DnsReleaseContextHandle","features":[303,440]},{"name":"DnsReplaceRecordSetA","features":[303,440]},{"name":"DnsReplaceRecordSetUTF8","features":[303,440]},{"name":"DnsReplaceRecordSetW","features":[303,440]},{"name":"DnsSectionAddtional","features":[440]},{"name":"DnsSectionAnswer","features":[440]},{"name":"DnsSectionAuthority","features":[440]},{"name":"DnsSectionQuestion","features":[440]},{"name":"DnsServiceBrowse","features":[303,440]},{"name":"DnsServiceBrowseCancel","features":[440]},{"name":"DnsServiceConstructInstance","features":[440]},{"name":"DnsServiceCopyInstance","features":[440]},{"name":"DnsServiceDeRegister","features":[303,440]},{"name":"DnsServiceFreeInstance","features":[440]},{"name":"DnsServiceRegister","features":[303,440]},{"name":"DnsServiceRegisterCancel","features":[440]},{"name":"DnsServiceResolve","features":[440]},{"name":"DnsServiceResolveCancel","features":[440]},{"name":"DnsSetApplicationSettings","features":[440]},{"name":"DnsStartMulticastQuery","features":[303,440]},{"name":"DnsStopMulticastQuery","features":[440]},{"name":"DnsSvcbParamAlpn","features":[440]},{"name":"DnsSvcbParamDohPath","features":[440]},{"name":"DnsSvcbParamDohPathOpenDns","features":[440]},{"name":"DnsSvcbParamDohPathQuad9","features":[440]},{"name":"DnsSvcbParamEch","features":[440]},{"name":"DnsSvcbParamIpv4Hint","features":[440]},{"name":"DnsSvcbParamIpv6Hint","features":[440]},{"name":"DnsSvcbParamMandatory","features":[440]},{"name":"DnsSvcbParamNoDefaultAlpn","features":[440]},{"name":"DnsSvcbParamPort","features":[440]},{"name":"DnsValidateName_A","features":[440]},{"name":"DnsValidateName_UTF8","features":[440]},{"name":"DnsValidateName_W","features":[440]},{"name":"DnsWriteQuestionToBuffer_UTF8","features":[303,440]},{"name":"DnsWriteQuestionToBuffer_W","features":[303,440]},{"name":"IP4_ADDRESS_STRING_BUFFER_LENGTH","features":[440]},{"name":"IP4_ADDRESS_STRING_LENGTH","features":[440]},{"name":"IP4_ARRAY","features":[440]},{"name":"IP6_ADDRESS","features":[440]},{"name":"IP6_ADDRESS","features":[440]},{"name":"IP6_ADDRESS_STRING_BUFFER_LENGTH","features":[440]},{"name":"IP6_ADDRESS_STRING_LENGTH","features":[440]},{"name":"MDNS_QUERY_HANDLE","features":[440]},{"name":"MDNS_QUERY_REQUEST","features":[303,440]},{"name":"PDNS_QUERY_COMPLETION_ROUTINE","features":[303,440]},{"name":"PDNS_SERVICE_BROWSE_CALLBACK","features":[303,440]},{"name":"PDNS_SERVICE_REGISTER_COMPLETE","features":[440]},{"name":"PDNS_SERVICE_RESOLVE_COMPLETE","features":[440]},{"name":"PMDNS_QUERY_CALLBACK","features":[303,440]},{"name":"SIZEOF_IP4_ADDRESS","features":[440]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_CONNECTION_MANAGER","features":[440]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_DEFAULT","features":[440]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_WWWPT","features":[440]},{"name":"_DnsRecordOptA","features":[303,440]}],"445":[{"name":"ICW_ALREADYRUN","features":[441]},{"name":"ICW_CHECKSTATUS","features":[441]},{"name":"ICW_FULLPRESENT","features":[441]},{"name":"ICW_FULL_SMARTSTART","features":[441]},{"name":"ICW_LAUNCHEDFULL","features":[441]},{"name":"ICW_LAUNCHEDMANUAL","features":[441]},{"name":"ICW_LAUNCHFULL","features":[441]},{"name":"ICW_LAUNCHMANUAL","features":[441]},{"name":"ICW_MANUALPRESENT","features":[441]},{"name":"ICW_MAX_ACCTNAME","features":[441]},{"name":"ICW_MAX_EMAILADDR","features":[441]},{"name":"ICW_MAX_EMAILNAME","features":[441]},{"name":"ICW_MAX_LOGONNAME","features":[441]},{"name":"ICW_MAX_PASSWORD","features":[441]},{"name":"ICW_MAX_RASNAME","features":[441]},{"name":"ICW_MAX_SERVERNAME","features":[441]},{"name":"ICW_REGKEYCOMPLETED","features":[441]},{"name":"ICW_REGPATHSETTINGS","features":[441]},{"name":"ICW_USEDEFAULTS","features":[441]},{"name":"ICW_USE_SHELLNEXT","features":[441]},{"name":"PFNCHECKCONNECTIONWIZARD","features":[441]},{"name":"PFNSETSHELLNEXT","features":[441]}],"446":[{"name":"ANY_SIZE","features":[442]},{"name":"ARP_SEND_REPLY","features":[442]},{"name":"AddIPAddress","features":[442]},{"name":"BEST_IF","features":[442]},{"name":"BEST_ROUTE","features":[442]},{"name":"BROADCAST_NODETYPE","features":[442]},{"name":"CancelIPChangeNotify","features":[303,442,308]},{"name":"CancelIfTimestampConfigChange","features":[442]},{"name":"CancelMibChangeNotify2","features":[303,442]},{"name":"CaptureInterfaceHardwareCrossTimestamp","features":[442,317]},{"name":"ConvertCompartmentGuidToId","features":[303,442]},{"name":"ConvertCompartmentIdToGuid","features":[303,442]},{"name":"ConvertInterfaceAliasToLuid","features":[303,442,317]},{"name":"ConvertInterfaceGuidToLuid","features":[303,442,317]},{"name":"ConvertInterfaceIndexToLuid","features":[303,442,317]},{"name":"ConvertInterfaceLuidToAlias","features":[303,442,317]},{"name":"ConvertInterfaceLuidToGuid","features":[303,442,317]},{"name":"ConvertInterfaceLuidToIndex","features":[303,442,317]},{"name":"ConvertInterfaceLuidToNameA","features":[303,442,317]},{"name":"ConvertInterfaceLuidToNameW","features":[303,442,317]},{"name":"ConvertInterfaceNameToLuidA","features":[303,442,317]},{"name":"ConvertInterfaceNameToLuidW","features":[303,442,317]},{"name":"ConvertIpv4MaskToLength","features":[303,442]},{"name":"ConvertLengthToIpv4Mask","features":[303,442]},{"name":"CreateAnycastIpAddressEntry","features":[303,442,317,316]},{"name":"CreateIpForwardEntry","features":[442,316]},{"name":"CreateIpForwardEntry2","features":[303,442,317,316]},{"name":"CreateIpNetEntry","features":[442]},{"name":"CreateIpNetEntry2","features":[303,442,317,316]},{"name":"CreatePersistentTcpPortReservation","features":[442]},{"name":"CreatePersistentUdpPortReservation","features":[442]},{"name":"CreateProxyArpEntry","features":[442]},{"name":"CreateSortedAddressPairs","features":[303,442,316]},{"name":"CreateUnicastIpAddressEntry","features":[303,442,317,316]},{"name":"DEFAULT_MINIMUM_ENTITIES","features":[442]},{"name":"DEST_LONGER","features":[442]},{"name":"DEST_MATCHING","features":[442]},{"name":"DEST_SHORTER","features":[442]},{"name":"DNS_DDR_ADAPTER_ENABLE_DOH","features":[442]},{"name":"DNS_DDR_ADAPTER_ENABLE_UDP_FALLBACK","features":[442]},{"name":"DNS_DOH_AUTO_UPGRADE_SERVER","features":[442]},{"name":"DNS_DOH_POLICY_AUTO","features":[442]},{"name":"DNS_DOH_POLICY_DISABLE","features":[442]},{"name":"DNS_DOH_POLICY_NOT_CONFIGURED","features":[442]},{"name":"DNS_DOH_POLICY_REQUIRED","features":[442]},{"name":"DNS_DOH_SERVER_SETTINGS","features":[442]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE","features":[442]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_AUTO","features":[442]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_DDR","features":[442]},{"name":"DNS_DOH_SERVER_SETTINGS_FALLBACK_TO_UDP","features":[442]},{"name":"DNS_ENABLE_DDR","features":[442]},{"name":"DNS_ENABLE_DOH","features":[442]},{"name":"DNS_INTERFACE_SETTINGS","features":[442]},{"name":"DNS_INTERFACE_SETTINGS3","features":[442]},{"name":"DNS_INTERFACE_SETTINGS4","features":[442]},{"name":"DNS_INTERFACE_SETTINGS_EX","features":[442]},{"name":"DNS_INTERFACE_SETTINGS_VERSION1","features":[442]},{"name":"DNS_INTERFACE_SETTINGS_VERSION2","features":[442]},{"name":"DNS_INTERFACE_SETTINGS_VERSION3","features":[442]},{"name":"DNS_INTERFACE_SETTINGS_VERSION4","features":[442]},{"name":"DNS_SERVER_PROPERTY","features":[442]},{"name":"DNS_SERVER_PROPERTY_TYPE","features":[442]},{"name":"DNS_SERVER_PROPERTY_TYPES","features":[442]},{"name":"DNS_SERVER_PROPERTY_VERSION1","features":[442]},{"name":"DNS_SETTINGS","features":[442]},{"name":"DNS_SETTINGS2","features":[442]},{"name":"DNS_SETTINGS_ENABLE_LLMNR","features":[442]},{"name":"DNS_SETTINGS_QUERY_ADAPTER_NAME","features":[442]},{"name":"DNS_SETTINGS_VERSION1","features":[442]},{"name":"DNS_SETTINGS_VERSION2","features":[442]},{"name":"DNS_SETTING_DDR","features":[442]},{"name":"DNS_SETTING_DISABLE_UNCONSTRAINED_QUERIES","features":[442]},{"name":"DNS_SETTING_DOH","features":[442]},{"name":"DNS_SETTING_DOH_PROFILE","features":[442]},{"name":"DNS_SETTING_DOMAIN","features":[442]},{"name":"DNS_SETTING_ENCRYPTED_DNS_ADAPTER_FLAGS","features":[442]},{"name":"DNS_SETTING_HOSTNAME","features":[442]},{"name":"DNS_SETTING_IPV6","features":[442]},{"name":"DNS_SETTING_NAMESERVER","features":[442]},{"name":"DNS_SETTING_PROFILE_NAMESERVER","features":[442]},{"name":"DNS_SETTING_REGISTER_ADAPTER_NAME","features":[442]},{"name":"DNS_SETTING_REGISTRATION_ENABLED","features":[442]},{"name":"DNS_SETTING_SEARCHLIST","features":[442]},{"name":"DNS_SETTING_SUPPLEMENTAL_SEARCH_LIST","features":[442]},{"name":"DeleteAnycastIpAddressEntry","features":[303,442,317,316]},{"name":"DeleteIPAddress","features":[442]},{"name":"DeleteIpForwardEntry","features":[442,316]},{"name":"DeleteIpForwardEntry2","features":[303,442,317,316]},{"name":"DeleteIpNetEntry","features":[442]},{"name":"DeleteIpNetEntry2","features":[303,442,317,316]},{"name":"DeletePersistentTcpPortReservation","features":[442]},{"name":"DeletePersistentUdpPortReservation","features":[442]},{"name":"DeleteProxyArpEntry","features":[442]},{"name":"DeleteUnicastIpAddressEntry","features":[303,442,317,316]},{"name":"DisableMediaSense","features":[303,442,308]},{"name":"DnsServerDohProperty","features":[442]},{"name":"DnsServerInvalidProperty","features":[442]},{"name":"ERROR_BASE","features":[442]},{"name":"ERROR_IPV6_NOT_IMPLEMENTED","features":[442]},{"name":"EnableRouter","features":[303,442,308]},{"name":"FD_FLAGS_ALLFLAGS","features":[442]},{"name":"FD_FLAGS_NOSYN","features":[442]},{"name":"FILTER_ICMP_CODE_ANY","features":[442]},{"name":"FILTER_ICMP_TYPE_ANY","features":[442]},{"name":"FIXED_INFO_W2KSP1","features":[442]},{"name":"FlushIpNetTable","features":[442]},{"name":"FlushIpNetTable2","features":[303,442,316]},{"name":"FlushIpPathTable","features":[303,442,316]},{"name":"FreeDnsSettings","features":[442]},{"name":"FreeInterfaceDnsSettings","features":[442]},{"name":"FreeMibTable","features":[442]},{"name":"GAA_FLAG_INCLUDE_ALL_COMPARTMENTS","features":[442]},{"name":"GAA_FLAG_INCLUDE_ALL_INTERFACES","features":[442]},{"name":"GAA_FLAG_INCLUDE_GATEWAYS","features":[442]},{"name":"GAA_FLAG_INCLUDE_PREFIX","features":[442]},{"name":"GAA_FLAG_INCLUDE_TUNNEL_BINDINGORDER","features":[442]},{"name":"GAA_FLAG_INCLUDE_WINS_INFO","features":[442]},{"name":"GAA_FLAG_SKIP_ANYCAST","features":[442]},{"name":"GAA_FLAG_SKIP_DNS_INFO","features":[442]},{"name":"GAA_FLAG_SKIP_DNS_SERVER","features":[442]},{"name":"GAA_FLAG_SKIP_FRIENDLY_NAME","features":[442]},{"name":"GAA_FLAG_SKIP_MULTICAST","features":[442]},{"name":"GAA_FLAG_SKIP_UNICAST","features":[442]},{"name":"GET_ADAPTERS_ADDRESSES_FLAGS","features":[442]},{"name":"GF_FRAGCACHE","features":[442]},{"name":"GF_FRAGMENTS","features":[442]},{"name":"GF_STRONGHOST","features":[442]},{"name":"GLOBAL_FILTER","features":[442]},{"name":"GetAdapterIndex","features":[442]},{"name":"GetAdapterOrderMap","features":[442]},{"name":"GetAdaptersAddresses","features":[442,317,316]},{"name":"GetAdaptersInfo","features":[303,442]},{"name":"GetAnycastIpAddressEntry","features":[303,442,317,316]},{"name":"GetAnycastIpAddressTable","features":[303,442,317,316]},{"name":"GetBestInterface","features":[442]},{"name":"GetBestInterfaceEx","features":[442,316]},{"name":"GetBestRoute","features":[442,316]},{"name":"GetBestRoute2","features":[303,442,317,316]},{"name":"GetCurrentThreadCompartmentId","features":[303,442]},{"name":"GetCurrentThreadCompartmentScope","features":[442]},{"name":"GetDefaultCompartmentId","features":[303,442]},{"name":"GetDnsSettings","features":[303,442]},{"name":"GetExtendedTcpTable","features":[303,442]},{"name":"GetExtendedUdpTable","features":[303,442]},{"name":"GetFriendlyIfIndex","features":[442]},{"name":"GetIcmpStatistics","features":[442]},{"name":"GetIcmpStatisticsEx","features":[442]},{"name":"GetIfEntry","features":[442]},{"name":"GetIfEntry2","features":[303,442,317]},{"name":"GetIfEntry2Ex","features":[303,442,317]},{"name":"GetIfStackTable","features":[303,442]},{"name":"GetIfTable","features":[303,442]},{"name":"GetIfTable2","features":[303,442,317]},{"name":"GetIfTable2Ex","features":[303,442,317]},{"name":"GetInterfaceActiveTimestampCapabilities","features":[303,442,317]},{"name":"GetInterfaceCurrentTimestampCapabilities","features":[303,442,317]},{"name":"GetInterfaceDnsSettings","features":[303,442]},{"name":"GetInterfaceHardwareTimestampCapabilities","features":[303,442,317]},{"name":"GetInterfaceInfo","features":[442]},{"name":"GetInterfaceSupportedTimestampCapabilities","features":[303,442,317]},{"name":"GetInvertedIfStackTable","features":[303,442]},{"name":"GetIpAddrTable","features":[303,442]},{"name":"GetIpErrorString","features":[442]},{"name":"GetIpForwardEntry2","features":[303,442,317,316]},{"name":"GetIpForwardTable","features":[303,442,316]},{"name":"GetIpForwardTable2","features":[303,442,317,316]},{"name":"GetIpInterfaceEntry","features":[303,442,317,316]},{"name":"GetIpInterfaceTable","features":[303,442,317,316]},{"name":"GetIpNetEntry2","features":[303,442,317,316]},{"name":"GetIpNetTable","features":[303,442]},{"name":"GetIpNetTable2","features":[303,442,317,316]},{"name":"GetIpNetworkConnectionBandwidthEstimates","features":[303,442,316]},{"name":"GetIpPathEntry","features":[303,442,317,316]},{"name":"GetIpPathTable","features":[303,442,317,316]},{"name":"GetIpStatistics","features":[442]},{"name":"GetIpStatisticsEx","features":[442]},{"name":"GetJobCompartmentId","features":[303,442]},{"name":"GetMulticastIpAddressEntry","features":[303,442,317,316]},{"name":"GetMulticastIpAddressTable","features":[303,442,317,316]},{"name":"GetNetworkConnectivityHint","features":[303,442,316]},{"name":"GetNetworkConnectivityHintForInterface","features":[303,442,316]},{"name":"GetNetworkInformation","features":[303,442]},{"name":"GetNetworkParams","features":[303,442]},{"name":"GetNumberOfInterfaces","features":[442]},{"name":"GetOwnerModuleFromPidAndInfo","features":[442]},{"name":"GetOwnerModuleFromTcp6Entry","features":[442]},{"name":"GetOwnerModuleFromTcpEntry","features":[442]},{"name":"GetOwnerModuleFromUdp6Entry","features":[442]},{"name":"GetOwnerModuleFromUdpEntry","features":[442]},{"name":"GetPerAdapterInfo","features":[442]},{"name":"GetPerTcp6ConnectionEStats","features":[442,316]},{"name":"GetPerTcpConnectionEStats","features":[442]},{"name":"GetRTTAndHopCount","features":[303,442]},{"name":"GetSessionCompartmentId","features":[303,442]},{"name":"GetTcp6Table","features":[303,442,316]},{"name":"GetTcp6Table2","features":[303,442,316]},{"name":"GetTcpStatistics","features":[442]},{"name":"GetTcpStatisticsEx","features":[442]},{"name":"GetTcpStatisticsEx2","features":[442]},{"name":"GetTcpTable","features":[303,442]},{"name":"GetTcpTable2","features":[303,442]},{"name":"GetTeredoPort","features":[303,442]},{"name":"GetUdp6Table","features":[303,442,316]},{"name":"GetUdpStatistics","features":[442]},{"name":"GetUdpStatisticsEx","features":[442]},{"name":"GetUdpStatisticsEx2","features":[442]},{"name":"GetUdpTable","features":[303,442]},{"name":"GetUniDirectionalAdapterInfo","features":[442]},{"name":"GetUnicastIpAddressEntry","features":[303,442,317,316]},{"name":"GetUnicastIpAddressTable","features":[303,442,317,316]},{"name":"HIFTIMESTAMPCHANGE","features":[442]},{"name":"HYBRID_NODETYPE","features":[442]},{"name":"ICMP4_DST_UNREACH","features":[442]},{"name":"ICMP4_ECHO_REPLY","features":[442]},{"name":"ICMP4_ECHO_REQUEST","features":[442]},{"name":"ICMP4_MASK_REPLY","features":[442]},{"name":"ICMP4_MASK_REQUEST","features":[442]},{"name":"ICMP4_PARAM_PROB","features":[442]},{"name":"ICMP4_REDIRECT","features":[442]},{"name":"ICMP4_ROUTER_ADVERT","features":[442]},{"name":"ICMP4_ROUTER_SOLICIT","features":[442]},{"name":"ICMP4_SOURCE_QUENCH","features":[442]},{"name":"ICMP4_TIMESTAMP_REPLY","features":[442]},{"name":"ICMP4_TIMESTAMP_REQUEST","features":[442]},{"name":"ICMP4_TIME_EXCEEDED","features":[442]},{"name":"ICMP4_TYPE","features":[442]},{"name":"ICMP6_DST_UNREACH","features":[442]},{"name":"ICMP6_ECHO_REPLY","features":[442]},{"name":"ICMP6_ECHO_REQUEST","features":[442]},{"name":"ICMP6_INFOMSG_MASK","features":[442]},{"name":"ICMP6_MEMBERSHIP_QUERY","features":[442]},{"name":"ICMP6_MEMBERSHIP_REDUCTION","features":[442]},{"name":"ICMP6_MEMBERSHIP_REPORT","features":[442]},{"name":"ICMP6_PACKET_TOO_BIG","features":[442]},{"name":"ICMP6_PARAM_PROB","features":[442]},{"name":"ICMP6_TIME_EXCEEDED","features":[442]},{"name":"ICMP6_TYPE","features":[442]},{"name":"ICMP6_V2_MEMBERSHIP_REPORT","features":[442]},{"name":"ICMPV6_ECHO_REPLY_LH","features":[442]},{"name":"ICMP_ECHO_REPLY","features":[442]},{"name":"ICMP_ECHO_REPLY32","features":[442]},{"name":"ICMP_STATS","features":[442]},{"name":"IF_ACCESS_BROADCAST","features":[442]},{"name":"IF_ACCESS_LOOPBACK","features":[442]},{"name":"IF_ACCESS_POINTTOMULTIPOINT","features":[442]},{"name":"IF_ACCESS_POINTTOPOINT","features":[442]},{"name":"IF_ACCESS_POINT_TO_MULTI_POINT","features":[442]},{"name":"IF_ACCESS_POINT_TO_POINT","features":[442]},{"name":"IF_ACCESS_TYPE","features":[442]},{"name":"IF_ADMIN_STATUS_DOWN","features":[442]},{"name":"IF_ADMIN_STATUS_TESTING","features":[442]},{"name":"IF_ADMIN_STATUS_UP","features":[442]},{"name":"IF_CHECK_MCAST","features":[442]},{"name":"IF_CHECK_NONE","features":[442]},{"name":"IF_CHECK_SEND","features":[442]},{"name":"IF_CONNECTION_DEDICATED","features":[442]},{"name":"IF_CONNECTION_DEMAND","features":[442]},{"name":"IF_CONNECTION_PASSIVE","features":[442]},{"name":"IF_NUMBER","features":[442]},{"name":"IF_OPER_STATUS_CONNECTED","features":[442]},{"name":"IF_OPER_STATUS_CONNECTING","features":[442]},{"name":"IF_OPER_STATUS_DISCONNECTED","features":[442]},{"name":"IF_OPER_STATUS_NON_OPERATIONAL","features":[442]},{"name":"IF_OPER_STATUS_OPERATIONAL","features":[442]},{"name":"IF_OPER_STATUS_UNREACHABLE","features":[442]},{"name":"IF_ROW","features":[442]},{"name":"IF_STATUS","features":[442]},{"name":"IF_TABLE","features":[442]},{"name":"IF_TYPE_A12MPPSWITCH","features":[442]},{"name":"IF_TYPE_AAL2","features":[442]},{"name":"IF_TYPE_AAL5","features":[442]},{"name":"IF_TYPE_ADSL","features":[442]},{"name":"IF_TYPE_AFLANE_8023","features":[442]},{"name":"IF_TYPE_AFLANE_8025","features":[442]},{"name":"IF_TYPE_ARAP","features":[442]},{"name":"IF_TYPE_ARCNET","features":[442]},{"name":"IF_TYPE_ARCNET_PLUS","features":[442]},{"name":"IF_TYPE_ASYNC","features":[442]},{"name":"IF_TYPE_ATM","features":[442]},{"name":"IF_TYPE_ATM_DXI","features":[442]},{"name":"IF_TYPE_ATM_FUNI","features":[442]},{"name":"IF_TYPE_ATM_IMA","features":[442]},{"name":"IF_TYPE_ATM_LOGICAL","features":[442]},{"name":"IF_TYPE_ATM_RADIO","features":[442]},{"name":"IF_TYPE_ATM_SUBINTERFACE","features":[442]},{"name":"IF_TYPE_ATM_VCI_ENDPT","features":[442]},{"name":"IF_TYPE_ATM_VIRTUAL","features":[442]},{"name":"IF_TYPE_BASIC_ISDN","features":[442]},{"name":"IF_TYPE_BGP_POLICY_ACCOUNTING","features":[442]},{"name":"IF_TYPE_BSC","features":[442]},{"name":"IF_TYPE_CCTEMUL","features":[442]},{"name":"IF_TYPE_CES","features":[442]},{"name":"IF_TYPE_CHANNEL","features":[442]},{"name":"IF_TYPE_CNR","features":[442]},{"name":"IF_TYPE_COFFEE","features":[442]},{"name":"IF_TYPE_COMPOSITELINK","features":[442]},{"name":"IF_TYPE_DCN","features":[442]},{"name":"IF_TYPE_DDN_X25","features":[442]},{"name":"IF_TYPE_DIGITALPOWERLINE","features":[442]},{"name":"IF_TYPE_DIGITAL_WRAPPER_OVERHEAD_CHANNEL","features":[442]},{"name":"IF_TYPE_DLSW","features":[442]},{"name":"IF_TYPE_DOCSCABLE_DOWNSTREAM","features":[442]},{"name":"IF_TYPE_DOCSCABLE_MACLAYER","features":[442]},{"name":"IF_TYPE_DOCSCABLE_UPSTREAM","features":[442]},{"name":"IF_TYPE_DS0","features":[442]},{"name":"IF_TYPE_DS0_BUNDLE","features":[442]},{"name":"IF_TYPE_DS1","features":[442]},{"name":"IF_TYPE_DS1_FDL","features":[442]},{"name":"IF_TYPE_DS3","features":[442]},{"name":"IF_TYPE_DTM","features":[442]},{"name":"IF_TYPE_DVBRCC_DOWNSTREAM","features":[442]},{"name":"IF_TYPE_DVBRCC_MACLAYER","features":[442]},{"name":"IF_TYPE_DVBRCC_UPSTREAM","features":[442]},{"name":"IF_TYPE_DVB_ASI_IN","features":[442]},{"name":"IF_TYPE_DVB_ASI_OUT","features":[442]},{"name":"IF_TYPE_E1","features":[442]},{"name":"IF_TYPE_EON","features":[442]},{"name":"IF_TYPE_EPLRS","features":[442]},{"name":"IF_TYPE_ESCON","features":[442]},{"name":"IF_TYPE_ETHERNET_3MBIT","features":[442]},{"name":"IF_TYPE_ETHERNET_CSMACD","features":[442]},{"name":"IF_TYPE_FAST","features":[442]},{"name":"IF_TYPE_FASTETHER","features":[442]},{"name":"IF_TYPE_FASTETHER_FX","features":[442]},{"name":"IF_TYPE_FDDI","features":[442]},{"name":"IF_TYPE_FIBRECHANNEL","features":[442]},{"name":"IF_TYPE_FRAMERELAY","features":[442]},{"name":"IF_TYPE_FRAMERELAY_INTERCONNECT","features":[442]},{"name":"IF_TYPE_FRAMERELAY_MPI","features":[442]},{"name":"IF_TYPE_FRAMERELAY_SERVICE","features":[442]},{"name":"IF_TYPE_FRF16_MFR_BUNDLE","features":[442]},{"name":"IF_TYPE_FR_DLCI_ENDPT","features":[442]},{"name":"IF_TYPE_FR_FORWARD","features":[442]},{"name":"IF_TYPE_G703_2MB","features":[442]},{"name":"IF_TYPE_G703_64K","features":[442]},{"name":"IF_TYPE_GIGABITETHERNET","features":[442]},{"name":"IF_TYPE_GR303_IDT","features":[442]},{"name":"IF_TYPE_GR303_RDT","features":[442]},{"name":"IF_TYPE_H323_GATEKEEPER","features":[442]},{"name":"IF_TYPE_H323_PROXY","features":[442]},{"name":"IF_TYPE_HDH_1822","features":[442]},{"name":"IF_TYPE_HDLC","features":[442]},{"name":"IF_TYPE_HDSL2","features":[442]},{"name":"IF_TYPE_HIPERLAN2","features":[442]},{"name":"IF_TYPE_HIPPI","features":[442]},{"name":"IF_TYPE_HIPPIINTERFACE","features":[442]},{"name":"IF_TYPE_HOSTPAD","features":[442]},{"name":"IF_TYPE_HSSI","features":[442]},{"name":"IF_TYPE_HYPERCHANNEL","features":[442]},{"name":"IF_TYPE_IBM370PARCHAN","features":[442]},{"name":"IF_TYPE_IDSL","features":[442]},{"name":"IF_TYPE_IEEE1394","features":[442]},{"name":"IF_TYPE_IEEE80211","features":[442]},{"name":"IF_TYPE_IEEE80212","features":[442]},{"name":"IF_TYPE_IEEE802154","features":[442]},{"name":"IF_TYPE_IEEE80216_WMAN","features":[442]},{"name":"IF_TYPE_IEEE8023AD_LAG","features":[442]},{"name":"IF_TYPE_IF_GSN","features":[442]},{"name":"IF_TYPE_IMT","features":[442]},{"name":"IF_TYPE_INTERLEAVE","features":[442]},{"name":"IF_TYPE_IP","features":[442]},{"name":"IF_TYPE_IPFORWARD","features":[442]},{"name":"IF_TYPE_IPOVER_ATM","features":[442]},{"name":"IF_TYPE_IPOVER_CDLC","features":[442]},{"name":"IF_TYPE_IPOVER_CLAW","features":[442]},{"name":"IF_TYPE_IPSWITCH","features":[442]},{"name":"IF_TYPE_IS088023_CSMACD","features":[442]},{"name":"IF_TYPE_ISDN","features":[442]},{"name":"IF_TYPE_ISDN_S","features":[442]},{"name":"IF_TYPE_ISDN_U","features":[442]},{"name":"IF_TYPE_ISO88022_LLC","features":[442]},{"name":"IF_TYPE_ISO88024_TOKENBUS","features":[442]},{"name":"IF_TYPE_ISO88025R_DTR","features":[442]},{"name":"IF_TYPE_ISO88025_CRFPRINT","features":[442]},{"name":"IF_TYPE_ISO88025_FIBER","features":[442]},{"name":"IF_TYPE_ISO88025_TOKENRING","features":[442]},{"name":"IF_TYPE_ISO88026_MAN","features":[442]},{"name":"IF_TYPE_ISUP","features":[442]},{"name":"IF_TYPE_L2_VLAN","features":[442]},{"name":"IF_TYPE_L3_IPVLAN","features":[442]},{"name":"IF_TYPE_L3_IPXVLAN","features":[442]},{"name":"IF_TYPE_LAP_B","features":[442]},{"name":"IF_TYPE_LAP_D","features":[442]},{"name":"IF_TYPE_LAP_F","features":[442]},{"name":"IF_TYPE_LOCALTALK","features":[442]},{"name":"IF_TYPE_MEDIAMAILOVERIP","features":[442]},{"name":"IF_TYPE_MF_SIGLINK","features":[442]},{"name":"IF_TYPE_MIO_X25","features":[442]},{"name":"IF_TYPE_MODEM","features":[442]},{"name":"IF_TYPE_MPC","features":[442]},{"name":"IF_TYPE_MPLS","features":[442]},{"name":"IF_TYPE_MPLS_TUNNEL","features":[442]},{"name":"IF_TYPE_MSDSL","features":[442]},{"name":"IF_TYPE_MVL","features":[442]},{"name":"IF_TYPE_MYRINET","features":[442]},{"name":"IF_TYPE_NFAS","features":[442]},{"name":"IF_TYPE_NSIP","features":[442]},{"name":"IF_TYPE_OPTICAL_CHANNEL","features":[442]},{"name":"IF_TYPE_OPTICAL_TRANSPORT","features":[442]},{"name":"IF_TYPE_OTHER","features":[442]},{"name":"IF_TYPE_PARA","features":[442]},{"name":"IF_TYPE_PLC","features":[442]},{"name":"IF_TYPE_POS","features":[442]},{"name":"IF_TYPE_PPP","features":[442]},{"name":"IF_TYPE_PPPMULTILINKBUNDLE","features":[442]},{"name":"IF_TYPE_PRIMARY_ISDN","features":[442]},{"name":"IF_TYPE_PROP_BWA_P2MP","features":[442]},{"name":"IF_TYPE_PROP_CNLS","features":[442]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_DOWNSTREAM","features":[442]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_MACLAYER","features":[442]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_UPSTREAM","features":[442]},{"name":"IF_TYPE_PROP_MULTIPLEXOR","features":[442]},{"name":"IF_TYPE_PROP_POINT2POINT_SERIAL","features":[442]},{"name":"IF_TYPE_PROP_VIRTUAL","features":[442]},{"name":"IF_TYPE_PROP_WIRELESS_P2P","features":[442]},{"name":"IF_TYPE_PROTEON_10MBIT","features":[442]},{"name":"IF_TYPE_PROTEON_80MBIT","features":[442]},{"name":"IF_TYPE_QLLC","features":[442]},{"name":"IF_TYPE_RADIO_MAC","features":[442]},{"name":"IF_TYPE_RADSL","features":[442]},{"name":"IF_TYPE_REACH_DSL","features":[442]},{"name":"IF_TYPE_REGULAR_1822","features":[442]},{"name":"IF_TYPE_RFC1483","features":[442]},{"name":"IF_TYPE_RFC877_X25","features":[442]},{"name":"IF_TYPE_RS232","features":[442]},{"name":"IF_TYPE_RSRB","features":[442]},{"name":"IF_TYPE_SDLC","features":[442]},{"name":"IF_TYPE_SDSL","features":[442]},{"name":"IF_TYPE_SHDSL","features":[442]},{"name":"IF_TYPE_SIP","features":[442]},{"name":"IF_TYPE_SLIP","features":[442]},{"name":"IF_TYPE_SMDS_DXI","features":[442]},{"name":"IF_TYPE_SMDS_ICIP","features":[442]},{"name":"IF_TYPE_SOFTWARE_LOOPBACK","features":[442]},{"name":"IF_TYPE_SONET","features":[442]},{"name":"IF_TYPE_SONET_OVERHEAD_CHANNEL","features":[442]},{"name":"IF_TYPE_SONET_PATH","features":[442]},{"name":"IF_TYPE_SONET_VT","features":[442]},{"name":"IF_TYPE_SRP","features":[442]},{"name":"IF_TYPE_SS7_SIGLINK","features":[442]},{"name":"IF_TYPE_STACKTOSTACK","features":[442]},{"name":"IF_TYPE_STARLAN","features":[442]},{"name":"IF_TYPE_TDLC","features":[442]},{"name":"IF_TYPE_TERMPAD","features":[442]},{"name":"IF_TYPE_TR008","features":[442]},{"name":"IF_TYPE_TRANSPHDLC","features":[442]},{"name":"IF_TYPE_TUNNEL","features":[442]},{"name":"IF_TYPE_ULTRA","features":[442]},{"name":"IF_TYPE_USB","features":[442]},{"name":"IF_TYPE_V11","features":[442]},{"name":"IF_TYPE_V35","features":[442]},{"name":"IF_TYPE_V36","features":[442]},{"name":"IF_TYPE_V37","features":[442]},{"name":"IF_TYPE_VDSL","features":[442]},{"name":"IF_TYPE_VIRTUALIPADDRESS","features":[442]},{"name":"IF_TYPE_VOICEOVERATM","features":[442]},{"name":"IF_TYPE_VOICEOVERFRAMERELAY","features":[442]},{"name":"IF_TYPE_VOICE_EM","features":[442]},{"name":"IF_TYPE_VOICE_ENCAP","features":[442]},{"name":"IF_TYPE_VOICE_FXO","features":[442]},{"name":"IF_TYPE_VOICE_FXS","features":[442]},{"name":"IF_TYPE_VOICE_OVERIP","features":[442]},{"name":"IF_TYPE_WWANPP","features":[442]},{"name":"IF_TYPE_WWANPP2","features":[442]},{"name":"IF_TYPE_X213","features":[442]},{"name":"IF_TYPE_X25_HUNTGROUP","features":[442]},{"name":"IF_TYPE_X25_MLP","features":[442]},{"name":"IF_TYPE_X25_PLE","features":[442]},{"name":"IF_TYPE_XBOX_WIRELESS","features":[442]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP","features":[442]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP_VERSION_1","features":[442]},{"name":"INTERFACE_HARDWARE_TIMESTAMP_CAPABILITIES","features":[303,442]},{"name":"INTERFACE_SOFTWARE_TIMESTAMP_CAPABILITIES","features":[303,442]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES","features":[303,442]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES_VERSION_1","features":[442]},{"name":"INTERNAL_IF_OPER_STATUS","features":[442]},{"name":"IOCTL_ARP_SEND_REQUEST","features":[442]},{"name":"IOCTL_IP_ADDCHANGE_NOTIFY_REQUEST","features":[442]},{"name":"IOCTL_IP_GET_BEST_INTERFACE","features":[442]},{"name":"IOCTL_IP_INTERFACE_INFO","features":[442]},{"name":"IOCTL_IP_RTCHANGE_NOTIFY_REQUEST","features":[442]},{"name":"IOCTL_IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[442]},{"name":"IP6_STATS","features":[442]},{"name":"IPRTRMGR_PID","features":[442]},{"name":"IPV6_ADDRESS_EX","features":[442]},{"name":"IPV6_GLOBAL_INFO","features":[442]},{"name":"IPV6_ROUTE_INFO","features":[442]},{"name":"IP_ADAPTER_ADDRESSES_LH","features":[442,317,316]},{"name":"IP_ADAPTER_ADDRESSES_XP","features":[442,317,316]},{"name":"IP_ADAPTER_ADDRESS_DNS_ELIGIBLE","features":[442]},{"name":"IP_ADAPTER_ADDRESS_TRANSIENT","features":[442]},{"name":"IP_ADAPTER_ANYCAST_ADDRESS_XP","features":[442,316]},{"name":"IP_ADAPTER_DDNS_ENABLED","features":[442]},{"name":"IP_ADAPTER_DHCP_ENABLED","features":[442]},{"name":"IP_ADAPTER_DNS_SERVER_ADDRESS_XP","features":[442,316]},{"name":"IP_ADAPTER_DNS_SUFFIX","features":[442]},{"name":"IP_ADAPTER_GATEWAY_ADDRESS_LH","features":[442,316]},{"name":"IP_ADAPTER_INDEX_MAP","features":[442]},{"name":"IP_ADAPTER_INFO","features":[303,442]},{"name":"IP_ADAPTER_IPV4_ENABLED","features":[442]},{"name":"IP_ADAPTER_IPV6_ENABLED","features":[442]},{"name":"IP_ADAPTER_IPV6_MANAGE_ADDRESS_CONFIG","features":[442]},{"name":"IP_ADAPTER_IPV6_OTHER_STATEFUL_CONFIG","features":[442]},{"name":"IP_ADAPTER_MULTICAST_ADDRESS_XP","features":[442,316]},{"name":"IP_ADAPTER_NETBIOS_OVER_TCPIP_ENABLED","features":[442]},{"name":"IP_ADAPTER_NO_MULTICAST","features":[442]},{"name":"IP_ADAPTER_ORDER_MAP","features":[442]},{"name":"IP_ADAPTER_PREFIX_XP","features":[442,316]},{"name":"IP_ADAPTER_RECEIVE_ONLY","features":[442]},{"name":"IP_ADAPTER_REGISTER_ADAPTER_SUFFIX","features":[442]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_LH","features":[442,316]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_XP","features":[442,316]},{"name":"IP_ADAPTER_WINS_SERVER_ADDRESS_LH","features":[442,316]},{"name":"IP_ADDRESS_PREFIX","features":[442,316]},{"name":"IP_ADDRESS_STRING","features":[442]},{"name":"IP_ADDRROW","features":[442]},{"name":"IP_ADDRTABLE","features":[442]},{"name":"IP_ADDR_ADDED","features":[442]},{"name":"IP_ADDR_DELETED","features":[442]},{"name":"IP_ADDR_STRING","features":[442]},{"name":"IP_BAD_DESTINATION","features":[442]},{"name":"IP_BAD_HEADER","features":[442]},{"name":"IP_BAD_OPTION","features":[442]},{"name":"IP_BAD_REQ","features":[442]},{"name":"IP_BAD_ROUTE","features":[442]},{"name":"IP_BIND_ADAPTER","features":[442]},{"name":"IP_BUF_TOO_SMALL","features":[442]},{"name":"IP_DEMAND_DIAL_FILTER_INFO","features":[442]},{"name":"IP_DEMAND_DIAL_FILTER_INFO_V6","features":[442]},{"name":"IP_DEST_ADDR_UNREACHABLE","features":[442]},{"name":"IP_DEST_HOST_UNREACHABLE","features":[442]},{"name":"IP_DEST_NET_UNREACHABLE","features":[442]},{"name":"IP_DEST_NO_ROUTE","features":[442]},{"name":"IP_DEST_PORT_UNREACHABLE","features":[442]},{"name":"IP_DEST_PROHIBITED","features":[442]},{"name":"IP_DEST_PROT_UNREACHABLE","features":[442]},{"name":"IP_DEST_SCOPE_MISMATCH","features":[442]},{"name":"IP_DEST_UNREACHABLE","features":[442]},{"name":"IP_DEVICE_DOES_NOT_EXIST","features":[442]},{"name":"IP_DUPLICATE_ADDRESS","features":[442]},{"name":"IP_DUPLICATE_IPADD","features":[442]},{"name":"IP_EXPORT_INCLUDED","features":[442]},{"name":"IP_FILTER_ENABLE_INFO","features":[442]},{"name":"IP_FILTER_ENABLE_INFO_V6","features":[442]},{"name":"IP_FLAG_DF","features":[442]},{"name":"IP_FLAG_REVERSE","features":[442]},{"name":"IP_FORWARDNUMBER","features":[442]},{"name":"IP_FORWARDROW","features":[442]},{"name":"IP_FORWARDTABLE","features":[442]},{"name":"IP_GENERAL_FAILURE","features":[442]},{"name":"IP_GENERAL_INFO_BASE","features":[442]},{"name":"IP_GLOBAL_INFO","features":[442]},{"name":"IP_HOP_LIMIT_EXCEEDED","features":[442]},{"name":"IP_HW_ERROR","features":[442]},{"name":"IP_ICMP_ERROR","features":[442]},{"name":"IP_IFFILTER_INFO","features":[442]},{"name":"IP_IFFILTER_INFO_V6","features":[442]},{"name":"IP_INTERFACE_INFO","features":[442]},{"name":"IP_INTERFACE_METRIC_CHANGE","features":[442]},{"name":"IP_INTERFACE_NAME_INFO_W2KSP1","features":[442]},{"name":"IP_INTERFACE_STATUS_INFO","features":[442]},{"name":"IP_INTERFACE_WOL_CAPABILITY_CHANGE","features":[442]},{"name":"IP_IN_FILTER_INFO","features":[442]},{"name":"IP_IN_FILTER_INFO_V6","features":[442]},{"name":"IP_IPINIP_CFG_INFO","features":[442]},{"name":"IP_MCAST_BOUNDARY_INFO","features":[442]},{"name":"IP_MCAST_COUNTER_INFO","features":[442]},{"name":"IP_MCAST_HEARBEAT_INFO","features":[442]},{"name":"IP_MCAST_LIMIT_INFO","features":[442]},{"name":"IP_MEDIA_CONNECT","features":[442]},{"name":"IP_MEDIA_DISCONNECT","features":[442]},{"name":"IP_MTU_CHANGE","features":[442]},{"name":"IP_NEGOTIATING_IPSEC","features":[442]},{"name":"IP_NETROW","features":[442]},{"name":"IP_NETTABLE","features":[442]},{"name":"IP_NO_RESOURCES","features":[442]},{"name":"IP_OPTION_INFORMATION","features":[442]},{"name":"IP_OPTION_INFORMATION32","features":[442]},{"name":"IP_OPTION_TOO_BIG","features":[442]},{"name":"IP_OUT_FILTER_INFO","features":[442]},{"name":"IP_OUT_FILTER_INFO_V6","features":[442]},{"name":"IP_PACKET_TOO_BIG","features":[442]},{"name":"IP_PARAMETER_PROBLEM","features":[442]},{"name":"IP_PARAM_PROBLEM","features":[442]},{"name":"IP_PENDING","features":[442]},{"name":"IP_PER_ADAPTER_INFO_W2KSP1","features":[442]},{"name":"IP_PROT_PRIORITY_INFO","features":[442]},{"name":"IP_PROT_PRIORITY_INFO_EX","features":[442]},{"name":"IP_REASSEMBLY_TIME_EXCEEDED","features":[442]},{"name":"IP_RECONFIG_SECFLTR","features":[442]},{"name":"IP_REQ_TIMED_OUT","features":[442]},{"name":"IP_ROUTER_DISC_INFO","features":[442]},{"name":"IP_ROUTER_MANAGER_VERSION","features":[442]},{"name":"IP_ROUTE_INFO","features":[442]},{"name":"IP_SOURCE_QUENCH","features":[442]},{"name":"IP_SPEC_MTU_CHANGE","features":[442]},{"name":"IP_STATS","features":[442]},{"name":"IP_STATUS_BASE","features":[442]},{"name":"IP_SUCCESS","features":[442]},{"name":"IP_TIME_EXCEEDED","features":[442]},{"name":"IP_TTL_EXPIRED_REASSEM","features":[442]},{"name":"IP_TTL_EXPIRED_TRANSIT","features":[442]},{"name":"IP_UNBIND_ADAPTER","features":[442]},{"name":"IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[442]},{"name":"IP_UNLOAD","features":[442]},{"name":"IP_UNRECOGNIZED_NEXT_HEADER","features":[442]},{"name":"Icmp6CreateFile","features":[303,442]},{"name":"Icmp6ParseReplies","features":[442]},{"name":"Icmp6SendEcho2","features":[303,442,316,308]},{"name":"IcmpCloseHandle","features":[303,442]},{"name":"IcmpCreateFile","features":[303,442]},{"name":"IcmpParseReplies","features":[442]},{"name":"IcmpSendEcho","features":[303,442]},{"name":"IcmpSendEcho2","features":[303,442,308]},{"name":"IcmpSendEcho2Ex","features":[303,442,308]},{"name":"InitializeIpForwardEntry","features":[303,442,317,316]},{"name":"InitializeIpInterfaceEntry","features":[303,442,317,316]},{"name":"InitializeUnicastIpAddressEntry","features":[303,442,317,316]},{"name":"IpReleaseAddress","features":[442]},{"name":"IpRenewAddress","features":[442]},{"name":"LB_DST_ADDR_USE_DSTADDR_FLAG","features":[442]},{"name":"LB_DST_ADDR_USE_SRCADDR_FLAG","features":[442]},{"name":"LB_DST_MASK_LATE_FLAG","features":[442]},{"name":"LB_SRC_ADDR_USE_DSTADDR_FLAG","features":[442]},{"name":"LB_SRC_ADDR_USE_SRCADDR_FLAG","features":[442]},{"name":"LB_SRC_MASK_LATE_FLAG","features":[442]},{"name":"LookupPersistentTcpPortReservation","features":[442]},{"name":"LookupPersistentUdpPortReservation","features":[442]},{"name":"MAXLEN_IFDESCR","features":[442]},{"name":"MAXLEN_PHYSADDR","features":[442]},{"name":"MAX_ADAPTER_ADDRESS_LENGTH","features":[442]},{"name":"MAX_ADAPTER_DESCRIPTION_LENGTH","features":[442]},{"name":"MAX_ADAPTER_NAME","features":[442]},{"name":"MAX_ADAPTER_NAME_LENGTH","features":[442]},{"name":"MAX_DHCPV6_DUID_LENGTH","features":[442]},{"name":"MAX_DNS_SUFFIX_STRING_LENGTH","features":[442]},{"name":"MAX_DOMAIN_NAME_LEN","features":[442]},{"name":"MAX_HOSTNAME_LEN","features":[442]},{"name":"MAX_IF_TYPE","features":[442]},{"name":"MAX_INTERFACE_NAME_LEN","features":[442]},{"name":"MAX_IP_STATUS","features":[442]},{"name":"MAX_MIB_OFFSET","features":[442]},{"name":"MAX_OPT_SIZE","features":[442]},{"name":"MAX_SCOPE_ID_LEN","features":[442]},{"name":"MAX_SCOPE_NAME_LEN","features":[442]},{"name":"MCAST_BOUNDARY","features":[442]},{"name":"MCAST_GLOBAL","features":[442]},{"name":"MCAST_IF_ENTRY","features":[442]},{"name":"MCAST_MFE","features":[442]},{"name":"MCAST_MFE_STATS","features":[442]},{"name":"MCAST_MFE_STATS_EX","features":[442]},{"name":"MCAST_SCOPE","features":[442]},{"name":"MIBICMPINFO","features":[442]},{"name":"MIBICMPSTATS","features":[442]},{"name":"MIBICMPSTATS_EX_XPSP1","features":[442]},{"name":"MIB_ANYCASTIPADDRESS_ROW","features":[442,317,316]},{"name":"MIB_ANYCASTIPADDRESS_TABLE","features":[442,317,316]},{"name":"MIB_BEST_IF","features":[442]},{"name":"MIB_BOUNDARYROW","features":[442]},{"name":"MIB_ICMP","features":[442]},{"name":"MIB_ICMP_EX_XPSP1","features":[442]},{"name":"MIB_IFNUMBER","features":[442]},{"name":"MIB_IFROW","features":[442]},{"name":"MIB_IFSTACK_ROW","features":[442]},{"name":"MIB_IFSTACK_TABLE","features":[442]},{"name":"MIB_IFSTATUS","features":[303,442]},{"name":"MIB_IFTABLE","features":[442]},{"name":"MIB_IF_ADMIN_STATUS_DOWN","features":[442]},{"name":"MIB_IF_ADMIN_STATUS_TESTING","features":[442]},{"name":"MIB_IF_ADMIN_STATUS_UP","features":[442]},{"name":"MIB_IF_ENTRY_LEVEL","features":[442]},{"name":"MIB_IF_ROW2","features":[442,317]},{"name":"MIB_IF_TABLE2","features":[442,317]},{"name":"MIB_IF_TABLE_LEVEL","features":[442]},{"name":"MIB_IF_TYPE_ETHERNET","features":[442]},{"name":"MIB_IF_TYPE_FDDI","features":[442]},{"name":"MIB_IF_TYPE_LOOPBACK","features":[442]},{"name":"MIB_IF_TYPE_OTHER","features":[442]},{"name":"MIB_IF_TYPE_PPP","features":[442]},{"name":"MIB_IF_TYPE_SLIP","features":[442]},{"name":"MIB_IF_TYPE_TOKENRING","features":[442]},{"name":"MIB_INVALID_TEREDO_PORT_NUMBER","features":[442]},{"name":"MIB_INVERTEDIFSTACK_ROW","features":[442]},{"name":"MIB_INVERTEDIFSTACK_TABLE","features":[442]},{"name":"MIB_IPADDRROW_W2K","features":[442]},{"name":"MIB_IPADDRROW_XP","features":[442]},{"name":"MIB_IPADDRTABLE","features":[442]},{"name":"MIB_IPADDR_DELETED","features":[442]},{"name":"MIB_IPADDR_DISCONNECTED","features":[442]},{"name":"MIB_IPADDR_DNS_ELIGIBLE","features":[442]},{"name":"MIB_IPADDR_DYNAMIC","features":[442]},{"name":"MIB_IPADDR_PRIMARY","features":[442]},{"name":"MIB_IPADDR_TRANSIENT","features":[442]},{"name":"MIB_IPDESTROW","features":[442,316]},{"name":"MIB_IPDESTTABLE","features":[442,316]},{"name":"MIB_IPFORWARDNUMBER","features":[442]},{"name":"MIB_IPFORWARDROW","features":[442,316]},{"name":"MIB_IPFORWARDTABLE","features":[442,316]},{"name":"MIB_IPFORWARD_ROW2","features":[303,442,317,316]},{"name":"MIB_IPFORWARD_TABLE2","features":[303,442,317,316]},{"name":"MIB_IPFORWARD_TYPE","features":[442]},{"name":"MIB_IPINTERFACE_ROW","features":[303,442,317,316]},{"name":"MIB_IPINTERFACE_TABLE","features":[303,442,317,316]},{"name":"MIB_IPMCAST_BOUNDARY","features":[442]},{"name":"MIB_IPMCAST_BOUNDARY_TABLE","features":[442]},{"name":"MIB_IPMCAST_GLOBAL","features":[442]},{"name":"MIB_IPMCAST_IF_ENTRY","features":[442]},{"name":"MIB_IPMCAST_IF_TABLE","features":[442]},{"name":"MIB_IPMCAST_MFE","features":[442]},{"name":"MIB_IPMCAST_MFE_STATS","features":[442]},{"name":"MIB_IPMCAST_MFE_STATS_EX_XP","features":[442]},{"name":"MIB_IPMCAST_OIF_STATS_LH","features":[442]},{"name":"MIB_IPMCAST_OIF_STATS_W2K","features":[442]},{"name":"MIB_IPMCAST_OIF_W2K","features":[442]},{"name":"MIB_IPMCAST_OIF_XP","features":[442]},{"name":"MIB_IPMCAST_SCOPE","features":[442]},{"name":"MIB_IPNETROW_LH","features":[442]},{"name":"MIB_IPNETROW_W2K","features":[442]},{"name":"MIB_IPNETTABLE","features":[442]},{"name":"MIB_IPNET_ROW2","features":[442,317,316]},{"name":"MIB_IPNET_TABLE2","features":[442,317,316]},{"name":"MIB_IPNET_TYPE","features":[442]},{"name":"MIB_IPNET_TYPE_DYNAMIC","features":[442]},{"name":"MIB_IPNET_TYPE_INVALID","features":[442]},{"name":"MIB_IPNET_TYPE_OTHER","features":[442]},{"name":"MIB_IPNET_TYPE_STATIC","features":[442]},{"name":"MIB_IPPATH_ROW","features":[303,442,317,316]},{"name":"MIB_IPPATH_TABLE","features":[303,442,317,316]},{"name":"MIB_IPROUTE_METRIC_UNUSED","features":[442]},{"name":"MIB_IPROUTE_TYPE_DIRECT","features":[442]},{"name":"MIB_IPROUTE_TYPE_INDIRECT","features":[442]},{"name":"MIB_IPROUTE_TYPE_INVALID","features":[442]},{"name":"MIB_IPROUTE_TYPE_OTHER","features":[442]},{"name":"MIB_IPSTATS_FORWARDING","features":[442]},{"name":"MIB_IPSTATS_LH","features":[442]},{"name":"MIB_IPSTATS_W2K","features":[442]},{"name":"MIB_IP_FORWARDING","features":[442]},{"name":"MIB_IP_NETWORK_CONNECTION_BANDWIDTH_ESTIMATES","features":[303,442,316]},{"name":"MIB_IP_NOT_FORWARDING","features":[442]},{"name":"MIB_MCAST_LIMIT_ROW","features":[442]},{"name":"MIB_MFE_STATS_TABLE","features":[442]},{"name":"MIB_MFE_STATS_TABLE_EX_XP","features":[442]},{"name":"MIB_MFE_TABLE","features":[442]},{"name":"MIB_MULTICASTIPADDRESS_ROW","features":[442,317,316]},{"name":"MIB_MULTICASTIPADDRESS_TABLE","features":[442,317,316]},{"name":"MIB_NOTIFICATION_TYPE","features":[442]},{"name":"MIB_OPAQUE_INFO","features":[442]},{"name":"MIB_OPAQUE_QUERY","features":[442]},{"name":"MIB_PROXYARP","features":[442]},{"name":"MIB_ROUTESTATE","features":[303,442]},{"name":"MIB_TCP6ROW","features":[442,316]},{"name":"MIB_TCP6ROW2","features":[442,316]},{"name":"MIB_TCP6ROW_OWNER_MODULE","features":[442]},{"name":"MIB_TCP6ROW_OWNER_PID","features":[442]},{"name":"MIB_TCP6TABLE","features":[442,316]},{"name":"MIB_TCP6TABLE2","features":[442,316]},{"name":"MIB_TCP6TABLE_OWNER_MODULE","features":[442]},{"name":"MIB_TCP6TABLE_OWNER_PID","features":[442]},{"name":"MIB_TCPROW2","features":[442]},{"name":"MIB_TCPROW_LH","features":[442]},{"name":"MIB_TCPROW_OWNER_MODULE","features":[442]},{"name":"MIB_TCPROW_OWNER_PID","features":[442]},{"name":"MIB_TCPROW_W2K","features":[442]},{"name":"MIB_TCPSTATS2","features":[442]},{"name":"MIB_TCPSTATS_LH","features":[442]},{"name":"MIB_TCPSTATS_W2K","features":[442]},{"name":"MIB_TCPTABLE","features":[442]},{"name":"MIB_TCPTABLE2","features":[442]},{"name":"MIB_TCPTABLE_OWNER_MODULE","features":[442]},{"name":"MIB_TCPTABLE_OWNER_PID","features":[442]},{"name":"MIB_TCP_RTO_CONSTANT","features":[442]},{"name":"MIB_TCP_RTO_OTHER","features":[442]},{"name":"MIB_TCP_RTO_RSRE","features":[442]},{"name":"MIB_TCP_RTO_VANJ","features":[442]},{"name":"MIB_TCP_STATE","features":[442]},{"name":"MIB_TCP_STATE_CLOSED","features":[442]},{"name":"MIB_TCP_STATE_CLOSE_WAIT","features":[442]},{"name":"MIB_TCP_STATE_CLOSING","features":[442]},{"name":"MIB_TCP_STATE_DELETE_TCB","features":[442]},{"name":"MIB_TCP_STATE_ESTAB","features":[442]},{"name":"MIB_TCP_STATE_FIN_WAIT1","features":[442]},{"name":"MIB_TCP_STATE_FIN_WAIT2","features":[442]},{"name":"MIB_TCP_STATE_LAST_ACK","features":[442]},{"name":"MIB_TCP_STATE_LISTEN","features":[442]},{"name":"MIB_TCP_STATE_RESERVED","features":[442]},{"name":"MIB_TCP_STATE_SYN_RCVD","features":[442]},{"name":"MIB_TCP_STATE_SYN_SENT","features":[442]},{"name":"MIB_TCP_STATE_TIME_WAIT","features":[442]},{"name":"MIB_UDP6ROW","features":[442,316]},{"name":"MIB_UDP6ROW2","features":[442]},{"name":"MIB_UDP6ROW_OWNER_MODULE","features":[442]},{"name":"MIB_UDP6ROW_OWNER_PID","features":[442]},{"name":"MIB_UDP6TABLE","features":[442,316]},{"name":"MIB_UDP6TABLE2","features":[442]},{"name":"MIB_UDP6TABLE_OWNER_MODULE","features":[442]},{"name":"MIB_UDP6TABLE_OWNER_PID","features":[442]},{"name":"MIB_UDPROW","features":[442]},{"name":"MIB_UDPROW2","features":[442]},{"name":"MIB_UDPROW_OWNER_MODULE","features":[442]},{"name":"MIB_UDPROW_OWNER_PID","features":[442]},{"name":"MIB_UDPSTATS","features":[442]},{"name":"MIB_UDPSTATS2","features":[442]},{"name":"MIB_UDPTABLE","features":[442]},{"name":"MIB_UDPTABLE2","features":[442]},{"name":"MIB_UDPTABLE_OWNER_MODULE","features":[442]},{"name":"MIB_UDPTABLE_OWNER_PID","features":[442]},{"name":"MIB_UNICASTIPADDRESS_ROW","features":[303,442,317,316]},{"name":"MIB_UNICASTIPADDRESS_TABLE","features":[303,442,317,316]},{"name":"MIB_USE_CURRENT_FORWARDING","features":[442]},{"name":"MIB_USE_CURRENT_TTL","features":[442]},{"name":"MIN_IF_TYPE","features":[442]},{"name":"MIXED_NODETYPE","features":[442]},{"name":"MibAddInstance","features":[442]},{"name":"MibDeleteInstance","features":[442]},{"name":"MibIfEntryNormal","features":[442]},{"name":"MibIfEntryNormalWithoutStatistics","features":[442]},{"name":"MibIfTableNormal","features":[442]},{"name":"MibIfTableNormalWithoutStatistics","features":[442]},{"name":"MibIfTableRaw","features":[442]},{"name":"MibInitialNotification","features":[442]},{"name":"MibParameterNotification","features":[442]},{"name":"ND_NEIGHBOR_ADVERT","features":[442]},{"name":"ND_NEIGHBOR_SOLICIT","features":[442]},{"name":"ND_REDIRECT","features":[442]},{"name":"ND_ROUTER_ADVERT","features":[442]},{"name":"ND_ROUTER_SOLICIT","features":[442]},{"name":"NET_ADDRESS_DNS_NAME","features":[442]},{"name":"NET_ADDRESS_FORMAT","features":[442]},{"name":"NET_ADDRESS_FORMAT_UNSPECIFIED","features":[442]},{"name":"NET_ADDRESS_INFO","features":[442,316]},{"name":"NET_ADDRESS_IPV4","features":[442]},{"name":"NET_ADDRESS_IPV6","features":[442]},{"name":"NET_STRING_IPV4_ADDRESS","features":[442]},{"name":"NET_STRING_IPV4_NETWORK","features":[442]},{"name":"NET_STRING_IPV4_SERVICE","features":[442]},{"name":"NET_STRING_IPV6_ADDRESS","features":[442]},{"name":"NET_STRING_IPV6_ADDRESS_NO_SCOPE","features":[442]},{"name":"NET_STRING_IPV6_NETWORK","features":[442]},{"name":"NET_STRING_IPV6_SERVICE","features":[442]},{"name":"NET_STRING_IPV6_SERVICE_NO_SCOPE","features":[442]},{"name":"NET_STRING_NAMED_ADDRESS","features":[442]},{"name":"NET_STRING_NAMED_SERVICE","features":[442]},{"name":"NUMBER_OF_EXPORTED_VARIABLES","features":[442]},{"name":"NhpAllocateAndGetInterfaceInfoFromStack","features":[303,442]},{"name":"NotifyAddrChange","features":[303,442,308]},{"name":"NotifyIfTimestampConfigChange","features":[442]},{"name":"NotifyIpInterfaceChange","features":[303,442,317,316]},{"name":"NotifyNetworkConnectivityHintChange","features":[303,442,316]},{"name":"NotifyRouteChange","features":[303,442,308]},{"name":"NotifyRouteChange2","features":[303,442,317,316]},{"name":"NotifyStableUnicastIpAddressTable","features":[303,442,317,316]},{"name":"NotifyTeredoPortChange","features":[303,442]},{"name":"NotifyUnicastIpAddressChange","features":[303,442,317,316]},{"name":"PEER_TO_PEER_NODETYPE","features":[442]},{"name":"PFADDRESSTYPE","features":[442]},{"name":"PFERROR_BUFFER_TOO_SMALL","features":[442]},{"name":"PFERROR_NO_FILTERS_GIVEN","features":[442]},{"name":"PFERROR_NO_PF_INTERFACE","features":[442]},{"name":"PFFORWARD_ACTION","features":[442]},{"name":"PFFRAMETYPE","features":[442]},{"name":"PFFT_FILTER","features":[442]},{"name":"PFFT_FRAG","features":[442]},{"name":"PFFT_SPOOF","features":[442]},{"name":"PFLOGFRAME","features":[442]},{"name":"PF_ACTION_DROP","features":[442]},{"name":"PF_ACTION_FORWARD","features":[442]},{"name":"PF_FILTER_DESCRIPTOR","features":[442]},{"name":"PF_FILTER_STATS","features":[442]},{"name":"PF_INTERFACE_STATS","features":[442]},{"name":"PF_IPV4","features":[442]},{"name":"PF_IPV6","features":[442]},{"name":"PF_LATEBIND_INFO","features":[442]},{"name":"PINTERFACE_TIMESTAMP_CONFIG_CHANGE_CALLBACK","features":[442]},{"name":"PIPFORWARD_CHANGE_CALLBACK","features":[303,442,317,316]},{"name":"PIPINTERFACE_CHANGE_CALLBACK","features":[303,442,317,316]},{"name":"PNETWORK_CONNECTIVITY_HINT_CHANGE_CALLBACK","features":[303,442,316]},{"name":"PROXY_ARP","features":[442]},{"name":"PSTABLE_UNICAST_IPADDRESS_TABLE_CALLBACK","features":[303,442,317,316]},{"name":"PTEREDO_PORT_CHANGE_CALLBACK","features":[442]},{"name":"PUNICAST_IPADDRESS_CHANGE_CALLBACK","features":[303,442,317,316]},{"name":"ParseNetworkString","features":[442,316]},{"name":"PfAddFiltersToInterface","features":[442]},{"name":"PfAddGlobalFilterToInterface","features":[442]},{"name":"PfBindInterfaceToIPAddress","features":[442]},{"name":"PfBindInterfaceToIndex","features":[442]},{"name":"PfCreateInterface","features":[303,442]},{"name":"PfDeleteInterface","features":[442]},{"name":"PfDeleteLog","features":[442]},{"name":"PfGetInterfaceStatistics","features":[303,442]},{"name":"PfMakeLog","features":[303,442]},{"name":"PfRebindFilters","features":[442]},{"name":"PfRemoveFilterHandles","features":[442]},{"name":"PfRemoveFiltersFromInterface","features":[442]},{"name":"PfRemoveGlobalFilterFromInterface","features":[442]},{"name":"PfSetLogBuffer","features":[442]},{"name":"PfTestPacket","features":[442]},{"name":"PfUnBindInterface","features":[442]},{"name":"ROUTE_LONGER","features":[442]},{"name":"ROUTE_MATCHING","features":[442]},{"name":"ROUTE_SHORTER","features":[442]},{"name":"ROUTE_STATE","features":[442]},{"name":"RegisterInterfaceTimestampConfigChange","features":[442]},{"name":"ResolveIpNetEntry2","features":[303,442,317,316]},{"name":"ResolveNeighbor","features":[442,316]},{"name":"RestoreMediaSense","features":[303,442,308]},{"name":"SendARP","features":[442]},{"name":"SetCurrentThreadCompartmentId","features":[303,442]},{"name":"SetCurrentThreadCompartmentScope","features":[303,442]},{"name":"SetDnsSettings","features":[303,442]},{"name":"SetIfEntry","features":[442]},{"name":"SetInterfaceDnsSettings","features":[303,442]},{"name":"SetIpForwardEntry","features":[442,316]},{"name":"SetIpForwardEntry2","features":[303,442,317,316]},{"name":"SetIpInterfaceEntry","features":[303,442,317,316]},{"name":"SetIpNetEntry","features":[442]},{"name":"SetIpNetEntry2","features":[303,442,317,316]},{"name":"SetIpStatistics","features":[442]},{"name":"SetIpStatisticsEx","features":[442]},{"name":"SetIpTTL","features":[442]},{"name":"SetJobCompartmentId","features":[303,442]},{"name":"SetNetworkInformation","features":[303,442]},{"name":"SetPerTcp6ConnectionEStats","features":[442,316]},{"name":"SetPerTcpConnectionEStats","features":[442]},{"name":"SetSessionCompartmentId","features":[303,442]},{"name":"SetTcpEntry","features":[442]},{"name":"SetUnicastIpAddressEntry","features":[303,442,317,316]},{"name":"TCP6_STATS","features":[442]},{"name":"TCPIP_OWNER_MODULE_BASIC_INFO","features":[442]},{"name":"TCPIP_OWNER_MODULE_INFO_BASIC","features":[442]},{"name":"TCPIP_OWNER_MODULE_INFO_CLASS","features":[442]},{"name":"TCPIP_OWNING_MODULE_SIZE","features":[442]},{"name":"TCP_BOOLEAN_OPTIONAL","features":[442]},{"name":"TCP_CONNECTION_OFFLOAD_STATE","features":[442]},{"name":"TCP_ESTATS_BANDWIDTH_ROD_v0","features":[303,442]},{"name":"TCP_ESTATS_BANDWIDTH_RW_v0","features":[442]},{"name":"TCP_ESTATS_DATA_ROD_v0","features":[442]},{"name":"TCP_ESTATS_DATA_RW_v0","features":[303,442]},{"name":"TCP_ESTATS_FINE_RTT_ROD_v0","features":[442]},{"name":"TCP_ESTATS_FINE_RTT_RW_v0","features":[303,442]},{"name":"TCP_ESTATS_OBS_REC_ROD_v0","features":[442]},{"name":"TCP_ESTATS_OBS_REC_RW_v0","features":[303,442]},{"name":"TCP_ESTATS_PATH_ROD_v0","features":[442]},{"name":"TCP_ESTATS_PATH_RW_v0","features":[303,442]},{"name":"TCP_ESTATS_REC_ROD_v0","features":[442]},{"name":"TCP_ESTATS_REC_RW_v0","features":[303,442]},{"name":"TCP_ESTATS_SEND_BUFF_ROD_v0","features":[442]},{"name":"TCP_ESTATS_SEND_BUFF_RW_v0","features":[303,442]},{"name":"TCP_ESTATS_SND_CONG_ROD_v0","features":[442]},{"name":"TCP_ESTATS_SND_CONG_ROS_v0","features":[442]},{"name":"TCP_ESTATS_SND_CONG_RW_v0","features":[303,442]},{"name":"TCP_ESTATS_SYN_OPTS_ROS_v0","features":[303,442]},{"name":"TCP_ESTATS_TYPE","features":[442]},{"name":"TCP_RESERVE_PORT_RANGE","features":[442]},{"name":"TCP_ROW","features":[442]},{"name":"TCP_RTO_ALGORITHM","features":[442]},{"name":"TCP_SOFT_ERROR","features":[442]},{"name":"TCP_STATS","features":[442]},{"name":"TCP_TABLE","features":[442]},{"name":"TCP_TABLE_BASIC_ALL","features":[442]},{"name":"TCP_TABLE_BASIC_CONNECTIONS","features":[442]},{"name":"TCP_TABLE_BASIC_LISTENER","features":[442]},{"name":"TCP_TABLE_CLASS","features":[442]},{"name":"TCP_TABLE_OWNER_MODULE_ALL","features":[442]},{"name":"TCP_TABLE_OWNER_MODULE_CONNECTIONS","features":[442]},{"name":"TCP_TABLE_OWNER_MODULE_LISTENER","features":[442]},{"name":"TCP_TABLE_OWNER_PID_ALL","features":[442]},{"name":"TCP_TABLE_OWNER_PID_CONNECTIONS","features":[442]},{"name":"TCP_TABLE_OWNER_PID_LISTENER","features":[442]},{"name":"TcpBoolOptDisabled","features":[442]},{"name":"TcpBoolOptEnabled","features":[442]},{"name":"TcpBoolOptUnchanged","features":[442]},{"name":"TcpConnectionEstatsBandwidth","features":[442]},{"name":"TcpConnectionEstatsData","features":[442]},{"name":"TcpConnectionEstatsFineRtt","features":[442]},{"name":"TcpConnectionEstatsMaximum","features":[442]},{"name":"TcpConnectionEstatsObsRec","features":[442]},{"name":"TcpConnectionEstatsPath","features":[442]},{"name":"TcpConnectionEstatsRec","features":[442]},{"name":"TcpConnectionEstatsSendBuff","features":[442]},{"name":"TcpConnectionEstatsSndCong","features":[442]},{"name":"TcpConnectionEstatsSynOpts","features":[442]},{"name":"TcpConnectionOffloadStateInHost","features":[442]},{"name":"TcpConnectionOffloadStateMax","features":[442]},{"name":"TcpConnectionOffloadStateOffloaded","features":[442]},{"name":"TcpConnectionOffloadStateOffloading","features":[442]},{"name":"TcpConnectionOffloadStateUploading","features":[442]},{"name":"TcpErrorAboveAckWindow","features":[442]},{"name":"TcpErrorAboveDataWindow","features":[442]},{"name":"TcpErrorAboveTsWindow","features":[442]},{"name":"TcpErrorBelowAckWindow","features":[442]},{"name":"TcpErrorBelowDataWindow","features":[442]},{"name":"TcpErrorBelowTsWindow","features":[442]},{"name":"TcpErrorDataChecksumError","features":[442]},{"name":"TcpErrorDataLengthError","features":[442]},{"name":"TcpErrorMaxSoftError","features":[442]},{"name":"TcpErrorNone","features":[442]},{"name":"TcpRtoAlgorithmConstant","features":[442]},{"name":"TcpRtoAlgorithmOther","features":[442]},{"name":"TcpRtoAlgorithmRsre","features":[442]},{"name":"TcpRtoAlgorithmVanj","features":[442]},{"name":"UDP6_STATS","features":[442]},{"name":"UDP_ROW","features":[442]},{"name":"UDP_STATS","features":[442]},{"name":"UDP_TABLE","features":[442]},{"name":"UDP_TABLE_BASIC","features":[442]},{"name":"UDP_TABLE_CLASS","features":[442]},{"name":"UDP_TABLE_OWNER_MODULE","features":[442]},{"name":"UDP_TABLE_OWNER_PID","features":[442]},{"name":"UnenableRouter","features":[303,442,308]},{"name":"UnregisterInterfaceTimestampConfigChange","features":[442]},{"name":"if_indextoname","features":[442]},{"name":"if_nametoindex","features":[442]}],"447":[{"name":"IDummyMBNUCMExt","features":[443,354]},{"name":"IMbnConnection","features":[443]},{"name":"IMbnConnectionContext","features":[443]},{"name":"IMbnConnectionContextEvents","features":[443]},{"name":"IMbnConnectionEvents","features":[443]},{"name":"IMbnConnectionManager","features":[443]},{"name":"IMbnConnectionManagerEvents","features":[443]},{"name":"IMbnConnectionProfile","features":[443]},{"name":"IMbnConnectionProfileEvents","features":[443]},{"name":"IMbnConnectionProfileManager","features":[443]},{"name":"IMbnConnectionProfileManagerEvents","features":[443]},{"name":"IMbnDeviceService","features":[443]},{"name":"IMbnDeviceServiceStateEvents","features":[443]},{"name":"IMbnDeviceServicesContext","features":[443]},{"name":"IMbnDeviceServicesEvents","features":[443]},{"name":"IMbnDeviceServicesManager","features":[443]},{"name":"IMbnInterface","features":[443]},{"name":"IMbnInterfaceEvents","features":[443]},{"name":"IMbnInterfaceManager","features":[443]},{"name":"IMbnInterfaceManagerEvents","features":[443]},{"name":"IMbnMultiCarrier","features":[443]},{"name":"IMbnMultiCarrierEvents","features":[443]},{"name":"IMbnPin","features":[443]},{"name":"IMbnPinEvents","features":[443]},{"name":"IMbnPinManager","features":[443]},{"name":"IMbnPinManagerEvents","features":[443]},{"name":"IMbnRadio","features":[443]},{"name":"IMbnRadioEvents","features":[443]},{"name":"IMbnRegistration","features":[443]},{"name":"IMbnRegistrationEvents","features":[443]},{"name":"IMbnServiceActivation","features":[443]},{"name":"IMbnServiceActivationEvents","features":[443]},{"name":"IMbnSignal","features":[443]},{"name":"IMbnSignalEvents","features":[443]},{"name":"IMbnSms","features":[443]},{"name":"IMbnSmsConfiguration","features":[443]},{"name":"IMbnSmsEvents","features":[443]},{"name":"IMbnSmsReadMsgPdu","features":[443]},{"name":"IMbnSmsReadMsgTextCdma","features":[443]},{"name":"IMbnSubscriberInformation","features":[443]},{"name":"IMbnVendorSpecificEvents","features":[443]},{"name":"IMbnVendorSpecificOperation","features":[443]},{"name":"MBN_ACCESSSTRING_LEN","features":[443]},{"name":"MBN_ACTIVATION_STATE","features":[443]},{"name":"MBN_ACTIVATION_STATE_ACTIVATED","features":[443]},{"name":"MBN_ACTIVATION_STATE_ACTIVATING","features":[443]},{"name":"MBN_ACTIVATION_STATE_DEACTIVATED","features":[443]},{"name":"MBN_ACTIVATION_STATE_DEACTIVATING","features":[443]},{"name":"MBN_ACTIVATION_STATE_NONE","features":[443]},{"name":"MBN_ATTEMPTS_REMAINING_UNKNOWN","features":[443]},{"name":"MBN_AUTH_PROTOCOL","features":[443]},{"name":"MBN_AUTH_PROTOCOL_CHAP","features":[443]},{"name":"MBN_AUTH_PROTOCOL_MSCHAPV2","features":[443]},{"name":"MBN_AUTH_PROTOCOL_NONE","features":[443]},{"name":"MBN_AUTH_PROTOCOL_PAP","features":[443]},{"name":"MBN_BAND_CLASS","features":[443]},{"name":"MBN_BAND_CLASS_0","features":[443]},{"name":"MBN_BAND_CLASS_CUSTOM","features":[443]},{"name":"MBN_BAND_CLASS_I","features":[443]},{"name":"MBN_BAND_CLASS_II","features":[443]},{"name":"MBN_BAND_CLASS_III","features":[443]},{"name":"MBN_BAND_CLASS_IV","features":[443]},{"name":"MBN_BAND_CLASS_IX","features":[443]},{"name":"MBN_BAND_CLASS_NONE","features":[443]},{"name":"MBN_BAND_CLASS_V","features":[443]},{"name":"MBN_BAND_CLASS_VI","features":[443]},{"name":"MBN_BAND_CLASS_VII","features":[443]},{"name":"MBN_BAND_CLASS_VIII","features":[443]},{"name":"MBN_BAND_CLASS_X","features":[443]},{"name":"MBN_BAND_CLASS_XI","features":[443]},{"name":"MBN_BAND_CLASS_XII","features":[443]},{"name":"MBN_BAND_CLASS_XIII","features":[443]},{"name":"MBN_BAND_CLASS_XIV","features":[443]},{"name":"MBN_BAND_CLASS_XV","features":[443]},{"name":"MBN_BAND_CLASS_XVI","features":[443]},{"name":"MBN_BAND_CLASS_XVII","features":[443]},{"name":"MBN_CDMA_DEFAULT_PROVIDER_ID","features":[443]},{"name":"MBN_CDMA_SHORT_MSG_SIZE_MAX","features":[443]},{"name":"MBN_CDMA_SHORT_MSG_SIZE_UNKNOWN","features":[443]},{"name":"MBN_CELLULAR_CLASS","features":[443]},{"name":"MBN_CELLULAR_CLASS_CDMA","features":[443]},{"name":"MBN_CELLULAR_CLASS_GSM","features":[443]},{"name":"MBN_CELLULAR_CLASS_NONE","features":[443]},{"name":"MBN_COMPRESSION","features":[443]},{"name":"MBN_COMPRESSION_ENABLE","features":[443]},{"name":"MBN_COMPRESSION_NONE","features":[443]},{"name":"MBN_CONNECTION_MODE","features":[443]},{"name":"MBN_CONNECTION_MODE_PROFILE","features":[443]},{"name":"MBN_CONNECTION_MODE_TMP_PROFILE","features":[443]},{"name":"MBN_CONTEXT","features":[443]},{"name":"MBN_CONTEXT_CONSTANTS","features":[443]},{"name":"MBN_CONTEXT_ID_APPEND","features":[443]},{"name":"MBN_CONTEXT_TYPE","features":[443]},{"name":"MBN_CONTEXT_TYPE_CUSTOM","features":[443]},{"name":"MBN_CONTEXT_TYPE_INTERNET","features":[443]},{"name":"MBN_CONTEXT_TYPE_NONE","features":[443]},{"name":"MBN_CONTEXT_TYPE_PURCHASE","features":[443]},{"name":"MBN_CONTEXT_TYPE_VIDEO_SHARE","features":[443]},{"name":"MBN_CONTEXT_TYPE_VOICE","features":[443]},{"name":"MBN_CONTEXT_TYPE_VPN","features":[443]},{"name":"MBN_CTRL_CAPS","features":[443]},{"name":"MBN_CTRL_CAPS_CDMA_MOBILE_IP","features":[443]},{"name":"MBN_CTRL_CAPS_CDMA_SIMPLE_IP","features":[443]},{"name":"MBN_CTRL_CAPS_HW_RADIO_SWITCH","features":[443]},{"name":"MBN_CTRL_CAPS_MODEL_MULTI_CARRIER","features":[443]},{"name":"MBN_CTRL_CAPS_MULTI_MODE","features":[443]},{"name":"MBN_CTRL_CAPS_NONE","features":[443]},{"name":"MBN_CTRL_CAPS_PROTECT_UNIQUEID","features":[443]},{"name":"MBN_CTRL_CAPS_REG_MANUAL","features":[443]},{"name":"MBN_CTRL_CAPS_USSD","features":[443]},{"name":"MBN_DATA_CLASS","features":[443]},{"name":"MBN_DATA_CLASS_1XEVDO","features":[443]},{"name":"MBN_DATA_CLASS_1XEVDO_REVA","features":[443]},{"name":"MBN_DATA_CLASS_1XEVDO_REVB","features":[443]},{"name":"MBN_DATA_CLASS_1XEVDV","features":[443]},{"name":"MBN_DATA_CLASS_1XRTT","features":[443]},{"name":"MBN_DATA_CLASS_3XRTT","features":[443]},{"name":"MBN_DATA_CLASS_5G_NSA","features":[443]},{"name":"MBN_DATA_CLASS_5G_SA","features":[443]},{"name":"MBN_DATA_CLASS_CUSTOM","features":[443]},{"name":"MBN_DATA_CLASS_EDGE","features":[443]},{"name":"MBN_DATA_CLASS_GPRS","features":[443]},{"name":"MBN_DATA_CLASS_HSDPA","features":[443]},{"name":"MBN_DATA_CLASS_HSUPA","features":[443]},{"name":"MBN_DATA_CLASS_LTE","features":[443]},{"name":"MBN_DATA_CLASS_NONE","features":[443]},{"name":"MBN_DATA_CLASS_UMB","features":[443]},{"name":"MBN_DATA_CLASS_UMTS","features":[443]},{"name":"MBN_DEVICEID_LEN","features":[443]},{"name":"MBN_DEVICE_SERVICE","features":[303,443]},{"name":"MBN_DEVICE_SERVICES_CAPABLE_INTERFACE_ARRIVAL","features":[443]},{"name":"MBN_DEVICE_SERVICES_CAPABLE_INTERFACE_REMOVAL","features":[443]},{"name":"MBN_DEVICE_SERVICES_INTERFACE_STATE","features":[443]},{"name":"MBN_DEVICE_SERVICE_SESSIONS_RESTORED","features":[443]},{"name":"MBN_DEVICE_SERVICE_SESSIONS_STATE","features":[443]},{"name":"MBN_ERROR_RATE_UNKNOWN","features":[443]},{"name":"MBN_FIRMWARE_LEN","features":[443]},{"name":"MBN_INTERFACE_CAPS","features":[443]},{"name":"MBN_INTERFACE_CAPS_CONSTANTS","features":[443]},{"name":"MBN_MANUFACTURER_LEN","features":[443]},{"name":"MBN_MESSAGE_INDEX_NONE","features":[443]},{"name":"MBN_MODEL_LEN","features":[443]},{"name":"MBN_MSG_STATUS","features":[443]},{"name":"MBN_MSG_STATUS_DRAFT","features":[443]},{"name":"MBN_MSG_STATUS_NEW","features":[443]},{"name":"MBN_MSG_STATUS_OLD","features":[443]},{"name":"MBN_MSG_STATUS_SENT","features":[443]},{"name":"MBN_PASSWORD_LEN","features":[443]},{"name":"MBN_PIN_CONSTANTS","features":[443]},{"name":"MBN_PIN_FORMAT","features":[443]},{"name":"MBN_PIN_FORMAT_ALPHANUMERIC","features":[443]},{"name":"MBN_PIN_FORMAT_NONE","features":[443]},{"name":"MBN_PIN_FORMAT_NUMERIC","features":[443]},{"name":"MBN_PIN_INFO","features":[443]},{"name":"MBN_PIN_LENGTH_UNKNOWN","features":[443]},{"name":"MBN_PIN_MODE","features":[443]},{"name":"MBN_PIN_MODE_DISABLED","features":[443]},{"name":"MBN_PIN_MODE_ENABLED","features":[443]},{"name":"MBN_PIN_STATE","features":[443]},{"name":"MBN_PIN_STATE_ENTER","features":[443]},{"name":"MBN_PIN_STATE_NONE","features":[443]},{"name":"MBN_PIN_STATE_UNBLOCK","features":[443]},{"name":"MBN_PIN_TYPE","features":[443]},{"name":"MBN_PIN_TYPE_CORPORATE_PIN","features":[443]},{"name":"MBN_PIN_TYPE_CUSTOM","features":[443]},{"name":"MBN_PIN_TYPE_DEVICE_FIRST_SIM_PIN","features":[443]},{"name":"MBN_PIN_TYPE_DEVICE_SIM_PIN","features":[443]},{"name":"MBN_PIN_TYPE_NETWORK_PIN","features":[443]},{"name":"MBN_PIN_TYPE_NETWORK_SUBSET_PIN","features":[443]},{"name":"MBN_PIN_TYPE_NONE","features":[443]},{"name":"MBN_PIN_TYPE_PIN1","features":[443]},{"name":"MBN_PIN_TYPE_PIN2","features":[443]},{"name":"MBN_PIN_TYPE_SUBSIDY_LOCK","features":[443]},{"name":"MBN_PIN_TYPE_SVC_PROVIDER_PIN","features":[443]},{"name":"MBN_PROVIDER","features":[443]},{"name":"MBN_PROVIDER2","features":[443]},{"name":"MBN_PROVIDERID_LEN","features":[443]},{"name":"MBN_PROVIDERNAME_LEN","features":[443]},{"name":"MBN_PROVIDER_CONSTANTS","features":[443]},{"name":"MBN_PROVIDER_STATE","features":[443]},{"name":"MBN_PROVIDER_STATE_FORBIDDEN","features":[443]},{"name":"MBN_PROVIDER_STATE_HOME","features":[443]},{"name":"MBN_PROVIDER_STATE_NONE","features":[443]},{"name":"MBN_PROVIDER_STATE_PREFERRED","features":[443]},{"name":"MBN_PROVIDER_STATE_PREFERRED_MULTICARRIER","features":[443]},{"name":"MBN_PROVIDER_STATE_REGISTERED","features":[443]},{"name":"MBN_PROVIDER_STATE_VISIBLE","features":[443]},{"name":"MBN_RADIO","features":[443]},{"name":"MBN_RADIO_OFF","features":[443]},{"name":"MBN_RADIO_ON","features":[443]},{"name":"MBN_READY_STATE","features":[443]},{"name":"MBN_READY_STATE_BAD_SIM","features":[443]},{"name":"MBN_READY_STATE_DEVICE_BLOCKED","features":[443]},{"name":"MBN_READY_STATE_DEVICE_LOCKED","features":[443]},{"name":"MBN_READY_STATE_FAILURE","features":[443]},{"name":"MBN_READY_STATE_INITIALIZED","features":[443]},{"name":"MBN_READY_STATE_NOT_ACTIVATED","features":[443]},{"name":"MBN_READY_STATE_NO_ESIM_PROFILE","features":[443]},{"name":"MBN_READY_STATE_OFF","features":[443]},{"name":"MBN_READY_STATE_SIM_NOT_INSERTED","features":[443]},{"name":"MBN_REGISTER_MODE","features":[443]},{"name":"MBN_REGISTER_MODE_AUTOMATIC","features":[443]},{"name":"MBN_REGISTER_MODE_MANUAL","features":[443]},{"name":"MBN_REGISTER_MODE_NONE","features":[443]},{"name":"MBN_REGISTER_STATE","features":[443]},{"name":"MBN_REGISTER_STATE_DENIED","features":[443]},{"name":"MBN_REGISTER_STATE_DEREGISTERED","features":[443]},{"name":"MBN_REGISTER_STATE_HOME","features":[443]},{"name":"MBN_REGISTER_STATE_NONE","features":[443]},{"name":"MBN_REGISTER_STATE_PARTNER","features":[443]},{"name":"MBN_REGISTER_STATE_ROAMING","features":[443]},{"name":"MBN_REGISTER_STATE_SEARCHING","features":[443]},{"name":"MBN_REGISTRATION_CONSTANTS","features":[443]},{"name":"MBN_ROAMTEXT_LEN","features":[443]},{"name":"MBN_RSSI_DEFAULT","features":[443]},{"name":"MBN_RSSI_DISABLE","features":[443]},{"name":"MBN_RSSI_UNKNOWN","features":[443]},{"name":"MBN_SIGNAL_CONSTANTS","features":[443]},{"name":"MBN_SMS_CAPS","features":[443]},{"name":"MBN_SMS_CAPS_NONE","features":[443]},{"name":"MBN_SMS_CAPS_PDU_RECEIVE","features":[443]},{"name":"MBN_SMS_CAPS_PDU_SEND","features":[443]},{"name":"MBN_SMS_CAPS_TEXT_RECEIVE","features":[443]},{"name":"MBN_SMS_CAPS_TEXT_SEND","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_7BIT_ASCII","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_EPM","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_GSM_7BIT","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_IA5","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_KOREAN","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_LATIN","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_LATIN_HEBREW","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_OCTET","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_SHIFT_JIS","features":[443]},{"name":"MBN_SMS_CDMA_ENCODING_UNICODE","features":[443]},{"name":"MBN_SMS_CDMA_LANG","features":[443]},{"name":"MBN_SMS_CDMA_LANG_CHINESE","features":[443]},{"name":"MBN_SMS_CDMA_LANG_ENGLISH","features":[443]},{"name":"MBN_SMS_CDMA_LANG_FRENCH","features":[443]},{"name":"MBN_SMS_CDMA_LANG_HEBREW","features":[443]},{"name":"MBN_SMS_CDMA_LANG_JAPANESE","features":[443]},{"name":"MBN_SMS_CDMA_LANG_KOREAN","features":[443]},{"name":"MBN_SMS_CDMA_LANG_NONE","features":[443]},{"name":"MBN_SMS_CDMA_LANG_SPANISH","features":[443]},{"name":"MBN_SMS_FILTER","features":[443]},{"name":"MBN_SMS_FLAG","features":[443]},{"name":"MBN_SMS_FLAG_ALL","features":[443]},{"name":"MBN_SMS_FLAG_DRAFT","features":[443]},{"name":"MBN_SMS_FLAG_INDEX","features":[443]},{"name":"MBN_SMS_FLAG_MESSAGE_STORE_FULL","features":[443]},{"name":"MBN_SMS_FLAG_NEW","features":[443]},{"name":"MBN_SMS_FLAG_NEW_MESSAGE","features":[443]},{"name":"MBN_SMS_FLAG_NONE","features":[443]},{"name":"MBN_SMS_FLAG_OLD","features":[443]},{"name":"MBN_SMS_FLAG_SENT","features":[443]},{"name":"MBN_SMS_FORMAT","features":[443]},{"name":"MBN_SMS_FORMAT_NONE","features":[443]},{"name":"MBN_SMS_FORMAT_PDU","features":[443]},{"name":"MBN_SMS_FORMAT_TEXT","features":[443]},{"name":"MBN_SMS_STATUS_FLAG","features":[443]},{"name":"MBN_SMS_STATUS_INFO","features":[443]},{"name":"MBN_USERNAME_LEN","features":[443]},{"name":"MBN_VOICE_CALL_STATE","features":[443]},{"name":"MBN_VOICE_CALL_STATE_HANGUP","features":[443]},{"name":"MBN_VOICE_CALL_STATE_IN_PROGRESS","features":[443]},{"name":"MBN_VOICE_CALL_STATE_NONE","features":[443]},{"name":"MBN_VOICE_CLASS","features":[443]},{"name":"MBN_VOICE_CLASS_NONE","features":[443]},{"name":"MBN_VOICE_CLASS_NO_VOICE","features":[443]},{"name":"MBN_VOICE_CLASS_SEPARATE_VOICE_DATA","features":[443]},{"name":"MBN_VOICE_CLASS_SIMULTANEOUS_VOICE_DATA","features":[443]},{"name":"MbnConnectionManager","features":[443]},{"name":"MbnConnectionProfileManager","features":[443]},{"name":"MbnDeviceServicesManager","features":[443]},{"name":"MbnInterfaceManager","features":[443]},{"name":"WWAEXT_SMS_CONSTANTS","features":[443]},{"name":"__DummyPinType__","features":[443]},{"name":"__mbnapi_ReferenceRemainingTypes__","features":[443]}],"448":[{"name":"IPNG_ADDRESS","features":[444]},{"name":"MCAST_API_CURRENT_VERSION","features":[444]},{"name":"MCAST_API_VERSION_0","features":[444]},{"name":"MCAST_API_VERSION_1","features":[444]},{"name":"MCAST_CLIENT_ID_LEN","features":[444]},{"name":"MCAST_CLIENT_UID","features":[444]},{"name":"MCAST_LEASE_REQUEST","features":[444]},{"name":"MCAST_LEASE_RESPONSE","features":[444]},{"name":"MCAST_SCOPE_CTX","features":[444]},{"name":"MCAST_SCOPE_ENTRY","features":[303,444]},{"name":"McastApiCleanup","features":[444]},{"name":"McastApiStartup","features":[444]},{"name":"McastEnumerateScopes","features":[303,444]},{"name":"McastGenUID","features":[444]},{"name":"McastReleaseAddress","features":[444]},{"name":"McastRenewAddress","features":[444]},{"name":"McastRequestAddress","features":[444]}],"449":[{"name":"AUTHENTICATE","features":[317]},{"name":"BSSID_INFO","features":[317]},{"name":"CLOCK_NETWORK_DERIVED","features":[317]},{"name":"CLOCK_PRECISION","features":[317]},{"name":"DD_NDIS_DEVICE_NAME","features":[317]},{"name":"DOT11_RSN_KCK_LENGTH","features":[317]},{"name":"DOT11_RSN_KEK_LENGTH","features":[317]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[317]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[317]},{"name":"ENCRYPT","features":[317]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[317]},{"name":"GEN_GET_NETCARD_TIME","features":[317]},{"name":"GEN_GET_TIME_CAPS","features":[317]},{"name":"GUID_DEVINTERFACE_NET","features":[317]},{"name":"GUID_DEVINTERFACE_NETUIO","features":[317]},{"name":"GUID_NDIS_802_11_ADD_KEY","features":[317]},{"name":"GUID_NDIS_802_11_ADD_WEP","features":[317]},{"name":"GUID_NDIS_802_11_ASSOCIATION_INFORMATION","features":[317]},{"name":"GUID_NDIS_802_11_AUTHENTICATION_MODE","features":[317]},{"name":"GUID_NDIS_802_11_BSSID","features":[317]},{"name":"GUID_NDIS_802_11_BSSID_LIST","features":[317]},{"name":"GUID_NDIS_802_11_BSSID_LIST_SCAN","features":[317]},{"name":"GUID_NDIS_802_11_CONFIGURATION","features":[317]},{"name":"GUID_NDIS_802_11_DESIRED_RATES","features":[317]},{"name":"GUID_NDIS_802_11_DISASSOCIATE","features":[317]},{"name":"GUID_NDIS_802_11_FRAGMENTATION_THRESHOLD","features":[317]},{"name":"GUID_NDIS_802_11_INFRASTRUCTURE_MODE","features":[317]},{"name":"GUID_NDIS_802_11_MEDIA_STREAM_MODE","features":[317]},{"name":"GUID_NDIS_802_11_NETWORK_TYPES_SUPPORTED","features":[317]},{"name":"GUID_NDIS_802_11_NETWORK_TYPE_IN_USE","features":[317]},{"name":"GUID_NDIS_802_11_NUMBER_OF_ANTENNAS","features":[317]},{"name":"GUID_NDIS_802_11_POWER_MODE","features":[317]},{"name":"GUID_NDIS_802_11_PRIVACY_FILTER","features":[317]},{"name":"GUID_NDIS_802_11_RELOAD_DEFAULTS","features":[317]},{"name":"GUID_NDIS_802_11_REMOVE_KEY","features":[317]},{"name":"GUID_NDIS_802_11_REMOVE_WEP","features":[317]},{"name":"GUID_NDIS_802_11_RSSI","features":[317]},{"name":"GUID_NDIS_802_11_RSSI_TRIGGER","features":[317]},{"name":"GUID_NDIS_802_11_RTS_THRESHOLD","features":[317]},{"name":"GUID_NDIS_802_11_RX_ANTENNA_SELECTED","features":[317]},{"name":"GUID_NDIS_802_11_SSID","features":[317]},{"name":"GUID_NDIS_802_11_STATISTICS","features":[317]},{"name":"GUID_NDIS_802_11_SUPPORTED_RATES","features":[317]},{"name":"GUID_NDIS_802_11_TEST","features":[317]},{"name":"GUID_NDIS_802_11_TX_ANTENNA_SELECTED","features":[317]},{"name":"GUID_NDIS_802_11_TX_POWER_LEVEL","features":[317]},{"name":"GUID_NDIS_802_11_WEP_STATUS","features":[317]},{"name":"GUID_NDIS_802_3_CURRENT_ADDRESS","features":[317]},{"name":"GUID_NDIS_802_3_MAC_OPTIONS","features":[317]},{"name":"GUID_NDIS_802_3_MAXIMUM_LIST_SIZE","features":[317]},{"name":"GUID_NDIS_802_3_MULTICAST_LIST","features":[317]},{"name":"GUID_NDIS_802_3_PERMANENT_ADDRESS","features":[317]},{"name":"GUID_NDIS_802_3_RCV_ERROR_ALIGNMENT","features":[317]},{"name":"GUID_NDIS_802_3_XMIT_MORE_COLLISIONS","features":[317]},{"name":"GUID_NDIS_802_3_XMIT_ONE_COLLISION","features":[317]},{"name":"GUID_NDIS_802_5_CURRENT_ADDRESS","features":[317]},{"name":"GUID_NDIS_802_5_CURRENT_FUNCTIONAL","features":[317]},{"name":"GUID_NDIS_802_5_CURRENT_GROUP","features":[317]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATE","features":[317]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATUS","features":[317]},{"name":"GUID_NDIS_802_5_LAST_OPEN_STATUS","features":[317]},{"name":"GUID_NDIS_802_5_LINE_ERRORS","features":[317]},{"name":"GUID_NDIS_802_5_LOST_FRAMES","features":[317]},{"name":"GUID_NDIS_802_5_PERMANENT_ADDRESS","features":[317]},{"name":"GUID_NDIS_ENUMERATE_ADAPTER","features":[317]},{"name":"GUID_NDIS_ENUMERATE_ADAPTERS_EX","features":[317]},{"name":"GUID_NDIS_ENUMERATE_VC","features":[317]},{"name":"GUID_NDIS_GEN_CO_DRIVER_VERSION","features":[317]},{"name":"GUID_NDIS_GEN_CO_HARDWARE_STATUS","features":[317]},{"name":"GUID_NDIS_GEN_CO_LINK_SPEED","features":[317]},{"name":"GUID_NDIS_GEN_CO_MAC_OPTIONS","features":[317]},{"name":"GUID_NDIS_GEN_CO_MEDIA_CONNECT_STATUS","features":[317]},{"name":"GUID_NDIS_GEN_CO_MEDIA_IN_USE","features":[317]},{"name":"GUID_NDIS_GEN_CO_MEDIA_SUPPORTED","features":[317]},{"name":"GUID_NDIS_GEN_CO_MINIMUM_LINK_SPEED","features":[317]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_ERROR","features":[317]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_NO_BUFFER","features":[317]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_OK","features":[317]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DESCRIPTION","features":[317]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DRIVER_VERSION","features":[317]},{"name":"GUID_NDIS_GEN_CO_VENDOR_ID","features":[317]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_ERROR","features":[317]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_OK","features":[317]},{"name":"GUID_NDIS_GEN_CURRENT_LOOKAHEAD","features":[317]},{"name":"GUID_NDIS_GEN_CURRENT_PACKET_FILTER","features":[317]},{"name":"GUID_NDIS_GEN_DRIVER_VERSION","features":[317]},{"name":"GUID_NDIS_GEN_ENUMERATE_PORTS","features":[317]},{"name":"GUID_NDIS_GEN_HARDWARE_STATUS","features":[317]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION","features":[317]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION_PARAMETERS","features":[317]},{"name":"GUID_NDIS_GEN_LINK_PARAMETERS","features":[317]},{"name":"GUID_NDIS_GEN_LINK_SPEED","features":[317]},{"name":"GUID_NDIS_GEN_LINK_STATE","features":[317]},{"name":"GUID_NDIS_GEN_MAC_OPTIONS","features":[317]},{"name":"GUID_NDIS_GEN_MAXIMUM_FRAME_SIZE","features":[317]},{"name":"GUID_NDIS_GEN_MAXIMUM_LOOKAHEAD","features":[317]},{"name":"GUID_NDIS_GEN_MAXIMUM_SEND_PACKETS","features":[317]},{"name":"GUID_NDIS_GEN_MAXIMUM_TOTAL_SIZE","features":[317]},{"name":"GUID_NDIS_GEN_MEDIA_CONNECT_STATUS","features":[317]},{"name":"GUID_NDIS_GEN_MEDIA_IN_USE","features":[317]},{"name":"GUID_NDIS_GEN_MEDIA_SUPPORTED","features":[317]},{"name":"GUID_NDIS_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[317]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM","features":[317]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM_EX","features":[317]},{"name":"GUID_NDIS_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[317]},{"name":"GUID_NDIS_GEN_PORT_STATE","features":[317]},{"name":"GUID_NDIS_GEN_RCV_ERROR","features":[317]},{"name":"GUID_NDIS_GEN_RCV_NO_BUFFER","features":[317]},{"name":"GUID_NDIS_GEN_RCV_OK","features":[317]},{"name":"GUID_NDIS_GEN_RECEIVE_BLOCK_SIZE","features":[317]},{"name":"GUID_NDIS_GEN_RECEIVE_BUFFER_SPACE","features":[317]},{"name":"GUID_NDIS_GEN_STATISTICS","features":[317]},{"name":"GUID_NDIS_GEN_TRANSMIT_BLOCK_SIZE","features":[317]},{"name":"GUID_NDIS_GEN_TRANSMIT_BUFFER_SPACE","features":[317]},{"name":"GUID_NDIS_GEN_VENDOR_DESCRIPTION","features":[317]},{"name":"GUID_NDIS_GEN_VENDOR_DRIVER_VERSION","features":[317]},{"name":"GUID_NDIS_GEN_VENDOR_ID","features":[317]},{"name":"GUID_NDIS_GEN_VLAN_ID","features":[317]},{"name":"GUID_NDIS_GEN_XMIT_ERROR","features":[317]},{"name":"GUID_NDIS_GEN_XMIT_OK","features":[317]},{"name":"GUID_NDIS_HD_SPLIT_CURRENT_CONFIG","features":[317]},{"name":"GUID_NDIS_HD_SPLIT_PARAMETERS","features":[317]},{"name":"GUID_NDIS_LAN_CLASS","features":[317]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_NDK_STATE","features":[317]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_ARRIVAL","features":[317]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_REMOVAL","features":[317]},{"name":"GUID_NDIS_NOTIFY_BIND","features":[317]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF","features":[317]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF_EX","features":[317]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON","features":[317]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON_EX","features":[317]},{"name":"GUID_NDIS_NOTIFY_FILTER_ARRIVAL","features":[317]},{"name":"GUID_NDIS_NOTIFY_FILTER_REMOVAL","features":[317]},{"name":"GUID_NDIS_NOTIFY_UNBIND","features":[317]},{"name":"GUID_NDIS_NOTIFY_VC_ARRIVAL","features":[317]},{"name":"GUID_NDIS_NOTIFY_VC_REMOVAL","features":[317]},{"name":"GUID_NDIS_PM_ACTIVE_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_PM_ADMIN_CONFIG","features":[317]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_FILTERS","features":[317]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_QUEUES","features":[317]},{"name":"GUID_NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[317]},{"name":"GUID_NDIS_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_RECEIVE_FILTER_PARAMETERS","features":[317]},{"name":"GUID_NDIS_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[317]},{"name":"GUID_NDIS_RECEIVE_SCALE_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_RSS_ENABLED","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_COMPLETION","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_START","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_COMPLETION","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_START","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_DISASSOCIATION","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_LINK_QUALITY","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_MPDU_MAX_LENGTH_CHANGED","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_PHY_STATE_CHANGED","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_PMKID_CANDIDATE_LIST","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_COMPLETION","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_START","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_SCAN_CONFIRM","features":[317]},{"name":"GUID_NDIS_STATUS_DOT11_TKIPMIC_FAILURE","features":[317]},{"name":"GUID_NDIS_STATUS_EXTERNAL_CONNECTIVITY_CHANGE","features":[317]},{"name":"GUID_NDIS_STATUS_HD_SPLIT_CURRENT_CONFIG","features":[317]},{"name":"GUID_NDIS_STATUS_LINK_SPEED_CHANGE","features":[317]},{"name":"GUID_NDIS_STATUS_LINK_STATE","features":[317]},{"name":"GUID_NDIS_STATUS_MEDIA_CONNECT","features":[317]},{"name":"GUID_NDIS_STATUS_MEDIA_DISCONNECT","features":[317]},{"name":"GUID_NDIS_STATUS_MEDIA_SPECIFIC_INDICATION","features":[317]},{"name":"GUID_NDIS_STATUS_NETWORK_CHANGE","features":[317]},{"name":"GUID_NDIS_STATUS_OPER_STATUS","features":[317]},{"name":"GUID_NDIS_STATUS_PACKET_FILTER","features":[317]},{"name":"GUID_NDIS_STATUS_PM_OFFLOAD_REJECTED","features":[317]},{"name":"GUID_NDIS_STATUS_PM_WAKE_REASON","features":[317]},{"name":"GUID_NDIS_STATUS_PM_WOL_PATTERN_REJECTED","features":[317]},{"name":"GUID_NDIS_STATUS_PORT_STATE","features":[317]},{"name":"GUID_NDIS_STATUS_RESET_END","features":[317]},{"name":"GUID_NDIS_STATUS_RESET_START","features":[317]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_SWITCH_MICROSOFT_VENDOR_ID","features":[317]},{"name":"GUID_NDIS_SWITCH_PORT_PROPERTY_PROFILE_ID_DEFAULT_EXTERNAL_NIC","features":[317]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_TCP_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"GUID_NDIS_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_TCP_OFFLOAD_PARAMETERS","features":[317]},{"name":"GUID_NDIS_TCP_RSC_STATISTICS","features":[317]},{"name":"GUID_NDIS_WAKE_ON_MAGIC_PACKET_ONLY","features":[317]},{"name":"GUID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[317]},{"name":"GUID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[317]},{"name":"GUID_PM_ADD_PROTOCOL_OFFLOAD","features":[317]},{"name":"GUID_PM_ADD_WOL_PATTERN","features":[317]},{"name":"GUID_PM_CURRENT_CAPABILITIES","features":[317]},{"name":"GUID_PM_GET_PROTOCOL_OFFLOAD","features":[317]},{"name":"GUID_PM_HARDWARE_CAPABILITIES","features":[317]},{"name":"GUID_PM_PARAMETERS","features":[317]},{"name":"GUID_PM_PROTOCOL_OFFLOAD_LIST","features":[317]},{"name":"GUID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[317]},{"name":"GUID_PM_REMOVE_WOL_PATTERN","features":[317]},{"name":"GUID_PM_WOL_PATTERN_LIST","features":[317]},{"name":"GUID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[317]},{"name":"GUID_STATUS_MEDIA_SPECIFIC_INDICATION_EX","features":[317]},{"name":"IF_ADMINISTRATIVE_DEMANDDIAL","features":[317]},{"name":"IF_ADMINISTRATIVE_DISABLED","features":[317]},{"name":"IF_ADMINISTRATIVE_ENABLED","features":[317]},{"name":"IF_ADMINISTRATIVE_STATE","features":[317]},{"name":"IF_COUNTED_STRING_LH","features":[317]},{"name":"IF_MAX_PHYS_ADDRESS_LENGTH","features":[317]},{"name":"IF_MAX_STRING_SIZE","features":[317]},{"name":"IF_OPER_STATUS","features":[317]},{"name":"IF_PHYSICAL_ADDRESS_LH","features":[317]},{"name":"IOCTL_NDIS_RESERVED5","features":[317]},{"name":"IOCTL_NDIS_RESERVED6","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[317]},{"name":"IfOperStatusDormant","features":[317]},{"name":"IfOperStatusDown","features":[317]},{"name":"IfOperStatusLowerLayerDown","features":[317]},{"name":"IfOperStatusNotPresent","features":[317]},{"name":"IfOperStatusTesting","features":[317]},{"name":"IfOperStatusUnknown","features":[317]},{"name":"IfOperStatusUp","features":[317]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[317]},{"name":"MediaConnectStateConnected","features":[317]},{"name":"MediaConnectStateDisconnected","features":[317]},{"name":"MediaConnectStateUnknown","features":[317]},{"name":"MediaDuplexStateFull","features":[317]},{"name":"MediaDuplexStateHalf","features":[317]},{"name":"MediaDuplexStateUnknown","features":[317]},{"name":"NDIS_802_11_AI_REQFI","features":[317]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[317]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[317]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[317]},{"name":"NDIS_802_11_AI_RESFI","features":[317]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[317]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[317]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[317]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[317]},{"name":"NDIS_802_11_BSSID_LIST","features":[317]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[317]},{"name":"NDIS_802_11_CAPABILITY","features":[317]},{"name":"NDIS_802_11_CONFIGURATION","features":[317]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[317]},{"name":"NDIS_802_11_FIXED_IEs","features":[317]},{"name":"NDIS_802_11_KEY","features":[317]},{"name":"NDIS_802_11_LENGTH_RATES","features":[317]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[317]},{"name":"NDIS_802_11_LENGTH_SSID","features":[317]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[317]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[317]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[317]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[317]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[317]},{"name":"NDIS_802_11_PMKID","features":[317]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[317]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[317]},{"name":"NDIS_802_11_POWER_MODE","features":[317]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[317]},{"name":"NDIS_802_11_RADIO_STATUS","features":[317]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[317]},{"name":"NDIS_802_11_REMOVE_KEY","features":[317]},{"name":"NDIS_802_11_SSID","features":[317]},{"name":"NDIS_802_11_STATISTICS","features":[317]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[317]},{"name":"NDIS_802_11_STATUS_TYPE","features":[317]},{"name":"NDIS_802_11_TEST","features":[317]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[317]},{"name":"NDIS_802_11_WEP","features":[317]},{"name":"NDIS_802_11_WEP_STATUS","features":[317]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[317]},{"name":"NDIS_802_5_RING_STATE","features":[317]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[317]},{"name":"NDIS_CO_LINK_SPEED","features":[317]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[317]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[317]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[317]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[317]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[317]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[317]},{"name":"NDIS_DEVICE_POWER_STATE","features":[317]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[317]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[317]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[317]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[317]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[317]},{"name":"NDIS_ENCAPSULATION_NULL","features":[317]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[317]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[317]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[317]},{"name":"NDIS_ETH_TYPE_802_1X","features":[317]},{"name":"NDIS_ETH_TYPE_ARP","features":[317]},{"name":"NDIS_ETH_TYPE_IPV4","features":[317]},{"name":"NDIS_ETH_TYPE_IPV6","features":[317]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[317]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[317]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[317]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[317]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[317]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[317]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[317]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[317]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[317]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[317]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[317]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[317]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[317]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[317]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[317]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[317]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[317]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[317]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[317]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[317]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[317]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[317]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[317]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[317]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[317]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[317]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[317]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[317]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[317]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[317]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[317]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[317]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[317]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[317]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[317]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[317]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[317]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[317]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[317]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[317]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[317]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[317]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[317]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[317]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[317]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_GUID","features":[317]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[317]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[317]},{"name":"NDIS_HARDWARE_STATUS","features":[317]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[317]},{"name":"NDIS_HASH_IPV4","features":[317]},{"name":"NDIS_HASH_IPV6","features":[317]},{"name":"NDIS_HASH_IPV6_EX","features":[317]},{"name":"NDIS_HASH_TCP_IPV4","features":[317]},{"name":"NDIS_HASH_TCP_IPV6","features":[317]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[317]},{"name":"NDIS_HASH_TYPE_MASK","features":[317]},{"name":"NDIS_HASH_UDP_IPV4","features":[317]},{"name":"NDIS_HASH_UDP_IPV6","features":[317]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[317]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[317]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[317]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[317]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[317]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[317]},{"name":"NDIS_INTERFACE_INFORMATION","features":[303,317]},{"name":"NDIS_INTERRUPT_MODERATION","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[317]},{"name":"NDIS_IP_OPER_STATE","features":[317]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[317]},{"name":"NDIS_IP_OPER_STATUS","features":[317]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[317]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[317]},{"name":"NDIS_IRDA_PACKET_INFO","features":[317]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[317]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_LINK_PARAMETERS","features":[317]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_LINK_SPEED","features":[317]},{"name":"NDIS_LINK_STATE","features":[317]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[317]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[317]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[317]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[317]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[317]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[317]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[317]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[317]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[317]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[317]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[317]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[317]},{"name":"NDIS_MAXIMUM_PORTS","features":[317]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[317]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[317]},{"name":"NDIS_MEDIA_STATE","features":[317]},{"name":"NDIS_MEDIUM","features":[317]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[317]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[317]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[317]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[317]},{"name":"NDIS_OBJECT_HEADER","features":[317]},{"name":"NDIS_OBJECT_REVISION_1","features":[317]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[317]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[317]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[317]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[317]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[317]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[317]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[317]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[317]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[317]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[317]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[317]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[317]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[317]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[317]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[317]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[317]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[317]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OFFLOAD","features":[317]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[317]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[317]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[317]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[317]},{"name":"NDIS_OFFLOAD_SET_ON","features":[317]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[317]},{"name":"NDIS_OPER_STATE","features":[317]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[317]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[317]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[317]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[317]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[317]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[317]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[317]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[317]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[317]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[317]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[317]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[317]},{"name":"NDIS_PACKET_TYPE_SMT","features":[317]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[317]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[317]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[317]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[317]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[317]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[317]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[317]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[317]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[317]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[317]},{"name":"NDIS_PM_PACKET_PATTERN","features":[317]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[317]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[317]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[317]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[317]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[317]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[317]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[317]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[317]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[317]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[317]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[317]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[317]},{"name":"NDIS_PNP_CAPABILITIES","features":[317]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[317]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[317]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[317]},{"name":"NDIS_PORT","features":[317]},{"name":"NDIS_PORT_ARRAY","features":[317]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[317]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[317]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[317]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[317]},{"name":"NDIS_PORT_CONTROL_STATE","features":[317]},{"name":"NDIS_PORT_STATE","features":[317]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[317]},{"name":"NDIS_PORT_TYPE","features":[317]},{"name":"NDIS_PROCESSOR_VENDOR","features":[317]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[317]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[317]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[317]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[317]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[317]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[317]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[317]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[317]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[317]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[317]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[317]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[317]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[317]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[317]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[317]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[317]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[317]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[317]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[317]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[317]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[317]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[317]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[317]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[317]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[317]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[317]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[317]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[317]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[317]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[317]},{"name":"NDIS_QOS_TSA_CBS","features":[317]},{"name":"NDIS_QOS_TSA_ETS","features":[317]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[317]},{"name":"NDIS_QOS_TSA_STRICT","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[317]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[317]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[317]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[317]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[317]},{"name":"NDIS_REQUEST_TYPE","features":[317]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[317]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[317]},{"name":"NDIS_RING_HARD_ERROR","features":[317]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[317]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[317]},{"name":"NDIS_RING_RING_RECOVERY","features":[317]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[317]},{"name":"NDIS_RING_SINGLE_STATION","features":[317]},{"name":"NDIS_RING_SOFT_ERROR","features":[317]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[317]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[317]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[317]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[317]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[317]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[317]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[317]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[317]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[317]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[317]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[317]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[317]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[317]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[317]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[317]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[317]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[317]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[317]},{"name":"NDIS_STATISTICS_INFO","features":[317]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[317]},{"name":"NDIS_STATISTICS_VALUE","features":[317]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[317]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[317]},{"name":"NDIS_SUPPORT_NDIS6","features":[317]},{"name":"NDIS_SUPPORT_NDIS61","features":[317]},{"name":"NDIS_SUPPORT_NDIS620","features":[317]},{"name":"NDIS_SUPPORT_NDIS630","features":[317]},{"name":"NDIS_SUPPORT_NDIS640","features":[317]},{"name":"NDIS_SUPPORT_NDIS650","features":[317]},{"name":"NDIS_SUPPORT_NDIS651","features":[317]},{"name":"NDIS_SUPPORT_NDIS660","features":[317]},{"name":"NDIS_SUPPORT_NDIS670","features":[317]},{"name":"NDIS_SUPPORT_NDIS680","features":[317]},{"name":"NDIS_SUPPORT_NDIS681","features":[317]},{"name":"NDIS_SUPPORT_NDIS682","features":[317]},{"name":"NDIS_SUPPORT_NDIS683","features":[317]},{"name":"NDIS_SUPPORT_NDIS684","features":[317]},{"name":"NDIS_SUPPORT_NDIS685","features":[317]},{"name":"NDIS_SUPPORT_NDIS686","features":[317]},{"name":"NDIS_SUPPORT_NDIS687","features":[317]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[317]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[317]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[317]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[317]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[317]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[317]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[317]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[317]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[317]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[317]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[303,317]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[303,317]},{"name":"NDIS_VAR_DATA_DESC","features":[317]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[317]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[317]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[317]},{"name":"NDIS_WAN_QUALITY","features":[317]},{"name":"NDIS_WLAN_BSSID","features":[317]},{"name":"NDIS_WLAN_BSSID_EX","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[317]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[317]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[317]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[317]},{"name":"NDIS_WMI_EVENT_HEADER","features":[317]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[317]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[317]},{"name":"NDIS_WMI_METHOD_HEADER","features":[317]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[317]},{"name":"NDIS_WMI_OFFLOAD","features":[317]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[317]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[317]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[317]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_WMI_SET_HEADER","features":[317]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[317]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[317]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[317]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[317]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[317]},{"name":"NDK_ADAPTER_FLAG_CQ_INTERRUPT_MODERATION_SUPPORTED","features":[317]},{"name":"NDK_ADAPTER_FLAG_CQ_RESIZE_SUPPORTED","features":[317]},{"name":"NDK_ADAPTER_FLAG_IN_ORDER_DMA_SUPPORTED","features":[317]},{"name":"NDK_ADAPTER_FLAG_LOOPBACK_CONNECTIONS_SUPPORTED","features":[317]},{"name":"NDK_ADAPTER_FLAG_MULTI_ENGINE_SUPPORTED","features":[317]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_LOCAL_INVALIDATE_SUPPORTED","features":[317]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_SINK_NOT_REQUIRED","features":[317]},{"name":"NDK_ADAPTER_INFO","features":[317]},{"name":"NDK_RDMA_TECHNOLOGY","features":[317]},{"name":"NDK_VERSION","features":[317]},{"name":"NETWORK_ADDRESS","features":[317]},{"name":"NETWORK_ADDRESS_IP","features":[317]},{"name":"NETWORK_ADDRESS_IP6","features":[317]},{"name":"NETWORK_ADDRESS_IPX","features":[317]},{"name":"NETWORK_ADDRESS_LIST","features":[317]},{"name":"NET_IFLUID_UNSPECIFIED","features":[317]},{"name":"NET_IF_ACCESS_BROADCAST","features":[317]},{"name":"NET_IF_ACCESS_LOOPBACK","features":[317]},{"name":"NET_IF_ACCESS_MAXIMUM","features":[317]},{"name":"NET_IF_ACCESS_POINT_TO_MULTI_POINT","features":[317]},{"name":"NET_IF_ACCESS_POINT_TO_POINT","features":[317]},{"name":"NET_IF_ACCESS_TYPE","features":[317]},{"name":"NET_IF_ADMIN_STATUS","features":[317]},{"name":"NET_IF_ADMIN_STATUS_DOWN","features":[317]},{"name":"NET_IF_ADMIN_STATUS_TESTING","features":[317]},{"name":"NET_IF_ADMIN_STATUS_UP","features":[317]},{"name":"NET_IF_ALIAS_LH","features":[317]},{"name":"NET_IF_CONNECTION_DEDICATED","features":[317]},{"name":"NET_IF_CONNECTION_DEMAND","features":[317]},{"name":"NET_IF_CONNECTION_MAXIMUM","features":[317]},{"name":"NET_IF_CONNECTION_PASSIVE","features":[317]},{"name":"NET_IF_CONNECTION_TYPE","features":[317]},{"name":"NET_IF_DIRECTION_MAXIMUM","features":[317]},{"name":"NET_IF_DIRECTION_RECEIVEONLY","features":[317]},{"name":"NET_IF_DIRECTION_SENDONLY","features":[317]},{"name":"NET_IF_DIRECTION_SENDRECEIVE","features":[317]},{"name":"NET_IF_DIRECTION_TYPE","features":[317]},{"name":"NET_IF_MEDIA_CONNECT_STATE","features":[317]},{"name":"NET_IF_MEDIA_DUPLEX_STATE","features":[317]},{"name":"NET_IF_OID_COMPARTMENT_ID","features":[317]},{"name":"NET_IF_OID_IF_ALIAS","features":[317]},{"name":"NET_IF_OID_IF_ENTRY","features":[317]},{"name":"NET_IF_OID_NETWORK_GUID","features":[317]},{"name":"NET_IF_OPER_STATUS","features":[317]},{"name":"NET_IF_OPER_STATUS_DORMANT","features":[317]},{"name":"NET_IF_OPER_STATUS_DORMANT_LOW_POWER","features":[317]},{"name":"NET_IF_OPER_STATUS_DORMANT_PAUSED","features":[317]},{"name":"NET_IF_OPER_STATUS_DOWN","features":[317]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_AUTHENTICATED","features":[317]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_MEDIA_CONNECTED","features":[317]},{"name":"NET_IF_OPER_STATUS_LOWER_LAYER_DOWN","features":[317]},{"name":"NET_IF_OPER_STATUS_NOT_PRESENT","features":[317]},{"name":"NET_IF_OPER_STATUS_TESTING","features":[317]},{"name":"NET_IF_OPER_STATUS_UNKNOWN","features":[317]},{"name":"NET_IF_OPER_STATUS_UP","features":[317]},{"name":"NET_IF_RCV_ADDRESS_LH","features":[317]},{"name":"NET_IF_RCV_ADDRESS_TYPE","features":[317]},{"name":"NET_IF_RCV_ADDRESS_TYPE_NON_VOLATILE","features":[317]},{"name":"NET_IF_RCV_ADDRESS_TYPE_OTHER","features":[317]},{"name":"NET_IF_RCV_ADDRESS_TYPE_VOLATILE","features":[317]},{"name":"NET_LUID_LH","features":[317]},{"name":"NET_PHYSICAL_LOCATION_LH","features":[317]},{"name":"NET_SITEID_MAXSYSTEM","features":[317]},{"name":"NET_SITEID_MAXUSER","features":[317]},{"name":"NET_SITEID_UNSPECIFIED","features":[317]},{"name":"NIIF_FILTER_INTERFACE","features":[317]},{"name":"NIIF_HARDWARE_INTERFACE","features":[317]},{"name":"NIIF_NDIS_ENDPOINT_INTERFACE","features":[317]},{"name":"NIIF_NDIS_ISCSI_INTERFACE","features":[317]},{"name":"NIIF_NDIS_RESERVED1","features":[317]},{"name":"NIIF_NDIS_RESERVED2","features":[317]},{"name":"NIIF_NDIS_RESERVED3","features":[317]},{"name":"NIIF_NDIS_RESERVED4","features":[317]},{"name":"NIIF_NDIS_WDM_INTERFACE","features":[317]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[317]},{"name":"Ndis802_11AuthModeMax","features":[317]},{"name":"Ndis802_11AuthModeOpen","features":[317]},{"name":"Ndis802_11AuthModeShared","features":[317]},{"name":"Ndis802_11AuthModeWPA","features":[317]},{"name":"Ndis802_11AuthModeWPA2","features":[317]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[317]},{"name":"Ndis802_11AuthModeWPA3","features":[317]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[317]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[317]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[317]},{"name":"Ndis802_11AuthModeWPANone","features":[317]},{"name":"Ndis802_11AuthModeWPAPSK","features":[317]},{"name":"Ndis802_11AutoUnknown","features":[317]},{"name":"Ndis802_11Automode","features":[317]},{"name":"Ndis802_11DS","features":[317]},{"name":"Ndis802_11Encryption1Enabled","features":[317]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[317]},{"name":"Ndis802_11Encryption2Enabled","features":[317]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[317]},{"name":"Ndis802_11Encryption3Enabled","features":[317]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[317]},{"name":"Ndis802_11EncryptionDisabled","features":[317]},{"name":"Ndis802_11EncryptionNotSupported","features":[317]},{"name":"Ndis802_11FH","features":[317]},{"name":"Ndis802_11IBSS","features":[317]},{"name":"Ndis802_11Infrastructure","features":[317]},{"name":"Ndis802_11InfrastructureMax","features":[317]},{"name":"Ndis802_11MediaStreamOff","features":[317]},{"name":"Ndis802_11MediaStreamOn","features":[317]},{"name":"Ndis802_11NetworkTypeMax","features":[317]},{"name":"Ndis802_11OFDM24","features":[317]},{"name":"Ndis802_11OFDM5","features":[317]},{"name":"Ndis802_11PowerModeCAM","features":[317]},{"name":"Ndis802_11PowerModeFast_PSP","features":[317]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[317]},{"name":"Ndis802_11PowerModeMax","features":[317]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[317]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[317]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[317]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[317]},{"name":"Ndis802_11RadioStatusMax","features":[317]},{"name":"Ndis802_11RadioStatusOn","features":[317]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[317]},{"name":"Ndis802_11ReloadWEPKeys","features":[317]},{"name":"Ndis802_11StatusTypeMax","features":[317]},{"name":"Ndis802_11StatusType_Authentication","features":[317]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[317]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[317]},{"name":"Ndis802_11WEPDisabled","features":[317]},{"name":"Ndis802_11WEPEnabled","features":[317]},{"name":"Ndis802_11WEPKeyAbsent","features":[317]},{"name":"Ndis802_11WEPNotSupported","features":[317]},{"name":"NdisDefinitelyNetworkChange","features":[317]},{"name":"NdisDeviceStateD0","features":[317]},{"name":"NdisDeviceStateD1","features":[317]},{"name":"NdisDeviceStateD2","features":[317]},{"name":"NdisDeviceStateD3","features":[317]},{"name":"NdisDeviceStateMaximum","features":[317]},{"name":"NdisDeviceStateUnspecified","features":[317]},{"name":"NdisFddiRingDetect","features":[317]},{"name":"NdisFddiRingDirected","features":[317]},{"name":"NdisFddiRingIsolated","features":[317]},{"name":"NdisFddiRingNonOperational","features":[317]},{"name":"NdisFddiRingNonOperationalDup","features":[317]},{"name":"NdisFddiRingOperational","features":[317]},{"name":"NdisFddiRingOperationalDup","features":[317]},{"name":"NdisFddiRingTrace","features":[317]},{"name":"NdisFddiStateActive","features":[317]},{"name":"NdisFddiStateBreak","features":[317]},{"name":"NdisFddiStateConnect","features":[317]},{"name":"NdisFddiStateJoin","features":[317]},{"name":"NdisFddiStateMaintenance","features":[317]},{"name":"NdisFddiStateNext","features":[317]},{"name":"NdisFddiStateOff","features":[317]},{"name":"NdisFddiStateSignal","features":[317]},{"name":"NdisFddiStateTrace","features":[317]},{"name":"NdisFddiStateVerify","features":[317]},{"name":"NdisFddiTypeCWrapA","features":[317]},{"name":"NdisFddiTypeCWrapB","features":[317]},{"name":"NdisFddiTypeCWrapS","features":[317]},{"name":"NdisFddiTypeIsolated","features":[317]},{"name":"NdisFddiTypeLocalA","features":[317]},{"name":"NdisFddiTypeLocalAB","features":[317]},{"name":"NdisFddiTypeLocalB","features":[317]},{"name":"NdisFddiTypeLocalS","features":[317]},{"name":"NdisFddiTypeThrough","features":[317]},{"name":"NdisFddiTypeWrapA","features":[317]},{"name":"NdisFddiTypeWrapAB","features":[317]},{"name":"NdisFddiTypeWrapB","features":[317]},{"name":"NdisFddiTypeWrapS","features":[317]},{"name":"NdisHardwareStatusClosing","features":[317]},{"name":"NdisHardwareStatusInitializing","features":[317]},{"name":"NdisHardwareStatusNotReady","features":[317]},{"name":"NdisHardwareStatusReady","features":[317]},{"name":"NdisHardwareStatusReset","features":[317]},{"name":"NdisHashFunctionReserved1","features":[317]},{"name":"NdisHashFunctionReserved2","features":[317]},{"name":"NdisHashFunctionReserved3","features":[317]},{"name":"NdisHashFunctionToeplitz","features":[317]},{"name":"NdisInterruptModerationDisabled","features":[317]},{"name":"NdisInterruptModerationEnabled","features":[317]},{"name":"NdisInterruptModerationNotSupported","features":[317]},{"name":"NdisInterruptModerationUnknown","features":[317]},{"name":"NdisMediaStateConnected","features":[317]},{"name":"NdisMediaStateDisconnected","features":[317]},{"name":"NdisMedium1394","features":[317]},{"name":"NdisMedium802_3","features":[317]},{"name":"NdisMedium802_5","features":[317]},{"name":"NdisMediumArcnet878_2","features":[317]},{"name":"NdisMediumArcnetRaw","features":[317]},{"name":"NdisMediumAtm","features":[317]},{"name":"NdisMediumBpc","features":[317]},{"name":"NdisMediumCoWan","features":[317]},{"name":"NdisMediumDix","features":[317]},{"name":"NdisMediumFddi","features":[317]},{"name":"NdisMediumIP","features":[317]},{"name":"NdisMediumInfiniBand","features":[317]},{"name":"NdisMediumIrda","features":[317]},{"name":"NdisMediumLocalTalk","features":[317]},{"name":"NdisMediumLoopback","features":[317]},{"name":"NdisMediumMax","features":[317]},{"name":"NdisMediumNative802_11","features":[317]},{"name":"NdisMediumTunnel","features":[317]},{"name":"NdisMediumWan","features":[317]},{"name":"NdisMediumWiMAX","features":[317]},{"name":"NdisMediumWirelessWan","features":[317]},{"name":"NdisNetworkChangeFromMediaConnect","features":[317]},{"name":"NdisNetworkChangeMax","features":[317]},{"name":"NdisPauseFunctionsReceiveOnly","features":[317]},{"name":"NdisPauseFunctionsSendAndReceive","features":[317]},{"name":"NdisPauseFunctionsSendOnly","features":[317]},{"name":"NdisPauseFunctionsUnknown","features":[317]},{"name":"NdisPauseFunctionsUnsupported","features":[317]},{"name":"NdisPhysicalMedium1394","features":[317]},{"name":"NdisPhysicalMedium802_3","features":[317]},{"name":"NdisPhysicalMedium802_5","features":[317]},{"name":"NdisPhysicalMediumBluetooth","features":[317]},{"name":"NdisPhysicalMediumCableModem","features":[317]},{"name":"NdisPhysicalMediumDSL","features":[317]},{"name":"NdisPhysicalMediumFibreChannel","features":[317]},{"name":"NdisPhysicalMediumInfiniband","features":[317]},{"name":"NdisPhysicalMediumIrda","features":[317]},{"name":"NdisPhysicalMediumMax","features":[317]},{"name":"NdisPhysicalMediumNative802_11","features":[317]},{"name":"NdisPhysicalMediumNative802_15_4","features":[317]},{"name":"NdisPhysicalMediumOther","features":[317]},{"name":"NdisPhysicalMediumPhoneLine","features":[317]},{"name":"NdisPhysicalMediumPowerLine","features":[317]},{"name":"NdisPhysicalMediumUWB","features":[317]},{"name":"NdisPhysicalMediumUnspecified","features":[317]},{"name":"NdisPhysicalMediumWiMax","features":[317]},{"name":"NdisPhysicalMediumWiredCoWan","features":[317]},{"name":"NdisPhysicalMediumWiredWAN","features":[317]},{"name":"NdisPhysicalMediumWirelessLan","features":[317]},{"name":"NdisPhysicalMediumWirelessWan","features":[317]},{"name":"NdisPortAuthorizationUnknown","features":[317]},{"name":"NdisPortAuthorized","features":[317]},{"name":"NdisPortControlStateControlled","features":[317]},{"name":"NdisPortControlStateUncontrolled","features":[317]},{"name":"NdisPortControlStateUnknown","features":[317]},{"name":"NdisPortReauthorizing","features":[317]},{"name":"NdisPortType8021xSupplicant","features":[317]},{"name":"NdisPortTypeBridge","features":[317]},{"name":"NdisPortTypeMax","features":[317]},{"name":"NdisPortTypeRasConnection","features":[317]},{"name":"NdisPortTypeUndefined","features":[317]},{"name":"NdisPortUnauthorized","features":[317]},{"name":"NdisPossibleNetworkChange","features":[317]},{"name":"NdisProcessorVendorAuthenticAMD","features":[317]},{"name":"NdisProcessorVendorGenuinIntel","features":[317]},{"name":"NdisProcessorVendorGenuineIntel","features":[317]},{"name":"NdisProcessorVendorUnknown","features":[317]},{"name":"NdisRequestClose","features":[317]},{"name":"NdisRequestGeneric1","features":[317]},{"name":"NdisRequestGeneric2","features":[317]},{"name":"NdisRequestGeneric3","features":[317]},{"name":"NdisRequestGeneric4","features":[317]},{"name":"NdisRequestOpen","features":[317]},{"name":"NdisRequestQueryInformation","features":[317]},{"name":"NdisRequestQueryStatistics","features":[317]},{"name":"NdisRequestReset","features":[317]},{"name":"NdisRequestSend","features":[317]},{"name":"NdisRequestSetInformation","features":[317]},{"name":"NdisRequestTransferData","features":[317]},{"name":"NdisRingStateClosed","features":[317]},{"name":"NdisRingStateClosing","features":[317]},{"name":"NdisRingStateOpenFailure","features":[317]},{"name":"NdisRingStateOpened","features":[317]},{"name":"NdisRingStateOpening","features":[317]},{"name":"NdisRingStateRingFailure","features":[317]},{"name":"NdisWanErrorControl","features":[317]},{"name":"NdisWanHeaderEthernet","features":[317]},{"name":"NdisWanHeaderNative","features":[317]},{"name":"NdisWanMediumAgileVPN","features":[317]},{"name":"NdisWanMediumAtm","features":[317]},{"name":"NdisWanMediumFrameRelay","features":[317]},{"name":"NdisWanMediumGre","features":[317]},{"name":"NdisWanMediumHub","features":[317]},{"name":"NdisWanMediumIrda","features":[317]},{"name":"NdisWanMediumIsdn","features":[317]},{"name":"NdisWanMediumL2TP","features":[317]},{"name":"NdisWanMediumPPTP","features":[317]},{"name":"NdisWanMediumParallel","features":[317]},{"name":"NdisWanMediumPppoe","features":[317]},{"name":"NdisWanMediumSSTP","features":[317]},{"name":"NdisWanMediumSW56K","features":[317]},{"name":"NdisWanMediumSerial","features":[317]},{"name":"NdisWanMediumSonet","features":[317]},{"name":"NdisWanMediumSubTypeMax","features":[317]},{"name":"NdisWanMediumX_25","features":[317]},{"name":"NdisWanRaw","features":[317]},{"name":"NdisWanReliable","features":[317]},{"name":"NdkInfiniBand","features":[317]},{"name":"NdkMaxTechnology","features":[317]},{"name":"NdkRoCE","features":[317]},{"name":"NdkRoCEv2","features":[317]},{"name":"NdkUndefined","features":[317]},{"name":"NdkiWarp","features":[317]},{"name":"OFFLOAD_ALGO_INFO","features":[317]},{"name":"OFFLOAD_CONF_ALGO","features":[317]},{"name":"OFFLOAD_INBOUND_SA","features":[317]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[317]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[303,317]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[303,317]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[317]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[303,317]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[303,317]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[317]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[317]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[317]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[317]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[317]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[317]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[317]},{"name":"OFFLOAD_MAX_SAS","features":[317]},{"name":"OFFLOAD_OPERATION_E","features":[317]},{"name":"OFFLOAD_OUTBOUND_SA","features":[317]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[317]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[317]},{"name":"OID_1394_VC_INFO","features":[317]},{"name":"OID_802_11_ADD_KEY","features":[317]},{"name":"OID_802_11_ADD_WEP","features":[317]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[317]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[317]},{"name":"OID_802_11_BSSID","features":[317]},{"name":"OID_802_11_BSSID_LIST","features":[317]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[317]},{"name":"OID_802_11_CAPABILITY","features":[317]},{"name":"OID_802_11_CONFIGURATION","features":[317]},{"name":"OID_802_11_DESIRED_RATES","features":[317]},{"name":"OID_802_11_DISASSOCIATE","features":[317]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[317]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[317]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[317]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[317]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[317]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[317]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[317]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[317]},{"name":"OID_802_11_PMKID","features":[317]},{"name":"OID_802_11_POWER_MODE","features":[317]},{"name":"OID_802_11_PRIVACY_FILTER","features":[317]},{"name":"OID_802_11_RADIO_STATUS","features":[317]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[317]},{"name":"OID_802_11_REMOVE_KEY","features":[317]},{"name":"OID_802_11_REMOVE_WEP","features":[317]},{"name":"OID_802_11_RSSI","features":[317]},{"name":"OID_802_11_RSSI_TRIGGER","features":[317]},{"name":"OID_802_11_RTS_THRESHOLD","features":[317]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[317]},{"name":"OID_802_11_SSID","features":[317]},{"name":"OID_802_11_STATISTICS","features":[317]},{"name":"OID_802_11_SUPPORTED_RATES","features":[317]},{"name":"OID_802_11_TEST","features":[317]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[317]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[317]},{"name":"OID_802_11_WEP_STATUS","features":[317]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[317]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[317]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[317]},{"name":"OID_802_3_MAC_OPTIONS","features":[317]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[317]},{"name":"OID_802_3_MULTICAST_LIST","features":[317]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[317]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[317]},{"name":"OID_802_3_RCV_OVERRUN","features":[317]},{"name":"OID_802_3_XMIT_DEFERRED","features":[317]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[317]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[317]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[317]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[317]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[317]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[317]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[317]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[317]},{"name":"OID_802_5_AC_ERRORS","features":[317]},{"name":"OID_802_5_BURST_ERRORS","features":[317]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[317]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[317]},{"name":"OID_802_5_CURRENT_GROUP","features":[317]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[317]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[317]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[317]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[317]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[317]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[317]},{"name":"OID_802_5_LINE_ERRORS","features":[317]},{"name":"OID_802_5_LOST_FRAMES","features":[317]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[317]},{"name":"OID_802_5_TOKEN_ERRORS","features":[317]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[317]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[317]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[317]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[317]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[317]},{"name":"OID_ATM_ASSIGNED_VPI","features":[317]},{"name":"OID_ATM_CALL_ALERTING","features":[317]},{"name":"OID_ATM_CALL_NOTIFY","features":[317]},{"name":"OID_ATM_CALL_PROCEEDING","features":[317]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[317]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[317]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[317]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[317]},{"name":"OID_ATM_ILMI_VPIVCI","features":[317]},{"name":"OID_ATM_LECS_ADDRESS","features":[317]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[317]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[317]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[317]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[317]},{"name":"OID_ATM_PARTY_ALERTING","features":[317]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[317]},{"name":"OID_ATM_RCV_CELLS_OK","features":[317]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[317]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[317]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[317]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[317]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[317]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[317]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[317]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[317]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[317]},{"name":"OID_CO_ADDRESS_CHANGE","features":[317]},{"name":"OID_CO_ADD_ADDRESS","features":[317]},{"name":"OID_CO_ADD_PVC","features":[317]},{"name":"OID_CO_AF_CLOSE","features":[317]},{"name":"OID_CO_DELETE_ADDRESS","features":[317]},{"name":"OID_CO_DELETE_PVC","features":[317]},{"name":"OID_CO_GET_ADDRESSES","features":[317]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[317]},{"name":"OID_CO_SIGNALING_DISABLED","features":[317]},{"name":"OID_CO_SIGNALING_ENABLED","features":[317]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[317]},{"name":"OID_CO_TAPI_CM_CAPS","features":[317]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[317]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[317]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[317]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[317]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[317]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[317]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[317]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[317]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[317]},{"name":"OID_FDDI_FRAMES_LOST","features":[317]},{"name":"OID_FDDI_FRAME_ERRORS","features":[317]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[317]},{"name":"OID_FDDI_IF_DESCR","features":[317]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[317]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[317]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[317]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[317]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[317]},{"name":"OID_FDDI_IF_MTU","features":[317]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[317]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[317]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[317]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[317]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[317]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[317]},{"name":"OID_FDDI_IF_SPECIFIC","features":[317]},{"name":"OID_FDDI_IF_SPEED","features":[317]},{"name":"OID_FDDI_IF_TYPE","features":[317]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[317]},{"name":"OID_FDDI_LCT_FAILURES","features":[317]},{"name":"OID_FDDI_LEM_REJECTS","features":[317]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[317]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[317]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[317]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[317]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[317]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[317]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[317]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[317]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[317]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[317]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[317]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[317]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[317]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[317]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[317]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[317]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[317]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[317]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[317]},{"name":"OID_FDDI_MAC_INDEX","features":[317]},{"name":"OID_FDDI_MAC_LATE_CT","features":[317]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[317]},{"name":"OID_FDDI_MAC_LOST_CT","features":[317]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[317]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[317]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[317]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[317]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[317]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[317]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[317]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[317]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[317]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[317]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[317]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[317]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[317]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[317]},{"name":"OID_FDDI_MAC_T_MAX","features":[317]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[317]},{"name":"OID_FDDI_MAC_T_NEG","features":[317]},{"name":"OID_FDDI_MAC_T_PRI0","features":[317]},{"name":"OID_FDDI_MAC_T_PRI1","features":[317]},{"name":"OID_FDDI_MAC_T_PRI2","features":[317]},{"name":"OID_FDDI_MAC_T_PRI3","features":[317]},{"name":"OID_FDDI_MAC_T_PRI4","features":[317]},{"name":"OID_FDDI_MAC_T_PRI5","features":[317]},{"name":"OID_FDDI_MAC_T_PRI6","features":[317]},{"name":"OID_FDDI_MAC_T_REQ","features":[317]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[317]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[317]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[317]},{"name":"OID_FDDI_PATH_INDEX","features":[317]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[317]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[317]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[317]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[317]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[317]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[317]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[317]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[317]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[317]},{"name":"OID_FDDI_PORT_ACTION","features":[317]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[317]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[317]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[317]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[317]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[317]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[317]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[317]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[317]},{"name":"OID_FDDI_PORT_INDEX","features":[317]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[317]},{"name":"OID_FDDI_PORT_LEM_CT","features":[317]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[317]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[317]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[317]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[317]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[317]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[317]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[317]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[317]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[317]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[317]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[317]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[317]},{"name":"OID_FDDI_PORT_PC_LS","features":[317]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[317]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[317]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[317]},{"name":"OID_FDDI_RING_MGT_STATE","features":[317]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[317]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[317]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[317]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[317]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[317]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[317]},{"name":"OID_FDDI_SMT_CF_STATE","features":[317]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[317]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[317]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[317]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[317]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[317]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[317]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_MAC_CT","features":[317]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[317]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[317]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[317]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[317]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[317]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[317]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[317]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[317]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[317]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[317]},{"name":"OID_FDDI_SMT_STATION_ID","features":[317]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[317]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[317]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[317]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[317]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[317]},{"name":"OID_FDDI_SMT_USER_DATA","features":[317]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[317]},{"name":"OID_FFP_ADAPTER_STATS","features":[317]},{"name":"OID_FFP_CONTROL","features":[317]},{"name":"OID_FFP_DATA","features":[317]},{"name":"OID_FFP_DRIVER_STATS","features":[317]},{"name":"OID_FFP_FLUSH","features":[317]},{"name":"OID_FFP_PARAMS","features":[317]},{"name":"OID_FFP_SUPPORT","features":[317]},{"name":"OID_GEN_ADMIN_STATUS","features":[317]},{"name":"OID_GEN_ALIAS","features":[317]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[317]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[317]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[317]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[317]},{"name":"OID_GEN_BYTES_RCV","features":[317]},{"name":"OID_GEN_BYTES_XMIT","features":[317]},{"name":"OID_GEN_CO_BYTES_RCV","features":[317]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[317]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[317]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[317]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[317]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[317]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[317]},{"name":"OID_GEN_CO_LINK_SPEED","features":[317]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[317]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[317]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[317]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[317]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[317]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[317]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[317]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[317]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[317]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[317]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[317]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[317]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[317]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[317]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[317]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_CO_VENDOR_ID","features":[317]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[317]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[317]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[317]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[317]},{"name":"OID_GEN_DEVICE_PROFILE","features":[317]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[317]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[317]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[317]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[317]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[317]},{"name":"OID_GEN_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[317]},{"name":"OID_GEN_FRIENDLY_NAME","features":[317]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[317]},{"name":"OID_GEN_GET_TIME_CAPS","features":[317]},{"name":"OID_GEN_HARDWARE_STATUS","features":[317]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[317]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[317]},{"name":"OID_GEN_INIT_TIME_MS","features":[317]},{"name":"OID_GEN_INTERFACE_INFO","features":[317]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[317]},{"name":"OID_GEN_IP_OPER_STATUS","features":[317]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[317]},{"name":"OID_GEN_LAST_CHANGE","features":[317]},{"name":"OID_GEN_LINK_PARAMETERS","features":[317]},{"name":"OID_GEN_LINK_SPEED","features":[317]},{"name":"OID_GEN_LINK_SPEED_EX","features":[317]},{"name":"OID_GEN_LINK_STATE","features":[317]},{"name":"OID_GEN_MACHINE_NAME","features":[317]},{"name":"OID_GEN_MAC_ADDRESS","features":[317]},{"name":"OID_GEN_MAC_OPTIONS","features":[317]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[317]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[317]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[317]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[317]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[317]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[317]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[317]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[317]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[317]},{"name":"OID_GEN_MEDIA_IN_USE","features":[317]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[317]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[317]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[317]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[317]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[317]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[317]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[317]},{"name":"OID_GEN_NETCARD_LOAD","features":[317]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[317]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[317]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[317]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[317]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[317]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[317]},{"name":"OID_GEN_PORT_STATE","features":[317]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[317]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[317]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[317]},{"name":"OID_GEN_RCV_DISCARDS","features":[317]},{"name":"OID_GEN_RCV_ERROR","features":[317]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[317]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[317]},{"name":"OID_GEN_RCV_OK","features":[317]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[317]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[317]},{"name":"OID_GEN_RECEIVE_HASH","features":[317]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[317]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[317]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[317]},{"name":"OID_GEN_RESET_COUNTS","features":[317]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[317]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[317]},{"name":"OID_GEN_STATISTICS","features":[317]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[317]},{"name":"OID_GEN_SUPPORTED_LIST","features":[317]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[317]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[317]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[317]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[317]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[317]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[317]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[317]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_VENDOR_ID","features":[317]},{"name":"OID_GEN_VLAN_ID","features":[317]},{"name":"OID_GEN_XMIT_DISCARDS","features":[317]},{"name":"OID_GEN_XMIT_ERROR","features":[317]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[317]},{"name":"OID_GEN_XMIT_OK","features":[317]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[317]},{"name":"OID_GFT_COUNTER_VALUES","features":[317]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[317]},{"name":"OID_GFT_CREATE_TABLE","features":[317]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[317]},{"name":"OID_GFT_DELETE_PROFILE","features":[317]},{"name":"OID_GFT_DELETE_TABLE","features":[317]},{"name":"OID_GFT_ENUM_COUNTERS","features":[317]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[317]},{"name":"OID_GFT_ENUM_PROFILES","features":[317]},{"name":"OID_GFT_ENUM_TABLES","features":[317]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[317]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[317]},{"name":"OID_GFT_FREE_COUNTERS","features":[317]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[317]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[317]},{"name":"OID_GFT_STATISTICS","features":[317]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[317]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[317]},{"name":"OID_IP4_OFFLOAD_STATS","features":[317]},{"name":"OID_IP6_OFFLOAD_STATS","features":[317]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[317]},{"name":"OID_IRDA_LINK_SPEED","features":[317]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[317]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[317]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[317]},{"name":"OID_IRDA_MEDIA_BUSY","features":[317]},{"name":"OID_IRDA_RATE_SNIFF","features":[317]},{"name":"OID_IRDA_RECEIVING","features":[317]},{"name":"OID_IRDA_RESERVED1","features":[317]},{"name":"OID_IRDA_RESERVED2","features":[317]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[317]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[317]},{"name":"OID_IRDA_UNICAST_LIST","features":[317]},{"name":"OID_KDNET_ADD_PF","features":[317]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[317]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[317]},{"name":"OID_KDNET_REMOVE_PF","features":[317]},{"name":"OID_LTALK_COLLISIONS","features":[317]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[317]},{"name":"OID_LTALK_DEFERS","features":[317]},{"name":"OID_LTALK_FCS_ERRORS","features":[317]},{"name":"OID_LTALK_IN_BROADCASTS","features":[317]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[317]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[317]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[317]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[317]},{"name":"OID_NDK_CONNECTIONS","features":[317]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[317]},{"name":"OID_NDK_SET_STATE","features":[317]},{"name":"OID_NDK_STATISTICS","features":[317]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[317]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[317]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[317]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[317]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[317]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[317]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[317]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[317]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[317]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[317]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[317]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[317]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[317]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[317]},{"name":"OID_PD_CLOSE_PROVIDER","features":[317]},{"name":"OID_PD_OPEN_PROVIDER","features":[317]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[317]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[317]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[317]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[317]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_PM_PARAMETERS","features":[317]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[317]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[317]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[317]},{"name":"OID_PM_RESERVED_1","features":[317]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[317]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[317]},{"name":"OID_PNP_CAPABILITIES","features":[317]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[317]},{"name":"OID_PNP_QUERY_POWER","features":[317]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[317]},{"name":"OID_PNP_SET_POWER","features":[317]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[317]},{"name":"OID_PNP_WAKE_UP_OK","features":[317]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[317]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[317]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[317]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[317]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[317]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[317]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[317]},{"name":"OID_QOS_PARAMETERS","features":[317]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[317]},{"name":"OID_QOS_RESERVED1","features":[317]},{"name":"OID_QOS_RESERVED10","features":[317]},{"name":"OID_QOS_RESERVED11","features":[317]},{"name":"OID_QOS_RESERVED12","features":[317]},{"name":"OID_QOS_RESERVED13","features":[317]},{"name":"OID_QOS_RESERVED14","features":[317]},{"name":"OID_QOS_RESERVED15","features":[317]},{"name":"OID_QOS_RESERVED16","features":[317]},{"name":"OID_QOS_RESERVED17","features":[317]},{"name":"OID_QOS_RESERVED18","features":[317]},{"name":"OID_QOS_RESERVED19","features":[317]},{"name":"OID_QOS_RESERVED2","features":[317]},{"name":"OID_QOS_RESERVED20","features":[317]},{"name":"OID_QOS_RESERVED3","features":[317]},{"name":"OID_QOS_RESERVED4","features":[317]},{"name":"OID_QOS_RESERVED5","features":[317]},{"name":"OID_QOS_RESERVED6","features":[317]},{"name":"OID_QOS_RESERVED7","features":[317]},{"name":"OID_QOS_RESERVED8","features":[317]},{"name":"OID_QOS_RESERVED9","features":[317]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[317]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[317]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[317]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[317]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[317]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[317]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[317]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[317]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[317]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[317]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[317]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[317]},{"name":"OID_SRIOV_CONFIG_STATE","features":[317]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[317]},{"name":"OID_SRIOV_PF_LUID","features":[317]},{"name":"OID_SRIOV_PROBED_BARS","features":[317]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[317]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[317]},{"name":"OID_SRIOV_RESET_VF","features":[317]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[317]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[317]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[317]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[317]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[317]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[317]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[317]},{"name":"OID_SWITCH_NIC_ARRAY","features":[317]},{"name":"OID_SWITCH_NIC_CONNECT","features":[317]},{"name":"OID_SWITCH_NIC_CREATE","features":[317]},{"name":"OID_SWITCH_NIC_DELETE","features":[317]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[317]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[317]},{"name":"OID_SWITCH_NIC_REQUEST","features":[317]},{"name":"OID_SWITCH_NIC_RESTORE","features":[317]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[317]},{"name":"OID_SWITCH_NIC_RESUME","features":[317]},{"name":"OID_SWITCH_NIC_SAVE","features":[317]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[317]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[317]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[317]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[317]},{"name":"OID_SWITCH_NIC_UPDATED","features":[317]},{"name":"OID_SWITCH_PARAMETERS","features":[317]},{"name":"OID_SWITCH_PORT_ARRAY","features":[317]},{"name":"OID_SWITCH_PORT_CREATE","features":[317]},{"name":"OID_SWITCH_PORT_DELETE","features":[317]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[317]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[317]},{"name":"OID_SWITCH_PORT_UPDATED","features":[317]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[317]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[317]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[317]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[317]},{"name":"OID_TAPI_ACCEPT","features":[317]},{"name":"OID_TAPI_ANSWER","features":[317]},{"name":"OID_TAPI_CLOSE","features":[317]},{"name":"OID_TAPI_CLOSE_CALL","features":[317]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[317]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[317]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[317]},{"name":"OID_TAPI_DIAL","features":[317]},{"name":"OID_TAPI_DROP","features":[317]},{"name":"OID_TAPI_GATHER_DIGITS","features":[317]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[317]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[317]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[317]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[317]},{"name":"OID_TAPI_GET_CALL_INFO","features":[317]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[317]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[317]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[317]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[317]},{"name":"OID_TAPI_GET_ID","features":[317]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[317]},{"name":"OID_TAPI_MAKE_CALL","features":[317]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[317]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[317]},{"name":"OID_TAPI_OPEN","features":[317]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[317]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[317]},{"name":"OID_TAPI_SECURE_CALL","features":[317]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[317]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[317]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[317]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[317]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[317]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[317]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[317]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[317]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[317]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[317]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[317]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[317]},{"name":"OID_TCP_RSC_STATISTICS","features":[317]},{"name":"OID_TCP_SAN_SUPPORT","features":[317]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[317]},{"name":"OID_TCP_TASK_OFFLOAD","features":[317]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[317]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[317]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[317]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[317]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[317]},{"name":"OID_VLAN_RESERVED1","features":[317]},{"name":"OID_VLAN_RESERVED2","features":[317]},{"name":"OID_VLAN_RESERVED3","features":[317]},{"name":"OID_VLAN_RESERVED4","features":[317]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[317]},{"name":"OID_WAN_CO_GET_INFO","features":[317]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[317]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[317]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[317]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[317]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[317]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[317]},{"name":"OID_WAN_GET_COMP_INFO","features":[317]},{"name":"OID_WAN_GET_INFO","features":[317]},{"name":"OID_WAN_GET_LINK_INFO","features":[317]},{"name":"OID_WAN_GET_STATS_INFO","features":[317]},{"name":"OID_WAN_HEADER_FORMAT","features":[317]},{"name":"OID_WAN_LINE_COUNT","features":[317]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[317]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[317]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[317]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[317]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[317]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[317]},{"name":"OID_WAN_SET_COMP_INFO","features":[317]},{"name":"OID_WAN_SET_LINK_INFO","features":[317]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[317]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[317]},{"name":"OID_WWAN_CONNECT","features":[317]},{"name":"OID_WWAN_CREATE_MAC","features":[317]},{"name":"OID_WWAN_DELETE_MAC","features":[317]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[317]},{"name":"OID_WWAN_DEVICE_CAPS","features":[317]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[317]},{"name":"OID_WWAN_DEVICE_RESET","features":[317]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[317]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[317]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[317]},{"name":"OID_WWAN_DRIVER_CAPS","features":[317]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[317]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[317]},{"name":"OID_WWAN_HOME_PROVIDER","features":[317]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[317]},{"name":"OID_WWAN_LOCATION_STATE","features":[317]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[317]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[317]},{"name":"OID_WWAN_MBIM_VERSION","features":[317]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[317]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[317]},{"name":"OID_WWAN_MPDP","features":[317]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[317]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[317]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[317]},{"name":"OID_WWAN_NITZ","features":[317]},{"name":"OID_WWAN_PACKET_SERVICE","features":[317]},{"name":"OID_WWAN_PCO","features":[317]},{"name":"OID_WWAN_PIN","features":[317]},{"name":"OID_WWAN_PIN_EX","features":[317]},{"name":"OID_WWAN_PIN_EX2","features":[317]},{"name":"OID_WWAN_PIN_LIST","features":[317]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[317]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[317]},{"name":"OID_WWAN_PRESHUTDOWN","features":[317]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[317]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[317]},{"name":"OID_WWAN_RADIO_STATE","features":[317]},{"name":"OID_WWAN_READY_INFO","features":[317]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[317]},{"name":"OID_WWAN_REGISTER_STATE","features":[317]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[317]},{"name":"OID_WWAN_SAR_CONFIG","features":[317]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[317]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[317]},{"name":"OID_WWAN_SIGNAL_STATE","features":[317]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[317]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[317]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[317]},{"name":"OID_WWAN_SMS_DELETE","features":[317]},{"name":"OID_WWAN_SMS_READ","features":[317]},{"name":"OID_WWAN_SMS_SEND","features":[317]},{"name":"OID_WWAN_SMS_STATUS","features":[317]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[317]},{"name":"OID_WWAN_SYS_CAPS","features":[317]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[317]},{"name":"OID_WWAN_UE_POLICY","features":[317]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[317]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[317]},{"name":"OID_WWAN_UICC_APDU","features":[317]},{"name":"OID_WWAN_UICC_APP_LIST","features":[317]},{"name":"OID_WWAN_UICC_ATR","features":[317]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[317]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[317]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[317]},{"name":"OID_WWAN_UICC_RESET","features":[317]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[317]},{"name":"OID_WWAN_USSD","features":[317]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[317]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[317]},{"name":"OID_XBOX_ACC_RESERVED0","features":[317]},{"name":"PMKID_CANDIDATE","features":[317]},{"name":"READABLE_LOCAL_CLOCK","features":[317]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[317]},{"name":"TIMED_SEND_CAPABLE","features":[317]},{"name":"TIME_STAMP_CAPABLE","features":[317]},{"name":"TRANSPORT_HEADER_OFFSET","features":[317]},{"name":"TUNNEL_TYPE","features":[317]},{"name":"TUNNEL_TYPE_6TO4","features":[317]},{"name":"TUNNEL_TYPE_DIRECT","features":[317]},{"name":"TUNNEL_TYPE_IPHTTPS","features":[317]},{"name":"TUNNEL_TYPE_ISATAP","features":[317]},{"name":"TUNNEL_TYPE_NONE","features":[317]},{"name":"TUNNEL_TYPE_OTHER","features":[317]},{"name":"TUNNEL_TYPE_TEREDO","features":[317]},{"name":"UDP_ENCAP_TYPE","features":[317]},{"name":"UNSPECIFIED_NETWORK_GUID","features":[317]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[317]},{"name":"fNDIS_GUID_ALLOW_READ","features":[317]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[317]},{"name":"fNDIS_GUID_ANSI_STRING","features":[317]},{"name":"fNDIS_GUID_ARRAY","features":[317]},{"name":"fNDIS_GUID_METHOD","features":[317]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[317]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[317]},{"name":"fNDIS_GUID_TO_OID","features":[317]},{"name":"fNDIS_GUID_TO_STATUS","features":[317]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[317]}],"450":[{"name":"ACTION_HEADER","features":[445]},{"name":"ADAPTER_STATUS","features":[445]},{"name":"ALL_TRANSPORTS","features":[445]},{"name":"ASYNCH","features":[445]},{"name":"CALL_PENDING","features":[445]},{"name":"DEREGISTERED","features":[445]},{"name":"DUPLICATE","features":[445]},{"name":"DUPLICATE_DEREG","features":[445]},{"name":"FIND_NAME_BUFFER","features":[445]},{"name":"FIND_NAME_HEADER","features":[445]},{"name":"GROUP_NAME","features":[445]},{"name":"HANGUP_COMPLETE","features":[445]},{"name":"HANGUP_PENDING","features":[445]},{"name":"LANA_ENUM","features":[445]},{"name":"LISTEN_OUTSTANDING","features":[445]},{"name":"MAX_LANA","features":[445]},{"name":"MS_NBF","features":[445]},{"name":"NAME_BUFFER","features":[445]},{"name":"NAME_FLAGS_MASK","features":[445]},{"name":"NCB","features":[303,445]},{"name":"NCB","features":[303,445]},{"name":"NCBACTION","features":[445]},{"name":"NCBADDGRNAME","features":[445]},{"name":"NCBADDNAME","features":[445]},{"name":"NCBASTAT","features":[445]},{"name":"NCBCALL","features":[445]},{"name":"NCBCANCEL","features":[445]},{"name":"NCBCHAINSEND","features":[445]},{"name":"NCBCHAINSENDNA","features":[445]},{"name":"NCBDELNAME","features":[445]},{"name":"NCBDGRECV","features":[445]},{"name":"NCBDGRECVBC","features":[445]},{"name":"NCBDGSEND","features":[445]},{"name":"NCBDGSENDBC","features":[445]},{"name":"NCBENUM","features":[445]},{"name":"NCBFINDNAME","features":[445]},{"name":"NCBHANGUP","features":[445]},{"name":"NCBLANSTALERT","features":[445]},{"name":"NCBLISTEN","features":[445]},{"name":"NCBNAMSZ","features":[445]},{"name":"NCBRECV","features":[445]},{"name":"NCBRECVANY","features":[445]},{"name":"NCBRESET","features":[445]},{"name":"NCBSEND","features":[445]},{"name":"NCBSENDNA","features":[445]},{"name":"NCBSSTAT","features":[445]},{"name":"NCBTRACE","features":[445]},{"name":"NCBUNLINK","features":[445]},{"name":"NRC_ACTSES","features":[445]},{"name":"NRC_BADDR","features":[445]},{"name":"NRC_BRIDGE","features":[445]},{"name":"NRC_BUFLEN","features":[445]},{"name":"NRC_CANCEL","features":[445]},{"name":"NRC_CANOCCR","features":[445]},{"name":"NRC_CMDCAN","features":[445]},{"name":"NRC_CMDTMO","features":[445]},{"name":"NRC_DUPENV","features":[445]},{"name":"NRC_DUPNAME","features":[445]},{"name":"NRC_ENVNOTDEF","features":[445]},{"name":"NRC_GOODRET","features":[445]},{"name":"NRC_IFBUSY","features":[445]},{"name":"NRC_ILLCMD","features":[445]},{"name":"NRC_ILLNN","features":[445]},{"name":"NRC_INCOMP","features":[445]},{"name":"NRC_INUSE","features":[445]},{"name":"NRC_INVADDRESS","features":[445]},{"name":"NRC_INVDDID","features":[445]},{"name":"NRC_LOCKFAIL","features":[445]},{"name":"NRC_LOCTFUL","features":[445]},{"name":"NRC_MAXAPPS","features":[445]},{"name":"NRC_NAMCONF","features":[445]},{"name":"NRC_NAMERR","features":[445]},{"name":"NRC_NAMTFUL","features":[445]},{"name":"NRC_NOCALL","features":[445]},{"name":"NRC_NORES","features":[445]},{"name":"NRC_NORESOURCES","features":[445]},{"name":"NRC_NOSAPS","features":[445]},{"name":"NRC_NOWILD","features":[445]},{"name":"NRC_OPENERR","features":[445]},{"name":"NRC_OSRESNOTAV","features":[445]},{"name":"NRC_PENDING","features":[445]},{"name":"NRC_REMTFUL","features":[445]},{"name":"NRC_SABORT","features":[445]},{"name":"NRC_SCLOSED","features":[445]},{"name":"NRC_SNUMOUT","features":[445]},{"name":"NRC_SYSTEM","features":[445]},{"name":"NRC_TOOMANY","features":[445]},{"name":"Netbios","features":[303,445]},{"name":"REGISTERED","features":[445]},{"name":"REGISTERING","features":[445]},{"name":"SESSION_ABORTED","features":[445]},{"name":"SESSION_BUFFER","features":[445]},{"name":"SESSION_ESTABLISHED","features":[445]},{"name":"SESSION_HEADER","features":[445]},{"name":"UNIQUE_NAME","features":[445]}],"451":[{"name":"AA_AUDIT_ALL","features":[446]},{"name":"AA_A_ACL","features":[446]},{"name":"AA_A_CREATE","features":[446]},{"name":"AA_A_DELETE","features":[446]},{"name":"AA_A_OPEN","features":[446]},{"name":"AA_A_OWNER","features":[446]},{"name":"AA_A_WRITE","features":[446]},{"name":"AA_CLOSE","features":[446]},{"name":"AA_F_ACL","features":[446]},{"name":"AA_F_CREATE","features":[446]},{"name":"AA_F_DELETE","features":[446]},{"name":"AA_F_OPEN","features":[446]},{"name":"AA_F_WRITE","features":[446]},{"name":"AA_S_ACL","features":[446]},{"name":"AA_S_CREATE","features":[446]},{"name":"AA_S_DELETE","features":[446]},{"name":"AA_S_OPEN","features":[446]},{"name":"AA_S_WRITE","features":[446]},{"name":"ACCESS_ACCESS_LIST_PARMNUM","features":[446]},{"name":"ACCESS_ATTR_PARMNUM","features":[446]},{"name":"ACCESS_AUDIT","features":[446]},{"name":"ACCESS_COUNT_PARMNUM","features":[446]},{"name":"ACCESS_FAIL_ACL","features":[446]},{"name":"ACCESS_FAIL_DELETE","features":[446]},{"name":"ACCESS_FAIL_MASK","features":[446]},{"name":"ACCESS_FAIL_OPEN","features":[446]},{"name":"ACCESS_FAIL_SHIFT","features":[446]},{"name":"ACCESS_FAIL_WRITE","features":[446]},{"name":"ACCESS_GROUP","features":[446]},{"name":"ACCESS_INFO_0","features":[446]},{"name":"ACCESS_INFO_1","features":[446]},{"name":"ACCESS_INFO_1002","features":[446]},{"name":"ACCESS_LETTERS","features":[446]},{"name":"ACCESS_LIST","features":[446]},{"name":"ACCESS_NONE","features":[446]},{"name":"ACCESS_RESOURCE_NAME_PARMNUM","features":[446]},{"name":"ACCESS_SUCCESS_ACL","features":[446]},{"name":"ACCESS_SUCCESS_DELETE","features":[446]},{"name":"ACCESS_SUCCESS_MASK","features":[446]},{"name":"ACCESS_SUCCESS_OPEN","features":[446]},{"name":"ACCESS_SUCCESS_WRITE","features":[446]},{"name":"ACTION_ADMINUNLOCK","features":[446]},{"name":"ACTION_LOCKOUT","features":[446]},{"name":"ADMIN_OTHER_INFO","features":[446]},{"name":"AE_ACCLIM","features":[446]},{"name":"AE_ACCLIMITEXCD","features":[446]},{"name":"AE_ACCRESTRICT","features":[446]},{"name":"AE_ACLMOD","features":[446]},{"name":"AE_ACLMOD","features":[446]},{"name":"AE_ACLMODFAIL","features":[446]},{"name":"AE_ADD","features":[446]},{"name":"AE_ADMIN","features":[446]},{"name":"AE_ADMINDIS","features":[446]},{"name":"AE_ADMINPRIVREQD","features":[446]},{"name":"AE_ADMIN_CLOSE","features":[446]},{"name":"AE_AUTODIS","features":[446]},{"name":"AE_BADPW","features":[446]},{"name":"AE_CLOSEFILE","features":[446]},{"name":"AE_CLOSEFILE","features":[446]},{"name":"AE_CONNREJ","features":[446]},{"name":"AE_CONNREJ","features":[446]},{"name":"AE_CONNSTART","features":[446]},{"name":"AE_CONNSTART","features":[446]},{"name":"AE_CONNSTOP","features":[446]},{"name":"AE_CONNSTOP","features":[446]},{"name":"AE_DELETE","features":[446]},{"name":"AE_ERROR","features":[446]},{"name":"AE_GENERAL","features":[446]},{"name":"AE_GENERIC","features":[446]},{"name":"AE_GENERIC_TYPE","features":[446]},{"name":"AE_GUEST","features":[446]},{"name":"AE_LIM_DELETED","features":[446]},{"name":"AE_LIM_DISABLED","features":[446]},{"name":"AE_LIM_EXPIRED","features":[446]},{"name":"AE_LIM_INVAL_WKSTA","features":[446]},{"name":"AE_LIM_LOGONHOURS","features":[446]},{"name":"AE_LIM_UNKNOWN","features":[446]},{"name":"AE_LOCKOUT","features":[446]},{"name":"AE_LOCKOUT","features":[446]},{"name":"AE_MOD","features":[446]},{"name":"AE_NETLOGDENIED","features":[446]},{"name":"AE_NETLOGOFF","features":[446]},{"name":"AE_NETLOGOFF","features":[446]},{"name":"AE_NETLOGON","features":[446]},{"name":"AE_NETLOGON","features":[446]},{"name":"AE_NOACCESSPERM","features":[446]},{"name":"AE_NORMAL","features":[446]},{"name":"AE_NORMAL_CLOSE","features":[446]},{"name":"AE_RESACCESS","features":[446]},{"name":"AE_RESACCESS","features":[446]},{"name":"AE_RESACCESS2","features":[446]},{"name":"AE_RESACCESSREJ","features":[446]},{"name":"AE_RESACCESSREJ","features":[446]},{"name":"AE_SERVICESTAT","features":[446]},{"name":"AE_SERVICESTAT","features":[446]},{"name":"AE_SESSDIS","features":[446]},{"name":"AE_SESSLOGOFF","features":[446]},{"name":"AE_SESSLOGOFF","features":[446]},{"name":"AE_SESSLOGON","features":[446]},{"name":"AE_SESSLOGON","features":[446]},{"name":"AE_SESSPWERR","features":[446]},{"name":"AE_SESSPWERR","features":[446]},{"name":"AE_SES_CLOSE","features":[446]},{"name":"AE_SRVCONT","features":[446]},{"name":"AE_SRVPAUSED","features":[446]},{"name":"AE_SRVSTART","features":[446]},{"name":"AE_SRVSTATUS","features":[446]},{"name":"AE_SRVSTATUS","features":[446]},{"name":"AE_SRVSTOP","features":[446]},{"name":"AE_UASMOD","features":[446]},{"name":"AE_UASMOD","features":[446]},{"name":"AE_UAS_GROUP","features":[446]},{"name":"AE_UAS_MODALS","features":[446]},{"name":"AE_UAS_USER","features":[446]},{"name":"AE_UNSHARE","features":[446]},{"name":"AE_USER","features":[446]},{"name":"AE_USERLIMIT","features":[446]},{"name":"AF_OP","features":[446]},{"name":"AF_OP_ACCOUNTS","features":[446]},{"name":"AF_OP_COMM","features":[446]},{"name":"AF_OP_PRINT","features":[446]},{"name":"AF_OP_SERVER","features":[446]},{"name":"ALERTER_MAILSLOT","features":[446]},{"name":"ALERTSZ","features":[446]},{"name":"ALERT_ADMIN_EVENT","features":[446]},{"name":"ALERT_ERRORLOG_EVENT","features":[446]},{"name":"ALERT_MESSAGE_EVENT","features":[446]},{"name":"ALERT_PRINT_EVENT","features":[446]},{"name":"ALERT_USER_EVENT","features":[446]},{"name":"ALIGN_SHIFT","features":[446]},{"name":"ALIGN_SIZE","features":[446]},{"name":"ALLOCATE_RESPONSE","features":[446]},{"name":"AT_ENUM","features":[446]},{"name":"AT_INFO","features":[446]},{"name":"AUDIT_ENTRY","features":[446]},{"name":"BACKUP_MSG_FILENAME","features":[446]},{"name":"BIND_FLAGS1","features":[446]},{"name":"CLTYPE_LEN","features":[446]},{"name":"CNLEN","features":[446]},{"name":"COMPONENT_CHARACTERISTICS","features":[446]},{"name":"CONFIG_INFO_0","features":[446]},{"name":"COULD_NOT_VERIFY_VOLUMES","features":[446]},{"name":"CREATE_BYPASS_CSC","features":[446]},{"name":"CREATE_CRED_RESET","features":[446]},{"name":"CREATE_GLOBAL_MAPPING","features":[446]},{"name":"CREATE_NO_CONNECT","features":[446]},{"name":"CREATE_PERSIST_MAPPING","features":[446]},{"name":"CREATE_REQUIRE_CONNECTION_INTEGRITY","features":[446]},{"name":"CREATE_REQUIRE_CONNECTION_PRIVACY","features":[446]},{"name":"CREATE_WRITE_THROUGH_SEMANTICS","features":[446]},{"name":"CRYPT_KEY_LEN","features":[446]},{"name":"CRYPT_TXT_LEN","features":[446]},{"name":"DEFAULT_PAGES","features":[446]},{"name":"DEF_MAX_BADPW","features":[446]},{"name":"DEF_MAX_PWHIST","features":[446]},{"name":"DEF_MIN_PWLEN","features":[446]},{"name":"DEF_PWUNIQUENESS","features":[446]},{"name":"DEVLEN","features":[446]},{"name":"DFS_CONNECTION_FAILURE","features":[446]},{"name":"DFS_ERROR_ACTIVEDIRECTORY_OFFLINE","features":[446]},{"name":"DFS_ERROR_CLUSTERINFO_FAILED","features":[446]},{"name":"DFS_ERROR_COMPUTERINFO_FAILED","features":[446]},{"name":"DFS_ERROR_CREATEEVENT_FAILED","features":[446]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_FAILURE","features":[446]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_SUCCESS","features":[446]},{"name":"DFS_ERROR_CROSS_FOREST_TRUST_INFO_FAILED","features":[446]},{"name":"DFS_ERROR_DCINFO_FAILED","features":[446]},{"name":"DFS_ERROR_DSCONNECT_FAILED","features":[446]},{"name":"DFS_ERROR_DUPLICATE_LINK","features":[446]},{"name":"DFS_ERROR_HANDLENAMESPACE_FAILED","features":[446]},{"name":"DFS_ERROR_LINKS_OVERLAP","features":[446]},{"name":"DFS_ERROR_LINK_OVERLAP","features":[446]},{"name":"DFS_ERROR_MUTLIPLE_ROOTS_NOT_SUPPORTED","features":[446]},{"name":"DFS_ERROR_NO_DFS_DATA","features":[446]},{"name":"DFS_ERROR_ON_ROOT","features":[446]},{"name":"DFS_ERROR_OVERLAPPING_DIRECTORIES","features":[446]},{"name":"DFS_ERROR_PREFIXTABLE_FAILED","features":[446]},{"name":"DFS_ERROR_REFLECTIONENGINE_FAILED","features":[446]},{"name":"DFS_ERROR_REGISTERSTORE_FAILED","features":[446]},{"name":"DFS_ERROR_REMOVE_LINK_FAILED","features":[446]},{"name":"DFS_ERROR_RESYNCHRONIZE_FAILED","features":[446]},{"name":"DFS_ERROR_ROOTSYNCINIT_FAILED","features":[446]},{"name":"DFS_ERROR_SECURITYINIT_FAILED","features":[446]},{"name":"DFS_ERROR_SITECACHEINIT_FAILED","features":[446]},{"name":"DFS_ERROR_SITESUPPOR_FAILED","features":[446]},{"name":"DFS_ERROR_TARGET_LIST_INCORRECT","features":[446]},{"name":"DFS_ERROR_THREADINIT_FAILED","features":[446]},{"name":"DFS_ERROR_TOO_MANY_ERRORS","features":[446]},{"name":"DFS_ERROR_TRUSTED_DOMAIN_INFO_FAILED","features":[446]},{"name":"DFS_ERROR_UNSUPPORTED_FILESYSTEM","features":[446]},{"name":"DFS_ERROR_WINSOCKINIT_FAILED","features":[446]},{"name":"DFS_INFO_ACTIVEDIRECTORY_ONLINE","features":[446]},{"name":"DFS_INFO_CROSS_FOREST_TRUST_INFO_SUCCESS","features":[446]},{"name":"DFS_INFO_DOMAIN_REFERRAL_MIN_OVERFLOW","features":[446]},{"name":"DFS_INFO_DS_RECONNECTED","features":[446]},{"name":"DFS_INFO_FINISH_BUILDING_NAMESPACE","features":[446]},{"name":"DFS_INFO_FINISH_INIT","features":[446]},{"name":"DFS_INFO_RECONNECT_DATA","features":[446]},{"name":"DFS_INFO_TRUSTED_DOMAIN_INFO_SUCCESS","features":[446]},{"name":"DFS_INIT_SUCCESS","features":[446]},{"name":"DFS_MAX_DNR_ATTEMPTS","features":[446]},{"name":"DFS_OPEN_FAILURE","features":[446]},{"name":"DFS_REFERRAL_FAILURE","features":[446]},{"name":"DFS_REFERRAL_REQUEST","features":[446]},{"name":"DFS_REFERRAL_SUCCESS","features":[446]},{"name":"DFS_ROOT_SHARE_ACQUIRE_FAILED","features":[446]},{"name":"DFS_ROOT_SHARE_ACQUIRE_SUCCESS","features":[446]},{"name":"DFS_SPECIAL_REFERRAL_FAILURE","features":[446]},{"name":"DFS_WARN_DOMAIN_REFERRAL_OVERFLOW","features":[446]},{"name":"DFS_WARN_INCOMPLETE_MOVE","features":[446]},{"name":"DFS_WARN_METADATA_LINK_INFO_INVALID","features":[446]},{"name":"DFS_WARN_METADATA_LINK_TYPE_INCORRECT","features":[446]},{"name":"DNLEN","features":[446]},{"name":"DPP_ADVANCED","features":[446]},{"name":"DSREG_DEVICE_JOIN","features":[446]},{"name":"DSREG_JOIN_INFO","features":[303,446,387]},{"name":"DSREG_JOIN_TYPE","features":[446]},{"name":"DSREG_UNKNOWN_JOIN","features":[446]},{"name":"DSREG_USER_INFO","features":[446]},{"name":"DSREG_WORKPLACE_JOIN","features":[446]},{"name":"EBP_ABOVE","features":[446]},{"name":"EBP_BELOW","features":[446]},{"name":"ENCRYPTED_PWLEN","features":[446]},{"name":"ENUM_BINDING_PATHS_FLAGS","features":[446]},{"name":"ERRLOG2_BASE","features":[446]},{"name":"ERRLOG_BASE","features":[446]},{"name":"ERRLOG_OTHER_INFO","features":[446]},{"name":"ERROR_LOG","features":[446]},{"name":"EVENT_BAD_ACCOUNT_NAME","features":[446]},{"name":"EVENT_BAD_SERVICE_STATE","features":[446]},{"name":"EVENT_BOOT_SYSTEM_DRIVERS_FAILED","features":[446]},{"name":"EVENT_BOWSER_CANT_READ_REGISTRY","features":[446]},{"name":"EVENT_BOWSER_ELECTION_RECEIVED","features":[446]},{"name":"EVENT_BOWSER_ELECTION_SENT_FIND_MASTER_FAILED","features":[446]},{"name":"EVENT_BOWSER_ELECTION_SENT_GETBLIST_FAILED","features":[446]},{"name":"EVENT_BOWSER_GETBROWSERLIST_THRESHOLD_EXCEEDED","features":[446]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM","features":[446]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM_THRESHOLD","features":[446]},{"name":"EVENT_BOWSER_MAILSLOT_DATAGRAM_THRESHOLD_EXCEEDED","features":[446]},{"name":"EVENT_BOWSER_NAME_CONVERSION_FAILED","features":[446]},{"name":"EVENT_BOWSER_NON_MASTER_MASTER_ANNOUNCE","features":[446]},{"name":"EVENT_BOWSER_NON_PDC_WON_ELECTION","features":[446]},{"name":"EVENT_BOWSER_OLD_BACKUP_FOUND","features":[446]},{"name":"EVENT_BOWSER_OTHER_MASTER_ON_NET","features":[446]},{"name":"EVENT_BOWSER_PDC_LOST_ELECTION","features":[446]},{"name":"EVENT_BOWSER_PROMOTED_WHILE_ALREADY_MASTER","features":[446]},{"name":"EVENT_BRIDGE_ADAPTER_BIND_FAILED","features":[446]},{"name":"EVENT_BRIDGE_ADAPTER_FILTER_FAILED","features":[446]},{"name":"EVENT_BRIDGE_ADAPTER_LINK_SPEED_QUERY_FAILED","features":[446]},{"name":"EVENT_BRIDGE_ADAPTER_MAC_ADDR_QUERY_FAILED","features":[446]},{"name":"EVENT_BRIDGE_ADAPTER_NAME_QUERY_FAILED","features":[446]},{"name":"EVENT_BRIDGE_BUFFER_POOL_CREATION_FAILED","features":[446]},{"name":"EVENT_BRIDGE_DEVICE_CREATION_FAILED","features":[446]},{"name":"EVENT_BRIDGE_ETHERNET_NOT_OFFERED","features":[446]},{"name":"EVENT_BRIDGE_INIT_MALLOC_FAILED","features":[446]},{"name":"EVENT_BRIDGE_MINIPORT_INIT_FAILED","features":[446]},{"name":"EVENT_BRIDGE_MINIPORT_REGISTER_FAILED","features":[446]},{"name":"EVENT_BRIDGE_MINIPROT_DEVNAME_MISSING","features":[446]},{"name":"EVENT_BRIDGE_NO_BRIDGE_MAC_ADDR","features":[446]},{"name":"EVENT_BRIDGE_PACKET_POOL_CREATION_FAILED","features":[446]},{"name":"EVENT_BRIDGE_PROTOCOL_REGISTER_FAILED","features":[446]},{"name":"EVENT_BRIDGE_THREAD_CREATION_FAILED","features":[446]},{"name":"EVENT_BRIDGE_THREAD_REF_FAILED","features":[446]},{"name":"EVENT_BROWSER_BACKUP_STOPPED","features":[446]},{"name":"EVENT_BROWSER_DEPENDANT_SERVICE_FAILED","features":[446]},{"name":"EVENT_BROWSER_DOMAIN_LIST_FAILED","features":[446]},{"name":"EVENT_BROWSER_DOMAIN_LIST_RETRIEVED","features":[446]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STARTED","features":[446]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STOPPED","features":[446]},{"name":"EVENT_BROWSER_ELECTION_SENT_ROLE_CHANGED","features":[446]},{"name":"EVENT_BROWSER_GETBLIST_RECEIVED_NOT_MASTER","features":[446]},{"name":"EVENT_BROWSER_ILLEGAL_CONFIG","features":[446]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED","features":[446]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_NO_MASTER","features":[446]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_STOPPING","features":[446]},{"name":"EVENT_BROWSER_NOT_STARTED_IPX_CONFIG_MISMATCH","features":[446]},{"name":"EVENT_BROWSER_OTHERDOMAIN_ADD_FAILED","features":[446]},{"name":"EVENT_BROWSER_ROLE_CHANGE_FAILED","features":[446]},{"name":"EVENT_BROWSER_SERVER_LIST_FAILED","features":[446]},{"name":"EVENT_BROWSER_SERVER_LIST_RETRIEVED","features":[446]},{"name":"EVENT_BROWSER_STATUS_BITS_UPDATE_FAILED","features":[446]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED","features":[446]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED_II","features":[446]},{"name":"EVENT_CIRCULAR_DEPENDENCY_AUTO","features":[446]},{"name":"EVENT_CIRCULAR_DEPENDENCY_DEMAND","features":[446]},{"name":"EVENT_COMMAND_NOT_INTERACTIVE","features":[446]},{"name":"EVENT_COMMAND_START_FAILED","features":[446]},{"name":"EVENT_CONNECTION_TIMEOUT","features":[446]},{"name":"EVENT_ComputerNameChange","features":[446]},{"name":"EVENT_DAV_REDIR_DELAYED_WRITE_FAILED","features":[446]},{"name":"EVENT_DCOM_ASSERTION_FAILURE","features":[446]},{"name":"EVENT_DCOM_COMPLUS_DISABLED","features":[446]},{"name":"EVENT_DCOM_INVALID_ENDPOINT_DATA","features":[446]},{"name":"EVENT_DEPEND_ON_LATER_GROUP","features":[446]},{"name":"EVENT_DEPEND_ON_LATER_SERVICE","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT","features":[446]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_NOTSUPP","features":[446]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_OTHER","features":[446]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_REFUSED","features":[446]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SECURITY","features":[446]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SERVERFAIL","features":[446]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_TIMEOUT","features":[446]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_NOTSUPP","features":[446]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_OTHER","features":[446]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_REFUSED","features":[446]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SECURITY","features":[446]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SERVERFAIL","features":[446]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_TIMEOUT","features":[446]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER","features":[446]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_REGISTERED_PTR","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT","features":[446]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[446]},{"name":"EVENT_DNSDomainNameChange","features":[446]},{"name":"EVENT_DNS_CACHE_NETWORK_PERF_WARNING","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_LOW_MEMORY","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_CONTROL","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DLL","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DONE_EVENT","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_ENTRY","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_RPC","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_SHUTDOWN_NOTIFY","features":[446]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_UPDATE","features":[446]},{"name":"EVENT_DNS_CACHE_UNABLE_TO_REACH_SERVER_WARNING","features":[446]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_SIZE_ZERO","features":[446]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_TOO_LONG","features":[446]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_REFERESH","features":[446]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_ROOT_KEY","features":[446]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_SUBKEY","features":[446]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_ROOT_KEY","features":[446]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_SUBKEY","features":[446]},{"name":"EVENT_EQOS_ERROR_PROCESSING_MACHINE_POLICY_FIELD","features":[446]},{"name":"EVENT_EQOS_ERROR_PROCESSING_USER_POLICY_FIELD","features":[446]},{"name":"EVENT_EQOS_ERROR_SETTING_APP_MARKING","features":[446]},{"name":"EVENT_EQOS_ERROR_SETTING_TCP_AUTOTUNING","features":[446]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_SIZE_ZERO","features":[446]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_TOO_LONG","features":[446]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_REFERESH","features":[446]},{"name":"EVENT_EQOS_INFO_APP_MARKING_ALLOWED","features":[446]},{"name":"EVENT_EQOS_INFO_APP_MARKING_IGNORED","features":[446]},{"name":"EVENT_EQOS_INFO_APP_MARKING_NOT_CONFIGURED","features":[446]},{"name":"EVENT_EQOS_INFO_LOCAL_SETTING_DONT_USE_NLA","features":[446]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_NO_CHANGE","features":[446]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_WITH_CHANGE","features":[446]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_HIGHLY_RESTRICTED","features":[446]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NORMAL","features":[446]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NOT_CONFIGURED","features":[446]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_OFF","features":[446]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_RESTRICTED","features":[446]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_NO_CHANGE","features":[446]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_WITH_CHANGE","features":[446]},{"name":"EVENT_EQOS_URL_QOS_APPLICATION_CONFLICT","features":[446]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_CONFLICT","features":[446]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_NO_FULLPATH_APPNAME","features":[446]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_PROFILE_NOT_SPECIFIED","features":[446]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_QUOTA_EXCEEDED","features":[446]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_VERSION","features":[446]},{"name":"EVENT_EQOS_WARNING_TEST_1","features":[446]},{"name":"EVENT_EQOS_WARNING_TEST_2","features":[446]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_CONFLICT","features":[446]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_NO_FULLPATH_APPNAME","features":[446]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_PROFILE_NOT_SPECIFIED","features":[446]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_QUOTA_EXCEEDED","features":[446]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_VERSION","features":[446]},{"name":"EVENT_EventLogProductInfo","features":[446]},{"name":"EVENT_EventlogAbnormalShutdown","features":[446]},{"name":"EVENT_EventlogStarted","features":[446]},{"name":"EVENT_EventlogStopped","features":[446]},{"name":"EVENT_EventlogUptime","features":[446]},{"name":"EVENT_FIRST_LOGON_FAILED","features":[446]},{"name":"EVENT_FIRST_LOGON_FAILED_II","features":[446]},{"name":"EVENT_FRS_ACCESS_CHECKS_DISABLED","features":[446]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_UNKNOWN","features":[446]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_USER","features":[446]},{"name":"EVENT_FRS_ASSERT","features":[446]},{"name":"EVENT_FRS_BAD_REG_DATA","features":[446]},{"name":"EVENT_FRS_CANNOT_COMMUNICATE","features":[446]},{"name":"EVENT_FRS_CANNOT_CREATE_UUID","features":[446]},{"name":"EVENT_FRS_CANNOT_START_BACKUP_RESTORE_IN_PROGRESS","features":[446]},{"name":"EVENT_FRS_CANT_OPEN_PREINSTALL","features":[446]},{"name":"EVENT_FRS_CANT_OPEN_STAGE","features":[446]},{"name":"EVENT_FRS_DATABASE_SPACE","features":[446]},{"name":"EVENT_FRS_DISK_WRITE_CACHE_ENABLED","features":[446]},{"name":"EVENT_FRS_DS_POLL_ERROR_SUMMARY","features":[446]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION","features":[446]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION_SYSVOL","features":[446]},{"name":"EVENT_FRS_ERROR","features":[446]},{"name":"EVENT_FRS_ERROR_REPLICA_SET_DELETED","features":[446]},{"name":"EVENT_FRS_HUGE_FILE","features":[446]},{"name":"EVENT_FRS_IN_ERROR_STATE","features":[446]},{"name":"EVENT_FRS_JET_1414","features":[446]},{"name":"EVENT_FRS_JOIN_FAIL_TIME_SKEW","features":[446]},{"name":"EVENT_FRS_LONG_JOIN","features":[446]},{"name":"EVENT_FRS_LONG_JOIN_DONE","features":[446]},{"name":"EVENT_FRS_MOVED_PREEXISTING","features":[446]},{"name":"EVENT_FRS_NO_DNS_ATTRIBUTE","features":[446]},{"name":"EVENT_FRS_NO_SID","features":[446]},{"name":"EVENT_FRS_OVERLAPS_LOGGING","features":[446]},{"name":"EVENT_FRS_OVERLAPS_OTHER_STAGE","features":[446]},{"name":"EVENT_FRS_OVERLAPS_ROOT","features":[446]},{"name":"EVENT_FRS_OVERLAPS_STAGE","features":[446]},{"name":"EVENT_FRS_OVERLAPS_WORKING","features":[446]},{"name":"EVENT_FRS_PREPARE_ROOT_FAILED","features":[446]},{"name":"EVENT_FRS_REPLICA_IN_JRNL_WRAP_ERROR","features":[446]},{"name":"EVENT_FRS_REPLICA_NO_ROOT_CHANGE","features":[446]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_FAIL","features":[446]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_OK","features":[446]},{"name":"EVENT_FRS_REPLICA_SET_CXTIONS","features":[446]},{"name":"EVENT_FRS_RMTCO_TIME_SKEW","features":[446]},{"name":"EVENT_FRS_ROOT_HAS_MOVED","features":[446]},{"name":"EVENT_FRS_ROOT_NOT_VALID","features":[446]},{"name":"EVENT_FRS_STAGE_NOT_VALID","features":[446]},{"name":"EVENT_FRS_STAGING_AREA_FULL","features":[446]},{"name":"EVENT_FRS_STARTING","features":[446]},{"name":"EVENT_FRS_STOPPED","features":[446]},{"name":"EVENT_FRS_STOPPED_ASSERT","features":[446]},{"name":"EVENT_FRS_STOPPED_FORCE","features":[446]},{"name":"EVENT_FRS_STOPPING","features":[446]},{"name":"EVENT_FRS_SYSVOL_NOT_READY","features":[446]},{"name":"EVENT_FRS_SYSVOL_NOT_READY_PRIMARY","features":[446]},{"name":"EVENT_FRS_SYSVOL_READY","features":[446]},{"name":"EVENT_FRS_VOLUME_NOT_SUPPORTED","features":[446]},{"name":"EVENT_INVALID_DRIVER_DEPENDENCY","features":[446]},{"name":"EVENT_IPX_CREATE_DEVICE","features":[446]},{"name":"EVENT_IPX_ILLEGAL_CONFIG","features":[446]},{"name":"EVENT_IPX_INTERNAL_NET_INVALID","features":[446]},{"name":"EVENT_IPX_NEW_DEFAULT_TYPE","features":[446]},{"name":"EVENT_IPX_NO_ADAPTERS","features":[446]},{"name":"EVENT_IPX_NO_FRAME_TYPES","features":[446]},{"name":"EVENT_IPX_SAP_ANNOUNCE","features":[446]},{"name":"EVENT_NBT_BAD_BACKUP_WINS_ADDR","features":[446]},{"name":"EVENT_NBT_BAD_PRIMARY_WINS_ADDR","features":[446]},{"name":"EVENT_NBT_CREATE_ADDRESS","features":[446]},{"name":"EVENT_NBT_CREATE_CONNECTION","features":[446]},{"name":"EVENT_NBT_CREATE_DEVICE","features":[446]},{"name":"EVENT_NBT_CREATE_DRIVER","features":[446]},{"name":"EVENT_NBT_DUPLICATE_NAME","features":[446]},{"name":"EVENT_NBT_DUPLICATE_NAME_ERROR","features":[446]},{"name":"EVENT_NBT_NAME_RELEASE","features":[446]},{"name":"EVENT_NBT_NAME_SERVER_ADDRS","features":[446]},{"name":"EVENT_NBT_NON_OS_INIT","features":[446]},{"name":"EVENT_NBT_NO_BACKUP_WINS","features":[446]},{"name":"EVENT_NBT_NO_DEVICES","features":[446]},{"name":"EVENT_NBT_NO_RESOURCES","features":[446]},{"name":"EVENT_NBT_NO_WINS","features":[446]},{"name":"EVENT_NBT_OPEN_REG_LINKAGE","features":[446]},{"name":"EVENT_NBT_OPEN_REG_NAMESERVER","features":[446]},{"name":"EVENT_NBT_OPEN_REG_PARAMS","features":[446]},{"name":"EVENT_NBT_READ_BIND","features":[446]},{"name":"EVENT_NBT_READ_EXPORT","features":[446]},{"name":"EVENT_NBT_TIMERS","features":[446]},{"name":"EVENT_NDIS_ADAPTER_CHECK_ERROR","features":[446]},{"name":"EVENT_NDIS_ADAPTER_DISABLED","features":[446]},{"name":"EVENT_NDIS_ADAPTER_NOT_FOUND","features":[446]},{"name":"EVENT_NDIS_BAD_IO_BASE_ADDRESS","features":[446]},{"name":"EVENT_NDIS_BAD_VERSION","features":[446]},{"name":"EVENT_NDIS_CABLE_DISCONNECTED_ERROR","features":[446]},{"name":"EVENT_NDIS_DMA_CONFLICT","features":[446]},{"name":"EVENT_NDIS_DRIVER_FAILURE","features":[446]},{"name":"EVENT_NDIS_HARDWARE_FAILURE","features":[446]},{"name":"EVENT_NDIS_INTERRUPT_CONFLICT","features":[446]},{"name":"EVENT_NDIS_INTERRUPT_CONNECT","features":[446]},{"name":"EVENT_NDIS_INVALID_DOWNLOAD_FILE_ERROR","features":[446]},{"name":"EVENT_NDIS_INVALID_VALUE_FROM_ADAPTER","features":[446]},{"name":"EVENT_NDIS_IO_PORT_CONFLICT","features":[446]},{"name":"EVENT_NDIS_LOBE_FAILUE_ERROR","features":[446]},{"name":"EVENT_NDIS_MAXFRAMESIZE_ERROR","features":[446]},{"name":"EVENT_NDIS_MAXINTERNALBUFS_ERROR","features":[446]},{"name":"EVENT_NDIS_MAXMULTICAST_ERROR","features":[446]},{"name":"EVENT_NDIS_MAXRECEIVES_ERROR","features":[446]},{"name":"EVENT_NDIS_MAXTRANSMITS_ERROR","features":[446]},{"name":"EVENT_NDIS_MEMORY_CONFLICT","features":[446]},{"name":"EVENT_NDIS_MISSING_CONFIGURATION_PARAMETER","features":[446]},{"name":"EVENT_NDIS_NETWORK_ADDRESS","features":[446]},{"name":"EVENT_NDIS_OUT_OF_RESOURCE","features":[446]},{"name":"EVENT_NDIS_PORT_OR_DMA_CONFLICT","features":[446]},{"name":"EVENT_NDIS_PRODUCTID_ERROR","features":[446]},{"name":"EVENT_NDIS_RECEIVE_SPACE_SMALL","features":[446]},{"name":"EVENT_NDIS_REMOVE_RECEIVED_ERROR","features":[446]},{"name":"EVENT_NDIS_RESET_FAILURE_CORRECTION","features":[446]},{"name":"EVENT_NDIS_RESET_FAILURE_ERROR","features":[446]},{"name":"EVENT_NDIS_RESOURCE_CONFLICT","features":[446]},{"name":"EVENT_NDIS_SIGNAL_LOSS_ERROR","features":[446]},{"name":"EVENT_NDIS_TIMEOUT","features":[446]},{"name":"EVENT_NDIS_TOKEN_RING_CORRECTION","features":[446]},{"name":"EVENT_NDIS_UNSUPPORTED_CONFIGURATION","features":[446]},{"name":"EVENT_PS_ADMISSIONCONTROL_OVERFLOW","features":[446]},{"name":"EVENT_PS_BAD_BESTEFFORT_LIMIT","features":[446]},{"name":"EVENT_PS_BINDING_FAILED","features":[446]},{"name":"EVENT_PS_GPC_REGISTER_FAILED","features":[446]},{"name":"EVENT_PS_INIT_DEVICE_FAILED","features":[446]},{"name":"EVENT_PS_MISSING_ADAPTER_REGISTRY_DATA","features":[446]},{"name":"EVENT_PS_NETWORK_ADDRESS_FAIL","features":[446]},{"name":"EVENT_PS_NO_RESOURCES_FOR_INIT","features":[446]},{"name":"EVENT_PS_QUERY_OID_GEN_LINK_SPEED","features":[446]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_FRAME_SIZE","features":[446]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_TOTAL_SIZE","features":[446]},{"name":"EVENT_PS_REGISTER_ADDRESS_FAMILY_FAILED","features":[446]},{"name":"EVENT_PS_REGISTER_MINIPORT_FAILED","features":[446]},{"name":"EVENT_PS_REGISTER_PROTOCOL_FAILED","features":[446]},{"name":"EVENT_PS_RESOURCE_POOL","features":[446]},{"name":"EVENT_PS_WAN_LIMITED_BESTEFFORT","features":[446]},{"name":"EVENT_PS_WMI_INSTANCE_NAME_FAILED","features":[446]},{"name":"EVENT_RDR_AT_THREAD_MAX","features":[446]},{"name":"EVENT_RDR_CANT_BIND_TRANSPORT","features":[446]},{"name":"EVENT_RDR_CANT_BUILD_SMB_HEADER","features":[446]},{"name":"EVENT_RDR_CANT_CREATE_DEVICE","features":[446]},{"name":"EVENT_RDR_CANT_CREATE_THREAD","features":[446]},{"name":"EVENT_RDR_CANT_GET_SECURITY_CONTEXT","features":[446]},{"name":"EVENT_RDR_CANT_READ_REGISTRY","features":[446]},{"name":"EVENT_RDR_CANT_REGISTER_ADDRESS","features":[446]},{"name":"EVENT_RDR_CANT_SET_THREAD","features":[446]},{"name":"EVENT_RDR_CLOSE_BEHIND","features":[446]},{"name":"EVENT_RDR_CONNECTION","features":[446]},{"name":"EVENT_RDR_CONNECTION_REFERENCE","features":[446]},{"name":"EVENT_RDR_CONTEXTS","features":[446]},{"name":"EVENT_RDR_DELAYED_SET_ATTRIBUTES_FAILED","features":[446]},{"name":"EVENT_RDR_DELETEONCLOSE_FAILED","features":[446]},{"name":"EVENT_RDR_DISPOSITION","features":[446]},{"name":"EVENT_RDR_ENCRYPT","features":[446]},{"name":"EVENT_RDR_FAILED_UNLOCK","features":[446]},{"name":"EVENT_RDR_INVALID_LOCK_REPLY","features":[446]},{"name":"EVENT_RDR_INVALID_OPLOCK","features":[446]},{"name":"EVENT_RDR_INVALID_REPLY","features":[446]},{"name":"EVENT_RDR_INVALID_SMB","features":[446]},{"name":"EVENT_RDR_MAXCMDS","features":[446]},{"name":"EVENT_RDR_OPLOCK_SMB","features":[446]},{"name":"EVENT_RDR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[446]},{"name":"EVENT_RDR_RESOURCE_SHORTAGE","features":[446]},{"name":"EVENT_RDR_SECURITY_SIGNATURE_MISMATCH","features":[446]},{"name":"EVENT_RDR_SERVER_REFERENCE","features":[446]},{"name":"EVENT_RDR_SMB_REFERENCE","features":[446]},{"name":"EVENT_RDR_TIMEOUT","features":[446]},{"name":"EVENT_RDR_TIMEZONE_BIAS_TOO_LARGE","features":[446]},{"name":"EVENT_RDR_UNEXPECTED_ERROR","features":[446]},{"name":"EVENT_RDR_WRITE_BEHIND_FLUSH_FAILED","features":[446]},{"name":"EVENT_READFILE_TIMEOUT","features":[446]},{"name":"EVENT_REVERTED_TO_LASTKNOWNGOOD","features":[446]},{"name":"EVENT_RPCSS_ACTIVATION_ERROR","features":[446]},{"name":"EVENT_RPCSS_CREATEDEBUGGERPROCESS_FAILURE","features":[446]},{"name":"EVENT_RPCSS_CREATEPROCESS_FAILURE","features":[446]},{"name":"EVENT_RPCSS_DEFAULT_LAUNCH_ACCESS_DENIED","features":[446]},{"name":"EVENT_RPCSS_LAUNCH_ACCESS_DENIED","features":[446]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR","features":[446]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR_WITH_FILE","features":[446]},{"name":"EVENT_RPCSS_REMOTE_SIDE_UNAVAILABLE","features":[446]},{"name":"EVENT_RPCSS_RUNAS_CANT_LOGIN","features":[446]},{"name":"EVENT_RPCSS_RUNAS_CREATEPROCESS_FAILURE","features":[446]},{"name":"EVENT_RPCSS_SERVER_NOT_RESPONDING","features":[446]},{"name":"EVENT_RPCSS_SERVER_START_TIMEOUT","features":[446]},{"name":"EVENT_RPCSS_START_SERVICE_FAILURE","features":[446]},{"name":"EVENT_RPCSS_STOP_SERVICE_FAILURE","features":[446]},{"name":"EVENT_RUNNING_LASTKNOWNGOOD","features":[446]},{"name":"EVENT_SCOPE_LABEL_TOO_LONG","features":[446]},{"name":"EVENT_SCOPE_TOO_LONG","features":[446]},{"name":"EVENT_SECOND_LOGON_FAILED","features":[446]},{"name":"EVENT_SERVICE_CONFIG_BACKOUT_FAILED","features":[446]},{"name":"EVENT_SERVICE_CONTROL_SUCCESS","features":[446]},{"name":"EVENT_SERVICE_CRASH","features":[446]},{"name":"EVENT_SERVICE_CRASH_NO_ACTION","features":[446]},{"name":"EVENT_SERVICE_DIFFERENT_PID_CONNECTED","features":[446]},{"name":"EVENT_SERVICE_EXIT_FAILED","features":[446]},{"name":"EVENT_SERVICE_EXIT_FAILED_SPECIFIC","features":[446]},{"name":"EVENT_SERVICE_LOGON_TYPE_NOT_GRANTED","features":[446]},{"name":"EVENT_SERVICE_NOT_INTERACTIVE","features":[446]},{"name":"EVENT_SERVICE_RECOVERY_FAILED","features":[446]},{"name":"EVENT_SERVICE_SCESRV_FAILED","features":[446]},{"name":"EVENT_SERVICE_SHUTDOWN_FAILED","features":[446]},{"name":"EVENT_SERVICE_START_AT_BOOT_FAILED","features":[446]},{"name":"EVENT_SERVICE_START_FAILED","features":[446]},{"name":"EVENT_SERVICE_START_FAILED_GROUP","features":[446]},{"name":"EVENT_SERVICE_START_FAILED_II","features":[446]},{"name":"EVENT_SERVICE_START_FAILED_NONE","features":[446]},{"name":"EVENT_SERVICE_START_HUNG","features":[446]},{"name":"EVENT_SERVICE_START_TYPE_CHANGED","features":[446]},{"name":"EVENT_SERVICE_STATUS_SUCCESS","features":[446]},{"name":"EVENT_SERVICE_STOP_SUCCESS_WITH_REASON","features":[446]},{"name":"EVENT_SEVERE_SERVICE_FAILED","features":[446]},{"name":"EVENT_SRV_CANT_BIND_DUP_NAME","features":[446]},{"name":"EVENT_SRV_CANT_BIND_TO_TRANSPORT","features":[446]},{"name":"EVENT_SRV_CANT_CHANGE_DOMAIN_NAME","features":[446]},{"name":"EVENT_SRV_CANT_CREATE_DEVICE","features":[446]},{"name":"EVENT_SRV_CANT_CREATE_PROCESS","features":[446]},{"name":"EVENT_SRV_CANT_CREATE_THREAD","features":[446]},{"name":"EVENT_SRV_CANT_GROW_TABLE","features":[446]},{"name":"EVENT_SRV_CANT_LOAD_DRIVER","features":[446]},{"name":"EVENT_SRV_CANT_MAP_ERROR","features":[446]},{"name":"EVENT_SRV_CANT_OPEN_NPFS","features":[446]},{"name":"EVENT_SRV_CANT_RECREATE_SHARE","features":[446]},{"name":"EVENT_SRV_CANT_START_SCAVENGER","features":[446]},{"name":"EVENT_SRV_CANT_UNLOAD_DRIVER","features":[446]},{"name":"EVENT_SRV_DISK_FULL","features":[446]},{"name":"EVENT_SRV_DOS_ATTACK_DETECTED","features":[446]},{"name":"EVENT_SRV_INVALID_REGISTRY_VALUE","features":[446]},{"name":"EVENT_SRV_INVALID_REQUEST","features":[446]},{"name":"EVENT_SRV_INVALID_SD","features":[446]},{"name":"EVENT_SRV_IRP_STACK_SIZE","features":[446]},{"name":"EVENT_SRV_KEY_NOT_CREATED","features":[446]},{"name":"EVENT_SRV_KEY_NOT_FOUND","features":[446]},{"name":"EVENT_SRV_NETWORK_ERROR","features":[446]},{"name":"EVENT_SRV_NONPAGED_POOL_LIMIT","features":[446]},{"name":"EVENT_SRV_NO_BLOCKING_IO","features":[446]},{"name":"EVENT_SRV_NO_FREE_CONNECTIONS","features":[446]},{"name":"EVENT_SRV_NO_FREE_RAW_WORK_ITEM","features":[446]},{"name":"EVENT_SRV_NO_NONPAGED_POOL","features":[446]},{"name":"EVENT_SRV_NO_PAGED_POOL","features":[446]},{"name":"EVENT_SRV_NO_TRANSPORTS_BOUND","features":[446]},{"name":"EVENT_SRV_NO_VIRTUAL_MEMORY","features":[446]},{"name":"EVENT_SRV_NO_WORK_ITEM","features":[446]},{"name":"EVENT_SRV_OUT_OF_WORK_ITEM_DOS","features":[446]},{"name":"EVENT_SRV_PAGED_POOL_LIMIT","features":[446]},{"name":"EVENT_SRV_RESOURCE_SHORTAGE","features":[446]},{"name":"EVENT_SRV_SERVICE_FAILED","features":[446]},{"name":"EVENT_SRV_TOO_MANY_DOS","features":[446]},{"name":"EVENT_SRV_TXF_INIT_FAILED","features":[446]},{"name":"EVENT_SRV_UNEXPECTED_DISC","features":[446]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE","features":[446]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE_CNT","features":[446]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE","features":[446]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE_CNT","features":[446]},{"name":"EVENT_STREAMS_STRLOG","features":[446]},{"name":"EVENT_TAKE_OWNERSHIP","features":[446]},{"name":"EVENT_TCPIP6_STARTED","features":[446]},{"name":"EVENT_TCPIP_ADAPTER_REG_FAILURE","features":[446]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT1","features":[446]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT2","features":[446]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ADDRESS_LIMIT_REACHED","features":[446]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ROUTE_LIMIT_REACHED","features":[446]},{"name":"EVENT_TCPIP_CREATE_DEVICE_FAILED","features":[446]},{"name":"EVENT_TCPIP_DHCP_INIT_FAILED","features":[446]},{"name":"EVENT_TCPIP_INTERFACE_BIND_FAILURE","features":[446]},{"name":"EVENT_TCPIP_INVALID_ADDRESS","features":[446]},{"name":"EVENT_TCPIP_INVALID_DEFAULT_GATEWAY","features":[446]},{"name":"EVENT_TCPIP_INVALID_MASK","features":[446]},{"name":"EVENT_TCPIP_IPV4_UNINSTALLED","features":[446]},{"name":"EVENT_TCPIP_IP_INIT_FAILED","features":[446]},{"name":"EVENT_TCPIP_MEDIA_CONNECT","features":[446]},{"name":"EVENT_TCPIP_MEDIA_DISCONNECT","features":[446]},{"name":"EVENT_TCPIP_NO_ADAPTER_RESOURCES","features":[446]},{"name":"EVENT_TCPIP_NO_ADDRESS_LIST","features":[446]},{"name":"EVENT_TCPIP_NO_BINDINGS","features":[446]},{"name":"EVENT_TCPIP_NO_MASK","features":[446]},{"name":"EVENT_TCPIP_NO_MASK_LIST","features":[446]},{"name":"EVENT_TCPIP_NO_RESOURCES_FOR_INIT","features":[446]},{"name":"EVENT_TCPIP_NTE_CONTEXT_LIST_FAILURE","features":[446]},{"name":"EVENT_TCPIP_OUT_OF_ORDER_FRAGMENTS_EXCEEDED","features":[446]},{"name":"EVENT_TCPIP_PCF_CLEAR_FILTER_FAILURE","features":[446]},{"name":"EVENT_TCPIP_PCF_MISSING_CAPABILITY","features":[446]},{"name":"EVENT_TCPIP_PCF_MULTICAST_OID_ISSUE","features":[446]},{"name":"EVENT_TCPIP_PCF_NO_ARP_FILTER","features":[446]},{"name":"EVENT_TCPIP_PCF_SET_FILTER_FAILURE","features":[446]},{"name":"EVENT_TCPIP_TCP_CONNECTIONS_PERF_IMPACTED","features":[446]},{"name":"EVENT_TCPIP_TCP_CONNECT_LIMIT_REACHED","features":[446]},{"name":"EVENT_TCPIP_TCP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[446]},{"name":"EVENT_TCPIP_TCP_INIT_FAILED","features":[446]},{"name":"EVENT_TCPIP_TCP_MPP_ATTACKS_DETECTED","features":[446]},{"name":"EVENT_TCPIP_TCP_TIME_WAIT_COLLISION","features":[446]},{"name":"EVENT_TCPIP_TCP_WSD_WS_RESTRICTED","features":[446]},{"name":"EVENT_TCPIP_TOO_MANY_GATEWAYS","features":[446]},{"name":"EVENT_TCPIP_TOO_MANY_NETS","features":[446]},{"name":"EVENT_TCPIP_UDP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[446]},{"name":"EVENT_TCPIP_UDP_LIMIT_REACHED","features":[446]},{"name":"EVENT_TRANSACT_INVALID","features":[446]},{"name":"EVENT_TRANSACT_TIMEOUT","features":[446]},{"name":"EVENT_TRANSPORT_ADAPTER_NOT_FOUND","features":[446]},{"name":"EVENT_TRANSPORT_BAD_PROTOCOL","features":[446]},{"name":"EVENT_TRANSPORT_BINDING_FAILED","features":[446]},{"name":"EVENT_TRANSPORT_QUERY_OID_FAILED","features":[446]},{"name":"EVENT_TRANSPORT_REGISTER_FAILED","features":[446]},{"name":"EVENT_TRANSPORT_RESOURCE_LIMIT","features":[446]},{"name":"EVENT_TRANSPORT_RESOURCE_POOL","features":[446]},{"name":"EVENT_TRANSPORT_RESOURCE_SPECIFIC","features":[446]},{"name":"EVENT_TRANSPORT_SET_OID_FAILED","features":[446]},{"name":"EVENT_TRANSPORT_TOO_MANY_LINKS","features":[446]},{"name":"EVENT_TRANSPORT_TRANSFER_DATA","features":[446]},{"name":"EVENT_TRK_INTERNAL_ERROR","features":[446]},{"name":"EVENT_TRK_SERVICE_CORRUPT_LOG","features":[446]},{"name":"EVENT_TRK_SERVICE_DUPLICATE_VOLIDS","features":[446]},{"name":"EVENT_TRK_SERVICE_MOVE_QUOTA_EXCEEDED","features":[446]},{"name":"EVENT_TRK_SERVICE_START_FAILURE","features":[446]},{"name":"EVENT_TRK_SERVICE_START_SUCCESS","features":[446]},{"name":"EVENT_TRK_SERVICE_VOLUME_CLAIM","features":[446]},{"name":"EVENT_TRK_SERVICE_VOLUME_CREATE","features":[446]},{"name":"EVENT_TRK_SERVICE_VOL_QUOTA_EXCEEDED","features":[446]},{"name":"EVENT_UP_DRIVER_ON_MP","features":[446]},{"name":"EVENT_WEBCLIENT_CLOSE_DELETE_FAILED","features":[446]},{"name":"EVENT_WEBCLIENT_CLOSE_PROPPATCH_FAILED","features":[446]},{"name":"EVENT_WEBCLIENT_CLOSE_PUT_FAILED","features":[446]},{"name":"EVENT_WEBCLIENT_SETINFO_PROPPATCH_FAILED","features":[446]},{"name":"EVENT_WINNAT_SESSION_LIMIT_REACHED","features":[446]},{"name":"EVENT_WINSOCK_CLOSESOCKET_STUCK","features":[446]},{"name":"EVENT_WINSOCK_TDI_FILTER_DETECTED","features":[446]},{"name":"EVENT_WSK_OWNINGTHREAD_PARAMETER_IGNORED","features":[446]},{"name":"EVLEN","features":[446]},{"name":"EXTRA_EXIT_POINT","features":[446]},{"name":"EXTRA_EXIT_POINT_DELETED","features":[446]},{"name":"EXTRA_EXIT_POINT_NOT_DELETED","features":[446]},{"name":"EXTRA_VOLUME","features":[446]},{"name":"EXTRA_VOLUME_DELETED","features":[446]},{"name":"EXTRA_VOLUME_NOT_DELETED","features":[446]},{"name":"FILTER_INTERDOMAIN_TRUST_ACCOUNT","features":[446]},{"name":"FILTER_NORMAL_ACCOUNT","features":[446]},{"name":"FILTER_SERVER_TRUST_ACCOUNT","features":[446]},{"name":"FILTER_TEMP_DUPLICATE_ACCOUNT","features":[446]},{"name":"FILTER_WORKSTATION_TRUST_ACCOUNT","features":[446]},{"name":"FLAT_STRING","features":[446]},{"name":"FORCE_LEVEL_FLAGS","features":[446]},{"name":"GNLEN","features":[446]},{"name":"GROUPIDMASK","features":[446]},{"name":"GROUP_ALL_PARMNUM","features":[446]},{"name":"GROUP_ATTRIBUTES_PARMNUM","features":[446]},{"name":"GROUP_COMMENT_PARMNUM","features":[446]},{"name":"GROUP_INFO_0","features":[446]},{"name":"GROUP_INFO_1","features":[446]},{"name":"GROUP_INFO_1002","features":[446]},{"name":"GROUP_INFO_1005","features":[446]},{"name":"GROUP_INFO_2","features":[446]},{"name":"GROUP_INFO_3","features":[303,446]},{"name":"GROUP_NAME_PARMNUM","features":[446]},{"name":"GROUP_SPECIALGRP_ADMINS","features":[446]},{"name":"GROUP_SPECIALGRP_GUESTS","features":[446]},{"name":"GROUP_SPECIALGRP_LOCAL","features":[446]},{"name":"GROUP_SPECIALGRP_USERS","features":[446]},{"name":"GROUP_USERS_INFO_0","features":[446]},{"name":"GROUP_USERS_INFO_1","features":[446]},{"name":"GetNetScheduleAccountInformation","features":[446]},{"name":"HARDWARE_ADDRESS","features":[446]},{"name":"HARDWARE_ADDRESS_LENGTH","features":[446]},{"name":"HELP_MSG_FILENAME","features":[446]},{"name":"HLOG","features":[446]},{"name":"IEnumNetCfgBindingInterface","features":[446]},{"name":"IEnumNetCfgBindingPath","features":[446]},{"name":"IEnumNetCfgComponent","features":[446]},{"name":"INTERFACE_INFO_REVISION_1","features":[446]},{"name":"INVALID_TRACEID","features":[446]},{"name":"INetCfg","features":[446]},{"name":"INetCfgBindingInterface","features":[446]},{"name":"INetCfgBindingPath","features":[446]},{"name":"INetCfgClass","features":[446]},{"name":"INetCfgClassSetup","features":[446]},{"name":"INetCfgClassSetup2","features":[446]},{"name":"INetCfgComponent","features":[446]},{"name":"INetCfgComponentBindings","features":[446]},{"name":"INetCfgComponentControl","features":[446]},{"name":"INetCfgComponentNotifyBinding","features":[446]},{"name":"INetCfgComponentNotifyGlobal","features":[446]},{"name":"INetCfgComponentPropertyUi","features":[446]},{"name":"INetCfgComponentSetup","features":[446]},{"name":"INetCfgComponentSysPrep","features":[446]},{"name":"INetCfgComponentUpperEdge","features":[446]},{"name":"INetCfgLock","features":[446]},{"name":"INetCfgPnpReconfigCallback","features":[446]},{"name":"INetCfgSysPrep","features":[446]},{"name":"INetLanConnectionUiInfo","features":[446]},{"name":"INetRasConnectionIpUiInfo","features":[446]},{"name":"IPX_PROTOCOL_BASE","features":[446]},{"name":"IPX_PROTOCOL_RIP","features":[446]},{"name":"IProvisioningDomain","features":[446]},{"name":"IProvisioningProfileWireless","features":[446]},{"name":"IR_PROMISCUOUS","features":[446]},{"name":"IR_PROMISCUOUS_MULTICAST","features":[446]},{"name":"I_NetLogonControl2","features":[446]},{"name":"JOB_ADD_CURRENT_DATE","features":[446]},{"name":"JOB_EXEC_ERROR","features":[446]},{"name":"JOB_NONINTERACTIVE","features":[446]},{"name":"JOB_RUNS_TODAY","features":[446]},{"name":"JOB_RUN_PERIODICALLY","features":[446]},{"name":"KNOWLEDGE_INCONSISTENCY_DETECTED","features":[446]},{"name":"LG_INCLUDE_INDIRECT","features":[446]},{"name":"LM20_CNLEN","features":[446]},{"name":"LM20_DEVLEN","features":[446]},{"name":"LM20_DNLEN","features":[446]},{"name":"LM20_GNLEN","features":[446]},{"name":"LM20_MAXCOMMENTSZ","features":[446]},{"name":"LM20_NNLEN","features":[446]},{"name":"LM20_PATHLEN","features":[446]},{"name":"LM20_PWLEN","features":[446]},{"name":"LM20_QNLEN","features":[446]},{"name":"LM20_SERVICE_ACTIVE","features":[446]},{"name":"LM20_SERVICE_CONTINUE_PENDING","features":[446]},{"name":"LM20_SERVICE_PAUSED","features":[446]},{"name":"LM20_SERVICE_PAUSE_PENDING","features":[446]},{"name":"LM20_SNLEN","features":[446]},{"name":"LM20_STXTLEN","features":[446]},{"name":"LM20_UNCLEN","features":[446]},{"name":"LM20_UNLEN","features":[446]},{"name":"LM_REDIR_FAILURE","features":[446]},{"name":"LOCALGROUP_COMMENT_PARMNUM","features":[446]},{"name":"LOCALGROUP_INFO_0","features":[446]},{"name":"LOCALGROUP_INFO_1","features":[446]},{"name":"LOCALGROUP_INFO_1002","features":[446]},{"name":"LOCALGROUP_MEMBERS_INFO_0","features":[303,446]},{"name":"LOCALGROUP_MEMBERS_INFO_1","features":[303,446,306]},{"name":"LOCALGROUP_MEMBERS_INFO_2","features":[303,446,306]},{"name":"LOCALGROUP_MEMBERS_INFO_3","features":[446]},{"name":"LOCALGROUP_NAME_PARMNUM","features":[446]},{"name":"LOCALGROUP_USERS_INFO_0","features":[446]},{"name":"LOGFLAGS_BACKWARD","features":[446]},{"name":"LOGFLAGS_FORWARD","features":[446]},{"name":"LOGFLAGS_SEEK","features":[446]},{"name":"LOWER_GET_HINT_MASK","features":[446]},{"name":"LOWER_HINT_MASK","features":[446]},{"name":"LogErrorA","features":[446]},{"name":"LogErrorW","features":[446]},{"name":"LogEventA","features":[446]},{"name":"LogEventW","features":[446]},{"name":"MACHINE_UNJOINED","features":[446]},{"name":"MAJOR_VERSION_MASK","features":[446]},{"name":"MAXCOMMENTSZ","features":[446]},{"name":"MAXPERMENTRIES","features":[446]},{"name":"MAX_LANMAN_MESSAGE_ID","features":[446]},{"name":"MAX_NERR","features":[446]},{"name":"MAX_PASSWD_LEN","features":[446]},{"name":"MAX_PREFERRED_LENGTH","features":[446]},{"name":"MAX_PROTOCOL_DLL_LEN","features":[446]},{"name":"MAX_PROTOCOL_NAME_LEN","features":[446]},{"name":"MESSAGE_FILENAME","features":[446]},{"name":"MFE_BOUNDARY_REACHED","features":[446]},{"name":"MFE_IIF","features":[446]},{"name":"MFE_NOT_FORWARDING","features":[446]},{"name":"MFE_NOT_LAST_HOP","features":[446]},{"name":"MFE_NO_ERROR","features":[446]},{"name":"MFE_NO_MULTICAST","features":[446]},{"name":"MFE_NO_ROUTE","features":[446]},{"name":"MFE_NO_SPACE","features":[446]},{"name":"MFE_OIF_PRUNED","features":[446]},{"name":"MFE_OLD_ROUTER","features":[446]},{"name":"MFE_PROHIBITED","features":[446]},{"name":"MFE_PRUNED_UPSTREAM","features":[446]},{"name":"MFE_REACHED_CORE","features":[446]},{"name":"MFE_WRONG_IF","features":[446]},{"name":"MIN_LANMAN_MESSAGE_ID","features":[446]},{"name":"MISSING_EXIT_POINT","features":[446]},{"name":"MISSING_EXIT_POINT_CREATED","features":[446]},{"name":"MISSING_EXIT_POINT_NOT_CREATED","features":[446]},{"name":"MISSING_VOLUME","features":[446]},{"name":"MISSING_VOLUME_CREATED","features":[446]},{"name":"MISSING_VOLUME_NOT_CREATED","features":[446]},{"name":"MODALS_DOMAIN_ID_PARMNUM","features":[446]},{"name":"MODALS_DOMAIN_NAME_PARMNUM","features":[446]},{"name":"MODALS_FORCE_LOGOFF_PARMNUM","features":[446]},{"name":"MODALS_LOCKOUT_DURATION_PARMNUM","features":[446]},{"name":"MODALS_LOCKOUT_OBSERVATION_WINDOW_PARMNUM","features":[446]},{"name":"MODALS_LOCKOUT_THRESHOLD_PARMNUM","features":[446]},{"name":"MODALS_MAX_PASSWD_AGE_PARMNUM","features":[446]},{"name":"MODALS_MIN_PASSWD_AGE_PARMNUM","features":[446]},{"name":"MODALS_MIN_PASSWD_LEN_PARMNUM","features":[446]},{"name":"MODALS_PASSWD_HIST_LEN_PARMNUM","features":[446]},{"name":"MODALS_PRIMARY_PARMNUM","features":[446]},{"name":"MODALS_ROLE_PARMNUM","features":[446]},{"name":"MPR_PROTOCOL_0","features":[446]},{"name":"MRINFO_DISABLED_FLAG","features":[446]},{"name":"MRINFO_DOWN_FLAG","features":[446]},{"name":"MRINFO_LEAF_FLAG","features":[446]},{"name":"MRINFO_PIM_FLAG","features":[446]},{"name":"MRINFO_QUERIER_FLAG","features":[446]},{"name":"MRINFO_TUNNEL_FLAG","features":[446]},{"name":"MSA_INFO_0","features":[446]},{"name":"MSA_INFO_LEVEL","features":[446]},{"name":"MSA_INFO_STATE","features":[446]},{"name":"MSGNAME_FORWARDED_FROM","features":[446]},{"name":"MSGNAME_FORWARDED_TO","features":[446]},{"name":"MSGNAME_NOT_FORWARDED","features":[446]},{"name":"MSG_INFO_0","features":[446]},{"name":"MSG_INFO_1","features":[446]},{"name":"MS_ROUTER_VERSION","features":[446]},{"name":"MprSetupProtocolEnum","features":[446]},{"name":"MprSetupProtocolFree","features":[446]},{"name":"MsaInfoCanInstall","features":[446]},{"name":"MsaInfoCannotInstall","features":[446]},{"name":"MsaInfoInstalled","features":[446]},{"name":"MsaInfoLevel0","features":[446]},{"name":"MsaInfoLevelMax","features":[446]},{"name":"MsaInfoNotExist","features":[446]},{"name":"MsaInfoNotService","features":[446]},{"name":"NCF_DONTEXPOSELOWER","features":[446]},{"name":"NCF_FILTER","features":[446]},{"name":"NCF_FIXED_BINDING","features":[446]},{"name":"NCF_HAS_UI","features":[446]},{"name":"NCF_HIDDEN","features":[446]},{"name":"NCF_HIDE_BINDING","features":[446]},{"name":"NCF_LOWER","features":[446]},{"name":"NCF_LW_FILTER","features":[446]},{"name":"NCF_MULTIPORT_INSTANCED_ADAPTER","features":[446]},{"name":"NCF_NDIS_PROTOCOL","features":[446]},{"name":"NCF_NOT_USER_REMOVABLE","features":[446]},{"name":"NCF_NO_SERVICE","features":[446]},{"name":"NCF_PHYSICAL","features":[446]},{"name":"NCF_SINGLE_INSTANCE","features":[446]},{"name":"NCF_SOFTWARE_ENUMERATED","features":[446]},{"name":"NCF_UPPER","features":[446]},{"name":"NCF_VIRTUAL","features":[446]},{"name":"NCN_ADD","features":[446]},{"name":"NCN_BINDING_PATH","features":[446]},{"name":"NCN_DISABLE","features":[446]},{"name":"NCN_ENABLE","features":[446]},{"name":"NCN_NET","features":[446]},{"name":"NCN_NETCLIENT","features":[446]},{"name":"NCN_NETSERVICE","features":[446]},{"name":"NCN_NETTRANS","features":[446]},{"name":"NCN_PROPERTYCHANGE","features":[446]},{"name":"NCN_REMOVE","features":[446]},{"name":"NCN_UPDATE","features":[446]},{"name":"NCPNP_RECONFIG_LAYER","features":[446]},{"name":"NCRL_NDIS","features":[446]},{"name":"NCRL_TDI","features":[446]},{"name":"NCRP_FLAGS","features":[446]},{"name":"NCRP_QUERY_PROPERTY_UI","features":[446]},{"name":"NCRP_SHOW_PROPERTY_UI","features":[446]},{"name":"NELOG_AT_Exec_Err","features":[446]},{"name":"NELOG_AT_cannot_read","features":[446]},{"name":"NELOG_AT_cannot_write","features":[446]},{"name":"NELOG_AT_sched_err","features":[446]},{"name":"NELOG_AT_schedule_file_created","features":[446]},{"name":"NELOG_Access_File_Bad","features":[446]},{"name":"NELOG_Build_Name","features":[446]},{"name":"NELOG_Cant_Make_Msg_File","features":[446]},{"name":"NELOG_DiskFT","features":[446]},{"name":"NELOG_DriverNotLoaded","features":[446]},{"name":"NELOG_Entries_Lost","features":[446]},{"name":"NELOG_Error_in_DLL","features":[446]},{"name":"NELOG_Exec_Netservr_NoMem","features":[446]},{"name":"NELOG_FT_ErrLog_Too_Large","features":[446]},{"name":"NELOG_FT_Update_In_Progress","features":[446]},{"name":"NELOG_FailedToGetComputerName","features":[446]},{"name":"NELOG_FailedToRegisterSC","features":[446]},{"name":"NELOG_FailedToSetServiceStatus","features":[446]},{"name":"NELOG_File_Changed","features":[446]},{"name":"NELOG_Files_Dont_Fit","features":[446]},{"name":"NELOG_HardErr_From_Server","features":[446]},{"name":"NELOG_HotFix","features":[446]},{"name":"NELOG_Init_Chardev_Err","features":[446]},{"name":"NELOG_Init_Exec_Fail","features":[446]},{"name":"NELOG_Init_OpenCreate_Err","features":[446]},{"name":"NELOG_Init_Seg_Overflow","features":[446]},{"name":"NELOG_Internal_Error","features":[446]},{"name":"NELOG_Invalid_Config_File","features":[446]},{"name":"NELOG_Invalid_Config_Line","features":[446]},{"name":"NELOG_Ioctl_Error","features":[446]},{"name":"NELOG_Joined_Domain","features":[446]},{"name":"NELOG_Joined_Workgroup","features":[446]},{"name":"NELOG_Lazy_Write_Err","features":[446]},{"name":"NELOG_LocalSecFail1","features":[446]},{"name":"NELOG_LocalSecFail2","features":[446]},{"name":"NELOG_LocalSecFail3","features":[446]},{"name":"NELOG_LocalSecGeneralFail","features":[446]},{"name":"NELOG_Mail_Slt_Err","features":[446]},{"name":"NELOG_Mailslot_err","features":[446]},{"name":"NELOG_Message_Send","features":[446]},{"name":"NELOG_Missing_Parameter","features":[446]},{"name":"NELOG_Msg_Log_Err","features":[446]},{"name":"NELOG_Msg_Sem_Shutdown","features":[446]},{"name":"NELOG_Msg_Shutdown","features":[446]},{"name":"NELOG_Msg_Unexpected_SMB_Type","features":[446]},{"name":"NELOG_Name_Expansion","features":[446]},{"name":"NELOG_Ncb_Error","features":[446]},{"name":"NELOG_Ncb_TooManyErr","features":[446]},{"name":"NELOG_NetBios","features":[446]},{"name":"NELOG_NetLogonFailedToInitializeAuthzRm","features":[446]},{"name":"NELOG_NetLogonFailedToInitializeRPCSD","features":[446]},{"name":"NELOG_NetWkSta_Internal_Error","features":[446]},{"name":"NELOG_NetWkSta_NCB_Err","features":[446]},{"name":"NELOG_NetWkSta_No_Resource","features":[446]},{"name":"NELOG_NetWkSta_Reset_Err","features":[446]},{"name":"NELOG_NetWkSta_SMB_Err","features":[446]},{"name":"NELOG_NetWkSta_Stuck_VC_Err","features":[446]},{"name":"NELOG_NetWkSta_Too_Many","features":[446]},{"name":"NELOG_NetWkSta_VC_Err","features":[446]},{"name":"NELOG_NetWkSta_Write_Behind_Err","features":[446]},{"name":"NELOG_Net_Not_Started","features":[446]},{"name":"NELOG_NetlogonAddNameFailure","features":[446]},{"name":"NELOG_NetlogonAuthDCFail","features":[446]},{"name":"NELOG_NetlogonAuthDomainDowngraded","features":[446]},{"name":"NELOG_NetlogonAuthNoDomainController","features":[446]},{"name":"NELOG_NetlogonAuthNoTrustLsaSecret","features":[446]},{"name":"NELOG_NetlogonAuthNoTrustSamAccount","features":[446]},{"name":"NELOG_NetlogonAuthNoUplevelDomainController","features":[446]},{"name":"NELOG_NetlogonBadSiteName","features":[446]},{"name":"NELOG_NetlogonBadSubnetName","features":[446]},{"name":"NELOG_NetlogonBrowserDriver","features":[446]},{"name":"NELOG_NetlogonChangeLogCorrupt","features":[446]},{"name":"NELOG_NetlogonDcOldSiteCovered","features":[446]},{"name":"NELOG_NetlogonDcSiteCovered","features":[446]},{"name":"NELOG_NetlogonDcSiteNotCovered","features":[446]},{"name":"NELOG_NetlogonDcSiteNotCoveredAuto","features":[446]},{"name":"NELOG_NetlogonDnsDeregAborted","features":[446]},{"name":"NELOG_NetlogonDnsHostNameLowerCasingFailed","features":[446]},{"name":"NELOG_NetlogonDownLevelLogoffFailed","features":[446]},{"name":"NELOG_NetlogonDownLevelLogonFailed","features":[446]},{"name":"NELOG_NetlogonDuplicateMachineAccounts","features":[446]},{"name":"NELOG_NetlogonDynamicDnsDeregisterFailure","features":[446]},{"name":"NELOG_NetlogonDynamicDnsFailure","features":[446]},{"name":"NELOG_NetlogonDynamicDnsRegisterFailure","features":[446]},{"name":"NELOG_NetlogonDynamicDnsServerFailure","features":[446]},{"name":"NELOG_NetlogonFailedAccountDelta","features":[446]},{"name":"NELOG_NetlogonFailedDnsHostNameUpdate","features":[446]},{"name":"NELOG_NetlogonFailedDomainDelta","features":[446]},{"name":"NELOG_NetlogonFailedFileCreate","features":[446]},{"name":"NELOG_NetlogonFailedGlobalGroupDelta","features":[446]},{"name":"NELOG_NetlogonFailedLocalGroupDelta","features":[446]},{"name":"NELOG_NetlogonFailedPolicyDelta","features":[446]},{"name":"NELOG_NetlogonFailedPrimary","features":[446]},{"name":"NELOG_NetlogonFailedSecretDelta","features":[446]},{"name":"NELOG_NetlogonFailedSpnUpdate","features":[446]},{"name":"NELOG_NetlogonFailedToAddAuthzRpcInterface","features":[446]},{"name":"NELOG_NetlogonFailedToAddRpcInterface","features":[446]},{"name":"NELOG_NetlogonFailedToCreateShare","features":[446]},{"name":"NELOG_NetlogonFailedToReadMailslot","features":[446]},{"name":"NELOG_NetlogonFailedToRegisterSC","features":[446]},{"name":"NELOG_NetlogonFailedToUpdateTrustList","features":[446]},{"name":"NELOG_NetlogonFailedTrustedDomainDelta","features":[446]},{"name":"NELOG_NetlogonFailedUserDelta","features":[446]},{"name":"NELOG_NetlogonFullSyncCallFailed","features":[446]},{"name":"NELOG_NetlogonFullSyncCallSuccess","features":[446]},{"name":"NELOG_NetlogonFullSyncFailed","features":[446]},{"name":"NELOG_NetlogonFullSyncSuccess","features":[446]},{"name":"NELOG_NetlogonGcOldSiteCovered","features":[446]},{"name":"NELOG_NetlogonGcSiteCovered","features":[446]},{"name":"NELOG_NetlogonGcSiteNotCovered","features":[446]},{"name":"NELOG_NetlogonGcSiteNotCoveredAuto","features":[446]},{"name":"NELOG_NetlogonGetSubnetToSite","features":[446]},{"name":"NELOG_NetlogonInvalidDwordParameterValue","features":[446]},{"name":"NELOG_NetlogonInvalidGenericParameterValue","features":[446]},{"name":"NELOG_NetlogonLanmanBdcsNotAllowed","features":[446]},{"name":"NELOG_NetlogonMachinePasswdSetSucceeded","features":[446]},{"name":"NELOG_NetlogonMsaPasswdSetSucceeded","features":[446]},{"name":"NELOG_NetlogonNTLogoffFailed","features":[446]},{"name":"NELOG_NetlogonNTLogonFailed","features":[446]},{"name":"NELOG_NetlogonNdncOldSiteCovered","features":[446]},{"name":"NELOG_NetlogonNdncSiteCovered","features":[446]},{"name":"NELOG_NetlogonNdncSiteNotCovered","features":[446]},{"name":"NELOG_NetlogonNdncSiteNotCoveredAuto","features":[446]},{"name":"NELOG_NetlogonNoAddressToSiteMapping","features":[446]},{"name":"NELOG_NetlogonNoDynamicDns","features":[446]},{"name":"NELOG_NetlogonNoDynamicDnsManual","features":[446]},{"name":"NELOG_NetlogonNoSiteForClient","features":[446]},{"name":"NELOG_NetlogonNoSiteForClients","features":[446]},{"name":"NELOG_NetlogonPartialSiteMappingForClients","features":[446]},{"name":"NELOG_NetlogonPartialSyncCallFailed","features":[446]},{"name":"NELOG_NetlogonPartialSyncCallSuccess","features":[446]},{"name":"NELOG_NetlogonPartialSyncFailed","features":[446]},{"name":"NELOG_NetlogonPartialSyncSuccess","features":[446]},{"name":"NELOG_NetlogonPasswdSetFailed","features":[446]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsDeregister","features":[446]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsRegister","features":[446]},{"name":"NELOG_NetlogonRemoteDynamicDnsDeregisterFailure","features":[446]},{"name":"NELOG_NetlogonRemoteDynamicDnsRegisterFailure","features":[446]},{"name":"NELOG_NetlogonRemoteDynamicDnsUpdateRequestFailure","features":[446]},{"name":"NELOG_NetlogonRequireSignOrSealError","features":[446]},{"name":"NELOG_NetlogonRpcCallCancelled","features":[446]},{"name":"NELOG_NetlogonRpcPortRequestFailure","features":[446]},{"name":"NELOG_NetlogonSSIInitError","features":[446]},{"name":"NELOG_NetlogonServerAuthFailed","features":[446]},{"name":"NELOG_NetlogonServerAuthFailedNoAccount","features":[446]},{"name":"NELOG_NetlogonServerAuthNoTrustSamAccount","features":[446]},{"name":"NELOG_NetlogonSessionTypeWrong","features":[446]},{"name":"NELOG_NetlogonSpnCrackNamesFailure","features":[446]},{"name":"NELOG_NetlogonSpnMultipleSamAccountNames","features":[446]},{"name":"NELOG_NetlogonSyncError","features":[446]},{"name":"NELOG_NetlogonSystemError","features":[446]},{"name":"NELOG_NetlogonTooManyGlobalGroups","features":[446]},{"name":"NELOG_NetlogonTrackingError","features":[446]},{"name":"NELOG_NetlogonUserValidationReqInitialTimeOut","features":[446]},{"name":"NELOG_NetlogonUserValidationReqRecurringTimeOut","features":[446]},{"name":"NELOG_NetlogonUserValidationReqWaitInitialWarning","features":[446]},{"name":"NELOG_NetlogonUserValidationReqWaitRecurringWarning","features":[446]},{"name":"NELOG_NoTranportLoaded","features":[446]},{"name":"NELOG_OEM_Code","features":[446]},{"name":"NELOG_ReleaseMem_Alert","features":[446]},{"name":"NELOG_Remote_API","features":[446]},{"name":"NELOG_ReplAccessDenied","features":[446]},{"name":"NELOG_ReplBadExport","features":[446]},{"name":"NELOG_ReplBadImport","features":[446]},{"name":"NELOG_ReplBadMsg","features":[446]},{"name":"NELOG_ReplCannotMasterDir","features":[446]},{"name":"NELOG_ReplLogonFailed","features":[446]},{"name":"NELOG_ReplLostMaster","features":[446]},{"name":"NELOG_ReplMaxFiles","features":[446]},{"name":"NELOG_ReplMaxTreeDepth","features":[446]},{"name":"NELOG_ReplNetErr","features":[446]},{"name":"NELOG_ReplSignalFileErr","features":[446]},{"name":"NELOG_ReplSysErr","features":[446]},{"name":"NELOG_ReplUpdateError","features":[446]},{"name":"NELOG_ReplUserCurDir","features":[446]},{"name":"NELOG_ReplUserLoged","features":[446]},{"name":"NELOG_Resource_Shortage","features":[446]},{"name":"NELOG_RplAdapterResource","features":[446]},{"name":"NELOG_RplBackupDatabase","features":[446]},{"name":"NELOG_RplCheckConfigs","features":[446]},{"name":"NELOG_RplCheckSecurity","features":[446]},{"name":"NELOG_RplCreateProfiles","features":[446]},{"name":"NELOG_RplFileCopy","features":[446]},{"name":"NELOG_RplFileDelete","features":[446]},{"name":"NELOG_RplFilePerms","features":[446]},{"name":"NELOG_RplInitDatabase","features":[446]},{"name":"NELOG_RplInitRestoredDatabase","features":[446]},{"name":"NELOG_RplMessages","features":[446]},{"name":"NELOG_RplRegistry","features":[446]},{"name":"NELOG_RplReplaceRPLDISK","features":[446]},{"name":"NELOG_RplRestoreDatabaseFailure","features":[446]},{"name":"NELOG_RplRestoreDatabaseSuccess","features":[446]},{"name":"NELOG_RplSystem","features":[446]},{"name":"NELOG_RplUpgradeDBTo40","features":[446]},{"name":"NELOG_RplWkstaBbcFile","features":[446]},{"name":"NELOG_RplWkstaFileChecksum","features":[446]},{"name":"NELOG_RplWkstaFileLineCount","features":[446]},{"name":"NELOG_RplWkstaFileOpen","features":[446]},{"name":"NELOG_RplWkstaFileRead","features":[446]},{"name":"NELOG_RplWkstaFileSize","features":[446]},{"name":"NELOG_RplWkstaInternal","features":[446]},{"name":"NELOG_RplWkstaMemory","features":[446]},{"name":"NELOG_RplWkstaNetwork","features":[446]},{"name":"NELOG_RplWkstaTimeout","features":[446]},{"name":"NELOG_RplWkstaWrongVersion","features":[446]},{"name":"NELOG_RplXnsBoot","features":[446]},{"name":"NELOG_SMB_Illegal","features":[446]},{"name":"NELOG_Server_Lock_Failure","features":[446]},{"name":"NELOG_Service_Fail","features":[446]},{"name":"NELOG_Srv_Close_Failure","features":[446]},{"name":"NELOG_Srv_No_Mem_Grow","features":[446]},{"name":"NELOG_Srv_Thread_Failure","features":[446]},{"name":"NELOG_Srvnet_NB_Open","features":[446]},{"name":"NELOG_Srvnet_Not_Started","features":[446]},{"name":"NELOG_System_Error","features":[446]},{"name":"NELOG_System_Semaphore","features":[446]},{"name":"NELOG_UPS_CannotOpenDriver","features":[446]},{"name":"NELOG_UPS_CmdFileConfig","features":[446]},{"name":"NELOG_UPS_CmdFileError","features":[446]},{"name":"NELOG_UPS_CmdFileExec","features":[446]},{"name":"NELOG_UPS_PowerBack","features":[446]},{"name":"NELOG_UPS_PowerOut","features":[446]},{"name":"NELOG_UPS_Shutdown","features":[446]},{"name":"NELOG_Unable_To_Lock_Segment","features":[446]},{"name":"NELOG_Unable_To_Unlock_Segment","features":[446]},{"name":"NELOG_Uninstall_Service","features":[446]},{"name":"NELOG_VIO_POPUP_ERR","features":[446]},{"name":"NELOG_Wksta_Bad_Mailslot_SMB","features":[446]},{"name":"NELOG_Wksta_BiosThreadFailure","features":[446]},{"name":"NELOG_Wksta_Compname","features":[446]},{"name":"NELOG_Wksta_HostTab_Full","features":[446]},{"name":"NELOG_Wksta_Infoseg","features":[446]},{"name":"NELOG_Wksta_IniSeg","features":[446]},{"name":"NELOG_Wksta_SSIRelogon","features":[446]},{"name":"NELOG_Wksta_UASInit","features":[446]},{"name":"NELOG_Wrong_DLL_Version","features":[446]},{"name":"NERR_ACFFileIOFail","features":[446]},{"name":"NERR_ACFNoParent","features":[446]},{"name":"NERR_ACFNoRoom","features":[446]},{"name":"NERR_ACFNotFound","features":[446]},{"name":"NERR_ACFNotLoaded","features":[446]},{"name":"NERR_ACFTooManyLists","features":[446]},{"name":"NERR_AccountExpired","features":[446]},{"name":"NERR_AccountLockedOut","features":[446]},{"name":"NERR_AccountReuseBlockedByPolicy","features":[446]},{"name":"NERR_AccountUndefined","features":[446]},{"name":"NERR_AcctLimitExceeded","features":[446]},{"name":"NERR_ActiveConns","features":[446]},{"name":"NERR_AddForwarded","features":[446]},{"name":"NERR_AlertExists","features":[446]},{"name":"NERR_AlreadyCloudDomainJoined","features":[446]},{"name":"NERR_AlreadyExists","features":[446]},{"name":"NERR_AlreadyForwarded","features":[446]},{"name":"NERR_AlreadyLoggedOn","features":[446]},{"name":"NERR_BASE","features":[446]},{"name":"NERR_BadAsgType","features":[446]},{"name":"NERR_BadComponent","features":[446]},{"name":"NERR_BadControlRecv","features":[446]},{"name":"NERR_BadDest","features":[446]},{"name":"NERR_BadDev","features":[446]},{"name":"NERR_BadDevString","features":[446]},{"name":"NERR_BadDomainJoinInfo","features":[446]},{"name":"NERR_BadDosFunction","features":[446]},{"name":"NERR_BadDosRetCode","features":[446]},{"name":"NERR_BadEventName","features":[446]},{"name":"NERR_BadFileCheckSum","features":[446]},{"name":"NERR_BadOfflineJoinInfo","features":[446]},{"name":"NERR_BadPassword","features":[446]},{"name":"NERR_BadPasswordCore","features":[446]},{"name":"NERR_BadQueueDevString","features":[446]},{"name":"NERR_BadQueuePriority","features":[446]},{"name":"NERR_BadReceive","features":[446]},{"name":"NERR_BadRecipient","features":[446]},{"name":"NERR_BadServiceName","features":[446]},{"name":"NERR_BadServiceProgName","features":[446]},{"name":"NERR_BadSource","features":[446]},{"name":"NERR_BadTransactConfig","features":[446]},{"name":"NERR_BadUasConfig","features":[446]},{"name":"NERR_BadUsername","features":[446]},{"name":"NERR_BrowserConfiguredToNotRun","features":[446]},{"name":"NERR_BrowserNotStarted","features":[446]},{"name":"NERR_BrowserTableIncomplete","features":[446]},{"name":"NERR_BufTooSmall","features":[446]},{"name":"NERR_CallingRplSrvr","features":[446]},{"name":"NERR_CanNotGrowSegment","features":[446]},{"name":"NERR_CanNotGrowUASFile","features":[446]},{"name":"NERR_CannotUnjoinAadDomain","features":[446]},{"name":"NERR_CannotUpdateAadHostName","features":[446]},{"name":"NERR_CantConnectRplSrvr","features":[446]},{"name":"NERR_CantCreateJoinInfo","features":[446]},{"name":"NERR_CantLoadOfflineHive","features":[446]},{"name":"NERR_CantOpenImageFile","features":[446]},{"name":"NERR_CantType","features":[446]},{"name":"NERR_CantVerifyHostname","features":[446]},{"name":"NERR_CfgCompNotFound","features":[446]},{"name":"NERR_CfgParamNotFound","features":[446]},{"name":"NERR_ClientNameNotFound","features":[446]},{"name":"NERR_CommDevInUse","features":[446]},{"name":"NERR_ComputerAccountNotFound","features":[446]},{"name":"NERR_ConnectionInsecure","features":[446]},{"name":"NERR_DCNotFound","features":[446]},{"name":"NERR_DS8DCNotFound","features":[446]},{"name":"NERR_DS8DCRequired","features":[446]},{"name":"NERR_DS9DCNotFound","features":[446]},{"name":"NERR_DataTypeInvalid","features":[446]},{"name":"NERR_DatabaseUpToDate","features":[446]},{"name":"NERR_DefaultJoinRequired","features":[446]},{"name":"NERR_DelComputerName","features":[446]},{"name":"NERR_DeleteLater","features":[446]},{"name":"NERR_DestExists","features":[446]},{"name":"NERR_DestIdle","features":[446]},{"name":"NERR_DestInvalidOp","features":[446]},{"name":"NERR_DestInvalidState","features":[446]},{"name":"NERR_DestNoRoom","features":[446]},{"name":"NERR_DestNotFound","features":[446]},{"name":"NERR_DevInUse","features":[446]},{"name":"NERR_DevInvalidOpCode","features":[446]},{"name":"NERR_DevNotFound","features":[446]},{"name":"NERR_DevNotOpen","features":[446]},{"name":"NERR_DevNotRedirected","features":[446]},{"name":"NERR_DeviceIsShared","features":[446]},{"name":"NERR_DeviceNotShared","features":[446]},{"name":"NERR_DeviceShareConflict","features":[446]},{"name":"NERR_DfsAlreadyShared","features":[446]},{"name":"NERR_DfsBadRenamePath","features":[446]},{"name":"NERR_DfsCantCreateJunctionPoint","features":[446]},{"name":"NERR_DfsCantRemoveDfsRoot","features":[446]},{"name":"NERR_DfsCantRemoveLastServerShare","features":[446]},{"name":"NERR_DfsChildOrParentInDfs","features":[446]},{"name":"NERR_DfsCyclicalName","features":[446]},{"name":"NERR_DfsDataIsIdentical","features":[446]},{"name":"NERR_DfsDuplicateService","features":[446]},{"name":"NERR_DfsInconsistent","features":[446]},{"name":"NERR_DfsInternalCorruption","features":[446]},{"name":"NERR_DfsInternalError","features":[446]},{"name":"NERR_DfsLeafVolume","features":[446]},{"name":"NERR_DfsNoSuchServer","features":[446]},{"name":"NERR_DfsNoSuchShare","features":[446]},{"name":"NERR_DfsNoSuchVolume","features":[446]},{"name":"NERR_DfsNotALeafVolume","features":[446]},{"name":"NERR_DfsNotSupportedInServerDfs","features":[446]},{"name":"NERR_DfsServerNotDfsAware","features":[446]},{"name":"NERR_DfsServerUpgraded","features":[446]},{"name":"NERR_DfsVolumeAlreadyExists","features":[446]},{"name":"NERR_DfsVolumeDataCorrupt","features":[446]},{"name":"NERR_DfsVolumeHasMultipleServers","features":[446]},{"name":"NERR_DfsVolumeIsInterDfs","features":[446]},{"name":"NERR_DfsVolumeIsOffline","features":[446]},{"name":"NERR_DifferentServers","features":[446]},{"name":"NERR_DriverNotFound","features":[446]},{"name":"NERR_DupNameReboot","features":[446]},{"name":"NERR_DuplicateHostName","features":[446]},{"name":"NERR_DuplicateName","features":[446]},{"name":"NERR_DuplicateShare","features":[446]},{"name":"NERR_ErrCommRunSrv","features":[446]},{"name":"NERR_ErrorExecingGhost","features":[446]},{"name":"NERR_ExecFailure","features":[446]},{"name":"NERR_FileIdNotFound","features":[446]},{"name":"NERR_GroupExists","features":[446]},{"name":"NERR_GroupNotFound","features":[446]},{"name":"NERR_GrpMsgProcessor","features":[446]},{"name":"NERR_HostNameTooLong","features":[446]},{"name":"NERR_ImageParamErr","features":[446]},{"name":"NERR_InUseBySpooler","features":[446]},{"name":"NERR_IncompleteDel","features":[446]},{"name":"NERR_InternalError","features":[446]},{"name":"NERR_InvalidAPI","features":[446]},{"name":"NERR_InvalidComputer","features":[446]},{"name":"NERR_InvalidDatabase","features":[446]},{"name":"NERR_InvalidDevice","features":[446]},{"name":"NERR_InvalidLana","features":[446]},{"name":"NERR_InvalidLogSeek","features":[446]},{"name":"NERR_InvalidLogonHours","features":[446]},{"name":"NERR_InvalidMachineNameForJoin","features":[446]},{"name":"NERR_InvalidMaxUsers","features":[446]},{"name":"NERR_InvalidUASOp","features":[446]},{"name":"NERR_InvalidWorkgroupName","features":[446]},{"name":"NERR_InvalidWorkstation","features":[446]},{"name":"NERR_IsDfsShare","features":[446]},{"name":"NERR_ItemNotFound","features":[446]},{"name":"NERR_JobInvalidState","features":[446]},{"name":"NERR_JobNoRoom","features":[446]},{"name":"NERR_JobNotFound","features":[446]},{"name":"NERR_JoinPerformedMustRestart","features":[446]},{"name":"NERR_LDAPCapableDCRequired","features":[446]},{"name":"NERR_LanmanIniError","features":[446]},{"name":"NERR_LastAdmin","features":[446]},{"name":"NERR_LineTooLong","features":[446]},{"name":"NERR_LocalDrive","features":[446]},{"name":"NERR_LocalForward","features":[446]},{"name":"NERR_LogFileChanged","features":[446]},{"name":"NERR_LogFileCorrupt","features":[446]},{"name":"NERR_LogOverflow","features":[446]},{"name":"NERR_LogonDomainExists","features":[446]},{"name":"NERR_LogonNoUserPath","features":[446]},{"name":"NERR_LogonScriptError","features":[446]},{"name":"NERR_LogonServerConflict","features":[446]},{"name":"NERR_LogonServerNotFound","features":[446]},{"name":"NERR_LogonTrackingError","features":[446]},{"name":"NERR_LogonsPaused","features":[446]},{"name":"NERR_MaxLenExceeded","features":[446]},{"name":"NERR_MsgAlreadyStarted","features":[446]},{"name":"NERR_MsgInitFailed","features":[446]},{"name":"NERR_MsgNotStarted","features":[446]},{"name":"NERR_MultipleNets","features":[446]},{"name":"NERR_NameInUse","features":[446]},{"name":"NERR_NameNotForwarded","features":[446]},{"name":"NERR_NameNotFound","features":[446]},{"name":"NERR_NameUsesIncompatibleCodePage","features":[446]},{"name":"NERR_NetNameNotFound","features":[446]},{"name":"NERR_NetNotStarted","features":[446]},{"name":"NERR_NetlogonNotStarted","features":[446]},{"name":"NERR_NetworkError","features":[446]},{"name":"NERR_NoAlternateServers","features":[446]},{"name":"NERR_NoCommDevs","features":[446]},{"name":"NERR_NoComputerName","features":[446]},{"name":"NERR_NoForwardName","features":[446]},{"name":"NERR_NoJoinPending","features":[446]},{"name":"NERR_NoNetworkResource","features":[446]},{"name":"NERR_NoOfflineJoinInfo","features":[446]},{"name":"NERR_NoRoom","features":[446]},{"name":"NERR_NoRplBootSystem","features":[446]},{"name":"NERR_NoSuchAlert","features":[446]},{"name":"NERR_NoSuchConnection","features":[446]},{"name":"NERR_NoSuchServer","features":[446]},{"name":"NERR_NoSuchSession","features":[446]},{"name":"NERR_NonDosFloppyUsed","features":[446]},{"name":"NERR_NonValidatedLogon","features":[446]},{"name":"NERR_NotInCache","features":[446]},{"name":"NERR_NotInDispatchTbl","features":[446]},{"name":"NERR_NotLocalDomain","features":[446]},{"name":"NERR_NotLocalName","features":[446]},{"name":"NERR_NotLoggedOn","features":[446]},{"name":"NERR_NotPrimary","features":[446]},{"name":"NERR_OpenFiles","features":[446]},{"name":"NERR_PasswordCantChange","features":[446]},{"name":"NERR_PasswordExpired","features":[446]},{"name":"NERR_PasswordFilterError","features":[446]},{"name":"NERR_PasswordHistConflict","features":[446]},{"name":"NERR_PasswordMismatch","features":[446]},{"name":"NERR_PasswordMustChange","features":[446]},{"name":"NERR_PasswordNotComplexEnough","features":[446]},{"name":"NERR_PasswordTooLong","features":[446]},{"name":"NERR_PasswordTooRecent","features":[446]},{"name":"NERR_PasswordTooShort","features":[446]},{"name":"NERR_PausedRemote","features":[446]},{"name":"NERR_PersonalSku","features":[446]},{"name":"NERR_PlainTextSecretsRequired","features":[446]},{"name":"NERR_ProcNoRespond","features":[446]},{"name":"NERR_ProcNotFound","features":[446]},{"name":"NERR_ProfileCleanup","features":[446]},{"name":"NERR_ProfileFileTooBig","features":[446]},{"name":"NERR_ProfileLoadErr","features":[446]},{"name":"NERR_ProfileOffset","features":[446]},{"name":"NERR_ProfileSaveErr","features":[446]},{"name":"NERR_ProfileUnknownCmd","features":[446]},{"name":"NERR_ProgNeedsExtraMem","features":[446]},{"name":"NERR_ProvisioningBlobUnsupported","features":[446]},{"name":"NERR_QExists","features":[446]},{"name":"NERR_QInvalidState","features":[446]},{"name":"NERR_QNoRoom","features":[446]},{"name":"NERR_QNotFound","features":[446]},{"name":"NERR_QueueNotFound","features":[446]},{"name":"NERR_RPL_CONNECTED","features":[446]},{"name":"NERR_RedirectedPath","features":[446]},{"name":"NERR_RemoteBootFailed","features":[446]},{"name":"NERR_RemoteErr","features":[446]},{"name":"NERR_RemoteFull","features":[446]},{"name":"NERR_RemoteOnly","features":[446]},{"name":"NERR_ResourceExists","features":[446]},{"name":"NERR_ResourceNotFound","features":[446]},{"name":"NERR_RplAdapterInfoCorrupted","features":[446]},{"name":"NERR_RplAdapterNameUnavailable","features":[446]},{"name":"NERR_RplAdapterNotFound","features":[446]},{"name":"NERR_RplBackupDatabase","features":[446]},{"name":"NERR_RplBadDatabase","features":[446]},{"name":"NERR_RplBadRegistry","features":[446]},{"name":"NERR_RplBootInUse","features":[446]},{"name":"NERR_RplBootInfoCorrupted","features":[446]},{"name":"NERR_RplBootNameUnavailable","features":[446]},{"name":"NERR_RplBootNotFound","features":[446]},{"name":"NERR_RplBootRestart","features":[446]},{"name":"NERR_RplBootServiceTerm","features":[446]},{"name":"NERR_RplBootStartFailed","features":[446]},{"name":"NERR_RplCannotEnum","features":[446]},{"name":"NERR_RplConfigInfoCorrupted","features":[446]},{"name":"NERR_RplConfigNameUnavailable","features":[446]},{"name":"NERR_RplConfigNotEmpty","features":[446]},{"name":"NERR_RplConfigNotFound","features":[446]},{"name":"NERR_RplIncompatibleProfile","features":[446]},{"name":"NERR_RplInternal","features":[446]},{"name":"NERR_RplLoadrDiskErr","features":[446]},{"name":"NERR_RplLoadrNetBiosErr","features":[446]},{"name":"NERR_RplNeedsRPLUSERAcct","features":[446]},{"name":"NERR_RplNoAdaptersStarted","features":[446]},{"name":"NERR_RplNotRplServer","features":[446]},{"name":"NERR_RplProfileInfoCorrupted","features":[446]},{"name":"NERR_RplProfileNameUnavailable","features":[446]},{"name":"NERR_RplProfileNotEmpty","features":[446]},{"name":"NERR_RplProfileNotFound","features":[446]},{"name":"NERR_RplRplfilesShare","features":[446]},{"name":"NERR_RplSrvrCallFailed","features":[446]},{"name":"NERR_RplVendorInfoCorrupted","features":[446]},{"name":"NERR_RplVendorNameUnavailable","features":[446]},{"name":"NERR_RplVendorNotFound","features":[446]},{"name":"NERR_RplWkstaInfoCorrupted","features":[446]},{"name":"NERR_RplWkstaNameUnavailable","features":[446]},{"name":"NERR_RplWkstaNeedsUserAcct","features":[446]},{"name":"NERR_RplWkstaNotFound","features":[446]},{"name":"NERR_RunSrvPaused","features":[446]},{"name":"NERR_SameAsComputerName","features":[446]},{"name":"NERR_ServerNotStarted","features":[446]},{"name":"NERR_ServiceCtlBusy","features":[446]},{"name":"NERR_ServiceCtlNotValid","features":[446]},{"name":"NERR_ServiceCtlTimeout","features":[446]},{"name":"NERR_ServiceEntryLocked","features":[446]},{"name":"NERR_ServiceInstalled","features":[446]},{"name":"NERR_ServiceKillProc","features":[446]},{"name":"NERR_ServiceNotCtrl","features":[446]},{"name":"NERR_ServiceNotInstalled","features":[446]},{"name":"NERR_ServiceNotStarting","features":[446]},{"name":"NERR_ServiceTableFull","features":[446]},{"name":"NERR_ServiceTableLocked","features":[446]},{"name":"NERR_SetupAlreadyJoined","features":[446]},{"name":"NERR_SetupCheckDNSConfig","features":[446]},{"name":"NERR_SetupDomainController","features":[446]},{"name":"NERR_SetupNotJoined","features":[446]},{"name":"NERR_ShareMem","features":[446]},{"name":"NERR_ShareNotFound","features":[446]},{"name":"NERR_SourceIsDir","features":[446]},{"name":"NERR_SpeGroupOp","features":[446]},{"name":"NERR_SpoolNoMemory","features":[446]},{"name":"NERR_SpoolerNotLoaded","features":[446]},{"name":"NERR_StandaloneLogon","features":[446]},{"name":"NERR_StartingRplBoot","features":[446]},{"name":"NERR_Success","features":[446]},{"name":"NERR_SyncRequired","features":[446]},{"name":"NERR_TargetVersionUnsupported","features":[446]},{"name":"NERR_TimeDiffAtDC","features":[446]},{"name":"NERR_TmpFile","features":[446]},{"name":"NERR_TooManyAlerts","features":[446]},{"name":"NERR_TooManyConnections","features":[446]},{"name":"NERR_TooManyEntries","features":[446]},{"name":"NERR_TooManyFiles","features":[446]},{"name":"NERR_TooManyHostNames","features":[446]},{"name":"NERR_TooManyImageParams","features":[446]},{"name":"NERR_TooManyItems","features":[446]},{"name":"NERR_TooManyNames","features":[446]},{"name":"NERR_TooManyServers","features":[446]},{"name":"NERR_TooManySessions","features":[446]},{"name":"NERR_TooMuchData","features":[446]},{"name":"NERR_TruncatedBroadcast","features":[446]},{"name":"NERR_TryDownLevel","features":[446]},{"name":"NERR_UPSDriverNotStarted","features":[446]},{"name":"NERR_UPSInvalidCommPort","features":[446]},{"name":"NERR_UPSInvalidConfig","features":[446]},{"name":"NERR_UPSShutdownFailed","features":[446]},{"name":"NERR_UPSSignalAsserted","features":[446]},{"name":"NERR_UnableToAddName_F","features":[446]},{"name":"NERR_UnableToAddName_W","features":[446]},{"name":"NERR_UnableToDelName_F","features":[446]},{"name":"NERR_UnableToDelName_W","features":[446]},{"name":"NERR_UnknownDevDir","features":[446]},{"name":"NERR_UnknownServer","features":[446]},{"name":"NERR_UseNotFound","features":[446]},{"name":"NERR_UserExists","features":[446]},{"name":"NERR_UserInGroup","features":[446]},{"name":"NERR_UserLogon","features":[446]},{"name":"NERR_UserNotFound","features":[446]},{"name":"NERR_UserNotInGroup","features":[446]},{"name":"NERR_ValuesNotSet","features":[446]},{"name":"NERR_WkstaInconsistentState","features":[446]},{"name":"NERR_WkstaNotStarted","features":[446]},{"name":"NERR_WriteFault","features":[446]},{"name":"NETBIOS_NAME_LEN","features":[446]},{"name":"NETCFG_CLIENT_CID_MS_MSClient","features":[446]},{"name":"NETCFG_E_ACTIVE_RAS_CONNECTIONS","features":[446]},{"name":"NETCFG_E_ADAPTER_NOT_FOUND","features":[446]},{"name":"NETCFG_E_ALREADY_INITIALIZED","features":[446]},{"name":"NETCFG_E_COMPONENT_REMOVED_PENDING_REBOOT","features":[446]},{"name":"NETCFG_E_DUPLICATE_INSTANCEID","features":[446]},{"name":"NETCFG_E_IN_USE","features":[446]},{"name":"NETCFG_E_MAX_FILTER_LIMIT","features":[446]},{"name":"NETCFG_E_NEED_REBOOT","features":[446]},{"name":"NETCFG_E_NOT_INITIALIZED","features":[446]},{"name":"NETCFG_E_NO_WRITE_LOCK","features":[446]},{"name":"NETCFG_E_VMSWITCH_ACTIVE_OVER_ADAPTER","features":[446]},{"name":"NETCFG_SERVICE_CID_MS_NETBIOS","features":[446]},{"name":"NETCFG_SERVICE_CID_MS_PSCHED","features":[446]},{"name":"NETCFG_SERVICE_CID_MS_SERVER","features":[446]},{"name":"NETCFG_SERVICE_CID_MS_WLBS","features":[446]},{"name":"NETCFG_S_CAUSED_SETUP_CHANGE","features":[446]},{"name":"NETCFG_S_COMMIT_NOW","features":[446]},{"name":"NETCFG_S_DISABLE_QUERY","features":[446]},{"name":"NETCFG_S_REBOOT","features":[446]},{"name":"NETCFG_S_STILL_REFERENCED","features":[446]},{"name":"NETCFG_TRANS_CID_MS_APPLETALK","features":[446]},{"name":"NETCFG_TRANS_CID_MS_NETBEUI","features":[446]},{"name":"NETCFG_TRANS_CID_MS_NETMON","features":[446]},{"name":"NETCFG_TRANS_CID_MS_NWIPX","features":[446]},{"name":"NETCFG_TRANS_CID_MS_NWSPX","features":[446]},{"name":"NETCFG_TRANS_CID_MS_TCPIP","features":[446]},{"name":"NETLOGON_CONTROL_BACKUP_CHANGE_LOG","features":[446]},{"name":"NETLOGON_CONTROL_BREAKPOINT","features":[446]},{"name":"NETLOGON_CONTROL_CHANGE_PASSWORD","features":[446]},{"name":"NETLOGON_CONTROL_FIND_USER","features":[446]},{"name":"NETLOGON_CONTROL_FORCE_DNS_REG","features":[446]},{"name":"NETLOGON_CONTROL_PDC_REPLICATE","features":[446]},{"name":"NETLOGON_CONTROL_QUERY","features":[446]},{"name":"NETLOGON_CONTROL_QUERY_DNS_REG","features":[446]},{"name":"NETLOGON_CONTROL_QUERY_ENC_TYPES","features":[446]},{"name":"NETLOGON_CONTROL_REDISCOVER","features":[446]},{"name":"NETLOGON_CONTROL_REPLICATE","features":[446]},{"name":"NETLOGON_CONTROL_SET_DBFLAG","features":[446]},{"name":"NETLOGON_CONTROL_SYNCHRONIZE","features":[446]},{"name":"NETLOGON_CONTROL_TC_QUERY","features":[446]},{"name":"NETLOGON_CONTROL_TC_VERIFY","features":[446]},{"name":"NETLOGON_CONTROL_TRANSPORT_NOTIFY","features":[446]},{"name":"NETLOGON_CONTROL_TRUNCATE_LOG","features":[446]},{"name":"NETLOGON_CONTROL_UNLOAD_NETLOGON_DLL","features":[446]},{"name":"NETLOGON_DNS_UPDATE_FAILURE","features":[446]},{"name":"NETLOGON_FULL_SYNC_REPLICATION","features":[446]},{"name":"NETLOGON_HAS_IP","features":[446]},{"name":"NETLOGON_HAS_TIMESERV","features":[446]},{"name":"NETLOGON_INFO_1","features":[446]},{"name":"NETLOGON_INFO_2","features":[446]},{"name":"NETLOGON_INFO_3","features":[446]},{"name":"NETLOGON_INFO_4","features":[446]},{"name":"NETLOGON_REDO_NEEDED","features":[446]},{"name":"NETLOGON_REPLICATION_IN_PROGRESS","features":[446]},{"name":"NETLOGON_REPLICATION_NEEDED","features":[446]},{"name":"NETLOGON_VERIFY_STATUS_RETURNED","features":[446]},{"name":"NETLOG_NetlogonNonWindowsSupportsSecureRpc","features":[446]},{"name":"NETLOG_NetlogonRc4Allowed","features":[446]},{"name":"NETLOG_NetlogonRc4Denied","features":[446]},{"name":"NETLOG_NetlogonRpcBacklogLimitFailure","features":[446]},{"name":"NETLOG_NetlogonRpcBacklogLimitSet","features":[446]},{"name":"NETLOG_NetlogonRpcSigningClient","features":[446]},{"name":"NETLOG_NetlogonRpcSigningTrust","features":[446]},{"name":"NETLOG_NetlogonUnsecureRpcClient","features":[446]},{"name":"NETLOG_NetlogonUnsecureRpcMachineAllowedBySsdl","features":[446]},{"name":"NETLOG_NetlogonUnsecureRpcTrust","features":[446]},{"name":"NETLOG_NetlogonUnsecureRpcTrustAllowedBySsdl","features":[446]},{"name":"NETLOG_NetlogonUnsecuredRpcMachineTemporarilyAllowed","features":[446]},{"name":"NETLOG_PassThruFilterError_Request_AdminOverride","features":[446]},{"name":"NETLOG_PassThruFilterError_Request_Blocked","features":[446]},{"name":"NETLOG_PassThruFilterError_Summary_AdminOverride","features":[446]},{"name":"NETLOG_PassThruFilterError_Summary_Blocked","features":[446]},{"name":"NETMAN_VARTYPE_HARDWARE_ADDRESS","features":[446]},{"name":"NETMAN_VARTYPE_STRING","features":[446]},{"name":"NETMAN_VARTYPE_ULONG","features":[446]},{"name":"NETSETUP_ACCT_CREATE","features":[446]},{"name":"NETSETUP_ACCT_DELETE","features":[446]},{"name":"NETSETUP_ALT_SAMACCOUNTNAME","features":[446]},{"name":"NETSETUP_AMBIGUOUS_DC","features":[446]},{"name":"NETSETUP_DEFER_SPN_SET","features":[446]},{"name":"NETSETUP_DNS_NAME_CHANGES_ONLY","features":[446]},{"name":"NETSETUP_DOMAIN_JOIN_IF_JOINED","features":[446]},{"name":"NETSETUP_DONT_CONTROL_SERVICES","features":[446]},{"name":"NETSETUP_FORCE_SPN_SET","features":[446]},{"name":"NETSETUP_IGNORE_UNSUPPORTED_FLAGS","features":[446]},{"name":"NETSETUP_INSTALL_INVOCATION","features":[446]},{"name":"NETSETUP_JOIN_DC_ACCOUNT","features":[446]},{"name":"NETSETUP_JOIN_DOMAIN","features":[446]},{"name":"NETSETUP_JOIN_READONLY","features":[446]},{"name":"NETSETUP_JOIN_STATUS","features":[446]},{"name":"NETSETUP_JOIN_UNSECURE","features":[446]},{"name":"NETSETUP_JOIN_WITH_NEW_NAME","features":[446]},{"name":"NETSETUP_MACHINE_PWD_PASSED","features":[446]},{"name":"NETSETUP_NAME_TYPE","features":[446]},{"name":"NETSETUP_NO_ACCT_REUSE","features":[446]},{"name":"NETSETUP_NO_NETLOGON_CACHE","features":[446]},{"name":"NETSETUP_PROVISION","features":[446]},{"name":"NETSETUP_PROVISIONING_PARAMS","features":[446]},{"name":"NETSETUP_PROVISIONING_PARAMS_CURRENT_VERSION","features":[446]},{"name":"NETSETUP_PROVISIONING_PARAMS_WIN8_VERSION","features":[446]},{"name":"NETSETUP_PROVISION_CHECK_PWD_ONLY","features":[446]},{"name":"NETSETUP_PROVISION_DOWNLEVEL_PRIV_SUPPORT","features":[446]},{"name":"NETSETUP_PROVISION_ONLINE_CALLER","features":[446]},{"name":"NETSETUP_PROVISION_PERSISTENTSITE","features":[446]},{"name":"NETSETUP_PROVISION_REUSE_ACCOUNT","features":[446]},{"name":"NETSETUP_PROVISION_ROOT_CA_CERTS","features":[446]},{"name":"NETSETUP_PROVISION_SKIP_ACCOUNT_SEARCH","features":[446]},{"name":"NETSETUP_PROVISION_USE_DEFAULT_PASSWORD","features":[446]},{"name":"NETSETUP_SET_MACHINE_NAME","features":[446]},{"name":"NETSETUP_WIN9X_UPGRADE","features":[446]},{"name":"NETWORK_INSTALL_TIME","features":[446]},{"name":"NETWORK_NAME","features":[446]},{"name":"NETWORK_UPGRADE_TYPE","features":[446]},{"name":"NET_COMPUTER_NAME_TYPE","features":[446]},{"name":"NET_DFS_ENUM","features":[446]},{"name":"NET_DFS_ENUMEX","features":[446]},{"name":"NET_DISPLAY_GROUP","features":[446]},{"name":"NET_DISPLAY_MACHINE","features":[446]},{"name":"NET_DISPLAY_USER","features":[446]},{"name":"NET_IGNORE_UNSUPPORTED_FLAGS","features":[446]},{"name":"NET_JOIN_DOMAIN_JOIN_OPTIONS","features":[446]},{"name":"NET_REMOTE_COMPUTER_SUPPORTS_OPTIONS","features":[446]},{"name":"NET_REQUEST_PROVISION_OPTIONS","features":[446]},{"name":"NET_SERVER_TYPE","features":[446]},{"name":"NET_USER_ENUM_FILTER_FLAGS","features":[446]},{"name":"NET_VALIDATE_AUTHENTICATION_INPUT_ARG","features":[303,446]},{"name":"NET_VALIDATE_BAD_PASSWORD_COUNT","features":[446]},{"name":"NET_VALIDATE_BAD_PASSWORD_TIME","features":[446]},{"name":"NET_VALIDATE_LOCKOUT_TIME","features":[446]},{"name":"NET_VALIDATE_OUTPUT_ARG","features":[303,446]},{"name":"NET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG","features":[303,446]},{"name":"NET_VALIDATE_PASSWORD_HASH","features":[446]},{"name":"NET_VALIDATE_PASSWORD_HISTORY","features":[446]},{"name":"NET_VALIDATE_PASSWORD_HISTORY_LENGTH","features":[446]},{"name":"NET_VALIDATE_PASSWORD_LAST_SET","features":[446]},{"name":"NET_VALIDATE_PASSWORD_RESET_INPUT_ARG","features":[303,446]},{"name":"NET_VALIDATE_PASSWORD_TYPE","features":[446]},{"name":"NET_VALIDATE_PERSISTED_FIELDS","features":[303,446]},{"name":"NON_VALIDATED_LOGON","features":[446]},{"name":"NOT_A_DFS_PATH","features":[446]},{"name":"NO_PERMISSION_REQUIRED","features":[446]},{"name":"NSF_COMPONENT_UPDATE","features":[446]},{"name":"NSF_POSTSYSINSTALL","features":[446]},{"name":"NSF_PRIMARYINSTALL","features":[446]},{"name":"NSF_WIN16_UPGRADE","features":[446]},{"name":"NSF_WIN95_UPGRADE","features":[446]},{"name":"NSF_WINNT_SBS_UPGRADE","features":[446]},{"name":"NSF_WINNT_SVR_UPGRADE","features":[446]},{"name":"NSF_WINNT_WKS_UPGRADE","features":[446]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_CONN","features":[446]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_SET","features":[446]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_CONN","features":[446]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_SET","features":[446]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_CONN","features":[446]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_SET","features":[446]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_CONN","features":[446]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_SET","features":[446]},{"name":"NTFRSPRF_REGISTRY_ERROR_CONN","features":[446]},{"name":"NTFRSPRF_REGISTRY_ERROR_SET","features":[446]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_CONN","features":[446]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_SET","features":[446]},{"name":"NULL_USERSETINFO_PASSWD","features":[446]},{"name":"NWSAP_DISPLAY_NAME","features":[446]},{"name":"NWSAP_EVENT_BADWANFILTER_VALUE","features":[446]},{"name":"NWSAP_EVENT_BIND_FAILED","features":[446]},{"name":"NWSAP_EVENT_CARDLISTEVENT_FAIL","features":[446]},{"name":"NWSAP_EVENT_CARDMALLOC_FAILED","features":[446]},{"name":"NWSAP_EVENT_CREATELPCEVENT_ERROR","features":[446]},{"name":"NWSAP_EVENT_CREATELPCPORT_ERROR","features":[446]},{"name":"NWSAP_EVENT_GETSOCKNAME_FAILED","features":[446]},{"name":"NWSAP_EVENT_HASHTABLE_MALLOC_FAILED","features":[446]},{"name":"NWSAP_EVENT_INVALID_FILTERNAME","features":[446]},{"name":"NWSAP_EVENT_KEY_NOT_FOUND","features":[446]},{"name":"NWSAP_EVENT_LPCHANDLEMEMORY_ERROR","features":[446]},{"name":"NWSAP_EVENT_LPCLISTENMEMORY_ERROR","features":[446]},{"name":"NWSAP_EVENT_NOCARDS","features":[446]},{"name":"NWSAP_EVENT_OPTBCASTINADDR_FAILED","features":[446]},{"name":"NWSAP_EVENT_OPTEXTENDEDADDR_FAILED","features":[446]},{"name":"NWSAP_EVENT_OPTMAXADAPTERNUM_ERROR","features":[446]},{"name":"NWSAP_EVENT_RECVSEM_FAIL","features":[446]},{"name":"NWSAP_EVENT_SDMDEVENT_FAIL","features":[446]},{"name":"NWSAP_EVENT_SENDEVENT_FAIL","features":[446]},{"name":"NWSAP_EVENT_SETOPTBCAST_FAILED","features":[446]},{"name":"NWSAP_EVENT_SOCKET_FAILED","features":[446]},{"name":"NWSAP_EVENT_STARTLPCWORKER_ERROR","features":[446]},{"name":"NWSAP_EVENT_STARTRECEIVE_ERROR","features":[446]},{"name":"NWSAP_EVENT_STARTWANCHECK_ERROR","features":[446]},{"name":"NWSAP_EVENT_STARTWANWORKER_ERROR","features":[446]},{"name":"NWSAP_EVENT_STARTWORKER_ERROR","features":[446]},{"name":"NWSAP_EVENT_TABLE_MALLOC_FAILED","features":[446]},{"name":"NWSAP_EVENT_THREADEVENT_FAIL","features":[446]},{"name":"NWSAP_EVENT_WANBIND_FAILED","features":[446]},{"name":"NWSAP_EVENT_WANEVENT_ERROR","features":[446]},{"name":"NWSAP_EVENT_WANHANDLEMEMORY_ERROR","features":[446]},{"name":"NWSAP_EVENT_WANSEM_FAIL","features":[446]},{"name":"NWSAP_EVENT_WANSOCKET_FAILED","features":[446]},{"name":"NWSAP_EVENT_WSASTARTUP_FAILED","features":[446]},{"name":"NetAccessAdd","features":[446]},{"name":"NetAccessDel","features":[446]},{"name":"NetAccessEnum","features":[446]},{"name":"NetAccessGetInfo","features":[446]},{"name":"NetAccessGetUserPerms","features":[446]},{"name":"NetAccessSetInfo","features":[446]},{"name":"NetAddAlternateComputerName","features":[446]},{"name":"NetAddServiceAccount","features":[303,446]},{"name":"NetAlertRaise","features":[446]},{"name":"NetAlertRaiseEx","features":[446]},{"name":"NetAllComputerNames","features":[446]},{"name":"NetAlternateComputerNames","features":[446]},{"name":"NetApiBufferAllocate","features":[446]},{"name":"NetApiBufferFree","features":[446]},{"name":"NetApiBufferReallocate","features":[446]},{"name":"NetApiBufferSize","features":[446]},{"name":"NetAuditClear","features":[446]},{"name":"NetAuditRead","features":[446]},{"name":"NetAuditWrite","features":[446]},{"name":"NetComputerNameTypeMax","features":[446]},{"name":"NetConfigGet","features":[446]},{"name":"NetConfigGetAll","features":[446]},{"name":"NetConfigSet","features":[446]},{"name":"NetCreateProvisioningPackage","features":[446]},{"name":"NetEnumerateComputerNames","features":[446]},{"name":"NetEnumerateServiceAccounts","features":[303,446]},{"name":"NetErrorLogClear","features":[446]},{"name":"NetErrorLogRead","features":[446]},{"name":"NetErrorLogWrite","features":[446]},{"name":"NetFreeAadJoinInformation","features":[303,446,387]},{"name":"NetGetAadJoinInformation","features":[303,446,387]},{"name":"NetGetAnyDCName","features":[446]},{"name":"NetGetDCName","features":[446]},{"name":"NetGetDisplayInformationIndex","features":[446]},{"name":"NetGetJoinInformation","features":[446]},{"name":"NetGetJoinableOUs","features":[446]},{"name":"NetGroupAdd","features":[446]},{"name":"NetGroupAddUser","features":[446]},{"name":"NetGroupDel","features":[446]},{"name":"NetGroupDelUser","features":[446]},{"name":"NetGroupEnum","features":[446]},{"name":"NetGroupGetInfo","features":[446]},{"name":"NetGroupGetUsers","features":[446]},{"name":"NetGroupSetInfo","features":[446]},{"name":"NetGroupSetUsers","features":[446]},{"name":"NetIsServiceAccount","features":[303,446]},{"name":"NetJoinDomain","features":[446]},{"name":"NetLocalGroupAdd","features":[446]},{"name":"NetLocalGroupAddMember","features":[303,446]},{"name":"NetLocalGroupAddMembers","features":[446]},{"name":"NetLocalGroupDel","features":[446]},{"name":"NetLocalGroupDelMember","features":[303,446]},{"name":"NetLocalGroupDelMembers","features":[446]},{"name":"NetLocalGroupEnum","features":[446]},{"name":"NetLocalGroupGetInfo","features":[446]},{"name":"NetLocalGroupGetMembers","features":[446]},{"name":"NetLocalGroupSetInfo","features":[446]},{"name":"NetLocalGroupSetMembers","features":[446]},{"name":"NetMessageBufferSend","features":[446]},{"name":"NetMessageNameAdd","features":[446]},{"name":"NetMessageNameDel","features":[446]},{"name":"NetMessageNameEnum","features":[446]},{"name":"NetMessageNameGetInfo","features":[446]},{"name":"NetPrimaryComputerName","features":[446]},{"name":"NetProvisionComputerAccount","features":[446]},{"name":"NetProvisioning","features":[446]},{"name":"NetQueryDisplayInformation","features":[446]},{"name":"NetQueryServiceAccount","features":[303,446]},{"name":"NetRemoteComputerSupports","features":[446]},{"name":"NetRemoteTOD","features":[446]},{"name":"NetRemoveAlternateComputerName","features":[446]},{"name":"NetRemoveServiceAccount","features":[303,446]},{"name":"NetRenameMachineInDomain","features":[446]},{"name":"NetReplExportDirAdd","features":[446]},{"name":"NetReplExportDirDel","features":[446]},{"name":"NetReplExportDirEnum","features":[446]},{"name":"NetReplExportDirGetInfo","features":[446]},{"name":"NetReplExportDirLock","features":[446]},{"name":"NetReplExportDirSetInfo","features":[446]},{"name":"NetReplExportDirUnlock","features":[446]},{"name":"NetReplGetInfo","features":[446]},{"name":"NetReplImportDirAdd","features":[446]},{"name":"NetReplImportDirDel","features":[446]},{"name":"NetReplImportDirEnum","features":[446]},{"name":"NetReplImportDirGetInfo","features":[446]},{"name":"NetReplImportDirLock","features":[446]},{"name":"NetReplImportDirUnlock","features":[446]},{"name":"NetReplSetInfo","features":[446]},{"name":"NetRequestOfflineDomainJoin","features":[446]},{"name":"NetRequestProvisioningPackageInstall","features":[446]},{"name":"NetScheduleJobAdd","features":[446]},{"name":"NetScheduleJobDel","features":[446]},{"name":"NetScheduleJobEnum","features":[446]},{"name":"NetScheduleJobGetInfo","features":[446]},{"name":"NetServerComputerNameAdd","features":[446]},{"name":"NetServerComputerNameDel","features":[446]},{"name":"NetServerDiskEnum","features":[446]},{"name":"NetServerEnum","features":[446]},{"name":"NetServerGetInfo","features":[446]},{"name":"NetServerSetInfo","features":[446]},{"name":"NetServerTransportAdd","features":[446]},{"name":"NetServerTransportAddEx","features":[446]},{"name":"NetServerTransportDel","features":[446]},{"name":"NetServerTransportEnum","features":[446]},{"name":"NetServiceControl","features":[446]},{"name":"NetServiceEnum","features":[446]},{"name":"NetServiceGetInfo","features":[446]},{"name":"NetServiceInstall","features":[446]},{"name":"NetSetPrimaryComputerName","features":[446]},{"name":"NetSetupDnsMachine","features":[446]},{"name":"NetSetupDomain","features":[446]},{"name":"NetSetupDomainName","features":[446]},{"name":"NetSetupMachine","features":[446]},{"name":"NetSetupNonExistentDomain","features":[446]},{"name":"NetSetupUnjoined","features":[446]},{"name":"NetSetupUnknown","features":[446]},{"name":"NetSetupUnknownStatus","features":[446]},{"name":"NetSetupWorkgroup","features":[446]},{"name":"NetSetupWorkgroupName","features":[446]},{"name":"NetUnjoinDomain","features":[446]},{"name":"NetUseAdd","features":[446]},{"name":"NetUseDel","features":[446]},{"name":"NetUseEnum","features":[446]},{"name":"NetUseGetInfo","features":[446]},{"name":"NetUserAdd","features":[446]},{"name":"NetUserChangePassword","features":[446]},{"name":"NetUserDel","features":[446]},{"name":"NetUserEnum","features":[446]},{"name":"NetUserGetGroups","features":[446]},{"name":"NetUserGetInfo","features":[446]},{"name":"NetUserGetLocalGroups","features":[446]},{"name":"NetUserModalsGet","features":[446]},{"name":"NetUserModalsSet","features":[446]},{"name":"NetUserSetGroups","features":[446]},{"name":"NetUserSetInfo","features":[446]},{"name":"NetValidateAuthentication","features":[446]},{"name":"NetValidateName","features":[446]},{"name":"NetValidatePasswordChange","features":[446]},{"name":"NetValidatePasswordPolicy","features":[446]},{"name":"NetValidatePasswordPolicyFree","features":[446]},{"name":"NetValidatePasswordReset","features":[446]},{"name":"NetWkstaGetInfo","features":[446]},{"name":"NetWkstaSetInfo","features":[446]},{"name":"NetWkstaTransportAdd","features":[446]},{"name":"NetWkstaTransportDel","features":[446]},{"name":"NetWkstaTransportEnum","features":[446]},{"name":"NetWkstaUserEnum","features":[446]},{"name":"NetWkstaUserGetInfo","features":[446]},{"name":"NetWkstaUserSetInfo","features":[446]},{"name":"OBO_COMPONENT","features":[446]},{"name":"OBO_SOFTWARE","features":[446]},{"name":"OBO_TOKEN","features":[303,446]},{"name":"OBO_TOKEN_TYPE","features":[446]},{"name":"OBO_USER","features":[446]},{"name":"OS2MSG_FILENAME","features":[446]},{"name":"PARMNUM_ALL","features":[446]},{"name":"PARMNUM_BASE_INFOLEVEL","features":[446]},{"name":"PARM_ERROR_NONE","features":[446]},{"name":"PARM_ERROR_UNKNOWN","features":[446]},{"name":"PASSWORD_EXPIRED","features":[446]},{"name":"PATHLEN","features":[446]},{"name":"PLATFORM_ID_DOS","features":[446]},{"name":"PLATFORM_ID_NT","features":[446]},{"name":"PLATFORM_ID_OS2","features":[446]},{"name":"PLATFORM_ID_OSF","features":[446]},{"name":"PLATFORM_ID_VMS","features":[446]},{"name":"PREFIX_MISMATCH","features":[446]},{"name":"PREFIX_MISMATCH_FIXED","features":[446]},{"name":"PREFIX_MISMATCH_NOT_FIXED","features":[446]},{"name":"PRINT_OTHER_INFO","features":[446]},{"name":"PRJOB_COMPLETE","features":[446]},{"name":"PRJOB_DELETED","features":[446]},{"name":"PRJOB_DESTNOPAPER","features":[446]},{"name":"PRJOB_DESTOFFLINE","features":[446]},{"name":"PRJOB_DESTPAUSED","features":[446]},{"name":"PRJOB_DEVSTATUS","features":[446]},{"name":"PRJOB_ERROR","features":[446]},{"name":"PRJOB_INTERV","features":[446]},{"name":"PRJOB_NOTIFY","features":[446]},{"name":"PRJOB_QSTATUS","features":[446]},{"name":"PRJOB_QS_PAUSED","features":[446]},{"name":"PRJOB_QS_PRINTING","features":[446]},{"name":"PRJOB_QS_QUEUED","features":[446]},{"name":"PRJOB_QS_SPOOLING","features":[446]},{"name":"PROTO_IPV6_DHCP","features":[446]},{"name":"PROTO_IP_ALG","features":[446]},{"name":"PROTO_IP_BGMP","features":[446]},{"name":"PROTO_IP_BOOTP","features":[446]},{"name":"PROTO_IP_DHCP_ALLOCATOR","features":[446]},{"name":"PROTO_IP_DIFFSERV","features":[446]},{"name":"PROTO_IP_DNS_PROXY","features":[446]},{"name":"PROTO_IP_DTP","features":[446]},{"name":"PROTO_IP_FTP","features":[446]},{"name":"PROTO_IP_H323","features":[446]},{"name":"PROTO_IP_IGMP","features":[446]},{"name":"PROTO_IP_MGM","features":[446]},{"name":"PROTO_IP_MSDP","features":[446]},{"name":"PROTO_IP_NAT","features":[446]},{"name":"PROTO_IP_VRRP","features":[446]},{"name":"PROTO_TYPE_MCAST","features":[446]},{"name":"PROTO_TYPE_MS0","features":[446]},{"name":"PROTO_TYPE_MS1","features":[446]},{"name":"PROTO_TYPE_UCAST","features":[446]},{"name":"PROTO_VENDOR_MS0","features":[446]},{"name":"PROTO_VENDOR_MS1","features":[446]},{"name":"PROTO_VENDOR_MS2","features":[446]},{"name":"PWLEN","features":[446]},{"name":"QNLEN","features":[446]},{"name":"RASCON_IPUI","features":[303,446]},{"name":"RASCON_UIINFO_FLAGS","features":[446]},{"name":"RCUIF_DEMAND_DIAL","features":[446]},{"name":"RCUIF_DISABLE_CLASS_BASED_ROUTE","features":[446]},{"name":"RCUIF_ENABLE_NBT","features":[446]},{"name":"RCUIF_NOT_ADMIN","features":[446]},{"name":"RCUIF_USE_DISABLE_REGISTER_DNS","features":[446]},{"name":"RCUIF_USE_HEADER_COMPRESSION","features":[446]},{"name":"RCUIF_USE_IPv4_EXPLICIT_METRIC","features":[446]},{"name":"RCUIF_USE_IPv4_NAME_SERVERS","features":[446]},{"name":"RCUIF_USE_IPv4_REMOTE_GATEWAY","features":[446]},{"name":"RCUIF_USE_IPv4_STATICADDRESS","features":[446]},{"name":"RCUIF_USE_IPv6_EXPLICIT_METRIC","features":[446]},{"name":"RCUIF_USE_IPv6_NAME_SERVERS","features":[446]},{"name":"RCUIF_USE_IPv6_REMOTE_GATEWAY","features":[446]},{"name":"RCUIF_USE_IPv6_STATICADDRESS","features":[446]},{"name":"RCUIF_USE_PRIVATE_DNS_SUFFIX","features":[446]},{"name":"RCUIF_VPN","features":[446]},{"name":"REGISTER_PROTOCOL_ENTRY_POINT_STRING","features":[446]},{"name":"REPL_EDIR_INFO_0","features":[446]},{"name":"REPL_EDIR_INFO_1","features":[446]},{"name":"REPL_EDIR_INFO_1000","features":[446]},{"name":"REPL_EDIR_INFO_1001","features":[446]},{"name":"REPL_EDIR_INFO_2","features":[446]},{"name":"REPL_EXPORT_EXTENT_INFOLEVEL","features":[446]},{"name":"REPL_EXPORT_INTEGRITY_INFOLEVEL","features":[446]},{"name":"REPL_EXTENT_FILE","features":[446]},{"name":"REPL_EXTENT_TREE","features":[446]},{"name":"REPL_GUARDTIME_INFOLEVEL","features":[446]},{"name":"REPL_IDIR_INFO_0","features":[446]},{"name":"REPL_IDIR_INFO_1","features":[446]},{"name":"REPL_INFO_0","features":[446]},{"name":"REPL_INFO_1000","features":[446]},{"name":"REPL_INFO_1001","features":[446]},{"name":"REPL_INFO_1002","features":[446]},{"name":"REPL_INFO_1003","features":[446]},{"name":"REPL_INTEGRITY_FILE","features":[446]},{"name":"REPL_INTEGRITY_TREE","features":[446]},{"name":"REPL_INTERVAL_INFOLEVEL","features":[446]},{"name":"REPL_PULSE_INFOLEVEL","features":[446]},{"name":"REPL_RANDOM_INFOLEVEL","features":[446]},{"name":"REPL_ROLE_BOTH","features":[446]},{"name":"REPL_ROLE_EXPORT","features":[446]},{"name":"REPL_ROLE_IMPORT","features":[446]},{"name":"REPL_STATE_NEVER_REPLICATED","features":[446]},{"name":"REPL_STATE_NO_MASTER","features":[446]},{"name":"REPL_STATE_NO_SYNC","features":[446]},{"name":"REPL_STATE_OK","features":[446]},{"name":"REPL_UNLOCK_FORCE","features":[446]},{"name":"REPL_UNLOCK_NOFORCE","features":[446]},{"name":"RF_ADD_ALL_INTERFACES","features":[446]},{"name":"RF_DEMAND_UPDATE_ROUTES","features":[446]},{"name":"RF_MULTICAST","features":[446]},{"name":"RF_POWER","features":[446]},{"name":"RF_ROUTING","features":[446]},{"name":"RF_ROUTINGV6","features":[446]},{"name":"RIS_INTERFACE_ADDRESS_CHANGE","features":[446]},{"name":"RIS_INTERFACE_DISABLED","features":[446]},{"name":"RIS_INTERFACE_ENABLED","features":[446]},{"name":"RIS_INTERFACE_MEDIA_ABSENT","features":[446]},{"name":"RIS_INTERFACE_MEDIA_PRESENT","features":[446]},{"name":"ROUTING_DOMAIN_INFO_REVISION_1","features":[446]},{"name":"RTR_INFO_BLOCK_HEADER","features":[446]},{"name":"RTR_INFO_BLOCK_VERSION","features":[446]},{"name":"RTR_TOC_ENTRY","features":[446]},{"name":"RTUTILS_MAX_PROTOCOL_DLL_LEN","features":[446]},{"name":"RTUTILS_MAX_PROTOCOL_NAME_LEN","features":[446]},{"name":"RouterAssert","features":[446]},{"name":"RouterGetErrorStringA","features":[446]},{"name":"RouterGetErrorStringW","features":[446]},{"name":"RouterLogDeregisterA","features":[303,446]},{"name":"RouterLogDeregisterW","features":[303,446]},{"name":"RouterLogEventA","features":[303,446]},{"name":"RouterLogEventDataA","features":[303,446]},{"name":"RouterLogEventDataW","features":[303,446]},{"name":"RouterLogEventExA","features":[303,446]},{"name":"RouterLogEventExW","features":[303,446]},{"name":"RouterLogEventStringA","features":[303,446]},{"name":"RouterLogEventStringW","features":[303,446]},{"name":"RouterLogEventValistExA","features":[303,446]},{"name":"RouterLogEventValistExW","features":[303,446]},{"name":"RouterLogEventW","features":[303,446]},{"name":"RouterLogRegisterA","features":[303,446]},{"name":"RouterLogRegisterW","features":[303,446]},{"name":"SERVCE_LM20_W32TIME","features":[446]},{"name":"SERVER_DISPLAY_NAME","features":[446]},{"name":"SERVER_INFO_100","features":[446]},{"name":"SERVER_INFO_1005","features":[446]},{"name":"SERVER_INFO_101","features":[446]},{"name":"SERVER_INFO_1010","features":[446]},{"name":"SERVER_INFO_1016","features":[446]},{"name":"SERVER_INFO_1017","features":[446]},{"name":"SERVER_INFO_1018","features":[446]},{"name":"SERVER_INFO_102","features":[446]},{"name":"SERVER_INFO_103","features":[303,446]},{"name":"SERVER_INFO_1107","features":[446]},{"name":"SERVER_INFO_1501","features":[446]},{"name":"SERVER_INFO_1502","features":[446]},{"name":"SERVER_INFO_1503","features":[446]},{"name":"SERVER_INFO_1506","features":[446]},{"name":"SERVER_INFO_1509","features":[446]},{"name":"SERVER_INFO_1510","features":[446]},{"name":"SERVER_INFO_1511","features":[446]},{"name":"SERVER_INFO_1512","features":[446]},{"name":"SERVER_INFO_1513","features":[446]},{"name":"SERVER_INFO_1514","features":[303,446]},{"name":"SERVER_INFO_1515","features":[303,446]},{"name":"SERVER_INFO_1516","features":[303,446]},{"name":"SERVER_INFO_1518","features":[303,446]},{"name":"SERVER_INFO_1520","features":[446]},{"name":"SERVER_INFO_1521","features":[446]},{"name":"SERVER_INFO_1522","features":[446]},{"name":"SERVER_INFO_1523","features":[446]},{"name":"SERVER_INFO_1524","features":[446]},{"name":"SERVER_INFO_1525","features":[446]},{"name":"SERVER_INFO_1528","features":[446]},{"name":"SERVER_INFO_1529","features":[446]},{"name":"SERVER_INFO_1530","features":[446]},{"name":"SERVER_INFO_1533","features":[446]},{"name":"SERVER_INFO_1534","features":[446]},{"name":"SERVER_INFO_1535","features":[446]},{"name":"SERVER_INFO_1536","features":[303,446]},{"name":"SERVER_INFO_1537","features":[303,446]},{"name":"SERVER_INFO_1538","features":[303,446]},{"name":"SERVER_INFO_1539","features":[303,446]},{"name":"SERVER_INFO_1540","features":[303,446]},{"name":"SERVER_INFO_1541","features":[303,446]},{"name":"SERVER_INFO_1542","features":[303,446]},{"name":"SERVER_INFO_1543","features":[446]},{"name":"SERVER_INFO_1544","features":[446]},{"name":"SERVER_INFO_1545","features":[446]},{"name":"SERVER_INFO_1546","features":[446]},{"name":"SERVER_INFO_1547","features":[446]},{"name":"SERVER_INFO_1548","features":[446]},{"name":"SERVER_INFO_1549","features":[446]},{"name":"SERVER_INFO_1550","features":[446]},{"name":"SERVER_INFO_1552","features":[446]},{"name":"SERVER_INFO_1553","features":[446]},{"name":"SERVER_INFO_1554","features":[446]},{"name":"SERVER_INFO_1555","features":[446]},{"name":"SERVER_INFO_1556","features":[446]},{"name":"SERVER_INFO_1557","features":[446]},{"name":"SERVER_INFO_1560","features":[446]},{"name":"SERVER_INFO_1561","features":[446]},{"name":"SERVER_INFO_1562","features":[446]},{"name":"SERVER_INFO_1563","features":[446]},{"name":"SERVER_INFO_1564","features":[446]},{"name":"SERVER_INFO_1565","features":[446]},{"name":"SERVER_INFO_1566","features":[303,446]},{"name":"SERVER_INFO_1567","features":[446]},{"name":"SERVER_INFO_1568","features":[446]},{"name":"SERVER_INFO_1569","features":[446]},{"name":"SERVER_INFO_1570","features":[446]},{"name":"SERVER_INFO_1571","features":[446]},{"name":"SERVER_INFO_1572","features":[446]},{"name":"SERVER_INFO_1573","features":[446]},{"name":"SERVER_INFO_1574","features":[446]},{"name":"SERVER_INFO_1575","features":[446]},{"name":"SERVER_INFO_1576","features":[446]},{"name":"SERVER_INFO_1577","features":[446]},{"name":"SERVER_INFO_1578","features":[446]},{"name":"SERVER_INFO_1579","features":[446]},{"name":"SERVER_INFO_1580","features":[446]},{"name":"SERVER_INFO_1581","features":[446]},{"name":"SERVER_INFO_1582","features":[446]},{"name":"SERVER_INFO_1583","features":[446]},{"name":"SERVER_INFO_1584","features":[446]},{"name":"SERVER_INFO_1585","features":[303,446]},{"name":"SERVER_INFO_1586","features":[446]},{"name":"SERVER_INFO_1587","features":[446]},{"name":"SERVER_INFO_1588","features":[446]},{"name":"SERVER_INFO_1590","features":[446]},{"name":"SERVER_INFO_1591","features":[446]},{"name":"SERVER_INFO_1592","features":[446]},{"name":"SERVER_INFO_1593","features":[446]},{"name":"SERVER_INFO_1594","features":[446]},{"name":"SERVER_INFO_1595","features":[446]},{"name":"SERVER_INFO_1596","features":[446]},{"name":"SERVER_INFO_1597","features":[446]},{"name":"SERVER_INFO_1598","features":[446]},{"name":"SERVER_INFO_1599","features":[303,446]},{"name":"SERVER_INFO_1600","features":[303,446]},{"name":"SERVER_INFO_1601","features":[446]},{"name":"SERVER_INFO_1602","features":[303,446]},{"name":"SERVER_INFO_402","features":[446]},{"name":"SERVER_INFO_403","features":[446]},{"name":"SERVER_INFO_502","features":[303,446]},{"name":"SERVER_INFO_503","features":[303,446]},{"name":"SERVER_INFO_598","features":[303,446]},{"name":"SERVER_INFO_599","features":[303,446]},{"name":"SERVER_INFO_HIDDEN","features":[446]},{"name":"SERVER_INFO_SECURITY","features":[446]},{"name":"SERVER_TRANSPORT_INFO_0","features":[446]},{"name":"SERVER_TRANSPORT_INFO_1","features":[446]},{"name":"SERVER_TRANSPORT_INFO_2","features":[446]},{"name":"SERVER_TRANSPORT_INFO_3","features":[446]},{"name":"SERVICE2_BASE","features":[446]},{"name":"SERVICE_ACCOUNT_FLAG_ADD_AGAINST_RODC","features":[446]},{"name":"SERVICE_ACCOUNT_FLAG_LINK_TO_HOST_ONLY","features":[446]},{"name":"SERVICE_ACCOUNT_FLAG_REMOVE_OFFLINE","features":[446]},{"name":"SERVICE_ACCOUNT_FLAG_UNLINK_FROM_HOST_ONLY","features":[446]},{"name":"SERVICE_ACCOUNT_PASSWORD","features":[446]},{"name":"SERVICE_ACCOUNT_SECRET_PREFIX","features":[446]},{"name":"SERVICE_ADWS","features":[446]},{"name":"SERVICE_AFP","features":[446]},{"name":"SERVICE_ALERTER","features":[446]},{"name":"SERVICE_BASE","features":[446]},{"name":"SERVICE_BROWSER","features":[446]},{"name":"SERVICE_CCP_CHKPT_NUM","features":[446]},{"name":"SERVICE_CCP_NO_HINT","features":[446]},{"name":"SERVICE_CCP_QUERY_HINT","features":[446]},{"name":"SERVICE_CCP_WAIT_TIME","features":[446]},{"name":"SERVICE_CTRL_CONTINUE","features":[446]},{"name":"SERVICE_CTRL_INTERROGATE","features":[446]},{"name":"SERVICE_CTRL_PAUSE","features":[446]},{"name":"SERVICE_CTRL_REDIR_COMM","features":[446]},{"name":"SERVICE_CTRL_REDIR_DISK","features":[446]},{"name":"SERVICE_CTRL_REDIR_PRINT","features":[446]},{"name":"SERVICE_CTRL_UNINSTALL","features":[446]},{"name":"SERVICE_DHCP","features":[446]},{"name":"SERVICE_DNS_CACHE","features":[446]},{"name":"SERVICE_DOS_ENCRYPTION","features":[446]},{"name":"SERVICE_DSROLE","features":[446]},{"name":"SERVICE_INFO_0","features":[446]},{"name":"SERVICE_INFO_1","features":[446]},{"name":"SERVICE_INFO_2","features":[446]},{"name":"SERVICE_INSTALLED","features":[446]},{"name":"SERVICE_INSTALL_PENDING","features":[446]},{"name":"SERVICE_INSTALL_STATE","features":[446]},{"name":"SERVICE_IP_CHKPT_NUM","features":[446]},{"name":"SERVICE_IP_NO_HINT","features":[446]},{"name":"SERVICE_IP_QUERY_HINT","features":[446]},{"name":"SERVICE_IP_WAITTIME_SHIFT","features":[446]},{"name":"SERVICE_IP_WAIT_TIME","features":[446]},{"name":"SERVICE_ISMSERV","features":[446]},{"name":"SERVICE_KDC","features":[446]},{"name":"SERVICE_LM20_AFP","features":[446]},{"name":"SERVICE_LM20_ALERTER","features":[446]},{"name":"SERVICE_LM20_BROWSER","features":[446]},{"name":"SERVICE_LM20_DHCP","features":[446]},{"name":"SERVICE_LM20_DSROLE","features":[446]},{"name":"SERVICE_LM20_ISMSERV","features":[446]},{"name":"SERVICE_LM20_KDC","features":[446]},{"name":"SERVICE_LM20_LMHOSTS","features":[446]},{"name":"SERVICE_LM20_MESSENGER","features":[446]},{"name":"SERVICE_LM20_NBT","features":[446]},{"name":"SERVICE_LM20_NETLOGON","features":[446]},{"name":"SERVICE_LM20_NETPOPUP","features":[446]},{"name":"SERVICE_LM20_NETRUN","features":[446]},{"name":"SERVICE_LM20_NTDS","features":[446]},{"name":"SERVICE_LM20_NTFRS","features":[446]},{"name":"SERVICE_LM20_NWSAP","features":[446]},{"name":"SERVICE_LM20_REPL","features":[446]},{"name":"SERVICE_LM20_RIPL","features":[446]},{"name":"SERVICE_LM20_RPCLOCATOR","features":[446]},{"name":"SERVICE_LM20_SCHEDULE","features":[446]},{"name":"SERVICE_LM20_SERVER","features":[446]},{"name":"SERVICE_LM20_SPOOLER","features":[446]},{"name":"SERVICE_LM20_SQLSERVER","features":[446]},{"name":"SERVICE_LM20_TCPIP","features":[446]},{"name":"SERVICE_LM20_TELNET","features":[446]},{"name":"SERVICE_LM20_TIMESOURCE","features":[446]},{"name":"SERVICE_LM20_TRKSVR","features":[446]},{"name":"SERVICE_LM20_TRKWKS","features":[446]},{"name":"SERVICE_LM20_UPS","features":[446]},{"name":"SERVICE_LM20_WORKSTATION","features":[446]},{"name":"SERVICE_LM20_XACTSRV","features":[446]},{"name":"SERVICE_LMHOSTS","features":[446]},{"name":"SERVICE_MAXTIME","features":[446]},{"name":"SERVICE_MESSENGER","features":[446]},{"name":"SERVICE_NBT","features":[446]},{"name":"SERVICE_NETLOGON","features":[446]},{"name":"SERVICE_NETPOPUP","features":[446]},{"name":"SERVICE_NETRUN","features":[446]},{"name":"SERVICE_NOT_PAUSABLE","features":[446]},{"name":"SERVICE_NOT_UNINSTALLABLE","features":[446]},{"name":"SERVICE_NTDS","features":[446]},{"name":"SERVICE_NTFRS","features":[446]},{"name":"SERVICE_NTIP_WAITTIME_SHIFT","features":[446]},{"name":"SERVICE_NTLMSSP","features":[446]},{"name":"SERVICE_NT_MAXTIME","features":[446]},{"name":"SERVICE_NWCS","features":[446]},{"name":"SERVICE_NWSAP","features":[446]},{"name":"SERVICE_PAUSABLE","features":[446]},{"name":"SERVICE_PAUSE_STATE","features":[446]},{"name":"SERVICE_REDIR_COMM_PAUSED","features":[446]},{"name":"SERVICE_REDIR_DISK_PAUSED","features":[446]},{"name":"SERVICE_REDIR_PAUSED","features":[446]},{"name":"SERVICE_REDIR_PRINT_PAUSED","features":[446]},{"name":"SERVICE_REPL","features":[446]},{"name":"SERVICE_RESRV_MASK","features":[446]},{"name":"SERVICE_RIPL","features":[446]},{"name":"SERVICE_RPCLOCATOR","features":[446]},{"name":"SERVICE_SCHEDULE","features":[446]},{"name":"SERVICE_SERVER","features":[446]},{"name":"SERVICE_SPOOLER","features":[446]},{"name":"SERVICE_SQLSERVER","features":[446]},{"name":"SERVICE_TCPIP","features":[446]},{"name":"SERVICE_TELNET","features":[446]},{"name":"SERVICE_TIMESOURCE","features":[446]},{"name":"SERVICE_TRKSVR","features":[446]},{"name":"SERVICE_TRKWKS","features":[446]},{"name":"SERVICE_UIC_AMBIGPARM","features":[446]},{"name":"SERVICE_UIC_BADPARMVAL","features":[446]},{"name":"SERVICE_UIC_CONFIG","features":[446]},{"name":"SERVICE_UIC_CONFLPARM","features":[446]},{"name":"SERVICE_UIC_DUPPARM","features":[446]},{"name":"SERVICE_UIC_EXEC","features":[446]},{"name":"SERVICE_UIC_FILE","features":[446]},{"name":"SERVICE_UIC_INTERNAL","features":[446]},{"name":"SERVICE_UIC_KILL","features":[446]},{"name":"SERVICE_UIC_MISSPARM","features":[446]},{"name":"SERVICE_UIC_M_ADDPAK","features":[446]},{"name":"SERVICE_UIC_M_ANNOUNCE","features":[446]},{"name":"SERVICE_UIC_M_DATABASE_ERROR","features":[446]},{"name":"SERVICE_UIC_M_DISK","features":[446]},{"name":"SERVICE_UIC_M_ERRLOG","features":[446]},{"name":"SERVICE_UIC_M_FILES","features":[446]},{"name":"SERVICE_UIC_M_FILE_UW","features":[446]},{"name":"SERVICE_UIC_M_LANGROUP","features":[446]},{"name":"SERVICE_UIC_M_LANROOT","features":[446]},{"name":"SERVICE_UIC_M_LAZY","features":[446]},{"name":"SERVICE_UIC_M_LOGS","features":[446]},{"name":"SERVICE_UIC_M_LSA_MACHINE_ACCT","features":[446]},{"name":"SERVICE_UIC_M_MEMORY","features":[446]},{"name":"SERVICE_UIC_M_MSGNAME","features":[446]},{"name":"SERVICE_UIC_M_NETLOGON_AUTH","features":[446]},{"name":"SERVICE_UIC_M_NETLOGON_DC_CFLCT","features":[446]},{"name":"SERVICE_UIC_M_NETLOGON_MPATH","features":[446]},{"name":"SERVICE_UIC_M_NETLOGON_NO_DC","features":[446]},{"name":"SERVICE_UIC_M_NULL","features":[446]},{"name":"SERVICE_UIC_M_PROCESSES","features":[446]},{"name":"SERVICE_UIC_M_REDIR","features":[446]},{"name":"SERVICE_UIC_M_SECURITY","features":[446]},{"name":"SERVICE_UIC_M_SEC_FILE_ERR","features":[446]},{"name":"SERVICE_UIC_M_SERVER","features":[446]},{"name":"SERVICE_UIC_M_SERVER_SEC_ERR","features":[446]},{"name":"SERVICE_UIC_M_THREADS","features":[446]},{"name":"SERVICE_UIC_M_UAS","features":[446]},{"name":"SERVICE_UIC_M_UAS_INVALID_ROLE","features":[446]},{"name":"SERVICE_UIC_M_UAS_MACHINE_ACCT","features":[446]},{"name":"SERVICE_UIC_M_UAS_PROLOG","features":[446]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NMEMB","features":[446]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NOGRP","features":[446]},{"name":"SERVICE_UIC_M_WKSTA","features":[446]},{"name":"SERVICE_UIC_NORMAL","features":[446]},{"name":"SERVICE_UIC_RESOURCE","features":[446]},{"name":"SERVICE_UIC_SUBSERV","features":[446]},{"name":"SERVICE_UIC_SYSTEM","features":[446]},{"name":"SERVICE_UIC_UNKPARM","features":[446]},{"name":"SERVICE_UNINSTALLABLE","features":[446]},{"name":"SERVICE_UNINSTALLED","features":[446]},{"name":"SERVICE_UNINSTALL_PENDING","features":[446]},{"name":"SERVICE_UPS","features":[446]},{"name":"SERVICE_W32TIME","features":[446]},{"name":"SERVICE_WORKSTATION","features":[446]},{"name":"SERVICE_XACTSRV","features":[446]},{"name":"SESSION_CRYPT_KLEN","features":[446]},{"name":"SESSION_PWLEN","features":[446]},{"name":"SHPWLEN","features":[446]},{"name":"SMB_COMPRESSION_INFO","features":[303,446]},{"name":"SMB_TREE_CONNECT_PARAMETERS","features":[446]},{"name":"SMB_USE_OPTION_COMPRESSION_PARAMETERS","features":[446]},{"name":"SNLEN","features":[446]},{"name":"SRV_HASH_GENERATION_ACTIVE","features":[446]},{"name":"SRV_SUPPORT_HASH_GENERATION","features":[446]},{"name":"STD_ALERT","features":[446]},{"name":"STXTLEN","features":[446]},{"name":"SUPPORTS_ANY","features":[446]},{"name":"SUPPORTS_BINDING_INTERFACE_FLAGS","features":[446]},{"name":"SUPPORTS_LOCAL","features":[446]},{"name":"SUPPORTS_REMOTE_ADMIN_PROTOCOL","features":[446]},{"name":"SUPPORTS_RPC","features":[446]},{"name":"SUPPORTS_SAM_PROTOCOL","features":[446]},{"name":"SUPPORTS_UNICODE","features":[446]},{"name":"SVAUD_BADNETLOGON","features":[446]},{"name":"SVAUD_BADSESSLOGON","features":[446]},{"name":"SVAUD_BADUSE","features":[446]},{"name":"SVAUD_GOODNETLOGON","features":[446]},{"name":"SVAUD_GOODSESSLOGON","features":[446]},{"name":"SVAUD_GOODUSE","features":[446]},{"name":"SVAUD_LOGONLIM","features":[446]},{"name":"SVAUD_PERMISSIONS","features":[446]},{"name":"SVAUD_RESOURCE","features":[446]},{"name":"SVAUD_SERVICE","features":[446]},{"name":"SVAUD_USERLIST","features":[446]},{"name":"SVI1_NUM_ELEMENTS","features":[446]},{"name":"SVI2_NUM_ELEMENTS","features":[446]},{"name":"SVI3_NUM_ELEMENTS","features":[446]},{"name":"SVTI2_CLUSTER_DNN_NAME","features":[446]},{"name":"SVTI2_CLUSTER_NAME","features":[446]},{"name":"SVTI2_REMAP_PIPE_NAMES","features":[446]},{"name":"SVTI2_RESERVED1","features":[446]},{"name":"SVTI2_RESERVED2","features":[446]},{"name":"SVTI2_RESERVED3","features":[446]},{"name":"SVTI2_SCOPED_NAME","features":[446]},{"name":"SVTI2_UNICODE_TRANSPORT_ADDRESS","features":[446]},{"name":"SV_ACCEPTDOWNLEVELAPIS_PARMNUM","features":[446]},{"name":"SV_ACCESSALERT_PARMNUM","features":[446]},{"name":"SV_ACTIVELOCKS_PARMNUM","features":[446]},{"name":"SV_ALERTSCHEDULE_PARMNUM","features":[446]},{"name":"SV_ALERTSCHED_PARMNUM","features":[446]},{"name":"SV_ALERTS_PARMNUM","features":[446]},{"name":"SV_ALIST_MTIME_PARMNUM","features":[446]},{"name":"SV_ANNDELTA_PARMNUM","features":[446]},{"name":"SV_ANNOUNCE_PARMNUM","features":[446]},{"name":"SV_AUTOSHARESERVER_PARMNUM","features":[446]},{"name":"SV_AUTOSHAREWKS_PARMNUM","features":[446]},{"name":"SV_BALANCECOUNT_PARMNUM","features":[446]},{"name":"SV_CACHEDDIRECTORYLIMIT_PARMNUM","features":[446]},{"name":"SV_CACHEDOPENLIMIT_PARMNUM","features":[446]},{"name":"SV_CHDEVJOBS_PARMNUM","features":[446]},{"name":"SV_CHDEVQ_PARMNUM","features":[446]},{"name":"SV_COMMENT_PARMNUM","features":[446]},{"name":"SV_CONNECTIONLESSAUTODISC_PARMNUM","features":[446]},{"name":"SV_CONNECTIONNOSESSIONSTIMEOUT_PARMNUM","features":[446]},{"name":"SV_CONNECTIONS_PARMNUM","features":[446]},{"name":"SV_CRITICALTHREADS_PARMNUM","features":[446]},{"name":"SV_DISABLEDOS_PARMNUM","features":[446]},{"name":"SV_DISABLESTRICTNAMECHECKING_PARMNUM","features":[446]},{"name":"SV_DISC_PARMNUM","features":[446]},{"name":"SV_DISKALERT_PARMNUM","features":[446]},{"name":"SV_DISKSPACETHRESHOLD_PARMNUM","features":[446]},{"name":"SV_DOMAIN_PARMNUM","features":[446]},{"name":"SV_ENABLEAUTHENTICATEUSERSHARING_PARMNUM","features":[446]},{"name":"SV_ENABLECOMPRESSION_PARMNUM","features":[446]},{"name":"SV_ENABLEFCBOPENS_PARMNUM","features":[446]},{"name":"SV_ENABLEFORCEDLOGOFF_PARMNUM","features":[446]},{"name":"SV_ENABLEOPLOCKFORCECLOSE_PARMNUM","features":[446]},{"name":"SV_ENABLEOPLOCKS_PARMNUM","features":[446]},{"name":"SV_ENABLERAW_PARMNUM","features":[446]},{"name":"SV_ENABLESECURITYSIGNATURE_PARMNUM","features":[446]},{"name":"SV_ENABLESHAREDNETDRIVES_PARMNUM","features":[446]},{"name":"SV_ENABLESOFTCOMPAT_PARMNUM","features":[446]},{"name":"SV_ENABLEW9XSECURITYSIGNATURE_PARMNUM","features":[446]},{"name":"SV_ENABLEWFW311DIRECTIPX_PARMNUM","features":[446]},{"name":"SV_ENFORCEKERBEROSREAUTHENTICATION_PARMNUM","features":[446]},{"name":"SV_ERRORALERT_PARMNUM","features":[446]},{"name":"SV_ERRORTHRESHOLD_PARMNUM","features":[446]},{"name":"SV_GLIST_MTIME_PARMNUM","features":[446]},{"name":"SV_GUESTACC_PARMNUM","features":[446]},{"name":"SV_HIDDEN","features":[446]},{"name":"SV_HIDDEN_PARMNUM","features":[446]},{"name":"SV_IDLETHREADTIMEOUT_PARMNUM","features":[446]},{"name":"SV_INITCONNTABLE_PARMNUM","features":[446]},{"name":"SV_INITFILETABLE_PARMNUM","features":[446]},{"name":"SV_INITSEARCHTABLE_PARMNUM","features":[446]},{"name":"SV_INITSESSTABLE_PARMNUM","features":[446]},{"name":"SV_INITWORKITEMS_PARMNUM","features":[446]},{"name":"SV_IRPSTACKSIZE_PARMNUM","features":[446]},{"name":"SV_LANMASK_PARMNUM","features":[446]},{"name":"SV_LINKINFOVALIDTIME_PARMNUM","features":[446]},{"name":"SV_LMANNOUNCE_PARMNUM","features":[446]},{"name":"SV_LOCKVIOLATIONDELAY_PARMNUM","features":[446]},{"name":"SV_LOCKVIOLATIONOFFSET_PARMNUM","features":[446]},{"name":"SV_LOCKVIOLATIONRETRIES_PARMNUM","features":[446]},{"name":"SV_LOGONALERT_PARMNUM","features":[446]},{"name":"SV_LOWDISKSPACEMINIMUM_PARMNUM","features":[446]},{"name":"SV_MAXAUDITSZ_PARMNUM","features":[446]},{"name":"SV_MAXCOPYLENGTH_PARMNUM","features":[446]},{"name":"SV_MAXCOPYREADLEN_PARMNUM","features":[446]},{"name":"SV_MAXCOPYWRITELEN_PARMNUM","features":[446]},{"name":"SV_MAXFREECONNECTIONS_PARMNUM","features":[446]},{"name":"SV_MAXFREELFCBS_PARMNUM","features":[446]},{"name":"SV_MAXFREEMFCBS_PARMNUM","features":[446]},{"name":"SV_MAXFREEPAGEDPOOLCHUNKS_PARMNUM","features":[446]},{"name":"SV_MAXFREERFCBS_PARMNUM","features":[446]},{"name":"SV_MAXGLOBALOPENSEARCH_PARMNUM","features":[446]},{"name":"SV_MAXKEEPCOMPLSEARCH_PARMNUM","features":[446]},{"name":"SV_MAXKEEPSEARCH_PARMNUM","features":[446]},{"name":"SV_MAXLINKDELAY_PARMNUM","features":[446]},{"name":"SV_MAXMPXCT_PARMNUM","features":[446]},{"name":"SV_MAXNONPAGEDMEMORYUSAGE_PARMNUM","features":[446]},{"name":"SV_MAXPAGEDMEMORYUSAGE_PARMNUM","features":[446]},{"name":"SV_MAXPAGEDPOOLCHUNKSIZE_PARMNUM","features":[446]},{"name":"SV_MAXRAWBUFLEN_PARMNUM","features":[446]},{"name":"SV_MAXRAWWORKITEMS_PARMNUM","features":[446]},{"name":"SV_MAXTHREADSPERQUEUE_PARMNUM","features":[446]},{"name":"SV_MAXWORKITEMIDLETIME_PARMNUM","features":[446]},{"name":"SV_MAXWORKITEMS_PARMNUM","features":[446]},{"name":"SV_MAX_CMD_LEN","features":[446]},{"name":"SV_MAX_SRV_HEUR_LEN","features":[446]},{"name":"SV_MDLREADSWITCHOVER_PARMNUM","features":[446]},{"name":"SV_MINCLIENTBUFFERSIZE_PARMNUM","features":[446]},{"name":"SV_MINFREECONNECTIONS_PARMNUM","features":[446]},{"name":"SV_MINFREEWORKITEMS_PARMNUM","features":[446]},{"name":"SV_MINKEEPCOMPLSEARCH_PARMNUM","features":[446]},{"name":"SV_MINKEEPSEARCH_PARMNUM","features":[446]},{"name":"SV_MINLINKTHROUGHPUT_PARMNUM","features":[446]},{"name":"SV_MINPAGEDPOOLCHUNKSIZE_PARMNUM","features":[446]},{"name":"SV_MINRCVQUEUE_PARMNUM","features":[446]},{"name":"SV_NAME_PARMNUM","features":[446]},{"name":"SV_NETIOALERT_PARMNUM","features":[446]},{"name":"SV_NETWORKERRORTHRESHOLD_PARMNUM","features":[446]},{"name":"SV_NODISC","features":[446]},{"name":"SV_NUMADMIN_PARMNUM","features":[446]},{"name":"SV_NUMBIGBUF_PARMNUM","features":[446]},{"name":"SV_NUMBLOCKTHREADS_PARMNUM","features":[446]},{"name":"SV_NUMFILETASKS_PARMNUM","features":[446]},{"name":"SV_NUMREQBUF_PARMNUM","features":[446]},{"name":"SV_OPENFILES_PARMNUM","features":[446]},{"name":"SV_OPENSEARCH_PARMNUM","features":[446]},{"name":"SV_OPLOCKBREAKRESPONSEWAIT_PARMNUM","features":[446]},{"name":"SV_OPLOCKBREAKWAIT_PARMNUM","features":[446]},{"name":"SV_OTHERQUEUEAFFINITY_PARMNUM","features":[446]},{"name":"SV_PLATFORM_ID_NT","features":[446]},{"name":"SV_PLATFORM_ID_OS2","features":[446]},{"name":"SV_PLATFORM_ID_PARMNUM","features":[446]},{"name":"SV_PREFERREDAFFINITY_PARMNUM","features":[446]},{"name":"SV_PRODUCTTYPE_PARMNUM","features":[446]},{"name":"SV_QUEUESAMPLESECS_PARMNUM","features":[446]},{"name":"SV_RAWWORKITEMS_PARMNUM","features":[446]},{"name":"SV_REMOVEDUPLICATESEARCHES_PARMNUM","features":[446]},{"name":"SV_REQUIRESECURITYSIGNATURE_PARMNUM","features":[446]},{"name":"SV_RESTRICTNULLSESSACCESS_PARMNUM","features":[446]},{"name":"SV_SCAVQOSINFOUPDATETIME_PARMNUM","features":[446]},{"name":"SV_SCAVTIMEOUT_PARMNUM","features":[446]},{"name":"SV_SECURITY_PARMNUM","features":[446]},{"name":"SV_SENDSFROMPREFERREDPROCESSOR_PARMNUM","features":[446]},{"name":"SV_SERVERSIZE_PARMNUM","features":[446]},{"name":"SV_SESSCONNS_PARMNUM","features":[446]},{"name":"SV_SESSOPENS_PARMNUM","features":[446]},{"name":"SV_SESSREQS_PARMNUM","features":[446]},{"name":"SV_SESSUSERS_PARMNUM","features":[446]},{"name":"SV_SESSVCS_PARMNUM","features":[446]},{"name":"SV_SHARESECURITY","features":[446]},{"name":"SV_SHARES_PARMNUM","features":[446]},{"name":"SV_SHARINGVIOLATIONDELAY_PARMNUM","features":[446]},{"name":"SV_SHARINGVIOLATIONRETRIES_PARMNUM","features":[446]},{"name":"SV_SIZREQBUF_PARMNUM","features":[446]},{"name":"SV_SRVHEURISTICS_PARMNUM","features":[446]},{"name":"SV_THREADCOUNTADD_PARMNUM","features":[446]},{"name":"SV_THREADPRIORITY_PARMNUM","features":[446]},{"name":"SV_TIMESOURCE_PARMNUM","features":[446]},{"name":"SV_TYPE_AFP","features":[446]},{"name":"SV_TYPE_ALL","features":[446]},{"name":"SV_TYPE_ALTERNATE_XPORT","features":[446]},{"name":"SV_TYPE_BACKUP_BROWSER","features":[446]},{"name":"SV_TYPE_CLUSTER_NT","features":[446]},{"name":"SV_TYPE_CLUSTER_VS_NT","features":[446]},{"name":"SV_TYPE_DCE","features":[446]},{"name":"SV_TYPE_DFS","features":[446]},{"name":"SV_TYPE_DIALIN_SERVER","features":[446]},{"name":"SV_TYPE_DOMAIN_BAKCTRL","features":[446]},{"name":"SV_TYPE_DOMAIN_CTRL","features":[446]},{"name":"SV_TYPE_DOMAIN_ENUM","features":[446]},{"name":"SV_TYPE_DOMAIN_MASTER","features":[446]},{"name":"SV_TYPE_DOMAIN_MEMBER","features":[446]},{"name":"SV_TYPE_LOCAL_LIST_ONLY","features":[446]},{"name":"SV_TYPE_MASTER_BROWSER","features":[446]},{"name":"SV_TYPE_NOVELL","features":[446]},{"name":"SV_TYPE_NT","features":[446]},{"name":"SV_TYPE_PARMNUM","features":[446]},{"name":"SV_TYPE_POTENTIAL_BROWSER","features":[446]},{"name":"SV_TYPE_PRINTQ_SERVER","features":[446]},{"name":"SV_TYPE_SERVER","features":[446]},{"name":"SV_TYPE_SERVER_MFPN","features":[446]},{"name":"SV_TYPE_SERVER_NT","features":[446]},{"name":"SV_TYPE_SERVER_OSF","features":[446]},{"name":"SV_TYPE_SERVER_UNIX","features":[446]},{"name":"SV_TYPE_SERVER_VMS","features":[446]},{"name":"SV_TYPE_SQLSERVER","features":[446]},{"name":"SV_TYPE_TERMINALSERVER","features":[446]},{"name":"SV_TYPE_TIME_SOURCE","features":[446]},{"name":"SV_TYPE_WFW","features":[446]},{"name":"SV_TYPE_WINDOWS","features":[446]},{"name":"SV_TYPE_WORKSTATION","features":[446]},{"name":"SV_TYPE_XENIX_SERVER","features":[446]},{"name":"SV_ULIST_MTIME_PARMNUM","features":[446]},{"name":"SV_USERPATH_PARMNUM","features":[446]},{"name":"SV_USERSECURITY","features":[446]},{"name":"SV_USERS_PARMNUM","features":[446]},{"name":"SV_USERS_PER_LICENSE","features":[446]},{"name":"SV_VERSION_MAJOR_PARMNUM","features":[446]},{"name":"SV_VERSION_MINOR_PARMNUM","features":[446]},{"name":"SV_VISIBLE","features":[446]},{"name":"SV_XACTMEMSIZE_PARMNUM","features":[446]},{"name":"SW_AUTOPROF_LOAD_MASK","features":[446]},{"name":"SW_AUTOPROF_SAVE_MASK","features":[446]},{"name":"ServiceAccountPasswordGUID","features":[446]},{"name":"SetNetScheduleAccountInformation","features":[446]},{"name":"TIME_OF_DAY_INFO","features":[446]},{"name":"TITLE_SC_MESSAGE_BOX","features":[446]},{"name":"TRACE_NO_STDINFO","features":[446]},{"name":"TRACE_NO_SYNCH","features":[446]},{"name":"TRACE_USE_CONSOLE","features":[446]},{"name":"TRACE_USE_DATE","features":[446]},{"name":"TRACE_USE_FILE","features":[446]},{"name":"TRACE_USE_MASK","features":[446]},{"name":"TRACE_USE_MSEC","features":[446]},{"name":"TRANSPORT_INFO","features":[303,446]},{"name":"TRANSPORT_NAME_PARMNUM","features":[446]},{"name":"TRANSPORT_QUALITYOFSERVICE_PARMNUM","features":[446]},{"name":"TRANSPORT_TYPE","features":[446]},{"name":"TraceDeregisterA","features":[446]},{"name":"TraceDeregisterExA","features":[446]},{"name":"TraceDeregisterExW","features":[446]},{"name":"TraceDeregisterW","features":[446]},{"name":"TraceDumpExA","features":[303,446]},{"name":"TraceDumpExW","features":[303,446]},{"name":"TraceGetConsoleA","features":[303,446]},{"name":"TraceGetConsoleW","features":[303,446]},{"name":"TracePrintfA","features":[446]},{"name":"TracePrintfExA","features":[446]},{"name":"TracePrintfExW","features":[446]},{"name":"TracePrintfW","features":[446]},{"name":"TracePutsExA","features":[446]},{"name":"TracePutsExW","features":[446]},{"name":"TraceRegisterExA","features":[446]},{"name":"TraceRegisterExW","features":[446]},{"name":"TraceVprintfExA","features":[446]},{"name":"TraceVprintfExW","features":[446]},{"name":"UAS_ROLE_BACKUP","features":[446]},{"name":"UAS_ROLE_MEMBER","features":[446]},{"name":"UAS_ROLE_PRIMARY","features":[446]},{"name":"UAS_ROLE_STANDALONE","features":[446]},{"name":"UF_ACCOUNTDISABLE","features":[446]},{"name":"UF_DONT_EXPIRE_PASSWD","features":[446]},{"name":"UF_DONT_REQUIRE_PREAUTH","features":[446]},{"name":"UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[446]},{"name":"UF_HOMEDIR_REQUIRED","features":[446]},{"name":"UF_INTERDOMAIN_TRUST_ACCOUNT","features":[446]},{"name":"UF_LOCKOUT","features":[446]},{"name":"UF_MNS_LOGON_ACCOUNT","features":[446]},{"name":"UF_NORMAL_ACCOUNT","features":[446]},{"name":"UF_NOT_DELEGATED","features":[446]},{"name":"UF_NO_AUTH_DATA_REQUIRED","features":[446]},{"name":"UF_PARTIAL_SECRETS_ACCOUNT","features":[446]},{"name":"UF_PASSWD_CANT_CHANGE","features":[446]},{"name":"UF_PASSWD_NOTREQD","features":[446]},{"name":"UF_PASSWORD_EXPIRED","features":[446]},{"name":"UF_SCRIPT","features":[446]},{"name":"UF_SERVER_TRUST_ACCOUNT","features":[446]},{"name":"UF_SMARTCARD_REQUIRED","features":[446]},{"name":"UF_TEMP_DUPLICATE_ACCOUNT","features":[446]},{"name":"UF_TRUSTED_FOR_DELEGATION","features":[446]},{"name":"UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[446]},{"name":"UF_USE_AES_KEYS","features":[446]},{"name":"UF_USE_DES_KEY_ONLY","features":[446]},{"name":"UF_WORKSTATION_TRUST_ACCOUNT","features":[446]},{"name":"UNCLEN","features":[446]},{"name":"UNITS_PER_DAY","features":[446]},{"name":"UNLEN","features":[446]},{"name":"UPPER_GET_HINT_MASK","features":[446]},{"name":"UPPER_HINT_MASK","features":[446]},{"name":"USER_ACCOUNT_FLAGS","features":[446]},{"name":"USER_ACCT_EXPIRES_PARMNUM","features":[446]},{"name":"USER_AUTH_FLAGS_PARMNUM","features":[446]},{"name":"USER_CODE_PAGE_PARMNUM","features":[446]},{"name":"USER_COMMENT_PARMNUM","features":[446]},{"name":"USER_COUNTRY_CODE_PARMNUM","features":[446]},{"name":"USER_FLAGS_PARMNUM","features":[446]},{"name":"USER_FULL_NAME_PARMNUM","features":[446]},{"name":"USER_HOME_DIR_DRIVE_PARMNUM","features":[446]},{"name":"USER_HOME_DIR_PARMNUM","features":[446]},{"name":"USER_INFO_0","features":[446]},{"name":"USER_INFO_1","features":[446]},{"name":"USER_INFO_10","features":[446]},{"name":"USER_INFO_1003","features":[446]},{"name":"USER_INFO_1005","features":[446]},{"name":"USER_INFO_1006","features":[446]},{"name":"USER_INFO_1007","features":[446]},{"name":"USER_INFO_1008","features":[446]},{"name":"USER_INFO_1009","features":[446]},{"name":"USER_INFO_1010","features":[446]},{"name":"USER_INFO_1011","features":[446]},{"name":"USER_INFO_1012","features":[446]},{"name":"USER_INFO_1013","features":[446]},{"name":"USER_INFO_1014","features":[446]},{"name":"USER_INFO_1017","features":[446]},{"name":"USER_INFO_1018","features":[446]},{"name":"USER_INFO_1020","features":[446]},{"name":"USER_INFO_1023","features":[446]},{"name":"USER_INFO_1024","features":[446]},{"name":"USER_INFO_1025","features":[446]},{"name":"USER_INFO_1051","features":[446]},{"name":"USER_INFO_1052","features":[446]},{"name":"USER_INFO_1053","features":[446]},{"name":"USER_INFO_11","features":[446]},{"name":"USER_INFO_2","features":[446]},{"name":"USER_INFO_20","features":[446]},{"name":"USER_INFO_21","features":[446]},{"name":"USER_INFO_22","features":[446]},{"name":"USER_INFO_23","features":[303,446]},{"name":"USER_INFO_24","features":[303,446]},{"name":"USER_INFO_3","features":[446]},{"name":"USER_INFO_4","features":[303,446]},{"name":"USER_LAST_LOGOFF_PARMNUM","features":[446]},{"name":"USER_LAST_LOGON_PARMNUM","features":[446]},{"name":"USER_LOGON_HOURS_PARMNUM","features":[446]},{"name":"USER_LOGON_SERVER_PARMNUM","features":[446]},{"name":"USER_MAX_STORAGE_PARMNUM","features":[446]},{"name":"USER_MODALS_INFO_0","features":[446]},{"name":"USER_MODALS_INFO_1","features":[446]},{"name":"USER_MODALS_INFO_1001","features":[446]},{"name":"USER_MODALS_INFO_1002","features":[446]},{"name":"USER_MODALS_INFO_1003","features":[446]},{"name":"USER_MODALS_INFO_1004","features":[446]},{"name":"USER_MODALS_INFO_1005","features":[446]},{"name":"USER_MODALS_INFO_1006","features":[446]},{"name":"USER_MODALS_INFO_1007","features":[446]},{"name":"USER_MODALS_INFO_2","features":[303,446]},{"name":"USER_MODALS_INFO_3","features":[446]},{"name":"USER_MODALS_ROLES","features":[446]},{"name":"USER_NAME_PARMNUM","features":[446]},{"name":"USER_NUM_LOGONS_PARMNUM","features":[446]},{"name":"USER_OTHER_INFO","features":[446]},{"name":"USER_PAD_PW_COUNT_PARMNUM","features":[446]},{"name":"USER_PARMS_PARMNUM","features":[446]},{"name":"USER_PASSWORD_AGE_PARMNUM","features":[446]},{"name":"USER_PASSWORD_PARMNUM","features":[446]},{"name":"USER_PRIMARY_GROUP_PARMNUM","features":[446]},{"name":"USER_PRIV","features":[446]},{"name":"USER_PRIV_ADMIN","features":[446]},{"name":"USER_PRIV_GUEST","features":[446]},{"name":"USER_PRIV_MASK","features":[446]},{"name":"USER_PRIV_PARMNUM","features":[446]},{"name":"USER_PRIV_USER","features":[446]},{"name":"USER_PROFILE","features":[446]},{"name":"USER_PROFILE_PARMNUM","features":[446]},{"name":"USER_SCRIPT_PATH_PARMNUM","features":[446]},{"name":"USER_UNITS_PER_WEEK_PARMNUM","features":[446]},{"name":"USER_USR_COMMENT_PARMNUM","features":[446]},{"name":"USER_WORKSTATIONS_PARMNUM","features":[446]},{"name":"USE_ASGTYPE_PARMNUM","features":[446]},{"name":"USE_AUTHIDENTITY_PARMNUM","features":[446]},{"name":"USE_CHARDEV","features":[446]},{"name":"USE_CONN","features":[446]},{"name":"USE_DEFAULT_CREDENTIALS","features":[446]},{"name":"USE_DISCONN","features":[446]},{"name":"USE_DISKDEV","features":[446]},{"name":"USE_DOMAINNAME_PARMNUM","features":[446]},{"name":"USE_FLAGS_PARMNUM","features":[446]},{"name":"USE_FLAG_GLOBAL_MAPPING","features":[446]},{"name":"USE_FORCE","features":[446]},{"name":"USE_INFO_0","features":[446]},{"name":"USE_INFO_1","features":[446]},{"name":"USE_INFO_2","features":[446]},{"name":"USE_INFO_3","features":[446]},{"name":"USE_INFO_4","features":[446]},{"name":"USE_INFO_5","features":[446]},{"name":"USE_INFO_ASG_TYPE","features":[446]},{"name":"USE_IPC","features":[446]},{"name":"USE_LOCAL_PARMNUM","features":[446]},{"name":"USE_LOTS_OF_FORCE","features":[446]},{"name":"USE_NETERR","features":[446]},{"name":"USE_NOFORCE","features":[446]},{"name":"USE_OK","features":[446]},{"name":"USE_OPTIONS_PARMNUM","features":[446]},{"name":"USE_OPTION_DEFERRED_CONNECTION_PARAMETERS","features":[446]},{"name":"USE_OPTION_GENERIC","features":[446]},{"name":"USE_OPTION_PROPERTIES","features":[446]},{"name":"USE_OPTION_TRANSPORT_PARAMETERS","features":[446]},{"name":"USE_PASSWORD_PARMNUM","features":[446]},{"name":"USE_PAUSED","features":[446]},{"name":"USE_RECONN","features":[446]},{"name":"USE_REMOTE_PARMNUM","features":[446]},{"name":"USE_SD_PARMNUM","features":[446]},{"name":"USE_SESSLOST","features":[446]},{"name":"USE_SPECIFIC_TRANSPORT","features":[446]},{"name":"USE_SPOOLDEV","features":[446]},{"name":"USE_USERNAME_PARMNUM","features":[446]},{"name":"USE_WILDCARD","features":[446]},{"name":"UseTransportType_None","features":[446]},{"name":"UseTransportType_Quic","features":[446]},{"name":"UseTransportType_Wsk","features":[446]},{"name":"VALIDATED_LOGON","features":[446]},{"name":"VALID_LOGOFF","features":[446]},{"name":"WKSTA_BUFFERNAMEDPIPES_PARMNUM","features":[446]},{"name":"WKSTA_BUFFERREADONLYFILES_PARMNUM","features":[446]},{"name":"WKSTA_BUFFILESWITHDENYWRITE_PARMNUM","features":[446]},{"name":"WKSTA_CACHEFILETIMEOUT_PARMNUM","features":[446]},{"name":"WKSTA_CHARCOUNT_PARMNUM","features":[446]},{"name":"WKSTA_CHARTIME_PARMNUM","features":[446]},{"name":"WKSTA_CHARWAIT_PARMNUM","features":[446]},{"name":"WKSTA_COMPUTERNAME_PARMNUM","features":[446]},{"name":"WKSTA_DORMANTFILELIMIT_PARMNUM","features":[446]},{"name":"WKSTA_ERRLOGSZ_PARMNUM","features":[446]},{"name":"WKSTA_FORCECORECREATEMODE_PARMNUM","features":[446]},{"name":"WKSTA_INFO_100","features":[446]},{"name":"WKSTA_INFO_101","features":[446]},{"name":"WKSTA_INFO_1010","features":[446]},{"name":"WKSTA_INFO_1011","features":[446]},{"name":"WKSTA_INFO_1012","features":[446]},{"name":"WKSTA_INFO_1013","features":[446]},{"name":"WKSTA_INFO_1018","features":[446]},{"name":"WKSTA_INFO_102","features":[446]},{"name":"WKSTA_INFO_1023","features":[446]},{"name":"WKSTA_INFO_1027","features":[446]},{"name":"WKSTA_INFO_1028","features":[446]},{"name":"WKSTA_INFO_1032","features":[446]},{"name":"WKSTA_INFO_1033","features":[446]},{"name":"WKSTA_INFO_1041","features":[446]},{"name":"WKSTA_INFO_1042","features":[446]},{"name":"WKSTA_INFO_1043","features":[446]},{"name":"WKSTA_INFO_1044","features":[446]},{"name":"WKSTA_INFO_1045","features":[446]},{"name":"WKSTA_INFO_1046","features":[446]},{"name":"WKSTA_INFO_1047","features":[446]},{"name":"WKSTA_INFO_1048","features":[303,446]},{"name":"WKSTA_INFO_1049","features":[303,446]},{"name":"WKSTA_INFO_1050","features":[303,446]},{"name":"WKSTA_INFO_1051","features":[303,446]},{"name":"WKSTA_INFO_1052","features":[303,446]},{"name":"WKSTA_INFO_1053","features":[303,446]},{"name":"WKSTA_INFO_1054","features":[303,446]},{"name":"WKSTA_INFO_1055","features":[303,446]},{"name":"WKSTA_INFO_1056","features":[303,446]},{"name":"WKSTA_INFO_1057","features":[303,446]},{"name":"WKSTA_INFO_1058","features":[303,446]},{"name":"WKSTA_INFO_1059","features":[303,446]},{"name":"WKSTA_INFO_1060","features":[303,446]},{"name":"WKSTA_INFO_1061","features":[303,446]},{"name":"WKSTA_INFO_1062","features":[446]},{"name":"WKSTA_INFO_302","features":[446]},{"name":"WKSTA_INFO_402","features":[446]},{"name":"WKSTA_INFO_502","features":[303,446]},{"name":"WKSTA_KEEPCONN_PARMNUM","features":[446]},{"name":"WKSTA_KEEPSEARCH_PARMNUM","features":[446]},{"name":"WKSTA_LANGROUP_PARMNUM","features":[446]},{"name":"WKSTA_LANROOT_PARMNUM","features":[446]},{"name":"WKSTA_LOCKINCREMENT_PARMNUM","features":[446]},{"name":"WKSTA_LOCKMAXIMUM_PARMNUM","features":[446]},{"name":"WKSTA_LOCKQUOTA_PARMNUM","features":[446]},{"name":"WKSTA_LOGGED_ON_USERS_PARMNUM","features":[446]},{"name":"WKSTA_LOGON_DOMAIN_PARMNUM","features":[446]},{"name":"WKSTA_LOGON_SERVER_PARMNUM","features":[446]},{"name":"WKSTA_MAILSLOTS_PARMNUM","features":[446]},{"name":"WKSTA_MAXCMDS_PARMNUM","features":[446]},{"name":"WKSTA_MAXTHREADS_PARMNUM","features":[446]},{"name":"WKSTA_MAXWRKCACHE_PARMNUM","features":[446]},{"name":"WKSTA_NUMALERTS_PARMNUM","features":[446]},{"name":"WKSTA_NUMCHARBUF_PARMNUM","features":[446]},{"name":"WKSTA_NUMDGRAMBUF_PARMNUM","features":[446]},{"name":"WKSTA_NUMSERVICES_PARMNUM","features":[446]},{"name":"WKSTA_NUMWORKBUF_PARMNUM","features":[446]},{"name":"WKSTA_OTH_DOMAINS_PARMNUM","features":[446]},{"name":"WKSTA_PIPEINCREMENT_PARMNUM","features":[446]},{"name":"WKSTA_PIPEMAXIMUM_PARMNUM","features":[446]},{"name":"WKSTA_PLATFORM_ID_PARMNUM","features":[446]},{"name":"WKSTA_PRINTBUFTIME_PARMNUM","features":[446]},{"name":"WKSTA_READAHEADTHRUPUT_PARMNUM","features":[446]},{"name":"WKSTA_SESSTIMEOUT_PARMNUM","features":[446]},{"name":"WKSTA_SIZCHARBUF_PARMNUM","features":[446]},{"name":"WKSTA_SIZERROR_PARMNUM","features":[446]},{"name":"WKSTA_SIZWORKBUF_PARMNUM","features":[446]},{"name":"WKSTA_TRANSPORT_INFO_0","features":[303,446]},{"name":"WKSTA_USE512BYTESMAXTRANSFER_PARMNUM","features":[446]},{"name":"WKSTA_USECLOSEBEHIND_PARMNUM","features":[446]},{"name":"WKSTA_USEENCRYPTION_PARMNUM","features":[446]},{"name":"WKSTA_USELOCKANDREADANDUNLOCK_PARMNUM","features":[446]},{"name":"WKSTA_USEOPPORTUNISTICLOCKING_PARMNUM","features":[446]},{"name":"WKSTA_USERAWREAD_PARMNUM","features":[446]},{"name":"WKSTA_USERAWWRITE_PARMNUM","features":[446]},{"name":"WKSTA_USER_INFO_0","features":[446]},{"name":"WKSTA_USER_INFO_1","features":[446]},{"name":"WKSTA_USER_INFO_1101","features":[446]},{"name":"WKSTA_USEUNLOCKBEHIND_PARMNUM","features":[446]},{"name":"WKSTA_USEWRITERAWWITHDATA_PARMNUM","features":[446]},{"name":"WKSTA_UTILIZENTCACHING_PARMNUM","features":[446]},{"name":"WKSTA_VER_MAJOR_PARMNUM","features":[446]},{"name":"WKSTA_VER_MINOR_PARMNUM","features":[446]},{"name":"WKSTA_WRKHEURISTICS_PARMNUM","features":[446]},{"name":"WORKERFUNCTION","features":[446]},{"name":"WORKSTATION_DISPLAY_NAME","features":[446]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_SCHEMA","features":[446]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_XML","features":[446]},{"name":"WZC_PROFILE_API_ERROR_INTERNAL","features":[446]},{"name":"WZC_PROFILE_API_ERROR_NOT_SUPPORTED","features":[446]},{"name":"WZC_PROFILE_API_ERROR_XML_VALIDATION_FAILED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED_KEY_REQUIRED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ENABLED_KEY_PROVIDED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_NOT_APPLICABLE","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_REQUIRED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_AUTH_FOR_CONNECTION_TYPE","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_ENCRYPTION_FOR_AUTHMODE","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_NOT_APPLICABLE","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_REQUIRED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_REQUIRED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_ENCRYPTION_NOT_SUPPORTED","features":[446]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_NOT_SUPPORTED","features":[446]},{"name":"WZC_PROFILE_SET_ERROR_DUPLICATE_NETWORK","features":[446]},{"name":"WZC_PROFILE_SET_ERROR_MEMORY_ALLOCATION","features":[446]},{"name":"WZC_PROFILE_SET_ERROR_READING_1X_CONFIG","features":[446]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_1X_CONFIG","features":[446]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_WZC_CFG","features":[446]},{"name":"WZC_PROFILE_SUCCESS","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_1X_ENABLED","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_AUTHENTICATION","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_BAD_KEY_INDEX","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_BAD_NETWORK_KEY","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_BAD_SSID","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_BAD_VERSION","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_CONNECTION_TYPE","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_EAP_METHOD","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_ENCRYPTION","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_KEY_INDEX_RANGE","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_KEY_PROVIDED_AUTOMATICALLY","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_NO_VERSION","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_SSID_NOT_FOUND","features":[446]},{"name":"WZC_PROFILE_XML_ERROR_UNSUPPORTED_VERSION","features":[446]}],"452":[{"name":"CMD_ENTRY","features":[303,447]},{"name":"CMD_FLAG_HIDDEN","features":[447]},{"name":"CMD_FLAG_INTERACTIVE","features":[447]},{"name":"CMD_FLAG_LIMIT_MASK","features":[447]},{"name":"CMD_FLAG_LOCAL","features":[447]},{"name":"CMD_FLAG_ONLINE","features":[447]},{"name":"CMD_FLAG_PRIORITY","features":[447]},{"name":"CMD_FLAG_PRIVATE","features":[447]},{"name":"CMD_GROUP_ENTRY","features":[303,447]},{"name":"DEFAULT_CONTEXT_PRIORITY","features":[447]},{"name":"ERROR_CMD_NOT_FOUND","features":[447]},{"name":"ERROR_CONTEXT_ALREADY_REGISTERED","features":[447]},{"name":"ERROR_CONTINUE_IN_PARENT_CONTEXT","features":[447]},{"name":"ERROR_DLL_LOAD_FAILED","features":[447]},{"name":"ERROR_ENTRY_PT_NOT_FOUND","features":[447]},{"name":"ERROR_HELPER_ALREADY_REGISTERED","features":[447]},{"name":"ERROR_INIT_DISPLAY","features":[447]},{"name":"ERROR_INVALID_OPTION_TAG","features":[447]},{"name":"ERROR_INVALID_OPTION_VALUE","features":[447]},{"name":"ERROR_INVALID_SYNTAX","features":[447]},{"name":"ERROR_MISSING_OPTION","features":[447]},{"name":"ERROR_NO_CHANGE","features":[447]},{"name":"ERROR_NO_ENTRIES","features":[447]},{"name":"ERROR_NO_TAG","features":[447]},{"name":"ERROR_OKAY","features":[447]},{"name":"ERROR_PARSING_FAILURE","features":[447]},{"name":"ERROR_PROTOCOL_NOT_IN_TRANSPORT","features":[447]},{"name":"ERROR_SHOW_USAGE","features":[447]},{"name":"ERROR_SUPPRESS_OUTPUT","features":[447]},{"name":"ERROR_TAG_ALREADY_PRESENT","features":[447]},{"name":"ERROR_TRANSPORT_NOT_PRESENT","features":[447]},{"name":"GET_RESOURCE_STRING_FN_NAME","features":[447]},{"name":"MAX_NAME_LEN","features":[447]},{"name":"MatchEnumTag","features":[303,447]},{"name":"MatchToken","features":[303,447]},{"name":"NETSH_ARG_DELIMITER","features":[447]},{"name":"NETSH_CMD_DELIMITER","features":[447]},{"name":"NETSH_COMMIT","features":[447]},{"name":"NETSH_COMMIT_STATE","features":[447]},{"name":"NETSH_ERROR_BASE","features":[447]},{"name":"NETSH_ERROR_END","features":[447]},{"name":"NETSH_FLUSH","features":[447]},{"name":"NETSH_MAX_CMD_TOKEN_LENGTH","features":[447]},{"name":"NETSH_MAX_TOKEN_LENGTH","features":[447]},{"name":"NETSH_SAVE","features":[447]},{"name":"NETSH_UNCOMMIT","features":[447]},{"name":"NETSH_VERSION_50","features":[447]},{"name":"NS_CMD_FLAGS","features":[447]},{"name":"NS_CONTEXT_ATTRIBUTES","features":[303,447]},{"name":"NS_EVENTS","features":[447]},{"name":"NS_EVENT_FROM_N","features":[447]},{"name":"NS_EVENT_FROM_START","features":[447]},{"name":"NS_EVENT_LAST_N","features":[447]},{"name":"NS_EVENT_LAST_SECS","features":[447]},{"name":"NS_EVENT_LOOP","features":[447]},{"name":"NS_GET_EVENT_IDS_FN_NAME","features":[447]},{"name":"NS_HELPER_ATTRIBUTES","features":[447]},{"name":"NS_MODE_CHANGE","features":[447]},{"name":"NS_REQS","features":[447]},{"name":"NS_REQ_ALLOW_MULTIPLE","features":[447]},{"name":"NS_REQ_ONE_OR_MORE","features":[447]},{"name":"NS_REQ_PRESENT","features":[447]},{"name":"NS_REQ_ZERO","features":[447]},{"name":"PFN_CUSTOM_HELP","features":[303,447]},{"name":"PFN_HANDLE_CMD","features":[303,447]},{"name":"PGET_RESOURCE_STRING_FN","features":[447]},{"name":"PNS_CONTEXT_COMMIT_FN","features":[447]},{"name":"PNS_CONTEXT_CONNECT_FN","features":[447]},{"name":"PNS_CONTEXT_DUMP_FN","features":[447]},{"name":"PNS_DLL_INIT_FN","features":[447]},{"name":"PNS_DLL_STOP_FN","features":[447]},{"name":"PNS_HELPER_START_FN","features":[447]},{"name":"PNS_HELPER_STOP_FN","features":[447]},{"name":"PNS_OSVERSIONCHECK","features":[303,447]},{"name":"PreprocessCommand","features":[303,447]},{"name":"PrintError","features":[303,447]},{"name":"PrintMessage","features":[447]},{"name":"PrintMessageFromModule","features":[303,447]},{"name":"RegisterContext","features":[303,447]},{"name":"RegisterHelper","features":[447]},{"name":"TAG_TYPE","features":[303,447]},{"name":"TOKEN_VALUE","features":[447]}],"453":[{"name":"ATTRIBUTE_TYPE","features":[448]},{"name":"AT_BOOLEAN","features":[448]},{"name":"AT_GUID","features":[448]},{"name":"AT_INT16","features":[448]},{"name":"AT_INT32","features":[448]},{"name":"AT_INT64","features":[448]},{"name":"AT_INT8","features":[448]},{"name":"AT_INVALID","features":[448]},{"name":"AT_LIFE_TIME","features":[448]},{"name":"AT_OCTET_STRING","features":[448]},{"name":"AT_SOCKADDR","features":[448]},{"name":"AT_STRING","features":[448]},{"name":"AT_UINT16","features":[448]},{"name":"AT_UINT32","features":[448]},{"name":"AT_UINT64","features":[448]},{"name":"AT_UINT8","features":[448]},{"name":"DF_IMPERSONATION","features":[448]},{"name":"DF_TRACELESS","features":[448]},{"name":"DIAGNOSIS_STATUS","features":[448]},{"name":"DIAG_SOCKADDR","features":[448]},{"name":"DS_CONFIRMED","features":[448]},{"name":"DS_DEFERRED","features":[448]},{"name":"DS_INDETERMINATE","features":[448]},{"name":"DS_NOT_IMPLEMENTED","features":[448]},{"name":"DS_PASSTHROUGH","features":[448]},{"name":"DS_REJECTED","features":[448]},{"name":"DiagnosticsInfo","features":[448]},{"name":"HELPER_ATTRIBUTE","features":[303,448]},{"name":"HYPOTHESIS","features":[303,448]},{"name":"HelperAttributeInfo","features":[448]},{"name":"HypothesisResult","features":[303,448]},{"name":"INetDiagExtensibleHelper","features":[448]},{"name":"INetDiagHelper","features":[448]},{"name":"INetDiagHelperEx","features":[448]},{"name":"INetDiagHelperInfo","features":[448]},{"name":"INetDiagHelperUtilFactory","features":[448]},{"name":"LIFE_TIME","features":[303,448]},{"name":"NDF_ADD_CAPTURE_TRACE","features":[448]},{"name":"NDF_APPLY_INCLUSION_LIST_FILTER","features":[448]},{"name":"NDF_ERROR_START","features":[448]},{"name":"NDF_E_BAD_PARAM","features":[448]},{"name":"NDF_E_CANCELLED","features":[448]},{"name":"NDF_E_DISABLED","features":[448]},{"name":"NDF_E_LENGTH_EXCEEDED","features":[448]},{"name":"NDF_E_NOHELPERCLASS","features":[448]},{"name":"NDF_E_PROBLEM_PRESENT","features":[448]},{"name":"NDF_E_UNKNOWN","features":[448]},{"name":"NDF_E_VALIDATION","features":[448]},{"name":"NDF_INBOUND_FLAG_EDGETRAVERSAL","features":[448]},{"name":"NDF_INBOUND_FLAG_HEALTHCHECK","features":[448]},{"name":"NdfCancelIncident","features":[448]},{"name":"NdfCloseIncident","features":[448]},{"name":"NdfCreateConnectivityIncident","features":[448]},{"name":"NdfCreateDNSIncident","features":[448]},{"name":"NdfCreateGroupingIncident","features":[448,316]},{"name":"NdfCreateIncident","features":[303,448]},{"name":"NdfCreateNetConnectionIncident","features":[448]},{"name":"NdfCreatePnrpIncident","features":[303,448]},{"name":"NdfCreateSharingIncident","features":[448]},{"name":"NdfCreateWebIncident","features":[448]},{"name":"NdfCreateWebIncidentEx","features":[303,448]},{"name":"NdfCreateWinSockIncident","features":[448,316,306]},{"name":"NdfDiagnoseIncident","features":[448]},{"name":"NdfExecuteDiagnosis","features":[303,448]},{"name":"NdfGetTraceFile","features":[448]},{"name":"NdfRepairIncident","features":[448]},{"name":"OCTET_STRING","features":[448]},{"name":"PROBLEM_TYPE","features":[448]},{"name":"PT_DOWN_STREAM_HEALTH","features":[448]},{"name":"PT_HIGHER_UTILIZATION","features":[448]},{"name":"PT_HIGH_UTILIZATION","features":[448]},{"name":"PT_INVALID","features":[448]},{"name":"PT_LOWER_HEALTH","features":[448]},{"name":"PT_LOW_HEALTH","features":[448]},{"name":"PT_UP_STREAM_UTILIZATION","features":[448]},{"name":"RCF_ISCONFIRMED","features":[448]},{"name":"RCF_ISLEAF","features":[448]},{"name":"RCF_ISTHIRDPARTY","features":[448]},{"name":"REPAIR_RISK","features":[448]},{"name":"REPAIR_SCOPE","features":[448]},{"name":"REPAIR_STATUS","features":[448]},{"name":"RF_CONTACT_ADMIN","features":[448]},{"name":"RF_INFORMATION_ONLY","features":[448]},{"name":"RF_REPRO","features":[448]},{"name":"RF_RESERVED","features":[448]},{"name":"RF_RESERVED_CA","features":[448]},{"name":"RF_RESERVED_LNI","features":[448]},{"name":"RF_SHOW_EVENTS","features":[448]},{"name":"RF_UI_ONLY","features":[448]},{"name":"RF_USER_ACTION","features":[448]},{"name":"RF_USER_CONFIRMATION","features":[448]},{"name":"RF_VALIDATE_HELPTOPIC","features":[448]},{"name":"RF_WORKAROUND","features":[448]},{"name":"RR_NORISK","features":[448]},{"name":"RR_NOROLLBACK","features":[448]},{"name":"RR_ROLLBACK","features":[448]},{"name":"RS_APPLICATION","features":[448]},{"name":"RS_DEFERRED","features":[448]},{"name":"RS_NOT_IMPLEMENTED","features":[448]},{"name":"RS_PROCESS","features":[448]},{"name":"RS_REPAIRED","features":[448]},{"name":"RS_SYSTEM","features":[448]},{"name":"RS_UNREPAIRED","features":[448]},{"name":"RS_USER","features":[448]},{"name":"RS_USER_ACTION","features":[448]},{"name":"RepairInfo","features":[448]},{"name":"RepairInfoEx","features":[448]},{"name":"RootCauseInfo","features":[448]},{"name":"ShellCommandInfo","features":[448]},{"name":"UIT_DUI","features":[448]},{"name":"UIT_HELP_PANE","features":[448]},{"name":"UIT_INVALID","features":[448]},{"name":"UIT_NONE","features":[448]},{"name":"UIT_SHELL_COMMAND","features":[448]},{"name":"UI_INFO_TYPE","features":[448]},{"name":"UiInfo","features":[448]}],"454":[{"name":"ACCOUNTINGPROPERTIES","features":[449]},{"name":"ALLOWEDIN8021X","features":[449]},{"name":"ALLOWEDINCONDITION","features":[449]},{"name":"ALLOWEDINPROFILE","features":[449]},{"name":"ALLOWEDINPROXYCONDITION","features":[449]},{"name":"ALLOWEDINPROXYPROFILE","features":[449]},{"name":"ALLOWEDINVPNDIALUP","features":[449]},{"name":"ATTRIBUTEFILTER","features":[449]},{"name":"ATTRIBUTEID","features":[449]},{"name":"ATTRIBUTEINFO","features":[449]},{"name":"ATTRIBUTEPROPERTIES","features":[449]},{"name":"ATTRIBUTERESTRICTIONS","features":[449]},{"name":"ATTRIBUTESYNTAX","features":[449]},{"name":"ATTRIBUTE_FILTER_IEEE_802_1x","features":[449]},{"name":"ATTRIBUTE_FILTER_NONE","features":[449]},{"name":"ATTRIBUTE_FILTER_VPN_DIALUP","features":[449]},{"name":"ATTRIBUTE_MIN_VALUE","features":[449]},{"name":"ATTRIBUTE_UNDEFINED","features":[449]},{"name":"AUTHENTICATION_TYPE","features":[449]},{"name":"AUTHSRV_AUTHORIZATION_VALUE_W","features":[449]},{"name":"AUTHSRV_ENFORCE_NP_FOR_PAP_CHALLENGE_RESPONSE_VALUE_W","features":[449]},{"name":"AUTHSRV_EXTENSIONS_VALUE_W","features":[449]},{"name":"AUTHSRV_PARAMETERS_KEY_W","features":[449]},{"name":"CLIENTPROPERTIES","features":[449]},{"name":"CONDITIONPROPERTIES","features":[449]},{"name":"DATA_STORE_DIRECTORY","features":[449]},{"name":"DATA_STORE_LOCAL","features":[449]},{"name":"DESCRIPTION","features":[449]},{"name":"DICTIONARYPROPERTIES","features":[449]},{"name":"DOMAIN_TYPE_MIXED","features":[449]},{"name":"DOMAIN_TYPE_NONE","features":[449]},{"name":"DOMAIN_TYPE_NT4","features":[449]},{"name":"DOMAIN_TYPE_NT5","features":[449]},{"name":"IASCOMMONPROPERTIES","features":[449]},{"name":"IASCOMPONENTPROPERTIES","features":[449]},{"name":"IASDATASTORE","features":[449]},{"name":"IASDOMAINTYPE","features":[449]},{"name":"IASOSTYPE","features":[449]},{"name":"IASPROPERTIES","features":[449]},{"name":"IAS_ATTRIBUTE_ABSOLUTE_TIME","features":[449]},{"name":"IAS_ATTRIBUTE_ACCEPT_REASON_CODE","features":[449]},{"name":"IAS_ATTRIBUTE_ACCT_PROVIDER_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_ACCT_PROVIDER_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_ALLOWED_CERTIFICATE_EKU","features":[449]},{"name":"IAS_ATTRIBUTE_ALLOW_DIALIN","features":[449]},{"name":"IAS_ATTRIBUTE_AUTHENTICATION_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_AUTH_PROVIDER_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_AUTH_PROVIDER_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_CERTIFICATE_EKU","features":[449]},{"name":"IAS_ATTRIBUTE_CERTIFICATE_THUMBPRINT","features":[449]},{"name":"IAS_ATTRIBUTE_CLEAR_TEXT_PASSWORD","features":[449]},{"name":"IAS_ATTRIBUTE_CLIENT_IP_ADDRESS","features":[449]},{"name":"IAS_ATTRIBUTE_CLIENT_IPv6_ADDRESS","features":[449]},{"name":"IAS_ATTRIBUTE_CLIENT_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_CLIENT_PACKET_HEADER","features":[449]},{"name":"IAS_ATTRIBUTE_CLIENT_QUARANTINE_COMPATIBLE","features":[449]},{"name":"IAS_ATTRIBUTE_CLIENT_UDP_PORT","features":[449]},{"name":"IAS_ATTRIBUTE_CLIENT_VENDOR_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_EAP_CONFIG","features":[449]},{"name":"IAS_ATTRIBUTE_EAP_FRIENDLY_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_EAP_SESSION","features":[449]},{"name":"IAS_ATTRIBUTE_EAP_TYPEID","features":[449]},{"name":"IAS_ATTRIBUTE_EAP_TYPES_CONFIGURED_IN_PROXYPOLICY","features":[449]},{"name":"IAS_ATTRIBUTE_EXTENSION_STATE","features":[449]},{"name":"IAS_ATTRIBUTE_FULLY_QUALIFIED_MACHINE_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_FULLY_QUALIFIED_USER_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_GENERATE_CLASS_ATTRIBUTE","features":[449]},{"name":"IAS_ATTRIBUTE_GENERATE_SESSION_TIMEOUT","features":[449]},{"name":"IAS_ATTRIBUTE_IGNORE_USER_DIALIN_PROPERTIES","features":[449]},{"name":"IAS_ATTRIBUTE_IS_REPLAY","features":[449]},{"name":"IAS_ATTRIBUTE_LOGGING_RESULT","features":[449]},{"name":"IAS_ATTRIBUTE_MACHINE_INVENTORY","features":[449]},{"name":"IAS_ATTRIBUTE_MACHINE_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_MACHINE_NTGROUPS","features":[449]},{"name":"IAS_ATTRIBUTE_MACHINE_TOKEN_GROUPS","features":[449]},{"name":"IAS_ATTRIBUTE_MACHINE_TOKEN_SID","features":[449]},{"name":"IAS_ATTRIBUTE_MACHINE_VALIDATED","features":[449]},{"name":"IAS_ATTRIBUTE_MANIPULATION_RULE","features":[449]},{"name":"IAS_ATTRIBUTE_MANIPULATION_TARGET","features":[449]},{"name":"IAS_ATTRIBUTE_NAME_MAPPED","features":[449]},{"name":"IAS_ATTRIBUTE_NP_ALLOWED_EAP_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_NP_ALLOWED_PORT_TYPES","features":[449]},{"name":"IAS_ATTRIBUTE_NP_AUTHENTICATION_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_NP_CALLED_STATION_ID","features":[449]},{"name":"IAS_ATTRIBUTE_NP_CALLING_STATION_ID","features":[449]},{"name":"IAS_ATTRIBUTE_NP_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_NP_PEAPUPFRONT_ENABLED","features":[449]},{"name":"IAS_ATTRIBUTE_NP_TIME_OF_DAY","features":[449]},{"name":"IAS_ATTRIBUTE_NT4_ACCOUNT_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_NT4_HCAP_ACCOUNT_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_NT4_MACHINE_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_NTGROUPS","features":[449]},{"name":"IAS_ATTRIBUTE_ORIGINAL_USER_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_OVERRIDE_RAP_AUTH","features":[449]},{"name":"IAS_ATTRIBUTE_PACKET_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_PASSPORT_USER_MAPPING_UPN_SUFFIX","features":[449]},{"name":"IAS_ATTRIBUTE_PEAP_CHANNEL_UP","features":[449]},{"name":"IAS_ATTRIBUTE_PEAP_EMBEDDED_EAP_TYPEID","features":[449]},{"name":"IAS_ATTRIBUTE_PEAP_FAST_ROAMED_SESSION","features":[449]},{"name":"IAS_ATTRIBUTE_POLICY_ENFORCED","features":[449]},{"name":"IAS_ATTRIBUTE_POLICY_EVALUATED_SHV","features":[449]},{"name":"IAS_ATTRIBUTE_PROVIDER_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_PROVIDER_TYPE","features":[449]},{"name":"IAS_ATTRIBUTE_PROXY_EAP_CONFIG","features":[449]},{"name":"IAS_ATTRIBUTE_PROXY_POLICY_NAME","features":[449]},{"name":"IAS_ATTRIBUTE_PROXY_RETRY_COUNT","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_FIXUP_SERVERS","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_FIXUP_SERVERS_CONFIGURATION","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SESSION_HANDLE","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SESSION_ID","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SYSTEM_HEALTH_RESULT","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SYSTEM_HEALTH_VALIDATORS","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_UPDATE_NON_COMPLIANT","features":[449]},{"name":"IAS_ATTRIBUTE_QUARANTINE_URL","features":[449]},{"name":"IAS_ATTRIBUTE_RADIUS_USERNAME_ENCODING_ASCII","features":[449]},{"name":"IAS_ATTRIBUTE_REASON_CODE","features":[449]},{"name":"IAS_ATTRIBUTE_REJECT_REASON_CODE","features":[449]},{"name":"IAS_ATTRIBUTE_REMOTE_RADIUS_TO_WINDOWS_USER_MAPPING","features":[449]},{"name":"IAS_ATTRIBUTE_REMOTE_SERVER_ADDRESS","features":[449]},{"name":"IAS_ATTRIBUTE_REQUEST_ID","features":[449]},{"name":"IAS_ATTRIBUTE_REQUEST_START_TIME","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_MACHINE_HEALTHCHECK_ONLY","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_NP_CALLING_STATION_ID","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_CALLBACK_NUMBER","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_INTERFACE_ID","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_IP_ADDRESS","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_IPv6_PREFIX","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_IPv6_ROUTE","features":[449]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_ROUTE","features":[449]},{"name":"IAS_ATTRIBUTE_SERVER_IP_ADDRESS","features":[449]},{"name":"IAS_ATTRIBUTE_SERVER_IPv6_ADDRESS","features":[449]},{"name":"IAS_ATTRIBUTE_SESSION_TIMEOUT","features":[449]},{"name":"IAS_ATTRIBUTE_SHARED_SECRET","features":[449]},{"name":"IAS_ATTRIBUTE_SOH_CARRIER_EAPTLV","features":[449]},{"name":"IAS_ATTRIBUTE_TOKEN_GROUPS","features":[449]},{"name":"IAS_ATTRIBUTE_TUNNEL_TAG","features":[449]},{"name":"IAS_ATTRIBUTE_USER_NTGROUPS","features":[449]},{"name":"IAS_ATTRIBUTE_USER_TOKEN_GROUPS","features":[449]},{"name":"IAS_ATTRIBUTE_USER_TOKEN_SID","features":[449]},{"name":"IAS_AUTH_ARAP","features":[449]},{"name":"IAS_AUTH_CUSTOM","features":[449]},{"name":"IAS_AUTH_EAP","features":[449]},{"name":"IAS_AUTH_INVALID","features":[449]},{"name":"IAS_AUTH_MD5CHAP","features":[449]},{"name":"IAS_AUTH_MSCHAP","features":[449]},{"name":"IAS_AUTH_MSCHAP2","features":[449]},{"name":"IAS_AUTH_MSCHAP2_CPW","features":[449]},{"name":"IAS_AUTH_MSCHAP_CPW","features":[449]},{"name":"IAS_AUTH_NONE","features":[449]},{"name":"IAS_AUTH_PAP","features":[449]},{"name":"IAS_AUTH_PEAP","features":[449]},{"name":"IAS_IDENTITY_NO_DEFAULT","features":[449]},{"name":"IAS_LOGGING_DAILY","features":[449]},{"name":"IAS_LOGGING_MONTHLY","features":[449]},{"name":"IAS_LOGGING_UNLIMITED_SIZE","features":[449]},{"name":"IAS_LOGGING_WEEKLY","features":[449]},{"name":"IAS_LOGGING_WHEN_FILE_SIZE_REACHES","features":[449]},{"name":"IAS_SYNTAX_BOOLEAN","features":[449]},{"name":"IAS_SYNTAX_ENUMERATOR","features":[449]},{"name":"IAS_SYNTAX_INETADDR","features":[449]},{"name":"IAS_SYNTAX_INETADDR6","features":[449]},{"name":"IAS_SYNTAX_INTEGER","features":[449]},{"name":"IAS_SYNTAX_OCTETSTRING","features":[449]},{"name":"IAS_SYNTAX_PROVIDERSPECIFIC","features":[449]},{"name":"IAS_SYNTAX_STRING","features":[449]},{"name":"IAS_SYNTAX_UNSIGNEDINTEGER","features":[449]},{"name":"IAS_SYNTAX_UTCTIME","features":[449]},{"name":"IDENTITY_TYPE","features":[449]},{"name":"IPFILTERPROPERTIES","features":[449]},{"name":"ISdo","features":[449,354]},{"name":"ISdoCollection","features":[449,354]},{"name":"ISdoDictionaryOld","features":[449,354]},{"name":"ISdoMachine","features":[449,354]},{"name":"ISdoMachine2","features":[449,354]},{"name":"ISdoServiceControl","features":[449,354]},{"name":"ITemplateSdo","features":[449,354]},{"name":"LDAPNAME","features":[449]},{"name":"MS_ATTRIBUTE_ACCT_AUTH_TYPE","features":[449]},{"name":"MS_ATTRIBUTE_ACCT_EAP_TYPE","features":[449]},{"name":"MS_ATTRIBUTE_AFW_PROTECTION_LEVEL","features":[449]},{"name":"MS_ATTRIBUTE_AFW_QUARANTINE_ZONE","features":[449]},{"name":"MS_ATTRIBUTE_AZURE_POLICY_ID","features":[449]},{"name":"MS_ATTRIBUTE_CHAP2_CPW","features":[449]},{"name":"MS_ATTRIBUTE_CHAP2_RESPONSE","features":[449]},{"name":"MS_ATTRIBUTE_CHAP2_SUCCESS","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_CHALLENGE","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_CPW1","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_CPW2","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_DOMAIN","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_ERROR","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_LM_ENC_PW","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_MPPE_KEYS","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_NT_ENC_PW","features":[449]},{"name":"MS_ATTRIBUTE_CHAP_RESPONSE","features":[449]},{"name":"MS_ATTRIBUTE_EAP_TLV","features":[449]},{"name":"MS_ATTRIBUTE_EXTENDED_QUARANTINE_STATE","features":[449]},{"name":"MS_ATTRIBUTE_FILTER","features":[449]},{"name":"MS_ATTRIBUTE_HCAP_LOCATION_GROUP_NAME","features":[449]},{"name":"MS_ATTRIBUTE_HCAP_USER_GROUPS","features":[449]},{"name":"MS_ATTRIBUTE_HCAP_USER_NAME","features":[449]},{"name":"MS_ATTRIBUTE_IDENTITY_TYPE","features":[449]},{"name":"MS_ATTRIBUTE_IPV4_REMEDIATION_SERVERS","features":[449]},{"name":"MS_ATTRIBUTE_IPV6_REMEDIATION_SERVERS","features":[449]},{"name":"MS_ATTRIBUTE_IPv6_FILTER","features":[449]},{"name":"MS_ATTRIBUTE_MACHINE_NAME","features":[449]},{"name":"MS_ATTRIBUTE_MPPE_RECV_KEY","features":[449]},{"name":"MS_ATTRIBUTE_MPPE_SEND_KEY","features":[449]},{"name":"MS_ATTRIBUTE_NETWORK_ACCESS_SERVER_TYPE","features":[449]},{"name":"MS_ATTRIBUTE_NOT_QUARANTINE_CAPABLE","features":[449]},{"name":"MS_ATTRIBUTE_PRIMARY_DNS_SERVER","features":[449]},{"name":"MS_ATTRIBUTE_PRIMARY_NBNS_SERVER","features":[449]},{"name":"MS_ATTRIBUTE_QUARANTINE_GRACE_TIME","features":[449]},{"name":"MS_ATTRIBUTE_QUARANTINE_GRACE_TIME_CONFIGURATION","features":[449]},{"name":"MS_ATTRIBUTE_QUARANTINE_IPFILTER","features":[449]},{"name":"MS_ATTRIBUTE_QUARANTINE_SESSION_TIMEOUT","features":[449]},{"name":"MS_ATTRIBUTE_QUARANTINE_SOH","features":[449]},{"name":"MS_ATTRIBUTE_QUARANTINE_STATE","features":[449]},{"name":"MS_ATTRIBUTE_QUARANTINE_USER_CLASS","features":[449]},{"name":"MS_ATTRIBUTE_RAS_CLIENT_NAME","features":[449]},{"name":"MS_ATTRIBUTE_RAS_CLIENT_VERSION","features":[449]},{"name":"MS_ATTRIBUTE_RAS_CORRELATION_ID","features":[449]},{"name":"MS_ATTRIBUTE_RAS_ROUTING_DOMAIN_ID","features":[449]},{"name":"MS_ATTRIBUTE_RAS_VENDOR","features":[449]},{"name":"MS_ATTRIBUTE_RAS_VERSION","features":[449]},{"name":"MS_ATTRIBUTE_SECONDARY_DNS_SERVER","features":[449]},{"name":"MS_ATTRIBUTE_SECONDARY_NBNS_SERVER","features":[449]},{"name":"MS_ATTRIBUTE_SERVICE_CLASS","features":[449]},{"name":"MS_ATTRIBUTE_TSG_DEVICE_REDIRECTION","features":[449]},{"name":"MS_ATTRIBUTE_USER_IPv4_ADDRESS","features":[449]},{"name":"MS_ATTRIBUTE_USER_IPv6_ADDRESS","features":[449]},{"name":"MS_ATTRIBUTE_USER_SECURITY_IDENTITY","features":[449]},{"name":"MULTIVALUED","features":[449]},{"name":"NAME","features":[449]},{"name":"NAMESPROPERTIES","features":[449]},{"name":"NAPPROPERTIES","features":[449]},{"name":"NEW_LOG_FILE_FREQUENCY","features":[449]},{"name":"NTEVENTLOGPROPERTIES","features":[449]},{"name":"NTSAMPROPERTIES","features":[449]},{"name":"POLICYPROPERTIES","features":[449]},{"name":"PRADIUS_EXTENSION_FREE_ATTRIBUTES","features":[449]},{"name":"PRADIUS_EXTENSION_INIT","features":[449]},{"name":"PRADIUS_EXTENSION_PROCESS","features":[449]},{"name":"PRADIUS_EXTENSION_PROCESS_2","features":[449]},{"name":"PRADIUS_EXTENSION_PROCESS_EX","features":[449]},{"name":"PRADIUS_EXTENSION_TERM","features":[449]},{"name":"PROFILEPROPERTIES","features":[449]},{"name":"PROPERTY_ACCOUNTING_DISCARD_REQUEST_ON_FAILURE","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_ACCOUNTING","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_ACCOUNTING_INTERIM","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_AUTHENTICATION","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_AUTHENTICATION_INTERIM","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_DELETE_IF_FULL","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_ENABLE_LOGGING","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_FILE_DIRECTORY","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_FILE_IS_BACKUP","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_IAS1_FORMAT","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_OPEN_NEW_FREQUENCY","features":[449]},{"name":"PROPERTY_ACCOUNTING_LOG_OPEN_NEW_SIZE","features":[449]},{"name":"PROPERTY_ACCOUNTING_SQL_MAX_SESSIONS","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_8021X","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_CONDITION","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_PROFILE","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_PROXY_CONDITION","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_PROXY_PROFILE","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_VPNDIALUP","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_LOG_ORDINAL","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_MULTIPLE","features":[449]},{"name":"PROPERTY_ATTRIBUTE_DISPLAY_NAME","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ENUM_FILTERS","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ENUM_NAMES","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ENUM_VALUES","features":[449]},{"name":"PROPERTY_ATTRIBUTE_ID","features":[449]},{"name":"PROPERTY_ATTRIBUTE_IS_ENUMERABLE","features":[449]},{"name":"PROPERTY_ATTRIBUTE_SYNTAX","features":[449]},{"name":"PROPERTY_ATTRIBUTE_VALUE","features":[449]},{"name":"PROPERTY_ATTRIBUTE_VENDOR_ID","features":[449]},{"name":"PROPERTY_ATTRIBUTE_VENDOR_TYPE_ID","features":[449]},{"name":"PROPERTY_CLIENT_ADDRESS","features":[449]},{"name":"PROPERTY_CLIENT_ENABLED","features":[449]},{"name":"PROPERTY_CLIENT_NAS_MANUFACTURER","features":[449]},{"name":"PROPERTY_CLIENT_QUARANTINE_COMPATIBLE","features":[449]},{"name":"PROPERTY_CLIENT_REQUIRE_SIGNATURE","features":[449]},{"name":"PROPERTY_CLIENT_SECRET_TEMPLATE_GUID","features":[449]},{"name":"PROPERTY_CLIENT_SHARED_SECRET","features":[449]},{"name":"PROPERTY_CLIENT_UNUSED","features":[449]},{"name":"PROPERTY_COMPONENT_ID","features":[449]},{"name":"PROPERTY_COMPONENT_PROG_ID","features":[449]},{"name":"PROPERTY_COMPONENT_START","features":[449]},{"name":"PROPERTY_CONDITION_TEXT","features":[449]},{"name":"PROPERTY_DICTIONARY_ATTRIBUTES_COLLECTION","features":[449]},{"name":"PROPERTY_DICTIONARY_LOCATION","features":[449]},{"name":"PROPERTY_EVENTLOG_LOG_APPLICATION_EVENTS","features":[449]},{"name":"PROPERTY_EVENTLOG_LOG_DEBUG","features":[449]},{"name":"PROPERTY_EVENTLOG_LOG_MALFORMED","features":[449]},{"name":"PROPERTY_IAS_AUDITORS_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_POLICIES_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_PROFILES_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_PROTOCOLS_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_PROXYPOLICIES_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_PROXYPROFILES_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_RADIUSSERVERGROUPS_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_REMEDIATIONSERVERGROUPS_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_REQUESTHANDLERS_COLLECTION","features":[449]},{"name":"PROPERTY_IAS_SHVTEMPLATES_COLLECTION","features":[449]},{"name":"PROPERTY_IPFILTER_ATTRIBUTES_COLLECTION","features":[449]},{"name":"PROPERTY_NAMES_REALMS","features":[449]},{"name":"PROPERTY_NAP_POLICIES_COLLECTION","features":[449]},{"name":"PROPERTY_NAS_VENDOR_ID","features":[449]},{"name":"PROPERTY_NTSAM_ALLOW_LM_AUTHENTICATION","features":[449]},{"name":"PROPERTY_POLICY_ACTION","features":[449]},{"name":"PROPERTY_POLICY_CONDITIONS_COLLECTION","features":[449]},{"name":"PROPERTY_POLICY_CONSTRAINT","features":[449]},{"name":"PROPERTY_POLICY_ENABLED","features":[449]},{"name":"PROPERTY_POLICY_MERIT","features":[449]},{"name":"PROPERTY_POLICY_PROFILE_NAME","features":[449]},{"name":"PROPERTY_POLICY_SOURCETAG","features":[449]},{"name":"PROPERTY_POLICY_UNUSED0","features":[449]},{"name":"PROPERTY_POLICY_UNUSED1","features":[449]},{"name":"PROPERTY_PROFILE_ATTRIBUTES_COLLECTION","features":[449]},{"name":"PROPERTY_PROFILE_IPFILTER_TEMPLATE_GUID","features":[449]},{"name":"PROPERTY_PROTOCOL_REQUEST_HANDLER","features":[449]},{"name":"PROPERTY_PROTOCOL_START","features":[449]},{"name":"PROPERTY_RADIUSPROXY_SERVERGROUPS","features":[449]},{"name":"PROPERTY_RADIUSSERVERGROUP_SERVERS_COLLECTION","features":[449]},{"name":"PROPERTY_RADIUSSERVER_ACCT_PORT","features":[449]},{"name":"PROPERTY_RADIUSSERVER_ACCT_SECRET","features":[449]},{"name":"PROPERTY_RADIUSSERVER_ACCT_SECRET_TEMPLATE_GUID","features":[449]},{"name":"PROPERTY_RADIUSSERVER_ADDRESS","features":[449]},{"name":"PROPERTY_RADIUSSERVER_AUTH_PORT","features":[449]},{"name":"PROPERTY_RADIUSSERVER_AUTH_SECRET","features":[449]},{"name":"PROPERTY_RADIUSSERVER_AUTH_SECRET_TEMPLATE_GUID","features":[449]},{"name":"PROPERTY_RADIUSSERVER_BLACKOUT","features":[449]},{"name":"PROPERTY_RADIUSSERVER_FORWARD_ACCT_ONOFF","features":[449]},{"name":"PROPERTY_RADIUSSERVER_MAX_LOST","features":[449]},{"name":"PROPERTY_RADIUSSERVER_PRIORITY","features":[449]},{"name":"PROPERTY_RADIUSSERVER_SEND_SIGNATURE","features":[449]},{"name":"PROPERTY_RADIUSSERVER_TIMEOUT","features":[449]},{"name":"PROPERTY_RADIUSSERVER_WEIGHT","features":[449]},{"name":"PROPERTY_RADIUS_ACCOUNTING_PORT","features":[449]},{"name":"PROPERTY_RADIUS_AUTHENTICATION_PORT","features":[449]},{"name":"PROPERTY_RADIUS_CLIENTS_COLLECTION","features":[449]},{"name":"PROPERTY_RADIUS_VENDORS_COLLECTION","features":[449]},{"name":"PROPERTY_REMEDIATIONSERVERGROUP_SERVERS_COLLECTION","features":[449]},{"name":"PROPERTY_REMEDIATIONSERVERS_SERVERGROUPS","features":[449]},{"name":"PROPERTY_REMEDIATIONSERVER_ADDRESS","features":[449]},{"name":"PROPERTY_REMEDIATIONSERVER_FRIENDLY_NAME","features":[449]},{"name":"PROPERTY_SDO_CLASS","features":[449]},{"name":"PROPERTY_SDO_DATASTORE_NAME","features":[449]},{"name":"PROPERTY_SDO_DESCRIPTION","features":[449]},{"name":"PROPERTY_SDO_ID","features":[449]},{"name":"PROPERTY_SDO_NAME","features":[449]},{"name":"PROPERTY_SDO_OPAQUE","features":[449]},{"name":"PROPERTY_SDO_RESERVED","features":[449]},{"name":"PROPERTY_SDO_START","features":[449]},{"name":"PROPERTY_SDO_TEMPLATE_GUID","features":[449]},{"name":"PROPERTY_SHAREDSECRET_STRING","features":[449]},{"name":"PROPERTY_SHVCONFIG_LIST","features":[449]},{"name":"PROPERTY_SHV_COMBINATION_TYPE","features":[449]},{"name":"PROPERTY_SHV_LIST","features":[449]},{"name":"PROPERTY_SHV_TEMPLATES_COLLECTION","features":[449]},{"name":"PROPERTY_TEMPLATES_CLIENTS_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_IPFILTERS_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_POLICIES_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_PROFILES_COLLECTION","features":[449]},{"name":"PROPERTY_TEMPLATES_PROFILES_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_PROXYPOLICIES_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_PROXYPROFILES_COLLECTION","features":[449]},{"name":"PROPERTY_TEMPLATES_PROXYPROFILES_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_RADIUSSERVERS_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_REMEDIATIONSERVERGROUPS_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_SHAREDSECRETS_TEMPLATES","features":[449]},{"name":"PROPERTY_TEMPLATES_SHVTEMPLATES_TEMPLATES","features":[449]},{"name":"PROPERTY_USER_ALLOW_DIALIN","features":[449]},{"name":"PROPERTY_USER_CALLING_STATION_ID","features":[449]},{"name":"PROPERTY_USER_RADIUS_CALLBACK_NUMBER","features":[449]},{"name":"PROPERTY_USER_RADIUS_FRAMED_INTERFACE_ID","features":[449]},{"name":"PROPERTY_USER_RADIUS_FRAMED_IPV6_PREFIX","features":[449]},{"name":"PROPERTY_USER_RADIUS_FRAMED_IPV6_ROUTE","features":[449]},{"name":"PROPERTY_USER_RADIUS_FRAMED_IP_ADDRESS","features":[449]},{"name":"PROPERTY_USER_RADIUS_FRAMED_ROUTE","features":[449]},{"name":"PROPERTY_USER_SAVED_CALLING_STATION_ID","features":[449]},{"name":"PROPERTY_USER_SAVED_RADIUS_CALLBACK_NUMBER","features":[449]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_INTERFACE_ID","features":[449]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_IPV6_PREFIX","features":[449]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_IPV6_ROUTE","features":[449]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_IP_ADDRESS","features":[449]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_ROUTE","features":[449]},{"name":"PROPERTY_USER_SERVICE_TYPE","features":[449]},{"name":"PROTOCOLPROPERTIES","features":[449]},{"name":"RADIUSPROPERTIES","features":[449]},{"name":"RADIUSPROXYPROPERTIES","features":[449]},{"name":"RADIUSSERVERGROUPPROPERTIES","features":[449]},{"name":"RADIUSSERVERPROPERTIES","features":[449]},{"name":"RADIUS_ACTION","features":[449]},{"name":"RADIUS_ATTRIBUTE","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_AUTHENTIC","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_DELAY_TIME","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_INPUT_OCTETS","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_INPUT_PACKETS","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_INTERIM_INTERVAL","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_LINK_COUNT","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_MULTI_SSN_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_OUTPUT_OCTETS","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_OUTPUT_PACKETS","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_SESSION_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_SESSION_TIME","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_STATUS_TYPE","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_TERMINATE_CAUSE","features":[449]},{"name":"RADIUS_ATTRIBUTE_ACCT_TUNNEL_CONN","features":[449]},{"name":"RADIUS_ATTRIBUTE_ARAP_CHALLENGE_RESPONSE","features":[449]},{"name":"RADIUS_ATTRIBUTE_ARAP_FEATURES","features":[449]},{"name":"RADIUS_ATTRIBUTE_ARAP_PASSWORD","features":[449]},{"name":"RADIUS_ATTRIBUTE_ARAP_SECURITY","features":[449]},{"name":"RADIUS_ATTRIBUTE_ARAP_SECURITY_DATA","features":[449]},{"name":"RADIUS_ATTRIBUTE_ARAP_ZONE_ACCESS","features":[449]},{"name":"RADIUS_ATTRIBUTE_ARRAY","features":[449]},{"name":"RADIUS_ATTRIBUTE_CALLBACK_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_CALLBACK_NUMBER","features":[449]},{"name":"RADIUS_ATTRIBUTE_CALLED_STATION_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_CALLING_STATION_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_CHAP_CHALLENGE","features":[449]},{"name":"RADIUS_ATTRIBUTE_CHAP_PASSWORD","features":[449]},{"name":"RADIUS_ATTRIBUTE_CLASS","features":[449]},{"name":"RADIUS_ATTRIBUTE_CONFIGURATION_TOKEN","features":[449]},{"name":"RADIUS_ATTRIBUTE_CONNECT_INFO","features":[449]},{"name":"RADIUS_ATTRIBUTE_EAP_MESSAGE","features":[449]},{"name":"RADIUS_ATTRIBUTE_FILTER_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_APPLETALK_LINK","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_APPLETALK_NET","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_APPLETALK_ZONE","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_COMPRESSION","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_INTERFACE_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPX_NETWORK","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IP_ADDRESS","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IP_NETMASK","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPv6_POOL","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPv6_PREFIX","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPv6_ROUTE","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_MTU","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_PROTOCOL","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_ROUTE","features":[449]},{"name":"RADIUS_ATTRIBUTE_FRAMED_ROUTING","features":[449]},{"name":"RADIUS_ATTRIBUTE_IDLE_TIMEOUT","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_IP_HOST","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_IPv6_HOST","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_GROUP","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_NODE","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_PORT","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_SERVICE","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_SERVICE","features":[449]},{"name":"RADIUS_ATTRIBUTE_LOGIN_TCP_PORT","features":[449]},{"name":"RADIUS_ATTRIBUTE_NAS_IDENTIFIER","features":[449]},{"name":"RADIUS_ATTRIBUTE_NAS_IP_ADDRESS","features":[449]},{"name":"RADIUS_ATTRIBUTE_NAS_IPv6_ADDRESS","features":[449]},{"name":"RADIUS_ATTRIBUTE_NAS_PORT","features":[449]},{"name":"RADIUS_ATTRIBUTE_NAS_PORT_TYPE","features":[449]},{"name":"RADIUS_ATTRIBUTE_PASSWORD_RETRY","features":[449]},{"name":"RADIUS_ATTRIBUTE_PORT_LIMIT","features":[449]},{"name":"RADIUS_ATTRIBUTE_PROMPT","features":[449]},{"name":"RADIUS_ATTRIBUTE_PROXY_STATE","features":[449]},{"name":"RADIUS_ATTRIBUTE_REPLY_MESSAGE","features":[449]},{"name":"RADIUS_ATTRIBUTE_SERVICE_TYPE","features":[449]},{"name":"RADIUS_ATTRIBUTE_SESSION_TIMEOUT","features":[449]},{"name":"RADIUS_ATTRIBUTE_SIGNATURE","features":[449]},{"name":"RADIUS_ATTRIBUTE_STATE","features":[449]},{"name":"RADIUS_ATTRIBUTE_TERMINATION_ACTION","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_ASSIGNMENT_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_CLIENT_ENDPT","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_MEDIUM_TYPE","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_PASSWORD","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_PREFERENCE","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_PVT_GROUP_ID","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_SERVER_ENDPT","features":[449]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_TYPE","features":[449]},{"name":"RADIUS_ATTRIBUTE_TYPE","features":[449]},{"name":"RADIUS_ATTRIBUTE_UNASSIGNED1","features":[449]},{"name":"RADIUS_ATTRIBUTE_UNASSIGNED2","features":[449]},{"name":"RADIUS_ATTRIBUTE_USER_NAME","features":[449]},{"name":"RADIUS_ATTRIBUTE_USER_PASSWORD","features":[449]},{"name":"RADIUS_ATTRIBUTE_VENDOR_SPECIFIC","features":[449]},{"name":"RADIUS_AUTHENTICATION_PROVIDER","features":[449]},{"name":"RADIUS_CODE","features":[449]},{"name":"RADIUS_DATA_TYPE","features":[449]},{"name":"RADIUS_EXTENSION_CONTROL_BLOCK","features":[449]},{"name":"RADIUS_EXTENSION_FREE_ATTRIBUTES","features":[449]},{"name":"RADIUS_EXTENSION_INIT","features":[449]},{"name":"RADIUS_EXTENSION_POINT","features":[449]},{"name":"RADIUS_EXTENSION_PROCESS","features":[449]},{"name":"RADIUS_EXTENSION_PROCESS2","features":[449]},{"name":"RADIUS_EXTENSION_PROCESS_EX","features":[449]},{"name":"RADIUS_EXTENSION_TERM","features":[449]},{"name":"RADIUS_EXTENSION_VERSION","features":[449]},{"name":"RADIUS_REJECT_REASON_CODE","features":[449]},{"name":"RADIUS_VSA_FORMAT","features":[449]},{"name":"RAS_ATTRIBUTE_BAP_LINE_DOWN_LIMIT","features":[449]},{"name":"RAS_ATTRIBUTE_BAP_LINE_DOWN_TIME","features":[449]},{"name":"RAS_ATTRIBUTE_BAP_REQUIRED","features":[449]},{"name":"RAS_ATTRIBUTE_ENCRYPTION_POLICY","features":[449]},{"name":"RAS_ATTRIBUTE_ENCRYPTION_TYPE","features":[449]},{"name":"REMEDIATIONSERVERGROUPPROPERTIES","features":[449]},{"name":"REMEDIATIONSERVERPROPERTIES","features":[449]},{"name":"REMEDIATIONSERVERSPROPERTIES","features":[449]},{"name":"RESTRICTIONS","features":[449]},{"name":"SERVICE_TYPE","features":[449]},{"name":"SERVICE_TYPE_IAS","features":[449]},{"name":"SERVICE_TYPE_MAX","features":[449]},{"name":"SERVICE_TYPE_RAMGMTSVC","features":[449]},{"name":"SERVICE_TYPE_RAS","features":[449]},{"name":"SHAREDSECRETPROPERTIES","features":[449]},{"name":"SHVTEMPLATEPROPERTIES","features":[449]},{"name":"SHV_COMBINATION_TYPE","features":[449]},{"name":"SHV_COMBINATION_TYPE_ALL_FAIL","features":[449]},{"name":"SHV_COMBINATION_TYPE_ALL_PASS","features":[449]},{"name":"SHV_COMBINATION_TYPE_MAX","features":[449]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_FAIL","features":[449]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_INFECTED","features":[449]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_PASS","features":[449]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_TRANSITIONAL","features":[449]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_UNKNOWN","features":[449]},{"name":"SYNTAX","features":[449]},{"name":"SYSTEM_TYPE_NT10_0_SERVER","features":[449]},{"name":"SYSTEM_TYPE_NT10_0_WORKSTATION","features":[449]},{"name":"SYSTEM_TYPE_NT4_SERVER","features":[449]},{"name":"SYSTEM_TYPE_NT4_WORKSTATION","features":[449]},{"name":"SYSTEM_TYPE_NT5_SERVER","features":[449]},{"name":"SYSTEM_TYPE_NT5_WORKSTATION","features":[449]},{"name":"SYSTEM_TYPE_NT6_1_SERVER","features":[449]},{"name":"SYSTEM_TYPE_NT6_1_WORKSTATION","features":[449]},{"name":"SYSTEM_TYPE_NT6_2_SERVER","features":[449]},{"name":"SYSTEM_TYPE_NT6_2_WORKSTATION","features":[449]},{"name":"SYSTEM_TYPE_NT6_3_SERVER","features":[449]},{"name":"SYSTEM_TYPE_NT6_3_WORKSTATION","features":[449]},{"name":"SYSTEM_TYPE_NT6_SERVER","features":[449]},{"name":"SYSTEM_TYPE_NT6_WORKSTATION","features":[449]},{"name":"SdoMachine","features":[449]},{"name":"TEMPLATESPROPERTIES","features":[449]},{"name":"USERPROPERTIES","features":[449]},{"name":"VENDORID","features":[449]},{"name":"VENDORPROPERTIES","features":[449]},{"name":"VENDORTYPE","features":[449]},{"name":"raAccept","features":[449]},{"name":"raContinue","features":[449]},{"name":"raReject","features":[449]},{"name":"rapMCIS","features":[449]},{"name":"rapNone","features":[449]},{"name":"rapODBC","features":[449]},{"name":"rapProxy","features":[449]},{"name":"rapUnknown","features":[449]},{"name":"rapUsersFile","features":[449]},{"name":"rapWindowsNT","features":[449]},{"name":"ratAcctAuthentic","features":[449]},{"name":"ratAcctDelayTime","features":[449]},{"name":"ratAcctInputOctets","features":[449]},{"name":"ratAcctInputPackets","features":[449]},{"name":"ratAcctOutputOctets","features":[449]},{"name":"ratAcctOutputPackets","features":[449]},{"name":"ratAcctSessionId","features":[449]},{"name":"ratAcctSessionTime","features":[449]},{"name":"ratAcctStatusType","features":[449]},{"name":"ratAcctTerminationCause","features":[449]},{"name":"ratAuthenticator","features":[449]},{"name":"ratCHAPChallenge","features":[449]},{"name":"ratCHAPPassword","features":[449]},{"name":"ratCRPPolicyName","features":[449]},{"name":"ratCallbackId","features":[449]},{"name":"ratCallbackNumber","features":[449]},{"name":"ratCalledStationId","features":[449]},{"name":"ratCallingStationId","features":[449]},{"name":"ratCertificateThumbprint","features":[449]},{"name":"ratClass","features":[449]},{"name":"ratClearTextPassword","features":[449]},{"name":"ratCode","features":[449]},{"name":"ratEAPTLV","features":[449]},{"name":"ratExtensionState","features":[449]},{"name":"ratFQUserName","features":[449]},{"name":"ratFilterId","features":[449]},{"name":"ratFramedAppleTalkLink","features":[449]},{"name":"ratFramedAppleTalkNetwork","features":[449]},{"name":"ratFramedAppleTalkZone","features":[449]},{"name":"ratFramedCompression","features":[449]},{"name":"ratFramedIPAddress","features":[449]},{"name":"ratFramedIPNetmask","features":[449]},{"name":"ratFramedIPXNetwork","features":[449]},{"name":"ratFramedIPv6Pool","features":[449]},{"name":"ratFramedIPv6Prefix","features":[449]},{"name":"ratFramedIPv6Route","features":[449]},{"name":"ratFramedInterfaceId","features":[449]},{"name":"ratFramedMTU","features":[449]},{"name":"ratFramedProtocol","features":[449]},{"name":"ratFramedRoute","features":[449]},{"name":"ratFramedRouting","features":[449]},{"name":"ratIdentifier","features":[449]},{"name":"ratIdleTimeout","features":[449]},{"name":"ratLoginIPHost","features":[449]},{"name":"ratLoginIPv6Host","features":[449]},{"name":"ratLoginLATGroup","features":[449]},{"name":"ratLoginLATNode","features":[449]},{"name":"ratLoginLATService","features":[449]},{"name":"ratLoginPort","features":[449]},{"name":"ratLoginService","features":[449]},{"name":"ratMediumType","features":[449]},{"name":"ratMinimum","features":[449]},{"name":"ratNASIPAddress","features":[449]},{"name":"ratNASIPv6Address","features":[449]},{"name":"ratNASIdentifier","features":[449]},{"name":"ratNASPort","features":[449]},{"name":"ratNASPortType","features":[449]},{"name":"ratPolicyName","features":[449]},{"name":"ratPortLimit","features":[449]},{"name":"ratProvider","features":[449]},{"name":"ratProviderName","features":[449]},{"name":"ratProxyState","features":[449]},{"name":"ratRejectReasonCode","features":[449]},{"name":"ratReplyMessage","features":[449]},{"name":"ratServiceType","features":[449]},{"name":"ratSessionTimeout","features":[449]},{"name":"ratSrcIPAddress","features":[449]},{"name":"ratSrcIPv6Address","features":[449]},{"name":"ratSrcPort","features":[449]},{"name":"ratState","features":[449]},{"name":"ratStrippedUserName","features":[449]},{"name":"ratTerminationAction","features":[449]},{"name":"ratTunnelPassword","features":[449]},{"name":"ratTunnelPrivateGroupID","features":[449]},{"name":"ratTunnelType","features":[449]},{"name":"ratUniqueId","features":[449]},{"name":"ratUserName","features":[449]},{"name":"ratUserPassword","features":[449]},{"name":"ratVendorSpecific","features":[449]},{"name":"rcAccessAccept","features":[449]},{"name":"rcAccessChallenge","features":[449]},{"name":"rcAccessReject","features":[449]},{"name":"rcAccessRequest","features":[449]},{"name":"rcAccountingRequest","features":[449]},{"name":"rcAccountingResponse","features":[449]},{"name":"rcDiscard","features":[449]},{"name":"rcUnknown","features":[449]},{"name":"rdtAddress","features":[449]},{"name":"rdtInteger","features":[449]},{"name":"rdtIpv6Address","features":[449]},{"name":"rdtString","features":[449]},{"name":"rdtTime","features":[449]},{"name":"rdtUnknown","features":[449]},{"name":"repAuthentication","features":[449]},{"name":"repAuthorization","features":[449]},{"name":"rrrcAccountDisabled","features":[449]},{"name":"rrrcAccountExpired","features":[449]},{"name":"rrrcAccountUnknown","features":[449]},{"name":"rrrcAuthenticationFailure","features":[449]},{"name":"rrrcUndefined","features":[449]}],"455":[{"name":"DRT_ACTIVE","features":[450]},{"name":"DRT_ADDRESS","features":[450,316]},{"name":"DRT_ADDRESS_FLAGS","features":[450]},{"name":"DRT_ADDRESS_FLAG_ACCEPTED","features":[450]},{"name":"DRT_ADDRESS_FLAG_BAD_VALIDATE_ID","features":[450]},{"name":"DRT_ADDRESS_FLAG_INQUIRE","features":[450]},{"name":"DRT_ADDRESS_FLAG_LOOP","features":[450]},{"name":"DRT_ADDRESS_FLAG_REJECTED","features":[450]},{"name":"DRT_ADDRESS_FLAG_SUSPECT_UNREGISTERED_ID","features":[450]},{"name":"DRT_ADDRESS_FLAG_TOO_BUSY","features":[450]},{"name":"DRT_ADDRESS_FLAG_UNREACHABLE","features":[450]},{"name":"DRT_ADDRESS_LIST","features":[450,316]},{"name":"DRT_ALONE","features":[450]},{"name":"DRT_BOOTSTRAP_PROVIDER","features":[450]},{"name":"DRT_BOOTSTRAP_RESOLVE_CALLBACK","features":[303,450,316]},{"name":"DRT_DATA","features":[450]},{"name":"DRT_EVENT_DATA","features":[450,316]},{"name":"DRT_EVENT_LEAFSET_KEY_CHANGED","features":[450]},{"name":"DRT_EVENT_REGISTRATION_STATE_CHANGED","features":[450]},{"name":"DRT_EVENT_STATUS_CHANGED","features":[450]},{"name":"DRT_EVENT_TYPE","features":[450]},{"name":"DRT_E_BOOTSTRAPPROVIDER_IN_USE","features":[450]},{"name":"DRT_E_BOOTSTRAPPROVIDER_NOT_ATTACHED","features":[450]},{"name":"DRT_E_CAPABILITY_MISMATCH","features":[450]},{"name":"DRT_E_DUPLICATE_KEY","features":[450]},{"name":"DRT_E_FAULTED","features":[450]},{"name":"DRT_E_INSUFFICIENT_BUFFER","features":[450]},{"name":"DRT_E_INVALID_ADDRESS","features":[450]},{"name":"DRT_E_INVALID_BOOTSTRAP_PROVIDER","features":[450]},{"name":"DRT_E_INVALID_CERT_CHAIN","features":[450]},{"name":"DRT_E_INVALID_INSTANCE_PREFIX","features":[450]},{"name":"DRT_E_INVALID_KEY","features":[450]},{"name":"DRT_E_INVALID_KEY_SIZE","features":[450]},{"name":"DRT_E_INVALID_MAX_ADDRESSES","features":[450]},{"name":"DRT_E_INVALID_MAX_ENDPOINTS","features":[450]},{"name":"DRT_E_INVALID_MESSAGE","features":[450]},{"name":"DRT_E_INVALID_PORT","features":[450]},{"name":"DRT_E_INVALID_SCOPE","features":[450]},{"name":"DRT_E_INVALID_SEARCH_INFO","features":[450]},{"name":"DRT_E_INVALID_SEARCH_RANGE","features":[450]},{"name":"DRT_E_INVALID_SECURITY_MODE","features":[450]},{"name":"DRT_E_INVALID_SECURITY_PROVIDER","features":[450]},{"name":"DRT_E_INVALID_SETTINGS","features":[450]},{"name":"DRT_E_INVALID_TRANSPORT_PROVIDER","features":[450]},{"name":"DRT_E_NO_ADDRESSES_AVAILABLE","features":[450]},{"name":"DRT_E_NO_MORE","features":[450]},{"name":"DRT_E_SEARCH_IN_PROGRESS","features":[450]},{"name":"DRT_E_SECURITYPROVIDER_IN_USE","features":[450]},{"name":"DRT_E_SECURITYPROVIDER_NOT_ATTACHED","features":[450]},{"name":"DRT_E_STILL_IN_USE","features":[450]},{"name":"DRT_E_TIMEOUT","features":[450]},{"name":"DRT_E_TRANSPORTPROVIDER_IN_USE","features":[450]},{"name":"DRT_E_TRANSPORTPROVIDER_NOT_ATTACHED","features":[450]},{"name":"DRT_E_TRANSPORT_ALREADY_BOUND","features":[450]},{"name":"DRT_E_TRANSPORT_ALREADY_EXISTS_FOR_SCOPE","features":[450]},{"name":"DRT_E_TRANSPORT_EXECUTING_CALLBACK","features":[450]},{"name":"DRT_E_TRANSPORT_INVALID_ARGUMENT","features":[450]},{"name":"DRT_E_TRANSPORT_NOT_BOUND","features":[450]},{"name":"DRT_E_TRANSPORT_NO_DEST_ADDRESSES","features":[450]},{"name":"DRT_E_TRANSPORT_SHUTTING_DOWN","features":[450]},{"name":"DRT_E_TRANSPORT_STILL_BOUND","features":[450]},{"name":"DRT_E_TRANSPORT_UNEXPECTED","features":[450]},{"name":"DRT_FAULTED","features":[450]},{"name":"DRT_GLOBAL_SCOPE","features":[450]},{"name":"DRT_LEAFSET_KEY_ADDED","features":[450]},{"name":"DRT_LEAFSET_KEY_CHANGE_TYPE","features":[450]},{"name":"DRT_LEAFSET_KEY_DELETED","features":[450]},{"name":"DRT_LINK_LOCAL_ISATAP_SCOPEID","features":[450]},{"name":"DRT_LINK_LOCAL_SCOPE","features":[450]},{"name":"DRT_MATCH_EXACT","features":[450]},{"name":"DRT_MATCH_INTERMEDIATE","features":[450]},{"name":"DRT_MATCH_NEAR","features":[450]},{"name":"DRT_MATCH_TYPE","features":[450]},{"name":"DRT_MAX_INSTANCE_PREFIX_LEN","features":[450]},{"name":"DRT_MAX_PAYLOAD_SIZE","features":[450]},{"name":"DRT_MAX_ROUTING_ADDRESSES","features":[450]},{"name":"DRT_MIN_ROUTING_ADDRESSES","features":[450]},{"name":"DRT_NO_NETWORK","features":[450]},{"name":"DRT_PAYLOAD_REVOKED","features":[450]},{"name":"DRT_REGISTRATION","features":[450]},{"name":"DRT_REGISTRATION_STATE","features":[450]},{"name":"DRT_REGISTRATION_STATE_UNRESOLVEABLE","features":[450]},{"name":"DRT_SCOPE","features":[450]},{"name":"DRT_SEARCH_INFO","features":[303,450]},{"name":"DRT_SEARCH_RESULT","features":[450]},{"name":"DRT_SECURE_CONFIDENTIALPAYLOAD","features":[450]},{"name":"DRT_SECURE_MEMBERSHIP","features":[450]},{"name":"DRT_SECURE_RESOLVE","features":[450]},{"name":"DRT_SECURITY_MODE","features":[450]},{"name":"DRT_SECURITY_PROVIDER","features":[450]},{"name":"DRT_SETTINGS","features":[450]},{"name":"DRT_SITE_LOCAL_SCOPE","features":[450]},{"name":"DRT_STATUS","features":[450]},{"name":"DRT_S_RETRY","features":[450]},{"name":"DrtClose","features":[450]},{"name":"DrtContinueSearch","features":[450]},{"name":"DrtCreateDerivedKey","features":[303,450,387]},{"name":"DrtCreateDerivedKeySecurityProvider","features":[303,450,387]},{"name":"DrtCreateDnsBootstrapResolver","features":[450]},{"name":"DrtCreateIpv6UdpTransport","features":[450]},{"name":"DrtCreateNullSecurityProvider","features":[450]},{"name":"DrtCreatePnrpBootstrapResolver","features":[303,450]},{"name":"DrtDeleteDerivedKeySecurityProvider","features":[450]},{"name":"DrtDeleteDnsBootstrapResolver","features":[450]},{"name":"DrtDeleteIpv6UdpTransport","features":[450]},{"name":"DrtDeleteNullSecurityProvider","features":[450]},{"name":"DrtDeletePnrpBootstrapResolver","features":[450]},{"name":"DrtEndSearch","features":[450]},{"name":"DrtGetEventData","features":[450,316]},{"name":"DrtGetEventDataSize","features":[450]},{"name":"DrtGetInstanceName","features":[450]},{"name":"DrtGetInstanceNameSize","features":[450]},{"name":"DrtGetSearchPath","features":[450,316]},{"name":"DrtGetSearchPathSize","features":[450]},{"name":"DrtGetSearchResult","features":[450]},{"name":"DrtGetSearchResultSize","features":[450]},{"name":"DrtOpen","features":[303,450]},{"name":"DrtRegisterKey","features":[450]},{"name":"DrtStartSearch","features":[303,450]},{"name":"DrtUnregisterKey","features":[450]},{"name":"DrtUpdateKey","features":[450]},{"name":"FACILITY_DRT","features":[450]},{"name":"MaximumPeerDistClientInfoByHandlesClass","features":[450]},{"name":"NS_PNRPCLOUD","features":[450]},{"name":"NS_PNRPNAME","features":[450]},{"name":"NS_PROVIDER_PNRPCLOUD","features":[450]},{"name":"NS_PROVIDER_PNRPNAME","features":[450]},{"name":"PEERDIST_CLIENT_BASIC_INFO","features":[303,450]},{"name":"PEERDIST_CLIENT_INFO_BY_HANDLE_CLASS","features":[450]},{"name":"PEERDIST_CONTENT_TAG","features":[450]},{"name":"PEERDIST_PUBLICATION_OPTIONS","features":[450]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION","features":[450]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_1","features":[450]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_2","features":[450]},{"name":"PEERDIST_READ_TIMEOUT_DEFAULT","features":[450]},{"name":"PEERDIST_READ_TIMEOUT_LOCAL_CACHE_ONLY","features":[450]},{"name":"PEERDIST_RETRIEVAL_OPTIONS","features":[450]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION","features":[450]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_1","features":[450]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_2","features":[450]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_VALUE","features":[450]},{"name":"PEERDIST_STATUS","features":[450]},{"name":"PEERDIST_STATUS_AVAILABLE","features":[450]},{"name":"PEERDIST_STATUS_DISABLED","features":[450]},{"name":"PEERDIST_STATUS_INFO","features":[450]},{"name":"PEERDIST_STATUS_UNAVAILABLE","features":[450]},{"name":"PEER_ADDRESS","features":[450,316]},{"name":"PEER_APPLICATION","features":[450]},{"name":"PEER_APPLICATION_ALL_USERS","features":[450]},{"name":"PEER_APPLICATION_CURRENT_USER","features":[450]},{"name":"PEER_APPLICATION_REGISTRATION_INFO","features":[450]},{"name":"PEER_APPLICATION_REGISTRATION_TYPE","features":[450]},{"name":"PEER_APP_LAUNCH_INFO","features":[303,450,316]},{"name":"PEER_CHANGE_ADDED","features":[450]},{"name":"PEER_CHANGE_DELETED","features":[450]},{"name":"PEER_CHANGE_TYPE","features":[450]},{"name":"PEER_CHANGE_UPDATED","features":[450]},{"name":"PEER_COLLAB_EVENT_DATA","features":[303,450,316]},{"name":"PEER_COLLAB_EVENT_REGISTRATION","features":[450]},{"name":"PEER_COLLAB_EVENT_TYPE","features":[450]},{"name":"PEER_COLLAB_OBJECTID_USER_PICTURE","features":[450]},{"name":"PEER_CONNECTED","features":[450]},{"name":"PEER_CONNECTION_DIRECT","features":[450]},{"name":"PEER_CONNECTION_FAILED","features":[450]},{"name":"PEER_CONNECTION_FLAGS","features":[450]},{"name":"PEER_CONNECTION_INFO","features":[450,316]},{"name":"PEER_CONNECTION_NEIGHBOR","features":[450]},{"name":"PEER_CONNECTION_STATUS","features":[450]},{"name":"PEER_CONTACT","features":[303,450]},{"name":"PEER_CREDENTIAL_INFO","features":[303,450,387]},{"name":"PEER_DATA","features":[450]},{"name":"PEER_DEFER_EXPIRATION","features":[450]},{"name":"PEER_DISABLE_PRESENCE","features":[450]},{"name":"PEER_DISCONNECTED","features":[450]},{"name":"PEER_ENDPOINT","features":[450,316]},{"name":"PEER_EVENT_APPLICATION_CHANGED_DATA","features":[303,450,316]},{"name":"PEER_EVENT_CONNECTION_CHANGE_DATA","features":[450]},{"name":"PEER_EVENT_ENDPOINT_APPLICATION_CHANGED","features":[450]},{"name":"PEER_EVENT_ENDPOINT_CHANGED","features":[450]},{"name":"PEER_EVENT_ENDPOINT_CHANGED_DATA","features":[303,450,316]},{"name":"PEER_EVENT_ENDPOINT_OBJECT_CHANGED","features":[450]},{"name":"PEER_EVENT_ENDPOINT_PRESENCE_CHANGED","features":[450]},{"name":"PEER_EVENT_INCOMING_DATA","features":[450]},{"name":"PEER_EVENT_MEMBER_CHANGE_DATA","features":[450]},{"name":"PEER_EVENT_MY_APPLICATION_CHANGED","features":[450]},{"name":"PEER_EVENT_MY_ENDPOINT_CHANGED","features":[450]},{"name":"PEER_EVENT_MY_OBJECT_CHANGED","features":[450]},{"name":"PEER_EVENT_MY_PRESENCE_CHANGED","features":[450]},{"name":"PEER_EVENT_NODE_CHANGE_DATA","features":[450]},{"name":"PEER_EVENT_OBJECT_CHANGED_DATA","features":[303,450,316]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED","features":[450]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED_DATA","features":[450,316]},{"name":"PEER_EVENT_PRESENCE_CHANGED_DATA","features":[303,450,316]},{"name":"PEER_EVENT_RECORD_CHANGE_DATA","features":[450]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED","features":[450]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED_DATA","features":[450,316]},{"name":"PEER_EVENT_SYNCHRONIZED_DATA","features":[450]},{"name":"PEER_EVENT_WATCHLIST_CHANGED","features":[450]},{"name":"PEER_EVENT_WATCHLIST_CHANGED_DATA","features":[303,450]},{"name":"PEER_E_ALREADY_EXISTS","features":[450]},{"name":"PEER_E_CLIENT_INVALID_COMPARTMENT_ID","features":[450]},{"name":"PEER_E_CLOUD_DISABLED","features":[450]},{"name":"PEER_E_CLOUD_IS_DEAD","features":[450]},{"name":"PEER_E_CLOUD_IS_SEARCH_ONLY","features":[450]},{"name":"PEER_E_CLOUD_NOT_FOUND","features":[450]},{"name":"PEER_E_DISK_FULL","features":[450]},{"name":"PEER_E_DUPLICATE_PEER_NAME","features":[450]},{"name":"PEER_E_INVALID_IDENTITY","features":[450]},{"name":"PEER_E_NOT_FOUND","features":[450]},{"name":"PEER_E_TOO_MUCH_LOAD","features":[450]},{"name":"PEER_GRAPH_EVENT_CONNECTION_REQUIRED","features":[450]},{"name":"PEER_GRAPH_EVENT_DATA","features":[450]},{"name":"PEER_GRAPH_EVENT_DIRECT_CONNECTION","features":[450]},{"name":"PEER_GRAPH_EVENT_INCOMING_DATA","features":[450]},{"name":"PEER_GRAPH_EVENT_NEIGHBOR_CONNECTION","features":[450]},{"name":"PEER_GRAPH_EVENT_NODE_CHANGED","features":[450]},{"name":"PEER_GRAPH_EVENT_PROPERTY_CHANGED","features":[450]},{"name":"PEER_GRAPH_EVENT_RECORD_CHANGED","features":[450]},{"name":"PEER_GRAPH_EVENT_REGISTRATION","features":[450]},{"name":"PEER_GRAPH_EVENT_STATUS_CHANGED","features":[450]},{"name":"PEER_GRAPH_EVENT_SYNCHRONIZED","features":[450]},{"name":"PEER_GRAPH_EVENT_TYPE","features":[450]},{"name":"PEER_GRAPH_PROPERTIES","features":[450]},{"name":"PEER_GRAPH_PROPERTY_DEFER_EXPIRATION","features":[450]},{"name":"PEER_GRAPH_PROPERTY_FLAGS","features":[450]},{"name":"PEER_GRAPH_PROPERTY_HEARTBEATS","features":[450]},{"name":"PEER_GRAPH_SCOPE","features":[450]},{"name":"PEER_GRAPH_SCOPE_ANY","features":[450]},{"name":"PEER_GRAPH_SCOPE_GLOBAL","features":[450]},{"name":"PEER_GRAPH_SCOPE_LINKLOCAL","features":[450]},{"name":"PEER_GRAPH_SCOPE_LOOPBACK","features":[450]},{"name":"PEER_GRAPH_SCOPE_SITELOCAL","features":[450]},{"name":"PEER_GRAPH_STATUS_FLAGS","features":[450]},{"name":"PEER_GRAPH_STATUS_HAS_CONNECTIONS","features":[450]},{"name":"PEER_GRAPH_STATUS_LISTENING","features":[450]},{"name":"PEER_GRAPH_STATUS_SYNCHRONIZED","features":[450]},{"name":"PEER_GROUP_AUTHENTICATION_SCHEME","features":[450]},{"name":"PEER_GROUP_EVENT_AUTHENTICATION_FAILED","features":[450]},{"name":"PEER_GROUP_EVENT_CONNECTION_FAILED","features":[450]},{"name":"PEER_GROUP_EVENT_DATA","features":[450]},{"name":"PEER_GROUP_EVENT_DIRECT_CONNECTION","features":[450]},{"name":"PEER_GROUP_EVENT_INCOMING_DATA","features":[450]},{"name":"PEER_GROUP_EVENT_MEMBER_CHANGED","features":[450]},{"name":"PEER_GROUP_EVENT_NEIGHBOR_CONNECTION","features":[450]},{"name":"PEER_GROUP_EVENT_PROPERTY_CHANGED","features":[450]},{"name":"PEER_GROUP_EVENT_RECORD_CHANGED","features":[450]},{"name":"PEER_GROUP_EVENT_REGISTRATION","features":[450]},{"name":"PEER_GROUP_EVENT_STATUS_CHANGED","features":[450]},{"name":"PEER_GROUP_EVENT_TYPE","features":[450]},{"name":"PEER_GROUP_GMC_AUTHENTICATION","features":[450]},{"name":"PEER_GROUP_ISSUE_CREDENTIAL_FLAGS","features":[450]},{"name":"PEER_GROUP_PASSWORD_AUTHENTICATION","features":[450]},{"name":"PEER_GROUP_PROPERTIES","features":[450]},{"name":"PEER_GROUP_PROPERTY_FLAGS","features":[450]},{"name":"PEER_GROUP_ROLE_ADMIN","features":[450]},{"name":"PEER_GROUP_ROLE_INVITING_MEMBER","features":[450]},{"name":"PEER_GROUP_ROLE_MEMBER","features":[450]},{"name":"PEER_GROUP_STATUS","features":[450]},{"name":"PEER_GROUP_STATUS_HAS_CONNECTIONS","features":[450]},{"name":"PEER_GROUP_STATUS_LISTENING","features":[450]},{"name":"PEER_GROUP_STORE_CREDENTIALS","features":[450]},{"name":"PEER_INVITATION","features":[450]},{"name":"PEER_INVITATION_INFO","features":[303,450,387]},{"name":"PEER_INVITATION_RESPONSE","features":[450]},{"name":"PEER_INVITATION_RESPONSE_ACCEPTED","features":[450]},{"name":"PEER_INVITATION_RESPONSE_DECLINED","features":[450]},{"name":"PEER_INVITATION_RESPONSE_ERROR","features":[450]},{"name":"PEER_INVITATION_RESPONSE_EXPIRED","features":[450]},{"name":"PEER_INVITATION_RESPONSE_TYPE","features":[450]},{"name":"PEER_MEMBER","features":[303,450,316,387]},{"name":"PEER_MEMBER_CHANGE_TYPE","features":[450]},{"name":"PEER_MEMBER_CONNECTED","features":[450]},{"name":"PEER_MEMBER_DATA_OPTIONAL","features":[450]},{"name":"PEER_MEMBER_DISCONNECTED","features":[450]},{"name":"PEER_MEMBER_FLAGS","features":[450]},{"name":"PEER_MEMBER_JOINED","features":[450]},{"name":"PEER_MEMBER_LEFT","features":[450]},{"name":"PEER_MEMBER_PRESENT","features":[450]},{"name":"PEER_MEMBER_UPDATED","features":[450]},{"name":"PEER_NAME_PAIR","features":[450]},{"name":"PEER_NODE_CHANGE_CONNECTED","features":[450]},{"name":"PEER_NODE_CHANGE_DISCONNECTED","features":[450]},{"name":"PEER_NODE_CHANGE_TYPE","features":[450]},{"name":"PEER_NODE_CHANGE_UPDATED","features":[450]},{"name":"PEER_NODE_INFO","features":[450,316]},{"name":"PEER_OBJECT","features":[450]},{"name":"PEER_PEOPLE_NEAR_ME","features":[450,316]},{"name":"PEER_PNRP_ALL_LINK_CLOUDS","features":[450]},{"name":"PEER_PNRP_CLOUD_INFO","features":[450]},{"name":"PEER_PNRP_ENDPOINT_INFO","features":[450,316]},{"name":"PEER_PNRP_REGISTRATION_INFO","features":[450,316]},{"name":"PEER_PRESENCE_AWAY","features":[450]},{"name":"PEER_PRESENCE_BE_RIGHT_BACK","features":[450]},{"name":"PEER_PRESENCE_BUSY","features":[450]},{"name":"PEER_PRESENCE_IDLE","features":[450]},{"name":"PEER_PRESENCE_INFO","features":[450]},{"name":"PEER_PRESENCE_OFFLINE","features":[450]},{"name":"PEER_PRESENCE_ONLINE","features":[450]},{"name":"PEER_PRESENCE_ON_THE_PHONE","features":[450]},{"name":"PEER_PRESENCE_OUT_TO_LUNCH","features":[450]},{"name":"PEER_PRESENCE_STATUS","features":[450]},{"name":"PEER_PUBLICATION_SCOPE","features":[450]},{"name":"PEER_PUBLICATION_SCOPE_ALL","features":[450]},{"name":"PEER_PUBLICATION_SCOPE_INTERNET","features":[450]},{"name":"PEER_PUBLICATION_SCOPE_NEAR_ME","features":[450]},{"name":"PEER_PUBLICATION_SCOPE_NONE","features":[450]},{"name":"PEER_RECORD","features":[303,450]},{"name":"PEER_RECORD_ADDED","features":[450]},{"name":"PEER_RECORD_CHANGE_TYPE","features":[450]},{"name":"PEER_RECORD_DELETED","features":[450]},{"name":"PEER_RECORD_EXPIRED","features":[450]},{"name":"PEER_RECORD_FLAGS","features":[450]},{"name":"PEER_RECORD_FLAG_AUTOREFRESH","features":[450]},{"name":"PEER_RECORD_FLAG_DELETED","features":[450]},{"name":"PEER_RECORD_UPDATED","features":[450]},{"name":"PEER_SECURITY_INTERFACE","features":[303,450]},{"name":"PEER_SIGNIN_ALL","features":[450]},{"name":"PEER_SIGNIN_FLAGS","features":[450]},{"name":"PEER_SIGNIN_INTERNET","features":[450]},{"name":"PEER_SIGNIN_NEAR_ME","features":[450]},{"name":"PEER_SIGNIN_NONE","features":[450]},{"name":"PEER_VERSION_DATA","features":[450]},{"name":"PEER_WATCH_ALLOWED","features":[450]},{"name":"PEER_WATCH_BLOCKED","features":[450]},{"name":"PEER_WATCH_PERMISSION","features":[450]},{"name":"PFNPEER_FREE_SECURITY_DATA","features":[450]},{"name":"PFNPEER_ON_PASSWORD_AUTH_FAILED","features":[450]},{"name":"PFNPEER_SECURE_RECORD","features":[303,450]},{"name":"PFNPEER_VALIDATE_RECORD","features":[303,450]},{"name":"PNRPCLOUDINFO","features":[450]},{"name":"PNRPINFO_HINT","features":[450]},{"name":"PNRPINFO_V1","features":[450,316]},{"name":"PNRPINFO_V2","features":[450,316,354]},{"name":"PNRP_CLOUD_FLAGS","features":[450]},{"name":"PNRP_CLOUD_FULL_PARTICIPANT","features":[450]},{"name":"PNRP_CLOUD_ID","features":[450]},{"name":"PNRP_CLOUD_NAME_LOCAL","features":[450]},{"name":"PNRP_CLOUD_NO_FLAGS","features":[450]},{"name":"PNRP_CLOUD_RESOLVE_ONLY","features":[450]},{"name":"PNRP_CLOUD_STATE","features":[450]},{"name":"PNRP_CLOUD_STATE_ACTIVE","features":[450]},{"name":"PNRP_CLOUD_STATE_ALONE","features":[450]},{"name":"PNRP_CLOUD_STATE_DEAD","features":[450]},{"name":"PNRP_CLOUD_STATE_DISABLED","features":[450]},{"name":"PNRP_CLOUD_STATE_NO_NET","features":[450]},{"name":"PNRP_CLOUD_STATE_SYNCHRONISING","features":[450]},{"name":"PNRP_CLOUD_STATE_VIRTUAL","features":[450]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE","features":[450]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_BINARY","features":[450]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_NONE","features":[450]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_STRING","features":[450]},{"name":"PNRP_GLOBAL_SCOPE","features":[450]},{"name":"PNRP_LINK_LOCAL_SCOPE","features":[450]},{"name":"PNRP_MAX_ENDPOINT_ADDRESSES","features":[450]},{"name":"PNRP_MAX_EXTENDED_PAYLOAD_BYTES","features":[450]},{"name":"PNRP_REGISTERED_ID_STATE","features":[450]},{"name":"PNRP_REGISTERED_ID_STATE_OK","features":[450]},{"name":"PNRP_REGISTERED_ID_STATE_PROBLEM","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA_ANY_PEER_NAME","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA_DEFAULT","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_NON_CURRENT_PROCESS_PEER_NAME","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_PEER_NAME","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_REMOTE_PEER_NAME","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA_NON_CURRENT_PROCESS_PEER_NAME","features":[450]},{"name":"PNRP_RESOLVE_CRITERIA_REMOTE_PEER_NAME","features":[450]},{"name":"PNRP_SCOPE","features":[450]},{"name":"PNRP_SCOPE_ANY","features":[450]},{"name":"PNRP_SITE_LOCAL_SCOPE","features":[450]},{"name":"PeerCollabAddContact","features":[303,450]},{"name":"PeerCollabAsyncInviteContact","features":[303,450,316]},{"name":"PeerCollabAsyncInviteEndpoint","features":[303,450,316]},{"name":"PeerCollabCancelInvitation","features":[303,450]},{"name":"PeerCollabCloseHandle","features":[303,450]},{"name":"PeerCollabDeleteContact","features":[450]},{"name":"PeerCollabDeleteEndpointData","features":[450,316]},{"name":"PeerCollabDeleteObject","features":[450]},{"name":"PeerCollabEnumApplicationRegistrationInfo","features":[450]},{"name":"PeerCollabEnumApplications","features":[450,316]},{"name":"PeerCollabEnumContacts","features":[450]},{"name":"PeerCollabEnumEndpoints","features":[303,450]},{"name":"PeerCollabEnumObjects","features":[450,316]},{"name":"PeerCollabEnumPeopleNearMe","features":[450]},{"name":"PeerCollabExportContact","features":[450]},{"name":"PeerCollabGetAppLaunchInfo","features":[303,450,316]},{"name":"PeerCollabGetApplicationRegistrationInfo","features":[450]},{"name":"PeerCollabGetContact","features":[303,450]},{"name":"PeerCollabGetEndpointName","features":[450]},{"name":"PeerCollabGetEventData","features":[303,450,316]},{"name":"PeerCollabGetInvitationResponse","features":[303,450]},{"name":"PeerCollabGetPresenceInfo","features":[450,316]},{"name":"PeerCollabGetSigninOptions","features":[450]},{"name":"PeerCollabInviteContact","features":[303,450,316]},{"name":"PeerCollabInviteEndpoint","features":[450,316]},{"name":"PeerCollabParseContact","features":[303,450]},{"name":"PeerCollabQueryContactData","features":[450,316]},{"name":"PeerCollabRefreshEndpointData","features":[450,316]},{"name":"PeerCollabRegisterApplication","features":[450]},{"name":"PeerCollabRegisterEvent","features":[303,450]},{"name":"PeerCollabSetEndpointName","features":[450]},{"name":"PeerCollabSetObject","features":[450]},{"name":"PeerCollabSetPresenceInfo","features":[450]},{"name":"PeerCollabShutdown","features":[450]},{"name":"PeerCollabSignin","features":[303,450]},{"name":"PeerCollabSignout","features":[450]},{"name":"PeerCollabStartup","features":[450]},{"name":"PeerCollabSubscribeEndpointData","features":[450,316]},{"name":"PeerCollabUnregisterApplication","features":[450]},{"name":"PeerCollabUnregisterEvent","features":[450]},{"name":"PeerCollabUnsubscribeEndpointData","features":[450,316]},{"name":"PeerCollabUpdateContact","features":[303,450]},{"name":"PeerCreatePeerName","features":[450]},{"name":"PeerDistClientAddContentInformation","features":[303,450,308]},{"name":"PeerDistClientAddData","features":[303,450,308]},{"name":"PeerDistClientBasicInfo","features":[450]},{"name":"PeerDistClientBlockRead","features":[303,450,308]},{"name":"PeerDistClientCancelAsyncOperation","features":[303,450,308]},{"name":"PeerDistClientCloseContent","features":[450]},{"name":"PeerDistClientCompleteContentInformation","features":[303,450,308]},{"name":"PeerDistClientFlushContent","features":[303,450,308]},{"name":"PeerDistClientGetInformationByHandle","features":[450]},{"name":"PeerDistClientOpenContent","features":[303,450]},{"name":"PeerDistClientStreamRead","features":[303,450,308]},{"name":"PeerDistGetOverlappedResult","features":[303,450,308]},{"name":"PeerDistGetStatus","features":[450]},{"name":"PeerDistGetStatusEx","features":[450]},{"name":"PeerDistRegisterForStatusChangeNotification","features":[303,450,308]},{"name":"PeerDistRegisterForStatusChangeNotificationEx","features":[303,450,308]},{"name":"PeerDistServerCancelAsyncOperation","features":[303,450,308]},{"name":"PeerDistServerCloseContentInformation","features":[450]},{"name":"PeerDistServerCloseStreamHandle","features":[450]},{"name":"PeerDistServerOpenContentInformation","features":[303,450]},{"name":"PeerDistServerOpenContentInformationEx","features":[303,450]},{"name":"PeerDistServerPublishAddToStream","features":[303,450,308]},{"name":"PeerDistServerPublishCompleteStream","features":[303,450,308]},{"name":"PeerDistServerPublishStream","features":[303,450]},{"name":"PeerDistServerRetrieveContentInformation","features":[303,450,308]},{"name":"PeerDistServerUnpublish","features":[450]},{"name":"PeerDistShutdown","features":[450]},{"name":"PeerDistStartup","features":[450]},{"name":"PeerDistUnregisterForStatusChangeNotification","features":[450]},{"name":"PeerEndEnumeration","features":[450]},{"name":"PeerEnumGroups","features":[450]},{"name":"PeerEnumIdentities","features":[450]},{"name":"PeerFreeData","features":[450]},{"name":"PeerGetItemCount","features":[450]},{"name":"PeerGetNextItem","features":[450]},{"name":"PeerGraphAddRecord","features":[303,450]},{"name":"PeerGraphClose","features":[450]},{"name":"PeerGraphCloseDirectConnection","features":[450]},{"name":"PeerGraphConnect","features":[450,316]},{"name":"PeerGraphCreate","features":[303,450]},{"name":"PeerGraphDelete","features":[450]},{"name":"PeerGraphDeleteRecord","features":[303,450]},{"name":"PeerGraphEndEnumeration","features":[450]},{"name":"PeerGraphEnumConnections","features":[450]},{"name":"PeerGraphEnumNodes","features":[450]},{"name":"PeerGraphEnumRecords","features":[450]},{"name":"PeerGraphExportDatabase","features":[450]},{"name":"PeerGraphFreeData","features":[450]},{"name":"PeerGraphGetEventData","features":[450]},{"name":"PeerGraphGetItemCount","features":[450]},{"name":"PeerGraphGetNextItem","features":[450]},{"name":"PeerGraphGetNodeInfo","features":[450,316]},{"name":"PeerGraphGetProperties","features":[450]},{"name":"PeerGraphGetRecord","features":[303,450]},{"name":"PeerGraphGetStatus","features":[450]},{"name":"PeerGraphImportDatabase","features":[450]},{"name":"PeerGraphListen","features":[450]},{"name":"PeerGraphOpen","features":[303,450]},{"name":"PeerGraphOpenDirectConnection","features":[450,316]},{"name":"PeerGraphPeerTimeToUniversalTime","features":[303,450]},{"name":"PeerGraphRegisterEvent","features":[303,450]},{"name":"PeerGraphSearchRecords","features":[450]},{"name":"PeerGraphSendData","features":[450]},{"name":"PeerGraphSetNodeAttributes","features":[450]},{"name":"PeerGraphSetPresence","features":[303,450]},{"name":"PeerGraphSetProperties","features":[450]},{"name":"PeerGraphShutdown","features":[450]},{"name":"PeerGraphStartup","features":[450]},{"name":"PeerGraphUniversalTimeToPeerTime","features":[303,450]},{"name":"PeerGraphUnregisterEvent","features":[450]},{"name":"PeerGraphUpdateRecord","features":[303,450]},{"name":"PeerGraphValidateDeferredRecords","features":[450]},{"name":"PeerGroupAddRecord","features":[303,450]},{"name":"PeerGroupClose","features":[450]},{"name":"PeerGroupCloseDirectConnection","features":[450]},{"name":"PeerGroupConnect","features":[450]},{"name":"PeerGroupConnectByAddress","features":[450,316]},{"name":"PeerGroupCreate","features":[450]},{"name":"PeerGroupCreateInvitation","features":[303,450]},{"name":"PeerGroupCreatePasswordInvitation","features":[450]},{"name":"PeerGroupDelete","features":[450]},{"name":"PeerGroupDeleteRecord","features":[450]},{"name":"PeerGroupEnumConnections","features":[450]},{"name":"PeerGroupEnumMembers","features":[450]},{"name":"PeerGroupEnumRecords","features":[450]},{"name":"PeerGroupExportConfig","features":[450]},{"name":"PeerGroupExportDatabase","features":[450]},{"name":"PeerGroupGetEventData","features":[450]},{"name":"PeerGroupGetProperties","features":[450]},{"name":"PeerGroupGetRecord","features":[303,450]},{"name":"PeerGroupGetStatus","features":[450]},{"name":"PeerGroupImportConfig","features":[303,450]},{"name":"PeerGroupImportDatabase","features":[450]},{"name":"PeerGroupIssueCredentials","features":[303,450,387]},{"name":"PeerGroupJoin","features":[450]},{"name":"PeerGroupOpen","features":[450]},{"name":"PeerGroupOpenDirectConnection","features":[450,316]},{"name":"PeerGroupParseInvitation","features":[303,450,387]},{"name":"PeerGroupPasswordJoin","features":[450]},{"name":"PeerGroupPeerTimeToUniversalTime","features":[303,450]},{"name":"PeerGroupRegisterEvent","features":[303,450]},{"name":"PeerGroupResumePasswordAuthentication","features":[450]},{"name":"PeerGroupSearchRecords","features":[450]},{"name":"PeerGroupSendData","features":[450]},{"name":"PeerGroupSetProperties","features":[450]},{"name":"PeerGroupShutdown","features":[450]},{"name":"PeerGroupStartup","features":[450]},{"name":"PeerGroupUniversalTimeToPeerTime","features":[303,450]},{"name":"PeerGroupUnregisterEvent","features":[450]},{"name":"PeerGroupUpdateRecord","features":[303,450]},{"name":"PeerHostNameToPeerName","features":[450]},{"name":"PeerIdentityCreate","features":[450]},{"name":"PeerIdentityDelete","features":[450]},{"name":"PeerIdentityExport","features":[450]},{"name":"PeerIdentityGetCryptKey","features":[450]},{"name":"PeerIdentityGetDefault","features":[450]},{"name":"PeerIdentityGetFriendlyName","features":[450]},{"name":"PeerIdentityGetXML","features":[450]},{"name":"PeerIdentityImport","features":[450]},{"name":"PeerIdentitySetFriendlyName","features":[450]},{"name":"PeerNameToPeerHostName","features":[450]},{"name":"PeerPnrpEndResolve","features":[450]},{"name":"PeerPnrpGetCloudInfo","features":[450]},{"name":"PeerPnrpGetEndpoint","features":[450,316]},{"name":"PeerPnrpRegister","features":[450,316]},{"name":"PeerPnrpResolve","features":[450,316]},{"name":"PeerPnrpShutdown","features":[450]},{"name":"PeerPnrpStartResolve","features":[303,450]},{"name":"PeerPnrpStartup","features":[450]},{"name":"PeerPnrpUnregister","features":[450]},{"name":"PeerPnrpUpdateRegistration","features":[450,316]},{"name":"SVCID_PNRPCLOUD","features":[450]},{"name":"SVCID_PNRPNAME_V1","features":[450]},{"name":"SVCID_PNRPNAME_V2","features":[450]},{"name":"WSA_PNRP_CLIENT_INVALID_COMPARTMENT_ID","features":[450]},{"name":"WSA_PNRP_CLOUD_DISABLED","features":[450]},{"name":"WSA_PNRP_CLOUD_IS_DEAD","features":[450]},{"name":"WSA_PNRP_CLOUD_IS_SEARCH_ONLY","features":[450]},{"name":"WSA_PNRP_CLOUD_NOT_FOUND","features":[450]},{"name":"WSA_PNRP_DUPLICATE_PEER_NAME","features":[450]},{"name":"WSA_PNRP_ERROR_BASE","features":[450]},{"name":"WSA_PNRP_INVALID_IDENTITY","features":[450]},{"name":"WSA_PNRP_TOO_MUCH_LOAD","features":[450]},{"name":"WSZ_SCOPE_GLOBAL","features":[450]},{"name":"WSZ_SCOPE_LINKLOCAL","features":[450]},{"name":"WSZ_SCOPE_SITELOCAL","features":[450]}],"456":[{"name":"ABLE_TO_RECV_RSVP","features":[451]},{"name":"ADDRESS_LIST_DESCRIPTOR","features":[317,451]},{"name":"ADM_CTRL_FAILED","features":[451]},{"name":"ADSPEC","features":[451]},{"name":"AD_FLAG_BREAK_BIT","features":[451]},{"name":"AD_GENERAL_PARAMS","features":[451]},{"name":"AD_GUARANTEED","features":[451]},{"name":"ALLOWED_TO_SEND_DATA","features":[451]},{"name":"ANY_DEST_ADDR","features":[451]},{"name":"CBADMITRESULT","features":[451]},{"name":"CBGETRSVPOBJECTS","features":[451]},{"name":"CONTROLLED_DELAY_SERV","features":[451]},{"name":"CONTROLLED_LOAD_SERV","features":[451]},{"name":"CONTROL_SERVICE","features":[451]},{"name":"CREDENTIAL_SUB_TYPE_ASCII_ID","features":[451]},{"name":"CREDENTIAL_SUB_TYPE_KERBEROS_TKT","features":[451]},{"name":"CREDENTIAL_SUB_TYPE_PGP_CERT","features":[451]},{"name":"CREDENTIAL_SUB_TYPE_UNICODE_ID","features":[451]},{"name":"CREDENTIAL_SUB_TYPE_X509_V3_CERT","features":[451]},{"name":"CURRENT_TCI_VERSION","features":[451]},{"name":"CtrlLoadFlowspec","features":[451]},{"name":"DD_TCP_DEVICE_NAME","features":[451]},{"name":"DUP_RESULTS","features":[451]},{"name":"END_TO_END_QOSABILITY","features":[451]},{"name":"ENUMERATION_BUFFER","features":[451,316]},{"name":"ERROR_ADDRESS_TYPE_NOT_SUPPORTED","features":[451]},{"name":"ERROR_DS_MAPPING_EXISTS","features":[451]},{"name":"ERROR_DUPLICATE_FILTER","features":[451]},{"name":"ERROR_FILTER_CONFLICT","features":[451]},{"name":"ERROR_INCOMPATABLE_QOS","features":[451]},{"name":"ERROR_INCOMPATIBLE_TCI_VERSION","features":[451]},{"name":"ERROR_INVALID_ADDRESS_TYPE","features":[451]},{"name":"ERROR_INVALID_DIFFSERV_FLOW","features":[451]},{"name":"ERROR_INVALID_DS_CLASS","features":[451]},{"name":"ERROR_INVALID_FLOW_MODE","features":[451]},{"name":"ERROR_INVALID_PEAK_RATE","features":[451]},{"name":"ERROR_INVALID_QOS_PRIORITY","features":[451]},{"name":"ERROR_INVALID_SD_MODE","features":[451]},{"name":"ERROR_INVALID_SERVICE_TYPE","features":[451]},{"name":"ERROR_INVALID_SHAPE_RATE","features":[451]},{"name":"ERROR_INVALID_TOKEN_RATE","features":[451]},{"name":"ERROR_INVALID_TRAFFIC_CLASS","features":[451]},{"name":"ERROR_NO_MORE_INFO","features":[451]},{"name":"ERROR_SPEC","features":[451,316]},{"name":"ERROR_SPECF_InPlace","features":[451]},{"name":"ERROR_SPECF_NotGuilty","features":[451]},{"name":"ERROR_TC_NOT_SUPPORTED","features":[451]},{"name":"ERROR_TC_OBJECT_LENGTH_INVALID","features":[451]},{"name":"ERROR_TC_SUPPORTED_OBJECTS_EXIST","features":[451]},{"name":"ERROR_TOO_MANY_CLIENTS","features":[451]},{"name":"ERR_FORWARD_OK","features":[451]},{"name":"ERR_Usage_globl","features":[451]},{"name":"ERR_Usage_local","features":[451]},{"name":"ERR_Usage_serv","features":[451]},{"name":"ERR_global_mask","features":[451]},{"name":"EXPIRED_CREDENTIAL","features":[451]},{"name":"Error_Spec_IPv4","features":[451,316]},{"name":"FILTERSPECV4","features":[451]},{"name":"FILTERSPECV4_GPI","features":[451]},{"name":"FILTERSPECV6","features":[451]},{"name":"FILTERSPECV6_FLOW","features":[451]},{"name":"FILTERSPECV6_GPI","features":[451]},{"name":"FILTERSPEC_END","features":[451]},{"name":"FILTER_SPEC","features":[451,316]},{"name":"FLOWDESCRIPTOR","features":[451,316]},{"name":"FLOW_DESC","features":[451,316]},{"name":"FLOW_DURATION","features":[451]},{"name":"FORCE_IMMEDIATE_REFRESH","features":[451]},{"name":"FSCTL_TCP_BASE","features":[451]},{"name":"FVEB_UNLOCK_FLAG_AUK_OSFVEINFO","features":[451]},{"name":"FVEB_UNLOCK_FLAG_CACHED","features":[451]},{"name":"FVEB_UNLOCK_FLAG_EXTERNAL","features":[451]},{"name":"FVEB_UNLOCK_FLAG_MEDIA","features":[451]},{"name":"FVEB_UNLOCK_FLAG_NBP","features":[451]},{"name":"FVEB_UNLOCK_FLAG_NONE","features":[451]},{"name":"FVEB_UNLOCK_FLAG_PASSPHRASE","features":[451]},{"name":"FVEB_UNLOCK_FLAG_PIN","features":[451]},{"name":"FVEB_UNLOCK_FLAG_RECOVERY","features":[451]},{"name":"FVEB_UNLOCK_FLAG_TPM","features":[451]},{"name":"FilterType","features":[451]},{"name":"Filter_Spec_IPv4","features":[451,316]},{"name":"Filter_Spec_IPv4GPI","features":[451,316]},{"name":"GENERAL_INFO","features":[451]},{"name":"GQOS_API","features":[451]},{"name":"GQOS_ERRORCODE_UNKNOWN","features":[451]},{"name":"GQOS_ERRORVALUE_UNKNOWN","features":[451]},{"name":"GQOS_KERNEL_TC","features":[451]},{"name":"GQOS_KERNEL_TC_SYS","features":[451]},{"name":"GQOS_NET_ADMISSION","features":[451]},{"name":"GQOS_NET_POLICY","features":[451]},{"name":"GQOS_NO_ERRORCODE","features":[451]},{"name":"GQOS_NO_ERRORVALUE","features":[451]},{"name":"GQOS_RSVP","features":[451]},{"name":"GQOS_RSVP_SYS","features":[451]},{"name":"GUARANTEED_SERV","features":[451]},{"name":"GUAR_ADSPARM_C","features":[451]},{"name":"GUAR_ADSPARM_Csum","features":[451]},{"name":"GUAR_ADSPARM_Ctot","features":[451]},{"name":"GUAR_ADSPARM_D","features":[451]},{"name":"GUAR_ADSPARM_Dsum","features":[451]},{"name":"GUAR_ADSPARM_Dtot","features":[451]},{"name":"GUID_QOS_BESTEFFORT_BANDWIDTH","features":[451]},{"name":"GUID_QOS_ENABLE_AVG_STATS","features":[451]},{"name":"GUID_QOS_ENABLE_WINDOW_ADJUSTMENT","features":[451]},{"name":"GUID_QOS_FLOW_8021P_CONFORMING","features":[451]},{"name":"GUID_QOS_FLOW_8021P_NONCONFORMING","features":[451]},{"name":"GUID_QOS_FLOW_COUNT","features":[451]},{"name":"GUID_QOS_FLOW_IP_CONFORMING","features":[451]},{"name":"GUID_QOS_FLOW_IP_NONCONFORMING","features":[451]},{"name":"GUID_QOS_FLOW_MODE","features":[451]},{"name":"GUID_QOS_ISSLOW_FLOW","features":[451]},{"name":"GUID_QOS_LATENCY","features":[451]},{"name":"GUID_QOS_MAX_OUTSTANDING_SENDS","features":[451]},{"name":"GUID_QOS_NON_BESTEFFORT_LIMIT","features":[451]},{"name":"GUID_QOS_REMAINING_BANDWIDTH","features":[451]},{"name":"GUID_QOS_STATISTICS_BUFFER","features":[451]},{"name":"GUID_QOS_TIMER_RESOLUTION","features":[451]},{"name":"Gads_parms_t","features":[451]},{"name":"GenAdspecParams","features":[451]},{"name":"GenTspec","features":[451]},{"name":"GenTspecParms","features":[451]},{"name":"GuarFlowSpec","features":[451]},{"name":"GuarRspec","features":[451]},{"name":"HIGHLY_DELAY_SENSITIVE","features":[451]},{"name":"HSP_UPGRADE_IMAGEDATA","features":[451]},{"name":"IDENTITY_CHANGED","features":[451]},{"name":"IDPE_ATTR","features":[451]},{"name":"ID_ERROR_OBJECT","features":[451]},{"name":"IF_MIB_STATS_ID","features":[451]},{"name":"INFO_NOT_AVAILABLE","features":[451]},{"name":"INSUFFICIENT_PRIVILEGES","features":[451]},{"name":"INTSERV_VERSION0","features":[451]},{"name":"INTSERV_VERS_MASK","features":[451]},{"name":"INV_LPM_HANDLE","features":[451]},{"name":"INV_REQ_HANDLE","features":[451]},{"name":"INV_RESULTS","features":[451]},{"name":"IN_ADDR_IPV4","features":[451]},{"name":"IN_ADDR_IPV6","features":[451]},{"name":"IPX_PATTERN","features":[451]},{"name":"IP_INTFC_INFO_ID","features":[451]},{"name":"IP_MIB_ADDRTABLE_ENTRY_ID","features":[451]},{"name":"IP_MIB_STATS_ID","features":[451]},{"name":"IP_PATTERN","features":[451]},{"name":"ISPH_FLG_INV","features":[451]},{"name":"ISSH_BREAK_BIT","features":[451]},{"name":"IS_ADSPEC_BODY","features":[451]},{"name":"IS_FLOWSPEC","features":[451]},{"name":"IS_GUAR_RSPEC","features":[451]},{"name":"IS_WKP_COMPOSED_MTU","features":[451]},{"name":"IS_WKP_HOP_CNT","features":[451]},{"name":"IS_WKP_MIN_LATENCY","features":[451]},{"name":"IS_WKP_PATH_BW","features":[451]},{"name":"IS_WKP_Q_TSPEC","features":[451]},{"name":"IS_WKP_TB_TSPEC","features":[451]},{"name":"IntServFlowSpec","features":[451]},{"name":"IntServMainHdr","features":[451]},{"name":"IntServParmHdr","features":[451]},{"name":"IntServServiceHdr","features":[451]},{"name":"IntServTspecBody","features":[451]},{"name":"LINE_RATE","features":[451]},{"name":"LOCAL_QOSABILITY","features":[451]},{"name":"LOCAL_TRAFFIC_CONTROL","features":[451]},{"name":"LPMIPTABLE","features":[451,316]},{"name":"LPM_API_VERSION_1","features":[451]},{"name":"LPM_HANDLE","features":[451]},{"name":"LPM_INIT_INFO","features":[451]},{"name":"LPM_OK","features":[451]},{"name":"LPM_PE_ALL_TYPES","features":[451]},{"name":"LPM_PE_APP_IDENTITY","features":[451]},{"name":"LPM_PE_USER_IDENTITY","features":[451]},{"name":"LPM_RESULT_DEFER","features":[451]},{"name":"LPM_RESULT_READY","features":[451]},{"name":"LPM_TIME_OUT","features":[451]},{"name":"LPV_DONT_CARE","features":[451]},{"name":"LPV_DROP_MSG","features":[451]},{"name":"LPV_MAX_PRIORITY","features":[451]},{"name":"LPV_MIN_PRIORITY","features":[451]},{"name":"LPV_REJECT","features":[451]},{"name":"LPV_RESERVED","features":[451]},{"name":"MAX_HSP_UPGRADE_FILENAME_LENGTH","features":[451]},{"name":"MAX_PHYSADDR_SIZE","features":[451]},{"name":"MAX_STRING_LENGTH","features":[451]},{"name":"MODERATELY_DELAY_SENSITIVE","features":[451]},{"name":"OSDEVICE_TYPE_BLOCKIO_CDROM","features":[451]},{"name":"OSDEVICE_TYPE_BLOCKIO_FILE","features":[451]},{"name":"OSDEVICE_TYPE_BLOCKIO_HARDDISK","features":[451]},{"name":"OSDEVICE_TYPE_BLOCKIO_PARTITION","features":[451]},{"name":"OSDEVICE_TYPE_BLOCKIO_RAMDISK","features":[451]},{"name":"OSDEVICE_TYPE_BLOCKIO_REMOVABLEDISK","features":[451]},{"name":"OSDEVICE_TYPE_BLOCKIO_VIRTUALHARDDISK","features":[451]},{"name":"OSDEVICE_TYPE_CIMFS","features":[451]},{"name":"OSDEVICE_TYPE_COMPOSITE","features":[451]},{"name":"OSDEVICE_TYPE_SERIAL","features":[451]},{"name":"OSDEVICE_TYPE_UDP","features":[451]},{"name":"OSDEVICE_TYPE_UNKNOWN","features":[451]},{"name":"OSDEVICE_TYPE_VMBUS","features":[451]},{"name":"Opt_Distinct","features":[451]},{"name":"Opt_Explicit","features":[451]},{"name":"Opt_Share_mask","features":[451]},{"name":"Opt_Shared","features":[451]},{"name":"Opt_SndSel_mask","features":[451]},{"name":"Opt_Wildcard","features":[451]},{"name":"PALLOCMEM","features":[451]},{"name":"PARAM_BUFFER","features":[451]},{"name":"PCM_VERSION_1","features":[451]},{"name":"PE_ATTRIB_TYPE_CREDENTIAL","features":[451]},{"name":"PE_ATTRIB_TYPE_POLICY_LOCATOR","features":[451]},{"name":"PE_TYPE_APPID","features":[451]},{"name":"PFREEMEM","features":[451]},{"name":"POLICY_DATA","features":[451]},{"name":"POLICY_DECISION","features":[451]},{"name":"POLICY_ELEMENT","features":[451]},{"name":"POLICY_ERRV_CRAZY_FLOWSPEC","features":[451]},{"name":"POLICY_ERRV_EXPIRED_CREDENTIALS","features":[451]},{"name":"POLICY_ERRV_EXPIRED_USER_TOKEN","features":[451]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_DEF_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_GRP_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_USER_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_IDENTITY_CHANGED","features":[451]},{"name":"POLICY_ERRV_INSUFFICIENT_PRIVILEGES","features":[451]},{"name":"POLICY_ERRV_NO_ACCEPTS","features":[451]},{"name":"POLICY_ERRV_NO_MEMORY","features":[451]},{"name":"POLICY_ERRV_NO_MORE_INFO","features":[451]},{"name":"POLICY_ERRV_NO_PRIVILEGES","features":[451]},{"name":"POLICY_ERRV_NO_RESOURCES","features":[451]},{"name":"POLICY_ERRV_PRE_EMPTED","features":[451]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_DEF_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_GRP_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_COUNT","features":[451]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_DURATION","features":[451]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_USER_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_FLOW_RATE","features":[451]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_PEAK_RATE","features":[451]},{"name":"POLICY_ERRV_UNKNOWN","features":[451]},{"name":"POLICY_ERRV_UNKNOWN_USER","features":[451]},{"name":"POLICY_ERRV_UNSUPPORTED_CREDENTIAL_TYPE","features":[451]},{"name":"POLICY_ERRV_USER_CHANGED","features":[451]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN","features":[451]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN_ENC","features":[451]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN","features":[451]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN_ENC","features":[451]},{"name":"POSITIVE_INFINITY_RATE","features":[451]},{"name":"PREDICTIVE_SERV","features":[451]},{"name":"QOSAddSocketToFlow","features":[303,451,316]},{"name":"QOSCancel","features":[303,451,308]},{"name":"QOSCloseHandle","features":[303,451]},{"name":"QOSCreateHandle","features":[303,451]},{"name":"QOSEnumerateFlows","features":[303,451]},{"name":"QOSFlowRateCongestion","features":[451]},{"name":"QOSFlowRateContentChange","features":[451]},{"name":"QOSFlowRateHigherContentEncoding","features":[451]},{"name":"QOSFlowRateNotApplicable","features":[451]},{"name":"QOSFlowRateUserCaused","features":[451]},{"name":"QOSNotifyAvailable","features":[451]},{"name":"QOSNotifyCongested","features":[451]},{"name":"QOSNotifyFlow","features":[303,451,308]},{"name":"QOSNotifyUncongested","features":[451]},{"name":"QOSQueryFlow","features":[303,451,308]},{"name":"QOSQueryFlowFundamentals","features":[451]},{"name":"QOSQueryOutgoingRate","features":[451]},{"name":"QOSQueryPacketPriority","features":[451]},{"name":"QOSRemoveSocketFromFlow","features":[303,451,316]},{"name":"QOSSPBASE","features":[451]},{"name":"QOSSP_ERR_BASE","features":[451]},{"name":"QOSSetFlow","features":[303,451,308]},{"name":"QOSSetOutgoingDSCPValue","features":[451]},{"name":"QOSSetOutgoingRate","features":[451]},{"name":"QOSSetTrafficType","features":[451]},{"name":"QOSShapeAndMark","features":[451]},{"name":"QOSShapeOnly","features":[451]},{"name":"QOSStartTrackingClient","features":[303,451,316]},{"name":"QOSStopTrackingClient","features":[303,451,316]},{"name":"QOSTrafficTypeAudioVideo","features":[451]},{"name":"QOSTrafficTypeBackground","features":[451]},{"name":"QOSTrafficTypeBestEffort","features":[451]},{"name":"QOSTrafficTypeControl","features":[451]},{"name":"QOSTrafficTypeExcellentEffort","features":[451]},{"name":"QOSTrafficTypeVoice","features":[451]},{"name":"QOSUseNonConformantMarkings","features":[451]},{"name":"QOS_DESTADDR","features":[451,316]},{"name":"QOS_DIFFSERV","features":[451]},{"name":"QOS_DIFFSERV_RULE","features":[451]},{"name":"QOS_DS_CLASS","features":[451]},{"name":"QOS_FLOWRATE_OUTGOING","features":[451]},{"name":"QOS_FLOWRATE_REASON","features":[451]},{"name":"QOS_FLOW_FUNDAMENTALS","features":[303,451]},{"name":"QOS_FRIENDLY_NAME","features":[451]},{"name":"QOS_GENERAL_ID_BASE","features":[451]},{"name":"QOS_MAX_OBJECT_STRING_LENGTH","features":[451]},{"name":"QOS_NON_ADAPTIVE_FLOW","features":[451]},{"name":"QOS_NOTIFY_FLOW","features":[451]},{"name":"QOS_NOT_SPECIFIED","features":[451]},{"name":"QOS_OBJECT_HDR","features":[451]},{"name":"QOS_OUTGOING_DEFAULT_MINIMUM_BANDWIDTH","features":[451]},{"name":"QOS_PACKET_PRIORITY","features":[451]},{"name":"QOS_QUERYFLOW_FRESH","features":[451]},{"name":"QOS_QUERY_FLOW","features":[451]},{"name":"QOS_SD_MODE","features":[451]},{"name":"QOS_SET_FLOW","features":[451]},{"name":"QOS_SHAPING","features":[451]},{"name":"QOS_SHAPING_RATE","features":[451]},{"name":"QOS_TCP_TRAFFIC","features":[451]},{"name":"QOS_TRAFFIC_CLASS","features":[451]},{"name":"QOS_TRAFFIC_GENERAL_ID_BASE","features":[451]},{"name":"QOS_TRAFFIC_TYPE","features":[451]},{"name":"QOS_VERSION","features":[451]},{"name":"QUALITATIVE_SERV","features":[451]},{"name":"QualAppFlowSpec","features":[451]},{"name":"QualTspec","features":[451]},{"name":"QualTspecParms","features":[451]},{"name":"RCVD_PATH_TEAR","features":[451]},{"name":"RCVD_RESV_TEAR","features":[451]},{"name":"RESOURCES_ALLOCATED","features":[451]},{"name":"RESOURCES_MODIFIED","features":[451]},{"name":"RESV_STYLE","features":[451]},{"name":"RHANDLE","features":[451]},{"name":"RSVP_ADSPEC","features":[451]},{"name":"RSVP_DEFAULT_STYLE","features":[451]},{"name":"RSVP_Err_ADMISSION","features":[451]},{"name":"RSVP_Err_AMBIG_FILTER","features":[451]},{"name":"RSVP_Err_API_ERROR","features":[451]},{"name":"RSVP_Err_BAD_DSTPORT","features":[451]},{"name":"RSVP_Err_BAD_SNDPORT","features":[451]},{"name":"RSVP_Err_BAD_STYLE","features":[451]},{"name":"RSVP_Err_NONE","features":[451]},{"name":"RSVP_Err_NO_PATH","features":[451]},{"name":"RSVP_Err_NO_SENDER","features":[451]},{"name":"RSVP_Err_POLICY","features":[451]},{"name":"RSVP_Err_PREEMPTED","features":[451]},{"name":"RSVP_Err_RSVP_SYS_ERROR","features":[451]},{"name":"RSVP_Err_TC_ERROR","features":[451]},{"name":"RSVP_Err_TC_SYS_ERROR","features":[451]},{"name":"RSVP_Err_UNKNOWN_CTYPE","features":[451]},{"name":"RSVP_Err_UNKNOWN_STYLE","features":[451]},{"name":"RSVP_Err_UNKN_OBJ_CLASS","features":[451]},{"name":"RSVP_Erv_API","features":[451]},{"name":"RSVP_Erv_Bandwidth","features":[451]},{"name":"RSVP_Erv_Bucket_szie","features":[451]},{"name":"RSVP_Erv_Conflict_Serv","features":[451]},{"name":"RSVP_Erv_Crazy_Flowspec","features":[451]},{"name":"RSVP_Erv_Crazy_Tspec","features":[451]},{"name":"RSVP_Erv_DelayBnd","features":[451]},{"name":"RSVP_Erv_Flow_Rate","features":[451]},{"name":"RSVP_Erv_MEMORY","features":[451]},{"name":"RSVP_Erv_MTU","features":[451]},{"name":"RSVP_Erv_Min_Policied_size","features":[451]},{"name":"RSVP_Erv_No_Serv","features":[451]},{"name":"RSVP_Erv_Nonev","features":[451]},{"name":"RSVP_Erv_Other","features":[451]},{"name":"RSVP_Erv_Peak_Rate","features":[451]},{"name":"RSVP_FILTERSPEC","features":[451]},{"name":"RSVP_FILTERSPEC_V4","features":[451]},{"name":"RSVP_FILTERSPEC_V4_GPI","features":[451]},{"name":"RSVP_FILTERSPEC_V6","features":[451]},{"name":"RSVP_FILTERSPEC_V6_FLOW","features":[451]},{"name":"RSVP_FILTERSPEC_V6_GPI","features":[451]},{"name":"RSVP_FIXED_FILTER_STYLE","features":[451]},{"name":"RSVP_HOP","features":[451,316]},{"name":"RSVP_MSG_OBJS","features":[451,316]},{"name":"RSVP_OBJECT_ID_BASE","features":[451]},{"name":"RSVP_PATH","features":[451]},{"name":"RSVP_PATH_ERR","features":[451]},{"name":"RSVP_PATH_TEAR","features":[451]},{"name":"RSVP_POLICY","features":[451]},{"name":"RSVP_POLICY_INFO","features":[451]},{"name":"RSVP_RESERVE_INFO","features":[451,316]},{"name":"RSVP_RESV","features":[451]},{"name":"RSVP_RESV_ERR","features":[451]},{"name":"RSVP_RESV_TEAR","features":[451]},{"name":"RSVP_SCOPE","features":[451,316]},{"name":"RSVP_SESSION","features":[451,316]},{"name":"RSVP_SHARED_EXPLICIT_STYLE","features":[451]},{"name":"RSVP_STATUS_INFO","features":[451]},{"name":"RSVP_WILDCARD_STYLE","features":[451]},{"name":"RsvpObjHdr","features":[451]},{"name":"Rsvp_Hop_IPv4","features":[451,316]},{"name":"SENDER_TSPEC","features":[451]},{"name":"SERVICETYPE_BESTEFFORT","features":[451]},{"name":"SERVICETYPE_CONTROLLEDLOAD","features":[451]},{"name":"SERVICETYPE_GENERAL_INFORMATION","features":[451]},{"name":"SERVICETYPE_GUARANTEED","features":[451]},{"name":"SERVICETYPE_NETWORK_CONTROL","features":[451]},{"name":"SERVICETYPE_NETWORK_UNAVAILABLE","features":[451]},{"name":"SERVICETYPE_NOCHANGE","features":[451]},{"name":"SERVICETYPE_NONCONFORMING","features":[451]},{"name":"SERVICETYPE_NOTRAFFIC","features":[451]},{"name":"SERVICETYPE_QUALITATIVE","features":[451]},{"name":"SERVICE_BESTEFFORT","features":[451]},{"name":"SERVICE_CONTROLLEDLOAD","features":[451]},{"name":"SERVICE_GUARANTEED","features":[451]},{"name":"SERVICE_NO_QOS_SIGNALING","features":[451]},{"name":"SERVICE_NO_TRAFFIC_CONTROL","features":[451]},{"name":"SERVICE_QUALITATIVE","features":[451]},{"name":"SESSFLG_E_Police","features":[451]},{"name":"SIPAERROR_FIRMWAREFAILURE","features":[451]},{"name":"SIPAERROR_INTERNALFAILURE","features":[451]},{"name":"SIPAEVENTTYPE_AGGREGATION","features":[451]},{"name":"SIPAEVENTTYPE_AUTHORITY","features":[451]},{"name":"SIPAEVENTTYPE_CONTAINER","features":[451]},{"name":"SIPAEVENTTYPE_DRTM","features":[451]},{"name":"SIPAEVENTTYPE_ELAM","features":[451]},{"name":"SIPAEVENTTYPE_ERROR","features":[451]},{"name":"SIPAEVENTTYPE_INFORMATION","features":[451]},{"name":"SIPAEVENTTYPE_KSR","features":[451]},{"name":"SIPAEVENTTYPE_LOADEDMODULE","features":[451]},{"name":"SIPAEVENTTYPE_NONMEASURED","features":[451]},{"name":"SIPAEVENTTYPE_OSPARAMETER","features":[451]},{"name":"SIPAEVENTTYPE_PREOSPARAMETER","features":[451]},{"name":"SIPAEVENTTYPE_TRUSTPOINT","features":[451]},{"name":"SIPAEVENTTYPE_VBS","features":[451]},{"name":"SIPAEVENT_APPLICATION_RETURN","features":[451]},{"name":"SIPAEVENT_APPLICATION_SVN","features":[451]},{"name":"SIPAEVENT_AUTHENTICODEHASH","features":[451]},{"name":"SIPAEVENT_AUTHORITYISSUER","features":[451]},{"name":"SIPAEVENT_AUTHORITYPUBKEY","features":[451]},{"name":"SIPAEVENT_AUTHORITYPUBLISHER","features":[451]},{"name":"SIPAEVENT_AUTHORITYSERIAL","features":[451]},{"name":"SIPAEVENT_AUTHORITYSHA1THUMBPRINT","features":[451]},{"name":"SIPAEVENT_BITLOCKER_UNLOCK","features":[451]},{"name":"SIPAEVENT_BOOTCOUNTER","features":[451]},{"name":"SIPAEVENT_BOOTDEBUGGING","features":[451]},{"name":"SIPAEVENT_BOOT_REVOCATION_LIST","features":[451]},{"name":"SIPAEVENT_CODEINTEGRITY","features":[451]},{"name":"SIPAEVENT_COUNTERID","features":[451]},{"name":"SIPAEVENT_DATAEXECUTIONPREVENTION","features":[451]},{"name":"SIPAEVENT_DRIVER_LOAD_POLICY","features":[451]},{"name":"SIPAEVENT_DRTM_AMD_SMM_HASH","features":[451]},{"name":"SIPAEVENT_DRTM_AMD_SMM_SIGNER_KEY","features":[451]},{"name":"SIPAEVENT_DRTM_SMM_LEVEL","features":[451]},{"name":"SIPAEVENT_DRTM_STATE_AUTH","features":[451]},{"name":"SIPAEVENT_DUMPS_DISABLED","features":[451]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_ENABLED","features":[451]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_KEY_DIGEST","features":[451]},{"name":"SIPAEVENT_ELAM_CONFIGURATION","features":[451]},{"name":"SIPAEVENT_ELAM_KEYNAME","features":[451]},{"name":"SIPAEVENT_ELAM_MEASURED","features":[451]},{"name":"SIPAEVENT_ELAM_POLICY","features":[451]},{"name":"SIPAEVENT_EVENTCOUNTER","features":[451]},{"name":"SIPAEVENT_FILEPATH","features":[451]},{"name":"SIPAEVENT_FLIGHTSIGNING","features":[451]},{"name":"SIPAEVENT_HASHALGORITHMID","features":[451]},{"name":"SIPAEVENT_HIBERNATION_DISABLED","features":[451]},{"name":"SIPAEVENT_HYPERVISOR_BOOT_DMA_PROTECTION","features":[451]},{"name":"SIPAEVENT_HYPERVISOR_DEBUG","features":[451]},{"name":"SIPAEVENT_HYPERVISOR_IOMMU_POLICY","features":[451]},{"name":"SIPAEVENT_HYPERVISOR_LAUNCH_TYPE","features":[451]},{"name":"SIPAEVENT_HYPERVISOR_MMIO_NX_POLICY","features":[451]},{"name":"SIPAEVENT_HYPERVISOR_MSR_FILTER_POLICY","features":[451]},{"name":"SIPAEVENT_HYPERVISOR_PATH","features":[451]},{"name":"SIPAEVENT_IMAGEBASE","features":[451]},{"name":"SIPAEVENT_IMAGESIZE","features":[451]},{"name":"SIPAEVENT_IMAGEVALIDATED","features":[451]},{"name":"SIPAEVENT_INFORMATION","features":[451]},{"name":"SIPAEVENT_KSR_SIGNATURE","features":[451]},{"name":"SIPAEVENT_KSR_SIGNATURE_PAYLOAD","features":[451]},{"name":"SIPAEVENT_LSAISO_CONFIG","features":[451]},{"name":"SIPAEVENT_MODULE_HSP","features":[451]},{"name":"SIPAEVENT_MODULE_SVN","features":[451]},{"name":"SIPAEVENT_MORBIT_API_STATUS","features":[451]},{"name":"SIPAEVENT_MORBIT_NOT_CANCELABLE","features":[451]},{"name":"SIPAEVENT_NOAUTHORITY","features":[451]},{"name":"SIPAEVENT_OSDEVICE","features":[451]},{"name":"SIPAEVENT_OSKERNELDEBUG","features":[451]},{"name":"SIPAEVENT_OS_REVOCATION_LIST","features":[451]},{"name":"SIPAEVENT_PAGEFILE_ENCRYPTION_ENABLED","features":[451]},{"name":"SIPAEVENT_PHYSICALADDRESSEXTENSION","features":[451]},{"name":"SIPAEVENT_REVOCATION_LIST_PAYLOAD","features":[451]},{"name":"SIPAEVENT_SAFEMODE","features":[451]},{"name":"SIPAEVENT_SBCP_INFO","features":[451]},{"name":"SIPAEVENT_SBCP_INFO_PAYLOAD_V1","features":[451]},{"name":"SIPAEVENT_SI_POLICY","features":[451]},{"name":"SIPAEVENT_SI_POLICY_PAYLOAD","features":[451]},{"name":"SIPAEVENT_SMT_STATUS","features":[451]},{"name":"SIPAEVENT_SVN_CHAIN_STATUS","features":[451]},{"name":"SIPAEVENT_SYSTEMROOT","features":[451]},{"name":"SIPAEVENT_TESTSIGNING","features":[451]},{"name":"SIPAEVENT_TRANSFER_CONTROL","features":[451]},{"name":"SIPAEVENT_VBS_DUMP_USES_AMEROOT","features":[451]},{"name":"SIPAEVENT_VBS_HVCI_POLICY","features":[451]},{"name":"SIPAEVENT_VBS_IOMMU_REQUIRED","features":[451]},{"name":"SIPAEVENT_VBS_MANDATORY_ENFORCEMENT","features":[451]},{"name":"SIPAEVENT_VBS_MICROSOFT_BOOT_CHAIN_REQUIRED","features":[451]},{"name":"SIPAEVENT_VBS_MMIO_NX_REQUIRED","features":[451]},{"name":"SIPAEVENT_VBS_MSR_FILTERING_REQUIRED","features":[451]},{"name":"SIPAEVENT_VBS_SECUREBOOT_REQUIRED","features":[451]},{"name":"SIPAEVENT_VBS_VSM_NOSECRETS_ENFORCED","features":[451]},{"name":"SIPAEVENT_VBS_VSM_REQUIRED","features":[451]},{"name":"SIPAEVENT_VSM_IDKS_INFO","features":[451]},{"name":"SIPAEVENT_VSM_IDK_INFO","features":[451]},{"name":"SIPAEVENT_VSM_IDK_INFO_PAYLOAD","features":[451]},{"name":"SIPAEVENT_VSM_IDK_RSA_INFO","features":[451]},{"name":"SIPAEVENT_VSM_LAUNCH_TYPE","features":[451]},{"name":"SIPAEVENT_WINPE","features":[451]},{"name":"SIPAEV_ACTION","features":[451]},{"name":"SIPAEV_AMD_SL_EVENT_BASE","features":[451]},{"name":"SIPAEV_AMD_SL_LOAD","features":[451]},{"name":"SIPAEV_AMD_SL_LOAD_1","features":[451]},{"name":"SIPAEV_AMD_SL_PSP_FW_SPLT","features":[451]},{"name":"SIPAEV_AMD_SL_PUB_KEY","features":[451]},{"name":"SIPAEV_AMD_SL_SEPARATOR","features":[451]},{"name":"SIPAEV_AMD_SL_SVN","features":[451]},{"name":"SIPAEV_AMD_SL_TSME_RB_FUSE","features":[451]},{"name":"SIPAEV_COMPACT_HASH","features":[451]},{"name":"SIPAEV_CPU_MICROCODE","features":[451]},{"name":"SIPAEV_EFI_ACTION","features":[451]},{"name":"SIPAEV_EFI_BOOT_SERVICES_APPLICATION","features":[451]},{"name":"SIPAEV_EFI_BOOT_SERVICES_DRIVER","features":[451]},{"name":"SIPAEV_EFI_EVENT_BASE","features":[451]},{"name":"SIPAEV_EFI_GPT_EVENT","features":[451]},{"name":"SIPAEV_EFI_HANDOFF_TABLES","features":[451]},{"name":"SIPAEV_EFI_HANDOFF_TABLES2","features":[451]},{"name":"SIPAEV_EFI_HCRTM_EVENT","features":[451]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB","features":[451]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB2","features":[451]},{"name":"SIPAEV_EFI_RUNTIME_SERVICES_DRIVER","features":[451]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_BLOB","features":[451]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_CONFIG","features":[451]},{"name":"SIPAEV_EFI_VARIABLE_AUTHORITY","features":[451]},{"name":"SIPAEV_EFI_VARIABLE_BOOT","features":[451]},{"name":"SIPAEV_EFI_VARIABLE_BOOT2","features":[451]},{"name":"SIPAEV_EFI_VARIABLE_DRIVER_CONFIG","features":[451]},{"name":"SIPAEV_EVENT_TAG","features":[451]},{"name":"SIPAEV_IPL","features":[451]},{"name":"SIPAEV_IPL_PARTITION_DATA","features":[451]},{"name":"SIPAEV_NONHOST_CODE","features":[451]},{"name":"SIPAEV_NONHOST_CONFIG","features":[451]},{"name":"SIPAEV_NONHOST_INFO","features":[451]},{"name":"SIPAEV_NO_ACTION","features":[451]},{"name":"SIPAEV_OMIT_BOOT_DEVICE_EVENTS","features":[451]},{"name":"SIPAEV_PLATFORM_CONFIG_FLAGS","features":[451]},{"name":"SIPAEV_POST_CODE","features":[451]},{"name":"SIPAEV_PREBOOT_CERT","features":[451]},{"name":"SIPAEV_SEPARATOR","features":[451]},{"name":"SIPAEV_S_CRTM_CONTENTS","features":[451]},{"name":"SIPAEV_S_CRTM_VERSION","features":[451]},{"name":"SIPAEV_TABLE_OF_DEVICES","features":[451]},{"name":"SIPAEV_TXT_BIOSAC_REG_DATA","features":[451]},{"name":"SIPAEV_TXT_BOOT_POL_HASH","features":[451]},{"name":"SIPAEV_TXT_BPM_HASH","features":[451]},{"name":"SIPAEV_TXT_BPM_INFO_HASH","features":[451]},{"name":"SIPAEV_TXT_CAP_VALUE","features":[451]},{"name":"SIPAEV_TXT_COLD_BOOT_BIOS_HASH","features":[451]},{"name":"SIPAEV_TXT_COMBINED_HASH","features":[451]},{"name":"SIPAEV_TXT_CPU_SCRTM_STAT","features":[451]},{"name":"SIPAEV_TXT_ELEMENTS_HASH","features":[451]},{"name":"SIPAEV_TXT_EVENT_BASE","features":[451]},{"name":"SIPAEV_TXT_HASH_START","features":[451]},{"name":"SIPAEV_TXT_KM_HASH","features":[451]},{"name":"SIPAEV_TXT_KM_INFO_HASH","features":[451]},{"name":"SIPAEV_TXT_LCP_AUTHORITIES_HASH","features":[451]},{"name":"SIPAEV_TXT_LCP_CONTROL_HASH","features":[451]},{"name":"SIPAEV_TXT_LCP_DETAILS_HASH","features":[451]},{"name":"SIPAEV_TXT_LCP_HASH","features":[451]},{"name":"SIPAEV_TXT_MLE_HASH","features":[451]},{"name":"SIPAEV_TXT_NV_INFO_HASH","features":[451]},{"name":"SIPAEV_TXT_OSSINITDATA_CAP_HASH","features":[451]},{"name":"SIPAEV_TXT_PCR_MAPPING","features":[451]},{"name":"SIPAEV_TXT_RANDOM_VALUE","features":[451]},{"name":"SIPAEV_TXT_SINIT_PUBKEY_HASH","features":[451]},{"name":"SIPAEV_TXT_STM_HASH","features":[451]},{"name":"SIPAEV_UNUSED","features":[451]},{"name":"SIPAHDRSIGNATURE","features":[451]},{"name":"SIPAKSRHDRSIGNATURE","features":[451]},{"name":"SIPALOGVERSION","features":[451]},{"name":"STATE_TIMEOUT","features":[451]},{"name":"Scope_list_ipv4","features":[451,316]},{"name":"Session_IPv4","features":[451,316]},{"name":"TCBASE","features":[451]},{"name":"TCG_PCClientPCREventStruct","features":[451]},{"name":"TCG_PCClientTaggedEventStruct","features":[451]},{"name":"TCI_ADD_FLOW_COMPLETE_HANDLER","features":[303,451]},{"name":"TCI_CLIENT_FUNC_LIST","features":[303,451]},{"name":"TCI_DEL_FLOW_COMPLETE_HANDLER","features":[303,451]},{"name":"TCI_MOD_FLOW_COMPLETE_HANDLER","features":[303,451]},{"name":"TCI_NOTIFY_HANDLER","features":[303,451]},{"name":"TC_GEN_FILTER","features":[451]},{"name":"TC_GEN_FLOW","features":[451,316]},{"name":"TC_IFC_DESCRIPTOR","features":[317,451]},{"name":"TC_NONCONF_BORROW","features":[451]},{"name":"TC_NONCONF_BORROW_PLUS","features":[451]},{"name":"TC_NONCONF_DISCARD","features":[451]},{"name":"TC_NONCONF_SHAPE","features":[451]},{"name":"TC_NOTIFY_FLOW_CLOSE","features":[451]},{"name":"TC_NOTIFY_IFC_CHANGE","features":[451]},{"name":"TC_NOTIFY_IFC_CLOSE","features":[451]},{"name":"TC_NOTIFY_IFC_UP","features":[451]},{"name":"TC_NOTIFY_PARAM_CHANGED","features":[451]},{"name":"TC_SUPPORTED_INFO_BUFFER","features":[317,451]},{"name":"TcAddFilter","features":[303,451]},{"name":"TcAddFlow","features":[303,451,316]},{"name":"TcCloseInterface","features":[303,451]},{"name":"TcDeleteFilter","features":[303,451]},{"name":"TcDeleteFlow","features":[303,451]},{"name":"TcDeregisterClient","features":[303,451]},{"name":"TcEnumerateFlows","features":[303,451,316]},{"name":"TcEnumerateInterfaces","features":[303,317,451]},{"name":"TcGetFlowNameA","features":[303,451]},{"name":"TcGetFlowNameW","features":[303,451]},{"name":"TcModifyFlow","features":[303,451,316]},{"name":"TcOpenInterfaceA","features":[303,451]},{"name":"TcOpenInterfaceW","features":[303,451]},{"name":"TcQueryFlowA","features":[451]},{"name":"TcQueryFlowW","features":[451]},{"name":"TcQueryInterface","features":[303,451]},{"name":"TcRegisterClient","features":[303,451]},{"name":"TcSetFlowA","features":[451]},{"name":"TcSetFlowW","features":[451]},{"name":"TcSetInterface","features":[303,451]},{"name":"UNSUPPORTED_CREDENTIAL_TYPE","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_256","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_384","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_512","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_1","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_256","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_384","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_512","features":[451]},{"name":"WBCL_DIGEST_ALG_BITMAP_SM3_256","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_256","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_384","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_512","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SHA_1","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_256","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_384","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_512","features":[451]},{"name":"WBCL_DIGEST_ALG_ID_SM3_256","features":[451]},{"name":"WBCL_HASH_LEN_SHA1","features":[451]},{"name":"WBCL_Iterator","features":[451]},{"name":"WBCL_LogHdr","features":[451]},{"name":"WBCL_MAX_HSP_UPGRADE_HASH_LEN","features":[451]},{"name":"class_ADSPEC","features":[451]},{"name":"class_CONFIRM","features":[451]},{"name":"class_ERROR_SPEC","features":[451]},{"name":"class_FILTER_SPEC","features":[451]},{"name":"class_FLOWSPEC","features":[451]},{"name":"class_INTEGRITY","features":[451]},{"name":"class_IS_FLOWSPEC","features":[451]},{"name":"class_MAX","features":[451]},{"name":"class_NULL","features":[451]},{"name":"class_POLICY_DATA","features":[451]},{"name":"class_RSVP_HOP","features":[451]},{"name":"class_SCOPE","features":[451]},{"name":"class_SENDER_TEMPLATE","features":[451]},{"name":"class_SENDER_TSPEC","features":[451]},{"name":"class_SESSION","features":[451]},{"name":"class_SESSION_GROUP","features":[451]},{"name":"class_STYLE","features":[451]},{"name":"class_TIME_VALUES","features":[451]},{"name":"ctype_ADSPEC_INTSERV","features":[451]},{"name":"ctype_ERROR_SPEC_ipv4","features":[451]},{"name":"ctype_FILTER_SPEC_ipv4","features":[451]},{"name":"ctype_FILTER_SPEC_ipv4GPI","features":[451]},{"name":"ctype_FLOWSPEC_Intserv0","features":[451]},{"name":"ctype_POLICY_DATA","features":[451]},{"name":"ctype_RSVP_HOP_ipv4","features":[451]},{"name":"ctype_SCOPE_list_ipv4","features":[451]},{"name":"ctype_SENDER_TEMPLATE_ipv4","features":[451]},{"name":"ctype_SENDER_TEMPLATE_ipv4GPI","features":[451]},{"name":"ctype_SENDER_TSPEC","features":[451]},{"name":"ctype_SESSION_ipv4","features":[451]},{"name":"ctype_SESSION_ipv4GPI","features":[451]},{"name":"ctype_STYLE","features":[451]},{"name":"int_serv_wkp","features":[451]},{"name":"ioctl_code","features":[451]},{"name":"mCOMPANY","features":[451]},{"name":"mIOC_IN","features":[451]},{"name":"mIOC_OUT","features":[451]},{"name":"mIOC_VENDOR","features":[451]}],"457":[{"name":"ALLOW_NO_AUTH","features":[452]},{"name":"ALL_SOURCES","features":[452]},{"name":"ANY_SOURCE","features":[452]},{"name":"ATADDRESSLEN","features":[452]},{"name":"AUTH_VALIDATION_EX","features":[303,452]},{"name":"DO_NOT_ALLOW_NO_AUTH","features":[452]},{"name":"ERROR_ACCESSING_TCPCFGDLL","features":[452]},{"name":"ERROR_ACCT_DISABLED","features":[452]},{"name":"ERROR_ACCT_EXPIRED","features":[452]},{"name":"ERROR_ACTION_REQUIRED","features":[452]},{"name":"ERROR_ALLOCATING_MEMORY","features":[452]},{"name":"ERROR_ALREADY_DISCONNECTING","features":[452]},{"name":"ERROR_ASYNC_REQUEST_PENDING","features":[452]},{"name":"ERROR_AUTHENTICATION_FAILURE","features":[452]},{"name":"ERROR_AUTH_INTERNAL","features":[452]},{"name":"ERROR_AUTOMATIC_VPN_FAILED","features":[452]},{"name":"ERROR_BAD_ADDRESS_SPECIFIED","features":[452]},{"name":"ERROR_BAD_CALLBACK_NUMBER","features":[452]},{"name":"ERROR_BAD_PHONE_NUMBER","features":[452]},{"name":"ERROR_BAD_STRING","features":[452]},{"name":"ERROR_BAD_USAGE_IN_INI_FILE","features":[452]},{"name":"ERROR_BIPLEX_PORT_NOT_AVAILABLE","features":[452]},{"name":"ERROR_BLOCKED","features":[452]},{"name":"ERROR_BROADBAND_ACTIVE","features":[452]},{"name":"ERROR_BROADBAND_NO_NIC","features":[452]},{"name":"ERROR_BROADBAND_TIMEOUT","features":[452]},{"name":"ERROR_BUFFER_INVALID","features":[452]},{"name":"ERROR_BUFFER_TOO_SMALL","features":[452]},{"name":"ERROR_BUNDLE_NOT_FOUND","features":[452]},{"name":"ERROR_CANNOT_DELETE","features":[452]},{"name":"ERROR_CANNOT_DO_CUSTOMDIAL","features":[452]},{"name":"ERROR_CANNOT_FIND_PHONEBOOK_ENTRY","features":[452]},{"name":"ERROR_CANNOT_GET_LANA","features":[452]},{"name":"ERROR_CANNOT_INITIATE_MOBIKE_UPDATE","features":[452]},{"name":"ERROR_CANNOT_LOAD_PHONEBOOK","features":[452]},{"name":"ERROR_CANNOT_LOAD_STRING","features":[452]},{"name":"ERROR_CANNOT_OPEN_PHONEBOOK","features":[452]},{"name":"ERROR_CANNOT_PROJECT_CLIENT","features":[452]},{"name":"ERROR_CANNOT_SET_PORT_INFO","features":[452]},{"name":"ERROR_CANNOT_SHARE_CONNECTION","features":[452]},{"name":"ERROR_CANNOT_USE_LOGON_CREDENTIALS","features":[452]},{"name":"ERROR_CANNOT_WRITE_PHONEBOOK","features":[452]},{"name":"ERROR_CERT_FOR_ENCRYPTION_NOT_FOUND","features":[452]},{"name":"ERROR_CHANGING_PASSWORD","features":[452]},{"name":"ERROR_CMD_TOO_LONG","features":[452]},{"name":"ERROR_CONGESTION","features":[452]},{"name":"ERROR_CONNECTING_DEVICE_NOT_FOUND","features":[452]},{"name":"ERROR_CONNECTION_ALREADY_SHARED","features":[452]},{"name":"ERROR_CONNECTION_REJECT","features":[452]},{"name":"ERROR_CORRUPT_PHONEBOOK","features":[452]},{"name":"ERROR_DCB_NOT_FOUND","features":[452]},{"name":"ERROR_DEFAULTOFF_MACRO_NOT_FOUND","features":[452]},{"name":"ERROR_DEVICENAME_NOT_FOUND","features":[452]},{"name":"ERROR_DEVICENAME_TOO_LONG","features":[452]},{"name":"ERROR_DEVICETYPE_DOES_NOT_EXIST","features":[452]},{"name":"ERROR_DEVICE_COMPLIANCE","features":[452]},{"name":"ERROR_DEVICE_DOES_NOT_EXIST","features":[452]},{"name":"ERROR_DEVICE_NOT_READY","features":[452]},{"name":"ERROR_DIAL_ALREADY_IN_PROGRESS","features":[452]},{"name":"ERROR_DISCONNECTION","features":[452]},{"name":"ERROR_DNSNAME_NOT_RESOLVABLE","features":[452]},{"name":"ERROR_DONOTDISTURB","features":[452]},{"name":"ERROR_EAPTLS_CACHE_CREDENTIALS_INVALID","features":[452]},{"name":"ERROR_EAPTLS_PASSWD_INVALID","features":[452]},{"name":"ERROR_EAPTLS_SCARD_CACHE_CREDENTIALS_INVALID","features":[452]},{"name":"ERROR_EAP_METHOD_DOES_NOT_SUPPORT_SSO","features":[452]},{"name":"ERROR_EAP_METHOD_NOT_INSTALLED","features":[452]},{"name":"ERROR_EAP_METHOD_OPERATION_NOT_SUPPORTED","features":[452]},{"name":"ERROR_EAP_SERVER_CERT_EXPIRED","features":[452]},{"name":"ERROR_EAP_SERVER_CERT_INVALID","features":[452]},{"name":"ERROR_EAP_SERVER_CERT_OTHER_ERROR","features":[452]},{"name":"ERROR_EAP_SERVER_CERT_REVOKED","features":[452]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_INVALID","features":[452]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NAME_REQUIRED","features":[452]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NOT_FOUND","features":[452]},{"name":"ERROR_EAP_USER_CERT_EXPIRED","features":[452]},{"name":"ERROR_EAP_USER_CERT_INVALID","features":[452]},{"name":"ERROR_EAP_USER_CERT_OTHER_ERROR","features":[452]},{"name":"ERROR_EAP_USER_CERT_REVOKED","features":[452]},{"name":"ERROR_EAP_USER_ROOT_CERT_EXPIRED","features":[452]},{"name":"ERROR_EAP_USER_ROOT_CERT_INVALID","features":[452]},{"name":"ERROR_EAP_USER_ROOT_CERT_NOT_FOUND","features":[452]},{"name":"ERROR_EMPTY_INI_FILE","features":[452]},{"name":"ERROR_EVENT_INVALID","features":[452]},{"name":"ERROR_FAILED_CP_REQUIRED","features":[452]},{"name":"ERROR_FAILED_TO_ENCRYPT","features":[452]},{"name":"ERROR_FAST_USER_SWITCH","features":[452]},{"name":"ERROR_FEATURE_DEPRECATED","features":[452]},{"name":"ERROR_FILE_COULD_NOT_BE_OPENED","features":[452]},{"name":"ERROR_FROM_DEVICE","features":[452]},{"name":"ERROR_HANGUP_FAILED","features":[452]},{"name":"ERROR_HARDWARE_FAILURE","features":[452]},{"name":"ERROR_HIBERNATION","features":[452]},{"name":"ERROR_IDLE_TIMEOUT","features":[452]},{"name":"ERROR_IKEV2_PSK_INTERFACE_ALREADY_EXISTS","features":[452]},{"name":"ERROR_INCOMPATIBLE","features":[452]},{"name":"ERROR_INTERACTIVE_MODE","features":[452]},{"name":"ERROR_INTERNAL_ADDRESS_FAILURE","features":[452]},{"name":"ERROR_INVALID_AUTH_STATE","features":[452]},{"name":"ERROR_INVALID_CALLBACK_NUMBER","features":[452]},{"name":"ERROR_INVALID_COMPRESSION_SPECIFIED","features":[452]},{"name":"ERROR_INVALID_DESTINATION_IP","features":[452]},{"name":"ERROR_INVALID_FUNCTION_FOR_ENTRY","features":[452]},{"name":"ERROR_INVALID_INTERFACE_CONFIG","features":[452]},{"name":"ERROR_INVALID_MSCHAPV2_CONFIG","features":[452]},{"name":"ERROR_INVALID_PEAP_COOKIE_ATTRIBUTES","features":[452]},{"name":"ERROR_INVALID_PEAP_COOKIE_CONFIG","features":[452]},{"name":"ERROR_INVALID_PEAP_COOKIE_USER","features":[452]},{"name":"ERROR_INVALID_PORT_HANDLE","features":[452]},{"name":"ERROR_INVALID_PREFERENCES","features":[452]},{"name":"ERROR_INVALID_SERVER_CERT","features":[452]},{"name":"ERROR_INVALID_SIZE","features":[452]},{"name":"ERROR_INVALID_SMM","features":[452]},{"name":"ERROR_INVALID_TUNNELID","features":[452]},{"name":"ERROR_INVALID_VPNSTRATEGY","features":[452]},{"name":"ERROR_IN_COMMAND","features":[452]},{"name":"ERROR_IPSEC_SERVICE_STOPPED","features":[452]},{"name":"ERROR_IPXCP_DIALOUT_ALREADY_ACTIVE","features":[452]},{"name":"ERROR_IPXCP_NET_NUMBER_CONFLICT","features":[452]},{"name":"ERROR_IPXCP_NO_DIALIN_CONFIGURED","features":[452]},{"name":"ERROR_IPXCP_NO_DIALOUT_CONFIGURED","features":[452]},{"name":"ERROR_IP_CONFIGURATION","features":[452]},{"name":"ERROR_KEY_NOT_FOUND","features":[452]},{"name":"ERROR_LINE_BUSY","features":[452]},{"name":"ERROR_LINK_FAILURE","features":[452]},{"name":"ERROR_MACRO_NOT_DEFINED","features":[452]},{"name":"ERROR_MACRO_NOT_FOUND","features":[452]},{"name":"ERROR_MESSAGE_MACRO_NOT_FOUND","features":[452]},{"name":"ERROR_MOBIKE_DISABLED","features":[452]},{"name":"ERROR_NAME_EXISTS_ON_NET","features":[452]},{"name":"ERROR_NETBIOS_ERROR","features":[452]},{"name":"ERROR_NOT_BINARY_MACRO","features":[452]},{"name":"ERROR_NOT_NAP_CAPABLE","features":[452]},{"name":"ERROR_NO_ACTIVE_ISDN_LINES","features":[452]},{"name":"ERROR_NO_ANSWER","features":[452]},{"name":"ERROR_NO_CARRIER","features":[452]},{"name":"ERROR_NO_CERTIFICATE","features":[452]},{"name":"ERROR_NO_COMMAND_FOUND","features":[452]},{"name":"ERROR_NO_CONNECTION","features":[452]},{"name":"ERROR_NO_DIALIN_PERMISSION","features":[452]},{"name":"ERROR_NO_DIALTONE","features":[452]},{"name":"ERROR_NO_DIFF_USER_AT_LOGON","features":[452]},{"name":"ERROR_NO_EAPTLS_CERTIFICATE","features":[452]},{"name":"ERROR_NO_ENDPOINTS","features":[452]},{"name":"ERROR_NO_IP_ADDRESSES","features":[452]},{"name":"ERROR_NO_IP_RAS_ADAPTER","features":[452]},{"name":"ERROR_NO_ISDN_CHANNELS_AVAILABLE","features":[452]},{"name":"ERROR_NO_LOCAL_ENCRYPTION","features":[452]},{"name":"ERROR_NO_MAC_FOR_PORT","features":[452]},{"name":"ERROR_NO_REG_CERT_AT_LOGON","features":[452]},{"name":"ERROR_NO_REMOTE_ENCRYPTION","features":[452]},{"name":"ERROR_NO_RESPONSES","features":[452]},{"name":"ERROR_NO_SMART_CARD_READER","features":[452]},{"name":"ERROR_NUMBERCHANGED","features":[452]},{"name":"ERROR_OAKLEY_ATTRIB_FAIL","features":[452]},{"name":"ERROR_OAKLEY_AUTH_FAIL","features":[452]},{"name":"ERROR_OAKLEY_ERROR","features":[452]},{"name":"ERROR_OAKLEY_GENERAL_PROCESSING","features":[452]},{"name":"ERROR_OAKLEY_NO_CERT","features":[452]},{"name":"ERROR_OAKLEY_NO_PEER_CERT","features":[452]},{"name":"ERROR_OAKLEY_NO_POLICY","features":[452]},{"name":"ERROR_OAKLEY_TIMED_OUT","features":[452]},{"name":"ERROR_OUTOFORDER","features":[452]},{"name":"ERROR_OUT_OF_BUFFERS","features":[452]},{"name":"ERROR_OVERRUN","features":[452]},{"name":"ERROR_PARTIAL_RESPONSE_LOOPING","features":[452]},{"name":"ERROR_PASSWD_EXPIRED","features":[452]},{"name":"ERROR_PEAP_CRYPTOBINDING_INVALID","features":[452]},{"name":"ERROR_PEAP_CRYPTOBINDING_NOTRECEIVED","features":[452]},{"name":"ERROR_PEAP_IDENTITY_MISMATCH","features":[452]},{"name":"ERROR_PEAP_SERVER_REJECTED_CLIENT_TLV","features":[452]},{"name":"ERROR_PHONE_NUMBER_TOO_LONG","features":[452]},{"name":"ERROR_PLUGIN_NOT_INSTALLED","features":[452]},{"name":"ERROR_PORT_ALREADY_OPEN","features":[452]},{"name":"ERROR_PORT_DISCONNECTED","features":[452]},{"name":"ERROR_PORT_NOT_AVAILABLE","features":[452]},{"name":"ERROR_PORT_NOT_CONFIGURED","features":[452]},{"name":"ERROR_PORT_NOT_CONNECTED","features":[452]},{"name":"ERROR_PORT_NOT_FOUND","features":[452]},{"name":"ERROR_PORT_NOT_OPEN","features":[452]},{"name":"ERROR_PORT_OR_DEVICE","features":[452]},{"name":"ERROR_PPP_CP_REJECTED","features":[452]},{"name":"ERROR_PPP_INVALID_PACKET","features":[452]},{"name":"ERROR_PPP_LCP_TERMINATED","features":[452]},{"name":"ERROR_PPP_LOOPBACK_DETECTED","features":[452]},{"name":"ERROR_PPP_NCP_TERMINATED","features":[452]},{"name":"ERROR_PPP_NOT_CONVERGING","features":[452]},{"name":"ERROR_PPP_NO_ADDRESS_ASSIGNED","features":[452]},{"name":"ERROR_PPP_NO_PROTOCOLS_CONFIGURED","features":[452]},{"name":"ERROR_PPP_NO_RESPONSE","features":[452]},{"name":"ERROR_PPP_REMOTE_TERMINATED","features":[452]},{"name":"ERROR_PPP_REQUIRED_ADDRESS_REJECTED","features":[452]},{"name":"ERROR_PPP_TIMEOUT","features":[452]},{"name":"ERROR_PROJECTION_NOT_COMPLETE","features":[452]},{"name":"ERROR_PROTOCOL_ENGINE_DISABLED","features":[452]},{"name":"ERROR_PROTOCOL_NOT_CONFIGURED","features":[452]},{"name":"ERROR_RASAUTO_CANNOT_INITIALIZE","features":[452]},{"name":"ERROR_RASMAN_CANNOT_INITIALIZE","features":[452]},{"name":"ERROR_RASMAN_SERVICE_STOPPED","features":[452]},{"name":"ERROR_RASQEC_CONN_DOESNOTEXIST","features":[452]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_CONNECTED","features":[452]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_ENABLED","features":[452]},{"name":"ERROR_RASQEC_RESOURCE_CREATION_FAILED","features":[452]},{"name":"ERROR_RASQEC_TIMEOUT","features":[452]},{"name":"ERROR_READING_DEFAULTOFF","features":[452]},{"name":"ERROR_READING_DEVICENAME","features":[452]},{"name":"ERROR_READING_DEVICETYPE","features":[452]},{"name":"ERROR_READING_INI_FILE","features":[452]},{"name":"ERROR_READING_MAXCARRIERBPS","features":[452]},{"name":"ERROR_READING_MAXCONNECTBPS","features":[452]},{"name":"ERROR_READING_SCARD","features":[452]},{"name":"ERROR_READING_SECTIONNAME","features":[452]},{"name":"ERROR_READING_USAGE","features":[452]},{"name":"ERROR_RECV_BUF_FULL","features":[452]},{"name":"ERROR_REMOTE_DISCONNECTION","features":[452]},{"name":"ERROR_REMOTE_REQUIRES_ENCRYPTION","features":[452]},{"name":"ERROR_REQUEST_TIMEOUT","features":[452]},{"name":"ERROR_RESTRICTED_LOGON_HOURS","features":[452]},{"name":"ERROR_ROUTE_NOT_ALLOCATED","features":[452]},{"name":"ERROR_ROUTE_NOT_AVAILABLE","features":[452]},{"name":"ERROR_SCRIPT_SYNTAX","features":[452]},{"name":"ERROR_SERVER_GENERAL_NET_FAILURE","features":[452]},{"name":"ERROR_SERVER_NOT_RESPONDING","features":[452]},{"name":"ERROR_SERVER_OUT_OF_RESOURCES","features":[452]},{"name":"ERROR_SERVER_POLICY","features":[452]},{"name":"ERROR_SHARE_CONNECTION_FAILED","features":[452]},{"name":"ERROR_SHARING_ADDRESS_EXISTS","features":[452]},{"name":"ERROR_SHARING_CHANGE_FAILED","features":[452]},{"name":"ERROR_SHARING_HOST_ADDRESS_CONFLICT","features":[452]},{"name":"ERROR_SHARING_MULTIPLE_ADDRESSES","features":[452]},{"name":"ERROR_SHARING_NO_PRIVATE_LAN","features":[452]},{"name":"ERROR_SHARING_PRIVATE_INSTALL","features":[452]},{"name":"ERROR_SHARING_ROUTER_INSTALL","features":[452]},{"name":"ERROR_SHARING_RRAS_CONFLICT","features":[452]},{"name":"ERROR_SLIP_REQUIRES_IP","features":[452]},{"name":"ERROR_SMART_CARD_REQUIRED","features":[452]},{"name":"ERROR_SMM_TIMEOUT","features":[452]},{"name":"ERROR_SMM_UNINITIALIZED","features":[452]},{"name":"ERROR_SSO_CERT_MISSING","features":[452]},{"name":"ERROR_SSTP_COOKIE_SET_FAILURE","features":[452]},{"name":"ERROR_STATE_MACHINES_ALREADY_STARTED","features":[452]},{"name":"ERROR_STATE_MACHINES_NOT_STARTED","features":[452]},{"name":"ERROR_SYSTEM_SUSPENDED","features":[452]},{"name":"ERROR_TAPI_CONFIGURATION","features":[452]},{"name":"ERROR_TEMPFAILURE","features":[452]},{"name":"ERROR_TOO_MANY_LINE_ERRORS","features":[452]},{"name":"ERROR_TS_UNACCEPTABLE","features":[452]},{"name":"ERROR_UNABLE_TO_AUTHENTICATE_SERVER","features":[452]},{"name":"ERROR_UNEXPECTED_RESPONSE","features":[452]},{"name":"ERROR_UNKNOWN","features":[452]},{"name":"ERROR_UNKNOWN_DEVICE_TYPE","features":[452]},{"name":"ERROR_UNKNOWN_FRAMED_PROTOCOL","features":[452]},{"name":"ERROR_UNKNOWN_RESPONSE_KEY","features":[452]},{"name":"ERROR_UNKNOWN_SERVICE_TYPE","features":[452]},{"name":"ERROR_UNRECOGNIZED_RESPONSE","features":[452]},{"name":"ERROR_UNSUPPORTED_BPS","features":[452]},{"name":"ERROR_UPDATECONNECTION_REQUEST_IN_PROCESS","features":[452]},{"name":"ERROR_USER_DISCONNECTION","features":[452]},{"name":"ERROR_USER_LOGOFF","features":[452]},{"name":"ERROR_VALIDATING_SERVER_CERT","features":[452]},{"name":"ERROR_VOICE_ANSWER","features":[452]},{"name":"ERROR_VPN_BAD_CERT","features":[452]},{"name":"ERROR_VPN_BAD_PSK","features":[452]},{"name":"ERROR_VPN_DISCONNECT","features":[452]},{"name":"ERROR_VPN_GRE_BLOCKED","features":[452]},{"name":"ERROR_VPN_PLUGIN_GENERIC","features":[452]},{"name":"ERROR_VPN_REFUSED","features":[452]},{"name":"ERROR_VPN_TIMEOUT","features":[452]},{"name":"ERROR_WRITING_DEFAULTOFF","features":[452]},{"name":"ERROR_WRITING_DEVICENAME","features":[452]},{"name":"ERROR_WRITING_DEVICETYPE","features":[452]},{"name":"ERROR_WRITING_INITBPS","features":[452]},{"name":"ERROR_WRITING_MAXCARRIERBPS","features":[452]},{"name":"ERROR_WRITING_MAXCONNECTBPS","features":[452]},{"name":"ERROR_WRITING_SECTIONNAME","features":[452]},{"name":"ERROR_WRITING_USAGE","features":[452]},{"name":"ERROR_WRONG_DEVICE_ATTACHED","features":[452]},{"name":"ERROR_WRONG_INFO_SPECIFIED","features":[452]},{"name":"ERROR_WRONG_KEY_SPECIFIED","features":[452]},{"name":"ERROR_WRONG_MODULE","features":[452]},{"name":"ERROR_WRONG_TUNNEL_TYPE","features":[452]},{"name":"ERROR_X25_DIAGNOSTIC","features":[452]},{"name":"ET_None","features":[452]},{"name":"ET_Optional","features":[452]},{"name":"ET_Require","features":[452]},{"name":"ET_RequireMax","features":[452]},{"name":"GRE_CONFIG_PARAMS0","features":[452]},{"name":"HRASCONN","features":[452]},{"name":"IKEV2_CONFIG_PARAMS","features":[303,452,387]},{"name":"IKEV2_ID_PAYLOAD_TYPE","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_DN","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_GN","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_FQDN","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_ID_IPV6_ADDR","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_INVALID","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_IPV4_ADDR","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_KEY_ID","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_MAX","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED1","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED2","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED3","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED4","features":[452]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RFC822_ADDR","features":[452]},{"name":"IKEV2_PROJECTION_INFO","features":[452]},{"name":"IKEV2_PROJECTION_INFO2","features":[452]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS2","features":[452,387]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS3","features":[303,452,387]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS4","features":[303,452,387]},{"name":"IPADDRESSLEN","features":[452]},{"name":"IPV6_ADDRESS_LEN_IN_BYTES","features":[452]},{"name":"IPXADDRESSLEN","features":[452]},{"name":"L2TP_CONFIG_PARAMS0","features":[452]},{"name":"L2TP_CONFIG_PARAMS1","features":[452]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS1","features":[452]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS2","features":[452]},{"name":"MAXIPADRESSLEN","features":[452]},{"name":"MAX_SSTP_HASH_SIZE","features":[452]},{"name":"METHOD_BGP4_AS_PATH","features":[452]},{"name":"METHOD_BGP4_NEXTHOP_ATTR","features":[452]},{"name":"METHOD_BGP4_PA_ORIGIN","features":[452]},{"name":"METHOD_BGP4_PEER_ID","features":[452]},{"name":"METHOD_RIP2_NEIGHBOUR_ADDR","features":[452]},{"name":"METHOD_RIP2_OUTBOUND_INTF","features":[452]},{"name":"METHOD_RIP2_ROUTE_TAG","features":[452]},{"name":"METHOD_RIP2_ROUTE_TIMESTAMP","features":[452]},{"name":"METHOD_TYPE_ALL_METHODS","features":[452]},{"name":"MGM_ENUM_TYPES","features":[452]},{"name":"MGM_FORWARD_STATE_FLAG","features":[452]},{"name":"MGM_IF_ENTRY","features":[303,452]},{"name":"MGM_JOIN_STATE_FLAG","features":[452]},{"name":"MGM_MFE_STATS_0","features":[452]},{"name":"MGM_MFE_STATS_1","features":[452]},{"name":"MPRAPI_ADMIN_DLL_CALLBACKS","features":[303,452,316]},{"name":"MPRAPI_ADMIN_DLL_VERSION_1","features":[452]},{"name":"MPRAPI_ADMIN_DLL_VERSION_2","features":[452]},{"name":"MPRAPI_IF_CUSTOM_CONFIG_FOR_IKEV2","features":[452]},{"name":"MPRAPI_IKEV2_AUTH_USING_CERT","features":[452]},{"name":"MPRAPI_IKEV2_AUTH_USING_EAP","features":[452]},{"name":"MPRAPI_IKEV2_PROJECTION_INFO_TYPE","features":[452]},{"name":"MPRAPI_IKEV2_SET_TUNNEL_CONFIG_PARAMS","features":[452]},{"name":"MPRAPI_L2TP_SET_TUNNEL_CONFIG_PARAMS","features":[452]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_1","features":[452]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_2","features":[452]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_3","features":[452]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_1","features":[452]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_2","features":[452]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_3","features":[452]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_4","features":[452]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_5","features":[452]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_1","features":[452]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_2","features":[452]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_3","features":[452]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_4","features":[452]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_5","features":[452]},{"name":"MPRAPI_OBJECT_HEADER","features":[452]},{"name":"MPRAPI_OBJECT_TYPE","features":[452]},{"name":"MPRAPI_OBJECT_TYPE_AUTH_VALIDATION_OBJECT","features":[452]},{"name":"MPRAPI_OBJECT_TYPE_IF_CUSTOM_CONFIG_OBJECT","features":[452]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_OBJECT","features":[452]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_SET_CONFIG_OBJECT","features":[452]},{"name":"MPRAPI_OBJECT_TYPE_RAS_CONNECTION_OBJECT","features":[452]},{"name":"MPRAPI_OBJECT_TYPE_UPDATE_CONNECTION_OBJECT","features":[452]},{"name":"MPRAPI_PPP_PROJECTION_INFO_TYPE","features":[452]},{"name":"MPRAPI_RAS_CONNECTION_OBJECT_REVISION_1","features":[452]},{"name":"MPRAPI_RAS_UPDATE_CONNECTION_OBJECT_REVISION_1","features":[452]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_GRE","features":[452]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_IKEV2","features":[452]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_L2TP","features":[452]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_PPTP","features":[452]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_SSTP","features":[452]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS0","features":[303,452,387]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS1","features":[303,452,387]},{"name":"MPRDM_DialAll","features":[452]},{"name":"MPRDM_DialAsNeeded","features":[452]},{"name":"MPRDM_DialFirst","features":[452]},{"name":"MPRDT_Atm","features":[452]},{"name":"MPRDT_FrameRelay","features":[452]},{"name":"MPRDT_Generic","features":[452]},{"name":"MPRDT_Irda","features":[452]},{"name":"MPRDT_Isdn","features":[452]},{"name":"MPRDT_Modem","features":[452]},{"name":"MPRDT_Pad","features":[452]},{"name":"MPRDT_Parallel","features":[452]},{"name":"MPRDT_SW56","features":[452]},{"name":"MPRDT_Serial","features":[452]},{"name":"MPRDT_Sonet","features":[452]},{"name":"MPRDT_Vpn","features":[452]},{"name":"MPRDT_X25","features":[452]},{"name":"MPRET_Direct","features":[452]},{"name":"MPRET_Phone","features":[452]},{"name":"MPRET_Vpn","features":[452]},{"name":"MPRIDS_Disabled","features":[452]},{"name":"MPRIDS_UseGlobalValue","features":[452]},{"name":"MPRIO_DisableLcpExtensions","features":[452]},{"name":"MPRIO_IpHeaderCompression","features":[452]},{"name":"MPRIO_IpSecPreSharedKey","features":[452]},{"name":"MPRIO_NetworkLogon","features":[452]},{"name":"MPRIO_PromoteAlternates","features":[452]},{"name":"MPRIO_RemoteDefaultGateway","features":[452]},{"name":"MPRIO_RequireCHAP","features":[452]},{"name":"MPRIO_RequireDataEncryption","features":[452]},{"name":"MPRIO_RequireEAP","features":[452]},{"name":"MPRIO_RequireEncryptedPw","features":[452]},{"name":"MPRIO_RequireMachineCertificates","features":[452]},{"name":"MPRIO_RequireMsCHAP","features":[452]},{"name":"MPRIO_RequireMsCHAP2","features":[452]},{"name":"MPRIO_RequireMsEncryptedPw","features":[452]},{"name":"MPRIO_RequirePAP","features":[452]},{"name":"MPRIO_RequireSPAP","features":[452]},{"name":"MPRIO_SecureLocalFiles","features":[452]},{"name":"MPRIO_SharedPhoneNumbers","features":[452]},{"name":"MPRIO_SpecificIpAddr","features":[452]},{"name":"MPRIO_SpecificNameServers","features":[452]},{"name":"MPRIO_SwCompression","features":[452]},{"name":"MPRIO_UsePreSharedKeyForIkev2Initiator","features":[452]},{"name":"MPRIO_UsePreSharedKeyForIkev2Responder","features":[452]},{"name":"MPRNP_Ip","features":[452]},{"name":"MPRNP_Ipv6","features":[452]},{"name":"MPRNP_Ipx","features":[452]},{"name":"MPR_CERT_EKU","features":[303,452]},{"name":"MPR_CREDENTIALSEX_0","features":[452]},{"name":"MPR_CREDENTIALSEX_1","features":[452]},{"name":"MPR_DEVICE_0","features":[452]},{"name":"MPR_DEVICE_1","features":[452]},{"name":"MPR_ENABLE_RAS_ON_DEVICE","features":[452]},{"name":"MPR_ENABLE_ROUTING_ON_DEVICE","features":[452]},{"name":"MPR_ET","features":[452]},{"name":"MPR_ET_None","features":[452]},{"name":"MPR_ET_Optional","features":[452]},{"name":"MPR_ET_Require","features":[452]},{"name":"MPR_ET_RequireMax","features":[452]},{"name":"MPR_FILTER_0","features":[303,452]},{"name":"MPR_IFTRANSPORT_0","features":[303,452]},{"name":"MPR_IF_CUSTOMINFOEX0","features":[452,387]},{"name":"MPR_IF_CUSTOMINFOEX1","features":[452,387]},{"name":"MPR_IF_CUSTOMINFOEX2","features":[452,316,387]},{"name":"MPR_INTERFACE_0","features":[303,452]},{"name":"MPR_INTERFACE_1","features":[303,452]},{"name":"MPR_INTERFACE_2","features":[303,452]},{"name":"MPR_INTERFACE_3","features":[303,452,316]},{"name":"MPR_INTERFACE_ADMIN_DISABLED","features":[452]},{"name":"MPR_INTERFACE_CONNECTION_FAILURE","features":[452]},{"name":"MPR_INTERFACE_DIALOUT_HOURS_RESTRICTION","features":[452]},{"name":"MPR_INTERFACE_DIAL_MODE","features":[452]},{"name":"MPR_INTERFACE_NO_DEVICE","features":[452]},{"name":"MPR_INTERFACE_NO_MEDIA_SENSE","features":[452]},{"name":"MPR_INTERFACE_OUT_OF_RESOURCES","features":[452]},{"name":"MPR_INTERFACE_SERVICE_PAUSED","features":[452]},{"name":"MPR_IPINIP_INTERFACE_0","features":[452]},{"name":"MPR_MaxAreaCode","features":[452]},{"name":"MPR_MaxCallbackNumber","features":[452]},{"name":"MPR_MaxDeviceName","features":[452]},{"name":"MPR_MaxDeviceType","features":[452]},{"name":"MPR_MaxEntryName","features":[452]},{"name":"MPR_MaxFacilities","features":[452]},{"name":"MPR_MaxIpAddress","features":[452]},{"name":"MPR_MaxIpxAddress","features":[452]},{"name":"MPR_MaxPadType","features":[452]},{"name":"MPR_MaxPhoneNumber","features":[452]},{"name":"MPR_MaxUserData","features":[452]},{"name":"MPR_MaxX25Address","features":[452]},{"name":"MPR_SERVER_0","features":[303,452]},{"name":"MPR_SERVER_1","features":[452]},{"name":"MPR_SERVER_2","features":[452]},{"name":"MPR_SERVER_EX0","features":[303,452,387]},{"name":"MPR_SERVER_EX1","features":[303,452,387]},{"name":"MPR_SERVER_SET_CONFIG_EX0","features":[303,452,387]},{"name":"MPR_SERVER_SET_CONFIG_EX1","features":[303,452,387]},{"name":"MPR_TRANSPORT_0","features":[303,452]},{"name":"MPR_VPN_TRAFFIC_SELECTOR","features":[452,316]},{"name":"MPR_VPN_TRAFFIC_SELECTORS","features":[452,316]},{"name":"MPR_VPN_TS_IPv4_ADDR_RANGE","features":[452]},{"name":"MPR_VPN_TS_IPv6_ADDR_RANGE","features":[452]},{"name":"MPR_VPN_TS_TYPE","features":[452]},{"name":"MPR_VS","features":[452]},{"name":"MPR_VS_Default","features":[452]},{"name":"MPR_VS_Ikev2First","features":[452]},{"name":"MPR_VS_Ikev2Only","features":[452]},{"name":"MPR_VS_L2tpFirst","features":[452]},{"name":"MPR_VS_L2tpOnly","features":[452]},{"name":"MPR_VS_PptpFirst","features":[452]},{"name":"MPR_VS_PptpOnly","features":[452]},{"name":"MgmAddGroupMembershipEntry","features":[303,452]},{"name":"MgmDeRegisterMProtocol","features":[303,452]},{"name":"MgmDeleteGroupMembershipEntry","features":[303,452]},{"name":"MgmGetFirstMfe","features":[452]},{"name":"MgmGetFirstMfeStats","features":[452]},{"name":"MgmGetMfe","features":[442,452]},{"name":"MgmGetMfeStats","features":[442,452]},{"name":"MgmGetNextMfe","features":[442,452]},{"name":"MgmGetNextMfeStats","features":[442,452]},{"name":"MgmGetProtocolOnInterface","features":[452]},{"name":"MgmGroupEnumerationEnd","features":[303,452]},{"name":"MgmGroupEnumerationGetNext","features":[303,452]},{"name":"MgmGroupEnumerationStart","features":[303,452]},{"name":"MgmRegisterMProtocol","features":[303,452]},{"name":"MgmReleaseInterfaceOwnership","features":[303,452]},{"name":"MgmTakeInterfaceOwnership","features":[303,452]},{"name":"MprAdminBufferFree","features":[452]},{"name":"MprAdminConnectionClearStats","features":[303,452]},{"name":"MprAdminConnectionEnum","features":[452]},{"name":"MprAdminConnectionEnumEx","features":[303,452]},{"name":"MprAdminConnectionGetInfo","features":[303,452]},{"name":"MprAdminConnectionGetInfoEx","features":[303,452]},{"name":"MprAdminConnectionRemoveQuarantine","features":[303,452]},{"name":"MprAdminDeregisterConnectionNotification","features":[303,452]},{"name":"MprAdminDeviceEnum","features":[452]},{"name":"MprAdminEstablishDomainRasServer","features":[303,452]},{"name":"MprAdminGetErrorString","features":[452]},{"name":"MprAdminGetPDCServer","features":[452]},{"name":"MprAdminInterfaceConnect","features":[303,452]},{"name":"MprAdminInterfaceCreate","features":[303,452]},{"name":"MprAdminInterfaceDelete","features":[303,452]},{"name":"MprAdminInterfaceDeviceGetInfo","features":[303,452]},{"name":"MprAdminInterfaceDeviceSetInfo","features":[303,452]},{"name":"MprAdminInterfaceDisconnect","features":[303,452]},{"name":"MprAdminInterfaceEnum","features":[452]},{"name":"MprAdminInterfaceGetCredentials","features":[452]},{"name":"MprAdminInterfaceGetCredentialsEx","features":[303,452]},{"name":"MprAdminInterfaceGetCustomInfoEx","features":[303,452,316,387]},{"name":"MprAdminInterfaceGetHandle","features":[303,452]},{"name":"MprAdminInterfaceGetInfo","features":[303,452]},{"name":"MprAdminInterfaceQueryUpdateResult","features":[303,452]},{"name":"MprAdminInterfaceSetCredentials","features":[452]},{"name":"MprAdminInterfaceSetCredentialsEx","features":[303,452]},{"name":"MprAdminInterfaceSetCustomInfoEx","features":[303,452,316,387]},{"name":"MprAdminInterfaceSetInfo","features":[303,452]},{"name":"MprAdminInterfaceTransportAdd","features":[303,452]},{"name":"MprAdminInterfaceTransportGetInfo","features":[303,452]},{"name":"MprAdminInterfaceTransportRemove","features":[303,452]},{"name":"MprAdminInterfaceTransportSetInfo","features":[303,452]},{"name":"MprAdminInterfaceUpdatePhonebookInfo","features":[303,452]},{"name":"MprAdminInterfaceUpdateRoutes","features":[303,452]},{"name":"MprAdminIsDomainRasServer","features":[303,452]},{"name":"MprAdminIsServiceInitialized","features":[303,452]},{"name":"MprAdminIsServiceRunning","features":[303,452]},{"name":"MprAdminMIBBufferFree","features":[452]},{"name":"MprAdminMIBEntryCreate","features":[452]},{"name":"MprAdminMIBEntryDelete","features":[452]},{"name":"MprAdminMIBEntryGet","features":[452]},{"name":"MprAdminMIBEntryGetFirst","features":[452]},{"name":"MprAdminMIBEntryGetNext","features":[452]},{"name":"MprAdminMIBEntrySet","features":[452]},{"name":"MprAdminMIBServerConnect","features":[452]},{"name":"MprAdminMIBServerDisconnect","features":[452]},{"name":"MprAdminPortClearStats","features":[303,452]},{"name":"MprAdminPortDisconnect","features":[303,452]},{"name":"MprAdminPortEnum","features":[303,452]},{"name":"MprAdminPortGetInfo","features":[303,452]},{"name":"MprAdminPortReset","features":[303,452]},{"name":"MprAdminRegisterConnectionNotification","features":[303,452]},{"name":"MprAdminSendUserMessage","features":[303,452]},{"name":"MprAdminServerConnect","features":[452]},{"name":"MprAdminServerDisconnect","features":[452]},{"name":"MprAdminServerGetCredentials","features":[452]},{"name":"MprAdminServerGetInfo","features":[452]},{"name":"MprAdminServerGetInfoEx","features":[303,452,387]},{"name":"MprAdminServerSetCredentials","features":[452]},{"name":"MprAdminServerSetInfo","features":[452]},{"name":"MprAdminServerSetInfoEx","features":[303,452,387]},{"name":"MprAdminTransportCreate","features":[452]},{"name":"MprAdminTransportGetInfo","features":[452]},{"name":"MprAdminTransportSetInfo","features":[452]},{"name":"MprAdminUpdateConnection","features":[303,452]},{"name":"MprAdminUserGetInfo","features":[452]},{"name":"MprAdminUserSetInfo","features":[452]},{"name":"MprConfigBufferFree","features":[452]},{"name":"MprConfigFilterGetInfo","features":[303,452]},{"name":"MprConfigFilterSetInfo","features":[303,452]},{"name":"MprConfigGetFriendlyName","features":[303,452]},{"name":"MprConfigGetGuidName","features":[303,452]},{"name":"MprConfigInterfaceCreate","features":[303,452]},{"name":"MprConfigInterfaceDelete","features":[303,452]},{"name":"MprConfigInterfaceEnum","features":[303,452]},{"name":"MprConfigInterfaceGetCustomInfoEx","features":[303,452,316,387]},{"name":"MprConfigInterfaceGetHandle","features":[303,452]},{"name":"MprConfigInterfaceGetInfo","features":[303,452]},{"name":"MprConfigInterfaceSetCustomInfoEx","features":[303,452,316,387]},{"name":"MprConfigInterfaceSetInfo","features":[303,452]},{"name":"MprConfigInterfaceTransportAdd","features":[303,452]},{"name":"MprConfigInterfaceTransportEnum","features":[303,452]},{"name":"MprConfigInterfaceTransportGetHandle","features":[303,452]},{"name":"MprConfigInterfaceTransportGetInfo","features":[303,452]},{"name":"MprConfigInterfaceTransportRemove","features":[303,452]},{"name":"MprConfigInterfaceTransportSetInfo","features":[303,452]},{"name":"MprConfigServerBackup","features":[303,452]},{"name":"MprConfigServerConnect","features":[303,452]},{"name":"MprConfigServerDisconnect","features":[303,452]},{"name":"MprConfigServerGetInfo","features":[303,452]},{"name":"MprConfigServerGetInfoEx","features":[303,452,387]},{"name":"MprConfigServerInstall","features":[452]},{"name":"MprConfigServerRefresh","features":[303,452]},{"name":"MprConfigServerRestore","features":[303,452]},{"name":"MprConfigServerSetInfo","features":[452]},{"name":"MprConfigServerSetInfoEx","features":[303,452,387]},{"name":"MprConfigTransportCreate","features":[303,452]},{"name":"MprConfigTransportDelete","features":[303,452]},{"name":"MprConfigTransportEnum","features":[303,452]},{"name":"MprConfigTransportGetHandle","features":[303,452]},{"name":"MprConfigTransportGetInfo","features":[303,452]},{"name":"MprConfigTransportSetInfo","features":[303,452]},{"name":"MprInfoBlockAdd","features":[452]},{"name":"MprInfoBlockFind","features":[452]},{"name":"MprInfoBlockQuerySize","features":[452]},{"name":"MprInfoBlockRemove","features":[452]},{"name":"MprInfoBlockSet","features":[452]},{"name":"MprInfoCreate","features":[452]},{"name":"MprInfoDelete","features":[452]},{"name":"MprInfoDuplicate","features":[452]},{"name":"MprInfoRemoveAll","features":[452]},{"name":"ORASADFUNC","features":[303,452]},{"name":"PENDING","features":[452]},{"name":"PFNRASFREEBUFFER","features":[452]},{"name":"PFNRASGETBUFFER","features":[452]},{"name":"PFNRASRECEIVEBUFFER","features":[303,452]},{"name":"PFNRASRETRIEVEBUFFER","features":[303,452]},{"name":"PFNRASSENDBUFFER","features":[303,452]},{"name":"PFNRASSETCOMMSETTINGS","features":[303,452]},{"name":"PID_ATALK","features":[452]},{"name":"PID_IP","features":[452]},{"name":"PID_IPV6","features":[452]},{"name":"PID_IPX","features":[452]},{"name":"PID_NBF","features":[452]},{"name":"PMGM_CREATION_ALERT_CALLBACK","features":[303,452]},{"name":"PMGM_DISABLE_IGMP_CALLBACK","features":[452]},{"name":"PMGM_ENABLE_IGMP_CALLBACK","features":[452]},{"name":"PMGM_JOIN_ALERT_CALLBACK","features":[303,452]},{"name":"PMGM_LOCAL_JOIN_CALLBACK","features":[452]},{"name":"PMGM_LOCAL_LEAVE_CALLBACK","features":[452]},{"name":"PMGM_PRUNE_ALERT_CALLBACK","features":[303,452]},{"name":"PMGM_RPF_CALLBACK","features":[452]},{"name":"PMGM_WRONG_IF_CALLBACK","features":[452]},{"name":"PMPRADMINACCEPTNEWCONNECTION","features":[303,452]},{"name":"PMPRADMINACCEPTNEWCONNECTION2","features":[303,452]},{"name":"PMPRADMINACCEPTNEWCONNECTION3","features":[303,452]},{"name":"PMPRADMINACCEPTNEWCONNECTIONEX","features":[303,452]},{"name":"PMPRADMINACCEPTNEWLINK","features":[303,452]},{"name":"PMPRADMINACCEPTREAUTHENTICATION","features":[303,452]},{"name":"PMPRADMINACCEPTREAUTHENTICATIONEX","features":[303,452]},{"name":"PMPRADMINACCEPTTUNNELENDPOINTCHANGEEX","features":[303,452]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION","features":[303,452]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION2","features":[303,452]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION3","features":[303,452]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATIONEX","features":[303,452]},{"name":"PMPRADMINGETIPADDRESSFORUSER","features":[303,452]},{"name":"PMPRADMINGETIPV6ADDRESSFORUSER","features":[303,452,316]},{"name":"PMPRADMINLINKHANGUPNOTIFICATION","features":[303,452]},{"name":"PMPRADMINRASVALIDATEPREAUTHENTICATEDCONNECTIONEX","features":[303,452]},{"name":"PMPRADMINRELEASEIPADRESS","features":[452]},{"name":"PMPRADMINRELEASEIPV6ADDRESSFORUSER","features":[452,316]},{"name":"PMPRADMINTERMINATEDLL","features":[452]},{"name":"PPP_ATCP_INFO","features":[452]},{"name":"PPP_CCP_COMPRESSION","features":[452]},{"name":"PPP_CCP_ENCRYPTION128BIT","features":[452]},{"name":"PPP_CCP_ENCRYPTION40BIT","features":[452]},{"name":"PPP_CCP_ENCRYPTION40BITOLD","features":[452]},{"name":"PPP_CCP_ENCRYPTION56BIT","features":[452]},{"name":"PPP_CCP_HISTORYLESS","features":[452]},{"name":"PPP_CCP_INFO","features":[452]},{"name":"PPP_INFO","features":[452]},{"name":"PPP_INFO_2","features":[452]},{"name":"PPP_INFO_3","features":[452]},{"name":"PPP_IPCP_INFO","features":[452]},{"name":"PPP_IPCP_INFO2","features":[452]},{"name":"PPP_IPCP_VJ","features":[452]},{"name":"PPP_IPV6_CP_INFO","features":[452]},{"name":"PPP_IPXCP_INFO","features":[452]},{"name":"PPP_LCP","features":[452]},{"name":"PPP_LCP_3_DES","features":[452]},{"name":"PPP_LCP_ACFC","features":[452]},{"name":"PPP_LCP_AES_128","features":[452]},{"name":"PPP_LCP_AES_192","features":[452]},{"name":"PPP_LCP_AES_256","features":[452]},{"name":"PPP_LCP_CHAP","features":[452]},{"name":"PPP_LCP_CHAP_MD5","features":[452]},{"name":"PPP_LCP_CHAP_MS","features":[452]},{"name":"PPP_LCP_CHAP_MSV2","features":[452]},{"name":"PPP_LCP_DES_56","features":[452]},{"name":"PPP_LCP_EAP","features":[452]},{"name":"PPP_LCP_GCM_AES_128","features":[452]},{"name":"PPP_LCP_GCM_AES_192","features":[452]},{"name":"PPP_LCP_GCM_AES_256","features":[452]},{"name":"PPP_LCP_INFO","features":[452]},{"name":"PPP_LCP_INFO_AUTH_DATA","features":[452]},{"name":"PPP_LCP_MULTILINK_FRAMING","features":[452]},{"name":"PPP_LCP_PAP","features":[452]},{"name":"PPP_LCP_PFC","features":[452]},{"name":"PPP_LCP_SPAP","features":[452]},{"name":"PPP_LCP_SSHF","features":[452]},{"name":"PPP_NBFCP_INFO","features":[452]},{"name":"PPP_PROJECTION_INFO","features":[452]},{"name":"PPP_PROJECTION_INFO2","features":[452]},{"name":"PPTP_CONFIG_PARAMS","features":[452]},{"name":"PROJECTION_INFO","features":[452]},{"name":"PROJECTION_INFO2","features":[452]},{"name":"PROJECTION_INFO_TYPE_IKEv2","features":[452]},{"name":"PROJECTION_INFO_TYPE_PPP","features":[452]},{"name":"RASADFLG_PositionDlg","features":[452]},{"name":"RASADFUNCA","features":[303,452]},{"name":"RASADFUNCW","features":[303,452]},{"name":"RASADPARAMS","features":[303,452]},{"name":"RASADP_ConnectionQueryTimeout","features":[452]},{"name":"RASADP_DisableConnectionQuery","features":[452]},{"name":"RASADP_FailedConnectionTimeout","features":[452]},{"name":"RASADP_LoginSessionDisable","features":[452]},{"name":"RASADP_SavedAddressesLimit","features":[452]},{"name":"RASAMBA","features":[452]},{"name":"RASAMBW","features":[452]},{"name":"RASAPIVERSION","features":[452]},{"name":"RASAPIVERSION_500","features":[452]},{"name":"RASAPIVERSION_501","features":[452]},{"name":"RASAPIVERSION_600","features":[452]},{"name":"RASAPIVERSION_601","features":[452]},{"name":"RASAUTODIALENTRYA","features":[452]},{"name":"RASAUTODIALENTRYW","features":[452]},{"name":"RASBASE","features":[452]},{"name":"RASBASEEND","features":[452]},{"name":"RASCCPCA_MPPC","features":[452]},{"name":"RASCCPCA_STAC","features":[452]},{"name":"RASCCPO_Compression","features":[452]},{"name":"RASCCPO_Encryption128bit","features":[452]},{"name":"RASCCPO_Encryption40bit","features":[452]},{"name":"RASCCPO_Encryption56bit","features":[452]},{"name":"RASCCPO_HistoryLess","features":[452]},{"name":"RASCF_AllUsers","features":[452]},{"name":"RASCF_GlobalCreds","features":[452]},{"name":"RASCF_OwnerKnown","features":[452]},{"name":"RASCF_OwnerMatch","features":[452]},{"name":"RASCM_DDMPreSharedKey","features":[452]},{"name":"RASCM_DefaultCreds","features":[452]},{"name":"RASCM_Domain","features":[452]},{"name":"RASCM_Password","features":[452]},{"name":"RASCM_PreSharedKey","features":[452]},{"name":"RASCM_ServerPreSharedKey","features":[452]},{"name":"RASCM_UserName","features":[452]},{"name":"RASCN_BandwidthAdded","features":[452]},{"name":"RASCN_BandwidthRemoved","features":[452]},{"name":"RASCN_Connection","features":[452]},{"name":"RASCN_Disconnection","features":[452]},{"name":"RASCN_Dormant","features":[452]},{"name":"RASCN_EPDGPacketArrival","features":[452]},{"name":"RASCN_ReConnection","features":[452]},{"name":"RASCOMMSETTINGS","features":[452]},{"name":"RASCONNA","features":[303,452]},{"name":"RASCONNA","features":[303,452]},{"name":"RASCONNSTATE","features":[452]},{"name":"RASCONNSTATUSA","features":[452,316]},{"name":"RASCONNSTATUSW","features":[452,316]},{"name":"RASCONNSUBSTATE","features":[452]},{"name":"RASCONNW","features":[303,452]},{"name":"RASCONNW","features":[303,452]},{"name":"RASCREDENTIALSA","features":[452]},{"name":"RASCREDENTIALSW","features":[452]},{"name":"RASCSS_DONE","features":[452]},{"name":"RASCSS_Dormant","features":[452]},{"name":"RASCSS_None","features":[452]},{"name":"RASCSS_Reconnected","features":[452]},{"name":"RASCSS_Reconnecting","features":[452]},{"name":"RASCS_AllDevicesConnected","features":[452]},{"name":"RASCS_ApplySettings","features":[452]},{"name":"RASCS_AuthAck","features":[452]},{"name":"RASCS_AuthCallback","features":[452]},{"name":"RASCS_AuthChangePassword","features":[452]},{"name":"RASCS_AuthLinkSpeed","features":[452]},{"name":"RASCS_AuthNotify","features":[452]},{"name":"RASCS_AuthProject","features":[452]},{"name":"RASCS_AuthRetry","features":[452]},{"name":"RASCS_Authenticate","features":[452]},{"name":"RASCS_Authenticated","features":[452]},{"name":"RASCS_CallbackComplete","features":[452]},{"name":"RASCS_CallbackSetByCaller","features":[452]},{"name":"RASCS_ConnectDevice","features":[452]},{"name":"RASCS_Connected","features":[452]},{"name":"RASCS_DONE","features":[452]},{"name":"RASCS_DeviceConnected","features":[452]},{"name":"RASCS_Disconnected","features":[452]},{"name":"RASCS_Interactive","features":[452]},{"name":"RASCS_InvokeEapUI","features":[452]},{"name":"RASCS_LogonNetwork","features":[452]},{"name":"RASCS_OpenPort","features":[452]},{"name":"RASCS_PAUSED","features":[452]},{"name":"RASCS_PasswordExpired","features":[452]},{"name":"RASCS_PortOpened","features":[452]},{"name":"RASCS_PrepareForCallback","features":[452]},{"name":"RASCS_Projected","features":[452]},{"name":"RASCS_ReAuthenticate","features":[452]},{"name":"RASCS_RetryAuthentication","features":[452]},{"name":"RASCS_StartAuthentication","features":[452]},{"name":"RASCS_SubEntryConnected","features":[452]},{"name":"RASCS_SubEntryDisconnected","features":[452]},{"name":"RASCS_WaitForCallback","features":[452]},{"name":"RASCS_WaitForModemReset","features":[452]},{"name":"RASCTRYINFO","features":[452]},{"name":"RASCUSTOMSCRIPTEXTENSIONS","features":[303,452]},{"name":"RASDDFLAG_AoacRedial","features":[452]},{"name":"RASDDFLAG_LinkFailure","features":[452]},{"name":"RASDDFLAG_NoPrompt","features":[452]},{"name":"RASDDFLAG_PositionDlg","features":[452]},{"name":"RASDEVINFOA","features":[452]},{"name":"RASDEVINFOW","features":[452]},{"name":"RASDEVSPECIFICINFO","features":[452]},{"name":"RASDEVSPECIFICINFO","features":[452]},{"name":"RASDIALDLG","features":[303,452]},{"name":"RASDIALEVENT","features":[452]},{"name":"RASDIALEXTENSIONS","features":[303,452]},{"name":"RASDIALFUNC","features":[452]},{"name":"RASDIALFUNC1","features":[452]},{"name":"RASDIALFUNC2","features":[452]},{"name":"RASDIALPARAMSA","features":[452]},{"name":"RASDIALPARAMSA","features":[452]},{"name":"RASDIALPARAMSW","features":[452]},{"name":"RASDIALPARAMSW","features":[452]},{"name":"RASDT_Atm","features":[452]},{"name":"RASDT_FrameRelay","features":[452]},{"name":"RASDT_Generic","features":[452]},{"name":"RASDT_Irda","features":[452]},{"name":"RASDT_Isdn","features":[452]},{"name":"RASDT_Modem","features":[452]},{"name":"RASDT_PPPoE","features":[452]},{"name":"RASDT_Pad","features":[452]},{"name":"RASDT_Parallel","features":[452]},{"name":"RASDT_SW56","features":[452]},{"name":"RASDT_Serial","features":[452]},{"name":"RASDT_Sonet","features":[452]},{"name":"RASDT_Vpn","features":[452]},{"name":"RASDT_X25","features":[452]},{"name":"RASEAPF_Logon","features":[452]},{"name":"RASEAPF_NonInteractive","features":[452]},{"name":"RASEAPF_Preview","features":[452]},{"name":"RASEAPINFO","features":[452]},{"name":"RASEAPUSERIDENTITYA","features":[452]},{"name":"RASEAPUSERIDENTITYW","features":[452]},{"name":"RASEDFLAG_CloneEntry","features":[452]},{"name":"RASEDFLAG_IncomingConnection","features":[452]},{"name":"RASEDFLAG_InternetEntry","features":[452]},{"name":"RASEDFLAG_NAT","features":[452]},{"name":"RASEDFLAG_NewBroadbandEntry","features":[452]},{"name":"RASEDFLAG_NewDirectEntry","features":[452]},{"name":"RASEDFLAG_NewEntry","features":[452]},{"name":"RASEDFLAG_NewPhoneEntry","features":[452]},{"name":"RASEDFLAG_NewTunnelEntry","features":[452]},{"name":"RASEDFLAG_NoRename","features":[452]},{"name":"RASEDFLAG_PositionDlg","features":[452]},{"name":"RASEDFLAG_ShellOwned","features":[452]},{"name":"RASEDM_DialAll","features":[452]},{"name":"RASEDM_DialAsNeeded","features":[452]},{"name":"RASENTRYA","features":[303,452,316]},{"name":"RASENTRYDLGA","features":[303,452]},{"name":"RASENTRYDLGA","features":[303,452]},{"name":"RASENTRYDLGW","features":[303,452]},{"name":"RASENTRYDLGW","features":[303,452]},{"name":"RASENTRYNAMEA","features":[452]},{"name":"RASENTRYNAMEW","features":[452]},{"name":"RASENTRYW","features":[303,452,316]},{"name":"RASENTRY_DIAL_MODE","features":[452]},{"name":"RASEO2_AuthTypeIsOtp","features":[452]},{"name":"RASEO2_AutoTriggerCapable","features":[452]},{"name":"RASEO2_CacheCredentials","features":[452]},{"name":"RASEO2_DisableClassBasedStaticRoute","features":[452]},{"name":"RASEO2_DisableIKENameEkuCheck","features":[452]},{"name":"RASEO2_DisableMobility","features":[452]},{"name":"RASEO2_DisableNbtOverIP","features":[452]},{"name":"RASEO2_DontNegotiateMultilink","features":[452]},{"name":"RASEO2_DontUseRasCredentials","features":[452]},{"name":"RASEO2_IPv4ExplicitMetric","features":[452]},{"name":"RASEO2_IPv6ExplicitMetric","features":[452]},{"name":"RASEO2_IPv6RemoteDefaultGateway","features":[452]},{"name":"RASEO2_IPv6SpecificNameServers","features":[452]},{"name":"RASEO2_Internet","features":[452]},{"name":"RASEO2_IsAlwaysOn","features":[452]},{"name":"RASEO2_IsPrivateNetwork","features":[452]},{"name":"RASEO2_IsThirdPartyProfile","features":[452]},{"name":"RASEO2_PlumbIKEv2TSAsRoutes","features":[452]},{"name":"RASEO2_ReconnectIfDropped","features":[452]},{"name":"RASEO2_RegisterIpWithDNS","features":[452]},{"name":"RASEO2_RequireMachineCertificates","features":[452]},{"name":"RASEO2_SecureClientForMSNet","features":[452]},{"name":"RASEO2_SecureFileAndPrint","features":[452]},{"name":"RASEO2_SecureRoutingCompartment","features":[452]},{"name":"RASEO2_SharePhoneNumbers","features":[452]},{"name":"RASEO2_SpecificIPv6Addr","features":[452]},{"name":"RASEO2_UseDNSSuffixForRegistration","features":[452]},{"name":"RASEO2_UseGlobalDeviceSettings","features":[452]},{"name":"RASEO2_UsePreSharedKey","features":[452]},{"name":"RASEO2_UsePreSharedKeyForIkev2Initiator","features":[452]},{"name":"RASEO2_UsePreSharedKeyForIkev2Responder","features":[452]},{"name":"RASEO2_UseTypicalSettings","features":[452]},{"name":"RASEO_Custom","features":[452]},{"name":"RASEO_CustomScript","features":[452]},{"name":"RASEO_DisableLcpExtensions","features":[452]},{"name":"RASEO_IpHeaderCompression","features":[452]},{"name":"RASEO_ModemLights","features":[452]},{"name":"RASEO_NetworkLogon","features":[452]},{"name":"RASEO_PreviewDomain","features":[452]},{"name":"RASEO_PreviewPhoneNumber","features":[452]},{"name":"RASEO_PreviewUserPw","features":[452]},{"name":"RASEO_PromoteAlternates","features":[452]},{"name":"RASEO_RemoteDefaultGateway","features":[452]},{"name":"RASEO_RequireCHAP","features":[452]},{"name":"RASEO_RequireDataEncryption","features":[452]},{"name":"RASEO_RequireEAP","features":[452]},{"name":"RASEO_RequireEncryptedPw","features":[452]},{"name":"RASEO_RequireMsCHAP","features":[452]},{"name":"RASEO_RequireMsCHAP2","features":[452]},{"name":"RASEO_RequireMsEncryptedPw","features":[452]},{"name":"RASEO_RequirePAP","features":[452]},{"name":"RASEO_RequireSPAP","features":[452]},{"name":"RASEO_RequireW95MSCHAP","features":[452]},{"name":"RASEO_SecureLocalFiles","features":[452]},{"name":"RASEO_SharedPhoneNumbers","features":[452]},{"name":"RASEO_ShowDialingProgress","features":[452]},{"name":"RASEO_SpecificIpAddr","features":[452]},{"name":"RASEO_SpecificNameServers","features":[452]},{"name":"RASEO_SwCompression","features":[452]},{"name":"RASEO_TerminalAfterDial","features":[452]},{"name":"RASEO_TerminalBeforeDial","features":[452]},{"name":"RASEO_UseCountryAndAreaCodes","features":[452]},{"name":"RASEO_UseLogonCredentials","features":[452]},{"name":"RASET_Broadband","features":[452]},{"name":"RASET_Direct","features":[452]},{"name":"RASET_Internet","features":[452]},{"name":"RASET_Phone","features":[452]},{"name":"RASET_Vpn","features":[452]},{"name":"RASFP_Ppp","features":[452]},{"name":"RASFP_Ras","features":[452]},{"name":"RASFP_Slip","features":[452]},{"name":"RASIDS_Disabled","features":[452]},{"name":"RASIDS_UseGlobalValue","features":[452]},{"name":"RASIKEV2_PROJECTION_INFO","features":[452,316]},{"name":"RASIKEV2_PROJECTION_INFO","features":[452,316]},{"name":"RASIKEV_PROJECTION_INFO_FLAGS","features":[452]},{"name":"RASIKEv2_AUTH_EAP","features":[452]},{"name":"RASIKEv2_AUTH_MACHINECERTIFICATES","features":[452]},{"name":"RASIKEv2_AUTH_PSK","features":[452]},{"name":"RASIKEv2_FLAGS_BEHIND_NAT","features":[452]},{"name":"RASIKEv2_FLAGS_MOBIKESUPPORTED","features":[452]},{"name":"RASIKEv2_FLAGS_SERVERBEHIND_NAT","features":[452]},{"name":"RASIPADDR","features":[452]},{"name":"RASIPO_VJ","features":[452]},{"name":"RASIPXW","features":[452]},{"name":"RASLCPAD_CHAP_MD5","features":[452]},{"name":"RASLCPAD_CHAP_MS","features":[452]},{"name":"RASLCPAD_CHAP_MSV2","features":[452]},{"name":"RASLCPAP_CHAP","features":[452]},{"name":"RASLCPAP_EAP","features":[452]},{"name":"RASLCPAP_PAP","features":[452]},{"name":"RASLCPAP_SPAP","features":[452]},{"name":"RASLCPO_3_DES","features":[452]},{"name":"RASLCPO_ACFC","features":[452]},{"name":"RASLCPO_AES_128","features":[452]},{"name":"RASLCPO_AES_192","features":[452]},{"name":"RASLCPO_AES_256","features":[452]},{"name":"RASLCPO_DES_56","features":[452]},{"name":"RASLCPO_GCM_AES_128","features":[452]},{"name":"RASLCPO_GCM_AES_192","features":[452]},{"name":"RASLCPO_GCM_AES_256","features":[452]},{"name":"RASLCPO_PFC","features":[452]},{"name":"RASLCPO_SSHF","features":[452]},{"name":"RASNAP_ProbationTime","features":[452]},{"name":"RASNOUSERA","features":[452]},{"name":"RASNOUSERW","features":[452]},{"name":"RASNOUSER_SmartCard","features":[452]},{"name":"RASNP_Ip","features":[452]},{"name":"RASNP_Ipv6","features":[452]},{"name":"RASNP_Ipx","features":[452]},{"name":"RASNP_NetBEUI","features":[452]},{"name":"RASPBDEVENT_AddEntry","features":[452]},{"name":"RASPBDEVENT_DialEntry","features":[452]},{"name":"RASPBDEVENT_EditEntry","features":[452]},{"name":"RASPBDEVENT_EditGlobals","features":[452]},{"name":"RASPBDEVENT_NoUser","features":[452]},{"name":"RASPBDEVENT_NoUserEdit","features":[452]},{"name":"RASPBDEVENT_RemoveEntry","features":[452]},{"name":"RASPBDFLAG_ForceCloseOnDial","features":[452]},{"name":"RASPBDFLAG_NoUser","features":[452]},{"name":"RASPBDFLAG_PositionDlg","features":[452]},{"name":"RASPBDFLAG_UpdateDefaults","features":[452]},{"name":"RASPBDLGA","features":[303,452]},{"name":"RASPBDLGA","features":[303,452]},{"name":"RASPBDLGFUNCA","features":[452]},{"name":"RASPBDLGFUNCW","features":[452]},{"name":"RASPBDLGW","features":[303,452]},{"name":"RASPBDLGW","features":[303,452]},{"name":"RASPPPCCP","features":[452]},{"name":"RASPPPIPA","features":[452]},{"name":"RASPPPIPV6","features":[452]},{"name":"RASPPPIPW","features":[452]},{"name":"RASPPPIPXA","features":[452]},{"name":"RASPPPLCPA","features":[303,452]},{"name":"RASPPPLCPW","features":[303,452]},{"name":"RASPPPNBFA","features":[452]},{"name":"RASPPPNBFW","features":[452]},{"name":"RASPPP_PROJECTION_INFO","features":[303,452,316]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_DATA","features":[452]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_PROTOCOL","features":[452]},{"name":"RASPRIV2_DialinPolicy","features":[452]},{"name":"RASPRIV_AdminSetCallback","features":[452]},{"name":"RASPRIV_CallerSetCallback","features":[452]},{"name":"RASPRIV_DialinPrivilege","features":[452]},{"name":"RASPRIV_NoCallback","features":[452]},{"name":"RASPROJECTION","features":[452]},{"name":"RASPROJECTION_INFO_TYPE","features":[452]},{"name":"RASP_Amb","features":[452]},{"name":"RASP_PppCcp","features":[452]},{"name":"RASP_PppIp","features":[452]},{"name":"RASP_PppIpv6","features":[452]},{"name":"RASP_PppIpx","features":[452]},{"name":"RASP_PppLcp","features":[452]},{"name":"RASP_PppNbf","features":[452]},{"name":"RASSECURITYPROC","features":[452]},{"name":"RASSUBENTRYA","features":[452]},{"name":"RASSUBENTRYW","features":[452]},{"name":"RASTUNNELENDPOINT","features":[452,316]},{"name":"RASTUNNELENDPOINT_IPv4","features":[452]},{"name":"RASTUNNELENDPOINT_IPv6","features":[452]},{"name":"RASTUNNELENDPOINT_UNKNOWN","features":[452]},{"name":"RASUPDATECONN","features":[452,316]},{"name":"RAS_CONNECTION_0","features":[303,452]},{"name":"RAS_CONNECTION_1","features":[303,452]},{"name":"RAS_CONNECTION_2","features":[303,452]},{"name":"RAS_CONNECTION_3","features":[303,452]},{"name":"RAS_CONNECTION_4","features":[303,452]},{"name":"RAS_CONNECTION_EX","features":[303,452]},{"name":"RAS_FLAGS","features":[452]},{"name":"RAS_FLAGS_ARAP_CONNECTION","features":[452]},{"name":"RAS_FLAGS_DORMANT","features":[452]},{"name":"RAS_FLAGS_IKEV2_CONNECTION","features":[452]},{"name":"RAS_FLAGS_MESSENGER_PRESENT","features":[452]},{"name":"RAS_FLAGS_PPP_CONNECTION","features":[452]},{"name":"RAS_FLAGS_QUARANTINE_PRESENT","features":[452]},{"name":"RAS_FLAGS_RAS_CONNECTION","features":[452]},{"name":"RAS_HARDWARE_CONDITION","features":[452]},{"name":"RAS_HARDWARE_FAILURE","features":[452]},{"name":"RAS_HARDWARE_OPERATIONAL","features":[452]},{"name":"RAS_MaxAreaCode","features":[452]},{"name":"RAS_MaxCallbackNumber","features":[452]},{"name":"RAS_MaxDeviceName","features":[452]},{"name":"RAS_MaxDeviceType","features":[452]},{"name":"RAS_MaxDnsSuffix","features":[452]},{"name":"RAS_MaxEntryName","features":[452]},{"name":"RAS_MaxFacilities","features":[452]},{"name":"RAS_MaxIDSize","features":[452]},{"name":"RAS_MaxIpAddress","features":[452]},{"name":"RAS_MaxIpxAddress","features":[452]},{"name":"RAS_MaxPadType","features":[452]},{"name":"RAS_MaxPhoneNumber","features":[452]},{"name":"RAS_MaxReplyMessage","features":[452]},{"name":"RAS_MaxUserData","features":[452]},{"name":"RAS_MaxX25Address","features":[452]},{"name":"RAS_PORT_0","features":[303,452]},{"name":"RAS_PORT_1","features":[303,452]},{"name":"RAS_PORT_2","features":[303,452]},{"name":"RAS_PORT_AUTHENTICATED","features":[452]},{"name":"RAS_PORT_AUTHENTICATING","features":[452]},{"name":"RAS_PORT_CALLING_BACK","features":[452]},{"name":"RAS_PORT_CONDITION","features":[452]},{"name":"RAS_PORT_DISCONNECTED","features":[452]},{"name":"RAS_PORT_INITIALIZING","features":[452]},{"name":"RAS_PORT_LISTENING","features":[452]},{"name":"RAS_PORT_NON_OPERATIONAL","features":[452]},{"name":"RAS_PROJECTION_INFO","features":[303,452,316]},{"name":"RAS_QUARANTINE_STATE","features":[452]},{"name":"RAS_QUAR_STATE_NORMAL","features":[452]},{"name":"RAS_QUAR_STATE_NOT_CAPABLE","features":[452]},{"name":"RAS_QUAR_STATE_PROBATION","features":[452]},{"name":"RAS_QUAR_STATE_QUARANTINE","features":[452]},{"name":"RAS_SECURITY_INFO","features":[452]},{"name":"RAS_STATS","features":[452]},{"name":"RAS_UPDATE_CONNECTION","features":[452]},{"name":"RAS_USER_0","features":[452]},{"name":"RAS_USER_1","features":[452]},{"name":"RCD_AllUsers","features":[452]},{"name":"RCD_Eap","features":[452]},{"name":"RCD_Logon","features":[452]},{"name":"RCD_SingleUser","features":[452]},{"name":"RDEOPT_CustomDial","features":[452]},{"name":"RDEOPT_DisableConnectedUI","features":[452]},{"name":"RDEOPT_DisableReconnect","features":[452]},{"name":"RDEOPT_DisableReconnectUI","features":[452]},{"name":"RDEOPT_EapInfoCryptInCapable","features":[452]},{"name":"RDEOPT_IgnoreModemSpeaker","features":[452]},{"name":"RDEOPT_IgnoreSoftwareCompression","features":[452]},{"name":"RDEOPT_InvokeAutoTriggerCredentialUI","features":[452]},{"name":"RDEOPT_NoUser","features":[452]},{"name":"RDEOPT_PauseOnScript","features":[452]},{"name":"RDEOPT_PausedStates","features":[452]},{"name":"RDEOPT_Router","features":[452]},{"name":"RDEOPT_SetModemSpeaker","features":[452]},{"name":"RDEOPT_SetSoftwareCompression","features":[452]},{"name":"RDEOPT_UseCustomScripting","features":[452]},{"name":"RDEOPT_UsePrefixSuffix","features":[452]},{"name":"REN_AllUsers","features":[452]},{"name":"REN_User","features":[452]},{"name":"ROUTER_CONNECTION_STATE","features":[452]},{"name":"ROUTER_CUSTOM_IKEv2_POLICY0","features":[452]},{"name":"ROUTER_IF_STATE_CONNECTED","features":[452]},{"name":"ROUTER_IF_STATE_CONNECTING","features":[452]},{"name":"ROUTER_IF_STATE_DISCONNECTED","features":[452]},{"name":"ROUTER_IF_STATE_UNREACHABLE","features":[452]},{"name":"ROUTER_IF_TYPE_CLIENT","features":[452]},{"name":"ROUTER_IF_TYPE_DEDICATED","features":[452]},{"name":"ROUTER_IF_TYPE_DIALOUT","features":[452]},{"name":"ROUTER_IF_TYPE_FULL_ROUTER","features":[452]},{"name":"ROUTER_IF_TYPE_HOME_ROUTER","features":[452]},{"name":"ROUTER_IF_TYPE_INTERNAL","features":[452]},{"name":"ROUTER_IF_TYPE_LOOPBACK","features":[452]},{"name":"ROUTER_IF_TYPE_MAX","features":[452]},{"name":"ROUTER_IF_TYPE_TUNNEL1","features":[452]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG0","features":[452,387]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG1","features":[452,387]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG2","features":[452,316,387]},{"name":"ROUTER_INTERFACE_TYPE","features":[452]},{"name":"ROUTING_PROTOCOL_CONFIG","features":[303,452]},{"name":"RRAS_SERVICE_NAME","features":[452]},{"name":"RTM_BLOCK_METHODS","features":[452]},{"name":"RTM_CHANGE_NOTIFICATION","features":[452]},{"name":"RTM_CHANGE_TYPE_ALL","features":[452]},{"name":"RTM_CHANGE_TYPE_BEST","features":[452]},{"name":"RTM_CHANGE_TYPE_FORWARDING","features":[452]},{"name":"RTM_DEST_FLAG_DONT_FORWARD","features":[452]},{"name":"RTM_DEST_FLAG_FWD_ENGIN_ADD","features":[452]},{"name":"RTM_DEST_FLAG_NATURAL_NET","features":[452]},{"name":"RTM_DEST_INFO","features":[303,452]},{"name":"RTM_ENTITY_DEREGISTERED","features":[452]},{"name":"RTM_ENTITY_EXPORT_METHOD","features":[452]},{"name":"RTM_ENTITY_EXPORT_METHODS","features":[452]},{"name":"RTM_ENTITY_ID","features":[452]},{"name":"RTM_ENTITY_INFO","features":[452]},{"name":"RTM_ENTITY_METHOD_INPUT","features":[452]},{"name":"RTM_ENTITY_METHOD_OUTPUT","features":[452]},{"name":"RTM_ENTITY_REGISTERED","features":[452]},{"name":"RTM_ENUM_ALL_DESTS","features":[452]},{"name":"RTM_ENUM_ALL_ROUTES","features":[452]},{"name":"RTM_ENUM_NEXT","features":[452]},{"name":"RTM_ENUM_OWN_DESTS","features":[452]},{"name":"RTM_ENUM_OWN_ROUTES","features":[452]},{"name":"RTM_ENUM_RANGE","features":[452]},{"name":"RTM_ENUM_START","features":[452]},{"name":"RTM_EVENT_CALLBACK","features":[452]},{"name":"RTM_EVENT_TYPE","features":[452]},{"name":"RTM_MATCH_FULL","features":[452]},{"name":"RTM_MATCH_INTERFACE","features":[452]},{"name":"RTM_MATCH_NEIGHBOUR","features":[452]},{"name":"RTM_MATCH_NEXTHOP","features":[452]},{"name":"RTM_MATCH_NONE","features":[452]},{"name":"RTM_MATCH_OWNER","features":[452]},{"name":"RTM_MATCH_PREF","features":[452]},{"name":"RTM_MAX_ADDRESS_SIZE","features":[452]},{"name":"RTM_MAX_VIEWS","features":[452]},{"name":"RTM_NET_ADDRESS","features":[452]},{"name":"RTM_NEXTHOP_CHANGE_NEW","features":[452]},{"name":"RTM_NEXTHOP_FLAGS_DOWN","features":[452]},{"name":"RTM_NEXTHOP_FLAGS_REMOTE","features":[452]},{"name":"RTM_NEXTHOP_INFO","features":[452]},{"name":"RTM_NEXTHOP_LIST","features":[452]},{"name":"RTM_NEXTHOP_STATE_CREATED","features":[452]},{"name":"RTM_NEXTHOP_STATE_DELETED","features":[452]},{"name":"RTM_NOTIFY_ONLY_MARKED_DESTS","features":[452]},{"name":"RTM_NUM_CHANGE_TYPES","features":[452]},{"name":"RTM_PREF_INFO","features":[452]},{"name":"RTM_REGN_PROFILE","features":[452]},{"name":"RTM_RESUME_METHODS","features":[452]},{"name":"RTM_ROUTE_CHANGE_BEST","features":[452]},{"name":"RTM_ROUTE_CHANGE_FIRST","features":[452]},{"name":"RTM_ROUTE_CHANGE_NEW","features":[452]},{"name":"RTM_ROUTE_EXPIRED","features":[452]},{"name":"RTM_ROUTE_FLAGS_BLACKHOLE","features":[452]},{"name":"RTM_ROUTE_FLAGS_DISCARD","features":[452]},{"name":"RTM_ROUTE_FLAGS_INACTIVE","features":[452]},{"name":"RTM_ROUTE_FLAGS_LIMITED_BC","features":[452]},{"name":"RTM_ROUTE_FLAGS_LOCAL","features":[452]},{"name":"RTM_ROUTE_FLAGS_LOCAL_MCAST","features":[452]},{"name":"RTM_ROUTE_FLAGS_LOOPBACK","features":[452]},{"name":"RTM_ROUTE_FLAGS_MARTIAN","features":[452]},{"name":"RTM_ROUTE_FLAGS_MCAST","features":[452]},{"name":"RTM_ROUTE_FLAGS_MYSELF","features":[452]},{"name":"RTM_ROUTE_FLAGS_ONES_NETBC","features":[452]},{"name":"RTM_ROUTE_FLAGS_ONES_SUBNETBC","features":[452]},{"name":"RTM_ROUTE_FLAGS_REMOTE","features":[452]},{"name":"RTM_ROUTE_FLAGS_ZEROS_NETBC","features":[452]},{"name":"RTM_ROUTE_FLAGS_ZEROS_SUBNETBC","features":[452]},{"name":"RTM_ROUTE_INFO","features":[452]},{"name":"RTM_ROUTE_STATE_CREATED","features":[452]},{"name":"RTM_ROUTE_STATE_DELETED","features":[452]},{"name":"RTM_ROUTE_STATE_DELETING","features":[452]},{"name":"RTM_VIEW_ID_MCAST","features":[452]},{"name":"RTM_VIEW_ID_UCAST","features":[452]},{"name":"RTM_VIEW_MASK_ALL","features":[452]},{"name":"RTM_VIEW_MASK_ANY","features":[452]},{"name":"RTM_VIEW_MASK_MCAST","features":[452]},{"name":"RTM_VIEW_MASK_NONE","features":[452]},{"name":"RTM_VIEW_MASK_SIZE","features":[452]},{"name":"RTM_VIEW_MASK_UCAST","features":[452]},{"name":"RasClearConnectionStatistics","features":[452]},{"name":"RasClearLinkStatistics","features":[452]},{"name":"RasConnectionNotificationA","features":[303,452]},{"name":"RasConnectionNotificationW","features":[303,452]},{"name":"RasCreatePhonebookEntryA","features":[303,452]},{"name":"RasCreatePhonebookEntryW","features":[303,452]},{"name":"RasCustomDeleteEntryNotifyFn","features":[452]},{"name":"RasCustomDialDlgFn","features":[303,452]},{"name":"RasCustomDialFn","features":[303,452]},{"name":"RasCustomEntryDlgFn","features":[303,452]},{"name":"RasCustomHangUpFn","features":[452]},{"name":"RasCustomScriptExecuteFn","features":[303,452]},{"name":"RasDeleteEntryA","features":[452]},{"name":"RasDeleteEntryW","features":[452]},{"name":"RasDeleteSubEntryA","features":[452]},{"name":"RasDeleteSubEntryW","features":[452]},{"name":"RasDialA","features":[303,452]},{"name":"RasDialDlgA","features":[303,452]},{"name":"RasDialDlgW","features":[303,452]},{"name":"RasDialW","features":[303,452]},{"name":"RasEditPhonebookEntryA","features":[303,452]},{"name":"RasEditPhonebookEntryW","features":[303,452]},{"name":"RasEntryDlgA","features":[303,452]},{"name":"RasEntryDlgW","features":[303,452]},{"name":"RasEnumAutodialAddressesA","features":[452]},{"name":"RasEnumAutodialAddressesW","features":[452]},{"name":"RasEnumConnectionsA","features":[303,452]},{"name":"RasEnumConnectionsW","features":[303,452]},{"name":"RasEnumDevicesA","features":[452]},{"name":"RasEnumDevicesW","features":[452]},{"name":"RasEnumEntriesA","features":[452]},{"name":"RasEnumEntriesW","features":[452]},{"name":"RasFreeEapUserIdentityA","features":[452]},{"name":"RasFreeEapUserIdentityW","features":[452]},{"name":"RasGetAutodialAddressA","features":[452]},{"name":"RasGetAutodialAddressW","features":[452]},{"name":"RasGetAutodialEnableA","features":[303,452]},{"name":"RasGetAutodialEnableW","features":[303,452]},{"name":"RasGetAutodialParamA","features":[452]},{"name":"RasGetAutodialParamW","features":[452]},{"name":"RasGetConnectStatusA","features":[452,316]},{"name":"RasGetConnectStatusW","features":[452,316]},{"name":"RasGetConnectionStatistics","features":[452]},{"name":"RasGetCountryInfoA","features":[452]},{"name":"RasGetCountryInfoW","features":[452]},{"name":"RasGetCredentialsA","features":[452]},{"name":"RasGetCredentialsW","features":[452]},{"name":"RasGetCustomAuthDataA","features":[452]},{"name":"RasGetCustomAuthDataW","features":[452]},{"name":"RasGetEapUserDataA","features":[303,452]},{"name":"RasGetEapUserDataW","features":[303,452]},{"name":"RasGetEapUserIdentityA","features":[303,452]},{"name":"RasGetEapUserIdentityW","features":[303,452]},{"name":"RasGetEntryDialParamsA","features":[303,452]},{"name":"RasGetEntryDialParamsW","features":[303,452]},{"name":"RasGetEntryPropertiesA","features":[303,452,316]},{"name":"RasGetEntryPropertiesW","features":[303,452,316]},{"name":"RasGetErrorStringA","features":[452]},{"name":"RasGetErrorStringW","features":[452]},{"name":"RasGetLinkStatistics","features":[452]},{"name":"RasGetPCscf","features":[452]},{"name":"RasGetProjectionInfoA","features":[452]},{"name":"RasGetProjectionInfoEx","features":[303,452,316]},{"name":"RasGetProjectionInfoW","features":[452]},{"name":"RasGetSubEntryHandleA","features":[452]},{"name":"RasGetSubEntryHandleW","features":[452]},{"name":"RasGetSubEntryPropertiesA","features":[452]},{"name":"RasGetSubEntryPropertiesW","features":[452]},{"name":"RasHangUpA","features":[452]},{"name":"RasHangUpW","features":[452]},{"name":"RasInvokeEapUI","features":[303,452]},{"name":"RasPhonebookDlgA","features":[303,452]},{"name":"RasPhonebookDlgW","features":[303,452]},{"name":"RasRenameEntryA","features":[452]},{"name":"RasRenameEntryW","features":[452]},{"name":"RasSetAutodialAddressA","features":[452]},{"name":"RasSetAutodialAddressW","features":[452]},{"name":"RasSetAutodialEnableA","features":[303,452]},{"name":"RasSetAutodialEnableW","features":[303,452]},{"name":"RasSetAutodialParamA","features":[452]},{"name":"RasSetAutodialParamW","features":[452]},{"name":"RasSetCredentialsA","features":[303,452]},{"name":"RasSetCredentialsW","features":[303,452]},{"name":"RasSetCustomAuthDataA","features":[452]},{"name":"RasSetCustomAuthDataW","features":[452]},{"name":"RasSetEapUserDataA","features":[303,452]},{"name":"RasSetEapUserDataW","features":[303,452]},{"name":"RasSetEntryDialParamsA","features":[303,452]},{"name":"RasSetEntryDialParamsW","features":[303,452]},{"name":"RasSetEntryPropertiesA","features":[303,452,316]},{"name":"RasSetEntryPropertiesW","features":[303,452,316]},{"name":"RasSetSubEntryPropertiesA","features":[452]},{"name":"RasSetSubEntryPropertiesW","features":[452]},{"name":"RasUpdateConnection","features":[452,316]},{"name":"RasValidateEntryNameA","features":[452]},{"name":"RasValidateEntryNameW","features":[452]},{"name":"RtmAddNextHop","features":[452]},{"name":"RtmAddRouteToDest","features":[452]},{"name":"RtmBlockMethods","features":[303,452]},{"name":"RtmConvertIpv6AddressAndLengthToNetAddress","features":[452,316]},{"name":"RtmConvertNetAddressToIpv6AddressAndLength","features":[452,316]},{"name":"RtmCreateDestEnum","features":[452]},{"name":"RtmCreateNextHopEnum","features":[452]},{"name":"RtmCreateRouteEnum","features":[452]},{"name":"RtmCreateRouteList","features":[452]},{"name":"RtmCreateRouteListEnum","features":[452]},{"name":"RtmDeleteEnumHandle","features":[452]},{"name":"RtmDeleteNextHop","features":[452]},{"name":"RtmDeleteRouteList","features":[452]},{"name":"RtmDeleteRouteToDest","features":[452]},{"name":"RtmDeregisterEntity","features":[452]},{"name":"RtmDeregisterFromChangeNotification","features":[452]},{"name":"RtmFindNextHop","features":[452]},{"name":"RtmGetChangeStatus","features":[303,452]},{"name":"RtmGetChangedDests","features":[303,452]},{"name":"RtmGetDestInfo","features":[303,452]},{"name":"RtmGetEntityInfo","features":[452]},{"name":"RtmGetEntityMethods","features":[452]},{"name":"RtmGetEnumDests","features":[303,452]},{"name":"RtmGetEnumNextHops","features":[452]},{"name":"RtmGetEnumRoutes","features":[452]},{"name":"RtmGetExactMatchDestination","features":[303,452]},{"name":"RtmGetExactMatchRoute","features":[452]},{"name":"RtmGetLessSpecificDestination","features":[303,452]},{"name":"RtmGetListEnumRoutes","features":[452]},{"name":"RtmGetMostSpecificDestination","features":[303,452]},{"name":"RtmGetNextHopInfo","features":[452]},{"name":"RtmGetNextHopPointer","features":[452]},{"name":"RtmGetOpaqueInformationPointer","features":[452]},{"name":"RtmGetRegisteredEntities","features":[452]},{"name":"RtmGetRouteInfo","features":[452]},{"name":"RtmGetRoutePointer","features":[452]},{"name":"RtmHoldDestination","features":[452]},{"name":"RtmIgnoreChangedDests","features":[452]},{"name":"RtmInsertInRouteList","features":[452]},{"name":"RtmInvokeMethod","features":[452]},{"name":"RtmIsBestRoute","features":[452]},{"name":"RtmIsMarkedForChangeNotification","features":[303,452]},{"name":"RtmLockDestination","features":[303,452]},{"name":"RtmLockNextHop","features":[303,452]},{"name":"RtmLockRoute","features":[303,452]},{"name":"RtmMarkDestForChangeNotification","features":[303,452]},{"name":"RtmReferenceHandles","features":[303,452]},{"name":"RtmRegisterEntity","features":[303,452]},{"name":"RtmRegisterForChangeNotification","features":[452]},{"name":"RtmReleaseChangedDests","features":[303,452]},{"name":"RtmReleaseDestInfo","features":[303,452]},{"name":"RtmReleaseDests","features":[303,452]},{"name":"RtmReleaseEntities","features":[452]},{"name":"RtmReleaseEntityInfo","features":[452]},{"name":"RtmReleaseNextHopInfo","features":[452]},{"name":"RtmReleaseNextHops","features":[452]},{"name":"RtmReleaseRouteInfo","features":[452]},{"name":"RtmReleaseRoutes","features":[452]},{"name":"RtmUpdateAndUnlockRoute","features":[452]},{"name":"SECURITYMSG_ERROR","features":[452]},{"name":"SECURITYMSG_FAILURE","features":[452]},{"name":"SECURITYMSG_SUCCESS","features":[452]},{"name":"SECURITY_MESSAGE","features":[452]},{"name":"SECURITY_MESSAGE_MSG_ID","features":[452]},{"name":"SOURCE_GROUP_ENTRY","features":[452]},{"name":"SSTP_CERT_INFO","features":[303,452,387]},{"name":"SSTP_CONFIG_PARAMS","features":[303,452,387]},{"name":"VPN_TS_IP_ADDRESS","features":[452,316]},{"name":"VS_Default","features":[452]},{"name":"VS_GREOnly","features":[452]},{"name":"VS_Ikev2First","features":[452]},{"name":"VS_Ikev2Only","features":[452]},{"name":"VS_Ikev2Sstp","features":[452]},{"name":"VS_L2tpFirst","features":[452]},{"name":"VS_L2tpOnly","features":[452]},{"name":"VS_L2tpSstp","features":[452]},{"name":"VS_PptpFirst","features":[452]},{"name":"VS_PptpOnly","features":[452]},{"name":"VS_PptpSstp","features":[452]},{"name":"VS_ProtocolList","features":[452]},{"name":"VS_SstpFirst","features":[452]},{"name":"VS_SstpOnly","features":[452]},{"name":"WARNING_MSG_ALIAS_NOT_ADDED","features":[452]},{"name":"WM_RASDIALEVENT","features":[452]}],"458":[{"name":"ASN_APPLICATION","features":[453]},{"name":"ASN_CONSTRUCTOR","features":[453]},{"name":"ASN_CONTEXT","features":[453]},{"name":"ASN_CONTEXTSPECIFIC","features":[453]},{"name":"ASN_PRIMATIVE","features":[453]},{"name":"ASN_PRIMITIVE","features":[453]},{"name":"ASN_PRIVATE","features":[453]},{"name":"ASN_UNIVERSAL","features":[453]},{"name":"AsnAny","features":[303,453]},{"name":"AsnObjectIdentifier","features":[453]},{"name":"AsnObjectIdentifier","features":[453]},{"name":"AsnOctetString","features":[303,453]},{"name":"AsnOctetString","features":[303,453]},{"name":"DEFAULT_SNMPTRAP_PORT_IPX","features":[453]},{"name":"DEFAULT_SNMPTRAP_PORT_UDP","features":[453]},{"name":"DEFAULT_SNMP_PORT_IPX","features":[453]},{"name":"DEFAULT_SNMP_PORT_UDP","features":[453]},{"name":"MAXOBJIDSIZE","features":[453]},{"name":"MAXOBJIDSTRSIZE","features":[453]},{"name":"MAXVENDORINFO","features":[453]},{"name":"MGMCTL_SETAGENTPORT","features":[453]},{"name":"PFNSNMPCLEANUPEX","features":[453]},{"name":"PFNSNMPEXTENSIONCLOSE","features":[453]},{"name":"PFNSNMPEXTENSIONINIT","features":[303,453]},{"name":"PFNSNMPEXTENSIONINITEX","features":[303,453]},{"name":"PFNSNMPEXTENSIONMONITOR","features":[303,453]},{"name":"PFNSNMPEXTENSIONQUERY","features":[303,453]},{"name":"PFNSNMPEXTENSIONQUERYEX","features":[303,453]},{"name":"PFNSNMPEXTENSIONTRAP","features":[303,453]},{"name":"PFNSNMPSTARTUPEX","features":[453]},{"name":"SNMPAPI_ALLOC_ERROR","features":[453]},{"name":"SNMPAPI_CALLBACK","features":[303,453]},{"name":"SNMPAPI_CONTEXT_INVALID","features":[453]},{"name":"SNMPAPI_CONTEXT_UNKNOWN","features":[453]},{"name":"SNMPAPI_ENTITY_INVALID","features":[453]},{"name":"SNMPAPI_ENTITY_UNKNOWN","features":[453]},{"name":"SNMPAPI_ERROR","features":[453]},{"name":"SNMPAPI_FAILURE","features":[453]},{"name":"SNMPAPI_HWND_INVALID","features":[453]},{"name":"SNMPAPI_INDEX_INVALID","features":[453]},{"name":"SNMPAPI_M2M_SUPPORT","features":[453]},{"name":"SNMPAPI_MESSAGE_INVALID","features":[453]},{"name":"SNMPAPI_MODE_INVALID","features":[453]},{"name":"SNMPAPI_NOERROR","features":[453]},{"name":"SNMPAPI_NOOP","features":[453]},{"name":"SNMPAPI_NOT_INITIALIZED","features":[453]},{"name":"SNMPAPI_NO_SUPPORT","features":[453]},{"name":"SNMPAPI_OFF","features":[453]},{"name":"SNMPAPI_OID_INVALID","features":[453]},{"name":"SNMPAPI_ON","features":[453]},{"name":"SNMPAPI_OPERATION_INVALID","features":[453]},{"name":"SNMPAPI_OTHER_ERROR","features":[453]},{"name":"SNMPAPI_OUTPUT_TRUNCATED","features":[453]},{"name":"SNMPAPI_PDU_INVALID","features":[453]},{"name":"SNMPAPI_SESSION_INVALID","features":[453]},{"name":"SNMPAPI_SIZE_INVALID","features":[453]},{"name":"SNMPAPI_SUCCESS","features":[453]},{"name":"SNMPAPI_SYNTAX_INVALID","features":[453]},{"name":"SNMPAPI_TL_INVALID_PARAM","features":[453]},{"name":"SNMPAPI_TL_IN_USE","features":[453]},{"name":"SNMPAPI_TL_NOT_AVAILABLE","features":[453]},{"name":"SNMPAPI_TL_NOT_INITIALIZED","features":[453]},{"name":"SNMPAPI_TL_NOT_SUPPORTED","features":[453]},{"name":"SNMPAPI_TL_OTHER","features":[453]},{"name":"SNMPAPI_TL_PDU_TOO_BIG","features":[453]},{"name":"SNMPAPI_TL_RESOURCE_ERROR","features":[453]},{"name":"SNMPAPI_TL_SRC_INVALID","features":[453]},{"name":"SNMPAPI_TL_TIMEOUT","features":[453]},{"name":"SNMPAPI_TL_UNDELIVERABLE","features":[453]},{"name":"SNMPAPI_TRANSLATED","features":[453]},{"name":"SNMPAPI_UNTRANSLATED_V1","features":[453]},{"name":"SNMPAPI_UNTRANSLATED_V2","features":[453]},{"name":"SNMPAPI_V1_SUPPORT","features":[453]},{"name":"SNMPAPI_V2_SUPPORT","features":[453]},{"name":"SNMPAPI_VBL_INVALID","features":[453]},{"name":"SNMPLISTEN_ALL_ADDR","features":[453]},{"name":"SNMPLISTEN_USEENTITY_ADDR","features":[453]},{"name":"SNMP_ACCESS_NONE","features":[453]},{"name":"SNMP_ACCESS_NOTIFY","features":[453]},{"name":"SNMP_ACCESS_READ_CREATE","features":[453]},{"name":"SNMP_ACCESS_READ_ONLY","features":[453]},{"name":"SNMP_ACCESS_READ_WRITE","features":[453]},{"name":"SNMP_API_TRANSLATE_MODE","features":[453]},{"name":"SNMP_AUTHAPI_INVALID_MSG_TYPE","features":[453]},{"name":"SNMP_AUTHAPI_INVALID_VERSION","features":[453]},{"name":"SNMP_AUTHAPI_TRIV_AUTH_FAILED","features":[453]},{"name":"SNMP_BERAPI_INVALID_LENGTH","features":[453]},{"name":"SNMP_BERAPI_INVALID_OBJELEM","features":[453]},{"name":"SNMP_BERAPI_INVALID_TAG","features":[453]},{"name":"SNMP_BERAPI_OVERFLOW","features":[453]},{"name":"SNMP_BERAPI_SHORT_BUFFER","features":[453]},{"name":"SNMP_ERROR","features":[453]},{"name":"SNMP_ERRORSTATUS_AUTHORIZATIONERROR","features":[453]},{"name":"SNMP_ERRORSTATUS_BADVALUE","features":[453]},{"name":"SNMP_ERRORSTATUS_COMMITFAILED","features":[453]},{"name":"SNMP_ERRORSTATUS_GENERR","features":[453]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTNAME","features":[453]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTVALUE","features":[453]},{"name":"SNMP_ERRORSTATUS_NOACCESS","features":[453]},{"name":"SNMP_ERRORSTATUS_NOCREATION","features":[453]},{"name":"SNMP_ERRORSTATUS_NOERROR","features":[453]},{"name":"SNMP_ERRORSTATUS_NOSUCHNAME","features":[453]},{"name":"SNMP_ERRORSTATUS_NOTWRITABLE","features":[453]},{"name":"SNMP_ERRORSTATUS_READONLY","features":[453]},{"name":"SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE","features":[453]},{"name":"SNMP_ERRORSTATUS_TOOBIG","features":[453]},{"name":"SNMP_ERRORSTATUS_UNDOFAILED","features":[453]},{"name":"SNMP_ERRORSTATUS_WRONGENCODING","features":[453]},{"name":"SNMP_ERRORSTATUS_WRONGLENGTH","features":[453]},{"name":"SNMP_ERRORSTATUS_WRONGTYPE","features":[453]},{"name":"SNMP_ERRORSTATUS_WRONGVALUE","features":[453]},{"name":"SNMP_ERROR_AUTHORIZATIONERROR","features":[453]},{"name":"SNMP_ERROR_BADVALUE","features":[453]},{"name":"SNMP_ERROR_COMMITFAILED","features":[453]},{"name":"SNMP_ERROR_GENERR","features":[453]},{"name":"SNMP_ERROR_INCONSISTENTNAME","features":[453]},{"name":"SNMP_ERROR_INCONSISTENTVALUE","features":[453]},{"name":"SNMP_ERROR_NOACCESS","features":[453]},{"name":"SNMP_ERROR_NOCREATION","features":[453]},{"name":"SNMP_ERROR_NOERROR","features":[453]},{"name":"SNMP_ERROR_NOSUCHNAME","features":[453]},{"name":"SNMP_ERROR_NOTWRITABLE","features":[453]},{"name":"SNMP_ERROR_READONLY","features":[453]},{"name":"SNMP_ERROR_RESOURCEUNAVAILABLE","features":[453]},{"name":"SNMP_ERROR_STATUS","features":[453]},{"name":"SNMP_ERROR_TOOBIG","features":[453]},{"name":"SNMP_ERROR_UNDOFAILED","features":[453]},{"name":"SNMP_ERROR_WRONGENCODING","features":[453]},{"name":"SNMP_ERROR_WRONGLENGTH","features":[453]},{"name":"SNMP_ERROR_WRONGTYPE","features":[453]},{"name":"SNMP_ERROR_WRONGVALUE","features":[453]},{"name":"SNMP_EXTENSION_GET","features":[453]},{"name":"SNMP_EXTENSION_GET_NEXT","features":[453]},{"name":"SNMP_EXTENSION_REQUEST_TYPE","features":[453]},{"name":"SNMP_EXTENSION_SET_CLEANUP","features":[453]},{"name":"SNMP_EXTENSION_SET_COMMIT","features":[453]},{"name":"SNMP_EXTENSION_SET_TEST","features":[453]},{"name":"SNMP_EXTENSION_SET_UNDO","features":[453]},{"name":"SNMP_GENERICTRAP","features":[453]},{"name":"SNMP_GENERICTRAP_AUTHFAILURE","features":[453]},{"name":"SNMP_GENERICTRAP_COLDSTART","features":[453]},{"name":"SNMP_GENERICTRAP_EGPNEIGHLOSS","features":[453]},{"name":"SNMP_GENERICTRAP_ENTERSPECIFIC","features":[453]},{"name":"SNMP_GENERICTRAP_LINKDOWN","features":[453]},{"name":"SNMP_GENERICTRAP_LINKUP","features":[453]},{"name":"SNMP_GENERICTRAP_WARMSTART","features":[453]},{"name":"SNMP_LOG","features":[453]},{"name":"SNMP_LOG_ERROR","features":[453]},{"name":"SNMP_LOG_FATAL","features":[453]},{"name":"SNMP_LOG_SILENT","features":[453]},{"name":"SNMP_LOG_TRACE","features":[453]},{"name":"SNMP_LOG_VERBOSE","features":[453]},{"name":"SNMP_LOG_WARNING","features":[453]},{"name":"SNMP_MAX_OID_LEN","features":[453]},{"name":"SNMP_MEM_ALLOC_ERROR","features":[453]},{"name":"SNMP_MGMTAPI_AGAIN","features":[453]},{"name":"SNMP_MGMTAPI_INVALID_BUFFER","features":[453]},{"name":"SNMP_MGMTAPI_INVALID_CTL","features":[453]},{"name":"SNMP_MGMTAPI_INVALID_SESSION","features":[453]},{"name":"SNMP_MGMTAPI_NOTRAPS","features":[453]},{"name":"SNMP_MGMTAPI_SELECT_FDERRORS","features":[453]},{"name":"SNMP_MGMTAPI_TIMEOUT","features":[453]},{"name":"SNMP_MGMTAPI_TRAP_DUPINIT","features":[453]},{"name":"SNMP_MGMTAPI_TRAP_ERRORS","features":[453]},{"name":"SNMP_OUTPUT_LOG_TYPE","features":[453]},{"name":"SNMP_OUTPUT_TO_CONSOLE","features":[453]},{"name":"SNMP_OUTPUT_TO_DEBUGGER","features":[453]},{"name":"SNMP_OUTPUT_TO_EVENTLOG","features":[453]},{"name":"SNMP_OUTPUT_TO_LOGFILE","features":[453]},{"name":"SNMP_PDUAPI_INVALID_ES","features":[453]},{"name":"SNMP_PDUAPI_INVALID_GT","features":[453]},{"name":"SNMP_PDUAPI_UNRECOGNIZED_PDU","features":[453]},{"name":"SNMP_PDU_GET","features":[453]},{"name":"SNMP_PDU_GETBULK","features":[453]},{"name":"SNMP_PDU_GETNEXT","features":[453]},{"name":"SNMP_PDU_RESPONSE","features":[453]},{"name":"SNMP_PDU_SET","features":[453]},{"name":"SNMP_PDU_TRAP","features":[453]},{"name":"SNMP_PDU_TYPE","features":[453]},{"name":"SNMP_STATUS","features":[453]},{"name":"SNMP_TRAP_AUTHFAIL","features":[453]},{"name":"SNMP_TRAP_COLDSTART","features":[453]},{"name":"SNMP_TRAP_EGPNEIGHBORLOSS","features":[453]},{"name":"SNMP_TRAP_ENTERPRISESPECIFIC","features":[453]},{"name":"SNMP_TRAP_LINKDOWN","features":[453]},{"name":"SNMP_TRAP_LINKUP","features":[453]},{"name":"SNMP_TRAP_WARMSTART","features":[453]},{"name":"SnmpCancelMsg","features":[453]},{"name":"SnmpCleanup","features":[453]},{"name":"SnmpCleanupEx","features":[453]},{"name":"SnmpClose","features":[453]},{"name":"SnmpContextToStr","features":[453]},{"name":"SnmpCountVbl","features":[453]},{"name":"SnmpCreatePdu","features":[453]},{"name":"SnmpCreateSession","features":[303,453]},{"name":"SnmpCreateVbl","features":[453]},{"name":"SnmpDecodeMsg","features":[453]},{"name":"SnmpDeleteVb","features":[453]},{"name":"SnmpDuplicatePdu","features":[453]},{"name":"SnmpDuplicateVbl","features":[453]},{"name":"SnmpEncodeMsg","features":[453]},{"name":"SnmpEntityToStr","features":[453]},{"name":"SnmpFreeContext","features":[453]},{"name":"SnmpFreeDescriptor","features":[453]},{"name":"SnmpFreeEntity","features":[453]},{"name":"SnmpFreePdu","features":[453]},{"name":"SnmpFreeVbl","features":[453]},{"name":"SnmpGetLastError","features":[453]},{"name":"SnmpGetPduData","features":[453]},{"name":"SnmpGetRetransmitMode","features":[453]},{"name":"SnmpGetRetry","features":[453]},{"name":"SnmpGetTimeout","features":[453]},{"name":"SnmpGetTranslateMode","features":[453]},{"name":"SnmpGetVb","features":[453]},{"name":"SnmpGetVendorInfo","features":[453]},{"name":"SnmpListen","features":[453]},{"name":"SnmpListenEx","features":[453]},{"name":"SnmpMgrClose","features":[303,453]},{"name":"SnmpMgrCtl","features":[303,453]},{"name":"SnmpMgrGetTrap","features":[303,453]},{"name":"SnmpMgrGetTrapEx","features":[303,453]},{"name":"SnmpMgrOidToStr","features":[303,453]},{"name":"SnmpMgrOpen","features":[453]},{"name":"SnmpMgrRequest","features":[303,453]},{"name":"SnmpMgrStrToOid","features":[303,453]},{"name":"SnmpMgrTrapListen","features":[303,453]},{"name":"SnmpOidCompare","features":[453]},{"name":"SnmpOidCopy","features":[453]},{"name":"SnmpOidToStr","features":[453]},{"name":"SnmpOpen","features":[303,453]},{"name":"SnmpRecvMsg","features":[453]},{"name":"SnmpRegister","features":[453]},{"name":"SnmpSendMsg","features":[453]},{"name":"SnmpSetPduData","features":[453]},{"name":"SnmpSetPort","features":[453]},{"name":"SnmpSetRetransmitMode","features":[453]},{"name":"SnmpSetRetry","features":[453]},{"name":"SnmpSetTimeout","features":[453]},{"name":"SnmpSetTranslateMode","features":[453]},{"name":"SnmpSetVb","features":[453]},{"name":"SnmpStartup","features":[453]},{"name":"SnmpStartupEx","features":[453]},{"name":"SnmpStrToContext","features":[453]},{"name":"SnmpStrToEntity","features":[453]},{"name":"SnmpStrToOid","features":[453]},{"name":"SnmpSvcGetUptime","features":[453]},{"name":"SnmpSvcSetLogLevel","features":[453]},{"name":"SnmpSvcSetLogType","features":[453]},{"name":"SnmpUtilAsnAnyCpy","features":[303,453]},{"name":"SnmpUtilAsnAnyFree","features":[303,453]},{"name":"SnmpUtilDbgPrint","features":[453]},{"name":"SnmpUtilIdsToA","features":[453]},{"name":"SnmpUtilMemAlloc","features":[453]},{"name":"SnmpUtilMemFree","features":[453]},{"name":"SnmpUtilMemReAlloc","features":[453]},{"name":"SnmpUtilOctetsCmp","features":[303,453]},{"name":"SnmpUtilOctetsCpy","features":[303,453]},{"name":"SnmpUtilOctetsFree","features":[303,453]},{"name":"SnmpUtilOctetsNCmp","features":[303,453]},{"name":"SnmpUtilOidAppend","features":[453]},{"name":"SnmpUtilOidCmp","features":[453]},{"name":"SnmpUtilOidCpy","features":[453]},{"name":"SnmpUtilOidFree","features":[453]},{"name":"SnmpUtilOidNCmp","features":[453]},{"name":"SnmpUtilOidToA","features":[453]},{"name":"SnmpUtilPrintAsnAny","features":[303,453]},{"name":"SnmpUtilPrintOid","features":[453]},{"name":"SnmpUtilVarBindCpy","features":[303,453]},{"name":"SnmpUtilVarBindFree","features":[303,453]},{"name":"SnmpUtilVarBindListCpy","features":[303,453]},{"name":"SnmpUtilVarBindListFree","features":[303,453]},{"name":"SnmpVarBind","features":[303,453]},{"name":"SnmpVarBindList","features":[303,453]},{"name":"SnmpVarBindList","features":[303,453]},{"name":"smiCNTR64","features":[453]},{"name":"smiOCTETS","features":[453]},{"name":"smiOID","features":[453]},{"name":"smiVALUE","features":[453]},{"name":"smiVENDORINFO","features":[453]}],"459":[{"name":"CONNDLG_CONN_POINT","features":[454]},{"name":"CONNDLG_HIDE_BOX","features":[454]},{"name":"CONNDLG_NOT_PERSIST","features":[454]},{"name":"CONNDLG_PERSIST","features":[454]},{"name":"CONNDLG_RO_PATH","features":[454]},{"name":"CONNDLG_USE_MRU","features":[454]},{"name":"CONNECTDLGSTRUCTA","features":[303,454]},{"name":"CONNECTDLGSTRUCTW","features":[303,454]},{"name":"CONNECTDLGSTRUCT_FLAGS","features":[454]},{"name":"CONNECT_CMD_SAVECRED","features":[454]},{"name":"CONNECT_COMMANDLINE","features":[454]},{"name":"CONNECT_CRED_RESET","features":[454]},{"name":"CONNECT_CURRENT_MEDIA","features":[454]},{"name":"CONNECT_DEFERRED","features":[454]},{"name":"CONNECT_GLOBAL_MAPPING","features":[454]},{"name":"CONNECT_INTERACTIVE","features":[454]},{"name":"CONNECT_LOCALDRIVE","features":[454]},{"name":"CONNECT_NEED_DRIVE","features":[454]},{"name":"CONNECT_PROMPT","features":[454]},{"name":"CONNECT_REDIRECT","features":[454]},{"name":"CONNECT_REFCOUNT","features":[454]},{"name":"CONNECT_REQUIRE_INTEGRITY","features":[454]},{"name":"CONNECT_REQUIRE_PRIVACY","features":[454]},{"name":"CONNECT_RESERVED","features":[454]},{"name":"CONNECT_TEMPORARY","features":[454]},{"name":"CONNECT_UPDATE_PROFILE","features":[454]},{"name":"CONNECT_UPDATE_RECENT","features":[454]},{"name":"CONNECT_WRITE_THROUGH_SEMANTICS","features":[454]},{"name":"DISCDLGSTRUCTA","features":[303,454]},{"name":"DISCDLGSTRUCTW","features":[303,454]},{"name":"DISCDLGSTRUCT_FLAGS","features":[454]},{"name":"DISC_NO_FORCE","features":[454]},{"name":"DISC_UPDATE_PROFILE","features":[454]},{"name":"MultinetGetConnectionPerformanceA","features":[454]},{"name":"MultinetGetConnectionPerformanceW","features":[454]},{"name":"NETCONNECTINFOSTRUCT","features":[454]},{"name":"NETINFOSTRUCT","features":[303,454]},{"name":"NETINFOSTRUCT_CHARACTERISTICS","features":[454]},{"name":"NETINFO_DISKRED","features":[454]},{"name":"NETINFO_DLL16","features":[454]},{"name":"NETINFO_PRINTERRED","features":[454]},{"name":"NETPROPERTY_PERSISTENT","features":[454]},{"name":"NETRESOURCEA","features":[454]},{"name":"NETRESOURCEW","features":[454]},{"name":"NETWORK_NAME_FORMAT_FLAGS","features":[454]},{"name":"NET_RESOURCE_SCOPE","features":[454]},{"name":"NET_RESOURCE_TYPE","features":[454]},{"name":"NET_USE_CONNECT_FLAGS","features":[454]},{"name":"NOTIFYADD","features":[303,454]},{"name":"NOTIFYCANCEL","features":[303,454]},{"name":"NOTIFYINFO","features":[454]},{"name":"NOTIFY_POST","features":[454]},{"name":"NOTIFY_PRE","features":[454]},{"name":"NPAddConnection","features":[454]},{"name":"NPAddConnection3","features":[303,454]},{"name":"NPAddConnection4","features":[303,454]},{"name":"NPCancelConnection","features":[303,454]},{"name":"NPCancelConnection2","features":[303,454]},{"name":"NPCloseEnum","features":[303,454]},{"name":"NPDIRECTORY_NOTIFY_OPERATION","features":[454]},{"name":"NPEnumResource","features":[303,454]},{"name":"NPFormatNetworkName","features":[454]},{"name":"NPGetCaps","features":[454]},{"name":"NPGetConnection","features":[454]},{"name":"NPGetConnection3","features":[454]},{"name":"NPGetConnectionPerformance","features":[454]},{"name":"NPGetPersistentUseOptionsForConnection","features":[454]},{"name":"NPGetResourceInformation","features":[454]},{"name":"NPGetResourceParent","features":[454]},{"name":"NPGetUniversalName","features":[454]},{"name":"NPGetUser","features":[454]},{"name":"NPOpenEnum","features":[303,454]},{"name":"NP_PROPERTY_DIALOG_SELECTION","features":[454]},{"name":"PF_AddConnectNotify","features":[303,454]},{"name":"PF_CancelConnectNotify","features":[303,454]},{"name":"PF_NPAddConnection","features":[454]},{"name":"PF_NPAddConnection3","features":[303,454]},{"name":"PF_NPAddConnection4","features":[303,454]},{"name":"PF_NPCancelConnection","features":[303,454]},{"name":"PF_NPCancelConnection2","features":[303,454]},{"name":"PF_NPCloseEnum","features":[303,454]},{"name":"PF_NPDeviceMode","features":[303,454]},{"name":"PF_NPDirectoryNotify","features":[303,454]},{"name":"PF_NPEnumResource","features":[303,454]},{"name":"PF_NPFMXEditPerm","features":[303,454]},{"name":"PF_NPFMXGetPermCaps","features":[454]},{"name":"PF_NPFMXGetPermHelp","features":[303,454]},{"name":"PF_NPFormatNetworkName","features":[454]},{"name":"PF_NPGetCaps","features":[454]},{"name":"PF_NPGetConnection","features":[454]},{"name":"PF_NPGetConnection3","features":[454]},{"name":"PF_NPGetConnectionPerformance","features":[454]},{"name":"PF_NPGetDirectoryType","features":[303,454]},{"name":"PF_NPGetPersistentUseOptionsForConnection","features":[454]},{"name":"PF_NPGetPropertyText","features":[454]},{"name":"PF_NPGetResourceInformation","features":[454]},{"name":"PF_NPGetResourceParent","features":[454]},{"name":"PF_NPGetUniversalName","features":[454]},{"name":"PF_NPGetUser","features":[454]},{"name":"PF_NPLogonNotify","features":[303,454]},{"name":"PF_NPOpenEnum","features":[303,454]},{"name":"PF_NPPasswordChangeNotify","features":[454]},{"name":"PF_NPPropertyDialog","features":[303,454]},{"name":"PF_NPSearchDialog","features":[303,454]},{"name":"REMOTE_NAME_INFOA","features":[454]},{"name":"REMOTE_NAME_INFOW","features":[454]},{"name":"REMOTE_NAME_INFO_LEVEL","features":[454]},{"name":"RESOURCEDISPLAYTYPE_DIRECTORY","features":[454]},{"name":"RESOURCEDISPLAYTYPE_NDSCONTAINER","features":[454]},{"name":"RESOURCEDISPLAYTYPE_NETWORK","features":[454]},{"name":"RESOURCEDISPLAYTYPE_ROOT","features":[454]},{"name":"RESOURCEDISPLAYTYPE_SHAREADMIN","features":[454]},{"name":"RESOURCETYPE_ANY","features":[454]},{"name":"RESOURCETYPE_DISK","features":[454]},{"name":"RESOURCETYPE_PRINT","features":[454]},{"name":"RESOURCETYPE_RESERVED","features":[454]},{"name":"RESOURCETYPE_UNKNOWN","features":[454]},{"name":"RESOURCEUSAGE_ALL","features":[454]},{"name":"RESOURCEUSAGE_ATTACHED","features":[454]},{"name":"RESOURCEUSAGE_CONNECTABLE","features":[454]},{"name":"RESOURCEUSAGE_CONTAINER","features":[454]},{"name":"RESOURCEUSAGE_NOLOCALDEVICE","features":[454]},{"name":"RESOURCEUSAGE_NONE","features":[454]},{"name":"RESOURCEUSAGE_RESERVED","features":[454]},{"name":"RESOURCEUSAGE_SIBLING","features":[454]},{"name":"RESOURCE_CONNECTED","features":[454]},{"name":"RESOURCE_CONTEXT","features":[454]},{"name":"RESOURCE_GLOBALNET","features":[454]},{"name":"RESOURCE_RECENT","features":[454]},{"name":"RESOURCE_REMEMBERED","features":[454]},{"name":"UNC_INFO_LEVEL","features":[454]},{"name":"UNIVERSAL_NAME_INFOA","features":[454]},{"name":"UNIVERSAL_NAME_INFOW","features":[454]},{"name":"UNIVERSAL_NAME_INFO_LEVEL","features":[454]},{"name":"WNCON_DYNAMIC","features":[454]},{"name":"WNCON_FORNETCARD","features":[454]},{"name":"WNCON_NOTROUTED","features":[454]},{"name":"WNCON_SLOWLINK","features":[454]},{"name":"WNDN_MKDIR","features":[454]},{"name":"WNDN_MVDIR","features":[454]},{"name":"WNDN_RMDIR","features":[454]},{"name":"WNDT_NETWORK","features":[454]},{"name":"WNDT_NORMAL","features":[454]},{"name":"WNET_OPEN_ENUM_USAGE","features":[454]},{"name":"WNFMT_ABBREVIATED","features":[454]},{"name":"WNFMT_CONNECTION","features":[454]},{"name":"WNFMT_INENUM","features":[454]},{"name":"WNFMT_MULTILINE","features":[454]},{"name":"WNGETCON_CONNECTED","features":[454]},{"name":"WNGETCON_DISCONNECTED","features":[454]},{"name":"WNNC_ADMIN","features":[454]},{"name":"WNNC_ADM_DIRECTORYNOTIFY","features":[454]},{"name":"WNNC_ADM_GETDIRECTORYTYPE","features":[454]},{"name":"WNNC_CONNECTION","features":[454]},{"name":"WNNC_CONNECTION_FLAGS","features":[454]},{"name":"WNNC_CON_ADDCONNECTION","features":[454]},{"name":"WNNC_CON_ADDCONNECTION3","features":[454]},{"name":"WNNC_CON_ADDCONNECTION4","features":[454]},{"name":"WNNC_CON_CANCELCONNECTION","features":[454]},{"name":"WNNC_CON_CANCELCONNECTION2","features":[454]},{"name":"WNNC_CON_DEFER","features":[454]},{"name":"WNNC_CON_GETCONNECTIONS","features":[454]},{"name":"WNNC_CON_GETPERFORMANCE","features":[454]},{"name":"WNNC_DIALOG","features":[454]},{"name":"WNNC_DLG_DEVICEMODE","features":[454]},{"name":"WNNC_DLG_FORMATNETWORKNAME","features":[454]},{"name":"WNNC_DLG_GETRESOURCEINFORMATION","features":[454]},{"name":"WNNC_DLG_GETRESOURCEPARENT","features":[454]},{"name":"WNNC_DLG_PERMISSIONEDITOR","features":[454]},{"name":"WNNC_DLG_PROPERTYDIALOG","features":[454]},{"name":"WNNC_DLG_SEARCHDIALOG","features":[454]},{"name":"WNNC_DRIVER_VERSION","features":[454]},{"name":"WNNC_ENUMERATION","features":[454]},{"name":"WNNC_ENUM_CONTEXT","features":[454]},{"name":"WNNC_ENUM_GLOBAL","features":[454]},{"name":"WNNC_ENUM_LOCAL","features":[454]},{"name":"WNNC_ENUM_SHAREABLE","features":[454]},{"name":"WNNC_NET_NONE","features":[454]},{"name":"WNNC_NET_TYPE","features":[454]},{"name":"WNNC_SPEC_VERSION","features":[454]},{"name":"WNNC_SPEC_VERSION51","features":[454]},{"name":"WNNC_START","features":[454]},{"name":"WNNC_USER","features":[454]},{"name":"WNNC_USR_GETUSER","features":[454]},{"name":"WNNC_WAIT_FOR_START","features":[454]},{"name":"WNPERMC_AUDIT","features":[454]},{"name":"WNPERMC_OWNER","features":[454]},{"name":"WNPERMC_PERM","features":[454]},{"name":"WNPERM_DLG","features":[454]},{"name":"WNPERM_DLG_AUDIT","features":[454]},{"name":"WNPERM_DLG_OWNER","features":[454]},{"name":"WNPERM_DLG_PERM","features":[454]},{"name":"WNPS_DIR","features":[454]},{"name":"WNPS_FILE","features":[454]},{"name":"WNPS_MULT","features":[454]},{"name":"WNSRCH_REFRESH_FIRST_LEVEL","features":[454]},{"name":"WNTYPE_COMM","features":[454]},{"name":"WNTYPE_DRIVE","features":[454]},{"name":"WNTYPE_FILE","features":[454]},{"name":"WNTYPE_PRINTER","features":[454]},{"name":"WN_CREDENTIAL_CLASS","features":[454]},{"name":"WN_NETWORK_CLASS","features":[454]},{"name":"WN_NT_PASSWORD_CHANGED","features":[454]},{"name":"WN_PRIMARY_AUTHENT_CLASS","features":[454]},{"name":"WN_SERVICE_CLASS","features":[454]},{"name":"WN_VALID_LOGON_ACCOUNT","features":[454]},{"name":"WNetAddConnection2A","features":[303,454]},{"name":"WNetAddConnection2W","features":[303,454]},{"name":"WNetAddConnection3A","features":[303,454]},{"name":"WNetAddConnection3W","features":[303,454]},{"name":"WNetAddConnection4A","features":[303,454]},{"name":"WNetAddConnection4W","features":[303,454]},{"name":"WNetAddConnectionA","features":[303,454]},{"name":"WNetAddConnectionW","features":[303,454]},{"name":"WNetCancelConnection2A","features":[303,454]},{"name":"WNetCancelConnection2W","features":[303,454]},{"name":"WNetCancelConnectionA","features":[303,454]},{"name":"WNetCancelConnectionW","features":[303,454]},{"name":"WNetCloseEnum","features":[303,454]},{"name":"WNetConnectionDialog","features":[303,454]},{"name":"WNetConnectionDialog1A","features":[303,454]},{"name":"WNetConnectionDialog1W","features":[303,454]},{"name":"WNetDisconnectDialog","features":[303,454]},{"name":"WNetDisconnectDialog1A","features":[303,454]},{"name":"WNetDisconnectDialog1W","features":[303,454]},{"name":"WNetEnumResourceA","features":[303,454]},{"name":"WNetEnumResourceW","features":[303,454]},{"name":"WNetGetConnectionA","features":[303,454]},{"name":"WNetGetConnectionW","features":[303,454]},{"name":"WNetGetLastErrorA","features":[303,454]},{"name":"WNetGetLastErrorW","features":[303,454]},{"name":"WNetGetNetworkInformationA","features":[303,454]},{"name":"WNetGetNetworkInformationW","features":[303,454]},{"name":"WNetGetProviderNameA","features":[303,454]},{"name":"WNetGetProviderNameW","features":[303,454]},{"name":"WNetGetResourceInformationA","features":[303,454]},{"name":"WNetGetResourceInformationW","features":[303,454]},{"name":"WNetGetResourceParentA","features":[303,454]},{"name":"WNetGetResourceParentW","features":[303,454]},{"name":"WNetGetUniversalNameA","features":[303,454]},{"name":"WNetGetUniversalNameW","features":[303,454]},{"name":"WNetGetUserA","features":[303,454]},{"name":"WNetGetUserW","features":[303,454]},{"name":"WNetOpenEnumA","features":[303,454]},{"name":"WNetOpenEnumW","features":[303,454]},{"name":"WNetSetLastErrorA","features":[454]},{"name":"WNetSetLastErrorW","features":[454]},{"name":"WNetUseConnection4A","features":[303,454]},{"name":"WNetUseConnection4W","features":[303,454]},{"name":"WNetUseConnectionA","features":[303,454]},{"name":"WNetUseConnectionW","features":[303,454]}],"460":[{"name":"AUTHNEXTSTEP","features":[455]},{"name":"CancelRequest","features":[455]},{"name":"DAV_AUTHN_SCHEME_BASIC","features":[455]},{"name":"DAV_AUTHN_SCHEME_CERT","features":[455]},{"name":"DAV_AUTHN_SCHEME_DIGEST","features":[455]},{"name":"DAV_AUTHN_SCHEME_FBA","features":[455]},{"name":"DAV_AUTHN_SCHEME_NEGOTIATE","features":[455]},{"name":"DAV_AUTHN_SCHEME_NTLM","features":[455]},{"name":"DAV_AUTHN_SCHEME_PASSPORT","features":[455]},{"name":"DAV_CALLBACK_AUTH_BLOB","features":[455]},{"name":"DAV_CALLBACK_AUTH_UNP","features":[455]},{"name":"DAV_CALLBACK_CRED","features":[303,455]},{"name":"DavAddConnection","features":[303,455]},{"name":"DavCancelConnectionsToServer","features":[303,455]},{"name":"DavDeleteConnection","features":[303,455]},{"name":"DavFlushFile","features":[303,455]},{"name":"DavGetExtendedError","features":[303,455]},{"name":"DavGetHTTPFromUNCPath","features":[455]},{"name":"DavGetTheLockOwnerOfTheFile","features":[455]},{"name":"DavGetUNCFromHTTPPath","features":[455]},{"name":"DavInvalidateCache","features":[455]},{"name":"DavRegisterAuthCallback","features":[303,455]},{"name":"DavUnregisterAuthCallback","features":[455]},{"name":"DefaultBehavior","features":[455]},{"name":"PFNDAVAUTHCALLBACK","features":[303,455]},{"name":"PFNDAVAUTHCALLBACK_FREECRED","features":[455]},{"name":"RetryRequest","features":[455]}],"461":[{"name":"CH_DESCRIPTION_TYPE","features":[456]},{"name":"DEVPKEY_InfraCast_AccessPointBssid","features":[336,456]},{"name":"DEVPKEY_InfraCast_ChallengeAep","features":[336,456]},{"name":"DEVPKEY_InfraCast_DevnodeAep","features":[336,456]},{"name":"DEVPKEY_InfraCast_HostName_ResolutionMode","features":[336,456]},{"name":"DEVPKEY_InfraCast_PinSupported","features":[336,456]},{"name":"DEVPKEY_InfraCast_RtspTcpConnectionParametersSupported","features":[336,456]},{"name":"DEVPKEY_InfraCast_SinkHostName","features":[336,456]},{"name":"DEVPKEY_InfraCast_SinkIpAddress","features":[336,456]},{"name":"DEVPKEY_InfraCast_StreamSecuritySupported","features":[336,456]},{"name":"DEVPKEY_InfraCast_Supported","features":[336,456]},{"name":"DEVPKEY_PciDevice_AERCapabilityPresent","features":[336,456]},{"name":"DEVPKEY_PciDevice_AcsCapabilityRegister","features":[336,456]},{"name":"DEVPKEY_PciDevice_AcsCompatibleUpHierarchy","features":[336,456]},{"name":"DEVPKEY_PciDevice_AcsSupport","features":[336,456]},{"name":"DEVPKEY_PciDevice_AriSupport","features":[336,456]},{"name":"DEVPKEY_PciDevice_AtomicsSupported","features":[336,456]},{"name":"DEVPKEY_PciDevice_AtsSupport","features":[336,456]},{"name":"DEVPKEY_PciDevice_BarTypes","features":[336,456]},{"name":"DEVPKEY_PciDevice_BaseClass","features":[336,456]},{"name":"DEVPKEY_PciDevice_Correctable_Error_Mask","features":[336,456]},{"name":"DEVPKEY_PciDevice_CurrentLinkSpeed","features":[336,456]},{"name":"DEVPKEY_PciDevice_CurrentLinkWidth","features":[336,456]},{"name":"DEVPKEY_PciDevice_CurrentPayloadSize","features":[336,456]},{"name":"DEVPKEY_PciDevice_CurrentSpeedAndMode","features":[336,456]},{"name":"DEVPKEY_PciDevice_D3ColdSupport","features":[336,456]},{"name":"DEVPKEY_PciDevice_DeviceType","features":[336,456]},{"name":"DEVPKEY_PciDevice_ECRC_Errors","features":[336,456]},{"name":"DEVPKEY_PciDevice_Error_Reporting","features":[336,456]},{"name":"DEVPKEY_PciDevice_ExpressSpecVersion","features":[336,456]},{"name":"DEVPKEY_PciDevice_FirmwareErrorHandling","features":[336,456]},{"name":"DEVPKEY_PciDevice_InterruptMessageMaximum","features":[336,456]},{"name":"DEVPKEY_PciDevice_InterruptSupport","features":[336,456]},{"name":"DEVPKEY_PciDevice_Label_Id","features":[336,456]},{"name":"DEVPKEY_PciDevice_Label_String","features":[336,456]},{"name":"DEVPKEY_PciDevice_MaxLinkSpeed","features":[336,456]},{"name":"DEVPKEY_PciDevice_MaxLinkWidth","features":[336,456]},{"name":"DEVPKEY_PciDevice_MaxPayloadSize","features":[336,456]},{"name":"DEVPKEY_PciDevice_MaxReadRequestSize","features":[336,456]},{"name":"DEVPKEY_PciDevice_OnPostPath","features":[336,456]},{"name":"DEVPKEY_PciDevice_ParentSerialNumber","features":[336,456]},{"name":"DEVPKEY_PciDevice_ProgIf","features":[336,456]},{"name":"DEVPKEY_PciDevice_RequiresReservedMemoryRegion","features":[336,456]},{"name":"DEVPKEY_PciDevice_RootError_Reporting","features":[336,456]},{"name":"DEVPKEY_PciDevice_S0WakeupSupported","features":[336,456]},{"name":"DEVPKEY_PciDevice_SerialNumber","features":[336,456]},{"name":"DEVPKEY_PciDevice_SriovSupport","features":[336,456]},{"name":"DEVPKEY_PciDevice_SubClass","features":[336,456]},{"name":"DEVPKEY_PciDevice_SupportedLinkSubState","features":[336,456]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Mask","features":[336,456]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Severity","features":[336,456]},{"name":"DEVPKEY_PciDevice_UsbComponentRelation","features":[336,456]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortSpecificAttributes","features":[336,456]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortType","features":[336,456]},{"name":"DEVPKEY_PciDevice_UsbHostRouterName","features":[336,456]},{"name":"DEVPKEY_PciRootBus_ASPMSupport","features":[336,456]},{"name":"DEVPKEY_PciRootBus_ClockPowerManagementSupport","features":[336,456]},{"name":"DEVPKEY_PciRootBus_CurrentSpeedAndMode","features":[336,456]},{"name":"DEVPKEY_PciRootBus_DeviceIDMessagingCapable","features":[336,456]},{"name":"DEVPKEY_PciRootBus_ExtendedConfigAvailable","features":[336,456]},{"name":"DEVPKEY_PciRootBus_ExtendedPCIConfigOpRegionSupport","features":[336,456]},{"name":"DEVPKEY_PciRootBus_MSISupport","features":[336,456]},{"name":"DEVPKEY_PciRootBus_NativePciExpressControl","features":[336,456]},{"name":"DEVPKEY_PciRootBus_PCIExpressAERControl","features":[336,456]},{"name":"DEVPKEY_PciRootBus_PCIExpressCapabilityControl","features":[336,456]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativeHotPlugControl","features":[336,456]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativePMEControl","features":[336,456]},{"name":"DEVPKEY_PciRootBus_PCISegmentGroupsSupport","features":[336,456]},{"name":"DEVPKEY_PciRootBus_SHPCNativeHotPlugControl","features":[336,456]},{"name":"DEVPKEY_PciRootBus_SecondaryBusWidth","features":[336,456]},{"name":"DEVPKEY_PciRootBus_SecondaryInterface","features":[336,456]},{"name":"DEVPKEY_PciRootBus_SupportedSpeedsAndModes","features":[336,456]},{"name":"DEVPKEY_PciRootBus_SystemMsiSupport","features":[336,456]},{"name":"DEVPKEY_WiFiDirectServices_AdvertisementId","features":[336,456]},{"name":"DEVPKEY_WiFiDirectServices_RequestServiceInformation","features":[336,456]},{"name":"DEVPKEY_WiFiDirectServices_ServiceAddress","features":[336,456]},{"name":"DEVPKEY_WiFiDirectServices_ServiceConfigMethods","features":[336,456]},{"name":"DEVPKEY_WiFiDirectServices_ServiceInformation","features":[336,456]},{"name":"DEVPKEY_WiFiDirectServices_ServiceName","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_DeviceAddress","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_DeviceAddressCopy","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_FoundWsbService","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_GroupId","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_InformationElements","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_InterfaceAddress","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_InterfaceGuid","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_IsConnected","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_IsDMGCapable","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_IsLegacyDevice","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_IsMiracastLCPSupported","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_IsRecentlyAssociated","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_IsVisible","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_LinkQuality","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_MiracastVersion","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_Miracast_SessionMgmtControlPort","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_NoMiracastAutoProject","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_RtspTcpConnectionParametersSupported","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_Service_Aeps","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_Services","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_SupportedChannelList","features":[336,456]},{"name":"DEVPKEY_WiFiDirect_TransientAssociation","features":[336,456]},{"name":"DEVPKEY_WiFi_InterfaceGuid","features":[336,456]},{"name":"DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY","features":[456]},{"name":"DEVPROP_PCIDEVICE_ACSSUPPORT","features":[456]},{"name":"DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE","features":[456]},{"name":"DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE","features":[456]},{"name":"DEVPROP_PCIDEVICE_INTERRUPTTYPE","features":[456]},{"name":"DEVPROP_PCIDEVICE_SRIOVSUPPORT","features":[456]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKSPEED","features":[456]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH","features":[456]},{"name":"DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE","features":[456]},{"name":"DEVPROP_PCIEXPRESSDEVICE_SPEC_VERSION","features":[456]},{"name":"DEVPROP_PCIROOTBUS_BUSWIDTH","features":[456]},{"name":"DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE","features":[456]},{"name":"DEVPROP_PCIROOTBUS_SECONDARYINTERFACE","features":[456]},{"name":"DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES","features":[456]},{"name":"DISCOVERY_FILTER_BITMASK_ANY","features":[456]},{"name":"DISCOVERY_FILTER_BITMASK_DEVICE","features":[456]},{"name":"DISCOVERY_FILTER_BITMASK_GO","features":[456]},{"name":"DOT11EXTIHV_ADAPTER_RESET","features":[303,456]},{"name":"DOT11EXTIHV_CONTROL","features":[303,456]},{"name":"DOT11EXTIHV_CREATE_DISCOVERY_PROFILES","features":[303,456,457]},{"name":"DOT11EXTIHV_DEINIT_ADAPTER","features":[303,456]},{"name":"DOT11EXTIHV_DEINIT_SERVICE","features":[456]},{"name":"DOT11EXTIHV_GET_VERSION_INFO","features":[456]},{"name":"DOT11EXTIHV_INIT_ADAPTER","features":[303,456]},{"name":"DOT11EXTIHV_INIT_SERVICE","features":[303,317,456,457,458]},{"name":"DOT11EXTIHV_INIT_VIRTUAL_STATION","features":[303,456]},{"name":"DOT11EXTIHV_IS_UI_REQUEST_PENDING","features":[303,456]},{"name":"DOT11EXTIHV_ONEX_INDICATE_RESULT","features":[303,456,457]},{"name":"DOT11EXTIHV_PERFORM_CAPABILITY_MATCH","features":[303,456,457]},{"name":"DOT11EXTIHV_PERFORM_POST_ASSOCIATE","features":[303,317,456]},{"name":"DOT11EXTIHV_PERFORM_PRE_ASSOCIATE","features":[303,456,457]},{"name":"DOT11EXTIHV_PROCESS_SESSION_CHANGE","features":[456,458]},{"name":"DOT11EXTIHV_PROCESS_UI_RESPONSE","features":[456]},{"name":"DOT11EXTIHV_QUERY_UI_REQUEST","features":[303,456]},{"name":"DOT11EXTIHV_RECEIVE_INDICATION","features":[303,456]},{"name":"DOT11EXTIHV_RECEIVE_PACKET","features":[303,456]},{"name":"DOT11EXTIHV_SEND_PACKET_COMPLETION","features":[303,456]},{"name":"DOT11EXTIHV_STOP_POST_ASSOCIATE","features":[303,456]},{"name":"DOT11EXTIHV_VALIDATE_PROFILE","features":[303,456,457]},{"name":"DOT11EXT_ALLOCATE_BUFFER","features":[456]},{"name":"DOT11EXT_APIS","features":[303,317,456,457]},{"name":"DOT11EXT_FREE_BUFFER","features":[456]},{"name":"DOT11EXT_GET_PROFILE_CUSTOM_USER_DATA","features":[303,456]},{"name":"DOT11EXT_IHV_CONNECTION_PHASE","features":[456]},{"name":"DOT11EXT_IHV_CONNECTIVITY_PROFILE","features":[456]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE","features":[303,456]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE_LIST","features":[303,456]},{"name":"DOT11EXT_IHV_HANDLERS","features":[303,317,456,457,458]},{"name":"DOT11EXT_IHV_INDICATION_TYPE","features":[456]},{"name":"DOT11EXT_IHV_PARAMS","features":[303,456,457]},{"name":"DOT11EXT_IHV_PROFILE_PARAMS","features":[303,456,457]},{"name":"DOT11EXT_IHV_SECURITY_PROFILE","features":[303,456]},{"name":"DOT11EXT_IHV_SSID_LIST","features":[456]},{"name":"DOT11EXT_IHV_UI_REQUEST","features":[456]},{"name":"DOT11EXT_NIC_SPECIFIC_EXTENSION","features":[303,456]},{"name":"DOT11EXT_ONEX_START","features":[303,456,457]},{"name":"DOT11EXT_ONEX_STOP","features":[303,456]},{"name":"DOT11EXT_POST_ASSOCIATE_COMPLETION","features":[303,456]},{"name":"DOT11EXT_PRE_ASSOCIATE_COMPLETION","features":[303,456]},{"name":"DOT11EXT_PROCESS_ONEX_PACKET","features":[303,456]},{"name":"DOT11EXT_PSK_MAX_LENGTH","features":[456]},{"name":"DOT11EXT_QUERY_VIRTUAL_STATION_PROPERTIES","features":[303,456]},{"name":"DOT11EXT_RELEASE_VIRTUAL_STATION","features":[303,456]},{"name":"DOT11EXT_REQUEST_VIRTUAL_STATION","features":[303,456]},{"name":"DOT11EXT_SEND_NOTIFICATION","features":[303,456]},{"name":"DOT11EXT_SEND_PACKET","features":[303,456]},{"name":"DOT11EXT_SEND_UI_REQUEST","features":[303,456]},{"name":"DOT11EXT_SET_AUTH_ALGORITHM","features":[303,456]},{"name":"DOT11EXT_SET_CURRENT_PROFILE","features":[303,456]},{"name":"DOT11EXT_SET_DEFAULT_KEY","features":[303,317,456]},{"name":"DOT11EXT_SET_DEFAULT_KEY_ID","features":[303,456]},{"name":"DOT11EXT_SET_ETHERTYPE_HANDLING","features":[303,456]},{"name":"DOT11EXT_SET_EXCLUDE_UNENCRYPTED","features":[303,456]},{"name":"DOT11EXT_SET_KEY_MAPPING_KEY","features":[303,456]},{"name":"DOT11EXT_SET_MULTICAST_CIPHER_ALGORITHM","features":[303,456]},{"name":"DOT11EXT_SET_PROFILE_CUSTOM_USER_DATA","features":[303,456]},{"name":"DOT11EXT_SET_UNICAST_CIPHER_ALGORITHM","features":[303,456]},{"name":"DOT11EXT_SET_VIRTUAL_STATION_AP_PROPERTIES","features":[303,456]},{"name":"DOT11EXT_VIRTUAL_STATION_APIS","features":[303,456]},{"name":"DOT11EXT_VIRTUAL_STATION_AP_PROPERTY","features":[303,456]},{"name":"DOT11_ACCESSNETWORKOPTIONS","features":[456]},{"name":"DOT11_AC_PARAM","features":[456]},{"name":"DOT11_ADAPTER","features":[456]},{"name":"DOT11_ADDITIONAL_IE","features":[317,456]},{"name":"DOT11_ADDITIONAL_IE_REVISION_1","features":[456]},{"name":"DOT11_ADHOC_AUTH_ALGORITHM","features":[456]},{"name":"DOT11_ADHOC_AUTH_ALGO_80211_OPEN","features":[456]},{"name":"DOT11_ADHOC_AUTH_ALGO_INVALID","features":[456]},{"name":"DOT11_ADHOC_AUTH_ALGO_RSNA_PSK","features":[456]},{"name":"DOT11_ADHOC_CIPHER_ALGORITHM","features":[456]},{"name":"DOT11_ADHOC_CIPHER_ALGO_CCMP","features":[456]},{"name":"DOT11_ADHOC_CIPHER_ALGO_INVALID","features":[456]},{"name":"DOT11_ADHOC_CIPHER_ALGO_NONE","features":[456]},{"name":"DOT11_ADHOC_CIPHER_ALGO_WEP","features":[456]},{"name":"DOT11_ADHOC_CONNECT_FAIL_DOMAIN_MISMATCH","features":[456]},{"name":"DOT11_ADHOC_CONNECT_FAIL_OTHER","features":[456]},{"name":"DOT11_ADHOC_CONNECT_FAIL_PASSPHRASE_MISMATCH","features":[456]},{"name":"DOT11_ADHOC_CONNECT_FAIL_REASON","features":[456]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS","features":[456]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTED","features":[456]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTING","features":[456]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_DISCONNECTED","features":[456]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_FORMED","features":[456]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_INVALID","features":[456]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS","features":[303,317,456]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_ANQP_QUERY_RESULT","features":[456]},{"name":"DOT11_AP_JOIN_REQUEST","features":[456]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS","features":[303,317,456]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_2","features":[456]},{"name":"DOT11_ASSOCIATION_INFO_EX","features":[456]},{"name":"DOT11_ASSOCIATION_INFO_LIST","features":[317,456]},{"name":"DOT11_ASSOCIATION_INFO_LIST_REVISION_1","features":[456]},{"name":"DOT11_ASSOCIATION_PARAMS","features":[317,456]},{"name":"DOT11_ASSOCIATION_PARAMS_REVISION_1","features":[456]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS","features":[317,456]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_ASSOCIATION_STATE","features":[456]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OS","features":[456]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OTHER","features":[456]},{"name":"DOT11_ASSOC_ERROR_SOURCE_REMOTE","features":[456]},{"name":"DOT11_ASSOC_STATUS_SUCCESS","features":[456]},{"name":"DOT11_AUTH_ALGORITHM","features":[456]},{"name":"DOT11_AUTH_ALGORITHM_LIST","features":[317,456]},{"name":"DOT11_AUTH_ALGORITHM_LIST_REVISION_1","features":[456]},{"name":"DOT11_AUTH_ALGO_80211_OPEN","features":[456]},{"name":"DOT11_AUTH_ALGO_80211_SHARED_KEY","features":[456]},{"name":"DOT11_AUTH_ALGO_IHV_END","features":[456]},{"name":"DOT11_AUTH_ALGO_IHV_START","features":[456]},{"name":"DOT11_AUTH_ALGO_MICHAEL","features":[456]},{"name":"DOT11_AUTH_ALGO_OWE","features":[456]},{"name":"DOT11_AUTH_ALGO_RSNA","features":[456]},{"name":"DOT11_AUTH_ALGO_RSNA_PSK","features":[456]},{"name":"DOT11_AUTH_ALGO_WPA","features":[456]},{"name":"DOT11_AUTH_ALGO_WPA3","features":[456]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT","features":[456]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT_192","features":[456]},{"name":"DOT11_AUTH_ALGO_WPA3_SAE","features":[456]},{"name":"DOT11_AUTH_ALGO_WPA_NONE","features":[456]},{"name":"DOT11_AUTH_ALGO_WPA_PSK","features":[456]},{"name":"DOT11_AUTH_CIPHER_PAIR","features":[456]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST","features":[317,456]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST_REVISION_1","features":[456]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST","features":[317,456]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST_REVISION_1","features":[456]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST","features":[317,456]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST_REVISION_1","features":[456]},{"name":"DOT11_BAND","features":[456]},{"name":"DOT11_BSSID_CANDIDATE","features":[456]},{"name":"DOT11_BSSID_LIST","features":[317,456]},{"name":"DOT11_BSSID_LIST_REVISION_1","features":[456]},{"name":"DOT11_BSS_DESCRIPTION","features":[456]},{"name":"DOT11_BSS_ENTRY","features":[303,456]},{"name":"DOT11_BSS_ENTRY_BYTE_ARRAY_REVISION_1","features":[456]},{"name":"DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO","features":[456]},{"name":"DOT11_BSS_LIST","features":[456]},{"name":"DOT11_BSS_TYPE","features":[456]},{"name":"DOT11_BYTE_ARRAY","features":[317,456]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS","features":[317,456]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_END","features":[456]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_START","features":[456]},{"name":"DOT11_CAPABILITY_CHANNEL_AGILITY","features":[456]},{"name":"DOT11_CAPABILITY_DSSSOFDM","features":[456]},{"name":"DOT11_CAPABILITY_INFO_CF_POLLABLE","features":[456]},{"name":"DOT11_CAPABILITY_INFO_CF_POLL_REQ","features":[456]},{"name":"DOT11_CAPABILITY_INFO_ESS","features":[456]},{"name":"DOT11_CAPABILITY_INFO_IBSS","features":[456]},{"name":"DOT11_CAPABILITY_INFO_PRIVACY","features":[456]},{"name":"DOT11_CAPABILITY_PBCC","features":[456]},{"name":"DOT11_CAPABILITY_SHORT_PREAMBLE","features":[456]},{"name":"DOT11_CAPABILITY_SHORT_SLOT_TIME","features":[456]},{"name":"DOT11_CCA_MODE_CS_ONLY","features":[456]},{"name":"DOT11_CCA_MODE_CS_WITH_TIMER","features":[456]},{"name":"DOT11_CCA_MODE_ED_ONLY","features":[456]},{"name":"DOT11_CCA_MODE_ED_and_CS","features":[456]},{"name":"DOT11_CCA_MODE_HRCS_AND_ED","features":[456]},{"name":"DOT11_CHANNEL_HINT","features":[456]},{"name":"DOT11_CIPHER_ALGORITHM","features":[456]},{"name":"DOT11_CIPHER_ALGORITHM_LIST","features":[317,456]},{"name":"DOT11_CIPHER_ALGORITHM_LIST_REVISION_1","features":[456]},{"name":"DOT11_CIPHER_ALGO_BIP","features":[456]},{"name":"DOT11_CIPHER_ALGO_BIP_CMAC_256","features":[456]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_128","features":[456]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_256","features":[456]},{"name":"DOT11_CIPHER_ALGO_CCMP","features":[456]},{"name":"DOT11_CIPHER_ALGO_CCMP_256","features":[456]},{"name":"DOT11_CIPHER_ALGO_GCMP","features":[456]},{"name":"DOT11_CIPHER_ALGO_GCMP_256","features":[456]},{"name":"DOT11_CIPHER_ALGO_IHV_END","features":[456]},{"name":"DOT11_CIPHER_ALGO_IHV_START","features":[456]},{"name":"DOT11_CIPHER_ALGO_NONE","features":[456]},{"name":"DOT11_CIPHER_ALGO_RSN_USE_GROUP","features":[456]},{"name":"DOT11_CIPHER_ALGO_TKIP","features":[456]},{"name":"DOT11_CIPHER_ALGO_WEP","features":[456]},{"name":"DOT11_CIPHER_ALGO_WEP104","features":[456]},{"name":"DOT11_CIPHER_ALGO_WEP40","features":[456]},{"name":"DOT11_CIPHER_ALGO_WPA_USE_GROUP","features":[456]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE","features":[303,317,456]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE_REVISION_1","features":[456]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE","features":[303,456]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE_BYTE_ARRAY_REVISION_1","features":[456]},{"name":"DOT11_CONF_ALGO_TKIP","features":[456]},{"name":"DOT11_CONF_ALGO_WEP_RC4","features":[456]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS","features":[317,456]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_CONNECTION_START_PARAMETERS","features":[317,456]},{"name":"DOT11_CONNECTION_START_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_CONNECTION_STATUS_SUCCESS","features":[456]},{"name":"DOT11_COUNTERS_ENTRY","features":[456]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST","features":[317,456]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST_REVISION_1","features":[456]},{"name":"DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[456]},{"name":"DOT11_CURRENT_OPERATION_MODE","features":[456]},{"name":"DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[303,456]},{"name":"DOT11_DATA_RATE_MAPPING_ENTRY","features":[456]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE","features":[317,456]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE_REVISION_1","features":[456]},{"name":"DOT11_DEFAULT_WEP_OFFLOAD","features":[303,456]},{"name":"DOT11_DEFAULT_WEP_UPLOAD","features":[303,456]},{"name":"DOT11_DEVICE_ENTRY_BYTE_ARRAY_REVISION_1","features":[456]},{"name":"DOT11_DIRECTION","features":[456]},{"name":"DOT11_DIR_BOTH","features":[456]},{"name":"DOT11_DIR_INBOUND","features":[456]},{"name":"DOT11_DIR_OUTBOUND","features":[456]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST","features":[317,456]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST_REVISION_1","features":[456]},{"name":"DOT11_DISASSOCIATION_PARAMETERS","features":[317,456]},{"name":"DOT11_DISASSOCIATION_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_DIVERSITY_SELECTION_RX","features":[303,456]},{"name":"DOT11_DIVERSITY_SELECTION_RX_LIST","features":[303,456]},{"name":"DOT11_DIVERSITY_SUPPORT","features":[456]},{"name":"DOT11_DS_CHANGED","features":[456]},{"name":"DOT11_DS_INFO","features":[456]},{"name":"DOT11_DS_UNCHANGED","features":[456]},{"name":"DOT11_DS_UNKNOWN","features":[456]},{"name":"DOT11_EAP_RESULT","features":[456,457]},{"name":"DOT11_ENCAP_802_1H","features":[456]},{"name":"DOT11_ENCAP_ENTRY","features":[456]},{"name":"DOT11_ENCAP_RFC_1042","features":[456]},{"name":"DOT11_ERP_PHY_ATTRIBUTES","features":[303,456]},{"name":"DOT11_EXEMPT_ALWAYS","features":[456]},{"name":"DOT11_EXEMPT_BOTH","features":[456]},{"name":"DOT11_EXEMPT_MULTICAST","features":[456]},{"name":"DOT11_EXEMPT_NO_EXEMPTION","features":[456]},{"name":"DOT11_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE","features":[456]},{"name":"DOT11_EXEMPT_UNICAST","features":[456]},{"name":"DOT11_EXTAP_ATTRIBUTES","features":[303,317,456]},{"name":"DOT11_EXTAP_ATTRIBUTES_REVISION_1","features":[456]},{"name":"DOT11_EXTAP_RECV_CONTEXT_REVISION_1","features":[456]},{"name":"DOT11_EXTAP_SEND_CONTEXT_REVISION_1","features":[456]},{"name":"DOT11_EXTSTA_ATTRIBUTES","features":[303,317,456]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_1","features":[456]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_2","features":[456]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_3","features":[456]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_4","features":[456]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_CERTIFIED","features":[456]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_OID_SUPPORTED","features":[456]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_RESERVED","features":[456]},{"name":"DOT11_EXTSTA_CAPABILITY","features":[317,456]},{"name":"DOT11_EXTSTA_CAPABILITY_REVISION_1","features":[456]},{"name":"DOT11_EXTSTA_RECV_CONTEXT","features":[317,456]},{"name":"DOT11_EXTSTA_RECV_CONTEXT_REVISION_1","features":[456]},{"name":"DOT11_EXTSTA_SEND_CONTEXT","features":[317,456]},{"name":"DOT11_EXTSTA_SEND_CONTEXT_REVISION_1","features":[456]},{"name":"DOT11_FLAGS_80211B_CHANNEL_AGILITY","features":[456]},{"name":"DOT11_FLAGS_80211B_PBCC","features":[456]},{"name":"DOT11_FLAGS_80211B_SHORT_PREAMBLE","features":[456]},{"name":"DOT11_FLAGS_80211G_BARKER_PREAMBLE_MODE","features":[456]},{"name":"DOT11_FLAGS_80211G_DSSS_OFDM","features":[456]},{"name":"DOT11_FLAGS_80211G_NON_ERP_PRESENT","features":[456]},{"name":"DOT11_FLAGS_80211G_USE_PROTECTION","features":[456]},{"name":"DOT11_FLAGS_PS_ON","features":[456]},{"name":"DOT11_FRAGMENT_DESCRIPTOR","features":[456]},{"name":"DOT11_FREQUENCY_BANDS_LOWER","features":[456]},{"name":"DOT11_FREQUENCY_BANDS_MIDDLE","features":[456]},{"name":"DOT11_FREQUENCY_BANDS_UPPER","features":[456]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_HESSID_LENGTH","features":[456]},{"name":"DOT11_HOPPING_PATTERN_ENTRY","features":[456]},{"name":"DOT11_HOPPING_PATTERN_ENTRY_LIST","features":[456]},{"name":"DOT11_HOP_ALGO_ADOPTED","features":[456]},{"name":"DOT11_HRDSSS_PHY_ATTRIBUTES","features":[303,456]},{"name":"DOT11_HR_CCA_MODE_CS_AND_ED","features":[456]},{"name":"DOT11_HR_CCA_MODE_CS_ONLY","features":[456]},{"name":"DOT11_HR_CCA_MODE_CS_WITH_TIMER","features":[456]},{"name":"DOT11_HR_CCA_MODE_ED_ONLY","features":[456]},{"name":"DOT11_HR_CCA_MODE_HRCS_AND_ED","features":[456]},{"name":"DOT11_HW_DEFRAGMENTATION_SUPPORTED","features":[456]},{"name":"DOT11_HW_FRAGMENTATION_SUPPORTED","features":[456]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_RX","features":[456]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_TX","features":[456]},{"name":"DOT11_HW_WEP_SUPPORTED_RX","features":[456]},{"name":"DOT11_HW_WEP_SUPPORTED_TX","features":[456]},{"name":"DOT11_IBSS_PARAMS","features":[303,317,456]},{"name":"DOT11_IBSS_PARAMS_REVISION_1","features":[456]},{"name":"DOT11_IHV_VERSION_INFO","features":[456]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS","features":[303,317,456]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_INCOMING_ASSOC_DECISION","features":[303,317,456]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_1","features":[456]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_2","features":[456]},{"name":"DOT11_INCOMING_ASSOC_DECISION_V2","features":[303,317,456]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS","features":[303,317,456]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS","features":[317,456]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_INVALID_CHANNEL_NUMBER","features":[456]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_IV48_COUNTER","features":[456]},{"name":"DOT11_JOIN_REQUEST","features":[456]},{"name":"DOT11_KEY_ALGO_BIP","features":[456]},{"name":"DOT11_KEY_ALGO_BIP_GMAC_256","features":[456]},{"name":"DOT11_KEY_ALGO_CCMP","features":[456]},{"name":"DOT11_KEY_ALGO_GCMP","features":[456]},{"name":"DOT11_KEY_ALGO_GCMP_256","features":[456]},{"name":"DOT11_KEY_ALGO_TKIP_MIC","features":[456]},{"name":"DOT11_KEY_DIRECTION","features":[456]},{"name":"DOT11_LINK_QUALITY_ENTRY","features":[456]},{"name":"DOT11_LINK_QUALITY_PARAMETERS","features":[317,456]},{"name":"DOT11_LINK_QUALITY_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_MAC_ADDRESS_LIST","features":[317,456]},{"name":"DOT11_MAC_ADDRESS_LIST_REVISION_1","features":[456]},{"name":"DOT11_MAC_FRAME_STATISTICS","features":[456]},{"name":"DOT11_MAC_INFO","features":[456]},{"name":"DOT11_MAC_PARAMETERS","features":[317,456]},{"name":"DOT11_MAC_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_MANUFACTURING_CALLBACK_PARAMETERS","features":[317,456]},{"name":"DOT11_MANUFACTURING_CALLBACK_REVISION_1","features":[456]},{"name":"DOT11_MANUFACTURING_CALLBACK_TYPE","features":[456]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_QUERY_ADC","features":[456]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_RX","features":[303,456]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_TX","features":[303,456]},{"name":"DOT11_MANUFACTURING_SELF_TEST_QUERY_RESULTS","features":[303,456]},{"name":"DOT11_MANUFACTURING_SELF_TEST_SET_PARAMS","features":[456]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE","features":[456]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_BT_COEXISTENCE","features":[456]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_INTERFACE","features":[456]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_RF_INTERFACE","features":[456]},{"name":"DOT11_MANUFACTURING_TEST","features":[456]},{"name":"DOT11_MANUFACTURING_TEST_QUERY_DATA","features":[456]},{"name":"DOT11_MANUFACTURING_TEST_REVISION_1","features":[456]},{"name":"DOT11_MANUFACTURING_TEST_SET_DATA","features":[456]},{"name":"DOT11_MANUFACTURING_TEST_SLEEP","features":[456]},{"name":"DOT11_MANUFACTURING_TEST_TYPE","features":[456]},{"name":"DOT11_MAX_CHANNEL_HINTS","features":[456]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY","features":[456]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY_MFP","features":[456]},{"name":"DOT11_MAX_NUM_OF_FRAGMENTS","features":[456]},{"name":"DOT11_MAX_PDU_SIZE","features":[456]},{"name":"DOT11_MAX_REQUESTED_SERVICE_INFORMATION_LENGTH","features":[456]},{"name":"DOT11_MD_CAPABILITY_ENTRY_LIST","features":[456]},{"name":"DOT11_MIN_PDU_SIZE","features":[456]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION","features":[317,456]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION_REVISION_1","features":[456]},{"name":"DOT11_MSONEX_FAILURE","features":[456]},{"name":"DOT11_MSONEX_IN_PROGRESS","features":[456]},{"name":"DOT11_MSONEX_RESULT","features":[456]},{"name":"DOT11_MSONEX_RESULT_PARAMS","features":[456,457]},{"name":"DOT11_MSONEX_SUCCESS","features":[456]},{"name":"DOT11_MSSECURITY_SETTINGS","features":[303,456,457]},{"name":"DOT11_MULTI_DOMAIN_CAPABILITY_ENTRY","features":[456]},{"name":"DOT11_NETWORK","features":[456]},{"name":"DOT11_NETWORK_LIST","features":[456]},{"name":"DOT11_NIC_SPECIFIC_EXTENSION","features":[456]},{"name":"DOT11_NLO_FLAG_SCAN_AT_SYSTEM_RESUME","features":[456]},{"name":"DOT11_NLO_FLAG_SCAN_ON_AOAC_PLATFORM","features":[456]},{"name":"DOT11_NLO_FLAG_STOP_NLO_INDICATION","features":[456]},{"name":"DOT11_OFDM_PHY_ATTRIBUTES","features":[456]},{"name":"DOT11_OFFLOAD_CAPABILITY","features":[456]},{"name":"DOT11_OFFLOAD_NETWORK","features":[456]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_INFO","features":[317,456]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_REVISION_1","features":[456]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS","features":[317,456]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_OFFLOAD_TYPE","features":[456]},{"name":"DOT11_OI","features":[456]},{"name":"DOT11_OI_MAX_LENGTH","features":[456]},{"name":"DOT11_OI_MIN_LENGTH","features":[456]},{"name":"DOT11_OPERATION_MODE_AP","features":[456]},{"name":"DOT11_OPERATION_MODE_CAPABILITY","features":[456]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_AP","features":[456]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_STATION","features":[456]},{"name":"DOT11_OPERATION_MODE_MANUFACTURING","features":[456]},{"name":"DOT11_OPERATION_MODE_NETWORK_MONITOR","features":[456]},{"name":"DOT11_OPERATION_MODE_STATION","features":[456]},{"name":"DOT11_OPERATION_MODE_UNKNOWN","features":[456]},{"name":"DOT11_OPERATION_MODE_WFD_CLIENT","features":[456]},{"name":"DOT11_OPERATION_MODE_WFD_DEVICE","features":[456]},{"name":"DOT11_OPERATION_MODE_WFD_GROUP_OWNER","features":[456]},{"name":"DOT11_OPTIONAL_CAPABILITY","features":[303,456]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_CTRL","features":[456]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_DATA","features":[456]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_MGMT","features":[456]},{"name":"DOT11_PACKET_TYPE_BROADCAST_CTRL","features":[456]},{"name":"DOT11_PACKET_TYPE_BROADCAST_DATA","features":[456]},{"name":"DOT11_PACKET_TYPE_BROADCAST_MGMT","features":[456]},{"name":"DOT11_PACKET_TYPE_DIRECTED_CTRL","features":[456]},{"name":"DOT11_PACKET_TYPE_DIRECTED_DATA","features":[456]},{"name":"DOT11_PACKET_TYPE_DIRECTED_MGMT","features":[456]},{"name":"DOT11_PACKET_TYPE_MULTICAST_CTRL","features":[456]},{"name":"DOT11_PACKET_TYPE_MULTICAST_DATA","features":[456]},{"name":"DOT11_PACKET_TYPE_MULTICAST_MGMT","features":[456]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_CTRL","features":[456]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_DATA","features":[456]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_MGMT","features":[456]},{"name":"DOT11_PEER_INFO","features":[303,456]},{"name":"DOT11_PEER_INFO_LIST","features":[303,317,456]},{"name":"DOT11_PEER_INFO_LIST_REVISION_1","features":[456]},{"name":"DOT11_PEER_STATISTICS","features":[456]},{"name":"DOT11_PER_MSDU_COUNTERS","features":[456]},{"name":"DOT11_PHY_ATTRIBUTES","features":[303,317,456]},{"name":"DOT11_PHY_ATTRIBUTES_REVISION_1","features":[456]},{"name":"DOT11_PHY_FRAME_STATISTICS","features":[456]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS","features":[317,456]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_PHY_ID_LIST","features":[317,456]},{"name":"DOT11_PHY_ID_LIST_REVISION_1","features":[456]},{"name":"DOT11_PHY_STATE_PARAMETERS","features":[303,317,456]},{"name":"DOT11_PHY_STATE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_PHY_TYPE","features":[456]},{"name":"DOT11_PHY_TYPE_INFO","features":[303,456]},{"name":"DOT11_PHY_TYPE_LIST","features":[317,456]},{"name":"DOT11_PHY_TYPE_LIST_REVISION_1","features":[456]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS","features":[317,456]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_PMKID_ENTRY","features":[456]},{"name":"DOT11_PMKID_LIST","features":[317,456]},{"name":"DOT11_PMKID_LIST_REVISION_1","features":[456]},{"name":"DOT11_PORT_STATE","features":[303,456]},{"name":"DOT11_PORT_STATE_NOTIFICATION","features":[303,317,456]},{"name":"DOT11_PORT_STATE_NOTIFICATION_REVISION_1","features":[456]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_INFO","features":[303,317,456]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_REVISION_1","features":[456]},{"name":"DOT11_POWER_MGMT_MODE","features":[303,456]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO","features":[317,456]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO_REVISION_1","features":[456]},{"name":"DOT11_POWER_MODE","features":[456]},{"name":"DOT11_POWER_MODE_REASON","features":[456]},{"name":"DOT11_POWER_SAVE_LEVEL_FAST_PSP","features":[456]},{"name":"DOT11_POWER_SAVE_LEVEL_MAX_PSP","features":[456]},{"name":"DOT11_POWER_SAVING_FAST_PSP","features":[456]},{"name":"DOT11_POWER_SAVING_MAXIMUM_LEVEL","features":[456]},{"name":"DOT11_POWER_SAVING_MAX_PSP","features":[456]},{"name":"DOT11_POWER_SAVING_NO_POWER_SAVING","features":[456]},{"name":"DOT11_PRIORITY_CONTENTION","features":[456]},{"name":"DOT11_PRIORITY_CONTENTION_FREE","features":[456]},{"name":"DOT11_PRIVACY_EXEMPTION","features":[456]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST","features":[317,456]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST_REVISION_1","features":[456]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_PSD_IE_MAX_DATA_SIZE","features":[456]},{"name":"DOT11_PSD_IE_MAX_ENTRY_NUMBER","features":[456]},{"name":"DOT11_QOS_PARAMS","features":[317,456]},{"name":"DOT11_QOS_PARAMS_REVISION_1","features":[456]},{"name":"DOT11_QOS_TX_DURATION","features":[456]},{"name":"DOT11_QOS_TX_MEDIUM_TIME","features":[456]},{"name":"DOT11_RADIO_STATE","features":[456]},{"name":"DOT11_RATE_SET","features":[456]},{"name":"DOT11_RATE_SET_MAX_LENGTH","features":[456]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[317,456]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[317,456]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[317,456]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS","features":[317,456]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS","features":[317,456]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[317,456]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[317,456]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RECV_CONTEXT_REVISION_1","features":[456]},{"name":"DOT11_RECV_EXTENSION_INFO","features":[303,456]},{"name":"DOT11_RECV_EXTENSION_INFO_V2","features":[303,456]},{"name":"DOT11_RECV_SENSITIVITY","features":[456]},{"name":"DOT11_RECV_SENSITIVITY_LIST","features":[456]},{"name":"DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[456]},{"name":"DOT11_REG_DOMAIN_DOC","features":[456]},{"name":"DOT11_REG_DOMAIN_ETSI","features":[456]},{"name":"DOT11_REG_DOMAIN_FCC","features":[456]},{"name":"DOT11_REG_DOMAIN_FRANCE","features":[456]},{"name":"DOT11_REG_DOMAIN_MKK","features":[456]},{"name":"DOT11_REG_DOMAIN_OTHER","features":[456]},{"name":"DOT11_REG_DOMAIN_SPAIN","features":[456]},{"name":"DOT11_REG_DOMAIN_VALUE","features":[456]},{"name":"DOT11_RESET_REQUEST","features":[303,456]},{"name":"DOT11_RESET_TYPE","features":[456]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS","features":[317,456]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_ROAMING_START_PARAMETERS","features":[317,456]},{"name":"DOT11_ROAMING_START_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_RSSI_RANGE","features":[456]},{"name":"DOT11_SCAN_REQUEST","features":[303,456]},{"name":"DOT11_SCAN_REQUEST_V2","features":[303,456]},{"name":"DOT11_SCAN_TYPE","features":[456]},{"name":"DOT11_SECURITY_PACKET_HEADER","features":[456]},{"name":"DOT11_SEND_CONTEXT_REVISION_1","features":[456]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[303,317,456]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[317,456]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[303,317,456]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS","features":[303,317,456]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS","features":[303,317,456]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[303,317,456]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[317,456]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_SERVICE_CLASS_REORDERABLE_MULTICAST","features":[456]},{"name":"DOT11_SERVICE_CLASS_STRICTLY_ORDERED","features":[456]},{"name":"DOT11_SSID","features":[456]},{"name":"DOT11_SSID_LIST","features":[317,456]},{"name":"DOT11_SSID_LIST_REVISION_1","features":[456]},{"name":"DOT11_SSID_MAX_LENGTH","features":[456]},{"name":"DOT11_START_REQUEST","features":[456]},{"name":"DOT11_STATISTICS","features":[317,456]},{"name":"DOT11_STATISTICS_REVISION_1","features":[456]},{"name":"DOT11_STATUS_AP_JOIN_CONFIRM","features":[456]},{"name":"DOT11_STATUS_AUTH_FAILED","features":[456]},{"name":"DOT11_STATUS_AUTH_NOT_VERIFIED","features":[456]},{"name":"DOT11_STATUS_AUTH_VERIFIED","features":[456]},{"name":"DOT11_STATUS_ENCRYPTION_FAILED","features":[456]},{"name":"DOT11_STATUS_EXCESSIVE_DATA_LENGTH","features":[456]},{"name":"DOT11_STATUS_GENERATE_AUTH_FAILED","features":[456]},{"name":"DOT11_STATUS_ICV_VERIFIED","features":[456]},{"name":"DOT11_STATUS_INDICATION","features":[456]},{"name":"DOT11_STATUS_JOIN_CONFIRM","features":[456]},{"name":"DOT11_STATUS_MPDU_MAX_LENGTH_CHANGED","features":[456]},{"name":"DOT11_STATUS_PACKET_NOT_REASSEMBLED","features":[456]},{"name":"DOT11_STATUS_PACKET_REASSEMBLED","features":[456]},{"name":"DOT11_STATUS_PS_LIFETIME_EXPIRED","features":[456]},{"name":"DOT11_STATUS_RESET_CONFIRM","features":[456]},{"name":"DOT11_STATUS_RETRY_LIMIT_EXCEEDED","features":[456]},{"name":"DOT11_STATUS_SCAN_CONFIRM","features":[456]},{"name":"DOT11_STATUS_START_CONFIRM","features":[456]},{"name":"DOT11_STATUS_SUCCESS","features":[456]},{"name":"DOT11_STATUS_UNAVAILABLE_BSS","features":[456]},{"name":"DOT11_STATUS_UNAVAILABLE_PRIORITY","features":[456]},{"name":"DOT11_STATUS_UNAVAILABLE_SERVICE_CLASS","features":[456]},{"name":"DOT11_STATUS_UNSUPPORTED_PRIORITY","features":[456]},{"name":"DOT11_STATUS_UNSUPPORTED_SERVICE_CLASS","features":[456]},{"name":"DOT11_STATUS_WEP_KEY_UNAVAILABLE","features":[456]},{"name":"DOT11_STATUS_XMIT_MSDU_TIMER_EXPIRED","features":[456]},{"name":"DOT11_STOP_AP_PARAMETERS","features":[317,456]},{"name":"DOT11_STOP_AP_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_STOP_AP_REASON_AP_ACTIVE","features":[456]},{"name":"DOT11_STOP_AP_REASON_CHANNEL_NOT_AVAILABLE","features":[456]},{"name":"DOT11_STOP_AP_REASON_FREQUENCY_NOT_AVAILABLE","features":[456]},{"name":"DOT11_STOP_AP_REASON_IHV_END","features":[456]},{"name":"DOT11_STOP_AP_REASON_IHV_START","features":[456]},{"name":"DOT11_SUPPORTED_ANTENNA","features":[303,456]},{"name":"DOT11_SUPPORTED_ANTENNA_LIST","features":[303,456]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE","features":[456]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE_V2","features":[456]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL","features":[456]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[456]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY","features":[456]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[456]},{"name":"DOT11_SUPPORTED_PHY_TYPES","features":[456]},{"name":"DOT11_SUPPORTED_POWER_LEVELS","features":[456]},{"name":"DOT11_TEMP_TYPE","features":[456]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS","features":[303,317,456]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_UPDATE_IE","features":[456]},{"name":"DOT11_UPDATE_IE_OP","features":[456]},{"name":"DOT11_VENUEINFO","features":[456]},{"name":"DOT11_VWIFI_ATTRIBUTES","features":[317,456]},{"name":"DOT11_VWIFI_ATTRIBUTES_REVISION_1","features":[456]},{"name":"DOT11_VWIFI_COMBINATION","features":[317,456]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_1","features":[456]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_2","features":[456]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_3","features":[456]},{"name":"DOT11_VWIFI_COMBINATION_V2","features":[317,456]},{"name":"DOT11_VWIFI_COMBINATION_V3","features":[317,456]},{"name":"DOT11_WEP_OFFLOAD","features":[303,456]},{"name":"DOT11_WEP_UPLOAD","features":[303,456]},{"name":"DOT11_WFD_ADDITIONAL_IE","features":[317,456]},{"name":"DOT11_WFD_ADDITIONAL_IE_REVISION_1","features":[456]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_DESCRIPTOR","features":[456]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_LIST","features":[456]},{"name":"DOT11_WFD_ADVERTISEMENT_ID","features":[456]},{"name":"DOT11_WFD_APS2_SERVICE_TYPE_MAX_LENGTH","features":[456]},{"name":"DOT11_WFD_ASP2_INSTANCE_NAME_MAX_LENGTH","features":[456]},{"name":"DOT11_WFD_ATTRIBUTES","features":[303,317,456]},{"name":"DOT11_WFD_ATTRIBUTES_REVISION_1","features":[456]},{"name":"DOT11_WFD_CHANNEL","features":[456]},{"name":"DOT11_WFD_CONFIGURATION_TIMEOUT","features":[456]},{"name":"DOT11_WFD_DEVICE_AUTO_AVAILABILITY","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONCURRENT_OPERATION","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG","features":[303,317,456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG_REVISION_1","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_CLIENT_DISCOVERABILITY","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_DEVICE_LIMIT","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INFRASTRUCTURE_MANAGED","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INVITATION_PROCEDURE","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_6","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_7","features":[456]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_SERVICE_DISCOVERY","features":[456]},{"name":"DOT11_WFD_DEVICE_ENTRY","features":[456]},{"name":"DOT11_WFD_DEVICE_HIGH_AVAILABILITY","features":[456]},{"name":"DOT11_WFD_DEVICE_INFO","features":[317,456]},{"name":"DOT11_WFD_DEVICE_INFO_REVISION_1","features":[456]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL","features":[317,456]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL_REVISION_1","features":[456]},{"name":"DOT11_WFD_DEVICE_NOT_DISCOVERABLE","features":[456]},{"name":"DOT11_WFD_DEVICE_TYPE","features":[456]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE","features":[456]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS","features":[317,456]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_WFD_DISCOVER_DEVICE_FILTER","features":[456]},{"name":"DOT11_WFD_DISCOVER_REQUEST","features":[303,317,456]},{"name":"DOT11_WFD_DISCOVER_REQUEST_REVISION_1","features":[456]},{"name":"DOT11_WFD_DISCOVER_TYPE","features":[456]},{"name":"DOT11_WFD_GO_INTENT","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_CROSS_CONNECTION_SUPPORTED","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_EAPOL_KEY_IP_ADDRESS_ALLOCATION_SUPPORTED","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_LIMIT_REACHED","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_OWNER","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_INTRABSS_DISTRIBUTION_SUPPORTED","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_IN_GROUP_FORMATION","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_NONE","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_GROUP","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_RECONNECT_SUPPORTED","features":[456]},{"name":"DOT11_WFD_GROUP_CAPABILITY_RESERVED_7","features":[456]},{"name":"DOT11_WFD_GROUP_ID","features":[456]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS","features":[303,317,456]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG","features":[303,317,456]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_1","features":[456]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_2","features":[456]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_V2","features":[303,317,456]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS","features":[317,456]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS_REVISION_1","features":[456]},{"name":"DOT11_WFD_INVITATION_FLAGS","features":[456]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_FROM_WLAN_CROSS_CONNECTION_POLICY","features":[456]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_INFRASTRUCTURE_MANAGED_POLICY","features":[456]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_NOT_MANAGED_INFRASTRUCTURE_CAPABLE","features":[456]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_WFD_COEXISTENCE_POLICY","features":[456]},{"name":"DOT11_WFD_MINOR_REASON_SUCCESS","features":[456]},{"name":"DOT11_WFD_SCAN_TYPE","features":[456]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST","features":[317,456]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST_REVISION_1","features":[456]},{"name":"DOT11_WFD_SERVICE_HASH_LIST","features":[456]},{"name":"DOT11_WFD_SERVICE_INFORMATION_MAX_LENGTH","features":[456]},{"name":"DOT11_WFD_SERVICE_NAME_MAX_LENGTH","features":[456]},{"name":"DOT11_WFD_SESSION_ID","features":[456]},{"name":"DOT11_WFD_SESSION_INFO","features":[456]},{"name":"DOT11_WFD_SESSION_INFO_MAX_LENGTH","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PARAMETERS","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PROVISIONING_METHOD","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_INFORMATION_IS_UNAVAILABLE","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_INVALID_PARAMETERS","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_LIMIT_REACHED","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_MATCHING_MAX_INTENT","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_NO_COMMON_CHANNELS","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_PREVIOUS_PROTOCOL_ERROR","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_REJECTED_BY_USER","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_UNABLE_TO_ACCOMODATE_REQUEST","features":[456]},{"name":"DOT11_WFD_STATUS_FAILED_UNKNOWN_WFD_GROUP","features":[456]},{"name":"DOT11_WFD_STATUS_SUCCESS","features":[456]},{"name":"DOT11_WFD_STATUS_SUCCESS_ACCEPTED_BY_USER","features":[456]},{"name":"DOT11_WME_AC_PARAMETERS","features":[456]},{"name":"DOT11_WME_AC_PARAMETERS_LIST","features":[456]},{"name":"DOT11_WME_PACKET","features":[456]},{"name":"DOT11_WME_UPDATE_IE","features":[456]},{"name":"DOT11_WPA_TSC","features":[303,456]},{"name":"DOT11_WPS_CONFIG_METHOD","features":[456]},{"name":"DOT11_WPS_CONFIG_METHOD_DISPLAY","features":[456]},{"name":"DOT11_WPS_CONFIG_METHOD_KEYPAD","features":[456]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_INTERFACE","features":[456]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_TAG","features":[456]},{"name":"DOT11_WPS_CONFIG_METHOD_NULL","features":[456]},{"name":"DOT11_WPS_CONFIG_METHOD_PUSHBUTTON","features":[456]},{"name":"DOT11_WPS_CONFIG_METHOD_WFDS_DEFAULT","features":[456]},{"name":"DOT11_WPS_DEVICE_NAME","features":[456]},{"name":"DOT11_WPS_DEVICE_NAME_MAX_LENGTH","features":[456]},{"name":"DOT11_WPS_DEVICE_PASSWORD_ID","features":[456]},{"name":"DOT11_WPS_MAX_MODEL_NAME_LENGTH","features":[456]},{"name":"DOT11_WPS_MAX_MODEL_NUMBER_LENGTH","features":[456]},{"name":"DOT11_WPS_MAX_PASSKEY_LENGTH","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_DEFAULT","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_MACHINE_SPECIFIED","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_NFC_CONNECTION_HANDOVER","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MAX","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MIN","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_PUSHBUTTON","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_REGISTRAR_SPECIFIED","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_REKEY","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_USER_SPECIFIED","features":[456]},{"name":"DOT11_WPS_PASSWORD_ID_WFD_SERVICES","features":[456]},{"name":"DOT11_WPS_VERSION_1_0","features":[456]},{"name":"DOT11_WPS_VERSION_2_0","features":[456]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Enhanced","features":[456]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NoP2PSupported","features":[456]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NotSupported","features":[456]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_SingleFunctionSupported","features":[456]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Supported","features":[456]},{"name":"DevProp_PciDevice_AcsSupport_Missing","features":[456]},{"name":"DevProp_PciDevice_AcsSupport_NotNeeded","features":[456]},{"name":"DevProp_PciDevice_AcsSupport_Present","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciConventional","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciExpressDownstreamSwitchPort","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciExpressEventCollector","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciExpressRootPort","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciExpressToPciXBridge","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciExpressTreatedAsPci","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciExpressUpstreamSwitchPort","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciX","features":[456]},{"name":"DevProp_PciDevice_BridgeType_PciXToExpressBridge","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_100Mhz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_133MHZ","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_66Mhz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_100Mhz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_133Mhz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_66Mhz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_100MHz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_133MHz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_66MHz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_100MHz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_133MHz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_66MHz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode_Conventional_Pci","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_33MHz","features":[456]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_66MHz","features":[456]},{"name":"DevProp_PciDevice_DeviceType_PciConventional","features":[456]},{"name":"DevProp_PciDevice_DeviceType_PciExpressEndpoint","features":[456]},{"name":"DevProp_PciDevice_DeviceType_PciExpressLegacyEndpoint","features":[456]},{"name":"DevProp_PciDevice_DeviceType_PciExpressRootComplexIntegratedEndpoint","features":[456]},{"name":"DevProp_PciDevice_DeviceType_PciExpressTreatedAsPci","features":[456]},{"name":"DevProp_PciDevice_DeviceType_PciX","features":[456]},{"name":"DevProp_PciDevice_InterruptType_LineBased","features":[456]},{"name":"DevProp_PciDevice_InterruptType_Msi","features":[456]},{"name":"DevProp_PciDevice_InterruptType_MsiX","features":[456]},{"name":"DevProp_PciDevice_SriovSupport_DidntGetVfBarSpace","features":[456]},{"name":"DevProp_PciDevice_SriovSupport_MissingAcs","features":[456]},{"name":"DevProp_PciDevice_SriovSupport_MissingPfDriver","features":[456]},{"name":"DevProp_PciDevice_SriovSupport_NoBusResource","features":[456]},{"name":"DevProp_PciDevice_SriovSupport_Ok","features":[456]},{"name":"DevProp_PciExpressDevice_LinkSpeed_Five_Gbps","features":[456]},{"name":"DevProp_PciExpressDevice_LinkSpeed_TwoAndHalf_Gbps","features":[456]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_1","features":[456]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_12","features":[456]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_16","features":[456]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_2","features":[456]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_32","features":[456]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_4","features":[456]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_8","features":[456]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_1024Bytes","features":[456]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_128Bytes","features":[456]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_2048Bytes","features":[456]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_256Bytes","features":[456]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_4096Bytes","features":[456]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_512Bytes","features":[456]},{"name":"DevProp_PciExpressDevice_Spec_Version_10","features":[456]},{"name":"DevProp_PciExpressDevice_Spec_Version_11","features":[456]},{"name":"DevProp_PciRootBus_BusWidth_32Bits","features":[456]},{"name":"DevProp_PciRootBus_BusWidth_64Bits","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_33Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_66Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_100Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_133Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_66Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_100Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_133Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_66Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_100Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_133Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_66Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_100Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_133Mhz","features":[456]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_66Mhz","features":[456]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciConventional","features":[456]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciExpress","features":[456]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode1","features":[456]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode2","features":[456]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_33Mhz","features":[456]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_66Mhz","features":[456]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_133Mhz","features":[456]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_266Mhz","features":[456]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_533Mhz","features":[456]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_66Mhz","features":[456]},{"name":"Dot11AdHocManager","features":[456]},{"name":"GUID_AEPSERVICE_WIFIDIRECT_DEVICE","features":[456]},{"name":"GUID_DEVINTERFACE_ASP_INFRA_DEVICE","features":[456]},{"name":"GUID_DEVINTERFACE_WIFIDIRECT_DEVICE","features":[456]},{"name":"IDot11AdHocInterface","features":[456]},{"name":"IDot11AdHocInterfaceNotificationSink","features":[456]},{"name":"IDot11AdHocManager","features":[456]},{"name":"IDot11AdHocManagerNotificationSink","features":[456]},{"name":"IDot11AdHocNetwork","features":[456]},{"name":"IDot11AdHocNetworkNotificationSink","features":[456]},{"name":"IDot11AdHocSecuritySettings","features":[456]},{"name":"IEnumDot11AdHocInterfaces","features":[456]},{"name":"IEnumDot11AdHocNetworks","features":[456]},{"name":"IEnumDot11AdHocSecuritySettings","features":[456]},{"name":"IHV_INIT_FUNCTION_NAME","features":[456]},{"name":"IHV_INIT_VS_FUNCTION_NAME","features":[456]},{"name":"IHV_VERSION_FUNCTION_NAME","features":[456]},{"name":"IndicationTypeLinkQuality","features":[456]},{"name":"IndicationTypeNicSpecificNotification","features":[456]},{"name":"IndicationTypePhyStateChange","features":[456]},{"name":"IndicationTypePmkidCandidateList","features":[456]},{"name":"IndicationTypeTkipMicFailure","features":[456]},{"name":"L2_NOTIFICATION_CODE_GROUP_SIZE","features":[456]},{"name":"L2_NOTIFICATION_CODE_PUBLIC_BEGIN","features":[456]},{"name":"L2_NOTIFICATION_DATA","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_ALL","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_DOT3_AUTO_CONFIG","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_NONE","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_ONEX","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_SECURITY","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WCM","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WCM_CSP","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WFD","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_ACM","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_DEVICE_SERVICE","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_HNWK","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_IHV","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_MSM","features":[456]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_SECURITY","features":[456]},{"name":"L2_PROFILE_MAX_NAME_LENGTH","features":[456]},{"name":"L2_REASON_CODE_DOT11_AC_BASE","features":[456]},{"name":"L2_REASON_CODE_DOT11_MSM_BASE","features":[456]},{"name":"L2_REASON_CODE_DOT11_SECURITY_BASE","features":[456]},{"name":"L2_REASON_CODE_DOT3_AC_BASE","features":[456]},{"name":"L2_REASON_CODE_DOT3_MSM_BASE","features":[456]},{"name":"L2_REASON_CODE_GEN_BASE","features":[456]},{"name":"L2_REASON_CODE_GROUP_SIZE","features":[456]},{"name":"L2_REASON_CODE_IHV_BASE","features":[456]},{"name":"L2_REASON_CODE_ONEX_BASE","features":[456]},{"name":"L2_REASON_CODE_PROFILE_BASE","features":[456]},{"name":"L2_REASON_CODE_PROFILE_MISSING","features":[456]},{"name":"L2_REASON_CODE_RESERVED_BASE","features":[456]},{"name":"L2_REASON_CODE_SUCCESS","features":[456]},{"name":"L2_REASON_CODE_UNKNOWN","features":[456]},{"name":"L2_REASON_CODE_WIMAX_BASE","features":[456]},{"name":"MAX_NUM_SUPPORTED_RATES","features":[456]},{"name":"MAX_NUM_SUPPORTED_RATES_V2","features":[456]},{"name":"MS_MAX_PROFILE_NAME_LENGTH","features":[456]},{"name":"MS_PROFILE_GROUP_POLICY","features":[456]},{"name":"MS_PROFILE_USER","features":[456]},{"name":"NDIS_PACKET_TYPE_802_11_ALL_MULTICAST_DATA","features":[456]},{"name":"NDIS_PACKET_TYPE_802_11_BROADCAST_DATA","features":[456]},{"name":"NDIS_PACKET_TYPE_802_11_DIRECTED_DATA","features":[456]},{"name":"NDIS_PACKET_TYPE_802_11_MULTICAST_DATA","features":[456]},{"name":"NDIS_PACKET_TYPE_802_11_PROMISCUOUS_DATA","features":[456]},{"name":"OID_DOT11_AP_JOIN_REQUEST","features":[456]},{"name":"OID_DOT11_ATIM_WINDOW","features":[456]},{"name":"OID_DOT11_BEACON_PERIOD","features":[456]},{"name":"OID_DOT11_CCA_MODE_SUPPORTED","features":[456]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MAX","features":[456]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MIN","features":[456]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MAX","features":[456]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MIN","features":[456]},{"name":"OID_DOT11_CFP_MAX_DURATION","features":[456]},{"name":"OID_DOT11_CFP_PERIOD","features":[456]},{"name":"OID_DOT11_CF_POLLABLE","features":[456]},{"name":"OID_DOT11_CHANNEL_AGILITY_ENABLED","features":[456]},{"name":"OID_DOT11_CHANNEL_AGILITY_PRESENT","features":[456]},{"name":"OID_DOT11_COUNTERS_ENTRY","features":[456]},{"name":"OID_DOT11_COUNTRY_STRING","features":[456]},{"name":"OID_DOT11_CURRENT_ADDRESS","features":[456]},{"name":"OID_DOT11_CURRENT_CCA_MODE","features":[456]},{"name":"OID_DOT11_CURRENT_CHANNEL","features":[456]},{"name":"OID_DOT11_CURRENT_CHANNEL_NUMBER","features":[456]},{"name":"OID_DOT11_CURRENT_DWELL_TIME","features":[456]},{"name":"OID_DOT11_CURRENT_FREQUENCY","features":[456]},{"name":"OID_DOT11_CURRENT_INDEX","features":[456]},{"name":"OID_DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[456]},{"name":"OID_DOT11_CURRENT_OPERATION_MODE","features":[456]},{"name":"OID_DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[456]},{"name":"OID_DOT11_CURRENT_PACKET_FILTER","features":[456]},{"name":"OID_DOT11_CURRENT_PATTERN","features":[456]},{"name":"OID_DOT11_CURRENT_PHY_TYPE","features":[456]},{"name":"OID_DOT11_CURRENT_REG_DOMAIN","features":[456]},{"name":"OID_DOT11_CURRENT_RX_ANTENNA","features":[456]},{"name":"OID_DOT11_CURRENT_SET","features":[456]},{"name":"OID_DOT11_CURRENT_TX_ANTENNA","features":[456]},{"name":"OID_DOT11_CURRENT_TX_POWER_LEVEL","features":[456]},{"name":"OID_DOT11_DEFAULT_WEP_OFFLOAD","features":[456]},{"name":"OID_DOT11_DEFAULT_WEP_UPLOAD","features":[456]},{"name":"OID_DOT11_DIVERSITY_SELECTION_RX","features":[456]},{"name":"OID_DOT11_DIVERSITY_SUPPORT","features":[456]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_ENABLED","features":[456]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_DTIM_PERIOD","features":[456]},{"name":"OID_DOT11_ED_THRESHOLD","features":[456]},{"name":"OID_DOT11_EHCC_CAPABILITY_ENABLED","features":[456]},{"name":"OID_DOT11_EHCC_CAPABILITY_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_EHCC_NUMBER_OF_CHANNELS_FAMILY_INDEX","features":[456]},{"name":"OID_DOT11_EHCC_PRIME_RADIX","features":[456]},{"name":"OID_DOT11_ERP_PBCC_OPTION_ENABLED","features":[456]},{"name":"OID_DOT11_ERP_PBCC_OPTION_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_FRAGMENTATION_THRESHOLD","features":[456]},{"name":"OID_DOT11_FREQUENCY_BANDS_SUPPORTED","features":[456]},{"name":"OID_DOT11_HOPPING_PATTERN","features":[456]},{"name":"OID_DOT11_HOP_ALGORITHM_ADOPTED","features":[456]},{"name":"OID_DOT11_HOP_MODULUS","features":[456]},{"name":"OID_DOT11_HOP_OFFSET","features":[456]},{"name":"OID_DOT11_HOP_TIME","features":[456]},{"name":"OID_DOT11_HR_CCA_MODE_SUPPORTED","features":[456]},{"name":"OID_DOT11_JOIN_REQUEST","features":[456]},{"name":"OID_DOT11_LONG_RETRY_LIMIT","features":[456]},{"name":"OID_DOT11_MAC_ADDRESS","features":[456]},{"name":"OID_DOT11_MAXIMUM_LIST_SIZE","features":[456]},{"name":"OID_DOT11_MAX_DWELL_TIME","features":[456]},{"name":"OID_DOT11_MAX_MAC_ADDRESS_STATES","features":[456]},{"name":"OID_DOT11_MAX_RECEIVE_LIFETIME","features":[456]},{"name":"OID_DOT11_MAX_TRANSMIT_MSDU_LIFETIME","features":[456]},{"name":"OID_DOT11_MEDIUM_OCCUPANCY_LIMIT","features":[456]},{"name":"OID_DOT11_MPDU_MAX_LENGTH","features":[456]},{"name":"OID_DOT11_MULTICAST_LIST","features":[456]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY","features":[456]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_ENABLED","features":[456]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_NDIS_START","features":[456]},{"name":"OID_DOT11_NIC_POWER_STATE","features":[456]},{"name":"OID_DOT11_NIC_SPECIFIC_EXTENSION","features":[456]},{"name":"OID_DOT11_NUMBER_OF_HOPPING_SETS","features":[456]},{"name":"OID_DOT11_OFFLOAD_CAPABILITY","features":[456]},{"name":"OID_DOT11_OPERATIONAL_RATE_SET","features":[456]},{"name":"OID_DOT11_OPERATION_MODE_CAPABILITY","features":[456]},{"name":"OID_DOT11_OPTIONAL_CAPABILITY","features":[456]},{"name":"OID_DOT11_PBCC_OPTION_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_PERMANENT_ADDRESS","features":[456]},{"name":"OID_DOT11_POWER_MGMT_MODE","features":[456]},{"name":"OID_DOT11_PRIVATE_OIDS_START","features":[456]},{"name":"OID_DOT11_QOS_TX_DURATION","features":[456]},{"name":"OID_DOT11_QOS_TX_MEDIUM_TIME","features":[456]},{"name":"OID_DOT11_QOS_TX_QUEUES_SUPPORTED","features":[456]},{"name":"OID_DOT11_RANDOM_TABLE_FIELD_NUMBER","features":[456]},{"name":"OID_DOT11_RANDOM_TABLE_FLAG","features":[456]},{"name":"OID_DOT11_RECV_SENSITIVITY_LIST","features":[456]},{"name":"OID_DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[456]},{"name":"OID_DOT11_RESET_REQUEST","features":[456]},{"name":"OID_DOT11_RF_USAGE","features":[456]},{"name":"OID_DOT11_RSSI_RANGE","features":[456]},{"name":"OID_DOT11_RTS_THRESHOLD","features":[456]},{"name":"OID_DOT11_SCAN_REQUEST","features":[456]},{"name":"OID_DOT11_SHORT_PREAMBLE_OPTION_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_SHORT_RETRY_LIMIT","features":[456]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_ENABLED","features":[456]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_START_REQUEST","features":[456]},{"name":"OID_DOT11_STATION_ID","features":[456]},{"name":"OID_DOT11_SUPPORTED_DATA_RATES_VALUE","features":[456]},{"name":"OID_DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[456]},{"name":"OID_DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[456]},{"name":"OID_DOT11_SUPPORTED_PHY_TYPES","features":[456]},{"name":"OID_DOT11_SUPPORTED_POWER_LEVELS","features":[456]},{"name":"OID_DOT11_SUPPORTED_RX_ANTENNA","features":[456]},{"name":"OID_DOT11_SUPPORTED_TX_ANTENNA","features":[456]},{"name":"OID_DOT11_TEMP_TYPE","features":[456]},{"name":"OID_DOT11_TI_THRESHOLD","features":[456]},{"name":"OID_DOT11_UPDATE_IE","features":[456]},{"name":"OID_DOT11_WEP_ICV_ERROR_COUNT","features":[456]},{"name":"OID_DOT11_WEP_OFFLOAD","features":[456]},{"name":"OID_DOT11_WEP_UPLOAD","features":[456]},{"name":"OID_DOT11_WME_AC_PARAMETERS","features":[456]},{"name":"OID_DOT11_WME_ENABLED","features":[456]},{"name":"OID_DOT11_WME_IMPLEMENTED","features":[456]},{"name":"OID_DOT11_WME_UPDATE_IE","features":[456]},{"name":"OID_DOT11_WPA_TSC","features":[456]},{"name":"ONEX_AUTHENTICATOR_NO_LONGER_PRESENT","features":[456]},{"name":"ONEX_AUTH_IDENTITY","features":[456]},{"name":"ONEX_AUTH_PARAMS","features":[303,456]},{"name":"ONEX_AUTH_RESTART_REASON","features":[456]},{"name":"ONEX_AUTH_STATUS","features":[456]},{"name":"ONEX_EAP_ERROR","features":[456,457]},{"name":"ONEX_EAP_FAILURE_RECEIVED","features":[456]},{"name":"ONEX_EAP_METHOD_BACKEND_SUPPORT","features":[456]},{"name":"ONEX_IDENTITY_NOT_FOUND","features":[456]},{"name":"ONEX_NOTIFICATION_TYPE","features":[456]},{"name":"ONEX_NO_RESPONSE_TO_IDENTITY","features":[456]},{"name":"ONEX_PROFILE_DISALLOWED_EAP_TYPE","features":[456]},{"name":"ONEX_PROFILE_EXPIRED_EXPLICIT_CREDENTIALS","features":[456]},{"name":"ONEX_PROFILE_INVALID_AUTH_MODE","features":[456]},{"name":"ONEX_PROFILE_INVALID_EAP_CONNECTION_PROPERTIES","features":[456]},{"name":"ONEX_PROFILE_INVALID_EAP_TYPE_OR_FLAG","features":[456]},{"name":"ONEX_PROFILE_INVALID_EXPLICIT_CREDENTIALS","features":[456]},{"name":"ONEX_PROFILE_INVALID_LENGTH","features":[456]},{"name":"ONEX_PROFILE_INVALID_ONEX_FLAGS","features":[456]},{"name":"ONEX_PROFILE_INVALID_SUPPLICANT_MODE","features":[456]},{"name":"ONEX_PROFILE_INVALID_TIMER_VALUE","features":[456]},{"name":"ONEX_PROFILE_VERSION_NOT_SUPPORTED","features":[456]},{"name":"ONEX_REASON_CODE","features":[456]},{"name":"ONEX_REASON_CODE_SUCCESS","features":[456]},{"name":"ONEX_REASON_START","features":[456]},{"name":"ONEX_RESULT_UPDATE_DATA","features":[303,456]},{"name":"ONEX_STATUS","features":[456]},{"name":"ONEX_UI_CANCELLED","features":[456]},{"name":"ONEX_UI_DISABLED","features":[456]},{"name":"ONEX_UI_FAILURE","features":[456]},{"name":"ONEX_UI_NOT_PERMITTED","features":[456]},{"name":"ONEX_UNABLE_TO_IDENTIFY_USER","features":[456]},{"name":"ONEX_USER_INFO","features":[456]},{"name":"ONEX_VARIABLE_BLOB","features":[456]},{"name":"OneXAuthFailure","features":[456]},{"name":"OneXAuthIdentityExplicitUser","features":[456]},{"name":"OneXAuthIdentityGuest","features":[456]},{"name":"OneXAuthIdentityInvalid","features":[456]},{"name":"OneXAuthIdentityMachine","features":[456]},{"name":"OneXAuthIdentityNone","features":[456]},{"name":"OneXAuthIdentityUser","features":[456]},{"name":"OneXAuthInProgress","features":[456]},{"name":"OneXAuthInvalid","features":[456]},{"name":"OneXAuthNoAuthenticatorFound","features":[456]},{"name":"OneXAuthNotStarted","features":[456]},{"name":"OneXAuthSuccess","features":[456]},{"name":"OneXEapMethodBackendSupportUnknown","features":[456]},{"name":"OneXEapMethodBackendSupported","features":[456]},{"name":"OneXEapMethodBackendUnsupported","features":[456]},{"name":"OneXNotificationTypeAuthRestarted","features":[456]},{"name":"OneXNotificationTypeEventInvalid","features":[456]},{"name":"OneXNotificationTypeResultUpdate","features":[456]},{"name":"OneXNumNotifications","features":[456]},{"name":"OneXPublicNotificationBase","features":[456]},{"name":"OneXRestartReasonAltCredsTrial","features":[456]},{"name":"OneXRestartReasonInvalid","features":[456]},{"name":"OneXRestartReasonMsmInitiated","features":[456]},{"name":"OneXRestartReasonOneXAuthTimeout","features":[456]},{"name":"OneXRestartReasonOneXConfigurationChanged","features":[456]},{"name":"OneXRestartReasonOneXHeldStateTimeout","features":[456]},{"name":"OneXRestartReasonOneXUserChanged","features":[456]},{"name":"OneXRestartReasonPeerInitiated","features":[456]},{"name":"OneXRestartReasonQuarantineStateChanged","features":[456]},{"name":"WDIAG_IHV_WLAN_ID","features":[456]},{"name":"WDIAG_IHV_WLAN_ID_FLAG_SECURITY_ENABLED","features":[456]},{"name":"WFDCancelOpenSession","features":[303,456]},{"name":"WFDCloseHandle","features":[303,456]},{"name":"WFDCloseSession","features":[303,456]},{"name":"WFDOpenHandle","features":[303,456]},{"name":"WFDOpenLegacySession","features":[303,456]},{"name":"WFDSVC_CONNECTION_CAPABILITY","features":[303,456]},{"name":"WFDSVC_CONNECTION_CAPABILITY_CLIENT","features":[456]},{"name":"WFDSVC_CONNECTION_CAPABILITY_GO","features":[456]},{"name":"WFDSVC_CONNECTION_CAPABILITY_NEW","features":[456]},{"name":"WFDStartOpenSession","features":[303,456]},{"name":"WFDUpdateDeviceVisibility","features":[456]},{"name":"WFD_API_VERSION","features":[456]},{"name":"WFD_API_VERSION_1_0","features":[456]},{"name":"WFD_GROUP_ID","features":[456]},{"name":"WFD_OPEN_SESSION_COMPLETE_CALLBACK","features":[303,456]},{"name":"WFD_ROLE_TYPE","features":[456]},{"name":"WFD_ROLE_TYPE_CLIENT","features":[456]},{"name":"WFD_ROLE_TYPE_DEVICE","features":[456]},{"name":"WFD_ROLE_TYPE_GROUP_OWNER","features":[456]},{"name":"WFD_ROLE_TYPE_MAX","features":[456]},{"name":"WFD_ROLE_TYPE_NONE","features":[456]},{"name":"WLAN_ADHOC_NETWORK_STATE","features":[456]},{"name":"WLAN_API_VERSION","features":[456]},{"name":"WLAN_API_VERSION_1_0","features":[456]},{"name":"WLAN_API_VERSION_2_0","features":[456]},{"name":"WLAN_ASSOCIATION_ATTRIBUTES","features":[456]},{"name":"WLAN_AUTH_CIPHER_PAIR_LIST","features":[456]},{"name":"WLAN_AUTOCONF_OPCODE","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK","features":[303,456]},{"name":"WLAN_AVAILABLE_NETWORK_ANQP_SUPPORTED","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_AUTO_CONNECT_FAILED","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_CONNECTED","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_CONSOLE_USER_PROFILE","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_HAS_PROFILE","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_DOMAIN","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ENABLED","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ROAMING","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_ADHOC_PROFILES","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_MANUAL_HIDDEN_PROFILES","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_INTERWORKING_SUPPORTED","features":[456]},{"name":"WLAN_AVAILABLE_NETWORK_LIST","features":[303,456]},{"name":"WLAN_AVAILABLE_NETWORK_LIST_V2","features":[303,456]},{"name":"WLAN_AVAILABLE_NETWORK_V2","features":[303,456]},{"name":"WLAN_BSS_ENTRY","features":[303,456]},{"name":"WLAN_BSS_LIST","features":[303,456]},{"name":"WLAN_CONNECTION_ADHOC_JOIN_ONLY","features":[456]},{"name":"WLAN_CONNECTION_ATTRIBUTES","features":[303,456]},{"name":"WLAN_CONNECTION_EAPOL_PASSTHROUGH","features":[456]},{"name":"WLAN_CONNECTION_HIDDEN_NETWORK","features":[456]},{"name":"WLAN_CONNECTION_IGNORE_PRIVACY_BIT","features":[456]},{"name":"WLAN_CONNECTION_MODE","features":[456]},{"name":"WLAN_CONNECTION_NOTIFICATION_ADHOC_NETWORK_FORMED","features":[456]},{"name":"WLAN_CONNECTION_NOTIFICATION_CONSOLE_USER_PROFILE","features":[456]},{"name":"WLAN_CONNECTION_NOTIFICATION_DATA","features":[303,456]},{"name":"WLAN_CONNECTION_NOTIFICATION_FLAGS","features":[456]},{"name":"WLAN_CONNECTION_PARAMETERS","features":[317,456]},{"name":"WLAN_CONNECTION_PARAMETERS_V2","features":[317,456]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE","features":[456]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_CONNECTION_MODE_AUTO","features":[456]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_OVERWRITE_EXISTING","features":[456]},{"name":"WLAN_COUNTRY_OR_REGION_STRING_LIST","features":[456]},{"name":"WLAN_DEVICE_SERVICE_GUID_LIST","features":[456]},{"name":"WLAN_DEVICE_SERVICE_NOTIFICATION_DATA","features":[456]},{"name":"WLAN_FILTER_LIST_TYPE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_CONNECTION_SETTINGS","features":[456]},{"name":"WLAN_HOSTED_NETWORK_DATA_PEER_STATE_CHANGE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_NOTIFICATION_CODE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_OPCODE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_PEER_AUTH_STATE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_PEER_STATE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_RADIO_STATE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_REASON","features":[456]},{"name":"WLAN_HOSTED_NETWORK_SECURITY_SETTINGS","features":[456]},{"name":"WLAN_HOSTED_NETWORK_STATE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_STATE_CHANGE","features":[456]},{"name":"WLAN_HOSTED_NETWORK_STATUS","features":[456]},{"name":"WLAN_IHV_CONTROL_TYPE","features":[456]},{"name":"WLAN_INTERFACE_CAPABILITY","features":[303,456]},{"name":"WLAN_INTERFACE_INFO","features":[456]},{"name":"WLAN_INTERFACE_INFO_LIST","features":[456]},{"name":"WLAN_INTERFACE_STATE","features":[456]},{"name":"WLAN_INTERFACE_TYPE","features":[456]},{"name":"WLAN_INTF_OPCODE","features":[456]},{"name":"WLAN_MAC_FRAME_STATISTICS","features":[456]},{"name":"WLAN_MAX_NAME_LENGTH","features":[456]},{"name":"WLAN_MAX_PHY_INDEX","features":[456]},{"name":"WLAN_MAX_PHY_TYPE_NUMBER","features":[456]},{"name":"WLAN_MSM_NOTIFICATION_DATA","features":[303,456]},{"name":"WLAN_NOTIFICATION_ACM","features":[456]},{"name":"WLAN_NOTIFICATION_CALLBACK","features":[456]},{"name":"WLAN_NOTIFICATION_MSM","features":[456]},{"name":"WLAN_NOTIFICATION_SECURITY","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCES","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_ACM","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_ALL","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_DEVICE_SERVICE","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_HNWK","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_IHV","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_MSM","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_NONE","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_ONEX","features":[456]},{"name":"WLAN_NOTIFICATION_SOURCE_SECURITY","features":[456]},{"name":"WLAN_OPCODE_VALUE_TYPE","features":[456]},{"name":"WLAN_OPERATIONAL_STATE","features":[456]},{"name":"WLAN_PHY_FRAME_STATISTICS","features":[456]},{"name":"WLAN_PHY_RADIO_STATE","features":[456]},{"name":"WLAN_POWER_SETTING","features":[456]},{"name":"WLAN_PROFILE_CONNECTION_MODE_AUTO","features":[456]},{"name":"WLAN_PROFILE_CONNECTION_MODE_SET_BY_CLIENT","features":[456]},{"name":"WLAN_PROFILE_GET_PLAINTEXT_KEY","features":[456]},{"name":"WLAN_PROFILE_GROUP_POLICY","features":[456]},{"name":"WLAN_PROFILE_INFO","features":[456]},{"name":"WLAN_PROFILE_INFO_LIST","features":[456]},{"name":"WLAN_PROFILE_USER","features":[456]},{"name":"WLAN_RADIO_STATE","features":[456]},{"name":"WLAN_RATE_SET","features":[456]},{"name":"WLAN_RAW_DATA","features":[456]},{"name":"WLAN_RAW_DATA_LIST","features":[456]},{"name":"WLAN_REASON_CODE_AC_BASE","features":[456]},{"name":"WLAN_REASON_CODE_AC_CONNECT_BASE","features":[456]},{"name":"WLAN_REASON_CODE_AC_END","features":[456]},{"name":"WLAN_REASON_CODE_ADHOC_SECURITY_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED","features":[456]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED_FOR_CLIENT","features":[456]},{"name":"WLAN_REASON_CODE_AP_STARTING_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_ASSOCIATION_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_ASSOCIATION_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_AUTO_AP_PROFILE_NOT_ALLOWED","features":[456]},{"name":"WLAN_REASON_CODE_AUTO_CONNECTION_NOT_ALLOWED","features":[456]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_ADHOC","features":[456]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_MANUAL_CONNECTION","features":[456]},{"name":"WLAN_REASON_CODE_BAD_MAX_NUMBER_OF_CLIENTS_FOR_AP","features":[456]},{"name":"WLAN_REASON_CODE_BASE","features":[456]},{"name":"WLAN_REASON_CODE_BSS_TYPE_NOT_ALLOWED","features":[456]},{"name":"WLAN_REASON_CODE_BSS_TYPE_UNMATCH","features":[456]},{"name":"WLAN_REASON_CODE_CONFLICT_SECURITY","features":[456]},{"name":"WLAN_REASON_CODE_CONNECT_CALL_FAIL","features":[456]},{"name":"WLAN_REASON_CODE_DATARATE_UNMATCH","features":[456]},{"name":"WLAN_REASON_CODE_DISCONNECT_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_DRIVER_DISCONNECTED","features":[456]},{"name":"WLAN_REASON_CODE_DRIVER_OPERATION_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_GP_DENIED","features":[456]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_DENIED","features":[456]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_NOT_ALLOWED","features":[456]},{"name":"WLAN_REASON_CODE_IHV_CONNECTIVITY_NOT_SUPPORTED","features":[456]},{"name":"WLAN_REASON_CODE_IHV_NOT_AVAILABLE","features":[456]},{"name":"WLAN_REASON_CODE_IHV_NOT_RESPONDING","features":[456]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISMATCH","features":[456]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISSING","features":[456]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_NOT_SUPPORTED","features":[456]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_ONEX_MISSING","features":[456]},{"name":"WLAN_REASON_CODE_IHV_SETTINGS_MISSING","features":[456]},{"name":"WLAN_REASON_CODE_INTERNAL_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_INVALID_ADHOC_CONNECTION_MODE","features":[456]},{"name":"WLAN_REASON_CODE_INVALID_BSS_TYPE","features":[456]},{"name":"WLAN_REASON_CODE_INVALID_CHANNEL","features":[456]},{"name":"WLAN_REASON_CODE_INVALID_PHY_TYPE","features":[456]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_NAME","features":[456]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_SCHEMA","features":[456]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_TYPE","features":[456]},{"name":"WLAN_REASON_CODE_IN_BLOCKED_LIST","features":[456]},{"name":"WLAN_REASON_CODE_IN_FAILED_LIST","features":[456]},{"name":"WLAN_REASON_CODE_KEY_MISMATCH","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_START_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_SUCCESS_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_WCN_COMPLETED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_BASE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CANCELLED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_DISCOVERY","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_MFP_NW_NIC","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NETWORK","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NIC","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_AUTH","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_CIPHER","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NIC","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NW","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_CONNECT_BASE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_DOWNGRADE_DETECTED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_END","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_FORCED_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_GRP_KEY","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_KEY_DATA","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_MGMT_GRP_KEY","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_FORMAT","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_START_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_SUCCESS_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_IE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_KEY_DATA","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_GRP_KEY","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_IE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_KEY_DATA","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_MGMT_GRP_KEY","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_TOO_MANY_RSNIE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_MAX","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_MIN","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_MIXED_CELL","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_NIC_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_AUTHENTICATOR","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_PAIRWISE_KEY","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PEER_INDICATED_INSECURE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_AUTH_TIMERS_INVALID","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_DUPLICATE_AUTH_CIPHER","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_AUTH_CIPHER","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_GKEY_INTV","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_KEY_INDEX","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_MODE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_SIZE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_TTL","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_MODE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_THROTTLE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEYMATERIAL_CHAR","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_LENGTH","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_UNMAPPED_CHAR","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_NO_AUTH_CIPHER_SPECIFIED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_DISABLED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_ENABLED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PASSPHRASE_CHAR","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PREAUTH_ONLY_ENABLED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_LENGTH","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_PRESENT","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_RAWDATA_INVALID","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_SAFE_MODE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_TOO_MANY_AUTH_CIPHER_SPECIFIED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_AUTH","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_CIPHER","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_WRONG_KEYTYPE","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PR_IE_MATCHING","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_PSK_MISMATCH_SUSPECTED","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_SEC_IE_MATCHING","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_TRANSITION_NETWORK","features":[456]},{"name":"WLAN_REASON_CODE_MSMSEC_UI_REQUEST_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_MSM_BASE","features":[456]},{"name":"WLAN_REASON_CODE_MSM_CONNECT_BASE","features":[456]},{"name":"WLAN_REASON_CODE_MSM_END","features":[456]},{"name":"WLAN_REASON_CODE_MSM_SECURITY_MISSING","features":[456]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_AVAILABLE","features":[456]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_COMPATIBLE","features":[456]},{"name":"WLAN_REASON_CODE_NON_BROADCAST_SET_FOR_ADHOC","features":[456]},{"name":"WLAN_REASON_CODE_NOT_VISIBLE","features":[456]},{"name":"WLAN_REASON_CODE_NO_AUTO_CONNECTION","features":[456]},{"name":"WLAN_REASON_CODE_NO_VISIBLE_AP","features":[456]},{"name":"WLAN_REASON_CODE_OPERATION_MODE_NOT_SUPPORTED","features":[456]},{"name":"WLAN_REASON_CODE_PHY_TYPE_UNMATCH","features":[456]},{"name":"WLAN_REASON_CODE_PRE_SECURITY_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_PROFILE_BASE","features":[456]},{"name":"WLAN_REASON_CODE_PROFILE_CHANGED_OR_DELETED","features":[456]},{"name":"WLAN_REASON_CODE_PROFILE_CONNECT_BASE","features":[456]},{"name":"WLAN_REASON_CODE_PROFILE_END","features":[456]},{"name":"WLAN_REASON_CODE_PROFILE_MISSING","features":[456]},{"name":"WLAN_REASON_CODE_PROFILE_NOT_COMPATIBLE","features":[456]},{"name":"WLAN_REASON_CODE_PROFILE_SSID_INVALID","features":[456]},{"name":"WLAN_REASON_CODE_RANGE_SIZE","features":[456]},{"name":"WLAN_REASON_CODE_RESERVED_BASE","features":[456]},{"name":"WLAN_REASON_CODE_RESERVED_END","features":[456]},{"name":"WLAN_REASON_CODE_ROAMING_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_ROAMING_SECURITY_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_SCAN_CALL_FAIL","features":[456]},{"name":"WLAN_REASON_CODE_SECURITY_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_SECURITY_MISSING","features":[456]},{"name":"WLAN_REASON_CODE_SECURITY_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_SSID_LIST_TOO_LONG","features":[456]},{"name":"WLAN_REASON_CODE_START_SECURITY_FAILURE","features":[456]},{"name":"WLAN_REASON_CODE_SUCCESS","features":[456]},{"name":"WLAN_REASON_CODE_TOO_MANY_SECURITY_ATTEMPTS","features":[456]},{"name":"WLAN_REASON_CODE_TOO_MANY_SSID","features":[456]},{"name":"WLAN_REASON_CODE_UI_REQUEST_TIMEOUT","features":[456]},{"name":"WLAN_REASON_CODE_UNKNOWN","features":[456]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET","features":[456]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET_BY_OS","features":[456]},{"name":"WLAN_REASON_CODE_USER_CANCELLED","features":[456]},{"name":"WLAN_REASON_CODE_USER_DENIED","features":[456]},{"name":"WLAN_REASON_CODE_USER_NOT_RESPOND","features":[456]},{"name":"WLAN_SECURABLE_OBJECT","features":[456]},{"name":"WLAN_SECURABLE_OBJECT_COUNT","features":[456]},{"name":"WLAN_SECURITY_ATTRIBUTES","features":[303,456]},{"name":"WLAN_SET_EAPHOST_DATA_ALL_USERS","features":[456]},{"name":"WLAN_SET_EAPHOST_FLAGS","features":[456]},{"name":"WLAN_STATISTICS","features":[456]},{"name":"WLAN_UI_API_INITIAL_VERSION","features":[456]},{"name":"WLAN_UI_API_VERSION","features":[456]},{"name":"WLAdvPage","features":[456]},{"name":"WLConnectionPage","features":[456]},{"name":"WLSecurityPage","features":[456]},{"name":"WL_DISPLAY_PAGES","features":[456]},{"name":"WlanAllocateMemory","features":[456]},{"name":"WlanCloseHandle","features":[303,456]},{"name":"WlanConnect","features":[303,317,456]},{"name":"WlanConnect2","features":[303,317,456]},{"name":"WlanDeleteProfile","features":[303,456]},{"name":"WlanDeviceServiceCommand","features":[303,456]},{"name":"WlanDisconnect","features":[303,456]},{"name":"WlanEnumInterfaces","features":[303,456]},{"name":"WlanExtractPsdIEDataList","features":[303,456]},{"name":"WlanFreeMemory","features":[456]},{"name":"WlanGetAvailableNetworkList","features":[303,456]},{"name":"WlanGetAvailableNetworkList2","features":[303,456]},{"name":"WlanGetFilterList","features":[303,456]},{"name":"WlanGetInterfaceCapability","features":[303,456]},{"name":"WlanGetNetworkBssList","features":[303,456]},{"name":"WlanGetProfile","features":[303,456]},{"name":"WlanGetProfileCustomUserData","features":[303,456]},{"name":"WlanGetProfileList","features":[303,456]},{"name":"WlanGetSecuritySettings","features":[303,456]},{"name":"WlanGetSupportedDeviceServices","features":[303,456]},{"name":"WlanHostedNetworkForceStart","features":[303,456]},{"name":"WlanHostedNetworkForceStop","features":[303,456]},{"name":"WlanHostedNetworkInitSettings","features":[303,456]},{"name":"WlanHostedNetworkQueryProperty","features":[303,456]},{"name":"WlanHostedNetworkQuerySecondaryKey","features":[303,456]},{"name":"WlanHostedNetworkQueryStatus","features":[303,456]},{"name":"WlanHostedNetworkRefreshSecuritySettings","features":[303,456]},{"name":"WlanHostedNetworkSetProperty","features":[303,456]},{"name":"WlanHostedNetworkSetSecondaryKey","features":[303,456]},{"name":"WlanHostedNetworkStartUsing","features":[303,456]},{"name":"WlanHostedNetworkStopUsing","features":[303,456]},{"name":"WlanIhvControl","features":[303,456]},{"name":"WlanOpenHandle","features":[303,456]},{"name":"WlanQueryAutoConfigParameter","features":[303,456]},{"name":"WlanQueryInterface","features":[303,456]},{"name":"WlanReasonCodeToString","features":[456]},{"name":"WlanRegisterDeviceServiceNotification","features":[303,456]},{"name":"WlanRegisterNotification","features":[303,456]},{"name":"WlanRegisterVirtualStationNotification","features":[303,456]},{"name":"WlanRenameProfile","features":[303,456]},{"name":"WlanSaveTemporaryProfile","features":[303,456]},{"name":"WlanScan","features":[303,456]},{"name":"WlanSetAutoConfigParameter","features":[303,456]},{"name":"WlanSetFilterList","features":[303,456]},{"name":"WlanSetInterface","features":[303,456]},{"name":"WlanSetProfile","features":[303,456]},{"name":"WlanSetProfileCustomUserData","features":[303,456]},{"name":"WlanSetProfileEapUserData","features":[303,456,457]},{"name":"WlanSetProfileEapXmlUserData","features":[303,456]},{"name":"WlanSetProfileList","features":[303,456]},{"name":"WlanSetProfilePosition","features":[303,456]},{"name":"WlanSetPsdIEDataList","features":[303,456]},{"name":"WlanSetSecuritySettings","features":[303,456]},{"name":"WlanUIEditProfile","features":[303,456]},{"name":"ch_description_type_center_frequency","features":[456]},{"name":"ch_description_type_logical","features":[456]},{"name":"ch_description_type_phy_specific","features":[456]},{"name":"connection_phase_any","features":[456]},{"name":"connection_phase_initial_connection","features":[456]},{"name":"connection_phase_post_l3_connection","features":[456]},{"name":"dot11_AC_param_BE","features":[456]},{"name":"dot11_AC_param_BK","features":[456]},{"name":"dot11_AC_param_VI","features":[456]},{"name":"dot11_AC_param_VO","features":[456]},{"name":"dot11_AC_param_max","features":[456]},{"name":"dot11_ANQP_query_result_access_issues","features":[456]},{"name":"dot11_ANQP_query_result_advertisement_protocol_not_supported_on_remote","features":[456]},{"name":"dot11_ANQP_query_result_advertisement_server_not_responding","features":[456]},{"name":"dot11_ANQP_query_result_failure","features":[456]},{"name":"dot11_ANQP_query_result_gas_protocol_failure","features":[456]},{"name":"dot11_ANQP_query_result_resources","features":[456]},{"name":"dot11_ANQP_query_result_success","features":[456]},{"name":"dot11_ANQP_query_result_timed_out","features":[456]},{"name":"dot11_BSS_type_any","features":[456]},{"name":"dot11_BSS_type_independent","features":[456]},{"name":"dot11_BSS_type_infrastructure","features":[456]},{"name":"dot11_assoc_state_auth_assoc","features":[456]},{"name":"dot11_assoc_state_auth_unassoc","features":[456]},{"name":"dot11_assoc_state_unauth_unassoc","features":[456]},{"name":"dot11_assoc_state_zero","features":[456]},{"name":"dot11_band_2p4g","features":[456]},{"name":"dot11_band_4p9g","features":[456]},{"name":"dot11_band_5g","features":[456]},{"name":"dot11_diversity_support_dynamic","features":[456]},{"name":"dot11_diversity_support_fixedlist","features":[456]},{"name":"dot11_diversity_support_notsupported","features":[456]},{"name":"dot11_diversity_support_unknown","features":[456]},{"name":"dot11_hop_algo_current","features":[456]},{"name":"dot11_hop_algo_hcc","features":[456]},{"name":"dot11_hop_algo_hop_index","features":[456]},{"name":"dot11_key_direction_both","features":[456]},{"name":"dot11_key_direction_inbound","features":[456]},{"name":"dot11_key_direction_outbound","features":[456]},{"name":"dot11_manufacturing_callback_IHV_end","features":[456]},{"name":"dot11_manufacturing_callback_IHV_start","features":[456]},{"name":"dot11_manufacturing_callback_self_test_complete","features":[456]},{"name":"dot11_manufacturing_callback_sleep_complete","features":[456]},{"name":"dot11_manufacturing_callback_unknown","features":[456]},{"name":"dot11_manufacturing_test_IHV_end","features":[456]},{"name":"dot11_manufacturing_test_IHV_start","features":[456]},{"name":"dot11_manufacturing_test_awake","features":[456]},{"name":"dot11_manufacturing_test_query_adc","features":[456]},{"name":"dot11_manufacturing_test_query_data","features":[456]},{"name":"dot11_manufacturing_test_rx","features":[456]},{"name":"dot11_manufacturing_test_self_query_result","features":[456]},{"name":"dot11_manufacturing_test_self_start","features":[456]},{"name":"dot11_manufacturing_test_set_data","features":[456]},{"name":"dot11_manufacturing_test_sleep","features":[456]},{"name":"dot11_manufacturing_test_tx","features":[456]},{"name":"dot11_manufacturing_test_unknown","features":[456]},{"name":"dot11_offload_type_auth","features":[456]},{"name":"dot11_offload_type_wep","features":[456]},{"name":"dot11_phy_type_IHV_end","features":[456]},{"name":"dot11_phy_type_IHV_start","features":[456]},{"name":"dot11_phy_type_any","features":[456]},{"name":"dot11_phy_type_dmg","features":[456]},{"name":"dot11_phy_type_dsss","features":[456]},{"name":"dot11_phy_type_eht","features":[456]},{"name":"dot11_phy_type_erp","features":[456]},{"name":"dot11_phy_type_fhss","features":[456]},{"name":"dot11_phy_type_he","features":[456]},{"name":"dot11_phy_type_hrdsss","features":[456]},{"name":"dot11_phy_type_ht","features":[456]},{"name":"dot11_phy_type_irbaseband","features":[456]},{"name":"dot11_phy_type_ofdm","features":[456]},{"name":"dot11_phy_type_unknown","features":[456]},{"name":"dot11_phy_type_vht","features":[456]},{"name":"dot11_power_mode_active","features":[456]},{"name":"dot11_power_mode_powersave","features":[456]},{"name":"dot11_power_mode_reason_compliant_AP","features":[456]},{"name":"dot11_power_mode_reason_compliant_WFD_device","features":[456]},{"name":"dot11_power_mode_reason_legacy_WFD_device","features":[456]},{"name":"dot11_power_mode_reason_no_change","features":[456]},{"name":"dot11_power_mode_reason_noncompliant_AP","features":[456]},{"name":"dot11_power_mode_reason_others","features":[456]},{"name":"dot11_power_mode_unknown","features":[456]},{"name":"dot11_radio_state_off","features":[456]},{"name":"dot11_radio_state_on","features":[456]},{"name":"dot11_radio_state_unknown","features":[456]},{"name":"dot11_reset_type_mac","features":[456]},{"name":"dot11_reset_type_phy","features":[456]},{"name":"dot11_reset_type_phy_and_mac","features":[456]},{"name":"dot11_scan_type_active","features":[456]},{"name":"dot11_scan_type_auto","features":[456]},{"name":"dot11_scan_type_forced","features":[456]},{"name":"dot11_scan_type_passive","features":[456]},{"name":"dot11_temp_type_1","features":[456]},{"name":"dot11_temp_type_2","features":[456]},{"name":"dot11_temp_type_unknown","features":[456]},{"name":"dot11_update_ie_op_create_replace","features":[456]},{"name":"dot11_update_ie_op_delete","features":[456]},{"name":"dot11_wfd_discover_type_auto","features":[456]},{"name":"dot11_wfd_discover_type_find_only","features":[456]},{"name":"dot11_wfd_discover_type_forced","features":[456]},{"name":"dot11_wfd_discover_type_scan_only","features":[456]},{"name":"dot11_wfd_discover_type_scan_social_channels","features":[456]},{"name":"dot11_wfd_scan_type_active","features":[456]},{"name":"dot11_wfd_scan_type_auto","features":[456]},{"name":"dot11_wfd_scan_type_passive","features":[456]},{"name":"wlan_adhoc_network_state_connected","features":[456]},{"name":"wlan_adhoc_network_state_formed","features":[456]},{"name":"wlan_autoconf_opcode_allow_explicit_creds","features":[456]},{"name":"wlan_autoconf_opcode_allow_virtual_station_extensibility","features":[456]},{"name":"wlan_autoconf_opcode_block_period","features":[456]},{"name":"wlan_autoconf_opcode_end","features":[456]},{"name":"wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks","features":[456]},{"name":"wlan_autoconf_opcode_power_setting","features":[456]},{"name":"wlan_autoconf_opcode_show_denied_networks","features":[456]},{"name":"wlan_autoconf_opcode_start","features":[456]},{"name":"wlan_connection_mode_auto","features":[456]},{"name":"wlan_connection_mode_discovery_secure","features":[456]},{"name":"wlan_connection_mode_discovery_unsecure","features":[456]},{"name":"wlan_connection_mode_invalid","features":[456]},{"name":"wlan_connection_mode_profile","features":[456]},{"name":"wlan_connection_mode_temporary_profile","features":[456]},{"name":"wlan_filter_list_type_gp_deny","features":[456]},{"name":"wlan_filter_list_type_gp_permit","features":[456]},{"name":"wlan_filter_list_type_user_deny","features":[456]},{"name":"wlan_filter_list_type_user_permit","features":[456]},{"name":"wlan_hosted_network_active","features":[456]},{"name":"wlan_hosted_network_idle","features":[456]},{"name":"wlan_hosted_network_opcode_connection_settings","features":[456]},{"name":"wlan_hosted_network_opcode_enable","features":[456]},{"name":"wlan_hosted_network_opcode_security_settings","features":[456]},{"name":"wlan_hosted_network_opcode_station_profile","features":[456]},{"name":"wlan_hosted_network_peer_state_authenticated","features":[456]},{"name":"wlan_hosted_network_peer_state_change","features":[456]},{"name":"wlan_hosted_network_peer_state_invalid","features":[456]},{"name":"wlan_hosted_network_radio_state_change","features":[456]},{"name":"wlan_hosted_network_reason_ap_start_failed","features":[456]},{"name":"wlan_hosted_network_reason_bad_parameters","features":[456]},{"name":"wlan_hosted_network_reason_client_abort","features":[456]},{"name":"wlan_hosted_network_reason_crypt_error","features":[456]},{"name":"wlan_hosted_network_reason_device_change","features":[456]},{"name":"wlan_hosted_network_reason_elevation_required","features":[456]},{"name":"wlan_hosted_network_reason_gp_denied","features":[456]},{"name":"wlan_hosted_network_reason_impersonation","features":[456]},{"name":"wlan_hosted_network_reason_incompatible_connection_started","features":[456]},{"name":"wlan_hosted_network_reason_incompatible_connection_stopped","features":[456]},{"name":"wlan_hosted_network_reason_insufficient_resources","features":[456]},{"name":"wlan_hosted_network_reason_interface_available","features":[456]},{"name":"wlan_hosted_network_reason_interface_unavailable","features":[456]},{"name":"wlan_hosted_network_reason_miniport_started","features":[456]},{"name":"wlan_hosted_network_reason_miniport_stopped","features":[456]},{"name":"wlan_hosted_network_reason_peer_arrived","features":[456]},{"name":"wlan_hosted_network_reason_peer_departed","features":[456]},{"name":"wlan_hosted_network_reason_peer_timeout","features":[456]},{"name":"wlan_hosted_network_reason_persistence_failed","features":[456]},{"name":"wlan_hosted_network_reason_properties_change","features":[456]},{"name":"wlan_hosted_network_reason_read_only","features":[456]},{"name":"wlan_hosted_network_reason_service_available_on_virtual_station","features":[456]},{"name":"wlan_hosted_network_reason_service_shutting_down","features":[456]},{"name":"wlan_hosted_network_reason_service_unavailable","features":[456]},{"name":"wlan_hosted_network_reason_stop_before_start","features":[456]},{"name":"wlan_hosted_network_reason_success","features":[456]},{"name":"wlan_hosted_network_reason_unspecified","features":[456]},{"name":"wlan_hosted_network_reason_user_action","features":[456]},{"name":"wlan_hosted_network_reason_virtual_station_blocking_use","features":[456]},{"name":"wlan_hosted_network_state_change","features":[456]},{"name":"wlan_hosted_network_unavailable","features":[456]},{"name":"wlan_ihv_control_type_driver","features":[456]},{"name":"wlan_ihv_control_type_service","features":[456]},{"name":"wlan_interface_state_ad_hoc_network_formed","features":[456]},{"name":"wlan_interface_state_associating","features":[456]},{"name":"wlan_interface_state_authenticating","features":[456]},{"name":"wlan_interface_state_connected","features":[456]},{"name":"wlan_interface_state_disconnected","features":[456]},{"name":"wlan_interface_state_disconnecting","features":[456]},{"name":"wlan_interface_state_discovering","features":[456]},{"name":"wlan_interface_state_not_ready","features":[456]},{"name":"wlan_interface_type_emulated_802_11","features":[456]},{"name":"wlan_interface_type_invalid","features":[456]},{"name":"wlan_interface_type_native_802_11","features":[456]},{"name":"wlan_intf_opcode_autoconf_enabled","features":[456]},{"name":"wlan_intf_opcode_autoconf_end","features":[456]},{"name":"wlan_intf_opcode_autoconf_start","features":[456]},{"name":"wlan_intf_opcode_background_scan_enabled","features":[456]},{"name":"wlan_intf_opcode_bss_type","features":[456]},{"name":"wlan_intf_opcode_certified_safe_mode","features":[456]},{"name":"wlan_intf_opcode_channel_number","features":[456]},{"name":"wlan_intf_opcode_current_connection","features":[456]},{"name":"wlan_intf_opcode_current_operation_mode","features":[456]},{"name":"wlan_intf_opcode_hosted_network_capable","features":[456]},{"name":"wlan_intf_opcode_ihv_end","features":[456]},{"name":"wlan_intf_opcode_ihv_start","features":[456]},{"name":"wlan_intf_opcode_interface_state","features":[456]},{"name":"wlan_intf_opcode_management_frame_protection_capable","features":[456]},{"name":"wlan_intf_opcode_media_streaming_mode","features":[456]},{"name":"wlan_intf_opcode_msm_end","features":[456]},{"name":"wlan_intf_opcode_msm_start","features":[456]},{"name":"wlan_intf_opcode_radio_state","features":[456]},{"name":"wlan_intf_opcode_rssi","features":[456]},{"name":"wlan_intf_opcode_secondary_sta_interfaces","features":[456]},{"name":"wlan_intf_opcode_secondary_sta_synchronized_connections","features":[456]},{"name":"wlan_intf_opcode_security_end","features":[456]},{"name":"wlan_intf_opcode_security_start","features":[456]},{"name":"wlan_intf_opcode_statistics","features":[456]},{"name":"wlan_intf_opcode_supported_adhoc_auth_cipher_pairs","features":[456]},{"name":"wlan_intf_opcode_supported_country_or_region_string_list","features":[456]},{"name":"wlan_intf_opcode_supported_infrastructure_auth_cipher_pairs","features":[456]},{"name":"wlan_intf_opcode_supported_safe_mode","features":[456]},{"name":"wlan_notification_acm_adhoc_network_state_change","features":[456]},{"name":"wlan_notification_acm_autoconf_disabled","features":[456]},{"name":"wlan_notification_acm_autoconf_enabled","features":[456]},{"name":"wlan_notification_acm_background_scan_disabled","features":[456]},{"name":"wlan_notification_acm_background_scan_enabled","features":[456]},{"name":"wlan_notification_acm_bss_type_change","features":[456]},{"name":"wlan_notification_acm_connection_attempt_fail","features":[456]},{"name":"wlan_notification_acm_connection_complete","features":[456]},{"name":"wlan_notification_acm_connection_start","features":[456]},{"name":"wlan_notification_acm_disconnected","features":[456]},{"name":"wlan_notification_acm_disconnecting","features":[456]},{"name":"wlan_notification_acm_end","features":[456]},{"name":"wlan_notification_acm_filter_list_change","features":[456]},{"name":"wlan_notification_acm_interface_arrival","features":[456]},{"name":"wlan_notification_acm_interface_removal","features":[456]},{"name":"wlan_notification_acm_network_available","features":[456]},{"name":"wlan_notification_acm_network_not_available","features":[456]},{"name":"wlan_notification_acm_operational_state_change","features":[456]},{"name":"wlan_notification_acm_power_setting_change","features":[456]},{"name":"wlan_notification_acm_profile_blocked","features":[456]},{"name":"wlan_notification_acm_profile_change","features":[456]},{"name":"wlan_notification_acm_profile_name_change","features":[456]},{"name":"wlan_notification_acm_profile_unblocked","features":[456]},{"name":"wlan_notification_acm_profiles_exhausted","features":[456]},{"name":"wlan_notification_acm_scan_complete","features":[456]},{"name":"wlan_notification_acm_scan_fail","features":[456]},{"name":"wlan_notification_acm_scan_list_refresh","features":[456]},{"name":"wlan_notification_acm_screen_power_change","features":[456]},{"name":"wlan_notification_acm_start","features":[456]},{"name":"wlan_notification_msm_adapter_operation_mode_change","features":[456]},{"name":"wlan_notification_msm_adapter_removal","features":[456]},{"name":"wlan_notification_msm_associated","features":[456]},{"name":"wlan_notification_msm_associating","features":[456]},{"name":"wlan_notification_msm_authenticating","features":[456]},{"name":"wlan_notification_msm_connected","features":[456]},{"name":"wlan_notification_msm_disassociating","features":[456]},{"name":"wlan_notification_msm_disconnected","features":[456]},{"name":"wlan_notification_msm_end","features":[456]},{"name":"wlan_notification_msm_link_degraded","features":[456]},{"name":"wlan_notification_msm_link_improved","features":[456]},{"name":"wlan_notification_msm_peer_join","features":[456]},{"name":"wlan_notification_msm_peer_leave","features":[456]},{"name":"wlan_notification_msm_radio_state_change","features":[456]},{"name":"wlan_notification_msm_roaming_end","features":[456]},{"name":"wlan_notification_msm_roaming_start","features":[456]},{"name":"wlan_notification_msm_signal_quality_change","features":[456]},{"name":"wlan_notification_msm_start","features":[456]},{"name":"wlan_notification_security_end","features":[456]},{"name":"wlan_notification_security_start","features":[456]},{"name":"wlan_opcode_value_type_invalid","features":[456]},{"name":"wlan_opcode_value_type_query_only","features":[456]},{"name":"wlan_opcode_value_type_set_by_group_policy","features":[456]},{"name":"wlan_opcode_value_type_set_by_user","features":[456]},{"name":"wlan_operational_state_going_off","features":[456]},{"name":"wlan_operational_state_going_on","features":[456]},{"name":"wlan_operational_state_off","features":[456]},{"name":"wlan_operational_state_on","features":[456]},{"name":"wlan_operational_state_unknown","features":[456]},{"name":"wlan_power_setting_invalid","features":[456]},{"name":"wlan_power_setting_low_saving","features":[456]},{"name":"wlan_power_setting_maximum_saving","features":[456]},{"name":"wlan_power_setting_medium_saving","features":[456]},{"name":"wlan_power_setting_no_saving","features":[456]},{"name":"wlan_secure_ac_enabled","features":[456]},{"name":"wlan_secure_add_new_all_user_profiles","features":[456]},{"name":"wlan_secure_add_new_per_user_profiles","features":[456]},{"name":"wlan_secure_all_user_profiles_order","features":[456]},{"name":"wlan_secure_bc_scan_enabled","features":[456]},{"name":"wlan_secure_bss_type","features":[456]},{"name":"wlan_secure_current_operation_mode","features":[456]},{"name":"wlan_secure_deny_list","features":[456]},{"name":"wlan_secure_get_plaintext_key","features":[456]},{"name":"wlan_secure_hosted_network_elevated_access","features":[456]},{"name":"wlan_secure_ihv_control","features":[456]},{"name":"wlan_secure_interface_properties","features":[456]},{"name":"wlan_secure_media_streaming_mode_enabled","features":[456]},{"name":"wlan_secure_permit_list","features":[456]},{"name":"wlan_secure_show_denied","features":[456]},{"name":"wlan_secure_virtual_station_extensibility","features":[456]},{"name":"wlan_secure_wfd_elevated_access","features":[456]}],"462":[{"name":"IWCNConnectNotify","features":[459]},{"name":"IWCNDevice","features":[459]},{"name":"PKEY_WCN_DeviceType_Category","features":[459,374]},{"name":"PKEY_WCN_DeviceType_SubCategory","features":[459,374]},{"name":"PKEY_WCN_DeviceType_SubCategoryOUI","features":[459,374]},{"name":"PKEY_WCN_SSID","features":[459,374]},{"name":"SID_WcnProvider","features":[459]},{"name":"WCNDeviceObject","features":[459]},{"name":"WCN_API_MAX_BUFFER_SIZE","features":[459]},{"name":"WCN_ATTRIBUTE_TYPE","features":[459]},{"name":"WCN_E_AUTHENTICATION_FAILED","features":[459]},{"name":"WCN_E_CONNECTION_REJECTED","features":[459]},{"name":"WCN_E_PEER_NOT_FOUND","features":[459]},{"name":"WCN_E_PROTOCOL_ERROR","features":[459]},{"name":"WCN_E_SESSION_TIMEDOUT","features":[459]},{"name":"WCN_FLAG_AUTHENTICATED_VE","features":[459]},{"name":"WCN_FLAG_DISCOVERY_VE","features":[459]},{"name":"WCN_FLAG_ENCRYPTED_VE","features":[459]},{"name":"WCN_MICROSOFT_VENDOR_ID","features":[459]},{"name":"WCN_NO_SUBTYPE","features":[459]},{"name":"WCN_NUM_ATTRIBUTE_TYPES","features":[459]},{"name":"WCN_PASSWORD_TYPE","features":[459]},{"name":"WCN_PASSWORD_TYPE_OOB_SPECIFIED","features":[459]},{"name":"WCN_PASSWORD_TYPE_PIN","features":[459]},{"name":"WCN_PASSWORD_TYPE_PIN_REGISTRAR_SPECIFIED","features":[459]},{"name":"WCN_PASSWORD_TYPE_PUSH_BUTTON","features":[459]},{"name":"WCN_PASSWORD_TYPE_WFDS","features":[459]},{"name":"WCN_QUERY_CONSTRAINT_USE_SOFTAP","features":[459]},{"name":"WCN_SESSION_STATUS","features":[459]},{"name":"WCN_SESSION_STATUS_FAILURE_GENERIC","features":[459]},{"name":"WCN_SESSION_STATUS_FAILURE_TIMEOUT","features":[459]},{"name":"WCN_SESSION_STATUS_SUCCESS","features":[459]},{"name":"WCN_TYPE_802_1X_ENABLED","features":[459]},{"name":"WCN_TYPE_APPLICATION_EXTENSION","features":[459]},{"name":"WCN_TYPE_APPSESSIONKEY","features":[459]},{"name":"WCN_TYPE_AP_CHANNEL","features":[459]},{"name":"WCN_TYPE_AP_SETUP_LOCKED","features":[459]},{"name":"WCN_TYPE_ASSOCIATION_STATE","features":[459]},{"name":"WCN_TYPE_AUTHENTICATION_TYPE","features":[459]},{"name":"WCN_TYPE_AUTHENTICATION_TYPE_FLAGS","features":[459]},{"name":"WCN_TYPE_AUTHENTICATOR","features":[459]},{"name":"WCN_TYPE_AUTHORIZED_MACS","features":[459]},{"name":"WCN_TYPE_BSSID","features":[459]},{"name":"WCN_TYPE_CONFIGURATION_ERROR","features":[459]},{"name":"WCN_TYPE_CONFIG_METHODS","features":[459]},{"name":"WCN_TYPE_CONFIRMATION_URL4","features":[459]},{"name":"WCN_TYPE_CONFIRMATION_URL6","features":[459]},{"name":"WCN_TYPE_CONNECTION_TYPE","features":[459]},{"name":"WCN_TYPE_CONNECTION_TYPE_FLAGS","features":[459]},{"name":"WCN_TYPE_CREDENTIAL","features":[459]},{"name":"WCN_TYPE_CURRENT_SSID","features":[459]},{"name":"WCN_TYPE_DEVICE_NAME","features":[459]},{"name":"WCN_TYPE_DEVICE_PASSWORD_ID","features":[459]},{"name":"WCN_TYPE_DOT11_MAC_ADDRESS","features":[459]},{"name":"WCN_TYPE_EAP_IDENTITY","features":[459]},{"name":"WCN_TYPE_EAP_TYPE","features":[459]},{"name":"WCN_TYPE_ENCRYPTED_SETTINGS","features":[459]},{"name":"WCN_TYPE_ENCRYPTION_TYPE","features":[459]},{"name":"WCN_TYPE_ENCRYPTION_TYPE_FLAGS","features":[459]},{"name":"WCN_TYPE_ENROLLEE_NONCE","features":[459]},{"name":"WCN_TYPE_E_HASH1","features":[459]},{"name":"WCN_TYPE_E_HASH2","features":[459]},{"name":"WCN_TYPE_E_SNONCE1","features":[459]},{"name":"WCN_TYPE_E_SNONCE2","features":[459]},{"name":"WCN_TYPE_FEATURE_ID","features":[459]},{"name":"WCN_TYPE_IDENTITY","features":[459]},{"name":"WCN_TYPE_IDENTITY_PROOF","features":[459]},{"name":"WCN_TYPE_INITIALIZATION_VECTOR","features":[459]},{"name":"WCN_TYPE_KEY_IDENTIFIER","features":[459]},{"name":"WCN_TYPE_KEY_LIFETIME","features":[459]},{"name":"WCN_TYPE_KEY_PROVIDED_AUTOMATICALLY","features":[459]},{"name":"WCN_TYPE_KEY_WRAP_AUTHENTICATOR","features":[459]},{"name":"WCN_TYPE_MAC_ADDRESS","features":[459]},{"name":"WCN_TYPE_MANUFACTURER","features":[459]},{"name":"WCN_TYPE_MESSAGE_COUNTER","features":[459]},{"name":"WCN_TYPE_MESSAGE_TYPE","features":[459]},{"name":"WCN_TYPE_MODEL_NAME","features":[459]},{"name":"WCN_TYPE_MODEL_NUMBER","features":[459]},{"name":"WCN_TYPE_NETWORK_INDEX","features":[459]},{"name":"WCN_TYPE_NETWORK_KEY","features":[459]},{"name":"WCN_TYPE_NETWORK_KEY_INDEX","features":[459]},{"name":"WCN_TYPE_NETWORK_KEY_SHAREABLE","features":[459]},{"name":"WCN_TYPE_NEW_DEVICE_NAME","features":[459]},{"name":"WCN_TYPE_NEW_PASSWORD","features":[459]},{"name":"WCN_TYPE_OOB_DEVICE_PASSWORD","features":[459]},{"name":"WCN_TYPE_OS_VERSION","features":[459]},{"name":"WCN_TYPE_PERMITTED_CONFIG_METHODS","features":[459]},{"name":"WCN_TYPE_PORTABLE_DEVICE","features":[459]},{"name":"WCN_TYPE_POWER_LEVEL","features":[459]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE","features":[459]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE_CATEGORY","features":[459]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE_SUBCATEGORY","features":[459]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE_SUBCATEGORY_OUI","features":[459]},{"name":"WCN_TYPE_PSK_CURRENT","features":[459]},{"name":"WCN_TYPE_PSK_MAX","features":[459]},{"name":"WCN_TYPE_PUBLIC_KEY","features":[459]},{"name":"WCN_TYPE_PUBLIC_KEY_HASH","features":[459]},{"name":"WCN_TYPE_RADIO_ENABLED","features":[459]},{"name":"WCN_TYPE_REBOOT","features":[459]},{"name":"WCN_TYPE_REGISTRAR_CURRENT","features":[459]},{"name":"WCN_TYPE_REGISTRAR_ESTABLISHED","features":[459]},{"name":"WCN_TYPE_REGISTRAR_LIST","features":[459]},{"name":"WCN_TYPE_REGISTRAR_MAX","features":[459]},{"name":"WCN_TYPE_REGISTRAR_NONCE","features":[459]},{"name":"WCN_TYPE_REKEY_KEY","features":[459]},{"name":"WCN_TYPE_REQUESTED_DEVICE_TYPE","features":[459]},{"name":"WCN_TYPE_REQUEST_TO_ENROLL","features":[459]},{"name":"WCN_TYPE_REQUEST_TYPE","features":[459]},{"name":"WCN_TYPE_RESPONSE_TYPE","features":[459]},{"name":"WCN_TYPE_RF_BANDS","features":[459]},{"name":"WCN_TYPE_R_HASH1","features":[459]},{"name":"WCN_TYPE_R_HASH2","features":[459]},{"name":"WCN_TYPE_R_SNONCE1","features":[459]},{"name":"WCN_TYPE_R_SNONCE2","features":[459]},{"name":"WCN_TYPE_SECONDARY_DEVICE_TYPE_LIST","features":[459]},{"name":"WCN_TYPE_SELECTED_REGISTRAR","features":[459]},{"name":"WCN_TYPE_SELECTED_REGISTRAR_CONFIG_METHODS","features":[459]},{"name":"WCN_TYPE_SERIAL_NUMBER","features":[459]},{"name":"WCN_TYPE_SETTINGS_DELAY_TIME","features":[459]},{"name":"WCN_TYPE_SSID","features":[459]},{"name":"WCN_TYPE_TOTAL_NETWORKS","features":[459]},{"name":"WCN_TYPE_UUID","features":[459]},{"name":"WCN_TYPE_UUID_E","features":[459]},{"name":"WCN_TYPE_UUID_R","features":[459]},{"name":"WCN_TYPE_VENDOR_EXTENSION","features":[459]},{"name":"WCN_TYPE_VENDOR_EXTENSION_WFA","features":[459]},{"name":"WCN_TYPE_VERSION","features":[459]},{"name":"WCN_TYPE_VERSION2","features":[459]},{"name":"WCN_TYPE_WEPTRANSMITKEY","features":[459]},{"name":"WCN_TYPE_WI_FI_PROTECTED_SETUP_STATE","features":[459]},{"name":"WCN_TYPE_X_509_CERTIFICATE","features":[459]},{"name":"WCN_TYPE_X_509_CERTIFICATE_REQUEST","features":[459]},{"name":"WCN_VALUE_AS_ASSOCIATION_FAILURE","features":[459]},{"name":"WCN_VALUE_AS_CONFIGURATION_FAILURE","features":[459]},{"name":"WCN_VALUE_AS_CONNECTION_SUCCESS","features":[459]},{"name":"WCN_VALUE_AS_IP_FAILURE","features":[459]},{"name":"WCN_VALUE_AS_NOT_ASSOCIATED","features":[459]},{"name":"WCN_VALUE_AT_OPEN","features":[459]},{"name":"WCN_VALUE_AT_SHARED","features":[459]},{"name":"WCN_VALUE_AT_WPA","features":[459]},{"name":"WCN_VALUE_AT_WPA2","features":[459]},{"name":"WCN_VALUE_AT_WPA2PSK","features":[459]},{"name":"WCN_VALUE_AT_WPAPSK","features":[459]},{"name":"WCN_VALUE_AT_WPAWPA2PSK_MIXED","features":[459]},{"name":"WCN_VALUE_CE_2_4_CHANNEL_NOT_SUPPORTED","features":[459]},{"name":"WCN_VALUE_CE_5_0_CHANNEL_NOT_SUPPORTED","features":[459]},{"name":"WCN_VALUE_CE_COULD_NOT_CONNECT_TO_REGISTRAR","features":[459]},{"name":"WCN_VALUE_CE_DECRYPTION_CRC_FAILURE","features":[459]},{"name":"WCN_VALUE_CE_DEVICE_BUSY","features":[459]},{"name":"WCN_VALUE_CE_DEVICE_PASSWORD_AUTH_FAILURE","features":[459]},{"name":"WCN_VALUE_CE_FAILED_DHCP_CONFIG","features":[459]},{"name":"WCN_VALUE_CE_IP_ADDRESS_CONFLICT","features":[459]},{"name":"WCN_VALUE_CE_MESSAGE_TIMEOUT","features":[459]},{"name":"WCN_VALUE_CE_MULTIPLE_PBC_SESSIONS_DETECTED","features":[459]},{"name":"WCN_VALUE_CE_NETWORK_ASSOCIATION_FAILURE","features":[459]},{"name":"WCN_VALUE_CE_NETWORK_AUTHENTICATION_FAILURE","features":[459]},{"name":"WCN_VALUE_CE_NO_DHCP_RESPONSE","features":[459]},{"name":"WCN_VALUE_CE_NO_ERROR","features":[459]},{"name":"WCN_VALUE_CE_OOB_INTERFACE_READ_ERROR","features":[459]},{"name":"WCN_VALUE_CE_REGISTRATION_SESSION_TIMEOUT","features":[459]},{"name":"WCN_VALUE_CE_ROGUE_ACTIVITY_SUSPECTED","features":[459]},{"name":"WCN_VALUE_CE_SETUP_LOCKED","features":[459]},{"name":"WCN_VALUE_CE_SIGNAL_TOO_WEAK","features":[459]},{"name":"WCN_VALUE_CM_DISPLAY","features":[459]},{"name":"WCN_VALUE_CM_ETHERNET","features":[459]},{"name":"WCN_VALUE_CM_EXTERNAL_NFC","features":[459]},{"name":"WCN_VALUE_CM_INTEGRATED_NFC","features":[459]},{"name":"WCN_VALUE_CM_KEYPAD","features":[459]},{"name":"WCN_VALUE_CM_LABEL","features":[459]},{"name":"WCN_VALUE_CM_NFC_INTERFACE","features":[459]},{"name":"WCN_VALUE_CM_PHYS_DISPLAY","features":[459]},{"name":"WCN_VALUE_CM_PHYS_PUSHBUTTON","features":[459]},{"name":"WCN_VALUE_CM_PUSHBUTTON","features":[459]},{"name":"WCN_VALUE_CM_USBA","features":[459]},{"name":"WCN_VALUE_CM_VIRT_DISPLAY","features":[459]},{"name":"WCN_VALUE_CM_VIRT_PUSHBUTTON","features":[459]},{"name":"WCN_VALUE_CT_ESS","features":[459]},{"name":"WCN_VALUE_CT_IBSS","features":[459]},{"name":"WCN_VALUE_DP_DEFAULT","features":[459]},{"name":"WCN_VALUE_DP_MACHINE_SPECIFIED","features":[459]},{"name":"WCN_VALUE_DP_NFC_CONNECTION_HANDOVER","features":[459]},{"name":"WCN_VALUE_DP_OUTOFBAND_MAX","features":[459]},{"name":"WCN_VALUE_DP_OUTOFBAND_MIN","features":[459]},{"name":"WCN_VALUE_DP_PUSHBUTTON","features":[459]},{"name":"WCN_VALUE_DP_REGISTRAR_SPECIFIED","features":[459]},{"name":"WCN_VALUE_DP_REKEY","features":[459]},{"name":"WCN_VALUE_DP_USER_SPECIFIED","features":[459]},{"name":"WCN_VALUE_DP_WFD_SERVICES","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_AUDIO_DEVICE","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_CAMERA","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_COMPUTER","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_DISPLAY","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_GAMING_DEVICE","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_INPUT_DEVICE","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_MULTIMEDIA_DEVICE","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_NETWORK_INFRASTRUCTURE","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_OTHER","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_PRINTER","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_STORAGE","features":[459]},{"name":"WCN_VALUE_DT_CATEGORY_TELEPHONE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__HEADPHONES","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__HEADSET","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__HOMETHEATER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__MICROPHONE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__PMP","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__SPEAKERS","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__TUNER_RECEIVER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__SECURITY_CAMERA","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__STILL_CAMERA","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__VIDEO_CAMERA","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__WEB_CAMERA","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__DESKTOP","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__MEDIACENTER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__MID","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__NETBOOK","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__NOTEBOOK","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__PC","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__SERVER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__ULTRAMOBILEPC","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__MONITOR","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__PICTURE_FRAME","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__PROJECTOR","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__TELEVISION","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__CONSOLE_ADAPT","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__PLAYSTATION","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__PORTABLE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__XBOX","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__XBOX360","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__BARCODEREADER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__BIOMETRICREADER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__GAMECONTROLLER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__JOYSTICK","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__KEYBOARD","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__MOUSE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__REMOTE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__TOUCHSCREEN","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__TRACKBALL","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__DAR","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__MCX","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__MEDIA_SERVER_ADAPT_EXT","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__PVP","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__PVR","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__SETTOPBOX","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__AP","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__BRIDGE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__GATEWAY","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__ROUTER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__SWITCH","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__ALLINONE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__COPIER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__FAX","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__PRINTER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__SCANNER","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_STORAGE__NAS","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__PHONE_DUALMODE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__PHONE_SINGLEMODE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__SMARTPHONE_DUALMODE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__SMARTPHONE_SINGLEMODE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__WINDOWS_MOBILE","features":[459]},{"name":"WCN_VALUE_DT_SUBTYPE_WIFI_OUI","features":[459]},{"name":"WCN_VALUE_ET_AES","features":[459]},{"name":"WCN_VALUE_ET_NONE","features":[459]},{"name":"WCN_VALUE_ET_TKIP","features":[459]},{"name":"WCN_VALUE_ET_TKIP_AES_MIXED","features":[459]},{"name":"WCN_VALUE_ET_WEP","features":[459]},{"name":"WCN_VALUE_FALSE","features":[459]},{"name":"WCN_VALUE_MT_ACK","features":[459]},{"name":"WCN_VALUE_MT_BEACON","features":[459]},{"name":"WCN_VALUE_MT_DONE","features":[459]},{"name":"WCN_VALUE_MT_M1","features":[459]},{"name":"WCN_VALUE_MT_M2","features":[459]},{"name":"WCN_VALUE_MT_M2D","features":[459]},{"name":"WCN_VALUE_MT_M3","features":[459]},{"name":"WCN_VALUE_MT_M4","features":[459]},{"name":"WCN_VALUE_MT_M5","features":[459]},{"name":"WCN_VALUE_MT_M6","features":[459]},{"name":"WCN_VALUE_MT_M7","features":[459]},{"name":"WCN_VALUE_MT_M8","features":[459]},{"name":"WCN_VALUE_MT_NACK","features":[459]},{"name":"WCN_VALUE_MT_PROBE_REQUEST","features":[459]},{"name":"WCN_VALUE_MT_PROBE_RESPONSE","features":[459]},{"name":"WCN_VALUE_RB_24GHZ","features":[459]},{"name":"WCN_VALUE_RB_50GHZ","features":[459]},{"name":"WCN_VALUE_ReqT_ENROLLEE_INFO","features":[459]},{"name":"WCN_VALUE_ReqT_ENROLLEE_OPEN_1X","features":[459]},{"name":"WCN_VALUE_ReqT_MANAGER_REGISTRAR","features":[459]},{"name":"WCN_VALUE_ReqT_REGISTRAR","features":[459]},{"name":"WCN_VALUE_RspT_AP","features":[459]},{"name":"WCN_VALUE_RspT_ENROLLEE_INFO","features":[459]},{"name":"WCN_VALUE_RspT_ENROLLEE_OPEN_1X","features":[459]},{"name":"WCN_VALUE_RspT_REGISTRAR","features":[459]},{"name":"WCN_VALUE_SS_CONFIGURED","features":[459]},{"name":"WCN_VALUE_SS_NOT_CONFIGURED","features":[459]},{"name":"WCN_VALUE_SS_RESERVED00","features":[459]},{"name":"WCN_VALUE_TRUE","features":[459]},{"name":"WCN_VALUE_TYPE_ASSOCIATION_STATE","features":[459]},{"name":"WCN_VALUE_TYPE_AUTHENTICATION_TYPE","features":[459]},{"name":"WCN_VALUE_TYPE_BOOLEAN","features":[459]},{"name":"WCN_VALUE_TYPE_CONFIGURATION_ERROR","features":[459]},{"name":"WCN_VALUE_TYPE_CONFIG_METHODS","features":[459]},{"name":"WCN_VALUE_TYPE_CONNECTION_TYPE","features":[459]},{"name":"WCN_VALUE_TYPE_DEVICE_PASSWORD_ID","features":[459]},{"name":"WCN_VALUE_TYPE_ENCRYPTION_TYPE","features":[459]},{"name":"WCN_VALUE_TYPE_MESSAGE_TYPE","features":[459]},{"name":"WCN_VALUE_TYPE_PRIMARY_DEVICE_TYPE","features":[459]},{"name":"WCN_VALUE_TYPE_REQUEST_TYPE","features":[459]},{"name":"WCN_VALUE_TYPE_RESPONSE_TYPE","features":[459]},{"name":"WCN_VALUE_TYPE_RF_BANDS","features":[459]},{"name":"WCN_VALUE_TYPE_VERSION","features":[459]},{"name":"WCN_VALUE_TYPE_WI_FI_PROTECTED_SETUP_STATE","features":[459]},{"name":"WCN_VALUE_VERSION_1_0","features":[459]},{"name":"WCN_VALUE_VERSION_2_0","features":[459]},{"name":"WCN_VENDOR_EXTENSION_SPEC","features":[459]}],"463":[{"name":"FreeInterfaceContextTable","features":[303,460]},{"name":"GetInterfaceContextTableForHostName","features":[303,460]},{"name":"NET_INTERFACE_CONTEXT","features":[460]},{"name":"NET_INTERFACE_CONTEXT_TABLE","features":[303,460]},{"name":"NET_INTERFACE_FLAG_CONNECT_IF_NEEDED","features":[460]},{"name":"NET_INTERFACE_FLAG_NONE","features":[460]},{"name":"ONDEMAND_NOTIFICATION_CALLBACK","features":[460]},{"name":"OnDemandGetRoutingHint","features":[460]},{"name":"OnDemandRegisterNotification","features":[303,460]},{"name":"OnDemandUnRegisterNotification","features":[303,460]},{"name":"WCM_API_VERSION","features":[460]},{"name":"WCM_API_VERSION_1_0","features":[460]},{"name":"WCM_BILLING_CYCLE_INFO","features":[303,460]},{"name":"WCM_CONNECTION_COST","features":[460]},{"name":"WCM_CONNECTION_COST_APPROACHINGDATALIMIT","features":[460]},{"name":"WCM_CONNECTION_COST_CONGESTED","features":[460]},{"name":"WCM_CONNECTION_COST_DATA","features":[460]},{"name":"WCM_CONNECTION_COST_FIXED","features":[460]},{"name":"WCM_CONNECTION_COST_OVERDATALIMIT","features":[460]},{"name":"WCM_CONNECTION_COST_ROAMING","features":[460]},{"name":"WCM_CONNECTION_COST_SOURCE","features":[460]},{"name":"WCM_CONNECTION_COST_SOURCE_DEFAULT","features":[460]},{"name":"WCM_CONNECTION_COST_SOURCE_GP","features":[460]},{"name":"WCM_CONNECTION_COST_SOURCE_OPERATOR","features":[460]},{"name":"WCM_CONNECTION_COST_SOURCE_USER","features":[460]},{"name":"WCM_CONNECTION_COST_UNKNOWN","features":[460]},{"name":"WCM_CONNECTION_COST_UNRESTRICTED","features":[460]},{"name":"WCM_CONNECTION_COST_VARIABLE","features":[460]},{"name":"WCM_DATAPLAN_STATUS","features":[303,460]},{"name":"WCM_MAX_PROFILE_NAME","features":[460]},{"name":"WCM_MEDIA_TYPE","features":[460]},{"name":"WCM_POLICY_VALUE","features":[303,460]},{"name":"WCM_PROFILE_INFO","features":[460]},{"name":"WCM_PROFILE_INFO_LIST","features":[460]},{"name":"WCM_PROPERTY","features":[460]},{"name":"WCM_TIME_INTERVAL","features":[460]},{"name":"WCM_UNKNOWN_DATAPLAN_STATUS","features":[460]},{"name":"WCM_USAGE_DATA","features":[303,460]},{"name":"WcmFreeMemory","features":[460]},{"name":"WcmGetProfileList","features":[460]},{"name":"WcmQueryProperty","features":[460]},{"name":"WcmSetProfileList","features":[303,460]},{"name":"WcmSetProperty","features":[460]},{"name":"wcm_global_property_domain_policy","features":[460]},{"name":"wcm_global_property_minimize_policy","features":[460]},{"name":"wcm_global_property_powermanagement_policy","features":[460]},{"name":"wcm_global_property_roaming_policy","features":[460]},{"name":"wcm_intf_property_connection_cost","features":[460]},{"name":"wcm_intf_property_dataplan_status","features":[460]},{"name":"wcm_intf_property_hotspot_profile","features":[460]},{"name":"wcm_media_ethernet","features":[460]},{"name":"wcm_media_invalid","features":[460]},{"name":"wcm_media_max","features":[460]},{"name":"wcm_media_mbn","features":[460]},{"name":"wcm_media_unknown","features":[460]},{"name":"wcm_media_wlan","features":[460]}],"464":[{"name":"DL_ADDRESS_TYPE","features":[319]},{"name":"DlBroadcast","features":[319]},{"name":"DlMulticast","features":[319]},{"name":"DlUnicast","features":[319]},{"name":"FWPM_ACTION0","features":[319]},{"name":"FWPM_ACTRL_ADD","features":[319]},{"name":"FWPM_ACTRL_ADD_LINK","features":[319]},{"name":"FWPM_ACTRL_BEGIN_READ_TXN","features":[319]},{"name":"FWPM_ACTRL_BEGIN_WRITE_TXN","features":[319]},{"name":"FWPM_ACTRL_CLASSIFY","features":[319]},{"name":"FWPM_ACTRL_ENUM","features":[319]},{"name":"FWPM_ACTRL_OPEN","features":[319]},{"name":"FWPM_ACTRL_READ","features":[319]},{"name":"FWPM_ACTRL_READ_STATS","features":[319]},{"name":"FWPM_ACTRL_SUBSCRIBE","features":[319]},{"name":"FWPM_ACTRL_WRITE","features":[319]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT","features":[319]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT_SERVER","features":[319]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_PRIVATE_NETWORK","features":[319]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_TYPE","features":[319]},{"name":"FWPM_AUTO_WEIGHT_BITS","features":[319]},{"name":"FWPM_CALLOUT0","features":[319]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_1","features":[319]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_2","features":[319]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_3","features":[319]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_4","features":[319]},{"name":"FWPM_CALLOUT_CHANGE0","features":[319]},{"name":"FWPM_CALLOUT_CHANGE_CALLBACK0","features":[319]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_LISTEN_V4","features":[319]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_RESOURCE_ASSIGNMENT_V4","features":[319]},{"name":"FWPM_CALLOUT_ENUM_TEMPLATE0","features":[319]},{"name":"FWPM_CALLOUT_FLAG_PERSISTENT","features":[319]},{"name":"FWPM_CALLOUT_FLAG_REGISTERED","features":[319]},{"name":"FWPM_CALLOUT_FLAG_USES_PROVIDER_CONTEXT","features":[319]},{"name":"FWPM_CALLOUT_HTTP_TEMPLATE_SSL_HANDSHAKE","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V6","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V4","features":[319]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V6","features":[319]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_SUBSCRIPTION0","features":[319]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V4","features":[319]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V6","features":[319]},{"name":"FWPM_CALLOUT_TEREDO_ALE_LISTEN_V6","features":[319]},{"name":"FWPM_CALLOUT_TEREDO_ALE_RESOURCE_ASSIGNMENT_V6","features":[319]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V4_SILENT_DROP","features":[319]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V6_SILENT_DROP","features":[319]},{"name":"FWPM_CHANGE_ADD","features":[319]},{"name":"FWPM_CHANGE_DELETE","features":[319]},{"name":"FWPM_CHANGE_TYPE","features":[319]},{"name":"FWPM_CHANGE_TYPE_MAX","features":[319]},{"name":"FWPM_CLASSIFY_OPTION0","features":[303,319,306]},{"name":"FWPM_CLASSIFY_OPTIONS0","features":[303,319,306]},{"name":"FWPM_CLASSIFY_OPTIONS_CONTEXT","features":[319]},{"name":"FWPM_CONDITION_ALE_APP_ID","features":[319]},{"name":"FWPM_CONDITION_ALE_EFFECTIVE_NAME","features":[319]},{"name":"FWPM_CONDITION_ALE_NAP_CONTEXT","features":[319]},{"name":"FWPM_CONDITION_ALE_ORIGINAL_APP_ID","features":[319]},{"name":"FWPM_CONDITION_ALE_PACKAGE_ID","features":[319]},{"name":"FWPM_CONDITION_ALE_PROMISCUOUS_MODE","features":[319]},{"name":"FWPM_CONDITION_ALE_REAUTH_REASON","features":[319]},{"name":"FWPM_CONDITION_ALE_REMOTE_MACHINE_ID","features":[319]},{"name":"FWPM_CONDITION_ALE_REMOTE_USER_ID","features":[319]},{"name":"FWPM_CONDITION_ALE_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[319]},{"name":"FWPM_CONDITION_ALE_SIO_FIREWALL_SYSTEM_PORT","features":[319]},{"name":"FWPM_CONDITION_ALE_USER_ID","features":[319]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_PROFILE_ID","features":[319]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_TYPE","features":[319]},{"name":"FWPM_CONDITION_ARRIVAL_TUNNEL_TYPE","features":[319]},{"name":"FWPM_CONDITION_AUTHENTICATION_TYPE","features":[319]},{"name":"FWPM_CONDITION_CLIENT_CERT_KEY_LENGTH","features":[319]},{"name":"FWPM_CONDITION_CLIENT_CERT_OID","features":[319]},{"name":"FWPM_CONDITION_CLIENT_TOKEN","features":[319]},{"name":"FWPM_CONDITION_COMPARTMENT_ID","features":[319]},{"name":"FWPM_CONDITION_CURRENT_PROFILE_ID","features":[319]},{"name":"FWPM_CONDITION_DCOM_APP_ID","features":[319]},{"name":"FWPM_CONDITION_DESTINATION_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_DESTINATION_SUB_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_DIRECTION","features":[319]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_ADDRESS_TYPE","features":[319]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_PORT","features":[319]},{"name":"FWPM_CONDITION_EMBEDDED_PROTOCOL","features":[319]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_PORT","features":[319]},{"name":"FWPM_CONDITION_ETHER_TYPE","features":[319]},{"name":"FWPM_CONDITION_FLAGS","features":[319]},{"name":"FWPM_CONDITION_IMAGE_NAME","features":[319]},{"name":"FWPM_CONDITION_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_INTERFACE_MAC_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_INTERFACE_QUARANTINE_EPOCH","features":[319]},{"name":"FWPM_CONDITION_INTERFACE_TYPE","features":[319]},{"name":"FWPM_CONDITION_IPSEC_POLICY_KEY","features":[319]},{"name":"FWPM_CONDITION_IPSEC_SECURITY_REALM_ID","features":[319]},{"name":"FWPM_CONDITION_IP_ARRIVAL_INTERFACE","features":[319]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS_TYPE","features":[319]},{"name":"FWPM_CONDITION_IP_DESTINATION_PORT","features":[319]},{"name":"FWPM_CONDITION_IP_FORWARD_INTERFACE","features":[319]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_TYPE","features":[319]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V4","features":[319]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V6","features":[319]},{"name":"FWPM_CONDITION_IP_LOCAL_INTERFACE","features":[319]},{"name":"FWPM_CONDITION_IP_LOCAL_PORT","features":[319]},{"name":"FWPM_CONDITION_IP_NEXTHOP_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_IP_NEXTHOP_INTERFACE","features":[319]},{"name":"FWPM_CONDITION_IP_PHYSICAL_ARRIVAL_INTERFACE","features":[319]},{"name":"FWPM_CONDITION_IP_PHYSICAL_NEXTHOP_INTERFACE","features":[319]},{"name":"FWPM_CONDITION_IP_PROTOCOL","features":[319]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V4","features":[319]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V6","features":[319]},{"name":"FWPM_CONDITION_IP_REMOTE_PORT","features":[319]},{"name":"FWPM_CONDITION_IP_SOURCE_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_IP_SOURCE_PORT","features":[319]},{"name":"FWPM_CONDITION_KM_AUTH_NAP_CONTEXT","features":[319]},{"name":"FWPM_CONDITION_KM_MODE","features":[319]},{"name":"FWPM_CONDITION_KM_TYPE","features":[319]},{"name":"FWPM_CONDITION_L2_FLAGS","features":[319]},{"name":"FWPM_CONDITION_LOCAL_INTERFACE_PROFILE_ID","features":[319]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS_TYPE","features":[319]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS_TYPE","features":[319]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS_TYPE","features":[319]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS","features":[319]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS_TYPE","features":[319]},{"name":"FWPM_CONDITION_NDIS_MEDIA_TYPE","features":[319]},{"name":"FWPM_CONDITION_NDIS_PHYSICAL_MEDIA_TYPE","features":[319]},{"name":"FWPM_CONDITION_NDIS_PORT","features":[319]},{"name":"FWPM_CONDITION_NET_EVENT_TYPE","features":[319]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_PROFILE_ID","features":[319]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_TYPE","features":[319]},{"name":"FWPM_CONDITION_NEXTHOP_SUB_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_NEXTHOP_TUNNEL_TYPE","features":[319]},{"name":"FWPM_CONDITION_ORIGINAL_ICMP_TYPE","features":[319]},{"name":"FWPM_CONDITION_ORIGINAL_PROFILE_ID","features":[319]},{"name":"FWPM_CONDITION_PEER_NAME","features":[319]},{"name":"FWPM_CONDITION_PIPE","features":[319]},{"name":"FWPM_CONDITION_PROCESS_WITH_RPC_IF_UUID","features":[319]},{"name":"FWPM_CONDITION_QM_MODE","features":[319]},{"name":"FWPM_CONDITION_REAUTHORIZE_REASON","features":[319]},{"name":"FWPM_CONDITION_REMOTE_ID","features":[319]},{"name":"FWPM_CONDITION_REMOTE_USER_TOKEN","features":[319]},{"name":"FWPM_CONDITION_RESERVED0","features":[319]},{"name":"FWPM_CONDITION_RESERVED1","features":[319]},{"name":"FWPM_CONDITION_RESERVED10","features":[319]},{"name":"FWPM_CONDITION_RESERVED11","features":[319]},{"name":"FWPM_CONDITION_RESERVED12","features":[319]},{"name":"FWPM_CONDITION_RESERVED13","features":[319]},{"name":"FWPM_CONDITION_RESERVED14","features":[319]},{"name":"FWPM_CONDITION_RESERVED15","features":[319]},{"name":"FWPM_CONDITION_RESERVED2","features":[319]},{"name":"FWPM_CONDITION_RESERVED3","features":[319]},{"name":"FWPM_CONDITION_RESERVED4","features":[319]},{"name":"FWPM_CONDITION_RESERVED5","features":[319]},{"name":"FWPM_CONDITION_RESERVED6","features":[319]},{"name":"FWPM_CONDITION_RESERVED7","features":[319]},{"name":"FWPM_CONDITION_RESERVED8","features":[319]},{"name":"FWPM_CONDITION_RESERVED9","features":[319]},{"name":"FWPM_CONDITION_RPC_AUTH_LEVEL","features":[319]},{"name":"FWPM_CONDITION_RPC_AUTH_TYPE","features":[319]},{"name":"FWPM_CONDITION_RPC_EP_FLAGS","features":[319]},{"name":"FWPM_CONDITION_RPC_EP_VALUE","features":[319]},{"name":"FWPM_CONDITION_RPC_IF_FLAG","features":[319]},{"name":"FWPM_CONDITION_RPC_IF_UUID","features":[319]},{"name":"FWPM_CONDITION_RPC_IF_VERSION","features":[319]},{"name":"FWPM_CONDITION_RPC_PROTOCOL","features":[319]},{"name":"FWPM_CONDITION_RPC_PROXY_AUTH_TYPE","features":[319]},{"name":"FWPM_CONDITION_RPC_SERVER_NAME","features":[319]},{"name":"FWPM_CONDITION_RPC_SERVER_PORT","features":[319]},{"name":"FWPM_CONDITION_SEC_ENCRYPT_ALGORITHM","features":[319]},{"name":"FWPM_CONDITION_SEC_KEY_SIZE","features":[319]},{"name":"FWPM_CONDITION_SOURCE_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_SOURCE_SUB_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_SUB_INTERFACE_INDEX","features":[319]},{"name":"FWPM_CONDITION_TUNNEL_TYPE","features":[319]},{"name":"FWPM_CONDITION_VLAN_ID","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_ID","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_TYPE","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_VM_ID","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_ID","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_NETWORK_TYPE","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_ID","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_TYPE","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_VM_ID","features":[319]},{"name":"FWPM_CONDITION_VSWITCH_TENANT_NETWORK_ID","features":[319]},{"name":"FWPM_CONNECTION0","features":[303,319]},{"name":"FWPM_CONNECTION_CALLBACK0","features":[303,319]},{"name":"FWPM_CONNECTION_ENUM_FLAG_QUERY_BYTES_TRANSFERRED","features":[319]},{"name":"FWPM_CONNECTION_ENUM_TEMPLATE0","features":[319]},{"name":"FWPM_CONNECTION_EVENT_ADD","features":[319]},{"name":"FWPM_CONNECTION_EVENT_DELETE","features":[319]},{"name":"FWPM_CONNECTION_EVENT_MAX","features":[319]},{"name":"FWPM_CONNECTION_EVENT_TYPE","features":[319]},{"name":"FWPM_CONNECTION_SUBSCRIPTION0","features":[319]},{"name":"FWPM_DISPLAY_DATA0","features":[319]},{"name":"FWPM_DYNAMIC_KEYWORD_CALLBACK0","features":[319]},{"name":"FWPM_ENGINE_COLLECT_NET_EVENTS","features":[319]},{"name":"FWPM_ENGINE_MONITOR_IPSEC_CONNECTIONS","features":[319]},{"name":"FWPM_ENGINE_NAME_CACHE","features":[319]},{"name":"FWPM_ENGINE_NET_EVENT_MATCH_ANY_KEYWORDS","features":[319]},{"name":"FWPM_ENGINE_OPTION","features":[319]},{"name":"FWPM_ENGINE_OPTION_MAX","features":[319]},{"name":"FWPM_ENGINE_OPTION_PACKET_BATCH_INBOUND","features":[319]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_FORWARD","features":[319]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_INBOUND","features":[319]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_NONE","features":[319]},{"name":"FWPM_ENGINE_PACKET_QUEUING","features":[319]},{"name":"FWPM_ENGINE_TXN_WATCHDOG_TIMEOUT_IN_MSEC","features":[319]},{"name":"FWPM_FIELD0","features":[319]},{"name":"FWPM_FIELD_FLAGS","features":[319]},{"name":"FWPM_FIELD_IP_ADDRESS","features":[319]},{"name":"FWPM_FIELD_RAW_DATA","features":[319]},{"name":"FWPM_FIELD_TYPE","features":[319]},{"name":"FWPM_FIELD_TYPE_MAX","features":[319]},{"name":"FWPM_FILTER0","features":[303,319,306]},{"name":"FWPM_FILTER_CHANGE0","features":[319]},{"name":"FWPM_FILTER_CHANGE_CALLBACK0","features":[319]},{"name":"FWPM_FILTER_CONDITION0","features":[303,319,306]},{"name":"FWPM_FILTER_ENUM_TEMPLATE0","features":[303,319,306]},{"name":"FWPM_FILTER_FLAGS","features":[319]},{"name":"FWPM_FILTER_FLAG_BOOTTIME","features":[319]},{"name":"FWPM_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[319]},{"name":"FWPM_FILTER_FLAG_DISABLED","features":[319]},{"name":"FWPM_FILTER_FLAG_GAMEOS_ONLY","features":[319]},{"name":"FWPM_FILTER_FLAG_HAS_PROVIDER_CONTEXT","features":[319]},{"name":"FWPM_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[319]},{"name":"FWPM_FILTER_FLAG_INDEXED","features":[319]},{"name":"FWPM_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[319]},{"name":"FWPM_FILTER_FLAG_NONE","features":[319]},{"name":"FWPM_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[319]},{"name":"FWPM_FILTER_FLAG_PERSISTENT","features":[319]},{"name":"FWPM_FILTER_FLAG_RESERVED0","features":[319]},{"name":"FWPM_FILTER_FLAG_RESERVED1","features":[319]},{"name":"FWPM_FILTER_FLAG_SILENT_MODE","features":[319]},{"name":"FWPM_FILTER_FLAG_SYSTEMOS_ONLY","features":[319]},{"name":"FWPM_FILTER_SUBSCRIPTION0","features":[303,319,306]},{"name":"FWPM_GENERAL_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_AUTHIP_MM_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_AUTHIP_QM_TRANSPORT_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_AUTHIP_QM_TUNNEL_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_DOSP_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_IKEV2_MM_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_IKEV2_QM_TRANSPORT_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_IKEV2_QM_TUNNEL_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_IKE_MM_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_IKE_QM_TRANSPORT_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_IKE_QM_TUNNEL_CONTEXT","features":[319]},{"name":"FWPM_IPSEC_KEYING_CONTEXT","features":[319]},{"name":"FWPM_KEYING_MODULE_AUTHIP","features":[319]},{"name":"FWPM_KEYING_MODULE_IKE","features":[319]},{"name":"FWPM_KEYING_MODULE_IKEV2","features":[319]},{"name":"FWPM_LAYER0","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6","features":[319]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V4","features":[319]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V6","features":[319]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V4","features":[319]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V6","features":[319]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V4","features":[319]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V6","features":[319]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4","features":[319]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6","features":[319]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4","features":[319]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6","features":[319]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V4","features":[319]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V6","features":[319]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4","features":[319]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6","features":[319]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_ETHERNET","features":[319]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V4","features":[319]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V6","features":[319]},{"name":"FWPM_LAYER_ENUM_TEMPLATE0","features":[319]},{"name":"FWPM_LAYER_FLAG_BUFFERED","features":[319]},{"name":"FWPM_LAYER_FLAG_BUILTIN","features":[319]},{"name":"FWPM_LAYER_FLAG_CLASSIFY_MOSTLY","features":[319]},{"name":"FWPM_LAYER_FLAG_KERNEL","features":[319]},{"name":"FWPM_LAYER_IKEEXT_V4","features":[319]},{"name":"FWPM_LAYER_IKEEXT_V6","features":[319]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4","features":[319]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6","features":[319]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4","features":[319]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6","features":[319]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_ETHERNET","features":[319]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE","features":[319]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE_FAST","features":[319]},{"name":"FWPM_LAYER_INBOUND_RESERVED2","features":[319]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_FAST","features":[319]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4","features":[319]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6","features":[319]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_ETHERNET","features":[319]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V4","features":[319]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V6","features":[319]},{"name":"FWPM_LAYER_IPFORWARD_V4","features":[319]},{"name":"FWPM_LAYER_IPFORWARD_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_IPFORWARD_V6","features":[319]},{"name":"FWPM_LAYER_IPFORWARD_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V4","features":[319]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V6","features":[319]},{"name":"FWPM_LAYER_IPSEC_V4","features":[319]},{"name":"FWPM_LAYER_IPSEC_V6","features":[319]},{"name":"FWPM_LAYER_KM_AUTHORIZATION","features":[319]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V4","features":[319]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V6","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_ETHERNET","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE_FAST","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V4","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V6","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_FAST","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6","features":[319]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6_DISCARD","features":[319]},{"name":"FWPM_LAYER_RPC_EPMAP","features":[319]},{"name":"FWPM_LAYER_RPC_EP_ADD","features":[319]},{"name":"FWPM_LAYER_RPC_PROXY_CONN","features":[319]},{"name":"FWPM_LAYER_RPC_PROXY_IF","features":[319]},{"name":"FWPM_LAYER_RPC_UM","features":[319]},{"name":"FWPM_LAYER_STATISTICS0","features":[319]},{"name":"FWPM_LAYER_STREAM_PACKET_V4","features":[319]},{"name":"FWPM_LAYER_STREAM_PACKET_V6","features":[319]},{"name":"FWPM_LAYER_STREAM_V4","features":[319]},{"name":"FWPM_LAYER_STREAM_V4_DISCARD","features":[319]},{"name":"FWPM_LAYER_STREAM_V6","features":[319]},{"name":"FWPM_LAYER_STREAM_V6_DISCARD","features":[319]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_CONTEXT","features":[319]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTING0","features":[303,319,306]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTINGS0","features":[303,319,306]},{"name":"FWPM_NET_EVENT0","features":[303,319,306]},{"name":"FWPM_NET_EVENT1","features":[303,319,306]},{"name":"FWPM_NET_EVENT2","features":[303,319,306]},{"name":"FWPM_NET_EVENT3","features":[303,319,306]},{"name":"FWPM_NET_EVENT4","features":[303,319,306]},{"name":"FWPM_NET_EVENT5","features":[303,319,306]},{"name":"FWPM_NET_EVENT_CALLBACK0","features":[303,319,306]},{"name":"FWPM_NET_EVENT_CALLBACK1","features":[303,319,306]},{"name":"FWPM_NET_EVENT_CALLBACK2","features":[303,319,306]},{"name":"FWPM_NET_EVENT_CALLBACK3","features":[303,319,306]},{"name":"FWPM_NET_EVENT_CALLBACK4","features":[303,319,306]},{"name":"FWPM_NET_EVENT_CAPABILITY_ALLOW0","features":[303,319]},{"name":"FWPM_NET_EVENT_CAPABILITY_DROP0","features":[303,319]},{"name":"FWPM_NET_EVENT_CLASSIFY_ALLOW0","features":[303,319]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP0","features":[319]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP1","features":[303,319]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP2","features":[303,319]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP_MAC0","features":[303,319]},{"name":"FWPM_NET_EVENT_ENUM_TEMPLATE0","features":[303,319,306]},{"name":"FWPM_NET_EVENT_FLAG_APP_ID_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_EFFECTIVE_NAME_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_ENTERPRISE_ID_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_IP_PROTOCOL_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_IP_VERSION_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_ADDR_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_PORT_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_PACKAGE_ID_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_POLICY_FLAGS_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_REAUTH_REASON_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_ADDR_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_PORT_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_SCOPE_ID_SET","features":[319]},{"name":"FWPM_NET_EVENT_FLAG_USER_ID_SET","features":[319]},{"name":"FWPM_NET_EVENT_HEADER0","features":[303,319,306]},{"name":"FWPM_NET_EVENT_HEADER1","features":[303,319,306]},{"name":"FWPM_NET_EVENT_HEADER2","features":[303,319,306]},{"name":"FWPM_NET_EVENT_HEADER3","features":[303,319,306]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE0","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE1","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_BENIGN","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_MULTIPLE","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE0","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE1","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE2","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_BENIGN","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_MULTIPLE","features":[319]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE0","features":[303,319,306]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE1","features":[303,319,306]},{"name":"FWPM_NET_EVENT_IPSEC_DOSP_DROP0","features":[319]},{"name":"FWPM_NET_EVENT_IPSEC_KERNEL_DROP0","features":[319]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_ALLOW","features":[319]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_DROP","features":[319]},{"name":"FWPM_NET_EVENT_KEYWORD_CLASSIFY_ALLOW","features":[319]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_BCAST","features":[319]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_MCAST","features":[319]},{"name":"FWPM_NET_EVENT_KEYWORD_PORT_SCANNING_DROP","features":[319]},{"name":"FWPM_NET_EVENT_LPM_PACKET_ARRIVAL0","features":[319]},{"name":"FWPM_NET_EVENT_SUBSCRIPTION0","features":[303,319,306]},{"name":"FWPM_NET_EVENT_TYPE","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_ALLOW","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_DROP","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_ALLOW","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP_MAC","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_EM_FAILURE","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_MM_FAILURE","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_QM_FAILURE","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_DOSP_DROP","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_KERNEL_DROP","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_LPM_PACKET_ARRIVAL","features":[319]},{"name":"FWPM_NET_EVENT_TYPE_MAX","features":[319]},{"name":"FWPM_PROVIDER0","features":[319]},{"name":"FWPM_PROVIDER_CHANGE0","features":[319]},{"name":"FWPM_PROVIDER_CHANGE_CALLBACK0","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT0","features":[303,319,306]},{"name":"FWPM_PROVIDER_CONTEXT1","features":[303,319,306]},{"name":"FWPM_PROVIDER_CONTEXT2","features":[303,319,306]},{"name":"FWPM_PROVIDER_CONTEXT3","features":[303,319,306]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE0","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE_CALLBACK0","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_DOWNLEVEL","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_PERSISTENT","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_AUTHIP","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_IPSEC","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE","features":[319]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE_MAX","features":[319]},{"name":"FWPM_PROVIDER_ENUM_TEMPLATE0","features":[319]},{"name":"FWPM_PROVIDER_FLAG_DISABLED","features":[319]},{"name":"FWPM_PROVIDER_FLAG_PERSISTENT","features":[319]},{"name":"FWPM_PROVIDER_IKEEXT","features":[319]},{"name":"FWPM_PROVIDER_IPSEC_DOSP_CONFIG","features":[319]},{"name":"FWPM_PROVIDER_MPSSVC_APP_ISOLATION","features":[319]},{"name":"FWPM_PROVIDER_MPSSVC_EDP","features":[319]},{"name":"FWPM_PROVIDER_MPSSVC_TENANT_RESTRICTIONS","features":[319]},{"name":"FWPM_PROVIDER_MPSSVC_WF","features":[319]},{"name":"FWPM_PROVIDER_MPSSVC_WSH","features":[319]},{"name":"FWPM_PROVIDER_SUBSCRIPTION0","features":[319]},{"name":"FWPM_PROVIDER_TCP_CHIMNEY_OFFLOAD","features":[319]},{"name":"FWPM_PROVIDER_TCP_TEMPLATES","features":[319]},{"name":"FWPM_SERVICE_RUNNING","features":[319]},{"name":"FWPM_SERVICE_START_PENDING","features":[319]},{"name":"FWPM_SERVICE_STATE","features":[319]},{"name":"FWPM_SERVICE_STATE_MAX","features":[319]},{"name":"FWPM_SERVICE_STOPPED","features":[319]},{"name":"FWPM_SERVICE_STOP_PENDING","features":[319]},{"name":"FWPM_SESSION0","features":[303,319,306]},{"name":"FWPM_SESSION_ENUM_TEMPLATE0","features":[319]},{"name":"FWPM_SESSION_FLAG_DYNAMIC","features":[319]},{"name":"FWPM_SESSION_FLAG_RESERVED","features":[319]},{"name":"FWPM_STATISTICS0","features":[319]},{"name":"FWPM_SUBLAYER0","features":[319]},{"name":"FWPM_SUBLAYER_CHANGE0","features":[319]},{"name":"FWPM_SUBLAYER_CHANGE_CALLBACK0","features":[319]},{"name":"FWPM_SUBLAYER_ENUM_TEMPLATE0","features":[319]},{"name":"FWPM_SUBLAYER_FLAG_PERSISTENT","features":[319]},{"name":"FWPM_SUBLAYER_INSPECTION","features":[319]},{"name":"FWPM_SUBLAYER_IPSEC_DOSP","features":[319]},{"name":"FWPM_SUBLAYER_IPSEC_FORWARD_OUTBOUND_TUNNEL","features":[319]},{"name":"FWPM_SUBLAYER_IPSEC_SECURITY_REALM","features":[319]},{"name":"FWPM_SUBLAYER_IPSEC_TUNNEL","features":[319]},{"name":"FWPM_SUBLAYER_LIPS","features":[319]},{"name":"FWPM_SUBLAYER_MPSSVC_APP_ISOLATION","features":[319]},{"name":"FWPM_SUBLAYER_MPSSVC_EDP","features":[319]},{"name":"FWPM_SUBLAYER_MPSSVC_QUARANTINE","features":[319]},{"name":"FWPM_SUBLAYER_MPSSVC_TENANT_RESTRICTIONS","features":[319]},{"name":"FWPM_SUBLAYER_MPSSVC_WF","features":[319]},{"name":"FWPM_SUBLAYER_MPSSVC_WSH","features":[319]},{"name":"FWPM_SUBLAYER_RPC_AUDIT","features":[319]},{"name":"FWPM_SUBLAYER_SECURE_SOCKET","features":[319]},{"name":"FWPM_SUBLAYER_SUBSCRIPTION0","features":[319]},{"name":"FWPM_SUBLAYER_TCP_CHIMNEY_OFFLOAD","features":[319]},{"name":"FWPM_SUBLAYER_TCP_TEMPLATES","features":[319]},{"name":"FWPM_SUBLAYER_TEREDO","features":[319]},{"name":"FWPM_SUBLAYER_UNIVERSAL","features":[319]},{"name":"FWPM_SUBSCRIPTION_FLAGS","features":[319]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_ADD","features":[319]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_DELETE","features":[319]},{"name":"FWPM_SYSTEM_PORTS0","features":[319]},{"name":"FWPM_SYSTEM_PORTS_BY_TYPE0","features":[319]},{"name":"FWPM_SYSTEM_PORTS_CALLBACK0","features":[319]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_IN","features":[319]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_OUT","features":[319]},{"name":"FWPM_SYSTEM_PORT_RPC_EPMAP","features":[319]},{"name":"FWPM_SYSTEM_PORT_TEREDO","features":[319]},{"name":"FWPM_SYSTEM_PORT_TYPE","features":[319]},{"name":"FWPM_SYSTEM_PORT_TYPE_MAX","features":[319]},{"name":"FWPM_TUNNEL_FLAG_ENABLE_VIRTUAL_IF_TUNNELING","features":[319]},{"name":"FWPM_TUNNEL_FLAG_POINT_TO_POINT","features":[319]},{"name":"FWPM_TUNNEL_FLAG_RESERVED0","features":[319]},{"name":"FWPM_TXN_READ_ONLY","features":[319]},{"name":"FWPM_VSWITCH_EVENT0","features":[303,319]},{"name":"FWPM_VSWITCH_EVENT_CALLBACK0","features":[303,319]},{"name":"FWPM_VSWITCH_EVENT_DISABLED_FOR_INSPECTION","features":[319]},{"name":"FWPM_VSWITCH_EVENT_ENABLED_FOR_INSPECTION","features":[319]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ADD_TO_INCOMPLETE_LAYER","features":[319]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_NOT_IN_REQUIRED_POSITION","features":[319]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_REORDER","features":[319]},{"name":"FWPM_VSWITCH_EVENT_MAX","features":[319]},{"name":"FWPM_VSWITCH_EVENT_SUBSCRIPTION0","features":[319]},{"name":"FWPM_VSWITCH_EVENT_TYPE","features":[319]},{"name":"FWPM_WEIGHT_RANGE_IKE_EXEMPTIONS","features":[319]},{"name":"FWPM_WEIGHT_RANGE_IPSEC","features":[319]},{"name":"FWPS_ALE_ENDPOINT_FLAG_IPSEC_SECURED","features":[319]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ABSORB","features":[319]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_CHECK","features":[319]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_POSSIBLE","features":[319]},{"name":"FWPS_CLASSIFY_OUT_FLAG_BUFFER_LIMIT_REACHED","features":[319]},{"name":"FWPS_CLASSIFY_OUT_FLAG_NO_MORE_DATA","features":[319]},{"name":"FWPS_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[319]},{"name":"FWPS_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[319]},{"name":"FWPS_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[319]},{"name":"FWPS_FILTER_FLAG_OR_CONDITIONS","features":[319]},{"name":"FWPS_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[319]},{"name":"FWPS_FILTER_FLAG_RESERVED0","features":[319]},{"name":"FWPS_FILTER_FLAG_RESERVED1","features":[319]},{"name":"FWPS_FILTER_FLAG_SILENT_MODE","features":[319]},{"name":"FWPS_INCOMING_FLAG_ABSORB","features":[319]},{"name":"FWPS_INCOMING_FLAG_CACHE_SAFE","features":[319]},{"name":"FWPS_INCOMING_FLAG_CONNECTION_FAILING_INDICATION","features":[319]},{"name":"FWPS_INCOMING_FLAG_ENFORCE_QUERY","features":[319]},{"name":"FWPS_INCOMING_FLAG_IS_LOCAL_ONLY_FLOW","features":[319]},{"name":"FWPS_INCOMING_FLAG_IS_LOOSE_SOURCE_FLOW","features":[319]},{"name":"FWPS_INCOMING_FLAG_MID_STREAM_INSPECTION","features":[319]},{"name":"FWPS_INCOMING_FLAG_RECLASSIFY","features":[319]},{"name":"FWPS_INCOMING_FLAG_RESERVED0","features":[319]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV4_FRAMING","features":[319]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV6_FRAMING","features":[319]},{"name":"FWPS_L2_INCOMING_FLAG_RECLASSIFY_MULTI_DESTINATION","features":[319]},{"name":"FWPS_L2_METADATA_FIELD_ETHERNET_MAC_HEADER_SIZE","features":[319]},{"name":"FWPS_L2_METADATA_FIELD_RESERVED","features":[319]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_DESTINATION_PORT_ID","features":[319]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_PACKET_CONTEXT","features":[319]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_NIC_INDEX","features":[319]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_PORT_ID","features":[319]},{"name":"FWPS_L2_METADATA_FIELD_WIFI_OPERATION_MODE","features":[319]},{"name":"FWPS_METADATA_FIELD_ALE_CLASSIFY_REQUIRED","features":[319]},{"name":"FWPS_METADATA_FIELD_COMPARTMENT_ID","features":[319]},{"name":"FWPS_METADATA_FIELD_COMPLETION_HANDLE","features":[319]},{"name":"FWPS_METADATA_FIELD_DESTINATION_INTERFACE_INDEX","features":[319]},{"name":"FWPS_METADATA_FIELD_DESTINATION_PREFIX","features":[319]},{"name":"FWPS_METADATA_FIELD_DISCARD_REASON","features":[319]},{"name":"FWPS_METADATA_FIELD_ETHER_FRAME_LENGTH","features":[319]},{"name":"FWPS_METADATA_FIELD_FLOW_HANDLE","features":[319]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_INBOUND_PASS_THRU","features":[319]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_OUTBOUND_PASS_THRU","features":[319]},{"name":"FWPS_METADATA_FIELD_FRAGMENT_DATA","features":[319]},{"name":"FWPS_METADATA_FIELD_ICMP_ID_AND_SEQUENCE","features":[319]},{"name":"FWPS_METADATA_FIELD_IP_HEADER_SIZE","features":[319]},{"name":"FWPS_METADATA_FIELD_LOCAL_REDIRECT_TARGET_PID","features":[319]},{"name":"FWPS_METADATA_FIELD_ORIGINAL_DESTINATION","features":[319]},{"name":"FWPS_METADATA_FIELD_PACKET_DIRECTION","features":[319]},{"name":"FWPS_METADATA_FIELD_PACKET_SYSTEM_CRITICAL","features":[319]},{"name":"FWPS_METADATA_FIELD_PARENT_ENDPOINT_HANDLE","features":[319]},{"name":"FWPS_METADATA_FIELD_PATH_MTU","features":[319]},{"name":"FWPS_METADATA_FIELD_PROCESS_ID","features":[319]},{"name":"FWPS_METADATA_FIELD_PROCESS_PATH","features":[319]},{"name":"FWPS_METADATA_FIELD_REDIRECT_RECORD_HANDLE","features":[319]},{"name":"FWPS_METADATA_FIELD_REMOTE_SCOPE_ID","features":[319]},{"name":"FWPS_METADATA_FIELD_RESERVED","features":[319]},{"name":"FWPS_METADATA_FIELD_SOURCE_INTERFACE_INDEX","features":[319]},{"name":"FWPS_METADATA_FIELD_SUB_PROCESS_TAG","features":[319]},{"name":"FWPS_METADATA_FIELD_SYSTEM_FLAGS","features":[319]},{"name":"FWPS_METADATA_FIELD_TOKEN","features":[319]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_CONTROL_DATA","features":[319]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_ENDPOINT_HANDLE","features":[319]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_INCLUDE_HEADER","features":[319]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_SIZE","features":[319]},{"name":"FWPS_RIGHT_ACTION_WRITE","features":[319]},{"name":"FWP_ACTION_BLOCK","features":[319]},{"name":"FWP_ACTION_CALLOUT_INSPECTION","features":[319]},{"name":"FWP_ACTION_CALLOUT_TERMINATING","features":[319]},{"name":"FWP_ACTION_CALLOUT_UNKNOWN","features":[319]},{"name":"FWP_ACTION_CONTINUE","features":[319]},{"name":"FWP_ACTION_FLAG_CALLOUT","features":[319]},{"name":"FWP_ACTION_FLAG_NON_TERMINATING","features":[319]},{"name":"FWP_ACTION_FLAG_TERMINATING","features":[319]},{"name":"FWP_ACTION_NONE","features":[319]},{"name":"FWP_ACTION_NONE_NO_MATCH","features":[319]},{"name":"FWP_ACTION_PERMIT","features":[319]},{"name":"FWP_ACTION_TYPE","features":[319]},{"name":"FWP_ACTRL_MATCH_FILTER","features":[319]},{"name":"FWP_AF","features":[319]},{"name":"FWP_AF_ETHER","features":[319]},{"name":"FWP_AF_INET","features":[319]},{"name":"FWP_AF_INET6","features":[319]},{"name":"FWP_AF_NONE","features":[319]},{"name":"FWP_BYTEMAP_ARRAY64_SIZE","features":[319]},{"name":"FWP_BYTE_ARRAY16","features":[319]},{"name":"FWP_BYTE_ARRAY16_TYPE","features":[319]},{"name":"FWP_BYTE_ARRAY6","features":[319]},{"name":"FWP_BYTE_ARRAY6_SIZE","features":[319]},{"name":"FWP_BYTE_ARRAY6_TYPE","features":[319]},{"name":"FWP_BYTE_BLOB","features":[319]},{"name":"FWP_BYTE_BLOB_TYPE","features":[319]},{"name":"FWP_CALLOUT_FLAG_ALLOW_L2_BATCH_CLASSIFY","features":[319]},{"name":"FWP_CALLOUT_FLAG_ALLOW_MID_STREAM_INSPECTION","features":[319]},{"name":"FWP_CALLOUT_FLAG_ALLOW_OFFLOAD","features":[319]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RECLASSIFY","features":[319]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RSC","features":[319]},{"name":"FWP_CALLOUT_FLAG_ALLOW_URO","features":[319]},{"name":"FWP_CALLOUT_FLAG_ALLOW_USO","features":[319]},{"name":"FWP_CALLOUT_FLAG_CONDITIONAL_ON_FLOW","features":[319]},{"name":"FWP_CALLOUT_FLAG_ENABLE_COMMIT_ADD_NOTIFY","features":[319]},{"name":"FWP_CALLOUT_FLAG_RESERVED1","features":[319]},{"name":"FWP_CALLOUT_FLAG_RESERVED2","features":[319]},{"name":"FWP_CLASSIFY_OPTION_LOCAL_ONLY_MAPPING","features":[319]},{"name":"FWP_CLASSIFY_OPTION_LOOSE_SOURCE_MAPPING","features":[319]},{"name":"FWP_CLASSIFY_OPTION_MAX","features":[319]},{"name":"FWP_CLASSIFY_OPTION_MCAST_BCAST_LIFETIME","features":[319]},{"name":"FWP_CLASSIFY_OPTION_MULTICAST_STATE","features":[319]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_MM_POLICY_KEY","features":[319]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_QM_POLICY_KEY","features":[319]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_SECURITY_FLAGS","features":[319]},{"name":"FWP_CLASSIFY_OPTION_TYPE","features":[319]},{"name":"FWP_CLASSIFY_OPTION_UNICAST_LIFETIME","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_APPCONTAINER_LOOPBACK","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_AUTH_FW","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_CONNECTION_REDIRECTED","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT_GROUP","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_HONORING_POLICY_AUTHORIZE","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_IMPLICIT_BIND","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_INBOUND_PASS_THRU","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_NATT_RECLASSIFY","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_SECURED","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_LOOPBACK","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_NAME_APP_SPECIFIED","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_NON_APPCONTAINER_LOOPBACK","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_OUTBOUND_PASS_THRU","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_PROMISCUOUS","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_PROXY_CONNECTION","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_RAW_ENDPOINT","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_REASSEMBLED","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_REAUTHORIZE","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_RECLASSIFY","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_RESERVED","features":[319]},{"name":"FWP_CONDITION_FLAG_IS_WILDCARD_BIND","features":[319]},{"name":"FWP_CONDITION_FLAG_REQUIRES_ALE_CLASSIFY","features":[319]},{"name":"FWP_CONDITION_L2_IF_CONNECTOR_PRESENT","features":[319]},{"name":"FWP_CONDITION_L2_IS_IP_FRAGMENT_GROUP","features":[319]},{"name":"FWP_CONDITION_L2_IS_MALFORMED_PACKET","features":[319]},{"name":"FWP_CONDITION_L2_IS_MOBILE_BROADBAND","features":[319]},{"name":"FWP_CONDITION_L2_IS_NATIVE_ETHERNET","features":[319]},{"name":"FWP_CONDITION_L2_IS_VM2VM","features":[319]},{"name":"FWP_CONDITION_L2_IS_WIFI","features":[319]},{"name":"FWP_CONDITION_L2_IS_WIFI_DIRECT_DATA","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CHECK_OFFLOAD","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CLASSIFY_COMPLETION","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_EDP_POLICY_CHANGED","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_IPSEC_PROPERTIES_CHANGED","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_MID_STREAM_INSPECTION","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_ARRIVAL_INTERFACE","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_INBOUND_MCAST_BCAST_PACKET","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_NEXTHOP_INTERFACE","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_POLICY_CHANGE","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROFILE_CROSSING","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROXY_HANDLE_CHANGED","features":[319]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_SOCKET_PROPERTY_CHANGED","features":[319]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_ALLOW_EDGE_TRAFFIC","features":[319]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_DENY_EDGE_TRAFFIC","features":[319]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_IS_SYSTEM_PORT_RPC","features":[319]},{"name":"FWP_CONDITION_VALUE0","features":[303,319,306]},{"name":"FWP_DATA_TYPE","features":[319]},{"name":"FWP_DATA_TYPE_MAX","features":[319]},{"name":"FWP_DIRECTION","features":[319]},{"name":"FWP_DIRECTION_INBOUND","features":[319]},{"name":"FWP_DIRECTION_MAX","features":[319]},{"name":"FWP_DIRECTION_OUTBOUND","features":[319]},{"name":"FWP_DOUBLE","features":[319]},{"name":"FWP_EMPTY","features":[319]},{"name":"FWP_ETHER_ENCAP_METHOD","features":[319]},{"name":"FWP_ETHER_ENCAP_METHOD_ETHER_V2","features":[319]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP","features":[319]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP_W_OUI_ZERO","features":[319]},{"name":"FWP_FILTER_ENUM_FLAG_BEST_TERMINATING_MATCH","features":[319]},{"name":"FWP_FILTER_ENUM_FLAG_BOOTTIME_ONLY","features":[319]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_BOOTTIME","features":[319]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_DISABLED","features":[319]},{"name":"FWP_FILTER_ENUM_FLAG_RESERVED1","features":[319]},{"name":"FWP_FILTER_ENUM_FLAG_SORTED","features":[319]},{"name":"FWP_FILTER_ENUM_FULLY_CONTAINED","features":[319]},{"name":"FWP_FILTER_ENUM_OVERLAPPING","features":[319]},{"name":"FWP_FILTER_ENUM_TYPE","features":[319]},{"name":"FWP_FILTER_ENUM_TYPE_MAX","features":[319]},{"name":"FWP_FLOAT","features":[319]},{"name":"FWP_INT16","features":[319]},{"name":"FWP_INT32","features":[319]},{"name":"FWP_INT64","features":[319]},{"name":"FWP_INT8","features":[319]},{"name":"FWP_IP_VERSION","features":[319]},{"name":"FWP_IP_VERSION_MAX","features":[319]},{"name":"FWP_IP_VERSION_NONE","features":[319]},{"name":"FWP_IP_VERSION_V4","features":[319]},{"name":"FWP_IP_VERSION_V6","features":[319]},{"name":"FWP_MATCH_EQUAL","features":[319]},{"name":"FWP_MATCH_EQUAL_CASE_INSENSITIVE","features":[319]},{"name":"FWP_MATCH_FLAGS_ALL_SET","features":[319]},{"name":"FWP_MATCH_FLAGS_ANY_SET","features":[319]},{"name":"FWP_MATCH_FLAGS_NONE_SET","features":[319]},{"name":"FWP_MATCH_GREATER","features":[319]},{"name":"FWP_MATCH_GREATER_OR_EQUAL","features":[319]},{"name":"FWP_MATCH_LESS","features":[319]},{"name":"FWP_MATCH_LESS_OR_EQUAL","features":[319]},{"name":"FWP_MATCH_NOT_EQUAL","features":[319]},{"name":"FWP_MATCH_NOT_PREFIX","features":[319]},{"name":"FWP_MATCH_PREFIX","features":[319]},{"name":"FWP_MATCH_RANGE","features":[319]},{"name":"FWP_MATCH_TYPE","features":[319]},{"name":"FWP_MATCH_TYPE_MAX","features":[319]},{"name":"FWP_NETWORK_CONNECTION_POLICY_MAX","features":[319]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP","features":[319]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP_INTERFACE","features":[319]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE","features":[319]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SOURCE_ADDRESS","features":[319]},{"name":"FWP_OPTION_VALUE_ALLOW_GLOBAL_MULTICAST_STATE","features":[319]},{"name":"FWP_OPTION_VALUE_ALLOW_MULTICAST_STATE","features":[319]},{"name":"FWP_OPTION_VALUE_DENY_MULTICAST_STATE","features":[319]},{"name":"FWP_OPTION_VALUE_DISABLE_LOCAL_ONLY_MAPPING","features":[319]},{"name":"FWP_OPTION_VALUE_DISABLE_LOOSE_SOURCE","features":[319]},{"name":"FWP_OPTION_VALUE_ENABLE_LOCAL_ONLY_MAPPING","features":[319]},{"name":"FWP_OPTION_VALUE_ENABLE_LOOSE_SOURCE","features":[319]},{"name":"FWP_RANGE0","features":[303,319,306]},{"name":"FWP_RANGE_TYPE","features":[319]},{"name":"FWP_SECURITY_DESCRIPTOR_TYPE","features":[319]},{"name":"FWP_SID","features":[319]},{"name":"FWP_SINGLE_DATA_TYPE_MAX","features":[319]},{"name":"FWP_TOKEN_ACCESS_INFORMATION_TYPE","features":[319]},{"name":"FWP_TOKEN_INFORMATION","features":[303,319,306]},{"name":"FWP_TOKEN_INFORMATION_TYPE","features":[319]},{"name":"FWP_UINT16","features":[319]},{"name":"FWP_UINT32","features":[319]},{"name":"FWP_UINT64","features":[319]},{"name":"FWP_UINT8","features":[319]},{"name":"FWP_UNICODE_STRING_TYPE","features":[319]},{"name":"FWP_V4_ADDR_AND_MASK","features":[319]},{"name":"FWP_V4_ADDR_MASK","features":[319]},{"name":"FWP_V6_ADDR_AND_MASK","features":[319]},{"name":"FWP_V6_ADDR_MASK","features":[319]},{"name":"FWP_V6_ADDR_SIZE","features":[319]},{"name":"FWP_VALUE0","features":[303,319,306]},{"name":"FWP_VSWITCH_NETWORK_TYPE","features":[319]},{"name":"FWP_VSWITCH_NETWORK_TYPE_EXTERNAL","features":[319]},{"name":"FWP_VSWITCH_NETWORK_TYPE_INTERNAL","features":[319]},{"name":"FWP_VSWITCH_NETWORK_TYPE_PRIVATE","features":[319]},{"name":"FWP_VSWITCH_NETWORK_TYPE_UNKNOWN","features":[319]},{"name":"FwpmCalloutAdd0","features":[303,319,306]},{"name":"FwpmCalloutCreateEnumHandle0","features":[303,319]},{"name":"FwpmCalloutDeleteById0","features":[303,319]},{"name":"FwpmCalloutDeleteByKey0","features":[303,319]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[303,319]},{"name":"FwpmCalloutEnum0","features":[303,319]},{"name":"FwpmCalloutGetById0","features":[303,319]},{"name":"FwpmCalloutGetByKey0","features":[303,319]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmCalloutSubscribeChanges0","features":[303,319]},{"name":"FwpmCalloutSubscriptionsGet0","features":[303,319]},{"name":"FwpmCalloutUnsubscribeChanges0","features":[303,319]},{"name":"FwpmConnectionCreateEnumHandle0","features":[303,319]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[303,319]},{"name":"FwpmConnectionEnum0","features":[303,319]},{"name":"FwpmConnectionGetById0","features":[303,319]},{"name":"FwpmConnectionGetSecurityInfo0","features":[303,319,306]},{"name":"FwpmConnectionSetSecurityInfo0","features":[303,319,306]},{"name":"FwpmConnectionSubscribe0","features":[303,319]},{"name":"FwpmConnectionUnsubscribe0","features":[303,319]},{"name":"FwpmDynamicKeywordSubscribe0","features":[303,319]},{"name":"FwpmDynamicKeywordUnsubscribe0","features":[303,319]},{"name":"FwpmEngineClose0","features":[303,319]},{"name":"FwpmEngineGetOption0","features":[303,319,306]},{"name":"FwpmEngineGetSecurityInfo0","features":[303,319,306]},{"name":"FwpmEngineOpen0","features":[303,319,306,320]},{"name":"FwpmEngineSetOption0","features":[303,319,306]},{"name":"FwpmEngineSetSecurityInfo0","features":[303,319,306]},{"name":"FwpmFilterAdd0","features":[303,319,306]},{"name":"FwpmFilterCreateEnumHandle0","features":[303,319,306]},{"name":"FwpmFilterDeleteById0","features":[303,319]},{"name":"FwpmFilterDeleteByKey0","features":[303,319]},{"name":"FwpmFilterDestroyEnumHandle0","features":[303,319]},{"name":"FwpmFilterEnum0","features":[303,319,306]},{"name":"FwpmFilterGetById0","features":[303,319,306]},{"name":"FwpmFilterGetByKey0","features":[303,319,306]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmFilterSubscribeChanges0","features":[303,319,306]},{"name":"FwpmFilterSubscriptionsGet0","features":[303,319,306]},{"name":"FwpmFilterUnsubscribeChanges0","features":[303,319]},{"name":"FwpmFreeMemory0","features":[319]},{"name":"FwpmGetAppIdFromFileName0","features":[319]},{"name":"FwpmIPsecTunnelAdd0","features":[303,319,306]},{"name":"FwpmIPsecTunnelAdd1","features":[303,319,306]},{"name":"FwpmIPsecTunnelAdd2","features":[303,319,306]},{"name":"FwpmIPsecTunnelAdd3","features":[303,319,306]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[303,319]},{"name":"FwpmLayerCreateEnumHandle0","features":[303,319]},{"name":"FwpmLayerDestroyEnumHandle0","features":[303,319]},{"name":"FwpmLayerEnum0","features":[303,319]},{"name":"FwpmLayerGetById0","features":[303,319]},{"name":"FwpmLayerGetByKey0","features":[303,319]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmNetEventCreateEnumHandle0","features":[303,319,306]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[303,319]},{"name":"FwpmNetEventEnum0","features":[303,319,306]},{"name":"FwpmNetEventEnum1","features":[303,319,306]},{"name":"FwpmNetEventEnum2","features":[303,319,306]},{"name":"FwpmNetEventEnum3","features":[303,319,306]},{"name":"FwpmNetEventEnum4","features":[303,319,306]},{"name":"FwpmNetEventEnum5","features":[303,319,306]},{"name":"FwpmNetEventSubscribe0","features":[303,319,306]},{"name":"FwpmNetEventSubscribe1","features":[303,319,306]},{"name":"FwpmNetEventSubscribe2","features":[303,319,306]},{"name":"FwpmNetEventSubscribe3","features":[303,319,306]},{"name":"FwpmNetEventSubscribe4","features":[303,319,306]},{"name":"FwpmNetEventSubscriptionsGet0","features":[303,319,306]},{"name":"FwpmNetEventUnsubscribe0","features":[303,319]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[303,319,306]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[303,319,306]},{"name":"FwpmProviderAdd0","features":[303,319,306]},{"name":"FwpmProviderContextAdd0","features":[303,319,306]},{"name":"FwpmProviderContextAdd1","features":[303,319,306]},{"name":"FwpmProviderContextAdd2","features":[303,319,306]},{"name":"FwpmProviderContextAdd3","features":[303,319,306]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[303,319]},{"name":"FwpmProviderContextDeleteById0","features":[303,319]},{"name":"FwpmProviderContextDeleteByKey0","features":[303,319]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[303,319]},{"name":"FwpmProviderContextEnum0","features":[303,319,306]},{"name":"FwpmProviderContextEnum1","features":[303,319,306]},{"name":"FwpmProviderContextEnum2","features":[303,319,306]},{"name":"FwpmProviderContextEnum3","features":[303,319,306]},{"name":"FwpmProviderContextGetById0","features":[303,319,306]},{"name":"FwpmProviderContextGetById1","features":[303,319,306]},{"name":"FwpmProviderContextGetById2","features":[303,319,306]},{"name":"FwpmProviderContextGetById3","features":[303,319,306]},{"name":"FwpmProviderContextGetByKey0","features":[303,319,306]},{"name":"FwpmProviderContextGetByKey1","features":[303,319,306]},{"name":"FwpmProviderContextGetByKey2","features":[303,319,306]},{"name":"FwpmProviderContextGetByKey3","features":[303,319,306]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmProviderContextSubscribeChanges0","features":[303,319]},{"name":"FwpmProviderContextSubscriptionsGet0","features":[303,319]},{"name":"FwpmProviderContextUnsubscribeChanges0","features":[303,319]},{"name":"FwpmProviderCreateEnumHandle0","features":[303,319]},{"name":"FwpmProviderDeleteByKey0","features":[303,319]},{"name":"FwpmProviderDestroyEnumHandle0","features":[303,319]},{"name":"FwpmProviderEnum0","features":[303,319]},{"name":"FwpmProviderGetByKey0","features":[303,319]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmProviderSubscribeChanges0","features":[303,319]},{"name":"FwpmProviderSubscriptionsGet0","features":[303,319]},{"name":"FwpmProviderUnsubscribeChanges0","features":[303,319]},{"name":"FwpmSessionCreateEnumHandle0","features":[303,319]},{"name":"FwpmSessionDestroyEnumHandle0","features":[303,319]},{"name":"FwpmSessionEnum0","features":[303,319,306]},{"name":"FwpmSubLayerAdd0","features":[303,319,306]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[303,319]},{"name":"FwpmSubLayerDeleteByKey0","features":[303,319]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[303,319]},{"name":"FwpmSubLayerEnum0","features":[303,319]},{"name":"FwpmSubLayerGetByKey0","features":[303,319]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[303,319,306]},{"name":"FwpmSubLayerSubscribeChanges0","features":[303,319]},{"name":"FwpmSubLayerSubscriptionsGet0","features":[303,319]},{"name":"FwpmSubLayerUnsubscribeChanges0","features":[303,319]},{"name":"FwpmSystemPortsGet0","features":[303,319]},{"name":"FwpmSystemPortsSubscribe0","features":[303,319]},{"name":"FwpmSystemPortsUnsubscribe0","features":[303,319]},{"name":"FwpmTransactionAbort0","features":[303,319]},{"name":"FwpmTransactionBegin0","features":[303,319]},{"name":"FwpmTransactionCommit0","features":[303,319]},{"name":"FwpmvSwitchEventSubscribe0","features":[303,319]},{"name":"FwpmvSwitchEventUnsubscribe0","features":[303,319]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[303,319,306]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[303,319,306]},{"name":"IKEEXT_ANONYMOUS","features":[319]},{"name":"IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE","features":[319]},{"name":"IKEEXT_AUTHENTICATION_METHOD0","features":[319]},{"name":"IKEEXT_AUTHENTICATION_METHOD1","features":[319]},{"name":"IKEEXT_AUTHENTICATION_METHOD2","features":[319]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE","features":[319]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE_MAX","features":[319]},{"name":"IKEEXT_CERTIFICATE","features":[319]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION0","features":[319]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION1","features":[319]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION2","features":[319]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL0","features":[319]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL1","features":[319]},{"name":"IKEEXT_CERTIFICATE_CRITERIA0","features":[319]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P256","features":[319]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P384","features":[319]},{"name":"IKEEXT_CERT_AUTH","features":[319]},{"name":"IKEEXT_CERT_AUTH_ALLOW_HTTP_CERT_LOOKUP","features":[319]},{"name":"IKEEXT_CERT_AUTH_DISABLE_SSL_CERT_VALIDATION","features":[319]},{"name":"IKEEXT_CERT_AUTH_ENABLE_CRL_CHECK_STRONG","features":[319]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_CRL_CHECK","features":[319]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_REQUEST_PAYLOAD","features":[319]},{"name":"IKEEXT_CERT_AUTH_FLAG_SSL_ONE_WAY","features":[319]},{"name":"IKEEXT_CERT_AUTH_URL_CONTAINS_BUNDLE","features":[319]},{"name":"IKEEXT_CERT_CONFIG_ENTERPRISE_STORE","features":[319]},{"name":"IKEEXT_CERT_CONFIG_EXPLICIT_TRUST_LIST","features":[319]},{"name":"IKEEXT_CERT_CONFIG_TRUSTED_ROOT_STORE","features":[319]},{"name":"IKEEXT_CERT_CONFIG_TYPE","features":[319]},{"name":"IKEEXT_CERT_CONFIG_TYPE_MAX","features":[319]},{"name":"IKEEXT_CERT_CONFIG_UNSPECIFIED","features":[319]},{"name":"IKEEXT_CERT_CREDENTIAL_FLAG_NAP_CERT","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_CN","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_DC","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_DNS","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE_MAX","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_O","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_OU","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_RFC822","features":[319]},{"name":"IKEEXT_CERT_CRITERIA_UPN","features":[319]},{"name":"IKEEXT_CERT_EKUS0","features":[319]},{"name":"IKEEXT_CERT_FLAGS","features":[319]},{"name":"IKEEXT_CERT_FLAG_DISABLE_REQUEST_PAYLOAD","features":[319]},{"name":"IKEEXT_CERT_FLAG_ENABLE_ACCOUNT_MAPPING","features":[319]},{"name":"IKEEXT_CERT_FLAG_FOLLOW_RENEWAL_CERTIFICATE","features":[319]},{"name":"IKEEXT_CERT_FLAG_IGNORE_INIT_CERT_MAP_FAILURE","features":[319]},{"name":"IKEEXT_CERT_FLAG_INTERMEDIATE_CA","features":[319]},{"name":"IKEEXT_CERT_FLAG_PREFER_NAP_CERTIFICATE_OUTBOUND","features":[319]},{"name":"IKEEXT_CERT_FLAG_SELECT_NAP_CERTIFICATE","features":[319]},{"name":"IKEEXT_CERT_FLAG_USE_NAP_CERTIFICATE","features":[319]},{"name":"IKEEXT_CERT_FLAG_VERIFY_NAP_CERTIFICATE","features":[319]},{"name":"IKEEXT_CERT_HASH_LEN","features":[319]},{"name":"IKEEXT_CERT_NAME0","features":[319]},{"name":"IKEEXT_CERT_ROOT_CONFIG0","features":[319]},{"name":"IKEEXT_CIPHER_3DES","features":[319]},{"name":"IKEEXT_CIPHER_AES_128","features":[319]},{"name":"IKEEXT_CIPHER_AES_192","features":[319]},{"name":"IKEEXT_CIPHER_AES_256","features":[319]},{"name":"IKEEXT_CIPHER_AES_GCM_128_16ICV","features":[319]},{"name":"IKEEXT_CIPHER_AES_GCM_256_16ICV","features":[319]},{"name":"IKEEXT_CIPHER_ALGORITHM0","features":[319]},{"name":"IKEEXT_CIPHER_DES","features":[319]},{"name":"IKEEXT_CIPHER_TYPE","features":[319]},{"name":"IKEEXT_CIPHER_TYPE_MAX","features":[319]},{"name":"IKEEXT_COMMON_STATISTICS0","features":[319]},{"name":"IKEEXT_COMMON_STATISTICS1","features":[319]},{"name":"IKEEXT_COOKIE_PAIR0","features":[319]},{"name":"IKEEXT_CREDENTIAL0","features":[319]},{"name":"IKEEXT_CREDENTIAL1","features":[319]},{"name":"IKEEXT_CREDENTIAL2","features":[319]},{"name":"IKEEXT_CREDENTIALS0","features":[319]},{"name":"IKEEXT_CREDENTIALS1","features":[319]},{"name":"IKEEXT_CREDENTIALS2","features":[319]},{"name":"IKEEXT_CREDENTIAL_PAIR0","features":[319]},{"name":"IKEEXT_CREDENTIAL_PAIR1","features":[319]},{"name":"IKEEXT_CREDENTIAL_PAIR2","features":[319]},{"name":"IKEEXT_DH_ECP_256","features":[319]},{"name":"IKEEXT_DH_ECP_384","features":[319]},{"name":"IKEEXT_DH_GROUP","features":[319]},{"name":"IKEEXT_DH_GROUP_1","features":[319]},{"name":"IKEEXT_DH_GROUP_14","features":[319]},{"name":"IKEEXT_DH_GROUP_2","features":[319]},{"name":"IKEEXT_DH_GROUP_2048","features":[319]},{"name":"IKEEXT_DH_GROUP_24","features":[319]},{"name":"IKEEXT_DH_GROUP_MAX","features":[319]},{"name":"IKEEXT_DH_GROUP_NONE","features":[319]},{"name":"IKEEXT_EAP","features":[319]},{"name":"IKEEXT_EAP_AUTHENTICATION0","features":[319]},{"name":"IKEEXT_EAP_AUTHENTICATION_FLAGS","features":[319]},{"name":"IKEEXT_EAP_FLAG_LOCAL_AUTH_ONLY","features":[319]},{"name":"IKEEXT_EAP_FLAG_REMOTE_AUTH_ONLY","features":[319]},{"name":"IKEEXT_EM_POLICY0","features":[319]},{"name":"IKEEXT_EM_POLICY1","features":[319]},{"name":"IKEEXT_EM_POLICY2","features":[319]},{"name":"IKEEXT_EM_SA_STATE","features":[319]},{"name":"IKEEXT_EM_SA_STATE_AUTH_COMPLETE","features":[319]},{"name":"IKEEXT_EM_SA_STATE_COMPLETE","features":[319]},{"name":"IKEEXT_EM_SA_STATE_FINAL","features":[319]},{"name":"IKEEXT_EM_SA_STATE_MAX","features":[319]},{"name":"IKEEXT_EM_SA_STATE_NONE","features":[319]},{"name":"IKEEXT_EM_SA_STATE_SENT_ATTS","features":[319]},{"name":"IKEEXT_EM_SA_STATE_SSPI_SENT","features":[319]},{"name":"IKEEXT_IMPERSONATION_MAX","features":[319]},{"name":"IKEEXT_IMPERSONATION_NONE","features":[319]},{"name":"IKEEXT_IMPERSONATION_SOCKET_PRINCIPAL","features":[319]},{"name":"IKEEXT_INTEGRITY_ALGORITHM0","features":[319]},{"name":"IKEEXT_INTEGRITY_MD5","features":[319]},{"name":"IKEEXT_INTEGRITY_SHA1","features":[319]},{"name":"IKEEXT_INTEGRITY_SHA_256","features":[319]},{"name":"IKEEXT_INTEGRITY_SHA_384","features":[319]},{"name":"IKEEXT_INTEGRITY_TYPE","features":[319]},{"name":"IKEEXT_INTEGRITY_TYPE_MAX","features":[319]},{"name":"IKEEXT_IPV6_CGA","features":[319]},{"name":"IKEEXT_IPV6_CGA_AUTHENTICATION0","features":[319]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS0","features":[319]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS1","features":[319]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS0","features":[319]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS1","features":[319]},{"name":"IKEEXT_KERBEROS","features":[319]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION0","features":[319]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION1","features":[319]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION_FLAGS","features":[319]},{"name":"IKEEXT_KERB_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[319]},{"name":"IKEEXT_KERB_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[319]},{"name":"IKEEXT_KERB_AUTH_FORCE_PROXY_ON_INITIATOR","features":[319]},{"name":"IKEEXT_KEYMODULE_STATISTICS0","features":[319]},{"name":"IKEEXT_KEYMODULE_STATISTICS1","features":[319]},{"name":"IKEEXT_KEY_MODULE_AUTHIP","features":[319]},{"name":"IKEEXT_KEY_MODULE_IKE","features":[319]},{"name":"IKEEXT_KEY_MODULE_IKEV2","features":[319]},{"name":"IKEEXT_KEY_MODULE_MAX","features":[319]},{"name":"IKEEXT_KEY_MODULE_TYPE","features":[319]},{"name":"IKEEXT_MM_SA_STATE","features":[319]},{"name":"IKEEXT_MM_SA_STATE_COMPLETE","features":[319]},{"name":"IKEEXT_MM_SA_STATE_FINAL","features":[319]},{"name":"IKEEXT_MM_SA_STATE_FINAL_SENT","features":[319]},{"name":"IKEEXT_MM_SA_STATE_MAX","features":[319]},{"name":"IKEEXT_MM_SA_STATE_NONE","features":[319]},{"name":"IKEEXT_MM_SA_STATE_SA_SENT","features":[319]},{"name":"IKEEXT_MM_SA_STATE_SSPI_SENT","features":[319]},{"name":"IKEEXT_NAME_CREDENTIAL0","features":[319]},{"name":"IKEEXT_NTLM_V2","features":[319]},{"name":"IKEEXT_NTLM_V2_AUTHENTICATION0","features":[319]},{"name":"IKEEXT_NTLM_V2_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[319]},{"name":"IKEEXT_POLICY0","features":[319]},{"name":"IKEEXT_POLICY1","features":[319]},{"name":"IKEEXT_POLICY2","features":[319]},{"name":"IKEEXT_POLICY_ENABLE_IKEV2_FRAGMENTATION","features":[319]},{"name":"IKEEXT_POLICY_FLAG","features":[319]},{"name":"IKEEXT_POLICY_FLAG_DISABLE_DIAGNOSTICS","features":[319]},{"name":"IKEEXT_POLICY_FLAG_ENABLE_OPTIONAL_DH","features":[319]},{"name":"IKEEXT_POLICY_FLAG_IMS_VPN","features":[319]},{"name":"IKEEXT_POLICY_FLAG_MOBIKE_NOT_SUPPORTED","features":[319]},{"name":"IKEEXT_POLICY_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[319]},{"name":"IKEEXT_POLICY_FLAG_NO_MACHINE_LUID_VERIFY","features":[319]},{"name":"IKEEXT_POLICY_FLAG_SITE_TO_SITE","features":[319]},{"name":"IKEEXT_POLICY_SUPPORT_LOW_POWER_MODE","features":[319]},{"name":"IKEEXT_PRESHARED_KEY","features":[319]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION0","features":[319]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION1","features":[319]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS","features":[319]},{"name":"IKEEXT_PROPOSAL0","features":[319]},{"name":"IKEEXT_PSK_FLAG_LOCAL_AUTH_ONLY","features":[319]},{"name":"IKEEXT_PSK_FLAG_REMOTE_AUTH_ONLY","features":[319]},{"name":"IKEEXT_QM_SA_STATE","features":[319]},{"name":"IKEEXT_QM_SA_STATE_COMPLETE","features":[319]},{"name":"IKEEXT_QM_SA_STATE_FINAL","features":[319]},{"name":"IKEEXT_QM_SA_STATE_INITIAL","features":[319]},{"name":"IKEEXT_QM_SA_STATE_MAX","features":[319]},{"name":"IKEEXT_QM_SA_STATE_NONE","features":[319]},{"name":"IKEEXT_RESERVED","features":[319]},{"name":"IKEEXT_RESERVED_AUTHENTICATION0","features":[319]},{"name":"IKEEXT_RESERVED_AUTHENTICATION_FLAGS","features":[319]},{"name":"IKEEXT_RESERVED_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[319]},{"name":"IKEEXT_SA_DETAILS0","features":[319]},{"name":"IKEEXT_SA_DETAILS1","features":[319]},{"name":"IKEEXT_SA_DETAILS2","features":[319]},{"name":"IKEEXT_SA_ENUM_TEMPLATE0","features":[303,319,306]},{"name":"IKEEXT_SA_ROLE","features":[319]},{"name":"IKEEXT_SA_ROLE_INITIATOR","features":[319]},{"name":"IKEEXT_SA_ROLE_MAX","features":[319]},{"name":"IKEEXT_SA_ROLE_RESPONDER","features":[319]},{"name":"IKEEXT_SSL","features":[319]},{"name":"IKEEXT_SSL_ECDSA_P256","features":[319]},{"name":"IKEEXT_SSL_ECDSA_P384","features":[319]},{"name":"IKEEXT_STATISTICS0","features":[319]},{"name":"IKEEXT_STATISTICS1","features":[319]},{"name":"IKEEXT_TRAFFIC0","features":[319]},{"name":"IPSEC_ADDRESS_INFO0","features":[319]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS0","features":[319]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS1","features":[319]},{"name":"IPSEC_AGGREGATE_SA_STATISTICS0","features":[319]},{"name":"IPSEC_AH_DROP_PACKET_STATISTICS0","features":[319]},{"name":"IPSEC_AUTH_AES_128","features":[319]},{"name":"IPSEC_AUTH_AES_192","features":[319]},{"name":"IPSEC_AUTH_AES_256","features":[319]},{"name":"IPSEC_AUTH_AND_CIPHER_TRANSFORM0","features":[319]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_128","features":[319]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_192","features":[319]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_256","features":[319]},{"name":"IPSEC_AUTH_CONFIG_HMAC_MD5_96","features":[319]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_1_96","features":[319]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_256_128","features":[319]},{"name":"IPSEC_AUTH_CONFIG_MAX","features":[319]},{"name":"IPSEC_AUTH_MAX","features":[319]},{"name":"IPSEC_AUTH_MD5","features":[319]},{"name":"IPSEC_AUTH_SHA_1","features":[319]},{"name":"IPSEC_AUTH_SHA_256","features":[319]},{"name":"IPSEC_AUTH_TRANSFORM0","features":[319]},{"name":"IPSEC_AUTH_TRANSFORM_ID0","features":[319]},{"name":"IPSEC_AUTH_TYPE","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_CBC_3DES","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_128","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_192","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_256","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_CBC_DES","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_128","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_192","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_256","features":[319]},{"name":"IPSEC_CIPHER_CONFIG_MAX","features":[319]},{"name":"IPSEC_CIPHER_TRANSFORM0","features":[319]},{"name":"IPSEC_CIPHER_TRANSFORM_ID0","features":[319]},{"name":"IPSEC_CIPHER_TYPE","features":[319]},{"name":"IPSEC_CIPHER_TYPE_3DES","features":[319]},{"name":"IPSEC_CIPHER_TYPE_AES_128","features":[319]},{"name":"IPSEC_CIPHER_TYPE_AES_192","features":[319]},{"name":"IPSEC_CIPHER_TYPE_AES_256","features":[319]},{"name":"IPSEC_CIPHER_TYPE_DES","features":[319]},{"name":"IPSEC_CIPHER_TYPE_MAX","features":[319]},{"name":"IPSEC_DOSP_DSCP_DISABLE_VALUE","features":[319]},{"name":"IPSEC_DOSP_FLAGS","features":[319]},{"name":"IPSEC_DOSP_FLAG_DISABLE_AUTHIP","features":[319]},{"name":"IPSEC_DOSP_FLAG_DISABLE_DEFAULT_BLOCK","features":[319]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV1","features":[319]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV2","features":[319]},{"name":"IPSEC_DOSP_FLAG_FILTER_BLOCK","features":[319]},{"name":"IPSEC_DOSP_FLAG_FILTER_EXEMPT","features":[319]},{"name":"IPSEC_DOSP_OPTIONS0","features":[319]},{"name":"IPSEC_DOSP_RATE_LIMIT_DISABLE_VALUE","features":[319]},{"name":"IPSEC_DOSP_STATE0","features":[319]},{"name":"IPSEC_DOSP_STATE_ENUM_TEMPLATE0","features":[319]},{"name":"IPSEC_DOSP_STATISTICS0","features":[319]},{"name":"IPSEC_ESP_DROP_PACKET_STATISTICS0","features":[319]},{"name":"IPSEC_FAILURE_ME","features":[319]},{"name":"IPSEC_FAILURE_NONE","features":[319]},{"name":"IPSEC_FAILURE_PEER","features":[319]},{"name":"IPSEC_FAILURE_POINT","features":[319]},{"name":"IPSEC_FAILURE_POINT_MAX","features":[319]},{"name":"IPSEC_GETSPI0","features":[319]},{"name":"IPSEC_GETSPI1","features":[319]},{"name":"IPSEC_ID0","features":[319]},{"name":"IPSEC_KEYING_POLICY0","features":[319]},{"name":"IPSEC_KEYING_POLICY1","features":[319]},{"name":"IPSEC_KEYING_POLICY_FLAG_TERMINATING_MATCH","features":[319]},{"name":"IPSEC_KEYMODULE_STATE0","features":[319]},{"name":"IPSEC_KEY_MANAGER0","features":[319]},{"name":"IPSEC_KEY_MANAGER_CALLBACKS0","features":[303,319,306]},{"name":"IPSEC_KEY_MANAGER_DICTATE_KEY0","features":[303,319,306]},{"name":"IPSEC_KEY_MANAGER_FLAG_DICTATE_KEY","features":[319]},{"name":"IPSEC_KEY_MANAGER_KEY_DICTATION_CHECK0","features":[303,319]},{"name":"IPSEC_KEY_MANAGER_NOTIFY_KEY0","features":[303,319,306]},{"name":"IPSEC_PFS_1","features":[319]},{"name":"IPSEC_PFS_14","features":[319]},{"name":"IPSEC_PFS_2","features":[319]},{"name":"IPSEC_PFS_2048","features":[319]},{"name":"IPSEC_PFS_24","features":[319]},{"name":"IPSEC_PFS_ECP_256","features":[319]},{"name":"IPSEC_PFS_ECP_384","features":[319]},{"name":"IPSEC_PFS_GROUP","features":[319]},{"name":"IPSEC_PFS_MAX","features":[319]},{"name":"IPSEC_PFS_MM","features":[319]},{"name":"IPSEC_PFS_NONE","features":[319]},{"name":"IPSEC_POLICY_FLAG","features":[319]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH1","features":[319]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH2","features":[319]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH3","features":[319]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH4","features":[319]},{"name":"IPSEC_POLICY_FLAG_CLEAR_DF_ON_TUNNEL","features":[319]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_BYTE_LIFETIME","features":[319]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_SECOND_LIFETIME","features":[319]},{"name":"IPSEC_POLICY_FLAG_ENABLE_SERVER_ADDR_ASSIGNMENT","features":[319]},{"name":"IPSEC_POLICY_FLAG_ENABLE_V6_IN_V4_TUNNELING","features":[319]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_DICTATE_KEY","features":[319]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_NOTIFY_KEY","features":[319]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_GENERAL_NAT_TRAVERSAL","features":[319]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_PEER_BEHIND_NAT","features":[319]},{"name":"IPSEC_POLICY_FLAG_ND_BOUNDARY","features":[319]},{"name":"IPSEC_POLICY_FLAG_ND_SECURE","features":[319]},{"name":"IPSEC_POLICY_FLAG_RESERVED1","features":[319]},{"name":"IPSEC_POLICY_FLAG_SITE_TO_SITE_TUNNEL","features":[319]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_ALLOW_OUTBOUND_CLEAR_CONNECTION","features":[319]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ALREADY_SECURE_CONNECTION","features":[319]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ICMPV6","features":[319]},{"name":"IPSEC_PROPOSAL0","features":[319]},{"name":"IPSEC_SA0","features":[319]},{"name":"IPSEC_SA_AUTH_AND_CIPHER_INFORMATION0","features":[319]},{"name":"IPSEC_SA_AUTH_INFORMATION0","features":[319]},{"name":"IPSEC_SA_BUNDLE0","features":[319]},{"name":"IPSEC_SA_BUNDLE1","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAGS","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_ALLOW_NULL_TARGET_NAME_MATCH","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_ASSUME_UDP_CONTEXT_OUTBOUND","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_CLEAR_DF_ON_TUNNEL","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_ENABLE_OPTIONAL_ASYMMETRIC_IDLE","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_INBOUND_CONNECTIONS","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_OUTBOUND_CONNECTIONS","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORWARD_PATH_INITIATOR","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_GUARANTEE_ENCRYPTION","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_IP_IN_IP_PKT","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOCALLY_DICTATED_KEYS","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOW_POWER_MODE_SUPPORT","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_BOUNDARY","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_BOUNDARY","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_NAT_BOUNDARY","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_SECURE","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_NLB","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_EXPLICIT_CRED_MATCH","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_MACHINE_LUID_VERIFY","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_PEER_SUPPORTS_GUARANTEE_ENCRYPTION","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_SA_OFFLOADED","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_SUPPRESS_DUPLICATE_DELETION","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH1","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH2","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH3","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH4","features":[319]},{"name":"IPSEC_SA_BUNDLE_FLAG_USING_DICTATED_KEYS","features":[319]},{"name":"IPSEC_SA_CIPHER_INFORMATION0","features":[319]},{"name":"IPSEC_SA_CONTEXT0","features":[303,319,306]},{"name":"IPSEC_SA_CONTEXT1","features":[303,319,306]},{"name":"IPSEC_SA_CONTEXT_CALLBACK0","features":[319]},{"name":"IPSEC_SA_CONTEXT_CHANGE0","features":[319]},{"name":"IPSEC_SA_CONTEXT_ENUM_TEMPLATE0","features":[303,319,306]},{"name":"IPSEC_SA_CONTEXT_EVENT_ADD","features":[319]},{"name":"IPSEC_SA_CONTEXT_EVENT_DELETE","features":[319]},{"name":"IPSEC_SA_CONTEXT_EVENT_MAX","features":[319]},{"name":"IPSEC_SA_CONTEXT_EVENT_TYPE0","features":[319]},{"name":"IPSEC_SA_CONTEXT_SUBSCRIPTION0","features":[303,319,306]},{"name":"IPSEC_SA_DETAILS0","features":[303,319,306]},{"name":"IPSEC_SA_DETAILS1","features":[303,319,306]},{"name":"IPSEC_SA_ENUM_TEMPLATE0","features":[319]},{"name":"IPSEC_SA_IDLE_TIMEOUT0","features":[319]},{"name":"IPSEC_SA_LIFETIME0","features":[319]},{"name":"IPSEC_SA_TRANSFORM0","features":[319]},{"name":"IPSEC_STATISTICS0","features":[319]},{"name":"IPSEC_STATISTICS1","features":[319]},{"name":"IPSEC_TOKEN0","features":[319]},{"name":"IPSEC_TOKEN_MODE","features":[319]},{"name":"IPSEC_TOKEN_MODE_EXTENDED","features":[319]},{"name":"IPSEC_TOKEN_MODE_MAIN","features":[319]},{"name":"IPSEC_TOKEN_MODE_MAX","features":[319]},{"name":"IPSEC_TOKEN_PRINCIPAL","features":[319]},{"name":"IPSEC_TOKEN_PRINCIPAL_LOCAL","features":[319]},{"name":"IPSEC_TOKEN_PRINCIPAL_MAX","features":[319]},{"name":"IPSEC_TOKEN_PRINCIPAL_PEER","features":[319]},{"name":"IPSEC_TOKEN_TYPE","features":[319]},{"name":"IPSEC_TOKEN_TYPE_IMPERSONATION","features":[319]},{"name":"IPSEC_TOKEN_TYPE_MACHINE","features":[319]},{"name":"IPSEC_TOKEN_TYPE_MAX","features":[319]},{"name":"IPSEC_TRAFFIC0","features":[319]},{"name":"IPSEC_TRAFFIC1","features":[319]},{"name":"IPSEC_TRAFFIC_SELECTOR0","features":[319]},{"name":"IPSEC_TRAFFIC_SELECTOR_POLICY0","features":[319]},{"name":"IPSEC_TRAFFIC_STATISTICS0","features":[319]},{"name":"IPSEC_TRAFFIC_STATISTICS1","features":[319]},{"name":"IPSEC_TRAFFIC_TYPE","features":[319]},{"name":"IPSEC_TRAFFIC_TYPE_MAX","features":[319]},{"name":"IPSEC_TRAFFIC_TYPE_TRANSPORT","features":[319]},{"name":"IPSEC_TRAFFIC_TYPE_TUNNEL","features":[319]},{"name":"IPSEC_TRANSFORM_AH","features":[319]},{"name":"IPSEC_TRANSFORM_ESP_AUTH","features":[319]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_AND_CIPHER","features":[319]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_FW","features":[319]},{"name":"IPSEC_TRANSFORM_ESP_CIPHER","features":[319]},{"name":"IPSEC_TRANSFORM_TYPE","features":[319]},{"name":"IPSEC_TRANSFORM_TYPE_MAX","features":[319]},{"name":"IPSEC_TRANSPORT_POLICY0","features":[319]},{"name":"IPSEC_TRANSPORT_POLICY1","features":[319]},{"name":"IPSEC_TRANSPORT_POLICY2","features":[319]},{"name":"IPSEC_TUNNEL_ENDPOINT0","features":[319]},{"name":"IPSEC_TUNNEL_ENDPOINTS0","features":[319]},{"name":"IPSEC_TUNNEL_ENDPOINTS1","features":[319]},{"name":"IPSEC_TUNNEL_ENDPOINTS2","features":[319]},{"name":"IPSEC_TUNNEL_POLICY0","features":[319]},{"name":"IPSEC_TUNNEL_POLICY1","features":[319]},{"name":"IPSEC_TUNNEL_POLICY2","features":[319]},{"name":"IPSEC_TUNNEL_POLICY3","features":[319]},{"name":"IPSEC_V4_UDP_ENCAPSULATION0","features":[319]},{"name":"IPSEC_VIRTUAL_IF_TUNNEL_INFO0","features":[319]},{"name":"IPsecDospGetSecurityInfo0","features":[303,319,306]},{"name":"IPsecDospGetStatistics0","features":[303,319]},{"name":"IPsecDospSetSecurityInfo0","features":[303,319,306]},{"name":"IPsecDospStateCreateEnumHandle0","features":[303,319]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[303,319]},{"name":"IPsecDospStateEnum0","features":[303,319]},{"name":"IPsecGetStatistics0","features":[303,319]},{"name":"IPsecGetStatistics1","features":[303,319]},{"name":"IPsecKeyManagerAddAndRegister0","features":[303,319,306]},{"name":"IPsecKeyManagerGetSecurityInfoByKey0","features":[303,319,306]},{"name":"IPsecKeyManagerSetSecurityInfoByKey0","features":[303,319,306]},{"name":"IPsecKeyManagerUnregisterAndDelete0","features":[303,319]},{"name":"IPsecKeyManagersGet0","features":[303,319]},{"name":"IPsecSaContextAddInbound0","features":[303,319]},{"name":"IPsecSaContextAddInbound1","features":[303,319]},{"name":"IPsecSaContextAddOutbound0","features":[303,319]},{"name":"IPsecSaContextAddOutbound1","features":[303,319]},{"name":"IPsecSaContextCreate0","features":[303,319]},{"name":"IPsecSaContextCreate1","features":[303,319]},{"name":"IPsecSaContextCreateEnumHandle0","features":[303,319,306]},{"name":"IPsecSaContextDeleteById0","features":[303,319]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[303,319]},{"name":"IPsecSaContextEnum0","features":[303,319,306]},{"name":"IPsecSaContextEnum1","features":[303,319,306]},{"name":"IPsecSaContextExpire0","features":[303,319]},{"name":"IPsecSaContextGetById0","features":[303,319,306]},{"name":"IPsecSaContextGetById1","features":[303,319,306]},{"name":"IPsecSaContextGetSpi0","features":[303,319]},{"name":"IPsecSaContextGetSpi1","features":[303,319]},{"name":"IPsecSaContextSetSpi0","features":[303,319]},{"name":"IPsecSaContextSubscribe0","features":[303,319,306]},{"name":"IPsecSaContextSubscriptionsGet0","features":[303,319,306]},{"name":"IPsecSaContextUnsubscribe0","features":[303,319]},{"name":"IPsecSaContextUpdate0","features":[303,319,306]},{"name":"IPsecSaCreateEnumHandle0","features":[303,319]},{"name":"IPsecSaDbGetSecurityInfo0","features":[303,319,306]},{"name":"IPsecSaDbSetSecurityInfo0","features":[303,319,306]},{"name":"IPsecSaDestroyEnumHandle0","features":[303,319]},{"name":"IPsecSaEnum0","features":[303,319,306]},{"name":"IPsecSaEnum1","features":[303,319,306]},{"name":"IkeextGetStatistics0","features":[303,319]},{"name":"IkeextGetStatistics1","features":[303,319]},{"name":"IkeextSaCreateEnumHandle0","features":[303,319,306]},{"name":"IkeextSaDbGetSecurityInfo0","features":[303,319,306]},{"name":"IkeextSaDbSetSecurityInfo0","features":[303,319,306]},{"name":"IkeextSaDeleteById0","features":[303,319]},{"name":"IkeextSaDestroyEnumHandle0","features":[303,319]},{"name":"IkeextSaEnum0","features":[303,319]},{"name":"IkeextSaEnum1","features":[303,319]},{"name":"IkeextSaEnum2","features":[303,319]},{"name":"IkeextSaGetById0","features":[303,319]},{"name":"IkeextSaGetById1","features":[303,319]},{"name":"IkeextSaGetById2","features":[303,319]}],"465":[{"name":"FW_DYNAMIC_KEYWORD_ADDRESS0","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_DATA0","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_ALL","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_AUTO_RESOLVE","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_NON_AUTO_RESOLVE","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS_AUTO_RESOLVE","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_INVALID","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_LOCAL","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_MDM","features":[461]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_TYPE","features":[461]},{"name":"ICSSC_DEFAULT","features":[461]},{"name":"ICSSC_ENABLED","features":[461]},{"name":"ICSSHARINGTYPE_PRIVATE","features":[461]},{"name":"ICSSHARINGTYPE_PUBLIC","features":[461]},{"name":"ICSTT_IPADDRESS","features":[461]},{"name":"ICSTT_NAME","features":[461]},{"name":"ICS_TARGETTYPE","features":[461]},{"name":"IDynamicPortMapping","features":[461,354]},{"name":"IDynamicPortMappingCollection","features":[461,354]},{"name":"IEnumNetConnection","features":[461]},{"name":"IEnumNetSharingEveryConnection","features":[461]},{"name":"IEnumNetSharingPortMapping","features":[461]},{"name":"IEnumNetSharingPrivateConnection","features":[461]},{"name":"IEnumNetSharingPublicConnection","features":[461]},{"name":"INATEventManager","features":[461,354]},{"name":"INATExternalIPAddressCallback","features":[461]},{"name":"INATNumberOfEntriesCallback","features":[461]},{"name":"INET_FIREWALL_AC_BINARIES","features":[461]},{"name":"INET_FIREWALL_AC_BINARY","features":[461]},{"name":"INET_FIREWALL_AC_CAPABILITIES","features":[303,461,306]},{"name":"INET_FIREWALL_AC_CHANGE","features":[303,461,306]},{"name":"INET_FIREWALL_AC_CHANGE_CREATE","features":[461]},{"name":"INET_FIREWALL_AC_CHANGE_DELETE","features":[461]},{"name":"INET_FIREWALL_AC_CHANGE_INVALID","features":[461]},{"name":"INET_FIREWALL_AC_CHANGE_MAX","features":[461]},{"name":"INET_FIREWALL_AC_CHANGE_TYPE","features":[461]},{"name":"INET_FIREWALL_AC_CREATION_TYPE","features":[461]},{"name":"INET_FIREWALL_AC_MAX","features":[461]},{"name":"INET_FIREWALL_AC_NONE","features":[461]},{"name":"INET_FIREWALL_AC_PACKAGE_ID_ONLY","features":[461]},{"name":"INET_FIREWALL_APP_CONTAINER","features":[303,461,306]},{"name":"INetConnection","features":[461]},{"name":"INetConnectionConnectUi","features":[461]},{"name":"INetConnectionManager","features":[461]},{"name":"INetConnectionProps","features":[461,354]},{"name":"INetFwAuthorizedApplication","features":[461,354]},{"name":"INetFwAuthorizedApplications","features":[461,354]},{"name":"INetFwIcmpSettings","features":[461,354]},{"name":"INetFwMgr","features":[461,354]},{"name":"INetFwOpenPort","features":[461,354]},{"name":"INetFwOpenPorts","features":[461,354]},{"name":"INetFwPolicy","features":[461,354]},{"name":"INetFwPolicy2","features":[461,354]},{"name":"INetFwProduct","features":[461,354]},{"name":"INetFwProducts","features":[461,354]},{"name":"INetFwProfile","features":[461,354]},{"name":"INetFwRemoteAdminSettings","features":[461,354]},{"name":"INetFwRule","features":[461,354]},{"name":"INetFwRule2","features":[461,354]},{"name":"INetFwRule3","features":[461,354]},{"name":"INetFwRules","features":[461,354]},{"name":"INetFwService","features":[461,354]},{"name":"INetFwServiceRestriction","features":[461,354]},{"name":"INetFwServices","features":[461,354]},{"name":"INetSharingConfiguration","features":[461,354]},{"name":"INetSharingEveryConnectionCollection","features":[461,354]},{"name":"INetSharingManager","features":[461,354]},{"name":"INetSharingPortMapping","features":[461,354]},{"name":"INetSharingPortMappingCollection","features":[461,354]},{"name":"INetSharingPortMappingProps","features":[461,354]},{"name":"INetSharingPrivateConnectionCollection","features":[461,354]},{"name":"INetSharingPublicConnectionCollection","features":[461,354]},{"name":"IStaticPortMapping","features":[461,354]},{"name":"IStaticPortMappingCollection","features":[461,354]},{"name":"IUPnPNAT","features":[461,354]},{"name":"NCCF_ALLOW_DUPLICATION","features":[461]},{"name":"NCCF_ALLOW_REMOVAL","features":[461]},{"name":"NCCF_ALLOW_RENAME","features":[461]},{"name":"NCCF_ALL_USERS","features":[461]},{"name":"NCCF_BLUETOOTH_MASK","features":[461]},{"name":"NCCF_BRANDED","features":[461]},{"name":"NCCF_BRIDGED","features":[461]},{"name":"NCCF_DEFAULT","features":[461]},{"name":"NCCF_FIREWALLED","features":[461]},{"name":"NCCF_HOMENET_CAPABLE","features":[461]},{"name":"NCCF_HOSTED_NETWORK","features":[461]},{"name":"NCCF_INCOMING_ONLY","features":[461]},{"name":"NCCF_LAN_MASK","features":[461]},{"name":"NCCF_NONE","features":[461]},{"name":"NCCF_OUTGOING_ONLY","features":[461]},{"name":"NCCF_QUARANTINED","features":[461]},{"name":"NCCF_RESERVED","features":[461]},{"name":"NCCF_SHARED","features":[461]},{"name":"NCCF_SHARED_PRIVATE","features":[461]},{"name":"NCCF_VIRTUAL_STATION","features":[461]},{"name":"NCCF_WIFI_DIRECT","features":[461]},{"name":"NCME_DEFAULT","features":[461]},{"name":"NCME_HIDDEN","features":[461]},{"name":"NCM_BRIDGE","features":[461]},{"name":"NCM_DIRECT","features":[461]},{"name":"NCM_ISDN","features":[461]},{"name":"NCM_LAN","features":[461]},{"name":"NCM_NONE","features":[461]},{"name":"NCM_PHONE","features":[461]},{"name":"NCM_PPPOE","features":[461]},{"name":"NCM_SHAREDACCESSHOST_LAN","features":[461]},{"name":"NCM_SHAREDACCESSHOST_RAS","features":[461]},{"name":"NCM_TUNNEL","features":[461]},{"name":"NCS_ACTION_REQUIRED","features":[461]},{"name":"NCS_ACTION_REQUIRED_RETRY","features":[461]},{"name":"NCS_AUTHENTICATING","features":[461]},{"name":"NCS_AUTHENTICATION_FAILED","features":[461]},{"name":"NCS_AUTHENTICATION_SUCCEEDED","features":[461]},{"name":"NCS_CONNECTED","features":[461]},{"name":"NCS_CONNECTING","features":[461]},{"name":"NCS_CONNECT_FAILED","features":[461]},{"name":"NCS_CREDENTIALS_REQUIRED","features":[461]},{"name":"NCS_DISCONNECTED","features":[461]},{"name":"NCS_DISCONNECTING","features":[461]},{"name":"NCS_HARDWARE_DISABLED","features":[461]},{"name":"NCS_HARDWARE_MALFUNCTION","features":[461]},{"name":"NCS_HARDWARE_NOT_PRESENT","features":[461]},{"name":"NCS_INVALID_ADDRESS","features":[461]},{"name":"NCS_MEDIA_DISCONNECTED","features":[461]},{"name":"NCT_BRIDGE","features":[461]},{"name":"NCT_DIRECT_CONNECT","features":[461]},{"name":"NCT_INBOUND","features":[461]},{"name":"NCT_INTERNET","features":[461]},{"name":"NCT_LAN","features":[461]},{"name":"NCT_PHONE","features":[461]},{"name":"NCT_TUNNEL","features":[461]},{"name":"NCUC_DEFAULT","features":[461]},{"name":"NCUC_ENABLE_DISABLE","features":[461]},{"name":"NCUC_NO_UI","features":[461]},{"name":"NETCONMGR_ENUM_FLAGS","features":[461]},{"name":"NETCONUI_CONNECT_FLAGS","features":[461]},{"name":"NETCON_CHARACTERISTIC_FLAGS","features":[461]},{"name":"NETCON_MAX_NAME_LEN","features":[461]},{"name":"NETCON_MEDIATYPE","features":[461]},{"name":"NETCON_PROPERTIES","features":[461]},{"name":"NETCON_STATUS","features":[461]},{"name":"NETCON_TYPE","features":[461]},{"name":"NETISO_ERROR_TYPE","features":[461]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT","features":[461]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT_SERVER","features":[461]},{"name":"NETISO_ERROR_TYPE_MAX","features":[461]},{"name":"NETISO_ERROR_TYPE_NONE","features":[461]},{"name":"NETISO_ERROR_TYPE_PRIVATE_NETWORK","features":[461]},{"name":"NETISO_FLAG","features":[461]},{"name":"NETISO_FLAG_FORCE_COMPUTE_BINARIES","features":[461]},{"name":"NETISO_FLAG_MAX","features":[461]},{"name":"NETISO_GEID_FOR_NEUTRAL_AWARE","features":[461]},{"name":"NETISO_GEID_FOR_WDAG","features":[461]},{"name":"NET_FW_ACTION","features":[461]},{"name":"NET_FW_ACTION_ALLOW","features":[461]},{"name":"NET_FW_ACTION_BLOCK","features":[461]},{"name":"NET_FW_ACTION_MAX","features":[461]},{"name":"NET_FW_AUTHENTICATE_AND_ENCRYPT","features":[461]},{"name":"NET_FW_AUTHENTICATE_AND_NEGOTIATE_ENCRYPTION","features":[461]},{"name":"NET_FW_AUTHENTICATE_NONE","features":[461]},{"name":"NET_FW_AUTHENTICATE_NO_ENCAPSULATION","features":[461]},{"name":"NET_FW_AUTHENTICATE_TYPE","features":[461]},{"name":"NET_FW_AUTHENTICATE_WITH_INTEGRITY","features":[461]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE","features":[461]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_ALLOW","features":[461]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_APP","features":[461]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_USER","features":[461]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DENY","features":[461]},{"name":"NET_FW_IP_PROTOCOL","features":[461]},{"name":"NET_FW_IP_PROTOCOL_ANY","features":[461]},{"name":"NET_FW_IP_PROTOCOL_TCP","features":[461]},{"name":"NET_FW_IP_PROTOCOL_UDP","features":[461]},{"name":"NET_FW_IP_VERSION","features":[461]},{"name":"NET_FW_IP_VERSION_ANY","features":[461]},{"name":"NET_FW_IP_VERSION_MAX","features":[461]},{"name":"NET_FW_IP_VERSION_V4","features":[461]},{"name":"NET_FW_IP_VERSION_V6","features":[461]},{"name":"NET_FW_MODIFY_STATE","features":[461]},{"name":"NET_FW_MODIFY_STATE_GP_OVERRIDE","features":[461]},{"name":"NET_FW_MODIFY_STATE_INBOUND_BLOCKED","features":[461]},{"name":"NET_FW_MODIFY_STATE_OK","features":[461]},{"name":"NET_FW_POLICY_EFFECTIVE","features":[461]},{"name":"NET_FW_POLICY_GROUP","features":[461]},{"name":"NET_FW_POLICY_LOCAL","features":[461]},{"name":"NET_FW_POLICY_TYPE","features":[461]},{"name":"NET_FW_POLICY_TYPE_MAX","features":[461]},{"name":"NET_FW_PROFILE2_ALL","features":[461]},{"name":"NET_FW_PROFILE2_DOMAIN","features":[461]},{"name":"NET_FW_PROFILE2_PRIVATE","features":[461]},{"name":"NET_FW_PROFILE2_PUBLIC","features":[461]},{"name":"NET_FW_PROFILE_CURRENT","features":[461]},{"name":"NET_FW_PROFILE_DOMAIN","features":[461]},{"name":"NET_FW_PROFILE_STANDARD","features":[461]},{"name":"NET_FW_PROFILE_TYPE","features":[461]},{"name":"NET_FW_PROFILE_TYPE2","features":[461]},{"name":"NET_FW_PROFILE_TYPE_MAX","features":[461]},{"name":"NET_FW_RULE_CATEGORY","features":[461]},{"name":"NET_FW_RULE_CATEGORY_BOOT","features":[461]},{"name":"NET_FW_RULE_CATEGORY_CONSEC","features":[461]},{"name":"NET_FW_RULE_CATEGORY_FIREWALL","features":[461]},{"name":"NET_FW_RULE_CATEGORY_MAX","features":[461]},{"name":"NET_FW_RULE_CATEGORY_STEALTH","features":[461]},{"name":"NET_FW_RULE_DIRECTION","features":[461]},{"name":"NET_FW_RULE_DIR_IN","features":[461]},{"name":"NET_FW_RULE_DIR_MAX","features":[461]},{"name":"NET_FW_RULE_DIR_OUT","features":[461]},{"name":"NET_FW_SCOPE","features":[461]},{"name":"NET_FW_SCOPE_ALL","features":[461]},{"name":"NET_FW_SCOPE_CUSTOM","features":[461]},{"name":"NET_FW_SCOPE_LOCAL_SUBNET","features":[461]},{"name":"NET_FW_SCOPE_MAX","features":[461]},{"name":"NET_FW_SERVICE_FILE_AND_PRINT","features":[461]},{"name":"NET_FW_SERVICE_NONE","features":[461]},{"name":"NET_FW_SERVICE_REMOTE_DESKTOP","features":[461]},{"name":"NET_FW_SERVICE_TYPE","features":[461]},{"name":"NET_FW_SERVICE_TYPE_MAX","features":[461]},{"name":"NET_FW_SERVICE_UPNP","features":[461]},{"name":"NcFreeNetconProperties","features":[461]},{"name":"NcIsValidConnectionName","features":[303,461]},{"name":"NetFwAuthorizedApplication","features":[461]},{"name":"NetFwMgr","features":[461]},{"name":"NetFwOpenPort","features":[461]},{"name":"NetFwPolicy2","features":[461]},{"name":"NetFwProduct","features":[461]},{"name":"NetFwProducts","features":[461]},{"name":"NetFwRule","features":[461]},{"name":"NetSharingManager","features":[461]},{"name":"NetworkIsolationDiagnoseConnectFailureAndGetInfo","features":[461]},{"name":"NetworkIsolationEnumAppContainers","features":[303,461,306]},{"name":"NetworkIsolationEnumerateAppContainerRules","features":[461,413]},{"name":"NetworkIsolationFreeAppContainers","features":[303,461,306]},{"name":"NetworkIsolationGetAppContainerConfig","features":[303,461,306]},{"name":"NetworkIsolationGetEnterpriseIdAsync","features":[303,461]},{"name":"NetworkIsolationGetEnterpriseIdClose","features":[303,461]},{"name":"NetworkIsolationRegisterForAppContainerChanges","features":[303,461,306]},{"name":"NetworkIsolationSetAppContainerConfig","features":[303,461,306]},{"name":"NetworkIsolationSetupAppContainerBinaries","features":[303,461]},{"name":"NetworkIsolationUnregisterForAppContainerChanges","features":[303,461]},{"name":"PAC_CHANGES_CALLBACK_FN","features":[303,461,306]},{"name":"PFN_FWADDDYNAMICKEYWORDADDRESS0","features":[461]},{"name":"PFN_FWDELETEDYNAMICKEYWORDADDRESS0","features":[461]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSBYID0","features":[461]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSESBYTYPE0","features":[461]},{"name":"PFN_FWFREEDYNAMICKEYWORDADDRESSDATA0","features":[461]},{"name":"PFN_FWUPDATEDYNAMICKEYWORDADDRESS0","features":[303,461]},{"name":"PNETISO_EDP_ID_CALLBACK_FN","features":[461]},{"name":"SHARINGCONNECTIONTYPE","features":[461]},{"name":"SHARINGCONNECTION_ENUM_FLAGS","features":[461]},{"name":"S_OBJECT_NO_LONGER_VALID","features":[461]},{"name":"UPnPNAT","features":[461]}],"466":[{"name":"WNV_API_MAJOR_VERSION_1","features":[462]},{"name":"WNV_API_MINOR_VERSION_0","features":[462]},{"name":"WNV_CA_NOTIFICATION_TYPE","features":[462]},{"name":"WNV_CUSTOMER_ADDRESS_CHANGE_PARAM","features":[462,316]},{"name":"WNV_IP_ADDRESS","features":[462,316]},{"name":"WNV_NOTIFICATION_PARAM","features":[462]},{"name":"WNV_NOTIFICATION_TYPE","features":[462]},{"name":"WNV_OBJECT_CHANGE_PARAM","features":[462,316]},{"name":"WNV_OBJECT_HEADER","features":[462]},{"name":"WNV_OBJECT_TYPE","features":[462]},{"name":"WNV_POLICY_MISMATCH_PARAM","features":[462,316]},{"name":"WNV_PROVIDER_ADDRESS_CHANGE_PARAM","features":[462,316]},{"name":"WNV_REDIRECT_PARAM","features":[462,316]},{"name":"WnvCustomerAddressAdded","features":[462]},{"name":"WnvCustomerAddressDeleted","features":[462]},{"name":"WnvCustomerAddressMax","features":[462]},{"name":"WnvCustomerAddressMoved","features":[462]},{"name":"WnvCustomerAddressType","features":[462]},{"name":"WnvNotificationTypeMax","features":[462]},{"name":"WnvObjectChangeType","features":[462]},{"name":"WnvObjectTypeMax","features":[462]},{"name":"WnvOpen","features":[303,462]},{"name":"WnvPolicyMismatchType","features":[462]},{"name":"WnvProviderAddressType","features":[462]},{"name":"WnvRedirectType","features":[462]},{"name":"WnvRequestNotification","features":[303,462,308]}],"467":[{"name":"ACTRL_DS_CONTROL_ACCESS","features":[463]},{"name":"ACTRL_DS_CREATE_CHILD","features":[463]},{"name":"ACTRL_DS_DELETE_CHILD","features":[463]},{"name":"ACTRL_DS_DELETE_TREE","features":[463]},{"name":"ACTRL_DS_LIST","features":[463]},{"name":"ACTRL_DS_LIST_OBJECT","features":[463]},{"name":"ACTRL_DS_OPEN","features":[463]},{"name":"ACTRL_DS_READ_PROP","features":[463]},{"name":"ACTRL_DS_SELF","features":[463]},{"name":"ACTRL_DS_WRITE_PROP","features":[463]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_MUTUAL_AUTH_REQUIRED","features":[463]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE","features":[463]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE_PASS_THROUGH","features":[463]},{"name":"ADAM_SCP_FSMO_NAMING_STRING","features":[463]},{"name":"ADAM_SCP_FSMO_NAMING_STRING_W","features":[463]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING","features":[463]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING_W","features":[463]},{"name":"ADAM_SCP_FSMO_STRING","features":[463]},{"name":"ADAM_SCP_FSMO_STRING_W","features":[463]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING","features":[463]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING_W","features":[463]},{"name":"ADAM_SCP_PARTITION_STRING","features":[463]},{"name":"ADAM_SCP_PARTITION_STRING_W","features":[463]},{"name":"ADAM_SCP_SITE_NAME_STRING","features":[463]},{"name":"ADAM_SCP_SITE_NAME_STRING_W","features":[463]},{"name":"ADSIPROP_ADSIFLAG","features":[463]},{"name":"ADSIPROP_ASYNCHRONOUS","features":[463]},{"name":"ADSIPROP_ATTRIBTYPES_ONLY","features":[463]},{"name":"ADSIPROP_CACHE_RESULTS","features":[463]},{"name":"ADSIPROP_CHASE_REFERRALS","features":[463]},{"name":"ADSIPROP_DEREF_ALIASES","features":[463]},{"name":"ADSIPROP_PAGED_TIME_LIMIT","features":[463]},{"name":"ADSIPROP_PAGESIZE","features":[463]},{"name":"ADSIPROP_SEARCH_SCOPE","features":[463]},{"name":"ADSIPROP_SIZE_LIMIT","features":[463]},{"name":"ADSIPROP_SORT_ON","features":[463]},{"name":"ADSIPROP_TIMEOUT","features":[463]},{"name":"ADSIPROP_TIME_LIMIT","features":[463]},{"name":"ADSI_DIALECT_ENUM","features":[463]},{"name":"ADSI_DIALECT_LDAP","features":[463]},{"name":"ADSI_DIALECT_SQL","features":[463]},{"name":"ADSPROPERROR","features":[303,463]},{"name":"ADSPROPINITPARAMS","features":[303,463]},{"name":"ADSTYPE","features":[463]},{"name":"ADSTYPE_BACKLINK","features":[463]},{"name":"ADSTYPE_BOOLEAN","features":[463]},{"name":"ADSTYPE_CASEIGNORE_LIST","features":[463]},{"name":"ADSTYPE_CASE_EXACT_STRING","features":[463]},{"name":"ADSTYPE_CASE_IGNORE_STRING","features":[463]},{"name":"ADSTYPE_DN_STRING","features":[463]},{"name":"ADSTYPE_DN_WITH_BINARY","features":[463]},{"name":"ADSTYPE_DN_WITH_STRING","features":[463]},{"name":"ADSTYPE_EMAIL","features":[463]},{"name":"ADSTYPE_FAXNUMBER","features":[463]},{"name":"ADSTYPE_HOLD","features":[463]},{"name":"ADSTYPE_INTEGER","features":[463]},{"name":"ADSTYPE_INVALID","features":[463]},{"name":"ADSTYPE_LARGE_INTEGER","features":[463]},{"name":"ADSTYPE_NETADDRESS","features":[463]},{"name":"ADSTYPE_NT_SECURITY_DESCRIPTOR","features":[463]},{"name":"ADSTYPE_NUMERIC_STRING","features":[463]},{"name":"ADSTYPE_OBJECT_CLASS","features":[463]},{"name":"ADSTYPE_OCTET_LIST","features":[463]},{"name":"ADSTYPE_OCTET_STRING","features":[463]},{"name":"ADSTYPE_PATH","features":[463]},{"name":"ADSTYPE_POSTALADDRESS","features":[463]},{"name":"ADSTYPE_PRINTABLE_STRING","features":[463]},{"name":"ADSTYPE_PROV_SPECIFIC","features":[463]},{"name":"ADSTYPE_REPLICAPOINTER","features":[463]},{"name":"ADSTYPE_TIMESTAMP","features":[463]},{"name":"ADSTYPE_TYPEDNAME","features":[463]},{"name":"ADSTYPE_UNKNOWN","features":[463]},{"name":"ADSTYPE_UTC_TIME","features":[463]},{"name":"ADSVALUE","features":[303,463]},{"name":"ADS_ACEFLAG_ENUM","features":[463]},{"name":"ADS_ACEFLAG_FAILED_ACCESS","features":[463]},{"name":"ADS_ACEFLAG_INHERITED_ACE","features":[463]},{"name":"ADS_ACEFLAG_INHERIT_ACE","features":[463]},{"name":"ADS_ACEFLAG_INHERIT_ONLY_ACE","features":[463]},{"name":"ADS_ACEFLAG_NO_PROPAGATE_INHERIT_ACE","features":[463]},{"name":"ADS_ACEFLAG_SUCCESSFUL_ACCESS","features":[463]},{"name":"ADS_ACEFLAG_VALID_INHERIT_FLAGS","features":[463]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED","features":[463]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK","features":[463]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK_OBJECT","features":[463]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_OBJECT","features":[463]},{"name":"ADS_ACETYPE_ACCESS_DENIED","features":[463]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK","features":[463]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK_OBJECT","features":[463]},{"name":"ADS_ACETYPE_ACCESS_DENIED_OBJECT","features":[463]},{"name":"ADS_ACETYPE_ENUM","features":[463]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK","features":[463]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK_OBJECT","features":[463]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_OBJECT","features":[463]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT","features":[463]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK","features":[463]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK_OBJECT","features":[463]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_OBJECT","features":[463]},{"name":"ADS_ATTR_APPEND","features":[463]},{"name":"ADS_ATTR_CLEAR","features":[463]},{"name":"ADS_ATTR_DEF","features":[303,463]},{"name":"ADS_ATTR_DELETE","features":[463]},{"name":"ADS_ATTR_INFO","features":[303,463]},{"name":"ADS_ATTR_UPDATE","features":[463]},{"name":"ADS_AUTHENTICATION_ENUM","features":[463]},{"name":"ADS_AUTH_RESERVED","features":[463]},{"name":"ADS_BACKLINK","features":[463]},{"name":"ADS_CASEIGNORE_LIST","features":[463]},{"name":"ADS_CHASE_REFERRALS_ALWAYS","features":[463]},{"name":"ADS_CHASE_REFERRALS_ENUM","features":[463]},{"name":"ADS_CHASE_REFERRALS_EXTERNAL","features":[463]},{"name":"ADS_CHASE_REFERRALS_NEVER","features":[463]},{"name":"ADS_CHASE_REFERRALS_SUBORDINATE","features":[463]},{"name":"ADS_CLASS_DEF","features":[303,463]},{"name":"ADS_DEREFENUM","features":[463]},{"name":"ADS_DEREF_ALWAYS","features":[463]},{"name":"ADS_DEREF_FINDING","features":[463]},{"name":"ADS_DEREF_NEVER","features":[463]},{"name":"ADS_DEREF_SEARCHING","features":[463]},{"name":"ADS_DISPLAY_ENUM","features":[463]},{"name":"ADS_DISPLAY_FULL","features":[463]},{"name":"ADS_DISPLAY_VALUE_ONLY","features":[463]},{"name":"ADS_DN_WITH_BINARY","features":[463]},{"name":"ADS_DN_WITH_STRING","features":[463]},{"name":"ADS_EMAIL","features":[463]},{"name":"ADS_ESCAPEDMODE_DEFAULT","features":[463]},{"name":"ADS_ESCAPEDMODE_OFF","features":[463]},{"name":"ADS_ESCAPEDMODE_OFF_EX","features":[463]},{"name":"ADS_ESCAPEDMODE_ON","features":[463]},{"name":"ADS_ESCAPE_MODE_ENUM","features":[463]},{"name":"ADS_EXT_INITCREDENTIALS","features":[463]},{"name":"ADS_EXT_INITIALIZE_COMPLETE","features":[463]},{"name":"ADS_EXT_MAXEXTDISPID","features":[463]},{"name":"ADS_EXT_MINEXTDISPID","features":[463]},{"name":"ADS_FAST_BIND","features":[463]},{"name":"ADS_FAXNUMBER","features":[463]},{"name":"ADS_FLAGTYPE_ENUM","features":[463]},{"name":"ADS_FLAG_INHERITED_OBJECT_TYPE_PRESENT","features":[463]},{"name":"ADS_FLAG_OBJECT_TYPE_PRESENT","features":[463]},{"name":"ADS_FORMAT_ENUM","features":[463]},{"name":"ADS_FORMAT_LEAF","features":[463]},{"name":"ADS_FORMAT_PROVIDER","features":[463]},{"name":"ADS_FORMAT_SERVER","features":[463]},{"name":"ADS_FORMAT_WINDOWS","features":[463]},{"name":"ADS_FORMAT_WINDOWS_DN","features":[463]},{"name":"ADS_FORMAT_WINDOWS_NO_SERVER","features":[463]},{"name":"ADS_FORMAT_WINDOWS_PARENT","features":[463]},{"name":"ADS_FORMAT_X500","features":[463]},{"name":"ADS_FORMAT_X500_DN","features":[463]},{"name":"ADS_FORMAT_X500_NO_SERVER","features":[463]},{"name":"ADS_FORMAT_X500_PARENT","features":[463]},{"name":"ADS_GROUP_TYPE_DOMAIN_LOCAL_GROUP","features":[463]},{"name":"ADS_GROUP_TYPE_ENUM","features":[463]},{"name":"ADS_GROUP_TYPE_GLOBAL_GROUP","features":[463]},{"name":"ADS_GROUP_TYPE_LOCAL_GROUP","features":[463]},{"name":"ADS_GROUP_TYPE_SECURITY_ENABLED","features":[463]},{"name":"ADS_GROUP_TYPE_UNIVERSAL_GROUP","features":[463]},{"name":"ADS_HOLD","features":[463]},{"name":"ADS_NAME_INITTYPE_DOMAIN","features":[463]},{"name":"ADS_NAME_INITTYPE_ENUM","features":[463]},{"name":"ADS_NAME_INITTYPE_GC","features":[463]},{"name":"ADS_NAME_INITTYPE_SERVER","features":[463]},{"name":"ADS_NAME_TYPE_1779","features":[463]},{"name":"ADS_NAME_TYPE_CANONICAL","features":[463]},{"name":"ADS_NAME_TYPE_CANONICAL_EX","features":[463]},{"name":"ADS_NAME_TYPE_DISPLAY","features":[463]},{"name":"ADS_NAME_TYPE_DOMAIN_SIMPLE","features":[463]},{"name":"ADS_NAME_TYPE_ENTERPRISE_SIMPLE","features":[463]},{"name":"ADS_NAME_TYPE_ENUM","features":[463]},{"name":"ADS_NAME_TYPE_GUID","features":[463]},{"name":"ADS_NAME_TYPE_NT4","features":[463]},{"name":"ADS_NAME_TYPE_SERVICE_PRINCIPAL_NAME","features":[463]},{"name":"ADS_NAME_TYPE_SID_OR_SID_HISTORY_NAME","features":[463]},{"name":"ADS_NAME_TYPE_UNKNOWN","features":[463]},{"name":"ADS_NAME_TYPE_USER_PRINCIPAL_NAME","features":[463]},{"name":"ADS_NETADDRESS","features":[463]},{"name":"ADS_NO_AUTHENTICATION","features":[463]},{"name":"ADS_NO_REFERRAL_CHASING","features":[463]},{"name":"ADS_NT_SECURITY_DESCRIPTOR","features":[463]},{"name":"ADS_OBJECT_INFO","features":[463]},{"name":"ADS_OCTET_LIST","features":[463]},{"name":"ADS_OCTET_STRING","features":[463]},{"name":"ADS_OPTION_ACCUMULATIVE_MODIFICATION","features":[463]},{"name":"ADS_OPTION_ENUM","features":[463]},{"name":"ADS_OPTION_MUTUAL_AUTH_STATUS","features":[463]},{"name":"ADS_OPTION_PAGE_SIZE","features":[463]},{"name":"ADS_OPTION_PASSWORD_METHOD","features":[463]},{"name":"ADS_OPTION_PASSWORD_PORTNUMBER","features":[463]},{"name":"ADS_OPTION_QUOTA","features":[463]},{"name":"ADS_OPTION_REFERRALS","features":[463]},{"name":"ADS_OPTION_SECURITY_MASK","features":[463]},{"name":"ADS_OPTION_SERVERNAME","features":[463]},{"name":"ADS_OPTION_SKIP_SID_LOOKUP","features":[463]},{"name":"ADS_PASSWORD_ENCODE_CLEAR","features":[463]},{"name":"ADS_PASSWORD_ENCODE_REQUIRE_SSL","features":[463]},{"name":"ADS_PASSWORD_ENCODING_ENUM","features":[463]},{"name":"ADS_PATH","features":[463]},{"name":"ADS_PATHTYPE_ENUM","features":[463]},{"name":"ADS_PATH_FILE","features":[463]},{"name":"ADS_PATH_FILESHARE","features":[463]},{"name":"ADS_PATH_REGISTRY","features":[463]},{"name":"ADS_POSTALADDRESS","features":[463]},{"name":"ADS_PREFERENCES_ENUM","features":[463]},{"name":"ADS_PROMPT_CREDENTIALS","features":[463]},{"name":"ADS_PROPERTY_APPEND","features":[463]},{"name":"ADS_PROPERTY_CLEAR","features":[463]},{"name":"ADS_PROPERTY_DELETE","features":[463]},{"name":"ADS_PROPERTY_OPERATION_ENUM","features":[463]},{"name":"ADS_PROPERTY_UPDATE","features":[463]},{"name":"ADS_PROV_SPECIFIC","features":[463]},{"name":"ADS_READONLY_SERVER","features":[463]},{"name":"ADS_REPLICAPOINTER","features":[463]},{"name":"ADS_RIGHTS_ENUM","features":[463]},{"name":"ADS_RIGHT_ACCESS_SYSTEM_SECURITY","features":[463]},{"name":"ADS_RIGHT_ACTRL_DS_LIST","features":[463]},{"name":"ADS_RIGHT_DELETE","features":[463]},{"name":"ADS_RIGHT_DS_CONTROL_ACCESS","features":[463]},{"name":"ADS_RIGHT_DS_CREATE_CHILD","features":[463]},{"name":"ADS_RIGHT_DS_DELETE_CHILD","features":[463]},{"name":"ADS_RIGHT_DS_DELETE_TREE","features":[463]},{"name":"ADS_RIGHT_DS_LIST_OBJECT","features":[463]},{"name":"ADS_RIGHT_DS_READ_PROP","features":[463]},{"name":"ADS_RIGHT_DS_SELF","features":[463]},{"name":"ADS_RIGHT_DS_WRITE_PROP","features":[463]},{"name":"ADS_RIGHT_GENERIC_ALL","features":[463]},{"name":"ADS_RIGHT_GENERIC_EXECUTE","features":[463]},{"name":"ADS_RIGHT_GENERIC_READ","features":[463]},{"name":"ADS_RIGHT_GENERIC_WRITE","features":[463]},{"name":"ADS_RIGHT_READ_CONTROL","features":[463]},{"name":"ADS_RIGHT_SYNCHRONIZE","features":[463]},{"name":"ADS_RIGHT_WRITE_DAC","features":[463]},{"name":"ADS_RIGHT_WRITE_OWNER","features":[463]},{"name":"ADS_SCOPEENUM","features":[463]},{"name":"ADS_SCOPE_BASE","features":[463]},{"name":"ADS_SCOPE_ONELEVEL","features":[463]},{"name":"ADS_SCOPE_SUBTREE","features":[463]},{"name":"ADS_SD_CONTROL_ENUM","features":[463]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERITED","features":[463]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERIT_REQ","features":[463]},{"name":"ADS_SD_CONTROL_SE_DACL_DEFAULTED","features":[463]},{"name":"ADS_SD_CONTROL_SE_DACL_PRESENT","features":[463]},{"name":"ADS_SD_CONTROL_SE_DACL_PROTECTED","features":[463]},{"name":"ADS_SD_CONTROL_SE_GROUP_DEFAULTED","features":[463]},{"name":"ADS_SD_CONTROL_SE_OWNER_DEFAULTED","features":[463]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERITED","features":[463]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERIT_REQ","features":[463]},{"name":"ADS_SD_CONTROL_SE_SACL_DEFAULTED","features":[463]},{"name":"ADS_SD_CONTROL_SE_SACL_PRESENT","features":[463]},{"name":"ADS_SD_CONTROL_SE_SACL_PROTECTED","features":[463]},{"name":"ADS_SD_CONTROL_SE_SELF_RELATIVE","features":[463]},{"name":"ADS_SD_FORMAT_ENUM","features":[463]},{"name":"ADS_SD_FORMAT_HEXSTRING","features":[463]},{"name":"ADS_SD_FORMAT_IID","features":[463]},{"name":"ADS_SD_FORMAT_RAW","features":[463]},{"name":"ADS_SD_REVISION_DS","features":[463]},{"name":"ADS_SD_REVISION_ENUM","features":[463]},{"name":"ADS_SEARCHPREF_ASYNCHRONOUS","features":[463]},{"name":"ADS_SEARCHPREF_ATTRIBTYPES_ONLY","features":[463]},{"name":"ADS_SEARCHPREF_ATTRIBUTE_QUERY","features":[463]},{"name":"ADS_SEARCHPREF_CACHE_RESULTS","features":[463]},{"name":"ADS_SEARCHPREF_CHASE_REFERRALS","features":[463]},{"name":"ADS_SEARCHPREF_DEREF_ALIASES","features":[463]},{"name":"ADS_SEARCHPREF_DIRSYNC","features":[463]},{"name":"ADS_SEARCHPREF_DIRSYNC_FLAG","features":[463]},{"name":"ADS_SEARCHPREF_ENUM","features":[463]},{"name":"ADS_SEARCHPREF_EXTENDED_DN","features":[463]},{"name":"ADS_SEARCHPREF_INFO","features":[303,463]},{"name":"ADS_SEARCHPREF_PAGED_TIME_LIMIT","features":[463]},{"name":"ADS_SEARCHPREF_PAGESIZE","features":[463]},{"name":"ADS_SEARCHPREF_SEARCH_SCOPE","features":[463]},{"name":"ADS_SEARCHPREF_SECURITY_MASK","features":[463]},{"name":"ADS_SEARCHPREF_SIZE_LIMIT","features":[463]},{"name":"ADS_SEARCHPREF_SORT_ON","features":[463]},{"name":"ADS_SEARCHPREF_TIMEOUT","features":[463]},{"name":"ADS_SEARCHPREF_TIME_LIMIT","features":[463]},{"name":"ADS_SEARCHPREF_TOMBSTONE","features":[463]},{"name":"ADS_SEARCHPREF_VLV","features":[463]},{"name":"ADS_SEARCH_COLUMN","features":[303,463]},{"name":"ADS_SEARCH_HANDLE","features":[463]},{"name":"ADS_SECURE_AUTHENTICATION","features":[463]},{"name":"ADS_SECURITY_INFO_DACL","features":[463]},{"name":"ADS_SECURITY_INFO_ENUM","features":[463]},{"name":"ADS_SECURITY_INFO_GROUP","features":[463]},{"name":"ADS_SECURITY_INFO_OWNER","features":[463]},{"name":"ADS_SECURITY_INFO_SACL","features":[463]},{"name":"ADS_SERVER_BIND","features":[463]},{"name":"ADS_SETTYPE_DN","features":[463]},{"name":"ADS_SETTYPE_ENUM","features":[463]},{"name":"ADS_SETTYPE_FULL","features":[463]},{"name":"ADS_SETTYPE_PROVIDER","features":[463]},{"name":"ADS_SETTYPE_SERVER","features":[463]},{"name":"ADS_SORTKEY","features":[303,463]},{"name":"ADS_STATUSENUM","features":[463]},{"name":"ADS_STATUS_INVALID_SEARCHPREF","features":[463]},{"name":"ADS_STATUS_INVALID_SEARCHPREFVALUE","features":[463]},{"name":"ADS_STATUS_S_OK","features":[463]},{"name":"ADS_SYSTEMFLAG_ATTR_IS_CONSTRUCTED","features":[463]},{"name":"ADS_SYSTEMFLAG_ATTR_NOT_REPLICATED","features":[463]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_LIMITED_MOVE","features":[463]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_MOVE","features":[463]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_RENAME","features":[463]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_DOMAIN","features":[463]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_NC","features":[463]},{"name":"ADS_SYSTEMFLAG_DISALLOW_DELETE","features":[463]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_MOVE","features":[463]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_RENAME","features":[463]},{"name":"ADS_SYSTEMFLAG_ENUM","features":[463]},{"name":"ADS_TIMESTAMP","features":[463]},{"name":"ADS_TYPEDNAME","features":[463]},{"name":"ADS_UF_ACCOUNTDISABLE","features":[463]},{"name":"ADS_UF_DONT_EXPIRE_PASSWD","features":[463]},{"name":"ADS_UF_DONT_REQUIRE_PREAUTH","features":[463]},{"name":"ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[463]},{"name":"ADS_UF_HOMEDIR_REQUIRED","features":[463]},{"name":"ADS_UF_INTERDOMAIN_TRUST_ACCOUNT","features":[463]},{"name":"ADS_UF_LOCKOUT","features":[463]},{"name":"ADS_UF_MNS_LOGON_ACCOUNT","features":[463]},{"name":"ADS_UF_NORMAL_ACCOUNT","features":[463]},{"name":"ADS_UF_NOT_DELEGATED","features":[463]},{"name":"ADS_UF_PASSWD_CANT_CHANGE","features":[463]},{"name":"ADS_UF_PASSWD_NOTREQD","features":[463]},{"name":"ADS_UF_PASSWORD_EXPIRED","features":[463]},{"name":"ADS_UF_SCRIPT","features":[463]},{"name":"ADS_UF_SERVER_TRUST_ACCOUNT","features":[463]},{"name":"ADS_UF_SMARTCARD_REQUIRED","features":[463]},{"name":"ADS_UF_TEMP_DUPLICATE_ACCOUNT","features":[463]},{"name":"ADS_UF_TRUSTED_FOR_DELEGATION","features":[463]},{"name":"ADS_UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[463]},{"name":"ADS_UF_USE_DES_KEY_ONLY","features":[463]},{"name":"ADS_UF_WORKSTATION_TRUST_ACCOUNT","features":[463]},{"name":"ADS_USER_FLAG_ENUM","features":[463]},{"name":"ADS_USE_DELEGATION","features":[463]},{"name":"ADS_USE_ENCRYPTION","features":[463]},{"name":"ADS_USE_SEALING","features":[463]},{"name":"ADS_USE_SIGNING","features":[463]},{"name":"ADS_USE_SSL","features":[463]},{"name":"ADS_VLV","features":[463]},{"name":"ADSystemInfo","features":[463]},{"name":"ADsBuildEnumerator","features":[463,354,413]},{"name":"ADsBuildVarArrayInt","features":[463]},{"name":"ADsBuildVarArrayStr","features":[463]},{"name":"ADsDecodeBinaryData","features":[463]},{"name":"ADsEncodeBinaryData","features":[463]},{"name":"ADsEnumerateNext","features":[463,413]},{"name":"ADsFreeEnumerator","features":[463,413]},{"name":"ADsGetLastError","features":[463]},{"name":"ADsGetObject","features":[463]},{"name":"ADsOpenObject","features":[463]},{"name":"ADsPropCheckIfWritable","features":[303,463]},{"name":"ADsPropCreateNotifyObj","features":[303,463,354]},{"name":"ADsPropGetInitInfo","features":[303,463]},{"name":"ADsPropSendErrorMessage","features":[303,463]},{"name":"ADsPropSetHwnd","features":[303,463]},{"name":"ADsPropSetHwndWithTitle","features":[303,463]},{"name":"ADsPropShowErrorDialog","features":[303,463]},{"name":"ADsSecurityUtility","features":[463]},{"name":"ADsSetLastError","features":[463]},{"name":"AccessControlEntry","features":[463]},{"name":"AccessControlList","features":[463]},{"name":"AdsFreeAdsValues","features":[303,463]},{"name":"AdsTypeToPropVariant","features":[303,463]},{"name":"AllocADsMem","features":[463]},{"name":"AllocADsStr","features":[463]},{"name":"BackLink","features":[463]},{"name":"BinarySDToSecurityDescriptor","features":[463,306]},{"name":"CFSTR_DSDISPLAYSPECOPTIONS","features":[463]},{"name":"CFSTR_DSOBJECTNAMES","features":[463]},{"name":"CFSTR_DSOP_DS_SELECTION_LIST","features":[463]},{"name":"CFSTR_DSPROPERTYPAGEINFO","features":[463]},{"name":"CFSTR_DSQUERYPARAMS","features":[463]},{"name":"CFSTR_DSQUERYSCOPE","features":[463]},{"name":"CFSTR_DS_DISPLAY_SPEC_OPTIONS","features":[463]},{"name":"CLSID_CommonQuery","features":[463]},{"name":"CLSID_DsAdminCreateObj","features":[463]},{"name":"CLSID_DsDisplaySpecifier","features":[463]},{"name":"CLSID_DsDomainTreeBrowser","features":[463]},{"name":"CLSID_DsFindAdvanced","features":[463]},{"name":"CLSID_DsFindComputer","features":[463]},{"name":"CLSID_DsFindContainer","features":[463]},{"name":"CLSID_DsFindDomainController","features":[463]},{"name":"CLSID_DsFindFrsMembers","features":[463]},{"name":"CLSID_DsFindObjects","features":[463]},{"name":"CLSID_DsFindPeople","features":[463]},{"name":"CLSID_DsFindPrinter","features":[463]},{"name":"CLSID_DsFindVolume","features":[463]},{"name":"CLSID_DsFindWriteableDomainController","features":[463]},{"name":"CLSID_DsFolderProperties","features":[463]},{"name":"CLSID_DsObjectPicker","features":[463]},{"name":"CLSID_DsPropertyPages","features":[463]},{"name":"CLSID_DsQuery","features":[463]},{"name":"CLSID_MicrosoftDS","features":[463]},{"name":"CQFF_ISOPTIONAL","features":[463]},{"name":"CQFF_NOGLOBALPAGES","features":[463]},{"name":"CQFORM","features":[463,365]},{"name":"CQPAGE","features":[303,463,365]},{"name":"CQPM_CLEARFORM","features":[463]},{"name":"CQPM_ENABLE","features":[463]},{"name":"CQPM_GETPARAMETERS","features":[463]},{"name":"CQPM_HANDLERSPECIFIC","features":[463]},{"name":"CQPM_HELP","features":[463]},{"name":"CQPM_INITIALIZE","features":[463]},{"name":"CQPM_PERSIST","features":[463]},{"name":"CQPM_RELEASE","features":[463]},{"name":"CQPM_SETDEFAULTPARAMETERS","features":[463]},{"name":"CaseIgnoreList","features":[463]},{"name":"DBDTF_RETURNEXTERNAL","features":[463]},{"name":"DBDTF_RETURNFQDN","features":[463]},{"name":"DBDTF_RETURNINBOUND","features":[463]},{"name":"DBDTF_RETURNINOUTBOUND","features":[463]},{"name":"DBDTF_RETURNMIXEDDOMAINS","features":[463]},{"name":"DNWithBinary","features":[463]},{"name":"DNWithString","features":[463]},{"name":"DOMAINDESC","features":[303,463]},{"name":"DOMAIN_CONTROLLER_INFOA","features":[463]},{"name":"DOMAIN_CONTROLLER_INFOW","features":[463]},{"name":"DOMAIN_TREE","features":[303,463]},{"name":"DSA_NEWOBJ_CTX_CLEANUP","features":[463]},{"name":"DSA_NEWOBJ_CTX_COMMIT","features":[463]},{"name":"DSA_NEWOBJ_CTX_POSTCOMMIT","features":[463]},{"name":"DSA_NEWOBJ_CTX_PRECOMMIT","features":[463]},{"name":"DSA_NEWOBJ_DISPINFO","features":[463,365]},{"name":"DSA_NOTIFY_DEL","features":[463]},{"name":"DSA_NOTIFY_FLAG_ADDITIONAL_DATA","features":[463]},{"name":"DSA_NOTIFY_FLAG_FORCE_ADDITIONAL_DATA","features":[463]},{"name":"DSA_NOTIFY_MOV","features":[463]},{"name":"DSA_NOTIFY_PROP","features":[463]},{"name":"DSA_NOTIFY_REN","features":[463]},{"name":"DSBF_DISPLAYNAME","features":[463]},{"name":"DSBF_ICONLOCATION","features":[463]},{"name":"DSBF_STATE","features":[463]},{"name":"DSBID_BANNER","features":[463]},{"name":"DSBID_CONTAINERLIST","features":[463]},{"name":"DSBITEMA","features":[463]},{"name":"DSBITEMW","features":[463]},{"name":"DSBI_CHECKBOXES","features":[463]},{"name":"DSBI_DONTSIGNSEAL","features":[463]},{"name":"DSBI_ENTIREDIRECTORY","features":[463]},{"name":"DSBI_EXPANDONOPEN","features":[463]},{"name":"DSBI_HASCREDENTIALS","features":[463]},{"name":"DSBI_IGNORETREATASLEAF","features":[463]},{"name":"DSBI_INCLUDEHIDDEN","features":[463]},{"name":"DSBI_NOBUTTONS","features":[463]},{"name":"DSBI_NOLINES","features":[463]},{"name":"DSBI_NOLINESATROOT","features":[463]},{"name":"DSBI_NOROOT","features":[463]},{"name":"DSBI_RETURNOBJECTCLASS","features":[463]},{"name":"DSBI_RETURN_FORMAT","features":[463]},{"name":"DSBI_SIMPLEAUTHENTICATE","features":[463]},{"name":"DSBM_CHANGEIMAGESTATE","features":[463]},{"name":"DSBM_CONTEXTMENU","features":[463]},{"name":"DSBM_HELP","features":[463]},{"name":"DSBM_QUERYINSERT","features":[463]},{"name":"DSBM_QUERYINSERTA","features":[463]},{"name":"DSBM_QUERYINSERTW","features":[463]},{"name":"DSBROWSEINFOA","features":[303,463,464]},{"name":"DSBROWSEINFOW","features":[303,463,464]},{"name":"DSBS_CHECKED","features":[463]},{"name":"DSBS_HIDDEN","features":[463]},{"name":"DSBS_ROOT","features":[463]},{"name":"DSB_MAX_DISPLAYNAME_CHARS","features":[463]},{"name":"DSCCIF_HASWIZARDDIALOG","features":[463]},{"name":"DSCCIF_HASWIZARDPRIMARYPAGE","features":[463]},{"name":"DSCLASSCREATIONINFO","features":[463]},{"name":"DSCOLUMN","features":[463]},{"name":"DSDISPLAYSPECOPTIONS","features":[463]},{"name":"DSDSOF_DONTSIGNSEAL","features":[463]},{"name":"DSDSOF_DSAVAILABLE","features":[463]},{"name":"DSDSOF_HASUSERANDSERVERINFO","features":[463]},{"name":"DSDSOF_SIMPLEAUTHENTICATE","features":[463]},{"name":"DSECAF_NOTLISTED","features":[463]},{"name":"DSGIF_DEFAULTISCONTAINER","features":[463]},{"name":"DSGIF_GETDEFAULTICON","features":[463]},{"name":"DSGIF_ISDISABLED","features":[463]},{"name":"DSGIF_ISMASK","features":[463]},{"name":"DSGIF_ISNORMAL","features":[463]},{"name":"DSGIF_ISOPEN","features":[463]},{"name":"DSICCF_IGNORETREATASLEAF","features":[463]},{"name":"DSOBJECT","features":[463]},{"name":"DSOBJECTNAMES","features":[463]},{"name":"DSOBJECT_ISCONTAINER","features":[463]},{"name":"DSOBJECT_READONLYPAGES","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_APP_PACKAGES","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_WELLKNOWN_SIDS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_ANONYMOUS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_AUTHENTICATED_USER","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_BATCH","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_COMPUTERS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_GROUP","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_OWNER","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_DIALUP","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_EXCLUDE_BUILTIN_GROUPS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_GLOBAL_GROUPS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_IIS_APP_POOL","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERACTIVE","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERNET_USER","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_ACCOUNTS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_GROUPS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_LOGON","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_SERVICE","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK_SERVICE","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_OWNER_RIGHTS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_REMOTE_LOGON","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICE","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICES","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_SYSTEM","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_TERMINAL_SERVER","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_THIS_ORG_CERT","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_USERS","features":[463]},{"name":"DSOP_DOWNLEVEL_FILTER_WORLD","features":[463]},{"name":"DSOP_FILTER_BUILTIN_GROUPS","features":[463]},{"name":"DSOP_FILTER_COMPUTERS","features":[463]},{"name":"DSOP_FILTER_CONTACTS","features":[463]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_DL","features":[463]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_SE","features":[463]},{"name":"DSOP_FILTER_FLAGS","features":[463]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_DL","features":[463]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_SE","features":[463]},{"name":"DSOP_FILTER_INCLUDE_ADVANCED_VIEW","features":[463]},{"name":"DSOP_FILTER_PASSWORDSETTINGS_OBJECTS","features":[463]},{"name":"DSOP_FILTER_SERVICE_ACCOUNTS","features":[463]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_DL","features":[463]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_SE","features":[463]},{"name":"DSOP_FILTER_USERS","features":[463]},{"name":"DSOP_FILTER_WELL_KNOWN_PRINCIPALS","features":[463]},{"name":"DSOP_FLAG_MULTISELECT","features":[463]},{"name":"DSOP_FLAG_SKIP_TARGET_COMPUTER_DC_CHECK","features":[463]},{"name":"DSOP_INIT_INFO","features":[463]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_COMPUTERS","features":[463]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_CONTACTS","features":[463]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_GROUPS","features":[463]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_PASSWORDSETTINGS_OBJECTS","features":[463]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_SERVICE_ACCOUNTS","features":[463]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_USERS","features":[463]},{"name":"DSOP_SCOPE_FLAG_STARTING_SCOPE","features":[463]},{"name":"DSOP_SCOPE_FLAG_WANT_DOWNLEVEL_BUILTIN_PATH","features":[463]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_GC","features":[463]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_LDAP","features":[463]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_WINNT","features":[463]},{"name":"DSOP_SCOPE_FLAG_WANT_SID_PATH","features":[463]},{"name":"DSOP_SCOPE_INIT_INFO","features":[463]},{"name":"DSOP_SCOPE_TYPE_DOWNLEVEL_JOINED_DOMAIN","features":[463]},{"name":"DSOP_SCOPE_TYPE_ENTERPRISE_DOMAIN","features":[463]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_DOWNLEVEL_DOMAIN","features":[463]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_UPLEVEL_DOMAIN","features":[463]},{"name":"DSOP_SCOPE_TYPE_GLOBAL_CATALOG","features":[463]},{"name":"DSOP_SCOPE_TYPE_TARGET_COMPUTER","features":[463]},{"name":"DSOP_SCOPE_TYPE_UPLEVEL_JOINED_DOMAIN","features":[463]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_DOWNLEVEL_SCOPE","features":[463]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_UPLEVEL_SCOPE","features":[463]},{"name":"DSOP_SCOPE_TYPE_WORKGROUP","features":[463]},{"name":"DSOP_UPLEVEL_FILTER_FLAGS","features":[463]},{"name":"DSPROPERTYPAGEINFO","features":[463]},{"name":"DSPROP_ATTRCHANGED_MSG","features":[463]},{"name":"DSPROVIDER_ADVANCED","features":[463]},{"name":"DSPROVIDER_AD_LDS","features":[463]},{"name":"DSPROVIDER_UNUSED_0","features":[463]},{"name":"DSPROVIDER_UNUSED_1","features":[463]},{"name":"DSPROVIDER_UNUSED_2","features":[463]},{"name":"DSPROVIDER_UNUSED_3","features":[463]},{"name":"DSQPF_ENABLEADMINFEATURES","features":[463]},{"name":"DSQPF_ENABLEADVANCEDFEATURES","features":[463]},{"name":"DSQPF_HASCREDENTIALS","features":[463]},{"name":"DSQPF_NOCHOOSECOLUMNS","features":[463]},{"name":"DSQPF_NOSAVE","features":[463]},{"name":"DSQPF_SAVELOCATION","features":[463]},{"name":"DSQPF_SHOWHIDDENOBJECTS","features":[463]},{"name":"DSQPM_GETCLASSLIST","features":[463]},{"name":"DSQPM_HELPTOPICS","features":[463]},{"name":"DSQUERYCLASSLIST","features":[463]},{"name":"DSQUERYINITPARAMS","features":[463]},{"name":"DSQUERYPARAMS","features":[303,463]},{"name":"DSROLE_MACHINE_ROLE","features":[463]},{"name":"DSROLE_OPERATION_STATE","features":[463]},{"name":"DSROLE_OPERATION_STATE_INFO","features":[463]},{"name":"DSROLE_PRIMARY_DOMAIN_GUID_PRESENT","features":[463]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_BASIC","features":[463]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_LEVEL","features":[463]},{"name":"DSROLE_PRIMARY_DS_MIXED_MODE","features":[463]},{"name":"DSROLE_PRIMARY_DS_READONLY","features":[463]},{"name":"DSROLE_PRIMARY_DS_RUNNING","features":[463]},{"name":"DSROLE_SERVER_STATE","features":[463]},{"name":"DSROLE_UPGRADE_IN_PROGRESS","features":[463]},{"name":"DSROLE_UPGRADE_STATUS_INFO","features":[463]},{"name":"DSSSF_DONTSIGNSEAL","features":[463]},{"name":"DSSSF_DSAVAILABLE","features":[463]},{"name":"DSSSF_SIMPLEAUTHENTICATE","features":[463]},{"name":"DS_AVOID_SELF","features":[463]},{"name":"DS_BACKGROUND_ONLY","features":[463]},{"name":"DS_BEHAVIOR_LONGHORN","features":[463]},{"name":"DS_BEHAVIOR_WIN2000","features":[463]},{"name":"DS_BEHAVIOR_WIN2003","features":[463]},{"name":"DS_BEHAVIOR_WIN2003_WITH_MIXED_DOMAINS","features":[463]},{"name":"DS_BEHAVIOR_WIN2008","features":[463]},{"name":"DS_BEHAVIOR_WIN2008R2","features":[463]},{"name":"DS_BEHAVIOR_WIN2012","features":[463]},{"name":"DS_BEHAVIOR_WIN2012R2","features":[463]},{"name":"DS_BEHAVIOR_WIN2016","features":[463]},{"name":"DS_BEHAVIOR_WIN7","features":[463]},{"name":"DS_BEHAVIOR_WIN8","features":[463]},{"name":"DS_BEHAVIOR_WINBLUE","features":[463]},{"name":"DS_BEHAVIOR_WINTHRESHOLD","features":[463]},{"name":"DS_CANONICAL_NAME","features":[463]},{"name":"DS_CANONICAL_NAME_EX","features":[463]},{"name":"DS_CLOSEST_FLAG","features":[463]},{"name":"DS_DIRECTORY_SERVICE_10_REQUIRED","features":[463]},{"name":"DS_DIRECTORY_SERVICE_6_REQUIRED","features":[463]},{"name":"DS_DIRECTORY_SERVICE_8_REQUIRED","features":[463]},{"name":"DS_DIRECTORY_SERVICE_9_REQUIRED","features":[463]},{"name":"DS_DIRECTORY_SERVICE_PREFERRED","features":[463]},{"name":"DS_DIRECTORY_SERVICE_REQUIRED","features":[463]},{"name":"DS_DISPLAY_NAME","features":[463]},{"name":"DS_DNS_CONTROLLER_FLAG","features":[463]},{"name":"DS_DNS_DOMAIN_FLAG","features":[463]},{"name":"DS_DNS_DOMAIN_NAME","features":[463]},{"name":"DS_DNS_FOREST_FLAG","features":[463]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1A","features":[303,463]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1W","features":[303,463]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2A","features":[303,463]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2W","features":[303,463]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3A","features":[303,463]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3W","features":[303,463]},{"name":"DS_DOMAIN_DIRECT_INBOUND","features":[463]},{"name":"DS_DOMAIN_DIRECT_OUTBOUND","features":[463]},{"name":"DS_DOMAIN_IN_FOREST","features":[463]},{"name":"DS_DOMAIN_NATIVE_MODE","features":[463]},{"name":"DS_DOMAIN_PRIMARY","features":[463]},{"name":"DS_DOMAIN_TREE_ROOT","features":[463]},{"name":"DS_DOMAIN_TRUSTSA","features":[303,463]},{"name":"DS_DOMAIN_TRUSTSW","features":[303,463]},{"name":"DS_DS_10_FLAG","features":[463]},{"name":"DS_DS_8_FLAG","features":[463]},{"name":"DS_DS_9_FLAG","features":[463]},{"name":"DS_DS_FLAG","features":[463]},{"name":"DS_EXIST_ADVISORY_MODE","features":[463]},{"name":"DS_FORCE_REDISCOVERY","features":[463]},{"name":"DS_FQDN_1779_NAME","features":[463]},{"name":"DS_FULL_SECRET_DOMAIN_6_FLAG","features":[463]},{"name":"DS_GC_FLAG","features":[463]},{"name":"DS_GC_SERVER_REQUIRED","features":[463]},{"name":"DS_GFTI_UPDATE_TDO","features":[463]},{"name":"DS_GFTI_VALID_FLAGS","features":[463]},{"name":"DS_GOOD_TIMESERV_FLAG","features":[463]},{"name":"DS_GOOD_TIMESERV_PREFERRED","features":[463]},{"name":"DS_INSTANCETYPE_IS_NC_HEAD","features":[463]},{"name":"DS_INSTANCETYPE_NC_COMING","features":[463]},{"name":"DS_INSTANCETYPE_NC_GOING","features":[463]},{"name":"DS_INSTANCETYPE_NC_IS_WRITEABLE","features":[463]},{"name":"DS_IP_REQUIRED","features":[463]},{"name":"DS_IS_DNS_NAME","features":[463]},{"name":"DS_IS_FLAT_NAME","features":[463]},{"name":"DS_KCC_FLAG_ASYNC_OP","features":[463]},{"name":"DS_KCC_FLAG_DAMPED","features":[463]},{"name":"DS_KCC_TASKID","features":[463]},{"name":"DS_KCC_TASKID_UPDATE_TOPOLOGY","features":[463]},{"name":"DS_KDC_FLAG","features":[463]},{"name":"DS_KDC_REQUIRED","features":[463]},{"name":"DS_KEY_LIST_FLAG","features":[463]},{"name":"DS_KEY_LIST_SUPPORT_REQUIRED","features":[463]},{"name":"DS_LDAP_FLAG","features":[463]},{"name":"DS_LIST_ACCOUNT_OBJECT_FOR_SERVER","features":[463]},{"name":"DS_LIST_DNS_HOST_NAME_FOR_SERVER","features":[463]},{"name":"DS_LIST_DSA_OBJECT_FOR_SERVER","features":[463]},{"name":"DS_MANGLE_FOR","features":[463]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_DELETION","features":[463]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_NAME_CONFLICT","features":[463]},{"name":"DS_MANGLE_UNKNOWN","features":[463]},{"name":"DS_NAME_ERROR","features":[463]},{"name":"DS_NAME_ERROR_DOMAIN_ONLY","features":[463]},{"name":"DS_NAME_ERROR_NOT_FOUND","features":[463]},{"name":"DS_NAME_ERROR_NOT_UNIQUE","features":[463]},{"name":"DS_NAME_ERROR_NO_MAPPING","features":[463]},{"name":"DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[463]},{"name":"DS_NAME_ERROR_RESOLVING","features":[463]},{"name":"DS_NAME_ERROR_TRUST_REFERRAL","features":[463]},{"name":"DS_NAME_FLAGS","features":[463]},{"name":"DS_NAME_FLAG_EVAL_AT_DC","features":[463]},{"name":"DS_NAME_FLAG_GCVERIFY","features":[463]},{"name":"DS_NAME_FLAG_SYNTACTICAL_ONLY","features":[463]},{"name":"DS_NAME_FLAG_TRUST_REFERRAL","features":[463]},{"name":"DS_NAME_FORMAT","features":[463]},{"name":"DS_NAME_NO_ERROR","features":[463]},{"name":"DS_NAME_NO_FLAGS","features":[463]},{"name":"DS_NAME_RESULTA","features":[463]},{"name":"DS_NAME_RESULTW","features":[463]},{"name":"DS_NAME_RESULT_ITEMA","features":[463]},{"name":"DS_NAME_RESULT_ITEMW","features":[463]},{"name":"DS_NDNC_FLAG","features":[463]},{"name":"DS_NOTIFY_AFTER_SITE_RECORDS","features":[463]},{"name":"DS_NT4_ACCOUNT_NAME","features":[463]},{"name":"DS_ONLY_DO_SITE_NAME","features":[463]},{"name":"DS_ONLY_LDAP_NEEDED","features":[463]},{"name":"DS_PDC_FLAG","features":[463]},{"name":"DS_PDC_REQUIRED","features":[463]},{"name":"DS_PING_FLAGS","features":[463]},{"name":"DS_PROP_ADMIN_PREFIX","features":[463]},{"name":"DS_PROP_SHELL_PREFIX","features":[463]},{"name":"DS_REPADD_ASYNCHRONOUS_OPERATION","features":[463]},{"name":"DS_REPADD_ASYNCHRONOUS_REPLICA","features":[463]},{"name":"DS_REPADD_CRITICAL","features":[463]},{"name":"DS_REPADD_DISABLE_NOTIFICATION","features":[463]},{"name":"DS_REPADD_DISABLE_PERIODIC","features":[463]},{"name":"DS_REPADD_INITIAL","features":[463]},{"name":"DS_REPADD_INTERSITE_MESSAGING","features":[463]},{"name":"DS_REPADD_NEVER_NOTIFY","features":[463]},{"name":"DS_REPADD_NONGC_RO_REPLICA","features":[463]},{"name":"DS_REPADD_PERIODIC","features":[463]},{"name":"DS_REPADD_SELECT_SECRETS","features":[463]},{"name":"DS_REPADD_TWO_WAY","features":[463]},{"name":"DS_REPADD_USE_COMPRESSION","features":[463]},{"name":"DS_REPADD_WRITEABLE","features":[463]},{"name":"DS_REPDEL_ASYNCHRONOUS_OPERATION","features":[463]},{"name":"DS_REPDEL_IGNORE_ERRORS","features":[463]},{"name":"DS_REPDEL_INTERSITE_MESSAGING","features":[463]},{"name":"DS_REPDEL_LOCAL_ONLY","features":[463]},{"name":"DS_REPDEL_NO_SOURCE","features":[463]},{"name":"DS_REPDEL_REF_OK","features":[463]},{"name":"DS_REPDEL_WRITEABLE","features":[463]},{"name":"DS_REPL_ATTR_META_DATA","features":[303,463]},{"name":"DS_REPL_ATTR_META_DATA_2","features":[303,463]},{"name":"DS_REPL_ATTR_META_DATA_BLOB","features":[303,463]},{"name":"DS_REPL_ATTR_VALUE_META_DATA","features":[303,463]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_2","features":[303,463]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_EXT","features":[303,463]},{"name":"DS_REPL_CURSOR","features":[463]},{"name":"DS_REPL_CURSORS","features":[463]},{"name":"DS_REPL_CURSORS_2","features":[303,463]},{"name":"DS_REPL_CURSORS_3W","features":[303,463]},{"name":"DS_REPL_CURSOR_2","features":[303,463]},{"name":"DS_REPL_CURSOR_3W","features":[303,463]},{"name":"DS_REPL_CURSOR_BLOB","features":[303,463]},{"name":"DS_REPL_INFO_CURSORS_2_FOR_NC","features":[463]},{"name":"DS_REPL_INFO_CURSORS_3_FOR_NC","features":[463]},{"name":"DS_REPL_INFO_CURSORS_FOR_NC","features":[463]},{"name":"DS_REPL_INFO_FLAG_IMPROVE_LINKED_ATTRS","features":[463]},{"name":"DS_REPL_INFO_KCC_DSA_CONNECT_FAILURES","features":[463]},{"name":"DS_REPL_INFO_KCC_DSA_LINK_FAILURES","features":[463]},{"name":"DS_REPL_INFO_METADATA_2_FOR_ATTR_VALUE","features":[463]},{"name":"DS_REPL_INFO_METADATA_2_FOR_OBJ","features":[463]},{"name":"DS_REPL_INFO_METADATA_EXT_FOR_ATTR_VALUE","features":[463]},{"name":"DS_REPL_INFO_METADATA_FOR_ATTR_VALUE","features":[463]},{"name":"DS_REPL_INFO_METADATA_FOR_OBJ","features":[463]},{"name":"DS_REPL_INFO_NEIGHBORS","features":[463]},{"name":"DS_REPL_INFO_PENDING_OPS","features":[463]},{"name":"DS_REPL_INFO_TYPE","features":[463]},{"name":"DS_REPL_INFO_TYPE_MAX","features":[463]},{"name":"DS_REPL_KCC_DSA_FAILURESW","features":[303,463]},{"name":"DS_REPL_KCC_DSA_FAILUREW","features":[303,463]},{"name":"DS_REPL_KCC_DSA_FAILUREW_BLOB","features":[303,463]},{"name":"DS_REPL_NBR_COMPRESS_CHANGES","features":[463]},{"name":"DS_REPL_NBR_DISABLE_SCHEDULED_SYNC","features":[463]},{"name":"DS_REPL_NBR_DO_SCHEDULED_SYNCS","features":[463]},{"name":"DS_REPL_NBR_FULL_SYNC_IN_PROGRESS","features":[463]},{"name":"DS_REPL_NBR_FULL_SYNC_NEXT_PACKET","features":[463]},{"name":"DS_REPL_NBR_GCSPN","features":[463]},{"name":"DS_REPL_NBR_IGNORE_CHANGE_NOTIFICATIONS","features":[463]},{"name":"DS_REPL_NBR_NEVER_SYNCED","features":[463]},{"name":"DS_REPL_NBR_NONGC_RO_REPLICA","features":[463]},{"name":"DS_REPL_NBR_NO_CHANGE_NOTIFICATIONS","features":[463]},{"name":"DS_REPL_NBR_PARTIAL_ATTRIBUTE_SET","features":[463]},{"name":"DS_REPL_NBR_PREEMPTED","features":[463]},{"name":"DS_REPL_NBR_RETURN_OBJECT_PARENTS","features":[463]},{"name":"DS_REPL_NBR_SELECT_SECRETS","features":[463]},{"name":"DS_REPL_NBR_SYNC_ON_STARTUP","features":[463]},{"name":"DS_REPL_NBR_TWO_WAY_SYNC","features":[463]},{"name":"DS_REPL_NBR_USE_ASYNC_INTERSITE_TRANSPORT","features":[463]},{"name":"DS_REPL_NBR_WRITEABLE","features":[463]},{"name":"DS_REPL_NEIGHBORSW","features":[303,463]},{"name":"DS_REPL_NEIGHBORW","features":[303,463]},{"name":"DS_REPL_NEIGHBORW_BLOB","features":[303,463]},{"name":"DS_REPL_OBJ_META_DATA","features":[303,463]},{"name":"DS_REPL_OBJ_META_DATA_2","features":[303,463]},{"name":"DS_REPL_OPW","features":[303,463]},{"name":"DS_REPL_OPW_BLOB","features":[303,463]},{"name":"DS_REPL_OP_TYPE","features":[463]},{"name":"DS_REPL_OP_TYPE_ADD","features":[463]},{"name":"DS_REPL_OP_TYPE_DELETE","features":[463]},{"name":"DS_REPL_OP_TYPE_MODIFY","features":[463]},{"name":"DS_REPL_OP_TYPE_SYNC","features":[463]},{"name":"DS_REPL_OP_TYPE_UPDATE_REFS","features":[463]},{"name":"DS_REPL_PENDING_OPSW","features":[303,463]},{"name":"DS_REPL_QUEUE_STATISTICSW","features":[303,463]},{"name":"DS_REPL_VALUE_META_DATA","features":[303,463]},{"name":"DS_REPL_VALUE_META_DATA_2","features":[303,463]},{"name":"DS_REPL_VALUE_META_DATA_BLOB","features":[303,463]},{"name":"DS_REPL_VALUE_META_DATA_BLOB_EXT","features":[303,463]},{"name":"DS_REPL_VALUE_META_DATA_EXT","features":[303,463]},{"name":"DS_REPMOD_ASYNCHRONOUS_OPERATION","features":[463]},{"name":"DS_REPMOD_UPDATE_ADDRESS","features":[463]},{"name":"DS_REPMOD_UPDATE_FLAGS","features":[463]},{"name":"DS_REPMOD_UPDATE_INSTANCE","features":[463]},{"name":"DS_REPMOD_UPDATE_RESULT","features":[463]},{"name":"DS_REPMOD_UPDATE_SCHEDULE","features":[463]},{"name":"DS_REPMOD_UPDATE_TRANSPORT","features":[463]},{"name":"DS_REPMOD_WRITEABLE","features":[463]},{"name":"DS_REPSYNCALL_ABORT_IF_SERVER_UNAVAILABLE","features":[463]},{"name":"DS_REPSYNCALL_CROSS_SITE_BOUNDARIES","features":[463]},{"name":"DS_REPSYNCALL_DO_NOT_SYNC","features":[463]},{"name":"DS_REPSYNCALL_ERRINFOA","features":[463]},{"name":"DS_REPSYNCALL_ERRINFOW","features":[463]},{"name":"DS_REPSYNCALL_ERROR","features":[463]},{"name":"DS_REPSYNCALL_EVENT","features":[463]},{"name":"DS_REPSYNCALL_EVENT_ERROR","features":[463]},{"name":"DS_REPSYNCALL_EVENT_FINISHED","features":[463]},{"name":"DS_REPSYNCALL_EVENT_SYNC_COMPLETED","features":[463]},{"name":"DS_REPSYNCALL_EVENT_SYNC_STARTED","features":[463]},{"name":"DS_REPSYNCALL_ID_SERVERS_BY_DN","features":[463]},{"name":"DS_REPSYNCALL_NO_OPTIONS","features":[463]},{"name":"DS_REPSYNCALL_PUSH_CHANGES_OUTWARD","features":[463]},{"name":"DS_REPSYNCALL_SERVER_UNREACHABLE","features":[463]},{"name":"DS_REPSYNCALL_SKIP_INITIAL_CHECK","features":[463]},{"name":"DS_REPSYNCALL_SYNCA","features":[463]},{"name":"DS_REPSYNCALL_SYNCW","features":[463]},{"name":"DS_REPSYNCALL_SYNC_ADJACENT_SERVERS_ONLY","features":[463]},{"name":"DS_REPSYNCALL_UPDATEA","features":[463]},{"name":"DS_REPSYNCALL_UPDATEW","features":[463]},{"name":"DS_REPSYNCALL_WIN32_ERROR_CONTACTING_SERVER","features":[463]},{"name":"DS_REPSYNCALL_WIN32_ERROR_REPLICATING","features":[463]},{"name":"DS_REPSYNC_ABANDONED","features":[463]},{"name":"DS_REPSYNC_ADD_REFERENCE","features":[463]},{"name":"DS_REPSYNC_ASYNCHRONOUS_OPERATION","features":[463]},{"name":"DS_REPSYNC_ASYNCHRONOUS_REPLICA","features":[463]},{"name":"DS_REPSYNC_CRITICAL","features":[463]},{"name":"DS_REPSYNC_FORCE","features":[463]},{"name":"DS_REPSYNC_FULL","features":[463]},{"name":"DS_REPSYNC_FULL_IN_PROGRESS","features":[463]},{"name":"DS_REPSYNC_INITIAL","features":[463]},{"name":"DS_REPSYNC_INITIAL_IN_PROGRESS","features":[463]},{"name":"DS_REPSYNC_INTERSITE_MESSAGING","features":[463]},{"name":"DS_REPSYNC_NEVER_COMPLETED","features":[463]},{"name":"DS_REPSYNC_NEVER_NOTIFY","features":[463]},{"name":"DS_REPSYNC_NONGC_RO_REPLICA","features":[463]},{"name":"DS_REPSYNC_NOTIFICATION","features":[463]},{"name":"DS_REPSYNC_NO_DISCARD","features":[463]},{"name":"DS_REPSYNC_PARTIAL_ATTRIBUTE_SET","features":[463]},{"name":"DS_REPSYNC_PERIODIC","features":[463]},{"name":"DS_REPSYNC_PREEMPTED","features":[463]},{"name":"DS_REPSYNC_REQUEUE","features":[463]},{"name":"DS_REPSYNC_SELECT_SECRETS","features":[463]},{"name":"DS_REPSYNC_TWO_WAY","features":[463]},{"name":"DS_REPSYNC_URGENT","features":[463]},{"name":"DS_REPSYNC_USE_COMPRESSION","features":[463]},{"name":"DS_REPSYNC_WRITEABLE","features":[463]},{"name":"DS_REPUPD_ADD_REFERENCE","features":[463]},{"name":"DS_REPUPD_ASYNCHRONOUS_OPERATION","features":[463]},{"name":"DS_REPUPD_DELETE_REFERENCE","features":[463]},{"name":"DS_REPUPD_REFERENCE_GCSPN","features":[463]},{"name":"DS_REPUPD_WRITEABLE","features":[463]},{"name":"DS_RETURN_DNS_NAME","features":[463]},{"name":"DS_RETURN_FLAT_NAME","features":[463]},{"name":"DS_ROLE_DOMAIN_OWNER","features":[463]},{"name":"DS_ROLE_INFRASTRUCTURE_OWNER","features":[463]},{"name":"DS_ROLE_PDC_OWNER","features":[463]},{"name":"DS_ROLE_RID_OWNER","features":[463]},{"name":"DS_ROLE_SCHEMA_OWNER","features":[463]},{"name":"DS_SCHEMA_GUID_ATTR","features":[463]},{"name":"DS_SCHEMA_GUID_ATTR_SET","features":[463]},{"name":"DS_SCHEMA_GUID_CLASS","features":[463]},{"name":"DS_SCHEMA_GUID_CONTROL_RIGHT","features":[463]},{"name":"DS_SCHEMA_GUID_MAPA","features":[463]},{"name":"DS_SCHEMA_GUID_MAPW","features":[463]},{"name":"DS_SCHEMA_GUID_NOT_FOUND","features":[463]},{"name":"DS_SELECTION","features":[463]},{"name":"DS_SELECTION_LIST","features":[463]},{"name":"DS_SELECT_SECRET_DOMAIN_6_FLAG","features":[463]},{"name":"DS_SERVICE_PRINCIPAL_NAME","features":[463]},{"name":"DS_SID_OR_SID_HISTORY_NAME","features":[463]},{"name":"DS_SITE_COST_INFO","features":[463]},{"name":"DS_SPN_ADD_SPN_OP","features":[463]},{"name":"DS_SPN_DELETE_SPN_OP","features":[463]},{"name":"DS_SPN_DNS_HOST","features":[463]},{"name":"DS_SPN_DN_HOST","features":[463]},{"name":"DS_SPN_DOMAIN","features":[463]},{"name":"DS_SPN_NAME_TYPE","features":[463]},{"name":"DS_SPN_NB_DOMAIN","features":[463]},{"name":"DS_SPN_NB_HOST","features":[463]},{"name":"DS_SPN_REPLACE_SPN_OP","features":[463]},{"name":"DS_SPN_SERVICE","features":[463]},{"name":"DS_SPN_WRITE_OP","features":[463]},{"name":"DS_SYNCED_EVENT_NAME","features":[463]},{"name":"DS_SYNCED_EVENT_NAME_W","features":[463]},{"name":"DS_TIMESERV_FLAG","features":[463]},{"name":"DS_TIMESERV_REQUIRED","features":[463]},{"name":"DS_TRY_NEXTCLOSEST_SITE","features":[463]},{"name":"DS_UNIQUE_ID_NAME","features":[463]},{"name":"DS_UNKNOWN_NAME","features":[463]},{"name":"DS_USER_PRINCIPAL_NAME","features":[463]},{"name":"DS_WEB_SERVICE_REQUIRED","features":[463]},{"name":"DS_WRITABLE_FLAG","features":[463]},{"name":"DS_WRITABLE_REQUIRED","features":[463]},{"name":"DS_WS_FLAG","features":[463]},{"name":"DsAddSidHistoryA","features":[303,463]},{"name":"DsAddSidHistoryW","features":[303,463]},{"name":"DsAddressToSiteNamesA","features":[463,316]},{"name":"DsAddressToSiteNamesExA","features":[463,316]},{"name":"DsAddressToSiteNamesExW","features":[463,316]},{"name":"DsAddressToSiteNamesW","features":[463,316]},{"name":"DsBindA","features":[303,463]},{"name":"DsBindByInstanceA","features":[303,463]},{"name":"DsBindByInstanceW","features":[303,463]},{"name":"DsBindToISTGA","features":[303,463]},{"name":"DsBindToISTGW","features":[303,463]},{"name":"DsBindW","features":[303,463]},{"name":"DsBindWithCredA","features":[303,463]},{"name":"DsBindWithCredW","features":[303,463]},{"name":"DsBindWithSpnA","features":[303,463]},{"name":"DsBindWithSpnExA","features":[303,463]},{"name":"DsBindWithSpnExW","features":[303,463]},{"name":"DsBindWithSpnW","features":[303,463]},{"name":"DsBindingSetTimeout","features":[303,463]},{"name":"DsBrowseForContainerA","features":[303,463,464]},{"name":"DsBrowseForContainerW","features":[303,463,464]},{"name":"DsClientMakeSpnForTargetServerA","features":[463]},{"name":"DsClientMakeSpnForTargetServerW","features":[463]},{"name":"DsCrackNamesA","features":[303,463]},{"name":"DsCrackNamesW","features":[303,463]},{"name":"DsCrackSpn2A","features":[463]},{"name":"DsCrackSpn2W","features":[463]},{"name":"DsCrackSpn3W","features":[463]},{"name":"DsCrackSpn4W","features":[463]},{"name":"DsCrackSpnA","features":[463]},{"name":"DsCrackSpnW","features":[463]},{"name":"DsCrackUnquotedMangledRdnA","features":[303,463]},{"name":"DsCrackUnquotedMangledRdnW","features":[303,463]},{"name":"DsDeregisterDnsHostRecordsA","features":[463]},{"name":"DsDeregisterDnsHostRecordsW","features":[463]},{"name":"DsEnumerateDomainTrustsA","features":[303,463]},{"name":"DsEnumerateDomainTrustsW","features":[303,463]},{"name":"DsFreeDomainControllerInfoA","features":[463]},{"name":"DsFreeDomainControllerInfoW","features":[463]},{"name":"DsFreeNameResultA","features":[463]},{"name":"DsFreeNameResultW","features":[463]},{"name":"DsFreePasswordCredentials","features":[463]},{"name":"DsFreeSchemaGuidMapA","features":[463]},{"name":"DsFreeSchemaGuidMapW","features":[463]},{"name":"DsFreeSpnArrayA","features":[463]},{"name":"DsFreeSpnArrayW","features":[463]},{"name":"DsGetDcCloseW","features":[303,463]},{"name":"DsGetDcNameA","features":[463]},{"name":"DsGetDcNameW","features":[463]},{"name":"DsGetDcNextA","features":[303,463,316]},{"name":"DsGetDcNextW","features":[303,463,316]},{"name":"DsGetDcOpenA","features":[303,463]},{"name":"DsGetDcOpenW","features":[303,463]},{"name":"DsGetDcSiteCoverageA","features":[463]},{"name":"DsGetDcSiteCoverageW","features":[463]},{"name":"DsGetDomainControllerInfoA","features":[303,463]},{"name":"DsGetDomainControllerInfoW","features":[303,463]},{"name":"DsGetForestTrustInformationW","features":[303,463,324]},{"name":"DsGetFriendlyClassName","features":[463]},{"name":"DsGetIcon","features":[463,365]},{"name":"DsGetRdnW","features":[463]},{"name":"DsGetSiteNameA","features":[463]},{"name":"DsGetSiteNameW","features":[463]},{"name":"DsGetSpnA","features":[463]},{"name":"DsGetSpnW","features":[463]},{"name":"DsInheritSecurityIdentityA","features":[303,463]},{"name":"DsInheritSecurityIdentityW","features":[303,463]},{"name":"DsIsMangledDnA","features":[303,463]},{"name":"DsIsMangledDnW","features":[303,463]},{"name":"DsIsMangledRdnValueA","features":[303,463]},{"name":"DsIsMangledRdnValueW","features":[303,463]},{"name":"DsListDomainsInSiteA","features":[303,463]},{"name":"DsListDomainsInSiteW","features":[303,463]},{"name":"DsListInfoForServerA","features":[303,463]},{"name":"DsListInfoForServerW","features":[303,463]},{"name":"DsListRolesA","features":[303,463]},{"name":"DsListRolesW","features":[303,463]},{"name":"DsListServersForDomainInSiteA","features":[303,463]},{"name":"DsListServersForDomainInSiteW","features":[303,463]},{"name":"DsListServersInSiteA","features":[303,463]},{"name":"DsListServersInSiteW","features":[303,463]},{"name":"DsListSitesA","features":[303,463]},{"name":"DsListSitesW","features":[303,463]},{"name":"DsMakePasswordCredentialsA","features":[463]},{"name":"DsMakePasswordCredentialsW","features":[463]},{"name":"DsMakeSpnA","features":[463]},{"name":"DsMakeSpnW","features":[463]},{"name":"DsMapSchemaGuidsA","features":[303,463]},{"name":"DsMapSchemaGuidsW","features":[303,463]},{"name":"DsMergeForestTrustInformationW","features":[303,463,324]},{"name":"DsQuerySitesByCostA","features":[303,463]},{"name":"DsQuerySitesByCostW","features":[303,463]},{"name":"DsQuerySitesFree","features":[463]},{"name":"DsQuoteRdnValueA","features":[463]},{"name":"DsQuoteRdnValueW","features":[463]},{"name":"DsRemoveDsDomainA","features":[303,463]},{"name":"DsRemoveDsDomainW","features":[303,463]},{"name":"DsRemoveDsServerA","features":[303,463]},{"name":"DsRemoveDsServerW","features":[303,463]},{"name":"DsReplicaAddA","features":[303,463]},{"name":"DsReplicaAddW","features":[303,463]},{"name":"DsReplicaConsistencyCheck","features":[303,463]},{"name":"DsReplicaDelA","features":[303,463]},{"name":"DsReplicaDelW","features":[303,463]},{"name":"DsReplicaFreeInfo","features":[463]},{"name":"DsReplicaGetInfo2W","features":[303,463]},{"name":"DsReplicaGetInfoW","features":[303,463]},{"name":"DsReplicaModifyA","features":[303,463]},{"name":"DsReplicaModifyW","features":[303,463]},{"name":"DsReplicaSyncA","features":[303,463]},{"name":"DsReplicaSyncAllA","features":[303,463]},{"name":"DsReplicaSyncAllW","features":[303,463]},{"name":"DsReplicaSyncW","features":[303,463]},{"name":"DsReplicaUpdateRefsA","features":[303,463]},{"name":"DsReplicaUpdateRefsW","features":[303,463]},{"name":"DsReplicaVerifyObjectsA","features":[303,463]},{"name":"DsReplicaVerifyObjectsW","features":[303,463]},{"name":"DsRoleFreeMemory","features":[463]},{"name":"DsRoleGetPrimaryDomainInformation","features":[463]},{"name":"DsRoleOperationActive","features":[463]},{"name":"DsRoleOperationIdle","features":[463]},{"name":"DsRoleOperationNeedReboot","features":[463]},{"name":"DsRoleOperationState","features":[463]},{"name":"DsRolePrimaryDomainInfoBasic","features":[463]},{"name":"DsRoleServerBackup","features":[463]},{"name":"DsRoleServerPrimary","features":[463]},{"name":"DsRoleServerUnknown","features":[463]},{"name":"DsRoleUpgradeStatus","features":[463]},{"name":"DsRole_RoleBackupDomainController","features":[463]},{"name":"DsRole_RoleMemberServer","features":[463]},{"name":"DsRole_RoleMemberWorkstation","features":[463]},{"name":"DsRole_RolePrimaryDomainController","features":[463]},{"name":"DsRole_RoleStandaloneServer","features":[463]},{"name":"DsRole_RoleStandaloneWorkstation","features":[463]},{"name":"DsServerRegisterSpnA","features":[463]},{"name":"DsServerRegisterSpnW","features":[463]},{"name":"DsUnBindA","features":[303,463]},{"name":"DsUnBindW","features":[303,463]},{"name":"DsUnquoteRdnValueA","features":[463]},{"name":"DsUnquoteRdnValueW","features":[463]},{"name":"DsValidateSubnetNameA","features":[463]},{"name":"DsValidateSubnetNameW","features":[463]},{"name":"DsWriteAccountSpnA","features":[303,463]},{"name":"DsWriteAccountSpnW","features":[303,463]},{"name":"Email","features":[463]},{"name":"FACILITY_BACKUP","features":[463]},{"name":"FACILITY_NTDSB","features":[463]},{"name":"FACILITY_SYSTEM","features":[463]},{"name":"FLAG_DISABLABLE_OPTIONAL_FEATURE","features":[463]},{"name":"FLAG_DOMAIN_OPTIONAL_FEATURE","features":[463]},{"name":"FLAG_FOREST_OPTIONAL_FEATURE","features":[463]},{"name":"FLAG_SERVER_OPTIONAL_FEATURE","features":[463]},{"name":"FRSCONN_MAX_PRIORITY","features":[463]},{"name":"FRSCONN_PRIORITY_MASK","features":[463]},{"name":"FaxNumber","features":[463]},{"name":"FreeADsMem","features":[303,463]},{"name":"FreeADsStr","features":[303,463]},{"name":"GUID_COMPUTRS_CONTAINER_A","features":[463]},{"name":"GUID_COMPUTRS_CONTAINER_W","features":[463]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_A","features":[463]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_W","features":[463]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_A","features":[463]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_W","features":[463]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_A","features":[463]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_W","features":[463]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_A","features":[463]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_W","features":[463]},{"name":"GUID_KEYS_CONTAINER_W","features":[463]},{"name":"GUID_LOSTANDFOUND_CONTAINER_A","features":[463]},{"name":"GUID_LOSTANDFOUND_CONTAINER_W","features":[463]},{"name":"GUID_MANAGED_SERVICE_ACCOUNTS_CONTAINER_W","features":[463]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_A","features":[463]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_W","features":[463]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_A","features":[463]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_W","features":[463]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_A","features":[463]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_W","features":[463]},{"name":"GUID_PROGRAM_DATA_CONTAINER_A","features":[463]},{"name":"GUID_PROGRAM_DATA_CONTAINER_W","features":[463]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_A","features":[463]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_W","features":[463]},{"name":"GUID_SYSTEMS_CONTAINER_A","features":[463]},{"name":"GUID_SYSTEMS_CONTAINER_W","features":[463]},{"name":"GUID_USERS_CONTAINER_A","features":[463]},{"name":"GUID_USERS_CONTAINER_W","features":[463]},{"name":"Hold","features":[463]},{"name":"IADs","features":[463,354]},{"name":"IADsADSystemInfo","features":[463,354]},{"name":"IADsAccessControlEntry","features":[463,354]},{"name":"IADsAccessControlList","features":[463,354]},{"name":"IADsAcl","features":[463,354]},{"name":"IADsAggregatee","features":[463]},{"name":"IADsAggregator","features":[463]},{"name":"IADsBackLink","features":[463,354]},{"name":"IADsCaseIgnoreList","features":[463,354]},{"name":"IADsClass","features":[463,354]},{"name":"IADsCollection","features":[463,354]},{"name":"IADsComputer","features":[463,354]},{"name":"IADsComputerOperations","features":[463,354]},{"name":"IADsContainer","features":[463,354]},{"name":"IADsDNWithBinary","features":[463,354]},{"name":"IADsDNWithString","features":[463,354]},{"name":"IADsDeleteOps","features":[463,354]},{"name":"IADsDomain","features":[463,354]},{"name":"IADsEmail","features":[463,354]},{"name":"IADsExtension","features":[463]},{"name":"IADsFaxNumber","features":[463,354]},{"name":"IADsFileService","features":[463,354]},{"name":"IADsFileServiceOperations","features":[463,354]},{"name":"IADsFileShare","features":[463,354]},{"name":"IADsGroup","features":[463,354]},{"name":"IADsHold","features":[463,354]},{"name":"IADsLargeInteger","features":[463,354]},{"name":"IADsLocality","features":[463,354]},{"name":"IADsMembers","features":[463,354]},{"name":"IADsNameTranslate","features":[463,354]},{"name":"IADsNamespaces","features":[463,354]},{"name":"IADsNetAddress","features":[463,354]},{"name":"IADsO","features":[463,354]},{"name":"IADsOU","features":[463,354]},{"name":"IADsObjectOptions","features":[463,354]},{"name":"IADsOctetList","features":[463,354]},{"name":"IADsOpenDSObject","features":[463,354]},{"name":"IADsPath","features":[463,354]},{"name":"IADsPathname","features":[463,354]},{"name":"IADsPostalAddress","features":[463,354]},{"name":"IADsPrintJob","features":[463,354]},{"name":"IADsPrintJobOperations","features":[463,354]},{"name":"IADsPrintQueue","features":[463,354]},{"name":"IADsPrintQueueOperations","features":[463,354]},{"name":"IADsProperty","features":[463,354]},{"name":"IADsPropertyEntry","features":[463,354]},{"name":"IADsPropertyList","features":[463,354]},{"name":"IADsPropertyValue","features":[463,354]},{"name":"IADsPropertyValue2","features":[463,354]},{"name":"IADsReplicaPointer","features":[463,354]},{"name":"IADsResource","features":[463,354]},{"name":"IADsSecurityDescriptor","features":[463,354]},{"name":"IADsSecurityUtility","features":[463,354]},{"name":"IADsService","features":[463,354]},{"name":"IADsServiceOperations","features":[463,354]},{"name":"IADsSession","features":[463,354]},{"name":"IADsSyntax","features":[463,354]},{"name":"IADsTimestamp","features":[463,354]},{"name":"IADsTypedName","features":[463,354]},{"name":"IADsUser","features":[463,354]},{"name":"IADsWinNTSystemInfo","features":[463,354]},{"name":"ICommonQuery","features":[463]},{"name":"IDirectoryObject","features":[463]},{"name":"IDirectorySchemaMgmt","features":[463]},{"name":"IDirectorySearch","features":[463]},{"name":"IDsAdminCreateObj","features":[463]},{"name":"IDsAdminNewObj","features":[463]},{"name":"IDsAdminNewObjExt","features":[463]},{"name":"IDsAdminNewObjPrimarySite","features":[463]},{"name":"IDsAdminNotifyHandler","features":[463]},{"name":"IDsBrowseDomainTree","features":[463]},{"name":"IDsDisplaySpecifier","features":[463]},{"name":"IDsObjectPicker","features":[463]},{"name":"IDsObjectPickerCredentials","features":[463]},{"name":"IPersistQuery","features":[463,354]},{"name":"IPrivateDispatch","features":[463]},{"name":"IPrivateUnknown","features":[463]},{"name":"IQueryForm","features":[463]},{"name":"LPCQADDFORMSPROC","features":[303,463,365]},{"name":"LPCQADDPAGESPROC","features":[303,463,365]},{"name":"LPCQPAGEPROC","features":[303,463,365]},{"name":"LPDSENUMATTRIBUTES","features":[303,463]},{"name":"LargeInteger","features":[463]},{"name":"NTDSAPI_BIND_ALLOW_DELEGATION","features":[463]},{"name":"NTDSAPI_BIND_FIND_BINDING","features":[463]},{"name":"NTDSAPI_BIND_FORCE_KERBEROS","features":[463]},{"name":"NTDSCONN_KCC_GC_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_INTERSITE_GC_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_INTERSITE_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_MINIMIZE_HOPS_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_NO_REASON","features":[463]},{"name":"NTDSCONN_KCC_OSCILLATING_CONNECTION_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_REDUNDANT_SERVER_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_RING_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_SERVER_FAILOVER_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_SITE_FAILOVER_TOPOLOGY","features":[463]},{"name":"NTDSCONN_KCC_STALE_SERVERS_TOPOLOGY","features":[463]},{"name":"NTDSCONN_OPT_DISABLE_INTERSITE_COMPRESSION","features":[463]},{"name":"NTDSCONN_OPT_IGNORE_SCHEDULE_MASK","features":[463]},{"name":"NTDSCONN_OPT_IS_GENERATED","features":[463]},{"name":"NTDSCONN_OPT_OVERRIDE_NOTIFY_DEFAULT","features":[463]},{"name":"NTDSCONN_OPT_RODC_TOPOLOGY","features":[463]},{"name":"NTDSCONN_OPT_TWOWAY_SYNC","features":[463]},{"name":"NTDSCONN_OPT_USER_OWNED_SCHEDULE","features":[463]},{"name":"NTDSCONN_OPT_USE_NOTIFY","features":[463]},{"name":"NTDSDSA_OPT_BLOCK_RPC","features":[463]},{"name":"NTDSDSA_OPT_DISABLE_INBOUND_REPL","features":[463]},{"name":"NTDSDSA_OPT_DISABLE_NTDSCONN_XLATE","features":[463]},{"name":"NTDSDSA_OPT_DISABLE_OUTBOUND_REPL","features":[463]},{"name":"NTDSDSA_OPT_DISABLE_SPN_REGISTRATION","features":[463]},{"name":"NTDSDSA_OPT_GENERATE_OWN_TOPO","features":[463]},{"name":"NTDSDSA_OPT_IS_GC","features":[463]},{"name":"NTDSSETTINGS_DEFAULT_SERVER_REDUNDANCY","features":[463]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_W2K_ELECTION","features":[463]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_WHISTLER_BEHAVIOR","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_AUTO_TOPOLOGY_DISABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_GROUP_CACHING_ENABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_INTER_SITE_AUTO_TOPOLOGY_DISABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_RAND_BH_SELECTION_DISABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_REDUNDANT_SERVER_TOPOLOGY_ENABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_SCHEDULE_HASHING_ENABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_CLEANUP_DISABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_DETECT_STALE_DISABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_MIN_HOPS_DISABLED","features":[463]},{"name":"NTDSSETTINGS_OPT_W2K3_BRIDGES_REQUIRED","features":[463]},{"name":"NTDSSETTINGS_OPT_W2K3_IGNORE_SCHEDULES","features":[463]},{"name":"NTDSSITECONN_OPT_DISABLE_COMPRESSION","features":[463]},{"name":"NTDSSITECONN_OPT_TWOWAY_SYNC","features":[463]},{"name":"NTDSSITECONN_OPT_USE_NOTIFY","features":[463]},{"name":"NTDSSITELINK_OPT_DISABLE_COMPRESSION","features":[463]},{"name":"NTDSSITELINK_OPT_TWOWAY_SYNC","features":[463]},{"name":"NTDSSITELINK_OPT_USE_NOTIFY","features":[463]},{"name":"NTDSTRANSPORT_OPT_BRIDGES_REQUIRED","features":[463]},{"name":"NTDSTRANSPORT_OPT_IGNORE_SCHEDULES","features":[463]},{"name":"NameTranslate","features":[463]},{"name":"NetAddress","features":[463]},{"name":"OPENQUERYWINDOW","features":[463,427]},{"name":"OQWF_DEFAULTFORM","features":[463]},{"name":"OQWF_HIDEMENUS","features":[463]},{"name":"OQWF_HIDESEARCHUI","features":[463]},{"name":"OQWF_ISSUEONOPEN","features":[463]},{"name":"OQWF_LOADQUERY","features":[463]},{"name":"OQWF_OKCANCEL","features":[463]},{"name":"OQWF_PARAMISPROPERTYBAG","features":[463]},{"name":"OQWF_REMOVEFORMS","features":[463]},{"name":"OQWF_REMOVESCOPES","features":[463]},{"name":"OQWF_SAVEQUERYONOK","features":[463]},{"name":"OQWF_SHOWOPTIONAL","features":[463]},{"name":"OQWF_SINGLESELECT","features":[463]},{"name":"OctetList","features":[463]},{"name":"Path","features":[463]},{"name":"Pathname","features":[463]},{"name":"PostalAddress","features":[463]},{"name":"PropVariantToAdsType","features":[303,463]},{"name":"PropertyEntry","features":[463]},{"name":"PropertyValue","features":[463]},{"name":"QUERYFORM_CHANGESFORMLIST","features":[463]},{"name":"QUERYFORM_CHANGESOPTFORMLIST","features":[463]},{"name":"ReallocADsMem","features":[463]},{"name":"ReallocADsStr","features":[303,463]},{"name":"ReplicaPointer","features":[463]},{"name":"SCHEDULE","features":[463]},{"name":"SCHEDULE_BANDWIDTH","features":[463]},{"name":"SCHEDULE_HEADER","features":[463]},{"name":"SCHEDULE_INTERVAL","features":[463]},{"name":"SCHEDULE_PRIORITY","features":[463]},{"name":"SecurityDescriptor","features":[463]},{"name":"SecurityDescriptorToBinarySD","features":[463,306]},{"name":"Timestamp","features":[463]},{"name":"TypedName","features":[463]},{"name":"WM_ADSPROP_NOTIFY_APPLY","features":[463]},{"name":"WM_ADSPROP_NOTIFY_CHANGE","features":[463]},{"name":"WM_ADSPROP_NOTIFY_ERROR","features":[463]},{"name":"WM_ADSPROP_NOTIFY_EXIT","features":[463]},{"name":"WM_ADSPROP_NOTIFY_FOREGROUND","features":[463]},{"name":"WM_ADSPROP_NOTIFY_PAGEHWND","features":[463]},{"name":"WM_ADSPROP_NOTIFY_PAGEINIT","features":[463]},{"name":"WM_ADSPROP_NOTIFY_SETFOCUS","features":[463]},{"name":"WinNTSystemInfo","features":[463]},{"name":"hrAccessDenied","features":[463]},{"name":"hrAfterInitialization","features":[463]},{"name":"hrAlreadyInitialized","features":[463]},{"name":"hrAlreadyOpen","features":[463]},{"name":"hrAlreadyPrepared","features":[463]},{"name":"hrBFInUse","features":[463]},{"name":"hrBFNotSynchronous","features":[463]},{"name":"hrBFPageNotFound","features":[463]},{"name":"hrBackupDirectoryNotEmpty","features":[463]},{"name":"hrBackupInProgress","features":[463]},{"name":"hrBackupNotAllowedYet","features":[463]},{"name":"hrBadBackupDatabaseSize","features":[463]},{"name":"hrBadCheckpointSignature","features":[463]},{"name":"hrBadColumnId","features":[463]},{"name":"hrBadDbSignature","features":[463]},{"name":"hrBadItagSequence","features":[463]},{"name":"hrBadLogSignature","features":[463]},{"name":"hrBadLogVersion","features":[463]},{"name":"hrBufferTooSmall","features":[463]},{"name":"hrBufferTruncated","features":[463]},{"name":"hrCannotBeTagged","features":[463]},{"name":"hrCannotRename","features":[463]},{"name":"hrCheckpointCorrupt","features":[463]},{"name":"hrCircularLogging","features":[463]},{"name":"hrColumn2ndSysMaint","features":[463]},{"name":"hrColumnCannotIndex","features":[463]},{"name":"hrColumnDoesNotFit","features":[463]},{"name":"hrColumnDuplicate","features":[463]},{"name":"hrColumnInUse","features":[463]},{"name":"hrColumnIndexed","features":[463]},{"name":"hrColumnLong","features":[463]},{"name":"hrColumnMaxTruncated","features":[463]},{"name":"hrColumnNotFound","features":[463]},{"name":"hrColumnNotUpdatable","features":[463]},{"name":"hrColumnNull","features":[463]},{"name":"hrColumnSetNull","features":[463]},{"name":"hrColumnTooBig","features":[463]},{"name":"hrCommunicationError","features":[463]},{"name":"hrConsistentTimeMismatch","features":[463]},{"name":"hrContainerNotEmpty","features":[463]},{"name":"hrContentsExpired","features":[463]},{"name":"hrCouldNotConnect","features":[463]},{"name":"hrCreateIndexFailed","features":[463]},{"name":"hrCurrencyStackOutOfMemory","features":[463]},{"name":"hrDatabaseAttached","features":[463]},{"name":"hrDatabaseCorrupted","features":[463]},{"name":"hrDatabaseDuplicate","features":[463]},{"name":"hrDatabaseInUse","features":[463]},{"name":"hrDatabaseInconsistent","features":[463]},{"name":"hrDatabaseInvalidName","features":[463]},{"name":"hrDatabaseInvalidPages","features":[463]},{"name":"hrDatabaseLocked","features":[463]},{"name":"hrDatabaseNotFound","features":[463]},{"name":"hrDeleteBackupFileFail","features":[463]},{"name":"hrDensityInvalid","features":[463]},{"name":"hrDiskFull","features":[463]},{"name":"hrDiskIO","features":[463]},{"name":"hrError","features":[463]},{"name":"hrExistingLogFileHasBadSignature","features":[463]},{"name":"hrExistingLogFileIsNotContiguous","features":[463]},{"name":"hrFLDKeyTooBig","features":[463]},{"name":"hrFLDNullKey","features":[463]},{"name":"hrFLDTooManySegments","features":[463]},{"name":"hrFeatureNotAvailable","features":[463]},{"name":"hrFileAccessDenied","features":[463]},{"name":"hrFileClose","features":[463]},{"name":"hrFileNotFound","features":[463]},{"name":"hrFileOpenReadOnly","features":[463]},{"name":"hrFullBackupNotTaken","features":[463]},{"name":"hrGivenLogFileHasBadSignature","features":[463]},{"name":"hrGivenLogFileIsNotContiguous","features":[463]},{"name":"hrIllegalOperation","features":[463]},{"name":"hrInTransaction","features":[463]},{"name":"hrIncrementalBackupDisabled","features":[463]},{"name":"hrIndexCantBuild","features":[463]},{"name":"hrIndexDuplicate","features":[463]},{"name":"hrIndexHasClustered","features":[463]},{"name":"hrIndexHasPrimary","features":[463]},{"name":"hrIndexInUse","features":[463]},{"name":"hrIndexInvalidDef","features":[463]},{"name":"hrIndexMustStay","features":[463]},{"name":"hrIndexNotFound","features":[463]},{"name":"hrInvalidBackup","features":[463]},{"name":"hrInvalidBackupSequence","features":[463]},{"name":"hrInvalidBookmark","features":[463]},{"name":"hrInvalidBufferSize","features":[463]},{"name":"hrInvalidCodePage","features":[463]},{"name":"hrInvalidColumnType","features":[463]},{"name":"hrInvalidCountry","features":[463]},{"name":"hrInvalidDatabase","features":[463]},{"name":"hrInvalidDatabaseId","features":[463]},{"name":"hrInvalidFilename","features":[463]},{"name":"hrInvalidHandle","features":[463]},{"name":"hrInvalidLanguageId","features":[463]},{"name":"hrInvalidLogSequence","features":[463]},{"name":"hrInvalidName","features":[463]},{"name":"hrInvalidObject","features":[463]},{"name":"hrInvalidOnSort","features":[463]},{"name":"hrInvalidOperation","features":[463]},{"name":"hrInvalidParam","features":[463]},{"name":"hrInvalidParameter","features":[463]},{"name":"hrInvalidPath","features":[463]},{"name":"hrInvalidRecips","features":[463]},{"name":"hrInvalidSesid","features":[463]},{"name":"hrInvalidTableId","features":[463]},{"name":"hrKeyChanged","features":[463]},{"name":"hrKeyDuplicate","features":[463]},{"name":"hrKeyIsMade","features":[463]},{"name":"hrKeyNotMade","features":[463]},{"name":"hrLogBufferTooSmall","features":[463]},{"name":"hrLogCorrupted","features":[463]},{"name":"hrLogDiskFull","features":[463]},{"name":"hrLogFileCorrupt","features":[463]},{"name":"hrLogFileNotFound","features":[463]},{"name":"hrLogSequenceEnd","features":[463]},{"name":"hrLogWriteFail","features":[463]},{"name":"hrLoggingDisabled","features":[463]},{"name":"hrMakeBackupDirectoryFail","features":[463]},{"name":"hrMissingExpiryToken","features":[463]},{"name":"hrMissingFullBackup","features":[463]},{"name":"hrMissingLogFile","features":[463]},{"name":"hrMissingPreviousLogFile","features":[463]},{"name":"hrMissingRestoreLogFiles","features":[463]},{"name":"hrNoBackup","features":[463]},{"name":"hrNoBackupDirectory","features":[463]},{"name":"hrNoCurrentIndex","features":[463]},{"name":"hrNoCurrentRecord","features":[463]},{"name":"hrNoFullRestore","features":[463]},{"name":"hrNoIdleActivity","features":[463]},{"name":"hrNoWriteLock","features":[463]},{"name":"hrNone","features":[463]},{"name":"hrNotInTransaction","features":[463]},{"name":"hrNotInitialized","features":[463]},{"name":"hrNullInvalid","features":[463]},{"name":"hrNullKeyDisallowed","features":[463]},{"name":"hrNyi","features":[463]},{"name":"hrObjectDuplicate","features":[463]},{"name":"hrObjectNotFound","features":[463]},{"name":"hrOutOfBuffers","features":[463]},{"name":"hrOutOfCursors","features":[463]},{"name":"hrOutOfDatabaseSpace","features":[463]},{"name":"hrOutOfFileHandles","features":[463]},{"name":"hrOutOfMemory","features":[463]},{"name":"hrOutOfSessions","features":[463]},{"name":"hrOutOfThreads","features":[463]},{"name":"hrPMRecDeleted","features":[463]},{"name":"hrPatchFileMismatch","features":[463]},{"name":"hrPermissionDenied","features":[463]},{"name":"hrReadVerifyFailure","features":[463]},{"name":"hrRecordClusteredChanged","features":[463]},{"name":"hrRecordDeleted","features":[463]},{"name":"hrRecordNotFound","features":[463]},{"name":"hrRecordTooBig","features":[463]},{"name":"hrRecoveredWithErrors","features":[463]},{"name":"hrRemainingVersions","features":[463]},{"name":"hrRestoreInProgress","features":[463]},{"name":"hrRestoreLogTooHigh","features":[463]},{"name":"hrRestoreLogTooLow","features":[463]},{"name":"hrRestoreMapExists","features":[463]},{"name":"hrSeekNotEqual","features":[463]},{"name":"hrSessionWriteConflict","features":[463]},{"name":"hrTableDuplicate","features":[463]},{"name":"hrTableEmpty","features":[463]},{"name":"hrTableInUse","features":[463]},{"name":"hrTableLocked","features":[463]},{"name":"hrTableNotEmpty","features":[463]},{"name":"hrTaggedNotNULL","features":[463]},{"name":"hrTempFileOpenError","features":[463]},{"name":"hrTermInProgress","features":[463]},{"name":"hrTooManyActiveUsers","features":[463]},{"name":"hrTooManyAttachedDatabases","features":[463]},{"name":"hrTooManyColumns","features":[463]},{"name":"hrTooManyIO","features":[463]},{"name":"hrTooManyIndexes","features":[463]},{"name":"hrTooManyKeys","features":[463]},{"name":"hrTooManyOpenDatabases","features":[463]},{"name":"hrTooManyOpenIndexes","features":[463]},{"name":"hrTooManyOpenTables","features":[463]},{"name":"hrTooManySorts","features":[463]},{"name":"hrTransTooDeep","features":[463]},{"name":"hrUnknownExpiryTokenFormat","features":[463]},{"name":"hrUpdateNotPrepared","features":[463]},{"name":"hrVersionStoreOutOfMemory","features":[463]},{"name":"hrWriteConflict","features":[463]},{"name":"hrerrDataHasChanged","features":[463]},{"name":"hrwrnDataHasChanged","features":[463]}],"468":[{"name":"AsyncIBackgroundCopyCallback","features":[465]},{"name":"BG_AUTH_CREDENTIALS","features":[465]},{"name":"BG_AUTH_CREDENTIALS_UNION","features":[465]},{"name":"BG_AUTH_SCHEME","features":[465]},{"name":"BG_AUTH_SCHEME_BASIC","features":[465]},{"name":"BG_AUTH_SCHEME_DIGEST","features":[465]},{"name":"BG_AUTH_SCHEME_NEGOTIATE","features":[465]},{"name":"BG_AUTH_SCHEME_NTLM","features":[465]},{"name":"BG_AUTH_SCHEME_PASSPORT","features":[465]},{"name":"BG_AUTH_TARGET","features":[465]},{"name":"BG_AUTH_TARGET_PROXY","features":[465]},{"name":"BG_AUTH_TARGET_SERVER","features":[465]},{"name":"BG_BASIC_CREDENTIALS","features":[465]},{"name":"BG_CERT_STORE_LOCATION","features":[465]},{"name":"BG_CERT_STORE_LOCATION_CURRENT_SERVICE","features":[465]},{"name":"BG_CERT_STORE_LOCATION_CURRENT_USER","features":[465]},{"name":"BG_CERT_STORE_LOCATION_CURRENT_USER_GROUP_POLICY","features":[465]},{"name":"BG_CERT_STORE_LOCATION_LOCAL_MACHINE","features":[465]},{"name":"BG_CERT_STORE_LOCATION_LOCAL_MACHINE_ENTERPRISE","features":[465]},{"name":"BG_CERT_STORE_LOCATION_LOCAL_MACHINE_GROUP_POLICY","features":[465]},{"name":"BG_CERT_STORE_LOCATION_SERVICES","features":[465]},{"name":"BG_CERT_STORE_LOCATION_USERS","features":[465]},{"name":"BG_COPY_FILE_ALL","features":[465]},{"name":"BG_COPY_FILE_DACL","features":[465]},{"name":"BG_COPY_FILE_GROUP","features":[465]},{"name":"BG_COPY_FILE_OWNER","features":[465]},{"name":"BG_COPY_FILE_SACL","features":[465]},{"name":"BG_DISABLE_BRANCH_CACHE","features":[465]},{"name":"BG_ENABLE_PEERCACHING_CLIENT","features":[465]},{"name":"BG_ENABLE_PEERCACHING_SERVER","features":[465]},{"name":"BG_ERROR_CONTEXT","features":[465]},{"name":"BG_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER","features":[465]},{"name":"BG_ERROR_CONTEXT_GENERAL_TRANSPORT","features":[465]},{"name":"BG_ERROR_CONTEXT_LOCAL_FILE","features":[465]},{"name":"BG_ERROR_CONTEXT_NONE","features":[465]},{"name":"BG_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION","features":[465]},{"name":"BG_ERROR_CONTEXT_REMOTE_APPLICATION","features":[465]},{"name":"BG_ERROR_CONTEXT_REMOTE_FILE","features":[465]},{"name":"BG_ERROR_CONTEXT_SERVER_CERTIFICATE_CALLBACK","features":[465]},{"name":"BG_ERROR_CONTEXT_UNKNOWN","features":[465]},{"name":"BG_E_APP_PACKAGE_NOT_FOUND","features":[465]},{"name":"BG_E_APP_PACKAGE_SCENARIO_NOT_SUPPORTED","features":[465]},{"name":"BG_E_BLOCKED_BY_BACKGROUND_ACCESS_POLICY","features":[465]},{"name":"BG_E_BLOCKED_BY_BATTERY_POLICY","features":[465]},{"name":"BG_E_BLOCKED_BY_BATTERY_SAVER","features":[465]},{"name":"BG_E_BLOCKED_BY_COST_TRANSFER_POLICY","features":[465]},{"name":"BG_E_BLOCKED_BY_GAME_MODE","features":[465]},{"name":"BG_E_BLOCKED_BY_POLICY","features":[465]},{"name":"BG_E_BLOCKED_BY_SYSTEM_POLICY","features":[465]},{"name":"BG_E_BUSYCACHERECORD","features":[465]},{"name":"BG_E_CLIENT_SERVER_PROTOCOL_MISMATCH","features":[465]},{"name":"BG_E_COMMIT_IN_PROGRESS","features":[465]},{"name":"BG_E_CONNECTION_CLOSED","features":[465]},{"name":"BG_E_CONNECT_FAILURE","features":[465]},{"name":"BG_E_DATABASE_CORRUPT","features":[465]},{"name":"BG_E_DESTINATION_LOCKED","features":[465]},{"name":"BG_E_DISCOVERY_IN_PROGRESS","features":[465]},{"name":"BG_E_EMPTY","features":[465]},{"name":"BG_E_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER","features":[465]},{"name":"BG_E_ERROR_CONTEXT_GENERAL_TRANSPORT","features":[465]},{"name":"BG_E_ERROR_CONTEXT_LOCAL_FILE","features":[465]},{"name":"BG_E_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION","features":[465]},{"name":"BG_E_ERROR_CONTEXT_REMOTE_APPLICATION","features":[465]},{"name":"BG_E_ERROR_CONTEXT_REMOTE_FILE","features":[465]},{"name":"BG_E_ERROR_CONTEXT_SERVER_CERTIFICATE_CALLBACK","features":[465]},{"name":"BG_E_ERROR_CONTEXT_UNKNOWN","features":[465]},{"name":"BG_E_ERROR_INFORMATION_UNAVAILABLE","features":[465]},{"name":"BG_E_FILE_NOT_AVAILABLE","features":[465]},{"name":"BG_E_FILE_NOT_FOUND","features":[465]},{"name":"BG_E_HTTP_ERROR_100","features":[465]},{"name":"BG_E_HTTP_ERROR_101","features":[465]},{"name":"BG_E_HTTP_ERROR_200","features":[465]},{"name":"BG_E_HTTP_ERROR_201","features":[465]},{"name":"BG_E_HTTP_ERROR_202","features":[465]},{"name":"BG_E_HTTP_ERROR_203","features":[465]},{"name":"BG_E_HTTP_ERROR_204","features":[465]},{"name":"BG_E_HTTP_ERROR_205","features":[465]},{"name":"BG_E_HTTP_ERROR_206","features":[465]},{"name":"BG_E_HTTP_ERROR_300","features":[465]},{"name":"BG_E_HTTP_ERROR_301","features":[465]},{"name":"BG_E_HTTP_ERROR_302","features":[465]},{"name":"BG_E_HTTP_ERROR_303","features":[465]},{"name":"BG_E_HTTP_ERROR_304","features":[465]},{"name":"BG_E_HTTP_ERROR_305","features":[465]},{"name":"BG_E_HTTP_ERROR_307","features":[465]},{"name":"BG_E_HTTP_ERROR_400","features":[465]},{"name":"BG_E_HTTP_ERROR_401","features":[465]},{"name":"BG_E_HTTP_ERROR_402","features":[465]},{"name":"BG_E_HTTP_ERROR_403","features":[465]},{"name":"BG_E_HTTP_ERROR_404","features":[465]},{"name":"BG_E_HTTP_ERROR_405","features":[465]},{"name":"BG_E_HTTP_ERROR_406","features":[465]},{"name":"BG_E_HTTP_ERROR_407","features":[465]},{"name":"BG_E_HTTP_ERROR_408","features":[465]},{"name":"BG_E_HTTP_ERROR_409","features":[465]},{"name":"BG_E_HTTP_ERROR_410","features":[465]},{"name":"BG_E_HTTP_ERROR_411","features":[465]},{"name":"BG_E_HTTP_ERROR_412","features":[465]},{"name":"BG_E_HTTP_ERROR_413","features":[465]},{"name":"BG_E_HTTP_ERROR_414","features":[465]},{"name":"BG_E_HTTP_ERROR_415","features":[465]},{"name":"BG_E_HTTP_ERROR_416","features":[465]},{"name":"BG_E_HTTP_ERROR_417","features":[465]},{"name":"BG_E_HTTP_ERROR_449","features":[465]},{"name":"BG_E_HTTP_ERROR_500","features":[465]},{"name":"BG_E_HTTP_ERROR_501","features":[465]},{"name":"BG_E_HTTP_ERROR_502","features":[465]},{"name":"BG_E_HTTP_ERROR_503","features":[465]},{"name":"BG_E_HTTP_ERROR_504","features":[465]},{"name":"BG_E_HTTP_ERROR_505","features":[465]},{"name":"BG_E_INSUFFICIENT_HTTP_SUPPORT","features":[465]},{"name":"BG_E_INSUFFICIENT_RANGE_SUPPORT","features":[465]},{"name":"BG_E_INVALID_AUTH_SCHEME","features":[465]},{"name":"BG_E_INVALID_AUTH_TARGET","features":[465]},{"name":"BG_E_INVALID_CREDENTIALS","features":[465]},{"name":"BG_E_INVALID_HASH_ALGORITHM","features":[465]},{"name":"BG_E_INVALID_PROXY_INFO","features":[465]},{"name":"BG_E_INVALID_RANGE","features":[465]},{"name":"BG_E_INVALID_SERVER_RESPONSE","features":[465]},{"name":"BG_E_INVALID_STATE","features":[465]},{"name":"BG_E_LOCAL_FILE_CHANGED","features":[465]},{"name":"BG_E_MAXDOWNLOAD_TIMEOUT","features":[465]},{"name":"BG_E_MAX_DOWNLOAD_SIZE_INVALID_VALUE","features":[465]},{"name":"BG_E_MAX_DOWNLOAD_SIZE_LIMIT_REACHED","features":[465]},{"name":"BG_E_MISSING_FILE_SIZE","features":[465]},{"name":"BG_E_NETWORK_DISCONNECTED","features":[465]},{"name":"BG_E_NEW_OWNER_DIFF_MAPPING","features":[465]},{"name":"BG_E_NEW_OWNER_NO_FILE_ACCESS","features":[465]},{"name":"BG_E_NOT_FOUND","features":[465]},{"name":"BG_E_NOT_SUPPORTED_WITH_CUSTOM_HTTP_METHOD","features":[465]},{"name":"BG_E_NO_PROGRESS","features":[465]},{"name":"BG_E_OVERLAPPING_RANGES","features":[465]},{"name":"BG_E_PASSWORD_TOO_LARGE","features":[465]},{"name":"BG_E_PEERCACHING_DISABLED","features":[465]},{"name":"BG_E_PROPERTY_SUPPORTED_FOR_DOWNLOAD_JOBS_ONLY","features":[465]},{"name":"BG_E_PROTOCOL_NOT_AVAILABLE","features":[465]},{"name":"BG_E_PROXY_BYPASS_LIST_TOO_LARGE","features":[465]},{"name":"BG_E_PROXY_LIST_TOO_LARGE","features":[465]},{"name":"BG_E_RANDOM_ACCESS_NOT_SUPPORTED","features":[465]},{"name":"BG_E_READ_ONLY_PROPERTY","features":[465]},{"name":"BG_E_READ_ONLY_PROPERTY_AFTER_ADDFILE","features":[465]},{"name":"BG_E_READ_ONLY_PROPERTY_AFTER_RESUME","features":[465]},{"name":"BG_E_READ_ONLY_WHEN_JOB_ACTIVE","features":[465]},{"name":"BG_E_RECORD_DELETED","features":[465]},{"name":"BG_E_REMOTE_FILE_CHANGED","features":[465]},{"name":"BG_E_REMOTE_NOT_SUPPORTED","features":[465]},{"name":"BG_E_SERVER_CERT_VALIDATION_INTERFACE_REQUIRED","features":[465]},{"name":"BG_E_SERVER_EXECUTE_ENABLE","features":[465]},{"name":"BG_E_SESSION_NOT_FOUND","features":[465]},{"name":"BG_E_STANDBY_MODE","features":[465]},{"name":"BG_E_STRING_TOO_LONG","features":[465]},{"name":"BG_E_TEST_OPTION_BLOCKED_DOWNLOAD","features":[465]},{"name":"BG_E_TOKEN_REQUIRED","features":[465]},{"name":"BG_E_TOO_LARGE","features":[465]},{"name":"BG_E_TOO_MANY_FILES","features":[465]},{"name":"BG_E_TOO_MANY_FILES_IN_JOB","features":[465]},{"name":"BG_E_TOO_MANY_JOBS_PER_MACHINE","features":[465]},{"name":"BG_E_TOO_MANY_JOBS_PER_USER","features":[465]},{"name":"BG_E_TOO_MANY_RANGES_IN_FILE","features":[465]},{"name":"BG_E_UNKNOWN_PROPERTY_ID","features":[465]},{"name":"BG_E_UNSUPPORTED_JOB_CONFIGURATION","features":[465]},{"name":"BG_E_UPNP_ERROR","features":[465]},{"name":"BG_E_USERNAME_TOO_LARGE","features":[465]},{"name":"BG_E_USE_STORED_CREDENTIALS_NOT_SUPPORTED","features":[465]},{"name":"BG_E_VALIDATION_FAILED","features":[465]},{"name":"BG_E_VOLUME_CHANGED","features":[465]},{"name":"BG_E_WATCHDOG_TIMEOUT","features":[465]},{"name":"BG_FILE_INFO","features":[465]},{"name":"BG_FILE_PROGRESS","features":[303,465]},{"name":"BG_FILE_RANGE","features":[465]},{"name":"BG_HTTP_REDIRECT_POLICY_ALLOW_HTTPS_TO_HTTP","features":[465]},{"name":"BG_HTTP_REDIRECT_POLICY_ALLOW_REPORT","features":[465]},{"name":"BG_HTTP_REDIRECT_POLICY_ALLOW_SILENT","features":[465]},{"name":"BG_HTTP_REDIRECT_POLICY_DISALLOW","features":[465]},{"name":"BG_HTTP_REDIRECT_POLICY_MASK","features":[465]},{"name":"BG_JOB_DISABLE_BRANCH_CACHE","features":[465]},{"name":"BG_JOB_ENABLE_PEERCACHING_CLIENT","features":[465]},{"name":"BG_JOB_ENABLE_PEERCACHING_SERVER","features":[465]},{"name":"BG_JOB_ENUM_ALL_USERS","features":[465]},{"name":"BG_JOB_PRIORITY","features":[465]},{"name":"BG_JOB_PRIORITY_FOREGROUND","features":[465]},{"name":"BG_JOB_PRIORITY_HIGH","features":[465]},{"name":"BG_JOB_PRIORITY_LOW","features":[465]},{"name":"BG_JOB_PRIORITY_NORMAL","features":[465]},{"name":"BG_JOB_PROGRESS","features":[465]},{"name":"BG_JOB_PROXY_USAGE","features":[465]},{"name":"BG_JOB_PROXY_USAGE_AUTODETECT","features":[465]},{"name":"BG_JOB_PROXY_USAGE_NO_PROXY","features":[465]},{"name":"BG_JOB_PROXY_USAGE_OVERRIDE","features":[465]},{"name":"BG_JOB_PROXY_USAGE_PRECONFIG","features":[465]},{"name":"BG_JOB_REPLY_PROGRESS","features":[465]},{"name":"BG_JOB_STATE","features":[465]},{"name":"BG_JOB_STATE_ACKNOWLEDGED","features":[465]},{"name":"BG_JOB_STATE_CANCELLED","features":[465]},{"name":"BG_JOB_STATE_CONNECTING","features":[465]},{"name":"BG_JOB_STATE_ERROR","features":[465]},{"name":"BG_JOB_STATE_QUEUED","features":[465]},{"name":"BG_JOB_STATE_SUSPENDED","features":[465]},{"name":"BG_JOB_STATE_TRANSFERRED","features":[465]},{"name":"BG_JOB_STATE_TRANSFERRING","features":[465]},{"name":"BG_JOB_STATE_TRANSIENT_ERROR","features":[465]},{"name":"BG_JOB_TIMES","features":[303,465]},{"name":"BG_JOB_TYPE","features":[465]},{"name":"BG_JOB_TYPE_DOWNLOAD","features":[465]},{"name":"BG_JOB_TYPE_UPLOAD","features":[465]},{"name":"BG_JOB_TYPE_UPLOAD_REPLY","features":[465]},{"name":"BG_NOTIFY_DISABLE","features":[465]},{"name":"BG_NOTIFY_FILE_RANGES_TRANSFERRED","features":[465]},{"name":"BG_NOTIFY_FILE_TRANSFERRED","features":[465]},{"name":"BG_NOTIFY_JOB_ERROR","features":[465]},{"name":"BG_NOTIFY_JOB_MODIFICATION","features":[465]},{"name":"BG_NOTIFY_JOB_TRANSFERRED","features":[465]},{"name":"BG_SSL_ENABLE_CRL_CHECK","features":[465]},{"name":"BG_SSL_IGNORE_CERT_CN_INVALID","features":[465]},{"name":"BG_SSL_IGNORE_CERT_DATE_INVALID","features":[465]},{"name":"BG_SSL_IGNORE_CERT_WRONG_USAGE","features":[465]},{"name":"BG_SSL_IGNORE_UNKNOWN_CA","features":[465]},{"name":"BG_S_ERROR_CONTEXT_NONE","features":[465]},{"name":"BG_S_OVERRIDDEN_BY_POLICY","features":[465]},{"name":"BG_S_PARTIAL_COMPLETE","features":[465]},{"name":"BG_S_PROXY_CHANGED","features":[465]},{"name":"BG_S_UNABLE_TO_DELETE_FILES","features":[465]},{"name":"BG_TOKEN","features":[465]},{"name":"BG_TOKEN_LOCAL_FILE","features":[465]},{"name":"BG_TOKEN_NETWORK","features":[465]},{"name":"BITSExtensionSetupFactory","features":[465]},{"name":"BITS_COST_OPTION_IGNORE_CONGESTION","features":[465]},{"name":"BITS_COST_STATE_BELOW_CAP","features":[465]},{"name":"BITS_COST_STATE_CAPPED_USAGE_UNKNOWN","features":[465]},{"name":"BITS_COST_STATE_NEAR_CAP","features":[465]},{"name":"BITS_COST_STATE_OVERCAP_CHARGED","features":[465]},{"name":"BITS_COST_STATE_OVERCAP_THROTTLED","features":[465]},{"name":"BITS_COST_STATE_RESERVED","features":[465]},{"name":"BITS_COST_STATE_ROAMING","features":[465]},{"name":"BITS_COST_STATE_UNRESTRICTED","features":[465]},{"name":"BITS_COST_STATE_USAGE_BASED","features":[465]},{"name":"BITS_FILE_PROPERTY_ID","features":[465]},{"name":"BITS_FILE_PROPERTY_ID_HTTP_RESPONSE_HEADERS","features":[465]},{"name":"BITS_FILE_PROPERTY_VALUE","features":[465]},{"name":"BITS_JOB_PROPERTY_DYNAMIC_CONTENT","features":[465]},{"name":"BITS_JOB_PROPERTY_HIGH_PERFORMANCE","features":[465]},{"name":"BITS_JOB_PROPERTY_ID","features":[465]},{"name":"BITS_JOB_PROPERTY_ID_COST_FLAGS","features":[465]},{"name":"BITS_JOB_PROPERTY_MAX_DOWNLOAD_SIZE","features":[465]},{"name":"BITS_JOB_PROPERTY_MINIMUM_NOTIFICATION_INTERVAL_MS","features":[465]},{"name":"BITS_JOB_PROPERTY_NOTIFICATION_CLSID","features":[465]},{"name":"BITS_JOB_PROPERTY_ON_DEMAND_MODE","features":[465]},{"name":"BITS_JOB_PROPERTY_USE_STORED_CREDENTIALS","features":[465]},{"name":"BITS_JOB_PROPERTY_VALUE","features":[303,465]},{"name":"BITS_JOB_TRANSFER_POLICY","features":[465]},{"name":"BITS_JOB_TRANSFER_POLICY_ALWAYS","features":[465]},{"name":"BITS_JOB_TRANSFER_POLICY_NOT_ROAMING","features":[465]},{"name":"BITS_JOB_TRANSFER_POLICY_NO_SURCHARGE","features":[465]},{"name":"BITS_JOB_TRANSFER_POLICY_STANDARD","features":[465]},{"name":"BITS_JOB_TRANSFER_POLICY_UNRESTRICTED","features":[465]},{"name":"BITS_MC_FAILED_TO_START","features":[465]},{"name":"BITS_MC_FATAL_IGD_ERROR","features":[465]},{"name":"BITS_MC_FILE_DELETION_FAILED","features":[465]},{"name":"BITS_MC_FILE_DELETION_FAILED_MORE","features":[465]},{"name":"BITS_MC_JOB_CANCELLED","features":[465]},{"name":"BITS_MC_JOB_NOTIFICATION_FAILURE","features":[465]},{"name":"BITS_MC_JOB_PROPERTY_CHANGE","features":[465]},{"name":"BITS_MC_JOB_SCAVENGED","features":[465]},{"name":"BITS_MC_JOB_TAKE_OWNERSHIP","features":[465]},{"name":"BITS_MC_PEERCACHING_PORT","features":[465]},{"name":"BITS_MC_STATE_FILE_CORRUPT","features":[465]},{"name":"BITS_MC_WSD_PORT","features":[465]},{"name":"BackgroundCopyManager","features":[465]},{"name":"BackgroundCopyManager10_1","features":[465]},{"name":"BackgroundCopyManager10_2","features":[465]},{"name":"BackgroundCopyManager10_3","features":[465]},{"name":"BackgroundCopyManager1_5","features":[465]},{"name":"BackgroundCopyManager2_0","features":[465]},{"name":"BackgroundCopyManager2_5","features":[465]},{"name":"BackgroundCopyManager3_0","features":[465]},{"name":"BackgroundCopyManager4_0","features":[465]},{"name":"BackgroundCopyManager5_0","features":[465]},{"name":"BackgroundCopyQMgr","features":[465]},{"name":"FILESETINFO","features":[465]},{"name":"GROUPPROP","features":[465]},{"name":"GROUPPROP_DESCRIPTION","features":[465]},{"name":"GROUPPROP_DISPLAYNAME","features":[465]},{"name":"GROUPPROP_LOCALUSERID","features":[465]},{"name":"GROUPPROP_LOCALUSERPWD","features":[465]},{"name":"GROUPPROP_NOTIFYCLSID","features":[465]},{"name":"GROUPPROP_NOTIFYFLAGS","features":[465]},{"name":"GROUPPROP_PRIORITY","features":[465]},{"name":"GROUPPROP_PROGRESSPERCENT","features":[465]},{"name":"GROUPPROP_PROGRESSSIZE","features":[465]},{"name":"GROUPPROP_PROGRESSTIME","features":[465]},{"name":"GROUPPROP_PROTOCOLFLAGS","features":[465]},{"name":"GROUPPROP_REMOTEUSERID","features":[465]},{"name":"GROUPPROP_REMOTEUSERPWD","features":[465]},{"name":"IBITSExtensionSetup","features":[465,354]},{"name":"IBITSExtensionSetupFactory","features":[465,354]},{"name":"IBackgroundCopyCallback","features":[465]},{"name":"IBackgroundCopyCallback1","features":[465]},{"name":"IBackgroundCopyCallback2","features":[465]},{"name":"IBackgroundCopyCallback3","features":[465]},{"name":"IBackgroundCopyError","features":[465]},{"name":"IBackgroundCopyFile","features":[465]},{"name":"IBackgroundCopyFile2","features":[465]},{"name":"IBackgroundCopyFile3","features":[465]},{"name":"IBackgroundCopyFile4","features":[465]},{"name":"IBackgroundCopyFile5","features":[465]},{"name":"IBackgroundCopyFile6","features":[465]},{"name":"IBackgroundCopyGroup","features":[465]},{"name":"IBackgroundCopyJob","features":[465]},{"name":"IBackgroundCopyJob1","features":[465]},{"name":"IBackgroundCopyJob2","features":[465]},{"name":"IBackgroundCopyJob3","features":[465]},{"name":"IBackgroundCopyJob4","features":[465]},{"name":"IBackgroundCopyJob5","features":[465]},{"name":"IBackgroundCopyJobHttpOptions","features":[465]},{"name":"IBackgroundCopyJobHttpOptions2","features":[465]},{"name":"IBackgroundCopyJobHttpOptions3","features":[465]},{"name":"IBackgroundCopyManager","features":[465]},{"name":"IBackgroundCopyQMgr","features":[465]},{"name":"IBackgroundCopyServerCertificateValidationCallback","features":[465]},{"name":"IBitsPeer","features":[465]},{"name":"IBitsPeerCacheAdministration","features":[465]},{"name":"IBitsPeerCacheRecord","features":[465]},{"name":"IBitsTokenOptions","features":[465]},{"name":"IEnumBackgroundCopyFiles","features":[465]},{"name":"IEnumBackgroundCopyGroups","features":[465]},{"name":"IEnumBackgroundCopyJobs","features":[465]},{"name":"IEnumBackgroundCopyJobs1","features":[465]},{"name":"IEnumBitsPeerCacheRecords","features":[465]},{"name":"IEnumBitsPeers","features":[465]},{"name":"QM_E_DOWNLOADER_UNAVAILABLE","features":[465]},{"name":"QM_E_INVALID_STATE","features":[465]},{"name":"QM_E_ITEM_NOT_FOUND","features":[465]},{"name":"QM_E_SERVICE_UNAVAILABLE","features":[465]},{"name":"QM_NOTIFY_DISABLE_NOTIFY","features":[465]},{"name":"QM_NOTIFY_FILE_DONE","features":[465]},{"name":"QM_NOTIFY_GROUP_DONE","features":[465]},{"name":"QM_NOTIFY_JOB_DONE","features":[465]},{"name":"QM_NOTIFY_USE_PROGRESSEX","features":[465]},{"name":"QM_PROGRESS_PERCENT_DONE","features":[465]},{"name":"QM_PROGRESS_SIZE_DONE","features":[465]},{"name":"QM_PROGRESS_TIME_DONE","features":[465]},{"name":"QM_PROTOCOL_CUSTOM","features":[465]},{"name":"QM_PROTOCOL_FTP","features":[465]},{"name":"QM_PROTOCOL_HTTP","features":[465]},{"name":"QM_PROTOCOL_SMB","features":[465]},{"name":"QM_STATUS_FILE_COMPLETE","features":[465]},{"name":"QM_STATUS_FILE_INCOMPLETE","features":[465]},{"name":"QM_STATUS_GROUP_COMPLETE","features":[465]},{"name":"QM_STATUS_GROUP_ERROR","features":[465]},{"name":"QM_STATUS_GROUP_FOREGROUND","features":[465]},{"name":"QM_STATUS_GROUP_INCOMPLETE","features":[465]},{"name":"QM_STATUS_GROUP_SUSPENDED","features":[465]},{"name":"QM_STATUS_JOB_COMPLETE","features":[465]},{"name":"QM_STATUS_JOB_ERROR","features":[465]},{"name":"QM_STATUS_JOB_FOREGROUND","features":[465]},{"name":"QM_STATUS_JOB_INCOMPLETE","features":[465]}],"469":[{"name":"AddClusterGroupDependency","features":[466]},{"name":"AddClusterGroupDependencyEx","features":[466]},{"name":"AddClusterGroupSetDependency","features":[466]},{"name":"AddClusterGroupSetDependencyEx","features":[466]},{"name":"AddClusterGroupToGroupSetDependency","features":[466]},{"name":"AddClusterGroupToGroupSetDependencyEx","features":[466]},{"name":"AddClusterNode","features":[303,466]},{"name":"AddClusterNodeEx","features":[303,466]},{"name":"AddClusterResourceDependency","features":[466]},{"name":"AddClusterResourceDependencyEx","features":[466]},{"name":"AddClusterResourceNode","features":[466]},{"name":"AddClusterResourceNodeEx","features":[466]},{"name":"AddClusterStorageNode","features":[303,466]},{"name":"AddCrossClusterGroupSetDependency","features":[466]},{"name":"AddResourceToClusterSharedVolumes","features":[466]},{"name":"BackupClusterDatabase","features":[466]},{"name":"BitLockerDecrypted","features":[466]},{"name":"BitLockerDecrypting","features":[466]},{"name":"BitLockerEnabled","features":[466]},{"name":"BitLockerPaused","features":[466]},{"name":"BitLockerStopped","features":[466]},{"name":"BitlockerEncrypted","features":[466]},{"name":"BitlockerEncrypting","features":[466]},{"name":"CA_UPGRADE_VERSION","features":[466]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT","features":[466]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT_EX","features":[466]},{"name":"CLCTL_ADD_DEPENDENCY","features":[466]},{"name":"CLCTL_ADD_OWNER","features":[466]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT","features":[466]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_32BIT","features":[466]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_64BIT","features":[466]},{"name":"CLCTL_BATCH_BLOCK_KEY","features":[466]},{"name":"CLCTL_BATCH_UNBLOCK_KEY","features":[466]},{"name":"CLCTL_BLOCK_GEM_SEND_RECV","features":[466]},{"name":"CLCTL_CHECK_DRAIN_VETO","features":[466]},{"name":"CLCTL_CHECK_VOTER_DOWN","features":[466]},{"name":"CLCTL_CHECK_VOTER_DOWN_WITNESS","features":[466]},{"name":"CLCTL_CHECK_VOTER_EVICT","features":[466]},{"name":"CLCTL_CHECK_VOTER_EVICT_WITNESS","features":[466]},{"name":"CLCTL_CLEAR_NODE_CONNECTION_INFO","features":[466]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[466]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[466]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[466]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[466]},{"name":"CLCTL_CLUSTER_BASE","features":[466]},{"name":"CLCTL_CLUSTER_NAME_CHANGED","features":[466]},{"name":"CLCTL_CLUSTER_VERSION_CHANGED","features":[466]},{"name":"CLCTL_CODES","features":[466]},{"name":"CLCTL_DELETE","features":[466]},{"name":"CLCTL_DELETE_CRYPTO_CHECKPOINT","features":[466]},{"name":"CLCTL_DELETE_REGISTRY_CHECKPOINT","features":[466]},{"name":"CLCTL_DISABLE_SHARED_VOLUME_DIRECTIO","features":[466]},{"name":"CLCTL_ENABLE_SHARED_VOLUME_DIRECTIO","features":[466]},{"name":"CLCTL_ENUM_AFFINITY_RULE_NAMES","features":[466]},{"name":"CLCTL_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLCTL_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLCTL_EVICT_NODE","features":[466]},{"name":"CLCTL_FILESERVER_SHARE_ADD","features":[466]},{"name":"CLCTL_FILESERVER_SHARE_DEL","features":[466]},{"name":"CLCTL_FILESERVER_SHARE_MODIFY","features":[466]},{"name":"CLCTL_FILESERVER_SHARE_REPORT","features":[466]},{"name":"CLCTL_FIXUP_ON_UPGRADE","features":[466]},{"name":"CLCTL_FORCE_DB_FLUSH","features":[466]},{"name":"CLCTL_FORCE_QUORUM","features":[466]},{"name":"CLCTL_FSWITNESS_GET_EPOCH_INFO","features":[466]},{"name":"CLCTL_FSWITNESS_RELEASE_LOCK","features":[466]},{"name":"CLCTL_FSWITNESS_SET_EPOCH_INFO","features":[466]},{"name":"CLCTL_GET_ARB_TIMEOUT","features":[466]},{"name":"CLCTL_GET_CHARACTERISTICS","features":[466]},{"name":"CLCTL_GET_CLASS_INFO","features":[466]},{"name":"CLCTL_GET_CLUSDB_TIMESTAMP","features":[466]},{"name":"CLCTL_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[466]},{"name":"CLCTL_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLCTL_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLCTL_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[466]},{"name":"CLCTL_GET_CRYPTO_CHECKPOINTS","features":[466]},{"name":"CLCTL_GET_DNS_NAME","features":[466]},{"name":"CLCTL_GET_FAILURE_INFO","features":[466]},{"name":"CLCTL_GET_FLAGS","features":[466]},{"name":"CLCTL_GET_FQDN","features":[466]},{"name":"CLCTL_GET_GEMID_VECTOR","features":[466]},{"name":"CLCTL_GET_GUM_LOCK_OWNER","features":[466]},{"name":"CLCTL_GET_ID","features":[466]},{"name":"CLCTL_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[466]},{"name":"CLCTL_GET_LOADBAL_PROCESS_LIST","features":[466]},{"name":"CLCTL_GET_NAME","features":[466]},{"name":"CLCTL_GET_NETWORK","features":[466]},{"name":"CLCTL_GET_NETWORK_NAME","features":[466]},{"name":"CLCTL_GET_NODE","features":[466]},{"name":"CLCTL_GET_NODES_IN_FD","features":[466]},{"name":"CLCTL_GET_OPERATION_CONTEXT","features":[466]},{"name":"CLCTL_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLCTL_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLCTL_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[466]},{"name":"CLCTL_GET_REGISTRY_CHECKPOINTS","features":[466]},{"name":"CLCTL_GET_REQUIRED_DEPENDENCIES","features":[466]},{"name":"CLCTL_GET_RESOURCE_TYPE","features":[466]},{"name":"CLCTL_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLCTL_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLCTL_GET_SHARED_VOLUME_ID","features":[466]},{"name":"CLCTL_GET_STATE_CHANGE_TIME","features":[466]},{"name":"CLCTL_GET_STORAGE_CONFIGURATION","features":[466]},{"name":"CLCTL_GET_STORAGE_CONFIG_ATTRIBUTES","features":[466]},{"name":"CLCTL_GET_STUCK_NODES","features":[466]},{"name":"CLCTL_GLOBAL_SHIFT","features":[466]},{"name":"CLCTL_GROUPSET_GET_GROUPS","features":[466]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[466]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[466]},{"name":"CLCTL_GROUP_GET_LAST_MOVE_TIME","features":[466]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPS","features":[466]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[466]},{"name":"CLCTL_GROUP_SET_CCF_FROM_MASTER","features":[466]},{"name":"CLCTL_HOLD_IO","features":[466]},{"name":"CLCTL_INITIALIZE","features":[466]},{"name":"CLCTL_INJECT_GEM_FAULT","features":[466]},{"name":"CLCTL_INSTALL_NODE","features":[466]},{"name":"CLCTL_INTERNAL_SHIFT","features":[466]},{"name":"CLCTL_INTRODUCE_GEM_REPAIR_DELAY","features":[466]},{"name":"CLCTL_IPADDRESS_RELEASE_LEASE","features":[466]},{"name":"CLCTL_IPADDRESS_RENEW_LEASE","features":[466]},{"name":"CLCTL_IS_FEATURE_INSTALLED","features":[466]},{"name":"CLCTL_IS_QUORUM_BLOCKED","features":[466]},{"name":"CLCTL_IS_S2D_FEATURE_SUPPORTED","features":[466]},{"name":"CLCTL_JOINING_GROUP","features":[466]},{"name":"CLCTL_LEAVING_GROUP","features":[466]},{"name":"CLCTL_MODIFY_SHIFT","features":[466]},{"name":"CLCTL_NETNAME_CREDS_NOTIFYCAM","features":[466]},{"name":"CLCTL_NETNAME_DELETE_CO","features":[466]},{"name":"CLCTL_NETNAME_GET_OU_FOR_VCO","features":[466]},{"name":"CLCTL_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[466]},{"name":"CLCTL_NETNAME_REGISTER_DNS_RECORDS","features":[466]},{"name":"CLCTL_NETNAME_REPAIR_VCO","features":[466]},{"name":"CLCTL_NETNAME_RESET_VCO","features":[466]},{"name":"CLCTL_NETNAME_SET_PWD_INFO","features":[466]},{"name":"CLCTL_NETNAME_SET_PWD_INFOEX","features":[466]},{"name":"CLCTL_NETNAME_VALIDATE_VCO","features":[466]},{"name":"CLCTL_NOTIFY_DRAIN_COMPLETE","features":[466]},{"name":"CLCTL_NOTIFY_INFRASTRUCTURE_SOFS_CHANGED","features":[466]},{"name":"CLCTL_NOTIFY_MONITOR_SHUTTING_DOWN","features":[466]},{"name":"CLCTL_NOTIFY_OWNER_CHANGE","features":[466]},{"name":"CLCTL_NOTIFY_QUORUM_STATUS","features":[466]},{"name":"CLCTL_POOL_GET_DRIVE_INFO","features":[466]},{"name":"CLCTL_PROVIDER_STATE_CHANGE","features":[466]},{"name":"CLCTL_QUERY_DELETE","features":[466]},{"name":"CLCTL_QUERY_MAINTENANCE_MODE","features":[466]},{"name":"CLCTL_RELOAD_AUTOLOGGER_CONFIG","features":[466]},{"name":"CLCTL_REMOVE_DEPENDENCY","features":[466]},{"name":"CLCTL_REMOVE_NODE","features":[466]},{"name":"CLCTL_REMOVE_OWNER","features":[466]},{"name":"CLCTL_REPLICATION_ADD_REPLICATION_GROUP","features":[466]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[466]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[466]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[466]},{"name":"CLCTL_REPLICATION_GET_LOG_INFO","features":[466]},{"name":"CLCTL_REPLICATION_GET_LOG_VOLUME","features":[466]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_DISKS","features":[466]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[466]},{"name":"CLCTL_REPLICATION_GET_REPLICA_VOLUMES","features":[466]},{"name":"CLCTL_REPLICATION_GET_RESOURCE_GROUP","features":[466]},{"name":"CLCTL_RESOURCE_PREPARE_UPGRADE","features":[466]},{"name":"CLCTL_RESOURCE_UPGRADE_COMPLETED","features":[466]},{"name":"CLCTL_RESOURCE_UPGRADE_DLL","features":[466]},{"name":"CLCTL_RESUME_IO","features":[466]},{"name":"CLCTL_RW_MODIFY_NOOP","features":[466]},{"name":"CLCTL_SCALEOUT_COMMAND","features":[466]},{"name":"CLCTL_SCALEOUT_CONTROL","features":[466]},{"name":"CLCTL_SCALEOUT_GET_CLUSTERS","features":[466]},{"name":"CLCTL_SEND_DUMMY_GEM_MESSAGES","features":[466]},{"name":"CLCTL_SET_ACCOUNT_ACCESS","features":[466]},{"name":"CLCTL_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[466]},{"name":"CLCTL_SET_CLUSTER_S2D_ENABLED","features":[466]},{"name":"CLCTL_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLCTL_SET_CSV_MAINTENANCE_MODE","features":[466]},{"name":"CLCTL_SET_DNS_DOMAIN","features":[466]},{"name":"CLCTL_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[466]},{"name":"CLCTL_SET_MAINTENANCE_MODE","features":[466]},{"name":"CLCTL_SET_NAME","features":[466]},{"name":"CLCTL_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLCTL_SET_SHARED_VOLUME_BACKUP_MODE","features":[466]},{"name":"CLCTL_SET_STORAGE_CONFIGURATION","features":[466]},{"name":"CLCTL_SHUTDOWN","features":[466]},{"name":"CLCTL_STARTING_PHASE1","features":[466]},{"name":"CLCTL_STARTING_PHASE2","features":[466]},{"name":"CLCTL_STATE_CHANGE_REASON","features":[466]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS","features":[466]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX","features":[466]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[466]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHINFO","features":[466]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHS","features":[466]},{"name":"CLCTL_STORAGE_GET_CLUSPORT_DISK_COUNT","features":[466]},{"name":"CLCTL_STORAGE_GET_DIRTY","features":[466]},{"name":"CLCTL_STORAGE_GET_DISKID","features":[466]},{"name":"CLCTL_STORAGE_GET_DISK_INFO","features":[466]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX","features":[466]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX2","features":[466]},{"name":"CLCTL_STORAGE_GET_DISK_NUMBER_INFO","features":[466]},{"name":"CLCTL_STORAGE_GET_DRIVELETTERS","features":[466]},{"name":"CLCTL_STORAGE_GET_MOUNTPOINTS","features":[466]},{"name":"CLCTL_STORAGE_GET_PHYSICAL_DISK_INFO","features":[466]},{"name":"CLCTL_STORAGE_GET_RESOURCEID","features":[466]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_INFO","features":[466]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[466]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_STATES","features":[466]},{"name":"CLCTL_STORAGE_IS_CLUSTERABLE","features":[466]},{"name":"CLCTL_STORAGE_IS_CSV_FILE","features":[466]},{"name":"CLCTL_STORAGE_IS_PATH_VALID","features":[466]},{"name":"CLCTL_STORAGE_IS_SHARED_VOLUME","features":[466]},{"name":"CLCTL_STORAGE_REMAP_DRIVELETTER","features":[466]},{"name":"CLCTL_STORAGE_REMOVE_VM_OWNERSHIP","features":[466]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME","features":[466]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[466]},{"name":"CLCTL_STORAGE_SET_DRIVELETTER","features":[466]},{"name":"CLCTL_STORAGE_SYNC_CLUSDISK_DB","features":[466]},{"name":"CLCTL_UNDELETE","features":[466]},{"name":"CLCTL_UNKNOWN","features":[466]},{"name":"CLCTL_USER_SHIFT","features":[466]},{"name":"CLCTL_VALIDATE_CHANGE_GROUP","features":[466]},{"name":"CLCTL_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLCTL_VALIDATE_DIRECTORY","features":[466]},{"name":"CLCTL_VALIDATE_NETNAME","features":[466]},{"name":"CLCTL_VALIDATE_PATH","features":[466]},{"name":"CLCTL_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLOUD_WITNESS_CONTAINER_NAME","features":[466]},{"name":"CLRES_CALLBACK_FUNCTION_TABLE","features":[303,466]},{"name":"CLRES_FUNCTION_TABLE","features":[303,466,364]},{"name":"CLRES_V1_FUNCTIONS","features":[303,466,364]},{"name":"CLRES_V2_FUNCTIONS","features":[303,466,364]},{"name":"CLRES_V3_FUNCTIONS","features":[303,466,364]},{"name":"CLRES_V4_FUNCTIONS","features":[303,466,364]},{"name":"CLRES_VERSION_V1_00","features":[466]},{"name":"CLRES_VERSION_V2_00","features":[466]},{"name":"CLRES_VERSION_V3_00","features":[466]},{"name":"CLRES_VERSION_V4_00","features":[466]},{"name":"CLUADMEX_OBJECT_TYPE","features":[466]},{"name":"CLUADMEX_OT_CLUSTER","features":[466]},{"name":"CLUADMEX_OT_GROUP","features":[466]},{"name":"CLUADMEX_OT_NETINTERFACE","features":[466]},{"name":"CLUADMEX_OT_NETWORK","features":[466]},{"name":"CLUADMEX_OT_NODE","features":[466]},{"name":"CLUADMEX_OT_NONE","features":[466]},{"name":"CLUADMEX_OT_RESOURCE","features":[466]},{"name":"CLUADMEX_OT_RESOURCETYPE","features":[466]},{"name":"CLUSAPI_CHANGE_ACCESS","features":[466]},{"name":"CLUSAPI_CHANGE_RESOURCE_GROUP_FORCE_MOVE_TO_CSV","features":[466]},{"name":"CLUSAPI_GROUP_MOVE_FAILBACK","features":[466]},{"name":"CLUSAPI_GROUP_MOVE_HIGH_PRIORITY_START","features":[466]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_AFFINITY_RULE","features":[466]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_RESOURCE_STATUS","features":[466]},{"name":"CLUSAPI_GROUP_MOVE_QUEUE_ENABLED","features":[466]},{"name":"CLUSAPI_GROUP_MOVE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[466]},{"name":"CLUSAPI_GROUP_OFFLINE_IGNORE_RESOURCE_STATUS","features":[466]},{"name":"CLUSAPI_GROUP_ONLINE_BEST_POSSIBLE_NODE","features":[466]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_AFFINITY_RULE","features":[466]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_RESOURCE_STATUS","features":[466]},{"name":"CLUSAPI_GROUP_ONLINE_SYNCHRONOUS","features":[466]},{"name":"CLUSAPI_NODE_AVOID_PLACEMENT","features":[466]},{"name":"CLUSAPI_NODE_PAUSE_REMAIN_ON_PAUSED_NODE_ON_MOVE_ERROR","features":[466]},{"name":"CLUSAPI_NODE_PAUSE_RETRY_DRAIN_ON_FAILURE","features":[466]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_PINNED_VMS_ONLY","features":[466]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_STORAGE","features":[466]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_VMS","features":[466]},{"name":"CLUSAPI_NO_ACCESS","features":[466]},{"name":"CLUSAPI_READ_ACCESS","features":[466]},{"name":"CLUSAPI_REASON_HANDLER","features":[303,466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_FORCE_WITH_TERMINATION","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_IGNORE_RESOURCE_STATUS","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_DELETED","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_RESTARTED","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_MOVING","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_NONE","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_PREEMPTED","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_SHUTTING_DOWN","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_UNKNOWN","features":[466]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_USER_REQUESTED","features":[466]},{"name":"CLUSAPI_RESOURCE_ONLINE_BEST_POSSIBLE_NODE","features":[466]},{"name":"CLUSAPI_RESOURCE_ONLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[466]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_AFFINITY_RULE","features":[466]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_RESOURCE_STATUS","features":[466]},{"name":"CLUSAPI_RESOURCE_ONLINE_NECESSARY_FOR_QUORUM","features":[466]},{"name":"CLUSAPI_VALID_CHANGE_RESOURCE_GROUP_FLAGS","features":[466]},{"name":"CLUSAPI_VERSION","features":[466]},{"name":"CLUSAPI_VERSION_NI","features":[466]},{"name":"CLUSAPI_VERSION_RS3","features":[466]},{"name":"CLUSAPI_VERSION_SERVER2008","features":[466]},{"name":"CLUSAPI_VERSION_SERVER2008R2","features":[466]},{"name":"CLUSAPI_VERSION_WINDOWS8","features":[466]},{"name":"CLUSAPI_VERSION_WINDOWSBLUE","features":[466]},{"name":"CLUSAPI_VERSION_WINTHRESHOLD","features":[466]},{"name":"CLUSCTL_ACCESS_MODE_MASK","features":[466]},{"name":"CLUSCTL_ACCESS_SHIFT","features":[466]},{"name":"CLUSCTL_AFFINITYRULE_CODES","features":[466]},{"name":"CLUSCTL_AFFINITYRULE_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_AFFINITYRULE_GET_GROUPNAMES","features":[466]},{"name":"CLUSCTL_AFFINITYRULE_GET_ID","features":[466]},{"name":"CLUSCTL_AFFINITYRULE_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_AFFINITYRULE_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[466]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[466]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[466]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[466]},{"name":"CLUSCTL_CLUSTER_BATCH_BLOCK_KEY","features":[466]},{"name":"CLUSCTL_CLUSTER_BATCH_UNBLOCK_KEY","features":[466]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN","features":[466]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN_WITNESS","features":[466]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT","features":[466]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT_WITNESS","features":[466]},{"name":"CLUSCTL_CLUSTER_CLEAR_NODE_CONNECTION_INFO","features":[466]},{"name":"CLUSCTL_CLUSTER_CODES","features":[466]},{"name":"CLUSCTL_CLUSTER_ENUM_AFFINITY_RULE_NAMES","features":[466]},{"name":"CLUSCTL_CLUSTER_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_FORCE_FLUSH_DB","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_CLMUSR_TOKEN","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_CLUSDB_TIMESTAMP","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_FQDN","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_GUM_LOCK_OWNER","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_NODES_IN_FD","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_SHARED_VOLUME_ID","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIGURATION","features":[466]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIG_ATTRIBUTES","features":[466]},{"name":"CLUSCTL_CLUSTER_RELOAD_AUTOLOGGER_CONFIG","features":[466]},{"name":"CLUSCTL_CLUSTER_REMOVE_NODE","features":[466]},{"name":"CLUSCTL_CLUSTER_SET_ACCOUNT_ACCESS","features":[466]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[466]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_ENABLED","features":[466]},{"name":"CLUSCTL_CLUSTER_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_SET_DNS_DOMAIN","features":[466]},{"name":"CLUSCTL_CLUSTER_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_SET_STORAGE_CONFIGURATION","features":[466]},{"name":"CLUSCTL_CLUSTER_SHUTDOWN","features":[466]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME","features":[466]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[466]},{"name":"CLUSCTL_CLUSTER_UNKNOWN","features":[466]},{"name":"CLUSCTL_CLUSTER_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_CLUSTER_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_CONTROL_CODE_MASK","features":[466]},{"name":"CLUSCTL_FUNCTION_SHIFT","features":[466]},{"name":"CLUSCTL_GET_OPERATION_CONTEXT_PARAMS_VERSION_1","features":[466]},{"name":"CLUSCTL_GROUPSET_CODES","features":[466]},{"name":"CLUSCTL_GROUPSET_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUPSET_GET_GROUPS","features":[466]},{"name":"CLUSCTL_GROUPSET_GET_ID","features":[466]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[466]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[466]},{"name":"CLUSCTL_GROUPSET_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUPSET_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_CODES","features":[466]},{"name":"CLUSCTL_GROUP_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_GET_CHARACTERISTICS","features":[466]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_GROUP_GET_FAILURE_INFO","features":[466]},{"name":"CLUSCTL_GROUP_GET_FLAGS","features":[466]},{"name":"CLUSCTL_GROUP_GET_ID","features":[466]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME","features":[466]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME_OUTPUT","features":[303,466]},{"name":"CLUSCTL_GROUP_GET_NAME","features":[466]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPS","features":[466]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[466]},{"name":"CLUSCTL_GROUP_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_QUERY_DELETE","features":[466]},{"name":"CLUSCTL_GROUP_SET_CCF_FROM_MASTER","features":[466]},{"name":"CLUSCTL_GROUP_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_UNKNOWN","features":[466]},{"name":"CLUSCTL_GROUP_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_GROUP_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_CODES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_CHARACTERISTICS","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_FLAGS","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_ID","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_NAME","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_NETWORK","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_NODE","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_UNKNOWN","features":[466]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_CODES","features":[466]},{"name":"CLUSCTL_NETWORK_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_GET_CHARACTERISTICS","features":[466]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_NETWORK_GET_FLAGS","features":[466]},{"name":"CLUSCTL_NETWORK_GET_ID","features":[466]},{"name":"CLUSCTL_NETWORK_GET_NAME","features":[466]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_NETWORK_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_UNKNOWN","features":[466]},{"name":"CLUSCTL_NETWORK_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NETWORK_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_BLOCK_GEM_SEND_RECV","features":[466]},{"name":"CLUSCTL_NODE_CODES","features":[466]},{"name":"CLUSCTL_NODE_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_GET_CHARACTERISTICS","features":[466]},{"name":"CLUSCTL_NODE_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[466]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_NODE_GET_FLAGS","features":[466]},{"name":"CLUSCTL_NODE_GET_GEMID_VECTOR","features":[466]},{"name":"CLUSCTL_NODE_GET_ID","features":[466]},{"name":"CLUSCTL_NODE_GET_NAME","features":[466]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_NODE_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_GET_STUCK_NODES","features":[466]},{"name":"CLUSCTL_NODE_INJECT_GEM_FAULT","features":[466]},{"name":"CLUSCTL_NODE_INTRODUCE_GEM_REPAIR_DELAY","features":[466]},{"name":"CLUSCTL_NODE_SEND_DUMMY_GEM_MESSAGES","features":[466]},{"name":"CLUSCTL_NODE_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_UNKNOWN","features":[466]},{"name":"CLUSCTL_NODE_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_NODE_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_OBJECT_MASK","features":[466]},{"name":"CLUSCTL_OBJECT_SHIFT","features":[466]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT","features":[466]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT_EX","features":[466]},{"name":"CLUSCTL_RESOURCE_ADD_DEPENDENCY","features":[466]},{"name":"CLUSCTL_RESOURCE_ADD_OWNER","features":[466]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT","features":[466]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_32BIT","features":[466]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_64BIT","features":[466]},{"name":"CLUSCTL_RESOURCE_CHECK_DRAIN_VETO","features":[466]},{"name":"CLUSCTL_RESOURCE_CLUSTER_NAME_CHANGED","features":[466]},{"name":"CLUSCTL_RESOURCE_CLUSTER_VERSION_CHANGED","features":[466]},{"name":"CLUSCTL_RESOURCE_CODES","features":[466]},{"name":"CLUSCTL_RESOURCE_DELETE","features":[466]},{"name":"CLUSCTL_RESOURCE_DELETE_CRYPTO_CHECKPOINT","features":[466]},{"name":"CLUSCTL_RESOURCE_DELETE_REGISTRY_CHECKPOINT","features":[466]},{"name":"CLUSCTL_RESOURCE_DISABLE_SHARED_VOLUME_DIRECTIO","features":[466]},{"name":"CLUSCTL_RESOURCE_ENABLE_SHARED_VOLUME_DIRECTIO","features":[466]},{"name":"CLUSCTL_RESOURCE_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_EVICT_NODE","features":[466]},{"name":"CLUSCTL_RESOURCE_FORCE_QUORUM","features":[466]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_GET_EPOCH_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_RELEASE_LOCK","features":[466]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_SET_EPOCH_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_CHARACTERISTICS","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_CLASS_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_CRYPTO_CHECKPOINTS","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_DNS_NAME","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_FAILURE_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_FLAGS","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_ID","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_LOADBAL_PROCESS_LIST","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_NAME","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_NETWORK_NAME","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_NODES_IN_FD","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_OPERATION_CONTEXT","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_REGISTRY_CHECKPOINTS","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_REQUIRED_DEPENDENCIES","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_RESOURCE_TYPE","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_GET_STATE_CHANGE_TIME","features":[466]},{"name":"CLUSCTL_RESOURCE_INITIALIZE","features":[466]},{"name":"CLUSCTL_RESOURCE_INSTALL_NODE","features":[466]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RELEASE_LEASE","features":[466]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RENEW_LEASE","features":[466]},{"name":"CLUSCTL_RESOURCE_IS_QUORUM_BLOCKED","features":[466]},{"name":"CLUSCTL_RESOURCE_JOINING_GROUP","features":[466]},{"name":"CLUSCTL_RESOURCE_LEAVING_GROUP","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_CREDS_NOTIFYCAM","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_DELETE_CO","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_REGISTER_DNS_RECORDS","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_REPAIR_VCO","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_RESET_VCO","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFOEX","features":[466]},{"name":"CLUSCTL_RESOURCE_NETNAME_VALIDATE_VCO","features":[466]},{"name":"CLUSCTL_RESOURCE_NOTIFY_DRAIN_COMPLETE","features":[466]},{"name":"CLUSCTL_RESOURCE_NOTIFY_OWNER_CHANGE","features":[466]},{"name":"CLUSCTL_RESOURCE_NOTIFY_QUORUM_STATUS","features":[466]},{"name":"CLUSCTL_RESOURCE_POOL_GET_DRIVE_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_PREPARE_UPGRADE","features":[466]},{"name":"CLUSCTL_RESOURCE_PROVIDER_STATE_CHANGE","features":[466]},{"name":"CLUSCTL_RESOURCE_QUERY_DELETE","features":[466]},{"name":"CLUSCTL_RESOURCE_QUERY_MAINTENANCE_MODE","features":[466]},{"name":"CLUSCTL_RESOURCE_REMOVE_DEPENDENCY","features":[466]},{"name":"CLUSCTL_RESOURCE_REMOVE_OWNER","features":[466]},{"name":"CLUSCTL_RESOURCE_RLUA_GET_VIRTUAL_SERVER_TOKEN","features":[466]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFOEX","features":[466]},{"name":"CLUSCTL_RESOURCE_RW_MODIFY_NOOP","features":[466]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_COMMAND","features":[466]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_CONTROL","features":[466]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_GET_CLUSTERS","features":[466]},{"name":"CLUSCTL_RESOURCE_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_SET_CSV_MAINTENANCE_MODE","features":[466]},{"name":"CLUSCTL_RESOURCE_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[466]},{"name":"CLUSCTL_RESOURCE_SET_MAINTENANCE_MODE","features":[466]},{"name":"CLUSCTL_RESOURCE_SET_NAME","features":[466]},{"name":"CLUSCTL_RESOURCE_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_SET_SHARED_VOLUME_BACKUP_MODE","features":[466]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON","features":[466]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_STRUCT","features":[466]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_VERSION_1","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DIRTY","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISKID","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX2","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_NUMBER_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_MOUNTPOINTS","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_STATES","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_PATH_VALID","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_SHARED_VOLUME","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[466]},{"name":"CLUSCTL_RESOURCE_STORAGE_SET_DRIVELETTER","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_CHECK_DRAIN_VETO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_CLUSTER_VERSION_CHANGED","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_CODES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_EVICT_NODE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_FIXUP_ON_UPGRADE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_DIRECTORY","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_PATH","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_SCRIPT_VALIDATE_PATH","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_ARB_TIMEOUT","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CHARACTERISTICS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CLASS_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CRYPTO_CHECKPOINTS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_FLAGS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REGISTRY_CHECKPOINTS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REQUIRED_DEPENDENCIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_HOLD_IO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_INSTALL_NODE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_GET_OU_FOR_VCO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_VALIDATE_NETNAME","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_DRAIN_COMPLETE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_MONITOR_SHUTTING_DOWN","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_PREPARE_UPGRADE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_QUERY_DELETE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_ADD_REPLICATION_GROUP","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_VOLUME","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_DISKS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICA_VOLUMES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_RESOURCE_GROUP","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_RESUME_IO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_ADD_VOLUME_INFO","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_FILTER_BY_POOL","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_INCLUDE_NON_SHARED_DISKS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INPUT","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DISKID","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DRIVELETTERS","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_RESOURCEID","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CLUSTERABLE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CSV_FILE","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMAP_DRIVELETTER","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMOVE_VM_OWNERSHIP","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_SYNC_CLUSDISK_DB","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_UNKNOWN","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_UPGRADE_COMPLETED","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_TYPE_WITNESS_VALIDATE_PATH","features":[466]},{"name":"CLUSCTL_RESOURCE_UNDELETE","features":[466]},{"name":"CLUSCTL_RESOURCE_UNKNOWN","features":[466]},{"name":"CLUSCTL_RESOURCE_UPGRADE_COMPLETED","features":[466]},{"name":"CLUSCTL_RESOURCE_UPGRADE_DLL","features":[466]},{"name":"CLUSCTL_RESOURCE_VALIDATE_CHANGE_GROUP","features":[466]},{"name":"CLUSCTL_RESOURCE_VALIDATE_COMMON_PROPERTIES","features":[466]},{"name":"CLUSCTL_RESOURCE_VALIDATE_PRIVATE_PROPERTIES","features":[466]},{"name":"CLUSGROUPSET_STATUS_APPLICATION_READY","features":[466]},{"name":"CLUSGROUPSET_STATUS_GROUPS_ONLINE","features":[466]},{"name":"CLUSGROUPSET_STATUS_GROUPS_PENDING","features":[466]},{"name":"CLUSGROUPSET_STATUS_OS_HEARTBEAT","features":[466]},{"name":"CLUSGROUP_TYPE","features":[466]},{"name":"CLUSGRP_STATUS_APPLICATION_READY","features":[466]},{"name":"CLUSGRP_STATUS_EMBEDDED_FAILURE","features":[466]},{"name":"CLUSGRP_STATUS_LOCKED_MODE","features":[466]},{"name":"CLUSGRP_STATUS_NETWORK_FAILURE","features":[466]},{"name":"CLUSGRP_STATUS_OFFLINE_DUE_TO_ANTIAFFINITY_CONFLICT","features":[466]},{"name":"CLUSGRP_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[466]},{"name":"CLUSGRP_STATUS_OS_HEARTBEAT","features":[466]},{"name":"CLUSGRP_STATUS_PHYSICAL_RESOURCES_LACKING","features":[466]},{"name":"CLUSGRP_STATUS_PREEMPTED","features":[466]},{"name":"CLUSGRP_STATUS_UNMONITORED","features":[466]},{"name":"CLUSGRP_STATUS_WAITING_FOR_DEPENDENCIES","features":[466]},{"name":"CLUSGRP_STATUS_WAITING_IN_QUEUE_FOR_MOVE","features":[466]},{"name":"CLUSGRP_STATUS_WAITING_TO_START","features":[466]},{"name":"CLUSPROP_BINARY","features":[466]},{"name":"CLUSPROP_BUFFER_HELPER","features":[303,466,306]},{"name":"CLUSPROP_DWORD","features":[466]},{"name":"CLUSPROP_FILETIME","features":[303,466]},{"name":"CLUSPROP_FORMAT_BINARY","features":[466]},{"name":"CLUSPROP_FORMAT_DWORD","features":[466]},{"name":"CLUSPROP_FORMAT_EXPANDED_SZ","features":[466]},{"name":"CLUSPROP_FORMAT_EXPAND_SZ","features":[466]},{"name":"CLUSPROP_FORMAT_FILETIME","features":[466]},{"name":"CLUSPROP_FORMAT_LARGE_INTEGER","features":[466]},{"name":"CLUSPROP_FORMAT_LONG","features":[466]},{"name":"CLUSPROP_FORMAT_MULTI_SZ","features":[466]},{"name":"CLUSPROP_FORMAT_PROPERTY_LIST","features":[466]},{"name":"CLUSPROP_FORMAT_SECURITY_DESCRIPTOR","features":[466]},{"name":"CLUSPROP_FORMAT_SZ","features":[466]},{"name":"CLUSPROP_FORMAT_ULARGE_INTEGER","features":[466]},{"name":"CLUSPROP_FORMAT_UNKNOWN","features":[466]},{"name":"CLUSPROP_FORMAT_USER","features":[466]},{"name":"CLUSPROP_FORMAT_VALUE_LIST","features":[466]},{"name":"CLUSPROP_FORMAT_WORD","features":[466]},{"name":"CLUSPROP_FTSET_INFO","features":[466]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS","features":[466]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_DISABLED","features":[466]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_ENABLED","features":[466]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_TRACK_NIC","features":[466]},{"name":"CLUSPROP_LARGE_INTEGER","features":[466]},{"name":"CLUSPROP_LIST","features":[466]},{"name":"CLUSPROP_LONG","features":[466]},{"name":"CLUSPROP_PARTITION_INFO","features":[466]},{"name":"CLUSPROP_PARTITION_INFO_EX","features":[466]},{"name":"CLUSPROP_PARTITION_INFO_EX2","features":[466]},{"name":"CLUSPROP_PIFLAGS","features":[466]},{"name":"CLUSPROP_PIFLAG_DEFAULT_QUORUM","features":[466]},{"name":"CLUSPROP_PIFLAG_ENCRYPTION_ENABLED","features":[466]},{"name":"CLUSPROP_PIFLAG_RAW","features":[466]},{"name":"CLUSPROP_PIFLAG_REMOVABLE","features":[466]},{"name":"CLUSPROP_PIFLAG_STICKY","features":[466]},{"name":"CLUSPROP_PIFLAG_UNKNOWN","features":[466]},{"name":"CLUSPROP_PIFLAG_USABLE","features":[466]},{"name":"CLUSPROP_PIFLAG_USABLE_FOR_CSV","features":[466]},{"name":"CLUSPROP_REQUIRED_DEPENDENCY","features":[466]},{"name":"CLUSPROP_RESOURCE_CLASS","features":[466]},{"name":"CLUSPROP_RESOURCE_CLASS_INFO","features":[466]},{"name":"CLUSPROP_SCSI_ADDRESS","features":[466]},{"name":"CLUSPROP_SECURITY_DESCRIPTOR","features":[466,306]},{"name":"CLUSPROP_SYNTAX","features":[466]},{"name":"CLUSPROP_SYNTAX_DISK_GUID","features":[466]},{"name":"CLUSPROP_SYNTAX_DISK_NUMBER","features":[466]},{"name":"CLUSPROP_SYNTAX_DISK_SERIALNUMBER","features":[466]},{"name":"CLUSPROP_SYNTAX_DISK_SIGNATURE","features":[466]},{"name":"CLUSPROP_SYNTAX_DISK_SIZE","features":[466]},{"name":"CLUSPROP_SYNTAX_ENDMARK","features":[466]},{"name":"CLUSPROP_SYNTAX_FTSET_INFO","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_BINARY","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_DWORD","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPANDED_SZ","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPAND_SZ","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_FILETIME","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LARGE_INTEGER","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LONG","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_MULTI_SZ","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_PROPERTY_LIST","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SECURITY_DESCRIPTOR","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SZ","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_ULARGE_INTEGER","features":[466]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_WORD","features":[466]},{"name":"CLUSPROP_SYNTAX_NAME","features":[466]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO","features":[466]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX","features":[466]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX2","features":[466]},{"name":"CLUSPROP_SYNTAX_RESCLASS","features":[466]},{"name":"CLUSPROP_SYNTAX_SCSI_ADDRESS","features":[466]},{"name":"CLUSPROP_SYNTAX_STORAGE_DEVICE_ID_DESCRIPTOR","features":[466]},{"name":"CLUSPROP_SZ","features":[466]},{"name":"CLUSPROP_TYPE_DISK_GUID","features":[466]},{"name":"CLUSPROP_TYPE_DISK_NUMBER","features":[466]},{"name":"CLUSPROP_TYPE_DISK_SERIALNUMBER","features":[466]},{"name":"CLUSPROP_TYPE_DISK_SIZE","features":[466]},{"name":"CLUSPROP_TYPE_ENDMARK","features":[466]},{"name":"CLUSPROP_TYPE_FTSET_INFO","features":[466]},{"name":"CLUSPROP_TYPE_LIST_VALUE","features":[466]},{"name":"CLUSPROP_TYPE_NAME","features":[466]},{"name":"CLUSPROP_TYPE_PARTITION_INFO","features":[466]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX","features":[466]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX2","features":[466]},{"name":"CLUSPROP_TYPE_RESCLASS","features":[466]},{"name":"CLUSPROP_TYPE_RESERVED1","features":[466]},{"name":"CLUSPROP_TYPE_SCSI_ADDRESS","features":[466]},{"name":"CLUSPROP_TYPE_SIGNATURE","features":[466]},{"name":"CLUSPROP_TYPE_STORAGE_DEVICE_ID_DESCRIPTOR","features":[466]},{"name":"CLUSPROP_TYPE_UNKNOWN","features":[466]},{"name":"CLUSPROP_TYPE_USER","features":[466]},{"name":"CLUSPROP_ULARGE_INTEGER","features":[466]},{"name":"CLUSPROP_VALUE","features":[466]},{"name":"CLUSPROP_WORD","features":[466]},{"name":"CLUSREG_COMMAND_NONE","features":[466]},{"name":"CLUSREG_CONDITION_EXISTS","features":[466]},{"name":"CLUSREG_CONDITION_IS_EQUAL","features":[466]},{"name":"CLUSREG_CONDITION_IS_GREATER_THAN","features":[466]},{"name":"CLUSREG_CONDITION_IS_LESS_THAN","features":[466]},{"name":"CLUSREG_CONDITION_IS_NOT_EQUAL","features":[466]},{"name":"CLUSREG_CONDITION_KEY_EXISTS","features":[466]},{"name":"CLUSREG_CONDITION_KEY_NOT_EXISTS","features":[466]},{"name":"CLUSREG_CONDITION_NOT_EXISTS","features":[466]},{"name":"CLUSREG_CONTROL_COMMAND","features":[466]},{"name":"CLUSREG_CREATE_KEY","features":[466]},{"name":"CLUSREG_DATABASE_ISOLATE_READ","features":[466]},{"name":"CLUSREG_DATABASE_SYNC_WRITE_TO_ALL_NODES","features":[466]},{"name":"CLUSREG_DELETE_KEY","features":[466]},{"name":"CLUSREG_DELETE_VALUE","features":[466]},{"name":"CLUSREG_KEYNAME_OBJECTGUIDS","features":[466]},{"name":"CLUSREG_LAST_COMMAND","features":[466]},{"name":"CLUSREG_NAME_AFFINITYRULE_ENABLED","features":[466]},{"name":"CLUSREG_NAME_AFFINITYRULE_GROUPS","features":[466]},{"name":"CLUSREG_NAME_AFFINITYRULE_NAME","features":[466]},{"name":"CLUSREG_NAME_AFFINITYRULE_TYPE","features":[466]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ACCOUNT_NAME","features":[466]},{"name":"CLUSREG_NAME_CLOUDWITNESS_CONTAINER_NAME","features":[466]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ENDPOINT_INFO","features":[466]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_KEY","features":[466]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_TOKEN","features":[466]},{"name":"CLUSREG_NAME_CLUS_DEFAULT_NETWORK_ROLE","features":[466]},{"name":"CLUSREG_NAME_CLUS_DESC","features":[466]},{"name":"CLUSREG_NAME_CLUS_SD","features":[466]},{"name":"CLUSREG_NAME_CROSS_SITE_DELAY","features":[466]},{"name":"CLUSREG_NAME_CROSS_SITE_THRESHOLD","features":[466]},{"name":"CLUSREG_NAME_CROSS_SUBNET_DELAY","features":[466]},{"name":"CLUSREG_NAME_CROSS_SUBNET_THRESHOLD","features":[466]},{"name":"CLUSREG_NAME_CSV_BLOCK_CACHE","features":[466]},{"name":"CLUSREG_NAME_CSV_MDS_SD","features":[466]},{"name":"CLUSREG_NAME_DATABASE_READ_WRITE_MODE","features":[466]},{"name":"CLUSREG_NAME_DDA_DEVICE_ALLOCATIONS","features":[466]},{"name":"CLUSREG_NAME_DHCP_BACKUP_PATH","features":[466]},{"name":"CLUSREG_NAME_DHCP_DATABASE_PATH","features":[466]},{"name":"CLUSREG_NAME_DRAIN_ON_SHUTDOWN","features":[466]},{"name":"CLUSREG_NAME_ENABLED_EVENT_LOGS","features":[466]},{"name":"CLUSREG_NAME_FAILOVER_MOVE_MIGRATION_TYPE","features":[466]},{"name":"CLUSREG_NAME_FILESHR_CA_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_FILESHR_HIDE_SUBDIR_SHARES","features":[466]},{"name":"CLUSREG_NAME_FILESHR_IS_DFS_ROOT","features":[466]},{"name":"CLUSREG_NAME_FILESHR_MAX_USERS","features":[466]},{"name":"CLUSREG_NAME_FILESHR_PATH","features":[466]},{"name":"CLUSREG_NAME_FILESHR_QOS_FLOWSCOPE","features":[466]},{"name":"CLUSREG_NAME_FILESHR_QOS_POLICYID","features":[466]},{"name":"CLUSREG_NAME_FILESHR_REMARK","features":[466]},{"name":"CLUSREG_NAME_FILESHR_SD","features":[466]},{"name":"CLUSREG_NAME_FILESHR_SERVER_NAME","features":[466]},{"name":"CLUSREG_NAME_FILESHR_SHARE_FLAGS","features":[466]},{"name":"CLUSREG_NAME_FILESHR_SHARE_NAME","features":[466]},{"name":"CLUSREG_NAME_FILESHR_SHARE_SUBDIRS","features":[466]},{"name":"CLUSREG_NAME_FIXQUORUM","features":[466]},{"name":"CLUSREG_NAME_FSWITNESS_ARB_DELAY","features":[466]},{"name":"CLUSREG_NAME_FSWITNESS_IMPERSONATE_CNO","features":[466]},{"name":"CLUSREG_NAME_FSWITNESS_SHARE_PATH","features":[466]},{"name":"CLUSREG_NAME_FUNCTIONAL_LEVEL","features":[466]},{"name":"CLUSREG_NAME_GENAPP_COMMAND_LINE","features":[466]},{"name":"CLUSREG_NAME_GENAPP_CURRENT_DIRECTORY","features":[466]},{"name":"CLUSREG_NAME_GENAPP_USE_NETWORK_NAME","features":[466]},{"name":"CLUSREG_NAME_GENSCRIPT_SCRIPT_FILEPATH","features":[466]},{"name":"CLUSREG_NAME_GENSVC_SERVICE_NAME","features":[466]},{"name":"CLUSREG_NAME_GENSVC_STARTUP_PARAMS","features":[466]},{"name":"CLUSREG_NAME_GENSVC_USE_NETWORK_NAME","features":[466]},{"name":"CLUSREG_NAME_GPUP_DEVICE_ALLOCATIONS","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_AVAILABILITY_SET_INDEX_TO_NODE_MAPPING","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_FAULT_DOMAINS","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_IS_AVAILABILITY_SET","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_IS_GLOBAL","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_NAME","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_RESERVE_NODE","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_COUNT","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_DELAY","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_SETTING","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_STATUS_INFORMATION","features":[466]},{"name":"CLUSREG_NAME_GROUPSET_UPDATE_DOMAINS","features":[466]},{"name":"CLUSREG_NAME_GROUP_DEPENDENCY_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_GRP_ANTI_AFFINITY_CLASS_NAME","features":[466]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH","features":[466]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH_HIGH","features":[466]},{"name":"CLUSREG_NAME_GRP_COLD_START_SETTING","features":[466]},{"name":"CLUSREG_NAME_GRP_DEFAULT_OWNER","features":[466]},{"name":"CLUSREG_NAME_GRP_DESC","features":[466]},{"name":"CLUSREG_NAME_GRP_FAILBACK_TYPE","features":[466]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_END","features":[466]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_START","features":[466]},{"name":"CLUSREG_NAME_GRP_FAILOVER_PERIOD","features":[466]},{"name":"CLUSREG_NAME_GRP_FAILOVER_THRESHOLD","features":[466]},{"name":"CLUSREG_NAME_GRP_FAULT_DOMAIN","features":[466]},{"name":"CLUSREG_NAME_GRP_LOCK_MOVE","features":[466]},{"name":"CLUSREG_NAME_GRP_NAME","features":[466]},{"name":"CLUSREG_NAME_GRP_PERSISTENT_STATE","features":[466]},{"name":"CLUSREG_NAME_GRP_PLACEMENT_OPTIONS","features":[466]},{"name":"CLUSREG_NAME_GRP_PREFERRED_SITE","features":[466]},{"name":"CLUSREG_NAME_GRP_PRIORITY","features":[466]},{"name":"CLUSREG_NAME_GRP_RESILIENCY_PERIOD","features":[466]},{"name":"CLUSREG_NAME_GRP_START_DELAY","features":[466]},{"name":"CLUSREG_NAME_GRP_STATUS_INFORMATION","features":[466]},{"name":"CLUSREG_NAME_GRP_TYPE","features":[466]},{"name":"CLUSREG_NAME_GRP_UPDATE_DOMAIN","features":[466]},{"name":"CLUSREG_NAME_IGNORE_PERSISTENT_STATE","features":[466]},{"name":"CLUSREG_NAME_IPADDR_ADDRESS","features":[466]},{"name":"CLUSREG_NAME_IPADDR_DHCP_ADDRESS","features":[466]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SERVER","features":[466]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SUBNET_MASK","features":[466]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_DHCP","features":[466]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_NETBIOS","features":[466]},{"name":"CLUSREG_NAME_IPADDR_LEASE_OBTAINED_TIME","features":[466]},{"name":"CLUSREG_NAME_IPADDR_LEASE_TERMINATES_TIME","features":[466]},{"name":"CLUSREG_NAME_IPADDR_NETWORK","features":[466]},{"name":"CLUSREG_NAME_IPADDR_OVERRIDE_ADDRMATCH","features":[466]},{"name":"CLUSREG_NAME_IPADDR_PROBE_FAILURE_THRESHOLD","features":[466]},{"name":"CLUSREG_NAME_IPADDR_PROBE_PORT","features":[466]},{"name":"CLUSREG_NAME_IPADDR_SHARED_NETNAME","features":[466]},{"name":"CLUSREG_NAME_IPADDR_SUBNET_MASK","features":[466]},{"name":"CLUSREG_NAME_IPADDR_T1","features":[466]},{"name":"CLUSREG_NAME_IPADDR_T2","features":[466]},{"name":"CLUSREG_NAME_IPV6_NATIVE_ADDRESS","features":[466]},{"name":"CLUSREG_NAME_IPV6_NATIVE_NETWORK","features":[466]},{"name":"CLUSREG_NAME_IPV6_NATIVE_PREFIX_LENGTH","features":[466]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_ADDRESS","features":[466]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_TUNNELTYPE","features":[466]},{"name":"CLUSREG_NAME_LAST_RECENT_EVENTS_RESET_TIME","features":[466]},{"name":"CLUSREG_NAME_LOG_FILE_PATH","features":[466]},{"name":"CLUSREG_NAME_MESSAGE_BUFFER_LENGTH","features":[466]},{"name":"CLUSREG_NAME_MIXED_MODE","features":[466]},{"name":"CLUSREG_NAME_NETFT_IPSEC_ENABLED","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_ID","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_NAME","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_ADDRESS","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_DESC","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_DHCP_ENABLED","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_IPV4_ADDRESSES","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_IPV6_ADDRESSES","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_NAME","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_NETWORK","features":[466]},{"name":"CLUSREG_NAME_NETIFACE_NODE","features":[466]},{"name":"CLUSREG_NAME_NETNAME_AD_AWARE","features":[466]},{"name":"CLUSREG_NAME_NETNAME_ALIASES","features":[466]},{"name":"CLUSREG_NAME_NETNAME_CONTAINERGUID","features":[466]},{"name":"CLUSREG_NAME_NETNAME_CREATING_DC","features":[466]},{"name":"CLUSREG_NAME_NETNAME_DNN_DISABLE_CLONES","features":[466]},{"name":"CLUSREG_NAME_NETNAME_DNS_NAME","features":[466]},{"name":"CLUSREG_NAME_NETNAME_DNS_SUFFIX","features":[466]},{"name":"CLUSREG_NAME_NETNAME_EXCLUDE_NETWORKS","features":[466]},{"name":"CLUSREG_NAME_NETNAME_HOST_TTL","features":[466]},{"name":"CLUSREG_NAME_NETNAME_IN_USE_NETWORKS","features":[466]},{"name":"CLUSREG_NAME_NETNAME_LAST_DNS_UPDATE","features":[466]},{"name":"CLUSREG_NAME_NETNAME_NAME","features":[466]},{"name":"CLUSREG_NAME_NETNAME_OBJECT_ID","features":[466]},{"name":"CLUSREG_NAME_NETNAME_PUBLISH_PTR","features":[466]},{"name":"CLUSREG_NAME_NETNAME_REGISTER_ALL_IP","features":[466]},{"name":"CLUSREG_NAME_NETNAME_REMAP_PIPE_NAMES","features":[466]},{"name":"CLUSREG_NAME_NETNAME_REMOVEVCO_ONDELETE","features":[466]},{"name":"CLUSREG_NAME_NETNAME_RESOURCE_DATA","features":[466]},{"name":"CLUSREG_NAME_NETNAME_STATUS_DNS","features":[466]},{"name":"CLUSREG_NAME_NETNAME_STATUS_KERBEROS","features":[466]},{"name":"CLUSREG_NAME_NETNAME_STATUS_NETBIOS","features":[466]},{"name":"CLUSREG_NAME_NETNAME_VCO_CONTAINER","features":[466]},{"name":"CLUSREG_NAME_NET_ADDRESS","features":[466]},{"name":"CLUSREG_NAME_NET_ADDRESS_MASK","features":[466]},{"name":"CLUSREG_NAME_NET_AUTOMETRIC","features":[466]},{"name":"CLUSREG_NAME_NET_DESC","features":[466]},{"name":"CLUSREG_NAME_NET_IPV4_ADDRESSES","features":[466]},{"name":"CLUSREG_NAME_NET_IPV4_PREFIXLENGTHS","features":[466]},{"name":"CLUSREG_NAME_NET_IPV6_ADDRESSES","features":[466]},{"name":"CLUSREG_NAME_NET_IPV6_PREFIXLENGTHS","features":[466]},{"name":"CLUSREG_NAME_NET_METRIC","features":[466]},{"name":"CLUSREG_NAME_NET_NAME","features":[466]},{"name":"CLUSREG_NAME_NET_RDMA_CAPABLE","features":[466]},{"name":"CLUSREG_NAME_NET_ROLE","features":[466]},{"name":"CLUSREG_NAME_NET_RSS_CAPABLE","features":[466]},{"name":"CLUSREG_NAME_NET_SPEED","features":[466]},{"name":"CLUSREG_NAME_NODE_BUILD_NUMBER","features":[466]},{"name":"CLUSREG_NAME_NODE_CSDVERSION","features":[466]},{"name":"CLUSREG_NAME_NODE_DESC","features":[466]},{"name":"CLUSREG_NAME_NODE_DRAIN_STATUS","features":[466]},{"name":"CLUSREG_NAME_NODE_DRAIN_TARGET","features":[466]},{"name":"CLUSREG_NAME_NODE_DYNAMIC_WEIGHT","features":[466]},{"name":"CLUSREG_NAME_NODE_FAULT_DOMAIN","features":[466]},{"name":"CLUSREG_NAME_NODE_FDID","features":[466]},{"name":"CLUSREG_NAME_NODE_HIGHEST_VERSION","features":[466]},{"name":"CLUSREG_NAME_NODE_IS_PRIMARY","features":[466]},{"name":"CLUSREG_NAME_NODE_LOWEST_VERSION","features":[466]},{"name":"CLUSREG_NAME_NODE_MAJOR_VERSION","features":[466]},{"name":"CLUSREG_NAME_NODE_MANUFACTURER","features":[466]},{"name":"CLUSREG_NAME_NODE_MINOR_VERSION","features":[466]},{"name":"CLUSREG_NAME_NODE_MODEL","features":[466]},{"name":"CLUSREG_NAME_NODE_NAME","features":[466]},{"name":"CLUSREG_NAME_NODE_NEEDS_PQ","features":[466]},{"name":"CLUSREG_NAME_NODE_SERIALNUMBER","features":[466]},{"name":"CLUSREG_NAME_NODE_STATUS_INFO","features":[466]},{"name":"CLUSREG_NAME_NODE_UNIQUEID","features":[466]},{"name":"CLUSREG_NAME_NODE_WEIGHT","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_CSVBLOCKCACHE","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTAGELIMIT","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTDIFFAREASIZE","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_CSVWRITETHROUGH","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBINTERVAL","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBTYPE","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKGUID","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDGUID","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDTYPE","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIODELAY","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKPATH","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRECOVERYACTION","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRELOAD","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRUNCHKDSK","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKSIGNATURE","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKUNIQUEIDS","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_DISKVOLUMEINFO","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_FASTONLINEARBITRATE","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_MAINTMODE","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_MIGRATEFIXUP","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_SPACEIDGUID","features":[466]},{"name":"CLUSREG_NAME_PHYSDISK_VOLSNAPACTIVATETIMEOUT","features":[466]},{"name":"CLUSREG_NAME_PLACEMENT_OPTIONS","features":[466]},{"name":"CLUSREG_NAME_PLUMB_ALL_CROSS_SUBNET_ROUTES","features":[466]},{"name":"CLUSREG_NAME_PREVENTQUORUM","features":[466]},{"name":"CLUSREG_NAME_PRTSPOOL_DEFAULT_SPOOL_DIR","features":[466]},{"name":"CLUSREG_NAME_PRTSPOOL_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_QUARANTINE_DURATION","features":[466]},{"name":"CLUSREG_NAME_QUARANTINE_THRESHOLD","features":[466]},{"name":"CLUSREG_NAME_QUORUM_ARBITRATION_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_RESILIENCY_DEFAULT_SECONDS","features":[466]},{"name":"CLUSREG_NAME_RESILIENCY_LEVEL","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_ADMIN_EXTENSIONS","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_DEADLOCK_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_DESC","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_DLL_NAME","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_LOG_QUERY","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_POLICY","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_SERVICES","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_ENABLED_EVENT_LOGS","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_IS_ALIVE","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_LOOKS_ALIVE","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_MAX_MONITORS","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_NAME","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_PENDING_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_WPR_PROFILES","features":[466]},{"name":"CLUSREG_NAME_RESTYPE_WPR_START_AFTER","features":[466]},{"name":"CLUSREG_NAME_RES_DATA1","features":[466]},{"name":"CLUSREG_NAME_RES_DATA2","features":[466]},{"name":"CLUSREG_NAME_RES_DEADLOCK_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_RES_DESC","features":[466]},{"name":"CLUSREG_NAME_RES_EMBEDDED_FAILURE_ACTION","features":[466]},{"name":"CLUSREG_NAME_RES_IS_ALIVE","features":[466]},{"name":"CLUSREG_NAME_RES_LAST_OPERATION_STATUS_CODE","features":[466]},{"name":"CLUSREG_NAME_RES_LOOKS_ALIVE","features":[466]},{"name":"CLUSREG_NAME_RES_MONITOR_PID","features":[466]},{"name":"CLUSREG_NAME_RES_NAME","features":[466]},{"name":"CLUSREG_NAME_RES_PENDING_TIMEOUT","features":[466]},{"name":"CLUSREG_NAME_RES_PERSISTENT_STATE","features":[466]},{"name":"CLUSREG_NAME_RES_RESTART_ACTION","features":[466]},{"name":"CLUSREG_NAME_RES_RESTART_DELAY","features":[466]},{"name":"CLUSREG_NAME_RES_RESTART_PERIOD","features":[466]},{"name":"CLUSREG_NAME_RES_RESTART_THRESHOLD","features":[466]},{"name":"CLUSREG_NAME_RES_RETRY_PERIOD_ON_FAILURE","features":[466]},{"name":"CLUSREG_NAME_RES_SEPARATE_MONITOR","features":[466]},{"name":"CLUSREG_NAME_RES_STATUS","features":[466]},{"name":"CLUSREG_NAME_RES_STATUS_INFORMATION","features":[466]},{"name":"CLUSREG_NAME_RES_TYPE","features":[466]},{"name":"CLUSREG_NAME_ROUTE_HISTORY_LENGTH","features":[466]},{"name":"CLUSREG_NAME_SAME_SUBNET_DELAY","features":[466]},{"name":"CLUSREG_NAME_SAME_SUBNET_THRESHOLD","features":[466]},{"name":"CLUSREG_NAME_SHUTDOWN_TIMEOUT_MINUTES","features":[466]},{"name":"CLUSREG_NAME_SOFS_SMBASYMMETRYMODE","features":[466]},{"name":"CLUSREG_NAME_START_MEMORY","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_DESCRIPTION","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_HEALTH","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_NAME","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLARBITRATE","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLCONSUMEDCAPACITY","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDESC","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDRIVEIDS","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLHEALTH","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLIDGUID","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLNAME","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMSHARE","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMUSERACCOUNT","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLREEVALTIMEOUT","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLSTATE","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLTOTALCAPACITY","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_PROVISIONING","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYCOLUMNS","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYINTERLEAVE","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYTYPE","features":[466]},{"name":"CLUSREG_NAME_STORAGESPACE_STATE","features":[466]},{"name":"CLUSREG_NAME_UPGRADE_VERSION","features":[466]},{"name":"CLUSREG_NAME_VIP_ADAPTER_NAME","features":[466]},{"name":"CLUSREG_NAME_VIP_ADDRESS","features":[466]},{"name":"CLUSREG_NAME_VIP_PREFIX_LENGTH","features":[466]},{"name":"CLUSREG_NAME_VIP_RDID","features":[466]},{"name":"CLUSREG_NAME_VIP_VSID","features":[466]},{"name":"CLUSREG_NAME_VIRTUAL_NUMA_COUNT","features":[466]},{"name":"CLUSREG_NAME_VSSTASK_APPNAME","features":[466]},{"name":"CLUSREG_NAME_VSSTASK_APPPARAMS","features":[466]},{"name":"CLUSREG_NAME_VSSTASK_CURRENTDIRECTORY","features":[466]},{"name":"CLUSREG_NAME_VSSTASK_TRIGGERARRAY","features":[466]},{"name":"CLUSREG_NAME_WINS_BACKUP_PATH","features":[466]},{"name":"CLUSREG_NAME_WINS_DATABASE_PATH","features":[466]},{"name":"CLUSREG_NAME_WITNESS_DYNAMIC_WEIGHT","features":[466]},{"name":"CLUSREG_READ_ERROR","features":[466]},{"name":"CLUSREG_READ_KEY","features":[466]},{"name":"CLUSREG_READ_VALUE","features":[466]},{"name":"CLUSREG_SET_KEY_SECURITY","features":[466]},{"name":"CLUSREG_SET_VALUE","features":[466]},{"name":"CLUSREG_VALUE_DELETED","features":[466]},{"name":"CLUSRESDLL_STATUS_DO_NOT_COLLECT_WER_REPORT","features":[466]},{"name":"CLUSRESDLL_STATUS_DUMP_NOW","features":[466]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_MEMORY","features":[466]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_OTHER_RESOURCES","features":[466]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_PROCESSOR","features":[466]},{"name":"CLUSRESDLL_STATUS_INVALID_PARAMETERS","features":[466]},{"name":"CLUSRESDLL_STATUS_NETWORK_NOT_AVAILABLE","features":[466]},{"name":"CLUSRESDLL_STATUS_OFFLINE_BUSY","features":[466]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_REJECTED","features":[466]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_THROTTLED","features":[466]},{"name":"CLUSRESDLL_STATUS_OFFLINE_SOURCE_THROTTLED","features":[466]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_OFFLINE_CALLS","features":[466]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_ONLINE_CALLS","features":[466]},{"name":"CLUSRES_NAME_GET_OPERATION_CONTEXT_FLAGS","features":[466]},{"name":"CLUSRES_STATUS_APPLICATION_READY","features":[466]},{"name":"CLUSRES_STATUS_EMBEDDED_FAILURE","features":[466]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_CPU","features":[466]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_GENERIC_RESOURCES","features":[466]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_MEMORY","features":[466]},{"name":"CLUSRES_STATUS_LOCKED_MODE","features":[466]},{"name":"CLUSRES_STATUS_NETWORK_FAILURE","features":[466]},{"name":"CLUSRES_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[466]},{"name":"CLUSRES_STATUS_OS_HEARTBEAT","features":[466]},{"name":"CLUSRES_STATUS_UNMONITORED","features":[466]},{"name":"CLUSTERSET_OBJECT_TYPE","features":[466]},{"name":"CLUSTERSET_OBJECT_TYPE_DATABASE","features":[466]},{"name":"CLUSTERSET_OBJECT_TYPE_MEMBER","features":[466]},{"name":"CLUSTERSET_OBJECT_TYPE_NONE","features":[466]},{"name":"CLUSTERSET_OBJECT_TYPE_WORKLOAD","features":[466]},{"name":"CLUSTERVERSIONINFO","features":[466]},{"name":"CLUSTERVERSIONINFO_NT4","features":[466]},{"name":"CLUSTER_ADD_EVICT_DELAY","features":[466]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG","features":[303,466]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG_V1","features":[466]},{"name":"CLUSTER_BATCH_COMMAND","features":[466]},{"name":"CLUSTER_CHANGE","features":[466]},{"name":"CLUSTER_CHANGE_ALL","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_GROUP_ADDED_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_HANDLE_CLOSE_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_LOST_NOTIFICATIONS_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_MEMBERSHIP_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_NETWORK_ADDED_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_NODE_ADDED_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_PROPERTY","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_RENAME_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_RESOURCE_TYPE_ADDED_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_UPGRADED_V2","features":[466]},{"name":"CLUSTER_CHANGE_CLUSTER_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_DELETED_v2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENCIES_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENTS_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_ADDED","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_REMOVED","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_HANDLE_CLOSE_v2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUPSET_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_ADDED","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_DELETED","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_DELETED_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_HANDLE_CLOSE_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_OWNER_NODE_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_PREFERRED_OWNERS_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_PROPERTY","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_ADDED_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_GAINED_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_LOST_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_STATE","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_GROUP_V2","features":[466]},{"name":"CLUSTER_CHANGE_HANDLE_CLOSE","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ADDED","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_HANDLE_CLOSE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PROPERTY","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETINTERFACE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_ADDED","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_HANDLE_CLOSE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_PROPERTY","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_STATE","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NETWORK_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_ADDED","features":[466]},{"name":"CLUSTER_CHANGE_NODE_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_DELETED","features":[466]},{"name":"CLUSTER_CHANGE_NODE_DELETED_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_GROUP_GAINED_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_GROUP_LOST_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_HANDLE_CLOSE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_NETINTERFACE_ADDED_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_PROPERTY","features":[466]},{"name":"CLUSTER_CHANGE_NODE_STATE","features":[466]},{"name":"CLUSTER_CHANGE_NODE_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_UPGRADE_PHASE_V2","features":[466]},{"name":"CLUSTER_CHANGE_NODE_V2","features":[466]},{"name":"CLUSTER_CHANGE_QUORUM_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_QUORUM_STATE","features":[466]},{"name":"CLUSTER_CHANGE_QUORUM_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_QUORUM_V2","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES_V2","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_HANDLE_CLOSE_V2","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME_V2","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE_V2","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_V2","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE","features":[466]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_ADDED","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENCIES_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENTS_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_DLL_UPGRADED_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_HANDLE_CLOSE_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_OWNER_GROUP_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_POSSIBLE_OWNERS_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_PROPERTY","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TERMINAL_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ADDED","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_COMMON_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DLL_UPGRADED_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_POSSIBLE_OWNERS_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PRIVATE_PROPERTY_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PROPERTY","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_V2","features":[466]},{"name":"CLUSTER_CHANGE_RESOURCE_V2","features":[466]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ADDED_V2","features":[466]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ALL_V2","features":[466]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_REMOVED_V2","features":[466]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_STATE_V2","features":[466]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_V2","features":[466]},{"name":"CLUSTER_CHANGE_SPACEPORT_CUSTOM_PNP_V2","features":[466]},{"name":"CLUSTER_CHANGE_SPACEPORT_V2","features":[466]},{"name":"CLUSTER_CHANGE_UPGRADE_ALL","features":[466]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_COMMIT","features":[466]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_POSTCOMMIT","features":[466]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_PREPARE","features":[466]},{"name":"CLUSTER_CLOUD_TYPE","features":[466]},{"name":"CLUSTER_CLOUD_TYPE_AZURE","features":[466]},{"name":"CLUSTER_CLOUD_TYPE_MIXED","features":[466]},{"name":"CLUSTER_CLOUD_TYPE_NONE","features":[466]},{"name":"CLUSTER_CLOUD_TYPE_UNKNOWN","features":[466]},{"name":"CLUSTER_CONFIGURED","features":[466]},{"name":"CLUSTER_CONTROL_OBJECT","features":[466]},{"name":"CLUSTER_CREATE_GROUP_INFO","features":[466]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION","features":[466]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION_1","features":[466]},{"name":"CLUSTER_CSA_VSS_STATE","features":[466]},{"name":"CLUSTER_CSV_COMPATIBLE_FILTERS","features":[466]},{"name":"CLUSTER_CSV_INCOMPATIBLE_FILTERS","features":[466]},{"name":"CLUSTER_CSV_VOLUME_FAULT_STATE","features":[466]},{"name":"CLUSTER_DELETE_ACCESS_CONTROL_ENTRY","features":[466]},{"name":"CLUSTER_ENFORCED_ANTIAFFINITY","features":[466]},{"name":"CLUSTER_ENUM","features":[466]},{"name":"CLUSTER_ENUM_ALL","features":[466]},{"name":"CLUSTER_ENUM_GROUP","features":[466]},{"name":"CLUSTER_ENUM_INTERNAL_NETWORK","features":[466]},{"name":"CLUSTER_ENUM_ITEM","features":[466]},{"name":"CLUSTER_ENUM_ITEM_VERSION","features":[466]},{"name":"CLUSTER_ENUM_ITEM_VERSION_1","features":[466]},{"name":"CLUSTER_ENUM_NETINTERFACE","features":[466]},{"name":"CLUSTER_ENUM_NETWORK","features":[466]},{"name":"CLUSTER_ENUM_NODE","features":[466]},{"name":"CLUSTER_ENUM_RESOURCE","features":[466]},{"name":"CLUSTER_ENUM_RESTYPE","features":[466]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_GROUP","features":[466]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_RESOURCE","features":[466]},{"name":"CLUSTER_GROUP_AUTOFAILBACK_TYPE","features":[466]},{"name":"CLUSTER_GROUP_ENUM","features":[466]},{"name":"CLUSTER_GROUP_ENUM_ALL","features":[466]},{"name":"CLUSTER_GROUP_ENUM_CONTAINS","features":[466]},{"name":"CLUSTER_GROUP_ENUM_ITEM","features":[466]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION","features":[466]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION_1","features":[466]},{"name":"CLUSTER_GROUP_ENUM_NODES","features":[466]},{"name":"CLUSTER_GROUP_PRIORITY","features":[466]},{"name":"CLUSTER_GROUP_STATE","features":[466]},{"name":"CLUSTER_GROUP_WAIT_DELAY","features":[466]},{"name":"CLUSTER_HANG_RECOVERY_ACTION_KEYNAME","features":[466]},{"name":"CLUSTER_HANG_TIMEOUT_KEYNAME","features":[466]},{"name":"CLUSTER_HEALTH_FAULT","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ARGS","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ARRAY","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION_LABEL","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE_LABEL","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE_LABEL","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS_LABEL","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ID","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_ID_LABEL","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_PROPERTY_NAME","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER_LABEL","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED","features":[466]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED_LABEL","features":[466]},{"name":"CLUSTER_INSTALLED","features":[466]},{"name":"CLUSTER_IP_ENTRY","features":[466]},{"name":"CLUSTER_MEMBERSHIP_INFO","features":[303,466]},{"name":"CLUSTER_MGMT_POINT_RESTYPE","features":[466]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_AUTO","features":[466]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_DNN","features":[466]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_SNN","features":[466]},{"name":"CLUSTER_MGMT_POINT_TYPE","features":[466]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO","features":[466]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO_ONLY","features":[466]},{"name":"CLUSTER_MGMT_POINT_TYPE_DNS_ONLY","features":[466]},{"name":"CLUSTER_MGMT_POINT_TYPE_NONE","features":[466]},{"name":"CLUSTER_NAME_AUTO_BALANCER_LEVEL","features":[466]},{"name":"CLUSTER_NAME_AUTO_BALANCER_MODE","features":[466]},{"name":"CLUSTER_NAME_PREFERRED_SITE","features":[466]},{"name":"CLUSTER_NETINTERFACE_STATE","features":[466]},{"name":"CLUSTER_NETWORK_ENUM","features":[466]},{"name":"CLUSTER_NETWORK_ENUM_ALL","features":[466]},{"name":"CLUSTER_NETWORK_ENUM_NETINTERFACES","features":[466]},{"name":"CLUSTER_NETWORK_ROLE","features":[466]},{"name":"CLUSTER_NETWORK_STATE","features":[466]},{"name":"CLUSTER_NODE_DRAIN_STATUS","features":[466]},{"name":"CLUSTER_NODE_ENUM","features":[466]},{"name":"CLUSTER_NODE_ENUM_ALL","features":[466]},{"name":"CLUSTER_NODE_ENUM_GROUPS","features":[466]},{"name":"CLUSTER_NODE_ENUM_NETINTERFACES","features":[466]},{"name":"CLUSTER_NODE_ENUM_PREFERRED_GROUPS","features":[466]},{"name":"CLUSTER_NODE_RESUME_FAILBACK_TYPE","features":[466]},{"name":"CLUSTER_NODE_STATE","features":[466]},{"name":"CLUSTER_NODE_STATUS","features":[466]},{"name":"CLUSTER_NOTIFICATIONS_V1","features":[466]},{"name":"CLUSTER_NOTIFICATIONS_V2","features":[466]},{"name":"CLUSTER_NOTIFICATIONS_VERSION","features":[466]},{"name":"CLUSTER_OBJECT_TYPE","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_AFFINITYRULE","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_CLUSTER","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_FAULTDOMAIN","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_GROUP","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_GROUPSET","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK_INTERFACE","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_NODE","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_NONE","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_QUORUM","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_REGISTRY","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE_TYPE","features":[466]},{"name":"CLUSTER_OBJECT_TYPE_SHARED_VOLUME","features":[466]},{"name":"CLUSTER_PROPERTY_FORMAT","features":[466]},{"name":"CLUSTER_PROPERTY_SYNTAX","features":[466]},{"name":"CLUSTER_PROPERTY_TYPE","features":[466]},{"name":"CLUSTER_QUORUM_LOST","features":[466]},{"name":"CLUSTER_QUORUM_MAINTAINED","features":[466]},{"name":"CLUSTER_QUORUM_TYPE","features":[466]},{"name":"CLUSTER_QUORUM_VALUE","features":[466]},{"name":"CLUSTER_READ_BATCH_COMMAND","features":[466]},{"name":"CLUSTER_REG_COMMAND","features":[466]},{"name":"CLUSTER_REQUEST_REPLY_TIMEOUT","features":[466]},{"name":"CLUSTER_RESOURCE_APPLICATION_STATE","features":[466]},{"name":"CLUSTER_RESOURCE_CLASS","features":[466]},{"name":"CLUSTER_RESOURCE_CREATE_FLAGS","features":[466]},{"name":"CLUSTER_RESOURCE_DEFAULT_MONITOR","features":[466]},{"name":"CLUSTER_RESOURCE_EMBEDDED_FAILURE_ACTION","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM_ALL","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM_DEPENDS","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION_1","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM_NODES","features":[466]},{"name":"CLUSTER_RESOURCE_ENUM_PROVIDES","features":[466]},{"name":"CLUSTER_RESOURCE_RESTART_ACTION","features":[466]},{"name":"CLUSTER_RESOURCE_SEPARATE_MONITOR","features":[466]},{"name":"CLUSTER_RESOURCE_STATE","features":[466]},{"name":"CLUSTER_RESOURCE_STATE_CHANGE_REASON","features":[466]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM","features":[466]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_ALL","features":[466]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_NODES","features":[466]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_RESOURCES","features":[466]},{"name":"CLUSTER_RESOURCE_TYPE_SPECIFIC_V2","features":[466]},{"name":"CLUSTER_RESOURCE_VALID_FLAGS","features":[466]},{"name":"CLUSTER_ROLE","features":[466]},{"name":"CLUSTER_ROLE_STATE","features":[466]},{"name":"CLUSTER_RUNNING","features":[466]},{"name":"CLUSTER_S2D_BUS_TYPES","features":[466]},{"name":"CLUSTER_S2D_CACHE_BEHAVIOR_FLAGS","features":[466]},{"name":"CLUSTER_S2D_CACHE_DESIRED_STATE","features":[466]},{"name":"CLUSTER_S2D_CACHE_FLASH_RESERVE_PERCENT","features":[466]},{"name":"CLUSTER_S2D_CACHE_METADATA_RESERVE","features":[466]},{"name":"CLUSTER_S2D_CACHE_PAGE_SIZE_KBYTES","features":[466]},{"name":"CLUSTER_S2D_ENABLED","features":[466]},{"name":"CLUSTER_S2D_IO_LATENCY_THRESHOLD","features":[466]},{"name":"CLUSTER_S2D_OPTIMIZATIONS","features":[466]},{"name":"CLUSTER_SETUP_PHASE","features":[466]},{"name":"CLUSTER_SETUP_PHASE_SEVERITY","features":[466]},{"name":"CLUSTER_SETUP_PHASE_TYPE","features":[466]},{"name":"CLUSTER_SET_ACCESS_TYPE_ALLOWED","features":[466]},{"name":"CLUSTER_SET_ACCESS_TYPE_DENIED","features":[466]},{"name":"CLUSTER_SET_PASSWORD_STATUS","features":[303,466]},{"name":"CLUSTER_SHARED_VOLUMES_ROOT","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_BACKUP_STATE","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_GUID_INPUT","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_GUID_NAME","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_NAME","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_TYPE","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_VOLUME","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_SNAPSHOT_STATE","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_STATE","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO_EX","features":[466]},{"name":"CLUSTER_SHARED_VOLUME_VSS_WRITER_OPERATION_TIMEOUT","features":[466]},{"name":"CLUSTER_STORAGENODE_STATE","features":[466]},{"name":"CLUSTER_UPGRADE_PHASE","features":[466]},{"name":"CLUSTER_VALIDATE_CSV_FILENAME","features":[466]},{"name":"CLUSTER_VALIDATE_DIRECTORY","features":[466]},{"name":"CLUSTER_VALIDATE_NETNAME","features":[466]},{"name":"CLUSTER_VALIDATE_PATH","features":[466]},{"name":"CLUSTER_VERSION_FLAG_MIXED_MODE","features":[466]},{"name":"CLUSTER_VERSION_UNKNOWN","features":[466]},{"name":"CLUSTER_WITNESS_DATABASE_WRITE_TIMEOUT","features":[466]},{"name":"CLUSTER_WITNESS_FAILED_RESTART_INTERVAL","features":[466]},{"name":"CLUS_ACCESS_ANY","features":[466]},{"name":"CLUS_ACCESS_READ","features":[466]},{"name":"CLUS_ACCESS_WRITE","features":[466]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_FAULT_DOMAIN","features":[466]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_NODE","features":[466]},{"name":"CLUS_AFFINITY_RULE_MAX","features":[466]},{"name":"CLUS_AFFINITY_RULE_MIN","features":[466]},{"name":"CLUS_AFFINITY_RULE_NONE","features":[466]},{"name":"CLUS_AFFINITY_RULE_SAME_FAULT_DOMAIN","features":[466]},{"name":"CLUS_AFFINITY_RULE_SAME_NODE","features":[466]},{"name":"CLUS_AFFINITY_RULE_TYPE","features":[466]},{"name":"CLUS_CHARACTERISTICS","features":[466]},{"name":"CLUS_CHAR_BROADCAST_DELETE","features":[466]},{"name":"CLUS_CHAR_CLONES","features":[466]},{"name":"CLUS_CHAR_COEXIST_IN_SHARED_VOLUME_GROUP","features":[466]},{"name":"CLUS_CHAR_DELETE_REQUIRES_ALL_NODES","features":[466]},{"name":"CLUS_CHAR_DRAIN_LOCAL_OFFLINE","features":[466]},{"name":"CLUS_CHAR_INFRASTRUCTURE","features":[466]},{"name":"CLUS_CHAR_LOCAL_QUORUM","features":[466]},{"name":"CLUS_CHAR_LOCAL_QUORUM_DEBUG","features":[466]},{"name":"CLUS_CHAR_MONITOR_DETACH","features":[466]},{"name":"CLUS_CHAR_MONITOR_REATTACH","features":[466]},{"name":"CLUS_CHAR_NOTIFY_NEW_OWNER","features":[466]},{"name":"CLUS_CHAR_NOT_PREEMPTABLE","features":[466]},{"name":"CLUS_CHAR_OPERATION_CONTEXT","features":[466]},{"name":"CLUS_CHAR_PLACEMENT_DATA","features":[466]},{"name":"CLUS_CHAR_QUORUM","features":[466]},{"name":"CLUS_CHAR_REQUIRES_STATE_CHANGE_REASON","features":[466]},{"name":"CLUS_CHAR_SINGLE_CLUSTER_INSTANCE","features":[466]},{"name":"CLUS_CHAR_SINGLE_GROUP_INSTANCE","features":[466]},{"name":"CLUS_CHAR_SUPPORTS_UNMONITORED_STATE","features":[466]},{"name":"CLUS_CHAR_UNKNOWN","features":[466]},{"name":"CLUS_CHAR_VETO_DRAIN","features":[466]},{"name":"CLUS_CHKDSK_INFO","features":[466]},{"name":"CLUS_CREATE_CRYPT_CONTAINER_NOT_FOUND","features":[466]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_INPUT","features":[466]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT","features":[466]},{"name":"CLUS_CSV_MAINTENANCE_MODE_INFO","features":[303,466]},{"name":"CLUS_CSV_VOLUME_INFO","features":[466]},{"name":"CLUS_CSV_VOLUME_NAME","features":[466]},{"name":"CLUS_DISK_NUMBER_INFO","features":[466]},{"name":"CLUS_DNN_LEADER_STATUS","features":[303,466]},{"name":"CLUS_DNN_SODAFS_CLONE_STATUS","features":[466]},{"name":"CLUS_FLAGS","features":[466]},{"name":"CLUS_FLAG_CORE","features":[466]},{"name":"CLUS_FORCE_QUORUM_INFO","features":[466]},{"name":"CLUS_FTSET_INFO","features":[466]},{"name":"CLUS_GLOBAL","features":[466]},{"name":"CLUS_GROUP_DO_NOT_START","features":[466]},{"name":"CLUS_GROUP_START_ALLOWED","features":[466]},{"name":"CLUS_GROUP_START_ALWAYS","features":[466]},{"name":"CLUS_GROUP_START_SETTING","features":[466]},{"name":"CLUS_GRP_MOVE_ALLOWED","features":[466]},{"name":"CLUS_GRP_MOVE_LOCKED","features":[466]},{"name":"CLUS_HYBRID_QUORUM","features":[466]},{"name":"CLUS_MAINTENANCE_MODE_INFO","features":[303,466]},{"name":"CLUS_MAINTENANCE_MODE_INFOEX","features":[303,466]},{"name":"CLUS_MODIFY","features":[466]},{"name":"CLUS_NAME_RES_TYPE_CLUSTER_GROUPID","features":[466]},{"name":"CLUS_NAME_RES_TYPE_DATA_RESID","features":[466]},{"name":"CLUS_NAME_RES_TYPE_LOG_MULTIPLE","features":[466]},{"name":"CLUS_NAME_RES_TYPE_LOG_RESID","features":[466]},{"name":"CLUS_NAME_RES_TYPE_LOG_VOLUME","features":[466]},{"name":"CLUS_NAME_RES_TYPE_MINIMUM_LOG_SIZE","features":[466]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUPID","features":[466]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUP_TYPE","features":[466]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_RESID","features":[466]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_VOLUMES","features":[466]},{"name":"CLUS_NAME_RES_TYPE_TARGET_RESID","features":[466]},{"name":"CLUS_NAME_RES_TYPE_TARGET_VOLUMES","features":[466]},{"name":"CLUS_NAME_RES_TYPE_UNIT_LOG_SIZE_CHANGE","features":[466]},{"name":"CLUS_NETNAME_IP_INFO_ENTRY","features":[466]},{"name":"CLUS_NETNAME_IP_INFO_FOR_MULTICHANNEL","features":[466]},{"name":"CLUS_NETNAME_PWD_INFO","features":[466]},{"name":"CLUS_NETNAME_PWD_INFOEX","features":[466]},{"name":"CLUS_NETNAME_VS_TOKEN_INFO","features":[303,466]},{"name":"CLUS_NODE_MAJORITY_QUORUM","features":[466]},{"name":"CLUS_NOT_GLOBAL","features":[466]},{"name":"CLUS_NO_MODIFY","features":[466]},{"name":"CLUS_OBJECT_AFFINITYRULE","features":[466]},{"name":"CLUS_OBJECT_CLUSTER","features":[466]},{"name":"CLUS_OBJECT_GROUP","features":[466]},{"name":"CLUS_OBJECT_GROUPSET","features":[466]},{"name":"CLUS_OBJECT_INVALID","features":[466]},{"name":"CLUS_OBJECT_NETINTERFACE","features":[466]},{"name":"CLUS_OBJECT_NETWORK","features":[466]},{"name":"CLUS_OBJECT_NODE","features":[466]},{"name":"CLUS_OBJECT_RESOURCE","features":[466]},{"name":"CLUS_OBJECT_RESOURCE_TYPE","features":[466]},{"name":"CLUS_OBJECT_USER","features":[466]},{"name":"CLUS_PARTITION_INFO","features":[466]},{"name":"CLUS_PARTITION_INFO_EX","features":[466]},{"name":"CLUS_PARTITION_INFO_EX2","features":[466]},{"name":"CLUS_PROVIDER_STATE_CHANGE_INFO","features":[466]},{"name":"CLUS_RESCLASS_NETWORK","features":[466]},{"name":"CLUS_RESCLASS_STORAGE","features":[466]},{"name":"CLUS_RESCLASS_UNKNOWN","features":[466]},{"name":"CLUS_RESCLASS_USER","features":[466]},{"name":"CLUS_RESDLL_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[466]},{"name":"CLUS_RESDLL_OFFLINE_DUE_TO_EMBEDDED_FAILURE","features":[466]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_NETWORK_CONNECTIVITY","features":[466]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_RESOURCE_STATUS","features":[466]},{"name":"CLUS_RESDLL_OFFLINE_QUEUE_ENABLED","features":[466]},{"name":"CLUS_RESDLL_OFFLINE_RETURNING_TO_SOURCE_NODE_BECAUSE_OF_ERROR","features":[466]},{"name":"CLUS_RESDLL_OFFLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[466]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_NETWORK_CONNECTIVITY","features":[466]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_RESOURCE_STATUS","features":[466]},{"name":"CLUS_RESDLL_ONLINE_RECOVER_MONITOR_STATE","features":[466]},{"name":"CLUS_RESDLL_ONLINE_RESTORE_ONLINE_STATE","features":[466]},{"name":"CLUS_RESDLL_ONLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[466]},{"name":"CLUS_RESDLL_OPEN_DONT_DELETE_TEMP_DISK","features":[466]},{"name":"CLUS_RESDLL_OPEN_RECOVER_MONITOR_STATE","features":[466]},{"name":"CLUS_RESOURCE_CLASS_INFO","features":[466]},{"name":"CLUS_RESSUBCLASS","features":[466]},{"name":"CLUS_RESSUBCLASS_NETWORK","features":[466]},{"name":"CLUS_RESSUBCLASS_NETWORK_INTERNET_PROTOCOL","features":[466]},{"name":"CLUS_RESSUBCLASS_SHARED","features":[466]},{"name":"CLUS_RESSUBCLASS_STORAGE","features":[466]},{"name":"CLUS_RESSUBCLASS_STORAGE_DISK","features":[466]},{"name":"CLUS_RESSUBCLASS_STORAGE_REPLICATION","features":[466]},{"name":"CLUS_RESSUBCLASS_STORAGE_SHARED_BUS","features":[466]},{"name":"CLUS_RESTYPE_NAME_CAU","features":[466]},{"name":"CLUS_RESTYPE_NAME_CLOUD_WITNESS","features":[466]},{"name":"CLUS_RESTYPE_NAME_CONTAINER","features":[466]},{"name":"CLUS_RESTYPE_NAME_CROSS_CLUSTER","features":[466]},{"name":"CLUS_RESTYPE_NAME_DFS","features":[466]},{"name":"CLUS_RESTYPE_NAME_DFSR","features":[466]},{"name":"CLUS_RESTYPE_NAME_DHCP","features":[466]},{"name":"CLUS_RESTYPE_NAME_DNN","features":[466]},{"name":"CLUS_RESTYPE_NAME_FILESERVER","features":[466]},{"name":"CLUS_RESTYPE_NAME_FILESHR","features":[466]},{"name":"CLUS_RESTYPE_NAME_FSWITNESS","features":[466]},{"name":"CLUS_RESTYPE_NAME_GENAPP","features":[466]},{"name":"CLUS_RESTYPE_NAME_GENSCRIPT","features":[466]},{"name":"CLUS_RESTYPE_NAME_GENSVC","features":[466]},{"name":"CLUS_RESTYPE_NAME_HARDDISK","features":[466]},{"name":"CLUS_RESTYPE_NAME_HCSVM","features":[466]},{"name":"CLUS_RESTYPE_NAME_HEALTH_SERVICE","features":[466]},{"name":"CLUS_RESTYPE_NAME_IPADDR","features":[466]},{"name":"CLUS_RESTYPE_NAME_IPV6_NATIVE","features":[466]},{"name":"CLUS_RESTYPE_NAME_IPV6_TUNNEL","features":[466]},{"name":"CLUS_RESTYPE_NAME_ISCSITARGET","features":[466]},{"name":"CLUS_RESTYPE_NAME_ISNS","features":[466]},{"name":"CLUS_RESTYPE_NAME_MSDTC","features":[466]},{"name":"CLUS_RESTYPE_NAME_MSMQ","features":[466]},{"name":"CLUS_RESTYPE_NAME_MSMQ_TRIGGER","features":[466]},{"name":"CLUS_RESTYPE_NAME_NAT","features":[466]},{"name":"CLUS_RESTYPE_NAME_NETNAME","features":[466]},{"name":"CLUS_RESTYPE_NAME_NETWORK_FILE_SYSTEM","features":[466]},{"name":"CLUS_RESTYPE_NAME_NEW_MSMQ","features":[466]},{"name":"CLUS_RESTYPE_NAME_NFS","features":[466]},{"name":"CLUS_RESTYPE_NAME_NFS_MSNS","features":[466]},{"name":"CLUS_RESTYPE_NAME_NFS_V2","features":[466]},{"name":"CLUS_RESTYPE_NAME_NV_PROVIDER_ADDRESS","features":[466]},{"name":"CLUS_RESTYPE_NAME_PHYS_DISK","features":[466]},{"name":"CLUS_RESTYPE_NAME_PRTSPLR","features":[466]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_MASTER","features":[466]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_WORKER","features":[466]},{"name":"CLUS_RESTYPE_NAME_SDDC_MANAGEMENT","features":[466]},{"name":"CLUS_RESTYPE_NAME_SODAFILESERVER","features":[466]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POLICIES","features":[466]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POOL","features":[466]},{"name":"CLUS_RESTYPE_NAME_STORAGE_REPLICA","features":[466]},{"name":"CLUS_RESTYPE_NAME_STORQOS","features":[466]},{"name":"CLUS_RESTYPE_NAME_TASKSCHEDULER","features":[466]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV4","features":[466]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV6","features":[466]},{"name":"CLUS_RESTYPE_NAME_VM","features":[466]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_BROKER","features":[466]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_COORDINATOR","features":[466]},{"name":"CLUS_RESTYPE_NAME_VM_CONFIG","features":[466]},{"name":"CLUS_RESTYPE_NAME_VM_WMI","features":[466]},{"name":"CLUS_RESTYPE_NAME_VSSTASK","features":[466]},{"name":"CLUS_RESTYPE_NAME_WINS","features":[466]},{"name":"CLUS_RES_NAME_SCALEOUT_MASTER","features":[466]},{"name":"CLUS_RES_NAME_SCALEOUT_WORKER","features":[466]},{"name":"CLUS_SCSI_ADDRESS","features":[466]},{"name":"CLUS_SET_MAINTENANCE_MODE_INPUT","features":[303,466]},{"name":"CLUS_SHARED_VOLUME_BACKUP_MODE","features":[466]},{"name":"CLUS_STARTING_PARAMS","features":[303,466]},{"name":"CLUS_STORAGE_GET_AVAILABLE_DRIVELETTERS","features":[466]},{"name":"CLUS_STORAGE_REMAP_DRIVELETTER","features":[466]},{"name":"CLUS_STORAGE_SET_DRIVELETTER","features":[466]},{"name":"CLUS_WORKER","features":[303,466]},{"name":"CREATEDC_PRESENT","features":[466]},{"name":"CREATE_CLUSTER_CONFIG","features":[303,466]},{"name":"CREATE_CLUSTER_MAJOR_VERSION_MASK","features":[466]},{"name":"CREATE_CLUSTER_NAME_ACCOUNT","features":[303,466]},{"name":"CREATE_CLUSTER_VERSION","features":[466]},{"name":"CTCTL_GET_FAULT_DOMAIN_STATE","features":[466]},{"name":"CTCTL_GET_ROUTESTATUS_BASIC","features":[466]},{"name":"CTCTL_GET_ROUTESTATUS_EXTENDED","features":[466]},{"name":"CanResourceBeDependent","features":[303,466]},{"name":"CancelClusterGroupOperation","features":[466]},{"name":"ChangeClusterResourceGroup","features":[466]},{"name":"ChangeClusterResourceGroupEx","features":[466]},{"name":"ChangeClusterResourceGroupEx2","features":[466]},{"name":"CloseCluster","features":[303,466]},{"name":"CloseClusterCryptProvider","features":[466]},{"name":"CloseClusterGroup","features":[303,466]},{"name":"CloseClusterGroupSet","features":[303,466]},{"name":"CloseClusterNetInterface","features":[303,466]},{"name":"CloseClusterNetwork","features":[303,466]},{"name":"CloseClusterNode","features":[303,466]},{"name":"CloseClusterNotifyPort","features":[303,466]},{"name":"CloseClusterResource","features":[303,466]},{"name":"ClusAddClusterHealthFault","features":[466]},{"name":"ClusApplication","features":[466]},{"name":"ClusCryptoKeys","features":[466]},{"name":"ClusDisk","features":[466]},{"name":"ClusDisks","features":[466]},{"name":"ClusGetClusterHealthFaults","features":[466]},{"name":"ClusGroupTypeAvailableStorage","features":[466]},{"name":"ClusGroupTypeClusterUpdateAgent","features":[466]},{"name":"ClusGroupTypeCoreCluster","features":[466]},{"name":"ClusGroupTypeCoreSddc","features":[466]},{"name":"ClusGroupTypeCrossClusterOrchestrator","features":[466]},{"name":"ClusGroupTypeDhcpServer","features":[466]},{"name":"ClusGroupTypeDtc","features":[466]},{"name":"ClusGroupTypeFileServer","features":[466]},{"name":"ClusGroupTypeGenericApplication","features":[466]},{"name":"ClusGroupTypeGenericScript","features":[466]},{"name":"ClusGroupTypeGenericService","features":[466]},{"name":"ClusGroupTypeIScsiNameService","features":[466]},{"name":"ClusGroupTypeIScsiTarget","features":[466]},{"name":"ClusGroupTypeInfrastructureFileServer","features":[466]},{"name":"ClusGroupTypeMsmq","features":[466]},{"name":"ClusGroupTypePrintServer","features":[466]},{"name":"ClusGroupTypeScaleoutCluster","features":[466]},{"name":"ClusGroupTypeScaleoutFileServer","features":[466]},{"name":"ClusGroupTypeSharedVolume","features":[466]},{"name":"ClusGroupTypeStandAloneDfs","features":[466]},{"name":"ClusGroupTypeStoragePool","features":[466]},{"name":"ClusGroupTypeStorageReplica","features":[466]},{"name":"ClusGroupTypeTaskScheduler","features":[466]},{"name":"ClusGroupTypeTemporary","features":[466]},{"name":"ClusGroupTypeTsSessionBroker","features":[466]},{"name":"ClusGroupTypeUnknown","features":[466]},{"name":"ClusGroupTypeVMReplicaBroker","features":[466]},{"name":"ClusGroupTypeVMReplicaCoordinator","features":[466]},{"name":"ClusGroupTypeVirtualMachine","features":[466]},{"name":"ClusGroupTypeWins","features":[466]},{"name":"ClusNetInterface","features":[466]},{"name":"ClusNetInterfaces","features":[466]},{"name":"ClusNetwork","features":[466]},{"name":"ClusNetworkNetInterfaces","features":[466]},{"name":"ClusNetworks","features":[466]},{"name":"ClusNode","features":[466]},{"name":"ClusNodeNetInterfaces","features":[466]},{"name":"ClusNodes","features":[466]},{"name":"ClusPartition","features":[466]},{"name":"ClusPartitionEx","features":[466]},{"name":"ClusPartitions","features":[466]},{"name":"ClusProperties","features":[466]},{"name":"ClusProperty","features":[466]},{"name":"ClusPropertyValue","features":[466]},{"name":"ClusPropertyValueData","features":[466]},{"name":"ClusPropertyValues","features":[466]},{"name":"ClusRefObject","features":[466]},{"name":"ClusRegistryKeys","features":[466]},{"name":"ClusRemoveClusterHealthFault","features":[466]},{"name":"ClusResDependencies","features":[466]},{"name":"ClusResDependents","features":[466]},{"name":"ClusResGroup","features":[466]},{"name":"ClusResGroupPreferredOwnerNodes","features":[466]},{"name":"ClusResGroupResources","features":[466]},{"name":"ClusResGroups","features":[466]},{"name":"ClusResPossibleOwnerNodes","features":[466]},{"name":"ClusResType","features":[466]},{"name":"ClusResTypePossibleOwnerNodes","features":[466]},{"name":"ClusResTypeResources","features":[466]},{"name":"ClusResTypes","features":[466]},{"name":"ClusResource","features":[466]},{"name":"ClusResources","features":[466]},{"name":"ClusScsiAddress","features":[466]},{"name":"ClusVersion","features":[466]},{"name":"ClusWorkerCheckTerminate","features":[303,466]},{"name":"ClusWorkerCreate","features":[303,466]},{"name":"ClusWorkerTerminate","features":[303,466]},{"name":"ClusWorkerTerminateEx","features":[303,466]},{"name":"ClusWorkersTerminate","features":[303,466]},{"name":"ClusapiSetReasonHandler","features":[303,466]},{"name":"Cluster","features":[466]},{"name":"ClusterAddGroupToAffinityRule","features":[466]},{"name":"ClusterAddGroupToGroupSet","features":[466]},{"name":"ClusterAddGroupToGroupSetWithDomains","features":[466]},{"name":"ClusterAddGroupToGroupSetWithDomainsEx","features":[466]},{"name":"ClusterAffinityRuleControl","features":[466]},{"name":"ClusterClearBackupStateForSharedVolume","features":[466]},{"name":"ClusterCloseEnum","features":[466]},{"name":"ClusterCloseEnumEx","features":[466]},{"name":"ClusterControl","features":[466]},{"name":"ClusterControlEx","features":[466]},{"name":"ClusterCreateAffinityRule","features":[466]},{"name":"ClusterDecrypt","features":[466]},{"name":"ClusterEncrypt","features":[466]},{"name":"ClusterEnum","features":[466]},{"name":"ClusterEnumEx","features":[466]},{"name":"ClusterGetEnumCount","features":[466]},{"name":"ClusterGetEnumCountEx","features":[466]},{"name":"ClusterGetVolumeNameForVolumeMountPoint","features":[303,466]},{"name":"ClusterGetVolumePathName","features":[303,466]},{"name":"ClusterGroupAllowFailback","features":[466]},{"name":"ClusterGroupCloseEnum","features":[466]},{"name":"ClusterGroupCloseEnumEx","features":[466]},{"name":"ClusterGroupControl","features":[466]},{"name":"ClusterGroupControlEx","features":[466]},{"name":"ClusterGroupEnum","features":[466]},{"name":"ClusterGroupEnumEx","features":[466]},{"name":"ClusterGroupFailbackTypeCount","features":[466]},{"name":"ClusterGroupFailed","features":[466]},{"name":"ClusterGroupGetEnumCount","features":[466]},{"name":"ClusterGroupGetEnumCountEx","features":[466]},{"name":"ClusterGroupOffline","features":[466]},{"name":"ClusterGroupOnline","features":[466]},{"name":"ClusterGroupOpenEnum","features":[466]},{"name":"ClusterGroupOpenEnumEx","features":[466]},{"name":"ClusterGroupPartialOnline","features":[466]},{"name":"ClusterGroupPending","features":[466]},{"name":"ClusterGroupPreventFailback","features":[466]},{"name":"ClusterGroupSetCloseEnum","features":[466]},{"name":"ClusterGroupSetControl","features":[466]},{"name":"ClusterGroupSetControlEx","features":[466]},{"name":"ClusterGroupSetEnum","features":[466]},{"name":"ClusterGroupSetGetEnumCount","features":[466]},{"name":"ClusterGroupSetOpenEnum","features":[466]},{"name":"ClusterGroupStateUnknown","features":[466]},{"name":"ClusterIsPathOnSharedVolume","features":[303,466]},{"name":"ClusterNames","features":[466]},{"name":"ClusterNetInterfaceCloseEnum","features":[466]},{"name":"ClusterNetInterfaceControl","features":[466]},{"name":"ClusterNetInterfaceControlEx","features":[466]},{"name":"ClusterNetInterfaceEnum","features":[466]},{"name":"ClusterNetInterfaceFailed","features":[466]},{"name":"ClusterNetInterfaceOpenEnum","features":[466]},{"name":"ClusterNetInterfaceStateUnknown","features":[466]},{"name":"ClusterNetInterfaceUnavailable","features":[466]},{"name":"ClusterNetInterfaceUnreachable","features":[466]},{"name":"ClusterNetInterfaceUp","features":[466]},{"name":"ClusterNetworkCloseEnum","features":[466]},{"name":"ClusterNetworkControl","features":[466]},{"name":"ClusterNetworkControlEx","features":[466]},{"name":"ClusterNetworkDown","features":[466]},{"name":"ClusterNetworkEnum","features":[466]},{"name":"ClusterNetworkGetEnumCount","features":[466]},{"name":"ClusterNetworkOpenEnum","features":[466]},{"name":"ClusterNetworkPartitioned","features":[466]},{"name":"ClusterNetworkRoleClientAccess","features":[466]},{"name":"ClusterNetworkRoleInternalAndClient","features":[466]},{"name":"ClusterNetworkRoleInternalUse","features":[466]},{"name":"ClusterNetworkRoleNone","features":[466]},{"name":"ClusterNetworkStateUnknown","features":[466]},{"name":"ClusterNetworkUnavailable","features":[466]},{"name":"ClusterNetworkUp","features":[466]},{"name":"ClusterNodeCloseEnum","features":[466]},{"name":"ClusterNodeCloseEnumEx","features":[466]},{"name":"ClusterNodeControl","features":[466]},{"name":"ClusterNodeControlEx","features":[466]},{"name":"ClusterNodeDown","features":[466]},{"name":"ClusterNodeDrainStatusCount","features":[466]},{"name":"ClusterNodeEnum","features":[466]},{"name":"ClusterNodeEnumEx","features":[466]},{"name":"ClusterNodeGetEnumCount","features":[466]},{"name":"ClusterNodeGetEnumCountEx","features":[466]},{"name":"ClusterNodeJoining","features":[466]},{"name":"ClusterNodeOpenEnum","features":[466]},{"name":"ClusterNodeOpenEnumEx","features":[466]},{"name":"ClusterNodePaused","features":[466]},{"name":"ClusterNodeReplacement","features":[466]},{"name":"ClusterNodeResumeFailbackTypeCount","features":[466]},{"name":"ClusterNodeStateUnknown","features":[466]},{"name":"ClusterNodeUp","features":[466]},{"name":"ClusterOpenEnum","features":[466]},{"name":"ClusterOpenEnumEx","features":[466]},{"name":"ClusterPrepareSharedVolumeForBackup","features":[466]},{"name":"ClusterRegBatchAddCommand","features":[466]},{"name":"ClusterRegBatchCloseNotification","features":[466]},{"name":"ClusterRegBatchReadCommand","features":[466]},{"name":"ClusterRegCloseBatch","features":[303,466]},{"name":"ClusterRegCloseBatchEx","features":[466]},{"name":"ClusterRegCloseBatchNotifyPort","features":[466]},{"name":"ClusterRegCloseKey","features":[466,364]},{"name":"ClusterRegCloseReadBatch","features":[466]},{"name":"ClusterRegCloseReadBatchEx","features":[466]},{"name":"ClusterRegCloseReadBatchReply","features":[466]},{"name":"ClusterRegCreateBatch","features":[466,364]},{"name":"ClusterRegCreateBatchNotifyPort","features":[466,364]},{"name":"ClusterRegCreateKey","features":[303,466,306,364]},{"name":"ClusterRegCreateKeyEx","features":[303,466,306,364]},{"name":"ClusterRegCreateReadBatch","features":[466,364]},{"name":"ClusterRegDeleteKey","features":[466,364]},{"name":"ClusterRegDeleteKeyEx","features":[466,364]},{"name":"ClusterRegDeleteValue","features":[466,364]},{"name":"ClusterRegDeleteValueEx","features":[466,364]},{"name":"ClusterRegEnumKey","features":[303,466,364]},{"name":"ClusterRegEnumValue","features":[466,364]},{"name":"ClusterRegGetBatchNotification","features":[466]},{"name":"ClusterRegGetKeySecurity","features":[466,306,364]},{"name":"ClusterRegOpenKey","features":[466,364]},{"name":"ClusterRegQueryInfoKey","features":[303,466,364]},{"name":"ClusterRegQueryValue","features":[466,364]},{"name":"ClusterRegReadBatchAddCommand","features":[466]},{"name":"ClusterRegReadBatchReplyNextCommand","features":[466]},{"name":"ClusterRegSetKeySecurity","features":[466,306,364]},{"name":"ClusterRegSetKeySecurityEx","features":[466,306,364]},{"name":"ClusterRegSetValue","features":[466,364]},{"name":"ClusterRegSetValueEx","features":[466,364]},{"name":"ClusterRegSyncDatabase","features":[466]},{"name":"ClusterRemoveAffinityRule","features":[466]},{"name":"ClusterRemoveGroupFromAffinityRule","features":[466]},{"name":"ClusterRemoveGroupFromGroupSet","features":[466]},{"name":"ClusterRemoveGroupFromGroupSetEx","features":[466]},{"name":"ClusterResourceApplicationOSHeartBeat","features":[466]},{"name":"ClusterResourceApplicationReady","features":[466]},{"name":"ClusterResourceApplicationStateUnknown","features":[466]},{"name":"ClusterResourceCloseEnum","features":[466]},{"name":"ClusterResourceCloseEnumEx","features":[466]},{"name":"ClusterResourceControl","features":[466]},{"name":"ClusterResourceControlAsUser","features":[466]},{"name":"ClusterResourceControlAsUserEx","features":[466]},{"name":"ClusterResourceControlEx","features":[466]},{"name":"ClusterResourceDontRestart","features":[466]},{"name":"ClusterResourceEmbeddedFailureActionLogOnly","features":[466]},{"name":"ClusterResourceEmbeddedFailureActionNone","features":[466]},{"name":"ClusterResourceEmbeddedFailureActionRecover","features":[466]},{"name":"ClusterResourceEnum","features":[466]},{"name":"ClusterResourceEnumEx","features":[466]},{"name":"ClusterResourceFailed","features":[466]},{"name":"ClusterResourceGetEnumCount","features":[466]},{"name":"ClusterResourceGetEnumCountEx","features":[466]},{"name":"ClusterResourceInherited","features":[466]},{"name":"ClusterResourceInitializing","features":[466]},{"name":"ClusterResourceOffline","features":[466]},{"name":"ClusterResourceOfflinePending","features":[466]},{"name":"ClusterResourceOnline","features":[466]},{"name":"ClusterResourceOnlinePending","features":[466]},{"name":"ClusterResourceOpenEnum","features":[466]},{"name":"ClusterResourceOpenEnumEx","features":[466]},{"name":"ClusterResourcePending","features":[466]},{"name":"ClusterResourceRestartActionCount","features":[466]},{"name":"ClusterResourceRestartNoNotify","features":[466]},{"name":"ClusterResourceRestartNotify","features":[466]},{"name":"ClusterResourceStateUnknown","features":[466]},{"name":"ClusterResourceTypeCloseEnum","features":[466]},{"name":"ClusterResourceTypeControl","features":[466]},{"name":"ClusterResourceTypeControlAsUser","features":[466]},{"name":"ClusterResourceTypeControlAsUserEx","features":[466]},{"name":"ClusterResourceTypeControlEx","features":[466]},{"name":"ClusterResourceTypeEnum","features":[466]},{"name":"ClusterResourceTypeGetEnumCount","features":[466]},{"name":"ClusterResourceTypeOpenEnum","features":[466]},{"name":"ClusterRoleClustered","features":[466]},{"name":"ClusterRoleDFSReplicatedFolder","features":[466]},{"name":"ClusterRoleDHCP","features":[466]},{"name":"ClusterRoleDTC","features":[466]},{"name":"ClusterRoleDistributedFileSystem","features":[466]},{"name":"ClusterRoleDistributedNetworkName","features":[466]},{"name":"ClusterRoleFileServer","features":[466]},{"name":"ClusterRoleFileShare","features":[466]},{"name":"ClusterRoleFileShareWitness","features":[466]},{"name":"ClusterRoleGenericApplication","features":[466]},{"name":"ClusterRoleGenericScript","features":[466]},{"name":"ClusterRoleGenericService","features":[466]},{"name":"ClusterRoleHardDisk","features":[466]},{"name":"ClusterRoleIPAddress","features":[466]},{"name":"ClusterRoleIPV6Address","features":[466]},{"name":"ClusterRoleIPV6TunnelAddress","features":[466]},{"name":"ClusterRoleISCSINameServer","features":[466]},{"name":"ClusterRoleISCSITargetServer","features":[466]},{"name":"ClusterRoleMSMQ","features":[466]},{"name":"ClusterRoleNFS","features":[466]},{"name":"ClusterRoleNetworkFileSystem","features":[466]},{"name":"ClusterRoleNetworkName","features":[466]},{"name":"ClusterRolePhysicalDisk","features":[466]},{"name":"ClusterRolePrintServer","features":[466]},{"name":"ClusterRoleSODAFileServer","features":[466]},{"name":"ClusterRoleStandAloneNamespaceServer","features":[466]},{"name":"ClusterRoleStoragePool","features":[466]},{"name":"ClusterRoleTaskScheduler","features":[466]},{"name":"ClusterRoleUnclustered","features":[466]},{"name":"ClusterRoleUnknown","features":[466]},{"name":"ClusterRoleVirtualMachine","features":[466]},{"name":"ClusterRoleVirtualMachineConfiguration","features":[466]},{"name":"ClusterRoleVirtualMachineReplicaBroker","features":[466]},{"name":"ClusterRoleVolumeShadowCopyServiceTask","features":[466]},{"name":"ClusterRoleWINS","features":[466]},{"name":"ClusterSetAccountAccess","features":[466]},{"name":"ClusterSetupPhaseAddClusterProperties","features":[466]},{"name":"ClusterSetupPhaseAddNodeToCluster","features":[466]},{"name":"ClusterSetupPhaseCleanupCOs","features":[466]},{"name":"ClusterSetupPhaseCleanupNode","features":[466]},{"name":"ClusterSetupPhaseClusterGroupOnline","features":[466]},{"name":"ClusterSetupPhaseConfigureClusSvc","features":[466]},{"name":"ClusterSetupPhaseConfigureClusterAccount","features":[466]},{"name":"ClusterSetupPhaseContinue","features":[466]},{"name":"ClusterSetupPhaseCoreGroupCleanup","features":[466]},{"name":"ClusterSetupPhaseCreateClusterAccount","features":[466]},{"name":"ClusterSetupPhaseCreateGroups","features":[466]},{"name":"ClusterSetupPhaseCreateIPAddressResources","features":[466]},{"name":"ClusterSetupPhaseCreateNetworkName","features":[466]},{"name":"ClusterSetupPhaseCreateResourceTypes","features":[466]},{"name":"ClusterSetupPhaseDeleteGroup","features":[466]},{"name":"ClusterSetupPhaseEnd","features":[466]},{"name":"ClusterSetupPhaseEvictNode","features":[466]},{"name":"ClusterSetupPhaseFailureCleanup","features":[466]},{"name":"ClusterSetupPhaseFatal","features":[466]},{"name":"ClusterSetupPhaseFormingCluster","features":[466]},{"name":"ClusterSetupPhaseGettingCurrentMembership","features":[466]},{"name":"ClusterSetupPhaseInformational","features":[466]},{"name":"ClusterSetupPhaseInitialize","features":[466]},{"name":"ClusterSetupPhaseMoveGroup","features":[466]},{"name":"ClusterSetupPhaseNodeUp","features":[466]},{"name":"ClusterSetupPhaseOfflineGroup","features":[466]},{"name":"ClusterSetupPhaseQueryClusterNameAccount","features":[466]},{"name":"ClusterSetupPhaseReport","features":[466]},{"name":"ClusterSetupPhaseStart","features":[466]},{"name":"ClusterSetupPhaseStartingClusSvc","features":[466]},{"name":"ClusterSetupPhaseValidateClusDisk","features":[466]},{"name":"ClusterSetupPhaseValidateClusterNameAccount","features":[466]},{"name":"ClusterSetupPhaseValidateNetft","features":[466]},{"name":"ClusterSetupPhaseValidateNodeState","features":[466]},{"name":"ClusterSetupPhaseWarning","features":[466]},{"name":"ClusterSharedVolumeHWSnapshotCompleted","features":[466]},{"name":"ClusterSharedVolumePrepareForFreeze","features":[466]},{"name":"ClusterSharedVolumePrepareForHWSnapshot","features":[466]},{"name":"ClusterSharedVolumeRenameInputTypeNone","features":[466]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeGuid","features":[466]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeId","features":[466]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeName","features":[466]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeOffset","features":[466]},{"name":"ClusterSharedVolumeSetSnapshotState","features":[466]},{"name":"ClusterSharedVolumeSnapshotStateUnknown","features":[466]},{"name":"ClusterStateNotConfigured","features":[466]},{"name":"ClusterStateNotInstalled","features":[466]},{"name":"ClusterStateNotRunning","features":[466]},{"name":"ClusterStateRunning","features":[466]},{"name":"ClusterStorageNodeDown","features":[466]},{"name":"ClusterStorageNodePaused","features":[466]},{"name":"ClusterStorageNodeStarting","features":[466]},{"name":"ClusterStorageNodeStateUnknown","features":[466]},{"name":"ClusterStorageNodeStopping","features":[466]},{"name":"ClusterStorageNodeUp","features":[466]},{"name":"ClusterUpgradeFunctionalLevel","features":[303,466]},{"name":"ClusterUpgradePhaseInitialize","features":[466]},{"name":"ClusterUpgradePhaseInstallingNewComponents","features":[466]},{"name":"ClusterUpgradePhaseUpgradeComplete","features":[466]},{"name":"ClusterUpgradePhaseUpgradingComponents","features":[466]},{"name":"ClusterUpgradePhaseValidatingUpgrade","features":[466]},{"name":"CreateCluster","features":[303,466]},{"name":"CreateClusterAvailabilitySet","features":[303,466]},{"name":"CreateClusterGroup","features":[466]},{"name":"CreateClusterGroupEx","features":[466]},{"name":"CreateClusterGroupSet","features":[466]},{"name":"CreateClusterNameAccount","features":[303,466]},{"name":"CreateClusterNotifyPort","features":[466]},{"name":"CreateClusterNotifyPortV2","features":[466]},{"name":"CreateClusterResource","features":[466]},{"name":"CreateClusterResourceEx","features":[466]},{"name":"CreateClusterResourceType","features":[466]},{"name":"CreateClusterResourceTypeEx","features":[466]},{"name":"DNS_LENGTH","features":[466]},{"name":"DeleteClusterGroup","features":[466]},{"name":"DeleteClusterGroupEx","features":[466]},{"name":"DeleteClusterGroupSet","features":[466]},{"name":"DeleteClusterGroupSetEx","features":[466]},{"name":"DeleteClusterResource","features":[466]},{"name":"DeleteClusterResourceEx","features":[466]},{"name":"DeleteClusterResourceType","features":[466]},{"name":"DeleteClusterResourceTypeEx","features":[466]},{"name":"DestroyCluster","features":[303,466]},{"name":"DestroyClusterGroup","features":[466]},{"name":"DestroyClusterGroupEx","features":[466]},{"name":"DetermineCNOResTypeFromCluster","features":[466]},{"name":"DetermineCNOResTypeFromNodelist","features":[466]},{"name":"DetermineClusterCloudTypeFromCluster","features":[466]},{"name":"DetermineClusterCloudTypeFromNodelist","features":[466]},{"name":"DoNotFailbackGroups","features":[466]},{"name":"DomainNames","features":[466]},{"name":"ENABLE_CLUSTER_SHARED_VOLUMES","features":[466]},{"name":"EvictClusterNode","features":[466]},{"name":"EvictClusterNodeEx","features":[466]},{"name":"EvictClusterNodeEx2","features":[466]},{"name":"FAILURE_TYPE","features":[466]},{"name":"FAILURE_TYPE_EMBEDDED","features":[466]},{"name":"FAILURE_TYPE_GENERAL","features":[466]},{"name":"FAILURE_TYPE_NETWORK_LOSS","features":[466]},{"name":"FE_UPGRADE_VERSION","features":[466]},{"name":"FILESHARE_CHANGE","features":[466]},{"name":"FILESHARE_CHANGE_ADD","features":[466]},{"name":"FILESHARE_CHANGE_DEL","features":[466]},{"name":"FILESHARE_CHANGE_ENUM","features":[466]},{"name":"FILESHARE_CHANGE_LIST","features":[466]},{"name":"FILESHARE_CHANGE_MODIFY","features":[466]},{"name":"FILESHARE_CHANGE_NONE","features":[466]},{"name":"FailClusterResource","features":[466]},{"name":"FailClusterResourceEx","features":[466]},{"name":"FailbackGroupsImmediately","features":[466]},{"name":"FailbackGroupsPerPolicy","features":[466]},{"name":"FreeClusterCrypt","features":[466]},{"name":"FreeClusterHealthFault","features":[466]},{"name":"FreeClusterHealthFaultArray","features":[466]},{"name":"GET_OPERATION_CONTEXT_PARAMS","features":[466]},{"name":"GROUPSET_READY_SETTING_APPLICATION_READY","features":[466]},{"name":"GROUPSET_READY_SETTING_DELAY","features":[466]},{"name":"GROUPSET_READY_SETTING_ONLINE","features":[466]},{"name":"GROUPSET_READY_SETTING_OS_HEARTBEAT","features":[466]},{"name":"GROUP_FAILURE_INFO","features":[466]},{"name":"GROUP_FAILURE_INFO_BUFFER","features":[466]},{"name":"GROUP_FAILURE_INFO_VERSION_1","features":[466]},{"name":"GRP_PLACEMENT_OPTIONS","features":[466]},{"name":"GRP_PLACEMENT_OPTIONS_ALL","features":[466]},{"name":"GRP_PLACEMENT_OPTIONS_DEFAULT","features":[466]},{"name":"GRP_PLACEMENT_OPTIONS_DISABLE_AUTOBALANCING","features":[466]},{"name":"GRP_PLACEMENT_OPTIONS_MIN_VALUE","features":[466]},{"name":"GUID_PRESENT","features":[466]},{"name":"GetClusterFromGroup","features":[466]},{"name":"GetClusterFromNetInterface","features":[466]},{"name":"GetClusterFromNetwork","features":[466]},{"name":"GetClusterFromNode","features":[466]},{"name":"GetClusterFromResource","features":[466]},{"name":"GetClusterGroupKey","features":[466,364]},{"name":"GetClusterGroupState","features":[466]},{"name":"GetClusterInformation","features":[466]},{"name":"GetClusterKey","features":[466,364]},{"name":"GetClusterNetInterface","features":[466]},{"name":"GetClusterNetInterfaceKey","features":[466,364]},{"name":"GetClusterNetInterfaceState","features":[466]},{"name":"GetClusterNetworkId","features":[466]},{"name":"GetClusterNetworkKey","features":[466,364]},{"name":"GetClusterNetworkState","features":[466]},{"name":"GetClusterNodeId","features":[466]},{"name":"GetClusterNodeKey","features":[466,364]},{"name":"GetClusterNodeState","features":[466]},{"name":"GetClusterNotify","features":[466]},{"name":"GetClusterNotifyV2","features":[466]},{"name":"GetClusterQuorumResource","features":[466]},{"name":"GetClusterResourceDependencyExpression","features":[466]},{"name":"GetClusterResourceKey","features":[466,364]},{"name":"GetClusterResourceNetworkName","features":[303,466]},{"name":"GetClusterResourceState","features":[466]},{"name":"GetClusterResourceTypeKey","features":[466,364]},{"name":"GetNodeCloudTypeDW","features":[466]},{"name":"GetNodeClusterState","features":[466]},{"name":"GetNotifyEventHandle","features":[303,466]},{"name":"HCHANGE","features":[466]},{"name":"HCI_UPGRADE_BIT","features":[466]},{"name":"HCLUSCRYPTPROVIDER","features":[466]},{"name":"HCLUSENUM","features":[466]},{"name":"HCLUSENUMEX","features":[466]},{"name":"HCLUSTER","features":[466]},{"name":"HGROUP","features":[466]},{"name":"HGROUPENUM","features":[466]},{"name":"HGROUPENUMEX","features":[466]},{"name":"HGROUPSET","features":[466]},{"name":"HGROUPSETENUM","features":[466]},{"name":"HNETINTERFACE","features":[466]},{"name":"HNETINTERFACEENUM","features":[466]},{"name":"HNETWORK","features":[466]},{"name":"HNETWORKENUM","features":[466]},{"name":"HNODE","features":[466]},{"name":"HNODEENUM","features":[466]},{"name":"HNODEENUMEX","features":[466]},{"name":"HREGBATCH","features":[466]},{"name":"HREGBATCHNOTIFICATION","features":[466]},{"name":"HREGBATCHPORT","features":[466]},{"name":"HREGREADBATCH","features":[466]},{"name":"HREGREADBATCHREPLY","features":[466]},{"name":"HRESENUM","features":[466]},{"name":"HRESENUMEX","features":[466]},{"name":"HRESOURCE","features":[466]},{"name":"HRESTYPEENUM","features":[466]},{"name":"IGetClusterDataInfo","features":[466]},{"name":"IGetClusterGroupInfo","features":[466]},{"name":"IGetClusterNetInterfaceInfo","features":[466]},{"name":"IGetClusterNetworkInfo","features":[466]},{"name":"IGetClusterNodeInfo","features":[466]},{"name":"IGetClusterObjectInfo","features":[466]},{"name":"IGetClusterResourceInfo","features":[466]},{"name":"IGetClusterUIInfo","features":[466]},{"name":"ISClusApplication","features":[466,354]},{"name":"ISClusCryptoKeys","features":[466,354]},{"name":"ISClusDisk","features":[466,354]},{"name":"ISClusDisks","features":[466,354]},{"name":"ISClusNetInterface","features":[466,354]},{"name":"ISClusNetInterfaces","features":[466,354]},{"name":"ISClusNetwork","features":[466,354]},{"name":"ISClusNetworkNetInterfaces","features":[466,354]},{"name":"ISClusNetworks","features":[466,354]},{"name":"ISClusNode","features":[466,354]},{"name":"ISClusNodeNetInterfaces","features":[466,354]},{"name":"ISClusNodes","features":[466,354]},{"name":"ISClusPartition","features":[466,354]},{"name":"ISClusPartitionEx","features":[466,354]},{"name":"ISClusPartitions","features":[466,354]},{"name":"ISClusProperties","features":[466,354]},{"name":"ISClusProperty","features":[466,354]},{"name":"ISClusPropertyValue","features":[466,354]},{"name":"ISClusPropertyValueData","features":[466,354]},{"name":"ISClusPropertyValues","features":[466,354]},{"name":"ISClusRefObject","features":[466,354]},{"name":"ISClusRegistryKeys","features":[466,354]},{"name":"ISClusResDependencies","features":[466,354]},{"name":"ISClusResDependents","features":[466,354]},{"name":"ISClusResGroup","features":[466,354]},{"name":"ISClusResGroupPreferredOwnerNodes","features":[466,354]},{"name":"ISClusResGroupResources","features":[466,354]},{"name":"ISClusResGroups","features":[466,354]},{"name":"ISClusResPossibleOwnerNodes","features":[466,354]},{"name":"ISClusResType","features":[466,354]},{"name":"ISClusResTypePossibleOwnerNodes","features":[466,354]},{"name":"ISClusResTypeResources","features":[466,354]},{"name":"ISClusResTypes","features":[466,354]},{"name":"ISClusResource","features":[466,354]},{"name":"ISClusResources","features":[466,354]},{"name":"ISClusScsiAddress","features":[466,354]},{"name":"ISClusVersion","features":[466,354]},{"name":"ISCluster","features":[466,354]},{"name":"ISClusterNames","features":[466,354]},{"name":"ISDomainNames","features":[466,354]},{"name":"IWCContextMenuCallback","features":[466]},{"name":"IWCPropertySheetCallback","features":[466]},{"name":"IWCWizard97Callback","features":[466]},{"name":"IWCWizardCallback","features":[466]},{"name":"IWEExtendContextMenu","features":[466]},{"name":"IWEExtendPropertySheet","features":[466]},{"name":"IWEExtendWizard","features":[466]},{"name":"IWEExtendWizard97","features":[466]},{"name":"IWEInvokeCommand","features":[466]},{"name":"InitializeClusterHealthFault","features":[466]},{"name":"InitializeClusterHealthFaultArray","features":[466]},{"name":"IsFileOnClusterSharedVolume","features":[303,466]},{"name":"LOCKED_MODE_FLAGS_DONT_REMOVE_FROM_MOVE_QUEUE","features":[466]},{"name":"LOG_ERROR","features":[466]},{"name":"LOG_INFORMATION","features":[466]},{"name":"LOG_LEVEL","features":[466]},{"name":"LOG_SEVERE","features":[466]},{"name":"LOG_WARNING","features":[466]},{"name":"LPGROUP_CALLBACK_EX","features":[466]},{"name":"LPNODE_CALLBACK","features":[466]},{"name":"LPRESOURCE_CALLBACK","features":[466]},{"name":"LPRESOURCE_CALLBACK_EX","features":[466]},{"name":"MAINTENANCE_MODE_TYPE_ENUM","features":[466]},{"name":"MAINTENANCE_MODE_V2_SIG","features":[466]},{"name":"MAX_CLUSTERNAME_LENGTH","features":[466]},{"name":"MAX_CO_PASSWORD_LENGTH","features":[466]},{"name":"MAX_CO_PASSWORD_LENGTHEX","features":[466]},{"name":"MAX_CO_PASSWORD_STORAGEEX","features":[466]},{"name":"MAX_CREATINGDC_LENGTH","features":[466]},{"name":"MAX_OBJECTID","features":[466]},{"name":"MINIMUM_NEVER_PREEMPT_PRIORITY","features":[466]},{"name":"MINIMUM_PREEMPTOR_PRIORITY","features":[466]},{"name":"MN_UPGRADE_VERSION","features":[466]},{"name":"MONITOR_STATE","features":[303,466]},{"name":"MaintenanceModeTypeDisableIsAliveCheck","features":[466]},{"name":"MaintenanceModeTypeOfflineResource","features":[466]},{"name":"MaintenanceModeTypeUnclusterResource","features":[466]},{"name":"ModifyQuorum","features":[466]},{"name":"MoveClusterGroup","features":[466]},{"name":"MoveClusterGroupEx","features":[466]},{"name":"MoveClusterGroupEx2","features":[466]},{"name":"NINETEEN_H1_UPGRADE_VERSION","features":[466]},{"name":"NINETEEN_H2_UPGRADE_VERSION","features":[466]},{"name":"NI_UPGRADE_VERSION","features":[466]},{"name":"NNLEN","features":[466]},{"name":"NODE_CLUSTER_STATE","features":[466]},{"name":"NOTIFY_FILTER_AND_TYPE","features":[466]},{"name":"NT10_MAJOR_VERSION","features":[466]},{"name":"NT11_MAJOR_VERSION","features":[466]},{"name":"NT12_MAJOR_VERSION","features":[466]},{"name":"NT13_MAJOR_VERSION","features":[466]},{"name":"NT4SP4_MAJOR_VERSION","features":[466]},{"name":"NT4_MAJOR_VERSION","features":[466]},{"name":"NT51_MAJOR_VERSION","features":[466]},{"name":"NT5_MAJOR_VERSION","features":[466]},{"name":"NT6_MAJOR_VERSION","features":[466]},{"name":"NT7_MAJOR_VERSION","features":[466]},{"name":"NT8_MAJOR_VERSION","features":[466]},{"name":"NT9_MAJOR_VERSION","features":[466]},{"name":"NodeDrainStatusCompleted","features":[466]},{"name":"NodeDrainStatusFailed","features":[466]},{"name":"NodeDrainStatusInProgress","features":[466]},{"name":"NodeDrainStatusNotInitiated","features":[466]},{"name":"NodeStatusAvoidPlacement","features":[466]},{"name":"NodeStatusDrainCompleted","features":[466]},{"name":"NodeStatusDrainFailed","features":[466]},{"name":"NodeStatusDrainInProgress","features":[466]},{"name":"NodeStatusIsolated","features":[466]},{"name":"NodeStatusMax","features":[466]},{"name":"NodeStatusNormal","features":[466]},{"name":"NodeStatusQuarantined","features":[466]},{"name":"NodeUtilizationInfoElement","features":[466]},{"name":"OfflineClusterGroup","features":[466]},{"name":"OfflineClusterGroupEx","features":[466]},{"name":"OfflineClusterGroupEx2","features":[466]},{"name":"OfflineClusterResource","features":[466]},{"name":"OfflineClusterResourceEx","features":[466]},{"name":"OfflineClusterResourceEx2","features":[466]},{"name":"OnlineClusterGroup","features":[466]},{"name":"OnlineClusterGroupEx","features":[466]},{"name":"OnlineClusterGroupEx2","features":[466]},{"name":"OnlineClusterResource","features":[466]},{"name":"OnlineClusterResourceEx","features":[466]},{"name":"OnlineClusterResourceEx2","features":[466]},{"name":"OpenCluster","features":[466]},{"name":"OpenClusterCryptProvider","features":[466]},{"name":"OpenClusterCryptProviderEx","features":[466]},{"name":"OpenClusterEx","features":[466]},{"name":"OpenClusterGroup","features":[466]},{"name":"OpenClusterGroupEx","features":[466]},{"name":"OpenClusterGroupSet","features":[466]},{"name":"OpenClusterNetInterface","features":[466]},{"name":"OpenClusterNetInterfaceEx","features":[466]},{"name":"OpenClusterNetwork","features":[466]},{"name":"OpenClusterNetworkEx","features":[466]},{"name":"OpenClusterNode","features":[466]},{"name":"OpenClusterNodeById","features":[466]},{"name":"OpenClusterNodeEx","features":[466]},{"name":"OpenClusterResource","features":[466]},{"name":"OpenClusterResourceEx","features":[466]},{"name":"OperationalQuorum","features":[466]},{"name":"PARBITRATE_ROUTINE","features":[466]},{"name":"PARM_WPR_WATCHDOG_FOR_CURRENT_RESOURCE_CALL_ROUTINE","features":[466]},{"name":"PBEGIN_RESCALL_AS_USER_ROUTINE","features":[303,466]},{"name":"PBEGIN_RESCALL_ROUTINE","features":[303,466]},{"name":"PBEGIN_RESTYPECALL_AS_USER_ROUTINE","features":[303,466]},{"name":"PBEGIN_RESTYPECALL_ROUTINE","features":[303,466]},{"name":"PCANCEL_ROUTINE","features":[466]},{"name":"PCHANGE_RESOURCE_PROCESS_FOR_DUMPS","features":[303,466]},{"name":"PCHANGE_RES_TYPE_PROCESS_FOR_DUMPS","features":[303,466]},{"name":"PCLOSE_CLUSTER_CRYPT_PROVIDER","features":[466]},{"name":"PCLOSE_ROUTINE","features":[466]},{"name":"PCLUSAPIClusWorkerCheckTerminate","features":[303,466]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE","features":[303,466]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE_EX","features":[303,466]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE","features":[466]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE_EX","features":[466]},{"name":"PCLUSAPI_ADD_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_ADD_RESOURCE_TO_CLUSTER_SHARED_VOLUMES","features":[466]},{"name":"PCLUSAPI_BACKUP_CLUSTER_DATABASE","features":[466]},{"name":"PCLUSAPI_CAN_RESOURCE_BE_DEPENDENT","features":[303,466]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP","features":[466]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX","features":[466]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX2","features":[466]},{"name":"PCLUSAPI_CLOSE_CLUSTER","features":[303,466]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP","features":[303,466]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP_GROUPSET","features":[303,466]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NETWORK","features":[303,466]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NET_INTERFACE","features":[303,466]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NODE","features":[303,466]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NOTIFY_PORT","features":[303,466]},{"name":"PCLUSAPI_CLOSE_CLUSTER_RESOURCE","features":[303,466]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_AFFINITY_RULE","features":[466]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUPSET_WITH_DOMAINS_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUP_GROUPSET","features":[466]},{"name":"PCLUSAPI_CLUSTER_AFFINITY_RULE_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_CREATE_AFFINITY_RULE","features":[466]},{"name":"PCLUSAPI_CLUSTER_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT","features":[466]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CLOSE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_NETWORK_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_NETWORK_GET_ENUM_COUNT","features":[466]},{"name":"PCLUSAPI_CLUSTER_NETWORK_OPEN_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_REG_CLOSE_KEY","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_BATCH","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY","features":[303,466,306,364]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY_EX","features":[303,466,306,364]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY_EX","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE_EX","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_KEY","features":[303,466,364]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_VALUE","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_GET_KEY_SECURITY","features":[466,306,364]},{"name":"PCLUSAPI_CLUSTER_REG_OPEN_KEY","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_INFO_KEY","features":[303,466,364]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_VALUE","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY","features":[466,306,364]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY_EX","features":[466,306,364]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE_EX","features":[466,364]},{"name":"PCLUSAPI_CLUSTER_REG_SYNC_DATABASE","features":[466]},{"name":"PCLUSAPI_CLUSTER_REMOVE_AFFINITY_RULE","features":[466]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_AFFINITY_RULE","features":[466]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET","features":[466]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_AS_USER_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CLOSE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_AS_USER_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_EX","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_GET_ENUM_COUNT","features":[466]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_OPEN_ENUM","features":[466]},{"name":"PCLUSAPI_CLUSTER_UPGRADE","features":[303,466]},{"name":"PCLUSAPI_CLUS_WORKER_CREATE","features":[303,466]},{"name":"PCLUSAPI_CLUS_WORKER_TERMINATE","features":[303,466]},{"name":"PCLUSAPI_CREATE_CLUSTER","features":[303,466]},{"name":"PCLUSAPI_CREATE_CLUSTER_AVAILABILITY_SET","features":[303,466]},{"name":"PCLUSAPI_CREATE_CLUSTER_CNOLESS","features":[303,466]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUPEX","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP_GROUPSET","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_NAME_ACCOUNT","features":[303,466]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT_V2","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_EX","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE","features":[466]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE_EX","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_EX","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET_EX","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_EX","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE","features":[466]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE_EX","features":[466]},{"name":"PCLUSAPI_DESTROY_CLUSTER","features":[303,466]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP","features":[466]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP_EX","features":[466]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE","features":[466]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX","features":[466]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX2","features":[466]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE","features":[466]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE_EX","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP_GROUPSET","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NETWORK","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NET_INTERFACE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NODE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_RESOURCE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_KEY","features":[466,364]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_STATE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_INFORMATION","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_KEY","features":[466,364]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_ID","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_KEY","features":[466,364]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_STATE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_KEY","features":[466,364]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_STATE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_ID","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_KEY","features":[466,364]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_STATE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY_V2","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_QUORUM_RESOURCE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_KEY","features":[466,364]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_NETWORK_NAME","features":[303,466]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_STATE","features":[466]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_TYPE_KEY","features":[466,364]},{"name":"PCLUSAPI_GET_NODE_CLUSTER_STATE","features":[466]},{"name":"PCLUSAPI_GET_NOTIFY_EVENT_HANDLE_V2","features":[303,466]},{"name":"PCLUSAPI_IS_FILE_ON_CLUSTER_SHARED_VOLUME","features":[303,466]},{"name":"PCLUSAPI_MOVE_CLUSTER_GROUP","features":[466]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_GROUP","features":[466]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_RESOURCE","features":[466]},{"name":"PCLUSAPI_ONLINE_CLUSTER_GROUP","features":[466]},{"name":"PCLUSAPI_ONLINE_CLUSTER_RESOURCE","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_EX","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_EX","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_GROUPSET","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETINTERFACE_EX","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK_EX","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_NET_INTERFACE","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE_EX","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE","features":[466]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE_EX","features":[466]},{"name":"PCLUSAPI_OPEN_NODE_BY_ID","features":[466]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE","features":[466]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX","features":[303,466]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX2","features":[303,466]},{"name":"PCLUSAPI_PFN_REASON_HANDLER","features":[303,466]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY","features":[303,466]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY_V2","features":[303,466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_NAME_ACCOUNT","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE","features":[466]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE_EX","features":[466]},{"name":"PCLUSAPI_REMOVE_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[466]},{"name":"PCLUSAPI_REMOVE_RESOURCE_FROM_CLUSTER_SHARED_VOLUMES","features":[466]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE","features":[466]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE_EX","features":[466]},{"name":"PCLUSAPI_RESTORE_CLUSTER_DATABASE","features":[303,466]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE","features":[466]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX","features":[466]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX2","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION_EX","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME_EX","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST_EX","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_NAME_EX","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME_EX","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_PRIORITY_ORDER","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE_EX","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME_EX","features":[466]},{"name":"PCLUSAPI_SET_CLUSTER_SERVICE_ACCOUNT_PASSWORD","features":[303,466]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION","features":[466]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION_EX","features":[466]},{"name":"PCLUSAPI_SET_REASON_HANDLER","features":[303,466]},{"name":"PCLUSAPI_SHARED_VOLUME_SET_SNAPSHOT_STATE","features":[466]},{"name":"PCLUSAPI_SetClusterName","features":[466]},{"name":"PCLUSTER_CLEAR_BACKUP_STATE_FOR_SHARED_VOLUME","features":[466]},{"name":"PCLUSTER_DECRYPT","features":[466]},{"name":"PCLUSTER_ENCRYPT","features":[466]},{"name":"PCLUSTER_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[303,466]},{"name":"PCLUSTER_GET_VOLUME_PATH_NAME","features":[303,466]},{"name":"PCLUSTER_IS_PATH_ON_SHARED_VOLUME","features":[303,466]},{"name":"PCLUSTER_PREPARE_SHARED_VOLUME_FOR_BACKUP","features":[466]},{"name":"PCLUSTER_REG_BATCH_ADD_COMMAND","features":[466]},{"name":"PCLUSTER_REG_BATCH_CLOSE_NOTIFICATION","features":[466]},{"name":"PCLUSTER_REG_BATCH_READ_COMMAND","features":[466]},{"name":"PCLUSTER_REG_CLOSE_BATCH","features":[303,466]},{"name":"PCLUSTER_REG_CLOSE_BATCH_NOTIFY_PORT","features":[466]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH","features":[466]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_EX","features":[466]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_REPLY","features":[466]},{"name":"PCLUSTER_REG_CREATE_BATCH_NOTIFY_PORT","features":[466,364]},{"name":"PCLUSTER_REG_CREATE_READ_BATCH","features":[466,364]},{"name":"PCLUSTER_REG_GET_BATCH_NOTIFICATION","features":[466]},{"name":"PCLUSTER_REG_READ_BATCH_ADD_COMMAND","features":[466]},{"name":"PCLUSTER_REG_READ_BATCH_REPLY_NEXT_COMMAND","features":[466]},{"name":"PCLUSTER_SETUP_PROGRESS_CALLBACK","features":[303,466]},{"name":"PCLUSTER_SET_ACCOUNT_ACCESS","features":[466]},{"name":"PCLUSTER_UPGRADE_PROGRESS_CALLBACK","features":[303,466]},{"name":"PEND_CONTROL_CALL","features":[466]},{"name":"PEND_TYPE_CONTROL_CALL","features":[466]},{"name":"PEXTEND_RES_CONTROL_CALL","features":[466]},{"name":"PEXTEND_RES_TYPE_CONTROL_CALL","features":[466]},{"name":"PFREE_CLUSTER_CRYPT","features":[466]},{"name":"PIS_ALIVE_ROUTINE","features":[303,466]},{"name":"PLACEMENT_OPTIONS","features":[466]},{"name":"PLACEMENT_OPTIONS_ALL","features":[466]},{"name":"PLACEMENT_OPTIONS_AVAILABILITY_SET_DOMAIN_AFFINITY","features":[466]},{"name":"PLACEMENT_OPTIONS_CONSIDER_OFFLINE_VMS","features":[466]},{"name":"PLACEMENT_OPTIONS_DEFAULT_PLACEMENT_OPTIONS","features":[466]},{"name":"PLACEMENT_OPTIONS_DISABLE_CSV_VM_DEPENDENCY","features":[466]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_AVAILABILTY_SET_VMS_WITH_EXISTING_TEMP_DISK","features":[466]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_VMS_WITH_EXISTING_TEMP_DISK","features":[466]},{"name":"PLACEMENT_OPTIONS_DONT_USE_CPU","features":[466]},{"name":"PLACEMENT_OPTIONS_DONT_USE_LOCAL_TEMP_DISK","features":[466]},{"name":"PLACEMENT_OPTIONS_DONT_USE_MEMORY","features":[466]},{"name":"PLACEMENT_OPTIONS_MIN_VALUE","features":[466]},{"name":"PLACEMENT_OPTIONS_SAVE_AVAILABILTY_SET_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[466]},{"name":"PLACEMENT_OPTIONS_SAVE_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[466]},{"name":"PLOG_EVENT_ROUTINE","features":[466]},{"name":"PLOOKS_ALIVE_ROUTINE","features":[303,466]},{"name":"POFFLINE_ROUTINE","features":[466]},{"name":"POFFLINE_V2_ROUTINE","features":[466]},{"name":"PONLINE_ROUTINE","features":[303,466]},{"name":"PONLINE_V2_ROUTINE","features":[303,466]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDER","features":[466]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDEREX","features":[466]},{"name":"POPEN_ROUTINE","features":[466,364]},{"name":"POPEN_V2_ROUTINE","features":[466,364]},{"name":"POST_UPGRADE_VERSION_INFO","features":[466]},{"name":"PQUERY_APPINSTANCE_VERSION","features":[303,466]},{"name":"PQUORUM_RESOURCE_LOST","features":[466]},{"name":"PRAISE_RES_TYPE_NOTIFICATION","features":[466]},{"name":"PREGISTER_APPINSTANCE","features":[303,466]},{"name":"PREGISTER_APPINSTANCE_VERSION","features":[466]},{"name":"PRELEASE_ROUTINE","features":[466]},{"name":"PREQUEST_DUMP_ROUTINE","features":[303,466]},{"name":"PRESET_ALL_APPINSTANCE_VERSIONS","features":[466]},{"name":"PRESOURCE_CONTROL_ROUTINE","features":[466]},{"name":"PRESOURCE_TYPE_CONTROL_ROUTINE","features":[466]},{"name":"PRESUTIL_ADD_UNKNOWN_PROPERTIES","features":[303,466,364]},{"name":"PRESUTIL_CREATE_DIRECTORY_TREE","features":[466]},{"name":"PRESUTIL_DUP_PARAMETER_BLOCK","features":[303,466]},{"name":"PRESUTIL_DUP_STRING","features":[466]},{"name":"PRESUTIL_ENUM_PRIVATE_PROPERTIES","features":[466,364]},{"name":"PRESUTIL_ENUM_PROPERTIES","features":[303,466]},{"name":"PRESUTIL_ENUM_RESOURCES","features":[466]},{"name":"PRESUTIL_ENUM_RESOURCES_EX","features":[466]},{"name":"PRESUTIL_ENUM_RESOURCES_EX2","features":[466]},{"name":"PRESUTIL_EXPAND_ENVIRONMENT_STRINGS","features":[466]},{"name":"PRESUTIL_FIND_BINARY_PROPERTY","features":[466]},{"name":"PRESUTIL_FIND_DEPENDENT_DISK_RESOURCE_DRIVE_LETTER","features":[466]},{"name":"PRESUTIL_FIND_DWORD_PROPERTY","features":[466]},{"name":"PRESUTIL_FIND_EXPANDED_SZ_PROPERTY","features":[466]},{"name":"PRESUTIL_FIND_EXPAND_SZ_PROPERTY","features":[466]},{"name":"PRESUTIL_FIND_FILETIME_PROPERTY","features":[303,466]},{"name":"PRESUTIL_FIND_LONG_PROPERTY","features":[466]},{"name":"PRESUTIL_FIND_MULTI_SZ_PROPERTY","features":[466]},{"name":"PRESUTIL_FIND_SZ_PROPERTY","features":[466]},{"name":"PRESUTIL_FIND_ULARGEINTEGER_PROPERTY","features":[466]},{"name":"PRESUTIL_FREE_ENVIRONMENT","features":[466]},{"name":"PRESUTIL_FREE_PARAMETER_BLOCK","features":[303,466]},{"name":"PRESUTIL_GET_ALL_PROPERTIES","features":[303,466,364]},{"name":"PRESUTIL_GET_BINARY_PROPERTY","features":[466]},{"name":"PRESUTIL_GET_BINARY_VALUE","features":[466,364]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES","features":[466]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES_EX","features":[466]},{"name":"PRESUTIL_GET_DWORD_PROPERTY","features":[466]},{"name":"PRESUTIL_GET_DWORD_VALUE","features":[466,364]},{"name":"PRESUTIL_GET_ENVIRONMENT_WITH_NET_NAME","features":[466]},{"name":"PRESUTIL_GET_EXPAND_SZ_VALUE","features":[303,466,364]},{"name":"PRESUTIL_GET_FILETIME_PROPERTY","features":[303,466]},{"name":"PRESUTIL_GET_LONG_PROPERTY","features":[466]},{"name":"PRESUTIL_GET_MULTI_SZ_PROPERTY","features":[466]},{"name":"PRESUTIL_GET_PRIVATE_PROPERTIES","features":[466,364]},{"name":"PRESUTIL_GET_PROPERTIES","features":[303,466,364]},{"name":"PRESUTIL_GET_PROPERTIES_TO_PARAMETER_BLOCK","features":[303,466,364]},{"name":"PRESUTIL_GET_PROPERTY","features":[303,466,364]},{"name":"PRESUTIL_GET_PROPERTY_FORMATS","features":[303,466]},{"name":"PRESUTIL_GET_PROPERTY_SIZE","features":[303,466,364]},{"name":"PRESUTIL_GET_QWORD_VALUE","features":[466,364]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY","features":[303,466]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS","features":[303,466]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS_EX","features":[303,466]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME","features":[303,466]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME_EX","features":[303,466]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_EX","features":[303,466]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENTIP_ADDRESS_PROPS","features":[466]},{"name":"PRESUTIL_GET_RESOURCE_NAME","features":[466]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY","features":[466]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY_EX","features":[466]},{"name":"PRESUTIL_GET_SZ_PROPERTY","features":[466]},{"name":"PRESUTIL_GET_SZ_VALUE","features":[466,364]},{"name":"PRESUTIL_IS_PATH_VALID","features":[303,466]},{"name":"PRESUTIL_IS_RESOURCE_CLASS_EQUAL","features":[303,466]},{"name":"PRESUTIL_PROPERTY_LIST_FROM_PARAMETER_BLOCK","features":[303,466]},{"name":"PRESUTIL_REMOVE_RESOURCE_SERVICE_ENVIRONMENT","features":[466]},{"name":"PRESUTIL_RESOURCES_EQUAL","features":[303,466]},{"name":"PRESUTIL_RESOURCE_TYPES_EQUAL","features":[303,466]},{"name":"PRESUTIL_SET_BINARY_VALUE","features":[466,364]},{"name":"PRESUTIL_SET_DWORD_VALUE","features":[466,364]},{"name":"PRESUTIL_SET_EXPAND_SZ_VALUE","features":[466,364]},{"name":"PRESUTIL_SET_MULTI_SZ_VALUE","features":[466,364]},{"name":"PRESUTIL_SET_PRIVATE_PROPERTY_LIST","features":[466,364]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK","features":[303,466,364]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK_EX","features":[303,466,364]},{"name":"PRESUTIL_SET_PROPERTY_TABLE","features":[303,466,364]},{"name":"PRESUTIL_SET_PROPERTY_TABLE_EX","features":[303,466,364]},{"name":"PRESUTIL_SET_QWORD_VALUE","features":[466,364]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_ENVIRONMENT","features":[466]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS","features":[466,306]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX","features":[466,306]},{"name":"PRESUTIL_SET_SZ_VALUE","features":[466,364]},{"name":"PRESUTIL_SET_UNKNOWN_PROPERTIES","features":[303,466,364]},{"name":"PRESUTIL_START_RESOURCE_SERVICE","features":[466,306]},{"name":"PRESUTIL_STOP_RESOURCE_SERVICE","features":[466]},{"name":"PRESUTIL_STOP_SERVICE","features":[466,306]},{"name":"PRESUTIL_TERMINATE_SERVICE_PROCESS_FROM_RES_DLL","features":[303,466]},{"name":"PRESUTIL_VERIFY_PRIVATE_PROPERTY_LIST","features":[466]},{"name":"PRESUTIL_VERIFY_PROPERTY_TABLE","features":[303,466]},{"name":"PRESUTIL_VERIFY_RESOURCE_SERVICE","features":[466]},{"name":"PRESUTIL_VERIFY_SERVICE","features":[466,306]},{"name":"PRES_UTIL_VERIFY_SHUTDOWN_SAFE","features":[466]},{"name":"PSET_INTERNAL_STATE","features":[303,466]},{"name":"PSET_RESOURCE_INMEMORY_NODELOCAL_PROPERTIES_ROUTINE","features":[466]},{"name":"PSET_RESOURCE_LOCKED_MODE_EX_ROUTINE","features":[303,466]},{"name":"PSET_RESOURCE_LOCKED_MODE_ROUTINE","features":[303,466]},{"name":"PSET_RESOURCE_STATUS_ROUTINE","features":[303,466]},{"name":"PSET_RESOURCE_STATUS_ROUTINE_EX","features":[303,466]},{"name":"PSET_RESOURCE_WPR_POLICY_ROUTINE","features":[466]},{"name":"PSIGNAL_FAILURE_ROUTINE","features":[466]},{"name":"PSTARTUP_EX_ROUTINE","features":[303,466,364]},{"name":"PSTARTUP_ROUTINE","features":[303,466,364]},{"name":"PTERMINATE_ROUTINE","features":[466]},{"name":"PWORKER_START_ROUTINE","features":[303,466]},{"name":"PauseClusterNode","features":[466]},{"name":"PauseClusterNodeEx","features":[303,466]},{"name":"PauseClusterNodeEx2","features":[303,466]},{"name":"PaxosTagCStruct","features":[466]},{"name":"PriorityDisabled","features":[466]},{"name":"PriorityHigh","features":[466]},{"name":"PriorityLow","features":[466]},{"name":"PriorityMedium","features":[466]},{"name":"QueryAppInstanceVersion","features":[303,466]},{"name":"RESDLL_CONTEXT_OPERATION_TYPE","features":[466]},{"name":"RESOURCE_EXIT_STATE","features":[466]},{"name":"RESOURCE_FAILURE_INFO","features":[466]},{"name":"RESOURCE_FAILURE_INFO_BUFFER","features":[466]},{"name":"RESOURCE_FAILURE_INFO_VERSION_1","features":[466]},{"name":"RESOURCE_MONITOR_STATE","features":[466]},{"name":"RESOURCE_STATUS","features":[303,466]},{"name":"RESOURCE_STATUS_EX","features":[303,466]},{"name":"RESOURCE_TERMINAL_FAILURE_INFO_BUFFER","features":[303,466]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_CLUSSVC_CRASH","features":[466]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_NODE_STOP","features":[466]},{"name":"RESUTIL_FILETIME_DATA","features":[303,466]},{"name":"RESUTIL_LARGEINT_DATA","features":[466]},{"name":"RESUTIL_PROPERTY_ITEM","features":[303,466]},{"name":"RESUTIL_PROPITEM_IN_MEMORY","features":[466]},{"name":"RESUTIL_PROPITEM_READ_ONLY","features":[466]},{"name":"RESUTIL_PROPITEM_REQUIRED","features":[466]},{"name":"RESUTIL_PROPITEM_SIGNED","features":[466]},{"name":"RESUTIL_ULARGEINT_DATA","features":[466]},{"name":"RS3_UPGRADE_VERSION","features":[466]},{"name":"RS4_UPGRADE_VERSION","features":[466]},{"name":"RS5_UPGRADE_VERSION","features":[466]},{"name":"RedirectedIOReasonBitLockerInitializing","features":[466]},{"name":"RedirectedIOReasonFileSystemTiering","features":[466]},{"name":"RedirectedIOReasonMax","features":[466]},{"name":"RedirectedIOReasonReFs","features":[466]},{"name":"RedirectedIOReasonUnsafeFileSystemFilter","features":[466]},{"name":"RedirectedIOReasonUnsafeVolumeFilter","features":[466]},{"name":"RedirectedIOReasonUserRequest","features":[466]},{"name":"RegisterAppInstance","features":[303,466]},{"name":"RegisterAppInstanceVersion","features":[466]},{"name":"RegisterClusterNotify","features":[303,466]},{"name":"RegisterClusterNotifyV2","features":[303,466]},{"name":"RegisterClusterResourceTypeNotifyV2","features":[466]},{"name":"RemoveClusterGroupDependency","features":[466]},{"name":"RemoveClusterGroupDependencyEx","features":[466]},{"name":"RemoveClusterGroupSetDependency","features":[466]},{"name":"RemoveClusterGroupSetDependencyEx","features":[466]},{"name":"RemoveClusterGroupToGroupSetDependency","features":[466]},{"name":"RemoveClusterGroupToGroupSetDependencyEx","features":[466]},{"name":"RemoveClusterNameAccount","features":[303,466]},{"name":"RemoveClusterResourceDependency","features":[466]},{"name":"RemoveClusterResourceDependencyEx","features":[466]},{"name":"RemoveClusterResourceNode","features":[466]},{"name":"RemoveClusterResourceNodeEx","features":[466]},{"name":"RemoveClusterStorageNode","features":[466]},{"name":"RemoveCrossClusterGroupSetDependency","features":[466]},{"name":"RemoveResourceFromClusterSharedVolumes","features":[466]},{"name":"ResUtilAddUnknownProperties","features":[303,466,364]},{"name":"ResUtilCreateDirectoryTree","features":[466]},{"name":"ResUtilDupGroup","features":[466]},{"name":"ResUtilDupParameterBlock","features":[303,466]},{"name":"ResUtilDupResource","features":[466]},{"name":"ResUtilDupString","features":[466]},{"name":"ResUtilEnumGroups","features":[466]},{"name":"ResUtilEnumGroupsEx","features":[466]},{"name":"ResUtilEnumPrivateProperties","features":[466,364]},{"name":"ResUtilEnumProperties","features":[303,466]},{"name":"ResUtilEnumResources","features":[466]},{"name":"ResUtilEnumResourcesEx","features":[466]},{"name":"ResUtilEnumResourcesEx2","features":[466]},{"name":"ResUtilExpandEnvironmentStrings","features":[466]},{"name":"ResUtilFindBinaryProperty","features":[466]},{"name":"ResUtilFindDependentDiskResourceDriveLetter","features":[466]},{"name":"ResUtilFindDwordProperty","features":[466]},{"name":"ResUtilFindExpandSzProperty","features":[466]},{"name":"ResUtilFindExpandedSzProperty","features":[466]},{"name":"ResUtilFindFileTimeProperty","features":[303,466]},{"name":"ResUtilFindLongProperty","features":[466]},{"name":"ResUtilFindMultiSzProperty","features":[466]},{"name":"ResUtilFindSzProperty","features":[466]},{"name":"ResUtilFindULargeIntegerProperty","features":[466]},{"name":"ResUtilFreeEnvironment","features":[466]},{"name":"ResUtilFreeParameterBlock","features":[303,466]},{"name":"ResUtilGetAllProperties","features":[303,466,364]},{"name":"ResUtilGetBinaryProperty","features":[466]},{"name":"ResUtilGetBinaryValue","features":[466,364]},{"name":"ResUtilGetClusterGroupType","features":[466]},{"name":"ResUtilGetClusterId","features":[466]},{"name":"ResUtilGetClusterRoleState","features":[466]},{"name":"ResUtilGetCoreClusterResources","features":[466]},{"name":"ResUtilGetCoreClusterResourcesEx","features":[466]},{"name":"ResUtilGetCoreGroup","features":[466]},{"name":"ResUtilGetDwordProperty","features":[466]},{"name":"ResUtilGetDwordValue","features":[466,364]},{"name":"ResUtilGetEnvironmentWithNetName","features":[466]},{"name":"ResUtilGetFileTimeProperty","features":[303,466]},{"name":"ResUtilGetLongProperty","features":[466]},{"name":"ResUtilGetMultiSzProperty","features":[466]},{"name":"ResUtilGetPrivateProperties","features":[466,364]},{"name":"ResUtilGetProperties","features":[303,466,364]},{"name":"ResUtilGetPropertiesToParameterBlock","features":[303,466,364]},{"name":"ResUtilGetProperty","features":[303,466,364]},{"name":"ResUtilGetPropertyFormats","features":[303,466]},{"name":"ResUtilGetPropertySize","features":[303,466,364]},{"name":"ResUtilGetQwordValue","features":[466,364]},{"name":"ResUtilGetResourceDependency","features":[303,466]},{"name":"ResUtilGetResourceDependencyByClass","features":[303,466]},{"name":"ResUtilGetResourceDependencyByClassEx","features":[303,466]},{"name":"ResUtilGetResourceDependencyByName","features":[303,466]},{"name":"ResUtilGetResourceDependencyByNameEx","features":[303,466]},{"name":"ResUtilGetResourceDependencyEx","features":[303,466]},{"name":"ResUtilGetResourceDependentIPAddressProps","features":[466]},{"name":"ResUtilGetResourceName","features":[466]},{"name":"ResUtilGetResourceNameDependency","features":[466]},{"name":"ResUtilGetResourceNameDependencyEx","features":[466]},{"name":"ResUtilGetSzProperty","features":[466]},{"name":"ResUtilGetSzValue","features":[466,364]},{"name":"ResUtilGroupsEqual","features":[303,466]},{"name":"ResUtilIsPathValid","features":[303,466]},{"name":"ResUtilIsResourceClassEqual","features":[303,466]},{"name":"ResUtilLeftPaxosIsLessThanRight","features":[303,466]},{"name":"ResUtilNodeEnum","features":[466]},{"name":"ResUtilPaxosComparer","features":[303,466]},{"name":"ResUtilPropertyListFromParameterBlock","features":[303,466]},{"name":"ResUtilRemoveResourceServiceEnvironment","features":[466]},{"name":"ResUtilResourceDepEnum","features":[466]},{"name":"ResUtilResourceTypesEqual","features":[303,466]},{"name":"ResUtilResourcesEqual","features":[303,466]},{"name":"ResUtilSetBinaryValue","features":[466,364]},{"name":"ResUtilSetDwordValue","features":[466,364]},{"name":"ResUtilSetExpandSzValue","features":[466,364]},{"name":"ResUtilSetMultiSzValue","features":[466,364]},{"name":"ResUtilSetPrivatePropertyList","features":[466,364]},{"name":"ResUtilSetPropertyParameterBlock","features":[303,466,364]},{"name":"ResUtilSetPropertyParameterBlockEx","features":[303,466,364]},{"name":"ResUtilSetPropertyTable","features":[303,466,364]},{"name":"ResUtilSetPropertyTableEx","features":[303,466,364]},{"name":"ResUtilSetQwordValue","features":[466,364]},{"name":"ResUtilSetResourceServiceEnvironment","features":[466]},{"name":"ResUtilSetResourceServiceStartParameters","features":[466,306]},{"name":"ResUtilSetResourceServiceStartParametersEx","features":[466,306]},{"name":"ResUtilSetSzValue","features":[466,364]},{"name":"ResUtilSetUnknownProperties","features":[303,466,364]},{"name":"ResUtilSetValueEx","features":[466,364]},{"name":"ResUtilStartResourceService","features":[466,306]},{"name":"ResUtilStopResourceService","features":[466]},{"name":"ResUtilStopService","features":[466,306]},{"name":"ResUtilTerminateServiceProcessFromResDll","features":[303,466]},{"name":"ResUtilVerifyPrivatePropertyList","features":[466]},{"name":"ResUtilVerifyPropertyTable","features":[303,466]},{"name":"ResUtilVerifyResourceService","features":[466]},{"name":"ResUtilVerifyService","features":[466,306]},{"name":"ResUtilVerifyShutdownSafe","features":[466]},{"name":"ResUtilsDeleteKeyTree","features":[303,466,364]},{"name":"ResdllContextOperationTypeDrain","features":[466]},{"name":"ResdllContextOperationTypeDrainFailure","features":[466]},{"name":"ResdllContextOperationTypeEmbeddedFailure","features":[466]},{"name":"ResdllContextOperationTypeFailback","features":[466]},{"name":"ResdllContextOperationTypeNetworkDisconnect","features":[466]},{"name":"ResdllContextOperationTypeNetworkDisconnectMoveRetry","features":[466]},{"name":"ResdllContextOperationTypePreemption","features":[466]},{"name":"ResetAllAppInstanceVersions","features":[466]},{"name":"ResourceExitStateContinue","features":[466]},{"name":"ResourceExitStateMax","features":[466]},{"name":"ResourceExitStateTerminate","features":[466]},{"name":"ResourceUtilizationInfoElement","features":[466]},{"name":"RestartClusterResource","features":[466]},{"name":"RestartClusterResourceEx","features":[466]},{"name":"RestoreClusterDatabase","features":[303,466]},{"name":"ResumeClusterNode","features":[466]},{"name":"ResumeClusterNodeEx","features":[466]},{"name":"ResumeClusterNodeEx2","features":[466]},{"name":"RmonArbitrateResource","features":[466]},{"name":"RmonDeadlocked","features":[466]},{"name":"RmonDeletingResource","features":[466]},{"name":"RmonIdle","features":[466]},{"name":"RmonInitializing","features":[466]},{"name":"RmonInitializingResource","features":[466]},{"name":"RmonIsAlivePoll","features":[466]},{"name":"RmonLooksAlivePoll","features":[466]},{"name":"RmonOfflineResource","features":[466]},{"name":"RmonOnlineResource","features":[466]},{"name":"RmonReleaseResource","features":[466]},{"name":"RmonResourceControl","features":[466]},{"name":"RmonResourceTypeControl","features":[466]},{"name":"RmonShutdownResource","features":[466]},{"name":"RmonStartingResource","features":[466]},{"name":"RmonTerminateResource","features":[466]},{"name":"SET_APPINSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[466]},{"name":"SET_APP_INSTANCE_CSV_FLAGS","features":[303,466]},{"name":"SR_DISK_REPLICATION_ELIGIBLE","features":[466]},{"name":"SR_REPLICATED_DISK_TYPE","features":[466]},{"name":"SR_REPLICATED_PARTITION_DISALLOW_MULTINODE_IO","features":[466]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP","features":[303,466]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP_RESULT","features":[466]},{"name":"SR_RESOURCE_TYPE_DISK_INFO","features":[466]},{"name":"SR_RESOURCE_TYPE_ELIGIBLE_DISKS_RESULT","features":[466]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_LOGDISKS","features":[303,466]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_SOURCE_DATADISKS","features":[303,466]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_TARGET_DATADISKS","features":[303,466]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISK","features":[466]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISKS_RESULT","features":[466]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_ARRAY","features":[466]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_INFO","features":[466]},{"name":"STARTUP_EX_ROUTINE","features":[466]},{"name":"STARTUP_ROUTINE","features":[466]},{"name":"SetAppInstanceCsvFlags","features":[303,466]},{"name":"SetClusterGroupName","features":[466]},{"name":"SetClusterGroupNameEx","features":[466]},{"name":"SetClusterGroupNodeList","features":[466]},{"name":"SetClusterGroupNodeListEx","features":[466]},{"name":"SetClusterGroupSetDependencyExpression","features":[466]},{"name":"SetClusterGroupSetDependencyExpressionEx","features":[466]},{"name":"SetClusterName","features":[466]},{"name":"SetClusterNameEx","features":[466]},{"name":"SetClusterNetworkName","features":[466]},{"name":"SetClusterNetworkNameEx","features":[466]},{"name":"SetClusterNetworkPriorityOrder","features":[466]},{"name":"SetClusterQuorumResource","features":[466]},{"name":"SetClusterQuorumResourceEx","features":[466]},{"name":"SetClusterResourceDependencyExpression","features":[466]},{"name":"SetClusterResourceName","features":[466]},{"name":"SetClusterResourceNameEx","features":[466]},{"name":"SetClusterServiceAccountPassword","features":[303,466]},{"name":"SetGroupDependencyExpression","features":[466]},{"name":"SetGroupDependencyExpressionEx","features":[466]},{"name":"SharedVolumeStateActive","features":[466]},{"name":"SharedVolumeStateActiveRedirected","features":[466]},{"name":"SharedVolumeStateActiveVolumeRedirected","features":[466]},{"name":"SharedVolumeStatePaused","features":[466]},{"name":"SharedVolumeStateUnavailable","features":[466]},{"name":"SrDiskReplicationEligibleAlreadyInReplication","features":[466]},{"name":"SrDiskReplicationEligibleFileSystemNotSupported","features":[466]},{"name":"SrDiskReplicationEligibleInSameSite","features":[466]},{"name":"SrDiskReplicationEligibleInsufficientFreeSpace","features":[466]},{"name":"SrDiskReplicationEligibleNone","features":[466]},{"name":"SrDiskReplicationEligibleNotGpt","features":[466]},{"name":"SrDiskReplicationEligibleNotInSameSite","features":[466]},{"name":"SrDiskReplicationEligibleOffline","features":[466]},{"name":"SrDiskReplicationEligibleOther","features":[466]},{"name":"SrDiskReplicationEligiblePartitionLayoutMismatch","features":[466]},{"name":"SrDiskReplicationEligibleSameAsSpecifiedDisk","features":[466]},{"name":"SrDiskReplicationEligibleYes","features":[466]},{"name":"SrReplicatedDiskTypeDestination","features":[466]},{"name":"SrReplicatedDiskTypeLogDestination","features":[466]},{"name":"SrReplicatedDiskTypeLogNotInParthership","features":[466]},{"name":"SrReplicatedDiskTypeLogSource","features":[466]},{"name":"SrReplicatedDiskTypeNone","features":[466]},{"name":"SrReplicatedDiskTypeNotInParthership","features":[466]},{"name":"SrReplicatedDiskTypeOther","features":[466]},{"name":"SrReplicatedDiskTypeSource","features":[466]},{"name":"USE_CLIENT_ACCESS_NETWORKS_FOR_CSV","features":[466]},{"name":"VM_RESDLL_CONTEXT","features":[466]},{"name":"VmResdllContextLiveMigration","features":[466]},{"name":"VmResdllContextSave","features":[466]},{"name":"VmResdllContextShutdown","features":[466]},{"name":"VmResdllContextShutdownForce","features":[466]},{"name":"VmResdllContextTurnOff","features":[466]},{"name":"VolumeBackupInProgress","features":[466]},{"name":"VolumeBackupNone","features":[466]},{"name":"VolumeRedirectedIOReasonMax","features":[466]},{"name":"VolumeRedirectedIOReasonNoDiskConnectivity","features":[466]},{"name":"VolumeRedirectedIOReasonStorageSpaceNotAttached","features":[466]},{"name":"VolumeRedirectedIOReasonVolumeReplicationEnabled","features":[466]},{"name":"VolumeStateDismounted","features":[466]},{"name":"VolumeStateInMaintenance","features":[466]},{"name":"VolumeStateNoAccess","features":[466]},{"name":"VolumeStateNoDirectIO","features":[466]},{"name":"VolumeStateNoFaults","features":[466]},{"name":"WS2016_RTM_UPGRADE_VERSION","features":[466]},{"name":"WS2016_TP4_UPGRADE_VERSION","features":[466]},{"name":"WS2016_TP5_UPGRADE_VERSION","features":[466]},{"name":"WitnessTagHelper","features":[466]},{"name":"WitnessTagUpdateHelper","features":[466]},{"name":"eResourceStateChangeReasonFailedMove","features":[466]},{"name":"eResourceStateChangeReasonFailover","features":[466]},{"name":"eResourceStateChangeReasonMove","features":[466]},{"name":"eResourceStateChangeReasonRundown","features":[466]},{"name":"eResourceStateChangeReasonShutdown","features":[466]},{"name":"eResourceStateChangeReasonUnknown","features":[466]}],"470":[{"name":"CacheRangeChunkSize","features":[467]},{"name":"CreateRequestQueueExternalIdProperty","features":[467]},{"name":"CreateRequestQueueMax","features":[467]},{"name":"DelegateRequestDelegateUrlProperty","features":[467]},{"name":"DelegateRequestReservedProperty","features":[467]},{"name":"ExParamTypeErrorHeaders","features":[467]},{"name":"ExParamTypeHttp2SettingsLimits","features":[467]},{"name":"ExParamTypeHttp2Window","features":[467]},{"name":"ExParamTypeHttpPerformance","features":[467]},{"name":"ExParamTypeMax","features":[467]},{"name":"ExParamTypeTlsRestrictions","features":[467]},{"name":"ExParamTypeTlsSessionTicketKeys","features":[467]},{"name":"HTTP2_SETTINGS_LIMITS_PARAM","features":[467]},{"name":"HTTP2_WINDOW_SIZE_PARAM","features":[467]},{"name":"HTTPAPI_VERSION","features":[467]},{"name":"HTTP_503_RESPONSE_VERBOSITY","features":[467]},{"name":"HTTP_AUTHENTICATION_HARDENING_LEVELS","features":[467]},{"name":"HTTP_AUTH_ENABLE_BASIC","features":[467]},{"name":"HTTP_AUTH_ENABLE_DIGEST","features":[467]},{"name":"HTTP_AUTH_ENABLE_KERBEROS","features":[467]},{"name":"HTTP_AUTH_ENABLE_NEGOTIATE","features":[467]},{"name":"HTTP_AUTH_ENABLE_NTLM","features":[467]},{"name":"HTTP_AUTH_EX_FLAG_CAPTURE_CREDENTIAL","features":[467]},{"name":"HTTP_AUTH_EX_FLAG_ENABLE_KERBEROS_CREDENTIAL_CACHING","features":[467]},{"name":"HTTP_AUTH_STATUS","features":[467]},{"name":"HTTP_BANDWIDTH_LIMIT_INFO","features":[467]},{"name":"HTTP_BINDING_INFO","features":[303,467]},{"name":"HTTP_BYTE_RANGE","features":[467]},{"name":"HTTP_CACHE_POLICY","features":[467]},{"name":"HTTP_CACHE_POLICY_TYPE","features":[467]},{"name":"HTTP_CHANNEL_BIND_CLIENT_SERVICE","features":[467]},{"name":"HTTP_CHANNEL_BIND_DOTLESS_SERVICE","features":[467]},{"name":"HTTP_CHANNEL_BIND_INFO","features":[467]},{"name":"HTTP_CHANNEL_BIND_NO_SERVICE_NAME_CHECK","features":[467]},{"name":"HTTP_CHANNEL_BIND_PROXY","features":[467]},{"name":"HTTP_CHANNEL_BIND_PROXY_COHOSTING","features":[467]},{"name":"HTTP_CHANNEL_BIND_SECURE_CHANNEL_TOKEN","features":[467]},{"name":"HTTP_CONNECTION_LIMIT_INFO","features":[467]},{"name":"HTTP_COOKED_URL","features":[467]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_CONTROLLER","features":[467]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_DELEGATION","features":[467]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_OPEN_EXISTING","features":[467]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID","features":[467]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_INFO","features":[467]},{"name":"HTTP_DATA_CHUNK","features":[303,467]},{"name":"HTTP_DATA_CHUNK_TYPE","features":[467]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_ID","features":[467]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_INFO","features":[467]},{"name":"HTTP_DEMAND_CBT","features":[467]},{"name":"HTTP_ENABLED_STATE","features":[467]},{"name":"HTTP_ERROR_HEADERS_PARAM","features":[467]},{"name":"HTTP_FEATURE_ID","features":[467]},{"name":"HTTP_FLOWRATE_INFO","features":[467]},{"name":"HTTP_FLUSH_RESPONSE_FLAG_RECURSIVE","features":[467]},{"name":"HTTP_HEADER_ID","features":[467]},{"name":"HTTP_INITIALIZE","features":[467]},{"name":"HTTP_INITIALIZE_CONFIG","features":[467]},{"name":"HTTP_INITIALIZE_SERVER","features":[467]},{"name":"HTTP_KNOWN_HEADER","features":[467]},{"name":"HTTP_LISTEN_ENDPOINT_INFO","features":[303,467]},{"name":"HTTP_LOGGING_FLAG_LOCAL_TIME_ROLLOVER","features":[467]},{"name":"HTTP_LOGGING_FLAG_LOG_ERRORS_ONLY","features":[467]},{"name":"HTTP_LOGGING_FLAG_LOG_SUCCESS_ONLY","features":[467]},{"name":"HTTP_LOGGING_FLAG_USE_UTF8_CONVERSION","features":[467]},{"name":"HTTP_LOGGING_INFO","features":[467,306]},{"name":"HTTP_LOGGING_ROLLOVER_TYPE","features":[467]},{"name":"HTTP_LOGGING_TYPE","features":[467]},{"name":"HTTP_LOG_DATA","features":[467]},{"name":"HTTP_LOG_DATA_TYPE","features":[467]},{"name":"HTTP_LOG_FIELDS_DATA","features":[467]},{"name":"HTTP_LOG_FIELD_BYTES_RECV","features":[467]},{"name":"HTTP_LOG_FIELD_BYTES_SENT","features":[467]},{"name":"HTTP_LOG_FIELD_CLIENT_IP","features":[467]},{"name":"HTTP_LOG_FIELD_CLIENT_PORT","features":[467]},{"name":"HTTP_LOG_FIELD_COMPUTER_NAME","features":[467]},{"name":"HTTP_LOG_FIELD_COOKIE","features":[467]},{"name":"HTTP_LOG_FIELD_CORRELATION_ID","features":[467]},{"name":"HTTP_LOG_FIELD_DATE","features":[467]},{"name":"HTTP_LOG_FIELD_FAULT_CODE","features":[467]},{"name":"HTTP_LOG_FIELD_HOST","features":[467]},{"name":"HTTP_LOG_FIELD_METHOD","features":[467]},{"name":"HTTP_LOG_FIELD_QUEUE_NAME","features":[467]},{"name":"HTTP_LOG_FIELD_REASON","features":[467]},{"name":"HTTP_LOG_FIELD_REFERER","features":[467]},{"name":"HTTP_LOG_FIELD_SERVER_IP","features":[467]},{"name":"HTTP_LOG_FIELD_SERVER_PORT","features":[467]},{"name":"HTTP_LOG_FIELD_SITE_ID","features":[467]},{"name":"HTTP_LOG_FIELD_SITE_NAME","features":[467]},{"name":"HTTP_LOG_FIELD_STATUS","features":[467]},{"name":"HTTP_LOG_FIELD_STREAM_ID","features":[467]},{"name":"HTTP_LOG_FIELD_STREAM_ID_EX","features":[467]},{"name":"HTTP_LOG_FIELD_SUB_STATUS","features":[467]},{"name":"HTTP_LOG_FIELD_TIME","features":[467]},{"name":"HTTP_LOG_FIELD_TIME_TAKEN","features":[467]},{"name":"HTTP_LOG_FIELD_TRANSPORT_TYPE","features":[467]},{"name":"HTTP_LOG_FIELD_URI","features":[467]},{"name":"HTTP_LOG_FIELD_URI_QUERY","features":[467]},{"name":"HTTP_LOG_FIELD_URI_STEM","features":[467]},{"name":"HTTP_LOG_FIELD_USER_AGENT","features":[467]},{"name":"HTTP_LOG_FIELD_USER_NAME","features":[467]},{"name":"HTTP_LOG_FIELD_VERSION","features":[467]},{"name":"HTTP_LOG_FIELD_WIN32_STATUS","features":[467]},{"name":"HTTP_MAX_SERVER_QUEUE_LENGTH","features":[467]},{"name":"HTTP_MIN_SERVER_QUEUE_LENGTH","features":[467]},{"name":"HTTP_MULTIPLE_KNOWN_HEADERS","features":[467]},{"name":"HTTP_PERFORMANCE_PARAM","features":[467]},{"name":"HTTP_PERFORMANCE_PARAM_TYPE","features":[467]},{"name":"HTTP_PROPERTY_FLAGS","features":[467]},{"name":"HTTP_PROTECTION_LEVEL_INFO","features":[467]},{"name":"HTTP_PROTECTION_LEVEL_TYPE","features":[467]},{"name":"HTTP_QOS_SETTING_INFO","features":[467]},{"name":"HTTP_QOS_SETTING_TYPE","features":[467]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_QUIC","features":[467]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_TCP","features":[467]},{"name":"HTTP_QUIC_API_TIMINGS","features":[467]},{"name":"HTTP_QUIC_CONNECTION_API_TIMINGS","features":[467]},{"name":"HTTP_QUIC_STREAM_API_TIMINGS","features":[467]},{"name":"HTTP_QUIC_STREAM_REQUEST_STATS","features":[467]},{"name":"HTTP_RECEIVE_FULL_CHAIN","features":[467]},{"name":"HTTP_RECEIVE_HTTP_REQUEST_FLAGS","features":[467]},{"name":"HTTP_RECEIVE_REQUEST_ENTITY_BODY_FLAG_FILL_BUFFER","features":[467]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_COPY_BODY","features":[467]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_FLUSH_BODY","features":[467]},{"name":"HTTP_RECEIVE_SECURE_CHANNEL_TOKEN","features":[467]},{"name":"HTTP_REQUEST_AUTH_FLAG_TOKEN_FOR_CACHED_CRED","features":[467]},{"name":"HTTP_REQUEST_AUTH_INFO","features":[303,467]},{"name":"HTTP_REQUEST_AUTH_TYPE","features":[467]},{"name":"HTTP_REQUEST_CHANNEL_BIND_STATUS","features":[467]},{"name":"HTTP_REQUEST_FLAG_HTTP2","features":[467]},{"name":"HTTP_REQUEST_FLAG_HTTP3","features":[467]},{"name":"HTTP_REQUEST_FLAG_IP_ROUTED","features":[467]},{"name":"HTTP_REQUEST_FLAG_MORE_ENTITY_BODY_EXISTS","features":[467]},{"name":"HTTP_REQUEST_HEADERS","features":[467]},{"name":"HTTP_REQUEST_INFO","features":[467]},{"name":"HTTP_REQUEST_INFO_TYPE","features":[467]},{"name":"HTTP_REQUEST_PROPERTY","features":[467]},{"name":"HTTP_REQUEST_PROPERTY_SNI","features":[467]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_NO_SNI","features":[467]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_SNI_USED","features":[467]},{"name":"HTTP_REQUEST_PROPERTY_SNI_HOST_MAX_LENGTH","features":[467]},{"name":"HTTP_REQUEST_PROPERTY_STREAM_ERROR","features":[467]},{"name":"HTTP_REQUEST_SIZING_INFO","features":[467]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_FIRST_REQUEST","features":[467]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TCP_FAST_OPEN","features":[467]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_FALSE_START","features":[467]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_SESSION_RESUMPTION","features":[467]},{"name":"HTTP_REQUEST_SIZING_TYPE","features":[467]},{"name":"HTTP_REQUEST_TIMING_INFO","features":[467]},{"name":"HTTP_REQUEST_TIMING_TYPE","features":[467]},{"name":"HTTP_REQUEST_TOKEN_BINDING_INFO","features":[467]},{"name":"HTTP_REQUEST_V1","features":[303,467,316]},{"name":"HTTP_REQUEST_V2","features":[303,467,316]},{"name":"HTTP_RESPONSE_FLAG_MORE_ENTITY_BODY_EXISTS","features":[467]},{"name":"HTTP_RESPONSE_FLAG_MULTIPLE_ENCODINGS_AVAILABLE","features":[467]},{"name":"HTTP_RESPONSE_HEADERS","features":[467]},{"name":"HTTP_RESPONSE_INFO","features":[467]},{"name":"HTTP_RESPONSE_INFO_FLAGS_PRESERVE_ORDER","features":[467]},{"name":"HTTP_RESPONSE_INFO_TYPE","features":[467]},{"name":"HTTP_RESPONSE_V1","features":[303,467]},{"name":"HTTP_RESPONSE_V2","features":[303,467]},{"name":"HTTP_SCHEME","features":[467]},{"name":"HTTP_SEND_RESPONSE_FLAG_BUFFER_DATA","features":[467]},{"name":"HTTP_SEND_RESPONSE_FLAG_DISCONNECT","features":[467]},{"name":"HTTP_SEND_RESPONSE_FLAG_ENABLE_NAGLING","features":[467]},{"name":"HTTP_SEND_RESPONSE_FLAG_GOAWAY","features":[467]},{"name":"HTTP_SEND_RESPONSE_FLAG_MORE_DATA","features":[467]},{"name":"HTTP_SEND_RESPONSE_FLAG_OPAQUE","features":[467]},{"name":"HTTP_SEND_RESPONSE_FLAG_PROCESS_RANGES","features":[467]},{"name":"HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS","features":[467]},{"name":"HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS","features":[467]},{"name":"HTTP_SERVER_AUTHENTICATION_INFO","features":[303,467]},{"name":"HTTP_SERVER_PROPERTY","features":[467]},{"name":"HTTP_SERVICE_BINDING_A","features":[467]},{"name":"HTTP_SERVICE_BINDING_BASE","features":[467]},{"name":"HTTP_SERVICE_BINDING_TYPE","features":[467]},{"name":"HTTP_SERVICE_BINDING_W","features":[467]},{"name":"HTTP_SERVICE_CONFIG_CACHE_KEY","features":[467]},{"name":"HTTP_SERVICE_CONFIG_CACHE_SET","features":[467]},{"name":"HTTP_SERVICE_CONFIG_ID","features":[467]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_QUERY","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_QUERY_TYPE","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SETTING_KEY","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SETTING_SET","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_KEY","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY_EX","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET_EX","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_HTTP2","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_LEGACY_TLS","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_OCSP_STAPLING","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_QUIC","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_SESSION_ID","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS12","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS13","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_CLIENT_CORRELATION","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_SESSION_TICKET","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_TOKEN_BINDING","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_LOG_EXTENDED_EVENTS","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NEGOTIATE_CLIENT_CERT","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NO_RAW_FILTER","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_REJECT","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_USE_DS_MAPPER","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY_EX","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM_EX","features":[467]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY_EX","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET_EX","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_KEY","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY_EX","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET_EX","features":[467,316]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_KEY","features":[467]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_SET","features":[467]},{"name":"HTTP_SERVICE_CONFIG_URLACL_KEY","features":[467]},{"name":"HTTP_SERVICE_CONFIG_URLACL_PARAM","features":[467]},{"name":"HTTP_SERVICE_CONFIG_URLACL_QUERY","features":[467]},{"name":"HTTP_SERVICE_CONFIG_URLACL_SET","features":[467]},{"name":"HTTP_SSL_CLIENT_CERT_INFO","features":[303,467]},{"name":"HTTP_SSL_INFO","features":[303,467]},{"name":"HTTP_SSL_PROTOCOL_INFO","features":[467]},{"name":"HTTP_SSL_SERVICE_CONFIG_EX_PARAM_TYPE","features":[467]},{"name":"HTTP_STATE_INFO","features":[467]},{"name":"HTTP_TIMEOUT_LIMIT_INFO","features":[467]},{"name":"HTTP_TLS_RESTRICTIONS_PARAM","features":[467]},{"name":"HTTP_TLS_SESSION_TICKET_KEYS_PARAM","features":[467]},{"name":"HTTP_TRANSPORT_ADDRESS","features":[467,316]},{"name":"HTTP_UNKNOWN_HEADER","features":[467]},{"name":"HTTP_URL_FLAG_REMOVE_ALL","features":[467]},{"name":"HTTP_VERB","features":[467]},{"name":"HTTP_VERSION","features":[467]},{"name":"HTTP_VERSION","features":[467]},{"name":"HTTP_WSK_API_TIMINGS","features":[467]},{"name":"HeaderWaitTimeout","features":[467]},{"name":"Http503ResponseVerbosityBasic","features":[467]},{"name":"Http503ResponseVerbosityFull","features":[467]},{"name":"Http503ResponseVerbosityLimited","features":[467]},{"name":"HttpAddFragmentToCache","features":[303,467,308]},{"name":"HttpAddUrl","features":[303,467]},{"name":"HttpAddUrlToUrlGroup","features":[467]},{"name":"HttpAuthStatusFailure","features":[467]},{"name":"HttpAuthStatusNotAuthenticated","features":[467]},{"name":"HttpAuthStatusSuccess","features":[467]},{"name":"HttpAuthenticationHardeningLegacy","features":[467]},{"name":"HttpAuthenticationHardeningMedium","features":[467]},{"name":"HttpAuthenticationHardeningStrict","features":[467]},{"name":"HttpCachePolicyMaximum","features":[467]},{"name":"HttpCachePolicyNocache","features":[467]},{"name":"HttpCachePolicyTimeToLive","features":[467]},{"name":"HttpCachePolicyUserInvalidates","features":[467]},{"name":"HttpCancelHttpRequest","features":[303,467,308]},{"name":"HttpCloseRequestQueue","features":[303,467]},{"name":"HttpCloseServerSession","features":[467]},{"name":"HttpCloseUrlGroup","features":[467]},{"name":"HttpCreateHttpHandle","features":[303,467]},{"name":"HttpCreateRequestQueue","features":[303,467,306]},{"name":"HttpCreateServerSession","features":[467]},{"name":"HttpCreateUrlGroup","features":[467]},{"name":"HttpDataChunkFromFileHandle","features":[467]},{"name":"HttpDataChunkFromFragmentCache","features":[467]},{"name":"HttpDataChunkFromFragmentCacheEx","features":[467]},{"name":"HttpDataChunkFromMemory","features":[467]},{"name":"HttpDataChunkMaximum","features":[467]},{"name":"HttpDataChunkTrailers","features":[467]},{"name":"HttpDeclarePush","features":[303,467]},{"name":"HttpDelegateRequestEx","features":[303,467]},{"name":"HttpDeleteServiceConfiguration","features":[303,467,308]},{"name":"HttpEnabledStateActive","features":[467]},{"name":"HttpEnabledStateInactive","features":[467]},{"name":"HttpFeatureApiTimings","features":[467]},{"name":"HttpFeatureDelegateEx","features":[467]},{"name":"HttpFeatureHttp3","features":[467]},{"name":"HttpFeatureLast","features":[467]},{"name":"HttpFeatureResponseTrailers","features":[467]},{"name":"HttpFeatureUnknown","features":[467]},{"name":"HttpFeaturemax","features":[467]},{"name":"HttpFindUrlGroupId","features":[303,467]},{"name":"HttpFlushResponseCache","features":[303,467,308]},{"name":"HttpGetExtension","features":[467]},{"name":"HttpHeaderAccept","features":[467]},{"name":"HttpHeaderAcceptCharset","features":[467]},{"name":"HttpHeaderAcceptEncoding","features":[467]},{"name":"HttpHeaderAcceptLanguage","features":[467]},{"name":"HttpHeaderAcceptRanges","features":[467]},{"name":"HttpHeaderAge","features":[467]},{"name":"HttpHeaderAllow","features":[467]},{"name":"HttpHeaderAuthorization","features":[467]},{"name":"HttpHeaderCacheControl","features":[467]},{"name":"HttpHeaderConnection","features":[467]},{"name":"HttpHeaderContentEncoding","features":[467]},{"name":"HttpHeaderContentLanguage","features":[467]},{"name":"HttpHeaderContentLength","features":[467]},{"name":"HttpHeaderContentLocation","features":[467]},{"name":"HttpHeaderContentMd5","features":[467]},{"name":"HttpHeaderContentRange","features":[467]},{"name":"HttpHeaderContentType","features":[467]},{"name":"HttpHeaderCookie","features":[467]},{"name":"HttpHeaderDate","features":[467]},{"name":"HttpHeaderEtag","features":[467]},{"name":"HttpHeaderExpect","features":[467]},{"name":"HttpHeaderExpires","features":[467]},{"name":"HttpHeaderFrom","features":[467]},{"name":"HttpHeaderHost","features":[467]},{"name":"HttpHeaderIfMatch","features":[467]},{"name":"HttpHeaderIfModifiedSince","features":[467]},{"name":"HttpHeaderIfNoneMatch","features":[467]},{"name":"HttpHeaderIfRange","features":[467]},{"name":"HttpHeaderIfUnmodifiedSince","features":[467]},{"name":"HttpHeaderKeepAlive","features":[467]},{"name":"HttpHeaderLastModified","features":[467]},{"name":"HttpHeaderLocation","features":[467]},{"name":"HttpHeaderMaxForwards","features":[467]},{"name":"HttpHeaderMaximum","features":[467]},{"name":"HttpHeaderPragma","features":[467]},{"name":"HttpHeaderProxyAuthenticate","features":[467]},{"name":"HttpHeaderProxyAuthorization","features":[467]},{"name":"HttpHeaderRange","features":[467]},{"name":"HttpHeaderReferer","features":[467]},{"name":"HttpHeaderRequestMaximum","features":[467]},{"name":"HttpHeaderResponseMaximum","features":[467]},{"name":"HttpHeaderRetryAfter","features":[467]},{"name":"HttpHeaderServer","features":[467]},{"name":"HttpHeaderSetCookie","features":[467]},{"name":"HttpHeaderTe","features":[467]},{"name":"HttpHeaderTrailer","features":[467]},{"name":"HttpHeaderTransferEncoding","features":[467]},{"name":"HttpHeaderTranslate","features":[467]},{"name":"HttpHeaderUpgrade","features":[467]},{"name":"HttpHeaderUserAgent","features":[467]},{"name":"HttpHeaderVary","features":[467]},{"name":"HttpHeaderVia","features":[467]},{"name":"HttpHeaderWarning","features":[467]},{"name":"HttpHeaderWwwAuthenticate","features":[467]},{"name":"HttpInitialize","features":[467]},{"name":"HttpIsFeatureSupported","features":[303,467]},{"name":"HttpLogDataTypeFields","features":[467]},{"name":"HttpLoggingRolloverDaily","features":[467]},{"name":"HttpLoggingRolloverHourly","features":[467]},{"name":"HttpLoggingRolloverMonthly","features":[467]},{"name":"HttpLoggingRolloverSize","features":[467]},{"name":"HttpLoggingRolloverWeekly","features":[467]},{"name":"HttpLoggingTypeIIS","features":[467]},{"name":"HttpLoggingTypeNCSA","features":[467]},{"name":"HttpLoggingTypeRaw","features":[467]},{"name":"HttpLoggingTypeW3C","features":[467]},{"name":"HttpNone","features":[467]},{"name":"HttpPrepareUrl","features":[467]},{"name":"HttpProtectionLevelEdgeRestricted","features":[467]},{"name":"HttpProtectionLevelRestricted","features":[467]},{"name":"HttpProtectionLevelUnrestricted","features":[467]},{"name":"HttpQosSettingTypeBandwidth","features":[467]},{"name":"HttpQosSettingTypeConnectionLimit","features":[467]},{"name":"HttpQosSettingTypeFlowRate","features":[467]},{"name":"HttpQueryRequestQueueProperty","features":[303,467]},{"name":"HttpQueryServerSessionProperty","features":[467]},{"name":"HttpQueryServiceConfiguration","features":[303,467,308]},{"name":"HttpQueryUrlGroupProperty","features":[467]},{"name":"HttpReadFragmentFromCache","features":[303,467,308]},{"name":"HttpReceiveClientCertificate","features":[303,467,308]},{"name":"HttpReceiveHttpRequest","features":[303,467,316,308]},{"name":"HttpReceiveRequestEntityBody","features":[303,467,308]},{"name":"HttpRemoveUrl","features":[303,467]},{"name":"HttpRemoveUrlFromUrlGroup","features":[467]},{"name":"HttpRequestAuthTypeBasic","features":[467]},{"name":"HttpRequestAuthTypeDigest","features":[467]},{"name":"HttpRequestAuthTypeKerberos","features":[467]},{"name":"HttpRequestAuthTypeNTLM","features":[467]},{"name":"HttpRequestAuthTypeNegotiate","features":[467]},{"name":"HttpRequestAuthTypeNone","features":[467]},{"name":"HttpRequestInfoTypeAuth","features":[467]},{"name":"HttpRequestInfoTypeChannelBind","features":[467]},{"name":"HttpRequestInfoTypeQuicStats","features":[467]},{"name":"HttpRequestInfoTypeRequestSizing","features":[467]},{"name":"HttpRequestInfoTypeRequestTiming","features":[467]},{"name":"HttpRequestInfoTypeSslProtocol","features":[467]},{"name":"HttpRequestInfoTypeSslTokenBinding","features":[467]},{"name":"HttpRequestInfoTypeSslTokenBindingDraft","features":[467]},{"name":"HttpRequestInfoTypeTcpInfoV0","features":[467]},{"name":"HttpRequestInfoTypeTcpInfoV1","features":[467]},{"name":"HttpRequestPropertyIsb","features":[467]},{"name":"HttpRequestPropertyQuicApiTimings","features":[467]},{"name":"HttpRequestPropertyQuicStats","features":[467]},{"name":"HttpRequestPropertySni","features":[467]},{"name":"HttpRequestPropertyStreamError","features":[467]},{"name":"HttpRequestPropertyTcpInfoV0","features":[467]},{"name":"HttpRequestPropertyTcpInfoV1","features":[467]},{"name":"HttpRequestPropertyWskApiTimings","features":[467]},{"name":"HttpRequestSizingTypeHeaders","features":[467]},{"name":"HttpRequestSizingTypeMax","features":[467]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ClientData","features":[467]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ServerData","features":[467]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ClientData","features":[467]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ServerData","features":[467]},{"name":"HttpRequestTimingTypeConnectionStart","features":[467]},{"name":"HttpRequestTimingTypeDataStart","features":[467]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeEnd","features":[467]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeStart","features":[467]},{"name":"HttpRequestTimingTypeHttp2StreamStart","features":[467]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeEnd","features":[467]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeStart","features":[467]},{"name":"HttpRequestTimingTypeHttp3StreamStart","features":[467]},{"name":"HttpRequestTimingTypeMax","features":[467]},{"name":"HttpRequestTimingTypeRequestDeliveredForDelegation","features":[467]},{"name":"HttpRequestTimingTypeRequestDeliveredForIO","features":[467]},{"name":"HttpRequestTimingTypeRequestDeliveredForInspection","features":[467]},{"name":"HttpRequestTimingTypeRequestHeaderParseEnd","features":[467]},{"name":"HttpRequestTimingTypeRequestHeaderParseStart","features":[467]},{"name":"HttpRequestTimingTypeRequestQueuedForDelegation","features":[467]},{"name":"HttpRequestTimingTypeRequestQueuedForIO","features":[467]},{"name":"HttpRequestTimingTypeRequestQueuedForInspection","features":[467]},{"name":"HttpRequestTimingTypeRequestReturnedAfterDelegation","features":[467]},{"name":"HttpRequestTimingTypeRequestReturnedAfterInspection","features":[467]},{"name":"HttpRequestTimingTypeRequestRoutingEnd","features":[467]},{"name":"HttpRequestTimingTypeRequestRoutingStart","features":[467]},{"name":"HttpRequestTimingTypeTlsAttributesQueryEnd","features":[467]},{"name":"HttpRequestTimingTypeTlsAttributesQueryStart","features":[467]},{"name":"HttpRequestTimingTypeTlsCertificateLoadEnd","features":[467]},{"name":"HttpRequestTimingTypeTlsCertificateLoadStart","features":[467]},{"name":"HttpRequestTimingTypeTlsClientCertQueryEnd","features":[467]},{"name":"HttpRequestTimingTypeTlsClientCertQueryStart","features":[467]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1End","features":[467]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1Start","features":[467]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2End","features":[467]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2Start","features":[467]},{"name":"HttpResponseInfoTypeAuthenticationProperty","features":[467]},{"name":"HttpResponseInfoTypeChannelBind","features":[467]},{"name":"HttpResponseInfoTypeMultipleKnownHeaders","features":[467]},{"name":"HttpResponseInfoTypeQoSProperty","features":[467]},{"name":"HttpSchemeHttp","features":[467]},{"name":"HttpSchemeHttps","features":[467]},{"name":"HttpSchemeMaximum","features":[467]},{"name":"HttpSendHttpResponse","features":[303,467,308]},{"name":"HttpSendResponseEntityBody","features":[303,467,308]},{"name":"HttpServer503VerbosityProperty","features":[467]},{"name":"HttpServerAuthenticationProperty","features":[467]},{"name":"HttpServerBindingProperty","features":[467]},{"name":"HttpServerChannelBindProperty","features":[467]},{"name":"HttpServerDelegationProperty","features":[467]},{"name":"HttpServerExtendedAuthenticationProperty","features":[467]},{"name":"HttpServerListenEndpointProperty","features":[467]},{"name":"HttpServerLoggingProperty","features":[467]},{"name":"HttpServerProtectionLevelProperty","features":[467]},{"name":"HttpServerQosProperty","features":[467]},{"name":"HttpServerQueueLengthProperty","features":[467]},{"name":"HttpServerStateProperty","features":[467]},{"name":"HttpServerTimeoutsProperty","features":[467]},{"name":"HttpServiceBindingTypeA","features":[467]},{"name":"HttpServiceBindingTypeNone","features":[467]},{"name":"HttpServiceBindingTypeW","features":[467]},{"name":"HttpServiceConfigCache","features":[467]},{"name":"HttpServiceConfigIPListenList","features":[467]},{"name":"HttpServiceConfigMax","features":[467]},{"name":"HttpServiceConfigQueryExact","features":[467]},{"name":"HttpServiceConfigQueryMax","features":[467]},{"name":"HttpServiceConfigQueryNext","features":[467]},{"name":"HttpServiceConfigSSLCertInfo","features":[467]},{"name":"HttpServiceConfigSetting","features":[467]},{"name":"HttpServiceConfigSslCcsCertInfo","features":[467]},{"name":"HttpServiceConfigSslCcsCertInfoEx","features":[467]},{"name":"HttpServiceConfigSslCertInfoEx","features":[467]},{"name":"HttpServiceConfigSslScopedCcsCertInfo","features":[467]},{"name":"HttpServiceConfigSslScopedCcsCertInfoEx","features":[467]},{"name":"HttpServiceConfigSslSniCertInfo","features":[467]},{"name":"HttpServiceConfigSslSniCertInfoEx","features":[467]},{"name":"HttpServiceConfigTimeout","features":[467]},{"name":"HttpServiceConfigUrlAclInfo","features":[467]},{"name":"HttpSetRequestProperty","features":[303,467,308]},{"name":"HttpSetRequestQueueProperty","features":[303,467]},{"name":"HttpSetServerSessionProperty","features":[467]},{"name":"HttpSetServiceConfiguration","features":[303,467,308]},{"name":"HttpSetUrlGroupProperty","features":[467]},{"name":"HttpShutdownRequestQueue","features":[303,467]},{"name":"HttpTerminate","features":[467]},{"name":"HttpTlsThrottle","features":[467]},{"name":"HttpUpdateServiceConfiguration","features":[303,467,308]},{"name":"HttpVerbCONNECT","features":[467]},{"name":"HttpVerbCOPY","features":[467]},{"name":"HttpVerbDELETE","features":[467]},{"name":"HttpVerbGET","features":[467]},{"name":"HttpVerbHEAD","features":[467]},{"name":"HttpVerbInvalid","features":[467]},{"name":"HttpVerbLOCK","features":[467]},{"name":"HttpVerbMKCOL","features":[467]},{"name":"HttpVerbMOVE","features":[467]},{"name":"HttpVerbMaximum","features":[467]},{"name":"HttpVerbOPTIONS","features":[467]},{"name":"HttpVerbPOST","features":[467]},{"name":"HttpVerbPROPFIND","features":[467]},{"name":"HttpVerbPROPPATCH","features":[467]},{"name":"HttpVerbPUT","features":[467]},{"name":"HttpVerbSEARCH","features":[467]},{"name":"HttpVerbTRACE","features":[467]},{"name":"HttpVerbTRACK","features":[467]},{"name":"HttpVerbUNLOCK","features":[467]},{"name":"HttpVerbUnknown","features":[467]},{"name":"HttpVerbUnparsed","features":[467]},{"name":"HttpWaitForDemandStart","features":[303,467,308]},{"name":"HttpWaitForDisconnect","features":[303,467,308]},{"name":"HttpWaitForDisconnectEx","features":[303,467,308]},{"name":"IdleConnectionTimeout","features":[467]},{"name":"MaxCacheResponseSize","features":[467]},{"name":"PerformanceParamAggressiveICW","features":[467]},{"name":"PerformanceParamDecryptOnSspiThread","features":[467]},{"name":"PerformanceParamMax","features":[467]},{"name":"PerformanceParamMaxConcurrentClientStreams","features":[467]},{"name":"PerformanceParamMaxReceiveBufferSize","features":[467]},{"name":"PerformanceParamMaxSendBufferSize","features":[467]},{"name":"PerformanceParamSendBufferingFlags","features":[467]}],"471":[{"name":"BerElement","features":[468]},{"name":"DBGPRINT","features":[468]},{"name":"DEREFERENCECONNECTION","features":[468]},{"name":"LAPI_MAJOR_VER1","features":[468]},{"name":"LAPI_MINOR_VER1","features":[468]},{"name":"LBER_DEFAULT","features":[468]},{"name":"LBER_ERROR","features":[468]},{"name":"LBER_TRANSLATE_STRINGS","features":[468]},{"name":"LBER_USE_DER","features":[468]},{"name":"LBER_USE_INDEFINITE_LEN","features":[468]},{"name":"LDAP","features":[468]},{"name":"LDAPAPIFeatureInfoA","features":[468]},{"name":"LDAPAPIFeatureInfoW","features":[468]},{"name":"LDAPAPIInfoA","features":[468]},{"name":"LDAPAPIInfoW","features":[468]},{"name":"LDAPControlA","features":[303,468]},{"name":"LDAPControlW","features":[303,468]},{"name":"LDAPMessage","features":[303,468]},{"name":"LDAPModA","features":[468]},{"name":"LDAPModW","features":[468]},{"name":"LDAPSortKeyA","features":[303,468]},{"name":"LDAPSortKeyW","features":[303,468]},{"name":"LDAPVLVInfo","features":[468]},{"name":"LDAP_ABANDON_CMD","features":[468]},{"name":"LDAP_ADD_CMD","features":[468]},{"name":"LDAP_ADMIN_LIMIT_EXCEEDED","features":[468]},{"name":"LDAP_AFFECTS_MULTIPLE_DSAS","features":[468]},{"name":"LDAP_ALIAS_DEREF_PROBLEM","features":[468]},{"name":"LDAP_ALIAS_PROBLEM","features":[468]},{"name":"LDAP_ALREADY_EXISTS","features":[468]},{"name":"LDAP_API_FEATURE_VIRTUAL_LIST_VIEW","features":[468]},{"name":"LDAP_API_INFO_VERSION","features":[468]},{"name":"LDAP_API_VERSION","features":[468]},{"name":"LDAP_ATTRIBUTE_OR_VALUE_EXISTS","features":[468]},{"name":"LDAP_AUTH_METHOD_NOT_SUPPORTED","features":[468]},{"name":"LDAP_AUTH_OTHERKIND","features":[468]},{"name":"LDAP_AUTH_SASL","features":[468]},{"name":"LDAP_AUTH_SIMPLE","features":[468]},{"name":"LDAP_AUTH_UNKNOWN","features":[468]},{"name":"LDAP_BERVAL","features":[468]},{"name":"LDAP_BIND_CMD","features":[468]},{"name":"LDAP_BUSY","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID_W","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID","features":[468]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID_W","features":[468]},{"name":"LDAP_CHASE_EXTERNAL_REFERRALS","features":[468]},{"name":"LDAP_CHASE_SUBORDINATE_REFERRALS","features":[468]},{"name":"LDAP_CLIENT_LOOP","features":[468]},{"name":"LDAP_COMPARE_CMD","features":[468]},{"name":"LDAP_COMPARE_FALSE","features":[468]},{"name":"LDAP_COMPARE_TRUE","features":[468]},{"name":"LDAP_CONFIDENTIALITY_REQUIRED","features":[468]},{"name":"LDAP_CONNECT_ERROR","features":[468]},{"name":"LDAP_CONSTRAINT_VIOLATION","features":[468]},{"name":"LDAP_CONTROL_NOT_FOUND","features":[468]},{"name":"LDAP_CONTROL_REFERRALS","features":[468]},{"name":"LDAP_CONTROL_REFERRALS_W","features":[468]},{"name":"LDAP_CONTROL_VLVREQUEST","features":[468]},{"name":"LDAP_CONTROL_VLVREQUEST_W","features":[468]},{"name":"LDAP_CONTROL_VLVRESPONSE","features":[468]},{"name":"LDAP_CONTROL_VLVRESPONSE_W","features":[468]},{"name":"LDAP_DECODING_ERROR","features":[468]},{"name":"LDAP_DELETE_CMD","features":[468]},{"name":"LDAP_DEREF_ALWAYS","features":[468]},{"name":"LDAP_DEREF_FINDING","features":[468]},{"name":"LDAP_DEREF_NEVER","features":[468]},{"name":"LDAP_DEREF_SEARCHING","features":[468]},{"name":"LDAP_DIRSYNC_ANCESTORS_FIRST_ORDER","features":[468]},{"name":"LDAP_DIRSYNC_INCREMENTAL_VALUES","features":[468]},{"name":"LDAP_DIRSYNC_OBJECT_SECURITY","features":[468]},{"name":"LDAP_DIRSYNC_PUBLIC_DATA_ONLY","features":[468]},{"name":"LDAP_DIRSYNC_ROPAS_DATA_ONLY","features":[468]},{"name":"LDAP_ENCODING_ERROR","features":[468]},{"name":"LDAP_EXTENDED_CMD","features":[468]},{"name":"LDAP_FEATURE_INFO_VERSION","features":[468]},{"name":"LDAP_FILTER_AND","features":[468]},{"name":"LDAP_FILTER_APPROX","features":[468]},{"name":"LDAP_FILTER_EQUALITY","features":[468]},{"name":"LDAP_FILTER_ERROR","features":[468]},{"name":"LDAP_FILTER_EXTENSIBLE","features":[468]},{"name":"LDAP_FILTER_GE","features":[468]},{"name":"LDAP_FILTER_LE","features":[468]},{"name":"LDAP_FILTER_NOT","features":[468]},{"name":"LDAP_FILTER_OR","features":[468]},{"name":"LDAP_FILTER_PRESENT","features":[468]},{"name":"LDAP_FILTER_SUBSTRINGS","features":[468]},{"name":"LDAP_GC_PORT","features":[468]},{"name":"LDAP_INAPPROPRIATE_AUTH","features":[468]},{"name":"LDAP_INAPPROPRIATE_MATCHING","features":[468]},{"name":"LDAP_INSUFFICIENT_RIGHTS","features":[468]},{"name":"LDAP_INVALID_CMD","features":[468]},{"name":"LDAP_INVALID_CREDENTIALS","features":[468]},{"name":"LDAP_INVALID_DN_SYNTAX","features":[468]},{"name":"LDAP_INVALID_RES","features":[468]},{"name":"LDAP_INVALID_SYNTAX","features":[468]},{"name":"LDAP_IS_LEAF","features":[468]},{"name":"LDAP_LOCAL_ERROR","features":[468]},{"name":"LDAP_LOOP_DETECT","features":[468]},{"name":"LDAP_MATCHING_RULE_BIT_AND","features":[468]},{"name":"LDAP_MATCHING_RULE_BIT_AND_W","features":[468]},{"name":"LDAP_MATCHING_RULE_BIT_OR","features":[468]},{"name":"LDAP_MATCHING_RULE_BIT_OR_W","features":[468]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX","features":[468]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX_W","features":[468]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION","features":[468]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION_W","features":[468]},{"name":"LDAP_MODIFY_CMD","features":[468]},{"name":"LDAP_MODRDN_CMD","features":[468]},{"name":"LDAP_MOD_ADD","features":[468]},{"name":"LDAP_MOD_BVALUES","features":[468]},{"name":"LDAP_MOD_DELETE","features":[468]},{"name":"LDAP_MOD_REPLACE","features":[468]},{"name":"LDAP_MORE_RESULTS_TO_RETURN","features":[468]},{"name":"LDAP_MSG_ALL","features":[468]},{"name":"LDAP_MSG_ONE","features":[468]},{"name":"LDAP_MSG_RECEIVED","features":[468]},{"name":"LDAP_NAMING_VIOLATION","features":[468]},{"name":"LDAP_NOT_ALLOWED_ON_NONLEAF","features":[468]},{"name":"LDAP_NOT_ALLOWED_ON_RDN","features":[468]},{"name":"LDAP_NOT_SUPPORTED","features":[468]},{"name":"LDAP_NO_LIMIT","features":[468]},{"name":"LDAP_NO_MEMORY","features":[468]},{"name":"LDAP_NO_OBJECT_CLASS_MODS","features":[468]},{"name":"LDAP_NO_RESULTS_RETURNED","features":[468]},{"name":"LDAP_NO_SUCH_ATTRIBUTE","features":[468]},{"name":"LDAP_NO_SUCH_OBJECT","features":[468]},{"name":"LDAP_OBJECT_CLASS_VIOLATION","features":[468]},{"name":"LDAP_OFFSET_RANGE_ERROR","features":[468]},{"name":"LDAP_OPATT_ABANDON_REPL","features":[468]},{"name":"LDAP_OPATT_ABANDON_REPL_W","features":[468]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER","features":[468]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER_W","features":[468]},{"name":"LDAP_OPATT_BECOME_PDC","features":[468]},{"name":"LDAP_OPATT_BECOME_PDC_W","features":[468]},{"name":"LDAP_OPATT_BECOME_RID_MASTER","features":[468]},{"name":"LDAP_OPATT_BECOME_RID_MASTER_W","features":[468]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER","features":[468]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER_W","features":[468]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT","features":[468]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT_W","features":[468]},{"name":"LDAP_OPATT_CURRENT_TIME","features":[468]},{"name":"LDAP_OPATT_CURRENT_TIME_W","features":[468]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT","features":[468]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT_W","features":[468]},{"name":"LDAP_OPATT_DNS_HOST_NAME","features":[468]},{"name":"LDAP_OPATT_DNS_HOST_NAME_W","features":[468]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION","features":[468]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION_W","features":[468]},{"name":"LDAP_OPATT_DS_SERVICE_NAME","features":[468]},{"name":"LDAP_OPATT_DS_SERVICE_NAME_W","features":[468]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE","features":[468]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE_W","features":[468]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN","features":[468]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN_W","features":[468]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL","features":[468]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL_W","features":[468]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME","features":[468]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME_W","features":[468]},{"name":"LDAP_OPATT_NAMING_CONTEXTS","features":[468]},{"name":"LDAP_OPATT_NAMING_CONTEXTS_W","features":[468]},{"name":"LDAP_OPATT_RECALC_HIERARCHY","features":[468]},{"name":"LDAP_OPATT_RECALC_HIERARCHY_W","features":[468]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT","features":[468]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT_W","features":[468]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT","features":[468]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT_W","features":[468]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW","features":[468]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW_W","features":[468]},{"name":"LDAP_OPATT_SERVER_NAME","features":[468]},{"name":"LDAP_OPATT_SERVER_NAME_W","features":[468]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY","features":[468]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY_W","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES_W","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL_W","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES_W","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION_W","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM","features":[468]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM_W","features":[468]},{"name":"LDAP_OPERATIONS_ERROR","features":[468]},{"name":"LDAP_OPT_API_FEATURE_INFO","features":[468]},{"name":"LDAP_OPT_API_INFO","features":[468]},{"name":"LDAP_OPT_AREC_EXCLUSIVE","features":[468]},{"name":"LDAP_OPT_AUTO_RECONNECT","features":[468]},{"name":"LDAP_OPT_CACHE_ENABLE","features":[468]},{"name":"LDAP_OPT_CACHE_FN_PTRS","features":[468]},{"name":"LDAP_OPT_CACHE_STRATEGY","features":[468]},{"name":"LDAP_OPT_CHASE_REFERRALS","features":[468]},{"name":"LDAP_OPT_CLDAP_TIMEOUT","features":[468]},{"name":"LDAP_OPT_CLDAP_TRIES","features":[468]},{"name":"LDAP_OPT_CLIENT_CERTIFICATE","features":[468]},{"name":"LDAP_OPT_DEREF","features":[468]},{"name":"LDAP_OPT_DESC","features":[468]},{"name":"LDAP_OPT_DNS","features":[468]},{"name":"LDAP_OPT_DNSDOMAIN_NAME","features":[468]},{"name":"LDAP_OPT_ENCRYPT","features":[468]},{"name":"LDAP_OPT_ERROR_NUMBER","features":[468]},{"name":"LDAP_OPT_ERROR_STRING","features":[468]},{"name":"LDAP_OPT_FAST_CONCURRENT_BIND","features":[468]},{"name":"LDAP_OPT_GETDSNAME_FLAGS","features":[468]},{"name":"LDAP_OPT_HOST_NAME","features":[468]},{"name":"LDAP_OPT_HOST_REACHABLE","features":[468]},{"name":"LDAP_OPT_IO_FN_PTRS","features":[468]},{"name":"LDAP_OPT_PING_KEEP_ALIVE","features":[468]},{"name":"LDAP_OPT_PING_LIMIT","features":[468]},{"name":"LDAP_OPT_PING_WAIT_TIME","features":[468]},{"name":"LDAP_OPT_PROMPT_CREDENTIALS","features":[468]},{"name":"LDAP_OPT_PROTOCOL_VERSION","features":[468]},{"name":"LDAP_OPT_REBIND_ARG","features":[468]},{"name":"LDAP_OPT_REBIND_FN","features":[468]},{"name":"LDAP_OPT_REFERRALS","features":[468]},{"name":"LDAP_OPT_REFERRAL_CALLBACK","features":[468]},{"name":"LDAP_OPT_REFERRAL_HOP_LIMIT","features":[468]},{"name":"LDAP_OPT_REF_DEREF_CONN_PER_MSG","features":[468]},{"name":"LDAP_OPT_RESTART","features":[468]},{"name":"LDAP_OPT_RETURN_REFS","features":[468]},{"name":"LDAP_OPT_ROOTDSE_CACHE","features":[468]},{"name":"LDAP_OPT_SASL_METHOD","features":[468]},{"name":"LDAP_OPT_SCH_FLAGS","features":[468]},{"name":"LDAP_OPT_SECURITY_CONTEXT","features":[468]},{"name":"LDAP_OPT_SEND_TIMEOUT","features":[468]},{"name":"LDAP_OPT_SERVER_CERTIFICATE","features":[468]},{"name":"LDAP_OPT_SERVER_ERROR","features":[468]},{"name":"LDAP_OPT_SERVER_EXT_ERROR","features":[468]},{"name":"LDAP_OPT_SIGN","features":[468]},{"name":"LDAP_OPT_SIZELIMIT","features":[468]},{"name":"LDAP_OPT_SOCKET_BIND_ADDRESSES","features":[468]},{"name":"LDAP_OPT_SSL","features":[468]},{"name":"LDAP_OPT_SSL_INFO","features":[468]},{"name":"LDAP_OPT_SSPI_FLAGS","features":[468]},{"name":"LDAP_OPT_TCP_KEEPALIVE","features":[468]},{"name":"LDAP_OPT_THREAD_FN_PTRS","features":[468]},{"name":"LDAP_OPT_TIMELIMIT","features":[468]},{"name":"LDAP_OPT_TLS","features":[468]},{"name":"LDAP_OPT_TLS_INFO","features":[468]},{"name":"LDAP_OPT_VERSION","features":[468]},{"name":"LDAP_OTHER","features":[468]},{"name":"LDAP_PAGED_RESULT_OID_STRING","features":[468]},{"name":"LDAP_PAGED_RESULT_OID_STRING_W","features":[468]},{"name":"LDAP_PARAM_ERROR","features":[468]},{"name":"LDAP_PARTIAL_RESULTS","features":[468]},{"name":"LDAP_POLICYHINT_APPLY_FULLPWDPOLICY","features":[468]},{"name":"LDAP_PORT","features":[468]},{"name":"LDAP_PROTOCOL_ERROR","features":[468]},{"name":"LDAP_REFERRAL","features":[468]},{"name":"LDAP_REFERRAL_CALLBACK","features":[303,468]},{"name":"LDAP_REFERRAL_LIMIT_EXCEEDED","features":[468]},{"name":"LDAP_REFERRAL_V2","features":[468]},{"name":"LDAP_RESULTS_TOO_LARGE","features":[468]},{"name":"LDAP_RES_ADD","features":[468]},{"name":"LDAP_RES_ANY","features":[468]},{"name":"LDAP_RES_BIND","features":[468]},{"name":"LDAP_RES_COMPARE","features":[468]},{"name":"LDAP_RES_DELETE","features":[468]},{"name":"LDAP_RES_EXTENDED","features":[468]},{"name":"LDAP_RES_MODIFY","features":[468]},{"name":"LDAP_RES_MODRDN","features":[468]},{"name":"LDAP_RES_REFERRAL","features":[468]},{"name":"LDAP_RES_SEARCH_ENTRY","features":[468]},{"name":"LDAP_RES_SEARCH_RESULT","features":[468]},{"name":"LDAP_RES_SESSION","features":[468]},{"name":"LDAP_RETCODE","features":[468]},{"name":"LDAP_SASL_BIND_IN_PROGRESS","features":[468]},{"name":"LDAP_SCOPE_BASE","features":[468]},{"name":"LDAP_SCOPE_ONELEVEL","features":[468]},{"name":"LDAP_SCOPE_SUBTREE","features":[468]},{"name":"LDAP_SEARCH_CMD","features":[468]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID","features":[468]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID_W","features":[468]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID","features":[468]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID_W","features":[468]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID","features":[468]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID_W","features":[468]},{"name":"LDAP_SERVER_ASQ_OID","features":[468]},{"name":"LDAP_SERVER_ASQ_OID_W","features":[468]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID","features":[468]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID_W","features":[468]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID","features":[468]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID_W","features":[468]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID","features":[468]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID_W","features":[468]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID","features":[468]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID_W","features":[468]},{"name":"LDAP_SERVER_DIRSYNC_OID","features":[468]},{"name":"LDAP_SERVER_DIRSYNC_OID_W","features":[468]},{"name":"LDAP_SERVER_DN_INPUT_OID","features":[468]},{"name":"LDAP_SERVER_DN_INPUT_OID_W","features":[468]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID","features":[468]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID_W","features":[468]},{"name":"LDAP_SERVER_DOWN","features":[468]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID","features":[468]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID_W","features":[468]},{"name":"LDAP_SERVER_EXTENDED_DN_OID","features":[468]},{"name":"LDAP_SERVER_EXTENDED_DN_OID_W","features":[468]},{"name":"LDAP_SERVER_FAST_BIND_OID","features":[468]},{"name":"LDAP_SERVER_FAST_BIND_OID_W","features":[468]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID","features":[468]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID_W","features":[468]},{"name":"LDAP_SERVER_GET_STATS_OID","features":[468]},{"name":"LDAP_SERVER_GET_STATS_OID_W","features":[468]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID","features":[468]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID_W","features":[468]},{"name":"LDAP_SERVER_LINK_TTL_OID","features":[468]},{"name":"LDAP_SERVER_LINK_TTL_OID_W","features":[468]},{"name":"LDAP_SERVER_NOTIFICATION_OID","features":[468]},{"name":"LDAP_SERVER_NOTIFICATION_OID_W","features":[468]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID","features":[468]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID_W","features":[468]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID","features":[468]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID_W","features":[468]},{"name":"LDAP_SERVER_POLICY_HINTS_OID","features":[468]},{"name":"LDAP_SERVER_POLICY_HINTS_OID_W","features":[468]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID","features":[468]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID_W","features":[468]},{"name":"LDAP_SERVER_RANGE_OPTION_OID","features":[468]},{"name":"LDAP_SERVER_RANGE_OPTION_OID_W","features":[468]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID","features":[468]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID_W","features":[468]},{"name":"LDAP_SERVER_RESP_SORT_OID","features":[468]},{"name":"LDAP_SERVER_RESP_SORT_OID_W","features":[468]},{"name":"LDAP_SERVER_SD_FLAGS_OID","features":[468]},{"name":"LDAP_SERVER_SD_FLAGS_OID_W","features":[468]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID","features":[468]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID_W","features":[468]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID","features":[468]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID_W","features":[468]},{"name":"LDAP_SERVER_SET_OWNER_OID","features":[468]},{"name":"LDAP_SERVER_SET_OWNER_OID_W","features":[468]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID","features":[468]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID_W","features":[468]},{"name":"LDAP_SERVER_SHOW_DELETED_OID","features":[468]},{"name":"LDAP_SERVER_SHOW_DELETED_OID_W","features":[468]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID","features":[468]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID_W","features":[468]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID","features":[468]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID_W","features":[468]},{"name":"LDAP_SERVER_SORT_OID","features":[468]},{"name":"LDAP_SERVER_SORT_OID_W","features":[468]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID","features":[468]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID_W","features":[468]},{"name":"LDAP_SERVER_TREE_DELETE_OID","features":[468]},{"name":"LDAP_SERVER_TREE_DELETE_OID_W","features":[468]},{"name":"LDAP_SERVER_UPDATE_STATS_OID","features":[468]},{"name":"LDAP_SERVER_UPDATE_STATS_OID_W","features":[468]},{"name":"LDAP_SERVER_VERIFY_NAME_OID","features":[468]},{"name":"LDAP_SERVER_VERIFY_NAME_OID_W","features":[468]},{"name":"LDAP_SERVER_WHO_AM_I_OID","features":[468]},{"name":"LDAP_SERVER_WHO_AM_I_OID_W","features":[468]},{"name":"LDAP_SESSION_CMD","features":[468]},{"name":"LDAP_SIZELIMIT_EXCEEDED","features":[468]},{"name":"LDAP_SORT_CONTROL_MISSING","features":[468]},{"name":"LDAP_SSL_GC_PORT","features":[468]},{"name":"LDAP_SSL_PORT","features":[468]},{"name":"LDAP_START_TLS_OID","features":[468]},{"name":"LDAP_START_TLS_OID_W","features":[468]},{"name":"LDAP_STRONG_AUTH_REQUIRED","features":[468]},{"name":"LDAP_SUBSTRING_ANY","features":[468]},{"name":"LDAP_SUBSTRING_FINAL","features":[468]},{"name":"LDAP_SUBSTRING_INITIAL","features":[468]},{"name":"LDAP_SUCCESS","features":[468]},{"name":"LDAP_TIMELIMIT_EXCEEDED","features":[468]},{"name":"LDAP_TIMEOUT","features":[468]},{"name":"LDAP_TIMEVAL","features":[468]},{"name":"LDAP_TTL_EXTENDED_OP_OID","features":[468]},{"name":"LDAP_TTL_EXTENDED_OP_OID_W","features":[468]},{"name":"LDAP_UNAVAILABLE","features":[468]},{"name":"LDAP_UNAVAILABLE_CRIT_EXTENSION","features":[468]},{"name":"LDAP_UNBIND_CMD","features":[468]},{"name":"LDAP_UNDEFINED_TYPE","features":[468]},{"name":"LDAP_UNICODE","features":[468]},{"name":"LDAP_UNWILLING_TO_PERFORM","features":[468]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID","features":[468]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID_W","features":[468]},{"name":"LDAP_UPDATE_STATS_USN_OID","features":[468]},{"name":"LDAP_UPDATE_STATS_USN_OID_W","features":[468]},{"name":"LDAP_USER_CANCELLED","features":[468]},{"name":"LDAP_VENDOR_NAME","features":[468]},{"name":"LDAP_VENDOR_NAME_W","features":[468]},{"name":"LDAP_VENDOR_VERSION","features":[468]},{"name":"LDAP_VERSION","features":[468]},{"name":"LDAP_VERSION1","features":[468]},{"name":"LDAP_VERSION2","features":[468]},{"name":"LDAP_VERSION3","features":[468]},{"name":"LDAP_VERSION_INFO","features":[468]},{"name":"LDAP_VERSION_MAX","features":[468]},{"name":"LDAP_VERSION_MIN","features":[468]},{"name":"LDAP_VIRTUAL_LIST_VIEW_ERROR","features":[468]},{"name":"LDAP_VLVINFO_VERSION","features":[468]},{"name":"LdapGetLastError","features":[468]},{"name":"LdapMapErrorToWin32","features":[303,468]},{"name":"LdapUTF8ToUnicode","features":[468]},{"name":"LdapUnicodeToUTF8","features":[468]},{"name":"NOTIFYOFNEWCONNECTION","features":[303,468]},{"name":"PLDAPSearch","features":[468]},{"name":"QUERYCLIENTCERT","features":[303,468,324,387]},{"name":"QUERYFORCONNECTION","features":[468]},{"name":"SERVER_SEARCH_FLAG_DOMAIN_SCOPE","features":[468]},{"name":"SERVER_SEARCH_FLAG_PHANTOM_ROOT","features":[468]},{"name":"VERIFYSERVERCERT","features":[303,468,387]},{"name":"ber_alloc_t","features":[468]},{"name":"ber_bvdup","features":[468]},{"name":"ber_bvecfree","features":[468]},{"name":"ber_bvfree","features":[468]},{"name":"ber_first_element","features":[468]},{"name":"ber_flatten","features":[468]},{"name":"ber_free","features":[468]},{"name":"ber_init","features":[468]},{"name":"ber_next_element","features":[468]},{"name":"ber_peek_tag","features":[468]},{"name":"ber_printf","features":[468]},{"name":"ber_scanf","features":[468]},{"name":"ber_skip_tag","features":[468]},{"name":"cldap_open","features":[468]},{"name":"cldap_openA","features":[468]},{"name":"cldap_openW","features":[468]},{"name":"ldap_abandon","features":[468]},{"name":"ldap_add","features":[468]},{"name":"ldap_addA","features":[468]},{"name":"ldap_addW","features":[468]},{"name":"ldap_add_ext","features":[303,468]},{"name":"ldap_add_extA","features":[303,468]},{"name":"ldap_add_extW","features":[303,468]},{"name":"ldap_add_ext_s","features":[303,468]},{"name":"ldap_add_ext_sA","features":[303,468]},{"name":"ldap_add_ext_sW","features":[303,468]},{"name":"ldap_add_s","features":[468]},{"name":"ldap_add_sA","features":[468]},{"name":"ldap_add_sW","features":[468]},{"name":"ldap_bind","features":[468]},{"name":"ldap_bindA","features":[468]},{"name":"ldap_bindW","features":[468]},{"name":"ldap_bind_s","features":[468]},{"name":"ldap_bind_sA","features":[468]},{"name":"ldap_bind_sW","features":[468]},{"name":"ldap_check_filterA","features":[468]},{"name":"ldap_check_filterW","features":[468]},{"name":"ldap_cleanup","features":[303,468]},{"name":"ldap_close_extended_op","features":[468]},{"name":"ldap_compare","features":[468]},{"name":"ldap_compareA","features":[468]},{"name":"ldap_compareW","features":[468]},{"name":"ldap_compare_ext","features":[303,468]},{"name":"ldap_compare_extA","features":[303,468]},{"name":"ldap_compare_extW","features":[303,468]},{"name":"ldap_compare_ext_s","features":[303,468]},{"name":"ldap_compare_ext_sA","features":[303,468]},{"name":"ldap_compare_ext_sW","features":[303,468]},{"name":"ldap_compare_s","features":[468]},{"name":"ldap_compare_sA","features":[468]},{"name":"ldap_compare_sW","features":[468]},{"name":"ldap_conn_from_msg","features":[303,468]},{"name":"ldap_connect","features":[468]},{"name":"ldap_control_free","features":[303,468]},{"name":"ldap_control_freeA","features":[303,468]},{"name":"ldap_control_freeW","features":[303,468]},{"name":"ldap_controls_free","features":[303,468]},{"name":"ldap_controls_freeA","features":[303,468]},{"name":"ldap_controls_freeW","features":[303,468]},{"name":"ldap_count_entries","features":[303,468]},{"name":"ldap_count_references","features":[303,468]},{"name":"ldap_count_values","features":[468]},{"name":"ldap_count_valuesA","features":[468]},{"name":"ldap_count_valuesW","features":[468]},{"name":"ldap_count_values_len","features":[468]},{"name":"ldap_create_page_control","features":[303,468]},{"name":"ldap_create_page_controlA","features":[303,468]},{"name":"ldap_create_page_controlW","features":[303,468]},{"name":"ldap_create_sort_control","features":[303,468]},{"name":"ldap_create_sort_controlA","features":[303,468]},{"name":"ldap_create_sort_controlW","features":[303,468]},{"name":"ldap_create_vlv_controlA","features":[303,468]},{"name":"ldap_create_vlv_controlW","features":[303,468]},{"name":"ldap_delete","features":[468]},{"name":"ldap_deleteA","features":[468]},{"name":"ldap_deleteW","features":[468]},{"name":"ldap_delete_ext","features":[303,468]},{"name":"ldap_delete_extA","features":[303,468]},{"name":"ldap_delete_extW","features":[303,468]},{"name":"ldap_delete_ext_s","features":[303,468]},{"name":"ldap_delete_ext_sA","features":[303,468]},{"name":"ldap_delete_ext_sW","features":[303,468]},{"name":"ldap_delete_s","features":[468]},{"name":"ldap_delete_sA","features":[468]},{"name":"ldap_delete_sW","features":[468]},{"name":"ldap_dn2ufn","features":[468]},{"name":"ldap_dn2ufnA","features":[468]},{"name":"ldap_dn2ufnW","features":[468]},{"name":"ldap_encode_sort_controlA","features":[303,468]},{"name":"ldap_encode_sort_controlW","features":[303,468]},{"name":"ldap_err2string","features":[468]},{"name":"ldap_err2stringA","features":[468]},{"name":"ldap_err2stringW","features":[468]},{"name":"ldap_escape_filter_element","features":[468]},{"name":"ldap_escape_filter_elementA","features":[468]},{"name":"ldap_escape_filter_elementW","features":[468]},{"name":"ldap_explode_dn","features":[468]},{"name":"ldap_explode_dnA","features":[468]},{"name":"ldap_explode_dnW","features":[468]},{"name":"ldap_extended_operation","features":[303,468]},{"name":"ldap_extended_operationA","features":[303,468]},{"name":"ldap_extended_operationW","features":[303,468]},{"name":"ldap_extended_operation_sA","features":[303,468]},{"name":"ldap_extended_operation_sW","features":[303,468]},{"name":"ldap_first_attribute","features":[303,468]},{"name":"ldap_first_attributeA","features":[303,468]},{"name":"ldap_first_attributeW","features":[303,468]},{"name":"ldap_first_entry","features":[303,468]},{"name":"ldap_first_reference","features":[303,468]},{"name":"ldap_free_controls","features":[303,468]},{"name":"ldap_free_controlsA","features":[303,468]},{"name":"ldap_free_controlsW","features":[303,468]},{"name":"ldap_get_dn","features":[303,468]},{"name":"ldap_get_dnA","features":[303,468]},{"name":"ldap_get_dnW","features":[303,468]},{"name":"ldap_get_next_page","features":[468]},{"name":"ldap_get_next_page_s","features":[303,468]},{"name":"ldap_get_option","features":[468]},{"name":"ldap_get_optionW","features":[468]},{"name":"ldap_get_paged_count","features":[303,468]},{"name":"ldap_get_values","features":[303,468]},{"name":"ldap_get_valuesA","features":[303,468]},{"name":"ldap_get_valuesW","features":[303,468]},{"name":"ldap_get_values_len","features":[303,468]},{"name":"ldap_get_values_lenA","features":[303,468]},{"name":"ldap_get_values_lenW","features":[303,468]},{"name":"ldap_init","features":[468]},{"name":"ldap_initA","features":[468]},{"name":"ldap_initW","features":[468]},{"name":"ldap_memfree","features":[468]},{"name":"ldap_memfreeA","features":[468]},{"name":"ldap_memfreeW","features":[468]},{"name":"ldap_modify","features":[468]},{"name":"ldap_modifyA","features":[468]},{"name":"ldap_modifyW","features":[468]},{"name":"ldap_modify_ext","features":[303,468]},{"name":"ldap_modify_extA","features":[303,468]},{"name":"ldap_modify_extW","features":[303,468]},{"name":"ldap_modify_ext_s","features":[303,468]},{"name":"ldap_modify_ext_sA","features":[303,468]},{"name":"ldap_modify_ext_sW","features":[303,468]},{"name":"ldap_modify_s","features":[468]},{"name":"ldap_modify_sA","features":[468]},{"name":"ldap_modify_sW","features":[468]},{"name":"ldap_modrdn","features":[468]},{"name":"ldap_modrdn2","features":[468]},{"name":"ldap_modrdn2A","features":[468]},{"name":"ldap_modrdn2W","features":[468]},{"name":"ldap_modrdn2_s","features":[468]},{"name":"ldap_modrdn2_sA","features":[468]},{"name":"ldap_modrdn2_sW","features":[468]},{"name":"ldap_modrdnA","features":[468]},{"name":"ldap_modrdnW","features":[468]},{"name":"ldap_modrdn_s","features":[468]},{"name":"ldap_modrdn_sA","features":[468]},{"name":"ldap_modrdn_sW","features":[468]},{"name":"ldap_msgfree","features":[303,468]},{"name":"ldap_next_attribute","features":[303,468]},{"name":"ldap_next_attributeA","features":[303,468]},{"name":"ldap_next_attributeW","features":[303,468]},{"name":"ldap_next_entry","features":[303,468]},{"name":"ldap_next_reference","features":[303,468]},{"name":"ldap_open","features":[468]},{"name":"ldap_openA","features":[468]},{"name":"ldap_openW","features":[468]},{"name":"ldap_parse_extended_resultA","features":[303,468]},{"name":"ldap_parse_extended_resultW","features":[303,468]},{"name":"ldap_parse_page_control","features":[303,468]},{"name":"ldap_parse_page_controlA","features":[303,468]},{"name":"ldap_parse_page_controlW","features":[303,468]},{"name":"ldap_parse_reference","features":[303,468]},{"name":"ldap_parse_referenceA","features":[303,468]},{"name":"ldap_parse_referenceW","features":[303,468]},{"name":"ldap_parse_result","features":[303,468]},{"name":"ldap_parse_resultA","features":[303,468]},{"name":"ldap_parse_resultW","features":[303,468]},{"name":"ldap_parse_sort_control","features":[303,468]},{"name":"ldap_parse_sort_controlA","features":[303,468]},{"name":"ldap_parse_sort_controlW","features":[303,468]},{"name":"ldap_parse_vlv_controlA","features":[303,468]},{"name":"ldap_parse_vlv_controlW","features":[303,468]},{"name":"ldap_perror","features":[468]},{"name":"ldap_rename_ext","features":[303,468]},{"name":"ldap_rename_extA","features":[303,468]},{"name":"ldap_rename_extW","features":[303,468]},{"name":"ldap_rename_ext_s","features":[303,468]},{"name":"ldap_rename_ext_sA","features":[303,468]},{"name":"ldap_rename_ext_sW","features":[303,468]},{"name":"ldap_result","features":[303,468]},{"name":"ldap_result2error","features":[303,468]},{"name":"ldap_sasl_bindA","features":[303,468]},{"name":"ldap_sasl_bindW","features":[303,468]},{"name":"ldap_sasl_bind_sA","features":[303,468]},{"name":"ldap_sasl_bind_sW","features":[303,468]},{"name":"ldap_search","features":[468]},{"name":"ldap_searchA","features":[468]},{"name":"ldap_searchW","features":[468]},{"name":"ldap_search_abandon_page","features":[468]},{"name":"ldap_search_ext","features":[303,468]},{"name":"ldap_search_extA","features":[303,468]},{"name":"ldap_search_extW","features":[303,468]},{"name":"ldap_search_ext_s","features":[303,468]},{"name":"ldap_search_ext_sA","features":[303,468]},{"name":"ldap_search_ext_sW","features":[303,468]},{"name":"ldap_search_init_page","features":[303,468]},{"name":"ldap_search_init_pageA","features":[303,468]},{"name":"ldap_search_init_pageW","features":[303,468]},{"name":"ldap_search_s","features":[303,468]},{"name":"ldap_search_sA","features":[303,468]},{"name":"ldap_search_sW","features":[303,468]},{"name":"ldap_search_st","features":[303,468]},{"name":"ldap_search_stA","features":[303,468]},{"name":"ldap_search_stW","features":[303,468]},{"name":"ldap_set_dbg_flags","features":[468]},{"name":"ldap_set_dbg_routine","features":[468]},{"name":"ldap_set_option","features":[468]},{"name":"ldap_set_optionW","features":[468]},{"name":"ldap_simple_bind","features":[468]},{"name":"ldap_simple_bindA","features":[468]},{"name":"ldap_simple_bindW","features":[468]},{"name":"ldap_simple_bind_s","features":[468]},{"name":"ldap_simple_bind_sA","features":[468]},{"name":"ldap_simple_bind_sW","features":[468]},{"name":"ldap_sslinit","features":[468]},{"name":"ldap_sslinitA","features":[468]},{"name":"ldap_sslinitW","features":[468]},{"name":"ldap_start_tls_sA","features":[303,468]},{"name":"ldap_start_tls_sW","features":[303,468]},{"name":"ldap_startup","features":[303,468]},{"name":"ldap_stop_tls_s","features":[303,468]},{"name":"ldap_ufn2dn","features":[468]},{"name":"ldap_ufn2dnA","features":[468]},{"name":"ldap_ufn2dnW","features":[468]},{"name":"ldap_unbind","features":[468]},{"name":"ldap_unbind_s","features":[468]},{"name":"ldap_value_free","features":[468]},{"name":"ldap_value_freeA","features":[468]},{"name":"ldap_value_freeW","features":[468]},{"name":"ldap_value_free_len","features":[468]}],"472":[{"name":"IEnumNetworkConnections","features":[469,354]},{"name":"IEnumNetworks","features":[469,354]},{"name":"INetwork","features":[469,354]},{"name":"INetwork2","features":[469,354]},{"name":"INetworkConnection","features":[469,354]},{"name":"INetworkConnection2","features":[469,354]},{"name":"INetworkConnectionCost","features":[469]},{"name":"INetworkConnectionCostEvents","features":[469]},{"name":"INetworkConnectionEvents","features":[469]},{"name":"INetworkCostManager","features":[469]},{"name":"INetworkCostManagerEvents","features":[469]},{"name":"INetworkEvents","features":[469]},{"name":"INetworkListManager","features":[469,354]},{"name":"INetworkListManagerEvents","features":[469]},{"name":"NA_AllowMerge","features":[469]},{"name":"NA_CategoryReadOnly","features":[469]},{"name":"NA_CategorySetByPolicy","features":[469]},{"name":"NA_DescriptionReadOnly","features":[469]},{"name":"NA_DescriptionSetByPolicy","features":[469]},{"name":"NA_DomainAuthenticationFailed","features":[469]},{"name":"NA_IconReadOnly","features":[469]},{"name":"NA_IconSetByPolicy","features":[469]},{"name":"NA_InternetConnectivityV4","features":[469]},{"name":"NA_InternetConnectivityV6","features":[469]},{"name":"NA_NameReadOnly","features":[469]},{"name":"NA_NameSetByPolicy","features":[469]},{"name":"NA_NetworkClass","features":[469]},{"name":"NLM_CONNECTION_COST","features":[469]},{"name":"NLM_CONNECTION_COST_APPROACHINGDATALIMIT","features":[469]},{"name":"NLM_CONNECTION_COST_CONGESTED","features":[469]},{"name":"NLM_CONNECTION_COST_FIXED","features":[469]},{"name":"NLM_CONNECTION_COST_OVERDATALIMIT","features":[469]},{"name":"NLM_CONNECTION_COST_ROAMING","features":[469]},{"name":"NLM_CONNECTION_COST_UNKNOWN","features":[469]},{"name":"NLM_CONNECTION_COST_UNRESTRICTED","features":[469]},{"name":"NLM_CONNECTION_COST_VARIABLE","features":[469]},{"name":"NLM_CONNECTION_PROPERTY_CHANGE","features":[469]},{"name":"NLM_CONNECTION_PROPERTY_CHANGE_AUTHENTICATION","features":[469]},{"name":"NLM_CONNECTIVITY","features":[469]},{"name":"NLM_CONNECTIVITY_DISCONNECTED","features":[469]},{"name":"NLM_CONNECTIVITY_IPV4_INTERNET","features":[469]},{"name":"NLM_CONNECTIVITY_IPV4_LOCALNETWORK","features":[469]},{"name":"NLM_CONNECTIVITY_IPV4_NOTRAFFIC","features":[469]},{"name":"NLM_CONNECTIVITY_IPV4_SUBNET","features":[469]},{"name":"NLM_CONNECTIVITY_IPV6_INTERNET","features":[469]},{"name":"NLM_CONNECTIVITY_IPV6_LOCALNETWORK","features":[469]},{"name":"NLM_CONNECTIVITY_IPV6_NOTRAFFIC","features":[469]},{"name":"NLM_CONNECTIVITY_IPV6_SUBNET","features":[469]},{"name":"NLM_DATAPLAN_STATUS","features":[303,469]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND","features":[469]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND_LDAP","features":[469]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND_NONE","features":[469]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND_TLS","features":[469]},{"name":"NLM_DOMAIN_TYPE","features":[469]},{"name":"NLM_DOMAIN_TYPE_DOMAIN_AUTHENTICATED","features":[469]},{"name":"NLM_DOMAIN_TYPE_DOMAIN_NETWORK","features":[469]},{"name":"NLM_DOMAIN_TYPE_NON_DOMAIN_NETWORK","features":[469]},{"name":"NLM_ENUM_NETWORK","features":[469]},{"name":"NLM_ENUM_NETWORK_ALL","features":[469]},{"name":"NLM_ENUM_NETWORK_CONNECTED","features":[469]},{"name":"NLM_ENUM_NETWORK_DISCONNECTED","features":[469]},{"name":"NLM_INTERNET_CONNECTIVITY","features":[469]},{"name":"NLM_INTERNET_CONNECTIVITY_CORPORATE","features":[469]},{"name":"NLM_INTERNET_CONNECTIVITY_PROXIED","features":[469]},{"name":"NLM_INTERNET_CONNECTIVITY_WEBHIJACK","features":[469]},{"name":"NLM_MAX_ADDRESS_LIST_SIZE","features":[469]},{"name":"NLM_NETWORK_CATEGORY","features":[469]},{"name":"NLM_NETWORK_CATEGORY_DOMAIN_AUTHENTICATED","features":[469]},{"name":"NLM_NETWORK_CATEGORY_PRIVATE","features":[469]},{"name":"NLM_NETWORK_CATEGORY_PUBLIC","features":[469]},{"name":"NLM_NETWORK_CLASS","features":[469]},{"name":"NLM_NETWORK_IDENTIFIED","features":[469]},{"name":"NLM_NETWORK_IDENTIFYING","features":[469]},{"name":"NLM_NETWORK_PROPERTY_CHANGE","features":[469]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_CATEGORY_VALUE","features":[469]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_CONNECTION","features":[469]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_DESCRIPTION","features":[469]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_ICON","features":[469]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_NAME","features":[469]},{"name":"NLM_NETWORK_UNIDENTIFIED","features":[469]},{"name":"NLM_SIMULATED_PROFILE_INFO","features":[469]},{"name":"NLM_SOCKADDR","features":[469]},{"name":"NLM_UNKNOWN_DATAPLAN_STATUS","features":[469]},{"name":"NLM_USAGE_DATA","features":[303,469]},{"name":"NetworkListManager","features":[469]}],"473":[{"name":"FindSimilarFileIndexResults","features":[470]},{"name":"FindSimilarResults","features":[470]},{"name":"GeneratorParametersType","features":[470]},{"name":"IFindSimilarResults","features":[470]},{"name":"IRdcComparator","features":[470]},{"name":"IRdcFileReader","features":[470]},{"name":"IRdcFileWriter","features":[470]},{"name":"IRdcGenerator","features":[470]},{"name":"IRdcGeneratorFilterMaxParameters","features":[470]},{"name":"IRdcGeneratorParameters","features":[470]},{"name":"IRdcLibrary","features":[470]},{"name":"IRdcSignatureReader","features":[470]},{"name":"IRdcSimilarityGenerator","features":[470]},{"name":"ISimilarity","features":[470]},{"name":"ISimilarityFileIdTable","features":[470]},{"name":"ISimilarityReportProgress","features":[470]},{"name":"ISimilarityTableDumpState","features":[470]},{"name":"ISimilarityTraitsMappedView","features":[470]},{"name":"ISimilarityTraitsMapping","features":[470]},{"name":"ISimilarityTraitsTable","features":[470]},{"name":"MSRDC_DEFAULT_COMPAREBUFFER","features":[470]},{"name":"MSRDC_DEFAULT_HASHWINDOWSIZE_1","features":[470]},{"name":"MSRDC_DEFAULT_HASHWINDOWSIZE_N","features":[470]},{"name":"MSRDC_DEFAULT_HORIZONSIZE_1","features":[470]},{"name":"MSRDC_DEFAULT_HORIZONSIZE_N","features":[470]},{"name":"MSRDC_MAXIMUM_COMPAREBUFFER","features":[470]},{"name":"MSRDC_MAXIMUM_DEPTH","features":[470]},{"name":"MSRDC_MAXIMUM_HASHWINDOWSIZE","features":[470]},{"name":"MSRDC_MAXIMUM_HORIZONSIZE","features":[470]},{"name":"MSRDC_MAXIMUM_MATCHESREQUIRED","features":[470]},{"name":"MSRDC_MAXIMUM_TRAITVALUE","features":[470]},{"name":"MSRDC_MINIMUM_COMPAREBUFFER","features":[470]},{"name":"MSRDC_MINIMUM_COMPATIBLE_APP_VERSION","features":[470]},{"name":"MSRDC_MINIMUM_DEPTH","features":[470]},{"name":"MSRDC_MINIMUM_HASHWINDOWSIZE","features":[470]},{"name":"MSRDC_MINIMUM_HORIZONSIZE","features":[470]},{"name":"MSRDC_MINIMUM_INPUTBUFFERSIZE","features":[470]},{"name":"MSRDC_MINIMUM_MATCHESREQUIRED","features":[470]},{"name":"MSRDC_SIGNATURE_HASHSIZE","features":[470]},{"name":"MSRDC_VERSION","features":[470]},{"name":"RDCE_TABLE_CORRUPT","features":[470]},{"name":"RDCE_TABLE_FULL","features":[470]},{"name":"RDCGENTYPE_FilterMax","features":[470]},{"name":"RDCGENTYPE_Unused","features":[470]},{"name":"RDCMAPPING_ReadOnly","features":[470]},{"name":"RDCMAPPING_ReadWrite","features":[470]},{"name":"RDCMAPPING_Undefined","features":[470]},{"name":"RDCNEED_SEED","features":[470]},{"name":"RDCNEED_SEED_MAX","features":[470]},{"name":"RDCNEED_SOURCE","features":[470]},{"name":"RDCNEED_TARGET","features":[470]},{"name":"RDCTABLE_Existing","features":[470]},{"name":"RDCTABLE_InvalidOrUnknown","features":[470]},{"name":"RDCTABLE_New","features":[470]},{"name":"RDC_Aborted","features":[470]},{"name":"RDC_ApplicationError","features":[470]},{"name":"RDC_DataMissingOrCorrupt","features":[470]},{"name":"RDC_DataTooManyRecords","features":[470]},{"name":"RDC_ErrorCode","features":[470]},{"name":"RDC_FileChecksumMismatch","features":[470]},{"name":"RDC_HeaderMissingOrCorrupt","features":[470]},{"name":"RDC_HeaderVersionNewer","features":[470]},{"name":"RDC_HeaderVersionOlder","features":[470]},{"name":"RDC_HeaderWrongType","features":[470]},{"name":"RDC_NoError","features":[470]},{"name":"RDC_Win32Error","features":[470]},{"name":"RdcBufferPointer","features":[470]},{"name":"RdcComparator","features":[470]},{"name":"RdcCreatedTables","features":[470]},{"name":"RdcFileReader","features":[470]},{"name":"RdcGenerator","features":[470]},{"name":"RdcGeneratorFilterMaxParameters","features":[470]},{"name":"RdcGeneratorParameters","features":[470]},{"name":"RdcLibrary","features":[470]},{"name":"RdcMappingAccessMode","features":[470]},{"name":"RdcNeed","features":[470]},{"name":"RdcNeedPointer","features":[470]},{"name":"RdcNeedType","features":[470]},{"name":"RdcSignature","features":[470]},{"name":"RdcSignaturePointer","features":[470]},{"name":"RdcSignatureReader","features":[470]},{"name":"RdcSimilarityGenerator","features":[470]},{"name":"Similarity","features":[470]},{"name":"SimilarityData","features":[470]},{"name":"SimilarityDumpData","features":[470]},{"name":"SimilarityFileId","features":[470]},{"name":"SimilarityFileIdMaxSize","features":[470]},{"name":"SimilarityFileIdMinSize","features":[470]},{"name":"SimilarityFileIdTable","features":[470]},{"name":"SimilarityMappedViewInfo","features":[470]},{"name":"SimilarityReportProgress","features":[470]},{"name":"SimilarityTableDumpState","features":[470]},{"name":"SimilarityTraitsMappedView","features":[470]},{"name":"SimilarityTraitsMapping","features":[470]},{"name":"SimilarityTraitsTable","features":[470]}],"474":[{"name":"WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_ACTION","features":[471]},{"name":"WEB_SOCKET_ACTION_QUEUE","features":[471]},{"name":"WEB_SOCKET_ALLOCATED_BUFFER_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_ALL_ACTION_QUEUE","features":[471]},{"name":"WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[471]},{"name":"WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[471]},{"name":"WEB_SOCKET_BUFFER","features":[471]},{"name":"WEB_SOCKET_BUFFER_TYPE","features":[471]},{"name":"WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[471]},{"name":"WEB_SOCKET_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_DISABLE_MASKING_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_DISABLE_UTF8_VERIFICATION_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_ENDPOINT_UNAVAILABLE_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_HANDLE","features":[471]},{"name":"WEB_SOCKET_HTTP_HEADER","features":[471]},{"name":"WEB_SOCKET_INDICATE_RECEIVE_COMPLETE_ACTION","features":[471]},{"name":"WEB_SOCKET_INDICATE_SEND_COMPLETE_ACTION","features":[471]},{"name":"WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_KEEPALIVE_INTERVAL_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[471]},{"name":"WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_NO_ACTION","features":[471]},{"name":"WEB_SOCKET_PING_PONG_BUFFER_TYPE","features":[471]},{"name":"WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_PROPERTY","features":[471]},{"name":"WEB_SOCKET_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_RECEIVE_ACTION_QUEUE","features":[471]},{"name":"WEB_SOCKET_RECEIVE_BUFFER_SIZE_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_RECEIVE_FROM_NETWORK_ACTION","features":[471]},{"name":"WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_SEND_ACTION_QUEUE","features":[471]},{"name":"WEB_SOCKET_SEND_BUFFER_SIZE_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_SEND_TO_NETWORK_ACTION","features":[471]},{"name":"WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_SUPPORTED_VERSIONS_PROPERTY_TYPE","features":[471]},{"name":"WEB_SOCKET_UNSOLICITED_PONG_BUFFER_TYPE","features":[471]},{"name":"WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[471]},{"name":"WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[471]},{"name":"WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[471]},{"name":"WebSocketAbortHandle","features":[471]},{"name":"WebSocketBeginClientHandshake","features":[471]},{"name":"WebSocketBeginServerHandshake","features":[471]},{"name":"WebSocketCompleteAction","features":[471]},{"name":"WebSocketCreateClientHandle","features":[471]},{"name":"WebSocketCreateServerHandle","features":[471]},{"name":"WebSocketDeleteHandle","features":[471]},{"name":"WebSocketEndClientHandshake","features":[471]},{"name":"WebSocketEndServerHandshake","features":[471]},{"name":"WebSocketGetAction","features":[471]},{"name":"WebSocketGetGlobalProperty","features":[471]},{"name":"WebSocketReceive","features":[471]},{"name":"WebSocketSend","features":[471]}],"475":[{"name":"API_GET_PROXY_FOR_URL","features":[472]},{"name":"API_GET_PROXY_SETTINGS","features":[472]},{"name":"API_QUERY_DATA_AVAILABLE","features":[472]},{"name":"API_READ_DATA","features":[472]},{"name":"API_RECEIVE_RESPONSE","features":[472]},{"name":"API_SEND_REQUEST","features":[472]},{"name":"API_WRITE_DATA","features":[472]},{"name":"AutoLogonPolicy_Always","features":[472]},{"name":"AutoLogonPolicy_Never","features":[472]},{"name":"AutoLogonPolicy_OnlyIfBypassProxy","features":[472]},{"name":"ERROR_WINHTTP_AUTODETECTION_FAILED","features":[472]},{"name":"ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR","features":[472]},{"name":"ERROR_WINHTTP_BAD_AUTO_PROXY_SCRIPT","features":[472]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_OPEN","features":[472]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_SEND","features":[472]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_OPEN","features":[472]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_SEND","features":[472]},{"name":"ERROR_WINHTTP_CANNOT_CONNECT","features":[472]},{"name":"ERROR_WINHTTP_CHUNKED_ENCODING_HEADER_SIZE_OVERFLOW","features":[472]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED","features":[472]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[472]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_ACCESS_PRIVATE_KEY","features":[472]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_PRIVATE_KEY","features":[472]},{"name":"ERROR_WINHTTP_CONNECTION_ERROR","features":[472]},{"name":"ERROR_WINHTTP_FEATURE_DISABLED","features":[472]},{"name":"ERROR_WINHTTP_GLOBAL_CALLBACK_FAILED","features":[472]},{"name":"ERROR_WINHTTP_HEADER_ALREADY_EXISTS","features":[472]},{"name":"ERROR_WINHTTP_HEADER_COUNT_EXCEEDED","features":[472]},{"name":"ERROR_WINHTTP_HEADER_NOT_FOUND","features":[472]},{"name":"ERROR_WINHTTP_HEADER_SIZE_OVERFLOW","features":[472]},{"name":"ERROR_WINHTTP_HTTP_PROTOCOL_MISMATCH","features":[472]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_STATE","features":[472]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_TYPE","features":[472]},{"name":"ERROR_WINHTTP_INTERNAL_ERROR","features":[472]},{"name":"ERROR_WINHTTP_INVALID_HEADER","features":[472]},{"name":"ERROR_WINHTTP_INVALID_OPTION","features":[472]},{"name":"ERROR_WINHTTP_INVALID_QUERY_REQUEST","features":[472]},{"name":"ERROR_WINHTTP_INVALID_SERVER_RESPONSE","features":[472]},{"name":"ERROR_WINHTTP_INVALID_URL","features":[472]},{"name":"ERROR_WINHTTP_LOGIN_FAILURE","features":[472]},{"name":"ERROR_WINHTTP_NAME_NOT_RESOLVED","features":[472]},{"name":"ERROR_WINHTTP_NOT_INITIALIZED","features":[472]},{"name":"ERROR_WINHTTP_OPERATION_CANCELLED","features":[472]},{"name":"ERROR_WINHTTP_OPTION_NOT_SETTABLE","features":[472]},{"name":"ERROR_WINHTTP_OUT_OF_HANDLES","features":[472]},{"name":"ERROR_WINHTTP_REDIRECT_FAILED","features":[472]},{"name":"ERROR_WINHTTP_RESEND_REQUEST","features":[472]},{"name":"ERROR_WINHTTP_RESERVED_189","features":[472]},{"name":"ERROR_WINHTTP_RESPONSE_DRAIN_OVERFLOW","features":[472]},{"name":"ERROR_WINHTTP_SCRIPT_EXECUTION_ERROR","features":[472]},{"name":"ERROR_WINHTTP_SECURE_CERT_CN_INVALID","features":[472]},{"name":"ERROR_WINHTTP_SECURE_CERT_DATE_INVALID","features":[472]},{"name":"ERROR_WINHTTP_SECURE_CERT_REVOKED","features":[472]},{"name":"ERROR_WINHTTP_SECURE_CERT_REV_FAILED","features":[472]},{"name":"ERROR_WINHTTP_SECURE_CERT_WRONG_USAGE","features":[472]},{"name":"ERROR_WINHTTP_SECURE_CHANNEL_ERROR","features":[472]},{"name":"ERROR_WINHTTP_SECURE_FAILURE","features":[472]},{"name":"ERROR_WINHTTP_SECURE_FAILURE_PROXY","features":[472]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CA","features":[472]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CERT","features":[472]},{"name":"ERROR_WINHTTP_SHUTDOWN","features":[472]},{"name":"ERROR_WINHTTP_TIMEOUT","features":[472]},{"name":"ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT","features":[472]},{"name":"ERROR_WINHTTP_UNHANDLED_SCRIPT_TYPE","features":[472]},{"name":"ERROR_WINHTTP_UNRECOGNIZED_SCHEME","features":[472]},{"name":"HTTPREQUEST_PROXYSETTING_DEFAULT","features":[472]},{"name":"HTTPREQUEST_PROXYSETTING_DIRECT","features":[472]},{"name":"HTTPREQUEST_PROXYSETTING_PRECONFIG","features":[472]},{"name":"HTTPREQUEST_PROXYSETTING_PROXY","features":[472]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_PROXY","features":[472]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_SERVER","features":[472]},{"name":"HTTP_STATUS_ACCEPTED","features":[472]},{"name":"HTTP_STATUS_AMBIGUOUS","features":[472]},{"name":"HTTP_STATUS_BAD_GATEWAY","features":[472]},{"name":"HTTP_STATUS_BAD_METHOD","features":[472]},{"name":"HTTP_STATUS_BAD_REQUEST","features":[472]},{"name":"HTTP_STATUS_CONFLICT","features":[472]},{"name":"HTTP_STATUS_CONTINUE","features":[472]},{"name":"HTTP_STATUS_CREATED","features":[472]},{"name":"HTTP_STATUS_DENIED","features":[472]},{"name":"HTTP_STATUS_FIRST","features":[472]},{"name":"HTTP_STATUS_FORBIDDEN","features":[472]},{"name":"HTTP_STATUS_GATEWAY_TIMEOUT","features":[472]},{"name":"HTTP_STATUS_GONE","features":[472]},{"name":"HTTP_STATUS_LAST","features":[472]},{"name":"HTTP_STATUS_LENGTH_REQUIRED","features":[472]},{"name":"HTTP_STATUS_MOVED","features":[472]},{"name":"HTTP_STATUS_NONE_ACCEPTABLE","features":[472]},{"name":"HTTP_STATUS_NOT_FOUND","features":[472]},{"name":"HTTP_STATUS_NOT_MODIFIED","features":[472]},{"name":"HTTP_STATUS_NOT_SUPPORTED","features":[472]},{"name":"HTTP_STATUS_NO_CONTENT","features":[472]},{"name":"HTTP_STATUS_OK","features":[472]},{"name":"HTTP_STATUS_PARTIAL","features":[472]},{"name":"HTTP_STATUS_PARTIAL_CONTENT","features":[472]},{"name":"HTTP_STATUS_PAYMENT_REQ","features":[472]},{"name":"HTTP_STATUS_PERMANENT_REDIRECT","features":[472]},{"name":"HTTP_STATUS_PRECOND_FAILED","features":[472]},{"name":"HTTP_STATUS_PROXY_AUTH_REQ","features":[472]},{"name":"HTTP_STATUS_REDIRECT","features":[472]},{"name":"HTTP_STATUS_REDIRECT_KEEP_VERB","features":[472]},{"name":"HTTP_STATUS_REDIRECT_METHOD","features":[472]},{"name":"HTTP_STATUS_REQUEST_TIMEOUT","features":[472]},{"name":"HTTP_STATUS_REQUEST_TOO_LARGE","features":[472]},{"name":"HTTP_STATUS_RESET_CONTENT","features":[472]},{"name":"HTTP_STATUS_RETRY_WITH","features":[472]},{"name":"HTTP_STATUS_SERVER_ERROR","features":[472]},{"name":"HTTP_STATUS_SERVICE_UNAVAIL","features":[472]},{"name":"HTTP_STATUS_SWITCH_PROTOCOLS","features":[472]},{"name":"HTTP_STATUS_UNSUPPORTED_MEDIA","features":[472]},{"name":"HTTP_STATUS_URI_TOO_LONG","features":[472]},{"name":"HTTP_STATUS_USE_PROXY","features":[472]},{"name":"HTTP_STATUS_VERSION_NOT_SUP","features":[472]},{"name":"HTTP_STATUS_WEBDAV_MULTI_STATUS","features":[472]},{"name":"HTTP_VERSION_INFO","features":[472]},{"name":"ICU_BROWSER_MODE","features":[472]},{"name":"ICU_DECODE","features":[472]},{"name":"ICU_ENCODE_PERCENT","features":[472]},{"name":"ICU_ENCODE_SPACES_ONLY","features":[472]},{"name":"ICU_ESCAPE","features":[472]},{"name":"ICU_ESCAPE_AUTHORITY","features":[472]},{"name":"ICU_NO_ENCODE","features":[472]},{"name":"ICU_NO_META","features":[472]},{"name":"ICU_REJECT_USERPWD","features":[472]},{"name":"INTERNET_DEFAULT_HTTPS_PORT","features":[472]},{"name":"INTERNET_DEFAULT_HTTP_PORT","features":[472]},{"name":"INTERNET_DEFAULT_PORT","features":[472]},{"name":"IWinHttpRequest","features":[472,354]},{"name":"IWinHttpRequestEvents","features":[472]},{"name":"NETWORKING_KEY_BUFSIZE","features":[472]},{"name":"SECURITY_FLAG_IGNORE_CERT_CN_INVALID","features":[472]},{"name":"SECURITY_FLAG_IGNORE_CERT_DATE_INVALID","features":[472]},{"name":"SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE","features":[472]},{"name":"SECURITY_FLAG_IGNORE_UNKNOWN_CA","features":[472]},{"name":"SECURITY_FLAG_SECURE","features":[472]},{"name":"SECURITY_FLAG_STRENGTH_MEDIUM","features":[472]},{"name":"SECURITY_FLAG_STRENGTH_STRONG","features":[472]},{"name":"SECURITY_FLAG_STRENGTH_WEAK","features":[472]},{"name":"SecureProtocol_ALL","features":[472]},{"name":"SecureProtocol_SSL2","features":[472]},{"name":"SecureProtocol_SSL3","features":[472]},{"name":"SecureProtocol_TLS1","features":[472]},{"name":"SecureProtocol_TLS1_1","features":[472]},{"name":"SecureProtocol_TLS1_2","features":[472]},{"name":"SslErrorFlag_CertCNInvalid","features":[472]},{"name":"SslErrorFlag_CertDateInvalid","features":[472]},{"name":"SslErrorFlag_CertWrongUsage","features":[472]},{"name":"SslErrorFlag_Ignore_All","features":[472]},{"name":"SslErrorFlag_UnknownCA","features":[472]},{"name":"URL_COMPONENTS","features":[472]},{"name":"WINHTTP_ACCESS_TYPE","features":[472]},{"name":"WINHTTP_ACCESS_TYPE_AUTOMATIC_PROXY","features":[472]},{"name":"WINHTTP_ACCESS_TYPE_DEFAULT_PROXY","features":[472]},{"name":"WINHTTP_ACCESS_TYPE_NAMED_PROXY","features":[472]},{"name":"WINHTTP_ACCESS_TYPE_NO_PROXY","features":[472]},{"name":"WINHTTP_ADDREQ_FLAGS_MASK","features":[472]},{"name":"WINHTTP_ADDREQ_FLAG_ADD","features":[472]},{"name":"WINHTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[472]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE","features":[472]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[472]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[472]},{"name":"WINHTTP_ADDREQ_FLAG_REPLACE","features":[472]},{"name":"WINHTTP_ADDREQ_INDEX_MASK","features":[472]},{"name":"WINHTTP_ASYNC_RESULT","features":[472]},{"name":"WINHTTP_AUTH_SCHEME_BASIC","features":[472]},{"name":"WINHTTP_AUTH_SCHEME_DIGEST","features":[472]},{"name":"WINHTTP_AUTH_SCHEME_NEGOTIATE","features":[472]},{"name":"WINHTTP_AUTH_SCHEME_NTLM","features":[472]},{"name":"WINHTTP_AUTH_SCHEME_PASSPORT","features":[472]},{"name":"WINHTTP_AUTH_TARGET_PROXY","features":[472]},{"name":"WINHTTP_AUTH_TARGET_SERVER","features":[472]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_DEFAULT","features":[472]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_HIGH","features":[472]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_LOW","features":[472]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MAX","features":[472]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MEDIUM","features":[472]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_PROXY_ONLY","features":[472]},{"name":"WINHTTP_AUTOPROXY_ALLOW_AUTOCONFIG","features":[472]},{"name":"WINHTTP_AUTOPROXY_ALLOW_CM","features":[472]},{"name":"WINHTTP_AUTOPROXY_ALLOW_STATIC","features":[472]},{"name":"WINHTTP_AUTOPROXY_AUTO_DETECT","features":[472]},{"name":"WINHTTP_AUTOPROXY_CONFIG_URL","features":[472]},{"name":"WINHTTP_AUTOPROXY_HOST_KEEPCASE","features":[472]},{"name":"WINHTTP_AUTOPROXY_HOST_LOWERCASE","features":[472]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_CLIENT","features":[472]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_SVC","features":[472]},{"name":"WINHTTP_AUTOPROXY_NO_DIRECTACCESS","features":[472]},{"name":"WINHTTP_AUTOPROXY_OPTIONS","features":[303,472]},{"name":"WINHTTP_AUTOPROXY_RUN_INPROCESS","features":[472]},{"name":"WINHTTP_AUTOPROXY_RUN_OUTPROCESS_ONLY","features":[472]},{"name":"WINHTTP_AUTOPROXY_SORT_RESULTS","features":[472]},{"name":"WINHTTP_AUTOPROXY_USE_INTERFACE_CONFIG","features":[472]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DHCP","features":[472]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DNS_A","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_DATA_AVAILABLE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_DETECTING_PROXY","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYFORURL_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYSETTINGS_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_HEADERS_AVAILABLE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_INTERMEDIATE_RESPONSE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_READ_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_REDIRECT","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_REQUEST_ERROR","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_SECURE_FAILURE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_SENDREQUEST_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_FLAG_WRITE_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSE_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSING_CONNECTION","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTION_CLOSED","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_DATA_AVAILABLE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_DETECTING_PROXY","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_DATE_INVALID","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REVOKED","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REV_FAILED","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_WRONG_USAGE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CA","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CERT","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_SECURITY_CHANNEL_ERROR","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYFORURL_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYSETTINGS_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CREATED","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_INTERMEDIATE_RESPONSE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_NAME_RESOLVED","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_READ_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_REDIRECT","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_ERROR","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_SENT","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_RESOLVING_NAME","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_SECURE_FAILURE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_SENDING_REQUEST","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_READ_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_WRITE_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_SHUTDOWN_COMPLETE","features":[472]},{"name":"WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE","features":[472]},{"name":"WINHTTP_CERTIFICATE_INFO","features":[303,472]},{"name":"WINHTTP_CONNECTION_GROUP","features":[472]},{"name":"WINHTTP_CONNECTION_INFO","features":[472,316]},{"name":"WINHTTP_CONNECTION_INFO","features":[472,316]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_408","features":[472]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_SSL_HANDSHAKE","features":[472]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_STALE_CONNECTION","features":[472]},{"name":"WINHTTP_CONNS_PER_SERVER_UNLIMITED","features":[472]},{"name":"WINHTTP_CREDS","features":[472]},{"name":"WINHTTP_CREDS_AUTHSCHEME","features":[472]},{"name":"WINHTTP_CREDS_EX","features":[472]},{"name":"WINHTTP_CURRENT_USER_IE_PROXY_CONFIG","features":[303,472]},{"name":"WINHTTP_DECOMPRESSION_FLAG_DEFLATE","features":[472]},{"name":"WINHTTP_DECOMPRESSION_FLAG_GZIP","features":[472]},{"name":"WINHTTP_DISABLE_AUTHENTICATION","features":[472]},{"name":"WINHTTP_DISABLE_COOKIES","features":[472]},{"name":"WINHTTP_DISABLE_KEEP_ALIVE","features":[472]},{"name":"WINHTTP_DISABLE_PASSPORT_AUTH","features":[472]},{"name":"WINHTTP_DISABLE_PASSPORT_KEYRING","features":[472]},{"name":"WINHTTP_DISABLE_REDIRECTS","features":[472]},{"name":"WINHTTP_DISABLE_SPN_SERVER_PORT","features":[472]},{"name":"WINHTTP_ENABLE_PASSPORT_AUTH","features":[472]},{"name":"WINHTTP_ENABLE_PASSPORT_KEYRING","features":[472]},{"name":"WINHTTP_ENABLE_SPN_SERVER_PORT","features":[472]},{"name":"WINHTTP_ENABLE_SSL_REVERT_IMPERSONATION","features":[472]},{"name":"WINHTTP_ENABLE_SSL_REVOCATION","features":[472]},{"name":"WINHTTP_ERROR_BASE","features":[472]},{"name":"WINHTTP_ERROR_LAST","features":[472]},{"name":"WINHTTP_EXTENDED_HEADER","features":[472]},{"name":"WINHTTP_EXTENDED_HEADER_FLAG_UNICODE","features":[472]},{"name":"WINHTTP_FAILED_CONNECTION_RETRIES","features":[472]},{"name":"WINHTTP_FEATURE_ADD_REQUEST_HEADERS_EX","features":[472]},{"name":"WINHTTP_FEATURE_BACKGROUND_CONNECTIONS","features":[472]},{"name":"WINHTTP_FEATURE_CONNECTION_GUID","features":[472]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V0","features":[472]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V1","features":[472]},{"name":"WINHTTP_FEATURE_DISABLE_CERT_CHAIN_BUILDING","features":[472]},{"name":"WINHTTP_FEATURE_DISABLE_PROXY_AUTH_SCHEMES","features":[472]},{"name":"WINHTTP_FEATURE_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[472]},{"name":"WINHTTP_FEATURE_DISABLE_STREAM_QUEUE","features":[472]},{"name":"WINHTTP_FEATURE_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[472]},{"name":"WINHTTP_FEATURE_EXPIRE_CONNECTION","features":[472]},{"name":"WINHTTP_FEATURE_EXTENDED_HEADER_FLAG_UNICODE","features":[472]},{"name":"WINHTTP_FEATURE_FAILED_CONNECTION_RETRIES","features":[472]},{"name":"WINHTTP_FEATURE_FIRST_AVAILABLE_CONNECTION","features":[472]},{"name":"WINHTTP_FEATURE_FLAG_AUTOMATIC_CHUNKING","features":[472]},{"name":"WINHTTP_FEATURE_FLAG_SECURE_DEFAULTS","features":[472]},{"name":"WINHTTP_FEATURE_FREE_QUERY_CONNECTION_GROUP_RESULT","features":[472]},{"name":"WINHTTP_FEATURE_HTTP2_KEEPALIVE","features":[472]},{"name":"WINHTTP_FEATURE_HTTP2_PLUS_TRANSFER_ENCODING","features":[472]},{"name":"WINHTTP_FEATURE_HTTP2_RECEIVE_WINDOW","features":[472]},{"name":"WINHTTP_FEATURE_HTTP3_HANDSHAKE_TIMEOUT","features":[472]},{"name":"WINHTTP_FEATURE_HTTP3_INITIAL_RTT","features":[472]},{"name":"WINHTTP_FEATURE_HTTP3_KEEPALIVE","features":[472]},{"name":"WINHTTP_FEATURE_HTTP3_STREAM_ERROR_CODE","features":[472]},{"name":"WINHTTP_FEATURE_HTTP_PROTOCOL_REQUIRED","features":[472]},{"name":"WINHTTP_FEATURE_IGNORE_CERT_REVOCATION_OFFLINE","features":[472]},{"name":"WINHTTP_FEATURE_IPV6_FAST_FALLBACK","features":[472]},{"name":"WINHTTP_FEATURE_IS_FEATURE_SUPPORTED","features":[472]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID","features":[472]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[472]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP","features":[472]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP_FLAG_INSECURE","features":[472]},{"name":"WINHTTP_FEATURE_QUERY_EX_ALL_HEADERS","features":[472]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_TRAILERS","features":[472]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_WIRE_ENCODING","features":[472]},{"name":"WINHTTP_FEATURE_QUERY_HEADERS_EX","features":[472]},{"name":"WINHTTP_FEATURE_QUIC_STATS","features":[472]},{"name":"WINHTTP_FEATURE_READ_DATA_EX","features":[472]},{"name":"WINHTTP_FEATURE_READ_DATA_EX_FLAG_FILL_BUFFER","features":[472]},{"name":"WINHTTP_FEATURE_REFERER_TOKEN_BINDING_HOSTNAME","features":[472]},{"name":"WINHTTP_FEATURE_REQUEST_ANNOTATION","features":[472]},{"name":"WINHTTP_FEATURE_REQUEST_STATS","features":[472]},{"name":"WINHTTP_FEATURE_REQUEST_TIMES","features":[472]},{"name":"WINHTTP_FEATURE_REQUIRE_STREAM_END","features":[472]},{"name":"WINHTTP_FEATURE_RESOLUTION_HOSTNAME","features":[472]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG","features":[472]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[472]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[472]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[472]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[472]},{"name":"WINHTTP_FEATURE_REVERT_IMPERSONATION_SERVER_CERT","features":[472]},{"name":"WINHTTP_FEATURE_SECURITY_FLAG_IGNORE_ALL_CERT_ERRORS","features":[472]},{"name":"WINHTTP_FEATURE_SECURITY_INFO","features":[472]},{"name":"WINHTTP_FEATURE_SERVER_CERT_CHAIN_CONTEXT","features":[472]},{"name":"WINHTTP_FEATURE_SET_PROXY_SETINGS_PER_USER","features":[472]},{"name":"WINHTTP_FEATURE_SET_TOKEN_BINDING","features":[472]},{"name":"WINHTTP_FEATURE_STREAM_ERROR_CODE","features":[472]},{"name":"WINHTTP_FEATURE_TCP_FAST_OPEN","features":[472]},{"name":"WINHTTP_FEATURE_TCP_KEEPALIVE","features":[472]},{"name":"WINHTTP_FEATURE_TCP_PRIORITY_STATUS","features":[472]},{"name":"WINHTTP_FEATURE_TLS_FALSE_START","features":[472]},{"name":"WINHTTP_FEATURE_TLS_PROTOCOL_INSECURE_FALLBACK","features":[472]},{"name":"WINHTTP_FEATURE_TOKEN_BINDING_PUBLIC_KEY","features":[472]},{"name":"WINHTTP_FLAG_ASYNC","features":[472]},{"name":"WINHTTP_FLAG_AUTOMATIC_CHUNKING","features":[472]},{"name":"WINHTTP_FLAG_BYPASS_PROXY_CACHE","features":[472]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE","features":[472]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE_QUERY","features":[472]},{"name":"WINHTTP_FLAG_ESCAPE_PERCENT","features":[472]},{"name":"WINHTTP_FLAG_NULL_CODEPAGE","features":[472]},{"name":"WINHTTP_FLAG_REFRESH","features":[472]},{"name":"WINHTTP_FLAG_SECURE","features":[472]},{"name":"WINHTTP_FLAG_SECURE_DEFAULTS","features":[472]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL2","features":[472]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL3","features":[472]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1","features":[472]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1","features":[472]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2","features":[472]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3","features":[472]},{"name":"WINHTTP_HANDLE_TYPE_CONNECT","features":[472]},{"name":"WINHTTP_HANDLE_TYPE_PROXY_RESOLVER","features":[472]},{"name":"WINHTTP_HANDLE_TYPE_REQUEST","features":[472]},{"name":"WINHTTP_HANDLE_TYPE_SESSION","features":[472]},{"name":"WINHTTP_HANDLE_TYPE_WEBSOCKET","features":[472]},{"name":"WINHTTP_HEADER_NAME","features":[472]},{"name":"WINHTTP_HOST_CONNECTION_GROUP","features":[472]},{"name":"WINHTTP_HTTP2_RECEIVE_WINDOW","features":[472]},{"name":"WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH","features":[472]},{"name":"WINHTTP_INTERNET_SCHEME","features":[472]},{"name":"WINHTTP_INTERNET_SCHEME_FTP","features":[472]},{"name":"WINHTTP_INTERNET_SCHEME_HTTP","features":[472]},{"name":"WINHTTP_INTERNET_SCHEME_HTTPS","features":[472]},{"name":"WINHTTP_INTERNET_SCHEME_SOCKS","features":[472]},{"name":"WINHTTP_LAST_OPTION","features":[472]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[472]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[472]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAGS_MASK","features":[472]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[472]},{"name":"WINHTTP_OPEN_REQUEST_FLAGS","features":[472]},{"name":"WINHTTP_OPTION_ASSURED_NON_BLOCKING_CALLBACKS","features":[472]},{"name":"WINHTTP_OPTION_AUTOLOGON_POLICY","features":[472]},{"name":"WINHTTP_OPTION_BACKGROUND_CONNECTIONS","features":[472]},{"name":"WINHTTP_OPTION_CALLBACK","features":[472]},{"name":"WINHTTP_OPTION_CLIENT_CERT_CONTEXT","features":[472]},{"name":"WINHTTP_OPTION_CLIENT_CERT_ISSUER_LIST","features":[472]},{"name":"WINHTTP_OPTION_CODEPAGE","features":[472]},{"name":"WINHTTP_OPTION_CONFIGURE_PASSPORT_AUTH","features":[472]},{"name":"WINHTTP_OPTION_CONNECTION_FILTER","features":[472]},{"name":"WINHTTP_OPTION_CONNECTION_GUID","features":[472]},{"name":"WINHTTP_OPTION_CONNECTION_INFO","features":[472]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V0","features":[472]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V1","features":[472]},{"name":"WINHTTP_OPTION_CONNECT_RETRIES","features":[472]},{"name":"WINHTTP_OPTION_CONNECT_TIMEOUT","features":[472]},{"name":"WINHTTP_OPTION_CONTEXT_VALUE","features":[472]},{"name":"WINHTTP_OPTION_DECOMPRESSION","features":[472]},{"name":"WINHTTP_OPTION_DISABLE_CERT_CHAIN_BUILDING","features":[472]},{"name":"WINHTTP_OPTION_DISABLE_FEATURE","features":[472]},{"name":"WINHTTP_OPTION_DISABLE_GLOBAL_POOLING","features":[472]},{"name":"WINHTTP_OPTION_DISABLE_PROXY_AUTH_SCHEMES","features":[472]},{"name":"WINHTTP_OPTION_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[472]},{"name":"WINHTTP_OPTION_DISABLE_STREAM_QUEUE","features":[472]},{"name":"WINHTTP_OPTION_ENABLETRACING","features":[472]},{"name":"WINHTTP_OPTION_ENABLE_FEATURE","features":[472]},{"name":"WINHTTP_OPTION_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[472]},{"name":"WINHTTP_OPTION_ENABLE_HTTP_PROTOCOL","features":[472]},{"name":"WINHTTP_OPTION_ENCODE_EXTRA","features":[472]},{"name":"WINHTTP_OPTION_EXPIRE_CONNECTION","features":[472]},{"name":"WINHTTP_OPTION_EXTENDED_ERROR","features":[472]},{"name":"WINHTTP_OPTION_FAILED_CONNECTION_RETRIES","features":[472]},{"name":"WINHTTP_OPTION_FEATURE_SUPPORTED","features":[472]},{"name":"WINHTTP_OPTION_FIRST_AVAILABLE_CONNECTION","features":[472]},{"name":"WINHTTP_OPTION_GLOBAL_PROXY_CREDS","features":[472]},{"name":"WINHTTP_OPTION_GLOBAL_SERVER_CREDS","features":[472]},{"name":"WINHTTP_OPTION_HANDLE_TYPE","features":[472]},{"name":"WINHTTP_OPTION_HTTP2_KEEPALIVE","features":[472]},{"name":"WINHTTP_OPTION_HTTP2_PLUS_TRANSFER_ENCODING","features":[472]},{"name":"WINHTTP_OPTION_HTTP2_RECEIVE_WINDOW","features":[472]},{"name":"WINHTTP_OPTION_HTTP3_HANDSHAKE_TIMEOUT","features":[472]},{"name":"WINHTTP_OPTION_HTTP3_INITIAL_RTT","features":[472]},{"name":"WINHTTP_OPTION_HTTP3_KEEPALIVE","features":[472]},{"name":"WINHTTP_OPTION_HTTP3_STREAM_ERROR_CODE","features":[472]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_REQUIRED","features":[472]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_USED","features":[472]},{"name":"WINHTTP_OPTION_HTTP_VERSION","features":[472]},{"name":"WINHTTP_OPTION_IGNORE_CERT_REVOCATION_OFFLINE","features":[472]},{"name":"WINHTTP_OPTION_IPV6_FAST_FALLBACK","features":[472]},{"name":"WINHTTP_OPTION_IS_PROXY_CONNECT_RESPONSE","features":[472]},{"name":"WINHTTP_OPTION_KDC_PROXY_SETTINGS","features":[472]},{"name":"WINHTTP_OPTION_MATCH_CONNECTION_GUID","features":[472]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[472]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_SERVER","features":[472]},{"name":"WINHTTP_OPTION_MAX_HTTP_AUTOMATIC_REDIRECTS","features":[472]},{"name":"WINHTTP_OPTION_MAX_HTTP_STATUS_CONTINUE","features":[472]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_DRAIN_SIZE","features":[472]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_HEADER_SIZE","features":[472]},{"name":"WINHTTP_OPTION_NETWORK_INTERFACE_AFFINITY","features":[472]},{"name":"WINHTTP_OPTION_PARENT_HANDLE","features":[472]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_TEXT","features":[472]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_URL","features":[472]},{"name":"WINHTTP_OPTION_PASSPORT_RETURN_URL","features":[472]},{"name":"WINHTTP_OPTION_PASSPORT_SIGN_OUT","features":[472]},{"name":"WINHTTP_OPTION_PASSWORD","features":[472]},{"name":"WINHTTP_OPTION_PROXY","features":[472]},{"name":"WINHTTP_OPTION_PROXY_DISABLE_SERVICE_CALLS","features":[472]},{"name":"WINHTTP_OPTION_PROXY_PASSWORD","features":[472]},{"name":"WINHTTP_OPTION_PROXY_RESULT_ENTRY","features":[472]},{"name":"WINHTTP_OPTION_PROXY_SPN_USED","features":[472]},{"name":"WINHTTP_OPTION_PROXY_USERNAME","features":[472]},{"name":"WINHTTP_OPTION_QUIC_STATS","features":[472]},{"name":"WINHTTP_OPTION_READ_BUFFER_SIZE","features":[472]},{"name":"WINHTTP_OPTION_RECEIVE_PROXY_CONNECT_RESPONSE","features":[472]},{"name":"WINHTTP_OPTION_RECEIVE_RESPONSE_TIMEOUT","features":[472]},{"name":"WINHTTP_OPTION_RECEIVE_TIMEOUT","features":[472]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY","features":[472]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_ALWAYS","features":[472]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DEFAULT","features":[472]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DISALLOW_HTTPS_TO_HTTP","features":[472]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_LAST","features":[472]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_NEVER","features":[472]},{"name":"WINHTTP_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[472]},{"name":"WINHTTP_OPTION_REJECT_USERPWD_IN_URL","features":[472]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION","features":[472]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[472]},{"name":"WINHTTP_OPTION_REQUEST_PRIORITY","features":[472]},{"name":"WINHTTP_OPTION_REQUEST_STATS","features":[472]},{"name":"WINHTTP_OPTION_REQUEST_TIMES","features":[472]},{"name":"WINHTTP_OPTION_REQUIRE_STREAM_END","features":[472]},{"name":"WINHTTP_OPTION_RESOLUTION_HOSTNAME","features":[472]},{"name":"WINHTTP_OPTION_RESOLVER_CACHE_CONFIG","features":[472]},{"name":"WINHTTP_OPTION_RESOLVE_TIMEOUT","features":[472]},{"name":"WINHTTP_OPTION_REVERT_IMPERSONATION_SERVER_CERT","features":[472]},{"name":"WINHTTP_OPTION_SECURE_PROTOCOLS","features":[472]},{"name":"WINHTTP_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[472]},{"name":"WINHTTP_OPTION_SECURITY_FLAGS","features":[472]},{"name":"WINHTTP_OPTION_SECURITY_INFO","features":[472]},{"name":"WINHTTP_OPTION_SECURITY_KEY_BITNESS","features":[472]},{"name":"WINHTTP_OPTION_SEND_TIMEOUT","features":[472]},{"name":"WINHTTP_OPTION_SERVER_CBT","features":[472]},{"name":"WINHTTP_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[472]},{"name":"WINHTTP_OPTION_SERVER_CERT_CONTEXT","features":[472]},{"name":"WINHTTP_OPTION_SERVER_SPN_USED","features":[472]},{"name":"WINHTTP_OPTION_SET_TOKEN_BINDING","features":[472]},{"name":"WINHTTP_OPTION_SPN","features":[472]},{"name":"WINHTTP_OPTION_SPN_MASK","features":[472]},{"name":"WINHTTP_OPTION_STREAM_ERROR_CODE","features":[472]},{"name":"WINHTTP_OPTION_TCP_FAST_OPEN","features":[472]},{"name":"WINHTTP_OPTION_TCP_KEEPALIVE","features":[472]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_HINT","features":[472]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_STATUS","features":[472]},{"name":"WINHTTP_OPTION_TLS_FALSE_START","features":[472]},{"name":"WINHTTP_OPTION_TLS_PROTOCOL_INSECURE_FALLBACK","features":[472]},{"name":"WINHTTP_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[472]},{"name":"WINHTTP_OPTION_UNLOAD_NOTIFY_EVENT","features":[472]},{"name":"WINHTTP_OPTION_UNSAFE_HEADER_PARSING","features":[472]},{"name":"WINHTTP_OPTION_UPGRADE_TO_WEB_SOCKET","features":[472]},{"name":"WINHTTP_OPTION_URL","features":[472]},{"name":"WINHTTP_OPTION_USERNAME","features":[472]},{"name":"WINHTTP_OPTION_USER_AGENT","features":[472]},{"name":"WINHTTP_OPTION_USE_GLOBAL_SERVER_CREDENTIALS","features":[472]},{"name":"WINHTTP_OPTION_USE_SESSION_SCH_CRED","features":[472]},{"name":"WINHTTP_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[472]},{"name":"WINHTTP_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[472]},{"name":"WINHTTP_OPTION_WEB_SOCKET_RECEIVE_BUFFER_SIZE","features":[472]},{"name":"WINHTTP_OPTION_WEB_SOCKET_SEND_BUFFER_SIZE","features":[472]},{"name":"WINHTTP_OPTION_WORKER_THREAD_COUNT","features":[472]},{"name":"WINHTTP_OPTION_WRITE_BUFFER_SIZE","features":[472]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP2","features":[472]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP3","features":[472]},{"name":"WINHTTP_PROXY_CHANGE_CALLBACK","features":[472]},{"name":"WINHTTP_PROXY_DISABLE_AUTH_LOCAL_SERVICE","features":[472]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_BASIC","features":[472]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_DIGEST","features":[472]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_KERBEROS","features":[472]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NEGOTIATE","features":[472]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NTLM","features":[472]},{"name":"WINHTTP_PROXY_INFO","features":[472]},{"name":"WINHTTP_PROXY_NETWORKING_KEY","features":[472]},{"name":"WINHTTP_PROXY_NOTIFY_CHANGE","features":[472]},{"name":"WINHTTP_PROXY_RESULT","features":[303,472]},{"name":"WINHTTP_PROXY_RESULT_ENTRY","features":[303,472]},{"name":"WINHTTP_PROXY_RESULT_EX","features":[303,472]},{"name":"WINHTTP_PROXY_SETTINGS","features":[303,472]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[472]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[472]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[472]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[472]},{"name":"WINHTTP_PROXY_SETTINGS_TYPE","features":[472]},{"name":"WINHTTP_PROXY_TYPE_AUTO_DETECT","features":[472]},{"name":"WINHTTP_PROXY_TYPE_AUTO_PROXY_URL","features":[472]},{"name":"WINHTTP_PROXY_TYPE_DIRECT","features":[472]},{"name":"WINHTTP_PROXY_TYPE_PROXY","features":[472]},{"name":"WINHTTP_QUERY_ACCEPT","features":[472]},{"name":"WINHTTP_QUERY_ACCEPT_CHARSET","features":[472]},{"name":"WINHTTP_QUERY_ACCEPT_ENCODING","features":[472]},{"name":"WINHTTP_QUERY_ACCEPT_LANGUAGE","features":[472]},{"name":"WINHTTP_QUERY_ACCEPT_RANGES","features":[472]},{"name":"WINHTTP_QUERY_AGE","features":[472]},{"name":"WINHTTP_QUERY_ALLOW","features":[472]},{"name":"WINHTTP_QUERY_AUTHENTICATION_INFO","features":[472]},{"name":"WINHTTP_QUERY_AUTHORIZATION","features":[472]},{"name":"WINHTTP_QUERY_CACHE_CONTROL","features":[472]},{"name":"WINHTTP_QUERY_CONNECTION","features":[472]},{"name":"WINHTTP_QUERY_CONNECTION_GROUP_RESULT","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_BASE","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_DESCRIPTION","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_DISPOSITION","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_ENCODING","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_ID","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_LANGUAGE","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_LENGTH","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_LOCATION","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_MD5","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_RANGE","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[472]},{"name":"WINHTTP_QUERY_CONTENT_TYPE","features":[472]},{"name":"WINHTTP_QUERY_COOKIE","features":[472]},{"name":"WINHTTP_QUERY_COST","features":[472]},{"name":"WINHTTP_QUERY_CUSTOM","features":[472]},{"name":"WINHTTP_QUERY_DATE","features":[472]},{"name":"WINHTTP_QUERY_DERIVED_FROM","features":[472]},{"name":"WINHTTP_QUERY_ETAG","features":[472]},{"name":"WINHTTP_QUERY_EXPECT","features":[472]},{"name":"WINHTTP_QUERY_EXPIRES","features":[472]},{"name":"WINHTTP_QUERY_EX_ALL_HEADERS","features":[472]},{"name":"WINHTTP_QUERY_FLAG_NUMBER","features":[472]},{"name":"WINHTTP_QUERY_FLAG_NUMBER64","features":[472]},{"name":"WINHTTP_QUERY_FLAG_REQUEST_HEADERS","features":[472]},{"name":"WINHTTP_QUERY_FLAG_SYSTEMTIME","features":[472]},{"name":"WINHTTP_QUERY_FLAG_TRAILERS","features":[472]},{"name":"WINHTTP_QUERY_FLAG_WIRE_ENCODING","features":[472]},{"name":"WINHTTP_QUERY_FORWARDED","features":[472]},{"name":"WINHTTP_QUERY_FROM","features":[472]},{"name":"WINHTTP_QUERY_HOST","features":[472]},{"name":"WINHTTP_QUERY_IF_MATCH","features":[472]},{"name":"WINHTTP_QUERY_IF_MODIFIED_SINCE","features":[472]},{"name":"WINHTTP_QUERY_IF_NONE_MATCH","features":[472]},{"name":"WINHTTP_QUERY_IF_RANGE","features":[472]},{"name":"WINHTTP_QUERY_IF_UNMODIFIED_SINCE","features":[472]},{"name":"WINHTTP_QUERY_LAST_MODIFIED","features":[472]},{"name":"WINHTTP_QUERY_LINK","features":[472]},{"name":"WINHTTP_QUERY_LOCATION","features":[472]},{"name":"WINHTTP_QUERY_MAX","features":[472]},{"name":"WINHTTP_QUERY_MAX_FORWARDS","features":[472]},{"name":"WINHTTP_QUERY_MESSAGE_ID","features":[472]},{"name":"WINHTTP_QUERY_MIME_VERSION","features":[472]},{"name":"WINHTTP_QUERY_ORIG_URI","features":[472]},{"name":"WINHTTP_QUERY_PASSPORT_CONFIG","features":[472]},{"name":"WINHTTP_QUERY_PASSPORT_URLS","features":[472]},{"name":"WINHTTP_QUERY_PRAGMA","features":[472]},{"name":"WINHTTP_QUERY_PROXY_AUTHENTICATE","features":[472]},{"name":"WINHTTP_QUERY_PROXY_AUTHORIZATION","features":[472]},{"name":"WINHTTP_QUERY_PROXY_CONNECTION","features":[472]},{"name":"WINHTTP_QUERY_PROXY_SUPPORT","features":[472]},{"name":"WINHTTP_QUERY_PUBLIC","features":[472]},{"name":"WINHTTP_QUERY_RANGE","features":[472]},{"name":"WINHTTP_QUERY_RAW_HEADERS","features":[472]},{"name":"WINHTTP_QUERY_RAW_HEADERS_CRLF","features":[472]},{"name":"WINHTTP_QUERY_REFERER","features":[472]},{"name":"WINHTTP_QUERY_REFRESH","features":[472]},{"name":"WINHTTP_QUERY_REQUEST_METHOD","features":[472]},{"name":"WINHTTP_QUERY_RETRY_AFTER","features":[472]},{"name":"WINHTTP_QUERY_SERVER","features":[472]},{"name":"WINHTTP_QUERY_SET_COOKIE","features":[472]},{"name":"WINHTTP_QUERY_STATUS_CODE","features":[472]},{"name":"WINHTTP_QUERY_STATUS_TEXT","features":[472]},{"name":"WINHTTP_QUERY_TITLE","features":[472]},{"name":"WINHTTP_QUERY_TRANSFER_ENCODING","features":[472]},{"name":"WINHTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[472]},{"name":"WINHTTP_QUERY_UPGRADE","features":[472]},{"name":"WINHTTP_QUERY_URI","features":[472]},{"name":"WINHTTP_QUERY_USER_AGENT","features":[472]},{"name":"WINHTTP_QUERY_VARY","features":[472]},{"name":"WINHTTP_QUERY_VERSION","features":[472]},{"name":"WINHTTP_QUERY_VIA","features":[472]},{"name":"WINHTTP_QUERY_WARNING","features":[472]},{"name":"WINHTTP_QUERY_WWW_AUTHENTICATE","features":[472]},{"name":"WINHTTP_REQUEST_STATS","features":[472]},{"name":"WINHTTP_REQUEST_STATS","features":[472]},{"name":"WINHTTP_REQUEST_STAT_ENTRY","features":[472]},{"name":"WINHTTP_REQUEST_STAT_FLAG_FIRST_REQUEST","features":[472]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_FALSE_START","features":[472]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_SESSION_RESUMPTION","features":[472]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TCP_FAST_OPEN","features":[472]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_FALSE_START","features":[472]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_SESSION_RESUMPTION","features":[472]},{"name":"WINHTTP_REQUEST_TIMES","features":[472]},{"name":"WINHTTP_REQUEST_TIMES","features":[472]},{"name":"WINHTTP_REQUEST_TIME_ENTRY","features":[472]},{"name":"WINHTTP_RESET_ALL","features":[472]},{"name":"WINHTTP_RESET_DISCARD_RESOLVERS","features":[472]},{"name":"WINHTTP_RESET_NOTIFY_NETWORK_CHANGED","features":[472]},{"name":"WINHTTP_RESET_OUT_OF_PROC","features":[472]},{"name":"WINHTTP_RESET_SCRIPT_CACHE","features":[472]},{"name":"WINHTTP_RESET_STATE","features":[472]},{"name":"WINHTTP_RESET_SWPAD_ALL","features":[472]},{"name":"WINHTTP_RESET_SWPAD_CURRENT_NETWORK","features":[472]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[472]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[472]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[472]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[472]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[472]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[472]},{"name":"WINHTTP_SECURE_DNS_SETTING","features":[472]},{"name":"WINHTTP_STATUS_CALLBACK","features":[472]},{"name":"WINHTTP_TIME_FORMAT_BUFSIZE","features":[472]},{"name":"WINHTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_ASYNC_RESULT","features":[472]},{"name":"WINHTTP_WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[472]},{"name":"WINHTTP_WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[472]},{"name":"WINHTTP_WEB_SOCKET_BUFFER_TYPE","features":[472]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[472]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_OPERATION","features":[472]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[472]},{"name":"WINHTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[472]},{"name":"WINHTTP_WEB_SOCKET_OPERATION","features":[472]},{"name":"WINHTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[472]},{"name":"WINHTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_SEND_OPERATION","features":[472]},{"name":"WINHTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[472]},{"name":"WINHTTP_WEB_SOCKET_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[472]},{"name":"WINHTTP_WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[472]},{"name":"WINHTTP_WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[472]},{"name":"WIN_HTTP_CREATE_URL_FLAGS","features":[472]},{"name":"WinHttpAddRequestHeaders","features":[303,472]},{"name":"WinHttpAddRequestHeadersEx","features":[472]},{"name":"WinHttpCheckPlatform","features":[303,472]},{"name":"WinHttpCloseHandle","features":[303,472]},{"name":"WinHttpConnect","features":[472]},{"name":"WinHttpConnectFailureCount","features":[472]},{"name":"WinHttpConnectionAcquireEnd","features":[472]},{"name":"WinHttpConnectionAcquireStart","features":[472]},{"name":"WinHttpConnectionAcquireWaitEnd","features":[472]},{"name":"WinHttpConnectionEstablishmentEnd","features":[472]},{"name":"WinHttpConnectionEstablishmentStart","features":[472]},{"name":"WinHttpCrackUrl","features":[303,472]},{"name":"WinHttpCreateProxyResolver","features":[472]},{"name":"WinHttpCreateUrl","features":[303,472]},{"name":"WinHttpDetectAutoProxyConfigUrl","features":[303,472]},{"name":"WinHttpFreeProxyResult","features":[303,472]},{"name":"WinHttpFreeProxyResultEx","features":[303,472]},{"name":"WinHttpFreeProxySettings","features":[303,472]},{"name":"WinHttpFreeProxySettingsEx","features":[472]},{"name":"WinHttpFreeQueryConnectionGroupResult","features":[472]},{"name":"WinHttpGetDefaultProxyConfiguration","features":[303,472]},{"name":"WinHttpGetIEProxyConfigForCurrentUser","features":[303,472]},{"name":"WinHttpGetProxyForUrl","features":[303,472]},{"name":"WinHttpGetProxyForUrlEx","features":[303,472]},{"name":"WinHttpGetProxyForUrlEx2","features":[303,472]},{"name":"WinHttpGetProxyResult","features":[303,472]},{"name":"WinHttpGetProxyResultEx","features":[303,472]},{"name":"WinHttpGetProxySettingsEx","features":[472]},{"name":"WinHttpGetProxySettingsResultEx","features":[472]},{"name":"WinHttpGetProxySettingsVersion","features":[472]},{"name":"WinHttpNameResolutionEnd","features":[472]},{"name":"WinHttpNameResolutionStart","features":[472]},{"name":"WinHttpOpen","features":[472]},{"name":"WinHttpOpenRequest","features":[472]},{"name":"WinHttpProxyDetectionEnd","features":[472]},{"name":"WinHttpProxyDetectionStart","features":[472]},{"name":"WinHttpProxyFailureCount","features":[472]},{"name":"WinHttpProxySettingsTypeUnknown","features":[472]},{"name":"WinHttpProxySettingsTypeWsa","features":[472]},{"name":"WinHttpProxySettingsTypeWsl","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg1End","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Size","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Start","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg2End","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Size","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Start","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg3End","features":[472]},{"name":"WinHttpProxyTlsHandshakeClientLeg3Start","features":[472]},{"name":"WinHttpProxyTlsHandshakeServerLeg1Size","features":[472]},{"name":"WinHttpProxyTlsHandshakeServerLeg2Size","features":[472]},{"name":"WinHttpProxyTunnelEnd","features":[472]},{"name":"WinHttpProxyTunnelStart","features":[472]},{"name":"WinHttpQueryAuthSchemes","features":[303,472]},{"name":"WinHttpQueryConnectionGroup","features":[472]},{"name":"WinHttpQueryDataAvailable","features":[303,472]},{"name":"WinHttpQueryHeaders","features":[303,472]},{"name":"WinHttpQueryHeadersEx","features":[472]},{"name":"WinHttpQueryOption","features":[303,472]},{"name":"WinHttpReadData","features":[303,472]},{"name":"WinHttpReadDataEx","features":[472]},{"name":"WinHttpReadProxySettings","features":[303,472]},{"name":"WinHttpReceiveResponse","features":[303,472]},{"name":"WinHttpReceiveResponseBodyDecompressionDelta","features":[472]},{"name":"WinHttpReceiveResponseEnd","features":[472]},{"name":"WinHttpReceiveResponseHeadersDecompressionEnd","features":[472]},{"name":"WinHttpReceiveResponseHeadersDecompressionStart","features":[472]},{"name":"WinHttpReceiveResponseHeadersEnd","features":[472]},{"name":"WinHttpReceiveResponseStart","features":[472]},{"name":"WinHttpRegisterProxyChangeNotification","features":[472]},{"name":"WinHttpRequest","features":[472]},{"name":"WinHttpRequestAutoLogonPolicy","features":[472]},{"name":"WinHttpRequestHeadersCompressedSize","features":[472]},{"name":"WinHttpRequestHeadersSize","features":[472]},{"name":"WinHttpRequestOption","features":[472]},{"name":"WinHttpRequestOption_EnableCertificateRevocationCheck","features":[472]},{"name":"WinHttpRequestOption_EnableHttp1_1","features":[472]},{"name":"WinHttpRequestOption_EnableHttpsToHttpRedirects","features":[472]},{"name":"WinHttpRequestOption_EnablePassportAuthentication","features":[472]},{"name":"WinHttpRequestOption_EnableRedirects","features":[472]},{"name":"WinHttpRequestOption_EnableTracing","features":[472]},{"name":"WinHttpRequestOption_EscapePercentInURL","features":[472]},{"name":"WinHttpRequestOption_MaxAutomaticRedirects","features":[472]},{"name":"WinHttpRequestOption_MaxResponseDrainSize","features":[472]},{"name":"WinHttpRequestOption_MaxResponseHeaderSize","features":[472]},{"name":"WinHttpRequestOption_RejectUserpwd","features":[472]},{"name":"WinHttpRequestOption_RevertImpersonationOverSsl","features":[472]},{"name":"WinHttpRequestOption_SecureProtocols","features":[472]},{"name":"WinHttpRequestOption_SelectCertificate","features":[472]},{"name":"WinHttpRequestOption_SslErrorIgnoreFlags","features":[472]},{"name":"WinHttpRequestOption_URL","features":[472]},{"name":"WinHttpRequestOption_URLCodePage","features":[472]},{"name":"WinHttpRequestOption_UrlEscapeDisable","features":[472]},{"name":"WinHttpRequestOption_UrlEscapeDisableQuery","features":[472]},{"name":"WinHttpRequestOption_UserAgentString","features":[472]},{"name":"WinHttpRequestSecureProtocols","features":[472]},{"name":"WinHttpRequestSslErrorFlags","features":[472]},{"name":"WinHttpRequestStatLast","features":[472]},{"name":"WinHttpRequestStatMax","features":[472]},{"name":"WinHttpRequestTimeLast","features":[472]},{"name":"WinHttpRequestTimeMax","features":[472]},{"name":"WinHttpResetAutoProxy","features":[472]},{"name":"WinHttpResponseBodyCompressedSize","features":[472]},{"name":"WinHttpResponseBodySize","features":[472]},{"name":"WinHttpResponseHeadersCompressedSize","features":[472]},{"name":"WinHttpResponseHeadersSize","features":[472]},{"name":"WinHttpSecureDnsSettingDefault","features":[472]},{"name":"WinHttpSecureDnsSettingForcePlaintext","features":[472]},{"name":"WinHttpSecureDnsSettingMax","features":[472]},{"name":"WinHttpSecureDnsSettingRequireEncryption","features":[472]},{"name":"WinHttpSecureDnsSettingTryEncryptionWithFallback","features":[472]},{"name":"WinHttpSendRequest","features":[303,472]},{"name":"WinHttpSendRequestEnd","features":[472]},{"name":"WinHttpSendRequestHeadersCompressionEnd","features":[472]},{"name":"WinHttpSendRequestHeadersCompressionStart","features":[472]},{"name":"WinHttpSendRequestHeadersEnd","features":[472]},{"name":"WinHttpSendRequestStart","features":[472]},{"name":"WinHttpSetCredentials","features":[303,472]},{"name":"WinHttpSetDefaultProxyConfiguration","features":[303,472]},{"name":"WinHttpSetOption","features":[303,472]},{"name":"WinHttpSetProxySettingsPerUser","features":[303,472]},{"name":"WinHttpSetStatusCallback","features":[472]},{"name":"WinHttpSetTimeouts","features":[303,472]},{"name":"WinHttpStreamWaitEnd","features":[472]},{"name":"WinHttpStreamWaitStart","features":[472]},{"name":"WinHttpTimeFromSystemTime","features":[303,472]},{"name":"WinHttpTimeToSystemTime","features":[303,472]},{"name":"WinHttpTlsHandshakeClientLeg1End","features":[472]},{"name":"WinHttpTlsHandshakeClientLeg1Size","features":[472]},{"name":"WinHttpTlsHandshakeClientLeg1Start","features":[472]},{"name":"WinHttpTlsHandshakeClientLeg2End","features":[472]},{"name":"WinHttpTlsHandshakeClientLeg2Size","features":[472]},{"name":"WinHttpTlsHandshakeClientLeg2Start","features":[472]},{"name":"WinHttpTlsHandshakeClientLeg3End","features":[472]},{"name":"WinHttpTlsHandshakeClientLeg3Start","features":[472]},{"name":"WinHttpTlsHandshakeServerLeg1Size","features":[472]},{"name":"WinHttpTlsHandshakeServerLeg2Size","features":[472]},{"name":"WinHttpUnregisterProxyChangeNotification","features":[472]},{"name":"WinHttpWebSocketClose","features":[472]},{"name":"WinHttpWebSocketCompleteUpgrade","features":[472]},{"name":"WinHttpWebSocketQueryCloseStatus","features":[472]},{"name":"WinHttpWebSocketReceive","features":[472]},{"name":"WinHttpWebSocketSend","features":[472]},{"name":"WinHttpWebSocketShutdown","features":[472]},{"name":"WinHttpWriteData","features":[303,472]},{"name":"WinHttpWriteProxySettings","features":[303,472]}],"476":[{"name":"ANY_CACHE_ENTRY","features":[473]},{"name":"APP_CACHE_DOWNLOAD_ENTRY","features":[473]},{"name":"APP_CACHE_DOWNLOAD_LIST","features":[473]},{"name":"APP_CACHE_ENTRY_TYPE_EXPLICIT","features":[473]},{"name":"APP_CACHE_ENTRY_TYPE_FALLBACK","features":[473]},{"name":"APP_CACHE_ENTRY_TYPE_FOREIGN","features":[473]},{"name":"APP_CACHE_ENTRY_TYPE_MANIFEST","features":[473]},{"name":"APP_CACHE_ENTRY_TYPE_MASTER","features":[473]},{"name":"APP_CACHE_FINALIZE_STATE","features":[473]},{"name":"APP_CACHE_GROUP_INFO","features":[303,473]},{"name":"APP_CACHE_GROUP_LIST","features":[303,473]},{"name":"APP_CACHE_LOOKUP_NO_MASTER_ONLY","features":[473]},{"name":"APP_CACHE_STATE","features":[473]},{"name":"AUTH_FLAG_DISABLE_BASIC_CLEARCHANNEL","features":[473]},{"name":"AUTH_FLAG_DISABLE_NEGOTIATE","features":[473]},{"name":"AUTH_FLAG_DISABLE_SERVER_AUTH","features":[473]},{"name":"AUTH_FLAG_ENABLE_NEGOTIATE","features":[473]},{"name":"AUTH_FLAG_RESET","features":[473]},{"name":"AUTODIAL_MODE_ALWAYS","features":[473]},{"name":"AUTODIAL_MODE_NEVER","features":[473]},{"name":"AUTODIAL_MODE_NO_NETWORK_PRESENT","features":[473]},{"name":"AUTO_PROXY_FLAG_ALWAYS_DETECT","features":[473]},{"name":"AUTO_PROXY_FLAG_CACHE_INIT_RUN","features":[473]},{"name":"AUTO_PROXY_FLAG_DETECTION_RUN","features":[473]},{"name":"AUTO_PROXY_FLAG_DETECTION_SUSPECT","features":[473]},{"name":"AUTO_PROXY_FLAG_DONT_CACHE_PROXY_RESULT","features":[473]},{"name":"AUTO_PROXY_FLAG_MIGRATED","features":[473]},{"name":"AUTO_PROXY_FLAG_USER_SET","features":[473]},{"name":"AUTO_PROXY_SCRIPT_BUFFER","features":[473]},{"name":"AppCacheCheckManifest","features":[473]},{"name":"AppCacheCloseHandle","features":[473]},{"name":"AppCacheCreateAndCommitFile","features":[473]},{"name":"AppCacheDeleteGroup","features":[473]},{"name":"AppCacheDeleteIEGroup","features":[473]},{"name":"AppCacheDuplicateHandle","features":[473]},{"name":"AppCacheFinalize","features":[473]},{"name":"AppCacheFinalizeStateComplete","features":[473]},{"name":"AppCacheFinalizeStateIncomplete","features":[473]},{"name":"AppCacheFinalizeStateManifestChange","features":[473]},{"name":"AppCacheFreeDownloadList","features":[473]},{"name":"AppCacheFreeGroupList","features":[303,473]},{"name":"AppCacheFreeIESpace","features":[303,473]},{"name":"AppCacheFreeSpace","features":[303,473]},{"name":"AppCacheGetDownloadList","features":[473]},{"name":"AppCacheGetFallbackUrl","features":[473]},{"name":"AppCacheGetGroupList","features":[303,473]},{"name":"AppCacheGetIEGroupList","features":[303,473]},{"name":"AppCacheGetInfo","features":[303,473]},{"name":"AppCacheGetManifestUrl","features":[473]},{"name":"AppCacheLookup","features":[473]},{"name":"AppCacheStateNoUpdateNeeded","features":[473]},{"name":"AppCacheStateUpdateNeeded","features":[473]},{"name":"AppCacheStateUpdateNeededMasterOnly","features":[473]},{"name":"AppCacheStateUpdateNeededNew","features":[473]},{"name":"AutoProxyHelperFunctions","features":[473]},{"name":"AutoProxyHelperVtbl","features":[473]},{"name":"CACHEGROUP_ATTRIBUTE_BASIC","features":[473]},{"name":"CACHEGROUP_ATTRIBUTE_FLAG","features":[473]},{"name":"CACHEGROUP_ATTRIBUTE_GET_ALL","features":[473]},{"name":"CACHEGROUP_ATTRIBUTE_GROUPNAME","features":[473]},{"name":"CACHEGROUP_ATTRIBUTE_QUOTA","features":[473]},{"name":"CACHEGROUP_ATTRIBUTE_STORAGE","features":[473]},{"name":"CACHEGROUP_ATTRIBUTE_TYPE","features":[473]},{"name":"CACHEGROUP_FLAG_FLUSHURL_ONDELETE","features":[473]},{"name":"CACHEGROUP_FLAG_GIDONLY","features":[473]},{"name":"CACHEGROUP_FLAG_NONPURGEABLE","features":[473]},{"name":"CACHEGROUP_FLAG_VALID","features":[473]},{"name":"CACHEGROUP_ID_BUILTIN_STICKY","features":[473]},{"name":"CACHEGROUP_SEARCH_ALL","features":[473]},{"name":"CACHEGROUP_SEARCH_BYURL","features":[473]},{"name":"CACHEGROUP_TYPE_INVALID","features":[473]},{"name":"CACHE_CONFIG","features":[473]},{"name":"CACHE_CONFIG_APPCONTAINER_CONTENT_QUOTA_FC","features":[473]},{"name":"CACHE_CONFIG_APPCONTAINER_TOTAL_CONTENT_QUOTA_FC","features":[473]},{"name":"CACHE_CONFIG_CONTENT_PATHS_FC","features":[473]},{"name":"CACHE_CONFIG_CONTENT_QUOTA_FC","features":[473]},{"name":"CACHE_CONFIG_CONTENT_USAGE_FC","features":[473]},{"name":"CACHE_CONFIG_COOKIES_PATHS_FC","features":[473]},{"name":"CACHE_CONFIG_DISK_CACHE_PATHS_FC","features":[473]},{"name":"CACHE_CONFIG_FORCE_CLEANUP_FC","features":[473]},{"name":"CACHE_CONFIG_HISTORY_PATHS_FC","features":[473]},{"name":"CACHE_CONFIG_QUOTA_FC","features":[473]},{"name":"CACHE_CONFIG_STICKY_CONTENT_USAGE_FC","features":[473]},{"name":"CACHE_CONFIG_SYNC_MODE_FC","features":[473]},{"name":"CACHE_CONFIG_TOTAL_CONTENT_QUOTA_FC","features":[473]},{"name":"CACHE_CONFIG_USER_MODE_FC","features":[473]},{"name":"CACHE_ENTRY_ACCTIME_FC","features":[473]},{"name":"CACHE_ENTRY_ATTRIBUTE_FC","features":[473]},{"name":"CACHE_ENTRY_EXEMPT_DELTA_FC","features":[473]},{"name":"CACHE_ENTRY_EXPTIME_FC","features":[473]},{"name":"CACHE_ENTRY_HEADERINFO_FC","features":[473]},{"name":"CACHE_ENTRY_HITRATE_FC","features":[473]},{"name":"CACHE_ENTRY_MODIFY_DATA_FC","features":[473]},{"name":"CACHE_ENTRY_MODTIME_FC","features":[473]},{"name":"CACHE_ENTRY_SYNCTIME_FC","features":[473]},{"name":"CACHE_ENTRY_TYPE_FC","features":[473]},{"name":"CACHE_FIND_CONTAINER_RETURN_NOCHANGE","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_READ_COUNT_SINCE_LAST_SCAVENGE","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_12","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_13","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_15","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_16","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_17","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_18","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_19","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_20","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_23","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_24","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_25","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_26","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_28","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_29","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_30","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_31","features":[473]},{"name":"CACHE_HEADER_DATA_CACHE_WRITE_COUNT_SINCE_LAST_SCAVENGE","features":[473]},{"name":"CACHE_HEADER_DATA_CONLIST_CHANGE_COUNT","features":[473]},{"name":"CACHE_HEADER_DATA_COOKIE_CHANGE_COUNT","features":[473]},{"name":"CACHE_HEADER_DATA_CURRENT_SETTINGS_VERSION","features":[473]},{"name":"CACHE_HEADER_DATA_DOWNLOAD_PARTIAL","features":[473]},{"name":"CACHE_HEADER_DATA_GID_HIGH","features":[473]},{"name":"CACHE_HEADER_DATA_GID_LOW","features":[473]},{"name":"CACHE_HEADER_DATA_HSTS_CHANGE_COUNT","features":[473]},{"name":"CACHE_HEADER_DATA_LAST","features":[473]},{"name":"CACHE_HEADER_DATA_LAST_SCAVENGE_TIMESTAMP","features":[473]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_FILTER","features":[473]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_HWND","features":[473]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_MESG","features":[473]},{"name":"CACHE_HEADER_DATA_ROOTGROUP_OFFSET","features":[473]},{"name":"CACHE_HEADER_DATA_ROOT_GROUPLIST_OFFSET","features":[473]},{"name":"CACHE_HEADER_DATA_ROOT_LEAK_OFFSET","features":[473]},{"name":"CACHE_HEADER_DATA_SSL_STATE_COUNT","features":[473]},{"name":"CACHE_NOTIFY_ADD_URL","features":[473]},{"name":"CACHE_NOTIFY_DELETE_ALL","features":[473]},{"name":"CACHE_NOTIFY_DELETE_URL","features":[473]},{"name":"CACHE_NOTIFY_FILTER_CHANGED","features":[473]},{"name":"CACHE_NOTIFY_SET_OFFLINE","features":[473]},{"name":"CACHE_NOTIFY_SET_ONLINE","features":[473]},{"name":"CACHE_NOTIFY_UPDATE_URL","features":[473]},{"name":"CACHE_NOTIFY_URL_SET_STICKY","features":[473]},{"name":"CACHE_NOTIFY_URL_UNSET_STICKY","features":[473]},{"name":"CACHE_OPERATOR","features":[303,473]},{"name":"COOKIE_ACCEPTED_CACHE_ENTRY","features":[473]},{"name":"COOKIE_ALLOW","features":[473]},{"name":"COOKIE_ALLOW_ALL","features":[473]},{"name":"COOKIE_CACHE_ENTRY","features":[473]},{"name":"COOKIE_DLG_INFO","features":[303,473]},{"name":"COOKIE_DONT_ALLOW","features":[473]},{"name":"COOKIE_DONT_ALLOW_ALL","features":[473]},{"name":"COOKIE_DOWNGRADED_CACHE_ENTRY","features":[473]},{"name":"COOKIE_LEASHED_CACHE_ENTRY","features":[473]},{"name":"COOKIE_OP_3RD_PARTY","features":[473]},{"name":"COOKIE_OP_GET","features":[473]},{"name":"COOKIE_OP_MODIFY","features":[473]},{"name":"COOKIE_OP_PERSISTENT","features":[473]},{"name":"COOKIE_OP_SESSION","features":[473]},{"name":"COOKIE_OP_SET","features":[473]},{"name":"COOKIE_REJECTED_CACHE_ENTRY","features":[473]},{"name":"COOKIE_STATE_ACCEPT","features":[473]},{"name":"COOKIE_STATE_DOWNGRADE","features":[473]},{"name":"COOKIE_STATE_LB","features":[473]},{"name":"COOKIE_STATE_LEASH","features":[473]},{"name":"COOKIE_STATE_MAX","features":[473]},{"name":"COOKIE_STATE_PROMPT","features":[473]},{"name":"COOKIE_STATE_REJECT","features":[473]},{"name":"COOKIE_STATE_UB","features":[473]},{"name":"COOKIE_STATE_UNKNOWN","features":[473]},{"name":"CommitUrlCacheEntryA","features":[303,473]},{"name":"CommitUrlCacheEntryBinaryBlob","features":[303,473]},{"name":"CommitUrlCacheEntryW","features":[303,473]},{"name":"ConnectionEstablishmentEnd","features":[473]},{"name":"ConnectionEstablishmentStart","features":[473]},{"name":"CookieDecision","features":[303,473]},{"name":"CreateMD5SSOHash","features":[303,473]},{"name":"CreateUrlCacheContainerA","features":[303,473]},{"name":"CreateUrlCacheContainerW","features":[303,473]},{"name":"CreateUrlCacheEntryA","features":[303,473]},{"name":"CreateUrlCacheEntryExW","features":[303,473]},{"name":"CreateUrlCacheEntryW","features":[303,473]},{"name":"CreateUrlCacheGroup","features":[473]},{"name":"DIALENG_OperationComplete","features":[473]},{"name":"DIALENG_RedialAttempt","features":[473]},{"name":"DIALENG_RedialWait","features":[473]},{"name":"DIALPROP_DOMAIN","features":[473]},{"name":"DIALPROP_LASTERROR","features":[473]},{"name":"DIALPROP_PASSWORD","features":[473]},{"name":"DIALPROP_PHONENUMBER","features":[473]},{"name":"DIALPROP_REDIALCOUNT","features":[473]},{"name":"DIALPROP_REDIALINTERVAL","features":[473]},{"name":"DIALPROP_RESOLVEDPHONE","features":[473]},{"name":"DIALPROP_SAVEPASSWORD","features":[473]},{"name":"DIALPROP_USERNAME","features":[473]},{"name":"DLG_FLAGS_INSECURE_FALLBACK","features":[473]},{"name":"DLG_FLAGS_INVALID_CA","features":[473]},{"name":"DLG_FLAGS_SEC_CERT_CN_INVALID","features":[473]},{"name":"DLG_FLAGS_SEC_CERT_DATE_INVALID","features":[473]},{"name":"DLG_FLAGS_SEC_CERT_REV_FAILED","features":[473]},{"name":"DLG_FLAGS_WEAK_SIGNATURE","features":[473]},{"name":"DOWNLOAD_CACHE_ENTRY","features":[473]},{"name":"DUO_PROTOCOL_FLAG_SPDY3","features":[473]},{"name":"DUO_PROTOCOL_MASK","features":[473]},{"name":"DeleteIE3Cache","features":[303,473]},{"name":"DeleteUrlCacheContainerA","features":[303,473]},{"name":"DeleteUrlCacheContainerW","features":[303,473]},{"name":"DeleteUrlCacheEntry","features":[303,473]},{"name":"DeleteUrlCacheEntryA","features":[303,473]},{"name":"DeleteUrlCacheEntryW","features":[303,473]},{"name":"DeleteUrlCacheGroup","features":[303,473]},{"name":"DeleteWpadCacheForNetworks","features":[303,473]},{"name":"DetectAutoProxyUrl","features":[303,473]},{"name":"DoConnectoidsExist","features":[303,473]},{"name":"EDITED_CACHE_ENTRY","features":[473]},{"name":"ERROR_FTP_DROPPED","features":[473]},{"name":"ERROR_FTP_NO_PASSIVE_MODE","features":[473]},{"name":"ERROR_FTP_TRANSFER_IN_PROGRESS","features":[473]},{"name":"ERROR_GOPHER_ATTRIBUTE_NOT_FOUND","features":[473]},{"name":"ERROR_GOPHER_DATA_ERROR","features":[473]},{"name":"ERROR_GOPHER_END_OF_DATA","features":[473]},{"name":"ERROR_GOPHER_INCORRECT_LOCATOR_TYPE","features":[473]},{"name":"ERROR_GOPHER_INVALID_LOCATOR","features":[473]},{"name":"ERROR_GOPHER_NOT_FILE","features":[473]},{"name":"ERROR_GOPHER_NOT_GOPHER_PLUS","features":[473]},{"name":"ERROR_GOPHER_PROTOCOL_ERROR","features":[473]},{"name":"ERROR_GOPHER_UNKNOWN_LOCATOR","features":[473]},{"name":"ERROR_HTTP_COOKIE_DECLINED","features":[473]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION","features":[473]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION_EX","features":[473]},{"name":"ERROR_HTTP_DOWNLEVEL_SERVER","features":[473]},{"name":"ERROR_HTTP_HEADER_ALREADY_EXISTS","features":[473]},{"name":"ERROR_HTTP_HEADER_NOT_FOUND","features":[473]},{"name":"ERROR_HTTP_HSTS_REDIRECT_REQUIRED","features":[473]},{"name":"ERROR_HTTP_INVALID_HEADER","features":[473]},{"name":"ERROR_HTTP_INVALID_QUERY_REQUEST","features":[473]},{"name":"ERROR_HTTP_INVALID_SERVER_RESPONSE","features":[473]},{"name":"ERROR_HTTP_NOT_REDIRECTED","features":[473]},{"name":"ERROR_HTTP_PUSH_ENABLE_FAILED","features":[473]},{"name":"ERROR_HTTP_PUSH_RETRY_NOT_SUPPORTED","features":[473]},{"name":"ERROR_HTTP_PUSH_STATUS_CODE_NOT_SUPPORTED","features":[473]},{"name":"ERROR_HTTP_REDIRECT_FAILED","features":[473]},{"name":"ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION","features":[473]},{"name":"ERROR_INTERNET_ASYNC_THREAD_FAILED","features":[473]},{"name":"ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT","features":[473]},{"name":"ERROR_INTERNET_BAD_OPTION_LENGTH","features":[473]},{"name":"ERROR_INTERNET_BAD_REGISTRY_PARAMETER","features":[473]},{"name":"ERROR_INTERNET_CACHE_SUCCESS","features":[473]},{"name":"ERROR_INTERNET_CANNOT_CONNECT","features":[473]},{"name":"ERROR_INTERNET_CHG_POST_IS_NON_SECURE","features":[473]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED","features":[473]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[473]},{"name":"ERROR_INTERNET_CLIENT_AUTH_NOT_SETUP","features":[473]},{"name":"ERROR_INTERNET_CONNECTION_ABORTED","features":[473]},{"name":"ERROR_INTERNET_CONNECTION_AVAILABLE","features":[473]},{"name":"ERROR_INTERNET_CONNECTION_RESET","features":[473]},{"name":"ERROR_INTERNET_DECODING_FAILED","features":[473]},{"name":"ERROR_INTERNET_DIALOG_PENDING","features":[473]},{"name":"ERROR_INTERNET_DISALLOW_INPRIVATE","features":[473]},{"name":"ERROR_INTERNET_DISCONNECTED","features":[473]},{"name":"ERROR_INTERNET_EXTENDED_ERROR","features":[473]},{"name":"ERROR_INTERNET_FAILED_DUETOSECURITYCHECK","features":[473]},{"name":"ERROR_INTERNET_FEATURE_DISABLED","features":[473]},{"name":"ERROR_INTERNET_FORCE_RETRY","features":[473]},{"name":"ERROR_INTERNET_FORTEZZA_LOGIN_NEEDED","features":[473]},{"name":"ERROR_INTERNET_GLOBAL_CALLBACK_FAILED","features":[473]},{"name":"ERROR_INTERNET_HANDLE_EXISTS","features":[473]},{"name":"ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR","features":[473]},{"name":"ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR","features":[473]},{"name":"ERROR_INTERNET_HTTP_PROTOCOL_MISMATCH","features":[473]},{"name":"ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR","features":[473]},{"name":"ERROR_INTERNET_INCORRECT_FORMAT","features":[473]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_STATE","features":[473]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_TYPE","features":[473]},{"name":"ERROR_INTERNET_INCORRECT_PASSWORD","features":[473]},{"name":"ERROR_INTERNET_INCORRECT_USER_NAME","features":[473]},{"name":"ERROR_INTERNET_INSECURE_FALLBACK_REQUIRED","features":[473]},{"name":"ERROR_INTERNET_INSERT_CDROM","features":[473]},{"name":"ERROR_INTERNET_INTERNAL_ERROR","features":[473]},{"name":"ERROR_INTERNET_INTERNAL_SOCKET_ERROR","features":[473]},{"name":"ERROR_INTERNET_INVALID_CA","features":[473]},{"name":"ERROR_INTERNET_INVALID_OPERATION","features":[473]},{"name":"ERROR_INTERNET_INVALID_OPTION","features":[473]},{"name":"ERROR_INTERNET_INVALID_PROXY_REQUEST","features":[473]},{"name":"ERROR_INTERNET_INVALID_URL","features":[473]},{"name":"ERROR_INTERNET_ITEM_NOT_FOUND","features":[473]},{"name":"ERROR_INTERNET_LOGIN_FAILURE","features":[473]},{"name":"ERROR_INTERNET_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[473]},{"name":"ERROR_INTERNET_MIXED_SECURITY","features":[473]},{"name":"ERROR_INTERNET_NAME_NOT_RESOLVED","features":[473]},{"name":"ERROR_INTERNET_NEED_MSN_SSPI_PKG","features":[473]},{"name":"ERROR_INTERNET_NEED_UI","features":[473]},{"name":"ERROR_INTERNET_NOT_INITIALIZED","features":[473]},{"name":"ERROR_INTERNET_NOT_PROXY_REQUEST","features":[473]},{"name":"ERROR_INTERNET_NO_CALLBACK","features":[473]},{"name":"ERROR_INTERNET_NO_CM_CONNECTION","features":[473]},{"name":"ERROR_INTERNET_NO_CONTEXT","features":[473]},{"name":"ERROR_INTERNET_NO_DIRECT_ACCESS","features":[473]},{"name":"ERROR_INTERNET_NO_KNOWN_SERVERS","features":[473]},{"name":"ERROR_INTERNET_NO_NEW_CONTAINERS","features":[473]},{"name":"ERROR_INTERNET_NO_PING_SUPPORT","features":[473]},{"name":"ERROR_INTERNET_OFFLINE","features":[473]},{"name":"ERROR_INTERNET_OPERATION_CANCELLED","features":[473]},{"name":"ERROR_INTERNET_OPTION_NOT_SETTABLE","features":[473]},{"name":"ERROR_INTERNET_OUT_OF_HANDLES","features":[473]},{"name":"ERROR_INTERNET_PING_FAILED","features":[473]},{"name":"ERROR_INTERNET_POST_IS_NON_SECURE","features":[473]},{"name":"ERROR_INTERNET_PROTOCOL_NOT_FOUND","features":[473]},{"name":"ERROR_INTERNET_PROXY_ALERT","features":[473]},{"name":"ERROR_INTERNET_PROXY_SERVER_UNREACHABLE","features":[473]},{"name":"ERROR_INTERNET_REDIRECT_SCHEME_CHANGE","features":[473]},{"name":"ERROR_INTERNET_REGISTRY_VALUE_NOT_FOUND","features":[473]},{"name":"ERROR_INTERNET_REQUEST_PENDING","features":[473]},{"name":"ERROR_INTERNET_RETRY_DIALOG","features":[473]},{"name":"ERROR_INTERNET_SECURE_FAILURE_PROXY","features":[473]},{"name":"ERROR_INTERNET_SECURITY_CHANNEL_ERROR","features":[473]},{"name":"ERROR_INTERNET_SEC_CERT_CN_INVALID","features":[473]},{"name":"ERROR_INTERNET_SEC_CERT_DATE_INVALID","features":[473]},{"name":"ERROR_INTERNET_SEC_CERT_ERRORS","features":[473]},{"name":"ERROR_INTERNET_SEC_CERT_NO_REV","features":[473]},{"name":"ERROR_INTERNET_SEC_CERT_REVOKED","features":[473]},{"name":"ERROR_INTERNET_SEC_CERT_REV_FAILED","features":[473]},{"name":"ERROR_INTERNET_SEC_CERT_WEAK_SIGNATURE","features":[473]},{"name":"ERROR_INTERNET_SEC_INVALID_CERT","features":[473]},{"name":"ERROR_INTERNET_SERVER_UNREACHABLE","features":[473]},{"name":"ERROR_INTERNET_SHUTDOWN","features":[473]},{"name":"ERROR_INTERNET_SOURCE_PORT_IN_USE","features":[473]},{"name":"ERROR_INTERNET_TCPIP_NOT_INSTALLED","features":[473]},{"name":"ERROR_INTERNET_TIMEOUT","features":[473]},{"name":"ERROR_INTERNET_UNABLE_TO_CACHE_FILE","features":[473]},{"name":"ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT","features":[473]},{"name":"ERROR_INTERNET_UNRECOGNIZED_SCHEME","features":[473]},{"name":"ExportCookieFileA","features":[303,473]},{"name":"ExportCookieFileW","features":[303,473]},{"name":"FLAGS_ERROR_UI_FILTER_FOR_ERRORS","features":[473]},{"name":"FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS","features":[473]},{"name":"FLAGS_ERROR_UI_FLAGS_GENERATE_DATA","features":[473]},{"name":"FLAGS_ERROR_UI_FLAGS_NO_UI","features":[473]},{"name":"FLAGS_ERROR_UI_SERIALIZE_DIALOGS","features":[473]},{"name":"FLAGS_ERROR_UI_SHOW_IDN_HOSTNAME","features":[473]},{"name":"FLAG_ICC_FORCE_CONNECTION","features":[473]},{"name":"FORTCMD","features":[473]},{"name":"FORTCMD_CHG_PERSONALITY","features":[473]},{"name":"FORTCMD_LOGOFF","features":[473]},{"name":"FORTCMD_LOGON","features":[473]},{"name":"FORTSTAT","features":[473]},{"name":"FORTSTAT_INSTALLED","features":[473]},{"name":"FORTSTAT_LOGGEDON","features":[473]},{"name":"FTP_FLAGS","features":[473]},{"name":"FTP_TRANSFER_TYPE_ASCII","features":[473]},{"name":"FTP_TRANSFER_TYPE_BINARY","features":[473]},{"name":"FTP_TRANSFER_TYPE_UNKNOWN","features":[473]},{"name":"FindCloseUrlCache","features":[303,473]},{"name":"FindFirstUrlCacheContainerA","features":[303,473]},{"name":"FindFirstUrlCacheContainerW","features":[303,473]},{"name":"FindFirstUrlCacheEntryA","features":[303,473]},{"name":"FindFirstUrlCacheEntryExA","features":[303,473]},{"name":"FindFirstUrlCacheEntryExW","features":[303,473]},{"name":"FindFirstUrlCacheEntryW","features":[303,473]},{"name":"FindFirstUrlCacheGroup","features":[303,473]},{"name":"FindNextUrlCacheContainerA","features":[303,473]},{"name":"FindNextUrlCacheContainerW","features":[303,473]},{"name":"FindNextUrlCacheEntryA","features":[303,473]},{"name":"FindNextUrlCacheEntryExA","features":[303,473]},{"name":"FindNextUrlCacheEntryExW","features":[303,473]},{"name":"FindNextUrlCacheEntryW","features":[303,473]},{"name":"FindNextUrlCacheGroup","features":[303,473]},{"name":"FindP3PPolicySymbol","features":[473]},{"name":"FreeUrlCacheSpaceA","features":[303,473]},{"name":"FreeUrlCacheSpaceW","features":[303,473]},{"name":"FtpCommandA","features":[303,473]},{"name":"FtpCommandW","features":[303,473]},{"name":"FtpCreateDirectoryA","features":[303,473]},{"name":"FtpCreateDirectoryW","features":[303,473]},{"name":"FtpDeleteFileA","features":[303,473]},{"name":"FtpDeleteFileW","features":[303,473]},{"name":"FtpFindFirstFileA","features":[303,473,322]},{"name":"FtpFindFirstFileW","features":[303,473,322]},{"name":"FtpGetCurrentDirectoryA","features":[303,473]},{"name":"FtpGetCurrentDirectoryW","features":[303,473]},{"name":"FtpGetFileA","features":[303,473]},{"name":"FtpGetFileEx","features":[303,473]},{"name":"FtpGetFileSize","features":[473]},{"name":"FtpGetFileW","features":[303,473]},{"name":"FtpOpenFileA","features":[473]},{"name":"FtpOpenFileW","features":[473]},{"name":"FtpPutFileA","features":[303,473]},{"name":"FtpPutFileEx","features":[303,473]},{"name":"FtpPutFileW","features":[303,473]},{"name":"FtpRemoveDirectoryA","features":[303,473]},{"name":"FtpRemoveDirectoryW","features":[303,473]},{"name":"FtpRenameFileA","features":[303,473]},{"name":"FtpRenameFileW","features":[303,473]},{"name":"FtpSetCurrentDirectoryA","features":[303,473]},{"name":"FtpSetCurrentDirectoryW","features":[303,473]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE","features":[473]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_ABSTRACT_CATEGORY","features":[473]},{"name":"GOPHER_ADMIN_ATTRIBUTE","features":[473]},{"name":"GOPHER_ADMIN_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_ADMIN_CATEGORY","features":[473]},{"name":"GOPHER_ASK_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_ATTRIBUTE_ENUMERATOR","features":[303,473]},{"name":"GOPHER_ATTRIBUTE_ID_ABSTRACT","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_ADMIN","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_ALL","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_BASE","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_GEOG","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_LOCATION","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_MOD_DATE","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_ORG","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_PROVIDER","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_RANGE","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_SCORE","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_SITE","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_TIMEZONE","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_TREEWALK","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_TTL","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_UNKNOWN","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_VERSION","features":[473]},{"name":"GOPHER_ATTRIBUTE_ID_VIEW","features":[473]},{"name":"GOPHER_ATTRIBUTE_TYPE","features":[303,473]},{"name":"GOPHER_CATEGORY_ID_ABSTRACT","features":[473]},{"name":"GOPHER_CATEGORY_ID_ADMIN","features":[473]},{"name":"GOPHER_CATEGORY_ID_ALL","features":[473]},{"name":"GOPHER_CATEGORY_ID_ASK","features":[473]},{"name":"GOPHER_CATEGORY_ID_INFO","features":[473]},{"name":"GOPHER_CATEGORY_ID_UNKNOWN","features":[473]},{"name":"GOPHER_CATEGORY_ID_VERONICA","features":[473]},{"name":"GOPHER_CATEGORY_ID_VIEWS","features":[473]},{"name":"GOPHER_FIND_DATAA","features":[303,473]},{"name":"GOPHER_FIND_DATAW","features":[303,473]},{"name":"GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_GEOG_ATTRIBUTE","features":[473]},{"name":"GOPHER_INFO_CATEGORY","features":[473]},{"name":"GOPHER_LOCATION_ATTRIBUTE","features":[473]},{"name":"GOPHER_LOCATION_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE","features":[473]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE_TYPE","features":[303,473]},{"name":"GOPHER_ORGANIZATION_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_ORG_ATTRIBUTE","features":[473]},{"name":"GOPHER_PROVIDER_ATTRIBUTE","features":[473]},{"name":"GOPHER_PROVIDER_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_RANGE_ATTRIBUTE","features":[473]},{"name":"GOPHER_SCORE_ATTRIBUTE","features":[473]},{"name":"GOPHER_SCORE_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_SITE_ATTRIBUTE","features":[473]},{"name":"GOPHER_SITE_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE","features":[473]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_TREEWALK_ATTRIBUTE","features":[473]},{"name":"GOPHER_TTL_ATTRIBUTE","features":[473]},{"name":"GOPHER_TTL_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_TYPE","features":[473]},{"name":"GOPHER_TYPE_ASK","features":[473]},{"name":"GOPHER_TYPE_BINARY","features":[473]},{"name":"GOPHER_TYPE_BITMAP","features":[473]},{"name":"GOPHER_TYPE_CALENDAR","features":[473]},{"name":"GOPHER_TYPE_CSO","features":[473]},{"name":"GOPHER_TYPE_DIRECTORY","features":[473]},{"name":"GOPHER_TYPE_DOS_ARCHIVE","features":[473]},{"name":"GOPHER_TYPE_ERROR","features":[473]},{"name":"GOPHER_TYPE_GIF","features":[473]},{"name":"GOPHER_TYPE_GOPHER_PLUS","features":[473]},{"name":"GOPHER_TYPE_HTML","features":[473]},{"name":"GOPHER_TYPE_IMAGE","features":[473]},{"name":"GOPHER_TYPE_INDEX_SERVER","features":[473]},{"name":"GOPHER_TYPE_INLINE","features":[473]},{"name":"GOPHER_TYPE_MAC_BINHEX","features":[473]},{"name":"GOPHER_TYPE_MOVIE","features":[473]},{"name":"GOPHER_TYPE_PDF","features":[473]},{"name":"GOPHER_TYPE_REDUNDANT","features":[473]},{"name":"GOPHER_TYPE_SOUND","features":[473]},{"name":"GOPHER_TYPE_TELNET","features":[473]},{"name":"GOPHER_TYPE_TEXT_FILE","features":[473]},{"name":"GOPHER_TYPE_TN3270","features":[473]},{"name":"GOPHER_TYPE_UNIX_UUENCODED","features":[473]},{"name":"GOPHER_TYPE_UNKNOWN","features":[473]},{"name":"GOPHER_UNKNOWN_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_VERONICA_ATTRIBUTE_TYPE","features":[303,473]},{"name":"GOPHER_VERONICA_CATEGORY","features":[473]},{"name":"GOPHER_VERSION_ATTRIBUTE","features":[473]},{"name":"GOPHER_VERSION_ATTRIBUTE_TYPE","features":[473]},{"name":"GOPHER_VIEWS_CATEGORY","features":[473]},{"name":"GOPHER_VIEW_ATTRIBUTE","features":[473]},{"name":"GOPHER_VIEW_ATTRIBUTE_TYPE","features":[473]},{"name":"GROUPNAME_MAX_LENGTH","features":[473]},{"name":"GROUP_OWNER_STORAGE_SIZE","features":[473]},{"name":"GetDiskInfoA","features":[303,473]},{"name":"GetUrlCacheConfigInfoA","features":[303,473]},{"name":"GetUrlCacheConfigInfoW","features":[303,473]},{"name":"GetUrlCacheEntryBinaryBlob","features":[303,473]},{"name":"GetUrlCacheEntryInfoA","features":[303,473]},{"name":"GetUrlCacheEntryInfoExA","features":[303,473]},{"name":"GetUrlCacheEntryInfoExW","features":[303,473]},{"name":"GetUrlCacheEntryInfoW","features":[303,473]},{"name":"GetUrlCacheGroupAttributeA","features":[303,473]},{"name":"GetUrlCacheGroupAttributeW","features":[303,473]},{"name":"GetUrlCacheHeaderData","features":[303,473]},{"name":"GopherCreateLocatorA","features":[303,473]},{"name":"GopherCreateLocatorW","features":[303,473]},{"name":"GopherFindFirstFileA","features":[303,473]},{"name":"GopherFindFirstFileW","features":[303,473]},{"name":"GopherGetAttributeA","features":[303,473]},{"name":"GopherGetAttributeW","features":[303,473]},{"name":"GopherGetLocatorTypeA","features":[303,473]},{"name":"GopherGetLocatorTypeW","features":[303,473]},{"name":"GopherOpenFileA","features":[473]},{"name":"GopherOpenFileW","features":[473]},{"name":"HSR_ASYNC","features":[473]},{"name":"HSR_CHUNKED","features":[473]},{"name":"HSR_DOWNLOAD","features":[473]},{"name":"HSR_INITIATE","features":[473]},{"name":"HSR_SYNC","features":[473]},{"name":"HSR_USE_CONTEXT","features":[473]},{"name":"HTTP_1_1_CACHE_ENTRY","features":[473]},{"name":"HTTP_ADDREQ_FLAG","features":[473]},{"name":"HTTP_ADDREQ_FLAGS_MASK","features":[473]},{"name":"HTTP_ADDREQ_FLAG_ADD","features":[473]},{"name":"HTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[473]},{"name":"HTTP_ADDREQ_FLAG_ALLOW_EMPTY_VALUES","features":[473]},{"name":"HTTP_ADDREQ_FLAG_COALESCE","features":[473]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[473]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[473]},{"name":"HTTP_ADDREQ_FLAG_REPLACE","features":[473]},{"name":"HTTP_ADDREQ_FLAG_RESPONSE_HEADERS","features":[473]},{"name":"HTTP_ADDREQ_INDEX_MASK","features":[473]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE","features":[473]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE_LAX","features":[473]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_MAX","features":[473]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_SAME_SITE","features":[473]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_UNKNOWN","features":[473]},{"name":"HTTP_MAJOR_VERSION","features":[473]},{"name":"HTTP_MINOR_VERSION","features":[473]},{"name":"HTTP_POLICY_EXTENSION_INIT","features":[473]},{"name":"HTTP_POLICY_EXTENSION_SHUTDOWN","features":[473]},{"name":"HTTP_POLICY_EXTENSION_TYPE","features":[473]},{"name":"HTTP_POLICY_EXTENSION_VERSION","features":[473]},{"name":"HTTP_PROTOCOL_FLAG_HTTP2","features":[473]},{"name":"HTTP_PROTOCOL_MASK","features":[473]},{"name":"HTTP_PUSH_NOTIFICATION_STATUS","features":[303,473]},{"name":"HTTP_PUSH_TRANSPORT_SETTING","features":[473]},{"name":"HTTP_PUSH_WAIT_HANDLE","features":[473]},{"name":"HTTP_PUSH_WAIT_TYPE","features":[473]},{"name":"HTTP_QUERY_ACCEPT","features":[473]},{"name":"HTTP_QUERY_ACCEPT_CHARSET","features":[473]},{"name":"HTTP_QUERY_ACCEPT_ENCODING","features":[473]},{"name":"HTTP_QUERY_ACCEPT_LANGUAGE","features":[473]},{"name":"HTTP_QUERY_ACCEPT_RANGES","features":[473]},{"name":"HTTP_QUERY_AGE","features":[473]},{"name":"HTTP_QUERY_ALLOW","features":[473]},{"name":"HTTP_QUERY_AUTHENTICATION_INFO","features":[473]},{"name":"HTTP_QUERY_AUTHORIZATION","features":[473]},{"name":"HTTP_QUERY_CACHE_CONTROL","features":[473]},{"name":"HTTP_QUERY_CONNECTION","features":[473]},{"name":"HTTP_QUERY_CONTENT_BASE","features":[473]},{"name":"HTTP_QUERY_CONTENT_DESCRIPTION","features":[473]},{"name":"HTTP_QUERY_CONTENT_DISPOSITION","features":[473]},{"name":"HTTP_QUERY_CONTENT_ENCODING","features":[473]},{"name":"HTTP_QUERY_CONTENT_ID","features":[473]},{"name":"HTTP_QUERY_CONTENT_LANGUAGE","features":[473]},{"name":"HTTP_QUERY_CONTENT_LENGTH","features":[473]},{"name":"HTTP_QUERY_CONTENT_LOCATION","features":[473]},{"name":"HTTP_QUERY_CONTENT_MD5","features":[473]},{"name":"HTTP_QUERY_CONTENT_RANGE","features":[473]},{"name":"HTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[473]},{"name":"HTTP_QUERY_CONTENT_TYPE","features":[473]},{"name":"HTTP_QUERY_COOKIE","features":[473]},{"name":"HTTP_QUERY_COST","features":[473]},{"name":"HTTP_QUERY_CUSTOM","features":[473]},{"name":"HTTP_QUERY_DATE","features":[473]},{"name":"HTTP_QUERY_DEFAULT_STYLE","features":[473]},{"name":"HTTP_QUERY_DERIVED_FROM","features":[473]},{"name":"HTTP_QUERY_DO_NOT_TRACK","features":[473]},{"name":"HTTP_QUERY_ECHO_HEADERS","features":[473]},{"name":"HTTP_QUERY_ECHO_HEADERS_CRLF","features":[473]},{"name":"HTTP_QUERY_ECHO_REPLY","features":[473]},{"name":"HTTP_QUERY_ECHO_REQUEST","features":[473]},{"name":"HTTP_QUERY_ETAG","features":[473]},{"name":"HTTP_QUERY_EXPECT","features":[473]},{"name":"HTTP_QUERY_EXPIRES","features":[473]},{"name":"HTTP_QUERY_FLAG_COALESCE","features":[473]},{"name":"HTTP_QUERY_FLAG_COALESCE_WITH_COMMA","features":[473]},{"name":"HTTP_QUERY_FLAG_NUMBER","features":[473]},{"name":"HTTP_QUERY_FLAG_NUMBER64","features":[473]},{"name":"HTTP_QUERY_FLAG_REQUEST_HEADERS","features":[473]},{"name":"HTTP_QUERY_FLAG_SYSTEMTIME","features":[473]},{"name":"HTTP_QUERY_FORWARDED","features":[473]},{"name":"HTTP_QUERY_FROM","features":[473]},{"name":"HTTP_QUERY_HOST","features":[473]},{"name":"HTTP_QUERY_HTTP2_SETTINGS","features":[473]},{"name":"HTTP_QUERY_IF_MATCH","features":[473]},{"name":"HTTP_QUERY_IF_MODIFIED_SINCE","features":[473]},{"name":"HTTP_QUERY_IF_NONE_MATCH","features":[473]},{"name":"HTTP_QUERY_IF_RANGE","features":[473]},{"name":"HTTP_QUERY_IF_UNMODIFIED_SINCE","features":[473]},{"name":"HTTP_QUERY_INCLUDE_REFERER_TOKEN_BINDING_ID","features":[473]},{"name":"HTTP_QUERY_INCLUDE_REFERRED_TOKEN_BINDING_ID","features":[473]},{"name":"HTTP_QUERY_KEEP_ALIVE","features":[473]},{"name":"HTTP_QUERY_LAST_MODIFIED","features":[473]},{"name":"HTTP_QUERY_LINK","features":[473]},{"name":"HTTP_QUERY_LOCATION","features":[473]},{"name":"HTTP_QUERY_MAX","features":[473]},{"name":"HTTP_QUERY_MAX_FORWARDS","features":[473]},{"name":"HTTP_QUERY_MESSAGE_ID","features":[473]},{"name":"HTTP_QUERY_MIME_VERSION","features":[473]},{"name":"HTTP_QUERY_ORIG_URI","features":[473]},{"name":"HTTP_QUERY_P3P","features":[473]},{"name":"HTTP_QUERY_PASSPORT_CONFIG","features":[473]},{"name":"HTTP_QUERY_PASSPORT_URLS","features":[473]},{"name":"HTTP_QUERY_PRAGMA","features":[473]},{"name":"HTTP_QUERY_PROXY_AUTHENTICATE","features":[473]},{"name":"HTTP_QUERY_PROXY_AUTHORIZATION","features":[473]},{"name":"HTTP_QUERY_PROXY_CONNECTION","features":[473]},{"name":"HTTP_QUERY_PROXY_SUPPORT","features":[473]},{"name":"HTTP_QUERY_PUBLIC","features":[473]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS","features":[473]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS_REPORT_ONLY","features":[473]},{"name":"HTTP_QUERY_RANGE","features":[473]},{"name":"HTTP_QUERY_RAW_HEADERS","features":[473]},{"name":"HTTP_QUERY_RAW_HEADERS_CRLF","features":[473]},{"name":"HTTP_QUERY_REFERER","features":[473]},{"name":"HTTP_QUERY_REFRESH","features":[473]},{"name":"HTTP_QUERY_REQUEST_METHOD","features":[473]},{"name":"HTTP_QUERY_RETRY_AFTER","features":[473]},{"name":"HTTP_QUERY_SERVER","features":[473]},{"name":"HTTP_QUERY_SET_COOKIE","features":[473]},{"name":"HTTP_QUERY_SET_COOKIE2","features":[473]},{"name":"HTTP_QUERY_STATUS_CODE","features":[473]},{"name":"HTTP_QUERY_STATUS_TEXT","features":[473]},{"name":"HTTP_QUERY_STRICT_TRANSPORT_SECURITY","features":[473]},{"name":"HTTP_QUERY_TITLE","features":[473]},{"name":"HTTP_QUERY_TOKEN_BINDING","features":[473]},{"name":"HTTP_QUERY_TRANSFER_ENCODING","features":[473]},{"name":"HTTP_QUERY_TRANSLATE","features":[473]},{"name":"HTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[473]},{"name":"HTTP_QUERY_UPGRADE","features":[473]},{"name":"HTTP_QUERY_URI","features":[473]},{"name":"HTTP_QUERY_USER_AGENT","features":[473]},{"name":"HTTP_QUERY_VARY","features":[473]},{"name":"HTTP_QUERY_VERSION","features":[473]},{"name":"HTTP_QUERY_VIA","features":[473]},{"name":"HTTP_QUERY_WARNING","features":[473]},{"name":"HTTP_QUERY_WWW_AUTHENTICATE","features":[473]},{"name":"HTTP_QUERY_X_CONTENT_TYPE_OPTIONS","features":[473]},{"name":"HTTP_QUERY_X_FRAME_OPTIONS","features":[473]},{"name":"HTTP_QUERY_X_P2P_PEERDIST","features":[473]},{"name":"HTTP_QUERY_X_UA_COMPATIBLE","features":[473]},{"name":"HTTP_QUERY_X_XSS_PROTECTION","features":[473]},{"name":"HTTP_REQUEST_TIMES","features":[473]},{"name":"HTTP_STATUS_MISDIRECTED_REQUEST","features":[473]},{"name":"HTTP_VERSIONA","features":[473]},{"name":"HTTP_VERSIONW","features":[473]},{"name":"HTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_ASYNC_RESULT","features":[473]},{"name":"HTTP_WEB_SOCKET_BINARY_FRAGMENT_TYPE","features":[473]},{"name":"HTTP_WEB_SOCKET_BINARY_MESSAGE_TYPE","features":[473]},{"name":"HTTP_WEB_SOCKET_BUFFER_TYPE","features":[473]},{"name":"HTTP_WEB_SOCKET_CLOSE_OPERATION","features":[473]},{"name":"HTTP_WEB_SOCKET_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_CLOSE_TYPE","features":[473]},{"name":"HTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[473]},{"name":"HTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[473]},{"name":"HTTP_WEB_SOCKET_OPERATION","features":[473]},{"name":"HTTP_WEB_SOCKET_PING_TYPE","features":[473]},{"name":"HTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[473]},{"name":"HTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_SEND_OPERATION","features":[473]},{"name":"HTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[473]},{"name":"HTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[473]},{"name":"HTTP_WEB_SOCKET_UTF8_FRAGMENT_TYPE","features":[473]},{"name":"HTTP_WEB_SOCKET_UTF8_MESSAGE_TYPE","features":[473]},{"name":"HttpAddRequestHeadersA","features":[303,473]},{"name":"HttpAddRequestHeadersW","features":[303,473]},{"name":"HttpCheckDavComplianceA","features":[303,473]},{"name":"HttpCheckDavComplianceW","features":[303,473]},{"name":"HttpCloseDependencyHandle","features":[473]},{"name":"HttpDuplicateDependencyHandle","features":[473]},{"name":"HttpEndRequestA","features":[303,473]},{"name":"HttpEndRequestW","features":[303,473]},{"name":"HttpGetServerCredentials","features":[473]},{"name":"HttpIndicatePageLoadComplete","features":[473]},{"name":"HttpIsHostHstsEnabled","features":[303,473]},{"name":"HttpOpenDependencyHandle","features":[303,473]},{"name":"HttpOpenRequestA","features":[473]},{"name":"HttpOpenRequestW","features":[473]},{"name":"HttpPushClose","features":[473]},{"name":"HttpPushEnable","features":[473]},{"name":"HttpPushWait","features":[303,473]},{"name":"HttpPushWaitEnableComplete","features":[473]},{"name":"HttpPushWaitReceiveComplete","features":[473]},{"name":"HttpPushWaitSendComplete","features":[473]},{"name":"HttpQueryInfoA","features":[303,473]},{"name":"HttpQueryInfoW","features":[303,473]},{"name":"HttpRequestTimeMax","features":[473]},{"name":"HttpSendRequestA","features":[303,473]},{"name":"HttpSendRequestExA","features":[303,473]},{"name":"HttpSendRequestExW","features":[303,473]},{"name":"HttpSendRequestW","features":[303,473]},{"name":"HttpWebSocketClose","features":[303,473]},{"name":"HttpWebSocketCompleteUpgrade","features":[473]},{"name":"HttpWebSocketQueryCloseStatus","features":[303,473]},{"name":"HttpWebSocketReceive","features":[303,473]},{"name":"HttpWebSocketSend","features":[303,473]},{"name":"HttpWebSocketShutdown","features":[303,473]},{"name":"ICU_USERNAME","features":[473]},{"name":"IDENTITY_CACHE_ENTRY","features":[473]},{"name":"IDSI_FLAG_KEEP_ALIVE","features":[473]},{"name":"IDSI_FLAG_PROXY","features":[473]},{"name":"IDSI_FLAG_SECURE","features":[473]},{"name":"IDSI_FLAG_TUNNEL","features":[473]},{"name":"IDialBranding","features":[473]},{"name":"IDialEngine","features":[473]},{"name":"IDialEventSink","features":[473]},{"name":"IMMUTABLE_CACHE_ENTRY","features":[473]},{"name":"INSTALLED_CACHE_ENTRY","features":[473]},{"name":"INTERENT_GOONLINE_MASK","features":[473]},{"name":"INTERENT_GOONLINE_NOPROMPT","features":[473]},{"name":"INTERENT_GOONLINE_REFRESH","features":[473]},{"name":"INTERNET_ACCESS_TYPE","features":[473]},{"name":"INTERNET_ASYNC_RESULT","features":[473]},{"name":"INTERNET_AUTH_NOTIFY_DATA","features":[473]},{"name":"INTERNET_AUTH_SCHEME_BASIC","features":[473]},{"name":"INTERNET_AUTH_SCHEME_DIGEST","features":[473]},{"name":"INTERNET_AUTH_SCHEME_KERBEROS","features":[473]},{"name":"INTERNET_AUTH_SCHEME_NEGOTIATE","features":[473]},{"name":"INTERNET_AUTH_SCHEME_NTLM","features":[473]},{"name":"INTERNET_AUTH_SCHEME_PASSPORT","features":[473]},{"name":"INTERNET_AUTH_SCHEME_UNKNOWN","features":[473]},{"name":"INTERNET_AUTODIAL","features":[473]},{"name":"INTERNET_AUTODIAL_FAILIFSECURITYCHECK","features":[473]},{"name":"INTERNET_AUTODIAL_FORCE_ONLINE","features":[473]},{"name":"INTERNET_AUTODIAL_FORCE_UNATTENDED","features":[473]},{"name":"INTERNET_AUTODIAL_OVERRIDE_NET_PRESENT","features":[473]},{"name":"INTERNET_AUTOPROXY_INIT_DEFAULT","features":[473]},{"name":"INTERNET_AUTOPROXY_INIT_DOWNLOADSYNC","features":[473]},{"name":"INTERNET_AUTOPROXY_INIT_ONLYQUERY","features":[473]},{"name":"INTERNET_AUTOPROXY_INIT_QUERYSTATE","features":[473]},{"name":"INTERNET_BUFFERSA","features":[473]},{"name":"INTERNET_BUFFERSW","features":[473]},{"name":"INTERNET_CACHE_CONFIG_INFOA","features":[303,473]},{"name":"INTERNET_CACHE_CONFIG_INFOW","features":[303,473]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYA","features":[473]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYW","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_AUTODELETE","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_BLOOM_FILTER","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_INFOA","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_INFOW","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_MAP_ENABLED","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_NODESKTOPINIT","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_NOSUBDIRS","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_RESERVED1","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ","features":[473]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ_WRITE","features":[473]},{"name":"INTERNET_CACHE_ENTRY_INFOA","features":[303,473]},{"name":"INTERNET_CACHE_ENTRY_INFOW","features":[303,473]},{"name":"INTERNET_CACHE_FLAG_ADD_FILENAME_ONLY","features":[473]},{"name":"INTERNET_CACHE_FLAG_ALLOW_COLLISIONS","features":[473]},{"name":"INTERNET_CACHE_FLAG_ENTRY_OR_MAPPING","features":[473]},{"name":"INTERNET_CACHE_FLAG_GET_STRUCT_ONLY","features":[473]},{"name":"INTERNET_CACHE_FLAG_INSTALLED_ENTRY","features":[473]},{"name":"INTERNET_CACHE_GROUP_ADD","features":[473]},{"name":"INTERNET_CACHE_GROUP_INFOA","features":[473]},{"name":"INTERNET_CACHE_GROUP_INFOW","features":[473]},{"name":"INTERNET_CACHE_GROUP_REMOVE","features":[473]},{"name":"INTERNET_CACHE_TIMESTAMPS","features":[303,473]},{"name":"INTERNET_CALLBACK_COOKIE","features":[303,473]},{"name":"INTERNET_CERTIFICATE_INFO","features":[303,473]},{"name":"INTERNET_CONNECTED_INFO","features":[473]},{"name":"INTERNET_CONNECTION","features":[473]},{"name":"INTERNET_CONNECTION_CONFIGURED","features":[473]},{"name":"INTERNET_CONNECTION_LAN","features":[473]},{"name":"INTERNET_CONNECTION_MODEM","features":[473]},{"name":"INTERNET_CONNECTION_MODEM_BUSY","features":[473]},{"name":"INTERNET_CONNECTION_OFFLINE","features":[473]},{"name":"INTERNET_CONNECTION_PROXY","features":[473]},{"name":"INTERNET_COOKIE","features":[303,473]},{"name":"INTERNET_COOKIE2","features":[303,473]},{"name":"INTERNET_COOKIE_ALL_COOKIES","features":[473]},{"name":"INTERNET_COOKIE_APPLY_HOST_ONLY","features":[473]},{"name":"INTERNET_COOKIE_APPLY_P3P","features":[473]},{"name":"INTERNET_COOKIE_ECTX_3RDPARTY","features":[473]},{"name":"INTERNET_COOKIE_EDGE_COOKIES","features":[473]},{"name":"INTERNET_COOKIE_EVALUATE_P3P","features":[473]},{"name":"INTERNET_COOKIE_FLAGS","features":[473]},{"name":"INTERNET_COOKIE_HOST_ONLY","features":[473]},{"name":"INTERNET_COOKIE_HOST_ONLY_APPLIED","features":[473]},{"name":"INTERNET_COOKIE_HTTPONLY","features":[473]},{"name":"INTERNET_COOKIE_IE6","features":[473]},{"name":"INTERNET_COOKIE_IS_LEGACY","features":[473]},{"name":"INTERNET_COOKIE_IS_RESTRICTED","features":[473]},{"name":"INTERNET_COOKIE_IS_SECURE","features":[473]},{"name":"INTERNET_COOKIE_IS_SESSION","features":[473]},{"name":"INTERNET_COOKIE_NON_SCRIPT","features":[473]},{"name":"INTERNET_COOKIE_NO_CALLBACK","features":[473]},{"name":"INTERNET_COOKIE_P3P_ENABLED","features":[473]},{"name":"INTERNET_COOKIE_PERSISTENT_HOST_ONLY","features":[473]},{"name":"INTERNET_COOKIE_PROMPT_REQUIRED","features":[473]},{"name":"INTERNET_COOKIE_RESTRICTED_ZONE","features":[473]},{"name":"INTERNET_COOKIE_SAME_SITE_LAX","features":[473]},{"name":"INTERNET_COOKIE_SAME_SITE_LEVEL_CROSS_SITE","features":[473]},{"name":"INTERNET_COOKIE_SAME_SITE_STRICT","features":[473]},{"name":"INTERNET_COOKIE_THIRD_PARTY","features":[473]},{"name":"INTERNET_CREDENTIALS","features":[303,473]},{"name":"INTERNET_CUSTOMDIAL_CAN_HANGUP","features":[473]},{"name":"INTERNET_CUSTOMDIAL_CONNECT","features":[473]},{"name":"INTERNET_CUSTOMDIAL_DISCONNECT","features":[473]},{"name":"INTERNET_CUSTOMDIAL_SAFE_FOR_UNATTENDED","features":[473]},{"name":"INTERNET_CUSTOMDIAL_SHOWOFFLINE","features":[473]},{"name":"INTERNET_CUSTOMDIAL_UNATTENDED","features":[473]},{"name":"INTERNET_CUSTOMDIAL_WILL_SUPPLY_STATE","features":[473]},{"name":"INTERNET_DEFAULT_FTP_PORT","features":[473]},{"name":"INTERNET_DEFAULT_GOPHER_PORT","features":[473]},{"name":"INTERNET_DEFAULT_SOCKS_PORT","features":[473]},{"name":"INTERNET_DIAGNOSTIC_SOCKET_INFO","features":[473]},{"name":"INTERNET_DIALSTATE_DISCONNECTED","features":[473]},{"name":"INTERNET_DIAL_FORCE_PROMPT","features":[473]},{"name":"INTERNET_DIAL_SHOW_OFFLINE","features":[473]},{"name":"INTERNET_DIAL_UNATTENDED","features":[473]},{"name":"INTERNET_DOWNLOAD_MODE_HANDLE","features":[303,473]},{"name":"INTERNET_END_BROWSER_SESSION_DATA","features":[473]},{"name":"INTERNET_ERROR_BASE","features":[473]},{"name":"INTERNET_ERROR_LAST","features":[473]},{"name":"INTERNET_ERROR_MASK_COMBINED_SEC_CERT","features":[473]},{"name":"INTERNET_ERROR_MASK_INSERT_CDROM","features":[473]},{"name":"INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[473]},{"name":"INTERNET_ERROR_MASK_NEED_MSN_SSPI_PKG","features":[473]},{"name":"INTERNET_FIRST_OPTION","features":[473]},{"name":"INTERNET_FLAG_ASYNC","features":[473]},{"name":"INTERNET_FLAG_BGUPDATE","features":[473]},{"name":"INTERNET_FLAG_CACHE_ASYNC","features":[473]},{"name":"INTERNET_FLAG_CACHE_IF_NET_FAIL","features":[473]},{"name":"INTERNET_FLAG_DONT_CACHE","features":[473]},{"name":"INTERNET_FLAG_EXISTING_CONNECT","features":[473]},{"name":"INTERNET_FLAG_FORMS_SUBMIT","features":[473]},{"name":"INTERNET_FLAG_FROM_CACHE","features":[473]},{"name":"INTERNET_FLAG_FTP_FOLDER_VIEW","features":[473]},{"name":"INTERNET_FLAG_FWD_BACK","features":[473]},{"name":"INTERNET_FLAG_HYPERLINK","features":[473]},{"name":"INTERNET_FLAG_IDN_DIRECT","features":[473]},{"name":"INTERNET_FLAG_IDN_PROXY","features":[473]},{"name":"INTERNET_FLAG_IGNORE_CERT_CN_INVALID","features":[473]},{"name":"INTERNET_FLAG_IGNORE_CERT_DATE_INVALID","features":[473]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[473]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[473]},{"name":"INTERNET_FLAG_KEEP_CONNECTION","features":[473]},{"name":"INTERNET_FLAG_MAKE_PERSISTENT","features":[473]},{"name":"INTERNET_FLAG_MUST_CACHE_REQUEST","features":[473]},{"name":"INTERNET_FLAG_NEED_FILE","features":[473]},{"name":"INTERNET_FLAG_NO_AUTH","features":[473]},{"name":"INTERNET_FLAG_NO_AUTO_REDIRECT","features":[473]},{"name":"INTERNET_FLAG_NO_CACHE_WRITE","features":[473]},{"name":"INTERNET_FLAG_NO_COOKIES","features":[473]},{"name":"INTERNET_FLAG_NO_UI","features":[473]},{"name":"INTERNET_FLAG_OFFLINE","features":[473]},{"name":"INTERNET_FLAG_PASSIVE","features":[473]},{"name":"INTERNET_FLAG_PRAGMA_NOCACHE","features":[473]},{"name":"INTERNET_FLAG_RAW_DATA","features":[473]},{"name":"INTERNET_FLAG_READ_PREFETCH","features":[473]},{"name":"INTERNET_FLAG_RELOAD","features":[473]},{"name":"INTERNET_FLAG_RESTRICTED_ZONE","features":[473]},{"name":"INTERNET_FLAG_RESYNCHRONIZE","features":[473]},{"name":"INTERNET_FLAG_SECURE","features":[473]},{"name":"INTERNET_FLAG_TRANSFER_ASCII","features":[473]},{"name":"INTERNET_FLAG_TRANSFER_BINARY","features":[473]},{"name":"INTERNET_GLOBAL_CALLBACK_DETECTING_PROXY","features":[473]},{"name":"INTERNET_GLOBAL_CALLBACK_SENDING_HTTP_HEADERS","features":[473]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_FTP","features":[473]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_GOPHER","features":[473]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_HTTP","features":[473]},{"name":"INTERNET_HANDLE_TYPE_FILE_REQUEST","features":[473]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE","features":[473]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE_HTML","features":[473]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND","features":[473]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND_HTML","features":[473]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE","features":[473]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE_HTML","features":[473]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND","features":[473]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND_HTML","features":[473]},{"name":"INTERNET_HANDLE_TYPE_HTTP_REQUEST","features":[473]},{"name":"INTERNET_HANDLE_TYPE_INTERNET","features":[473]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_CONTENT","features":[473]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_COOKIES","features":[473]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_DATA","features":[473]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_HISTORY","features":[473]},{"name":"INTERNET_IDENTITY_FLAG_PRIVATE_CACHE","features":[473]},{"name":"INTERNET_IDENTITY_FLAG_SHARED_CACHE","features":[473]},{"name":"INTERNET_INTERNAL_ERROR_BASE","features":[473]},{"name":"INTERNET_INVALID_PORT_NUMBER","features":[473]},{"name":"INTERNET_KEEP_ALIVE_DISABLED","features":[473]},{"name":"INTERNET_KEEP_ALIVE_ENABLED","features":[473]},{"name":"INTERNET_KEEP_ALIVE_UNKNOWN","features":[473]},{"name":"INTERNET_LAST_OPTION","features":[473]},{"name":"INTERNET_LAST_OPTION_INTERNAL","features":[473]},{"name":"INTERNET_MAX_HOST_NAME_LENGTH","features":[473]},{"name":"INTERNET_MAX_PASSWORD_LENGTH","features":[473]},{"name":"INTERNET_MAX_PORT_NUMBER_LENGTH","features":[473]},{"name":"INTERNET_MAX_PORT_NUMBER_VALUE","features":[473]},{"name":"INTERNET_MAX_USER_NAME_LENGTH","features":[473]},{"name":"INTERNET_NO_CALLBACK","features":[473]},{"name":"INTERNET_OPEN_TYPE_DIRECT","features":[473]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG","features":[473]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY","features":[473]},{"name":"INTERNET_OPEN_TYPE_PROXY","features":[473]},{"name":"INTERNET_OPTION_ACTIVATE_WORKER_THREADS","features":[473]},{"name":"INTERNET_OPTION_ACTIVITY_ID","features":[473]},{"name":"INTERNET_OPTION_ALLOW_FAILED_CONNECT_CONTENT","features":[473]},{"name":"INTERNET_OPTION_ALLOW_INSECURE_FALLBACK","features":[473]},{"name":"INTERNET_OPTION_ALTER_IDENTITY","features":[473]},{"name":"INTERNET_OPTION_APP_CACHE","features":[473]},{"name":"INTERNET_OPTION_ASYNC","features":[473]},{"name":"INTERNET_OPTION_ASYNC_ID","features":[473]},{"name":"INTERNET_OPTION_ASYNC_PRIORITY","features":[473]},{"name":"INTERNET_OPTION_AUTH_FLAGS","features":[473]},{"name":"INTERNET_OPTION_AUTH_SCHEME_SELECTED","features":[473]},{"name":"INTERNET_OPTION_AUTODIAL_CONNECTION","features":[473]},{"name":"INTERNET_OPTION_AUTODIAL_HWND","features":[473]},{"name":"INTERNET_OPTION_AUTODIAL_MODE","features":[473]},{"name":"INTERNET_OPTION_BACKGROUND_CONNECTIONS","features":[473]},{"name":"INTERNET_OPTION_BYPASS_EDITED_ENTRY","features":[473]},{"name":"INTERNET_OPTION_CACHE_ENTRY_EXTRA_DATA","features":[473]},{"name":"INTERNET_OPTION_CACHE_PARTITION","features":[473]},{"name":"INTERNET_OPTION_CACHE_STREAM_HANDLE","features":[473]},{"name":"INTERNET_OPTION_CACHE_TIMESTAMPS","features":[473]},{"name":"INTERNET_OPTION_CALLBACK","features":[473]},{"name":"INTERNET_OPTION_CALLBACK_FILTER","features":[473]},{"name":"INTERNET_OPTION_CALLER_MODULE","features":[473]},{"name":"INTERNET_OPTION_CANCEL_CACHE_WRITE","features":[473]},{"name":"INTERNET_OPTION_CERT_ERROR_FLAGS","features":[473]},{"name":"INTERNET_OPTION_CHUNK_ENCODE_REQUEST","features":[473]},{"name":"INTERNET_OPTION_CLIENT_CERT_CONTEXT","features":[473]},{"name":"INTERNET_OPTION_CLIENT_CERT_ISSUER_LIST","features":[473]},{"name":"INTERNET_OPTION_CM_HANDLE_COPY_REF","features":[473]},{"name":"INTERNET_OPTION_CODEPAGE","features":[473]},{"name":"INTERNET_OPTION_CODEPAGE_EXTRA","features":[473]},{"name":"INTERNET_OPTION_CODEPAGE_PATH","features":[473]},{"name":"INTERNET_OPTION_COMPRESSED_CONTENT_LENGTH","features":[473]},{"name":"INTERNET_OPTION_CONNECTED_STATE","features":[473]},{"name":"INTERNET_OPTION_CONNECTION_FILTER","features":[473]},{"name":"INTERNET_OPTION_CONNECTION_INFO","features":[473]},{"name":"INTERNET_OPTION_CONNECT_BACKOFF","features":[473]},{"name":"INTERNET_OPTION_CONNECT_LIMIT","features":[473]},{"name":"INTERNET_OPTION_CONNECT_RETRIES","features":[473]},{"name":"INTERNET_OPTION_CONNECT_TIME","features":[473]},{"name":"INTERNET_OPTION_CONNECT_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_CONTEXT_VALUE","features":[473]},{"name":"INTERNET_OPTION_CONTEXT_VALUE_OLD","features":[473]},{"name":"INTERNET_OPTION_CONTROL_RECEIVE_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_CONTROL_SEND_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_COOKIES_3RD_PARTY","features":[473]},{"name":"INTERNET_OPTION_COOKIES_APPLY_HOST_ONLY","features":[473]},{"name":"INTERNET_OPTION_COOKIES_SAME_SITE_LEVEL","features":[473]},{"name":"INTERNET_OPTION_DATAFILE_EXT","features":[473]},{"name":"INTERNET_OPTION_DATAFILE_NAME","features":[473]},{"name":"INTERNET_OPTION_DATA_RECEIVE_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_DATA_SEND_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_DEPENDENCY_HANDLE","features":[473]},{"name":"INTERNET_OPTION_DETECT_POST_SEND","features":[473]},{"name":"INTERNET_OPTION_DIAGNOSTIC_SOCKET_INFO","features":[473]},{"name":"INTERNET_OPTION_DIGEST_AUTH_UNLOAD","features":[473]},{"name":"INTERNET_OPTION_DISABLE_AUTODIAL","features":[473]},{"name":"INTERNET_OPTION_DISABLE_INSECURE_FALLBACK","features":[473]},{"name":"INTERNET_OPTION_DISABLE_NTLM_PREAUTH","features":[473]},{"name":"INTERNET_OPTION_DISABLE_PASSPORT_AUTH","features":[473]},{"name":"INTERNET_OPTION_DISABLE_PROXY_LINK_LOCAL_NAME_RESOLUTION","features":[473]},{"name":"INTERNET_OPTION_DISALLOW_PREMATURE_EOF","features":[473]},{"name":"INTERNET_OPTION_DISCONNECTED_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE","features":[473]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE_HANDLE","features":[473]},{"name":"INTERNET_OPTION_DO_NOT_TRACK","features":[473]},{"name":"INTERNET_OPTION_DUO_USED","features":[473]},{"name":"INTERNET_OPTION_EDGE_COOKIES","features":[473]},{"name":"INTERNET_OPTION_EDGE_COOKIES_TEMP","features":[473]},{"name":"INTERNET_OPTION_EDGE_MODE","features":[473]},{"name":"INTERNET_OPTION_ENABLE_DUO","features":[473]},{"name":"INTERNET_OPTION_ENABLE_HEADER_CALLBACKS","features":[473]},{"name":"INTERNET_OPTION_ENABLE_HTTP_PROTOCOL","features":[473]},{"name":"INTERNET_OPTION_ENABLE_PASSPORT_AUTH","features":[473]},{"name":"INTERNET_OPTION_ENABLE_REDIRECT_CACHE_READ","features":[473]},{"name":"INTERNET_OPTION_ENABLE_TEST_SIGNING","features":[473]},{"name":"INTERNET_OPTION_ENABLE_WBOEXT","features":[473]},{"name":"INTERNET_OPTION_ENABLE_ZLIB_DEFLATE","features":[473]},{"name":"INTERNET_OPTION_ENCODE_EXTRA","features":[473]},{"name":"INTERNET_OPTION_ENCODE_FALLBACK_FOR_REDIRECT_URI","features":[473]},{"name":"INTERNET_OPTION_END_BROWSER_SESSION","features":[473]},{"name":"INTERNET_OPTION_ENTERPRISE_CONTEXT","features":[473]},{"name":"INTERNET_OPTION_ERROR_MASK","features":[473]},{"name":"INTERNET_OPTION_EXEMPT_CONNECTION_LIMIT","features":[473]},{"name":"INTERNET_OPTION_EXTENDED_CALLBACKS","features":[473]},{"name":"INTERNET_OPTION_EXTENDED_ERROR","features":[473]},{"name":"INTERNET_OPTION_FAIL_ON_CACHE_WRITE_ERROR","features":[473]},{"name":"INTERNET_OPTION_FALSE_START","features":[473]},{"name":"INTERNET_OPTION_FLUSH_STATE","features":[473]},{"name":"INTERNET_OPTION_FORCE_DECODE","features":[473]},{"name":"INTERNET_OPTION_FROM_CACHE_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_GLOBAL_CALLBACK","features":[473]},{"name":"INTERNET_OPTION_HANDLE_TYPE","features":[473]},{"name":"INTERNET_OPTION_HIBERNATE_INACTIVE_WORKER_THREADS","features":[473]},{"name":"INTERNET_OPTION_HSTS","features":[473]},{"name":"INTERNET_OPTION_HTTP_09","features":[473]},{"name":"INTERNET_OPTION_HTTP_DECODING","features":[473]},{"name":"INTERNET_OPTION_HTTP_PROTOCOL_USED","features":[473]},{"name":"INTERNET_OPTION_HTTP_VERSION","features":[473]},{"name":"INTERNET_OPTION_IDENTITY","features":[473]},{"name":"INTERNET_OPTION_IDLE_STATE","features":[473]},{"name":"INTERNET_OPTION_IDN","features":[473]},{"name":"INTERNET_OPTION_IGNORE_CERT_ERROR_FLAGS","features":[473]},{"name":"INTERNET_OPTION_IGNORE_OFFLINE","features":[473]},{"name":"INTERNET_OPTION_KEEP_CONNECTION","features":[473]},{"name":"INTERNET_OPTION_LINE_STATE","features":[473]},{"name":"INTERNET_OPTION_LISTEN_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[473]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_PROXY","features":[473]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_SERVER","features":[473]},{"name":"INTERNET_OPTION_MAX_QUERY_BUFFER_SIZE","features":[473]},{"name":"INTERNET_OPTION_NET_SPEED","features":[473]},{"name":"INTERNET_OPTION_NOCACHE_WRITE_IN_PRIVATE","features":[473]},{"name":"INTERNET_OPTION_NOTIFY_SENDING_COOKIE","features":[473]},{"name":"INTERNET_OPTION_NO_HTTP_SERVER_AUTH","features":[473]},{"name":"INTERNET_OPTION_OFFLINE_MODE","features":[473]},{"name":"INTERNET_OPTION_OFFLINE_SEMANTICS","features":[473]},{"name":"INTERNET_OPTION_OFFLINE_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_OPT_IN_WEAK_SIGNATURE","features":[473]},{"name":"INTERNET_OPTION_ORIGINAL_CONNECT_FLAGS","features":[473]},{"name":"INTERNET_OPTION_PARENT_HANDLE","features":[473]},{"name":"INTERNET_OPTION_PARSE_LINE_FOLDING","features":[473]},{"name":"INTERNET_OPTION_PASSWORD","features":[473]},{"name":"INTERNET_OPTION_PER_CONNECTION_OPTION","features":[473]},{"name":"INTERNET_OPTION_POLICY","features":[473]},{"name":"INTERNET_OPTION_PRESERVE_REFERER_ON_HTTPS_TO_HTTP_REDIRECT","features":[473]},{"name":"INTERNET_OPTION_PRESERVE_REQUEST_SERVER_CREDENTIALS_ON_REDIRECT","features":[473]},{"name":"INTERNET_OPTION_PROXY","features":[473]},{"name":"INTERNET_OPTION_PROXY_AUTH_SCHEME","features":[473]},{"name":"INTERNET_OPTION_PROXY_CREDENTIALS","features":[473]},{"name":"INTERNET_OPTION_PROXY_FROM_REQUEST","features":[473]},{"name":"INTERNET_OPTION_PROXY_PASSWORD","features":[473]},{"name":"INTERNET_OPTION_PROXY_SETTINGS_CHANGED","features":[473]},{"name":"INTERNET_OPTION_PROXY_USERNAME","features":[473]},{"name":"INTERNET_OPTION_READ_BUFFER_SIZE","features":[473]},{"name":"INTERNET_OPTION_RECEIVE_THROUGHPUT","features":[473]},{"name":"INTERNET_OPTION_RECEIVE_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[473]},{"name":"INTERNET_OPTION_REFRESH","features":[473]},{"name":"INTERNET_OPTION_REMOVE_IDENTITY","features":[473]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION","features":[473]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[473]},{"name":"INTERNET_OPTION_REQUEST_FLAGS","features":[473]},{"name":"INTERNET_OPTION_REQUEST_PRIORITY","features":[473]},{"name":"INTERNET_OPTION_REQUEST_TIMES","features":[473]},{"name":"INTERNET_OPTION_RESET","features":[473]},{"name":"INTERNET_OPTION_RESET_URLCACHE_SESSION","features":[473]},{"name":"INTERNET_OPTION_RESPONSE_RESUMABLE","features":[473]},{"name":"INTERNET_OPTION_RESTORE_WORKER_THREAD_DEFAULTS","features":[473]},{"name":"INTERNET_OPTION_SECONDARY_CACHE_KEY","features":[473]},{"name":"INTERNET_OPTION_SECURE_FAILURE","features":[473]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE","features":[473]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[473]},{"name":"INTERNET_OPTION_SECURITY_CONNECTION_INFO","features":[473]},{"name":"INTERNET_OPTION_SECURITY_FLAGS","features":[473]},{"name":"INTERNET_OPTION_SECURITY_KEY_BITNESS","features":[473]},{"name":"INTERNET_OPTION_SECURITY_SELECT_CLIENT_CERT","features":[473]},{"name":"INTERNET_OPTION_SEND_THROUGHPUT","features":[473]},{"name":"INTERNET_OPTION_SEND_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY","features":[473]},{"name":"INTERNET_OPTION_SERVER_ADDRESS_INFO","features":[473]},{"name":"INTERNET_OPTION_SERVER_AUTH_SCHEME","features":[473]},{"name":"INTERNET_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[473]},{"name":"INTERNET_OPTION_SERVER_CREDENTIALS","features":[473]},{"name":"INTERNET_OPTION_SESSION_START_TIME","features":[473]},{"name":"INTERNET_OPTION_SETTINGS_CHANGED","features":[473]},{"name":"INTERNET_OPTION_SET_IN_PRIVATE","features":[473]},{"name":"INTERNET_OPTION_SOCKET_NODELAY","features":[473]},{"name":"INTERNET_OPTION_SOCKET_NOTIFICATION_IOCTL","features":[473]},{"name":"INTERNET_OPTION_SOCKET_SEND_BUFFER_LENGTH","features":[473]},{"name":"INTERNET_OPTION_SOURCE_PORT","features":[473]},{"name":"INTERNET_OPTION_SUPPRESS_BEHAVIOR","features":[473]},{"name":"INTERNET_OPTION_SUPPRESS_SERVER_AUTH","features":[473]},{"name":"INTERNET_OPTION_SYNC_MODE_AUTOMATIC_SESSION_DISABLED","features":[473]},{"name":"INTERNET_OPTION_TCP_FAST_OPEN","features":[473]},{"name":"INTERNET_OPTION_TIMED_CONNECTION_LIMIT_BYPASS","features":[473]},{"name":"INTERNET_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[473]},{"name":"INTERNET_OPTION_TUNNEL_ONLY","features":[473]},{"name":"INTERNET_OPTION_UNLOAD_NOTIFY_EVENT","features":[473]},{"name":"INTERNET_OPTION_UPGRADE_TO_WEB_SOCKET","features":[473]},{"name":"INTERNET_OPTION_URL","features":[473]},{"name":"INTERNET_OPTION_USERNAME","features":[473]},{"name":"INTERNET_OPTION_USER_AGENT","features":[473]},{"name":"INTERNET_OPTION_USER_PASS_SERVER_ONLY","features":[473]},{"name":"INTERNET_OPTION_USE_FIRST_AVAILABLE_CONNECTION","features":[473]},{"name":"INTERNET_OPTION_USE_MODIFIED_HEADER_FILTER","features":[473]},{"name":"INTERNET_OPTION_VERSION","features":[473]},{"name":"INTERNET_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[473]},{"name":"INTERNET_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[473]},{"name":"INTERNET_OPTION_WPAD_SLEEP","features":[473]},{"name":"INTERNET_OPTION_WRITE_BUFFER_SIZE","features":[473]},{"name":"INTERNET_OPTION_WWA_MODE","features":[473]},{"name":"INTERNET_PER_CONN","features":[473]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME","features":[473]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL","features":[473]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS","features":[473]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL","features":[473]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_URL","features":[473]},{"name":"INTERNET_PER_CONN_AUTODISCOVERY_FLAGS","features":[473]},{"name":"INTERNET_PER_CONN_FLAGS","features":[473]},{"name":"INTERNET_PER_CONN_FLAGS_UI","features":[473]},{"name":"INTERNET_PER_CONN_OPTIONA","features":[303,473]},{"name":"INTERNET_PER_CONN_OPTIONW","features":[303,473]},{"name":"INTERNET_PER_CONN_OPTION_LISTA","features":[303,473]},{"name":"INTERNET_PER_CONN_OPTION_LISTW","features":[303,473]},{"name":"INTERNET_PER_CONN_PROXY_BYPASS","features":[473]},{"name":"INTERNET_PER_CONN_PROXY_SERVER","features":[473]},{"name":"INTERNET_PREFETCH_ABORTED","features":[473]},{"name":"INTERNET_PREFETCH_COMPLETE","features":[473]},{"name":"INTERNET_PREFETCH_PROGRESS","features":[473]},{"name":"INTERNET_PREFETCH_STATUS","features":[473]},{"name":"INTERNET_PRIORITY_FOREGROUND","features":[473]},{"name":"INTERNET_PROXY_INFO","features":[473]},{"name":"INTERNET_RAS_INSTALLED","features":[473]},{"name":"INTERNET_REQFLAG_ASYNC","features":[473]},{"name":"INTERNET_REQFLAG_CACHE_WRITE_DISABLED","features":[473]},{"name":"INTERNET_REQFLAG_FROM_APP_CACHE","features":[473]},{"name":"INTERNET_REQFLAG_FROM_CACHE","features":[473]},{"name":"INTERNET_REQFLAG_NET_TIMEOUT","features":[473]},{"name":"INTERNET_REQFLAG_NO_HEADERS","features":[473]},{"name":"INTERNET_REQFLAG_PASSIVE","features":[473]},{"name":"INTERNET_REQFLAG_VIA_PROXY","features":[473]},{"name":"INTERNET_RFC1123_BUFSIZE","features":[473]},{"name":"INTERNET_RFC1123_FORMAT","features":[473]},{"name":"INTERNET_SCHEME","features":[473]},{"name":"INTERNET_SCHEME_DEFAULT","features":[473]},{"name":"INTERNET_SCHEME_FILE","features":[473]},{"name":"INTERNET_SCHEME_FIRST","features":[473]},{"name":"INTERNET_SCHEME_FTP","features":[473]},{"name":"INTERNET_SCHEME_GOPHER","features":[473]},{"name":"INTERNET_SCHEME_HTTP","features":[473]},{"name":"INTERNET_SCHEME_HTTPS","features":[473]},{"name":"INTERNET_SCHEME_JAVASCRIPT","features":[473]},{"name":"INTERNET_SCHEME_LAST","features":[473]},{"name":"INTERNET_SCHEME_MAILTO","features":[473]},{"name":"INTERNET_SCHEME_NEWS","features":[473]},{"name":"INTERNET_SCHEME_PARTIAL","features":[473]},{"name":"INTERNET_SCHEME_RES","features":[473]},{"name":"INTERNET_SCHEME_SOCKS","features":[473]},{"name":"INTERNET_SCHEME_UNKNOWN","features":[473]},{"name":"INTERNET_SCHEME_VBSCRIPT","features":[473]},{"name":"INTERNET_SECURITY_CONNECTION_INFO","features":[303,473,324,387]},{"name":"INTERNET_SECURITY_INFO","features":[303,473,324,387]},{"name":"INTERNET_SERVER_CONNECTION_STATE","features":[303,473]},{"name":"INTERNET_SERVICE_FTP","features":[473]},{"name":"INTERNET_SERVICE_GOPHER","features":[473]},{"name":"INTERNET_SERVICE_HTTP","features":[473]},{"name":"INTERNET_SERVICE_URL","features":[473]},{"name":"INTERNET_STATE","features":[473]},{"name":"INTERNET_STATE_BUSY","features":[473]},{"name":"INTERNET_STATE_CONNECTED","features":[473]},{"name":"INTERNET_STATE_DISCONNECTED","features":[473]},{"name":"INTERNET_STATE_DISCONNECTED_BY_USER","features":[473]},{"name":"INTERNET_STATE_IDLE","features":[473]},{"name":"INTERNET_STATUS_CLOSING_CONNECTION","features":[473]},{"name":"INTERNET_STATUS_CONNECTED_TO_SERVER","features":[473]},{"name":"INTERNET_STATUS_CONNECTING_TO_SERVER","features":[473]},{"name":"INTERNET_STATUS_CONNECTION_CLOSED","features":[473]},{"name":"INTERNET_STATUS_COOKIE","features":[473]},{"name":"INTERNET_STATUS_COOKIE_HISTORY","features":[473]},{"name":"INTERNET_STATUS_COOKIE_RECEIVED","features":[473]},{"name":"INTERNET_STATUS_COOKIE_SENT","features":[473]},{"name":"INTERNET_STATUS_CTL_RESPONSE_RECEIVED","features":[473]},{"name":"INTERNET_STATUS_DETECTING_PROXY","features":[473]},{"name":"INTERNET_STATUS_END_BROWSER_SESSION","features":[473]},{"name":"INTERNET_STATUS_FILTER_CLOSED","features":[473]},{"name":"INTERNET_STATUS_FILTER_CLOSING","features":[473]},{"name":"INTERNET_STATUS_FILTER_CONNECTED","features":[473]},{"name":"INTERNET_STATUS_FILTER_CONNECTING","features":[473]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CLOSING","features":[473]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CREATED","features":[473]},{"name":"INTERNET_STATUS_FILTER_PREFETCH","features":[473]},{"name":"INTERNET_STATUS_FILTER_RECEIVED","features":[473]},{"name":"INTERNET_STATUS_FILTER_RECEIVING","features":[473]},{"name":"INTERNET_STATUS_FILTER_REDIRECT","features":[473]},{"name":"INTERNET_STATUS_FILTER_RESOLVED","features":[473]},{"name":"INTERNET_STATUS_FILTER_RESOLVING","features":[473]},{"name":"INTERNET_STATUS_FILTER_SENDING","features":[473]},{"name":"INTERNET_STATUS_FILTER_SENT","features":[473]},{"name":"INTERNET_STATUS_FILTER_STATE_CHANGE","features":[473]},{"name":"INTERNET_STATUS_HANDLE_CLOSING","features":[473]},{"name":"INTERNET_STATUS_HANDLE_CREATED","features":[473]},{"name":"INTERNET_STATUS_INTERMEDIATE_RESPONSE","features":[473]},{"name":"INTERNET_STATUS_NAME_RESOLVED","features":[473]},{"name":"INTERNET_STATUS_P3P_HEADER","features":[473]},{"name":"INTERNET_STATUS_P3P_POLICYREF","features":[473]},{"name":"INTERNET_STATUS_PREFETCH","features":[473]},{"name":"INTERNET_STATUS_PRIVACY_IMPACTED","features":[473]},{"name":"INTERNET_STATUS_PROXY_CREDENTIALS","features":[473]},{"name":"INTERNET_STATUS_RECEIVING_RESPONSE","features":[473]},{"name":"INTERNET_STATUS_REDIRECT","features":[473]},{"name":"INTERNET_STATUS_REQUEST_COMPLETE","features":[473]},{"name":"INTERNET_STATUS_REQUEST_HEADERS_SET","features":[473]},{"name":"INTERNET_STATUS_REQUEST_SENT","features":[473]},{"name":"INTERNET_STATUS_RESOLVING_NAME","features":[473]},{"name":"INTERNET_STATUS_RESPONSE_HEADERS_SET","features":[473]},{"name":"INTERNET_STATUS_RESPONSE_RECEIVED","features":[473]},{"name":"INTERNET_STATUS_SENDING_COOKIE","features":[473]},{"name":"INTERNET_STATUS_SENDING_REQUEST","features":[473]},{"name":"INTERNET_STATUS_SERVER_CONNECTION_STATE","features":[473]},{"name":"INTERNET_STATUS_SERVER_CREDENTIALS","features":[473]},{"name":"INTERNET_STATUS_STATE_CHANGE","features":[473]},{"name":"INTERNET_STATUS_USER_INPUT_REQUIRED","features":[473]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST","features":[473]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST_RESET","features":[473]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY","features":[473]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY_RESET","features":[473]},{"name":"INTERNET_SUPPRESS_RESET_ALL","features":[473]},{"name":"INTERNET_VERSION_INFO","features":[473]},{"name":"IProofOfPossessionCookieInfoManager","features":[473]},{"name":"IProofOfPossessionCookieInfoManager2","features":[473]},{"name":"IRF_ASYNC","features":[473]},{"name":"IRF_NO_WAIT","features":[473]},{"name":"IRF_SYNC","features":[473]},{"name":"IRF_USE_CONTEXT","features":[473]},{"name":"ISO_FORCE_DISCONNECTED","features":[473]},{"name":"ISO_FORCE_OFFLINE","features":[473]},{"name":"ISO_GLOBAL","features":[473]},{"name":"ISO_REGISTRY","features":[473]},{"name":"ImportCookieFileA","features":[303,473]},{"name":"ImportCookieFileW","features":[303,473]},{"name":"IncomingCookieState","features":[473]},{"name":"IncrementUrlCacheHeaderData","features":[303,473]},{"name":"InternalInternetGetCookie","features":[473]},{"name":"InternetAlgIdToStringA","features":[303,473,387]},{"name":"InternetAlgIdToStringW","features":[303,473,387]},{"name":"InternetAttemptConnect","features":[473]},{"name":"InternetAutodial","features":[303,473]},{"name":"InternetAutodialHangup","features":[303,473]},{"name":"InternetCanonicalizeUrlA","features":[303,473]},{"name":"InternetCanonicalizeUrlW","features":[303,473]},{"name":"InternetCheckConnectionA","features":[303,473]},{"name":"InternetCheckConnectionW","features":[303,473]},{"name":"InternetClearAllPerSiteCookieDecisions","features":[303,473]},{"name":"InternetCloseHandle","features":[303,473]},{"name":"InternetCombineUrlA","features":[303,473]},{"name":"InternetCombineUrlW","features":[303,473]},{"name":"InternetConfirmZoneCrossing","features":[303,473]},{"name":"InternetConfirmZoneCrossingA","features":[303,473]},{"name":"InternetConfirmZoneCrossingW","features":[303,473]},{"name":"InternetConnectA","features":[473]},{"name":"InternetConnectW","features":[473]},{"name":"InternetConvertUrlFromWireToWideChar","features":[303,473]},{"name":"InternetCookieHistory","features":[303,473]},{"name":"InternetCookieState","features":[473]},{"name":"InternetCrackUrlA","features":[303,472,473]},{"name":"InternetCrackUrlW","features":[303,472,473]},{"name":"InternetCreateUrlA","features":[303,473]},{"name":"InternetCreateUrlW","features":[303,473]},{"name":"InternetDial","features":[303,473]},{"name":"InternetDialA","features":[303,473]},{"name":"InternetDialW","features":[303,473]},{"name":"InternetEnumPerSiteCookieDecisionA","features":[303,473]},{"name":"InternetEnumPerSiteCookieDecisionW","features":[303,473]},{"name":"InternetErrorDlg","features":[303,473]},{"name":"InternetFindNextFileA","features":[303,473]},{"name":"InternetFindNextFileW","features":[303,473]},{"name":"InternetFortezzaCommand","features":[303,473]},{"name":"InternetFreeCookies","features":[303,473]},{"name":"InternetFreeProxyInfoList","features":[303,473]},{"name":"InternetGetConnectedState","features":[303,473]},{"name":"InternetGetConnectedStateEx","features":[303,473]},{"name":"InternetGetConnectedStateExA","features":[303,473]},{"name":"InternetGetConnectedStateExW","features":[303,473]},{"name":"InternetGetCookieA","features":[303,473]},{"name":"InternetGetCookieEx2","features":[303,473]},{"name":"InternetGetCookieExA","features":[303,473]},{"name":"InternetGetCookieExW","features":[303,473]},{"name":"InternetGetCookieW","features":[303,473]},{"name":"InternetGetLastResponseInfoA","features":[303,473]},{"name":"InternetGetLastResponseInfoW","features":[303,473]},{"name":"InternetGetPerSiteCookieDecisionA","features":[303,473]},{"name":"InternetGetPerSiteCookieDecisionW","features":[303,473]},{"name":"InternetGetProxyForUrl","features":[303,473]},{"name":"InternetGetSecurityInfoByURL","features":[303,473,387]},{"name":"InternetGetSecurityInfoByURLA","features":[303,473,387]},{"name":"InternetGetSecurityInfoByURLW","features":[303,473,387]},{"name":"InternetGoOnline","features":[303,473]},{"name":"InternetGoOnlineA","features":[303,473]},{"name":"InternetGoOnlineW","features":[303,473]},{"name":"InternetHangUp","features":[473]},{"name":"InternetInitializeAutoProxyDll","features":[303,473]},{"name":"InternetLockRequestFile","features":[303,473]},{"name":"InternetOpenA","features":[473]},{"name":"InternetOpenUrlA","features":[473]},{"name":"InternetOpenUrlW","features":[473]},{"name":"InternetOpenW","features":[473]},{"name":"InternetQueryDataAvailable","features":[303,473]},{"name":"InternetQueryFortezzaStatus","features":[303,473]},{"name":"InternetQueryOptionA","features":[303,473]},{"name":"InternetQueryOptionW","features":[303,473]},{"name":"InternetReadFile","features":[303,473]},{"name":"InternetReadFileExA","features":[303,473]},{"name":"InternetReadFileExW","features":[303,473]},{"name":"InternetSecurityProtocolToStringA","features":[303,473]},{"name":"InternetSecurityProtocolToStringW","features":[303,473]},{"name":"InternetSetCookieA","features":[303,473]},{"name":"InternetSetCookieEx2","features":[303,473]},{"name":"InternetSetCookieExA","features":[473]},{"name":"InternetSetCookieExW","features":[473]},{"name":"InternetSetCookieW","features":[303,473]},{"name":"InternetSetDialState","features":[303,473]},{"name":"InternetSetDialStateA","features":[303,473]},{"name":"InternetSetDialStateW","features":[303,473]},{"name":"InternetSetFilePointer","features":[473]},{"name":"InternetSetOptionA","features":[303,473]},{"name":"InternetSetOptionExA","features":[303,473]},{"name":"InternetSetOptionExW","features":[303,473]},{"name":"InternetSetOptionW","features":[303,473]},{"name":"InternetSetPerSiteCookieDecisionA","features":[303,473]},{"name":"InternetSetPerSiteCookieDecisionW","features":[303,473]},{"name":"InternetSetStatusCallback","features":[473]},{"name":"InternetSetStatusCallbackA","features":[473]},{"name":"InternetSetStatusCallbackW","features":[473]},{"name":"InternetShowSecurityInfoByURL","features":[303,473]},{"name":"InternetShowSecurityInfoByURLA","features":[303,473]},{"name":"InternetShowSecurityInfoByURLW","features":[303,473]},{"name":"InternetTimeFromSystemTime","features":[303,473]},{"name":"InternetTimeFromSystemTimeA","features":[303,473]},{"name":"InternetTimeFromSystemTimeW","features":[303,473]},{"name":"InternetTimeToSystemTime","features":[303,473]},{"name":"InternetTimeToSystemTimeA","features":[303,473]},{"name":"InternetTimeToSystemTimeW","features":[303,473]},{"name":"InternetUnlockRequestFile","features":[303,473]},{"name":"InternetWriteFile","features":[303,473]},{"name":"InternetWriteFileExA","features":[303,473]},{"name":"InternetWriteFileExW","features":[303,473]},{"name":"IsDomainLegalCookieDomainA","features":[303,473]},{"name":"IsDomainLegalCookieDomainW","features":[303,473]},{"name":"IsHostInProxyBypassList","features":[303,473]},{"name":"IsProfilesEnabled","features":[303,473]},{"name":"IsUrlCacheEntryExpiredA","features":[303,473]},{"name":"IsUrlCacheEntryExpiredW","features":[303,473]},{"name":"LOCAL_NAMESPACE_PREFIX","features":[473]},{"name":"LOCAL_NAMESPACE_PREFIX_W","features":[473]},{"name":"LPINTERNET_STATUS_CALLBACK","features":[473]},{"name":"LoadUrlCacheContent","features":[303,473]},{"name":"MAX_CACHE_ENTRY_INFO_SIZE","features":[473]},{"name":"MAX_GOPHER_ATTRIBUTE_NAME","features":[473]},{"name":"MAX_GOPHER_CATEGORY_NAME","features":[473]},{"name":"MAX_GOPHER_DISPLAY_TEXT","features":[473]},{"name":"MAX_GOPHER_HOST_NAME","features":[473]},{"name":"MAX_GOPHER_SELECTOR_TEXT","features":[473]},{"name":"MIN_GOPHER_ATTRIBUTE_LENGTH","features":[473]},{"name":"MUST_REVALIDATE_CACHE_ENTRY","features":[473]},{"name":"MaxPrivacySettings","features":[473]},{"name":"NORMAL_CACHE_ENTRY","features":[473]},{"name":"NameResolutionEnd","features":[473]},{"name":"NameResolutionStart","features":[473]},{"name":"OTHER_USER_CACHE_ENTRY","features":[473]},{"name":"OutgoingCookieState","features":[473]},{"name":"PENDING_DELETE_CACHE_ENTRY","features":[473]},{"name":"PFN_AUTH_NOTIFY","features":[473]},{"name":"PFN_DIAL_HANDLER","features":[303,473]},{"name":"POLICY_EXTENSION_TYPE_NONE","features":[473]},{"name":"POLICY_EXTENSION_TYPE_WINHTTP","features":[473]},{"name":"POLICY_EXTENSION_TYPE_WININET","features":[473]},{"name":"POLICY_EXTENSION_VERSION1","features":[473]},{"name":"POST_CHECK_CACHE_ENTRY","features":[473]},{"name":"POST_RESPONSE_CACHE_ENTRY","features":[473]},{"name":"PRIVACY_IMPACTED_CACHE_ENTRY","features":[473]},{"name":"PRIVACY_MODE_CACHE_ENTRY","features":[473]},{"name":"PRIVACY_TEMPLATE_ADVANCED","features":[473]},{"name":"PRIVACY_TEMPLATE_CUSTOM","features":[473]},{"name":"PRIVACY_TEMPLATE_HIGH","features":[473]},{"name":"PRIVACY_TEMPLATE_LOW","features":[473]},{"name":"PRIVACY_TEMPLATE_MAX","features":[473]},{"name":"PRIVACY_TEMPLATE_MEDIUM","features":[473]},{"name":"PRIVACY_TEMPLATE_MEDIUM_HIGH","features":[473]},{"name":"PRIVACY_TEMPLATE_MEDIUM_LOW","features":[473]},{"name":"PRIVACY_TEMPLATE_NO_COOKIES","features":[473]},{"name":"PRIVACY_TYPE_FIRST_PARTY","features":[473]},{"name":"PRIVACY_TYPE_THIRD_PARTY","features":[473]},{"name":"PROXY_AUTO_DETECT_TYPE","features":[473]},{"name":"PROXY_AUTO_DETECT_TYPE_DHCP","features":[473]},{"name":"PROXY_AUTO_DETECT_TYPE_DNS_A","features":[473]},{"name":"PROXY_TYPE_AUTO_DETECT","features":[473]},{"name":"PROXY_TYPE_AUTO_PROXY_URL","features":[473]},{"name":"PROXY_TYPE_DIRECT","features":[473]},{"name":"PROXY_TYPE_PROXY","features":[473]},{"name":"ParseX509EncodedCertificateForListBoxEntry","features":[473]},{"name":"PerformOperationOverUrlCacheA","features":[303,473]},{"name":"PrivacyGetZonePreferenceW","features":[473]},{"name":"PrivacySetZonePreferenceW","features":[473]},{"name":"ProofOfPossessionCookieInfo","features":[473]},{"name":"ProofOfPossessionCookieInfoManager","features":[473]},{"name":"REDIRECT_CACHE_ENTRY","features":[473]},{"name":"REGSTR_DIAL_AUTOCONNECT","features":[473]},{"name":"REGSTR_LEASH_LEGACY_COOKIES","features":[473]},{"name":"REQUEST_TIMES","features":[473]},{"name":"ReadGuidsForConnectedNetworks","features":[303,473]},{"name":"ReadUrlCacheEntryStream","features":[303,473]},{"name":"ReadUrlCacheEntryStreamEx","features":[303,473]},{"name":"RegisterUrlCacheNotification","features":[303,473]},{"name":"ResumeSuspendedDownload","features":[303,473]},{"name":"RetrieveUrlCacheEntryFileA","features":[303,473]},{"name":"RetrieveUrlCacheEntryFileW","features":[303,473]},{"name":"RetrieveUrlCacheEntryStreamA","features":[303,473]},{"name":"RetrieveUrlCacheEntryStreamW","features":[303,473]},{"name":"RunOnceUrlCache","features":[303,473]},{"name":"SECURITY_FLAG_128BIT","features":[473]},{"name":"SECURITY_FLAG_40BIT","features":[473]},{"name":"SECURITY_FLAG_56BIT","features":[473]},{"name":"SECURITY_FLAG_FORTEZZA","features":[473]},{"name":"SECURITY_FLAG_IETFSSL4","features":[473]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[473]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[473]},{"name":"SECURITY_FLAG_IGNORE_REVOCATION","features":[473]},{"name":"SECURITY_FLAG_IGNORE_WEAK_SIGNATURE","features":[473]},{"name":"SECURITY_FLAG_IGNORE_WRONG_USAGE","features":[473]},{"name":"SECURITY_FLAG_NORMALBITNESS","features":[473]},{"name":"SECURITY_FLAG_OPT_IN_WEAK_SIGNATURE","features":[473]},{"name":"SECURITY_FLAG_PCT","features":[473]},{"name":"SECURITY_FLAG_PCT4","features":[473]},{"name":"SECURITY_FLAG_SSL","features":[473]},{"name":"SECURITY_FLAG_SSL3","features":[473]},{"name":"SECURITY_FLAG_UNKNOWNBIT","features":[473]},{"name":"SHORTPATH_CACHE_ENTRY","features":[473]},{"name":"SPARSE_CACHE_ENTRY","features":[473]},{"name":"STATIC_CACHE_ENTRY","features":[473]},{"name":"STICKY_CACHE_ENTRY","features":[473]},{"name":"SetUrlCacheConfigInfoA","features":[303,473]},{"name":"SetUrlCacheConfigInfoW","features":[303,473]},{"name":"SetUrlCacheEntryGroup","features":[303,473]},{"name":"SetUrlCacheEntryGroupA","features":[303,473]},{"name":"SetUrlCacheEntryGroupW","features":[303,473]},{"name":"SetUrlCacheEntryInfoA","features":[303,473]},{"name":"SetUrlCacheEntryInfoW","features":[303,473]},{"name":"SetUrlCacheGroupAttributeA","features":[303,473]},{"name":"SetUrlCacheGroupAttributeW","features":[303,473]},{"name":"SetUrlCacheHeaderData","features":[303,473]},{"name":"ShowClientAuthCerts","features":[303,473]},{"name":"ShowSecurityInfo","features":[303,473,324,387]},{"name":"ShowX509EncodedCertificate","features":[303,473]},{"name":"TLSHandshakeEnd","features":[473]},{"name":"TLSHandshakeStart","features":[473]},{"name":"TRACK_OFFLINE_CACHE_ENTRY","features":[473]},{"name":"TRACK_ONLINE_CACHE_ENTRY","features":[473]},{"name":"URLCACHE_ENTRY_INFO","features":[303,473]},{"name":"URLHISTORY_CACHE_ENTRY","features":[473]},{"name":"URL_CACHE_LIMIT_TYPE","features":[473]},{"name":"URL_COMPONENTSA","features":[473]},{"name":"URL_COMPONENTSW","features":[473]},{"name":"UnlockUrlCacheEntryFile","features":[303,473]},{"name":"UnlockUrlCacheEntryFileA","features":[303,473]},{"name":"UnlockUrlCacheEntryFileW","features":[303,473]},{"name":"UnlockUrlCacheEntryStream","features":[303,473]},{"name":"UpdateUrlCacheContentPath","features":[303,473]},{"name":"UrlCacheCheckEntriesExist","features":[303,473]},{"name":"UrlCacheCloseEntryHandle","features":[473]},{"name":"UrlCacheContainerSetEntryMaximumAge","features":[473]},{"name":"UrlCacheCreateContainer","features":[473]},{"name":"UrlCacheFindFirstEntry","features":[303,473]},{"name":"UrlCacheFindNextEntry","features":[303,473]},{"name":"UrlCacheFreeEntryInfo","features":[303,473]},{"name":"UrlCacheFreeGlobalSpace","features":[473]},{"name":"UrlCacheGetContentPaths","features":[473]},{"name":"UrlCacheGetEntryInfo","features":[303,473]},{"name":"UrlCacheGetGlobalCacheSize","features":[473]},{"name":"UrlCacheGetGlobalLimit","features":[473]},{"name":"UrlCacheLimitTypeAppContainer","features":[473]},{"name":"UrlCacheLimitTypeAppContainerTotal","features":[473]},{"name":"UrlCacheLimitTypeIE","features":[473]},{"name":"UrlCacheLimitTypeIETotal","features":[473]},{"name":"UrlCacheLimitTypeNum","features":[473]},{"name":"UrlCacheReadEntryStream","features":[473]},{"name":"UrlCacheReloadSettings","features":[473]},{"name":"UrlCacheRetrieveEntryFile","features":[303,473]},{"name":"UrlCacheRetrieveEntryStream","features":[303,473]},{"name":"UrlCacheServer","features":[473]},{"name":"UrlCacheSetGlobalLimit","features":[473]},{"name":"UrlCacheUpdateEntryExtraData","features":[473]},{"name":"WININET_API_FLAG_ASYNC","features":[473]},{"name":"WININET_API_FLAG_SYNC","features":[473]},{"name":"WININET_API_FLAG_USE_CONTEXT","features":[473]},{"name":"WININET_PROXY_INFO","features":[303,473]},{"name":"WININET_PROXY_INFO_LIST","features":[303,473]},{"name":"WININET_SYNC_MODE","features":[473]},{"name":"WININET_SYNC_MODE_ALWAYS","features":[473]},{"name":"WININET_SYNC_MODE_AUTOMATIC","features":[473]},{"name":"WININET_SYNC_MODE_DEFAULT","features":[473]},{"name":"WININET_SYNC_MODE_NEVER","features":[473]},{"name":"WININET_SYNC_MODE_ONCE_PER_SESSION","features":[473]},{"name":"WININET_SYNC_MODE_ON_EXPIRY","features":[473]},{"name":"WPAD_CACHE_DELETE","features":[473]},{"name":"WPAD_CACHE_DELETE_ALL","features":[473]},{"name":"WPAD_CACHE_DELETE_CURRENT","features":[473]},{"name":"XDR_CACHE_ENTRY","features":[473]},{"name":"pfnInternetDeInitializeAutoProxyDll","features":[303,473]},{"name":"pfnInternetGetProxyInfo","features":[303,473]},{"name":"pfnInternetInitializeAutoProxyDll","features":[303,473]}],"477":[{"name":"AAL5_MODE_MESSAGE","features":[316]},{"name":"AAL5_MODE_STREAMING","features":[316]},{"name":"AAL5_PARAMETERS","features":[316]},{"name":"AAL5_SSCS_FRAME_RELAY","features":[316]},{"name":"AAL5_SSCS_NULL","features":[316]},{"name":"AAL5_SSCS_SSCOP_ASSURED","features":[316]},{"name":"AAL5_SSCS_SSCOP_NON_ASSURED","features":[316]},{"name":"AALTYPE_5","features":[316]},{"name":"AALTYPE_USER","features":[316]},{"name":"AALUSER_PARAMETERS","features":[316]},{"name":"AAL_PARAMETERS_IE","features":[316]},{"name":"AAL_TYPE","features":[316]},{"name":"ADDRESS_FAMILY","features":[316]},{"name":"ADDRINFOA","features":[316]},{"name":"ADDRINFOEX2A","features":[316]},{"name":"ADDRINFOEX2W","features":[316]},{"name":"ADDRINFOEX3","features":[316]},{"name":"ADDRINFOEX4","features":[303,316]},{"name":"ADDRINFOEX5","features":[303,316]},{"name":"ADDRINFOEX6","features":[303,316]},{"name":"ADDRINFOEXA","features":[316]},{"name":"ADDRINFOEXW","features":[316]},{"name":"ADDRINFOEX_VERSION_2","features":[316]},{"name":"ADDRINFOEX_VERSION_3","features":[316]},{"name":"ADDRINFOEX_VERSION_4","features":[316]},{"name":"ADDRINFOEX_VERSION_5","features":[316]},{"name":"ADDRINFOEX_VERSION_6","features":[316]},{"name":"ADDRINFOW","features":[316]},{"name":"ADDRINFO_DNS_SERVER","features":[316]},{"name":"AFPROTOCOLS","features":[316]},{"name":"AF_12844","features":[316]},{"name":"AF_APPLETALK","features":[316]},{"name":"AF_ATM","features":[316]},{"name":"AF_BAN","features":[316]},{"name":"AF_CCITT","features":[316]},{"name":"AF_CHAOS","features":[316]},{"name":"AF_CLUSTER","features":[316]},{"name":"AF_DATAKIT","features":[316]},{"name":"AF_DECnet","features":[316]},{"name":"AF_DLI","features":[316]},{"name":"AF_ECMA","features":[316]},{"name":"AF_FIREFOX","features":[316]},{"name":"AF_HYLINK","features":[316]},{"name":"AF_HYPERV","features":[316]},{"name":"AF_ICLFXBM","features":[316]},{"name":"AF_IMPLINK","features":[316]},{"name":"AF_INET","features":[316]},{"name":"AF_INET6","features":[316]},{"name":"AF_IPX","features":[316]},{"name":"AF_IRDA","features":[316]},{"name":"AF_ISO","features":[316]},{"name":"AF_LAT","features":[316]},{"name":"AF_LINK","features":[316]},{"name":"AF_MAX","features":[316]},{"name":"AF_NETBIOS","features":[316]},{"name":"AF_NETDES","features":[316]},{"name":"AF_NS","features":[316]},{"name":"AF_OSI","features":[316]},{"name":"AF_PUP","features":[316]},{"name":"AF_SNA","features":[316]},{"name":"AF_TCNMESSAGE","features":[316]},{"name":"AF_TCNPROCESS","features":[316]},{"name":"AF_UNIX","features":[316]},{"name":"AF_UNKNOWN1","features":[316]},{"name":"AF_UNSPEC","features":[316]},{"name":"AF_VOICEVIEW","features":[316]},{"name":"AI_ADDRCONFIG","features":[316]},{"name":"AI_ALL","features":[316]},{"name":"AI_BYPASS_DNS_CACHE","features":[316]},{"name":"AI_CANONNAME","features":[316]},{"name":"AI_DISABLE_IDN_ENCODING","features":[316]},{"name":"AI_DNS_ONLY","features":[316]},{"name":"AI_DNS_RESPONSE_HOSTFILE","features":[316]},{"name":"AI_DNS_RESPONSE_SECURE","features":[316]},{"name":"AI_DNS_SERVER_TYPE_DOH","features":[316]},{"name":"AI_DNS_SERVER_TYPE_UDP","features":[316]},{"name":"AI_DNS_SERVER_UDP_FALLBACK","features":[316]},{"name":"AI_EXCLUSIVE_CUSTOM_SERVERS","features":[316]},{"name":"AI_EXTENDED","features":[316]},{"name":"AI_FILESERVER","features":[316]},{"name":"AI_FORCE_CLEAR_TEXT","features":[316]},{"name":"AI_FQDN","features":[316]},{"name":"AI_NON_AUTHORITATIVE","features":[316]},{"name":"AI_NUMERICHOST","features":[316]},{"name":"AI_NUMERICSERV","features":[316]},{"name":"AI_PASSIVE","features":[316]},{"name":"AI_REQUIRE_SECURE","features":[316]},{"name":"AI_RESOLUTION_HANDLE","features":[316]},{"name":"AI_RETURN_PREFERRED_NAMES","features":[316]},{"name":"AI_RETURN_RESPONSE_FLAGS","features":[316]},{"name":"AI_RETURN_TTL","features":[316]},{"name":"AI_SECURE","features":[316]},{"name":"AI_SECURE_WITH_FALLBACK","features":[316]},{"name":"AI_V4MAPPED","features":[316]},{"name":"ARP_HARDWARE_TYPE","features":[316]},{"name":"ARP_HEADER","features":[316]},{"name":"ARP_HW_802","features":[316]},{"name":"ARP_HW_ENET","features":[316]},{"name":"ARP_OPCODE","features":[316]},{"name":"ARP_REQUEST","features":[316]},{"name":"ARP_RESPONSE","features":[316]},{"name":"ASSOCIATE_NAMERES_CONTEXT","features":[316]},{"name":"ASSOCIATE_NAMERES_CONTEXT_INPUT","features":[316]},{"name":"ATMPROTO_AAL1","features":[316]},{"name":"ATMPROTO_AAL2","features":[316]},{"name":"ATMPROTO_AAL34","features":[316]},{"name":"ATMPROTO_AAL5","features":[316]},{"name":"ATMPROTO_AALUSER","features":[316]},{"name":"ATM_ADDRESS","features":[316]},{"name":"ATM_ADDR_SIZE","features":[316]},{"name":"ATM_AESA","features":[316]},{"name":"ATM_BHLI","features":[316]},{"name":"ATM_BLLI","features":[316]},{"name":"ATM_BLLI_IE","features":[316]},{"name":"ATM_BROADBAND_BEARER_CAPABILITY_IE","features":[316]},{"name":"ATM_CALLING_PARTY_NUMBER_IE","features":[316]},{"name":"ATM_CAUSE_IE","features":[316]},{"name":"ATM_CONNECTION_ID","features":[316]},{"name":"ATM_E164","features":[316]},{"name":"ATM_NSAP","features":[316]},{"name":"ATM_PVC_PARAMS","features":[316]},{"name":"ATM_QOS_CLASS_IE","features":[316]},{"name":"ATM_TD","features":[303,316]},{"name":"ATM_TRAFFIC_DESCRIPTOR_IE","features":[303,316]},{"name":"ATM_TRANSIT_NETWORK_SELECTION_IE","features":[316]},{"name":"AcceptEx","features":[303,316,308]},{"name":"BASE_PROTOCOL","features":[316]},{"name":"BCOB_A","features":[316]},{"name":"BCOB_C","features":[316]},{"name":"BCOB_X","features":[316]},{"name":"BHLI_HighLayerProfile","features":[316]},{"name":"BHLI_ISO","features":[316]},{"name":"BHLI_UserSpecific","features":[316]},{"name":"BHLI_VendorSpecificAppId","features":[316]},{"name":"BIGENDIAN","features":[316]},{"name":"BITS_PER_BYTE","features":[316]},{"name":"BLLI_L2_ELAPB","features":[316]},{"name":"BLLI_L2_HDLC_ABM","features":[316]},{"name":"BLLI_L2_HDLC_ARM","features":[316]},{"name":"BLLI_L2_HDLC_NRM","features":[316]},{"name":"BLLI_L2_ISO_1745","features":[316]},{"name":"BLLI_L2_ISO_7776","features":[316]},{"name":"BLLI_L2_LLC","features":[316]},{"name":"BLLI_L2_MODE_EXT","features":[316]},{"name":"BLLI_L2_MODE_NORMAL","features":[316]},{"name":"BLLI_L2_Q921","features":[316]},{"name":"BLLI_L2_Q922","features":[316]},{"name":"BLLI_L2_USER_SPECIFIED","features":[316]},{"name":"BLLI_L2_X25L","features":[316]},{"name":"BLLI_L2_X25M","features":[316]},{"name":"BLLI_L2_X75","features":[316]},{"name":"BLLI_L3_IPI_IP","features":[316]},{"name":"BLLI_L3_IPI_SNAP","features":[316]},{"name":"BLLI_L3_ISO_8208","features":[316]},{"name":"BLLI_L3_ISO_TR9577","features":[316]},{"name":"BLLI_L3_MODE_EXT","features":[316]},{"name":"BLLI_L3_MODE_NORMAL","features":[316]},{"name":"BLLI_L3_PACKET_1024","features":[316]},{"name":"BLLI_L3_PACKET_128","features":[316]},{"name":"BLLI_L3_PACKET_16","features":[316]},{"name":"BLLI_L3_PACKET_2048","features":[316]},{"name":"BLLI_L3_PACKET_256","features":[316]},{"name":"BLLI_L3_PACKET_32","features":[316]},{"name":"BLLI_L3_PACKET_4096","features":[316]},{"name":"BLLI_L3_PACKET_512","features":[316]},{"name":"BLLI_L3_PACKET_64","features":[316]},{"name":"BLLI_L3_SIO_8473","features":[316]},{"name":"BLLI_L3_T70","features":[316]},{"name":"BLLI_L3_USER_SPECIFIED","features":[316]},{"name":"BLLI_L3_X223","features":[316]},{"name":"BLLI_L3_X25","features":[316]},{"name":"BYTE_ORDER","features":[316]},{"name":"CAUSE_AAL_PARAMETERS_UNSUPPORTED","features":[316]},{"name":"CAUSE_ACCESS_INFORMAION_DISCARDED","features":[316]},{"name":"CAUSE_BEARER_CAPABILITY_UNAUTHORIZED","features":[316]},{"name":"CAUSE_BEARER_CAPABILITY_UNAVAILABLE","features":[316]},{"name":"CAUSE_BEARER_CAPABILITY_UNIMPLEMENTED","features":[316]},{"name":"CAUSE_CALL_REJECTED","features":[316]},{"name":"CAUSE_CHANNEL_NONEXISTENT","features":[316]},{"name":"CAUSE_COND_PERMANENT","features":[316]},{"name":"CAUSE_COND_TRANSIENT","features":[316]},{"name":"CAUSE_COND_UNKNOWN","features":[316]},{"name":"CAUSE_DESTINATION_OUT_OF_ORDER","features":[316]},{"name":"CAUSE_INCOMPATIBLE_DESTINATION","features":[316]},{"name":"CAUSE_INCORRECT_MESSAGE_LENGTH","features":[316]},{"name":"CAUSE_INVALID_CALL_REFERENCE","features":[316]},{"name":"CAUSE_INVALID_ENDPOINT_REFERENCE","features":[316]},{"name":"CAUSE_INVALID_IE_CONTENTS","features":[316]},{"name":"CAUSE_INVALID_NUMBER_FORMAT","features":[316]},{"name":"CAUSE_INVALID_STATE_FOR_MESSAGE","features":[316]},{"name":"CAUSE_INVALID_TRANSIT_NETWORK_SELECTION","features":[316]},{"name":"CAUSE_LOC_BEYOND_INTERWORKING","features":[316]},{"name":"CAUSE_LOC_INTERNATIONAL_NETWORK","features":[316]},{"name":"CAUSE_LOC_PRIVATE_LOCAL","features":[316]},{"name":"CAUSE_LOC_PRIVATE_REMOTE","features":[316]},{"name":"CAUSE_LOC_PUBLIC_LOCAL","features":[316]},{"name":"CAUSE_LOC_PUBLIC_REMOTE","features":[316]},{"name":"CAUSE_LOC_TRANSIT_NETWORK","features":[316]},{"name":"CAUSE_LOC_USER","features":[316]},{"name":"CAUSE_MANDATORY_IE_MISSING","features":[316]},{"name":"CAUSE_NA_ABNORMAL","features":[316]},{"name":"CAUSE_NA_NORMAL","features":[316]},{"name":"CAUSE_NETWORK_OUT_OF_ORDER","features":[316]},{"name":"CAUSE_NORMAL_CALL_CLEARING","features":[316]},{"name":"CAUSE_NORMAL_UNSPECIFIED","features":[316]},{"name":"CAUSE_NO_ROUTE_TO_DESTINATION","features":[316]},{"name":"CAUSE_NO_ROUTE_TO_TRANSIT_NETWORK","features":[316]},{"name":"CAUSE_NO_USER_RESPONDING","features":[316]},{"name":"CAUSE_NO_VPI_VCI_AVAILABLE","features":[316]},{"name":"CAUSE_NUMBER_CHANGED","features":[316]},{"name":"CAUSE_OPTION_UNAVAILABLE","features":[316]},{"name":"CAUSE_PROTOCOL_ERROR","features":[316]},{"name":"CAUSE_PU_PROVIDER","features":[316]},{"name":"CAUSE_PU_USER","features":[316]},{"name":"CAUSE_QOS_UNAVAILABLE","features":[316]},{"name":"CAUSE_REASON_IE_INSUFFICIENT","features":[316]},{"name":"CAUSE_REASON_IE_MISSING","features":[316]},{"name":"CAUSE_REASON_USER","features":[316]},{"name":"CAUSE_RECOVERY_ON_TIMEOUT","features":[316]},{"name":"CAUSE_RESOURCE_UNAVAILABLE","features":[316]},{"name":"CAUSE_STATUS_ENQUIRY_RESPONSE","features":[316]},{"name":"CAUSE_TEMPORARY_FAILURE","features":[316]},{"name":"CAUSE_TOO_MANY_PENDING_ADD_PARTY","features":[316]},{"name":"CAUSE_UNALLOCATED_NUMBER","features":[316]},{"name":"CAUSE_UNIMPLEMENTED_IE","features":[316]},{"name":"CAUSE_UNIMPLEMENTED_MESSAGE_TYPE","features":[316]},{"name":"CAUSE_UNSUPPORTED_TRAFFIC_PARAMETERS","features":[316]},{"name":"CAUSE_USER_BUSY","features":[316]},{"name":"CAUSE_USER_CELL_RATE_UNAVAILABLE","features":[316]},{"name":"CAUSE_USER_REJECTS_CLIR","features":[316]},{"name":"CAUSE_VPI_VCI_UNACCEPTABLE","features":[316]},{"name":"CAUSE_VPI_VCI_UNAVAILABLE","features":[316]},{"name":"CF_ACCEPT","features":[316]},{"name":"CF_DEFER","features":[316]},{"name":"CF_REJECT","features":[316]},{"name":"CLIP_NOT","features":[316]},{"name":"CLIP_SUS","features":[316]},{"name":"CMSGHDR","features":[316]},{"name":"COMP_EQUAL","features":[316]},{"name":"COMP_NOTLESS","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_HARDWARE_SLOT_ALLOCATED","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_INVALID","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_POLICY_ERROR","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SERVICE_UNAVAILABLE","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SOFTWARE_SLOT_ALLOCATED","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SYSTEM_ERROR","features":[316]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_TRANSPORT_DISCONNECTED","features":[316]},{"name":"CSADDR_INFO","features":[316]},{"name":"DE_REUSE_SOCKET","features":[316]},{"name":"DL_ADDRESS_LENGTH_MAXIMUM","features":[316]},{"name":"DL_EI48","features":[316]},{"name":"DL_EI64","features":[316]},{"name":"DL_EUI48","features":[316]},{"name":"DL_EUI64","features":[316]},{"name":"DL_HEADER_LENGTH_MAXIMUM","features":[316]},{"name":"DL_OUI","features":[316]},{"name":"DL_TEREDO_ADDRESS","features":[316]},{"name":"DL_TEREDO_ADDRESS_PRV","features":[316]},{"name":"DL_TUNNEL_ADDRESS","features":[316,309]},{"name":"ETHERNET_HEADER","features":[316]},{"name":"ETHERNET_TYPE_802_1AD","features":[316]},{"name":"ETHERNET_TYPE_802_1Q","features":[316]},{"name":"ETHERNET_TYPE_ARP","features":[316]},{"name":"ETHERNET_TYPE_IPV4","features":[316]},{"name":"ETHERNET_TYPE_IPV6","features":[316]},{"name":"ETHERNET_TYPE_MINIMUM","features":[316]},{"name":"ETH_LENGTH_OF_HEADER","features":[316]},{"name":"ETH_LENGTH_OF_SNAP_HEADER","features":[316]},{"name":"ETH_LENGTH_OF_VLAN_HEADER","features":[316]},{"name":"EXT_LEN_UNIT","features":[316]},{"name":"E_WINDOW_ADVANCE_BY_TIME","features":[316]},{"name":"E_WINDOW_USE_AS_DATA_CACHE","features":[316]},{"name":"EnumProtocolsA","features":[316]},{"name":"EnumProtocolsW","features":[316]},{"name":"FALLBACK_INDEX","features":[316]},{"name":"FD_ACCEPT","features":[316]},{"name":"FD_ACCEPT_BIT","features":[316]},{"name":"FD_ADDRESS_LIST_CHANGE_BIT","features":[316]},{"name":"FD_CLOSE","features":[316]},{"name":"FD_CLOSE_BIT","features":[316]},{"name":"FD_CONNECT","features":[316]},{"name":"FD_CONNECT_BIT","features":[316]},{"name":"FD_GROUP_QOS_BIT","features":[316]},{"name":"FD_MAX_EVENTS","features":[316]},{"name":"FD_OOB","features":[316]},{"name":"FD_OOB_BIT","features":[316]},{"name":"FD_QOS_BIT","features":[316]},{"name":"FD_READ","features":[316]},{"name":"FD_READ_BIT","features":[316]},{"name":"FD_ROUTING_INTERFACE_CHANGE_BIT","features":[316]},{"name":"FD_SET","features":[316]},{"name":"FD_SETSIZE","features":[316]},{"name":"FD_WRITE","features":[316]},{"name":"FD_WRITE_BIT","features":[316]},{"name":"FIOASYNC","features":[316]},{"name":"FIONBIO","features":[316]},{"name":"FIONREAD","features":[316]},{"name":"FLOWSPEC","features":[316]},{"name":"FROM_PROTOCOL_INFO","features":[316]},{"name":"FallbackIndexMax","features":[316]},{"name":"FallbackIndexTcpFastopen","features":[316]},{"name":"FreeAddrInfoEx","features":[316]},{"name":"FreeAddrInfoExW","features":[316]},{"name":"FreeAddrInfoW","features":[316]},{"name":"GAI_STRERROR_BUFFER_SIZE","features":[316]},{"name":"GROUP_FILTER","features":[316]},{"name":"GROUP_REQ","features":[316]},{"name":"GROUP_SOURCE_REQ","features":[316]},{"name":"GetAcceptExSockaddrs","features":[316]},{"name":"GetAddrInfoExA","features":[303,316,308]},{"name":"GetAddrInfoExCancel","features":[303,316]},{"name":"GetAddrInfoExOverlappedResult","features":[303,316,308]},{"name":"GetAddrInfoExW","features":[303,316,308]},{"name":"GetAddrInfoW","features":[316]},{"name":"GetAddressByNameA","features":[303,316]},{"name":"GetAddressByNameW","features":[303,316]},{"name":"GetHostNameW","features":[316]},{"name":"GetNameByTypeA","features":[316]},{"name":"GetNameByTypeW","features":[316]},{"name":"GetNameInfoW","features":[316]},{"name":"GetServiceA","features":[303,316]},{"name":"GetServiceW","features":[303,316]},{"name":"GetTypeByNameA","features":[316]},{"name":"GetTypeByNameW","features":[316]},{"name":"HOSTENT","features":[316]},{"name":"IAS_ATTRIB_INT","features":[316]},{"name":"IAS_ATTRIB_NO_ATTRIB","features":[316]},{"name":"IAS_ATTRIB_NO_CLASS","features":[316]},{"name":"IAS_ATTRIB_OCTETSEQ","features":[316]},{"name":"IAS_ATTRIB_STR","features":[316]},{"name":"IAS_MAX_ATTRIBNAME","features":[316]},{"name":"IAS_MAX_CLASSNAME","features":[316]},{"name":"IAS_MAX_OCTET_STRING","features":[316]},{"name":"IAS_MAX_USER_STRING","features":[316]},{"name":"ICMP4_TIME_EXCEED_CODE","features":[316]},{"name":"ICMP4_TIME_EXCEED_REASSEMBLY","features":[316]},{"name":"ICMP4_TIME_EXCEED_TRANSIT","features":[316]},{"name":"ICMP4_UNREACH_ADMIN","features":[316]},{"name":"ICMP4_UNREACH_CODE","features":[316]},{"name":"ICMP4_UNREACH_FRAG_NEEDED","features":[316]},{"name":"ICMP4_UNREACH_HOST","features":[316]},{"name":"ICMP4_UNREACH_HOST_ADMIN","features":[316]},{"name":"ICMP4_UNREACH_HOST_TOS","features":[316]},{"name":"ICMP4_UNREACH_HOST_UNKNOWN","features":[316]},{"name":"ICMP4_UNREACH_ISOLATED","features":[316]},{"name":"ICMP4_UNREACH_NET","features":[316]},{"name":"ICMP4_UNREACH_NET_ADMIN","features":[316]},{"name":"ICMP4_UNREACH_NET_TOS","features":[316]},{"name":"ICMP4_UNREACH_NET_UNKNOWN","features":[316]},{"name":"ICMP4_UNREACH_PORT","features":[316]},{"name":"ICMP4_UNREACH_PROTOCOL","features":[316]},{"name":"ICMP4_UNREACH_SOURCEROUTE_FAILED","features":[316]},{"name":"ICMP6_DST_UNREACH_ADDR","features":[316]},{"name":"ICMP6_DST_UNREACH_ADMIN","features":[316]},{"name":"ICMP6_DST_UNREACH_BEYONDSCOPE","features":[316]},{"name":"ICMP6_DST_UNREACH_NOPORT","features":[316]},{"name":"ICMP6_DST_UNREACH_NOROUTE","features":[316]},{"name":"ICMP6_PARAMPROB_FIRSTFRAGMENT","features":[316]},{"name":"ICMP6_PARAMPROB_HEADER","features":[316]},{"name":"ICMP6_PARAMPROB_NEXTHEADER","features":[316]},{"name":"ICMP6_PARAMPROB_OPTION","features":[316]},{"name":"ICMP6_TIME_EXCEED_REASSEMBLY","features":[316]},{"name":"ICMP6_TIME_EXCEED_TRANSIT","features":[316]},{"name":"ICMPV4_ADDRESS_MASK_MESSAGE","features":[316]},{"name":"ICMPV4_INVALID_PREFERENCE_LEVEL","features":[316]},{"name":"ICMPV4_ROUTER_ADVERT_ENTRY","features":[316]},{"name":"ICMPV4_ROUTER_ADVERT_HEADER","features":[316]},{"name":"ICMPV4_ROUTER_SOLICIT","features":[316]},{"name":"ICMPV4_TIMESTAMP_MESSAGE","features":[316]},{"name":"ICMPV6_ECHO_REQUEST_FLAG_REVERSE","features":[316]},{"name":"ICMP_ERROR_INFO","features":[316]},{"name":"ICMP_HEADER","features":[316]},{"name":"ICMP_MESSAGE","features":[316]},{"name":"IE_AALParameters","features":[316]},{"name":"IE_BHLI","features":[316]},{"name":"IE_BLLI","features":[316]},{"name":"IE_BroadbandBearerCapability","features":[316]},{"name":"IE_CalledPartyNumber","features":[316]},{"name":"IE_CalledPartySubaddress","features":[316]},{"name":"IE_CallingPartyNumber","features":[316]},{"name":"IE_CallingPartySubaddress","features":[316]},{"name":"IE_Cause","features":[316]},{"name":"IE_QOSClass","features":[316]},{"name":"IE_TrafficDescriptor","features":[316]},{"name":"IE_TransitNetworkSelection","features":[316]},{"name":"IFF_BROADCAST","features":[316]},{"name":"IFF_LOOPBACK","features":[316]},{"name":"IFF_MULTICAST","features":[316]},{"name":"IFF_POINTTOPOINT","features":[316]},{"name":"IFF_UP","features":[316]},{"name":"IGMPV3_QUERY_HEADER","features":[316]},{"name":"IGMPV3_REPORT_HEADER","features":[316]},{"name":"IGMPV3_REPORT_RECORD_HEADER","features":[316]},{"name":"IGMP_HEADER","features":[316]},{"name":"IGMP_LEAVE_GROUP_TYPE","features":[316]},{"name":"IGMP_MAX_RESP_CODE_TYPE","features":[316]},{"name":"IGMP_MAX_RESP_CODE_TYPE_FLOAT","features":[316]},{"name":"IGMP_MAX_RESP_CODE_TYPE_NORMAL","features":[316]},{"name":"IGMP_QUERY_TYPE","features":[316]},{"name":"IGMP_VERSION1_REPORT_TYPE","features":[316]},{"name":"IGMP_VERSION2_REPORT_TYPE","features":[316]},{"name":"IGMP_VERSION3_REPORT_TYPE","features":[316]},{"name":"IMPLINK_HIGHEXPER","features":[316]},{"name":"IMPLINK_IP","features":[316]},{"name":"IMPLINK_LOWEXPER","features":[316]},{"name":"IN4ADDR_LINKLOCALPREFIX_LENGTH","features":[316]},{"name":"IN4ADDR_LOOPBACK","features":[316]},{"name":"IN4ADDR_LOOPBACKPREFIX_LENGTH","features":[316]},{"name":"IN4ADDR_MULTICASTPREFIX_LENGTH","features":[316]},{"name":"IN6ADDR_6TO4PREFIX_LENGTH","features":[316]},{"name":"IN6ADDR_LINKLOCALPREFIX_LENGTH","features":[316]},{"name":"IN6ADDR_MULTICASTPREFIX_LENGTH","features":[316]},{"name":"IN6ADDR_SOLICITEDNODEMULTICASTPREFIX_LENGTH","features":[316]},{"name":"IN6ADDR_TEREDOPREFIX_LENGTH","features":[316]},{"name":"IN6ADDR_V4MAPPEDPREFIX_LENGTH","features":[316]},{"name":"IN6_ADDR","features":[316]},{"name":"IN6_EMBEDDEDV4_BITS_IN_BYTE","features":[316]},{"name":"IN6_EMBEDDEDV4_UOCTET_POSITION","features":[316]},{"name":"IN6_PKTINFO","features":[316]},{"name":"IN6_PKTINFO_EX","features":[316]},{"name":"INADDR_LOOPBACK","features":[316]},{"name":"INADDR_NONE","features":[316]},{"name":"INCL_WINSOCK_API_PROTOTYPES","features":[316]},{"name":"INCL_WINSOCK_API_TYPEDEFS","features":[316]},{"name":"INET6_ADDRSTRLEN","features":[316]},{"name":"INET_ADDRSTRLEN","features":[316]},{"name":"INET_PORT_RANGE","features":[316]},{"name":"INET_PORT_RESERVATION_INFORMATION","features":[316]},{"name":"INET_PORT_RESERVATION_INSTANCE","features":[316]},{"name":"INET_PORT_RESERVATION_TOKEN","features":[316]},{"name":"INTERFACE_INFO","features":[316]},{"name":"INTERFACE_INFO_EX","features":[316]},{"name":"INVALID_SOCKET","features":[316]},{"name":"IN_ADDR","features":[316]},{"name":"IN_CLASSA_HOST","features":[316]},{"name":"IN_CLASSA_MAX","features":[316]},{"name":"IN_CLASSA_NET","features":[316]},{"name":"IN_CLASSA_NSHIFT","features":[316]},{"name":"IN_CLASSB_HOST","features":[316]},{"name":"IN_CLASSB_MAX","features":[316]},{"name":"IN_CLASSB_NET","features":[316]},{"name":"IN_CLASSB_NSHIFT","features":[316]},{"name":"IN_CLASSC_HOST","features":[316]},{"name":"IN_CLASSC_NET","features":[316]},{"name":"IN_CLASSC_NSHIFT","features":[316]},{"name":"IN_CLASSD_HOST","features":[316]},{"name":"IN_CLASSD_NET","features":[316]},{"name":"IN_CLASSD_NSHIFT","features":[316]},{"name":"IN_PKTINFO","features":[316]},{"name":"IN_PKTINFO_EX","features":[316]},{"name":"IN_RECVERR","features":[316]},{"name":"IOCPARM_MASK","features":[316]},{"name":"IOC_IN","features":[316]},{"name":"IOC_INOUT","features":[316]},{"name":"IOC_OUT","features":[316]},{"name":"IOC_PROTOCOL","features":[316]},{"name":"IOC_UNIX","features":[316]},{"name":"IOC_VENDOR","features":[316]},{"name":"IOC_VOID","features":[316]},{"name":"IOC_WS2","features":[316]},{"name":"IP4_OFF_MASK","features":[316]},{"name":"IP6F_MORE_FRAG","features":[316]},{"name":"IP6F_OFF_MASK","features":[316]},{"name":"IP6F_RESERVED_MASK","features":[316]},{"name":"IP6OPT_JUMBO","features":[316]},{"name":"IP6OPT_MUTABLE","features":[316]},{"name":"IP6OPT_NSAP_ADDR","features":[316]},{"name":"IP6OPT_PAD1","features":[316]},{"name":"IP6OPT_PADN","features":[316]},{"name":"IP6OPT_ROUTER_ALERT","features":[316]},{"name":"IP6OPT_TUNNEL_LIMIT","features":[316]},{"name":"IP6OPT_TYPE_DISCARD","features":[316]},{"name":"IP6OPT_TYPE_FORCEICMP","features":[316]},{"name":"IP6OPT_TYPE_ICMP","features":[316]},{"name":"IP6OPT_TYPE_SKIP","features":[316]},{"name":"IP6T_SO_ORIGINAL_DST","features":[316]},{"name":"IPPORT_BIFFUDP","features":[316]},{"name":"IPPORT_CHARGEN","features":[316]},{"name":"IPPORT_CMDSERVER","features":[316]},{"name":"IPPORT_DAYTIME","features":[316]},{"name":"IPPORT_DISCARD","features":[316]},{"name":"IPPORT_DYNAMIC_MAX","features":[316]},{"name":"IPPORT_DYNAMIC_MIN","features":[316]},{"name":"IPPORT_ECHO","features":[316]},{"name":"IPPORT_EFSSERVER","features":[316]},{"name":"IPPORT_EPMAP","features":[316]},{"name":"IPPORT_EXECSERVER","features":[316]},{"name":"IPPORT_FINGER","features":[316]},{"name":"IPPORT_FTP","features":[316]},{"name":"IPPORT_FTP_DATA","features":[316]},{"name":"IPPORT_HTTPS","features":[316]},{"name":"IPPORT_IMAP","features":[316]},{"name":"IPPORT_IMAP3","features":[316]},{"name":"IPPORT_LDAP","features":[316]},{"name":"IPPORT_LOGINSERVER","features":[316]},{"name":"IPPORT_MICROSOFT_DS","features":[316]},{"name":"IPPORT_MSP","features":[316]},{"name":"IPPORT_MTP","features":[316]},{"name":"IPPORT_NAMESERVER","features":[316]},{"name":"IPPORT_NETBIOS_DGM","features":[316]},{"name":"IPPORT_NETBIOS_NS","features":[316]},{"name":"IPPORT_NETBIOS_SSN","features":[316]},{"name":"IPPORT_NETSTAT","features":[316]},{"name":"IPPORT_NTP","features":[316]},{"name":"IPPORT_POP3","features":[316]},{"name":"IPPORT_QOTD","features":[316]},{"name":"IPPORT_REGISTERED_MAX","features":[316]},{"name":"IPPORT_REGISTERED_MIN","features":[316]},{"name":"IPPORT_RESERVED","features":[316]},{"name":"IPPORT_RJE","features":[316]},{"name":"IPPORT_ROUTESERVER","features":[316]},{"name":"IPPORT_SMTP","features":[316]},{"name":"IPPORT_SNMP","features":[316]},{"name":"IPPORT_SNMP_TRAP","features":[316]},{"name":"IPPORT_SUPDUP","features":[316]},{"name":"IPPORT_SYSTAT","features":[316]},{"name":"IPPORT_TCPMUX","features":[316]},{"name":"IPPORT_TELNET","features":[316]},{"name":"IPPORT_TFTP","features":[316]},{"name":"IPPORT_TIMESERVER","features":[316]},{"name":"IPPORT_TTYLINK","features":[316]},{"name":"IPPORT_WHOIS","features":[316]},{"name":"IPPORT_WHOSERVER","features":[316]},{"name":"IPPROTO","features":[316]},{"name":"IPPROTO_AH","features":[316]},{"name":"IPPROTO_CBT","features":[316]},{"name":"IPPROTO_DSTOPTS","features":[316]},{"name":"IPPROTO_EGP","features":[316]},{"name":"IPPROTO_ESP","features":[316]},{"name":"IPPROTO_FRAGMENT","features":[316]},{"name":"IPPROTO_GGP","features":[316]},{"name":"IPPROTO_HOPOPTS","features":[316]},{"name":"IPPROTO_ICLFXBM","features":[316]},{"name":"IPPROTO_ICMP","features":[316]},{"name":"IPPROTO_ICMPV6","features":[316]},{"name":"IPPROTO_IDP","features":[316]},{"name":"IPPROTO_IGMP","features":[316]},{"name":"IPPROTO_IGP","features":[316]},{"name":"IPPROTO_IP","features":[316]},{"name":"IPPROTO_IPV4","features":[316]},{"name":"IPPROTO_IPV6","features":[316]},{"name":"IPPROTO_L2TP","features":[316]},{"name":"IPPROTO_MAX","features":[316]},{"name":"IPPROTO_ND","features":[316]},{"name":"IPPROTO_NONE","features":[316]},{"name":"IPPROTO_PGM","features":[316]},{"name":"IPPROTO_PIM","features":[316]},{"name":"IPPROTO_PUP","features":[316]},{"name":"IPPROTO_RAW","features":[316]},{"name":"IPPROTO_RDP","features":[316]},{"name":"IPPROTO_RESERVED_IPSEC","features":[316]},{"name":"IPPROTO_RESERVED_IPSECOFFLOAD","features":[316]},{"name":"IPPROTO_RESERVED_MAX","features":[316]},{"name":"IPPROTO_RESERVED_RAW","features":[316]},{"name":"IPPROTO_RESERVED_WNV","features":[316]},{"name":"IPPROTO_RM","features":[316]},{"name":"IPPROTO_ROUTING","features":[316]},{"name":"IPPROTO_SCTP","features":[316]},{"name":"IPPROTO_ST","features":[316]},{"name":"IPPROTO_TCP","features":[316]},{"name":"IPPROTO_UDP","features":[316]},{"name":"IPTLS_METADATA","features":[316]},{"name":"IPV4_HEADER","features":[316]},{"name":"IPV4_MAX_MINIMUM_MTU","features":[316]},{"name":"IPV4_MINIMUM_MTU","features":[316]},{"name":"IPV4_MIN_MINIMUM_MTU","features":[316]},{"name":"IPV4_OPTION_HEADER","features":[316]},{"name":"IPV4_OPTION_TYPE","features":[316]},{"name":"IPV4_ROUTING_HEADER","features":[316]},{"name":"IPV4_TIMESTAMP_OPTION","features":[316]},{"name":"IPV4_VERSION","features":[316]},{"name":"IPV6_ADD_IFLIST","features":[316]},{"name":"IPV6_ADD_MEMBERSHIP","features":[316]},{"name":"IPV6_CHECKSUM","features":[316]},{"name":"IPV6_DEL_IFLIST","features":[316]},{"name":"IPV6_DONTFRAG","features":[316]},{"name":"IPV6_DROP_MEMBERSHIP","features":[316]},{"name":"IPV6_ECN","features":[316]},{"name":"IPV6_ECN_MASK","features":[316]},{"name":"IPV6_ECN_SHIFT","features":[316]},{"name":"IPV6_EXTENSION_HEADER","features":[316]},{"name":"IPV6_FLOW_LABEL_MASK","features":[316]},{"name":"IPV6_FRAGMENT_HEADER","features":[316]},{"name":"IPV6_FULL_TRAFFIC_CLASS_MASK","features":[316]},{"name":"IPV6_GET_IFLIST","features":[316]},{"name":"IPV6_HDRINCL","features":[316]},{"name":"IPV6_HEADER","features":[316]},{"name":"IPV6_HOPLIMIT","features":[316]},{"name":"IPV6_HOPOPTS","features":[316]},{"name":"IPV6_IFLIST","features":[316]},{"name":"IPV6_JOIN_GROUP","features":[316]},{"name":"IPV6_LEAVE_GROUP","features":[316]},{"name":"IPV6_MINIMUM_MTU","features":[316]},{"name":"IPV6_MREQ","features":[316]},{"name":"IPV6_MTU","features":[316]},{"name":"IPV6_MTU_DISCOVER","features":[316]},{"name":"IPV6_MULTICAST_HOPS","features":[316]},{"name":"IPV6_MULTICAST_IF","features":[316]},{"name":"IPV6_MULTICAST_LOOP","features":[316]},{"name":"IPV6_NEIGHBOR_ADVERTISEMENT_FLAGS","features":[316]},{"name":"IPV6_NRT_INTERFACE","features":[316]},{"name":"IPV6_OPTION_HEADER","features":[316]},{"name":"IPV6_OPTION_JUMBOGRAM","features":[316]},{"name":"IPV6_OPTION_ROUTER_ALERT","features":[316]},{"name":"IPV6_OPTION_TYPE","features":[316]},{"name":"IPV6_PKTINFO","features":[316]},{"name":"IPV6_PKTINFO_EX","features":[316]},{"name":"IPV6_PROTECTION_LEVEL","features":[316]},{"name":"IPV6_RECVDSTADDR","features":[316]},{"name":"IPV6_RECVECN","features":[316]},{"name":"IPV6_RECVERR","features":[316]},{"name":"IPV6_RECVIF","features":[316]},{"name":"IPV6_RECVRTHDR","features":[316]},{"name":"IPV6_RECVTCLASS","features":[316]},{"name":"IPV6_ROUTER_ADVERTISEMENT_FLAGS","features":[316]},{"name":"IPV6_ROUTING_HEADER","features":[316]},{"name":"IPV6_RTHDR","features":[316]},{"name":"IPV6_TCLASS","features":[316]},{"name":"IPV6_TRAFFIC_CLASS_MASK","features":[316]},{"name":"IPV6_UNICAST_HOPS","features":[316]},{"name":"IPV6_UNICAST_IF","features":[316]},{"name":"IPV6_USER_MTU","features":[316]},{"name":"IPV6_V6ONLY","features":[316]},{"name":"IPV6_VERSION","features":[316]},{"name":"IPV6_WFP_REDIRECT_CONTEXT","features":[316]},{"name":"IPV6_WFP_REDIRECT_RECORDS","features":[316]},{"name":"IPX_ADDRESS","features":[316]},{"name":"IPX_ADDRESS_DATA","features":[303,316]},{"name":"IPX_ADDRESS_NOTIFY","features":[316]},{"name":"IPX_DSTYPE","features":[316]},{"name":"IPX_EXTENDED_ADDRESS","features":[316]},{"name":"IPX_FILTERPTYPE","features":[316]},{"name":"IPX_GETNETINFO","features":[316]},{"name":"IPX_GETNETINFO_NORIP","features":[316]},{"name":"IPX_IMMEDIATESPXACK","features":[316]},{"name":"IPX_MAXSIZE","features":[316]},{"name":"IPX_MAX_ADAPTER_NUM","features":[316]},{"name":"IPX_NETNUM_DATA","features":[316]},{"name":"IPX_PTYPE","features":[316]},{"name":"IPX_RECEIVE_BROADCAST","features":[316]},{"name":"IPX_RECVHDR","features":[316]},{"name":"IPX_RERIPNETNUMBER","features":[316]},{"name":"IPX_SPXCONNSTATUS_DATA","features":[316]},{"name":"IPX_SPXGETCONNECTIONSTATUS","features":[316]},{"name":"IPX_STOPFILTERPTYPE","features":[316]},{"name":"IP_ADD_IFLIST","features":[316]},{"name":"IP_ADD_MEMBERSHIP","features":[316]},{"name":"IP_ADD_SOURCE_MEMBERSHIP","features":[316]},{"name":"IP_BLOCK_SOURCE","features":[316]},{"name":"IP_DEFAULT_MULTICAST_LOOP","features":[316]},{"name":"IP_DEFAULT_MULTICAST_TTL","features":[316]},{"name":"IP_DEL_IFLIST","features":[316]},{"name":"IP_DONTFRAGMENT","features":[316]},{"name":"IP_DROP_MEMBERSHIP","features":[316]},{"name":"IP_DROP_SOURCE_MEMBERSHIP","features":[316]},{"name":"IP_ECN","features":[316]},{"name":"IP_GET_IFLIST","features":[316]},{"name":"IP_HDRINCL","features":[316]},{"name":"IP_HOPLIMIT","features":[316]},{"name":"IP_IFLIST","features":[316]},{"name":"IP_MAX_MEMBERSHIPS","features":[316]},{"name":"IP_MREQ","features":[316]},{"name":"IP_MREQ_SOURCE","features":[316]},{"name":"IP_MSFILTER","features":[316]},{"name":"IP_MTU","features":[316]},{"name":"IP_MTU_DISCOVER","features":[316]},{"name":"IP_MULTICAST_IF","features":[316]},{"name":"IP_MULTICAST_LOOP","features":[316]},{"name":"IP_MULTICAST_TTL","features":[316]},{"name":"IP_NRT_INTERFACE","features":[316]},{"name":"IP_OPTIONS","features":[316]},{"name":"IP_OPTION_TIMESTAMP_ADDRESS","features":[316]},{"name":"IP_OPTION_TIMESTAMP_FLAGS","features":[316]},{"name":"IP_OPTION_TIMESTAMP_ONLY","features":[316]},{"name":"IP_OPTION_TIMESTAMP_SPECIFIC_ADDRESS","features":[316]},{"name":"IP_OPT_EOL","features":[316]},{"name":"IP_OPT_LSRR","features":[316]},{"name":"IP_OPT_MULTIDEST","features":[316]},{"name":"IP_OPT_NOP","features":[316]},{"name":"IP_OPT_ROUTER_ALERT","features":[316]},{"name":"IP_OPT_RR","features":[316]},{"name":"IP_OPT_SECURITY","features":[316]},{"name":"IP_OPT_SID","features":[316]},{"name":"IP_OPT_SSRR","features":[316]},{"name":"IP_OPT_TS","features":[316]},{"name":"IP_ORIGINAL_ARRIVAL_IF","features":[316]},{"name":"IP_PKTINFO","features":[316]},{"name":"IP_PKTINFO_EX","features":[316]},{"name":"IP_PMTUDISC_DO","features":[316]},{"name":"IP_PMTUDISC_DONT","features":[316]},{"name":"IP_PMTUDISC_MAX","features":[316]},{"name":"IP_PMTUDISC_NOT_SET","features":[316]},{"name":"IP_PMTUDISC_PROBE","features":[316]},{"name":"IP_PROTECTION_LEVEL","features":[316]},{"name":"IP_RECEIVE_BROADCAST","features":[316]},{"name":"IP_RECVDSTADDR","features":[316]},{"name":"IP_RECVECN","features":[316]},{"name":"IP_RECVERR","features":[316]},{"name":"IP_RECVIF","features":[316]},{"name":"IP_RECVRTHDR","features":[316]},{"name":"IP_RECVTCLASS","features":[316]},{"name":"IP_RECVTOS","features":[316]},{"name":"IP_RECVTTL","features":[316]},{"name":"IP_RTHDR","features":[316]},{"name":"IP_TCLASS","features":[316]},{"name":"IP_TOS","features":[316]},{"name":"IP_TTL","features":[316]},{"name":"IP_UNBLOCK_SOURCE","features":[316]},{"name":"IP_UNICAST_IF","features":[316]},{"name":"IP_UNSPECIFIED_HOP_LIMIT","features":[316]},{"name":"IP_UNSPECIFIED_TYPE_OF_SERVICE","features":[316]},{"name":"IP_UNSPECIFIED_USER_MTU","features":[316]},{"name":"IP_USER_MTU","features":[316]},{"name":"IP_VER_MASK","features":[316]},{"name":"IP_WFP_REDIRECT_CONTEXT","features":[316]},{"name":"IP_WFP_REDIRECT_RECORDS","features":[316]},{"name":"IRDA_PROTO_SOCK_STREAM","features":[316]},{"name":"IRLMP_9WIRE_MODE","features":[316]},{"name":"IRLMP_DISCOVERY_MODE","features":[316]},{"name":"IRLMP_ENUMDEVICES","features":[316]},{"name":"IRLMP_EXCLUSIVE_MODE","features":[316]},{"name":"IRLMP_IAS_QUERY","features":[316]},{"name":"IRLMP_IAS_SET","features":[316]},{"name":"IRLMP_IRLPT_MODE","features":[316]},{"name":"IRLMP_PARAMETERS","features":[316]},{"name":"IRLMP_SEND_PDU_LEN","features":[316]},{"name":"IRLMP_SHARP_MODE","features":[316]},{"name":"IRLMP_TINYTP_MODE","features":[316]},{"name":"ISOPROTO_CLNP","features":[316]},{"name":"ISOPROTO_CLTP","features":[316]},{"name":"ISOPROTO_ESIS","features":[316]},{"name":"ISOPROTO_INACT_NL","features":[316]},{"name":"ISOPROTO_INTRAISIS","features":[316]},{"name":"ISOPROTO_TP","features":[316]},{"name":"ISOPROTO_TP0","features":[316]},{"name":"ISOPROTO_TP1","features":[316]},{"name":"ISOPROTO_TP2","features":[316]},{"name":"ISOPROTO_TP3","features":[316]},{"name":"ISOPROTO_TP4","features":[316]},{"name":"ISOPROTO_X25","features":[316]},{"name":"ISO_EXP_DATA_NUSE","features":[316]},{"name":"ISO_EXP_DATA_USE","features":[316]},{"name":"ISO_HIERARCHICAL","features":[316]},{"name":"ISO_MAX_ADDR_LENGTH","features":[316]},{"name":"ISO_NON_HIERARCHICAL","features":[316]},{"name":"InetNtopW","features":[316]},{"name":"InetPtonW","features":[316]},{"name":"IpDadStateDeprecated","features":[316]},{"name":"IpDadStateDuplicate","features":[316]},{"name":"IpDadStateInvalid","features":[316]},{"name":"IpDadStatePreferred","features":[316]},{"name":"IpDadStateTentative","features":[316]},{"name":"IpPrefixOriginDhcp","features":[316]},{"name":"IpPrefixOriginManual","features":[316]},{"name":"IpPrefixOriginOther","features":[316]},{"name":"IpPrefixOriginRouterAdvertisement","features":[316]},{"name":"IpPrefixOriginUnchanged","features":[316]},{"name":"IpPrefixOriginWellKnown","features":[316]},{"name":"IpSuffixOriginDhcp","features":[316]},{"name":"IpSuffixOriginLinkLayerAddress","features":[316]},{"name":"IpSuffixOriginManual","features":[316]},{"name":"IpSuffixOriginOther","features":[316]},{"name":"IpSuffixOriginRandom","features":[316]},{"name":"IpSuffixOriginUnchanged","features":[316]},{"name":"IpSuffixOriginWellKnown","features":[316]},{"name":"JL_BOTH","features":[316]},{"name":"JL_RECEIVER_ONLY","features":[316]},{"name":"JL_SENDER_ONLY","features":[316]},{"name":"LAYERED_PROTOCOL","features":[316]},{"name":"LINGER","features":[316]},{"name":"LITTLEENDIAN","features":[316]},{"name":"LM_BAUD_115200","features":[316]},{"name":"LM_BAUD_1152K","features":[316]},{"name":"LM_BAUD_1200","features":[316]},{"name":"LM_BAUD_16M","features":[316]},{"name":"LM_BAUD_19200","features":[316]},{"name":"LM_BAUD_2400","features":[316]},{"name":"LM_BAUD_38400","features":[316]},{"name":"LM_BAUD_4M","features":[316]},{"name":"LM_BAUD_57600","features":[316]},{"name":"LM_BAUD_576K","features":[316]},{"name":"LM_BAUD_9600","features":[316]},{"name":"LM_HB1_Computer","features":[316]},{"name":"LM_HB1_Fax","features":[316]},{"name":"LM_HB1_LANAccess","features":[316]},{"name":"LM_HB1_Modem","features":[316]},{"name":"LM_HB1_PDA_Palmtop","features":[316]},{"name":"LM_HB1_PnP","features":[316]},{"name":"LM_HB1_Printer","features":[316]},{"name":"LM_HB2_FileServer","features":[316]},{"name":"LM_HB2_Telephony","features":[316]},{"name":"LM_HB_Extension","features":[316]},{"name":"LM_IRPARMS","features":[316]},{"name":"LOG2_BITS_PER_BYTE","features":[316]},{"name":"LPBLOCKINGCALLBACK","features":[303,316]},{"name":"LPCONDITIONPROC","features":[316]},{"name":"LPFN_ACCEPTEX","features":[303,316,308]},{"name":"LPFN_CONNECTEX","features":[303,316,308]},{"name":"LPFN_DISCONNECTEX","features":[303,316,308]},{"name":"LPFN_GETACCEPTEXSOCKADDRS","features":[316]},{"name":"LPFN_NSPAPI","features":[316]},{"name":"LPFN_RIOCLOSECOMPLETIONQUEUE","features":[316]},{"name":"LPFN_RIOCREATECOMPLETIONQUEUE","features":[303,316]},{"name":"LPFN_RIOCREATEREQUESTQUEUE","features":[316]},{"name":"LPFN_RIODEQUEUECOMPLETION","features":[316]},{"name":"LPFN_RIODEREGISTERBUFFER","features":[316]},{"name":"LPFN_RIONOTIFY","features":[316]},{"name":"LPFN_RIORECEIVE","features":[303,316]},{"name":"LPFN_RIORECEIVEEX","features":[316]},{"name":"LPFN_RIOREGISTERBUFFER","features":[316]},{"name":"LPFN_RIORESIZECOMPLETIONQUEUE","features":[303,316]},{"name":"LPFN_RIORESIZEREQUESTQUEUE","features":[303,316]},{"name":"LPFN_RIOSEND","features":[303,316]},{"name":"LPFN_RIOSENDEX","features":[303,316]},{"name":"LPFN_TRANSMITFILE","features":[303,316,308]},{"name":"LPFN_TRANSMITPACKETS","features":[303,316,308]},{"name":"LPFN_WSAPOLL","features":[316]},{"name":"LPFN_WSARECVMSG","features":[303,316,308]},{"name":"LPFN_WSASENDMSG","features":[303,316,308]},{"name":"LPLOOKUPSERVICE_COMPLETION_ROUTINE","features":[303,316,308]},{"name":"LPNSPCLEANUP","features":[316]},{"name":"LPNSPGETSERVICECLASSINFO","features":[316]},{"name":"LPNSPINSTALLSERVICECLASS","features":[316]},{"name":"LPNSPIOCTL","features":[303,316,308]},{"name":"LPNSPLOOKUPSERVICEBEGIN","features":[303,316,354]},{"name":"LPNSPLOOKUPSERVICEEND","features":[303,316]},{"name":"LPNSPLOOKUPSERVICENEXT","features":[303,316,354]},{"name":"LPNSPREMOVESERVICECLASS","features":[316]},{"name":"LPNSPSETSERVICE","features":[316,354]},{"name":"LPNSPSTARTUP","features":[303,316,354,308]},{"name":"LPNSPV2CLEANUP","features":[316]},{"name":"LPNSPV2CLIENTSESSIONRUNDOWN","features":[316]},{"name":"LPNSPV2LOOKUPSERVICEBEGIN","features":[303,316,354]},{"name":"LPNSPV2LOOKUPSERVICEEND","features":[303,316]},{"name":"LPNSPV2LOOKUPSERVICENEXTEX","features":[303,316,354]},{"name":"LPNSPV2SETSERVICEEX","features":[303,316,354]},{"name":"LPNSPV2STARTUP","features":[316]},{"name":"LPSERVICE_CALLBACK_PROC","features":[303,316]},{"name":"LPWPUCLOSEEVENT","features":[303,316]},{"name":"LPWPUCLOSESOCKETHANDLE","features":[316]},{"name":"LPWPUCLOSETHREAD","features":[303,316]},{"name":"LPWPUCOMPLETEOVERLAPPEDREQUEST","features":[303,316,308]},{"name":"LPWPUCREATEEVENT","features":[303,316]},{"name":"LPWPUCREATESOCKETHANDLE","features":[316]},{"name":"LPWPUFDISSET","features":[316]},{"name":"LPWPUGETPROVIDERPATH","features":[316]},{"name":"LPWPUMODIFYIFSHANDLE","features":[316]},{"name":"LPWPUOPENCURRENTTHREAD","features":[303,316]},{"name":"LPWPUPOSTMESSAGE","features":[303,316]},{"name":"LPWPUQUERYBLOCKINGCALLBACK","features":[303,316]},{"name":"LPWPUQUERYSOCKETHANDLECONTEXT","features":[316]},{"name":"LPWPUQUEUEAPC","features":[303,316]},{"name":"LPWPURESETEVENT","features":[303,316]},{"name":"LPWPUSETEVENT","features":[303,316]},{"name":"LPWSAOVERLAPPED_COMPLETION_ROUTINE","features":[303,316,308]},{"name":"LPWSAUSERAPC","features":[316]},{"name":"LPWSCDEINSTALLPROVIDER","features":[316]},{"name":"LPWSCENABLENSPROVIDER","features":[303,316]},{"name":"LPWSCENUMPROTOCOLS","features":[316]},{"name":"LPWSCGETPROVIDERPATH","features":[316]},{"name":"LPWSCINSTALLNAMESPACE","features":[316]},{"name":"LPWSCINSTALLPROVIDER","features":[316]},{"name":"LPWSCUNINSTALLNAMESPACE","features":[316]},{"name":"LPWSCUPDATEPROVIDER","features":[316]},{"name":"LPWSCWRITENAMESPACEORDER","features":[316]},{"name":"LPWSCWRITEPROVIDERORDER","features":[316]},{"name":"LPWSPACCEPT","features":[316]},{"name":"LPWSPADDRESSTOSTRING","features":[316]},{"name":"LPWSPASYNCSELECT","features":[303,316]},{"name":"LPWSPBIND","features":[316]},{"name":"LPWSPCANCELBLOCKINGCALL","features":[316]},{"name":"LPWSPCLEANUP","features":[316]},{"name":"LPWSPCLOSESOCKET","features":[316]},{"name":"LPWSPCONNECT","features":[316]},{"name":"LPWSPDUPLICATESOCKET","features":[316]},{"name":"LPWSPENUMNETWORKEVENTS","features":[303,316]},{"name":"LPWSPEVENTSELECT","features":[303,316]},{"name":"LPWSPGETOVERLAPPEDRESULT","features":[303,316,308]},{"name":"LPWSPGETPEERNAME","features":[316]},{"name":"LPWSPGETQOSBYNAME","features":[303,316]},{"name":"LPWSPGETSOCKNAME","features":[316]},{"name":"LPWSPGETSOCKOPT","features":[316]},{"name":"LPWSPIOCTL","features":[303,316,308]},{"name":"LPWSPJOINLEAF","features":[316]},{"name":"LPWSPLISTEN","features":[316]},{"name":"LPWSPRECV","features":[303,316,308]},{"name":"LPWSPRECVDISCONNECT","features":[316]},{"name":"LPWSPRECVFROM","features":[303,316,308]},{"name":"LPWSPSELECT","features":[316]},{"name":"LPWSPSEND","features":[303,316,308]},{"name":"LPWSPSENDDISCONNECT","features":[316]},{"name":"LPWSPSENDTO","features":[303,316,308]},{"name":"LPWSPSETSOCKOPT","features":[316]},{"name":"LPWSPSHUTDOWN","features":[316]},{"name":"LPWSPSOCKET","features":[316]},{"name":"LPWSPSTARTUP","features":[303,316,308]},{"name":"LPWSPSTRINGTOADDRESS","features":[316]},{"name":"LSP_CRYPTO_COMPRESS","features":[316]},{"name":"LSP_FIREWALL","features":[316]},{"name":"LSP_INBOUND_MODIFY","features":[316]},{"name":"LSP_INSPECTOR","features":[316]},{"name":"LSP_LOCAL_CACHE","features":[316]},{"name":"LSP_OUTBOUND_MODIFY","features":[316]},{"name":"LSP_PROXY","features":[316]},{"name":"LSP_REDIRECTOR","features":[316]},{"name":"LSP_SYSTEM","features":[316]},{"name":"LUP_ADDRCONFIG","features":[316]},{"name":"LUP_API_ANSI","features":[316]},{"name":"LUP_CONTAINERS","features":[316]},{"name":"LUP_DEEP","features":[316]},{"name":"LUP_DISABLE_IDN_ENCODING","features":[316]},{"name":"LUP_DNS_ONLY","features":[316]},{"name":"LUP_DUAL_ADDR","features":[316]},{"name":"LUP_EXCLUSIVE_CUSTOM_SERVERS","features":[316]},{"name":"LUP_EXTENDED_QUERYSET","features":[316]},{"name":"LUP_FILESERVER","features":[316]},{"name":"LUP_FLUSHCACHE","features":[316]},{"name":"LUP_FLUSHPREVIOUS","features":[316]},{"name":"LUP_FORCE_CLEAR_TEXT","features":[316]},{"name":"LUP_NEAREST","features":[316]},{"name":"LUP_NOCONTAINERS","features":[316]},{"name":"LUP_NON_AUTHORITATIVE","features":[316]},{"name":"LUP_REQUIRE_SECURE","features":[316]},{"name":"LUP_RESOLUTION_HANDLE","features":[316]},{"name":"LUP_RES_SERVICE","features":[316]},{"name":"LUP_RETURN_ADDR","features":[316]},{"name":"LUP_RETURN_ALIASES","features":[316]},{"name":"LUP_RETURN_ALL","features":[316]},{"name":"LUP_RETURN_BLOB","features":[316]},{"name":"LUP_RETURN_COMMENT","features":[316]},{"name":"LUP_RETURN_NAME","features":[316]},{"name":"LUP_RETURN_PREFERRED_NAMES","features":[316]},{"name":"LUP_RETURN_QUERY_STRING","features":[316]},{"name":"LUP_RETURN_RESPONSE_FLAGS","features":[316]},{"name":"LUP_RETURN_TTL","features":[316]},{"name":"LUP_RETURN_TYPE","features":[316]},{"name":"LUP_RETURN_VERSION","features":[316]},{"name":"LUP_SECURE","features":[316]},{"name":"LUP_SECURE_WITH_FALLBACK","features":[316]},{"name":"LinkLocalAlwaysOff","features":[316]},{"name":"LinkLocalAlwaysOn","features":[316]},{"name":"LinkLocalDelayed","features":[316]},{"name":"LinkLocalUnchanged","features":[316]},{"name":"LmCharSetASCII","features":[316]},{"name":"LmCharSetISO_8859_1","features":[316]},{"name":"LmCharSetISO_8859_2","features":[316]},{"name":"LmCharSetISO_8859_3","features":[316]},{"name":"LmCharSetISO_8859_4","features":[316]},{"name":"LmCharSetISO_8859_5","features":[316]},{"name":"LmCharSetISO_8859_6","features":[316]},{"name":"LmCharSetISO_8859_7","features":[316]},{"name":"LmCharSetISO_8859_8","features":[316]},{"name":"LmCharSetISO_8859_9","features":[316]},{"name":"LmCharSetUNICODE","features":[316]},{"name":"MAXGETHOSTSTRUCT","features":[316]},{"name":"MAX_IPV4_HLEN","features":[316]},{"name":"MAX_IPV4_PACKET","features":[316]},{"name":"MAX_IPV6_PAYLOAD","features":[316]},{"name":"MAX_MCAST_TTL","features":[316]},{"name":"MAX_PROTOCOL_CHAIN","features":[316]},{"name":"MAX_WINDOW_INCREMENT_PERCENTAGE","features":[316]},{"name":"MCAST_BLOCK_SOURCE","features":[316]},{"name":"MCAST_EXCLUDE","features":[316]},{"name":"MCAST_INCLUDE","features":[316]},{"name":"MCAST_JOIN_GROUP","features":[316]},{"name":"MCAST_JOIN_SOURCE_GROUP","features":[316]},{"name":"MCAST_LEAVE_GROUP","features":[316]},{"name":"MCAST_LEAVE_SOURCE_GROUP","features":[316]},{"name":"MCAST_UNBLOCK_SOURCE","features":[316]},{"name":"MIB_IPPROTO_BBN","features":[316]},{"name":"MIB_IPPROTO_BGP","features":[316]},{"name":"MIB_IPPROTO_CISCO","features":[316]},{"name":"MIB_IPPROTO_DHCP","features":[316]},{"name":"MIB_IPPROTO_DVMRP","features":[316]},{"name":"MIB_IPPROTO_EGP","features":[316]},{"name":"MIB_IPPROTO_EIGRP","features":[316]},{"name":"MIB_IPPROTO_ES_IS","features":[316]},{"name":"MIB_IPPROTO_GGP","features":[316]},{"name":"MIB_IPPROTO_HELLO","features":[316]},{"name":"MIB_IPPROTO_ICMP","features":[316]},{"name":"MIB_IPPROTO_IDPR","features":[316]},{"name":"MIB_IPPROTO_IS_IS","features":[316]},{"name":"MIB_IPPROTO_LOCAL","features":[316]},{"name":"MIB_IPPROTO_NETMGMT","features":[316]},{"name":"MIB_IPPROTO_NT_AUTOSTATIC","features":[316]},{"name":"MIB_IPPROTO_NT_STATIC","features":[316]},{"name":"MIB_IPPROTO_NT_STATIC_NON_DOD","features":[316]},{"name":"MIB_IPPROTO_OSPF","features":[316]},{"name":"MIB_IPPROTO_OTHER","features":[316]},{"name":"MIB_IPPROTO_RIP","features":[316]},{"name":"MIB_IPPROTO_RPL","features":[316]},{"name":"MIT_GUID","features":[316]},{"name":"MIT_IF_LUID","features":[316]},{"name":"MLDV2_QUERY_HEADER","features":[316]},{"name":"MLDV2_REPORT_HEADER","features":[316]},{"name":"MLDV2_REPORT_RECORD_HEADER","features":[316]},{"name":"MLD_HEADER","features":[316]},{"name":"MLD_MAX_RESP_CODE_TYPE","features":[316]},{"name":"MLD_MAX_RESP_CODE_TYPE_FLOAT","features":[316]},{"name":"MLD_MAX_RESP_CODE_TYPE_NORMAL","features":[316]},{"name":"MSG_BCAST","features":[316]},{"name":"MSG_CTRUNC","features":[316]},{"name":"MSG_DONTROUTE","features":[316]},{"name":"MSG_ERRQUEUE","features":[316]},{"name":"MSG_INTERRUPT","features":[316]},{"name":"MSG_MAXIOVLEN","features":[316]},{"name":"MSG_MCAST","features":[316]},{"name":"MSG_OOB","features":[316]},{"name":"MSG_PARTIAL","features":[316]},{"name":"MSG_PEEK","features":[316]},{"name":"MSG_PUSH_IMMEDIATE","features":[316]},{"name":"MSG_TRUNC","features":[316]},{"name":"MSG_WAITALL","features":[316]},{"name":"MULTICAST_MODE_TYPE","features":[316]},{"name":"NAPI_DOMAIN_DESCRIPTION_BLOB","features":[316]},{"name":"NAPI_PROVIDER_INSTALLATION_BLOB","features":[316]},{"name":"NAPI_PROVIDER_LEVEL","features":[316]},{"name":"NAPI_PROVIDER_TYPE","features":[316]},{"name":"ND_NA_FLAG_OVERRIDE","features":[316]},{"name":"ND_NA_FLAG_ROUTER","features":[316]},{"name":"ND_NA_FLAG_SOLICITED","features":[316]},{"name":"ND_NEIGHBOR_ADVERT_HEADER","features":[316]},{"name":"ND_NEIGHBOR_SOLICIT_HEADER","features":[316]},{"name":"ND_OPTION_DNSSL","features":[316]},{"name":"ND_OPTION_HDR","features":[316]},{"name":"ND_OPTION_MTU","features":[316]},{"name":"ND_OPTION_PREFIX_INFO","features":[316]},{"name":"ND_OPTION_RDNSS","features":[316]},{"name":"ND_OPTION_RD_HDR","features":[316]},{"name":"ND_OPTION_ROUTE_INFO","features":[316]},{"name":"ND_OPTION_TYPE","features":[316]},{"name":"ND_OPT_ADVERTISEMENT_INTERVAL","features":[316]},{"name":"ND_OPT_DNSSL","features":[316]},{"name":"ND_OPT_DNSSL_MIN_LEN","features":[316]},{"name":"ND_OPT_HOME_AGENT_INFORMATION","features":[316]},{"name":"ND_OPT_MTU","features":[316]},{"name":"ND_OPT_NBMA_SHORTCUT_LIMIT","features":[316]},{"name":"ND_OPT_PI_FLAG_AUTO","features":[316]},{"name":"ND_OPT_PI_FLAG_ONLINK","features":[316]},{"name":"ND_OPT_PI_FLAG_ROUTE","features":[316]},{"name":"ND_OPT_PI_FLAG_ROUTER_ADDR","features":[316]},{"name":"ND_OPT_PI_FLAG_SITE_PREFIX","features":[316]},{"name":"ND_OPT_PREFIX_INFORMATION","features":[316]},{"name":"ND_OPT_RDNSS","features":[316]},{"name":"ND_OPT_RDNSS_MIN_LEN","features":[316]},{"name":"ND_OPT_REDIRECTED_HEADER","features":[316]},{"name":"ND_OPT_RI_FLAG_PREFERENCE","features":[316]},{"name":"ND_OPT_ROUTE_INFO","features":[316]},{"name":"ND_OPT_SOURCE_ADDR_LIST","features":[316]},{"name":"ND_OPT_SOURCE_LINKADDR","features":[316]},{"name":"ND_OPT_TARGET_ADDR_LIST","features":[316]},{"name":"ND_OPT_TARGET_LINKADDR","features":[316]},{"name":"ND_RA_FLAG_HOME_AGENT","features":[316]},{"name":"ND_RA_FLAG_MANAGED","features":[316]},{"name":"ND_RA_FLAG_OTHER","features":[316]},{"name":"ND_RA_FLAG_PREFERENCE","features":[316]},{"name":"ND_REDIRECT_HEADER","features":[316]},{"name":"ND_ROUTER_ADVERT_HEADER","features":[316]},{"name":"ND_ROUTER_SOLICIT_HEADER","features":[316]},{"name":"NETBIOS_GROUP_NAME","features":[316]},{"name":"NETBIOS_NAME_LENGTH","features":[316]},{"name":"NETBIOS_TYPE_QUICK_GROUP","features":[316]},{"name":"NETBIOS_TYPE_QUICK_UNIQUE","features":[316]},{"name":"NETBIOS_UNIQUE_NAME","features":[316]},{"name":"NETRESOURCE2A","features":[316]},{"name":"NETRESOURCE2W","features":[316]},{"name":"NI_DGRAM","features":[316]},{"name":"NI_MAXHOST","features":[316]},{"name":"NI_MAXSERV","features":[316]},{"name":"NI_NAMEREQD","features":[316]},{"name":"NI_NOFQDN","features":[316]},{"name":"NI_NUMERICHOST","features":[316]},{"name":"NI_NUMERICSERV","features":[316]},{"name":"NLA_802_1X_LOCATION","features":[316]},{"name":"NLA_ALLUSERS_NETWORK","features":[316]},{"name":"NLA_BLOB","features":[316]},{"name":"NLA_BLOB_DATA_TYPE","features":[316]},{"name":"NLA_CONNECTIVITY","features":[316]},{"name":"NLA_CONNECTIVITY_TYPE","features":[316]},{"name":"NLA_FRIENDLY_NAME","features":[316]},{"name":"NLA_ICS","features":[316]},{"name":"NLA_INTERFACE","features":[316]},{"name":"NLA_INTERNET","features":[316]},{"name":"NLA_INTERNET_NO","features":[316]},{"name":"NLA_INTERNET_UNKNOWN","features":[316]},{"name":"NLA_INTERNET_YES","features":[316]},{"name":"NLA_NAMESPACE_GUID","features":[316]},{"name":"NLA_NETWORK_AD_HOC","features":[316]},{"name":"NLA_NETWORK_MANAGED","features":[316]},{"name":"NLA_NETWORK_UNKNOWN","features":[316]},{"name":"NLA_NETWORK_UNMANAGED","features":[316]},{"name":"NLA_RAW_DATA","features":[316]},{"name":"NLA_SERVICE_CLASS_GUID","features":[316]},{"name":"NL_ADDRESS_TYPE","features":[316]},{"name":"NL_BANDWIDTH_FLAG","features":[316]},{"name":"NL_BANDWIDTH_INFORMATION","features":[303,316]},{"name":"NL_DAD_STATE","features":[316]},{"name":"NL_INTERFACE_NETWORK_CATEGORY_STATE","features":[316]},{"name":"NL_INTERFACE_OFFLOAD_ROD","features":[316]},{"name":"NL_LINK_LOCAL_ADDRESS_BEHAVIOR","features":[316]},{"name":"NL_NEIGHBOR_STATE","features":[316]},{"name":"NL_NETWORK_CATEGORY","features":[316]},{"name":"NL_NETWORK_CONNECTIVITY_COST_HINT","features":[316]},{"name":"NL_NETWORK_CONNECTIVITY_HINT","features":[303,316]},{"name":"NL_NETWORK_CONNECTIVITY_LEVEL_HINT","features":[316]},{"name":"NL_PATH_BANDWIDTH_ROD","features":[303,316]},{"name":"NL_PREFIX_ORIGIN","features":[316]},{"name":"NL_ROUTER_DISCOVERY_BEHAVIOR","features":[316]},{"name":"NL_ROUTE_ORIGIN","features":[316]},{"name":"NL_ROUTE_PROTOCOL","features":[316]},{"name":"NL_SUFFIX_ORIGIN","features":[316]},{"name":"NPI_MODULEID","features":[303,316]},{"name":"NPI_MODULEID_TYPE","features":[316]},{"name":"NSPROTO_IPX","features":[316]},{"name":"NSPROTO_SPX","features":[316]},{"name":"NSPROTO_SPXII","features":[316]},{"name":"NSPV2_ROUTINE","features":[303,316,354]},{"name":"NSP_NOTIFY_APC","features":[316]},{"name":"NSP_NOTIFY_EVENT","features":[316]},{"name":"NSP_NOTIFY_HWND","features":[316]},{"name":"NSP_NOTIFY_IMMEDIATELY","features":[316]},{"name":"NSP_NOTIFY_PORT","features":[316]},{"name":"NSP_ROUTINE","features":[303,316,354,308]},{"name":"NSTYPE_DYNAMIC","features":[316]},{"name":"NSTYPE_ENUMERABLE","features":[316]},{"name":"NSTYPE_HIERARCHICAL","features":[316]},{"name":"NSTYPE_WORKGROUP","features":[316]},{"name":"NS_ALL","features":[316]},{"name":"NS_DEFAULT","features":[316]},{"name":"NS_DHCP","features":[316]},{"name":"NS_DNS","features":[316]},{"name":"NS_EMAIL","features":[316]},{"name":"NS_INFOA","features":[316]},{"name":"NS_INFOW","features":[316]},{"name":"NS_LOCALNAME","features":[316]},{"name":"NS_MS","features":[316]},{"name":"NS_NBP","features":[316]},{"name":"NS_NDS","features":[316]},{"name":"NS_NETBT","features":[316]},{"name":"NS_NETDES","features":[316]},{"name":"NS_NIS","features":[316]},{"name":"NS_NISPLUS","features":[316]},{"name":"NS_NLA","features":[316]},{"name":"NS_NTDS","features":[316]},{"name":"NS_PEER_BROWSE","features":[316]},{"name":"NS_SAP","features":[316]},{"name":"NS_SERVICE_INFOA","features":[316,354]},{"name":"NS_SERVICE_INFOW","features":[316,354]},{"name":"NS_SLP","features":[316]},{"name":"NS_STDA","features":[316]},{"name":"NS_TCPIP_HOSTS","features":[316]},{"name":"NS_TCPIP_LOCAL","features":[316]},{"name":"NS_VNS","features":[316]},{"name":"NS_WINS","features":[316]},{"name":"NS_WRQ","features":[316]},{"name":"NS_X500","features":[316]},{"name":"NetworkCategoryDomainAuthenticated","features":[316]},{"name":"NetworkCategoryPrivate","features":[316]},{"name":"NetworkCategoryPublic","features":[316]},{"name":"NetworkCategoryUnchanged","features":[316]},{"name":"NetworkCategoryUnknown","features":[316]},{"name":"NetworkConnectivityCostHintFixed","features":[316]},{"name":"NetworkConnectivityCostHintUnknown","features":[316]},{"name":"NetworkConnectivityCostHintUnrestricted","features":[316]},{"name":"NetworkConnectivityCostHintVariable","features":[316]},{"name":"NetworkConnectivityLevelHintConstrainedInternetAccess","features":[316]},{"name":"NetworkConnectivityLevelHintHidden","features":[316]},{"name":"NetworkConnectivityLevelHintInternetAccess","features":[316]},{"name":"NetworkConnectivityLevelHintLocalAccess","features":[316]},{"name":"NetworkConnectivityLevelHintNone","features":[316]},{"name":"NetworkConnectivityLevelHintUnknown","features":[316]},{"name":"NlatAnycast","features":[316]},{"name":"NlatBroadcast","features":[316]},{"name":"NlatInvalid","features":[316]},{"name":"NlatMulticast","features":[316]},{"name":"NlatUnicast","features":[316]},{"name":"NlatUnspecified","features":[316]},{"name":"NlbwDisabled","features":[316]},{"name":"NlbwEnabled","features":[316]},{"name":"NlbwUnchanged","features":[316]},{"name":"NldsDeprecated","features":[316]},{"name":"NldsDuplicate","features":[316]},{"name":"NldsInvalid","features":[316]},{"name":"NldsPreferred","features":[316]},{"name":"NldsTentative","features":[316]},{"name":"NlincCategoryStateMax","features":[316]},{"name":"NlincCategoryUnknown","features":[316]},{"name":"NlincDomainAuthenticated","features":[316]},{"name":"NlincPrivate","features":[316]},{"name":"NlincPublic","features":[316]},{"name":"NlnsDelay","features":[316]},{"name":"NlnsIncomplete","features":[316]},{"name":"NlnsMaximum","features":[316]},{"name":"NlnsPermanent","features":[316]},{"name":"NlnsProbe","features":[316]},{"name":"NlnsReachable","features":[316]},{"name":"NlnsStale","features":[316]},{"name":"NlnsUnreachable","features":[316]},{"name":"Nlro6to4","features":[316]},{"name":"NlroDHCP","features":[316]},{"name":"NlroManual","features":[316]},{"name":"NlroRouterAdvertisement","features":[316]},{"name":"NlroWellKnown","features":[316]},{"name":"NlsoDhcp","features":[316]},{"name":"NlsoLinkLayerAddress","features":[316]},{"name":"NlsoManual","features":[316]},{"name":"NlsoOther","features":[316]},{"name":"NlsoRandom","features":[316]},{"name":"NlsoWellKnown","features":[316]},{"name":"PFL_HIDDEN","features":[316]},{"name":"PFL_MATCHES_PROTOCOL_ZERO","features":[316]},{"name":"PFL_MULTIPLE_PROTO_ENTRIES","features":[316]},{"name":"PFL_NETWORKDIRECT_PROVIDER","features":[316]},{"name":"PFL_RECOMMENDED_PROTO_ENTRY","features":[316]},{"name":"PF_APPLETALK","features":[316]},{"name":"PF_ATM","features":[316]},{"name":"PF_BAN","features":[316]},{"name":"PF_CCITT","features":[316]},{"name":"PF_CHAOS","features":[316]},{"name":"PF_DATAKIT","features":[316]},{"name":"PF_DECnet","features":[316]},{"name":"PF_DLI","features":[316]},{"name":"PF_ECMA","features":[316]},{"name":"PF_FIREFOX","features":[316]},{"name":"PF_HYLINK","features":[316]},{"name":"PF_IMPLINK","features":[316]},{"name":"PF_IPX","features":[316]},{"name":"PF_IRDA","features":[316]},{"name":"PF_ISO","features":[316]},{"name":"PF_LAT","features":[316]},{"name":"PF_MAX","features":[316]},{"name":"PF_NS","features":[316]},{"name":"PF_OSI","features":[316]},{"name":"PF_PUP","features":[316]},{"name":"PF_SNA","features":[316]},{"name":"PF_UNIX","features":[316]},{"name":"PF_UNKNOWN1","features":[316]},{"name":"PF_VOICEVIEW","features":[316]},{"name":"PI_ALLOWED","features":[316]},{"name":"PI_NUMBER_NOT_AVAILABLE","features":[316]},{"name":"PI_RESTRICTED","features":[316]},{"name":"PMTUD_STATE","features":[316]},{"name":"POLLERR","features":[316]},{"name":"POLLHUP","features":[316]},{"name":"POLLIN","features":[316]},{"name":"POLLNVAL","features":[316]},{"name":"POLLOUT","features":[316]},{"name":"POLLPRI","features":[316]},{"name":"POLLRDBAND","features":[316]},{"name":"POLLRDNORM","features":[316]},{"name":"POLLWRBAND","features":[316]},{"name":"POLLWRNORM","features":[316]},{"name":"PRIORITY_STATUS","features":[316]},{"name":"PROP_ADDRESSES","features":[316]},{"name":"PROP_ALL","features":[316]},{"name":"PROP_COMMENT","features":[316]},{"name":"PROP_DISPLAY_HINT","features":[316]},{"name":"PROP_LOCALE","features":[316]},{"name":"PROP_MACHINE","features":[316]},{"name":"PROP_SD","features":[316]},{"name":"PROP_START_TIME","features":[316]},{"name":"PROP_VERSION","features":[316]},{"name":"PROTECTION_LEVEL_DEFAULT","features":[316]},{"name":"PROTECTION_LEVEL_EDGERESTRICTED","features":[316]},{"name":"PROTECTION_LEVEL_RESTRICTED","features":[316]},{"name":"PROTECTION_LEVEL_UNRESTRICTED","features":[316]},{"name":"PROTOCOL_INFOA","features":[316]},{"name":"PROTOCOL_INFOW","features":[316]},{"name":"PROTOENT","features":[316]},{"name":"PROTO_IP_BBN","features":[316]},{"name":"PROTO_IP_BGP","features":[316]},{"name":"PROTO_IP_CISCO","features":[316]},{"name":"PROTO_IP_DHCP","features":[316]},{"name":"PROTO_IP_DVMRP","features":[316]},{"name":"PROTO_IP_EGP","features":[316]},{"name":"PROTO_IP_EIGRP","features":[316]},{"name":"PROTO_IP_ES_IS","features":[316]},{"name":"PROTO_IP_GGP","features":[316]},{"name":"PROTO_IP_HELLO","features":[316]},{"name":"PROTO_IP_ICMP","features":[316]},{"name":"PROTO_IP_IDPR","features":[316]},{"name":"PROTO_IP_IS_IS","features":[316]},{"name":"PROTO_IP_LOCAL","features":[316]},{"name":"PROTO_IP_NETMGMT","features":[316]},{"name":"PROTO_IP_NT_AUTOSTATIC","features":[316]},{"name":"PROTO_IP_NT_STATIC","features":[316]},{"name":"PROTO_IP_NT_STATIC_NON_DOD","features":[316]},{"name":"PROTO_IP_OSPF","features":[316]},{"name":"PROTO_IP_OTHER","features":[316]},{"name":"PROTO_IP_RIP","features":[316]},{"name":"PROTO_IP_RPL","features":[316]},{"name":"PVD_CONFIG","features":[316]},{"name":"ProcessSocketNotifications","features":[303,316,308]},{"name":"ProviderInfoAudit","features":[316]},{"name":"ProviderInfoLspCategories","features":[316]},{"name":"ProviderLevel_None","features":[316]},{"name":"ProviderLevel_Primary","features":[316]},{"name":"ProviderLevel_Secondary","features":[316]},{"name":"ProviderType_Application","features":[316]},{"name":"ProviderType_Service","features":[316]},{"name":"Q2931_IE","features":[316]},{"name":"Q2931_IE_TYPE","features":[316]},{"name":"QOS","features":[316]},{"name":"QOS_CLASS0","features":[316]},{"name":"QOS_CLASS1","features":[316]},{"name":"QOS_CLASS2","features":[316]},{"name":"QOS_CLASS3","features":[316]},{"name":"QOS_CLASS4","features":[316]},{"name":"RCVALL_IF","features":[316]},{"name":"RCVALL_IPLEVEL","features":[316]},{"name":"RCVALL_OFF","features":[316]},{"name":"RCVALL_ON","features":[316]},{"name":"RCVALL_SOCKETLEVELONLY","features":[316]},{"name":"RCVALL_VALUE","features":[316]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY","features":[316]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY_EX","features":[316]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT","features":[316]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT_EX","features":[303,316]},{"name":"REAL_TIME_NOTIFICATION_SETTING_OUTPUT","features":[316]},{"name":"RESOURCEDISPLAYTYPE_DOMAIN","features":[316]},{"name":"RESOURCEDISPLAYTYPE_FILE","features":[316]},{"name":"RESOURCEDISPLAYTYPE_GENERIC","features":[316]},{"name":"RESOURCEDISPLAYTYPE_GROUP","features":[316]},{"name":"RESOURCEDISPLAYTYPE_SERVER","features":[316]},{"name":"RESOURCEDISPLAYTYPE_SHARE","features":[316]},{"name":"RESOURCEDISPLAYTYPE_TREE","features":[316]},{"name":"RESOURCE_DISPLAY_TYPE","features":[316]},{"name":"RESULT_IS_ADDED","features":[316]},{"name":"RESULT_IS_ALIAS","features":[316]},{"name":"RESULT_IS_CHANGED","features":[316]},{"name":"RESULT_IS_DELETED","features":[316]},{"name":"RES_FIND_MULTIPLE","features":[316]},{"name":"RES_FLUSH_CACHE","features":[316]},{"name":"RES_SERVICE","features":[316]},{"name":"RES_SOFT_SEARCH","features":[316]},{"name":"RES_UNUSED_1","features":[316]},{"name":"RIORESULT","features":[316]},{"name":"RIO_BUF","features":[316]},{"name":"RIO_BUFFERID","features":[316]},{"name":"RIO_CMSG_BUFFER","features":[316]},{"name":"RIO_CORRUPT_CQ","features":[316]},{"name":"RIO_CQ","features":[316]},{"name":"RIO_EVENT_COMPLETION","features":[316]},{"name":"RIO_EXTENSION_FUNCTION_TABLE","features":[303,316]},{"name":"RIO_IOCP_COMPLETION","features":[316]},{"name":"RIO_MAX_CQ_SIZE","features":[316]},{"name":"RIO_MSG_COMMIT_ONLY","features":[316]},{"name":"RIO_MSG_DEFER","features":[316]},{"name":"RIO_MSG_DONT_NOTIFY","features":[316]},{"name":"RIO_MSG_WAITALL","features":[316]},{"name":"RIO_NOTIFICATION_COMPLETION","features":[303,316]},{"name":"RIO_NOTIFICATION_COMPLETION_TYPE","features":[316]},{"name":"RIO_RQ","features":[316]},{"name":"RM_ADD_RECEIVE_IF","features":[316]},{"name":"RM_DEL_RECEIVE_IF","features":[316]},{"name":"RM_FEC_INFO","features":[303,316]},{"name":"RM_FLUSHCACHE","features":[316]},{"name":"RM_HIGH_SPEED_INTRANET_OPT","features":[316]},{"name":"RM_LATEJOIN","features":[316]},{"name":"RM_OPTIONSBASE","features":[316]},{"name":"RM_RATE_WINDOW_SIZE","features":[316]},{"name":"RM_RECEIVER_STATISTICS","features":[316]},{"name":"RM_RECEIVER_STATS","features":[316]},{"name":"RM_SENDER_STATISTICS","features":[316]},{"name":"RM_SENDER_STATS","features":[316]},{"name":"RM_SENDER_WINDOW_ADVANCE_METHOD","features":[316]},{"name":"RM_SEND_WINDOW","features":[316]},{"name":"RM_SEND_WINDOW_ADV_RATE","features":[316]},{"name":"RM_SET_MCAST_TTL","features":[316]},{"name":"RM_SET_MESSAGE_BOUNDARY","features":[316]},{"name":"RM_SET_SEND_IF","features":[316]},{"name":"RM_USE_FEC","features":[316]},{"name":"RNRSERVICE_DELETE","features":[316]},{"name":"RNRSERVICE_DEREGISTER","features":[316]},{"name":"RNRSERVICE_REGISTER","features":[316]},{"name":"RSS_SCALABILITY_INFO","features":[303,316]},{"name":"RouteProtocolBbn","features":[316]},{"name":"RouteProtocolBgp","features":[316]},{"name":"RouteProtocolCisco","features":[316]},{"name":"RouteProtocolDhcp","features":[316]},{"name":"RouteProtocolDvmrp","features":[316]},{"name":"RouteProtocolEgp","features":[316]},{"name":"RouteProtocolEigrp","features":[316]},{"name":"RouteProtocolEsIs","features":[316]},{"name":"RouteProtocolGgp","features":[316]},{"name":"RouteProtocolHello","features":[316]},{"name":"RouteProtocolIcmp","features":[316]},{"name":"RouteProtocolIdpr","features":[316]},{"name":"RouteProtocolIsIs","features":[316]},{"name":"RouteProtocolLocal","features":[316]},{"name":"RouteProtocolNetMgmt","features":[316]},{"name":"RouteProtocolOspf","features":[316]},{"name":"RouteProtocolOther","features":[316]},{"name":"RouteProtocolRip","features":[316]},{"name":"RouteProtocolRpl","features":[316]},{"name":"RouterDiscoveryDhcp","features":[316]},{"name":"RouterDiscoveryDisabled","features":[316]},{"name":"RouterDiscoveryEnabled","features":[316]},{"name":"RouterDiscoveryUnchanged","features":[316]},{"name":"RtlEthernetAddressToStringA","features":[316]},{"name":"RtlEthernetAddressToStringW","features":[316]},{"name":"RtlEthernetStringToAddressA","features":[316]},{"name":"RtlEthernetStringToAddressW","features":[316]},{"name":"RtlIpv4AddressToStringA","features":[316]},{"name":"RtlIpv4AddressToStringExA","features":[316]},{"name":"RtlIpv4AddressToStringExW","features":[316]},{"name":"RtlIpv4AddressToStringW","features":[316]},{"name":"RtlIpv4StringToAddressA","features":[303,316]},{"name":"RtlIpv4StringToAddressExA","features":[303,316]},{"name":"RtlIpv4StringToAddressExW","features":[303,316]},{"name":"RtlIpv4StringToAddressW","features":[303,316]},{"name":"RtlIpv6AddressToStringA","features":[316]},{"name":"RtlIpv6AddressToStringExA","features":[316]},{"name":"RtlIpv6AddressToStringExW","features":[316]},{"name":"RtlIpv6AddressToStringW","features":[316]},{"name":"RtlIpv6StringToAddressA","features":[316]},{"name":"RtlIpv6StringToAddressExA","features":[316]},{"name":"RtlIpv6StringToAddressExW","features":[316]},{"name":"RtlIpv6StringToAddressW","features":[316]},{"name":"SAP_FIELD_ABSENT","features":[316]},{"name":"SAP_FIELD_ANY","features":[316]},{"name":"SAP_FIELD_ANY_AESA_REST","features":[316]},{"name":"SAP_FIELD_ANY_AESA_SEL","features":[316]},{"name":"SCOPE_ID","features":[316]},{"name":"SCOPE_LEVEL","features":[316]},{"name":"SD_BOTH","features":[316]},{"name":"SD_RECEIVE","features":[316]},{"name":"SD_SEND","features":[316]},{"name":"SECURITY_PROTOCOL_NONE","features":[316]},{"name":"SENDER_DEFAULT_LATE_JOINER_PERCENTAGE","features":[316]},{"name":"SENDER_DEFAULT_RATE_KBITS_PER_SEC","features":[316]},{"name":"SENDER_DEFAULT_WINDOW_ADV_PERCENTAGE","features":[316]},{"name":"SENDER_MAX_LATE_JOINER_PERCENTAGE","features":[316]},{"name":"SEND_RECV_FLAGS","features":[316]},{"name":"SERVENT","features":[316]},{"name":"SERVENT","features":[316]},{"name":"SERVICE_ADDRESS","features":[316]},{"name":"SERVICE_ADDRESSES","features":[316]},{"name":"SERVICE_ADDRESS_FLAG_RPC_CN","features":[316]},{"name":"SERVICE_ADDRESS_FLAG_RPC_DG","features":[316]},{"name":"SERVICE_ADDRESS_FLAG_RPC_NB","features":[316]},{"name":"SERVICE_ADD_TYPE","features":[316]},{"name":"SERVICE_ASYNC_INFO","features":[303,316]},{"name":"SERVICE_DELETE_TYPE","features":[316]},{"name":"SERVICE_DEREGISTER","features":[316]},{"name":"SERVICE_FLAG_DEFER","features":[316]},{"name":"SERVICE_FLAG_HARD","features":[316]},{"name":"SERVICE_FLUSH","features":[316]},{"name":"SERVICE_INFOA","features":[316,354]},{"name":"SERVICE_INFOW","features":[316,354]},{"name":"SERVICE_LOCAL","features":[316]},{"name":"SERVICE_MULTIPLE","features":[316]},{"name":"SERVICE_REGISTER","features":[316]},{"name":"SERVICE_RESOURCE","features":[316]},{"name":"SERVICE_SERVICE","features":[316]},{"name":"SERVICE_TYPE_INFO","features":[316]},{"name":"SERVICE_TYPE_INFO_ABSA","features":[316]},{"name":"SERVICE_TYPE_INFO_ABSW","features":[316]},{"name":"SERVICE_TYPE_VALUE","features":[316]},{"name":"SERVICE_TYPE_VALUE_ABSA","features":[316]},{"name":"SERVICE_TYPE_VALUE_ABSW","features":[316]},{"name":"SERVICE_TYPE_VALUE_CONN","features":[316]},{"name":"SERVICE_TYPE_VALUE_CONNA","features":[316]},{"name":"SERVICE_TYPE_VALUE_CONNW","features":[316]},{"name":"SERVICE_TYPE_VALUE_IPXPORTA","features":[316]},{"name":"SERVICE_TYPE_VALUE_IPXPORTW","features":[316]},{"name":"SERVICE_TYPE_VALUE_OBJECTID","features":[316]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDA","features":[316]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDW","features":[316]},{"name":"SERVICE_TYPE_VALUE_SAPID","features":[316]},{"name":"SERVICE_TYPE_VALUE_SAPIDA","features":[316]},{"name":"SERVICE_TYPE_VALUE_SAPIDW","features":[316]},{"name":"SERVICE_TYPE_VALUE_TCPPORT","features":[316]},{"name":"SERVICE_TYPE_VALUE_TCPPORTA","features":[316]},{"name":"SERVICE_TYPE_VALUE_TCPPORTW","features":[316]},{"name":"SERVICE_TYPE_VALUE_UDPPORT","features":[316]},{"name":"SERVICE_TYPE_VALUE_UDPPORTA","features":[316]},{"name":"SERVICE_TYPE_VALUE_UDPPORTW","features":[316]},{"name":"SET_SERVICE_OPERATION","features":[316]},{"name":"SET_SERVICE_PARTIAL_SUCCESS","features":[316]},{"name":"SG_CONSTRAINED_GROUP","features":[316]},{"name":"SG_UNCONSTRAINED_GROUP","features":[316]},{"name":"SIOCATMARK","features":[316]},{"name":"SIOCGHIWAT","features":[316]},{"name":"SIOCGLOWAT","features":[316]},{"name":"SIOCSHIWAT","features":[316]},{"name":"SIOCSLOWAT","features":[316]},{"name":"SIO_ABSORB_RTRALERT","features":[316]},{"name":"SIO_ACQUIRE_PORT_RESERVATION","features":[316]},{"name":"SIO_ADDRESS_LIST_CHANGE","features":[316]},{"name":"SIO_ADDRESS_LIST_QUERY","features":[316]},{"name":"SIO_ADDRESS_LIST_SORT","features":[316]},{"name":"SIO_AF_UNIX_GETPEERPID","features":[316]},{"name":"SIO_AF_UNIX_SETBINDPARENTPATH","features":[316]},{"name":"SIO_AF_UNIX_SETCONNPARENTPATH","features":[316]},{"name":"SIO_APPLY_TRANSPORT_SETTING","features":[316]},{"name":"SIO_ASSOCIATE_HANDLE","features":[316]},{"name":"SIO_ASSOCIATE_PORT_RESERVATION","features":[316]},{"name":"SIO_ASSOCIATE_PVC","features":[316]},{"name":"SIO_BASE_HANDLE","features":[316]},{"name":"SIO_BSP_HANDLE","features":[316]},{"name":"SIO_BSP_HANDLE_POLL","features":[316]},{"name":"SIO_BSP_HANDLE_SELECT","features":[316]},{"name":"SIO_CPU_AFFINITY","features":[316]},{"name":"SIO_DELETE_PEER_TARGET_NAME","features":[316]},{"name":"SIO_ENABLE_CIRCULAR_QUEUEING","features":[316]},{"name":"SIO_EXT_POLL","features":[316]},{"name":"SIO_EXT_SELECT","features":[316]},{"name":"SIO_EXT_SENDMSG","features":[316]},{"name":"SIO_FIND_ROUTE","features":[316]},{"name":"SIO_FLUSH","features":[316]},{"name":"SIO_GET_ATM_ADDRESS","features":[316]},{"name":"SIO_GET_ATM_CONNECTION_ID","features":[316]},{"name":"SIO_GET_BROADCAST_ADDRESS","features":[316]},{"name":"SIO_GET_EXTENSION_FUNCTION_POINTER","features":[316]},{"name":"SIO_GET_GROUP_QOS","features":[316]},{"name":"SIO_GET_MULTIPLE_EXTENSION_FUNCTION_POINTER","features":[316]},{"name":"SIO_GET_NUMBER_OF_ATM_DEVICES","features":[316]},{"name":"SIO_GET_QOS","features":[316]},{"name":"SIO_GET_TX_TIMESTAMP","features":[316]},{"name":"SIO_INDEX_ADD_MCAST","features":[316]},{"name":"SIO_INDEX_BIND","features":[316]},{"name":"SIO_INDEX_DEL_MCAST","features":[316]},{"name":"SIO_INDEX_MCASTIF","features":[316]},{"name":"SIO_KEEPALIVE_VALS","features":[316]},{"name":"SIO_LIMIT_BROADCASTS","features":[316]},{"name":"SIO_LOOPBACK_FAST_PATH","features":[316]},{"name":"SIO_MULTICAST_SCOPE","features":[316]},{"name":"SIO_MULTIPOINT_LOOPBACK","features":[316]},{"name":"SIO_NSP_NOTIFY_CHANGE","features":[316]},{"name":"SIO_PRIORITY_HINT","features":[316]},{"name":"SIO_QUERY_RSS_PROCESSOR_INFO","features":[316]},{"name":"SIO_QUERY_RSS_SCALABILITY_INFO","features":[316]},{"name":"SIO_QUERY_SECURITY","features":[316]},{"name":"SIO_QUERY_TARGET_PNP_HANDLE","features":[316]},{"name":"SIO_QUERY_TRANSPORT_SETTING","features":[316]},{"name":"SIO_QUERY_WFP_ALE_ENDPOINT_HANDLE","features":[316]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_CONTEXT","features":[316]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_RECORDS","features":[316]},{"name":"SIO_RCVALL","features":[316]},{"name":"SIO_RCVALL_IF","features":[316]},{"name":"SIO_RCVALL_IGMPMCAST","features":[316]},{"name":"SIO_RCVALL_MCAST","features":[316]},{"name":"SIO_RCVALL_MCAST_IF","features":[316]},{"name":"SIO_RELEASE_PORT_RESERVATION","features":[316]},{"name":"SIO_RESERVED_1","features":[316]},{"name":"SIO_RESERVED_2","features":[316]},{"name":"SIO_ROUTING_INTERFACE_CHANGE","features":[316]},{"name":"SIO_ROUTING_INTERFACE_QUERY","features":[316]},{"name":"SIO_SET_COMPATIBILITY_MODE","features":[316]},{"name":"SIO_SET_GROUP_QOS","features":[316]},{"name":"SIO_SET_PEER_TARGET_NAME","features":[316]},{"name":"SIO_SET_PRIORITY_HINT","features":[316]},{"name":"SIO_SET_QOS","features":[316]},{"name":"SIO_SET_SECURITY","features":[316]},{"name":"SIO_SET_WFP_CONNECTION_REDIRECT_RECORDS","features":[316]},{"name":"SIO_SOCKET_CLOSE_NOTIFY","features":[316]},{"name":"SIO_SOCKET_USAGE_NOTIFICATION","features":[316]},{"name":"SIO_TCP_INFO","features":[316]},{"name":"SIO_TCP_INITIAL_RTO","features":[316]},{"name":"SIO_TCP_SET_ACK_FREQUENCY","features":[316]},{"name":"SIO_TCP_SET_ICW","features":[316]},{"name":"SIO_TIMESTAMPING","features":[316]},{"name":"SIO_TRANSLATE_HANDLE","features":[316]},{"name":"SIO_UCAST_IF","features":[316]},{"name":"SIO_UDP_CONNRESET","features":[316]},{"name":"SIO_UDP_NETRESET","features":[316]},{"name":"SIZEOF_IP_OPT_ROUTERALERT","features":[316]},{"name":"SIZEOF_IP_OPT_ROUTING_HEADER","features":[316]},{"name":"SIZEOF_IP_OPT_SECURITY","features":[316]},{"name":"SIZEOF_IP_OPT_STREAMIDENTIFIER","features":[316]},{"name":"SIZEOF_IP_OPT_TIMESTAMP_HEADER","features":[316]},{"name":"SI_NETWORK","features":[316]},{"name":"SI_USER_FAILED","features":[316]},{"name":"SI_USER_NOT_SCREENED","features":[316]},{"name":"SI_USER_PASSED","features":[316]},{"name":"SNAP_CONTROL","features":[316]},{"name":"SNAP_DSAP","features":[316]},{"name":"SNAP_HEADER","features":[316]},{"name":"SNAP_OUI","features":[316]},{"name":"SNAP_SSAP","features":[316]},{"name":"SOCKADDR","features":[316]},{"name":"SOCKADDR_ATM","features":[316]},{"name":"SOCKADDR_DL","features":[316]},{"name":"SOCKADDR_IN","features":[316]},{"name":"SOCKADDR_IN6","features":[316]},{"name":"SOCKADDR_IN6_PAIR","features":[316]},{"name":"SOCKADDR_IN6_W2KSP1","features":[316]},{"name":"SOCKADDR_INET","features":[316]},{"name":"SOCKADDR_IPX","features":[316]},{"name":"SOCKADDR_IRDA","features":[316]},{"name":"SOCKADDR_NB","features":[316]},{"name":"SOCKADDR_STORAGE","features":[316]},{"name":"SOCKADDR_STORAGE_XP","features":[316]},{"name":"SOCKADDR_TP","features":[316]},{"name":"SOCKADDR_UN","features":[316]},{"name":"SOCKADDR_VNS","features":[316]},{"name":"SOCKET","features":[316]},{"name":"SOCKET_ADDRESS","features":[316]},{"name":"SOCKET_ADDRESS_LIST","features":[316]},{"name":"SOCKET_DEFAULT2_QM_POLICY","features":[316]},{"name":"SOCKET_ERROR","features":[316]},{"name":"SOCKET_INFO_CONNECTION_ENCRYPTED","features":[316]},{"name":"SOCKET_INFO_CONNECTION_IMPERSONATED","features":[316]},{"name":"SOCKET_INFO_CONNECTION_SECURED","features":[316]},{"name":"SOCKET_PEER_TARGET_NAME","features":[316]},{"name":"SOCKET_PRIORITY_HINT","features":[316]},{"name":"SOCKET_PROCESSOR_AFFINITY","features":[316,309]},{"name":"SOCKET_QUERY_IPSEC2_ABORT_CONNECTION_ON_FIELD_CHANGE","features":[316]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_MM_SA_ID","features":[316]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_QM_SA_ID","features":[316]},{"name":"SOCKET_SECURITY_PROTOCOL","features":[316]},{"name":"SOCKET_SECURITY_PROTOCOL_DEFAULT","features":[316]},{"name":"SOCKET_SECURITY_PROTOCOL_INVALID","features":[316]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC","features":[316]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC2","features":[316]},{"name":"SOCKET_SECURITY_QUERY_INFO","features":[316]},{"name":"SOCKET_SECURITY_QUERY_INFO_IPSEC2","features":[316]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE","features":[316]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE_IPSEC2","features":[316]},{"name":"SOCKET_SECURITY_SETTINGS","features":[316]},{"name":"SOCKET_SECURITY_SETTINGS_IPSEC","features":[316]},{"name":"SOCKET_SETTINGS_ALLOW_INSECURE","features":[316]},{"name":"SOCKET_SETTINGS_GUARANTEE_ENCRYPTION","features":[316]},{"name":"SOCKET_SETTINGS_IPSEC_ALLOW_FIRST_INBOUND_PKT_UNENCRYPTED","features":[316]},{"name":"SOCKET_SETTINGS_IPSEC_OPTIONAL_PEER_NAME_VERIFICATION","features":[316]},{"name":"SOCKET_SETTINGS_IPSEC_PEER_NAME_IS_RAW_FORMAT","features":[316]},{"name":"SOCKET_SETTINGS_IPSEC_SKIP_FILTER_INSTANTIATION","features":[316]},{"name":"SOCKET_USAGE_TYPE","features":[316]},{"name":"SOCK_DGRAM","features":[316]},{"name":"SOCK_NOTIFY_EVENT_ERR","features":[316]},{"name":"SOCK_NOTIFY_EVENT_HANGUP","features":[316]},{"name":"SOCK_NOTIFY_EVENT_IN","features":[316]},{"name":"SOCK_NOTIFY_EVENT_OUT","features":[316]},{"name":"SOCK_NOTIFY_EVENT_REMOVE","features":[316]},{"name":"SOCK_NOTIFY_OP_DISABLE","features":[316]},{"name":"SOCK_NOTIFY_OP_ENABLE","features":[316]},{"name":"SOCK_NOTIFY_OP_NONE","features":[316]},{"name":"SOCK_NOTIFY_OP_REMOVE","features":[316]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_HANGUP","features":[316]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_IN","features":[316]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_NONE","features":[316]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_OUT","features":[316]},{"name":"SOCK_NOTIFY_REGISTRATION","features":[316]},{"name":"SOCK_NOTIFY_TRIGGER_EDGE","features":[316]},{"name":"SOCK_NOTIFY_TRIGGER_LEVEL","features":[316]},{"name":"SOCK_NOTIFY_TRIGGER_ONESHOT","features":[316]},{"name":"SOCK_NOTIFY_TRIGGER_PERSISTENT","features":[316]},{"name":"SOCK_RAW","features":[316]},{"name":"SOCK_RDM","features":[316]},{"name":"SOCK_SEQPACKET","features":[316]},{"name":"SOCK_STREAM","features":[316]},{"name":"SOL_IP","features":[316]},{"name":"SOL_IPV6","features":[316]},{"name":"SOL_IRLMP","features":[316]},{"name":"SOL_SOCKET","features":[316]},{"name":"SOMAXCONN","features":[316]},{"name":"SO_ACCEPTCONN","features":[316]},{"name":"SO_BROADCAST","features":[316]},{"name":"SO_BSP_STATE","features":[316]},{"name":"SO_COMPARTMENT_ID","features":[316]},{"name":"SO_CONDITIONAL_ACCEPT","features":[316]},{"name":"SO_CONNDATA","features":[316]},{"name":"SO_CONNDATALEN","features":[316]},{"name":"SO_CONNECT_TIME","features":[316]},{"name":"SO_CONNOPT","features":[316]},{"name":"SO_CONNOPTLEN","features":[316]},{"name":"SO_DEBUG","features":[316]},{"name":"SO_DISCDATA","features":[316]},{"name":"SO_DISCDATALEN","features":[316]},{"name":"SO_DISCOPT","features":[316]},{"name":"SO_DISCOPTLEN","features":[316]},{"name":"SO_DONTROUTE","features":[316]},{"name":"SO_ERROR","features":[316]},{"name":"SO_GROUP_ID","features":[316]},{"name":"SO_GROUP_PRIORITY","features":[316]},{"name":"SO_KEEPALIVE","features":[316]},{"name":"SO_LINGER","features":[316]},{"name":"SO_MAXDG","features":[316]},{"name":"SO_MAXPATHDG","features":[316]},{"name":"SO_MAX_MSG_SIZE","features":[316]},{"name":"SO_OOBINLINE","features":[316]},{"name":"SO_OPENTYPE","features":[316]},{"name":"SO_ORIGINAL_DST","features":[316]},{"name":"SO_PAUSE_ACCEPT","features":[316]},{"name":"SO_PORT_SCALABILITY","features":[316]},{"name":"SO_PROTOCOL_INFO","features":[316]},{"name":"SO_PROTOCOL_INFOA","features":[316]},{"name":"SO_PROTOCOL_INFOW","features":[316]},{"name":"SO_RANDOMIZE_PORT","features":[316]},{"name":"SO_RCVBUF","features":[316]},{"name":"SO_RCVLOWAT","features":[316]},{"name":"SO_RCVTIMEO","features":[316]},{"name":"SO_REUSEADDR","features":[316]},{"name":"SO_REUSE_MULTICASTPORT","features":[316]},{"name":"SO_REUSE_UNICASTPORT","features":[316]},{"name":"SO_SNDBUF","features":[316]},{"name":"SO_SNDLOWAT","features":[316]},{"name":"SO_SNDTIMEO","features":[316]},{"name":"SO_SYNCHRONOUS_ALERT","features":[316]},{"name":"SO_SYNCHRONOUS_NONALERT","features":[316]},{"name":"SO_TIMESTAMP","features":[316]},{"name":"SO_TIMESTAMP_ID","features":[316]},{"name":"SO_TYPE","features":[316]},{"name":"SO_UPDATE_ACCEPT_CONTEXT","features":[316]},{"name":"SO_UPDATE_CONNECT_CONTEXT","features":[316]},{"name":"SO_USELOOPBACK","features":[316]},{"name":"SYSTEM_CRITICAL_SOCKET","features":[316]},{"name":"ScopeLevelAdmin","features":[316]},{"name":"ScopeLevelCount","features":[316]},{"name":"ScopeLevelGlobal","features":[316]},{"name":"ScopeLevelInterface","features":[316]},{"name":"ScopeLevelLink","features":[316]},{"name":"ScopeLevelOrganization","features":[316]},{"name":"ScopeLevelSite","features":[316]},{"name":"ScopeLevelSubnet","features":[316]},{"name":"SetAddrInfoExA","features":[303,316,354,308]},{"name":"SetAddrInfoExW","features":[303,316,354,308]},{"name":"SetServiceA","features":[303,316,354]},{"name":"SetServiceW","features":[303,316,354]},{"name":"SetSocketMediaStreamingMode","features":[303,316]},{"name":"SocketMaximumPriorityHintType","features":[316]},{"name":"SocketPriorityHintLow","features":[316]},{"name":"SocketPriorityHintNormal","features":[316]},{"name":"SocketPriorityHintVeryLow","features":[316]},{"name":"TCPSTATE","features":[316]},{"name":"TCPSTATE_CLOSED","features":[316]},{"name":"TCPSTATE_CLOSE_WAIT","features":[316]},{"name":"TCPSTATE_CLOSING","features":[316]},{"name":"TCPSTATE_ESTABLISHED","features":[316]},{"name":"TCPSTATE_FIN_WAIT_1","features":[316]},{"name":"TCPSTATE_FIN_WAIT_2","features":[316]},{"name":"TCPSTATE_LAST_ACK","features":[316]},{"name":"TCPSTATE_LISTEN","features":[316]},{"name":"TCPSTATE_MAX","features":[316]},{"name":"TCPSTATE_SYN_RCVD","features":[316]},{"name":"TCPSTATE_SYN_SENT","features":[316]},{"name":"TCPSTATE_TIME_WAIT","features":[316]},{"name":"TCP_ACK_FREQUENCY_PARAMETERS","features":[316]},{"name":"TCP_ATMARK","features":[316]},{"name":"TCP_BSDURGENT","features":[316]},{"name":"TCP_CONGESTION_ALGORITHM","features":[316]},{"name":"TCP_DELAY_FIN_ACK","features":[316]},{"name":"TCP_EXPEDITED_1122","features":[316]},{"name":"TCP_FAIL_CONNECT_ON_ICMP_ERROR","features":[316]},{"name":"TCP_FASTOPEN","features":[316]},{"name":"TCP_HDR","features":[316]},{"name":"TCP_ICMP_ERROR_INFO","features":[316]},{"name":"TCP_ICW_LEVEL","features":[316]},{"name":"TCP_ICW_LEVEL_AGGRESSIVE","features":[316]},{"name":"TCP_ICW_LEVEL_COMPAT","features":[316]},{"name":"TCP_ICW_LEVEL_DEFAULT","features":[316]},{"name":"TCP_ICW_LEVEL_EXPERIMENTAL","features":[316]},{"name":"TCP_ICW_LEVEL_HIGH","features":[316]},{"name":"TCP_ICW_LEVEL_MAX","features":[316]},{"name":"TCP_ICW_LEVEL_VERY_HIGH","features":[316]},{"name":"TCP_ICW_PARAMETERS","features":[316]},{"name":"TCP_INFO_v0","features":[303,316]},{"name":"TCP_INFO_v1","features":[303,316]},{"name":"TCP_INITIAL_RTO_DEFAULT_MAX_SYN_RETRANSMISSIONS","features":[316]},{"name":"TCP_INITIAL_RTO_DEFAULT_RTT","features":[316]},{"name":"TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS","features":[316]},{"name":"TCP_INITIAL_RTO_PARAMETERS","features":[316]},{"name":"TCP_INITIAL_RTO_UNSPECIFIED_MAX_SYN_RETRANSMISSIONS","features":[316]},{"name":"TCP_KEEPALIVE","features":[316]},{"name":"TCP_KEEPCNT","features":[316]},{"name":"TCP_KEEPIDLE","features":[316]},{"name":"TCP_KEEPINTVL","features":[316]},{"name":"TCP_MAXRT","features":[316]},{"name":"TCP_MAXRTMS","features":[316]},{"name":"TCP_MAXSEG","features":[316]},{"name":"TCP_NODELAY","features":[316]},{"name":"TCP_NOSYNRETRIES","features":[316]},{"name":"TCP_NOURG","features":[316]},{"name":"TCP_OFFLOAD_NOT_PREFERRED","features":[316]},{"name":"TCP_OFFLOAD_NO_PREFERENCE","features":[316]},{"name":"TCP_OFFLOAD_PREFERENCE","features":[316]},{"name":"TCP_OFFLOAD_PREFERRED","features":[316]},{"name":"TCP_OPT_FASTOPEN","features":[316]},{"name":"TCP_OPT_MSS","features":[316]},{"name":"TCP_OPT_SACK","features":[316]},{"name":"TCP_OPT_SACK_PERMITTED","features":[316]},{"name":"TCP_OPT_TS","features":[316]},{"name":"TCP_OPT_UNKNOWN","features":[316]},{"name":"TCP_OPT_WS","features":[316]},{"name":"TCP_STDURG","features":[316]},{"name":"TCP_TIMESTAMPS","features":[316]},{"name":"TF_DISCONNECT","features":[316]},{"name":"TF_REUSE_SOCKET","features":[316]},{"name":"TF_USE_DEFAULT_WORKER","features":[316]},{"name":"TF_USE_KERNEL_APC","features":[316]},{"name":"TF_USE_SYSTEM_THREAD","features":[316]},{"name":"TF_WRITE_BEHIND","features":[316]},{"name":"TH_ACK","features":[316]},{"name":"TH_CWR","features":[316]},{"name":"TH_ECE","features":[316]},{"name":"TH_FIN","features":[316]},{"name":"TH_NETDEV","features":[316]},{"name":"TH_OPT_EOL","features":[316]},{"name":"TH_OPT_FASTOPEN","features":[316]},{"name":"TH_OPT_MSS","features":[316]},{"name":"TH_OPT_NOP","features":[316]},{"name":"TH_OPT_SACK","features":[316]},{"name":"TH_OPT_SACK_PERMITTED","features":[316]},{"name":"TH_OPT_TS","features":[316]},{"name":"TH_OPT_WS","features":[316]},{"name":"TH_PSH","features":[316]},{"name":"TH_RST","features":[316]},{"name":"TH_SYN","features":[316]},{"name":"TH_TAPI","features":[316]},{"name":"TH_URG","features":[316]},{"name":"TIMESTAMPING_CONFIG","features":[316]},{"name":"TIMESTAMPING_FLAG_RX","features":[316]},{"name":"TIMESTAMPING_FLAG_TX","features":[316]},{"name":"TIMEVAL","features":[316]},{"name":"TNS_PLAN_CARRIER_ID_CODE","features":[316]},{"name":"TNS_TYPE_NATIONAL","features":[316]},{"name":"TP_DISCONNECT","features":[316]},{"name":"TP_ELEMENT_EOP","features":[316]},{"name":"TP_ELEMENT_FILE","features":[316]},{"name":"TP_ELEMENT_MEMORY","features":[316]},{"name":"TP_REUSE_SOCKET","features":[316]},{"name":"TP_USE_DEFAULT_WORKER","features":[316]},{"name":"TP_USE_KERNEL_APC","features":[316]},{"name":"TP_USE_SYSTEM_THREAD","features":[316]},{"name":"TRANSMIT_FILE_BUFFERS","features":[316]},{"name":"TRANSMIT_PACKETS_ELEMENT","features":[303,316]},{"name":"TRANSPORT_SETTING_ID","features":[316]},{"name":"TR_END_TO_END","features":[316]},{"name":"TR_NOIND","features":[316]},{"name":"TR_NO_END_TO_END","features":[316]},{"name":"TT_CBR","features":[316]},{"name":"TT_NOIND","features":[316]},{"name":"TT_VBR","features":[316]},{"name":"TUNNEL_SUB_TYPE","features":[316]},{"name":"TUNNEL_SUB_TYPE_CP","features":[316]},{"name":"TUNNEL_SUB_TYPE_HA","features":[316]},{"name":"TUNNEL_SUB_TYPE_IPTLS","features":[316]},{"name":"TUNNEL_SUB_TYPE_NONE","features":[316]},{"name":"TransmitFile","features":[303,316,308]},{"name":"UDP_CHECKSUM_COVERAGE","features":[316]},{"name":"UDP_COALESCED_INFO","features":[316]},{"name":"UDP_NOCHECKSUM","features":[316]},{"name":"UDP_RECV_MAX_COALESCED_SIZE","features":[316]},{"name":"UDP_SEND_MSG_SIZE","features":[316]},{"name":"UNIX_PATH_MAX","features":[316]},{"name":"UP_P2MP","features":[316]},{"name":"UP_P2P","features":[316]},{"name":"VLAN_TAG","features":[316]},{"name":"VNSPROTO_IPC","features":[316]},{"name":"VNSPROTO_RELIABLE_IPC","features":[316]},{"name":"VNSPROTO_SPP","features":[316]},{"name":"WCE_AF_IRDA","features":[316]},{"name":"WCE_DEVICELIST","features":[316]},{"name":"WCE_IRDA_DEVICE_INFO","features":[316]},{"name":"WCE_PF_IRDA","features":[316]},{"name":"WINDOWS_AF_IRDA","features":[316]},{"name":"WINDOWS_DEVICELIST","features":[316]},{"name":"WINDOWS_IAS_QUERY","features":[316]},{"name":"WINDOWS_IAS_SET","features":[316]},{"name":"WINDOWS_IRDA_DEVICE_INFO","features":[316]},{"name":"WINDOWS_PF_IRDA","features":[316]},{"name":"WINSOCK_SHUTDOWN_HOW","features":[316]},{"name":"WINSOCK_SOCKET_TYPE","features":[316]},{"name":"WPUCompleteOverlappedRequest","features":[303,316,308]},{"name":"WSAAccept","features":[316]},{"name":"WSAAddressToStringA","features":[316]},{"name":"WSAAddressToStringW","features":[316]},{"name":"WSAAdvertiseProvider","features":[303,316,354]},{"name":"WSAAsyncGetHostByAddr","features":[303,316]},{"name":"WSAAsyncGetHostByName","features":[303,316]},{"name":"WSAAsyncGetProtoByName","features":[303,316]},{"name":"WSAAsyncGetProtoByNumber","features":[303,316]},{"name":"WSAAsyncGetServByName","features":[303,316]},{"name":"WSAAsyncGetServByPort","features":[303,316]},{"name":"WSAAsyncSelect","features":[303,316]},{"name":"WSABASEERR","features":[316]},{"name":"WSABUF","features":[316]},{"name":"WSACOMPLETION","features":[303,316,308]},{"name":"WSACOMPLETIONTYPE","features":[316]},{"name":"WSACancelAsyncRequest","features":[303,316]},{"name":"WSACancelBlockingCall","features":[316]},{"name":"WSACleanup","features":[316]},{"name":"WSACloseEvent","features":[303,316]},{"name":"WSAConnect","features":[316]},{"name":"WSAConnectByList","features":[303,316,308]},{"name":"WSAConnectByNameA","features":[303,316,308]},{"name":"WSAConnectByNameW","features":[303,316,308]},{"name":"WSACreateEvent","features":[303,316]},{"name":"WSADATA","features":[316]},{"name":"WSADATA","features":[316]},{"name":"WSADESCRIPTION_LEN","features":[316]},{"name":"WSADeleteSocketPeerTargetName","features":[303,316,308]},{"name":"WSADuplicateSocketA","features":[316]},{"name":"WSADuplicateSocketW","features":[316]},{"name":"WSAEACCES","features":[316]},{"name":"WSAEADDRINUSE","features":[316]},{"name":"WSAEADDRNOTAVAIL","features":[316]},{"name":"WSAEAFNOSUPPORT","features":[316]},{"name":"WSAEALREADY","features":[316]},{"name":"WSAEBADF","features":[316]},{"name":"WSAECANCELLED","features":[316]},{"name":"WSAECOMPARATOR","features":[316]},{"name":"WSAECONNABORTED","features":[316]},{"name":"WSAECONNREFUSED","features":[316]},{"name":"WSAECONNRESET","features":[316]},{"name":"WSAEDESTADDRREQ","features":[316]},{"name":"WSAEDISCON","features":[316]},{"name":"WSAEDQUOT","features":[316]},{"name":"WSAEFAULT","features":[316]},{"name":"WSAEHOSTDOWN","features":[316]},{"name":"WSAEHOSTUNREACH","features":[316]},{"name":"WSAEINPROGRESS","features":[316]},{"name":"WSAEINTR","features":[316]},{"name":"WSAEINVAL","features":[316]},{"name":"WSAEINVALIDPROCTABLE","features":[316]},{"name":"WSAEINVALIDPROVIDER","features":[316]},{"name":"WSAEISCONN","features":[316]},{"name":"WSAELOOP","features":[316]},{"name":"WSAEMFILE","features":[316]},{"name":"WSAEMSGSIZE","features":[316]},{"name":"WSAENAMETOOLONG","features":[316]},{"name":"WSAENETDOWN","features":[316]},{"name":"WSAENETRESET","features":[316]},{"name":"WSAENETUNREACH","features":[316]},{"name":"WSAENOBUFS","features":[316]},{"name":"WSAENOMORE","features":[316]},{"name":"WSAENOPROTOOPT","features":[316]},{"name":"WSAENOTCONN","features":[316]},{"name":"WSAENOTEMPTY","features":[316]},{"name":"WSAENOTSOCK","features":[316]},{"name":"WSAEOPNOTSUPP","features":[316]},{"name":"WSAEPFNOSUPPORT","features":[316]},{"name":"WSAEPROCLIM","features":[316]},{"name":"WSAEPROTONOSUPPORT","features":[316]},{"name":"WSAEPROTOTYPE","features":[316]},{"name":"WSAEPROVIDERFAILEDINIT","features":[316]},{"name":"WSAEREFUSED","features":[316]},{"name":"WSAEREMOTE","features":[316]},{"name":"WSAESETSERVICEOP","features":[316]},{"name":"WSAESHUTDOWN","features":[316]},{"name":"WSAESOCKTNOSUPPORT","features":[316]},{"name":"WSAESTALE","features":[316]},{"name":"WSAETIMEDOUT","features":[316]},{"name":"WSAETOOMANYREFS","features":[316]},{"name":"WSAEUSERS","features":[316]},{"name":"WSAEVENT","features":[316]},{"name":"WSAEWOULDBLOCK","features":[316]},{"name":"WSAEnumNameSpaceProvidersA","features":[303,316]},{"name":"WSAEnumNameSpaceProvidersExA","features":[303,316,354]},{"name":"WSAEnumNameSpaceProvidersExW","features":[303,316,354]},{"name":"WSAEnumNameSpaceProvidersW","features":[303,316]},{"name":"WSAEnumNetworkEvents","features":[303,316]},{"name":"WSAEnumProtocolsA","features":[316]},{"name":"WSAEnumProtocolsW","features":[316]},{"name":"WSAEventSelect","features":[303,316]},{"name":"WSAGetLastError","features":[316]},{"name":"WSAGetOverlappedResult","features":[303,316,308]},{"name":"WSAGetQOSByName","features":[303,316]},{"name":"WSAGetServiceClassInfoA","features":[316]},{"name":"WSAGetServiceClassInfoW","features":[316]},{"name":"WSAGetServiceClassNameByClassIdA","features":[316]},{"name":"WSAGetServiceClassNameByClassIdW","features":[316]},{"name":"WSAHOST_NOT_FOUND","features":[316]},{"name":"WSAHtonl","features":[316]},{"name":"WSAHtons","features":[316]},{"name":"WSAID_ACCEPTEX","features":[316]},{"name":"WSAID_CONNECTEX","features":[316]},{"name":"WSAID_DISCONNECTEX","features":[316]},{"name":"WSAID_GETACCEPTEXSOCKADDRS","features":[316]},{"name":"WSAID_MULTIPLE_RIO","features":[316]},{"name":"WSAID_TRANSMITFILE","features":[316]},{"name":"WSAID_TRANSMITPACKETS","features":[316]},{"name":"WSAID_WSAPOLL","features":[316]},{"name":"WSAID_WSARECVMSG","features":[316]},{"name":"WSAID_WSASENDMSG","features":[316]},{"name":"WSAImpersonateSocketPeer","features":[316]},{"name":"WSAInstallServiceClassA","features":[316]},{"name":"WSAInstallServiceClassW","features":[316]},{"name":"WSAIoctl","features":[303,316,308]},{"name":"WSAIsBlocking","features":[303,316]},{"name":"WSAJoinLeaf","features":[316]},{"name":"WSALookupServiceBeginA","features":[303,316,354]},{"name":"WSALookupServiceBeginW","features":[303,316,354]},{"name":"WSALookupServiceEnd","features":[303,316]},{"name":"WSALookupServiceNextA","features":[303,316,354]},{"name":"WSALookupServiceNextW","features":[303,316,354]},{"name":"WSAMSG","features":[316]},{"name":"WSANAMESPACE_INFOA","features":[303,316]},{"name":"WSANAMESPACE_INFOEXA","features":[303,316,354]},{"name":"WSANAMESPACE_INFOEXW","features":[303,316,354]},{"name":"WSANAMESPACE_INFOW","features":[303,316]},{"name":"WSANETWORKEVENTS","features":[316]},{"name":"WSANOTINITIALISED","features":[316]},{"name":"WSANO_DATA","features":[316]},{"name":"WSANO_RECOVERY","features":[316]},{"name":"WSANSCLASSINFOA","features":[316]},{"name":"WSANSCLASSINFOW","features":[316]},{"name":"WSANSPIoctl","features":[303,316,308]},{"name":"WSANtohl","features":[316]},{"name":"WSANtohs","features":[316]},{"name":"WSAPOLLDATA","features":[316]},{"name":"WSAPOLLFD","features":[316]},{"name":"WSAPOLL_EVENT_FLAGS","features":[316]},{"name":"WSAPROTOCOLCHAIN","features":[316]},{"name":"WSAPROTOCOL_INFOA","features":[316]},{"name":"WSAPROTOCOL_INFOW","features":[316]},{"name":"WSAPROTOCOL_LEN","features":[316]},{"name":"WSAPoll","features":[316]},{"name":"WSAProviderCompleteAsyncCall","features":[303,316]},{"name":"WSAProviderConfigChange","features":[303,316,308]},{"name":"WSAQUERYSET2A","features":[316,354]},{"name":"WSAQUERYSET2W","features":[316,354]},{"name":"WSAQUERYSETA","features":[316,354]},{"name":"WSAQUERYSETW","features":[316,354]},{"name":"WSAQuerySocketSecurity","features":[303,316,308]},{"name":"WSARecv","features":[303,316,308]},{"name":"WSARecvDisconnect","features":[316]},{"name":"WSARecvEx","features":[316]},{"name":"WSARecvFrom","features":[303,316,308]},{"name":"WSARemoveServiceClass","features":[316]},{"name":"WSAResetEvent","features":[303,316]},{"name":"WSARevertImpersonation","features":[316]},{"name":"WSASENDMSG","features":[303,316,308]},{"name":"WSASERVICECLASSINFOA","features":[316]},{"name":"WSASERVICECLASSINFOW","features":[316]},{"name":"WSASERVICE_NOT_FOUND","features":[316]},{"name":"WSASYSCALLFAILURE","features":[316]},{"name":"WSASYSNOTREADY","features":[316]},{"name":"WSASYS_STATUS_LEN","features":[316]},{"name":"WSASend","features":[303,316,308]},{"name":"WSASendDisconnect","features":[316]},{"name":"WSASendMsg","features":[303,316,308]},{"name":"WSASendTo","features":[303,316,308]},{"name":"WSASetBlockingHook","features":[303,316]},{"name":"WSASetEvent","features":[303,316]},{"name":"WSASetLastError","features":[316]},{"name":"WSASetServiceA","features":[316,354]},{"name":"WSASetServiceW","features":[316,354]},{"name":"WSASetSocketPeerTargetName","features":[303,316,308]},{"name":"WSASetSocketSecurity","features":[303,316,308]},{"name":"WSASocketA","features":[316]},{"name":"WSASocketW","features":[316]},{"name":"WSAStartup","features":[316]},{"name":"WSAStringToAddressA","features":[316]},{"name":"WSAStringToAddressW","features":[316]},{"name":"WSATHREADID","features":[303,316]},{"name":"WSATRY_AGAIN","features":[316]},{"name":"WSATYPE_NOT_FOUND","features":[316]},{"name":"WSAUnadvertiseProvider","features":[316]},{"name":"WSAUnhookBlockingHook","features":[316]},{"name":"WSAVERNOTSUPPORTED","features":[316]},{"name":"WSAVERSION","features":[316]},{"name":"WSAWaitForMultipleEvents","features":[303,316]},{"name":"WSA_COMPATIBILITY_BEHAVIOR_ID","features":[316]},{"name":"WSA_COMPATIBILITY_MODE","features":[316]},{"name":"WSA_ERROR","features":[316]},{"name":"WSA_E_CANCELLED","features":[316]},{"name":"WSA_E_NO_MORE","features":[316]},{"name":"WSA_FLAG_ACCESS_SYSTEM_SECURITY","features":[316]},{"name":"WSA_FLAG_MULTIPOINT_C_LEAF","features":[316]},{"name":"WSA_FLAG_MULTIPOINT_C_ROOT","features":[316]},{"name":"WSA_FLAG_MULTIPOINT_D_LEAF","features":[316]},{"name":"WSA_FLAG_MULTIPOINT_D_ROOT","features":[316]},{"name":"WSA_FLAG_NO_HANDLE_INHERIT","features":[316]},{"name":"WSA_FLAG_OVERLAPPED","features":[316]},{"name":"WSA_FLAG_REGISTERED_IO","features":[316]},{"name":"WSA_INFINITE","features":[316]},{"name":"WSA_INVALID_HANDLE","features":[316]},{"name":"WSA_INVALID_PARAMETER","features":[316]},{"name":"WSA_IO_INCOMPLETE","features":[316]},{"name":"WSA_IO_PENDING","features":[316]},{"name":"WSA_IPSEC_NAME_POLICY_ERROR","features":[316]},{"name":"WSA_MAXIMUM_WAIT_EVENTS","features":[316]},{"name":"WSA_NOT_ENOUGH_MEMORY","features":[316]},{"name":"WSA_OPERATION_ABORTED","features":[316]},{"name":"WSA_QOS_ADMISSION_FAILURE","features":[316]},{"name":"WSA_QOS_BAD_OBJECT","features":[316]},{"name":"WSA_QOS_BAD_STYLE","features":[316]},{"name":"WSA_QOS_EFILTERCOUNT","features":[316]},{"name":"WSA_QOS_EFILTERSTYLE","features":[316]},{"name":"WSA_QOS_EFILTERTYPE","features":[316]},{"name":"WSA_QOS_EFLOWCOUNT","features":[316]},{"name":"WSA_QOS_EFLOWDESC","features":[316]},{"name":"WSA_QOS_EFLOWSPEC","features":[316]},{"name":"WSA_QOS_EOBJLENGTH","features":[316]},{"name":"WSA_QOS_EPOLICYOBJ","features":[316]},{"name":"WSA_QOS_EPROVSPECBUF","features":[316]},{"name":"WSA_QOS_EPSFILTERSPEC","features":[316]},{"name":"WSA_QOS_EPSFLOWSPEC","features":[316]},{"name":"WSA_QOS_ESDMODEOBJ","features":[316]},{"name":"WSA_QOS_ESERVICETYPE","features":[316]},{"name":"WSA_QOS_ESHAPERATEOBJ","features":[316]},{"name":"WSA_QOS_EUNKOWNPSOBJ","features":[316]},{"name":"WSA_QOS_GENERIC_ERROR","features":[316]},{"name":"WSA_QOS_NO_RECEIVERS","features":[316]},{"name":"WSA_QOS_NO_SENDERS","features":[316]},{"name":"WSA_QOS_POLICY_FAILURE","features":[316]},{"name":"WSA_QOS_RECEIVERS","features":[316]},{"name":"WSA_QOS_REQUEST_CONFIRMED","features":[316]},{"name":"WSA_QOS_RESERVED_PETYPE","features":[316]},{"name":"WSA_QOS_SENDERS","features":[316]},{"name":"WSA_QOS_TRAFFIC_CTRL_ERROR","features":[316]},{"name":"WSA_SECURE_HOST_NOT_FOUND","features":[316]},{"name":"WSA_WAIT_EVENT_0","features":[316]},{"name":"WSA_WAIT_FAILED","features":[316]},{"name":"WSA_WAIT_IO_COMPLETION","features":[316]},{"name":"WSA_WAIT_TIMEOUT","features":[316]},{"name":"WSCDeinstallProvider","features":[316]},{"name":"WSCDeinstallProvider32","features":[316]},{"name":"WSCEnableNSProvider","features":[303,316]},{"name":"WSCEnableNSProvider32","features":[303,316]},{"name":"WSCEnumNameSpaceProviders32","features":[303,316]},{"name":"WSCEnumNameSpaceProvidersEx32","features":[303,316,354]},{"name":"WSCEnumProtocols","features":[316]},{"name":"WSCEnumProtocols32","features":[316]},{"name":"WSCGetApplicationCategory","features":[316]},{"name":"WSCGetProviderInfo","features":[316]},{"name":"WSCGetProviderInfo32","features":[316]},{"name":"WSCGetProviderPath","features":[316]},{"name":"WSCGetProviderPath32","features":[316]},{"name":"WSCInstallNameSpace","features":[316]},{"name":"WSCInstallNameSpace32","features":[316]},{"name":"WSCInstallNameSpaceEx","features":[316,354]},{"name":"WSCInstallNameSpaceEx32","features":[316,354]},{"name":"WSCInstallProvider","features":[316]},{"name":"WSCInstallProvider64_32","features":[316]},{"name":"WSCInstallProviderAndChains64_32","features":[316]},{"name":"WSCSetApplicationCategory","features":[316]},{"name":"WSCSetProviderInfo","features":[316]},{"name":"WSCSetProviderInfo32","features":[316]},{"name":"WSCUnInstallNameSpace","features":[316]},{"name":"WSCUnInstallNameSpace32","features":[316]},{"name":"WSCUpdateProvider","features":[316]},{"name":"WSCUpdateProvider32","features":[316]},{"name":"WSCWriteNameSpaceOrder","features":[316]},{"name":"WSCWriteNameSpaceOrder32","features":[316]},{"name":"WSCWriteProviderOrder","features":[316]},{"name":"WSCWriteProviderOrder32","features":[316]},{"name":"WSC_PROVIDER_AUDIT_INFO","features":[316]},{"name":"WSC_PROVIDER_INFO_TYPE","features":[316]},{"name":"WSK_SO_BASE","features":[316]},{"name":"WSPDATA","features":[316]},{"name":"WSPDESCRIPTION_LEN","features":[316]},{"name":"WSPPROC_TABLE","features":[303,316,308]},{"name":"WSPUPCALLTABLE","features":[303,316]},{"name":"WSS_OPERATION_IN_PROGRESS","features":[316]},{"name":"WsaBehaviorAll","features":[316]},{"name":"WsaBehaviorAutoTuning","features":[316]},{"name":"WsaBehaviorReceiveBuffering","features":[316]},{"name":"XP1_CONNECTIONLESS","features":[316]},{"name":"XP1_CONNECT_DATA","features":[316]},{"name":"XP1_DISCONNECT_DATA","features":[316]},{"name":"XP1_EXPEDITED_DATA","features":[316]},{"name":"XP1_GRACEFUL_CLOSE","features":[316]},{"name":"XP1_GUARANTEED_DELIVERY","features":[316]},{"name":"XP1_GUARANTEED_ORDER","features":[316]},{"name":"XP1_IFS_HANDLES","features":[316]},{"name":"XP1_INTERRUPT","features":[316]},{"name":"XP1_MESSAGE_ORIENTED","features":[316]},{"name":"XP1_MULTIPOINT_CONTROL_PLANE","features":[316]},{"name":"XP1_MULTIPOINT_DATA_PLANE","features":[316]},{"name":"XP1_PARTIAL_MESSAGE","features":[316]},{"name":"XP1_PSEUDO_STREAM","features":[316]},{"name":"XP1_QOS_SUPPORTED","features":[316]},{"name":"XP1_SAN_SUPPORT_SDP","features":[316]},{"name":"XP1_SUPPORT_BROADCAST","features":[316]},{"name":"XP1_SUPPORT_MULTIPOINT","features":[316]},{"name":"XP1_UNI_RECV","features":[316]},{"name":"XP1_UNI_SEND","features":[316]},{"name":"XP_BANDWIDTH_ALLOCATION","features":[316]},{"name":"XP_CONNECTIONLESS","features":[316]},{"name":"XP_CONNECT_DATA","features":[316]},{"name":"XP_DISCONNECT_DATA","features":[316]},{"name":"XP_ENCRYPTS","features":[316]},{"name":"XP_EXPEDITED_DATA","features":[316]},{"name":"XP_FRAGMENTATION","features":[316]},{"name":"XP_GRACEFUL_CLOSE","features":[316]},{"name":"XP_GUARANTEED_DELIVERY","features":[316]},{"name":"XP_GUARANTEED_ORDER","features":[316]},{"name":"XP_MESSAGE_ORIENTED","features":[316]},{"name":"XP_PSEUDO_STREAM","features":[316]},{"name":"XP_SUPPORTS_BROADCAST","features":[316]},{"name":"XP_SUPPORTS_MULTICAST","features":[316]},{"name":"_BIG_ENDIAN","features":[316]},{"name":"_LITTLE_ENDIAN","features":[316]},{"name":"_PDP_ENDIAN","features":[316]},{"name":"_SS_MAXSIZE","features":[316]},{"name":"__WSAFDIsSet","features":[316]},{"name":"accept","features":[316]},{"name":"bind","features":[316]},{"name":"closesocket","features":[316]},{"name":"connect","features":[316]},{"name":"eWINDOW_ADVANCE_METHOD","features":[316]},{"name":"freeaddrinfo","features":[316]},{"name":"getaddrinfo","features":[316]},{"name":"gethostbyaddr","features":[316]},{"name":"gethostbyname","features":[316]},{"name":"gethostname","features":[316]},{"name":"getnameinfo","features":[316]},{"name":"getpeername","features":[316]},{"name":"getprotobyname","features":[316]},{"name":"getprotobynumber","features":[316]},{"name":"getservbyname","features":[316]},{"name":"getservbyport","features":[316]},{"name":"getsockname","features":[316]},{"name":"getsockopt","features":[316]},{"name":"htonl","features":[316]},{"name":"htons","features":[316]},{"name":"inet_addr","features":[316]},{"name":"inet_ntoa","features":[316]},{"name":"inet_ntop","features":[316]},{"name":"inet_pton","features":[316]},{"name":"ioctlsocket","features":[316]},{"name":"listen","features":[316]},{"name":"netent","features":[316]},{"name":"ntohl","features":[316]},{"name":"ntohs","features":[316]},{"name":"recv","features":[316]},{"name":"recvfrom","features":[316]},{"name":"select","features":[316]},{"name":"send","features":[316]},{"name":"sendto","features":[316]},{"name":"setsockopt","features":[316]},{"name":"shutdown","features":[316]},{"name":"sockaddr_gen","features":[316]},{"name":"sockaddr_in6_old","features":[316]},{"name":"socket","features":[316]},{"name":"socklen_t","features":[316]},{"name":"sockproto","features":[316]},{"name":"tcp_keepalive","features":[316]}],"478":[{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA","features":[474]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_CURRENT_VERSION","features":[474]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_VERSION_1","features":[474]},{"name":"IContentPrefetcherTaskTrigger","features":[474]},{"name":"WEBAUTHN_API_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_API_VERSION_1","features":[474]},{"name":"WEBAUTHN_API_VERSION_2","features":[474]},{"name":"WEBAUTHN_API_VERSION_3","features":[474]},{"name":"WEBAUTHN_API_VERSION_4","features":[474]},{"name":"WEBAUTHN_API_VERSION_5","features":[474]},{"name":"WEBAUTHN_API_VERSION_6","features":[474]},{"name":"WEBAUTHN_API_VERSION_7","features":[474]},{"name":"WEBAUTHN_ASSERTION","features":[474]},{"name":"WEBAUTHN_ASSERTION_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_ASSERTION_VERSION_1","features":[474]},{"name":"WEBAUTHN_ASSERTION_VERSION_2","features":[474]},{"name":"WEBAUTHN_ASSERTION_VERSION_3","features":[474]},{"name":"WEBAUTHN_ASSERTION_VERSION_4","features":[474]},{"name":"WEBAUTHN_ASSERTION_VERSION_5","features":[474]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_ANY","features":[474]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_DIRECT","features":[474]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_INDIRECT","features":[474]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_NONE","features":[474]},{"name":"WEBAUTHN_ATTESTATION_DECODE_COMMON","features":[474]},{"name":"WEBAUTHN_ATTESTATION_DECODE_NONE","features":[474]},{"name":"WEBAUTHN_ATTESTATION_TYPE_NONE","features":[474]},{"name":"WEBAUTHN_ATTESTATION_TYPE_PACKED","features":[474]},{"name":"WEBAUTHN_ATTESTATION_TYPE_TPM","features":[474]},{"name":"WEBAUTHN_ATTESTATION_TYPE_U2F","features":[474]},{"name":"WEBAUTHN_ATTESTATION_VER_TPM_2_0","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_ANY","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM_U2F_V2","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_PLATFORM","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS","features":[303,474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_1","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_2","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_3","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_4","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_5","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_6","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_7","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_HMAC_SECRET_VALUES_FLAG","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS","features":[303,474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_1","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_2","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_3","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_4","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_5","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_6","features":[474]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_7","features":[474]},{"name":"WEBAUTHN_CLIENT_DATA","features":[474]},{"name":"WEBAUTHN_CLIENT_DATA_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_COMMON_ATTESTATION","features":[474]},{"name":"WEBAUTHN_COMMON_ATTESTATION_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P256_WITH_SHA256","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P384_WITH_SHA384","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P521_WITH_SHA512","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA256","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA384","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA512","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA256","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA384","features":[474]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA512","features":[474]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER","features":[474]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETERS","features":[474]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_CREDENTIAL","features":[474]},{"name":"WEBAUTHN_CREDENTIALS","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION","features":[303,474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_1","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_2","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_3","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_4","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_5","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_6","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS","features":[303,474]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_LIST","features":[303,474]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_1","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_2","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_EX","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_EX_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_LIST","features":[474]},{"name":"WEBAUTHN_CREDENTIAL_TYPE_PUBLIC_KEY","features":[474]},{"name":"WEBAUTHN_CRED_BLOB_EXTENSION","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_DELETE","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_GET","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_NONE","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_SET","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_AUTHENTICATOR_ERROR","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_DATA","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_PARAMETER","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_LACK_OF_SPACE","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_MULTIPLE_CREDENTIALS","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NONE","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_FOUND","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_SUPPORTED","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_PLATFORM_ERROR","features":[474]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_SUCCESS","features":[474]},{"name":"WEBAUTHN_CRED_PROTECT_EXTENSION_IN","features":[303,474]},{"name":"WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT","features":[474]},{"name":"WEBAUTHN_CTAP_ONE_HMAC_SECRET_LENGTH","features":[474]},{"name":"WEBAUTHN_CTAP_TRANSPORT_BLE","features":[474]},{"name":"WEBAUTHN_CTAP_TRANSPORT_FLAGS_MASK","features":[474]},{"name":"WEBAUTHN_CTAP_TRANSPORT_HYBRID","features":[474]},{"name":"WEBAUTHN_CTAP_TRANSPORT_INTERNAL","features":[474]},{"name":"WEBAUTHN_CTAP_TRANSPORT_NFC","features":[474]},{"name":"WEBAUTHN_CTAP_TRANSPORT_TEST","features":[474]},{"name":"WEBAUTHN_CTAP_TRANSPORT_USB","features":[474]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_NONE","features":[474]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_PLATFORM_MANAGED","features":[474]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_VENDOR_FACILITATED","features":[474]},{"name":"WEBAUTHN_EXTENSION","features":[474]},{"name":"WEBAUTHN_EXTENSIONS","features":[474]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_BLOB","features":[474]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_PROTECT","features":[474]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_HMAC_SECRET","features":[474]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_MIN_PIN_LENGTH","features":[474]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS","features":[303,474]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_VERSION_1","features":[474]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_256","features":[474]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_384","features":[474]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_512","features":[474]},{"name":"WEBAUTHN_HMAC_SECRET_SALT","features":[474]},{"name":"WEBAUTHN_HMAC_SECRET_SALT_VALUES","features":[474]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_NONE","features":[474]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_PREFERRED","features":[474]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_REQUIRED","features":[474]},{"name":"WEBAUTHN_MAX_USER_ID_LENGTH","features":[474]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION","features":[474]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION","features":[474]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION_CURRENT_VERSION","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_ANY","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL_WITH_CREDENTIAL_ID_LIST","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIRED","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_ANY","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_DISCOURAGED","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_PREFERRED","features":[474]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_REQUIRED","features":[474]},{"name":"WEBAUTHN_X5C","features":[474]},{"name":"WS_ABANDON_MESSAGE_CALLBACK","features":[474]},{"name":"WS_ABORT_CHANNEL_CALLBACK","features":[474]},{"name":"WS_ABORT_LISTENER_CALLBACK","features":[474]},{"name":"WS_ACCEPT_CHANNEL_CALLBACK","features":[474]},{"name":"WS_ACTION_HEADER","features":[474]},{"name":"WS_ADDRESSING_VERSION","features":[474]},{"name":"WS_ADDRESSING_VERSION_0_9","features":[474]},{"name":"WS_ADDRESSING_VERSION_1_0","features":[474]},{"name":"WS_ADDRESSING_VERSION_TRANSPORT","features":[474]},{"name":"WS_ANY_ATTRIBUTE","features":[303,474]},{"name":"WS_ANY_ATTRIBUTES","features":[303,474]},{"name":"WS_ANY_ATTRIBUTES_FIELD_MAPPING","features":[474]},{"name":"WS_ANY_ATTRIBUTES_TYPE","features":[474]},{"name":"WS_ANY_CONTENT_FIELD_MAPPING","features":[474]},{"name":"WS_ANY_ELEMENT_FIELD_MAPPING","features":[474]},{"name":"WS_ANY_ELEMENT_TYPE_MAPPING","features":[474]},{"name":"WS_ASYNC_CALLBACK","features":[474]},{"name":"WS_ASYNC_CONTEXT","features":[474]},{"name":"WS_ASYNC_FUNCTION","features":[474]},{"name":"WS_ASYNC_OPERATION","features":[474]},{"name":"WS_ASYNC_STATE","features":[474]},{"name":"WS_ATTRIBUTE_DESCRIPTION","features":[303,474]},{"name":"WS_ATTRIBUTE_FIELD_MAPPING","features":[474]},{"name":"WS_ATTRIBUTE_TYPE_MAPPING","features":[474]},{"name":"WS_AUTO_COOKIE_MODE","features":[474]},{"name":"WS_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_BLANK_MESSAGE","features":[474]},{"name":"WS_BOOL_DESCRIPTION","features":[303,474]},{"name":"WS_BOOL_TYPE","features":[474]},{"name":"WS_BOOL_VALUE_TYPE","features":[474]},{"name":"WS_BUFFERED_TRANSFER_MODE","features":[474]},{"name":"WS_BUFFERS","features":[474]},{"name":"WS_BYTES","features":[474]},{"name":"WS_BYTES_DESCRIPTION","features":[474]},{"name":"WS_BYTES_TYPE","features":[474]},{"name":"WS_BYTE_ARRAY_DESCRIPTION","features":[474]},{"name":"WS_BYTE_ARRAY_TYPE","features":[474]},{"name":"WS_CALLBACK_MODEL","features":[474]},{"name":"WS_CALL_PROPERTY","features":[474]},{"name":"WS_CALL_PROPERTY_CALL_ID","features":[474]},{"name":"WS_CALL_PROPERTY_CHECK_MUST_UNDERSTAND","features":[474]},{"name":"WS_CALL_PROPERTY_ID","features":[474]},{"name":"WS_CALL_PROPERTY_RECEIVE_MESSAGE_CONTEXT","features":[474]},{"name":"WS_CALL_PROPERTY_SEND_MESSAGE_CONTEXT","features":[474]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[474]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[474]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK","features":[303,474,387]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[303,474,387]},{"name":"WS_CERT_CREDENTIAL","features":[474]},{"name":"WS_CERT_CREDENTIAL_TYPE","features":[474]},{"name":"WS_CERT_ENDPOINT_IDENTITY","features":[474]},{"name":"WS_CERT_ENDPOINT_IDENTITY_TYPE","features":[474]},{"name":"WS_CERT_FAILURE_CN_MISMATCH","features":[474]},{"name":"WS_CERT_FAILURE_INVALID_DATE","features":[474]},{"name":"WS_CERT_FAILURE_REVOCATION_OFFLINE","features":[474]},{"name":"WS_CERT_FAILURE_UNTRUSTED_ROOT","features":[474]},{"name":"WS_CERT_FAILURE_WRONG_USAGE","features":[474]},{"name":"WS_CERT_ISSUER_LIST_NOTIFICATION_CALLBACK","features":[474,324,387]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[474]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR","features":[303,474,387]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR_TYPE","features":[474]},{"name":"WS_CHANNEL","features":[474]},{"name":"WS_CHANNEL_BINDING","features":[474]},{"name":"WS_CHANNEL_DECODER","features":[474]},{"name":"WS_CHANNEL_ENCODER","features":[474]},{"name":"WS_CHANNEL_PROPERTIES","features":[474]},{"name":"WS_CHANNEL_PROPERTY","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ADDRESSING_VERSION","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ALLOW_UNSECURED_FAULTS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ASYNC_CALLBACK_MODEL","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CHANNEL_TYPE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CLOSE_TIMEOUT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CONNECT_TIMEOUT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CONSTRAINT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_COOKIE_MODE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_CALLBACKS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_INSTANCE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_PARAMETERS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_HTTP_PROXY","features":[474]},{"name":"WS_CHANNEL_PROPERTY_DECODER","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_HTTP_REDIRECT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_TIMEOUTS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ENCODER","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ENCODING","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ENVELOPE_VERSION","features":[474]},{"name":"WS_CHANNEL_PROPERTY_FAULTS_AS_ERRORS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_HTTP_CONNECTION_ID","features":[474]},{"name":"WS_CHANNEL_PROPERTY_HTTP_MESSAGE_MAPPING","features":[474]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SETTING_MODE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SPN","features":[474]},{"name":"WS_CHANNEL_PROPERTY_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_HTTP_SERVER_SPN","features":[474]},{"name":"WS_CHANNEL_PROPERTY_ID","features":[474]},{"name":"WS_CHANNEL_PROPERTY_IP_VERSION","features":[474]},{"name":"WS_CHANNEL_PROPERTY_IS_SESSION_SHUT_DOWN","features":[474]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_INTERVAL","features":[474]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_TIME","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MAX_BUFFERED_MESSAGE_SIZE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_REQUEST_HEADERS_BUFFER_SIZE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_SERVER_CONNECTIONS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MAX_SESSION_DICTIONARY_SIZE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_FLUSH_SIZE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_MESSAGE_SIZE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_START_SIZE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_HOPS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_INTERFACE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_NO_DELAY","features":[474]},{"name":"WS_CHANNEL_PROPERTY_PROTECTION_LEVEL","features":[474]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_RESPONSE_TIMEOUT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_TIMEOUT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_ADDRESS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_IP_ADDRESS","features":[474]},{"name":"WS_CHANNEL_PROPERTY_RESOLVE_TIMEOUT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_SEND_KEEP_ALIVES","features":[474]},{"name":"WS_CHANNEL_PROPERTY_SEND_TIMEOUT","features":[474]},{"name":"WS_CHANNEL_PROPERTY_STATE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_TRANSFER_MODE","features":[474]},{"name":"WS_CHANNEL_PROPERTY_TRANSPORT_URL","features":[474]},{"name":"WS_CHANNEL_PROPERTY_TRIM_BUFFERED_MESSAGE_SIZE","features":[474]},{"name":"WS_CHANNEL_STATE","features":[474]},{"name":"WS_CHANNEL_STATE_ACCEPTING","features":[474]},{"name":"WS_CHANNEL_STATE_CLOSED","features":[474]},{"name":"WS_CHANNEL_STATE_CLOSING","features":[474]},{"name":"WS_CHANNEL_STATE_CREATED","features":[474]},{"name":"WS_CHANNEL_STATE_FAULTED","features":[474]},{"name":"WS_CHANNEL_STATE_OPEN","features":[474]},{"name":"WS_CHANNEL_STATE_OPENING","features":[474]},{"name":"WS_CHANNEL_TYPE","features":[474]},{"name":"WS_CHANNEL_TYPE_DUPLEX","features":[474]},{"name":"WS_CHANNEL_TYPE_DUPLEX_SESSION","features":[474]},{"name":"WS_CHANNEL_TYPE_INPUT","features":[474]},{"name":"WS_CHANNEL_TYPE_INPUT_SESSION","features":[474]},{"name":"WS_CHANNEL_TYPE_OUTPUT","features":[474]},{"name":"WS_CHANNEL_TYPE_OUTPUT_SESSION","features":[474]},{"name":"WS_CHANNEL_TYPE_REPLY","features":[474]},{"name":"WS_CHANNEL_TYPE_REQUEST","features":[474]},{"name":"WS_CHANNEL_TYPE_SESSION","features":[474]},{"name":"WS_CHARSET","features":[474]},{"name":"WS_CHARSET_AUTO","features":[474]},{"name":"WS_CHARSET_UTF16BE","features":[474]},{"name":"WS_CHARSET_UTF16LE","features":[474]},{"name":"WS_CHARSET_UTF8","features":[474]},{"name":"WS_CHAR_ARRAY_DESCRIPTION","features":[474]},{"name":"WS_CHAR_ARRAY_TYPE","features":[474]},{"name":"WS_CLOSE_CHANNEL_CALLBACK","features":[474]},{"name":"WS_CLOSE_LISTENER_CALLBACK","features":[474]},{"name":"WS_CONTRACT_DESCRIPTION","features":[303,474]},{"name":"WS_COOKIE_MODE","features":[474]},{"name":"WS_CREATE_CHANNEL_CALLBACK","features":[474]},{"name":"WS_CREATE_CHANNEL_FOR_LISTENER_CALLBACK","features":[474]},{"name":"WS_CREATE_DECODER_CALLBACK","features":[474]},{"name":"WS_CREATE_ENCODER_CALLBACK","features":[474]},{"name":"WS_CREATE_LISTENER_CALLBACK","features":[474]},{"name":"WS_CUSTOM_CERT_CREDENTIAL","features":[303,474,324,387]},{"name":"WS_CUSTOM_CERT_CREDENTIAL_TYPE","features":[474]},{"name":"WS_CUSTOM_CHANNEL_BINDING","features":[474]},{"name":"WS_CUSTOM_CHANNEL_CALLBACKS","features":[474]},{"name":"WS_CUSTOM_HTTP_PROXY","features":[474]},{"name":"WS_CUSTOM_LISTENER_CALLBACKS","features":[474]},{"name":"WS_CUSTOM_TYPE","features":[474]},{"name":"WS_CUSTOM_TYPE_DESCRIPTION","features":[303,474]},{"name":"WS_DATETIME","features":[474]},{"name":"WS_DATETIME_DESCRIPTION","features":[474]},{"name":"WS_DATETIME_FORMAT","features":[474]},{"name":"WS_DATETIME_FORMAT_LOCAL","features":[474]},{"name":"WS_DATETIME_FORMAT_NONE","features":[474]},{"name":"WS_DATETIME_FORMAT_UTC","features":[474]},{"name":"WS_DATETIME_TYPE","features":[474]},{"name":"WS_DATETIME_VALUE_TYPE","features":[474]},{"name":"WS_DECIMAL_DESCRIPTION","features":[303,474]},{"name":"WS_DECIMAL_TYPE","features":[474]},{"name":"WS_DECIMAL_VALUE_TYPE","features":[474]},{"name":"WS_DECODER_DECODE_CALLBACK","features":[474]},{"name":"WS_DECODER_END_CALLBACK","features":[474]},{"name":"WS_DECODER_GET_CONTENT_TYPE_CALLBACK","features":[474]},{"name":"WS_DECODER_START_CALLBACK","features":[474]},{"name":"WS_DEFAULT_VALUE","features":[474]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[474]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[474]},{"name":"WS_DESCRIPTION_TYPE","features":[474]},{"name":"WS_DISALLOWED_USER_AGENT_SUBSTRINGS","features":[474]},{"name":"WS_DNS_ENDPOINT_IDENTITY","features":[474]},{"name":"WS_DNS_ENDPOINT_IDENTITY_TYPE","features":[474]},{"name":"WS_DOUBLE_DESCRIPTION","features":[474]},{"name":"WS_DOUBLE_TYPE","features":[474]},{"name":"WS_DOUBLE_VALUE_TYPE","features":[474]},{"name":"WS_DUPLICATE_MESSAGE","features":[474]},{"name":"WS_DURATION","features":[303,474]},{"name":"WS_DURATION_COMPARISON_CALLBACK","features":[303,474]},{"name":"WS_DURATION_DESCRIPTION","features":[303,474]},{"name":"WS_DURATION_TYPE","features":[474]},{"name":"WS_DURATION_VALUE_TYPE","features":[474]},{"name":"WS_DYNAMIC_STRING_CALLBACK","features":[303,474]},{"name":"WS_ELEMENT_CHOICE_FIELD_MAPPING","features":[474]},{"name":"WS_ELEMENT_CONTENT_TYPE_MAPPING","features":[474]},{"name":"WS_ELEMENT_DESCRIPTION","features":[303,474]},{"name":"WS_ELEMENT_FIELD_MAPPING","features":[474]},{"name":"WS_ELEMENT_TYPE_MAPPING","features":[474]},{"name":"WS_ENCODER_ENCODE_CALLBACK","features":[474]},{"name":"WS_ENCODER_END_CALLBACK","features":[474]},{"name":"WS_ENCODER_GET_CONTENT_TYPE_CALLBACK","features":[474]},{"name":"WS_ENCODER_START_CALLBACK","features":[474]},{"name":"WS_ENCODING","features":[474]},{"name":"WS_ENCODING_RAW","features":[474]},{"name":"WS_ENCODING_XML_BINARY_1","features":[474]},{"name":"WS_ENCODING_XML_BINARY_SESSION_1","features":[474]},{"name":"WS_ENCODING_XML_MTOM_UTF16BE","features":[474]},{"name":"WS_ENCODING_XML_MTOM_UTF16LE","features":[474]},{"name":"WS_ENCODING_XML_MTOM_UTF8","features":[474]},{"name":"WS_ENCODING_XML_UTF16BE","features":[474]},{"name":"WS_ENCODING_XML_UTF16LE","features":[474]},{"name":"WS_ENCODING_XML_UTF8","features":[474]},{"name":"WS_ENDPOINT_ADDRESS","features":[474]},{"name":"WS_ENDPOINT_ADDRESS_DESCRIPTION","features":[474]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_METADATA_ADDRESS","features":[474]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_TYPE","features":[474]},{"name":"WS_ENDPOINT_ADDRESS_TYPE","features":[474]},{"name":"WS_ENDPOINT_IDENTITY","features":[474]},{"name":"WS_ENDPOINT_IDENTITY_TYPE","features":[474]},{"name":"WS_ENDPOINT_POLICY_EXTENSION","features":[303,474]},{"name":"WS_ENDPOINT_POLICY_EXTENSION_TYPE","features":[474]},{"name":"WS_ENUM_DESCRIPTION","features":[303,474]},{"name":"WS_ENUM_TYPE","features":[474]},{"name":"WS_ENUM_VALUE","features":[303,474]},{"name":"WS_ENVELOPE_VERSION","features":[474]},{"name":"WS_ENVELOPE_VERSION_NONE","features":[474]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_1","features":[474]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_2","features":[474]},{"name":"WS_ERROR","features":[474]},{"name":"WS_ERROR_PROPERTY","features":[474]},{"name":"WS_ERROR_PROPERTY_ID","features":[474]},{"name":"WS_ERROR_PROPERTY_LANGID","features":[474]},{"name":"WS_ERROR_PROPERTY_ORIGINAL_ERROR_CODE","features":[474]},{"name":"WS_ERROR_PROPERTY_STRING_COUNT","features":[474]},{"name":"WS_EXCEPTION_CODE","features":[474]},{"name":"WS_EXCEPTION_CODE_INTERNAL_FAILURE","features":[474]},{"name":"WS_EXCEPTION_CODE_USAGE_FAILURE","features":[474]},{"name":"WS_EXCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[474]},{"name":"WS_EXCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[474]},{"name":"WS_EXTENDED_PROTECTION_POLICY","features":[474]},{"name":"WS_EXTENDED_PROTECTION_POLICY_ALWAYS","features":[474]},{"name":"WS_EXTENDED_PROTECTION_POLICY_NEVER","features":[474]},{"name":"WS_EXTENDED_PROTECTION_POLICY_WHEN_SUPPORTED","features":[474]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO","features":[474]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_BOUND_SERVER","features":[474]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_TERMINATED_SSL","features":[474]},{"name":"WS_FAULT","features":[303,474]},{"name":"WS_FAULT_CODE","features":[303,474]},{"name":"WS_FAULT_DESCRIPTION","features":[474]},{"name":"WS_FAULT_DETAIL_DESCRIPTION","features":[303,474]},{"name":"WS_FAULT_DISCLOSURE","features":[474]},{"name":"WS_FAULT_ERROR_PROPERTY_ACTION","features":[474]},{"name":"WS_FAULT_ERROR_PROPERTY_FAULT","features":[474]},{"name":"WS_FAULT_ERROR_PROPERTY_HEADER","features":[474]},{"name":"WS_FAULT_ERROR_PROPERTY_ID","features":[474]},{"name":"WS_FAULT_MESSAGE","features":[474]},{"name":"WS_FAULT_REASON","features":[474]},{"name":"WS_FAULT_TO_HEADER","features":[474]},{"name":"WS_FAULT_TYPE","features":[474]},{"name":"WS_FIELD_DESCRIPTION","features":[303,474]},{"name":"WS_FIELD_MAPPING","features":[474]},{"name":"WS_FIELD_NILLABLE","features":[474]},{"name":"WS_FIELD_NILLABLE_ITEM","features":[474]},{"name":"WS_FIELD_OPTIONAL","features":[474]},{"name":"WS_FIELD_OTHER_NAMESPACE","features":[474]},{"name":"WS_FIELD_POINTER","features":[474]},{"name":"WS_FLOAT_DESCRIPTION","features":[474]},{"name":"WS_FLOAT_TYPE","features":[474]},{"name":"WS_FLOAT_VALUE_TYPE","features":[474]},{"name":"WS_FREE_CHANNEL_CALLBACK","features":[474]},{"name":"WS_FREE_DECODER_CALLBACK","features":[474]},{"name":"WS_FREE_ENCODER_CALLBACK","features":[474]},{"name":"WS_FREE_LISTENER_CALLBACK","features":[474]},{"name":"WS_FROM_HEADER","features":[474]},{"name":"WS_FULL_FAULT_DISCLOSURE","features":[474]},{"name":"WS_GET_CERT_CALLBACK","features":[303,474,387]},{"name":"WS_GET_CHANNEL_PROPERTY_CALLBACK","features":[474]},{"name":"WS_GET_LISTENER_PROPERTY_CALLBACK","features":[474]},{"name":"WS_GUID_DESCRIPTION","features":[474]},{"name":"WS_GUID_TYPE","features":[474]},{"name":"WS_GUID_VALUE_TYPE","features":[474]},{"name":"WS_HEADER_TYPE","features":[474]},{"name":"WS_HEAP","features":[474]},{"name":"WS_HEAP_PROPERTIES","features":[474]},{"name":"WS_HEAP_PROPERTY","features":[474]},{"name":"WS_HEAP_PROPERTY_ACTUAL_SIZE","features":[474]},{"name":"WS_HEAP_PROPERTY_ID","features":[474]},{"name":"WS_HEAP_PROPERTY_MAX_SIZE","features":[474]},{"name":"WS_HEAP_PROPERTY_REQUESTED_SIZE","features":[474]},{"name":"WS_HEAP_PROPERTY_TRIM_SIZE","features":[474]},{"name":"WS_HOST_NAMES","features":[474]},{"name":"WS_HTTPS_URL","features":[474]},{"name":"WS_HTTP_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_CHANNEL_BINDING","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_BASIC","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_DIGEST","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NEGOTIATE","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NONE","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NTLM","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_PASSPORT","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_TARGET","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_PROXY","features":[474]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_SERVICE","features":[474]},{"name":"WS_HTTP_HEADER_MAPPING","features":[303,474]},{"name":"WS_HTTP_HEADER_MAPPING_COMMA_SEPARATOR","features":[474]},{"name":"WS_HTTP_HEADER_MAPPING_QUOTED_VALUE","features":[474]},{"name":"WS_HTTP_HEADER_MAPPING_SEMICOLON_SEPARATOR","features":[474]},{"name":"WS_HTTP_MESSAGE_MAPPING","features":[303,474]},{"name":"WS_HTTP_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_PROXY_SETTING_MODE","features":[474]},{"name":"WS_HTTP_PROXY_SETTING_MODE_AUTO","features":[474]},{"name":"WS_HTTP_PROXY_SETTING_MODE_CUSTOM","features":[474]},{"name":"WS_HTTP_PROXY_SETTING_MODE_NONE","features":[474]},{"name":"WS_HTTP_REDIRECT_CALLBACK","features":[474]},{"name":"WS_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[474]},{"name":"WS_HTTP_REQUEST_MAPPING_VERB","features":[474]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_CODE","features":[474]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_TEXT","features":[474]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_SSL_HEADER_AUTH_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_SSL_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_SSL_USERNAME_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[474]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[474]},{"name":"WS_HTTP_URL","features":[474]},{"name":"WS_INCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[474]},{"name":"WS_INCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[474]},{"name":"WS_INT16_DESCRIPTION","features":[474]},{"name":"WS_INT16_TYPE","features":[474]},{"name":"WS_INT16_VALUE_TYPE","features":[474]},{"name":"WS_INT32_DESCRIPTION","features":[474]},{"name":"WS_INT32_TYPE","features":[474]},{"name":"WS_INT32_VALUE_TYPE","features":[474]},{"name":"WS_INT64_DESCRIPTION","features":[474]},{"name":"WS_INT64_TYPE","features":[474]},{"name":"WS_INT64_VALUE_TYPE","features":[474]},{"name":"WS_INT8_DESCRIPTION","features":[474]},{"name":"WS_INT8_TYPE","features":[474]},{"name":"WS_INT8_VALUE_TYPE","features":[474]},{"name":"WS_IP_VERSION","features":[474]},{"name":"WS_IP_VERSION_4","features":[474]},{"name":"WS_IP_VERSION_6","features":[474]},{"name":"WS_IP_VERSION_AUTO","features":[474]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[303,474]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_IS_DEFAULT_VALUE_CALLBACK","features":[303,474]},{"name":"WS_ITEM_RANGE","features":[474]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING","features":[474]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[474]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[474]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[474]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_LISTENER","features":[474]},{"name":"WS_LISTENER_PROPERTIES","features":[474]},{"name":"WS_LISTENER_PROPERTY","features":[474]},{"name":"WS_LISTENER_PROPERTY_ASYNC_CALLBACK_MODEL","features":[474]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_BINDING","features":[474]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_TYPE","features":[474]},{"name":"WS_LISTENER_PROPERTY_CLOSE_TIMEOUT","features":[474]},{"name":"WS_LISTENER_PROPERTY_CONNECT_TIMEOUT","features":[474]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_CALLBACKS","features":[474]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_INSTANCE","features":[474]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_PARAMETERS","features":[474]},{"name":"WS_LISTENER_PROPERTY_DISALLOWED_USER_AGENT","features":[474]},{"name":"WS_LISTENER_PROPERTY_ID","features":[474]},{"name":"WS_LISTENER_PROPERTY_IP_VERSION","features":[474]},{"name":"WS_LISTENER_PROPERTY_IS_MULTICAST","features":[474]},{"name":"WS_LISTENER_PROPERTY_LISTEN_BACKLOG","features":[474]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_INTERFACES","features":[474]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_LOOPBACK","features":[474]},{"name":"WS_LISTENER_PROPERTY_STATE","features":[474]},{"name":"WS_LISTENER_PROPERTY_TO_HEADER_MATCHING_OPTIONS","features":[474]},{"name":"WS_LISTENER_PROPERTY_TRANSPORT_URL_MATCHING_OPTIONS","features":[474]},{"name":"WS_LISTENER_STATE","features":[474]},{"name":"WS_LISTENER_STATE_CLOSED","features":[474]},{"name":"WS_LISTENER_STATE_CLOSING","features":[474]},{"name":"WS_LISTENER_STATE_CREATED","features":[474]},{"name":"WS_LISTENER_STATE_FAULTED","features":[474]},{"name":"WS_LISTENER_STATE_OPEN","features":[474]},{"name":"WS_LISTENER_STATE_OPENING","features":[474]},{"name":"WS_LONG_CALLBACK","features":[474]},{"name":"WS_MANUAL_COOKIE_MODE","features":[474]},{"name":"WS_MATCH_URL_DNS_FULLY_QUALIFIED_HOST","features":[474]},{"name":"WS_MATCH_URL_DNS_HOST","features":[474]},{"name":"WS_MATCH_URL_EXACT_PATH","features":[474]},{"name":"WS_MATCH_URL_HOST_ADDRESSES","features":[474]},{"name":"WS_MATCH_URL_LOCAL_HOST","features":[474]},{"name":"WS_MATCH_URL_NETBIOS_HOST","features":[474]},{"name":"WS_MATCH_URL_NO_QUERY","features":[474]},{"name":"WS_MATCH_URL_PORT","features":[474]},{"name":"WS_MATCH_URL_PREFIX_PATH","features":[474]},{"name":"WS_MATCH_URL_THIS_HOST","features":[474]},{"name":"WS_MESSAGE","features":[474]},{"name":"WS_MESSAGE_DESCRIPTION","features":[303,474]},{"name":"WS_MESSAGE_DONE_CALLBACK","features":[474]},{"name":"WS_MESSAGE_ID_HEADER","features":[474]},{"name":"WS_MESSAGE_INITIALIZATION","features":[474]},{"name":"WS_MESSAGE_PROPERTIES","features":[474]},{"name":"WS_MESSAGE_PROPERTY","features":[474]},{"name":"WS_MESSAGE_PROPERTY_ADDRESSING_VERSION","features":[474]},{"name":"WS_MESSAGE_PROPERTY_BODY_READER","features":[474]},{"name":"WS_MESSAGE_PROPERTY_BODY_WRITER","features":[474]},{"name":"WS_MESSAGE_PROPERTY_ENCODED_CERT","features":[474]},{"name":"WS_MESSAGE_PROPERTY_ENVELOPE_VERSION","features":[474]},{"name":"WS_MESSAGE_PROPERTY_HEADER_BUFFER","features":[474]},{"name":"WS_MESSAGE_PROPERTY_HEADER_POSITION","features":[474]},{"name":"WS_MESSAGE_PROPERTY_HEAP","features":[474]},{"name":"WS_MESSAGE_PROPERTY_HEAP_PROPERTIES","features":[474]},{"name":"WS_MESSAGE_PROPERTY_HTTP_HEADER_AUTH_WINDOWS_TOKEN","features":[474]},{"name":"WS_MESSAGE_PROPERTY_ID","features":[474]},{"name":"WS_MESSAGE_PROPERTY_IS_ADDRESSED","features":[474]},{"name":"WS_MESSAGE_PROPERTY_IS_FAULT","features":[474]},{"name":"WS_MESSAGE_PROPERTY_MAX_PROCESSED_HEADERS","features":[474]},{"name":"WS_MESSAGE_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[474]},{"name":"WS_MESSAGE_PROPERTY_PROTECTION_LEVEL","features":[474]},{"name":"WS_MESSAGE_PROPERTY_SAML_ASSERTION","features":[474]},{"name":"WS_MESSAGE_PROPERTY_SECURITY_CONTEXT","features":[474]},{"name":"WS_MESSAGE_PROPERTY_STATE","features":[474]},{"name":"WS_MESSAGE_PROPERTY_TRANSPORT_SECURITY_WINDOWS_TOKEN","features":[474]},{"name":"WS_MESSAGE_PROPERTY_USERNAME","features":[474]},{"name":"WS_MESSAGE_PROPERTY_XML_READER_PROPERTIES","features":[474]},{"name":"WS_MESSAGE_PROPERTY_XML_WRITER_PROPERTIES","features":[474]},{"name":"WS_MESSAGE_SECURITY_USAGE","features":[474]},{"name":"WS_MESSAGE_STATE","features":[474]},{"name":"WS_MESSAGE_STATE_DONE","features":[474]},{"name":"WS_MESSAGE_STATE_EMPTY","features":[474]},{"name":"WS_MESSAGE_STATE_INITIALIZED","features":[474]},{"name":"WS_MESSAGE_STATE_READING","features":[474]},{"name":"WS_MESSAGE_STATE_WRITING","features":[474]},{"name":"WS_METADATA","features":[474]},{"name":"WS_METADATA_ENDPOINT","features":[303,474]},{"name":"WS_METADATA_ENDPOINTS","features":[303,474]},{"name":"WS_METADATA_EXCHANGE_TYPE","features":[474]},{"name":"WS_METADATA_EXCHANGE_TYPE_HTTP_GET","features":[474]},{"name":"WS_METADATA_EXCHANGE_TYPE_MEX","features":[474]},{"name":"WS_METADATA_EXCHANGE_TYPE_NONE","features":[474]},{"name":"WS_METADATA_PROPERTY","features":[474]},{"name":"WS_METADATA_PROPERTY_HEAP_PROPERTIES","features":[474]},{"name":"WS_METADATA_PROPERTY_HEAP_REQUESTED_SIZE","features":[474]},{"name":"WS_METADATA_PROPERTY_HOST_NAMES","features":[474]},{"name":"WS_METADATA_PROPERTY_ID","features":[474]},{"name":"WS_METADATA_PROPERTY_MAX_DOCUMENTS","features":[474]},{"name":"WS_METADATA_PROPERTY_POLICY_PROPERTIES","features":[474]},{"name":"WS_METADATA_PROPERTY_STATE","features":[474]},{"name":"WS_METADATA_PROPERTY_VERIFY_HOST_NAMES","features":[474]},{"name":"WS_METADATA_STATE","features":[474]},{"name":"WS_METADATA_STATE_CREATED","features":[474]},{"name":"WS_METADATA_STATE_FAULTED","features":[474]},{"name":"WS_METADATA_STATE_RESOLVED","features":[474]},{"name":"WS_MINIMAL_FAULT_DISCLOSURE","features":[474]},{"name":"WS_MOVE_TO","features":[474]},{"name":"WS_MOVE_TO_BOF","features":[474]},{"name":"WS_MOVE_TO_CHILD_ELEMENT","features":[474]},{"name":"WS_MOVE_TO_CHILD_NODE","features":[474]},{"name":"WS_MOVE_TO_END_ELEMENT","features":[474]},{"name":"WS_MOVE_TO_EOF","features":[474]},{"name":"WS_MOVE_TO_FIRST_NODE","features":[474]},{"name":"WS_MOVE_TO_NEXT_ELEMENT","features":[474]},{"name":"WS_MOVE_TO_NEXT_NODE","features":[474]},{"name":"WS_MOVE_TO_PARENT_ELEMENT","features":[474]},{"name":"WS_MOVE_TO_PREVIOUS_ELEMENT","features":[474]},{"name":"WS_MOVE_TO_PREVIOUS_NODE","features":[474]},{"name":"WS_MOVE_TO_ROOT_ELEMENT","features":[474]},{"name":"WS_MUST_UNDERSTAND_HEADER_ATTRIBUTE","features":[474]},{"name":"WS_NAMEDPIPE_CHANNEL_BINDING","features":[474]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING","features":[474]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[474,387]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[474]},{"name":"WS_NETPIPE_URL","features":[474]},{"name":"WS_NETTCP_URL","features":[474]},{"name":"WS_NON_RPC_LITERAL_OPERATION","features":[474]},{"name":"WS_NO_FIELD_MAPPING","features":[474]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[474]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[474]},{"name":"WS_OPEN_CHANNEL_CALLBACK","features":[474]},{"name":"WS_OPEN_LISTENER_CALLBACK","features":[474]},{"name":"WS_OPERATION_CANCEL_CALLBACK","features":[474]},{"name":"WS_OPERATION_CONTEXT","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL_USER_STATE","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CONTRACT_DESCRIPTION","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ENDPOINT_ADDRESS","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HEAP","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HOST_USER_STATE","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ID","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_INPUT_MESSAGE","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_LISTENER","features":[474]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_OUTPUT_MESSAGE","features":[474]},{"name":"WS_OPERATION_DESCRIPTION","features":[303,474]},{"name":"WS_OPERATION_FREE_STATE_CALLBACK","features":[474]},{"name":"WS_OPERATION_STYLE","features":[474]},{"name":"WS_PARAMETER_DESCRIPTION","features":[474]},{"name":"WS_PARAMETER_TYPE","features":[474]},{"name":"WS_PARAMETER_TYPE_ARRAY","features":[474]},{"name":"WS_PARAMETER_TYPE_ARRAY_COUNT","features":[474]},{"name":"WS_PARAMETER_TYPE_MESSAGES","features":[474]},{"name":"WS_PARAMETER_TYPE_NORMAL","features":[474]},{"name":"WS_POLICY","features":[474]},{"name":"WS_POLICY_CONSTRAINTS","features":[474]},{"name":"WS_POLICY_EXTENSION","features":[474]},{"name":"WS_POLICY_EXTENSION_TYPE","features":[474]},{"name":"WS_POLICY_PROPERTIES","features":[474]},{"name":"WS_POLICY_PROPERTY","features":[474]},{"name":"WS_POLICY_PROPERTY_ID","features":[474]},{"name":"WS_POLICY_PROPERTY_MAX_ALTERNATIVES","features":[474]},{"name":"WS_POLICY_PROPERTY_MAX_DEPTH","features":[474]},{"name":"WS_POLICY_PROPERTY_MAX_EXTENSIONS","features":[474]},{"name":"WS_POLICY_PROPERTY_STATE","features":[474]},{"name":"WS_POLICY_STATE","features":[474]},{"name":"WS_POLICY_STATE_CREATED","features":[474]},{"name":"WS_POLICY_STATE_FAULTED","features":[474]},{"name":"WS_PROTECTION_LEVEL","features":[474]},{"name":"WS_PROTECTION_LEVEL_NONE","features":[474]},{"name":"WS_PROTECTION_LEVEL_SIGN","features":[474]},{"name":"WS_PROTECTION_LEVEL_SIGN_AND_ENCRYPT","features":[474]},{"name":"WS_PROXY_FAULT_LANG_ID","features":[474]},{"name":"WS_PROXY_MESSAGE_CALLBACK","features":[474]},{"name":"WS_PROXY_MESSAGE_CALLBACK_CONTEXT","features":[474]},{"name":"WS_PROXY_PROPERTY","features":[474]},{"name":"WS_PROXY_PROPERTY_CALL_TIMEOUT","features":[474]},{"name":"WS_PROXY_PROPERTY_ID","features":[474]},{"name":"WS_PROXY_PROPERTY_MAX_CALL_POOL_SIZE","features":[474]},{"name":"WS_PROXY_PROPERTY_MAX_CLOSE_TIMEOUT","features":[474]},{"name":"WS_PROXY_PROPERTY_MAX_PENDING_CALLS","features":[474]},{"name":"WS_PROXY_PROPERTY_MESSAGE_PROPERTIES","features":[474]},{"name":"WS_PROXY_PROPERTY_STATE","features":[474]},{"name":"WS_PULL_BYTES_CALLBACK","features":[474]},{"name":"WS_PUSH_BYTES_CALLBACK","features":[474]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE","features":[474]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[474]},{"name":"WS_READ_CALLBACK","features":[474]},{"name":"WS_READ_MESSAGE_END_CALLBACK","features":[474]},{"name":"WS_READ_MESSAGE_START_CALLBACK","features":[474]},{"name":"WS_READ_NILLABLE_POINTER","features":[474]},{"name":"WS_READ_NILLABLE_VALUE","features":[474]},{"name":"WS_READ_OPTION","features":[474]},{"name":"WS_READ_OPTIONAL_POINTER","features":[474]},{"name":"WS_READ_REQUIRED_POINTER","features":[474]},{"name":"WS_READ_REQUIRED_VALUE","features":[474]},{"name":"WS_READ_TYPE_CALLBACK","features":[474]},{"name":"WS_RECEIVE_OPTION","features":[474]},{"name":"WS_RECEIVE_OPTIONAL_MESSAGE","features":[474]},{"name":"WS_RECEIVE_REQUIRED_MESSAGE","features":[474]},{"name":"WS_RELATES_TO_HEADER","features":[474]},{"name":"WS_RELAY_HEADER_ATTRIBUTE","features":[474]},{"name":"WS_REPEATING_ANY_ELEMENT_FIELD_MAPPING","features":[474]},{"name":"WS_REPEATING_ELEMENT_CHOICE_FIELD_MAPPING","features":[474]},{"name":"WS_REPEATING_ELEMENT_FIELD_MAPPING","features":[474]},{"name":"WS_REPEATING_HEADER","features":[474]},{"name":"WS_REPEATING_HEADER_OPTION","features":[474]},{"name":"WS_REPLY_MESSAGE","features":[474]},{"name":"WS_REPLY_TO_HEADER","features":[474]},{"name":"WS_REQUEST_MESSAGE","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_ISSUE","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_NEW_CONTEXT","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_RENEW_CONTEXT","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_APPLIES_TO","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_BEARER_KEY_TYPE_VERSION","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_CONSTRAINT","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_EXISTING_TOKEN","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ID","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_ENTROPY","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_SIZE","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_TYPE","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_TYPE","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_LOCAL_REQUEST_PARAMETERS","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_MESSAGE_PROPERTIES","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_REQUEST_ACTION","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SECURE_CONVERSATION_VERSION","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SERVICE_REQUEST_PARAMETERS","features":[474]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_TRUST_VERSION","features":[474]},{"name":"WS_RESET_CHANNEL_CALLBACK","features":[474]},{"name":"WS_RESET_LISTENER_CALLBACK","features":[474]},{"name":"WS_RPC_LITERAL_OPERATION","features":[474]},{"name":"WS_RSA_ENDPOINT_IDENTITY","features":[474]},{"name":"WS_RSA_ENDPOINT_IDENTITY_TYPE","features":[474]},{"name":"WS_SAML_AUTHENTICATOR","features":[474]},{"name":"WS_SAML_AUTHENTICATOR_TYPE","features":[474]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING","features":[474]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_SECURE_CONVERSATION_VERSION","features":[474]},{"name":"WS_SECURE_CONVERSATION_VERSION_1_3","features":[474]},{"name":"WS_SECURE_CONVERSATION_VERSION_FEBRUARY_2005","features":[474]},{"name":"WS_SECURE_PROTOCOL","features":[474]},{"name":"WS_SECURE_PROTOCOL_SSL2","features":[474]},{"name":"WS_SECURE_PROTOCOL_SSL3","features":[474]},{"name":"WS_SECURE_PROTOCOL_TLS1_0","features":[474]},{"name":"WS_SECURE_PROTOCOL_TLS1_1","features":[474]},{"name":"WS_SECURE_PROTOCOL_TLS1_2","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_1_5","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_OAEP","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_DSA_SHA1","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA1","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_256","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_384","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_512","features":[474]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE","features":[474]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE_WITH_COMMENTS","features":[474]},{"name":"WS_SECURITY_ALGORITHM_DEFAULT","features":[474]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA1","features":[474]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_256","features":[474]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_384","features":[474]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_512","features":[474]},{"name":"WS_SECURITY_ALGORITHM_ID","features":[474]},{"name":"WS_SECURITY_ALGORITHM_KEY_DERIVATION_P_SHA1","features":[474]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY","features":[474]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY_ID","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_RSA15","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256_RSA15","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_RSA15","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256_RSA15","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_RSA15","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256_RSA15","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA1","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_256","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_384","features":[474]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_512","features":[474]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION","features":[474]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ERRATA_01","features":[474]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SCHEMA","features":[474]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SPECIFICATION","features":[474]},{"name":"WS_SECURITY_BINDING","features":[474]},{"name":"WS_SECURITY_BINDING_CONSTRAINT","features":[474]},{"name":"WS_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTIES","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOWED_IMPERSONATION_LEVEL","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOW_ANONYMOUS_CLIENTS","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERT_FAILURES_TO_IGNORE","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_CONSTRAINT","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISABLE_CERT_REVOCATION_CHECK","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISALLOWED_SECURE_PROTOCOLS","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_BASIC_REALM","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_DOMAIN","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_REALM","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_SCHEME","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_TARGET","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_ID","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_MESSAGE_PROPERTIES","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SERVER_AUTH","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SSL_CLIENT_CERT","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURE_CONVERSATION_VERSION","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_ENTROPY_MODE","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_SIZE","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_ACTIVE_CONTEXTS","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_PENDING_CONTEXTS","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_RENEWAL_INTERVAL","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_ROLLOVER_INTERVAL","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_SUPPORT_RENEW","features":[474]},{"name":"WS_SECURITY_BINDING_PROPERTY_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[474]},{"name":"WS_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_SECURITY_CONSTRAINTS","features":[474]},{"name":"WS_SECURITY_CONTEXT","features":[474]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING","features":[474]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[474]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[474]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[474]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_SECURITY_CONTEXT_PROPERTY","features":[474]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_ID","features":[474]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_IDENTIFIER","features":[474]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[474]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_SAML_ASSERTION","features":[474]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_USERNAME","features":[474]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[474]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_TEMPLATE","features":[474]},{"name":"WS_SECURITY_DESCRIPTION","features":[474]},{"name":"WS_SECURITY_HEADER_LAYOUT","features":[474]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX","features":[474]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_FIRST","features":[474]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_LAST","features":[474]},{"name":"WS_SECURITY_HEADER_LAYOUT_STRICT","features":[474]},{"name":"WS_SECURITY_HEADER_VERSION","features":[474]},{"name":"WS_SECURITY_HEADER_VERSION_1_0","features":[474]},{"name":"WS_SECURITY_HEADER_VERSION_1_1","features":[474]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE","features":[474]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_CLIENT_ONLY","features":[474]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_COMBINED","features":[474]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_SERVER_ONLY","features":[474]},{"name":"WS_SECURITY_KEY_HANDLE","features":[474]},{"name":"WS_SECURITY_KEY_HANDLE_TYPE","features":[474]},{"name":"WS_SECURITY_KEY_TYPE","features":[474]},{"name":"WS_SECURITY_KEY_TYPE_ASYMMETRIC","features":[474]},{"name":"WS_SECURITY_KEY_TYPE_NONE","features":[474]},{"name":"WS_SECURITY_KEY_TYPE_SYMMETRIC","features":[474]},{"name":"WS_SECURITY_PROPERTIES","features":[474]},{"name":"WS_SECURITY_PROPERTY","features":[474]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE","features":[474]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE_NAME","features":[474]},{"name":"WS_SECURITY_PROPERTY_CONSTRAINT","features":[474]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_POLICY","features":[474]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_SCENARIO","features":[474]},{"name":"WS_SECURITY_PROPERTY_ID","features":[474]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_CLOCK_SKEW","features":[474]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_LATENCY","features":[474]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_LAYOUT","features":[474]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_VERSION","features":[474]},{"name":"WS_SECURITY_PROPERTY_SERVICE_IDENTITIES","features":[474]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_USAGE","features":[474]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_VALIDITY_DURATION","features":[474]},{"name":"WS_SECURITY_PROPERTY_TRANSPORT_PROTECTION_LEVEL","features":[474]},{"name":"WS_SECURITY_TIMESTAMP_USAGE","features":[474]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_ALWAYS","features":[474]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_NEVER","features":[474]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_REQUESTS_ONLY","features":[474]},{"name":"WS_SECURITY_TOKEN","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE_XML","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ID","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_KEY_TYPE","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SERIALIZED_XML","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SYMMETRIC_KEY","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE_XML","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[474]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[474]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE","features":[474]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_CERT_THUMBPRINT","features":[474]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_LOCAL_ID","features":[474]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SAML_ASSERTION_ID","features":[474]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SECURITY_CONTEXT_ID","features":[474]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_XML_BUFFER","features":[474]},{"name":"WS_SERVICE_ACCEPT_CHANNEL_CALLBACK","features":[474]},{"name":"WS_SERVICE_CANCEL_REASON","features":[474]},{"name":"WS_SERVICE_CHANNEL_FAULTED","features":[474]},{"name":"WS_SERVICE_CLOSE_CHANNEL_CALLBACK","features":[474]},{"name":"WS_SERVICE_CONTRACT","features":[303,474]},{"name":"WS_SERVICE_ENDPOINT","features":[303,474]},{"name":"WS_SERVICE_ENDPOINT_METADATA","features":[303,474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ACCEPT_CHANNEL_CALLBACK","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_MAX_SIZE","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_TRIM_SIZE","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CHECK_MUST_UNDERSTAND","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CLOSE_CHANNEL_CALLBACK","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ID","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_LISTENER_PROPERTIES","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_ACCEPTING_CHANNELS","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CALL_POOL_SIZE","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNELS","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNEL_POOL_SIZE","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CONCURRENCY","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MESSAGE_PROPERTIES","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_TYPE","features":[474]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_URL_SUFFIX","features":[474]},{"name":"WS_SERVICE_HOST","features":[474]},{"name":"WS_SERVICE_HOST_ABORT","features":[474]},{"name":"WS_SERVICE_HOST_STATE","features":[474]},{"name":"WS_SERVICE_HOST_STATE_CLOSED","features":[474]},{"name":"WS_SERVICE_HOST_STATE_CLOSING","features":[474]},{"name":"WS_SERVICE_HOST_STATE_CREATED","features":[474]},{"name":"WS_SERVICE_HOST_STATE_FAULTED","features":[474]},{"name":"WS_SERVICE_HOST_STATE_OPEN","features":[474]},{"name":"WS_SERVICE_HOST_STATE_OPENING","features":[474]},{"name":"WS_SERVICE_MESSAGE_RECEIVE_CALLBACK","features":[474]},{"name":"WS_SERVICE_METADATA","features":[303,474]},{"name":"WS_SERVICE_METADATA_DOCUMENT","features":[303,474]},{"name":"WS_SERVICE_OPERATION_MESSAGE_NILLABLE_ELEMENT","features":[474]},{"name":"WS_SERVICE_PROPERTY","features":[474]},{"name":"WS_SERVICE_PROPERTY_ACCEPT_CALLBACK","features":[474]},{"name":"WS_SERVICE_PROPERTY_CLOSE_CALLBACK","features":[474]},{"name":"WS_SERVICE_PROPERTY_CLOSE_TIMEOUT","features":[474]},{"name":"WS_SERVICE_PROPERTY_FAULT_DISCLOSURE","features":[474]},{"name":"WS_SERVICE_PROPERTY_FAULT_LANGID","features":[474]},{"name":"WS_SERVICE_PROPERTY_HOST_STATE","features":[474]},{"name":"WS_SERVICE_PROPERTY_HOST_USER_STATE","features":[474]},{"name":"WS_SERVICE_PROPERTY_ID","features":[474]},{"name":"WS_SERVICE_PROPERTY_METADATA","features":[474]},{"name":"WS_SERVICE_PROXY","features":[474]},{"name":"WS_SERVICE_PROXY_STATE","features":[474]},{"name":"WS_SERVICE_PROXY_STATE_CLOSED","features":[474]},{"name":"WS_SERVICE_PROXY_STATE_CLOSING","features":[474]},{"name":"WS_SERVICE_PROXY_STATE_CREATED","features":[474]},{"name":"WS_SERVICE_PROXY_STATE_FAULTED","features":[474]},{"name":"WS_SERVICE_PROXY_STATE_OPEN","features":[474]},{"name":"WS_SERVICE_PROXY_STATE_OPENING","features":[474]},{"name":"WS_SERVICE_SECURITY_CALLBACK","features":[303,474]},{"name":"WS_SERVICE_SECURITY_IDENTITIES","features":[474]},{"name":"WS_SERVICE_STUB_CALLBACK","features":[474]},{"name":"WS_SET_CHANNEL_PROPERTY_CALLBACK","features":[474]},{"name":"WS_SET_LISTENER_PROPERTY_CALLBACK","features":[474]},{"name":"WS_SHORT_CALLBACK","features":[474]},{"name":"WS_SHUTDOWN_SESSION_CHANNEL_CALLBACK","features":[474]},{"name":"WS_SINGLETON_HEADER","features":[474]},{"name":"WS_SOAPUDP_URL","features":[474]},{"name":"WS_SPN_ENDPOINT_IDENTITY","features":[474]},{"name":"WS_SPN_ENDPOINT_IDENTITY_TYPE","features":[474]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING","features":[474]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[303,474]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[474]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[474]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_SSPI_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[474]},{"name":"WS_STREAMED_INPUT_TRANSFER_MODE","features":[474]},{"name":"WS_STREAMED_OUTPUT_TRANSFER_MODE","features":[474]},{"name":"WS_STREAMED_TRANSFER_MODE","features":[474]},{"name":"WS_STRING","features":[474]},{"name":"WS_STRING_DESCRIPTION","features":[474]},{"name":"WS_STRING_TYPE","features":[474]},{"name":"WS_STRING_USERNAME_CREDENTIAL","features":[474]},{"name":"WS_STRING_USERNAME_CREDENTIAL_TYPE","features":[474]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[474]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[474]},{"name":"WS_STRUCT_ABSTRACT","features":[474]},{"name":"WS_STRUCT_DESCRIPTION","features":[303,474]},{"name":"WS_STRUCT_IGNORE_TRAILING_ELEMENT_CONTENT","features":[474]},{"name":"WS_STRUCT_IGNORE_UNHANDLED_ATTRIBUTES","features":[474]},{"name":"WS_STRUCT_TYPE","features":[474]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL","features":[474]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL_TYPE","features":[474]},{"name":"WS_SUPPORTING_MESSAGE_SECURITY_USAGE","features":[474]},{"name":"WS_TCP_BINDING_TEMPLATE","features":[474]},{"name":"WS_TCP_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_TCP_CHANNEL_BINDING","features":[474]},{"name":"WS_TCP_POLICY_DESCRIPTION","features":[474]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE","features":[474]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE","features":[474]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[474]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[474]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[474]},{"name":"WS_TCP_SSPI_POLICY_DESCRIPTION","features":[474]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING","features":[474]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[474]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[474]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE","features":[474]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_TCP_SSPI_USERNAME_POLICY_DESCRIPTION","features":[474]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[474]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[474]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[474]},{"name":"WS_TEXT_FIELD_MAPPING","features":[474]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL","features":[474]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL_TYPE","features":[474]},{"name":"WS_TIMESPAN","features":[474]},{"name":"WS_TIMESPAN_DESCRIPTION","features":[474]},{"name":"WS_TIMESPAN_TYPE","features":[474]},{"name":"WS_TIMESPAN_VALUE_TYPE","features":[474]},{"name":"WS_TO_HEADER","features":[474]},{"name":"WS_TRACE_API","features":[474]},{"name":"WS_TRACE_API_ABANDON_MESSAGE","features":[474]},{"name":"WS_TRACE_API_ABORT_CALL","features":[474]},{"name":"WS_TRACE_API_ABORT_CHANNEL","features":[474]},{"name":"WS_TRACE_API_ABORT_LISTENER","features":[474]},{"name":"WS_TRACE_API_ABORT_SERVICE_HOST","features":[474]},{"name":"WS_TRACE_API_ABORT_SERVICE_PROXY","features":[474]},{"name":"WS_TRACE_API_ACCEPT_CHANNEL","features":[474]},{"name":"WS_TRACE_API_ADDRESS_MESSAGE","features":[474]},{"name":"WS_TRACE_API_ADD_CUSTOM_HEADER","features":[474]},{"name":"WS_TRACE_API_ADD_ERROR_STRING","features":[474]},{"name":"WS_TRACE_API_ADD_MAPPED_HEADER","features":[474]},{"name":"WS_TRACE_API_ALLOC","features":[474]},{"name":"WS_TRACE_API_ASYNC_EXECUTE","features":[474]},{"name":"WS_TRACE_API_CALL","features":[474]},{"name":"WS_TRACE_API_CHECK_MUST_UNDERSTAND_HEADERS","features":[474]},{"name":"WS_TRACE_API_CLOSE_CHANNEL","features":[474]},{"name":"WS_TRACE_API_CLOSE_LISTENER","features":[474]},{"name":"WS_TRACE_API_CLOSE_SERVICE_HOST","features":[474]},{"name":"WS_TRACE_API_CLOSE_SERVICE_PROXY","features":[474]},{"name":"WS_TRACE_API_COMBINE_URL","features":[474]},{"name":"WS_TRACE_API_COPY_ERROR","features":[474]},{"name":"WS_TRACE_API_COPY_NODE","features":[474]},{"name":"WS_TRACE_API_CREATE_CHANNEL","features":[474]},{"name":"WS_TRACE_API_CREATE_CHANNEL_FOR_LISTENER","features":[474]},{"name":"WS_TRACE_API_CREATE_ERROR","features":[474]},{"name":"WS_TRACE_API_CREATE_FAULT_FROM_ERROR","features":[474]},{"name":"WS_TRACE_API_CREATE_HEAP","features":[474]},{"name":"WS_TRACE_API_CREATE_LISTENER","features":[474]},{"name":"WS_TRACE_API_CREATE_MESSAGE","features":[474]},{"name":"WS_TRACE_API_CREATE_MESSAGE_FOR_CHANNEL","features":[474]},{"name":"WS_TRACE_API_CREATE_METADATA","features":[474]},{"name":"WS_TRACE_API_CREATE_READER","features":[474]},{"name":"WS_TRACE_API_CREATE_SERVICE_HOST","features":[474]},{"name":"WS_TRACE_API_CREATE_SERVICE_PROXY","features":[474]},{"name":"WS_TRACE_API_CREATE_WRITER","features":[474]},{"name":"WS_TRACE_API_CREATE_XML_BUFFER","features":[474]},{"name":"WS_TRACE_API_CREATE_XML_SECURITY_TOKEN","features":[474]},{"name":"WS_TRACE_API_DATETIME_TO_FILETIME","features":[474]},{"name":"WS_TRACE_API_DECODE_URL","features":[474]},{"name":"WS_TRACE_API_DUMP_MEMORY","features":[474]},{"name":"WS_TRACE_API_ENCODE_URL","features":[474]},{"name":"WS_TRACE_API_END_READER_CANONICALIZATION","features":[474]},{"name":"WS_TRACE_API_END_WRITER_CANONICALIZATION","features":[474]},{"name":"WS_TRACE_API_FILETIME_TO_DATETIME","features":[474]},{"name":"WS_TRACE_API_FILL_BODY","features":[474]},{"name":"WS_TRACE_API_FILL_READER","features":[474]},{"name":"WS_TRACE_API_FIND_ATTRIBUTE","features":[474]},{"name":"WS_TRACE_API_FLUSH_BODY","features":[474]},{"name":"WS_TRACE_API_FLUSH_WRITER","features":[474]},{"name":"WS_TRACE_API_FREE_CHANNEL","features":[474]},{"name":"WS_TRACE_API_FREE_ERROR","features":[474]},{"name":"WS_TRACE_API_FREE_HEAP","features":[474]},{"name":"WS_TRACE_API_FREE_LISTENER","features":[474]},{"name":"WS_TRACE_API_FREE_MESSAGE","features":[474]},{"name":"WS_TRACE_API_FREE_METADATA","features":[474]},{"name":"WS_TRACE_API_FREE_SECURITY_TOKEN","features":[474]},{"name":"WS_TRACE_API_FREE_SERVICE_HOST","features":[474]},{"name":"WS_TRACE_API_FREE_SERVICE_PROXY","features":[474]},{"name":"WS_TRACE_API_FREE_XML_READER","features":[474]},{"name":"WS_TRACE_API_FREE_XML_WRITER","features":[474]},{"name":"WS_TRACE_API_GET_CHANNEL_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_CONTEXT_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_CUSTOM_HEADER","features":[474]},{"name":"WS_TRACE_API_GET_DICTIONARY","features":[474]},{"name":"WS_TRACE_API_GET_ERROR_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_ERROR_STRING","features":[474]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_DETAIL","features":[474]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_HEADER","features":[474]},{"name":"WS_TRACE_API_GET_HEADER_ATTRIBUTES","features":[474]},{"name":"WS_TRACE_API_GET_HEAP_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_LISTENER_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_MAPPED_HEADER","features":[474]},{"name":"WS_TRACE_API_GET_MESSAGE_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_METADATA_ENDPOINTS","features":[474]},{"name":"WS_TRACE_API_GET_METADATA_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_MISSING_METADATA_DOCUMENT_ADDRESS","features":[474]},{"name":"WS_TRACE_API_GET_POLICY_ALTERNATIVE_COUNT","features":[474]},{"name":"WS_TRACE_API_GET_POLICY_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_READER_NODE","features":[474]},{"name":"WS_TRACE_API_GET_READER_POSITION","features":[474]},{"name":"WS_TRACE_API_GET_READER_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_SECURITY_CONTEXT_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_SECURITY_TOKEN_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_SERVICE_HOST_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_SERVICE_PROXY_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_WRITER_POSITION","features":[474]},{"name":"WS_TRACE_API_GET_WRITER_PROPERTY","features":[474]},{"name":"WS_TRACE_API_GET_XML_ATTRIBUTE","features":[474]},{"name":"WS_TRACE_API_INITIALIZE_MESSAGE","features":[474]},{"name":"WS_TRACE_API_MARK_HEADER_AS_UNDERSTOOD","features":[474]},{"name":"WS_TRACE_API_MATCH_POLICY_ALTERNATIVE","features":[474]},{"name":"WS_TRACE_API_MOVE_READER","features":[474]},{"name":"WS_TRACE_API_MOVE_WRITER","features":[474]},{"name":"WS_TRACE_API_NAMESPACE_FROM_PREFIX","features":[474]},{"name":"WS_TRACE_API_NONE","features":[474]},{"name":"WS_TRACE_API_OPEN_CHANNEL","features":[474]},{"name":"WS_TRACE_API_OPEN_LISTENER","features":[474]},{"name":"WS_TRACE_API_OPEN_SERVICE_HOST","features":[474]},{"name":"WS_TRACE_API_OPEN_SERVICE_PROXY","features":[474]},{"name":"WS_TRACE_API_PREFIX_FROM_NAMESPACE","features":[474]},{"name":"WS_TRACE_API_PULL_BYTES","features":[474]},{"name":"WS_TRACE_API_PUSH_BYTES","features":[474]},{"name":"WS_TRACE_API_READ_ARRAY","features":[474]},{"name":"WS_TRACE_API_READ_ATTRIBUTE_TYPE","features":[474]},{"name":"WS_TRACE_API_READ_BODY","features":[474]},{"name":"WS_TRACE_API_READ_BYTES","features":[474]},{"name":"WS_TRACE_API_READ_CHARS","features":[474]},{"name":"WS_TRACE_API_READ_CHARS_UTF8","features":[474]},{"name":"WS_TRACE_API_READ_ELEMENT_TYPE","features":[474]},{"name":"WS_TRACE_API_READ_ELEMENT_VALUE","features":[474]},{"name":"WS_TRACE_API_READ_ENDPOINT_ADDRESS_EXTENSION","features":[474]},{"name":"WS_TRACE_API_READ_END_ATTRIBUTE","features":[474]},{"name":"WS_TRACE_API_READ_END_ELEMENT","features":[474]},{"name":"WS_TRACE_API_READ_ENVELOPE_END","features":[474]},{"name":"WS_TRACE_API_READ_ENVELOPE_START","features":[474]},{"name":"WS_TRACE_API_READ_MESSAGE_END","features":[474]},{"name":"WS_TRACE_API_READ_MESSAGE_START","features":[474]},{"name":"WS_TRACE_API_READ_METADATA","features":[474]},{"name":"WS_TRACE_API_READ_NODE","features":[474]},{"name":"WS_TRACE_API_READ_QUALIFIED_NAME","features":[474]},{"name":"WS_TRACE_API_READ_START_ATTRIBUTE","features":[474]},{"name":"WS_TRACE_API_READ_START_ELEMENT","features":[474]},{"name":"WS_TRACE_API_READ_TO_START_ELEMENT","features":[474]},{"name":"WS_TRACE_API_READ_TYPE","features":[474]},{"name":"WS_TRACE_API_READ_XML_BUFFER","features":[474]},{"name":"WS_TRACE_API_READ_XML_BUFFER_FROM_BYTES","features":[474]},{"name":"WS_TRACE_API_RECEIVE_MESSAGE","features":[474]},{"name":"WS_TRACE_API_REMOVE_CUSTOM_HEADER","features":[474]},{"name":"WS_TRACE_API_REMOVE_HEADER","features":[474]},{"name":"WS_TRACE_API_REMOVE_MAPPED_HEADER","features":[474]},{"name":"WS_TRACE_API_REMOVE_NODE","features":[474]},{"name":"WS_TRACE_API_REQUEST_REPLY","features":[474]},{"name":"WS_TRACE_API_REQUEST_SECURITY_TOKEN","features":[474]},{"name":"WS_TRACE_API_RESET_CHANNEL","features":[474]},{"name":"WS_TRACE_API_RESET_ERROR","features":[474]},{"name":"WS_TRACE_API_RESET_HEAP","features":[474]},{"name":"WS_TRACE_API_RESET_LISTENER","features":[474]},{"name":"WS_TRACE_API_RESET_MESSAGE","features":[474]},{"name":"WS_TRACE_API_RESET_METADATA","features":[474]},{"name":"WS_TRACE_API_RESET_SERVICE_HOST","features":[474]},{"name":"WS_TRACE_API_RESET_SERVICE_PROXY","features":[474]},{"name":"WS_TRACE_API_REVOKE_SECURITY_CONTEXT","features":[474]},{"name":"WS_TRACE_API_SEND_FAULT_MESSAGE_FOR_ERROR","features":[474]},{"name":"WS_TRACE_API_SEND_MESSAGE","features":[474]},{"name":"WS_TRACE_API_SEND_REPLY_MESSAGE","features":[474]},{"name":"WS_TRACE_API_SERVICE_REGISTER_FOR_CANCEL","features":[474]},{"name":"WS_TRACE_API_SET_AUTOFAIL","features":[474]},{"name":"WS_TRACE_API_SET_CHANNEL_PROPERTY","features":[474]},{"name":"WS_TRACE_API_SET_ERROR_PROPERTY","features":[474]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_DETAIL","features":[474]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_PROPERTY","features":[474]},{"name":"WS_TRACE_API_SET_HEADER","features":[474]},{"name":"WS_TRACE_API_SET_INPUT","features":[474]},{"name":"WS_TRACE_API_SET_INPUT_TO_BUFFER","features":[474]},{"name":"WS_TRACE_API_SET_LISTENER_PROPERTY","features":[474]},{"name":"WS_TRACE_API_SET_MESSAGE_PROPERTY","features":[474]},{"name":"WS_TRACE_API_SET_OUTPUT","features":[474]},{"name":"WS_TRACE_API_SET_OUTPUT_TO_BUFFER","features":[474]},{"name":"WS_TRACE_API_SET_READER_POSITION","features":[474]},{"name":"WS_TRACE_API_SET_WRITER_POSITION","features":[474]},{"name":"WS_TRACE_API_SHUTDOWN_SESSION_CHANNEL","features":[474]},{"name":"WS_TRACE_API_SKIP_NODE","features":[474]},{"name":"WS_TRACE_API_START_READER_CANONICALIZATION","features":[474]},{"name":"WS_TRACE_API_START_WRITER_CANONICALIZATION","features":[474]},{"name":"WS_TRACE_API_TRIM_XML_WHITESPACE","features":[474]},{"name":"WS_TRACE_API_VERIFY_XML_NCNAME","features":[474]},{"name":"WS_TRACE_API_WRITE_ARRAY","features":[474]},{"name":"WS_TRACE_API_WRITE_ATTRIBUTE_TYPE","features":[474]},{"name":"WS_TRACE_API_WRITE_BODY","features":[474]},{"name":"WS_TRACE_API_WRITE_BYTES","features":[474]},{"name":"WS_TRACE_API_WRITE_CHARS","features":[474]},{"name":"WS_TRACE_API_WRITE_CHARS_UTF8","features":[474]},{"name":"WS_TRACE_API_WRITE_ELEMENT_TYPE","features":[474]},{"name":"WS_TRACE_API_WRITE_END_ATTRIBUTE","features":[474]},{"name":"WS_TRACE_API_WRITE_END_CDATA","features":[474]},{"name":"WS_TRACE_API_WRITE_END_ELEMENT","features":[474]},{"name":"WS_TRACE_API_WRITE_END_START_ELEMENT","features":[474]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_END","features":[474]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_START","features":[474]},{"name":"WS_TRACE_API_WRITE_MESSAGE_END","features":[474]},{"name":"WS_TRACE_API_WRITE_MESSAGE_START","features":[474]},{"name":"WS_TRACE_API_WRITE_NODE","features":[474]},{"name":"WS_TRACE_API_WRITE_QUALIFIED_NAME","features":[474]},{"name":"WS_TRACE_API_WRITE_START_ATTRIBUTE","features":[474]},{"name":"WS_TRACE_API_WRITE_START_CDATA","features":[474]},{"name":"WS_TRACE_API_WRITE_START_ELEMENT","features":[474]},{"name":"WS_TRACE_API_WRITE_TEXT","features":[474]},{"name":"WS_TRACE_API_WRITE_TYPE","features":[474]},{"name":"WS_TRACE_API_WRITE_VALUE","features":[474]},{"name":"WS_TRACE_API_WRITE_XMLNS_ATTRIBUTE","features":[474]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER","features":[474]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER_TO_BYTES","features":[474]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_HOST_FROM_TEMPLATE","features":[474]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_PROXY_FROM_TEMPLATE","features":[474]},{"name":"WS_TRACE_API_XML_STRING_EQUALS","features":[474]},{"name":"WS_TRANSFER_MODE","features":[474]},{"name":"WS_TRUST_VERSION","features":[474]},{"name":"WS_TRUST_VERSION_1_3","features":[474]},{"name":"WS_TRUST_VERSION_FEBRUARY_2005","features":[474]},{"name":"WS_TYPE","features":[474]},{"name":"WS_TYPE_ATTRIBUTE_FIELD_MAPPING","features":[474]},{"name":"WS_TYPE_MAPPING","features":[474]},{"name":"WS_UDP_CHANNEL_BINDING","features":[474]},{"name":"WS_UINT16_DESCRIPTION","features":[474]},{"name":"WS_UINT16_TYPE","features":[474]},{"name":"WS_UINT16_VALUE_TYPE","features":[474]},{"name":"WS_UINT32_DESCRIPTION","features":[474]},{"name":"WS_UINT32_TYPE","features":[474]},{"name":"WS_UINT32_VALUE_TYPE","features":[474]},{"name":"WS_UINT64_DESCRIPTION","features":[474]},{"name":"WS_UINT64_TYPE","features":[474]},{"name":"WS_UINT64_VALUE_TYPE","features":[474]},{"name":"WS_UINT8_DESCRIPTION","features":[474]},{"name":"WS_UINT8_TYPE","features":[474]},{"name":"WS_UINT8_VALUE_TYPE","features":[474]},{"name":"WS_UNION_DESCRIPTION","features":[303,474]},{"name":"WS_UNION_FIELD_DESCRIPTION","features":[303,474]},{"name":"WS_UNION_TYPE","features":[474]},{"name":"WS_UNIQUE_ID","features":[474]},{"name":"WS_UNIQUE_ID_DESCRIPTION","features":[474]},{"name":"WS_UNIQUE_ID_TYPE","features":[474]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY","features":[474]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY_TYPE","features":[474]},{"name":"WS_UPN_ENDPOINT_IDENTITY","features":[474]},{"name":"WS_UPN_ENDPOINT_IDENTITY_TYPE","features":[474]},{"name":"WS_URL","features":[474]},{"name":"WS_URL_FLAGS_ALLOW_HOST_WILDCARDS","features":[474]},{"name":"WS_URL_FLAGS_NO_PATH_COLLAPSE","features":[474]},{"name":"WS_URL_FLAGS_ZERO_TERMINATE","features":[474]},{"name":"WS_URL_HTTPS_SCHEME_TYPE","features":[474]},{"name":"WS_URL_HTTP_SCHEME_TYPE","features":[474]},{"name":"WS_URL_NETPIPE_SCHEME_TYPE","features":[474]},{"name":"WS_URL_NETTCP_SCHEME_TYPE","features":[474]},{"name":"WS_URL_SCHEME_TYPE","features":[474]},{"name":"WS_URL_SOAPUDP_SCHEME_TYPE","features":[474]},{"name":"WS_USERNAME_CREDENTIAL","features":[474]},{"name":"WS_USERNAME_CREDENTIAL_TYPE","features":[474]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING","features":[474]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[474]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[474]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[474]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[474]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_UTF8_ARRAY_DESCRIPTION","features":[474]},{"name":"WS_UTF8_ARRAY_TYPE","features":[474]},{"name":"WS_VALIDATE_PASSWORD_CALLBACK","features":[474]},{"name":"WS_VALIDATE_SAML_CALLBACK","features":[474]},{"name":"WS_VALUE_TYPE","features":[474]},{"name":"WS_VOID_DESCRIPTION","features":[474]},{"name":"WS_VOID_TYPE","features":[474]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[474]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[474]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[474]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_KERBEROS","features":[474]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_NTLM","features":[474]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_SPNEGO","features":[474]},{"name":"WS_WRITE_CALLBACK","features":[474]},{"name":"WS_WRITE_MESSAGE_END_CALLBACK","features":[474]},{"name":"WS_WRITE_MESSAGE_START_CALLBACK","features":[474]},{"name":"WS_WRITE_NILLABLE_POINTER","features":[474]},{"name":"WS_WRITE_NILLABLE_VALUE","features":[474]},{"name":"WS_WRITE_OPTION","features":[474]},{"name":"WS_WRITE_REQUIRED_POINTER","features":[474]},{"name":"WS_WRITE_REQUIRED_VALUE","features":[474]},{"name":"WS_WRITE_TYPE_CALLBACK","features":[474]},{"name":"WS_WSZ_DESCRIPTION","features":[474]},{"name":"WS_WSZ_TYPE","features":[474]},{"name":"WS_XML_ATTRIBUTE","features":[303,474]},{"name":"WS_XML_ATTRIBUTE_FIELD_MAPPING","features":[474]},{"name":"WS_XML_BASE64_TEXT","features":[474]},{"name":"WS_XML_BOOL_TEXT","features":[303,474]},{"name":"WS_XML_BUFFER","features":[474]},{"name":"WS_XML_BUFFER_PROPERTY","features":[474]},{"name":"WS_XML_BUFFER_PROPERTY_ID","features":[474]},{"name":"WS_XML_BUFFER_TYPE","features":[474]},{"name":"WS_XML_CANONICALIZATION_ALGORITHM","features":[474]},{"name":"WS_XML_CANONICALIZATION_INCLUSIVE_PREFIXES","features":[303,474]},{"name":"WS_XML_CANONICALIZATION_PROPERTY","features":[474]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ALGORITHM","features":[474]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ID","features":[474]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_INCLUSIVE_PREFIXES","features":[474]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OMITTED_ELEMENT","features":[474]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OUTPUT_BUFFER_SIZE","features":[474]},{"name":"WS_XML_COMMENT_NODE","features":[303,474]},{"name":"WS_XML_DATETIME_TEXT","features":[474]},{"name":"WS_XML_DECIMAL_TEXT","features":[303,474]},{"name":"WS_XML_DICTIONARY","features":[303,474]},{"name":"WS_XML_DOUBLE_TEXT","features":[474]},{"name":"WS_XML_ELEMENT_NODE","features":[303,474]},{"name":"WS_XML_FLOAT_TEXT","features":[474]},{"name":"WS_XML_GUID_TEXT","features":[474]},{"name":"WS_XML_INT32_TEXT","features":[474]},{"name":"WS_XML_INT64_TEXT","features":[474]},{"name":"WS_XML_LIST_TEXT","features":[474]},{"name":"WS_XML_NODE","features":[474]},{"name":"WS_XML_NODE_POSITION","features":[474]},{"name":"WS_XML_NODE_TYPE","features":[474]},{"name":"WS_XML_NODE_TYPE_BOF","features":[474]},{"name":"WS_XML_NODE_TYPE_CDATA","features":[474]},{"name":"WS_XML_NODE_TYPE_COMMENT","features":[474]},{"name":"WS_XML_NODE_TYPE_ELEMENT","features":[474]},{"name":"WS_XML_NODE_TYPE_END_CDATA","features":[474]},{"name":"WS_XML_NODE_TYPE_END_ELEMENT","features":[474]},{"name":"WS_XML_NODE_TYPE_EOF","features":[474]},{"name":"WS_XML_NODE_TYPE_TEXT","features":[474]},{"name":"WS_XML_QNAME","features":[303,474]},{"name":"WS_XML_QNAME_DESCRIPTION","features":[474]},{"name":"WS_XML_QNAME_TEXT","features":[303,474]},{"name":"WS_XML_QNAME_TYPE","features":[474]},{"name":"WS_XML_READER","features":[474]},{"name":"WS_XML_READER_BINARY_ENCODING","features":[303,474]},{"name":"WS_XML_READER_BUFFER_INPUT","features":[474]},{"name":"WS_XML_READER_ENCODING","features":[474]},{"name":"WS_XML_READER_ENCODING_TYPE","features":[474]},{"name":"WS_XML_READER_ENCODING_TYPE_BINARY","features":[474]},{"name":"WS_XML_READER_ENCODING_TYPE_MTOM","features":[474]},{"name":"WS_XML_READER_ENCODING_TYPE_RAW","features":[474]},{"name":"WS_XML_READER_ENCODING_TYPE_TEXT","features":[474]},{"name":"WS_XML_READER_INPUT","features":[474]},{"name":"WS_XML_READER_INPUT_TYPE","features":[474]},{"name":"WS_XML_READER_INPUT_TYPE_BUFFER","features":[474]},{"name":"WS_XML_READER_INPUT_TYPE_STREAM","features":[474]},{"name":"WS_XML_READER_MTOM_ENCODING","features":[303,474]},{"name":"WS_XML_READER_PROPERTIES","features":[474]},{"name":"WS_XML_READER_PROPERTY","features":[474]},{"name":"WS_XML_READER_PROPERTY_ALLOW_FRAGMENT","features":[474]},{"name":"WS_XML_READER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[474]},{"name":"WS_XML_READER_PROPERTY_CHARSET","features":[474]},{"name":"WS_XML_READER_PROPERTY_COLUMN","features":[474]},{"name":"WS_XML_READER_PROPERTY_ID","features":[474]},{"name":"WS_XML_READER_PROPERTY_IN_ATTRIBUTE","features":[474]},{"name":"WS_XML_READER_PROPERTY_MAX_ATTRIBUTES","features":[474]},{"name":"WS_XML_READER_PROPERTY_MAX_DEPTH","features":[474]},{"name":"WS_XML_READER_PROPERTY_MAX_MIME_PARTS","features":[474]},{"name":"WS_XML_READER_PROPERTY_MAX_NAMESPACES","features":[474]},{"name":"WS_XML_READER_PROPERTY_READ_DECLARATION","features":[474]},{"name":"WS_XML_READER_PROPERTY_ROW","features":[474]},{"name":"WS_XML_READER_PROPERTY_STREAM_BUFFER_SIZE","features":[474]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_MIME_HEADERS_SIZE","features":[474]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_ROOT_MIME_PART_SIZE","features":[474]},{"name":"WS_XML_READER_PROPERTY_UTF8_TRIM_SIZE","features":[474]},{"name":"WS_XML_READER_RAW_ENCODING","features":[474]},{"name":"WS_XML_READER_STREAM_INPUT","features":[474]},{"name":"WS_XML_READER_TEXT_ENCODING","features":[474]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY","features":[474]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE","features":[474]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ID","features":[474]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE","features":[474]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[474]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[474]},{"name":"WS_XML_STRING","features":[303,474]},{"name":"WS_XML_STRING_DESCRIPTION","features":[474]},{"name":"WS_XML_STRING_TYPE","features":[474]},{"name":"WS_XML_TEXT","features":[474]},{"name":"WS_XML_TEXT_NODE","features":[474]},{"name":"WS_XML_TEXT_TYPE","features":[474]},{"name":"WS_XML_TEXT_TYPE_BASE64","features":[474]},{"name":"WS_XML_TEXT_TYPE_BOOL","features":[474]},{"name":"WS_XML_TEXT_TYPE_DATETIME","features":[474]},{"name":"WS_XML_TEXT_TYPE_DECIMAL","features":[474]},{"name":"WS_XML_TEXT_TYPE_DOUBLE","features":[474]},{"name":"WS_XML_TEXT_TYPE_FLOAT","features":[474]},{"name":"WS_XML_TEXT_TYPE_GUID","features":[474]},{"name":"WS_XML_TEXT_TYPE_INT32","features":[474]},{"name":"WS_XML_TEXT_TYPE_INT64","features":[474]},{"name":"WS_XML_TEXT_TYPE_LIST","features":[474]},{"name":"WS_XML_TEXT_TYPE_QNAME","features":[474]},{"name":"WS_XML_TEXT_TYPE_TIMESPAN","features":[474]},{"name":"WS_XML_TEXT_TYPE_UINT64","features":[474]},{"name":"WS_XML_TEXT_TYPE_UNIQUE_ID","features":[474]},{"name":"WS_XML_TEXT_TYPE_UTF16","features":[474]},{"name":"WS_XML_TEXT_TYPE_UTF8","features":[474]},{"name":"WS_XML_TIMESPAN_TEXT","features":[474]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING","features":[474]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING_TYPE","features":[474]},{"name":"WS_XML_UINT64_TEXT","features":[474]},{"name":"WS_XML_UNIQUE_ID_TEXT","features":[474]},{"name":"WS_XML_UTF16_TEXT","features":[474]},{"name":"WS_XML_UTF8_TEXT","features":[303,474]},{"name":"WS_XML_WRITER","features":[474]},{"name":"WS_XML_WRITER_BINARY_ENCODING","features":[303,474]},{"name":"WS_XML_WRITER_BUFFER_OUTPUT","features":[474]},{"name":"WS_XML_WRITER_ENCODING","features":[474]},{"name":"WS_XML_WRITER_ENCODING_TYPE","features":[474]},{"name":"WS_XML_WRITER_ENCODING_TYPE_BINARY","features":[474]},{"name":"WS_XML_WRITER_ENCODING_TYPE_MTOM","features":[474]},{"name":"WS_XML_WRITER_ENCODING_TYPE_RAW","features":[474]},{"name":"WS_XML_WRITER_ENCODING_TYPE_TEXT","features":[474]},{"name":"WS_XML_WRITER_MTOM_ENCODING","features":[303,474]},{"name":"WS_XML_WRITER_OUTPUT","features":[474]},{"name":"WS_XML_WRITER_OUTPUT_TYPE","features":[474]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_BUFFER","features":[474]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_STREAM","features":[474]},{"name":"WS_XML_WRITER_PROPERTIES","features":[474]},{"name":"WS_XML_WRITER_PROPERTY","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_FRAGMENT","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_BUFFERS","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_MAX_SIZE","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_TRIM_SIZE","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_BYTES","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_TO_CLOSE","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_WRITTEN","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_CHARSET","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_COMPRESS_EMPTY_ELEMENTS","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_EMIT_UNCOMPRESSED_EMPTY_ELEMENTS","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_ID","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_INDENT","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_INITIAL_BUFFER","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_IN_ATTRIBUTE","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_MAX_ATTRIBUTES","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_MAX_DEPTH","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_MAX_MIME_PARTS_BUFFER_SIZE","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_MAX_NAMESPACES","features":[474]},{"name":"WS_XML_WRITER_PROPERTY_WRITE_DECLARATION","features":[474]},{"name":"WS_XML_WRITER_RAW_ENCODING","features":[474]},{"name":"WS_XML_WRITER_STREAM_OUTPUT","features":[474]},{"name":"WS_XML_WRITER_TEXT_ENCODING","features":[474]},{"name":"WebAuthNAuthenticatorGetAssertion","features":[303,474]},{"name":"WebAuthNAuthenticatorMakeCredential","features":[303,474]},{"name":"WebAuthNCancelCurrentOperation","features":[474]},{"name":"WebAuthNDeletePlatformCredential","features":[474]},{"name":"WebAuthNFreeAssertion","features":[474]},{"name":"WebAuthNFreeCredentialAttestation","features":[303,474]},{"name":"WebAuthNFreePlatformCredentialList","features":[303,474]},{"name":"WebAuthNGetApiVersionNumber","features":[474]},{"name":"WebAuthNGetCancellationId","features":[474]},{"name":"WebAuthNGetErrorName","features":[474]},{"name":"WebAuthNGetPlatformCredentialList","features":[303,474]},{"name":"WebAuthNGetW3CExceptionDOMError","features":[474]},{"name":"WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable","features":[303,474]},{"name":"WsAbandonCall","features":[474]},{"name":"WsAbandonMessage","features":[474]},{"name":"WsAbortChannel","features":[474]},{"name":"WsAbortListener","features":[474]},{"name":"WsAbortServiceHost","features":[474]},{"name":"WsAbortServiceProxy","features":[474]},{"name":"WsAcceptChannel","features":[474]},{"name":"WsAddCustomHeader","features":[303,474]},{"name":"WsAddErrorString","features":[474]},{"name":"WsAddMappedHeader","features":[303,474]},{"name":"WsAddressMessage","features":[474]},{"name":"WsAlloc","features":[474]},{"name":"WsAsyncExecute","features":[474]},{"name":"WsCall","features":[303,474]},{"name":"WsCheckMustUnderstandHeaders","features":[474]},{"name":"WsCloseChannel","features":[474]},{"name":"WsCloseListener","features":[474]},{"name":"WsCloseServiceHost","features":[474]},{"name":"WsCloseServiceProxy","features":[474]},{"name":"WsCombineUrl","features":[474]},{"name":"WsCopyError","features":[474]},{"name":"WsCopyNode","features":[474]},{"name":"WsCreateChannel","features":[474]},{"name":"WsCreateChannelForListener","features":[474]},{"name":"WsCreateError","features":[474]},{"name":"WsCreateFaultFromError","features":[303,474]},{"name":"WsCreateHeap","features":[474]},{"name":"WsCreateListener","features":[474]},{"name":"WsCreateMessage","features":[474]},{"name":"WsCreateMessageForChannel","features":[474]},{"name":"WsCreateMetadata","features":[474]},{"name":"WsCreateReader","features":[474]},{"name":"WsCreateServiceEndpointFromTemplate","features":[303,474]},{"name":"WsCreateServiceHost","features":[303,474]},{"name":"WsCreateServiceProxy","features":[474]},{"name":"WsCreateServiceProxyFromTemplate","features":[474]},{"name":"WsCreateWriter","features":[474]},{"name":"WsCreateXmlBuffer","features":[474]},{"name":"WsCreateXmlSecurityToken","features":[474]},{"name":"WsDateTimeToFileTime","features":[303,474]},{"name":"WsDecodeUrl","features":[474]},{"name":"WsEncodeUrl","features":[474]},{"name":"WsEndReaderCanonicalization","features":[474]},{"name":"WsEndWriterCanonicalization","features":[474]},{"name":"WsFileTimeToDateTime","features":[303,474]},{"name":"WsFillBody","features":[474]},{"name":"WsFillReader","features":[474]},{"name":"WsFindAttribute","features":[303,474]},{"name":"WsFlushBody","features":[474]},{"name":"WsFlushWriter","features":[474]},{"name":"WsFreeChannel","features":[474]},{"name":"WsFreeError","features":[474]},{"name":"WsFreeHeap","features":[474]},{"name":"WsFreeListener","features":[474]},{"name":"WsFreeMessage","features":[474]},{"name":"WsFreeMetadata","features":[474]},{"name":"WsFreeReader","features":[474]},{"name":"WsFreeSecurityToken","features":[474]},{"name":"WsFreeServiceHost","features":[474]},{"name":"WsFreeServiceProxy","features":[474]},{"name":"WsFreeWriter","features":[474]},{"name":"WsGetChannelProperty","features":[474]},{"name":"WsGetCustomHeader","features":[303,474]},{"name":"WsGetDictionary","features":[303,474]},{"name":"WsGetErrorProperty","features":[474]},{"name":"WsGetErrorString","features":[474]},{"name":"WsGetFaultErrorDetail","features":[303,474]},{"name":"WsGetFaultErrorProperty","features":[474]},{"name":"WsGetHeader","features":[474]},{"name":"WsGetHeaderAttributes","features":[474]},{"name":"WsGetHeapProperty","features":[474]},{"name":"WsGetListenerProperty","features":[474]},{"name":"WsGetMappedHeader","features":[303,474]},{"name":"WsGetMessageProperty","features":[474]},{"name":"WsGetMetadataEndpoints","features":[303,474]},{"name":"WsGetMetadataProperty","features":[474]},{"name":"WsGetMissingMetadataDocumentAddress","features":[474]},{"name":"WsGetNamespaceFromPrefix","features":[303,474]},{"name":"WsGetOperationContextProperty","features":[474]},{"name":"WsGetPolicyAlternativeCount","features":[474]},{"name":"WsGetPolicyProperty","features":[474]},{"name":"WsGetPrefixFromNamespace","features":[303,474]},{"name":"WsGetReaderNode","features":[474]},{"name":"WsGetReaderPosition","features":[474]},{"name":"WsGetReaderProperty","features":[474]},{"name":"WsGetSecurityContextProperty","features":[474]},{"name":"WsGetSecurityTokenProperty","features":[474]},{"name":"WsGetServiceHostProperty","features":[474]},{"name":"WsGetServiceProxyProperty","features":[474]},{"name":"WsGetWriterPosition","features":[474]},{"name":"WsGetWriterProperty","features":[474]},{"name":"WsGetXmlAttribute","features":[303,474]},{"name":"WsInitializeMessage","features":[474]},{"name":"WsMarkHeaderAsUnderstood","features":[474]},{"name":"WsMatchPolicyAlternative","features":[303,474]},{"name":"WsMoveReader","features":[303,474]},{"name":"WsMoveWriter","features":[303,474]},{"name":"WsOpenChannel","features":[474]},{"name":"WsOpenListener","features":[474]},{"name":"WsOpenServiceHost","features":[474]},{"name":"WsOpenServiceProxy","features":[474]},{"name":"WsPullBytes","features":[474]},{"name":"WsPushBytes","features":[474]},{"name":"WsReadArray","features":[303,474]},{"name":"WsReadAttribute","features":[303,474]},{"name":"WsReadBody","features":[303,474]},{"name":"WsReadBytes","features":[474]},{"name":"WsReadChars","features":[474]},{"name":"WsReadCharsUtf8","features":[474]},{"name":"WsReadElement","features":[303,474]},{"name":"WsReadEndAttribute","features":[474]},{"name":"WsReadEndElement","features":[474]},{"name":"WsReadEndpointAddressExtension","features":[474]},{"name":"WsReadEnvelopeEnd","features":[474]},{"name":"WsReadEnvelopeStart","features":[474]},{"name":"WsReadMessageEnd","features":[474]},{"name":"WsReadMessageStart","features":[474]},{"name":"WsReadMetadata","features":[474]},{"name":"WsReadNode","features":[474]},{"name":"WsReadQualifiedName","features":[303,474]},{"name":"WsReadStartAttribute","features":[474]},{"name":"WsReadStartElement","features":[474]},{"name":"WsReadToStartElement","features":[303,474]},{"name":"WsReadType","features":[474]},{"name":"WsReadValue","features":[474]},{"name":"WsReadXmlBuffer","features":[474]},{"name":"WsReadXmlBufferFromBytes","features":[474]},{"name":"WsReceiveMessage","features":[303,474]},{"name":"WsRegisterOperationForCancel","features":[474]},{"name":"WsRemoveCustomHeader","features":[303,474]},{"name":"WsRemoveHeader","features":[474]},{"name":"WsRemoveMappedHeader","features":[303,474]},{"name":"WsRemoveNode","features":[474]},{"name":"WsRequestReply","features":[303,474]},{"name":"WsRequestSecurityToken","features":[474]},{"name":"WsResetChannel","features":[474]},{"name":"WsResetError","features":[474]},{"name":"WsResetHeap","features":[474]},{"name":"WsResetListener","features":[474]},{"name":"WsResetMessage","features":[474]},{"name":"WsResetMetadata","features":[474]},{"name":"WsResetServiceHost","features":[474]},{"name":"WsResetServiceProxy","features":[474]},{"name":"WsRevokeSecurityContext","features":[474]},{"name":"WsSendFaultMessageForError","features":[474]},{"name":"WsSendMessage","features":[303,474]},{"name":"WsSendReplyMessage","features":[303,474]},{"name":"WsSetChannelProperty","features":[474]},{"name":"WsSetErrorProperty","features":[474]},{"name":"WsSetFaultErrorDetail","features":[303,474]},{"name":"WsSetFaultErrorProperty","features":[474]},{"name":"WsSetHeader","features":[474]},{"name":"WsSetInput","features":[474]},{"name":"WsSetInputToBuffer","features":[474]},{"name":"WsSetListenerProperty","features":[474]},{"name":"WsSetMessageProperty","features":[474]},{"name":"WsSetOutput","features":[474]},{"name":"WsSetOutputToBuffer","features":[474]},{"name":"WsSetReaderPosition","features":[474]},{"name":"WsSetWriterPosition","features":[474]},{"name":"WsShutdownSessionChannel","features":[474]},{"name":"WsSkipNode","features":[474]},{"name":"WsStartReaderCanonicalization","features":[474]},{"name":"WsStartWriterCanonicalization","features":[474]},{"name":"WsTrimXmlWhitespace","features":[474]},{"name":"WsVerifyXmlNCName","features":[474]},{"name":"WsWriteArray","features":[303,474]},{"name":"WsWriteAttribute","features":[303,474]},{"name":"WsWriteBody","features":[303,474]},{"name":"WsWriteBytes","features":[474]},{"name":"WsWriteChars","features":[474]},{"name":"WsWriteCharsUtf8","features":[474]},{"name":"WsWriteElement","features":[303,474]},{"name":"WsWriteEndAttribute","features":[474]},{"name":"WsWriteEndCData","features":[474]},{"name":"WsWriteEndElement","features":[474]},{"name":"WsWriteEndStartElement","features":[474]},{"name":"WsWriteEnvelopeEnd","features":[474]},{"name":"WsWriteEnvelopeStart","features":[474]},{"name":"WsWriteMessageEnd","features":[474]},{"name":"WsWriteMessageStart","features":[474]},{"name":"WsWriteNode","features":[474]},{"name":"WsWriteQualifiedName","features":[303,474]},{"name":"WsWriteStartAttribute","features":[303,474]},{"name":"WsWriteStartCData","features":[474]},{"name":"WsWriteStartElement","features":[303,474]},{"name":"WsWriteText","features":[474]},{"name":"WsWriteType","features":[474]},{"name":"WsWriteValue","features":[474]},{"name":"WsWriteXmlBuffer","features":[474]},{"name":"WsWriteXmlBufferToBytes","features":[474]},{"name":"WsWriteXmlnsAttribute","features":[303,474]},{"name":"WsXmlStringEquals","features":[303,474]}],"479":[{"name":"ACCESS_ALLOWED_ACE","features":[306]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE","features":[306]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE","features":[306]},{"name":"ACCESS_ALLOWED_OBJECT_ACE","features":[306]},{"name":"ACCESS_DENIED_ACE","features":[306]},{"name":"ACCESS_DENIED_CALLBACK_ACE","features":[306]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE","features":[306]},{"name":"ACCESS_DENIED_OBJECT_ACE","features":[306]},{"name":"ACCESS_REASONS","features":[306]},{"name":"ACE_FLAGS","features":[306]},{"name":"ACE_HEADER","features":[306]},{"name":"ACE_INHERITED_OBJECT_TYPE_PRESENT","features":[306]},{"name":"ACE_OBJECT_TYPE_PRESENT","features":[306]},{"name":"ACE_REVISION","features":[306]},{"name":"ACL","features":[306]},{"name":"ACL_INFORMATION_CLASS","features":[306]},{"name":"ACL_REVISION","features":[306]},{"name":"ACL_REVISION_DS","features":[306]},{"name":"ACL_REVISION_INFORMATION","features":[306]},{"name":"ACL_SIZE_INFORMATION","features":[306]},{"name":"ATTRIBUTE_SECURITY_INFORMATION","features":[306]},{"name":"AUDIT_EVENT_TYPE","features":[306]},{"name":"AccessCheck","features":[303,306]},{"name":"AccessCheckAndAuditAlarmA","features":[303,306]},{"name":"AccessCheckAndAuditAlarmW","features":[303,306]},{"name":"AccessCheckByType","features":[303,306]},{"name":"AccessCheckByTypeAndAuditAlarmA","features":[303,306]},{"name":"AccessCheckByTypeAndAuditAlarmW","features":[303,306]},{"name":"AccessCheckByTypeResultList","features":[303,306]},{"name":"AccessCheckByTypeResultListAndAuditAlarmA","features":[303,306]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleA","features":[303,306]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleW","features":[303,306]},{"name":"AccessCheckByTypeResultListAndAuditAlarmW","features":[303,306]},{"name":"AclRevisionInformation","features":[306]},{"name":"AclSizeInformation","features":[306]},{"name":"AddAccessAllowedAce","features":[303,306]},{"name":"AddAccessAllowedAceEx","features":[303,306]},{"name":"AddAccessAllowedObjectAce","features":[303,306]},{"name":"AddAccessDeniedAce","features":[303,306]},{"name":"AddAccessDeniedAceEx","features":[303,306]},{"name":"AddAccessDeniedObjectAce","features":[303,306]},{"name":"AddAce","features":[303,306]},{"name":"AddAuditAccessAce","features":[303,306]},{"name":"AddAuditAccessAceEx","features":[303,306]},{"name":"AddAuditAccessObjectAce","features":[303,306]},{"name":"AddConditionalAce","features":[303,306]},{"name":"AddMandatoryAce","features":[303,306]},{"name":"AddResourceAttributeAce","features":[303,306]},{"name":"AddScopedPolicyIDAce","features":[303,306]},{"name":"AdjustTokenGroups","features":[303,306]},{"name":"AdjustTokenPrivileges","features":[303,306]},{"name":"AllocateAndInitializeSid","features":[303,306]},{"name":"AllocateLocallyUniqueId","features":[303,306]},{"name":"AreAllAccessesGranted","features":[303,306]},{"name":"AreAnyAccessesGranted","features":[303,306]},{"name":"AuditEventDirectoryServiceAccess","features":[306]},{"name":"AuditEventObjectAccess","features":[306]},{"name":"BACKUP_SECURITY_INFORMATION","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED_BY_DEFAULT","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FLAGS","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_MANDATORY","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INT64","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_SID","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_STRING","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_USE_FOR_DENY_ONLY","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_V1","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[306]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_TYPE","features":[306]},{"name":"CONTAINER_INHERIT_ACE","features":[306]},{"name":"CREATE_RESTRICTED_TOKEN_FLAGS","features":[306]},{"name":"CVT_SECONDS","features":[306]},{"name":"CheckTokenCapability","features":[303,306]},{"name":"CheckTokenMembership","features":[303,306]},{"name":"CheckTokenMembershipEx","features":[303,306]},{"name":"ConvertToAutoInheritPrivateObjectSecurity","features":[303,306]},{"name":"CopySid","features":[303,306]},{"name":"CreatePrivateObjectSecurity","features":[303,306]},{"name":"CreatePrivateObjectSecurityEx","features":[303,306]},{"name":"CreatePrivateObjectSecurityWithMultipleInheritance","features":[303,306]},{"name":"CreateRestrictedToken","features":[303,306]},{"name":"CreateWellKnownSid","features":[303,306]},{"name":"DACL_SECURITY_INFORMATION","features":[306]},{"name":"DISABLE_MAX_PRIVILEGE","features":[306]},{"name":"DeleteAce","features":[303,306]},{"name":"DeriveCapabilitySidsFromName","features":[303,306]},{"name":"DestroyPrivateObjectSecurity","features":[303,306]},{"name":"DuplicateToken","features":[303,306]},{"name":"DuplicateTokenEx","features":[303,306]},{"name":"ENUM_PERIOD","features":[306]},{"name":"ENUM_PERIOD_DAYS","features":[306]},{"name":"ENUM_PERIOD_HOURS","features":[306]},{"name":"ENUM_PERIOD_INVALID","features":[306]},{"name":"ENUM_PERIOD_MINUTES","features":[306]},{"name":"ENUM_PERIOD_MONTHS","features":[306]},{"name":"ENUM_PERIOD_SECONDS","features":[306]},{"name":"ENUM_PERIOD_WEEKS","features":[306]},{"name":"ENUM_PERIOD_YEARS","features":[306]},{"name":"EqualDomainSid","features":[303,306]},{"name":"EqualPrefixSid","features":[303,306]},{"name":"EqualSid","features":[303,306]},{"name":"FAILED_ACCESS_ACE_FLAG","features":[306]},{"name":"FindFirstFreeAce","features":[303,306]},{"name":"FreeSid","features":[303,306]},{"name":"GENERIC_MAPPING","features":[306]},{"name":"GROUP_SECURITY_INFORMATION","features":[306]},{"name":"GetAce","features":[303,306]},{"name":"GetAclInformation","features":[303,306]},{"name":"GetAppContainerAce","features":[303,306]},{"name":"GetCachedSigningLevel","features":[303,306]},{"name":"GetFileSecurityA","features":[303,306]},{"name":"GetFileSecurityW","features":[303,306]},{"name":"GetKernelObjectSecurity","features":[303,306]},{"name":"GetLengthSid","features":[303,306]},{"name":"GetPrivateObjectSecurity","features":[303,306]},{"name":"GetSecurityDescriptorControl","features":[303,306]},{"name":"GetSecurityDescriptorDacl","features":[303,306]},{"name":"GetSecurityDescriptorGroup","features":[303,306]},{"name":"GetSecurityDescriptorLength","features":[306]},{"name":"GetSecurityDescriptorOwner","features":[303,306]},{"name":"GetSecurityDescriptorRMControl","features":[306]},{"name":"GetSecurityDescriptorSacl","features":[303,306]},{"name":"GetSidIdentifierAuthority","features":[303,306]},{"name":"GetSidLengthRequired","features":[306]},{"name":"GetSidSubAuthority","features":[303,306]},{"name":"GetSidSubAuthorityCount","features":[303,306]},{"name":"GetTokenInformation","features":[303,306]},{"name":"GetUserObjectSecurity","features":[303,306]},{"name":"GetWindowsAccountDomainSid","features":[303,306]},{"name":"HDIAGNOSTIC_DATA_QUERY_SESSION","features":[306]},{"name":"HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION","features":[306]},{"name":"HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION","features":[306]},{"name":"HDIAGNOSTIC_EVENT_TAG_DESCRIPTION","features":[306]},{"name":"HDIAGNOSTIC_RECORD","features":[306]},{"name":"HDIAGNOSTIC_REPORT","features":[306]},{"name":"INHERITED_ACE","features":[306]},{"name":"INHERIT_NO_PROPAGATE","features":[306]},{"name":"INHERIT_ONLY","features":[306]},{"name":"INHERIT_ONLY_ACE","features":[306]},{"name":"ImpersonateAnonymousToken","features":[303,306]},{"name":"ImpersonateLoggedOnUser","features":[303,306]},{"name":"ImpersonateSelf","features":[303,306]},{"name":"InitializeAcl","features":[303,306]},{"name":"InitializeSecurityDescriptor","features":[303,306]},{"name":"InitializeSid","features":[303,306]},{"name":"IsTokenRestricted","features":[303,306]},{"name":"IsValidAcl","features":[303,306]},{"name":"IsValidSecurityDescriptor","features":[303,306]},{"name":"IsValidSid","features":[303,306]},{"name":"IsWellKnownSid","features":[303,306]},{"name":"LABEL_SECURITY_INFORMATION","features":[306]},{"name":"LLFILETIME","features":[303,306]},{"name":"LOGON32_LOGON","features":[306]},{"name":"LOGON32_LOGON_BATCH","features":[306]},{"name":"LOGON32_LOGON_INTERACTIVE","features":[306]},{"name":"LOGON32_LOGON_NETWORK","features":[306]},{"name":"LOGON32_LOGON_NETWORK_CLEARTEXT","features":[306]},{"name":"LOGON32_LOGON_NEW_CREDENTIALS","features":[306]},{"name":"LOGON32_LOGON_SERVICE","features":[306]},{"name":"LOGON32_LOGON_UNLOCK","features":[306]},{"name":"LOGON32_PROVIDER","features":[306]},{"name":"LOGON32_PROVIDER_DEFAULT","features":[306]},{"name":"LOGON32_PROVIDER_WINNT40","features":[306]},{"name":"LOGON32_PROVIDER_WINNT50","features":[306]},{"name":"LUA_TOKEN","features":[306]},{"name":"LUID_AND_ATTRIBUTES","features":[303,306]},{"name":"LogonUserA","features":[303,306]},{"name":"LogonUserExA","features":[303,306]},{"name":"LogonUserExW","features":[303,306]},{"name":"LogonUserW","features":[303,306]},{"name":"LookupAccountNameA","features":[303,306]},{"name":"LookupAccountNameW","features":[303,306]},{"name":"LookupAccountSidA","features":[303,306]},{"name":"LookupAccountSidW","features":[303,306]},{"name":"LookupPrivilegeDisplayNameA","features":[303,306]},{"name":"LookupPrivilegeDisplayNameW","features":[303,306]},{"name":"LookupPrivilegeNameA","features":[303,306]},{"name":"LookupPrivilegeNameW","features":[303,306]},{"name":"LookupPrivilegeValueA","features":[303,306]},{"name":"LookupPrivilegeValueW","features":[303,306]},{"name":"MANDATORY_LEVEL","features":[306]},{"name":"MakeAbsoluteSD","features":[303,306]},{"name":"MakeSelfRelativeSD","features":[303,306]},{"name":"MandatoryLevelCount","features":[306]},{"name":"MandatoryLevelHigh","features":[306]},{"name":"MandatoryLevelLow","features":[306]},{"name":"MandatoryLevelMedium","features":[306]},{"name":"MandatoryLevelSecureProcess","features":[306]},{"name":"MandatoryLevelSystem","features":[306]},{"name":"MandatoryLevelUntrusted","features":[306]},{"name":"MapGenericMask","features":[306]},{"name":"MaxTokenInfoClass","features":[306]},{"name":"NCRYPT_DESCRIPTOR_HANDLE","features":[306]},{"name":"NCRYPT_STREAM_HANDLE","features":[306]},{"name":"NO_INHERITANCE","features":[306]},{"name":"NO_PROPAGATE_INHERIT_ACE","features":[306]},{"name":"OBJECT_INHERIT_ACE","features":[306]},{"name":"OBJECT_SECURITY_INFORMATION","features":[306]},{"name":"OBJECT_TYPE_LIST","features":[306]},{"name":"OWNER_SECURITY_INFORMATION","features":[306]},{"name":"ObjectCloseAuditAlarmA","features":[303,306]},{"name":"ObjectCloseAuditAlarmW","features":[303,306]},{"name":"ObjectDeleteAuditAlarmA","features":[303,306]},{"name":"ObjectDeleteAuditAlarmW","features":[303,306]},{"name":"ObjectOpenAuditAlarmA","features":[303,306]},{"name":"ObjectOpenAuditAlarmW","features":[303,306]},{"name":"ObjectPrivilegeAuditAlarmA","features":[303,306]},{"name":"ObjectPrivilegeAuditAlarmW","features":[303,306]},{"name":"PLSA_AP_CALL_PACKAGE_UNTRUSTED","features":[303,306]},{"name":"PRIVILEGE_SET","features":[303,306]},{"name":"PROTECTED_DACL_SECURITY_INFORMATION","features":[306]},{"name":"PROTECTED_SACL_SECURITY_INFORMATION","features":[306]},{"name":"PSECURITY_DESCRIPTOR","features":[306]},{"name":"PrivilegeCheck","features":[303,306]},{"name":"PrivilegedServiceAuditAlarmA","features":[303,306]},{"name":"PrivilegedServiceAuditAlarmW","features":[303,306]},{"name":"QUOTA_LIMITS","features":[306]},{"name":"QuerySecurityAccessMask","features":[306]},{"name":"RevertToSelf","features":[303,306]},{"name":"RtlConvertSidToUnicodeString","features":[303,306]},{"name":"RtlNormalizeSecurityDescriptor","features":[303,306]},{"name":"SACL_SECURITY_INFORMATION","features":[306]},{"name":"SAFER_LEVEL_HANDLE","features":[306]},{"name":"SANDBOX_INERT","features":[306]},{"name":"SCOPE_SECURITY_INFORMATION","features":[306]},{"name":"SC_HANDLE","features":[306]},{"name":"SECURITY_APP_PACKAGE_AUTHORITY","features":[306]},{"name":"SECURITY_ATTRIBUTES","features":[303,306]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY","features":[306]},{"name":"SECURITY_AUTO_INHERIT_FLAGS","features":[306]},{"name":"SECURITY_CAPABILITIES","features":[303,306]},{"name":"SECURITY_CREATOR_SID_AUTHORITY","features":[306]},{"name":"SECURITY_DESCRIPTOR","features":[303,306]},{"name":"SECURITY_DESCRIPTOR_CONTROL","features":[306]},{"name":"SECURITY_DESCRIPTOR_RELATIVE","features":[306]},{"name":"SECURITY_DYNAMIC_TRACKING","features":[303,306]},{"name":"SECURITY_IMPERSONATION_LEVEL","features":[306]},{"name":"SECURITY_LOCAL_SID_AUTHORITY","features":[306]},{"name":"SECURITY_MANDATORY_LABEL_AUTHORITY","features":[306]},{"name":"SECURITY_NON_UNIQUE_AUTHORITY","features":[306]},{"name":"SECURITY_NT_AUTHORITY","features":[306]},{"name":"SECURITY_NULL_SID_AUTHORITY","features":[306]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY","features":[306]},{"name":"SECURITY_QUALITY_OF_SERVICE","features":[303,306]},{"name":"SECURITY_RESOURCE_MANAGER_AUTHORITY","features":[306]},{"name":"SECURITY_SCOPED_POLICY_ID_AUTHORITY","features":[306]},{"name":"SECURITY_STATIC_TRACKING","features":[303,306]},{"name":"SECURITY_WORLD_SID_AUTHORITY","features":[306]},{"name":"SEC_THREAD_START","features":[306]},{"name":"SEF_AVOID_OWNER_CHECK","features":[306]},{"name":"SEF_AVOID_OWNER_RESTRICTION","features":[306]},{"name":"SEF_AVOID_PRIVILEGE_CHECK","features":[306]},{"name":"SEF_DACL_AUTO_INHERIT","features":[306]},{"name":"SEF_DEFAULT_DESCRIPTOR_FOR_OBJECT","features":[306]},{"name":"SEF_DEFAULT_GROUP_FROM_PARENT","features":[306]},{"name":"SEF_DEFAULT_OWNER_FROM_PARENT","features":[306]},{"name":"SEF_MACL_NO_EXECUTE_UP","features":[306]},{"name":"SEF_MACL_NO_READ_UP","features":[306]},{"name":"SEF_MACL_NO_WRITE_UP","features":[306]},{"name":"SEF_SACL_AUTO_INHERIT","features":[306]},{"name":"SE_ACCESS_REPLY","features":[303,306]},{"name":"SE_ACCESS_REQUEST","features":[303,306]},{"name":"SE_ASSIGNPRIMARYTOKEN_NAME","features":[306]},{"name":"SE_AUDIT_NAME","features":[306]},{"name":"SE_BACKUP_NAME","features":[306]},{"name":"SE_CHANGE_NOTIFY_NAME","features":[306]},{"name":"SE_CREATE_GLOBAL_NAME","features":[306]},{"name":"SE_CREATE_PAGEFILE_NAME","features":[306]},{"name":"SE_CREATE_PERMANENT_NAME","features":[306]},{"name":"SE_CREATE_SYMBOLIC_LINK_NAME","features":[306]},{"name":"SE_CREATE_TOKEN_NAME","features":[306]},{"name":"SE_DACL_AUTO_INHERITED","features":[306]},{"name":"SE_DACL_AUTO_INHERIT_REQ","features":[306]},{"name":"SE_DACL_DEFAULTED","features":[306]},{"name":"SE_DACL_PRESENT","features":[306]},{"name":"SE_DACL_PROTECTED","features":[306]},{"name":"SE_DEBUG_NAME","features":[306]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_NAME","features":[306]},{"name":"SE_ENABLE_DELEGATION_NAME","features":[306]},{"name":"SE_GROUP_DEFAULTED","features":[306]},{"name":"SE_IMPERSONATE_NAME","features":[306]},{"name":"SE_IMPERSONATION_STATE","features":[303,306]},{"name":"SE_INCREASE_QUOTA_NAME","features":[306]},{"name":"SE_INC_BASE_PRIORITY_NAME","features":[306]},{"name":"SE_INC_WORKING_SET_NAME","features":[306]},{"name":"SE_LOAD_DRIVER_NAME","features":[306]},{"name":"SE_LOCK_MEMORY_NAME","features":[306]},{"name":"SE_MACHINE_ACCOUNT_NAME","features":[306]},{"name":"SE_MANAGE_VOLUME_NAME","features":[306]},{"name":"SE_OWNER_DEFAULTED","features":[306]},{"name":"SE_PRIVILEGE_ENABLED","features":[306]},{"name":"SE_PRIVILEGE_ENABLED_BY_DEFAULT","features":[306]},{"name":"SE_PRIVILEGE_REMOVED","features":[306]},{"name":"SE_PRIVILEGE_USED_FOR_ACCESS","features":[306]},{"name":"SE_PROF_SINGLE_PROCESS_NAME","features":[306]},{"name":"SE_RELABEL_NAME","features":[306]},{"name":"SE_REMOTE_SHUTDOWN_NAME","features":[306]},{"name":"SE_RESTORE_NAME","features":[306]},{"name":"SE_RM_CONTROL_VALID","features":[306]},{"name":"SE_SACL_AUTO_INHERITED","features":[306]},{"name":"SE_SACL_AUTO_INHERIT_REQ","features":[306]},{"name":"SE_SACL_DEFAULTED","features":[306]},{"name":"SE_SACL_PRESENT","features":[306]},{"name":"SE_SACL_PROTECTED","features":[306]},{"name":"SE_SECURITY_DESCRIPTOR","features":[306]},{"name":"SE_SECURITY_NAME","features":[306]},{"name":"SE_SELF_RELATIVE","features":[306]},{"name":"SE_SHUTDOWN_NAME","features":[306]},{"name":"SE_SID","features":[306]},{"name":"SE_SYNC_AGENT_NAME","features":[306]},{"name":"SE_SYSTEMTIME_NAME","features":[306]},{"name":"SE_SYSTEM_ENVIRONMENT_NAME","features":[306]},{"name":"SE_SYSTEM_PROFILE_NAME","features":[306]},{"name":"SE_TAKE_OWNERSHIP_NAME","features":[306]},{"name":"SE_TCB_NAME","features":[306]},{"name":"SE_TIME_ZONE_NAME","features":[306]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_NAME","features":[306]},{"name":"SE_UNDOCK_NAME","features":[306]},{"name":"SE_UNSOLICITED_INPUT_NAME","features":[306]},{"name":"SID","features":[306]},{"name":"SID_AND_ATTRIBUTES","features":[303,306]},{"name":"SID_AND_ATTRIBUTES_HASH","features":[303,306]},{"name":"SID_IDENTIFIER_AUTHORITY","features":[306]},{"name":"SID_NAME_USE","features":[306]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_NOT_VALIDATED","features":[306]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_VALIDATE_ONLY","features":[306]},{"name":"SIGNING_LEVEL_MICROSOFT","features":[306]},{"name":"SUB_CONTAINERS_AND_OBJECTS_INHERIT","features":[306]},{"name":"SUB_CONTAINERS_ONLY_INHERIT","features":[306]},{"name":"SUB_OBJECTS_ONLY_INHERIT","features":[306]},{"name":"SUCCESSFUL_ACCESS_ACE_FLAG","features":[306]},{"name":"SYSTEM_ACCESS_FILTER_ACE","features":[306]},{"name":"SYSTEM_ALARM_ACE","features":[306]},{"name":"SYSTEM_ALARM_CALLBACK_ACE","features":[306]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE","features":[306]},{"name":"SYSTEM_ALARM_OBJECT_ACE","features":[306]},{"name":"SYSTEM_AUDIT_ACE","features":[306]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE","features":[306]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE","features":[306]},{"name":"SYSTEM_AUDIT_OBJECT_ACE","features":[306]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_FLAGS","features":[306]},{"name":"SYSTEM_MANDATORY_LABEL_ACE","features":[306]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[306]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE","features":[306]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE","features":[306]},{"name":"SecurityAnonymous","features":[306]},{"name":"SecurityDelegation","features":[306]},{"name":"SecurityIdentification","features":[306]},{"name":"SecurityImpersonation","features":[306]},{"name":"SetAclInformation","features":[303,306]},{"name":"SetCachedSigningLevel","features":[303,306]},{"name":"SetFileSecurityA","features":[303,306]},{"name":"SetFileSecurityW","features":[303,306]},{"name":"SetKernelObjectSecurity","features":[303,306]},{"name":"SetPrivateObjectSecurity","features":[303,306]},{"name":"SetPrivateObjectSecurityEx","features":[303,306]},{"name":"SetSecurityAccessMask","features":[306]},{"name":"SetSecurityDescriptorControl","features":[303,306]},{"name":"SetSecurityDescriptorDacl","features":[303,306]},{"name":"SetSecurityDescriptorGroup","features":[303,306]},{"name":"SetSecurityDescriptorOwner","features":[303,306]},{"name":"SetSecurityDescriptorRMControl","features":[306]},{"name":"SetSecurityDescriptorSacl","features":[303,306]},{"name":"SetTokenInformation","features":[303,306]},{"name":"SetUserObjectSecurity","features":[303,306]},{"name":"SidTypeAlias","features":[306]},{"name":"SidTypeComputer","features":[306]},{"name":"SidTypeDeletedAccount","features":[306]},{"name":"SidTypeDomain","features":[306]},{"name":"SidTypeGroup","features":[306]},{"name":"SidTypeInvalid","features":[306]},{"name":"SidTypeLabel","features":[306]},{"name":"SidTypeLogonSession","features":[306]},{"name":"SidTypeUnknown","features":[306]},{"name":"SidTypeUser","features":[306]},{"name":"SidTypeWellKnownGroup","features":[306]},{"name":"TOKEN_ACCESS_INFORMATION","features":[303,306]},{"name":"TOKEN_ACCESS_MASK","features":[306]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE","features":[306]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE_WIN8","features":[306]},{"name":"TOKEN_ACCESS_SYSTEM_SECURITY","features":[306]},{"name":"TOKEN_ADJUST_DEFAULT","features":[306]},{"name":"TOKEN_ADJUST_GROUPS","features":[306]},{"name":"TOKEN_ADJUST_PRIVILEGES","features":[306]},{"name":"TOKEN_ADJUST_SESSIONID","features":[306]},{"name":"TOKEN_ALL_ACCESS","features":[306]},{"name":"TOKEN_APPCONTAINER_INFORMATION","features":[303,306]},{"name":"TOKEN_ASSIGN_PRIMARY","features":[306]},{"name":"TOKEN_AUDIT_POLICY","features":[306]},{"name":"TOKEN_CONTROL","features":[303,306]},{"name":"TOKEN_DEFAULT_DACL","features":[306]},{"name":"TOKEN_DELETE","features":[306]},{"name":"TOKEN_DEVICE_CLAIMS","features":[306]},{"name":"TOKEN_DUPLICATE","features":[306]},{"name":"TOKEN_ELEVATION","features":[306]},{"name":"TOKEN_ELEVATION_TYPE","features":[306]},{"name":"TOKEN_EXECUTE","features":[306]},{"name":"TOKEN_GROUPS","features":[303,306]},{"name":"TOKEN_GROUPS_AND_PRIVILEGES","features":[303,306]},{"name":"TOKEN_IMPERSONATE","features":[306]},{"name":"TOKEN_INFORMATION_CLASS","features":[306]},{"name":"TOKEN_LINKED_TOKEN","features":[303,306]},{"name":"TOKEN_MANDATORY_LABEL","features":[303,306]},{"name":"TOKEN_MANDATORY_POLICY","features":[306]},{"name":"TOKEN_MANDATORY_POLICY_ID","features":[306]},{"name":"TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN","features":[306]},{"name":"TOKEN_MANDATORY_POLICY_NO_WRITE_UP","features":[306]},{"name":"TOKEN_MANDATORY_POLICY_OFF","features":[306]},{"name":"TOKEN_MANDATORY_POLICY_VALID_MASK","features":[306]},{"name":"TOKEN_ORIGIN","features":[303,306]},{"name":"TOKEN_OWNER","features":[303,306]},{"name":"TOKEN_PRIMARY_GROUP","features":[303,306]},{"name":"TOKEN_PRIVILEGES","features":[303,306]},{"name":"TOKEN_PRIVILEGES_ATTRIBUTES","features":[306]},{"name":"TOKEN_QUERY","features":[306]},{"name":"TOKEN_QUERY_SOURCE","features":[306]},{"name":"TOKEN_READ","features":[306]},{"name":"TOKEN_READ_CONTROL","features":[306]},{"name":"TOKEN_SOURCE","features":[303,306]},{"name":"TOKEN_STATISTICS","features":[303,306]},{"name":"TOKEN_TRUST_CONSTRAINT_MASK","features":[306]},{"name":"TOKEN_TYPE","features":[306]},{"name":"TOKEN_USER","features":[303,306]},{"name":"TOKEN_USER_CLAIMS","features":[306]},{"name":"TOKEN_WRITE","features":[306]},{"name":"TOKEN_WRITE_DAC","features":[306]},{"name":"TOKEN_WRITE_OWNER","features":[306]},{"name":"TokenAccessInformation","features":[306]},{"name":"TokenAppContainerNumber","features":[306]},{"name":"TokenAppContainerSid","features":[306]},{"name":"TokenAuditPolicy","features":[306]},{"name":"TokenBnoIsolation","features":[306]},{"name":"TokenCapabilities","features":[306]},{"name":"TokenChildProcessFlags","features":[306]},{"name":"TokenDefaultDacl","features":[306]},{"name":"TokenDeviceClaimAttributes","features":[306]},{"name":"TokenDeviceGroups","features":[306]},{"name":"TokenElevation","features":[306]},{"name":"TokenElevationType","features":[306]},{"name":"TokenElevationTypeDefault","features":[306]},{"name":"TokenElevationTypeFull","features":[306]},{"name":"TokenElevationTypeLimited","features":[306]},{"name":"TokenGroups","features":[306]},{"name":"TokenGroupsAndPrivileges","features":[306]},{"name":"TokenHasRestrictions","features":[306]},{"name":"TokenImpersonation","features":[306]},{"name":"TokenImpersonationLevel","features":[306]},{"name":"TokenIntegrityLevel","features":[306]},{"name":"TokenIsAppContainer","features":[306]},{"name":"TokenIsAppSilo","features":[306]},{"name":"TokenIsLessPrivilegedAppContainer","features":[306]},{"name":"TokenIsRestricted","features":[306]},{"name":"TokenIsSandboxed","features":[306]},{"name":"TokenLinkedToken","features":[306]},{"name":"TokenLogonSid","features":[306]},{"name":"TokenMandatoryPolicy","features":[306]},{"name":"TokenOrigin","features":[306]},{"name":"TokenOwner","features":[306]},{"name":"TokenPrimary","features":[306]},{"name":"TokenPrimaryGroup","features":[306]},{"name":"TokenPrivateNameSpace","features":[306]},{"name":"TokenPrivileges","features":[306]},{"name":"TokenProcessTrustLevel","features":[306]},{"name":"TokenRestrictedDeviceClaimAttributes","features":[306]},{"name":"TokenRestrictedDeviceGroups","features":[306]},{"name":"TokenRestrictedSids","features":[306]},{"name":"TokenRestrictedUserClaimAttributes","features":[306]},{"name":"TokenSandBoxInert","features":[306]},{"name":"TokenSecurityAttributes","features":[306]},{"name":"TokenSessionId","features":[306]},{"name":"TokenSessionReference","features":[306]},{"name":"TokenSingletonAttributes","features":[306]},{"name":"TokenSource","features":[306]},{"name":"TokenStatistics","features":[306]},{"name":"TokenType","features":[306]},{"name":"TokenUIAccess","features":[306]},{"name":"TokenUser","features":[306]},{"name":"TokenUserClaimAttributes","features":[306]},{"name":"TokenVirtualizationAllowed","features":[306]},{"name":"TokenVirtualizationEnabled","features":[306]},{"name":"UNPROTECTED_DACL_SECURITY_INFORMATION","features":[306]},{"name":"UNPROTECTED_SACL_SECURITY_INFORMATION","features":[306]},{"name":"WELL_KNOWN_SID_TYPE","features":[306]},{"name":"WRITE_RESTRICTED","features":[306]},{"name":"WinAccountAdministratorSid","features":[306]},{"name":"WinAccountCertAdminsSid","features":[306]},{"name":"WinAccountCloneableControllersSid","features":[306]},{"name":"WinAccountComputersSid","features":[306]},{"name":"WinAccountControllersSid","features":[306]},{"name":"WinAccountDefaultSystemManagedSid","features":[306]},{"name":"WinAccountDomainAdminsSid","features":[306]},{"name":"WinAccountDomainGuestsSid","features":[306]},{"name":"WinAccountDomainUsersSid","features":[306]},{"name":"WinAccountEnterpriseAdminsSid","features":[306]},{"name":"WinAccountEnterpriseKeyAdminsSid","features":[306]},{"name":"WinAccountGuestSid","features":[306]},{"name":"WinAccountKeyAdminsSid","features":[306]},{"name":"WinAccountKrbtgtSid","features":[306]},{"name":"WinAccountPolicyAdminsSid","features":[306]},{"name":"WinAccountProtectedUsersSid","features":[306]},{"name":"WinAccountRasAndIasServersSid","features":[306]},{"name":"WinAccountReadonlyControllersSid","features":[306]},{"name":"WinAccountSchemaAdminsSid","features":[306]},{"name":"WinAnonymousSid","features":[306]},{"name":"WinApplicationPackageAuthoritySid","features":[306]},{"name":"WinAuthenticatedUserSid","features":[306]},{"name":"WinAuthenticationAuthorityAssertedSid","features":[306]},{"name":"WinAuthenticationFreshKeyAuthSid","features":[306]},{"name":"WinAuthenticationKeyPropertyAttestationSid","features":[306]},{"name":"WinAuthenticationKeyPropertyMFASid","features":[306]},{"name":"WinAuthenticationKeyTrustSid","features":[306]},{"name":"WinAuthenticationServiceAssertedSid","features":[306]},{"name":"WinBatchSid","features":[306]},{"name":"WinBuiltinAccessControlAssistanceOperatorsSid","features":[306]},{"name":"WinBuiltinAccountOperatorsSid","features":[306]},{"name":"WinBuiltinAdministratorsSid","features":[306]},{"name":"WinBuiltinAnyPackageSid","features":[306]},{"name":"WinBuiltinAuthorizationAccessSid","features":[306]},{"name":"WinBuiltinBackupOperatorsSid","features":[306]},{"name":"WinBuiltinCertSvcDComAccessGroup","features":[306]},{"name":"WinBuiltinCryptoOperatorsSid","features":[306]},{"name":"WinBuiltinDCOMUsersSid","features":[306]},{"name":"WinBuiltinDefaultSystemManagedGroupSid","features":[306]},{"name":"WinBuiltinDeviceOwnersSid","features":[306]},{"name":"WinBuiltinDomainSid","features":[306]},{"name":"WinBuiltinEventLogReadersGroup","features":[306]},{"name":"WinBuiltinGuestsSid","features":[306]},{"name":"WinBuiltinHyperVAdminsSid","features":[306]},{"name":"WinBuiltinIUsersSid","features":[306]},{"name":"WinBuiltinIncomingForestTrustBuildersSid","features":[306]},{"name":"WinBuiltinNetworkConfigurationOperatorsSid","features":[306]},{"name":"WinBuiltinPerfLoggingUsersSid","features":[306]},{"name":"WinBuiltinPerfMonitoringUsersSid","features":[306]},{"name":"WinBuiltinPowerUsersSid","features":[306]},{"name":"WinBuiltinPreWindows2000CompatibleAccessSid","features":[306]},{"name":"WinBuiltinPrintOperatorsSid","features":[306]},{"name":"WinBuiltinRDSEndpointServersSid","features":[306]},{"name":"WinBuiltinRDSManagementServersSid","features":[306]},{"name":"WinBuiltinRDSRemoteAccessServersSid","features":[306]},{"name":"WinBuiltinRemoteDesktopUsersSid","features":[306]},{"name":"WinBuiltinRemoteManagementUsersSid","features":[306]},{"name":"WinBuiltinReplicatorSid","features":[306]},{"name":"WinBuiltinStorageReplicaAdminsSid","features":[306]},{"name":"WinBuiltinSystemOperatorsSid","features":[306]},{"name":"WinBuiltinTerminalServerLicenseServersSid","features":[306]},{"name":"WinBuiltinUsersSid","features":[306]},{"name":"WinCacheablePrincipalsGroupSid","features":[306]},{"name":"WinCapabilityAppointmentsSid","features":[306]},{"name":"WinCapabilityContactsSid","features":[306]},{"name":"WinCapabilityDocumentsLibrarySid","features":[306]},{"name":"WinCapabilityEnterpriseAuthenticationSid","features":[306]},{"name":"WinCapabilityInternetClientServerSid","features":[306]},{"name":"WinCapabilityInternetClientSid","features":[306]},{"name":"WinCapabilityMusicLibrarySid","features":[306]},{"name":"WinCapabilityPicturesLibrarySid","features":[306]},{"name":"WinCapabilityPrivateNetworkClientServerSid","features":[306]},{"name":"WinCapabilityRemovableStorageSid","features":[306]},{"name":"WinCapabilitySharedUserCertificatesSid","features":[306]},{"name":"WinCapabilityVideosLibrarySid","features":[306]},{"name":"WinConsoleLogonSid","features":[306]},{"name":"WinCreatorGroupServerSid","features":[306]},{"name":"WinCreatorGroupSid","features":[306]},{"name":"WinCreatorOwnerRightsSid","features":[306]},{"name":"WinCreatorOwnerServerSid","features":[306]},{"name":"WinCreatorOwnerSid","features":[306]},{"name":"WinDialupSid","features":[306]},{"name":"WinDigestAuthenticationSid","features":[306]},{"name":"WinEnterpriseControllersSid","features":[306]},{"name":"WinEnterpriseReadonlyControllersSid","features":[306]},{"name":"WinHighLabelSid","features":[306]},{"name":"WinIUserSid","features":[306]},{"name":"WinInteractiveSid","features":[306]},{"name":"WinLocalAccountAndAdministratorSid","features":[306]},{"name":"WinLocalAccountSid","features":[306]},{"name":"WinLocalLogonSid","features":[306]},{"name":"WinLocalServiceSid","features":[306]},{"name":"WinLocalSid","features":[306]},{"name":"WinLocalSystemSid","features":[306]},{"name":"WinLogonIdsSid","features":[306]},{"name":"WinLowLabelSid","features":[306]},{"name":"WinMediumLabelSid","features":[306]},{"name":"WinMediumPlusLabelSid","features":[306]},{"name":"WinNTLMAuthenticationSid","features":[306]},{"name":"WinNetworkServiceSid","features":[306]},{"name":"WinNetworkSid","features":[306]},{"name":"WinNewEnterpriseReadonlyControllersSid","features":[306]},{"name":"WinNonCacheablePrincipalsGroupSid","features":[306]},{"name":"WinNtAuthoritySid","features":[306]},{"name":"WinNullSid","features":[306]},{"name":"WinOtherOrganizationSid","features":[306]},{"name":"WinProxySid","features":[306]},{"name":"WinRemoteLogonIdSid","features":[306]},{"name":"WinRestrictedCodeSid","features":[306]},{"name":"WinSChannelAuthenticationSid","features":[306]},{"name":"WinSelfSid","features":[306]},{"name":"WinServiceSid","features":[306]},{"name":"WinSystemLabelSid","features":[306]},{"name":"WinTerminalServerSid","features":[306]},{"name":"WinThisOrganizationCertificateSid","features":[306]},{"name":"WinThisOrganizationSid","features":[306]},{"name":"WinUntrustedLabelSid","features":[306]},{"name":"WinUserModeDriversSid","features":[306]},{"name":"WinWorldSid","features":[306]},{"name":"WinWriteRestrictedCodeSid","features":[306]},{"name":"cwcFILENAMESUFFIXMAX","features":[306]},{"name":"cwcHRESULTSTRING","features":[306]},{"name":"szLBRACE","features":[306]},{"name":"szLPAREN","features":[306]},{"name":"szRBRACE","features":[306]},{"name":"szRPAREN","features":[306]},{"name":"wszCERTENROLLSHAREPATH","features":[306]},{"name":"wszFCSAPARM_CERTFILENAMESUFFIX","features":[306]},{"name":"wszFCSAPARM_CONFIGDN","features":[306]},{"name":"wszFCSAPARM_CRLDELTAFILENAMESUFFIX","features":[306]},{"name":"wszFCSAPARM_CRLFILENAMESUFFIX","features":[306]},{"name":"wszFCSAPARM_DOMAINDN","features":[306]},{"name":"wszFCSAPARM_DSCACERTATTRIBUTE","features":[306]},{"name":"wszFCSAPARM_DSCRLATTRIBUTE","features":[306]},{"name":"wszFCSAPARM_DSCROSSCERTPAIRATTRIBUTE","features":[306]},{"name":"wszFCSAPARM_DSKRACERTATTRIBUTE","features":[306]},{"name":"wszFCSAPARM_DSUSERCERTATTRIBUTE","features":[306]},{"name":"wszFCSAPARM_SANITIZEDCANAME","features":[306]},{"name":"wszFCSAPARM_SANITIZEDCANAMEHASH","features":[306]},{"name":"wszFCSAPARM_SERVERDNSNAME","features":[306]},{"name":"wszFCSAPARM_SERVERSHORTNAME","features":[306]},{"name":"wszLBRACE","features":[306]},{"name":"wszLPAREN","features":[306]},{"name":"wszRBRACE","features":[306]},{"name":"wszRPAREN","features":[306]}],"480":[{"name":"SAFER_CODE_PROPERTIES_V1","features":[303,475,387]},{"name":"SAFER_CODE_PROPERTIES_V2","features":[303,475,387]},{"name":"SAFER_COMPUTE_TOKEN_FROM_LEVEL_FLAGS","features":[475]},{"name":"SAFER_CRITERIA_APPX_PACKAGE","features":[475]},{"name":"SAFER_CRITERIA_AUTHENTICODE","features":[475]},{"name":"SAFER_CRITERIA_IMAGEHASH","features":[475]},{"name":"SAFER_CRITERIA_IMAGEPATH","features":[475]},{"name":"SAFER_CRITERIA_IMAGEPATH_NT","features":[475]},{"name":"SAFER_CRITERIA_NOSIGNEDHASH","features":[475]},{"name":"SAFER_CRITERIA_URLZONE","features":[475]},{"name":"SAFER_HASH_IDENTIFICATION","features":[303,475,387]},{"name":"SAFER_HASH_IDENTIFICATION2","features":[303,475,387]},{"name":"SAFER_IDENTIFICATION_HEADER","features":[303,475]},{"name":"SAFER_IDENTIFICATION_TYPES","features":[475]},{"name":"SAFER_LEVELID_CONSTRAINED","features":[475]},{"name":"SAFER_LEVELID_DISALLOWED","features":[475]},{"name":"SAFER_LEVELID_FULLYTRUSTED","features":[475]},{"name":"SAFER_LEVELID_NORMALUSER","features":[475]},{"name":"SAFER_LEVELID_UNTRUSTED","features":[475]},{"name":"SAFER_LEVEL_OPEN","features":[475]},{"name":"SAFER_MAX_DESCRIPTION_SIZE","features":[475]},{"name":"SAFER_MAX_FRIENDLYNAME_SIZE","features":[475]},{"name":"SAFER_MAX_HASH_SIZE","features":[475]},{"name":"SAFER_OBJECT_INFO_CLASS","features":[475]},{"name":"SAFER_PATHNAME_IDENTIFICATION","features":[303,475]},{"name":"SAFER_POLICY_BLOCK_CLIENT_UI","features":[475]},{"name":"SAFER_POLICY_HASH_DUPLICATE","features":[475]},{"name":"SAFER_POLICY_INFO_CLASS","features":[475]},{"name":"SAFER_POLICY_JOBID_CONSTRAINED","features":[475]},{"name":"SAFER_POLICY_JOBID_MASK","features":[475]},{"name":"SAFER_POLICY_JOBID_UNTRUSTED","features":[475]},{"name":"SAFER_POLICY_ONLY_AUDIT","features":[475]},{"name":"SAFER_POLICY_ONLY_EXES","features":[475]},{"name":"SAFER_POLICY_SANDBOX_INERT","features":[475]},{"name":"SAFER_POLICY_UIFLAGS_HIDDEN","features":[475]},{"name":"SAFER_POLICY_UIFLAGS_INFORMATION_PROMPT","features":[475]},{"name":"SAFER_POLICY_UIFLAGS_MASK","features":[475]},{"name":"SAFER_POLICY_UIFLAGS_OPTION_PROMPT","features":[475]},{"name":"SAFER_SCOPEID_MACHINE","features":[475]},{"name":"SAFER_SCOPEID_USER","features":[475]},{"name":"SAFER_TOKEN_COMPARE_ONLY","features":[475]},{"name":"SAFER_TOKEN_MAKE_INERT","features":[475]},{"name":"SAFER_TOKEN_NULL_IF_EQUAL","features":[475]},{"name":"SAFER_TOKEN_WANT_FLAGS","features":[475]},{"name":"SAFER_URLZONE_IDENTIFICATION","features":[303,475]},{"name":"SRP_POLICY_APPX","features":[475]},{"name":"SRP_POLICY_DLL","features":[475]},{"name":"SRP_POLICY_EXE","features":[475]},{"name":"SRP_POLICY_MANAGEDINSTALLER","features":[475]},{"name":"SRP_POLICY_MSI","features":[475]},{"name":"SRP_POLICY_NOV2","features":[475]},{"name":"SRP_POLICY_SCRIPT","features":[475]},{"name":"SRP_POLICY_SHELL","features":[475]},{"name":"SRP_POLICY_WLDPCONFIGCI","features":[475]},{"name":"SRP_POLICY_WLDPMSI","features":[475]},{"name":"SRP_POLICY_WLDPSCRIPT","features":[475]},{"name":"SaferCloseLevel","features":[303,475]},{"name":"SaferComputeTokenFromLevel","features":[303,475]},{"name":"SaferCreateLevel","features":[303,475]},{"name":"SaferGetLevelInformation","features":[303,475]},{"name":"SaferGetPolicyInformation","features":[303,475]},{"name":"SaferIdentifyLevel","features":[303,475,387]},{"name":"SaferIdentityDefault","features":[475]},{"name":"SaferIdentityTypeCertificate","features":[475]},{"name":"SaferIdentityTypeImageHash","features":[475]},{"name":"SaferIdentityTypeImageName","features":[475]},{"name":"SaferIdentityTypeUrlZone","features":[475]},{"name":"SaferObjectAllIdentificationGuids","features":[475]},{"name":"SaferObjectBuiltin","features":[475]},{"name":"SaferObjectDefaultOwner","features":[475]},{"name":"SaferObjectDeletedPrivileges","features":[475]},{"name":"SaferObjectDescription","features":[475]},{"name":"SaferObjectDisableMaxPrivilege","features":[475]},{"name":"SaferObjectDisallowed","features":[475]},{"name":"SaferObjectExtendedError","features":[475]},{"name":"SaferObjectFriendlyName","features":[475]},{"name":"SaferObjectInvertDeletedPrivileges","features":[475]},{"name":"SaferObjectLevelId","features":[475]},{"name":"SaferObjectRestrictedSidsAdded","features":[475]},{"name":"SaferObjectRestrictedSidsInverted","features":[475]},{"name":"SaferObjectScopeId","features":[475]},{"name":"SaferObjectSidsToDisable","features":[475]},{"name":"SaferObjectSingleIdentification","features":[475]},{"name":"SaferPolicyAuthenticodeEnabled","features":[475]},{"name":"SaferPolicyDefaultLevel","features":[475]},{"name":"SaferPolicyDefaultLevelFlags","features":[475]},{"name":"SaferPolicyEnableTransparentEnforcement","features":[475]},{"name":"SaferPolicyEvaluateUserScope","features":[475]},{"name":"SaferPolicyLevelList","features":[475]},{"name":"SaferPolicyScopeFlags","features":[475]},{"name":"SaferRecordEventLogEntry","features":[303,475]},{"name":"SaferSetLevelInformation","features":[303,475]},{"name":"SaferSetPolicyInformation","features":[303,475]},{"name":"SaferiIsExecutableFileType","features":[303,475]}],"481":[{"name":"ACCEPT_SECURITY_CONTEXT_FN","features":[324,476]},{"name":"ACCOUNT_ADJUST_PRIVILEGES","features":[324]},{"name":"ACCOUNT_ADJUST_QUOTAS","features":[324]},{"name":"ACCOUNT_ADJUST_SYSTEM_ACCESS","features":[324]},{"name":"ACCOUNT_VIEW","features":[324]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_A","features":[324,476]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_W","features":[324,476]},{"name":"ADD_CREDENTIALS_FN_A","features":[324,476]},{"name":"ADD_CREDENTIALS_FN_W","features":[324,476]},{"name":"APPLY_CONTROL_TOKEN_FN","features":[324,476]},{"name":"ASC_REQ_ALLOCATE_MEMORY","features":[324]},{"name":"ASC_REQ_ALLOW_CONTEXT_REPLAY","features":[324]},{"name":"ASC_REQ_ALLOW_MISSING_BINDINGS","features":[324]},{"name":"ASC_REQ_ALLOW_NON_USER_LOGONS","features":[324]},{"name":"ASC_REQ_ALLOW_NULL_SESSION","features":[324]},{"name":"ASC_REQ_CALL_LEVEL","features":[324]},{"name":"ASC_REQ_CONFIDENTIALITY","features":[324]},{"name":"ASC_REQ_CONNECTION","features":[324]},{"name":"ASC_REQ_DATAGRAM","features":[324]},{"name":"ASC_REQ_DELEGATE","features":[324]},{"name":"ASC_REQ_EXTENDED_ERROR","features":[324]},{"name":"ASC_REQ_FLAGS","features":[324]},{"name":"ASC_REQ_FRAGMENT_SUPPLIED","features":[324]},{"name":"ASC_REQ_FRAGMENT_TO_FIT","features":[324]},{"name":"ASC_REQ_HIGH_FLAGS","features":[324]},{"name":"ASC_REQ_IDENTIFY","features":[324]},{"name":"ASC_REQ_INTEGRITY","features":[324]},{"name":"ASC_REQ_LICENSING","features":[324]},{"name":"ASC_REQ_MESSAGES","features":[324]},{"name":"ASC_REQ_MUTUAL_AUTH","features":[324]},{"name":"ASC_REQ_NO_TOKEN","features":[324]},{"name":"ASC_REQ_PROXY_BINDINGS","features":[324]},{"name":"ASC_REQ_REPLAY_DETECT","features":[324]},{"name":"ASC_REQ_SEQUENCE_DETECT","features":[324]},{"name":"ASC_REQ_SESSION_TICKET","features":[324]},{"name":"ASC_REQ_STREAM","features":[324]},{"name":"ASC_REQ_USE_DCE_STYLE","features":[324]},{"name":"ASC_REQ_USE_SESSION_KEY","features":[324]},{"name":"ASC_RET_ALLOCATED_MEMORY","features":[324]},{"name":"ASC_RET_ALLOW_CONTEXT_REPLAY","features":[324]},{"name":"ASC_RET_ALLOW_NON_USER_LOGONS","features":[324]},{"name":"ASC_RET_CALL_LEVEL","features":[324]},{"name":"ASC_RET_CONFIDENTIALITY","features":[324]},{"name":"ASC_RET_CONNECTION","features":[324]},{"name":"ASC_RET_DATAGRAM","features":[324]},{"name":"ASC_RET_DELEGATE","features":[324]},{"name":"ASC_RET_EXTENDED_ERROR","features":[324]},{"name":"ASC_RET_FRAGMENT_ONLY","features":[324]},{"name":"ASC_RET_IDENTIFY","features":[324]},{"name":"ASC_RET_INTEGRITY","features":[324]},{"name":"ASC_RET_LICENSING","features":[324]},{"name":"ASC_RET_MESSAGES","features":[324]},{"name":"ASC_RET_MUTUAL_AUTH","features":[324]},{"name":"ASC_RET_NO_ADDITIONAL_TOKEN","features":[324]},{"name":"ASC_RET_NO_TOKEN","features":[324]},{"name":"ASC_RET_NULL_SESSION","features":[324]},{"name":"ASC_RET_REPLAY_DETECT","features":[324]},{"name":"ASC_RET_SEQUENCE_DETECT","features":[324]},{"name":"ASC_RET_SESSION_TICKET","features":[324]},{"name":"ASC_RET_STREAM","features":[324]},{"name":"ASC_RET_THIRD_LEG_FAILED","features":[324]},{"name":"ASC_RET_USED_DCE_STYLE","features":[324]},{"name":"ASC_RET_USE_SESSION_KEY","features":[324]},{"name":"AUDIT_ENUMERATE_USERS","features":[324]},{"name":"AUDIT_POLICY_INFORMATION","features":[324]},{"name":"AUDIT_QUERY_MISC_POLICY","features":[324]},{"name":"AUDIT_QUERY_SYSTEM_POLICY","features":[324]},{"name":"AUDIT_QUERY_USER_POLICY","features":[324]},{"name":"AUDIT_SET_MISC_POLICY","features":[324]},{"name":"AUDIT_SET_SYSTEM_POLICY","features":[324]},{"name":"AUDIT_SET_USER_POLICY","features":[324]},{"name":"AUTH_REQ_ALLOW_ENC_TKT_IN_SKEY","features":[324]},{"name":"AUTH_REQ_ALLOW_FORWARDABLE","features":[324]},{"name":"AUTH_REQ_ALLOW_NOADDRESS","features":[324]},{"name":"AUTH_REQ_ALLOW_POSTDATE","features":[324]},{"name":"AUTH_REQ_ALLOW_PROXIABLE","features":[324]},{"name":"AUTH_REQ_ALLOW_RENEWABLE","features":[324]},{"name":"AUTH_REQ_ALLOW_S4U_DELEGATE","features":[324]},{"name":"AUTH_REQ_ALLOW_VALIDATE","features":[324]},{"name":"AUTH_REQ_OK_AS_DELEGATE","features":[324]},{"name":"AUTH_REQ_PREAUTH_REQUIRED","features":[324]},{"name":"AUTH_REQ_TRANSITIVE_TRUST","features":[324]},{"name":"AUTH_REQ_VALIDATE_CLIENT","features":[324]},{"name":"AcceptSecurityContext","features":[324,476]},{"name":"AccountDomainInformation","features":[324]},{"name":"AcquireCredentialsHandleA","features":[324,476]},{"name":"AcquireCredentialsHandleW","features":[324,476]},{"name":"AddCredentialsA","features":[324,476]},{"name":"AddCredentialsW","features":[324,476]},{"name":"AddSecurityPackageA","features":[324]},{"name":"AddSecurityPackageW","features":[324]},{"name":"ApplyControlToken","features":[324,476]},{"name":"AuditCategoryAccountLogon","features":[324]},{"name":"AuditCategoryAccountManagement","features":[324]},{"name":"AuditCategoryDetailedTracking","features":[324]},{"name":"AuditCategoryDirectoryServiceAccess","features":[324]},{"name":"AuditCategoryLogon","features":[324]},{"name":"AuditCategoryObjectAccess","features":[324]},{"name":"AuditCategoryPolicyChange","features":[324]},{"name":"AuditCategoryPrivilegeUse","features":[324]},{"name":"AuditCategorySystem","features":[324]},{"name":"AuditComputeEffectivePolicyBySid","features":[303,324]},{"name":"AuditComputeEffectivePolicyByToken","features":[303,324]},{"name":"AuditEnumerateCategories","features":[303,324]},{"name":"AuditEnumeratePerUserPolicy","features":[303,324]},{"name":"AuditEnumerateSubCategories","features":[303,324]},{"name":"AuditFree","features":[324]},{"name":"AuditLookupCategoryGuidFromCategoryId","features":[303,324]},{"name":"AuditLookupCategoryIdFromCategoryGuid","features":[303,324]},{"name":"AuditLookupCategoryNameA","features":[303,324]},{"name":"AuditLookupCategoryNameW","features":[303,324]},{"name":"AuditLookupSubCategoryNameA","features":[303,324]},{"name":"AuditLookupSubCategoryNameW","features":[303,324]},{"name":"AuditQueryGlobalSaclA","features":[303,324]},{"name":"AuditQueryGlobalSaclW","features":[303,324]},{"name":"AuditQueryPerUserPolicy","features":[303,324]},{"name":"AuditQuerySecurity","features":[303,324]},{"name":"AuditQuerySystemPolicy","features":[303,324]},{"name":"AuditSetGlobalSaclA","features":[303,324]},{"name":"AuditSetGlobalSaclW","features":[303,324]},{"name":"AuditSetPerUserPolicy","features":[303,324]},{"name":"AuditSetSecurity","features":[303,324]},{"name":"AuditSetSystemPolicy","features":[303,324]},{"name":"Audit_AccountLogon","features":[324]},{"name":"Audit_AccountLogon_CredentialValidation","features":[324]},{"name":"Audit_AccountLogon_KerbCredentialValidation","features":[324]},{"name":"Audit_AccountLogon_Kerberos","features":[324]},{"name":"Audit_AccountLogon_Others","features":[324]},{"name":"Audit_AccountManagement","features":[324]},{"name":"Audit_AccountManagement_ApplicationGroup","features":[324]},{"name":"Audit_AccountManagement_ComputerAccount","features":[324]},{"name":"Audit_AccountManagement_DistributionGroup","features":[324]},{"name":"Audit_AccountManagement_Others","features":[324]},{"name":"Audit_AccountManagement_SecurityGroup","features":[324]},{"name":"Audit_AccountManagement_UserAccount","features":[324]},{"name":"Audit_DSAccess_DSAccess","features":[324]},{"name":"Audit_DetailedTracking","features":[324]},{"name":"Audit_DetailedTracking_DpapiActivity","features":[324]},{"name":"Audit_DetailedTracking_PnpActivity","features":[324]},{"name":"Audit_DetailedTracking_ProcessCreation","features":[324]},{"name":"Audit_DetailedTracking_ProcessTermination","features":[324]},{"name":"Audit_DetailedTracking_RpcCall","features":[324]},{"name":"Audit_DetailedTracking_TokenRightAdjusted","features":[324]},{"name":"Audit_DirectoryServiceAccess","features":[324]},{"name":"Audit_DsAccess_AdAuditChanges","features":[324]},{"name":"Audit_Ds_DetailedReplication","features":[324]},{"name":"Audit_Ds_Replication","features":[324]},{"name":"Audit_Logon","features":[324]},{"name":"Audit_Logon_AccountLockout","features":[324]},{"name":"Audit_Logon_Claims","features":[324]},{"name":"Audit_Logon_Groups","features":[324]},{"name":"Audit_Logon_IPSecMainMode","features":[324]},{"name":"Audit_Logon_IPSecQuickMode","features":[324]},{"name":"Audit_Logon_IPSecUserMode","features":[324]},{"name":"Audit_Logon_Logoff","features":[324]},{"name":"Audit_Logon_Logon","features":[324]},{"name":"Audit_Logon_NPS","features":[324]},{"name":"Audit_Logon_Others","features":[324]},{"name":"Audit_Logon_SpecialLogon","features":[324]},{"name":"Audit_ObjectAccess","features":[324]},{"name":"Audit_ObjectAccess_ApplicationGenerated","features":[324]},{"name":"Audit_ObjectAccess_CbacStaging","features":[324]},{"name":"Audit_ObjectAccess_CertificationServices","features":[324]},{"name":"Audit_ObjectAccess_DetailedFileShare","features":[324]},{"name":"Audit_ObjectAccess_FileSystem","features":[324]},{"name":"Audit_ObjectAccess_FirewallConnection","features":[324]},{"name":"Audit_ObjectAccess_FirewallPacketDrops","features":[324]},{"name":"Audit_ObjectAccess_Handle","features":[324]},{"name":"Audit_ObjectAccess_Kernel","features":[324]},{"name":"Audit_ObjectAccess_Other","features":[324]},{"name":"Audit_ObjectAccess_Registry","features":[324]},{"name":"Audit_ObjectAccess_RemovableStorage","features":[324]},{"name":"Audit_ObjectAccess_Sam","features":[324]},{"name":"Audit_ObjectAccess_Share","features":[324]},{"name":"Audit_PolicyChange","features":[324]},{"name":"Audit_PolicyChange_AuditPolicy","features":[324]},{"name":"Audit_PolicyChange_AuthenticationPolicy","features":[324]},{"name":"Audit_PolicyChange_AuthorizationPolicy","features":[324]},{"name":"Audit_PolicyChange_MpsscvRulePolicy","features":[324]},{"name":"Audit_PolicyChange_Others","features":[324]},{"name":"Audit_PolicyChange_WfpIPSecPolicy","features":[324]},{"name":"Audit_PrivilegeUse","features":[324]},{"name":"Audit_PrivilegeUse_NonSensitive","features":[324]},{"name":"Audit_PrivilegeUse_Others","features":[324]},{"name":"Audit_PrivilegeUse_Sensitive","features":[324]},{"name":"Audit_System","features":[324]},{"name":"Audit_System_IPSecDriverEvents","features":[324]},{"name":"Audit_System_Integrity","features":[324]},{"name":"Audit_System_Others","features":[324]},{"name":"Audit_System_SecurityStateChange","features":[324]},{"name":"Audit_System_SecuritySubsystemExtension","features":[324]},{"name":"CENTRAL_ACCESS_POLICY","features":[303,324]},{"name":"CENTRAL_ACCESS_POLICY_ENTRY","features":[324]},{"name":"CENTRAL_ACCESS_POLICY_OWNER_RIGHTS_PRESENT_FLAG","features":[324]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_FLAG","features":[324]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_OWNER_RIGHTS_PRESENT_FLAG","features":[324]},{"name":"CHANGE_PASSWORD_FN_A","features":[303,324]},{"name":"CHANGE_PASSWORD_FN_W","features":[303,324]},{"name":"CLEAR_BLOCK","features":[324]},{"name":"CLEAR_BLOCK_LENGTH","features":[324]},{"name":"CLOUDAP_NAME","features":[324]},{"name":"CLOUDAP_NAME_W","features":[324]},{"name":"COMPLETE_AUTH_TOKEN_FN","features":[324,476]},{"name":"CREDP_FLAGS_CLEAR_PASSWORD","features":[324]},{"name":"CREDP_FLAGS_DONT_CACHE_TI","features":[324]},{"name":"CREDP_FLAGS_IN_PROCESS","features":[324]},{"name":"CREDP_FLAGS_TRUSTED_CALLER","features":[324]},{"name":"CREDP_FLAGS_USER_ENCRYPTED_PASSWORD","features":[324]},{"name":"CREDP_FLAGS_USE_MIDL_HEAP","features":[324]},{"name":"CREDP_FLAGS_VALIDATE_PROXY_TARGET","features":[324]},{"name":"CRED_FETCH","features":[324]},{"name":"CRED_MARSHALED_TI_SIZE_SIZE","features":[324]},{"name":"CRYPTO_SETTINGS","features":[324]},{"name":"CYPHER_BLOCK_LENGTH","features":[324]},{"name":"CertHashInfo","features":[324]},{"name":"ChangeAccountPasswordA","features":[303,324]},{"name":"ChangeAccountPasswordW","features":[303,324]},{"name":"ClOUDAP_NAME_A","features":[324]},{"name":"CollisionOther","features":[324]},{"name":"CollisionTdo","features":[324]},{"name":"CollisionXref","features":[324]},{"name":"CompleteAuthToken","features":[324,476]},{"name":"CredFetchDPAPI","features":[324]},{"name":"CredFetchDefault","features":[324]},{"name":"CredFetchForced","features":[324]},{"name":"CredFreeCredentialsFn","features":[303,324,476]},{"name":"CredMarshalTargetInfo","features":[303,324,476]},{"name":"CredReadDomainCredentialsFn","features":[303,324,476]},{"name":"CredReadFn","features":[303,324,476]},{"name":"CredUnmarshalTargetInfo","features":[303,324,476]},{"name":"CredWriteFn","features":[303,324,476]},{"name":"CrediUnmarshalandDecodeStringFn","features":[303,324]},{"name":"DECRYPT_MESSAGE_FN","features":[324,476]},{"name":"DEFAULT_TLS_SSP_NAME","features":[324]},{"name":"DEFAULT_TLS_SSP_NAME_A","features":[324]},{"name":"DEFAULT_TLS_SSP_NAME_W","features":[324]},{"name":"DELETE_SECURITY_CONTEXT_FN","features":[324,476]},{"name":"DOMAIN_LOCKOUT_ADMINS","features":[324]},{"name":"DOMAIN_NO_LM_OWF_CHANGE","features":[324]},{"name":"DOMAIN_PASSWORD_COMPLEX","features":[324]},{"name":"DOMAIN_PASSWORD_INFORMATION","features":[324]},{"name":"DOMAIN_PASSWORD_NO_ANON_CHANGE","features":[324]},{"name":"DOMAIN_PASSWORD_NO_CLEAR_CHANGE","features":[324]},{"name":"DOMAIN_PASSWORD_PROPERTIES","features":[324]},{"name":"DOMAIN_PASSWORD_STORE_CLEARTEXT","features":[324]},{"name":"DOMAIN_REFUSE_PASSWORD_CHANGE","features":[324]},{"name":"DS_INET_ADDRESS","features":[324]},{"name":"DS_NETBIOS_ADDRESS","features":[324]},{"name":"DS_UNKNOWN_ADDRESS_TYPE","features":[324]},{"name":"DecryptMessage","features":[324,476]},{"name":"DeleteSecurityContext","features":[324,476]},{"name":"DeleteSecurityPackageA","features":[324]},{"name":"DeleteSecurityPackageW","features":[324]},{"name":"DeprecatedIUMCredKey","features":[324]},{"name":"DnsDomainInformation","features":[324]},{"name":"DomainUserCredKey","features":[324]},{"name":"ENABLE_TLS_CLIENT_EARLY_START","features":[324]},{"name":"ENCRYPTED_CREDENTIALW","features":[303,324,476]},{"name":"ENCRYPT_MESSAGE_FN","features":[324,476]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_A","features":[324]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_W","features":[324]},{"name":"EXPORT_SECURITY_CONTEXT_FLAGS","features":[324]},{"name":"EXPORT_SECURITY_CONTEXT_FN","features":[324,476]},{"name":"EXTENDED_NAME_FORMAT","features":[324]},{"name":"E_RM_UNKNOWN_ERROR","features":[324]},{"name":"EncryptMessage","features":[324,476]},{"name":"EnumerateSecurityPackagesA","features":[324]},{"name":"EnumerateSecurityPackagesW","features":[324]},{"name":"ExportSecurityContext","features":[324,476]},{"name":"ExternallySuppliedCredKey","features":[324]},{"name":"FACILITY_SL_ITF","features":[324]},{"name":"FREE_CONTEXT_BUFFER_FN","features":[324]},{"name":"FREE_CREDENTIALS_HANDLE_FN","features":[324,476]},{"name":"ForestTrustBinaryInfo","features":[324]},{"name":"ForestTrustDomainInfo","features":[324]},{"name":"ForestTrustRecordTypeLast","features":[324]},{"name":"ForestTrustScannerInfo","features":[324]},{"name":"ForestTrustTopLevelName","features":[324]},{"name":"ForestTrustTopLevelNameEx","features":[324]},{"name":"FreeContextBuffer","features":[324]},{"name":"FreeCredentialsHandle","features":[324,476]},{"name":"GetComputerObjectNameA","features":[303,324]},{"name":"GetComputerObjectNameW","features":[303,324]},{"name":"GetUserNameExA","features":[303,324]},{"name":"GetUserNameExW","features":[303,324]},{"name":"ICcgDomainAuthCredentials","features":[324]},{"name":"ID_CAP_SLAPI","features":[324]},{"name":"IMPERSONATE_SECURITY_CONTEXT_FN","features":[324,476]},{"name":"IMPORT_SECURITY_CONTEXT_FN_A","features":[324,476]},{"name":"IMPORT_SECURITY_CONTEXT_FN_W","features":[324,476]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_A","features":[324,476]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_W","features":[324,476]},{"name":"INIT_SECURITY_INTERFACE_A","features":[303,324,476]},{"name":"INIT_SECURITY_INTERFACE_W","features":[303,324,476]},{"name":"ISC_REQ_ALLOCATE_MEMORY","features":[324]},{"name":"ISC_REQ_CALL_LEVEL","features":[324]},{"name":"ISC_REQ_CONFIDENTIALITY","features":[324]},{"name":"ISC_REQ_CONFIDENTIALITY_ONLY","features":[324]},{"name":"ISC_REQ_CONNECTION","features":[324]},{"name":"ISC_REQ_DATAGRAM","features":[324]},{"name":"ISC_REQ_DEFERRED_CRED_VALIDATION","features":[324]},{"name":"ISC_REQ_DELEGATE","features":[324]},{"name":"ISC_REQ_EXTENDED_ERROR","features":[324]},{"name":"ISC_REQ_FLAGS","features":[324]},{"name":"ISC_REQ_FORWARD_CREDENTIALS","features":[324]},{"name":"ISC_REQ_FRAGMENT_SUPPLIED","features":[324]},{"name":"ISC_REQ_FRAGMENT_TO_FIT","features":[324]},{"name":"ISC_REQ_HIGH_FLAGS","features":[324]},{"name":"ISC_REQ_IDENTIFY","features":[324]},{"name":"ISC_REQ_INTEGRITY","features":[324]},{"name":"ISC_REQ_MANUAL_CRED_VALIDATION","features":[324]},{"name":"ISC_REQ_MESSAGES","features":[324]},{"name":"ISC_REQ_MUTUAL_AUTH","features":[324]},{"name":"ISC_REQ_NO_INTEGRITY","features":[324]},{"name":"ISC_REQ_NO_POST_HANDSHAKE_AUTH","features":[324]},{"name":"ISC_REQ_NULL_SESSION","features":[324]},{"name":"ISC_REQ_PROMPT_FOR_CREDS","features":[324]},{"name":"ISC_REQ_REPLAY_DETECT","features":[324]},{"name":"ISC_REQ_RESERVED1","features":[324]},{"name":"ISC_REQ_SEQUENCE_DETECT","features":[324]},{"name":"ISC_REQ_STREAM","features":[324]},{"name":"ISC_REQ_UNVERIFIED_TARGET_NAME","features":[324]},{"name":"ISC_REQ_USE_DCE_STYLE","features":[324]},{"name":"ISC_REQ_USE_HTTP_STYLE","features":[324]},{"name":"ISC_REQ_USE_SESSION_KEY","features":[324]},{"name":"ISC_REQ_USE_SUPPLIED_CREDS","features":[324]},{"name":"ISC_RET_ALLOCATED_MEMORY","features":[324]},{"name":"ISC_RET_CALL_LEVEL","features":[324]},{"name":"ISC_RET_CONFIDENTIALITY","features":[324]},{"name":"ISC_RET_CONFIDENTIALITY_ONLY","features":[324]},{"name":"ISC_RET_CONNECTION","features":[324]},{"name":"ISC_RET_DATAGRAM","features":[324]},{"name":"ISC_RET_DEFERRED_CRED_VALIDATION","features":[324]},{"name":"ISC_RET_DELEGATE","features":[324]},{"name":"ISC_RET_EXTENDED_ERROR","features":[324]},{"name":"ISC_RET_FORWARD_CREDENTIALS","features":[324]},{"name":"ISC_RET_FRAGMENT_ONLY","features":[324]},{"name":"ISC_RET_IDENTIFY","features":[324]},{"name":"ISC_RET_INTEGRITY","features":[324]},{"name":"ISC_RET_INTERMEDIATE_RETURN","features":[324]},{"name":"ISC_RET_MANUAL_CRED_VALIDATION","features":[324]},{"name":"ISC_RET_MESSAGES","features":[324]},{"name":"ISC_RET_MUTUAL_AUTH","features":[324]},{"name":"ISC_RET_NO_ADDITIONAL_TOKEN","features":[324]},{"name":"ISC_RET_NO_POST_HANDSHAKE_AUTH","features":[324]},{"name":"ISC_RET_NULL_SESSION","features":[324]},{"name":"ISC_RET_REAUTHENTICATION","features":[324]},{"name":"ISC_RET_REPLAY_DETECT","features":[324]},{"name":"ISC_RET_RESERVED1","features":[324]},{"name":"ISC_RET_SEQUENCE_DETECT","features":[324]},{"name":"ISC_RET_STREAM","features":[324]},{"name":"ISC_RET_USED_COLLECTED_CREDS","features":[324]},{"name":"ISC_RET_USED_DCE_STYLE","features":[324]},{"name":"ISC_RET_USED_HTTP_STYLE","features":[324]},{"name":"ISC_RET_USED_SUPPLIED_CREDS","features":[324]},{"name":"ISC_RET_USE_SESSION_KEY","features":[324]},{"name":"ISSP_LEVEL","features":[324]},{"name":"ISSP_MODE","features":[324]},{"name":"ImpersonateSecurityContext","features":[324,476]},{"name":"ImportSecurityContextA","features":[324,476]},{"name":"ImportSecurityContextW","features":[324,476]},{"name":"InitSecurityInterfaceA","features":[303,324,476]},{"name":"InitSecurityInterfaceW","features":[303,324,476]},{"name":"InitializeSecurityContextA","features":[324,476]},{"name":"InitializeSecurityContextW","features":[324,476]},{"name":"InvalidCredKey","features":[324]},{"name":"KDC_PROXY_CACHE_ENTRY_DATA","features":[303,324]},{"name":"KDC_PROXY_SETTINGS_FLAGS_FORCEPROXY","features":[324]},{"name":"KDC_PROXY_SETTINGS_V1","features":[324]},{"name":"KERBEROS_REVISION","features":[324]},{"name":"KERBEROS_VERSION","features":[324]},{"name":"KERB_ADDRESS_TYPE","features":[324]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_EX_REQUEST","features":[324]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_REQUEST","features":[324]},{"name":"KERB_ADD_CREDENTIALS_REQUEST","features":[303,324]},{"name":"KERB_ADD_CREDENTIALS_REQUEST_EX","features":[303,324]},{"name":"KERB_AUTH_DATA","features":[324]},{"name":"KERB_BINDING_CACHE_ENTRY_DATA","features":[324]},{"name":"KERB_CERTIFICATE_HASHINFO","features":[324]},{"name":"KERB_CERTIFICATE_INFO","features":[324]},{"name":"KERB_CERTIFICATE_INFO_TYPE","features":[324]},{"name":"KERB_CERTIFICATE_LOGON","features":[324]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[324]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[324]},{"name":"KERB_CERTIFICATE_S4U_LOGON","features":[324]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_DUPLICATES","features":[324]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[324]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_FAIL_IF_NT_AUTH_POLICY_REQUIRED","features":[324]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_IDENTIFY","features":[324]},{"name":"KERB_CERTIFICATE_UNLOCK_LOGON","features":[303,324]},{"name":"KERB_CHANGEPASSWORD_REQUEST","features":[303,324]},{"name":"KERB_CHECKSUM_CRC32","features":[324]},{"name":"KERB_CHECKSUM_DES_MAC","features":[324]},{"name":"KERB_CHECKSUM_DES_MAC_MD5","features":[324]},{"name":"KERB_CHECKSUM_HMAC_MD5","features":[324]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128","features":[324]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128_Ki","features":[324]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256","features":[324]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256_Ki","features":[324]},{"name":"KERB_CHECKSUM_KRB_DES_MAC","features":[324]},{"name":"KERB_CHECKSUM_KRB_DES_MAC_K","features":[324]},{"name":"KERB_CHECKSUM_LM","features":[324]},{"name":"KERB_CHECKSUM_MD25","features":[324]},{"name":"KERB_CHECKSUM_MD4","features":[324]},{"name":"KERB_CHECKSUM_MD5","features":[324]},{"name":"KERB_CHECKSUM_MD5_DES","features":[324]},{"name":"KERB_CHECKSUM_MD5_HMAC","features":[324]},{"name":"KERB_CHECKSUM_NONE","features":[324]},{"name":"KERB_CHECKSUM_RC4_MD5","features":[324]},{"name":"KERB_CHECKSUM_REAL_CRC32","features":[324]},{"name":"KERB_CHECKSUM_SHA1","features":[324]},{"name":"KERB_CHECKSUM_SHA1_NEW","features":[324]},{"name":"KERB_CHECKSUM_SHA256","features":[324]},{"name":"KERB_CHECKSUM_SHA384","features":[324]},{"name":"KERB_CHECKSUM_SHA512","features":[324]},{"name":"KERB_CLEANUP_MACHINE_PKINIT_CREDS_REQUEST","features":[303,324]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA","features":[324]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_V0","features":[324]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_VERSION","features":[324]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_REQUEST","features":[303,324]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_RESPONSE","features":[324]},{"name":"KERB_CRYPTO_KEY","features":[324]},{"name":"KERB_CRYPTO_KEY32","features":[324]},{"name":"KERB_CRYPTO_KEY_TYPE","features":[324]},{"name":"KERB_DECRYPT_FLAG_DEFAULT_KEY","features":[324]},{"name":"KERB_DECRYPT_REQUEST","features":[303,324]},{"name":"KERB_DECRYPT_RESPONSE","features":[324]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96","features":[324]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96_PLAIN","features":[324]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96","features":[324]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96_PLAIN","features":[324]},{"name":"KERB_ETYPE_DEFAULT","features":[324]},{"name":"KERB_ETYPE_DES3_CBC_MD5","features":[324]},{"name":"KERB_ETYPE_DES3_CBC_SHA1","features":[324]},{"name":"KERB_ETYPE_DES3_CBC_SHA1_KD","features":[324]},{"name":"KERB_ETYPE_DES_CBC_CRC","features":[324]},{"name":"KERB_ETYPE_DES_CBC_MD4","features":[324]},{"name":"KERB_ETYPE_DES_CBC_MD5","features":[324]},{"name":"KERB_ETYPE_DES_CBC_MD5_NT","features":[324]},{"name":"KERB_ETYPE_DES_EDE3_CBC_ENV","features":[324]},{"name":"KERB_ETYPE_DES_PLAIN","features":[324]},{"name":"KERB_ETYPE_DSA_SHA1_CMS","features":[324]},{"name":"KERB_ETYPE_DSA_SIGN","features":[324]},{"name":"KERB_ETYPE_NULL","features":[324]},{"name":"KERB_ETYPE_PKCS7_PUB","features":[324]},{"name":"KERB_ETYPE_RC2_CBC_ENV","features":[324]},{"name":"KERB_ETYPE_RC4_HMAC_NT","features":[324]},{"name":"KERB_ETYPE_RC4_HMAC_NT_EXP","features":[324]},{"name":"KERB_ETYPE_RC4_HMAC_OLD","features":[324]},{"name":"KERB_ETYPE_RC4_HMAC_OLD_EXP","features":[324]},{"name":"KERB_ETYPE_RC4_LM","features":[324]},{"name":"KERB_ETYPE_RC4_MD4","features":[324]},{"name":"KERB_ETYPE_RC4_PLAIN","features":[324]},{"name":"KERB_ETYPE_RC4_PLAIN2","features":[324]},{"name":"KERB_ETYPE_RC4_PLAIN_EXP","features":[324]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD","features":[324]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD_EXP","features":[324]},{"name":"KERB_ETYPE_RC4_SHA","features":[324]},{"name":"KERB_ETYPE_RSA_ENV","features":[324]},{"name":"KERB_ETYPE_RSA_ES_OEAP_ENV","features":[324]},{"name":"KERB_ETYPE_RSA_MD5_CMS","features":[324]},{"name":"KERB_ETYPE_RSA_PRIV","features":[324]},{"name":"KERB_ETYPE_RSA_PUB","features":[324]},{"name":"KERB_ETYPE_RSA_PUB_MD5","features":[324]},{"name":"KERB_ETYPE_RSA_PUB_SHA1","features":[324]},{"name":"KERB_ETYPE_RSA_SHA1_CMS","features":[324]},{"name":"KERB_EXTERNAL_NAME","features":[324]},{"name":"KERB_EXTERNAL_TICKET","features":[324]},{"name":"KERB_INTERACTIVE_LOGON","features":[324]},{"name":"KERB_INTERACTIVE_PROFILE","features":[324]},{"name":"KERB_INTERACTIVE_UNLOCK_LOGON","features":[303,324]},{"name":"KERB_LOGON_FLAG_ALLOW_EXPIRED_TICKET","features":[324]},{"name":"KERB_LOGON_FLAG_REDIRECTED","features":[324]},{"name":"KERB_LOGON_SUBMIT_TYPE","features":[324]},{"name":"KERB_NET_ADDRESS","features":[324]},{"name":"KERB_NET_ADDRESSES","features":[324]},{"name":"KERB_PROFILE_BUFFER_TYPE","features":[324]},{"name":"KERB_PROTOCOL_MESSAGE_TYPE","features":[324]},{"name":"KERB_PURGE_ALL_TICKETS","features":[324]},{"name":"KERB_PURGE_BINDING_CACHE_REQUEST","features":[324]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_REQUEST","features":[303,324]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_RESPONSE","features":[324]},{"name":"KERB_PURGE_TKT_CACHE_EX_REQUEST","features":[303,324]},{"name":"KERB_PURGE_TKT_CACHE_REQUEST","features":[303,324]},{"name":"KERB_QUERY_BINDING_CACHE_REQUEST","features":[324]},{"name":"KERB_QUERY_BINDING_CACHE_RESPONSE","features":[324]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_REQUEST","features":[324]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE","features":[324]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE_FLAG_DAC_DISABLED","features":[324]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_REQUEST","features":[303,324]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_RESPONSE","features":[303,324]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_REQUEST","features":[303,324]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_RESPONSE","features":[303,324]},{"name":"KERB_QUERY_TKT_CACHE_EX2_RESPONSE","features":[324]},{"name":"KERB_QUERY_TKT_CACHE_EX3_RESPONSE","features":[324]},{"name":"KERB_QUERY_TKT_CACHE_EX_RESPONSE","features":[324]},{"name":"KERB_QUERY_TKT_CACHE_REQUEST","features":[303,324]},{"name":"KERB_QUERY_TKT_CACHE_RESPONSE","features":[324]},{"name":"KERB_REFRESH_POLICY_KDC","features":[324]},{"name":"KERB_REFRESH_POLICY_KERBEROS","features":[324]},{"name":"KERB_REFRESH_POLICY_REQUEST","features":[324]},{"name":"KERB_REFRESH_POLICY_RESPONSE","features":[324]},{"name":"KERB_REFRESH_SCCRED_GETTGT","features":[324]},{"name":"KERB_REFRESH_SCCRED_RELEASE","features":[324]},{"name":"KERB_REFRESH_SCCRED_REQUEST","features":[303,324]},{"name":"KERB_REQUEST_ADD_CREDENTIAL","features":[324]},{"name":"KERB_REQUEST_FLAGS","features":[324]},{"name":"KERB_REQUEST_REMOVE_CREDENTIAL","features":[324]},{"name":"KERB_REQUEST_REPLACE_CREDENTIAL","features":[324]},{"name":"KERB_RETRIEVE_KEY_TAB_REQUEST","features":[324]},{"name":"KERB_RETRIEVE_KEY_TAB_RESPONSE","features":[324]},{"name":"KERB_RETRIEVE_TICKET_AS_KERB_CRED","features":[324]},{"name":"KERB_RETRIEVE_TICKET_CACHE_TICKET","features":[324]},{"name":"KERB_RETRIEVE_TICKET_DEFAULT","features":[324]},{"name":"KERB_RETRIEVE_TICKET_DONT_USE_CACHE","features":[324]},{"name":"KERB_RETRIEVE_TICKET_MAX_LIFETIME","features":[324]},{"name":"KERB_RETRIEVE_TICKET_USE_CACHE_ONLY","features":[324]},{"name":"KERB_RETRIEVE_TICKET_USE_CREDHANDLE","features":[324]},{"name":"KERB_RETRIEVE_TICKET_WITH_SEC_CRED","features":[324]},{"name":"KERB_RETRIEVE_TKT_REQUEST","features":[303,324,476]},{"name":"KERB_RETRIEVE_TKT_RESPONSE","features":[324]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO","features":[303,324]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO_FLAG_NEGATIVE","features":[324]},{"name":"KERB_S4U2PROXY_CRED","features":[303,324]},{"name":"KERB_S4U2PROXY_CRED_FLAG_NEGATIVE","features":[324]},{"name":"KERB_S4U_LOGON","features":[324]},{"name":"KERB_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[324]},{"name":"KERB_S4U_LOGON_FLAG_IDENTIFY","features":[324]},{"name":"KERB_SETPASSWORD_EX_REQUEST","features":[303,324,476]},{"name":"KERB_SETPASSWORD_REQUEST","features":[303,324,476]},{"name":"KERB_SETPASS_USE_CREDHANDLE","features":[324]},{"name":"KERB_SETPASS_USE_LOGONID","features":[324]},{"name":"KERB_SMART_CARD_LOGON","features":[324]},{"name":"KERB_SMART_CARD_PROFILE","features":[324]},{"name":"KERB_SMART_CARD_UNLOCK_LOGON","features":[303,324]},{"name":"KERB_SUBMIT_TKT_REQUEST","features":[303,324]},{"name":"KERB_TICKET_CACHE_INFO","features":[324]},{"name":"KERB_TICKET_CACHE_INFO_EX","features":[324]},{"name":"KERB_TICKET_CACHE_INFO_EX2","features":[324]},{"name":"KERB_TICKET_CACHE_INFO_EX3","features":[324]},{"name":"KERB_TICKET_FLAGS","features":[324]},{"name":"KERB_TICKET_FLAGS_cname_in_pa_data","features":[324]},{"name":"KERB_TICKET_FLAGS_enc_pa_rep","features":[324]},{"name":"KERB_TICKET_FLAGS_forwardable","features":[324]},{"name":"KERB_TICKET_FLAGS_forwarded","features":[324]},{"name":"KERB_TICKET_FLAGS_hw_authent","features":[324]},{"name":"KERB_TICKET_FLAGS_initial","features":[324]},{"name":"KERB_TICKET_FLAGS_invalid","features":[324]},{"name":"KERB_TICKET_FLAGS_may_postdate","features":[324]},{"name":"KERB_TICKET_FLAGS_name_canonicalize","features":[324]},{"name":"KERB_TICKET_FLAGS_ok_as_delegate","features":[324]},{"name":"KERB_TICKET_FLAGS_postdated","features":[324]},{"name":"KERB_TICKET_FLAGS_pre_authent","features":[324]},{"name":"KERB_TICKET_FLAGS_proxiable","features":[324]},{"name":"KERB_TICKET_FLAGS_proxy","features":[324]},{"name":"KERB_TICKET_FLAGS_renewable","features":[324]},{"name":"KERB_TICKET_FLAGS_reserved","features":[324]},{"name":"KERB_TICKET_FLAGS_reserved1","features":[324]},{"name":"KERB_TICKET_LOGON","features":[324]},{"name":"KERB_TICKET_PROFILE","features":[324]},{"name":"KERB_TICKET_UNLOCK_LOGON","features":[303,324]},{"name":"KERB_TRANSFER_CRED_CLEANUP_CREDENTIALS","features":[324]},{"name":"KERB_TRANSFER_CRED_REQUEST","features":[303,324]},{"name":"KERB_TRANSFER_CRED_WITH_TICKETS","features":[324]},{"name":"KERB_USE_DEFAULT_TICKET_FLAGS","features":[324]},{"name":"KERB_WRAP_NO_ENCRYPT","features":[324]},{"name":"KERN_CONTEXT_CERT_INFO_V1","features":[324]},{"name":"KRB_ANONYMOUS_STRING","features":[324]},{"name":"KRB_NT_ENTERPRISE_PRINCIPAL","features":[324]},{"name":"KRB_NT_ENT_PRINCIPAL_AND_ID","features":[324]},{"name":"KRB_NT_MS_BRANCH_ID","features":[324]},{"name":"KRB_NT_MS_PRINCIPAL","features":[324]},{"name":"KRB_NT_MS_PRINCIPAL_AND_ID","features":[324]},{"name":"KRB_NT_PRINCIPAL","features":[324]},{"name":"KRB_NT_PRINCIPAL_AND_ID","features":[324]},{"name":"KRB_NT_SRV_HST","features":[324]},{"name":"KRB_NT_SRV_INST","features":[324]},{"name":"KRB_NT_SRV_INST_AND_ID","features":[324]},{"name":"KRB_NT_SRV_XHST","features":[324]},{"name":"KRB_NT_UID","features":[324]},{"name":"KRB_NT_UNKNOWN","features":[324]},{"name":"KRB_NT_WELLKNOWN","features":[324]},{"name":"KRB_NT_X500_PRINCIPAL","features":[324]},{"name":"KRB_WELLKNOWN_STRING","features":[324]},{"name":"KSEC_CONTEXT_TYPE","features":[324]},{"name":"KSEC_LIST_ENTRY","features":[324,309]},{"name":"KSecNonPaged","features":[324]},{"name":"KSecPaged","features":[324]},{"name":"KerbAddBindingCacheEntryExMessage","features":[324]},{"name":"KerbAddBindingCacheEntryMessage","features":[324]},{"name":"KerbAddExtraCredentialsExMessage","features":[324]},{"name":"KerbAddExtraCredentialsMessage","features":[324]},{"name":"KerbCertificateLogon","features":[324]},{"name":"KerbCertificateS4ULogon","features":[324]},{"name":"KerbCertificateUnlockLogon","features":[324]},{"name":"KerbChangeMachinePasswordMessage","features":[324]},{"name":"KerbChangePasswordMessage","features":[324]},{"name":"KerbCleanupMachinePkinitCredsMessage","features":[324]},{"name":"KerbDebugRequestMessage","features":[324]},{"name":"KerbDecryptDataMessage","features":[324]},{"name":"KerbInteractiveLogon","features":[324]},{"name":"KerbInteractiveProfile","features":[324]},{"name":"KerbLuidLogon","features":[324]},{"name":"KerbNoElevationLogon","features":[324]},{"name":"KerbPinKdcMessage","features":[324]},{"name":"KerbPrintCloudKerberosDebugMessage","features":[324]},{"name":"KerbProxyLogon","features":[324]},{"name":"KerbPurgeBindingCacheMessage","features":[324]},{"name":"KerbPurgeKdcProxyCacheMessage","features":[324]},{"name":"KerbPurgeTicketCacheExMessage","features":[324]},{"name":"KerbPurgeTicketCacheMessage","features":[324]},{"name":"KerbQueryBindingCacheMessage","features":[324]},{"name":"KerbQueryDomainExtendedPoliciesMessage","features":[324]},{"name":"KerbQueryKdcProxyCacheMessage","features":[324]},{"name":"KerbQueryS4U2ProxyCacheMessage","features":[324]},{"name":"KerbQuerySupplementalCredentialsMessage","features":[324]},{"name":"KerbQueryTicketCacheEx2Message","features":[324]},{"name":"KerbQueryTicketCacheEx3Message","features":[324]},{"name":"KerbQueryTicketCacheExMessage","features":[324]},{"name":"KerbQueryTicketCacheMessage","features":[324]},{"name":"KerbRefreshPolicyMessage","features":[324]},{"name":"KerbRefreshSmartcardCredentialsMessage","features":[324]},{"name":"KerbRetrieveEncodedTicketMessage","features":[324]},{"name":"KerbRetrieveKeyTabMessage","features":[324]},{"name":"KerbRetrieveTicketMessage","features":[324]},{"name":"KerbS4ULogon","features":[324]},{"name":"KerbSetPasswordExMessage","features":[324]},{"name":"KerbSetPasswordMessage","features":[324]},{"name":"KerbSmartCardLogon","features":[324]},{"name":"KerbSmartCardProfile","features":[324]},{"name":"KerbSmartCardUnlockLogon","features":[324]},{"name":"KerbSubmitTicketMessage","features":[324]},{"name":"KerbTicketLogon","features":[324]},{"name":"KerbTicketProfile","features":[324]},{"name":"KerbTicketUnlockLogon","features":[324]},{"name":"KerbTransferCredentialsMessage","features":[324]},{"name":"KerbUnpinAllKdcsMessage","features":[324]},{"name":"KerbUpdateAddressesMessage","features":[324]},{"name":"KerbVerifyCredentialsMessage","features":[324]},{"name":"KerbVerifyPacMessage","features":[324]},{"name":"KerbWorkstationUnlockLogon","features":[324]},{"name":"KspCompleteTokenFn","features":[303,324]},{"name":"KspDeleteContextFn","features":[303,324]},{"name":"KspGetTokenFn","features":[303,324]},{"name":"KspInitContextFn","features":[303,324]},{"name":"KspInitPackageFn","features":[303,324,309]},{"name":"KspMakeSignatureFn","features":[303,324]},{"name":"KspMapHandleFn","features":[303,324]},{"name":"KspQueryAttributesFn","features":[303,324]},{"name":"KspSealMessageFn","features":[303,324]},{"name":"KspSerializeAuthDataFn","features":[303,324]},{"name":"KspSetPagingModeFn","features":[303,324]},{"name":"KspUnsealMessageFn","features":[303,324]},{"name":"KspVerifySignatureFn","features":[303,324]},{"name":"LCRED_CRED_EXISTS","features":[324]},{"name":"LCRED_STATUS_NOCRED","features":[324]},{"name":"LCRED_STATUS_UNKNOWN_ISSUER","features":[324]},{"name":"LOGON_CACHED_ACCOUNT","features":[324]},{"name":"LOGON_EXTRA_SIDS","features":[324]},{"name":"LOGON_GRACE_LOGON","features":[324]},{"name":"LOGON_GUEST","features":[324]},{"name":"LOGON_HOURS","features":[324]},{"name":"LOGON_LM_V2","features":[324]},{"name":"LOGON_MANAGED_SERVICE","features":[324]},{"name":"LOGON_NOENCRYPTION","features":[324]},{"name":"LOGON_NO_ELEVATION","features":[324]},{"name":"LOGON_NO_OPTIMIZED","features":[324]},{"name":"LOGON_NTLMV2_ENABLED","features":[324]},{"name":"LOGON_NTLM_V2","features":[324]},{"name":"LOGON_NT_V2","features":[324]},{"name":"LOGON_OPTIMIZED","features":[324]},{"name":"LOGON_PKINIT","features":[324]},{"name":"LOGON_PROFILE_PATH_RETURNED","features":[324]},{"name":"LOGON_RESOURCE_GROUPS","features":[324]},{"name":"LOGON_SERVER_TRUST_ACCOUNT","features":[324]},{"name":"LOGON_SUBAUTH_SESSION_KEY","features":[324]},{"name":"LOGON_USED_LM_PASSWORD","features":[324]},{"name":"LOGON_WINLOGON","features":[324]},{"name":"LOOKUP_TRANSLATE_NAMES","features":[324]},{"name":"LOOKUP_VIEW_LOCAL_INFORMATION","features":[324]},{"name":"LSAD_AES_BLOCK_SIZE","features":[324]},{"name":"LSAD_AES_CRYPT_SHA512_HASH_SIZE","features":[324]},{"name":"LSAD_AES_KEY_SIZE","features":[324]},{"name":"LSAD_AES_SALT_SIZE","features":[324]},{"name":"LSASETCAPS_RELOAD_FLAG","features":[324]},{"name":"LSASETCAPS_VALID_FLAG_MASK","features":[324]},{"name":"LSA_ADT_LEGACY_SECURITY_SOURCE_NAME","features":[324]},{"name":"LSA_ADT_SECURITY_SOURCE_NAME","features":[324]},{"name":"LSA_AP_NAME_CALL_PACKAGE","features":[324]},{"name":"LSA_AP_NAME_CALL_PACKAGE_PASSTHROUGH","features":[324]},{"name":"LSA_AP_NAME_CALL_PACKAGE_UNTRUSTED","features":[324]},{"name":"LSA_AP_NAME_INITIALIZE_PACKAGE","features":[324]},{"name":"LSA_AP_NAME_LOGON_TERMINATED","features":[324]},{"name":"LSA_AP_NAME_LOGON_USER","features":[324]},{"name":"LSA_AP_NAME_LOGON_USER_EX","features":[324]},{"name":"LSA_AP_NAME_LOGON_USER_EX2","features":[324]},{"name":"LSA_AP_POST_LOGON_USER","features":[303,324]},{"name":"LSA_AUTH_INFORMATION","features":[324]},{"name":"LSA_AUTH_INFORMATION_AUTH_TYPE","features":[324]},{"name":"LSA_CALL_LICENSE_SERVER","features":[324]},{"name":"LSA_DISPATCH_TABLE","features":[303,324]},{"name":"LSA_ENUMERATION_INFORMATION","features":[303,324]},{"name":"LSA_FOREST_TRUST_BINARY_DATA","features":[324]},{"name":"LSA_FOREST_TRUST_COLLISION_INFORMATION","features":[324]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD","features":[324]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD_TYPE","features":[324]},{"name":"LSA_FOREST_TRUST_DOMAIN_INFO","features":[303,324]},{"name":"LSA_FOREST_TRUST_INFORMATION","features":[303,324]},{"name":"LSA_FOREST_TRUST_INFORMATION2","features":[303,324]},{"name":"LSA_FOREST_TRUST_RECORD","features":[303,324]},{"name":"LSA_FOREST_TRUST_RECORD2","features":[303,324]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE","features":[324]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE_UNRECOGNIZED","features":[324]},{"name":"LSA_FOREST_TRUST_SCANNER_INFO","features":[303,324]},{"name":"LSA_FTRECORD_DISABLED_REASONS","features":[324]},{"name":"LSA_GLOBAL_SECRET_PREFIX","features":[324]},{"name":"LSA_GLOBAL_SECRET_PREFIX_LENGTH","features":[324]},{"name":"LSA_HANDLE","features":[324]},{"name":"LSA_LAST_INTER_LOGON_INFO","features":[324]},{"name":"LSA_LOCAL_SECRET_PREFIX","features":[324]},{"name":"LSA_LOCAL_SECRET_PREFIX_LENGTH","features":[324]},{"name":"LSA_LOOKUP_DISALLOW_CONNECTED_ACCOUNT_INTERNET_SID","features":[324]},{"name":"LSA_LOOKUP_DOMAIN_INFO_CLASS","features":[324]},{"name":"LSA_LOOKUP_ISOLATED_AS_LOCAL","features":[324]},{"name":"LSA_LOOKUP_PREFER_INTERNET_NAMES","features":[324]},{"name":"LSA_MACHINE_SECRET_PREFIX","features":[324]},{"name":"LSA_MAXIMUM_ENUMERATION_LENGTH","features":[324]},{"name":"LSA_MAXIMUM_SID_COUNT","features":[324]},{"name":"LSA_MODE_INDIVIDUAL_ACCOUNTS","features":[324]},{"name":"LSA_MODE_LOG_FULL","features":[324]},{"name":"LSA_MODE_MANDATORY_ACCESS","features":[324]},{"name":"LSA_MODE_PASSWORD_PROTECTED","features":[324]},{"name":"LSA_NB_DISABLED_ADMIN","features":[324]},{"name":"LSA_NB_DISABLED_CONFLICT","features":[324]},{"name":"LSA_OBJECT_ATTRIBUTES","features":[303,324]},{"name":"LSA_QUERY_CLIENT_PRELOGON_SESSION_ID","features":[324]},{"name":"LSA_REFERENCED_DOMAIN_LIST","features":[303,324]},{"name":"LSA_SCANNER_INFO_ADMIN_ALL_FLAGS","features":[324]},{"name":"LSA_SCANNER_INFO_DISABLE_AUTH_TARGET_VALIDATION","features":[324]},{"name":"LSA_SECPKG_FUNCTION_TABLE","features":[303,324,476,338]},{"name":"LSA_SECRET_MAXIMUM_COUNT","features":[324]},{"name":"LSA_SECRET_MAXIMUM_LENGTH","features":[324]},{"name":"LSA_SID_DISABLED_ADMIN","features":[324]},{"name":"LSA_SID_DISABLED_CONFLICT","features":[324]},{"name":"LSA_STRING","features":[324]},{"name":"LSA_TLN_DISABLED_ADMIN","features":[324]},{"name":"LSA_TLN_DISABLED_CONFLICT","features":[324]},{"name":"LSA_TLN_DISABLED_NEW","features":[324]},{"name":"LSA_TOKEN_INFORMATION_NULL","features":[303,324]},{"name":"LSA_TOKEN_INFORMATION_TYPE","features":[324]},{"name":"LSA_TOKEN_INFORMATION_V1","features":[303,324]},{"name":"LSA_TOKEN_INFORMATION_V3","features":[303,324]},{"name":"LSA_TRANSLATED_NAME","features":[324]},{"name":"LSA_TRANSLATED_SID","features":[324]},{"name":"LSA_TRANSLATED_SID2","features":[303,324]},{"name":"LSA_TRUST_INFORMATION","features":[303,324]},{"name":"LSA_UNICODE_STRING","features":[324]},{"name":"LocalUserCredKey","features":[324]},{"name":"LsaAddAccountRights","features":[303,324]},{"name":"LsaCallAuthenticationPackage","features":[303,324]},{"name":"LsaClose","features":[303,324]},{"name":"LsaConnectUntrusted","features":[303,324]},{"name":"LsaCreateTrustedDomainEx","features":[303,324]},{"name":"LsaDeleteTrustedDomain","features":[303,324]},{"name":"LsaDeregisterLogonProcess","features":[303,324]},{"name":"LsaEnumerateAccountRights","features":[303,324]},{"name":"LsaEnumerateAccountsWithUserRight","features":[303,324]},{"name":"LsaEnumerateLogonSessions","features":[303,324]},{"name":"LsaEnumerateTrustedDomains","features":[303,324]},{"name":"LsaEnumerateTrustedDomainsEx","features":[303,324]},{"name":"LsaFreeMemory","features":[303,324]},{"name":"LsaFreeReturnBuffer","features":[303,324]},{"name":"LsaGetAppliedCAPIDs","features":[303,324]},{"name":"LsaGetLogonSessionData","features":[303,324]},{"name":"LsaLogonUser","features":[303,324]},{"name":"LsaLookupAuthenticationPackage","features":[303,324]},{"name":"LsaLookupNames","features":[303,324]},{"name":"LsaLookupNames2","features":[303,324]},{"name":"LsaLookupSids","features":[303,324]},{"name":"LsaLookupSids2","features":[303,324]},{"name":"LsaNtStatusToWinError","features":[303,324]},{"name":"LsaOpenPolicy","features":[303,324]},{"name":"LsaOpenTrustedDomainByName","features":[303,324]},{"name":"LsaQueryCAPs","features":[303,324]},{"name":"LsaQueryDomainInformationPolicy","features":[303,324]},{"name":"LsaQueryForestTrustInformation","features":[303,324]},{"name":"LsaQueryForestTrustInformation2","features":[303,324]},{"name":"LsaQueryInformationPolicy","features":[303,324]},{"name":"LsaQueryTrustedDomainInfo","features":[303,324]},{"name":"LsaQueryTrustedDomainInfoByName","features":[303,324]},{"name":"LsaRegisterLogonProcess","features":[303,324]},{"name":"LsaRegisterPolicyChangeNotification","features":[303,324]},{"name":"LsaRemoveAccountRights","features":[303,324]},{"name":"LsaRetrievePrivateData","features":[303,324]},{"name":"LsaSetCAPs","features":[303,324]},{"name":"LsaSetDomainInformationPolicy","features":[303,324]},{"name":"LsaSetForestTrustInformation","features":[303,324]},{"name":"LsaSetForestTrustInformation2","features":[303,324]},{"name":"LsaSetInformationPolicy","features":[303,324]},{"name":"LsaSetTrustedDomainInfoByName","features":[303,324]},{"name":"LsaSetTrustedDomainInformation","features":[303,324]},{"name":"LsaStorePrivateData","features":[303,324]},{"name":"LsaTokenInformationNull","features":[324]},{"name":"LsaTokenInformationV1","features":[324]},{"name":"LsaTokenInformationV2","features":[324]},{"name":"LsaTokenInformationV3","features":[324]},{"name":"LsaUnregisterPolicyChangeNotification","features":[303,324]},{"name":"MAKE_SIGNATURE_FN","features":[324,476]},{"name":"MAXIMUM_CAPES_PER_CAP","features":[324]},{"name":"MAX_CRED_SIZE","features":[324]},{"name":"MAX_PROTOCOL_ID_SIZE","features":[324]},{"name":"MAX_RECORDS_IN_FOREST_TRUST_INFO","features":[324]},{"name":"MAX_USER_RECORDS","features":[324]},{"name":"MICROSOFT_KERBEROS_NAME","features":[324]},{"name":"MICROSOFT_KERBEROS_NAME_A","features":[324]},{"name":"MICROSOFT_KERBEROS_NAME_W","features":[324]},{"name":"MSV1_0","features":[324]},{"name":"MSV1_0_ALLOW_FORCE_GUEST","features":[324]},{"name":"MSV1_0_ALLOW_MSVCHAPV2","features":[324]},{"name":"MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT","features":[324]},{"name":"MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT","features":[324]},{"name":"MSV1_0_AVID","features":[324]},{"name":"MSV1_0_AV_FLAG_FORCE_GUEST","features":[324]},{"name":"MSV1_0_AV_FLAG_MIC_HANDSHAKE_MESSAGES","features":[324]},{"name":"MSV1_0_AV_FLAG_UNVERIFIED_TARGET","features":[324]},{"name":"MSV1_0_AV_PAIR","features":[324]},{"name":"MSV1_0_CHALLENGE_LENGTH","features":[324]},{"name":"MSV1_0_CHANGEPASSWORD_REQUEST","features":[303,324]},{"name":"MSV1_0_CHANGEPASSWORD_RESPONSE","features":[303,324]},{"name":"MSV1_0_CHECK_LOGONHOURS_FOR_S4U","features":[324]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_ALLOWED","features":[324]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_SUPPLIED","features":[324]},{"name":"MSV1_0_CREDENTIAL_KEY","features":[324]},{"name":"MSV1_0_CREDENTIAL_KEY_LENGTH","features":[324]},{"name":"MSV1_0_CREDENTIAL_KEY_TYPE","features":[324]},{"name":"MSV1_0_CRED_CREDKEY_PRESENT","features":[324]},{"name":"MSV1_0_CRED_LM_PRESENT","features":[324]},{"name":"MSV1_0_CRED_NT_PRESENT","features":[324]},{"name":"MSV1_0_CRED_REMOVED","features":[324]},{"name":"MSV1_0_CRED_SHA_PRESENT","features":[324]},{"name":"MSV1_0_CRED_VERSION","features":[324]},{"name":"MSV1_0_CRED_VERSION_ARSO","features":[324]},{"name":"MSV1_0_CRED_VERSION_INVALID","features":[324]},{"name":"MSV1_0_CRED_VERSION_IUM","features":[324]},{"name":"MSV1_0_CRED_VERSION_REMOTE","features":[324]},{"name":"MSV1_0_CRED_VERSION_RESERVED_1","features":[324]},{"name":"MSV1_0_CRED_VERSION_V2","features":[324]},{"name":"MSV1_0_CRED_VERSION_V3","features":[324]},{"name":"MSV1_0_DISABLE_PERSONAL_FALLBACK","features":[324]},{"name":"MSV1_0_DONT_TRY_GUEST_ACCOUNT","features":[324]},{"name":"MSV1_0_GUEST_LOGON","features":[324]},{"name":"MSV1_0_INTERACTIVE_LOGON","features":[324]},{"name":"MSV1_0_INTERACTIVE_PROFILE","features":[324]},{"name":"MSV1_0_INTERNET_DOMAIN","features":[324]},{"name":"MSV1_0_IUM_SUPPLEMENTAL_CREDENTIAL","features":[324]},{"name":"MSV1_0_LANMAN_SESSION_KEY_LENGTH","features":[324]},{"name":"MSV1_0_LM20_LOGON","features":[324]},{"name":"MSV1_0_LM20_LOGON_PROFILE","features":[324]},{"name":"MSV1_0_LOGON_SUBMIT_TYPE","features":[324]},{"name":"MSV1_0_MAX_AVL_SIZE","features":[324]},{"name":"MSV1_0_MAX_NTLM3_LIFE","features":[324]},{"name":"MSV1_0_MNS_LOGON","features":[324]},{"name":"MSV1_0_NTLM3_OWF_LENGTH","features":[324]},{"name":"MSV1_0_NTLM3_RESPONSE","features":[324]},{"name":"MSV1_0_NTLM3_RESPONSE_LENGTH","features":[324]},{"name":"MSV1_0_OWF_PASSWORD_LENGTH","features":[324]},{"name":"MSV1_0_PACKAGE_NAME","features":[324]},{"name":"MSV1_0_PACKAGE_NAMEW","features":[324]},{"name":"MSV1_0_PASSTHROUGH_REQUEST","features":[324]},{"name":"MSV1_0_PASSTHROUGH_RESPONSE","features":[324]},{"name":"MSV1_0_PASSTHRU","features":[324]},{"name":"MSV1_0_PROFILE_BUFFER_TYPE","features":[324]},{"name":"MSV1_0_PROTOCOL_MESSAGE_TYPE","features":[324]},{"name":"MSV1_0_REMOTE_SUPPLEMENTAL_CREDENTIAL","features":[324]},{"name":"MSV1_0_RETURN_PASSWORD_EXPIRY","features":[324]},{"name":"MSV1_0_RETURN_PROFILE_PATH","features":[324]},{"name":"MSV1_0_RETURN_USER_PARAMETERS","features":[324]},{"name":"MSV1_0_S4U2SELF","features":[324]},{"name":"MSV1_0_S4U_LOGON","features":[324]},{"name":"MSV1_0_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[324]},{"name":"MSV1_0_SHA_PASSWORD_LENGTH","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_EX","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_IIS","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_RAS","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_SHIFT","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_FLAGS","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_KEY","features":[324]},{"name":"MSV1_0_SUBAUTHENTICATION_VALUE","features":[324]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_DISABLED","features":[324]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_EXPIRY","features":[324]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_TYPE","features":[324]},{"name":"MSV1_0_SUBAUTH_LOCKOUT","features":[324]},{"name":"MSV1_0_SUBAUTH_LOGON","features":[324]},{"name":"MSV1_0_SUBAUTH_LOGON_HOURS","features":[324]},{"name":"MSV1_0_SUBAUTH_PASSWORD","features":[324]},{"name":"MSV1_0_SUBAUTH_PASSWORD_EXPIRY","features":[324]},{"name":"MSV1_0_SUBAUTH_REQUEST","features":[324]},{"name":"MSV1_0_SUBAUTH_RESPONSE","features":[324]},{"name":"MSV1_0_SUBAUTH_WORKSTATIONS","features":[324]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL","features":[324]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V2","features":[324]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V3","features":[324]},{"name":"MSV1_0_TRY_GUEST_ACCOUNT_ONLY","features":[324]},{"name":"MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY","features":[324]},{"name":"MSV1_0_UPDATE_LOGON_STATISTICS","features":[324]},{"name":"MSV1_0_USER_SESSION_KEY_LENGTH","features":[324]},{"name":"MSV1_0_USE_CLIENT_CHALLENGE","features":[324]},{"name":"MSV1_0_USE_DOMAIN_FOR_ROUTING_ONLY","features":[324]},{"name":"MSV1_0_VALIDATION_INFO","features":[303,324,477]},{"name":"MSV1_0_VALIDATION_KICKOFF_TIME","features":[324]},{"name":"MSV1_0_VALIDATION_LOGOFF_TIME","features":[324]},{"name":"MSV1_0_VALIDATION_LOGON_DOMAIN","features":[324]},{"name":"MSV1_0_VALIDATION_LOGON_SERVER","features":[324]},{"name":"MSV1_0_VALIDATION_SESSION_KEY","features":[324]},{"name":"MSV1_0_VALIDATION_USER_FLAGS","features":[324]},{"name":"MSV1_0_VALIDATION_USER_ID","features":[324]},{"name":"MSV_SUBAUTH_LOGON_PARAMETER_CONTROL","features":[324]},{"name":"MSV_SUB_AUTHENTICATION_FILTER","features":[324]},{"name":"MSV_SUPPLEMENTAL_CREDENTIAL_FLAGS","features":[324]},{"name":"MakeSignature","features":[324,476]},{"name":"MsV1_0CacheLogon","features":[324]},{"name":"MsV1_0CacheLookup","features":[324]},{"name":"MsV1_0CacheLookupEx","features":[324]},{"name":"MsV1_0ChangeCachedPassword","features":[324]},{"name":"MsV1_0ChangePassword","features":[324]},{"name":"MsV1_0ClearCachedCredentials","features":[324]},{"name":"MsV1_0ConfigLocalAliases","features":[324]},{"name":"MsV1_0DecryptDpapiMasterKey","features":[324]},{"name":"MsV1_0DeleteTbalSecrets","features":[324]},{"name":"MsV1_0DeriveCredential","features":[324]},{"name":"MsV1_0EnumerateUsers","features":[324]},{"name":"MsV1_0GenericPassthrough","features":[324]},{"name":"MsV1_0GetCredentialKey","features":[324]},{"name":"MsV1_0GetStrongCredentialKey","features":[324]},{"name":"MsV1_0GetUserInfo","features":[324]},{"name":"MsV1_0InteractiveLogon","features":[324]},{"name":"MsV1_0InteractiveProfile","features":[324]},{"name":"MsV1_0Lm20ChallengeRequest","features":[324]},{"name":"MsV1_0Lm20GetChallengeResponse","features":[324]},{"name":"MsV1_0Lm20Logon","features":[324]},{"name":"MsV1_0Lm20LogonProfile","features":[324]},{"name":"MsV1_0LookupToken","features":[324]},{"name":"MsV1_0LuidLogon","features":[324]},{"name":"MsV1_0NetworkLogon","features":[324]},{"name":"MsV1_0NoElevationLogon","features":[324]},{"name":"MsV1_0ProvisionTbal","features":[324]},{"name":"MsV1_0ReLogonUsers","features":[324]},{"name":"MsV1_0S4ULogon","features":[324]},{"name":"MsV1_0SetProcessOption","features":[324]},{"name":"MsV1_0SetThreadOption","features":[324]},{"name":"MsV1_0SmartCardProfile","features":[324]},{"name":"MsV1_0SubAuth","features":[324]},{"name":"MsV1_0SubAuthLogon","features":[324]},{"name":"MsV1_0TransferCred","features":[324]},{"name":"MsV1_0ValidateAuth","features":[324]},{"name":"MsV1_0VirtualLogon","features":[324]},{"name":"MsV1_0WorkstationUnlockLogon","features":[324]},{"name":"MsvAvChannelBindings","features":[324]},{"name":"MsvAvDnsComputerName","features":[324]},{"name":"MsvAvDnsDomainName","features":[324]},{"name":"MsvAvDnsTreeName","features":[324]},{"name":"MsvAvEOL","features":[324]},{"name":"MsvAvFlags","features":[324]},{"name":"MsvAvNbComputerName","features":[324]},{"name":"MsvAvNbDomainName","features":[324]},{"name":"MsvAvRestrictions","features":[324]},{"name":"MsvAvTargetName","features":[324]},{"name":"MsvAvTimestamp","features":[324]},{"name":"NEGOSSP_NAME","features":[324]},{"name":"NEGOSSP_NAME_A","features":[324]},{"name":"NEGOSSP_NAME_W","features":[324]},{"name":"NEGOTIATE_ALLOW_NTLM","features":[324]},{"name":"NEGOTIATE_CALLER_NAME_REQUEST","features":[303,324]},{"name":"NEGOTIATE_CALLER_NAME_RESPONSE","features":[324]},{"name":"NEGOTIATE_MAX_PREFIX","features":[324]},{"name":"NEGOTIATE_MESSAGES","features":[324]},{"name":"NEGOTIATE_NEG_NTLM","features":[324]},{"name":"NEGOTIATE_PACKAGE_PREFIX","features":[324]},{"name":"NEGOTIATE_PACKAGE_PREFIXES","features":[324]},{"name":"NETLOGON_GENERIC_INFO","features":[324]},{"name":"NETLOGON_INTERACTIVE_INFO","features":[324,477]},{"name":"NETLOGON_LOGON_IDENTITY_INFO","features":[324]},{"name":"NETLOGON_LOGON_INFO_CLASS","features":[324]},{"name":"NETLOGON_NETWORK_INFO","features":[324]},{"name":"NETLOGON_SERVICE_INFO","features":[324,477]},{"name":"NGC_DATA_FLAG_IS_CLOUD_TRUST_CRED","features":[324]},{"name":"NGC_DATA_FLAG_IS_SMARTCARD_DATA","features":[324]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[324]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[324]},{"name":"NOTIFIER_FLAG_NEW_THREAD","features":[324]},{"name":"NOTIFIER_FLAG_ONE_SHOT","features":[324]},{"name":"NOTIFIER_FLAG_SECONDS","features":[324]},{"name":"NOTIFIER_TYPE_HANDLE_WAIT","features":[324]},{"name":"NOTIFIER_TYPE_IMMEDIATE","features":[324]},{"name":"NOTIFIER_TYPE_INTERVAL","features":[324]},{"name":"NOTIFIER_TYPE_NOTIFY_EVENT","features":[324]},{"name":"NOTIFIER_TYPE_STATE_CHANGE","features":[324]},{"name":"NOTIFY_CLASS_DOMAIN_CHANGE","features":[324]},{"name":"NOTIFY_CLASS_PACKAGE_CHANGE","features":[324]},{"name":"NOTIFY_CLASS_REGISTRY_CHANGE","features":[324]},{"name":"NOTIFY_CLASS_ROLE_CHANGE","features":[324]},{"name":"NO_LONG_NAMES","features":[324]},{"name":"NTLMSP_NAME","features":[324]},{"name":"NTLMSP_NAME_A","features":[324]},{"name":"NameCanonical","features":[324]},{"name":"NameCanonicalEx","features":[324]},{"name":"NameDisplay","features":[324]},{"name":"NameDnsDomain","features":[324]},{"name":"NameFullyQualifiedDN","features":[324]},{"name":"NameGivenName","features":[324]},{"name":"NameSamCompatible","features":[324]},{"name":"NameServicePrincipal","features":[324]},{"name":"NameSurname","features":[324]},{"name":"NameUniqueId","features":[324]},{"name":"NameUnknown","features":[324]},{"name":"NameUserPrincipal","features":[324]},{"name":"NegCallPackageMax","features":[324]},{"name":"NegEnumPackagePrefixes","features":[324]},{"name":"NegGetCallerName","features":[324]},{"name":"NegMsgReserved1","features":[324]},{"name":"NegTransferCredentials","features":[324]},{"name":"NetlogonGenericInformation","features":[324]},{"name":"NetlogonInteractiveInformation","features":[324]},{"name":"NetlogonInteractiveTransitiveInformation","features":[324]},{"name":"NetlogonNetworkInformation","features":[324]},{"name":"NetlogonNetworkTransitiveInformation","features":[324]},{"name":"NetlogonServiceInformation","features":[324]},{"name":"NetlogonServiceTransitiveInformation","features":[324]},{"name":"PCT1SP_NAME","features":[324]},{"name":"PCT1SP_NAME_A","features":[324]},{"name":"PCT1SP_NAME_W","features":[324]},{"name":"PER_USER_AUDIT_FAILURE_EXCLUDE","features":[324]},{"name":"PER_USER_AUDIT_FAILURE_INCLUDE","features":[324]},{"name":"PER_USER_AUDIT_NONE","features":[324]},{"name":"PER_USER_AUDIT_SUCCESS_EXCLUDE","features":[324]},{"name":"PER_USER_AUDIT_SUCCESS_INCLUDE","features":[324]},{"name":"PER_USER_POLICY_UNCHANGED","features":[324]},{"name":"PKSEC_CREATE_CONTEXT_LIST","features":[324]},{"name":"PKSEC_DEREFERENCE_LIST_ENTRY","features":[324,309]},{"name":"PKSEC_INSERT_LIST_ENTRY","features":[324,309]},{"name":"PKSEC_LOCATE_PKG_BY_ID","features":[324]},{"name":"PKSEC_REFERENCE_LIST_ENTRY","features":[303,324,309]},{"name":"PKSEC_SERIALIZE_SCHANNEL_AUTH_DATA","features":[303,324]},{"name":"PKSEC_SERIALIZE_WINNT_AUTH_DATA","features":[303,324]},{"name":"PKU2U_CERTIFICATE_S4U_LOGON","features":[324]},{"name":"PKU2U_CERT_BLOB","features":[324]},{"name":"PKU2U_CREDUI_CONTEXT","features":[324]},{"name":"PKU2U_LOGON_SUBMIT_TYPE","features":[324]},{"name":"PKU2U_PACKAGE_NAME","features":[324]},{"name":"PKU2U_PACKAGE_NAME_A","features":[324]},{"name":"PKU2U_PACKAGE_NAME_W","features":[324]},{"name":"PLSA_ADD_CREDENTIAL","features":[303,324]},{"name":"PLSA_ALLOCATE_CLIENT_BUFFER","features":[303,324]},{"name":"PLSA_ALLOCATE_LSA_HEAP","features":[324]},{"name":"PLSA_ALLOCATE_PRIVATE_HEAP","features":[324]},{"name":"PLSA_ALLOCATE_SHARED_MEMORY","features":[324]},{"name":"PLSA_AP_CALL_PACKAGE","features":[303,324]},{"name":"PLSA_AP_CALL_PACKAGE_PASSTHROUGH","features":[303,324]},{"name":"PLSA_AP_INITIALIZE_PACKAGE","features":[303,324]},{"name":"PLSA_AP_LOGON_TERMINATED","features":[303,324]},{"name":"PLSA_AP_LOGON_USER","features":[303,324]},{"name":"PLSA_AP_LOGON_USER_EX","features":[303,324]},{"name":"PLSA_AP_LOGON_USER_EX2","features":[303,324]},{"name":"PLSA_AP_LOGON_USER_EX3","features":[303,324]},{"name":"PLSA_AP_POST_LOGON_USER_SURROGATE","features":[303,324]},{"name":"PLSA_AP_PRE_LOGON_USER_SURROGATE","features":[303,324]},{"name":"PLSA_AUDIT_ACCOUNT_LOGON","features":[303,324]},{"name":"PLSA_AUDIT_LOGON","features":[303,324]},{"name":"PLSA_AUDIT_LOGON_EX","features":[303,324]},{"name":"PLSA_CALLBACK_FUNCTION","features":[303,324]},{"name":"PLSA_CALL_PACKAGE","features":[303,324]},{"name":"PLSA_CALL_PACKAGEEX","features":[303,324]},{"name":"PLSA_CALL_PACKAGE_PASSTHROUGH","features":[303,324]},{"name":"PLSA_CANCEL_NOTIFICATION","features":[303,324]},{"name":"PLSA_CHECK_PROTECTED_USER_BY_TOKEN","features":[303,324]},{"name":"PLSA_CLIENT_CALLBACK","features":[303,324]},{"name":"PLSA_CLOSE_SAM_USER","features":[303,324]},{"name":"PLSA_CONVERT_AUTH_DATA_TO_TOKEN","features":[303,324]},{"name":"PLSA_COPY_FROM_CLIENT_BUFFER","features":[303,324]},{"name":"PLSA_COPY_TO_CLIENT_BUFFER","features":[303,324]},{"name":"PLSA_CRACK_SINGLE_NAME","features":[303,324]},{"name":"PLSA_CREATE_LOGON_SESSION","features":[303,324]},{"name":"PLSA_CREATE_SHARED_MEMORY","features":[324]},{"name":"PLSA_CREATE_THREAD","features":[303,324,338]},{"name":"PLSA_CREATE_TOKEN","features":[303,324]},{"name":"PLSA_CREATE_TOKEN_EX","features":[303,324]},{"name":"PLSA_DELETE_CREDENTIAL","features":[303,324]},{"name":"PLSA_DELETE_LOGON_SESSION","features":[303,324]},{"name":"PLSA_DELETE_SHARED_MEMORY","features":[303,324]},{"name":"PLSA_DUPLICATE_HANDLE","features":[303,324]},{"name":"PLSA_EXPAND_AUTH_DATA_FOR_DOMAIN","features":[303,324]},{"name":"PLSA_FREE_CLIENT_BUFFER","features":[303,324]},{"name":"PLSA_FREE_LSA_HEAP","features":[324]},{"name":"PLSA_FREE_PRIVATE_HEAP","features":[324]},{"name":"PLSA_FREE_SHARED_MEMORY","features":[324]},{"name":"PLSA_GET_APP_MODE_INFO","features":[303,324]},{"name":"PLSA_GET_AUTH_DATA_FOR_USER","features":[303,324]},{"name":"PLSA_GET_CALL_INFO","features":[303,324]},{"name":"PLSA_GET_CLIENT_INFO","features":[303,324]},{"name":"PLSA_GET_CLIENT_INFO_EX","features":[303,324]},{"name":"PLSA_GET_CREDENTIALS","features":[303,324]},{"name":"PLSA_GET_EXTENDED_CALL_FLAGS","features":[303,324]},{"name":"PLSA_GET_SERVICE_ACCOUNT_PASSWORD","features":[303,324]},{"name":"PLSA_GET_USER_AUTH_DATA","features":[303,324]},{"name":"PLSA_GET_USER_CREDENTIALS","features":[303,324]},{"name":"PLSA_IMPERSONATE_CLIENT","features":[303,324]},{"name":"PLSA_LOCATE_PKG_BY_ID","features":[324]},{"name":"PLSA_MAP_BUFFER","features":[303,324]},{"name":"PLSA_OPEN_SAM_USER","features":[303,324]},{"name":"PLSA_OPEN_TOKEN_BY_LOGON_ID","features":[303,324]},{"name":"PLSA_PROTECT_MEMORY","features":[324]},{"name":"PLSA_QUERY_CLIENT_REQUEST","features":[303,324]},{"name":"PLSA_REDIRECTED_LOGON_CALLBACK","features":[303,324]},{"name":"PLSA_REDIRECTED_LOGON_CLEANUP_CALLBACK","features":[303,324]},{"name":"PLSA_REDIRECTED_LOGON_GET_LOGON_CREDS","features":[303,324]},{"name":"PLSA_REDIRECTED_LOGON_GET_SID","features":[303,324]},{"name":"PLSA_REDIRECTED_LOGON_GET_SUPP_CREDS","features":[303,324]},{"name":"PLSA_REDIRECTED_LOGON_INIT","features":[303,324]},{"name":"PLSA_REGISTER_CALLBACK","features":[303,324]},{"name":"PLSA_REGISTER_NOTIFICATION","features":[303,324,338]},{"name":"PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS","features":[303,324]},{"name":"PLSA_SET_APP_MODE_INFO","features":[303,324]},{"name":"PLSA_UNLOAD_PACKAGE","features":[303,324]},{"name":"PLSA_UPDATE_PRIMARY_CREDENTIALS","features":[303,324]},{"name":"POLICY_ACCOUNT_DOMAIN_INFO","features":[303,324]},{"name":"POLICY_AUDIT_CATEGORIES_INFO","features":[324]},{"name":"POLICY_AUDIT_EVENTS_INFO","features":[303,324]},{"name":"POLICY_AUDIT_EVENT_FAILURE","features":[324]},{"name":"POLICY_AUDIT_EVENT_NONE","features":[324]},{"name":"POLICY_AUDIT_EVENT_SUCCESS","features":[324]},{"name":"POLICY_AUDIT_EVENT_TYPE","features":[324]},{"name":"POLICY_AUDIT_EVENT_UNCHANGED","features":[324]},{"name":"POLICY_AUDIT_FULL_QUERY_INFO","features":[303,324]},{"name":"POLICY_AUDIT_FULL_SET_INFO","features":[303,324]},{"name":"POLICY_AUDIT_LOG_ADMIN","features":[324]},{"name":"POLICY_AUDIT_LOG_INFO","features":[303,324]},{"name":"POLICY_AUDIT_SID_ARRAY","features":[303,324]},{"name":"POLICY_AUDIT_SUBCATEGORIES_INFO","features":[324]},{"name":"POLICY_CREATE_ACCOUNT","features":[324]},{"name":"POLICY_CREATE_PRIVILEGE","features":[324]},{"name":"POLICY_CREATE_SECRET","features":[324]},{"name":"POLICY_DEFAULT_QUOTA_INFO","features":[324]},{"name":"POLICY_DNS_DOMAIN_INFO","features":[303,324]},{"name":"POLICY_DOMAIN_EFS_INFO","features":[324]},{"name":"POLICY_DOMAIN_INFORMATION_CLASS","features":[324]},{"name":"POLICY_DOMAIN_KERBEROS_TICKET_INFO","features":[324]},{"name":"POLICY_GET_PRIVATE_INFORMATION","features":[324]},{"name":"POLICY_INFORMATION_CLASS","features":[324]},{"name":"POLICY_KERBEROS_VALIDATE_CLIENT","features":[324]},{"name":"POLICY_LOOKUP_NAMES","features":[324]},{"name":"POLICY_LSA_SERVER_ROLE","features":[324]},{"name":"POLICY_LSA_SERVER_ROLE_INFO","features":[324]},{"name":"POLICY_MACHINE_ACCT_INFO","features":[303,324]},{"name":"POLICY_MACHINE_ACCT_INFO2","features":[303,324]},{"name":"POLICY_MODIFICATION_INFO","features":[324]},{"name":"POLICY_NOTIFICATION","features":[324]},{"name":"POLICY_NOTIFICATION_INFORMATION_CLASS","features":[324]},{"name":"POLICY_PD_ACCOUNT_INFO","features":[324]},{"name":"POLICY_PRIMARY_DOMAIN_INFO","features":[303,324]},{"name":"POLICY_QOS_ALLOW_LOCAL_ROOT_CERT_STORE","features":[324]},{"name":"POLICY_QOS_DHCP_SERVER_ALLOWED","features":[324]},{"name":"POLICY_QOS_INBOUND_CONFIDENTIALITY","features":[324]},{"name":"POLICY_QOS_INBOUND_INTEGRITY","features":[324]},{"name":"POLICY_QOS_OUTBOUND_CONFIDENTIALITY","features":[324]},{"name":"POLICY_QOS_OUTBOUND_INTEGRITY","features":[324]},{"name":"POLICY_QOS_RAS_SERVER_ALLOWED","features":[324]},{"name":"POLICY_QOS_SCHANNEL_REQUIRED","features":[324]},{"name":"POLICY_REPLICA_SOURCE_INFO","features":[324]},{"name":"POLICY_SERVER_ADMIN","features":[324]},{"name":"POLICY_SET_AUDIT_REQUIREMENTS","features":[324]},{"name":"POLICY_SET_DEFAULT_QUOTA_LIMITS","features":[324]},{"name":"POLICY_TRUST_ADMIN","features":[324]},{"name":"POLICY_VIEW_AUDIT_INFORMATION","features":[324]},{"name":"POLICY_VIEW_LOCAL_INFORMATION","features":[324]},{"name":"PRIMARY_CRED_ARSO_LOGON","features":[324]},{"name":"PRIMARY_CRED_AUTH_ID","features":[324]},{"name":"PRIMARY_CRED_CACHED_INTERACTIVE_LOGON","features":[324]},{"name":"PRIMARY_CRED_CACHED_LOGON","features":[324]},{"name":"PRIMARY_CRED_CLEAR_PASSWORD","features":[324]},{"name":"PRIMARY_CRED_DO_NOT_SPLIT","features":[324]},{"name":"PRIMARY_CRED_ENCRYPTED_CREDGUARD_PASSWORD","features":[324]},{"name":"PRIMARY_CRED_ENTERPRISE_INTERNET_USER","features":[324]},{"name":"PRIMARY_CRED_EX","features":[324]},{"name":"PRIMARY_CRED_FOR_PASSWORD_CHANGE","features":[324]},{"name":"PRIMARY_CRED_INTERACTIVE_FIDO_LOGON","features":[324]},{"name":"PRIMARY_CRED_INTERACTIVE_NGC_LOGON","features":[324]},{"name":"PRIMARY_CRED_INTERACTIVE_SMARTCARD_LOGON","features":[324]},{"name":"PRIMARY_CRED_INTERNET_USER","features":[324]},{"name":"PRIMARY_CRED_LOGON_LUA","features":[324]},{"name":"PRIMARY_CRED_LOGON_NO_TCB","features":[324]},{"name":"PRIMARY_CRED_LOGON_PACKAGE_SHIFT","features":[324]},{"name":"PRIMARY_CRED_OWF_PASSWORD","features":[324]},{"name":"PRIMARY_CRED_PACKAGE_MASK","features":[324]},{"name":"PRIMARY_CRED_PACKED_CREDS","features":[324]},{"name":"PRIMARY_CRED_PROTECTED_USER","features":[324]},{"name":"PRIMARY_CRED_REFRESH_NEEDED","features":[324]},{"name":"PRIMARY_CRED_RESTRICTED_TS","features":[324]},{"name":"PRIMARY_CRED_SUPPLEMENTAL","features":[324]},{"name":"PRIMARY_CRED_TRANSFER","features":[324]},{"name":"PRIMARY_CRED_UPDATE","features":[324]},{"name":"PSAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[324]},{"name":"PSAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[303,324]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[303,324]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[303,324]},{"name":"PSAM_INIT_NOTIFICATION_ROUTINE","features":[303,324]},{"name":"PSAM_PASSWORD_FILTER_ROUTINE","features":[303,324]},{"name":"PSAM_PASSWORD_NOTIFICATION_ROUTINE","features":[303,324]},{"name":"PctPublicKey","features":[324]},{"name":"Pku2uCertificateS4ULogon","features":[324]},{"name":"PolicyAccountDomainInformation","features":[324]},{"name":"PolicyAuditEventsInformation","features":[324]},{"name":"PolicyAuditFullQueryInformation","features":[324]},{"name":"PolicyAuditFullSetInformation","features":[324]},{"name":"PolicyAuditLogInformation","features":[324]},{"name":"PolicyDefaultQuotaInformation","features":[324]},{"name":"PolicyDnsDomainInformation","features":[324]},{"name":"PolicyDnsDomainInformationInt","features":[324]},{"name":"PolicyDomainEfsInformation","features":[324]},{"name":"PolicyDomainKerberosTicketInformation","features":[324]},{"name":"PolicyLastEntry","features":[324]},{"name":"PolicyLocalAccountDomainInformation","features":[324]},{"name":"PolicyLsaServerRoleInformation","features":[324]},{"name":"PolicyMachineAccountInformation","features":[324]},{"name":"PolicyMachineAccountInformation2","features":[324]},{"name":"PolicyModificationInformation","features":[324]},{"name":"PolicyNotifyAccountDomainInformation","features":[324]},{"name":"PolicyNotifyAuditEventsInformation","features":[324]},{"name":"PolicyNotifyDnsDomainInformation","features":[324]},{"name":"PolicyNotifyDomainEfsInformation","features":[324]},{"name":"PolicyNotifyDomainKerberosTicketInformation","features":[324]},{"name":"PolicyNotifyGlobalSaclInformation","features":[324]},{"name":"PolicyNotifyMachineAccountPasswordInformation","features":[324]},{"name":"PolicyNotifyMax","features":[324]},{"name":"PolicyNotifyServerRoleInformation","features":[324]},{"name":"PolicyPdAccountInformation","features":[324]},{"name":"PolicyPrimaryDomainInformation","features":[324]},{"name":"PolicyReplicaSourceInformation","features":[324]},{"name":"PolicyServerRoleBackup","features":[324]},{"name":"PolicyServerRolePrimary","features":[324]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_A","features":[324,476]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_W","features":[324,476]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_A","features":[324,476]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_W","features":[324,476]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_A","features":[324,476]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_W","features":[324,476]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_A","features":[324,476]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_W","features":[324,476]},{"name":"QUERY_SECURITY_CONTEXT_TOKEN_FN","features":[324,476]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_A","features":[324]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_W","features":[324]},{"name":"QueryContextAttributesA","features":[324,476]},{"name":"QueryContextAttributesExA","features":[324,476]},{"name":"QueryContextAttributesExW","features":[324,476]},{"name":"QueryContextAttributesW","features":[324,476]},{"name":"QueryCredentialsAttributesA","features":[324,476]},{"name":"QueryCredentialsAttributesExA","features":[324,476]},{"name":"QueryCredentialsAttributesExW","features":[324,476]},{"name":"QueryCredentialsAttributesW","features":[324,476]},{"name":"QuerySecurityContextToken","features":[324,476]},{"name":"QuerySecurityPackageInfoA","features":[324]},{"name":"QuerySecurityPackageInfoW","features":[324]},{"name":"RCRED_CRED_EXISTS","features":[324]},{"name":"RCRED_STATUS_NOCRED","features":[324]},{"name":"RCRED_STATUS_UNKNOWN_ISSUER","features":[324]},{"name":"REVERT_SECURITY_CONTEXT_FN","features":[324,476]},{"name":"RTL_ENCRYPT_MEMORY_SIZE","features":[324]},{"name":"RTL_ENCRYPT_OPTION_CROSS_PROCESS","features":[324]},{"name":"RTL_ENCRYPT_OPTION_FOR_SYSTEM","features":[324]},{"name":"RTL_ENCRYPT_OPTION_SAME_LOGON","features":[324]},{"name":"RevertSecurityContext","features":[324,476]},{"name":"RtlDecryptMemory","features":[303,324]},{"name":"RtlEncryptMemory","features":[303,324]},{"name":"RtlGenRandom","features":[303,324]},{"name":"SAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[324]},{"name":"SAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[324]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[324]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[324]},{"name":"SAM_DAYS_PER_WEEK","features":[324]},{"name":"SAM_INIT_NOTIFICATION_ROUTINE","features":[324]},{"name":"SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE","features":[324]},{"name":"SAM_PASSWORD_FILTER_ROUTINE","features":[324]},{"name":"SAM_REGISTER_MAPPING_ELEMENT","features":[303,324]},{"name":"SAM_REGISTER_MAPPING_LIST","features":[303,324]},{"name":"SAM_REGISTER_MAPPING_TABLE","features":[303,324]},{"name":"SASL_AUTHZID_STATE","features":[324]},{"name":"SASL_OPTION_AUTHZ_PROCESSING","features":[324]},{"name":"SASL_OPTION_AUTHZ_STRING","features":[324]},{"name":"SASL_OPTION_RECV_SIZE","features":[324]},{"name":"SASL_OPTION_SEND_SIZE","features":[324]},{"name":"SCHANNEL_ALERT","features":[324]},{"name":"SCHANNEL_ALERT_TOKEN","features":[324]},{"name":"SCHANNEL_ALERT_TOKEN_ALERT_TYPE","features":[324]},{"name":"SCHANNEL_CERT_HASH","features":[324]},{"name":"SCHANNEL_CERT_HASH_STORE","features":[324]},{"name":"SCHANNEL_CLIENT_SIGNATURE","features":[324,387]},{"name":"SCHANNEL_CRED","features":[303,324,387]},{"name":"SCHANNEL_CRED_FLAGS","features":[324]},{"name":"SCHANNEL_CRED_VERSION","features":[324]},{"name":"SCHANNEL_NAME","features":[324]},{"name":"SCHANNEL_NAME_A","features":[324]},{"name":"SCHANNEL_NAME_W","features":[324]},{"name":"SCHANNEL_RENEGOTIATE","features":[324]},{"name":"SCHANNEL_SECRET_PRIVKEY","features":[324]},{"name":"SCHANNEL_SECRET_TYPE_CAPI","features":[324]},{"name":"SCHANNEL_SESSION","features":[324]},{"name":"SCHANNEL_SESSION_TOKEN","features":[324]},{"name":"SCHANNEL_SESSION_TOKEN_FLAGS","features":[324]},{"name":"SCHANNEL_SHUTDOWN","features":[324]},{"name":"SCH_ALLOW_NULL_ENCRYPTION","features":[324]},{"name":"SCH_CRED","features":[324]},{"name":"SCH_CREDENTIALS","features":[303,324,387]},{"name":"SCH_CREDENTIALS_VERSION","features":[324]},{"name":"SCH_CRED_AUTO_CRED_VALIDATION","features":[324]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL","features":[324]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL_ON_CREATE","features":[324]},{"name":"SCH_CRED_CERT_CONTEXT","features":[324]},{"name":"SCH_CRED_DEFERRED_CRED_VALIDATION","features":[324]},{"name":"SCH_CRED_DISABLE_RECONNECTS","features":[324]},{"name":"SCH_CRED_FORMAT_CERT_CONTEXT","features":[324]},{"name":"SCH_CRED_FORMAT_CERT_HASH","features":[324]},{"name":"SCH_CRED_FORMAT_CERT_HASH_STORE","features":[324]},{"name":"SCH_CRED_IGNORE_NO_REVOCATION_CHECK","features":[324]},{"name":"SCH_CRED_IGNORE_REVOCATION_OFFLINE","features":[324]},{"name":"SCH_CRED_MANUAL_CRED_VALIDATION","features":[324]},{"name":"SCH_CRED_MAX_STORE_NAME_SIZE","features":[324]},{"name":"SCH_CRED_MAX_SUPPORTED_ALGS","features":[324]},{"name":"SCH_CRED_MAX_SUPPORTED_ALPN_IDS","features":[324]},{"name":"SCH_CRED_MAX_SUPPORTED_CERTS","features":[324]},{"name":"SCH_CRED_MAX_SUPPORTED_CHAINING_MODES","features":[324]},{"name":"SCH_CRED_MAX_SUPPORTED_CRYPTO_SETTINGS","features":[324]},{"name":"SCH_CRED_MAX_SUPPORTED_PARAMETERS","features":[324]},{"name":"SCH_CRED_MEMORY_STORE_CERT","features":[324]},{"name":"SCH_CRED_NO_DEFAULT_CREDS","features":[324]},{"name":"SCH_CRED_NO_SERVERNAME_CHECK","features":[324]},{"name":"SCH_CRED_NO_SYSTEM_MAPPER","features":[324]},{"name":"SCH_CRED_PUBLIC_CERTCHAIN","features":[324]},{"name":"SCH_CRED_RESTRICTED_ROOTS","features":[324]},{"name":"SCH_CRED_REVOCATION_CHECK_CACHE_ONLY","features":[324]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN","features":[324]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[324]},{"name":"SCH_CRED_REVOCATION_CHECK_END_CERT","features":[324]},{"name":"SCH_CRED_SECRET_CAPI","features":[324]},{"name":"SCH_CRED_SECRET_PRIVKEY","features":[324]},{"name":"SCH_CRED_SNI_CREDENTIAL","features":[324]},{"name":"SCH_CRED_SNI_ENABLE_OCSP","features":[324]},{"name":"SCH_CRED_USE_DEFAULT_CREDS","features":[324]},{"name":"SCH_CRED_V1","features":[324]},{"name":"SCH_CRED_V2","features":[324]},{"name":"SCH_CRED_V3","features":[324]},{"name":"SCH_CRED_VERSION","features":[324]},{"name":"SCH_CRED_X509_CAPI","features":[324]},{"name":"SCH_CRED_X509_CERTCHAIN","features":[324]},{"name":"SCH_DISABLE_RECONNECTS","features":[324]},{"name":"SCH_EXTENSIONS_OPTIONS_NONE","features":[324]},{"name":"SCH_EXTENSION_DATA","features":[324]},{"name":"SCH_MACHINE_CERT_HASH","features":[324]},{"name":"SCH_MAX_EXT_SUBSCRIPTIONS","features":[324]},{"name":"SCH_NO_RECORD_HEADER","features":[324]},{"name":"SCH_SEND_AUX_RECORD","features":[324]},{"name":"SCH_SEND_ROOT_CERT","features":[324]},{"name":"SCH_USE_DTLS_ONLY","features":[324]},{"name":"SCH_USE_PRESHAREDKEY_ONLY","features":[324]},{"name":"SCH_USE_STRONG_CRYPTO","features":[324]},{"name":"SECBUFFER_ALERT","features":[324]},{"name":"SECBUFFER_APPLICATION_PROTOCOLS","features":[324]},{"name":"SECBUFFER_ATTRMASK","features":[324]},{"name":"SECBUFFER_CERTIFICATE_REQUEST_CONTEXT","features":[324]},{"name":"SECBUFFER_CHANGE_PASS_RESPONSE","features":[324]},{"name":"SECBUFFER_CHANNEL_BINDINGS","features":[324]},{"name":"SECBUFFER_CHANNEL_BINDINGS_RESULT","features":[324]},{"name":"SECBUFFER_DATA","features":[324]},{"name":"SECBUFFER_DTLS_MTU","features":[324]},{"name":"SECBUFFER_EMPTY","features":[324]},{"name":"SECBUFFER_EXTRA","features":[324]},{"name":"SECBUFFER_FLAGS","features":[324]},{"name":"SECBUFFER_KERNEL_MAP","features":[324]},{"name":"SECBUFFER_MECHLIST","features":[324]},{"name":"SECBUFFER_MECHLIST_SIGNATURE","features":[324]},{"name":"SECBUFFER_MISSING","features":[324]},{"name":"SECBUFFER_NEGOTIATION_INFO","features":[324]},{"name":"SECBUFFER_PADDING","features":[324]},{"name":"SECBUFFER_PKG_PARAMS","features":[324]},{"name":"SECBUFFER_PRESHARED_KEY","features":[324]},{"name":"SECBUFFER_PRESHARED_KEY_IDENTITY","features":[324]},{"name":"SECBUFFER_READONLY","features":[324]},{"name":"SECBUFFER_READONLY_WITH_CHECKSUM","features":[324]},{"name":"SECBUFFER_RESERVED","features":[324]},{"name":"SECBUFFER_SEND_GENERIC_TLS_EXTENSION","features":[324]},{"name":"SECBUFFER_SRTP_MASTER_KEY_IDENTIFIER","features":[324]},{"name":"SECBUFFER_SRTP_PROTECTION_PROFILES","features":[324]},{"name":"SECBUFFER_STREAM","features":[324]},{"name":"SECBUFFER_STREAM_HEADER","features":[324]},{"name":"SECBUFFER_STREAM_TRAILER","features":[324]},{"name":"SECBUFFER_SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[324]},{"name":"SECBUFFER_TARGET","features":[324]},{"name":"SECBUFFER_TARGET_HOST","features":[324]},{"name":"SECBUFFER_TOKEN","features":[324]},{"name":"SECBUFFER_TOKEN_BINDING","features":[324]},{"name":"SECBUFFER_TRAFFIC_SECRETS","features":[324]},{"name":"SECBUFFER_UNMAPPED","features":[324]},{"name":"SECBUFFER_VERSION","features":[324]},{"name":"SECPKGCONTEXT_CIPHERINFO_V1","features":[324]},{"name":"SECPKGCONTEXT_CONNECTION_INFO_EX_V1","features":[324]},{"name":"SECPKG_ANSI_ATTRIBUTE","features":[324]},{"name":"SECPKG_APP_MODE_INFO","features":[303,324]},{"name":"SECPKG_ATTR","features":[324]},{"name":"SECPKG_ATTR_ACCESS_TOKEN","features":[324]},{"name":"SECPKG_ATTR_APPLICATION_PROTOCOL","features":[324]},{"name":"SECPKG_ATTR_APP_DATA","features":[324]},{"name":"SECPKG_ATTR_AUTHENTICATION_ID","features":[324]},{"name":"SECPKG_ATTR_AUTHORITY","features":[324]},{"name":"SECPKG_ATTR_CC_POLICY_RESULT","features":[324]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT","features":[324]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT_INPROC","features":[324]},{"name":"SECPKG_ATTR_CERT_TRUST_STATUS","features":[324]},{"name":"SECPKG_ATTR_CIPHER_INFO","features":[324]},{"name":"SECPKG_ATTR_CIPHER_STRENGTHS","features":[324]},{"name":"SECPKG_ATTR_CLIENT_CERT_POLICY","features":[324]},{"name":"SECPKG_ATTR_CLIENT_SPECIFIED_TARGET","features":[324]},{"name":"SECPKG_ATTR_CONNECTION_INFO","features":[324]},{"name":"SECPKG_ATTR_CONNECTION_INFO_EX","features":[324]},{"name":"SECPKG_ATTR_CONTEXT_DELETED","features":[324]},{"name":"SECPKG_ATTR_CREDENTIAL_NAME","features":[324]},{"name":"SECPKG_ATTR_CREDS","features":[324]},{"name":"SECPKG_ATTR_CREDS_2","features":[324]},{"name":"SECPKG_ATTR_C_ACCESS_TOKEN","features":[324]},{"name":"SECPKG_ATTR_C_FULL_ACCESS_TOKEN","features":[324]},{"name":"SECPKG_ATTR_DCE_INFO","features":[324]},{"name":"SECPKG_ATTR_DTLS_MTU","features":[324]},{"name":"SECPKG_ATTR_EAP_KEY_BLOCK","features":[324]},{"name":"SECPKG_ATTR_EAP_PRF_INFO","features":[324]},{"name":"SECPKG_ATTR_EARLY_START","features":[324]},{"name":"SECPKG_ATTR_ENDPOINT_BINDINGS","features":[324]},{"name":"SECPKG_ATTR_FLAGS","features":[324]},{"name":"SECPKG_ATTR_ISSUER_LIST","features":[324]},{"name":"SECPKG_ATTR_ISSUER_LIST_EX","features":[324]},{"name":"SECPKG_ATTR_IS_LOOPBACK","features":[324]},{"name":"SECPKG_ATTR_KEYING_MATERIAL","features":[324]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INFO","features":[324]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INPROC","features":[324]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_TOKEN_BINDING","features":[324]},{"name":"SECPKG_ATTR_KEY_INFO","features":[324]},{"name":"SECPKG_ATTR_LAST_CLIENT_TOKEN_STATUS","features":[324]},{"name":"SECPKG_ATTR_LCT_STATUS","features":[324]},{"name":"SECPKG_ATTR_LIFESPAN","features":[324]},{"name":"SECPKG_ATTR_LOCAL_CERT_CONTEXT","features":[324]},{"name":"SECPKG_ATTR_LOCAL_CERT_INFO","features":[324]},{"name":"SECPKG_ATTR_LOCAL_CRED","features":[324]},{"name":"SECPKG_ATTR_LOGOFF_TIME","features":[324]},{"name":"SECPKG_ATTR_MAPPED_CRED_ATTR","features":[324]},{"name":"SECPKG_ATTR_NAMES","features":[324]},{"name":"SECPKG_ATTR_NATIVE_NAMES","features":[324]},{"name":"SECPKG_ATTR_NEGOTIATED_TLS_EXTENSIONS","features":[324]},{"name":"SECPKG_ATTR_NEGOTIATION_INFO","features":[324]},{"name":"SECPKG_ATTR_NEGOTIATION_PACKAGE","features":[324]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_KERBEROS","features":[324]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_NTLM","features":[324]},{"name":"SECPKG_ATTR_NEGO_KEYS","features":[324]},{"name":"SECPKG_ATTR_NEGO_PKG_INFO","features":[324]},{"name":"SECPKG_ATTR_NEGO_STATUS","features":[324]},{"name":"SECPKG_ATTR_PACKAGE_INFO","features":[324]},{"name":"SECPKG_ATTR_PASSWORD_EXPIRY","features":[324]},{"name":"SECPKG_ATTR_PROMPTING_NEEDED","features":[324]},{"name":"SECPKG_ATTR_PROTO_INFO","features":[324]},{"name":"SECPKG_ATTR_REMOTE_CERTIFICATES","features":[324]},{"name":"SECPKG_ATTR_REMOTE_CERT_CHAIN","features":[324]},{"name":"SECPKG_ATTR_REMOTE_CERT_CONTEXT","features":[324]},{"name":"SECPKG_ATTR_REMOTE_CRED","features":[324]},{"name":"SECPKG_ATTR_ROOT_STORE","features":[324]},{"name":"SECPKG_ATTR_SASL_CONTEXT","features":[324]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT","features":[324]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT_INPROC","features":[324]},{"name":"SECPKG_ATTR_SERVER_AUTH_FLAGS","features":[324]},{"name":"SECPKG_ATTR_SESSION_INFO","features":[324]},{"name":"SECPKG_ATTR_SESSION_KEY","features":[324]},{"name":"SECPKG_ATTR_SESSION_TICKET_KEYS","features":[324]},{"name":"SECPKG_ATTR_SIZES","features":[324]},{"name":"SECPKG_ATTR_SRTP_PARAMETERS","features":[324]},{"name":"SECPKG_ATTR_STREAM_SIZES","features":[324]},{"name":"SECPKG_ATTR_SUBJECT_SECURITY_ATTRIBUTES","features":[324]},{"name":"SECPKG_ATTR_SUPPORTED_ALGS","features":[324]},{"name":"SECPKG_ATTR_SUPPORTED_PROTOCOLS","features":[324]},{"name":"SECPKG_ATTR_SUPPORTED_SIGNATURES","features":[324]},{"name":"SECPKG_ATTR_TARGET","features":[324]},{"name":"SECPKG_ATTR_TARGET_INFORMATION","features":[324]},{"name":"SECPKG_ATTR_THUNK_ALL","features":[324]},{"name":"SECPKG_ATTR_TOKEN_BINDING","features":[324]},{"name":"SECPKG_ATTR_UI_INFO","features":[324]},{"name":"SECPKG_ATTR_UNIQUE_BINDINGS","features":[324]},{"name":"SECPKG_ATTR_USER_FLAGS","features":[324]},{"name":"SECPKG_ATTR_USE_NCRYPT","features":[324]},{"name":"SECPKG_ATTR_USE_VALIDATED","features":[324]},{"name":"SECPKG_BYTE_VECTOR","features":[324]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER","features":[324]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_AUTHCAPABLE","features":[324]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_UPNCAPABLE","features":[324]},{"name":"SECPKG_CALLFLAGS_FORCE_SUPPLIED","features":[324]},{"name":"SECPKG_CALL_ANSI","features":[324]},{"name":"SECPKG_CALL_ASYNC_UPDATE","features":[324]},{"name":"SECPKG_CALL_BUFFER_MARSHAL","features":[324]},{"name":"SECPKG_CALL_CLEANUP","features":[324]},{"name":"SECPKG_CALL_CLOUDAP_CONNECT","features":[324]},{"name":"SECPKG_CALL_INFO","features":[324]},{"name":"SECPKG_CALL_IN_PROC","features":[324]},{"name":"SECPKG_CALL_IS_TCB","features":[324]},{"name":"SECPKG_CALL_KERNEL_MODE","features":[324]},{"name":"SECPKG_CALL_NEGO","features":[324]},{"name":"SECPKG_CALL_NEGO_EXTENDER","features":[324]},{"name":"SECPKG_CALL_NETWORK_ONLY","features":[324]},{"name":"SECPKG_CALL_PACKAGE_MESSAGE_TYPE","features":[324]},{"name":"SECPKG_CALL_PACKAGE_PIN_DC_REQUEST","features":[324]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST","features":[303,324]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_CLEANUP_CREDENTIALS","features":[324]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_OPTIMISTIC_LOGON","features":[324]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_TO_SSO_SESSION","features":[324]},{"name":"SECPKG_CALL_PACKAGE_UNPIN_ALL_DCS_REQUEST","features":[324]},{"name":"SECPKG_CALL_PROCESS_TERM","features":[324]},{"name":"SECPKG_CALL_RECURSIVE","features":[324]},{"name":"SECPKG_CALL_SYSTEM_PROC","features":[324]},{"name":"SECPKG_CALL_THREAD_TERM","features":[324]},{"name":"SECPKG_CALL_UNLOCK","features":[324]},{"name":"SECPKG_CALL_URGENT","features":[324]},{"name":"SECPKG_CALL_WINLOGON","features":[324]},{"name":"SECPKG_CALL_WOWA32","features":[324]},{"name":"SECPKG_CALL_WOWCLIENT","features":[324]},{"name":"SECPKG_CALL_WOWX86","features":[324]},{"name":"SECPKG_CLIENT_INFO","features":[303,324]},{"name":"SECPKG_CLIENT_INFO_EX","features":[303,324]},{"name":"SECPKG_CLIENT_PROCESS_TERMINATED","features":[324]},{"name":"SECPKG_CLIENT_THREAD_TERMINATED","features":[324]},{"name":"SECPKG_CONTEXT_EXPORT_DELETE_OLD","features":[324]},{"name":"SECPKG_CONTEXT_EXPORT_RESET_NEW","features":[324]},{"name":"SECPKG_CONTEXT_EXPORT_TO_KERNEL","features":[324]},{"name":"SECPKG_CONTEXT_THUNKS","features":[324]},{"name":"SECPKG_CRED","features":[324]},{"name":"SECPKG_CREDENTIAL","features":[303,324]},{"name":"SECPKG_CREDENTIAL_ATTRIBUTE","features":[324]},{"name":"SECPKG_CREDENTIAL_FLAGS_CALLER_HAS_TCB","features":[324]},{"name":"SECPKG_CREDENTIAL_FLAGS_CREDMAN_CRED","features":[324]},{"name":"SECPKG_CREDENTIAL_VERSION","features":[324]},{"name":"SECPKG_CRED_ATTR_CERT","features":[324]},{"name":"SECPKG_CRED_ATTR_KDC_PROXY_SETTINGS","features":[324]},{"name":"SECPKG_CRED_ATTR_NAMES","features":[324]},{"name":"SECPKG_CRED_ATTR_PAC_BYPASS","features":[324]},{"name":"SECPKG_CRED_ATTR_SSI_PROVIDER","features":[324]},{"name":"SECPKG_CRED_AUTOLOGON_RESTRICTED","features":[324]},{"name":"SECPKG_CRED_BOTH","features":[324]},{"name":"SECPKG_CRED_CLASS","features":[324]},{"name":"SECPKG_CRED_DEFAULT","features":[324]},{"name":"SECPKG_CRED_INBOUND","features":[324]},{"name":"SECPKG_CRED_OUTBOUND","features":[324]},{"name":"SECPKG_CRED_PROCESS_POLICY_ONLY","features":[324]},{"name":"SECPKG_CRED_RESERVED","features":[324]},{"name":"SECPKG_DLL_FUNCTIONS","features":[303,324]},{"name":"SECPKG_EVENT_NOTIFY","features":[324]},{"name":"SECPKG_EVENT_PACKAGE_CHANGE","features":[324]},{"name":"SECPKG_EVENT_ROLE_CHANGE","features":[324]},{"name":"SECPKG_EXTENDED_INFORMATION","features":[324]},{"name":"SECPKG_EXTENDED_INFORMATION_CLASS","features":[324]},{"name":"SECPKG_EXTRA_OIDS","features":[324]},{"name":"SECPKG_FLAG_ACCEPT_WIN32_NAME","features":[324]},{"name":"SECPKG_FLAG_APPCONTAINER_CHECKS","features":[324]},{"name":"SECPKG_FLAG_APPCONTAINER_PASSTHROUGH","features":[324]},{"name":"SECPKG_FLAG_APPLY_LOOPBACK","features":[324]},{"name":"SECPKG_FLAG_ASCII_BUFFERS","features":[324]},{"name":"SECPKG_FLAG_CLIENT_ONLY","features":[324]},{"name":"SECPKG_FLAG_CONNECTION","features":[324]},{"name":"SECPKG_FLAG_CREDENTIAL_ISOLATION_ENABLED","features":[324]},{"name":"SECPKG_FLAG_DATAGRAM","features":[324]},{"name":"SECPKG_FLAG_DELEGATION","features":[324]},{"name":"SECPKG_FLAG_EXTENDED_ERROR","features":[324]},{"name":"SECPKG_FLAG_FRAGMENT","features":[324]},{"name":"SECPKG_FLAG_GSS_COMPATIBLE","features":[324]},{"name":"SECPKG_FLAG_IMPERSONATION","features":[324]},{"name":"SECPKG_FLAG_INTEGRITY","features":[324]},{"name":"SECPKG_FLAG_LOGON","features":[324]},{"name":"SECPKG_FLAG_MULTI_REQUIRED","features":[324]},{"name":"SECPKG_FLAG_MUTUAL_AUTH","features":[324]},{"name":"SECPKG_FLAG_NEGOTIABLE","features":[324]},{"name":"SECPKG_FLAG_NEGOTIABLE2","features":[324]},{"name":"SECPKG_FLAG_NEGO_EXTENDER","features":[324]},{"name":"SECPKG_FLAG_PRIVACY","features":[324]},{"name":"SECPKG_FLAG_READONLY_WITH_CHECKSUM","features":[324]},{"name":"SECPKG_FLAG_RESTRICTED_TOKENS","features":[324]},{"name":"SECPKG_FLAG_STREAM","features":[324]},{"name":"SECPKG_FLAG_TOKEN_ONLY","features":[324]},{"name":"SECPKG_FUNCTION_TABLE","features":[303,324,476,338]},{"name":"SECPKG_GSS_INFO","features":[324]},{"name":"SECPKG_ID_NONE","features":[324]},{"name":"SECPKG_INTERFACE_VERSION","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_10","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_11","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_2","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_3","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_4","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_5","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_6","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_7","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_8","features":[324]},{"name":"SECPKG_INTERFACE_VERSION_9","features":[324]},{"name":"SECPKG_KERNEL_FUNCTIONS","features":[303,324,309]},{"name":"SECPKG_KERNEL_FUNCTION_TABLE","features":[303,324,309]},{"name":"SECPKG_LSAMODEINIT_NAME","features":[324]},{"name":"SECPKG_MAX_OID_LENGTH","features":[324]},{"name":"SECPKG_MSVAV_FLAGS_VALID","features":[324]},{"name":"SECPKG_MSVAV_TIMESTAMP_VALID","features":[324]},{"name":"SECPKG_MUTUAL_AUTH_LEVEL","features":[324]},{"name":"SECPKG_NAME_TYPE","features":[324]},{"name":"SECPKG_NEGO2_INFO","features":[324]},{"name":"SECPKG_NEGOTIATION_COMPLETE","features":[324]},{"name":"SECPKG_NEGOTIATION_DIRECT","features":[324]},{"name":"SECPKG_NEGOTIATION_IN_PROGRESS","features":[324]},{"name":"SECPKG_NEGOTIATION_OPTIMISTIC","features":[324]},{"name":"SECPKG_NEGOTIATION_TRY_MULTICRED","features":[324]},{"name":"SECPKG_NTLM_TARGETINFO","features":[303,324]},{"name":"SECPKG_OPTIONS_PERMANENT","features":[324]},{"name":"SECPKG_OPTIONS_TYPE_LSA","features":[324]},{"name":"SECPKG_OPTIONS_TYPE_SSPI","features":[324]},{"name":"SECPKG_OPTIONS_TYPE_UNKNOWN","features":[324]},{"name":"SECPKG_PACKAGE_CHANGE_LOAD","features":[324]},{"name":"SECPKG_PACKAGE_CHANGE_SELECT","features":[324]},{"name":"SECPKG_PACKAGE_CHANGE_TYPE","features":[324]},{"name":"SECPKG_PACKAGE_CHANGE_UNLOAD","features":[324]},{"name":"SECPKG_PARAMETERS","features":[303,324]},{"name":"SECPKG_POST_LOGON_USER_INFO","features":[303,324]},{"name":"SECPKG_PRIMARY_CRED","features":[303,324]},{"name":"SECPKG_PRIMARY_CRED_EX","features":[303,324]},{"name":"SECPKG_PRIMARY_CRED_EX_FLAGS_EX_DELEGATION_TOKEN","features":[324]},{"name":"SECPKG_REDIRECTED_LOGON_BUFFER","features":[303,324]},{"name":"SECPKG_REDIRECTED_LOGON_GUID_INITIALIZER","features":[324]},{"name":"SECPKG_SERIALIZED_OID","features":[324]},{"name":"SECPKG_SESSIONINFO_TYPE","features":[324]},{"name":"SECPKG_SHORT_VECTOR","features":[324]},{"name":"SECPKG_STATE_CRED_ISOLATION_ENABLED","features":[324]},{"name":"SECPKG_STATE_DOMAIN_CONTROLLER","features":[324]},{"name":"SECPKG_STATE_ENCRYPTION_PERMITTED","features":[324]},{"name":"SECPKG_STATE_RESERVED_1","features":[324]},{"name":"SECPKG_STATE_STANDALONE","features":[324]},{"name":"SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED","features":[324]},{"name":"SECPKG_STATE_WORKSTATION","features":[324]},{"name":"SECPKG_SUPPLEMENTAL_CRED","features":[324]},{"name":"SECPKG_SUPPLEMENTAL_CRED_ARRAY","features":[324]},{"name":"SECPKG_SUPPLIED_CREDENTIAL","features":[324]},{"name":"SECPKG_SURROGATE_LOGON","features":[303,324]},{"name":"SECPKG_SURROGATE_LOGON_ENTRY","features":[324]},{"name":"SECPKG_SURROGATE_LOGON_VERSION_1","features":[324]},{"name":"SECPKG_TARGETINFO","features":[303,324]},{"name":"SECPKG_UNICODE_ATTRIBUTE","features":[324]},{"name":"SECPKG_USERMODEINIT_NAME","features":[324]},{"name":"SECPKG_USER_FUNCTION_TABLE","features":[303,324]},{"name":"SECPKG_WOW_CLIENT_DLL","features":[324]},{"name":"SECQOP_WRAP_NO_ENCRYPT","features":[324]},{"name":"SECQOP_WRAP_OOB_DATA","features":[324]},{"name":"SECRET_QUERY_VALUE","features":[324]},{"name":"SECRET_SET_VALUE","features":[324]},{"name":"SECURITY_ENTRYPOINT","features":[324]},{"name":"SECURITY_ENTRYPOINT16","features":[324]},{"name":"SECURITY_ENTRYPOINT_ANSI","features":[324]},{"name":"SECURITY_ENTRYPOINT_ANSIA","features":[324]},{"name":"SECURITY_ENTRYPOINT_ANSIW","features":[324]},{"name":"SECURITY_LOGON_SESSION_DATA","features":[303,324]},{"name":"SECURITY_LOGON_TYPE","features":[324]},{"name":"SECURITY_NATIVE_DREP","features":[324]},{"name":"SECURITY_NETWORK_DREP","features":[324]},{"name":"SECURITY_PACKAGE_OPTIONS","features":[324]},{"name":"SECURITY_PACKAGE_OPTIONS_TYPE","features":[324]},{"name":"SECURITY_STRING","features":[324]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION","features":[324]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_2","features":[324]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_3","features":[324]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_4","features":[324]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_5","features":[324]},{"name":"SECURITY_USER_DATA","features":[303,324]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[324]},{"name":"SEC_APPLICATION_PROTOCOL_LIST","features":[324]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_EXT","features":[324]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_STATUS","features":[324]},{"name":"SEC_CERTIFICATE_REQUEST_CONTEXT","features":[324]},{"name":"SEC_CHANNEL_BINDINGS","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_AUDIT_BINDINGS","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_EX","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_ABSENT","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_CLIENT_SUPPORT","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISMATCH","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISSING","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MATCHED","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MISSING","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_PROXY","features":[324]},{"name":"SEC_CHANNEL_BINDINGS_VALID_FLAGS","features":[324]},{"name":"SEC_DTLS_MTU","features":[324]},{"name":"SEC_FLAGS","features":[324]},{"name":"SEC_GET_KEY_FN","features":[324]},{"name":"SEC_NEGOTIATION_INFO","features":[324]},{"name":"SEC_PRESHAREDKEY","features":[324]},{"name":"SEC_PRESHAREDKEY_IDENTITY","features":[324]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[324]},{"name":"SEC_SRTP_PROTECTION_PROFILES","features":[324]},{"name":"SEC_TOKEN_BINDING","features":[324]},{"name":"SEC_TRAFFIC_SECRETS","features":[324]},{"name":"SEC_TRAFFIC_SECRET_TYPE","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY32","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_FOR_SYSTEM","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_LOGON","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_PROCESS","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX2","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX32","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXA","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXW","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_ID_PROVIDER","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_DOMAIN","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_USER","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_PROCESS_ENCRYPTED","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_RESERVED","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_NO_CHECKBOX","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_BY_CALLER","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_CHECKED","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_USE_MASK","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_ENCRYPTED","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_PROTECTED","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_USER_PROTECTED","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_INFO","features":[324,320]},{"name":"SEC_WINNT_AUTH_IDENTITY_MARSHALLED","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_ONLY","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION","features":[324]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION_2","features":[324]},{"name":"SEND_GENERIC_TLS_EXTENSION","features":[324]},{"name":"SESSION_TICKET_INFO_V0","features":[324]},{"name":"SESSION_TICKET_INFO_VERSION","features":[324]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_A","features":[324,476]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_W","features":[324,476]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_A","features":[324,476]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_W","features":[324,476]},{"name":"SE_ADT_ACCESS_REASON","features":[324]},{"name":"SE_ADT_CLAIMS","features":[324]},{"name":"SE_ADT_OBJECT_ONLY","features":[324]},{"name":"SE_ADT_OBJECT_TYPE","features":[324]},{"name":"SE_ADT_PARAMETERS_SELF_RELATIVE","features":[324]},{"name":"SE_ADT_PARAMETERS_SEND_TO_LSA","features":[324]},{"name":"SE_ADT_PARAMETER_ARRAY","features":[324]},{"name":"SE_ADT_PARAMETER_ARRAY_ENTRY","features":[324]},{"name":"SE_ADT_PARAMETER_ARRAY_EX","features":[324]},{"name":"SE_ADT_PARAMETER_EXTENSIBLE_AUDIT","features":[324]},{"name":"SE_ADT_PARAMETER_GENERIC_AUDIT","features":[324]},{"name":"SE_ADT_PARAMETER_TYPE","features":[324]},{"name":"SE_ADT_PARAMETER_WRITE_SYNCHRONOUS","features":[324]},{"name":"SE_ADT_POLICY_AUDIT_EVENT_TYPE_EX_BEGIN","features":[324]},{"name":"SE_BATCH_LOGON_NAME","features":[324]},{"name":"SE_DENY_BATCH_LOGON_NAME","features":[324]},{"name":"SE_DENY_INTERACTIVE_LOGON_NAME","features":[324]},{"name":"SE_DENY_NETWORK_LOGON_NAME","features":[324]},{"name":"SE_DENY_REMOTE_INTERACTIVE_LOGON_NAME","features":[324]},{"name":"SE_DENY_SERVICE_LOGON_NAME","features":[324]},{"name":"SE_INTERACTIVE_LOGON_NAME","features":[324]},{"name":"SE_MAX_AUDIT_PARAMETERS","features":[324]},{"name":"SE_MAX_GENERIC_AUDIT_PARAMETERS","features":[324]},{"name":"SE_NETWORK_LOGON_NAME","features":[324]},{"name":"SE_REMOTE_INTERACTIVE_LOGON_NAME","features":[324]},{"name":"SE_SERVICE_LOGON_NAME","features":[324]},{"name":"SLAcquireGenuineTicket","features":[324]},{"name":"SLActivateProduct","features":[324]},{"name":"SLClose","features":[324]},{"name":"SLConsumeRight","features":[324]},{"name":"SLDATATYPE","features":[324]},{"name":"SLDepositOfflineConfirmationId","features":[324]},{"name":"SLDepositOfflineConfirmationIdEx","features":[324]},{"name":"SLFireEvent","features":[324]},{"name":"SLGenerateOfflineInstallationId","features":[324]},{"name":"SLGenerateOfflineInstallationIdEx","features":[324]},{"name":"SLGetApplicationInformation","features":[324]},{"name":"SLGetGenuineInformation","features":[324]},{"name":"SLGetInstalledProductKeyIds","features":[324]},{"name":"SLGetLicense","features":[324]},{"name":"SLGetLicenseFileId","features":[324]},{"name":"SLGetLicenseInformation","features":[324]},{"name":"SLGetLicensingStatusInformation","features":[324]},{"name":"SLGetPKeyId","features":[324]},{"name":"SLGetPKeyInformation","features":[324]},{"name":"SLGetPolicyInformation","features":[324]},{"name":"SLGetPolicyInformationDWORD","features":[324]},{"name":"SLGetProductSkuInformation","features":[324]},{"name":"SLGetReferralInformation","features":[324]},{"name":"SLGetSLIDList","features":[324]},{"name":"SLGetServerStatus","features":[324]},{"name":"SLGetServiceInformation","features":[324]},{"name":"SLGetWindowsInformation","features":[324]},{"name":"SLGetWindowsInformationDWORD","features":[324]},{"name":"SLIDTYPE","features":[324]},{"name":"SLInstallLicense","features":[324]},{"name":"SLInstallProofOfPurchase","features":[324]},{"name":"SLIsGenuineLocal","features":[324]},{"name":"SLLICENSINGSTATUS","features":[324]},{"name":"SLOpen","features":[324]},{"name":"SLQueryLicenseValueFromApp","features":[324]},{"name":"SLREFERRALTYPE","features":[324]},{"name":"SLRegisterEvent","features":[303,324]},{"name":"SLSetCurrentProductKey","features":[324]},{"name":"SLSetGenuineInformation","features":[324]},{"name":"SLUninstallLicense","features":[324]},{"name":"SLUninstallProofOfPurchase","features":[324]},{"name":"SLUnregisterEvent","features":[303,324]},{"name":"SL_ACTIVATION_INFO_HEADER","features":[324]},{"name":"SL_ACTIVATION_TYPE","features":[324]},{"name":"SL_ACTIVATION_TYPE_ACTIVE_DIRECTORY","features":[324]},{"name":"SL_ACTIVATION_TYPE_DEFAULT","features":[324]},{"name":"SL_AD_ACTIVATION_INFO","features":[324]},{"name":"SL_CLIENTAPI_ZONE","features":[324]},{"name":"SL_DATA_BINARY","features":[324]},{"name":"SL_DATA_DWORD","features":[324]},{"name":"SL_DATA_MULTI_SZ","features":[324]},{"name":"SL_DATA_NONE","features":[324]},{"name":"SL_DATA_SUM","features":[324]},{"name":"SL_DATA_SZ","features":[324]},{"name":"SL_DEFAULT_MIGRATION_ENCRYPTOR_URI","features":[324]},{"name":"SL_EVENT_LICENSING_STATE_CHANGED","features":[324]},{"name":"SL_EVENT_POLICY_CHANGED","features":[324]},{"name":"SL_EVENT_USER_NOTIFICATION","features":[324]},{"name":"SL_E_ACTIVATION_IN_PROGRESS","features":[324]},{"name":"SL_E_APPLICATION_POLICIES_MISSING","features":[324]},{"name":"SL_E_APPLICATION_POLICIES_NOT_LOADED","features":[324]},{"name":"SL_E_AUTHN_CANT_VERIFY","features":[324]},{"name":"SL_E_AUTHN_CHALLENGE_NOT_SET","features":[324]},{"name":"SL_E_AUTHN_MISMATCHED_KEY","features":[324]},{"name":"SL_E_AUTHN_WRONG_VERSION","features":[324]},{"name":"SL_E_BASE_SKU_NOT_AVAILABLE","features":[324]},{"name":"SL_E_BIOS_KEY","features":[324]},{"name":"SL_E_BLOCKED_PRODUCT_KEY","features":[324]},{"name":"SL_E_CHPA_ACTCONFIG_ID_NOT_FOUND","features":[324]},{"name":"SL_E_CHPA_BINDING_MAPPING_NOT_FOUND","features":[324]},{"name":"SL_E_CHPA_BINDING_NOT_FOUND","features":[324]},{"name":"SL_E_CHPA_BUSINESS_RULE_INPUT_NOT_FOUND","features":[324]},{"name":"SL_E_CHPA_DATABASE_ERROR","features":[324]},{"name":"SL_E_CHPA_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[324]},{"name":"SL_E_CHPA_DIGITALMARKER_INVALID_BINDING","features":[324]},{"name":"SL_E_CHPA_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[324]},{"name":"SL_E_CHPA_DMAK_LIMIT_EXCEEDED","features":[324]},{"name":"SL_E_CHPA_DYNAMICALLY_BLOCKED_PRODUCT_KEY","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCTKEY_BINDING","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCT_KEY_PROPERTY","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCTKEY_BINDING","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_PROPERTY","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_RECORD","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_PROCESS_PRODUCT_KEY_BINDINGS_XML","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCTKEY_BINDING","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_PROPERTY","features":[324]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_RECORD","features":[324]},{"name":"SL_E_CHPA_GENERAL_ERROR","features":[324]},{"name":"SL_E_CHPA_INVALID_ACTCONFIG_ID","features":[324]},{"name":"SL_E_CHPA_INVALID_ARGUMENT","features":[324]},{"name":"SL_E_CHPA_INVALID_BINDING","features":[324]},{"name":"SL_E_CHPA_INVALID_BINDING_URI","features":[324]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA","features":[324]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA_ID","features":[324]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY","features":[324]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_CHAR","features":[324]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_FORMAT","features":[324]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_LENGTH","features":[324]},{"name":"SL_E_CHPA_MAXIMUM_UNLOCK_EXCEEDED","features":[324]},{"name":"SL_E_CHPA_MSCH_RESPONSE_NOT_AVAILABLE_VGA","features":[324]},{"name":"SL_E_CHPA_NETWORK_ERROR","features":[324]},{"name":"SL_E_CHPA_NO_RULES_TO_ACTIVATE","features":[324]},{"name":"SL_E_CHPA_NULL_VALUE_FOR_PROPERTY_NAME_OR_ID","features":[324]},{"name":"SL_E_CHPA_OEM_SLP_COA0","features":[324]},{"name":"SL_E_CHPA_OVERRIDE_REQUEST_NOT_FOUND","features":[324]},{"name":"SL_E_CHPA_PRODUCT_KEY_BEING_USED","features":[324]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED","features":[324]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[324]},{"name":"SL_E_CHPA_PRODUCT_KEY_OUT_OF_RANGE","features":[324]},{"name":"SL_E_CHPA_REISSUANCE_LIMIT_NOT_FOUND","features":[324]},{"name":"SL_E_CHPA_RESPONSE_NOT_AVAILABLE","features":[324]},{"name":"SL_E_CHPA_SYSTEM_ERROR","features":[324]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[324]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[324]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[324]},{"name":"SL_E_CHPA_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[324]},{"name":"SL_E_CHPA_UNKNOWN_PRODUCT_KEY_TYPE","features":[324]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_ID","features":[324]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_NAME","features":[324]},{"name":"SL_E_CHPA_UNSUPPORTED_PRODUCT_KEY","features":[324]},{"name":"SL_E_CIDIID_INVALID_CHECK_DIGITS","features":[324]},{"name":"SL_E_CIDIID_INVALID_DATA","features":[324]},{"name":"SL_E_CIDIID_INVALID_DATA_LENGTH","features":[324]},{"name":"SL_E_CIDIID_INVALID_VERSION","features":[324]},{"name":"SL_E_CIDIID_MISMATCHED","features":[324]},{"name":"SL_E_CIDIID_MISMATCHED_PKEY","features":[324]},{"name":"SL_E_CIDIID_NOT_BOUND","features":[324]},{"name":"SL_E_CIDIID_NOT_DEPOSITED","features":[324]},{"name":"SL_E_CIDIID_VERSION_NOT_SUPPORTED","features":[324]},{"name":"SL_E_DATATYPE_MISMATCHED","features":[324]},{"name":"SL_E_DECRYPTION_LICENSES_NOT_AVAILABLE","features":[324]},{"name":"SL_E_DEPENDENT_PROPERTY_NOT_SET","features":[324]},{"name":"SL_E_DOWNLEVEL_SETUP_KEY","features":[324]},{"name":"SL_E_DUPLICATE_POLICY","features":[324]},{"name":"SL_E_EDITION_MISMATCHED","features":[324]},{"name":"SL_E_ENGINE_DETECTED_EXPLOIT","features":[324]},{"name":"SL_E_EUL_CONSUMPTION_FAILED","features":[324]},{"name":"SL_E_EUL_NOT_AVAILABLE","features":[324]},{"name":"SL_E_EVALUATION_FAILED","features":[324]},{"name":"SL_E_EVENT_ALREADY_REGISTERED","features":[324]},{"name":"SL_E_EVENT_NOT_REGISTERED","features":[324]},{"name":"SL_E_EXTERNAL_SIGNATURE_NOT_FOUND","features":[324]},{"name":"SL_E_GRACE_TIME_EXPIRED","features":[324]},{"name":"SL_E_HEALTH_CHECK_FAILED_MUI_FILES","features":[324]},{"name":"SL_E_HEALTH_CHECK_FAILED_NEUTRAL_FILES","features":[324]},{"name":"SL_E_HWID_CHANGED","features":[324]},{"name":"SL_E_HWID_ERROR","features":[324]},{"name":"SL_E_IA_ID_MISMATCH","features":[324]},{"name":"SL_E_IA_INVALID_VIRTUALIZATION_PLATFORM","features":[324]},{"name":"SL_E_IA_MACHINE_NOT_BOUND","features":[324]},{"name":"SL_E_IA_PARENT_PARTITION_NOT_ACTIVATED","features":[324]},{"name":"SL_E_IA_THROTTLE_LIMIT_EXCEEDED","features":[324]},{"name":"SL_E_INTERNAL_ERROR","features":[324]},{"name":"SL_E_INVALID_AD_DATA","features":[324]},{"name":"SL_E_INVALID_BINDING_BLOB","features":[324]},{"name":"SL_E_INVALID_CLIENT_TOKEN","features":[324]},{"name":"SL_E_INVALID_CONTEXT","features":[324]},{"name":"SL_E_INVALID_CONTEXT_DATA","features":[324]},{"name":"SL_E_INVALID_EVENT_ID","features":[324]},{"name":"SL_E_INVALID_FILE_HASH","features":[324]},{"name":"SL_E_INVALID_GUID","features":[324]},{"name":"SL_E_INVALID_HASH","features":[324]},{"name":"SL_E_INVALID_LICENSE","features":[324]},{"name":"SL_E_INVALID_LICENSE_STATE","features":[324]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE","features":[324]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE_EXPIRED","features":[324]},{"name":"SL_E_INVALID_OEM_OR_VOLUME_BINDING_DATA","features":[324]},{"name":"SL_E_INVALID_OFFLINE_BLOB","features":[324]},{"name":"SL_E_INVALID_OSVERSION_TEMPLATEID","features":[324]},{"name":"SL_E_INVALID_OS_FOR_PRODUCT_KEY","features":[324]},{"name":"SL_E_INVALID_PACKAGE","features":[324]},{"name":"SL_E_INVALID_PACKAGE_VERSION","features":[324]},{"name":"SL_E_INVALID_PKEY","features":[324]},{"name":"SL_E_INVALID_PRODUCT_KEY","features":[324]},{"name":"SL_E_INVALID_PRODUCT_KEY_TYPE","features":[324]},{"name":"SL_E_INVALID_RSDP_COUNT","features":[324]},{"name":"SL_E_INVALID_RULESET_RULE","features":[324]},{"name":"SL_E_INVALID_RUNNING_MODE","features":[324]},{"name":"SL_E_INVALID_TEMPLATE_ID","features":[324]},{"name":"SL_E_INVALID_TOKEN_DATA","features":[324]},{"name":"SL_E_INVALID_USE_OF_ADD_ON_PKEY","features":[324]},{"name":"SL_E_INVALID_XML_BLOB","features":[324]},{"name":"SL_E_IP_LOCATION_FALIED","features":[324]},{"name":"SL_E_ISSUANCE_LICENSE_NOT_INSTALLED","features":[324]},{"name":"SL_E_LICENSE_AUTHORIZATION_FAILED","features":[324]},{"name":"SL_E_LICENSE_DECRYPTION_FAILED","features":[324]},{"name":"SL_E_LICENSE_FILE_NOT_INSTALLED","features":[324]},{"name":"SL_E_LICENSE_INVALID_ADDON_INFO","features":[324]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_DUPLICATED","features":[324]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_NOT_FOUND","features":[324]},{"name":"SL_E_LICENSE_NOT_BOUND","features":[324]},{"name":"SL_E_LICENSE_SERVER_URL_NOT_FOUND","features":[324]},{"name":"SL_E_LICENSE_SIGNATURE_VERIFICATION_FAILED","features":[324]},{"name":"SL_E_LUA_ACCESSDENIED","features":[324]},{"name":"SL_E_MISMATCHED_APPID","features":[324]},{"name":"SL_E_MISMATCHED_KEY_TYPES","features":[324]},{"name":"SL_E_MISMATCHED_PID","features":[324]},{"name":"SL_E_MISMATCHED_PKEY_RANGE","features":[324]},{"name":"SL_E_MISMATCHED_PRODUCT_SKU","features":[324]},{"name":"SL_E_MISMATCHED_SECURITY_PROCESSOR","features":[324]},{"name":"SL_E_MISSING_OVERRIDE_ONLY_ATTRIBUTE","features":[324]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED","features":[324]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED_2","features":[324]},{"name":"SL_E_NON_GENUINE_STATUS_LAST","features":[324]},{"name":"SL_E_NOTIFICATION_BREACH_DETECTED","features":[324]},{"name":"SL_E_NOTIFICATION_GRACE_EXPIRED","features":[324]},{"name":"SL_E_NOTIFICATION_OTHER_REASONS","features":[324]},{"name":"SL_E_NOT_ACTIVATED","features":[324]},{"name":"SL_E_NOT_EVALUATED","features":[324]},{"name":"SL_E_NOT_GENUINE","features":[324]},{"name":"SL_E_NOT_SUPPORTED","features":[324]},{"name":"SL_E_NO_PID_CONFIG_DATA","features":[324]},{"name":"SL_E_NO_PRODUCT_KEY_FOUND","features":[324]},{"name":"SL_E_OEM_KEY_EDITION_MISMATCH","features":[324]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_NOT_FOUND","features":[324]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_REVOKED","features":[324]},{"name":"SL_E_OFFLINE_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[324]},{"name":"SL_E_OPERATION_NOT_ALLOWED","features":[324]},{"name":"SL_E_OUT_OF_TOLERANCE","features":[324]},{"name":"SL_E_PKEY_INTERNAL_ERROR","features":[324]},{"name":"SL_E_PKEY_INVALID_ALGORITHM","features":[324]},{"name":"SL_E_PKEY_INVALID_CONFIG","features":[324]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE1","features":[324]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE2","features":[324]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE3","features":[324]},{"name":"SL_E_PKEY_INVALID_UNIQUEID","features":[324]},{"name":"SL_E_PKEY_INVALID_UPGRADE","features":[324]},{"name":"SL_E_PKEY_NOT_INSTALLED","features":[324]},{"name":"SL_E_PLUGIN_INVALID_MANIFEST","features":[324]},{"name":"SL_E_PLUGIN_NOT_REGISTERED","features":[324]},{"name":"SL_E_POLICY_CACHE_INVALID","features":[324]},{"name":"SL_E_POLICY_OTHERINFO_MISMATCH","features":[324]},{"name":"SL_E_PRODUCT_KEY_INSTALLATION_NOT_ALLOWED","features":[324]},{"name":"SL_E_PRODUCT_SKU_NOT_INSTALLED","features":[324]},{"name":"SL_E_PRODUCT_UNIQUENESS_GROUP_ID_INVALID","features":[324]},{"name":"SL_E_PROXY_KEY_NOT_FOUND","features":[324]},{"name":"SL_E_PROXY_POLICY_NOT_UPDATED","features":[324]},{"name":"SL_E_PUBLISHING_LICENSE_NOT_INSTALLED","features":[324]},{"name":"SL_E_RAC_NOT_AVAILABLE","features":[324]},{"name":"SL_E_RIGHT_NOT_CONSUMED","features":[324]},{"name":"SL_E_RIGHT_NOT_GRANTED","features":[324]},{"name":"SL_E_SECURE_STORE_ID_MISMATCH","features":[324]},{"name":"SL_E_SERVICE_RUNNING","features":[324]},{"name":"SL_E_SERVICE_STOPPING","features":[324]},{"name":"SL_E_SFS_BAD_TOKEN_EXT","features":[324]},{"name":"SL_E_SFS_BAD_TOKEN_NAME","features":[324]},{"name":"SL_E_SFS_DUPLICATE_TOKEN_NAME","features":[324]},{"name":"SL_E_SFS_FILE_READ_ERROR","features":[324]},{"name":"SL_E_SFS_FILE_WRITE_ERROR","features":[324]},{"name":"SL_E_SFS_INVALID_FD_TABLE","features":[324]},{"name":"SL_E_SFS_INVALID_FILE_POSITION","features":[324]},{"name":"SL_E_SFS_INVALID_FS_HEADER","features":[324]},{"name":"SL_E_SFS_INVALID_FS_VERSION","features":[324]},{"name":"SL_E_SFS_INVALID_SYNC","features":[324]},{"name":"SL_E_SFS_INVALID_TOKEN_DATA_HASH","features":[324]},{"name":"SL_E_SFS_INVALID_TOKEN_DESCRIPTOR","features":[324]},{"name":"SL_E_SFS_NO_ACTIVE_TRANSACTION","features":[324]},{"name":"SL_E_SFS_TOKEN_SIZE_MISMATCH","features":[324]},{"name":"SL_E_SLP_BAD_FORMAT","features":[324]},{"name":"SL_E_SLP_INVALID_MARKER_VERSION","features":[324]},{"name":"SL_E_SLP_MISSING_ACPI_SLIC","features":[324]},{"name":"SL_E_SLP_MISSING_SLP_MARKER","features":[324]},{"name":"SL_E_SLP_NOT_SIGNED","features":[324]},{"name":"SL_E_SLP_OEM_CERT_MISSING","features":[324]},{"name":"SL_E_SOFTMOD_EXPLOIT_DETECTED","features":[324]},{"name":"SL_E_SPC_NOT_AVAILABLE","features":[324]},{"name":"SL_E_SRV_AUTHORIZATION_FAILED","features":[324]},{"name":"SL_E_SRV_BUSINESS_TOKEN_ENTRY_NOT_FOUND","features":[324]},{"name":"SL_E_SRV_CLIENT_CLOCK_OUT_OF_SYNC","features":[324]},{"name":"SL_E_SRV_GENERAL_ERROR","features":[324]},{"name":"SL_E_SRV_INVALID_BINDING","features":[324]},{"name":"SL_E_SRV_INVALID_LICENSE_STRUCTURE","features":[324]},{"name":"SL_E_SRV_INVALID_PAYLOAD","features":[324]},{"name":"SL_E_SRV_INVALID_PRODUCT_KEY_LICENSE","features":[324]},{"name":"SL_E_SRV_INVALID_PUBLISH_LICENSE","features":[324]},{"name":"SL_E_SRV_INVALID_RIGHTS_ACCOUNT_LICENSE","features":[324]},{"name":"SL_E_SRV_INVALID_SECURITY_PROCESSOR_LICENSE","features":[324]},{"name":"SL_E_SRV_SERVER_PONG","features":[324]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_AUTHORIZED","features":[324]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_PRS_SIGNED","features":[324]},{"name":"SL_E_STORE_UPGRADE_TOKEN_REQUIRED","features":[324]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_EDITION","features":[324]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_PID","features":[324]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_VERSION","features":[324]},{"name":"SL_E_TAMPER_DETECTED","features":[324]},{"name":"SL_E_TAMPER_RECOVERY_REQUIRES_ACTIVATION","features":[324]},{"name":"SL_E_TKA_CERT_CNG_NOT_AVAILABLE","features":[324]},{"name":"SL_E_TKA_CERT_NOT_FOUND","features":[324]},{"name":"SL_E_TKA_CHALLENGE_EXPIRED","features":[324]},{"name":"SL_E_TKA_CHALLENGE_MISMATCH","features":[324]},{"name":"SL_E_TKA_CRITERIA_MISMATCH","features":[324]},{"name":"SL_E_TKA_FAILED_GRANT_PARSING","features":[324]},{"name":"SL_E_TKA_GRANT_NOT_FOUND","features":[324]},{"name":"SL_E_TKA_INVALID_BLOB","features":[324]},{"name":"SL_E_TKA_INVALID_CERTIFICATE","features":[324]},{"name":"SL_E_TKA_INVALID_CERT_CHAIN","features":[324]},{"name":"SL_E_TKA_INVALID_SKU_ID","features":[324]},{"name":"SL_E_TKA_INVALID_SMARTCARD","features":[324]},{"name":"SL_E_TKA_INVALID_THUMBPRINT","features":[324]},{"name":"SL_E_TKA_SILENT_ACTIVATION_FAILURE","features":[324]},{"name":"SL_E_TKA_SOFT_CERT_DISALLOWED","features":[324]},{"name":"SL_E_TKA_SOFT_CERT_INVALID","features":[324]},{"name":"SL_E_TKA_TAMPERED_CERT_CHAIN","features":[324]},{"name":"SL_E_TKA_THUMBPRINT_CERT_NOT_FOUND","features":[324]},{"name":"SL_E_TKA_TPID_MISMATCH","features":[324]},{"name":"SL_E_TOKEN_STORE_INVALID_STATE","features":[324]},{"name":"SL_E_TOKSTO_ALREADY_INITIALIZED","features":[324]},{"name":"SL_E_TOKSTO_CANT_ACQUIRE_MUTEX","features":[324]},{"name":"SL_E_TOKSTO_CANT_CREATE_FILE","features":[324]},{"name":"SL_E_TOKSTO_CANT_CREATE_MUTEX","features":[324]},{"name":"SL_E_TOKSTO_CANT_PARSE_PROPERTIES","features":[324]},{"name":"SL_E_TOKSTO_CANT_READ_FILE","features":[324]},{"name":"SL_E_TOKSTO_CANT_WRITE_TO_FILE","features":[324]},{"name":"SL_E_TOKSTO_INVALID_FILE","features":[324]},{"name":"SL_E_TOKSTO_NOT_INITIALIZED","features":[324]},{"name":"SL_E_TOKSTO_NO_ID_SET","features":[324]},{"name":"SL_E_TOKSTO_NO_PROPERTIES","features":[324]},{"name":"SL_E_TOKSTO_NO_TOKEN_DATA","features":[324]},{"name":"SL_E_TOKSTO_PROPERTY_NOT_FOUND","features":[324]},{"name":"SL_E_TOKSTO_TOKEN_NOT_FOUND","features":[324]},{"name":"SL_E_USE_LICENSE_NOT_INSTALLED","features":[324]},{"name":"SL_E_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[324]},{"name":"SL_E_VALIDATION_BLOCKED_PRODUCT_KEY","features":[324]},{"name":"SL_E_VALIDATION_INVALID_PRODUCT_KEY","features":[324]},{"name":"SL_E_VALIDITY_PERIOD_EXPIRED","features":[324]},{"name":"SL_E_VALIDITY_TIME_EXPIRED","features":[324]},{"name":"SL_E_VALUE_NOT_FOUND","features":[324]},{"name":"SL_E_VL_AD_AO_NAME_TOO_LONG","features":[324]},{"name":"SL_E_VL_AD_AO_NOT_FOUND","features":[324]},{"name":"SL_E_VL_AD_SCHEMA_VERSION_NOT_SUPPORTED","features":[324]},{"name":"SL_E_VL_BINDING_SERVICE_NOT_ENABLED","features":[324]},{"name":"SL_E_VL_BINDING_SERVICE_UNAVAILABLE","features":[324]},{"name":"SL_E_VL_INFO_PRODUCT_USER_RIGHT","features":[324]},{"name":"SL_E_VL_INVALID_TIMESTAMP","features":[324]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_ID_MISMATCH","features":[324]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_NOT_ACTIVATED","features":[324]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_VM_NOT_SUPPORTED","features":[324]},{"name":"SL_E_VL_MACHINE_NOT_BOUND","features":[324]},{"name":"SL_E_VL_NOT_ENOUGH_COUNT","features":[324]},{"name":"SL_E_VL_NOT_WINDOWS_SLP","features":[324]},{"name":"SL_E_WINDOWS_INVALID_LICENSE_STATE","features":[324]},{"name":"SL_E_WINDOWS_VERSION_MISMATCH","features":[324]},{"name":"SL_GENUINE_STATE","features":[324]},{"name":"SL_GEN_STATE_INVALID_LICENSE","features":[324]},{"name":"SL_GEN_STATE_IS_GENUINE","features":[324]},{"name":"SL_GEN_STATE_LAST","features":[324]},{"name":"SL_GEN_STATE_OFFLINE","features":[324]},{"name":"SL_GEN_STATE_TAMPERED","features":[324]},{"name":"SL_ID_ALL_LICENSES","features":[324]},{"name":"SL_ID_ALL_LICENSE_FILES","features":[324]},{"name":"SL_ID_APPLICATION","features":[324]},{"name":"SL_ID_LAST","features":[324]},{"name":"SL_ID_LICENSE","features":[324]},{"name":"SL_ID_LICENSE_FILE","features":[324]},{"name":"SL_ID_PKEY","features":[324]},{"name":"SL_ID_PRODUCT_SKU","features":[324]},{"name":"SL_ID_STORE_TOKEN","features":[324]},{"name":"SL_INFO_KEY_ACTIVE_PLUGINS","features":[324]},{"name":"SL_INFO_KEY_AUTHOR","features":[324]},{"name":"SL_INFO_KEY_BIOS_OA2_MINOR_VERSION","features":[324]},{"name":"SL_INFO_KEY_BIOS_PKEY","features":[324]},{"name":"SL_INFO_KEY_BIOS_PKEY_DESCRIPTION","features":[324]},{"name":"SL_INFO_KEY_BIOS_PKEY_PKPN","features":[324]},{"name":"SL_INFO_KEY_BIOS_SLIC_STATE","features":[324]},{"name":"SL_INFO_KEY_CHANNEL","features":[324]},{"name":"SL_INFO_KEY_DESCRIPTION","features":[324]},{"name":"SL_INFO_KEY_DIGITAL_PID","features":[324]},{"name":"SL_INFO_KEY_DIGITAL_PID2","features":[324]},{"name":"SL_INFO_KEY_IS_KMS","features":[324]},{"name":"SL_INFO_KEY_IS_PRS","features":[324]},{"name":"SL_INFO_KEY_KMS_CURRENT_COUNT","features":[324]},{"name":"SL_INFO_KEY_KMS_FAILED_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_KMS_LICENSED_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_KMS_NON_GENUINE_GRACE_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_KMS_NOTIFICATION_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_KMS_OOB_GRACE_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_KMS_OOT_GRACE_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_KMS_REQUIRED_CLIENT_COUNT","features":[324]},{"name":"SL_INFO_KEY_KMS_TOTAL_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_KMS_UNLICENSED_REQUESTS","features":[324]},{"name":"SL_INFO_KEY_LICENSE_TYPE","features":[324]},{"name":"SL_INFO_KEY_LICENSOR_URL","features":[324]},{"name":"SL_INFO_KEY_NAME","features":[324]},{"name":"SL_INFO_KEY_PARTIAL_PRODUCT_KEY","features":[324]},{"name":"SL_INFO_KEY_PRODUCT_KEY_ACTIVATION_URL","features":[324]},{"name":"SL_INFO_KEY_PRODUCT_SKU_ID","features":[324]},{"name":"SL_INFO_KEY_RIGHT_ACCOUNT_ACTIVATION_URL","features":[324]},{"name":"SL_INFO_KEY_SECURE_PROCESSOR_ACTIVATION_URL","features":[324]},{"name":"SL_INFO_KEY_SECURE_STORE_ID","features":[324]},{"name":"SL_INFO_KEY_SYSTEM_STATE","features":[324]},{"name":"SL_INFO_KEY_USE_LICENSE_ACTIVATION_URL","features":[324]},{"name":"SL_INFO_KEY_VERSION","features":[324]},{"name":"SL_INTERNAL_ZONE","features":[324]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD","features":[324]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD_2","features":[324]},{"name":"SL_I_OOB_GRACE_PERIOD","features":[324]},{"name":"SL_I_OOT_GRACE_PERIOD","features":[324]},{"name":"SL_I_PERPETUAL_OOB_GRACE_PERIOD","features":[324]},{"name":"SL_I_STORE_BASED_ACTIVATION","features":[324]},{"name":"SL_I_TIMEBASED_EXTENDED_GRACE_PERIOD","features":[324]},{"name":"SL_I_TIMEBASED_VALIDITY_PERIOD","features":[324]},{"name":"SL_LICENSING_STATUS","features":[324]},{"name":"SL_LICENSING_STATUS_IN_GRACE_PERIOD","features":[324]},{"name":"SL_LICENSING_STATUS_LAST","features":[324]},{"name":"SL_LICENSING_STATUS_LICENSED","features":[324]},{"name":"SL_LICENSING_STATUS_NOTIFICATION","features":[324]},{"name":"SL_LICENSING_STATUS_UNLICENSED","features":[324]},{"name":"SL_MDOLLAR_ZONE","features":[324]},{"name":"SL_MSCH_ZONE","features":[324]},{"name":"SL_NONGENUINE_UI_OPTIONS","features":[324]},{"name":"SL_PKEY_DETECT","features":[324]},{"name":"SL_PKEY_MS2005","features":[324]},{"name":"SL_PKEY_MS2009","features":[324]},{"name":"SL_POLICY_EVALUATION_MODE_ENABLED","features":[324]},{"name":"SL_PROP_ACTIVATION_VALIDATION_IN_PROGRESS","features":[324]},{"name":"SL_PROP_BRT_COMMIT","features":[324]},{"name":"SL_PROP_BRT_DATA","features":[324]},{"name":"SL_PROP_GENUINE_RESULT","features":[324]},{"name":"SL_PROP_GET_GENUINE_AUTHZ","features":[324]},{"name":"SL_PROP_GET_GENUINE_SERVER_AUTHZ","features":[324]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_HRESULT","features":[324]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_SERVER_FLAGS","features":[324]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_TIME","features":[324]},{"name":"SL_PROP_NONGENUINE_GRACE_FLAG","features":[324]},{"name":"SL_REARM_REBOOT_REQUIRED","features":[324]},{"name":"SL_REFERRALTYPE_APPID","features":[324]},{"name":"SL_REFERRALTYPE_BEST_MATCH","features":[324]},{"name":"SL_REFERRALTYPE_OVERRIDE_APPID","features":[324]},{"name":"SL_REFERRALTYPE_OVERRIDE_SKUID","features":[324]},{"name":"SL_REFERRALTYPE_SKUID","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_CHECK_DIGITS","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA_LENGTH","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_VERSION","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_INVALID_BINDING","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_LIMIT_EXCEEDED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_OVERRIDE_LIMIT_REACHED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_FREE_OFFER_EXPIRED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ACTCONFIG_ID","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ARGUMENT","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING_URI","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA_ID","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_FORMAT","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_LENGTH","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_MAXIMUM_UNLOCK_EXCEEDED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_NO_RULES_TO_ACTIVATE","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OEM_SLP_COA0","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_BLOCKED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_THROTTLED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DONOR_HWID_NO_ENTITLEMENT","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GENERIC_ERROR","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GP_DISABLED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_HARDWARE_BLOCKED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_BLOCKED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_THROTTLED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NOT_ADMIN","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NO_ASSOCIATION","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_BLOCKED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_THROTTLED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_OUT_OF_RANGE","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_ROT_OVERRIDE_LIMIT_REACHED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[324]},{"name":"SL_REMAPPING_MDOLLAR_UNSUPPORTED_PRODUCT_KEY","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_BAD_GET_INFO_QUERY","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_HANDLE_NOT_COMMITED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_ALGORITHM_TYPE","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_HANDLE","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_KEY_LENGTH","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_LICENSE","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_NO_AES_PROVIDER","features":[324]},{"name":"SL_REMAPPING_SP_PUB_API_TOO_MANY_LOADED_ENVIRONMENTS","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_HASH_FINALIZED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCK","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCKLENGTH","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHER","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHERMODE","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_FORMAT","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_KEYLENGTH","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_PADDING","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURE","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURELENGTH","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_AVAILABLE","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_FOUND","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_NOT_BLOCK_ALIGNED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_ATTRIBUTEID","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_HASHID","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_KEYID","features":[324]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_PROVIDERID","features":[324]},{"name":"SL_REMAPPING_SP_PUB_GENERAL_NOT_INITIALIZED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_IDENTICAL","features":[324]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_POLICY_CHANGED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER","features":[324]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER_RESTORE_FAILED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_PROXY_SOFT_TAMPER","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_MODULE_AUTHENTICATION","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_SECURITY_PROCESSOR_PATCHED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TIMER_ALREADY_EXISTS","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TIMER_EXPIRED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NAME_SIZE_TOO_BIG","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NOT_FOUND","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TIMER_READ_ONLY","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TRUSTED_TIME_OK","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_ACCESS_DENIED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_NOT_FOUND","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_READ_ONLY","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_DATA_SIZE_TOO_BIG","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_ALREADY_EXISTS","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_NOT_FOUND","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_SIZE_TOO_BIG","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_READ_ONLY","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_FULL","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_INVALID_HW_BINDING","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_MAX_REARM_REACHED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_IN_USE","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_NOT_FOUND","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_REARMED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_RECREATED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_GENERATION","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_LOAD_INVALID","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_BREADCRUMB_MISMATCH","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_VERSION_MISMATCH","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_INVALID_DATA","features":[324]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_NO_DATA","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_ALREADY_EXISTS","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_DEBUGGER_DETECTED","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_GENERIC_FAILURE","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_INSUFFICIENT_BUFFER","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDARG","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDDATA","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_CALL","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_VERSION","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_NO_MORE_DATA","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_PUSHKEY_CONFLICT","features":[324]},{"name":"SL_REMAPPING_SP_STATUS_SYSTEM_TIME_SKEWED","features":[324]},{"name":"SL_SERVER_ZONE","features":[324]},{"name":"SL_SYSTEM_POLICY_INFORMATION","features":[324]},{"name":"SL_SYSTEM_STATE_REBOOT_POLICY_FOUND","features":[324]},{"name":"SL_SYSTEM_STATE_TAMPERED","features":[324]},{"name":"SPP_MIGRATION_GATHER_ACTIVATED_WINDOWS_STATE","features":[324]},{"name":"SPP_MIGRATION_GATHER_ALL","features":[324]},{"name":"SPP_MIGRATION_GATHER_MIGRATABLE_APPS","features":[324]},{"name":"SP_ACCEPT_CREDENTIALS_NAME","features":[324]},{"name":"SP_PROT_ALL","features":[324]},{"name":"SP_PROT_DTLS1_0_CLIENT","features":[324]},{"name":"SP_PROT_DTLS1_0_SERVER","features":[324]},{"name":"SP_PROT_DTLS1_2_CLIENT","features":[324]},{"name":"SP_PROT_DTLS1_2_SERVER","features":[324]},{"name":"SP_PROT_DTLS_CLIENT","features":[324]},{"name":"SP_PROT_DTLS_SERVER","features":[324]},{"name":"SP_PROT_NONE","features":[324]},{"name":"SP_PROT_PCT1_CLIENT","features":[324]},{"name":"SP_PROT_PCT1_SERVER","features":[324]},{"name":"SP_PROT_SSL2_CLIENT","features":[324]},{"name":"SP_PROT_SSL2_SERVER","features":[324]},{"name":"SP_PROT_SSL3_CLIENT","features":[324]},{"name":"SP_PROT_SSL3_SERVER","features":[324]},{"name":"SP_PROT_TLS1_0_CLIENT","features":[324]},{"name":"SP_PROT_TLS1_0_SERVER","features":[324]},{"name":"SP_PROT_TLS1_1_CLIENT","features":[324]},{"name":"SP_PROT_TLS1_1_SERVER","features":[324]},{"name":"SP_PROT_TLS1_2_CLIENT","features":[324]},{"name":"SP_PROT_TLS1_2_SERVER","features":[324]},{"name":"SP_PROT_TLS1_3PLUS_CLIENT","features":[324]},{"name":"SP_PROT_TLS1_3PLUS_SERVER","features":[324]},{"name":"SP_PROT_TLS1_3_CLIENT","features":[324]},{"name":"SP_PROT_TLS1_3_SERVER","features":[324]},{"name":"SP_PROT_TLS1_CLIENT","features":[324]},{"name":"SP_PROT_TLS1_SERVER","features":[324]},{"name":"SP_PROT_UNI_CLIENT","features":[324]},{"name":"SP_PROT_UNI_SERVER","features":[324]},{"name":"SR_SECURITY_DESCRIPTOR","features":[324]},{"name":"SSL2SP_NAME","features":[324]},{"name":"SSL2SP_NAME_A","features":[324]},{"name":"SSL2SP_NAME_W","features":[324]},{"name":"SSL3SP_NAME","features":[324]},{"name":"SSL3SP_NAME_A","features":[324]},{"name":"SSL3SP_NAME_W","features":[324]},{"name":"SSL_CRACK_CERTIFICATE_FN","features":[303,324,387]},{"name":"SSL_CRACK_CERTIFICATE_NAME","features":[324]},{"name":"SSL_CREDENTIAL_CERTIFICATE","features":[324]},{"name":"SSL_EMPTY_CACHE_FN_A","features":[303,324]},{"name":"SSL_EMPTY_CACHE_FN_W","features":[303,324]},{"name":"SSL_FREE_CERTIFICATE_FN","features":[303,324,387]},{"name":"SSL_FREE_CERTIFICATE_NAME","features":[324]},{"name":"SSL_SESSION_DISABLE_RECONNECTS","features":[324]},{"name":"SSL_SESSION_ENABLE_RECONNECTS","features":[324]},{"name":"SSL_SESSION_RECONNECT","features":[324]},{"name":"SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[324]},{"name":"SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[324]},{"name":"SSPIPFC_NO_CHECKBOX","features":[324]},{"name":"SSPIPFC_SAVE_CRED_BY_CALLER","features":[324]},{"name":"SSPIPFC_USE_CREDUIBROKER","features":[324]},{"name":"SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[324]},{"name":"SZ_ALG_MAX_SIZE","features":[324]},{"name":"SaslAcceptSecurityContext","features":[324,476]},{"name":"SaslEnumerateProfilesA","features":[324]},{"name":"SaslEnumerateProfilesW","features":[324]},{"name":"SaslGetContextOption","features":[324,476]},{"name":"SaslGetProfilePackageA","features":[324]},{"name":"SaslGetProfilePackageW","features":[324]},{"name":"SaslIdentifyPackageA","features":[324]},{"name":"SaslIdentifyPackageW","features":[324]},{"name":"SaslInitializeSecurityContextA","features":[324,476]},{"name":"SaslInitializeSecurityContextW","features":[324,476]},{"name":"SaslSetContextOption","features":[324,476]},{"name":"Sasl_AuthZIDForbidden","features":[324]},{"name":"Sasl_AuthZIDProcessed","features":[324]},{"name":"SchGetExtensionsOptions","features":[324]},{"name":"SeAdtParmTypeAccessMask","features":[324]},{"name":"SeAdtParmTypeAccessReason","features":[324]},{"name":"SeAdtParmTypeClaims","features":[324]},{"name":"SeAdtParmTypeDateTime","features":[324]},{"name":"SeAdtParmTypeDuration","features":[324]},{"name":"SeAdtParmTypeFileSpec","features":[324]},{"name":"SeAdtParmTypeGuid","features":[324]},{"name":"SeAdtParmTypeHexInt64","features":[324]},{"name":"SeAdtParmTypeHexUlong","features":[324]},{"name":"SeAdtParmTypeLogonHours","features":[324]},{"name":"SeAdtParmTypeLogonId","features":[324]},{"name":"SeAdtParmTypeLogonIdAsSid","features":[324]},{"name":"SeAdtParmTypeLogonIdEx","features":[324]},{"name":"SeAdtParmTypeLogonIdNoSid","features":[324]},{"name":"SeAdtParmTypeLuid","features":[324]},{"name":"SeAdtParmTypeMessage","features":[324]},{"name":"SeAdtParmTypeMultiSzString","features":[324]},{"name":"SeAdtParmTypeNoLogonId","features":[324]},{"name":"SeAdtParmTypeNoUac","features":[324]},{"name":"SeAdtParmTypeNone","features":[324]},{"name":"SeAdtParmTypeObjectTypes","features":[324]},{"name":"SeAdtParmTypePrivs","features":[324]},{"name":"SeAdtParmTypePtr","features":[324]},{"name":"SeAdtParmTypeResourceAttribute","features":[324]},{"name":"SeAdtParmTypeSD","features":[324]},{"name":"SeAdtParmTypeSid","features":[324]},{"name":"SeAdtParmTypeSidList","features":[324]},{"name":"SeAdtParmTypeSockAddr","features":[324]},{"name":"SeAdtParmTypeSockAddrNoPort","features":[324]},{"name":"SeAdtParmTypeStagingReason","features":[324]},{"name":"SeAdtParmTypeString","features":[324]},{"name":"SeAdtParmTypeStringList","features":[324]},{"name":"SeAdtParmTypeTime","features":[324]},{"name":"SeAdtParmTypeUlong","features":[324]},{"name":"SeAdtParmTypeUlongNoConv","features":[324]},{"name":"SeAdtParmTypeUserAccountControl","features":[324]},{"name":"SecApplicationProtocolNegotiationExt_ALPN","features":[324]},{"name":"SecApplicationProtocolNegotiationExt_NPN","features":[324]},{"name":"SecApplicationProtocolNegotiationExt_None","features":[324]},{"name":"SecApplicationProtocolNegotiationStatus_None","features":[324]},{"name":"SecApplicationProtocolNegotiationStatus_SelectedClientOnly","features":[324]},{"name":"SecApplicationProtocolNegotiationStatus_Success","features":[324]},{"name":"SecBuffer","features":[324]},{"name":"SecBufferDesc","features":[324]},{"name":"SecDelegationType","features":[324]},{"name":"SecDirectory","features":[324]},{"name":"SecFull","features":[324]},{"name":"SecNameAlternateId","features":[324]},{"name":"SecNameDN","features":[324]},{"name":"SecNameFlat","features":[324]},{"name":"SecNameSPN","features":[324]},{"name":"SecNameSamCompatible","features":[324]},{"name":"SecObject","features":[324]},{"name":"SecPkgAttrLastClientTokenMaybe","features":[324]},{"name":"SecPkgAttrLastClientTokenNo","features":[324]},{"name":"SecPkgAttrLastClientTokenYes","features":[324]},{"name":"SecPkgCallPackageMaxMessage","features":[324]},{"name":"SecPkgCallPackageMinMessage","features":[324]},{"name":"SecPkgCallPackagePinDcMessage","features":[324]},{"name":"SecPkgCallPackageTransferCredMessage","features":[324]},{"name":"SecPkgCallPackageUnpinAllDcsMessage","features":[324]},{"name":"SecPkgContext_AccessToken","features":[324]},{"name":"SecPkgContext_ApplicationProtocol","features":[324]},{"name":"SecPkgContext_AuthorityA","features":[324]},{"name":"SecPkgContext_AuthorityW","features":[324]},{"name":"SecPkgContext_AuthzID","features":[324]},{"name":"SecPkgContext_Bindings","features":[324]},{"name":"SecPkgContext_CertInfo","features":[324]},{"name":"SecPkgContext_CertificateValidationResult","features":[324]},{"name":"SecPkgContext_Certificates","features":[324]},{"name":"SecPkgContext_CipherInfo","features":[324]},{"name":"SecPkgContext_ClientCertPolicyResult","features":[324]},{"name":"SecPkgContext_ClientSpecifiedTarget","features":[324]},{"name":"SecPkgContext_ConnectionInfo","features":[324,387]},{"name":"SecPkgContext_ConnectionInfoEx","features":[324]},{"name":"SecPkgContext_CredInfo","features":[324]},{"name":"SecPkgContext_CredentialNameA","features":[324]},{"name":"SecPkgContext_CredentialNameW","features":[324]},{"name":"SecPkgContext_DceInfo","features":[324]},{"name":"SecPkgContext_EapKeyBlock","features":[324]},{"name":"SecPkgContext_EapPrfInfo","features":[324]},{"name":"SecPkgContext_EarlyStart","features":[324]},{"name":"SecPkgContext_Flags","features":[324]},{"name":"SecPkgContext_IssuerListInfoEx","features":[324,387]},{"name":"SecPkgContext_KeyInfoA","features":[324]},{"name":"SecPkgContext_KeyInfoW","features":[324]},{"name":"SecPkgContext_KeyingMaterial","features":[324]},{"name":"SecPkgContext_KeyingMaterialInfo","features":[324]},{"name":"SecPkgContext_KeyingMaterial_Inproc","features":[324]},{"name":"SecPkgContext_LastClientTokenStatus","features":[324]},{"name":"SecPkgContext_Lifespan","features":[324]},{"name":"SecPkgContext_LocalCredentialInfo","features":[324]},{"name":"SecPkgContext_LogoffTime","features":[324]},{"name":"SecPkgContext_MappedCredAttr","features":[324]},{"name":"SecPkgContext_NamesA","features":[324]},{"name":"SecPkgContext_NamesW","features":[324]},{"name":"SecPkgContext_NativeNamesA","features":[324]},{"name":"SecPkgContext_NativeNamesW","features":[324]},{"name":"SecPkgContext_NegoKeys","features":[324]},{"name":"SecPkgContext_NegoPackageInfo","features":[324]},{"name":"SecPkgContext_NegoStatus","features":[324]},{"name":"SecPkgContext_NegotiatedTlsExtensions","features":[324]},{"name":"SecPkgContext_NegotiationInfoA","features":[324]},{"name":"SecPkgContext_NegotiationInfoW","features":[324]},{"name":"SecPkgContext_PackageInfoA","features":[324]},{"name":"SecPkgContext_PackageInfoW","features":[324]},{"name":"SecPkgContext_PasswordExpiry","features":[324]},{"name":"SecPkgContext_ProtoInfoA","features":[324]},{"name":"SecPkgContext_ProtoInfoW","features":[324]},{"name":"SecPkgContext_RemoteCredentialInfo","features":[324]},{"name":"SecPkgContext_SaslContext","features":[324]},{"name":"SecPkgContext_SessionAppData","features":[324]},{"name":"SecPkgContext_SessionInfo","features":[324]},{"name":"SecPkgContext_SessionKey","features":[324]},{"name":"SecPkgContext_Sizes","features":[324]},{"name":"SecPkgContext_SrtpParameters","features":[324]},{"name":"SecPkgContext_StreamSizes","features":[324]},{"name":"SecPkgContext_SubjectAttributes","features":[324]},{"name":"SecPkgContext_SupportedSignatures","features":[324]},{"name":"SecPkgContext_Target","features":[324]},{"name":"SecPkgContext_TargetInformation","features":[324]},{"name":"SecPkgContext_TokenBinding","features":[324]},{"name":"SecPkgContext_UiInfo","features":[303,324]},{"name":"SecPkgContext_UserFlags","features":[324]},{"name":"SecPkgCredClass_Ephemeral","features":[324]},{"name":"SecPkgCredClass_Explicit","features":[324]},{"name":"SecPkgCredClass_None","features":[324]},{"name":"SecPkgCredClass_PersistedGeneric","features":[324]},{"name":"SecPkgCredClass_PersistedSpecific","features":[324]},{"name":"SecPkgCred_CipherStrengths","features":[324]},{"name":"SecPkgCred_ClientCertPolicy","features":[303,324]},{"name":"SecPkgCred_SessionTicketKey","features":[324]},{"name":"SecPkgCred_SessionTicketKeys","features":[324]},{"name":"SecPkgCred_SupportedAlgs","features":[324,387]},{"name":"SecPkgCred_SupportedProtocols","features":[324]},{"name":"SecPkgCredentials_Cert","features":[324]},{"name":"SecPkgCredentials_KdcProxySettingsW","features":[324]},{"name":"SecPkgCredentials_NamesA","features":[324]},{"name":"SecPkgCredentials_NamesW","features":[324]},{"name":"SecPkgCredentials_SSIProviderA","features":[324]},{"name":"SecPkgCredentials_SSIProviderW","features":[324]},{"name":"SecPkgInfoA","features":[324]},{"name":"SecPkgInfoW","features":[324]},{"name":"SecService","features":[324]},{"name":"SecSessionPrimaryCred","features":[324]},{"name":"SecTrafficSecret_Client","features":[324]},{"name":"SecTrafficSecret_None","features":[324]},{"name":"SecTrafficSecret_Server","features":[324]},{"name":"SecTree","features":[324]},{"name":"SecpkgContextThunks","features":[324]},{"name":"SecpkgExtraOids","features":[324]},{"name":"SecpkgGssInfo","features":[324]},{"name":"SecpkgMaxInfo","features":[324]},{"name":"SecpkgMutualAuthLevel","features":[324]},{"name":"SecpkgNego2Info","features":[324]},{"name":"SecpkgWowClientDll","features":[324]},{"name":"SecurityFunctionTableA","features":[303,324,476]},{"name":"SecurityFunctionTableW","features":[303,324,476]},{"name":"SendSAS","features":[303,324]},{"name":"SetContextAttributesA","features":[324,476]},{"name":"SetContextAttributesW","features":[324,476]},{"name":"SetCredentialsAttributesA","features":[324,476]},{"name":"SetCredentialsAttributesW","features":[324,476]},{"name":"SpAcceptCredentialsFn","features":[303,324]},{"name":"SpAcceptLsaModeContextFn","features":[303,324]},{"name":"SpAcquireCredentialsHandleFn","features":[303,324]},{"name":"SpAddCredentialsFn","features":[303,324]},{"name":"SpApplyControlTokenFn","features":[303,324]},{"name":"SpChangeAccountPasswordFn","features":[303,324]},{"name":"SpCompleteAuthTokenFn","features":[303,324]},{"name":"SpDeleteContextFn","features":[303,324]},{"name":"SpDeleteCredentialsFn","features":[303,324]},{"name":"SpExchangeMetaDataFn","features":[303,324]},{"name":"SpExportSecurityContextFn","features":[303,324]},{"name":"SpExtractTargetInfoFn","features":[303,324]},{"name":"SpFormatCredentialsFn","features":[303,324]},{"name":"SpFreeCredentialsHandleFn","features":[303,324]},{"name":"SpGetContextTokenFn","features":[303,324]},{"name":"SpGetCredUIContextFn","features":[303,324]},{"name":"SpGetCredentialsFn","features":[303,324]},{"name":"SpGetExtendedInformationFn","features":[303,324]},{"name":"SpGetInfoFn","features":[303,324]},{"name":"SpGetRemoteCredGuardLogonBufferFn","features":[303,324]},{"name":"SpGetRemoteCredGuardSupplementalCredsFn","features":[303,324]},{"name":"SpGetTbalSupplementalCredsFn","features":[303,324]},{"name":"SpGetUserInfoFn","features":[303,324]},{"name":"SpImportSecurityContextFn","features":[303,324]},{"name":"SpInitLsaModeContextFn","features":[303,324]},{"name":"SpInitUserModeContextFn","features":[303,324]},{"name":"SpInitializeFn","features":[303,324,476,338]},{"name":"SpInstanceInitFn","features":[303,324]},{"name":"SpLsaModeInitializeFn","features":[303,324,476,338]},{"name":"SpMakeSignatureFn","features":[303,324]},{"name":"SpMarshalAttributeDataFn","features":[303,324]},{"name":"SpMarshallSupplementalCredsFn","features":[303,324]},{"name":"SpQueryContextAttributesFn","features":[303,324]},{"name":"SpQueryCredentialsAttributesFn","features":[303,324]},{"name":"SpQueryMetaDataFn","features":[303,324]},{"name":"SpSaveCredentialsFn","features":[303,324]},{"name":"SpSealMessageFn","features":[303,324]},{"name":"SpSetContextAttributesFn","features":[303,324]},{"name":"SpSetCredentialsAttributesFn","features":[303,324]},{"name":"SpSetExtendedInformationFn","features":[303,324]},{"name":"SpShutdownFn","features":[303,324]},{"name":"SpUnsealMessageFn","features":[303,324]},{"name":"SpUpdateCredentialsFn","features":[303,324]},{"name":"SpUserModeInitializeFn","features":[303,324]},{"name":"SpValidateTargetInfoFn","features":[303,324]},{"name":"SpVerifySignatureFn","features":[303,324]},{"name":"SslCrackCertificate","features":[303,324,387]},{"name":"SslDeserializeCertificateStore","features":[303,324,387]},{"name":"SslDeserializeCertificateStoreFn","features":[303,324,387]},{"name":"SslEmptyCacheA","features":[303,324]},{"name":"SslEmptyCacheW","features":[303,324]},{"name":"SslFreeCertificate","features":[303,324,387]},{"name":"SslGenerateRandomBits","features":[324]},{"name":"SslGetExtensions","features":[324]},{"name":"SslGetExtensionsFn","features":[324]},{"name":"SslGetMaximumKeySize","features":[324]},{"name":"SslGetServerIdentity","features":[324]},{"name":"SslGetServerIdentityFn","features":[324]},{"name":"SspiCompareAuthIdentities","features":[303,324]},{"name":"SspiCopyAuthIdentity","features":[324]},{"name":"SspiDecryptAuthIdentity","features":[324]},{"name":"SspiDecryptAuthIdentityEx","features":[324]},{"name":"SspiEncodeAuthIdentityAsStrings","features":[324]},{"name":"SspiEncodeStringsAsAuthIdentity","features":[324]},{"name":"SspiEncryptAuthIdentity","features":[324]},{"name":"SspiEncryptAuthIdentityEx","features":[324]},{"name":"SspiExcludePackage","features":[324]},{"name":"SspiFreeAuthIdentity","features":[324]},{"name":"SspiGetTargetHostName","features":[324]},{"name":"SspiIsAuthIdentityEncrypted","features":[303,324]},{"name":"SspiIsPromptingNeeded","features":[303,324]},{"name":"SspiLocalFree","features":[324]},{"name":"SspiMarshalAuthIdentity","features":[324]},{"name":"SspiPrepareForCredRead","features":[324]},{"name":"SspiPrepareForCredWrite","features":[324]},{"name":"SspiPromptForCredentialsA","features":[324]},{"name":"SspiPromptForCredentialsW","features":[324]},{"name":"SspiSetChannelBindingFlags","features":[324]},{"name":"SspiUnmarshalAuthIdentity","features":[324]},{"name":"SspiValidateAuthIdentity","features":[324]},{"name":"SspiZeroAuthIdentity","features":[324]},{"name":"TLS1SP_NAME","features":[324]},{"name":"TLS1SP_NAME_A","features":[324]},{"name":"TLS1SP_NAME_W","features":[324]},{"name":"TLS1_ALERT_ACCESS_DENIED","features":[324]},{"name":"TLS1_ALERT_BAD_CERTIFICATE","features":[324]},{"name":"TLS1_ALERT_BAD_RECORD_MAC","features":[324]},{"name":"TLS1_ALERT_CERTIFICATE_EXPIRED","features":[324]},{"name":"TLS1_ALERT_CERTIFICATE_REVOKED","features":[324]},{"name":"TLS1_ALERT_CERTIFICATE_UNKNOWN","features":[324]},{"name":"TLS1_ALERT_CLOSE_NOTIFY","features":[324]},{"name":"TLS1_ALERT_DECODE_ERROR","features":[324]},{"name":"TLS1_ALERT_DECOMPRESSION_FAIL","features":[324]},{"name":"TLS1_ALERT_DECRYPTION_FAILED","features":[324]},{"name":"TLS1_ALERT_DECRYPT_ERROR","features":[324]},{"name":"TLS1_ALERT_EXPORT_RESTRICTION","features":[324]},{"name":"TLS1_ALERT_FATAL","features":[324]},{"name":"TLS1_ALERT_HANDSHAKE_FAILURE","features":[324]},{"name":"TLS1_ALERT_ILLEGAL_PARAMETER","features":[324]},{"name":"TLS1_ALERT_INSUFFIENT_SECURITY","features":[324]},{"name":"TLS1_ALERT_INTERNAL_ERROR","features":[324]},{"name":"TLS1_ALERT_NO_APP_PROTOCOL","features":[324]},{"name":"TLS1_ALERT_NO_RENEGOTIATION","features":[324]},{"name":"TLS1_ALERT_PROTOCOL_VERSION","features":[324]},{"name":"TLS1_ALERT_RECORD_OVERFLOW","features":[324]},{"name":"TLS1_ALERT_UNEXPECTED_MESSAGE","features":[324]},{"name":"TLS1_ALERT_UNKNOWN_CA","features":[324]},{"name":"TLS1_ALERT_UNKNOWN_PSK_IDENTITY","features":[324]},{"name":"TLS1_ALERT_UNSUPPORTED_CERT","features":[324]},{"name":"TLS1_ALERT_UNSUPPORTED_EXT","features":[324]},{"name":"TLS1_ALERT_USER_CANCELED","features":[324]},{"name":"TLS1_ALERT_WARNING","features":[324]},{"name":"TLS_EXTENSION_SUBSCRIPTION","features":[324]},{"name":"TLS_PARAMETERS","features":[324]},{"name":"TLS_PARAMS_OPTIONAL","features":[324]},{"name":"TOKENBINDING_EXTENSION_FORMAT","features":[324]},{"name":"TOKENBINDING_EXTENSION_FORMAT_UNDEFINED","features":[324]},{"name":"TOKENBINDING_IDENTIFIER","features":[324]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE","features":[324]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ANYEXISTING","features":[324]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ECDSAP256","features":[324]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PKCS","features":[324]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PSS","features":[324]},{"name":"TOKENBINDING_KEY_TYPES","features":[324]},{"name":"TOKENBINDING_RESULT_DATA","features":[324]},{"name":"TOKENBINDING_RESULT_LIST","features":[324]},{"name":"TOKENBINDING_TYPE","features":[324]},{"name":"TOKENBINDING_TYPE_PROVIDED","features":[324]},{"name":"TOKENBINDING_TYPE_REFERRED","features":[324]},{"name":"TRUSTED_CONTROLLERS_INFO","features":[324]},{"name":"TRUSTED_DOMAIN_AUTH_INFORMATION","features":[324]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION","features":[303,324]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION2","features":[303,324]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX","features":[303,324]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX2","features":[303,324]},{"name":"TRUSTED_DOMAIN_NAME_INFO","features":[324]},{"name":"TRUSTED_DOMAIN_SUPPORTED_ENCRYPTION_TYPES","features":[324]},{"name":"TRUSTED_DOMAIN_TRUST_ATTRIBUTES","features":[324]},{"name":"TRUSTED_DOMAIN_TRUST_DIRECTION","features":[324]},{"name":"TRUSTED_DOMAIN_TRUST_TYPE","features":[324]},{"name":"TRUSTED_INFORMATION_CLASS","features":[324]},{"name":"TRUSTED_PASSWORD_INFO","features":[324]},{"name":"TRUSTED_POSIX_OFFSET_INFO","features":[324]},{"name":"TRUSTED_QUERY_AUTH","features":[324]},{"name":"TRUSTED_QUERY_CONTROLLERS","features":[324]},{"name":"TRUSTED_QUERY_DOMAIN_NAME","features":[324]},{"name":"TRUSTED_QUERY_POSIX","features":[324]},{"name":"TRUSTED_SET_AUTH","features":[324]},{"name":"TRUSTED_SET_CONTROLLERS","features":[324]},{"name":"TRUSTED_SET_POSIX","features":[324]},{"name":"TRUST_ATTRIBUTES_USER","features":[324]},{"name":"TRUST_ATTRIBUTES_VALID","features":[324]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION","features":[324]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_ENABLE_TGT_DELEGATION","features":[324]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_NO_TGT_DELEGATION","features":[324]},{"name":"TRUST_ATTRIBUTE_DISABLE_AUTH_TARGET_VALIDATION","features":[324]},{"name":"TRUST_ATTRIBUTE_FILTER_SIDS","features":[324]},{"name":"TRUST_ATTRIBUTE_FOREST_TRANSITIVE","features":[324]},{"name":"TRUST_ATTRIBUTE_NON_TRANSITIVE","features":[324]},{"name":"TRUST_ATTRIBUTE_PIM_TRUST","features":[324]},{"name":"TRUST_ATTRIBUTE_QUARANTINED_DOMAIN","features":[324]},{"name":"TRUST_ATTRIBUTE_TREAT_AS_EXTERNAL","features":[324]},{"name":"TRUST_ATTRIBUTE_TREE_PARENT","features":[324]},{"name":"TRUST_ATTRIBUTE_TREE_ROOT","features":[324]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_AES_KEYS","features":[324]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_RC4_ENCRYPTION","features":[324]},{"name":"TRUST_ATTRIBUTE_UPLEVEL_ONLY","features":[324]},{"name":"TRUST_ATTRIBUTE_WITHIN_FOREST","features":[324]},{"name":"TRUST_AUTH_TYPE_CLEAR","features":[324]},{"name":"TRUST_AUTH_TYPE_NONE","features":[324]},{"name":"TRUST_AUTH_TYPE_NT4OWF","features":[324]},{"name":"TRUST_AUTH_TYPE_VERSION","features":[324]},{"name":"TRUST_DIRECTION_BIDIRECTIONAL","features":[324]},{"name":"TRUST_DIRECTION_DISABLED","features":[324]},{"name":"TRUST_DIRECTION_INBOUND","features":[324]},{"name":"TRUST_DIRECTION_OUTBOUND","features":[324]},{"name":"TRUST_TYPE_AAD","features":[324]},{"name":"TRUST_TYPE_DCE","features":[324]},{"name":"TRUST_TYPE_DOWNLEVEL","features":[324]},{"name":"TRUST_TYPE_MIT","features":[324]},{"name":"TRUST_TYPE_UPLEVEL","features":[324]},{"name":"TlsHashAlgorithm_Md5","features":[324]},{"name":"TlsHashAlgorithm_None","features":[324]},{"name":"TlsHashAlgorithm_Sha1","features":[324]},{"name":"TlsHashAlgorithm_Sha224","features":[324]},{"name":"TlsHashAlgorithm_Sha256","features":[324]},{"name":"TlsHashAlgorithm_Sha384","features":[324]},{"name":"TlsHashAlgorithm_Sha512","features":[324]},{"name":"TlsParametersCngAlgUsageCertSig","features":[324]},{"name":"TlsParametersCngAlgUsageCipher","features":[324]},{"name":"TlsParametersCngAlgUsageDigest","features":[324]},{"name":"TlsParametersCngAlgUsageKeyExchange","features":[324]},{"name":"TlsParametersCngAlgUsageSignature","features":[324]},{"name":"TlsSignatureAlgorithm_Anonymous","features":[324]},{"name":"TlsSignatureAlgorithm_Dsa","features":[324]},{"name":"TlsSignatureAlgorithm_Ecdsa","features":[324]},{"name":"TlsSignatureAlgorithm_Rsa","features":[324]},{"name":"TokenBindingDeleteAllBindings","features":[324]},{"name":"TokenBindingDeleteBinding","features":[324]},{"name":"TokenBindingGenerateBinding","features":[324]},{"name":"TokenBindingGenerateID","features":[324]},{"name":"TokenBindingGenerateIDForUri","features":[324]},{"name":"TokenBindingGenerateMessage","features":[324]},{"name":"TokenBindingGetHighestSupportedVersion","features":[324]},{"name":"TokenBindingGetKeyTypesClient","features":[324]},{"name":"TokenBindingGetKeyTypesServer","features":[324]},{"name":"TokenBindingVerifyMessage","features":[324]},{"name":"TranslateNameA","features":[303,324]},{"name":"TranslateNameW","features":[303,324]},{"name":"TrustedControllersInformation","features":[324]},{"name":"TrustedDomainAuthInformation","features":[324]},{"name":"TrustedDomainAuthInformationInternal","features":[324]},{"name":"TrustedDomainAuthInformationInternalAes","features":[324]},{"name":"TrustedDomainFullInformation","features":[324]},{"name":"TrustedDomainFullInformation2Internal","features":[324]},{"name":"TrustedDomainFullInformationInternal","features":[324]},{"name":"TrustedDomainFullInformationInternalAes","features":[324]},{"name":"TrustedDomainInformationBasic","features":[324]},{"name":"TrustedDomainInformationEx","features":[324]},{"name":"TrustedDomainInformationEx2Internal","features":[324]},{"name":"TrustedDomainNameInformation","features":[324]},{"name":"TrustedDomainSupportedEncryptionTypes","features":[324]},{"name":"TrustedPasswordInformation","features":[324]},{"name":"TrustedPosixOffsetInformation","features":[324]},{"name":"UNDERSTANDS_LONG_NAMES","features":[324]},{"name":"UNISP_NAME","features":[324]},{"name":"UNISP_NAME_A","features":[324]},{"name":"UNISP_NAME_W","features":[324]},{"name":"UNISP_RPC_ID","features":[324]},{"name":"USER_ACCOUNT_AUTO_LOCKED","features":[324]},{"name":"USER_ACCOUNT_DISABLED","features":[324]},{"name":"USER_ALL_INFORMATION","features":[303,324]},{"name":"USER_ALL_PARAMETERS","features":[324]},{"name":"USER_DONT_EXPIRE_PASSWORD","features":[324]},{"name":"USER_DONT_REQUIRE_PREAUTH","features":[324]},{"name":"USER_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[324]},{"name":"USER_HOME_DIRECTORY_REQUIRED","features":[324]},{"name":"USER_INTERDOMAIN_TRUST_ACCOUNT","features":[324]},{"name":"USER_MNS_LOGON_ACCOUNT","features":[324]},{"name":"USER_NORMAL_ACCOUNT","features":[324]},{"name":"USER_NOT_DELEGATED","features":[324]},{"name":"USER_NO_AUTH_DATA_REQUIRED","features":[324]},{"name":"USER_PARTIAL_SECRETS_ACCOUNT","features":[324]},{"name":"USER_PASSWORD_EXPIRED","features":[324]},{"name":"USER_PASSWORD_NOT_REQUIRED","features":[324]},{"name":"USER_SERVER_TRUST_ACCOUNT","features":[324]},{"name":"USER_SESSION_KEY","features":[324,477]},{"name":"USER_SMARTCARD_REQUIRED","features":[324]},{"name":"USER_TEMP_DUPLICATE_ACCOUNT","features":[324]},{"name":"USER_TRUSTED_FOR_DELEGATION","features":[324]},{"name":"USER_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[324]},{"name":"USER_USE_AES_KEYS","features":[324]},{"name":"USER_USE_DES_KEY_ONLY","features":[324]},{"name":"USER_WORKSTATION_TRUST_ACCOUNT","features":[324]},{"name":"VERIFY_SIGNATURE_FN","features":[324,476]},{"name":"VerifySignature","features":[324,476]},{"name":"WDIGEST_SP_NAME","features":[324]},{"name":"WDIGEST_SP_NAME_A","features":[324]},{"name":"WDIGEST_SP_NAME_W","features":[324]},{"name":"WINDOWS_SLID","features":[324]},{"name":"X509Certificate","features":[303,324,387]},{"name":"_FACILITY_WINDOWS_STORE","features":[324]},{"name":"_HMAPPER","features":[324]},{"name":"eTlsAlgorithmUsage","features":[324]},{"name":"eTlsHashAlgorithm","features":[324]},{"name":"eTlsSignatureAlgorithm","features":[324]}],"482":[{"name":"ACCOUNT_STATE","features":[478]},{"name":"AsyncIAssociatedIdentityProvider","features":[478]},{"name":"AsyncIConnectedIdentityProvider","features":[478]},{"name":"AsyncIIdentityAdvise","features":[478]},{"name":"AsyncIIdentityAuthentication","features":[478]},{"name":"AsyncIIdentityProvider","features":[478]},{"name":"AsyncIIdentityStore","features":[478]},{"name":"AsyncIIdentityStoreEx","features":[478]},{"name":"CIdentityProfileHandler","features":[478]},{"name":"CONNECTING","features":[478]},{"name":"CONNECT_COMPLETED","features":[478]},{"name":"CoClassIdentityStore","features":[478]},{"name":"IAssociatedIdentityProvider","features":[478]},{"name":"IConnectedIdentityProvider","features":[478]},{"name":"IDENTITIES_ALL","features":[478]},{"name":"IDENTITIES_ME_ONLY","features":[478]},{"name":"IDENTITY_ASSOCIATED","features":[478]},{"name":"IDENTITY_CONNECTED","features":[478]},{"name":"IDENTITY_CREATED","features":[478]},{"name":"IDENTITY_DELETED","features":[478]},{"name":"IDENTITY_DISASSOCIATED","features":[478]},{"name":"IDENTITY_DISCONNECTED","features":[478]},{"name":"IDENTITY_IMPORTED","features":[478]},{"name":"IDENTITY_KEYWORD_ASSOCIATED","features":[478]},{"name":"IDENTITY_KEYWORD_CONNECTED","features":[478]},{"name":"IDENTITY_KEYWORD_HOMEGROUP","features":[478]},{"name":"IDENTITY_KEYWORD_LOCAL","features":[478]},{"name":"IDENTITY_PROPCHANGED","features":[478]},{"name":"IDENTITY_TYPE","features":[478]},{"name":"IDENTITY_URL","features":[478]},{"name":"IDENTITY_URL_ACCOUNT_SETTINGS","features":[478]},{"name":"IDENTITY_URL_CHANGE_PASSWORD_WIZARD","features":[478]},{"name":"IDENTITY_URL_CONNECT_WIZARD","features":[478]},{"name":"IDENTITY_URL_CREATE_ACCOUNT_WIZARD","features":[478]},{"name":"IDENTITY_URL_IFEXISTS_WIZARD","features":[478]},{"name":"IDENTITY_URL_RESTORE_WIZARD","features":[478]},{"name":"IDENTITY_URL_SIGN_IN_WIZARD","features":[478]},{"name":"IIdentityAdvise","features":[478]},{"name":"IIdentityAuthentication","features":[478]},{"name":"IIdentityProvider","features":[478]},{"name":"IIdentityStore","features":[478]},{"name":"IIdentityStoreEx","features":[478]},{"name":"IdentityUpdateEvent","features":[478]},{"name":"NOT_CONNECTED","features":[478]},{"name":"OID_OAssociatedIdentityProviderObject","features":[478]},{"name":"STR_COMPLETE_ACCOUNT","features":[478]},{"name":"STR_MODERN_SETTINGS_ADD_USER","features":[478]},{"name":"STR_NTH_USER_FIRST_AUTH","features":[478]},{"name":"STR_OUT_OF_BOX_EXPERIENCE","features":[478]},{"name":"STR_OUT_OF_BOX_UPGRADE_EXPERIENCE","features":[478]},{"name":"STR_PROPERTY_STORE","features":[478]},{"name":"STR_USER_NAME","features":[478]}],"483":[{"name":"ACCCTRL_DEFAULT_PROVIDER","features":[479]},{"name":"ACCCTRL_DEFAULT_PROVIDERA","features":[479]},{"name":"ACCCTRL_DEFAULT_PROVIDERW","features":[479]},{"name":"ACCESS_MODE","features":[479]},{"name":"ACTRL_ACCESSA","features":[479]},{"name":"ACTRL_ACCESSW","features":[479]},{"name":"ACTRL_ACCESS_ALLOWED","features":[479]},{"name":"ACTRL_ACCESS_DENIED","features":[479]},{"name":"ACTRL_ACCESS_ENTRYA","features":[479]},{"name":"ACTRL_ACCESS_ENTRYW","features":[479]},{"name":"ACTRL_ACCESS_ENTRY_ACCESS_FLAGS","features":[479]},{"name":"ACTRL_ACCESS_ENTRY_LISTA","features":[479]},{"name":"ACTRL_ACCESS_ENTRY_LISTW","features":[479]},{"name":"ACTRL_ACCESS_INFOA","features":[479]},{"name":"ACTRL_ACCESS_INFOW","features":[479]},{"name":"ACTRL_ACCESS_NO_OPTIONS","features":[479]},{"name":"ACTRL_ACCESS_PROTECTED","features":[479]},{"name":"ACTRL_ACCESS_SUPPORTS_OBJECT_ENTRIES","features":[479]},{"name":"ACTRL_AUDIT_FAILURE","features":[479]},{"name":"ACTRL_AUDIT_SUCCESS","features":[479]},{"name":"ACTRL_CHANGE_ACCESS","features":[479]},{"name":"ACTRL_CHANGE_OWNER","features":[479]},{"name":"ACTRL_CONTROL_INFOA","features":[479]},{"name":"ACTRL_CONTROL_INFOW","features":[479]},{"name":"ACTRL_DELETE","features":[479]},{"name":"ACTRL_DIR_CREATE_CHILD","features":[479]},{"name":"ACTRL_DIR_CREATE_OBJECT","features":[479]},{"name":"ACTRL_DIR_DELETE_CHILD","features":[479]},{"name":"ACTRL_DIR_LIST","features":[479]},{"name":"ACTRL_DIR_TRAVERSE","features":[479]},{"name":"ACTRL_FILE_APPEND","features":[479]},{"name":"ACTRL_FILE_CREATE_PIPE","features":[479]},{"name":"ACTRL_FILE_EXECUTE","features":[479]},{"name":"ACTRL_FILE_READ","features":[479]},{"name":"ACTRL_FILE_READ_ATTRIB","features":[479]},{"name":"ACTRL_FILE_READ_PROP","features":[479]},{"name":"ACTRL_FILE_WRITE","features":[479]},{"name":"ACTRL_FILE_WRITE_ATTRIB","features":[479]},{"name":"ACTRL_FILE_WRITE_PROP","features":[479]},{"name":"ACTRL_KERNEL_ALERT","features":[479]},{"name":"ACTRL_KERNEL_CONTROL","features":[479]},{"name":"ACTRL_KERNEL_DIMPERSONATE","features":[479]},{"name":"ACTRL_KERNEL_DUP_HANDLE","features":[479]},{"name":"ACTRL_KERNEL_GET_CONTEXT","features":[479]},{"name":"ACTRL_KERNEL_GET_INFO","features":[479]},{"name":"ACTRL_KERNEL_IMPERSONATE","features":[479]},{"name":"ACTRL_KERNEL_PROCESS","features":[479]},{"name":"ACTRL_KERNEL_SET_CONTEXT","features":[479]},{"name":"ACTRL_KERNEL_SET_INFO","features":[479]},{"name":"ACTRL_KERNEL_TERMINATE","features":[479]},{"name":"ACTRL_KERNEL_THREAD","features":[479]},{"name":"ACTRL_KERNEL_TOKEN","features":[479]},{"name":"ACTRL_KERNEL_VM","features":[479]},{"name":"ACTRL_KERNEL_VM_READ","features":[479]},{"name":"ACTRL_KERNEL_VM_WRITE","features":[479]},{"name":"ACTRL_OVERLAPPED","features":[303,479]},{"name":"ACTRL_PERM_1","features":[479]},{"name":"ACTRL_PERM_10","features":[479]},{"name":"ACTRL_PERM_11","features":[479]},{"name":"ACTRL_PERM_12","features":[479]},{"name":"ACTRL_PERM_13","features":[479]},{"name":"ACTRL_PERM_14","features":[479]},{"name":"ACTRL_PERM_15","features":[479]},{"name":"ACTRL_PERM_16","features":[479]},{"name":"ACTRL_PERM_17","features":[479]},{"name":"ACTRL_PERM_18","features":[479]},{"name":"ACTRL_PERM_19","features":[479]},{"name":"ACTRL_PERM_2","features":[479]},{"name":"ACTRL_PERM_20","features":[479]},{"name":"ACTRL_PERM_3","features":[479]},{"name":"ACTRL_PERM_4","features":[479]},{"name":"ACTRL_PERM_5","features":[479]},{"name":"ACTRL_PERM_6","features":[479]},{"name":"ACTRL_PERM_7","features":[479]},{"name":"ACTRL_PERM_8","features":[479]},{"name":"ACTRL_PERM_9","features":[479]},{"name":"ACTRL_PRINT_JADMIN","features":[479]},{"name":"ACTRL_PRINT_PADMIN","features":[479]},{"name":"ACTRL_PRINT_PUSE","features":[479]},{"name":"ACTRL_PRINT_SADMIN","features":[479]},{"name":"ACTRL_PRINT_SLIST","features":[479]},{"name":"ACTRL_PROPERTY_ENTRYA","features":[479]},{"name":"ACTRL_PROPERTY_ENTRYW","features":[479]},{"name":"ACTRL_READ_CONTROL","features":[479]},{"name":"ACTRL_REG_CREATE_CHILD","features":[479]},{"name":"ACTRL_REG_LINK","features":[479]},{"name":"ACTRL_REG_LIST","features":[479]},{"name":"ACTRL_REG_NOTIFY","features":[479]},{"name":"ACTRL_REG_QUERY","features":[479]},{"name":"ACTRL_REG_SET","features":[479]},{"name":"ACTRL_RESERVED","features":[479]},{"name":"ACTRL_STD_RIGHTS_ALL","features":[479]},{"name":"ACTRL_SVC_GET_INFO","features":[479]},{"name":"ACTRL_SVC_INTERROGATE","features":[479]},{"name":"ACTRL_SVC_LIST","features":[479]},{"name":"ACTRL_SVC_PAUSE","features":[479]},{"name":"ACTRL_SVC_SET_INFO","features":[479]},{"name":"ACTRL_SVC_START","features":[479]},{"name":"ACTRL_SVC_STATUS","features":[479]},{"name":"ACTRL_SVC_STOP","features":[479]},{"name":"ACTRL_SVC_UCONTROL","features":[479]},{"name":"ACTRL_SYNCHRONIZE","features":[479]},{"name":"ACTRL_SYSTEM_ACCESS","features":[479]},{"name":"ACTRL_WIN_CLIPBRD","features":[479]},{"name":"ACTRL_WIN_CREATE","features":[479]},{"name":"ACTRL_WIN_EXIT","features":[479]},{"name":"ACTRL_WIN_GLOBAL_ATOMS","features":[479]},{"name":"ACTRL_WIN_LIST","features":[479]},{"name":"ACTRL_WIN_LIST_DESK","features":[479]},{"name":"ACTRL_WIN_READ_ATTRIBS","features":[479]},{"name":"ACTRL_WIN_SCREEN","features":[479]},{"name":"ACTRL_WIN_WRITE_ATTRIBS","features":[479]},{"name":"APF_AuditFailure","features":[479]},{"name":"APF_AuditSuccess","features":[479]},{"name":"APF_ValidFlags","features":[479]},{"name":"APT_Guid","features":[479]},{"name":"APT_Int64","features":[479]},{"name":"APT_IpAddress","features":[479]},{"name":"APT_LogonId","features":[479]},{"name":"APT_LogonIdWithSid","features":[479]},{"name":"APT_Luid","features":[479]},{"name":"APT_None","features":[479]},{"name":"APT_ObjectTypeList","features":[479]},{"name":"APT_Pointer","features":[479]},{"name":"APT_Sid","features":[479]},{"name":"APT_String","features":[479]},{"name":"APT_Time","features":[479]},{"name":"APT_Ulong","features":[479]},{"name":"AP_ParamTypeBits","features":[479]},{"name":"AP_ParamTypeMask","features":[479]},{"name":"AUDIT_IP_ADDRESS","features":[479]},{"name":"AUDIT_OBJECT_TYPE","features":[479]},{"name":"AUDIT_OBJECT_TYPES","features":[479]},{"name":"AUDIT_PARAM","features":[479]},{"name":"AUDIT_PARAMS","features":[479]},{"name":"AUDIT_PARAM_TYPE","features":[479]},{"name":"AUDIT_TYPE_LEGACY","features":[479]},{"name":"AUDIT_TYPE_WMI","features":[479]},{"name":"AUTHZP_WPD_EVENT","features":[479]},{"name":"AUTHZ_ACCESS_CHECK_FLAGS","features":[479]},{"name":"AUTHZ_ACCESS_CHECK_NO_DEEP_COPY_SD","features":[479]},{"name":"AUTHZ_ACCESS_CHECK_RESULTS_HANDLE","features":[479]},{"name":"AUTHZ_ACCESS_REPLY","features":[479]},{"name":"AUTHZ_ACCESS_REQUEST","features":[303,479]},{"name":"AUTHZ_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[479]},{"name":"AUTHZ_AUDIT_EVENT_HANDLE","features":[479]},{"name":"AUTHZ_AUDIT_EVENT_INFORMATION_CLASS","features":[479]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_HANDLE","features":[479]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_LEGACY","features":[479]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_OLD","features":[303,479]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_UNION","features":[479]},{"name":"AUTHZ_AUDIT_INSTANCE_INFORMATION","features":[479]},{"name":"AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE","features":[479]},{"name":"AUTHZ_CLIENT_CONTEXT_HANDLE","features":[479]},{"name":"AUTHZ_COMPUTE_PRIVILEGES","features":[479]},{"name":"AUTHZ_CONTEXT_INFORMATION_CLASS","features":[479]},{"name":"AUTHZ_FLAG_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[479]},{"name":"AUTHZ_GENERATE_FAILURE_AUDIT","features":[479]},{"name":"AUTHZ_GENERATE_RESULTS","features":[479]},{"name":"AUTHZ_GENERATE_SUCCESS_AUDIT","features":[479]},{"name":"AUTHZ_INITIALIZE_OBJECT_ACCESS_AUDIT_EVENT_FLAGS","features":[479]},{"name":"AUTHZ_INIT_INFO","features":[303,479]},{"name":"AUTHZ_INIT_INFO_VERSION_V1","features":[479]},{"name":"AUTHZ_MIGRATED_LEGACY_PUBLISHER","features":[479]},{"name":"AUTHZ_NO_ALLOC_STRINGS","features":[479]},{"name":"AUTHZ_NO_FAILURE_AUDIT","features":[479]},{"name":"AUTHZ_NO_SUCCESS_AUDIT","features":[479]},{"name":"AUTHZ_REGISTRATION_OBJECT_TYPE_NAME_OFFSET","features":[479]},{"name":"AUTHZ_REQUIRE_S4U_LOGON","features":[479]},{"name":"AUTHZ_RESOURCE_MANAGER_FLAGS","features":[479]},{"name":"AUTHZ_RESOURCE_MANAGER_HANDLE","features":[479]},{"name":"AUTHZ_RM_FLAG_INITIALIZE_UNDER_IMPERSONATION","features":[479]},{"name":"AUTHZ_RM_FLAG_NO_AUDIT","features":[479]},{"name":"AUTHZ_RM_FLAG_NO_CENTRAL_ACCESS_POLICIES","features":[479]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT","features":[479]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT_VERSION_V1","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FLAGS","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_ADD","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_DELETE","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_NONE","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE_ALL","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INT64","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_SID","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_STRING","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_V1","features":[479]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[479]},{"name":"AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE","features":[479]},{"name":"AUTHZ_SID_OPERATION","features":[479]},{"name":"AUTHZ_SID_OPERATION_ADD","features":[479]},{"name":"AUTHZ_SID_OPERATION_DELETE","features":[479]},{"name":"AUTHZ_SID_OPERATION_NONE","features":[479]},{"name":"AUTHZ_SID_OPERATION_REPLACE","features":[479]},{"name":"AUTHZ_SID_OPERATION_REPLACE_ALL","features":[479]},{"name":"AUTHZ_SKIP_TOKEN_GROUPS","features":[479]},{"name":"AUTHZ_SOURCE_SCHEMA_REGISTRATION","features":[479]},{"name":"AUTHZ_WPD_CATEGORY_FLAG","features":[479]},{"name":"AZ_AZSTORE_DEFAULT_DOMAIN_TIMEOUT","features":[479]},{"name":"AZ_AZSTORE_DEFAULT_MAX_SCRIPT_ENGINES","features":[479]},{"name":"AZ_AZSTORE_DEFAULT_SCRIPT_ENGINE_TIMEOUT","features":[479]},{"name":"AZ_AZSTORE_FLAG_AUDIT_IS_CRITICAL","features":[479]},{"name":"AZ_AZSTORE_FLAG_BATCH_UPDATE","features":[479]},{"name":"AZ_AZSTORE_FLAG_CREATE","features":[479]},{"name":"AZ_AZSTORE_FLAG_MANAGE_ONLY_PASSIVE_SUBMIT","features":[479]},{"name":"AZ_AZSTORE_FLAG_MANAGE_STORE_ONLY","features":[479]},{"name":"AZ_AZSTORE_FORCE_APPLICATION_CLOSE","features":[479]},{"name":"AZ_AZSTORE_MIN_DOMAIN_TIMEOUT","features":[479]},{"name":"AZ_AZSTORE_MIN_SCRIPT_ENGINE_TIMEOUT","features":[479]},{"name":"AZ_AZSTORE_NT6_FUNCTION_LEVEL","features":[479]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUPS_STORE_LEVEL_ONLY","features":[479]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUP_RECURSIVE","features":[479]},{"name":"AZ_CLIENT_CONTEXT_SKIP_GROUP","features":[479]},{"name":"AZ_CLIENT_CONTEXT_SKIP_LDAP_QUERY","features":[479]},{"name":"AZ_GROUPTYPE_BASIC","features":[479]},{"name":"AZ_GROUPTYPE_BIZRULE","features":[479]},{"name":"AZ_GROUPTYPE_LDAP_QUERY","features":[479]},{"name":"AZ_MAX_APPLICATION_DATA_LENGTH","features":[479]},{"name":"AZ_MAX_APPLICATION_NAME_LENGTH","features":[479]},{"name":"AZ_MAX_APPLICATION_VERSION_LENGTH","features":[479]},{"name":"AZ_MAX_BIZRULE_STRING","features":[479]},{"name":"AZ_MAX_DESCRIPTION_LENGTH","features":[479]},{"name":"AZ_MAX_GROUP_BIZRULE_IMPORTED_PATH_LENGTH","features":[479]},{"name":"AZ_MAX_GROUP_BIZRULE_LANGUAGE_LENGTH","features":[479]},{"name":"AZ_MAX_GROUP_BIZRULE_LENGTH","features":[479]},{"name":"AZ_MAX_GROUP_LDAP_QUERY_LENGTH","features":[479]},{"name":"AZ_MAX_GROUP_NAME_LENGTH","features":[479]},{"name":"AZ_MAX_NAME_LENGTH","features":[479]},{"name":"AZ_MAX_OPERATION_NAME_LENGTH","features":[479]},{"name":"AZ_MAX_POLICY_URL_LENGTH","features":[479]},{"name":"AZ_MAX_ROLE_NAME_LENGTH","features":[479]},{"name":"AZ_MAX_SCOPE_NAME_LENGTH","features":[479]},{"name":"AZ_MAX_TASK_BIZRULE_IMPORTED_PATH_LENGTH","features":[479]},{"name":"AZ_MAX_TASK_BIZRULE_LANGUAGE_LENGTH","features":[479]},{"name":"AZ_MAX_TASK_BIZRULE_LENGTH","features":[479]},{"name":"AZ_MAX_TASK_NAME_LENGTH","features":[479]},{"name":"AZ_PROP_APPLICATION_AUTHZ_INTERFACE_CLSID","features":[479]},{"name":"AZ_PROP_APPLICATION_BIZRULE_ENABLED","features":[479]},{"name":"AZ_PROP_APPLICATION_DATA","features":[479]},{"name":"AZ_PROP_APPLICATION_NAME","features":[479]},{"name":"AZ_PROP_APPLICATION_VERSION","features":[479]},{"name":"AZ_PROP_APPLY_STORE_SACL","features":[479]},{"name":"AZ_PROP_AZSTORE_DOMAIN_TIMEOUT","features":[479]},{"name":"AZ_PROP_AZSTORE_MAJOR_VERSION","features":[479]},{"name":"AZ_PROP_AZSTORE_MAX_SCRIPT_ENGINES","features":[479]},{"name":"AZ_PROP_AZSTORE_MINOR_VERSION","features":[479]},{"name":"AZ_PROP_AZSTORE_SCRIPT_ENGINE_TIMEOUT","features":[479]},{"name":"AZ_PROP_AZSTORE_TARGET_MACHINE","features":[479]},{"name":"AZ_PROP_AZTORE_IS_ADAM_INSTANCE","features":[479]},{"name":"AZ_PROP_CHILD_CREATE","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_LDAP_QUERY_DN","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_ROLE_FOR_ACCESS_CHECK","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_CANONICAL","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DISPLAY","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DN","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DNS_SAM_COMPAT","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_GUID","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_SAM_COMPAT","features":[479]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_UPN","features":[479]},{"name":"AZ_PROP_CONSTANTS","features":[479]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS","features":[479]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS_NAME","features":[479]},{"name":"AZ_PROP_DESCRIPTION","features":[479]},{"name":"AZ_PROP_GENERATE_AUDITS","features":[479]},{"name":"AZ_PROP_GROUP_APP_MEMBERS","features":[479]},{"name":"AZ_PROP_GROUP_APP_NON_MEMBERS","features":[479]},{"name":"AZ_PROP_GROUP_BIZRULE","features":[479]},{"name":"AZ_PROP_GROUP_BIZRULE_IMPORTED_PATH","features":[479]},{"name":"AZ_PROP_GROUP_BIZRULE_LANGUAGE","features":[479]},{"name":"AZ_PROP_GROUP_LDAP_QUERY","features":[479]},{"name":"AZ_PROP_GROUP_MEMBERS","features":[479]},{"name":"AZ_PROP_GROUP_MEMBERS_NAME","features":[479]},{"name":"AZ_PROP_GROUP_NON_MEMBERS","features":[479]},{"name":"AZ_PROP_GROUP_NON_MEMBERS_NAME","features":[479]},{"name":"AZ_PROP_GROUP_TYPE","features":[479]},{"name":"AZ_PROP_NAME","features":[479]},{"name":"AZ_PROP_OPERATION_ID","features":[479]},{"name":"AZ_PROP_POLICY_ADMINS","features":[479]},{"name":"AZ_PROP_POLICY_ADMINS_NAME","features":[479]},{"name":"AZ_PROP_POLICY_READERS","features":[479]},{"name":"AZ_PROP_POLICY_READERS_NAME","features":[479]},{"name":"AZ_PROP_ROLE_APP_MEMBERS","features":[479]},{"name":"AZ_PROP_ROLE_MEMBERS","features":[479]},{"name":"AZ_PROP_ROLE_MEMBERS_NAME","features":[479]},{"name":"AZ_PROP_ROLE_OPERATIONS","features":[479]},{"name":"AZ_PROP_ROLE_TASKS","features":[479]},{"name":"AZ_PROP_SCOPE_BIZRULES_WRITABLE","features":[479]},{"name":"AZ_PROP_SCOPE_CAN_BE_DELEGATED","features":[479]},{"name":"AZ_PROP_TASK_BIZRULE","features":[479]},{"name":"AZ_PROP_TASK_BIZRULE_IMPORTED_PATH","features":[479]},{"name":"AZ_PROP_TASK_BIZRULE_LANGUAGE","features":[479]},{"name":"AZ_PROP_TASK_IS_ROLE_DEFINITION","features":[479]},{"name":"AZ_PROP_TASK_OPERATIONS","features":[479]},{"name":"AZ_PROP_TASK_TASKS","features":[479]},{"name":"AZ_PROP_WRITABLE","features":[479]},{"name":"AZ_SUBMIT_FLAG_ABORT","features":[479]},{"name":"AZ_SUBMIT_FLAG_FLUSH","features":[479]},{"name":"AuthzAccessCheck","features":[303,479]},{"name":"AuthzAddSidsToContext","features":[303,479]},{"name":"AuthzAuditEventInfoAdditionalInfo","features":[479]},{"name":"AuthzAuditEventInfoFlags","features":[479]},{"name":"AuthzAuditEventInfoObjectName","features":[479]},{"name":"AuthzAuditEventInfoObjectType","features":[479]},{"name":"AuthzAuditEventInfoOperationType","features":[479]},{"name":"AuthzCachedAccessCheck","features":[303,479]},{"name":"AuthzContextInfoAll","features":[479]},{"name":"AuthzContextInfoAppContainerSid","features":[479]},{"name":"AuthzContextInfoAuthenticationId","features":[479]},{"name":"AuthzContextInfoCapabilitySids","features":[479]},{"name":"AuthzContextInfoDeviceClaims","features":[479]},{"name":"AuthzContextInfoDeviceSids","features":[479]},{"name":"AuthzContextInfoExpirationTime","features":[479]},{"name":"AuthzContextInfoGroupsSids","features":[479]},{"name":"AuthzContextInfoIdentifier","features":[479]},{"name":"AuthzContextInfoPrivileges","features":[479]},{"name":"AuthzContextInfoRestrictedSids","features":[479]},{"name":"AuthzContextInfoSecurityAttributes","features":[479]},{"name":"AuthzContextInfoServerContext","features":[479]},{"name":"AuthzContextInfoSource","features":[479]},{"name":"AuthzContextInfoUserClaims","features":[479]},{"name":"AuthzContextInfoUserSid","features":[479]},{"name":"AuthzEnumerateSecurityEventSources","features":[303,479]},{"name":"AuthzEvaluateSacl","features":[303,479]},{"name":"AuthzFreeAuditEvent","features":[303,479]},{"name":"AuthzFreeCentralAccessPolicyCache","features":[303,479]},{"name":"AuthzFreeContext","features":[303,479]},{"name":"AuthzFreeHandle","features":[303,479]},{"name":"AuthzFreeResourceManager","features":[303,479]},{"name":"AuthzGetInformationFromContext","features":[303,479]},{"name":"AuthzInitializeCompoundContext","features":[303,479]},{"name":"AuthzInitializeContextFromAuthzContext","features":[303,479]},{"name":"AuthzInitializeContextFromSid","features":[303,479]},{"name":"AuthzInitializeContextFromToken","features":[303,479]},{"name":"AuthzInitializeObjectAccessAuditEvent","features":[303,479]},{"name":"AuthzInitializeObjectAccessAuditEvent2","features":[303,479]},{"name":"AuthzInitializeRemoteResourceManager","features":[303,479]},{"name":"AuthzInitializeResourceManager","features":[303,479]},{"name":"AuthzInitializeResourceManagerEx","features":[303,479]},{"name":"AuthzInstallSecurityEventSource","features":[303,479]},{"name":"AuthzModifyClaims","features":[303,479]},{"name":"AuthzModifySecurityAttributes","features":[303,479]},{"name":"AuthzModifySids","features":[303,479]},{"name":"AuthzOpenObjectAudit","features":[303,479]},{"name":"AuthzRegisterCapChangeNotification","features":[303,479,338]},{"name":"AuthzRegisterSecurityEventSource","features":[303,479]},{"name":"AuthzReportSecurityEvent","features":[303,479]},{"name":"AuthzReportSecurityEventFromParams","features":[303,479]},{"name":"AuthzSetAppContainerInformation","features":[303,479]},{"name":"AuthzUninstallSecurityEventSource","features":[303,479]},{"name":"AuthzUnregisterCapChangeNotification","features":[303,479]},{"name":"AuthzUnregisterSecurityEventSource","features":[303,479]},{"name":"AzAuthorizationStore","features":[479]},{"name":"AzBizRuleContext","features":[479]},{"name":"AzPrincipalLocator","features":[479]},{"name":"BuildExplicitAccessWithNameA","features":[479]},{"name":"BuildExplicitAccessWithNameW","features":[479]},{"name":"BuildImpersonateExplicitAccessWithNameA","features":[479]},{"name":"BuildImpersonateExplicitAccessWithNameW","features":[479]},{"name":"BuildImpersonateTrusteeA","features":[479]},{"name":"BuildImpersonateTrusteeW","features":[479]},{"name":"BuildSecurityDescriptorA","features":[303,479]},{"name":"BuildSecurityDescriptorW","features":[303,479]},{"name":"BuildTrusteeWithNameA","features":[479]},{"name":"BuildTrusteeWithNameW","features":[479]},{"name":"BuildTrusteeWithObjectsAndNameA","features":[479]},{"name":"BuildTrusteeWithObjectsAndNameW","features":[479]},{"name":"BuildTrusteeWithObjectsAndSidA","features":[303,479]},{"name":"BuildTrusteeWithObjectsAndSidW","features":[303,479]},{"name":"BuildTrusteeWithSidA","features":[303,479]},{"name":"BuildTrusteeWithSidW","features":[303,479]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorA","features":[303,479]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorW","features":[303,479]},{"name":"ConvertSidToStringSidA","features":[303,479]},{"name":"ConvertSidToStringSidW","features":[303,479]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorA","features":[303,479]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorW","features":[303,479]},{"name":"ConvertStringSidToSidA","features":[303,479]},{"name":"ConvertStringSidToSidW","features":[303,479]},{"name":"DENY_ACCESS","features":[479]},{"name":"EXPLICIT_ACCESS_A","features":[479]},{"name":"EXPLICIT_ACCESS_W","features":[479]},{"name":"FN_OBJECT_MGR_FUNCTS","features":[479]},{"name":"FN_PROGRESS","features":[303,479]},{"name":"FreeInheritedFromArray","features":[303,479]},{"name":"GRANT_ACCESS","features":[479]},{"name":"GetAuditedPermissionsFromAclA","features":[303,479]},{"name":"GetAuditedPermissionsFromAclW","features":[303,479]},{"name":"GetEffectiveRightsFromAclA","features":[303,479]},{"name":"GetEffectiveRightsFromAclW","features":[303,479]},{"name":"GetExplicitEntriesFromAclA","features":[303,479]},{"name":"GetExplicitEntriesFromAclW","features":[303,479]},{"name":"GetInheritanceSourceA","features":[303,479]},{"name":"GetInheritanceSourceW","features":[303,479]},{"name":"GetMultipleTrusteeA","features":[479]},{"name":"GetMultipleTrusteeOperationA","features":[479]},{"name":"GetMultipleTrusteeOperationW","features":[479]},{"name":"GetMultipleTrusteeW","features":[479]},{"name":"GetNamedSecurityInfoA","features":[303,479]},{"name":"GetNamedSecurityInfoW","features":[303,479]},{"name":"GetSecurityInfo","features":[303,479]},{"name":"GetTrusteeFormA","features":[479]},{"name":"GetTrusteeFormW","features":[479]},{"name":"GetTrusteeNameA","features":[479]},{"name":"GetTrusteeNameW","features":[479]},{"name":"GetTrusteeTypeA","features":[479]},{"name":"GetTrusteeTypeW","features":[479]},{"name":"IAzApplication","features":[479,354]},{"name":"IAzApplication2","features":[479,354]},{"name":"IAzApplication3","features":[479,354]},{"name":"IAzApplicationGroup","features":[479,354]},{"name":"IAzApplicationGroup2","features":[479,354]},{"name":"IAzApplicationGroups","features":[479,354]},{"name":"IAzApplications","features":[479,354]},{"name":"IAzAuthorizationStore","features":[479,354]},{"name":"IAzAuthorizationStore2","features":[479,354]},{"name":"IAzAuthorizationStore3","features":[479,354]},{"name":"IAzBizRuleContext","features":[479,354]},{"name":"IAzBizRuleInterfaces","features":[479,354]},{"name":"IAzBizRuleParameters","features":[479,354]},{"name":"IAzClientContext","features":[479,354]},{"name":"IAzClientContext2","features":[479,354]},{"name":"IAzClientContext3","features":[479,354]},{"name":"IAzNameResolver","features":[479,354]},{"name":"IAzObjectPicker","features":[479,354]},{"name":"IAzOperation","features":[479,354]},{"name":"IAzOperation2","features":[479,354]},{"name":"IAzOperations","features":[479,354]},{"name":"IAzPrincipalLocator","features":[479,354]},{"name":"IAzRole","features":[479,354]},{"name":"IAzRoleAssignment","features":[479,354]},{"name":"IAzRoleAssignments","features":[479,354]},{"name":"IAzRoleDefinition","features":[479,354]},{"name":"IAzRoleDefinitions","features":[479,354]},{"name":"IAzRoles","features":[479,354]},{"name":"IAzScope","features":[479,354]},{"name":"IAzScope2","features":[479,354]},{"name":"IAzScopes","features":[479,354]},{"name":"IAzTask","features":[479,354]},{"name":"IAzTask2","features":[479,354]},{"name":"IAzTasks","features":[479,354]},{"name":"INHERITED_ACCESS_ENTRY","features":[479]},{"name":"INHERITED_FROMA","features":[479]},{"name":"INHERITED_FROMW","features":[479]},{"name":"INHERITED_GRANDPARENT","features":[479]},{"name":"INHERITED_PARENT","features":[479]},{"name":"LookupSecurityDescriptorPartsA","features":[303,479]},{"name":"LookupSecurityDescriptorPartsW","features":[303,479]},{"name":"MULTIPLE_TRUSTEE_OPERATION","features":[479]},{"name":"NOT_USED_ACCESS","features":[479]},{"name":"NO_MULTIPLE_TRUSTEE","features":[479]},{"name":"OBJECTS_AND_NAME_A","features":[479]},{"name":"OBJECTS_AND_NAME_W","features":[479]},{"name":"OBJECTS_AND_SID","features":[479]},{"name":"OLESCRIPT_E_SYNTAX","features":[479]},{"name":"PFN_AUTHZ_COMPUTE_DYNAMIC_GROUPS","features":[303,479]},{"name":"PFN_AUTHZ_DYNAMIC_ACCESS_CHECK","features":[303,479]},{"name":"PFN_AUTHZ_FREE_CENTRAL_ACCESS_POLICY","features":[479]},{"name":"PFN_AUTHZ_FREE_DYNAMIC_GROUPS","features":[303,479]},{"name":"PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY","features":[303,479]},{"name":"PROG_INVOKE_SETTING","features":[479]},{"name":"ProgressCancelOperation","features":[479]},{"name":"ProgressInvokeEveryObject","features":[479]},{"name":"ProgressInvokeNever","features":[479]},{"name":"ProgressInvokeOnError","features":[479]},{"name":"ProgressInvokePrePostError","features":[479]},{"name":"ProgressRetryOperation","features":[479]},{"name":"REVOKE_ACCESS","features":[479]},{"name":"SDDL_ACCESS_ALLOWED","features":[479]},{"name":"SDDL_ACCESS_CONTROL_ASSISTANCE_OPS","features":[479]},{"name":"SDDL_ACCESS_DENIED","features":[479]},{"name":"SDDL_ACCESS_FILTER","features":[479]},{"name":"SDDL_ACCOUNT_OPERATORS","features":[479]},{"name":"SDDL_ACE_BEGIN","features":[479]},{"name":"SDDL_ACE_COND_ATTRIBUTE_PREFIX","features":[479]},{"name":"SDDL_ACE_COND_BEGIN","features":[479]},{"name":"SDDL_ACE_COND_BLOB_PREFIX","features":[479]},{"name":"SDDL_ACE_COND_DEVICE_ATTRIBUTE_PREFIX","features":[479]},{"name":"SDDL_ACE_COND_END","features":[479]},{"name":"SDDL_ACE_COND_RESOURCE_ATTRIBUTE_PREFIX","features":[479]},{"name":"SDDL_ACE_COND_SID_PREFIX","features":[479]},{"name":"SDDL_ACE_COND_TOKEN_ATTRIBUTE_PREFIX","features":[479]},{"name":"SDDL_ACE_COND_USER_ATTRIBUTE_PREFIX","features":[479]},{"name":"SDDL_ACE_END","features":[479]},{"name":"SDDL_ALARM","features":[479]},{"name":"SDDL_ALIAS_PREW2KCOMPACC","features":[479]},{"name":"SDDL_ALIAS_SIZE","features":[479]},{"name":"SDDL_ALL_APP_PACKAGES","features":[479]},{"name":"SDDL_ANONYMOUS","features":[479]},{"name":"SDDL_AUDIT","features":[479]},{"name":"SDDL_AUDIT_FAILURE","features":[479]},{"name":"SDDL_AUDIT_SUCCESS","features":[479]},{"name":"SDDL_AUTHENTICATED_USERS","features":[479]},{"name":"SDDL_AUTHORITY_ASSERTED","features":[479]},{"name":"SDDL_AUTO_INHERITED","features":[479]},{"name":"SDDL_AUTO_INHERIT_REQ","features":[479]},{"name":"SDDL_BACKUP_OPERATORS","features":[479]},{"name":"SDDL_BLOB","features":[479]},{"name":"SDDL_BOOLEAN","features":[479]},{"name":"SDDL_BUILTIN_ADMINISTRATORS","features":[479]},{"name":"SDDL_BUILTIN_GUESTS","features":[479]},{"name":"SDDL_BUILTIN_USERS","features":[479]},{"name":"SDDL_CALLBACK_ACCESS_ALLOWED","features":[479]},{"name":"SDDL_CALLBACK_ACCESS_DENIED","features":[479]},{"name":"SDDL_CALLBACK_AUDIT","features":[479]},{"name":"SDDL_CALLBACK_OBJECT_ACCESS_ALLOWED","features":[479]},{"name":"SDDL_CERTSVC_DCOM_ACCESS","features":[479]},{"name":"SDDL_CERT_SERV_ADMINISTRATORS","features":[479]},{"name":"SDDL_CLONEABLE_CONTROLLERS","features":[479]},{"name":"SDDL_CONTAINER_INHERIT","features":[479]},{"name":"SDDL_CONTROL_ACCESS","features":[479]},{"name":"SDDL_CREATE_CHILD","features":[479]},{"name":"SDDL_CREATOR_GROUP","features":[479]},{"name":"SDDL_CREATOR_OWNER","features":[479]},{"name":"SDDL_CRITICAL","features":[479]},{"name":"SDDL_CRYPTO_OPERATORS","features":[479]},{"name":"SDDL_DACL","features":[479]},{"name":"SDDL_DELETE_CHILD","features":[479]},{"name":"SDDL_DELETE_TREE","features":[479]},{"name":"SDDL_DELIMINATOR","features":[479]},{"name":"SDDL_DOMAIN_ADMINISTRATORS","features":[479]},{"name":"SDDL_DOMAIN_COMPUTERS","features":[479]},{"name":"SDDL_DOMAIN_DOMAIN_CONTROLLERS","features":[479]},{"name":"SDDL_DOMAIN_GUESTS","features":[479]},{"name":"SDDL_DOMAIN_USERS","features":[479]},{"name":"SDDL_ENTERPRISE_ADMINS","features":[479]},{"name":"SDDL_ENTERPRISE_DOMAIN_CONTROLLERS","features":[479]},{"name":"SDDL_ENTERPRISE_KEY_ADMINS","features":[479]},{"name":"SDDL_ENTERPRISE_RO_DCs","features":[479]},{"name":"SDDL_EVENT_LOG_READERS","features":[479]},{"name":"SDDL_EVERYONE","features":[479]},{"name":"SDDL_FILE_ALL","features":[479]},{"name":"SDDL_FILE_EXECUTE","features":[479]},{"name":"SDDL_FILE_READ","features":[479]},{"name":"SDDL_FILE_WRITE","features":[479]},{"name":"SDDL_GENERIC_ALL","features":[479]},{"name":"SDDL_GENERIC_EXECUTE","features":[479]},{"name":"SDDL_GENERIC_READ","features":[479]},{"name":"SDDL_GENERIC_WRITE","features":[479]},{"name":"SDDL_GROUP","features":[479]},{"name":"SDDL_GROUP_POLICY_ADMINS","features":[479]},{"name":"SDDL_HYPER_V_ADMINS","features":[479]},{"name":"SDDL_IIS_USERS","features":[479]},{"name":"SDDL_INHERITED","features":[479]},{"name":"SDDL_INHERIT_ONLY","features":[479]},{"name":"SDDL_INT","features":[479]},{"name":"SDDL_INTERACTIVE","features":[479]},{"name":"SDDL_KEY_ADMINS","features":[479]},{"name":"SDDL_KEY_ALL","features":[479]},{"name":"SDDL_KEY_EXECUTE","features":[479]},{"name":"SDDL_KEY_READ","features":[479]},{"name":"SDDL_KEY_WRITE","features":[479]},{"name":"SDDL_LIST_CHILDREN","features":[479]},{"name":"SDDL_LIST_OBJECT","features":[479]},{"name":"SDDL_LOCAL_ADMIN","features":[479]},{"name":"SDDL_LOCAL_GUEST","features":[479]},{"name":"SDDL_LOCAL_SERVICE","features":[479]},{"name":"SDDL_LOCAL_SYSTEM","features":[479]},{"name":"SDDL_MANDATORY_LABEL","features":[479]},{"name":"SDDL_ML_HIGH","features":[479]},{"name":"SDDL_ML_LOW","features":[479]},{"name":"SDDL_ML_MEDIUM","features":[479]},{"name":"SDDL_ML_MEDIUM_PLUS","features":[479]},{"name":"SDDL_ML_SYSTEM","features":[479]},{"name":"SDDL_NETWORK","features":[479]},{"name":"SDDL_NETWORK_CONFIGURATION_OPS","features":[479]},{"name":"SDDL_NETWORK_SERVICE","features":[479]},{"name":"SDDL_NO_EXECUTE_UP","features":[479]},{"name":"SDDL_NO_PROPAGATE","features":[479]},{"name":"SDDL_NO_READ_UP","features":[479]},{"name":"SDDL_NO_WRITE_UP","features":[479]},{"name":"SDDL_NULL_ACL","features":[479]},{"name":"SDDL_OBJECT_ACCESS_ALLOWED","features":[479]},{"name":"SDDL_OBJECT_ACCESS_DENIED","features":[479]},{"name":"SDDL_OBJECT_ALARM","features":[479]},{"name":"SDDL_OBJECT_AUDIT","features":[479]},{"name":"SDDL_OBJECT_INHERIT","features":[479]},{"name":"SDDL_OWNER","features":[479]},{"name":"SDDL_OWNER_RIGHTS","features":[479]},{"name":"SDDL_PERFLOG_USERS","features":[479]},{"name":"SDDL_PERFMON_USERS","features":[479]},{"name":"SDDL_PERSONAL_SELF","features":[479]},{"name":"SDDL_POWER_USERS","features":[479]},{"name":"SDDL_PRINTER_OPERATORS","features":[479]},{"name":"SDDL_PROCESS_TRUST_LABEL","features":[479]},{"name":"SDDL_PROTECTED","features":[479]},{"name":"SDDL_PROTECTED_USERS","features":[479]},{"name":"SDDL_RAS_SERVERS","features":[479]},{"name":"SDDL_RDS_ENDPOINT_SERVERS","features":[479]},{"name":"SDDL_RDS_MANAGEMENT_SERVERS","features":[479]},{"name":"SDDL_RDS_REMOTE_ACCESS_SERVERS","features":[479]},{"name":"SDDL_READ_CONTROL","features":[479]},{"name":"SDDL_READ_PROPERTY","features":[479]},{"name":"SDDL_REMOTE_DESKTOP","features":[479]},{"name":"SDDL_REMOTE_MANAGEMENT_USERS","features":[479]},{"name":"SDDL_REPLICATOR","features":[479]},{"name":"SDDL_RESOURCE_ATTRIBUTE","features":[479]},{"name":"SDDL_RESTRICTED_CODE","features":[479]},{"name":"SDDL_REVISION","features":[479]},{"name":"SDDL_REVISION_1","features":[479]},{"name":"SDDL_SACL","features":[479]},{"name":"SDDL_SCHEMA_ADMINISTRATORS","features":[479]},{"name":"SDDL_SCOPED_POLICY_ID","features":[479]},{"name":"SDDL_SELF_WRITE","features":[479]},{"name":"SDDL_SEPERATOR","features":[479]},{"name":"SDDL_SERVER_OPERATORS","features":[479]},{"name":"SDDL_SERVICE","features":[479]},{"name":"SDDL_SERVICE_ASSERTED","features":[479]},{"name":"SDDL_SID","features":[479]},{"name":"SDDL_SPACE","features":[479]},{"name":"SDDL_STANDARD_DELETE","features":[479]},{"name":"SDDL_TRUST_PROTECTED_FILTER","features":[479]},{"name":"SDDL_UINT","features":[479]},{"name":"SDDL_USER_MODE_DRIVERS","features":[479]},{"name":"SDDL_WRITE_DAC","features":[479]},{"name":"SDDL_WRITE_OWNER","features":[479]},{"name":"SDDL_WRITE_PROPERTY","features":[479]},{"name":"SDDL_WRITE_RESTRICTED_CODE","features":[479]},{"name":"SDDL_WSTRING","features":[479]},{"name":"SET_ACCESS","features":[479]},{"name":"SET_AUDIT_FAILURE","features":[479]},{"name":"SET_AUDIT_SUCCESS","features":[479]},{"name":"SE_DS_OBJECT","features":[479]},{"name":"SE_DS_OBJECT_ALL","features":[479]},{"name":"SE_FILE_OBJECT","features":[479]},{"name":"SE_KERNEL_OBJECT","features":[479]},{"name":"SE_LMSHARE","features":[479]},{"name":"SE_OBJECT_TYPE","features":[479]},{"name":"SE_PRINTER","features":[479]},{"name":"SE_PROVIDER_DEFINED_OBJECT","features":[479]},{"name":"SE_REGISTRY_KEY","features":[479]},{"name":"SE_REGISTRY_WOW64_32KEY","features":[479]},{"name":"SE_REGISTRY_WOW64_64KEY","features":[479]},{"name":"SE_SERVICE","features":[479]},{"name":"SE_UNKNOWN_OBJECT_TYPE","features":[479]},{"name":"SE_WINDOW_OBJECT","features":[479]},{"name":"SE_WMIGUID_OBJECT","features":[479]},{"name":"SetEntriesInAclA","features":[303,479]},{"name":"SetEntriesInAclW","features":[303,479]},{"name":"SetNamedSecurityInfoA","features":[303,479]},{"name":"SetNamedSecurityInfoW","features":[303,479]},{"name":"SetSecurityInfo","features":[303,479]},{"name":"TREE_SEC_INFO","features":[479]},{"name":"TREE_SEC_INFO_RESET","features":[479]},{"name":"TREE_SEC_INFO_RESET_KEEP_EXPLICIT","features":[479]},{"name":"TREE_SEC_INFO_SET","features":[479]},{"name":"TRUSTEE_A","features":[479]},{"name":"TRUSTEE_ACCESSA","features":[479]},{"name":"TRUSTEE_ACCESSW","features":[479]},{"name":"TRUSTEE_ACCESS_ALL","features":[479]},{"name":"TRUSTEE_ACCESS_ALLOWED","features":[479]},{"name":"TRUSTEE_ACCESS_EXPLICIT","features":[479]},{"name":"TRUSTEE_ACCESS_READ","features":[479]},{"name":"TRUSTEE_ACCESS_WRITE","features":[479]},{"name":"TRUSTEE_BAD_FORM","features":[479]},{"name":"TRUSTEE_FORM","features":[479]},{"name":"TRUSTEE_IS_ALIAS","features":[479]},{"name":"TRUSTEE_IS_COMPUTER","features":[479]},{"name":"TRUSTEE_IS_DELETED","features":[479]},{"name":"TRUSTEE_IS_DOMAIN","features":[479]},{"name":"TRUSTEE_IS_GROUP","features":[479]},{"name":"TRUSTEE_IS_IMPERSONATE","features":[479]},{"name":"TRUSTEE_IS_INVALID","features":[479]},{"name":"TRUSTEE_IS_NAME","features":[479]},{"name":"TRUSTEE_IS_OBJECTS_AND_NAME","features":[479]},{"name":"TRUSTEE_IS_OBJECTS_AND_SID","features":[479]},{"name":"TRUSTEE_IS_SID","features":[479]},{"name":"TRUSTEE_IS_UNKNOWN","features":[479]},{"name":"TRUSTEE_IS_USER","features":[479]},{"name":"TRUSTEE_IS_WELL_KNOWN_GROUP","features":[479]},{"name":"TRUSTEE_TYPE","features":[479]},{"name":"TRUSTEE_W","features":[479]},{"name":"TreeResetNamedSecurityInfoA","features":[303,479]},{"name":"TreeResetNamedSecurityInfoW","features":[303,479]},{"name":"TreeSetNamedSecurityInfoA","features":[303,479]},{"name":"TreeSetNamedSecurityInfoW","features":[303,479]},{"name":"_AUTHZ_SS_MAXSIZE","features":[479]}],"484":[{"name":"CFSTR_ACLUI_SID_INFO_LIST","features":[480]},{"name":"CreateSecurityPage","features":[480,353]},{"name":"DOBJ_COND_NTACLS","features":[480]},{"name":"DOBJ_RES_CONT","features":[480]},{"name":"DOBJ_RES_ROOT","features":[480]},{"name":"DOBJ_RIBBON_LAUNCH","features":[480]},{"name":"DOBJ_VOL_NTACLS","features":[480]},{"name":"EFFPERM_RESULT_LIST","features":[303,480]},{"name":"EditSecurity","features":[303,480]},{"name":"EditSecurityAdvanced","features":[303,480]},{"name":"IEffectivePermission","features":[480]},{"name":"IEffectivePermission2","features":[480]},{"name":"ISecurityInformation","features":[480]},{"name":"ISecurityInformation2","features":[480]},{"name":"ISecurityInformation3","features":[480]},{"name":"ISecurityInformation4","features":[480]},{"name":"ISecurityObjectTypeInfo","features":[480]},{"name":"SECURITY_INFO_PAGE_FLAGS","features":[480]},{"name":"SECURITY_OBJECT","features":[303,480]},{"name":"SECURITY_OBJECT_ID_CENTRAL_ACCESS_RULE","features":[480]},{"name":"SECURITY_OBJECT_ID_CENTRAL_POLICY","features":[480]},{"name":"SECURITY_OBJECT_ID_OBJECT_SD","features":[480]},{"name":"SECURITY_OBJECT_ID_SHARE","features":[480]},{"name":"SID_INFO","features":[303,480]},{"name":"SID_INFO_LIST","features":[303,480]},{"name":"SI_ACCESS","features":[480]},{"name":"SI_ACCESS_CONTAINER","features":[480]},{"name":"SI_ACCESS_GENERAL","features":[480]},{"name":"SI_ACCESS_PROPERTY","features":[480]},{"name":"SI_ACCESS_SPECIFIC","features":[480]},{"name":"SI_ADVANCED","features":[480]},{"name":"SI_AUDITS_ELEVATION_REQUIRED","features":[480]},{"name":"SI_CONTAINER","features":[480]},{"name":"SI_DISABLE_DENY_ACE","features":[480]},{"name":"SI_EDIT_AUDITS","features":[480]},{"name":"SI_EDIT_EFFECTIVE","features":[480]},{"name":"SI_EDIT_OWNER","features":[480]},{"name":"SI_EDIT_PERMS","features":[480]},{"name":"SI_EDIT_PROPERTIES","features":[480]},{"name":"SI_ENABLE_CENTRAL_POLICY","features":[480]},{"name":"SI_ENABLE_EDIT_ATTRIBUTE_CONDITION","features":[480]},{"name":"SI_INHERIT_TYPE","features":[480]},{"name":"SI_MAY_WRITE","features":[480]},{"name":"SI_NO_ACL_PROTECT","features":[480]},{"name":"SI_NO_ADDITIONAL_PERMISSION","features":[480]},{"name":"SI_NO_TREE_APPLY","features":[480]},{"name":"SI_OBJECT_GUID","features":[480]},{"name":"SI_OBJECT_INFO","features":[303,480]},{"name":"SI_OBJECT_INFO_FLAGS","features":[480]},{"name":"SI_OWNER_ELEVATION_REQUIRED","features":[480]},{"name":"SI_OWNER_READONLY","features":[480]},{"name":"SI_OWNER_RECURSE","features":[480]},{"name":"SI_PAGE_ACTIVATED","features":[480]},{"name":"SI_PAGE_ADVPERM","features":[480]},{"name":"SI_PAGE_AUDIT","features":[480]},{"name":"SI_PAGE_EFFECTIVE","features":[480]},{"name":"SI_PAGE_OWNER","features":[480]},{"name":"SI_PAGE_PERM","features":[480]},{"name":"SI_PAGE_SHARE","features":[480]},{"name":"SI_PAGE_TAKEOWNERSHIP","features":[480]},{"name":"SI_PAGE_TITLE","features":[480]},{"name":"SI_PAGE_TYPE","features":[480]},{"name":"SI_PERMS_ELEVATION_REQUIRED","features":[480]},{"name":"SI_READONLY","features":[480]},{"name":"SI_RESET","features":[480]},{"name":"SI_RESET_DACL","features":[480]},{"name":"SI_RESET_DACL_TREE","features":[480]},{"name":"SI_RESET_OWNER","features":[480]},{"name":"SI_RESET_SACL","features":[480]},{"name":"SI_RESET_SACL_TREE","features":[480]},{"name":"SI_SCOPE_ELEVATION_REQUIRED","features":[480]},{"name":"SI_SERVER_IS_DC","features":[480]},{"name":"SI_SHOW_AUDIT_ACTIVATED","features":[480]},{"name":"SI_SHOW_CENTRAL_POLICY_ACTIVATED","features":[480]},{"name":"SI_SHOW_DEFAULT","features":[480]},{"name":"SI_SHOW_EFFECTIVE_ACTIVATED","features":[480]},{"name":"SI_SHOW_OWNER_ACTIVATED","features":[480]},{"name":"SI_SHOW_PERM_ACTIVATED","features":[480]},{"name":"SI_SHOW_SHARE_ACTIVATED","features":[480]},{"name":"SI_VIEW_ONLY","features":[480]}],"485":[{"name":"CCF_SCESVC_ATTACHMENT","features":[481]},{"name":"CCF_SCESVC_ATTACHMENT_DATA","features":[481]},{"name":"ISceSvcAttachmentData","features":[481]},{"name":"ISceSvcAttachmentPersistInfo","features":[481]},{"name":"PFSCE_FREE_INFO","features":[481]},{"name":"PFSCE_LOG_INFO","features":[481]},{"name":"PFSCE_QUERY_INFO","features":[303,481]},{"name":"PFSCE_SET_INFO","features":[303,481]},{"name":"PF_ConfigAnalyzeService","features":[303,481]},{"name":"PF_UpdateService","features":[303,481]},{"name":"SCESTATUS_ACCESS_DENIED","features":[481]},{"name":"SCESTATUS_ALREADY_RUNNING","features":[481]},{"name":"SCESTATUS_BAD_FORMAT","features":[481]},{"name":"SCESTATUS_BUFFER_TOO_SMALL","features":[481]},{"name":"SCESTATUS_CANT_DELETE","features":[481]},{"name":"SCESTATUS_EXCEPTION_IN_SERVER","features":[481]},{"name":"SCESTATUS_INVALID_DATA","features":[481]},{"name":"SCESTATUS_INVALID_PARAMETER","features":[481]},{"name":"SCESTATUS_MOD_NOT_FOUND","features":[481]},{"name":"SCESTATUS_NOT_ENOUGH_RESOURCE","features":[481]},{"name":"SCESTATUS_NO_MAPPING","features":[481]},{"name":"SCESTATUS_NO_TEMPLATE_GIVEN","features":[481]},{"name":"SCESTATUS_OBJECT_EXIST","features":[481]},{"name":"SCESTATUS_OTHER_ERROR","features":[481]},{"name":"SCESTATUS_PREFIX_OVERFLOW","features":[481]},{"name":"SCESTATUS_PROFILE_NOT_FOUND","features":[481]},{"name":"SCESTATUS_RECORD_NOT_FOUND","features":[481]},{"name":"SCESTATUS_SERVICE_NOT_SUPPORT","features":[481]},{"name":"SCESTATUS_SUCCESS","features":[481]},{"name":"SCESTATUS_TRUST_FAIL","features":[481]},{"name":"SCESVC_ANALYSIS_INFO","features":[481]},{"name":"SCESVC_ANALYSIS_LINE","features":[481]},{"name":"SCESVC_CALLBACK_INFO","features":[303,481]},{"name":"SCESVC_CONFIGURATION_INFO","features":[481]},{"name":"SCESVC_CONFIGURATION_LINE","features":[481]},{"name":"SCESVC_ENUMERATION_MAX","features":[481]},{"name":"SCESVC_INFO_TYPE","features":[481]},{"name":"SCE_LOG_ERR_LEVEL","features":[481]},{"name":"SCE_LOG_LEVEL_ALWAYS","features":[481]},{"name":"SCE_LOG_LEVEL_DEBUG","features":[481]},{"name":"SCE_LOG_LEVEL_DETAIL","features":[481]},{"name":"SCE_LOG_LEVEL_ERROR","features":[481]},{"name":"SCE_ROOT_PATH","features":[481]},{"name":"SceSvcAnalysisInfo","features":[481]},{"name":"SceSvcConfigurationInfo","features":[481]},{"name":"SceSvcInternalUse","features":[481]},{"name":"SceSvcMergedPolicyInfo","features":[481]},{"name":"cNodetypeSceAnalysisServices","features":[481]},{"name":"cNodetypeSceEventLog","features":[481]},{"name":"cNodetypeSceTemplateServices","features":[481]},{"name":"lstruuidNodetypeSceAnalysisServices","features":[481]},{"name":"lstruuidNodetypeSceEventLog","features":[481]},{"name":"lstruuidNodetypeSceTemplateServices","features":[481]},{"name":"struuidNodetypeSceAnalysisServices","features":[481]},{"name":"struuidNodetypeSceEventLog","features":[481]},{"name":"struuidNodetypeSceTemplateServices","features":[481]}],"486":[{"name":"BINARY_BLOB_CREDENTIAL_INFO","features":[476]},{"name":"BinaryBlobCredential","features":[476]},{"name":"BinaryBlobForSystem","features":[476]},{"name":"CERT_CREDENTIAL_INFO","features":[476]},{"name":"CERT_HASH_LENGTH","features":[476]},{"name":"CREDENTIALA","features":[303,476]},{"name":"CREDENTIALW","features":[303,476]},{"name":"CREDENTIAL_ATTRIBUTEA","features":[476]},{"name":"CREDENTIAL_ATTRIBUTEW","features":[476]},{"name":"CREDENTIAL_TARGET_INFORMATIONA","features":[476]},{"name":"CREDENTIAL_TARGET_INFORMATIONW","features":[476]},{"name":"CREDSPP_SUBMIT_TYPE","features":[476]},{"name":"CREDSSP_CRED","features":[476]},{"name":"CREDSSP_CRED_EX","features":[476]},{"name":"CREDSSP_CRED_EX_VERSION","features":[476]},{"name":"CREDSSP_FLAG_REDIRECT","features":[476]},{"name":"CREDSSP_NAME","features":[476]},{"name":"CREDSSP_SERVER_AUTH_CERTIFICATE","features":[476]},{"name":"CREDSSP_SERVER_AUTH_LOOPBACK","features":[476]},{"name":"CREDSSP_SERVER_AUTH_NEGOTIATE","features":[476]},{"name":"CREDUIWIN_AUTHPACKAGE_ONLY","features":[476]},{"name":"CREDUIWIN_CHECKBOX","features":[476]},{"name":"CREDUIWIN_DOWNLEVEL_HELLO_AS_SMART_CARD","features":[476]},{"name":"CREDUIWIN_ENUMERATE_ADMINS","features":[476]},{"name":"CREDUIWIN_ENUMERATE_CURRENT_USER","features":[476]},{"name":"CREDUIWIN_FLAGS","features":[476]},{"name":"CREDUIWIN_GENERIC","features":[476]},{"name":"CREDUIWIN_IGNORE_CLOUDAUTHORITY_NAME","features":[476]},{"name":"CREDUIWIN_IN_CRED_ONLY","features":[476]},{"name":"CREDUIWIN_PACK_32_WOW","features":[476]},{"name":"CREDUIWIN_PREPROMPTING","features":[476]},{"name":"CREDUIWIN_SECURE_PROMPT","features":[476]},{"name":"CREDUI_FLAGS","features":[476]},{"name":"CREDUI_FLAGS_ALWAYS_SHOW_UI","features":[476]},{"name":"CREDUI_FLAGS_COMPLETE_USERNAME","features":[476]},{"name":"CREDUI_FLAGS_DO_NOT_PERSIST","features":[476]},{"name":"CREDUI_FLAGS_EXCLUDE_CERTIFICATES","features":[476]},{"name":"CREDUI_FLAGS_EXPECT_CONFIRMATION","features":[476]},{"name":"CREDUI_FLAGS_GENERIC_CREDENTIALS","features":[476]},{"name":"CREDUI_FLAGS_INCORRECT_PASSWORD","features":[476]},{"name":"CREDUI_FLAGS_KEEP_USERNAME","features":[476]},{"name":"CREDUI_FLAGS_PASSWORD_ONLY_OK","features":[476]},{"name":"CREDUI_FLAGS_PERSIST","features":[476]},{"name":"CREDUI_FLAGS_REQUEST_ADMINISTRATOR","features":[476]},{"name":"CREDUI_FLAGS_REQUIRE_CERTIFICATE","features":[476]},{"name":"CREDUI_FLAGS_REQUIRE_SMARTCARD","features":[476]},{"name":"CREDUI_FLAGS_SERVER_CREDENTIAL","features":[476]},{"name":"CREDUI_FLAGS_SHOW_SAVE_CHECK_BOX","features":[476]},{"name":"CREDUI_FLAGS_USERNAME_TARGET_CREDENTIALS","features":[476]},{"name":"CREDUI_FLAGS_VALIDATE_USERNAME","features":[476]},{"name":"CREDUI_INFOA","features":[303,314,476]},{"name":"CREDUI_INFOW","features":[303,314,476]},{"name":"CREDUI_MAX_CAPTION_LENGTH","features":[476]},{"name":"CREDUI_MAX_DOMAIN_TARGET_LENGTH","features":[476]},{"name":"CREDUI_MAX_GENERIC_TARGET_LENGTH","features":[476]},{"name":"CREDUI_MAX_MESSAGE_LENGTH","features":[476]},{"name":"CREDUI_MAX_USERNAME_LENGTH","features":[476]},{"name":"CRED_ALLOW_NAME_RESOLUTION","features":[476]},{"name":"CRED_CACHE_TARGET_INFORMATION","features":[476]},{"name":"CRED_ENUMERATE_ALL_CREDENTIALS","features":[476]},{"name":"CRED_ENUMERATE_FLAGS","features":[476]},{"name":"CRED_FLAGS","features":[476]},{"name":"CRED_FLAGS_NGC_CERT","features":[476]},{"name":"CRED_FLAGS_OWF_CRED_BLOB","features":[476]},{"name":"CRED_FLAGS_PASSWORD_FOR_CERT","features":[476]},{"name":"CRED_FLAGS_PROMPT_NOW","features":[476]},{"name":"CRED_FLAGS_REQUIRE_CONFIRMATION","features":[476]},{"name":"CRED_FLAGS_USERNAME_TARGET","features":[476]},{"name":"CRED_FLAGS_VALID_FLAGS","features":[476]},{"name":"CRED_FLAGS_VALID_INPUT_FLAGS","features":[476]},{"name":"CRED_FLAGS_VSM_PROTECTED","features":[476]},{"name":"CRED_FLAGS_WILDCARD_MATCH","features":[476]},{"name":"CRED_LOGON_TYPES_MASK","features":[476]},{"name":"CRED_MARSHAL_TYPE","features":[476]},{"name":"CRED_MAX_ATTRIBUTES","features":[476]},{"name":"CRED_MAX_CREDENTIAL_BLOB_SIZE","features":[476]},{"name":"CRED_MAX_DOMAIN_TARGET_NAME_LENGTH","features":[476]},{"name":"CRED_MAX_GENERIC_TARGET_NAME_LENGTH","features":[476]},{"name":"CRED_MAX_STRING_LENGTH","features":[476]},{"name":"CRED_MAX_TARGETNAME_ATTRIBUTE_LENGTH","features":[476]},{"name":"CRED_MAX_TARGETNAME_NAMESPACE_LENGTH","features":[476]},{"name":"CRED_MAX_USERNAME_LENGTH","features":[476]},{"name":"CRED_MAX_VALUE_SIZE","features":[476]},{"name":"CRED_PACK_FLAGS","features":[476]},{"name":"CRED_PACK_GENERIC_CREDENTIALS","features":[476]},{"name":"CRED_PACK_ID_PROVIDER_CREDENTIALS","features":[476]},{"name":"CRED_PACK_PROTECTED_CREDENTIALS","features":[476]},{"name":"CRED_PACK_WOW_BUFFER","features":[476]},{"name":"CRED_PERSIST","features":[476]},{"name":"CRED_PERSIST_ENTERPRISE","features":[476]},{"name":"CRED_PERSIST_LOCAL_MACHINE","features":[476]},{"name":"CRED_PERSIST_NONE","features":[476]},{"name":"CRED_PERSIST_SESSION","features":[476]},{"name":"CRED_PRESERVE_CREDENTIAL_BLOB","features":[476]},{"name":"CRED_PROTECTION_TYPE","features":[476]},{"name":"CRED_PROTECT_AS_SELF","features":[476]},{"name":"CRED_PROTECT_TO_SYSTEM","features":[476]},{"name":"CRED_SESSION_WILDCARD_NAME","features":[476]},{"name":"CRED_SESSION_WILDCARD_NAME_A","features":[476]},{"name":"CRED_SESSION_WILDCARD_NAME_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_W","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_A","features":[476]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_W","features":[476]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE","features":[476]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_A","features":[476]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_W","features":[476]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_A","features":[476]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_W","features":[476]},{"name":"CRED_TI_CREATE_EXPLICIT_CRED","features":[476]},{"name":"CRED_TI_DNSTREE_IS_DFS_SERVER","features":[476]},{"name":"CRED_TI_DOMAIN_FORMAT_UNKNOWN","features":[476]},{"name":"CRED_TI_ONLY_PASSWORD_REQUIRED","features":[476]},{"name":"CRED_TI_SERVER_FORMAT_UNKNOWN","features":[476]},{"name":"CRED_TI_USERNAME_TARGET","features":[476]},{"name":"CRED_TI_VALID_FLAGS","features":[476]},{"name":"CRED_TI_WORKGROUP_MEMBER","features":[476]},{"name":"CRED_TYPE","features":[476]},{"name":"CRED_TYPE_DOMAIN_CERTIFICATE","features":[476]},{"name":"CRED_TYPE_DOMAIN_EXTENDED","features":[476]},{"name":"CRED_TYPE_DOMAIN_PASSWORD","features":[476]},{"name":"CRED_TYPE_DOMAIN_VISIBLE_PASSWORD","features":[476]},{"name":"CRED_TYPE_GENERIC","features":[476]},{"name":"CRED_TYPE_GENERIC_CERTIFICATE","features":[476]},{"name":"CRED_TYPE_MAXIMUM","features":[476]},{"name":"CRED_TYPE_MAXIMUM_EX","features":[476]},{"name":"CRED_UNPROTECT_ALLOW_TO_SYSTEM","features":[476]},{"name":"CRED_UNPROTECT_AS_SELF","features":[476]},{"name":"CertCredential","features":[476]},{"name":"CredDeleteA","features":[303,476]},{"name":"CredDeleteW","features":[303,476]},{"name":"CredEnumerateA","features":[303,476]},{"name":"CredEnumerateW","features":[303,476]},{"name":"CredFindBestCredentialA","features":[303,476]},{"name":"CredFindBestCredentialW","features":[303,476]},{"name":"CredForSystemProtection","features":[476]},{"name":"CredFree","features":[476]},{"name":"CredGetSessionTypes","features":[303,476]},{"name":"CredGetTargetInfoA","features":[303,476]},{"name":"CredGetTargetInfoW","features":[303,476]},{"name":"CredIsMarshaledCredentialA","features":[303,476]},{"name":"CredIsMarshaledCredentialW","features":[303,476]},{"name":"CredIsProtectedA","features":[303,476]},{"name":"CredIsProtectedW","features":[303,476]},{"name":"CredMarshalCredentialA","features":[303,476]},{"name":"CredMarshalCredentialW","features":[303,476]},{"name":"CredPackAuthenticationBufferA","features":[303,476]},{"name":"CredPackAuthenticationBufferW","features":[303,476]},{"name":"CredProtectA","features":[303,476]},{"name":"CredProtectW","features":[303,476]},{"name":"CredReadA","features":[303,476]},{"name":"CredReadDomainCredentialsA","features":[303,476]},{"name":"CredReadDomainCredentialsW","features":[303,476]},{"name":"CredReadW","features":[303,476]},{"name":"CredRenameA","features":[303,476]},{"name":"CredRenameW","features":[303,476]},{"name":"CredTrustedProtection","features":[476]},{"name":"CredUICmdLinePromptForCredentialsA","features":[303,476]},{"name":"CredUICmdLinePromptForCredentialsW","features":[303,476]},{"name":"CredUIConfirmCredentialsA","features":[303,476]},{"name":"CredUIConfirmCredentialsW","features":[303,476]},{"name":"CredUIParseUserNameA","features":[476]},{"name":"CredUIParseUserNameW","features":[476]},{"name":"CredUIPromptForCredentialsA","features":[303,314,476]},{"name":"CredUIPromptForCredentialsW","features":[303,314,476]},{"name":"CredUIPromptForWindowsCredentialsA","features":[303,314,476]},{"name":"CredUIPromptForWindowsCredentialsW","features":[303,314,476]},{"name":"CredUIReadSSOCredW","features":[476]},{"name":"CredUIStoreSSOCredW","features":[303,476]},{"name":"CredUnPackAuthenticationBufferA","features":[303,476]},{"name":"CredUnPackAuthenticationBufferW","features":[303,476]},{"name":"CredUnmarshalCredentialA","features":[303,476]},{"name":"CredUnmarshalCredentialW","features":[303,476]},{"name":"CredUnprotectA","features":[303,476]},{"name":"CredUnprotectW","features":[303,476]},{"name":"CredUnprotected","features":[476]},{"name":"CredUserProtection","features":[476]},{"name":"CredWriteA","features":[303,476]},{"name":"CredWriteDomainCredentialsA","features":[303,476]},{"name":"CredWriteDomainCredentialsW","features":[303,476]},{"name":"CredWriteW","features":[303,476]},{"name":"CredsspCertificateCreds","features":[476]},{"name":"CredsspCredEx","features":[476]},{"name":"CredsspPasswordCreds","features":[476]},{"name":"CredsspSchannelCreds","features":[476]},{"name":"CredsspSubmitBufferBoth","features":[476]},{"name":"CredsspSubmitBufferBothOld","features":[476]},{"name":"FILE_DEVICE_SMARTCARD","features":[476]},{"name":"GUID_DEVINTERFACE_SMARTCARD_READER","features":[476]},{"name":"GetOpenCardNameA","features":[303,476]},{"name":"GetOpenCardNameW","features":[303,476]},{"name":"KeyCredentialManagerFreeInformation","features":[476]},{"name":"KeyCredentialManagerGetInformation","features":[476]},{"name":"KeyCredentialManagerGetOperationErrorStates","features":[303,476]},{"name":"KeyCredentialManagerInfo","features":[476]},{"name":"KeyCredentialManagerOperationErrorStateCertificateFailure","features":[476]},{"name":"KeyCredentialManagerOperationErrorStateDeviceJoinFailure","features":[476]},{"name":"KeyCredentialManagerOperationErrorStateHardwareFailure","features":[476]},{"name":"KeyCredentialManagerOperationErrorStateNone","features":[476]},{"name":"KeyCredentialManagerOperationErrorStatePinExistsFailure","features":[476]},{"name":"KeyCredentialManagerOperationErrorStatePolicyFailure","features":[476]},{"name":"KeyCredentialManagerOperationErrorStateRemoteSessionFailure","features":[476]},{"name":"KeyCredentialManagerOperationErrorStateTokenFailure","features":[476]},{"name":"KeyCredentialManagerOperationErrorStates","features":[476]},{"name":"KeyCredentialManagerOperationType","features":[476]},{"name":"KeyCredentialManagerPinChange","features":[476]},{"name":"KeyCredentialManagerPinReset","features":[476]},{"name":"KeyCredentialManagerProvisioning","features":[476]},{"name":"KeyCredentialManagerShowUIOperation","features":[303,476]},{"name":"LPOCNCHKPROC","features":[303,476]},{"name":"LPOCNCONNPROCA","features":[476]},{"name":"LPOCNCONNPROCW","features":[476]},{"name":"LPOCNDSCPROC","features":[476]},{"name":"MAXIMUM_ATTR_STRING_LENGTH","features":[476]},{"name":"MAXIMUM_SMARTCARD_READERS","features":[476]},{"name":"OPENCARDNAMEA","features":[303,476]},{"name":"OPENCARDNAMEW","features":[303,476]},{"name":"OPENCARDNAME_EXA","features":[303,476,365]},{"name":"OPENCARDNAME_EXW","features":[303,476,365]},{"name":"OPENCARD_SEARCH_CRITERIAA","features":[303,476]},{"name":"OPENCARD_SEARCH_CRITERIAW","features":[303,476]},{"name":"READER_SEL_REQUEST","features":[476]},{"name":"READER_SEL_REQUEST_MATCH_TYPE","features":[476]},{"name":"READER_SEL_RESPONSE","features":[476]},{"name":"RSR_MATCH_TYPE_ALL_CARDS","features":[476]},{"name":"RSR_MATCH_TYPE_READER_AND_CONTAINER","features":[476]},{"name":"RSR_MATCH_TYPE_SERIAL_NUMBER","features":[476]},{"name":"SCARD_ABSENT","features":[476]},{"name":"SCARD_ALL_READERS","features":[476]},{"name":"SCARD_ATRMASK","features":[476]},{"name":"SCARD_ATR_LENGTH","features":[476]},{"name":"SCARD_AUDIT_CHV_FAILURE","features":[476]},{"name":"SCARD_AUDIT_CHV_SUCCESS","features":[476]},{"name":"SCARD_CLASS_COMMUNICATIONS","features":[476]},{"name":"SCARD_CLASS_ICC_STATE","features":[476]},{"name":"SCARD_CLASS_IFD_PROTOCOL","features":[476]},{"name":"SCARD_CLASS_MECHANICAL","features":[476]},{"name":"SCARD_CLASS_PERF","features":[476]},{"name":"SCARD_CLASS_POWER_MGMT","features":[476]},{"name":"SCARD_CLASS_PROTOCOL","features":[476]},{"name":"SCARD_CLASS_SECURITY","features":[476]},{"name":"SCARD_CLASS_SYSTEM","features":[476]},{"name":"SCARD_CLASS_VENDOR_DEFINED","features":[476]},{"name":"SCARD_CLASS_VENDOR_INFO","features":[476]},{"name":"SCARD_COLD_RESET","features":[476]},{"name":"SCARD_DEFAULT_READERS","features":[476]},{"name":"SCARD_EJECT_CARD","features":[476]},{"name":"SCARD_IO_REQUEST","features":[476]},{"name":"SCARD_LEAVE_CARD","features":[476]},{"name":"SCARD_LOCAL_READERS","features":[476]},{"name":"SCARD_NEGOTIABLE","features":[476]},{"name":"SCARD_POWERED","features":[476]},{"name":"SCARD_POWER_DOWN","features":[476]},{"name":"SCARD_PRESENT","features":[476]},{"name":"SCARD_PROTOCOL_DEFAULT","features":[476]},{"name":"SCARD_PROTOCOL_OPTIMAL","features":[476]},{"name":"SCARD_PROTOCOL_RAW","features":[476]},{"name":"SCARD_PROTOCOL_T0","features":[476]},{"name":"SCARD_PROTOCOL_T1","features":[476]},{"name":"SCARD_PROTOCOL_UNDEFINED","features":[476]},{"name":"SCARD_PROVIDER_CSP","features":[476]},{"name":"SCARD_PROVIDER_KSP","features":[476]},{"name":"SCARD_PROVIDER_PRIMARY","features":[476]},{"name":"SCARD_READERSTATEA","features":[476]},{"name":"SCARD_READERSTATEW","features":[476]},{"name":"SCARD_READER_CONFISCATES","features":[476]},{"name":"SCARD_READER_CONTACTLESS","features":[476]},{"name":"SCARD_READER_EJECTS","features":[476]},{"name":"SCARD_READER_SWALLOWS","features":[476]},{"name":"SCARD_READER_TYPE_EMBEDDEDSE","features":[476]},{"name":"SCARD_READER_TYPE_IDE","features":[476]},{"name":"SCARD_READER_TYPE_KEYBOARD","features":[476]},{"name":"SCARD_READER_TYPE_NFC","features":[476]},{"name":"SCARD_READER_TYPE_NGC","features":[476]},{"name":"SCARD_READER_TYPE_PARALELL","features":[476]},{"name":"SCARD_READER_TYPE_PCMCIA","features":[476]},{"name":"SCARD_READER_TYPE_SCSI","features":[476]},{"name":"SCARD_READER_TYPE_SERIAL","features":[476]},{"name":"SCARD_READER_TYPE_TPM","features":[476]},{"name":"SCARD_READER_TYPE_UICC","features":[476]},{"name":"SCARD_READER_TYPE_USB","features":[476]},{"name":"SCARD_READER_TYPE_VENDOR","features":[476]},{"name":"SCARD_RESET_CARD","features":[476]},{"name":"SCARD_SCOPE","features":[476]},{"name":"SCARD_SCOPE_SYSTEM","features":[476]},{"name":"SCARD_SCOPE_TERMINAL","features":[476]},{"name":"SCARD_SCOPE_USER","features":[476]},{"name":"SCARD_SHARE_DIRECT","features":[476]},{"name":"SCARD_SHARE_EXCLUSIVE","features":[476]},{"name":"SCARD_SHARE_SHARED","features":[476]},{"name":"SCARD_SPECIFIC","features":[476]},{"name":"SCARD_STATE","features":[476]},{"name":"SCARD_STATE_ATRMATCH","features":[476]},{"name":"SCARD_STATE_CHANGED","features":[476]},{"name":"SCARD_STATE_EMPTY","features":[476]},{"name":"SCARD_STATE_EXCLUSIVE","features":[476]},{"name":"SCARD_STATE_IGNORE","features":[476]},{"name":"SCARD_STATE_INUSE","features":[476]},{"name":"SCARD_STATE_MUTE","features":[476]},{"name":"SCARD_STATE_PRESENT","features":[476]},{"name":"SCARD_STATE_UNAVAILABLE","features":[476]},{"name":"SCARD_STATE_UNAWARE","features":[476]},{"name":"SCARD_STATE_UNKNOWN","features":[476]},{"name":"SCARD_STATE_UNPOWERED","features":[476]},{"name":"SCARD_SWALLOWED","features":[476]},{"name":"SCARD_SYSTEM_READERS","features":[476]},{"name":"SCARD_T0_CMD_LENGTH","features":[476]},{"name":"SCARD_T0_COMMAND","features":[476]},{"name":"SCARD_T0_HEADER_LENGTH","features":[476]},{"name":"SCARD_T0_REQUEST","features":[476]},{"name":"SCARD_T1_EPILOGUE_LENGTH","features":[476]},{"name":"SCARD_T1_EPILOGUE_LENGTH_LRC","features":[476]},{"name":"SCARD_T1_MAX_IFS","features":[476]},{"name":"SCARD_T1_PROLOGUE_LENGTH","features":[476]},{"name":"SCARD_T1_REQUEST","features":[476]},{"name":"SCARD_UNKNOWN","features":[476]},{"name":"SCARD_UNPOWER_CARD","features":[476]},{"name":"SCARD_WARM_RESET","features":[476]},{"name":"SCERR_NOCARDNAME","features":[476]},{"name":"SCERR_NOGUIDS","features":[476]},{"name":"SC_DLG_FORCE_UI","features":[476]},{"name":"SC_DLG_MINIMAL_UI","features":[476]},{"name":"SC_DLG_NO_UI","features":[476]},{"name":"SCardAccessStartedEvent","features":[303,476]},{"name":"SCardAddReaderToGroupA","features":[476]},{"name":"SCardAddReaderToGroupW","features":[476]},{"name":"SCardAudit","features":[476]},{"name":"SCardBeginTransaction","features":[476]},{"name":"SCardCancel","features":[476]},{"name":"SCardConnectA","features":[476]},{"name":"SCardConnectW","features":[476]},{"name":"SCardControl","features":[476]},{"name":"SCardDisconnect","features":[476]},{"name":"SCardDlgExtendedError","features":[476]},{"name":"SCardEndTransaction","features":[476]},{"name":"SCardEstablishContext","features":[476]},{"name":"SCardForgetCardTypeA","features":[476]},{"name":"SCardForgetCardTypeW","features":[476]},{"name":"SCardForgetReaderA","features":[476]},{"name":"SCardForgetReaderGroupA","features":[476]},{"name":"SCardForgetReaderGroupW","features":[476]},{"name":"SCardForgetReaderW","features":[476]},{"name":"SCardFreeMemory","features":[476]},{"name":"SCardGetAttrib","features":[476]},{"name":"SCardGetCardTypeProviderNameA","features":[476]},{"name":"SCardGetCardTypeProviderNameW","features":[476]},{"name":"SCardGetDeviceTypeIdA","features":[476]},{"name":"SCardGetDeviceTypeIdW","features":[476]},{"name":"SCardGetProviderIdA","features":[476]},{"name":"SCardGetProviderIdW","features":[476]},{"name":"SCardGetReaderDeviceInstanceIdA","features":[476]},{"name":"SCardGetReaderDeviceInstanceIdW","features":[476]},{"name":"SCardGetReaderIconA","features":[476]},{"name":"SCardGetReaderIconW","features":[476]},{"name":"SCardGetStatusChangeA","features":[476]},{"name":"SCardGetStatusChangeW","features":[476]},{"name":"SCardGetTransmitCount","features":[476]},{"name":"SCardIntroduceCardTypeA","features":[476]},{"name":"SCardIntroduceCardTypeW","features":[476]},{"name":"SCardIntroduceReaderA","features":[476]},{"name":"SCardIntroduceReaderGroupA","features":[476]},{"name":"SCardIntroduceReaderGroupW","features":[476]},{"name":"SCardIntroduceReaderW","features":[476]},{"name":"SCardIsValidContext","features":[476]},{"name":"SCardListCardsA","features":[476]},{"name":"SCardListCardsW","features":[476]},{"name":"SCardListInterfacesA","features":[476]},{"name":"SCardListInterfacesW","features":[476]},{"name":"SCardListReaderGroupsA","features":[476]},{"name":"SCardListReaderGroupsW","features":[476]},{"name":"SCardListReadersA","features":[476]},{"name":"SCardListReadersW","features":[476]},{"name":"SCardListReadersWithDeviceInstanceIdA","features":[476]},{"name":"SCardListReadersWithDeviceInstanceIdW","features":[476]},{"name":"SCardLocateCardsA","features":[476]},{"name":"SCardLocateCardsByATRA","features":[476]},{"name":"SCardLocateCardsByATRW","features":[476]},{"name":"SCardLocateCardsW","features":[476]},{"name":"SCardReadCacheA","features":[476]},{"name":"SCardReadCacheW","features":[476]},{"name":"SCardReconnect","features":[476]},{"name":"SCardReleaseContext","features":[476]},{"name":"SCardReleaseStartedEvent","features":[476]},{"name":"SCardRemoveReaderFromGroupA","features":[476]},{"name":"SCardRemoveReaderFromGroupW","features":[476]},{"name":"SCardSetAttrib","features":[476]},{"name":"SCardSetCardTypeProviderNameA","features":[476]},{"name":"SCardSetCardTypeProviderNameW","features":[476]},{"name":"SCardState","features":[476]},{"name":"SCardStatusA","features":[476]},{"name":"SCardStatusW","features":[476]},{"name":"SCardTransmit","features":[476]},{"name":"SCardUIDlgSelectCardA","features":[303,476,365]},{"name":"SCardUIDlgSelectCardW","features":[303,476,365]},{"name":"SCardWriteCacheA","features":[476]},{"name":"SCardWriteCacheW","features":[476]},{"name":"SECPKG_ALT_ATTR","features":[476]},{"name":"SECPKG_ATTR_C_FULL_IDENT_TOKEN","features":[476]},{"name":"STATUS_ACCOUNT_DISABLED","features":[303,476]},{"name":"STATUS_ACCOUNT_EXPIRED","features":[303,476]},{"name":"STATUS_ACCOUNT_LOCKED_OUT","features":[303,476]},{"name":"STATUS_ACCOUNT_RESTRICTION","features":[303,476]},{"name":"STATUS_AUTHENTICATION_FIREWALL_FAILED","features":[303,476]},{"name":"STATUS_DOWNGRADE_DETECTED","features":[303,476]},{"name":"STATUS_LOGON_FAILURE","features":[303,476]},{"name":"STATUS_LOGON_TYPE_NOT_GRANTED","features":[303,476]},{"name":"STATUS_NO_SUCH_LOGON_SESSION","features":[303,476]},{"name":"STATUS_NO_SUCH_USER","features":[303,476]},{"name":"STATUS_PASSWORD_EXPIRED","features":[303,476]},{"name":"STATUS_PASSWORD_MUST_CHANGE","features":[303,476]},{"name":"STATUS_WRONG_PASSWORD","features":[303,476]},{"name":"SecHandle","features":[476]},{"name":"SecPkgContext_ClientCreds","features":[476]},{"name":"TS_SSP_NAME","features":[476]},{"name":"TS_SSP_NAME_A","features":[476]},{"name":"USERNAME_TARGET_CREDENTIAL_INFO","features":[476]},{"name":"UsernameForPackedCredentials","features":[476]},{"name":"UsernameTargetCredential","features":[476]},{"name":"szOID_TS_KP_TS_SERVER_AUTH","features":[476]}],"487":[{"name":"ALG_CLASS_ALL","features":[387]},{"name":"ALG_CLASS_ANY","features":[387]},{"name":"ALG_CLASS_DATA_ENCRYPT","features":[387]},{"name":"ALG_CLASS_HASH","features":[387]},{"name":"ALG_CLASS_KEY_EXCHANGE","features":[387]},{"name":"ALG_CLASS_MSG_ENCRYPT","features":[387]},{"name":"ALG_CLASS_SIGNATURE","features":[387]},{"name":"ALG_ID","features":[387]},{"name":"ALG_SID_3DES","features":[387]},{"name":"ALG_SID_3DES_112","features":[387]},{"name":"ALG_SID_AES","features":[387]},{"name":"ALG_SID_AES_128","features":[387]},{"name":"ALG_SID_AES_192","features":[387]},{"name":"ALG_SID_AES_256","features":[387]},{"name":"ALG_SID_AGREED_KEY_ANY","features":[387]},{"name":"ALG_SID_ANY","features":[387]},{"name":"ALG_SID_CAST","features":[387]},{"name":"ALG_SID_CYLINK_MEK","features":[387]},{"name":"ALG_SID_DES","features":[387]},{"name":"ALG_SID_DESX","features":[387]},{"name":"ALG_SID_DH_EPHEM","features":[387]},{"name":"ALG_SID_DH_SANDF","features":[387]},{"name":"ALG_SID_DSS_ANY","features":[387]},{"name":"ALG_SID_DSS_DMS","features":[387]},{"name":"ALG_SID_DSS_PKCS","features":[387]},{"name":"ALG_SID_ECDH","features":[387]},{"name":"ALG_SID_ECDH_EPHEM","features":[387]},{"name":"ALG_SID_ECDSA","features":[387]},{"name":"ALG_SID_ECMQV","features":[387]},{"name":"ALG_SID_EXAMPLE","features":[387]},{"name":"ALG_SID_HASH_REPLACE_OWF","features":[387]},{"name":"ALG_SID_HMAC","features":[387]},{"name":"ALG_SID_IDEA","features":[387]},{"name":"ALG_SID_KEA","features":[387]},{"name":"ALG_SID_MAC","features":[387]},{"name":"ALG_SID_MD2","features":[387]},{"name":"ALG_SID_MD4","features":[387]},{"name":"ALG_SID_MD5","features":[387]},{"name":"ALG_SID_PCT1_MASTER","features":[387]},{"name":"ALG_SID_RC2","features":[387]},{"name":"ALG_SID_RC4","features":[387]},{"name":"ALG_SID_RC5","features":[387]},{"name":"ALG_SID_RIPEMD","features":[387]},{"name":"ALG_SID_RIPEMD160","features":[387]},{"name":"ALG_SID_RSA_ANY","features":[387]},{"name":"ALG_SID_RSA_ENTRUST","features":[387]},{"name":"ALG_SID_RSA_MSATWORK","features":[387]},{"name":"ALG_SID_RSA_PGP","features":[387]},{"name":"ALG_SID_RSA_PKCS","features":[387]},{"name":"ALG_SID_SAFERSK128","features":[387]},{"name":"ALG_SID_SAFERSK64","features":[387]},{"name":"ALG_SID_SCHANNEL_ENC_KEY","features":[387]},{"name":"ALG_SID_SCHANNEL_MAC_KEY","features":[387]},{"name":"ALG_SID_SCHANNEL_MASTER_HASH","features":[387]},{"name":"ALG_SID_SEAL","features":[387]},{"name":"ALG_SID_SHA","features":[387]},{"name":"ALG_SID_SHA1","features":[387]},{"name":"ALG_SID_SHA_256","features":[387]},{"name":"ALG_SID_SHA_384","features":[387]},{"name":"ALG_SID_SHA_512","features":[387]},{"name":"ALG_SID_SKIPJACK","features":[387]},{"name":"ALG_SID_SSL2_MASTER","features":[387]},{"name":"ALG_SID_SSL3SHAMD5","features":[387]},{"name":"ALG_SID_SSL3_MASTER","features":[387]},{"name":"ALG_SID_TEK","features":[387]},{"name":"ALG_SID_THIRDPARTY_ANY","features":[387]},{"name":"ALG_SID_TLS1PRF","features":[387]},{"name":"ALG_SID_TLS1_MASTER","features":[387]},{"name":"ALG_TYPE_ANY","features":[387]},{"name":"ALG_TYPE_BLOCK","features":[387]},{"name":"ALG_TYPE_DH","features":[387]},{"name":"ALG_TYPE_DSS","features":[387]},{"name":"ALG_TYPE_ECDH","features":[387]},{"name":"ALG_TYPE_RSA","features":[387]},{"name":"ALG_TYPE_SECURECHANNEL","features":[387]},{"name":"ALG_TYPE_STREAM","features":[387]},{"name":"ALG_TYPE_THIRDPARTY","features":[387]},{"name":"AT_KEYEXCHANGE","features":[387]},{"name":"AT_SIGNATURE","features":[387]},{"name":"AUDIT_CARD_DELETE","features":[387]},{"name":"AUDIT_CARD_IMPORT","features":[387]},{"name":"AUDIT_CARD_WRITTEN","features":[387]},{"name":"AUDIT_SERVICE_IDLE_STOP","features":[387]},{"name":"AUDIT_STORE_DELETE","features":[387]},{"name":"AUDIT_STORE_EXPORT","features":[387]},{"name":"AUDIT_STORE_IMPORT","features":[387]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA","features":[387]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[303,387]},{"name":"AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA","features":[303,387]},{"name":"AUTHTYPE_CLIENT","features":[387]},{"name":"AUTHTYPE_SERVER","features":[387]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_CA_FLAG","features":[387]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_END_ENTITY_FLAG","features":[387]},{"name":"BCRYPTBUFFER_VERSION","features":[387]},{"name":"BCRYPTGENRANDOM_FLAGS","features":[387]},{"name":"BCRYPT_3DES_112_ALGORITHM","features":[387]},{"name":"BCRYPT_3DES_112_CBC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_3DES_112_CFB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_3DES_112_ECB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_3DES_ALGORITHM","features":[387]},{"name":"BCRYPT_3DES_CBC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_3DES_CFB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_3DES_ECB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_ALGORITHM","features":[387]},{"name":"BCRYPT_AES_CBC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_CCM_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_CFB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_CMAC_ALGORITHM","features":[387]},{"name":"BCRYPT_AES_CMAC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_ECB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_GCM_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_GMAC_ALGORITHM","features":[387]},{"name":"BCRYPT_AES_GMAC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_AES_WRAP_KEY_BLOB","features":[387]},{"name":"BCRYPT_ALGORITHM_IDENTIFIER","features":[387]},{"name":"BCRYPT_ALGORITHM_NAME","features":[387]},{"name":"BCRYPT_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ALG_HANDLE_HMAC_FLAG","features":[387]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[387]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[387]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO","features":[387]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO_VERSION","features":[387]},{"name":"BCRYPT_AUTH_MODE_CHAIN_CALLS_FLAG","features":[387]},{"name":"BCRYPT_AUTH_MODE_IN_PROGRESS_FLAG","features":[387]},{"name":"BCRYPT_AUTH_TAG_LENGTH","features":[387]},{"name":"BCRYPT_BLOCK_LENGTH","features":[387]},{"name":"BCRYPT_BLOCK_PADDING","features":[387]},{"name":"BCRYPT_BLOCK_SIZE_LIST","features":[387]},{"name":"BCRYPT_BUFFERS_LOCKED_FLAG","features":[387]},{"name":"BCRYPT_CAPI_AES_FLAG","features":[387]},{"name":"BCRYPT_CAPI_KDF_ALGORITHM","features":[387]},{"name":"BCRYPT_CAPI_KDF_ALG_HANDLE","features":[387]},{"name":"BCRYPT_CHACHA20_POLY1305_ALGORITHM","features":[387]},{"name":"BCRYPT_CHACHA20_POLY1305_ALG_HANDLE","features":[387]},{"name":"BCRYPT_CHAINING_MODE","features":[387]},{"name":"BCRYPT_CHAIN_MODE_CBC","features":[387]},{"name":"BCRYPT_CHAIN_MODE_CCM","features":[387]},{"name":"BCRYPT_CHAIN_MODE_CFB","features":[387]},{"name":"BCRYPT_CHAIN_MODE_ECB","features":[387]},{"name":"BCRYPT_CHAIN_MODE_GCM","features":[387]},{"name":"BCRYPT_CHAIN_MODE_NA","features":[387]},{"name":"BCRYPT_CIPHER_INTERFACE","features":[387]},{"name":"BCRYPT_CIPHER_OPERATION","features":[387]},{"name":"BCRYPT_DESX_ALGORITHM","features":[387]},{"name":"BCRYPT_DESX_CBC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DESX_CFB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DESX_ECB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DES_ALGORITHM","features":[387]},{"name":"BCRYPT_DES_CBC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DES_CFB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DES_ECB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DH_ALGORITHM","features":[387]},{"name":"BCRYPT_DH_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DH_KEY_BLOB","features":[387]},{"name":"BCRYPT_DH_KEY_BLOB_MAGIC","features":[387]},{"name":"BCRYPT_DH_PARAMETERS","features":[387]},{"name":"BCRYPT_DH_PARAMETERS_MAGIC","features":[387]},{"name":"BCRYPT_DH_PARAMETER_HEADER","features":[387]},{"name":"BCRYPT_DH_PRIVATE_BLOB","features":[387]},{"name":"BCRYPT_DH_PRIVATE_MAGIC","features":[387]},{"name":"BCRYPT_DH_PUBLIC_BLOB","features":[387]},{"name":"BCRYPT_DH_PUBLIC_MAGIC","features":[387]},{"name":"BCRYPT_DSA_ALGORITHM","features":[387]},{"name":"BCRYPT_DSA_ALG_HANDLE","features":[387]},{"name":"BCRYPT_DSA_KEY_BLOB","features":[387]},{"name":"BCRYPT_DSA_KEY_BLOB_V2","features":[387]},{"name":"BCRYPT_DSA_MAGIC","features":[387]},{"name":"BCRYPT_DSA_PARAMETERS","features":[387]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC","features":[387]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC_V2","features":[387]},{"name":"BCRYPT_DSA_PARAMETER_HEADER","features":[387]},{"name":"BCRYPT_DSA_PARAMETER_HEADER_V2","features":[387]},{"name":"BCRYPT_DSA_PRIVATE_BLOB","features":[387]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC","features":[387]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC_V2","features":[387]},{"name":"BCRYPT_DSA_PUBLIC_BLOB","features":[387]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC","features":[387]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC_V2","features":[387]},{"name":"BCRYPT_ECCFULLKEY_BLOB","features":[387]},{"name":"BCRYPT_ECCFULLPRIVATE_BLOB","features":[387]},{"name":"BCRYPT_ECCFULLPUBLIC_BLOB","features":[387]},{"name":"BCRYPT_ECCKEY_BLOB","features":[387]},{"name":"BCRYPT_ECCPRIVATE_BLOB","features":[387]},{"name":"BCRYPT_ECCPUBLIC_BLOB","features":[387]},{"name":"BCRYPT_ECC_CURVE_25519","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_EC192WAPI","features":[387]},{"name":"BCRYPT_ECC_CURVE_NAME","features":[387]},{"name":"BCRYPT_ECC_CURVE_NAMES","features":[387]},{"name":"BCRYPT_ECC_CURVE_NAME_LIST","features":[387]},{"name":"BCRYPT_ECC_CURVE_NISTP192","features":[387]},{"name":"BCRYPT_ECC_CURVE_NISTP224","features":[387]},{"name":"BCRYPT_ECC_CURVE_NISTP256","features":[387]},{"name":"BCRYPT_ECC_CURVE_NISTP384","features":[387]},{"name":"BCRYPT_ECC_CURVE_NISTP521","features":[387]},{"name":"BCRYPT_ECC_CURVE_NUMSP256T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_NUMSP384T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_NUMSP512T1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP160K1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP160R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP160R2","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP192K1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP192R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP224K1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP224R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP256K1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP256R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP384R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_SECP521R1","features":[387]},{"name":"BCRYPT_ECC_CURVE_WTLS12","features":[387]},{"name":"BCRYPT_ECC_CURVE_WTLS7","features":[387]},{"name":"BCRYPT_ECC_CURVE_WTLS9","features":[387]},{"name":"BCRYPT_ECC_CURVE_X962P192V1","features":[387]},{"name":"BCRYPT_ECC_CURVE_X962P192V2","features":[387]},{"name":"BCRYPT_ECC_CURVE_X962P192V3","features":[387]},{"name":"BCRYPT_ECC_CURVE_X962P239V1","features":[387]},{"name":"BCRYPT_ECC_CURVE_X962P239V2","features":[387]},{"name":"BCRYPT_ECC_CURVE_X962P239V3","features":[387]},{"name":"BCRYPT_ECC_CURVE_X962P256V1","features":[387]},{"name":"BCRYPT_ECC_FULLKEY_BLOB_V1","features":[387]},{"name":"BCRYPT_ECC_PARAMETERS","features":[387]},{"name":"BCRYPT_ECC_PARAMETERS_MAGIC","features":[387]},{"name":"BCRYPT_ECC_PRIME_MONTGOMERY_CURVE","features":[387]},{"name":"BCRYPT_ECC_PRIME_SHORT_WEIERSTRASS_CURVE","features":[387]},{"name":"BCRYPT_ECC_PRIME_TWISTED_EDWARDS_CURVE","features":[387]},{"name":"BCRYPT_ECDH_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDH_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDH_P256_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDH_P256_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDH_P384_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDH_P384_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDH_P521_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDH_P521_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDH_PRIVATE_GENERIC_MAGIC","features":[387]},{"name":"BCRYPT_ECDH_PRIVATE_P256_MAGIC","features":[387]},{"name":"BCRYPT_ECDH_PRIVATE_P384_MAGIC","features":[387]},{"name":"BCRYPT_ECDH_PRIVATE_P521_MAGIC","features":[387]},{"name":"BCRYPT_ECDH_PUBLIC_GENERIC_MAGIC","features":[387]},{"name":"BCRYPT_ECDH_PUBLIC_P256_MAGIC","features":[387]},{"name":"BCRYPT_ECDH_PUBLIC_P384_MAGIC","features":[387]},{"name":"BCRYPT_ECDH_PUBLIC_P521_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDSA_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDSA_P256_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDSA_P256_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDSA_P384_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDSA_P384_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDSA_P521_ALGORITHM","features":[387]},{"name":"BCRYPT_ECDSA_P521_ALG_HANDLE","features":[387]},{"name":"BCRYPT_ECDSA_PRIVATE_GENERIC_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_PRIVATE_P256_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_PRIVATE_P384_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_PRIVATE_P521_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_PUBLIC_GENERIC_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_PUBLIC_P256_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_PUBLIC_P384_MAGIC","features":[387]},{"name":"BCRYPT_ECDSA_PUBLIC_P521_MAGIC","features":[387]},{"name":"BCRYPT_EFFECTIVE_KEY_LENGTH","features":[387]},{"name":"BCRYPT_ENABLE_INCOMPATIBLE_FIPS_CHECKS","features":[387]},{"name":"BCRYPT_EXTENDED_KEYSIZE","features":[387]},{"name":"BCRYPT_FLAGS","features":[387]},{"name":"BCRYPT_GENERATE_IV","features":[387]},{"name":"BCRYPT_GLOBAL_PARAMETERS","features":[387]},{"name":"BCRYPT_HANDLE","features":[387]},{"name":"BCRYPT_HASH_BLOCK_LENGTH","features":[387]},{"name":"BCRYPT_HASH_HANDLE","features":[387]},{"name":"BCRYPT_HASH_INTERFACE","features":[387]},{"name":"BCRYPT_HASH_INTERFACE_MAJORVERSION_2","features":[387]},{"name":"BCRYPT_HASH_LENGTH","features":[387]},{"name":"BCRYPT_HASH_OID_LIST","features":[387]},{"name":"BCRYPT_HASH_OPERATION","features":[387]},{"name":"BCRYPT_HASH_OPERATION_FINISH_HASH","features":[387]},{"name":"BCRYPT_HASH_OPERATION_HASH_DATA","features":[387]},{"name":"BCRYPT_HASH_OPERATION_TYPE","features":[387]},{"name":"BCRYPT_HASH_REUSABLE_FLAG","features":[387]},{"name":"BCRYPT_HKDF_ALGORITHM","features":[387]},{"name":"BCRYPT_HKDF_ALG_HANDLE","features":[387]},{"name":"BCRYPT_HKDF_HASH_ALGORITHM","features":[387]},{"name":"BCRYPT_HKDF_PRK_AND_FINALIZE","features":[387]},{"name":"BCRYPT_HKDF_SALT_AND_FINALIZE","features":[387]},{"name":"BCRYPT_HMAC_MD2_ALG_HANDLE","features":[387]},{"name":"BCRYPT_HMAC_MD4_ALG_HANDLE","features":[387]},{"name":"BCRYPT_HMAC_MD5_ALG_HANDLE","features":[387]},{"name":"BCRYPT_HMAC_SHA1_ALG_HANDLE","features":[387]},{"name":"BCRYPT_HMAC_SHA256_ALG_HANDLE","features":[387]},{"name":"BCRYPT_HMAC_SHA384_ALG_HANDLE","features":[387]},{"name":"BCRYPT_HMAC_SHA512_ALG_HANDLE","features":[387]},{"name":"BCRYPT_INITIALIZATION_VECTOR","features":[387]},{"name":"BCRYPT_INTERFACE","features":[387]},{"name":"BCRYPT_INTERFACE_VERSION","features":[387]},{"name":"BCRYPT_IS_IFX_TPM_WEAK_KEY","features":[387]},{"name":"BCRYPT_IS_KEYED_HASH","features":[387]},{"name":"BCRYPT_IS_REUSABLE_HASH","features":[387]},{"name":"BCRYPT_KDF_HASH","features":[387]},{"name":"BCRYPT_KDF_HKDF","features":[387]},{"name":"BCRYPT_KDF_HMAC","features":[387]},{"name":"BCRYPT_KDF_RAW_SECRET","features":[387]},{"name":"BCRYPT_KDF_SP80056A_CONCAT","features":[387]},{"name":"BCRYPT_KDF_TLS_PRF","features":[387]},{"name":"BCRYPT_KEY_BLOB","features":[387]},{"name":"BCRYPT_KEY_DATA_BLOB","features":[387]},{"name":"BCRYPT_KEY_DATA_BLOB_HEADER","features":[387]},{"name":"BCRYPT_KEY_DATA_BLOB_MAGIC","features":[387]},{"name":"BCRYPT_KEY_DATA_BLOB_VERSION1","features":[387]},{"name":"BCRYPT_KEY_DERIVATION_INTERFACE","features":[387]},{"name":"BCRYPT_KEY_DERIVATION_OPERATION","features":[387]},{"name":"BCRYPT_KEY_HANDLE","features":[387]},{"name":"BCRYPT_KEY_LENGTH","features":[387]},{"name":"BCRYPT_KEY_LENGTHS","features":[387]},{"name":"BCRYPT_KEY_LENGTHS_STRUCT","features":[387]},{"name":"BCRYPT_KEY_OBJECT_LENGTH","features":[387]},{"name":"BCRYPT_KEY_STRENGTH","features":[387]},{"name":"BCRYPT_KEY_VALIDATION_RANGE","features":[387]},{"name":"BCRYPT_KEY_VALIDATION_RANGE_AND_ORDER","features":[387]},{"name":"BCRYPT_KEY_VALIDATION_REGENERATE","features":[387]},{"name":"BCRYPT_MD2_ALGORITHM","features":[387]},{"name":"BCRYPT_MD2_ALG_HANDLE","features":[387]},{"name":"BCRYPT_MD4_ALGORITHM","features":[387]},{"name":"BCRYPT_MD4_ALG_HANDLE","features":[387]},{"name":"BCRYPT_MD5_ALGORITHM","features":[387]},{"name":"BCRYPT_MD5_ALG_HANDLE","features":[387]},{"name":"BCRYPT_MESSAGE_BLOCK_LENGTH","features":[387]},{"name":"BCRYPT_MULTI_FLAG","features":[387]},{"name":"BCRYPT_MULTI_HASH_OPERATION","features":[387]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH","features":[387]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH_STRUCT","features":[387]},{"name":"BCRYPT_MULTI_OPERATION_TYPE","features":[387]},{"name":"BCRYPT_NO_CURVE_GENERATION_ALG_ID","features":[387]},{"name":"BCRYPT_NO_KEY_VALIDATION","features":[387]},{"name":"BCRYPT_OAEP_PADDING_INFO","features":[387]},{"name":"BCRYPT_OBJECT_ALIGNMENT","features":[387]},{"name":"BCRYPT_OBJECT_LENGTH","features":[387]},{"name":"BCRYPT_OID","features":[387]},{"name":"BCRYPT_OID_LIST","features":[387]},{"name":"BCRYPT_OPAQUE_KEY_BLOB","features":[387]},{"name":"BCRYPT_OPEN_ALGORITHM_PROVIDER_FLAGS","features":[387]},{"name":"BCRYPT_OPERATION","features":[387]},{"name":"BCRYPT_OPERATION_TYPE_HASH","features":[387]},{"name":"BCRYPT_PADDING_SCHEMES","features":[387]},{"name":"BCRYPT_PAD_NONE","features":[387]},{"name":"BCRYPT_PAD_OAEP","features":[387]},{"name":"BCRYPT_PAD_PKCS1","features":[387]},{"name":"BCRYPT_PAD_PKCS1_OPTIONAL_HASH_OID","features":[387]},{"name":"BCRYPT_PAD_PSS","features":[387]},{"name":"BCRYPT_PBKDF2_ALGORITHM","features":[387]},{"name":"BCRYPT_PBKDF2_ALG_HANDLE","features":[387]},{"name":"BCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[387]},{"name":"BCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[387]},{"name":"BCRYPT_PKCS1_PADDING_INFO","features":[387]},{"name":"BCRYPT_PRIMITIVE_TYPE","features":[387]},{"name":"BCRYPT_PRIVATE_KEY","features":[387]},{"name":"BCRYPT_PRIVATE_KEY_BLOB","features":[387]},{"name":"BCRYPT_PRIVATE_KEY_FLAG","features":[387]},{"name":"BCRYPT_PROVIDER_HANDLE","features":[387]},{"name":"BCRYPT_PROVIDER_NAME","features":[387]},{"name":"BCRYPT_PROV_DISPATCH","features":[387]},{"name":"BCRYPT_PSS_PADDING_INFO","features":[387]},{"name":"BCRYPT_PUBLIC_KEY_BLOB","features":[387]},{"name":"BCRYPT_PUBLIC_KEY_FLAG","features":[387]},{"name":"BCRYPT_PUBLIC_KEY_LENGTH","features":[387]},{"name":"BCRYPT_QUERY_PROVIDER_MODE","features":[387]},{"name":"BCRYPT_RC2_ALGORITHM","features":[387]},{"name":"BCRYPT_RC2_CBC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_RC2_CFB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_RC2_ECB_ALG_HANDLE","features":[387]},{"name":"BCRYPT_RC4_ALGORITHM","features":[387]},{"name":"BCRYPT_RC4_ALG_HANDLE","features":[387]},{"name":"BCRYPT_RESOLVE_PROVIDERS_FLAGS","features":[387]},{"name":"BCRYPT_RNG_ALGORITHM","features":[387]},{"name":"BCRYPT_RNG_ALG_HANDLE","features":[387]},{"name":"BCRYPT_RNG_DUAL_EC_ALGORITHM","features":[387]},{"name":"BCRYPT_RNG_FIPS186_DSA_ALGORITHM","features":[387]},{"name":"BCRYPT_RNG_INTERFACE","features":[387]},{"name":"BCRYPT_RNG_OPERATION","features":[387]},{"name":"BCRYPT_RNG_USE_ENTROPY_IN_BUFFER","features":[387]},{"name":"BCRYPT_RSAFULLPRIVATE_BLOB","features":[387]},{"name":"BCRYPT_RSAFULLPRIVATE_MAGIC","features":[387]},{"name":"BCRYPT_RSAKEY_BLOB","features":[387]},{"name":"BCRYPT_RSAKEY_BLOB_MAGIC","features":[387]},{"name":"BCRYPT_RSAPRIVATE_BLOB","features":[387]},{"name":"BCRYPT_RSAPRIVATE_MAGIC","features":[387]},{"name":"BCRYPT_RSAPUBLIC_BLOB","features":[387]},{"name":"BCRYPT_RSAPUBLIC_MAGIC","features":[387]},{"name":"BCRYPT_RSA_ALGORITHM","features":[387]},{"name":"BCRYPT_RSA_ALG_HANDLE","features":[387]},{"name":"BCRYPT_RSA_SIGN_ALGORITHM","features":[387]},{"name":"BCRYPT_RSA_SIGN_ALG_HANDLE","features":[387]},{"name":"BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[387]},{"name":"BCRYPT_SECRET_AGREEMENT_OPERATION","features":[387]},{"name":"BCRYPT_SECRET_HANDLE","features":[387]},{"name":"BCRYPT_SHA1_ALGORITHM","features":[387]},{"name":"BCRYPT_SHA1_ALG_HANDLE","features":[387]},{"name":"BCRYPT_SHA256_ALGORITHM","features":[387]},{"name":"BCRYPT_SHA256_ALG_HANDLE","features":[387]},{"name":"BCRYPT_SHA384_ALGORITHM","features":[387]},{"name":"BCRYPT_SHA384_ALG_HANDLE","features":[387]},{"name":"BCRYPT_SHA512_ALGORITHM","features":[387]},{"name":"BCRYPT_SHA512_ALG_HANDLE","features":[387]},{"name":"BCRYPT_SIGNATURE_INTERFACE","features":[387]},{"name":"BCRYPT_SIGNATURE_LENGTH","features":[387]},{"name":"BCRYPT_SIGNATURE_OPERATION","features":[387]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[387]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALG_HANDLE","features":[387]},{"name":"BCRYPT_SP80056A_CONCAT_ALGORITHM","features":[387]},{"name":"BCRYPT_SP80056A_CONCAT_ALG_HANDLE","features":[387]},{"name":"BCRYPT_SUPPORTED_PAD_OAEP","features":[387]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_ENC","features":[387]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_SIG","features":[387]},{"name":"BCRYPT_SUPPORTED_PAD_PSS","features":[387]},{"name":"BCRYPT_SUPPORTED_PAD_ROUTER","features":[387]},{"name":"BCRYPT_TABLE","features":[387]},{"name":"BCRYPT_TLS1_1_KDF_ALGORITHM","features":[387]},{"name":"BCRYPT_TLS1_1_KDF_ALG_HANDLE","features":[387]},{"name":"BCRYPT_TLS1_2_KDF_ALGORITHM","features":[387]},{"name":"BCRYPT_TLS1_2_KDF_ALG_HANDLE","features":[387]},{"name":"BCRYPT_TLS_CBC_HMAC_VERIFY_FLAG","features":[387]},{"name":"BCRYPT_USE_SYSTEM_PREFERRED_RNG","features":[387]},{"name":"BCRYPT_XTS_AES_ALGORITHM","features":[387]},{"name":"BCRYPT_XTS_AES_ALG_HANDLE","features":[387]},{"name":"BCryptAddContextFunction","features":[303,387]},{"name":"BCryptBuffer","features":[387]},{"name":"BCryptBufferDesc","features":[387]},{"name":"BCryptCloseAlgorithmProvider","features":[303,387]},{"name":"BCryptConfigureContext","features":[303,387]},{"name":"BCryptConfigureContextFunction","features":[303,387]},{"name":"BCryptCreateContext","features":[303,387]},{"name":"BCryptCreateHash","features":[303,387]},{"name":"BCryptCreateMultiHash","features":[303,387]},{"name":"BCryptDecrypt","features":[303,387]},{"name":"BCryptDeleteContext","features":[303,387]},{"name":"BCryptDeriveKey","features":[303,387]},{"name":"BCryptDeriveKeyCapi","features":[303,387]},{"name":"BCryptDeriveKeyPBKDF2","features":[303,387]},{"name":"BCryptDestroyHash","features":[303,387]},{"name":"BCryptDestroyKey","features":[303,387]},{"name":"BCryptDestroySecret","features":[303,387]},{"name":"BCryptDuplicateHash","features":[303,387]},{"name":"BCryptDuplicateKey","features":[303,387]},{"name":"BCryptEncrypt","features":[303,387]},{"name":"BCryptEnumAlgorithms","features":[303,387]},{"name":"BCryptEnumContextFunctionProviders","features":[303,387]},{"name":"BCryptEnumContextFunctions","features":[303,387]},{"name":"BCryptEnumContexts","features":[303,387]},{"name":"BCryptEnumProviders","features":[303,387]},{"name":"BCryptEnumRegisteredProviders","features":[303,387]},{"name":"BCryptExportKey","features":[303,387]},{"name":"BCryptFinalizeKeyPair","features":[303,387]},{"name":"BCryptFinishHash","features":[303,387]},{"name":"BCryptFreeBuffer","features":[387]},{"name":"BCryptGenRandom","features":[303,387]},{"name":"BCryptGenerateKeyPair","features":[303,387]},{"name":"BCryptGenerateSymmetricKey","features":[303,387]},{"name":"BCryptGetFipsAlgorithmMode","features":[303,387]},{"name":"BCryptGetProperty","features":[303,387]},{"name":"BCryptHash","features":[303,387]},{"name":"BCryptHashData","features":[303,387]},{"name":"BCryptImportKey","features":[303,387]},{"name":"BCryptImportKeyPair","features":[303,387]},{"name":"BCryptKeyDerivation","features":[303,387]},{"name":"BCryptOpenAlgorithmProvider","features":[303,387]},{"name":"BCryptProcessMultiOperations","features":[303,387]},{"name":"BCryptQueryContextConfiguration","features":[303,387]},{"name":"BCryptQueryContextFunctionConfiguration","features":[303,387]},{"name":"BCryptQueryContextFunctionProperty","features":[303,387]},{"name":"BCryptQueryProviderRegistration","features":[303,387]},{"name":"BCryptRegisterConfigChangeNotify","features":[303,387]},{"name":"BCryptRemoveContextFunction","features":[303,387]},{"name":"BCryptResolveProviders","features":[303,387]},{"name":"BCryptSecretAgreement","features":[303,387]},{"name":"BCryptSetContextFunctionProperty","features":[303,387]},{"name":"BCryptSetProperty","features":[303,387]},{"name":"BCryptSignHash","features":[303,387]},{"name":"BCryptUnregisterConfigChangeNotify","features":[303,387]},{"name":"BCryptVerifySignature","features":[303,387]},{"name":"CALG_3DES","features":[387]},{"name":"CALG_3DES_112","features":[387]},{"name":"CALG_AES","features":[387]},{"name":"CALG_AES_128","features":[387]},{"name":"CALG_AES_192","features":[387]},{"name":"CALG_AES_256","features":[387]},{"name":"CALG_AGREEDKEY_ANY","features":[387]},{"name":"CALG_CYLINK_MEK","features":[387]},{"name":"CALG_DES","features":[387]},{"name":"CALG_DESX","features":[387]},{"name":"CALG_DH_EPHEM","features":[387]},{"name":"CALG_DH_SF","features":[387]},{"name":"CALG_DSS_SIGN","features":[387]},{"name":"CALG_ECDH","features":[387]},{"name":"CALG_ECDH_EPHEM","features":[387]},{"name":"CALG_ECDSA","features":[387]},{"name":"CALG_ECMQV","features":[387]},{"name":"CALG_HASH_REPLACE_OWF","features":[387]},{"name":"CALG_HMAC","features":[387]},{"name":"CALG_HUGHES_MD5","features":[387]},{"name":"CALG_KEA_KEYX","features":[387]},{"name":"CALG_MAC","features":[387]},{"name":"CALG_MD2","features":[387]},{"name":"CALG_MD4","features":[387]},{"name":"CALG_MD5","features":[387]},{"name":"CALG_NO_SIGN","features":[387]},{"name":"CALG_NULLCIPHER","features":[387]},{"name":"CALG_OID_INFO_CNG_ONLY","features":[387]},{"name":"CALG_OID_INFO_PARAMETERS","features":[387]},{"name":"CALG_PCT1_MASTER","features":[387]},{"name":"CALG_RC2","features":[387]},{"name":"CALG_RC4","features":[387]},{"name":"CALG_RC5","features":[387]},{"name":"CALG_RSA_KEYX","features":[387]},{"name":"CALG_RSA_SIGN","features":[387]},{"name":"CALG_SCHANNEL_ENC_KEY","features":[387]},{"name":"CALG_SCHANNEL_MAC_KEY","features":[387]},{"name":"CALG_SCHANNEL_MASTER_HASH","features":[387]},{"name":"CALG_SEAL","features":[387]},{"name":"CALG_SHA","features":[387]},{"name":"CALG_SHA1","features":[387]},{"name":"CALG_SHA_256","features":[387]},{"name":"CALG_SHA_384","features":[387]},{"name":"CALG_SHA_512","features":[387]},{"name":"CALG_SKIPJACK","features":[387]},{"name":"CALG_SSL2_MASTER","features":[387]},{"name":"CALG_SSL3_MASTER","features":[387]},{"name":"CALG_SSL3_SHAMD5","features":[387]},{"name":"CALG_TEK","features":[387]},{"name":"CALG_THIRDPARTY_CIPHER","features":[387]},{"name":"CALG_THIRDPARTY_HASH","features":[387]},{"name":"CALG_THIRDPARTY_KEY_EXCHANGE","features":[387]},{"name":"CALG_THIRDPARTY_SIGNATURE","features":[387]},{"name":"CALG_TLS1PRF","features":[387]},{"name":"CALG_TLS1_MASTER","features":[387]},{"name":"CASetupProperty","features":[387]},{"name":"CCertSrvSetup","features":[387]},{"name":"CCertSrvSetupKeyInformation","features":[387]},{"name":"CCertificateEnrollmentPolicyServerSetup","features":[387]},{"name":"CCertificateEnrollmentServerSetup","features":[387]},{"name":"CEPSetupProperty","features":[387]},{"name":"CERTIFICATE_CHAIN_BLOB","features":[387]},{"name":"CERT_ACCESS_DESCRIPTION","features":[387]},{"name":"CERT_ACCESS_STATE_GP_SYSTEM_STORE_FLAG","features":[387]},{"name":"CERT_ACCESS_STATE_LM_SYSTEM_STORE_FLAG","features":[387]},{"name":"CERT_ACCESS_STATE_PROP_ID","features":[387]},{"name":"CERT_ACCESS_STATE_SHARED_USER_FLAG","features":[387]},{"name":"CERT_ACCESS_STATE_SYSTEM_STORE_FLAG","features":[387]},{"name":"CERT_ACCESS_STATE_WRITE_PERSIST_FLAG","features":[387]},{"name":"CERT_AIA_URL_RETRIEVED_PROP_ID","features":[387]},{"name":"CERT_ALT_NAME_EDI_PARTY_NAME","features":[387]},{"name":"CERT_ALT_NAME_ENTRY","features":[387]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_MASK","features":[387]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_SHIFT","features":[387]},{"name":"CERT_ALT_NAME_INFO","features":[387]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_MASK","features":[387]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_SHIFT","features":[387]},{"name":"CERT_ALT_NAME_X400_ADDRESS","features":[387]},{"name":"CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[387]},{"name":"CERT_ARCHIVED_PROP_ID","features":[387]},{"name":"CERT_AUTHORITY_INFO_ACCESS","features":[387]},{"name":"CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[387]},{"name":"CERT_AUTHORITY_KEY_ID2_INFO","features":[387]},{"name":"CERT_AUTHORITY_KEY_ID_INFO","features":[387]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_PARTIAL_CHAIN_LOGGING_FLAG","features":[387]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_UNTRUSTED_ROOT_LOGGING_FLAG","features":[387]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[387]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_FLAGS_VALUE_NAME","features":[387]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[387]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[387]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[387]},{"name":"CERT_AUTH_ROOT_CAB_FILENAME","features":[387]},{"name":"CERT_AUTH_ROOT_CERT_EXT","features":[387]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME","features":[387]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME_A","features":[387]},{"name":"CERT_AUTH_ROOT_SEQ_FILENAME","features":[387]},{"name":"CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[387]},{"name":"CERT_AUTO_ENROLL_PROP_ID","features":[387]},{"name":"CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[387]},{"name":"CERT_AUTO_UPDATE_DISABLE_RANDOM_QUERY_STRING_FLAG","features":[387]},{"name":"CERT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[387]},{"name":"CERT_AUTO_UPDATE_SYNC_FROM_DIR_URL_VALUE_NAME","features":[387]},{"name":"CERT_BACKED_UP_PROP_ID","features":[387]},{"name":"CERT_BASIC_CONSTRAINTS2_INFO","features":[303,387]},{"name":"CERT_BASIC_CONSTRAINTS_INFO","features":[303,387]},{"name":"CERT_BIOMETRIC_DATA","features":[387]},{"name":"CERT_BIOMETRIC_DATA_TYPE","features":[387]},{"name":"CERT_BIOMETRIC_EXT_INFO","features":[387]},{"name":"CERT_BIOMETRIC_OID_DATA_CHOICE","features":[387]},{"name":"CERT_BIOMETRIC_PICTURE_TYPE","features":[387]},{"name":"CERT_BIOMETRIC_PREDEFINED_DATA_CHOICE","features":[387]},{"name":"CERT_BIOMETRIC_SIGNATURE_TYPE","features":[387]},{"name":"CERT_BUNDLE_CERTIFICATE","features":[387]},{"name":"CERT_BUNDLE_CRL","features":[387]},{"name":"CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG","features":[387]},{"name":"CERT_CA_DISABLE_CRL_PROP_ID","features":[387]},{"name":"CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[387]},{"name":"CERT_CA_SUBJECT_FLAG","features":[387]},{"name":"CERT_CEP_PROP_ID","features":[387]},{"name":"CERT_CHAIN","features":[387]},{"name":"CERT_CHAIN_AUTO_CURRENT_USER","features":[387]},{"name":"CERT_CHAIN_AUTO_FLAGS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_AUTO_FLUSH_DISABLE_FLAG","features":[387]},{"name":"CERT_CHAIN_AUTO_FLUSH_FIRST_DELTA_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_AUTO_FLUSH_NEXT_DELTA_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_AUTO_HPKP_RULE_INFO","features":[387]},{"name":"CERT_CHAIN_AUTO_IMPERSONATED","features":[387]},{"name":"CERT_CHAIN_AUTO_LOCAL_MACHINE","features":[387]},{"name":"CERT_CHAIN_AUTO_LOG_CREATE_FLAG","features":[387]},{"name":"CERT_CHAIN_AUTO_LOG_FILE_NAME_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_AUTO_LOG_FLUSH_FLAG","features":[387]},{"name":"CERT_CHAIN_AUTO_LOG_FREE_FLAG","features":[387]},{"name":"CERT_CHAIN_AUTO_NETWORK_INFO","features":[387]},{"name":"CERT_CHAIN_AUTO_PINRULE_INFO","features":[387]},{"name":"CERT_CHAIN_AUTO_PROCESS_INFO","features":[387]},{"name":"CERT_CHAIN_AUTO_SERIAL_LOCAL_MACHINE","features":[387]},{"name":"CERT_CHAIN_CACHE_END_CERT","features":[387]},{"name":"CERT_CHAIN_CACHE_ONLY_URL_RETRIEVAL","features":[387]},{"name":"CERT_CHAIN_CACHE_RESYNC_FILETIME_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_CONFIG_REGPATH","features":[387]},{"name":"CERT_CHAIN_CONTEXT","features":[303,387]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_DEFAULT","features":[387]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_CROSS_CERT_DOWNLOAD_INTERVAL_HOURS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_DEFAULT_CONFIG_SUBDIR","features":[387]},{"name":"CERT_CHAIN_DISABLE_AIA","features":[387]},{"name":"CERT_CHAIN_DISABLE_AIA_URL_RETRIEVAL_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_DISABLE_ALL_EKU_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_AUTH_ROOT_AUTO_UPDATE","features":[387]},{"name":"CERT_CHAIN_DISABLE_AUTO_FLUSH_PROCESS_NAME_LIST_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_DISABLE_CA_NAME_CONSTRAINTS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_DISABLE_CODE_SIGNING_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_ECC_PARA_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_FILE_HASH_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_MANDATORY_BASIC_CONSTRAINTS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_DISABLE_MD2_MD4","features":[387]},{"name":"CERT_CHAIN_DISABLE_MOTW_CODE_SIGNING_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_MOTW_FILE_HASH_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_HASH_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_MY_PEER_TRUST","features":[387]},{"name":"CERT_CHAIN_DISABLE_OPT_IN_SERVER_AUTH_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_PASS1_QUALITY_FILTERING","features":[387]},{"name":"CERT_CHAIN_DISABLE_SERIAL_CHAIN_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_DISABLE_SERVER_AUTH_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_SYNC_WITH_SSL_TIME_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_HASH_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_DISABLE_UNSUPPORTED_CRITICAL_EXTENSIONS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_ELEMENT","features":[303,387]},{"name":"CERT_CHAIN_ENABLE_ALL_EKU_HYGIENE_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_CACHE_AUTO_UPDATE","features":[387]},{"name":"CERT_CHAIN_ENABLE_CODE_SIGNING_HYGIENE_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_DISALLOWED_CA","features":[387]},{"name":"CERT_CHAIN_ENABLE_MD2_MD4_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_MOTW_CODE_SIGNING_HYGIENE_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_MOTW_TIMESTAMP_HYGIENE_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_ONLY_WEAK_LOGGING_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_PEER_TRUST","features":[387]},{"name":"CERT_CHAIN_ENABLE_SERVER_AUTH_HYGIENE_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_SHARE_STORE","features":[387]},{"name":"CERT_CHAIN_ENABLE_TIMESTAMP_HYGIENE_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_WEAK_LOGGING_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_WEAK_RSA_ROOT_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_WEAK_SETTINGS_FLAG","features":[387]},{"name":"CERT_CHAIN_ENABLE_WEAK_SIGNATURE_FLAGS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_ENGINE_CONFIG","features":[387]},{"name":"CERT_CHAIN_EXCLUSIVE_ENABLE_CA_FLAG","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG","features":[387]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_PARA","features":[303,387]},{"name":"CERT_CHAIN_HAS_MOTW","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_DEFAULT","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_DEFAULT","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_DEFAULT","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_DEFAULT","features":[387]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DEFAULT","features":[387]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DISABLE","features":[387]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_MAX_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_MIN_PUB_KEY_BIT_LENGTH_DISABLE","features":[387]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DEFAULT","features":[387]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DISABLE","features":[387]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_MOTW_IGNORE_AFTER_TIME_WEAK_FLAG","features":[387]},{"name":"CERT_CHAIN_OCSP_VALIDITY_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_ONLY_ADDITIONAL_AND_AUTH_ROOT","features":[387]},{"name":"CERT_CHAIN_OPTIONS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_OPTION_DISABLE_AIA_URL_RETRIEVAL","features":[387]},{"name":"CERT_CHAIN_OPTION_ENABLE_SIA_URL_RETRIEVAL","features":[387]},{"name":"CERT_CHAIN_OPT_IN_WEAK_FLAGS","features":[387]},{"name":"CERT_CHAIN_OPT_IN_WEAK_SIGNATURE","features":[387]},{"name":"CERT_CHAIN_PARA","features":[387]},{"name":"CERT_CHAIN_POLICY_ALLOW_TESTROOT_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_ALLOW_UNKNOWN_CA_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE","features":[387]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE_TS","features":[387]},{"name":"CERT_CHAIN_POLICY_BASE","features":[387]},{"name":"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS","features":[387]},{"name":"CERT_CHAIN_POLICY_EV","features":[387]},{"name":"CERT_CHAIN_POLICY_FLAGS","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_NOT_TIME_VALID_FLAGS","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_REV_UNKNOWN_FLAGS","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_CA_REV_UNKNOWN_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_NOT_TIME_VALID_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_SIGNER_REV_UNKNOWN_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_END_REV_UNKNOWN_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_BASIC_CONSTRAINTS_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_NAME_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_POLICY_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_SUPPORTED_CRITICAL_EXT_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_NESTED_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_VALID_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_PEER_TRUST_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_ROOT_REV_UNKNOWN_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_WEAK_SIGNATURE_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_IGNORE_WRONG_USAGE_FLAG","features":[387]},{"name":"CERT_CHAIN_POLICY_MICROSOFT_ROOT","features":[387]},{"name":"CERT_CHAIN_POLICY_NT_AUTH","features":[387]},{"name":"CERT_CHAIN_POLICY_PARA","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_F12","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ERROR_LEVEL","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_F12_NONE_CATEGORY","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ROOT_PROGRAM_CATEGORY","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_F12_SUCCESS_LEVEL","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WARNING_LEVEL","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WEAK_CRYPTO_CATEGORY","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_HPKP_HEADER","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_ERROR","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_WARNING","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_ERROR","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_WARNING","features":[387]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_SUCCESS","features":[387]},{"name":"CERT_CHAIN_POLICY_STATUS","features":[387]},{"name":"CERT_CHAIN_POLICY_THIRD_PARTY_ROOT","features":[387]},{"name":"CERT_CHAIN_POLICY_TRUST_TESTROOT_FLAG","features":[387]},{"name":"CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS","features":[387]},{"name":"CERT_CHAIN_REVOCATION_ACCUMULATIVE_TIMEOUT","features":[387]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CACHE_ONLY","features":[387]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN","features":[387]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[387]},{"name":"CERT_CHAIN_REVOCATION_CHECK_END_CERT","features":[387]},{"name":"CERT_CHAIN_REVOCATION_CHECK_OCSP_CERT","features":[387]},{"name":"CERT_CHAIN_REV_ACCUMULATIVE_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_SERIAL_CHAIN_LOG_FILE_NAME_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_SSL_HANDSHAKE_LOG_FILE_NAME_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_STRONG_SIGN_DISABLE_END_CHECK_FLAG","features":[387]},{"name":"CERT_CHAIN_THREAD_STORE_SYNC","features":[387]},{"name":"CERT_CHAIN_TIMESTAMP_TIME","features":[387]},{"name":"CERT_CHAIN_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_USE_LOCAL_MACHINE_STORE","features":[387]},{"name":"CERT_CHAIN_WEAK_AFTER_TIME_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_ALL_CONFIG_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_FILE_HASH_AFTER_TIME_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_FLAGS_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_HYGIENE_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_MIN_BIT_LENGTH_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_PREFIX_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_RSA_PUB_KEY_TIME_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_SHA256_ALLOW_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_SIGNATURE_LOG_DIR_VALUE_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_THIRD_PARTY_CONFIG_NAME","features":[387]},{"name":"CERT_CHAIN_WEAK_TIMESTAMP_HASH_AFTER_TIME_NAME","features":[387]},{"name":"CERT_CLOSE_STORE_CHECK_FLAG","features":[387]},{"name":"CERT_CLOSE_STORE_FORCE_FLAG","features":[387]},{"name":"CERT_CLR_DELETE_KEY_PROP_ID","features":[387]},{"name":"CERT_COMPARE_ANY","features":[387]},{"name":"CERT_COMPARE_ATTR","features":[387]},{"name":"CERT_COMPARE_CERT_ID","features":[387]},{"name":"CERT_COMPARE_CROSS_CERT_DIST_POINTS","features":[387]},{"name":"CERT_COMPARE_CTL_USAGE","features":[387]},{"name":"CERT_COMPARE_ENHKEY_USAGE","features":[387]},{"name":"CERT_COMPARE_EXISTING","features":[387]},{"name":"CERT_COMPARE_HASH","features":[387]},{"name":"CERT_COMPARE_HASH_STR","features":[387]},{"name":"CERT_COMPARE_HAS_PRIVATE_KEY","features":[387]},{"name":"CERT_COMPARE_ISSUER_OF","features":[387]},{"name":"CERT_COMPARE_KEY_IDENTIFIER","features":[387]},{"name":"CERT_COMPARE_KEY_SPEC","features":[387]},{"name":"CERT_COMPARE_MASK","features":[387]},{"name":"CERT_COMPARE_MD5_HASH","features":[387]},{"name":"CERT_COMPARE_NAME","features":[387]},{"name":"CERT_COMPARE_NAME_STR_A","features":[387]},{"name":"CERT_COMPARE_NAME_STR_W","features":[387]},{"name":"CERT_COMPARE_PROPERTY","features":[387]},{"name":"CERT_COMPARE_PUBKEY_MD5_HASH","features":[387]},{"name":"CERT_COMPARE_PUBLIC_KEY","features":[387]},{"name":"CERT_COMPARE_SHA1_HASH","features":[387]},{"name":"CERT_COMPARE_SHIFT","features":[387]},{"name":"CERT_COMPARE_SIGNATURE_HASH","features":[387]},{"name":"CERT_COMPARE_SUBJECT_CERT","features":[387]},{"name":"CERT_COMPARE_SUBJECT_INFO_ACCESS","features":[387]},{"name":"CERT_CONTEXT","features":[303,387]},{"name":"CERT_CONTEXT_REVOCATION_TYPE","features":[387]},{"name":"CERT_CONTROL_STORE_FLAGS","features":[387]},{"name":"CERT_CREATE_CONTEXT_NOCOPY_FLAG","features":[387]},{"name":"CERT_CREATE_CONTEXT_NO_ENTRY_FLAG","features":[387]},{"name":"CERT_CREATE_CONTEXT_NO_HCRYPTMSG_FLAG","features":[387]},{"name":"CERT_CREATE_CONTEXT_PARA","features":[303,387]},{"name":"CERT_CREATE_CONTEXT_SORTED_FLAG","features":[387]},{"name":"CERT_CREATE_SELFSIGN_FLAGS","features":[387]},{"name":"CERT_CREATE_SELFSIGN_NO_KEY_INFO","features":[387]},{"name":"CERT_CREATE_SELFSIGN_NO_SIGN","features":[387]},{"name":"CERT_CRL_CONTEXT_PAIR","features":[303,387]},{"name":"CERT_CRL_SIGN_KEY_USAGE","features":[387]},{"name":"CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[387]},{"name":"CERT_CTL_USAGE_PROP_ID","features":[387]},{"name":"CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[387]},{"name":"CERT_DATE_STAMP_PROP_ID","features":[387]},{"name":"CERT_DECIPHER_ONLY_KEY_USAGE","features":[387]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_SIGN","features":[387]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_XCHG","features":[387]},{"name":"CERT_DESCRIPTION_PROP_ID","features":[387]},{"name":"CERT_DH_PARAMETERS","features":[387]},{"name":"CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[387]},{"name":"CERT_DISABLE_PIN_RULES_AUTO_UPDATE_VALUE_NAME","features":[387]},{"name":"CERT_DISABLE_ROOT_AUTO_UPDATE_VALUE_NAME","features":[387]},{"name":"CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[387]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[387]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[387]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LIST_IDENTIFIER","features":[387]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[387]},{"name":"CERT_DISALLOWED_CERT_CAB_FILENAME","features":[387]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME","features":[387]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME_A","features":[387]},{"name":"CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[387]},{"name":"CERT_DISALLOWED_FILETIME_PROP_ID","features":[387]},{"name":"CERT_DSS_PARAMETERS","features":[387]},{"name":"CERT_DSS_R_LEN","features":[387]},{"name":"CERT_DSS_S_LEN","features":[387]},{"name":"CERT_ECC_SIGNATURE","features":[387]},{"name":"CERT_EFSBLOB_VALUE_NAME","features":[387]},{"name":"CERT_EFS_PROP_ID","features":[387]},{"name":"CERT_ENABLE_DISALLOWED_CERT_AUTO_UPDATE_VALUE_NAME","features":[387]},{"name":"CERT_ENCIPHER_ONLY_KEY_USAGE","features":[387]},{"name":"CERT_ENCODING_TYPE_MASK","features":[387]},{"name":"CERT_END_ENTITY_SUBJECT_FLAG","features":[387]},{"name":"CERT_ENHKEY_USAGE_PROP_ID","features":[387]},{"name":"CERT_ENROLLMENT_PROP_ID","features":[387]},{"name":"CERT_EXCLUDED_SUBTREE_BIT","features":[387]},{"name":"CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[387]},{"name":"CERT_EXTENSION","features":[303,387]},{"name":"CERT_EXTENSIONS","features":[303,387]},{"name":"CERT_FILE_HASH_USE_TYPE","features":[387]},{"name":"CERT_FILE_STORE_COMMIT_ENABLE_FLAG","features":[387]},{"name":"CERT_FIND_ANY","features":[387]},{"name":"CERT_FIND_CERT_ID","features":[387]},{"name":"CERT_FIND_CHAIN_IN_STORE_FLAGS","features":[387]},{"name":"CERT_FIND_CROSS_CERT_DIST_POINTS","features":[387]},{"name":"CERT_FIND_CTL_USAGE","features":[387]},{"name":"CERT_FIND_ENHKEY_USAGE","features":[387]},{"name":"CERT_FIND_EXISTING","features":[387]},{"name":"CERT_FIND_EXT_ONLY_CTL_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_FLAGS","features":[387]},{"name":"CERT_FIND_HASH","features":[387]},{"name":"CERT_FIND_HASH_STR","features":[387]},{"name":"CERT_FIND_HAS_PRIVATE_KEY","features":[387]},{"name":"CERT_FIND_ISSUER_ATTR","features":[387]},{"name":"CERT_FIND_ISSUER_NAME","features":[387]},{"name":"CERT_FIND_ISSUER_OF","features":[387]},{"name":"CERT_FIND_ISSUER_STR","features":[387]},{"name":"CERT_FIND_ISSUER_STR_A","features":[387]},{"name":"CERT_FIND_ISSUER_STR_W","features":[387]},{"name":"CERT_FIND_KEY_IDENTIFIER","features":[387]},{"name":"CERT_FIND_KEY_SPEC","features":[387]},{"name":"CERT_FIND_MD5_HASH","features":[387]},{"name":"CERT_FIND_NO_CTL_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_NO_ENHKEY_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_OPTIONAL_CTL_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_OR_CTL_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_OR_ENHKEY_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_PROPERTY","features":[387]},{"name":"CERT_FIND_PROP_ONLY_CTL_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_PUBKEY_MD5_HASH","features":[387]},{"name":"CERT_FIND_PUBLIC_KEY","features":[387]},{"name":"CERT_FIND_SHA1_HASH","features":[387]},{"name":"CERT_FIND_SIGNATURE_HASH","features":[387]},{"name":"CERT_FIND_SUBJECT_ATTR","features":[387]},{"name":"CERT_FIND_SUBJECT_CERT","features":[387]},{"name":"CERT_FIND_SUBJECT_INFO_ACCESS","features":[387]},{"name":"CERT_FIND_SUBJECT_NAME","features":[387]},{"name":"CERT_FIND_SUBJECT_STR","features":[387]},{"name":"CERT_FIND_SUBJECT_STR_A","features":[387]},{"name":"CERT_FIND_SUBJECT_STR_W","features":[387]},{"name":"CERT_FIND_TYPE","features":[387]},{"name":"CERT_FIND_VALID_CTL_USAGE_FLAG","features":[387]},{"name":"CERT_FIND_VALID_ENHKEY_USAGE_FLAG","features":[387]},{"name":"CERT_FIRST_RESERVED_PROP_ID","features":[387]},{"name":"CERT_FIRST_USER_PROP_ID","features":[387]},{"name":"CERT_FORTEZZA_DATA_PROP","features":[387]},{"name":"CERT_FORTEZZA_DATA_PROP_ID","features":[387]},{"name":"CERT_FRIENDLY_NAME_PROP_ID","features":[387]},{"name":"CERT_GENERAL_SUBTREE","features":[303,387]},{"name":"CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH","features":[387]},{"name":"CERT_HASHED_URL","features":[387]},{"name":"CERT_HASH_PROP_ID","features":[387]},{"name":"CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[387]},{"name":"CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[387]},{"name":"CERT_ID","features":[387]},{"name":"CERT_ID_ISSUER_SERIAL_NUMBER","features":[387]},{"name":"CERT_ID_KEY_IDENTIFIER","features":[387]},{"name":"CERT_ID_OPTION","features":[387]},{"name":"CERT_ID_SHA1_HASH","features":[387]},{"name":"CERT_IE30_RESERVED_PROP_ID","features":[387]},{"name":"CERT_IE_DIRTY_FLAGS_REGPATH","features":[387]},{"name":"CERT_INFO","features":[303,387]},{"name":"CERT_INFO_EXTENSION_FLAG","features":[387]},{"name":"CERT_INFO_ISSUER_FLAG","features":[387]},{"name":"CERT_INFO_ISSUER_UNIQUE_ID_FLAG","features":[387]},{"name":"CERT_INFO_NOT_AFTER_FLAG","features":[387]},{"name":"CERT_INFO_NOT_BEFORE_FLAG","features":[387]},{"name":"CERT_INFO_SERIAL_NUMBER_FLAG","features":[387]},{"name":"CERT_INFO_SIGNATURE_ALGORITHM_FLAG","features":[387]},{"name":"CERT_INFO_SUBJECT_FLAG","features":[387]},{"name":"CERT_INFO_SUBJECT_PUBLIC_KEY_INFO_FLAG","features":[387]},{"name":"CERT_INFO_SUBJECT_UNIQUE_ID_FLAG","features":[387]},{"name":"CERT_INFO_VERSION_FLAG","features":[387]},{"name":"CERT_ISOLATED_KEY_PROP_ID","features":[387]},{"name":"CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[387]},{"name":"CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[387]},{"name":"CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[387]},{"name":"CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[387]},{"name":"CERT_ISSUER_SERIAL_NUMBER","features":[387]},{"name":"CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[387]},{"name":"CERT_KEYGEN_REQUEST_INFO","features":[387]},{"name":"CERT_KEYGEN_REQUEST_V1","features":[387]},{"name":"CERT_KEY_AGREEMENT_KEY_USAGE","features":[387]},{"name":"CERT_KEY_ATTRIBUTES_INFO","features":[303,387]},{"name":"CERT_KEY_CERT_SIGN_KEY_USAGE","features":[387]},{"name":"CERT_KEY_CLASSIFICATION_PROP_ID","features":[387]},{"name":"CERT_KEY_CONTEXT","features":[387]},{"name":"CERT_KEY_CONTEXT_PROP_ID","features":[387]},{"name":"CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[387]},{"name":"CERT_KEY_IDENTIFIER_PROP_ID","features":[387]},{"name":"CERT_KEY_PROV_HANDLE_PROP_ID","features":[387]},{"name":"CERT_KEY_PROV_INFO_PROP_ID","features":[387]},{"name":"CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[387]},{"name":"CERT_KEY_SPEC","features":[387]},{"name":"CERT_KEY_SPEC_PROP_ID","features":[387]},{"name":"CERT_KEY_USAGE_RESTRICTION_INFO","features":[387]},{"name":"CERT_LAST_RESERVED_PROP_ID","features":[387]},{"name":"CERT_LAST_USER_PROP_ID","features":[387]},{"name":"CERT_LDAP_STORE_AREC_EXCLUSIVE_FLAG","features":[387]},{"name":"CERT_LDAP_STORE_OPENED_FLAG","features":[387]},{"name":"CERT_LDAP_STORE_OPENED_PARA","features":[387]},{"name":"CERT_LDAP_STORE_SIGN_FLAG","features":[387]},{"name":"CERT_LDAP_STORE_UNBIND_FLAG","features":[387]},{"name":"CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH","features":[387]},{"name":"CERT_LOGOTYPE_AUDIO","features":[387]},{"name":"CERT_LOGOTYPE_AUDIO_INFO","features":[387]},{"name":"CERT_LOGOTYPE_BITS_IMAGE_RESOLUTION_CHOICE","features":[387]},{"name":"CERT_LOGOTYPE_CHOICE","features":[387]},{"name":"CERT_LOGOTYPE_COLOR_IMAGE_INFO_CHOICE","features":[387]},{"name":"CERT_LOGOTYPE_DATA","features":[387]},{"name":"CERT_LOGOTYPE_DETAILS","features":[387]},{"name":"CERT_LOGOTYPE_DIRECT_INFO_CHOICE","features":[387]},{"name":"CERT_LOGOTYPE_EXT_INFO","features":[387]},{"name":"CERT_LOGOTYPE_GRAY_SCALE_IMAGE_INFO_CHOICE","features":[387]},{"name":"CERT_LOGOTYPE_IMAGE","features":[387]},{"name":"CERT_LOGOTYPE_IMAGE_INFO","features":[387]},{"name":"CERT_LOGOTYPE_IMAGE_INFO_TYPE","features":[387]},{"name":"CERT_LOGOTYPE_INDIRECT_INFO_CHOICE","features":[387]},{"name":"CERT_LOGOTYPE_INFO","features":[387]},{"name":"CERT_LOGOTYPE_NO_IMAGE_RESOLUTION_CHOICE","features":[387]},{"name":"CERT_LOGOTYPE_OPTION","features":[387]},{"name":"CERT_LOGOTYPE_REFERENCE","features":[387]},{"name":"CERT_LOGOTYPE_TABLE_SIZE_IMAGE_RESOLUTION_CHOICE","features":[387]},{"name":"CERT_MD5_HASH_PROP_ID","features":[387]},{"name":"CERT_NAME_ATTR_TYPE","features":[387]},{"name":"CERT_NAME_CONSTRAINTS_INFO","features":[303,387]},{"name":"CERT_NAME_DISABLE_IE4_UTF8_FLAG","features":[387]},{"name":"CERT_NAME_DNS_TYPE","features":[387]},{"name":"CERT_NAME_EMAIL_TYPE","features":[387]},{"name":"CERT_NAME_FRIENDLY_DISPLAY_TYPE","features":[387]},{"name":"CERT_NAME_INFO","features":[387]},{"name":"CERT_NAME_ISSUER_FLAG","features":[387]},{"name":"CERT_NAME_RDN_TYPE","features":[387]},{"name":"CERT_NAME_SEARCH_ALL_NAMES_FLAG","features":[387]},{"name":"CERT_NAME_SIMPLE_DISPLAY_TYPE","features":[387]},{"name":"CERT_NAME_STR_COMMA_FLAG","features":[387]},{"name":"CERT_NAME_STR_CRLF_FLAG","features":[387]},{"name":"CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[387]},{"name":"CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[387]},{"name":"CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[387]},{"name":"CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[387]},{"name":"CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[387]},{"name":"CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[387]},{"name":"CERT_NAME_STR_FORWARD_FLAG","features":[387]},{"name":"CERT_NAME_STR_NO_PLUS_FLAG","features":[387]},{"name":"CERT_NAME_STR_NO_QUOTING_FLAG","features":[387]},{"name":"CERT_NAME_STR_REVERSE_FLAG","features":[387]},{"name":"CERT_NAME_STR_SEMICOLON_FLAG","features":[387]},{"name":"CERT_NAME_UPN_TYPE","features":[387]},{"name":"CERT_NAME_URL_TYPE","features":[387]},{"name":"CERT_NAME_VALUE","features":[387]},{"name":"CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[387]},{"name":"CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[387]},{"name":"CERT_NCRYPT_KEY_SPEC","features":[387]},{"name":"CERT_NEW_KEY_PROP_ID","features":[387]},{"name":"CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[387]},{"name":"CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[387]},{"name":"CERT_NON_REPUDIATION_KEY_USAGE","features":[387]},{"name":"CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[387]},{"name":"CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[387]},{"name":"CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[387]},{"name":"CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[387]},{"name":"CERT_OCM_SUBCOMPONENTS_LOCAL_MACHINE_REGPATH","features":[387]},{"name":"CERT_OCM_SUBCOMPONENTS_ROOT_AUTO_UPDATE_VALUE_NAME","features":[387]},{"name":"CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[387]},{"name":"CERT_OCSP_MUST_STAPLE_PROP_ID","features":[387]},{"name":"CERT_OCSP_RESPONSE_PROP_ID","features":[387]},{"name":"CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[387]},{"name":"CERT_OID_NAME_STR","features":[387]},{"name":"CERT_OPEN_STORE_FLAGS","features":[387]},{"name":"CERT_OR_CRL_BLOB","features":[387]},{"name":"CERT_OR_CRL_BUNDLE","features":[387]},{"name":"CERT_OTHER_LOGOTYPE_INFO","features":[387]},{"name":"CERT_OTHER_NAME","features":[387]},{"name":"CERT_PAIR","features":[387]},{"name":"CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG","features":[387]},{"name":"CERT_PHYSICAL_STORE_AUTH_ROOT_NAME","features":[387]},{"name":"CERT_PHYSICAL_STORE_DEFAULT_NAME","features":[387]},{"name":"CERT_PHYSICAL_STORE_DS_USER_CERTIFICATE_NAME","features":[387]},{"name":"CERT_PHYSICAL_STORE_ENTERPRISE_NAME","features":[387]},{"name":"CERT_PHYSICAL_STORE_GROUP_POLICY_NAME","features":[387]},{"name":"CERT_PHYSICAL_STORE_INFO","features":[387]},{"name":"CERT_PHYSICAL_STORE_INSERT_COMPUTER_NAME_ENABLE_FLAG","features":[387]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_GROUP_POLICY_NAME","features":[387]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_NAME","features":[387]},{"name":"CERT_PHYSICAL_STORE_OPEN_DISABLE_FLAG","features":[387]},{"name":"CERT_PHYSICAL_STORE_PREDEFINED_ENUM_FLAG","features":[387]},{"name":"CERT_PHYSICAL_STORE_REMOTE_OPEN_DISABLE_FLAG","features":[387]},{"name":"CERT_PHYSICAL_STORE_SMART_CARD_NAME","features":[387]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[387]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[387]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LIST_IDENTIFIER","features":[387]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[387]},{"name":"CERT_PIN_RULES_CAB_FILENAME","features":[387]},{"name":"CERT_PIN_RULES_CTL_FILENAME","features":[387]},{"name":"CERT_PIN_RULES_CTL_FILENAME_A","features":[387]},{"name":"CERT_PIN_SHA256_HASH_PROP_ID","features":[387]},{"name":"CERT_POLICIES_INFO","features":[387]},{"name":"CERT_POLICY95_QUALIFIER1","features":[387]},{"name":"CERT_POLICY_CONSTRAINTS_INFO","features":[303,387]},{"name":"CERT_POLICY_ID","features":[387]},{"name":"CERT_POLICY_INFO","features":[387]},{"name":"CERT_POLICY_MAPPING","features":[387]},{"name":"CERT_POLICY_MAPPINGS_INFO","features":[387]},{"name":"CERT_POLICY_QUALIFIER_INFO","features":[387]},{"name":"CERT_POLICY_QUALIFIER_NOTICE_REFERENCE","features":[387]},{"name":"CERT_POLICY_QUALIFIER_USER_NOTICE","features":[387]},{"name":"CERT_PRIVATE_KEY_VALIDITY","features":[303,387]},{"name":"CERT_PROT_ROOT_DISABLE_CURRENT_USER_FLAG","features":[387]},{"name":"CERT_PROT_ROOT_DISABLE_LM_AUTH_FLAG","features":[387]},{"name":"CERT_PROT_ROOT_DISABLE_NOT_DEFINED_NAME_CONSTRAINT_FLAG","features":[387]},{"name":"CERT_PROT_ROOT_DISABLE_NT_AUTH_REQUIRED_FLAG","features":[387]},{"name":"CERT_PROT_ROOT_DISABLE_PEER_TRUST","features":[387]},{"name":"CERT_PROT_ROOT_FLAGS_VALUE_NAME","features":[387]},{"name":"CERT_PROT_ROOT_INHIBIT_ADD_AT_INIT_FLAG","features":[387]},{"name":"CERT_PROT_ROOT_INHIBIT_PURGE_LM_FLAG","features":[387]},{"name":"CERT_PROT_ROOT_ONLY_LM_GPT_FLAG","features":[387]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME","features":[387]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME_A","features":[387]},{"name":"CERT_PUBKEY_ALG_PARA_PROP_ID","features":[387]},{"name":"CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[387]},{"name":"CERT_PUBLIC_KEY_INFO","features":[387]},{"name":"CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[387]},{"name":"CERT_PVK_FILE_PROP_ID","features":[387]},{"name":"CERT_QC_STATEMENT","features":[387]},{"name":"CERT_QC_STATEMENTS_EXT_INFO","features":[387]},{"name":"CERT_QUERY_CONTENT_CERT","features":[387]},{"name":"CERT_QUERY_CONTENT_CERT_PAIR","features":[387]},{"name":"CERT_QUERY_CONTENT_CRL","features":[387]},{"name":"CERT_QUERY_CONTENT_CTL","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL_ISSUER_CERT","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT_PAIR","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_CRL","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_CTL","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX_AND_LOAD","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS10","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED_EMBED","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CERT","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CRL","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CTL","features":[387]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_STORE","features":[387]},{"name":"CERT_QUERY_CONTENT_PFX","features":[387]},{"name":"CERT_QUERY_CONTENT_PFX_AND_LOAD","features":[387]},{"name":"CERT_QUERY_CONTENT_PKCS10","features":[387]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED","features":[387]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED","features":[387]},{"name":"CERT_QUERY_CONTENT_PKCS7_UNSIGNED","features":[387]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CERT","features":[387]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CRL","features":[387]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CTL","features":[387]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_STORE","features":[387]},{"name":"CERT_QUERY_CONTENT_TYPE","features":[387]},{"name":"CERT_QUERY_CONTENT_TYPE_FLAGS","features":[387]},{"name":"CERT_QUERY_ENCODING_TYPE","features":[387]},{"name":"CERT_QUERY_FORMAT_ASN_ASCII_HEX_ENCODED","features":[387]},{"name":"CERT_QUERY_FORMAT_BASE64_ENCODED","features":[387]},{"name":"CERT_QUERY_FORMAT_BINARY","features":[387]},{"name":"CERT_QUERY_FORMAT_FLAG_ALL","features":[387]},{"name":"CERT_QUERY_FORMAT_FLAG_ASN_ASCII_HEX_ENCODED","features":[387]},{"name":"CERT_QUERY_FORMAT_FLAG_BASE64_ENCODED","features":[387]},{"name":"CERT_QUERY_FORMAT_FLAG_BINARY","features":[387]},{"name":"CERT_QUERY_FORMAT_TYPE","features":[387]},{"name":"CERT_QUERY_FORMAT_TYPE_FLAGS","features":[387]},{"name":"CERT_QUERY_OBJECT_BLOB","features":[387]},{"name":"CERT_QUERY_OBJECT_FILE","features":[387]},{"name":"CERT_QUERY_OBJECT_TYPE","features":[387]},{"name":"CERT_RDN","features":[387]},{"name":"CERT_RDN_ANY_TYPE","features":[387]},{"name":"CERT_RDN_ATTR","features":[387]},{"name":"CERT_RDN_ATTR_VALUE_TYPE","features":[387]},{"name":"CERT_RDN_BMP_STRING","features":[387]},{"name":"CERT_RDN_DISABLE_CHECK_TYPE_FLAG","features":[387]},{"name":"CERT_RDN_DISABLE_IE4_UTF8_FLAG","features":[387]},{"name":"CERT_RDN_ENABLE_PUNYCODE_FLAG","features":[387]},{"name":"CERT_RDN_ENABLE_T61_UNICODE_FLAG","features":[387]},{"name":"CERT_RDN_ENABLE_UTF8_UNICODE_FLAG","features":[387]},{"name":"CERT_RDN_ENCODED_BLOB","features":[387]},{"name":"CERT_RDN_FLAGS_MASK","features":[387]},{"name":"CERT_RDN_FORCE_UTF8_UNICODE_FLAG","features":[387]},{"name":"CERT_RDN_GENERAL_STRING","features":[387]},{"name":"CERT_RDN_GRAPHIC_STRING","features":[387]},{"name":"CERT_RDN_IA5_STRING","features":[387]},{"name":"CERT_RDN_INT4_STRING","features":[387]},{"name":"CERT_RDN_ISO646_STRING","features":[387]},{"name":"CERT_RDN_NUMERIC_STRING","features":[387]},{"name":"CERT_RDN_OCTET_STRING","features":[387]},{"name":"CERT_RDN_PRINTABLE_STRING","features":[387]},{"name":"CERT_RDN_T61_STRING","features":[387]},{"name":"CERT_RDN_TELETEX_STRING","features":[387]},{"name":"CERT_RDN_TYPE_MASK","features":[387]},{"name":"CERT_RDN_UNICODE_STRING","features":[387]},{"name":"CERT_RDN_UNIVERSAL_STRING","features":[387]},{"name":"CERT_RDN_UTF8_STRING","features":[387]},{"name":"CERT_RDN_VIDEOTEX_STRING","features":[387]},{"name":"CERT_RDN_VISIBLE_STRING","features":[387]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_FLAG","features":[387]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_PARA","features":[387,364]},{"name":"CERT_REGISTRY_STORE_EXTERNAL_FLAG","features":[387]},{"name":"CERT_REGISTRY_STORE_LM_GPT_FLAG","features":[387]},{"name":"CERT_REGISTRY_STORE_MY_IE_DIRTY_FLAG","features":[387]},{"name":"CERT_REGISTRY_STORE_REMOTE_FLAG","features":[387]},{"name":"CERT_REGISTRY_STORE_ROAMING_FLAG","features":[387]},{"name":"CERT_REGISTRY_STORE_ROAMING_PARA","features":[387,364]},{"name":"CERT_REGISTRY_STORE_SERIALIZED_FLAG","features":[387]},{"name":"CERT_RENEWAL_PROP_ID","features":[387]},{"name":"CERT_REQUEST_INFO","features":[387]},{"name":"CERT_REQUEST_ORIGINATOR_PROP_ID","features":[387]},{"name":"CERT_REQUEST_V1","features":[387]},{"name":"CERT_RETRIEVE_BIOMETRIC_PREDEFINED_BASE_TYPE","features":[387]},{"name":"CERT_RETRIEVE_COMMUNITY_LOGO","features":[387]},{"name":"CERT_RETRIEVE_ISSUER_LOGO","features":[387]},{"name":"CERT_RETRIEVE_SUBJECT_LOGO","features":[387]},{"name":"CERT_RETR_BEHAVIOR_FILE_VALUE_NAME","features":[387]},{"name":"CERT_RETR_BEHAVIOR_INET_AUTH_VALUE_NAME","features":[387]},{"name":"CERT_RETR_BEHAVIOR_INET_STATUS_VALUE_NAME","features":[387]},{"name":"CERT_RETR_BEHAVIOR_LDAP_VALUE_NAME","features":[387]},{"name":"CERT_REVOCATION_CHAIN_PARA","features":[303,387]},{"name":"CERT_REVOCATION_CRL_INFO","features":[303,387]},{"name":"CERT_REVOCATION_INFO","features":[303,387]},{"name":"CERT_REVOCATION_PARA","features":[303,387]},{"name":"CERT_REVOCATION_STATUS","features":[303,387]},{"name":"CERT_REVOCATION_STATUS_REASON","features":[387]},{"name":"CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[387]},{"name":"CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[387]},{"name":"CERT_ROOT_PROGRAM_FLAGS","features":[387]},{"name":"CERT_ROOT_PROGRAM_FLAG_ADDRESS","features":[387]},{"name":"CERT_ROOT_PROGRAM_FLAG_LSC","features":[387]},{"name":"CERT_ROOT_PROGRAM_FLAG_ORG","features":[387]},{"name":"CERT_ROOT_PROGRAM_FLAG_OU","features":[387]},{"name":"CERT_ROOT_PROGRAM_FLAG_SUBJECT_LOGO","features":[387]},{"name":"CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[387]},{"name":"CERT_RSA_PUBLIC_KEY_OBJID","features":[387]},{"name":"CERT_SCARD_PIN_ID_PROP_ID","features":[387]},{"name":"CERT_SCARD_PIN_INFO_PROP_ID","features":[387]},{"name":"CERT_SCEP_CA_CERT_PROP_ID","features":[387]},{"name":"CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[387]},{"name":"CERT_SCEP_FLAGS_PROP_ID","features":[387]},{"name":"CERT_SCEP_GUID_PROP_ID","features":[387]},{"name":"CERT_SCEP_NONCE_PROP_ID","features":[387]},{"name":"CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[387]},{"name":"CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[387]},{"name":"CERT_SCEP_SERVER_CERTS_PROP_ID","features":[387]},{"name":"CERT_SCEP_SIGNER_CERT_PROP_ID","features":[387]},{"name":"CERT_SELECT_ALLOW_DUPLICATES","features":[387]},{"name":"CERT_SELECT_ALLOW_EXPIRED","features":[387]},{"name":"CERT_SELECT_BY_ENHKEY_USAGE","features":[387]},{"name":"CERT_SELECT_BY_EXTENSION","features":[387]},{"name":"CERT_SELECT_BY_FRIENDLYNAME","features":[387]},{"name":"CERT_SELECT_BY_ISSUER_ATTR","features":[387]},{"name":"CERT_SELECT_BY_ISSUER_DISPLAYNAME","features":[387]},{"name":"CERT_SELECT_BY_ISSUER_NAME","features":[387]},{"name":"CERT_SELECT_BY_KEY_USAGE","features":[387]},{"name":"CERT_SELECT_BY_POLICY_OID","features":[387]},{"name":"CERT_SELECT_BY_PROV_NAME","features":[387]},{"name":"CERT_SELECT_BY_PUBLIC_KEY","features":[387]},{"name":"CERT_SELECT_BY_SUBJECT_ATTR","features":[387]},{"name":"CERT_SELECT_BY_SUBJECT_HOST_NAME","features":[387]},{"name":"CERT_SELECT_BY_THUMBPRINT","features":[387]},{"name":"CERT_SELECT_BY_TLS_SIGNATURES","features":[387]},{"name":"CERT_SELECT_CHAIN_PARA","features":[303,387]},{"name":"CERT_SELECT_CRITERIA","features":[387]},{"name":"CERT_SELECT_CRITERIA_TYPE","features":[387]},{"name":"CERT_SELECT_DISALLOW_SELFSIGNED","features":[387]},{"name":"CERT_SELECT_HARDWARE_ONLY","features":[387]},{"name":"CERT_SELECT_HAS_KEY_FOR_KEY_EXCHANGE","features":[387]},{"name":"CERT_SELECT_HAS_KEY_FOR_SIGNATURE","features":[387]},{"name":"CERT_SELECT_HAS_PRIVATE_KEY","features":[387]},{"name":"CERT_SELECT_IGNORE_AUTOSELECT","features":[387]},{"name":"CERT_SELECT_MAX_PARA","features":[387]},{"name":"CERT_SELECT_TRUSTED_ROOT","features":[387]},{"name":"CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[387]},{"name":"CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[387]},{"name":"CERT_SERIAL_CHAIN_PROP_ID","features":[387]},{"name":"CERT_SERVER_OCSP_RESPONSE_ASYNC_FLAG","features":[387]},{"name":"CERT_SERVER_OCSP_RESPONSE_CONTEXT","features":[387]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA","features":[303,387]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_READ_FLAG","features":[387]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_WRITE_FLAG","features":[387]},{"name":"CERT_SET_KEY_CONTEXT_PROP_ID","features":[387]},{"name":"CERT_SET_KEY_PROV_HANDLE_PROP_ID","features":[387]},{"name":"CERT_SET_PROPERTY_IGNORE_PERSIST_ERROR_FLAG","features":[387]},{"name":"CERT_SET_PROPERTY_INHIBIT_PERSIST_FLAG","features":[387]},{"name":"CERT_SHA1_HASH_PROP_ID","features":[387]},{"name":"CERT_SHA256_HASH_PROP_ID","features":[387]},{"name":"CERT_SIGNATURE_HASH_PROP_ID","features":[387]},{"name":"CERT_SIGNED_CONTENT_INFO","features":[387]},{"name":"CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[387]},{"name":"CERT_SIMPLE_CHAIN","features":[303,387]},{"name":"CERT_SIMPLE_NAME_STR","features":[387]},{"name":"CERT_SMART_CARD_DATA_PROP_ID","features":[387]},{"name":"CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[387]},{"name":"CERT_SMART_CARD_READER_PROP_ID","features":[387]},{"name":"CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[387]},{"name":"CERT_SOURCE_LOCATION_PROP_ID","features":[387]},{"name":"CERT_SOURCE_URL_PROP_ID","features":[387]},{"name":"CERT_SRV_OCSP_RESP_MAX_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_SRV_OCSP_RESP_MAX_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_SRV_OCSP_RESP_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_SRV_OCSP_RESP_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_DEFAULT","features":[387]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_SRV_OCSP_RESP_MIN_VALIDITY_SECONDS_VALUE_NAME","features":[387]},{"name":"CERT_SRV_OCSP_RESP_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[387]},{"name":"CERT_STORE_ADD_ALWAYS","features":[387]},{"name":"CERT_STORE_ADD_NEW","features":[387]},{"name":"CERT_STORE_ADD_NEWER","features":[387]},{"name":"CERT_STORE_ADD_NEWER_INHERIT_PROPERTIES","features":[387]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING","features":[387]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES","features":[387]},{"name":"CERT_STORE_ADD_USE_EXISTING","features":[387]},{"name":"CERT_STORE_BACKUP_RESTORE_FLAG","features":[387]},{"name":"CERT_STORE_BASE_CRL_FLAG","features":[387]},{"name":"CERT_STORE_CERTIFICATE_CONTEXT","features":[387]},{"name":"CERT_STORE_CREATE_NEW_FLAG","features":[387]},{"name":"CERT_STORE_CRL_CONTEXT","features":[387]},{"name":"CERT_STORE_CTL_CONTEXT","features":[387]},{"name":"CERT_STORE_CTRL_AUTO_RESYNC","features":[387]},{"name":"CERT_STORE_CTRL_CANCEL_NOTIFY","features":[387]},{"name":"CERT_STORE_CTRL_COMMIT","features":[387]},{"name":"CERT_STORE_CTRL_COMMIT_CLEAR_FLAG","features":[387]},{"name":"CERT_STORE_CTRL_COMMIT_FORCE_FLAG","features":[387]},{"name":"CERT_STORE_CTRL_INHIBIT_DUPLICATE_HANDLE_FLAG","features":[387]},{"name":"CERT_STORE_CTRL_NOTIFY_CHANGE","features":[387]},{"name":"CERT_STORE_CTRL_RESYNC","features":[387]},{"name":"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG","features":[387]},{"name":"CERT_STORE_DELETE_FLAG","features":[387]},{"name":"CERT_STORE_DELTA_CRL_FLAG","features":[387]},{"name":"CERT_STORE_ENUM_ARCHIVED_FLAG","features":[387]},{"name":"CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[387]},{"name":"CERT_STORE_MANIFOLD_FLAG","features":[387]},{"name":"CERT_STORE_MAXIMUM_ALLOWED_FLAG","features":[387]},{"name":"CERT_STORE_NO_CRL_FLAG","features":[387]},{"name":"CERT_STORE_NO_CRYPT_RELEASE_FLAG","features":[387]},{"name":"CERT_STORE_NO_ISSUER_FLAG","features":[387]},{"name":"CERT_STORE_OPEN_EXISTING_FLAG","features":[387]},{"name":"CERT_STORE_PROV_CLOSE_FUNC","features":[387]},{"name":"CERT_STORE_PROV_COLLECTION","features":[387]},{"name":"CERT_STORE_PROV_CONTROL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_DELETED_FLAG","features":[387]},{"name":"CERT_STORE_PROV_DELETE_CERT_FUNC","features":[387]},{"name":"CERT_STORE_PROV_DELETE_CRL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_DELETE_CTL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_EXTERNAL_FLAG","features":[387]},{"name":"CERT_STORE_PROV_FILE","features":[387]},{"name":"CERT_STORE_PROV_FILENAME","features":[387]},{"name":"CERT_STORE_PROV_FILENAME_A","features":[387]},{"name":"CERT_STORE_PROV_FILENAME_W","features":[387]},{"name":"CERT_STORE_PROV_FIND_CERT_FUNC","features":[387]},{"name":"CERT_STORE_PROV_FIND_CRL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_FIND_CTL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_FIND_INFO","features":[387]},{"name":"CERT_STORE_PROV_FLAGS","features":[387]},{"name":"CERT_STORE_PROV_FREE_FIND_CERT_FUNC","features":[387]},{"name":"CERT_STORE_PROV_FREE_FIND_CRL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_FREE_FIND_CTL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_GET_CERT_PROPERTY_FUNC","features":[387]},{"name":"CERT_STORE_PROV_GET_CRL_PROPERTY_FUNC","features":[387]},{"name":"CERT_STORE_PROV_GET_CTL_PROPERTY_FUNC","features":[387]},{"name":"CERT_STORE_PROV_GP_SYSTEM_STORE_FLAG","features":[387]},{"name":"CERT_STORE_PROV_INFO","features":[387]},{"name":"CERT_STORE_PROV_LDAP","features":[387]},{"name":"CERT_STORE_PROV_LDAP_W","features":[387]},{"name":"CERT_STORE_PROV_LM_SYSTEM_STORE_FLAG","features":[387]},{"name":"CERT_STORE_PROV_MEMORY","features":[387]},{"name":"CERT_STORE_PROV_MSG","features":[387]},{"name":"CERT_STORE_PROV_NO_PERSIST_FLAG","features":[387]},{"name":"CERT_STORE_PROV_PHYSICAL","features":[387]},{"name":"CERT_STORE_PROV_PHYSICAL_W","features":[387]},{"name":"CERT_STORE_PROV_PKCS12","features":[387]},{"name":"CERT_STORE_PROV_PKCS7","features":[387]},{"name":"CERT_STORE_PROV_READ_CERT_FUNC","features":[387]},{"name":"CERT_STORE_PROV_READ_CRL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_READ_CTL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_REG","features":[387]},{"name":"CERT_STORE_PROV_SERIALIZED","features":[387]},{"name":"CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC","features":[387]},{"name":"CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC","features":[387]},{"name":"CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC","features":[387]},{"name":"CERT_STORE_PROV_SHARED_USER_FLAG","features":[387]},{"name":"CERT_STORE_PROV_SMART_CARD","features":[387]},{"name":"CERT_STORE_PROV_SMART_CARD_W","features":[387]},{"name":"CERT_STORE_PROV_SYSTEM","features":[387]},{"name":"CERT_STORE_PROV_SYSTEM_A","features":[387]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY","features":[387]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_A","features":[387]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[387]},{"name":"CERT_STORE_PROV_SYSTEM_STORE_FLAG","features":[387]},{"name":"CERT_STORE_PROV_SYSTEM_W","features":[387]},{"name":"CERT_STORE_PROV_WRITE_ADD_FLAG","features":[387]},{"name":"CERT_STORE_PROV_WRITE_CERT_FUNC","features":[387]},{"name":"CERT_STORE_PROV_WRITE_CRL_FUNC","features":[387]},{"name":"CERT_STORE_PROV_WRITE_CTL_FUNC","features":[387]},{"name":"CERT_STORE_READONLY_FLAG","features":[387]},{"name":"CERT_STORE_REVOCATION_FLAG","features":[387]},{"name":"CERT_STORE_SAVE_AS","features":[387]},{"name":"CERT_STORE_SAVE_AS_PKCS12","features":[387]},{"name":"CERT_STORE_SAVE_AS_PKCS7","features":[387]},{"name":"CERT_STORE_SAVE_AS_STORE","features":[387]},{"name":"CERT_STORE_SAVE_TO","features":[387]},{"name":"CERT_STORE_SAVE_TO_FILE","features":[387]},{"name":"CERT_STORE_SAVE_TO_FILENAME","features":[387]},{"name":"CERT_STORE_SAVE_TO_FILENAME_A","features":[387]},{"name":"CERT_STORE_SAVE_TO_FILENAME_W","features":[387]},{"name":"CERT_STORE_SAVE_TO_MEMORY","features":[387]},{"name":"CERT_STORE_SET_LOCALIZED_NAME_FLAG","features":[387]},{"name":"CERT_STORE_SHARE_CONTEXT_FLAG","features":[387]},{"name":"CERT_STORE_SHARE_STORE_FLAG","features":[387]},{"name":"CERT_STORE_SIGNATURE_FLAG","features":[387]},{"name":"CERT_STORE_TIME_VALIDITY_FLAG","features":[387]},{"name":"CERT_STORE_UNSAFE_PHYSICAL_FLAG","features":[387]},{"name":"CERT_STORE_UPDATE_KEYID_FLAG","features":[387]},{"name":"CERT_STRING_TYPE","features":[387]},{"name":"CERT_STRONG_SIGN_ECDSA_ALGORITHM","features":[387]},{"name":"CERT_STRONG_SIGN_ENABLE_CRL_CHECK","features":[387]},{"name":"CERT_STRONG_SIGN_ENABLE_OCSP_CHECK","features":[387]},{"name":"CERT_STRONG_SIGN_FLAGS","features":[387]},{"name":"CERT_STRONG_SIGN_OID_INFO_CHOICE","features":[387]},{"name":"CERT_STRONG_SIGN_PARA","features":[387]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO","features":[387]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO_CHOICE","features":[387]},{"name":"CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[387]},{"name":"CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[387]},{"name":"CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[387]},{"name":"CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[387]},{"name":"CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[387]},{"name":"CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[387]},{"name":"CERT_SUPPORTED_ALGORITHM_INFO","features":[387]},{"name":"CERT_SYSTEM_STORE_CURRENT_SERVICE_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_DEFER_READ_FLAG","features":[387]},{"name":"CERT_SYSTEM_STORE_FLAGS","features":[387]},{"name":"CERT_SYSTEM_STORE_INFO","features":[387]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_WCOS_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_LOCATION_MASK","features":[387]},{"name":"CERT_SYSTEM_STORE_LOCATION_SHIFT","features":[387]},{"name":"CERT_SYSTEM_STORE_MASK","features":[387]},{"name":"CERT_SYSTEM_STORE_RELOCATE_FLAG","features":[387]},{"name":"CERT_SYSTEM_STORE_RELOCATE_PARA","features":[387,364]},{"name":"CERT_SYSTEM_STORE_SERVICES_ID","features":[387]},{"name":"CERT_SYSTEM_STORE_UNPROTECTED_FLAG","features":[387]},{"name":"CERT_SYSTEM_STORE_USERS_ID","features":[387]},{"name":"CERT_TEMPLATE_EXT","features":[303,387]},{"name":"CERT_TIMESTAMP_HASH_USE_TYPE","features":[387]},{"name":"CERT_TPM_SPECIFICATION_INFO","features":[387]},{"name":"CERT_TRUST_AUTO_UPDATE_CA_REVOCATION","features":[387]},{"name":"CERT_TRUST_AUTO_UPDATE_END_REVOCATION","features":[387]},{"name":"CERT_TRUST_BEFORE_DISALLOWED_CA_FILETIME","features":[387]},{"name":"CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID","features":[387]},{"name":"CERT_TRUST_CTL_IS_NOT_TIME_VALID","features":[387]},{"name":"CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE","features":[387]},{"name":"CERT_TRUST_HAS_ALLOW_WEAK_SIGNATURE","features":[387]},{"name":"CERT_TRUST_HAS_AUTO_UPDATE_WEAK_SIGNATURE","features":[387]},{"name":"CERT_TRUST_HAS_CRL_VALIDITY_EXTENDED","features":[387]},{"name":"CERT_TRUST_HAS_EXACT_MATCH_ISSUER","features":[387]},{"name":"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT","features":[387]},{"name":"CERT_TRUST_HAS_ISSUANCE_CHAIN_POLICY","features":[387]},{"name":"CERT_TRUST_HAS_KEY_MATCH_ISSUER","features":[387]},{"name":"CERT_TRUST_HAS_NAME_MATCH_ISSUER","features":[387]},{"name":"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT","features":[387]},{"name":"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT","features":[387]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT","features":[387]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT","features":[387]},{"name":"CERT_TRUST_HAS_PREFERRED_ISSUER","features":[387]},{"name":"CERT_TRUST_HAS_VALID_NAME_CONSTRAINTS","features":[387]},{"name":"CERT_TRUST_HAS_WEAK_HYGIENE","features":[387]},{"name":"CERT_TRUST_HAS_WEAK_SIGNATURE","features":[387]},{"name":"CERT_TRUST_INVALID_BASIC_CONSTRAINTS","features":[387]},{"name":"CERT_TRUST_INVALID_EXTENSION","features":[387]},{"name":"CERT_TRUST_INVALID_NAME_CONSTRAINTS","features":[387]},{"name":"CERT_TRUST_INVALID_POLICY_CONSTRAINTS","features":[387]},{"name":"CERT_TRUST_IS_CA_TRUSTED","features":[387]},{"name":"CERT_TRUST_IS_COMPLEX_CHAIN","features":[387]},{"name":"CERT_TRUST_IS_CYCLIC","features":[387]},{"name":"CERT_TRUST_IS_EXPLICIT_DISTRUST","features":[387]},{"name":"CERT_TRUST_IS_FROM_EXCLUSIVE_TRUST_STORE","features":[387]},{"name":"CERT_TRUST_IS_KEY_ROLLOVER","features":[387]},{"name":"CERT_TRUST_IS_NOT_SIGNATURE_VALID","features":[387]},{"name":"CERT_TRUST_IS_NOT_TIME_NESTED","features":[387]},{"name":"CERT_TRUST_IS_NOT_TIME_VALID","features":[387]},{"name":"CERT_TRUST_IS_NOT_VALID_FOR_USAGE","features":[387]},{"name":"CERT_TRUST_IS_OFFLINE_REVOCATION","features":[387]},{"name":"CERT_TRUST_IS_PARTIAL_CHAIN","features":[387]},{"name":"CERT_TRUST_IS_PEER_TRUSTED","features":[387]},{"name":"CERT_TRUST_IS_REVOKED","features":[387]},{"name":"CERT_TRUST_IS_SELF_SIGNED","features":[387]},{"name":"CERT_TRUST_IS_UNTRUSTED_ROOT","features":[387]},{"name":"CERT_TRUST_LIST_INFO","features":[303,387]},{"name":"CERT_TRUST_NO_ERROR","features":[387]},{"name":"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY","features":[387]},{"name":"CERT_TRUST_NO_OCSP_FAILOVER_TO_CRL","features":[387]},{"name":"CERT_TRUST_NO_TIME_CHECK","features":[387]},{"name":"CERT_TRUST_PUB_ALLOW_END_USER_TRUST","features":[387]},{"name":"CERT_TRUST_PUB_ALLOW_ENTERPRISE_ADMIN_TRUST","features":[387]},{"name":"CERT_TRUST_PUB_ALLOW_MACHINE_ADMIN_TRUST","features":[387]},{"name":"CERT_TRUST_PUB_ALLOW_TRUST_MASK","features":[387]},{"name":"CERT_TRUST_PUB_AUTHENTICODE_FLAGS_VALUE_NAME","features":[387]},{"name":"CERT_TRUST_PUB_CHECK_PUBLISHER_REV_FLAG","features":[387]},{"name":"CERT_TRUST_PUB_CHECK_TIMESTAMP_REV_FLAG","features":[387]},{"name":"CERT_TRUST_REVOCATION_STATUS_UNKNOWN","features":[387]},{"name":"CERT_TRUST_SSL_HANDSHAKE_OCSP","features":[387]},{"name":"CERT_TRUST_SSL_RECONNECT_OCSP","features":[387]},{"name":"CERT_TRUST_SSL_TIME_VALID","features":[387]},{"name":"CERT_TRUST_SSL_TIME_VALID_OCSP","features":[387]},{"name":"CERT_TRUST_STATUS","features":[387]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_MASK","features":[387]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_SHIFT","features":[387]},{"name":"CERT_UNICODE_IS_RDN_ATTRS_FLAG","features":[387]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_MASK","features":[387]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_SHIFT","features":[387]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_MASK","features":[387]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_SHIFT","features":[387]},{"name":"CERT_USAGE_MATCH","features":[387]},{"name":"CERT_V1","features":[387]},{"name":"CERT_V2","features":[387]},{"name":"CERT_V3","features":[387]},{"name":"CERT_VERIFY_ALLOW_MORE_USAGE_FLAG","features":[387]},{"name":"CERT_VERIFY_CACHE_ONLY_BASED_REVOCATION","features":[387]},{"name":"CERT_VERIFY_INHIBIT_CTL_UPDATE_FLAG","features":[387]},{"name":"CERT_VERIFY_NO_TIME_CHECK_FLAG","features":[387]},{"name":"CERT_VERIFY_REV_ACCUMULATIVE_TIMEOUT_FLAG","features":[387]},{"name":"CERT_VERIFY_REV_CHAIN_FLAG","features":[387]},{"name":"CERT_VERIFY_REV_NO_OCSP_FAILOVER_TO_CRL_FLAG","features":[387]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_FLAG","features":[387]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_WIRE_ONLY_FLAG","features":[387]},{"name":"CERT_VERIFY_TRUSTED_SIGNERS_FLAG","features":[387]},{"name":"CERT_VERIFY_UPDATED_CTL_FLAG","features":[387]},{"name":"CERT_X500_NAME_STR","features":[387]},{"name":"CERT_X942_DH_PARAMETERS","features":[387]},{"name":"CERT_X942_DH_VALIDATION_PARAMS","features":[387]},{"name":"CERT_XML_NAME_STR","features":[387]},{"name":"CESSetupProperty","features":[387]},{"name":"CLAIMLIST","features":[387]},{"name":"CMC_ADD_ATTRIBUTES","features":[387]},{"name":"CMC_ADD_ATTRIBUTES_INFO","features":[387]},{"name":"CMC_ADD_EXTENSIONS","features":[387]},{"name":"CMC_ADD_EXTENSIONS_INFO","features":[303,387]},{"name":"CMC_DATA","features":[387]},{"name":"CMC_DATA_INFO","features":[387]},{"name":"CMC_FAIL_BAD_ALG","features":[387]},{"name":"CMC_FAIL_BAD_CERT_ID","features":[387]},{"name":"CMC_FAIL_BAD_IDENTITY","features":[387]},{"name":"CMC_FAIL_BAD_MESSAGE_CHECK","features":[387]},{"name":"CMC_FAIL_BAD_REQUEST","features":[387]},{"name":"CMC_FAIL_BAD_TIME","features":[387]},{"name":"CMC_FAIL_INTERNAL_CA_ERROR","features":[387]},{"name":"CMC_FAIL_MUST_ARCHIVE_KEYS","features":[387]},{"name":"CMC_FAIL_NO_KEY_REUSE","features":[387]},{"name":"CMC_FAIL_POP_FAILED","features":[387]},{"name":"CMC_FAIL_POP_REQUIRED","features":[387]},{"name":"CMC_FAIL_TRY_LATER","features":[387]},{"name":"CMC_FAIL_UNSUPORTED_EXT","features":[387]},{"name":"CMC_OTHER_INFO_FAIL_CHOICE","features":[387]},{"name":"CMC_OTHER_INFO_NO_CHOICE","features":[387]},{"name":"CMC_OTHER_INFO_PEND_CHOICE","features":[387]},{"name":"CMC_PEND_INFO","features":[303,387]},{"name":"CMC_RESPONSE","features":[387]},{"name":"CMC_RESPONSE_INFO","features":[387]},{"name":"CMC_STATUS","features":[387]},{"name":"CMC_STATUS_CONFIRM_REQUIRED","features":[387]},{"name":"CMC_STATUS_FAILED","features":[387]},{"name":"CMC_STATUS_INFO","features":[303,387]},{"name":"CMC_STATUS_NO_SUPPORT","features":[387]},{"name":"CMC_STATUS_PENDING","features":[387]},{"name":"CMC_STATUS_SUCCESS","features":[387]},{"name":"CMC_TAGGED_ATTRIBUTE","features":[387]},{"name":"CMC_TAGGED_CERT_REQUEST","features":[387]},{"name":"CMC_TAGGED_CERT_REQUEST_CHOICE","features":[387]},{"name":"CMC_TAGGED_CONTENT_INFO","features":[387]},{"name":"CMC_TAGGED_OTHER_MSG","features":[387]},{"name":"CMC_TAGGED_REQUEST","features":[387]},{"name":"CMSCEPSetup","features":[387]},{"name":"CMSG_ATTR_CERT_COUNT_PARAM","features":[387]},{"name":"CMSG_ATTR_CERT_PARAM","features":[387]},{"name":"CMSG_AUTHENTICATED_ATTRIBUTES_FLAG","features":[387]},{"name":"CMSG_BARE_CONTENT_FLAG","features":[387]},{"name":"CMSG_BARE_CONTENT_PARAM","features":[387]},{"name":"CMSG_CERT_COUNT_PARAM","features":[387]},{"name":"CMSG_CERT_PARAM","features":[387]},{"name":"CMSG_CMS_ENCAPSULATED_CONTENT_FLAG","features":[387]},{"name":"CMSG_CMS_ENCAPSULATED_CTL_FLAG","features":[387]},{"name":"CMSG_CMS_RECIPIENT_COUNT_PARAM","features":[387]},{"name":"CMSG_CMS_RECIPIENT_ENCRYPTED_KEY_INDEX_PARAM","features":[387]},{"name":"CMSG_CMS_RECIPIENT_INDEX_PARAM","features":[387]},{"name":"CMSG_CMS_RECIPIENT_INFO","features":[303,387]},{"name":"CMSG_CMS_RECIPIENT_INFO_PARAM","features":[387]},{"name":"CMSG_CMS_SIGNER_INFO","features":[387]},{"name":"CMSG_CMS_SIGNER_INFO_PARAM","features":[387]},{"name":"CMSG_CNG_CONTENT_DECRYPT_INFO","features":[387]},{"name":"CMSG_COMPUTED_HASH_PARAM","features":[387]},{"name":"CMSG_CONTENTS_OCTETS_FLAG","features":[387]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_OBJID_FLAG","features":[387]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_PARA_FLAG","features":[387]},{"name":"CMSG_CONTENT_ENCRYPT_INFO","features":[303,387]},{"name":"CMSG_CONTENT_ENCRYPT_PAD_ENCODED_LEN_FLAG","features":[387]},{"name":"CMSG_CONTENT_ENCRYPT_RELEASE_CONTEXT_FLAG","features":[387]},{"name":"CMSG_CONTENT_PARAM","features":[387]},{"name":"CMSG_CRL_COUNT_PARAM","features":[387]},{"name":"CMSG_CRL_PARAM","features":[387]},{"name":"CMSG_CRYPT_RELEASE_CONTEXT_FLAG","features":[387]},{"name":"CMSG_CTRL_ADD_ATTR_CERT","features":[387]},{"name":"CMSG_CTRL_ADD_CERT","features":[387]},{"name":"CMSG_CTRL_ADD_CMS_SIGNER_INFO","features":[387]},{"name":"CMSG_CTRL_ADD_CRL","features":[387]},{"name":"CMSG_CTRL_ADD_SIGNER","features":[387]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR","features":[387]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA","features":[387]},{"name":"CMSG_CTRL_DECRYPT","features":[387]},{"name":"CMSG_CTRL_DECRYPT_PARA","features":[387]},{"name":"CMSG_CTRL_DEL_ATTR_CERT","features":[387]},{"name":"CMSG_CTRL_DEL_CERT","features":[387]},{"name":"CMSG_CTRL_DEL_CRL","features":[387]},{"name":"CMSG_CTRL_DEL_SIGNER","features":[387]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR","features":[387]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA","features":[387]},{"name":"CMSG_CTRL_ENABLE_STRONG_SIGNATURE","features":[387]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT","features":[387]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT_PARA","features":[303,387]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT","features":[387]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT_PARA","features":[387]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT","features":[387]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT_PARA","features":[303,387]},{"name":"CMSG_CTRL_VERIFY_HASH","features":[387]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE","features":[387]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX","features":[387]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA","features":[387]},{"name":"CMSG_DATA","features":[387]},{"name":"CMSG_DEFAULT_INSTALLABLE_FUNC_OID","features":[387]},{"name":"CMSG_DETACHED_FLAG","features":[387]},{"name":"CMSG_ENCODED_MESSAGE","features":[387]},{"name":"CMSG_ENCODED_SIGNER","features":[387]},{"name":"CMSG_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[387]},{"name":"CMSG_ENCODE_SORTED_CTL_FLAG","features":[387]},{"name":"CMSG_ENCODING_TYPE_MASK","features":[387]},{"name":"CMSG_ENCRYPTED","features":[387]},{"name":"CMSG_ENCRYPTED_DIGEST","features":[387]},{"name":"CMSG_ENCRYPTED_ENCODE_INFO","features":[387]},{"name":"CMSG_ENCRYPT_PARAM","features":[387]},{"name":"CMSG_ENVELOPED","features":[387]},{"name":"CMSG_ENVELOPED_DATA_CMS_VERSION","features":[387]},{"name":"CMSG_ENVELOPED_DATA_PKCS_1_5_VERSION","features":[387]},{"name":"CMSG_ENVELOPED_DATA_V0","features":[387]},{"name":"CMSG_ENVELOPED_DATA_V2","features":[387]},{"name":"CMSG_ENVELOPED_ENCODE_INFO","features":[303,387]},{"name":"CMSG_ENVELOPED_RECIPIENT_V0","features":[387]},{"name":"CMSG_ENVELOPED_RECIPIENT_V2","features":[387]},{"name":"CMSG_ENVELOPED_RECIPIENT_V3","features":[387]},{"name":"CMSG_ENVELOPED_RECIPIENT_V4","features":[387]},{"name":"CMSG_ENVELOPE_ALGORITHM_PARAM","features":[387]},{"name":"CMSG_HASHED","features":[387]},{"name":"CMSG_HASHED_DATA_CMS_VERSION","features":[387]},{"name":"CMSG_HASHED_DATA_PKCS_1_5_VERSION","features":[387]},{"name":"CMSG_HASHED_DATA_V0","features":[387]},{"name":"CMSG_HASHED_DATA_V2","features":[387]},{"name":"CMSG_HASHED_ENCODE_INFO","features":[387]},{"name":"CMSG_HASH_ALGORITHM_PARAM","features":[387]},{"name":"CMSG_HASH_DATA_PARAM","features":[387]},{"name":"CMSG_INDEFINITE_LENGTH","features":[387]},{"name":"CMSG_INNER_CONTENT_TYPE_PARAM","features":[387]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_MATERIAL_FLAG","features":[387]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_OBJID_FLAG","features":[387]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PARA_FLAG","features":[387]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_ALG_FLAG","features":[387]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_BITS_FLAG","features":[387]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_PARA_FLAG","features":[387]},{"name":"CMSG_KEY_AGREE_ENCRYPT_INFO","features":[387]},{"name":"CMSG_KEY_AGREE_EPHEMERAL_KEY_CHOICE","features":[387]},{"name":"CMSG_KEY_AGREE_KEY_ENCRYPT_INFO","features":[387]},{"name":"CMSG_KEY_AGREE_OPTION","features":[387]},{"name":"CMSG_KEY_AGREE_ORIGINATOR","features":[387]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_CERT","features":[387]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_PUBLIC_KEY","features":[387]},{"name":"CMSG_KEY_AGREE_RECIPIENT","features":[387]},{"name":"CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO","features":[303,387]},{"name":"CMSG_KEY_AGREE_RECIPIENT_INFO","features":[303,387]},{"name":"CMSG_KEY_AGREE_STATIC_KEY_CHOICE","features":[387]},{"name":"CMSG_KEY_AGREE_VERSION","features":[387]},{"name":"CMSG_KEY_TRANS_CMS_VERSION","features":[387]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_OBJID_FLAG","features":[387]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_PARA_FLAG","features":[387]},{"name":"CMSG_KEY_TRANS_ENCRYPT_INFO","features":[387]},{"name":"CMSG_KEY_TRANS_PKCS_1_5_VERSION","features":[387]},{"name":"CMSG_KEY_TRANS_RECIPIENT","features":[387]},{"name":"CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO","features":[387]},{"name":"CMSG_KEY_TRANS_RECIPIENT_INFO","features":[387]},{"name":"CMSG_LENGTH_ONLY_FLAG","features":[387]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_OBJID_FLAG","features":[387]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_PARA_FLAG","features":[387]},{"name":"CMSG_MAIL_LIST_ENCRYPT_INFO","features":[387]},{"name":"CMSG_MAIL_LIST_HANDLE_KEY_CHOICE","features":[387]},{"name":"CMSG_MAIL_LIST_RECIPIENT","features":[387]},{"name":"CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO","features":[303,387]},{"name":"CMSG_MAIL_LIST_RECIPIENT_INFO","features":[303,387]},{"name":"CMSG_MAIL_LIST_VERSION","features":[387]},{"name":"CMSG_MAX_LENGTH_FLAG","features":[387]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_AGREE_FUNC","features":[387]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_TRANS_FUNC","features":[387]},{"name":"CMSG_OID_CAPI1_EXPORT_MAIL_LIST_FUNC","features":[387]},{"name":"CMSG_OID_CAPI1_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[387]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_AGREE_FUNC","features":[387]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_TRANS_FUNC","features":[387]},{"name":"CMSG_OID_CAPI1_IMPORT_MAIL_LIST_FUNC","features":[387]},{"name":"CMSG_OID_CNG_EXPORT_KEY_AGREE_FUNC","features":[387]},{"name":"CMSG_OID_CNG_EXPORT_KEY_TRANS_FUNC","features":[387]},{"name":"CMSG_OID_CNG_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[387]},{"name":"CMSG_OID_CNG_IMPORT_CONTENT_ENCRYPT_KEY_FUNC","features":[387]},{"name":"CMSG_OID_CNG_IMPORT_KEY_AGREE_FUNC","features":[387]},{"name":"CMSG_OID_CNG_IMPORT_KEY_TRANS_FUNC","features":[387]},{"name":"CMSG_OID_EXPORT_ENCRYPT_KEY_FUNC","features":[387]},{"name":"CMSG_OID_EXPORT_KEY_AGREE_FUNC","features":[387]},{"name":"CMSG_OID_EXPORT_KEY_TRANS_FUNC","features":[387]},{"name":"CMSG_OID_EXPORT_MAIL_LIST_FUNC","features":[387]},{"name":"CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[387]},{"name":"CMSG_OID_GEN_ENCRYPT_KEY_FUNC","features":[387]},{"name":"CMSG_OID_IMPORT_ENCRYPT_KEY_FUNC","features":[387]},{"name":"CMSG_OID_IMPORT_KEY_AGREE_FUNC","features":[387]},{"name":"CMSG_OID_IMPORT_KEY_TRANS_FUNC","features":[387]},{"name":"CMSG_OID_IMPORT_MAIL_LIST_FUNC","features":[387]},{"name":"CMSG_RC2_AUX_INFO","features":[387]},{"name":"CMSG_RC4_AUX_INFO","features":[387]},{"name":"CMSG_RC4_NO_SALT_FLAG","features":[387]},{"name":"CMSG_RECIPIENT_COUNT_PARAM","features":[387]},{"name":"CMSG_RECIPIENT_ENCODE_INFO","features":[303,387]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO","features":[303,387]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_INFO","features":[303,387]},{"name":"CMSG_RECIPIENT_INDEX_PARAM","features":[387]},{"name":"CMSG_RECIPIENT_INFO_PARAM","features":[387]},{"name":"CMSG_SIGNED","features":[387]},{"name":"CMSG_SIGNED_AND_ENVELOPED","features":[387]},{"name":"CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO","features":[303,387]},{"name":"CMSG_SIGNED_DATA_CMS_VERSION","features":[387]},{"name":"CMSG_SIGNED_DATA_NO_SIGN_FLAG","features":[387]},{"name":"CMSG_SIGNED_DATA_PKCS_1_5_VERSION","features":[387]},{"name":"CMSG_SIGNED_DATA_V1","features":[387]},{"name":"CMSG_SIGNED_DATA_V3","features":[387]},{"name":"CMSG_SIGNED_ENCODE_INFO","features":[303,387]},{"name":"CMSG_SIGNER_AUTH_ATTR_PARAM","features":[387]},{"name":"CMSG_SIGNER_CERT_ID_PARAM","features":[387]},{"name":"CMSG_SIGNER_CERT_INFO_PARAM","features":[387]},{"name":"CMSG_SIGNER_COUNT_PARAM","features":[387]},{"name":"CMSG_SIGNER_ENCODE_INFO","features":[303,387]},{"name":"CMSG_SIGNER_HASH_ALGORITHM_PARAM","features":[387]},{"name":"CMSG_SIGNER_INFO","features":[387]},{"name":"CMSG_SIGNER_INFO_CMS_VERSION","features":[387]},{"name":"CMSG_SIGNER_INFO_PARAM","features":[387]},{"name":"CMSG_SIGNER_INFO_PKCS_1_5_VERSION","features":[387]},{"name":"CMSG_SIGNER_INFO_V1","features":[387]},{"name":"CMSG_SIGNER_INFO_V3","features":[387]},{"name":"CMSG_SIGNER_ONLY_FLAG","features":[387]},{"name":"CMSG_SIGNER_UNAUTH_ATTR_PARAM","features":[387]},{"name":"CMSG_SP3_COMPATIBLE_AUX_INFO","features":[387]},{"name":"CMSG_SP3_COMPATIBLE_ENCRYPT_FLAG","features":[387]},{"name":"CMSG_STREAM_INFO","features":[303,387]},{"name":"CMSG_TRUSTED_SIGNER_FLAG","features":[387]},{"name":"CMSG_TYPE_PARAM","features":[387]},{"name":"CMSG_UNPROTECTED_ATTR_PARAM","features":[387]},{"name":"CMSG_USE_SIGNER_INDEX_FLAG","features":[387]},{"name":"CMSG_VERIFY_COUNTER_SIGN_ENABLE_STRONG_FLAG","features":[387]},{"name":"CMSG_VERIFY_SIGNER_CERT","features":[387]},{"name":"CMSG_VERIFY_SIGNER_CHAIN","features":[387]},{"name":"CMSG_VERIFY_SIGNER_NULL","features":[387]},{"name":"CMSG_VERIFY_SIGNER_PUBKEY","features":[387]},{"name":"CMSG_VERSION_PARAM","features":[387]},{"name":"CMS_DH_KEY_INFO","features":[387]},{"name":"CMS_KEY_INFO","features":[387]},{"name":"CMS_SIGNER_INFO","features":[387]},{"name":"CNG_RSA_PRIVATE_KEY_BLOB","features":[387]},{"name":"CNG_RSA_PUBLIC_KEY_BLOB","features":[387]},{"name":"CONTEXT_OID_CAPI2_ANY","features":[387]},{"name":"CONTEXT_OID_CERTIFICATE","features":[387]},{"name":"CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC","features":[387]},{"name":"CONTEXT_OID_CRL","features":[387]},{"name":"CONTEXT_OID_CTL","features":[387]},{"name":"CONTEXT_OID_OCSP_RESP","features":[387]},{"name":"CONTEXT_OID_PKCS7","features":[387]},{"name":"CPS_URLS","features":[387]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS","features":[387]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_A","features":[387]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_W","features":[387]},{"name":"CRL_CONTEXT","features":[303,387]},{"name":"CRL_DIST_POINT","features":[387]},{"name":"CRL_DIST_POINTS_INFO","features":[387]},{"name":"CRL_DIST_POINT_ERR_CRL_ISSUER_BIT","features":[387]},{"name":"CRL_DIST_POINT_ERR_INDEX_MASK","features":[387]},{"name":"CRL_DIST_POINT_ERR_INDEX_SHIFT","features":[387]},{"name":"CRL_DIST_POINT_FULL_NAME","features":[387]},{"name":"CRL_DIST_POINT_ISSUER_RDN_NAME","features":[387]},{"name":"CRL_DIST_POINT_NAME","features":[387]},{"name":"CRL_DIST_POINT_NO_NAME","features":[387]},{"name":"CRL_ENTRY","features":[303,387]},{"name":"CRL_FIND_ANY","features":[387]},{"name":"CRL_FIND_EXISTING","features":[387]},{"name":"CRL_FIND_ISSUED_BY","features":[387]},{"name":"CRL_FIND_ISSUED_BY_AKI_FLAG","features":[387]},{"name":"CRL_FIND_ISSUED_BY_BASE_FLAG","features":[387]},{"name":"CRL_FIND_ISSUED_BY_DELTA_FLAG","features":[387]},{"name":"CRL_FIND_ISSUED_BY_SIGNATURE_FLAG","features":[387]},{"name":"CRL_FIND_ISSUED_FOR","features":[387]},{"name":"CRL_FIND_ISSUED_FOR_PARA","features":[303,387]},{"name":"CRL_FIND_ISSUED_FOR_SET_STRONG_PROPERTIES_FLAG","features":[387]},{"name":"CRL_INFO","features":[303,387]},{"name":"CRL_ISSUING_DIST_POINT","features":[303,387]},{"name":"CRL_REASON_AA_COMPROMISE","features":[387]},{"name":"CRL_REASON_AA_COMPROMISE_FLAG","features":[387]},{"name":"CRL_REASON_AFFILIATION_CHANGED","features":[387]},{"name":"CRL_REASON_AFFILIATION_CHANGED_FLAG","features":[387]},{"name":"CRL_REASON_CA_COMPROMISE","features":[387]},{"name":"CRL_REASON_CA_COMPROMISE_FLAG","features":[387]},{"name":"CRL_REASON_CERTIFICATE_HOLD","features":[387]},{"name":"CRL_REASON_CERTIFICATE_HOLD_FLAG","features":[387]},{"name":"CRL_REASON_CESSATION_OF_OPERATION","features":[387]},{"name":"CRL_REASON_CESSATION_OF_OPERATION_FLAG","features":[387]},{"name":"CRL_REASON_KEY_COMPROMISE","features":[387]},{"name":"CRL_REASON_KEY_COMPROMISE_FLAG","features":[387]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN","features":[387]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN_FLAG","features":[387]},{"name":"CRL_REASON_REMOVE_FROM_CRL","features":[387]},{"name":"CRL_REASON_SUPERSEDED","features":[387]},{"name":"CRL_REASON_SUPERSEDED_FLAG","features":[387]},{"name":"CRL_REASON_UNSPECIFIED","features":[387]},{"name":"CRL_REASON_UNUSED_FLAG","features":[387]},{"name":"CRL_REVOCATION_INFO","features":[303,387]},{"name":"CRL_V1","features":[387]},{"name":"CRL_V2","features":[387]},{"name":"CROSS_CERT_DIST_POINTS_INFO","features":[387]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_MASK","features":[387]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_SHIFT","features":[387]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_DEFAULT","features":[387]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_BEFORE_OCSP_ENABLE","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_DISABLE_INFORMATION_EVENTS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_LOG_FILE_NAME_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_MAX_AGE_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_PROCESS_NAME_LIST_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_RANDOM_INTERVAL_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_TIMEOUT_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_CRL_PRE_FETCH_URL_LIST_VALUE_NAME","features":[387]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_DEFAULT","features":[387]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_VALUE_NAME","features":[387]},{"name":"CRYPTNET_OCSP_AFTER_CRL_DISABLE","features":[387]},{"name":"CRYPTNET_PRE_FETCH_AFTER_CURRENT_TIME_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_DEFAULT","features":[387]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[387]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_MAX_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_MAX_MAX_AGE_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_MIN_MAX_AGE_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_MIN_OCSP_VALIDITY_PERIOD_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_RETRIEVAL_TIMEOUT_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_DEFAULT","features":[387]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_DISABLE","features":[387]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_PERIOD_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[387]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[387]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH","features":[387]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH_EXEMPT_SECONDS_VALUE_NAME","features":[387]},{"name":"CRYPTNET_URL_CACHE_DISABLE_FLUSH","features":[387]},{"name":"CRYPTNET_URL_CACHE_FLUSH_INFO","features":[303,387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_AUTOROOT_CAB","features":[387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_BLOB","features":[387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_CRL","features":[387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_DISALLOWED_CERT_CAB","features":[387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_INFO","features":[303,387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_NONE","features":[387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_OCSP","features":[387]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_PIN_RULES_CAB","features":[387]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_HTTP","features":[387]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_INFO","features":[303,387]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_NONE","features":[387]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_VALIDATED","features":[387]},{"name":"CRYPTPROTECTMEMORY_BLOCK_SIZE","features":[387]},{"name":"CRYPTPROTECTMEMORY_CROSS_PROCESS","features":[387]},{"name":"CRYPTPROTECTMEMORY_SAME_LOGON","features":[387]},{"name":"CRYPTPROTECTMEMORY_SAME_PROCESS","features":[387]},{"name":"CRYPTPROTECT_AUDIT","features":[387]},{"name":"CRYPTPROTECT_CRED_REGENERATE","features":[387]},{"name":"CRYPTPROTECT_CRED_SYNC","features":[387]},{"name":"CRYPTPROTECT_DEFAULT_PROVIDER","features":[387]},{"name":"CRYPTPROTECT_FIRST_RESERVED_FLAGVAL","features":[387]},{"name":"CRYPTPROTECT_LAST_RESERVED_FLAGVAL","features":[387]},{"name":"CRYPTPROTECT_LOCAL_MACHINE","features":[387]},{"name":"CRYPTPROTECT_NO_RECOVERY","features":[387]},{"name":"CRYPTPROTECT_PROMPTSTRUCT","features":[303,387]},{"name":"CRYPTPROTECT_PROMPT_ON_PROTECT","features":[387]},{"name":"CRYPTPROTECT_PROMPT_ON_UNPROTECT","features":[387]},{"name":"CRYPTPROTECT_PROMPT_REQUIRE_STRONG","features":[387]},{"name":"CRYPTPROTECT_PROMPT_RESERVED","features":[387]},{"name":"CRYPTPROTECT_PROMPT_STRONG","features":[387]},{"name":"CRYPTPROTECT_UI_FORBIDDEN","features":[387]},{"name":"CRYPTPROTECT_VERIFY_PROTECTION","features":[387]},{"name":"CRYPT_3DES_KEY_STATE","features":[387]},{"name":"CRYPT_ACCUMULATIVE_TIMEOUT","features":[387]},{"name":"CRYPT_ACQUIRE_ALLOW_NCRYPT_KEY_FLAG","features":[387]},{"name":"CRYPT_ACQUIRE_CACHE_FLAG","features":[387]},{"name":"CRYPT_ACQUIRE_COMPARE_KEY_FLAG","features":[387]},{"name":"CRYPT_ACQUIRE_FLAGS","features":[387]},{"name":"CRYPT_ACQUIRE_NCRYPT_KEY_FLAGS_MASK","features":[387]},{"name":"CRYPT_ACQUIRE_NO_HEALING","features":[387]},{"name":"CRYPT_ACQUIRE_ONLY_NCRYPT_KEY_FLAG","features":[387]},{"name":"CRYPT_ACQUIRE_PREFER_NCRYPT_KEY_FLAG","features":[387]},{"name":"CRYPT_ACQUIRE_SILENT_FLAG","features":[387]},{"name":"CRYPT_ACQUIRE_USE_PROV_INFO_FLAG","features":[387]},{"name":"CRYPT_ACQUIRE_WINDOW_HANDLE_FLAG","features":[387]},{"name":"CRYPT_AES_128_KEY_STATE","features":[387]},{"name":"CRYPT_AES_256_KEY_STATE","features":[387]},{"name":"CRYPT_AIA_RETRIEVAL","features":[387]},{"name":"CRYPT_ALGORITHM_IDENTIFIER","features":[387]},{"name":"CRYPT_ALL_FUNCTIONS","features":[387]},{"name":"CRYPT_ALL_PROVIDERS","features":[387]},{"name":"CRYPT_ANY","features":[387]},{"name":"CRYPT_ARCHIVABLE","features":[387]},{"name":"CRYPT_ARCHIVE","features":[387]},{"name":"CRYPT_ASN_ENCODING","features":[387]},{"name":"CRYPT_ASYNC_RETRIEVAL","features":[387]},{"name":"CRYPT_ASYNC_RETRIEVAL_COMPLETION","features":[387]},{"name":"CRYPT_ATTRIBUTE","features":[387]},{"name":"CRYPT_ATTRIBUTES","features":[387]},{"name":"CRYPT_ATTRIBUTE_TYPE_VALUE","features":[387]},{"name":"CRYPT_BIT_BLOB","features":[387]},{"name":"CRYPT_BLOB_ARRAY","features":[387]},{"name":"CRYPT_BLOB_VER3","features":[387]},{"name":"CRYPT_CACHE_ONLY_RETRIEVAL","features":[387]},{"name":"CRYPT_CHECK_FRESHNESS_TIME_VALIDITY","features":[387]},{"name":"CRYPT_CONTENT_INFO","features":[387]},{"name":"CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY","features":[387]},{"name":"CRYPT_CONTEXTS","features":[387]},{"name":"CRYPT_CONTEXT_CONFIG","features":[387]},{"name":"CRYPT_CONTEXT_CONFIG_FLAGS","features":[387]},{"name":"CRYPT_CONTEXT_FUNCTIONS","features":[387]},{"name":"CRYPT_CONTEXT_FUNCTION_CONFIG","features":[387]},{"name":"CRYPT_CONTEXT_FUNCTION_PROVIDERS","features":[387]},{"name":"CRYPT_CREATE_IV","features":[387]},{"name":"CRYPT_CREATE_NEW_FLUSH_ENTRY","features":[387]},{"name":"CRYPT_CREATE_SALT","features":[387]},{"name":"CRYPT_CREDENTIALS","features":[387]},{"name":"CRYPT_CSP_PROVIDER","features":[387]},{"name":"CRYPT_DATA_KEY","features":[387]},{"name":"CRYPT_DECODE_ALLOC_FLAG","features":[387]},{"name":"CRYPT_DECODE_ENABLE_PUNYCODE_FLAG","features":[387]},{"name":"CRYPT_DECODE_ENABLE_UTF8PERCENT_FLAG","features":[387]},{"name":"CRYPT_DECODE_NOCOPY_FLAG","features":[387]},{"name":"CRYPT_DECODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[387]},{"name":"CRYPT_DECODE_PARA","features":[387]},{"name":"CRYPT_DECODE_SHARE_OID_STRING_FLAG","features":[387]},{"name":"CRYPT_DECODE_TO_BE_SIGNED_FLAG","features":[387]},{"name":"CRYPT_DECRYPT","features":[387]},{"name":"CRYPT_DECRYPT_MESSAGE_PARA","features":[387]},{"name":"CRYPT_DECRYPT_RSA_NO_PADDING_CHECK","features":[387]},{"name":"CRYPT_DEFAULT_CONTAINER_OPTIONAL","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT_AUTO_RELEASE_FLAG","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT_CERT_SIGN_OID","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT_FLAGS","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_CERT_SIGN_OID","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT_PROCESS_FLAG","features":[387]},{"name":"CRYPT_DEFAULT_CONTEXT_TYPE","features":[387]},{"name":"CRYPT_DEFAULT_OID","features":[387]},{"name":"CRYPT_DELETEKEYSET","features":[387]},{"name":"CRYPT_DELETE_DEFAULT","features":[387]},{"name":"CRYPT_DELETE_KEYSET","features":[387]},{"name":"CRYPT_DESTROYKEY","features":[387]},{"name":"CRYPT_DES_KEY_STATE","features":[387]},{"name":"CRYPT_DOMAIN","features":[387]},{"name":"CRYPT_DONT_CACHE_RESULT","features":[387]},{"name":"CRYPT_DONT_CHECK_TIME_VALIDITY","features":[387]},{"name":"CRYPT_DONT_VERIFY_SIGNATURE","features":[387]},{"name":"CRYPT_ECC_CMS_SHARED_INFO","features":[387]},{"name":"CRYPT_ECC_CMS_SHARED_INFO_SUPPPUBINFO_BYTE_LENGTH","features":[387]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO","features":[387]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO_v1","features":[387]},{"name":"CRYPT_ENABLE_FILE_RETRIEVAL","features":[387]},{"name":"CRYPT_ENABLE_SSL_REVOCATION_RETRIEVAL","features":[387]},{"name":"CRYPT_ENCODE_ALLOC_FLAG","features":[387]},{"name":"CRYPT_ENCODE_DECODE_NONE","features":[387]},{"name":"CRYPT_ENCODE_ENABLE_PUNYCODE_FLAG","features":[387]},{"name":"CRYPT_ENCODE_ENABLE_UTF8PERCENT_FLAG","features":[387]},{"name":"CRYPT_ENCODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[387]},{"name":"CRYPT_ENCODE_OBJECT_FLAGS","features":[387]},{"name":"CRYPT_ENCODE_PARA","features":[387]},{"name":"CRYPT_ENCRYPT","features":[387]},{"name":"CRYPT_ENCRYPTED_PRIVATE_KEY_INFO","features":[387]},{"name":"CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[387]},{"name":"CRYPT_ENCRYPT_MESSAGE_PARA","features":[387]},{"name":"CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[387]},{"name":"CRYPT_ENROLLMENT_NAME_VALUE_PAIR","features":[387]},{"name":"CRYPT_EXCLUSIVE","features":[387]},{"name":"CRYPT_EXPORT","features":[387]},{"name":"CRYPT_EXPORTABLE","features":[387]},{"name":"CRYPT_EXPORT_KEY","features":[387]},{"name":"CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[387]},{"name":"CRYPT_FAILED","features":[387]},{"name":"CRYPT_FASTSGC","features":[387]},{"name":"CRYPT_FIND_FLAGS","features":[387]},{"name":"CRYPT_FIND_MACHINE_KEYSET_FLAG","features":[387]},{"name":"CRYPT_FIND_SILENT_KEYSET_FLAG","features":[387]},{"name":"CRYPT_FIND_USER_KEYSET_FLAG","features":[387]},{"name":"CRYPT_FIRST","features":[387]},{"name":"CRYPT_FIRST_ALG_OID_GROUP_ID","features":[387]},{"name":"CRYPT_FLAG_IPSEC","features":[387]},{"name":"CRYPT_FLAG_PCT1","features":[387]},{"name":"CRYPT_FLAG_SIGNING","features":[387]},{"name":"CRYPT_FLAG_SSL2","features":[387]},{"name":"CRYPT_FLAG_SSL3","features":[387]},{"name":"CRYPT_FLAG_TLS1","features":[387]},{"name":"CRYPT_FORCE_KEY_PROTECTION_HIGH","features":[387]},{"name":"CRYPT_FORMAT_COMMA","features":[387]},{"name":"CRYPT_FORMAT_CRLF","features":[387]},{"name":"CRYPT_FORMAT_OID","features":[387]},{"name":"CRYPT_FORMAT_RDN_CRLF","features":[387]},{"name":"CRYPT_FORMAT_RDN_REVERSE","features":[387]},{"name":"CRYPT_FORMAT_RDN_SEMICOLON","features":[387]},{"name":"CRYPT_FORMAT_RDN_UNQUOTE","features":[387]},{"name":"CRYPT_FORMAT_SEMICOLON","features":[387]},{"name":"CRYPT_FORMAT_SIMPLE","features":[387]},{"name":"CRYPT_FORMAT_STR_MULTI_LINE","features":[387]},{"name":"CRYPT_FORMAT_STR_NO_HEX","features":[387]},{"name":"CRYPT_FORMAT_X509","features":[387]},{"name":"CRYPT_GET_INSTALLED_OID_FUNC_FLAG","features":[387]},{"name":"CRYPT_GET_TIME_VALID_OBJECT_EXTRA_INFO","features":[303,387]},{"name":"CRYPT_GET_URL_FLAGS","features":[387]},{"name":"CRYPT_GET_URL_FROM_AUTH_ATTRIBUTE","features":[387]},{"name":"CRYPT_GET_URL_FROM_EXTENSION","features":[387]},{"name":"CRYPT_GET_URL_FROM_PROPERTY","features":[387]},{"name":"CRYPT_GET_URL_FROM_UNAUTH_ATTRIBUTE","features":[387]},{"name":"CRYPT_HASH_ALG_OID_GROUP_ID","features":[387]},{"name":"CRYPT_HASH_INFO","features":[387]},{"name":"CRYPT_HASH_MESSAGE_PARA","features":[387]},{"name":"CRYPT_HTTP_POST_RETRIEVAL","features":[387]},{"name":"CRYPT_IMAGE_REF","features":[387]},{"name":"CRYPT_IMAGE_REF_FLAGS","features":[387]},{"name":"CRYPT_IMAGE_REG","features":[387]},{"name":"CRYPT_IMPL_HARDWARE","features":[387]},{"name":"CRYPT_IMPL_MIXED","features":[387]},{"name":"CRYPT_IMPL_REMOVABLE","features":[387]},{"name":"CRYPT_IMPL_SOFTWARE","features":[387]},{"name":"CRYPT_IMPL_UNKNOWN","features":[387]},{"name":"CRYPT_IMPORT_KEY","features":[387]},{"name":"CRYPT_IMPORT_PUBLIC_KEY_FLAGS","features":[387]},{"name":"CRYPT_INITIATOR","features":[387]},{"name":"CRYPT_INSTALL_OID_FUNC_BEFORE_FLAG","features":[387]},{"name":"CRYPT_INSTALL_OID_INFO_BEFORE_FLAG","features":[387]},{"name":"CRYPT_INTEGER_BLOB","features":[387]},{"name":"CRYPT_INTERFACE_REG","features":[387]},{"name":"CRYPT_IPSEC_HMAC_KEY","features":[387]},{"name":"CRYPT_KDF_OID_GROUP_ID","features":[387]},{"name":"CRYPT_KEEP_TIME_VALID","features":[387]},{"name":"CRYPT_KEK","features":[387]},{"name":"CRYPT_KEYID_ALLOC_FLAG","features":[387]},{"name":"CRYPT_KEYID_DELETE_FLAG","features":[387]},{"name":"CRYPT_KEYID_MACHINE_FLAG","features":[387]},{"name":"CRYPT_KEYID_SET_NEW_FLAG","features":[387]},{"name":"CRYPT_KEY_FLAGS","features":[387]},{"name":"CRYPT_KEY_PARAM_ID","features":[387]},{"name":"CRYPT_KEY_PROV_INFO","features":[387]},{"name":"CRYPT_KEY_PROV_PARAM","features":[387]},{"name":"CRYPT_KEY_SIGN_MESSAGE_PARA","features":[387]},{"name":"CRYPT_KEY_VERIFY_MESSAGE_PARA","features":[387]},{"name":"CRYPT_KM","features":[387]},{"name":"CRYPT_LAST_ALG_OID_GROUP_ID","features":[387]},{"name":"CRYPT_LAST_OID_GROUP_ID","features":[387]},{"name":"CRYPT_LDAP_AREC_EXCLUSIVE_RETRIEVAL","features":[387]},{"name":"CRYPT_LDAP_INSERT_ENTRY_ATTRIBUTE","features":[387]},{"name":"CRYPT_LDAP_SCOPE_BASE_ONLY_RETRIEVAL","features":[387]},{"name":"CRYPT_LDAP_SIGN_RETRIEVAL","features":[387]},{"name":"CRYPT_LITTLE_ENDIAN","features":[387]},{"name":"CRYPT_LOCAL","features":[387]},{"name":"CRYPT_LOCALIZED_NAME_ENCODING_TYPE","features":[387]},{"name":"CRYPT_LOCALIZED_NAME_OID","features":[387]},{"name":"CRYPT_MAC","features":[387]},{"name":"CRYPT_MACHINE_DEFAULT","features":[387]},{"name":"CRYPT_MACHINE_KEYSET","features":[387]},{"name":"CRYPT_MASK_GEN_ALGORITHM","features":[387]},{"name":"CRYPT_MATCH_ANY_ENCODING_TYPE","features":[387]},{"name":"CRYPT_MESSAGE_BARE_CONTENT_OUT_FLAG","features":[387]},{"name":"CRYPT_MESSAGE_ENCAPSULATED_CONTENT_OUT_FLAG","features":[387]},{"name":"CRYPT_MESSAGE_KEYID_RECIPIENT_FLAG","features":[387]},{"name":"CRYPT_MESSAGE_KEYID_SIGNER_FLAG","features":[387]},{"name":"CRYPT_MESSAGE_SILENT_KEYSET_FLAG","features":[387]},{"name":"CRYPT_MIN_DEPENDENCIES","features":[387]},{"name":"CRYPT_MM","features":[387]},{"name":"CRYPT_MODE_CBC","features":[387]},{"name":"CRYPT_MODE_CBCI","features":[387]},{"name":"CRYPT_MODE_CBCOFM","features":[387]},{"name":"CRYPT_MODE_CBCOFMI","features":[387]},{"name":"CRYPT_MODE_CFB","features":[387]},{"name":"CRYPT_MODE_CFBP","features":[387]},{"name":"CRYPT_MODE_CTS","features":[387]},{"name":"CRYPT_MODE_ECB","features":[387]},{"name":"CRYPT_MODE_OFB","features":[387]},{"name":"CRYPT_MODE_OFBP","features":[387]},{"name":"CRYPT_MSG_TYPE","features":[387]},{"name":"CRYPT_NDR_ENCODING","features":[387]},{"name":"CRYPT_NEWKEYSET","features":[387]},{"name":"CRYPT_NEXT","features":[387]},{"name":"CRYPT_NOHASHOID","features":[387]},{"name":"CRYPT_NOT_MODIFIED_RETRIEVAL","features":[387]},{"name":"CRYPT_NO_AUTH_RETRIEVAL","features":[387]},{"name":"CRYPT_NO_OCSP_FAILOVER_TO_CRL_RETRIEVAL","features":[387]},{"name":"CRYPT_NO_SALT","features":[387]},{"name":"CRYPT_OAEP","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_FIRST_RESERVED_USER_NAME_TYPE","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_NAME_TYPE","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_USER_NAME_TYPE","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_PROVIDER_TABLE","features":[303,387]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_DLL_UNLOAD","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_PROCESS_EXIT","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_REASON","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SERVICE_STOP","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SYSTEM_SHUTDOWN","features":[387]},{"name":"CRYPT_OBJECT_LOCATOR_SPN_NAME_TYPE","features":[387]},{"name":"CRYPT_OBJID_TABLE","features":[387]},{"name":"CRYPT_OCSP_ONLY_RETRIEVAL","features":[387]},{"name":"CRYPT_OFFLINE_CHECK_RETRIEVAL","features":[387]},{"name":"CRYPT_OID_CREATE_COM_OBJECT_FUNC","features":[387]},{"name":"CRYPT_OID_DECODE_OBJECT_EX_FUNC","features":[387]},{"name":"CRYPT_OID_DECODE_OBJECT_FUNC","features":[387]},{"name":"CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[387]},{"name":"CRYPT_OID_ENCODE_OBJECT_EX_FUNC","features":[387]},{"name":"CRYPT_OID_ENCODE_OBJECT_FUNC","features":[387]},{"name":"CRYPT_OID_ENUM_PHYSICAL_STORE_FUNC","features":[387]},{"name":"CRYPT_OID_ENUM_SYSTEM_STORE_FUNC","features":[387]},{"name":"CRYPT_OID_EXPORT_PRIVATE_KEY_INFO_FUNC","features":[387]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[387]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[387]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FUNC","features":[387]},{"name":"CRYPT_OID_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[387]},{"name":"CRYPT_OID_FIND_LOCALIZED_NAME_FUNC","features":[387]},{"name":"CRYPT_OID_FIND_OID_INFO_FUNC","features":[387]},{"name":"CRYPT_OID_FORMAT_OBJECT_FUNC","features":[387]},{"name":"CRYPT_OID_FUNC_ENTRY","features":[387]},{"name":"CRYPT_OID_IMPORT_PRIVATE_KEY_INFO_FUNC","features":[387]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[387]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_FUNC","features":[387]},{"name":"CRYPT_OID_INFO","features":[387]},{"name":"CRYPT_OID_INFO_ALGID_KEY","features":[387]},{"name":"CRYPT_OID_INFO_CNG_ALGID_KEY","features":[387]},{"name":"CRYPT_OID_INFO_CNG_SIGN_KEY","features":[387]},{"name":"CRYPT_OID_INFO_ECC_PARAMETERS_ALGORITHM","features":[387]},{"name":"CRYPT_OID_INFO_ECC_WRAP_PARAMETERS_ALGORITHM","features":[387]},{"name":"CRYPT_OID_INFO_HASH_PARAMETERS_ALGORITHM","features":[387]},{"name":"CRYPT_OID_INFO_MGF1_PARAMETERS_ALGORITHM","features":[387]},{"name":"CRYPT_OID_INFO_NAME_KEY","features":[387]},{"name":"CRYPT_OID_INFO_NO_PARAMETERS_ALGORITHM","features":[387]},{"name":"CRYPT_OID_INFO_NO_SIGN_ALGORITHM","features":[387]},{"name":"CRYPT_OID_INFO_OAEP_PARAMETERS_ALGORITHM","features":[387]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[387]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[387]},{"name":"CRYPT_OID_INFO_OID_KEY","features":[387]},{"name":"CRYPT_OID_INFO_OID_KEY_FLAGS_MASK","features":[387]},{"name":"CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[387]},{"name":"CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[387]},{"name":"CRYPT_OID_INFO_SIGN_KEY","features":[387]},{"name":"CRYPT_OID_INHIBIT_SIGNATURE_FORMAT_FLAG","features":[387]},{"name":"CRYPT_OID_NO_NULL_ALGORITHM_PARA_FLAG","features":[387]},{"name":"CRYPT_OID_OPEN_STORE_PROV_FUNC","features":[387]},{"name":"CRYPT_OID_OPEN_SYSTEM_STORE_PROV_FUNC","features":[387]},{"name":"CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[387]},{"name":"CRYPT_OID_PUBKEY_ENCRYPT_ONLY_FLAG","features":[387]},{"name":"CRYPT_OID_PUBKEY_SIGN_ONLY_FLAG","features":[387]},{"name":"CRYPT_OID_REGISTER_PHYSICAL_STORE_FUNC","features":[387]},{"name":"CRYPT_OID_REGISTER_SYSTEM_STORE_FUNC","features":[387]},{"name":"CRYPT_OID_REGPATH","features":[387]},{"name":"CRYPT_OID_REG_DLL_VALUE_NAME","features":[387]},{"name":"CRYPT_OID_REG_ENCODING_TYPE_PREFIX","features":[387]},{"name":"CRYPT_OID_REG_FLAGS_VALUE_NAME","features":[387]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME","features":[387]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME_A","features":[387]},{"name":"CRYPT_OID_SIGN_AND_ENCODE_HASH_FUNC","features":[387]},{"name":"CRYPT_OID_SYSTEM_STORE_LOCATION_VALUE_NAME","features":[387]},{"name":"CRYPT_OID_UNREGISTER_PHYSICAL_STORE_FUNC","features":[387]},{"name":"CRYPT_OID_UNREGISTER_SYSTEM_STORE_FUNC","features":[387]},{"name":"CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[387]},{"name":"CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[387]},{"name":"CRYPT_OID_USE_PUBKEY_PARA_FOR_PKCS7_FLAG","features":[387]},{"name":"CRYPT_OID_VERIFY_CERTIFICATE_CHAIN_POLICY_FUNC","features":[387]},{"name":"CRYPT_OID_VERIFY_CTL_USAGE_FUNC","features":[387]},{"name":"CRYPT_OID_VERIFY_ENCODED_SIGNATURE_FUNC","features":[387]},{"name":"CRYPT_OID_VERIFY_REVOCATION_FUNC","features":[387]},{"name":"CRYPT_ONLINE","features":[387]},{"name":"CRYPT_OVERRIDE","features":[387]},{"name":"CRYPT_OVERWRITE","features":[387]},{"name":"CRYPT_OWF_REPL_LM_HASH","features":[387]},{"name":"CRYPT_PARAM_ASYNC_RETRIEVAL_COMPLETION","features":[387]},{"name":"CRYPT_PARAM_CANCEL_ASYNC_RETRIEVAL","features":[387]},{"name":"CRYPT_PASSWORD_CREDENTIALSA","features":[387]},{"name":"CRYPT_PASSWORD_CREDENTIALSW","features":[387]},{"name":"CRYPT_PKCS12_PBE_PARAMS","features":[387]},{"name":"CRYPT_PKCS8_EXPORT_PARAMS","features":[303,387]},{"name":"CRYPT_PKCS8_IMPORT_PARAMS","features":[303,387]},{"name":"CRYPT_POLICY_OID_GROUP_ID","features":[387]},{"name":"CRYPT_PREGEN","features":[387]},{"name":"CRYPT_PRIORITY_BOTTOM","features":[387]},{"name":"CRYPT_PRIORITY_TOP","features":[387]},{"name":"CRYPT_PRIVATE_KEY_INFO","features":[387]},{"name":"CRYPT_PROCESS_ISOLATE","features":[387]},{"name":"CRYPT_PROPERTY_REF","features":[387]},{"name":"CRYPT_PROVIDERS","features":[387]},{"name":"CRYPT_PROVIDER_REF","features":[387]},{"name":"CRYPT_PROVIDER_REFS","features":[387]},{"name":"CRYPT_PROVIDER_REG","features":[387]},{"name":"CRYPT_PROXY_CACHE_RETRIEVAL","features":[387]},{"name":"CRYPT_PSOURCE_ALGORITHM","features":[387]},{"name":"CRYPT_PSTORE","features":[387]},{"name":"CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[387]},{"name":"CRYPT_RANDOM_QUERY_STRING_RETRIEVAL","features":[387]},{"name":"CRYPT_RC2_128BIT_VERSION","features":[387]},{"name":"CRYPT_RC2_40BIT_VERSION","features":[387]},{"name":"CRYPT_RC2_56BIT_VERSION","features":[387]},{"name":"CRYPT_RC2_64BIT_VERSION","features":[387]},{"name":"CRYPT_RC2_CBC_PARAMETERS","features":[303,387]},{"name":"CRYPT_RC4_KEY_STATE","features":[387]},{"name":"CRYPT_RDN_ATTR_OID_GROUP_ID","features":[387]},{"name":"CRYPT_READ","features":[387]},{"name":"CRYPT_RECIPIENT","features":[387]},{"name":"CRYPT_REGISTER_FIRST_INDEX","features":[387]},{"name":"CRYPT_REGISTER_LAST_INDEX","features":[387]},{"name":"CRYPT_RETRIEVE_AUX_INFO","features":[303,387]},{"name":"CRYPT_RETRIEVE_MAX_ERROR_CONTENT_LENGTH","features":[387]},{"name":"CRYPT_RETRIEVE_MULTIPLE_OBJECTS","features":[387]},{"name":"CRYPT_RSAES_OAEP_PARAMETERS","features":[387]},{"name":"CRYPT_RSA_SSA_PSS_PARAMETERS","features":[387]},{"name":"CRYPT_SECRETDIGEST","features":[387]},{"name":"CRYPT_SEC_DESCR","features":[387]},{"name":"CRYPT_SEQUENCE_OF_ANY","features":[387]},{"name":"CRYPT_SERVER","features":[387]},{"name":"CRYPT_SET_HASH_PARAM","features":[387]},{"name":"CRYPT_SET_PROV_PARAM_ID","features":[387]},{"name":"CRYPT_SF","features":[387]},{"name":"CRYPT_SGC","features":[387]},{"name":"CRYPT_SGCKEY","features":[387]},{"name":"CRYPT_SGC_ENUM","features":[387]},{"name":"CRYPT_SIGN_ALG_OID_GROUP_ID","features":[387]},{"name":"CRYPT_SIGN_MESSAGE_PARA","features":[303,387]},{"name":"CRYPT_SILENT","features":[387]},{"name":"CRYPT_SMART_CARD_ROOT_INFO","features":[387]},{"name":"CRYPT_SMIME_CAPABILITIES","features":[387]},{"name":"CRYPT_SMIME_CAPABILITY","features":[387]},{"name":"CRYPT_SORTED_CTL_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[387]},{"name":"CRYPT_SSL2_FALLBACK","features":[387]},{"name":"CRYPT_STICKY_CACHE_RETRIEVAL","features":[387]},{"name":"CRYPT_STRING","features":[387]},{"name":"CRYPT_STRING_ANY","features":[387]},{"name":"CRYPT_STRING_BASE64","features":[387]},{"name":"CRYPT_STRING_BASE64HEADER","features":[387]},{"name":"CRYPT_STRING_BASE64REQUESTHEADER","features":[387]},{"name":"CRYPT_STRING_BASE64URI","features":[387]},{"name":"CRYPT_STRING_BASE64X509CRLHEADER","features":[387]},{"name":"CRYPT_STRING_BASE64_ANY","features":[387]},{"name":"CRYPT_STRING_BINARY","features":[387]},{"name":"CRYPT_STRING_ENCODEMASK","features":[387]},{"name":"CRYPT_STRING_HASHDATA","features":[387]},{"name":"CRYPT_STRING_HEX","features":[387]},{"name":"CRYPT_STRING_HEXADDR","features":[387]},{"name":"CRYPT_STRING_HEXASCII","features":[387]},{"name":"CRYPT_STRING_HEXASCIIADDR","features":[387]},{"name":"CRYPT_STRING_HEXRAW","features":[387]},{"name":"CRYPT_STRING_HEX_ANY","features":[387]},{"name":"CRYPT_STRING_NOCR","features":[387]},{"name":"CRYPT_STRING_NOCRLF","features":[387]},{"name":"CRYPT_STRING_PERCENTESCAPE","features":[387]},{"name":"CRYPT_STRING_RESERVED100","features":[387]},{"name":"CRYPT_STRING_RESERVED200","features":[387]},{"name":"CRYPT_STRING_STRICT","features":[387]},{"name":"CRYPT_SUCCEED","features":[387]},{"name":"CRYPT_TEMPLATE_OID_GROUP_ID","features":[387]},{"name":"CRYPT_TIMESTAMP_ACCURACY","features":[387]},{"name":"CRYPT_TIMESTAMP_CONTEXT","features":[303,387]},{"name":"CRYPT_TIMESTAMP_INFO","features":[303,387]},{"name":"CRYPT_TIMESTAMP_PARA","features":[303,387]},{"name":"CRYPT_TIMESTAMP_REQUEST","features":[303,387]},{"name":"CRYPT_TIMESTAMP_RESPONSE","features":[387]},{"name":"CRYPT_TIMESTAMP_RESPONSE_STATUS","features":[387]},{"name":"CRYPT_TIMESTAMP_VERSION","features":[387]},{"name":"CRYPT_TIME_STAMP_REQUEST_INFO","features":[387]},{"name":"CRYPT_TYPE2_FORMAT","features":[387]},{"name":"CRYPT_UI_PROMPT","features":[387]},{"name":"CRYPT_UM","features":[387]},{"name":"CRYPT_UNICODE_NAME_DECODE_DISABLE_IE4_UTF8_FLAG","features":[387]},{"name":"CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG","features":[387]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG","features":[387]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG","features":[387]},{"name":"CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG","features":[387]},{"name":"CRYPT_UPDATE_KEY","features":[387]},{"name":"CRYPT_URL_ARRAY","features":[387]},{"name":"CRYPT_URL_INFO","features":[387]},{"name":"CRYPT_USERDATA","features":[387]},{"name":"CRYPT_USER_DEFAULT","features":[387]},{"name":"CRYPT_USER_KEYSET","features":[387]},{"name":"CRYPT_USER_PROTECTED","features":[387]},{"name":"CRYPT_USER_PROTECTED_STRONG","features":[387]},{"name":"CRYPT_VERIFYCONTEXT","features":[387]},{"name":"CRYPT_VERIFY_CERT_FLAGS","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_CHECK_WEAK_HASH_FLAG","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_DISABLE_MD2_MD4_FLAG","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_NULL","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_RETURN_STRONG_PROPERTIES_FLAG","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_SET_STRONG_PROPERTIES_FLAG","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_STRONG_PROPERTIES_INFO","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_OCSP_BASIC_SIGNED_RESPONSE","features":[387]},{"name":"CRYPT_VERIFY_CERT_SIGN_WEAK_HASH_INFO","features":[387]},{"name":"CRYPT_VERIFY_CONTEXT_SIGNATURE","features":[387]},{"name":"CRYPT_VERIFY_DATA_HASH","features":[387]},{"name":"CRYPT_VERIFY_MESSAGE_PARA","features":[303,387]},{"name":"CRYPT_VOLATILE","features":[387]},{"name":"CRYPT_WIRE_ONLY_RETRIEVAL","features":[387]},{"name":"CRYPT_WRITE","features":[387]},{"name":"CRYPT_X931_FORMAT","features":[387]},{"name":"CRYPT_X942_COUNTER_BYTE_LENGTH","features":[387]},{"name":"CRYPT_X942_KEY_LENGTH_BYTE_LENGTH","features":[387]},{"name":"CRYPT_X942_OTHER_INFO","features":[387]},{"name":"CRYPT_XML_ALGORITHM","features":[387]},{"name":"CRYPT_XML_ALGORITHM_INFO","features":[387]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_ALGID","features":[387]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_SIGN_ALGID","features":[387]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_NAME","features":[387]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_URI","features":[387]},{"name":"CRYPT_XML_BLOB","features":[387]},{"name":"CRYPT_XML_BLOB_MAX","features":[387]},{"name":"CRYPT_XML_CHARSET","features":[387]},{"name":"CRYPT_XML_CHARSET_AUTO","features":[387]},{"name":"CRYPT_XML_CHARSET_UTF16BE","features":[387]},{"name":"CRYPT_XML_CHARSET_UTF16LE","features":[387]},{"name":"CRYPT_XML_CHARSET_UTF8","features":[387]},{"name":"CRYPT_XML_CRYPTOGRAPHIC_INTERFACE","features":[387]},{"name":"CRYPT_XML_DATA_BLOB","features":[387]},{"name":"CRYPT_XML_DATA_PROVIDER","features":[387]},{"name":"CRYPT_XML_DIGEST_REFERENCE_DATA_TRANSFORMED","features":[387]},{"name":"CRYPT_XML_DIGEST_VALUE_MAX","features":[387]},{"name":"CRYPT_XML_DOC_CTXT","features":[387]},{"name":"CRYPT_XML_E_ALGORITHM","features":[387]},{"name":"CRYPT_XML_E_BASE","features":[387]},{"name":"CRYPT_XML_E_ENCODING","features":[387]},{"name":"CRYPT_XML_E_HANDLE","features":[387]},{"name":"CRYPT_XML_E_HASH_FAILED","features":[387]},{"name":"CRYPT_XML_E_INVALID_DIGEST","features":[387]},{"name":"CRYPT_XML_E_INVALID_KEYVALUE","features":[387]},{"name":"CRYPT_XML_E_INVALID_SIGNATURE","features":[387]},{"name":"CRYPT_XML_E_LARGE","features":[387]},{"name":"CRYPT_XML_E_LAST","features":[387]},{"name":"CRYPT_XML_E_NON_UNIQUE_ID","features":[387]},{"name":"CRYPT_XML_E_OPERATION","features":[387]},{"name":"CRYPT_XML_E_SIGNER","features":[387]},{"name":"CRYPT_XML_E_SIGN_FAILED","features":[387]},{"name":"CRYPT_XML_E_TOO_MANY_SIGNATURES","features":[387]},{"name":"CRYPT_XML_E_TOO_MANY_TRANSFORMS","features":[387]},{"name":"CRYPT_XML_E_TRANSFORM","features":[387]},{"name":"CRYPT_XML_E_UNEXPECTED_XML","features":[387]},{"name":"CRYPT_XML_E_UNRESOLVED_REFERENCE","features":[387]},{"name":"CRYPT_XML_E_VERIFY_FAILED","features":[387]},{"name":"CRYPT_XML_FLAGS","features":[387]},{"name":"CRYPT_XML_FLAG_ADD_OBJECT_CREATE_COPY","features":[387]},{"name":"CRYPT_XML_FLAG_ALWAYS_RETURN_ENCODED_OBJECT","features":[387]},{"name":"CRYPT_XML_FLAG_CREATE_REFERENCE_AS_OBJECT","features":[387]},{"name":"CRYPT_XML_FLAG_DISABLE_EXTENSIONS","features":[387]},{"name":"CRYPT_XML_FLAG_ECDSA_DSIG11","features":[387]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NAME_FORMAT","features":[387]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NCNAME_FORMAT","features":[387]},{"name":"CRYPT_XML_FLAG_NO_SERIALIZE","features":[387]},{"name":"CRYPT_XML_GROUP_ID","features":[387]},{"name":"CRYPT_XML_GROUP_ID_HASH","features":[387]},{"name":"CRYPT_XML_GROUP_ID_SIGN","features":[387]},{"name":"CRYPT_XML_ID_MAX","features":[387]},{"name":"CRYPT_XML_ISSUER_SERIAL","features":[387]},{"name":"CRYPT_XML_KEYINFO_PARAM","features":[387]},{"name":"CRYPT_XML_KEYINFO_SPEC","features":[387]},{"name":"CRYPT_XML_KEYINFO_SPEC_ENCODED","features":[387]},{"name":"CRYPT_XML_KEYINFO_SPEC_NONE","features":[387]},{"name":"CRYPT_XML_KEYINFO_SPEC_PARAM","features":[387]},{"name":"CRYPT_XML_KEYINFO_TYPE","features":[387]},{"name":"CRYPT_XML_KEYINFO_TYPE_CUSTOM","features":[387]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYNAME","features":[387]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYVALUE","features":[387]},{"name":"CRYPT_XML_KEYINFO_TYPE_RETRIEVAL","features":[387]},{"name":"CRYPT_XML_KEYINFO_TYPE_X509DATA","features":[387]},{"name":"CRYPT_XML_KEY_DSA_KEY_VALUE","features":[387]},{"name":"CRYPT_XML_KEY_ECDSA_KEY_VALUE","features":[387]},{"name":"CRYPT_XML_KEY_INFO","features":[387]},{"name":"CRYPT_XML_KEY_INFO_ITEM","features":[387]},{"name":"CRYPT_XML_KEY_RSA_KEY_VALUE","features":[387]},{"name":"CRYPT_XML_KEY_VALUE","features":[387]},{"name":"CRYPT_XML_KEY_VALUE_TYPE","features":[387]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_CUSTOM","features":[387]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_DSA","features":[387]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_ECDSA","features":[387]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_RSA","features":[387]},{"name":"CRYPT_XML_OBJECT","features":[387]},{"name":"CRYPT_XML_OBJECTS_MAX","features":[387]},{"name":"CRYPT_XML_PROPERTY","features":[387]},{"name":"CRYPT_XML_PROPERTY_DOC_DECLARATION","features":[387]},{"name":"CRYPT_XML_PROPERTY_ID","features":[387]},{"name":"CRYPT_XML_PROPERTY_MAX_HEAP_SIZE","features":[387]},{"name":"CRYPT_XML_PROPERTY_MAX_SIGNATURES","features":[387]},{"name":"CRYPT_XML_PROPERTY_SIGNATURE_LOCATION","features":[387]},{"name":"CRYPT_XML_PROPERTY_XML_OUTPUT_CHARSET","features":[387]},{"name":"CRYPT_XML_REFERENCE","features":[387]},{"name":"CRYPT_XML_REFERENCES","features":[387]},{"name":"CRYPT_XML_REFERENCES_MAX","features":[387]},{"name":"CRYPT_XML_SIGNATURE","features":[387]},{"name":"CRYPT_XML_SIGNATURES_MAX","features":[387]},{"name":"CRYPT_XML_SIGNATURE_VALUE_MAX","features":[387]},{"name":"CRYPT_XML_SIGNED_INFO","features":[387]},{"name":"CRYPT_XML_SIGN_ADD_KEYVALUE","features":[387]},{"name":"CRYPT_XML_STATUS","features":[387]},{"name":"CRYPT_XML_STATUS_DIGESTING","features":[387]},{"name":"CRYPT_XML_STATUS_DIGEST_VALID","features":[387]},{"name":"CRYPT_XML_STATUS_ERROR_DIGEST_INVALID","features":[387]},{"name":"CRYPT_XML_STATUS_ERROR_KEYINFO_NOT_PARSED","features":[387]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_RESOLVED","features":[387]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_ALGORITHM","features":[387]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_TRANSFORM","features":[387]},{"name":"CRYPT_XML_STATUS_ERROR_SIGNATURE_INVALID","features":[387]},{"name":"CRYPT_XML_STATUS_ERROR_STATUS","features":[387]},{"name":"CRYPT_XML_STATUS_INFO_STATUS","features":[387]},{"name":"CRYPT_XML_STATUS_INTERNAL_REFERENCE","features":[387]},{"name":"CRYPT_XML_STATUS_KEY_AVAILABLE","features":[387]},{"name":"CRYPT_XML_STATUS_NO_ERROR","features":[387]},{"name":"CRYPT_XML_STATUS_OPENED_TO_ENCODE","features":[387]},{"name":"CRYPT_XML_STATUS_SIGNATURE_VALID","features":[387]},{"name":"CRYPT_XML_TRANSFORM_CHAIN_CONFIG","features":[387]},{"name":"CRYPT_XML_TRANSFORM_FLAGS","features":[387]},{"name":"CRYPT_XML_TRANSFORM_INFO","features":[387]},{"name":"CRYPT_XML_TRANSFORM_MAX","features":[387]},{"name":"CRYPT_XML_TRANSFORM_ON_NODESET","features":[387]},{"name":"CRYPT_XML_TRANSFORM_ON_STREAM","features":[387]},{"name":"CRYPT_XML_TRANSFORM_URI_QUERY_STRING","features":[387]},{"name":"CRYPT_XML_X509DATA","features":[387]},{"name":"CRYPT_XML_X509DATA_ITEM","features":[387]},{"name":"CRYPT_XML_X509DATA_TYPE","features":[387]},{"name":"CRYPT_XML_X509DATA_TYPE_CERTIFICATE","features":[387]},{"name":"CRYPT_XML_X509DATA_TYPE_CRL","features":[387]},{"name":"CRYPT_XML_X509DATA_TYPE_CUSTOM","features":[387]},{"name":"CRYPT_XML_X509DATA_TYPE_ISSUER_SERIAL","features":[387]},{"name":"CRYPT_XML_X509DATA_TYPE_SKI","features":[387]},{"name":"CRYPT_XML_X509DATA_TYPE_SUBJECT_NAME","features":[387]},{"name":"CRYPT_Y_ONLY","features":[387]},{"name":"CTL_ANY_SUBJECT_INFO","features":[387]},{"name":"CTL_ANY_SUBJECT_TYPE","features":[387]},{"name":"CTL_CERT_SUBJECT_TYPE","features":[387]},{"name":"CTL_CONTEXT","features":[303,387]},{"name":"CTL_ENTRY","features":[387]},{"name":"CTL_ENTRY_FROM_PROP_CHAIN_FLAG","features":[387]},{"name":"CTL_FIND_ANY","features":[387]},{"name":"CTL_FIND_EXISTING","features":[387]},{"name":"CTL_FIND_MD5_HASH","features":[387]},{"name":"CTL_FIND_NO_LIST_ID_CBDATA","features":[387]},{"name":"CTL_FIND_SAME_USAGE_FLAG","features":[387]},{"name":"CTL_FIND_SHA1_HASH","features":[387]},{"name":"CTL_FIND_SUBJECT","features":[387]},{"name":"CTL_FIND_SUBJECT_PARA","features":[303,387]},{"name":"CTL_FIND_USAGE","features":[387]},{"name":"CTL_FIND_USAGE_PARA","features":[303,387]},{"name":"CTL_INFO","features":[303,387]},{"name":"CTL_USAGE","features":[387]},{"name":"CTL_USAGE_MATCH","features":[387]},{"name":"CTL_V1","features":[387]},{"name":"CTL_VERIFY_USAGE_PARA","features":[387]},{"name":"CTL_VERIFY_USAGE_STATUS","features":[303,387]},{"name":"CUR_BLOB_VERSION","features":[387]},{"name":"CertAddCRLContextToStore","features":[303,387]},{"name":"CertAddCRLLinkToStore","features":[303,387]},{"name":"CertAddCTLContextToStore","features":[303,387]},{"name":"CertAddCTLLinkToStore","features":[303,387]},{"name":"CertAddCertificateContextToStore","features":[303,387]},{"name":"CertAddCertificateLinkToStore","features":[303,387]},{"name":"CertAddEncodedCRLToStore","features":[303,387]},{"name":"CertAddEncodedCTLToStore","features":[303,387]},{"name":"CertAddEncodedCertificateToStore","features":[303,387]},{"name":"CertAddEncodedCertificateToSystemStoreA","features":[303,387]},{"name":"CertAddEncodedCertificateToSystemStoreW","features":[303,387]},{"name":"CertAddEnhancedKeyUsageIdentifier","features":[303,387]},{"name":"CertAddRefServerOcspResponse","features":[387]},{"name":"CertAddRefServerOcspResponseContext","features":[387]},{"name":"CertAddSerializedElementToStore","features":[303,387]},{"name":"CertAddStoreToCollection","features":[303,387]},{"name":"CertAlgIdToOID","features":[387]},{"name":"CertCloseServerOcspResponse","features":[387]},{"name":"CertCloseStore","features":[303,387]},{"name":"CertCompareCertificate","features":[303,387]},{"name":"CertCompareCertificateName","features":[303,387]},{"name":"CertCompareIntegerBlob","features":[303,387]},{"name":"CertComparePublicKeyInfo","features":[303,387]},{"name":"CertControlStore","features":[303,387]},{"name":"CertCreateCRLContext","features":[303,387]},{"name":"CertCreateCTLContext","features":[303,387]},{"name":"CertCreateCTLEntryFromCertificateContextProperties","features":[303,387]},{"name":"CertCreateCertificateChainEngine","features":[303,387]},{"name":"CertCreateCertificateContext","features":[303,387]},{"name":"CertCreateContext","features":[303,387]},{"name":"CertCreateSelfSignCertificate","features":[303,387]},{"name":"CertDeleteCRLFromStore","features":[303,387]},{"name":"CertDeleteCTLFromStore","features":[303,387]},{"name":"CertDeleteCertificateFromStore","features":[303,387]},{"name":"CertDuplicateCRLContext","features":[303,387]},{"name":"CertDuplicateCTLContext","features":[303,387]},{"name":"CertDuplicateCertificateChain","features":[303,387]},{"name":"CertDuplicateCertificateContext","features":[303,387]},{"name":"CertDuplicateStore","features":[387]},{"name":"CertEnumCRLContextProperties","features":[303,387]},{"name":"CertEnumCRLsInStore","features":[303,387]},{"name":"CertEnumCTLContextProperties","features":[303,387]},{"name":"CertEnumCTLsInStore","features":[303,387]},{"name":"CertEnumCertificateContextProperties","features":[303,387]},{"name":"CertEnumCertificatesInStore","features":[303,387]},{"name":"CertEnumPhysicalStore","features":[303,387]},{"name":"CertEnumSubjectInSortedCTL","features":[303,387]},{"name":"CertEnumSystemStore","features":[303,387]},{"name":"CertEnumSystemStoreLocation","features":[303,387]},{"name":"CertFindAttribute","features":[387]},{"name":"CertFindCRLInStore","features":[303,387]},{"name":"CertFindCTLInStore","features":[303,387]},{"name":"CertFindCertificateInCRL","features":[303,387]},{"name":"CertFindCertificateInStore","features":[303,387]},{"name":"CertFindChainInStore","features":[303,387]},{"name":"CertFindExtension","features":[303,387]},{"name":"CertFindRDNAttr","features":[387]},{"name":"CertFindSubjectInCTL","features":[303,387]},{"name":"CertFindSubjectInSortedCTL","features":[303,387]},{"name":"CertFreeCRLContext","features":[303,387]},{"name":"CertFreeCTLContext","features":[303,387]},{"name":"CertFreeCertificateChain","features":[303,387]},{"name":"CertFreeCertificateChainEngine","features":[387]},{"name":"CertFreeCertificateChainList","features":[303,387]},{"name":"CertFreeCertificateContext","features":[303,387]},{"name":"CertFreeServerOcspResponseContext","features":[387]},{"name":"CertGetCRLContextProperty","features":[303,387]},{"name":"CertGetCRLFromStore","features":[303,387]},{"name":"CertGetCTLContextProperty","features":[303,387]},{"name":"CertGetCertificateChain","features":[303,387]},{"name":"CertGetCertificateContextProperty","features":[303,387]},{"name":"CertGetEnhancedKeyUsage","features":[303,387]},{"name":"CertGetIntendedKeyUsage","features":[303,387]},{"name":"CertGetIssuerCertificateFromStore","features":[303,387]},{"name":"CertGetNameStringA","features":[303,387]},{"name":"CertGetNameStringW","features":[303,387]},{"name":"CertGetPublicKeyLength","features":[387]},{"name":"CertGetServerOcspResponseContext","features":[387]},{"name":"CertGetStoreProperty","features":[303,387]},{"name":"CertGetSubjectCertificateFromStore","features":[303,387]},{"name":"CertGetValidUsages","features":[303,387]},{"name":"CertIsRDNAttrsInCertificateName","features":[303,387]},{"name":"CertIsStrongHashToSign","features":[303,387]},{"name":"CertIsValidCRLForCertificate","features":[303,387]},{"name":"CertIsWeakHash","features":[303,387]},{"name":"CertKeyType","features":[387]},{"name":"CertNameToStrA","features":[387]},{"name":"CertNameToStrW","features":[387]},{"name":"CertOIDToAlgId","features":[387]},{"name":"CertOpenServerOcspResponse","features":[303,387]},{"name":"CertOpenStore","features":[387]},{"name":"CertOpenSystemStoreA","features":[387]},{"name":"CertOpenSystemStoreW","features":[387]},{"name":"CertRDNValueToStrA","features":[387]},{"name":"CertRDNValueToStrW","features":[387]},{"name":"CertRegisterPhysicalStore","features":[303,387]},{"name":"CertRegisterSystemStore","features":[303,387]},{"name":"CertRemoveEnhancedKeyUsageIdentifier","features":[303,387]},{"name":"CertRemoveStoreFromCollection","features":[387]},{"name":"CertResyncCertificateChainEngine","features":[303,387]},{"name":"CertRetrieveLogoOrBiometricInfo","features":[303,387]},{"name":"CertSaveStore","features":[303,387]},{"name":"CertSelectCertificateChains","features":[303,387]},{"name":"CertSerializeCRLStoreElement","features":[303,387]},{"name":"CertSerializeCTLStoreElement","features":[303,387]},{"name":"CertSerializeCertificateStoreElement","features":[303,387]},{"name":"CertSetCRLContextProperty","features":[303,387]},{"name":"CertSetCTLContextProperty","features":[303,387]},{"name":"CertSetCertificateContextPropertiesFromCTLEntry","features":[303,387]},{"name":"CertSetCertificateContextProperty","features":[303,387]},{"name":"CertSetEnhancedKeyUsage","features":[303,387]},{"name":"CertSetStoreProperty","features":[303,387]},{"name":"CertStrToNameA","features":[303,387]},{"name":"CertStrToNameW","features":[303,387]},{"name":"CertUnregisterPhysicalStore","features":[303,387]},{"name":"CertUnregisterSystemStore","features":[303,387]},{"name":"CertVerifyCRLRevocation","features":[303,387]},{"name":"CertVerifyCRLTimeValidity","features":[303,387]},{"name":"CertVerifyCTLUsage","features":[303,387]},{"name":"CertVerifyCertificateChainPolicy","features":[303,387]},{"name":"CertVerifyRevocation","features":[303,387]},{"name":"CertVerifySubjectCertificateContext","features":[303,387]},{"name":"CertVerifyTimeValidity","features":[303,387]},{"name":"CertVerifyValidityNesting","features":[303,387]},{"name":"CloseCryptoHandle","features":[387]},{"name":"CryptAcquireCertificatePrivateKey","features":[303,387]},{"name":"CryptAcquireContextA","features":[303,387]},{"name":"CryptAcquireContextW","features":[303,387]},{"name":"CryptBinaryToStringA","features":[303,387]},{"name":"CryptBinaryToStringW","features":[303,387]},{"name":"CryptCloseAsyncHandle","features":[303,387]},{"name":"CryptContextAddRef","features":[303,387]},{"name":"CryptCreateAsyncHandle","features":[303,387]},{"name":"CryptCreateHash","features":[303,387]},{"name":"CryptCreateKeyIdentifierFromCSP","features":[303,387]},{"name":"CryptDecodeMessage","features":[303,387]},{"name":"CryptDecodeObject","features":[303,387]},{"name":"CryptDecodeObjectEx","features":[303,387]},{"name":"CryptDecrypt","features":[303,387]},{"name":"CryptDecryptAndVerifyMessageSignature","features":[303,387]},{"name":"CryptDecryptMessage","features":[303,387]},{"name":"CryptDeriveKey","features":[303,387]},{"name":"CryptDestroyHash","features":[303,387]},{"name":"CryptDestroyKey","features":[303,387]},{"name":"CryptDuplicateHash","features":[303,387]},{"name":"CryptDuplicateKey","features":[303,387]},{"name":"CryptEncodeObject","features":[303,387]},{"name":"CryptEncodeObjectEx","features":[303,387]},{"name":"CryptEncrypt","features":[303,387]},{"name":"CryptEncryptMessage","features":[303,387]},{"name":"CryptEnumKeyIdentifierProperties","features":[303,387]},{"name":"CryptEnumOIDFunction","features":[303,387]},{"name":"CryptEnumOIDInfo","features":[303,387]},{"name":"CryptEnumProviderTypesA","features":[303,387]},{"name":"CryptEnumProviderTypesW","features":[303,387]},{"name":"CryptEnumProvidersA","features":[303,387]},{"name":"CryptEnumProvidersW","features":[303,387]},{"name":"CryptExportKey","features":[303,387]},{"name":"CryptExportPKCS8","features":[303,387]},{"name":"CryptExportPublicKeyInfo","features":[303,387]},{"name":"CryptExportPublicKeyInfoEx","features":[303,387]},{"name":"CryptExportPublicKeyInfoFromBCryptKeyHandle","features":[303,387]},{"name":"CryptFindCertificateKeyProvInfo","features":[303,387]},{"name":"CryptFindLocalizedName","features":[387]},{"name":"CryptFindOIDInfo","features":[387]},{"name":"CryptFormatObject","features":[303,387]},{"name":"CryptFreeOIDFunctionAddress","features":[303,387]},{"name":"CryptGenKey","features":[303,387]},{"name":"CryptGenRandom","features":[303,387]},{"name":"CryptGetAsyncParam","features":[303,387]},{"name":"CryptGetDefaultOIDDllList","features":[303,387]},{"name":"CryptGetDefaultOIDFunctionAddress","features":[303,387]},{"name":"CryptGetDefaultProviderA","features":[303,387]},{"name":"CryptGetDefaultProviderW","features":[303,387]},{"name":"CryptGetHashParam","features":[303,387]},{"name":"CryptGetKeyIdentifierProperty","features":[303,387]},{"name":"CryptGetKeyParam","features":[303,387]},{"name":"CryptGetMessageCertificates","features":[387]},{"name":"CryptGetMessageSignerCount","features":[387]},{"name":"CryptGetOIDFunctionAddress","features":[303,387]},{"name":"CryptGetOIDFunctionValue","features":[303,387]},{"name":"CryptGetObjectUrl","features":[303,387]},{"name":"CryptGetProvParam","features":[303,387]},{"name":"CryptGetUserKey","features":[303,387]},{"name":"CryptHashCertificate","features":[303,387]},{"name":"CryptHashCertificate2","features":[303,387]},{"name":"CryptHashData","features":[303,387]},{"name":"CryptHashMessage","features":[303,387]},{"name":"CryptHashPublicKeyInfo","features":[303,387]},{"name":"CryptHashSessionKey","features":[303,387]},{"name":"CryptHashToBeSigned","features":[303,387]},{"name":"CryptImportKey","features":[303,387]},{"name":"CryptImportPKCS8","features":[303,387]},{"name":"CryptImportPublicKeyInfo","features":[303,387]},{"name":"CryptImportPublicKeyInfoEx","features":[303,387]},{"name":"CryptImportPublicKeyInfoEx2","features":[303,387]},{"name":"CryptInitOIDFunctionSet","features":[387]},{"name":"CryptInstallCancelRetrieval","features":[303,387]},{"name":"CryptInstallDefaultContext","features":[303,387]},{"name":"CryptInstallOIDFunctionAddress","features":[303,387]},{"name":"CryptMemAlloc","features":[387]},{"name":"CryptMemFree","features":[387]},{"name":"CryptMemRealloc","features":[387]},{"name":"CryptMsgCalculateEncodedLength","features":[387]},{"name":"CryptMsgClose","features":[303,387]},{"name":"CryptMsgControl","features":[303,387]},{"name":"CryptMsgCountersign","features":[303,387]},{"name":"CryptMsgCountersignEncoded","features":[303,387]},{"name":"CryptMsgDuplicate","features":[387]},{"name":"CryptMsgEncodeAndSignCTL","features":[303,387]},{"name":"CryptMsgGetAndVerifySigner","features":[303,387]},{"name":"CryptMsgGetParam","features":[303,387]},{"name":"CryptMsgOpenToDecode","features":[303,387]},{"name":"CryptMsgOpenToEncode","features":[303,387]},{"name":"CryptMsgSignCTL","features":[303,387]},{"name":"CryptMsgUpdate","features":[303,387]},{"name":"CryptMsgVerifyCountersignatureEncoded","features":[303,387]},{"name":"CryptMsgVerifyCountersignatureEncodedEx","features":[303,387]},{"name":"CryptProtectData","features":[303,387]},{"name":"CryptProtectMemory","features":[303,387]},{"name":"CryptQueryObject","features":[303,387]},{"name":"CryptRegisterDefaultOIDFunction","features":[303,387]},{"name":"CryptRegisterOIDFunction","features":[303,387]},{"name":"CryptRegisterOIDInfo","features":[303,387]},{"name":"CryptReleaseContext","features":[303,387]},{"name":"CryptRetrieveObjectByUrlA","features":[303,387]},{"name":"CryptRetrieveObjectByUrlW","features":[303,387]},{"name":"CryptRetrieveTimeStamp","features":[303,387]},{"name":"CryptSetAsyncParam","features":[303,387]},{"name":"CryptSetHashParam","features":[303,387]},{"name":"CryptSetKeyIdentifierProperty","features":[303,387]},{"name":"CryptSetKeyParam","features":[303,387]},{"name":"CryptSetOIDFunctionValue","features":[303,387,364]},{"name":"CryptSetProvParam","features":[303,387]},{"name":"CryptSetProviderA","features":[303,387]},{"name":"CryptSetProviderExA","features":[303,387]},{"name":"CryptSetProviderExW","features":[303,387]},{"name":"CryptSetProviderW","features":[303,387]},{"name":"CryptSignAndEncodeCertificate","features":[303,387]},{"name":"CryptSignAndEncryptMessage","features":[303,387]},{"name":"CryptSignCertificate","features":[303,387]},{"name":"CryptSignHashA","features":[303,387]},{"name":"CryptSignHashW","features":[303,387]},{"name":"CryptSignMessage","features":[303,387]},{"name":"CryptSignMessageWithKey","features":[303,387]},{"name":"CryptStringToBinaryA","features":[303,387]},{"name":"CryptStringToBinaryW","features":[303,387]},{"name":"CryptUninstallCancelRetrieval","features":[303,387]},{"name":"CryptUninstallDefaultContext","features":[303,387]},{"name":"CryptUnprotectData","features":[303,387]},{"name":"CryptUnprotectMemory","features":[303,387]},{"name":"CryptUnregisterDefaultOIDFunction","features":[303,387]},{"name":"CryptUnregisterOIDFunction","features":[303,387]},{"name":"CryptUnregisterOIDInfo","features":[303,387]},{"name":"CryptUpdateProtectedState","features":[303,387]},{"name":"CryptVerifyCertificateSignature","features":[303,387]},{"name":"CryptVerifyCertificateSignatureEx","features":[303,387]},{"name":"CryptVerifyDetachedMessageHash","features":[303,387]},{"name":"CryptVerifyDetachedMessageSignature","features":[303,387]},{"name":"CryptVerifyMessageHash","features":[303,387]},{"name":"CryptVerifyMessageSignature","features":[303,387]},{"name":"CryptVerifyMessageSignatureWithKey","features":[303,387]},{"name":"CryptVerifySignatureA","features":[303,387]},{"name":"CryptVerifySignatureW","features":[303,387]},{"name":"CryptVerifyTimeStampSignature","features":[303,387]},{"name":"CryptXmlAddObject","features":[387]},{"name":"CryptXmlClose","features":[387]},{"name":"CryptXmlCreateReference","features":[387]},{"name":"CryptXmlDigestReference","features":[387]},{"name":"CryptXmlDllCloseDigest","features":[387]},{"name":"CryptXmlDllCreateDigest","features":[387]},{"name":"CryptXmlDllCreateKey","features":[387]},{"name":"CryptXmlDllDigestData","features":[387]},{"name":"CryptXmlDllEncodeAlgorithm","features":[387]},{"name":"CryptXmlDllEncodeKeyValue","features":[387]},{"name":"CryptXmlDllFinalizeDigest","features":[387]},{"name":"CryptXmlDllGetAlgorithmInfo","features":[387]},{"name":"CryptXmlDllGetInterface","features":[387]},{"name":"CryptXmlDllSignData","features":[387]},{"name":"CryptXmlDllVerifySignature","features":[387]},{"name":"CryptXmlEncode","features":[387]},{"name":"CryptXmlEnumAlgorithmInfo","features":[303,387]},{"name":"CryptXmlFindAlgorithmInfo","features":[387]},{"name":"CryptXmlGetAlgorithmInfo","features":[387]},{"name":"CryptXmlGetDocContext","features":[387]},{"name":"CryptXmlGetReference","features":[387]},{"name":"CryptXmlGetSignature","features":[387]},{"name":"CryptXmlGetStatus","features":[387]},{"name":"CryptXmlGetTransforms","features":[387]},{"name":"CryptXmlImportPublicKey","features":[387]},{"name":"CryptXmlOpenToDecode","features":[387]},{"name":"CryptXmlOpenToEncode","features":[387]},{"name":"CryptXmlSetHMACSecret","features":[387]},{"name":"CryptXmlSign","features":[387]},{"name":"CryptXmlVerifySignature","features":[387]},{"name":"DSAFIPSVERSION_ENUM","features":[387]},{"name":"DSA_FIPS186_2","features":[387]},{"name":"DSA_FIPS186_3","features":[387]},{"name":"DSA_HASH_ALGORITHM_SHA1","features":[387]},{"name":"DSA_HASH_ALGORITHM_SHA256","features":[387]},{"name":"DSA_HASH_ALGORITHM_SHA512","features":[387]},{"name":"DSSSEED","features":[387]},{"name":"Decrypt","features":[303,387]},{"name":"Direction","features":[387]},{"name":"DirectionDecrypt","features":[387]},{"name":"DirectionEncrypt","features":[387]},{"name":"ECC_CMS_SHARED_INFO","features":[387]},{"name":"ECC_CURVE_ALG_ID_ENUM","features":[387]},{"name":"ECC_CURVE_TYPE_ENUM","features":[387]},{"name":"ENDPOINTADDRESS","features":[387]},{"name":"ENDPOINTADDRESS2","features":[387]},{"name":"ENUM_CEPSETUPPROP_AUTHENTICATION","features":[387]},{"name":"ENUM_CEPSETUPPROP_CAINFORMATION","features":[387]},{"name":"ENUM_CEPSETUPPROP_CHALLENGEURL","features":[387]},{"name":"ENUM_CEPSETUPPROP_EXCHANGEKEYINFORMATION","features":[387]},{"name":"ENUM_CEPSETUPPROP_KEYBASED_RENEWAL","features":[387]},{"name":"ENUM_CEPSETUPPROP_MSCEPURL","features":[387]},{"name":"ENUM_CEPSETUPPROP_RANAME_CITY","features":[387]},{"name":"ENUM_CEPSETUPPROP_RANAME_CN","features":[387]},{"name":"ENUM_CEPSETUPPROP_RANAME_COMPANY","features":[387]},{"name":"ENUM_CEPSETUPPROP_RANAME_COUNTRY","features":[387]},{"name":"ENUM_CEPSETUPPROP_RANAME_DEPT","features":[387]},{"name":"ENUM_CEPSETUPPROP_RANAME_EMAIL","features":[387]},{"name":"ENUM_CEPSETUPPROP_RANAME_STATE","features":[387]},{"name":"ENUM_CEPSETUPPROP_SIGNINGKEYINFORMATION","features":[387]},{"name":"ENUM_CEPSETUPPROP_SSLCERTHASH","features":[387]},{"name":"ENUM_CEPSETUPPROP_URL","features":[387]},{"name":"ENUM_CEPSETUPPROP_USECHALLENGE","features":[387]},{"name":"ENUM_CEPSETUPPROP_USELOCALSYSTEM","features":[387]},{"name":"ENUM_CESSETUPPROP_ALLOW_KEYBASED_RENEWAL","features":[387]},{"name":"ENUM_CESSETUPPROP_AUTHENTICATION","features":[387]},{"name":"ENUM_CESSETUPPROP_CACONFIG","features":[387]},{"name":"ENUM_CESSETUPPROP_RENEWALONLY","features":[387]},{"name":"ENUM_CESSETUPPROP_SSLCERTHASH","features":[387]},{"name":"ENUM_CESSETUPPROP_URL","features":[387]},{"name":"ENUM_CESSETUPPROP_USE_IISAPPPOOLIDENTITY","features":[387]},{"name":"ENUM_SETUPPROP_CADSSUFFIX","features":[387]},{"name":"ENUM_SETUPPROP_CAKEYINFORMATION","features":[387]},{"name":"ENUM_SETUPPROP_CANAME","features":[387]},{"name":"ENUM_SETUPPROP_CATYPE","features":[387]},{"name":"ENUM_SETUPPROP_DATABASEDIRECTORY","features":[387]},{"name":"ENUM_SETUPPROP_EXPIRATIONDATE","features":[387]},{"name":"ENUM_SETUPPROP_INTERACTIVE","features":[387]},{"name":"ENUM_SETUPPROP_INVALID","features":[387]},{"name":"ENUM_SETUPPROP_LOGDIRECTORY","features":[387]},{"name":"ENUM_SETUPPROP_PARENTCAMACHINE","features":[387]},{"name":"ENUM_SETUPPROP_PARENTCANAME","features":[387]},{"name":"ENUM_SETUPPROP_PRESERVEDATABASE","features":[387]},{"name":"ENUM_SETUPPROP_REQUESTFILE","features":[387]},{"name":"ENUM_SETUPPROP_SHAREDFOLDER","features":[387]},{"name":"ENUM_SETUPPROP_VALIDITYPERIOD","features":[387]},{"name":"ENUM_SETUPPROP_VALIDITYPERIODUNIT","features":[387]},{"name":"ENUM_SETUPPROP_WEBCAMACHINE","features":[387]},{"name":"ENUM_SETUPPROP_WEBCANAME","features":[387]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_PARA","features":[387]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[387]},{"name":"EXPORT_PRIVATE_KEYS","features":[387]},{"name":"EXPO_OFFLOAD_FUNC_NAME","features":[387]},{"name":"EXPO_OFFLOAD_REG_VALUE","features":[387]},{"name":"E_ICARD_ARGUMENT","features":[387]},{"name":"E_ICARD_COMMUNICATION","features":[387]},{"name":"E_ICARD_DATA_ACCESS","features":[387]},{"name":"E_ICARD_EXPORT","features":[387]},{"name":"E_ICARD_FAIL","features":[387]},{"name":"E_ICARD_FAILED_REQUIRED_CLAIMS","features":[387]},{"name":"E_ICARD_IDENTITY","features":[387]},{"name":"E_ICARD_IMPORT","features":[387]},{"name":"E_ICARD_INFORMATIONCARD","features":[387]},{"name":"E_ICARD_INVALID_PROOF_KEY","features":[387]},{"name":"E_ICARD_LOGOVALIDATION","features":[387]},{"name":"E_ICARD_MISSING_APPLIESTO","features":[387]},{"name":"E_ICARD_PASSWORDVALIDATION","features":[387]},{"name":"E_ICARD_POLICY","features":[387]},{"name":"E_ICARD_PROCESSDIED","features":[387]},{"name":"E_ICARD_REFRESH_REQUIRED","features":[387]},{"name":"E_ICARD_REQUEST","features":[387]},{"name":"E_ICARD_SERVICE","features":[387]},{"name":"E_ICARD_SERVICEBUSY","features":[387]},{"name":"E_ICARD_SHUTTINGDOWN","features":[387]},{"name":"E_ICARD_STOREKEY","features":[387]},{"name":"E_ICARD_STORE_IMPORT","features":[387]},{"name":"E_ICARD_TOKENCREATION","features":[387]},{"name":"E_ICARD_TRUSTEXCHANGE","features":[387]},{"name":"E_ICARD_UI_INITIALIZATION","features":[387]},{"name":"E_ICARD_UNKNOWN_REFERENCE","features":[387]},{"name":"E_ICARD_UNTRUSTED","features":[387]},{"name":"E_ICARD_USERCANCELLED","features":[387]},{"name":"Encrypt","features":[303,387]},{"name":"FindCertsByIssuer","features":[387]},{"name":"FreeToken","features":[303,387]},{"name":"GENERIC_XML_TOKEN","features":[303,387]},{"name":"GenerateDerivedKey","features":[387]},{"name":"GetBrowserToken","features":[387]},{"name":"GetCryptoTransform","features":[387]},{"name":"GetKeyedHash","features":[387]},{"name":"GetToken","features":[303,387]},{"name":"HASHALGORITHM_ENUM","features":[387]},{"name":"HCERTCHAINENGINE","features":[387]},{"name":"HCERTSTORE","features":[387]},{"name":"HCERTSTOREPROV","features":[387]},{"name":"HCRYPTASYNC","features":[387]},{"name":"HCRYPTPROV_LEGACY","features":[387]},{"name":"HCRYPTPROV_OR_NCRYPT_KEY_HANDLE","features":[387]},{"name":"HMAC_INFO","features":[387]},{"name":"HP_ALGID","features":[387]},{"name":"HP_HASHSIZE","features":[387]},{"name":"HP_HASHVAL","features":[387]},{"name":"HP_HMAC_INFO","features":[387]},{"name":"HP_TLS1PRF_LABEL","features":[387]},{"name":"HP_TLS1PRF_SEED","features":[387]},{"name":"HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE","features":[387]},{"name":"HTTPSPolicyCallbackData","features":[387]},{"name":"HandleType","features":[387]},{"name":"HashCore","features":[387]},{"name":"HashFinal","features":[387]},{"name":"ICertSrvSetup","features":[387,354]},{"name":"ICertSrvSetupKeyInformation","features":[387,354]},{"name":"ICertSrvSetupKeyInformationCollection","features":[387,354]},{"name":"ICertificateEnrollmentPolicyServerSetup","features":[387,354]},{"name":"ICertificateEnrollmentServerSetup","features":[387,354]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_1","features":[387]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_2","features":[387]},{"name":"IFX_RSA_KEYGEN_VUL_NOT_AFFECTED","features":[387]},{"name":"IMSCEPSetup","features":[387,354]},{"name":"INFORMATIONCARD_ASYMMETRIC_CRYPTO_PARAMETERS","features":[387]},{"name":"INFORMATIONCARD_CRYPTO_HANDLE","features":[387]},{"name":"INFORMATIONCARD_HASH_CRYPTO_PARAMETERS","features":[303,387]},{"name":"INFORMATIONCARD_SYMMETRIC_CRYPTO_PARAMETERS","features":[387]},{"name":"INFORMATIONCARD_TRANSFORM_CRYPTO_PARAMETERS","features":[303,387]},{"name":"INTERNATIONAL_USAGE","features":[387]},{"name":"ImportInformationCard","features":[387]},{"name":"KDF_ALGORITHMID","features":[387]},{"name":"KDF_CONTEXT","features":[387]},{"name":"KDF_GENERIC_PARAMETER","features":[387]},{"name":"KDF_HASH_ALGORITHM","features":[387]},{"name":"KDF_HKDF_INFO","features":[387]},{"name":"KDF_HKDF_SALT","features":[387]},{"name":"KDF_HMAC_KEY","features":[387]},{"name":"KDF_ITERATION_COUNT","features":[387]},{"name":"KDF_KEYBITLENGTH","features":[387]},{"name":"KDF_LABEL","features":[387]},{"name":"KDF_PARTYUINFO","features":[387]},{"name":"KDF_PARTYVINFO","features":[387]},{"name":"KDF_SALT","features":[387]},{"name":"KDF_SECRET_APPEND","features":[387]},{"name":"KDF_SECRET_HANDLE","features":[387]},{"name":"KDF_SECRET_PREPEND","features":[387]},{"name":"KDF_SUPPPRIVINFO","features":[387]},{"name":"KDF_SUPPPUBINFO","features":[387]},{"name":"KDF_TLS_PRF_LABEL","features":[387]},{"name":"KDF_TLS_PRF_PROTOCOL","features":[387]},{"name":"KDF_TLS_PRF_SEED","features":[387]},{"name":"KDF_USE_SECRET_AS_HMAC_KEY_FLAG","features":[387]},{"name":"KEYSTATEBLOB","features":[387]},{"name":"KEY_LENGTH_MASK","features":[387]},{"name":"KEY_TYPE_SUBTYPE","features":[387]},{"name":"KP_ADMIN_PIN","features":[387]},{"name":"KP_ALGID","features":[387]},{"name":"KP_BLOCKLEN","features":[387]},{"name":"KP_CERTIFICATE","features":[387]},{"name":"KP_CLEAR_KEY","features":[387]},{"name":"KP_CLIENT_RANDOM","features":[387]},{"name":"KP_CMS_DH_KEY_INFO","features":[387]},{"name":"KP_CMS_KEY_INFO","features":[387]},{"name":"KP_EFFECTIVE_KEYLEN","features":[387]},{"name":"KP_G","features":[387]},{"name":"KP_GET_USE_COUNT","features":[387]},{"name":"KP_HIGHEST_VERSION","features":[387]},{"name":"KP_INFO","features":[387]},{"name":"KP_IV","features":[387]},{"name":"KP_KEYEXCHANGE_PIN","features":[387]},{"name":"KP_KEYLEN","features":[387]},{"name":"KP_KEYVAL","features":[387]},{"name":"KP_MODE","features":[387]},{"name":"KP_MODE_BITS","features":[387]},{"name":"KP_OAEP_PARAMS","features":[387]},{"name":"KP_P","features":[387]},{"name":"KP_PADDING","features":[387]},{"name":"KP_PERMISSIONS","features":[387]},{"name":"KP_PIN_ID","features":[387]},{"name":"KP_PIN_INFO","features":[387]},{"name":"KP_PRECOMP_MD5","features":[387]},{"name":"KP_PRECOMP_SHA","features":[387]},{"name":"KP_PREHASH","features":[387]},{"name":"KP_PUB_EX_LEN","features":[387]},{"name":"KP_PUB_EX_VAL","features":[387]},{"name":"KP_PUB_PARAMS","features":[387]},{"name":"KP_Q","features":[387]},{"name":"KP_RA","features":[387]},{"name":"KP_RB","features":[387]},{"name":"KP_ROUNDS","features":[387]},{"name":"KP_RP","features":[387]},{"name":"KP_SALT","features":[387]},{"name":"KP_SALT_EX","features":[387]},{"name":"KP_SCHANNEL_ALG","features":[387]},{"name":"KP_SERVER_RANDOM","features":[387]},{"name":"KP_SIGNATURE_PIN","features":[387]},{"name":"KP_VERIFY_PARAMS","features":[387]},{"name":"KP_X","features":[387]},{"name":"KP_Y","features":[387]},{"name":"KeyTypeHardware","features":[387]},{"name":"KeyTypeOther","features":[387]},{"name":"KeyTypePassport","features":[387]},{"name":"KeyTypePassportRemote","features":[387]},{"name":"KeyTypePassportSmartCard","features":[387]},{"name":"KeyTypePhysicalSmartCard","features":[387]},{"name":"KeyTypeSelfSigned","features":[387]},{"name":"KeyTypeSoftware","features":[387]},{"name":"KeyTypeVirtualSmartCard","features":[387]},{"name":"LEGACY_DH_PRIVATE_BLOB","features":[387]},{"name":"LEGACY_DH_PUBLIC_BLOB","features":[387]},{"name":"LEGACY_DSA_PRIVATE_BLOB","features":[387]},{"name":"LEGACY_DSA_PUBLIC_BLOB","features":[387]},{"name":"LEGACY_DSA_V2_PRIVATE_BLOB","features":[387]},{"name":"LEGACY_DSA_V2_PUBLIC_BLOB","features":[387]},{"name":"LEGACY_RSAPRIVATE_BLOB","features":[387]},{"name":"LEGACY_RSAPUBLIC_BLOB","features":[387]},{"name":"MAXUIDLEN","features":[387]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_CHECK_APPLICATION_ROOT_FLAG","features":[387]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_DISABLE_FLIGHT_ROOT_FLAG","features":[387]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_ENABLE_TEST_ROOT_FLAG","features":[387]},{"name":"MSCEPSetupProperty","features":[387]},{"name":"MS_DEF_DH_SCHANNEL_PROV","features":[387]},{"name":"MS_DEF_DH_SCHANNEL_PROV_A","features":[387]},{"name":"MS_DEF_DH_SCHANNEL_PROV_W","features":[387]},{"name":"MS_DEF_DSS_DH_PROV","features":[387]},{"name":"MS_DEF_DSS_DH_PROV_A","features":[387]},{"name":"MS_DEF_DSS_DH_PROV_W","features":[387]},{"name":"MS_DEF_DSS_PROV","features":[387]},{"name":"MS_DEF_DSS_PROV_A","features":[387]},{"name":"MS_DEF_DSS_PROV_W","features":[387]},{"name":"MS_DEF_PROV","features":[387]},{"name":"MS_DEF_PROV_A","features":[387]},{"name":"MS_DEF_PROV_W","features":[387]},{"name":"MS_DEF_RSA_SCHANNEL_PROV","features":[387]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_A","features":[387]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_W","features":[387]},{"name":"MS_DEF_RSA_SIG_PROV","features":[387]},{"name":"MS_DEF_RSA_SIG_PROV_A","features":[387]},{"name":"MS_DEF_RSA_SIG_PROV_W","features":[387]},{"name":"MS_ENHANCED_PROV","features":[387]},{"name":"MS_ENHANCED_PROV_A","features":[387]},{"name":"MS_ENHANCED_PROV_W","features":[387]},{"name":"MS_ENH_DSS_DH_PROV","features":[387]},{"name":"MS_ENH_DSS_DH_PROV_A","features":[387]},{"name":"MS_ENH_DSS_DH_PROV_W","features":[387]},{"name":"MS_ENH_RSA_AES_PROV","features":[387]},{"name":"MS_ENH_RSA_AES_PROV_A","features":[387]},{"name":"MS_ENH_RSA_AES_PROV_W","features":[387]},{"name":"MS_ENH_RSA_AES_PROV_XP","features":[387]},{"name":"MS_ENH_RSA_AES_PROV_XP_A","features":[387]},{"name":"MS_ENH_RSA_AES_PROV_XP_W","features":[387]},{"name":"MS_KEY_PROTECTION_PROVIDER","features":[387]},{"name":"MS_KEY_STORAGE_PROVIDER","features":[387]},{"name":"MS_NGC_KEY_STORAGE_PROVIDER","features":[387]},{"name":"MS_PLATFORM_CRYPTO_PROVIDER","features":[387]},{"name":"MS_PLATFORM_KEY_STORAGE_PROVIDER","features":[387]},{"name":"MS_PRIMITIVE_PROVIDER","features":[387]},{"name":"MS_SCARD_PROV","features":[387]},{"name":"MS_SCARD_PROV_A","features":[387]},{"name":"MS_SCARD_PROV_W","features":[387]},{"name":"MS_SMART_CARD_KEY_STORAGE_PROVIDER","features":[387]},{"name":"MS_STRONG_PROV","features":[387]},{"name":"MS_STRONG_PROV_A","features":[387]},{"name":"MS_STRONG_PROV_W","features":[387]},{"name":"ManageCardSpace","features":[387]},{"name":"NCRYPTBUFFER_ATTESTATIONSTATEMENT_BLOB","features":[387]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_CHALLENGE_REQUIRED","features":[387]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_TYPE","features":[387]},{"name":"NCRYPTBUFFER_CERT_BLOB","features":[387]},{"name":"NCRYPTBUFFER_CLAIM_IDBINDING_NONCE","features":[387]},{"name":"NCRYPTBUFFER_CLAIM_KEYATTESTATION_NONCE","features":[387]},{"name":"NCRYPTBUFFER_DATA","features":[387]},{"name":"NCRYPTBUFFER_ECC_CURVE_NAME","features":[387]},{"name":"NCRYPTBUFFER_ECC_PARAMETERS","features":[387]},{"name":"NCRYPTBUFFER_EMPTY","features":[387]},{"name":"NCRYPTBUFFER_KEY_PROPERTY_FLAGS","features":[387]},{"name":"NCRYPTBUFFER_PKCS_ALG_ID","features":[387]},{"name":"NCRYPTBUFFER_PKCS_ALG_OID","features":[387]},{"name":"NCRYPTBUFFER_PKCS_ALG_PARAM","features":[387]},{"name":"NCRYPTBUFFER_PKCS_ATTRS","features":[387]},{"name":"NCRYPTBUFFER_PKCS_KEY_NAME","features":[387]},{"name":"NCRYPTBUFFER_PKCS_OID","features":[387]},{"name":"NCRYPTBUFFER_PKCS_SECRET","features":[387]},{"name":"NCRYPTBUFFER_PROTECTION_DESCRIPTOR_STRING","features":[387]},{"name":"NCRYPTBUFFER_PROTECTION_FLAGS","features":[387]},{"name":"NCRYPTBUFFER_SSL_CLEAR_KEY","features":[387]},{"name":"NCRYPTBUFFER_SSL_CLIENT_RANDOM","features":[387]},{"name":"NCRYPTBUFFER_SSL_HIGHEST_VERSION","features":[387]},{"name":"NCRYPTBUFFER_SSL_KEY_ARG_DATA","features":[387]},{"name":"NCRYPTBUFFER_SSL_SERVER_RANDOM","features":[387]},{"name":"NCRYPTBUFFER_SSL_SESSION_HASH","features":[387]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_NONCE","features":[387]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_PCR_MASK","features":[387]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_STATIC_CREATE","features":[387]},{"name":"NCRYPTBUFFER_TPM_SEAL_NO_DA_PROTECTION","features":[387]},{"name":"NCRYPTBUFFER_TPM_SEAL_PASSWORD","features":[387]},{"name":"NCRYPTBUFFER_TPM_SEAL_POLICYINFO","features":[387]},{"name":"NCRYPTBUFFER_TPM_SEAL_TICKET","features":[387]},{"name":"NCRYPTBUFFER_VERSION","features":[387]},{"name":"NCRYPTBUFFER_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[387]},{"name":"NCRYPT_3DES_112_ALGORITHM","features":[387]},{"name":"NCRYPT_3DES_ALGORITHM","features":[387]},{"name":"NCRYPT_AES_ALGORITHM","features":[387]},{"name":"NCRYPT_AES_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_ALGORITHM_GROUP_PROPERTY","features":[387]},{"name":"NCRYPT_ALGORITHM_NAME_CLASS","features":[387]},{"name":"NCRYPT_ALGORITHM_PROPERTY","features":[387]},{"name":"NCRYPT_ALLOC_PARA","features":[387]},{"name":"NCRYPT_ALLOW_ALL_USAGES","features":[387]},{"name":"NCRYPT_ALLOW_ARCHIVING_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_DECRYPT_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_EXPORT_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_SIGNING_FLAG","features":[387]},{"name":"NCRYPT_ALLOW_SILENT_KEY_ACCESS","features":[387]},{"name":"NCRYPT_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[387]},{"name":"NCRYPT_ASSOCIATED_ECDH_KEY","features":[387]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[387]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[387]},{"name":"NCRYPT_ATTESTATION_FLAG","features":[387]},{"name":"NCRYPT_AUTHORITY_KEY_FLAG","features":[387]},{"name":"NCRYPT_AUTH_TAG_LENGTH","features":[387]},{"name":"NCRYPT_BLOCK_LENGTH_PROPERTY","features":[387]},{"name":"NCRYPT_CAPI_KDF_ALGORITHM","features":[387]},{"name":"NCRYPT_CERTIFICATE_PROPERTY","features":[387]},{"name":"NCRYPT_CHAINING_MODE_PROPERTY","features":[387]},{"name":"NCRYPT_CHANGEPASSWORD_PROPERTY","features":[387]},{"name":"NCRYPT_CIPHER_BLOCK_PADDING_FLAG","features":[387]},{"name":"NCRYPT_CIPHER_KEY_BLOB","features":[387]},{"name":"NCRYPT_CIPHER_KEY_BLOB_MAGIC","features":[387]},{"name":"NCRYPT_CIPHER_NO_PADDING_FLAG","features":[387]},{"name":"NCRYPT_CIPHER_OPERATION","features":[387]},{"name":"NCRYPT_CIPHER_OTHER_PADDING_FLAG","features":[387]},{"name":"NCRYPT_CIPHER_PADDING_INFO","features":[387]},{"name":"NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[387]},{"name":"NCRYPT_CLAIM_AUTHORITY_ONLY","features":[387]},{"name":"NCRYPT_CLAIM_PLATFORM","features":[387]},{"name":"NCRYPT_CLAIM_SUBJECT_ONLY","features":[387]},{"name":"NCRYPT_CLAIM_UNKNOWN","features":[387]},{"name":"NCRYPT_CLAIM_VSM_KEY_ATTESTATION_STATEMENT","features":[387]},{"name":"NCRYPT_CLAIM_WEB_AUTH_SUBJECT_ONLY","features":[387]},{"name":"NCRYPT_DESCR_DELIMITER_AND","features":[387]},{"name":"NCRYPT_DESCR_DELIMITER_OR","features":[387]},{"name":"NCRYPT_DESCR_EQUAL","features":[387]},{"name":"NCRYPT_DESX_ALGORITHM","features":[387]},{"name":"NCRYPT_DES_ALGORITHM","features":[387]},{"name":"NCRYPT_DES_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_DH_ALGORITHM","features":[387]},{"name":"NCRYPT_DH_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_DH_PARAMETERS_PROPERTY","features":[387]},{"name":"NCRYPT_DISMISS_UI_TIMEOUT_SEC_PROPERTY","features":[387]},{"name":"NCRYPT_DO_NOT_FINALIZE_FLAG","features":[387]},{"name":"NCRYPT_DSA_ALGORITHM","features":[387]},{"name":"NCRYPT_DSA_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_ECC_CURVE_NAME_LIST_PROPERTY","features":[387]},{"name":"NCRYPT_ECC_CURVE_NAME_PROPERTY","features":[387]},{"name":"NCRYPT_ECC_PARAMETERS_PROPERTY","features":[387]},{"name":"NCRYPT_ECDH_ALGORITHM","features":[387]},{"name":"NCRYPT_ECDH_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_ECDH_P256_ALGORITHM","features":[387]},{"name":"NCRYPT_ECDH_P384_ALGORITHM","features":[387]},{"name":"NCRYPT_ECDH_P521_ALGORITHM","features":[387]},{"name":"NCRYPT_ECDSA_ALGORITHM","features":[387]},{"name":"NCRYPT_ECDSA_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_ECDSA_P256_ALGORITHM","features":[387]},{"name":"NCRYPT_ECDSA_P384_ALGORITHM","features":[387]},{"name":"NCRYPT_ECDSA_P521_ALGORITHM","features":[387]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_ENVELOPE","features":[387]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER","features":[387]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_CURRENT_VERSION","features":[387]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_V0","features":[387]},{"name":"NCRYPT_EXPORT_LEGACY_FLAG","features":[387]},{"name":"NCRYPT_EXPORT_POLICY_PROPERTY","features":[387]},{"name":"NCRYPT_EXTENDED_ERRORS_FLAG","features":[387]},{"name":"NCRYPT_FLAGS","features":[387]},{"name":"NCRYPT_HANDLE","features":[387]},{"name":"NCRYPT_HASH_HANDLE","features":[387]},{"name":"NCRYPT_HASH_OPERATION","features":[387]},{"name":"NCRYPT_HMAC_SHA256_ALGORITHM","features":[387]},{"name":"NCRYPT_IGNORE_DEVICE_STATE_FLAG","features":[387]},{"name":"NCRYPT_IMPL_HARDWARE_FLAG","features":[387]},{"name":"NCRYPT_IMPL_HARDWARE_RNG_FLAG","features":[387]},{"name":"NCRYPT_IMPL_REMOVABLE_FLAG","features":[387]},{"name":"NCRYPT_IMPL_SOFTWARE_FLAG","features":[387]},{"name":"NCRYPT_IMPL_TYPE_PROPERTY","features":[387]},{"name":"NCRYPT_IMPL_VIRTUAL_ISOLATION_FLAG","features":[387]},{"name":"NCRYPT_INITIALIZATION_VECTOR","features":[387]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES","features":[387]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_CURRENT_VERSION","features":[387]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_V0","features":[387]},{"name":"NCRYPT_ISOLATED_KEY_ENVELOPE_BLOB","features":[387]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_CREATED_IN_ISOLATION","features":[387]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_IMPORT_ONLY","features":[387]},{"name":"NCRYPT_KDF_KEY_BLOB","features":[387]},{"name":"NCRYPT_KDF_KEY_BLOB_MAGIC","features":[387]},{"name":"NCRYPT_KDF_SECRET_VALUE","features":[387]},{"name":"NCRYPT_KEY_ACCESS_POLICY_BLOB","features":[387]},{"name":"NCRYPT_KEY_ACCESS_POLICY_PROPERTY","features":[387]},{"name":"NCRYPT_KEY_ACCESS_POLICY_VERSION","features":[387]},{"name":"NCRYPT_KEY_ATTEST_MAGIC","features":[387]},{"name":"NCRYPT_KEY_ATTEST_PADDING_INFO","features":[387]},{"name":"NCRYPT_KEY_BLOB_HEADER","features":[387]},{"name":"NCRYPT_KEY_DERIVATION_GROUP","features":[387]},{"name":"NCRYPT_KEY_DERIVATION_INTERFACE","features":[387]},{"name":"NCRYPT_KEY_DERIVATION_OPERATION","features":[387]},{"name":"NCRYPT_KEY_HANDLE","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_CERTIFICATE","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCAL","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCKEDCREDENTIALS","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SDDL","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SID","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_WEBCREDENTIALS","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_CERT_CERTBLOB","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_CERT_HASHID","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_INTERFACE","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_LOGON","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_MACHINE","features":[387]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_USER","features":[387]},{"name":"NCRYPT_KEY_STORAGE_ALGORITHM","features":[387]},{"name":"NCRYPT_KEY_STORAGE_INTERFACE","features":[387]},{"name":"NCRYPT_KEY_TYPE_PROPERTY","features":[387]},{"name":"NCRYPT_KEY_USAGE_PROPERTY","features":[387]},{"name":"NCRYPT_LAST_MODIFIED_PROPERTY","features":[387]},{"name":"NCRYPT_LENGTHS_PROPERTY","features":[387]},{"name":"NCRYPT_LENGTH_PROPERTY","features":[387]},{"name":"NCRYPT_MACHINE_KEY_FLAG","features":[387]},{"name":"NCRYPT_MAX_ALG_ID_LENGTH","features":[387]},{"name":"NCRYPT_MAX_KEY_NAME_LENGTH","features":[387]},{"name":"NCRYPT_MAX_NAME_LENGTH_PROPERTY","features":[387]},{"name":"NCRYPT_MAX_PROPERTY_DATA","features":[387]},{"name":"NCRYPT_MAX_PROPERTY_NAME","features":[387]},{"name":"NCRYPT_MD2_ALGORITHM","features":[387]},{"name":"NCRYPT_MD4_ALGORITHM","features":[387]},{"name":"NCRYPT_MD5_ALGORITHM","features":[387]},{"name":"NCRYPT_NAMED_DESCRIPTOR_FLAG","features":[387]},{"name":"NCRYPT_NAME_PROPERTY","features":[387]},{"name":"NCRYPT_NO_CACHED_PASSWORD","features":[387]},{"name":"NCRYPT_NO_KEY_VALIDATION","features":[387]},{"name":"NCRYPT_NO_PADDING_FLAG","features":[387]},{"name":"NCRYPT_OPAQUETRANSPORT_BLOB","features":[387]},{"name":"NCRYPT_OPERATION","features":[387]},{"name":"NCRYPT_OVERWRITE_KEY_FLAG","features":[387]},{"name":"NCRYPT_PAD_CIPHER_FLAG","features":[387]},{"name":"NCRYPT_PAD_OAEP_FLAG","features":[387]},{"name":"NCRYPT_PAD_PKCS1_FLAG","features":[387]},{"name":"NCRYPT_PAD_PSS_FLAG","features":[387]},{"name":"NCRYPT_PBKDF2_ALGORITHM","features":[387]},{"name":"NCRYPT_PCP_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_CHANGEPASSWORD_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_ECC_EKCERT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_ECC_EKNVCERT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_ECC_EKPUB_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_EKCERT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_EKNVCERT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_EKPUB_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_ENCRYPTION_KEY","features":[387]},{"name":"NCRYPT_PCP_EXPORT_ALLOWED_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_HMACVERIFICATION_KEY","features":[387]},{"name":"NCRYPT_PCP_HMAC_AUTH_NONCE","features":[387]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYINFO","features":[387]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYREF","features":[387]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE","features":[387]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE_INFO","features":[387]},{"name":"NCRYPT_PCP_HMAC_AUTH_TICKET","features":[387]},{"name":"NCRYPT_PCP_IDENTITY_KEY","features":[387]},{"name":"NCRYPT_PCP_INTERMEDIATE_CA_EKCERT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_KEYATTESTATION_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_KEY_CREATIONHASH_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_KEY_CREATIONTICKET_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_KEY_USAGE_POLICY_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_MIGRATIONPASSWORD_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_NO_DA_PROTECTION_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PASSWORD_REQUIRED_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PCRTABLE_ALGORITHM_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PCRTABLE_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PLATFORMHANDLE_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRALGID_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGESTLIST_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGEST_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRMASK_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PROVIDERHANDLE_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_PSS_SALT_SIZE_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_INFO","features":[387]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_RSA_EKCERT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_RSA_EKNVCERT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_RSA_EKPUB_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_RSA_SCHEME_HASH_ALG_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_RSA_SCHEME_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_SESSIONID_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_SIGNATURE_KEY","features":[387]},{"name":"NCRYPT_PCP_SRKPUB_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_STORAGEPARENT_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_STORAGE_KEY","features":[387]},{"name":"NCRYPT_PCP_SYMMETRIC_KEYBITS_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM12_IDACTIVATION_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_DYNAMIC_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM2BNAME_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_INFO","features":[387]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_PROHIBITED_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_VULNERABILITY_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM_MANUFACTURER_ID_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM_VERSION_PROPERTY","features":[387]},{"name":"NCRYPT_PCP_TPM_WEB_AUTHN_ATTESTATION_STATEMENT","features":[387]},{"name":"NCRYPT_PCP_USAGEAUTH_PROPERTY","features":[387]},{"name":"NCRYPT_PERSIST_FLAG","features":[387]},{"name":"NCRYPT_PERSIST_ONLY_FLAG","features":[387]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_IMAGE_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_STATUS_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_BYTE_LENGTH","features":[387]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_CLEAR_FOR_CALLING_PROCESS_OPTION","features":[387]},{"name":"NCRYPT_PIN_CACHE_CLEAR_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_DISABLE_DPL_FLAG","features":[387]},{"name":"NCRYPT_PIN_CACHE_FLAGS_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_FREE_APPLICATION_TICKET_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_IS_GESTURE_REQUIRED_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_PIN_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_CACHE_REQUIRE_GESTURE_FLAG","features":[387]},{"name":"NCRYPT_PIN_PROMPT_PROPERTY","features":[387]},{"name":"NCRYPT_PIN_PROPERTY","features":[387]},{"name":"NCRYPT_PKCS7_ENVELOPE_BLOB","features":[387]},{"name":"NCRYPT_PKCS8_PRIVATE_KEY_BLOB","features":[387]},{"name":"NCRYPT_PLATFORM_ATTEST_MAGIC","features":[387]},{"name":"NCRYPT_PLATFORM_ATTEST_PADDING_INFO","features":[387]},{"name":"NCRYPT_PREFER_VIRTUAL_ISOLATION_FLAG","features":[387]},{"name":"NCRYPT_PROTECTED_KEY_BLOB","features":[387]},{"name":"NCRYPT_PROTECTED_KEY_BLOB_MAGIC","features":[387]},{"name":"NCRYPT_PROTECTION_INFO_TYPE_DESCRIPTOR_STRING","features":[387]},{"name":"NCRYPT_PROTECT_STREAM_INFO","features":[303,387]},{"name":"NCRYPT_PROTECT_STREAM_INFO_EX","features":[303,387]},{"name":"NCRYPT_PROTECT_TO_LOCAL_SYSTEM","features":[387]},{"name":"NCRYPT_PROVIDER_HANDLE_PROPERTY","features":[387]},{"name":"NCRYPT_PROV_HANDLE","features":[387]},{"name":"NCRYPT_PUBLIC_LENGTH_PROPERTY","features":[387]},{"name":"NCRYPT_RC2_ALGORITHM","features":[387]},{"name":"NCRYPT_RC2_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_READER_ICON_PROPERTY","features":[387]},{"name":"NCRYPT_READER_PROPERTY","features":[387]},{"name":"NCRYPT_REGISTER_NOTIFY_FLAG","features":[387]},{"name":"NCRYPT_REQUIRE_KDS_LRPC_BIND_FLAG","features":[387]},{"name":"NCRYPT_ROOT_CERTSTORE_PROPERTY","features":[387]},{"name":"NCRYPT_RSA_ALGORITHM","features":[387]},{"name":"NCRYPT_RSA_ALGORITHM_GROUP","features":[387]},{"name":"NCRYPT_RSA_SIGN_ALGORITHM","features":[387]},{"name":"NCRYPT_SCARD_NGC_KEY_NAME","features":[387]},{"name":"NCRYPT_SCARD_PIN_ID","features":[387]},{"name":"NCRYPT_SCARD_PIN_INFO","features":[387]},{"name":"NCRYPT_SCHANNEL_INTERFACE","features":[387]},{"name":"NCRYPT_SCHANNEL_SIGNATURE_INTERFACE","features":[387]},{"name":"NCRYPT_SEALING_FLAG","features":[387]},{"name":"NCRYPT_SECRET_AGREEMENT_INTERFACE","features":[387]},{"name":"NCRYPT_SECRET_AGREEMENT_OPERATION","features":[387]},{"name":"NCRYPT_SECRET_HANDLE","features":[387]},{"name":"NCRYPT_SECURE_PIN_PROPERTY","features":[387]},{"name":"NCRYPT_SECURITY_DESCR_PROPERTY","features":[387]},{"name":"NCRYPT_SECURITY_DESCR_SUPPORT_PROPERTY","features":[387]},{"name":"NCRYPT_SHA1_ALGORITHM","features":[387]},{"name":"NCRYPT_SHA256_ALGORITHM","features":[387]},{"name":"NCRYPT_SHA384_ALGORITHM","features":[387]},{"name":"NCRYPT_SHA512_ALGORITHM","features":[387]},{"name":"NCRYPT_SIGNATURE_INTERFACE","features":[387]},{"name":"NCRYPT_SIGNATURE_LENGTH_PROPERTY","features":[387]},{"name":"NCRYPT_SIGNATURE_OPERATION","features":[387]},{"name":"NCRYPT_SILENT_FLAG","features":[387]},{"name":"NCRYPT_SMARTCARD_GUID_PROPERTY","features":[387]},{"name":"NCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[387]},{"name":"NCRYPT_SP80056A_CONCAT_ALGORITHM","features":[387]},{"name":"NCRYPT_SUPPORTED_LENGTHS","features":[387]},{"name":"NCRYPT_TPM12_PROVIDER","features":[387]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB","features":[387]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_HEADER","features":[387]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_MAGIC","features":[387]},{"name":"NCRYPT_TPM_PAD_PSS_IGNORE_SALT","features":[387]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT","features":[387]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[387]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_V0","features":[387]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_HASHSIZE","features":[387]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_MAXIMUM","features":[387]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_UNKNOWN","features":[387]},{"name":"NCRYPT_TREAT_NIST_AS_GENERIC_ECC_FLAG","features":[387]},{"name":"NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[387]},{"name":"NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[387]},{"name":"NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[387]},{"name":"NCRYPT_UI_POLICY","features":[387]},{"name":"NCRYPT_UI_POLICY_PROPERTY","features":[387]},{"name":"NCRYPT_UI_PROTECT_KEY_FLAG","features":[387]},{"name":"NCRYPT_UNIQUE_NAME_PROPERTY","features":[387]},{"name":"NCRYPT_UNPROTECT_NO_DECRYPT","features":[387]},{"name":"NCRYPT_UNREGISTER_NOTIFY_FLAG","features":[387]},{"name":"NCRYPT_USER_CERTSTORE_PROPERTY","features":[387]},{"name":"NCRYPT_USE_CONTEXT_PROPERTY","features":[387]},{"name":"NCRYPT_USE_COUNT_ENABLED_PROPERTY","features":[387]},{"name":"NCRYPT_USE_COUNT_PROPERTY","features":[387]},{"name":"NCRYPT_USE_PER_BOOT_KEY_FLAG","features":[387]},{"name":"NCRYPT_USE_PER_BOOT_KEY_PROPERTY","features":[387]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_FLAG","features":[387]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_PROPERTY","features":[387]},{"name":"NCRYPT_VERSION_PROPERTY","features":[387]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[387]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_CURRENT_VERSION","features":[387]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_V0","features":[387]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT","features":[387]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[387]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_V0","features":[387]},{"name":"NCRYPT_WINDOW_HANDLE_PROPERTY","features":[387]},{"name":"NCRYPT_WRITE_KEY_TO_LEGACY_STORE_FLAG","features":[387]},{"name":"NCryptAlgorithmName","features":[387]},{"name":"NCryptCloseProtectionDescriptor","features":[387]},{"name":"NCryptCreateClaim","features":[387]},{"name":"NCryptCreatePersistedKey","features":[387]},{"name":"NCryptCreateProtectionDescriptor","features":[387]},{"name":"NCryptDecrypt","features":[387]},{"name":"NCryptDeleteKey","features":[387]},{"name":"NCryptDeriveKey","features":[387]},{"name":"NCryptEncrypt","features":[387]},{"name":"NCryptEnumAlgorithms","features":[387]},{"name":"NCryptEnumKeys","features":[387]},{"name":"NCryptEnumStorageProviders","features":[387]},{"name":"NCryptExportKey","features":[387]},{"name":"NCryptFinalizeKey","features":[387]},{"name":"NCryptFreeBuffer","features":[387]},{"name":"NCryptFreeObject","features":[387]},{"name":"NCryptGetProperty","features":[387]},{"name":"NCryptGetProtectionDescriptorInfo","features":[387]},{"name":"NCryptImportKey","features":[387]},{"name":"NCryptIsAlgSupported","features":[387]},{"name":"NCryptIsKeyHandle","features":[303,387]},{"name":"NCryptKeyDerivation","features":[387]},{"name":"NCryptKeyName","features":[387]},{"name":"NCryptNotifyChangeKey","features":[303,387]},{"name":"NCryptOpenKey","features":[387]},{"name":"NCryptOpenStorageProvider","features":[387]},{"name":"NCryptProtectSecret","features":[303,387]},{"name":"NCryptProviderName","features":[387]},{"name":"NCryptQueryProtectionDescriptorName","features":[387]},{"name":"NCryptRegisterProtectionDescriptorName","features":[387]},{"name":"NCryptSecretAgreement","features":[387]},{"name":"NCryptSetProperty","features":[387]},{"name":"NCryptSignHash","features":[387]},{"name":"NCryptStreamClose","features":[387]},{"name":"NCryptStreamOpenToProtect","features":[303,387]},{"name":"NCryptStreamOpenToUnprotect","features":[303,387]},{"name":"NCryptStreamOpenToUnprotectEx","features":[303,387]},{"name":"NCryptStreamUpdate","features":[303,387]},{"name":"NCryptTranslateHandle","features":[387]},{"name":"NCryptUnprotectSecret","features":[303,387]},{"name":"NCryptVerifyClaim","features":[387]},{"name":"NCryptVerifySignature","features":[387]},{"name":"NETSCAPE_SIGN_CA_CERT_TYPE","features":[387]},{"name":"NETSCAPE_SIGN_CERT_TYPE","features":[387]},{"name":"NETSCAPE_SMIME_CA_CERT_TYPE","features":[387]},{"name":"NETSCAPE_SMIME_CERT_TYPE","features":[387]},{"name":"NETSCAPE_SSL_CA_CERT_TYPE","features":[387]},{"name":"NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE","features":[387]},{"name":"NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE","features":[387]},{"name":"OCSP_BASIC_BY_KEY_RESPONDER_ID","features":[387]},{"name":"OCSP_BASIC_BY_NAME_RESPONDER_ID","features":[387]},{"name":"OCSP_BASIC_GOOD_CERT_STATUS","features":[387]},{"name":"OCSP_BASIC_RESPONSE","features":[387]},{"name":"OCSP_BASIC_RESPONSE_ENTRY","features":[303,387]},{"name":"OCSP_BASIC_RESPONSE_INFO","features":[303,387]},{"name":"OCSP_BASIC_RESPONSE_V1","features":[387]},{"name":"OCSP_BASIC_REVOKED_CERT_STATUS","features":[387]},{"name":"OCSP_BASIC_REVOKED_INFO","features":[303,387]},{"name":"OCSP_BASIC_SIGNED_RESPONSE","features":[387]},{"name":"OCSP_BASIC_SIGNED_RESPONSE_INFO","features":[387]},{"name":"OCSP_BASIC_UNKNOWN_CERT_STATUS","features":[387]},{"name":"OCSP_CERT_ID","features":[387]},{"name":"OCSP_INTERNAL_ERROR_RESPONSE","features":[387]},{"name":"OCSP_MALFORMED_REQUEST_RESPONSE","features":[387]},{"name":"OCSP_REQUEST","features":[387]},{"name":"OCSP_REQUEST_ENTRY","features":[303,387]},{"name":"OCSP_REQUEST_INFO","features":[303,387]},{"name":"OCSP_REQUEST_V1","features":[387]},{"name":"OCSP_RESPONSE","features":[387]},{"name":"OCSP_RESPONSE_INFO","features":[387]},{"name":"OCSP_SIGNATURE_INFO","features":[387]},{"name":"OCSP_SIGNED_REQUEST","features":[387]},{"name":"OCSP_SIGNED_REQUEST_INFO","features":[387]},{"name":"OCSP_SIG_REQUIRED_RESPONSE","features":[387]},{"name":"OCSP_SUCCESSFUL_RESPONSE","features":[387]},{"name":"OCSP_TRY_LATER_RESPONSE","features":[387]},{"name":"OCSP_UNAUTHORIZED_RESPONSE","features":[387]},{"name":"OPAQUEKEYBLOB","features":[387]},{"name":"PCRYPT_DECRYPT_PRIVATE_KEY_FUNC","features":[303,387]},{"name":"PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC","features":[303,387]},{"name":"PCRYPT_RESOLVE_HCRYPTPROV_FUNC","features":[303,387]},{"name":"PFNCryptStreamOutputCallback","features":[303,387]},{"name":"PFNCryptStreamOutputCallbackEx","features":[303,387]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN","features":[303,387]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX","features":[303,387]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX_WITHFILEHANDLE","features":[303,387]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_WITHFILEHANDLE","features":[303,387]},{"name":"PFN_CANCEL_ASYNC_RETRIEVAL_FUNC","features":[303,387]},{"name":"PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK","features":[303,387]},{"name":"PFN_CERT_CREATE_CONTEXT_SORT_FUNC","features":[303,387]},{"name":"PFN_CERT_DLL_OPEN_STORE_PROV_FUNC","features":[303,387]},{"name":"PFN_CERT_ENUM_PHYSICAL_STORE","features":[303,387]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE","features":[303,387]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE_LOCATION","features":[303,387]},{"name":"PFN_CERT_IS_WEAK_HASH","features":[303,387]},{"name":"PFN_CERT_SERVER_OCSP_RESPONSE_UPDATE_CALLBACK","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_CLOSE","features":[387]},{"name":"PFN_CERT_STORE_PROV_CONTROL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_DELETE_CERT","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_DELETE_CRL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_DELETE_CTL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_FIND_CERT","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_FIND_CRL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_FIND_CTL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CERT","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CRL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CTL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_GET_CERT_PROPERTY","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_GET_CRL_PROPERTY","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_GET_CTL_PROPERTY","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_READ_CERT","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_READ_CRL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_READ_CTL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_SET_CERT_PROPERTY","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_SET_CRL_PROPERTY","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_SET_CTL_PROPERTY","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_WRITE_CERT","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_WRITE_CRL","features":[303,387]},{"name":"PFN_CERT_STORE_PROV_WRITE_CTL","features":[303,387]},{"name":"PFN_CMSG_ALLOC","features":[387]},{"name":"PFN_CMSG_CNG_IMPORT_CONTENT_ENCRYPT_KEY","features":[303,387]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_AGREE","features":[303,387]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_TRANS","features":[303,387]},{"name":"PFN_CMSG_EXPORT_ENCRYPT_KEY","features":[303,387]},{"name":"PFN_CMSG_EXPORT_KEY_AGREE","features":[303,387]},{"name":"PFN_CMSG_EXPORT_KEY_TRANS","features":[303,387]},{"name":"PFN_CMSG_EXPORT_MAIL_LIST","features":[303,387]},{"name":"PFN_CMSG_FREE","features":[387]},{"name":"PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY","features":[303,387]},{"name":"PFN_CMSG_GEN_ENCRYPT_KEY","features":[303,387]},{"name":"PFN_CMSG_IMPORT_ENCRYPT_KEY","features":[303,387]},{"name":"PFN_CMSG_IMPORT_KEY_AGREE","features":[303,387]},{"name":"PFN_CMSG_IMPORT_KEY_TRANS","features":[303,387]},{"name":"PFN_CMSG_IMPORT_MAIL_LIST","features":[303,387]},{"name":"PFN_CMSG_STREAM_OUTPUT","features":[303,387]},{"name":"PFN_CRYPT_ALLOC","features":[387]},{"name":"PFN_CRYPT_ASYNC_PARAM_FREE_FUNC","features":[387]},{"name":"PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC","features":[387]},{"name":"PFN_CRYPT_CANCEL_RETRIEVAL","features":[303,387]},{"name":"PFN_CRYPT_ENUM_KEYID_PROP","features":[303,387]},{"name":"PFN_CRYPT_ENUM_OID_FUNC","features":[303,387]},{"name":"PFN_CRYPT_ENUM_OID_INFO","features":[303,387]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[303,387]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[303,387]},{"name":"PFN_CRYPT_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[303,387]},{"name":"PFN_CRYPT_FREE","features":[387]},{"name":"PFN_CRYPT_GET_SIGNER_CERTIFICATE","features":[303,387]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FLUSH","features":[303,387]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE","features":[387]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_IDENTIFIER","features":[387]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_PASSWORD","features":[387]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_GET","features":[303,387]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_INITIALIZE","features":[303,387]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_RELEASE","features":[387]},{"name":"PFN_CRYPT_SIGN_AND_ENCODE_HASH_FUNC","features":[303,387]},{"name":"PFN_CRYPT_VERIFY_ENCODED_SIGNATURE_FUNC","features":[303,387]},{"name":"PFN_CRYPT_XML_CREATE_TRANSFORM","features":[387]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_CLOSE","features":[387]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_READ","features":[387]},{"name":"PFN_CRYPT_XML_ENUM_ALG_INFO","features":[303,387]},{"name":"PFN_CRYPT_XML_WRITE_CALLBACK","features":[387]},{"name":"PFN_EXPORT_PRIV_KEY_FUNC","features":[303,387]},{"name":"PFN_FREE_ENCODED_OBJECT_FUNC","features":[387]},{"name":"PFN_IMPORT_PRIV_KEY_FUNC","features":[303,387]},{"name":"PFN_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[303,387]},{"name":"PFN_NCRYPT_ALLOC","features":[387]},{"name":"PFN_NCRYPT_FREE","features":[387]},{"name":"PFXExportCertStore","features":[303,387]},{"name":"PFXExportCertStoreEx","features":[303,387]},{"name":"PFXImportCertStore","features":[387]},{"name":"PFXIsPFXBlob","features":[303,387]},{"name":"PFXVerifyPassword","features":[303,387]},{"name":"PKCS12_ALLOW_OVERWRITE_KEY","features":[387]},{"name":"PKCS12_ALWAYS_CNG_KSP","features":[387]},{"name":"PKCS12_CONFIG_REGPATH","features":[387]},{"name":"PKCS12_DISABLE_ENCRYPT_CERTIFICATES","features":[387]},{"name":"PKCS12_ENCRYPT_CERTIFICATES","features":[387]},{"name":"PKCS12_ENCRYPT_CERTIFICATES_VALUE_NAME","features":[387]},{"name":"PKCS12_EXPORT_ECC_CURVE_OID","features":[387]},{"name":"PKCS12_EXPORT_ECC_CURVE_PARAMETERS","features":[387]},{"name":"PKCS12_EXPORT_PBES2_PARAMS","features":[387]},{"name":"PKCS12_EXPORT_RESERVED_MASK","features":[387]},{"name":"PKCS12_EXPORT_SILENT","features":[387]},{"name":"PKCS12_IMPORT_RESERVED_MASK","features":[387]},{"name":"PKCS12_IMPORT_SILENT","features":[387]},{"name":"PKCS12_INCLUDE_EXTENDED_PROPERTIES","features":[387]},{"name":"PKCS12_NO_PERSIST_KEY","features":[387]},{"name":"PKCS12_ONLY_CERTIFICATES","features":[387]},{"name":"PKCS12_ONLY_CERTIFICATES_CONTAINER_NAME","features":[387]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_NAME","features":[387]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_TYPE","features":[387]},{"name":"PKCS12_ONLY_NOT_ENCRYPTED_CERTIFICATES","features":[387]},{"name":"PKCS12_PBES2_ALG_AES256_SHA256","features":[387]},{"name":"PKCS12_PBES2_EXPORT_PARAMS","features":[387]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA1","features":[387]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA256","features":[387]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA384","features":[387]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA512","features":[387]},{"name":"PKCS12_PREFER_CNG_KSP","features":[387]},{"name":"PKCS12_PROTECT_TO_DOMAIN_SIDS","features":[387]},{"name":"PKCS12_VIRTUAL_ISOLATION_KEY","features":[387]},{"name":"PKCS5_PADDING","features":[387]},{"name":"PKCS7_SIGNER_INFO","features":[387]},{"name":"PKCS_7_ASN_ENCODING","features":[387]},{"name":"PKCS_7_NDR_ENCODING","features":[387]},{"name":"PKCS_ATTRIBUTE","features":[387]},{"name":"PKCS_ATTRIBUTES","features":[387]},{"name":"PKCS_CONTENT_INFO","features":[387]},{"name":"PKCS_CONTENT_INFO_SEQUENCE_OF_ANY","features":[387]},{"name":"PKCS_CTL","features":[387]},{"name":"PKCS_ENCRYPTED_PRIVATE_KEY_INFO","features":[387]},{"name":"PKCS_PRIVATE_KEY_INFO","features":[387]},{"name":"PKCS_RC2_CBC_PARAMETERS","features":[387]},{"name":"PKCS_RSAES_OAEP_PARAMETERS","features":[387]},{"name":"PKCS_RSA_PRIVATE_KEY","features":[387]},{"name":"PKCS_RSA_SSA_PSS_PARAMETERS","features":[387]},{"name":"PKCS_RSA_SSA_PSS_TRAILER_FIELD_BC","features":[387]},{"name":"PKCS_SMIME_CAPABILITIES","features":[387]},{"name":"PKCS_SORTED_CTL","features":[387]},{"name":"PKCS_TIME_REQUEST","features":[387]},{"name":"PKCS_UTC_TIME","features":[387]},{"name":"PLAINTEXTKEYBLOB","features":[387]},{"name":"POLICY_ELEMENT","features":[303,387]},{"name":"PP_ADMIN_PIN","features":[387]},{"name":"PP_APPLI_CERT","features":[387]},{"name":"PP_CERTCHAIN","features":[387]},{"name":"PP_CHANGE_PASSWORD","features":[387]},{"name":"PP_CLIENT_HWND","features":[387]},{"name":"PP_CONTAINER","features":[387]},{"name":"PP_CONTEXT_INFO","features":[387]},{"name":"PP_CRYPT_COUNT_KEY_USE","features":[387]},{"name":"PP_DELETEKEY","features":[387]},{"name":"PP_DISMISS_PIN_UI_SEC","features":[387]},{"name":"PP_ENUMALGS","features":[387]},{"name":"PP_ENUMALGS_EX","features":[387]},{"name":"PP_ENUMCONTAINERS","features":[387]},{"name":"PP_ENUMELECTROOTS","features":[387]},{"name":"PP_ENUMEX_SIGNING_PROT","features":[387]},{"name":"PP_ENUMMANDROOTS","features":[387]},{"name":"PP_IMPTYPE","features":[387]},{"name":"PP_IS_PFX_EPHEMERAL","features":[387]},{"name":"PP_KEYEXCHANGE_ALG","features":[387]},{"name":"PP_KEYEXCHANGE_KEYSIZE","features":[387]},{"name":"PP_KEYEXCHANGE_PIN","features":[387]},{"name":"PP_KEYSET_SEC_DESCR","features":[387]},{"name":"PP_KEYSET_TYPE","features":[387]},{"name":"PP_KEYSPEC","features":[387]},{"name":"PP_KEYSTORAGE","features":[387]},{"name":"PP_KEYX_KEYSIZE_INC","features":[387]},{"name":"PP_KEY_TYPE_SUBTYPE","features":[387]},{"name":"PP_NAME","features":[387]},{"name":"PP_PIN_PROMPT_STRING","features":[387]},{"name":"PP_PROVTYPE","features":[387]},{"name":"PP_ROOT_CERTSTORE","features":[387]},{"name":"PP_SECURE_KEYEXCHANGE_PIN","features":[387]},{"name":"PP_SECURE_SIGNATURE_PIN","features":[387]},{"name":"PP_SESSION_KEYSIZE","features":[387]},{"name":"PP_SGC_INFO","features":[387]},{"name":"PP_SIGNATURE_ALG","features":[387]},{"name":"PP_SIGNATURE_KEYSIZE","features":[387]},{"name":"PP_SIGNATURE_PIN","features":[387]},{"name":"PP_SIG_KEYSIZE_INC","features":[387]},{"name":"PP_SMARTCARD_GUID","features":[387]},{"name":"PP_SMARTCARD_READER","features":[387]},{"name":"PP_SMARTCARD_READER_ICON","features":[387]},{"name":"PP_SYM_KEYSIZE","features":[387]},{"name":"PP_UI_PROMPT","features":[387]},{"name":"PP_UNIQUE_CONTAINER","features":[387]},{"name":"PP_USER_CERTSTORE","features":[387]},{"name":"PP_USE_HARDWARE_RNG","features":[387]},{"name":"PP_VERSION","features":[387]},{"name":"PRIVATEKEYBLOB","features":[387]},{"name":"PRIVKEYVER3","features":[387]},{"name":"PROV_DH_SCHANNEL","features":[387]},{"name":"PROV_DSS","features":[387]},{"name":"PROV_DSS_DH","features":[387]},{"name":"PROV_EC_ECDSA_FULL","features":[387]},{"name":"PROV_EC_ECDSA_SIG","features":[387]},{"name":"PROV_EC_ECNRA_FULL","features":[387]},{"name":"PROV_EC_ECNRA_SIG","features":[387]},{"name":"PROV_ENUMALGS","features":[387]},{"name":"PROV_ENUMALGS_EX","features":[387]},{"name":"PROV_FORTEZZA","features":[387]},{"name":"PROV_INTEL_SEC","features":[387]},{"name":"PROV_MS_EXCHANGE","features":[387]},{"name":"PROV_REPLACE_OWF","features":[387]},{"name":"PROV_RNG","features":[387]},{"name":"PROV_RSA_AES","features":[387]},{"name":"PROV_RSA_FULL","features":[387]},{"name":"PROV_RSA_SCHANNEL","features":[387]},{"name":"PROV_RSA_SIG","features":[387]},{"name":"PROV_SPYRUS_LYNKS","features":[387]},{"name":"PROV_SSL","features":[387]},{"name":"PROV_STT_ACQ","features":[387]},{"name":"PROV_STT_BRND","features":[387]},{"name":"PROV_STT_ISS","features":[387]},{"name":"PROV_STT_MER","features":[387]},{"name":"PROV_STT_ROOT","features":[387]},{"name":"PUBKEY","features":[387]},{"name":"PUBKEYVER3","features":[387]},{"name":"PUBLICKEYBLOB","features":[387]},{"name":"PUBLICKEYBLOBEX","features":[387]},{"name":"PUBLICKEYSTRUC","features":[387]},{"name":"PVK_TYPE_FILE_NAME","features":[387]},{"name":"PVK_TYPE_KEYCONTAINER","features":[387]},{"name":"PaddingMode","features":[387]},{"name":"ProcessPrng","features":[303,387]},{"name":"RANDOM_PADDING","features":[387]},{"name":"RECIPIENTPOLICY","features":[387]},{"name":"RECIPIENTPOLICY2","features":[387]},{"name":"RECIPIENTPOLICYV1","features":[387]},{"name":"RECIPIENTPOLICYV2","features":[387]},{"name":"REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY","features":[387]},{"name":"REPORT_NO_PRIVATE_KEY","features":[387]},{"name":"REVOCATION_OID_CRL_REVOCATION","features":[387]},{"name":"ROOT_INFO_LUID","features":[387]},{"name":"RSA1024BIT_KEY","features":[387]},{"name":"RSAPUBKEY","features":[387]},{"name":"RSA_CSP_PUBLICKEYBLOB","features":[387]},{"name":"SCHANNEL_ALG","features":[387]},{"name":"SCHANNEL_ENC_KEY","features":[387]},{"name":"SCHANNEL_MAC_KEY","features":[387]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC","features":[387]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECT_FUNC","features":[387]},{"name":"SIGNATURE_RESOURCE_NUMBER","features":[387]},{"name":"SIGNER_ATTR_AUTHCODE","features":[303,387]},{"name":"SIGNER_AUTHCODE_ATTR","features":[387]},{"name":"SIGNER_BLOB_INFO","features":[387]},{"name":"SIGNER_CERT","features":[303,387]},{"name":"SIGNER_CERT_CHOICE","features":[387]},{"name":"SIGNER_CERT_POLICY","features":[387]},{"name":"SIGNER_CERT_POLICY_CHAIN","features":[387]},{"name":"SIGNER_CERT_POLICY_CHAIN_NO_ROOT","features":[387]},{"name":"SIGNER_CERT_POLICY_SPC","features":[387]},{"name":"SIGNER_CERT_POLICY_STORE","features":[387]},{"name":"SIGNER_CERT_SPC_CHAIN","features":[387]},{"name":"SIGNER_CERT_SPC_FILE","features":[387]},{"name":"SIGNER_CERT_STORE","features":[387]},{"name":"SIGNER_CERT_STORE_INFO","features":[303,387]},{"name":"SIGNER_CONTEXT","features":[387]},{"name":"SIGNER_DIGEST_SIGN_INFO","features":[303,387]},{"name":"SIGNER_DIGEST_SIGN_INFO_V1","features":[303,387]},{"name":"SIGNER_DIGEST_SIGN_INFO_V2","features":[303,387]},{"name":"SIGNER_FILE_INFO","features":[303,387]},{"name":"SIGNER_NO_ATTR","features":[387]},{"name":"SIGNER_PRIVATE_KEY_CHOICE","features":[387]},{"name":"SIGNER_PROVIDER_INFO","features":[387]},{"name":"SIGNER_SIGNATURE_ATTRIBUTE_CHOICE","features":[387]},{"name":"SIGNER_SIGNATURE_INFO","features":[303,387]},{"name":"SIGNER_SIGN_FLAGS","features":[387]},{"name":"SIGNER_SPC_CHAIN_INFO","features":[387]},{"name":"SIGNER_SUBJECT_BLOB","features":[387]},{"name":"SIGNER_SUBJECT_CHOICE","features":[387]},{"name":"SIGNER_SUBJECT_FILE","features":[387]},{"name":"SIGNER_SUBJECT_INFO","features":[303,387]},{"name":"SIGNER_TIMESTAMP_AUTHENTICODE","features":[387]},{"name":"SIGNER_TIMESTAMP_FLAGS","features":[387]},{"name":"SIGNER_TIMESTAMP_RFC3161","features":[387]},{"name":"SIG_APPEND","features":[387]},{"name":"SIMPLEBLOB","features":[387]},{"name":"SITE_PIN_RULES_ALL_SUBDOMAINS_FLAG","features":[387]},{"name":"SORTED_CTL_EXT_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[387]},{"name":"SPC_DIGEST_GENERATE_FLAG","features":[387]},{"name":"SPC_DIGEST_SIGN_EX_FLAG","features":[387]},{"name":"SPC_DIGEST_SIGN_FLAG","features":[387]},{"name":"SPC_EXC_PE_PAGE_HASHES_FLAG","features":[387]},{"name":"SPC_INC_PE_DEBUG_INFO_FLAG","features":[387]},{"name":"SPC_INC_PE_IMPORT_ADDR_TABLE_FLAG","features":[387]},{"name":"SPC_INC_PE_PAGE_HASHES_FLAG","features":[387]},{"name":"SPC_INC_PE_RESOURCES_FLAG","features":[387]},{"name":"SSL_ECCKEY_BLOB","features":[387]},{"name":"SSL_ECCPUBLIC_BLOB","features":[387]},{"name":"SSL_F12_ERROR_TEXT_LENGTH","features":[387]},{"name":"SSL_F12_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[387]},{"name":"SSL_HPKP_HEADER_COUNT","features":[387]},{"name":"SSL_HPKP_HEADER_EXTRA_CERT_CHAIN_POLICY_PARA","features":[387]},{"name":"SSL_HPKP_PKP_HEADER_INDEX","features":[387]},{"name":"SSL_HPKP_PKP_RO_HEADER_INDEX","features":[387]},{"name":"SSL_KEY_PIN_ERROR_TEXT_LENGTH","features":[387]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_PARA","features":[387]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[387]},{"name":"SSL_OBJECT_LOCATOR_CERT_VALIDATION_CONFIG_FUNC","features":[387]},{"name":"SSL_OBJECT_LOCATOR_ISSUER_LIST_FUNC","features":[387]},{"name":"SSL_OBJECT_LOCATOR_PFX_FUNC","features":[387]},{"name":"SYMMETRICWRAPKEYBLOB","features":[387]},{"name":"SignError","features":[387]},{"name":"SignHash","features":[387]},{"name":"SignerFreeSignerContext","features":[387]},{"name":"SignerSign","features":[303,387]},{"name":"SignerSignEx","features":[303,387]},{"name":"SignerSignEx2","features":[303,387]},{"name":"SignerSignEx3","features":[303,387]},{"name":"SignerTimeStamp","features":[303,387]},{"name":"SignerTimeStampEx","features":[303,387]},{"name":"SignerTimeStampEx2","features":[303,387]},{"name":"SignerTimeStampEx3","features":[303,387]},{"name":"SystemPrng","features":[303,387]},{"name":"TIMESTAMP_DONT_HASH_DATA","features":[387]},{"name":"TIMESTAMP_FAILURE_BAD_ALG","features":[387]},{"name":"TIMESTAMP_FAILURE_BAD_FORMAT","features":[387]},{"name":"TIMESTAMP_FAILURE_BAD_REQUEST","features":[387]},{"name":"TIMESTAMP_FAILURE_EXTENSION_NOT_SUPPORTED","features":[387]},{"name":"TIMESTAMP_FAILURE_INFO_NOT_AVAILABLE","features":[387]},{"name":"TIMESTAMP_FAILURE_POLICY_NOT_SUPPORTED","features":[387]},{"name":"TIMESTAMP_FAILURE_SYSTEM_FAILURE","features":[387]},{"name":"TIMESTAMP_FAILURE_TIME_NOT_AVAILABLE","features":[387]},{"name":"TIMESTAMP_INFO","features":[387]},{"name":"TIMESTAMP_NO_AUTH_RETRIEVAL","features":[387]},{"name":"TIMESTAMP_REQUEST","features":[387]},{"name":"TIMESTAMP_RESPONSE","features":[387]},{"name":"TIMESTAMP_STATUS_GRANTED","features":[387]},{"name":"TIMESTAMP_STATUS_GRANTED_WITH_MODS","features":[387]},{"name":"TIMESTAMP_STATUS_REJECTED","features":[387]},{"name":"TIMESTAMP_STATUS_REVOCATION_WARNING","features":[387]},{"name":"TIMESTAMP_STATUS_REVOKED","features":[387]},{"name":"TIMESTAMP_STATUS_WAITING","features":[387]},{"name":"TIMESTAMP_VERIFY_CONTEXT_SIGNATURE","features":[387]},{"name":"TIMESTAMP_VERSION","features":[387]},{"name":"TIME_VALID_OID_FLUSH_CRL","features":[387]},{"name":"TIME_VALID_OID_FLUSH_CRL_FROM_CERT","features":[387]},{"name":"TIME_VALID_OID_FLUSH_CTL","features":[387]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CERT","features":[387]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CRL","features":[387]},{"name":"TIME_VALID_OID_FLUSH_OBJECT_FUNC","features":[387]},{"name":"TIME_VALID_OID_GET_CRL","features":[387]},{"name":"TIME_VALID_OID_GET_CRL_FROM_CERT","features":[387]},{"name":"TIME_VALID_OID_GET_CTL","features":[387]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CERT","features":[387]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CRL","features":[387]},{"name":"TIME_VALID_OID_GET_OBJECT_FUNC","features":[387]},{"name":"TPM_RSA_SRK_SEAL_KEY","features":[387]},{"name":"TransformBlock","features":[387]},{"name":"TransformFinalBlock","features":[387]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT","features":[387]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT_AND_OCSP","features":[387]},{"name":"URL_OID_CERTIFICATE_FRESHEST_CRL","features":[387]},{"name":"URL_OID_CERTIFICATE_ISSUER","features":[387]},{"name":"URL_OID_CERTIFICATE_OCSP","features":[387]},{"name":"URL_OID_CERTIFICATE_OCSP_AND_CRL_DIST_POINT","features":[387]},{"name":"URL_OID_CERTIFICATE_ONLY_OCSP","features":[387]},{"name":"URL_OID_CRL_FRESHEST_CRL","features":[387]},{"name":"URL_OID_CRL_ISSUER","features":[387]},{"name":"URL_OID_CROSS_CERT_DIST_POINT","features":[387]},{"name":"URL_OID_CROSS_CERT_SUBJECT_INFO_ACCESS","features":[387]},{"name":"URL_OID_CTL_ISSUER","features":[387]},{"name":"URL_OID_CTL_NEXT_UPDATE","features":[387]},{"name":"URL_OID_GET_OBJECT_URL_FUNC","features":[387]},{"name":"USAGE_MATCH_TYPE_AND","features":[387]},{"name":"USAGE_MATCH_TYPE_OR","features":[387]},{"name":"VerifyHash","features":[303,387]},{"name":"X509_ALGORITHM_IDENTIFIER","features":[387]},{"name":"X509_ALTERNATE_NAME","features":[387]},{"name":"X509_ANY_STRING","features":[387]},{"name":"X509_ASN_ENCODING","features":[387]},{"name":"X509_AUTHORITY_INFO_ACCESS","features":[387]},{"name":"X509_AUTHORITY_KEY_ID","features":[387]},{"name":"X509_AUTHORITY_KEY_ID2","features":[387]},{"name":"X509_BASIC_CONSTRAINTS","features":[387]},{"name":"X509_BASIC_CONSTRAINTS2","features":[387]},{"name":"X509_BIOMETRIC_EXT","features":[387]},{"name":"X509_BITS","features":[387]},{"name":"X509_BITS_WITHOUT_TRAILING_ZEROES","features":[387]},{"name":"X509_CERT","features":[387]},{"name":"X509_CERTIFICATE_TEMPLATE","features":[387]},{"name":"X509_CERT_BUNDLE","features":[387]},{"name":"X509_CERT_CRL_TO_BE_SIGNED","features":[387]},{"name":"X509_CERT_PAIR","features":[387]},{"name":"X509_CERT_POLICIES","features":[387]},{"name":"X509_CERT_REQUEST_TO_BE_SIGNED","features":[387]},{"name":"X509_CERT_TO_BE_SIGNED","features":[387]},{"name":"X509_CHOICE_OF_TIME","features":[387]},{"name":"X509_CRL_DIST_POINTS","features":[387]},{"name":"X509_CRL_REASON_CODE","features":[387]},{"name":"X509_CROSS_CERT_DIST_POINTS","features":[387]},{"name":"X509_DH_PARAMETERS","features":[387]},{"name":"X509_DH_PUBLICKEY","features":[387]},{"name":"X509_DSS_PARAMETERS","features":[387]},{"name":"X509_DSS_PUBLICKEY","features":[387]},{"name":"X509_DSS_SIGNATURE","features":[387]},{"name":"X509_ECC_PARAMETERS","features":[387]},{"name":"X509_ECC_PRIVATE_KEY","features":[387]},{"name":"X509_ECC_SIGNATURE","features":[387]},{"name":"X509_ENHANCED_KEY_USAGE","features":[387]},{"name":"X509_ENUMERATED","features":[387]},{"name":"X509_EXTENSIONS","features":[387]},{"name":"X509_INTEGER","features":[387]},{"name":"X509_ISSUING_DIST_POINT","features":[387]},{"name":"X509_KEYGEN_REQUEST_TO_BE_SIGNED","features":[387]},{"name":"X509_KEY_ATTRIBUTES","features":[387]},{"name":"X509_KEY_USAGE","features":[387]},{"name":"X509_KEY_USAGE_RESTRICTION","features":[387]},{"name":"X509_LOGOTYPE_EXT","features":[387]},{"name":"X509_MULTI_BYTE_INTEGER","features":[387]},{"name":"X509_MULTI_BYTE_UINT","features":[387]},{"name":"X509_NAME","features":[387]},{"name":"X509_NAME_CONSTRAINTS","features":[387]},{"name":"X509_NAME_VALUE","features":[387]},{"name":"X509_NDR_ENCODING","features":[387]},{"name":"X509_OBJECT_IDENTIFIER","features":[387]},{"name":"X509_OCTET_STRING","features":[387]},{"name":"X509_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[387]},{"name":"X509_POLICY_CONSTRAINTS","features":[387]},{"name":"X509_POLICY_MAPPINGS","features":[387]},{"name":"X509_PUBLIC_KEY_INFO","features":[387]},{"name":"X509_QC_STATEMENTS_EXT","features":[387]},{"name":"X509_SEQUENCE_OF_ANY","features":[387]},{"name":"X509_SUBJECT_DIR_ATTRS","features":[387]},{"name":"X509_SUBJECT_INFO_ACCESS","features":[387]},{"name":"X509_UNICODE_ANY_STRING","features":[387]},{"name":"X509_UNICODE_NAME","features":[387]},{"name":"X509_UNICODE_NAME_VALUE","features":[387]},{"name":"X942_DH_PARAMETERS","features":[387]},{"name":"X942_OTHER_INFO","features":[387]},{"name":"ZERO_PADDING","features":[387]},{"name":"cPRIV_KEY_CACHE_MAX_ITEMS_DEFAULT","features":[387]},{"name":"cPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS_DEFAULT","features":[387]},{"name":"dwFORCE_KEY_PROTECTION_DISABLED","features":[387]},{"name":"dwFORCE_KEY_PROTECTION_HIGH","features":[387]},{"name":"dwFORCE_KEY_PROTECTION_USER_SELECT","features":[387]},{"name":"szFORCE_KEY_PROTECTION","features":[387]},{"name":"szKEY_CACHE_ENABLED","features":[387]},{"name":"szKEY_CACHE_SECONDS","features":[387]},{"name":"szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS","features":[387]},{"name":"szOIDVerisign_FailInfo","features":[387]},{"name":"szOIDVerisign_MessageType","features":[387]},{"name":"szOIDVerisign_PkiStatus","features":[387]},{"name":"szOIDVerisign_RecipientNonce","features":[387]},{"name":"szOIDVerisign_SenderNonce","features":[387]},{"name":"szOIDVerisign_TransactionID","features":[387]},{"name":"szOID_ANSI_X942","features":[387]},{"name":"szOID_ANSI_X942_DH","features":[387]},{"name":"szOID_ANY_APPLICATION_POLICY","features":[387]},{"name":"szOID_ANY_CERT_POLICY","features":[387]},{"name":"szOID_ANY_ENHANCED_KEY_USAGE","features":[387]},{"name":"szOID_APPLICATION_CERT_POLICIES","features":[387]},{"name":"szOID_APPLICATION_POLICY_CONSTRAINTS","features":[387]},{"name":"szOID_APPLICATION_POLICY_MAPPINGS","features":[387]},{"name":"szOID_ARCHIVED_KEY_ATTR","features":[387]},{"name":"szOID_ARCHIVED_KEY_CERT_HASH","features":[387]},{"name":"szOID_ATTEST_WHQL_CRYPTO","features":[387]},{"name":"szOID_ATTR_PLATFORM_SPECIFICATION","features":[387]},{"name":"szOID_ATTR_SUPPORTED_ALGORITHMS","features":[387]},{"name":"szOID_ATTR_TPM_SECURITY_ASSERTIONS","features":[387]},{"name":"szOID_ATTR_TPM_SPECIFICATION","features":[387]},{"name":"szOID_AUTHORITY_INFO_ACCESS","features":[387]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER","features":[387]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER2","features":[387]},{"name":"szOID_AUTHORITY_REVOCATION_LIST","features":[387]},{"name":"szOID_AUTO_ENROLL_CTL_USAGE","features":[387]},{"name":"szOID_BACKGROUND_OTHER_LOGOTYPE","features":[387]},{"name":"szOID_BASIC_CONSTRAINTS","features":[387]},{"name":"szOID_BASIC_CONSTRAINTS2","features":[387]},{"name":"szOID_BIOMETRIC_EXT","features":[387]},{"name":"szOID_BIOMETRIC_SIGNING","features":[387]},{"name":"szOID_BUSINESS_CATEGORY","features":[387]},{"name":"szOID_CA_CERTIFICATE","features":[387]},{"name":"szOID_CERTIFICATE_REVOCATION_LIST","features":[387]},{"name":"szOID_CERTIFICATE_TEMPLATE","features":[387]},{"name":"szOID_CERTSRV_CA_VERSION","features":[387]},{"name":"szOID_CERTSRV_CROSSCA_VERSION","features":[387]},{"name":"szOID_CERTSRV_PREVIOUS_CERT_HASH","features":[387]},{"name":"szOID_CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[387]},{"name":"szOID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[387]},{"name":"szOID_CERT_EXTENSIONS","features":[387]},{"name":"szOID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[387]},{"name":"szOID_CERT_KEY_IDENTIFIER_PROP_ID","features":[387]},{"name":"szOID_CERT_MANIFOLD","features":[387]},{"name":"szOID_CERT_MD5_HASH_PROP_ID","features":[387]},{"name":"szOID_CERT_POLICIES","features":[387]},{"name":"szOID_CERT_POLICIES_95","features":[387]},{"name":"szOID_CERT_POLICIES_95_QUALIFIER1","features":[387]},{"name":"szOID_CERT_PROP_ID_PREFIX","features":[387]},{"name":"szOID_CERT_SIGNATURE_HASH_PROP_ID","features":[387]},{"name":"szOID_CERT_STRONG_KEY_OS_1","features":[387]},{"name":"szOID_CERT_STRONG_KEY_OS_CURRENT","features":[387]},{"name":"szOID_CERT_STRONG_KEY_OS_PREFIX","features":[387]},{"name":"szOID_CERT_STRONG_SIGN_OS_1","features":[387]},{"name":"szOID_CERT_STRONG_SIGN_OS_CURRENT","features":[387]},{"name":"szOID_CERT_STRONG_SIGN_OS_PREFIX","features":[387]},{"name":"szOID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[387]},{"name":"szOID_CMC","features":[387]},{"name":"szOID_CMC_ADD_ATTRIBUTES","features":[387]},{"name":"szOID_CMC_ADD_EXTENSIONS","features":[387]},{"name":"szOID_CMC_DATA_RETURN","features":[387]},{"name":"szOID_CMC_DECRYPTED_POP","features":[387]},{"name":"szOID_CMC_ENCRYPTED_POP","features":[387]},{"name":"szOID_CMC_GET_CERT","features":[387]},{"name":"szOID_CMC_GET_CRL","features":[387]},{"name":"szOID_CMC_IDENTIFICATION","features":[387]},{"name":"szOID_CMC_IDENTITY_PROOF","features":[387]},{"name":"szOID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[387]},{"name":"szOID_CMC_ID_POP_LINK_RANDOM","features":[387]},{"name":"szOID_CMC_ID_POP_LINK_WITNESS","features":[387]},{"name":"szOID_CMC_LRA_POP_WITNESS","features":[387]},{"name":"szOID_CMC_QUERY_PENDING","features":[387]},{"name":"szOID_CMC_RECIPIENT_NONCE","features":[387]},{"name":"szOID_CMC_REG_INFO","features":[387]},{"name":"szOID_CMC_RESPONSE_INFO","features":[387]},{"name":"szOID_CMC_REVOKE_REQUEST","features":[387]},{"name":"szOID_CMC_SENDER_NONCE","features":[387]},{"name":"szOID_CMC_STATUS_INFO","features":[387]},{"name":"szOID_CMC_TRANSACTION_ID","features":[387]},{"name":"szOID_CN_ECDSA_SHA256","features":[387]},{"name":"szOID_COMMON_NAME","features":[387]},{"name":"szOID_COUNTRY_NAME","features":[387]},{"name":"szOID_CRL_DIST_POINTS","features":[387]},{"name":"szOID_CRL_NEXT_PUBLISH","features":[387]},{"name":"szOID_CRL_NUMBER","features":[387]},{"name":"szOID_CRL_REASON_CODE","features":[387]},{"name":"szOID_CRL_SELF_CDP","features":[387]},{"name":"szOID_CRL_VIRTUAL_BASE","features":[387]},{"name":"szOID_CROSS_CERTIFICATE_PAIR","features":[387]},{"name":"szOID_CROSS_CERT_DIST_POINTS","features":[387]},{"name":"szOID_CTL","features":[387]},{"name":"szOID_CT_CERT_SCTLIST","features":[387]},{"name":"szOID_CT_PKI_DATA","features":[387]},{"name":"szOID_CT_PKI_RESPONSE","features":[387]},{"name":"szOID_DELTA_CRL_INDICATOR","features":[387]},{"name":"szOID_DESCRIPTION","features":[387]},{"name":"szOID_DESTINATION_INDICATOR","features":[387]},{"name":"szOID_DEVICE_SERIAL_NUMBER","features":[387]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[387]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[387]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[387]},{"name":"szOID_DISALLOWED_HASH","features":[387]},{"name":"szOID_DISALLOWED_LIST","features":[387]},{"name":"szOID_DN_QUALIFIER","features":[387]},{"name":"szOID_DOMAIN_COMPONENT","features":[387]},{"name":"szOID_DRM","features":[387]},{"name":"szOID_DRM_INDIVIDUALIZATION","features":[387]},{"name":"szOID_DS","features":[387]},{"name":"szOID_DSALG","features":[387]},{"name":"szOID_DSALG_CRPT","features":[387]},{"name":"szOID_DSALG_HASH","features":[387]},{"name":"szOID_DSALG_RSA","features":[387]},{"name":"szOID_DSALG_SIGN","features":[387]},{"name":"szOID_DS_EMAIL_REPLICATION","features":[387]},{"name":"szOID_DYNAMIC_CODE_GEN_SIGNER","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160R1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160T1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192R1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192T1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224R1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224T1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256R1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256T1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320R1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320T1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384R1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384T1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512R1","features":[387]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512T1","features":[387]},{"name":"szOID_ECC_CURVE_EC192WAPI","features":[387]},{"name":"szOID_ECC_CURVE_NISTP192","features":[387]},{"name":"szOID_ECC_CURVE_NISTP224","features":[387]},{"name":"szOID_ECC_CURVE_NISTP256","features":[387]},{"name":"szOID_ECC_CURVE_NISTP384","features":[387]},{"name":"szOID_ECC_CURVE_NISTP521","features":[387]},{"name":"szOID_ECC_CURVE_P256","features":[387]},{"name":"szOID_ECC_CURVE_P384","features":[387]},{"name":"szOID_ECC_CURVE_P521","features":[387]},{"name":"szOID_ECC_CURVE_SECP160K1","features":[387]},{"name":"szOID_ECC_CURVE_SECP160R1","features":[387]},{"name":"szOID_ECC_CURVE_SECP160R2","features":[387]},{"name":"szOID_ECC_CURVE_SECP192K1","features":[387]},{"name":"szOID_ECC_CURVE_SECP192R1","features":[387]},{"name":"szOID_ECC_CURVE_SECP224K1","features":[387]},{"name":"szOID_ECC_CURVE_SECP224R1","features":[387]},{"name":"szOID_ECC_CURVE_SECP256K1","features":[387]},{"name":"szOID_ECC_CURVE_SECP256R1","features":[387]},{"name":"szOID_ECC_CURVE_SECP384R1","features":[387]},{"name":"szOID_ECC_CURVE_SECP521R1","features":[387]},{"name":"szOID_ECC_CURVE_WTLS12","features":[387]},{"name":"szOID_ECC_CURVE_WTLS7","features":[387]},{"name":"szOID_ECC_CURVE_WTLS9","features":[387]},{"name":"szOID_ECC_CURVE_X962P192V1","features":[387]},{"name":"szOID_ECC_CURVE_X962P192V2","features":[387]},{"name":"szOID_ECC_CURVE_X962P192V3","features":[387]},{"name":"szOID_ECC_CURVE_X962P239V1","features":[387]},{"name":"szOID_ECC_CURVE_X962P239V2","features":[387]},{"name":"szOID_ECC_CURVE_X962P239V3","features":[387]},{"name":"szOID_ECC_CURVE_X962P256V1","features":[387]},{"name":"szOID_ECC_PUBLIC_KEY","features":[387]},{"name":"szOID_ECDSA_SHA1","features":[387]},{"name":"szOID_ECDSA_SHA256","features":[387]},{"name":"szOID_ECDSA_SHA384","features":[387]},{"name":"szOID_ECDSA_SHA512","features":[387]},{"name":"szOID_ECDSA_SPECIFIED","features":[387]},{"name":"szOID_EFS_RECOVERY","features":[387]},{"name":"szOID_EMBEDDED_NT_CRYPTO","features":[387]},{"name":"szOID_ENCLAVE_SIGNING","features":[387]},{"name":"szOID_ENCRYPTED_KEY_HASH","features":[387]},{"name":"szOID_ENHANCED_KEY_USAGE","features":[387]},{"name":"szOID_ENROLLMENT_AGENT","features":[387]},{"name":"szOID_ENROLLMENT_CSP_PROVIDER","features":[387]},{"name":"szOID_ENROLLMENT_NAME_VALUE_PAIR","features":[387]},{"name":"szOID_ENROLL_AIK_INFO","features":[387]},{"name":"szOID_ENROLL_ATTESTATION_CHALLENGE","features":[387]},{"name":"szOID_ENROLL_ATTESTATION_STATEMENT","features":[387]},{"name":"szOID_ENROLL_CAXCHGCERT_HASH","features":[387]},{"name":"szOID_ENROLL_CERTTYPE_EXTENSION","features":[387]},{"name":"szOID_ENROLL_EKPUB_CHALLENGE","features":[387]},{"name":"szOID_ENROLL_EKVERIFYCERT","features":[387]},{"name":"szOID_ENROLL_EKVERIFYCREDS","features":[387]},{"name":"szOID_ENROLL_EKVERIFYKEY","features":[387]},{"name":"szOID_ENROLL_EK_CA_KEYID","features":[387]},{"name":"szOID_ENROLL_EK_INFO","features":[387]},{"name":"szOID_ENROLL_ENCRYPTION_ALGORITHM","features":[387]},{"name":"szOID_ENROLL_KEY_AFFINITY","features":[387]},{"name":"szOID_ENROLL_KSP_NAME","features":[387]},{"name":"szOID_ENROLL_SCEP_CHALLENGE_ANSWER","features":[387]},{"name":"szOID_ENROLL_SCEP_CLIENT_REQUEST","features":[387]},{"name":"szOID_ENROLL_SCEP_ERROR","features":[387]},{"name":"szOID_ENROLL_SCEP_SERVER_MESSAGE","features":[387]},{"name":"szOID_ENROLL_SCEP_SERVER_SECRET","features":[387]},{"name":"szOID_ENROLL_SCEP_SERVER_STATE","features":[387]},{"name":"szOID_ENROLL_SCEP_SIGNER_HASH","features":[387]},{"name":"szOID_ENTERPRISE_OID_ROOT","features":[387]},{"name":"szOID_EV_RDN_COUNTRY","features":[387]},{"name":"szOID_EV_RDN_LOCALE","features":[387]},{"name":"szOID_EV_RDN_STATE_OR_PROVINCE","features":[387]},{"name":"szOID_EV_WHQL_CRYPTO","features":[387]},{"name":"szOID_FACSIMILE_TELEPHONE_NUMBER","features":[387]},{"name":"szOID_FRESHEST_CRL","features":[387]},{"name":"szOID_GIVEN_NAME","features":[387]},{"name":"szOID_HPKP_DOMAIN_NAME_CTL","features":[387]},{"name":"szOID_HPKP_HEADER_VALUE_CTL","features":[387]},{"name":"szOID_INFOSEC","features":[387]},{"name":"szOID_INFOSEC_SuiteAConfidentiality","features":[387]},{"name":"szOID_INFOSEC_SuiteAIntegrity","features":[387]},{"name":"szOID_INFOSEC_SuiteAKMandSig","features":[387]},{"name":"szOID_INFOSEC_SuiteAKeyManagement","features":[387]},{"name":"szOID_INFOSEC_SuiteASignature","features":[387]},{"name":"szOID_INFOSEC_SuiteATokenProtection","features":[387]},{"name":"szOID_INFOSEC_mosaicConfidentiality","features":[387]},{"name":"szOID_INFOSEC_mosaicIntegrity","features":[387]},{"name":"szOID_INFOSEC_mosaicKMandSig","features":[387]},{"name":"szOID_INFOSEC_mosaicKMandUpdSig","features":[387]},{"name":"szOID_INFOSEC_mosaicKeyManagement","features":[387]},{"name":"szOID_INFOSEC_mosaicSignature","features":[387]},{"name":"szOID_INFOSEC_mosaicTokenProtection","features":[387]},{"name":"szOID_INFOSEC_mosaicUpdatedInteg","features":[387]},{"name":"szOID_INFOSEC_mosaicUpdatedSig","features":[387]},{"name":"szOID_INFOSEC_sdnsConfidentiality","features":[387]},{"name":"szOID_INFOSEC_sdnsIntegrity","features":[387]},{"name":"szOID_INFOSEC_sdnsKMandSig","features":[387]},{"name":"szOID_INFOSEC_sdnsKeyManagement","features":[387]},{"name":"szOID_INFOSEC_sdnsSignature","features":[387]},{"name":"szOID_INFOSEC_sdnsTokenProtection","features":[387]},{"name":"szOID_INHIBIT_ANY_POLICY","features":[387]},{"name":"szOID_INITIALS","features":[387]},{"name":"szOID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[387]},{"name":"szOID_INTERNATIONAL_ISDN_NUMBER","features":[387]},{"name":"szOID_IPSEC_KP_IKE_INTERMEDIATE","features":[387]},{"name":"szOID_ISSUED_CERT_HASH","features":[387]},{"name":"szOID_ISSUER_ALT_NAME","features":[387]},{"name":"szOID_ISSUER_ALT_NAME2","features":[387]},{"name":"szOID_ISSUING_DIST_POINT","features":[387]},{"name":"szOID_IUM_SIGNING","features":[387]},{"name":"szOID_KEYID_RDN","features":[387]},{"name":"szOID_KEY_ATTRIBUTES","features":[387]},{"name":"szOID_KEY_USAGE","features":[387]},{"name":"szOID_KEY_USAGE_RESTRICTION","features":[387]},{"name":"szOID_KP_CA_EXCHANGE","features":[387]},{"name":"szOID_KP_CSP_SIGNATURE","features":[387]},{"name":"szOID_KP_CTL_USAGE_SIGNING","features":[387]},{"name":"szOID_KP_DOCUMENT_SIGNING","features":[387]},{"name":"szOID_KP_EFS","features":[387]},{"name":"szOID_KP_FLIGHT_SIGNING","features":[387]},{"name":"szOID_KP_KERNEL_MODE_CODE_SIGNING","features":[387]},{"name":"szOID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[387]},{"name":"szOID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[387]},{"name":"szOID_KP_KEY_RECOVERY","features":[387]},{"name":"szOID_KP_KEY_RECOVERY_AGENT","features":[387]},{"name":"szOID_KP_LIFETIME_SIGNING","features":[387]},{"name":"szOID_KP_MOBILE_DEVICE_SOFTWARE","features":[387]},{"name":"szOID_KP_PRIVACY_CA","features":[387]},{"name":"szOID_KP_QUALIFIED_SUBORDINATION","features":[387]},{"name":"szOID_KP_SMARTCARD_LOGON","features":[387]},{"name":"szOID_KP_SMART_DISPLAY","features":[387]},{"name":"szOID_KP_TIME_STAMP_SIGNING","features":[387]},{"name":"szOID_KP_TPM_AIK_CERTIFICATE","features":[387]},{"name":"szOID_KP_TPM_EK_CERTIFICATE","features":[387]},{"name":"szOID_KP_TPM_PLATFORM_CERTIFICATE","features":[387]},{"name":"szOID_LEGACY_POLICY_MAPPINGS","features":[387]},{"name":"szOID_LICENSES","features":[387]},{"name":"szOID_LICENSE_SERVER","features":[387]},{"name":"szOID_LOCALITY_NAME","features":[387]},{"name":"szOID_LOCAL_MACHINE_KEYSET","features":[387]},{"name":"szOID_LOGOTYPE_EXT","features":[387]},{"name":"szOID_LOYALTY_OTHER_LOGOTYPE","features":[387]},{"name":"szOID_MEMBER","features":[387]},{"name":"szOID_MICROSOFT_PUBLISHER_SIGNER","features":[387]},{"name":"szOID_NAME_CONSTRAINTS","features":[387]},{"name":"szOID_NETSCAPE","features":[387]},{"name":"szOID_NETSCAPE_BASE_URL","features":[387]},{"name":"szOID_NETSCAPE_CA_POLICY_URL","features":[387]},{"name":"szOID_NETSCAPE_CA_REVOCATION_URL","features":[387]},{"name":"szOID_NETSCAPE_CERT_EXTENSION","features":[387]},{"name":"szOID_NETSCAPE_CERT_RENEWAL_URL","features":[387]},{"name":"szOID_NETSCAPE_CERT_SEQUENCE","features":[387]},{"name":"szOID_NETSCAPE_CERT_TYPE","features":[387]},{"name":"szOID_NETSCAPE_COMMENT","features":[387]},{"name":"szOID_NETSCAPE_DATA_TYPE","features":[387]},{"name":"szOID_NETSCAPE_REVOCATION_URL","features":[387]},{"name":"szOID_NETSCAPE_SSL_SERVER_NAME","features":[387]},{"name":"szOID_NEXT_UPDATE_LOCATION","features":[387]},{"name":"szOID_NIST_AES128_CBC","features":[387]},{"name":"szOID_NIST_AES128_WRAP","features":[387]},{"name":"szOID_NIST_AES192_CBC","features":[387]},{"name":"szOID_NIST_AES192_WRAP","features":[387]},{"name":"szOID_NIST_AES256_CBC","features":[387]},{"name":"szOID_NIST_AES256_WRAP","features":[387]},{"name":"szOID_NIST_sha256","features":[387]},{"name":"szOID_NIST_sha384","features":[387]},{"name":"szOID_NIST_sha512","features":[387]},{"name":"szOID_NT5_CRYPTO","features":[387]},{"name":"szOID_NTDS_CA_SECURITY_EXT","features":[387]},{"name":"szOID_NTDS_OBJECTSID","features":[387]},{"name":"szOID_NTDS_REPLICATION","features":[387]},{"name":"szOID_NT_PRINCIPAL_NAME","features":[387]},{"name":"szOID_OEM_WHQL_CRYPTO","features":[387]},{"name":"szOID_OIW","features":[387]},{"name":"szOID_OIWDIR","features":[387]},{"name":"szOID_OIWDIR_CRPT","features":[387]},{"name":"szOID_OIWDIR_HASH","features":[387]},{"name":"szOID_OIWDIR_SIGN","features":[387]},{"name":"szOID_OIWDIR_md2","features":[387]},{"name":"szOID_OIWDIR_md2RSA","features":[387]},{"name":"szOID_OIWSEC","features":[387]},{"name":"szOID_OIWSEC_desCBC","features":[387]},{"name":"szOID_OIWSEC_desCFB","features":[387]},{"name":"szOID_OIWSEC_desECB","features":[387]},{"name":"szOID_OIWSEC_desEDE","features":[387]},{"name":"szOID_OIWSEC_desMAC","features":[387]},{"name":"szOID_OIWSEC_desOFB","features":[387]},{"name":"szOID_OIWSEC_dhCommMod","features":[387]},{"name":"szOID_OIWSEC_dsa","features":[387]},{"name":"szOID_OIWSEC_dsaComm","features":[387]},{"name":"szOID_OIWSEC_dsaCommSHA","features":[387]},{"name":"szOID_OIWSEC_dsaCommSHA1","features":[387]},{"name":"szOID_OIWSEC_dsaSHA1","features":[387]},{"name":"szOID_OIWSEC_keyHashSeal","features":[387]},{"name":"szOID_OIWSEC_md2RSASign","features":[387]},{"name":"szOID_OIWSEC_md4RSA","features":[387]},{"name":"szOID_OIWSEC_md4RSA2","features":[387]},{"name":"szOID_OIWSEC_md5RSA","features":[387]},{"name":"szOID_OIWSEC_md5RSASign","features":[387]},{"name":"szOID_OIWSEC_mdc2","features":[387]},{"name":"szOID_OIWSEC_mdc2RSA","features":[387]},{"name":"szOID_OIWSEC_rsaSign","features":[387]},{"name":"szOID_OIWSEC_rsaXchg","features":[387]},{"name":"szOID_OIWSEC_sha","features":[387]},{"name":"szOID_OIWSEC_sha1","features":[387]},{"name":"szOID_OIWSEC_sha1RSASign","features":[387]},{"name":"szOID_OIWSEC_shaDSA","features":[387]},{"name":"szOID_OIWSEC_shaRSA","features":[387]},{"name":"szOID_ORGANIZATIONAL_UNIT_NAME","features":[387]},{"name":"szOID_ORGANIZATION_NAME","features":[387]},{"name":"szOID_OS_VERSION","features":[387]},{"name":"szOID_OWNER","features":[387]},{"name":"szOID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[387]},{"name":"szOID_PIN_RULES_CTL","features":[387]},{"name":"szOID_PIN_RULES_DOMAIN_NAME","features":[387]},{"name":"szOID_PIN_RULES_EXT","features":[387]},{"name":"szOID_PIN_RULES_LOG_END_DATE_EXT","features":[387]},{"name":"szOID_PIN_RULES_SIGNER","features":[387]},{"name":"szOID_PKCS","features":[387]},{"name":"szOID_PKCS_1","features":[387]},{"name":"szOID_PKCS_10","features":[387]},{"name":"szOID_PKCS_12","features":[387]},{"name":"szOID_PKCS_12_EXTENDED_ATTRIBUTES","features":[387]},{"name":"szOID_PKCS_12_FRIENDLY_NAME_ATTR","features":[387]},{"name":"szOID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[387]},{"name":"szOID_PKCS_12_LOCAL_KEY_ID","features":[387]},{"name":"szOID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[387]},{"name":"szOID_PKCS_12_PbeIds","features":[387]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC2","features":[387]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC4","features":[387]},{"name":"szOID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[387]},{"name":"szOID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[387]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC2","features":[387]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC4","features":[387]},{"name":"szOID_PKCS_2","features":[387]},{"name":"szOID_PKCS_3","features":[387]},{"name":"szOID_PKCS_4","features":[387]},{"name":"szOID_PKCS_5","features":[387]},{"name":"szOID_PKCS_5_PBES2","features":[387]},{"name":"szOID_PKCS_5_PBKDF2","features":[387]},{"name":"szOID_PKCS_6","features":[387]},{"name":"szOID_PKCS_7","features":[387]},{"name":"szOID_PKCS_7_DATA","features":[387]},{"name":"szOID_PKCS_7_DIGESTED","features":[387]},{"name":"szOID_PKCS_7_ENCRYPTED","features":[387]},{"name":"szOID_PKCS_7_ENVELOPED","features":[387]},{"name":"szOID_PKCS_7_SIGNED","features":[387]},{"name":"szOID_PKCS_7_SIGNEDANDENVELOPED","features":[387]},{"name":"szOID_PKCS_8","features":[387]},{"name":"szOID_PKCS_9","features":[387]},{"name":"szOID_PKCS_9_CONTENT_TYPE","features":[387]},{"name":"szOID_PKCS_9_MESSAGE_DIGEST","features":[387]},{"name":"szOID_PKINIT_KP_KDC","features":[387]},{"name":"szOID_PKIX","features":[387]},{"name":"szOID_PKIX_ACC_DESCR","features":[387]},{"name":"szOID_PKIX_CA_ISSUERS","features":[387]},{"name":"szOID_PKIX_CA_REPOSITORY","features":[387]},{"name":"szOID_PKIX_KP","features":[387]},{"name":"szOID_PKIX_KP_CLIENT_AUTH","features":[387]},{"name":"szOID_PKIX_KP_CODE_SIGNING","features":[387]},{"name":"szOID_PKIX_KP_EMAIL_PROTECTION","features":[387]},{"name":"szOID_PKIX_KP_IPSEC_END_SYSTEM","features":[387]},{"name":"szOID_PKIX_KP_IPSEC_TUNNEL","features":[387]},{"name":"szOID_PKIX_KP_IPSEC_USER","features":[387]},{"name":"szOID_PKIX_KP_OCSP_SIGNING","features":[387]},{"name":"szOID_PKIX_KP_SERVER_AUTH","features":[387]},{"name":"szOID_PKIX_KP_TIMESTAMP_SIGNING","features":[387]},{"name":"szOID_PKIX_NO_SIGNATURE","features":[387]},{"name":"szOID_PKIX_OCSP","features":[387]},{"name":"szOID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[387]},{"name":"szOID_PKIX_OCSP_NOCHECK","features":[387]},{"name":"szOID_PKIX_OCSP_NONCE","features":[387]},{"name":"szOID_PKIX_PE","features":[387]},{"name":"szOID_PKIX_POLICY_QUALIFIER_CPS","features":[387]},{"name":"szOID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[387]},{"name":"szOID_PKIX_TIME_STAMPING","features":[387]},{"name":"szOID_PLATFORM_MANIFEST_BINARY_ID","features":[387]},{"name":"szOID_POLICY_CONSTRAINTS","features":[387]},{"name":"szOID_POLICY_MAPPINGS","features":[387]},{"name":"szOID_POSTAL_ADDRESS","features":[387]},{"name":"szOID_POSTAL_CODE","features":[387]},{"name":"szOID_POST_OFFICE_BOX","features":[387]},{"name":"szOID_PREFERRED_DELIVERY_METHOD","features":[387]},{"name":"szOID_PRESENTATION_ADDRESS","features":[387]},{"name":"szOID_PRIVATEKEY_USAGE_PERIOD","features":[387]},{"name":"szOID_PRODUCT_UPDATE","features":[387]},{"name":"szOID_PROTECTED_PROCESS_LIGHT_SIGNER","features":[387]},{"name":"szOID_PROTECTED_PROCESS_SIGNER","features":[387]},{"name":"szOID_QC_EU_COMPLIANCE","features":[387]},{"name":"szOID_QC_SSCD","features":[387]},{"name":"szOID_QC_STATEMENTS_EXT","features":[387]},{"name":"szOID_RDN_DUMMY_SIGNER","features":[387]},{"name":"szOID_RDN_TCG_PLATFORM_MANUFACTURER","features":[387]},{"name":"szOID_RDN_TCG_PLATFORM_MODEL","features":[387]},{"name":"szOID_RDN_TCG_PLATFORM_VERSION","features":[387]},{"name":"szOID_RDN_TPM_MANUFACTURER","features":[387]},{"name":"szOID_RDN_TPM_MODEL","features":[387]},{"name":"szOID_RDN_TPM_VERSION","features":[387]},{"name":"szOID_REASON_CODE_HOLD","features":[387]},{"name":"szOID_REGISTERED_ADDRESS","features":[387]},{"name":"szOID_REMOVE_CERTIFICATE","features":[387]},{"name":"szOID_RENEWAL_CERTIFICATE","features":[387]},{"name":"szOID_REQUEST_CLIENT_INFO","features":[387]},{"name":"szOID_REQUIRE_CERT_CHAIN_POLICY","features":[387]},{"name":"szOID_REVOKED_LIST_SIGNER","features":[387]},{"name":"szOID_RFC3161_counterSign","features":[387]},{"name":"szOID_RFC3161v21_counterSign","features":[387]},{"name":"szOID_RFC3161v21_thumbprints","features":[387]},{"name":"szOID_ROLE_OCCUPANT","features":[387]},{"name":"szOID_ROOT_LIST_SIGNER","features":[387]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[387]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[387]},{"name":"szOID_ROOT_PROGRAM_FLAGS","features":[387]},{"name":"szOID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[387]},{"name":"szOID_RSA","features":[387]},{"name":"szOID_RSAES_OAEP","features":[387]},{"name":"szOID_RSA_DES_EDE3_CBC","features":[387]},{"name":"szOID_RSA_DH","features":[387]},{"name":"szOID_RSA_ENCRYPT","features":[387]},{"name":"szOID_RSA_HASH","features":[387]},{"name":"szOID_RSA_MD2","features":[387]},{"name":"szOID_RSA_MD2RSA","features":[387]},{"name":"szOID_RSA_MD4","features":[387]},{"name":"szOID_RSA_MD4RSA","features":[387]},{"name":"szOID_RSA_MD5","features":[387]},{"name":"szOID_RSA_MD5RSA","features":[387]},{"name":"szOID_RSA_MGF1","features":[387]},{"name":"szOID_RSA_PSPECIFIED","features":[387]},{"name":"szOID_RSA_RC2CBC","features":[387]},{"name":"szOID_RSA_RC4","features":[387]},{"name":"szOID_RSA_RC5_CBCPad","features":[387]},{"name":"szOID_RSA_RSA","features":[387]},{"name":"szOID_RSA_SETOAEP_RSA","features":[387]},{"name":"szOID_RSA_SHA1RSA","features":[387]},{"name":"szOID_RSA_SHA256RSA","features":[387]},{"name":"szOID_RSA_SHA384RSA","features":[387]},{"name":"szOID_RSA_SHA512RSA","features":[387]},{"name":"szOID_RSA_SMIMECapabilities","features":[387]},{"name":"szOID_RSA_SMIMEalg","features":[387]},{"name":"szOID_RSA_SMIMEalgCMS3DESwrap","features":[387]},{"name":"szOID_RSA_SMIMEalgCMSRC2wrap","features":[387]},{"name":"szOID_RSA_SMIMEalgESDH","features":[387]},{"name":"szOID_RSA_SSA_PSS","features":[387]},{"name":"szOID_RSA_certExtensions","features":[387]},{"name":"szOID_RSA_challengePwd","features":[387]},{"name":"szOID_RSA_contentType","features":[387]},{"name":"szOID_RSA_counterSign","features":[387]},{"name":"szOID_RSA_data","features":[387]},{"name":"szOID_RSA_digestedData","features":[387]},{"name":"szOID_RSA_emailAddr","features":[387]},{"name":"szOID_RSA_encryptedData","features":[387]},{"name":"szOID_RSA_envelopedData","features":[387]},{"name":"szOID_RSA_extCertAttrs","features":[387]},{"name":"szOID_RSA_hashedData","features":[387]},{"name":"szOID_RSA_messageDigest","features":[387]},{"name":"szOID_RSA_preferSignedData","features":[387]},{"name":"szOID_RSA_signEnvData","features":[387]},{"name":"szOID_RSA_signedData","features":[387]},{"name":"szOID_RSA_signingTime","features":[387]},{"name":"szOID_RSA_unstructAddr","features":[387]},{"name":"szOID_RSA_unstructName","features":[387]},{"name":"szOID_SEARCH_GUIDE","features":[387]},{"name":"szOID_SEE_ALSO","features":[387]},{"name":"szOID_SERIALIZED","features":[387]},{"name":"szOID_SERVER_GATED_CRYPTO","features":[387]},{"name":"szOID_SGC_NETSCAPE","features":[387]},{"name":"szOID_SITE_PIN_RULES_FLAGS_ATTR","features":[387]},{"name":"szOID_SITE_PIN_RULES_INDEX_ATTR","features":[387]},{"name":"szOID_SORTED_CTL","features":[387]},{"name":"szOID_STATE_OR_PROVINCE_NAME","features":[387]},{"name":"szOID_STREET_ADDRESS","features":[387]},{"name":"szOID_SUBJECT_ALT_NAME","features":[387]},{"name":"szOID_SUBJECT_ALT_NAME2","features":[387]},{"name":"szOID_SUBJECT_DIR_ATTRS","features":[387]},{"name":"szOID_SUBJECT_INFO_ACCESS","features":[387]},{"name":"szOID_SUBJECT_KEY_IDENTIFIER","features":[387]},{"name":"szOID_SUPPORTED_APPLICATION_CONTEXT","features":[387]},{"name":"szOID_SUR_NAME","features":[387]},{"name":"szOID_SYNC_ROOT_CTL_EXT","features":[387]},{"name":"szOID_TELEPHONE_NUMBER","features":[387]},{"name":"szOID_TELETEXT_TERMINAL_IDENTIFIER","features":[387]},{"name":"szOID_TELEX_NUMBER","features":[387]},{"name":"szOID_TIMESTAMP_TOKEN","features":[387]},{"name":"szOID_TITLE","features":[387]},{"name":"szOID_TLS_FEATURES_EXT","features":[387]},{"name":"szOID_USER_CERTIFICATE","features":[387]},{"name":"szOID_USER_PASSWORD","features":[387]},{"name":"szOID_VERISIGN_BITSTRING_6_13","features":[387]},{"name":"szOID_VERISIGN_ISS_STRONG_CRYPTO","features":[387]},{"name":"szOID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[387]},{"name":"szOID_VERISIGN_PRIVATE_6_9","features":[387]},{"name":"szOID_WHQL_CRYPTO","features":[387]},{"name":"szOID_WINDOWS_KITS_SIGNER","features":[387]},{"name":"szOID_WINDOWS_RT_SIGNER","features":[387]},{"name":"szOID_WINDOWS_SOFTWARE_EXTENSION_SIGNER","features":[387]},{"name":"szOID_WINDOWS_STORE_SIGNER","features":[387]},{"name":"szOID_WINDOWS_TCB_SIGNER","features":[387]},{"name":"szOID_WINDOWS_THIRD_PARTY_COMPONENT_SIGNER","features":[387]},{"name":"szOID_X21_ADDRESS","features":[387]},{"name":"szOID_X957","features":[387]},{"name":"szOID_X957_DSA","features":[387]},{"name":"szOID_X957_SHA1DSA","features":[387]},{"name":"szOID_YESNO_TRUST_ATTR","features":[387]},{"name":"szPRIV_KEY_CACHE_MAX_ITEMS","features":[387]},{"name":"szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS","features":[387]},{"name":"sz_CERT_STORE_PROV_COLLECTION","features":[387]},{"name":"sz_CERT_STORE_PROV_FILENAME","features":[387]},{"name":"sz_CERT_STORE_PROV_FILENAME_W","features":[387]},{"name":"sz_CERT_STORE_PROV_LDAP","features":[387]},{"name":"sz_CERT_STORE_PROV_LDAP_W","features":[387]},{"name":"sz_CERT_STORE_PROV_MEMORY","features":[387]},{"name":"sz_CERT_STORE_PROV_PHYSICAL","features":[387]},{"name":"sz_CERT_STORE_PROV_PHYSICAL_W","features":[387]},{"name":"sz_CERT_STORE_PROV_PKCS12","features":[387]},{"name":"sz_CERT_STORE_PROV_PKCS7","features":[387]},{"name":"sz_CERT_STORE_PROV_SERIALIZED","features":[387]},{"name":"sz_CERT_STORE_PROV_SMART_CARD","features":[387]},{"name":"sz_CERT_STORE_PROV_SMART_CARD_W","features":[387]},{"name":"sz_CERT_STORE_PROV_SYSTEM","features":[387]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY","features":[387]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[387]},{"name":"sz_CERT_STORE_PROV_SYSTEM_W","features":[387]},{"name":"wszURI_CANONICALIZATION_C14N","features":[387]},{"name":"wszURI_CANONICALIZATION_C14NC","features":[387]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14N","features":[387]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14NC","features":[387]},{"name":"wszURI_NTDS_OBJECTSID_PREFIX","features":[387]},{"name":"wszURI_TRANSFORM_XPATH","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_BASE64","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_DSA_SHA1","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA1","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA256","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA384","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA512","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA1","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA256","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA384","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA512","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA1","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA256","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA384","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA512","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_SHA1","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_SHA256","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_SHA384","features":[387]},{"name":"wszURI_XMLNS_DIGSIG_SHA512","features":[387]},{"name":"wszURI_XMLNS_TRANSFORM_BASE64","features":[387]},{"name":"wszURI_XMLNS_TRANSFORM_ENVELOPED","features":[387]},{"name":"wszXMLNS_DIGSIG","features":[387]},{"name":"wszXMLNS_DIGSIG_Id","features":[387]},{"name":"wszXMLNS_DIGSIG_SignatureProperties","features":[387]}],"488":[{"name":"CATALOG_INFO","features":[482]},{"name":"CRYPTCATATTRIBUTE","features":[482]},{"name":"CRYPTCATCDF","features":[303,482]},{"name":"CRYPTCATMEMBER","features":[303,482,483]},{"name":"CRYPTCATSTORE","features":[303,482]},{"name":"CRYPTCAT_ADDCATALOG_HARDLINK","features":[482]},{"name":"CRYPTCAT_ADDCATALOG_NONE","features":[482]},{"name":"CRYPTCAT_ATTR_AUTHENTICATED","features":[482]},{"name":"CRYPTCAT_ATTR_DATAASCII","features":[482]},{"name":"CRYPTCAT_ATTR_DATABASE64","features":[482]},{"name":"CRYPTCAT_ATTR_DATAREPLACE","features":[482]},{"name":"CRYPTCAT_ATTR_NAMEASCII","features":[482]},{"name":"CRYPTCAT_ATTR_NAMEOBJID","features":[482]},{"name":"CRYPTCAT_ATTR_NO_AUTO_COMPAT_ENTRY","features":[482]},{"name":"CRYPTCAT_ATTR_UNAUTHENTICATED","features":[482]},{"name":"CRYPTCAT_E_AREA_ATTRIBUTE","features":[482]},{"name":"CRYPTCAT_E_AREA_HEADER","features":[482]},{"name":"CRYPTCAT_E_AREA_MEMBER","features":[482]},{"name":"CRYPTCAT_E_CDF_ATTR_TOOFEWVALUES","features":[482]},{"name":"CRYPTCAT_E_CDF_ATTR_TYPECOMBO","features":[482]},{"name":"CRYPTCAT_E_CDF_BAD_GUID_CONV","features":[482]},{"name":"CRYPTCAT_E_CDF_DUPLICATE","features":[482]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILENOTFOUND","features":[482]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILE_PATH","features":[482]},{"name":"CRYPTCAT_E_CDF_MEMBER_INDIRECTDATA","features":[482]},{"name":"CRYPTCAT_E_CDF_TAGNOTFOUND","features":[482]},{"name":"CRYPTCAT_E_CDF_UNSUPPORTED","features":[482]},{"name":"CRYPTCAT_FILEEXT","features":[482]},{"name":"CRYPTCAT_MAX_MEMBERTAG","features":[482]},{"name":"CRYPTCAT_MEMBER_SORTED","features":[482]},{"name":"CRYPTCAT_OPEN_ALWAYS","features":[482]},{"name":"CRYPTCAT_OPEN_CREATENEW","features":[482]},{"name":"CRYPTCAT_OPEN_EXCLUDE_PAGE_HASHES","features":[482]},{"name":"CRYPTCAT_OPEN_EXISTING","features":[482]},{"name":"CRYPTCAT_OPEN_FLAGS","features":[482]},{"name":"CRYPTCAT_OPEN_FLAGS_MASK","features":[482]},{"name":"CRYPTCAT_OPEN_INCLUDE_PAGE_HASHES","features":[482]},{"name":"CRYPTCAT_OPEN_NO_CONTENT_HCRYPTMSG","features":[482]},{"name":"CRYPTCAT_OPEN_SORTED","features":[482]},{"name":"CRYPTCAT_OPEN_VERIFYSIGHASH","features":[482]},{"name":"CRYPTCAT_VERSION","features":[482]},{"name":"CRYPTCAT_VERSION_1","features":[482]},{"name":"CRYPTCAT_VERSION_2","features":[482]},{"name":"CryptCATAdminAcquireContext","features":[303,482]},{"name":"CryptCATAdminAcquireContext2","features":[303,482]},{"name":"CryptCATAdminAddCatalog","features":[482]},{"name":"CryptCATAdminCalcHashFromFileHandle","features":[303,482]},{"name":"CryptCATAdminCalcHashFromFileHandle2","features":[303,482]},{"name":"CryptCATAdminEnumCatalogFromHash","features":[482]},{"name":"CryptCATAdminPauseServiceForBackup","features":[303,482]},{"name":"CryptCATAdminReleaseCatalogContext","features":[303,482]},{"name":"CryptCATAdminReleaseContext","features":[303,482]},{"name":"CryptCATAdminRemoveCatalog","features":[303,482]},{"name":"CryptCATAdminResolveCatalogPath","features":[303,482]},{"name":"CryptCATAllocSortedMemberInfo","features":[303,482,483]},{"name":"CryptCATCDFClose","features":[303,482]},{"name":"CryptCATCDFEnumAttributes","features":[303,482,483]},{"name":"CryptCATCDFEnumCatAttributes","features":[303,482]},{"name":"CryptCATCDFEnumMembers","features":[303,482,483]},{"name":"CryptCATCDFOpen","features":[303,482]},{"name":"CryptCATCatalogInfoFromContext","features":[303,482]},{"name":"CryptCATClose","features":[303,482]},{"name":"CryptCATEnumerateAttr","features":[303,482,483]},{"name":"CryptCATEnumerateCatAttr","features":[303,482]},{"name":"CryptCATEnumerateMember","features":[303,482,483]},{"name":"CryptCATFreeSortedMemberInfo","features":[303,482,483]},{"name":"CryptCATGetAttrInfo","features":[303,482,483]},{"name":"CryptCATGetCatAttrInfo","features":[303,482]},{"name":"CryptCATGetMemberInfo","features":[303,482,483]},{"name":"CryptCATHandleFromStore","features":[303,482]},{"name":"CryptCATOpen","features":[303,482]},{"name":"CryptCATPersistStore","features":[303,482]},{"name":"CryptCATPutAttrInfo","features":[303,482,483]},{"name":"CryptCATPutCatAttrInfo","features":[303,482]},{"name":"CryptCATPutMemberInfo","features":[303,482,483]},{"name":"CryptCATStoreFromHandle","features":[303,482]},{"name":"IsCatalogFile","features":[303,482]},{"name":"MS_ADDINFO_CATALOGMEMBER","features":[303,482,483]},{"name":"PFN_CDF_PARSE_ERROR_CALLBACK","features":[482]},{"name":"szOID_CATALOG_LIST","features":[482]},{"name":"szOID_CATALOG_LIST_MEMBER","features":[482]},{"name":"szOID_CATALOG_LIST_MEMBER2","features":[482]}],"489":[{"name":"ADDED_CERT_TYPE","features":[484]},{"name":"AlgorithmFlags","features":[484]},{"name":"AlgorithmFlagsNone","features":[484]},{"name":"AlgorithmFlagsWrap","features":[484]},{"name":"AlgorithmOperationFlags","features":[484]},{"name":"AlgorithmType","features":[484]},{"name":"AllowNoOutstandingRequest","features":[484]},{"name":"AllowNone","features":[484]},{"name":"AllowUntrustedCertificate","features":[484]},{"name":"AllowUntrustedRoot","features":[484]},{"name":"AllowedKeySignature","features":[484]},{"name":"AllowedNullSignature","features":[484]},{"name":"AlternativeNameType","features":[484]},{"name":"CAIF_DSENTRY","features":[484]},{"name":"CAIF_LOCAL","features":[484]},{"name":"CAIF_REGISTRY","features":[484]},{"name":"CAIF_REGISTRYPARENT","features":[484]},{"name":"CAIF_SHAREDFOLDERENTRY","features":[484]},{"name":"CAINFO","features":[484]},{"name":"CAPATHLENGTH_INFINITE","features":[484]},{"name":"CAPropCertificate","features":[484]},{"name":"CAPropCertificateTypes","features":[484]},{"name":"CAPropCommonName","features":[484]},{"name":"CAPropDNSName","features":[484]},{"name":"CAPropDescription","features":[484]},{"name":"CAPropDistinguishedName","features":[484]},{"name":"CAPropRenewalOnly","features":[484]},{"name":"CAPropSanitizedName","features":[484]},{"name":"CAPropSanitizedShortName","features":[484]},{"name":"CAPropSecurity","features":[484]},{"name":"CAPropSiteName","features":[484]},{"name":"CAPropWebServers","features":[484]},{"name":"CA_ACCESS_ADMIN","features":[484]},{"name":"CA_ACCESS_AUDITOR","features":[484]},{"name":"CA_ACCESS_ENROLL","features":[484]},{"name":"CA_ACCESS_MASKROLES","features":[484]},{"name":"CA_ACCESS_OFFICER","features":[484]},{"name":"CA_ACCESS_OPERATOR","features":[484]},{"name":"CA_ACCESS_READ","features":[484]},{"name":"CA_CRL_BASE","features":[484]},{"name":"CA_CRL_DELTA","features":[484]},{"name":"CA_CRL_REPUBLISH","features":[484]},{"name":"CA_DISP_ERROR","features":[484]},{"name":"CA_DISP_INCOMPLETE","features":[484]},{"name":"CA_DISP_INVALID","features":[484]},{"name":"CA_DISP_REVOKED","features":[484]},{"name":"CA_DISP_UNDER_SUBMISSION","features":[484]},{"name":"CA_DISP_VALID","features":[484]},{"name":"CAlternativeName","features":[484]},{"name":"CAlternativeNames","features":[484]},{"name":"CBinaryConverter","features":[484]},{"name":"CCLOCKSKEWMINUTESDEFAULT","features":[484]},{"name":"CC_DEFAULTCONFIG","features":[484]},{"name":"CC_FIRSTCONFIG","features":[484]},{"name":"CC_LOCALACTIVECONFIG","features":[484]},{"name":"CC_LOCALCONFIG","features":[484]},{"name":"CC_UIPICKCONFIG","features":[484]},{"name":"CC_UIPICKCONFIGSKIPLOCALCA","features":[484]},{"name":"CCertAdmin","features":[484]},{"name":"CCertConfig","features":[484]},{"name":"CCertEncodeAltName","features":[484]},{"name":"CCertEncodeBitString","features":[484]},{"name":"CCertEncodeCRLDistInfo","features":[484]},{"name":"CCertEncodeDateArray","features":[484]},{"name":"CCertEncodeLongArray","features":[484]},{"name":"CCertEncodeStringArray","features":[484]},{"name":"CCertGetConfig","features":[484]},{"name":"CCertProperties","features":[484]},{"name":"CCertProperty","features":[484]},{"name":"CCertPropertyArchived","features":[484]},{"name":"CCertPropertyArchivedKeyHash","features":[484]},{"name":"CCertPropertyAutoEnroll","features":[484]},{"name":"CCertPropertyBackedUp","features":[484]},{"name":"CCertPropertyDescription","features":[484]},{"name":"CCertPropertyEnrollment","features":[484]},{"name":"CCertPropertyEnrollmentPolicyServer","features":[484]},{"name":"CCertPropertyFriendlyName","features":[484]},{"name":"CCertPropertyKeyProvInfo","features":[484]},{"name":"CCertPropertyRenewal","features":[484]},{"name":"CCertPropertyRequestOriginator","features":[484]},{"name":"CCertPropertySHA1Hash","features":[484]},{"name":"CCertRequest","features":[484]},{"name":"CCertServerExit","features":[484]},{"name":"CCertServerPolicy","features":[484]},{"name":"CCertView","features":[484]},{"name":"CCertificateAttestationChallenge","features":[484]},{"name":"CCertificatePolicies","features":[484]},{"name":"CCertificatePolicy","features":[484]},{"name":"CCryptAttribute","features":[484]},{"name":"CCryptAttributes","features":[484]},{"name":"CCspInformation","features":[484]},{"name":"CCspInformations","features":[484]},{"name":"CCspStatus","features":[484]},{"name":"CDR_EXPIRED","features":[484]},{"name":"CDR_REQUEST_LAST_CHANGED","features":[484]},{"name":"CERTADMIN_GET_ROLES_FLAGS","features":[484]},{"name":"CERTENROLL_INDEX_BASE","features":[484]},{"name":"CERTENROLL_OBJECTID","features":[484]},{"name":"CERTENROLL_PROPERTYID","features":[484]},{"name":"CERTTRANSBLOB","features":[484]},{"name":"CERTVIEWRESTRICTION","features":[484]},{"name":"CERT_ALT_NAME","features":[484]},{"name":"CERT_ALT_NAME_DIRECTORY_NAME","features":[484]},{"name":"CERT_ALT_NAME_DNS_NAME","features":[484]},{"name":"CERT_ALT_NAME_IP_ADDRESS","features":[484]},{"name":"CERT_ALT_NAME_OTHER_NAME","features":[484]},{"name":"CERT_ALT_NAME_REGISTERED_ID","features":[484]},{"name":"CERT_ALT_NAME_RFC822_NAME","features":[484]},{"name":"CERT_ALT_NAME_URL","features":[484]},{"name":"CERT_CREATE_REQUEST_FLAGS","features":[484]},{"name":"CERT_DELETE_ROW_FLAGS","features":[484]},{"name":"CERT_EXIT_EVENT_MASK","features":[484]},{"name":"CERT_GET_CONFIG_FLAGS","features":[484]},{"name":"CERT_IMPORT_FLAGS","features":[484]},{"name":"CERT_PROPERTY_TYPE","features":[484]},{"name":"CERT_REQUEST_OUT_TYPE","features":[484]},{"name":"CERT_VIEW_COLUMN_INDEX","features":[484]},{"name":"CERT_VIEW_SEEK_OPERATOR_FLAGS","features":[484]},{"name":"CEnroll","features":[484]},{"name":"CEnroll2","features":[484]},{"name":"CMM_READONLY","features":[484]},{"name":"CMM_REFRESHONLY","features":[484]},{"name":"CObjectId","features":[484]},{"name":"CObjectIds","features":[484]},{"name":"CPF_BADURL_ERROR","features":[484]},{"name":"CPF_BASE","features":[484]},{"name":"CPF_CASTORE_ERROR","features":[484]},{"name":"CPF_COMPLETE","features":[484]},{"name":"CPF_DELTA","features":[484]},{"name":"CPF_FILE_ERROR","features":[484]},{"name":"CPF_FTP_ERROR","features":[484]},{"name":"CPF_HTTP_ERROR","features":[484]},{"name":"CPF_LDAP_ERROR","features":[484]},{"name":"CPF_MANUAL","features":[484]},{"name":"CPF_POSTPONED_BASE_FILE_ERROR","features":[484]},{"name":"CPF_POSTPONED_BASE_LDAP_ERROR","features":[484]},{"name":"CPF_SHADOW","features":[484]},{"name":"CPF_SIGNATURE_ERROR","features":[484]},{"name":"CPolicyQualifier","features":[484]},{"name":"CPolicyQualifiers","features":[484]},{"name":"CRLF_ALLOW_REQUEST_ATTRIBUTE_SUBJECT","features":[484]},{"name":"CRLF_BUILD_ROOTCA_CRLENTRIES_BASEDONKEY","features":[484]},{"name":"CRLF_CRLNUMBER_CRITICAL","features":[484]},{"name":"CRLF_DELETE_EXPIRED_CRLS","features":[484]},{"name":"CRLF_DELTA_USE_OLDEST_UNEXPIRED_BASE","features":[484]},{"name":"CRLF_DISABLE_CHAIN_VERIFICATION","features":[484]},{"name":"CRLF_DISABLE_RDN_REORDER","features":[484]},{"name":"CRLF_DISABLE_ROOT_CROSS_CERTS","features":[484]},{"name":"CRLF_ENFORCE_ENROLLMENT_AGENT","features":[484]},{"name":"CRLF_IGNORE_CROSS_CERT_TRUST_ERROR","features":[484]},{"name":"CRLF_IGNORE_INVALID_POLICIES","features":[484]},{"name":"CRLF_IGNORE_UNKNOWN_CMC_ATTRIBUTES","features":[484]},{"name":"CRLF_LOG_FULL_RESPONSE","features":[484]},{"name":"CRLF_PRESERVE_EXPIRED_CA_CERTS","features":[484]},{"name":"CRLF_PRESERVE_REVOKED_CA_CERTS","features":[484]},{"name":"CRLF_PUBLISH_EXPIRED_CERT_CRLS","features":[484]},{"name":"CRLF_REBUILD_MODIFIED_SUBJECT_ONLY","features":[484]},{"name":"CRLF_REVCHECK_IGNORE_NOREVCHECK","features":[484]},{"name":"CRLF_REVCHECK_IGNORE_OFFLINE","features":[484]},{"name":"CRLF_SAVE_FAILED_CERTS","features":[484]},{"name":"CRLF_USE_CROSS_CERT_TEMPLATE","features":[484]},{"name":"CRLF_USE_XCHG_CERT_TEMPLATE","features":[484]},{"name":"CRLRevocationReason","features":[484]},{"name":"CRYPT_ENUM_ALL_PROVIDERS","features":[484]},{"name":"CR_DISP","features":[484]},{"name":"CR_DISP_DENIED","features":[484]},{"name":"CR_DISP_ERROR","features":[484]},{"name":"CR_DISP_INCOMPLETE","features":[484]},{"name":"CR_DISP_ISSUED","features":[484]},{"name":"CR_DISP_ISSUED_OUT_OF_BAND","features":[484]},{"name":"CR_DISP_REVOKED","features":[484]},{"name":"CR_DISP_UNDER_SUBMISSION","features":[484]},{"name":"CR_FLG_CACROSSCERT","features":[484]},{"name":"CR_FLG_CAXCHGCERT","features":[484]},{"name":"CR_FLG_CHALLENGEPENDING","features":[484]},{"name":"CR_FLG_CHALLENGESATISFIED","features":[484]},{"name":"CR_FLG_DEFINEDCACERT","features":[484]},{"name":"CR_FLG_ENFORCEUTF8","features":[484]},{"name":"CR_FLG_ENROLLONBEHALFOF","features":[484]},{"name":"CR_FLG_FORCETELETEX","features":[484]},{"name":"CR_FLG_FORCEUTF8","features":[484]},{"name":"CR_FLG_PUBLISHERROR","features":[484]},{"name":"CR_FLG_RENEWAL","features":[484]},{"name":"CR_FLG_SUBJECTUNMODIFIED","features":[484]},{"name":"CR_FLG_TRUSTEKCERT","features":[484]},{"name":"CR_FLG_TRUSTEKKEY","features":[484]},{"name":"CR_FLG_TRUSTONUSE","features":[484]},{"name":"CR_FLG_VALIDENCRYPTEDKEYHASH","features":[484]},{"name":"CR_GEMT_DEFAULT","features":[484]},{"name":"CR_GEMT_HRESULT_STRING","features":[484]},{"name":"CR_GEMT_HTTP_ERROR","features":[484]},{"name":"CR_IN_BASE64","features":[484]},{"name":"CR_IN_BASE64HEADER","features":[484]},{"name":"CR_IN_BINARY","features":[484]},{"name":"CR_IN_CERTIFICATETRANSPARENCY","features":[484]},{"name":"CR_IN_CHALLENGERESPONSE","features":[484]},{"name":"CR_IN_CLIENTIDNONE","features":[484]},{"name":"CR_IN_CMC","features":[484]},{"name":"CR_IN_CONNECTONLY","features":[484]},{"name":"CR_IN_CRLS","features":[484]},{"name":"CR_IN_ENCODEANY","features":[484]},{"name":"CR_IN_ENCODEMASK","features":[484]},{"name":"CR_IN_FORMATANY","features":[484]},{"name":"CR_IN_FORMATMASK","features":[484]},{"name":"CR_IN_FULLRESPONSE","features":[484]},{"name":"CR_IN_HTTP","features":[484]},{"name":"CR_IN_KEYGEN","features":[484]},{"name":"CR_IN_MACHINE","features":[484]},{"name":"CR_IN_PKCS10","features":[484]},{"name":"CR_IN_PKCS7","features":[484]},{"name":"CR_IN_RETURNCHALLENGE","features":[484]},{"name":"CR_IN_ROBO","features":[484]},{"name":"CR_IN_RPC","features":[484]},{"name":"CR_IN_SCEP","features":[484]},{"name":"CR_IN_SCEPPOST","features":[484]},{"name":"CR_IN_SIGNEDCERTIFICATETIMESTAMPLIST","features":[484]},{"name":"CR_OUT_BASE64","features":[484]},{"name":"CR_OUT_BASE64HEADER","features":[484]},{"name":"CR_OUT_BASE64REQUESTHEADER","features":[484]},{"name":"CR_OUT_BASE64X509CRLHEADER","features":[484]},{"name":"CR_OUT_BINARY","features":[484]},{"name":"CR_OUT_CHAIN","features":[484]},{"name":"CR_OUT_CRLS","features":[484]},{"name":"CR_OUT_ENCODEMASK","features":[484]},{"name":"CR_OUT_HEX","features":[484]},{"name":"CR_OUT_HEXADDR","features":[484]},{"name":"CR_OUT_HEXASCII","features":[484]},{"name":"CR_OUT_HEXASCIIADDR","features":[484]},{"name":"CR_OUT_HEXRAW","features":[484]},{"name":"CR_OUT_NOCR","features":[484]},{"name":"CR_OUT_NOCRLF","features":[484]},{"name":"CR_PROP_ADVANCEDSERVER","features":[484]},{"name":"CR_PROP_BASECRL","features":[484]},{"name":"CR_PROP_BASECRLPUBLISHSTATUS","features":[484]},{"name":"CR_PROP_CABACKWARDCROSSCERT","features":[484]},{"name":"CR_PROP_CABACKWARDCROSSCERTSTATE","features":[484]},{"name":"CR_PROP_CACERTSTATE","features":[484]},{"name":"CR_PROP_CACERTSTATUSCODE","features":[484]},{"name":"CR_PROP_CACERTVERSION","features":[484]},{"name":"CR_PROP_CAFORWARDCROSSCERT","features":[484]},{"name":"CR_PROP_CAFORWARDCROSSCERTSTATE","features":[484]},{"name":"CR_PROP_CANAME","features":[484]},{"name":"CR_PROP_CAPROPIDMAX","features":[484]},{"name":"CR_PROP_CASIGCERT","features":[484]},{"name":"CR_PROP_CASIGCERTCHAIN","features":[484]},{"name":"CR_PROP_CASIGCERTCOUNT","features":[484]},{"name":"CR_PROP_CASIGCERTCRLCHAIN","features":[484]},{"name":"CR_PROP_CATYPE","features":[484]},{"name":"CR_PROP_CAXCHGCERT","features":[484]},{"name":"CR_PROP_CAXCHGCERTCHAIN","features":[484]},{"name":"CR_PROP_CAXCHGCERTCOUNT","features":[484]},{"name":"CR_PROP_CAXCHGCERTCRLCHAIN","features":[484]},{"name":"CR_PROP_CERTAIAOCSPURLS","features":[484]},{"name":"CR_PROP_CERTAIAURLS","features":[484]},{"name":"CR_PROP_CERTCDPURLS","features":[484]},{"name":"CR_PROP_CRLSTATE","features":[484]},{"name":"CR_PROP_DELTACRL","features":[484]},{"name":"CR_PROP_DELTACRLPUBLISHSTATUS","features":[484]},{"name":"CR_PROP_DNSNAME","features":[484]},{"name":"CR_PROP_EXITCOUNT","features":[484]},{"name":"CR_PROP_EXITDESCRIPTION","features":[484]},{"name":"CR_PROP_FILEVERSION","features":[484]},{"name":"CR_PROP_KRACERT","features":[484]},{"name":"CR_PROP_KRACERTCOUNT","features":[484]},{"name":"CR_PROP_KRACERTSTATE","features":[484]},{"name":"CR_PROP_KRACERTUSEDCOUNT","features":[484]},{"name":"CR_PROP_LOCALENAME","features":[484]},{"name":"CR_PROP_NONE","features":[484]},{"name":"CR_PROP_PARENTCA","features":[484]},{"name":"CR_PROP_POLICYDESCRIPTION","features":[484]},{"name":"CR_PROP_PRODUCTVERSION","features":[484]},{"name":"CR_PROP_ROLESEPARATIONENABLED","features":[484]},{"name":"CR_PROP_SANITIZEDCANAME","features":[484]},{"name":"CR_PROP_SANITIZEDCASHORTNAME","features":[484]},{"name":"CR_PROP_SCEPMAX","features":[484]},{"name":"CR_PROP_SCEPMIN","features":[484]},{"name":"CR_PROP_SCEPSERVERCAPABILITIES","features":[484]},{"name":"CR_PROP_SCEPSERVERCERTS","features":[484]},{"name":"CR_PROP_SCEPSERVERCERTSCHAIN","features":[484]},{"name":"CR_PROP_SHAREDFOLDER","features":[484]},{"name":"CR_PROP_SUBJECTTEMPLATE_OIDS","features":[484]},{"name":"CR_PROP_TEMPLATES","features":[484]},{"name":"CSBACKUP_DISABLE_INCREMENTAL","features":[484]},{"name":"CSBACKUP_TYPE","features":[484]},{"name":"CSBACKUP_TYPE_FULL","features":[484]},{"name":"CSBACKUP_TYPE_LOGS_ONLY","features":[484]},{"name":"CSBACKUP_TYPE_MASK","features":[484]},{"name":"CSBFT_DATABASE_DIRECTORY","features":[484]},{"name":"CSBFT_DIRECTORY","features":[484]},{"name":"CSBFT_LOG_DIRECTORY","features":[484]},{"name":"CSCONTROL_RESTART","features":[484]},{"name":"CSCONTROL_SHUTDOWN","features":[484]},{"name":"CSCONTROL_SUSPEND","features":[484]},{"name":"CSEDB_RSTMAPW","features":[484]},{"name":"CSRESTORE_TYPE_CATCHUP","features":[484]},{"name":"CSRESTORE_TYPE_FULL","features":[484]},{"name":"CSRESTORE_TYPE_MASK","features":[484]},{"name":"CSRESTORE_TYPE_ONLINE","features":[484]},{"name":"CSURL_ADDTOCERTCDP","features":[484]},{"name":"CSURL_ADDTOCERTOCSP","features":[484]},{"name":"CSURL_ADDTOCRLCDP","features":[484]},{"name":"CSURL_ADDTOFRESHESTCRL","features":[484]},{"name":"CSURL_ADDTOIDP","features":[484]},{"name":"CSURL_PUBLISHRETRY","features":[484]},{"name":"CSURL_SERVERPUBLISH","features":[484]},{"name":"CSURL_SERVERPUBLISHDELTA","features":[484]},{"name":"CSVER_MAJOR","features":[484]},{"name":"CSVER_MAJOR_LONGHORN","features":[484]},{"name":"CSVER_MAJOR_THRESHOLD","features":[484]},{"name":"CSVER_MAJOR_WHISTLER","features":[484]},{"name":"CSVER_MAJOR_WIN2K","features":[484]},{"name":"CSVER_MAJOR_WIN7","features":[484]},{"name":"CSVER_MAJOR_WIN8","features":[484]},{"name":"CSVER_MAJOR_WINBLUE","features":[484]},{"name":"CSVER_MINOR","features":[484]},{"name":"CSVER_MINOR_LONGHORN_BETA1","features":[484]},{"name":"CSVER_MINOR_THRESHOLD","features":[484]},{"name":"CSVER_MINOR_WHISTLER_BETA2","features":[484]},{"name":"CSVER_MINOR_WHISTLER_BETA3","features":[484]},{"name":"CSVER_MINOR_WIN2K","features":[484]},{"name":"CSVER_MINOR_WIN7","features":[484]},{"name":"CSVER_MINOR_WIN8","features":[484]},{"name":"CSVER_MINOR_WINBLUE","features":[484]},{"name":"CSignerCertificate","features":[484]},{"name":"CSmimeCapabilities","features":[484]},{"name":"CSmimeCapability","features":[484]},{"name":"CVIEWAGEMINUTESDEFAULT","features":[484]},{"name":"CVRC_COLUMN","features":[484]},{"name":"CVRC_COLUMN_MASK","features":[484]},{"name":"CVRC_COLUMN_RESULT","features":[484]},{"name":"CVRC_COLUMN_SCHEMA","features":[484]},{"name":"CVRC_COLUMN_VALUE","features":[484]},{"name":"CVRC_TABLE","features":[484]},{"name":"CVRC_TABLE_ATTRIBUTES","features":[484]},{"name":"CVRC_TABLE_CRL","features":[484]},{"name":"CVRC_TABLE_EXTENSIONS","features":[484]},{"name":"CVRC_TABLE_MASK","features":[484]},{"name":"CVRC_TABLE_REQCERT","features":[484]},{"name":"CVRC_TABLE_SHIFT","features":[484]},{"name":"CVR_SEEK_EQ","features":[484]},{"name":"CVR_SEEK_GE","features":[484]},{"name":"CVR_SEEK_GT","features":[484]},{"name":"CVR_SEEK_LE","features":[484]},{"name":"CVR_SEEK_LT","features":[484]},{"name":"CVR_SEEK_MASK","features":[484]},{"name":"CVR_SEEK_NODELTA","features":[484]},{"name":"CVR_SEEK_NONE","features":[484]},{"name":"CVR_SORT_ASCEND","features":[484]},{"name":"CVR_SORT_DESCEND","features":[484]},{"name":"CVR_SORT_NONE","features":[484]},{"name":"CV_COLUMN_ATTRIBUTE_DEFAULT","features":[484]},{"name":"CV_COLUMN_CRL_DEFAULT","features":[484]},{"name":"CV_COLUMN_EXTENSION_DEFAULT","features":[484]},{"name":"CV_COLUMN_LOG_DEFAULT","features":[484]},{"name":"CV_COLUMN_LOG_FAILED_DEFAULT","features":[484]},{"name":"CV_COLUMN_LOG_REVOKED_DEFAULT","features":[484]},{"name":"CV_COLUMN_QUEUE_DEFAULT","features":[484]},{"name":"CV_OUT_BASE64","features":[484]},{"name":"CV_OUT_BASE64HEADER","features":[484]},{"name":"CV_OUT_BASE64REQUESTHEADER","features":[484]},{"name":"CV_OUT_BASE64X509CRLHEADER","features":[484]},{"name":"CV_OUT_BINARY","features":[484]},{"name":"CV_OUT_ENCODEMASK","features":[484]},{"name":"CV_OUT_HEX","features":[484]},{"name":"CV_OUT_HEXADDR","features":[484]},{"name":"CV_OUT_HEXASCII","features":[484]},{"name":"CV_OUT_HEXASCIIADDR","features":[484]},{"name":"CV_OUT_HEXRAW","features":[484]},{"name":"CV_OUT_NOCR","features":[484]},{"name":"CV_OUT_NOCRLF","features":[484]},{"name":"CX500DistinguishedName","features":[484]},{"name":"CX509Attribute","features":[484]},{"name":"CX509AttributeArchiveKey","features":[484]},{"name":"CX509AttributeArchiveKeyHash","features":[484]},{"name":"CX509AttributeClientId","features":[484]},{"name":"CX509AttributeCspProvider","features":[484]},{"name":"CX509AttributeExtensions","features":[484]},{"name":"CX509AttributeOSVersion","features":[484]},{"name":"CX509AttributeRenewalCertificate","features":[484]},{"name":"CX509Attributes","features":[484]},{"name":"CX509CertificateRequestCertificate","features":[484]},{"name":"CX509CertificateRequestCmc","features":[484]},{"name":"CX509CertificateRequestPkcs10","features":[484]},{"name":"CX509CertificateRequestPkcs7","features":[484]},{"name":"CX509CertificateRevocationList","features":[484]},{"name":"CX509CertificateRevocationListEntries","features":[484]},{"name":"CX509CertificateRevocationListEntry","features":[484]},{"name":"CX509CertificateTemplateADWritable","features":[484]},{"name":"CX509EndorsementKey","features":[484]},{"name":"CX509Enrollment","features":[484]},{"name":"CX509EnrollmentHelper","features":[484]},{"name":"CX509EnrollmentPolicyActiveDirectory","features":[484]},{"name":"CX509EnrollmentPolicyWebService","features":[484]},{"name":"CX509EnrollmentWebClassFactory","features":[484]},{"name":"CX509Extension","features":[484]},{"name":"CX509ExtensionAlternativeNames","features":[484]},{"name":"CX509ExtensionAuthorityKeyIdentifier","features":[484]},{"name":"CX509ExtensionBasicConstraints","features":[484]},{"name":"CX509ExtensionCertificatePolicies","features":[484]},{"name":"CX509ExtensionEnhancedKeyUsage","features":[484]},{"name":"CX509ExtensionKeyUsage","features":[484]},{"name":"CX509ExtensionMSApplicationPolicies","features":[484]},{"name":"CX509ExtensionSmimeCapabilities","features":[484]},{"name":"CX509ExtensionSubjectKeyIdentifier","features":[484]},{"name":"CX509ExtensionTemplate","features":[484]},{"name":"CX509ExtensionTemplateName","features":[484]},{"name":"CX509Extensions","features":[484]},{"name":"CX509MachineEnrollmentFactory","features":[484]},{"name":"CX509NameValuePair","features":[484]},{"name":"CX509PolicyServerListManager","features":[484]},{"name":"CX509PolicyServerUrl","features":[484]},{"name":"CX509PrivateKey","features":[484]},{"name":"CX509PublicKey","features":[484]},{"name":"CX509SCEPEnrollment","features":[484]},{"name":"CX509SCEPEnrollmentHelper","features":[484]},{"name":"CertSrvBackupClose","features":[484]},{"name":"CertSrvBackupEnd","features":[484]},{"name":"CertSrvBackupFree","features":[484]},{"name":"CertSrvBackupGetBackupLogsW","features":[484]},{"name":"CertSrvBackupGetDatabaseNamesW","features":[484]},{"name":"CertSrvBackupGetDynamicFileListW","features":[484]},{"name":"CertSrvBackupOpenFileW","features":[484]},{"name":"CertSrvBackupPrepareW","features":[484]},{"name":"CertSrvBackupRead","features":[484]},{"name":"CertSrvBackupTruncateLogs","features":[484]},{"name":"CertSrvIsServerOnlineW","features":[303,484]},{"name":"CertSrvRestoreEnd","features":[484]},{"name":"CertSrvRestoreGetDatabaseLocationsW","features":[484]},{"name":"CertSrvRestorePrepareW","features":[484]},{"name":"CertSrvRestoreRegisterComplete","features":[484]},{"name":"CertSrvRestoreRegisterThroughFile","features":[484]},{"name":"CertSrvRestoreRegisterW","features":[484]},{"name":"CertSrvServerControlW","features":[484]},{"name":"ClientIdAutoEnroll","features":[484]},{"name":"ClientIdAutoEnroll2003","features":[484]},{"name":"ClientIdCertReq","features":[484]},{"name":"ClientIdCertReq2003","features":[484]},{"name":"ClientIdDefaultRequest","features":[484]},{"name":"ClientIdEOBO","features":[484]},{"name":"ClientIdNone","features":[484]},{"name":"ClientIdRequestWizard","features":[484]},{"name":"ClientIdTest","features":[484]},{"name":"ClientIdUserStart","features":[484]},{"name":"ClientIdWinRT","features":[484]},{"name":"ClientIdWizard2003","features":[484]},{"name":"ClientIdXEnroll2003","features":[484]},{"name":"CommitFlagDeleteTemplate","features":[484]},{"name":"CommitFlagSaveTemplateGenerateOID","features":[484]},{"name":"CommitFlagSaveTemplateOverwrite","features":[484]},{"name":"CommitFlagSaveTemplateUseCurrentOID","features":[484]},{"name":"CommitTemplateFlags","features":[484]},{"name":"ContextAdministratorForceMachine","features":[484]},{"name":"ContextMachine","features":[484]},{"name":"ContextNone","features":[484]},{"name":"ContextUser","features":[484]},{"name":"DBFLAGS_CHECKPOINTDEPTH60MB","features":[484]},{"name":"DBFLAGS_CIRCULARLOGGING","features":[484]},{"name":"DBFLAGS_CREATEIFNEEDED","features":[484]},{"name":"DBFLAGS_DISABLESNAPSHOTBACKUP","features":[484]},{"name":"DBFLAGS_ENABLEVOLATILEREQUESTS","features":[484]},{"name":"DBFLAGS_LAZYFLUSH","features":[484]},{"name":"DBFLAGS_LOGBUFFERSHUGE","features":[484]},{"name":"DBFLAGS_LOGBUFFERSLARGE","features":[484]},{"name":"DBFLAGS_LOGFILESIZE16MB","features":[484]},{"name":"DBFLAGS_MAXCACHESIZEX100","features":[484]},{"name":"DBFLAGS_MULTITHREADTRANSACTIONS","features":[484]},{"name":"DBFLAGS_READONLY","features":[484]},{"name":"DBG_CERTSRV","features":[484]},{"name":"DBSESSIONCOUNTDEFAULT","features":[484]},{"name":"DB_DISP_ACTIVE","features":[484]},{"name":"DB_DISP_CA_CERT","features":[484]},{"name":"DB_DISP_CA_CERT_CHAIN","features":[484]},{"name":"DB_DISP_DENIED","features":[484]},{"name":"DB_DISP_ERROR","features":[484]},{"name":"DB_DISP_FOREIGN","features":[484]},{"name":"DB_DISP_ISSUED","features":[484]},{"name":"DB_DISP_KRA_CERT","features":[484]},{"name":"DB_DISP_LOG_FAILED_MIN","features":[484]},{"name":"DB_DISP_LOG_MIN","features":[484]},{"name":"DB_DISP_PENDING","features":[484]},{"name":"DB_DISP_QUEUE_MAX","features":[484]},{"name":"DB_DISP_REVOKED","features":[484]},{"name":"DefaultNone","features":[484]},{"name":"DefaultPolicyServer","features":[484]},{"name":"DelayRetryAction","features":[484]},{"name":"DelayRetryLong","features":[484]},{"name":"DelayRetryNone","features":[484]},{"name":"DelayRetryPastSuccess","features":[484]},{"name":"DelayRetryShort","features":[484]},{"name":"DelayRetrySuccess","features":[484]},{"name":"DelayRetryUnknown","features":[484]},{"name":"DisableGroupPolicyList","features":[484]},{"name":"DisableUserServerList","features":[484]},{"name":"DisplayNo","features":[484]},{"name":"DisplayYes","features":[484]},{"name":"EANR_SUPPRESS_IA5CONVERSION","features":[484]},{"name":"EAN_NAMEOBJECTID","features":[484]},{"name":"EDITF_ADDOLDCERTTYPE","features":[484]},{"name":"EDITF_ADDOLDKEYUSAGE","features":[484]},{"name":"EDITF_ATTRIBUTECA","features":[484]},{"name":"EDITF_ATTRIBUTEEKU","features":[484]},{"name":"EDITF_ATTRIBUTEENDDATE","features":[484]},{"name":"EDITF_ATTRIBUTESUBJECTALTNAME2","features":[484]},{"name":"EDITF_AUDITCERTTEMPLATELOAD","features":[484]},{"name":"EDITF_BASICCONSTRAINTSCA","features":[484]},{"name":"EDITF_BASICCONSTRAINTSCRITICAL","features":[484]},{"name":"EDITF_DISABLEEXTENSIONLIST","features":[484]},{"name":"EDITF_DISABLELDAPPACKAGELIST","features":[484]},{"name":"EDITF_DISABLEOLDOSCNUPN","features":[484]},{"name":"EDITF_EMAILOPTIONAL","features":[484]},{"name":"EDITF_ENABLEAKICRITICAL","features":[484]},{"name":"EDITF_ENABLEAKIISSUERNAME","features":[484]},{"name":"EDITF_ENABLEAKIISSUERSERIAL","features":[484]},{"name":"EDITF_ENABLEAKIKEYID","features":[484]},{"name":"EDITF_ENABLECHASECLIENTDC","features":[484]},{"name":"EDITF_ENABLEDEFAULTSMIME","features":[484]},{"name":"EDITF_ENABLEKEYENCIPHERMENTCACERT","features":[484]},{"name":"EDITF_ENABLELDAPREFERRALS","features":[484]},{"name":"EDITF_ENABLEOCSPREVNOCHECK","features":[484]},{"name":"EDITF_ENABLERENEWONBEHALFOF","features":[484]},{"name":"EDITF_ENABLEREQUESTEXTENSIONS","features":[484]},{"name":"EDITF_ENABLEUPNMAP","features":[484]},{"name":"EDITF_IGNOREREQUESTERGROUP","features":[484]},{"name":"EDITF_REQUESTEXTENSIONLIST","features":[484]},{"name":"EDITF_SERVERUPGRADED","features":[484]},{"name":"ENUMEXT_OBJECTID","features":[484]},{"name":"ENUM_CATYPES","features":[484]},{"name":"ENUM_CERT_COLUMN_VALUE_FLAGS","features":[484]},{"name":"ENUM_ENTERPRISE_ROOTCA","features":[484]},{"name":"ENUM_ENTERPRISE_SUBCA","features":[484]},{"name":"ENUM_STANDALONE_ROOTCA","features":[484]},{"name":"ENUM_STANDALONE_SUBCA","features":[484]},{"name":"ENUM_UNKNOWN_CA","features":[484]},{"name":"EXITEVENT_CERTDENIED","features":[484]},{"name":"EXITEVENT_CERTIMPORTED","features":[484]},{"name":"EXITEVENT_CERTISSUED","features":[484]},{"name":"EXITEVENT_CERTPENDING","features":[484]},{"name":"EXITEVENT_CERTRETRIEVEPENDING","features":[484]},{"name":"EXITEVENT_CERTREVOKED","features":[484]},{"name":"EXITEVENT_CRLISSUED","features":[484]},{"name":"EXITEVENT_INVALID","features":[484]},{"name":"EXITEVENT_SHUTDOWN","features":[484]},{"name":"EXITEVENT_STARTUP","features":[484]},{"name":"EXITPUB_ACTIVEDIRECTORY","features":[484]},{"name":"EXITPUB_DEFAULT_ENTERPRISE","features":[484]},{"name":"EXITPUB_DEFAULT_STANDALONE","features":[484]},{"name":"EXITPUB_FILE","features":[484]},{"name":"EXITPUB_REMOVEOLDCERTS","features":[484]},{"name":"EXTENSION_CRITICAL_FLAG","features":[484]},{"name":"EXTENSION_DELETE_FLAG","features":[484]},{"name":"EXTENSION_DISABLE_FLAG","features":[484]},{"name":"EXTENSION_ORIGIN_ADMIN","features":[484]},{"name":"EXTENSION_ORIGIN_CACERT","features":[484]},{"name":"EXTENSION_ORIGIN_CMC","features":[484]},{"name":"EXTENSION_ORIGIN_IMPORTEDCERT","features":[484]},{"name":"EXTENSION_ORIGIN_MASK","features":[484]},{"name":"EXTENSION_ORIGIN_PKCS7","features":[484]},{"name":"EXTENSION_ORIGIN_POLICY","features":[484]},{"name":"EXTENSION_ORIGIN_RENEWALCERT","features":[484]},{"name":"EXTENSION_ORIGIN_REQUEST","features":[484]},{"name":"EXTENSION_ORIGIN_SERVER","features":[484]},{"name":"EXTENSION_POLICY_MASK","features":[484]},{"name":"EncodingType","features":[484]},{"name":"EnrollDenied","features":[484]},{"name":"EnrollError","features":[484]},{"name":"EnrollPended","features":[484]},{"name":"EnrollPrompt","features":[484]},{"name":"EnrollSkipped","features":[484]},{"name":"EnrollUIDeferredEnrollmentRequired","features":[484]},{"name":"EnrollUnknown","features":[484]},{"name":"Enrolled","features":[484]},{"name":"EnrollmentAddOCSPNoCheck","features":[484]},{"name":"EnrollmentAddTemplateName","features":[484]},{"name":"EnrollmentAllowEnrollOnBehalfOf","features":[484]},{"name":"EnrollmentAutoEnrollment","features":[484]},{"name":"EnrollmentAutoEnrollmentCheckUserDSCertificate","features":[484]},{"name":"EnrollmentCAProperty","features":[484]},{"name":"EnrollmentCertificateIssuancePoliciesFromRequest","features":[484]},{"name":"EnrollmentDisplayStatus","features":[484]},{"name":"EnrollmentDomainAuthenticationNotRequired","features":[484]},{"name":"EnrollmentEnrollStatus","features":[484]},{"name":"EnrollmentIncludeBasicConstraintsForEECerts","features":[484]},{"name":"EnrollmentIncludeSymmetricAlgorithms","features":[484]},{"name":"EnrollmentNoRevocationInfoInCerts","features":[484]},{"name":"EnrollmentPendAllRequests","features":[484]},{"name":"EnrollmentPolicyFlags","features":[484]},{"name":"EnrollmentPolicyServerPropertyFlags","features":[484]},{"name":"EnrollmentPreviousApprovalKeyBasedValidateReenrollment","features":[484]},{"name":"EnrollmentPreviousApprovalValidateReenrollment","features":[484]},{"name":"EnrollmentPublishToDS","features":[484]},{"name":"EnrollmentPublishToKRAContainer","features":[484]},{"name":"EnrollmentRemoveInvalidCertificateFromPersonalStore","features":[484]},{"name":"EnrollmentReuseKeyOnFullSmartCard","features":[484]},{"name":"EnrollmentSelectionStatus","features":[484]},{"name":"EnrollmentSkipAutoRenewal","features":[484]},{"name":"EnrollmentTemplateProperty","features":[484]},{"name":"EnrollmentUserInteractionRequired","features":[484]},{"name":"ExportCAs","features":[484]},{"name":"ExportOIDs","features":[484]},{"name":"ExportTemplates","features":[484]},{"name":"FNCERTSRVBACKUPCLOSE","features":[484]},{"name":"FNCERTSRVBACKUPEND","features":[484]},{"name":"FNCERTSRVBACKUPFREE","features":[484]},{"name":"FNCERTSRVBACKUPGETBACKUPLOGSW","features":[484]},{"name":"FNCERTSRVBACKUPGETDATABASENAMESW","features":[484]},{"name":"FNCERTSRVBACKUPGETDYNAMICFILELISTW","features":[484]},{"name":"FNCERTSRVBACKUPOPENFILEW","features":[484]},{"name":"FNCERTSRVBACKUPPREPAREW","features":[484]},{"name":"FNCERTSRVBACKUPREAD","features":[484]},{"name":"FNCERTSRVBACKUPTRUNCATELOGS","features":[484]},{"name":"FNCERTSRVISSERVERONLINEW","features":[303,484]},{"name":"FNCERTSRVRESTOREEND","features":[484]},{"name":"FNCERTSRVRESTOREGETDATABASELOCATIONSW","features":[484]},{"name":"FNCERTSRVRESTOREPREPAREW","features":[484]},{"name":"FNCERTSRVRESTOREREGISTERCOMPLETE","features":[484]},{"name":"FNCERTSRVRESTOREREGISTERW","features":[484]},{"name":"FNCERTSRVSERVERCONTROLW","features":[484]},{"name":"FNIMPORTPFXTOPROVIDER","features":[303,484]},{"name":"FNIMPORTPFXTOPROVIDERFREEDATA","features":[303,484]},{"name":"FR_PROP_ATTESTATIONCHALLENGE","features":[484]},{"name":"FR_PROP_ATTESTATIONPROVIDERNAME","features":[484]},{"name":"FR_PROP_BODYPARTSTRING","features":[484]},{"name":"FR_PROP_CAEXCHANGECERTIFICATE","features":[484]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECHAIN","features":[484]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECRLCHAIN","features":[484]},{"name":"FR_PROP_CAEXCHANGECERTIFICATEHASH","features":[484]},{"name":"FR_PROP_CLAIMCHALLENGE","features":[484]},{"name":"FR_PROP_ENCRYPTEDKEYHASH","features":[484]},{"name":"FR_PROP_FAILINFO","features":[484]},{"name":"FR_PROP_FULLRESPONSE","features":[484]},{"name":"FR_PROP_FULLRESPONSENOPKCS7","features":[484]},{"name":"FR_PROP_ISSUEDCERTIFICATE","features":[484]},{"name":"FR_PROP_ISSUEDCERTIFICATECHAIN","features":[484]},{"name":"FR_PROP_ISSUEDCERTIFICATECRLCHAIN","features":[484]},{"name":"FR_PROP_ISSUEDCERTIFICATEHASH","features":[484]},{"name":"FR_PROP_NONE","features":[484]},{"name":"FR_PROP_OTHERINFOCHOICE","features":[484]},{"name":"FR_PROP_PENDINFOTIME","features":[484]},{"name":"FR_PROP_PENDINFOTOKEN","features":[484]},{"name":"FR_PROP_STATUS","features":[484]},{"name":"FR_PROP_STATUSINFOCOUNT","features":[484]},{"name":"FR_PROP_STATUSSTRING","features":[484]},{"name":"FULL_RESPONSE_PROPERTY_ID","features":[484]},{"name":"GeneralCA","features":[484]},{"name":"GeneralCrossCA","features":[484]},{"name":"GeneralDefault","features":[484]},{"name":"GeneralDonotPersist","features":[484]},{"name":"GeneralMachineType","features":[484]},{"name":"GeneralModified","features":[484]},{"name":"IAlternativeName","features":[484,354]},{"name":"IAlternativeNames","features":[484,354]},{"name":"IBinaryConverter","features":[484,354]},{"name":"IBinaryConverter2","features":[484,354]},{"name":"ICEnroll","features":[484,354]},{"name":"ICEnroll2","features":[484,354]},{"name":"ICEnroll3","features":[484,354]},{"name":"ICEnroll4","features":[484,354]},{"name":"ICF_ALLOWFOREIGN","features":[484]},{"name":"ICF_EXISTINGROW","features":[484]},{"name":"ICertAdmin","features":[484,354]},{"name":"ICertAdmin2","features":[484,354]},{"name":"ICertConfig","features":[484,354]},{"name":"ICertConfig2","features":[484,354]},{"name":"ICertEncodeAltName","features":[484,354]},{"name":"ICertEncodeAltName2","features":[484,354]},{"name":"ICertEncodeBitString","features":[484,354]},{"name":"ICertEncodeBitString2","features":[484,354]},{"name":"ICertEncodeCRLDistInfo","features":[484,354]},{"name":"ICertEncodeCRLDistInfo2","features":[484,354]},{"name":"ICertEncodeDateArray","features":[484,354]},{"name":"ICertEncodeDateArray2","features":[484,354]},{"name":"ICertEncodeLongArray","features":[484,354]},{"name":"ICertEncodeLongArray2","features":[484,354]},{"name":"ICertEncodeStringArray","features":[484,354]},{"name":"ICertEncodeStringArray2","features":[484,354]},{"name":"ICertExit","features":[484,354]},{"name":"ICertExit2","features":[484,354]},{"name":"ICertGetConfig","features":[484,354]},{"name":"ICertManageModule","features":[484,354]},{"name":"ICertPolicy","features":[484,354]},{"name":"ICertPolicy2","features":[484,354]},{"name":"ICertProperties","features":[484,354]},{"name":"ICertProperty","features":[484,354]},{"name":"ICertPropertyArchived","features":[484,354]},{"name":"ICertPropertyArchivedKeyHash","features":[484,354]},{"name":"ICertPropertyAutoEnroll","features":[484,354]},{"name":"ICertPropertyBackedUp","features":[484,354]},{"name":"ICertPropertyDescription","features":[484,354]},{"name":"ICertPropertyEnrollment","features":[484,354]},{"name":"ICertPropertyEnrollmentPolicyServer","features":[484,354]},{"name":"ICertPropertyFriendlyName","features":[484,354]},{"name":"ICertPropertyKeyProvInfo","features":[484,354]},{"name":"ICertPropertyRenewal","features":[484,354]},{"name":"ICertPropertyRequestOriginator","features":[484,354]},{"name":"ICertPropertySHA1Hash","features":[484,354]},{"name":"ICertRequest","features":[484,354]},{"name":"ICertRequest2","features":[484,354]},{"name":"ICertRequest3","features":[484,354]},{"name":"ICertRequestD","features":[484]},{"name":"ICertRequestD2","features":[484]},{"name":"ICertServerExit","features":[484,354]},{"name":"ICertServerPolicy","features":[484,354]},{"name":"ICertView","features":[484,354]},{"name":"ICertView2","features":[484,354]},{"name":"ICertificateAttestationChallenge","features":[484,354]},{"name":"ICertificateAttestationChallenge2","features":[484,354]},{"name":"ICertificatePolicies","features":[484,354]},{"name":"ICertificatePolicy","features":[484,354]},{"name":"ICertificationAuthorities","features":[484,354]},{"name":"ICertificationAuthority","features":[484,354]},{"name":"ICryptAttribute","features":[484,354]},{"name":"ICryptAttributes","features":[484,354]},{"name":"ICspAlgorithm","features":[484,354]},{"name":"ICspAlgorithms","features":[484,354]},{"name":"ICspInformation","features":[484,354]},{"name":"ICspInformations","features":[484,354]},{"name":"ICspStatus","features":[484,354]},{"name":"ICspStatuses","features":[484,354]},{"name":"IEnroll","features":[484]},{"name":"IEnroll2","features":[484]},{"name":"IEnroll4","features":[484]},{"name":"IEnumCERTVIEWATTRIBUTE","features":[484,354]},{"name":"IEnumCERTVIEWCOLUMN","features":[484,354]},{"name":"IEnumCERTVIEWEXTENSION","features":[484,354]},{"name":"IEnumCERTVIEWROW","features":[484,354]},{"name":"IF_ENABLEADMINASAUDITOR","features":[484]},{"name":"IF_ENABLEEXITKEYRETRIEVAL","features":[484]},{"name":"IF_ENFORCEENCRYPTICERTADMIN","features":[484]},{"name":"IF_ENFORCEENCRYPTICERTREQUEST","features":[484]},{"name":"IF_LOCKICERTREQUEST","features":[484]},{"name":"IF_NOLOCALICERTADMIN","features":[484]},{"name":"IF_NOLOCALICERTADMINBACKUP","features":[484]},{"name":"IF_NOLOCALICERTREQUEST","features":[484]},{"name":"IF_NOREMOTEICERTADMIN","features":[484]},{"name":"IF_NOREMOTEICERTADMINBACKUP","features":[484]},{"name":"IF_NOREMOTEICERTREQUEST","features":[484]},{"name":"IF_NORPCICERTREQUEST","features":[484]},{"name":"IF_NOSNAPSHOTBACKUP","features":[484]},{"name":"IKF_OVERWRITE","features":[484]},{"name":"INDESPolicy","features":[484]},{"name":"IOCSPAdmin","features":[484,354]},{"name":"IOCSPCAConfiguration","features":[484,354]},{"name":"IOCSPCAConfigurationCollection","features":[484,354]},{"name":"IOCSPProperty","features":[484,354]},{"name":"IOCSPPropertyCollection","features":[484,354]},{"name":"IObjectId","features":[484,354]},{"name":"IObjectIds","features":[484,354]},{"name":"IPolicyQualifier","features":[484,354]},{"name":"IPolicyQualifiers","features":[484,354]},{"name":"ISSCERT_DEFAULT_DS","features":[484]},{"name":"ISSCERT_DEFAULT_NODS","features":[484]},{"name":"ISSCERT_ENABLE","features":[484]},{"name":"ISSCERT_FILEURL_OLD","features":[484]},{"name":"ISSCERT_FTPURL_OLD","features":[484]},{"name":"ISSCERT_HTTPURL_OLD","features":[484]},{"name":"ISSCERT_LDAPURL_OLD","features":[484]},{"name":"ISSCERT_URLMASK_OLD","features":[484]},{"name":"ISignerCertificate","features":[484,354]},{"name":"ISignerCertificates","features":[484,354]},{"name":"ISmimeCapabilities","features":[484,354]},{"name":"ISmimeCapability","features":[484,354]},{"name":"IX500DistinguishedName","features":[484,354]},{"name":"IX509Attribute","features":[484,354]},{"name":"IX509AttributeArchiveKey","features":[484,354]},{"name":"IX509AttributeArchiveKeyHash","features":[484,354]},{"name":"IX509AttributeClientId","features":[484,354]},{"name":"IX509AttributeCspProvider","features":[484,354]},{"name":"IX509AttributeExtensions","features":[484,354]},{"name":"IX509AttributeOSVersion","features":[484,354]},{"name":"IX509AttributeRenewalCertificate","features":[484,354]},{"name":"IX509Attributes","features":[484,354]},{"name":"IX509CertificateRequest","features":[484,354]},{"name":"IX509CertificateRequestCertificate","features":[484,354]},{"name":"IX509CertificateRequestCertificate2","features":[484,354]},{"name":"IX509CertificateRequestCmc","features":[484,354]},{"name":"IX509CertificateRequestCmc2","features":[484,354]},{"name":"IX509CertificateRequestPkcs10","features":[484,354]},{"name":"IX509CertificateRequestPkcs10V2","features":[484,354]},{"name":"IX509CertificateRequestPkcs10V3","features":[484,354]},{"name":"IX509CertificateRequestPkcs10V4","features":[484,354]},{"name":"IX509CertificateRequestPkcs7","features":[484,354]},{"name":"IX509CertificateRequestPkcs7V2","features":[484,354]},{"name":"IX509CertificateRevocationList","features":[484,354]},{"name":"IX509CertificateRevocationListEntries","features":[484,354]},{"name":"IX509CertificateRevocationListEntry","features":[484,354]},{"name":"IX509CertificateTemplate","features":[484,354]},{"name":"IX509CertificateTemplateWritable","features":[484,354]},{"name":"IX509CertificateTemplates","features":[484,354]},{"name":"IX509EndorsementKey","features":[484,354]},{"name":"IX509Enrollment","features":[484,354]},{"name":"IX509Enrollment2","features":[484,354]},{"name":"IX509EnrollmentHelper","features":[484,354]},{"name":"IX509EnrollmentPolicyServer","features":[484,354]},{"name":"IX509EnrollmentStatus","features":[484,354]},{"name":"IX509EnrollmentWebClassFactory","features":[484,354]},{"name":"IX509Extension","features":[484,354]},{"name":"IX509ExtensionAlternativeNames","features":[484,354]},{"name":"IX509ExtensionAuthorityKeyIdentifier","features":[484,354]},{"name":"IX509ExtensionBasicConstraints","features":[484,354]},{"name":"IX509ExtensionCertificatePolicies","features":[484,354]},{"name":"IX509ExtensionEnhancedKeyUsage","features":[484,354]},{"name":"IX509ExtensionKeyUsage","features":[484,354]},{"name":"IX509ExtensionMSApplicationPolicies","features":[484,354]},{"name":"IX509ExtensionSmimeCapabilities","features":[484,354]},{"name":"IX509ExtensionSubjectKeyIdentifier","features":[484,354]},{"name":"IX509ExtensionTemplate","features":[484,354]},{"name":"IX509ExtensionTemplateName","features":[484,354]},{"name":"IX509Extensions","features":[484,354]},{"name":"IX509MachineEnrollmentFactory","features":[484,354]},{"name":"IX509NameValuePair","features":[484,354]},{"name":"IX509NameValuePairs","features":[484,354]},{"name":"IX509PolicyServerListManager","features":[484,354]},{"name":"IX509PolicyServerUrl","features":[484,354]},{"name":"IX509PrivateKey","features":[484,354]},{"name":"IX509PrivateKey2","features":[484,354]},{"name":"IX509PublicKey","features":[484,354]},{"name":"IX509SCEPEnrollment","features":[484,354]},{"name":"IX509SCEPEnrollment2","features":[484,354]},{"name":"IX509SCEPEnrollmentHelper","features":[484,354]},{"name":"IX509SignatureInformation","features":[484,354]},{"name":"ImportExportable","features":[484]},{"name":"ImportExportableEncrypted","features":[484]},{"name":"ImportForceOverwrite","features":[484]},{"name":"ImportInstallCertificate","features":[484]},{"name":"ImportInstallChain","features":[484]},{"name":"ImportInstallChainAndRoot","features":[484]},{"name":"ImportMachineContext","features":[484]},{"name":"ImportNoUserProtected","features":[484]},{"name":"ImportNone","features":[484]},{"name":"ImportPFXFlags","features":[484]},{"name":"ImportSaveProperties","features":[484]},{"name":"ImportSilent","features":[484]},{"name":"ImportUserProtected","features":[484]},{"name":"ImportUserProtectedHigh","features":[484]},{"name":"InheritDefault","features":[484]},{"name":"InheritExtensionsFlag","features":[484]},{"name":"InheritKeyMask","features":[484]},{"name":"InheritNewDefaultKey","features":[484]},{"name":"InheritNewSimilarKey","features":[484]},{"name":"InheritNone","features":[484]},{"name":"InheritPrivateKey","features":[484]},{"name":"InheritPublicKey","features":[484]},{"name":"InheritRenewalCertificateFlag","features":[484]},{"name":"InheritReserved80000000","features":[484]},{"name":"InheritSubjectAltNameFlag","features":[484]},{"name":"InheritSubjectFlag","features":[484]},{"name":"InheritTemplateFlag","features":[484]},{"name":"InheritValidityPeriodFlag","features":[484]},{"name":"InnerRequestLevel","features":[484]},{"name":"InstallResponseRestrictionFlags","features":[484]},{"name":"KRAF_DISABLEUSEDEFAULTPROVIDER","features":[484]},{"name":"KRAF_ENABLEARCHIVEALL","features":[484]},{"name":"KRAF_ENABLEFOREIGN","features":[484]},{"name":"KRAF_SAVEBADREQUESTKEY","features":[484]},{"name":"KRA_DISP_EXPIRED","features":[484]},{"name":"KRA_DISP_INVALID","features":[484]},{"name":"KRA_DISP_NOTFOUND","features":[484]},{"name":"KRA_DISP_NOTLOADED","features":[484]},{"name":"KRA_DISP_REVOKED","features":[484]},{"name":"KRA_DISP_UNTRUSTED","features":[484]},{"name":"KRA_DISP_VALID","features":[484]},{"name":"KR_ENABLE_MACHINE","features":[484]},{"name":"KR_ENABLE_USER","features":[484]},{"name":"KeyAttestationClaimType","features":[484]},{"name":"KeyIdentifierHashAlgorithm","features":[484]},{"name":"LDAPF_SIGNDISABLE","features":[484]},{"name":"LDAPF_SSLENABLE","features":[484]},{"name":"LevelInnermost","features":[484]},{"name":"LevelNext","features":[484]},{"name":"LevelSafe","features":[484]},{"name":"LevelUnsafe","features":[484]},{"name":"LoadOptionCacheOnly","features":[484]},{"name":"LoadOptionDefault","features":[484]},{"name":"LoadOptionRegisterForADChanges","features":[484]},{"name":"LoadOptionReload","features":[484]},{"name":"OCSPAdmin","features":[484]},{"name":"OCSPPropertyCollection","features":[484]},{"name":"OCSPRequestFlag","features":[484]},{"name":"OCSPSigningFlag","features":[484]},{"name":"OCSP_RF_REJECT_SIGNED_REQUESTS","features":[484]},{"name":"OCSP_SF_ALLOW_NONCE_EXTENSION","features":[484]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTOENROLLMENT","features":[484]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTORENEWAL","features":[484]},{"name":"OCSP_SF_AUTODISCOVER_SIGNINGCERT","features":[484]},{"name":"OCSP_SF_FORCE_SIGNINGCERT_ISSUER_ISCA","features":[484]},{"name":"OCSP_SF_MANUAL_ASSIGN_SIGNINGCERT","features":[484]},{"name":"OCSP_SF_RESPONDER_ID_KEYHASH","features":[484]},{"name":"OCSP_SF_RESPONDER_ID_NAME","features":[484]},{"name":"OCSP_SF_SILENT","features":[484]},{"name":"OCSP_SF_USE_CACERT","features":[484]},{"name":"ObjectIdGroupId","features":[484]},{"name":"ObjectIdPublicKeyFlags","features":[484]},{"name":"PENDING_REQUEST_DESIRED_PROPERTY","features":[484]},{"name":"PFXExportChainNoRoot","features":[484]},{"name":"PFXExportChainWithRoot","features":[484]},{"name":"PFXExportEEOnly","features":[484]},{"name":"PFXExportOptions","features":[484]},{"name":"PROCFLG_ENFORCEGOODKEYS","features":[484]},{"name":"PROCFLG_NONE","features":[484]},{"name":"PROPCALLER_ADMIN","features":[484]},{"name":"PROPCALLER_EXIT","features":[484]},{"name":"PROPCALLER_MASK","features":[484]},{"name":"PROPCALLER_POLICY","features":[484]},{"name":"PROPCALLER_REQUEST","features":[484]},{"name":"PROPCALLER_SERVER","features":[484]},{"name":"PROPFLAGS_INDEXED","features":[484]},{"name":"PROPTYPE_BINARY","features":[484]},{"name":"PROPTYPE_DATE","features":[484]},{"name":"PROPTYPE_LONG","features":[484]},{"name":"PROPTYPE_MASK","features":[484]},{"name":"PROPTYPE_STRING","features":[484]},{"name":"Pkcs10AllowedSignatureTypes","features":[484]},{"name":"PolicyQualifierType","features":[484]},{"name":"PolicyQualifierTypeFlags","features":[484]},{"name":"PolicyQualifierTypeUnknown","features":[484]},{"name":"PolicyQualifierTypeUrl","features":[484]},{"name":"PolicyQualifierTypeUserNotice","features":[484]},{"name":"PolicyServerUrlFlags","features":[484]},{"name":"PolicyServerUrlPropertyID","features":[484]},{"name":"PrivateKeyAttestMask","features":[484]},{"name":"PrivateKeyAttestNone","features":[484]},{"name":"PrivateKeyAttestPreferred","features":[484]},{"name":"PrivateKeyAttestRequired","features":[484]},{"name":"PrivateKeyAttestWithoutPolicy","features":[484]},{"name":"PrivateKeyClientVersionMask","features":[484]},{"name":"PrivateKeyClientVersionShift","features":[484]},{"name":"PrivateKeyEKTrustOnUse","features":[484]},{"name":"PrivateKeyEKValidateCert","features":[484]},{"name":"PrivateKeyEKValidateKey","features":[484]},{"name":"PrivateKeyExportable","features":[484]},{"name":"PrivateKeyHelloKspKey","features":[484]},{"name":"PrivateKeyHelloLogonKey","features":[484]},{"name":"PrivateKeyRequireAlternateSignatureAlgorithm","features":[484]},{"name":"PrivateKeyRequireArchival","features":[484]},{"name":"PrivateKeyRequireSameKeyRenewal","features":[484]},{"name":"PrivateKeyRequireStrongKeyProtection","features":[484]},{"name":"PrivateKeyServerVersionMask","features":[484]},{"name":"PrivateKeyServerVersionShift","features":[484]},{"name":"PrivateKeyUseLegacyProvider","features":[484]},{"name":"PsFriendlyName","features":[484]},{"name":"PsPolicyID","features":[484]},{"name":"PsfAllowUnTrustedCA","features":[484]},{"name":"PsfAutoEnrollmentEnabled","features":[484]},{"name":"PsfLocationGroupPolicy","features":[484]},{"name":"PsfLocationRegistry","features":[484]},{"name":"PsfNone","features":[484]},{"name":"PsfUseClientId","features":[484]},{"name":"PstAcquirePrivateKey","features":[303,484]},{"name":"PstGetCertificateChain","features":[303,324,484]},{"name":"PstGetCertificates","features":[303,484]},{"name":"PstGetTrustAnchors","features":[303,324,484]},{"name":"PstGetTrustAnchorsEx","features":[303,324,484]},{"name":"PstGetUserNameForCertificate","features":[303,484]},{"name":"PstMapCertificate","features":[303,324,484]},{"name":"PstValidate","features":[303,484]},{"name":"REQDISP_DEFAULT_ENTERPRISE","features":[484]},{"name":"REQDISP_DENY","features":[484]},{"name":"REQDISP_ISSUE","features":[484]},{"name":"REQDISP_MASK","features":[484]},{"name":"REQDISP_PENDING","features":[484]},{"name":"REQDISP_PENDINGFIRST","features":[484]},{"name":"REQDISP_USEREQUESTATTRIBUTE","features":[484]},{"name":"REVEXT_ASPENABLE","features":[484]},{"name":"REVEXT_CDPENABLE","features":[484]},{"name":"REVEXT_CDPFILEURL_OLD","features":[484]},{"name":"REVEXT_CDPFTPURL_OLD","features":[484]},{"name":"REVEXT_CDPHTTPURL_OLD","features":[484]},{"name":"REVEXT_CDPLDAPURL_OLD","features":[484]},{"name":"REVEXT_CDPURLMASK_OLD","features":[484]},{"name":"REVEXT_DEFAULT_DS","features":[484]},{"name":"REVEXT_DEFAULT_NODS","features":[484]},{"name":"RequestClientInfoClientId","features":[484]},{"name":"SCEPDispositionFailure","features":[484]},{"name":"SCEPDispositionPending","features":[484]},{"name":"SCEPDispositionPendingChallenge","features":[484]},{"name":"SCEPDispositionSuccess","features":[484]},{"name":"SCEPDispositionUnknown","features":[484]},{"name":"SCEPFailBadAlgorithm","features":[484]},{"name":"SCEPFailBadCertId","features":[484]},{"name":"SCEPFailBadMessageCheck","features":[484]},{"name":"SCEPFailBadRequest","features":[484]},{"name":"SCEPFailBadTime","features":[484]},{"name":"SCEPFailUnknown","features":[484]},{"name":"SCEPMessageCertResponse","features":[484]},{"name":"SCEPMessageClaimChallengeAnswer","features":[484]},{"name":"SCEPMessageGetCRL","features":[484]},{"name":"SCEPMessageGetCert","features":[484]},{"name":"SCEPMessageGetCertInitial","features":[484]},{"name":"SCEPMessagePKCSRequest","features":[484]},{"name":"SCEPMessageUnknown","features":[484]},{"name":"SCEPProcessDefault","features":[484]},{"name":"SCEPProcessSkipCertInstall","features":[484]},{"name":"SETUP_ATTEMPT_VROOT_CREATE","features":[484]},{"name":"SETUP_CLIENT_FLAG","features":[484]},{"name":"SETUP_CREATEDB_FLAG","features":[484]},{"name":"SETUP_DCOM_SECURITY_UPDATED_FLAG","features":[484]},{"name":"SETUP_DENIED_FLAG","features":[484]},{"name":"SETUP_FORCECRL_FLAG","features":[484]},{"name":"SETUP_ONLINE_FLAG","features":[484]},{"name":"SETUP_REQUEST_FLAG","features":[484]},{"name":"SETUP_SECURITY_CHANGED","features":[484]},{"name":"SETUP_SERVER_FLAG","features":[484]},{"name":"SETUP_SERVER_IS_UP_TO_DATE_FLAG","features":[484]},{"name":"SETUP_SERVER_UPGRADED_FLAG","features":[484]},{"name":"SETUP_SUSPEND_FLAG","features":[484]},{"name":"SETUP_UPDATE_CAOBJECT_SVRTYPE","features":[484]},{"name":"SETUP_W2K_SECURITY_NOT_UPGRADED_FLAG","features":[484]},{"name":"SKIHashCapiSha1","features":[484]},{"name":"SKIHashDefault","features":[484]},{"name":"SKIHashHPKP","features":[484]},{"name":"SKIHashSha1","features":[484]},{"name":"SKIHashSha256","features":[484]},{"name":"SelectedNo","features":[484]},{"name":"SelectedYes","features":[484]},{"name":"SubjectAlternativeNameEnrolleeSupplies","features":[484]},{"name":"SubjectAlternativeNameRequireDNS","features":[484]},{"name":"SubjectAlternativeNameRequireDirectoryGUID","features":[484]},{"name":"SubjectAlternativeNameRequireDomainDNS","features":[484]},{"name":"SubjectAlternativeNameRequireEmail","features":[484]},{"name":"SubjectAlternativeNameRequireSPN","features":[484]},{"name":"SubjectAlternativeNameRequireUPN","features":[484]},{"name":"SubjectNameAndAlternativeNameOldCertSupplies","features":[484]},{"name":"SubjectNameEnrolleeSupplies","features":[484]},{"name":"SubjectNameRequireCommonName","features":[484]},{"name":"SubjectNameRequireDNS","features":[484]},{"name":"SubjectNameRequireDirectoryPath","features":[484]},{"name":"SubjectNameRequireEmail","features":[484]},{"name":"TP_MACHINEPOLICY","features":[484]},{"name":"TemplatePropAsymmetricAlgorithm","features":[484]},{"name":"TemplatePropCertificatePolicies","features":[484]},{"name":"TemplatePropCommonName","features":[484]},{"name":"TemplatePropCryptoProviders","features":[484]},{"name":"TemplatePropDescription","features":[484]},{"name":"TemplatePropEKUs","features":[484]},{"name":"TemplatePropEnrollmentFlags","features":[484]},{"name":"TemplatePropExtensions","features":[484]},{"name":"TemplatePropFriendlyName","features":[484]},{"name":"TemplatePropGeneralFlags","features":[484]},{"name":"TemplatePropHashAlgorithm","features":[484]},{"name":"TemplatePropKeySecurityDescriptor","features":[484]},{"name":"TemplatePropKeySpec","features":[484]},{"name":"TemplatePropKeyUsage","features":[484]},{"name":"TemplatePropMajorRevision","features":[484]},{"name":"TemplatePropMinimumKeySize","features":[484]},{"name":"TemplatePropMinorRevision","features":[484]},{"name":"TemplatePropOID","features":[484]},{"name":"TemplatePropPrivateKeyFlags","features":[484]},{"name":"TemplatePropRACertificatePolicies","features":[484]},{"name":"TemplatePropRAEKUs","features":[484]},{"name":"TemplatePropRASignatureCount","features":[484]},{"name":"TemplatePropRenewalPeriod","features":[484]},{"name":"TemplatePropSchemaVersion","features":[484]},{"name":"TemplatePropSecurityDescriptor","features":[484]},{"name":"TemplatePropSubjectNameFlags","features":[484]},{"name":"TemplatePropSupersede","features":[484]},{"name":"TemplatePropSymmetricAlgorithm","features":[484]},{"name":"TemplatePropSymmetricKeyLength","features":[484]},{"name":"TemplatePropV1ApplicationPolicy","features":[484]},{"name":"TemplatePropValidityPeriod","features":[484]},{"name":"TypeAny","features":[484]},{"name":"TypeCertificate","features":[484]},{"name":"TypeCmc","features":[484]},{"name":"TypePkcs10","features":[484]},{"name":"TypePkcs7","features":[484]},{"name":"VR_INSTANT_BAD","features":[484]},{"name":"VR_INSTANT_OK","features":[484]},{"name":"VR_PENDING","features":[484]},{"name":"VerifyAllowUI","features":[484]},{"name":"VerifyNone","features":[484]},{"name":"VerifySilent","features":[484]},{"name":"VerifySmartCardNone","features":[484]},{"name":"VerifySmartCardSilent","features":[484]},{"name":"WebEnrollmentFlags","features":[484]},{"name":"WebSecurityLevel","features":[484]},{"name":"X500NameFlags","features":[484]},{"name":"X509AuthAnonymous","features":[484]},{"name":"X509AuthCertificate","features":[484]},{"name":"X509AuthKerberos","features":[484]},{"name":"X509AuthNone","features":[484]},{"name":"X509AuthUsername","features":[484]},{"name":"X509CertificateEnrollmentContext","features":[484]},{"name":"X509CertificateTemplateEnrollmentFlag","features":[484]},{"name":"X509CertificateTemplateGeneralFlag","features":[484]},{"name":"X509CertificateTemplatePrivateKeyFlag","features":[484]},{"name":"X509CertificateTemplateSubjectNameFlag","features":[484]},{"name":"X509EnrollmentAuthFlags","features":[484]},{"name":"X509EnrollmentPolicyExportFlags","features":[484]},{"name":"X509EnrollmentPolicyLoadOption","features":[484]},{"name":"X509HardwareKeyUsageFlags","features":[484]},{"name":"X509KeyParametersExportType","features":[484]},{"name":"X509KeySpec","features":[484]},{"name":"X509KeyUsageFlags","features":[484]},{"name":"X509PrivateKeyExportFlags","features":[484]},{"name":"X509PrivateKeyProtection","features":[484]},{"name":"X509PrivateKeyUsageFlags","features":[484]},{"name":"X509PrivateKeyVerify","features":[484]},{"name":"X509ProviderType","features":[484]},{"name":"X509RequestInheritOptions","features":[484]},{"name":"X509RequestType","features":[484]},{"name":"X509SCEPDisposition","features":[484]},{"name":"X509SCEPFailInfo","features":[484]},{"name":"X509SCEPMessageType","features":[484]},{"name":"X509SCEPProcessMessageFlags","features":[484]},{"name":"XCN_AT_KEYEXCHANGE","features":[484]},{"name":"XCN_AT_NONE","features":[484]},{"name":"XCN_AT_SIGNATURE","features":[484]},{"name":"XCN_BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[484]},{"name":"XCN_BCRYPT_CIPHER_INTERFACE","features":[484]},{"name":"XCN_BCRYPT_HASH_INTERFACE","features":[484]},{"name":"XCN_BCRYPT_KEY_DERIVATION_INTERFACE","features":[484]},{"name":"XCN_BCRYPT_RNG_INTERFACE","features":[484]},{"name":"XCN_BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[484]},{"name":"XCN_BCRYPT_SIGNATURE_INTERFACE","features":[484]},{"name":"XCN_BCRYPT_UNKNOWN_INTERFACE","features":[484]},{"name":"XCN_CERT_ACCESS_STATE_PROP_ID","features":[484]},{"name":"XCN_CERT_AIA_URL_RETRIEVED_PROP_ID","features":[484]},{"name":"XCN_CERT_ALT_NAME_DIRECTORY_NAME","features":[484]},{"name":"XCN_CERT_ALT_NAME_DNS_NAME","features":[484]},{"name":"XCN_CERT_ALT_NAME_EDI_PARTY_NAME","features":[484]},{"name":"XCN_CERT_ALT_NAME_GUID","features":[484]},{"name":"XCN_CERT_ALT_NAME_IP_ADDRESS","features":[484]},{"name":"XCN_CERT_ALT_NAME_OTHER_NAME","features":[484]},{"name":"XCN_CERT_ALT_NAME_REGISTERED_ID","features":[484]},{"name":"XCN_CERT_ALT_NAME_RFC822_NAME","features":[484]},{"name":"XCN_CERT_ALT_NAME_UNKNOWN","features":[484]},{"name":"XCN_CERT_ALT_NAME_URL","features":[484]},{"name":"XCN_CERT_ALT_NAME_USER_PRINCIPLE_NAME","features":[484]},{"name":"XCN_CERT_ALT_NAME_X400_ADDRESS","features":[484]},{"name":"XCN_CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_ARCHIVED_PROP_ID","features":[484]},{"name":"XCN_CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[484]},{"name":"XCN_CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_AUTO_ENROLL_PROP_ID","features":[484]},{"name":"XCN_CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[484]},{"name":"XCN_CERT_BACKED_UP_PROP_ID","features":[484]},{"name":"XCN_CERT_CA_DISABLE_CRL_PROP_ID","features":[484]},{"name":"XCN_CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[484]},{"name":"XCN_CERT_CEP_PROP_ID","features":[484]},{"name":"XCN_CERT_CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[484]},{"name":"XCN_CERT_CLR_DELETE_KEY_PROP_ID","features":[484]},{"name":"XCN_CERT_CRL_SIGN_KEY_USAGE","features":[484]},{"name":"XCN_CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[484]},{"name":"XCN_CERT_CTL_USAGE_PROP_ID","features":[484]},{"name":"XCN_CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[484]},{"name":"XCN_CERT_DATE_STAMP_PROP_ID","features":[484]},{"name":"XCN_CERT_DECIPHER_ONLY_KEY_USAGE","features":[484]},{"name":"XCN_CERT_DESCRIPTION_PROP_ID","features":[484]},{"name":"XCN_CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[484]},{"name":"XCN_CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[484]},{"name":"XCN_CERT_DISALLOWED_FILETIME_PROP_ID","features":[484]},{"name":"XCN_CERT_EFS_PROP_ID","features":[484]},{"name":"XCN_CERT_ENCIPHER_ONLY_KEY_USAGE","features":[484]},{"name":"XCN_CERT_ENHKEY_USAGE_PROP_ID","features":[484]},{"name":"XCN_CERT_ENROLLMENT_PROP_ID","features":[484]},{"name":"XCN_CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[484]},{"name":"XCN_CERT_FIRST_RESERVED_PROP_ID","features":[484]},{"name":"XCN_CERT_FIRST_USER_PROP_ID","features":[484]},{"name":"XCN_CERT_FORTEZZA_DATA_PROP_ID","features":[484]},{"name":"XCN_CERT_FRIENDLY_NAME_PROP_ID","features":[484]},{"name":"XCN_CERT_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[484]},{"name":"XCN_CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[484]},{"name":"XCN_CERT_IE30_RESERVED_PROP_ID","features":[484]},{"name":"XCN_CERT_ISOLATED_KEY_PROP_ID","features":[484]},{"name":"XCN_CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[484]},{"name":"XCN_CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[484]},{"name":"XCN_CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[484]},{"name":"XCN_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_KEY_AGREEMENT_KEY_USAGE","features":[484]},{"name":"XCN_CERT_KEY_CERT_SIGN_KEY_USAGE","features":[484]},{"name":"XCN_CERT_KEY_CLASSIFICATION_PROP_ID","features":[484]},{"name":"XCN_CERT_KEY_CONTEXT_PROP_ID","features":[484]},{"name":"XCN_CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[484]},{"name":"XCN_CERT_KEY_IDENTIFIER_PROP_ID","features":[484]},{"name":"XCN_CERT_KEY_PROV_HANDLE_PROP_ID","features":[484]},{"name":"XCN_CERT_KEY_PROV_INFO_PROP_ID","features":[484]},{"name":"XCN_CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[484]},{"name":"XCN_CERT_KEY_SPEC_PROP_ID","features":[484]},{"name":"XCN_CERT_LAST_RESERVED_PROP_ID","features":[484]},{"name":"XCN_CERT_LAST_USER_PROP_ID","features":[484]},{"name":"XCN_CERT_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_NAME_STR_AMBIGUOUS_SEPARATOR_FLAGS","features":[484]},{"name":"XCN_CERT_NAME_STR_COMMA_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_CRLF_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_DS_ESCAPED","features":[484]},{"name":"XCN_CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_FORWARD_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_NONE","features":[484]},{"name":"XCN_CERT_NAME_STR_NO_PLUS_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_NO_QUOTING_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_REVERSE_FLAG","features":[484]},{"name":"XCN_CERT_NAME_STR_SEMICOLON_FLAG","features":[484]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[484]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[484]},{"name":"XCN_CERT_NEW_KEY_PROP_ID","features":[484]},{"name":"XCN_CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[484]},{"name":"XCN_CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[484]},{"name":"XCN_CERT_NON_REPUDIATION_KEY_USAGE","features":[484]},{"name":"XCN_CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[484]},{"name":"XCN_CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[484]},{"name":"XCN_CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[484]},{"name":"XCN_CERT_NO_KEY_USAGE","features":[484]},{"name":"XCN_CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[484]},{"name":"XCN_CERT_OCSP_RESPONSE_PROP_ID","features":[484]},{"name":"XCN_CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[484]},{"name":"XCN_CERT_OID_NAME_STR","features":[484]},{"name":"XCN_CERT_PIN_SHA256_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_PUBKEY_ALG_PARA_PROP_ID","features":[484]},{"name":"XCN_CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[484]},{"name":"XCN_CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[484]},{"name":"XCN_CERT_PVK_FILE_PROP_ID","features":[484]},{"name":"XCN_CERT_RENEWAL_PROP_ID","features":[484]},{"name":"XCN_CERT_REQUEST_ORIGINATOR_PROP_ID","features":[484]},{"name":"XCN_CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[484]},{"name":"XCN_CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[484]},{"name":"XCN_CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[484]},{"name":"XCN_CERT_SCARD_PIN_ID_PROP_ID","features":[484]},{"name":"XCN_CERT_SCARD_PIN_INFO_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_CA_CERT_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_FLAGS_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_GUID_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_NONCE_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_SERVER_CERTS_PROP_ID","features":[484]},{"name":"XCN_CERT_SCEP_SIGNER_CERT_PROP_ID","features":[484]},{"name":"XCN_CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[484]},{"name":"XCN_CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[484]},{"name":"XCN_CERT_SERIAL_CHAIN_PROP_ID","features":[484]},{"name":"XCN_CERT_SHA1_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_SHA256_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_SIGNATURE_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[484]},{"name":"XCN_CERT_SIMPLE_NAME_STR","features":[484]},{"name":"XCN_CERT_SMART_CARD_DATA_PROP_ID","features":[484]},{"name":"XCN_CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[484]},{"name":"XCN_CERT_SMART_CARD_READER_PROP_ID","features":[484]},{"name":"XCN_CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[484]},{"name":"XCN_CERT_SOURCE_LOCATION_PROP_ID","features":[484]},{"name":"XCN_CERT_SOURCE_URL_PROP_ID","features":[484]},{"name":"XCN_CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[484]},{"name":"XCN_CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[484]},{"name":"XCN_CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[484]},{"name":"XCN_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[484]},{"name":"XCN_CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[484]},{"name":"XCN_CERT_X500_NAME_STR","features":[484]},{"name":"XCN_CERT_XML_NAME_STR","features":[484]},{"name":"XCN_CRL_REASON_AA_COMPROMISE","features":[484]},{"name":"XCN_CRL_REASON_AFFILIATION_CHANGED","features":[484]},{"name":"XCN_CRL_REASON_CA_COMPROMISE","features":[484]},{"name":"XCN_CRL_REASON_CERTIFICATE_HOLD","features":[484]},{"name":"XCN_CRL_REASON_CESSATION_OF_OPERATION","features":[484]},{"name":"XCN_CRL_REASON_KEY_COMPROMISE","features":[484]},{"name":"XCN_CRL_REASON_PRIVILEGE_WITHDRAWN","features":[484]},{"name":"XCN_CRL_REASON_REMOVE_FROM_CRL","features":[484]},{"name":"XCN_CRL_REASON_SUPERSEDED","features":[484]},{"name":"XCN_CRL_REASON_UNSPECIFIED","features":[484]},{"name":"XCN_CRYPT_ANY_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_FIRST_ALG_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_GROUP_ID_MASK","features":[484]},{"name":"XCN_CRYPT_HASH_ALG_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_KDF_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_KEY_LENGTH_MASK","features":[484]},{"name":"XCN_CRYPT_LAST_ALG_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_LAST_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[484]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[484]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[484]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ANY","features":[484]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[484]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[484]},{"name":"XCN_CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[484]},{"name":"XCN_CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[484]},{"name":"XCN_CRYPT_OID_USE_CURVE_NONE","features":[484]},{"name":"XCN_CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[484]},{"name":"XCN_CRYPT_POLICY_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_RDN_ATTR_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_SIGN_ALG_OID_GROUP_ID","features":[484]},{"name":"XCN_CRYPT_STRING_ANY","features":[484]},{"name":"XCN_CRYPT_STRING_BASE64","features":[484]},{"name":"XCN_CRYPT_STRING_BASE64HEADER","features":[484]},{"name":"XCN_CRYPT_STRING_BASE64REQUESTHEADER","features":[484]},{"name":"XCN_CRYPT_STRING_BASE64URI","features":[484]},{"name":"XCN_CRYPT_STRING_BASE64X509CRLHEADER","features":[484]},{"name":"XCN_CRYPT_STRING_BASE64_ANY","features":[484]},{"name":"XCN_CRYPT_STRING_BINARY","features":[484]},{"name":"XCN_CRYPT_STRING_CHAIN","features":[484]},{"name":"XCN_CRYPT_STRING_ENCODEMASK","features":[484]},{"name":"XCN_CRYPT_STRING_HASHDATA","features":[484]},{"name":"XCN_CRYPT_STRING_HEX","features":[484]},{"name":"XCN_CRYPT_STRING_HEXADDR","features":[484]},{"name":"XCN_CRYPT_STRING_HEXASCII","features":[484]},{"name":"XCN_CRYPT_STRING_HEXASCIIADDR","features":[484]},{"name":"XCN_CRYPT_STRING_HEXRAW","features":[484]},{"name":"XCN_CRYPT_STRING_HEX_ANY","features":[484]},{"name":"XCN_CRYPT_STRING_NOCR","features":[484]},{"name":"XCN_CRYPT_STRING_NOCRLF","features":[484]},{"name":"XCN_CRYPT_STRING_PERCENTESCAPE","features":[484]},{"name":"XCN_CRYPT_STRING_STRICT","features":[484]},{"name":"XCN_CRYPT_STRING_TEXT","features":[484]},{"name":"XCN_CRYPT_TEMPLATE_OID_GROUP_ID","features":[484]},{"name":"XCN_NCRYPT_ALLOW_ALL_USAGES","features":[484]},{"name":"XCN_NCRYPT_ALLOW_ARCHIVING_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_DECRYPT_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_NONE","features":[484]},{"name":"XCN_NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_SIGNING_FLAG","features":[484]},{"name":"XCN_NCRYPT_ALLOW_USAGES_NONE","features":[484]},{"name":"XCN_NCRYPT_ANY_ASYMMETRIC_OPERATION","features":[484]},{"name":"XCN_NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[484]},{"name":"XCN_NCRYPT_CIPHER_OPERATION","features":[484]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[484]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_ONLY","features":[484]},{"name":"XCN_NCRYPT_CLAIM_NONE","features":[484]},{"name":"XCN_NCRYPT_CLAIM_SUBJECT_ONLY","features":[484]},{"name":"XCN_NCRYPT_CLAIM_UNKNOWN","features":[484]},{"name":"XCN_NCRYPT_EXACT_MATCH_OPERATION","features":[484]},{"name":"XCN_NCRYPT_HASH_OPERATION","features":[484]},{"name":"XCN_NCRYPT_KEY_DERIVATION_OPERATION","features":[484]},{"name":"XCN_NCRYPT_NO_OPERATION","features":[484]},{"name":"XCN_NCRYPT_PCP_ENCRYPTION_KEY","features":[484]},{"name":"XCN_NCRYPT_PCP_GENERIC_KEY","features":[484]},{"name":"XCN_NCRYPT_PCP_IDENTITY_KEY","features":[484]},{"name":"XCN_NCRYPT_PCP_NONE","features":[484]},{"name":"XCN_NCRYPT_PCP_SIGNATURE_KEY","features":[484]},{"name":"XCN_NCRYPT_PCP_STORAGE_KEY","features":[484]},{"name":"XCN_NCRYPT_PREFERENCE_MASK_OPERATION","features":[484]},{"name":"XCN_NCRYPT_PREFER_NON_SIGNATURE_OPERATION","features":[484]},{"name":"XCN_NCRYPT_PREFER_SIGNATURE_ONLY_OPERATION","features":[484]},{"name":"XCN_NCRYPT_RNG_OPERATION","features":[484]},{"name":"XCN_NCRYPT_SECRET_AGREEMENT_OPERATION","features":[484]},{"name":"XCN_NCRYPT_SIGNATURE_OPERATION","features":[484]},{"name":"XCN_NCRYPT_TPM12_PROVIDER","features":[484]},{"name":"XCN_NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[484]},{"name":"XCN_NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[484]},{"name":"XCN_NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[484]},{"name":"XCN_NCRYPT_UI_NO_PROTECTION_FLAG","features":[484]},{"name":"XCN_NCRYPT_UI_PROTECT_KEY_FLAG","features":[484]},{"name":"XCN_OIDVerisign_FailInfo","features":[484]},{"name":"XCN_OIDVerisign_MessageType","features":[484]},{"name":"XCN_OIDVerisign_PkiStatus","features":[484]},{"name":"XCN_OIDVerisign_RecipientNonce","features":[484]},{"name":"XCN_OIDVerisign_SenderNonce","features":[484]},{"name":"XCN_OIDVerisign_TransactionID","features":[484]},{"name":"XCN_OID_ANSI_X942","features":[484]},{"name":"XCN_OID_ANSI_X942_DH","features":[484]},{"name":"XCN_OID_ANY_APPLICATION_POLICY","features":[484]},{"name":"XCN_OID_ANY_CERT_POLICY","features":[484]},{"name":"XCN_OID_ANY_ENHANCED_KEY_USAGE","features":[484]},{"name":"XCN_OID_APPLICATION_CERT_POLICIES","features":[484]},{"name":"XCN_OID_APPLICATION_POLICY_CONSTRAINTS","features":[484]},{"name":"XCN_OID_APPLICATION_POLICY_MAPPINGS","features":[484]},{"name":"XCN_OID_ARCHIVED_KEY_ATTR","features":[484]},{"name":"XCN_OID_ARCHIVED_KEY_CERT_HASH","features":[484]},{"name":"XCN_OID_ATTR_SUPPORTED_ALGORITHMS","features":[484]},{"name":"XCN_OID_ATTR_TPM_SECURITY_ASSERTIONS","features":[484]},{"name":"XCN_OID_ATTR_TPM_SPECIFICATION","features":[484]},{"name":"XCN_OID_AUTHORITY_INFO_ACCESS","features":[484]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER","features":[484]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER2","features":[484]},{"name":"XCN_OID_AUTHORITY_REVOCATION_LIST","features":[484]},{"name":"XCN_OID_AUTO_ENROLL_CTL_USAGE","features":[484]},{"name":"XCN_OID_BACKGROUND_OTHER_LOGOTYPE","features":[484]},{"name":"XCN_OID_BASIC_CONSTRAINTS","features":[484]},{"name":"XCN_OID_BASIC_CONSTRAINTS2","features":[484]},{"name":"XCN_OID_BIOMETRIC_EXT","features":[484]},{"name":"XCN_OID_BUSINESS_CATEGORY","features":[484]},{"name":"XCN_OID_CA_CERTIFICATE","features":[484]},{"name":"XCN_OID_CERTIFICATE_REVOCATION_LIST","features":[484]},{"name":"XCN_OID_CERTIFICATE_TEMPLATE","features":[484]},{"name":"XCN_OID_CERTSRV_CA_VERSION","features":[484]},{"name":"XCN_OID_CERTSRV_CROSSCA_VERSION","features":[484]},{"name":"XCN_OID_CERTSRV_PREVIOUS_CERT_HASH","features":[484]},{"name":"XCN_OID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[484]},{"name":"XCN_OID_CERT_EXTENSIONS","features":[484]},{"name":"XCN_OID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_OID_CERT_KEY_IDENTIFIER_PROP_ID","features":[484]},{"name":"XCN_OID_CERT_MANIFOLD","features":[484]},{"name":"XCN_OID_CERT_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_OID_CERT_POLICIES","features":[484]},{"name":"XCN_OID_CERT_POLICIES_95","features":[484]},{"name":"XCN_OID_CERT_POLICIES_95_QUALIFIER1","features":[484]},{"name":"XCN_OID_CERT_PROP_ID_PREFIX","features":[484]},{"name":"XCN_OID_CERT_SIGNATURE_HASH_PROP_ID","features":[484]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_1","features":[484]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_CURRENT","features":[484]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_PREFIX","features":[484]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_1","features":[484]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_CURRENT","features":[484]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_PREFIX","features":[484]},{"name":"XCN_OID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[484]},{"name":"XCN_OID_CMC","features":[484]},{"name":"XCN_OID_CMC_ADD_ATTRIBUTES","features":[484]},{"name":"XCN_OID_CMC_ADD_EXTENSIONS","features":[484]},{"name":"XCN_OID_CMC_DATA_RETURN","features":[484]},{"name":"XCN_OID_CMC_DECRYPTED_POP","features":[484]},{"name":"XCN_OID_CMC_ENCRYPTED_POP","features":[484]},{"name":"XCN_OID_CMC_GET_CERT","features":[484]},{"name":"XCN_OID_CMC_GET_CRL","features":[484]},{"name":"XCN_OID_CMC_IDENTIFICATION","features":[484]},{"name":"XCN_OID_CMC_IDENTITY_PROOF","features":[484]},{"name":"XCN_OID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[484]},{"name":"XCN_OID_CMC_ID_POP_LINK_RANDOM","features":[484]},{"name":"XCN_OID_CMC_ID_POP_LINK_WITNESS","features":[484]},{"name":"XCN_OID_CMC_LRA_POP_WITNESS","features":[484]},{"name":"XCN_OID_CMC_QUERY_PENDING","features":[484]},{"name":"XCN_OID_CMC_RECIPIENT_NONCE","features":[484]},{"name":"XCN_OID_CMC_REG_INFO","features":[484]},{"name":"XCN_OID_CMC_RESPONSE_INFO","features":[484]},{"name":"XCN_OID_CMC_REVOKE_REQUEST","features":[484]},{"name":"XCN_OID_CMC_SENDER_NONCE","features":[484]},{"name":"XCN_OID_CMC_STATUS_INFO","features":[484]},{"name":"XCN_OID_CMC_TRANSACTION_ID","features":[484]},{"name":"XCN_OID_COMMON_NAME","features":[484]},{"name":"XCN_OID_COUNTRY_NAME","features":[484]},{"name":"XCN_OID_CRL_DIST_POINTS","features":[484]},{"name":"XCN_OID_CRL_NEXT_PUBLISH","features":[484]},{"name":"XCN_OID_CRL_NUMBER","features":[484]},{"name":"XCN_OID_CRL_REASON_CODE","features":[484]},{"name":"XCN_OID_CRL_SELF_CDP","features":[484]},{"name":"XCN_OID_CRL_VIRTUAL_BASE","features":[484]},{"name":"XCN_OID_CROSS_CERTIFICATE_PAIR","features":[484]},{"name":"XCN_OID_CROSS_CERT_DIST_POINTS","features":[484]},{"name":"XCN_OID_CTL","features":[484]},{"name":"XCN_OID_CT_PKI_DATA","features":[484]},{"name":"XCN_OID_CT_PKI_RESPONSE","features":[484]},{"name":"XCN_OID_DELTA_CRL_INDICATOR","features":[484]},{"name":"XCN_OID_DESCRIPTION","features":[484]},{"name":"XCN_OID_DESTINATION_INDICATOR","features":[484]},{"name":"XCN_OID_DEVICE_SERIAL_NUMBER","features":[484]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[484]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[484]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[484]},{"name":"XCN_OID_DISALLOWED_HASH","features":[484]},{"name":"XCN_OID_DISALLOWED_LIST","features":[484]},{"name":"XCN_OID_DN_QUALIFIER","features":[484]},{"name":"XCN_OID_DOMAIN_COMPONENT","features":[484]},{"name":"XCN_OID_DRM","features":[484]},{"name":"XCN_OID_DRM_INDIVIDUALIZATION","features":[484]},{"name":"XCN_OID_DS","features":[484]},{"name":"XCN_OID_DSALG","features":[484]},{"name":"XCN_OID_DSALG_CRPT","features":[484]},{"name":"XCN_OID_DSALG_HASH","features":[484]},{"name":"XCN_OID_DSALG_RSA","features":[484]},{"name":"XCN_OID_DSALG_SIGN","features":[484]},{"name":"XCN_OID_DS_EMAIL_REPLICATION","features":[484]},{"name":"XCN_OID_ECC_CURVE_P256","features":[484]},{"name":"XCN_OID_ECC_CURVE_P384","features":[484]},{"name":"XCN_OID_ECC_CURVE_P521","features":[484]},{"name":"XCN_OID_ECC_PUBLIC_KEY","features":[484]},{"name":"XCN_OID_ECDSA_SHA1","features":[484]},{"name":"XCN_OID_ECDSA_SHA256","features":[484]},{"name":"XCN_OID_ECDSA_SHA384","features":[484]},{"name":"XCN_OID_ECDSA_SHA512","features":[484]},{"name":"XCN_OID_ECDSA_SPECIFIED","features":[484]},{"name":"XCN_OID_EFS_RECOVERY","features":[484]},{"name":"XCN_OID_EMBEDDED_NT_CRYPTO","features":[484]},{"name":"XCN_OID_ENCRYPTED_KEY_HASH","features":[484]},{"name":"XCN_OID_ENHANCED_KEY_USAGE","features":[484]},{"name":"XCN_OID_ENROLLMENT_AGENT","features":[484]},{"name":"XCN_OID_ENROLLMENT_CSP_PROVIDER","features":[484]},{"name":"XCN_OID_ENROLLMENT_NAME_VALUE_PAIR","features":[484]},{"name":"XCN_OID_ENROLL_ATTESTATION_CHALLENGE","features":[484]},{"name":"XCN_OID_ENROLL_ATTESTATION_STATEMENT","features":[484]},{"name":"XCN_OID_ENROLL_CAXCHGCERT_HASH","features":[484]},{"name":"XCN_OID_ENROLL_CERTTYPE_EXTENSION","features":[484]},{"name":"XCN_OID_ENROLL_EKPUB_CHALLENGE","features":[484]},{"name":"XCN_OID_ENROLL_EKVERIFYCERT","features":[484]},{"name":"XCN_OID_ENROLL_EKVERIFYCREDS","features":[484]},{"name":"XCN_OID_ENROLL_EKVERIFYKEY","features":[484]},{"name":"XCN_OID_ENROLL_EK_INFO","features":[484]},{"name":"XCN_OID_ENROLL_ENCRYPTION_ALGORITHM","features":[484]},{"name":"XCN_OID_ENROLL_KSP_NAME","features":[484]},{"name":"XCN_OID_ENROLL_SCEP_ERROR","features":[484]},{"name":"XCN_OID_ENTERPRISE_OID_ROOT","features":[484]},{"name":"XCN_OID_EV_RDN_COUNTRY","features":[484]},{"name":"XCN_OID_EV_RDN_LOCALE","features":[484]},{"name":"XCN_OID_EV_RDN_STATE_OR_PROVINCE","features":[484]},{"name":"XCN_OID_FACSIMILE_TELEPHONE_NUMBER","features":[484]},{"name":"XCN_OID_FRESHEST_CRL","features":[484]},{"name":"XCN_OID_GIVEN_NAME","features":[484]},{"name":"XCN_OID_INFOSEC","features":[484]},{"name":"XCN_OID_INFOSEC_SuiteAConfidentiality","features":[484]},{"name":"XCN_OID_INFOSEC_SuiteAIntegrity","features":[484]},{"name":"XCN_OID_INFOSEC_SuiteAKMandSig","features":[484]},{"name":"XCN_OID_INFOSEC_SuiteAKeyManagement","features":[484]},{"name":"XCN_OID_INFOSEC_SuiteASignature","features":[484]},{"name":"XCN_OID_INFOSEC_SuiteATokenProtection","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicConfidentiality","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicIntegrity","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicKMandSig","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicKMandUpdSig","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicKeyManagement","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicSignature","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicTokenProtection","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedInteg","features":[484]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedSig","features":[484]},{"name":"XCN_OID_INFOSEC_sdnsConfidentiality","features":[484]},{"name":"XCN_OID_INFOSEC_sdnsIntegrity","features":[484]},{"name":"XCN_OID_INFOSEC_sdnsKMandSig","features":[484]},{"name":"XCN_OID_INFOSEC_sdnsKeyManagement","features":[484]},{"name":"XCN_OID_INFOSEC_sdnsSignature","features":[484]},{"name":"XCN_OID_INFOSEC_sdnsTokenProtection","features":[484]},{"name":"XCN_OID_INHIBIT_ANY_POLICY","features":[484]},{"name":"XCN_OID_INITIALS","features":[484]},{"name":"XCN_OID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[484]},{"name":"XCN_OID_INTERNATIONAL_ISDN_NUMBER","features":[484]},{"name":"XCN_OID_IPSEC_KP_IKE_INTERMEDIATE","features":[484]},{"name":"XCN_OID_ISSUED_CERT_HASH","features":[484]},{"name":"XCN_OID_ISSUER_ALT_NAME","features":[484]},{"name":"XCN_OID_ISSUER_ALT_NAME2","features":[484]},{"name":"XCN_OID_ISSUING_DIST_POINT","features":[484]},{"name":"XCN_OID_KEYID_RDN","features":[484]},{"name":"XCN_OID_KEY_ATTRIBUTES","features":[484]},{"name":"XCN_OID_KEY_USAGE","features":[484]},{"name":"XCN_OID_KEY_USAGE_RESTRICTION","features":[484]},{"name":"XCN_OID_KP_CA_EXCHANGE","features":[484]},{"name":"XCN_OID_KP_CSP_SIGNATURE","features":[484]},{"name":"XCN_OID_KP_CTL_USAGE_SIGNING","features":[484]},{"name":"XCN_OID_KP_DOCUMENT_SIGNING","features":[484]},{"name":"XCN_OID_KP_EFS","features":[484]},{"name":"XCN_OID_KP_KERNEL_MODE_CODE_SIGNING","features":[484]},{"name":"XCN_OID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[484]},{"name":"XCN_OID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[484]},{"name":"XCN_OID_KP_KEY_RECOVERY","features":[484]},{"name":"XCN_OID_KP_KEY_RECOVERY_AGENT","features":[484]},{"name":"XCN_OID_KP_LIFETIME_SIGNING","features":[484]},{"name":"XCN_OID_KP_MOBILE_DEVICE_SOFTWARE","features":[484]},{"name":"XCN_OID_KP_QUALIFIED_SUBORDINATION","features":[484]},{"name":"XCN_OID_KP_SMARTCARD_LOGON","features":[484]},{"name":"XCN_OID_KP_SMART_DISPLAY","features":[484]},{"name":"XCN_OID_KP_TIME_STAMP_SIGNING","features":[484]},{"name":"XCN_OID_KP_TPM_AIK_CERTIFICATE","features":[484]},{"name":"XCN_OID_KP_TPM_EK_CERTIFICATE","features":[484]},{"name":"XCN_OID_KP_TPM_PLATFORM_CERTIFICATE","features":[484]},{"name":"XCN_OID_LEGACY_POLICY_MAPPINGS","features":[484]},{"name":"XCN_OID_LICENSES","features":[484]},{"name":"XCN_OID_LICENSE_SERVER","features":[484]},{"name":"XCN_OID_LOCALITY_NAME","features":[484]},{"name":"XCN_OID_LOCAL_MACHINE_KEYSET","features":[484]},{"name":"XCN_OID_LOGOTYPE_EXT","features":[484]},{"name":"XCN_OID_LOYALTY_OTHER_LOGOTYPE","features":[484]},{"name":"XCN_OID_MEMBER","features":[484]},{"name":"XCN_OID_NAME_CONSTRAINTS","features":[484]},{"name":"XCN_OID_NETSCAPE","features":[484]},{"name":"XCN_OID_NETSCAPE_BASE_URL","features":[484]},{"name":"XCN_OID_NETSCAPE_CA_POLICY_URL","features":[484]},{"name":"XCN_OID_NETSCAPE_CA_REVOCATION_URL","features":[484]},{"name":"XCN_OID_NETSCAPE_CERT_EXTENSION","features":[484]},{"name":"XCN_OID_NETSCAPE_CERT_RENEWAL_URL","features":[484]},{"name":"XCN_OID_NETSCAPE_CERT_SEQUENCE","features":[484]},{"name":"XCN_OID_NETSCAPE_CERT_TYPE","features":[484]},{"name":"XCN_OID_NETSCAPE_COMMENT","features":[484]},{"name":"XCN_OID_NETSCAPE_DATA_TYPE","features":[484]},{"name":"XCN_OID_NETSCAPE_REVOCATION_URL","features":[484]},{"name":"XCN_OID_NETSCAPE_SSL_SERVER_NAME","features":[484]},{"name":"XCN_OID_NEXT_UPDATE_LOCATION","features":[484]},{"name":"XCN_OID_NIST_AES128_CBC","features":[484]},{"name":"XCN_OID_NIST_AES128_WRAP","features":[484]},{"name":"XCN_OID_NIST_AES192_CBC","features":[484]},{"name":"XCN_OID_NIST_AES192_WRAP","features":[484]},{"name":"XCN_OID_NIST_AES256_CBC","features":[484]},{"name":"XCN_OID_NIST_AES256_WRAP","features":[484]},{"name":"XCN_OID_NIST_sha256","features":[484]},{"name":"XCN_OID_NIST_sha384","features":[484]},{"name":"XCN_OID_NIST_sha512","features":[484]},{"name":"XCN_OID_NONE","features":[484]},{"name":"XCN_OID_NT5_CRYPTO","features":[484]},{"name":"XCN_OID_NTDS_REPLICATION","features":[484]},{"name":"XCN_OID_NT_PRINCIPAL_NAME","features":[484]},{"name":"XCN_OID_OEM_WHQL_CRYPTO","features":[484]},{"name":"XCN_OID_OIW","features":[484]},{"name":"XCN_OID_OIWDIR","features":[484]},{"name":"XCN_OID_OIWDIR_CRPT","features":[484]},{"name":"XCN_OID_OIWDIR_HASH","features":[484]},{"name":"XCN_OID_OIWDIR_SIGN","features":[484]},{"name":"XCN_OID_OIWDIR_md2","features":[484]},{"name":"XCN_OID_OIWDIR_md2RSA","features":[484]},{"name":"XCN_OID_OIWSEC","features":[484]},{"name":"XCN_OID_OIWSEC_desCBC","features":[484]},{"name":"XCN_OID_OIWSEC_desCFB","features":[484]},{"name":"XCN_OID_OIWSEC_desECB","features":[484]},{"name":"XCN_OID_OIWSEC_desEDE","features":[484]},{"name":"XCN_OID_OIWSEC_desMAC","features":[484]},{"name":"XCN_OID_OIWSEC_desOFB","features":[484]},{"name":"XCN_OID_OIWSEC_dhCommMod","features":[484]},{"name":"XCN_OID_OIWSEC_dsa","features":[484]},{"name":"XCN_OID_OIWSEC_dsaComm","features":[484]},{"name":"XCN_OID_OIWSEC_dsaCommSHA","features":[484]},{"name":"XCN_OID_OIWSEC_dsaCommSHA1","features":[484]},{"name":"XCN_OID_OIWSEC_dsaSHA1","features":[484]},{"name":"XCN_OID_OIWSEC_keyHashSeal","features":[484]},{"name":"XCN_OID_OIWSEC_md2RSASign","features":[484]},{"name":"XCN_OID_OIWSEC_md4RSA","features":[484]},{"name":"XCN_OID_OIWSEC_md4RSA2","features":[484]},{"name":"XCN_OID_OIWSEC_md5RSA","features":[484]},{"name":"XCN_OID_OIWSEC_md5RSASign","features":[484]},{"name":"XCN_OID_OIWSEC_mdc2","features":[484]},{"name":"XCN_OID_OIWSEC_mdc2RSA","features":[484]},{"name":"XCN_OID_OIWSEC_rsaSign","features":[484]},{"name":"XCN_OID_OIWSEC_rsaXchg","features":[484]},{"name":"XCN_OID_OIWSEC_sha","features":[484]},{"name":"XCN_OID_OIWSEC_sha1","features":[484]},{"name":"XCN_OID_OIWSEC_sha1RSASign","features":[484]},{"name":"XCN_OID_OIWSEC_shaDSA","features":[484]},{"name":"XCN_OID_OIWSEC_shaRSA","features":[484]},{"name":"XCN_OID_ORGANIZATIONAL_UNIT_NAME","features":[484]},{"name":"XCN_OID_ORGANIZATION_NAME","features":[484]},{"name":"XCN_OID_OS_VERSION","features":[484]},{"name":"XCN_OID_OWNER","features":[484]},{"name":"XCN_OID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[484]},{"name":"XCN_OID_PKCS","features":[484]},{"name":"XCN_OID_PKCS_1","features":[484]},{"name":"XCN_OID_PKCS_10","features":[484]},{"name":"XCN_OID_PKCS_12","features":[484]},{"name":"XCN_OID_PKCS_12_EXTENDED_ATTRIBUTES","features":[484]},{"name":"XCN_OID_PKCS_12_FRIENDLY_NAME_ATTR","features":[484]},{"name":"XCN_OID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[484]},{"name":"XCN_OID_PKCS_12_LOCAL_KEY_ID","features":[484]},{"name":"XCN_OID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[484]},{"name":"XCN_OID_PKCS_12_PbeIds","features":[484]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC2","features":[484]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC4","features":[484]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[484]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[484]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC2","features":[484]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC4","features":[484]},{"name":"XCN_OID_PKCS_2","features":[484]},{"name":"XCN_OID_PKCS_3","features":[484]},{"name":"XCN_OID_PKCS_4","features":[484]},{"name":"XCN_OID_PKCS_5","features":[484]},{"name":"XCN_OID_PKCS_6","features":[484]},{"name":"XCN_OID_PKCS_7","features":[484]},{"name":"XCN_OID_PKCS_7_DATA","features":[484]},{"name":"XCN_OID_PKCS_7_DIGESTED","features":[484]},{"name":"XCN_OID_PKCS_7_ENCRYPTED","features":[484]},{"name":"XCN_OID_PKCS_7_ENVELOPED","features":[484]},{"name":"XCN_OID_PKCS_7_SIGNED","features":[484]},{"name":"XCN_OID_PKCS_7_SIGNEDANDENVELOPED","features":[484]},{"name":"XCN_OID_PKCS_8","features":[484]},{"name":"XCN_OID_PKCS_9","features":[484]},{"name":"XCN_OID_PKCS_9_CONTENT_TYPE","features":[484]},{"name":"XCN_OID_PKCS_9_MESSAGE_DIGEST","features":[484]},{"name":"XCN_OID_PKINIT_KP_KDC","features":[484]},{"name":"XCN_OID_PKIX","features":[484]},{"name":"XCN_OID_PKIX_ACC_DESCR","features":[484]},{"name":"XCN_OID_PKIX_CA_ISSUERS","features":[484]},{"name":"XCN_OID_PKIX_CA_REPOSITORY","features":[484]},{"name":"XCN_OID_PKIX_KP","features":[484]},{"name":"XCN_OID_PKIX_KP_CLIENT_AUTH","features":[484]},{"name":"XCN_OID_PKIX_KP_CODE_SIGNING","features":[484]},{"name":"XCN_OID_PKIX_KP_EMAIL_PROTECTION","features":[484]},{"name":"XCN_OID_PKIX_KP_IPSEC_END_SYSTEM","features":[484]},{"name":"XCN_OID_PKIX_KP_IPSEC_TUNNEL","features":[484]},{"name":"XCN_OID_PKIX_KP_IPSEC_USER","features":[484]},{"name":"XCN_OID_PKIX_KP_OCSP_SIGNING","features":[484]},{"name":"XCN_OID_PKIX_KP_SERVER_AUTH","features":[484]},{"name":"XCN_OID_PKIX_KP_TIMESTAMP_SIGNING","features":[484]},{"name":"XCN_OID_PKIX_NO_SIGNATURE","features":[484]},{"name":"XCN_OID_PKIX_OCSP","features":[484]},{"name":"XCN_OID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[484]},{"name":"XCN_OID_PKIX_OCSP_NOCHECK","features":[484]},{"name":"XCN_OID_PKIX_OCSP_NONCE","features":[484]},{"name":"XCN_OID_PKIX_PE","features":[484]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_CPS","features":[484]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[484]},{"name":"XCN_OID_PKIX_TIME_STAMPING","features":[484]},{"name":"XCN_OID_POLICY_CONSTRAINTS","features":[484]},{"name":"XCN_OID_POLICY_MAPPINGS","features":[484]},{"name":"XCN_OID_POSTAL_ADDRESS","features":[484]},{"name":"XCN_OID_POSTAL_CODE","features":[484]},{"name":"XCN_OID_POST_OFFICE_BOX","features":[484]},{"name":"XCN_OID_PREFERRED_DELIVERY_METHOD","features":[484]},{"name":"XCN_OID_PRESENTATION_ADDRESS","features":[484]},{"name":"XCN_OID_PRIVATEKEY_USAGE_PERIOD","features":[484]},{"name":"XCN_OID_PRODUCT_UPDATE","features":[484]},{"name":"XCN_OID_QC_EU_COMPLIANCE","features":[484]},{"name":"XCN_OID_QC_SSCD","features":[484]},{"name":"XCN_OID_QC_STATEMENTS_EXT","features":[484]},{"name":"XCN_OID_RDN_DUMMY_SIGNER","features":[484]},{"name":"XCN_OID_RDN_TPM_MANUFACTURER","features":[484]},{"name":"XCN_OID_RDN_TPM_MODEL","features":[484]},{"name":"XCN_OID_RDN_TPM_VERSION","features":[484]},{"name":"XCN_OID_REASON_CODE_HOLD","features":[484]},{"name":"XCN_OID_REGISTERED_ADDRESS","features":[484]},{"name":"XCN_OID_REMOVE_CERTIFICATE","features":[484]},{"name":"XCN_OID_RENEWAL_CERTIFICATE","features":[484]},{"name":"XCN_OID_REQUEST_CLIENT_INFO","features":[484]},{"name":"XCN_OID_REQUIRE_CERT_CHAIN_POLICY","features":[484]},{"name":"XCN_OID_REVOKED_LIST_SIGNER","features":[484]},{"name":"XCN_OID_RFC3161_counterSign","features":[484]},{"name":"XCN_OID_ROLE_OCCUPANT","features":[484]},{"name":"XCN_OID_ROOT_LIST_SIGNER","features":[484]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[484]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[484]},{"name":"XCN_OID_ROOT_PROGRAM_FLAGS","features":[484]},{"name":"XCN_OID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[484]},{"name":"XCN_OID_RSA","features":[484]},{"name":"XCN_OID_RSAES_OAEP","features":[484]},{"name":"XCN_OID_RSA_DES_EDE3_CBC","features":[484]},{"name":"XCN_OID_RSA_DH","features":[484]},{"name":"XCN_OID_RSA_ENCRYPT","features":[484]},{"name":"XCN_OID_RSA_HASH","features":[484]},{"name":"XCN_OID_RSA_MD2","features":[484]},{"name":"XCN_OID_RSA_MD2RSA","features":[484]},{"name":"XCN_OID_RSA_MD4","features":[484]},{"name":"XCN_OID_RSA_MD4RSA","features":[484]},{"name":"XCN_OID_RSA_MD5","features":[484]},{"name":"XCN_OID_RSA_MD5RSA","features":[484]},{"name":"XCN_OID_RSA_MGF1","features":[484]},{"name":"XCN_OID_RSA_PSPECIFIED","features":[484]},{"name":"XCN_OID_RSA_RC2CBC","features":[484]},{"name":"XCN_OID_RSA_RC4","features":[484]},{"name":"XCN_OID_RSA_RC5_CBCPad","features":[484]},{"name":"XCN_OID_RSA_RSA","features":[484]},{"name":"XCN_OID_RSA_SETOAEP_RSA","features":[484]},{"name":"XCN_OID_RSA_SHA1RSA","features":[484]},{"name":"XCN_OID_RSA_SHA256RSA","features":[484]},{"name":"XCN_OID_RSA_SHA384RSA","features":[484]},{"name":"XCN_OID_RSA_SHA512RSA","features":[484]},{"name":"XCN_OID_RSA_SMIMECapabilities","features":[484]},{"name":"XCN_OID_RSA_SMIMEalg","features":[484]},{"name":"XCN_OID_RSA_SMIMEalgCMS3DESwrap","features":[484]},{"name":"XCN_OID_RSA_SMIMEalgCMSRC2wrap","features":[484]},{"name":"XCN_OID_RSA_SMIMEalgESDH","features":[484]},{"name":"XCN_OID_RSA_SSA_PSS","features":[484]},{"name":"XCN_OID_RSA_certExtensions","features":[484]},{"name":"XCN_OID_RSA_challengePwd","features":[484]},{"name":"XCN_OID_RSA_contentType","features":[484]},{"name":"XCN_OID_RSA_counterSign","features":[484]},{"name":"XCN_OID_RSA_data","features":[484]},{"name":"XCN_OID_RSA_digestedData","features":[484]},{"name":"XCN_OID_RSA_emailAddr","features":[484]},{"name":"XCN_OID_RSA_encryptedData","features":[484]},{"name":"XCN_OID_RSA_envelopedData","features":[484]},{"name":"XCN_OID_RSA_extCertAttrs","features":[484]},{"name":"XCN_OID_RSA_hashedData","features":[484]},{"name":"XCN_OID_RSA_messageDigest","features":[484]},{"name":"XCN_OID_RSA_preferSignedData","features":[484]},{"name":"XCN_OID_RSA_signEnvData","features":[484]},{"name":"XCN_OID_RSA_signedData","features":[484]},{"name":"XCN_OID_RSA_signingTime","features":[484]},{"name":"XCN_OID_RSA_unstructAddr","features":[484]},{"name":"XCN_OID_RSA_unstructName","features":[484]},{"name":"XCN_OID_SEARCH_GUIDE","features":[484]},{"name":"XCN_OID_SEE_ALSO","features":[484]},{"name":"XCN_OID_SERIALIZED","features":[484]},{"name":"XCN_OID_SERVER_GATED_CRYPTO","features":[484]},{"name":"XCN_OID_SGC_NETSCAPE","features":[484]},{"name":"XCN_OID_SORTED_CTL","features":[484]},{"name":"XCN_OID_STATE_OR_PROVINCE_NAME","features":[484]},{"name":"XCN_OID_STREET_ADDRESS","features":[484]},{"name":"XCN_OID_SUBJECT_ALT_NAME","features":[484]},{"name":"XCN_OID_SUBJECT_ALT_NAME2","features":[484]},{"name":"XCN_OID_SUBJECT_DIR_ATTRS","features":[484]},{"name":"XCN_OID_SUBJECT_INFO_ACCESS","features":[484]},{"name":"XCN_OID_SUBJECT_KEY_IDENTIFIER","features":[484]},{"name":"XCN_OID_SUPPORTED_APPLICATION_CONTEXT","features":[484]},{"name":"XCN_OID_SUR_NAME","features":[484]},{"name":"XCN_OID_TELEPHONE_NUMBER","features":[484]},{"name":"XCN_OID_TELETEXT_TERMINAL_IDENTIFIER","features":[484]},{"name":"XCN_OID_TELEX_NUMBER","features":[484]},{"name":"XCN_OID_TIMESTAMP_TOKEN","features":[484]},{"name":"XCN_OID_TITLE","features":[484]},{"name":"XCN_OID_USER_CERTIFICATE","features":[484]},{"name":"XCN_OID_USER_PASSWORD","features":[484]},{"name":"XCN_OID_VERISIGN_BITSTRING_6_13","features":[484]},{"name":"XCN_OID_VERISIGN_ISS_STRONG_CRYPTO","features":[484]},{"name":"XCN_OID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[484]},{"name":"XCN_OID_VERISIGN_PRIVATE_6_9","features":[484]},{"name":"XCN_OID_WHQL_CRYPTO","features":[484]},{"name":"XCN_OID_X21_ADDRESS","features":[484]},{"name":"XCN_OID_X957","features":[484]},{"name":"XCN_OID_X957_DSA","features":[484]},{"name":"XCN_OID_X957_SHA1DSA","features":[484]},{"name":"XCN_OID_YESNO_TRUST_ATTR","features":[484]},{"name":"XCN_PROPERTYID_NONE","features":[484]},{"name":"XCN_PROV_DH_SCHANNEL","features":[484]},{"name":"XCN_PROV_DSS","features":[484]},{"name":"XCN_PROV_DSS_DH","features":[484]},{"name":"XCN_PROV_EC_ECDSA_FULL","features":[484]},{"name":"XCN_PROV_EC_ECDSA_SIG","features":[484]},{"name":"XCN_PROV_EC_ECNRA_FULL","features":[484]},{"name":"XCN_PROV_EC_ECNRA_SIG","features":[484]},{"name":"XCN_PROV_FORTEZZA","features":[484]},{"name":"XCN_PROV_INTEL_SEC","features":[484]},{"name":"XCN_PROV_MS_EXCHANGE","features":[484]},{"name":"XCN_PROV_NONE","features":[484]},{"name":"XCN_PROV_REPLACE_OWF","features":[484]},{"name":"XCN_PROV_RNG","features":[484]},{"name":"XCN_PROV_RSA_AES","features":[484]},{"name":"XCN_PROV_RSA_FULL","features":[484]},{"name":"XCN_PROV_RSA_SCHANNEL","features":[484]},{"name":"XCN_PROV_RSA_SIG","features":[484]},{"name":"XCN_PROV_SPYRUS_LYNKS","features":[484]},{"name":"XCN_PROV_SSL","features":[484]},{"name":"XECI_AUTOENROLL","features":[484]},{"name":"XECI_CERTREQ","features":[484]},{"name":"XECI_DISABLE","features":[484]},{"name":"XECI_REQWIZARD","features":[484]},{"name":"XECI_XENROLL","features":[484]},{"name":"XECP_STRING_PROPERTY","features":[484]},{"name":"XECR_CMC","features":[484]},{"name":"XECR_PKCS10_V1_5","features":[484]},{"name":"XECR_PKCS10_V2_0","features":[484]},{"name":"XECR_PKCS7","features":[484]},{"name":"XECT_EXTENSION_V1","features":[484]},{"name":"XECT_EXTENSION_V2","features":[484]},{"name":"XEKL_KEYSIZE","features":[484]},{"name":"XEKL_KEYSIZE_DEFAULT","features":[484]},{"name":"XEKL_KEYSIZE_INC","features":[484]},{"name":"XEKL_KEYSIZE_MAX","features":[484]},{"name":"XEKL_KEYSIZE_MIN","features":[484]},{"name":"XEKL_KEYSPEC","features":[484]},{"name":"XEKL_KEYSPEC_KEYX","features":[484]},{"name":"XEKL_KEYSPEC_SIG","features":[484]},{"name":"XEPR_CADNS","features":[484]},{"name":"XEPR_CAFRIENDLYNAME","features":[484]},{"name":"XEPR_CANAME","features":[484]},{"name":"XEPR_DATE","features":[484]},{"name":"XEPR_ENUM_FIRST","features":[484]},{"name":"XEPR_HASH","features":[484]},{"name":"XEPR_REQUESTID","features":[484]},{"name":"XEPR_TEMPLATENAME","features":[484]},{"name":"XEPR_V1TEMPLATENAME","features":[484]},{"name":"XEPR_V2TEMPLATEOID","features":[484]},{"name":"XEPR_VERSION","features":[484]},{"name":"dwCAXCHGOVERLAPPERIODCOUNTDEFAULT","features":[484]},{"name":"dwCAXCHGVALIDITYPERIODCOUNTDEFAULT","features":[484]},{"name":"dwCRLDELTAOVERLAPPERIODCOUNTDEFAULT","features":[484]},{"name":"dwCRLDELTAPERIODCOUNTDEFAULT","features":[484]},{"name":"dwCRLOVERLAPPERIODCOUNTDEFAULT","features":[484]},{"name":"dwCRLPERIODCOUNTDEFAULT","features":[484]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ENTERPRISE","features":[484]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ROOT","features":[484]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_STANDALONE","features":[484]},{"name":"szBACKUPANNOTATION","features":[484]},{"name":"szDBBASENAMEPARM","features":[484]},{"name":"szNAMESEPARATORDEFAULT","features":[484]},{"name":"szPROPASNTAG","features":[484]},{"name":"szRESTOREANNOTATION","features":[484]},{"name":"wszAT_EKCERTINF","features":[484]},{"name":"wszAT_TESTROOT","features":[484]},{"name":"wszCAPOLICYFILE","features":[484]},{"name":"wszCERTEXITMODULE_POSTFIX","features":[484]},{"name":"wszCERTIFICATETRANSPARENCYFLAGS","features":[484]},{"name":"wszCERTMANAGE_SUFFIX","features":[484]},{"name":"wszCERTPOLICYMODULE_POSTFIX","features":[484]},{"name":"wszCERT_TYPE","features":[484]},{"name":"wszCERT_TYPE_CLIENT","features":[484]},{"name":"wszCERT_TYPE_CODESIGN","features":[484]},{"name":"wszCERT_TYPE_CUSTOMER","features":[484]},{"name":"wszCERT_TYPE_MERCHANT","features":[484]},{"name":"wszCERT_TYPE_PAYMENT","features":[484]},{"name":"wszCERT_TYPE_SERVER","features":[484]},{"name":"wszCERT_VERSION","features":[484]},{"name":"wszCERT_VERSION_1","features":[484]},{"name":"wszCERT_VERSION_2","features":[484]},{"name":"wszCERT_VERSION_3","features":[484]},{"name":"wszCLASS_CERTADMIN","features":[484]},{"name":"wszCLASS_CERTCONFIG","features":[484]},{"name":"wszCLASS_CERTDBMEM","features":[484]},{"name":"wszCLASS_CERTENCODE","features":[484]},{"name":"wszCLASS_CERTGETCONFIG","features":[484]},{"name":"wszCLASS_CERTREQUEST","features":[484]},{"name":"wszCLASS_CERTSERVEREXIT","features":[484]},{"name":"wszCLASS_CERTSERVERPOLICY","features":[484]},{"name":"wszCLASS_CERTVIEW","features":[484]},{"name":"wszCMM_PROP_COPYRIGHT","features":[484]},{"name":"wszCMM_PROP_DESCRIPTION","features":[484]},{"name":"wszCMM_PROP_DISPLAY_HWND","features":[484]},{"name":"wszCMM_PROP_FILEVER","features":[484]},{"name":"wszCMM_PROP_ISMULTITHREADED","features":[484]},{"name":"wszCMM_PROP_NAME","features":[484]},{"name":"wszCMM_PROP_PRODUCTVER","features":[484]},{"name":"wszCNGENCRYPTIONALGORITHM","features":[484]},{"name":"wszCNGHASHALGORITHM","features":[484]},{"name":"wszCNGPUBLICKEYALGORITHM","features":[484]},{"name":"wszCONFIG_AUTHORITY","features":[484]},{"name":"wszCONFIG_COMMENT","features":[484]},{"name":"wszCONFIG_COMMONNAME","features":[484]},{"name":"wszCONFIG_CONFIG","features":[484]},{"name":"wszCONFIG_COUNTRY","features":[484]},{"name":"wszCONFIG_DESCRIPTION","features":[484]},{"name":"wszCONFIG_EXCHANGECERTIFICATE","features":[484]},{"name":"wszCONFIG_FLAGS","features":[484]},{"name":"wszCONFIG_LOCALITY","features":[484]},{"name":"wszCONFIG_ORGANIZATION","features":[484]},{"name":"wszCONFIG_ORGUNIT","features":[484]},{"name":"wszCONFIG_SANITIZEDNAME","features":[484]},{"name":"wszCONFIG_SANITIZEDSHORTNAME","features":[484]},{"name":"wszCONFIG_SERVER","features":[484]},{"name":"wszCONFIG_SHORTNAME","features":[484]},{"name":"wszCONFIG_SIGNATURECERTIFICATE","features":[484]},{"name":"wszCONFIG_STATE","features":[484]},{"name":"wszCONFIG_WEBENROLLMENTSERVERS","features":[484]},{"name":"wszCRLPUBLISHRETRYCOUNT","features":[484]},{"name":"wszCRTFILENAMEEXT","features":[484]},{"name":"wszDATFILENAMEEXT","features":[484]},{"name":"wszDBBACKUPCERTBACKDAT","features":[484]},{"name":"wszDBBACKUPSUBDIR","features":[484]},{"name":"wszDBFILENAMEEXT","features":[484]},{"name":"wszENCRYPTIONALGORITHM","features":[484]},{"name":"wszENROLLMENTAGENTRIGHTS","features":[484]},{"name":"wszHASHALGORITHM","features":[484]},{"name":"wszINFKEY_ALTERNATESIGNATUREALGORITHM","features":[484]},{"name":"wszINFKEY_ATTESTPRIVATEKEY","features":[484]},{"name":"wszINFKEY_CACAPABILITIES","features":[484]},{"name":"wszINFKEY_CACERTS","features":[484]},{"name":"wszINFKEY_CATHUMBPRINT","features":[484]},{"name":"wszINFKEY_CCDPSYNCDELTATIME","features":[484]},{"name":"wszINFKEY_CHALLENGEPASSWORD","features":[484]},{"name":"wszINFKEY_CONTINUE","features":[484]},{"name":"wszINFKEY_CRITICAL","features":[484]},{"name":"wszINFKEY_CRLDELTAPERIODCOUNT","features":[484]},{"name":"wszINFKEY_CRLDELTAPERIODSTRING","features":[484]},{"name":"wszINFKEY_CRLPERIODCOUNT","features":[484]},{"name":"wszINFKEY_CRLPERIODSTRING","features":[484]},{"name":"wszINFKEY_DIRECTORYNAME","features":[484]},{"name":"wszINFKEY_DNS","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERSTYPE","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS_A","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS_B","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS_BASE","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS_COFACTOR","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS_ORDER","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS_P","features":[484]},{"name":"wszINFKEY_ECCKEYPARAMETERS_SEED","features":[484]},{"name":"wszINFKEY_EMAIL","features":[484]},{"name":"wszINFKEY_EMPTY","features":[484]},{"name":"wszINFKEY_ENABLEKEYCOUNTING","features":[484]},{"name":"wszINFKEY_ENCRYPTIONALGORITHM","features":[484]},{"name":"wszINFKEY_ENCRYPTIONLENGTH","features":[484]},{"name":"wszINFKEY_EXCLUDE","features":[484]},{"name":"wszINFKEY_EXPORTABLE","features":[484]},{"name":"wszINFKEY_EXPORTABLEENCRYPTED","features":[484]},{"name":"wszINFKEY_FLAGS","features":[484]},{"name":"wszINFKEY_FORCEUTF8","features":[484]},{"name":"wszINFKEY_FRIENDLYNAME","features":[484]},{"name":"wszINFKEY_HASHALGORITHM","features":[484]},{"name":"wszINFKEY_INCLUDE","features":[484]},{"name":"wszINFKEY_INHIBITPOLICYMAPPING","features":[484]},{"name":"wszINFKEY_IPADDRESS","features":[484]},{"name":"wszINFKEY_KEYALGORITHM","features":[484]},{"name":"wszINFKEY_KEYALGORITHMPARMETERS","features":[484]},{"name":"wszINFKEY_KEYCONTAINER","features":[484]},{"name":"wszINFKEY_KEYLENGTH","features":[484]},{"name":"wszINFKEY_KEYPROTECTION","features":[484]},{"name":"wszINFKEY_KEYUSAGEEXTENSION","features":[484]},{"name":"wszINFKEY_KEYUSAGEPROPERTY","features":[484]},{"name":"wszINFKEY_LEGACYKEYSPEC","features":[484]},{"name":"wszINFKEY_LOADDEFAULTTEMPLATES","features":[484]},{"name":"wszINFKEY_MACHINEKEYSET","features":[484]},{"name":"wszINFKEY_NOTAFTER","features":[484]},{"name":"wszINFKEY_NOTBEFORE","features":[484]},{"name":"wszINFKEY_NOTICE","features":[484]},{"name":"wszINFKEY_OID","features":[484]},{"name":"wszINFKEY_OTHERNAME","features":[484]},{"name":"wszINFKEY_PATHLENGTH","features":[484]},{"name":"wszINFKEY_POLICIES","features":[484]},{"name":"wszINFKEY_PRIVATEKEYARCHIVE","features":[484]},{"name":"wszINFKEY_PROVIDERNAME","features":[484]},{"name":"wszINFKEY_PROVIDERTYPE","features":[484]},{"name":"wszINFKEY_PUBLICKEY","features":[484]},{"name":"wszINFKEY_PUBLICKEYPARAMETERS","features":[484]},{"name":"wszINFKEY_READERNAME","features":[484]},{"name":"wszINFKEY_REGISTEREDID","features":[484]},{"name":"wszINFKEY_RENEWALCERT","features":[484]},{"name":"wszINFKEY_RENEWALKEYLENGTH","features":[484]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODCOUNT","features":[484]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODSTRING","features":[484]},{"name":"wszINFKEY_REQUESTTYPE","features":[484]},{"name":"wszINFKEY_REQUIREEXPLICITPOLICY","features":[484]},{"name":"wszINFKEY_SECURITYDESCRIPTOR","features":[484]},{"name":"wszINFKEY_SERIALNUMBER","features":[484]},{"name":"wszINFKEY_SHOWALLCSPS","features":[484]},{"name":"wszINFKEY_SILENT","features":[484]},{"name":"wszINFKEY_SMIME","features":[484]},{"name":"wszINFKEY_SUBJECT","features":[484]},{"name":"wszINFKEY_SUBJECTNAMEFLAGS","features":[484]},{"name":"wszINFKEY_SUBTREE","features":[484]},{"name":"wszINFKEY_SUPPRESSDEFAULTS","features":[484]},{"name":"wszINFKEY_UICONTEXTMESSAGE","features":[484]},{"name":"wszINFKEY_UPN","features":[484]},{"name":"wszINFKEY_URL","features":[484]},{"name":"wszINFKEY_USEEXISTINGKEY","features":[484]},{"name":"wszINFKEY_USERPROTECTED","features":[484]},{"name":"wszINFKEY_UTF8","features":[484]},{"name":"wszINFKEY_X500NAMEFLAGS","features":[484]},{"name":"wszINFSECTION_AIA","features":[484]},{"name":"wszINFSECTION_APPLICATIONPOLICYCONSTRAINTS","features":[484]},{"name":"wszINFSECTION_APPLICATIONPOLICYMAPPINGS","features":[484]},{"name":"wszINFSECTION_APPLICATIONPOLICYSTATEMENT","features":[484]},{"name":"wszINFSECTION_BASICCONSTRAINTS","features":[484]},{"name":"wszINFSECTION_CAPOLICY","features":[484]},{"name":"wszINFSECTION_CCDP","features":[484]},{"name":"wszINFSECTION_CDP","features":[484]},{"name":"wszINFSECTION_CERTSERVER","features":[484]},{"name":"wszINFSECTION_EKU","features":[484]},{"name":"wszINFSECTION_EXTENSIONS","features":[484]},{"name":"wszINFSECTION_NAMECONSTRAINTS","features":[484]},{"name":"wszINFSECTION_NEWREQUEST","features":[484]},{"name":"wszINFSECTION_POLICYCONSTRAINTS","features":[484]},{"name":"wszINFSECTION_POLICYMAPPINGS","features":[484]},{"name":"wszINFSECTION_POLICYSTATEMENT","features":[484]},{"name":"wszINFSECTION_PROPERTIES","features":[484]},{"name":"wszINFSECTION_REQUESTATTRIBUTES","features":[484]},{"name":"wszINFVALUE_ENDORSEMENTKEY","features":[484]},{"name":"wszINFVALUE_REQUESTTYPE_CERT","features":[484]},{"name":"wszINFVALUE_REQUESTTYPE_CMC","features":[484]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS10","features":[484]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS7","features":[484]},{"name":"wszINFVALUE_REQUESTTYPE_SCEP","features":[484]},{"name":"wszLDAPSESSIONOPTIONVALUE","features":[484]},{"name":"wszLOCALIZEDTIMEPERIODUNITS","features":[484]},{"name":"wszLOGFILENAMEEXT","features":[484]},{"name":"wszLOGPATH","features":[484]},{"name":"wszMACHINEKEYSET","features":[484]},{"name":"wszMICROSOFTCERTMODULE_PREFIX","features":[484]},{"name":"wszNETSCAPEREVOCATIONTYPE","features":[484]},{"name":"wszOCSPCAPROP_CACERTIFICATE","features":[484]},{"name":"wszOCSPCAPROP_CACONFIG","features":[484]},{"name":"wszOCSPCAPROP_CSPNAME","features":[484]},{"name":"wszOCSPCAPROP_ERRORCODE","features":[484]},{"name":"wszOCSPCAPROP_HASHALGORITHMID","features":[484]},{"name":"wszOCSPCAPROP_KEYSPEC","features":[484]},{"name":"wszOCSPCAPROP_LOCALREVOCATIONINFORMATION","features":[484]},{"name":"wszOCSPCAPROP_PROVIDERCLSID","features":[484]},{"name":"wszOCSPCAPROP_PROVIDERPROPERTIES","features":[484]},{"name":"wszOCSPCAPROP_REMINDERDURATION","features":[484]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATE","features":[484]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATETEMPLATE","features":[484]},{"name":"wszOCSPCAPROP_SIGNINGFLAGS","features":[484]},{"name":"wszOCSPCOMMONPROP_MAXINCOMINGMESSAGESIZE","features":[484]},{"name":"wszOCSPCOMMONPROP_MAXNUMOFREQUESTENTRIES","features":[484]},{"name":"wszOCSPCOMMONPROP_REQFLAGS","features":[484]},{"name":"wszOCSPISAPIPROP_DEBUG","features":[484]},{"name":"wszOCSPISAPIPROP_MAXAGE","features":[484]},{"name":"wszOCSPISAPIPROP_MAXNUMOFCACHEENTRIES","features":[484]},{"name":"wszOCSPISAPIPROP_NUMOFBACKENDCONNECTIONS","features":[484]},{"name":"wszOCSPISAPIPROP_NUMOFTHREADS","features":[484]},{"name":"wszOCSPISAPIPROP_REFRESHRATE","features":[484]},{"name":"wszOCSPISAPIPROP_VIRTUALROOTNAME","features":[484]},{"name":"wszOCSPPROP_ARRAYCONTROLLER","features":[484]},{"name":"wszOCSPPROP_ARRAYMEMBERS","features":[484]},{"name":"wszOCSPPROP_AUDITFILTER","features":[484]},{"name":"wszOCSPPROP_DEBUG","features":[484]},{"name":"wszOCSPPROP_ENROLLPOLLINTERVAL","features":[484]},{"name":"wszOCSPPROP_LOGLEVEL","features":[484]},{"name":"wszOCSPREVPROP_BASECRL","features":[484]},{"name":"wszOCSPREVPROP_BASECRLURLS","features":[484]},{"name":"wszOCSPREVPROP_CRLURLTIMEOUT","features":[484]},{"name":"wszOCSPREVPROP_DELTACRL","features":[484]},{"name":"wszOCSPREVPROP_DELTACRLURLS","features":[484]},{"name":"wszOCSPREVPROP_ERRORCODE","features":[484]},{"name":"wszOCSPREVPROP_REFRESHTIMEOUT","features":[484]},{"name":"wszOCSPREVPROP_SERIALNUMBERSDIRS","features":[484]},{"name":"wszPERIODDAYS","features":[484]},{"name":"wszPERIODHOURS","features":[484]},{"name":"wszPERIODMINUTES","features":[484]},{"name":"wszPERIODMONTHS","features":[484]},{"name":"wszPERIODSECONDS","features":[484]},{"name":"wszPERIODWEEKS","features":[484]},{"name":"wszPERIODYEARS","features":[484]},{"name":"wszPFXFILENAMEEXT","features":[484]},{"name":"wszPROPATTESTATIONCHALLENGE","features":[484]},{"name":"wszPROPATTRIBNAME","features":[484]},{"name":"wszPROPATTRIBREQUESTID","features":[484]},{"name":"wszPROPATTRIBVALUE","features":[484]},{"name":"wszPROPCALLERNAME","features":[484]},{"name":"wszPROPCATYPE","features":[484]},{"name":"wszPROPCERTCLIENTMACHINE","features":[484]},{"name":"wszPROPCERTCOUNT","features":[484]},{"name":"wszPROPCERTIFICATEENROLLMENTFLAGS","features":[484]},{"name":"wszPROPCERTIFICATEGENERALFLAGS","features":[484]},{"name":"wszPROPCERTIFICATEHASH","features":[484]},{"name":"wszPROPCERTIFICATENOTAFTERDATE","features":[484]},{"name":"wszPROPCERTIFICATENOTBEFOREDATE","features":[484]},{"name":"wszPROPCERTIFICATEPRIVATEKEYFLAGS","features":[484]},{"name":"wszPROPCERTIFICATEPUBLICKEYALGORITHM","features":[484]},{"name":"wszPROPCERTIFICATEPUBLICKEYLENGTH","features":[484]},{"name":"wszPROPCERTIFICATERAWPUBLICKEY","features":[484]},{"name":"wszPROPCERTIFICATERAWPUBLICKEYALGORITHMPARAMETERS","features":[484]},{"name":"wszPROPCERTIFICATERAWSMIMECAPABILITIES","features":[484]},{"name":"wszPROPCERTIFICATEREQUESTID","features":[484]},{"name":"wszPROPCERTIFICATESERIALNUMBER","features":[484]},{"name":"wszPROPCERTIFICATESUBJECTKEYIDENTIFIER","features":[484]},{"name":"wszPROPCERTIFICATETEMPLATE","features":[484]},{"name":"wszPROPCERTIFICATETYPE","features":[484]},{"name":"wszPROPCERTIFICATEUPN","features":[484]},{"name":"wszPROPCERTSTATE","features":[484]},{"name":"wszPROPCERTSUFFIX","features":[484]},{"name":"wszPROPCERTTEMPLATE","features":[484]},{"name":"wszPROPCERTTYPE","features":[484]},{"name":"wszPROPCERTUSAGE","features":[484]},{"name":"wszPROPCHALLENGE","features":[484]},{"name":"wszPROPCLIENTBROWSERMACHINE","features":[484]},{"name":"wszPROPCLIENTDCDNS","features":[484]},{"name":"wszPROPCOMMONNAME","features":[484]},{"name":"wszPROPCONFIGDN","features":[484]},{"name":"wszPROPCOUNTRY","features":[484]},{"name":"wszPROPCRITICALTAG","features":[484]},{"name":"wszPROPCRLCOUNT","features":[484]},{"name":"wszPROPCRLEFFECTIVE","features":[484]},{"name":"wszPROPCRLINDEX","features":[484]},{"name":"wszPROPCRLLASTPUBLISHED","features":[484]},{"name":"wszPROPCRLMINBASE","features":[484]},{"name":"wszPROPCRLNAMEID","features":[484]},{"name":"wszPROPCRLNEXTPUBLISH","features":[484]},{"name":"wszPROPCRLNEXTUPDATE","features":[484]},{"name":"wszPROPCRLNUMBER","features":[484]},{"name":"wszPROPCRLPROPAGATIONCOMPLETE","features":[484]},{"name":"wszPROPCRLPUBLISHATTEMPTS","features":[484]},{"name":"wszPROPCRLPUBLISHERROR","features":[484]},{"name":"wszPROPCRLPUBLISHFLAGS","features":[484]},{"name":"wszPROPCRLPUBLISHSTATUSCODE","features":[484]},{"name":"wszPROPCRLRAWCRL","features":[484]},{"name":"wszPROPCRLROWID","features":[484]},{"name":"wszPROPCRLSTATE","features":[484]},{"name":"wszPROPCRLSUFFIX","features":[484]},{"name":"wszPROPCRLTHISPUBLISH","features":[484]},{"name":"wszPROPCRLTHISUPDATE","features":[484]},{"name":"wszPROPCROSSFOREST","features":[484]},{"name":"wszPROPDCNAME","features":[484]},{"name":"wszPROPDECIMALTAG","features":[484]},{"name":"wszPROPDELTACRLSDISABLED","features":[484]},{"name":"wszPROPDEVICESERIALNUMBER","features":[484]},{"name":"wszPROPDISPOSITION","features":[484]},{"name":"wszPROPDISPOSITIONDENY","features":[484]},{"name":"wszPROPDISPOSITIONPENDING","features":[484]},{"name":"wszPROPDISTINGUISHEDNAME","features":[484]},{"name":"wszPROPDN","features":[484]},{"name":"wszPROPDNS","features":[484]},{"name":"wszPROPDOMAINCOMPONENT","features":[484]},{"name":"wszPROPDOMAINDN","features":[484]},{"name":"wszPROPEMAIL","features":[484]},{"name":"wszPROPENDORSEMENTCERTIFICATEHASH","features":[484]},{"name":"wszPROPENDORSEMENTKEYHASH","features":[484]},{"name":"wszPROPEVENTLOGERROR","features":[484]},{"name":"wszPROPEVENTLOGEXHAUSTIVE","features":[484]},{"name":"wszPROPEVENTLOGTERSE","features":[484]},{"name":"wszPROPEVENTLOGVERBOSE","features":[484]},{"name":"wszPROPEVENTLOGWARNING","features":[484]},{"name":"wszPROPEXITCERTFILE","features":[484]},{"name":"wszPROPEXPECTEDCHALLENGE","features":[484]},{"name":"wszPROPEXPIRATIONDATE","features":[484]},{"name":"wszPROPEXTFLAGS","features":[484]},{"name":"wszPROPEXTNAME","features":[484]},{"name":"wszPROPEXTRAWVALUE","features":[484]},{"name":"wszPROPEXTREQUESTID","features":[484]},{"name":"wszPROPFILETAG","features":[484]},{"name":"wszPROPGIVENNAME","features":[484]},{"name":"wszPROPGUID","features":[484]},{"name":"wszPROPHEXTAG","features":[484]},{"name":"wszPROPINITIALS","features":[484]},{"name":"wszPROPIPADDRESS","features":[484]},{"name":"wszPROPKEYARCHIVED","features":[484]},{"name":"wszPROPLOCALITY","features":[484]},{"name":"wszPROPLOGLEVEL","features":[484]},{"name":"wszPROPMACHINEDNSNAME","features":[484]},{"name":"wszPROPMODULEREGLOC","features":[484]},{"name":"wszPROPNAMETYPE","features":[484]},{"name":"wszPROPOCTETTAG","features":[484]},{"name":"wszPROPOFFICER","features":[484]},{"name":"wszPROPOID","features":[484]},{"name":"wszPROPORGANIZATION","features":[484]},{"name":"wszPROPORGUNIT","features":[484]},{"name":"wszPROPPUBLISHEXPIREDCERTINCRL","features":[484]},{"name":"wszPROPRAWCACERTIFICATE","features":[484]},{"name":"wszPROPRAWCERTIFICATE","features":[484]},{"name":"wszPROPRAWCRL","features":[484]},{"name":"wszPROPRAWDELTACRL","features":[484]},{"name":"wszPROPRAWNAME","features":[484]},{"name":"wszPROPRAWPRECERTIFICATE","features":[484]},{"name":"wszPROPREQUESTARCHIVEDKEY","features":[484]},{"name":"wszPROPREQUESTATTRIBUTES","features":[484]},{"name":"wszPROPREQUESTCSPPROVIDER","features":[484]},{"name":"wszPROPREQUESTDISPOSITION","features":[484]},{"name":"wszPROPREQUESTDISPOSITIONMESSAGE","features":[484]},{"name":"wszPROPREQUESTDOT","features":[484]},{"name":"wszPROPREQUESTERCAACCESS","features":[484]},{"name":"wszPROPREQUESTERDN","features":[484]},{"name":"wszPROPREQUESTERNAME","features":[484]},{"name":"wszPROPREQUESTERNAMEFROMOLDCERTIFICATE","features":[484]},{"name":"wszPROPREQUESTERSAMNAME","features":[484]},{"name":"wszPROPREQUESTERUPN","features":[484]},{"name":"wszPROPREQUESTFLAGS","features":[484]},{"name":"wszPROPREQUESTKEYRECOVERYHASHES","features":[484]},{"name":"wszPROPREQUESTMACHINEDNS","features":[484]},{"name":"wszPROPREQUESTOSVERSION","features":[484]},{"name":"wszPROPREQUESTRAWARCHIVEDKEY","features":[484]},{"name":"wszPROPREQUESTRAWOLDCERTIFICATE","features":[484]},{"name":"wszPROPREQUESTRAWREQUEST","features":[484]},{"name":"wszPROPREQUESTREQUESTID","features":[484]},{"name":"wszPROPREQUESTRESOLVEDWHEN","features":[484]},{"name":"wszPROPREQUESTREVOKEDEFFECTIVEWHEN","features":[484]},{"name":"wszPROPREQUESTREVOKEDREASON","features":[484]},{"name":"wszPROPREQUESTREVOKEDWHEN","features":[484]},{"name":"wszPROPREQUESTSTATUSCODE","features":[484]},{"name":"wszPROPREQUESTSUBMITTEDWHEN","features":[484]},{"name":"wszPROPREQUESTTYPE","features":[484]},{"name":"wszPROPSANITIZEDCANAME","features":[484]},{"name":"wszPROPSANITIZEDSHORTNAME","features":[484]},{"name":"wszPROPSEAUDITFILTER","features":[484]},{"name":"wszPROPSEAUDITID","features":[484]},{"name":"wszPROPSERVERUPGRADED","features":[484]},{"name":"wszPROPSESSIONCOUNT","features":[484]},{"name":"wszPROPSIGNERAPPLICATIONPOLICIES","features":[484]},{"name":"wszPROPSIGNERPOLICIES","features":[484]},{"name":"wszPROPSTATE","features":[484]},{"name":"wszPROPSTREETADDRESS","features":[484]},{"name":"wszPROPSUBJECTALTNAME2","features":[484]},{"name":"wszPROPSUBJECTDOT","features":[484]},{"name":"wszPROPSURNAME","features":[484]},{"name":"wszPROPTEMPLATECHANGESEQUENCENUMBER","features":[484]},{"name":"wszPROPTEXTTAG","features":[484]},{"name":"wszPROPTITLE","features":[484]},{"name":"wszPROPUNSTRUCTUREDADDRESS","features":[484]},{"name":"wszPROPUNSTRUCTUREDNAME","features":[484]},{"name":"wszPROPUPN","features":[484]},{"name":"wszPROPURL","features":[484]},{"name":"wszPROPUSEDS","features":[484]},{"name":"wszPROPUSERDN","features":[484]},{"name":"wszPROPUTF8TAG","features":[484]},{"name":"wszPROPVALIDITYPERIODCOUNT","features":[484]},{"name":"wszPROPVALIDITYPERIODSTRING","features":[484]},{"name":"wszPROPVOLATILEMODE","features":[484]},{"name":"wszREGACTIVE","features":[484]},{"name":"wszREGAELOGLEVEL_OLD","features":[484]},{"name":"wszREGAIKCLOUDCAURL","features":[484]},{"name":"wszREGAIKKEYALGORITHM","features":[484]},{"name":"wszREGAIKKEYLENGTH","features":[484]},{"name":"wszREGALLPROVIDERS","features":[484]},{"name":"wszREGALTERNATEPUBLISHDOMAINS","features":[484]},{"name":"wszREGALTERNATESIGNATUREALGORITHM","features":[484]},{"name":"wszREGAUDITFILTER","features":[484]},{"name":"wszREGB2ICERTMANAGEMODULE","features":[484]},{"name":"wszREGBACKUPLOGDIRECTORY","features":[484]},{"name":"wszREGCACERTFILENAME","features":[484]},{"name":"wszREGCACERTHASH","features":[484]},{"name":"wszREGCACERTPUBLICATIONURLS","features":[484]},{"name":"wszREGCADESCRIPTION","features":[484]},{"name":"wszREGCAPATHLENGTH","features":[484]},{"name":"wszREGCASECURITY","features":[484]},{"name":"wszREGCASERIALNUMBER","features":[484]},{"name":"wszREGCASERVERNAME","features":[484]},{"name":"wszREGCATYPE","features":[484]},{"name":"wszREGCAUSEDS","features":[484]},{"name":"wszREGCAXCHGCERTHASH","features":[484]},{"name":"wszREGCAXCHGOVERLAPPERIODCOUNT","features":[484]},{"name":"wszREGCAXCHGOVERLAPPERIODSTRING","features":[484]},{"name":"wszREGCAXCHGVALIDITYPERIODCOUNT","features":[484]},{"name":"wszREGCAXCHGVALIDITYPERIODSTRING","features":[484]},{"name":"wszREGCERTENROLLCOMPATIBLE","features":[484]},{"name":"wszREGCERTIFICATETRANSPARENCYINFOOID","features":[484]},{"name":"wszREGCERTPUBLISHFLAGS","features":[484]},{"name":"wszREGCERTSRVDEBUG","features":[484]},{"name":"wszREGCHECKPOINTFILE","features":[484]},{"name":"wszREGCLOCKSKEWMINUTES","features":[484]},{"name":"wszREGCOMMONNAME","features":[484]},{"name":"wszREGCRLATTEMPTREPUBLISH","features":[484]},{"name":"wszREGCRLDELTANEXTPUBLISH","features":[484]},{"name":"wszREGCRLDELTAOVERLAPPERIODCOUNT","features":[484]},{"name":"wszREGCRLDELTAOVERLAPPERIODSTRING","features":[484]},{"name":"wszREGCRLDELTAPERIODCOUNT","features":[484]},{"name":"wszREGCRLDELTAPERIODSTRING","features":[484]},{"name":"wszREGCRLEDITFLAGS","features":[484]},{"name":"wszREGCRLFLAGS","features":[484]},{"name":"wszREGCRLNEXTPUBLISH","features":[484]},{"name":"wszREGCRLOVERLAPPERIODCOUNT","features":[484]},{"name":"wszREGCRLOVERLAPPERIODSTRING","features":[484]},{"name":"wszREGCRLPATH_OLD","features":[484]},{"name":"wszREGCRLPERIODCOUNT","features":[484]},{"name":"wszREGCRLPERIODSTRING","features":[484]},{"name":"wszREGCRLPUBLICATIONURLS","features":[484]},{"name":"wszREGDATABASERECOVERED","features":[484]},{"name":"wszREGDBDIRECTORY","features":[484]},{"name":"wszREGDBFLAGS","features":[484]},{"name":"wszREGDBLASTFULLBACKUP","features":[484]},{"name":"wszREGDBLASTINCREMENTALBACKUP","features":[484]},{"name":"wszREGDBLASTRECOVERY","features":[484]},{"name":"wszREGDBLOGDIRECTORY","features":[484]},{"name":"wszREGDBMAXREADSESSIONCOUNT","features":[484]},{"name":"wszREGDBSESSIONCOUNT","features":[484]},{"name":"wszREGDBSYSDIRECTORY","features":[484]},{"name":"wszREGDBTEMPDIRECTORY","features":[484]},{"name":"wszREGDEFAULTSMIME","features":[484]},{"name":"wszREGDIRECTORY","features":[484]},{"name":"wszREGDISABLEEXTENSIONLIST","features":[484]},{"name":"wszREGDSCONFIGDN","features":[484]},{"name":"wszREGDSDOMAINDN","features":[484]},{"name":"wszREGEDITFLAGS","features":[484]},{"name":"wszREGEKPUBLISTDIRECTORIES","features":[484]},{"name":"wszREGEKUOIDSFORPUBLISHEXPIREDCERTINCRL","features":[484]},{"name":"wszREGEKUOIDSFORVOLATILEREQUESTS","features":[484]},{"name":"wszREGENABLED","features":[484]},{"name":"wszREGENABLEDEKUFORDEFINEDCACERT","features":[484]},{"name":"wszREGENABLEENROLLEEREQUESTEXTENSIONLIST","features":[484]},{"name":"wszREGENABLEREQUESTEXTENSIONLIST","features":[484]},{"name":"wszREGENFORCEX500NAMELENGTHS","features":[484]},{"name":"wszREGENROLLFLAGS","features":[484]},{"name":"wszREGEXITBODYARG","features":[484]},{"name":"wszREGEXITBODYFORMAT","features":[484]},{"name":"wszREGEXITCRLISSUEDKEY","features":[484]},{"name":"wszREGEXITDENIEDKEY","features":[484]},{"name":"wszREGEXITIMPORTEDKEY","features":[484]},{"name":"wszREGEXITISSUEDKEY","features":[484]},{"name":"wszREGEXITPENDINGKEY","features":[484]},{"name":"wszREGEXITPROPNOTFOUND","features":[484]},{"name":"wszREGEXITREVOKEDKEY","features":[484]},{"name":"wszREGEXITSHUTDOWNKEY","features":[484]},{"name":"wszREGEXITSMTPAUTHENTICATE","features":[484]},{"name":"wszREGEXITSMTPCC","features":[484]},{"name":"wszREGEXITSMTPEVENTFILTER","features":[484]},{"name":"wszREGEXITSMTPFROM","features":[484]},{"name":"wszREGEXITSMTPKEY","features":[484]},{"name":"wszREGEXITSMTPSERVER","features":[484]},{"name":"wszREGEXITSMTPTEMPLATES","features":[484]},{"name":"wszREGEXITSMTPTO","features":[484]},{"name":"wszREGEXITSTARTUPKEY","features":[484]},{"name":"wszREGEXITTITLEARG","features":[484]},{"name":"wszREGEXITTITLEFORMAT","features":[484]},{"name":"wszREGFILEISSUERCERTURL_OLD","features":[484]},{"name":"wszREGFILEREVOCATIONCRLURL_OLD","features":[484]},{"name":"wszREGFORCETELETEX","features":[484]},{"name":"wszREGFTPISSUERCERTURL_OLD","features":[484]},{"name":"wszREGFTPREVOCATIONCRLURL_OLD","features":[484]},{"name":"wszREGHIGHLOGNUMBER","features":[484]},{"name":"wszREGHIGHSERIAL","features":[484]},{"name":"wszREGINTERFACEFLAGS","features":[484]},{"name":"wszREGISSUERCERTURLFLAGS","features":[484]},{"name":"wszREGISSUERCERTURL_OLD","features":[484]},{"name":"wszREGKEYBASE","features":[484]},{"name":"wszREGKEYCERTSVCPATH","features":[484]},{"name":"wszREGKEYCONFIG","features":[484]},{"name":"wszREGKEYCSP","features":[484]},{"name":"wszREGKEYDBPARAMETERS","features":[484]},{"name":"wszREGKEYENCRYPTIONCSP","features":[484]},{"name":"wszREGKEYENROLLMENT","features":[484]},{"name":"wszREGKEYEXITMODULES","features":[484]},{"name":"wszREGKEYGROUPPOLICYENROLLMENT","features":[484]},{"name":"wszREGKEYNOSYSTEMCERTSVCPATH","features":[484]},{"name":"wszREGKEYPOLICYMODULES","features":[484]},{"name":"wszREGKEYREPAIR","features":[484]},{"name":"wszREGKEYRESTOREINPROGRESS","features":[484]},{"name":"wszREGKEYSIZE","features":[484]},{"name":"wszREGKRACERTCOUNT","features":[484]},{"name":"wszREGKRACERTHASH","features":[484]},{"name":"wszREGKRAFLAGS","features":[484]},{"name":"wszREGLDAPFLAGS","features":[484]},{"name":"wszREGLDAPISSUERCERTURL_OLD","features":[484]},{"name":"wszREGLDAPREVOCATIONCRLURL_OLD","features":[484]},{"name":"wszREGLDAPREVOCATIONDNTEMPLATE_OLD","features":[484]},{"name":"wszREGLDAPREVOCATIONDN_OLD","features":[484]},{"name":"wszREGLDAPSESSIONOPTIONS","features":[484]},{"name":"wszREGLOGLEVEL","features":[484]},{"name":"wszREGLOGPATH","features":[484]},{"name":"wszREGLOWLOGNUMBER","features":[484]},{"name":"wszREGMAXINCOMINGALLOCSIZE","features":[484]},{"name":"wszREGMAXINCOMINGMESSAGESIZE","features":[484]},{"name":"wszREGMAXPENDINGREQUESTDAYS","features":[484]},{"name":"wszREGMAXSCTLISTSIZE","features":[484]},{"name":"wszREGNAMESEPARATOR","features":[484]},{"name":"wszREGNETSCAPECERTTYPE","features":[484]},{"name":"wszREGOFFICERRIGHTS","features":[484]},{"name":"wszREGPARENTCAMACHINE","features":[484]},{"name":"wszREGPARENTCANAME","features":[484]},{"name":"wszREGPOLICYFLAGS","features":[484]},{"name":"wszREGPRESERVESCEPDUMMYCERTS","features":[484]},{"name":"wszREGPROCESSINGFLAGS","features":[484]},{"name":"wszREGPROVIDER","features":[484]},{"name":"wszREGPROVIDERTYPE","features":[484]},{"name":"wszREGREQUESTDISPOSITION","features":[484]},{"name":"wszREGREQUESTFILENAME","features":[484]},{"name":"wszREGREQUESTID","features":[484]},{"name":"wszREGREQUESTKEYCONTAINER","features":[484]},{"name":"wszREGREQUESTKEYINDEX","features":[484]},{"name":"wszREGRESTOREMAP","features":[484]},{"name":"wszREGRESTOREMAPCOUNT","features":[484]},{"name":"wszREGRESTORESTATUS","features":[484]},{"name":"wszREGREVOCATIONCRLURL_OLD","features":[484]},{"name":"wszREGREVOCATIONTYPE","features":[484]},{"name":"wszREGREVOCATIONURL","features":[484]},{"name":"wszREGROLESEPARATIONENABLED","features":[484]},{"name":"wszREGSETUPSTATUS","features":[484]},{"name":"wszREGSP4DEFAULTCONFIGURATION","features":[484]},{"name":"wszREGSP4KEYSETNAME","features":[484]},{"name":"wszREGSP4NAMES","features":[484]},{"name":"wszREGSP4QUERIES","features":[484]},{"name":"wszREGSP4SUBJECTNAMESEPARATOR","features":[484]},{"name":"wszREGSUBJECTALTNAME","features":[484]},{"name":"wszREGSUBJECTALTNAME2","features":[484]},{"name":"wszREGSUBJECTTEMPLATE","features":[484]},{"name":"wszREGSYMMETRICKEYSIZE","features":[484]},{"name":"wszREGUNICODE","features":[484]},{"name":"wszREGUPNMAP","features":[484]},{"name":"wszREGUSEDEFINEDCACERTINREQ","features":[484]},{"name":"wszREGVALIDITYPERIODCOUNT","features":[484]},{"name":"wszREGVALIDITYPERIODSTRING","features":[484]},{"name":"wszREGVERIFYFLAGS","features":[484]},{"name":"wszREGVERSION","features":[484]},{"name":"wszREGVIEWAGEMINUTES","features":[484]},{"name":"wszREGVIEWIDLEMINUTES","features":[484]},{"name":"wszREGWEBCLIENTCAMACHINE","features":[484]},{"name":"wszREGWEBCLIENTCANAME","features":[484]},{"name":"wszREGWEBCLIENTCATYPE","features":[484]},{"name":"wszSECUREDATTRIBUTES","features":[484]},{"name":"wszSERVICE_NAME","features":[484]},{"name":"wszzDEFAULTSIGNEDATTRIBUTES","features":[484]}],"490":[{"name":"CryptSIPAddProvider","features":[303,483]},{"name":"CryptSIPCreateIndirectData","features":[303,482,483]},{"name":"CryptSIPGetCaps","features":[303,482,483]},{"name":"CryptSIPGetSealedDigest","features":[303,482,483]},{"name":"CryptSIPGetSignedDataMsg","features":[303,482,483]},{"name":"CryptSIPLoad","features":[303,482,483]},{"name":"CryptSIPPutSignedDataMsg","features":[303,482,483]},{"name":"CryptSIPRemoveProvider","features":[303,483]},{"name":"CryptSIPRemoveSignedDataMsg","features":[303,482,483]},{"name":"CryptSIPRetrieveSubjectGuid","features":[303,483]},{"name":"CryptSIPRetrieveSubjectGuidForCatalogFile","features":[303,483]},{"name":"CryptSIPVerifyIndirectData","features":[303,482,483]},{"name":"MSSIP_ADDINFO_BLOB","features":[483]},{"name":"MSSIP_ADDINFO_CATMEMBER","features":[483]},{"name":"MSSIP_ADDINFO_FLAT","features":[483]},{"name":"MSSIP_ADDINFO_NONE","features":[483]},{"name":"MSSIP_ADDINFO_NONMSSIP","features":[483]},{"name":"MSSIP_FLAGS_MULTI_HASH","features":[483]},{"name":"MSSIP_FLAGS_PROHIBIT_RESIZE_ON_CREATE","features":[483]},{"name":"MSSIP_FLAGS_USE_CATALOG","features":[483]},{"name":"MS_ADDINFO_BLOB","features":[483]},{"name":"MS_ADDINFO_FLAT","features":[483]},{"name":"SIP_ADD_NEWPROVIDER","features":[483]},{"name":"SIP_CAP_FLAG_SEALING","features":[483]},{"name":"SIP_CAP_SET_CUR_VER","features":[483]},{"name":"SIP_CAP_SET_V2","features":[303,483]},{"name":"SIP_CAP_SET_V3","features":[303,483]},{"name":"SIP_CAP_SET_VERSION_2","features":[483]},{"name":"SIP_CAP_SET_VERSION_3","features":[483]},{"name":"SIP_DISPATCH_INFO","features":[303,482,483]},{"name":"SIP_INDIRECT_DATA","features":[483]},{"name":"SIP_MAX_MAGIC_NUMBER","features":[483]},{"name":"SIP_SUBJECTINFO","features":[303,482,483]},{"name":"SPC_MARKER_CHECK_CURRENTLY_SUPPORTED_FLAGS","features":[483]},{"name":"SPC_MARKER_CHECK_SKIP_SIP_INDIRECT_DATA_FLAG","features":[483]},{"name":"SPC_RELAXED_PE_MARKER_CHECK","features":[483]},{"name":"pCryptSIPCreateIndirectData","features":[303,482,483]},{"name":"pCryptSIPGetCaps","features":[303,482,483]},{"name":"pCryptSIPGetSealedDigest","features":[303,482,483]},{"name":"pCryptSIPGetSignedDataMsg","features":[303,482,483]},{"name":"pCryptSIPPutSignedDataMsg","features":[303,482,483]},{"name":"pCryptSIPRemoveSignedDataMsg","features":[303,482,483]},{"name":"pCryptSIPVerifyIndirectData","features":[303,482,483]},{"name":"pfnIsFileSupported","features":[303,483]},{"name":"pfnIsFileSupportedName","features":[303,483]}],"491":[{"name":"ACTION_REVOCATION_DEFAULT_CACHE","features":[485]},{"name":"ACTION_REVOCATION_DEFAULT_ONLINE","features":[485]},{"name":"CERTVIEW_CRYPTUI_LPARAM","features":[485]},{"name":"CERT_CERTIFICATE_ACTION_VERIFY","features":[485]},{"name":"CERT_CREDENTIAL_PROVIDER_ID","features":[485]},{"name":"CERT_DISPWELL_DISTRUST_ADD_CA_CERT","features":[485]},{"name":"CERT_DISPWELL_DISTRUST_ADD_LEAF_CERT","features":[485]},{"name":"CERT_DISPWELL_DISTRUST_CA_CERT","features":[485]},{"name":"CERT_DISPWELL_DISTRUST_LEAF_CERT","features":[485]},{"name":"CERT_DISPWELL_SELECT","features":[485]},{"name":"CERT_DISPWELL_TRUST_ADD_CA_CERT","features":[485]},{"name":"CERT_DISPWELL_TRUST_ADD_LEAF_CERT","features":[485]},{"name":"CERT_DISPWELL_TRUST_CA_CERT","features":[485]},{"name":"CERT_DISPWELL_TRUST_LEAF_CERT","features":[485]},{"name":"CERT_FILTER_DATA","features":[485]},{"name":"CERT_FILTER_EXTENSION_MATCH","features":[485]},{"name":"CERT_FILTER_INCLUDE_V1_CERTS","features":[485]},{"name":"CERT_FILTER_ISSUER_CERTS_ONLY","features":[485]},{"name":"CERT_FILTER_KEY_EXISTS","features":[485]},{"name":"CERT_FILTER_LEAF_CERTS_ONLY","features":[485]},{"name":"CERT_FILTER_OP_EQUALITY","features":[485]},{"name":"CERT_FILTER_OP_EXISTS","features":[485]},{"name":"CERT_FILTER_OP_NOT_EXISTS","features":[485]},{"name":"CERT_FILTER_VALID_SIGNATURE","features":[485]},{"name":"CERT_FILTER_VALID_TIME_RANGE","features":[485]},{"name":"CERT_SELECTUI_INPUT","features":[303,485]},{"name":"CERT_SELECT_STRUCT_A","features":[303,485]},{"name":"CERT_SELECT_STRUCT_FLAGS","features":[485]},{"name":"CERT_SELECT_STRUCT_W","features":[303,485]},{"name":"CERT_TRUST_DO_FULL_SEARCH","features":[485]},{"name":"CERT_TRUST_DO_FULL_TRUST","features":[485]},{"name":"CERT_TRUST_MASK","features":[485]},{"name":"CERT_TRUST_PERMIT_MISSING_CRLS","features":[485]},{"name":"CERT_VALIDITY_AFTER_END","features":[485]},{"name":"CERT_VALIDITY_BEFORE_START","features":[485]},{"name":"CERT_VALIDITY_CERTIFICATE_REVOKED","features":[485]},{"name":"CERT_VALIDITY_CRL_OUT_OF_DATE","features":[485]},{"name":"CERT_VALIDITY_EXPLICITLY_DISTRUSTED","features":[485]},{"name":"CERT_VALIDITY_EXTENDED_USAGE_FAILURE","features":[485]},{"name":"CERT_VALIDITY_ISSUER_DISTRUST","features":[485]},{"name":"CERT_VALIDITY_ISSUER_INVALID","features":[485]},{"name":"CERT_VALIDITY_KEY_USAGE_EXT_FAILURE","features":[485]},{"name":"CERT_VALIDITY_MASK_TRUST","features":[485]},{"name":"CERT_VALIDITY_MASK_VALIDITY","features":[485]},{"name":"CERT_VALIDITY_NAME_CONSTRAINTS_FAILURE","features":[485]},{"name":"CERT_VALIDITY_NO_CRL_FOUND","features":[485]},{"name":"CERT_VALIDITY_NO_ISSUER_CERT_FOUND","features":[485]},{"name":"CERT_VALIDITY_NO_TRUST_DATA","features":[485]},{"name":"CERT_VALIDITY_OTHER_ERROR","features":[485]},{"name":"CERT_VALIDITY_OTHER_EXTENSION_FAILURE","features":[485]},{"name":"CERT_VALIDITY_PERIOD_NESTING_FAILURE","features":[485]},{"name":"CERT_VALIDITY_SIGNATURE_FAILS","features":[485]},{"name":"CERT_VALIDITY_UNKNOWN_CRITICAL_EXTENSION","features":[485]},{"name":"CERT_VERIFY_CERTIFICATE_TRUST","features":[303,485]},{"name":"CERT_VIEWPROPERTIES_STRUCT_A","features":[303,314,485,353,365]},{"name":"CERT_VIEWPROPERTIES_STRUCT_FLAGS","features":[485]},{"name":"CERT_VIEWPROPERTIES_STRUCT_W","features":[303,314,485,353,365]},{"name":"CM_ADD_CERT_STORES","features":[485]},{"name":"CM_ENABLEHOOK","features":[485]},{"name":"CM_ENABLETEMPLATE","features":[485]},{"name":"CM_HIDE_ADVANCEPAGE","features":[485]},{"name":"CM_HIDE_DETAILPAGE","features":[485]},{"name":"CM_HIDE_TRUSTPAGE","features":[485]},{"name":"CM_NO_EDITTRUST","features":[485]},{"name":"CM_NO_NAMECHANGE","features":[485]},{"name":"CM_SHOW_HELP","features":[485]},{"name":"CM_SHOW_HELPICON","features":[485]},{"name":"CM_VIEWFLAGS_MASK","features":[485]},{"name":"CRYPTDLG_ACTION_MASK","features":[485]},{"name":"CRYPTDLG_CACHE_ONLY_URL_RETRIEVAL","features":[485]},{"name":"CRYPTDLG_DISABLE_AIA","features":[485]},{"name":"CRYPTDLG_POLICY_MASK","features":[485]},{"name":"CRYPTDLG_REVOCATION_CACHE","features":[485]},{"name":"CRYPTDLG_REVOCATION_DEFAULT","features":[485]},{"name":"CRYPTDLG_REVOCATION_NONE","features":[485]},{"name":"CRYPTDLG_REVOCATION_ONLINE","features":[485]},{"name":"CRYPTUI_ACCEPT_DECLINE_STYLE","features":[485]},{"name":"CRYPTUI_CACHE_ONLY_URL_RETRIEVAL","features":[485]},{"name":"CRYPTUI_CERT_MGR_PUBLISHER_TAB","features":[485]},{"name":"CRYPTUI_CERT_MGR_SINGLE_TAB_FLAG","features":[485]},{"name":"CRYPTUI_CERT_MGR_STRUCT","features":[303,485]},{"name":"CRYPTUI_CERT_MGR_TAB_MASK","features":[485]},{"name":"CRYPTUI_DISABLE_ADDTOSTORE","features":[485]},{"name":"CRYPTUI_DISABLE_EDITPROPERTIES","features":[485]},{"name":"CRYPTUI_DISABLE_EXPORT","features":[485]},{"name":"CRYPTUI_DISABLE_HTMLLINK","features":[485]},{"name":"CRYPTUI_DISABLE_ISSUERSTATEMENT","features":[485]},{"name":"CRYPTUI_DONT_OPEN_STORES","features":[485]},{"name":"CRYPTUI_ENABLE_ADDTOSTORE","features":[485]},{"name":"CRYPTUI_ENABLE_EDITPROPERTIES","features":[485]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECKING","features":[485]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN","features":[485]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[485]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_END_CERT","features":[485]},{"name":"CRYPTUI_HIDE_DETAILPAGE","features":[485]},{"name":"CRYPTUI_HIDE_HIERARCHYPAGE","features":[485]},{"name":"CRYPTUI_IGNORE_UNTRUSTED_ROOT","features":[485]},{"name":"CRYPTUI_INITDIALOG_STRUCT","features":[303,485]},{"name":"CRYPTUI_ONLY_OPEN_ROOT_STORE","features":[485]},{"name":"CRYPTUI_SELECT_EXPIRATION_COLUMN","features":[485]},{"name":"CRYPTUI_SELECT_FRIENDLYNAME_COLUMN","features":[485]},{"name":"CRYPTUI_SELECT_INTENDEDUSE_COLUMN","features":[485]},{"name":"CRYPTUI_SELECT_ISSUEDBY_COLUMN","features":[485]},{"name":"CRYPTUI_SELECT_ISSUEDTO_COLUMN","features":[485]},{"name":"CRYPTUI_SELECT_LOCATION_COLUMN","features":[485]},{"name":"CRYPTUI_VIEWCERTIFICATE_FLAGS","features":[485]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTA","features":[303,314,482,483,485,486,353,365]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTW","features":[303,314,482,483,485,486,353,365]},{"name":"CRYPTUI_WARN_REMOTE_TRUST","features":[485]},{"name":"CRYPTUI_WARN_UNTRUSTED_ROOT","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_ADDITIONAL_CERT_CHOICE","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN_NO_ROOT","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_NONE","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_BLOB_INFO","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT_PVK_INFO","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_COMMERCIAL","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CONTEXT","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXCLUDE_PAGE_HASHES","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXTENDED_INFO","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INCLUDE_PAGE_HASHES","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INDIVIDUAL","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INFO","features":[303,485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_NONE","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE_INFO","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_OPTION","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_PROV","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SIG_TYPE","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE_INFO","features":[303,485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_BLOB","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_FILE","features":[485]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_NONE","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_CERTCONTEXT_INFO","features":[303,485]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_CONTEXT","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE_CERTIFICATES_ONLY","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_CRL_CONTEXT","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_CTL_CONTEXT","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_BASE64","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CRL","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CTL","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_DER","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PFX","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PKCS7","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_SERIALIZED_CERT_STORE","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_INFO","features":[303,485]},{"name":"CRYPTUI_WIZ_EXPORT_NO_DELETE_PRIVATE_KEY","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_PRIVATE_KEY","features":[485]},{"name":"CRYPTUI_WIZ_EXPORT_SUBJECT","features":[485]},{"name":"CRYPTUI_WIZ_FLAGS","features":[485]},{"name":"CRYPTUI_WIZ_IGNORE_NO_UI_FLAG_FOR_CSPS","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CERT","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CRL","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CTL","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_NO_CHANGE_DEST_STORE","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_REMOTE_DEST_STORE","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_SRC_INFO","features":[303,485]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_CONTEXT","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_STORE","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CRL_CONTEXT","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CTL_CONTEXT","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_FILE","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_OPTION","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_TO_CURRENTUSER","features":[485]},{"name":"CRYPTUI_WIZ_IMPORT_TO_LOCALMACHINE","features":[485]},{"name":"CRYPTUI_WIZ_NO_UI","features":[485]},{"name":"CRYPTUI_WIZ_NO_UI_EXCEPT_CSP","features":[485]},{"name":"CRYTPDLG_FLAGS_MASK","features":[485]},{"name":"CSS_ALLOWMULTISELECT","features":[485]},{"name":"CSS_ENABLEHOOK","features":[485]},{"name":"CSS_ENABLETEMPLATE","features":[485]},{"name":"CSS_ENABLETEMPLATEHANDLE","features":[485]},{"name":"CSS_HIDE_PROPERTIES","features":[485]},{"name":"CSS_SELECTCERT_MASK","features":[485]},{"name":"CSS_SHOW_HELP","features":[485]},{"name":"CTL_MODIFY_REQUEST","features":[303,485]},{"name":"CTL_MODIFY_REQUEST_ADD_NOT_TRUSTED","features":[485]},{"name":"CTL_MODIFY_REQUEST_ADD_TRUSTED","features":[485]},{"name":"CTL_MODIFY_REQUEST_OPERATION","features":[485]},{"name":"CTL_MODIFY_REQUEST_REMOVE","features":[485]},{"name":"CertSelectionGetSerializedBlob","features":[303,485]},{"name":"CryptUIDlgCertMgr","features":[303,485]},{"name":"CryptUIDlgSelectCertificateFromStore","features":[303,485]},{"name":"CryptUIDlgViewCertificateA","features":[303,314,482,483,485,486,353,365]},{"name":"CryptUIDlgViewCertificateW","features":[303,314,482,483,485,486,353,365]},{"name":"CryptUIDlgViewContext","features":[303,485]},{"name":"CryptUIWizDigitalSign","features":[303,485]},{"name":"CryptUIWizExport","features":[303,485]},{"name":"CryptUIWizFreeDigitalSignContext","features":[303,485]},{"name":"CryptUIWizImport","features":[303,485]},{"name":"PFNCFILTERPROC","features":[303,485]},{"name":"PFNCMFILTERPROC","features":[303,485]},{"name":"PFNCMHOOKPROC","features":[303,485]},{"name":"PFNTRUSTHELPER","features":[303,485]},{"name":"POLICY_IGNORE_NON_CRITICAL_BC","features":[485]},{"name":"SELCERT_ALGORITHM","features":[485]},{"name":"SELCERT_CERTLIST","features":[485]},{"name":"SELCERT_FINEPRINT","features":[485]},{"name":"SELCERT_ISSUED_TO","features":[485]},{"name":"SELCERT_PROPERTIES","features":[485]},{"name":"SELCERT_SERIAL_NUM","features":[485]},{"name":"SELCERT_THUMBPRINT","features":[485]},{"name":"SELCERT_VALIDITY","features":[485]},{"name":"szCERT_CERTIFICATE_ACTION_VERIFY","features":[485]}],"492":[{"name":"AllUserData","features":[487]},{"name":"CurrentUserData","features":[487]},{"name":"DIAGNOSTIC_DATA_EVENT_BINARY_STATS","features":[487]},{"name":"DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION","features":[487]},{"name":"DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION","features":[487]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION","features":[487]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_STATS","features":[487]},{"name":"DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION","features":[487]},{"name":"DIAGNOSTIC_DATA_GENERAL_STATS","features":[487]},{"name":"DIAGNOSTIC_DATA_RECORD","features":[303,487]},{"name":"DIAGNOSTIC_DATA_SEARCH_CRITERIA","features":[303,487]},{"name":"DIAGNOSTIC_REPORT_DATA","features":[303,487]},{"name":"DIAGNOSTIC_REPORT_PARAMETER","features":[487]},{"name":"DIAGNOSTIC_REPORT_SIGNATURE","features":[487]},{"name":"DdqAccessLevel","features":[487]},{"name":"DdqCancelDiagnosticRecordOperation","features":[487]},{"name":"DdqCloseSession","features":[487]},{"name":"DdqCreateSession","features":[487]},{"name":"DdqExtractDiagnosticReport","features":[487]},{"name":"DdqFreeDiagnosticRecordLocaleTags","features":[487]},{"name":"DdqFreeDiagnosticRecordPage","features":[487]},{"name":"DdqFreeDiagnosticRecordProducerCategories","features":[487]},{"name":"DdqFreeDiagnosticRecordProducers","features":[487]},{"name":"DdqFreeDiagnosticReport","features":[487]},{"name":"DdqGetDiagnosticDataAccessLevelAllowed","features":[487]},{"name":"DdqGetDiagnosticRecordAtIndex","features":[303,487]},{"name":"DdqGetDiagnosticRecordBinaryDistribution","features":[487]},{"name":"DdqGetDiagnosticRecordCategoryAtIndex","features":[487]},{"name":"DdqGetDiagnosticRecordCategoryCount","features":[487]},{"name":"DdqGetDiagnosticRecordCount","features":[487]},{"name":"DdqGetDiagnosticRecordLocaleTagAtIndex","features":[487]},{"name":"DdqGetDiagnosticRecordLocaleTagCount","features":[487]},{"name":"DdqGetDiagnosticRecordLocaleTags","features":[487]},{"name":"DdqGetDiagnosticRecordPage","features":[303,487]},{"name":"DdqGetDiagnosticRecordPayload","features":[487]},{"name":"DdqGetDiagnosticRecordProducerAtIndex","features":[487]},{"name":"DdqGetDiagnosticRecordProducerCategories","features":[487]},{"name":"DdqGetDiagnosticRecordProducerCount","features":[487]},{"name":"DdqGetDiagnosticRecordProducers","features":[487]},{"name":"DdqGetDiagnosticRecordStats","features":[303,487]},{"name":"DdqGetDiagnosticRecordSummary","features":[487]},{"name":"DdqGetDiagnosticRecordTagDistribution","features":[487]},{"name":"DdqGetDiagnosticReport","features":[487]},{"name":"DdqGetDiagnosticReportAtIndex","features":[303,487]},{"name":"DdqGetDiagnosticReportCount","features":[487]},{"name":"DdqGetDiagnosticReportStoreReportCount","features":[487]},{"name":"DdqGetSessionAccessLevel","features":[487]},{"name":"DdqGetTranscriptConfiguration","features":[487]},{"name":"DdqIsDiagnosticRecordSampledIn","features":[303,487]},{"name":"DdqSetTranscriptConfiguration","features":[487]},{"name":"NoData","features":[487]}],"493":[{"name":"DSCreateISecurityInfoObject","features":[303,480,488]},{"name":"DSCreateISecurityInfoObjectEx","features":[303,480,488]},{"name":"DSCreateSecurityPage","features":[303,488,353]},{"name":"DSEditSecurity","features":[303,488]},{"name":"DSSI_IS_ROOT","features":[488]},{"name":"DSSI_NO_ACCESS_CHECK","features":[488]},{"name":"DSSI_NO_EDIT_OWNER","features":[488]},{"name":"DSSI_NO_EDIT_SACL","features":[488]},{"name":"DSSI_NO_FILTER","features":[488]},{"name":"DSSI_NO_READONLY_MESSAGE","features":[488]},{"name":"DSSI_READ_ONLY","features":[488]},{"name":"PFNDSCREATEISECINFO","features":[303,480,488]},{"name":"PFNDSCREATEISECINFOEX","features":[303,480,488]},{"name":"PFNDSCREATESECPAGE","features":[303,488,353]},{"name":"PFNDSEDITSECURITY","features":[303,488]},{"name":"PFNREADOBJECTSECURITY","features":[303,488]},{"name":"PFNWRITEOBJECTSECURITY","features":[303,488]}],"494":[{"name":"ENTERPRISE_DATA_POLICIES","features":[489]},{"name":"ENTERPRISE_POLICY_ALLOWED","features":[489]},{"name":"ENTERPRISE_POLICY_ENLIGHTENED","features":[489]},{"name":"ENTERPRISE_POLICY_EXEMPT","features":[489]},{"name":"ENTERPRISE_POLICY_NONE","features":[489]},{"name":"FILE_UNPROTECT_OPTIONS","features":[489]},{"name":"HTHREAD_NETWORK_CONTEXT","features":[303,489]},{"name":"IProtectionPolicyManagerInterop","features":[489]},{"name":"IProtectionPolicyManagerInterop2","features":[489]},{"name":"IProtectionPolicyManagerInterop3","features":[489]},{"name":"ProtectFileToEnterpriseIdentity","features":[489]},{"name":"SRPHOSTING_TYPE","features":[489]},{"name":"SRPHOSTING_TYPE_NONE","features":[489]},{"name":"SRPHOSTING_TYPE_WINHTTP","features":[489]},{"name":"SRPHOSTING_TYPE_WININET","features":[489]},{"name":"SRPHOSTING_VERSION","features":[489]},{"name":"SRPHOSTING_VERSION1","features":[489]},{"name":"SrpCloseThreadNetworkContext","features":[303,489]},{"name":"SrpCreateThreadNetworkContext","features":[303,489]},{"name":"SrpDisablePermissiveModeFileEncryption","features":[489]},{"name":"SrpDoesPolicyAllowAppExecution","features":[303,489,490]},{"name":"SrpEnablePermissiveModeFileEncryption","features":[489]},{"name":"SrpGetEnterpriseIds","features":[303,489]},{"name":"SrpGetEnterprisePolicy","features":[303,489]},{"name":"SrpHostingInitialize","features":[489]},{"name":"SrpHostingTerminate","features":[489]},{"name":"SrpIsTokenService","features":[303,489]},{"name":"SrpSetTokenEnterpriseId","features":[303,489]},{"name":"UnprotectFile","features":[489]}],"495":[{"name":"CERTIFICATE_HASH_LENGTH","features":[457]},{"name":"EAPACTION_Authenticate","features":[457]},{"name":"EAPACTION_Done","features":[457]},{"name":"EAPACTION_IndicateIdentity","features":[457]},{"name":"EAPACTION_IndicateTLV","features":[457]},{"name":"EAPACTION_NoAction","features":[457]},{"name":"EAPACTION_Send","features":[457]},{"name":"EAPACTION_SendAndDone","features":[457]},{"name":"EAPACTION_SendWithTimeout","features":[457]},{"name":"EAPACTION_SendWithTimeoutInteractive","features":[457]},{"name":"EAPCODE_Failure","features":[457]},{"name":"EAPCODE_Request","features":[457]},{"name":"EAPCODE_Response","features":[457]},{"name":"EAPCODE_Success","features":[457]},{"name":"EAPHOST_AUTH_INFO","features":[457]},{"name":"EAPHOST_AUTH_STATUS","features":[457]},{"name":"EAPHOST_IDENTITY_UI_PARAMS","features":[457]},{"name":"EAPHOST_INTERACTIVE_UI_PARAMS","features":[457]},{"name":"EAPHOST_METHOD_API_VERSION","features":[457]},{"name":"EAPHOST_PEER_API_VERSION","features":[457]},{"name":"EAP_ATTRIBUTE","features":[457]},{"name":"EAP_ATTRIBUTES","features":[457]},{"name":"EAP_ATTRIBUTE_TYPE","features":[457]},{"name":"EAP_AUTHENTICATOR_METHOD_ROUTINES","features":[457]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT","features":[457]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_BASIC","features":[457]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_INTERACTIVE","features":[457]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_NONE","features":[457]},{"name":"EAP_AUTHENTICATOR_VALUENAME_CONFIGUI","features":[457]},{"name":"EAP_AUTHENTICATOR_VALUENAME_DLL_PATH","features":[457]},{"name":"EAP_AUTHENTICATOR_VALUENAME_FRIENDLY_NAME","features":[457]},{"name":"EAP_AUTHENTICATOR_VALUENAME_PROPERTIES","features":[457]},{"name":"EAP_CERTIFICATE_CREDENTIAL","features":[457]},{"name":"EAP_CONFIG_INPUT_FIELD_ARRAY","features":[457]},{"name":"EAP_CONFIG_INPUT_FIELD_DATA","features":[457]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_DEFAULT","features":[457]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[457]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_PERSIST","features":[457]},{"name":"EAP_CONFIG_INPUT_FIELD_TYPE","features":[457]},{"name":"EAP_CREDENTIAL_VERSION","features":[457]},{"name":"EAP_CRED_EXPIRY_REQ","features":[457]},{"name":"EAP_EMPTY_CREDENTIAL","features":[457]},{"name":"EAP_ERROR","features":[457]},{"name":"EAP_E_AUTHENTICATION_FAILED","features":[457]},{"name":"EAP_E_CERT_STORE_INACCESSIBLE","features":[457]},{"name":"EAP_E_EAPHOST_EAPQEC_INACCESSIBLE","features":[457]},{"name":"EAP_E_EAPHOST_FIRST","features":[457]},{"name":"EAP_E_EAPHOST_IDENTITY_UNKNOWN","features":[457]},{"name":"EAP_E_EAPHOST_LAST","features":[457]},{"name":"EAP_E_EAPHOST_METHOD_INVALID_PACKET","features":[457]},{"name":"EAP_E_EAPHOST_METHOD_NOT_INSTALLED","features":[457]},{"name":"EAP_E_EAPHOST_METHOD_OPERATION_NOT_SUPPORTED","features":[457]},{"name":"EAP_E_EAPHOST_REMOTE_INVALID_PACKET","features":[457]},{"name":"EAP_E_EAPHOST_THIRDPARTY_METHOD_HOST_RESET","features":[457]},{"name":"EAP_E_EAPHOST_XML_MALFORMED","features":[457]},{"name":"EAP_E_METHOD_CONFIG_DOES_NOT_SUPPORT_SSO","features":[457]},{"name":"EAP_E_NO_SMART_CARD_READER","features":[457]},{"name":"EAP_E_SERVER_CERT_EXPIRED","features":[457]},{"name":"EAP_E_SERVER_CERT_INVALID","features":[457]},{"name":"EAP_E_SERVER_CERT_NOT_FOUND","features":[457]},{"name":"EAP_E_SERVER_CERT_OTHER_ERROR","features":[457]},{"name":"EAP_E_SERVER_CERT_REVOKED","features":[457]},{"name":"EAP_E_SERVER_FIRST","features":[457]},{"name":"EAP_E_SERVER_LAST","features":[457]},{"name":"EAP_E_SERVER_ROOT_CERT_FIRST","features":[457]},{"name":"EAP_E_SERVER_ROOT_CERT_INVALID","features":[457]},{"name":"EAP_E_SERVER_ROOT_CERT_LAST","features":[457]},{"name":"EAP_E_SERVER_ROOT_CERT_NAME_REQUIRED","features":[457]},{"name":"EAP_E_SERVER_ROOT_CERT_NOT_FOUND","features":[457]},{"name":"EAP_E_SIM_NOT_VALID","features":[457]},{"name":"EAP_E_USER_CERT_EXPIRED","features":[457]},{"name":"EAP_E_USER_CERT_INVALID","features":[457]},{"name":"EAP_E_USER_CERT_NOT_FOUND","features":[457]},{"name":"EAP_E_USER_CERT_OTHER_ERROR","features":[457]},{"name":"EAP_E_USER_CERT_REJECTED","features":[457]},{"name":"EAP_E_USER_CERT_REVOKED","features":[457]},{"name":"EAP_E_USER_CREDENTIALS_REJECTED","features":[457]},{"name":"EAP_E_USER_FIRST","features":[457]},{"name":"EAP_E_USER_LAST","features":[457]},{"name":"EAP_E_USER_NAME_PASSWORD_REJECTED","features":[457]},{"name":"EAP_E_USER_ROOT_CERT_EXPIRED","features":[457]},{"name":"EAP_E_USER_ROOT_CERT_FIRST","features":[457]},{"name":"EAP_E_USER_ROOT_CERT_INVALID","features":[457]},{"name":"EAP_E_USER_ROOT_CERT_LAST","features":[457]},{"name":"EAP_E_USER_ROOT_CERT_NOT_FOUND","features":[457]},{"name":"EAP_FLAG_CONFG_READONLY","features":[457]},{"name":"EAP_FLAG_FULL_AUTH","features":[457]},{"name":"EAP_FLAG_GUEST_ACCESS","features":[457]},{"name":"EAP_FLAG_LOGON","features":[457]},{"name":"EAP_FLAG_MACHINE_AUTH","features":[457]},{"name":"EAP_FLAG_NON_INTERACTIVE","features":[457]},{"name":"EAP_FLAG_ONLY_EAP_TLS","features":[457]},{"name":"EAP_FLAG_PREFER_ALT_CREDENTIALS","features":[457]},{"name":"EAP_FLAG_PREVIEW","features":[457]},{"name":"EAP_FLAG_PRE_LOGON","features":[457]},{"name":"EAP_FLAG_RESUME_FROM_HIBERNATE","features":[457]},{"name":"EAP_FLAG_Reserved1","features":[457]},{"name":"EAP_FLAG_Reserved2","features":[457]},{"name":"EAP_FLAG_Reserved3","features":[457]},{"name":"EAP_FLAG_Reserved4","features":[457]},{"name":"EAP_FLAG_Reserved5","features":[457]},{"name":"EAP_FLAG_Reserved6","features":[457]},{"name":"EAP_FLAG_Reserved7","features":[457]},{"name":"EAP_FLAG_Reserved8","features":[457]},{"name":"EAP_FLAG_Reserved9","features":[457]},{"name":"EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[457]},{"name":"EAP_FLAG_SUPRESS_UI","features":[457]},{"name":"EAP_FLAG_USER_AUTH","features":[457]},{"name":"EAP_FLAG_VPN","features":[457]},{"name":"EAP_GROUP_MASK","features":[457]},{"name":"EAP_INTERACTIVE_UI_DATA","features":[457]},{"name":"EAP_INTERACTIVE_UI_DATA_TYPE","features":[457]},{"name":"EAP_INTERACTIVE_UI_DATA_VERSION","features":[457]},{"name":"EAP_INVALID_PACKET","features":[457]},{"name":"EAP_I_EAPHOST_EAP_NEGOTIATION_FAILED","features":[457]},{"name":"EAP_I_EAPHOST_FIRST","features":[457]},{"name":"EAP_I_EAPHOST_LAST","features":[457]},{"name":"EAP_I_USER_ACCOUNT_OTHER_ERROR","features":[457]},{"name":"EAP_I_USER_FIRST","features":[457]},{"name":"EAP_I_USER_LAST","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_CONFIG_IS_IDENTITY_PRIVACY","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_ACTION","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_AUTHENTICATE","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_DISCARD","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_HANDLE_IDENTITY","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESPOND","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESULT","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_SEND","features":[457]},{"name":"EAP_METHOD_AUTHENTICATOR_RESULT","features":[303,457]},{"name":"EAP_METHOD_INFO","features":[457]},{"name":"EAP_METHOD_INFO_ARRAY","features":[457]},{"name":"EAP_METHOD_INFO_ARRAY_EX","features":[457]},{"name":"EAP_METHOD_INFO_EX","features":[457]},{"name":"EAP_METHOD_INVALID_PACKET","features":[457]},{"name":"EAP_METHOD_PROPERTY","features":[303,457]},{"name":"EAP_METHOD_PROPERTY_ARRAY","features":[303,457]},{"name":"EAP_METHOD_PROPERTY_TYPE","features":[457]},{"name":"EAP_METHOD_PROPERTY_VALUE","features":[303,457]},{"name":"EAP_METHOD_PROPERTY_VALUE_BOOL","features":[303,457]},{"name":"EAP_METHOD_PROPERTY_VALUE_DWORD","features":[457]},{"name":"EAP_METHOD_PROPERTY_VALUE_STRING","features":[457]},{"name":"EAP_METHOD_PROPERTY_VALUE_TYPE","features":[457]},{"name":"EAP_METHOD_TYPE","features":[457]},{"name":"EAP_PEER_FLAG_GUEST_ACCESS","features":[457]},{"name":"EAP_PEER_FLAG_HEALTH_STATE_CHANGE","features":[457]},{"name":"EAP_PEER_METHOD_ROUTINES","features":[457]},{"name":"EAP_PEER_VALUENAME_CONFIGUI","features":[457]},{"name":"EAP_PEER_VALUENAME_DLL_PATH","features":[457]},{"name":"EAP_PEER_VALUENAME_FRIENDLY_NAME","features":[457]},{"name":"EAP_PEER_VALUENAME_IDENTITY","features":[457]},{"name":"EAP_PEER_VALUENAME_INTERACTIVEUI","features":[457]},{"name":"EAP_PEER_VALUENAME_INVOKE_NAMEDLG","features":[457]},{"name":"EAP_PEER_VALUENAME_INVOKE_PWDDLG","features":[457]},{"name":"EAP_PEER_VALUENAME_PROPERTIES","features":[457]},{"name":"EAP_PEER_VALUENAME_REQUIRE_CONFIGUI","features":[457]},{"name":"EAP_REGISTRY_LOCATION","features":[457]},{"name":"EAP_SIM_CREDENTIAL","features":[457]},{"name":"EAP_TYPE","features":[457]},{"name":"EAP_UI_DATA_FORMAT","features":[457]},{"name":"EAP_UI_INPUT_FIELD_PROPS_DEFAULT","features":[457]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[457]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_PERSIST","features":[457]},{"name":"EAP_UI_INPUT_FIELD_PROPS_READ_ONLY","features":[457]},{"name":"EAP_USERNAME_PASSWORD_CREDENTIAL","features":[457]},{"name":"EAP_VALUENAME_PROPERTIES","features":[457]},{"name":"EAP_WINLOGON_CREDENTIAL","features":[457]},{"name":"EapCertificateCredential","features":[457]},{"name":"EapCode","features":[457]},{"name":"EapCodeFailure","features":[457]},{"name":"EapCodeMaximum","features":[457]},{"name":"EapCodeMinimum","features":[457]},{"name":"EapCodeRequest","features":[457]},{"name":"EapCodeResponse","features":[457]},{"name":"EapCodeSuccess","features":[457]},{"name":"EapConfigInputEdit","features":[457]},{"name":"EapConfigInputNetworkPassword","features":[457]},{"name":"EapConfigInputNetworkUsername","features":[457]},{"name":"EapConfigInputPSK","features":[457]},{"name":"EapConfigInputPassword","features":[457]},{"name":"EapConfigInputPin","features":[457]},{"name":"EapConfigInputUsername","features":[457]},{"name":"EapConfigSmartCardError","features":[457]},{"name":"EapConfigSmartCardUsername","features":[457]},{"name":"EapCredExpiryReq","features":[457]},{"name":"EapCredExpiryResp","features":[457]},{"name":"EapCredLogonReq","features":[457]},{"name":"EapCredLogonResp","features":[457]},{"name":"EapCredReq","features":[457]},{"name":"EapCredResp","features":[457]},{"name":"EapCredential","features":[457]},{"name":"EapCredentialType","features":[457]},{"name":"EapCredentialTypeData","features":[457]},{"name":"EapHostAuthFailed","features":[457]},{"name":"EapHostAuthIdentityExchange","features":[457]},{"name":"EapHostAuthInProgress","features":[457]},{"name":"EapHostAuthNegotiatingType","features":[457]},{"name":"EapHostAuthNotStarted","features":[457]},{"name":"EapHostAuthSucceeded","features":[457]},{"name":"EapHostInvalidSession","features":[457]},{"name":"EapHostNapInfo","features":[457]},{"name":"EapHostPeerAuthParams","features":[457]},{"name":"EapHostPeerAuthStatus","features":[457]},{"name":"EapHostPeerBeginSession","features":[303,457]},{"name":"EapHostPeerClearConnection","features":[457]},{"name":"EapHostPeerConfigBlob2Xml","features":[356,457,354]},{"name":"EapHostPeerConfigXml2Blob","features":[356,457,354]},{"name":"EapHostPeerCredentialsXml2Blob","features":[356,457,354]},{"name":"EapHostPeerEndSession","features":[457]},{"name":"EapHostPeerFreeEapError","features":[457]},{"name":"EapHostPeerFreeErrorMemory","features":[457]},{"name":"EapHostPeerFreeMemory","features":[457]},{"name":"EapHostPeerFreeRuntimeMemory","features":[457]},{"name":"EapHostPeerGetAuthStatus","features":[457]},{"name":"EapHostPeerGetDataToUnplumbCredentials","features":[303,457]},{"name":"EapHostPeerGetEncryptedPassword","features":[457]},{"name":"EapHostPeerGetIdentity","features":[303,457]},{"name":"EapHostPeerGetMethodProperties","features":[303,457]},{"name":"EapHostPeerGetMethods","features":[457]},{"name":"EapHostPeerGetResponseAttributes","features":[457]},{"name":"EapHostPeerGetResult","features":[303,457]},{"name":"EapHostPeerGetSendPacket","features":[457]},{"name":"EapHostPeerGetUIContext","features":[457]},{"name":"EapHostPeerIdentity","features":[457]},{"name":"EapHostPeerIdentityExtendedInfo","features":[457]},{"name":"EapHostPeerInitialize","features":[457]},{"name":"EapHostPeerInvokeConfigUI","features":[303,457]},{"name":"EapHostPeerInvokeIdentityUI","features":[303,457]},{"name":"EapHostPeerInvokeInteractiveUI","features":[303,457]},{"name":"EapHostPeerMethodResult","features":[303,457]},{"name":"EapHostPeerMethodResultAltSuccessReceived","features":[457]},{"name":"EapHostPeerMethodResultFromMethod","features":[457]},{"name":"EapHostPeerMethodResultReason","features":[457]},{"name":"EapHostPeerMethodResultTimeout","features":[457]},{"name":"EapHostPeerProcessReceivedPacket","features":[457]},{"name":"EapHostPeerQueryCredentialInputFields","features":[303,457]},{"name":"EapHostPeerQueryInteractiveUIInputFields","features":[457]},{"name":"EapHostPeerQueryUIBlobFromInteractiveUIInputFields","features":[457]},{"name":"EapHostPeerQueryUserBlobFromCredentialInputFields","features":[303,457]},{"name":"EapHostPeerResponseAction","features":[457]},{"name":"EapHostPeerResponseDiscard","features":[457]},{"name":"EapHostPeerResponseInvokeUi","features":[457]},{"name":"EapHostPeerResponseNone","features":[457]},{"name":"EapHostPeerResponseRespond","features":[457]},{"name":"EapHostPeerResponseResult","features":[457]},{"name":"EapHostPeerResponseSend","features":[457]},{"name":"EapHostPeerResponseStartAuthentication","features":[457]},{"name":"EapHostPeerSetResponseAttributes","features":[457]},{"name":"EapHostPeerSetUIContext","features":[457]},{"name":"EapHostPeerUninitialize","features":[457]},{"name":"EapPacket","features":[457]},{"name":"EapPeerMethodOutput","features":[303,457]},{"name":"EapPeerMethodResponseAction","features":[457]},{"name":"EapPeerMethodResponseActionDiscard","features":[457]},{"name":"EapPeerMethodResponseActionInvokeUI","features":[457]},{"name":"EapPeerMethodResponseActionNone","features":[457]},{"name":"EapPeerMethodResponseActionRespond","features":[457]},{"name":"EapPeerMethodResponseActionResult","features":[457]},{"name":"EapPeerMethodResponseActionSend","features":[457]},{"name":"EapPeerMethodResult","features":[303,387,457]},{"name":"EapPeerMethodResultFailure","features":[457]},{"name":"EapPeerMethodResultReason","features":[457]},{"name":"EapPeerMethodResultSuccess","features":[457]},{"name":"EapPeerMethodResultUnknown","features":[457]},{"name":"EapSimCredential","features":[457]},{"name":"EapUsernamePasswordCredential","features":[457]},{"name":"FACILITY_EAP_MESSAGE","features":[457]},{"name":"GUID_EapHost_Cause_CertStoreInaccessible","features":[457]},{"name":"GUID_EapHost_Cause_EapNegotiationFailed","features":[457]},{"name":"GUID_EapHost_Cause_EapQecInaccessible","features":[457]},{"name":"GUID_EapHost_Cause_Generic_AuthFailure","features":[457]},{"name":"GUID_EapHost_Cause_IdentityUnknown","features":[457]},{"name":"GUID_EapHost_Cause_MethodDLLNotFound","features":[457]},{"name":"GUID_EapHost_Cause_MethodDoesNotSupportOperation","features":[457]},{"name":"GUID_EapHost_Cause_Method_Config_Does_Not_Support_Sso","features":[457]},{"name":"GUID_EapHost_Cause_No_SmartCardReader_Found","features":[457]},{"name":"GUID_EapHost_Cause_Server_CertExpired","features":[457]},{"name":"GUID_EapHost_Cause_Server_CertInvalid","features":[457]},{"name":"GUID_EapHost_Cause_Server_CertNotFound","features":[457]},{"name":"GUID_EapHost_Cause_Server_CertOtherError","features":[457]},{"name":"GUID_EapHost_Cause_Server_CertRevoked","features":[457]},{"name":"GUID_EapHost_Cause_Server_Root_CertNameRequired","features":[457]},{"name":"GUID_EapHost_Cause_Server_Root_CertNotFound","features":[457]},{"name":"GUID_EapHost_Cause_SimNotValid","features":[457]},{"name":"GUID_EapHost_Cause_ThirdPartyMethod_Host_Reset","features":[457]},{"name":"GUID_EapHost_Cause_User_Account_OtherProblem","features":[457]},{"name":"GUID_EapHost_Cause_User_CertExpired","features":[457]},{"name":"GUID_EapHost_Cause_User_CertInvalid","features":[457]},{"name":"GUID_EapHost_Cause_User_CertNotFound","features":[457]},{"name":"GUID_EapHost_Cause_User_CertOtherError","features":[457]},{"name":"GUID_EapHost_Cause_User_CertRejected","features":[457]},{"name":"GUID_EapHost_Cause_User_CertRevoked","features":[457]},{"name":"GUID_EapHost_Cause_User_CredsRejected","features":[457]},{"name":"GUID_EapHost_Cause_User_Root_CertExpired","features":[457]},{"name":"GUID_EapHost_Cause_User_Root_CertInvalid","features":[457]},{"name":"GUID_EapHost_Cause_User_Root_CertNotFound","features":[457]},{"name":"GUID_EapHost_Cause_XmlMalformed","features":[457]},{"name":"GUID_EapHost_Default","features":[457]},{"name":"GUID_EapHost_Help_ObtainingCerts","features":[457]},{"name":"GUID_EapHost_Help_Troubleshooting","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_AuthFailure","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertNameAbsent","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertStoreInaccessible","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_IdentityUnknown","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserAccount","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserCert","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_MethodNotFound","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_NegotiationFailed","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_NoSmartCardReader","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertInvalid","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertNotFound","features":[457]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootExpired","features":[457]},{"name":"GUID_EapHost_Repair_ContactSysadmin","features":[457]},{"name":"GUID_EapHost_Repair_Method_Not_Support_Sso","features":[457]},{"name":"GUID_EapHost_Repair_No_ValidSim_Found","features":[457]},{"name":"GUID_EapHost_Repair_RestartNap","features":[457]},{"name":"GUID_EapHost_Repair_Retry_Authentication","features":[457]},{"name":"GUID_EapHost_Repair_Server_ClientSelectServerCert","features":[457]},{"name":"GUID_EapHost_Repair_User_AuthFailure","features":[457]},{"name":"GUID_EapHost_Repair_User_GetNewCert","features":[457]},{"name":"GUID_EapHost_Repair_User_SelectValidCert","features":[457]},{"name":"IAccountingProviderConfig","features":[457]},{"name":"IAuthenticationProviderConfig","features":[457]},{"name":"IEAPProviderConfig","features":[457]},{"name":"IEAPProviderConfig2","features":[457]},{"name":"IEAPProviderConfig3","features":[457]},{"name":"IRouterProtocolConfig","features":[457]},{"name":"ISOLATION_STATE","features":[457]},{"name":"ISOLATION_STATE_IN_PROBATION","features":[457]},{"name":"ISOLATION_STATE_NOT_RESTRICTED","features":[457]},{"name":"ISOLATION_STATE_RESTRICTED_ACCESS","features":[457]},{"name":"ISOLATION_STATE_UNKNOWN","features":[457]},{"name":"LEGACY_IDENTITY_UI_PARAMS","features":[457]},{"name":"LEGACY_INTERACTIVE_UI_PARAMS","features":[457]},{"name":"MAXEAPCODE","features":[457]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_LENGTH","features":[457]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_VALUE_LENGTH","features":[457]},{"name":"NCRYPT_PIN_CACHE_PIN_BYTE_LENGTH","features":[457]},{"name":"NgcTicketContext","features":[303,387,457]},{"name":"NotificationHandler","features":[457]},{"name":"PPP_EAP_ACTION","features":[457]},{"name":"PPP_EAP_INFO","features":[457]},{"name":"PPP_EAP_INPUT","features":[303,457]},{"name":"PPP_EAP_OUTPUT","features":[303,387,457]},{"name":"PPP_EAP_PACKET","features":[457]},{"name":"RAS_AUTH_ATTRIBUTE","features":[457]},{"name":"RAS_AUTH_ATTRIBUTE_TYPE","features":[457]},{"name":"RAS_EAP_FLAG_8021X_AUTH","features":[457]},{"name":"RAS_EAP_FLAG_ALTERNATIVE_USER_DB","features":[457]},{"name":"RAS_EAP_FLAG_CONFG_READONLY","features":[457]},{"name":"RAS_EAP_FLAG_FIRST_LINK","features":[457]},{"name":"RAS_EAP_FLAG_GUEST_ACCESS","features":[457]},{"name":"RAS_EAP_FLAG_HOSTED_IN_PEAP","features":[457]},{"name":"RAS_EAP_FLAG_LOGON","features":[457]},{"name":"RAS_EAP_FLAG_MACHINE_AUTH","features":[457]},{"name":"RAS_EAP_FLAG_NON_INTERACTIVE","features":[457]},{"name":"RAS_EAP_FLAG_PEAP_FORCE_FULL_AUTH","features":[457]},{"name":"RAS_EAP_FLAG_PEAP_UPFRONT","features":[457]},{"name":"RAS_EAP_FLAG_PREVIEW","features":[457]},{"name":"RAS_EAP_FLAG_PRE_LOGON","features":[457]},{"name":"RAS_EAP_FLAG_RESERVED","features":[457]},{"name":"RAS_EAP_FLAG_RESUME_FROM_HIBERNATE","features":[457]},{"name":"RAS_EAP_FLAG_ROUTER","features":[457]},{"name":"RAS_EAP_FLAG_SAVE_CREDMAN","features":[457]},{"name":"RAS_EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[457]},{"name":"RAS_EAP_REGISTRY_LOCATION","features":[457]},{"name":"RAS_EAP_ROLE_AUTHENTICATEE","features":[457]},{"name":"RAS_EAP_ROLE_AUTHENTICATOR","features":[457]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_EAP","features":[457]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_PEAP","features":[457]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_VPN","features":[457]},{"name":"RAS_EAP_VALUENAME_CONFIGUI","features":[457]},{"name":"RAS_EAP_VALUENAME_CONFIG_CLSID","features":[457]},{"name":"RAS_EAP_VALUENAME_DEFAULT_DATA","features":[457]},{"name":"RAS_EAP_VALUENAME_ENCRYPTION","features":[457]},{"name":"RAS_EAP_VALUENAME_FILTER_INNERMETHODS","features":[457]},{"name":"RAS_EAP_VALUENAME_FRIENDLY_NAME","features":[457]},{"name":"RAS_EAP_VALUENAME_IDENTITY","features":[457]},{"name":"RAS_EAP_VALUENAME_INTERACTIVEUI","features":[457]},{"name":"RAS_EAP_VALUENAME_INVOKE_NAMEDLG","features":[457]},{"name":"RAS_EAP_VALUENAME_INVOKE_PWDDLG","features":[457]},{"name":"RAS_EAP_VALUENAME_ISTUNNEL_METHOD","features":[457]},{"name":"RAS_EAP_VALUENAME_PATH","features":[457]},{"name":"RAS_EAP_VALUENAME_PER_POLICY_CONFIG","features":[457]},{"name":"RAS_EAP_VALUENAME_REQUIRE_CONFIGUI","features":[457]},{"name":"RAS_EAP_VALUENAME_ROLES_SUPPORTED","features":[457]},{"name":"RAS_EAP_VALUENAME_STANDALONE_SUPPORTED","features":[457]},{"name":"eapPropCertifiedMethod","features":[457]},{"name":"eapPropChannelBinding","features":[457]},{"name":"eapPropCipherSuiteNegotiation","features":[457]},{"name":"eapPropConfidentiality","features":[457]},{"name":"eapPropCryptoBinding","features":[457]},{"name":"eapPropDictionaryAttackResistance","features":[457]},{"name":"eapPropFastReconnect","features":[457]},{"name":"eapPropFragmentation","features":[457]},{"name":"eapPropHiddenMethod","features":[457]},{"name":"eapPropIdentityPrivacy","features":[457]},{"name":"eapPropIntegrity","features":[457]},{"name":"eapPropKeyDerivation","features":[457]},{"name":"eapPropKeyStrength1024","features":[457]},{"name":"eapPropKeyStrength128","features":[457]},{"name":"eapPropKeyStrength256","features":[457]},{"name":"eapPropKeyStrength512","features":[457]},{"name":"eapPropKeyStrength64","features":[457]},{"name":"eapPropMachineAuth","features":[457]},{"name":"eapPropMethodChaining","features":[457]},{"name":"eapPropMppeEncryption","features":[457]},{"name":"eapPropMutualAuth","features":[457]},{"name":"eapPropNap","features":[457]},{"name":"eapPropReplayProtection","features":[457]},{"name":"eapPropReserved","features":[457]},{"name":"eapPropSessionIndependence","features":[457]},{"name":"eapPropSharedStateEquivalence","features":[457]},{"name":"eapPropStandalone","features":[457]},{"name":"eapPropSupportsConfig","features":[457]},{"name":"eapPropTunnelMethod","features":[457]},{"name":"eapPropUserAuth","features":[457]},{"name":"eatARAPChallengeResponse","features":[457]},{"name":"eatARAPFeatures","features":[457]},{"name":"eatARAPGuestLogon","features":[457]},{"name":"eatARAPPassword","features":[457]},{"name":"eatARAPSecurity","features":[457]},{"name":"eatARAPSecurityData","features":[457]},{"name":"eatARAPZoneAccess","features":[457]},{"name":"eatAcctAuthentic","features":[457]},{"name":"eatAcctDelayTime","features":[457]},{"name":"eatAcctEventTimeStamp","features":[457]},{"name":"eatAcctInputOctets","features":[457]},{"name":"eatAcctInputPackets","features":[457]},{"name":"eatAcctInterimInterval","features":[457]},{"name":"eatAcctLinkCount","features":[457]},{"name":"eatAcctMultiSessionId","features":[457]},{"name":"eatAcctOutputOctets","features":[457]},{"name":"eatAcctOutputPackets","features":[457]},{"name":"eatAcctSessionId","features":[457]},{"name":"eatAcctSessionTime","features":[457]},{"name":"eatAcctStatusType","features":[457]},{"name":"eatAcctTerminateCause","features":[457]},{"name":"eatCallbackId","features":[457]},{"name":"eatCallbackNumber","features":[457]},{"name":"eatCalledStationId","features":[457]},{"name":"eatCallingStationId","features":[457]},{"name":"eatCertificateOID","features":[457]},{"name":"eatCertificateThumbprint","features":[457]},{"name":"eatClass","features":[457]},{"name":"eatClearTextPassword","features":[457]},{"name":"eatConfigurationToken","features":[457]},{"name":"eatConnectInfo","features":[457]},{"name":"eatCredentialsChanged","features":[457]},{"name":"eatEAPConfiguration","features":[457]},{"name":"eatEAPMessage","features":[457]},{"name":"eatEAPTLV","features":[457]},{"name":"eatEMSK","features":[457]},{"name":"eatFastRoamedSession","features":[457]},{"name":"eatFilterId","features":[457]},{"name":"eatFramedAppleTalkLink","features":[457]},{"name":"eatFramedAppleTalkNetwork","features":[457]},{"name":"eatFramedAppleTalkZone","features":[457]},{"name":"eatFramedCompression","features":[457]},{"name":"eatFramedIPAddress","features":[457]},{"name":"eatFramedIPNetmask","features":[457]},{"name":"eatFramedIPXNetwork","features":[457]},{"name":"eatFramedIPv6Pool","features":[457]},{"name":"eatFramedIPv6Prefix","features":[457]},{"name":"eatFramedIPv6Route","features":[457]},{"name":"eatFramedInterfaceId","features":[457]},{"name":"eatFramedMTU","features":[457]},{"name":"eatFramedProtocol","features":[457]},{"name":"eatFramedRoute","features":[457]},{"name":"eatFramedRouting","features":[457]},{"name":"eatIdleTimeout","features":[457]},{"name":"eatInnerEapMethodType","features":[457]},{"name":"eatLoginIPHost","features":[457]},{"name":"eatLoginIPv6Host","features":[457]},{"name":"eatLoginLATGroup","features":[457]},{"name":"eatLoginLATNode","features":[457]},{"name":"eatLoginLATPort","features":[457]},{"name":"eatLoginLATService","features":[457]},{"name":"eatLoginService","features":[457]},{"name":"eatLoginTCPPort","features":[457]},{"name":"eatMD5CHAPChallenge","features":[457]},{"name":"eatMD5CHAPPassword","features":[457]},{"name":"eatMethodId","features":[457]},{"name":"eatMinimum","features":[457]},{"name":"eatNASIPAddress","features":[457]},{"name":"eatNASIPv6Address","features":[457]},{"name":"eatNASIdentifier","features":[457]},{"name":"eatNASPort","features":[457]},{"name":"eatNASPortType","features":[457]},{"name":"eatPEAPEmbeddedEAPTypeId","features":[457]},{"name":"eatPEAPFastRoamedSession","features":[457]},{"name":"eatPasswordRetry","features":[457]},{"name":"eatPeerId","features":[457]},{"name":"eatPortLimit","features":[457]},{"name":"eatPrompt","features":[457]},{"name":"eatProxyState","features":[457]},{"name":"eatQuarantineSoH","features":[457]},{"name":"eatReplyMessage","features":[457]},{"name":"eatReserved","features":[457]},{"name":"eatServerId","features":[457]},{"name":"eatServiceType","features":[457]},{"name":"eatSessionId","features":[457]},{"name":"eatSessionTimeout","features":[457]},{"name":"eatSignature","features":[457]},{"name":"eatState","features":[457]},{"name":"eatTerminationAction","features":[457]},{"name":"eatTunnelClientEndpoint","features":[457]},{"name":"eatTunnelMediumType","features":[457]},{"name":"eatTunnelServerEndpoint","features":[457]},{"name":"eatTunnelType","features":[457]},{"name":"eatUnassigned17","features":[457]},{"name":"eatUnassigned21","features":[457]},{"name":"eatUserName","features":[457]},{"name":"eatUserPassword","features":[457]},{"name":"eatVendorSpecific","features":[457]},{"name":"emptLegacyMethodPropertyFlag","features":[457]},{"name":"emptPropCertifiedMethod","features":[457]},{"name":"emptPropChannelBinding","features":[457]},{"name":"emptPropCipherSuiteNegotiation","features":[457]},{"name":"emptPropConfidentiality","features":[457]},{"name":"emptPropCryptoBinding","features":[457]},{"name":"emptPropDictionaryAttackResistance","features":[457]},{"name":"emptPropFastReconnect","features":[457]},{"name":"emptPropFragmentation","features":[457]},{"name":"emptPropHiddenMethod","features":[457]},{"name":"emptPropIdentityPrivacy","features":[457]},{"name":"emptPropIntegrity","features":[457]},{"name":"emptPropKeyDerivation","features":[457]},{"name":"emptPropKeyStrength1024","features":[457]},{"name":"emptPropKeyStrength128","features":[457]},{"name":"emptPropKeyStrength256","features":[457]},{"name":"emptPropKeyStrength512","features":[457]},{"name":"emptPropKeyStrength64","features":[457]},{"name":"emptPropMachineAuth","features":[457]},{"name":"emptPropMethodChaining","features":[457]},{"name":"emptPropMppeEncryption","features":[457]},{"name":"emptPropMutualAuth","features":[457]},{"name":"emptPropNap","features":[457]},{"name":"emptPropReplayProtection","features":[457]},{"name":"emptPropSessionIndependence","features":[457]},{"name":"emptPropSharedStateEquivalence","features":[457]},{"name":"emptPropStandalone","features":[457]},{"name":"emptPropSupportsConfig","features":[457]},{"name":"emptPropTunnelMethod","features":[457]},{"name":"emptPropUserAuth","features":[457]},{"name":"emptPropVendorSpecific","features":[457]},{"name":"empvtBool","features":[457]},{"name":"empvtDword","features":[457]},{"name":"empvtString","features":[457]},{"name":"raatARAPChallenge","features":[457]},{"name":"raatARAPChallengeResponse","features":[457]},{"name":"raatARAPFeatures","features":[457]},{"name":"raatARAPGuestLogon","features":[457]},{"name":"raatARAPNewPassword","features":[457]},{"name":"raatARAPOldPassword","features":[457]},{"name":"raatARAPPassword","features":[457]},{"name":"raatARAPPasswordChangeReason","features":[457]},{"name":"raatARAPSecurity","features":[457]},{"name":"raatARAPSecurityData","features":[457]},{"name":"raatARAPZoneAccess","features":[457]},{"name":"raatAcctAuthentic","features":[457]},{"name":"raatAcctDelayTime","features":[457]},{"name":"raatAcctEventTimeStamp","features":[457]},{"name":"raatAcctInputOctets","features":[457]},{"name":"raatAcctInputPackets","features":[457]},{"name":"raatAcctInterimInterval","features":[457]},{"name":"raatAcctLinkCount","features":[457]},{"name":"raatAcctMultiSessionId","features":[457]},{"name":"raatAcctOutputOctets","features":[457]},{"name":"raatAcctOutputPackets","features":[457]},{"name":"raatAcctSessionId","features":[457]},{"name":"raatAcctSessionTime","features":[457]},{"name":"raatAcctStatusType","features":[457]},{"name":"raatAcctTerminateCause","features":[457]},{"name":"raatCallbackId","features":[457]},{"name":"raatCallbackNumber","features":[457]},{"name":"raatCalledStationId","features":[457]},{"name":"raatCallingStationId","features":[457]},{"name":"raatCertificateOID","features":[457]},{"name":"raatCertificateThumbprint","features":[457]},{"name":"raatClass","features":[457]},{"name":"raatConfigurationToken","features":[457]},{"name":"raatConnectInfo","features":[457]},{"name":"raatCredentialsChanged","features":[457]},{"name":"raatEAPConfiguration","features":[457]},{"name":"raatEAPMessage","features":[457]},{"name":"raatEAPTLV","features":[457]},{"name":"raatEMSK","features":[457]},{"name":"raatFastRoamedSession","features":[457]},{"name":"raatFilterId","features":[457]},{"name":"raatFramedAppleTalkLink","features":[457]},{"name":"raatFramedAppleTalkNetwork","features":[457]},{"name":"raatFramedAppleTalkZone","features":[457]},{"name":"raatFramedCompression","features":[457]},{"name":"raatFramedIPAddress","features":[457]},{"name":"raatFramedIPNetmask","features":[457]},{"name":"raatFramedIPXNetwork","features":[457]},{"name":"raatFramedIPv6Pool","features":[457]},{"name":"raatFramedIPv6Prefix","features":[457]},{"name":"raatFramedIPv6Route","features":[457]},{"name":"raatFramedInterfaceId","features":[457]},{"name":"raatFramedMTU","features":[457]},{"name":"raatFramedProtocol","features":[457]},{"name":"raatFramedRoute","features":[457]},{"name":"raatFramedRouting","features":[457]},{"name":"raatIdleTimeout","features":[457]},{"name":"raatInnerEAPTypeId","features":[457]},{"name":"raatLoginIPHost","features":[457]},{"name":"raatLoginIPv6Host","features":[457]},{"name":"raatLoginLATGroup","features":[457]},{"name":"raatLoginLATNode","features":[457]},{"name":"raatLoginLATPort","features":[457]},{"name":"raatLoginLATService","features":[457]},{"name":"raatLoginService","features":[457]},{"name":"raatLoginTCPPort","features":[457]},{"name":"raatMD5CHAPChallenge","features":[457]},{"name":"raatMD5CHAPPassword","features":[457]},{"name":"raatMethodId","features":[457]},{"name":"raatMinimum","features":[457]},{"name":"raatNASIPAddress","features":[457]},{"name":"raatNASIPv6Address","features":[457]},{"name":"raatNASIdentifier","features":[457]},{"name":"raatNASPort","features":[457]},{"name":"raatNASPortType","features":[457]},{"name":"raatPEAPEmbeddedEAPTypeId","features":[457]},{"name":"raatPEAPFastRoamedSession","features":[457]},{"name":"raatPasswordRetry","features":[457]},{"name":"raatPeerId","features":[457]},{"name":"raatPortLimit","features":[457]},{"name":"raatPrompt","features":[457]},{"name":"raatProxyState","features":[457]},{"name":"raatReplyMessage","features":[457]},{"name":"raatReserved","features":[457]},{"name":"raatServerId","features":[457]},{"name":"raatServiceType","features":[457]},{"name":"raatSessionId","features":[457]},{"name":"raatSessionTimeout","features":[457]},{"name":"raatSignature","features":[457]},{"name":"raatState","features":[457]},{"name":"raatTerminationAction","features":[457]},{"name":"raatTunnelClientEndpoint","features":[457]},{"name":"raatTunnelMediumType","features":[457]},{"name":"raatTunnelServerEndpoint","features":[457]},{"name":"raatTunnelType","features":[457]},{"name":"raatUnassigned17","features":[457]},{"name":"raatUnassigned21","features":[457]},{"name":"raatUserName","features":[457]},{"name":"raatUserPassword","features":[457]},{"name":"raatVendorSpecific","features":[457]}],"496":[{"name":"CreateAppContainerProfile","features":[303,491]},{"name":"DeleteAppContainerProfile","features":[491]},{"name":"DeriveAppContainerSidFromAppContainerName","features":[303,491]},{"name":"DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName","features":[303,491]},{"name":"GetAppContainerFolderPath","features":[491]},{"name":"GetAppContainerNamedObjectPath","features":[303,491]},{"name":"GetAppContainerRegistryLocation","features":[491,364]},{"name":"IIsolatedAppLauncher","features":[491]},{"name":"IIsolatedProcessLauncher","features":[491]},{"name":"IIsolatedProcessLauncher2","features":[491]},{"name":"IsCrossIsolatedEnvironmentClipboardContent","features":[303,491]},{"name":"IsProcessInIsolatedContainer","features":[303,491]},{"name":"IsProcessInIsolatedWindowsEnvironment","features":[303,491]},{"name":"IsProcessInWDAGContainer","features":[303,491]},{"name":"IsolatedAppLauncher","features":[491]},{"name":"IsolatedAppLauncherTelemetryParameters","features":[303,491]},{"name":"WDAG_CLIPBOARD_TAG","features":[491]}],"497":[{"name":"LicenseKeyAlreadyExists","features":[492]},{"name":"LicenseKeyCorrupted","features":[492]},{"name":"LicenseKeyNotFound","features":[492]},{"name":"LicenseKeyUnprotected","features":[492]},{"name":"LicenseProtectionStatus","features":[492]},{"name":"RegisterLicenseKeyWithExpiration","features":[492]},{"name":"Success","features":[492]},{"name":"ValidateLicenseKeyProtection","features":[303,492]}],"498":[{"name":"ComponentTypeEnforcementClientRp","features":[493]},{"name":"ComponentTypeEnforcementClientSoH","features":[493]},{"name":"CorrelationId","features":[303,493]},{"name":"CountedString","features":[493]},{"name":"ExtendedIsolationState","features":[493]},{"name":"FailureCategory","features":[493]},{"name":"FailureCategoryMapping","features":[303,493]},{"name":"FixupInfo","features":[493]},{"name":"FixupState","features":[493]},{"name":"Ipv4Address","features":[493]},{"name":"Ipv6Address","features":[493]},{"name":"IsolationInfo","features":[303,493]},{"name":"IsolationInfoEx","features":[303,493]},{"name":"IsolationState","features":[493]},{"name":"NapComponentRegistrationInfo","features":[303,493]},{"name":"NapNotifyType","features":[493]},{"name":"NapTracingLevel","features":[493]},{"name":"NetworkSoH","features":[493]},{"name":"PrivateData","features":[493]},{"name":"RemoteConfigurationType","features":[493]},{"name":"ResultCodes","features":[493]},{"name":"SoH","features":[493]},{"name":"SoHAttribute","features":[493]},{"name":"SystemHealthAgentState","features":[493]},{"name":"extendedIsolationStateInfected","features":[493]},{"name":"extendedIsolationStateNoData","features":[493]},{"name":"extendedIsolationStateTransition","features":[493]},{"name":"extendedIsolationStateUnknown","features":[493]},{"name":"failureCategoryClientCommunication","features":[493]},{"name":"failureCategoryClientComponent","features":[493]},{"name":"failureCategoryCount","features":[493]},{"name":"failureCategoryNone","features":[493]},{"name":"failureCategoryOther","features":[493]},{"name":"failureCategoryServerCommunication","features":[493]},{"name":"failureCategoryServerComponent","features":[493]},{"name":"fixupStateCouldNotUpdate","features":[493]},{"name":"fixupStateInProgress","features":[493]},{"name":"fixupStateSuccess","features":[493]},{"name":"freshSoHRequest","features":[493]},{"name":"isolationStateInProbation","features":[493]},{"name":"isolationStateNotRestricted","features":[493]},{"name":"isolationStateRestrictedAccess","features":[493]},{"name":"maxConnectionCountPerEnforcer","features":[493]},{"name":"maxEnforcerCount","features":[493]},{"name":"maxNetworkSoHSize","features":[493]},{"name":"maxPrivateDataSize","features":[493]},{"name":"maxSoHAttributeCount","features":[493]},{"name":"maxSoHAttributeSize","features":[493]},{"name":"maxStringLength","features":[493]},{"name":"maxSystemHealthEntityCount","features":[493]},{"name":"minNetworkSoHSize","features":[493]},{"name":"napNotifyTypeQuarState","features":[493]},{"name":"napNotifyTypeServiceState","features":[493]},{"name":"napNotifyTypeUnknown","features":[493]},{"name":"percentageNotSupported","features":[493]},{"name":"remoteConfigTypeConfigBlob","features":[493]},{"name":"remoteConfigTypeMachine","features":[493]},{"name":"shaFixup","features":[493]},{"name":"tracingLevelAdvanced","features":[493]},{"name":"tracingLevelBasic","features":[493]},{"name":"tracingLevelDebug","features":[493]},{"name":"tracingLevelUndefined","features":[493]}],"499":[{"name":"ITpmVirtualSmartCardManager","features":[494]},{"name":"ITpmVirtualSmartCardManager2","features":[494]},{"name":"ITpmVirtualSmartCardManager3","features":[494]},{"name":"ITpmVirtualSmartCardManagerStatusCallback","features":[494]},{"name":"RemoteTpmVirtualSmartCardManager","features":[494]},{"name":"TPMVSCMGR_ERROR","features":[494]},{"name":"TPMVSCMGR_ERROR_CARD_CREATE","features":[494]},{"name":"TPMVSCMGR_ERROR_CARD_DESTROY","features":[494]},{"name":"TPMVSCMGR_ERROR_GENERATE_FILESYSTEM","features":[494]},{"name":"TPMVSCMGR_ERROR_GENERATE_LOCATE_READER","features":[494]},{"name":"TPMVSCMGR_ERROR_IMPERSONATION","features":[494]},{"name":"TPMVSCMGR_ERROR_PIN_COMPLEXITY","features":[494]},{"name":"TPMVSCMGR_ERROR_READER_COUNT_LIMIT","features":[494]},{"name":"TPMVSCMGR_ERROR_TERMINAL_SERVICES_SESSION","features":[494]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_CREATE","features":[494]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_DESTROY","features":[494]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_INITIALIZE","features":[494]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_READ_PROPERTY","features":[494]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_WRITE_PROPERTY","features":[494]},{"name":"TPMVSCMGR_ERROR_VREADER_CREATE","features":[494]},{"name":"TPMVSCMGR_ERROR_VREADER_DESTROY","features":[494]},{"name":"TPMVSCMGR_ERROR_VREADER_INITIALIZE","features":[494]},{"name":"TPMVSCMGR_ERROR_VTPMSMARTCARD_CREATE","features":[494]},{"name":"TPMVSCMGR_ERROR_VTPMSMARTCARD_DESTROY","features":[494]},{"name":"TPMVSCMGR_ERROR_VTPMSMARTCARD_INITIALIZE","features":[494]},{"name":"TPMVSCMGR_STATUS","features":[494]},{"name":"TPMVSCMGR_STATUS_CARD_CREATED","features":[494]},{"name":"TPMVSCMGR_STATUS_CARD_DESTROYED","features":[494]},{"name":"TPMVSCMGR_STATUS_GENERATE_AUTHENTICATING","features":[494]},{"name":"TPMVSCMGR_STATUS_GENERATE_RUNNING","features":[494]},{"name":"TPMVSCMGR_STATUS_GENERATE_WAITING","features":[494]},{"name":"TPMVSCMGR_STATUS_VGIDSSIMULATOR_CREATING","features":[494]},{"name":"TPMVSCMGR_STATUS_VGIDSSIMULATOR_DESTROYING","features":[494]},{"name":"TPMVSCMGR_STATUS_VGIDSSIMULATOR_INITIALIZING","features":[494]},{"name":"TPMVSCMGR_STATUS_VREADER_CREATING","features":[494]},{"name":"TPMVSCMGR_STATUS_VREADER_DESTROYING","features":[494]},{"name":"TPMVSCMGR_STATUS_VREADER_INITIALIZING","features":[494]},{"name":"TPMVSCMGR_STATUS_VTPMSMARTCARD_CREATING","features":[494]},{"name":"TPMVSCMGR_STATUS_VTPMSMARTCARD_DESTROYING","features":[494]},{"name":"TPMVSCMGR_STATUS_VTPMSMARTCARD_INITIALIZING","features":[494]},{"name":"TPMVSC_ATTESTATION_AIK_AND_CERTIFICATE","features":[494]},{"name":"TPMVSC_ATTESTATION_AIK_ONLY","features":[494]},{"name":"TPMVSC_ATTESTATION_NONE","features":[494]},{"name":"TPMVSC_ATTESTATION_TYPE","features":[494]},{"name":"TPMVSC_DEFAULT_ADMIN_ALGORITHM_ID","features":[494]},{"name":"TpmVirtualSmartCardManager","features":[494]}],"500":[{"name":"CAT_MEMBERINFO","features":[486]},{"name":"CAT_MEMBERINFO2","features":[486]},{"name":"CAT_MEMBERINFO2_OBJID","features":[486]},{"name":"CAT_MEMBERINFO2_STRUCT","features":[486]},{"name":"CAT_MEMBERINFO_OBJID","features":[486]},{"name":"CAT_MEMBERINFO_STRUCT","features":[486]},{"name":"CAT_NAMEVALUE","features":[387,486]},{"name":"CAT_NAMEVALUE_OBJID","features":[486]},{"name":"CAT_NAMEVALUE_STRUCT","features":[486]},{"name":"CCPI_RESULT_ALLOW","features":[486]},{"name":"CCPI_RESULT_AUDIT","features":[486]},{"name":"CCPI_RESULT_DENY","features":[486]},{"name":"CERT_CONFIDENCE_AUTHIDEXT","features":[486]},{"name":"CERT_CONFIDENCE_HIGHEST","features":[486]},{"name":"CERT_CONFIDENCE_HYGIENE","features":[486]},{"name":"CERT_CONFIDENCE_SIG","features":[486]},{"name":"CERT_CONFIDENCE_TIME","features":[486]},{"name":"CERT_CONFIDENCE_TIMENEST","features":[486]},{"name":"CONFIG_CI_ACTION_VERIFY","features":[486]},{"name":"CONFIG_CI_PROV_INFO","features":[303,387,486]},{"name":"CONFIG_CI_PROV_INFO_RESULT","features":[303,486]},{"name":"CONFIG_CI_PROV_INFO_RESULT2","features":[303,486]},{"name":"CPD_CHOICE_SIP","features":[486]},{"name":"CPD_RETURN_LOWER_QUALITY_CHAINS","features":[486]},{"name":"CPD_REVOCATION_CHECK_CHAIN","features":[486]},{"name":"CPD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[486]},{"name":"CPD_REVOCATION_CHECK_END_CERT","features":[486]},{"name":"CPD_REVOCATION_CHECK_NONE","features":[486]},{"name":"CPD_RFC3161v21","features":[486]},{"name":"CPD_UISTATE_MODE_ALLOW","features":[486]},{"name":"CPD_UISTATE_MODE_BLOCK","features":[486]},{"name":"CPD_UISTATE_MODE_MASK","features":[486]},{"name":"CPD_UISTATE_MODE_PROMPT","features":[486]},{"name":"CPD_USE_NT5_CHAIN_FLAG","features":[486]},{"name":"CRYPT_PROVIDER_CERT","features":[303,387,486]},{"name":"CRYPT_PROVIDER_DATA","features":[303,482,483,486]},{"name":"CRYPT_PROVIDER_DEFUSAGE","features":[486]},{"name":"CRYPT_PROVIDER_FUNCTIONS","features":[303,482,483,486]},{"name":"CRYPT_PROVIDER_PRIVDATA","features":[486]},{"name":"CRYPT_PROVIDER_REGDEFUSAGE","features":[486]},{"name":"CRYPT_PROVIDER_SGNR","features":[303,387,486]},{"name":"CRYPT_PROVIDER_SIGSTATE","features":[303,387,486]},{"name":"CRYPT_PROVUI_DATA","features":[486]},{"name":"CRYPT_PROVUI_FUNCS","features":[303,482,483,486]},{"name":"CRYPT_REGISTER_ACTIONID","features":[486]},{"name":"CRYPT_TRUST_REG_ENTRY","features":[486]},{"name":"DRIVER_ACTION_VERIFY","features":[486]},{"name":"DRIVER_CLEANUPPOLICY_FUNCTION","features":[486]},{"name":"DRIVER_FINALPOLPROV_FUNCTION","features":[486]},{"name":"DRIVER_INITPROV_FUNCTION","features":[486]},{"name":"DRIVER_VER_INFO","features":[303,387,486]},{"name":"DRIVER_VER_MAJORMINOR","features":[486]},{"name":"DWACTION_ALLOCANDFILL","features":[486]},{"name":"DWACTION_FREE","features":[486]},{"name":"GENERIC_CHAIN_CERTTRUST_FUNCTION","features":[486]},{"name":"GENERIC_CHAIN_FINALPOLICY_FUNCTION","features":[486]},{"name":"HTTPSPROV_ACTION","features":[486]},{"name":"HTTPS_CERTTRUST_FUNCTION","features":[486]},{"name":"HTTPS_CHKCERT_FUNCTION","features":[486]},{"name":"HTTPS_FINALPOLICY_FUNCTION","features":[486]},{"name":"INTENT_TO_SEAL_ATTRIBUTE","features":[303,486]},{"name":"INTENT_TO_SEAL_ATTRIBUTE_STRUCT","features":[486]},{"name":"OFFICESIGN_ACTION_VERIFY","features":[486]},{"name":"OFFICE_CLEANUPPOLICY_FUNCTION","features":[486]},{"name":"OFFICE_INITPROV_FUNCTION","features":[486]},{"name":"OFFICE_POLICY_PROVIDER_DLL_NAME","features":[486]},{"name":"OpenPersonalTrustDBDialog","features":[303,486]},{"name":"OpenPersonalTrustDBDialogEx","features":[303,486]},{"name":"PFN_ALLOCANDFILLDEFUSAGE","features":[303,486]},{"name":"PFN_CPD_ADD_CERT","features":[303,482,483,486]},{"name":"PFN_CPD_ADD_PRIVDATA","features":[303,482,483,486]},{"name":"PFN_CPD_ADD_SGNR","features":[303,482,483,486]},{"name":"PFN_CPD_ADD_STORE","features":[303,482,483,486]},{"name":"PFN_CPD_MEM_ALLOC","features":[486]},{"name":"PFN_CPD_MEM_FREE","features":[486]},{"name":"PFN_FREEDEFUSAGE","features":[303,486]},{"name":"PFN_PROVIDER_CERTCHKPOLICY_CALL","features":[303,482,483,486]},{"name":"PFN_PROVIDER_CERTTRUST_CALL","features":[303,482,483,486]},{"name":"PFN_PROVIDER_CLEANUP_CALL","features":[303,482,483,486]},{"name":"PFN_PROVIDER_FINALPOLICY_CALL","features":[303,482,483,486]},{"name":"PFN_PROVIDER_INIT_CALL","features":[303,482,483,486]},{"name":"PFN_PROVIDER_OBJTRUST_CALL","features":[303,482,483,486]},{"name":"PFN_PROVIDER_SIGTRUST_CALL","features":[303,482,483,486]},{"name":"PFN_PROVIDER_TESTFINALPOLICY_CALL","features":[303,482,483,486]},{"name":"PFN_PROVUI_CALL","features":[303,482,483,486]},{"name":"PFN_WTD_GENERIC_CHAIN_POLICY_CALLBACK","features":[303,482,483,486]},{"name":"PROVDATA_SIP","features":[303,482,483,486]},{"name":"SEALING_SIGNATURE_ATTRIBUTE","features":[387,486]},{"name":"SEALING_SIGNATURE_ATTRIBUTE_STRUCT","features":[486]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE","features":[387,486]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE_STRUCT","features":[486]},{"name":"SGNR_TYPE_TIMESTAMP","features":[486]},{"name":"SPC_CAB_DATA_OBJID","features":[486]},{"name":"SPC_CAB_DATA_STRUCT","features":[486]},{"name":"SPC_CERT_EXTENSIONS_OBJID","features":[486]},{"name":"SPC_COMMERCIAL_SP_KEY_PURPOSE_OBJID","features":[486]},{"name":"SPC_COMMON_NAME_OBJID","features":[486]},{"name":"SPC_ENCRYPTED_DIGEST_RETRY_COUNT_OBJID","features":[486]},{"name":"SPC_FILE_LINK_CHOICE","features":[486]},{"name":"SPC_FINANCIAL_CRITERIA","features":[303,486]},{"name":"SPC_FINANCIAL_CRITERIA_OBJID","features":[486]},{"name":"SPC_FINANCIAL_CRITERIA_STRUCT","features":[486]},{"name":"SPC_GLUE_RDN_OBJID","features":[486]},{"name":"SPC_IMAGE","features":[387,486]},{"name":"SPC_INDIRECT_DATA_CONTENT","features":[387,486]},{"name":"SPC_INDIRECT_DATA_CONTENT_STRUCT","features":[486]},{"name":"SPC_INDIRECT_DATA_OBJID","features":[486]},{"name":"SPC_INDIVIDUAL_SP_KEY_PURPOSE_OBJID","features":[486]},{"name":"SPC_JAVA_CLASS_DATA_OBJID","features":[486]},{"name":"SPC_JAVA_CLASS_DATA_STRUCT","features":[486]},{"name":"SPC_LINK","features":[387,486]},{"name":"SPC_LINK_OBJID","features":[486]},{"name":"SPC_LINK_STRUCT","features":[486]},{"name":"SPC_MINIMAL_CRITERIA_OBJID","features":[486]},{"name":"SPC_MINIMAL_CRITERIA_STRUCT","features":[486]},{"name":"SPC_MONIKER_LINK_CHOICE","features":[486]},{"name":"SPC_NATURAL_AUTH_PLUGIN_OBJID","features":[486]},{"name":"SPC_PE_IMAGE_DATA","features":[387,486]},{"name":"SPC_PE_IMAGE_DATA_OBJID","features":[486]},{"name":"SPC_PE_IMAGE_DATA_STRUCT","features":[486]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V1_OBJID","features":[486]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V2_OBJID","features":[486]},{"name":"SPC_RAW_FILE_DATA_OBJID","features":[486]},{"name":"SPC_RELAXED_PE_MARKER_CHECK_OBJID","features":[486]},{"name":"SPC_SERIALIZED_OBJECT","features":[387,486]},{"name":"SPC_SIGINFO","features":[486]},{"name":"SPC_SIGINFO_OBJID","features":[486]},{"name":"SPC_SIGINFO_STRUCT","features":[486]},{"name":"SPC_SP_AGENCY_INFO","features":[387,486]},{"name":"SPC_SP_AGENCY_INFO_OBJID","features":[486]},{"name":"SPC_SP_AGENCY_INFO_STRUCT","features":[486]},{"name":"SPC_SP_OPUS_INFO","features":[387,486]},{"name":"SPC_SP_OPUS_INFO_OBJID","features":[486]},{"name":"SPC_SP_OPUS_INFO_STRUCT","features":[486]},{"name":"SPC_STATEMENT_TYPE","features":[486]},{"name":"SPC_STATEMENT_TYPE_OBJID","features":[486]},{"name":"SPC_STATEMENT_TYPE_STRUCT","features":[486]},{"name":"SPC_STRUCTURED_STORAGE_DATA_OBJID","features":[486]},{"name":"SPC_TIME_STAMP_REQUEST_OBJID","features":[486]},{"name":"SPC_URL_LINK_CHOICE","features":[486]},{"name":"SPC_UUID_LENGTH","features":[486]},{"name":"SPC_WINDOWS_HELLO_COMPATIBILITY_OBJID","features":[486]},{"name":"SP_CHKCERT_FUNCTION","features":[486]},{"name":"SP_CLEANUPPOLICY_FUNCTION","features":[486]},{"name":"SP_FINALPOLICY_FUNCTION","features":[486]},{"name":"SP_GENERIC_CERT_INIT_FUNCTION","features":[486]},{"name":"SP_INIT_FUNCTION","features":[486]},{"name":"SP_OBJTRUST_FUNCTION","features":[486]},{"name":"SP_POLICY_PROVIDER_DLL_NAME","features":[486]},{"name":"SP_SIGTRUST_FUNCTION","features":[486]},{"name":"SP_TESTDUMPPOLICY_FUNCTION_TEST","features":[486]},{"name":"TRUSTERROR_MAX_STEPS","features":[486]},{"name":"TRUSTERROR_STEP_CATALOGFILE","features":[486]},{"name":"TRUSTERROR_STEP_CERTSTORE","features":[486]},{"name":"TRUSTERROR_STEP_FILEIO","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_CERTCHKPROV","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_CERTPROV","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_INITPROV","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_OBJPROV","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_POLICYPROV","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_SIGPROV","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_UIPROV","features":[486]},{"name":"TRUSTERROR_STEP_FINAL_WVTINIT","features":[486]},{"name":"TRUSTERROR_STEP_MESSAGE","features":[486]},{"name":"TRUSTERROR_STEP_MSG_CERTCHAIN","features":[486]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGCERT","features":[486]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGINFO","features":[486]},{"name":"TRUSTERROR_STEP_MSG_INNERCNT","features":[486]},{"name":"TRUSTERROR_STEP_MSG_INNERCNTTYPE","features":[486]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCERT","features":[486]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCOUNT","features":[486]},{"name":"TRUSTERROR_STEP_MSG_SIGNERINFO","features":[486]},{"name":"TRUSTERROR_STEP_MSG_STORE","features":[486]},{"name":"TRUSTERROR_STEP_SIP","features":[486]},{"name":"TRUSTERROR_STEP_SIPSUBJINFO","features":[486]},{"name":"TRUSTERROR_STEP_VERIFY_MSGHASH","features":[486]},{"name":"TRUSTERROR_STEP_VERIFY_MSGINDIRECTDATA","features":[486]},{"name":"TRUSTERROR_STEP_WVTPARAMS","features":[486]},{"name":"WINTRUST_ACTION_GENERIC_CERT_VERIFY","features":[486]},{"name":"WINTRUST_ACTION_GENERIC_CHAIN_VERIFY","features":[486]},{"name":"WINTRUST_ACTION_GENERIC_VERIFY_V2","features":[486]},{"name":"WINTRUST_ACTION_TRUSTPROVIDER_TEST","features":[486]},{"name":"WINTRUST_BLOB_INFO","features":[486]},{"name":"WINTRUST_CATALOG_INFO","features":[303,387,486]},{"name":"WINTRUST_CERT_INFO","features":[303,387,486]},{"name":"WINTRUST_CONFIG_REGPATH","features":[486]},{"name":"WINTRUST_DATA","features":[303,387,486]},{"name":"WINTRUST_DATA_PROVIDER_FLAGS","features":[486]},{"name":"WINTRUST_DATA_REVOCATION_CHECKS","features":[486]},{"name":"WINTRUST_DATA_STATE_ACTION","features":[486]},{"name":"WINTRUST_DATA_UICHOICE","features":[486]},{"name":"WINTRUST_DATA_UICONTEXT","features":[486]},{"name":"WINTRUST_DATA_UNION_CHOICE","features":[486]},{"name":"WINTRUST_FILE_INFO","features":[303,486]},{"name":"WINTRUST_GET_DEFAULT_FOR_USAGE_ACTION","features":[486]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_DEFAULT","features":[486]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_VALUE_NAME","features":[486]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_DEFAULT","features":[486]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_VALUE_NAME","features":[486]},{"name":"WINTRUST_POLICY_FLAGS","features":[486]},{"name":"WINTRUST_SGNR_INFO","features":[387,486]},{"name":"WINTRUST_SIGNATURE_SETTINGS","features":[387,486]},{"name":"WINTRUST_SIGNATURE_SETTINGS_FLAGS","features":[486]},{"name":"WIN_CERTIFICATE","features":[486]},{"name":"WIN_CERT_REVISION_1_0","features":[486]},{"name":"WIN_CERT_REVISION_2_0","features":[486]},{"name":"WIN_CERT_TYPE_PKCS_SIGNED_DATA","features":[486]},{"name":"WIN_CERT_TYPE_RESERVED_1","features":[486]},{"name":"WIN_CERT_TYPE_TS_STACK_SIGNED","features":[486]},{"name":"WIN_CERT_TYPE_X509","features":[486]},{"name":"WIN_SPUB_ACTION_NT_ACTIVATE_IMAGE","features":[486]},{"name":"WIN_SPUB_ACTION_PUBLISHED_SOFTWARE","features":[486]},{"name":"WIN_SPUB_ACTION_TRUSTED_PUBLISHER","features":[486]},{"name":"WIN_SPUB_TRUSTED_PUBLISHER_DATA","features":[303,486]},{"name":"WIN_TRUST_ACTDATA_CONTEXT_WITH_SUBJECT","features":[303,486]},{"name":"WIN_TRUST_ACTDATA_SUBJECT_ONLY","features":[486]},{"name":"WIN_TRUST_SUBJECT_FILE","features":[303,486]},{"name":"WIN_TRUST_SUBJECT_FILE_AND_DISPLAY","features":[303,486]},{"name":"WIN_TRUST_SUBJTYPE_CABINET","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_CABINETEX","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASS","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASSEX","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_OLE_STORAGE","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGE","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGEEX","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILE","features":[486]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILEEX","features":[486]},{"name":"WSS_CERTTRUST_SUPPORT","features":[486]},{"name":"WSS_GET_SECONDARY_SIG_COUNT","features":[486]},{"name":"WSS_INPUT_FLAG_MASK","features":[486]},{"name":"WSS_OBJTRUST_SUPPORT","features":[486]},{"name":"WSS_OUTPUT_FLAG_MASK","features":[486]},{"name":"WSS_OUT_FILE_SUPPORTS_SEAL","features":[486]},{"name":"WSS_OUT_HAS_SEALING_INTENT","features":[486]},{"name":"WSS_OUT_SEALING_STATUS_VERIFIED","features":[486]},{"name":"WSS_SIGTRUST_SUPPORT","features":[486]},{"name":"WSS_VERIFY_SEALING","features":[486]},{"name":"WSS_VERIFY_SPECIFIC","features":[486]},{"name":"WTCI_DONT_OPEN_STORES","features":[486]},{"name":"WTCI_OPEN_ONLY_ROOT","features":[486]},{"name":"WTCI_USE_LOCAL_MACHINE","features":[486]},{"name":"WTD_CACHE_ONLY_URL_RETRIEVAL","features":[486]},{"name":"WTD_CHOICE_BLOB","features":[486]},{"name":"WTD_CHOICE_CATALOG","features":[486]},{"name":"WTD_CHOICE_CERT","features":[486]},{"name":"WTD_CHOICE_FILE","features":[486]},{"name":"WTD_CHOICE_SIGNER","features":[486]},{"name":"WTD_CODE_INTEGRITY_DRIVER_MODE","features":[486]},{"name":"WTD_DISABLE_MD2_MD4","features":[486]},{"name":"WTD_GENERIC_CHAIN_POLICY_CREATE_INFO","features":[387,486]},{"name":"WTD_GENERIC_CHAIN_POLICY_DATA","features":[303,482,483,486]},{"name":"WTD_GENERIC_CHAIN_POLICY_SIGNER_INFO","features":[303,387,486]},{"name":"WTD_HASH_ONLY_FLAG","features":[486]},{"name":"WTD_LIFETIME_SIGNING_FLAG","features":[486]},{"name":"WTD_MOTW","features":[486]},{"name":"WTD_NO_IE4_CHAIN_FLAG","features":[486]},{"name":"WTD_NO_POLICY_USAGE_FLAG","features":[486]},{"name":"WTD_PROV_FLAGS_MASK","features":[486]},{"name":"WTD_REVOCATION_CHECK_CHAIN","features":[486]},{"name":"WTD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[486]},{"name":"WTD_REVOCATION_CHECK_END_CERT","features":[486]},{"name":"WTD_REVOCATION_CHECK_NONE","features":[486]},{"name":"WTD_REVOKE_NONE","features":[486]},{"name":"WTD_REVOKE_WHOLECHAIN","features":[486]},{"name":"WTD_SAFER_FLAG","features":[486]},{"name":"WTD_STATEACTION_AUTO_CACHE","features":[486]},{"name":"WTD_STATEACTION_AUTO_CACHE_FLUSH","features":[486]},{"name":"WTD_STATEACTION_CLOSE","features":[486]},{"name":"WTD_STATEACTION_IGNORE","features":[486]},{"name":"WTD_STATEACTION_VERIFY","features":[486]},{"name":"WTD_UICONTEXT_EXECUTE","features":[486]},{"name":"WTD_UICONTEXT_INSTALL","features":[486]},{"name":"WTD_UI_ALL","features":[486]},{"name":"WTD_UI_NOBAD","features":[486]},{"name":"WTD_UI_NOGOOD","features":[486]},{"name":"WTD_UI_NONE","features":[486]},{"name":"WTD_USE_DEFAULT_OSVER_CHECK","features":[486]},{"name":"WTD_USE_IE4_TRUST_FLAG","features":[486]},{"name":"WTHelperCertCheckValidSignature","features":[303,482,483,486]},{"name":"WTHelperCertIsSelfSigned","features":[303,387,486]},{"name":"WTHelperGetProvCertFromChain","features":[303,387,486]},{"name":"WTHelperGetProvPrivateDataFromChain","features":[303,482,483,486]},{"name":"WTHelperGetProvSignerFromChain","features":[303,482,483,486]},{"name":"WTHelperProvDataFromStateData","features":[303,482,483,486]},{"name":"WTPF_ALLOWONLYPERTRUST","features":[486]},{"name":"WTPF_IGNOREEXPIRATION","features":[486]},{"name":"WTPF_IGNOREREVOCATIONONTS","features":[486]},{"name":"WTPF_IGNOREREVOKATION","features":[486]},{"name":"WTPF_OFFLINEOKNBU_COM","features":[486]},{"name":"WTPF_OFFLINEOKNBU_IND","features":[486]},{"name":"WTPF_OFFLINEOK_COM","features":[486]},{"name":"WTPF_OFFLINEOK_IND","features":[486]},{"name":"WTPF_TESTCANBEVALID","features":[486]},{"name":"WTPF_TRUSTTEST","features":[486]},{"name":"WTPF_VERIFY_V1_OFF","features":[486]},{"name":"WT_ADD_ACTION_ID_RET_RESULT_FLAG","features":[486]},{"name":"WT_CURRENT_VERSION","features":[486]},{"name":"WT_PROVIDER_CERTTRUST_FUNCTION","features":[486]},{"name":"WT_PROVIDER_DLL_NAME","features":[486]},{"name":"WT_TRUSTDBDIALOG_NO_UI_FLAG","features":[486]},{"name":"WT_TRUSTDBDIALOG_ONLY_PUB_TAB_FLAG","features":[486]},{"name":"WT_TRUSTDBDIALOG_WRITE_IEAK_STORE_FLAG","features":[486]},{"name":"WT_TRUSTDBDIALOG_WRITE_LEGACY_REG_FLAG","features":[486]},{"name":"WinVerifyTrust","features":[303,486]},{"name":"WinVerifyTrustEx","features":[303,387,486]},{"name":"WintrustAddActionID","features":[303,486]},{"name":"WintrustAddDefaultForUsage","features":[303,486]},{"name":"WintrustGetDefaultForUsage","features":[303,486]},{"name":"WintrustGetRegPolicyFlags","features":[486]},{"name":"WintrustLoadFunctionPointers","features":[303,482,483,486]},{"name":"WintrustRemoveActionID","features":[303,486]},{"name":"WintrustSetDefaultIncludePEPageHashes","features":[303,486]},{"name":"WintrustSetRegPolicyFlags","features":[303,486]},{"name":"szOID_ENHANCED_HASH","features":[486]},{"name":"szOID_INTENT_TO_SEAL","features":[486]},{"name":"szOID_NESTED_SIGNATURE","features":[486]},{"name":"szOID_PKCS_9_SEQUENCE_NUMBER","features":[486]},{"name":"szOID_SEALING_SIGNATURE","features":[486]},{"name":"szOID_SEALING_TIMESTAMP","features":[486]},{"name":"szOID_TRUSTED_CLIENT_AUTH_CA_LIST","features":[486]},{"name":"szOID_TRUSTED_CODESIGNING_CA_LIST","features":[486]},{"name":"szOID_TRUSTED_SERVER_AUTH_CA_LIST","features":[486]}],"501":[{"name":"PFNMSGECALLBACK","features":[303,495]},{"name":"PWLX_ASSIGN_SHELL_PROTECTION","features":[303,495]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY","features":[303,495]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY_EX","features":[303,495]},{"name":"PWLX_CLOSE_USER_DESKTOP","features":[303,495,496]},{"name":"PWLX_CREATE_USER_DESKTOP","features":[303,495,496]},{"name":"PWLX_DIALOG_BOX","features":[303,495,365]},{"name":"PWLX_DIALOG_BOX_INDIRECT","features":[303,495,365]},{"name":"PWLX_DIALOG_BOX_INDIRECT_PARAM","features":[303,495,365]},{"name":"PWLX_DIALOG_BOX_PARAM","features":[303,495,365]},{"name":"PWLX_DISCONNECT","features":[303,495]},{"name":"PWLX_GET_OPTION","features":[303,495]},{"name":"PWLX_GET_SOURCE_DESKTOP","features":[303,495,496]},{"name":"PWLX_MESSAGE_BOX","features":[303,495]},{"name":"PWLX_QUERY_CLIENT_CREDENTIALS","features":[303,495]},{"name":"PWLX_QUERY_CONSOLESWITCH_CREDENTIALS","features":[303,495]},{"name":"PWLX_QUERY_IC_CREDENTIALS","features":[303,495]},{"name":"PWLX_QUERY_TERMINAL_SERVICES_DATA","features":[303,495]},{"name":"PWLX_QUERY_TS_LOGON_CREDENTIALS","features":[303,495]},{"name":"PWLX_SAS_NOTIFY","features":[303,495]},{"name":"PWLX_SET_CONTEXT_POINTER","features":[303,495]},{"name":"PWLX_SET_OPTION","features":[303,495]},{"name":"PWLX_SET_RETURN_DESKTOP","features":[303,495,496]},{"name":"PWLX_SET_TIMEOUT","features":[303,495]},{"name":"PWLX_SWITCH_DESKTOP_TO_USER","features":[303,495]},{"name":"PWLX_SWITCH_DESKTOP_TO_WINLOGON","features":[303,495]},{"name":"PWLX_USE_CTRL_ALT_DEL","features":[303,495]},{"name":"PWLX_WIN31_MIGRATE","features":[303,495]},{"name":"STATUSMSG_OPTION_NOANIMATION","features":[495]},{"name":"STATUSMSG_OPTION_SETFOREGROUND","features":[495]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V1_0","features":[303,495]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V2_0","features":[303,495]},{"name":"WLX_CONSOLESWITCHCREDENTIAL_TYPE_V1_0","features":[495]},{"name":"WLX_CONSOLESWITCH_CREDENTIALS_INFO_V1_0","features":[303,495]},{"name":"WLX_CREATE_INSTANCE_ONLY","features":[495]},{"name":"WLX_CREATE_USER","features":[495]},{"name":"WLX_CREDENTIAL_TYPE_V1_0","features":[495]},{"name":"WLX_CREDENTIAL_TYPE_V2_0","features":[495]},{"name":"WLX_CURRENT_VERSION","features":[495]},{"name":"WLX_DESKTOP","features":[495,496]},{"name":"WLX_DESKTOP_HANDLE","features":[495]},{"name":"WLX_DESKTOP_NAME","features":[495]},{"name":"WLX_DIRECTORY_LENGTH","features":[495]},{"name":"WLX_DISPATCH_VERSION_1_0","features":[303,495,365]},{"name":"WLX_DISPATCH_VERSION_1_1","features":[303,495,496,365]},{"name":"WLX_DISPATCH_VERSION_1_2","features":[303,495,496,365]},{"name":"WLX_DISPATCH_VERSION_1_3","features":[303,495,496,365]},{"name":"WLX_DISPATCH_VERSION_1_4","features":[303,495,496,365]},{"name":"WLX_DLG_INPUT_TIMEOUT","features":[495]},{"name":"WLX_DLG_SAS","features":[495]},{"name":"WLX_DLG_SCREEN_SAVER_TIMEOUT","features":[495]},{"name":"WLX_DLG_USER_LOGOFF","features":[495]},{"name":"WLX_LOGON_OPT_NO_PROFILE","features":[495]},{"name":"WLX_MPR_NOTIFY_INFO","features":[495]},{"name":"WLX_NOTIFICATION_INFO","features":[303,495,496]},{"name":"WLX_OPTION_CONTEXT_POINTER","features":[495]},{"name":"WLX_OPTION_DISPATCH_TABLE_SIZE","features":[495]},{"name":"WLX_OPTION_FORCE_LOGOFF_TIME","features":[495]},{"name":"WLX_OPTION_IGNORE_AUTO_LOGON","features":[495]},{"name":"WLX_OPTION_NO_SWITCH_ON_SAS","features":[495]},{"name":"WLX_OPTION_SMART_CARD_INFO","features":[495]},{"name":"WLX_OPTION_SMART_CARD_PRESENT","features":[495]},{"name":"WLX_OPTION_USE_CTRL_ALT_DEL","features":[495]},{"name":"WLX_OPTION_USE_SMART_CARD","features":[495]},{"name":"WLX_PROFILE_TYPE_V1_0","features":[495]},{"name":"WLX_PROFILE_TYPE_V2_0","features":[495]},{"name":"WLX_PROFILE_V1_0","features":[495]},{"name":"WLX_PROFILE_V2_0","features":[495]},{"name":"WLX_SAS_ACTION_DELAYED_FORCE_LOGOFF","features":[495]},{"name":"WLX_SAS_ACTION_FORCE_LOGOFF","features":[495]},{"name":"WLX_SAS_ACTION_LOCK_WKSTA","features":[495]},{"name":"WLX_SAS_ACTION_LOGOFF","features":[495]},{"name":"WLX_SAS_ACTION_LOGON","features":[495]},{"name":"WLX_SAS_ACTION_NONE","features":[495]},{"name":"WLX_SAS_ACTION_PWD_CHANGED","features":[495]},{"name":"WLX_SAS_ACTION_RECONNECTED","features":[495]},{"name":"WLX_SAS_ACTION_SHUTDOWN","features":[495]},{"name":"WLX_SAS_ACTION_SHUTDOWN_HIBERNATE","features":[495]},{"name":"WLX_SAS_ACTION_SHUTDOWN_POWER_OFF","features":[495]},{"name":"WLX_SAS_ACTION_SHUTDOWN_REBOOT","features":[495]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP","features":[495]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP2","features":[495]},{"name":"WLX_SAS_ACTION_SWITCH_CONSOLE","features":[495]},{"name":"WLX_SAS_ACTION_TASKLIST","features":[495]},{"name":"WLX_SAS_ACTION_UNLOCK_WKSTA","features":[495]},{"name":"WLX_SAS_TYPE_AUTHENTICATED","features":[495]},{"name":"WLX_SAS_TYPE_CTRL_ALT_DEL","features":[495]},{"name":"WLX_SAS_TYPE_MAX_MSFT_VALUE","features":[495]},{"name":"WLX_SAS_TYPE_SCRNSVR_ACTIVITY","features":[495]},{"name":"WLX_SAS_TYPE_SCRNSVR_TIMEOUT","features":[495]},{"name":"WLX_SAS_TYPE_SC_FIRST_READER_ARRIVED","features":[495]},{"name":"WLX_SAS_TYPE_SC_INSERT","features":[495]},{"name":"WLX_SAS_TYPE_SC_LAST_READER_REMOVED","features":[495]},{"name":"WLX_SAS_TYPE_SC_REMOVE","features":[495]},{"name":"WLX_SAS_TYPE_SWITCHUSER","features":[495]},{"name":"WLX_SAS_TYPE_TIMEOUT","features":[495]},{"name":"WLX_SAS_TYPE_USER_LOGOFF","features":[495]},{"name":"WLX_SC_NOTIFICATION_INFO","features":[495]},{"name":"WLX_SHUTDOWN_TYPE","features":[495]},{"name":"WLX_TERMINAL_SERVICES_DATA","features":[495]},{"name":"WLX_VERSION_1_0","features":[495]},{"name":"WLX_VERSION_1_1","features":[495]},{"name":"WLX_VERSION_1_2","features":[495]},{"name":"WLX_VERSION_1_3","features":[495]},{"name":"WLX_VERSION_1_4","features":[495]},{"name":"WLX_WM_SAS","features":[495]}],"502":[{"name":"CB_MAX_CABINET_NAME","features":[497]},{"name":"CB_MAX_CAB_PATH","features":[497]},{"name":"CB_MAX_DISK","features":[497]},{"name":"CB_MAX_DISK_NAME","features":[497]},{"name":"CB_MAX_FILENAME","features":[497]},{"name":"CCAB","features":[497]},{"name":"ERF","features":[303,497]},{"name":"FCIAddFile","features":[303,497]},{"name":"FCICreate","features":[303,497]},{"name":"FCIDestroy","features":[303,497]},{"name":"FCIERROR","features":[497]},{"name":"FCIERR_ALLOC_FAIL","features":[497]},{"name":"FCIERR_BAD_COMPR_TYPE","features":[497]},{"name":"FCIERR_CAB_FILE","features":[497]},{"name":"FCIERR_CAB_FORMAT_LIMIT","features":[497]},{"name":"FCIERR_MCI_FAIL","features":[497]},{"name":"FCIERR_NONE","features":[497]},{"name":"FCIERR_OPEN_SRC","features":[497]},{"name":"FCIERR_READ_SRC","features":[497]},{"name":"FCIERR_TEMP_FILE","features":[497]},{"name":"FCIERR_USER_ABORT","features":[497]},{"name":"FCIFlushCabinet","features":[303,497]},{"name":"FCIFlushFolder","features":[303,497]},{"name":"FDICABINETINFO","features":[303,497]},{"name":"FDICREATE_CPU_TYPE","features":[497]},{"name":"FDICopy","features":[303,497]},{"name":"FDICreate","features":[303,497]},{"name":"FDIDECRYPT","features":[303,497]},{"name":"FDIDECRYPTTYPE","features":[497]},{"name":"FDIDestroy","features":[303,497]},{"name":"FDIERROR","features":[497]},{"name":"FDIERROR_ALLOC_FAIL","features":[497]},{"name":"FDIERROR_BAD_COMPR_TYPE","features":[497]},{"name":"FDIERROR_CABINET_NOT_FOUND","features":[497]},{"name":"FDIERROR_CORRUPT_CABINET","features":[497]},{"name":"FDIERROR_EOF","features":[497]},{"name":"FDIERROR_MDI_FAIL","features":[497]},{"name":"FDIERROR_NONE","features":[497]},{"name":"FDIERROR_NOT_A_CABINET","features":[497]},{"name":"FDIERROR_RESERVE_MISMATCH","features":[497]},{"name":"FDIERROR_TARGET_FILE","features":[497]},{"name":"FDIERROR_UNKNOWN_CABINET_VERSION","features":[497]},{"name":"FDIERROR_USER_ABORT","features":[497]},{"name":"FDIERROR_WRONG_CABINET","features":[497]},{"name":"FDIIsCabinet","features":[303,497]},{"name":"FDINOTIFICATION","features":[497]},{"name":"FDINOTIFICATIONTYPE","features":[497]},{"name":"FDISPILLFILE","features":[497]},{"name":"FDISPILLFILE","features":[497]},{"name":"FDITruncateCabinet","features":[303,497]},{"name":"INCLUDED_FCI","features":[497]},{"name":"INCLUDED_FDI","features":[497]},{"name":"INCLUDED_TYPES_FCI_FDI","features":[497]},{"name":"PFNALLOC","features":[497]},{"name":"PFNCLOSE","features":[497]},{"name":"PFNFCIALLOC","features":[497]},{"name":"PFNFCICLOSE","features":[497]},{"name":"PFNFCIDELETE","features":[497]},{"name":"PFNFCIFILEPLACED","features":[303,497]},{"name":"PFNFCIFREE","features":[497]},{"name":"PFNFCIGETNEXTCABINET","features":[303,497]},{"name":"PFNFCIGETOPENINFO","features":[497]},{"name":"PFNFCIGETTEMPFILE","features":[303,497]},{"name":"PFNFCIOPEN","features":[497]},{"name":"PFNFCIREAD","features":[497]},{"name":"PFNFCISEEK","features":[497]},{"name":"PFNFCISTATUS","features":[497]},{"name":"PFNFCIWRITE","features":[497]},{"name":"PFNFDIDECRYPT","features":[303,497]},{"name":"PFNFDINOTIFY","features":[497]},{"name":"PFNFREE","features":[497]},{"name":"PFNOPEN","features":[497]},{"name":"PFNREAD","features":[497]},{"name":"PFNSEEK","features":[497]},{"name":"PFNWRITE","features":[497]},{"name":"_A_EXEC","features":[497]},{"name":"_A_NAME_IS_UTF","features":[497]},{"name":"cpu80286","features":[497]},{"name":"cpu80386","features":[497]},{"name":"cpuUNKNOWN","features":[497]},{"name":"fdidtDECRYPT","features":[497]},{"name":"fdidtNEW_CABINET","features":[497]},{"name":"fdidtNEW_FOLDER","features":[497]},{"name":"fdintCABINET_INFO","features":[497]},{"name":"fdintCLOSE_FILE_INFO","features":[497]},{"name":"fdintCOPY_FILE","features":[497]},{"name":"fdintENUMERATE","features":[497]},{"name":"fdintNEXT_CABINET","features":[497]},{"name":"fdintPARTIAL_FILE","features":[497]},{"name":"statusCabinet","features":[497]},{"name":"statusFile","features":[497]},{"name":"statusFolder","features":[497]},{"name":"tcompBAD","features":[497]},{"name":"tcompLZX_WINDOW_HI","features":[497]},{"name":"tcompLZX_WINDOW_LO","features":[497]},{"name":"tcompMASK_LZX_WINDOW","features":[497]},{"name":"tcompMASK_QUANTUM_LEVEL","features":[497]},{"name":"tcompMASK_QUANTUM_MEM","features":[497]},{"name":"tcompMASK_RESERVED","features":[497]},{"name":"tcompMASK_TYPE","features":[497]},{"name":"tcompQUANTUM_LEVEL_HI","features":[497]},{"name":"tcompQUANTUM_LEVEL_LO","features":[497]},{"name":"tcompQUANTUM_MEM_HI","features":[497]},{"name":"tcompQUANTUM_MEM_LO","features":[497]},{"name":"tcompSHIFT_LZX_WINDOW","features":[497]},{"name":"tcompSHIFT_QUANTUM_LEVEL","features":[497]},{"name":"tcompSHIFT_QUANTUM_MEM","features":[497]},{"name":"tcompTYPE_LZX","features":[497]},{"name":"tcompTYPE_MSZIP","features":[497]},{"name":"tcompTYPE_NONE","features":[497]},{"name":"tcompTYPE_QUANTUM","features":[497]}],"503":[{"name":"CF_CALLBACK","features":[498,499]},{"name":"CF_CALLBACK_CANCEL_FLAGS","features":[498]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_ABORTED","features":[498]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_TIMEOUT","features":[498]},{"name":"CF_CALLBACK_CANCEL_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAGS","features":[498]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_DELETED","features":[498]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAGS","features":[498]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_BACKGROUND","features":[498]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_DEHYDRATED","features":[498]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_DEHYDRATE_FLAGS","features":[498]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_BACKGROUND","features":[498]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_DEHYDRATION_REASON","features":[498]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_NONE","features":[498]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_INACTIVITY","features":[498]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_LOW_SPACE","features":[498]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_OS_UPGRADE","features":[498]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_USER_MANUAL","features":[498]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAGS","features":[498]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_DELETE_FLAGS","features":[498]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_DIRECTORY","features":[498]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_UNDELETE","features":[498]},{"name":"CF_CALLBACK_DELETE_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_FETCH_DATA_FLAGS","features":[498]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_EXPLICIT_HYDRATION","features":[498]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_RECOVERY","features":[498]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAGS","features":[498]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_INFO","features":[498,499]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAGS","features":[498]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNKNOWN","features":[498]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNSUPPORTED","features":[498]},{"name":"CF_CALLBACK_PARAMETERS","features":[498]},{"name":"CF_CALLBACK_REGISTRATION","features":[498,499]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAGS","features":[498]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_RENAME_FLAGS","features":[498]},{"name":"CF_CALLBACK_RENAME_FLAG_IS_DIRECTORY","features":[498]},{"name":"CF_CALLBACK_RENAME_FLAG_NONE","features":[498]},{"name":"CF_CALLBACK_RENAME_FLAG_SOURCE_IN_SCOPE","features":[498]},{"name":"CF_CALLBACK_RENAME_FLAG_TARGET_IN_SCOPE","features":[498]},{"name":"CF_CALLBACK_TYPE","features":[498]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_DATA","features":[498]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_PLACEHOLDERS","features":[498]},{"name":"CF_CALLBACK_TYPE_FETCH_DATA","features":[498]},{"name":"CF_CALLBACK_TYPE_FETCH_PLACEHOLDERS","features":[498]},{"name":"CF_CALLBACK_TYPE_NONE","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE_COMPLETION","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE_COMPLETION","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_CLOSE_COMPLETION","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_OPEN_COMPLETION","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME","features":[498]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME_COMPLETION","features":[498]},{"name":"CF_CALLBACK_TYPE_VALIDATE_DATA","features":[498]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAGS","features":[498]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_EXPLICIT_HYDRATION","features":[498]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_NONE","features":[498]},{"name":"CF_CONNECTION_KEY","features":[498]},{"name":"CF_CONNECT_FLAGS","features":[498]},{"name":"CF_CONNECT_FLAG_BLOCK_SELF_IMPLICIT_HYDRATION","features":[498]},{"name":"CF_CONNECT_FLAG_NONE","features":[498]},{"name":"CF_CONNECT_FLAG_REQUIRE_FULL_FILE_PATH","features":[498]},{"name":"CF_CONNECT_FLAG_REQUIRE_PROCESS_INFO","features":[498]},{"name":"CF_CONVERT_FLAGS","features":[498]},{"name":"CF_CONVERT_FLAG_ALWAYS_FULL","features":[498]},{"name":"CF_CONVERT_FLAG_DEHYDRATE","features":[498]},{"name":"CF_CONVERT_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[498]},{"name":"CF_CONVERT_FLAG_FORCE_CONVERT_TO_CLOUD_FILE","features":[498]},{"name":"CF_CONVERT_FLAG_MARK_IN_SYNC","features":[498]},{"name":"CF_CONVERT_FLAG_NONE","features":[498]},{"name":"CF_CREATE_FLAGS","features":[498]},{"name":"CF_CREATE_FLAG_NONE","features":[498]},{"name":"CF_CREATE_FLAG_STOP_ON_ERROR","features":[498]},{"name":"CF_DEHYDRATE_FLAGS","features":[498]},{"name":"CF_DEHYDRATE_FLAG_BACKGROUND","features":[498]},{"name":"CF_DEHYDRATE_FLAG_NONE","features":[498]},{"name":"CF_FILE_RANGE","features":[498]},{"name":"CF_FS_METADATA","features":[498,322]},{"name":"CF_HARDLINK_POLICY","features":[498]},{"name":"CF_HARDLINK_POLICY_ALLOWED","features":[498]},{"name":"CF_HARDLINK_POLICY_NONE","features":[498]},{"name":"CF_HYDRATE_FLAGS","features":[498]},{"name":"CF_HYDRATE_FLAG_NONE","features":[498]},{"name":"CF_HYDRATION_POLICY","features":[498]},{"name":"CF_HYDRATION_POLICY_ALWAYS_FULL","features":[498]},{"name":"CF_HYDRATION_POLICY_FULL","features":[498]},{"name":"CF_HYDRATION_POLICY_MODIFIER","features":[498]},{"name":"CF_HYDRATION_POLICY_MODIFIER_ALLOW_FULL_RESTART_HYDRATION","features":[498]},{"name":"CF_HYDRATION_POLICY_MODIFIER_AUTO_DEHYDRATION_ALLOWED","features":[498]},{"name":"CF_HYDRATION_POLICY_MODIFIER_NONE","features":[498]},{"name":"CF_HYDRATION_POLICY_MODIFIER_STREAMING_ALLOWED","features":[498]},{"name":"CF_HYDRATION_POLICY_MODIFIER_VALIDATION_REQUIRED","features":[498]},{"name":"CF_HYDRATION_POLICY_PARTIAL","features":[498]},{"name":"CF_HYDRATION_POLICY_PRIMARY","features":[498]},{"name":"CF_HYDRATION_POLICY_PROGRESSIVE","features":[498]},{"name":"CF_INSYNC_POLICY","features":[498]},{"name":"CF_INSYNC_POLICY_NONE","features":[498]},{"name":"CF_INSYNC_POLICY_PRESERVE_INSYNC_FOR_SYNC_ENGINE","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_ALL","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_ALL","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_CREATION_TIME","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_HIDDEN_ATTRIBUTE","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_LAST_WRITE_TIME","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_READONLY_ATTRIBUTE","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_SYSTEM_ATTRIBUTE","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_ALL","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_CREATION_TIME","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_HIDDEN_ATTRIBUTE","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_LAST_WRITE_TIME","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_READONLY_ATTRIBUTE","features":[498]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_SYSTEM_ATTRIBUTE","features":[498]},{"name":"CF_IN_SYNC_STATE","features":[498]},{"name":"CF_IN_SYNC_STATE_IN_SYNC","features":[498]},{"name":"CF_IN_SYNC_STATE_NOT_IN_SYNC","features":[498]},{"name":"CF_MAX_PRIORITY_HINT","features":[498]},{"name":"CF_MAX_PROVIDER_NAME_LENGTH","features":[498]},{"name":"CF_MAX_PROVIDER_VERSION_LENGTH","features":[498]},{"name":"CF_OPEN_FILE_FLAGS","features":[498]},{"name":"CF_OPEN_FILE_FLAG_DELETE_ACCESS","features":[498]},{"name":"CF_OPEN_FILE_FLAG_EXCLUSIVE","features":[498]},{"name":"CF_OPEN_FILE_FLAG_FOREGROUND","features":[498]},{"name":"CF_OPEN_FILE_FLAG_NONE","features":[498]},{"name":"CF_OPEN_FILE_FLAG_WRITE_ACCESS","features":[498]},{"name":"CF_OPERATION_ACK_DATA_FLAGS","features":[498]},{"name":"CF_OPERATION_ACK_DATA_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAGS","features":[498]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_ACK_DELETE_FLAGS","features":[498]},{"name":"CF_OPERATION_ACK_DELETE_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_ACK_RENAME_FLAGS","features":[498]},{"name":"CF_OPERATION_ACK_RENAME_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_INFO","features":[498,499]},{"name":"CF_OPERATION_PARAMETERS","features":[303,498,322]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAGS","features":[498]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_MARK_IN_SYNC","features":[498]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAGS","features":[498]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAGS","features":[498]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAGS","features":[498]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[498]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_NONE","features":[498]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_STOP_ON_ERROR","features":[498]},{"name":"CF_OPERATION_TYPE","features":[498]},{"name":"CF_OPERATION_TYPE_ACK_DATA","features":[498]},{"name":"CF_OPERATION_TYPE_ACK_DEHYDRATE","features":[498]},{"name":"CF_OPERATION_TYPE_ACK_DELETE","features":[498]},{"name":"CF_OPERATION_TYPE_ACK_RENAME","features":[498]},{"name":"CF_OPERATION_TYPE_RESTART_HYDRATION","features":[498]},{"name":"CF_OPERATION_TYPE_RETRIEVE_DATA","features":[498]},{"name":"CF_OPERATION_TYPE_TRANSFER_DATA","features":[498]},{"name":"CF_OPERATION_TYPE_TRANSFER_PLACEHOLDERS","features":[498]},{"name":"CF_PIN_STATE","features":[498]},{"name":"CF_PIN_STATE_EXCLUDED","features":[498]},{"name":"CF_PIN_STATE_INHERIT","features":[498]},{"name":"CF_PIN_STATE_PINNED","features":[498]},{"name":"CF_PIN_STATE_UNPINNED","features":[498]},{"name":"CF_PIN_STATE_UNSPECIFIED","features":[498]},{"name":"CF_PLACEHOLDER_BASIC_INFO","features":[498]},{"name":"CF_PLACEHOLDER_CREATE_FLAGS","features":[498]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_ALWAYS_FULL","features":[498]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[498]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_MARK_IN_SYNC","features":[498]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_NONE","features":[498]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_SUPERSEDE","features":[498]},{"name":"CF_PLACEHOLDER_CREATE_INFO","features":[498,322]},{"name":"CF_PLACEHOLDER_INFO_BASIC","features":[498]},{"name":"CF_PLACEHOLDER_INFO_CLASS","features":[498]},{"name":"CF_PLACEHOLDER_INFO_STANDARD","features":[498]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY","features":[498]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CONVERT_TO_UNRESTRICTED","features":[498]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CREATE_UNRESTRICTED","features":[498]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_DEFAULT","features":[498]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_UPDATE_UNRESTRICTED","features":[498]},{"name":"CF_PLACEHOLDER_MAX_FILE_IDENTITY_LENGTH","features":[498]},{"name":"CF_PLACEHOLDER_RANGE_INFO_CLASS","features":[498]},{"name":"CF_PLACEHOLDER_RANGE_INFO_MODIFIED","features":[498]},{"name":"CF_PLACEHOLDER_RANGE_INFO_ONDISK","features":[498]},{"name":"CF_PLACEHOLDER_RANGE_INFO_VALIDATED","features":[498]},{"name":"CF_PLACEHOLDER_STANDARD_INFO","features":[498]},{"name":"CF_PLACEHOLDER_STATE","features":[498]},{"name":"CF_PLACEHOLDER_STATE_ESSENTIAL_PROP_PRESENT","features":[498]},{"name":"CF_PLACEHOLDER_STATE_INVALID","features":[498]},{"name":"CF_PLACEHOLDER_STATE_IN_SYNC","features":[498]},{"name":"CF_PLACEHOLDER_STATE_NO_STATES","features":[498]},{"name":"CF_PLACEHOLDER_STATE_PARTIAL","features":[498]},{"name":"CF_PLACEHOLDER_STATE_PARTIALLY_ON_DISK","features":[498]},{"name":"CF_PLACEHOLDER_STATE_PLACEHOLDER","features":[498]},{"name":"CF_PLACEHOLDER_STATE_SYNC_ROOT","features":[498]},{"name":"CF_PLATFORM_INFO","features":[498]},{"name":"CF_POPULATION_POLICY","features":[498]},{"name":"CF_POPULATION_POLICY_ALWAYS_FULL","features":[498]},{"name":"CF_POPULATION_POLICY_FULL","features":[498]},{"name":"CF_POPULATION_POLICY_MODIFIER","features":[498]},{"name":"CF_POPULATION_POLICY_MODIFIER_NONE","features":[498]},{"name":"CF_POPULATION_POLICY_PARTIAL","features":[498]},{"name":"CF_POPULATION_POLICY_PRIMARY","features":[498]},{"name":"CF_PROCESS_INFO","features":[498]},{"name":"CF_PROVIDER_STATUS_CLEAR_FLAGS","features":[498]},{"name":"CF_PROVIDER_STATUS_CONNECTIVITY_LOST","features":[498]},{"name":"CF_PROVIDER_STATUS_DISCONNECTED","features":[498]},{"name":"CF_PROVIDER_STATUS_ERROR","features":[498]},{"name":"CF_PROVIDER_STATUS_IDLE","features":[498]},{"name":"CF_PROVIDER_STATUS_POPULATE_CONTENT","features":[498]},{"name":"CF_PROVIDER_STATUS_POPULATE_METADATA","features":[498]},{"name":"CF_PROVIDER_STATUS_POPULATE_NAMESPACE","features":[498]},{"name":"CF_PROVIDER_STATUS_SYNC_FULL","features":[498]},{"name":"CF_PROVIDER_STATUS_SYNC_INCREMENTAL","features":[498]},{"name":"CF_PROVIDER_STATUS_TERMINATED","features":[498]},{"name":"CF_REGISTER_FLAGS","features":[498]},{"name":"CF_REGISTER_FLAG_DISABLE_ON_DEMAND_POPULATION_ON_ROOT","features":[498]},{"name":"CF_REGISTER_FLAG_MARK_IN_SYNC_ON_ROOT","features":[498]},{"name":"CF_REGISTER_FLAG_NONE","features":[498]},{"name":"CF_REGISTER_FLAG_UPDATE","features":[498]},{"name":"CF_REQUEST_KEY_DEFAULT","features":[498]},{"name":"CF_REVERT_FLAGS","features":[498]},{"name":"CF_REVERT_FLAG_NONE","features":[498]},{"name":"CF_SET_IN_SYNC_FLAGS","features":[498]},{"name":"CF_SET_IN_SYNC_FLAG_NONE","features":[498]},{"name":"CF_SET_PIN_FLAGS","features":[498]},{"name":"CF_SET_PIN_FLAG_NONE","features":[498]},{"name":"CF_SET_PIN_FLAG_RECURSE","features":[498]},{"name":"CF_SET_PIN_FLAG_RECURSE_ONLY","features":[498]},{"name":"CF_SET_PIN_FLAG_RECURSE_STOP_ON_ERROR","features":[498]},{"name":"CF_SYNC_POLICIES","features":[498]},{"name":"CF_SYNC_PROVIDER_STATUS","features":[498]},{"name":"CF_SYNC_REGISTRATION","features":[498]},{"name":"CF_SYNC_ROOT_BASIC_INFO","features":[498]},{"name":"CF_SYNC_ROOT_INFO_BASIC","features":[498]},{"name":"CF_SYNC_ROOT_INFO_CLASS","features":[498]},{"name":"CF_SYNC_ROOT_INFO_PROVIDER","features":[498]},{"name":"CF_SYNC_ROOT_INFO_STANDARD","features":[498]},{"name":"CF_SYNC_ROOT_PROVIDER_INFO","features":[498]},{"name":"CF_SYNC_ROOT_STANDARD_INFO","features":[498]},{"name":"CF_SYNC_STATUS","features":[498]},{"name":"CF_UPDATE_FLAGS","features":[498]},{"name":"CF_UPDATE_FLAG_ALLOW_PARTIAL","features":[498]},{"name":"CF_UPDATE_FLAG_ALWAYS_FULL","features":[498]},{"name":"CF_UPDATE_FLAG_CLEAR_IN_SYNC","features":[498]},{"name":"CF_UPDATE_FLAG_DEHYDRATE","features":[498]},{"name":"CF_UPDATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[498]},{"name":"CF_UPDATE_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[498]},{"name":"CF_UPDATE_FLAG_MARK_IN_SYNC","features":[498]},{"name":"CF_UPDATE_FLAG_NONE","features":[498]},{"name":"CF_UPDATE_FLAG_PASSTHROUGH_FS_METADATA","features":[498]},{"name":"CF_UPDATE_FLAG_REMOVE_FILE_IDENTITY","features":[498]},{"name":"CF_UPDATE_FLAG_REMOVE_PROPERTY","features":[498]},{"name":"CF_UPDATE_FLAG_VERIFY_IN_SYNC","features":[498]},{"name":"CfCloseHandle","features":[303,498]},{"name":"CfConnectSyncRoot","features":[498,499]},{"name":"CfConvertToPlaceholder","features":[303,498,308]},{"name":"CfCreatePlaceholders","features":[498,322]},{"name":"CfDehydratePlaceholder","features":[303,498,308]},{"name":"CfDisconnectSyncRoot","features":[498]},{"name":"CfExecute","features":[303,498,322,499]},{"name":"CfGetCorrelationVector","features":[303,498,499]},{"name":"CfGetPlaceholderInfo","features":[303,498]},{"name":"CfGetPlaceholderRangeInfo","features":[303,498]},{"name":"CfGetPlaceholderRangeInfoForHydration","features":[498]},{"name":"CfGetPlaceholderStateFromAttributeTag","features":[498]},{"name":"CfGetPlaceholderStateFromFileInfo","features":[498,322]},{"name":"CfGetPlaceholderStateFromFindData","features":[303,498,322]},{"name":"CfGetPlatformInfo","features":[498]},{"name":"CfGetSyncRootInfoByHandle","features":[303,498]},{"name":"CfGetSyncRootInfoByPath","features":[498]},{"name":"CfGetTransferKey","features":[303,498]},{"name":"CfGetWin32HandleFromProtectedHandle","features":[303,498]},{"name":"CfHydratePlaceholder","features":[303,498,308]},{"name":"CfOpenFileWithOplock","features":[303,498]},{"name":"CfQuerySyncProviderStatus","features":[498]},{"name":"CfReferenceProtectedHandle","features":[303,498]},{"name":"CfRegisterSyncRoot","features":[498]},{"name":"CfReleaseProtectedHandle","features":[303,498]},{"name":"CfReleaseTransferKey","features":[303,498]},{"name":"CfReportProviderProgress","features":[498]},{"name":"CfReportProviderProgress2","features":[498]},{"name":"CfReportSyncStatus","features":[498]},{"name":"CfRevertPlaceholder","features":[303,498,308]},{"name":"CfSetCorrelationVector","features":[303,498,499]},{"name":"CfSetInSyncState","features":[303,498]},{"name":"CfSetPinState","features":[303,498,308]},{"name":"CfUnregisterSyncRoot","features":[498]},{"name":"CfUpdatePlaceholder","features":[303,498,322,308]},{"name":"CfUpdateSyncProviderStatus","features":[498]}],"504":[{"name":"COMPRESSOR_HANDLE","features":[500]},{"name":"COMPRESS_ALGORITHM","features":[500]},{"name":"COMPRESS_ALGORITHM_INVALID","features":[500]},{"name":"COMPRESS_ALGORITHM_LZMS","features":[500]},{"name":"COMPRESS_ALGORITHM_MAX","features":[500]},{"name":"COMPRESS_ALGORITHM_MSZIP","features":[500]},{"name":"COMPRESS_ALGORITHM_NULL","features":[500]},{"name":"COMPRESS_ALGORITHM_XPRESS","features":[500]},{"name":"COMPRESS_ALGORITHM_XPRESS_HUFF","features":[500]},{"name":"COMPRESS_ALLOCATION_ROUTINES","features":[500]},{"name":"COMPRESS_INFORMATION_CLASS","features":[500]},{"name":"COMPRESS_INFORMATION_CLASS_BLOCK_SIZE","features":[500]},{"name":"COMPRESS_INFORMATION_CLASS_INVALID","features":[500]},{"name":"COMPRESS_INFORMATION_CLASS_LEVEL","features":[500]},{"name":"COMPRESS_RAW","features":[500]},{"name":"CloseCompressor","features":[303,500]},{"name":"CloseDecompressor","features":[303,500]},{"name":"Compress","features":[303,500]},{"name":"CreateCompressor","features":[303,500]},{"name":"CreateDecompressor","features":[303,500]},{"name":"Decompress","features":[303,500]},{"name":"PFN_COMPRESS_ALLOCATE","features":[500]},{"name":"PFN_COMPRESS_FREE","features":[500]},{"name":"QueryCompressorInformation","features":[303,500]},{"name":"QueryDecompressorInformation","features":[303,500]},{"name":"ResetCompressor","features":[303,500]},{"name":"ResetDecompressor","features":[303,500]},{"name":"SetCompressorInformation","features":[303,500]},{"name":"SetDecompressorInformation","features":[303,500]}],"505":[{"name":"DDP_FILE_EXTENT","features":[501]},{"name":"DEDUP_BACKUP_SUPPORT_PARAM_TYPE","features":[501]},{"name":"DEDUP_CHUNKLIB_MAX_CHUNKS_ENUM","features":[501]},{"name":"DEDUP_CHUNK_INFO_HASH32","features":[501]},{"name":"DEDUP_CONTAINER_EXTENT","features":[501]},{"name":"DEDUP_PT_AvgChunkSizeBytes","features":[501]},{"name":"DEDUP_PT_DisableStrongHashComputation","features":[501]},{"name":"DEDUP_PT_InvariantChunking","features":[501]},{"name":"DEDUP_PT_MaxChunkSizeBytes","features":[501]},{"name":"DEDUP_PT_MinChunkSizeBytes","features":[501]},{"name":"DEDUP_RECONSTRUCT_OPTIMIZED","features":[501]},{"name":"DEDUP_RECONSTRUCT_UNOPTIMIZED","features":[501]},{"name":"DEDUP_SET_PARAM_TYPE","features":[501]},{"name":"DedupBackupSupport","features":[501]},{"name":"DedupChunk","features":[501]},{"name":"DedupChunkFlags","features":[501]},{"name":"DedupChunkFlags_Compressed","features":[501]},{"name":"DedupChunkFlags_None","features":[501]},{"name":"DedupChunkingAlgorithm","features":[501]},{"name":"DedupChunkingAlgorithm_Unknonwn","features":[501]},{"name":"DedupChunkingAlgorithm_V1","features":[501]},{"name":"DedupCompressionAlgorithm","features":[501]},{"name":"DedupCompressionAlgorithm_Unknonwn","features":[501]},{"name":"DedupCompressionAlgorithm_Xpress","features":[501]},{"name":"DedupDataPort","features":[501]},{"name":"DedupDataPortManagerOption","features":[501]},{"name":"DedupDataPortManagerOption_AutoStart","features":[501]},{"name":"DedupDataPortManagerOption_None","features":[501]},{"name":"DedupDataPortManagerOption_SkipReconciliation","features":[501]},{"name":"DedupDataPortRequestStatus","features":[501]},{"name":"DedupDataPortRequestStatus_Complete","features":[501]},{"name":"DedupDataPortRequestStatus_Failed","features":[501]},{"name":"DedupDataPortRequestStatus_Partial","features":[501]},{"name":"DedupDataPortRequestStatus_Processing","features":[501]},{"name":"DedupDataPortRequestStatus_Queued","features":[501]},{"name":"DedupDataPortRequestStatus_Unknown","features":[501]},{"name":"DedupDataPortVolumeStatus","features":[501]},{"name":"DedupDataPortVolumeStatus_Initializing","features":[501]},{"name":"DedupDataPortVolumeStatus_Maintenance","features":[501]},{"name":"DedupDataPortVolumeStatus_NotAvailable","features":[501]},{"name":"DedupDataPortVolumeStatus_NotEnabled","features":[501]},{"name":"DedupDataPortVolumeStatus_Ready","features":[501]},{"name":"DedupDataPortVolumeStatus_Shutdown","features":[501]},{"name":"DedupDataPortVolumeStatus_Unknown","features":[501]},{"name":"DedupHash","features":[501]},{"name":"DedupHashingAlgorithm","features":[501]},{"name":"DedupHashingAlgorithm_Unknonwn","features":[501]},{"name":"DedupHashingAlgorithm_V1","features":[501]},{"name":"DedupStream","features":[501]},{"name":"DedupStreamEntry","features":[501]},{"name":"IDedupBackupSupport","features":[501]},{"name":"IDedupChunkLibrary","features":[501]},{"name":"IDedupDataPort","features":[501]},{"name":"IDedupDataPortManager","features":[501]},{"name":"IDedupIterateChunksHash32","features":[501]},{"name":"IDedupReadFileCallback","features":[501]}],"506":[{"name":"DFS_ADD_VOLUME","features":[502]},{"name":"DFS_FORCE_REMOVE","features":[502]},{"name":"DFS_GET_PKT_ENTRY_STATE_ARG","features":[502]},{"name":"DFS_INFO_1","features":[502]},{"name":"DFS_INFO_100","features":[502]},{"name":"DFS_INFO_101","features":[502]},{"name":"DFS_INFO_102","features":[502]},{"name":"DFS_INFO_103","features":[502]},{"name":"DFS_INFO_104","features":[502]},{"name":"DFS_INFO_105","features":[502]},{"name":"DFS_INFO_106","features":[502]},{"name":"DFS_INFO_107","features":[306,502]},{"name":"DFS_INFO_150","features":[306,502]},{"name":"DFS_INFO_1_32","features":[502]},{"name":"DFS_INFO_2","features":[502]},{"name":"DFS_INFO_200","features":[502]},{"name":"DFS_INFO_2_32","features":[502]},{"name":"DFS_INFO_3","features":[502]},{"name":"DFS_INFO_300","features":[502]},{"name":"DFS_INFO_3_32","features":[502]},{"name":"DFS_INFO_4","features":[502]},{"name":"DFS_INFO_4_32","features":[502]},{"name":"DFS_INFO_5","features":[502]},{"name":"DFS_INFO_50","features":[502]},{"name":"DFS_INFO_6","features":[502]},{"name":"DFS_INFO_7","features":[502]},{"name":"DFS_INFO_8","features":[306,502]},{"name":"DFS_INFO_9","features":[306,502]},{"name":"DFS_MOVE_FLAG_REPLACE_IF_EXISTS","features":[502]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN","features":[502]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_COMBINED","features":[502]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_DOMAIN","features":[502]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_SERVER","features":[502]},{"name":"DFS_PROPERTY_FLAG_ABDE","features":[502]},{"name":"DFS_PROPERTY_FLAG_CLUSTER_ENABLED","features":[502]},{"name":"DFS_PROPERTY_FLAG_INSITE_REFERRALS","features":[502]},{"name":"DFS_PROPERTY_FLAG_ROOT_SCALABILITY","features":[502]},{"name":"DFS_PROPERTY_FLAG_SITE_COSTING","features":[502]},{"name":"DFS_PROPERTY_FLAG_TARGET_FAILBACK","features":[502]},{"name":"DFS_RESTORE_VOLUME","features":[502]},{"name":"DFS_SITELIST_INFO","features":[502]},{"name":"DFS_SITENAME_INFO","features":[502]},{"name":"DFS_SITE_PRIMARY","features":[502]},{"name":"DFS_STORAGE_FLAVOR_UNUSED2","features":[502]},{"name":"DFS_STORAGE_INFO","features":[502]},{"name":"DFS_STORAGE_INFO_0_32","features":[502]},{"name":"DFS_STORAGE_INFO_1","features":[502]},{"name":"DFS_STORAGE_STATES","features":[502]},{"name":"DFS_STORAGE_STATE_ACTIVE","features":[502]},{"name":"DFS_STORAGE_STATE_OFFLINE","features":[502]},{"name":"DFS_STORAGE_STATE_ONLINE","features":[502]},{"name":"DFS_SUPPORTED_NAMESPACE_VERSION_INFO","features":[502]},{"name":"DFS_TARGET_PRIORITY","features":[502]},{"name":"DFS_TARGET_PRIORITY_CLASS","features":[502]},{"name":"DFS_VOLUME_FLAVORS","features":[502]},{"name":"DFS_VOLUME_FLAVOR_AD_BLOB","features":[502]},{"name":"DFS_VOLUME_FLAVOR_STANDALONE","features":[502]},{"name":"DFS_VOLUME_FLAVOR_UNUSED1","features":[502]},{"name":"DFS_VOLUME_STATES","features":[502]},{"name":"DFS_VOLUME_STATE_FORCE_SYNC","features":[502]},{"name":"DFS_VOLUME_STATE_INCONSISTENT","features":[502]},{"name":"DFS_VOLUME_STATE_OFFLINE","features":[502]},{"name":"DFS_VOLUME_STATE_OK","features":[502]},{"name":"DFS_VOLUME_STATE_ONLINE","features":[502]},{"name":"DFS_VOLUME_STATE_RESYNCHRONIZE","features":[502]},{"name":"DFS_VOLUME_STATE_STANDBY","features":[502]},{"name":"DfsGlobalHighPriorityClass","features":[502]},{"name":"DfsGlobalLowPriorityClass","features":[502]},{"name":"DfsInvalidPriorityClass","features":[502]},{"name":"DfsSiteCostHighPriorityClass","features":[502]},{"name":"DfsSiteCostLowPriorityClass","features":[502]},{"name":"DfsSiteCostNormalPriorityClass","features":[502]},{"name":"FSCTL_DFS_BASE","features":[502]},{"name":"FSCTL_DFS_GET_PKT_ENTRY_STATE","features":[502]},{"name":"NET_DFS_SETDC_FLAGS","features":[502]},{"name":"NET_DFS_SETDC_INITPKT","features":[502]},{"name":"NET_DFS_SETDC_TIMEOUT","features":[502]},{"name":"NetDfsAdd","features":[502]},{"name":"NetDfsAddFtRoot","features":[502]},{"name":"NetDfsAddRootTarget","features":[502]},{"name":"NetDfsAddStdRoot","features":[502]},{"name":"NetDfsEnum","features":[502]},{"name":"NetDfsGetClientInfo","features":[502]},{"name":"NetDfsGetFtContainerSecurity","features":[306,502]},{"name":"NetDfsGetInfo","features":[502]},{"name":"NetDfsGetSecurity","features":[306,502]},{"name":"NetDfsGetStdContainerSecurity","features":[306,502]},{"name":"NetDfsGetSupportedNamespaceVersion","features":[502]},{"name":"NetDfsMove","features":[502]},{"name":"NetDfsRemove","features":[502]},{"name":"NetDfsRemoveFtRoot","features":[502]},{"name":"NetDfsRemoveFtRootForced","features":[502]},{"name":"NetDfsRemoveRootTarget","features":[502]},{"name":"NetDfsRemoveStdRoot","features":[502]},{"name":"NetDfsSetClientInfo","features":[502]},{"name":"NetDfsSetFtContainerSecurity","features":[306,502]},{"name":"NetDfsSetInfo","features":[502]},{"name":"NetDfsSetSecurity","features":[306,502]},{"name":"NetDfsSetStdContainerSecurity","features":[306,502]}],"507":[{"name":"ACT_AUTHORIZATION_STATE","features":[503]},{"name":"ACT_AUTHORIZATION_STATE_VALUE","features":[503]},{"name":"ACT_AUTHORIZED","features":[503]},{"name":"ACT_AUTHORIZE_ON_RESUME","features":[503]},{"name":"ACT_AUTHORIZE_ON_SESSION_UNLOCK","features":[503]},{"name":"ACT_UNAUTHORIZED","features":[503]},{"name":"ACT_UNAUTHORIZE_ON_SESSION_LOCK","features":[503]},{"name":"ACT_UNAUTHORIZE_ON_SUSPEND","features":[503]},{"name":"APPUSERMODEL_STARTPINOPTION_DEFAULT","features":[503]},{"name":"APPUSERMODEL_STARTPINOPTION_NOPINONINSTALL","features":[503]},{"name":"APPUSERMODEL_STARTPINOPTION_USERPINNED","features":[503]},{"name":"AUDIO_CHANNELCOUNT_MONO","features":[503]},{"name":"AUDIO_CHANNELCOUNT_STEREO","features":[503]},{"name":"BLUETOOTH_ADDRESS_TYPE_PUBLIC","features":[503]},{"name":"BLUETOOTH_ADDRESS_TYPE_RANDOM","features":[503]},{"name":"BLUETOOTH_CACHED_MODE_UNCACHED","features":[503]},{"name":"BLUETOOTH_CACHE_MODE_CACHED","features":[503]},{"name":"CERT_CAPABILITY_ASYMMETRIC_KEY_CRYPTOGRAPHY","features":[503]},{"name":"CERT_CAPABILITY_CERTIFICATE_SUPPORT","features":[503]},{"name":"CERT_CAPABILITY_HASH_ALG","features":[503]},{"name":"CERT_CAPABILITY_OPTIONAL_FEATURES","features":[503]},{"name":"CERT_CAPABILITY_SIGNATURE_ALG","features":[503]},{"name":"CERT_MAX_CAPABILITY","features":[503]},{"name":"CERT_RSASSA_PSS_SHA1_OID","features":[503]},{"name":"CERT_RSASSA_PSS_SHA256_OID","features":[503]},{"name":"CERT_RSASSA_PSS_SHA384_OID","features":[503]},{"name":"CERT_RSASSA_PSS_SHA512_OID","features":[503]},{"name":"CERT_RSA_1024_OID","features":[503]},{"name":"CERT_RSA_2048_OID","features":[503]},{"name":"CERT_RSA_3072_OID","features":[503]},{"name":"CERT_TYPE_ASCh","features":[503]},{"name":"CERT_TYPE_ASCm","features":[503]},{"name":"CERT_TYPE_EMPTY","features":[503]},{"name":"CERT_TYPE_HCh","features":[503]},{"name":"CERT_TYPE_PCp","features":[503]},{"name":"CERT_TYPE_SIGNER","features":[503]},{"name":"CERT_VALIDATION_POLICY_BASIC","features":[503]},{"name":"CERT_VALIDATION_POLICY_EXTENDED","features":[503]},{"name":"CERT_VALIDATION_POLICY_NONE","features":[503]},{"name":"CERT_VALIDATION_POLICY_RESERVED","features":[503]},{"name":"CREATOROPENWITHUIOPTION_HIDDEN","features":[503]},{"name":"CREATOROPENWITHUIOPTION_VISIBLE","features":[503]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_AUTHENTICATED","features":[503]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_AUTHENTICATION_DENIED","features":[503]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_DEVICE_ERROR","features":[503]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_NOT_AUTHENTICATED","features":[503]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_NO_AUTHENTICATION_REQUIRED","features":[503]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_UNKNOWN","features":[503]},{"name":"ENHANCED_STORAGE_CAPABILITY_ASYMMETRIC_KEY_CRYPTOGRAPHY","features":[503,374]},{"name":"ENHANCED_STORAGE_CAPABILITY_CERTIFICATE_EXTENSION_PARSING","features":[503,374]},{"name":"ENHANCED_STORAGE_CAPABILITY_HASH_ALGS","features":[503,374]},{"name":"ENHANCED_STORAGE_CAPABILITY_RENDER_USER_DATA_UNUSABLE","features":[503,374]},{"name":"ENHANCED_STORAGE_CAPABILITY_SIGNING_ALGS","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_ADMIN_CERTIFICATE_AUTHENTICATION","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_CREATE_CERTIFICATE_REQUEST","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_DEVICE_CERTIFICATE_AUTHENTICATION","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_ACT_FRIENDLY_NAME","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_CERTIFICATE","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_CERTIFICATE_COUNT","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_SILO_CAPABILITIES","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_SILO_CAPABILITY","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_SILO_GUID","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_HOST_CERTIFICATE_AUTHENTICATION","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_INITIALIZE_TO_MANUFACTURER_STATE","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_SET_CERTIFICATE","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_UNAUTHENTICATION","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_AUTHORIZE_ACT_ACCESS","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_CHANGE_PASSWORD","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_CONFIG_ADMINISTRATOR","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_CREATE_USER","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_DELETE_USER","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_INITIALIZE_USER_PASSWORD","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_QUERY_INFORMATION","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_START_INITIALIZE_TO_MANUFACTURER_STATE","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_UNAUTHORIZE_ACT_ACCESS","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_SILO_ENUMERATE_SILOS","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_SILO_GET_AUTHENTICATION_STATE","features":[503,374]},{"name":"ENHANCED_STORAGE_COMMAND_SILO_IS_AUTHENTICATION_SILO","features":[503,374]},{"name":"ENHANCED_STORAGE_PASSWORD_SILO_INFORMATION","features":[303,503]},{"name":"ENHANCED_STORAGE_PROPERTY_ADMIN_HINT","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_AUTHENTICATION_STATE","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_ACT_FRIENDLY_NAME","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_CAPABILITY_TYPE","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_INDEX","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_LENGTH","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_REQUEST","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_SILO_CAPABILITIES","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_SILO_CAPABILITY","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_SILO_GUID","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_TYPE","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_IS_AUTHENTICATION_SILO","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_MAX_AUTH_FAILURES","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_MAX_CERTIFICATE_COUNT","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_NEW_PASSWORD","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_NEW_PASSWORD_INDICATOR","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_NEXT_CERTIFICATE_INDEX","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_NEXT_CERTIFICATE_OF_TYPE_INDEX","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_OLD_PASSWORD","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_PASSWORD","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_PASSWORD_INDICATOR","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_PASSWORD_SILO_INFO","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_QUERY_SILO_RESULTS","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_QUERY_SILO_TYPE","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_SECURITY_IDENTIFIER","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_SIGNER_CERTIFICATE_INDEX","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_SILO_FRIENDLYNAME_SPECIFIED","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_SILO_NAME","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_STORED_CERTIFICATE_COUNT","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_TEMPORARY_UNAUTHENTICATION","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_USER_HINT","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_USER_NAME","features":[503,374]},{"name":"ENHANCED_STORAGE_PROPERTY_VALIDATION_POLICY","features":[503,374]},{"name":"ES_AUTHN_ERROR_END","features":[503]},{"name":"ES_AUTHN_ERROR_START","features":[503]},{"name":"ES_E_AUTHORIZED_UNEXPECTED","features":[503]},{"name":"ES_E_BAD_SEQUENCE","features":[503]},{"name":"ES_E_CHALLENGE_MISMATCH","features":[503]},{"name":"ES_E_CHALLENGE_SIZE_MISMATCH","features":[503]},{"name":"ES_E_DEVICE_DIGEST_MISSING","features":[503]},{"name":"ES_E_FRIENDLY_NAME_TOO_LONG","features":[503]},{"name":"ES_E_GROUP_POLICY_FORBIDDEN_OPERATION","features":[503]},{"name":"ES_E_GROUP_POLICY_FORBIDDEN_USE","features":[503]},{"name":"ES_E_INCOMPLETE_COMMAND","features":[503]},{"name":"ES_E_INCONSISTENT_PARAM_LENGTH","features":[503]},{"name":"ES_E_INVALID_CAPABILITY","features":[503]},{"name":"ES_E_INVALID_FIELD_IDENTIFIER","features":[503]},{"name":"ES_E_INVALID_PARAM_COMBINATION","features":[503]},{"name":"ES_E_INVALID_PARAM_LENGTH","features":[503]},{"name":"ES_E_INVALID_RESPONSE","features":[503]},{"name":"ES_E_INVALID_SILO","features":[503]},{"name":"ES_E_NOT_AUTHORIZED_UNEXPECTED","features":[503]},{"name":"ES_E_NO_AUTHENTICATION_REQUIRED","features":[503]},{"name":"ES_E_NO_PROBE","features":[503]},{"name":"ES_E_OTHER_SECURITY_PROTOCOL_ACTIVE","features":[503]},{"name":"ES_E_PASSWORD_HINT_TOO_LONG","features":[503]},{"name":"ES_E_PASSWORD_TOO_LONG","features":[503]},{"name":"ES_E_PROVISIONED_UNEXPECTED","features":[503]},{"name":"ES_E_SILO_NAME_TOO_LONG","features":[503]},{"name":"ES_E_UNKNOWN_DIGEST_ALGORITHM","features":[503]},{"name":"ES_E_UNPROVISIONED_HARDWARE","features":[503]},{"name":"ES_E_UNSUPPORTED_HARDWARE","features":[503]},{"name":"ES_GENERAL_ERROR_END","features":[503]},{"name":"ES_GENERAL_ERROR_START","features":[503]},{"name":"ES_PW_SILO_ERROR_END","features":[503]},{"name":"ES_PW_SILO_ERROR_START","features":[503]},{"name":"ES_RESERVED_COM_ERROR_END","features":[503]},{"name":"ES_RESERVED_COM_ERROR_START","features":[503]},{"name":"ES_RESERVED_SILO_ERROR_END","features":[503]},{"name":"ES_RESERVED_SILO_ERROR_START","features":[503]},{"name":"ES_RESERVED_SILO_SPECIFIC_ERROR_END","features":[503]},{"name":"ES_RESERVED_SILO_SPECIFIC_ERROR_START","features":[503]},{"name":"ES_VENDOR_ERROR_END","features":[503]},{"name":"ES_VENDOR_ERROR_START","features":[503]},{"name":"EnhancedStorageACT","features":[503]},{"name":"EnhancedStorageSilo","features":[503]},{"name":"EnhancedStorageSiloAction","features":[503]},{"name":"EnumEnhancedStorageACT","features":[503]},{"name":"FACILITY_ENHANCED_STORAGE","features":[503]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_COMPLETE","features":[503]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_COMPLETE_PINNED","features":[503]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_EXCLUDED","features":[503]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_FOLDER_EMPTY","features":[503]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_NOTAVAILABLEOFFLINE","features":[503]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_PARTIAL","features":[503]},{"name":"FLAGSTATUS_COMPLETED","features":[503]},{"name":"FLAGSTATUS_FOLLOWUP","features":[503]},{"name":"FLAGSTATUS_NOTFLAGGED","features":[503]},{"name":"GUID_DEVINTERFACE_ENHANCED_STORAGE_SILO","features":[503]},{"name":"HOMEGROUPING_FREQUENT","features":[503]},{"name":"HOMEGROUPING_PINNED","features":[503]},{"name":"HOMEGROUPING_RECENT","features":[503]},{"name":"HOMEGROUPING_RECOMMENDATIONS","features":[503]},{"name":"HOMEGROUPING_UNSPECIFIED","features":[503]},{"name":"IEnhancedStorageACT","features":[503]},{"name":"IEnhancedStorageACT2","features":[503]},{"name":"IEnhancedStorageACT3","features":[503]},{"name":"IEnhancedStorageSilo","features":[503]},{"name":"IEnhancedStorageSiloAction","features":[503]},{"name":"IEnumEnhancedStorageACT","features":[503]},{"name":"IMPORTANCE_HIGH_MAX","features":[503]},{"name":"IMPORTANCE_HIGH_MIN","features":[503]},{"name":"IMPORTANCE_HIGH_SET","features":[503]},{"name":"IMPORTANCE_LOW_MAX","features":[503]},{"name":"IMPORTANCE_LOW_MIN","features":[503]},{"name":"IMPORTANCE_LOW_SET","features":[503]},{"name":"IMPORTANCE_NORMAL_MAX","features":[503]},{"name":"IMPORTANCE_NORMAL_MIN","features":[503]},{"name":"IMPORTANCE_NORMAL_SET","features":[503]},{"name":"ISDEFAULTSAVE_BOTH","features":[503]},{"name":"ISDEFAULTSAVE_NONE","features":[503]},{"name":"ISDEFAULTSAVE_NONOWNER","features":[503]},{"name":"ISDEFAULTSAVE_OWNER","features":[503]},{"name":"KIND_CALENDAR","features":[503]},{"name":"KIND_COMMUNICATION","features":[503]},{"name":"KIND_CONTACT","features":[503]},{"name":"KIND_DOCUMENT","features":[503]},{"name":"KIND_EMAIL","features":[503]},{"name":"KIND_FEED","features":[503]},{"name":"KIND_FOLDER","features":[503]},{"name":"KIND_GAME","features":[503]},{"name":"KIND_INSTANTMESSAGE","features":[503]},{"name":"KIND_JOURNAL","features":[503]},{"name":"KIND_LINK","features":[503]},{"name":"KIND_MOVIE","features":[503]},{"name":"KIND_MUSIC","features":[503]},{"name":"KIND_NOTE","features":[503]},{"name":"KIND_PICTURE","features":[503]},{"name":"KIND_PLAYLIST","features":[503]},{"name":"KIND_PROGRAM","features":[503]},{"name":"KIND_RECORDEDTV","features":[503]},{"name":"KIND_SEARCHFOLDER","features":[503]},{"name":"KIND_TASK","features":[503]},{"name":"KIND_UNKNOWN","features":[503]},{"name":"KIND_VIDEO","features":[503]},{"name":"KIND_WEBHISTORY","features":[503]},{"name":"LAYOUTPATTERN_CVMFB_ALPHA","features":[503]},{"name":"LAYOUTPATTERN_CVMFB_BETA","features":[503]},{"name":"LAYOUTPATTERN_CVMFB_DELTA","features":[503]},{"name":"LAYOUTPATTERN_CVMFB_GAMMA","features":[503]},{"name":"LAYOUTPATTERN_CVMFS_ALPHA","features":[503]},{"name":"LAYOUTPATTERN_CVMFS_BETA","features":[503]},{"name":"LAYOUTPATTERN_CVMFS_DELTA","features":[503]},{"name":"LAYOUTPATTERN_CVMFS_GAMMA","features":[503]},{"name":"LINK_STATUS_BROKEN","features":[503]},{"name":"LINK_STATUS_RESOLVED","features":[503]},{"name":"OFFLINEAVAILABILITY_ALWAYS_AVAILABLE","features":[503]},{"name":"OFFLINEAVAILABILITY_AVAILABLE","features":[503]},{"name":"OFFLINEAVAILABILITY_NOT_AVAILABLE","features":[503]},{"name":"OFFLINESTATUS_OFFLINE","features":[503]},{"name":"OFFLINESTATUS_OFFLINE_ERROR","features":[503]},{"name":"OFFLINESTATUS_OFFLINE_FORCED","features":[503]},{"name":"OFFLINESTATUS_OFFLINE_ITEM_VERSION_CONFLICT","features":[503]},{"name":"OFFLINESTATUS_OFFLINE_SLOW","features":[503]},{"name":"OFFLINESTATUS_OFFLINE_SUSPENDED","features":[503]},{"name":"OFFLINESTATUS_ONLINE","features":[503]},{"name":"PHOTO_CONTRAST_HARD","features":[503]},{"name":"PHOTO_CONTRAST_NORMAL","features":[503]},{"name":"PHOTO_CONTRAST_SOFT","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_ACTION","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_APERTURE","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_CREATIVE","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_LANDSCAPE","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_MANUAL","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_NORMAL","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_PORTRAIT","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_SHUTTER","features":[503]},{"name":"PHOTO_EXPOSUREPROGRAM_UNKNOWN","features":[503]},{"name":"PHOTO_FLASH_FLASH","features":[503]},{"name":"PHOTO_FLASH_FLASH_AUTO","features":[503]},{"name":"PHOTO_FLASH_FLASH_AUTO_NORETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_AUTO_REDEYE","features":[503]},{"name":"PHOTO_FLASH_FLASH_AUTO_REDEYE_NORETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_AUTO_REDEYE_RETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_AUTO_RETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY","features":[503]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_NORETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_REDEYE","features":[503]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_REDEYE_NORETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_REDEYE_RETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_RETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_REDEYE","features":[503]},{"name":"PHOTO_FLASH_FLASH_REDEYE_NORETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_FLASH_REDEYE_RETURNLIGHT","features":[503]},{"name":"PHOTO_FLASH_NOFUNCTION","features":[503]},{"name":"PHOTO_FLASH_NONE","features":[503]},{"name":"PHOTO_FLASH_NONE_AUTO","features":[503]},{"name":"PHOTO_FLASH_NONE_COMPULSORY","features":[503]},{"name":"PHOTO_FLASH_WITHOUTSTROBE","features":[503]},{"name":"PHOTO_FLASH_WITHSTROBE","features":[503]},{"name":"PHOTO_GAINCONTROL_HIGHGAINDOWN","features":[503]},{"name":"PHOTO_GAINCONTROL_HIGHGAINUP","features":[503]},{"name":"PHOTO_GAINCONTROL_LOWGAINDOWN","features":[503]},{"name":"PHOTO_GAINCONTROL_LOWGAINUP","features":[503]},{"name":"PHOTO_GAINCONTROL_NONE","features":[503]},{"name":"PHOTO_LIGHTSOURCE_D55","features":[503]},{"name":"PHOTO_LIGHTSOURCE_D65","features":[503]},{"name":"PHOTO_LIGHTSOURCE_D75","features":[503]},{"name":"PHOTO_LIGHTSOURCE_DAYLIGHT","features":[503]},{"name":"PHOTO_LIGHTSOURCE_FLUORESCENT","features":[503]},{"name":"PHOTO_LIGHTSOURCE_STANDARD_A","features":[503]},{"name":"PHOTO_LIGHTSOURCE_STANDARD_B","features":[503]},{"name":"PHOTO_LIGHTSOURCE_STANDARD_C","features":[503]},{"name":"PHOTO_LIGHTSOURCE_TUNGSTEN","features":[503]},{"name":"PHOTO_LIGHTSOURCE_UNKNOWN","features":[503]},{"name":"PHOTO_PROGRAMMODE_ACTION","features":[503]},{"name":"PHOTO_PROGRAMMODE_APERTURE","features":[503]},{"name":"PHOTO_PROGRAMMODE_CREATIVE","features":[503]},{"name":"PHOTO_PROGRAMMODE_LANDSCAPE","features":[503]},{"name":"PHOTO_PROGRAMMODE_MANUAL","features":[503]},{"name":"PHOTO_PROGRAMMODE_NORMAL","features":[503]},{"name":"PHOTO_PROGRAMMODE_NOTDEFINED","features":[503]},{"name":"PHOTO_PROGRAMMODE_PORTRAIT","features":[503]},{"name":"PHOTO_PROGRAMMODE_SHUTTER","features":[503]},{"name":"PHOTO_SATURATION_HIGH","features":[503]},{"name":"PHOTO_SATURATION_LOW","features":[503]},{"name":"PHOTO_SATURATION_NORMAL","features":[503]},{"name":"PHOTO_SHARPNESS_HARD","features":[503]},{"name":"PHOTO_SHARPNESS_NORMAL","features":[503]},{"name":"PHOTO_SHARPNESS_SOFT","features":[503]},{"name":"PHOTO_WHITEBALANCE_AUTO","features":[503]},{"name":"PHOTO_WHITEBALANCE_MANUAL","features":[503]},{"name":"PKEY_AcquisitionID","features":[503,374]},{"name":"PKEY_ActivityInfo","features":[503,374]},{"name":"PKEY_Address_Country","features":[503,374]},{"name":"PKEY_Address_CountryCode","features":[503,374]},{"name":"PKEY_Address_Region","features":[503,374]},{"name":"PKEY_Address_RegionCode","features":[503,374]},{"name":"PKEY_Address_Town","features":[503,374]},{"name":"PKEY_AppUserModel_ExcludeFromShowInNewInstall","features":[503,374]},{"name":"PKEY_AppUserModel_ID","features":[503,374]},{"name":"PKEY_AppUserModel_IsDestListSeparator","features":[503,374]},{"name":"PKEY_AppUserModel_IsDualMode","features":[503,374]},{"name":"PKEY_AppUserModel_PreventPinning","features":[503,374]},{"name":"PKEY_AppUserModel_RelaunchCommand","features":[503,374]},{"name":"PKEY_AppUserModel_RelaunchDisplayNameResource","features":[503,374]},{"name":"PKEY_AppUserModel_RelaunchIconResource","features":[503,374]},{"name":"PKEY_AppUserModel_SettingsCommand","features":[503,374]},{"name":"PKEY_AppUserModel_StartPinOption","features":[503,374]},{"name":"PKEY_AppUserModel_ToastActivatorCLSID","features":[503,374]},{"name":"PKEY_AppUserModel_UninstallCommand","features":[503,374]},{"name":"PKEY_AppUserModel_VisualElementsManifestHintPath","features":[503,374]},{"name":"PKEY_AppZoneIdentifier","features":[503,374]},{"name":"PKEY_ApplicationDefinedProperties","features":[503,374]},{"name":"PKEY_ApplicationName","features":[503,374]},{"name":"PKEY_Audio_ChannelCount","features":[503,374]},{"name":"PKEY_Audio_Compression","features":[503,374]},{"name":"PKEY_Audio_EncodingBitrate","features":[503,374]},{"name":"PKEY_Audio_Format","features":[503,374]},{"name":"PKEY_Audio_IsVariableBitRate","features":[503,374]},{"name":"PKEY_Audio_PeakValue","features":[503,374]},{"name":"PKEY_Audio_SampleRate","features":[503,374]},{"name":"PKEY_Audio_SampleSize","features":[503,374]},{"name":"PKEY_Audio_StreamName","features":[503,374]},{"name":"PKEY_Audio_StreamNumber","features":[503,374]},{"name":"PKEY_Author","features":[503,374]},{"name":"PKEY_CachedFileUpdaterContentIdForConflictResolution","features":[503,374]},{"name":"PKEY_CachedFileUpdaterContentIdForStream","features":[503,374]},{"name":"PKEY_Calendar_Duration","features":[503,374]},{"name":"PKEY_Calendar_IsOnline","features":[503,374]},{"name":"PKEY_Calendar_IsRecurring","features":[503,374]},{"name":"PKEY_Calendar_Location","features":[503,374]},{"name":"PKEY_Calendar_OptionalAttendeeAddresses","features":[503,374]},{"name":"PKEY_Calendar_OptionalAttendeeNames","features":[503,374]},{"name":"PKEY_Calendar_OrganizerAddress","features":[503,374]},{"name":"PKEY_Calendar_OrganizerName","features":[503,374]},{"name":"PKEY_Calendar_ReminderTime","features":[503,374]},{"name":"PKEY_Calendar_RequiredAttendeeAddresses","features":[503,374]},{"name":"PKEY_Calendar_RequiredAttendeeNames","features":[503,374]},{"name":"PKEY_Calendar_Resources","features":[503,374]},{"name":"PKEY_Calendar_ResponseStatus","features":[503,374]},{"name":"PKEY_Calendar_ShowTimeAs","features":[503,374]},{"name":"PKEY_Calendar_ShowTimeAsText","features":[503,374]},{"name":"PKEY_Capacity","features":[503,374]},{"name":"PKEY_Category","features":[503,374]},{"name":"PKEY_Comment","features":[503,374]},{"name":"PKEY_Communication_AccountName","features":[503,374]},{"name":"PKEY_Communication_DateItemExpires","features":[503,374]},{"name":"PKEY_Communication_Direction","features":[503,374]},{"name":"PKEY_Communication_FollowupIconIndex","features":[503,374]},{"name":"PKEY_Communication_HeaderItem","features":[503,374]},{"name":"PKEY_Communication_PolicyTag","features":[503,374]},{"name":"PKEY_Communication_SecurityFlags","features":[503,374]},{"name":"PKEY_Communication_Suffix","features":[503,374]},{"name":"PKEY_Communication_TaskStatus","features":[503,374]},{"name":"PKEY_Communication_TaskStatusText","features":[503,374]},{"name":"PKEY_Company","features":[503,374]},{"name":"PKEY_ComputerName","features":[503,374]},{"name":"PKEY_Computer_DecoratedFreeSpace","features":[503,374]},{"name":"PKEY_Contact_AccountPictureDynamicVideo","features":[503,374]},{"name":"PKEY_Contact_AccountPictureLarge","features":[503,374]},{"name":"PKEY_Contact_AccountPictureSmall","features":[503,374]},{"name":"PKEY_Contact_Anniversary","features":[503,374]},{"name":"PKEY_Contact_AssistantName","features":[503,374]},{"name":"PKEY_Contact_AssistantTelephone","features":[503,374]},{"name":"PKEY_Contact_Birthday","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress1Country","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress1Locality","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress1PostalCode","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress1Region","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress1Street","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress2Country","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress2Locality","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress2PostalCode","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress2Region","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress2Street","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress3Country","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress3Locality","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress3PostalCode","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress3Region","features":[503,374]},{"name":"PKEY_Contact_BusinessAddress3Street","features":[503,374]},{"name":"PKEY_Contact_BusinessAddressCity","features":[503,374]},{"name":"PKEY_Contact_BusinessAddressCountry","features":[503,374]},{"name":"PKEY_Contact_BusinessAddressPostOfficeBox","features":[503,374]},{"name":"PKEY_Contact_BusinessAddressPostalCode","features":[503,374]},{"name":"PKEY_Contact_BusinessAddressState","features":[503,374]},{"name":"PKEY_Contact_BusinessAddressStreet","features":[503,374]},{"name":"PKEY_Contact_BusinessEmailAddresses","features":[503,374]},{"name":"PKEY_Contact_BusinessFaxNumber","features":[503,374]},{"name":"PKEY_Contact_BusinessHomePage","features":[503,374]},{"name":"PKEY_Contact_BusinessTelephone","features":[503,374]},{"name":"PKEY_Contact_CallbackTelephone","features":[503,374]},{"name":"PKEY_Contact_CarTelephone","features":[503,374]},{"name":"PKEY_Contact_Children","features":[503,374]},{"name":"PKEY_Contact_CompanyMainTelephone","features":[503,374]},{"name":"PKEY_Contact_ConnectedServiceDisplayName","features":[503,374]},{"name":"PKEY_Contact_ConnectedServiceIdentities","features":[503,374]},{"name":"PKEY_Contact_ConnectedServiceName","features":[503,374]},{"name":"PKEY_Contact_ConnectedServiceSupportedActions","features":[503,374]},{"name":"PKEY_Contact_DataSuppliers","features":[503,374]},{"name":"PKEY_Contact_Department","features":[503,374]},{"name":"PKEY_Contact_DisplayBusinessPhoneNumbers","features":[503,374]},{"name":"PKEY_Contact_DisplayHomePhoneNumbers","features":[503,374]},{"name":"PKEY_Contact_DisplayMobilePhoneNumbers","features":[503,374]},{"name":"PKEY_Contact_DisplayOtherPhoneNumbers","features":[503,374]},{"name":"PKEY_Contact_EmailAddress","features":[503,374]},{"name":"PKEY_Contact_EmailAddress2","features":[503,374]},{"name":"PKEY_Contact_EmailAddress3","features":[503,374]},{"name":"PKEY_Contact_EmailAddresses","features":[503,374]},{"name":"PKEY_Contact_EmailName","features":[503,374]},{"name":"PKEY_Contact_FileAsName","features":[503,374]},{"name":"PKEY_Contact_FirstName","features":[503,374]},{"name":"PKEY_Contact_FullName","features":[503,374]},{"name":"PKEY_Contact_Gender","features":[503,374]},{"name":"PKEY_Contact_GenderValue","features":[503,374]},{"name":"PKEY_Contact_Hobbies","features":[503,374]},{"name":"PKEY_Contact_HomeAddress","features":[503,374]},{"name":"PKEY_Contact_HomeAddress1Country","features":[503,374]},{"name":"PKEY_Contact_HomeAddress1Locality","features":[503,374]},{"name":"PKEY_Contact_HomeAddress1PostalCode","features":[503,374]},{"name":"PKEY_Contact_HomeAddress1Region","features":[503,374]},{"name":"PKEY_Contact_HomeAddress1Street","features":[503,374]},{"name":"PKEY_Contact_HomeAddress2Country","features":[503,374]},{"name":"PKEY_Contact_HomeAddress2Locality","features":[503,374]},{"name":"PKEY_Contact_HomeAddress2PostalCode","features":[503,374]},{"name":"PKEY_Contact_HomeAddress2Region","features":[503,374]},{"name":"PKEY_Contact_HomeAddress2Street","features":[503,374]},{"name":"PKEY_Contact_HomeAddress3Country","features":[503,374]},{"name":"PKEY_Contact_HomeAddress3Locality","features":[503,374]},{"name":"PKEY_Contact_HomeAddress3PostalCode","features":[503,374]},{"name":"PKEY_Contact_HomeAddress3Region","features":[503,374]},{"name":"PKEY_Contact_HomeAddress3Street","features":[503,374]},{"name":"PKEY_Contact_HomeAddressCity","features":[503,374]},{"name":"PKEY_Contact_HomeAddressCountry","features":[503,374]},{"name":"PKEY_Contact_HomeAddressPostOfficeBox","features":[503,374]},{"name":"PKEY_Contact_HomeAddressPostalCode","features":[503,374]},{"name":"PKEY_Contact_HomeAddressState","features":[503,374]},{"name":"PKEY_Contact_HomeAddressStreet","features":[503,374]},{"name":"PKEY_Contact_HomeEmailAddresses","features":[503,374]},{"name":"PKEY_Contact_HomeFaxNumber","features":[503,374]},{"name":"PKEY_Contact_HomeTelephone","features":[503,374]},{"name":"PKEY_Contact_IMAddress","features":[503,374]},{"name":"PKEY_Contact_Initials","features":[503,374]},{"name":"PKEY_Contact_JA_CompanyNamePhonetic","features":[503,374]},{"name":"PKEY_Contact_JA_FirstNamePhonetic","features":[503,374]},{"name":"PKEY_Contact_JA_LastNamePhonetic","features":[503,374]},{"name":"PKEY_Contact_JobInfo1CompanyAddress","features":[503,374]},{"name":"PKEY_Contact_JobInfo1CompanyName","features":[503,374]},{"name":"PKEY_Contact_JobInfo1Department","features":[503,374]},{"name":"PKEY_Contact_JobInfo1Manager","features":[503,374]},{"name":"PKEY_Contact_JobInfo1OfficeLocation","features":[503,374]},{"name":"PKEY_Contact_JobInfo1Title","features":[503,374]},{"name":"PKEY_Contact_JobInfo1YomiCompanyName","features":[503,374]},{"name":"PKEY_Contact_JobInfo2CompanyAddress","features":[503,374]},{"name":"PKEY_Contact_JobInfo2CompanyName","features":[503,374]},{"name":"PKEY_Contact_JobInfo2Department","features":[503,374]},{"name":"PKEY_Contact_JobInfo2Manager","features":[503,374]},{"name":"PKEY_Contact_JobInfo2OfficeLocation","features":[503,374]},{"name":"PKEY_Contact_JobInfo2Title","features":[503,374]},{"name":"PKEY_Contact_JobInfo2YomiCompanyName","features":[503,374]},{"name":"PKEY_Contact_JobInfo3CompanyAddress","features":[503,374]},{"name":"PKEY_Contact_JobInfo3CompanyName","features":[503,374]},{"name":"PKEY_Contact_JobInfo3Department","features":[503,374]},{"name":"PKEY_Contact_JobInfo3Manager","features":[503,374]},{"name":"PKEY_Contact_JobInfo3OfficeLocation","features":[503,374]},{"name":"PKEY_Contact_JobInfo3Title","features":[503,374]},{"name":"PKEY_Contact_JobInfo3YomiCompanyName","features":[503,374]},{"name":"PKEY_Contact_JobTitle","features":[503,374]},{"name":"PKEY_Contact_Label","features":[503,374]},{"name":"PKEY_Contact_LastName","features":[503,374]},{"name":"PKEY_Contact_MailingAddress","features":[503,374]},{"name":"PKEY_Contact_MiddleName","features":[503,374]},{"name":"PKEY_Contact_MobileTelephone","features":[503,374]},{"name":"PKEY_Contact_NickName","features":[503,374]},{"name":"PKEY_Contact_OfficeLocation","features":[503,374]},{"name":"PKEY_Contact_OtherAddress","features":[503,374]},{"name":"PKEY_Contact_OtherAddress1Country","features":[503,374]},{"name":"PKEY_Contact_OtherAddress1Locality","features":[503,374]},{"name":"PKEY_Contact_OtherAddress1PostalCode","features":[503,374]},{"name":"PKEY_Contact_OtherAddress1Region","features":[503,374]},{"name":"PKEY_Contact_OtherAddress1Street","features":[503,374]},{"name":"PKEY_Contact_OtherAddress2Country","features":[503,374]},{"name":"PKEY_Contact_OtherAddress2Locality","features":[503,374]},{"name":"PKEY_Contact_OtherAddress2PostalCode","features":[503,374]},{"name":"PKEY_Contact_OtherAddress2Region","features":[503,374]},{"name":"PKEY_Contact_OtherAddress2Street","features":[503,374]},{"name":"PKEY_Contact_OtherAddress3Country","features":[503,374]},{"name":"PKEY_Contact_OtherAddress3Locality","features":[503,374]},{"name":"PKEY_Contact_OtherAddress3PostalCode","features":[503,374]},{"name":"PKEY_Contact_OtherAddress3Region","features":[503,374]},{"name":"PKEY_Contact_OtherAddress3Street","features":[503,374]},{"name":"PKEY_Contact_OtherAddressCity","features":[503,374]},{"name":"PKEY_Contact_OtherAddressCountry","features":[503,374]},{"name":"PKEY_Contact_OtherAddressPostOfficeBox","features":[503,374]},{"name":"PKEY_Contact_OtherAddressPostalCode","features":[503,374]},{"name":"PKEY_Contact_OtherAddressState","features":[503,374]},{"name":"PKEY_Contact_OtherAddressStreet","features":[503,374]},{"name":"PKEY_Contact_OtherEmailAddresses","features":[503,374]},{"name":"PKEY_Contact_PagerTelephone","features":[503,374]},{"name":"PKEY_Contact_PersonalTitle","features":[503,374]},{"name":"PKEY_Contact_PhoneNumbersCanonical","features":[503,374]},{"name":"PKEY_Contact_Prefix","features":[503,374]},{"name":"PKEY_Contact_PrimaryAddressCity","features":[503,374]},{"name":"PKEY_Contact_PrimaryAddressCountry","features":[503,374]},{"name":"PKEY_Contact_PrimaryAddressPostOfficeBox","features":[503,374]},{"name":"PKEY_Contact_PrimaryAddressPostalCode","features":[503,374]},{"name":"PKEY_Contact_PrimaryAddressState","features":[503,374]},{"name":"PKEY_Contact_PrimaryAddressStreet","features":[503,374]},{"name":"PKEY_Contact_PrimaryEmailAddress","features":[503,374]},{"name":"PKEY_Contact_PrimaryTelephone","features":[503,374]},{"name":"PKEY_Contact_Profession","features":[503,374]},{"name":"PKEY_Contact_SpouseName","features":[503,374]},{"name":"PKEY_Contact_Suffix","features":[503,374]},{"name":"PKEY_Contact_TTYTDDTelephone","features":[503,374]},{"name":"PKEY_Contact_TelexNumber","features":[503,374]},{"name":"PKEY_Contact_WebPage","features":[503,374]},{"name":"PKEY_Contact_Webpage2","features":[503,374]},{"name":"PKEY_Contact_Webpage3","features":[503,374]},{"name":"PKEY_ContainedItems","features":[503,374]},{"name":"PKEY_ContentId","features":[503,374]},{"name":"PKEY_ContentStatus","features":[503,374]},{"name":"PKEY_ContentType","features":[503,374]},{"name":"PKEY_ContentUri","features":[503,374]},{"name":"PKEY_Copyright","features":[503,374]},{"name":"PKEY_CreatorAppId","features":[503,374]},{"name":"PKEY_CreatorOpenWithUIOptions","features":[503,374]},{"name":"PKEY_DRM_DatePlayExpires","features":[503,374]},{"name":"PKEY_DRM_DatePlayStarts","features":[503,374]},{"name":"PKEY_DRM_Description","features":[503,374]},{"name":"PKEY_DRM_IsDisabled","features":[503,374]},{"name":"PKEY_DRM_IsProtected","features":[503,374]},{"name":"PKEY_DRM_PlayCount","features":[503,374]},{"name":"PKEY_DataObjectFormat","features":[503,374]},{"name":"PKEY_DateAccessed","features":[503,374]},{"name":"PKEY_DateAcquired","features":[503,374]},{"name":"PKEY_DateArchived","features":[503,374]},{"name":"PKEY_DateCompleted","features":[503,374]},{"name":"PKEY_DateCreated","features":[503,374]},{"name":"PKEY_DateImported","features":[503,374]},{"name":"PKEY_DateModified","features":[503,374]},{"name":"PKEY_DefaultSaveLocationDisplay","features":[503,374]},{"name":"PKEY_DescriptionID","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_DeviceAddress","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_Flags","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_LastConnectedTime","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_Manufacturer","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_ModelNumber","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_ProductId","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_ProductVersion","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_ServiceGuid","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_VendorId","features":[503,374]},{"name":"PKEY_DeviceInterface_Bluetooth_VendorIdSource","features":[503,374]},{"name":"PKEY_DeviceInterface_Hid_IsReadOnly","features":[503,374]},{"name":"PKEY_DeviceInterface_Hid_ProductId","features":[503,374]},{"name":"PKEY_DeviceInterface_Hid_UsageId","features":[503,374]},{"name":"PKEY_DeviceInterface_Hid_UsagePage","features":[503,374]},{"name":"PKEY_DeviceInterface_Hid_VendorId","features":[503,374]},{"name":"PKEY_DeviceInterface_Hid_VersionNumber","features":[503,374]},{"name":"PKEY_DeviceInterface_PrinterDriverDirectory","features":[503,374]},{"name":"PKEY_DeviceInterface_PrinterDriverName","features":[503,374]},{"name":"PKEY_DeviceInterface_PrinterEnumerationFlag","features":[503,374]},{"name":"PKEY_DeviceInterface_PrinterName","features":[503,374]},{"name":"PKEY_DeviceInterface_PrinterPortName","features":[503,374]},{"name":"PKEY_DeviceInterface_Proximity_SupportsNfc","features":[503,374]},{"name":"PKEY_DeviceInterface_Serial_PortName","features":[503,374]},{"name":"PKEY_DeviceInterface_Serial_UsbProductId","features":[503,374]},{"name":"PKEY_DeviceInterface_Serial_UsbVendorId","features":[503,374]},{"name":"PKEY_DeviceInterface_WinUsb_DeviceInterfaceClasses","features":[503,374]},{"name":"PKEY_DeviceInterface_WinUsb_UsbClass","features":[503,374]},{"name":"PKEY_DeviceInterface_WinUsb_UsbProductId","features":[503,374]},{"name":"PKEY_DeviceInterface_WinUsb_UsbProtocol","features":[503,374]},{"name":"PKEY_DeviceInterface_WinUsb_UsbSubClass","features":[503,374]},{"name":"PKEY_DeviceInterface_WinUsb_UsbVendorId","features":[503,374]},{"name":"PKEY_Device_PrinterURL","features":[503,374]},{"name":"PKEY_Devices_AepContainer_CanPair","features":[503,374]},{"name":"PKEY_Devices_AepContainer_Categories","features":[503,374]},{"name":"PKEY_Devices_AepContainer_Children","features":[503,374]},{"name":"PKEY_Devices_AepContainer_ContainerId","features":[503,374]},{"name":"PKEY_Devices_AepContainer_DialProtocol_InstalledApplications","features":[503,374]},{"name":"PKEY_Devices_AepContainer_IsPaired","features":[503,374]},{"name":"PKEY_Devices_AepContainer_IsPresent","features":[503,374]},{"name":"PKEY_Devices_AepContainer_Manufacturer","features":[503,374]},{"name":"PKEY_Devices_AepContainer_ModelIds","features":[503,374]},{"name":"PKEY_Devices_AepContainer_ModelName","features":[503,374]},{"name":"PKEY_Devices_AepContainer_ProtocolIds","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportedUriSchemes","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsAudio","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsCapturing","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsImages","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsInformation","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsLimitedDiscovery","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsNetworking","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsObjectTransfer","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsPositioning","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsRendering","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsTelephony","features":[503,374]},{"name":"PKEY_Devices_AepContainer_SupportsVideo","features":[503,374]},{"name":"PKEY_Devices_AepService_AepId","features":[503,374]},{"name":"PKEY_Devices_AepService_Bluetooth_CacheMode","features":[503,374]},{"name":"PKEY_Devices_AepService_Bluetooth_ServiceGuid","features":[503,374]},{"name":"PKEY_Devices_AepService_Bluetooth_TargetDevice","features":[503,374]},{"name":"PKEY_Devices_AepService_ContainerId","features":[503,374]},{"name":"PKEY_Devices_AepService_FriendlyName","features":[503,374]},{"name":"PKEY_Devices_AepService_IoT_ServiceInterfaces","features":[503,374]},{"name":"PKEY_Devices_AepService_ParentAepIsPaired","features":[503,374]},{"name":"PKEY_Devices_AepService_ProtocolId","features":[503,374]},{"name":"PKEY_Devices_AepService_ServiceClassId","features":[503,374]},{"name":"PKEY_Devices_AepService_ServiceId","features":[503,374]},{"name":"PKEY_Devices_Aep_AepId","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Major","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Minor","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Audio","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Capturing","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Information","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_LimitedDiscovery","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Networking","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_ObjectXfer","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Positioning","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Rendering","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Telephony","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_LastSeenTime","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_AddressType","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_Appearance","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_Appearance_Category","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_Appearance_Subcategory","features":[503,374]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_IsConnectable","features":[503,374]},{"name":"PKEY_Devices_Aep_CanPair","features":[503,374]},{"name":"PKEY_Devices_Aep_Category","features":[503,374]},{"name":"PKEY_Devices_Aep_ContainerId","features":[503,374]},{"name":"PKEY_Devices_Aep_DeviceAddress","features":[503,374]},{"name":"PKEY_Devices_Aep_IsConnected","features":[503,374]},{"name":"PKEY_Devices_Aep_IsPaired","features":[503,374]},{"name":"PKEY_Devices_Aep_IsPresent","features":[503,374]},{"name":"PKEY_Devices_Aep_Manufacturer","features":[503,374]},{"name":"PKEY_Devices_Aep_ModelId","features":[503,374]},{"name":"PKEY_Devices_Aep_ModelName","features":[503,374]},{"name":"PKEY_Devices_Aep_PointOfService_ConnectionTypes","features":[503,374]},{"name":"PKEY_Devices_Aep_ProtocolId","features":[503,374]},{"name":"PKEY_Devices_Aep_SignalStrength","features":[503,374]},{"name":"PKEY_Devices_AppPackageFamilyName","features":[503,374]},{"name":"PKEY_Devices_AudioDevice_Microphone_IsFarField","features":[503,374]},{"name":"PKEY_Devices_AudioDevice_Microphone_SensitivityInDbfs","features":[503,374]},{"name":"PKEY_Devices_AudioDevice_Microphone_SensitivityInDbfs2","features":[503,374]},{"name":"PKEY_Devices_AudioDevice_Microphone_SignalToNoiseRatioInDb","features":[503,374]},{"name":"PKEY_Devices_AudioDevice_RawProcessingSupported","features":[503,374]},{"name":"PKEY_Devices_AudioDevice_SpeechProcessingSupported","features":[503,374]},{"name":"PKEY_Devices_BatteryLife","features":[503,374]},{"name":"PKEY_Devices_BatteryPlusCharging","features":[503,374]},{"name":"PKEY_Devices_BatteryPlusChargingText","features":[503,374]},{"name":"PKEY_Devices_Category","features":[503,374]},{"name":"PKEY_Devices_CategoryGroup","features":[503,374]},{"name":"PKEY_Devices_CategoryIds","features":[503,374]},{"name":"PKEY_Devices_CategoryPlural","features":[503,374]},{"name":"PKEY_Devices_ChallengeAep","features":[503,374]},{"name":"PKEY_Devices_ChargingState","features":[503,374]},{"name":"PKEY_Devices_Children","features":[503,374]},{"name":"PKEY_Devices_ClassGuid","features":[503,374]},{"name":"PKEY_Devices_CompatibleIds","features":[503,374]},{"name":"PKEY_Devices_Connected","features":[503,374]},{"name":"PKEY_Devices_ContainerId","features":[503,374]},{"name":"PKEY_Devices_DefaultTooltip","features":[503,374]},{"name":"PKEY_Devices_DevObjectType","features":[503,374]},{"name":"PKEY_Devices_DeviceCapabilities","features":[503,374]},{"name":"PKEY_Devices_DeviceCharacteristics","features":[503,374]},{"name":"PKEY_Devices_DeviceDescription1","features":[503,374]},{"name":"PKEY_Devices_DeviceDescription2","features":[503,374]},{"name":"PKEY_Devices_DeviceHasProblem","features":[503,374]},{"name":"PKEY_Devices_DeviceInstanceId","features":[503,374]},{"name":"PKEY_Devices_DeviceManufacturer","features":[503,374]},{"name":"PKEY_Devices_DialProtocol_InstalledApplications","features":[503,374]},{"name":"PKEY_Devices_DiscoveryMethod","features":[503,374]},{"name":"PKEY_Devices_Dnssd_Domain","features":[503,374]},{"name":"PKEY_Devices_Dnssd_FullName","features":[503,374]},{"name":"PKEY_Devices_Dnssd_HostName","features":[503,374]},{"name":"PKEY_Devices_Dnssd_InstanceName","features":[503,374]},{"name":"PKEY_Devices_Dnssd_NetworkAdapterId","features":[503,374]},{"name":"PKEY_Devices_Dnssd_PortNumber","features":[503,374]},{"name":"PKEY_Devices_Dnssd_Priority","features":[503,374]},{"name":"PKEY_Devices_Dnssd_ServiceName","features":[503,374]},{"name":"PKEY_Devices_Dnssd_TextAttributes","features":[503,374]},{"name":"PKEY_Devices_Dnssd_Ttl","features":[503,374]},{"name":"PKEY_Devices_Dnssd_Weight","features":[503,374]},{"name":"PKEY_Devices_FriendlyName","features":[503,374]},{"name":"PKEY_Devices_FunctionPaths","features":[503,374]},{"name":"PKEY_Devices_GlyphIcon","features":[503,374]},{"name":"PKEY_Devices_HardwareIds","features":[503,374]},{"name":"PKEY_Devices_Icon","features":[503,374]},{"name":"PKEY_Devices_InLocalMachineContainer","features":[503,374]},{"name":"PKEY_Devices_InterfaceClassGuid","features":[503,374]},{"name":"PKEY_Devices_InterfaceEnabled","features":[503,374]},{"name":"PKEY_Devices_InterfacePaths","features":[503,374]},{"name":"PKEY_Devices_IpAddress","features":[503,374]},{"name":"PKEY_Devices_IsDefault","features":[503,374]},{"name":"PKEY_Devices_IsNetworkConnected","features":[503,374]},{"name":"PKEY_Devices_IsShared","features":[503,374]},{"name":"PKEY_Devices_IsSoftwareInstalling","features":[503,374]},{"name":"PKEY_Devices_LaunchDeviceStageFromExplorer","features":[503,374]},{"name":"PKEY_Devices_LocalMachine","features":[503,374]},{"name":"PKEY_Devices_LocationPaths","features":[503,374]},{"name":"PKEY_Devices_Manufacturer","features":[503,374]},{"name":"PKEY_Devices_MetadataPath","features":[503,374]},{"name":"PKEY_Devices_MicrophoneArray_Geometry","features":[503,374]},{"name":"PKEY_Devices_MissedCalls","features":[503,374]},{"name":"PKEY_Devices_ModelId","features":[503,374]},{"name":"PKEY_Devices_ModelName","features":[503,374]},{"name":"PKEY_Devices_ModelNumber","features":[503,374]},{"name":"PKEY_Devices_NetworkName","features":[503,374]},{"name":"PKEY_Devices_NetworkType","features":[503,374]},{"name":"PKEY_Devices_NetworkedTooltip","features":[503,374]},{"name":"PKEY_Devices_NewPictures","features":[503,374]},{"name":"PKEY_Devices_NotWorkingProperly","features":[503,374]},{"name":"PKEY_Devices_Notification","features":[503,374]},{"name":"PKEY_Devices_NotificationStore","features":[503,374]},{"name":"PKEY_Devices_Notifications_LowBattery","features":[503,374]},{"name":"PKEY_Devices_Notifications_MissedCall","features":[503,374]},{"name":"PKEY_Devices_Notifications_NewMessage","features":[503,374]},{"name":"PKEY_Devices_Notifications_NewVoicemail","features":[503,374]},{"name":"PKEY_Devices_Notifications_StorageFull","features":[503,374]},{"name":"PKEY_Devices_Notifications_StorageFullLinkText","features":[503,374]},{"name":"PKEY_Devices_Paired","features":[503,374]},{"name":"PKEY_Devices_Panel_PanelGroup","features":[503,374]},{"name":"PKEY_Devices_Panel_PanelId","features":[503,374]},{"name":"PKEY_Devices_Parent","features":[503,374]},{"name":"PKEY_Devices_PhoneLineTransportDevice_Connected","features":[503,374]},{"name":"PKEY_Devices_PhysicalDeviceLocation","features":[503,374]},{"name":"PKEY_Devices_PlaybackPositionPercent","features":[503,374]},{"name":"PKEY_Devices_PlaybackState","features":[503,374]},{"name":"PKEY_Devices_PlaybackTitle","features":[503,374]},{"name":"PKEY_Devices_Present","features":[503,374]},{"name":"PKEY_Devices_PresentationUrl","features":[503,374]},{"name":"PKEY_Devices_PrimaryCategory","features":[503,374]},{"name":"PKEY_Devices_RemainingDuration","features":[503,374]},{"name":"PKEY_Devices_RestrictedInterface","features":[503,374]},{"name":"PKEY_Devices_Roaming","features":[503,374]},{"name":"PKEY_Devices_SafeRemovalRequired","features":[503,374]},{"name":"PKEY_Devices_SchematicName","features":[503,374]},{"name":"PKEY_Devices_ServiceAddress","features":[503,374]},{"name":"PKEY_Devices_ServiceId","features":[503,374]},{"name":"PKEY_Devices_SharedTooltip","features":[503,374]},{"name":"PKEY_Devices_SignalStrength","features":[503,374]},{"name":"PKEY_Devices_SmartCards_ReaderKind","features":[503,374]},{"name":"PKEY_Devices_Status","features":[503,374]},{"name":"PKEY_Devices_Status1","features":[503,374]},{"name":"PKEY_Devices_Status2","features":[503,374]},{"name":"PKEY_Devices_StorageCapacity","features":[503,374]},{"name":"PKEY_Devices_StorageFreeSpace","features":[503,374]},{"name":"PKEY_Devices_StorageFreeSpacePercent","features":[503,374]},{"name":"PKEY_Devices_TextMessages","features":[503,374]},{"name":"PKEY_Devices_Voicemail","features":[503,374]},{"name":"PKEY_Devices_WiFiDirectServices_AdvertisementId","features":[503,374]},{"name":"PKEY_Devices_WiFiDirectServices_RequestServiceInformation","features":[503,374]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceAddress","features":[503,374]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceConfigMethods","features":[503,374]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceInformation","features":[503,374]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceName","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_DeviceAddress","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_GroupId","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_InformationElements","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_InterfaceAddress","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_InterfaceGuid","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_IsConnected","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_IsLegacyDevice","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_IsMiracastLcpSupported","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_IsVisible","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_MiracastVersion","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_Services","features":[503,374]},{"name":"PKEY_Devices_WiFiDirect_SupportedChannelList","features":[503,374]},{"name":"PKEY_Devices_WiFi_InterfaceGuid","features":[503,374]},{"name":"PKEY_Devices_WiaDeviceType","features":[503,374]},{"name":"PKEY_Devices_WinPhone8CameraFlags","features":[503,374]},{"name":"PKEY_Devices_Wwan_InterfaceGuid","features":[503,374]},{"name":"PKEY_Document_ByteCount","features":[503,374]},{"name":"PKEY_Document_CharacterCount","features":[503,374]},{"name":"PKEY_Document_ClientID","features":[503,374]},{"name":"PKEY_Document_Contributor","features":[503,374]},{"name":"PKEY_Document_DateCreated","features":[503,374]},{"name":"PKEY_Document_DatePrinted","features":[503,374]},{"name":"PKEY_Document_DateSaved","features":[503,374]},{"name":"PKEY_Document_Division","features":[503,374]},{"name":"PKEY_Document_DocumentID","features":[503,374]},{"name":"PKEY_Document_HiddenSlideCount","features":[503,374]},{"name":"PKEY_Document_LastAuthor","features":[503,374]},{"name":"PKEY_Document_LineCount","features":[503,374]},{"name":"PKEY_Document_Manager","features":[503,374]},{"name":"PKEY_Document_MultimediaClipCount","features":[503,374]},{"name":"PKEY_Document_NoteCount","features":[503,374]},{"name":"PKEY_Document_PageCount","features":[503,374]},{"name":"PKEY_Document_ParagraphCount","features":[503,374]},{"name":"PKEY_Document_PresentationFormat","features":[503,374]},{"name":"PKEY_Document_RevisionNumber","features":[503,374]},{"name":"PKEY_Document_Security","features":[503,374]},{"name":"PKEY_Document_SlideCount","features":[503,374]},{"name":"PKEY_Document_Template","features":[503,374]},{"name":"PKEY_Document_TotalEditingTime","features":[503,374]},{"name":"PKEY_Document_Version","features":[503,374]},{"name":"PKEY_Document_WordCount","features":[503,374]},{"name":"PKEY_DueDate","features":[503,374]},{"name":"PKEY_EdgeGesture_DisableTouchWhenFullscreen","features":[503,374]},{"name":"PKEY_EndDate","features":[503,374]},{"name":"PKEY_ExpandoProperties","features":[503,374]},{"name":"PKEY_FileAllocationSize","features":[503,374]},{"name":"PKEY_FileAttributes","features":[503,374]},{"name":"PKEY_FileCount","features":[503,374]},{"name":"PKEY_FileDescription","features":[503,374]},{"name":"PKEY_FileExtension","features":[503,374]},{"name":"PKEY_FileFRN","features":[503,374]},{"name":"PKEY_FileName","features":[503,374]},{"name":"PKEY_FileOfflineAvailabilityStatus","features":[503,374]},{"name":"PKEY_FileOwner","features":[503,374]},{"name":"PKEY_FilePlaceholderStatus","features":[503,374]},{"name":"PKEY_FileVersion","features":[503,374]},{"name":"PKEY_FindData","features":[503,374]},{"name":"PKEY_FlagColor","features":[503,374]},{"name":"PKEY_FlagColorText","features":[503,374]},{"name":"PKEY_FlagStatus","features":[503,374]},{"name":"PKEY_FlagStatusText","features":[503,374]},{"name":"PKEY_FolderKind","features":[503,374]},{"name":"PKEY_FolderNameDisplay","features":[503,374]},{"name":"PKEY_FreeSpace","features":[503,374]},{"name":"PKEY_FullText","features":[503,374]},{"name":"PKEY_GPS_Altitude","features":[503,374]},{"name":"PKEY_GPS_AltitudeDenominator","features":[503,374]},{"name":"PKEY_GPS_AltitudeNumerator","features":[503,374]},{"name":"PKEY_GPS_AltitudeRef","features":[503,374]},{"name":"PKEY_GPS_AreaInformation","features":[503,374]},{"name":"PKEY_GPS_DOP","features":[503,374]},{"name":"PKEY_GPS_DOPDenominator","features":[503,374]},{"name":"PKEY_GPS_DOPNumerator","features":[503,374]},{"name":"PKEY_GPS_Date","features":[503,374]},{"name":"PKEY_GPS_DestBearing","features":[503,374]},{"name":"PKEY_GPS_DestBearingDenominator","features":[503,374]},{"name":"PKEY_GPS_DestBearingNumerator","features":[503,374]},{"name":"PKEY_GPS_DestBearingRef","features":[503,374]},{"name":"PKEY_GPS_DestDistance","features":[503,374]},{"name":"PKEY_GPS_DestDistanceDenominator","features":[503,374]},{"name":"PKEY_GPS_DestDistanceNumerator","features":[503,374]},{"name":"PKEY_GPS_DestDistanceRef","features":[503,374]},{"name":"PKEY_GPS_DestLatitude","features":[503,374]},{"name":"PKEY_GPS_DestLatitudeDenominator","features":[503,374]},{"name":"PKEY_GPS_DestLatitudeNumerator","features":[503,374]},{"name":"PKEY_GPS_DestLatitudeRef","features":[503,374]},{"name":"PKEY_GPS_DestLongitude","features":[503,374]},{"name":"PKEY_GPS_DestLongitudeDenominator","features":[503,374]},{"name":"PKEY_GPS_DestLongitudeNumerator","features":[503,374]},{"name":"PKEY_GPS_DestLongitudeRef","features":[503,374]},{"name":"PKEY_GPS_Differential","features":[503,374]},{"name":"PKEY_GPS_ImgDirection","features":[503,374]},{"name":"PKEY_GPS_ImgDirectionDenominator","features":[503,374]},{"name":"PKEY_GPS_ImgDirectionNumerator","features":[503,374]},{"name":"PKEY_GPS_ImgDirectionRef","features":[503,374]},{"name":"PKEY_GPS_Latitude","features":[503,374]},{"name":"PKEY_GPS_LatitudeDecimal","features":[503,374]},{"name":"PKEY_GPS_LatitudeDenominator","features":[503,374]},{"name":"PKEY_GPS_LatitudeNumerator","features":[503,374]},{"name":"PKEY_GPS_LatitudeRef","features":[503,374]},{"name":"PKEY_GPS_Longitude","features":[503,374]},{"name":"PKEY_GPS_LongitudeDecimal","features":[503,374]},{"name":"PKEY_GPS_LongitudeDenominator","features":[503,374]},{"name":"PKEY_GPS_LongitudeNumerator","features":[503,374]},{"name":"PKEY_GPS_LongitudeRef","features":[503,374]},{"name":"PKEY_GPS_MapDatum","features":[503,374]},{"name":"PKEY_GPS_MeasureMode","features":[503,374]},{"name":"PKEY_GPS_ProcessingMethod","features":[503,374]},{"name":"PKEY_GPS_Satellites","features":[503,374]},{"name":"PKEY_GPS_Speed","features":[503,374]},{"name":"PKEY_GPS_SpeedDenominator","features":[503,374]},{"name":"PKEY_GPS_SpeedNumerator","features":[503,374]},{"name":"PKEY_GPS_SpeedRef","features":[503,374]},{"name":"PKEY_GPS_Status","features":[503,374]},{"name":"PKEY_GPS_Track","features":[503,374]},{"name":"PKEY_GPS_TrackDenominator","features":[503,374]},{"name":"PKEY_GPS_TrackNumerator","features":[503,374]},{"name":"PKEY_GPS_TrackRef","features":[503,374]},{"name":"PKEY_GPS_VersionID","features":[503,374]},{"name":"PKEY_HighKeywords","features":[503,374]},{"name":"PKEY_History_SelectionCount","features":[503,374]},{"name":"PKEY_History_TargetUrlHostName","features":[503,374]},{"name":"PKEY_History_VisitCount","features":[503,374]},{"name":"PKEY_Home_Grouping","features":[503,374]},{"name":"PKEY_Home_IsPinned","features":[503,374]},{"name":"PKEY_Home_ItemFolderPathDisplay","features":[503,374]},{"name":"PKEY_Identity","features":[503,374]},{"name":"PKEY_IdentityProvider_Name","features":[503,374]},{"name":"PKEY_IdentityProvider_Picture","features":[503,374]},{"name":"PKEY_Identity_Blob","features":[503,374]},{"name":"PKEY_Identity_DisplayName","features":[503,374]},{"name":"PKEY_Identity_InternetSid","features":[503,374]},{"name":"PKEY_Identity_IsMeIdentity","features":[503,374]},{"name":"PKEY_Identity_KeyProviderContext","features":[503,374]},{"name":"PKEY_Identity_KeyProviderName","features":[503,374]},{"name":"PKEY_Identity_LogonStatusString","features":[503,374]},{"name":"PKEY_Identity_PrimaryEmailAddress","features":[503,374]},{"name":"PKEY_Identity_PrimarySid","features":[503,374]},{"name":"PKEY_Identity_ProviderData","features":[503,374]},{"name":"PKEY_Identity_ProviderID","features":[503,374]},{"name":"PKEY_Identity_QualifiedUserName","features":[503,374]},{"name":"PKEY_Identity_UniqueID","features":[503,374]},{"name":"PKEY_Identity_UserName","features":[503,374]},{"name":"PKEY_ImageParsingName","features":[503,374]},{"name":"PKEY_Image_BitDepth","features":[503,374]},{"name":"PKEY_Image_ColorSpace","features":[503,374]},{"name":"PKEY_Image_CompressedBitsPerPixel","features":[503,374]},{"name":"PKEY_Image_CompressedBitsPerPixelDenominator","features":[503,374]},{"name":"PKEY_Image_CompressedBitsPerPixelNumerator","features":[503,374]},{"name":"PKEY_Image_Compression","features":[503,374]},{"name":"PKEY_Image_CompressionText","features":[503,374]},{"name":"PKEY_Image_Dimensions","features":[503,374]},{"name":"PKEY_Image_HorizontalResolution","features":[503,374]},{"name":"PKEY_Image_HorizontalSize","features":[503,374]},{"name":"PKEY_Image_ImageID","features":[503,374]},{"name":"PKEY_Image_ResolutionUnit","features":[503,374]},{"name":"PKEY_Image_VerticalResolution","features":[503,374]},{"name":"PKEY_Image_VerticalSize","features":[503,374]},{"name":"PKEY_Importance","features":[503,374]},{"name":"PKEY_ImportanceText","features":[503,374]},{"name":"PKEY_InfoTipText","features":[503,374]},{"name":"PKEY_InternalName","features":[503,374]},{"name":"PKEY_IsAttachment","features":[503,374]},{"name":"PKEY_IsDefaultNonOwnerSaveLocation","features":[503,374]},{"name":"PKEY_IsDefaultSaveLocation","features":[503,374]},{"name":"PKEY_IsDeleted","features":[503,374]},{"name":"PKEY_IsEncrypted","features":[503,374]},{"name":"PKEY_IsFlagged","features":[503,374]},{"name":"PKEY_IsFlaggedComplete","features":[503,374]},{"name":"PKEY_IsIncomplete","features":[503,374]},{"name":"PKEY_IsLocationSupported","features":[503,374]},{"name":"PKEY_IsPinnedToNameSpaceTree","features":[503,374]},{"name":"PKEY_IsRead","features":[503,374]},{"name":"PKEY_IsSearchOnlyItem","features":[503,374]},{"name":"PKEY_IsSendToTarget","features":[503,374]},{"name":"PKEY_IsShared","features":[503,374]},{"name":"PKEY_ItemAuthors","features":[503,374]},{"name":"PKEY_ItemClassType","features":[503,374]},{"name":"PKEY_ItemDate","features":[503,374]},{"name":"PKEY_ItemFolderNameDisplay","features":[503,374]},{"name":"PKEY_ItemFolderPathDisplay","features":[503,374]},{"name":"PKEY_ItemFolderPathDisplayNarrow","features":[503,374]},{"name":"PKEY_ItemName","features":[503,374]},{"name":"PKEY_ItemNameDisplay","features":[503,374]},{"name":"PKEY_ItemNameDisplayWithoutExtension","features":[503,374]},{"name":"PKEY_ItemNamePrefix","features":[503,374]},{"name":"PKEY_ItemNameSortOverride","features":[503,374]},{"name":"PKEY_ItemParticipants","features":[503,374]},{"name":"PKEY_ItemPathDisplay","features":[503,374]},{"name":"PKEY_ItemPathDisplayNarrow","features":[503,374]},{"name":"PKEY_ItemSubType","features":[503,374]},{"name":"PKEY_ItemType","features":[503,374]},{"name":"PKEY_ItemTypeText","features":[503,374]},{"name":"PKEY_ItemUrl","features":[503,374]},{"name":"PKEY_Journal_Contacts","features":[503,374]},{"name":"PKEY_Journal_EntryType","features":[503,374]},{"name":"PKEY_Keywords","features":[503,374]},{"name":"PKEY_Kind","features":[503,374]},{"name":"PKEY_KindText","features":[503,374]},{"name":"PKEY_Language","features":[503,374]},{"name":"PKEY_LastSyncError","features":[503,374]},{"name":"PKEY_LastSyncWarning","features":[503,374]},{"name":"PKEY_LastWriterPackageFamilyName","features":[503,374]},{"name":"PKEY_LayoutPattern_ContentViewModeForBrowse","features":[503,374]},{"name":"PKEY_LayoutPattern_ContentViewModeForSearch","features":[503,374]},{"name":"PKEY_LibraryLocationsCount","features":[503,374]},{"name":"PKEY_Link_Arguments","features":[503,374]},{"name":"PKEY_Link_Comment","features":[503,374]},{"name":"PKEY_Link_DateVisited","features":[503,374]},{"name":"PKEY_Link_Description","features":[503,374]},{"name":"PKEY_Link_FeedItemLocalId","features":[503,374]},{"name":"PKEY_Link_Status","features":[503,374]},{"name":"PKEY_Link_TargetExtension","features":[503,374]},{"name":"PKEY_Link_TargetParsingPath","features":[503,374]},{"name":"PKEY_Link_TargetSFGAOFlags","features":[503,374]},{"name":"PKEY_Link_TargetSFGAOFlagsStrings","features":[503,374]},{"name":"PKEY_Link_TargetUrl","features":[503,374]},{"name":"PKEY_Link_TargetUrlHostName","features":[503,374]},{"name":"PKEY_Link_TargetUrlPath","features":[503,374]},{"name":"PKEY_LocationEmptyString","features":[503,374]},{"name":"PKEY_LowKeywords","features":[503,374]},{"name":"PKEY_MIMEType","features":[503,374]},{"name":"PKEY_Media_AuthorUrl","features":[503,374]},{"name":"PKEY_Media_AverageLevel","features":[503,374]},{"name":"PKEY_Media_ClassPrimaryID","features":[503,374]},{"name":"PKEY_Media_ClassSecondaryID","features":[503,374]},{"name":"PKEY_Media_CollectionGroupID","features":[503,374]},{"name":"PKEY_Media_CollectionID","features":[503,374]},{"name":"PKEY_Media_ContentDistributor","features":[503,374]},{"name":"PKEY_Media_ContentID","features":[503,374]},{"name":"PKEY_Media_CreatorApplication","features":[503,374]},{"name":"PKEY_Media_CreatorApplicationVersion","features":[503,374]},{"name":"PKEY_Media_DVDID","features":[503,374]},{"name":"PKEY_Media_DateEncoded","features":[503,374]},{"name":"PKEY_Media_DateReleased","features":[503,374]},{"name":"PKEY_Media_DlnaProfileID","features":[503,374]},{"name":"PKEY_Media_Duration","features":[503,374]},{"name":"PKEY_Media_EncodedBy","features":[503,374]},{"name":"PKEY_Media_EncodingSettings","features":[503,374]},{"name":"PKEY_Media_EpisodeNumber","features":[503,374]},{"name":"PKEY_Media_FrameCount","features":[503,374]},{"name":"PKEY_Media_MCDI","features":[503,374]},{"name":"PKEY_Media_MetadataContentProvider","features":[503,374]},{"name":"PKEY_Media_Producer","features":[503,374]},{"name":"PKEY_Media_PromotionUrl","features":[503,374]},{"name":"PKEY_Media_ProtectionType","features":[503,374]},{"name":"PKEY_Media_ProviderRating","features":[503,374]},{"name":"PKEY_Media_ProviderStyle","features":[503,374]},{"name":"PKEY_Media_Publisher","features":[503,374]},{"name":"PKEY_Media_SeasonNumber","features":[503,374]},{"name":"PKEY_Media_SeriesName","features":[503,374]},{"name":"PKEY_Media_SubTitle","features":[503,374]},{"name":"PKEY_Media_SubscriptionContentId","features":[503,374]},{"name":"PKEY_Media_ThumbnailLargePath","features":[503,374]},{"name":"PKEY_Media_ThumbnailLargeUri","features":[503,374]},{"name":"PKEY_Media_ThumbnailSmallPath","features":[503,374]},{"name":"PKEY_Media_ThumbnailSmallUri","features":[503,374]},{"name":"PKEY_Media_UniqueFileIdentifier","features":[503,374]},{"name":"PKEY_Media_UserNoAutoInfo","features":[503,374]},{"name":"PKEY_Media_UserWebUrl","features":[503,374]},{"name":"PKEY_Media_Writer","features":[503,374]},{"name":"PKEY_Media_Year","features":[503,374]},{"name":"PKEY_MediumKeywords","features":[503,374]},{"name":"PKEY_Message_AttachmentContents","features":[503,374]},{"name":"PKEY_Message_AttachmentNames","features":[503,374]},{"name":"PKEY_Message_BccAddress","features":[503,374]},{"name":"PKEY_Message_BccName","features":[503,374]},{"name":"PKEY_Message_CcAddress","features":[503,374]},{"name":"PKEY_Message_CcName","features":[503,374]},{"name":"PKEY_Message_ConversationID","features":[503,374]},{"name":"PKEY_Message_ConversationIndex","features":[503,374]},{"name":"PKEY_Message_DateReceived","features":[503,374]},{"name":"PKEY_Message_DateSent","features":[503,374]},{"name":"PKEY_Message_Flags","features":[503,374]},{"name":"PKEY_Message_FromAddress","features":[503,374]},{"name":"PKEY_Message_FromName","features":[503,374]},{"name":"PKEY_Message_HasAttachments","features":[503,374]},{"name":"PKEY_Message_IsFwdOrReply","features":[503,374]},{"name":"PKEY_Message_MessageClass","features":[503,374]},{"name":"PKEY_Message_Participants","features":[503,374]},{"name":"PKEY_Message_ProofInProgress","features":[503,374]},{"name":"PKEY_Message_SenderAddress","features":[503,374]},{"name":"PKEY_Message_SenderName","features":[503,374]},{"name":"PKEY_Message_Store","features":[503,374]},{"name":"PKEY_Message_ToAddress","features":[503,374]},{"name":"PKEY_Message_ToDoFlags","features":[503,374]},{"name":"PKEY_Message_ToDoTitle","features":[503,374]},{"name":"PKEY_Message_ToName","features":[503,374]},{"name":"PKEY_MileageInformation","features":[503,374]},{"name":"PKEY_MsGraph_CompositeId","features":[503,374]},{"name":"PKEY_MsGraph_DriveId","features":[503,374]},{"name":"PKEY_MsGraph_ItemId","features":[503,374]},{"name":"PKEY_MsGraph_RecommendationReason","features":[503,374]},{"name":"PKEY_MsGraph_RecommendationReferenceId","features":[503,374]},{"name":"PKEY_MsGraph_RecommendationResultSourceId","features":[503,374]},{"name":"PKEY_MsGraph_WebAccountId","features":[503,374]},{"name":"PKEY_Music_AlbumArtist","features":[503,374]},{"name":"PKEY_Music_AlbumArtistSortOverride","features":[503,374]},{"name":"PKEY_Music_AlbumID","features":[503,374]},{"name":"PKEY_Music_AlbumTitle","features":[503,374]},{"name":"PKEY_Music_AlbumTitleSortOverride","features":[503,374]},{"name":"PKEY_Music_Artist","features":[503,374]},{"name":"PKEY_Music_ArtistSortOverride","features":[503,374]},{"name":"PKEY_Music_BeatsPerMinute","features":[503,374]},{"name":"PKEY_Music_Composer","features":[503,374]},{"name":"PKEY_Music_ComposerSortOverride","features":[503,374]},{"name":"PKEY_Music_Conductor","features":[503,374]},{"name":"PKEY_Music_ContentGroupDescription","features":[503,374]},{"name":"PKEY_Music_DiscNumber","features":[503,374]},{"name":"PKEY_Music_DisplayArtist","features":[503,374]},{"name":"PKEY_Music_Genre","features":[503,374]},{"name":"PKEY_Music_InitialKey","features":[503,374]},{"name":"PKEY_Music_IsCompilation","features":[503,374]},{"name":"PKEY_Music_Lyrics","features":[503,374]},{"name":"PKEY_Music_Mood","features":[503,374]},{"name":"PKEY_Music_PartOfSet","features":[503,374]},{"name":"PKEY_Music_Period","features":[503,374]},{"name":"PKEY_Music_SynchronizedLyrics","features":[503,374]},{"name":"PKEY_Music_TrackNumber","features":[503,374]},{"name":"PKEY_NamespaceCLSID","features":[503,374]},{"name":"PKEY_Note_Color","features":[503,374]},{"name":"PKEY_Note_ColorText","features":[503,374]},{"name":"PKEY_Null","features":[503,374]},{"name":"PKEY_OfflineAvailability","features":[503,374]},{"name":"PKEY_OfflineStatus","features":[503,374]},{"name":"PKEY_OriginalFileName","features":[503,374]},{"name":"PKEY_OwnerSID","features":[503,374]},{"name":"PKEY_ParentalRating","features":[503,374]},{"name":"PKEY_ParentalRatingReason","features":[503,374]},{"name":"PKEY_ParentalRatingsOrganization","features":[503,374]},{"name":"PKEY_ParsingBindContext","features":[503,374]},{"name":"PKEY_ParsingName","features":[503,374]},{"name":"PKEY_ParsingPath","features":[503,374]},{"name":"PKEY_PerceivedType","features":[503,374]},{"name":"PKEY_PercentFull","features":[503,374]},{"name":"PKEY_Photo_Aperture","features":[503,374]},{"name":"PKEY_Photo_ApertureDenominator","features":[503,374]},{"name":"PKEY_Photo_ApertureNumerator","features":[503,374]},{"name":"PKEY_Photo_Brightness","features":[503,374]},{"name":"PKEY_Photo_BrightnessDenominator","features":[503,374]},{"name":"PKEY_Photo_BrightnessNumerator","features":[503,374]},{"name":"PKEY_Photo_CameraManufacturer","features":[503,374]},{"name":"PKEY_Photo_CameraModel","features":[503,374]},{"name":"PKEY_Photo_CameraSerialNumber","features":[503,374]},{"name":"PKEY_Photo_Contrast","features":[503,374]},{"name":"PKEY_Photo_ContrastText","features":[503,374]},{"name":"PKEY_Photo_DateTaken","features":[503,374]},{"name":"PKEY_Photo_DigitalZoom","features":[503,374]},{"name":"PKEY_Photo_DigitalZoomDenominator","features":[503,374]},{"name":"PKEY_Photo_DigitalZoomNumerator","features":[503,374]},{"name":"PKEY_Photo_EXIFVersion","features":[503,374]},{"name":"PKEY_Photo_Event","features":[503,374]},{"name":"PKEY_Photo_ExposureBias","features":[503,374]},{"name":"PKEY_Photo_ExposureBiasDenominator","features":[503,374]},{"name":"PKEY_Photo_ExposureBiasNumerator","features":[503,374]},{"name":"PKEY_Photo_ExposureIndex","features":[503,374]},{"name":"PKEY_Photo_ExposureIndexDenominator","features":[503,374]},{"name":"PKEY_Photo_ExposureIndexNumerator","features":[503,374]},{"name":"PKEY_Photo_ExposureProgram","features":[503,374]},{"name":"PKEY_Photo_ExposureProgramText","features":[503,374]},{"name":"PKEY_Photo_ExposureTime","features":[503,374]},{"name":"PKEY_Photo_ExposureTimeDenominator","features":[503,374]},{"name":"PKEY_Photo_ExposureTimeNumerator","features":[503,374]},{"name":"PKEY_Photo_FNumber","features":[503,374]},{"name":"PKEY_Photo_FNumberDenominator","features":[503,374]},{"name":"PKEY_Photo_FNumberNumerator","features":[503,374]},{"name":"PKEY_Photo_Flash","features":[503,374]},{"name":"PKEY_Photo_FlashEnergy","features":[503,374]},{"name":"PKEY_Photo_FlashEnergyDenominator","features":[503,374]},{"name":"PKEY_Photo_FlashEnergyNumerator","features":[503,374]},{"name":"PKEY_Photo_FlashManufacturer","features":[503,374]},{"name":"PKEY_Photo_FlashModel","features":[503,374]},{"name":"PKEY_Photo_FlashText","features":[503,374]},{"name":"PKEY_Photo_FocalLength","features":[503,374]},{"name":"PKEY_Photo_FocalLengthDenominator","features":[503,374]},{"name":"PKEY_Photo_FocalLengthInFilm","features":[503,374]},{"name":"PKEY_Photo_FocalLengthNumerator","features":[503,374]},{"name":"PKEY_Photo_FocalPlaneXResolution","features":[503,374]},{"name":"PKEY_Photo_FocalPlaneXResolutionDenominator","features":[503,374]},{"name":"PKEY_Photo_FocalPlaneXResolutionNumerator","features":[503,374]},{"name":"PKEY_Photo_FocalPlaneYResolution","features":[503,374]},{"name":"PKEY_Photo_FocalPlaneYResolutionDenominator","features":[503,374]},{"name":"PKEY_Photo_FocalPlaneYResolutionNumerator","features":[503,374]},{"name":"PKEY_Photo_GainControl","features":[503,374]},{"name":"PKEY_Photo_GainControlDenominator","features":[503,374]},{"name":"PKEY_Photo_GainControlNumerator","features":[503,374]},{"name":"PKEY_Photo_GainControlText","features":[503,374]},{"name":"PKEY_Photo_ISOSpeed","features":[503,374]},{"name":"PKEY_Photo_LensManufacturer","features":[503,374]},{"name":"PKEY_Photo_LensModel","features":[503,374]},{"name":"PKEY_Photo_LightSource","features":[503,374]},{"name":"PKEY_Photo_MakerNote","features":[503,374]},{"name":"PKEY_Photo_MakerNoteOffset","features":[503,374]},{"name":"PKEY_Photo_MaxAperture","features":[503,374]},{"name":"PKEY_Photo_MaxApertureDenominator","features":[503,374]},{"name":"PKEY_Photo_MaxApertureNumerator","features":[503,374]},{"name":"PKEY_Photo_MeteringMode","features":[503,374]},{"name":"PKEY_Photo_MeteringModeText","features":[503,374]},{"name":"PKEY_Photo_Orientation","features":[503,374]},{"name":"PKEY_Photo_OrientationText","features":[503,374]},{"name":"PKEY_Photo_PeopleNames","features":[503,374]},{"name":"PKEY_Photo_PhotometricInterpretation","features":[503,374]},{"name":"PKEY_Photo_PhotometricInterpretationText","features":[503,374]},{"name":"PKEY_Photo_ProgramMode","features":[503,374]},{"name":"PKEY_Photo_ProgramModeText","features":[503,374]},{"name":"PKEY_Photo_RelatedSoundFile","features":[503,374]},{"name":"PKEY_Photo_Saturation","features":[503,374]},{"name":"PKEY_Photo_SaturationText","features":[503,374]},{"name":"PKEY_Photo_Sharpness","features":[503,374]},{"name":"PKEY_Photo_SharpnessText","features":[503,374]},{"name":"PKEY_Photo_ShutterSpeed","features":[503,374]},{"name":"PKEY_Photo_ShutterSpeedDenominator","features":[503,374]},{"name":"PKEY_Photo_ShutterSpeedNumerator","features":[503,374]},{"name":"PKEY_Photo_SubjectDistance","features":[503,374]},{"name":"PKEY_Photo_SubjectDistanceDenominator","features":[503,374]},{"name":"PKEY_Photo_SubjectDistanceNumerator","features":[503,374]},{"name":"PKEY_Photo_TagViewAggregate","features":[503,374]},{"name":"PKEY_Photo_TranscodedForSync","features":[503,374]},{"name":"PKEY_Photo_WhiteBalance","features":[503,374]},{"name":"PKEY_Photo_WhiteBalanceText","features":[503,374]},{"name":"PKEY_Priority","features":[503,374]},{"name":"PKEY_PriorityText","features":[503,374]},{"name":"PKEY_Project","features":[503,374]},{"name":"PKEY_PropGroup_Advanced","features":[503,374]},{"name":"PKEY_PropGroup_Audio","features":[503,374]},{"name":"PKEY_PropGroup_Calendar","features":[503,374]},{"name":"PKEY_PropGroup_Camera","features":[503,374]},{"name":"PKEY_PropGroup_Contact","features":[503,374]},{"name":"PKEY_PropGroup_Content","features":[503,374]},{"name":"PKEY_PropGroup_Description","features":[503,374]},{"name":"PKEY_PropGroup_FileSystem","features":[503,374]},{"name":"PKEY_PropGroup_GPS","features":[503,374]},{"name":"PKEY_PropGroup_General","features":[503,374]},{"name":"PKEY_PropGroup_Image","features":[503,374]},{"name":"PKEY_PropGroup_Media","features":[503,374]},{"name":"PKEY_PropGroup_MediaAdvanced","features":[503,374]},{"name":"PKEY_PropGroup_Message","features":[503,374]},{"name":"PKEY_PropGroup_Music","features":[503,374]},{"name":"PKEY_PropGroup_Origin","features":[503,374]},{"name":"PKEY_PropGroup_PhotoAdvanced","features":[503,374]},{"name":"PKEY_PropGroup_RecordedTV","features":[503,374]},{"name":"PKEY_PropGroup_Video","features":[503,374]},{"name":"PKEY_PropList_ConflictPrompt","features":[503,374]},{"name":"PKEY_PropList_ContentViewModeForBrowse","features":[503,374]},{"name":"PKEY_PropList_ContentViewModeForSearch","features":[503,374]},{"name":"PKEY_PropList_ExtendedTileInfo","features":[503,374]},{"name":"PKEY_PropList_FileOperationPrompt","features":[503,374]},{"name":"PKEY_PropList_FullDetails","features":[503,374]},{"name":"PKEY_PropList_InfoTip","features":[503,374]},{"name":"PKEY_PropList_NonPersonal","features":[503,374]},{"name":"PKEY_PropList_PreviewDetails","features":[503,374]},{"name":"PKEY_PropList_PreviewTitle","features":[503,374]},{"name":"PKEY_PropList_QuickTip","features":[503,374]},{"name":"PKEY_PropList_TileInfo","features":[503,374]},{"name":"PKEY_PropList_XPDetailsPanel","features":[503,374]},{"name":"PKEY_ProviderItemID","features":[503,374]},{"name":"PKEY_Rating","features":[503,374]},{"name":"PKEY_RatingText","features":[503,374]},{"name":"PKEY_RecordedTV_ChannelNumber","features":[503,374]},{"name":"PKEY_RecordedTV_Credits","features":[503,374]},{"name":"PKEY_RecordedTV_DateContentExpires","features":[503,374]},{"name":"PKEY_RecordedTV_EpisodeName","features":[503,374]},{"name":"PKEY_RecordedTV_IsATSCContent","features":[503,374]},{"name":"PKEY_RecordedTV_IsClosedCaptioningAvailable","features":[503,374]},{"name":"PKEY_RecordedTV_IsDTVContent","features":[503,374]},{"name":"PKEY_RecordedTV_IsHDContent","features":[503,374]},{"name":"PKEY_RecordedTV_IsRepeatBroadcast","features":[503,374]},{"name":"PKEY_RecordedTV_IsSAP","features":[503,374]},{"name":"PKEY_RecordedTV_NetworkAffiliation","features":[503,374]},{"name":"PKEY_RecordedTV_OriginalBroadcastDate","features":[503,374]},{"name":"PKEY_RecordedTV_ProgramDescription","features":[503,374]},{"name":"PKEY_RecordedTV_RecordingTime","features":[503,374]},{"name":"PKEY_RecordedTV_StationCallSign","features":[503,374]},{"name":"PKEY_RecordedTV_StationName","features":[503,374]},{"name":"PKEY_RemoteConflictingFile","features":[503,374]},{"name":"PKEY_SFGAOFlags","features":[503,374]},{"name":"PKEY_Search_AutoSummary","features":[503,374]},{"name":"PKEY_Search_ContainerHash","features":[503,374]},{"name":"PKEY_Search_Contents","features":[503,374]},{"name":"PKEY_Search_EntryID","features":[503,374]},{"name":"PKEY_Search_ExtendedProperties","features":[503,374]},{"name":"PKEY_Search_GatherTime","features":[503,374]},{"name":"PKEY_Search_HitCount","features":[503,374]},{"name":"PKEY_Search_IsClosedDirectory","features":[503,374]},{"name":"PKEY_Search_IsFullyContained","features":[503,374]},{"name":"PKEY_Search_QueryFocusedSummary","features":[503,374]},{"name":"PKEY_Search_QueryFocusedSummaryWithFallback","features":[503,374]},{"name":"PKEY_Search_QueryPropertyHits","features":[503,374]},{"name":"PKEY_Search_Rank","features":[503,374]},{"name":"PKEY_Search_Store","features":[503,374]},{"name":"PKEY_Search_UrlToIndex","features":[503,374]},{"name":"PKEY_Search_UrlToIndexWithModificationTime","features":[503,374]},{"name":"PKEY_Security_AllowedEnterpriseDataProtectionIdentities","features":[503,374]},{"name":"PKEY_Security_EncryptionOwners","features":[503,374]},{"name":"PKEY_Security_EncryptionOwnersDisplay","features":[503,374]},{"name":"PKEY_Sensitivity","features":[503,374]},{"name":"PKEY_SensitivityText","features":[503,374]},{"name":"PKEY_ShareUserRating","features":[503,374]},{"name":"PKEY_SharedWith","features":[503,374]},{"name":"PKEY_SharingStatus","features":[503,374]},{"name":"PKEY_Shell_OmitFromView","features":[503,374]},{"name":"PKEY_Shell_SFGAOFlagsStrings","features":[503,374]},{"name":"PKEY_SimpleRating","features":[503,374]},{"name":"PKEY_Size","features":[503,374]},{"name":"PKEY_SoftwareUsed","features":[503,374]},{"name":"PKEY_Software_DateLastUsed","features":[503,374]},{"name":"PKEY_Software_ProductName","features":[503,374]},{"name":"PKEY_SourceItem","features":[503,374]},{"name":"PKEY_SourcePackageFamilyName","features":[503,374]},{"name":"PKEY_StartDate","features":[503,374]},{"name":"PKEY_Status","features":[503,374]},{"name":"PKEY_StatusBarSelectedItemCount","features":[503,374]},{"name":"PKEY_StatusBarViewItemCount","features":[503,374]},{"name":"PKEY_StorageProviderCallerVersionInformation","features":[503,374]},{"name":"PKEY_StorageProviderError","features":[503,374]},{"name":"PKEY_StorageProviderFileChecksum","features":[503,374]},{"name":"PKEY_StorageProviderFileCreatedBy","features":[503,374]},{"name":"PKEY_StorageProviderFileFlags","features":[503,374]},{"name":"PKEY_StorageProviderFileHasConflict","features":[503,374]},{"name":"PKEY_StorageProviderFileIdentifier","features":[503,374]},{"name":"PKEY_StorageProviderFileModifiedBy","features":[503,374]},{"name":"PKEY_StorageProviderFileRemoteUri","features":[503,374]},{"name":"PKEY_StorageProviderFileVersion","features":[503,374]},{"name":"PKEY_StorageProviderFileVersionWaterline","features":[503,374]},{"name":"PKEY_StorageProviderId","features":[503,374]},{"name":"PKEY_StorageProviderShareStatuses","features":[503,374]},{"name":"PKEY_StorageProviderSharingStatus","features":[503,374]},{"name":"PKEY_StorageProviderState","features":[503,374]},{"name":"PKEY_StorageProviderStatus","features":[503,374]},{"name":"PKEY_StorageProviderTransferProgress","features":[503,374]},{"name":"PKEY_StorageProviderUIStatus","features":[503,374]},{"name":"PKEY_Storage_Portable","features":[503,374]},{"name":"PKEY_Storage_RemovableMedia","features":[503,374]},{"name":"PKEY_Storage_SystemCritical","features":[503,374]},{"name":"PKEY_Subject","features":[503,374]},{"name":"PKEY_Supplemental_Album","features":[503,374]},{"name":"PKEY_Supplemental_AlbumID","features":[503,374]},{"name":"PKEY_Supplemental_Location","features":[503,374]},{"name":"PKEY_Supplemental_Person","features":[503,374]},{"name":"PKEY_Supplemental_ResourceId","features":[503,374]},{"name":"PKEY_Supplemental_Tag","features":[503,374]},{"name":"PKEY_SyncTransferStatus","features":[503,374]},{"name":"PKEY_Sync_Comments","features":[503,374]},{"name":"PKEY_Sync_ConflictDescription","features":[503,374]},{"name":"PKEY_Sync_ConflictFirstLocation","features":[503,374]},{"name":"PKEY_Sync_ConflictSecondLocation","features":[503,374]},{"name":"PKEY_Sync_HandlerCollectionID","features":[503,374]},{"name":"PKEY_Sync_HandlerID","features":[503,374]},{"name":"PKEY_Sync_HandlerName","features":[503,374]},{"name":"PKEY_Sync_HandlerType","features":[503,374]},{"name":"PKEY_Sync_HandlerTypeLabel","features":[503,374]},{"name":"PKEY_Sync_ItemID","features":[503,374]},{"name":"PKEY_Sync_ItemName","features":[503,374]},{"name":"PKEY_Sync_ProgressPercentage","features":[503,374]},{"name":"PKEY_Sync_State","features":[503,374]},{"name":"PKEY_Sync_Status","features":[503,374]},{"name":"PKEY_Task_BillingInformation","features":[503,374]},{"name":"PKEY_Task_CompletionStatus","features":[503,374]},{"name":"PKEY_Task_Owner","features":[503,374]},{"name":"PKEY_Thumbnail","features":[503,374]},{"name":"PKEY_ThumbnailCacheId","features":[503,374]},{"name":"PKEY_ThumbnailStream","features":[503,374]},{"name":"PKEY_Title","features":[503,374]},{"name":"PKEY_TitleSortOverride","features":[503,374]},{"name":"PKEY_TotalFileSize","features":[503,374]},{"name":"PKEY_Trademarks","features":[503,374]},{"name":"PKEY_TransferOrder","features":[503,374]},{"name":"PKEY_TransferPosition","features":[503,374]},{"name":"PKEY_TransferSize","features":[503,374]},{"name":"PKEY_Video_Compression","features":[503,374]},{"name":"PKEY_Video_Director","features":[503,374]},{"name":"PKEY_Video_EncodingBitrate","features":[503,374]},{"name":"PKEY_Video_FourCC","features":[503,374]},{"name":"PKEY_Video_FrameHeight","features":[503,374]},{"name":"PKEY_Video_FrameRate","features":[503,374]},{"name":"PKEY_Video_FrameWidth","features":[503,374]},{"name":"PKEY_Video_HorizontalAspectRatio","features":[503,374]},{"name":"PKEY_Video_IsSpherical","features":[503,374]},{"name":"PKEY_Video_IsStereo","features":[503,374]},{"name":"PKEY_Video_Orientation","features":[503,374]},{"name":"PKEY_Video_SampleSize","features":[503,374]},{"name":"PKEY_Video_StreamName","features":[503,374]},{"name":"PKEY_Video_StreamNumber","features":[503,374]},{"name":"PKEY_Video_TotalBitrate","features":[503,374]},{"name":"PKEY_Video_TranscodedForSync","features":[503,374]},{"name":"PKEY_Video_VerticalAspectRatio","features":[503,374]},{"name":"PKEY_VolumeId","features":[503,374]},{"name":"PKEY_Volume_FileSystem","features":[503,374]},{"name":"PKEY_Volume_IsMappedDrive","features":[503,374]},{"name":"PKEY_Volume_IsRoot","features":[503,374]},{"name":"PKEY_ZoneIdentifier","features":[503,374]},{"name":"PLAYBACKSTATE_NOMEDIA","features":[503]},{"name":"PLAYBACKSTATE_PAUSED","features":[503]},{"name":"PLAYBACKSTATE_PLAYING","features":[503]},{"name":"PLAYBACKSTATE_RECORDING","features":[503]},{"name":"PLAYBACKSTATE_RECORDINGPAUSED","features":[503]},{"name":"PLAYBACKSTATE_STOPPED","features":[503]},{"name":"PLAYBACKSTATE_TRANSITIONING","features":[503]},{"name":"PLAYBACKSTATE_UNKNOWN","features":[503]},{"name":"RATING_FIVE_STARS_MAX","features":[503]},{"name":"RATING_FIVE_STARS_MIN","features":[503]},{"name":"RATING_FIVE_STARS_SET","features":[503]},{"name":"RATING_FOUR_STARS_MAX","features":[503]},{"name":"RATING_FOUR_STARS_MIN","features":[503]},{"name":"RATING_FOUR_STARS_SET","features":[503]},{"name":"RATING_ONE_STAR_MAX","features":[503]},{"name":"RATING_ONE_STAR_MIN","features":[503]},{"name":"RATING_ONE_STAR_SET","features":[503]},{"name":"RATING_THREE_STARS_MAX","features":[503]},{"name":"RATING_THREE_STARS_MIN","features":[503]},{"name":"RATING_THREE_STARS_SET","features":[503]},{"name":"RATING_TWO_STARS_MAX","features":[503]},{"name":"RATING_TWO_STARS_MIN","features":[503]},{"name":"RATING_TWO_STARS_SET","features":[503]},{"name":"SFGAOSTR_BROWSABLE","features":[503]},{"name":"SFGAOSTR_FILEANC","features":[503]},{"name":"SFGAOSTR_FILESYS","features":[503]},{"name":"SFGAOSTR_FOLDER","features":[503]},{"name":"SFGAOSTR_HIDDEN","features":[503]},{"name":"SFGAOSTR_LINK","features":[503]},{"name":"SFGAOSTR_NONENUM","features":[503]},{"name":"SFGAOSTR_PLACEHOLDER","features":[503]},{"name":"SFGAOSTR_STORAGEANC","features":[503]},{"name":"SFGAOSTR_STREAM","features":[503]},{"name":"SFGAOSTR_SUPERHIDDEN","features":[503]},{"name":"SFGAOSTR_SYSTEM","features":[503]},{"name":"SHARINGSTATUS_NOTSHARED","features":[503]},{"name":"SHARINGSTATUS_PRIVATE","features":[503]},{"name":"SHARINGSTATUS_SHARED","features":[503]},{"name":"SILO_INFO","features":[503]},{"name":"STORAGEPROVIDERSTATE_ERROR","features":[503]},{"name":"STORAGEPROVIDERSTATE_EXCLUDED","features":[503]},{"name":"STORAGEPROVIDERSTATE_IN_SYNC","features":[503]},{"name":"STORAGEPROVIDERSTATE_NONE","features":[503]},{"name":"STORAGEPROVIDERSTATE_PENDING_DOWNLOAD","features":[503]},{"name":"STORAGEPROVIDERSTATE_PENDING_UNSPECIFIED","features":[503]},{"name":"STORAGEPROVIDERSTATE_PENDING_UPLOAD","features":[503]},{"name":"STORAGEPROVIDERSTATE_PINNED","features":[503]},{"name":"STORAGEPROVIDERSTATE_SPARSE","features":[503]},{"name":"STORAGEPROVIDERSTATE_TRANSFERRING","features":[503]},{"name":"STORAGEPROVIDERSTATE_WARNING","features":[503]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_GROUP","features":[503]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_OWNER","features":[503]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_PRIVATE","features":[503]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_PUBLIC","features":[503]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_SHARED","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_NOTSHARED","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PRIVATE","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PUBLIC","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PUBLIC_COOWNED","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PUBLIC_OWNED","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_SHARED","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_SHARED_COOWNED","features":[503]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_SHARED_OWNED","features":[503]},{"name":"SYNC_HANDLERTYPE_COMPUTERS","features":[503]},{"name":"SYNC_HANDLERTYPE_DEVICES","features":[503]},{"name":"SYNC_HANDLERTYPE_FOLDERS","features":[503]},{"name":"SYNC_HANDLERTYPE_OTHER","features":[503]},{"name":"SYNC_HANDLERTYPE_PROGRAMS","features":[503]},{"name":"SYNC_HANDLERTYPE_WEBSERVICES","features":[503]},{"name":"SYNC_STATE_ERROR","features":[503]},{"name":"SYNC_STATE_IDLE","features":[503]},{"name":"SYNC_STATE_NOTSETUP","features":[503]},{"name":"SYNC_STATE_PENDING","features":[503]},{"name":"SYNC_STATE_SYNCING","features":[503]},{"name":"SYNC_STATE_SYNCNOTRUN","features":[503]},{"name":"WPD_CATEGORY_ENHANCED_STORAGE","features":[503]}],"508":[{"name":"BackupCancelled","features":[504]},{"name":"BackupInvalidStopReason","features":[504]},{"name":"BackupLimitUserBusyMachineOnAC","features":[504]},{"name":"BackupLimitUserBusyMachineOnDC","features":[504]},{"name":"BackupLimitUserIdleMachineOnDC","features":[504]},{"name":"FHCFG_E_CONFIGURATION_PREVIOUSLY_LOADED","features":[504]},{"name":"FHCFG_E_CONFIG_ALREADY_EXISTS","features":[504]},{"name":"FHCFG_E_CONFIG_FILE_NOT_FOUND","features":[504]},{"name":"FHCFG_E_CORRUPT_CONFIG_FILE","features":[504]},{"name":"FHCFG_E_INVALID_REHYDRATION_STATE","features":[504]},{"name":"FHCFG_E_LEGACY_BACKUP_NOT_FOUND","features":[504]},{"name":"FHCFG_E_LEGACY_BACKUP_USER_EXCLUDED","features":[504]},{"name":"FHCFG_E_LEGACY_TARGET_UNSUPPORTED","features":[504]},{"name":"FHCFG_E_LEGACY_TARGET_VALIDATION_UNSUPPORTED","features":[504]},{"name":"FHCFG_E_NO_VALID_CONFIGURATION_LOADED","features":[504]},{"name":"FHCFG_E_RECOMMENDATION_CHANGE_NOT_ALLOWED","features":[504]},{"name":"FHCFG_E_TARGET_CANNOT_BE_USED","features":[504]},{"name":"FHCFG_E_TARGET_NOT_CONFIGURED","features":[504]},{"name":"FHCFG_E_TARGET_NOT_CONNECTED","features":[504]},{"name":"FHCFG_E_TARGET_NOT_ENOUGH_FREE_SPACE","features":[504]},{"name":"FHCFG_E_TARGET_REHYDRATED_ELSEWHERE","features":[504]},{"name":"FHCFG_E_TARGET_VERIFICATION_FAILED","features":[504]},{"name":"FHSVC_E_BACKUP_BLOCKED","features":[504]},{"name":"FHSVC_E_CONFIG_DISABLED","features":[504]},{"name":"FHSVC_E_CONFIG_DISABLED_GP","features":[504]},{"name":"FHSVC_E_CONFIG_REHYDRATING","features":[504]},{"name":"FHSVC_E_FATAL_CONFIG_ERROR","features":[504]},{"name":"FHSVC_E_NOT_CONFIGURED","features":[504]},{"name":"FH_ACCESS_DENIED","features":[504]},{"name":"FH_BACKUP_STATUS","features":[504]},{"name":"FH_CURRENT_DEFAULT","features":[504]},{"name":"FH_DEVICE_VALIDATION_RESULT","features":[504]},{"name":"FH_DRIVE_FIXED","features":[504]},{"name":"FH_DRIVE_REMOTE","features":[504]},{"name":"FH_DRIVE_REMOVABLE","features":[504]},{"name":"FH_DRIVE_UNKNOWN","features":[504]},{"name":"FH_FOLDER","features":[504]},{"name":"FH_FREQUENCY","features":[504]},{"name":"FH_INVALID_DRIVE_TYPE","features":[504]},{"name":"FH_LIBRARY","features":[504]},{"name":"FH_LOCAL_POLICY_TYPE","features":[504]},{"name":"FH_NAMESPACE_EXISTS","features":[504]},{"name":"FH_PROTECTED_ITEM_CATEGORY","features":[504]},{"name":"FH_READ_ONLY_PERMISSION","features":[504]},{"name":"FH_RETENTION_AGE","features":[504]},{"name":"FH_RETENTION_AGE_BASED","features":[504]},{"name":"FH_RETENTION_DISABLED","features":[504]},{"name":"FH_RETENTION_TYPE","features":[504]},{"name":"FH_RETENTION_TYPES","features":[504]},{"name":"FH_RETENTION_UNLIMITED","features":[504]},{"name":"FH_STATE_BACKUP_NOT_SUPPORTED","features":[504]},{"name":"FH_STATE_DISABLED_BY_GP","features":[504]},{"name":"FH_STATE_FATAL_CONFIG_ERROR","features":[504]},{"name":"FH_STATE_MIGRATING","features":[504]},{"name":"FH_STATE_NOT_TRACKED","features":[504]},{"name":"FH_STATE_NO_ERROR","features":[504]},{"name":"FH_STATE_OFF","features":[504]},{"name":"FH_STATE_REHYDRATING","features":[504]},{"name":"FH_STATE_RUNNING","features":[504]},{"name":"FH_STATE_STAGING_FULL","features":[504]},{"name":"FH_STATE_TARGET_ABSENT","features":[504]},{"name":"FH_STATE_TARGET_ACCESS_DENIED","features":[504]},{"name":"FH_STATE_TARGET_FS_LIMITATION","features":[504]},{"name":"FH_STATE_TARGET_FULL","features":[504]},{"name":"FH_STATE_TARGET_FULL_RETENTION_MAX","features":[504]},{"name":"FH_STATE_TARGET_LOW_SPACE","features":[504]},{"name":"FH_STATE_TARGET_LOW_SPACE_RETENTION_MAX","features":[504]},{"name":"FH_STATE_TARGET_VOLUME_DIRTY","features":[504]},{"name":"FH_STATE_TOO_MUCH_BEHIND","features":[504]},{"name":"FH_STATUS_DISABLED","features":[504]},{"name":"FH_STATUS_DISABLED_BY_GP","features":[504]},{"name":"FH_STATUS_ENABLED","features":[504]},{"name":"FH_STATUS_REHYDRATING","features":[504]},{"name":"FH_TARGET_DRIVE_TYPE","features":[504]},{"name":"FH_TARGET_DRIVE_TYPES","features":[504]},{"name":"FH_TARGET_NAME","features":[504]},{"name":"FH_TARGET_PART_OF_LIBRARY","features":[504]},{"name":"FH_TARGET_PROPERTY_TYPE","features":[504]},{"name":"FH_TARGET_URL","features":[504]},{"name":"FH_VALID_TARGET","features":[504]},{"name":"FhBackupStopReason","features":[504]},{"name":"FhConfigMgr","features":[504]},{"name":"FhReassociation","features":[504]},{"name":"FhServiceBlockBackup","features":[504,335]},{"name":"FhServiceClosePipe","features":[504,335]},{"name":"FhServiceOpenPipe","features":[303,504,335]},{"name":"FhServiceReloadConfiguration","features":[504,335]},{"name":"FhServiceStartBackup","features":[303,504,335]},{"name":"FhServiceStopBackup","features":[303,504,335]},{"name":"FhServiceUnblockBackup","features":[504,335]},{"name":"IFhConfigMgr","features":[504]},{"name":"IFhReassociation","features":[504]},{"name":"IFhScopeIterator","features":[504]},{"name":"IFhTarget","features":[504]},{"name":"MAX_BACKUP_STATUS","features":[504]},{"name":"MAX_LOCAL_POLICY","features":[504]},{"name":"MAX_PROTECTED_ITEM_CATEGORY","features":[504]},{"name":"MAX_RETENTION_TYPE","features":[504]},{"name":"MAX_TARGET_PROPERTY","features":[504]},{"name":"MAX_VALIDATION_RESULT","features":[504]}],"509":[{"name":"AdSyncTask","features":[505]},{"name":"AdrClientDisplayFlags","features":[505]},{"name":"AdrClientDisplayFlags_AllowEmailRequests","features":[505]},{"name":"AdrClientDisplayFlags_ShowDeviceTroubleshooting","features":[505]},{"name":"AdrClientErrorType","features":[505]},{"name":"AdrClientErrorType_AccessDenied","features":[505]},{"name":"AdrClientErrorType_FileNotFound","features":[505]},{"name":"AdrClientErrorType_Unknown","features":[505]},{"name":"AdrClientFlags","features":[505]},{"name":"AdrClientFlags_FailForLocalPaths","features":[505]},{"name":"AdrClientFlags_FailIfNotDomainJoined","features":[505]},{"name":"AdrClientFlags_FailIfNotSupportedByServer","features":[505]},{"name":"AdrClientFlags_None","features":[505]},{"name":"AdrEmailFlags","features":[505]},{"name":"AdrEmailFlags_GenerateEventLog","features":[505]},{"name":"AdrEmailFlags_IncludeDeviceClaims","features":[505]},{"name":"AdrEmailFlags_IncludeUserInfo","features":[505]},{"name":"AdrEmailFlags_PutAdminOnToLine","features":[505]},{"name":"AdrEmailFlags_PutDataOwnerOnToLine","features":[505]},{"name":"DIFsrmClassificationEvents","features":[505,354]},{"name":"FSRM_DISPID_FEATURE_CLASSIFICATION","features":[505]},{"name":"FSRM_DISPID_FEATURE_FILESCREEN","features":[505]},{"name":"FSRM_DISPID_FEATURE_GENERAL","features":[505]},{"name":"FSRM_DISPID_FEATURE_MASK","features":[505]},{"name":"FSRM_DISPID_FEATURE_PIPELINE","features":[505]},{"name":"FSRM_DISPID_FEATURE_QUOTA","features":[505]},{"name":"FSRM_DISPID_FEATURE_REPORTS","features":[505]},{"name":"FSRM_DISPID_INTERFACE_A_MASK","features":[505]},{"name":"FSRM_DISPID_INTERFACE_B_MASK","features":[505]},{"name":"FSRM_DISPID_INTERFACE_C_MASK","features":[505]},{"name":"FSRM_DISPID_INTERFACE_D_MASK","features":[505]},{"name":"FSRM_DISPID_IS_PROPERTY","features":[505]},{"name":"FSRM_DISPID_METHOD_NUM_MASK","features":[505]},{"name":"FSRM_E_ADR_MAX_EMAILS_SENT","features":[505]},{"name":"FSRM_E_ADR_NOT_DOMAIN_JOINED","features":[505]},{"name":"FSRM_E_ADR_PATH_IS_LOCAL","features":[505]},{"name":"FSRM_E_ADR_SRV_NOT_SUPPORTED","features":[505]},{"name":"FSRM_E_ALREADY_EXISTS","features":[505]},{"name":"FSRM_E_AUTO_QUOTA","features":[505]},{"name":"FSRM_E_CACHE_INVALID","features":[505]},{"name":"FSRM_E_CACHE_MODULE_ALREADY_EXISTS","features":[505]},{"name":"FSRM_E_CANNOT_AGGREGATE","features":[505]},{"name":"FSRM_E_CANNOT_ALLOW_REPARSE_POINT_TAG","features":[505]},{"name":"FSRM_E_CANNOT_CHANGE_PROPERTY_TYPE","features":[505]},{"name":"FSRM_E_CANNOT_CREATE_TEMP_COPY","features":[505]},{"name":"FSRM_E_CANNOT_DELETE_SYSTEM_PROPERTY","features":[505]},{"name":"FSRM_E_CANNOT_REMOVE_READONLY","features":[505]},{"name":"FSRM_E_CANNOT_RENAME_PROPERTY","features":[505]},{"name":"FSRM_E_CANNOT_STORE_PROPERTIES","features":[505]},{"name":"FSRM_E_CANNOT_USE_DELETED_PROPERTY","features":[505]},{"name":"FSRM_E_CANNOT_USE_DEPRECATED_PROPERTY","features":[505]},{"name":"FSRM_E_CLASSIFICATION_ALREADY_RUNNING","features":[505]},{"name":"FSRM_E_CLASSIFICATION_CANCELED","features":[505]},{"name":"FSRM_E_CLASSIFICATION_NOT_RUNNING","features":[505]},{"name":"FSRM_E_CLASSIFICATION_PARTIAL_BATCH","features":[505]},{"name":"FSRM_E_CLASSIFICATION_SCAN_FAIL","features":[505]},{"name":"FSRM_E_CLASSIFICATION_TIMEOUT","features":[505]},{"name":"FSRM_E_CLUSTER_NOT_RUNNING","features":[505]},{"name":"FSRM_E_CSC_PATH_NOT_SUPPORTED","features":[505]},{"name":"FSRM_E_DIFFERENT_CLUSTER_GROUP","features":[505]},{"name":"FSRM_E_DRIVER_NOT_READY","features":[505]},{"name":"FSRM_E_DUPLICATE_NAME","features":[505]},{"name":"FSRM_E_EMAIL_NOT_SENT","features":[505]},{"name":"FSRM_E_ENUM_PROPERTIES_FAILED","features":[505]},{"name":"FSRM_E_ERROR_NOT_ENABLED","features":[505]},{"name":"FSRM_E_EXPIRATION_PATH_NOT_WRITEABLE","features":[505]},{"name":"FSRM_E_EXPIRATION_PATH_TOO_LONG","features":[505]},{"name":"FSRM_E_EXPIRATION_VOLUME_NOT_NTFS","features":[505]},{"name":"FSRM_E_FAIL_BATCH","features":[505]},{"name":"FSRM_E_FILE_ENCRYPTED","features":[505]},{"name":"FSRM_E_FILE_IN_USE","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_ACTION_GET_EXITCODE_FAILED","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_ACTION_TIMEOUT","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_EXPIRATION_DIR_IN_SCOPE","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_ALREADY_EXISTS","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_ALREADY_RUNNING","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_CUSTOM","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_DEPRECATED","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_EXPIRATION","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_INVALID_CONTINUOUS_CONFIG","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_MAX_FILE_CONDITIONS","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_NOTIFICATION","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_NOT_LEGACY_ACCESSIBLE","features":[505]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_RMS","features":[505]},{"name":"FSRM_E_FILE_OPEN_ERROR","features":[505]},{"name":"FSRM_E_FILE_SYSTEM_CORRUPT","features":[505]},{"name":"FSRM_E_INCOMPATIBLE_FORMAT","features":[505]},{"name":"FSRM_E_INPROC_MODULE_BLOCKED","features":[505]},{"name":"FSRM_E_INSECURE_PATH","features":[505]},{"name":"FSRM_E_INSUFFICIENT_DISK","features":[505]},{"name":"FSRM_E_INVALID_AD_CLAIM","features":[505]},{"name":"FSRM_E_INVALID_COMBINATION","features":[505]},{"name":"FSRM_E_INVALID_DATASCREEN_DEFINITION","features":[505]},{"name":"FSRM_E_INVALID_EMAIL_ADDRESS","features":[505]},{"name":"FSRM_E_INVALID_FILEGROUP_DEFINITION","features":[505]},{"name":"FSRM_E_INVALID_FILENAME","features":[505]},{"name":"FSRM_E_INVALID_FOLDER_PROPERTY_STORE","features":[505]},{"name":"FSRM_E_INVALID_IMPORT_VERSION","features":[505]},{"name":"FSRM_E_INVALID_LIMIT","features":[505]},{"name":"FSRM_E_INVALID_NAME","features":[505]},{"name":"FSRM_E_INVALID_PATH","features":[505]},{"name":"FSRM_E_INVALID_REPORT_DESC","features":[505]},{"name":"FSRM_E_INVALID_REPORT_FORMAT","features":[505]},{"name":"FSRM_E_INVALID_SCHEDULER_ARGUMENT","features":[505]},{"name":"FSRM_E_INVALID_SMTP_SERVER","features":[505]},{"name":"FSRM_E_INVALID_TEXT","features":[505]},{"name":"FSRM_E_INVALID_USER","features":[505]},{"name":"FSRM_E_LAST_ACCESS_UPDATE_DISABLED","features":[505]},{"name":"FSRM_E_LEGACY_SCHEDULE","features":[505]},{"name":"FSRM_E_LOADING_DISABLED_MODULE","features":[505]},{"name":"FSRM_E_LONG_CMDLINE","features":[505]},{"name":"FSRM_E_MAX_PROPERTY_DEFINITIONS","features":[505]},{"name":"FSRM_E_MESSAGE_LIMIT_EXCEEDED","features":[505]},{"name":"FSRM_E_MODULE_INITIALIZATION","features":[505]},{"name":"FSRM_E_MODULE_INVALID_PARAM","features":[505]},{"name":"FSRM_E_MODULE_SESSION_INITIALIZATION","features":[505]},{"name":"FSRM_E_MODULE_TIMEOUT","features":[505]},{"name":"FSRM_E_NOT_CLUSTER_VOLUME","features":[505]},{"name":"FSRM_E_NOT_FOUND","features":[505]},{"name":"FSRM_E_NOT_SUPPORTED","features":[505]},{"name":"FSRM_E_NO_EMAIL_ADDRESS","features":[505]},{"name":"FSRM_E_NO_PROPERTY_VALUE","features":[505]},{"name":"FSRM_E_OBJECT_IN_USE","features":[505]},{"name":"FSRM_E_OUT_OF_RANGE","features":[505]},{"name":"FSRM_E_PARTIAL_CLASSIFICATION_PROPERTY_NOT_FOUND","features":[505]},{"name":"FSRM_E_PATH_NOT_FOUND","features":[505]},{"name":"FSRM_E_PATH_NOT_IN_NAMESPACE","features":[505]},{"name":"FSRM_E_PERSIST_PROPERTIES_FAILED","features":[505]},{"name":"FSRM_E_PERSIST_PROPERTIES_FAILED_ENCRYPTED","features":[505]},{"name":"FSRM_E_PROPERTY_DELETED","features":[505]},{"name":"FSRM_E_PROPERTY_MUST_APPLY_TO_FILES","features":[505]},{"name":"FSRM_E_PROPERTY_MUST_APPLY_TO_FOLDERS","features":[505]},{"name":"FSRM_E_PROPERTY_MUST_BE_GLOBAL","features":[505]},{"name":"FSRM_E_PROPERTY_MUST_BE_SECURE","features":[505]},{"name":"FSRM_E_REBUILDING_FODLER_TYPE_INDEX","features":[505]},{"name":"FSRM_E_REPORT_GENERATION_ERR","features":[505]},{"name":"FSRM_E_REPORT_JOB_ALREADY_RUNNING","features":[505]},{"name":"FSRM_E_REPORT_TASK_TRIGGER","features":[505]},{"name":"FSRM_E_REPORT_TYPE_ALREADY_EXISTS","features":[505]},{"name":"FSRM_E_REQD_PARAM_MISSING","features":[505]},{"name":"FSRM_E_RMS_NO_PROTECTORS_INSTALLED","features":[505]},{"name":"FSRM_E_RMS_NO_PROTECTOR_INSTALLED_FOR_FILE","features":[505]},{"name":"FSRM_E_RMS_TEMPLATE_NOT_FOUND","features":[505]},{"name":"FSRM_E_SECURE_PROPERTIES_NOT_SUPPORTED","features":[505]},{"name":"FSRM_E_SET_PROPERTY_FAILED","features":[505]},{"name":"FSRM_E_SHADOW_COPY","features":[505]},{"name":"FSRM_E_STORE_NOT_INSTALLED","features":[505]},{"name":"FSRM_E_SYNC_TASK_HAD_ERRORS","features":[505]},{"name":"FSRM_E_SYNC_TASK_TIMEOUT","features":[505]},{"name":"FSRM_E_TEXTREADER_FILENAME_TOO_LONG","features":[505]},{"name":"FSRM_E_TEXTREADER_IFILTER_CLSID_MALFORMED","features":[505]},{"name":"FSRM_E_TEXTREADER_IFILTER_NOT_FOUND","features":[505]},{"name":"FSRM_E_TEXTREADER_NOT_INITIALIZED","features":[505]},{"name":"FSRM_E_TEXTREADER_STREAM_ERROR","features":[505]},{"name":"FSRM_E_UNEXPECTED","features":[505]},{"name":"FSRM_E_UNSECURE_LINK_TO_HOSTED_MODULE","features":[505]},{"name":"FSRM_E_VOLUME_OFFLINE","features":[505]},{"name":"FSRM_E_VOLUME_UNSUPPORTED","features":[505]},{"name":"FSRM_E_WMI_FAILURE","features":[505]},{"name":"FSRM_E_XML_CORRUPTED","features":[505]},{"name":"FSRM_S_CLASSIFICATION_SCAN_FAILURES","features":[505]},{"name":"FSRM_S_PARTIAL_BATCH","features":[505]},{"name":"FSRM_S_PARTIAL_CLASSIFICATION","features":[505]},{"name":"FsrmAccessDeniedRemediationClient","features":[505]},{"name":"FsrmAccountType","features":[505]},{"name":"FsrmAccountType_Automatic","features":[505]},{"name":"FsrmAccountType_External","features":[505]},{"name":"FsrmAccountType_InProc","features":[505]},{"name":"FsrmAccountType_LocalService","features":[505]},{"name":"FsrmAccountType_LocalSystem","features":[505]},{"name":"FsrmAccountType_NetworkService","features":[505]},{"name":"FsrmAccountType_Unknown","features":[505]},{"name":"FsrmActionType","features":[505]},{"name":"FsrmActionType_Command","features":[505]},{"name":"FsrmActionType_Email","features":[505]},{"name":"FsrmActionType_EventLog","features":[505]},{"name":"FsrmActionType_Report","features":[505]},{"name":"FsrmActionType_Unknown","features":[505]},{"name":"FsrmClassificationLoggingFlags","features":[505]},{"name":"FsrmClassificationLoggingFlags_ClassificationsInLogFile","features":[505]},{"name":"FsrmClassificationLoggingFlags_ClassificationsInSystemLog","features":[505]},{"name":"FsrmClassificationLoggingFlags_ErrorsInLogFile","features":[505]},{"name":"FsrmClassificationLoggingFlags_ErrorsInSystemLog","features":[505]},{"name":"FsrmClassificationLoggingFlags_None","features":[505]},{"name":"FsrmClassificationManager","features":[505]},{"name":"FsrmCollectionState","features":[505]},{"name":"FsrmCollectionState_Cancelled","features":[505]},{"name":"FsrmCollectionState_Committing","features":[505]},{"name":"FsrmCollectionState_Complete","features":[505]},{"name":"FsrmCollectionState_Fetching","features":[505]},{"name":"FsrmCommitOptions","features":[505]},{"name":"FsrmCommitOptions_Asynchronous","features":[505]},{"name":"FsrmCommitOptions_None","features":[505]},{"name":"FsrmDaysNotSpecified","features":[505]},{"name":"FsrmEnumOptions","features":[505]},{"name":"FsrmEnumOptions_Asynchronous","features":[505]},{"name":"FsrmEnumOptions_CheckRecycleBin","features":[505]},{"name":"FsrmEnumOptions_IncludeClusterNodes","features":[505]},{"name":"FsrmEnumOptions_IncludeDeprecatedObjects","features":[505]},{"name":"FsrmEnumOptions_None","features":[505]},{"name":"FsrmEventType","features":[505]},{"name":"FsrmEventType_Error","features":[505]},{"name":"FsrmEventType_Information","features":[505]},{"name":"FsrmEventType_Unknown","features":[505]},{"name":"FsrmEventType_Warning","features":[505]},{"name":"FsrmExecutionOption","features":[505]},{"name":"FsrmExecutionOption_EvaluateUnset","features":[505]},{"name":"FsrmExecutionOption_ReEvaluate_ConsiderExistingValue","features":[505]},{"name":"FsrmExecutionOption_ReEvaluate_IgnoreExistingValue","features":[505]},{"name":"FsrmExecutionOption_Unknown","features":[505]},{"name":"FsrmExportImport","features":[505]},{"name":"FsrmFileConditionType","features":[505]},{"name":"FsrmFileConditionType_Property","features":[505]},{"name":"FsrmFileConditionType_Unknown","features":[505]},{"name":"FsrmFileGroupManager","features":[505]},{"name":"FsrmFileManagementJobManager","features":[505]},{"name":"FsrmFileManagementLoggingFlags","features":[505]},{"name":"FsrmFileManagementLoggingFlags_Audit","features":[505]},{"name":"FsrmFileManagementLoggingFlags_Error","features":[505]},{"name":"FsrmFileManagementLoggingFlags_Information","features":[505]},{"name":"FsrmFileManagementLoggingFlags_None","features":[505]},{"name":"FsrmFileManagementType","features":[505]},{"name":"FsrmFileManagementType_Custom","features":[505]},{"name":"FsrmFileManagementType_Expiration","features":[505]},{"name":"FsrmFileManagementType_Rms","features":[505]},{"name":"FsrmFileManagementType_Unknown","features":[505]},{"name":"FsrmFileScreenFlags","features":[505]},{"name":"FsrmFileScreenFlags_Enforce","features":[505]},{"name":"FsrmFileScreenManager","features":[505]},{"name":"FsrmFileScreenTemplateManager","features":[505]},{"name":"FsrmFileStreamingInterfaceType","features":[505]},{"name":"FsrmFileStreamingInterfaceType_ILockBytes","features":[505]},{"name":"FsrmFileStreamingInterfaceType_IStream","features":[505]},{"name":"FsrmFileStreamingInterfaceType_Unknown","features":[505]},{"name":"FsrmFileStreamingMode","features":[505]},{"name":"FsrmFileStreamingMode_Read","features":[505]},{"name":"FsrmFileStreamingMode_Unknown","features":[505]},{"name":"FsrmFileStreamingMode_Write","features":[505]},{"name":"FsrmFileSystemPropertyId","features":[505]},{"name":"FsrmFileSystemPropertyId_DateCreated","features":[505]},{"name":"FsrmFileSystemPropertyId_DateLastAccessed","features":[505]},{"name":"FsrmFileSystemPropertyId_DateLastModified","features":[505]},{"name":"FsrmFileSystemPropertyId_DateNow","features":[505]},{"name":"FsrmFileSystemPropertyId_FileName","features":[505]},{"name":"FsrmFileSystemPropertyId_Undefined","features":[505]},{"name":"FsrmGetFilePropertyOptions","features":[505]},{"name":"FsrmGetFilePropertyOptions_FailOnPersistErrors","features":[505]},{"name":"FsrmGetFilePropertyOptions_NoRuleEvaluation","features":[505]},{"name":"FsrmGetFilePropertyOptions_None","features":[505]},{"name":"FsrmGetFilePropertyOptions_Persistent","features":[505]},{"name":"FsrmGetFilePropertyOptions_SkipOrphaned","features":[505]},{"name":"FsrmMaxExcludeFolders","features":[505]},{"name":"FsrmMaxNumberPropertyDefinitions","features":[505]},{"name":"FsrmMaxNumberThresholds","features":[505]},{"name":"FsrmMaxThresholdValue","features":[505]},{"name":"FsrmMinQuotaLimit","features":[505]},{"name":"FsrmMinThresholdValue","features":[505]},{"name":"FsrmPathMapper","features":[505]},{"name":"FsrmPipelineModuleConnector","features":[505]},{"name":"FsrmPipelineModuleType","features":[505]},{"name":"FsrmPipelineModuleType_Classifier","features":[505]},{"name":"FsrmPipelineModuleType_Storage","features":[505]},{"name":"FsrmPipelineModuleType_Unknown","features":[505]},{"name":"FsrmPropertyBagField","features":[505]},{"name":"FsrmPropertyBagField_AccessVolume","features":[505]},{"name":"FsrmPropertyBagField_VolumeGuidName","features":[505]},{"name":"FsrmPropertyBagFlags","features":[505]},{"name":"FsrmPropertyBagFlags_FailedClassifyingProperties","features":[505]},{"name":"FsrmPropertyBagFlags_FailedLoadingProperties","features":[505]},{"name":"FsrmPropertyBagFlags_FailedSavingProperties","features":[505]},{"name":"FsrmPropertyBagFlags_UpdatedByClassifier","features":[505]},{"name":"FsrmPropertyConditionType","features":[505]},{"name":"FsrmPropertyConditionType_Contain","features":[505]},{"name":"FsrmPropertyConditionType_ContainedIn","features":[505]},{"name":"FsrmPropertyConditionType_EndWith","features":[505]},{"name":"FsrmPropertyConditionType_Equal","features":[505]},{"name":"FsrmPropertyConditionType_Exist","features":[505]},{"name":"FsrmPropertyConditionType_GreaterThan","features":[505]},{"name":"FsrmPropertyConditionType_LessThan","features":[505]},{"name":"FsrmPropertyConditionType_MatchesPattern","features":[505]},{"name":"FsrmPropertyConditionType_NotEqual","features":[505]},{"name":"FsrmPropertyConditionType_NotExist","features":[505]},{"name":"FsrmPropertyConditionType_PrefixOf","features":[505]},{"name":"FsrmPropertyConditionType_StartWith","features":[505]},{"name":"FsrmPropertyConditionType_SuffixOf","features":[505]},{"name":"FsrmPropertyConditionType_Unknown","features":[505]},{"name":"FsrmPropertyDefinitionAppliesTo","features":[505]},{"name":"FsrmPropertyDefinitionAppliesTo_Files","features":[505]},{"name":"FsrmPropertyDefinitionAppliesTo_Folders","features":[505]},{"name":"FsrmPropertyDefinitionFlags","features":[505]},{"name":"FsrmPropertyDefinitionFlags_Deprecated","features":[505]},{"name":"FsrmPropertyDefinitionFlags_Global","features":[505]},{"name":"FsrmPropertyDefinitionFlags_Secure","features":[505]},{"name":"FsrmPropertyDefinitionType","features":[505]},{"name":"FsrmPropertyDefinitionType_Bool","features":[505]},{"name":"FsrmPropertyDefinitionType_Date","features":[505]},{"name":"FsrmPropertyDefinitionType_Int","features":[505]},{"name":"FsrmPropertyDefinitionType_MultiChoiceList","features":[505]},{"name":"FsrmPropertyDefinitionType_MultiString","features":[505]},{"name":"FsrmPropertyDefinitionType_OrderedList","features":[505]},{"name":"FsrmPropertyDefinitionType_SingleChoiceList","features":[505]},{"name":"FsrmPropertyDefinitionType_String","features":[505]},{"name":"FsrmPropertyDefinitionType_Unknown","features":[505]},{"name":"FsrmPropertyFlags","features":[505]},{"name":"FsrmPropertyFlags_AggregationFailed","features":[505]},{"name":"FsrmPropertyFlags_Deleted","features":[505]},{"name":"FsrmPropertyFlags_Existing","features":[505]},{"name":"FsrmPropertyFlags_ExplicitValueDeleted","features":[505]},{"name":"FsrmPropertyFlags_FailedClassifyingProperties","features":[505]},{"name":"FsrmPropertyFlags_FailedLoadingProperties","features":[505]},{"name":"FsrmPropertyFlags_FailedSavingProperties","features":[505]},{"name":"FsrmPropertyFlags_Inherited","features":[505]},{"name":"FsrmPropertyFlags_Manual","features":[505]},{"name":"FsrmPropertyFlags_None","features":[505]},{"name":"FsrmPropertyFlags_Orphaned","features":[505]},{"name":"FsrmPropertyFlags_PersistentMask","features":[505]},{"name":"FsrmPropertyFlags_PolicyDerived","features":[505]},{"name":"FsrmPropertyFlags_PropertyDeletedFromClear","features":[505]},{"name":"FsrmPropertyFlags_PropertySourceMask","features":[505]},{"name":"FsrmPropertyFlags_Reclassified","features":[505]},{"name":"FsrmPropertyFlags_RetrievedFromCache","features":[505]},{"name":"FsrmPropertyFlags_RetrievedFromStorage","features":[505]},{"name":"FsrmPropertyFlags_Secure","features":[505]},{"name":"FsrmPropertyFlags_SetByClassifier","features":[505]},{"name":"FsrmPropertyValueType","features":[505]},{"name":"FsrmPropertyValueType_DateOffset","features":[505]},{"name":"FsrmPropertyValueType_Literal","features":[505]},{"name":"FsrmPropertyValueType_Undefined","features":[505]},{"name":"FsrmQuotaFlags","features":[505]},{"name":"FsrmQuotaFlags_Disable","features":[505]},{"name":"FsrmQuotaFlags_Enforce","features":[505]},{"name":"FsrmQuotaFlags_StatusIncomplete","features":[505]},{"name":"FsrmQuotaFlags_StatusRebuilding","features":[505]},{"name":"FsrmQuotaManager","features":[505]},{"name":"FsrmQuotaTemplateManager","features":[505]},{"name":"FsrmReportFilter","features":[505]},{"name":"FsrmReportFilter_FileGroups","features":[505]},{"name":"FsrmReportFilter_MaxAgeDays","features":[505]},{"name":"FsrmReportFilter_MinAgeDays","features":[505]},{"name":"FsrmReportFilter_MinQuotaUsage","features":[505]},{"name":"FsrmReportFilter_MinSize","features":[505]},{"name":"FsrmReportFilter_NamePattern","features":[505]},{"name":"FsrmReportFilter_Owners","features":[505]},{"name":"FsrmReportFilter_Property","features":[505]},{"name":"FsrmReportFormat","features":[505]},{"name":"FsrmReportFormat_Csv","features":[505]},{"name":"FsrmReportFormat_DHtml","features":[505]},{"name":"FsrmReportFormat_Html","features":[505]},{"name":"FsrmReportFormat_Txt","features":[505]},{"name":"FsrmReportFormat_Unknown","features":[505]},{"name":"FsrmReportFormat_Xml","features":[505]},{"name":"FsrmReportGenerationContext","features":[505]},{"name":"FsrmReportGenerationContext_IncidentReport","features":[505]},{"name":"FsrmReportGenerationContext_InteractiveReport","features":[505]},{"name":"FsrmReportGenerationContext_ScheduledReport","features":[505]},{"name":"FsrmReportGenerationContext_Undefined","features":[505]},{"name":"FsrmReportLimit","features":[505]},{"name":"FsrmReportLimit_MaxDuplicateGroups","features":[505]},{"name":"FsrmReportLimit_MaxFileGroups","features":[505]},{"name":"FsrmReportLimit_MaxFileScreenEvents","features":[505]},{"name":"FsrmReportLimit_MaxFiles","features":[505]},{"name":"FsrmReportLimit_MaxFilesPerDuplGroup","features":[505]},{"name":"FsrmReportLimit_MaxFilesPerFileGroup","features":[505]},{"name":"FsrmReportLimit_MaxFilesPerOwner","features":[505]},{"name":"FsrmReportLimit_MaxFilesPerPropertyValue","features":[505]},{"name":"FsrmReportLimit_MaxFolders","features":[505]},{"name":"FsrmReportLimit_MaxOwners","features":[505]},{"name":"FsrmReportLimit_MaxPropertyValues","features":[505]},{"name":"FsrmReportLimit_MaxQuotas","features":[505]},{"name":"FsrmReportManager","features":[505]},{"name":"FsrmReportRunningStatus","features":[505]},{"name":"FsrmReportRunningStatus_NotRunning","features":[505]},{"name":"FsrmReportRunningStatus_Queued","features":[505]},{"name":"FsrmReportRunningStatus_Running","features":[505]},{"name":"FsrmReportRunningStatus_Unknown","features":[505]},{"name":"FsrmReportScheduler","features":[505]},{"name":"FsrmReportType","features":[505]},{"name":"FsrmReportType_AutomaticClassification","features":[505]},{"name":"FsrmReportType_DuplicateFiles","features":[505]},{"name":"FsrmReportType_Expiration","features":[505]},{"name":"FsrmReportType_ExportReport","features":[505]},{"name":"FsrmReportType_FileScreenAudit","features":[505]},{"name":"FsrmReportType_FilesByOwner","features":[505]},{"name":"FsrmReportType_FilesByProperty","features":[505]},{"name":"FsrmReportType_FilesByType","features":[505]},{"name":"FsrmReportType_FoldersByProperty","features":[505]},{"name":"FsrmReportType_LargeFiles","features":[505]},{"name":"FsrmReportType_LeastRecentlyAccessed","features":[505]},{"name":"FsrmReportType_MostRecentlyAccessed","features":[505]},{"name":"FsrmReportType_QuotaUsage","features":[505]},{"name":"FsrmReportType_Unknown","features":[505]},{"name":"FsrmRuleFlags","features":[505]},{"name":"FsrmRuleFlags_ClearAutomaticallyClassifiedProperty","features":[505]},{"name":"FsrmRuleFlags_ClearManuallyClassifiedProperty","features":[505]},{"name":"FsrmRuleFlags_Disabled","features":[505]},{"name":"FsrmRuleFlags_Invalid","features":[505]},{"name":"FsrmRuleType","features":[505]},{"name":"FsrmRuleType_Classification","features":[505]},{"name":"FsrmRuleType_Generic","features":[505]},{"name":"FsrmRuleType_Unknown","features":[505]},{"name":"FsrmSetting","features":[505]},{"name":"FsrmStorageModuleCaps","features":[505]},{"name":"FsrmStorageModuleCaps_CanGet","features":[505]},{"name":"FsrmStorageModuleCaps_CanHandleDirectories","features":[505]},{"name":"FsrmStorageModuleCaps_CanHandleFiles","features":[505]},{"name":"FsrmStorageModuleCaps_CanSet","features":[505]},{"name":"FsrmStorageModuleCaps_Unknown","features":[505]},{"name":"FsrmStorageModuleType","features":[505]},{"name":"FsrmStorageModuleType_Cache","features":[505]},{"name":"FsrmStorageModuleType_Database","features":[505]},{"name":"FsrmStorageModuleType_InFile","features":[505]},{"name":"FsrmStorageModuleType_System","features":[505]},{"name":"FsrmStorageModuleType_Unknown","features":[505]},{"name":"FsrmTemplateApplyOptions","features":[505]},{"name":"FsrmTemplateApplyOptions_ApplyToDerivedAll","features":[505]},{"name":"FsrmTemplateApplyOptions_ApplyToDerivedMatching","features":[505]},{"name":"IFsrmAccessDeniedRemediationClient","features":[505,354]},{"name":"IFsrmAction","features":[505,354]},{"name":"IFsrmActionCommand","features":[505,354]},{"name":"IFsrmActionEmail","features":[505,354]},{"name":"IFsrmActionEmail2","features":[505,354]},{"name":"IFsrmActionEventLog","features":[505,354]},{"name":"IFsrmActionReport","features":[505,354]},{"name":"IFsrmAutoApplyQuota","features":[505,354]},{"name":"IFsrmClassificationManager","features":[505,354]},{"name":"IFsrmClassificationManager2","features":[505,354]},{"name":"IFsrmClassificationRule","features":[505,354]},{"name":"IFsrmClassifierModuleDefinition","features":[505,354]},{"name":"IFsrmClassifierModuleImplementation","features":[505,354]},{"name":"IFsrmCollection","features":[505,354]},{"name":"IFsrmCommittableCollection","features":[505,354]},{"name":"IFsrmDerivedObjectsResult","features":[505,354]},{"name":"IFsrmExportImport","features":[505,354]},{"name":"IFsrmFileCondition","features":[505,354]},{"name":"IFsrmFileConditionProperty","features":[505,354]},{"name":"IFsrmFileGroup","features":[505,354]},{"name":"IFsrmFileGroupImported","features":[505,354]},{"name":"IFsrmFileGroupManager","features":[505,354]},{"name":"IFsrmFileManagementJob","features":[505,354]},{"name":"IFsrmFileManagementJobManager","features":[505,354]},{"name":"IFsrmFileScreen","features":[505,354]},{"name":"IFsrmFileScreenBase","features":[505,354]},{"name":"IFsrmFileScreenException","features":[505,354]},{"name":"IFsrmFileScreenManager","features":[505,354]},{"name":"IFsrmFileScreenTemplate","features":[505,354]},{"name":"IFsrmFileScreenTemplateImported","features":[505,354]},{"name":"IFsrmFileScreenTemplateManager","features":[505,354]},{"name":"IFsrmMutableCollection","features":[505,354]},{"name":"IFsrmObject","features":[505,354]},{"name":"IFsrmPathMapper","features":[505,354]},{"name":"IFsrmPipelineModuleConnector","features":[505,354]},{"name":"IFsrmPipelineModuleDefinition","features":[505,354]},{"name":"IFsrmPipelineModuleImplementation","features":[505,354]},{"name":"IFsrmProperty","features":[505,354]},{"name":"IFsrmPropertyBag","features":[505,354]},{"name":"IFsrmPropertyBag2","features":[505,354]},{"name":"IFsrmPropertyCondition","features":[505,354]},{"name":"IFsrmPropertyDefinition","features":[505,354]},{"name":"IFsrmPropertyDefinition2","features":[505,354]},{"name":"IFsrmPropertyDefinitionValue","features":[505,354]},{"name":"IFsrmQuota","features":[505,354]},{"name":"IFsrmQuotaBase","features":[505,354]},{"name":"IFsrmQuotaManager","features":[505,354]},{"name":"IFsrmQuotaManagerEx","features":[505,354]},{"name":"IFsrmQuotaObject","features":[505,354]},{"name":"IFsrmQuotaTemplate","features":[505,354]},{"name":"IFsrmQuotaTemplateImported","features":[505,354]},{"name":"IFsrmQuotaTemplateManager","features":[505,354]},{"name":"IFsrmReport","features":[505,354]},{"name":"IFsrmReportJob","features":[505,354]},{"name":"IFsrmReportManager","features":[505,354]},{"name":"IFsrmReportScheduler","features":[505,354]},{"name":"IFsrmRule","features":[505,354]},{"name":"IFsrmSetting","features":[505,354]},{"name":"IFsrmStorageModuleDefinition","features":[505,354]},{"name":"IFsrmStorageModuleImplementation","features":[505,354]},{"name":"MessageSizeLimit","features":[505]}],"510":[{"name":"ACCESS_ALL","features":[322]},{"name":"ACCESS_ATRIB","features":[322]},{"name":"ACCESS_CREATE","features":[322]},{"name":"ACCESS_DELETE","features":[322]},{"name":"ACCESS_EXEC","features":[322]},{"name":"ACCESS_PERM","features":[322]},{"name":"ACCESS_READ","features":[322]},{"name":"ACCESS_WRITE","features":[322]},{"name":"AddLogContainer","features":[303,322]},{"name":"AddLogContainerSet","features":[303,322]},{"name":"AddUsersToEncryptedFile","features":[306,322]},{"name":"AdvanceLogBase","features":[303,322,308]},{"name":"AlignReservedLog","features":[303,322]},{"name":"AllocReservedLog","features":[303,322]},{"name":"AreFileApisANSI","features":[303,322]},{"name":"AreShortNamesEnabled","features":[303,322]},{"name":"BACKUP_ALTERNATE_DATA","features":[322]},{"name":"BACKUP_DATA","features":[322]},{"name":"BACKUP_EA_DATA","features":[322]},{"name":"BACKUP_LINK","features":[322]},{"name":"BACKUP_OBJECT_ID","features":[322]},{"name":"BACKUP_PROPERTY_DATA","features":[322]},{"name":"BACKUP_REPARSE_DATA","features":[322]},{"name":"BACKUP_SECURITY_DATA","features":[322]},{"name":"BACKUP_SPARSE_BLOCK","features":[322]},{"name":"BACKUP_TXFS_DATA","features":[322]},{"name":"BY_HANDLE_FILE_INFORMATION","features":[303,322]},{"name":"BackupRead","features":[303,322]},{"name":"BackupSeek","features":[303,322]},{"name":"BackupWrite","features":[303,322]},{"name":"BuildIoRingCancelRequest","features":[303,322]},{"name":"BuildIoRingFlushFile","features":[303,322]},{"name":"BuildIoRingReadFile","features":[303,322]},{"name":"BuildIoRingRegisterBuffers","features":[322]},{"name":"BuildIoRingRegisterFileHandles","features":[303,322]},{"name":"BuildIoRingWriteFile","features":[303,322]},{"name":"BusType1394","features":[322]},{"name":"BusTypeAta","features":[322]},{"name":"BusTypeAtapi","features":[322]},{"name":"BusTypeFibre","features":[322]},{"name":"BusTypeFileBackedVirtual","features":[322]},{"name":"BusTypeMax","features":[322]},{"name":"BusTypeMaxReserved","features":[322]},{"name":"BusTypeMmc","features":[322]},{"name":"BusTypeNvme","features":[322]},{"name":"BusTypeRAID","features":[322]},{"name":"BusTypeSCM","features":[322]},{"name":"BusTypeSas","features":[322]},{"name":"BusTypeSata","features":[322]},{"name":"BusTypeScsi","features":[322]},{"name":"BusTypeSd","features":[322]},{"name":"BusTypeSpaces","features":[322]},{"name":"BusTypeSsa","features":[322]},{"name":"BusTypeUfs","features":[322]},{"name":"BusTypeUnknown","features":[322]},{"name":"BusTypeUsb","features":[322]},{"name":"BusTypeVirtual","features":[322]},{"name":"BusTypeiScsi","features":[322]},{"name":"CACHE_ACCESS_CHECK","features":[303,306,322]},{"name":"CACHE_DESTROY_CALLBACK","features":[322]},{"name":"CACHE_KEY_COMPARE","features":[322]},{"name":"CACHE_KEY_HASH","features":[322]},{"name":"CACHE_READ_CALLBACK","features":[303,322]},{"name":"CALLBACK_CHUNK_FINISHED","features":[322]},{"name":"CALLBACK_STREAM_SWITCH","features":[322]},{"name":"CLAIMMEDIALABEL","features":[322]},{"name":"CLAIMMEDIALABELEX","features":[322]},{"name":"CLFS_BASELOG_EXTENSION","features":[322]},{"name":"CLFS_BLOCK_ALLOCATION","features":[322]},{"name":"CLFS_BLOCK_DEALLOCATION","features":[322]},{"name":"CLFS_CONTAINER_RELATIVE_PREFIX","features":[322]},{"name":"CLFS_CONTAINER_STREAM_PREFIX","features":[322]},{"name":"CLFS_CONTEXT_MODE","features":[322]},{"name":"CLFS_FLAG","features":[322]},{"name":"CLFS_FLAG_FILTER_INTERMEDIATE_LEVEL","features":[322]},{"name":"CLFS_FLAG_FILTER_TOP_LEVEL","features":[322]},{"name":"CLFS_FLAG_FORCE_APPEND","features":[322]},{"name":"CLFS_FLAG_FORCE_FLUSH","features":[322]},{"name":"CLFS_FLAG_HIDDEN_SYSTEM_LOG","features":[322]},{"name":"CLFS_FLAG_IGNORE_SHARE_ACCESS","features":[322]},{"name":"CLFS_FLAG_MINIFILTER_LEVEL","features":[322]},{"name":"CLFS_FLAG_NON_REENTRANT_FILTER","features":[322]},{"name":"CLFS_FLAG_NO_FLAGS","features":[322]},{"name":"CLFS_FLAG_READ_IN_PROGRESS","features":[322]},{"name":"CLFS_FLAG_REENTRANT_FILE_SYSTEM","features":[322]},{"name":"CLFS_FLAG_REENTRANT_FILTER","features":[322]},{"name":"CLFS_FLAG_USE_RESERVATION","features":[322]},{"name":"CLFS_IOSTATS_CLASS","features":[322]},{"name":"CLFS_LOG_ARCHIVE_MODE","features":[322]},{"name":"CLFS_LOG_NAME_INFORMATION","features":[322]},{"name":"CLFS_MARSHALLING_FLAG_DISABLE_BUFF_INIT","features":[322]},{"name":"CLFS_MARSHALLING_FLAG_NONE","features":[322]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[322]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION_VERSION","features":[322]},{"name":"CLFS_MGMT_NOTIFICATION","features":[322]},{"name":"CLFS_MGMT_NOTIFICATION_TYPE","features":[322]},{"name":"CLFS_MGMT_POLICY","features":[322]},{"name":"CLFS_MGMT_POLICY_TYPE","features":[322]},{"name":"CLFS_MGMT_POLICY_VERSION","features":[322]},{"name":"CLFS_NODE_ID","features":[322]},{"name":"CLFS_PHYSICAL_LSN_INFORMATION","features":[322]},{"name":"CLFS_SCAN_BACKWARD","features":[322]},{"name":"CLFS_SCAN_BUFFERED","features":[322]},{"name":"CLFS_SCAN_CLOSE","features":[322]},{"name":"CLFS_SCAN_FORWARD","features":[322]},{"name":"CLFS_SCAN_INIT","features":[322]},{"name":"CLFS_SCAN_INITIALIZED","features":[322]},{"name":"CLFS_STREAM_ID_INFORMATION","features":[322]},{"name":"CLSID_DiskQuotaControl","features":[322]},{"name":"CLS_ARCHIVE_DESCRIPTOR","features":[322]},{"name":"CLS_CONTAINER_INFORMATION","features":[322]},{"name":"CLS_CONTEXT_MODE","features":[322]},{"name":"CLS_INFORMATION","features":[322]},{"name":"CLS_IOSTATS_CLASS","features":[322]},{"name":"CLS_IO_STATISTICS","features":[322]},{"name":"CLS_IO_STATISTICS_HEADER","features":[322]},{"name":"CLS_LOG_INFORMATION_CLASS","features":[322]},{"name":"CLS_LSN","features":[322]},{"name":"CLS_SCAN_CONTEXT","features":[303,322]},{"name":"CLS_WRITE_ENTRY","features":[322]},{"name":"COMPRESSION_FORMAT","features":[322]},{"name":"COMPRESSION_FORMAT_DEFAULT","features":[322]},{"name":"COMPRESSION_FORMAT_LZNT1","features":[322]},{"name":"COMPRESSION_FORMAT_NONE","features":[322]},{"name":"COMPRESSION_FORMAT_XP10","features":[322]},{"name":"COMPRESSION_FORMAT_XPRESS","features":[322]},{"name":"COMPRESSION_FORMAT_XPRESS_HUFF","features":[322]},{"name":"CONNECTION_INFO_0","features":[322]},{"name":"CONNECTION_INFO_1","features":[322]},{"name":"COPYFILE2_CALLBACK_CHUNK_FINISHED","features":[322]},{"name":"COPYFILE2_CALLBACK_CHUNK_STARTED","features":[322]},{"name":"COPYFILE2_CALLBACK_ERROR","features":[322]},{"name":"COPYFILE2_CALLBACK_MAX","features":[322]},{"name":"COPYFILE2_CALLBACK_NONE","features":[322]},{"name":"COPYFILE2_CALLBACK_POLL_CONTINUE","features":[322]},{"name":"COPYFILE2_CALLBACK_STREAM_FINISHED","features":[322]},{"name":"COPYFILE2_CALLBACK_STREAM_STARTED","features":[322]},{"name":"COPYFILE2_COPY_PHASE","features":[322]},{"name":"COPYFILE2_EXTENDED_PARAMETERS","features":[303,322]},{"name":"COPYFILE2_EXTENDED_PARAMETERS_V2","features":[303,322]},{"name":"COPYFILE2_MESSAGE","features":[303,322]},{"name":"COPYFILE2_MESSAGE_ACTION","features":[322]},{"name":"COPYFILE2_MESSAGE_TYPE","features":[322]},{"name":"COPYFILE2_PHASE_MAX","features":[322]},{"name":"COPYFILE2_PHASE_NAMEGRAFT_COPY","features":[322]},{"name":"COPYFILE2_PHASE_NONE","features":[322]},{"name":"COPYFILE2_PHASE_PREPARE_DEST","features":[322]},{"name":"COPYFILE2_PHASE_PREPARE_SOURCE","features":[322]},{"name":"COPYFILE2_PHASE_READ_SOURCE","features":[322]},{"name":"COPYFILE2_PHASE_SERVER_COPY","features":[322]},{"name":"COPYFILE2_PHASE_WRITE_DESTINATION","features":[322]},{"name":"COPYFILE2_PROGRESS_CANCEL","features":[322]},{"name":"COPYFILE2_PROGRESS_CONTINUE","features":[322]},{"name":"COPYFILE2_PROGRESS_PAUSE","features":[322]},{"name":"COPYFILE2_PROGRESS_QUIET","features":[322]},{"name":"COPYFILE2_PROGRESS_STOP","features":[322]},{"name":"CREATEFILE2_EXTENDED_PARAMETERS","features":[303,306,322]},{"name":"CREATE_ALWAYS","features":[322]},{"name":"CREATE_NEW","features":[322]},{"name":"CREATE_TAPE_PARTITION_METHOD","features":[322]},{"name":"CRM_PROTOCOL_DYNAMIC_MARSHAL_INFO","features":[322]},{"name":"CRM_PROTOCOL_EXPLICIT_MARSHAL_ONLY","features":[322]},{"name":"CRM_PROTOCOL_MAXIMUM_OPTION","features":[322]},{"name":"CSC_CACHE_AUTO_REINT","features":[322]},{"name":"CSC_CACHE_MANUAL_REINT","features":[322]},{"name":"CSC_CACHE_NONE","features":[322]},{"name":"CSC_CACHE_VDO","features":[322]},{"name":"CSC_MASK","features":[322]},{"name":"CSC_MASK_EXT","features":[322]},{"name":"CSV_BLOCK_AND_FILE_CACHE_CALLBACK_VERSION","features":[322]},{"name":"CSV_BLOCK_CACHE_CALLBACK_VERSION","features":[322]},{"name":"CheckNameLegalDOS8Dot3A","features":[303,322]},{"name":"CheckNameLegalDOS8Dot3W","features":[303,322]},{"name":"ClfsClientRecord","features":[322]},{"name":"ClfsContainerActive","features":[322]},{"name":"ClfsContainerActivePendingDelete","features":[322]},{"name":"ClfsContainerInactive","features":[322]},{"name":"ClfsContainerInitializing","features":[322]},{"name":"ClfsContainerPendingArchive","features":[322]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[322]},{"name":"ClfsContextForward","features":[322]},{"name":"ClfsContextNone","features":[322]},{"name":"ClfsContextPrevious","features":[322]},{"name":"ClfsContextUndoNext","features":[322]},{"name":"ClfsDataRecord","features":[322]},{"name":"ClfsIoStatsDefault","features":[322]},{"name":"ClfsIoStatsMax","features":[322]},{"name":"ClfsLogArchiveDisabled","features":[322]},{"name":"ClfsLogArchiveEnabled","features":[322]},{"name":"ClfsLogBasicInformation","features":[322]},{"name":"ClfsLogBasicInformationPhysical","features":[322]},{"name":"ClfsLogPhysicalLsnInformation","features":[322]},{"name":"ClfsLogPhysicalNameInformation","features":[322]},{"name":"ClfsLogStreamIdentifierInformation","features":[322]},{"name":"ClfsLogSystemMarkingInformation","features":[322]},{"name":"ClfsMgmtAdvanceTailNotification","features":[322]},{"name":"ClfsMgmtLogFullHandlerNotification","features":[322]},{"name":"ClfsMgmtLogUnpinnedNotification","features":[322]},{"name":"ClfsMgmtLogWriteNotification","features":[322]},{"name":"ClfsMgmtPolicyAutoGrow","features":[322]},{"name":"ClfsMgmtPolicyAutoShrink","features":[322]},{"name":"ClfsMgmtPolicyGrowthRate","features":[322]},{"name":"ClfsMgmtPolicyInvalid","features":[322]},{"name":"ClfsMgmtPolicyLogTail","features":[322]},{"name":"ClfsMgmtPolicyMaximumSize","features":[322]},{"name":"ClfsMgmtPolicyMinimumSize","features":[322]},{"name":"ClfsMgmtPolicyNewContainerExtension","features":[322]},{"name":"ClfsMgmtPolicyNewContainerPrefix","features":[322]},{"name":"ClfsMgmtPolicyNewContainerSize","features":[322]},{"name":"ClfsMgmtPolicyNewContainerSuffix","features":[322]},{"name":"ClfsNullRecord","features":[322]},{"name":"ClfsRestartRecord","features":[322]},{"name":"CloseAndResetLogFile","features":[303,322]},{"name":"CloseEncryptedFileRaw","features":[322]},{"name":"CloseIoRing","features":[322]},{"name":"ClsContainerActive","features":[322]},{"name":"ClsContainerActivePendingDelete","features":[322]},{"name":"ClsContainerInactive","features":[322]},{"name":"ClsContainerInitializing","features":[322]},{"name":"ClsContainerPendingArchive","features":[322]},{"name":"ClsContainerPendingArchiveAndDelete","features":[322]},{"name":"ClsContextForward","features":[322]},{"name":"ClsContextNone","features":[322]},{"name":"ClsContextPrevious","features":[322]},{"name":"ClsContextUndoNext","features":[322]},{"name":"ClsIoStatsDefault","features":[322]},{"name":"ClsIoStatsMax","features":[322]},{"name":"CommitComplete","features":[303,322]},{"name":"CommitEnlistment","features":[303,322]},{"name":"CommitTransaction","features":[303,322]},{"name":"CommitTransactionAsync","features":[303,322]},{"name":"CompareFileTime","features":[303,322]},{"name":"CopyFile2","features":[303,322]},{"name":"CopyFileA","features":[303,322]},{"name":"CopyFileExA","features":[303,322]},{"name":"CopyFileExW","features":[303,322]},{"name":"CopyFileFromAppW","features":[303,322]},{"name":"CopyFileTransactedA","features":[303,322]},{"name":"CopyFileTransactedW","features":[303,322]},{"name":"CopyFileW","features":[303,322]},{"name":"CopyLZFile","features":[322]},{"name":"CreateDirectoryA","features":[303,306,322]},{"name":"CreateDirectoryExA","features":[303,306,322]},{"name":"CreateDirectoryExW","features":[303,306,322]},{"name":"CreateDirectoryFromAppW","features":[303,306,322]},{"name":"CreateDirectoryTransactedA","features":[303,306,322]},{"name":"CreateDirectoryTransactedW","features":[303,306,322]},{"name":"CreateDirectoryW","features":[303,306,322]},{"name":"CreateEnlistment","features":[303,306,322]},{"name":"CreateFile2","features":[303,306,322]},{"name":"CreateFile2FromAppW","features":[303,306,322]},{"name":"CreateFileA","features":[303,306,322]},{"name":"CreateFileFromAppW","features":[303,306,322]},{"name":"CreateFileTransactedA","features":[303,306,322]},{"name":"CreateFileTransactedW","features":[303,306,322]},{"name":"CreateFileW","features":[303,306,322]},{"name":"CreateHardLinkA","features":[303,306,322]},{"name":"CreateHardLinkTransactedA","features":[303,306,322]},{"name":"CreateHardLinkTransactedW","features":[303,306,322]},{"name":"CreateHardLinkW","features":[303,306,322]},{"name":"CreateIoRing","features":[322]},{"name":"CreateLogContainerScanContext","features":[303,322,308]},{"name":"CreateLogFile","features":[303,306,322]},{"name":"CreateLogMarshallingArea","features":[303,322]},{"name":"CreateResourceManager","features":[303,306,322]},{"name":"CreateSymbolicLinkA","features":[303,322]},{"name":"CreateSymbolicLinkTransactedA","features":[303,322]},{"name":"CreateSymbolicLinkTransactedW","features":[303,322]},{"name":"CreateSymbolicLinkW","features":[303,322]},{"name":"CreateTapePartition","features":[303,322]},{"name":"CreateTransaction","features":[303,306,322]},{"name":"CreateTransactionManager","features":[303,306,322]},{"name":"DDD_EXACT_MATCH_ON_REMOVE","features":[322]},{"name":"DDD_LUID_BROADCAST_DRIVE","features":[322]},{"name":"DDD_NO_BROADCAST_SYSTEM","features":[322]},{"name":"DDD_RAW_TARGET_PATH","features":[322]},{"name":"DDD_REMOVE_DEFINITION","features":[322]},{"name":"DEFINE_DOS_DEVICE_FLAGS","features":[322]},{"name":"DELETE","features":[322]},{"name":"DISKQUOTA_FILESTATE_INCOMPLETE","features":[322]},{"name":"DISKQUOTA_FILESTATE_MASK","features":[322]},{"name":"DISKQUOTA_FILESTATE_REBUILDING","features":[322]},{"name":"DISKQUOTA_LOGFLAG_USER_LIMIT","features":[322]},{"name":"DISKQUOTA_LOGFLAG_USER_THRESHOLD","features":[322]},{"name":"DISKQUOTA_STATE_DISABLED","features":[322]},{"name":"DISKQUOTA_STATE_ENFORCE","features":[322]},{"name":"DISKQUOTA_STATE_MASK","features":[322]},{"name":"DISKQUOTA_STATE_TRACK","features":[322]},{"name":"DISKQUOTA_USERNAME_RESOLVE","features":[322]},{"name":"DISKQUOTA_USERNAME_RESOLVE_ASYNC","features":[322]},{"name":"DISKQUOTA_USERNAME_RESOLVE_NONE","features":[322]},{"name":"DISKQUOTA_USERNAME_RESOLVE_SYNC","features":[322]},{"name":"DISKQUOTA_USER_ACCOUNT_DELETED","features":[322]},{"name":"DISKQUOTA_USER_ACCOUNT_INVALID","features":[322]},{"name":"DISKQUOTA_USER_ACCOUNT_RESOLVED","features":[322]},{"name":"DISKQUOTA_USER_ACCOUNT_UNAVAILABLE","features":[322]},{"name":"DISKQUOTA_USER_ACCOUNT_UNKNOWN","features":[322]},{"name":"DISKQUOTA_USER_ACCOUNT_UNRESOLVED","features":[322]},{"name":"DISKQUOTA_USER_INFORMATION","features":[322]},{"name":"DISK_SPACE_INFORMATION","features":[322]},{"name":"DecryptFileA","features":[303,322]},{"name":"DecryptFileW","features":[303,322]},{"name":"DefineDosDeviceA","features":[303,322]},{"name":"DefineDosDeviceW","features":[303,322]},{"name":"DeleteFileA","features":[303,322]},{"name":"DeleteFileFromAppW","features":[303,322]},{"name":"DeleteFileTransactedA","features":[303,322]},{"name":"DeleteFileTransactedW","features":[303,322]},{"name":"DeleteFileW","features":[303,322]},{"name":"DeleteLogByHandle","features":[303,322]},{"name":"DeleteLogFile","features":[303,322]},{"name":"DeleteLogMarshallingArea","features":[303,322]},{"name":"DeleteVolumeMountPointA","features":[303,322]},{"name":"DeleteVolumeMountPointW","features":[303,322]},{"name":"DeregisterManageableLogClient","features":[303,322]},{"name":"DuplicateEncryptionInfoFile","features":[303,306,322]},{"name":"EA_CONTAINER_NAME","features":[322]},{"name":"EA_CONTAINER_SIZE","features":[322]},{"name":"EFS_CERTIFICATE_BLOB","features":[322]},{"name":"EFS_COMPATIBILITY_INFO","features":[322]},{"name":"EFS_COMPATIBILITY_VERSION_NCRYPT_PROTECTOR","features":[322]},{"name":"EFS_COMPATIBILITY_VERSION_PFILE_PROTECTOR","features":[322]},{"name":"EFS_DECRYPTION_STATUS_INFO","features":[322]},{"name":"EFS_EFS_SUBVER_EFS_CERT","features":[322]},{"name":"EFS_ENCRYPTION_STATUS_INFO","features":[303,322]},{"name":"EFS_HASH_BLOB","features":[322]},{"name":"EFS_KEY_INFO","features":[387,322]},{"name":"EFS_METADATA_ADD_USER","features":[322]},{"name":"EFS_METADATA_GENERAL_OP","features":[322]},{"name":"EFS_METADATA_REMOVE_USER","features":[322]},{"name":"EFS_METADATA_REPLACE_USER","features":[322]},{"name":"EFS_PFILE_SUBVER_APPX","features":[322]},{"name":"EFS_PFILE_SUBVER_RMS","features":[322]},{"name":"EFS_PIN_BLOB","features":[322]},{"name":"EFS_RPC_BLOB","features":[322]},{"name":"EFS_SUBVER_UNKNOWN","features":[322]},{"name":"EFS_VERSION_INFO","features":[322]},{"name":"ENCRYPTED_FILE_METADATA_SIGNATURE","features":[306,322]},{"name":"ENCRYPTION_CERTIFICATE","features":[306,322]},{"name":"ENCRYPTION_CERTIFICATE_HASH","features":[306,322]},{"name":"ENCRYPTION_CERTIFICATE_HASH_LIST","features":[306,322]},{"name":"ENCRYPTION_CERTIFICATE_LIST","features":[306,322]},{"name":"ENCRYPTION_PROTECTOR","features":[306,322]},{"name":"ENCRYPTION_PROTECTOR_LIST","features":[306,322]},{"name":"ENLISTMENT_MAXIMUM_OPTION","features":[322]},{"name":"ENLISTMENT_OBJECT_PATH","features":[322]},{"name":"ENLISTMENT_SUPERIOR","features":[322]},{"name":"ERASE_TAPE_TYPE","features":[322]},{"name":"EncryptFileA","features":[303,322]},{"name":"EncryptFileW","features":[303,322]},{"name":"EncryptionDisable","features":[303,322]},{"name":"EraseTape","features":[303,322]},{"name":"ExtendedFileIdType","features":[322]},{"name":"FCACHE_CREATE_CALLBACK","features":[303,322]},{"name":"FCACHE_RICHCREATE_CALLBACK","features":[303,322]},{"name":"FH_OVERLAPPED","features":[303,322]},{"name":"FILE_ACCESS_RIGHTS","features":[322]},{"name":"FILE_ACTION","features":[322]},{"name":"FILE_ACTION_ADDED","features":[322]},{"name":"FILE_ACTION_MODIFIED","features":[322]},{"name":"FILE_ACTION_REMOVED","features":[322]},{"name":"FILE_ACTION_RENAMED_NEW_NAME","features":[322]},{"name":"FILE_ACTION_RENAMED_OLD_NAME","features":[322]},{"name":"FILE_ADD_FILE","features":[322]},{"name":"FILE_ADD_SUBDIRECTORY","features":[322]},{"name":"FILE_ALIGNMENT_INFO","features":[322]},{"name":"FILE_ALLOCATION_INFO","features":[322]},{"name":"FILE_ALL_ACCESS","features":[322]},{"name":"FILE_APPEND_DATA","features":[322]},{"name":"FILE_ATTRIBUTE_ARCHIVE","features":[322]},{"name":"FILE_ATTRIBUTE_COMPRESSED","features":[322]},{"name":"FILE_ATTRIBUTE_DEVICE","features":[322]},{"name":"FILE_ATTRIBUTE_DIRECTORY","features":[322]},{"name":"FILE_ATTRIBUTE_EA","features":[322]},{"name":"FILE_ATTRIBUTE_ENCRYPTED","features":[322]},{"name":"FILE_ATTRIBUTE_HIDDEN","features":[322]},{"name":"FILE_ATTRIBUTE_INTEGRITY_STREAM","features":[322]},{"name":"FILE_ATTRIBUTE_NORMAL","features":[322]},{"name":"FILE_ATTRIBUTE_NOT_CONTENT_INDEXED","features":[322]},{"name":"FILE_ATTRIBUTE_NO_SCRUB_DATA","features":[322]},{"name":"FILE_ATTRIBUTE_OFFLINE","features":[322]},{"name":"FILE_ATTRIBUTE_PINNED","features":[322]},{"name":"FILE_ATTRIBUTE_READONLY","features":[322]},{"name":"FILE_ATTRIBUTE_RECALL_ON_DATA_ACCESS","features":[322]},{"name":"FILE_ATTRIBUTE_RECALL_ON_OPEN","features":[322]},{"name":"FILE_ATTRIBUTE_REPARSE_POINT","features":[322]},{"name":"FILE_ATTRIBUTE_SPARSE_FILE","features":[322]},{"name":"FILE_ATTRIBUTE_SYSTEM","features":[322]},{"name":"FILE_ATTRIBUTE_TAG_INFO","features":[322]},{"name":"FILE_ATTRIBUTE_TEMPORARY","features":[322]},{"name":"FILE_ATTRIBUTE_UNPINNED","features":[322]},{"name":"FILE_ATTRIBUTE_VIRTUAL","features":[322]},{"name":"FILE_BASIC_INFO","features":[322]},{"name":"FILE_BEGIN","features":[322]},{"name":"FILE_COMPRESSION_INFO","features":[322]},{"name":"FILE_CREATE_PIPE_INSTANCE","features":[322]},{"name":"FILE_CREATION_DISPOSITION","features":[322]},{"name":"FILE_CURRENT","features":[322]},{"name":"FILE_DELETE_CHILD","features":[322]},{"name":"FILE_DEVICE_CD_ROM","features":[322]},{"name":"FILE_DEVICE_DISK","features":[322]},{"name":"FILE_DEVICE_DVD","features":[322]},{"name":"FILE_DEVICE_TAPE","features":[322]},{"name":"FILE_DEVICE_TYPE","features":[322]},{"name":"FILE_DISPOSITION_FLAG_DELETE","features":[322]},{"name":"FILE_DISPOSITION_FLAG_DO_NOT_DELETE","features":[322]},{"name":"FILE_DISPOSITION_FLAG_FORCE_IMAGE_SECTION_CHECK","features":[322]},{"name":"FILE_DISPOSITION_FLAG_IGNORE_READONLY_ATTRIBUTE","features":[322]},{"name":"FILE_DISPOSITION_FLAG_ON_CLOSE","features":[322]},{"name":"FILE_DISPOSITION_FLAG_POSIX_SEMANTICS","features":[322]},{"name":"FILE_DISPOSITION_INFO","features":[303,322]},{"name":"FILE_DISPOSITION_INFO_EX","features":[322]},{"name":"FILE_DISPOSITION_INFO_EX_FLAGS","features":[322]},{"name":"FILE_END","features":[322]},{"name":"FILE_END_OF_FILE_INFO","features":[322]},{"name":"FILE_EXECUTE","features":[322]},{"name":"FILE_EXTENT","features":[322]},{"name":"FILE_FLAGS_AND_ATTRIBUTES","features":[322]},{"name":"FILE_FLAG_BACKUP_SEMANTICS","features":[322]},{"name":"FILE_FLAG_DELETE_ON_CLOSE","features":[322]},{"name":"FILE_FLAG_FIRST_PIPE_INSTANCE","features":[322]},{"name":"FILE_FLAG_NO_BUFFERING","features":[322]},{"name":"FILE_FLAG_OPEN_NO_RECALL","features":[322]},{"name":"FILE_FLAG_OPEN_REPARSE_POINT","features":[322]},{"name":"FILE_FLAG_OVERLAPPED","features":[322]},{"name":"FILE_FLAG_POSIX_SEMANTICS","features":[322]},{"name":"FILE_FLAG_RANDOM_ACCESS","features":[322]},{"name":"FILE_FLAG_SEQUENTIAL_SCAN","features":[322]},{"name":"FILE_FLAG_SESSION_AWARE","features":[322]},{"name":"FILE_FLAG_WRITE_THROUGH","features":[322]},{"name":"FILE_FLUSH_DATA","features":[322]},{"name":"FILE_FLUSH_DEFAULT","features":[322]},{"name":"FILE_FLUSH_MIN_METADATA","features":[322]},{"name":"FILE_FLUSH_MODE","features":[322]},{"name":"FILE_FLUSH_NO_SYNC","features":[322]},{"name":"FILE_FULL_DIR_INFO","features":[322]},{"name":"FILE_GENERIC_EXECUTE","features":[322]},{"name":"FILE_GENERIC_READ","features":[322]},{"name":"FILE_GENERIC_WRITE","features":[322]},{"name":"FILE_ID_128","features":[322]},{"name":"FILE_ID_BOTH_DIR_INFO","features":[322]},{"name":"FILE_ID_DESCRIPTOR","features":[322]},{"name":"FILE_ID_EXTD_DIR_INFO","features":[322]},{"name":"FILE_ID_INFO","features":[322]},{"name":"FILE_ID_TYPE","features":[322]},{"name":"FILE_INFO_2","features":[322]},{"name":"FILE_INFO_3","features":[322]},{"name":"FILE_INFO_BY_HANDLE_CLASS","features":[322]},{"name":"FILE_INFO_FLAGS_PERMISSIONS","features":[322]},{"name":"FILE_IO_PRIORITY_HINT_INFO","features":[322]},{"name":"FILE_LIST_DIRECTORY","features":[322]},{"name":"FILE_NAME_INFO","features":[322]},{"name":"FILE_NAME_NORMALIZED","features":[322]},{"name":"FILE_NAME_OPENED","features":[322]},{"name":"FILE_NOTIFY_CHANGE","features":[322]},{"name":"FILE_NOTIFY_CHANGE_ATTRIBUTES","features":[322]},{"name":"FILE_NOTIFY_CHANGE_CREATION","features":[322]},{"name":"FILE_NOTIFY_CHANGE_DIR_NAME","features":[322]},{"name":"FILE_NOTIFY_CHANGE_FILE_NAME","features":[322]},{"name":"FILE_NOTIFY_CHANGE_LAST_ACCESS","features":[322]},{"name":"FILE_NOTIFY_CHANGE_LAST_WRITE","features":[322]},{"name":"FILE_NOTIFY_CHANGE_SECURITY","features":[322]},{"name":"FILE_NOTIFY_CHANGE_SIZE","features":[322]},{"name":"FILE_NOTIFY_EXTENDED_INFORMATION","features":[322]},{"name":"FILE_NOTIFY_INFORMATION","features":[322]},{"name":"FILE_PROVIDER_COMPRESSION_LZX","features":[322]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS16K","features":[322]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS4K","features":[322]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS8K","features":[322]},{"name":"FILE_READ_ATTRIBUTES","features":[322]},{"name":"FILE_READ_DATA","features":[322]},{"name":"FILE_READ_EA","features":[322]},{"name":"FILE_REMOTE_PROTOCOL_INFO","features":[322]},{"name":"FILE_RENAME_INFO","features":[303,322]},{"name":"FILE_SEGMENT_ELEMENT","features":[322]},{"name":"FILE_SHARE_DELETE","features":[322]},{"name":"FILE_SHARE_MODE","features":[322]},{"name":"FILE_SHARE_NONE","features":[322]},{"name":"FILE_SHARE_READ","features":[322]},{"name":"FILE_SHARE_WRITE","features":[322]},{"name":"FILE_STANDARD_INFO","features":[303,322]},{"name":"FILE_STORAGE_INFO","features":[322]},{"name":"FILE_STREAM_INFO","features":[322]},{"name":"FILE_TRAVERSE","features":[322]},{"name":"FILE_TYPE","features":[322]},{"name":"FILE_TYPE_CHAR","features":[322]},{"name":"FILE_TYPE_DISK","features":[322]},{"name":"FILE_TYPE_PIPE","features":[322]},{"name":"FILE_TYPE_REMOTE","features":[322]},{"name":"FILE_TYPE_UNKNOWN","features":[322]},{"name":"FILE_VER_GET_LOCALISED","features":[322]},{"name":"FILE_VER_GET_NEUTRAL","features":[322]},{"name":"FILE_VER_GET_PREFETCHED","features":[322]},{"name":"FILE_WRITE_ATTRIBUTES","features":[322]},{"name":"FILE_WRITE_DATA","features":[322]},{"name":"FILE_WRITE_EA","features":[322]},{"name":"FILE_WRITE_FLAGS","features":[322]},{"name":"FILE_WRITE_FLAGS_NONE","features":[322]},{"name":"FILE_WRITE_FLAGS_WRITE_THROUGH","features":[322]},{"name":"FINDEX_INFO_LEVELS","features":[322]},{"name":"FINDEX_SEARCH_OPS","features":[322]},{"name":"FIND_FIRST_EX_CASE_SENSITIVE","features":[322]},{"name":"FIND_FIRST_EX_FLAGS","features":[322]},{"name":"FIND_FIRST_EX_LARGE_FETCH","features":[322]},{"name":"FIND_FIRST_EX_ON_DISK_ENTRIES_ONLY","features":[322]},{"name":"FIO_CONTEXT","features":[303,322]},{"name":"FileAlignmentInfo","features":[322]},{"name":"FileAllocationInfo","features":[322]},{"name":"FileAttributeTagInfo","features":[322]},{"name":"FileBasicInfo","features":[322]},{"name":"FileCaseSensitiveInfo","features":[322]},{"name":"FileCompressionInfo","features":[322]},{"name":"FileDispositionInfo","features":[322]},{"name":"FileDispositionInfoEx","features":[322]},{"name":"FileEncryptionStatusA","features":[303,322]},{"name":"FileEncryptionStatusW","features":[303,322]},{"name":"FileEndOfFileInfo","features":[322]},{"name":"FileFullDirectoryInfo","features":[322]},{"name":"FileFullDirectoryRestartInfo","features":[322]},{"name":"FileIdBothDirectoryInfo","features":[322]},{"name":"FileIdBothDirectoryRestartInfo","features":[322]},{"name":"FileIdExtdDirectoryInfo","features":[322]},{"name":"FileIdExtdDirectoryRestartInfo","features":[322]},{"name":"FileIdInfo","features":[322]},{"name":"FileIdType","features":[322]},{"name":"FileIoPriorityHintInfo","features":[322]},{"name":"FileNameInfo","features":[322]},{"name":"FileNormalizedNameInfo","features":[322]},{"name":"FileRemoteProtocolInfo","features":[322]},{"name":"FileRenameInfo","features":[322]},{"name":"FileRenameInfoEx","features":[322]},{"name":"FileStandardInfo","features":[322]},{"name":"FileStorageInfo","features":[322]},{"name":"FileStreamInfo","features":[322]},{"name":"FileTimeToLocalFileTime","features":[303,322]},{"name":"FindClose","features":[303,322]},{"name":"FindCloseChangeNotification","features":[303,322]},{"name":"FindExInfoBasic","features":[322]},{"name":"FindExInfoMaxInfoLevel","features":[322]},{"name":"FindExInfoStandard","features":[322]},{"name":"FindExSearchLimitToDevices","features":[322]},{"name":"FindExSearchLimitToDirectories","features":[322]},{"name":"FindExSearchMaxSearchOp","features":[322]},{"name":"FindExSearchNameMatch","features":[322]},{"name":"FindFirstChangeNotificationA","features":[303,322]},{"name":"FindFirstChangeNotificationW","features":[303,322]},{"name":"FindFirstFileA","features":[303,322]},{"name":"FindFirstFileExA","features":[303,322]},{"name":"FindFirstFileExFromAppW","features":[303,322]},{"name":"FindFirstFileExW","features":[303,322]},{"name":"FindFirstFileNameTransactedW","features":[303,322]},{"name":"FindFirstFileNameW","features":[303,322]},{"name":"FindFirstFileTransactedA","features":[303,322]},{"name":"FindFirstFileTransactedW","features":[303,322]},{"name":"FindFirstFileW","features":[303,322]},{"name":"FindFirstStreamTransactedW","features":[303,322]},{"name":"FindFirstStreamW","features":[303,322]},{"name":"FindFirstVolumeA","features":[303,322]},{"name":"FindFirstVolumeMountPointA","features":[303,322]},{"name":"FindFirstVolumeMountPointW","features":[303,322]},{"name":"FindFirstVolumeW","features":[303,322]},{"name":"FindNextChangeNotification","features":[303,322]},{"name":"FindNextFileA","features":[303,322]},{"name":"FindNextFileNameW","features":[303,322]},{"name":"FindNextFileW","features":[303,322]},{"name":"FindNextStreamW","features":[303,322]},{"name":"FindNextVolumeA","features":[303,322]},{"name":"FindNextVolumeMountPointA","features":[303,322]},{"name":"FindNextVolumeMountPointW","features":[303,322]},{"name":"FindNextVolumeW","features":[303,322]},{"name":"FindStreamInfoMaxInfoLevel","features":[322]},{"name":"FindStreamInfoStandard","features":[322]},{"name":"FindVolumeClose","features":[303,322]},{"name":"FindVolumeMountPointClose","features":[303,322]},{"name":"FlushFileBuffers","features":[303,322]},{"name":"FlushLogBuffers","features":[303,322,308]},{"name":"FlushLogToLsn","features":[303,322,308]},{"name":"FreeEncryptedFileMetadata","features":[322]},{"name":"FreeEncryptionCertificateHashList","features":[306,322]},{"name":"FreeReservedLog","features":[303,322]},{"name":"GETFINALPATHNAMEBYHANDLE_FLAGS","features":[322]},{"name":"GET_FILEEX_INFO_LEVELS","features":[322]},{"name":"GET_FILE_VERSION_INFO_FLAGS","features":[322]},{"name":"GET_TAPE_DRIVE_INFORMATION","features":[322]},{"name":"GET_TAPE_DRIVE_PARAMETERS_OPERATION","features":[322]},{"name":"GET_TAPE_MEDIA_INFORMATION","features":[322]},{"name":"GetBinaryTypeA","features":[303,322]},{"name":"GetBinaryTypeW","features":[303,322]},{"name":"GetCompressedFileSizeA","features":[322]},{"name":"GetCompressedFileSizeTransactedA","features":[303,322]},{"name":"GetCompressedFileSizeTransactedW","features":[303,322]},{"name":"GetCompressedFileSizeW","features":[322]},{"name":"GetCurrentClockTransactionManager","features":[303,322]},{"name":"GetDiskFreeSpaceA","features":[303,322]},{"name":"GetDiskFreeSpaceExA","features":[303,322]},{"name":"GetDiskFreeSpaceExW","features":[303,322]},{"name":"GetDiskFreeSpaceW","features":[303,322]},{"name":"GetDiskSpaceInformationA","features":[322]},{"name":"GetDiskSpaceInformationW","features":[322]},{"name":"GetDriveTypeA","features":[322]},{"name":"GetDriveTypeW","features":[322]},{"name":"GetEncryptedFileMetadata","features":[322]},{"name":"GetEnlistmentId","features":[303,322]},{"name":"GetEnlistmentRecoveryInformation","features":[303,322]},{"name":"GetExpandedNameA","features":[322]},{"name":"GetExpandedNameW","features":[322]},{"name":"GetFileAttributesA","features":[322]},{"name":"GetFileAttributesExA","features":[303,322]},{"name":"GetFileAttributesExFromAppW","features":[303,322]},{"name":"GetFileAttributesExW","features":[303,322]},{"name":"GetFileAttributesTransactedA","features":[303,322]},{"name":"GetFileAttributesTransactedW","features":[303,322]},{"name":"GetFileAttributesW","features":[322]},{"name":"GetFileBandwidthReservation","features":[303,322]},{"name":"GetFileExInfoStandard","features":[322]},{"name":"GetFileExMaxInfoLevel","features":[322]},{"name":"GetFileInformationByHandle","features":[303,322]},{"name":"GetFileInformationByHandleEx","features":[303,322]},{"name":"GetFileSize","features":[303,322]},{"name":"GetFileSizeEx","features":[303,322]},{"name":"GetFileTime","features":[303,322]},{"name":"GetFileType","features":[303,322]},{"name":"GetFileVersionInfoA","features":[303,322]},{"name":"GetFileVersionInfoExA","features":[303,322]},{"name":"GetFileVersionInfoExW","features":[303,322]},{"name":"GetFileVersionInfoSizeA","features":[322]},{"name":"GetFileVersionInfoSizeExA","features":[322]},{"name":"GetFileVersionInfoSizeExW","features":[322]},{"name":"GetFileVersionInfoSizeW","features":[322]},{"name":"GetFileVersionInfoW","features":[303,322]},{"name":"GetFinalPathNameByHandleA","features":[303,322]},{"name":"GetFinalPathNameByHandleW","features":[303,322]},{"name":"GetFullPathNameA","features":[322]},{"name":"GetFullPathNameTransactedA","features":[303,322]},{"name":"GetFullPathNameTransactedW","features":[303,322]},{"name":"GetFullPathNameW","features":[322]},{"name":"GetIoRingInfo","features":[322]},{"name":"GetLogContainerName","features":[303,322]},{"name":"GetLogFileInformation","features":[303,322]},{"name":"GetLogIoStatistics","features":[303,322]},{"name":"GetLogReservationInfo","features":[303,322]},{"name":"GetLogicalDriveStringsA","features":[322]},{"name":"GetLogicalDriveStringsW","features":[322]},{"name":"GetLogicalDrives","features":[322]},{"name":"GetLongPathNameA","features":[322]},{"name":"GetLongPathNameTransactedA","features":[303,322]},{"name":"GetLongPathNameTransactedW","features":[303,322]},{"name":"GetLongPathNameW","features":[322]},{"name":"GetNextLogArchiveExtent","features":[303,322]},{"name":"GetNotificationResourceManager","features":[303,322]},{"name":"GetNotificationResourceManagerAsync","features":[303,322,308]},{"name":"GetShortPathNameA","features":[322]},{"name":"GetShortPathNameW","features":[322]},{"name":"GetTapeParameters","features":[303,322]},{"name":"GetTapePosition","features":[303,322]},{"name":"GetTapeStatus","features":[303,322]},{"name":"GetTempFileNameA","features":[322]},{"name":"GetTempFileNameW","features":[322]},{"name":"GetTempPath2A","features":[322]},{"name":"GetTempPath2W","features":[322]},{"name":"GetTempPathA","features":[322]},{"name":"GetTempPathW","features":[322]},{"name":"GetTransactionId","features":[303,322]},{"name":"GetTransactionInformation","features":[303,322]},{"name":"GetTransactionManagerId","features":[303,322]},{"name":"GetVolumeInformationA","features":[303,322]},{"name":"GetVolumeInformationByHandleW","features":[303,322]},{"name":"GetVolumeInformationW","features":[303,322]},{"name":"GetVolumeNameForVolumeMountPointA","features":[303,322]},{"name":"GetVolumeNameForVolumeMountPointW","features":[303,322]},{"name":"GetVolumePathNameA","features":[303,322]},{"name":"GetVolumePathNameW","features":[303,322]},{"name":"GetVolumePathNamesForVolumeNameA","features":[303,322]},{"name":"GetVolumePathNamesForVolumeNameW","features":[303,322]},{"name":"HIORING","features":[322]},{"name":"HandleLogFull","features":[303,322]},{"name":"IDiskQuotaControl","features":[322,354]},{"name":"IDiskQuotaEvents","features":[322]},{"name":"IDiskQuotaUser","features":[322]},{"name":"IDiskQuotaUserBatch","features":[322]},{"name":"IEnumDiskQuotaUsers","features":[322]},{"name":"INVALID_FILE_ATTRIBUTES","features":[322]},{"name":"INVALID_FILE_SIZE","features":[322]},{"name":"INVALID_SET_FILE_POINTER","features":[322]},{"name":"IOCTL_VOLUME_ALLOCATE_BC_STREAM","features":[322]},{"name":"IOCTL_VOLUME_BASE","features":[322]},{"name":"IOCTL_VOLUME_BC_VERSION","features":[322]},{"name":"IOCTL_VOLUME_FREE_BC_STREAM","features":[322]},{"name":"IOCTL_VOLUME_GET_BC_PROPERTIES","features":[322]},{"name":"IOCTL_VOLUME_GET_CSVBLOCKCACHE_CALLBACK","features":[322]},{"name":"IOCTL_VOLUME_GET_GPT_ATTRIBUTES","features":[322]},{"name":"IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS","features":[322]},{"name":"IOCTL_VOLUME_IS_CLUSTERED","features":[322]},{"name":"IOCTL_VOLUME_IS_CSV","features":[322]},{"name":"IOCTL_VOLUME_IS_DYNAMIC","features":[322]},{"name":"IOCTL_VOLUME_IS_IO_CAPABLE","features":[322]},{"name":"IOCTL_VOLUME_IS_OFFLINE","features":[322]},{"name":"IOCTL_VOLUME_IS_PARTITION","features":[322]},{"name":"IOCTL_VOLUME_LOGICAL_TO_PHYSICAL","features":[322]},{"name":"IOCTL_VOLUME_OFFLINE","features":[322]},{"name":"IOCTL_VOLUME_ONLINE","features":[322]},{"name":"IOCTL_VOLUME_PHYSICAL_TO_LOGICAL","features":[322]},{"name":"IOCTL_VOLUME_POST_ONLINE","features":[322]},{"name":"IOCTL_VOLUME_PREPARE_FOR_CRITICAL_IO","features":[322]},{"name":"IOCTL_VOLUME_PREPARE_FOR_SHRINK","features":[322]},{"name":"IOCTL_VOLUME_QUERY_ALLOCATION_HINT","features":[322]},{"name":"IOCTL_VOLUME_QUERY_FAILOVER_SET","features":[322]},{"name":"IOCTL_VOLUME_QUERY_MINIMUM_SHRINK_SIZE","features":[322]},{"name":"IOCTL_VOLUME_QUERY_VOLUME_NUMBER","features":[322]},{"name":"IOCTL_VOLUME_READ_PLEX","features":[322]},{"name":"IOCTL_VOLUME_SET_GPT_ATTRIBUTES","features":[322]},{"name":"IOCTL_VOLUME_SUPPORTS_ONLINE_OFFLINE","features":[322]},{"name":"IOCTL_VOLUME_UPDATE_PROPERTIES","features":[322]},{"name":"IORING_BUFFER_INFO","features":[322]},{"name":"IORING_BUFFER_REF","features":[322]},{"name":"IORING_CAPABILITIES","features":[322]},{"name":"IORING_CQE","features":[322]},{"name":"IORING_CREATE_ADVISORY_FLAGS","features":[322]},{"name":"IORING_CREATE_ADVISORY_FLAGS_NONE","features":[322]},{"name":"IORING_CREATE_FLAGS","features":[322]},{"name":"IORING_CREATE_REQUIRED_FLAGS","features":[322]},{"name":"IORING_CREATE_REQUIRED_FLAGS_NONE","features":[322]},{"name":"IORING_FEATURE_FLAGS","features":[322]},{"name":"IORING_FEATURE_FLAGS_NONE","features":[322]},{"name":"IORING_FEATURE_SET_COMPLETION_EVENT","features":[322]},{"name":"IORING_FEATURE_UM_EMULATION","features":[322]},{"name":"IORING_HANDLE_REF","features":[303,322]},{"name":"IORING_INFO","features":[322]},{"name":"IORING_OP_CANCEL","features":[322]},{"name":"IORING_OP_CODE","features":[322]},{"name":"IORING_OP_FLUSH","features":[322]},{"name":"IORING_OP_NOP","features":[322]},{"name":"IORING_OP_READ","features":[322]},{"name":"IORING_OP_REGISTER_BUFFERS","features":[322]},{"name":"IORING_OP_REGISTER_FILES","features":[322]},{"name":"IORING_OP_WRITE","features":[322]},{"name":"IORING_REF_KIND","features":[322]},{"name":"IORING_REF_RAW","features":[322]},{"name":"IORING_REF_REGISTERED","features":[322]},{"name":"IORING_REGISTERED_BUFFER","features":[322]},{"name":"IORING_SQE_FLAGS","features":[322]},{"name":"IORING_VERSION","features":[322]},{"name":"IORING_VERSION_1","features":[322]},{"name":"IORING_VERSION_2","features":[322]},{"name":"IORING_VERSION_3","features":[322]},{"name":"IORING_VERSION_INVALID","features":[322]},{"name":"IOSQE_FLAGS_DRAIN_PRECEDING_OPS","features":[322]},{"name":"IOSQE_FLAGS_NONE","features":[322]},{"name":"InstallLogPolicy","features":[303,322]},{"name":"IoPriorityHintLow","features":[322]},{"name":"IoPriorityHintNormal","features":[322]},{"name":"IoPriorityHintVeryLow","features":[322]},{"name":"IsIoRingOpSupported","features":[303,322]},{"name":"KCRM_MARSHAL_HEADER","features":[322]},{"name":"KCRM_PROTOCOL_BLOB","features":[322]},{"name":"KCRM_TRANSACTION_BLOB","features":[322]},{"name":"KTM_MARSHAL_BLOB_VERSION_MAJOR","features":[322]},{"name":"KTM_MARSHAL_BLOB_VERSION_MINOR","features":[322]},{"name":"LOCKFILE_EXCLUSIVE_LOCK","features":[322]},{"name":"LOCKFILE_FAIL_IMMEDIATELY","features":[322]},{"name":"LOCK_FILE_FLAGS","features":[322]},{"name":"LOG_MANAGEMENT_CALLBACKS","features":[303,322]},{"name":"LOG_POLICY_OVERWRITE","features":[322]},{"name":"LOG_POLICY_PERSIST","features":[322]},{"name":"LPPROGRESS_ROUTINE","features":[303,322]},{"name":"LPPROGRESS_ROUTINE_CALLBACK_REASON","features":[322]},{"name":"LZClose","features":[322]},{"name":"LZCopy","features":[322]},{"name":"LZDone","features":[322]},{"name":"LZERROR_BADINHANDLE","features":[322]},{"name":"LZERROR_BADOUTHANDLE","features":[322]},{"name":"LZERROR_BADVALUE","features":[322]},{"name":"LZERROR_GLOBALLOC","features":[322]},{"name":"LZERROR_GLOBLOCK","features":[322]},{"name":"LZERROR_READ","features":[322]},{"name":"LZERROR_UNKNOWNALG","features":[322]},{"name":"LZERROR_WRITE","features":[322]},{"name":"LZInit","features":[322]},{"name":"LZOPENFILE_STYLE","features":[322]},{"name":"LZOpenFileA","features":[322]},{"name":"LZOpenFileW","features":[322]},{"name":"LZRead","features":[322]},{"name":"LZSeek","features":[322]},{"name":"LZStart","features":[322]},{"name":"LocalFileTimeToFileTime","features":[303,322]},{"name":"LockFile","features":[303,322]},{"name":"LockFileEx","features":[303,322,308]},{"name":"LogTailAdvanceFailure","features":[303,322]},{"name":"LsnBlockOffset","features":[322]},{"name":"LsnContainer","features":[322]},{"name":"LsnCreate","features":[322]},{"name":"LsnEqual","features":[303,322]},{"name":"LsnGreater","features":[303,322]},{"name":"LsnIncrement","features":[322]},{"name":"LsnInvalid","features":[303,322]},{"name":"LsnLess","features":[303,322]},{"name":"LsnNull","features":[303,322]},{"name":"LsnRecordSequence","features":[322]},{"name":"MAXIMUM_REPARSE_DATA_BUFFER_SIZE","features":[322]},{"name":"MAXMEDIALABEL","features":[322]},{"name":"MAX_RESOURCEMANAGER_DESCRIPTION_LENGTH","features":[322]},{"name":"MAX_SID_SIZE","features":[322]},{"name":"MAX_TRANSACTION_DESCRIPTION_LENGTH","features":[322]},{"name":"MOVEFILE_COPY_ALLOWED","features":[322]},{"name":"MOVEFILE_CREATE_HARDLINK","features":[322]},{"name":"MOVEFILE_DELAY_UNTIL_REBOOT","features":[322]},{"name":"MOVEFILE_FAIL_IF_NOT_TRACKABLE","features":[322]},{"name":"MOVEFILE_REPLACE_EXISTING","features":[322]},{"name":"MOVEFILE_WRITE_THROUGH","features":[322]},{"name":"MOVE_FILE_FLAGS","features":[322]},{"name":"MaximumFileIdType","features":[322]},{"name":"MaximumFileInfoByHandleClass","features":[322]},{"name":"MaximumIoPriorityHintType","features":[322]},{"name":"MediaLabelInfo","features":[322]},{"name":"MoveFileA","features":[303,322]},{"name":"MoveFileExA","features":[303,322]},{"name":"MoveFileExW","features":[303,322]},{"name":"MoveFileFromAppW","features":[303,322]},{"name":"MoveFileTransactedA","features":[303,322]},{"name":"MoveFileTransactedW","features":[303,322]},{"name":"MoveFileW","features":[303,322]},{"name":"MoveFileWithProgressA","features":[303,322]},{"name":"MoveFileWithProgressW","features":[303,322]},{"name":"NAME_CACHE_CONTEXT","features":[322]},{"name":"NTMSMLI_MAXAPPDESCR","features":[322]},{"name":"NTMSMLI_MAXIDSIZE","features":[322]},{"name":"NTMSMLI_MAXTYPE","features":[322]},{"name":"NTMS_ALLOCATE_ERROR_IF_UNAVAILABLE","features":[322]},{"name":"NTMS_ALLOCATE_FROMSCRATCH","features":[322]},{"name":"NTMS_ALLOCATE_NEW","features":[322]},{"name":"NTMS_ALLOCATE_NEXT","features":[322]},{"name":"NTMS_ALLOCATION_INFORMATION","features":[322]},{"name":"NTMS_APPLICATIONNAME_LENGTH","features":[322]},{"name":"NTMS_ASYNCOP_MOUNT","features":[322]},{"name":"NTMS_ASYNCSTATE_COMPLETE","features":[322]},{"name":"NTMS_ASYNCSTATE_INPROCESS","features":[322]},{"name":"NTMS_ASYNCSTATE_QUEUED","features":[322]},{"name":"NTMS_ASYNCSTATE_WAIT_OPERATOR","features":[322]},{"name":"NTMS_ASYNCSTATE_WAIT_RESOURCE","features":[322]},{"name":"NTMS_ASYNC_IO","features":[303,322]},{"name":"NTMS_BARCODESTATE_OK","features":[322]},{"name":"NTMS_BARCODESTATE_UNREADABLE","features":[322]},{"name":"NTMS_BARCODE_LENGTH","features":[322]},{"name":"NTMS_CHANGER","features":[322]},{"name":"NTMS_CHANGERINFORMATIONA","features":[322]},{"name":"NTMS_CHANGERINFORMATIONW","features":[322]},{"name":"NTMS_CHANGERTYPEINFORMATIONA","features":[322]},{"name":"NTMS_CHANGERTYPEINFORMATIONW","features":[322]},{"name":"NTMS_CHANGER_TYPE","features":[322]},{"name":"NTMS_COMPUTER","features":[322]},{"name":"NTMS_COMPUTERINFORMATION","features":[322]},{"name":"NTMS_COMPUTERNAME_LENGTH","features":[322]},{"name":"NTMS_CONTROL_ACCESS","features":[322]},{"name":"NTMS_CREATE_NEW","features":[322]},{"name":"NTMS_DEALLOCATE_TOSCRATCH","features":[322]},{"name":"NTMS_DESCRIPTION_LENGTH","features":[322]},{"name":"NTMS_DEVICENAME_LENGTH","features":[322]},{"name":"NTMS_DISMOUNT_DEFERRED","features":[322]},{"name":"NTMS_DISMOUNT_IMMEDIATE","features":[322]},{"name":"NTMS_DOORSTATE_CLOSED","features":[322]},{"name":"NTMS_DOORSTATE_OPEN","features":[322]},{"name":"NTMS_DOORSTATE_UNKNOWN","features":[322]},{"name":"NTMS_DRIVE","features":[322]},{"name":"NTMS_DRIVEINFORMATIONA","features":[303,322]},{"name":"NTMS_DRIVEINFORMATIONW","features":[303,322]},{"name":"NTMS_DRIVESTATE_BEING_CLEANED","features":[322]},{"name":"NTMS_DRIVESTATE_DISMOUNTABLE","features":[322]},{"name":"NTMS_DRIVESTATE_DISMOUNTED","features":[322]},{"name":"NTMS_DRIVESTATE_LOADED","features":[322]},{"name":"NTMS_DRIVESTATE_MOUNTED","features":[322]},{"name":"NTMS_DRIVESTATE_UNLOADED","features":[322]},{"name":"NTMS_DRIVETYPEINFORMATIONA","features":[322]},{"name":"NTMS_DRIVETYPEINFORMATIONW","features":[322]},{"name":"NTMS_DRIVE_TYPE","features":[322]},{"name":"NTMS_EJECT_ASK_USER","features":[322]},{"name":"NTMS_EJECT_FORCE","features":[322]},{"name":"NTMS_EJECT_IMMEDIATE","features":[322]},{"name":"NTMS_EJECT_QUEUE","features":[322]},{"name":"NTMS_EJECT_START","features":[322]},{"name":"NTMS_EJECT_STOP","features":[322]},{"name":"NTMS_ENUM_DEFAULT","features":[322]},{"name":"NTMS_ENUM_ROOTPOOL","features":[322]},{"name":"NTMS_ERROR_ON_DUPLICATE","features":[322]},{"name":"NTMS_EVENT_COMPLETE","features":[322]},{"name":"NTMS_EVENT_SIGNAL","features":[322]},{"name":"NTMS_FILESYSTEM_INFO","features":[322]},{"name":"NTMS_I1_LIBRARYINFORMATION","features":[303,322]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONA","features":[303,322]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONW","features":[303,322]},{"name":"NTMS_I1_MESSAGE_LENGTH","features":[322]},{"name":"NTMS_I1_OBJECTINFORMATIONA","features":[303,322]},{"name":"NTMS_I1_OBJECTINFORMATIONW","features":[303,322]},{"name":"NTMS_I1_OPREQUESTINFORMATIONA","features":[303,322]},{"name":"NTMS_I1_OPREQUESTINFORMATIONW","features":[303,322]},{"name":"NTMS_I1_PARTITIONINFORMATIONA","features":[322]},{"name":"NTMS_I1_PARTITIONINFORMATIONW","features":[322]},{"name":"NTMS_I1_PMIDINFORMATIONA","features":[322]},{"name":"NTMS_I1_PMIDINFORMATIONW","features":[322]},{"name":"NTMS_IEDOOR","features":[322]},{"name":"NTMS_IEDOORINFORMATION","features":[322]},{"name":"NTMS_IEPORT","features":[322]},{"name":"NTMS_IEPORTINFORMATION","features":[322]},{"name":"NTMS_INITIALIZING","features":[322]},{"name":"NTMS_INJECT_RETRACT","features":[322]},{"name":"NTMS_INJECT_START","features":[322]},{"name":"NTMS_INJECT_STARTMANY","features":[322]},{"name":"NTMS_INJECT_STOP","features":[322]},{"name":"NTMS_INVENTORY_DEFAULT","features":[322]},{"name":"NTMS_INVENTORY_FAST","features":[322]},{"name":"NTMS_INVENTORY_MAX","features":[322]},{"name":"NTMS_INVENTORY_NONE","features":[322]},{"name":"NTMS_INVENTORY_OMID","features":[322]},{"name":"NTMS_INVENTORY_SLOT","features":[322]},{"name":"NTMS_INVENTORY_STOP","features":[322]},{"name":"NTMS_LIBRARY","features":[322]},{"name":"NTMS_LIBRARYFLAG_AUTODETECTCHANGE","features":[322]},{"name":"NTMS_LIBRARYFLAG_CLEANERPRESENT","features":[322]},{"name":"NTMS_LIBRARYFLAG_FIXEDOFFLINE","features":[322]},{"name":"NTMS_LIBRARYFLAG_IGNORECLEANERUSESREMAINING","features":[322]},{"name":"NTMS_LIBRARYFLAG_RECOGNIZECLEANERBARCODE","features":[322]},{"name":"NTMS_LIBRARYINFORMATION","features":[303,322]},{"name":"NTMS_LIBRARYTYPE_OFFLINE","features":[322]},{"name":"NTMS_LIBRARYTYPE_ONLINE","features":[322]},{"name":"NTMS_LIBRARYTYPE_STANDALONE","features":[322]},{"name":"NTMS_LIBRARYTYPE_UNKNOWN","features":[322]},{"name":"NTMS_LIBREQFLAGS_NOAUTOPURGE","features":[322]},{"name":"NTMS_LIBREQFLAGS_NOFAILEDPURGE","features":[322]},{"name":"NTMS_LIBREQUEST","features":[322]},{"name":"NTMS_LIBREQUESTINFORMATIONA","features":[303,322]},{"name":"NTMS_LIBREQUESTINFORMATIONW","features":[303,322]},{"name":"NTMS_LMIDINFORMATION","features":[322]},{"name":"NTMS_LM_CANCELLED","features":[322]},{"name":"NTMS_LM_CLASSIFY","features":[322]},{"name":"NTMS_LM_CLEANDRIVE","features":[322]},{"name":"NTMS_LM_DEFERRED","features":[322]},{"name":"NTMS_LM_DEFFERED","features":[322]},{"name":"NTMS_LM_DISABLECHANGER","features":[322]},{"name":"NTMS_LM_DISABLEDRIVE","features":[322]},{"name":"NTMS_LM_DISABLELIBRARY","features":[322]},{"name":"NTMS_LM_DISABLEMEDIA","features":[322]},{"name":"NTMS_LM_DISMOUNT","features":[322]},{"name":"NTMS_LM_DOORACCESS","features":[322]},{"name":"NTMS_LM_EJECT","features":[322]},{"name":"NTMS_LM_EJECTCLEANER","features":[322]},{"name":"NTMS_LM_ENABLECHANGER","features":[322]},{"name":"NTMS_LM_ENABLEDRIVE","features":[322]},{"name":"NTMS_LM_ENABLELIBRARY","features":[322]},{"name":"NTMS_LM_ENABLEMEDIA","features":[322]},{"name":"NTMS_LM_FAILED","features":[322]},{"name":"NTMS_LM_INJECT","features":[322]},{"name":"NTMS_LM_INJECTCLEANER","features":[322]},{"name":"NTMS_LM_INPROCESS","features":[322]},{"name":"NTMS_LM_INVALID","features":[322]},{"name":"NTMS_LM_INVENTORY","features":[322]},{"name":"NTMS_LM_MAXWORKITEM","features":[322]},{"name":"NTMS_LM_MOUNT","features":[322]},{"name":"NTMS_LM_PASSED","features":[322]},{"name":"NTMS_LM_PROCESSOMID","features":[322]},{"name":"NTMS_LM_QUEUED","features":[322]},{"name":"NTMS_LM_RELEASECLEANER","features":[322]},{"name":"NTMS_LM_REMOVE","features":[322]},{"name":"NTMS_LM_RESERVECLEANER","features":[322]},{"name":"NTMS_LM_STOPPED","features":[322]},{"name":"NTMS_LM_UPDATEOMID","features":[322]},{"name":"NTMS_LM_WAITING","features":[322]},{"name":"NTMS_LM_WRITESCRATCH","features":[322]},{"name":"NTMS_LOGICAL_MEDIA","features":[322]},{"name":"NTMS_MAXATTR_LENGTH","features":[322]},{"name":"NTMS_MAXATTR_NAMELEN","features":[322]},{"name":"NTMS_MEDIAPOOLINFORMATION","features":[322]},{"name":"NTMS_MEDIARW_READONLY","features":[322]},{"name":"NTMS_MEDIARW_REWRITABLE","features":[322]},{"name":"NTMS_MEDIARW_UNKNOWN","features":[322]},{"name":"NTMS_MEDIARW_WRITEONCE","features":[322]},{"name":"NTMS_MEDIASTATE_IDLE","features":[322]},{"name":"NTMS_MEDIASTATE_INUSE","features":[322]},{"name":"NTMS_MEDIASTATE_LOADED","features":[322]},{"name":"NTMS_MEDIASTATE_MOUNTED","features":[322]},{"name":"NTMS_MEDIASTATE_OPERROR","features":[322]},{"name":"NTMS_MEDIASTATE_OPREQ","features":[322]},{"name":"NTMS_MEDIASTATE_UNLOADED","features":[322]},{"name":"NTMS_MEDIATYPEINFORMATION","features":[322]},{"name":"NTMS_MEDIA_POOL","features":[322]},{"name":"NTMS_MEDIA_TYPE","features":[322]},{"name":"NTMS_MESSAGE_LENGTH","features":[322]},{"name":"NTMS_MODIFY_ACCESS","features":[322]},{"name":"NTMS_MOUNT_ERROR_IF_OFFLINE","features":[322]},{"name":"NTMS_MOUNT_ERROR_IF_UNAVAILABLE","features":[322]},{"name":"NTMS_MOUNT_ERROR_NOT_AVAILABLE","features":[322]},{"name":"NTMS_MOUNT_ERROR_OFFLINE","features":[322]},{"name":"NTMS_MOUNT_INFORMATION","features":[322]},{"name":"NTMS_MOUNT_NOWAIT","features":[322]},{"name":"NTMS_MOUNT_READ","features":[322]},{"name":"NTMS_MOUNT_SPECIFIC_DRIVE","features":[322]},{"name":"NTMS_MOUNT_WRITE","features":[322]},{"name":"NTMS_NEEDS_SERVICE","features":[322]},{"name":"NTMS_NOTIFICATIONINFORMATION","features":[322]},{"name":"NTMS_NOT_PRESENT","features":[322]},{"name":"NTMS_NUMBER_OF_OBJECT_TYPES","features":[322]},{"name":"NTMS_OBJECT","features":[322]},{"name":"NTMS_OBJECTINFORMATIONA","features":[303,322]},{"name":"NTMS_OBJECTINFORMATIONW","features":[303,322]},{"name":"NTMS_OBJECTNAME_LENGTH","features":[322]},{"name":"NTMS_OBJ_DELETE","features":[322]},{"name":"NTMS_OBJ_INSERT","features":[322]},{"name":"NTMS_OBJ_UPDATE","features":[322]},{"name":"NTMS_OMIDLABELID_LENGTH","features":[322]},{"name":"NTMS_OMIDLABELINFO_LENGTH","features":[322]},{"name":"NTMS_OMIDLABELTYPE_LENGTH","features":[322]},{"name":"NTMS_OMID_TYPE","features":[322]},{"name":"NTMS_OMID_TYPE_FILESYSTEM_INFO","features":[322]},{"name":"NTMS_OMID_TYPE_RAW_LABEL","features":[322]},{"name":"NTMS_OPEN_ALWAYS","features":[322]},{"name":"NTMS_OPEN_EXISTING","features":[322]},{"name":"NTMS_OPREQFLAGS_NOALERTS","features":[322]},{"name":"NTMS_OPREQFLAGS_NOAUTOPURGE","features":[322]},{"name":"NTMS_OPREQFLAGS_NOFAILEDPURGE","features":[322]},{"name":"NTMS_OPREQFLAGS_NOTRAYICON","features":[322]},{"name":"NTMS_OPREQUEST","features":[322]},{"name":"NTMS_OPREQUESTINFORMATIONA","features":[303,322]},{"name":"NTMS_OPREQUESTINFORMATIONW","features":[303,322]},{"name":"NTMS_OPREQ_CLEANER","features":[322]},{"name":"NTMS_OPREQ_DEVICESERVICE","features":[322]},{"name":"NTMS_OPREQ_MESSAGE","features":[322]},{"name":"NTMS_OPREQ_MOVEMEDIA","features":[322]},{"name":"NTMS_OPREQ_NEWMEDIA","features":[322]},{"name":"NTMS_OPREQ_UNKNOWN","features":[322]},{"name":"NTMS_OPSTATE_ACTIVE","features":[322]},{"name":"NTMS_OPSTATE_COMPLETE","features":[322]},{"name":"NTMS_OPSTATE_INPROGRESS","features":[322]},{"name":"NTMS_OPSTATE_REFUSED","features":[322]},{"name":"NTMS_OPSTATE_SUBMITTED","features":[322]},{"name":"NTMS_OPSTATE_UNKNOWN","features":[322]},{"name":"NTMS_PARTITION","features":[322]},{"name":"NTMS_PARTITIONINFORMATIONA","features":[322]},{"name":"NTMS_PARTITIONINFORMATIONW","features":[322]},{"name":"NTMS_PARTSTATE_ALLOCATED","features":[322]},{"name":"NTMS_PARTSTATE_AVAILABLE","features":[322]},{"name":"NTMS_PARTSTATE_COMPLETE","features":[322]},{"name":"NTMS_PARTSTATE_DECOMMISSIONED","features":[322]},{"name":"NTMS_PARTSTATE_FOREIGN","features":[322]},{"name":"NTMS_PARTSTATE_IMPORT","features":[322]},{"name":"NTMS_PARTSTATE_INCOMPATIBLE","features":[322]},{"name":"NTMS_PARTSTATE_RESERVED","features":[322]},{"name":"NTMS_PARTSTATE_UNKNOWN","features":[322]},{"name":"NTMS_PARTSTATE_UNPREPARED","features":[322]},{"name":"NTMS_PHYSICAL_MEDIA","features":[322]},{"name":"NTMS_PMIDINFORMATIONA","features":[322]},{"name":"NTMS_PMIDINFORMATIONW","features":[322]},{"name":"NTMS_POOLHIERARCHY_LENGTH","features":[322]},{"name":"NTMS_POOLPOLICY_KEEPOFFLINEIMPORT","features":[322]},{"name":"NTMS_POOLPOLICY_PURGEOFFLINESCRATCH","features":[322]},{"name":"NTMS_POOLTYPE_APPLICATION","features":[322]},{"name":"NTMS_POOLTYPE_FOREIGN","features":[322]},{"name":"NTMS_POOLTYPE_IMPORT","features":[322]},{"name":"NTMS_POOLTYPE_SCRATCH","features":[322]},{"name":"NTMS_POOLTYPE_UNKNOWN","features":[322]},{"name":"NTMS_PORTCONTENT_EMPTY","features":[322]},{"name":"NTMS_PORTCONTENT_FULL","features":[322]},{"name":"NTMS_PORTCONTENT_UNKNOWN","features":[322]},{"name":"NTMS_PORTPOSITION_EXTENDED","features":[322]},{"name":"NTMS_PORTPOSITION_RETRACTED","features":[322]},{"name":"NTMS_PORTPOSITION_UNKNOWN","features":[322]},{"name":"NTMS_PRIORITY_DEFAULT","features":[322]},{"name":"NTMS_PRIORITY_HIGH","features":[322]},{"name":"NTMS_PRIORITY_HIGHEST","features":[322]},{"name":"NTMS_PRIORITY_LOW","features":[322]},{"name":"NTMS_PRIORITY_LOWEST","features":[322]},{"name":"NTMS_PRIORITY_NORMAL","features":[322]},{"name":"NTMS_PRODUCTNAME_LENGTH","features":[322]},{"name":"NTMS_READY","features":[322]},{"name":"NTMS_REVISION_LENGTH","features":[322]},{"name":"NTMS_SEQUENCE_LENGTH","features":[322]},{"name":"NTMS_SERIALNUMBER_LENGTH","features":[322]},{"name":"NTMS_SESSION_QUERYEXPEDITE","features":[322]},{"name":"NTMS_SLOTSTATE_EMPTY","features":[322]},{"name":"NTMS_SLOTSTATE_FULL","features":[322]},{"name":"NTMS_SLOTSTATE_NEEDSINVENTORY","features":[322]},{"name":"NTMS_SLOTSTATE_NOTPRESENT","features":[322]},{"name":"NTMS_SLOTSTATE_UNKNOWN","features":[322]},{"name":"NTMS_STORAGESLOT","features":[322]},{"name":"NTMS_STORAGESLOTINFORMATION","features":[322]},{"name":"NTMS_UIDEST_ADD","features":[322]},{"name":"NTMS_UIDEST_DELETE","features":[322]},{"name":"NTMS_UIDEST_DELETEALL","features":[322]},{"name":"NTMS_UIOPERATION_MAX","features":[322]},{"name":"NTMS_UITYPE_ERR","features":[322]},{"name":"NTMS_UITYPE_INFO","features":[322]},{"name":"NTMS_UITYPE_INVALID","features":[322]},{"name":"NTMS_UITYPE_MAX","features":[322]},{"name":"NTMS_UITYPE_REQ","features":[322]},{"name":"NTMS_UI_DESTINATION","features":[322]},{"name":"NTMS_UNKNOWN","features":[322]},{"name":"NTMS_UNKNOWN_DRIVE","features":[322]},{"name":"NTMS_USERNAME_LENGTH","features":[322]},{"name":"NTMS_USE_ACCESS","features":[322]},{"name":"NTMS_VENDORNAME_LENGTH","features":[322]},{"name":"NetConnectionEnum","features":[322]},{"name":"NetFileClose","features":[322]},{"name":"NetFileEnum","features":[322]},{"name":"NetFileGetInfo","features":[322]},{"name":"NetServerAliasAdd","features":[322]},{"name":"NetServerAliasDel","features":[322]},{"name":"NetServerAliasEnum","features":[322]},{"name":"NetSessionDel","features":[322]},{"name":"NetSessionEnum","features":[322]},{"name":"NetSessionGetInfo","features":[322]},{"name":"NetShareAdd","features":[322]},{"name":"NetShareCheck","features":[322]},{"name":"NetShareDel","features":[322]},{"name":"NetShareDelEx","features":[322]},{"name":"NetShareDelSticky","features":[322]},{"name":"NetShareEnum","features":[322]},{"name":"NetShareEnumSticky","features":[322]},{"name":"NetShareGetInfo","features":[322]},{"name":"NetShareSetInfo","features":[322]},{"name":"NetStatisticsGet","features":[322]},{"name":"NtmsAccessMask","features":[322]},{"name":"NtmsAllocateOptions","features":[322]},{"name":"NtmsAllocationPolicy","features":[322]},{"name":"NtmsAsyncOperations","features":[322]},{"name":"NtmsAsyncStatus","features":[322]},{"name":"NtmsBarCodeState","features":[322]},{"name":"NtmsCreateNtmsMediaOptions","features":[322]},{"name":"NtmsCreateOptions","features":[322]},{"name":"NtmsDeallocationPolicy","features":[322]},{"name":"NtmsDismountOptions","features":[322]},{"name":"NtmsDoorState","features":[322]},{"name":"NtmsDriveState","features":[322]},{"name":"NtmsDriveType","features":[322]},{"name":"NtmsEjectOperation","features":[322]},{"name":"NtmsEnumerateOption","features":[322]},{"name":"NtmsInjectOperation","features":[322]},{"name":"NtmsInventoryMethod","features":[322]},{"name":"NtmsLibRequestFlags","features":[322]},{"name":"NtmsLibraryFlags","features":[322]},{"name":"NtmsLibraryType","features":[322]},{"name":"NtmsLmOperation","features":[322]},{"name":"NtmsLmState","features":[322]},{"name":"NtmsMediaPoolPolicy","features":[322]},{"name":"NtmsMediaState","features":[322]},{"name":"NtmsMountOptions","features":[322]},{"name":"NtmsMountPriority","features":[322]},{"name":"NtmsNotificationOperations","features":[322]},{"name":"NtmsObjectsTypes","features":[322]},{"name":"NtmsOpRequestFlags","features":[322]},{"name":"NtmsOperationalState","features":[322]},{"name":"NtmsOpreqCommand","features":[322]},{"name":"NtmsOpreqState","features":[322]},{"name":"NtmsPartitionState","features":[322]},{"name":"NtmsPoolType","features":[322]},{"name":"NtmsPortContent","features":[322]},{"name":"NtmsPortPosition","features":[322]},{"name":"NtmsReadWriteCharacteristics","features":[322]},{"name":"NtmsSessionOptions","features":[322]},{"name":"NtmsSlotState","features":[322]},{"name":"NtmsUIOperations","features":[322]},{"name":"NtmsUITypes","features":[322]},{"name":"OFSTRUCT","features":[322]},{"name":"OF_CANCEL","features":[322]},{"name":"OF_CREATE","features":[322]},{"name":"OF_DELETE","features":[322]},{"name":"OF_EXIST","features":[322]},{"name":"OF_PARSE","features":[322]},{"name":"OF_PROMPT","features":[322]},{"name":"OF_READ","features":[322]},{"name":"OF_READWRITE","features":[322]},{"name":"OF_REOPEN","features":[322]},{"name":"OF_SHARE_COMPAT","features":[322]},{"name":"OF_SHARE_DENY_NONE","features":[322]},{"name":"OF_SHARE_DENY_READ","features":[322]},{"name":"OF_SHARE_DENY_WRITE","features":[322]},{"name":"OF_SHARE_EXCLUSIVE","features":[322]},{"name":"OF_VERIFY","features":[322]},{"name":"OF_WRITE","features":[322]},{"name":"OPEN_ALWAYS","features":[322]},{"name":"OPEN_EXISTING","features":[322]},{"name":"ObjectIdType","features":[322]},{"name":"OpenEncryptedFileRawA","features":[322]},{"name":"OpenEncryptedFileRawW","features":[322]},{"name":"OpenEnlistment","features":[303,322]},{"name":"OpenFile","features":[322]},{"name":"OpenFileById","features":[303,306,322]},{"name":"OpenResourceManager","features":[303,322]},{"name":"OpenTransaction","features":[303,322]},{"name":"OpenTransactionManager","features":[303,322]},{"name":"OpenTransactionManagerById","features":[303,322]},{"name":"PARTITION_BASIC_DATA_GUID","features":[322]},{"name":"PARTITION_BSP_GUID","features":[322]},{"name":"PARTITION_CLUSTER_GUID","features":[322]},{"name":"PARTITION_DPP_GUID","features":[322]},{"name":"PARTITION_ENTRY_UNUSED_GUID","features":[322]},{"name":"PARTITION_LDM_DATA_GUID","features":[322]},{"name":"PARTITION_LDM_METADATA_GUID","features":[322]},{"name":"PARTITION_LEGACY_BL_GUID","features":[322]},{"name":"PARTITION_LEGACY_BL_GUID_BACKUP","features":[322]},{"name":"PARTITION_MAIN_OS_GUID","features":[322]},{"name":"PARTITION_MSFT_RECOVERY_GUID","features":[322]},{"name":"PARTITION_MSFT_RESERVED_GUID","features":[322]},{"name":"PARTITION_MSFT_SNAPSHOT_GUID","features":[322]},{"name":"PARTITION_OS_DATA_GUID","features":[322]},{"name":"PARTITION_PATCH_GUID","features":[322]},{"name":"PARTITION_PRE_INSTALLED_GUID","features":[322]},{"name":"PARTITION_SBL_CACHE_HDD_GUID","features":[322]},{"name":"PARTITION_SBL_CACHE_SSD_GUID","features":[322]},{"name":"PARTITION_SBL_CACHE_SSD_RESERVED_GUID","features":[322]},{"name":"PARTITION_SERVICING_FILES_GUID","features":[322]},{"name":"PARTITION_SERVICING_METADATA_GUID","features":[322]},{"name":"PARTITION_SERVICING_RESERVE_GUID","features":[322]},{"name":"PARTITION_SERVICING_STAGING_ROOT_GUID","features":[322]},{"name":"PARTITION_SPACES_DATA_GUID","features":[322]},{"name":"PARTITION_SPACES_GUID","features":[322]},{"name":"PARTITION_SYSTEM_GUID","features":[322]},{"name":"PARTITION_WINDOWS_SYSTEM_GUID","features":[322]},{"name":"PCLFS_COMPLETION_ROUTINE","features":[322]},{"name":"PCOPYFILE2_PROGRESS_ROUTINE","features":[303,322]},{"name":"PERM_FILE_CREATE","features":[322]},{"name":"PERM_FILE_READ","features":[322]},{"name":"PERM_FILE_WRITE","features":[322]},{"name":"PFE_EXPORT_FUNC","features":[322]},{"name":"PFE_IMPORT_FUNC","features":[322]},{"name":"PFN_IO_COMPLETION","features":[303,322]},{"name":"PIPE_ACCESS_DUPLEX","features":[322]},{"name":"PIPE_ACCESS_INBOUND","features":[322]},{"name":"PIPE_ACCESS_OUTBOUND","features":[322]},{"name":"PLOG_FULL_HANDLER_CALLBACK","features":[303,322]},{"name":"PLOG_TAIL_ADVANCE_CALLBACK","features":[303,322]},{"name":"PLOG_UNPINNED_CALLBACK","features":[303,322]},{"name":"PREPARE_TAPE_OPERATION","features":[322]},{"name":"PRIORITY_HINT","features":[322]},{"name":"PopIoRingCompletion","features":[322]},{"name":"PrePrepareComplete","features":[303,322]},{"name":"PrePrepareEnlistment","features":[303,322]},{"name":"PrepareComplete","features":[303,322]},{"name":"PrepareEnlistment","features":[303,322]},{"name":"PrepareLogArchive","features":[303,322]},{"name":"PrepareTape","features":[303,322]},{"name":"QUIC","features":[322]},{"name":"QueryDosDeviceA","features":[322]},{"name":"QueryDosDeviceW","features":[322]},{"name":"QueryIoRingCapabilities","features":[322]},{"name":"QueryLogPolicy","features":[303,322]},{"name":"QueryRecoveryAgentsOnEncryptedFile","features":[306,322]},{"name":"QueryUsersOnEncryptedFile","features":[306,322]},{"name":"READ_CONTROL","features":[322]},{"name":"READ_DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[322]},{"name":"REPARSE_GUID_DATA_BUFFER","features":[322]},{"name":"REPLACEFILE_IGNORE_ACL_ERRORS","features":[322]},{"name":"REPLACEFILE_IGNORE_MERGE_ERRORS","features":[322]},{"name":"REPLACEFILE_WRITE_THROUGH","features":[322]},{"name":"REPLACE_FILE_FLAGS","features":[322]},{"name":"RESOURCE_MANAGER_COMMUNICATION","features":[322]},{"name":"RESOURCE_MANAGER_MAXIMUM_OPTION","features":[322]},{"name":"RESOURCE_MANAGER_OBJECT_PATH","features":[322]},{"name":"RESOURCE_MANAGER_VOLATILE","features":[322]},{"name":"ReOpenFile","features":[303,322]},{"name":"ReadDirectoryChangesExW","features":[303,322,308]},{"name":"ReadDirectoryChangesW","features":[303,322,308]},{"name":"ReadDirectoryNotifyExtendedInformation","features":[322]},{"name":"ReadDirectoryNotifyFullInformation","features":[322]},{"name":"ReadDirectoryNotifyInformation","features":[322]},{"name":"ReadDirectoryNotifyMaximumInformation","features":[322]},{"name":"ReadEncryptedFileRaw","features":[322]},{"name":"ReadFile","features":[303,322,308]},{"name":"ReadFileEx","features":[303,322,308]},{"name":"ReadFileScatter","features":[303,322,308]},{"name":"ReadLogArchiveMetadata","features":[303,322]},{"name":"ReadLogNotification","features":[303,322,308]},{"name":"ReadLogRecord","features":[303,322,308]},{"name":"ReadLogRestartArea","features":[303,322,308]},{"name":"ReadNextLogRecord","features":[303,322,308]},{"name":"ReadOnlyEnlistment","features":[303,322]},{"name":"ReadPreviousLogRestartArea","features":[303,322,308]},{"name":"RecoverEnlistment","features":[303,322]},{"name":"RecoverResourceManager","features":[303,322]},{"name":"RecoverTransactionManager","features":[303,322]},{"name":"RegisterForLogWriteNotification","features":[303,322]},{"name":"RegisterManageableLogClient","features":[303,322]},{"name":"RemoveDirectoryA","features":[303,322]},{"name":"RemoveDirectoryFromAppW","features":[303,322]},{"name":"RemoveDirectoryTransactedA","features":[303,322]},{"name":"RemoveDirectoryTransactedW","features":[303,322]},{"name":"RemoveDirectoryW","features":[303,322]},{"name":"RemoveLogContainer","features":[303,322]},{"name":"RemoveLogContainerSet","features":[303,322]},{"name":"RemoveLogPolicy","features":[303,322]},{"name":"RemoveUsersFromEncryptedFile","features":[306,322]},{"name":"RenameTransactionManager","features":[303,322]},{"name":"ReplaceFileA","features":[303,322]},{"name":"ReplaceFileFromAppW","features":[303,322]},{"name":"ReplaceFileW","features":[303,322]},{"name":"ReserveAndAppendLog","features":[303,322,308]},{"name":"ReserveAndAppendLogAligned","features":[303,322,308]},{"name":"RollbackComplete","features":[303,322]},{"name":"RollbackEnlistment","features":[303,322]},{"name":"RollbackTransaction","features":[303,322]},{"name":"RollbackTransactionAsync","features":[303,322]},{"name":"RollforwardTransactionManager","features":[303,322]},{"name":"SECURITY_ANONYMOUS","features":[322]},{"name":"SECURITY_CONTEXT_TRACKING","features":[322]},{"name":"SECURITY_DELEGATION","features":[322]},{"name":"SECURITY_EFFECTIVE_ONLY","features":[322]},{"name":"SECURITY_IDENTIFICATION","features":[322]},{"name":"SECURITY_IMPERSONATION","features":[322]},{"name":"SECURITY_SQOS_PRESENT","features":[322]},{"name":"SECURITY_VALID_SQOS_FLAGS","features":[322]},{"name":"SERVER_ALIAS_INFO_0","features":[303,322]},{"name":"SERVER_CERTIFICATE_INFO_0","features":[322]},{"name":"SERVER_CERTIFICATE_TYPE","features":[322]},{"name":"SESI1_NUM_ELEMENTS","features":[322]},{"name":"SESI2_NUM_ELEMENTS","features":[322]},{"name":"SESSION_INFO_0","features":[322]},{"name":"SESSION_INFO_1","features":[322]},{"name":"SESSION_INFO_10","features":[322]},{"name":"SESSION_INFO_2","features":[322]},{"name":"SESSION_INFO_502","features":[322]},{"name":"SESSION_INFO_USER_FLAGS","features":[322]},{"name":"SESS_GUEST","features":[322]},{"name":"SESS_NOENCRYPTION","features":[322]},{"name":"SET_FILE_POINTER_MOVE_METHOD","features":[322]},{"name":"SET_TAPE_DRIVE_INFORMATION","features":[322]},{"name":"SET_TAPE_MEDIA_INFORMATION","features":[322]},{"name":"SHARE_CURRENT_USES_PARMNUM","features":[322]},{"name":"SHARE_FILE_SD_PARMNUM","features":[322]},{"name":"SHARE_INFO_0","features":[322]},{"name":"SHARE_INFO_1","features":[322]},{"name":"SHARE_INFO_1004","features":[322]},{"name":"SHARE_INFO_1005","features":[322]},{"name":"SHARE_INFO_1006","features":[322]},{"name":"SHARE_INFO_1501","features":[306,322]},{"name":"SHARE_INFO_1503","features":[322]},{"name":"SHARE_INFO_2","features":[322]},{"name":"SHARE_INFO_501","features":[322]},{"name":"SHARE_INFO_502","features":[306,322]},{"name":"SHARE_INFO_503","features":[306,322]},{"name":"SHARE_INFO_PERMISSIONS","features":[322]},{"name":"SHARE_MAX_USES_PARMNUM","features":[322]},{"name":"SHARE_NETNAME_PARMNUM","features":[322]},{"name":"SHARE_PASSWD_PARMNUM","features":[322]},{"name":"SHARE_PATH_PARMNUM","features":[322]},{"name":"SHARE_PERMISSIONS_PARMNUM","features":[322]},{"name":"SHARE_QOS_POLICY_PARMNUM","features":[322]},{"name":"SHARE_REMARK_PARMNUM","features":[322]},{"name":"SHARE_SERVER_PARMNUM","features":[322]},{"name":"SHARE_TYPE","features":[322]},{"name":"SHARE_TYPE_PARMNUM","features":[322]},{"name":"SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM","features":[322]},{"name":"SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING","features":[322]},{"name":"SHI1005_FLAGS_CLUSTER_MANAGED","features":[322]},{"name":"SHI1005_FLAGS_COMPRESS_DATA","features":[322]},{"name":"SHI1005_FLAGS_DFS","features":[322]},{"name":"SHI1005_FLAGS_DFS_ROOT","features":[322]},{"name":"SHI1005_FLAGS_DISABLE_CLIENT_BUFFERING","features":[322]},{"name":"SHI1005_FLAGS_DISABLE_DIRECTORY_HANDLE_LEASING","features":[322]},{"name":"SHI1005_FLAGS_ENABLE_CA","features":[322]},{"name":"SHI1005_FLAGS_ENABLE_HASH","features":[322]},{"name":"SHI1005_FLAGS_ENCRYPT_DATA","features":[322]},{"name":"SHI1005_FLAGS_FORCE_LEVELII_OPLOCK","features":[322]},{"name":"SHI1005_FLAGS_FORCE_SHARED_DELETE","features":[322]},{"name":"SHI1005_FLAGS_IDENTITY_REMOTING","features":[322]},{"name":"SHI1005_FLAGS_ISOLATED_TRANSPORT","features":[322]},{"name":"SHI1005_FLAGS_RESERVED","features":[322]},{"name":"SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS","features":[322]},{"name":"SHI1_NUM_ELEMENTS","features":[322]},{"name":"SHI2_NUM_ELEMENTS","features":[322]},{"name":"SHI_USES_UNLIMITED","features":[322]},{"name":"SPECIFIC_RIGHTS_ALL","features":[322]},{"name":"STANDARD_RIGHTS_ALL","features":[322]},{"name":"STANDARD_RIGHTS_EXECUTE","features":[322]},{"name":"STANDARD_RIGHTS_READ","features":[322]},{"name":"STANDARD_RIGHTS_REQUIRED","features":[322]},{"name":"STANDARD_RIGHTS_WRITE","features":[322]},{"name":"STATSOPT_CLR","features":[322]},{"name":"STAT_SERVER_0","features":[322]},{"name":"STAT_WORKSTATION_0","features":[322]},{"name":"STORAGE_BUS_TYPE","features":[322]},{"name":"STREAM_INFO_LEVELS","features":[322]},{"name":"STYPE_DEVICE","features":[322]},{"name":"STYPE_DISKTREE","features":[322]},{"name":"STYPE_IPC","features":[322]},{"name":"STYPE_MASK","features":[322]},{"name":"STYPE_PRINTQ","features":[322]},{"name":"STYPE_RESERVED1","features":[322]},{"name":"STYPE_RESERVED2","features":[322]},{"name":"STYPE_RESERVED3","features":[322]},{"name":"STYPE_RESERVED4","features":[322]},{"name":"STYPE_RESERVED5","features":[322]},{"name":"STYPE_RESERVED_ALL","features":[322]},{"name":"STYPE_SPECIAL","features":[322]},{"name":"STYPE_TEMPORARY","features":[322]},{"name":"SYMBOLIC_LINK_FLAGS","features":[322]},{"name":"SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE","features":[322]},{"name":"SYMBOLIC_LINK_FLAG_DIRECTORY","features":[322]},{"name":"SYNCHRONIZE","features":[322]},{"name":"ScanLogContainers","features":[303,322]},{"name":"SearchPathA","features":[322]},{"name":"SearchPathW","features":[322]},{"name":"SetEncryptedFileMetadata","features":[306,322]},{"name":"SetEndOfFile","features":[303,322]},{"name":"SetEndOfLog","features":[303,322,308]},{"name":"SetEnlistmentRecoveryInformation","features":[303,322]},{"name":"SetFileApisToANSI","features":[322]},{"name":"SetFileApisToOEM","features":[322]},{"name":"SetFileAttributesA","features":[303,322]},{"name":"SetFileAttributesFromAppW","features":[303,322]},{"name":"SetFileAttributesTransactedA","features":[303,322]},{"name":"SetFileAttributesTransactedW","features":[303,322]},{"name":"SetFileAttributesW","features":[303,322]},{"name":"SetFileBandwidthReservation","features":[303,322]},{"name":"SetFileCompletionNotificationModes","features":[303,322]},{"name":"SetFileInformationByHandle","features":[303,322]},{"name":"SetFileIoOverlappedRange","features":[303,322]},{"name":"SetFilePointer","features":[303,322]},{"name":"SetFilePointerEx","features":[303,322]},{"name":"SetFileShortNameA","features":[303,322]},{"name":"SetFileShortNameW","features":[303,322]},{"name":"SetFileTime","features":[303,322]},{"name":"SetFileValidData","features":[303,322]},{"name":"SetIoRingCompletionEvent","features":[303,322]},{"name":"SetLogArchiveMode","features":[303,322]},{"name":"SetLogArchiveTail","features":[303,322]},{"name":"SetLogFileSizeWithPolicy","features":[303,322]},{"name":"SetResourceManagerCompletionPort","features":[303,322]},{"name":"SetSearchPathMode","features":[303,322]},{"name":"SetTapeParameters","features":[303,322]},{"name":"SetTapePosition","features":[303,322]},{"name":"SetTransactionInformation","features":[303,322]},{"name":"SetUserFileEncryptionKey","features":[306,322]},{"name":"SetUserFileEncryptionKeyEx","features":[306,322]},{"name":"SetVolumeLabelA","features":[303,322]},{"name":"SetVolumeLabelW","features":[303,322]},{"name":"SetVolumeMountPointA","features":[303,322]},{"name":"SetVolumeMountPointW","features":[303,322]},{"name":"SinglePhaseReject","features":[303,322]},{"name":"SubmitIoRing","features":[322]},{"name":"TAPEMARK_TYPE","features":[322]},{"name":"TAPE_ABSOLUTE_BLOCK","features":[322]},{"name":"TAPE_ABSOLUTE_POSITION","features":[322]},{"name":"TAPE_ERASE","features":[303,322]},{"name":"TAPE_ERASE_LONG","features":[322]},{"name":"TAPE_ERASE_SHORT","features":[322]},{"name":"TAPE_FILEMARKS","features":[322]},{"name":"TAPE_FIXED_PARTITIONS","features":[322]},{"name":"TAPE_FORMAT","features":[322]},{"name":"TAPE_GET_POSITION","features":[322]},{"name":"TAPE_INFORMATION_TYPE","features":[322]},{"name":"TAPE_INITIATOR_PARTITIONS","features":[322]},{"name":"TAPE_LOAD","features":[322]},{"name":"TAPE_LOCK","features":[322]},{"name":"TAPE_LOGICAL_BLOCK","features":[322]},{"name":"TAPE_LOGICAL_POSITION","features":[322]},{"name":"TAPE_LONG_FILEMARKS","features":[322]},{"name":"TAPE_POSITION_METHOD","features":[322]},{"name":"TAPE_POSITION_TYPE","features":[322]},{"name":"TAPE_PREPARE","features":[303,322]},{"name":"TAPE_REWIND","features":[322]},{"name":"TAPE_SELECT_PARTITIONS","features":[322]},{"name":"TAPE_SETMARKS","features":[322]},{"name":"TAPE_SET_POSITION","features":[303,322]},{"name":"TAPE_SHORT_FILEMARKS","features":[322]},{"name":"TAPE_SPACE_END_OF_DATA","features":[322]},{"name":"TAPE_SPACE_FILEMARKS","features":[322]},{"name":"TAPE_SPACE_RELATIVE_BLOCKS","features":[322]},{"name":"TAPE_SPACE_SEQUENTIAL_FMKS","features":[322]},{"name":"TAPE_SPACE_SEQUENTIAL_SMKS","features":[322]},{"name":"TAPE_SPACE_SETMARKS","features":[322]},{"name":"TAPE_TENSION","features":[322]},{"name":"TAPE_UNLOAD","features":[322]},{"name":"TAPE_UNLOCK","features":[322]},{"name":"TAPE_WRITE_MARKS","features":[303,322]},{"name":"TRANSACTIONMANAGER_OBJECT_PATH","features":[322]},{"name":"TRANSACTION_DO_NOT_PROMOTE","features":[322]},{"name":"TRANSACTION_MANAGER_COMMIT_DEFAULT","features":[322]},{"name":"TRANSACTION_MANAGER_COMMIT_LOWEST","features":[322]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_HIVES","features":[322]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_VOLUME","features":[322]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_PROGRESS","features":[322]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_RECOVERY","features":[322]},{"name":"TRANSACTION_MANAGER_MAXIMUM_OPTION","features":[322]},{"name":"TRANSACTION_MANAGER_VOLATILE","features":[322]},{"name":"TRANSACTION_MAXIMUM_OPTION","features":[322]},{"name":"TRANSACTION_NOTIFICATION","features":[322]},{"name":"TRANSACTION_NOTIFICATION_MARSHAL_ARGUMENT","features":[322]},{"name":"TRANSACTION_NOTIFICATION_PROPAGATE_ARGUMENT","features":[322]},{"name":"TRANSACTION_NOTIFICATION_RECOVERY_ARGUMENT","features":[322]},{"name":"TRANSACTION_NOTIFICATION_SAVEPOINT_ARGUMENT","features":[322]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_ARGUMENT","features":[322]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_FLAG_IS_CLUSTERED","features":[322]},{"name":"TRANSACTION_NOTIFY_COMMIT","features":[322]},{"name":"TRANSACTION_NOTIFY_COMMIT_COMPLETE","features":[322]},{"name":"TRANSACTION_NOTIFY_COMMIT_FINALIZE","features":[322]},{"name":"TRANSACTION_NOTIFY_COMMIT_REQUEST","features":[322]},{"name":"TRANSACTION_NOTIFY_DELEGATE_COMMIT","features":[322]},{"name":"TRANSACTION_NOTIFY_ENLIST_MASK","features":[322]},{"name":"TRANSACTION_NOTIFY_ENLIST_PREPREPARE","features":[322]},{"name":"TRANSACTION_NOTIFY_INDOUBT","features":[322]},{"name":"TRANSACTION_NOTIFY_LAST_RECOVER","features":[322]},{"name":"TRANSACTION_NOTIFY_MARSHAL","features":[322]},{"name":"TRANSACTION_NOTIFY_MASK","features":[322]},{"name":"TRANSACTION_NOTIFY_PREPARE","features":[322]},{"name":"TRANSACTION_NOTIFY_PREPARE_COMPLETE","features":[322]},{"name":"TRANSACTION_NOTIFY_PREPREPARE","features":[322]},{"name":"TRANSACTION_NOTIFY_PREPREPARE_COMPLETE","features":[322]},{"name":"TRANSACTION_NOTIFY_PROMOTE","features":[322]},{"name":"TRANSACTION_NOTIFY_PROMOTE_NEW","features":[322]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PULL","features":[322]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PUSH","features":[322]},{"name":"TRANSACTION_NOTIFY_RECOVER","features":[322]},{"name":"TRANSACTION_NOTIFY_RECOVER_QUERY","features":[322]},{"name":"TRANSACTION_NOTIFY_REQUEST_OUTCOME","features":[322]},{"name":"TRANSACTION_NOTIFY_RM_DISCONNECTED","features":[322]},{"name":"TRANSACTION_NOTIFY_ROLLBACK","features":[322]},{"name":"TRANSACTION_NOTIFY_ROLLBACK_COMPLETE","features":[322]},{"name":"TRANSACTION_NOTIFY_SINGLE_PHASE_COMMIT","features":[322]},{"name":"TRANSACTION_NOTIFY_TM_ONLINE","features":[322]},{"name":"TRANSACTION_OBJECT_PATH","features":[322]},{"name":"TRANSACTION_OUTCOME","features":[322]},{"name":"TRUNCATE_EXISTING","features":[322]},{"name":"TXFS_MINIVERSION","features":[322]},{"name":"TXFS_MINIVERSION_COMMITTED_VIEW","features":[322]},{"name":"TXFS_MINIVERSION_DEFAULT_VIEW","features":[322]},{"name":"TXFS_MINIVERSION_DIRTY_VIEW","features":[322]},{"name":"TXF_ID","features":[322]},{"name":"TXF_LOG_RECORD_AFFECTED_FILE","features":[322]},{"name":"TXF_LOG_RECORD_BASE","features":[322]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_ABORT","features":[322]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_COMMIT","features":[322]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_DATA","features":[322]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_PREPARE","features":[322]},{"name":"TXF_LOG_RECORD_TRUNCATE","features":[322]},{"name":"TXF_LOG_RECORD_TYPE","features":[322]},{"name":"TXF_LOG_RECORD_TYPE_AFFECTED_FILE","features":[322]},{"name":"TXF_LOG_RECORD_TYPE_TRUNCATE","features":[322]},{"name":"TXF_LOG_RECORD_TYPE_WRITE","features":[322]},{"name":"TXF_LOG_RECORD_WRITE","features":[322]},{"name":"TerminateLogArchive","features":[303,322]},{"name":"TerminateReadLog","features":[303,322]},{"name":"TransactionOutcomeAborted","features":[322]},{"name":"TransactionOutcomeCommitted","features":[322]},{"name":"TransactionOutcomeUndetermined","features":[322]},{"name":"TruncateLog","features":[303,322,308]},{"name":"TxfGetThreadMiniVersionForCreate","features":[322]},{"name":"TxfLogCreateFileReadContext","features":[303,322]},{"name":"TxfLogCreateRangeReadContext","features":[303,322]},{"name":"TxfLogDestroyReadContext","features":[303,322]},{"name":"TxfLogReadRecords","features":[303,322]},{"name":"TxfLogRecordGetFileName","features":[303,322]},{"name":"TxfLogRecordGetGenericType","features":[303,322]},{"name":"TxfReadMetadataInfo","features":[303,322]},{"name":"TxfSetThreadMiniVersionForCreate","features":[322]},{"name":"UnlockFile","features":[303,322]},{"name":"UnlockFileEx","features":[303,322,308]},{"name":"VER_FIND_FILE_FLAGS","features":[322]},{"name":"VER_FIND_FILE_STATUS","features":[322]},{"name":"VER_INSTALL_FILE_FLAGS","features":[322]},{"name":"VER_INSTALL_FILE_STATUS","features":[322]},{"name":"VFFF_ISSHAREDFILE","features":[322]},{"name":"VFF_BUFFTOOSMALL","features":[322]},{"name":"VFF_CURNEDEST","features":[322]},{"name":"VFF_FILEINUSE","features":[322]},{"name":"VFT2_DRV_COMM","features":[322]},{"name":"VFT2_DRV_DISPLAY","features":[322]},{"name":"VFT2_DRV_INPUTMETHOD","features":[322]},{"name":"VFT2_DRV_INSTALLABLE","features":[322]},{"name":"VFT2_DRV_KEYBOARD","features":[322]},{"name":"VFT2_DRV_LANGUAGE","features":[322]},{"name":"VFT2_DRV_MOUSE","features":[322]},{"name":"VFT2_DRV_NETWORK","features":[322]},{"name":"VFT2_DRV_PRINTER","features":[322]},{"name":"VFT2_DRV_SOUND","features":[322]},{"name":"VFT2_DRV_SYSTEM","features":[322]},{"name":"VFT2_DRV_VERSIONED_PRINTER","features":[322]},{"name":"VFT2_FONT_RASTER","features":[322]},{"name":"VFT2_FONT_TRUETYPE","features":[322]},{"name":"VFT2_FONT_VECTOR","features":[322]},{"name":"VFT2_UNKNOWN","features":[322]},{"name":"VFT_APP","features":[322]},{"name":"VFT_DLL","features":[322]},{"name":"VFT_DRV","features":[322]},{"name":"VFT_FONT","features":[322]},{"name":"VFT_STATIC_LIB","features":[322]},{"name":"VFT_UNKNOWN","features":[322]},{"name":"VFT_VXD","features":[322]},{"name":"VIFF_DONTDELETEOLD","features":[322]},{"name":"VIFF_FORCEINSTALL","features":[322]},{"name":"VIF_ACCESSVIOLATION","features":[322]},{"name":"VIF_BUFFTOOSMALL","features":[322]},{"name":"VIF_CANNOTCREATE","features":[322]},{"name":"VIF_CANNOTDELETE","features":[322]},{"name":"VIF_CANNOTDELETECUR","features":[322]},{"name":"VIF_CANNOTLOADCABINET","features":[322]},{"name":"VIF_CANNOTLOADLZ32","features":[322]},{"name":"VIF_CANNOTREADDST","features":[322]},{"name":"VIF_CANNOTREADSRC","features":[322]},{"name":"VIF_CANNOTRENAME","features":[322]},{"name":"VIF_DIFFCODEPG","features":[322]},{"name":"VIF_DIFFLANG","features":[322]},{"name":"VIF_DIFFTYPE","features":[322]},{"name":"VIF_FILEINUSE","features":[322]},{"name":"VIF_MISMATCH","features":[322]},{"name":"VIF_OUTOFMEMORY","features":[322]},{"name":"VIF_OUTOFSPACE","features":[322]},{"name":"VIF_SHARINGVIOLATION","features":[322]},{"name":"VIF_SRCOLD","features":[322]},{"name":"VIF_TEMPFILE","features":[322]},{"name":"VIF_WRITEPROT","features":[322]},{"name":"VOLUME_ALLOCATE_BC_STREAM_INPUT","features":[303,322]},{"name":"VOLUME_ALLOCATE_BC_STREAM_OUTPUT","features":[322]},{"name":"VOLUME_ALLOCATION_HINT_INPUT","features":[322]},{"name":"VOLUME_ALLOCATION_HINT_OUTPUT","features":[322]},{"name":"VOLUME_CRITICAL_IO","features":[322]},{"name":"VOLUME_FAILOVER_SET","features":[322]},{"name":"VOLUME_GET_BC_PROPERTIES_INPUT","features":[322]},{"name":"VOLUME_GET_BC_PROPERTIES_OUTPUT","features":[322]},{"name":"VOLUME_LOGICAL_OFFSET","features":[322]},{"name":"VOLUME_NAME_DOS","features":[322]},{"name":"VOLUME_NAME_GUID","features":[322]},{"name":"VOLUME_NAME_NONE","features":[322]},{"name":"VOLUME_NAME_NT","features":[322]},{"name":"VOLUME_NUMBER","features":[322]},{"name":"VOLUME_PHYSICAL_OFFSET","features":[322]},{"name":"VOLUME_PHYSICAL_OFFSETS","features":[322]},{"name":"VOLUME_READ_PLEX_INPUT","features":[322]},{"name":"VOLUME_SET_GPT_ATTRIBUTES_INFORMATION","features":[303,322]},{"name":"VOLUME_SHRINK_INFO","features":[322]},{"name":"VOS_DOS","features":[322]},{"name":"VOS_DOS_WINDOWS16","features":[322]},{"name":"VOS_DOS_WINDOWS32","features":[322]},{"name":"VOS_NT","features":[322]},{"name":"VOS_NT_WINDOWS32","features":[322]},{"name":"VOS_OS216","features":[322]},{"name":"VOS_OS216_PM16","features":[322]},{"name":"VOS_OS232","features":[322]},{"name":"VOS_OS232_PM32","features":[322]},{"name":"VOS_UNKNOWN","features":[322]},{"name":"VOS_WINCE","features":[322]},{"name":"VOS__BASE","features":[322]},{"name":"VOS__PM16","features":[322]},{"name":"VOS__PM32","features":[322]},{"name":"VOS__WINDOWS16","features":[322]},{"name":"VOS__WINDOWS32","features":[322]},{"name":"VS_FFI_FILEFLAGSMASK","features":[322]},{"name":"VS_FFI_SIGNATURE","features":[322]},{"name":"VS_FFI_STRUCVERSION","features":[322]},{"name":"VS_FF_DEBUG","features":[322]},{"name":"VS_FF_INFOINFERRED","features":[322]},{"name":"VS_FF_PATCHED","features":[322]},{"name":"VS_FF_PRERELEASE","features":[322]},{"name":"VS_FF_PRIVATEBUILD","features":[322]},{"name":"VS_FF_SPECIALBUILD","features":[322]},{"name":"VS_FIXEDFILEINFO","features":[322]},{"name":"VS_FIXEDFILEINFO_FILE_FLAGS","features":[322]},{"name":"VS_FIXEDFILEINFO_FILE_OS","features":[322]},{"name":"VS_FIXEDFILEINFO_FILE_SUBTYPE","features":[322]},{"name":"VS_FIXEDFILEINFO_FILE_TYPE","features":[322]},{"name":"VS_USER_DEFINED","features":[322]},{"name":"VS_VERSION_INFO","features":[322]},{"name":"ValidateLog","features":[303,306,322]},{"name":"VerFindFileA","features":[322]},{"name":"VerFindFileW","features":[322]},{"name":"VerInstallFileA","features":[322]},{"name":"VerInstallFileW","features":[322]},{"name":"VerLanguageNameA","features":[322]},{"name":"VerLanguageNameW","features":[322]},{"name":"VerQueryValueA","features":[303,322]},{"name":"VerQueryValueW","features":[303,322]},{"name":"WIM_BOOT_NOT_OS_WIM","features":[322]},{"name":"WIM_BOOT_OS_WIM","features":[322]},{"name":"WIM_ENTRY_FLAG_NOT_ACTIVE","features":[322]},{"name":"WIM_ENTRY_FLAG_SUSPENDED","features":[322]},{"name":"WIM_ENTRY_INFO","features":[322]},{"name":"WIM_EXTERNAL_FILE_INFO","features":[322]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_NOT_ACTIVE","features":[322]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_SUSPENDED","features":[322]},{"name":"WIM_PROVIDER_HASH_SIZE","features":[322]},{"name":"WIN32_FILE_ATTRIBUTE_DATA","features":[303,322]},{"name":"WIN32_FIND_DATAA","features":[303,322]},{"name":"WIN32_FIND_DATAW","features":[303,322]},{"name":"WIN32_FIND_STREAM_DATA","features":[322]},{"name":"WIN32_STREAM_ID","features":[322]},{"name":"WINEFS_SETUSERKEY_SET_CAPABILITIES","features":[322]},{"name":"WIN_STREAM_ID","features":[322]},{"name":"WOF_FILE_COMPRESSION_INFO_V0","features":[322]},{"name":"WOF_FILE_COMPRESSION_INFO_V1","features":[322]},{"name":"WOF_PROVIDER_FILE","features":[322]},{"name":"WOF_PROVIDER_WIM","features":[322]},{"name":"WRITE_DAC","features":[322]},{"name":"WRITE_OWNER","features":[322]},{"name":"WofEnumEntries","features":[303,322]},{"name":"WofEnumEntryProc","features":[303,322]},{"name":"WofEnumFilesProc","features":[303,322]},{"name":"WofFileEnumFiles","features":[303,322]},{"name":"WofGetDriverVersion","features":[303,322]},{"name":"WofIsExternalFile","features":[303,322]},{"name":"WofSetFileDataLocation","features":[303,322]},{"name":"WofShouldCompressBinaries","features":[303,322]},{"name":"WofWimAddEntry","features":[322]},{"name":"WofWimEnumFiles","features":[303,322]},{"name":"WofWimRemoveEntry","features":[322]},{"name":"WofWimSuspendEntry","features":[322]},{"name":"WofWimUpdateEntry","features":[322]},{"name":"Wow64DisableWow64FsRedirection","features":[303,322]},{"name":"Wow64EnableWow64FsRedirection","features":[303,322]},{"name":"Wow64RevertWow64FsRedirection","features":[303,322]},{"name":"WriteEncryptedFileRaw","features":[322]},{"name":"WriteFile","features":[303,322,308]},{"name":"WriteFileEx","features":[303,322,308]},{"name":"WriteFileGather","features":[303,322,308]},{"name":"WriteLogRestartArea","features":[303,322,308]},{"name":"WriteTapemark","features":[303,322]},{"name":"_FT_TYPES_DEFINITION_","features":[322]}],"511":[{"name":"BlockRange","features":[506]},{"name":"BlockRangeList","features":[506]},{"name":"BootOptions","features":[506]},{"name":"CATID_SMTP_DNSRESOLVERRECORDSINK","features":[506]},{"name":"CATID_SMTP_DSN","features":[506]},{"name":"CATID_SMTP_GET_AUX_DOMAIN_INFO_FLAGS","features":[506]},{"name":"CATID_SMTP_LOG","features":[506]},{"name":"CATID_SMTP_MAXMSGSIZE","features":[506]},{"name":"CATID_SMTP_MSGTRACKLOG","features":[506]},{"name":"CATID_SMTP_ON_BEFORE_DATA","features":[506]},{"name":"CATID_SMTP_ON_INBOUND_COMMAND","features":[506]},{"name":"CATID_SMTP_ON_MESSAGE_START","features":[506]},{"name":"CATID_SMTP_ON_PER_RECIPIENT","features":[506]},{"name":"CATID_SMTP_ON_SERVER_RESPONSE","features":[506]},{"name":"CATID_SMTP_ON_SESSION_END","features":[506]},{"name":"CATID_SMTP_ON_SESSION_START","features":[506]},{"name":"CATID_SMTP_STORE_DRIVER","features":[506]},{"name":"CATID_SMTP_TRANSPORT_CATEGORIZE","features":[506]},{"name":"CATID_SMTP_TRANSPORT_POSTCATEGORIZE","features":[506]},{"name":"CATID_SMTP_TRANSPORT_PRECATEGORIZE","features":[506]},{"name":"CATID_SMTP_TRANSPORT_ROUTER","features":[506]},{"name":"CATID_SMTP_TRANSPORT_SUBMISSION","features":[506]},{"name":"CLSID_SmtpCat","features":[506]},{"name":"CloseIMsgSession","features":[506]},{"name":"DDiscFormat2DataEvents","features":[506,354]},{"name":"DDiscFormat2EraseEvents","features":[506,354]},{"name":"DDiscFormat2RawCDEvents","features":[506,354]},{"name":"DDiscFormat2TrackAtOnceEvents","features":[506,354]},{"name":"DDiscMaster2Events","features":[506,354]},{"name":"DFileSystemImageEvents","features":[506,354]},{"name":"DFileSystemImageImportEvents","features":[506,354]},{"name":"DISC_RECORDER_STATE_FLAGS","features":[506]},{"name":"DISPID_DDISCFORMAT2DATAEVENTS_UPDATE","features":[506]},{"name":"DISPID_DDISCFORMAT2RAWCDEVENTS_UPDATE","features":[506]},{"name":"DISPID_DDISCFORMAT2TAOEVENTS_UPDATE","features":[506]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEADDED","features":[506]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEREMOVED","features":[506]},{"name":"DISPID_DFILESYSTEMIMAGEEVENTS_UPDATE","features":[506]},{"name":"DISPID_DFILESYSTEMIMAGEIMPORTEVENTS_UPDATEIMPORT","features":[506]},{"name":"DISPID_DWRITEENGINE2EVENTS_UPDATE","features":[506]},{"name":"DISPID_IBLOCKRANGELIST_BLOCKRANGES","features":[506]},{"name":"DISPID_IBLOCKRANGE_ENDLBA","features":[506]},{"name":"DISPID_IBLOCKRANGE_STARTLBA","features":[506]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_CURRENTACTION","features":[506]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ELAPSEDTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDREMAININGTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDTOTALTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_BUFFERUNDERRUNFREEDISABLED","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_CANCELWRITE","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_CLIENTNAME","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIASTATUS","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIATYPE","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTROTATIONTYPEISPURECAV","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_DISABLEDVDCOMPATIBILITYMODE","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEMEDIATOBECLOSED","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEOVERWRITE","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_FREESECTORS","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_LASTSECTOROFPREVIOUSSESSION","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_MUTLISESSIONINTERFACES","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_NEXTWRITABLEADDRESS","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_POSTGAPALREADYINIMAGE","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_RECORDER","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDROTATIONTYPEISPURECAV","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_SETWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_STARTSECTOROFPREVIOUSSESSION","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDS","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_TOTALSECTORS","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_WRITE","features":[506]},{"name":"DISPID_IDISCFORMAT2DATA_WRITEPROTECTSTATUS","features":[506]},{"name":"DISPID_IDISCFORMAT2ERASEEVENTS_UPDATE","features":[506]},{"name":"DISPID_IDISCFORMAT2ERASE_CLIENTNAME","features":[506]},{"name":"DISPID_IDISCFORMAT2ERASE_ERASEMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2ERASE_FULLERASE","features":[506]},{"name":"DISPID_IDISCFORMAT2ERASE_MEDIATYPE","features":[506]},{"name":"DISPID_IDISCFORMAT2ERASE_RECORDER","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTACTION","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTTRACKNUMBER","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ELAPSEDTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDREMAININGTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDTOTALTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_BUFFERUNDERRUNFREEDISABLED","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_CANCELWRITE","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_CLIENTNAME","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTMEDIATYPE","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTROTATIONTYPEISPURECAV","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_LASTPOSSIBLESTARTOFLEADOUT","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_PREPAREMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_RECORDER","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_RELEASEMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDDATASECTORTYPE","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDROTATIONTYPEISPURECAV","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_SETWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_STARTOFNEXTSESSION","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDDATASECTORTYPES","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDS","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIAWITHVALIDATION","features":[506]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTACTION","features":[506]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTTRACKNUMBER","features":[506]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ELAPSEDTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDREMAININGTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDTOTALTIME","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_ADDAUDIOTRACK","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_BUFFERUNDERRUNFREEDISABLED","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_CANCELADDTRACK","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_CLIENTNAME","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTMEDIATYPE","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTROTATIONTYPEISPURECAV","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_DONOTFINALIZEMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_EXPECTEDTABLEOFCONTENTS","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_FINISHMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_FREESECTORSONMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_NUMBEROFEXISTINGTRACKS","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_PREPAREMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_RECORDER","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDROTATIONTYPEISPURECAV","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_SETWRITESPEED","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDS","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_TOTALSECTORSONMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2TAO_USEDSECTORSONMEDIA","features":[506]},{"name":"DISPID_IDISCFORMAT2_MEDIAHEURISTICALLYBLANK","features":[506]},{"name":"DISPID_IDISCFORMAT2_MEDIAPHYSICALLYBLANK","features":[506]},{"name":"DISPID_IDISCFORMAT2_MEDIASUPPORTED","features":[506]},{"name":"DISPID_IDISCFORMAT2_RECORDERSUPPORTED","features":[506]},{"name":"DISPID_IDISCFORMAT2_SUPPORTEDMEDIATYPES","features":[506]},{"name":"DISPID_IDISCRECORDER2_ACQUIREEXCLUSIVEACCESS","features":[506]},{"name":"DISPID_IDISCRECORDER2_ACTIVEDISCRECORDER","features":[506]},{"name":"DISPID_IDISCRECORDER2_CLOSETRAY","features":[506]},{"name":"DISPID_IDISCRECORDER2_CURRENTFEATUREPAGES","features":[506]},{"name":"DISPID_IDISCRECORDER2_CURRENTPROFILES","features":[506]},{"name":"DISPID_IDISCRECORDER2_DEVICECANLOADMEDIA","features":[506]},{"name":"DISPID_IDISCRECORDER2_DISABLEMCN","features":[506]},{"name":"DISPID_IDISCRECORDER2_EJECTMEDIA","features":[506]},{"name":"DISPID_IDISCRECORDER2_ENABLEMCN","features":[506]},{"name":"DISPID_IDISCRECORDER2_EXCLUSIVEACCESSOWNER","features":[506]},{"name":"DISPID_IDISCRECORDER2_INITIALIZEDISCRECORDER","features":[506]},{"name":"DISPID_IDISCRECORDER2_LEGACYDEVICENUMBER","features":[506]},{"name":"DISPID_IDISCRECORDER2_PRODUCTID","features":[506]},{"name":"DISPID_IDISCRECORDER2_PRODUCTREVISION","features":[506]},{"name":"DISPID_IDISCRECORDER2_RELEASEEXCLUSIVEACCESS","features":[506]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDFEATUREPAGES","features":[506]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDMODEPAGES","features":[506]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDPROFILES","features":[506]},{"name":"DISPID_IDISCRECORDER2_VENDORID","features":[506]},{"name":"DISPID_IDISCRECORDER2_VOLUMENAME","features":[506]},{"name":"DISPID_IDISCRECORDER2_VOLUMEPATHNAMES","features":[506]},{"name":"DISPID_IMULTISESSION_FIRSTDATASESSION","features":[506]},{"name":"DISPID_IMULTISESSION_FREESECTORS","features":[506]},{"name":"DISPID_IMULTISESSION_IMPORTRECORDER","features":[506]},{"name":"DISPID_IMULTISESSION_INUSE","features":[506]},{"name":"DISPID_IMULTISESSION_LASTSECTOROFPREVIOUSSESSION","features":[506]},{"name":"DISPID_IMULTISESSION_LASTWRITTENADDRESS","features":[506]},{"name":"DISPID_IMULTISESSION_NEXTWRITABLEADDRESS","features":[506]},{"name":"DISPID_IMULTISESSION_SECTORSONMEDIA","features":[506]},{"name":"DISPID_IMULTISESSION_STARTSECTOROFPREVIOUSSESSION","features":[506]},{"name":"DISPID_IMULTISESSION_SUPPORTEDONCURRENTMEDIA","features":[506]},{"name":"DISPID_IMULTISESSION_WRITEUNITSIZE","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSPECIALPREGAP","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSUBCODERWGENERATOR","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDTRACK","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_CREATERESULTIMAGE","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_DISABLEGAPLESSAUDIO","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_EXPECTEDTABLEOFCONTENTS","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_MEDIACATALOGNUMBER","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_NUMBEROFEXISTINGTRACKS","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_RESULTINGIMAGETYPE","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTINGTRACKNUMBER","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUT","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUTLIMIT","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_TRACKINFO","features":[506]},{"name":"DISPID_IRAWCDIMAGECREATOR_USEDSECTORSONDISC","features":[506]},{"name":"DISPID_IRAWCDTRACKINFO_AUDIOHASPREEMPHASIS","features":[506]},{"name":"DISPID_IRAWCDTRACKINFO_DIGITALAUDIOCOPYSETTING","features":[506]},{"name":"DISPID_IRAWCDTRACKINFO_ISRC","features":[506]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORCOUNT","features":[506]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORTYPE","features":[506]},{"name":"DISPID_IRAWCDTRACKINFO_STARTINGLBA","features":[506]},{"name":"DISPID_IRAWCDTRACKINFO_TRACKNUMBER","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_FREESYSTEMBUFFER","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTREADLBA","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTWRITTENLBA","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_SECTORCOUNT","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_STARTLBA","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALDEVICEBUFFER","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALSYSTEMBUFFER","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDDEVICEBUFFER","features":[506]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDSYSTEMBUFFER","features":[506]},{"name":"DISPID_IWRITEENGINE2_BYTESPERSECTOR","features":[506]},{"name":"DISPID_IWRITEENGINE2_CANCELWRITE","features":[506]},{"name":"DISPID_IWRITEENGINE2_DISCRECORDER","features":[506]},{"name":"DISPID_IWRITEENGINE2_ENDINGSECTORSPERSECOND","features":[506]},{"name":"DISPID_IWRITEENGINE2_STARTINGSECTORSPERSECOND","features":[506]},{"name":"DISPID_IWRITEENGINE2_USESTREAMINGWRITE12","features":[506]},{"name":"DISPID_IWRITEENGINE2_WRITEINPROGRESS","features":[506]},{"name":"DISPID_IWRITEENGINE2_WRITESECTION","features":[506]},{"name":"DWriteEngine2Events","features":[506,354]},{"name":"Emulation12MFloppy","features":[506]},{"name":"Emulation144MFloppy","features":[506]},{"name":"Emulation288MFloppy","features":[506]},{"name":"EmulationHardDisk","features":[506]},{"name":"EmulationNone","features":[506]},{"name":"EmulationType","features":[506]},{"name":"EnumFsiItems","features":[506]},{"name":"EnumProgressItems","features":[506]},{"name":"FileSystemImageResult","features":[506]},{"name":"FsiDirectoryItem","features":[506]},{"name":"FsiFileItem","features":[506]},{"name":"FsiFileSystemISO9660","features":[506]},{"name":"FsiFileSystemJoliet","features":[506]},{"name":"FsiFileSystemNone","features":[506]},{"name":"FsiFileSystemUDF","features":[506]},{"name":"FsiFileSystemUnknown","features":[506]},{"name":"FsiFileSystems","features":[506]},{"name":"FsiItemDirectory","features":[506]},{"name":"FsiItemFile","features":[506]},{"name":"FsiItemNotFound","features":[506]},{"name":"FsiItemType","features":[506]},{"name":"FsiNamedStreams","features":[506]},{"name":"FsiStream","features":[506]},{"name":"GUID_SMTPSVC_SOURCE","features":[506]},{"name":"GUID_SMTP_SOURCE_TYPE","features":[506]},{"name":"GetAttribIMsgOnIStg","features":[506,384]},{"name":"IBlockRange","features":[506,354]},{"name":"IBlockRangeList","features":[506,354]},{"name":"IBootOptions","features":[506,354]},{"name":"IBurnVerification","features":[506]},{"name":"IDiscFormat2","features":[506,354]},{"name":"IDiscFormat2Data","features":[506,354]},{"name":"IDiscFormat2DataEventArgs","features":[506,354]},{"name":"IDiscFormat2Erase","features":[506,354]},{"name":"IDiscFormat2RawCD","features":[506,354]},{"name":"IDiscFormat2RawCDEventArgs","features":[506,354]},{"name":"IDiscFormat2TrackAtOnce","features":[506,354]},{"name":"IDiscFormat2TrackAtOnceEventArgs","features":[506,354]},{"name":"IDiscMaster","features":[506]},{"name":"IDiscMaster2","features":[506,354]},{"name":"IDiscMasterProgressEvents","features":[506]},{"name":"IDiscRecorder","features":[506]},{"name":"IDiscRecorder2","features":[506,354]},{"name":"IDiscRecorder2Ex","features":[506]},{"name":"IEnumDiscMasterFormats","features":[506]},{"name":"IEnumDiscRecorders","features":[506]},{"name":"IEnumFsiItems","features":[506]},{"name":"IEnumProgressItems","features":[506]},{"name":"IFileSystemImage","features":[506,354]},{"name":"IFileSystemImage2","features":[506,354]},{"name":"IFileSystemImage3","features":[506,354]},{"name":"IFileSystemImageResult","features":[506,354]},{"name":"IFileSystemImageResult2","features":[506,354]},{"name":"IFsiDirectoryItem","features":[506,354]},{"name":"IFsiDirectoryItem2","features":[506,354]},{"name":"IFsiFileItem","features":[506,354]},{"name":"IFsiFileItem2","features":[506,354]},{"name":"IFsiItem","features":[506,354]},{"name":"IFsiNamedStreams","features":[506,354]},{"name":"IIsoImageManager","features":[506,354]},{"name":"IJolietDiscMaster","features":[506]},{"name":"IMAPI2FS_BOOT_ENTRY_COUNT_MAX","features":[506]},{"name":"IMAPI2FS_FullVersion_STR","features":[506]},{"name":"IMAPI2FS_FullVersion_WSTR","features":[506]},{"name":"IMAPI2FS_MajorVersion","features":[506]},{"name":"IMAPI2FS_MinorVersion","features":[506]},{"name":"IMAPI2_DEFAULT_COMMAND_TIMEOUT","features":[506]},{"name":"IMAPILib2_MajorVersion","features":[506]},{"name":"IMAPILib2_MinorVersion","features":[506]},{"name":"IMAPI_BURN_VERIFICATION_FULL","features":[506]},{"name":"IMAPI_BURN_VERIFICATION_LEVEL","features":[506]},{"name":"IMAPI_BURN_VERIFICATION_NONE","features":[506]},{"name":"IMAPI_BURN_VERIFICATION_QUICK","features":[506]},{"name":"IMAPI_CD_SECTOR_AUDIO","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE1","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE1RAW","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0RAW","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1RAW","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2RAW","features":[506]},{"name":"IMAPI_CD_SECTOR_MODE_ZERO","features":[506]},{"name":"IMAPI_CD_SECTOR_TYPE","features":[506]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PERMITTED","features":[506]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PROHIBITED","features":[506]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SCMS","features":[506]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SETTING","features":[506]},{"name":"IMAPI_E_ALREADYOPEN","features":[506]},{"name":"IMAPI_E_BADJOLIETNAME","features":[506]},{"name":"IMAPI_E_BOOTIMAGE_AND_NONBLANK_DISC","features":[506]},{"name":"IMAPI_E_CANNOT_WRITE_TO_MEDIA","features":[506]},{"name":"IMAPI_E_COMPRESSEDSTASH","features":[506]},{"name":"IMAPI_E_DEVICE_INVALIDTYPE","features":[506]},{"name":"IMAPI_E_DEVICE_NOPROPERTIES","features":[506]},{"name":"IMAPI_E_DEVICE_NOTACCESSIBLE","features":[506]},{"name":"IMAPI_E_DEVICE_NOTPRESENT","features":[506]},{"name":"IMAPI_E_DEVICE_STILL_IN_USE","features":[506]},{"name":"IMAPI_E_DISCFULL","features":[506]},{"name":"IMAPI_E_DISCINFO","features":[506]},{"name":"IMAPI_E_ENCRYPTEDSTASH","features":[506]},{"name":"IMAPI_E_FILEACCESS","features":[506]},{"name":"IMAPI_E_FILEEXISTS","features":[506]},{"name":"IMAPI_E_FILESYSTEM","features":[506]},{"name":"IMAPI_E_GENERIC","features":[506]},{"name":"IMAPI_E_INITIALIZE_ENDWRITE","features":[506]},{"name":"IMAPI_E_INITIALIZE_WRITE","features":[506]},{"name":"IMAPI_E_INVALIDIMAGE","features":[506]},{"name":"IMAPI_E_LOSS_OF_STREAMING","features":[506]},{"name":"IMAPI_E_MEDIUM_INVALIDTYPE","features":[506]},{"name":"IMAPI_E_MEDIUM_NOTPRESENT","features":[506]},{"name":"IMAPI_E_NOACTIVEFORMAT","features":[506]},{"name":"IMAPI_E_NOACTIVERECORDER","features":[506]},{"name":"IMAPI_E_NOTENOUGHDISKFORSTASH","features":[506]},{"name":"IMAPI_E_NOTINITIALIZED","features":[506]},{"name":"IMAPI_E_NOTOPENED","features":[506]},{"name":"IMAPI_E_REMOVABLESTASH","features":[506]},{"name":"IMAPI_E_STASHINUSE","features":[506]},{"name":"IMAPI_E_TRACKNOTOPEN","features":[506]},{"name":"IMAPI_E_TRACKOPEN","features":[506]},{"name":"IMAPI_E_TRACK_NOT_BIG_ENOUGH","features":[506]},{"name":"IMAPI_E_USERABORT","features":[506]},{"name":"IMAPI_E_WRONGDISC","features":[506]},{"name":"IMAPI_E_WRONGFORMAT","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_AACS","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_PSEUDO_OVERWRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_READ","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_WRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CDRW_CAV_WRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_ANALOG_PLAY","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MASTERING","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MULTIREAD","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_READ","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_RW_MEDIA_WRITE_SUPPORT","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_TRACK_AT_ONCE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CORE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DISC_CONTROL_BLOCKS","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_READ","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_RW_WRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_R_WRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CPRM","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CSS","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_DASH_WRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_RW","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R_DUAL_LAYER","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_READ","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_EMBEDDED_CHANGER","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_ENHANCED_DEFECT_REPORTING","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FIRMWARE_INFORMATION","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FORMATTABLE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HARDWARE_DEFECT_MANAGEMENT","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_READ","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_WRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_INCREMENTAL_STREAMING_WRITABLE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LAYER_JUMP_RECORDING","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LOGICAL_UNIT_SERIAL_NUMBER","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MEDIA_SERIAL_NUMBER","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MICROCODE_UPDATE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MORPHING","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MRW","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_POWER_MANAGEMENT","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_PROFILE_LIST","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_READABLE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_WRITABLE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REAL_TIME_STREAMING","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REMOVABLE_MEDIUM","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RESTRICTED_OVERWRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RIGID_RESTRICTED_OVERWRITE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SECTOR_ERASABLE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SMART","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_TIMEOUT","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_VCPS","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_ONCE","features":[506]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_PROTECT","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_APPENDABLE","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_BLANK","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_DAMAGED","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_ERASE_REQUIRED","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINALIZED","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINAL_SESSION","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_INFORMATIONAL_MASK","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_NON_EMPTY_SESSION","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_OVERWRITE_ONLY","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_RANDOMLY_WRITABLE","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNKNOWN","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MASK","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MEDIA","features":[506]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_WRITE_PROTECTED","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_CALIBRATING_POWER","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_COMPLETED","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FINALIZATION","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FORMATTING_MEDIA","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_INITIALIZING_HARDWARE","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VALIDATING_MEDIA","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VERIFYING","features":[506]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_WRITING_DATA","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_DATA_SECTOR_TYPE","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_COOKED","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_RAW","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_PQ_ONLY","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_FINISHING","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_PREPARING","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_UNKNOWN","features":[506]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_WRITING","features":[506]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION","features":[506]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_FINISHING","features":[506]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_PREPARING","features":[506]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_UNKNOWN","features":[506]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_VERIFYING","features":[506]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_WRITING","features":[506]},{"name":"IMAPI_MEDIA_PHYSICAL_TYPE","features":[506]},{"name":"IMAPI_MEDIA_TYPE_BDR","features":[506]},{"name":"IMAPI_MEDIA_TYPE_BDRE","features":[506]},{"name":"IMAPI_MEDIA_TYPE_BDROM","features":[506]},{"name":"IMAPI_MEDIA_TYPE_CDR","features":[506]},{"name":"IMAPI_MEDIA_TYPE_CDROM","features":[506]},{"name":"IMAPI_MEDIA_TYPE_CDRW","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DISK","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHRW","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR_DUALLAYER","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW_DUALLAYER","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR_DUALLAYER","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDRAM","features":[506]},{"name":"IMAPI_MEDIA_TYPE_DVDROM","features":[506]},{"name":"IMAPI_MEDIA_TYPE_HDDVDR","features":[506]},{"name":"IMAPI_MEDIA_TYPE_HDDVDRAM","features":[506]},{"name":"IMAPI_MEDIA_TYPE_HDDVDROM","features":[506]},{"name":"IMAPI_MEDIA_TYPE_MAX","features":[506]},{"name":"IMAPI_MEDIA_TYPE_UNKNOWN","features":[506]},{"name":"IMAPI_MEDIA_WRITE_PROTECT_STATE","features":[506]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE","features":[506]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CHANGEABLE_VALUES","features":[506]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CURRENT_VALUES","features":[506]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_DEFAULT_VALUES","features":[506]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_SAVED_VALUES","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_CACHING","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_INFORMATIONAL_EXCEPTIONS","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_LEGACY_CAPABILITIES","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_MRW","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_POWER_CONDITION","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_READ_WRITE_ERROR_RECOVERY","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_TIMEOUT_AND_PROTECT","features":[506]},{"name":"IMAPI_MODE_PAGE_TYPE_WRITE_PARAMETERS","features":[506]},{"name":"IMAPI_PROFILE_TYPE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_AS_MO","features":[506]},{"name":"IMAPI_PROFILE_TYPE_BD_REWRITABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_BD_ROM","features":[506]},{"name":"IMAPI_PROFILE_TYPE_BD_R_RANDOM_RECORDING","features":[506]},{"name":"IMAPI_PROFILE_TYPE_BD_R_SEQUENTIAL","features":[506]},{"name":"IMAPI_PROFILE_TYPE_CDROM","features":[506]},{"name":"IMAPI_PROFILE_TYPE_CD_RECORDABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_CD_REWRITABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DDCDROM","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DDCD_RECORDABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DDCD_REWRITABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVDROM","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RECORDABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_REWRITABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RW_SEQUENTIAL","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_LAYER_JUMP","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_SEQUENTIAL","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW_DUAL","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R_DUAL","features":[506]},{"name":"IMAPI_PROFILE_TYPE_DVD_RAM","features":[506]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RAM","features":[506]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RECORDABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_ROM","features":[506]},{"name":"IMAPI_PROFILE_TYPE_INVALID","features":[506]},{"name":"IMAPI_PROFILE_TYPE_MO_ERASABLE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_MO_WRITE_ONCE","features":[506]},{"name":"IMAPI_PROFILE_TYPE_NON_REMOVABLE_DISK","features":[506]},{"name":"IMAPI_PROFILE_TYPE_NON_STANDARD","features":[506]},{"name":"IMAPI_PROFILE_TYPE_REMOVABLE_DISK","features":[506]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE","features":[506]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_LBA","features":[506]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_SESSION","features":[506]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_TRACK","features":[506]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_BD","features":[506]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_CD","features":[506]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_DVD","features":[506]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_HD_DVD","features":[506]},{"name":"IMAPI_SECTOR_SIZE","features":[506]},{"name":"IMAPI_S_BUFFER_TO_SMALL","features":[506]},{"name":"IMAPI_S_PROPERTIESIGNORED","features":[506]},{"name":"IMAPI_WRITEPROTECTED_BY_CARTRIDGE","features":[506]},{"name":"IMAPI_WRITEPROTECTED_BY_DISC_CONTROL_BLOCK","features":[506]},{"name":"IMAPI_WRITEPROTECTED_BY_MEDIA_SPECIFIC_REASON","features":[506]},{"name":"IMAPI_WRITEPROTECTED_BY_SOFTWARE_WRITE_PROTECT","features":[506]},{"name":"IMAPI_WRITEPROTECTED_READ_ONLY_MEDIA","features":[506]},{"name":"IMAPI_WRITEPROTECTED_UNTIL_POWERDOWN","features":[506]},{"name":"IMMPID_CPV_AFTER__","features":[506]},{"name":"IMMPID_CPV_BEFORE__","features":[506]},{"name":"IMMPID_CPV_ENUM","features":[506]},{"name":"IMMPID_CP_START","features":[506]},{"name":"IMMPID_MPV_AFTER__","features":[506]},{"name":"IMMPID_MPV_BEFORE__","features":[506]},{"name":"IMMPID_MPV_ENUM","features":[506]},{"name":"IMMPID_MPV_MESSAGE_CREATION_FLAGS","features":[506]},{"name":"IMMPID_MPV_MESSAGE_OPEN_HANDLES","features":[506]},{"name":"IMMPID_MPV_STORE_DRIVER_HANDLE","features":[506]},{"name":"IMMPID_MPV_TOTAL_OPEN_CONTENT_HANDLES","features":[506]},{"name":"IMMPID_MPV_TOTAL_OPEN_HANDLES","features":[506]},{"name":"IMMPID_MPV_TOTAL_OPEN_PROPERTY_STREAM_HANDLES","features":[506]},{"name":"IMMPID_MP_AFTER__","features":[506]},{"name":"IMMPID_MP_ARRIVAL_FILETIME","features":[506]},{"name":"IMMPID_MP_ARRIVAL_TIME","features":[506]},{"name":"IMMPID_MP_AUTHENTICATED_USER_NAME","features":[506]},{"name":"IMMPID_MP_BEFORE__","features":[506]},{"name":"IMMPID_MP_BINARYMIME_OPTION","features":[506]},{"name":"IMMPID_MP_CHUNKING_OPTION","features":[506]},{"name":"IMMPID_MP_CLIENT_AUTH_TYPE","features":[506]},{"name":"IMMPID_MP_CLIENT_AUTH_USER","features":[506]},{"name":"IMMPID_MP_CONNECTION_IP_ADDRESS","features":[506]},{"name":"IMMPID_MP_CONNECTION_SERVER_IP_ADDRESS","features":[506]},{"name":"IMMPID_MP_CONNECTION_SERVER_PORT","features":[506]},{"name":"IMMPID_MP_CONTENT_FILE_NAME","features":[506]},{"name":"IMMPID_MP_CONTENT_TYPE","features":[506]},{"name":"IMMPID_MP_CRC_GLOBAL","features":[506]},{"name":"IMMPID_MP_CRC_RECIPS","features":[506]},{"name":"IMMPID_MP_DEFERRED_DELIVERY_FILETIME","features":[506]},{"name":"IMMPID_MP_DOMAIN_LIST","features":[506]},{"name":"IMMPID_MP_DSN_ENVID_VALUE","features":[506]},{"name":"IMMPID_MP_DSN_RET_VALUE","features":[506]},{"name":"IMMPID_MP_EIGHTBIT_MIME_OPTION","features":[506]},{"name":"IMMPID_MP_ENCRYPTION_TYPE","features":[506]},{"name":"IMMPID_MP_ENUM","features":[506]},{"name":"IMMPID_MP_ERROR_CODE","features":[506]},{"name":"IMMPID_MP_EXPIRE_DELAY","features":[506]},{"name":"IMMPID_MP_EXPIRE_NDR","features":[506]},{"name":"IMMPID_MP_FOUND_EMBEDDED_CRLF_DOT_CRLF","features":[506]},{"name":"IMMPID_MP_FROM_ADDRESS","features":[506]},{"name":"IMMPID_MP_HELO_DOMAIN","features":[506]},{"name":"IMMPID_MP_HR_CAT_STATUS","features":[506]},{"name":"IMMPID_MP_INBOUND_MAIL_FROM_AUTH","features":[506]},{"name":"IMMPID_MP_LOCAL_EXPIRE_DELAY","features":[506]},{"name":"IMMPID_MP_LOCAL_EXPIRE_NDR","features":[506]},{"name":"IMMPID_MP_MESSAGE_STATUS","features":[506]},{"name":"IMMPID_MP_MSGCLASS","features":[506]},{"name":"IMMPID_MP_MSG_GUID","features":[506]},{"name":"IMMPID_MP_MSG_SIZE_HINT","features":[506]},{"name":"IMMPID_MP_NUM_RECIPIENTS","features":[506]},{"name":"IMMPID_MP_ORIGINAL_ARRIVAL_TIME","features":[506]},{"name":"IMMPID_MP_PICKUP_FILE_NAME","features":[506]},{"name":"IMMPID_MP_RECIPIENT_LIST","features":[506]},{"name":"IMMPID_MP_REMOTE_AUTHENTICATION_TYPE","features":[506]},{"name":"IMMPID_MP_REMOTE_SERVER_DSN_CAPABLE","features":[506]},{"name":"IMMPID_MP_RFC822_BCC_ADDRESS","features":[506]},{"name":"IMMPID_MP_RFC822_CC_ADDRESS","features":[506]},{"name":"IMMPID_MP_RFC822_FROM_ADDRESS","features":[506]},{"name":"IMMPID_MP_RFC822_MSG_ID","features":[506]},{"name":"IMMPID_MP_RFC822_MSG_SUBJECT","features":[506]},{"name":"IMMPID_MP_RFC822_TO_ADDRESS","features":[506]},{"name":"IMMPID_MP_SCANNED_FOR_CRLF_DOT_CRLF","features":[506]},{"name":"IMMPID_MP_SENDER_ADDRESS","features":[506]},{"name":"IMMPID_MP_SENDER_ADDRESS_LEGACY_EX_DN","features":[506]},{"name":"IMMPID_MP_SENDER_ADDRESS_OTHER","features":[506]},{"name":"IMMPID_MP_SENDER_ADDRESS_SMTP","features":[506]},{"name":"IMMPID_MP_SENDER_ADDRESS_X400","features":[506]},{"name":"IMMPID_MP_SENDER_ADDRESS_X500","features":[506]},{"name":"IMMPID_MP_SERVER_NAME","features":[506]},{"name":"IMMPID_MP_SERVER_VERSION","features":[506]},{"name":"IMMPID_MP_SUPERSEDES_MSG_GUID","features":[506]},{"name":"IMMPID_MP_X_PRIORITY","features":[506]},{"name":"IMMPID_NMP_AFTER__","features":[506]},{"name":"IMMPID_NMP_BEFORE__","features":[506]},{"name":"IMMPID_NMP_ENUM","features":[506]},{"name":"IMMPID_NMP_HEADERS","features":[506]},{"name":"IMMPID_NMP_NEWSGROUP_LIST","features":[506]},{"name":"IMMPID_NMP_NNTP_APPROVED_HEADER","features":[506]},{"name":"IMMPID_NMP_NNTP_PROCESSING","features":[506]},{"name":"IMMPID_NMP_POST_TOKEN","features":[506]},{"name":"IMMPID_NMP_PRIMARY_ARTID","features":[506]},{"name":"IMMPID_NMP_PRIMARY_GROUP","features":[506]},{"name":"IMMPID_NMP_SECONDARY_ARTNUM","features":[506]},{"name":"IMMPID_NMP_SECONDARY_GROUPS","features":[506]},{"name":"IMMPID_RPV_AFTER__","features":[506]},{"name":"IMMPID_RPV_BEFORE__","features":[506]},{"name":"IMMPID_RPV_DONT_DELIVER","features":[506]},{"name":"IMMPID_RPV_ENUM","features":[506]},{"name":"IMMPID_RPV_NO_NAME_COLLISIONS","features":[506]},{"name":"IMMPID_RP_ADDRESS","features":[506]},{"name":"IMMPID_RP_ADDRESS_OTHER","features":[506]},{"name":"IMMPID_RP_ADDRESS_SMTP","features":[506]},{"name":"IMMPID_RP_ADDRESS_TYPE","features":[506]},{"name":"IMMPID_RP_ADDRESS_TYPE_SMTP","features":[506]},{"name":"IMMPID_RP_ADDRESS_X400","features":[506]},{"name":"IMMPID_RP_ADDRESS_X500","features":[506]},{"name":"IMMPID_RP_AFTER__","features":[506]},{"name":"IMMPID_RP_BEFORE__","features":[506]},{"name":"IMMPID_RP_DISPLAY_NAME","features":[506]},{"name":"IMMPID_RP_DOMAIN","features":[506]},{"name":"IMMPID_RP_DSN_NOTIFY_INVALID","features":[506]},{"name":"IMMPID_RP_DSN_NOTIFY_SUCCESS","features":[506]},{"name":"IMMPID_RP_DSN_NOTIFY_VALUE","features":[506]},{"name":"IMMPID_RP_DSN_ORCPT_VALUE","features":[506]},{"name":"IMMPID_RP_DSN_PRE_CAT_ADDRESS","features":[506]},{"name":"IMMPID_RP_ENUM","features":[506]},{"name":"IMMPID_RP_ERROR_CODE","features":[506]},{"name":"IMMPID_RP_ERROR_STRING","features":[506]},{"name":"IMMPID_RP_LEGACY_EX_DN","features":[506]},{"name":"IMMPID_RP_MDB_GUID","features":[506]},{"name":"IMMPID_RP_RECIPIENT_FLAGS","features":[506]},{"name":"IMMPID_RP_SMTP_STATUS_STRING","features":[506]},{"name":"IMMPID_RP_USER_GUID","features":[506]},{"name":"IMMP_MPV_STORE_DRIVER_HANDLE","features":[506]},{"name":"IMultisession","features":[506,354]},{"name":"IMultisessionRandomWrite","features":[506,354]},{"name":"IMultisessionSequential","features":[506,354]},{"name":"IMultisessionSequential2","features":[506,354]},{"name":"IProgressItem","features":[506,354]},{"name":"IProgressItems","features":[506,354]},{"name":"IRawCDImageCreator","features":[506,354]},{"name":"IRawCDImageTrackInfo","features":[506,354]},{"name":"IRedbookDiscMaster","features":[506]},{"name":"IStreamConcatenate","features":[506,354]},{"name":"IStreamInterleave","features":[506,354]},{"name":"IStreamPseudoRandomBased","features":[506,354]},{"name":"IWriteEngine2","features":[506,354]},{"name":"IWriteEngine2EventArgs","features":[506,354]},{"name":"IWriteSpeedDescriptor","features":[506,354]},{"name":"LPMSGSESS","features":[506]},{"name":"MEDIA_BLANK","features":[506]},{"name":"MEDIA_CDDA_CDROM","features":[506]},{"name":"MEDIA_CD_EXTRA","features":[506]},{"name":"MEDIA_CD_I","features":[506]},{"name":"MEDIA_CD_OTHER","features":[506]},{"name":"MEDIA_CD_ROM_XA","features":[506]},{"name":"MEDIA_FLAGS","features":[506]},{"name":"MEDIA_FORMAT_UNUSABLE_BY_IMAPI","features":[506]},{"name":"MEDIA_RW","features":[506]},{"name":"MEDIA_SPECIAL","features":[506]},{"name":"MEDIA_TYPES","features":[506]},{"name":"MEDIA_WRITABLE","features":[506]},{"name":"MPV_INBOUND_CUTOFF_EXCEEDED","features":[506]},{"name":"MPV_WRITE_CONTENT","features":[506]},{"name":"MP_MSGCLASS_DELIVERY_REPORT","features":[506]},{"name":"MP_MSGCLASS_NONDELIVERY_REPORT","features":[506]},{"name":"MP_MSGCLASS_REPLICATION","features":[506]},{"name":"MP_MSGCLASS_SYSTEM","features":[506]},{"name":"MP_STATUS_ABANDON_DELIVERY","features":[506]},{"name":"MP_STATUS_ABORT_DELIVERY","features":[506]},{"name":"MP_STATUS_BAD_MAIL","features":[506]},{"name":"MP_STATUS_CATEGORIZED","features":[506]},{"name":"MP_STATUS_RETRY","features":[506]},{"name":"MP_STATUS_SUBMITTED","features":[506]},{"name":"MP_STATUS_SUCCESS","features":[506]},{"name":"MSDiscMasterObj","features":[506]},{"name":"MSDiscRecorderObj","features":[506]},{"name":"MSEnumDiscRecordersObj","features":[506]},{"name":"MSGCALLRELEASE","features":[506,384]},{"name":"MapStorageSCode","features":[506]},{"name":"MsftDiscFormat2Data","features":[506]},{"name":"MsftDiscFormat2Erase","features":[506]},{"name":"MsftDiscFormat2RawCD","features":[506]},{"name":"MsftDiscFormat2TrackAtOnce","features":[506]},{"name":"MsftDiscMaster2","features":[506]},{"name":"MsftDiscRecorder2","features":[506]},{"name":"MsftFileSystemImage","features":[506]},{"name":"MsftIsoImageManager","features":[506]},{"name":"MsftMultisessionRandomWrite","features":[506]},{"name":"MsftMultisessionSequential","features":[506]},{"name":"MsftRawCDImageCreator","features":[506]},{"name":"MsftStreamConcatenate","features":[506]},{"name":"MsftStreamInterleave","features":[506]},{"name":"MsftStreamPrng001","features":[506]},{"name":"MsftStreamZero","features":[506]},{"name":"MsftWriteEngine2","features":[506]},{"name":"MsftWriteSpeedDescriptor","features":[506]},{"name":"NMP_PROCESS_CONTROL","features":[506]},{"name":"NMP_PROCESS_MODERATOR","features":[506]},{"name":"NMP_PROCESS_POST","features":[506]},{"name":"OpenIMsgOnIStg","features":[506,384,427]},{"name":"OpenIMsgSession","features":[506,354]},{"name":"PlatformEFI","features":[506]},{"name":"PlatformId","features":[506]},{"name":"PlatformMac","features":[506]},{"name":"PlatformPowerPC","features":[506]},{"name":"PlatformX86","features":[506]},{"name":"ProgressItem","features":[506]},{"name":"ProgressItems","features":[506]},{"name":"RECORDER_BURNING","features":[506]},{"name":"RECORDER_CDR","features":[506]},{"name":"RECORDER_CDRW","features":[506]},{"name":"RECORDER_DOING_NOTHING","features":[506]},{"name":"RECORDER_OPENED","features":[506]},{"name":"RECORDER_TYPES","features":[506]},{"name":"RP_DELIVERED","features":[506]},{"name":"RP_DSN_HANDLED","features":[506]},{"name":"RP_DSN_NOTIFY_DELAY","features":[506]},{"name":"RP_DSN_NOTIFY_FAILURE","features":[506]},{"name":"RP_DSN_NOTIFY_INVALID","features":[506]},{"name":"RP_DSN_NOTIFY_MASK","features":[506]},{"name":"RP_DSN_NOTIFY_NEVER","features":[506]},{"name":"RP_DSN_NOTIFY_SUCCESS","features":[506]},{"name":"RP_DSN_SENT_DELAYED","features":[506]},{"name":"RP_DSN_SENT_DELIVERED","features":[506]},{"name":"RP_DSN_SENT_EXPANDED","features":[506]},{"name":"RP_DSN_SENT_NDR","features":[506]},{"name":"RP_DSN_SENT_RELAYED","features":[506]},{"name":"RP_ENPANDED","features":[506]},{"name":"RP_ERROR_CONTEXT_CAT","features":[506]},{"name":"RP_ERROR_CONTEXT_MTA","features":[506]},{"name":"RP_ERROR_CONTEXT_STORE","features":[506]},{"name":"RP_EXPANDED","features":[506]},{"name":"RP_FAILED","features":[506]},{"name":"RP_GENERAL_FAILURE","features":[506]},{"name":"RP_HANDLED","features":[506]},{"name":"RP_RECIP_FLAGS_RESERVED","features":[506]},{"name":"RP_REMOTE_MTA_NO_DSN","features":[506]},{"name":"RP_UNRESOLVED","features":[506]},{"name":"RP_VOLATILE_FLAGS_MASK","features":[506]},{"name":"SPropAttrArray","features":[506]},{"name":"SZ_PROGID_SMTPCAT","features":[506]},{"name":"SetAttribIMsgOnIStg","features":[506,384]},{"name":"tagIMMPID_CPV_STRUCT","features":[506]},{"name":"tagIMMPID_GUIDLIST_ITEM","features":[506]},{"name":"tagIMMPID_MPV_STRUCT","features":[506]},{"name":"tagIMMPID_MP_STRUCT","features":[506]},{"name":"tagIMMPID_NMP_STRUCT","features":[506]},{"name":"tagIMMPID_RPV_STRUCT","features":[506]},{"name":"tagIMMPID_RP_STRUCT","features":[506]}],"512":[{"name":"BindIFilterFromStorage","features":[507,427]},{"name":"BindIFilterFromStream","features":[507,354]},{"name":"CHUNKSTATE","features":[507]},{"name":"CHUNK_BREAKTYPE","features":[507]},{"name":"CHUNK_EOC","features":[507]},{"name":"CHUNK_EOP","features":[507]},{"name":"CHUNK_EOS","features":[507]},{"name":"CHUNK_EOW","features":[507]},{"name":"CHUNK_FILTER_OWNED_VALUE","features":[507]},{"name":"CHUNK_NO_BREAK","features":[507]},{"name":"CHUNK_TEXT","features":[507]},{"name":"CHUNK_VALUE","features":[507]},{"name":"CIADMIN","features":[507]},{"name":"CICAT_ALL_OPENED","features":[507]},{"name":"CICAT_GET_STATE","features":[507]},{"name":"CICAT_NO_QUERY","features":[507]},{"name":"CICAT_READONLY","features":[507]},{"name":"CICAT_STOPPED","features":[507]},{"name":"CICAT_WRITABLE","features":[507]},{"name":"CINULLCATALOG","features":[507]},{"name":"CI_PROVIDER_ALL","features":[507]},{"name":"CI_PROVIDER_INDEXING_SERVICE","features":[507]},{"name":"CI_PROVIDER_MSSEARCH","features":[507]},{"name":"CI_STATE","features":[507]},{"name":"CI_STATE_ANNEALING_MERGE","features":[507]},{"name":"CI_STATE_BATTERY_POLICY","features":[507]},{"name":"CI_STATE_BATTERY_POWER","features":[507]},{"name":"CI_STATE_CONTENT_SCAN_REQUIRED","features":[507]},{"name":"CI_STATE_DELETION_MERGE","features":[507]},{"name":"CI_STATE_HIGH_CPU","features":[507]},{"name":"CI_STATE_HIGH_IO","features":[507]},{"name":"CI_STATE_INDEX_MIGRATION_MERGE","features":[507]},{"name":"CI_STATE_LOW_DISK","features":[507]},{"name":"CI_STATE_LOW_MEMORY","features":[507]},{"name":"CI_STATE_MASTER_MERGE","features":[507]},{"name":"CI_STATE_MASTER_MERGE_PAUSED","features":[507]},{"name":"CI_STATE_READING_USNS","features":[507]},{"name":"CI_STATE_READ_ONLY","features":[507]},{"name":"CI_STATE_RECOVERING","features":[507]},{"name":"CI_STATE_SCANNING","features":[507]},{"name":"CI_STATE_SHADOW_MERGE","features":[507]},{"name":"CI_STATE_STARTING","features":[507]},{"name":"CI_STATE_USER_ACTIVE","features":[507]},{"name":"CI_VERSION_WDS30","features":[507]},{"name":"CI_VERSION_WDS40","features":[507]},{"name":"CI_VERSION_WIN70","features":[507]},{"name":"CLSID_INDEX_SERVER_DSO","features":[507]},{"name":"DBID","features":[507]},{"name":"DBID","features":[507]},{"name":"DBKINDENUM","features":[507]},{"name":"DBKIND_GUID","features":[507]},{"name":"DBKIND_GUID_NAME","features":[507]},{"name":"DBKIND_GUID_PROPID","features":[507]},{"name":"DBKIND_NAME","features":[507]},{"name":"DBKIND_PGUID_NAME","features":[507]},{"name":"DBKIND_PGUID_PROPID","features":[507]},{"name":"DBKIND_PROPID","features":[507]},{"name":"DBPROPSET_CIFRMWRKCORE_EXT","features":[507]},{"name":"DBPROPSET_FSCIFRMWRK_EXT","features":[507]},{"name":"DBPROPSET_MSIDXS_ROWSETEXT","features":[507]},{"name":"DBPROPSET_QUERYEXT","features":[507]},{"name":"DBPROPSET_SESS_QUERYEXT","features":[507]},{"name":"DBPROP_APPLICATION_NAME","features":[507]},{"name":"DBPROP_CATALOGLISTID","features":[507]},{"name":"DBPROP_CI_CATALOG_NAME","features":[507]},{"name":"DBPROP_CI_DEPTHS","features":[507]},{"name":"DBPROP_CI_EXCLUDE_SCOPES","features":[507]},{"name":"DBPROP_CI_INCLUDE_SCOPES","features":[507]},{"name":"DBPROP_CI_PROVIDER","features":[507]},{"name":"DBPROP_CI_QUERY_TYPE","features":[507]},{"name":"DBPROP_CI_SCOPE_FLAGS","features":[507]},{"name":"DBPROP_CI_SECURITY_ID","features":[507]},{"name":"DBPROP_CLIENT_CLSID","features":[507]},{"name":"DBPROP_DEFAULT_EQUALS_BEHAVIOR","features":[507]},{"name":"DBPROP_DEFERCATALOGVERIFICATION","features":[507]},{"name":"DBPROP_DEFERNONINDEXEDTRIMMING","features":[507]},{"name":"DBPROP_DONOTCOMPUTEEXPENSIVEPROPS","features":[507]},{"name":"DBPROP_ENABLEROWSETEVENTS","features":[507]},{"name":"DBPROP_FIRSTROWS","features":[507]},{"name":"DBPROP_FREETEXTANYTERM","features":[507]},{"name":"DBPROP_FREETEXTUSESTEMMING","features":[507]},{"name":"DBPROP_GENERATEPARSETREE","features":[507]},{"name":"DBPROP_GENERICOPTIONS_STRING","features":[507]},{"name":"DBPROP_IGNORENOISEONLYCLAUSES","features":[507]},{"name":"DBPROP_IGNORESBRI","features":[507]},{"name":"DBPROP_MACHINE","features":[507]},{"name":"DBPROP_USECONTENTINDEX","features":[507]},{"name":"DBPROP_USEEXTENDEDDBTYPES","features":[507]},{"name":"DBSETFUNC_ALL","features":[507]},{"name":"DBSETFUNC_DISTINCT","features":[507]},{"name":"DBSETFUNC_NONE","features":[507]},{"name":"FILTERREGION","features":[507]},{"name":"FILTER_E_ACCESS","features":[507]},{"name":"FILTER_E_EMBEDDING_UNAVAILABLE","features":[507]},{"name":"FILTER_E_END_OF_CHUNKS","features":[507]},{"name":"FILTER_E_LINK_UNAVAILABLE","features":[507]},{"name":"FILTER_E_NO_MORE_TEXT","features":[507]},{"name":"FILTER_E_NO_MORE_VALUES","features":[507]},{"name":"FILTER_E_NO_TEXT","features":[507]},{"name":"FILTER_E_NO_VALUES","features":[507]},{"name":"FILTER_E_PASSWORD","features":[507]},{"name":"FILTER_E_UNKNOWNFORMAT","features":[507]},{"name":"FILTER_S_LAST_TEXT","features":[507]},{"name":"FILTER_S_LAST_VALUES","features":[507]},{"name":"FILTER_W_MONIKER_CLIPPED","features":[507]},{"name":"FULLPROPSPEC","features":[507,427]},{"name":"GENERATE_METHOD_EXACT","features":[507]},{"name":"GENERATE_METHOD_INFLECT","features":[507]},{"name":"GENERATE_METHOD_PREFIX","features":[507]},{"name":"IFILTER_FLAGS","features":[507]},{"name":"IFILTER_FLAGS_OLE_PROPERTIES","features":[507]},{"name":"IFILTER_INIT","features":[507]},{"name":"IFILTER_INIT_APPLY_CRAWL_ATTRIBUTES","features":[507]},{"name":"IFILTER_INIT_APPLY_INDEX_ATTRIBUTES","features":[507]},{"name":"IFILTER_INIT_APPLY_OTHER_ATTRIBUTES","features":[507]},{"name":"IFILTER_INIT_CANON_HYPHENS","features":[507]},{"name":"IFILTER_INIT_CANON_PARAGRAPHS","features":[507]},{"name":"IFILTER_INIT_CANON_SPACES","features":[507]},{"name":"IFILTER_INIT_DISABLE_EMBEDDED","features":[507]},{"name":"IFILTER_INIT_EMIT_FORMATTING","features":[507]},{"name":"IFILTER_INIT_FILTER_AGGRESSIVE_BREAK","features":[507]},{"name":"IFILTER_INIT_FILTER_OWNED_VALUE_OK","features":[507]},{"name":"IFILTER_INIT_HARD_LINE_BREAKS","features":[507]},{"name":"IFILTER_INIT_INDEXING_ONLY","features":[507]},{"name":"IFILTER_INIT_SEARCH_LINKS","features":[507]},{"name":"IFilter","features":[507]},{"name":"IPhraseSink","features":[507]},{"name":"LIFF_FORCE_TEXT_FILTER_FALLBACK","features":[507]},{"name":"LIFF_IMPLEMENT_TEXT_FILTER_FALLBACK_POLICY","features":[507]},{"name":"LIFF_LOAD_DEFINED_FILTER","features":[507]},{"name":"LoadIFilter","features":[507]},{"name":"LoadIFilterEx","features":[507]},{"name":"MSIDXSPROP_COMMAND_LOCALE_STRING","features":[507]},{"name":"MSIDXSPROP_MAX_RANK","features":[507]},{"name":"MSIDXSPROP_PARSE_TREE","features":[507]},{"name":"MSIDXSPROP_QUERY_RESTRICTION","features":[507]},{"name":"MSIDXSPROP_RESULTS_FOUND","features":[507]},{"name":"MSIDXSPROP_ROWSETQUERYSTATUS","features":[507]},{"name":"MSIDXSPROP_SAME_SORTORDER_USED","features":[507]},{"name":"MSIDXSPROP_SERVER_NLSVERSION","features":[507]},{"name":"MSIDXSPROP_SERVER_NLSVER_DEFINED","features":[507]},{"name":"MSIDXSPROP_SERVER_VERSION","features":[507]},{"name":"MSIDXSPROP_SERVER_WINVER_MAJOR","features":[507]},{"name":"MSIDXSPROP_SERVER_WINVER_MINOR","features":[507]},{"name":"MSIDXSPROP_WHEREID","features":[507]},{"name":"NOT_AN_ERROR","features":[507]},{"name":"PID_FILENAME","features":[507]},{"name":"PROPID_QUERY_ALL","features":[507]},{"name":"PROPID_QUERY_HITCOUNT","features":[507]},{"name":"PROPID_QUERY_LASTSEENTIME","features":[507]},{"name":"PROPID_QUERY_RANK","features":[507]},{"name":"PROPID_QUERY_RANKVECTOR","features":[507]},{"name":"PROPID_QUERY_UNFILTERED","features":[507]},{"name":"PROPID_QUERY_VIRTUALPATH","features":[507]},{"name":"PROPID_QUERY_WORKID","features":[507]},{"name":"PROPID_STG_CONTENTS","features":[507]},{"name":"PROXIMITY_UNIT_CHAPTER","features":[507]},{"name":"PROXIMITY_UNIT_PARAGRAPH","features":[507]},{"name":"PROXIMITY_UNIT_SENTENCE","features":[507]},{"name":"PROXIMITY_UNIT_WORD","features":[507]},{"name":"PSGUID_FILENAME","features":[507]},{"name":"QUERY_DEEP","features":[507]},{"name":"QUERY_PHYSICAL_PATH","features":[507]},{"name":"QUERY_SHALLOW","features":[507]},{"name":"QUERY_VIRTUAL_PATH","features":[507]},{"name":"SCOPE_FLAG_DEEP","features":[507]},{"name":"SCOPE_FLAG_INCLUDE","features":[507]},{"name":"SCOPE_FLAG_MASK","features":[507]},{"name":"SCOPE_TYPE_MASK","features":[507]},{"name":"SCOPE_TYPE_VPATH","features":[507]},{"name":"SCOPE_TYPE_WINPATH","features":[507]},{"name":"STAT_BUSY","features":[507]},{"name":"STAT_CHUNK","features":[507,427]},{"name":"STAT_COALESCE_COMP_ALL_NOISE","features":[507]},{"name":"STAT_CONTENT_OUT_OF_DATE","features":[507]},{"name":"STAT_CONTENT_QUERY_INCOMPLETE","features":[507]},{"name":"STAT_DONE","features":[507]},{"name":"STAT_ERROR","features":[507]},{"name":"STAT_MISSING_PROP_IN_RELDOC","features":[507]},{"name":"STAT_MISSING_RELDOC","features":[507]},{"name":"STAT_NOISE_WORDS","features":[507]},{"name":"STAT_PARTIAL_SCOPE","features":[507]},{"name":"STAT_REFRESH","features":[507]},{"name":"STAT_REFRESH_INCOMPLETE","features":[507]},{"name":"STAT_RELDOC_ACCESS_DENIED","features":[507]},{"name":"STAT_SHARING_VIOLATION","features":[507]},{"name":"STAT_TIME_LIMIT_EXCEEDED","features":[507]},{"name":"VECTOR_RANK_DICE","features":[507]},{"name":"VECTOR_RANK_INNER","features":[507]},{"name":"VECTOR_RANK_JACCARD","features":[507]},{"name":"VECTOR_RANK_MAX","features":[507]},{"name":"VECTOR_RANK_MIN","features":[507]},{"name":"WORDREP_BREAK_EOC","features":[507]},{"name":"WORDREP_BREAK_EOP","features":[507]},{"name":"WORDREP_BREAK_EOS","features":[507]},{"name":"WORDREP_BREAK_EOW","features":[507]},{"name":"WORDREP_BREAK_TYPE","features":[507]}],"513":[{"name":"FILTER_AGGREGATE_BASIC_INFORMATION","features":[326]},{"name":"FILTER_AGGREGATE_STANDARD_INFORMATION","features":[326]},{"name":"FILTER_FULL_INFORMATION","features":[326]},{"name":"FILTER_INFORMATION_CLASS","features":[326]},{"name":"FILTER_MESSAGE_HEADER","features":[326]},{"name":"FILTER_NAME_MAX_CHARS","features":[326]},{"name":"FILTER_REPLY_HEADER","features":[303,326]},{"name":"FILTER_VOLUME_BASIC_INFORMATION","features":[326]},{"name":"FILTER_VOLUME_INFORMATION_CLASS","features":[326]},{"name":"FILTER_VOLUME_STANDARD_INFORMATION","features":[326]},{"name":"FLTFL_AGGREGATE_INFO_IS_LEGACYFILTER","features":[326]},{"name":"FLTFL_AGGREGATE_INFO_IS_MINIFILTER","features":[326]},{"name":"FLTFL_ASI_IS_LEGACYFILTER","features":[326]},{"name":"FLTFL_ASI_IS_MINIFILTER","features":[326]},{"name":"FLTFL_IASIL_DETACHED_VOLUME","features":[326]},{"name":"FLTFL_IASIM_DETACHED_VOLUME","features":[326]},{"name":"FLTFL_IASI_IS_LEGACYFILTER","features":[326]},{"name":"FLTFL_IASI_IS_MINIFILTER","features":[326]},{"name":"FLTFL_VSI_DETACHED_VOLUME","features":[326]},{"name":"FLT_FILESYSTEM_TYPE","features":[326]},{"name":"FLT_FSTYPE_BSUDF","features":[326]},{"name":"FLT_FSTYPE_CDFS","features":[326]},{"name":"FLT_FSTYPE_CIMFS","features":[326]},{"name":"FLT_FSTYPE_CSVFS","features":[326]},{"name":"FLT_FSTYPE_EXFAT","features":[326]},{"name":"FLT_FSTYPE_FAT","features":[326]},{"name":"FLT_FSTYPE_FS_REC","features":[326]},{"name":"FLT_FSTYPE_GPFS","features":[326]},{"name":"FLT_FSTYPE_INCD","features":[326]},{"name":"FLT_FSTYPE_INCD_FAT","features":[326]},{"name":"FLT_FSTYPE_LANMAN","features":[326]},{"name":"FLT_FSTYPE_MSFS","features":[326]},{"name":"FLT_FSTYPE_MS_NETWARE","features":[326]},{"name":"FLT_FSTYPE_MUP","features":[326]},{"name":"FLT_FSTYPE_NETWARE","features":[326]},{"name":"FLT_FSTYPE_NFS","features":[326]},{"name":"FLT_FSTYPE_NPFS","features":[326]},{"name":"FLT_FSTYPE_NTFS","features":[326]},{"name":"FLT_FSTYPE_OPENAFS","features":[326]},{"name":"FLT_FSTYPE_PSFS","features":[326]},{"name":"FLT_FSTYPE_RAW","features":[326]},{"name":"FLT_FSTYPE_RDPDR","features":[326]},{"name":"FLT_FSTYPE_REFS","features":[326]},{"name":"FLT_FSTYPE_ROXIO_UDF1","features":[326]},{"name":"FLT_FSTYPE_ROXIO_UDF2","features":[326]},{"name":"FLT_FSTYPE_ROXIO_UDF3","features":[326]},{"name":"FLT_FSTYPE_RSFX","features":[326]},{"name":"FLT_FSTYPE_TACIT","features":[326]},{"name":"FLT_FSTYPE_UDFS","features":[326]},{"name":"FLT_FSTYPE_UNKNOWN","features":[326]},{"name":"FLT_FSTYPE_WEBDAV","features":[326]},{"name":"FLT_PORT_FLAG_SYNC_HANDLE","features":[326]},{"name":"FilterAggregateBasicInformation","features":[326]},{"name":"FilterAggregateStandardInformation","features":[326]},{"name":"FilterAttach","features":[326]},{"name":"FilterAttachAtAltitude","features":[326]},{"name":"FilterClose","features":[326]},{"name":"FilterConnectCommunicationPort","features":[303,306,326]},{"name":"FilterCreate","features":[326]},{"name":"FilterDetach","features":[326]},{"name":"FilterFindClose","features":[303,326]},{"name":"FilterFindFirst","features":[303,326]},{"name":"FilterFindNext","features":[303,326]},{"name":"FilterFullInformation","features":[326]},{"name":"FilterGetDosName","features":[326]},{"name":"FilterGetInformation","features":[326]},{"name":"FilterGetMessage","features":[303,326,308]},{"name":"FilterInstanceClose","features":[326]},{"name":"FilterInstanceCreate","features":[326]},{"name":"FilterInstanceFindClose","features":[303,326]},{"name":"FilterInstanceFindFirst","features":[303,326]},{"name":"FilterInstanceFindNext","features":[303,326]},{"name":"FilterInstanceGetInformation","features":[326]},{"name":"FilterLoad","features":[326]},{"name":"FilterReplyMessage","features":[303,326]},{"name":"FilterSendMessage","features":[303,326]},{"name":"FilterUnload","features":[326]},{"name":"FilterVolumeBasicInformation","features":[326]},{"name":"FilterVolumeFindClose","features":[303,326]},{"name":"FilterVolumeFindFirst","features":[303,326]},{"name":"FilterVolumeFindNext","features":[303,326]},{"name":"FilterVolumeInstanceFindClose","features":[303,326]},{"name":"FilterVolumeInstanceFindFirst","features":[303,326]},{"name":"FilterVolumeInstanceFindNext","features":[303,326]},{"name":"FilterVolumeStandardInformation","features":[326]},{"name":"HFILTER","features":[326]},{"name":"HFILTER_INSTANCE","features":[326]},{"name":"INSTANCE_AGGREGATE_STANDARD_INFORMATION","features":[326]},{"name":"INSTANCE_BASIC_INFORMATION","features":[326]},{"name":"INSTANCE_FULL_INFORMATION","features":[326]},{"name":"INSTANCE_INFORMATION_CLASS","features":[326]},{"name":"INSTANCE_NAME_MAX_CHARS","features":[326]},{"name":"INSTANCE_PARTIAL_INFORMATION","features":[326]},{"name":"InstanceAggregateStandardInformation","features":[326]},{"name":"InstanceBasicInformation","features":[326]},{"name":"InstanceFullInformation","features":[326]},{"name":"InstancePartialInformation","features":[326]},{"name":"VOLUME_NAME_MAX_CHARS","features":[326]},{"name":"WNNC_CRED_MANAGER","features":[326]},{"name":"WNNC_NET_10NET","features":[326]},{"name":"WNNC_NET_3IN1","features":[326]},{"name":"WNNC_NET_9P","features":[326]},{"name":"WNNC_NET_9TILES","features":[326]},{"name":"WNNC_NET_APPLETALK","features":[326]},{"name":"WNNC_NET_AS400","features":[326]},{"name":"WNNC_NET_AURISTOR_FS","features":[326]},{"name":"WNNC_NET_AVID","features":[326]},{"name":"WNNC_NET_AVID1","features":[326]},{"name":"WNNC_NET_BMC","features":[326]},{"name":"WNNC_NET_BWNFS","features":[326]},{"name":"WNNC_NET_CLEARCASE","features":[326]},{"name":"WNNC_NET_COGENT","features":[326]},{"name":"WNNC_NET_CSC","features":[326]},{"name":"WNNC_NET_DAV","features":[326]},{"name":"WNNC_NET_DCE","features":[326]},{"name":"WNNC_NET_DECORB","features":[326]},{"name":"WNNC_NET_DFS","features":[326]},{"name":"WNNC_NET_DISTINCT","features":[326]},{"name":"WNNC_NET_DOCUSHARE","features":[326]},{"name":"WNNC_NET_DOCUSPACE","features":[326]},{"name":"WNNC_NET_DRIVEONWEB","features":[326]},{"name":"WNNC_NET_EXIFS","features":[326]},{"name":"WNNC_NET_EXTENDNET","features":[326]},{"name":"WNNC_NET_FARALLON","features":[326]},{"name":"WNNC_NET_FJ_REDIR","features":[326]},{"name":"WNNC_NET_FOXBAT","features":[326]},{"name":"WNNC_NET_FRONTIER","features":[326]},{"name":"WNNC_NET_FTP_NFS","features":[326]},{"name":"WNNC_NET_GOOGLE","features":[326]},{"name":"WNNC_NET_HOB_NFS","features":[326]},{"name":"WNNC_NET_IBMAL","features":[326]},{"name":"WNNC_NET_INTERGRAPH","features":[326]},{"name":"WNNC_NET_KNOWARE","features":[326]},{"name":"WNNC_NET_KWNP","features":[326]},{"name":"WNNC_NET_LANMAN","features":[326]},{"name":"WNNC_NET_LANSTEP","features":[326]},{"name":"WNNC_NET_LANTASTIC","features":[326]},{"name":"WNNC_NET_LIFENET","features":[326]},{"name":"WNNC_NET_LOCK","features":[326]},{"name":"WNNC_NET_LOCUS","features":[326]},{"name":"WNNC_NET_MANGOSOFT","features":[326]},{"name":"WNNC_NET_MASFAX","features":[326]},{"name":"WNNC_NET_MFILES","features":[326]},{"name":"WNNC_NET_MSNET","features":[326]},{"name":"WNNC_NET_MS_NFS","features":[326]},{"name":"WNNC_NET_NDFS","features":[326]},{"name":"WNNC_NET_NETWARE","features":[326]},{"name":"WNNC_NET_OBJECT_DIRE","features":[326]},{"name":"WNNC_NET_OPENAFS","features":[326]},{"name":"WNNC_NET_PATHWORKS","features":[326]},{"name":"WNNC_NET_POWERLAN","features":[326]},{"name":"WNNC_NET_PROTSTOR","features":[326]},{"name":"WNNC_NET_QUINCY","features":[326]},{"name":"WNNC_NET_RDR2SAMPLE","features":[326]},{"name":"WNNC_NET_RIVERFRONT1","features":[326]},{"name":"WNNC_NET_RIVERFRONT2","features":[326]},{"name":"WNNC_NET_RSFX","features":[326]},{"name":"WNNC_NET_SECUREAGENT","features":[326]},{"name":"WNNC_NET_SERNET","features":[326]},{"name":"WNNC_NET_SHIVA","features":[326]},{"name":"WNNC_NET_SMB","features":[326]},{"name":"WNNC_NET_SRT","features":[326]},{"name":"WNNC_NET_STAC","features":[326]},{"name":"WNNC_NET_SUN_PC_NFS","features":[326]},{"name":"WNNC_NET_SYMFONET","features":[326]},{"name":"WNNC_NET_TERMSRV","features":[326]},{"name":"WNNC_NET_TWINS","features":[326]},{"name":"WNNC_NET_VINES","features":[326]},{"name":"WNNC_NET_VMWARE","features":[326]},{"name":"WNNC_NET_YAHOO","features":[326]},{"name":"WNNC_NET_ZENWORKS","features":[326]}],"514":[{"name":"ATA_FLAGS_48BIT_COMMAND","features":[334]},{"name":"ATA_FLAGS_DATA_IN","features":[334]},{"name":"ATA_FLAGS_DATA_OUT","features":[334]},{"name":"ATA_FLAGS_DRDY_REQUIRED","features":[334]},{"name":"ATA_FLAGS_NO_MULTIPLE","features":[334]},{"name":"ATA_FLAGS_USE_DMA","features":[334]},{"name":"ATA_PASS_THROUGH_DIRECT","features":[334]},{"name":"ATA_PASS_THROUGH_DIRECT32","features":[334]},{"name":"ATA_PASS_THROUGH_EX","features":[334]},{"name":"ATA_PASS_THROUGH_EX32","features":[334]},{"name":"AddISNSServerA","features":[334]},{"name":"AddISNSServerW","features":[334]},{"name":"AddIScsiConnectionA","features":[334]},{"name":"AddIScsiConnectionW","features":[334]},{"name":"AddIScsiSendTargetPortalA","features":[334]},{"name":"AddIScsiSendTargetPortalW","features":[334]},{"name":"AddIScsiStaticTargetA","features":[303,334]},{"name":"AddIScsiStaticTargetW","features":[303,334]},{"name":"AddPersistentIScsiDeviceA","features":[334]},{"name":"AddPersistentIScsiDeviceW","features":[334]},{"name":"AddRadiusServerA","features":[334]},{"name":"AddRadiusServerW","features":[334]},{"name":"ClearPersistentIScsiDevices","features":[334]},{"name":"DD_SCSI_DEVICE_NAME","features":[334]},{"name":"DSM_NOTIFICATION_REQUEST_BLOCK","features":[334]},{"name":"DUMP_DRIVER","features":[334]},{"name":"DUMP_DRIVER_EX","features":[334]},{"name":"DUMP_DRIVER_NAME_LENGTH","features":[334]},{"name":"DUMP_EX_FLAG_DRIVER_FULL_PATH_SUPPORT","features":[334]},{"name":"DUMP_EX_FLAG_RESUME_SUPPORT","features":[334]},{"name":"DUMP_EX_FLAG_SUPPORT_64BITMEMORY","features":[334]},{"name":"DUMP_EX_FLAG_SUPPORT_DD_TELEMETRY","features":[334]},{"name":"DUMP_POINTERS","features":[303,334]},{"name":"DUMP_POINTERS_EX","features":[303,334]},{"name":"DUMP_POINTERS_VERSION","features":[334]},{"name":"DUMP_POINTERS_VERSION_1","features":[334]},{"name":"DUMP_POINTERS_VERSION_2","features":[334]},{"name":"DUMP_POINTERS_VERSION_3","features":[334]},{"name":"DUMP_POINTERS_VERSION_4","features":[334]},{"name":"DiscoveryMechanisms","features":[334]},{"name":"FILE_DEVICE_SCSI","features":[334]},{"name":"FIRMWARE_FUNCTION_ACTIVATE","features":[334]},{"name":"FIRMWARE_FUNCTION_DOWNLOAD","features":[334]},{"name":"FIRMWARE_FUNCTION_GET_INFO","features":[334]},{"name":"FIRMWARE_REQUEST_BLOCK","features":[334]},{"name":"FIRMWARE_REQUEST_BLOCK_STRUCTURE_VERSION","features":[334]},{"name":"FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[334]},{"name":"FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[334]},{"name":"FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[334]},{"name":"FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[334]},{"name":"FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[334]},{"name":"FIRMWARE_STATUS_COMMAND_ABORT","features":[334]},{"name":"FIRMWARE_STATUS_CONTROLLER_ERROR","features":[334]},{"name":"FIRMWARE_STATUS_DEVICE_ERROR","features":[334]},{"name":"FIRMWARE_STATUS_END_OF_MEDIA","features":[334]},{"name":"FIRMWARE_STATUS_ERROR","features":[334]},{"name":"FIRMWARE_STATUS_ID_NOT_FOUND","features":[334]},{"name":"FIRMWARE_STATUS_ILLEGAL_LENGTH","features":[334]},{"name":"FIRMWARE_STATUS_ILLEGAL_REQUEST","features":[334]},{"name":"FIRMWARE_STATUS_INPUT_BUFFER_TOO_BIG","features":[334]},{"name":"FIRMWARE_STATUS_INTERFACE_CRC_ERROR","features":[334]},{"name":"FIRMWARE_STATUS_INVALID_IMAGE","features":[334]},{"name":"FIRMWARE_STATUS_INVALID_PARAMETER","features":[334]},{"name":"FIRMWARE_STATUS_INVALID_SLOT","features":[334]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE","features":[334]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE_REQUEST","features":[334]},{"name":"FIRMWARE_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[334]},{"name":"FIRMWARE_STATUS_POWER_CYCLE_REQUIRED","features":[334]},{"name":"FIRMWARE_STATUS_SUCCESS","features":[334]},{"name":"FIRMWARE_STATUS_UNCORRECTABLE_DATA_ERROR","features":[334]},{"name":"GetDevicesForIScsiSessionA","features":[334,323]},{"name":"GetDevicesForIScsiSessionW","features":[334,323]},{"name":"GetIScsiIKEInfoA","features":[334]},{"name":"GetIScsiIKEInfoW","features":[334]},{"name":"GetIScsiInitiatorNodeNameA","features":[334]},{"name":"GetIScsiInitiatorNodeNameW","features":[334]},{"name":"GetIScsiSessionListA","features":[334]},{"name":"GetIScsiSessionListEx","features":[303,334]},{"name":"GetIScsiSessionListW","features":[334]},{"name":"GetIScsiTargetInformationA","features":[334]},{"name":"GetIScsiTargetInformationW","features":[334]},{"name":"GetIScsiVersionInformation","features":[334]},{"name":"HYBRID_DEMOTE_BY_SIZE","features":[334]},{"name":"HYBRID_DIRTY_THRESHOLDS","features":[334]},{"name":"HYBRID_FUNCTION_DEMOTE_BY_SIZE","features":[334]},{"name":"HYBRID_FUNCTION_DISABLE_CACHING_MEDIUM","features":[334]},{"name":"HYBRID_FUNCTION_ENABLE_CACHING_MEDIUM","features":[334]},{"name":"HYBRID_FUNCTION_GET_INFO","features":[334]},{"name":"HYBRID_FUNCTION_SET_DIRTY_THRESHOLD","features":[334]},{"name":"HYBRID_INFORMATION","features":[303,334]},{"name":"HYBRID_REQUEST_BLOCK","features":[334]},{"name":"HYBRID_REQUEST_BLOCK_STRUCTURE_VERSION","features":[334]},{"name":"HYBRID_REQUEST_INFO_STRUCTURE_VERSION","features":[334]},{"name":"HYBRID_STATUS_ENABLE_REFCOUNT_HOLD","features":[334]},{"name":"HYBRID_STATUS_ILLEGAL_REQUEST","features":[334]},{"name":"HYBRID_STATUS_INVALID_PARAMETER","features":[334]},{"name":"HYBRID_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[334]},{"name":"HYBRID_STATUS_SUCCESS","features":[334]},{"name":"IDE_IO_CONTROL","features":[334]},{"name":"ID_FQDN","features":[334]},{"name":"ID_IPV4_ADDR","features":[334]},{"name":"ID_IPV6_ADDR","features":[334]},{"name":"ID_USER_FQDN","features":[334]},{"name":"IKE_AUTHENTICATION_INFORMATION","features":[334]},{"name":"IKE_AUTHENTICATION_METHOD","features":[334]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY","features":[334]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY_METHOD","features":[334]},{"name":"IOCTL_ATA_MINIPORT","features":[334]},{"name":"IOCTL_ATA_PASS_THROUGH","features":[334]},{"name":"IOCTL_ATA_PASS_THROUGH_DIRECT","features":[334]},{"name":"IOCTL_IDE_PASS_THROUGH","features":[334]},{"name":"IOCTL_MINIPORT_PROCESS_SERVICE_IRP","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_GENERAL","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_NOTIFICATION","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_ENDURANCE_INFO","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_FIRMWARE","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_HYBRDISK","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PHYSICAL_TOPOLOGY","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PROTOCOL","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_TEMPERATURE","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_SCSIDISK","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_PROTOCOL","features":[334]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_TEMPERATURE_THRESHOLD","features":[334]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH","features":[334]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT","features":[334]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[334]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_EX","features":[334]},{"name":"IOCTL_SCSI_BASE","features":[334]},{"name":"IOCTL_SCSI_FREE_DUMP_POINTERS","features":[334]},{"name":"IOCTL_SCSI_GET_ADDRESS","features":[334]},{"name":"IOCTL_SCSI_GET_CAPABILITIES","features":[334]},{"name":"IOCTL_SCSI_GET_DUMP_POINTERS","features":[334]},{"name":"IOCTL_SCSI_GET_INQUIRY_DATA","features":[334]},{"name":"IOCTL_SCSI_MINIPORT","features":[334]},{"name":"IOCTL_SCSI_PASS_THROUGH","features":[334]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT","features":[334]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT_EX","features":[334]},{"name":"IOCTL_SCSI_PASS_THROUGH_EX","features":[334]},{"name":"IOCTL_SCSI_RESCAN_BUS","features":[334]},{"name":"IO_SCSI_CAPABILITIES","features":[303,334]},{"name":"ISCSI_AUTH_TYPES","features":[334]},{"name":"ISCSI_CHAP_AUTH_TYPE","features":[334]},{"name":"ISCSI_CONNECTION_INFOA","features":[334]},{"name":"ISCSI_CONNECTION_INFOW","features":[334]},{"name":"ISCSI_CONNECTION_INFO_EX","features":[334]},{"name":"ISCSI_DEVICE_ON_SESSIONA","features":[334,323]},{"name":"ISCSI_DEVICE_ON_SESSIONW","features":[334,323]},{"name":"ISCSI_DIGEST_TYPES","features":[334]},{"name":"ISCSI_DIGEST_TYPE_CRC32C","features":[334]},{"name":"ISCSI_DIGEST_TYPE_NONE","features":[334]},{"name":"ISCSI_LOGIN_FLAG_ALLOW_PORTAL_HOPPING","features":[334]},{"name":"ISCSI_LOGIN_FLAG_MULTIPATH_ENABLED","features":[334]},{"name":"ISCSI_LOGIN_FLAG_REQUIRE_IPSEC","features":[334]},{"name":"ISCSI_LOGIN_FLAG_RESERVED1","features":[334]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_RESPONSE","features":[334]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_VERIFICATION","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_AUTH_TYPE","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_DATA_DIGEST","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_RETAIN","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_WAIT","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_HEADER_DIGEST","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_MAXIMUM_CONNECTIONS","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_PASSWORD","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_USERNAME","features":[334]},{"name":"ISCSI_LOGIN_OPTIONS_VERSION","features":[334]},{"name":"ISCSI_MUTUAL_CHAP_AUTH_TYPE","features":[334]},{"name":"ISCSI_NO_AUTH_TYPE","features":[334]},{"name":"ISCSI_SECURITY_FLAG_AGGRESSIVE_MODE_ENABLED","features":[334]},{"name":"ISCSI_SECURITY_FLAG_IKE_IPSEC_ENABLED","features":[334]},{"name":"ISCSI_SECURITY_FLAG_MAIN_MODE_ENABLED","features":[334]},{"name":"ISCSI_SECURITY_FLAG_PFS_ENABLED","features":[334]},{"name":"ISCSI_SECURITY_FLAG_TRANSPORT_MODE_PREFERRED","features":[334]},{"name":"ISCSI_SECURITY_FLAG_TUNNEL_MODE_PREFERRED","features":[334]},{"name":"ISCSI_SECURITY_FLAG_VALID","features":[334]},{"name":"ISCSI_SESSION_INFOA","features":[334]},{"name":"ISCSI_SESSION_INFOW","features":[334]},{"name":"ISCSI_SESSION_INFO_EX","features":[303,334]},{"name":"ISCSI_TARGET_FLAG_HIDE_STATIC_TARGET","features":[334]},{"name":"ISCSI_TARGET_FLAG_MERGE_TARGET_INFORMATION","features":[334]},{"name":"ISCSI_TARGET_MAPPINGA","features":[334]},{"name":"ISCSI_TARGET_MAPPINGW","features":[334]},{"name":"ISCSI_TARGET_PORTALA","features":[334]},{"name":"ISCSI_TARGET_PORTALW","features":[334]},{"name":"ISCSI_TARGET_PORTAL_GROUPA","features":[334]},{"name":"ISCSI_TARGET_PORTAL_GROUPW","features":[334]},{"name":"ISCSI_TARGET_PORTAL_INFOA","features":[334]},{"name":"ISCSI_TARGET_PORTAL_INFOW","features":[334]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXA","features":[334]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXW","features":[334]},{"name":"ISCSI_TCP_PROTOCOL_TYPE","features":[334]},{"name":"ISCSI_UNIQUE_SESSION_ID","features":[334]},{"name":"ISCSI_VERSION_INFO","features":[334]},{"name":"InitiatorName","features":[334]},{"name":"LoginIScsiTargetA","features":[303,334]},{"name":"LoginIScsiTargetW","features":[303,334]},{"name":"LoginOptions","features":[334]},{"name":"LogoutIScsiTarget","features":[334]},{"name":"MAX_ISCSI_ALIAS_LEN","features":[334]},{"name":"MAX_ISCSI_DISCOVERY_DOMAIN_LEN","features":[334]},{"name":"MAX_ISCSI_HBANAME_LEN","features":[334]},{"name":"MAX_ISCSI_NAME_LEN","features":[334]},{"name":"MAX_ISCSI_PORTAL_ADDRESS_LEN","features":[334]},{"name":"MAX_ISCSI_PORTAL_ALIAS_LEN","features":[334]},{"name":"MAX_ISCSI_PORTAL_NAME_LEN","features":[334]},{"name":"MAX_ISCSI_TEXT_ADDRESS_LEN","features":[334]},{"name":"MAX_RADIUS_ADDRESS_LEN","features":[334]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION","features":[334]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION_1","features":[334]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_BEGIN","features":[334]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_END","features":[334]},{"name":"MINIPORT_DSM_PROFILE_CRASHDUMP_FILE","features":[334]},{"name":"MINIPORT_DSM_PROFILE_HIBERNATION_FILE","features":[334]},{"name":"MINIPORT_DSM_PROFILE_PAGE_FILE","features":[334]},{"name":"MINIPORT_DSM_PROFILE_UNKNOWN","features":[334]},{"name":"MPIO_IOCTL_FLAG_INVOLVE_DSM","features":[334]},{"name":"MPIO_IOCTL_FLAG_USE_PATHID","features":[334]},{"name":"MPIO_IOCTL_FLAG_USE_SCSIADDRESS","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH32","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH32_EX","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32_EX","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[334]},{"name":"MPIO_PASS_THROUGH_PATH_EX","features":[334]},{"name":"MP_DEVICE_DATA_SET_RANGE","features":[334]},{"name":"MP_STORAGE_DIAGNOSTIC_LEVEL","features":[334]},{"name":"MP_STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[334]},{"name":"MpStorageDiagnosticLevelDefault","features":[334]},{"name":"MpStorageDiagnosticLevelMax","features":[334]},{"name":"MpStorageDiagnosticTargetTypeHbaFirmware","features":[334]},{"name":"MpStorageDiagnosticTargetTypeMax","features":[334]},{"name":"MpStorageDiagnosticTargetTypeMiniport","features":[334]},{"name":"MpStorageDiagnosticTargetTypeUndefined","features":[334]},{"name":"NRB_FUNCTION_ADD_LBAS_PINNED_SET","features":[334]},{"name":"NRB_FUNCTION_FLUSH_NVCACHE","features":[334]},{"name":"NRB_FUNCTION_NVCACHE_INFO","features":[334]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_RETURN","features":[334]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_SET","features":[334]},{"name":"NRB_FUNCTION_NVSEPARATED_FLUSH","features":[334]},{"name":"NRB_FUNCTION_NVSEPARATED_INFO","features":[334]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_DISABLE","features":[334]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_REVERT_DEFAULT","features":[334]},{"name":"NRB_FUNCTION_PASS_HINT_PAYLOAD","features":[334]},{"name":"NRB_FUNCTION_QUERY_ASCENDER_STATUS","features":[334]},{"name":"NRB_FUNCTION_QUERY_CACHE_MISS","features":[334]},{"name":"NRB_FUNCTION_QUERY_HYBRID_DISK_STATUS","features":[334]},{"name":"NRB_FUNCTION_QUERY_PINNED_SET","features":[334]},{"name":"NRB_FUNCTION_REMOVE_LBAS_PINNED_SET","features":[334]},{"name":"NRB_FUNCTION_SPINDLE_STATUS","features":[334]},{"name":"NRB_ILLEGAL_REQUEST","features":[334]},{"name":"NRB_INPUT_DATA_OVERRUN","features":[334]},{"name":"NRB_INPUT_DATA_UNDERRUN","features":[334]},{"name":"NRB_INVALID_PARAMETER","features":[334]},{"name":"NRB_OUTPUT_DATA_OVERRUN","features":[334]},{"name":"NRB_OUTPUT_DATA_UNDERRUN","features":[334]},{"name":"NRB_SUCCESS","features":[334]},{"name":"NTSCSI_UNICODE_STRING","features":[334]},{"name":"NVCACHE_HINT_PAYLOAD","features":[334]},{"name":"NVCACHE_PRIORITY_LEVEL_DESCRIPTOR","features":[334]},{"name":"NVCACHE_REQUEST_BLOCK","features":[334]},{"name":"NVCACHE_STATUS","features":[334]},{"name":"NVCACHE_TYPE","features":[334]},{"name":"NVSEPWriteCacheTypeNone","features":[334]},{"name":"NVSEPWriteCacheTypeUnknown","features":[334]},{"name":"NVSEPWriteCacheTypeWriteBack","features":[334]},{"name":"NVSEPWriteCacheTypeWriteThrough","features":[334]},{"name":"NV_FEATURE_PARAMETER","features":[334]},{"name":"NV_SEP_CACHE_PARAMETER","features":[334]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION","features":[334]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION_1","features":[334]},{"name":"NV_SEP_WRITE_CACHE_TYPE","features":[334]},{"name":"NvCacheStatusDisabled","features":[334]},{"name":"NvCacheStatusDisabling","features":[334]},{"name":"NvCacheStatusEnabled","features":[334]},{"name":"NvCacheStatusUnknown","features":[334]},{"name":"NvCacheTypeNone","features":[334]},{"name":"NvCacheTypeUnknown","features":[334]},{"name":"NvCacheTypeWriteBack","features":[334]},{"name":"NvCacheTypeWriteThrough","features":[334]},{"name":"PDUMP_DEVICE_POWERON_ROUTINE","features":[334]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOA","features":[303,334]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOW","features":[303,334]},{"name":"PersistentTargetMappings","features":[334]},{"name":"PortalGroups","features":[334]},{"name":"ProtocolType","features":[334]},{"name":"RefreshISNSServerA","features":[334]},{"name":"RefreshISNSServerW","features":[334]},{"name":"RefreshIScsiSendTargetPortalA","features":[334]},{"name":"RefreshIScsiSendTargetPortalW","features":[334]},{"name":"RemoveISNSServerA","features":[334]},{"name":"RemoveISNSServerW","features":[334]},{"name":"RemoveIScsiConnection","features":[334]},{"name":"RemoveIScsiPersistentTargetA","features":[334]},{"name":"RemoveIScsiPersistentTargetW","features":[334]},{"name":"RemoveIScsiSendTargetPortalA","features":[334]},{"name":"RemoveIScsiSendTargetPortalW","features":[334]},{"name":"RemoveIScsiStaticTargetA","features":[334]},{"name":"RemoveIScsiStaticTargetW","features":[334]},{"name":"RemovePersistentIScsiDeviceA","features":[334]},{"name":"RemovePersistentIScsiDeviceW","features":[334]},{"name":"RemoveRadiusServerA","features":[334]},{"name":"RemoveRadiusServerW","features":[334]},{"name":"ReportActiveIScsiTargetMappingsA","features":[334]},{"name":"ReportActiveIScsiTargetMappingsW","features":[334]},{"name":"ReportISNSServerListA","features":[334]},{"name":"ReportISNSServerListW","features":[334]},{"name":"ReportIScsiInitiatorListA","features":[334]},{"name":"ReportIScsiInitiatorListW","features":[334]},{"name":"ReportIScsiPersistentLoginsA","features":[303,334]},{"name":"ReportIScsiPersistentLoginsW","features":[303,334]},{"name":"ReportIScsiSendTargetPortalsA","features":[334]},{"name":"ReportIScsiSendTargetPortalsExA","features":[334]},{"name":"ReportIScsiSendTargetPortalsExW","features":[334]},{"name":"ReportIScsiSendTargetPortalsW","features":[334]},{"name":"ReportIScsiTargetPortalsA","features":[334]},{"name":"ReportIScsiTargetPortalsW","features":[334]},{"name":"ReportIScsiTargetsA","features":[303,334]},{"name":"ReportIScsiTargetsW","features":[303,334]},{"name":"ReportPersistentIScsiDevicesA","features":[334]},{"name":"ReportPersistentIScsiDevicesW","features":[334]},{"name":"ReportRadiusServerListA","features":[334]},{"name":"ReportRadiusServerListW","features":[334]},{"name":"SCSI_ADAPTER_BUS_INFO","features":[334]},{"name":"SCSI_ADDRESS","features":[334]},{"name":"SCSI_BUS_DATA","features":[334]},{"name":"SCSI_INQUIRY_DATA","features":[303,334]},{"name":"SCSI_IOCTL_DATA_BIDIRECTIONAL","features":[334]},{"name":"SCSI_IOCTL_DATA_IN","features":[334]},{"name":"SCSI_IOCTL_DATA_OUT","features":[334]},{"name":"SCSI_IOCTL_DATA_UNSPECIFIED","features":[334]},{"name":"SCSI_LUN_LIST","features":[334]},{"name":"SCSI_PASS_THROUGH","features":[334]},{"name":"SCSI_PASS_THROUGH32","features":[334]},{"name":"SCSI_PASS_THROUGH32_EX","features":[334]},{"name":"SCSI_PASS_THROUGH_DIRECT","features":[334]},{"name":"SCSI_PASS_THROUGH_DIRECT32","features":[334]},{"name":"SCSI_PASS_THROUGH_DIRECT32_EX","features":[334]},{"name":"SCSI_PASS_THROUGH_DIRECT_EX","features":[334]},{"name":"SCSI_PASS_THROUGH_EX","features":[334]},{"name":"SRB_IO_CONTROL","features":[334]},{"name":"STORAGE_DIAGNOSTIC_MP_REQUEST","features":[334]},{"name":"STORAGE_DIAGNOSTIC_STATUS_BUFFER_TOO_SMALL","features":[334]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_PARAMETER","features":[334]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_SIGNATURE","features":[334]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_TARGET_TYPE","features":[334]},{"name":"STORAGE_DIAGNOSTIC_STATUS_MORE_DATA","features":[334]},{"name":"STORAGE_DIAGNOSTIC_STATUS_SUCCESS","features":[334]},{"name":"STORAGE_DIAGNOSTIC_STATUS_UNSUPPORTED_VERSION","features":[334]},{"name":"STORAGE_ENDURANCE_DATA_DESCRIPTOR","features":[334]},{"name":"STORAGE_ENDURANCE_INFO","features":[334]},{"name":"STORAGE_FIRMWARE_ACTIVATE","features":[334]},{"name":"STORAGE_FIRMWARE_ACTIVATE_STRUCTURE_VERSION","features":[334]},{"name":"STORAGE_FIRMWARE_DOWNLOAD","features":[334]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION","features":[334]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION_V2","features":[334]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_V2","features":[334]},{"name":"STORAGE_FIRMWARE_INFO","features":[303,334]},{"name":"STORAGE_FIRMWARE_INFO_INVALID_SLOT","features":[334]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION","features":[334]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION_V2","features":[334]},{"name":"STORAGE_FIRMWARE_INFO_V2","features":[303,334]},{"name":"STORAGE_FIRMWARE_SLOT_INFO","features":[303,334]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2","features":[303,334]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2_REVISION_LENGTH","features":[334]},{"name":"ScsiRawInterfaceGuid","features":[334]},{"name":"SendScsiInquiry","features":[334]},{"name":"SendScsiReadCapacity","features":[334]},{"name":"SendScsiReportLuns","features":[334]},{"name":"SetIScsiGroupPresharedKey","features":[303,334]},{"name":"SetIScsiIKEInfoA","features":[303,334]},{"name":"SetIScsiIKEInfoW","features":[303,334]},{"name":"SetIScsiInitiatorCHAPSharedSecret","features":[334]},{"name":"SetIScsiInitiatorNodeNameA","features":[334]},{"name":"SetIScsiInitiatorNodeNameW","features":[334]},{"name":"SetIScsiInitiatorRADIUSSharedSecret","features":[334]},{"name":"SetIScsiTunnelModeOuterAddressA","features":[303,334]},{"name":"SetIScsiTunnelModeOuterAddressW","features":[303,334]},{"name":"SetupPersistentIScsiDevices","features":[334]},{"name":"SetupPersistentIScsiVolumes","features":[334]},{"name":"TARGETPROTOCOLTYPE","features":[334]},{"name":"TARGET_INFORMATION_CLASS","features":[334]},{"name":"TargetAlias","features":[334]},{"name":"TargetFlags","features":[334]},{"name":"WmiScsiAddressGuid","features":[334]},{"name":"_ADAPTER_OBJECT","features":[334]}],"515":[{"name":"JET_BASE_NAME_LENGTH","features":[508]},{"name":"JET_BKINFO","features":[508]},{"name":"JET_BKLOGTIME","features":[508]},{"name":"JET_CALLBACK","features":[508,509]},{"name":"JET_COLUMNBASE_A","features":[508]},{"name":"JET_COLUMNBASE_W","features":[508]},{"name":"JET_COLUMNCREATE_A","features":[508]},{"name":"JET_COLUMNCREATE_W","features":[508]},{"name":"JET_COLUMNDEF","features":[508]},{"name":"JET_COLUMNLIST","features":[508,509]},{"name":"JET_COMMIT_ID","features":[508]},{"name":"JET_COMMIT_ID","features":[508]},{"name":"JET_CONDITIONALCOLUMN_A","features":[508]},{"name":"JET_CONDITIONALCOLUMN_W","features":[508]},{"name":"JET_CONVERT_A","features":[508]},{"name":"JET_CONVERT_W","features":[508]},{"name":"JET_ColInfoGrbitMinimalInfo","features":[508]},{"name":"JET_ColInfoGrbitNonDerivedColumnsOnly","features":[508]},{"name":"JET_ColInfoGrbitSortByColumnid","features":[508]},{"name":"JET_DBINFOMISC","features":[508]},{"name":"JET_DBINFOMISC2","features":[508]},{"name":"JET_DBINFOMISC3","features":[508]},{"name":"JET_DBINFOMISC4","features":[508]},{"name":"JET_DBINFOUPGRADE","features":[508]},{"name":"JET_DbInfoCollate","features":[508]},{"name":"JET_DbInfoConnect","features":[508]},{"name":"JET_DbInfoCountry","features":[508]},{"name":"JET_DbInfoCp","features":[508]},{"name":"JET_DbInfoDBInUse","features":[508]},{"name":"JET_DbInfoFileType","features":[508]},{"name":"JET_DbInfoFilename","features":[508]},{"name":"JET_DbInfoFilesize","features":[508]},{"name":"JET_DbInfoFilesizeOnDisk","features":[508]},{"name":"JET_DbInfoIsam","features":[508]},{"name":"JET_DbInfoLCID","features":[508]},{"name":"JET_DbInfoLangid","features":[508]},{"name":"JET_DbInfoMisc","features":[508]},{"name":"JET_DbInfoOptions","features":[508]},{"name":"JET_DbInfoPageSize","features":[508]},{"name":"JET_DbInfoSpaceAvailable","features":[508]},{"name":"JET_DbInfoSpaceOwned","features":[508]},{"name":"JET_DbInfoTransactions","features":[508]},{"name":"JET_DbInfoUpgrade","features":[508]},{"name":"JET_DbInfoVersion","features":[508]},{"name":"JET_ENUMCOLUMN","features":[508]},{"name":"JET_ENUMCOLUMNID","features":[508]},{"name":"JET_ENUMCOLUMNVALUE","features":[508]},{"name":"JET_ERRCAT","features":[508]},{"name":"JET_ERRINFOBASIC_W","features":[508]},{"name":"JET_EventLoggingDisable","features":[508]},{"name":"JET_EventLoggingLevelHigh","features":[508]},{"name":"JET_EventLoggingLevelLow","features":[508]},{"name":"JET_EventLoggingLevelMax","features":[508]},{"name":"JET_EventLoggingLevelMedium","features":[508]},{"name":"JET_EventLoggingLevelMin","features":[508]},{"name":"JET_ExceptionFailFast","features":[508]},{"name":"JET_ExceptionMsgBox","features":[508]},{"name":"JET_ExceptionNone","features":[508]},{"name":"JET_INDEXCHECKING","features":[508]},{"name":"JET_INDEXCREATE2_A","features":[508]},{"name":"JET_INDEXCREATE2_W","features":[508]},{"name":"JET_INDEXCREATE3_A","features":[508]},{"name":"JET_INDEXCREATE3_W","features":[508]},{"name":"JET_INDEXCREATE_A","features":[508]},{"name":"JET_INDEXCREATE_W","features":[508]},{"name":"JET_INDEXID","features":[508]},{"name":"JET_INDEXID","features":[508]},{"name":"JET_INDEXLIST","features":[508,509]},{"name":"JET_INDEXRANGE","features":[508,509]},{"name":"JET_INDEX_COLUMN","features":[508]},{"name":"JET_INDEX_RANGE","features":[508]},{"name":"JET_INSTANCE_INFO_A","features":[508,509]},{"name":"JET_INSTANCE_INFO_W","features":[508,509]},{"name":"JET_IOPriorityLow","features":[508]},{"name":"JET_IOPriorityNormal","features":[508]},{"name":"JET_IndexCheckingDeferToOpenTable","features":[508]},{"name":"JET_IndexCheckingMax","features":[508]},{"name":"JET_IndexCheckingOff","features":[508]},{"name":"JET_IndexCheckingOn","features":[508]},{"name":"JET_LGPOS","features":[508]},{"name":"JET_LOGINFO_A","features":[508]},{"name":"JET_LOGINFO_W","features":[508]},{"name":"JET_LOGTIME","features":[508]},{"name":"JET_LS","features":[508]},{"name":"JET_MAX_COMPUTERNAME_LENGTH","features":[508]},{"name":"JET_MoveFirst","features":[508]},{"name":"JET_MoveLast","features":[508]},{"name":"JET_MovePrevious","features":[508]},{"name":"JET_OBJECTINFO","features":[508]},{"name":"JET_OBJECTINFO","features":[508]},{"name":"JET_OBJECTLIST","features":[508,509]},{"name":"JET_OPENTEMPORARYTABLE","features":[508,509]},{"name":"JET_OPENTEMPORARYTABLE2","features":[508,509]},{"name":"JET_OPERATIONCONTEXT","features":[508]},{"name":"JET_OSSNAPID","features":[508]},{"name":"JET_OnlineDefragAll","features":[508]},{"name":"JET_OnlineDefragAllOBSOLETE","features":[508]},{"name":"JET_OnlineDefragDatabases","features":[508]},{"name":"JET_OnlineDefragDisable","features":[508]},{"name":"JET_OnlineDefragSpaceTrees","features":[508]},{"name":"JET_PFNDURABLECOMMITCALLBACK","features":[508,509]},{"name":"JET_PFNREALLOC","features":[508]},{"name":"JET_PFNSTATUS","features":[508,509]},{"name":"JET_RECORDLIST","features":[508,509]},{"name":"JET_RECPOS","features":[508]},{"name":"JET_RECPOS2","features":[508]},{"name":"JET_RECPOS2","features":[508]},{"name":"JET_RECSIZE","features":[508]},{"name":"JET_RECSIZE","features":[508]},{"name":"JET_RECSIZE2","features":[508]},{"name":"JET_RECSIZE2","features":[508]},{"name":"JET_RELOP","features":[508]},{"name":"JET_RETINFO","features":[508]},{"name":"JET_RETRIEVECOLUMN","features":[508]},{"name":"JET_RSTINFO_A","features":[508,509]},{"name":"JET_RSTINFO_W","features":[508,509]},{"name":"JET_RSTMAP_A","features":[508]},{"name":"JET_RSTMAP_W","features":[508]},{"name":"JET_SETCOLUMN","features":[508]},{"name":"JET_SETINFO","features":[508]},{"name":"JET_SETSYSPARAM_A","features":[508,509]},{"name":"JET_SETSYSPARAM_W","features":[508,509]},{"name":"JET_SIGNATURE","features":[508]},{"name":"JET_SNPROG","features":[508]},{"name":"JET_SPACEHINTS","features":[508]},{"name":"JET_TABLECREATE2_A","features":[508,509]},{"name":"JET_TABLECREATE2_W","features":[508,509]},{"name":"JET_TABLECREATE3_A","features":[508,509]},{"name":"JET_TABLECREATE3_W","features":[508,509]},{"name":"JET_TABLECREATE4_A","features":[508,509]},{"name":"JET_TABLECREATE4_W","features":[508,509]},{"name":"JET_TABLECREATE_A","features":[508,509]},{"name":"JET_TABLECREATE_W","features":[508,509]},{"name":"JET_THREADSTATS","features":[508]},{"name":"JET_THREADSTATS2","features":[508]},{"name":"JET_THREADSTATS2","features":[508]},{"name":"JET_TUPLELIMITS","features":[508]},{"name":"JET_UNICODEINDEX","features":[508]},{"name":"JET_UNICODEINDEX2","features":[508]},{"name":"JET_USERDEFINEDDEFAULT_A","features":[508]},{"name":"JET_USERDEFINEDDEFAULT_W","features":[508]},{"name":"JET_VERSION","features":[508]},{"name":"JET_bitAbortSnapshot","features":[508]},{"name":"JET_bitAllDatabasesSnapshot","features":[508]},{"name":"JET_bitBackupAtomic","features":[508]},{"name":"JET_bitBackupEndAbort","features":[508]},{"name":"JET_bitBackupEndNormal","features":[508]},{"name":"JET_bitBackupIncremental","features":[508]},{"name":"JET_bitBackupSnapshot","features":[508]},{"name":"JET_bitBackupTruncateDone","features":[508]},{"name":"JET_bitBookmarkPermitVirtualCurrency","features":[508]},{"name":"JET_bitCheckUniqueness","features":[508]},{"name":"JET_bitColumnAutoincrement","features":[508]},{"name":"JET_bitColumnCompressed","features":[508]},{"name":"JET_bitColumnDeleteOnZero","features":[508]},{"name":"JET_bitColumnEscrowUpdate","features":[508]},{"name":"JET_bitColumnFinalize","features":[508]},{"name":"JET_bitColumnFixed","features":[508]},{"name":"JET_bitColumnMaybeNull","features":[508]},{"name":"JET_bitColumnMultiValued","features":[508]},{"name":"JET_bitColumnNotNULL","features":[508]},{"name":"JET_bitColumnTTDescending","features":[508]},{"name":"JET_bitColumnTTKey","features":[508]},{"name":"JET_bitColumnTagged","features":[508]},{"name":"JET_bitColumnUnversioned","features":[508]},{"name":"JET_bitColumnUpdatable","features":[508]},{"name":"JET_bitColumnUserDefinedDefault","features":[508]},{"name":"JET_bitColumnVersion","features":[508]},{"name":"JET_bitCommitLazyFlush","features":[508]},{"name":"JET_bitCompactRepair","features":[508]},{"name":"JET_bitCompactStats","features":[508]},{"name":"JET_bitConfigStoreReadControlDefault","features":[508]},{"name":"JET_bitConfigStoreReadControlDisableAll","features":[508]},{"name":"JET_bitConfigStoreReadControlInhibitRead","features":[508]},{"name":"JET_bitContinueAfterThaw","features":[508]},{"name":"JET_bitCopySnapshot","features":[508]},{"name":"JET_bitCreateHintAppendSequential","features":[508]},{"name":"JET_bitCreateHintHotpointSequential","features":[508]},{"name":"JET_bitDbDeleteCorruptIndexes","features":[508]},{"name":"JET_bitDbDeleteUnicodeIndexes","features":[508]},{"name":"JET_bitDbEnableBackgroundMaintenance","features":[508]},{"name":"JET_bitDbExclusive","features":[508]},{"name":"JET_bitDbOverwriteExisting","features":[508]},{"name":"JET_bitDbPurgeCacheOnAttach","features":[508]},{"name":"JET_bitDbReadOnly","features":[508]},{"name":"JET_bitDbRecoveryOff","features":[508]},{"name":"JET_bitDbShadowingOff","features":[508]},{"name":"JET_bitDbUpgrade","features":[508]},{"name":"JET_bitDefragmentAvailSpaceTreesOnly","features":[508]},{"name":"JET_bitDefragmentBTree","features":[508]},{"name":"JET_bitDefragmentBatchStart","features":[508]},{"name":"JET_bitDefragmentBatchStop","features":[508]},{"name":"JET_bitDefragmentNoPartialMerges","features":[508]},{"name":"JET_bitDeleteColumnIgnoreTemplateColumns","features":[508]},{"name":"JET_bitDeleteHintTableSequential","features":[508]},{"name":"JET_bitDumpCacheIncludeCachedPages","features":[508]},{"name":"JET_bitDumpCacheIncludeCorruptedPages","features":[508]},{"name":"JET_bitDumpCacheIncludeDirtyPages","features":[508]},{"name":"JET_bitDumpCacheMaximum","features":[508]},{"name":"JET_bitDumpCacheMinimum","features":[508]},{"name":"JET_bitDumpCacheNoDecommit","features":[508]},{"name":"JET_bitDumpMaximum","features":[508]},{"name":"JET_bitDumpMinimum","features":[508]},{"name":"JET_bitDurableCommitCallbackLogUnavailable","features":[508]},{"name":"JET_bitESE98FileNames","features":[508]},{"name":"JET_bitEightDotThreeSoftCompat","features":[508]},{"name":"JET_bitEnumerateCompressOutput","features":[508]},{"name":"JET_bitEnumerateCopy","features":[508]},{"name":"JET_bitEnumerateIgnoreDefault","features":[508]},{"name":"JET_bitEnumerateIgnoreUserDefinedDefault","features":[508]},{"name":"JET_bitEnumerateInRecordOnly","features":[508]},{"name":"JET_bitEnumeratePresenceOnly","features":[508]},{"name":"JET_bitEnumerateTaggedOnly","features":[508]},{"name":"JET_bitEscrowNoRollback","features":[508]},{"name":"JET_bitExplicitPrepare","features":[508]},{"name":"JET_bitForceDetach","features":[508]},{"name":"JET_bitForceNewLog","features":[508]},{"name":"JET_bitFullColumnEndLimit","features":[508]},{"name":"JET_bitFullColumnStartLimit","features":[508]},{"name":"JET_bitHungIOEvent","features":[508]},{"name":"JET_bitIdleCompact","features":[508]},{"name":"JET_bitIdleFlushBuffers","features":[508]},{"name":"JET_bitIdleStatus","features":[508]},{"name":"JET_bitIncrementalSnapshot","features":[508]},{"name":"JET_bitIndexColumnMustBeNonNull","features":[508]},{"name":"JET_bitIndexColumnMustBeNull","features":[508]},{"name":"JET_bitIndexCrossProduct","features":[508]},{"name":"JET_bitIndexDisallowNull","features":[508]},{"name":"JET_bitIndexDisallowTruncation","features":[508]},{"name":"JET_bitIndexDotNetGuid","features":[508]},{"name":"JET_bitIndexEmpty","features":[508]},{"name":"JET_bitIndexIgnoreAnyNull","features":[508]},{"name":"JET_bitIndexIgnoreFirstNull","features":[508]},{"name":"JET_bitIndexIgnoreNull","features":[508]},{"name":"JET_bitIndexImmutableStructure","features":[508]},{"name":"JET_bitIndexKeyMost","features":[508]},{"name":"JET_bitIndexLazyFlush","features":[508]},{"name":"JET_bitIndexNestedTable","features":[508]},{"name":"JET_bitIndexPrimary","features":[508]},{"name":"JET_bitIndexSortNullsHigh","features":[508]},{"name":"JET_bitIndexTupleLimits","features":[508]},{"name":"JET_bitIndexTuples","features":[508]},{"name":"JET_bitIndexUnicode","features":[508]},{"name":"JET_bitIndexUnique","features":[508]},{"name":"JET_bitIndexUnversioned","features":[508]},{"name":"JET_bitKeepDbAttachedAtEndOfRecovery","features":[508]},{"name":"JET_bitKeyAscending","features":[508]},{"name":"JET_bitKeyDataZeroLength","features":[508]},{"name":"JET_bitKeyDescending","features":[508]},{"name":"JET_bitLSCursor","features":[508]},{"name":"JET_bitLSReset","features":[508]},{"name":"JET_bitLSTable","features":[508]},{"name":"JET_bitLogStreamMustExist","features":[508]},{"name":"JET_bitMoveFirst","features":[508]},{"name":"JET_bitMoveKeyNE","features":[508]},{"name":"JET_bitNewKey","features":[508]},{"name":"JET_bitNoMove","features":[508]},{"name":"JET_bitNormalizedKey","features":[508]},{"name":"JET_bitObjectSystem","features":[508]},{"name":"JET_bitObjectTableDerived","features":[508]},{"name":"JET_bitObjectTableFixedDDL","features":[508]},{"name":"JET_bitObjectTableNoFixedVarColumnsInDerivedTables","features":[508]},{"name":"JET_bitObjectTableTemplate","features":[508]},{"name":"JET_bitPartialColumnEndLimit","features":[508]},{"name":"JET_bitPartialColumnStartLimit","features":[508]},{"name":"JET_bitPrereadBackward","features":[508]},{"name":"JET_bitPrereadFirstPage","features":[508]},{"name":"JET_bitPrereadForward","features":[508]},{"name":"JET_bitPrereadNormalizedKey","features":[508]},{"name":"JET_bitRangeInclusive","features":[508]},{"name":"JET_bitRangeInstantDuration","features":[508]},{"name":"JET_bitRangeRemove","features":[508]},{"name":"JET_bitRangeUpperLimit","features":[508]},{"name":"JET_bitReadLock","features":[508]},{"name":"JET_bitRecordInIndex","features":[508]},{"name":"JET_bitRecordNotInIndex","features":[508]},{"name":"JET_bitRecordSizeInCopyBuffer","features":[508]},{"name":"JET_bitRecordSizeLocal","features":[508]},{"name":"JET_bitRecordSizeRunningTotal","features":[508]},{"name":"JET_bitRecoveryWithoutUndo","features":[508]},{"name":"JET_bitReplayIgnoreLostLogs","features":[508]},{"name":"JET_bitReplayIgnoreMissingDB","features":[508]},{"name":"JET_bitReplayMissingMapEntryDB","features":[508]},{"name":"JET_bitResizeDatabaseOnlyGrow","features":[508]},{"name":"JET_bitResizeDatabaseOnlyShrink","features":[508]},{"name":"JET_bitRetrieveCopy","features":[508]},{"name":"JET_bitRetrieveFromIndex","features":[508]},{"name":"JET_bitRetrieveFromPrimaryBookmark","features":[508]},{"name":"JET_bitRetrieveHintReserve1","features":[508]},{"name":"JET_bitRetrieveHintReserve2","features":[508]},{"name":"JET_bitRetrieveHintReserve3","features":[508]},{"name":"JET_bitRetrieveHintTableScanBackward","features":[508]},{"name":"JET_bitRetrieveHintTableScanForward","features":[508]},{"name":"JET_bitRetrieveIgnoreDefault","features":[508]},{"name":"JET_bitRetrieveNull","features":[508]},{"name":"JET_bitRetrieveTag","features":[508]},{"name":"JET_bitRetrieveTuple","features":[508]},{"name":"JET_bitRollbackAll","features":[508]},{"name":"JET_bitSeekEQ","features":[508]},{"name":"JET_bitSeekGE","features":[508]},{"name":"JET_bitSeekGT","features":[508]},{"name":"JET_bitSeekLE","features":[508]},{"name":"JET_bitSeekLT","features":[508]},{"name":"JET_bitSetAppendLV","features":[508]},{"name":"JET_bitSetCompressed","features":[508]},{"name":"JET_bitSetContiguousLV","features":[508]},{"name":"JET_bitSetIndexRange","features":[508]},{"name":"JET_bitSetIntrinsicLV","features":[508]},{"name":"JET_bitSetOverwriteLV","features":[508]},{"name":"JET_bitSetRevertToDefaultValue","features":[508]},{"name":"JET_bitSetSeparateLV","features":[508]},{"name":"JET_bitSetSizeLV","features":[508]},{"name":"JET_bitSetUncompressed","features":[508]},{"name":"JET_bitSetUniqueMultiValues","features":[508]},{"name":"JET_bitSetUniqueNormalizedMultiValues","features":[508]},{"name":"JET_bitSetZeroLength","features":[508]},{"name":"JET_bitShrinkDatabaseOff","features":[508]},{"name":"JET_bitShrinkDatabaseOn","features":[508]},{"name":"JET_bitShrinkDatabaseRealtime","features":[508]},{"name":"JET_bitShrinkDatabaseTrim","features":[508]},{"name":"JET_bitSpaceHintsUtilizeParentSpace","features":[508]},{"name":"JET_bitStopServiceAll","features":[508]},{"name":"JET_bitStopServiceBackgroundUserTasks","features":[508]},{"name":"JET_bitStopServiceQuiesceCaches","features":[508]},{"name":"JET_bitStopServiceResume","features":[508]},{"name":"JET_bitStrLimit","features":[508]},{"name":"JET_bitSubStrLimit","features":[508]},{"name":"JET_bitTTDotNetGuid","features":[508]},{"name":"JET_bitTTErrorOnDuplicateInsertion","features":[508]},{"name":"JET_bitTTForceMaterialization","features":[508]},{"name":"JET_bitTTForwardOnly","features":[508]},{"name":"JET_bitTTIndexed","features":[508]},{"name":"JET_bitTTIntrinsicLVsOnly","features":[508]},{"name":"JET_bitTTScrollable","features":[508]},{"name":"JET_bitTTSortNullsHigh","features":[508]},{"name":"JET_bitTTUnique","features":[508]},{"name":"JET_bitTTUpdatable","features":[508]},{"name":"JET_bitTableClass1","features":[508]},{"name":"JET_bitTableClass10","features":[508]},{"name":"JET_bitTableClass11","features":[508]},{"name":"JET_bitTableClass12","features":[508]},{"name":"JET_bitTableClass13","features":[508]},{"name":"JET_bitTableClass14","features":[508]},{"name":"JET_bitTableClass15","features":[508]},{"name":"JET_bitTableClass2","features":[508]},{"name":"JET_bitTableClass3","features":[508]},{"name":"JET_bitTableClass4","features":[508]},{"name":"JET_bitTableClass5","features":[508]},{"name":"JET_bitTableClass6","features":[508]},{"name":"JET_bitTableClass7","features":[508]},{"name":"JET_bitTableClass8","features":[508]},{"name":"JET_bitTableClass9","features":[508]},{"name":"JET_bitTableClassMask","features":[508]},{"name":"JET_bitTableClassNone","features":[508]},{"name":"JET_bitTableCreateFixedDDL","features":[508]},{"name":"JET_bitTableCreateImmutableStructure","features":[508]},{"name":"JET_bitTableCreateNoFixedVarColumnsInDerivedTables","features":[508]},{"name":"JET_bitTableCreateTemplateTable","features":[508]},{"name":"JET_bitTableDenyRead","features":[508]},{"name":"JET_bitTableDenyWrite","features":[508]},{"name":"JET_bitTableInfoBookmark","features":[508]},{"name":"JET_bitTableInfoRollback","features":[508]},{"name":"JET_bitTableInfoUpdatable","features":[508]},{"name":"JET_bitTableNoCache","features":[508]},{"name":"JET_bitTableOpportuneRead","features":[508]},{"name":"JET_bitTablePermitDDL","features":[508]},{"name":"JET_bitTablePreread","features":[508]},{"name":"JET_bitTableReadOnly","features":[508]},{"name":"JET_bitTableSequential","features":[508]},{"name":"JET_bitTableUpdatable","features":[508]},{"name":"JET_bitTermAbrupt","features":[508]},{"name":"JET_bitTermComplete","features":[508]},{"name":"JET_bitTermDirty","features":[508]},{"name":"JET_bitTermStopBackup","features":[508]},{"name":"JET_bitTransactionReadOnly","features":[508]},{"name":"JET_bitTruncateLogsAfterRecovery","features":[508]},{"name":"JET_bitUpdateCheckESE97Compatibility","features":[508]},{"name":"JET_bitWaitAllLevel0Commit","features":[508]},{"name":"JET_bitWaitLastLevel0Commit","features":[508]},{"name":"JET_bitWriteLock","features":[508]},{"name":"JET_bitZeroLength","features":[508]},{"name":"JET_cbBookmarkMost","features":[508]},{"name":"JET_cbColumnLVPageOverhead","features":[508]},{"name":"JET_cbColumnMost","features":[508]},{"name":"JET_cbFullNameMost","features":[508]},{"name":"JET_cbKeyMost","features":[508]},{"name":"JET_cbKeyMost2KBytePage","features":[508]},{"name":"JET_cbKeyMost4KBytePage","features":[508]},{"name":"JET_cbKeyMost8KBytePage","features":[508]},{"name":"JET_cbKeyMostMin","features":[508]},{"name":"JET_cbLVColumnMost","features":[508]},{"name":"JET_cbLVDefaultValueMost","features":[508]},{"name":"JET_cbLimitKeyMost","features":[508]},{"name":"JET_cbNameMost","features":[508]},{"name":"JET_cbPrimaryKeyMost","features":[508]},{"name":"JET_cbSecondaryKeyMost","features":[508]},{"name":"JET_cbtypAfterDelete","features":[508]},{"name":"JET_cbtypAfterInsert","features":[508]},{"name":"JET_cbtypAfterReplace","features":[508]},{"name":"JET_cbtypBeforeDelete","features":[508]},{"name":"JET_cbtypBeforeInsert","features":[508]},{"name":"JET_cbtypBeforeReplace","features":[508]},{"name":"JET_cbtypFinalize","features":[508]},{"name":"JET_cbtypFreeCursorLS","features":[508]},{"name":"JET_cbtypFreeTableLS","features":[508]},{"name":"JET_cbtypNull","features":[508]},{"name":"JET_cbtypOnlineDefragCompleted","features":[508]},{"name":"JET_cbtypUserDefinedDefaultValue","features":[508]},{"name":"JET_ccolFixedMost","features":[508]},{"name":"JET_ccolKeyMost","features":[508]},{"name":"JET_ccolMost","features":[508]},{"name":"JET_ccolTaggedMost","features":[508]},{"name":"JET_ccolVarMost","features":[508]},{"name":"JET_coltypBinary","features":[508]},{"name":"JET_coltypBit","features":[508]},{"name":"JET_coltypCurrency","features":[508]},{"name":"JET_coltypDateTime","features":[508]},{"name":"JET_coltypGUID","features":[508]},{"name":"JET_coltypIEEEDouble","features":[508]},{"name":"JET_coltypIEEESingle","features":[508]},{"name":"JET_coltypLong","features":[508]},{"name":"JET_coltypLongBinary","features":[508]},{"name":"JET_coltypLongLong","features":[508]},{"name":"JET_coltypLongText","features":[508]},{"name":"JET_coltypMax","features":[508]},{"name":"JET_coltypNil","features":[508]},{"name":"JET_coltypSLV","features":[508]},{"name":"JET_coltypShort","features":[508]},{"name":"JET_coltypText","features":[508]},{"name":"JET_coltypUnsignedByte","features":[508]},{"name":"JET_coltypUnsignedLong","features":[508]},{"name":"JET_coltypUnsignedLongLong","features":[508]},{"name":"JET_coltypUnsignedShort","features":[508]},{"name":"JET_configDefault","features":[508]},{"name":"JET_configDynamicMediumMemory","features":[508]},{"name":"JET_configHighConcurrencyScaling","features":[508]},{"name":"JET_configLowDiskFootprint","features":[508]},{"name":"JET_configLowMemory","features":[508]},{"name":"JET_configLowPower","features":[508]},{"name":"JET_configMediumDiskFootprint","features":[508]},{"name":"JET_configRemoveQuotas","features":[508]},{"name":"JET_configRunSilent","features":[508]},{"name":"JET_configSSDProfileIO","features":[508]},{"name":"JET_configUnthrottledMemory","features":[508]},{"name":"JET_dbstateBeingConverted","features":[508]},{"name":"JET_dbstateCleanShutdown","features":[508]},{"name":"JET_dbstateDirtyShutdown","features":[508]},{"name":"JET_dbstateForceDetach","features":[508]},{"name":"JET_dbstateJustCreated","features":[508]},{"name":"JET_errAccessDenied","features":[508]},{"name":"JET_errAfterInitialization","features":[508]},{"name":"JET_errAlreadyInitialized","features":[508]},{"name":"JET_errAlreadyPrepared","features":[508]},{"name":"JET_errAttachedDatabaseMismatch","features":[508]},{"name":"JET_errBackupAbortByServer","features":[508]},{"name":"JET_errBackupDirectoryNotEmpty","features":[508]},{"name":"JET_errBackupInProgress","features":[508]},{"name":"JET_errBackupNotAllowedYet","features":[508]},{"name":"JET_errBadBackupDatabaseSize","features":[508]},{"name":"JET_errBadBookmark","features":[508]},{"name":"JET_errBadCheckpointSignature","features":[508]},{"name":"JET_errBadColumnId","features":[508]},{"name":"JET_errBadDbSignature","features":[508]},{"name":"JET_errBadEmptyPage","features":[508]},{"name":"JET_errBadItagSequence","features":[508]},{"name":"JET_errBadLineCount","features":[508]},{"name":"JET_errBadLogSignature","features":[508]},{"name":"JET_errBadLogVersion","features":[508]},{"name":"JET_errBadPageLink","features":[508]},{"name":"JET_errBadParentPageLink","features":[508]},{"name":"JET_errBadPatchPage","features":[508]},{"name":"JET_errBadRestoreTargetInstance","features":[508]},{"name":"JET_errBufferTooSmall","features":[508]},{"name":"JET_errCallbackFailed","features":[508]},{"name":"JET_errCallbackNotResolved","features":[508]},{"name":"JET_errCannotAddFixedVarColumnToDerivedTable","features":[508]},{"name":"JET_errCannotBeTagged","features":[508]},{"name":"JET_errCannotDeleteSystemTable","features":[508]},{"name":"JET_errCannotDeleteTempTable","features":[508]},{"name":"JET_errCannotDeleteTemplateTable","features":[508]},{"name":"JET_errCannotDisableVersioning","features":[508]},{"name":"JET_errCannotIndex","features":[508]},{"name":"JET_errCannotIndexOnEncryptedColumn","features":[508]},{"name":"JET_errCannotLogDuringRecoveryRedo","features":[508]},{"name":"JET_errCannotMaterializeForwardOnlySort","features":[508]},{"name":"JET_errCannotNestDDL","features":[508]},{"name":"JET_errCannotSeparateIntrinsicLV","features":[508]},{"name":"JET_errCatalogCorrupted","features":[508]},{"name":"JET_errCheckpointCorrupt","features":[508]},{"name":"JET_errCheckpointDepthTooDeep","features":[508]},{"name":"JET_errCheckpointFileNotFound","features":[508]},{"name":"JET_errClientRequestToStopJetService","features":[508]},{"name":"JET_errColumnCannotBeCompressed","features":[508]},{"name":"JET_errColumnCannotBeEncrypted","features":[508]},{"name":"JET_errColumnDoesNotFit","features":[508]},{"name":"JET_errColumnDuplicate","features":[508]},{"name":"JET_errColumnInRelationship","features":[508]},{"name":"JET_errColumnInUse","features":[508]},{"name":"JET_errColumnIndexed","features":[508]},{"name":"JET_errColumnLong","features":[508]},{"name":"JET_errColumnNoChunk","features":[508]},{"name":"JET_errColumnNoEncryptionKey","features":[508]},{"name":"JET_errColumnNotFound","features":[508]},{"name":"JET_errColumnNotUpdatable","features":[508]},{"name":"JET_errColumnRedundant","features":[508]},{"name":"JET_errColumnTooBig","features":[508]},{"name":"JET_errCommittedLogFileCorrupt","features":[508]},{"name":"JET_errCommittedLogFilesMissing","features":[508]},{"name":"JET_errConsistentTimeMismatch","features":[508]},{"name":"JET_errContainerNotEmpty","features":[508]},{"name":"JET_errDDLNotInheritable","features":[508]},{"name":"JET_errDataHasChanged","features":[508]},{"name":"JET_errDatabase200Format","features":[508]},{"name":"JET_errDatabase400Format","features":[508]},{"name":"JET_errDatabase500Format","features":[508]},{"name":"JET_errDatabaseAlreadyRunningMaintenance","features":[508]},{"name":"JET_errDatabaseAlreadyUpgraded","features":[508]},{"name":"JET_errDatabaseAttachedForRecovery","features":[508]},{"name":"JET_errDatabaseBufferDependenciesCorrupted","features":[508]},{"name":"JET_errDatabaseCorrupted","features":[508]},{"name":"JET_errDatabaseCorruptedNoRepair","features":[508]},{"name":"JET_errDatabaseDirtyShutdown","features":[508]},{"name":"JET_errDatabaseDuplicate","features":[508]},{"name":"JET_errDatabaseFileReadOnly","features":[508]},{"name":"JET_errDatabaseIdInUse","features":[508]},{"name":"JET_errDatabaseInUse","features":[508]},{"name":"JET_errDatabaseIncompleteUpgrade","features":[508]},{"name":"JET_errDatabaseInconsistent","features":[508]},{"name":"JET_errDatabaseInvalidName","features":[508]},{"name":"JET_errDatabaseInvalidPages","features":[508]},{"name":"JET_errDatabaseInvalidPath","features":[508]},{"name":"JET_errDatabaseLeakInSpace","features":[508]},{"name":"JET_errDatabaseLocked","features":[508]},{"name":"JET_errDatabaseLogSetMismatch","features":[508]},{"name":"JET_errDatabaseNotFound","features":[508]},{"name":"JET_errDatabaseNotReady","features":[508]},{"name":"JET_errDatabasePatchFileMismatch","features":[508]},{"name":"JET_errDatabaseSharingViolation","features":[508]},{"name":"JET_errDatabaseSignInUse","features":[508]},{"name":"JET_errDatabaseStreamingFileMismatch","features":[508]},{"name":"JET_errDatabaseUnavailable","features":[508]},{"name":"JET_errDatabasesNotFromSameSnapshot","features":[508]},{"name":"JET_errDbTimeBeyondMaxRequired","features":[508]},{"name":"JET_errDbTimeCorrupted","features":[508]},{"name":"JET_errDbTimeTooNew","features":[508]},{"name":"JET_errDbTimeTooOld","features":[508]},{"name":"JET_errDecompressionFailed","features":[508]},{"name":"JET_errDecryptionFailed","features":[508]},{"name":"JET_errDefaultValueTooBig","features":[508]},{"name":"JET_errDeleteBackupFileFail","features":[508]},{"name":"JET_errDensityInvalid","features":[508]},{"name":"JET_errDerivedColumnCorruption","features":[508]},{"name":"JET_errDirtyShutdown","features":[508]},{"name":"JET_errDisabledFunctionality","features":[508]},{"name":"JET_errDiskFull","features":[508]},{"name":"JET_errDiskIO","features":[508]},{"name":"JET_errDiskReadVerificationFailure","features":[508]},{"name":"JET_errEncryptionBadItag","features":[508]},{"name":"JET_errEndingRestoreLogTooLow","features":[508]},{"name":"JET_errEngineFormatVersionNoLongerSupportedTooLow","features":[508]},{"name":"JET_errEngineFormatVersionNotYetImplementedTooHigh","features":[508]},{"name":"JET_errEngineFormatVersionParamTooLowForRequestedFeature","features":[508]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForDatabaseVersion","features":[508]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForLogVersion","features":[508]},{"name":"JET_errEntryPointNotFound","features":[508]},{"name":"JET_errExclusiveTableLockRequired","features":[508]},{"name":"JET_errExistingLogFileHasBadSignature","features":[508]},{"name":"JET_errExistingLogFileIsNotContiguous","features":[508]},{"name":"JET_errFeatureNotAvailable","features":[508]},{"name":"JET_errFileAccessDenied","features":[508]},{"name":"JET_errFileAlreadyExists","features":[508]},{"name":"JET_errFileClose","features":[508]},{"name":"JET_errFileCompressed","features":[508]},{"name":"JET_errFileIOAbort","features":[508]},{"name":"JET_errFileIOBeyondEOF","features":[508]},{"name":"JET_errFileIOFail","features":[508]},{"name":"JET_errFileIORetry","features":[508]},{"name":"JET_errFileIOSparse","features":[508]},{"name":"JET_errFileInvalidType","features":[508]},{"name":"JET_errFileNotFound","features":[508]},{"name":"JET_errFileSystemCorruption","features":[508]},{"name":"JET_errFilteredMoveNotSupported","features":[508]},{"name":"JET_errFixedDDL","features":[508]},{"name":"JET_errFixedInheritedDDL","features":[508]},{"name":"JET_errFlushMapDatabaseMismatch","features":[508]},{"name":"JET_errFlushMapUnrecoverable","features":[508]},{"name":"JET_errFlushMapVersionUnsupported","features":[508]},{"name":"JET_errForceDetachNotAllowed","features":[508]},{"name":"JET_errGivenLogFileHasBadSignature","features":[508]},{"name":"JET_errGivenLogFileIsNotContiguous","features":[508]},{"name":"JET_errIllegalOperation","features":[508]},{"name":"JET_errInTransaction","features":[508]},{"name":"JET_errIndexBuildCorrupted","features":[508]},{"name":"JET_errIndexCantBuild","features":[508]},{"name":"JET_errIndexDuplicate","features":[508]},{"name":"JET_errIndexHasPrimary","features":[508]},{"name":"JET_errIndexInUse","features":[508]},{"name":"JET_errIndexInvalidDef","features":[508]},{"name":"JET_errIndexMustStay","features":[508]},{"name":"JET_errIndexNotFound","features":[508]},{"name":"JET_errIndexTuplesCannotRetrieveFromIndex","features":[508]},{"name":"JET_errIndexTuplesInvalidLimits","features":[508]},{"name":"JET_errIndexTuplesKeyTooSmall","features":[508]},{"name":"JET_errIndexTuplesNonUniqueOnly","features":[508]},{"name":"JET_errIndexTuplesOneColumnOnly","features":[508]},{"name":"JET_errIndexTuplesSecondaryIndexOnly","features":[508]},{"name":"JET_errIndexTuplesTextBinaryColumnsOnly","features":[508]},{"name":"JET_errIndexTuplesTextColumnsOnly","features":[508]},{"name":"JET_errIndexTuplesTooManyColumns","features":[508]},{"name":"JET_errIndexTuplesVarSegMacNotAllowed","features":[508]},{"name":"JET_errInitInProgress","features":[508]},{"name":"JET_errInstanceNameInUse","features":[508]},{"name":"JET_errInstanceUnavailable","features":[508]},{"name":"JET_errInstanceUnavailableDueToFatalLogDiskFull","features":[508]},{"name":"JET_errInternalError","features":[508]},{"name":"JET_errInvalidBackup","features":[508]},{"name":"JET_errInvalidBackupSequence","features":[508]},{"name":"JET_errInvalidBookmark","features":[508]},{"name":"JET_errInvalidBufferSize","features":[508]},{"name":"JET_errInvalidCodePage","features":[508]},{"name":"JET_errInvalidColumnType","features":[508]},{"name":"JET_errInvalidCountry","features":[508]},{"name":"JET_errInvalidCreateDbVersion","features":[508]},{"name":"JET_errInvalidCreateIndex","features":[508]},{"name":"JET_errInvalidDatabase","features":[508]},{"name":"JET_errInvalidDatabaseId","features":[508]},{"name":"JET_errInvalidDatabaseVersion","features":[508]},{"name":"JET_errInvalidDbparamId","features":[508]},{"name":"JET_errInvalidFilename","features":[508]},{"name":"JET_errInvalidGrbit","features":[508]},{"name":"JET_errInvalidIndexId","features":[508]},{"name":"JET_errInvalidInstance","features":[508]},{"name":"JET_errInvalidLCMapStringFlags","features":[508]},{"name":"JET_errInvalidLVChunkSize","features":[508]},{"name":"JET_errInvalidLanguageId","features":[508]},{"name":"JET_errInvalidLogDirectory","features":[508]},{"name":"JET_errInvalidLogSequence","features":[508]},{"name":"JET_errInvalidLoggedOperation","features":[508]},{"name":"JET_errInvalidName","features":[508]},{"name":"JET_errInvalidObject","features":[508]},{"name":"JET_errInvalidOnSort","features":[508]},{"name":"JET_errInvalidOperation","features":[508]},{"name":"JET_errInvalidParameter","features":[508]},{"name":"JET_errInvalidPath","features":[508]},{"name":"JET_errInvalidPlaceholderColumn","features":[508]},{"name":"JET_errInvalidPreread","features":[508]},{"name":"JET_errInvalidSesid","features":[508]},{"name":"JET_errInvalidSesparamId","features":[508]},{"name":"JET_errInvalidSettings","features":[508]},{"name":"JET_errInvalidSystemPath","features":[508]},{"name":"JET_errInvalidTableId","features":[508]},{"name":"JET_errKeyBoundary","features":[508]},{"name":"JET_errKeyDuplicate","features":[508]},{"name":"JET_errKeyIsMade","features":[508]},{"name":"JET_errKeyNotMade","features":[508]},{"name":"JET_errKeyTooBig","features":[508]},{"name":"JET_errKeyTruncated","features":[508]},{"name":"JET_errLSAlreadySet","features":[508]},{"name":"JET_errLSCallbackNotSpecified","features":[508]},{"name":"JET_errLSNotSet","features":[508]},{"name":"JET_errLVCorrupted","features":[508]},{"name":"JET_errLanguageNotSupported","features":[508]},{"name":"JET_errLinkNotSupported","features":[508]},{"name":"JET_errLogBufferTooSmall","features":[508]},{"name":"JET_errLogCorruptDuringHardRecovery","features":[508]},{"name":"JET_errLogCorruptDuringHardRestore","features":[508]},{"name":"JET_errLogCorrupted","features":[508]},{"name":"JET_errLogDisabledDueToRecoveryFailure","features":[508]},{"name":"JET_errLogDiskFull","features":[508]},{"name":"JET_errLogFileCorrupt","features":[508]},{"name":"JET_errLogFileNotCopied","features":[508]},{"name":"JET_errLogFilePathInUse","features":[508]},{"name":"JET_errLogFileSizeMismatch","features":[508]},{"name":"JET_errLogFileSizeMismatchDatabasesConsistent","features":[508]},{"name":"JET_errLogGenerationMismatch","features":[508]},{"name":"JET_errLogReadVerifyFailure","features":[508]},{"name":"JET_errLogSectorSizeMismatch","features":[508]},{"name":"JET_errLogSectorSizeMismatchDatabasesConsistent","features":[508]},{"name":"JET_errLogSequenceChecksumMismatch","features":[508]},{"name":"JET_errLogSequenceEnd","features":[508]},{"name":"JET_errLogSequenceEndDatabasesConsistent","features":[508]},{"name":"JET_errLogTornWriteDuringHardRecovery","features":[508]},{"name":"JET_errLogTornWriteDuringHardRestore","features":[508]},{"name":"JET_errLogWriteFail","features":[508]},{"name":"JET_errLoggingDisabled","features":[508]},{"name":"JET_errMakeBackupDirectoryFail","features":[508]},{"name":"JET_errMissingCurrentLogFiles","features":[508]},{"name":"JET_errMissingFileToBackup","features":[508]},{"name":"JET_errMissingFullBackup","features":[508]},{"name":"JET_errMissingLogFile","features":[508]},{"name":"JET_errMissingPatchPage","features":[508]},{"name":"JET_errMissingPreviousLogFile","features":[508]},{"name":"JET_errMissingRestoreLogFiles","features":[508]},{"name":"JET_errMultiValuedColumnMustBeTagged","features":[508]},{"name":"JET_errMultiValuedDuplicate","features":[508]},{"name":"JET_errMultiValuedDuplicateAfterTruncation","features":[508]},{"name":"JET_errMultiValuedIndexViolation","features":[508]},{"name":"JET_errMustBeSeparateLongValue","features":[508]},{"name":"JET_errMustDisableLoggingForDbUpgrade","features":[508]},{"name":"JET_errMustRollback","features":[508]},{"name":"JET_errNTSystemCallFailed","features":[508]},{"name":"JET_errNoBackup","features":[508]},{"name":"JET_errNoBackupDirectory","features":[508]},{"name":"JET_errNoCurrentIndex","features":[508]},{"name":"JET_errNoCurrentRecord","features":[508]},{"name":"JET_errNodeCorrupted","features":[508]},{"name":"JET_errNotInTransaction","features":[508]},{"name":"JET_errNotInitialized","features":[508]},{"name":"JET_errNullInvalid","features":[508]},{"name":"JET_errNullKeyDisallowed","features":[508]},{"name":"JET_errOSSnapshotInvalidSequence","features":[508]},{"name":"JET_errOSSnapshotInvalidSnapId","features":[508]},{"name":"JET_errOSSnapshotNotAllowed","features":[508]},{"name":"JET_errOSSnapshotTimeOut","features":[508]},{"name":"JET_errObjectDuplicate","features":[508]},{"name":"JET_errObjectNotFound","features":[508]},{"name":"JET_errOneDatabasePerSession","features":[508]},{"name":"JET_errOutOfAutoincrementValues","features":[508]},{"name":"JET_errOutOfBuffers","features":[508]},{"name":"JET_errOutOfCursors","features":[508]},{"name":"JET_errOutOfDatabaseSpace","features":[508]},{"name":"JET_errOutOfDbtimeValues","features":[508]},{"name":"JET_errOutOfFileHandles","features":[508]},{"name":"JET_errOutOfLongValueIDs","features":[508]},{"name":"JET_errOutOfMemory","features":[508]},{"name":"JET_errOutOfObjectIDs","features":[508]},{"name":"JET_errOutOfSequentialIndexValues","features":[508]},{"name":"JET_errOutOfSessions","features":[508]},{"name":"JET_errOutOfThreads","features":[508]},{"name":"JET_errPageBoundary","features":[508]},{"name":"JET_errPageInitializedMismatch","features":[508]},{"name":"JET_errPageNotInitialized","features":[508]},{"name":"JET_errPageSizeMismatch","features":[508]},{"name":"JET_errPageTagCorrupted","features":[508]},{"name":"JET_errPartiallyAttachedDB","features":[508]},{"name":"JET_errPatchFileMissing","features":[508]},{"name":"JET_errPermissionDenied","features":[508]},{"name":"JET_errPreviousVersion","features":[508]},{"name":"JET_errPrimaryIndexCorrupted","features":[508]},{"name":"JET_errReadLostFlushVerifyFailure","features":[508]},{"name":"JET_errReadPgnoVerifyFailure","features":[508]},{"name":"JET_errReadVerifyFailure","features":[508]},{"name":"JET_errRecordDeleted","features":[508]},{"name":"JET_errRecordFormatConversionFailed","features":[508]},{"name":"JET_errRecordNoCopy","features":[508]},{"name":"JET_errRecordNotDeleted","features":[508]},{"name":"JET_errRecordNotFound","features":[508]},{"name":"JET_errRecordPrimaryChanged","features":[508]},{"name":"JET_errRecordTooBig","features":[508]},{"name":"JET_errRecordTooBigForBackwardCompatibility","features":[508]},{"name":"JET_errRecoveredWithErrors","features":[508]},{"name":"JET_errRecoveredWithoutUndo","features":[508]},{"name":"JET_errRecoveredWithoutUndoDatabasesConsistent","features":[508]},{"name":"JET_errRecoveryVerifyFailure","features":[508]},{"name":"JET_errRedoAbruptEnded","features":[508]},{"name":"JET_errRequiredLogFilesMissing","features":[508]},{"name":"JET_errRestoreInProgress","features":[508]},{"name":"JET_errRestoreOfNonBackupDatabase","features":[508]},{"name":"JET_errRfsFailure","features":[508]},{"name":"JET_errRfsNotArmed","features":[508]},{"name":"JET_errRollbackError","features":[508]},{"name":"JET_errRollbackRequired","features":[508]},{"name":"JET_errRunningInMultiInstanceMode","features":[508]},{"name":"JET_errRunningInOneInstanceMode","features":[508]},{"name":"JET_errSPAvailExtCacheOutOfMemory","features":[508]},{"name":"JET_errSPAvailExtCacheOutOfSync","features":[508]},{"name":"JET_errSPAvailExtCorrupted","features":[508]},{"name":"JET_errSPOwnExtCorrupted","features":[508]},{"name":"JET_errSecondaryIndexCorrupted","features":[508]},{"name":"JET_errSectorSizeNotSupported","features":[508]},{"name":"JET_errSeparatedLongValue","features":[508]},{"name":"JET_errSesidTableIdMismatch","features":[508]},{"name":"JET_errSessionContextAlreadySet","features":[508]},{"name":"JET_errSessionContextNotSetByThisThread","features":[508]},{"name":"JET_errSessionInUse","features":[508]},{"name":"JET_errSessionSharingViolation","features":[508]},{"name":"JET_errSessionWriteConflict","features":[508]},{"name":"JET_errSoftRecoveryOnBackupDatabase","features":[508]},{"name":"JET_errSoftRecoveryOnSnapshot","features":[508]},{"name":"JET_errSpaceHintsInvalid","features":[508]},{"name":"JET_errStartingRestoreLogTooHigh","features":[508]},{"name":"JET_errStreamingDataNotLogged","features":[508]},{"name":"JET_errSuccess","features":[508]},{"name":"JET_errSystemParameterConflict","features":[508]},{"name":"JET_errSystemParamsAlreadySet","features":[508]},{"name":"JET_errSystemPathInUse","features":[508]},{"name":"JET_errTableDuplicate","features":[508]},{"name":"JET_errTableInUse","features":[508]},{"name":"JET_errTableLocked","features":[508]},{"name":"JET_errTableNotEmpty","features":[508]},{"name":"JET_errTaggedNotNULL","features":[508]},{"name":"JET_errTaskDropped","features":[508]},{"name":"JET_errTempFileOpenError","features":[508]},{"name":"JET_errTempPathInUse","features":[508]},{"name":"JET_errTermInProgress","features":[508]},{"name":"JET_errTooManyActiveUsers","features":[508]},{"name":"JET_errTooManyAttachedDatabases","features":[508]},{"name":"JET_errTooManyColumns","features":[508]},{"name":"JET_errTooManyIO","features":[508]},{"name":"JET_errTooManyIndexes","features":[508]},{"name":"JET_errTooManyInstances","features":[508]},{"name":"JET_errTooManyKeys","features":[508]},{"name":"JET_errTooManyMempoolEntries","features":[508]},{"name":"JET_errTooManyOpenDatabases","features":[508]},{"name":"JET_errTooManyOpenIndexes","features":[508]},{"name":"JET_errTooManyOpenTables","features":[508]},{"name":"JET_errTooManyOpenTablesAndCleanupTimedOut","features":[508]},{"name":"JET_errTooManyRecords","features":[508]},{"name":"JET_errTooManySorts","features":[508]},{"name":"JET_errTooManySplits","features":[508]},{"name":"JET_errTransReadOnly","features":[508]},{"name":"JET_errTransTooDeep","features":[508]},{"name":"JET_errTransactionTooLong","features":[508]},{"name":"JET_errTransactionsNotReadyDuringRecovery","features":[508]},{"name":"JET_errUnicodeLanguageValidationFailure","features":[508]},{"name":"JET_errUnicodeNormalizationNotSupported","features":[508]},{"name":"JET_errUnicodeTranslationBufferTooSmall","features":[508]},{"name":"JET_errUnicodeTranslationFail","features":[508]},{"name":"JET_errUnloadableOSFunctionality","features":[508]},{"name":"JET_errUpdateMustVersion","features":[508]},{"name":"JET_errUpdateNotPrepared","features":[508]},{"name":"JET_errVersionStoreEntryTooBig","features":[508]},{"name":"JET_errVersionStoreOutOfMemory","features":[508]},{"name":"JET_errVersionStoreOutOfMemoryAndCleanupTimedOut","features":[508]},{"name":"JET_errWriteConflict","features":[508]},{"name":"JET_errWriteConflictPrimaryIndex","features":[508]},{"name":"JET_errcatApi","features":[508]},{"name":"JET_errcatCorruption","features":[508]},{"name":"JET_errcatData","features":[508]},{"name":"JET_errcatDisk","features":[508]},{"name":"JET_errcatError","features":[508]},{"name":"JET_errcatFatal","features":[508]},{"name":"JET_errcatFragmentation","features":[508]},{"name":"JET_errcatIO","features":[508]},{"name":"JET_errcatInconsistent","features":[508]},{"name":"JET_errcatMax","features":[508]},{"name":"JET_errcatMemory","features":[508]},{"name":"JET_errcatObsolete","features":[508]},{"name":"JET_errcatOperation","features":[508]},{"name":"JET_errcatQuota","features":[508]},{"name":"JET_errcatResource","features":[508]},{"name":"JET_errcatState","features":[508]},{"name":"JET_errcatUnknown","features":[508]},{"name":"JET_errcatUsage","features":[508]},{"name":"JET_filetypeCheckpoint","features":[508]},{"name":"JET_filetypeDatabase","features":[508]},{"name":"JET_filetypeFlushMap","features":[508]},{"name":"JET_filetypeLog","features":[508]},{"name":"JET_filetypeTempDatabase","features":[508]},{"name":"JET_filetypeUnknown","features":[508]},{"name":"JET_objtypNil","features":[508]},{"name":"JET_objtypTable","features":[508]},{"name":"JET_paramAccessDeniedRetryPeriod","features":[508]},{"name":"JET_paramAlternateDatabaseRecoveryPath","features":[508]},{"name":"JET_paramBaseName","features":[508]},{"name":"JET_paramBatchIOBufferMax","features":[508]},{"name":"JET_paramCachePriority","features":[508]},{"name":"JET_paramCacheSize","features":[508]},{"name":"JET_paramCacheSizeMax","features":[508]},{"name":"JET_paramCacheSizeMin","features":[508]},{"name":"JET_paramCachedClosedTables","features":[508]},{"name":"JET_paramCheckFormatWhenOpenFail","features":[508]},{"name":"JET_paramCheckpointDepthMax","features":[508]},{"name":"JET_paramCheckpointIOMax","features":[508]},{"name":"JET_paramCircularLog","features":[508]},{"name":"JET_paramCleanupMismatchedLogFiles","features":[508]},{"name":"JET_paramCommitDefault","features":[508]},{"name":"JET_paramConfigStoreSpec","features":[508]},{"name":"JET_paramConfiguration","features":[508]},{"name":"JET_paramCreatePathIfNotExist","features":[508]},{"name":"JET_paramDatabasePageSize","features":[508]},{"name":"JET_paramDbExtensionSize","features":[508]},{"name":"JET_paramDbScanIntervalMaxSec","features":[508]},{"name":"JET_paramDbScanIntervalMinSec","features":[508]},{"name":"JET_paramDbScanThrottle","features":[508]},{"name":"JET_paramDefragmentSequentialBTrees","features":[508]},{"name":"JET_paramDefragmentSequentialBTreesDensityCheckFrequency","features":[508]},{"name":"JET_paramDeleteOldLogs","features":[508]},{"name":"JET_paramDeleteOutOfRangeLogs","features":[508]},{"name":"JET_paramDisableCallbacks","features":[508]},{"name":"JET_paramDisablePerfmon","features":[508]},{"name":"JET_paramDurableCommitCallback","features":[508]},{"name":"JET_paramEnableAdvanced","features":[508]},{"name":"JET_paramEnableDBScanInRecovery","features":[508]},{"name":"JET_paramEnableDBScanSerialization","features":[508]},{"name":"JET_paramEnableFileCache","features":[508]},{"name":"JET_paramEnableIndexChecking","features":[508]},{"name":"JET_paramEnableIndexCleanup","features":[508]},{"name":"JET_paramEnableOnlineDefrag","features":[508]},{"name":"JET_paramEnablePersistedCallbacks","features":[508]},{"name":"JET_paramEnableRBS","features":[508]},{"name":"JET_paramEnableShrinkDatabase","features":[508]},{"name":"JET_paramEnableSqm","features":[508]},{"name":"JET_paramEnableTempTableVersioning","features":[508]},{"name":"JET_paramEnableViewCache","features":[508]},{"name":"JET_paramErrorToString","features":[508]},{"name":"JET_paramEventLogCache","features":[508]},{"name":"JET_paramEventLoggingLevel","features":[508]},{"name":"JET_paramEventSource","features":[508]},{"name":"JET_paramEventSourceKey","features":[508]},{"name":"JET_paramExceptionAction","features":[508]},{"name":"JET_paramGlobalMinVerPages","features":[508]},{"name":"JET_paramHungIOActions","features":[508]},{"name":"JET_paramHungIOThreshold","features":[508]},{"name":"JET_paramIOPriority","features":[508]},{"name":"JET_paramIOThrottlingTimeQuanta","features":[508]},{"name":"JET_paramIgnoreLogVersion","features":[508]},{"name":"JET_paramIndexTupleIncrement","features":[508]},{"name":"JET_paramIndexTupleStart","features":[508]},{"name":"JET_paramIndexTuplesLengthMax","features":[508]},{"name":"JET_paramIndexTuplesLengthMin","features":[508]},{"name":"JET_paramIndexTuplesToIndexMax","features":[508]},{"name":"JET_paramKeyMost","features":[508]},{"name":"JET_paramLRUKCorrInterval","features":[508]},{"name":"JET_paramLRUKHistoryMax","features":[508]},{"name":"JET_paramLRUKPolicy","features":[508]},{"name":"JET_paramLRUKTimeout","features":[508]},{"name":"JET_paramLRUKTrxCorrInterval","features":[508]},{"name":"JET_paramLVChunkSizeMost","features":[508]},{"name":"JET_paramLegacyFileNames","features":[508]},{"name":"JET_paramLogBuffers","features":[508]},{"name":"JET_paramLogCheckpointPeriod","features":[508]},{"name":"JET_paramLogFileCreateAsynch","features":[508]},{"name":"JET_paramLogFilePath","features":[508]},{"name":"JET_paramLogFileSize","features":[508]},{"name":"JET_paramLogWaitingUserMax","features":[508]},{"name":"JET_paramMaxCoalesceReadGapSize","features":[508]},{"name":"JET_paramMaxCoalesceReadSize","features":[508]},{"name":"JET_paramMaxCoalesceWriteGapSize","features":[508]},{"name":"JET_paramMaxCoalesceWriteSize","features":[508]},{"name":"JET_paramMaxColtyp","features":[508]},{"name":"JET_paramMaxCursors","features":[508]},{"name":"JET_paramMaxInstances","features":[508]},{"name":"JET_paramMaxOpenTables","features":[508]},{"name":"JET_paramMaxSessions","features":[508]},{"name":"JET_paramMaxTemporaryTables","features":[508]},{"name":"JET_paramMaxTransactionSize","features":[508]},{"name":"JET_paramMaxValueInvalid","features":[508]},{"name":"JET_paramMaxVerPages","features":[508]},{"name":"JET_paramMinDataForXpress","features":[508]},{"name":"JET_paramNoInformationEvent","features":[508]},{"name":"JET_paramOSSnapshotTimeout","features":[508]},{"name":"JET_paramOneDatabasePerSession","features":[508]},{"name":"JET_paramOutstandingIOMax","features":[508]},{"name":"JET_paramPageFragment","features":[508]},{"name":"JET_paramPageHintCacheSize","features":[508]},{"name":"JET_paramPageTempDBMin","features":[508]},{"name":"JET_paramPerfmonRefreshInterval","features":[508]},{"name":"JET_paramPreferredMaxOpenTables","features":[508]},{"name":"JET_paramPreferredVerPages","features":[508]},{"name":"JET_paramPrereadIOMax","features":[508]},{"name":"JET_paramProcessFriendlyName","features":[508]},{"name":"JET_paramRBSFilePath","features":[508]},{"name":"JET_paramRecordUpgradeDirtyLevel","features":[508]},{"name":"JET_paramRecovery","features":[508]},{"name":"JET_paramRuntimeCallback","features":[508]},{"name":"JET_paramStartFlushThreshold","features":[508]},{"name":"JET_paramStopFlushThreshold","features":[508]},{"name":"JET_paramSystemPath","features":[508]},{"name":"JET_paramTableClass10Name","features":[508]},{"name":"JET_paramTableClass11Name","features":[508]},{"name":"JET_paramTableClass12Name","features":[508]},{"name":"JET_paramTableClass13Name","features":[508]},{"name":"JET_paramTableClass14Name","features":[508]},{"name":"JET_paramTableClass15Name","features":[508]},{"name":"JET_paramTableClass1Name","features":[508]},{"name":"JET_paramTableClass2Name","features":[508]},{"name":"JET_paramTableClass3Name","features":[508]},{"name":"JET_paramTableClass4Name","features":[508]},{"name":"JET_paramTableClass5Name","features":[508]},{"name":"JET_paramTableClass6Name","features":[508]},{"name":"JET_paramTableClass7Name","features":[508]},{"name":"JET_paramTableClass8Name","features":[508]},{"name":"JET_paramTableClass9Name","features":[508]},{"name":"JET_paramTempPath","features":[508]},{"name":"JET_paramUnicodeIndexDefault","features":[508]},{"name":"JET_paramUseFlushForWriteDurability","features":[508]},{"name":"JET_paramVerPageSize","features":[508]},{"name":"JET_paramVersionStoreTaskQueueMax","features":[508]},{"name":"JET_paramWaitLogFlush","features":[508]},{"name":"JET_paramWaypointLatency","features":[508]},{"name":"JET_paramZeroDatabaseDuringBackup","features":[508]},{"name":"JET_prepCancel","features":[508]},{"name":"JET_prepInsert","features":[508]},{"name":"JET_prepInsertCopy","features":[508]},{"name":"JET_prepInsertCopyDeleteOriginal","features":[508]},{"name":"JET_prepInsertCopyReplaceOriginal","features":[508]},{"name":"JET_prepReplace","features":[508]},{"name":"JET_prepReplaceNoLock","features":[508]},{"name":"JET_relopBitmaskEqualsZero","features":[508]},{"name":"JET_relopBitmaskNotEqualsZero","features":[508]},{"name":"JET_relopEquals","features":[508]},{"name":"JET_relopGreaterThan","features":[508]},{"name":"JET_relopGreaterThanOrEqual","features":[508]},{"name":"JET_relopLessThan","features":[508]},{"name":"JET_relopLessThanOrEqual","features":[508]},{"name":"JET_relopNotEquals","features":[508]},{"name":"JET_relopPrefixEquals","features":[508]},{"name":"JET_sesparamCommitDefault","features":[508]},{"name":"JET_sesparamCorrelationID","features":[508]},{"name":"JET_sesparamMaxValueInvalid","features":[508]},{"name":"JET_sesparamOperationContext","features":[508]},{"name":"JET_sesparamTransactionLevel","features":[508]},{"name":"JET_snpBackup","features":[508]},{"name":"JET_snpCompact","features":[508]},{"name":"JET_snpRepair","features":[508]},{"name":"JET_snpRestore","features":[508]},{"name":"JET_snpScrub","features":[508]},{"name":"JET_snpUpgrade","features":[508]},{"name":"JET_snpUpgradeRecordFormat","features":[508]},{"name":"JET_sntBegin","features":[508]},{"name":"JET_sntComplete","features":[508]},{"name":"JET_sntFail","features":[508]},{"name":"JET_sntProgress","features":[508]},{"name":"JET_sntRequirements","features":[508]},{"name":"JET_sqmDisable","features":[508]},{"name":"JET_sqmEnable","features":[508]},{"name":"JET_sqmFromCEIP","features":[508]},{"name":"JET_wrnBufferTruncated","features":[508]},{"name":"JET_wrnCallbackNotRegistered","features":[508]},{"name":"JET_wrnColumnDefault","features":[508]},{"name":"JET_wrnColumnMaxTruncated","features":[508]},{"name":"JET_wrnColumnMoreTags","features":[508]},{"name":"JET_wrnColumnNotInRecord","features":[508]},{"name":"JET_wrnColumnNotLocal","features":[508]},{"name":"JET_wrnColumnNull","features":[508]},{"name":"JET_wrnColumnPresent","features":[508]},{"name":"JET_wrnColumnReference","features":[508]},{"name":"JET_wrnColumnSetNull","features":[508]},{"name":"JET_wrnColumnSingleValue","features":[508]},{"name":"JET_wrnColumnSkipped","features":[508]},{"name":"JET_wrnColumnTruncated","features":[508]},{"name":"JET_wrnCommittedLogFilesLost","features":[508]},{"name":"JET_wrnCommittedLogFilesRemoved","features":[508]},{"name":"JET_wrnCopyLongValue","features":[508]},{"name":"JET_wrnCorruptIndexDeleted","features":[508]},{"name":"JET_wrnDataHasChanged","features":[508]},{"name":"JET_wrnDatabaseAttached","features":[508]},{"name":"JET_wrnDatabaseRepaired","features":[508]},{"name":"JET_wrnDefragAlreadyRunning","features":[508]},{"name":"JET_wrnDefragNotRunning","features":[508]},{"name":"JET_wrnExistingLogFileHasBadSignature","features":[508]},{"name":"JET_wrnExistingLogFileIsNotContiguous","features":[508]},{"name":"JET_wrnFileOpenReadOnly","features":[508]},{"name":"JET_wrnFinishWithUndo","features":[508]},{"name":"JET_wrnIdleFull","features":[508]},{"name":"JET_wrnKeyChanged","features":[508]},{"name":"JET_wrnNoErrorInfo","features":[508]},{"name":"JET_wrnNoIdleActivity","features":[508]},{"name":"JET_wrnNoWriteLock","features":[508]},{"name":"JET_wrnNyi","features":[508]},{"name":"JET_wrnPrimaryIndexOutOfDate","features":[508]},{"name":"JET_wrnRemainingVersions","features":[508]},{"name":"JET_wrnSecondaryIndexOutOfDate","features":[508]},{"name":"JET_wrnSeekNotEqual","features":[508]},{"name":"JET_wrnSeparateLongValue","features":[508]},{"name":"JET_wrnShrinkNotPossible","features":[508]},{"name":"JET_wrnSkipThisRecord","features":[508]},{"name":"JET_wrnSortOverflow","features":[508]},{"name":"JET_wrnTableEmpty","features":[508]},{"name":"JET_wrnTableInUseBySystem","features":[508]},{"name":"JET_wrnTargetInstanceRunning","features":[508]},{"name":"JET_wrnUniqueKey","features":[508]},{"name":"JET_wszConfigStoreReadControl","features":[508]},{"name":"JET_wszConfigStoreRelPathSysParamDefault","features":[508]},{"name":"JET_wszConfigStoreRelPathSysParamOverride","features":[508]},{"name":"JetAddColumnA","features":[508,509]},{"name":"JetAddColumnW","features":[508,509]},{"name":"JetAttachDatabase2A","features":[508,509]},{"name":"JetAttachDatabase2W","features":[508,509]},{"name":"JetAttachDatabaseA","features":[508,509]},{"name":"JetAttachDatabaseW","features":[508,509]},{"name":"JetBackupA","features":[508,509]},{"name":"JetBackupInstanceA","features":[508,509]},{"name":"JetBackupInstanceW","features":[508,509]},{"name":"JetBackupW","features":[508,509]},{"name":"JetBeginExternalBackup","features":[508]},{"name":"JetBeginExternalBackupInstance","features":[508,509]},{"name":"JetBeginSessionA","features":[508,509]},{"name":"JetBeginSessionW","features":[508,509]},{"name":"JetBeginTransaction","features":[508,509]},{"name":"JetBeginTransaction2","features":[508,509]},{"name":"JetBeginTransaction3","features":[508,509]},{"name":"JetCloseDatabase","features":[508,509]},{"name":"JetCloseFile","features":[508,509]},{"name":"JetCloseFileInstance","features":[508,509]},{"name":"JetCloseTable","features":[508,509]},{"name":"JetCommitTransaction","features":[508,509]},{"name":"JetCommitTransaction2","features":[508,509]},{"name":"JetCompactA","features":[508,509]},{"name":"JetCompactW","features":[508,509]},{"name":"JetComputeStats","features":[508,509]},{"name":"JetConfigureProcessForCrashDump","features":[508]},{"name":"JetCreateDatabase2A","features":[508,509]},{"name":"JetCreateDatabase2W","features":[508,509]},{"name":"JetCreateDatabaseA","features":[508,509]},{"name":"JetCreateDatabaseW","features":[508,509]},{"name":"JetCreateIndex2A","features":[508,509]},{"name":"JetCreateIndex2W","features":[508,509]},{"name":"JetCreateIndex3A","features":[508,509]},{"name":"JetCreateIndex3W","features":[508,509]},{"name":"JetCreateIndex4A","features":[508,509]},{"name":"JetCreateIndex4W","features":[508,509]},{"name":"JetCreateIndexA","features":[508,509]},{"name":"JetCreateIndexW","features":[508,509]},{"name":"JetCreateInstance2A","features":[508,509]},{"name":"JetCreateInstance2W","features":[508,509]},{"name":"JetCreateInstanceA","features":[508,509]},{"name":"JetCreateInstanceW","features":[508,509]},{"name":"JetCreateTableA","features":[508,509]},{"name":"JetCreateTableColumnIndex2A","features":[508,509]},{"name":"JetCreateTableColumnIndex2W","features":[508,509]},{"name":"JetCreateTableColumnIndex3A","features":[508,509]},{"name":"JetCreateTableColumnIndex3W","features":[508,509]},{"name":"JetCreateTableColumnIndex4A","features":[508,509]},{"name":"JetCreateTableColumnIndex4W","features":[508,509]},{"name":"JetCreateTableColumnIndexA","features":[508,509]},{"name":"JetCreateTableColumnIndexW","features":[508,509]},{"name":"JetCreateTableW","features":[508,509]},{"name":"JetDefragment2A","features":[508,509]},{"name":"JetDefragment2W","features":[508,509]},{"name":"JetDefragment3A","features":[508,509]},{"name":"JetDefragment3W","features":[508,509]},{"name":"JetDefragmentA","features":[508,509]},{"name":"JetDefragmentW","features":[508,509]},{"name":"JetDelete","features":[508,509]},{"name":"JetDeleteColumn2A","features":[508,509]},{"name":"JetDeleteColumn2W","features":[508,509]},{"name":"JetDeleteColumnA","features":[508,509]},{"name":"JetDeleteColumnW","features":[508,509]},{"name":"JetDeleteIndexA","features":[508,509]},{"name":"JetDeleteIndexW","features":[508,509]},{"name":"JetDeleteTableA","features":[508,509]},{"name":"JetDeleteTableW","features":[508,509]},{"name":"JetDetachDatabase2A","features":[508,509]},{"name":"JetDetachDatabase2W","features":[508,509]},{"name":"JetDetachDatabaseA","features":[508,509]},{"name":"JetDetachDatabaseW","features":[508,509]},{"name":"JetDupCursor","features":[508,509]},{"name":"JetDupSession","features":[508,509]},{"name":"JetEnableMultiInstanceA","features":[508,509]},{"name":"JetEnableMultiInstanceW","features":[508,509]},{"name":"JetEndExternalBackup","features":[508]},{"name":"JetEndExternalBackupInstance","features":[508,509]},{"name":"JetEndExternalBackupInstance2","features":[508,509]},{"name":"JetEndSession","features":[508,509]},{"name":"JetEnumerateColumns","features":[508,509]},{"name":"JetEscrowUpdate","features":[508,509]},{"name":"JetExternalRestore2A","features":[508,509]},{"name":"JetExternalRestore2W","features":[508,509]},{"name":"JetExternalRestoreA","features":[508,509]},{"name":"JetExternalRestoreW","features":[508,509]},{"name":"JetFreeBuffer","features":[508]},{"name":"JetGetAttachInfoA","features":[508]},{"name":"JetGetAttachInfoInstanceA","features":[508,509]},{"name":"JetGetAttachInfoInstanceW","features":[508,509]},{"name":"JetGetAttachInfoW","features":[508]},{"name":"JetGetBookmark","features":[508,509]},{"name":"JetGetColumnInfoA","features":[508,509]},{"name":"JetGetColumnInfoW","features":[508,509]},{"name":"JetGetCurrentIndexA","features":[508,509]},{"name":"JetGetCurrentIndexW","features":[508,509]},{"name":"JetGetCursorInfo","features":[508,509]},{"name":"JetGetDatabaseFileInfoA","features":[508]},{"name":"JetGetDatabaseFileInfoW","features":[508]},{"name":"JetGetDatabaseInfoA","features":[508,509]},{"name":"JetGetDatabaseInfoW","features":[508,509]},{"name":"JetGetErrorInfoW","features":[508]},{"name":"JetGetIndexInfoA","features":[508,509]},{"name":"JetGetIndexInfoW","features":[508,509]},{"name":"JetGetInstanceInfoA","features":[508,509]},{"name":"JetGetInstanceInfoW","features":[508,509]},{"name":"JetGetInstanceMiscInfo","features":[508,509]},{"name":"JetGetLS","features":[508,509]},{"name":"JetGetLock","features":[508,509]},{"name":"JetGetLogInfoA","features":[508]},{"name":"JetGetLogInfoInstance2A","features":[508,509]},{"name":"JetGetLogInfoInstance2W","features":[508,509]},{"name":"JetGetLogInfoInstanceA","features":[508,509]},{"name":"JetGetLogInfoInstanceW","features":[508,509]},{"name":"JetGetLogInfoW","features":[508]},{"name":"JetGetObjectInfoA","features":[508,509]},{"name":"JetGetObjectInfoW","features":[508,509]},{"name":"JetGetRecordPosition","features":[508,509]},{"name":"JetGetRecordSize","features":[508,509]},{"name":"JetGetRecordSize2","features":[508,509]},{"name":"JetGetSecondaryIndexBookmark","features":[508,509]},{"name":"JetGetSessionParameter","features":[508,509]},{"name":"JetGetSystemParameterA","features":[508,509]},{"name":"JetGetSystemParameterW","features":[508,509]},{"name":"JetGetTableColumnInfoA","features":[508,509]},{"name":"JetGetTableColumnInfoW","features":[508,509]},{"name":"JetGetTableIndexInfoA","features":[508,509]},{"name":"JetGetTableIndexInfoW","features":[508,509]},{"name":"JetGetTableInfoA","features":[508,509]},{"name":"JetGetTableInfoW","features":[508,509]},{"name":"JetGetThreadStats","features":[508]},{"name":"JetGetTruncateLogInfoInstanceA","features":[508,509]},{"name":"JetGetTruncateLogInfoInstanceW","features":[508,509]},{"name":"JetGetVersion","features":[508,509]},{"name":"JetGotoBookmark","features":[508,509]},{"name":"JetGotoPosition","features":[508,509]},{"name":"JetGotoSecondaryIndexBookmark","features":[508,509]},{"name":"JetGrowDatabase","features":[508,509]},{"name":"JetIdle","features":[508,509]},{"name":"JetIndexRecordCount","features":[508,509]},{"name":"JetInit","features":[508,509]},{"name":"JetInit2","features":[508,509]},{"name":"JetInit3A","features":[508,509]},{"name":"JetInit3W","features":[508,509]},{"name":"JetIntersectIndexes","features":[508,509]},{"name":"JetMakeKey","features":[508,509]},{"name":"JetMove","features":[508,509]},{"name":"JetOSSnapshotAbort","features":[508]},{"name":"JetOSSnapshotEnd","features":[508]},{"name":"JetOSSnapshotFreezeA","features":[508,509]},{"name":"JetOSSnapshotFreezeW","features":[508,509]},{"name":"JetOSSnapshotGetFreezeInfoA","features":[508,509]},{"name":"JetOSSnapshotGetFreezeInfoW","features":[508,509]},{"name":"JetOSSnapshotPrepare","features":[508]},{"name":"JetOSSnapshotPrepareInstance","features":[508,509]},{"name":"JetOSSnapshotThaw","features":[508]},{"name":"JetOSSnapshotTruncateLog","features":[508]},{"name":"JetOSSnapshotTruncateLogInstance","features":[508,509]},{"name":"JetOpenDatabaseA","features":[508,509]},{"name":"JetOpenDatabaseW","features":[508,509]},{"name":"JetOpenFileA","features":[508,509]},{"name":"JetOpenFileInstanceA","features":[508,509]},{"name":"JetOpenFileInstanceW","features":[508,509]},{"name":"JetOpenFileW","features":[508,509]},{"name":"JetOpenTableA","features":[508,509]},{"name":"JetOpenTableW","features":[508,509]},{"name":"JetOpenTempTable","features":[508,509]},{"name":"JetOpenTempTable2","features":[508,509]},{"name":"JetOpenTempTable3","features":[508,509]},{"name":"JetOpenTemporaryTable","features":[508,509]},{"name":"JetOpenTemporaryTable2","features":[508,509]},{"name":"JetPrepareUpdate","features":[508,509]},{"name":"JetPrereadIndexRanges","features":[508,509]},{"name":"JetPrereadKeys","features":[508,509]},{"name":"JetReadFile","features":[508,509]},{"name":"JetReadFileInstance","features":[508,509]},{"name":"JetRegisterCallback","features":[508,509]},{"name":"JetRenameColumnA","features":[508,509]},{"name":"JetRenameColumnW","features":[508,509]},{"name":"JetRenameTableA","features":[508,509]},{"name":"JetRenameTableW","features":[508,509]},{"name":"JetResetSessionContext","features":[508,509]},{"name":"JetResetTableSequential","features":[508,509]},{"name":"JetResizeDatabase","features":[508,509]},{"name":"JetRestore2A","features":[508,509]},{"name":"JetRestore2W","features":[508,509]},{"name":"JetRestoreA","features":[508,509]},{"name":"JetRestoreInstanceA","features":[508,509]},{"name":"JetRestoreInstanceW","features":[508,509]},{"name":"JetRestoreW","features":[508,509]},{"name":"JetRetrieveColumn","features":[508,509]},{"name":"JetRetrieveColumns","features":[508,509]},{"name":"JetRetrieveKey","features":[508,509]},{"name":"JetRollback","features":[508,509]},{"name":"JetSeek","features":[508,509]},{"name":"JetSetColumn","features":[508,509]},{"name":"JetSetColumnDefaultValueA","features":[508,509]},{"name":"JetSetColumnDefaultValueW","features":[508,509]},{"name":"JetSetColumns","features":[508,509]},{"name":"JetSetCurrentIndex2A","features":[508,509]},{"name":"JetSetCurrentIndex2W","features":[508,509]},{"name":"JetSetCurrentIndex3A","features":[508,509]},{"name":"JetSetCurrentIndex3W","features":[508,509]},{"name":"JetSetCurrentIndex4A","features":[508,509]},{"name":"JetSetCurrentIndex4W","features":[508,509]},{"name":"JetSetCurrentIndexA","features":[508,509]},{"name":"JetSetCurrentIndexW","features":[508,509]},{"name":"JetSetCursorFilter","features":[508,509]},{"name":"JetSetDatabaseSizeA","features":[508,509]},{"name":"JetSetDatabaseSizeW","features":[508,509]},{"name":"JetSetIndexRange","features":[508,509]},{"name":"JetSetLS","features":[508,509]},{"name":"JetSetSessionContext","features":[508,509]},{"name":"JetSetSessionParameter","features":[508,509]},{"name":"JetSetSystemParameterA","features":[508,509]},{"name":"JetSetSystemParameterW","features":[508,509]},{"name":"JetSetTableSequential","features":[508,509]},{"name":"JetStopBackup","features":[508]},{"name":"JetStopBackupInstance","features":[508,509]},{"name":"JetStopService","features":[508]},{"name":"JetStopServiceInstance","features":[508,509]},{"name":"JetStopServiceInstance2","features":[508,509]},{"name":"JetTerm","features":[508,509]},{"name":"JetTerm2","features":[508,509]},{"name":"JetTruncateLog","features":[508]},{"name":"JetTruncateLogInstance","features":[508,509]},{"name":"JetUnregisterCallback","features":[508,509]},{"name":"JetUpdate","features":[508,509]},{"name":"JetUpdate2","features":[508,509]},{"name":"cColumnInfoCols","features":[508]},{"name":"cIndexInfoCols","features":[508]},{"name":"cObjectInfoCols","features":[508]},{"name":"wrnBTNotVisibleAccumulated","features":[508]},{"name":"wrnBTNotVisibleRejected","features":[508]}],"516":[{"name":"ACTIVE_LATENCY_CONFIGURATION","features":[510]},{"name":"BUCKET_COUNTER","features":[510]},{"name":"DEBUG_BIT_FIELD","features":[510]},{"name":"DSSD_POWER_STATE_DESCRIPTOR","features":[510]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY","features":[510]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY_VERSION_1","features":[510]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGE","features":[510]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGEGuid","features":[510]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIES","features":[510]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIESGuid","features":[510]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERY","features":[510]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERYGuid","features":[510]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY","features":[510]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORYGuid","features":[510]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITOR","features":[510]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITORGuid","features":[510]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATION","features":[510]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATIONGuid","features":[510]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATION","features":[510]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATIONGuid","features":[510]},{"name":"GUID_OCP_DEVICE_TCG_HISTORY","features":[510]},{"name":"GUID_OCP_DEVICE_TCG_HISTORYGuid","features":[510]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS","features":[510]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTSGuid","features":[510]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERY","features":[510]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERYGuid","features":[510]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTES","features":[510]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTESGuid","features":[510]},{"name":"LATENCY_MONITOR_FEATURE_STATUS","features":[510]},{"name":"LATENCY_STAMP","features":[510]},{"name":"LATENCY_STAMP_UNITS","features":[510]},{"name":"MEASURED_LATENCY","features":[510]},{"name":"NVME_ACCESS_FREQUENCIES","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_FR_READ","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_INFR_READ","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_FR_READ","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_INFR_READ","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_NONE","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_ONE_TIME_READ","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_SPECULATIVE_READ","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_TYPICAL","features":[510]},{"name":"NVME_ACCESS_FREQUENCY_WILL_BE_OVERWRITTEN","features":[510]},{"name":"NVME_ACCESS_LATENCIES","features":[510]},{"name":"NVME_ACCESS_LATENCY_IDLE","features":[510]},{"name":"NVME_ACCESS_LATENCY_LOW","features":[510]},{"name":"NVME_ACCESS_LATENCY_NONE","features":[510]},{"name":"NVME_ACCESS_LATENCY_NORMAL","features":[510]},{"name":"NVME_ACTIVE_NAMESPACE_ID_LIST","features":[510]},{"name":"NVME_ADMIN_COMMANDS","features":[510]},{"name":"NVME_ADMIN_COMMAND_ABORT","features":[510]},{"name":"NVME_ADMIN_COMMAND_ASYNC_EVENT_REQUEST","features":[510]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_CQ","features":[510]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_SQ","features":[510]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_CQ","features":[510]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_SQ","features":[510]},{"name":"NVME_ADMIN_COMMAND_DEVICE_SELF_TEST","features":[510]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_RECEIVE","features":[510]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_SEND","features":[510]},{"name":"NVME_ADMIN_COMMAND_DOORBELL_BUFFER_CONFIG","features":[510]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_ACTIVATE","features":[510]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_COMMIT","features":[510]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_IMAGE_DOWNLOAD","features":[510]},{"name":"NVME_ADMIN_COMMAND_FORMAT_NVM","features":[510]},{"name":"NVME_ADMIN_COMMAND_GET_FEATURES","features":[510]},{"name":"NVME_ADMIN_COMMAND_GET_LBA_STATUS","features":[510]},{"name":"NVME_ADMIN_COMMAND_GET_LOG_PAGE","features":[510]},{"name":"NVME_ADMIN_COMMAND_IDENTIFY","features":[510]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_ATTACHMENT","features":[510]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_MANAGEMENT","features":[510]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_RECEIVE","features":[510]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_SEND","features":[510]},{"name":"NVME_ADMIN_COMMAND_SANITIZE","features":[510]},{"name":"NVME_ADMIN_COMMAND_SECURITY_RECEIVE","features":[510]},{"name":"NVME_ADMIN_COMMAND_SECURITY_SEND","features":[510]},{"name":"NVME_ADMIN_COMMAND_SET_FEATURES","features":[510]},{"name":"NVME_ADMIN_COMMAND_VIRTUALIZATION_MANAGEMENT","features":[510]},{"name":"NVME_ADMIN_COMPLETION_QUEUE_BASE_ADDRESS","features":[510]},{"name":"NVME_ADMIN_QUEUE_ATTRIBUTES","features":[510]},{"name":"NVME_ADMIN_SUBMISSION_QUEUE_BASE_ADDRESS","features":[510]},{"name":"NVME_AMS_OPTION","features":[510]},{"name":"NVME_AMS_ROUND_ROBIN","features":[510]},{"name":"NVME_AMS_WEIGHTED_ROUND_ROBIN_URGENT","features":[510]},{"name":"NVME_ASYNC_ERROR_DIAG_FAILURE","features":[510]},{"name":"NVME_ASYNC_ERROR_FIRMWARE_IMAGE_LOAD_ERROR","features":[510]},{"name":"NVME_ASYNC_ERROR_INVALID_DOORBELL_WRITE_VALUE","features":[510]},{"name":"NVME_ASYNC_ERROR_INVALID_SUBMISSION_QUEUE","features":[510]},{"name":"NVME_ASYNC_ERROR_PERSISTENT_INTERNAL_DEVICE_ERROR","features":[510]},{"name":"NVME_ASYNC_ERROR_TRANSIENT_INTERNAL_DEVICE_ERROR","features":[510]},{"name":"NVME_ASYNC_EVENT_ERROR_STATUS_CODES","features":[510]},{"name":"NVME_ASYNC_EVENT_HEALTH_STATUS_CODES","features":[510]},{"name":"NVME_ASYNC_EVENT_IO_COMMAND_SET_STATUS_CODES","features":[510]},{"name":"NVME_ASYNC_EVENT_NOTICE_CODES","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPES","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_ERROR_STATUS","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_HEALTH_STATUS","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_IO_COMMAND_SET_STATUS","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_NOTICE","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_CODES","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_DEVICE_PANIC","features":[510]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_RESERVED","features":[510]},{"name":"NVME_ASYNC_HEALTH_NVM_SUBSYSTEM_RELIABILITY","features":[510]},{"name":"NVME_ASYNC_HEALTH_SPARE_BELOW_THRESHOLD","features":[510]},{"name":"NVME_ASYNC_HEALTH_TEMPERATURE_THRESHOLD","features":[510]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED","features":[510]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED_WITH_UNEXPECTED_DEALLOCATION","features":[510]},{"name":"NVME_ASYNC_IO_CMD_SET_RESERVATION_LOG_PAGE_AVAILABLE","features":[510]},{"name":"NVME_ASYNC_NOTICE_ASYMMETRIC_ACCESS_CHANGE","features":[510]},{"name":"NVME_ASYNC_NOTICE_ENDURANCE_GROUP_EVENT_AGGREGATE_LOG_CHANGE","features":[510]},{"name":"NVME_ASYNC_NOTICE_FIRMWARE_ACTIVATION_STARTING","features":[510]},{"name":"NVME_ASYNC_NOTICE_LBA_STATUS_INFORMATION_ALERT","features":[510]},{"name":"NVME_ASYNC_NOTICE_NAMESPACE_ATTRIBUTE_CHANGED","features":[510]},{"name":"NVME_ASYNC_NOTICE_PREDICTABLE_LATENCY_EVENT_AGGREGATE_LOG_CHANGE","features":[510]},{"name":"NVME_ASYNC_NOTICE_TELEMETRY_LOG_CHANGED","features":[510]},{"name":"NVME_ASYNC_NOTICE_ZONE_DESCRIPTOR_CHANGED","features":[510]},{"name":"NVME_AUTO_POWER_STATE_TRANSITION_ENTRY","features":[510]},{"name":"NVME_CC_SHN_ABRUPT_SHUTDOWN","features":[510]},{"name":"NVME_CC_SHN_NORMAL_SHUTDOWN","features":[510]},{"name":"NVME_CC_SHN_NO_NOTIFICATION","features":[510]},{"name":"NVME_CC_SHN_SHUTDOWN_NOTIFICATIONS","features":[510]},{"name":"NVME_CDW0_FEATURE_ENABLE_IEEE1667_SILO","features":[510]},{"name":"NVME_CDW0_FEATURE_ERROR_INJECTION","features":[510]},{"name":"NVME_CDW0_FEATURE_READONLY_WRITETHROUGH_MODE","features":[510]},{"name":"NVME_CDW0_RESERVATION_PERSISTENCE","features":[510]},{"name":"NVME_CDW10_ABORT","features":[510]},{"name":"NVME_CDW10_CREATE_IO_QUEUE","features":[510]},{"name":"NVME_CDW10_DATASET_MANAGEMENT","features":[510]},{"name":"NVME_CDW10_DIRECTIVE_RECEIVE","features":[510]},{"name":"NVME_CDW10_DIRECTIVE_SEND","features":[510]},{"name":"NVME_CDW10_FIRMWARE_ACTIVATE","features":[510]},{"name":"NVME_CDW10_FIRMWARE_DOWNLOAD","features":[510]},{"name":"NVME_CDW10_FORMAT_NVM","features":[510]},{"name":"NVME_CDW10_GET_FEATURES","features":[510]},{"name":"NVME_CDW10_GET_LOG_PAGE","features":[510]},{"name":"NVME_CDW10_GET_LOG_PAGE_V13","features":[510]},{"name":"NVME_CDW10_IDENTIFY","features":[510]},{"name":"NVME_CDW10_RESERVATION_ACQUIRE","features":[510]},{"name":"NVME_CDW10_RESERVATION_REGISTER","features":[510]},{"name":"NVME_CDW10_RESERVATION_RELEASE","features":[510]},{"name":"NVME_CDW10_RESERVATION_REPORT","features":[510]},{"name":"NVME_CDW10_SANITIZE","features":[510]},{"name":"NVME_CDW10_SECURITY_SEND_RECEIVE","features":[510]},{"name":"NVME_CDW10_SET_FEATURES","features":[510]},{"name":"NVME_CDW10_ZONE_APPEND","features":[510]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_RECEIVE","features":[510]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_SEND","features":[510]},{"name":"NVME_CDW11_CREATE_IO_CQ","features":[510]},{"name":"NVME_CDW11_CREATE_IO_SQ","features":[510]},{"name":"NVME_CDW11_DATASET_MANAGEMENT","features":[510]},{"name":"NVME_CDW11_DIRECTIVE_RECEIVE","features":[510]},{"name":"NVME_CDW11_DIRECTIVE_SEND","features":[510]},{"name":"NVME_CDW11_FEATURES","features":[510]},{"name":"NVME_CDW11_FEATURE_ARBITRATION","features":[510]},{"name":"NVME_CDW11_FEATURE_ASYNC_EVENT_CONFIG","features":[510]},{"name":"NVME_CDW11_FEATURE_AUTO_POWER_STATE_TRANSITION","features":[510]},{"name":"NVME_CDW11_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[510]},{"name":"NVME_CDW11_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[510]},{"name":"NVME_CDW11_FEATURE_ENABLE_IEEE1667_SILO","features":[510]},{"name":"NVME_CDW11_FEATURE_ERROR_RECOVERY","features":[510]},{"name":"NVME_CDW11_FEATURE_GET_HOST_METADATA","features":[510]},{"name":"NVME_CDW11_FEATURE_HOST_IDENTIFIER","features":[510]},{"name":"NVME_CDW11_FEATURE_HOST_MEMORY_BUFFER","features":[510]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_COALESCING","features":[510]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[510]},{"name":"NVME_CDW11_FEATURE_IO_COMMAND_SET_PROFILE","features":[510]},{"name":"NVME_CDW11_FEATURE_LBA_RANGE_TYPE","features":[510]},{"name":"NVME_CDW11_FEATURE_NON_OPERATIONAL_POWER_STATE","features":[510]},{"name":"NVME_CDW11_FEATURE_NUMBER_OF_QUEUES","features":[510]},{"name":"NVME_CDW11_FEATURE_POWER_MANAGEMENT","features":[510]},{"name":"NVME_CDW11_FEATURE_READONLY_WRITETHROUGH_MODE","features":[510]},{"name":"NVME_CDW11_FEATURE_RESERVATION_NOTIFICATION_MASK","features":[510]},{"name":"NVME_CDW11_FEATURE_RESERVATION_PERSISTENCE","features":[510]},{"name":"NVME_CDW11_FEATURE_SET_HOST_METADATA","features":[510]},{"name":"NVME_CDW11_FEATURE_SUPPORTED_CAPABILITY","features":[510]},{"name":"NVME_CDW11_FEATURE_TEMPERATURE_THRESHOLD","features":[510]},{"name":"NVME_CDW11_FEATURE_VOLATILE_WRITE_CACHE","features":[510]},{"name":"NVME_CDW11_FEATURE_WRITE_ATOMICITY_NORMAL","features":[510]},{"name":"NVME_CDW11_FIRMWARE_DOWNLOAD","features":[510]},{"name":"NVME_CDW11_GET_LOG_PAGE","features":[510]},{"name":"NVME_CDW11_IDENTIFY","features":[510]},{"name":"NVME_CDW11_RESERVATION_REPORT","features":[510]},{"name":"NVME_CDW11_SANITIZE","features":[510]},{"name":"NVME_CDW11_SECURITY_RECEIVE","features":[510]},{"name":"NVME_CDW11_SECURITY_SEND","features":[510]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE","features":[510]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[510]},{"name":"NVME_CDW12_DIRECTIVE_SEND","features":[510]},{"name":"NVME_CDW12_DIRECTIVE_SEND_IDENTIFY_ENABLE_DIRECTIVE","features":[510]},{"name":"NVME_CDW12_FEATURES","features":[510]},{"name":"NVME_CDW12_FEATURE_HOST_MEMORY_BUFFER","features":[510]},{"name":"NVME_CDW12_GET_LOG_PAGE","features":[510]},{"name":"NVME_CDW12_READ_WRITE","features":[510]},{"name":"NVME_CDW12_ZONE_APPEND","features":[510]},{"name":"NVME_CDW13_FEATURES","features":[510]},{"name":"NVME_CDW13_FEATURE_HOST_MEMORY_BUFFER","features":[510]},{"name":"NVME_CDW13_GET_LOG_PAGE","features":[510]},{"name":"NVME_CDW13_READ_WRITE","features":[510]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_RECEIVE","features":[510]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_SEND","features":[510]},{"name":"NVME_CDW14_FEATURES","features":[510]},{"name":"NVME_CDW14_FEATURE_HOST_MEMORY_BUFFER","features":[510]},{"name":"NVME_CDW14_GET_LOG_PAGE","features":[510]},{"name":"NVME_CDW15_FEATURES","features":[510]},{"name":"NVME_CDW15_FEATURE_HOST_MEMORY_BUFFER","features":[510]},{"name":"NVME_CDW15_READ_WRITE","features":[510]},{"name":"NVME_CDW15_ZONE_APPEND","features":[510]},{"name":"NVME_CHANGED_NAMESPACE_LIST_LOG","features":[510]},{"name":"NVME_CHANGED_ZONE_LIST_LOG","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS_16MB","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS_1MB","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS_256MB","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS_4GB","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS_4KB","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS_64GB","features":[510]},{"name":"NVME_CMBSZ_SIZE_UNITS_64KB","features":[510]},{"name":"NVME_COMMAND","features":[510]},{"name":"NVME_COMMAND_DWORD0","features":[510]},{"name":"NVME_COMMAND_EFFECTS_DATA","features":[510]},{"name":"NVME_COMMAND_EFFECTS_LOG","features":[510]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMITS","features":[510]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_NONE","features":[510]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_CONTROLLER","features":[510]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_NAMESPACE","features":[510]},{"name":"NVME_COMMAND_SET_IDENTIFIERS","features":[510]},{"name":"NVME_COMMAND_SET_KEY_VALUE","features":[510]},{"name":"NVME_COMMAND_SET_NVM","features":[510]},{"name":"NVME_COMMAND_SET_ZONED_NAMESPACE","features":[510]},{"name":"NVME_COMMAND_STATUS","features":[510]},{"name":"NVME_COMPLETION_DW0_ASYNC_EVENT_REQUEST","features":[510]},{"name":"NVME_COMPLETION_DW0_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[510]},{"name":"NVME_COMPLETION_ENTRY","features":[510]},{"name":"NVME_COMPLETION_QUEUE_HEAD_DOORBELL","features":[510]},{"name":"NVME_CONTEXT_ATTRIBUTES","features":[510]},{"name":"NVME_CONTROLLER_CAPABILITIES","features":[510]},{"name":"NVME_CONTROLLER_CONFIGURATION","features":[510]},{"name":"NVME_CONTROLLER_LIST","features":[510]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_LOCATION","features":[510]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_SIZE","features":[510]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_NAME","features":[510]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_VERSION","features":[510]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_NAME","features":[510]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_VERSION","features":[510]},{"name":"NVME_CONTROLLER_METADATA_ELEMENT_TYPES","features":[510]},{"name":"NVME_CONTROLLER_METADATA_FIRMWARE_VERSION","features":[510]},{"name":"NVME_CONTROLLER_METADATA_HOST_DETERMINED_FAILURE_RECORD","features":[510]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_CONTROLLER_NAME","features":[510]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_FILENAME","features":[510]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_NAME","features":[510]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_VERSION","features":[510]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_NAME_AND_BUILD","features":[510]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_CONTROLLER_NAME","features":[510]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_NAME","features":[510]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_VERSION","features":[510]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PROCESSOR_MODEL","features":[510]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PRODUCT_NAME","features":[510]},{"name":"NVME_CONTROLLER_REGISTERS","features":[510]},{"name":"NVME_CONTROLLER_STATUS","features":[510]},{"name":"NVME_CSS_ADMIN_COMMAND_SET_ONLY","features":[510]},{"name":"NVME_CSS_ALL_SUPPORTED_IO_COMMAND_SET","features":[510]},{"name":"NVME_CSS_COMMAND_SETS","features":[510]},{"name":"NVME_CSS_NVM_COMMAND_SET","features":[510]},{"name":"NVME_CSTS_SHST_NO_SHUTDOWN","features":[510]},{"name":"NVME_CSTS_SHST_SHUTDOWN_COMPLETED","features":[510]},{"name":"NVME_CSTS_SHST_SHUTDOWN_IN_PROCESS","features":[510]},{"name":"NVME_CSTS_SHST_SHUTDOWN_STATUS","features":[510]},{"name":"NVME_DEVICE_SELF_TEST_LOG","features":[510]},{"name":"NVME_DEVICE_SELF_TEST_RESULT_DATA","features":[510]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS","features":[510]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS_DESCRIPTOR","features":[510]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATIONS","features":[510]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATION_RETURN_PARAMETERS","features":[510]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATIONS","features":[510]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_ALLOCATE_RESOURCES","features":[510]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_GET_STATUS","features":[510]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_RETURN_PARAMETERS","features":[510]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATIONS","features":[510]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATION_ENABLE_DIRECTIVE","features":[510]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATIONS","features":[510]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_IDENTIFIER","features":[510]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_RESOURCES","features":[510]},{"name":"NVME_DIRECTIVE_STREAMS_GET_STATUS_DATA","features":[510]},{"name":"NVME_DIRECTIVE_STREAMS_RETURN_PARAMETERS","features":[510]},{"name":"NVME_DIRECTIVE_TYPES","features":[510]},{"name":"NVME_DIRECTIVE_TYPE_IDENTIFY","features":[510]},{"name":"NVME_DIRECTIVE_TYPE_STREAMS","features":[510]},{"name":"NVME_ENDURANCE_GROUP_LOG","features":[510]},{"name":"NVME_ERROR_INFO_LOG","features":[510]},{"name":"NVME_ERROR_INJECTION_ENTRY","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPES","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_CPU_CONTROLLER_HANG","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_CRITICAL","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_NONCRITICAL","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_HW_MALFUNCTION","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_LOGICAL_FW_ERROR","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_CORRUPTION","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_HANG","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_PLP_DEFECT","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_SRAM_CORRUPTION","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_MAX","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED0","features":[510]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED1","features":[510]},{"name":"NVME_EXTENDED_HOST_IDENTIFIER_SIZE","features":[510]},{"name":"NVME_EXTENDED_REPORT_ZONE_INFO","features":[510]},{"name":"NVME_FEATURES","features":[510]},{"name":"NVME_FEATURE_ARBITRATION","features":[510]},{"name":"NVME_FEATURE_ASYNC_EVENT_CONFIG","features":[510]},{"name":"NVME_FEATURE_AUTONOMOUS_POWER_STATE_TRANSITION","features":[510]},{"name":"NVME_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[510]},{"name":"NVME_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[510]},{"name":"NVME_FEATURE_CONTROLLER_METADATA","features":[510]},{"name":"NVME_FEATURE_ENABLE_IEEE1667_SILO","features":[510]},{"name":"NVME_FEATURE_ENDURANCE_GROUP_EVENT_CONFIG","features":[510]},{"name":"NVME_FEATURE_ENHANCED_CONTROLLER_METADATA","features":[510]},{"name":"NVME_FEATURE_ERROR_INJECTION","features":[510]},{"name":"NVME_FEATURE_ERROR_RECOVERY","features":[510]},{"name":"NVME_FEATURE_HOST_BEHAVIOR_SUPPORT","features":[510]},{"name":"NVME_FEATURE_HOST_CONTROLLED_THERMAL_MANAGEMENT","features":[510]},{"name":"NVME_FEATURE_HOST_IDENTIFIER_DATA","features":[510]},{"name":"NVME_FEATURE_HOST_MEMORY_BUFFER","features":[510]},{"name":"NVME_FEATURE_HOST_METADATA_DATA","features":[510]},{"name":"NVME_FEATURE_INTERRUPT_COALESCING","features":[510]},{"name":"NVME_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[510]},{"name":"NVME_FEATURE_IO_COMMAND_SET_PROFILE","features":[510]},{"name":"NVME_FEATURE_KEEP_ALIVE","features":[510]},{"name":"NVME_FEATURE_LBA_RANGE_TYPE","features":[510]},{"name":"NVME_FEATURE_LBA_STATUS_INFORMATION_REPORT_INTERVAL","features":[510]},{"name":"NVME_FEATURE_NAMESPACE_METADATA","features":[510]},{"name":"NVME_FEATURE_NONOPERATIONAL_POWER_STATE","features":[510]},{"name":"NVME_FEATURE_NUMBER_OF_QUEUES","features":[510]},{"name":"NVME_FEATURE_NVM_HOST_IDENTIFIER","features":[510]},{"name":"NVME_FEATURE_NVM_NAMESPACE_WRITE_PROTECTION_CONFIG","features":[510]},{"name":"NVME_FEATURE_NVM_RESERVATION_NOTIFICATION_MASK","features":[510]},{"name":"NVME_FEATURE_NVM_RESERVATION_PERSISTANCE","features":[510]},{"name":"NVME_FEATURE_NVM_SOFTWARE_PROGRESS_MARKER","features":[510]},{"name":"NVME_FEATURE_PLP_HEALTH_MONITOR","features":[510]},{"name":"NVME_FEATURE_POWER_MANAGEMENT","features":[510]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_CONFIG","features":[510]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_WINDOW","features":[510]},{"name":"NVME_FEATURE_READONLY_WRITETHROUGH_MODE","features":[510]},{"name":"NVME_FEATURE_READ_RECOVERY_LEVEL_CONFIG","features":[510]},{"name":"NVME_FEATURE_SANITIZE_CONFIG","features":[510]},{"name":"NVME_FEATURE_TEMPERATURE_THRESHOLD","features":[510]},{"name":"NVME_FEATURE_TIMESTAMP","features":[510]},{"name":"NVME_FEATURE_VALUE_CODES","features":[510]},{"name":"NVME_FEATURE_VALUE_CURRENT","features":[510]},{"name":"NVME_FEATURE_VALUE_DEFAULT","features":[510]},{"name":"NVME_FEATURE_VALUE_SAVED","features":[510]},{"name":"NVME_FEATURE_VALUE_SUPPORTED_CAPABILITIES","features":[510]},{"name":"NVME_FEATURE_VOLATILE_WRITE_CACHE","features":[510]},{"name":"NVME_FEATURE_WRITE_ATOMICITY","features":[510]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTIONS","features":[510]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_ACTIVATE","features":[510]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT","features":[510]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE","features":[510]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE_IMMEDIATE","features":[510]},{"name":"NVME_FIRMWARE_SLOT_INFO_LOG","features":[510]},{"name":"NVME_FUSED_OPERATION_CODES","features":[510]},{"name":"NVME_FUSED_OPERATION_FIRST_CMD","features":[510]},{"name":"NVME_FUSED_OPERATION_NORMAL","features":[510]},{"name":"NVME_FUSED_OPERATION_SECOND_CMD","features":[510]},{"name":"NVME_HEALTH_INFO_LOG","features":[510]},{"name":"NVME_HOST_IDENTIFIER_SIZE","features":[510]},{"name":"NVME_HOST_MEMORY_BUFFER_DESCRIPTOR_ENTRY","features":[510]},{"name":"NVME_HOST_METADATA_ADD_ENTRY_MULTIPLE","features":[510]},{"name":"NVME_HOST_METADATA_ADD_REPLACE_ENTRY","features":[510]},{"name":"NVME_HOST_METADATA_DELETE_ENTRY_MULTIPLE","features":[510]},{"name":"NVME_HOST_METADATA_ELEMENT_ACTIONS","features":[510]},{"name":"NVME_HOST_METADATA_ELEMENT_DESCRIPTOR","features":[510]},{"name":"NVME_IDENTIFIER_TYPE","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_CSI","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_CSI_LENGTH","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_EUI64","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_EUI64_LENGTH","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_LENGTH","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_NGUID","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_NGUID_LENGTH","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_UUID","features":[510]},{"name":"NVME_IDENTIFIER_TYPE_UUID_LENGTH","features":[510]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACES","features":[510]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACE_LIST_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE","features":[510]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_LIST","features":[510]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMSPACE_LIST_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_CNS_CODES","features":[510]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER","features":[510]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NSID","features":[510]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NVM_SUBSYSTEM","features":[510]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE","features":[510]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE_SIZE","features":[510]},{"name":"NVME_IDENTIFY_CNS_DOMAIN_LIST","features":[510]},{"name":"NVME_IDENTIFY_CNS_ENDURANCE_GROUP_LIST","features":[510]},{"name":"NVME_IDENTIFY_CNS_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_CNS_NAMESPACE_GRANULARITY_LIST","features":[510]},{"name":"NVME_IDENTIFY_CNS_NVM_SET","features":[510]},{"name":"NVME_IDENTIFY_CNS_PRIMARY_CONTROLLER_CAPABILITIES","features":[510]},{"name":"NVME_IDENTIFY_CNS_SECONDARY_CONTROLLER_LIST","features":[510]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE","features":[510]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_CNS_UUID_LIST","features":[510]},{"name":"NVME_IDENTIFY_CONTROLLER_DATA","features":[510]},{"name":"NVME_IDENTIFY_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_NAMESPACE_DATA","features":[510]},{"name":"NVME_IDENTIFY_NAMESPACE_DESCRIPTOR","features":[510]},{"name":"NVME_IDENTIFY_NVM_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[510]},{"name":"NVME_IDENTIFY_ZNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[510]},{"name":"NVME_IO_COMMAND_SET_COMBINATION_REJECTED","features":[510]},{"name":"NVME_IO_COMMAND_SET_INVALID","features":[510]},{"name":"NVME_IO_COMMAND_SET_NOT_ENABLED","features":[510]},{"name":"NVME_IO_COMMAND_SET_NOT_SUPPORTED","features":[510]},{"name":"NVME_LBA_FORMAT","features":[510]},{"name":"NVME_LBA_RANGE","features":[510]},{"name":"NVME_LBA_RANGET_TYPE_ENTRY","features":[510]},{"name":"NVME_LBA_RANGE_TYPES","features":[510]},{"name":"NVME_LBA_RANGE_TYPE_CACHE","features":[510]},{"name":"NVME_LBA_RANGE_TYPE_FILESYSTEM","features":[510]},{"name":"NVME_LBA_RANGE_TYPE_PAGE_SWAP_FILE","features":[510]},{"name":"NVME_LBA_RANGE_TYPE_RAID","features":[510]},{"name":"NVME_LBA_RANGE_TYPE_RESERVED","features":[510]},{"name":"NVME_LBA_ZONE_FORMAT","features":[510]},{"name":"NVME_LOG_PAGES","features":[510]},{"name":"NVME_LOG_PAGE_ASYMMETRIC_NAMESPACE_ACCESS","features":[510]},{"name":"NVME_LOG_PAGE_CHANGED_NAMESPACE_LIST","features":[510]},{"name":"NVME_LOG_PAGE_CHANGED_ZONE_LIST","features":[510]},{"name":"NVME_LOG_PAGE_COMMAND_EFFECTS","features":[510]},{"name":"NVME_LOG_PAGE_DEVICE_SELF_TEST","features":[510]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_EVENT_AGGREGATE","features":[510]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_INFORMATION","features":[510]},{"name":"NVME_LOG_PAGE_ERROR_INFO","features":[510]},{"name":"NVME_LOG_PAGE_FIRMWARE_SLOT_INFO","features":[510]},{"name":"NVME_LOG_PAGE_HEALTH_INFO","features":[510]},{"name":"NVME_LOG_PAGE_LBA_STATUS_INFORMATION","features":[510]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_CAPABILITIES","features":[510]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_ERROR_RECOVERY","features":[510]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_SMART_INFORMATION","features":[510]},{"name":"NVME_LOG_PAGE_OCP_FIRMWARE_ACTIVATION_HISTORY","features":[510]},{"name":"NVME_LOG_PAGE_OCP_LATENCY_MONITOR","features":[510]},{"name":"NVME_LOG_PAGE_OCP_TCG_CONFIGURATION","features":[510]},{"name":"NVME_LOG_PAGE_OCP_TCG_HISTORY","features":[510]},{"name":"NVME_LOG_PAGE_OCP_UNSUPPORTED_REQUIREMENTS","features":[510]},{"name":"NVME_LOG_PAGE_PERSISTENT_EVENT_LOG","features":[510]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_EVENT_AGGREGATE","features":[510]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_NVM_SET","features":[510]},{"name":"NVME_LOG_PAGE_RESERVATION_NOTIFICATION","features":[510]},{"name":"NVME_LOG_PAGE_SANITIZE_STATUS","features":[510]},{"name":"NVME_LOG_PAGE_TELEMETRY_CTLR_INITIATED","features":[510]},{"name":"NVME_LOG_PAGE_TELEMETRY_HOST_INITIATED","features":[510]},{"name":"NVME_MAX_HOST_IDENTIFIER_SIZE","features":[510]},{"name":"NVME_MAX_LOG_SIZE","features":[510]},{"name":"NVME_MEDIA_ADDITIONALLY_MODIFIED_AFTER_SANITIZE_NOT_DEFINED","features":[510]},{"name":"NVME_MEDIA_ADDITIONALLY_MOFIDIED_AFTER_SANITIZE","features":[510]},{"name":"NVME_MEDIA_NOT_ADDITIONALLY_MODIFIED_AFTER_SANITIZE","features":[510]},{"name":"NVME_NAMESPACE_ALL","features":[510]},{"name":"NVME_NAMESPACE_METADATA_ELEMENT_TYPES","features":[510]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME","features":[510]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_1","features":[510]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_2","features":[510]},{"name":"NVME_NAMESPACE_METADATA_PREBOOT_NAMESPACE_NAME","features":[510]},{"name":"NVME_NO_DEALLOCATE_MODIFIES_MEDIA_AFTER_SANITIZE","features":[510]},{"name":"NVME_NVM_COMMANDS","features":[510]},{"name":"NVME_NVM_COMMAND_COMPARE","features":[510]},{"name":"NVME_NVM_COMMAND_COPY","features":[510]},{"name":"NVME_NVM_COMMAND_DATASET_MANAGEMENT","features":[510]},{"name":"NVME_NVM_COMMAND_FLUSH","features":[510]},{"name":"NVME_NVM_COMMAND_READ","features":[510]},{"name":"NVME_NVM_COMMAND_RESERVATION_ACQUIRE","features":[510]},{"name":"NVME_NVM_COMMAND_RESERVATION_REGISTER","features":[510]},{"name":"NVME_NVM_COMMAND_RESERVATION_RELEASE","features":[510]},{"name":"NVME_NVM_COMMAND_RESERVATION_REPORT","features":[510]},{"name":"NVME_NVM_COMMAND_VERIFY","features":[510]},{"name":"NVME_NVM_COMMAND_WRITE","features":[510]},{"name":"NVME_NVM_COMMAND_WRITE_UNCORRECTABLE","features":[510]},{"name":"NVME_NVM_COMMAND_WRITE_ZEROES","features":[510]},{"name":"NVME_NVM_COMMAND_ZONE_APPEND","features":[510]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_RECEIVE","features":[510]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_SEND","features":[510]},{"name":"NVME_NVM_QUEUE_PRIORITIES","features":[510]},{"name":"NVME_NVM_QUEUE_PRIORITY_HIGH","features":[510]},{"name":"NVME_NVM_QUEUE_PRIORITY_LOW","features":[510]},{"name":"NVME_NVM_QUEUE_PRIORITY_MEDIUM","features":[510]},{"name":"NVME_NVM_QUEUE_PRIORITY_URGENT","features":[510]},{"name":"NVME_NVM_SUBSYSTEM_RESET","features":[510]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG","features":[510]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG_VERSION_1","features":[510]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_V2","features":[510]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_VERSION_2","features":[510]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG","features":[510]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG_VERSION_1","features":[510]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG","features":[510]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG_VERSION_1","features":[510]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_V3","features":[510]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_VERSION_3","features":[510]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG","features":[510]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG_VERSION_1","features":[510]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG","features":[510]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG_VERSION_1","features":[510]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG","features":[510]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG_VERSION_1","features":[510]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_HEADER","features":[510]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_TYPES","features":[510]},{"name":"NVME_PERSISTENT_EVENT_LOG_HEADER","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_CHANGE_NAMESPACE","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FIRMWARE_COMMIT","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_COMPLETION","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_START","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_MAX","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_NVM_SUBSYSTEM_HARDWARE_ERROR","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_POWER_ON_OR_RESET","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED0","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_BEGIN","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_END","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_BEGIN","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_END","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_COMPLETION","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_START","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SET_FEATURE","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SMART_HEALTH_LOG_SNAPSHOT","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TCG_DEFINED","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TELEMETRY_LOG_CREATED","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_THERMAL_EXCURSION","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TIMESTAMP_CHANGE","features":[510]},{"name":"NVME_PERSISTENT_EVENT_TYPE_VENDOR_SPECIFIC_EVENT","features":[510]},{"name":"NVME_POWER_STATE_DESC","features":[510]},{"name":"NVME_PROTECTION_INFORMATION_NOT_ENABLED","features":[510]},{"name":"NVME_PROTECTION_INFORMATION_TYPE1","features":[510]},{"name":"NVME_PROTECTION_INFORMATION_TYPE2","features":[510]},{"name":"NVME_PROTECTION_INFORMATION_TYPE3","features":[510]},{"name":"NVME_PROTECTION_INFORMATION_TYPES","features":[510]},{"name":"NVME_PRP_ENTRY","features":[510]},{"name":"NVME_REGISTERED_CONTROLLER_DATA","features":[510]},{"name":"NVME_REGISTERED_CONTROLLER_EXTENDED_DATA","features":[510]},{"name":"NVME_REPORT_ZONE_INFO","features":[510]},{"name":"NVME_RESERVATION_ACQUIRE_ACTIONS","features":[510]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_ACQUIRE","features":[510]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT","features":[510]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT_AND_ABORT","features":[510]},{"name":"NVME_RESERVATION_ACQUIRE_DATA_STRUCTURE","features":[510]},{"name":"NVME_RESERVATION_NOTIFICATION_LOG","features":[510]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPES","features":[510]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_EMPTY_LOG_PAGE","features":[510]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_PREEMPTED","features":[510]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_RELEASED","features":[510]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_RESERVATION_PREEPMPTED","features":[510]},{"name":"NVME_RESERVATION_REGISTER_ACTIONS","features":[510]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REGISTER","features":[510]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REPLACE","features":[510]},{"name":"NVME_RESERVATION_REGISTER_ACTION_UNREGISTER","features":[510]},{"name":"NVME_RESERVATION_REGISTER_DATA_STRUCTURE","features":[510]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_CHANGES","features":[510]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_NO_CHANGE","features":[510]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_RESERVED","features":[510]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_0","features":[510]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_1","features":[510]},{"name":"NVME_RESERVATION_RELEASE_ACTIONS","features":[510]},{"name":"NVME_RESERVATION_RELEASE_ACTION_CLEAR","features":[510]},{"name":"NVME_RESERVATION_RELEASE_ACTION_RELEASE","features":[510]},{"name":"NVME_RESERVATION_RELEASE_DATA_STRUCTURE","features":[510]},{"name":"NVME_RESERVATION_REPORT_STATUS_DATA_STRUCTURE","features":[510]},{"name":"NVME_RESERVATION_REPORT_STATUS_EXTENDED_DATA_STRUCTURE","features":[510]},{"name":"NVME_RESERVATION_REPORT_STATUS_HEADER","features":[510]},{"name":"NVME_RESERVATION_TYPES","features":[510]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS","features":[510]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_ALL_REGISTRANTS","features":[510]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_REGISTRANTS_ONLY","features":[510]},{"name":"NVME_RESERVATION_TYPE_RESERVED","features":[510]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE","features":[510]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_ALL_REGISTRANTS","features":[510]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_REGISTRANTS_ONLY","features":[510]},{"name":"NVME_SANITIZE_ACTION","features":[510]},{"name":"NVME_SANITIZE_ACTION_EXIT_FAILURE_MODE","features":[510]},{"name":"NVME_SANITIZE_ACTION_RESERVED","features":[510]},{"name":"NVME_SANITIZE_ACTION_START_BLOCK_ERASE_SANITIZE","features":[510]},{"name":"NVME_SANITIZE_ACTION_START_CRYPTO_ERASE_SANITIZE","features":[510]},{"name":"NVME_SANITIZE_ACTION_START_OVERWRITE_SANITIZE","features":[510]},{"name":"NVME_SANITIZE_OPERATION_FAILED","features":[510]},{"name":"NVME_SANITIZE_OPERATION_IN_PROGRESS","features":[510]},{"name":"NVME_SANITIZE_OPERATION_NONE","features":[510]},{"name":"NVME_SANITIZE_OPERATION_STATUS","features":[510]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED","features":[510]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED_WITH_FORCED_DEALLOCATION","features":[510]},{"name":"NVME_SANITIZE_STATUS","features":[510]},{"name":"NVME_SANITIZE_STATUS_LOG","features":[510]},{"name":"NVME_SCSI_NAME_STRING","features":[510]},{"name":"NVME_SECURE_ERASE_CRYPTOGRAPHIC","features":[510]},{"name":"NVME_SECURE_ERASE_NONE","features":[510]},{"name":"NVME_SECURE_ERASE_SETTINGS","features":[510]},{"name":"NVME_SECURE_ERASE_USER_DATA","features":[510]},{"name":"NVME_SET_ATTRIBUTES_ENTRY","features":[510]},{"name":"NVME_STATE_ZSC","features":[510]},{"name":"NVME_STATE_ZSE","features":[510]},{"name":"NVME_STATE_ZSEO","features":[510]},{"name":"NVME_STATE_ZSF","features":[510]},{"name":"NVME_STATE_ZSIO","features":[510]},{"name":"NVME_STATE_ZSO","features":[510]},{"name":"NVME_STATE_ZSRO","features":[510]},{"name":"NVME_STATUS_ABORT_COMMAND_LIMIT_EXCEEDED","features":[510]},{"name":"NVME_STATUS_ANA_ATTACH_FAILED","features":[510]},{"name":"NVME_STATUS_ASYNC_EVENT_REQUEST_LIMIT_EXCEEDED","features":[510]},{"name":"NVME_STATUS_ATOMIC_WRITE_UNIT_EXCEEDED","features":[510]},{"name":"NVME_STATUS_BOOT_PARTITION_WRITE_PROHIBITED","features":[510]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_FUSED_COMMAND","features":[510]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_MISSING_COMMAND","features":[510]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_POWER_LOSS_NOTIFICATION","features":[510]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_PREEMPT_ABORT","features":[510]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_SQ_DELETION","features":[510]},{"name":"NVME_STATUS_COMMAND_ABORT_REQUESTED","features":[510]},{"name":"NVME_STATUS_COMMAND_ID_CONFLICT","features":[510]},{"name":"NVME_STATUS_COMMAND_SEQUENCE_ERROR","features":[510]},{"name":"NVME_STATUS_COMMAND_SPECIFIC_CODES","features":[510]},{"name":"NVME_STATUS_COMPLETION_QUEUE_INVALID","features":[510]},{"name":"NVME_STATUS_CONTROLLER_LIST_INVALID","features":[510]},{"name":"NVME_STATUS_DATA_SGL_LENGTH_INVALID","features":[510]},{"name":"NVME_STATUS_DATA_TRANSFER_ERROR","features":[510]},{"name":"NVME_STATUS_DEVICE_SELF_TEST_IN_PROGRESS","features":[510]},{"name":"NVME_STATUS_DIRECTIVE_ID_INVALID","features":[510]},{"name":"NVME_STATUS_DIRECTIVE_TYPE_INVALID","features":[510]},{"name":"NVME_STATUS_FEATURE_ID_NOT_SAVEABLE","features":[510]},{"name":"NVME_STATUS_FEATURE_NOT_CHANGEABLE","features":[510]},{"name":"NVME_STATUS_FEATURE_NOT_NAMESPACE_SPECIFIC","features":[510]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_PROHIBITED","features":[510]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_CONVENTIONAL_RESET","features":[510]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_MAX_TIME_VIOLATION","features":[510]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_NVM_SUBSYSTEM_RESET","features":[510]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_RESET","features":[510]},{"name":"NVME_STATUS_FORMAT_IN_PROGRESS","features":[510]},{"name":"NVME_STATUS_GENERIC_COMMAND_CODES","features":[510]},{"name":"NVME_STATUS_HOST_IDENTIFIER_INCONSISTENT_FORMAT","features":[510]},{"name":"NVME_STATUS_INTERNAL_DEVICE_ERROR","features":[510]},{"name":"NVME_STATUS_INVALID_ANA_GROUP_IDENTIFIER","features":[510]},{"name":"NVME_STATUS_INVALID_COMMAND_OPCODE","features":[510]},{"name":"NVME_STATUS_INVALID_CONTROLLER_IDENTIFIER","features":[510]},{"name":"NVME_STATUS_INVALID_FIELD_IN_COMMAND","features":[510]},{"name":"NVME_STATUS_INVALID_FIRMWARE_IMAGE","features":[510]},{"name":"NVME_STATUS_INVALID_FIRMWARE_SLOT","features":[510]},{"name":"NVME_STATUS_INVALID_FORMAT","features":[510]},{"name":"NVME_STATUS_INVALID_INTERRUPT_VECTOR","features":[510]},{"name":"NVME_STATUS_INVALID_LOG_PAGE","features":[510]},{"name":"NVME_STATUS_INVALID_NAMESPACE_OR_FORMAT","features":[510]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_CONTROLLER_RESOURCES","features":[510]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_SGL_DESCR","features":[510]},{"name":"NVME_STATUS_INVALID_QUEUE_DELETION","features":[510]},{"name":"NVME_STATUS_INVALID_QUEUE_IDENTIFIER","features":[510]},{"name":"NVME_STATUS_INVALID_RESOURCE_IDENTIFIER","features":[510]},{"name":"NVME_STATUS_INVALID_SECONDARY_CONTROLLER_STATE","features":[510]},{"name":"NVME_STATUS_INVALID_SGL_LAST_SEGMENT_DESCR","features":[510]},{"name":"NVME_STATUS_INVALID_USE_OF_CONTROLLER_MEMORY_BUFFER","features":[510]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_EXPIRED","features":[510]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_INVALID","features":[510]},{"name":"NVME_STATUS_MAX_QUEUE_SIZE_EXCEEDED","features":[510]},{"name":"NVME_STATUS_MEDIA_ERROR_CODES","features":[510]},{"name":"NVME_STATUS_METADATA_SGL_LENGTH_INVALID","features":[510]},{"name":"NVME_STATUS_NAMESPACE_ALREADY_ATTACHED","features":[510]},{"name":"NVME_STATUS_NAMESPACE_IDENTIFIER_UNAVAILABLE","features":[510]},{"name":"NVME_STATUS_NAMESPACE_INSUFFICIENT_CAPACITY","features":[510]},{"name":"NVME_STATUS_NAMESPACE_IS_PRIVATE","features":[510]},{"name":"NVME_STATUS_NAMESPACE_NOT_ATTACHED","features":[510]},{"name":"NVME_STATUS_NAMESPACE_THIN_PROVISIONING_NOT_SUPPORTED","features":[510]},{"name":"NVME_STATUS_NVM_ACCESS_DENIED","features":[510]},{"name":"NVME_STATUS_NVM_ATTEMPTED_WRITE_TO_READ_ONLY_RANGE","features":[510]},{"name":"NVME_STATUS_NVM_CAPACITY_EXCEEDED","features":[510]},{"name":"NVME_STATUS_NVM_COMMAND_SIZE_LIMIT_EXCEEDED","features":[510]},{"name":"NVME_STATUS_NVM_COMPARE_FAILURE","features":[510]},{"name":"NVME_STATUS_NVM_CONFLICTING_ATTRIBUTES","features":[510]},{"name":"NVME_STATUS_NVM_DEALLOCATED_OR_UNWRITTEN_LOGICAL_BLOCK","features":[510]},{"name":"NVME_STATUS_NVM_END_TO_END_APPLICATION_TAG_CHECK_ERROR","features":[510]},{"name":"NVME_STATUS_NVM_END_TO_END_GUARD_CHECK_ERROR","features":[510]},{"name":"NVME_STATUS_NVM_END_TO_END_REFERENCE_TAG_CHECK_ERROR","features":[510]},{"name":"NVME_STATUS_NVM_INVALID_PROTECTION_INFORMATION","features":[510]},{"name":"NVME_STATUS_NVM_LBA_OUT_OF_RANGE","features":[510]},{"name":"NVME_STATUS_NVM_NAMESPACE_NOT_READY","features":[510]},{"name":"NVME_STATUS_NVM_RESERVATION_CONFLICT","features":[510]},{"name":"NVME_STATUS_NVM_UNRECOVERED_READ_ERROR","features":[510]},{"name":"NVME_STATUS_NVM_WRITE_FAULT","features":[510]},{"name":"NVME_STATUS_OPERATION_DENIED","features":[510]},{"name":"NVME_STATUS_OVERLAPPING_RANGE","features":[510]},{"name":"NVME_STATUS_PRP_OFFSET_INVALID","features":[510]},{"name":"NVME_STATUS_RESERVED","features":[510]},{"name":"NVME_STATUS_SANITIZE_FAILED","features":[510]},{"name":"NVME_STATUS_SANITIZE_IN_PROGRESS","features":[510]},{"name":"NVME_STATUS_SANITIZE_PROHIBITED_ON_PERSISTENT_MEMORY","features":[510]},{"name":"NVME_STATUS_SGL_DATA_BLOCK_GRANULARITY_INVALID","features":[510]},{"name":"NVME_STATUS_SGL_DESCR_TYPE_INVALID","features":[510]},{"name":"NVME_STATUS_SGL_OFFSET_INVALID","features":[510]},{"name":"NVME_STATUS_STREAM_RESOURCE_ALLOCATION_FAILED","features":[510]},{"name":"NVME_STATUS_SUCCESS_COMPLETION","features":[510]},{"name":"NVME_STATUS_TYPES","features":[510]},{"name":"NVME_STATUS_TYPE_COMMAND_SPECIFIC","features":[510]},{"name":"NVME_STATUS_TYPE_GENERIC_COMMAND","features":[510]},{"name":"NVME_STATUS_TYPE_MEDIA_ERROR","features":[510]},{"name":"NVME_STATUS_TYPE_VENDOR_SPECIFIC","features":[510]},{"name":"NVME_STATUS_ZONE_BOUNDARY_ERROR","features":[510]},{"name":"NVME_STATUS_ZONE_FULL","features":[510]},{"name":"NVME_STATUS_ZONE_INVALID_FORMAT","features":[510]},{"name":"NVME_STATUS_ZONE_INVALID_STATE_TRANSITION","features":[510]},{"name":"NVME_STATUS_ZONE_INVALID_WRITE","features":[510]},{"name":"NVME_STATUS_ZONE_OFFLINE","features":[510]},{"name":"NVME_STATUS_ZONE_READ_ONLY","features":[510]},{"name":"NVME_STATUS_ZONE_TOO_MANY_ACTIVE","features":[510]},{"name":"NVME_STATUS_ZONE_TOO_MANY_OPEN","features":[510]},{"name":"NVME_STREAMS_GET_STATUS_MAX_IDS","features":[510]},{"name":"NVME_STREAMS_ID_MAX","features":[510]},{"name":"NVME_STREAMS_ID_MIN","features":[510]},{"name":"NVME_SUBMISSION_QUEUE_TAIL_DOORBELL","features":[510]},{"name":"NVME_TELEMETRY_CONTROLLER_INITIATED_LOG","features":[510]},{"name":"NVME_TELEMETRY_DATA_BLOCK_SIZE","features":[510]},{"name":"NVME_TELEMETRY_HOST_INITIATED_LOG","features":[510]},{"name":"NVME_TEMPERATURE_OVER_THRESHOLD","features":[510]},{"name":"NVME_TEMPERATURE_THRESHOLD_TYPES","features":[510]},{"name":"NVME_TEMPERATURE_UNDER_THRESHOLD","features":[510]},{"name":"NVME_VENDOR_LOG_PAGES","features":[510]},{"name":"NVME_VERSION","features":[510]},{"name":"NVME_WCS_DEVICE_CAPABILITIES","features":[510]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG","features":[510]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG_VERSION_1","features":[510]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION1","features":[510]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION2","features":[510]},{"name":"NVME_WCS_DEVICE_RESET_ACTION","features":[510]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG","features":[510]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_V2","features":[510]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_VERSION_2","features":[510]},{"name":"NVME_ZONE_DESCRIPTOR","features":[510]},{"name":"NVME_ZONE_DESCRIPTOR_EXTENSION","features":[510]},{"name":"NVME_ZONE_EXTENDED_REPORT_ZONE_DESC","features":[510]},{"name":"NVME_ZONE_RECEIVE_ACTION","features":[510]},{"name":"NVME_ZONE_RECEIVE_ACTION_SPECIFIC","features":[510]},{"name":"NVME_ZONE_RECEIVE_EXTENDED_REPORT_ZONES","features":[510]},{"name":"NVME_ZONE_RECEIVE_REPORT_ZONES","features":[510]},{"name":"NVME_ZONE_SEND_ACTION","features":[510]},{"name":"NVME_ZONE_SEND_CLOSE","features":[510]},{"name":"NVME_ZONE_SEND_FINISH","features":[510]},{"name":"NVME_ZONE_SEND_OFFLINE","features":[510]},{"name":"NVME_ZONE_SEND_OPEN","features":[510]},{"name":"NVME_ZONE_SEND_RESET","features":[510]},{"name":"NVME_ZONE_SEND_SET_ZONE_DESCRIPTOR","features":[510]},{"name":"NVME_ZRA_ALL_ZONES","features":[510]},{"name":"NVME_ZRA_CLOSED_STATE_ZONES","features":[510]},{"name":"NVME_ZRA_EMPTY_STATE_ZONES","features":[510]},{"name":"NVME_ZRA_EO_STATE_ZONES","features":[510]},{"name":"NVME_ZRA_FULL_STATE_ZONES","features":[510]},{"name":"NVME_ZRA_IO_STATE_ZONES","features":[510]},{"name":"NVME_ZRA_OFFLINE_STATE_ZONES","features":[510]},{"name":"NVME_ZRA_RO_STATE_ZONES","features":[510]},{"name":"NVM_RESERVATION_CAPABILITIES","features":[510]},{"name":"NVM_SET_LIST","features":[510]},{"name":"NVMeDeviceRecovery1Max","features":[510]},{"name":"NVMeDeviceRecovery2Max","features":[510]},{"name":"NVMeDeviceRecoveryControllerReset","features":[510]},{"name":"NVMeDeviceRecoveryDeviceReplacement","features":[510]},{"name":"NVMeDeviceRecoveryFormatNVM","features":[510]},{"name":"NVMeDeviceRecoveryNoAction","features":[510]},{"name":"NVMeDeviceRecoveryPERST","features":[510]},{"name":"NVMeDeviceRecoveryPcieFunctionReset","features":[510]},{"name":"NVMeDeviceRecoveryPcieHotReset","features":[510]},{"name":"NVMeDeviceRecoveryPowerCycle","features":[510]},{"name":"NVMeDeviceRecoverySanitize","features":[510]},{"name":"NVMeDeviceRecoverySubsystemReset","features":[510]},{"name":"NVMeDeviceRecoveryVendorAnalysis","features":[510]},{"name":"NVMeDeviceRecoveryVendorSpecificCommand","features":[510]},{"name":"TCG_ACTIVATE_METHOD_SPECIFIC","features":[510]},{"name":"TCG_ASSIGN_METHOD_SPECIFIC","features":[510]},{"name":"TCG_AUTH_METHOD_SPECIFIC","features":[510]},{"name":"TCG_BLOCKSID_METHOD_SPECIFIC","features":[510]},{"name":"TCG_HISTORY_ENTRY","features":[510]},{"name":"TCG_HISTORY_ENTRY_VERSION_1","features":[510]},{"name":"TCG_REACTIVATE_METHOD_SPECIFIC","features":[510]},{"name":"UNSUPPORTED_REQUIREMENT","features":[510]},{"name":"ZONE_STATE","features":[510]}],"517":[{"name":"IEnumOfflineFilesItems","features":[511]},{"name":"IEnumOfflineFilesSettings","features":[511]},{"name":"IOfflineFilesCache","features":[511]},{"name":"IOfflineFilesCache2","features":[511]},{"name":"IOfflineFilesChangeInfo","features":[511]},{"name":"IOfflineFilesConnectionInfo","features":[511]},{"name":"IOfflineFilesDirectoryItem","features":[511]},{"name":"IOfflineFilesDirtyInfo","features":[511]},{"name":"IOfflineFilesErrorInfo","features":[511]},{"name":"IOfflineFilesEvents","features":[511]},{"name":"IOfflineFilesEvents2","features":[511]},{"name":"IOfflineFilesEvents3","features":[511]},{"name":"IOfflineFilesEvents4","features":[511]},{"name":"IOfflineFilesEventsFilter","features":[511]},{"name":"IOfflineFilesFileItem","features":[511]},{"name":"IOfflineFilesFileSysInfo","features":[511]},{"name":"IOfflineFilesGhostInfo","features":[511]},{"name":"IOfflineFilesItem","features":[511]},{"name":"IOfflineFilesItemContainer","features":[511]},{"name":"IOfflineFilesItemFilter","features":[511]},{"name":"IOfflineFilesPinInfo","features":[511]},{"name":"IOfflineFilesPinInfo2","features":[511]},{"name":"IOfflineFilesProgress","features":[511]},{"name":"IOfflineFilesServerItem","features":[511]},{"name":"IOfflineFilesSetting","features":[511]},{"name":"IOfflineFilesShareInfo","features":[511]},{"name":"IOfflineFilesShareItem","features":[511]},{"name":"IOfflineFilesSimpleProgress","features":[511]},{"name":"IOfflineFilesSuspend","features":[511]},{"name":"IOfflineFilesSuspendInfo","features":[511]},{"name":"IOfflineFilesSyncConflictHandler","features":[511]},{"name":"IOfflineFilesSyncErrorInfo","features":[511]},{"name":"IOfflineFilesSyncErrorItemInfo","features":[511]},{"name":"IOfflineFilesSyncProgress","features":[511]},{"name":"IOfflineFilesTransparentCacheInfo","features":[511]},{"name":"OFFLINEFILES_CACHING_MODE","features":[511]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_DOC","features":[511]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_PROGANDDOC","features":[511]},{"name":"OFFLINEFILES_CACHING_MODE_MANUAL","features":[511]},{"name":"OFFLINEFILES_CACHING_MODE_NOCACHING","features":[511]},{"name":"OFFLINEFILES_CACHING_MODE_NONE","features":[511]},{"name":"OFFLINEFILES_CHANGES_LOCAL_ATTRIBUTES","features":[511]},{"name":"OFFLINEFILES_CHANGES_LOCAL_SIZE","features":[511]},{"name":"OFFLINEFILES_CHANGES_LOCAL_TIME","features":[511]},{"name":"OFFLINEFILES_CHANGES_NONE","features":[511]},{"name":"OFFLINEFILES_CHANGES_REMOTE_ATTRIBUTES","features":[511]},{"name":"OFFLINEFILES_CHANGES_REMOTE_SIZE","features":[511]},{"name":"OFFLINEFILES_CHANGES_REMOTE_TIME","features":[511]},{"name":"OFFLINEFILES_COMPARE","features":[511]},{"name":"OFFLINEFILES_COMPARE_EQ","features":[511]},{"name":"OFFLINEFILES_COMPARE_GT","features":[511]},{"name":"OFFLINEFILES_COMPARE_GTE","features":[511]},{"name":"OFFLINEFILES_COMPARE_LT","features":[511]},{"name":"OFFLINEFILES_COMPARE_LTE","features":[511]},{"name":"OFFLINEFILES_COMPARE_NEQ","features":[511]},{"name":"OFFLINEFILES_CONNECT_STATE","features":[511]},{"name":"OFFLINEFILES_CONNECT_STATE_OFFLINE","features":[511]},{"name":"OFFLINEFILES_CONNECT_STATE_ONLINE","features":[511]},{"name":"OFFLINEFILES_CONNECT_STATE_PARTLY_TRANSPARENTLY_CACHED","features":[511]},{"name":"OFFLINEFILES_CONNECT_STATE_TRANSPARENTLY_CACHED","features":[511]},{"name":"OFFLINEFILES_CONNECT_STATE_UNKNOWN","features":[511]},{"name":"OFFLINEFILES_DELETE_FLAG_ADMIN","features":[511]},{"name":"OFFLINEFILES_DELETE_FLAG_DELMODIFIED","features":[511]},{"name":"OFFLINEFILES_DELETE_FLAG_NOAUTOCACHED","features":[511]},{"name":"OFFLINEFILES_DELETE_FLAG_NOPINNED","features":[511]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_ASYNCPROGRESS","features":[511]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_BACKGROUND","features":[511]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_CONSOLE","features":[511]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_INTERACTIVE","features":[511]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_LOWPRIORITY","features":[511]},{"name":"OFFLINEFILES_ENUM_FLAT","features":[511]},{"name":"OFFLINEFILES_ENUM_FLAT_FILESONLY","features":[511]},{"name":"OFFLINEFILES_EVENTS","features":[511]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCBEGIN","features":[511]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCEND","features":[511]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTBEGIN","features":[511]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTEND","features":[511]},{"name":"OFFLINEFILES_EVENT_CACHEISCORRUPTED","features":[511]},{"name":"OFFLINEFILES_EVENT_CACHEISFULL","features":[511]},{"name":"OFFLINEFILES_EVENT_CACHEMOVED","features":[511]},{"name":"OFFLINEFILES_EVENT_DATALOST","features":[511]},{"name":"OFFLINEFILES_EVENT_ENABLED","features":[511]},{"name":"OFFLINEFILES_EVENT_ENCRYPTIONCHANGED","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMADDEDTOCACHE","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMAVAILABLEOFFLINE","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMDELETEDFROMCACHE","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMDISCONNECTED","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMMODIFIED","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMNOTAVAILABLEOFFLINE","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMNOTPINNED","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMPINNED","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTBEGIN","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTED","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTEND","features":[511]},{"name":"OFFLINEFILES_EVENT_ITEMRENAMED","features":[511]},{"name":"OFFLINEFILES_EVENT_NETTRANSPORTARRIVED","features":[511]},{"name":"OFFLINEFILES_EVENT_NONETTRANSPORTS","features":[511]},{"name":"OFFLINEFILES_EVENT_PING","features":[511]},{"name":"OFFLINEFILES_EVENT_POLICYCHANGEDETECTED","features":[511]},{"name":"OFFLINEFILES_EVENT_PREFERENCECHANGEDETECTED","features":[511]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEBEGIN","features":[511]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEEND","features":[511]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEBEGIN","features":[511]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEEND","features":[511]},{"name":"OFFLINEFILES_EVENT_SETTINGSCHANGESAPPLIED","features":[511]},{"name":"OFFLINEFILES_EVENT_SYNCBEGIN","features":[511]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECADDED","features":[511]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECREMOVED","features":[511]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECUPDATED","features":[511]},{"name":"OFFLINEFILES_EVENT_SYNCEND","features":[511]},{"name":"OFFLINEFILES_EVENT_SYNCFILERESULT","features":[511]},{"name":"OFFLINEFILES_EVENT_TRANSPARENTCACHEITEMNOTIFY","features":[511]},{"name":"OFFLINEFILES_ITEM_COPY","features":[511]},{"name":"OFFLINEFILES_ITEM_COPY_LOCAL","features":[511]},{"name":"OFFLINEFILES_ITEM_COPY_ORIGINAL","features":[511]},{"name":"OFFLINEFILES_ITEM_COPY_REMOTE","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_CREATED","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DELETED","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRECTORY","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRTY","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_FILE","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GHOST","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_ANYACCESS","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_READ","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_WRITE","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_ATTRIBUTES","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_DATA","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OFFLINE","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_ONLINE","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_ANYACCESS","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_READ","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_WRITE","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_COMPUTER","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_OTHERS","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_USER","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SPARSE","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SUSPENDED","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_ANYACCESS","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_READ","features":[511]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_WRITE","features":[511]},{"name":"OFFLINEFILES_ITEM_QUERY_ADMIN","features":[511]},{"name":"OFFLINEFILES_ITEM_QUERY_ATTEMPT_TRANSITIONONLINE","features":[511]},{"name":"OFFLINEFILES_ITEM_QUERY_CONNECTIONSTATE","features":[511]},{"name":"OFFLINEFILES_ITEM_QUERY_INCLUDETRANSPARENTCACHE","features":[511]},{"name":"OFFLINEFILES_ITEM_QUERY_LOCALDIRTYBYTECOUNT","features":[511]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEDIRTYBYTECOUNT","features":[511]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEINFO","features":[511]},{"name":"OFFLINEFILES_ITEM_TIME","features":[511]},{"name":"OFFLINEFILES_ITEM_TIME_CREATION","features":[511]},{"name":"OFFLINEFILES_ITEM_TIME_LASTACCESS","features":[511]},{"name":"OFFLINEFILES_ITEM_TIME_LASTWRITE","features":[511]},{"name":"OFFLINEFILES_ITEM_TYPE","features":[511]},{"name":"OFFLINEFILES_ITEM_TYPE_DIRECTORY","features":[511]},{"name":"OFFLINEFILES_ITEM_TYPE_FILE","features":[511]},{"name":"OFFLINEFILES_ITEM_TYPE_SERVER","features":[511]},{"name":"OFFLINEFILES_ITEM_TYPE_SHARE","features":[511]},{"name":"OFFLINEFILES_NUM_EVENTS","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_ERROR","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_FORCED","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_SLOW","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_SUSPENDED","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_VERSION_CONFLICT","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON_NOT_APPLICABLE","features":[511]},{"name":"OFFLINEFILES_OFFLINE_REASON_UNKNOWN","features":[511]},{"name":"OFFLINEFILES_OP_ABORT","features":[511]},{"name":"OFFLINEFILES_OP_CONTINUE","features":[511]},{"name":"OFFLINEFILES_OP_RESPONSE","features":[511]},{"name":"OFFLINEFILES_OP_RETRY","features":[511]},{"name":"OFFLINEFILES_PATHFILTER_CHILD","features":[511]},{"name":"OFFLINEFILES_PATHFILTER_DESCENDENT","features":[511]},{"name":"OFFLINEFILES_PATHFILTER_MATCH","features":[511]},{"name":"OFFLINEFILES_PATHFILTER_SELF","features":[511]},{"name":"OFFLINEFILES_PATHFILTER_SELFORCHILD","features":[511]},{"name":"OFFLINEFILES_PATHFILTER_SELFORDESCENDENT","features":[511]},{"name":"OFFLINEFILES_PINLINKTARGETS_ALWAYS","features":[511]},{"name":"OFFLINEFILES_PINLINKTARGETS_EXPLICIT","features":[511]},{"name":"OFFLINEFILES_PINLINKTARGETS_NEVER","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_ASYNCPROGRESS","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_BACKGROUND","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_CONSOLE","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FILL","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORALL","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORREDIR","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER_POLICY","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_INTERACTIVE","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_LOWPRIORITY","features":[511]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_PINLINKTARGETS","features":[511]},{"name":"OFFLINEFILES_SETTING_PinLinkTargets","features":[511]},{"name":"OFFLINEFILES_SETTING_SCOPE_COMPUTER","features":[511]},{"name":"OFFLINEFILES_SETTING_SCOPE_USER","features":[511]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_BSTR","features":[511]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_UI4","features":[511]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR","features":[511]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR_DBLNULTERM","features":[511]},{"name":"OFFLINEFILES_SETTING_VALUE_TYPE","features":[511]},{"name":"OFFLINEFILES_SETTING_VALUE_UI4","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_ABORT","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPALLCHANGES","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLATEST","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLOCAL","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPREMOTE","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_LOG","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NONE","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NUMCODES","features":[511]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_SKIP","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_DEFAULT","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLATEST","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLOCAL","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPREMOTE","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_MASK","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_ASYNCPROGRESS","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_BACKGROUND","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_CONSOLE","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_FILLSPARSE","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_INTERACTIVE","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_LOWPRIORITY","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_NONEWFILESOUT","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORALL","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORREDIR","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER_POLICY","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINLINKTARGETS","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINNEWFILES","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SKIPSUSPENDEDDIRS","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCIN","features":[511]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCOUT","features":[511]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_ATTRIBUTES","features":[511]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_CHANGETIME","features":[511]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_FILESIZE","features":[511]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_NONE","features":[511]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_WRITETIME","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_CLIENT","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_SERVER","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_CLIENT_COPY","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_SERVER_COPY","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_PIN","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_PREPARE","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_CLIENT","features":[511]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_SERVER","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_ChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_DeletedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DeletedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_NoServerCopy","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirDeletedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_NoServerCopy","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnClient","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_DirSparseOnClient","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_ChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DeletedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DeletedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_NoServerCopy","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileDeletedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_NoServerCopy","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnClient","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_ChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DeletedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_LOCAL_KNOWN","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_NUMSTATES","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileChangedOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileOnServer","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_REMOTE_KNOWN","features":[511]},{"name":"OFFLINEFILES_SYNC_STATE_Stable","features":[511]},{"name":"OFFLINEFILES_TRANSITION_FLAG_CONSOLE","features":[511]},{"name":"OFFLINEFILES_TRANSITION_FLAG_INTERACTIVE","features":[511]},{"name":"OfflineFilesCache","features":[511]},{"name":"OfflineFilesEnable","features":[303,511]},{"name":"OfflineFilesQueryStatus","features":[303,511]},{"name":"OfflineFilesQueryStatusEx","features":[303,511]},{"name":"OfflineFilesSetting","features":[511]},{"name":"OfflineFilesStart","features":[511]}],"518":[{"name":"OPERATION_END_DISCARD","features":[512]},{"name":"OPERATION_END_PARAMETERS","features":[512]},{"name":"OPERATION_END_PARAMETERS_FLAGS","features":[512]},{"name":"OPERATION_START_FLAGS","features":[512]},{"name":"OPERATION_START_PARAMETERS","features":[512]},{"name":"OPERATION_START_TRACE_CURRENT_THREAD","features":[512]},{"name":"OperationEnd","features":[303,512]},{"name":"OperationStart","features":[303,512]}],"519":[{"name":"APPLICATION_USER_MODEL_ID_MAX_LENGTH","features":[490]},{"name":"APPLICATION_USER_MODEL_ID_MIN_LENGTH","features":[490]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE","features":[490]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[490]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_FIRST","features":[490]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_LAST","features":[490]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_MANIFEST","features":[490]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[490]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE","features":[490]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_APPLICATION","features":[490]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_RESOURCE","features":[490]},{"name":"APPX_CAPABILITIES","features":[490]},{"name":"APPX_CAPABILITY_APPOINTMENTS","features":[490]},{"name":"APPX_CAPABILITY_CLASS_ALL","features":[490]},{"name":"APPX_CAPABILITY_CLASS_CUSTOM","features":[490]},{"name":"APPX_CAPABILITY_CLASS_DEFAULT","features":[490]},{"name":"APPX_CAPABILITY_CLASS_GENERAL","features":[490]},{"name":"APPX_CAPABILITY_CLASS_RESTRICTED","features":[490]},{"name":"APPX_CAPABILITY_CLASS_TYPE","features":[490]},{"name":"APPX_CAPABILITY_CLASS_WINDOWS","features":[490]},{"name":"APPX_CAPABILITY_CONTACTS","features":[490]},{"name":"APPX_CAPABILITY_DOCUMENTS_LIBRARY","features":[490]},{"name":"APPX_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[490]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT","features":[490]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT_SERVER","features":[490]},{"name":"APPX_CAPABILITY_MUSIC_LIBRARY","features":[490]},{"name":"APPX_CAPABILITY_PICTURES_LIBRARY","features":[490]},{"name":"APPX_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[490]},{"name":"APPX_CAPABILITY_REMOVABLE_STORAGE","features":[490]},{"name":"APPX_CAPABILITY_SHARED_USER_CERTIFICATES","features":[490]},{"name":"APPX_CAPABILITY_VIDEOS_LIBRARY","features":[490]},{"name":"APPX_COMPRESSION_OPTION","features":[490]},{"name":"APPX_COMPRESSION_OPTION_FAST","features":[490]},{"name":"APPX_COMPRESSION_OPTION_MAXIMUM","features":[490]},{"name":"APPX_COMPRESSION_OPTION_NONE","features":[490]},{"name":"APPX_COMPRESSION_OPTION_NORMAL","features":[490]},{"name":"APPX_COMPRESSION_OPTION_SUPERFAST","features":[490]},{"name":"APPX_ENCRYPTED_EXEMPTIONS","features":[490]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTIONS","features":[490]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_DIFFUSION","features":[490]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_NONE","features":[490]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_PAGE_HASHING","features":[490]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS","features":[303,490,354]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS2","features":[490,354]},{"name":"APPX_FOOTPRINT_FILE_TYPE","features":[490]},{"name":"APPX_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[490]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CODEINTEGRITY","features":[490]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CONTENTGROUPMAP","features":[490]},{"name":"APPX_FOOTPRINT_FILE_TYPE_MANIFEST","features":[490]},{"name":"APPX_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[490]},{"name":"APPX_KEY_INFO","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM64","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2_NEUTRAL","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2_UNKNOWN","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X64","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86_ON_ARM64","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM64","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE_NEUTRAL","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE_X64","features":[490]},{"name":"APPX_PACKAGE_ARCHITECTURE_X86","features":[490]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTIONS","features":[490]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_LOCALIZED","features":[490]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_NONE","features":[490]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_SKIP_VALIDATION","features":[490]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION","features":[490]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION_APPEND_DELTA","features":[490]},{"name":"APPX_PACKAGE_SETTINGS","features":[303,490,354]},{"name":"APPX_PACKAGE_WRITER_PAYLOAD_STREAM","features":[490,354]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE","features":[490]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_CHANGE","features":[490]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_DETAILS","features":[490]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_END","features":[490]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_START","features":[490]},{"name":"ActivatePackageVirtualizationContext","features":[490]},{"name":"AddPackageDependency","features":[490]},{"name":"AddPackageDependencyOptions","features":[490]},{"name":"AddPackageDependencyOptions_None","features":[490]},{"name":"AddPackageDependencyOptions_PrependIfRankCollision","features":[490]},{"name":"AppPolicyClrCompat","features":[490]},{"name":"AppPolicyClrCompat_ClassicDesktop","features":[490]},{"name":"AppPolicyClrCompat_Other","features":[490]},{"name":"AppPolicyClrCompat_PackagedDesktop","features":[490]},{"name":"AppPolicyClrCompat_Universal","features":[490]},{"name":"AppPolicyCreateFileAccess","features":[490]},{"name":"AppPolicyCreateFileAccess_Full","features":[490]},{"name":"AppPolicyCreateFileAccess_Limited","features":[490]},{"name":"AppPolicyGetClrCompat","features":[303,490]},{"name":"AppPolicyGetCreateFileAccess","features":[303,490]},{"name":"AppPolicyGetLifecycleManagement","features":[303,490]},{"name":"AppPolicyGetMediaFoundationCodecLoading","features":[303,490]},{"name":"AppPolicyGetProcessTerminationMethod","features":[303,490]},{"name":"AppPolicyGetShowDeveloperDiagnostic","features":[303,490]},{"name":"AppPolicyGetThreadInitializationType","features":[303,490]},{"name":"AppPolicyGetWindowingModel","features":[303,490]},{"name":"AppPolicyLifecycleManagement","features":[490]},{"name":"AppPolicyLifecycleManagement_Managed","features":[490]},{"name":"AppPolicyLifecycleManagement_Unmanaged","features":[490]},{"name":"AppPolicyMediaFoundationCodecLoading","features":[490]},{"name":"AppPolicyMediaFoundationCodecLoading_All","features":[490]},{"name":"AppPolicyMediaFoundationCodecLoading_InboxOnly","features":[490]},{"name":"AppPolicyProcessTerminationMethod","features":[490]},{"name":"AppPolicyProcessTerminationMethod_ExitProcess","features":[490]},{"name":"AppPolicyProcessTerminationMethod_TerminateProcess","features":[490]},{"name":"AppPolicyShowDeveloperDiagnostic","features":[490]},{"name":"AppPolicyShowDeveloperDiagnostic_None","features":[490]},{"name":"AppPolicyShowDeveloperDiagnostic_ShowUI","features":[490]},{"name":"AppPolicyThreadInitializationType","features":[490]},{"name":"AppPolicyThreadInitializationType_InitializeWinRT","features":[490]},{"name":"AppPolicyThreadInitializationType_None","features":[490]},{"name":"AppPolicyWindowingModel","features":[490]},{"name":"AppPolicyWindowingModel_ClassicDesktop","features":[490]},{"name":"AppPolicyWindowingModel_ClassicPhone","features":[490]},{"name":"AppPolicyWindowingModel_None","features":[490]},{"name":"AppPolicyWindowingModel_Universal","features":[490]},{"name":"AppxBundleFactory","features":[490]},{"name":"AppxEncryptionFactory","features":[490]},{"name":"AppxFactory","features":[490]},{"name":"AppxPackageEditor","features":[490]},{"name":"AppxPackagingDiagnosticEventSinkManager","features":[490]},{"name":"CheckIsMSIXPackage","features":[303,490]},{"name":"ClosePackageInfo","features":[303,490]},{"name":"CreatePackageDependencyOptions","features":[490]},{"name":"CreatePackageDependencyOptions_DoNotVerifyDependencyResolution","features":[490]},{"name":"CreatePackageDependencyOptions_None","features":[490]},{"name":"CreatePackageDependencyOptions_ScopeIsSystem","features":[490]},{"name":"CreatePackageVirtualizationContext","features":[490]},{"name":"DX_FEATURE_LEVEL","features":[490]},{"name":"DX_FEATURE_LEVEL_10","features":[490]},{"name":"DX_FEATURE_LEVEL_11","features":[490]},{"name":"DX_FEATURE_LEVEL_9","features":[490]},{"name":"DX_FEATURE_LEVEL_UNSPECIFIED","features":[490]},{"name":"DeactivatePackageVirtualizationContext","features":[490]},{"name":"DeletePackageDependency","features":[490]},{"name":"DuplicatePackageVirtualizationContext","features":[490]},{"name":"FindPackagesByPackageFamily","features":[303,490]},{"name":"FormatApplicationUserModelId","features":[303,490]},{"name":"GetApplicationUserModelId","features":[303,490]},{"name":"GetApplicationUserModelIdFromToken","features":[303,490]},{"name":"GetCurrentApplicationUserModelId","features":[303,490]},{"name":"GetCurrentPackageFamilyName","features":[303,490]},{"name":"GetCurrentPackageFullName","features":[303,490]},{"name":"GetCurrentPackageId","features":[303,490]},{"name":"GetCurrentPackageInfo","features":[303,490]},{"name":"GetCurrentPackageInfo2","features":[303,490]},{"name":"GetCurrentPackageInfo3","features":[490]},{"name":"GetCurrentPackagePath","features":[303,490]},{"name":"GetCurrentPackagePath2","features":[303,490]},{"name":"GetCurrentPackageVirtualizationContext","features":[490]},{"name":"GetIdForPackageDependencyContext","features":[490]},{"name":"GetPackageApplicationIds","features":[303,490]},{"name":"GetPackageFamilyName","features":[303,490]},{"name":"GetPackageFamilyNameFromToken","features":[303,490]},{"name":"GetPackageFullName","features":[303,490]},{"name":"GetPackageFullNameFromToken","features":[303,490]},{"name":"GetPackageGraphRevisionId","features":[490]},{"name":"GetPackageId","features":[303,490]},{"name":"GetPackageInfo","features":[303,490]},{"name":"GetPackageInfo2","features":[303,490]},{"name":"GetPackagePath","features":[303,490]},{"name":"GetPackagePathByFullName","features":[303,490]},{"name":"GetPackagePathByFullName2","features":[303,490]},{"name":"GetPackagesByPackageFamily","features":[303,490]},{"name":"GetProcessesInVirtualizationContext","features":[303,490]},{"name":"GetResolvedPackageFullNameForPackageDependency","features":[490]},{"name":"GetStagedPackageOrigin","features":[303,490]},{"name":"GetStagedPackagePathByFullName","features":[303,490]},{"name":"GetStagedPackagePathByFullName2","features":[303,490]},{"name":"IAppxAppInstallerReader","features":[490]},{"name":"IAppxBlockMapBlock","features":[490]},{"name":"IAppxBlockMapBlocksEnumerator","features":[490]},{"name":"IAppxBlockMapFile","features":[490]},{"name":"IAppxBlockMapFilesEnumerator","features":[490]},{"name":"IAppxBlockMapReader","features":[490]},{"name":"IAppxBundleFactory","features":[490]},{"name":"IAppxBundleFactory2","features":[490]},{"name":"IAppxBundleManifestOptionalBundleInfo","features":[490]},{"name":"IAppxBundleManifestOptionalBundleInfoEnumerator","features":[490]},{"name":"IAppxBundleManifestPackageInfo","features":[490]},{"name":"IAppxBundleManifestPackageInfo2","features":[490]},{"name":"IAppxBundleManifestPackageInfo3","features":[490]},{"name":"IAppxBundleManifestPackageInfo4","features":[490]},{"name":"IAppxBundleManifestPackageInfoEnumerator","features":[490]},{"name":"IAppxBundleManifestReader","features":[490]},{"name":"IAppxBundleManifestReader2","features":[490]},{"name":"IAppxBundleReader","features":[490]},{"name":"IAppxBundleWriter","features":[490]},{"name":"IAppxBundleWriter2","features":[490]},{"name":"IAppxBundleWriter3","features":[490]},{"name":"IAppxBundleWriter4","features":[490]},{"name":"IAppxContentGroup","features":[490]},{"name":"IAppxContentGroupFilesEnumerator","features":[490]},{"name":"IAppxContentGroupMapReader","features":[490]},{"name":"IAppxContentGroupMapWriter","features":[490]},{"name":"IAppxContentGroupsEnumerator","features":[490]},{"name":"IAppxDigestProvider","features":[490]},{"name":"IAppxEncryptedBundleWriter","features":[490]},{"name":"IAppxEncryptedBundleWriter2","features":[490]},{"name":"IAppxEncryptedBundleWriter3","features":[490]},{"name":"IAppxEncryptedPackageWriter","features":[490]},{"name":"IAppxEncryptedPackageWriter2","features":[490]},{"name":"IAppxEncryptionFactory","features":[490]},{"name":"IAppxEncryptionFactory2","features":[490]},{"name":"IAppxEncryptionFactory3","features":[490]},{"name":"IAppxEncryptionFactory4","features":[490]},{"name":"IAppxEncryptionFactory5","features":[490]},{"name":"IAppxFactory","features":[490]},{"name":"IAppxFactory2","features":[490]},{"name":"IAppxFactory3","features":[490]},{"name":"IAppxFile","features":[490]},{"name":"IAppxFilesEnumerator","features":[490]},{"name":"IAppxManifestApplication","features":[490]},{"name":"IAppxManifestApplicationsEnumerator","features":[490]},{"name":"IAppxManifestCapabilitiesEnumerator","features":[490]},{"name":"IAppxManifestDeviceCapabilitiesEnumerator","features":[490]},{"name":"IAppxManifestDriverConstraint","features":[490]},{"name":"IAppxManifestDriverConstraintsEnumerator","features":[490]},{"name":"IAppxManifestDriverDependenciesEnumerator","features":[490]},{"name":"IAppxManifestDriverDependency","features":[490]},{"name":"IAppxManifestHostRuntimeDependenciesEnumerator","features":[490]},{"name":"IAppxManifestHostRuntimeDependency","features":[490]},{"name":"IAppxManifestHostRuntimeDependency2","features":[490]},{"name":"IAppxManifestMainPackageDependenciesEnumerator","features":[490]},{"name":"IAppxManifestMainPackageDependency","features":[490]},{"name":"IAppxManifestOSPackageDependenciesEnumerator","features":[490]},{"name":"IAppxManifestOSPackageDependency","features":[490]},{"name":"IAppxManifestOptionalPackageInfo","features":[490]},{"name":"IAppxManifestPackageDependenciesEnumerator","features":[490]},{"name":"IAppxManifestPackageDependency","features":[490]},{"name":"IAppxManifestPackageDependency2","features":[490]},{"name":"IAppxManifestPackageDependency3","features":[490]},{"name":"IAppxManifestPackageId","features":[490]},{"name":"IAppxManifestPackageId2","features":[490]},{"name":"IAppxManifestProperties","features":[490]},{"name":"IAppxManifestQualifiedResource","features":[490]},{"name":"IAppxManifestQualifiedResourcesEnumerator","features":[490]},{"name":"IAppxManifestReader","features":[490]},{"name":"IAppxManifestReader2","features":[490]},{"name":"IAppxManifestReader3","features":[490]},{"name":"IAppxManifestReader4","features":[490]},{"name":"IAppxManifestReader5","features":[490]},{"name":"IAppxManifestReader6","features":[490]},{"name":"IAppxManifestReader7","features":[490]},{"name":"IAppxManifestResourcesEnumerator","features":[490]},{"name":"IAppxManifestTargetDeviceFamiliesEnumerator","features":[490]},{"name":"IAppxManifestTargetDeviceFamily","features":[490]},{"name":"IAppxPackageEditor","features":[490]},{"name":"IAppxPackageReader","features":[490]},{"name":"IAppxPackageWriter","features":[490]},{"name":"IAppxPackageWriter2","features":[490]},{"name":"IAppxPackageWriter3","features":[490]},{"name":"IAppxPackagingDiagnosticEventSink","features":[490]},{"name":"IAppxPackagingDiagnosticEventSinkManager","features":[490]},{"name":"IAppxSourceContentGroupMapReader","features":[490]},{"name":"OpenPackageInfoByFullName","features":[303,490]},{"name":"OpenPackageInfoByFullNameForUser","features":[303,490]},{"name":"PACKAGEDEPENDENCY_CONTEXT","features":[490]},{"name":"PACKAGE_APPLICATIONS_MAX_COUNT","features":[490]},{"name":"PACKAGE_APPLICATIONS_MIN_COUNT","features":[490]},{"name":"PACKAGE_ARCHITECTURE_MAX_LENGTH","features":[490]},{"name":"PACKAGE_ARCHITECTURE_MIN_LENGTH","features":[490]},{"name":"PACKAGE_DEPENDENCY_RANK_DEFAULT","features":[490]},{"name":"PACKAGE_FAMILY_MAX_RESOURCE_PACKAGES","features":[490]},{"name":"PACKAGE_FAMILY_MIN_RESOURCE_PACKAGES","features":[490]},{"name":"PACKAGE_FAMILY_NAME_MAX_LENGTH","features":[490]},{"name":"PACKAGE_FAMILY_NAME_MIN_LENGTH","features":[490]},{"name":"PACKAGE_FILTER_ALL_LOADED","features":[490]},{"name":"PACKAGE_FILTER_BUNDLE","features":[490]},{"name":"PACKAGE_FILTER_DIRECT","features":[490]},{"name":"PACKAGE_FILTER_DYNAMIC","features":[490]},{"name":"PACKAGE_FILTER_HEAD","features":[490]},{"name":"PACKAGE_FILTER_HOSTRUNTIME","features":[490]},{"name":"PACKAGE_FILTER_IS_IN_RELATED_SET","features":[490]},{"name":"PACKAGE_FILTER_OPTIONAL","features":[490]},{"name":"PACKAGE_FILTER_RESOURCE","features":[490]},{"name":"PACKAGE_FILTER_STATIC","features":[490]},{"name":"PACKAGE_FULL_NAME_MAX_LENGTH","features":[490]},{"name":"PACKAGE_FULL_NAME_MIN_LENGTH","features":[490]},{"name":"PACKAGE_GRAPH_MAX_SIZE","features":[490]},{"name":"PACKAGE_GRAPH_MIN_SIZE","features":[490]},{"name":"PACKAGE_ID","features":[490]},{"name":"PACKAGE_ID","features":[490]},{"name":"PACKAGE_INFO","features":[490]},{"name":"PACKAGE_INFO","features":[490]},{"name":"PACKAGE_INFORMATION_BASIC","features":[490]},{"name":"PACKAGE_INFORMATION_FULL","features":[490]},{"name":"PACKAGE_MAX_DEPENDENCIES","features":[490]},{"name":"PACKAGE_MIN_DEPENDENCIES","features":[490]},{"name":"PACKAGE_NAME_MAX_LENGTH","features":[490]},{"name":"PACKAGE_NAME_MIN_LENGTH","features":[490]},{"name":"PACKAGE_PROPERTY_BUNDLE","features":[490]},{"name":"PACKAGE_PROPERTY_DEVELOPMENT_MODE","features":[490]},{"name":"PACKAGE_PROPERTY_DYNAMIC","features":[490]},{"name":"PACKAGE_PROPERTY_FRAMEWORK","features":[490]},{"name":"PACKAGE_PROPERTY_HOSTRUNTIME","features":[490]},{"name":"PACKAGE_PROPERTY_IS_IN_RELATED_SET","features":[490]},{"name":"PACKAGE_PROPERTY_OPTIONAL","features":[490]},{"name":"PACKAGE_PROPERTY_RESOURCE","features":[490]},{"name":"PACKAGE_PROPERTY_STATIC","features":[490]},{"name":"PACKAGE_PUBLISHERID_MAX_LENGTH","features":[490]},{"name":"PACKAGE_PUBLISHERID_MIN_LENGTH","features":[490]},{"name":"PACKAGE_PUBLISHER_MAX_LENGTH","features":[490]},{"name":"PACKAGE_PUBLISHER_MIN_LENGTH","features":[490]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MAX_LENGTH","features":[490]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MIN_LENGTH","features":[490]},{"name":"PACKAGE_RESOURCEID_MAX_LENGTH","features":[490]},{"name":"PACKAGE_RESOURCEID_MIN_LENGTH","features":[490]},{"name":"PACKAGE_VERSION","features":[490]},{"name":"PACKAGE_VERSION_MAX_LENGTH","features":[490]},{"name":"PACKAGE_VERSION_MIN_LENGTH","features":[490]},{"name":"PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE","features":[490]},{"name":"PackageDependencyLifetimeKind","features":[490]},{"name":"PackageDependencyLifetimeKind_FilePath","features":[490]},{"name":"PackageDependencyLifetimeKind_Process","features":[490]},{"name":"PackageDependencyLifetimeKind_RegistryKey","features":[490]},{"name":"PackageDependencyProcessorArchitectures","features":[490]},{"name":"PackageDependencyProcessorArchitectures_Arm","features":[490]},{"name":"PackageDependencyProcessorArchitectures_Arm64","features":[490]},{"name":"PackageDependencyProcessorArchitectures_Neutral","features":[490]},{"name":"PackageDependencyProcessorArchitectures_None","features":[490]},{"name":"PackageDependencyProcessorArchitectures_X64","features":[490]},{"name":"PackageDependencyProcessorArchitectures_X86","features":[490]},{"name":"PackageDependencyProcessorArchitectures_X86A64","features":[490]},{"name":"PackageFamilyNameFromFullName","features":[303,490]},{"name":"PackageFamilyNameFromId","features":[303,490]},{"name":"PackageFullNameFromId","features":[303,490]},{"name":"PackageIdFromFullName","features":[303,490]},{"name":"PackageInfo3Type","features":[490]},{"name":"PackageInfo3Type_PackageInfoGeneration","features":[490]},{"name":"PackageNameAndPublisherIdFromFamilyName","features":[303,490]},{"name":"PackageOrigin","features":[490]},{"name":"PackageOrigin_DeveloperSigned","features":[490]},{"name":"PackageOrigin_DeveloperUnsigned","features":[490]},{"name":"PackageOrigin_Inbox","features":[490]},{"name":"PackageOrigin_LineOfBusiness","features":[490]},{"name":"PackageOrigin_Store","features":[490]},{"name":"PackageOrigin_Unknown","features":[490]},{"name":"PackageOrigin_Unsigned","features":[490]},{"name":"PackagePathType","features":[490]},{"name":"PackagePathType_Effective","features":[490]},{"name":"PackagePathType_EffectiveExternal","features":[490]},{"name":"PackagePathType_Install","features":[490]},{"name":"PackagePathType_MachineExternal","features":[490]},{"name":"PackagePathType_Mutable","features":[490]},{"name":"PackagePathType_UserExternal","features":[490]},{"name":"ParseApplicationUserModelId","features":[303,490]},{"name":"ReleasePackageVirtualizationContext","features":[490]},{"name":"RemovePackageDependency","features":[490]},{"name":"TryCreatePackageDependency","features":[303,490]},{"name":"VerifyApplicationUserModelId","features":[303,490]},{"name":"VerifyPackageFamilyName","features":[303,490]},{"name":"VerifyPackageFullName","features":[303,490]},{"name":"VerifyPackageId","features":[303,490]},{"name":"VerifyPackageRelativeApplicationId","features":[303,490]},{"name":"_PACKAGE_INFO_REFERENCE","features":[490]}],"520":[{"name":"IOpcCertificateEnumerator","features":[513]},{"name":"IOpcCertificateSet","features":[513]},{"name":"IOpcDigitalSignature","features":[513]},{"name":"IOpcDigitalSignatureEnumerator","features":[513]},{"name":"IOpcDigitalSignatureManager","features":[513]},{"name":"IOpcFactory","features":[513]},{"name":"IOpcPackage","features":[513]},{"name":"IOpcPart","features":[513]},{"name":"IOpcPartEnumerator","features":[513]},{"name":"IOpcPartSet","features":[513]},{"name":"IOpcPartUri","features":[513,354]},{"name":"IOpcRelationship","features":[513]},{"name":"IOpcRelationshipEnumerator","features":[513]},{"name":"IOpcRelationshipSelector","features":[513]},{"name":"IOpcRelationshipSelectorEnumerator","features":[513]},{"name":"IOpcRelationshipSelectorSet","features":[513]},{"name":"IOpcRelationshipSet","features":[513]},{"name":"IOpcSignatureCustomObject","features":[513]},{"name":"IOpcSignatureCustomObjectEnumerator","features":[513]},{"name":"IOpcSignatureCustomObjectSet","features":[513]},{"name":"IOpcSignaturePartReference","features":[513]},{"name":"IOpcSignaturePartReferenceEnumerator","features":[513]},{"name":"IOpcSignaturePartReferenceSet","features":[513]},{"name":"IOpcSignatureReference","features":[513]},{"name":"IOpcSignatureReferenceEnumerator","features":[513]},{"name":"IOpcSignatureReferenceSet","features":[513]},{"name":"IOpcSignatureRelationshipReference","features":[513]},{"name":"IOpcSignatureRelationshipReferenceEnumerator","features":[513]},{"name":"IOpcSignatureRelationshipReferenceSet","features":[513]},{"name":"IOpcSigningOptions","features":[513]},{"name":"IOpcUri","features":[513,354]},{"name":"OPC_CACHE_ON_ACCESS","features":[513]},{"name":"OPC_CANONICALIZATION_C14N","features":[513]},{"name":"OPC_CANONICALIZATION_C14N_WITH_COMMENTS","features":[513]},{"name":"OPC_CANONICALIZATION_METHOD","features":[513]},{"name":"OPC_CANONICALIZATION_NONE","features":[513]},{"name":"OPC_CERTIFICATE_EMBEDDING_OPTION","features":[513]},{"name":"OPC_CERTIFICATE_IN_CERTIFICATE_PART","features":[513]},{"name":"OPC_CERTIFICATE_IN_SIGNATURE_PART","features":[513]},{"name":"OPC_CERTIFICATE_NOT_EMBEDDED","features":[513]},{"name":"OPC_COMPRESSION_FAST","features":[513]},{"name":"OPC_COMPRESSION_MAXIMUM","features":[513]},{"name":"OPC_COMPRESSION_NONE","features":[513]},{"name":"OPC_COMPRESSION_NORMAL","features":[513]},{"name":"OPC_COMPRESSION_OPTIONS","features":[513]},{"name":"OPC_COMPRESSION_SUPERFAST","features":[513]},{"name":"OPC_E_CONFLICTING_SETTINGS","features":[513]},{"name":"OPC_E_COULD_NOT_RECOVER","features":[513]},{"name":"OPC_E_DS_DEFAULT_DIGEST_METHOD_NOT_SET","features":[513]},{"name":"OPC_E_DS_DIGEST_VALUE_ERROR","features":[513]},{"name":"OPC_E_DS_DUPLICATE_PACKAGE_OBJECT_REFERENCES","features":[513]},{"name":"OPC_E_DS_DUPLICATE_SIGNATURE_ORIGIN_RELATIONSHIP","features":[513]},{"name":"OPC_E_DS_DUPLICATE_SIGNATURE_PROPERTY_ELEMENT","features":[513]},{"name":"OPC_E_DS_EXTERNAL_SIGNATURE","features":[513]},{"name":"OPC_E_DS_EXTERNAL_SIGNATURE_REFERENCE","features":[513]},{"name":"OPC_E_DS_INVALID_CANONICALIZATION_METHOD","features":[513]},{"name":"OPC_E_DS_INVALID_CERTIFICATE_RELATIONSHIP","features":[513]},{"name":"OPC_E_DS_INVALID_OPC_SIGNATURE_TIME_FORMAT","features":[513]},{"name":"OPC_E_DS_INVALID_RELATIONSHIPS_SIGNING_OPTION","features":[513]},{"name":"OPC_E_DS_INVALID_RELATIONSHIP_TRANSFORM_XML","features":[513]},{"name":"OPC_E_DS_INVALID_SIGNATURE_COUNT","features":[513]},{"name":"OPC_E_DS_INVALID_SIGNATURE_ORIGIN_RELATIONSHIP","features":[513]},{"name":"OPC_E_DS_INVALID_SIGNATURE_XML","features":[513]},{"name":"OPC_E_DS_MISSING_CANONICALIZATION_TRANSFORM","features":[513]},{"name":"OPC_E_DS_MISSING_CERTIFICATE_PART","features":[513]},{"name":"OPC_E_DS_MISSING_PACKAGE_OBJECT_REFERENCE","features":[513]},{"name":"OPC_E_DS_MISSING_SIGNATURE_ALGORITHM","features":[513]},{"name":"OPC_E_DS_MISSING_SIGNATURE_ORIGIN_PART","features":[513]},{"name":"OPC_E_DS_MISSING_SIGNATURE_PART","features":[513]},{"name":"OPC_E_DS_MISSING_SIGNATURE_PROPERTIES_ELEMENT","features":[513]},{"name":"OPC_E_DS_MISSING_SIGNATURE_PROPERTY_ELEMENT","features":[513]},{"name":"OPC_E_DS_MISSING_SIGNATURE_TIME_PROPERTY","features":[513]},{"name":"OPC_E_DS_MULTIPLE_RELATIONSHIP_TRANSFORMS","features":[513]},{"name":"OPC_E_DS_PACKAGE_REFERENCE_URI_RESERVED","features":[513]},{"name":"OPC_E_DS_REFERENCE_MISSING_CONTENT_TYPE","features":[513]},{"name":"OPC_E_DS_SIGNATURE_CORRUPT","features":[513]},{"name":"OPC_E_DS_SIGNATURE_METHOD_NOT_SET","features":[513]},{"name":"OPC_E_DS_SIGNATURE_ORIGIN_EXISTS","features":[513]},{"name":"OPC_E_DS_SIGNATURE_PROPERTY_MISSING_TARGET","features":[513]},{"name":"OPC_E_DS_SIGNATURE_REFERENCE_MISSING_URI","features":[513]},{"name":"OPC_E_DS_UNSIGNED_PACKAGE","features":[513]},{"name":"OPC_E_DUPLICATE_DEFAULT_EXTENSION","features":[513]},{"name":"OPC_E_DUPLICATE_OVERRIDE_PART","features":[513]},{"name":"OPC_E_DUPLICATE_PART","features":[513]},{"name":"OPC_E_DUPLICATE_PIECE","features":[513]},{"name":"OPC_E_DUPLICATE_RELATIONSHIP","features":[513]},{"name":"OPC_E_ENUM_CANNOT_MOVE_NEXT","features":[513]},{"name":"OPC_E_ENUM_CANNOT_MOVE_PREVIOUS","features":[513]},{"name":"OPC_E_ENUM_COLLECTION_CHANGED","features":[513]},{"name":"OPC_E_ENUM_INVALID_POSITION","features":[513]},{"name":"OPC_E_INVALID_CONTENT_TYPE","features":[513]},{"name":"OPC_E_INVALID_CONTENT_TYPE_XML","features":[513]},{"name":"OPC_E_INVALID_DEFAULT_EXTENSION","features":[513]},{"name":"OPC_E_INVALID_OVERRIDE_PART_NAME","features":[513]},{"name":"OPC_E_INVALID_PIECE","features":[513]},{"name":"OPC_E_INVALID_RELATIONSHIP_ID","features":[513]},{"name":"OPC_E_INVALID_RELATIONSHIP_TARGET","features":[513]},{"name":"OPC_E_INVALID_RELATIONSHIP_TARGET_MODE","features":[513]},{"name":"OPC_E_INVALID_RELATIONSHIP_TYPE","features":[513]},{"name":"OPC_E_INVALID_RELS_XML","features":[513]},{"name":"OPC_E_INVALID_XML_ENCODING","features":[513]},{"name":"OPC_E_MC_INCONSISTENT_PRESERVE_ATTRIBUTES","features":[513]},{"name":"OPC_E_MC_INCONSISTENT_PRESERVE_ELEMENTS","features":[513]},{"name":"OPC_E_MC_INCONSISTENT_PROCESS_CONTENT","features":[513]},{"name":"OPC_E_MC_INVALID_ATTRIBUTES_ON_IGNORABLE_ELEMENT","features":[513]},{"name":"OPC_E_MC_INVALID_ENUM_TYPE","features":[513]},{"name":"OPC_E_MC_INVALID_PREFIX_LIST","features":[513]},{"name":"OPC_E_MC_INVALID_QNAME_LIST","features":[513]},{"name":"OPC_E_MC_INVALID_XMLNS_ATTRIBUTE","features":[513]},{"name":"OPC_E_MC_MISSING_CHOICE","features":[513]},{"name":"OPC_E_MC_MISSING_REQUIRES_ATTR","features":[513]},{"name":"OPC_E_MC_MULTIPLE_FALLBACK_ELEMENTS","features":[513]},{"name":"OPC_E_MC_NESTED_ALTERNATE_CONTENT","features":[513]},{"name":"OPC_E_MC_UNEXPECTED_ATTR","features":[513]},{"name":"OPC_E_MC_UNEXPECTED_CHOICE","features":[513]},{"name":"OPC_E_MC_UNEXPECTED_ELEMENT","features":[513]},{"name":"OPC_E_MC_UNEXPECTED_REQUIRES_ATTR","features":[513]},{"name":"OPC_E_MC_UNKNOWN_NAMESPACE","features":[513]},{"name":"OPC_E_MC_UNKNOWN_PREFIX","features":[513]},{"name":"OPC_E_MISSING_CONTENT_TYPES","features":[513]},{"name":"OPC_E_MISSING_PIECE","features":[513]},{"name":"OPC_E_NONCONFORMING_CONTENT_TYPES_XML","features":[513]},{"name":"OPC_E_NONCONFORMING_RELS_XML","features":[513]},{"name":"OPC_E_NONCONFORMING_URI","features":[513]},{"name":"OPC_E_NO_SUCH_PART","features":[513]},{"name":"OPC_E_NO_SUCH_RELATIONSHIP","features":[513]},{"name":"OPC_E_NO_SUCH_SETTINGS","features":[513]},{"name":"OPC_E_PART_CANNOT_BE_DIRECTORY","features":[513]},{"name":"OPC_E_RELATIONSHIP_URI_REQUIRED","features":[513]},{"name":"OPC_E_RELATIVE_URI_REQUIRED","features":[513]},{"name":"OPC_E_UNEXPECTED_CONTENT_TYPE","features":[513]},{"name":"OPC_E_UNSUPPORTED_PACKAGE","features":[513]},{"name":"OPC_E_ZIP_CENTRAL_DIRECTORY_TOO_LARGE","features":[513]},{"name":"OPC_E_ZIP_COMMENT_TOO_LARGE","features":[513]},{"name":"OPC_E_ZIP_COMPRESSION_FAILED","features":[513]},{"name":"OPC_E_ZIP_CORRUPTED_ARCHIVE","features":[513]},{"name":"OPC_E_ZIP_DECOMPRESSION_FAILED","features":[513]},{"name":"OPC_E_ZIP_DUPLICATE_NAME","features":[513]},{"name":"OPC_E_ZIP_EXTRA_FIELDS_TOO_LARGE","features":[513]},{"name":"OPC_E_ZIP_FILE_HEADER_TOO_LARGE","features":[513]},{"name":"OPC_E_ZIP_INCONSISTENT_DIRECTORY","features":[513]},{"name":"OPC_E_ZIP_INCONSISTENT_FILEITEM","features":[513]},{"name":"OPC_E_ZIP_INCORRECT_DATA_SIZE","features":[513]},{"name":"OPC_E_ZIP_MISSING_DATA_DESCRIPTOR","features":[513]},{"name":"OPC_E_ZIP_MISSING_END_OF_CENTRAL_DIRECTORY","features":[513]},{"name":"OPC_E_ZIP_NAME_TOO_LARGE","features":[513]},{"name":"OPC_E_ZIP_REQUIRES_64_BIT","features":[513]},{"name":"OPC_E_ZIP_UNSUPPORTEDARCHIVE","features":[513]},{"name":"OPC_READ_DEFAULT","features":[513]},{"name":"OPC_READ_FLAGS","features":[513]},{"name":"OPC_RELATIONSHIPS_SIGNING_OPTION","features":[513]},{"name":"OPC_RELATIONSHIP_SELECTOR","features":[513]},{"name":"OPC_RELATIONSHIP_SELECT_BY_ID","features":[513]},{"name":"OPC_RELATIONSHIP_SELECT_BY_TYPE","features":[513]},{"name":"OPC_RELATIONSHIP_SIGN_PART","features":[513]},{"name":"OPC_RELATIONSHIP_SIGN_USING_SELECTORS","features":[513]},{"name":"OPC_SIGNATURE_INVALID","features":[513]},{"name":"OPC_SIGNATURE_TIME_FORMAT","features":[513]},{"name":"OPC_SIGNATURE_TIME_FORMAT_DAYS","features":[513]},{"name":"OPC_SIGNATURE_TIME_FORMAT_MILLISECONDS","features":[513]},{"name":"OPC_SIGNATURE_TIME_FORMAT_MINUTES","features":[513]},{"name":"OPC_SIGNATURE_TIME_FORMAT_MONTHS","features":[513]},{"name":"OPC_SIGNATURE_TIME_FORMAT_SECONDS","features":[513]},{"name":"OPC_SIGNATURE_TIME_FORMAT_YEARS","features":[513]},{"name":"OPC_SIGNATURE_VALID","features":[513]},{"name":"OPC_SIGNATURE_VALIDATION_RESULT","features":[513]},{"name":"OPC_STREAM_IO_MODE","features":[513]},{"name":"OPC_STREAM_IO_READ","features":[513]},{"name":"OPC_STREAM_IO_WRITE","features":[513]},{"name":"OPC_URI_TARGET_MODE","features":[513]},{"name":"OPC_URI_TARGET_MODE_EXTERNAL","features":[513]},{"name":"OPC_URI_TARGET_MODE_INTERNAL","features":[513]},{"name":"OPC_VALIDATE_ON_LOAD","features":[513]},{"name":"OPC_WRITE_DEFAULT","features":[513]},{"name":"OPC_WRITE_FLAGS","features":[513]},{"name":"OPC_WRITE_FORCE_ZIP32","features":[513]},{"name":"OpcFactory","features":[513]}],"521":[{"name":"PRJ_CALLBACKS","features":[303,514]},{"name":"PRJ_CALLBACK_DATA","features":[514]},{"name":"PRJ_CALLBACK_DATA_FLAGS","features":[514]},{"name":"PRJ_CANCEL_COMMAND_CB","features":[514]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RESTART_SCAN","features":[514]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RETURN_SINGLE_ENTRY","features":[514]},{"name":"PRJ_COMPLETE_COMMAND_EXTENDED_PARAMETERS","features":[514]},{"name":"PRJ_COMPLETE_COMMAND_TYPE","features":[514]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_ENUMERATION","features":[514]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_NOTIFICATION","features":[514]},{"name":"PRJ_DIR_ENTRY_BUFFER_HANDLE","features":[514]},{"name":"PRJ_END_DIRECTORY_ENUMERATION_CB","features":[514]},{"name":"PRJ_EXTENDED_INFO","features":[514]},{"name":"PRJ_EXT_INFO_TYPE","features":[514]},{"name":"PRJ_EXT_INFO_TYPE_SYMLINK","features":[514]},{"name":"PRJ_FILE_BASIC_INFO","features":[303,514]},{"name":"PRJ_FILE_STATE","features":[514]},{"name":"PRJ_FILE_STATE_DIRTY_PLACEHOLDER","features":[514]},{"name":"PRJ_FILE_STATE_FULL","features":[514]},{"name":"PRJ_FILE_STATE_HYDRATED_PLACEHOLDER","features":[514]},{"name":"PRJ_FILE_STATE_PLACEHOLDER","features":[514]},{"name":"PRJ_FILE_STATE_TOMBSTONE","features":[514]},{"name":"PRJ_FLAG_NONE","features":[514]},{"name":"PRJ_FLAG_USE_NEGATIVE_PATH_CACHE","features":[514]},{"name":"PRJ_GET_DIRECTORY_ENUMERATION_CB","features":[514]},{"name":"PRJ_GET_FILE_DATA_CB","features":[514]},{"name":"PRJ_GET_PLACEHOLDER_INFO_CB","features":[514]},{"name":"PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT","features":[514]},{"name":"PRJ_NOTIFICATION","features":[514]},{"name":"PRJ_NOTIFICATION_CB","features":[303,514]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_DELETED","features":[514]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[514]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[514]},{"name":"PRJ_NOTIFICATION_FILE_OPENED","features":[514]},{"name":"PRJ_NOTIFICATION_FILE_OVERWRITTEN","features":[514]},{"name":"PRJ_NOTIFICATION_FILE_PRE_CONVERT_TO_FULL","features":[514]},{"name":"PRJ_NOTIFICATION_FILE_RENAMED","features":[514]},{"name":"PRJ_NOTIFICATION_HARDLINK_CREATED","features":[514]},{"name":"PRJ_NOTIFICATION_MAPPING","features":[514]},{"name":"PRJ_NOTIFICATION_NEW_FILE_CREATED","features":[514]},{"name":"PRJ_NOTIFICATION_PARAMETERS","features":[303,514]},{"name":"PRJ_NOTIFICATION_PRE_DELETE","features":[514]},{"name":"PRJ_NOTIFICATION_PRE_RENAME","features":[514]},{"name":"PRJ_NOTIFICATION_PRE_SET_HARDLINK","features":[514]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_DELETED","features":[514]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[514]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[514]},{"name":"PRJ_NOTIFY_FILE_OPENED","features":[514]},{"name":"PRJ_NOTIFY_FILE_OVERWRITTEN","features":[514]},{"name":"PRJ_NOTIFY_FILE_PRE_CONVERT_TO_FULL","features":[514]},{"name":"PRJ_NOTIFY_FILE_RENAMED","features":[514]},{"name":"PRJ_NOTIFY_HARDLINK_CREATED","features":[514]},{"name":"PRJ_NOTIFY_NEW_FILE_CREATED","features":[514]},{"name":"PRJ_NOTIFY_NONE","features":[514]},{"name":"PRJ_NOTIFY_PRE_DELETE","features":[514]},{"name":"PRJ_NOTIFY_PRE_RENAME","features":[514]},{"name":"PRJ_NOTIFY_PRE_SET_HARDLINK","features":[514]},{"name":"PRJ_NOTIFY_SUPPRESS_NOTIFICATIONS","features":[514]},{"name":"PRJ_NOTIFY_TYPES","features":[514]},{"name":"PRJ_NOTIFY_USE_EXISTING_MASK","features":[514]},{"name":"PRJ_PLACEHOLDER_ID","features":[514]},{"name":"PRJ_PLACEHOLDER_ID_LENGTH","features":[514]},{"name":"PRJ_PLACEHOLDER_INFO","features":[303,514]},{"name":"PRJ_PLACEHOLDER_VERSION_INFO","features":[514]},{"name":"PRJ_QUERY_FILE_NAME_CB","features":[514]},{"name":"PRJ_STARTVIRTUALIZING_FLAGS","features":[514]},{"name":"PRJ_STARTVIRTUALIZING_OPTIONS","features":[514]},{"name":"PRJ_START_DIRECTORY_ENUMERATION_CB","features":[514]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_DATA","features":[514]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_METADATA","features":[514]},{"name":"PRJ_UPDATE_ALLOW_READ_ONLY","features":[514]},{"name":"PRJ_UPDATE_ALLOW_TOMBSTONE","features":[514]},{"name":"PRJ_UPDATE_FAILURE_CAUSES","features":[514]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_DATA","features":[514]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_METADATA","features":[514]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_NONE","features":[514]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_READ_ONLY","features":[514]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_TOMBSTONE","features":[514]},{"name":"PRJ_UPDATE_MAX_VAL","features":[514]},{"name":"PRJ_UPDATE_NONE","features":[514]},{"name":"PRJ_UPDATE_RESERVED1","features":[514]},{"name":"PRJ_UPDATE_RESERVED2","features":[514]},{"name":"PRJ_UPDATE_TYPES","features":[514]},{"name":"PRJ_VIRTUALIZATION_INSTANCE_INFO","features":[514]},{"name":"PrjAllocateAlignedBuffer","features":[514]},{"name":"PrjClearNegativePathCache","features":[514]},{"name":"PrjCompleteCommand","features":[514]},{"name":"PrjDeleteFile","features":[514]},{"name":"PrjDoesNameContainWildCards","features":[303,514]},{"name":"PrjFileNameCompare","features":[514]},{"name":"PrjFileNameMatch","features":[303,514]},{"name":"PrjFillDirEntryBuffer","features":[303,514]},{"name":"PrjFillDirEntryBuffer2","features":[303,514]},{"name":"PrjFreeAlignedBuffer","features":[514]},{"name":"PrjGetOnDiskFileState","features":[514]},{"name":"PrjGetVirtualizationInstanceInfo","features":[514]},{"name":"PrjMarkDirectoryAsPlaceholder","features":[514]},{"name":"PrjStartVirtualizing","features":[303,514]},{"name":"PrjStopVirtualizing","features":[514]},{"name":"PrjUpdateFileIfNeeded","features":[303,514]},{"name":"PrjWriteFileData","features":[514]},{"name":"PrjWritePlaceholderInfo","features":[303,514]},{"name":"PrjWritePlaceholderInfo2","features":[303,514]}],"522":[{"name":"JET_API_PTR","features":[509]},{"name":"JET_HANDLE","features":[509]},{"name":"JET_INSTANCE","features":[509]},{"name":"JET_SESID","features":[509]},{"name":"JET_TABLEID","features":[509]}],"523":[{"name":"APPLY_SNAPSHOT_VHDSET_FLAG","features":[515]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_NONE","features":[515]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[515]},{"name":"APPLY_SNAPSHOT_VHDSET_PARAMETERS","features":[515]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION","features":[515]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_1","features":[515]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_AT_BOOT","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_BYPASS_DEFAULT_ENCRYPTION_POLICY","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NON_PNP","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_DRIVE_LETTER","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_LOCAL_HOST","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_SECURITY_DESCRIPTOR","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_PERMANENT_LIFETIME","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_READ_ONLY","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_REGISTER_VOLUME","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_RESTRICTED_RANGE","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_SINGLE_PARTITION","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_VERSION","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_2","features":[515]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"AddVirtualDiskParent","features":[303,515]},{"name":"ApplySnapshotVhdSet","features":[303,515]},{"name":"AttachVirtualDisk","features":[303,306,515,308]},{"name":"BreakMirrorVirtualDisk","features":[303,515]},{"name":"COMPACT_VIRTUAL_DISK_FLAG","features":[515]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_BLOCK_MOVES","features":[515]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_ZERO_SCAN","features":[515]},{"name":"COMPACT_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"COMPACT_VIRTUAL_DISK_VERSION","features":[515]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_CREATE_BACKING_STORAGE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_DO_NOT_COPY_METADATA_FROM_PARENT","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_FULL_PHYSICAL_ALLOCATION","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PMEM_COMPATIBLE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PRESERVE_PARENT_CHANGE_TRACKING_STATE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PREVENT_WRITES_TO_SOURCE_DISK","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SPARSE_FILE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_USE_CHANGE_TRACKING_SOURCE_LIMIT","features":[515]},{"name":"CREATE_VIRTUAL_DISK_FLAG_VHD_SET_USE_ORIGINAL_BACKING_STORAGE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_BLOCK_SIZE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_SECTOR_SIZE","features":[515]},{"name":"CREATE_VIRTUAL_DISK_VERSION","features":[515]},{"name":"CREATE_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"CREATE_VIRTUAL_DISK_VERSION_2","features":[515]},{"name":"CREATE_VIRTUAL_DISK_VERSION_3","features":[515]},{"name":"CREATE_VIRTUAL_DISK_VERSION_4","features":[515]},{"name":"CREATE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"CompactVirtualDisk","features":[303,515,308]},{"name":"CompleteForkVirtualDisk","features":[303,515]},{"name":"CreateVirtualDisk","features":[303,306,515,308]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG","features":[515]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_NONE","features":[515]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_PERSIST_RCT","features":[515]},{"name":"DELETE_SNAPSHOT_VHDSET_PARAMETERS","features":[515]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION","features":[515]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_1","features":[515]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[515]},{"name":"DEPENDENT_DISK_FLAG","features":[515]},{"name":"DEPENDENT_DISK_FLAG_ALWAYS_ALLOW_SPARSE","features":[515]},{"name":"DEPENDENT_DISK_FLAG_FULLY_ALLOCATED","features":[515]},{"name":"DEPENDENT_DISK_FLAG_MULT_BACKING_FILES","features":[515]},{"name":"DEPENDENT_DISK_FLAG_NONE","features":[515]},{"name":"DEPENDENT_DISK_FLAG_NO_DRIVE_LETTER","features":[515]},{"name":"DEPENDENT_DISK_FLAG_NO_HOST_DISK","features":[515]},{"name":"DEPENDENT_DISK_FLAG_PARENT","features":[515]},{"name":"DEPENDENT_DISK_FLAG_PERMANENT_LIFETIME","features":[515]},{"name":"DEPENDENT_DISK_FLAG_READ_ONLY","features":[515]},{"name":"DEPENDENT_DISK_FLAG_REMOTE","features":[515]},{"name":"DEPENDENT_DISK_FLAG_REMOVABLE","features":[515]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[515]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[515]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME","features":[515]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME_PARENT","features":[515]},{"name":"DETACH_VIRTUAL_DISK_FLAG","features":[515]},{"name":"DETACH_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"DeleteSnapshotVhdSet","features":[303,515]},{"name":"DeleteVirtualDiskMetadata","features":[303,515]},{"name":"DetachVirtualDisk","features":[303,515]},{"name":"EXPAND_VIRTUAL_DISK_FLAG","features":[515]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NOTIFY_CHANGE","features":[515]},{"name":"EXPAND_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"EXPAND_VIRTUAL_DISK_VERSION","features":[515]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"EnumerateVirtualDiskMetadata","features":[303,515]},{"name":"ExpandVirtualDisk","features":[303,515,308]},{"name":"FORK_VIRTUAL_DISK_FLAG","features":[515]},{"name":"FORK_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[515]},{"name":"FORK_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"FORK_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"FORK_VIRTUAL_DISK_VERSION","features":[515]},{"name":"FORK_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"FORK_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"ForkVirtualDisk","features":[303,515,308]},{"name":"GET_STORAGE_DEPENDENCY_FLAG","features":[515]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_DISK_HANDLE","features":[515]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_HOST_VOLUMES","features":[515]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_NONE","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO","features":[303,515]},{"name":"GET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_FRAGMENTATION","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_IS_4K_ALIGNED","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_IS_LOADED","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_IDENTIFIER","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_LOCATION","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_TIMESTAMP","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_PHYSICAL_DISK","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_PROVIDER_SUBTYPE","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_SIZE","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_VERSION","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_VHD_PHYSICAL_SECTOR_SIZE","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[515]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_STORAGE_TYPE","features":[515]},{"name":"GetAllAttachedVirtualDiskPhysicalPaths","features":[303,515]},{"name":"GetStorageDependencyInformation","features":[303,515]},{"name":"GetVirtualDiskInformation","features":[303,515]},{"name":"GetVirtualDiskMetadata","features":[303,515]},{"name":"GetVirtualDiskOperationProgress","features":[303,515,308]},{"name":"GetVirtualDiskPhysicalPath","features":[303,515]},{"name":"MERGE_VIRTUAL_DISK_DEFAULT_MERGE_DEPTH","features":[515]},{"name":"MERGE_VIRTUAL_DISK_FLAG","features":[515]},{"name":"MERGE_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"MERGE_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"MERGE_VIRTUAL_DISK_VERSION","features":[515]},{"name":"MERGE_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"MERGE_VIRTUAL_DISK_VERSION_2","features":[515]},{"name":"MERGE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_FLAG","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_ENABLE_SMB_COMPRESSION","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_IS_LIVE_MIGRATION","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_SKIP_MIRROR_ACTIVATION","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_VERSION","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"MODIFY_VHDSET_DEFAULT_SNAPSHOT_PATH","features":[515]},{"name":"MODIFY_VHDSET_FLAG","features":[515]},{"name":"MODIFY_VHDSET_FLAG_NONE","features":[515]},{"name":"MODIFY_VHDSET_FLAG_WRITEABLE_SNAPSHOT","features":[515]},{"name":"MODIFY_VHDSET_PARAMETERS","features":[515]},{"name":"MODIFY_VHDSET_REMOVE_SNAPSHOT","features":[515]},{"name":"MODIFY_VHDSET_SNAPSHOT_PATH","features":[515]},{"name":"MODIFY_VHDSET_UNSPECIFIED","features":[515]},{"name":"MODIFY_VHDSET_VERSION","features":[515]},{"name":"MergeVirtualDisk","features":[303,515,308]},{"name":"MirrorVirtualDisk","features":[303,515,308]},{"name":"ModifyVhdSet","features":[303,515]},{"name":"OPEN_VIRTUAL_DISK_FLAG","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BLANK_FILE","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BOOT_DRIVE","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CACHED_IO","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CUSTOM_DIFF_CHAIN","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_IGNORE_RELATIVE_PARENT_LOCATOR","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_PARENTS","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_WRITE_HARDENING","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_PARENT_CACHED_IO","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[515]},{"name":"OPEN_VIRTUAL_DISK_FLAG_VHDSET_FILE_ONLY","features":[515]},{"name":"OPEN_VIRTUAL_DISK_PARAMETERS","features":[303,515]},{"name":"OPEN_VIRTUAL_DISK_RW_DEPTH_DEFAULT","features":[515]},{"name":"OPEN_VIRTUAL_DISK_VERSION","features":[515]},{"name":"OPEN_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"OPEN_VIRTUAL_DISK_VERSION_2","features":[515]},{"name":"OPEN_VIRTUAL_DISK_VERSION_3","features":[515]},{"name":"OPEN_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"OpenVirtualDisk","features":[303,515]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG","features":[515]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_RANGE","features":[515]},{"name":"QueryChangesVirtualDisk","features":[303,515]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG","features":[515]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"RAW_SCSI_VIRTUAL_DISK_PARAMETERS","features":[303,515]},{"name":"RAW_SCSI_VIRTUAL_DISK_RESPONSE","features":[515]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION","features":[515]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_FLAG","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_ALLOW_UNSAFE_VIRTUAL_SIZE","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_NONE","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_RESIZE_TO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_PARAMETERS","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_VERSION","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_1","features":[515]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[515]},{"name":"RawSCSIVirtualDisk","features":[303,515]},{"name":"ResizeVirtualDisk","features":[303,515,308]},{"name":"SET_VIRTUAL_DISK_INFO","features":[303,515]},{"name":"SET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_LOCATOR","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH_WITH_DEPTH","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_PHYSICAL_SECTOR_SIZE","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_VERSION","features":[515]},{"name":"SET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[515]},{"name":"STORAGE_DEPENDENCY_INFO","features":[515]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_1","features":[515]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_2","features":[515]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION","features":[515]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_1","features":[515]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_2","features":[515]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_UNSPECIFIED","features":[515]},{"name":"SetVirtualDiskInformation","features":[303,515]},{"name":"SetVirtualDiskMetadata","features":[303,515]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG","features":[515]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_NONE","features":[515]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[515]},{"name":"TAKE_SNAPSHOT_VHDSET_PARAMETERS","features":[515]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION","features":[515]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_1","features":[515]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[515]},{"name":"TakeSnapshotVhdSet","features":[303,515]},{"name":"VIRTUAL_DISK_ACCESS_ALL","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RO","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RW","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_CREATE","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_DETACH","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_GET_INFO","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_MASK","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_METAOPS","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_NONE","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_READ","features":[515]},{"name":"VIRTUAL_DISK_ACCESS_WRITABLE","features":[515]},{"name":"VIRTUAL_DISK_MAXIMUM_CHANGE_TRACKING_ID_LENGTH","features":[515]},{"name":"VIRTUAL_DISK_PROGRESS","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_ISO","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_UNKNOWN","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHD","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDSET","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDX","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_MICROSOFT","features":[515]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_UNKNOWN","features":[515]}],"524":[{"name":"BeepAlarm","features":[516]},{"name":"BlinkLight","features":[516]},{"name":"CHANGE_ATTRIBUTES_PARAMETERS","features":[303,516]},{"name":"CHANGE_PARTITION_TYPE_PARAMETERS","features":[516]},{"name":"CLSID_VdsLoader","features":[516]},{"name":"CLSID_VdsService","features":[516]},{"name":"CREATE_PARTITION_PARAMETERS","features":[303,516]},{"name":"GPT_PARTITION_NAME_LENGTH","features":[516]},{"name":"IEnumVdsObject","features":[516]},{"name":"IVdsAdmin","features":[516]},{"name":"IVdsAdvancedDisk","features":[516]},{"name":"IVdsAdvancedDisk2","features":[516]},{"name":"IVdsAdvancedDisk3","features":[516]},{"name":"IVdsAdviseSink","features":[516]},{"name":"IVdsAsync","features":[516]},{"name":"IVdsController","features":[516]},{"name":"IVdsControllerControllerPort","features":[516]},{"name":"IVdsControllerPort","features":[516]},{"name":"IVdsCreatePartitionEx","features":[516]},{"name":"IVdsDisk","features":[516]},{"name":"IVdsDisk2","features":[516]},{"name":"IVdsDisk3","features":[516]},{"name":"IVdsDiskOnline","features":[516]},{"name":"IVdsDiskPartitionMF","features":[516]},{"name":"IVdsDiskPartitionMF2","features":[516]},{"name":"IVdsDrive","features":[516]},{"name":"IVdsDrive2","features":[516]},{"name":"IVdsHbaPort","features":[516]},{"name":"IVdsHwProvider","features":[516]},{"name":"IVdsHwProviderPrivate","features":[516]},{"name":"IVdsHwProviderPrivateMpio","features":[516]},{"name":"IVdsHwProviderStoragePools","features":[516]},{"name":"IVdsHwProviderType","features":[516]},{"name":"IVdsHwProviderType2","features":[516]},{"name":"IVdsIscsiInitiatorAdapter","features":[516]},{"name":"IVdsIscsiInitiatorPortal","features":[516]},{"name":"IVdsIscsiPortal","features":[516]},{"name":"IVdsIscsiPortalGroup","features":[516]},{"name":"IVdsIscsiPortalLocal","features":[516]},{"name":"IVdsIscsiTarget","features":[516]},{"name":"IVdsLun","features":[516]},{"name":"IVdsLun2","features":[516]},{"name":"IVdsLunControllerPorts","features":[516]},{"name":"IVdsLunIscsi","features":[516]},{"name":"IVdsLunMpio","features":[516]},{"name":"IVdsLunNaming","features":[516]},{"name":"IVdsLunNumber","features":[516]},{"name":"IVdsLunPlex","features":[516]},{"name":"IVdsMaintenance","features":[516]},{"name":"IVdsOpenVDisk","features":[516]},{"name":"IVdsPack","features":[516]},{"name":"IVdsPack2","features":[516]},{"name":"IVdsProvider","features":[516]},{"name":"IVdsProviderPrivate","features":[516]},{"name":"IVdsProviderSupport","features":[516]},{"name":"IVdsRemovable","features":[516]},{"name":"IVdsService","features":[516]},{"name":"IVdsServiceHba","features":[516]},{"name":"IVdsServiceInitialization","features":[516]},{"name":"IVdsServiceIscsi","features":[516]},{"name":"IVdsServiceLoader","features":[516]},{"name":"IVdsServiceSAN","features":[516]},{"name":"IVdsServiceSw","features":[516]},{"name":"IVdsServiceUninstallDisk","features":[516]},{"name":"IVdsStoragePool","features":[516]},{"name":"IVdsSubSystem","features":[516]},{"name":"IVdsSubSystem2","features":[516]},{"name":"IVdsSubSystemImportTarget","features":[516]},{"name":"IVdsSubSystemInterconnect","features":[516]},{"name":"IVdsSubSystemIscsi","features":[516]},{"name":"IVdsSubSystemNaming","features":[516]},{"name":"IVdsSwProvider","features":[516]},{"name":"IVdsVDisk","features":[516]},{"name":"IVdsVdProvider","features":[516]},{"name":"IVdsVolume","features":[516]},{"name":"IVdsVolume2","features":[516]},{"name":"IVdsVolumeMF","features":[516]},{"name":"IVdsVolumeMF2","features":[516]},{"name":"IVdsVolumeMF3","features":[516]},{"name":"IVdsVolumeOnline","features":[516]},{"name":"IVdsVolumePlex","features":[516]},{"name":"IVdsVolumeShrink","features":[516]},{"name":"MAX_FS_ALLOWED_CLUSTER_SIZES_SIZE","features":[516]},{"name":"MAX_FS_FORMAT_SUPPORT_NAME_SIZE","features":[516]},{"name":"MAX_FS_NAME_SIZE","features":[516]},{"name":"Ping","features":[516]},{"name":"SpinDown","features":[516]},{"name":"SpinUp","features":[516]},{"name":"VDSBusType1394","features":[516]},{"name":"VDSBusTypeAta","features":[516]},{"name":"VDSBusTypeAtapi","features":[516]},{"name":"VDSBusTypeFibre","features":[516]},{"name":"VDSBusTypeFileBackedVirtual","features":[516]},{"name":"VDSBusTypeMax","features":[516]},{"name":"VDSBusTypeMaxReserved","features":[516]},{"name":"VDSBusTypeMmc","features":[516]},{"name":"VDSBusTypeNVMe","features":[516]},{"name":"VDSBusTypeRAID","features":[516]},{"name":"VDSBusTypeSas","features":[516]},{"name":"VDSBusTypeSata","features":[516]},{"name":"VDSBusTypeScm","features":[516]},{"name":"VDSBusTypeScsi","features":[516]},{"name":"VDSBusTypeSd","features":[516]},{"name":"VDSBusTypeSpaces","features":[516]},{"name":"VDSBusTypeSsa","features":[516]},{"name":"VDSBusTypeUfs","features":[516]},{"name":"VDSBusTypeUnknown","features":[516]},{"name":"VDSBusTypeUsb","features":[516]},{"name":"VDSBusTypeVirtual","features":[516]},{"name":"VDSBusTypeiScsi","features":[516]},{"name":"VDSDiskOfflineReasonCollision","features":[516]},{"name":"VDSDiskOfflineReasonDIScan","features":[516]},{"name":"VDSDiskOfflineReasonLostDataPersistence","features":[516]},{"name":"VDSDiskOfflineReasonNone","features":[516]},{"name":"VDSDiskOfflineReasonPolicy","features":[516]},{"name":"VDSDiskOfflineReasonRedundantPath","features":[516]},{"name":"VDSDiskOfflineReasonResourceExhaustion","features":[516]},{"name":"VDSDiskOfflineReasonSnapshot","features":[516]},{"name":"VDSDiskOfflineReasonWriteFailure","features":[516]},{"name":"VDSStorageIdCodeSetAscii","features":[516]},{"name":"VDSStorageIdCodeSetBinary","features":[516]},{"name":"VDSStorageIdCodeSetReserved","features":[516]},{"name":"VDSStorageIdCodeSetUtf8","features":[516]},{"name":"VDSStorageIdTypeEUI64","features":[516]},{"name":"VDSStorageIdTypeFCPHName","features":[516]},{"name":"VDSStorageIdTypeLogicalUnitGroup","features":[516]},{"name":"VDSStorageIdTypeMD5LogicalUnitIdentifier","features":[516]},{"name":"VDSStorageIdTypePortRelative","features":[516]},{"name":"VDSStorageIdTypeScsiNameString","features":[516]},{"name":"VDSStorageIdTypeTargetPortGroup","features":[516]},{"name":"VDSStorageIdTypeVendorId","features":[516]},{"name":"VDSStorageIdTypeVendorSpecific","features":[516]},{"name":"VDS_ADVANCEDDISK_PROP","features":[516]},{"name":"VDS_ASYNCOUT_ADDLUNPLEX","features":[516]},{"name":"VDS_ASYNCOUT_ADDPORTAL","features":[516]},{"name":"VDS_ASYNCOUT_ADDVOLUMEPLEX","features":[516]},{"name":"VDS_ASYNCOUT_ATTACH_VDISK","features":[516]},{"name":"VDS_ASYNCOUT_BREAKVOLUMEPLEX","features":[516]},{"name":"VDS_ASYNCOUT_CLEAN","features":[516]},{"name":"VDS_ASYNCOUT_COMPACT_VDISK","features":[516]},{"name":"VDS_ASYNCOUT_CREATELUN","features":[516]},{"name":"VDS_ASYNCOUT_CREATEPARTITION","features":[516]},{"name":"VDS_ASYNCOUT_CREATEPORTALGROUP","features":[516]},{"name":"VDS_ASYNCOUT_CREATETARGET","features":[516]},{"name":"VDS_ASYNCOUT_CREATEVOLUME","features":[516]},{"name":"VDS_ASYNCOUT_CREATE_VDISK","features":[516]},{"name":"VDS_ASYNCOUT_DELETEPORTALGROUP","features":[516]},{"name":"VDS_ASYNCOUT_DELETETARGET","features":[516]},{"name":"VDS_ASYNCOUT_EXPAND_VDISK","features":[516]},{"name":"VDS_ASYNCOUT_EXTENDLUN","features":[516]},{"name":"VDS_ASYNCOUT_EXTENDVOLUME","features":[516]},{"name":"VDS_ASYNCOUT_FORMAT","features":[516]},{"name":"VDS_ASYNCOUT_LOGINTOTARGET","features":[516]},{"name":"VDS_ASYNCOUT_LOGOUTFROMTARGET","features":[516]},{"name":"VDS_ASYNCOUT_MERGE_VDISK","features":[516]},{"name":"VDS_ASYNCOUT_RECOVERLUN","features":[516]},{"name":"VDS_ASYNCOUT_RECOVERPACK","features":[516]},{"name":"VDS_ASYNCOUT_REMOVELUNPLEX","features":[516]},{"name":"VDS_ASYNCOUT_REMOVEPORTAL","features":[516]},{"name":"VDS_ASYNCOUT_REMOVEVOLUMEPLEX","features":[516]},{"name":"VDS_ASYNCOUT_REPAIRVOLUMEPLEX","features":[516]},{"name":"VDS_ASYNCOUT_REPLACEDISK","features":[516]},{"name":"VDS_ASYNCOUT_SHRINKLUN","features":[516]},{"name":"VDS_ASYNCOUT_SHRINKVOLUME","features":[516]},{"name":"VDS_ASYNCOUT_UNKNOWN","features":[516]},{"name":"VDS_ASYNC_OUTPUT","features":[516]},{"name":"VDS_ASYNC_OUTPUT_TYPE","features":[516]},{"name":"VDS_ATTACH_VIRTUAL_DISK_FLAG_USE_FILE_ACL","features":[516]},{"name":"VDS_CONTROLLER_NOTIFICATION","features":[516]},{"name":"VDS_CONTROLLER_PROP","features":[516]},{"name":"VDS_CONTROLLER_STATUS","features":[516]},{"name":"VDS_CREATE_VDISK_PARAMETERS","features":[516]},{"name":"VDS_CS_FAILED","features":[516]},{"name":"VDS_CS_NOT_READY","features":[516]},{"name":"VDS_CS_OFFLINE","features":[516]},{"name":"VDS_CS_ONLINE","features":[516]},{"name":"VDS_CS_REMOVED","features":[516]},{"name":"VDS_CS_UNKNOWN","features":[516]},{"name":"VDS_DET_CLUSTER","features":[516]},{"name":"VDS_DET_DATA","features":[516]},{"name":"VDS_DET_ESP","features":[516]},{"name":"VDS_DET_FREE","features":[516]},{"name":"VDS_DET_LDM","features":[516]},{"name":"VDS_DET_MSR","features":[516]},{"name":"VDS_DET_OEM","features":[516]},{"name":"VDS_DET_UNKNOWN","features":[516]},{"name":"VDS_DET_UNUSABLE","features":[516]},{"name":"VDS_DF_AUDIO_CD","features":[516]},{"name":"VDS_DF_BOOT_DISK","features":[516]},{"name":"VDS_DF_BOOT_FROM_DISK","features":[516]},{"name":"VDS_DF_CLUSTERED","features":[516]},{"name":"VDS_DF_CRASHDUMP_DISK","features":[516]},{"name":"VDS_DF_CURRENT_READ_ONLY","features":[516]},{"name":"VDS_DF_DYNAMIC","features":[516]},{"name":"VDS_DF_HAS_ARC_PATH","features":[516]},{"name":"VDS_DF_HIBERNATIONFILE_DISK","features":[516]},{"name":"VDS_DF_HOTSPARE","features":[516]},{"name":"VDS_DF_MASKED","features":[516]},{"name":"VDS_DF_PAGEFILE_DISK","features":[516]},{"name":"VDS_DF_READ_ONLY","features":[516]},{"name":"VDS_DF_REFS_NOT_SUPPORTED","features":[516]},{"name":"VDS_DF_RESERVE_CAPABLE","features":[516]},{"name":"VDS_DF_STYLE_CONVERTIBLE","features":[516]},{"name":"VDS_DF_SYSTEM_DISK","features":[516]},{"name":"VDS_DISK_EXTENT","features":[516]},{"name":"VDS_DISK_EXTENT_TYPE","features":[516]},{"name":"VDS_DISK_FLAG","features":[516]},{"name":"VDS_DISK_FREE_EXTENT","features":[516]},{"name":"VDS_DISK_NOTIFICATION","features":[516]},{"name":"VDS_DISK_OFFLINE_REASON","features":[516]},{"name":"VDS_DISK_PROP","features":[516]},{"name":"VDS_DISK_PROP2","features":[516]},{"name":"VDS_DISK_STATUS","features":[516]},{"name":"VDS_DLF_NON_PERSISTENT","features":[516]},{"name":"VDS_DRF_ASSIGNED","features":[516]},{"name":"VDS_DRF_HOTSPARE","features":[516]},{"name":"VDS_DRF_HOTSPARE_IN_USE","features":[516]},{"name":"VDS_DRF_HOTSPARE_STANDBY","features":[516]},{"name":"VDS_DRF_UNASSIGNED","features":[516]},{"name":"VDS_DRIVE_EXTENT","features":[303,516]},{"name":"VDS_DRIVE_FLAG","features":[516]},{"name":"VDS_DRIVE_LETTER_FLAG","features":[516]},{"name":"VDS_DRIVE_LETTER_NOTIFICATION","features":[516]},{"name":"VDS_DRIVE_LETTER_PROP","features":[303,516]},{"name":"VDS_DRIVE_NOTIFICATION","features":[516]},{"name":"VDS_DRIVE_PROP","features":[516]},{"name":"VDS_DRIVE_PROP2","features":[516]},{"name":"VDS_DRIVE_STATUS","features":[516]},{"name":"VDS_DRS_FAILED","features":[516]},{"name":"VDS_DRS_NOT_READY","features":[516]},{"name":"VDS_DRS_OFFLINE","features":[516]},{"name":"VDS_DRS_ONLINE","features":[516]},{"name":"VDS_DRS_REMOVED","features":[516]},{"name":"VDS_DRS_UNKNOWN","features":[516]},{"name":"VDS_DS_FAILED","features":[516]},{"name":"VDS_DS_MISSING","features":[516]},{"name":"VDS_DS_NOT_READY","features":[516]},{"name":"VDS_DS_NO_MEDIA","features":[516]},{"name":"VDS_DS_OFFLINE","features":[516]},{"name":"VDS_DS_ONLINE","features":[516]},{"name":"VDS_DS_UNKNOWN","features":[516]},{"name":"VDS_E_ACCESS_DENIED","features":[516]},{"name":"VDS_E_ACTIVE_PARTITION","features":[516]},{"name":"VDS_E_ADDRESSES_INCOMPLETELY_SET","features":[516]},{"name":"VDS_E_ALIGN_BEYOND_FIRST_CYLINDER","features":[516]},{"name":"VDS_E_ALIGN_IS_ZERO","features":[516]},{"name":"VDS_E_ALIGN_NOT_A_POWER_OF_TWO","features":[516]},{"name":"VDS_E_ALIGN_NOT_SECTOR_SIZE_MULTIPLE","features":[516]},{"name":"VDS_E_ALIGN_NOT_ZERO","features":[516]},{"name":"VDS_E_ALREADY_REGISTERED","features":[516]},{"name":"VDS_E_ANOTHER_CALL_IN_PROGRESS","features":[516]},{"name":"VDS_E_ASSOCIATED_LUNS_EXIST","features":[516]},{"name":"VDS_E_ASSOCIATED_PORTALS_EXIST","features":[516]},{"name":"VDS_E_ASYNC_OBJECT_FAILURE","features":[516]},{"name":"VDS_E_BAD_BOOT_DISK","features":[516]},{"name":"VDS_E_BAD_COOKIE","features":[516]},{"name":"VDS_E_BAD_LABEL","features":[516]},{"name":"VDS_E_BAD_PNP_MESSAGE","features":[516]},{"name":"VDS_E_BAD_PROVIDER_DATA","features":[516]},{"name":"VDS_E_BAD_REVISION_NUMBER","features":[516]},{"name":"VDS_E_BLOCK_CLUSTERED","features":[516]},{"name":"VDS_E_BOOT_DISK","features":[516]},{"name":"VDS_E_BOOT_PAGEFILE_DRIVE_LETTER","features":[516]},{"name":"VDS_E_BOOT_PARTITION_NUMBER_CHANGE","features":[516]},{"name":"VDS_E_CACHE_CORRUPT","features":[516]},{"name":"VDS_E_CANCEL_TOO_LATE","features":[516]},{"name":"VDS_E_CANNOT_CLEAR_VOLUME_FLAG","features":[516]},{"name":"VDS_E_CANNOT_EXTEND","features":[516]},{"name":"VDS_E_CANNOT_SHRINK","features":[516]},{"name":"VDS_E_CANT_INVALIDATE_FVE","features":[516]},{"name":"VDS_E_CANT_QUICK_FORMAT","features":[516]},{"name":"VDS_E_CLEAN_WITH_BOOTBACKING","features":[516]},{"name":"VDS_E_CLEAN_WITH_CRITICAL","features":[516]},{"name":"VDS_E_CLEAN_WITH_DATA","features":[516]},{"name":"VDS_E_CLEAN_WITH_OEM","features":[516]},{"name":"VDS_E_CLUSTER_COUNT_BEYOND_32BITS","features":[516]},{"name":"VDS_E_CLUSTER_SIZE_TOO_BIG","features":[516]},{"name":"VDS_E_CLUSTER_SIZE_TOO_SMALL","features":[516]},{"name":"VDS_E_COMPRESSION_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_CONFIG_LIMIT","features":[516]},{"name":"VDS_E_CORRUPT_EXTENT_INFO","features":[516]},{"name":"VDS_E_CORRUPT_NOTIFICATION_INFO","features":[516]},{"name":"VDS_E_CORRUPT_PARTITION_INFO","features":[516]},{"name":"VDS_E_CORRUPT_VOLUME_INFO","features":[516]},{"name":"VDS_E_CRASHDUMP_DISK","features":[516]},{"name":"VDS_E_CRITICAL_PLEX","features":[516]},{"name":"VDS_E_DELETE_WITH_BOOTBACKING","features":[516]},{"name":"VDS_E_DELETE_WITH_CRITICAL","features":[516]},{"name":"VDS_E_DEVICE_IN_USE","features":[516]},{"name":"VDS_E_DISK_BEING_CLEANED","features":[516]},{"name":"VDS_E_DISK_CONFIGURATION_CORRUPTED","features":[516]},{"name":"VDS_E_DISK_CONFIGURATION_NOT_IN_SYNC","features":[516]},{"name":"VDS_E_DISK_CONFIGURATION_UPDATE_FAILED","features":[516]},{"name":"VDS_E_DISK_DYNAMIC","features":[516]},{"name":"VDS_E_DISK_HAS_BANDS","features":[516]},{"name":"VDS_E_DISK_IN_USE_BY_VOLUME","features":[516]},{"name":"VDS_E_DISK_IO_FAILING","features":[516]},{"name":"VDS_E_DISK_IS_OFFLINE","features":[516]},{"name":"VDS_E_DISK_IS_READ_ONLY","features":[516]},{"name":"VDS_E_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[516]},{"name":"VDS_E_DISK_NOT_CONVERTIBLE","features":[516]},{"name":"VDS_E_DISK_NOT_CONVERTIBLE_SIZE","features":[516]},{"name":"VDS_E_DISK_NOT_EMPTY","features":[516]},{"name":"VDS_E_DISK_NOT_FOUND_IN_PACK","features":[516]},{"name":"VDS_E_DISK_NOT_IMPORTED","features":[516]},{"name":"VDS_E_DISK_NOT_INITIALIZED","features":[516]},{"name":"VDS_E_DISK_NOT_LOADED_TO_CACHE","features":[516]},{"name":"VDS_E_DISK_NOT_MISSING","features":[516]},{"name":"VDS_E_DISK_NOT_OFFLINE","features":[516]},{"name":"VDS_E_DISK_NOT_ONLINE","features":[516]},{"name":"VDS_E_DISK_PNP_REG_CORRUPT","features":[516]},{"name":"VDS_E_DISK_REMOVEABLE","features":[516]},{"name":"VDS_E_DISK_REMOVEABLE_NOT_EMPTY","features":[516]},{"name":"VDS_E_DISTINCT_VOLUME","features":[516]},{"name":"VDS_E_DMADMIN_CORRUPT_NOTIFICATION","features":[516]},{"name":"VDS_E_DMADMIN_METHOD_CALL_FAILED","features":[516]},{"name":"VDS_E_DMADMIN_SERVICE_CONNECTION_FAILED","features":[516]},{"name":"VDS_E_DRIVER_INTERNAL_ERROR","features":[516]},{"name":"VDS_E_DRIVER_INVALID_PARAM","features":[516]},{"name":"VDS_E_DRIVER_NO_PACK_NAME","features":[516]},{"name":"VDS_E_DRIVER_OBJECT_NOT_FOUND","features":[516]},{"name":"VDS_E_DRIVE_LETTER_NOT_FREE","features":[516]},{"name":"VDS_E_DUPLICATE_DISK","features":[516]},{"name":"VDS_E_DUP_EMPTY_PACK_GUID","features":[516]},{"name":"VDS_E_DYNAMIC_DISKS_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_EXTEND_FILE_SYSTEM_FAILED","features":[516]},{"name":"VDS_E_EXTEND_MULTIPLE_DISKS_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_EXTEND_TOO_MANY_CLUSTERS","features":[516]},{"name":"VDS_E_EXTEND_UNKNOWN_FILESYSTEM","features":[516]},{"name":"VDS_E_EXTENT_EXCEEDS_DISK_FREE_SPACE","features":[516]},{"name":"VDS_E_EXTENT_SIZE_LESS_THAN_MIN","features":[516]},{"name":"VDS_E_FAILED_TO_OFFLINE_DISK","features":[516]},{"name":"VDS_E_FAILED_TO_ONLINE_DISK","features":[516]},{"name":"VDS_E_FAT32_FORMAT_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_FAT_FORMAT_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_FAULT_TOLERANT_DISKS_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_FLAG_ALREADY_SET","features":[516]},{"name":"VDS_E_FORMAT_CRITICAL","features":[516]},{"name":"VDS_E_FORMAT_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_FORMAT_WITH_BOOTBACKING","features":[516]},{"name":"VDS_E_FS_NOT_DETERMINED","features":[516]},{"name":"VDS_E_GET_SAN_POLICY","features":[516]},{"name":"VDS_E_GPT_ATTRIBUTES_INVALID","features":[516]},{"name":"VDS_E_HIBERNATION_FILE_DISK","features":[516]},{"name":"VDS_E_IA64_BOOT_MIRRORED_TO_MBR","features":[516]},{"name":"VDS_E_IMPORT_SET_INCOMPLETE","features":[516]},{"name":"VDS_E_INCOMPATIBLE_FILE_SYSTEM","features":[516]},{"name":"VDS_E_INCOMPATIBLE_MEDIA","features":[516]},{"name":"VDS_E_INCORRECT_BOOT_VOLUME_EXTENT_INFO","features":[516]},{"name":"VDS_E_INCORRECT_SYSTEM_VOLUME_EXTENT_INFO","features":[516]},{"name":"VDS_E_INITIALIZED_FAILED","features":[516]},{"name":"VDS_E_INITIALIZE_NOT_CALLED","features":[516]},{"name":"VDS_E_INITIATOR_ADAPTER_NOT_FOUND","features":[516]},{"name":"VDS_E_INITIATOR_SPECIFIC_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_INTERNAL_ERROR","features":[516]},{"name":"VDS_E_INVALID_BLOCK_SIZE","features":[516]},{"name":"VDS_E_INVALID_DISK","features":[516]},{"name":"VDS_E_INVALID_DISK_COUNT","features":[516]},{"name":"VDS_E_INVALID_DRIVE_LETTER","features":[516]},{"name":"VDS_E_INVALID_DRIVE_LETTER_COUNT","features":[516]},{"name":"VDS_E_INVALID_ENUMERATOR","features":[516]},{"name":"VDS_E_INVALID_EXTENT_COUNT","features":[516]},{"name":"VDS_E_INVALID_FS_FLAG","features":[516]},{"name":"VDS_E_INVALID_FS_TYPE","features":[516]},{"name":"VDS_E_INVALID_IP_ADDRESS","features":[516]},{"name":"VDS_E_INVALID_ISCSI_PATH","features":[516]},{"name":"VDS_E_INVALID_ISCSI_TARGET_NAME","features":[516]},{"name":"VDS_E_INVALID_MEMBER_COUNT","features":[516]},{"name":"VDS_E_INVALID_MEMBER_ORDER","features":[516]},{"name":"VDS_E_INVALID_OBJECT_TYPE","features":[516]},{"name":"VDS_E_INVALID_OPERATION","features":[516]},{"name":"VDS_E_INVALID_PACK","features":[516]},{"name":"VDS_E_INVALID_PARTITION_LAYOUT","features":[516]},{"name":"VDS_E_INVALID_PARTITION_STYLE","features":[516]},{"name":"VDS_E_INVALID_PARTITION_TYPE","features":[516]},{"name":"VDS_E_INVALID_PATH","features":[516]},{"name":"VDS_E_INVALID_PLEX_BLOCK_SIZE","features":[516]},{"name":"VDS_E_INVALID_PLEX_COUNT","features":[516]},{"name":"VDS_E_INVALID_PLEX_GUID","features":[516]},{"name":"VDS_E_INVALID_PLEX_ORDER","features":[516]},{"name":"VDS_E_INVALID_PLEX_TYPE","features":[516]},{"name":"VDS_E_INVALID_PORT_PATH","features":[516]},{"name":"VDS_E_INVALID_PROVIDER_CLSID","features":[516]},{"name":"VDS_E_INVALID_PROVIDER_ID","features":[516]},{"name":"VDS_E_INVALID_PROVIDER_NAME","features":[516]},{"name":"VDS_E_INVALID_PROVIDER_TYPE","features":[516]},{"name":"VDS_E_INVALID_PROVIDER_VERSION_GUID","features":[516]},{"name":"VDS_E_INVALID_PROVIDER_VERSION_STRING","features":[516]},{"name":"VDS_E_INVALID_QUERY_PROVIDER_FLAG","features":[516]},{"name":"VDS_E_INVALID_SECTOR_SIZE","features":[516]},{"name":"VDS_E_INVALID_SERVICE_FLAG","features":[516]},{"name":"VDS_E_INVALID_SHRINK_SIZE","features":[516]},{"name":"VDS_E_INVALID_SPACE","features":[516]},{"name":"VDS_E_INVALID_STATE","features":[516]},{"name":"VDS_E_INVALID_STRIPE_SIZE","features":[516]},{"name":"VDS_E_INVALID_VOLUME_FLAG","features":[516]},{"name":"VDS_E_INVALID_VOLUME_LENGTH","features":[516]},{"name":"VDS_E_INVALID_VOLUME_TYPE","features":[516]},{"name":"VDS_E_IO_ERROR","features":[516]},{"name":"VDS_E_ISCSI_CHAP_SECRET","features":[516]},{"name":"VDS_E_ISCSI_GET_IKE_INFO","features":[516]},{"name":"VDS_E_ISCSI_GROUP_PRESHARE_KEY","features":[516]},{"name":"VDS_E_ISCSI_INITIATOR_NODE_NAME","features":[516]},{"name":"VDS_E_ISCSI_LOGIN_FAILED","features":[516]},{"name":"VDS_E_ISCSI_LOGOUT_FAILED","features":[516]},{"name":"VDS_E_ISCSI_LOGOUT_INCOMPLETE","features":[516]},{"name":"VDS_E_ISCSI_SESSION_NOT_FOUND","features":[516]},{"name":"VDS_E_ISCSI_SET_IKE_INFO","features":[516]},{"name":"VDS_E_LAST_VALID_DISK","features":[516]},{"name":"VDS_E_LBN_REMAP_ENABLED_FLAG","features":[516]},{"name":"VDS_E_LDM_TIMEOUT","features":[516]},{"name":"VDS_E_LEGACY_VOLUME_FORMAT","features":[516]},{"name":"VDS_E_LOG_UPDATE","features":[516]},{"name":"VDS_E_LUN_DISK_FAILED","features":[516]},{"name":"VDS_E_LUN_DISK_MISSING","features":[516]},{"name":"VDS_E_LUN_DISK_NOT_READY","features":[516]},{"name":"VDS_E_LUN_DISK_NO_MEDIA","features":[516]},{"name":"VDS_E_LUN_DISK_READ_ONLY","features":[516]},{"name":"VDS_E_LUN_DYNAMIC","features":[516]},{"name":"VDS_E_LUN_DYNAMIC_OFFLINE","features":[516]},{"name":"VDS_E_LUN_FAILED","features":[516]},{"name":"VDS_E_LUN_NOT_READY","features":[516]},{"name":"VDS_E_LUN_OFFLINE","features":[516]},{"name":"VDS_E_LUN_SHRINK_GPT_HEADER","features":[516]},{"name":"VDS_E_LUN_UPDATE_DISK","features":[516]},{"name":"VDS_E_MAX_USABLE_MBR","features":[516]},{"name":"VDS_E_MEDIA_WRITE_PROTECTED","features":[516]},{"name":"VDS_E_MEMBER_IS_HEALTHY","features":[516]},{"name":"VDS_E_MEMBER_MISSING","features":[516]},{"name":"VDS_E_MEMBER_REGENERATING","features":[516]},{"name":"VDS_E_MEMBER_SIZE_INVALID","features":[516]},{"name":"VDS_E_MIGRATE_OPEN_VOLUME","features":[516]},{"name":"VDS_E_MIRROR_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_MISSING_DISK","features":[516]},{"name":"VDS_E_MULTIPLE_DISCOVERY_DOMAINS","features":[516]},{"name":"VDS_E_MULTIPLE_PACKS","features":[516]},{"name":"VDS_E_NAME_NOT_UNIQUE","features":[516]},{"name":"VDS_E_NON_CONTIGUOUS_DATA_PARTITIONS","features":[516]},{"name":"VDS_E_NOT_AN_UNALLOCATED_DISK","features":[516]},{"name":"VDS_E_NOT_ENOUGH_DRIVE","features":[516]},{"name":"VDS_E_NOT_ENOUGH_SPACE","features":[516]},{"name":"VDS_E_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_NO_DISCOVERY_DOMAIN","features":[516]},{"name":"VDS_E_NO_DISKS_FOUND","features":[516]},{"name":"VDS_E_NO_DISK_PATHNAME","features":[516]},{"name":"VDS_E_NO_DRIVELETTER_FLAG","features":[516]},{"name":"VDS_E_NO_EXTENTS_FOR_PLEX","features":[516]},{"name":"VDS_E_NO_EXTENTS_FOR_VOLUME","features":[516]},{"name":"VDS_E_NO_FREE_SPACE","features":[516]},{"name":"VDS_E_NO_HEALTHY_DISKS","features":[516]},{"name":"VDS_E_NO_IMPORT_TARGET","features":[516]},{"name":"VDS_E_NO_MAINTENANCE_MODE","features":[516]},{"name":"VDS_E_NO_MEDIA","features":[516]},{"name":"VDS_E_NO_PNP_DISK_ARRIVE","features":[516]},{"name":"VDS_E_NO_PNP_DISK_REMOVE","features":[516]},{"name":"VDS_E_NO_PNP_VOLUME_ARRIVE","features":[516]},{"name":"VDS_E_NO_PNP_VOLUME_REMOVE","features":[516]},{"name":"VDS_E_NO_POOL","features":[516]},{"name":"VDS_E_NO_POOL_CREATED","features":[516]},{"name":"VDS_E_NO_SOFTWARE_PROVIDERS_LOADED","features":[516]},{"name":"VDS_E_NO_VALID_LOG_COPIES","features":[516]},{"name":"VDS_E_NO_VOLUME_LAYOUT","features":[516]},{"name":"VDS_E_NO_VOLUME_PATHNAME","features":[516]},{"name":"VDS_E_NTFS_FORMAT_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_OBJECT_DELETED","features":[516]},{"name":"VDS_E_OBJECT_EXISTS","features":[516]},{"name":"VDS_E_OBJECT_NOT_FOUND","features":[516]},{"name":"VDS_E_OBJECT_OUT_OF_SYNC","features":[516]},{"name":"VDS_E_OBJECT_STATUS_FAILED","features":[516]},{"name":"VDS_E_OFFLINE_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_ONE_EXTENT_PER_DISK","features":[516]},{"name":"VDS_E_ONLINE_PACK_EXISTS","features":[516]},{"name":"VDS_E_OPERATION_CANCELED","features":[516]},{"name":"VDS_E_OPERATION_DENIED","features":[516]},{"name":"VDS_E_OPERATION_PENDING","features":[516]},{"name":"VDS_E_PACK_NAME_INVALID","features":[516]},{"name":"VDS_E_PACK_NOT_FOUND","features":[516]},{"name":"VDS_E_PACK_OFFLINE","features":[516]},{"name":"VDS_E_PACK_ONLINE","features":[516]},{"name":"VDS_E_PAGEFILE_DISK","features":[516]},{"name":"VDS_E_PARTITION_LDM","features":[516]},{"name":"VDS_E_PARTITION_LIMIT_REACHED","features":[516]},{"name":"VDS_E_PARTITION_MSR","features":[516]},{"name":"VDS_E_PARTITION_NON_DATA","features":[516]},{"name":"VDS_E_PARTITION_NOT_CYLINDER_ALIGNED","features":[516]},{"name":"VDS_E_PARTITION_NOT_EMPTY","features":[516]},{"name":"VDS_E_PARTITION_NOT_OEM","features":[516]},{"name":"VDS_E_PARTITION_OF_UNKNOWN_TYPE","features":[516]},{"name":"VDS_E_PARTITION_PROTECTED","features":[516]},{"name":"VDS_E_PARTITION_STYLE_MISMATCH","features":[516]},{"name":"VDS_E_PATH_NOT_FOUND","features":[516]},{"name":"VDS_E_PLEX_IS_HEALTHY","features":[516]},{"name":"VDS_E_PLEX_LAST_ACTIVE","features":[516]},{"name":"VDS_E_PLEX_MISSING","features":[516]},{"name":"VDS_E_PLEX_NOT_LOADED_TO_CACHE","features":[516]},{"name":"VDS_E_PLEX_REGENERATING","features":[516]},{"name":"VDS_E_PLEX_SIZE_INVALID","features":[516]},{"name":"VDS_E_PROVIDER_CACHE_CORRUPT","features":[516]},{"name":"VDS_E_PROVIDER_CACHE_OUTOFSYNC","features":[516]},{"name":"VDS_E_PROVIDER_EXITING","features":[516]},{"name":"VDS_E_PROVIDER_FAILURE","features":[516]},{"name":"VDS_E_PROVIDER_INITIALIZATION_FAILED","features":[516]},{"name":"VDS_E_PROVIDER_INTERNAL_ERROR","features":[516]},{"name":"VDS_E_PROVIDER_TYPE_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_PROVIDER_VOL_DEVICE_NAME_NOT_FOUND","features":[516]},{"name":"VDS_E_PROVIDER_VOL_OPEN","features":[516]},{"name":"VDS_E_RAID5_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_READONLY","features":[516]},{"name":"VDS_E_REBOOT_REQUIRED","features":[516]},{"name":"VDS_E_REFS_FORMAT_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_REPAIR_VOLUMESTATE","features":[516]},{"name":"VDS_E_REQUIRES_CONTIGUOUS_DISK_SPACE","features":[516]},{"name":"VDS_E_RETRY","features":[516]},{"name":"VDS_E_REVERT_ON_CLOSE","features":[516]},{"name":"VDS_E_REVERT_ON_CLOSE_MISMATCH","features":[516]},{"name":"VDS_E_REVERT_ON_CLOSE_SET","features":[516]},{"name":"VDS_E_SECTOR_SIZE_ERROR","features":[516]},{"name":"VDS_E_SECURITY_INCOMPLETELY_SET","features":[516]},{"name":"VDS_E_SET_SAN_POLICY","features":[516]},{"name":"VDS_E_SET_TUNNEL_MODE_OUTER_ADDRESS","features":[516]},{"name":"VDS_E_SHRINK_DIRTY_VOLUME","features":[516]},{"name":"VDS_E_SHRINK_EXTEND_UNALIGNED","features":[516]},{"name":"VDS_E_SHRINK_IN_PROGRESS","features":[516]},{"name":"VDS_E_SHRINK_LUN_NOT_UNMASKED","features":[516]},{"name":"VDS_E_SHRINK_OVER_DATA","features":[516]},{"name":"VDS_E_SHRINK_SIZE_LESS_THAN_MIN","features":[516]},{"name":"VDS_E_SHRINK_SIZE_TOO_BIG","features":[516]},{"name":"VDS_E_SHRINK_UNKNOWN_FILESYSTEM","features":[516]},{"name":"VDS_E_SHRINK_USER_CANCELLED","features":[516]},{"name":"VDS_E_SOURCE_IS_TARGET_PACK","features":[516]},{"name":"VDS_E_SUBSYSTEM_ID_IS_NULL","features":[516]},{"name":"VDS_E_SYSTEM_DISK","features":[516]},{"name":"VDS_E_TARGET_PACK_NOT_EMPTY","features":[516]},{"name":"VDS_E_TARGET_PORTAL_NOT_FOUND","features":[516]},{"name":"VDS_E_TARGET_SPECIFIC_NOT_SUPPORTED","features":[516]},{"name":"VDS_E_TIMEOUT","features":[516]},{"name":"VDS_E_UNABLE_TO_FIND_BOOT_DISK","features":[516]},{"name":"VDS_E_UNABLE_TO_FIND_SYSTEM_DISK","features":[516]},{"name":"VDS_E_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[516]},{"name":"VDS_E_UNRECOVERABLE_ERROR","features":[516]},{"name":"VDS_E_UNRECOVERABLE_PROVIDER_ERROR","features":[516]},{"name":"VDS_E_VDISK_INVALID_OP_STATE","features":[516]},{"name":"VDS_E_VDISK_NOT_OPEN","features":[516]},{"name":"VDS_E_VDISK_PATHNAME_INVALID","features":[516]},{"name":"VDS_E_VD_ALREADY_ATTACHED","features":[516]},{"name":"VDS_E_VD_ALREADY_COMPACTING","features":[516]},{"name":"VDS_E_VD_ALREADY_DETACHED","features":[516]},{"name":"VDS_E_VD_ALREADY_MERGING","features":[516]},{"name":"VDS_E_VD_DISK_ALREADY_EXPANDING","features":[516]},{"name":"VDS_E_VD_DISK_ALREADY_OPEN","features":[516]},{"name":"VDS_E_VD_DISK_IS_COMPACTING","features":[516]},{"name":"VDS_E_VD_DISK_IS_EXPANDING","features":[516]},{"name":"VDS_E_VD_DISK_IS_MERGING","features":[516]},{"name":"VDS_E_VD_DISK_NOT_OPEN","features":[516]},{"name":"VDS_E_VD_IS_ATTACHED","features":[516]},{"name":"VDS_E_VD_IS_BEING_ATTACHED","features":[516]},{"name":"VDS_E_VD_IS_BEING_DETACHED","features":[516]},{"name":"VDS_E_VD_NOT_ATTACHED_READONLY","features":[516]},{"name":"VDS_E_VOLUME_DISK_COUNT_MAX_EXCEEDED","features":[516]},{"name":"VDS_E_VOLUME_EXTEND_FVE","features":[516]},{"name":"VDS_E_VOLUME_EXTEND_FVE_CORRUPT","features":[516]},{"name":"VDS_E_VOLUME_EXTEND_FVE_LOCKED","features":[516]},{"name":"VDS_E_VOLUME_EXTEND_FVE_RECOVERY","features":[516]},{"name":"VDS_E_VOLUME_GUID_PATHNAME_NOT_ALLOWED","features":[516]},{"name":"VDS_E_VOLUME_HAS_PATH","features":[516]},{"name":"VDS_E_VOLUME_HIDDEN","features":[516]},{"name":"VDS_E_VOLUME_INCOMPLETE","features":[516]},{"name":"VDS_E_VOLUME_INVALID_NAME","features":[516]},{"name":"VDS_E_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[516]},{"name":"VDS_E_VOLUME_MIRRORED","features":[516]},{"name":"VDS_E_VOLUME_NOT_A_MIRROR","features":[516]},{"name":"VDS_E_VOLUME_NOT_FOUND_IN_PACK","features":[516]},{"name":"VDS_E_VOLUME_NOT_HEALTHY","features":[516]},{"name":"VDS_E_VOLUME_NOT_MOUNTED","features":[516]},{"name":"VDS_E_VOLUME_NOT_ONLINE","features":[516]},{"name":"VDS_E_VOLUME_NOT_RETAINED","features":[516]},{"name":"VDS_E_VOLUME_ON_DISK","features":[516]},{"name":"VDS_E_VOLUME_PERMANENTLY_DISMOUNTED","features":[516]},{"name":"VDS_E_VOLUME_REGENERATING","features":[516]},{"name":"VDS_E_VOLUME_RETAINED","features":[516]},{"name":"VDS_E_VOLUME_SHRINK_FVE","features":[516]},{"name":"VDS_E_VOLUME_SHRINK_FVE_CORRUPT","features":[516]},{"name":"VDS_E_VOLUME_SHRINK_FVE_LOCKED","features":[516]},{"name":"VDS_E_VOLUME_SHRINK_FVE_RECOVERY","features":[516]},{"name":"VDS_E_VOLUME_SIMPLE_SPANNED","features":[516]},{"name":"VDS_E_VOLUME_SPANS_DISKS","features":[516]},{"name":"VDS_E_VOLUME_SYNCHRONIZING","features":[516]},{"name":"VDS_E_VOLUME_TEMPORARILY_DISMOUNTED","features":[516]},{"name":"VDS_E_VOLUME_TOO_BIG","features":[516]},{"name":"VDS_E_VOLUME_TOO_SMALL","features":[516]},{"name":"VDS_FILE_SYSTEM_FLAG","features":[516]},{"name":"VDS_FILE_SYSTEM_FORMAT_SUPPORT_FLAG","features":[516]},{"name":"VDS_FILE_SYSTEM_FORMAT_SUPPORT_PROP","features":[516]},{"name":"VDS_FILE_SYSTEM_NOTIFICATION","features":[516]},{"name":"VDS_FILE_SYSTEM_PROP","features":[516]},{"name":"VDS_FILE_SYSTEM_PROP_FLAG","features":[516]},{"name":"VDS_FILE_SYSTEM_TYPE","features":[516]},{"name":"VDS_FILE_SYSTEM_TYPE_PROP","features":[516]},{"name":"VDS_FORMAT_OPTION_FLAGS","features":[516]},{"name":"VDS_FPF_COMPRESSED","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_128K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_16K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_1K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_256K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_2K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_32K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_4K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_512","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_64K","features":[516]},{"name":"VDS_FSF_ALLOCATION_UNIT_8K","features":[516]},{"name":"VDS_FSF_SUPPORT_COMPRESS","features":[516]},{"name":"VDS_FSF_SUPPORT_EXTEND","features":[516]},{"name":"VDS_FSF_SUPPORT_FORMAT","features":[516]},{"name":"VDS_FSF_SUPPORT_MOUNT_POINT","features":[516]},{"name":"VDS_FSF_SUPPORT_QUICK_FORMAT","features":[516]},{"name":"VDS_FSF_SUPPORT_REMOVABLE_MEDIA","features":[516]},{"name":"VDS_FSF_SUPPORT_SPECIFY_LABEL","features":[516]},{"name":"VDS_FSOF_COMPRESSION","features":[516]},{"name":"VDS_FSOF_DUPLICATE_METADATA","features":[516]},{"name":"VDS_FSOF_FORCE","features":[516]},{"name":"VDS_FSOF_NONE","features":[516]},{"name":"VDS_FSOF_QUICK","features":[516]},{"name":"VDS_FSS_DEFAULT","features":[516]},{"name":"VDS_FSS_PREVIOUS_REVISION","features":[516]},{"name":"VDS_FSS_RECOMMENDED","features":[516]},{"name":"VDS_FST_CDFS","features":[516]},{"name":"VDS_FST_CSVFS","features":[516]},{"name":"VDS_FST_EXFAT","features":[516]},{"name":"VDS_FST_FAT","features":[516]},{"name":"VDS_FST_FAT32","features":[516]},{"name":"VDS_FST_NTFS","features":[516]},{"name":"VDS_FST_RAW","features":[516]},{"name":"VDS_FST_REFS","features":[516]},{"name":"VDS_FST_UDF","features":[516]},{"name":"VDS_FST_UNKNOWN","features":[516]},{"name":"VDS_HBAPORT_PROP","features":[516]},{"name":"VDS_HBAPORT_SPEED_FLAG","features":[516]},{"name":"VDS_HBAPORT_STATUS","features":[516]},{"name":"VDS_HBAPORT_TYPE","features":[516]},{"name":"VDS_HEALTH","features":[516]},{"name":"VDS_HINTS","features":[303,516]},{"name":"VDS_HINTS2","features":[303,516]},{"name":"VDS_HINT_ALLOCATEHOTSPARE","features":[516]},{"name":"VDS_HINT_BUSTYPE","features":[516]},{"name":"VDS_HINT_CONSISTENCYCHECKENABLED","features":[516]},{"name":"VDS_HINT_FASTCRASHRECOVERYREQUIRED","features":[516]},{"name":"VDS_HINT_HARDWARECHECKSUMENABLED","features":[516]},{"name":"VDS_HINT_ISYANKABLE","features":[516]},{"name":"VDS_HINT_MEDIASCANENABLED","features":[516]},{"name":"VDS_HINT_MOSTLYREADS","features":[516]},{"name":"VDS_HINT_OPTIMIZEFORSEQUENTIALREADS","features":[516]},{"name":"VDS_HINT_OPTIMIZEFORSEQUENTIALWRITES","features":[516]},{"name":"VDS_HINT_READBACKVERIFYENABLED","features":[516]},{"name":"VDS_HINT_READCACHINGENABLED","features":[516]},{"name":"VDS_HINT_REMAPENABLED","features":[516]},{"name":"VDS_HINT_USEMIRROREDCACHE","features":[516]},{"name":"VDS_HINT_WRITECACHINGENABLED","features":[516]},{"name":"VDS_HINT_WRITETHROUGHCACHINGENABLED","features":[516]},{"name":"VDS_HPS_BYPASSED","features":[516]},{"name":"VDS_HPS_DIAGNOSTICS","features":[516]},{"name":"VDS_HPS_ERROR","features":[516]},{"name":"VDS_HPS_LINKDOWN","features":[516]},{"name":"VDS_HPS_LOOPBACK","features":[516]},{"name":"VDS_HPS_OFFLINE","features":[516]},{"name":"VDS_HPS_ONLINE","features":[516]},{"name":"VDS_HPS_UNKNOWN","features":[516]},{"name":"VDS_HPT_EPORT","features":[516]},{"name":"VDS_HPT_FLPORT","features":[516]},{"name":"VDS_HPT_FPORT","features":[516]},{"name":"VDS_HPT_GPORT","features":[516]},{"name":"VDS_HPT_LPORT","features":[516]},{"name":"VDS_HPT_NLPORT","features":[516]},{"name":"VDS_HPT_NOTPRESENT","features":[516]},{"name":"VDS_HPT_NPORT","features":[516]},{"name":"VDS_HPT_OTHER","features":[516]},{"name":"VDS_HPT_PTP","features":[516]},{"name":"VDS_HPT_UNKNOWN","features":[516]},{"name":"VDS_HSF_10GBIT","features":[516]},{"name":"VDS_HSF_1GBIT","features":[516]},{"name":"VDS_HSF_2GBIT","features":[516]},{"name":"VDS_HSF_4GBIT","features":[516]},{"name":"VDS_HSF_NOT_NEGOTIATED","features":[516]},{"name":"VDS_HSF_UNKNOWN","features":[516]},{"name":"VDS_HWPROVIDER_TYPE","features":[516]},{"name":"VDS_HWT_FIBRE_CHANNEL","features":[516]},{"name":"VDS_HWT_HYBRID","features":[516]},{"name":"VDS_HWT_ISCSI","features":[516]},{"name":"VDS_HWT_PCI_RAID","features":[516]},{"name":"VDS_HWT_SAS","features":[516]},{"name":"VDS_HWT_UNKNOWN","features":[516]},{"name":"VDS_H_DEGRADED","features":[516]},{"name":"VDS_H_FAILED","features":[516]},{"name":"VDS_H_FAILED_REDUNDANCY","features":[516]},{"name":"VDS_H_FAILED_REDUNDANCY_FAILING","features":[516]},{"name":"VDS_H_FAILING","features":[516]},{"name":"VDS_H_FAILING_REDUNDANCY","features":[516]},{"name":"VDS_H_HEALTHY","features":[516]},{"name":"VDS_H_PENDING_FAILURE","features":[516]},{"name":"VDS_H_REBUILDING","features":[516]},{"name":"VDS_H_REPLACED","features":[516]},{"name":"VDS_H_STALE","features":[516]},{"name":"VDS_H_UNKNOWN","features":[516]},{"name":"VDS_IAT_CHAP","features":[516]},{"name":"VDS_IAT_MUTUAL_CHAP","features":[516]},{"name":"VDS_IAT_NONE","features":[516]},{"name":"VDS_IA_FCFS","features":[516]},{"name":"VDS_IA_FCPH","features":[516]},{"name":"VDS_IA_FCPH3","features":[516]},{"name":"VDS_IA_MAC","features":[516]},{"name":"VDS_IA_SCSI","features":[516]},{"name":"VDS_IA_UNKNOWN","features":[516]},{"name":"VDS_IIF_AGGRESSIVE_MODE","features":[516]},{"name":"VDS_IIF_IKE","features":[516]},{"name":"VDS_IIF_MAIN_MODE","features":[516]},{"name":"VDS_IIF_PFS_ENABLE","features":[516]},{"name":"VDS_IIF_TRANSPORT_MODE_PREFERRED","features":[516]},{"name":"VDS_IIF_TUNNEL_MODE_PREFERRED","features":[516]},{"name":"VDS_IIF_VALID","features":[516]},{"name":"VDS_ILF_MULTIPATH_ENABLED","features":[516]},{"name":"VDS_ILF_REQUIRE_IPSEC","features":[516]},{"name":"VDS_ILT_BOOT","features":[516]},{"name":"VDS_ILT_MANUAL","features":[516]},{"name":"VDS_ILT_PERSISTENT","features":[516]},{"name":"VDS_INPUT_DISK","features":[516]},{"name":"VDS_INTERCONNECT","features":[516]},{"name":"VDS_INTERCONNECT_ADDRESS_TYPE","features":[516]},{"name":"VDS_INTERCONNECT_FLAG","features":[516]},{"name":"VDS_IPADDRESS","features":[516]},{"name":"VDS_IPADDRESS_TYPE","features":[516]},{"name":"VDS_IPS_FAILED","features":[516]},{"name":"VDS_IPS_NOT_READY","features":[516]},{"name":"VDS_IPS_OFFLINE","features":[516]},{"name":"VDS_IPS_ONLINE","features":[516]},{"name":"VDS_IPS_UNKNOWN","features":[516]},{"name":"VDS_IPT_EMPTY","features":[516]},{"name":"VDS_IPT_IPV4","features":[516]},{"name":"VDS_IPT_IPV6","features":[516]},{"name":"VDS_IPT_TEXT","features":[516]},{"name":"VDS_ISCSI_AUTH_TYPE","features":[516]},{"name":"VDS_ISCSI_INITIATOR_ADAPTER_PROP","features":[516]},{"name":"VDS_ISCSI_INITIATOR_PORTAL_PROP","features":[516]},{"name":"VDS_ISCSI_IPSEC_FLAG","features":[516]},{"name":"VDS_ISCSI_IPSEC_KEY","features":[516]},{"name":"VDS_ISCSI_LOGIN_FLAG","features":[516]},{"name":"VDS_ISCSI_LOGIN_TYPE","features":[516]},{"name":"VDS_ISCSI_PORTALGROUP_PROP","features":[516]},{"name":"VDS_ISCSI_PORTAL_PROP","features":[516]},{"name":"VDS_ISCSI_PORTAL_STATUS","features":[516]},{"name":"VDS_ISCSI_SHARED_SECRET","features":[516]},{"name":"VDS_ISCSI_TARGET_PROP","features":[303,516]},{"name":"VDS_ITF_FIBRE_CHANNEL","features":[516]},{"name":"VDS_ITF_ISCSI","features":[516]},{"name":"VDS_ITF_PCI_RAID","features":[516]},{"name":"VDS_ITF_SAS","features":[516]},{"name":"VDS_LBF_DYN_LEAST_QUEUE_DEPTH","features":[516]},{"name":"VDS_LBF_FAILOVER","features":[516]},{"name":"VDS_LBF_LEAST_BLOCKS","features":[516]},{"name":"VDS_LBF_ROUND_ROBIN","features":[516]},{"name":"VDS_LBF_ROUND_ROBIN_WITH_SUBSET","features":[516]},{"name":"VDS_LBF_VENDOR_SPECIFIC","features":[516]},{"name":"VDS_LBF_WEIGHTED_PATHS","features":[516]},{"name":"VDS_LBP_DYN_LEAST_QUEUE_DEPTH","features":[516]},{"name":"VDS_LBP_FAILOVER","features":[516]},{"name":"VDS_LBP_LEAST_BLOCKS","features":[516]},{"name":"VDS_LBP_ROUND_ROBIN","features":[516]},{"name":"VDS_LBP_ROUND_ROBIN_WITH_SUBSET","features":[516]},{"name":"VDS_LBP_UNKNOWN","features":[516]},{"name":"VDS_LBP_VENDOR_SPECIFIC","features":[516]},{"name":"VDS_LBP_WEIGHTED_PATHS","features":[516]},{"name":"VDS_LF_CONSISTENCY_CHECK_ENABLED","features":[516]},{"name":"VDS_LF_HARDWARE_CHECKSUM_ENABLED","features":[516]},{"name":"VDS_LF_LBN_REMAP_ENABLED","features":[516]},{"name":"VDS_LF_MEDIA_SCAN_ENABLED","features":[516]},{"name":"VDS_LF_READ_BACK_VERIFY_ENABLED","features":[516]},{"name":"VDS_LF_READ_CACHE_ENABLED","features":[516]},{"name":"VDS_LF_SNAPSHOT","features":[516]},{"name":"VDS_LF_WRITE_CACHE_ENABLED","features":[516]},{"name":"VDS_LF_WRITE_THROUGH_CACHING_ENABLED","features":[516]},{"name":"VDS_LOADBALANCE_POLICY_ENUM","features":[516]},{"name":"VDS_LPF_LBN_REMAP_ENABLED","features":[516]},{"name":"VDS_LPS_FAILED","features":[516]},{"name":"VDS_LPS_NOT_READY","features":[516]},{"name":"VDS_LPS_OFFLINE","features":[516]},{"name":"VDS_LPS_ONLINE","features":[516]},{"name":"VDS_LPS_UNKNOWN","features":[516]},{"name":"VDS_LPT_PARITY","features":[516]},{"name":"VDS_LPT_RAID03","features":[516]},{"name":"VDS_LPT_RAID05","features":[516]},{"name":"VDS_LPT_RAID10","features":[516]},{"name":"VDS_LPT_RAID15","features":[516]},{"name":"VDS_LPT_RAID2","features":[516]},{"name":"VDS_LPT_RAID3","features":[516]},{"name":"VDS_LPT_RAID30","features":[516]},{"name":"VDS_LPT_RAID4","features":[516]},{"name":"VDS_LPT_RAID5","features":[516]},{"name":"VDS_LPT_RAID50","features":[516]},{"name":"VDS_LPT_RAID53","features":[516]},{"name":"VDS_LPT_RAID6","features":[516]},{"name":"VDS_LPT_RAID60","features":[516]},{"name":"VDS_LPT_SIMPLE","features":[516]},{"name":"VDS_LPT_SPAN","features":[516]},{"name":"VDS_LPT_STRIPE","features":[516]},{"name":"VDS_LPT_UNKNOWN","features":[516]},{"name":"VDS_LRM_EXCLUSIVE_RO","features":[516]},{"name":"VDS_LRM_EXCLUSIVE_RW","features":[516]},{"name":"VDS_LRM_NONE","features":[516]},{"name":"VDS_LRM_SHARED_RO","features":[516]},{"name":"VDS_LRM_SHARED_RW","features":[516]},{"name":"VDS_LS_FAILED","features":[516]},{"name":"VDS_LS_NOT_READY","features":[516]},{"name":"VDS_LS_OFFLINE","features":[516]},{"name":"VDS_LS_ONLINE","features":[516]},{"name":"VDS_LS_UNKNOWN","features":[516]},{"name":"VDS_LT_DEFAULT","features":[516]},{"name":"VDS_LT_FAULT_TOLERANT","features":[516]},{"name":"VDS_LT_MIRROR","features":[516]},{"name":"VDS_LT_NON_FAULT_TOLERANT","features":[516]},{"name":"VDS_LT_PARITY","features":[516]},{"name":"VDS_LT_RAID01","features":[516]},{"name":"VDS_LT_RAID03","features":[516]},{"name":"VDS_LT_RAID05","features":[516]},{"name":"VDS_LT_RAID10","features":[516]},{"name":"VDS_LT_RAID15","features":[516]},{"name":"VDS_LT_RAID2","features":[516]},{"name":"VDS_LT_RAID3","features":[516]},{"name":"VDS_LT_RAID30","features":[516]},{"name":"VDS_LT_RAID4","features":[516]},{"name":"VDS_LT_RAID5","features":[516]},{"name":"VDS_LT_RAID50","features":[516]},{"name":"VDS_LT_RAID51","features":[516]},{"name":"VDS_LT_RAID53","features":[516]},{"name":"VDS_LT_RAID6","features":[516]},{"name":"VDS_LT_RAID60","features":[516]},{"name":"VDS_LT_RAID61","features":[516]},{"name":"VDS_LT_SIMPLE","features":[516]},{"name":"VDS_LT_SPAN","features":[516]},{"name":"VDS_LT_STRIPE","features":[516]},{"name":"VDS_LT_UNKNOWN","features":[516]},{"name":"VDS_LUN_FLAG","features":[516]},{"name":"VDS_LUN_INFORMATION","features":[303,516]},{"name":"VDS_LUN_NOTIFICATION","features":[516]},{"name":"VDS_LUN_PLEX_FLAG","features":[516]},{"name":"VDS_LUN_PLEX_PROP","features":[516]},{"name":"VDS_LUN_PLEX_STATUS","features":[516]},{"name":"VDS_LUN_PLEX_TYPE","features":[516]},{"name":"VDS_LUN_PROP","features":[516]},{"name":"VDS_LUN_RESERVE_MODE","features":[516]},{"name":"VDS_LUN_STATUS","features":[516]},{"name":"VDS_LUN_TYPE","features":[516]},{"name":"VDS_MAINTENANCE_OPERATION","features":[516]},{"name":"VDS_MOUNT_POINT_NOTIFICATION","features":[516]},{"name":"VDS_MPS_FAILED","features":[516]},{"name":"VDS_MPS_ONLINE","features":[516]},{"name":"VDS_MPS_STANDBY","features":[516]},{"name":"VDS_MPS_UNKNOWN","features":[516]},{"name":"VDS_NF_CONTROLLER","features":[516]},{"name":"VDS_NF_CONTROLLER_ARRIVE","features":[516]},{"name":"VDS_NF_CONTROLLER_DEPART","features":[516]},{"name":"VDS_NF_CONTROLLER_MODIFY","features":[516]},{"name":"VDS_NF_CONTROLLER_REMOVED","features":[516]},{"name":"VDS_NF_DISK","features":[516]},{"name":"VDS_NF_DISK_ARRIVE","features":[516]},{"name":"VDS_NF_DISK_DEPART","features":[516]},{"name":"VDS_NF_DISK_MODIFY","features":[516]},{"name":"VDS_NF_DRIVE","features":[516]},{"name":"VDS_NF_DRIVE_ARRIVE","features":[516]},{"name":"VDS_NF_DRIVE_DEPART","features":[516]},{"name":"VDS_NF_DRIVE_LETTER_ASSIGN","features":[516]},{"name":"VDS_NF_DRIVE_LETTER_FREE","features":[516]},{"name":"VDS_NF_DRIVE_MODIFY","features":[516]},{"name":"VDS_NF_DRIVE_REMOVED","features":[516]},{"name":"VDS_NF_FILE_SYSTEM","features":[516]},{"name":"VDS_NF_FILE_SYSTEM_FORMAT_PROGRESS","features":[516]},{"name":"VDS_NF_FILE_SYSTEM_MODIFY","features":[516]},{"name":"VDS_NF_FILE_SYSTEM_SHRINKING_PROGRESS","features":[516]},{"name":"VDS_NF_LUN","features":[516]},{"name":"VDS_NF_LUN_ARRIVE","features":[516]},{"name":"VDS_NF_LUN_DEPART","features":[516]},{"name":"VDS_NF_LUN_MODIFY","features":[516]},{"name":"VDS_NF_MOUNT_POINTS_CHANGE","features":[516]},{"name":"VDS_NF_PACK","features":[516]},{"name":"VDS_NF_PACK_ARRIVE","features":[516]},{"name":"VDS_NF_PACK_DEPART","features":[516]},{"name":"VDS_NF_PACK_MODIFY","features":[516]},{"name":"VDS_NF_PARTITION_ARRIVE","features":[516]},{"name":"VDS_NF_PARTITION_DEPART","features":[516]},{"name":"VDS_NF_PARTITION_MODIFY","features":[516]},{"name":"VDS_NF_PORT","features":[516]},{"name":"VDS_NF_PORTAL_ARRIVE","features":[516]},{"name":"VDS_NF_PORTAL_DEPART","features":[516]},{"name":"VDS_NF_PORTAL_GROUP_ARRIVE","features":[516]},{"name":"VDS_NF_PORTAL_GROUP_DEPART","features":[516]},{"name":"VDS_NF_PORTAL_GROUP_MODIFY","features":[516]},{"name":"VDS_NF_PORTAL_MODIFY","features":[516]},{"name":"VDS_NF_PORT_ARRIVE","features":[516]},{"name":"VDS_NF_PORT_DEPART","features":[516]},{"name":"VDS_NF_PORT_MODIFY","features":[516]},{"name":"VDS_NF_PORT_REMOVED","features":[516]},{"name":"VDS_NF_SERVICE_OUT_OF_SYNC","features":[516]},{"name":"VDS_NF_SUB_SYSTEM_ARRIVE","features":[516]},{"name":"VDS_NF_SUB_SYSTEM_DEPART","features":[516]},{"name":"VDS_NF_SUB_SYSTEM_MODIFY","features":[516]},{"name":"VDS_NF_TARGET_ARRIVE","features":[516]},{"name":"VDS_NF_TARGET_DEPART","features":[516]},{"name":"VDS_NF_TARGET_MODIFY","features":[516]},{"name":"VDS_NF_VOLUME_ARRIVE","features":[516]},{"name":"VDS_NF_VOLUME_DEPART","features":[516]},{"name":"VDS_NF_VOLUME_MODIFY","features":[516]},{"name":"VDS_NF_VOLUME_REBUILDING_PROGRESS","features":[516]},{"name":"VDS_NOTIFICATION","features":[516]},{"name":"VDS_NOTIFICATION_TARGET_TYPE","features":[516]},{"name":"VDS_NTT_CONTROLLER","features":[516]},{"name":"VDS_NTT_DISK","features":[516]},{"name":"VDS_NTT_DRIVE","features":[516]},{"name":"VDS_NTT_DRIVE_LETTER","features":[516]},{"name":"VDS_NTT_FILE_SYSTEM","features":[516]},{"name":"VDS_NTT_LUN","features":[516]},{"name":"VDS_NTT_MOUNT_POINT","features":[516]},{"name":"VDS_NTT_PACK","features":[516]},{"name":"VDS_NTT_PARTITION","features":[516]},{"name":"VDS_NTT_PORT","features":[516]},{"name":"VDS_NTT_PORTAL","features":[516]},{"name":"VDS_NTT_PORTAL_GROUP","features":[516]},{"name":"VDS_NTT_SERVICE","features":[516]},{"name":"VDS_NTT_SUB_SYSTEM","features":[516]},{"name":"VDS_NTT_TARGET","features":[516]},{"name":"VDS_NTT_UNKNOWN","features":[516]},{"name":"VDS_NTT_VOLUME","features":[516]},{"name":"VDS_OBJECT_TYPE","features":[516]},{"name":"VDS_OT_ASYNC","features":[516]},{"name":"VDS_OT_CONTROLLER","features":[516]},{"name":"VDS_OT_DISK","features":[516]},{"name":"VDS_OT_DRIVE","features":[516]},{"name":"VDS_OT_ENUM","features":[516]},{"name":"VDS_OT_HBAPORT","features":[516]},{"name":"VDS_OT_INIT_ADAPTER","features":[516]},{"name":"VDS_OT_INIT_PORTAL","features":[516]},{"name":"VDS_OT_LUN","features":[516]},{"name":"VDS_OT_LUN_PLEX","features":[516]},{"name":"VDS_OT_OPEN_VDISK","features":[516]},{"name":"VDS_OT_PACK","features":[516]},{"name":"VDS_OT_PORT","features":[516]},{"name":"VDS_OT_PORTAL","features":[516]},{"name":"VDS_OT_PORTAL_GROUP","features":[516]},{"name":"VDS_OT_PROVIDER","features":[516]},{"name":"VDS_OT_STORAGE_POOL","features":[516]},{"name":"VDS_OT_SUB_SYSTEM","features":[516]},{"name":"VDS_OT_TARGET","features":[516]},{"name":"VDS_OT_UNKNOWN","features":[516]},{"name":"VDS_OT_VDISK","features":[516]},{"name":"VDS_OT_VOLUME","features":[516]},{"name":"VDS_OT_VOLUME_PLEX","features":[516]},{"name":"VDS_PACK_FLAG","features":[516]},{"name":"VDS_PACK_NOTIFICATION","features":[516]},{"name":"VDS_PACK_PROP","features":[516]},{"name":"VDS_PACK_STATUS","features":[516]},{"name":"VDS_PARTITION_FLAG","features":[516]},{"name":"VDS_PARTITION_INFORMATION_EX","features":[303,516]},{"name":"VDS_PARTITION_INFO_GPT","features":[516]},{"name":"VDS_PARTITION_INFO_MBR","features":[303,516]},{"name":"VDS_PARTITION_NOTIFICATION","features":[516]},{"name":"VDS_PARTITION_PROP","features":[303,516]},{"name":"VDS_PARTITION_STYLE","features":[516]},{"name":"VDS_PARTITION_STYLE_GPT","features":[516]},{"name":"VDS_PARTITION_STYLE_MBR","features":[516]},{"name":"VDS_PARTITION_STYLE_RAW","features":[516]},{"name":"VDS_PATH_ID","features":[516]},{"name":"VDS_PATH_INFO","features":[516]},{"name":"VDS_PATH_POLICY","features":[303,516]},{"name":"VDS_PATH_STATUS","features":[516]},{"name":"VDS_PF_DYNAMIC","features":[516]},{"name":"VDS_PF_INTERNAL_HARDWARE_PROVIDER","features":[516]},{"name":"VDS_PF_ONE_DISK_ONLY_PER_PACK","features":[516]},{"name":"VDS_PF_ONE_PACK_ONLINE_ONLY","features":[516]},{"name":"VDS_PF_SUPPORT_DYNAMIC","features":[516]},{"name":"VDS_PF_SUPPORT_DYNAMIC_1394","features":[516]},{"name":"VDS_PF_SUPPORT_FAULT_TOLERANT","features":[516]},{"name":"VDS_PF_SUPPORT_MIRROR","features":[516]},{"name":"VDS_PF_SUPPORT_RAID5","features":[516]},{"name":"VDS_PF_VOLUME_SPACE_MUST_BE_CONTIGUOUS","features":[516]},{"name":"VDS_PKF_CORRUPTED","features":[516]},{"name":"VDS_PKF_FOREIGN","features":[516]},{"name":"VDS_PKF_NOQUORUM","features":[516]},{"name":"VDS_PKF_ONLINE_ERROR","features":[516]},{"name":"VDS_PKF_POLICY","features":[516]},{"name":"VDS_POOL_ATTRIBUTES","features":[303,516]},{"name":"VDS_POOL_ATTRIB_ACCS_BDW_WT_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_ACCS_DIR_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_ACCS_LTNCY_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_ACCS_RNDM_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_ACCS_SIZE_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_ALLOW_SPINDOWN","features":[516]},{"name":"VDS_POOL_ATTRIB_BUSTYPE","features":[516]},{"name":"VDS_POOL_ATTRIB_CUSTOM_ATTRIB","features":[516]},{"name":"VDS_POOL_ATTRIB_DATA_AVL_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_DATA_RDNCY_DEF","features":[516]},{"name":"VDS_POOL_ATTRIB_DATA_RDNCY_MAX","features":[516]},{"name":"VDS_POOL_ATTRIB_DATA_RDNCY_MIN","features":[516]},{"name":"VDS_POOL_ATTRIB_NO_SINGLE_POF","features":[516]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS","features":[516]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS_DEF","features":[516]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS_MAX","features":[516]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS_MIN","features":[516]},{"name":"VDS_POOL_ATTRIB_PKG_RDNCY_DEF","features":[516]},{"name":"VDS_POOL_ATTRIB_PKG_RDNCY_MAX","features":[516]},{"name":"VDS_POOL_ATTRIB_PKG_RDNCY_MIN","features":[516]},{"name":"VDS_POOL_ATTRIB_RAIDTYPE","features":[516]},{"name":"VDS_POOL_ATTRIB_STOR_COST_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_STOR_EFFCY_HINT","features":[516]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE","features":[516]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE_DEF","features":[516]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE_MAX","features":[516]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE_MIN","features":[516]},{"name":"VDS_POOL_ATTRIB_THIN_PROVISION","features":[516]},{"name":"VDS_POOL_CUSTOM_ATTRIBUTES","features":[516]},{"name":"VDS_PORTAL_GROUP_NOTIFICATION","features":[516]},{"name":"VDS_PORTAL_NOTIFICATION","features":[516]},{"name":"VDS_PORT_NOTIFICATION","features":[516]},{"name":"VDS_PORT_PROP","features":[516]},{"name":"VDS_PORT_STATUS","features":[516]},{"name":"VDS_PROVIDER_FLAG","features":[516]},{"name":"VDS_PROVIDER_LBSUPPORT_FLAG","features":[516]},{"name":"VDS_PROVIDER_PROP","features":[516]},{"name":"VDS_PROVIDER_TYPE","features":[516]},{"name":"VDS_PRS_FAILED","features":[516]},{"name":"VDS_PRS_NOT_READY","features":[516]},{"name":"VDS_PRS_OFFLINE","features":[516]},{"name":"VDS_PRS_ONLINE","features":[516]},{"name":"VDS_PRS_REMOVED","features":[516]},{"name":"VDS_PRS_UNKNOWN","features":[516]},{"name":"VDS_PST_GPT","features":[516]},{"name":"VDS_PST_MBR","features":[516]},{"name":"VDS_PST_UNKNOWN","features":[516]},{"name":"VDS_PS_OFFLINE","features":[516]},{"name":"VDS_PS_ONLINE","features":[516]},{"name":"VDS_PS_UNKNOWN","features":[516]},{"name":"VDS_PTF_SYSTEM","features":[516]},{"name":"VDS_PT_HARDWARE","features":[516]},{"name":"VDS_PT_MAX","features":[516]},{"name":"VDS_PT_SOFTWARE","features":[516]},{"name":"VDS_PT_UNKNOWN","features":[516]},{"name":"VDS_PT_VIRTUALDISK","features":[516]},{"name":"VDS_QUERY_HARDWARE_PROVIDERS","features":[516]},{"name":"VDS_QUERY_PROVIDER_FLAG","features":[516]},{"name":"VDS_QUERY_SOFTWARE_PROVIDERS","features":[516]},{"name":"VDS_QUERY_VIRTUALDISK_PROVIDERS","features":[516]},{"name":"VDS_RAID_TYPE","features":[516]},{"name":"VDS_RA_REFRESH","features":[516]},{"name":"VDS_RA_RESTART","features":[516]},{"name":"VDS_RA_UNKNOWN","features":[516]},{"name":"VDS_REBUILD_PRIORITY_MAX","features":[516]},{"name":"VDS_REBUILD_PRIORITY_MIN","features":[516]},{"name":"VDS_RECOVER_ACTION","features":[516]},{"name":"VDS_REPARSE_POINT_PROP","features":[516]},{"name":"VDS_RT_RAID0","features":[516]},{"name":"VDS_RT_RAID01","features":[516]},{"name":"VDS_RT_RAID03","features":[516]},{"name":"VDS_RT_RAID05","features":[516]},{"name":"VDS_RT_RAID1","features":[516]},{"name":"VDS_RT_RAID10","features":[516]},{"name":"VDS_RT_RAID15","features":[516]},{"name":"VDS_RT_RAID2","features":[516]},{"name":"VDS_RT_RAID3","features":[516]},{"name":"VDS_RT_RAID30","features":[516]},{"name":"VDS_RT_RAID4","features":[516]},{"name":"VDS_RT_RAID5","features":[516]},{"name":"VDS_RT_RAID50","features":[516]},{"name":"VDS_RT_RAID51","features":[516]},{"name":"VDS_RT_RAID53","features":[516]},{"name":"VDS_RT_RAID6","features":[516]},{"name":"VDS_RT_RAID60","features":[516]},{"name":"VDS_RT_RAID61","features":[516]},{"name":"VDS_RT_UNKNOWN","features":[516]},{"name":"VDS_SAN_POLICY","features":[516]},{"name":"VDS_SERVICE_FLAG","features":[516]},{"name":"VDS_SERVICE_NOTIFICATION","features":[516]},{"name":"VDS_SERVICE_PROP","features":[516]},{"name":"VDS_SF_CONSISTENCY_CHECK_CAPABLE","features":[516]},{"name":"VDS_SF_DRIVE_EXTENT_CAPABLE","features":[516]},{"name":"VDS_SF_HARDWARE_CHECKSUM_CAPABLE","features":[516]},{"name":"VDS_SF_LUN_MASKING_CAPABLE","features":[516]},{"name":"VDS_SF_LUN_PLEXING_CAPABLE","features":[516]},{"name":"VDS_SF_LUN_REMAPPING_CAPABLE","features":[516]},{"name":"VDS_SF_MEDIA_SCAN_CAPABLE","features":[516]},{"name":"VDS_SF_RADIUS_CAPABLE","features":[516]},{"name":"VDS_SF_READ_BACK_VERIFY_CAPABLE","features":[516]},{"name":"VDS_SF_READ_CACHING_CAPABLE","features":[516]},{"name":"VDS_SF_SUPPORTS_AUTH_CHAP","features":[516]},{"name":"VDS_SF_SUPPORTS_AUTH_MUTUAL_CHAP","features":[516]},{"name":"VDS_SF_SUPPORTS_FAULT_TOLERANT_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_LUN_NUMBER","features":[516]},{"name":"VDS_SF_SUPPORTS_MIRRORED_CACHE","features":[516]},{"name":"VDS_SF_SUPPORTS_MIRROR_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_NON_FAULT_TOLERANT_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_PARITY_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID01_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID03_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID05_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID10_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID15_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID2_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID30_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID3_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID4_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID50_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID51_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID53_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID5_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID60_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID61_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_RAID6_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_SIMPLE_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_SIMPLE_TARGET_CONFIG","features":[516]},{"name":"VDS_SF_SUPPORTS_SPAN_LUNS","features":[516]},{"name":"VDS_SF_SUPPORTS_STRIPE_LUNS","features":[516]},{"name":"VDS_SF_WRITE_CACHING_CAPABLE","features":[516]},{"name":"VDS_SF_WRITE_THROUGH_CACHING_CAPABLE","features":[516]},{"name":"VDS_SPS_NOT_READY","features":[516]},{"name":"VDS_SPS_OFFLINE","features":[516]},{"name":"VDS_SPS_ONLINE","features":[516]},{"name":"VDS_SPS_UNKNOWN","features":[516]},{"name":"VDS_SPT_CONCRETE","features":[516]},{"name":"VDS_SPT_PRIMORDIAL","features":[516]},{"name":"VDS_SPT_UNKNOWN","features":[516]},{"name":"VDS_SP_MAX","features":[516]},{"name":"VDS_SP_OFFLINE","features":[516]},{"name":"VDS_SP_OFFLINE_INTERNAL","features":[516]},{"name":"VDS_SP_OFFLINE_SHARED","features":[516]},{"name":"VDS_SP_ONLINE","features":[516]},{"name":"VDS_SP_UNKNOWN","features":[516]},{"name":"VDS_SSS_FAILED","features":[516]},{"name":"VDS_SSS_NOT_READY","features":[516]},{"name":"VDS_SSS_OFFLINE","features":[516]},{"name":"VDS_SSS_ONLINE","features":[516]},{"name":"VDS_SSS_PARTIALLY_MANAGED","features":[516]},{"name":"VDS_SSS_UNKNOWN","features":[516]},{"name":"VDS_STORAGE_BUS_TYPE","features":[516]},{"name":"VDS_STORAGE_DEVICE_ID_DESCRIPTOR","features":[516]},{"name":"VDS_STORAGE_IDENTIFIER","features":[516]},{"name":"VDS_STORAGE_IDENTIFIER_CODE_SET","features":[516]},{"name":"VDS_STORAGE_IDENTIFIER_TYPE","features":[516]},{"name":"VDS_STORAGE_POOL_DRIVE_EXTENT","features":[303,516]},{"name":"VDS_STORAGE_POOL_PROP","features":[516]},{"name":"VDS_STORAGE_POOL_STATUS","features":[516]},{"name":"VDS_STORAGE_POOL_TYPE","features":[516]},{"name":"VDS_SUB_SYSTEM_FLAG","features":[516]},{"name":"VDS_SUB_SYSTEM_NOTIFICATION","features":[516]},{"name":"VDS_SUB_SYSTEM_PROP","features":[516]},{"name":"VDS_SUB_SYSTEM_PROP2","features":[516]},{"name":"VDS_SUB_SYSTEM_STATUS","features":[516]},{"name":"VDS_SUB_SYSTEM_SUPPORTED_RAID_TYPE_FLAG","features":[516]},{"name":"VDS_SVF_AUTO_MOUNT_OFF","features":[516]},{"name":"VDS_SVF_CLUSTER_SERVICE_CONFIGURED","features":[516]},{"name":"VDS_SVF_EFI","features":[516]},{"name":"VDS_SVF_OS_UNINSTALL_VALID","features":[516]},{"name":"VDS_SVF_SUPPORT_DYNAMIC","features":[516]},{"name":"VDS_SVF_SUPPORT_DYNAMIC_1394","features":[516]},{"name":"VDS_SVF_SUPPORT_FAULT_TOLERANT","features":[516]},{"name":"VDS_SVF_SUPPORT_GPT","features":[516]},{"name":"VDS_SVF_SUPPORT_MIRROR","features":[516]},{"name":"VDS_SVF_SUPPORT_RAID5","features":[516]},{"name":"VDS_SVF_SUPPORT_REFS","features":[516]},{"name":"VDS_S_ACCESS_PATH_NOT_DELETED","features":[516]},{"name":"VDS_S_ALREADY_EXISTS","features":[516]},{"name":"VDS_S_BOOT_PARTITION_NUMBER_CHANGE","features":[516]},{"name":"VDS_S_DEFAULT_PLEX_MEMBER_IDS","features":[516]},{"name":"VDS_S_DISK_DISMOUNT_FAILED","features":[516]},{"name":"VDS_S_DISK_IS_MISSING","features":[516]},{"name":"VDS_S_DISK_MOUNT_FAILED","features":[516]},{"name":"VDS_S_DISK_PARTIALLY_CLEANED","features":[516]},{"name":"VDS_S_DISMOUNT_FAILED","features":[516]},{"name":"VDS_S_EXTEND_FILE_SYSTEM_FAILED","features":[516]},{"name":"VDS_S_FS_LOCK","features":[516]},{"name":"VDS_S_GPT_BOOT_MIRRORED_TO_MBR","features":[516]},{"name":"VDS_S_IA64_BOOT_MIRRORED_TO_MBR","features":[516]},{"name":"VDS_S_IN_PROGRESS","features":[516]},{"name":"VDS_S_ISCSI_LOGIN_ALREAD_EXISTS","features":[516]},{"name":"VDS_S_ISCSI_PERSISTENT_LOGIN_MAY_NOT_BE_REMOVED","features":[516]},{"name":"VDS_S_ISCSI_SESSION_NOT_FOUND_PERSISTENT_LOGIN_REMOVED","features":[516]},{"name":"VDS_S_MBR_BOOT_MIRRORED_TO_GPT","features":[516]},{"name":"VDS_S_NAME_TRUNCATED","features":[516]},{"name":"VDS_S_NONCONFORMANT_PARTITION_INFO","features":[516]},{"name":"VDS_S_NO_NOTIFICATION","features":[516]},{"name":"VDS_S_PLEX_NOT_LOADED_TO_CACHE","features":[516]},{"name":"VDS_S_PROPERTIES_INCOMPLETE","features":[516]},{"name":"VDS_S_PROVIDER_ERROR_LOADING_CACHE","features":[516]},{"name":"VDS_S_REMOUNT_FAILED","features":[516]},{"name":"VDS_S_RESYNC_NOTIFICATION_TASK_FAILED","features":[516]},{"name":"VDS_S_STATUSES_INCOMPLETELY_SET","features":[516]},{"name":"VDS_S_SYSTEM_PARTITION","features":[516]},{"name":"VDS_S_UNABLE_TO_GET_GPT_ATTRIBUTES","features":[516]},{"name":"VDS_S_UPDATE_BOOTFILE_FAILED","features":[516]},{"name":"VDS_S_VOLUME_COMPRESS_FAILED","features":[516]},{"name":"VDS_S_VSS_FLUSH_AND_HOLD_WRITES","features":[516]},{"name":"VDS_S_VSS_RELEASE_WRITES","features":[516]},{"name":"VDS_S_WINPE_BOOTENTRY","features":[516]},{"name":"VDS_TARGET_NOTIFICATION","features":[516]},{"name":"VDS_TRANSITION_STATE","features":[516]},{"name":"VDS_TS_EXTENDING","features":[516]},{"name":"VDS_TS_RECONFIGING","features":[516]},{"name":"VDS_TS_RESTRIPING","features":[516]},{"name":"VDS_TS_SHRINKING","features":[516]},{"name":"VDS_TS_STABLE","features":[516]},{"name":"VDS_TS_UNKNOWN","features":[516]},{"name":"VDS_VDISK_PROPERTIES","features":[303,515,516]},{"name":"VDS_VDISK_STATE","features":[516]},{"name":"VDS_VERSION_SUPPORT_FLAG","features":[516]},{"name":"VDS_VF_ACTIVE","features":[516]},{"name":"VDS_VF_BACKED_BY_WIM_IMAGE","features":[516]},{"name":"VDS_VF_BACKS_BOOT_VOLUME","features":[516]},{"name":"VDS_VF_BOOT_VOLUME","features":[516]},{"name":"VDS_VF_CAN_EXTEND","features":[516]},{"name":"VDS_VF_CAN_SHRINK","features":[516]},{"name":"VDS_VF_CRASHDUMP","features":[516]},{"name":"VDS_VF_DIRTY","features":[516]},{"name":"VDS_VF_FAT32_NOT_SUPPORTED","features":[516]},{"name":"VDS_VF_FAT_NOT_SUPPORTED","features":[516]},{"name":"VDS_VF_FORMATTING","features":[516]},{"name":"VDS_VF_FVE_ENABLED","features":[516]},{"name":"VDS_VF_HIBERNATION","features":[516]},{"name":"VDS_VF_HIDDEN","features":[516]},{"name":"VDS_VF_INSTALLABLE","features":[516]},{"name":"VDS_VF_LBN_REMAP_ENABLED","features":[516]},{"name":"VDS_VF_NOT_FORMATTABLE","features":[516]},{"name":"VDS_VF_NO_DEFAULT_DRIVE_LETTER","features":[516]},{"name":"VDS_VF_NTFS_NOT_SUPPORTED","features":[516]},{"name":"VDS_VF_PAGEFILE","features":[516]},{"name":"VDS_VF_PERMANENTLY_DISMOUNTED","features":[516]},{"name":"VDS_VF_PERMANENT_DISMOUNT_SUPPORTED","features":[516]},{"name":"VDS_VF_READONLY","features":[516]},{"name":"VDS_VF_REFS_NOT_SUPPORTED","features":[516]},{"name":"VDS_VF_SHADOW_COPY","features":[516]},{"name":"VDS_VF_SYSTEM_VOLUME","features":[516]},{"name":"VDS_VOLUME_FLAG","features":[516]},{"name":"VDS_VOLUME_NOTIFICATION","features":[516]},{"name":"VDS_VOLUME_PLEX_PROP","features":[516]},{"name":"VDS_VOLUME_PLEX_STATUS","features":[516]},{"name":"VDS_VOLUME_PLEX_TYPE","features":[516]},{"name":"VDS_VOLUME_PROP","features":[516]},{"name":"VDS_VOLUME_PROP2","features":[516]},{"name":"VDS_VOLUME_STATUS","features":[516]},{"name":"VDS_VOLUME_TYPE","features":[516]},{"name":"VDS_VPS_FAILED","features":[516]},{"name":"VDS_VPS_NO_MEDIA","features":[516]},{"name":"VDS_VPS_ONLINE","features":[516]},{"name":"VDS_VPS_UNKNOWN","features":[516]},{"name":"VDS_VPT_PARITY","features":[516]},{"name":"VDS_VPT_SIMPLE","features":[516]},{"name":"VDS_VPT_SPAN","features":[516]},{"name":"VDS_VPT_STRIPE","features":[516]},{"name":"VDS_VPT_UNKNOWN","features":[516]},{"name":"VDS_VSF_1_0","features":[516]},{"name":"VDS_VSF_1_1","features":[516]},{"name":"VDS_VSF_2_0","features":[516]},{"name":"VDS_VSF_2_1","features":[516]},{"name":"VDS_VSF_3_0","features":[516]},{"name":"VDS_VST_ADDED","features":[516]},{"name":"VDS_VST_ATTACHED","features":[516]},{"name":"VDS_VST_ATTACHED_NOT_OPEN","features":[516]},{"name":"VDS_VST_ATTACH_PENDING","features":[516]},{"name":"VDS_VST_COMPACTING","features":[516]},{"name":"VDS_VST_DELETED","features":[516]},{"name":"VDS_VST_DETACH_PENDING","features":[516]},{"name":"VDS_VST_EXPANDING","features":[516]},{"name":"VDS_VST_MAX","features":[516]},{"name":"VDS_VST_MERGING","features":[516]},{"name":"VDS_VST_OPEN","features":[516]},{"name":"VDS_VST_UNKNOWN","features":[516]},{"name":"VDS_VS_FAILED","features":[516]},{"name":"VDS_VS_NO_MEDIA","features":[516]},{"name":"VDS_VS_OFFLINE","features":[516]},{"name":"VDS_VS_ONLINE","features":[516]},{"name":"VDS_VS_UNKNOWN","features":[516]},{"name":"VDS_VT_MIRROR","features":[516]},{"name":"VDS_VT_PARITY","features":[516]},{"name":"VDS_VT_SIMPLE","features":[516]},{"name":"VDS_VT_SPAN","features":[516]},{"name":"VDS_VT_STRIPE","features":[516]},{"name":"VDS_VT_UNKNOWN","features":[516]},{"name":"VDS_WWN","features":[516]},{"name":"VER_VDS_LUN_INFORMATION","features":[516]},{"name":"__VDS_PARTITION_STYLE","features":[516]}],"525":[{"name":"CreateVssExpressWriterInternal","features":[517]},{"name":"IVssAdmin","features":[517]},{"name":"IVssAdminEx","features":[517]},{"name":"IVssAsync","features":[517]},{"name":"IVssComponent","features":[517]},{"name":"IVssComponentEx","features":[517]},{"name":"IVssComponentEx2","features":[517]},{"name":"IVssCreateExpressWriterMetadata","features":[517]},{"name":"IVssCreateWriterMetadata","features":[517]},{"name":"IVssDifferentialSoftwareSnapshotMgmt","features":[517]},{"name":"IVssDifferentialSoftwareSnapshotMgmt2","features":[517]},{"name":"IVssDifferentialSoftwareSnapshotMgmt3","features":[517]},{"name":"IVssEnumMgmtObject","features":[517]},{"name":"IVssEnumObject","features":[517]},{"name":"IVssExpressWriter","features":[517]},{"name":"IVssFileShareSnapshotProvider","features":[517]},{"name":"IVssHardwareSnapshotProvider","features":[517]},{"name":"IVssHardwareSnapshotProviderEx","features":[517]},{"name":"IVssProviderCreateSnapshotSet","features":[517]},{"name":"IVssProviderNotifications","features":[517]},{"name":"IVssSnapshotMgmt","features":[517]},{"name":"IVssSnapshotMgmt2","features":[517]},{"name":"IVssSoftwareSnapshotProvider","features":[517]},{"name":"IVssWMDependency","features":[517]},{"name":"IVssWMFiledesc","features":[517]},{"name":"IVssWriterComponents","features":[517]},{"name":"VSSCoordinator","features":[517]},{"name":"VSS_ALTERNATE_WRITER_STATE","features":[517]},{"name":"VSS_APPLICATION_LEVEL","features":[517]},{"name":"VSS_APP_AUTO","features":[517]},{"name":"VSS_APP_BACK_END","features":[517]},{"name":"VSS_APP_FRONT_END","features":[517]},{"name":"VSS_APP_SYSTEM","features":[517]},{"name":"VSS_APP_SYSTEM_RM","features":[517]},{"name":"VSS_APP_UNKNOWN","features":[517]},{"name":"VSS_ASSOC_NO_MAX_SPACE","features":[517]},{"name":"VSS_ASSOC_REMOVE","features":[517]},{"name":"VSS_AWS_ALTERNATE_WRITER_EXISTS","features":[517]},{"name":"VSS_AWS_NO_ALTERNATE_WRITER","features":[517]},{"name":"VSS_AWS_THIS_IS_ALTERNATE_WRITER","features":[517]},{"name":"VSS_AWS_UNDEFINED","features":[517]},{"name":"VSS_BACKUP_SCHEMA","features":[517]},{"name":"VSS_BACKUP_TYPE","features":[517]},{"name":"VSS_BREAKEX_FLAG_MAKE_READ_WRITE","features":[517]},{"name":"VSS_BREAKEX_FLAG_MASK_LUNS","features":[517]},{"name":"VSS_BREAKEX_FLAG_REVERT_IDENTITY_ALL","features":[517]},{"name":"VSS_BREAKEX_FLAG_REVERT_IDENTITY_NONE","features":[517]},{"name":"VSS_BS_AUTHORITATIVE_RESTORE","features":[517]},{"name":"VSS_BS_COPY","features":[517]},{"name":"VSS_BS_DIFFERENTIAL","features":[517]},{"name":"VSS_BS_EXCLUSIVE_INCREMENTAL_DIFFERENTIAL","features":[517]},{"name":"VSS_BS_INCREMENTAL","features":[517]},{"name":"VSS_BS_INDEPENDENT_SYSTEM_STATE","features":[517]},{"name":"VSS_BS_LAST_MODIFY","features":[517]},{"name":"VSS_BS_LOG","features":[517]},{"name":"VSS_BS_LSN","features":[517]},{"name":"VSS_BS_RESTORE_RENAME","features":[517]},{"name":"VSS_BS_ROLLFORWARD_RESTORE","features":[517]},{"name":"VSS_BS_TIMESTAMPED","features":[517]},{"name":"VSS_BS_UNDEFINED","features":[517]},{"name":"VSS_BS_WRITER_SUPPORTS_NEW_TARGET","features":[517]},{"name":"VSS_BS_WRITER_SUPPORTS_PARALLEL_RESTORES","features":[517]},{"name":"VSS_BS_WRITER_SUPPORTS_RESTORE_WITH_MOVE","features":[517]},{"name":"VSS_BT_COPY","features":[517]},{"name":"VSS_BT_DIFFERENTIAL","features":[517]},{"name":"VSS_BT_FULL","features":[517]},{"name":"VSS_BT_INCREMENTAL","features":[517]},{"name":"VSS_BT_LOG","features":[517]},{"name":"VSS_BT_OTHER","features":[517]},{"name":"VSS_BT_UNDEFINED","features":[517]},{"name":"VSS_CF_APP_ROLLBACK_RECOVERY","features":[517]},{"name":"VSS_CF_BACKUP_RECOVERY","features":[517]},{"name":"VSS_CF_NOT_SYSTEM_STATE","features":[517]},{"name":"VSS_COMPONENT_FLAGS","features":[517]},{"name":"VSS_COMPONENT_TYPE","features":[517]},{"name":"VSS_CTX_ALL","features":[517]},{"name":"VSS_CTX_APP_ROLLBACK","features":[517]},{"name":"VSS_CTX_BACKUP","features":[517]},{"name":"VSS_CTX_CLIENT_ACCESSIBLE","features":[517]},{"name":"VSS_CTX_CLIENT_ACCESSIBLE_WRITERS","features":[517]},{"name":"VSS_CTX_FILE_SHARE_BACKUP","features":[517]},{"name":"VSS_CTX_NAS_ROLLBACK","features":[517]},{"name":"VSS_CT_DATABASE","features":[517]},{"name":"VSS_CT_FILEGROUP","features":[517]},{"name":"VSS_CT_UNDEFINED","features":[517]},{"name":"VSS_DIFF_AREA_PROP","features":[517]},{"name":"VSS_DIFF_VOLUME_PROP","features":[517]},{"name":"VSS_E_ASRERROR_CRITICAL_DISKS_TOO_SMALL","features":[517]},{"name":"VSS_E_ASRERROR_CRITICAL_DISK_CANNOT_BE_EXCLUDED","features":[517]},{"name":"VSS_E_ASRERROR_DATADISK_RDISK0","features":[517]},{"name":"VSS_E_ASRERROR_DISK_ASSIGNMENT_FAILED","features":[517]},{"name":"VSS_E_ASRERROR_DISK_RECREATION_FAILED","features":[517]},{"name":"VSS_E_ASRERROR_DYNAMIC_VHD_NOT_SUPPORTED","features":[517]},{"name":"VSS_E_ASRERROR_FIXED_PHYSICAL_DISK_AVAILABLE_AFTER_DISK_EXCLUSION","features":[517]},{"name":"VSS_E_ASRERROR_MISSING_DYNDISK","features":[517]},{"name":"VSS_E_ASRERROR_NO_ARCPATH","features":[517]},{"name":"VSS_E_ASRERROR_NO_PHYSICAL_DISK_AVAILABLE","features":[517]},{"name":"VSS_E_ASRERROR_RDISK0_TOOSMALL","features":[517]},{"name":"VSS_E_ASRERROR_RDISK_FOR_SYSTEM_DISK_NOT_FOUND","features":[517]},{"name":"VSS_E_ASRERROR_SHARED_CRIDISK","features":[517]},{"name":"VSS_E_ASRERROR_SYSTEM_PARTITION_HIDDEN","features":[517]},{"name":"VSS_E_AUTORECOVERY_FAILED","features":[517]},{"name":"VSS_E_BAD_STATE","features":[517]},{"name":"VSS_E_BREAK_REVERT_ID_FAILED","features":[517]},{"name":"VSS_E_CANNOT_REVERT_DISKID","features":[517]},{"name":"VSS_E_CLUSTER_ERROR","features":[517]},{"name":"VSS_E_CLUSTER_TIMEOUT","features":[517]},{"name":"VSS_E_CORRUPT_XML_DOCUMENT","features":[517]},{"name":"VSS_E_CRITICAL_VOLUME_ON_INVALID_DISK","features":[517]},{"name":"VSS_E_DYNAMIC_DISK_ERROR","features":[517]},{"name":"VSS_E_FLUSH_WRITES_TIMEOUT","features":[517]},{"name":"VSS_E_FSS_TIMEOUT","features":[517]},{"name":"VSS_E_HOLD_WRITES_TIMEOUT","features":[517]},{"name":"VSS_E_INSUFFICIENT_STORAGE","features":[517]},{"name":"VSS_E_INVALID_XML_DOCUMENT","features":[517]},{"name":"VSS_E_LEGACY_PROVIDER","features":[517]},{"name":"VSS_E_MAXIMUM_DIFFAREA_ASSOCIATIONS_REACHED","features":[517]},{"name":"VSS_E_MAXIMUM_NUMBER_OF_REMOTE_MACHINES_REACHED","features":[517]},{"name":"VSS_E_MAXIMUM_NUMBER_OF_SNAPSHOTS_REACHED","features":[517]},{"name":"VSS_E_MAXIMUM_NUMBER_OF_VOLUMES_REACHED","features":[517]},{"name":"VSS_E_MISSING_DISK","features":[517]},{"name":"VSS_E_MISSING_HIDDEN_VOLUME","features":[517]},{"name":"VSS_E_MISSING_VOLUME","features":[517]},{"name":"VSS_E_NESTED_VOLUME_LIMIT","features":[517]},{"name":"VSS_E_NONTRANSPORTABLE_BCD","features":[517]},{"name":"VSS_E_NOT_SUPPORTED","features":[517]},{"name":"VSS_E_NO_SNAPSHOTS_IMPORTED","features":[517]},{"name":"VSS_E_OBJECT_ALREADY_EXISTS","features":[517]},{"name":"VSS_E_OBJECT_NOT_FOUND","features":[517]},{"name":"VSS_E_PROVIDER_ALREADY_REGISTERED","features":[517]},{"name":"VSS_E_PROVIDER_IN_USE","features":[517]},{"name":"VSS_E_PROVIDER_NOT_REGISTERED","features":[517]},{"name":"VSS_E_PROVIDER_VETO","features":[517]},{"name":"VSS_E_REBOOT_REQUIRED","features":[517]},{"name":"VSS_E_REMOTE_SERVER_UNAVAILABLE","features":[517]},{"name":"VSS_E_REMOTE_SERVER_UNSUPPORTED","features":[517]},{"name":"VSS_E_RESYNC_IN_PROGRESS","features":[517]},{"name":"VSS_E_REVERT_IN_PROGRESS","features":[517]},{"name":"VSS_E_REVERT_VOLUME_LOST","features":[517]},{"name":"VSS_E_SNAPSHOT_NOT_IN_SET","features":[517]},{"name":"VSS_E_SNAPSHOT_SET_IN_PROGRESS","features":[517]},{"name":"VSS_E_SOME_SNAPSHOTS_NOT_IMPORTED","features":[517]},{"name":"VSS_E_TRANSACTION_FREEZE_TIMEOUT","features":[517]},{"name":"VSS_E_TRANSACTION_THAW_TIMEOUT","features":[517]},{"name":"VSS_E_UNEXPECTED","features":[517]},{"name":"VSS_E_UNEXPECTED_PROVIDER_ERROR","features":[517]},{"name":"VSS_E_UNEXPECTED_WRITER_ERROR","features":[517]},{"name":"VSS_E_UNSELECTED_VOLUME","features":[517]},{"name":"VSS_E_UNSUPPORTED_CONTEXT","features":[517]},{"name":"VSS_E_VOLUME_IN_USE","features":[517]},{"name":"VSS_E_VOLUME_NOT_LOCAL","features":[517]},{"name":"VSS_E_VOLUME_NOT_SUPPORTED","features":[517]},{"name":"VSS_E_VOLUME_NOT_SUPPORTED_BY_PROVIDER","features":[517]},{"name":"VSS_E_WRITERERROR_INCONSISTENTSNAPSHOT","features":[517]},{"name":"VSS_E_WRITERERROR_NONRETRYABLE","features":[517]},{"name":"VSS_E_WRITERERROR_OUTOFRESOURCES","features":[517]},{"name":"VSS_E_WRITERERROR_PARTIAL_FAILURE","features":[517]},{"name":"VSS_E_WRITERERROR_RECOVERY_FAILED","features":[517]},{"name":"VSS_E_WRITERERROR_RETRYABLE","features":[517]},{"name":"VSS_E_WRITERERROR_TIMEOUT","features":[517]},{"name":"VSS_E_WRITER_ALREADY_SUBSCRIBED","features":[517]},{"name":"VSS_E_WRITER_INFRASTRUCTURE","features":[517]},{"name":"VSS_E_WRITER_NOT_RESPONDING","features":[517]},{"name":"VSS_E_WRITER_STATUS_NOT_AVAILABLE","features":[517]},{"name":"VSS_FILE_RESTORE_STATUS","features":[517]},{"name":"VSS_FILE_SPEC_BACKUP_TYPE","features":[517]},{"name":"VSS_FSBT_ALL_BACKUP_REQUIRED","features":[517]},{"name":"VSS_FSBT_ALL_SNAPSHOT_REQUIRED","features":[517]},{"name":"VSS_FSBT_CREATED_DURING_BACKUP","features":[517]},{"name":"VSS_FSBT_DIFFERENTIAL_BACKUP_REQUIRED","features":[517]},{"name":"VSS_FSBT_DIFFERENTIAL_SNAPSHOT_REQUIRED","features":[517]},{"name":"VSS_FSBT_FULL_BACKUP_REQUIRED","features":[517]},{"name":"VSS_FSBT_FULL_SNAPSHOT_REQUIRED","features":[517]},{"name":"VSS_FSBT_INCREMENTAL_BACKUP_REQUIRED","features":[517]},{"name":"VSS_FSBT_INCREMENTAL_SNAPSHOT_REQUIRED","features":[517]},{"name":"VSS_FSBT_LOG_BACKUP_REQUIRED","features":[517]},{"name":"VSS_FSBT_LOG_SNAPSHOT_REQUIRED","features":[517]},{"name":"VSS_HARDWARE_OPTIONS","features":[517]},{"name":"VSS_MGMT_OBJECT_DIFF_AREA","features":[517]},{"name":"VSS_MGMT_OBJECT_DIFF_VOLUME","features":[517]},{"name":"VSS_MGMT_OBJECT_PROP","features":[517]},{"name":"VSS_MGMT_OBJECT_TYPE","features":[517]},{"name":"VSS_MGMT_OBJECT_UNION","features":[517]},{"name":"VSS_MGMT_OBJECT_UNKNOWN","features":[517]},{"name":"VSS_MGMT_OBJECT_VOLUME","features":[517]},{"name":"VSS_OBJECT_NONE","features":[517]},{"name":"VSS_OBJECT_PROP","features":[517]},{"name":"VSS_OBJECT_PROVIDER","features":[517]},{"name":"VSS_OBJECT_SNAPSHOT","features":[517]},{"name":"VSS_OBJECT_SNAPSHOT_SET","features":[517]},{"name":"VSS_OBJECT_TYPE","features":[517]},{"name":"VSS_OBJECT_TYPE_COUNT","features":[517]},{"name":"VSS_OBJECT_UNION","features":[517]},{"name":"VSS_OBJECT_UNKNOWN","features":[517]},{"name":"VSS_ONLUNSTATECHANGE_DO_MASK_LUNS","features":[517]},{"name":"VSS_ONLUNSTATECHANGE_NOTIFY_LUN_POST_RECOVERY","features":[517]},{"name":"VSS_ONLUNSTATECHANGE_NOTIFY_LUN_PRE_RECOVERY","features":[517]},{"name":"VSS_ONLUNSTATECHANGE_NOTIFY_READ_WRITE","features":[517]},{"name":"VSS_PROTECTION_FAULT","features":[517]},{"name":"VSS_PROTECTION_FAULT_COW_READ_FAILURE","features":[517]},{"name":"VSS_PROTECTION_FAULT_COW_WRITE_FAILURE","features":[517]},{"name":"VSS_PROTECTION_FAULT_DESTROY_ALL_SNAPSHOTS","features":[517]},{"name":"VSS_PROTECTION_FAULT_DIFF_AREA_FULL","features":[517]},{"name":"VSS_PROTECTION_FAULT_DIFF_AREA_MISSING","features":[517]},{"name":"VSS_PROTECTION_FAULT_DIFF_AREA_REMOVED","features":[517]},{"name":"VSS_PROTECTION_FAULT_EXTERNAL_WRITER_TO_DIFF_AREA","features":[517]},{"name":"VSS_PROTECTION_FAULT_FILE_SYSTEM_FAILURE","features":[517]},{"name":"VSS_PROTECTION_FAULT_GROW_FAILED","features":[517]},{"name":"VSS_PROTECTION_FAULT_GROW_TOO_SLOW","features":[517]},{"name":"VSS_PROTECTION_FAULT_IO_FAILURE","features":[517]},{"name":"VSS_PROTECTION_FAULT_IO_FAILURE_DURING_ONLINE","features":[517]},{"name":"VSS_PROTECTION_FAULT_MAPPED_MEMORY_FAILURE","features":[517]},{"name":"VSS_PROTECTION_FAULT_MEMORY_ALLOCATION_FAILURE","features":[517]},{"name":"VSS_PROTECTION_FAULT_META_DATA_CORRUPTION","features":[517]},{"name":"VSS_PROTECTION_FAULT_MOUNT_DURING_CLUSTER_OFFLINE","features":[517]},{"name":"VSS_PROTECTION_FAULT_NONE","features":[517]},{"name":"VSS_PROTECTION_LEVEL","features":[517]},{"name":"VSS_PROTECTION_LEVEL_ORIGINAL_VOLUME","features":[517]},{"name":"VSS_PROTECTION_LEVEL_SNAPSHOT","features":[517]},{"name":"VSS_PROVIDER_CAPABILITIES","features":[517]},{"name":"VSS_PROVIDER_PROP","features":[517]},{"name":"VSS_PROVIDER_TYPE","features":[517]},{"name":"VSS_PROV_FILESHARE","features":[517]},{"name":"VSS_PROV_HARDWARE","features":[517]},{"name":"VSS_PROV_SOFTWARE","features":[517]},{"name":"VSS_PROV_SYSTEM","features":[517]},{"name":"VSS_PROV_UNKNOWN","features":[517]},{"name":"VSS_PRV_CAPABILITY_CLUSTERED","features":[517]},{"name":"VSS_PRV_CAPABILITY_COMPLIANT","features":[517]},{"name":"VSS_PRV_CAPABILITY_DIFFERENTIAL","features":[517]},{"name":"VSS_PRV_CAPABILITY_LEGACY","features":[517]},{"name":"VSS_PRV_CAPABILITY_LUN_REPOINT","features":[517]},{"name":"VSS_PRV_CAPABILITY_LUN_RESYNC","features":[517]},{"name":"VSS_PRV_CAPABILITY_MULTIPLE_IMPORT","features":[517]},{"name":"VSS_PRV_CAPABILITY_OFFLINE_CREATION","features":[517]},{"name":"VSS_PRV_CAPABILITY_PLEX","features":[517]},{"name":"VSS_PRV_CAPABILITY_RECYCLING","features":[517]},{"name":"VSS_RECOVERY_NO_VOLUME_CHECK","features":[517]},{"name":"VSS_RECOVERY_OPTIONS","features":[517]},{"name":"VSS_RECOVERY_REVERT_IDENTITY_ALL","features":[517]},{"name":"VSS_RESTOREMETHOD_ENUM","features":[517]},{"name":"VSS_RESTORE_TARGET","features":[517]},{"name":"VSS_RESTORE_TYPE","features":[517]},{"name":"VSS_RF_ALL","features":[517]},{"name":"VSS_RF_NONE","features":[517]},{"name":"VSS_RF_PARTIAL","features":[517]},{"name":"VSS_RF_UNDEFINED","features":[517]},{"name":"VSS_RME_CUSTOM","features":[517]},{"name":"VSS_RME_RESTORE_AT_REBOOT","features":[517]},{"name":"VSS_RME_RESTORE_AT_REBOOT_IF_CANNOT_REPLACE","features":[517]},{"name":"VSS_RME_RESTORE_IF_CAN_REPLACE","features":[517]},{"name":"VSS_RME_RESTORE_IF_NOT_THERE","features":[517]},{"name":"VSS_RME_RESTORE_STOP_START","features":[517]},{"name":"VSS_RME_RESTORE_TO_ALTERNATE_LOCATION","features":[517]},{"name":"VSS_RME_STOP_RESTORE_START","features":[517]},{"name":"VSS_RME_UNDEFINED","features":[517]},{"name":"VSS_ROLLFORWARD_TYPE","features":[517]},{"name":"VSS_RS_ALL","features":[517]},{"name":"VSS_RS_FAILED","features":[517]},{"name":"VSS_RS_NONE","features":[517]},{"name":"VSS_RS_UNDEFINED","features":[517]},{"name":"VSS_RTYPE_BY_COPY","features":[517]},{"name":"VSS_RTYPE_IMPORT","features":[517]},{"name":"VSS_RTYPE_OTHER","features":[517]},{"name":"VSS_RTYPE_UNDEFINED","features":[517]},{"name":"VSS_RT_ALTERNATE","features":[517]},{"name":"VSS_RT_DIRECTED","features":[517]},{"name":"VSS_RT_ORIGINAL","features":[517]},{"name":"VSS_RT_ORIGINAL_LOCATION","features":[517]},{"name":"VSS_RT_UNDEFINED","features":[517]},{"name":"VSS_SC_DISABLE_CONTENTINDEX","features":[517]},{"name":"VSS_SC_DISABLE_DEFRAG","features":[517]},{"name":"VSS_SM_ALL_FLAGS","features":[517]},{"name":"VSS_SM_BACKUP_EVENTS_FLAG","features":[517]},{"name":"VSS_SM_IO_THROTTLING_FLAG","features":[517]},{"name":"VSS_SM_POST_SNAPSHOT_FLAG","features":[517]},{"name":"VSS_SM_RESTORE_EVENTS_FLAG","features":[517]},{"name":"VSS_SNAPSHOT_COMPATIBILITY","features":[517]},{"name":"VSS_SNAPSHOT_CONTEXT","features":[517]},{"name":"VSS_SNAPSHOT_PROP","features":[517]},{"name":"VSS_SNAPSHOT_PROPERTY_ID","features":[517]},{"name":"VSS_SNAPSHOT_STATE","features":[517]},{"name":"VSS_SOURCE_TYPE","features":[517]},{"name":"VSS_SPROPID_CREATION_TIMESTAMP","features":[517]},{"name":"VSS_SPROPID_EXPOSED_NAME","features":[517]},{"name":"VSS_SPROPID_EXPOSED_PATH","features":[517]},{"name":"VSS_SPROPID_ORIGINAL_VOLUME","features":[517]},{"name":"VSS_SPROPID_ORIGINATING_MACHINE","features":[517]},{"name":"VSS_SPROPID_PROVIDER_ID","features":[517]},{"name":"VSS_SPROPID_SERVICE_MACHINE","features":[517]},{"name":"VSS_SPROPID_SNAPSHOTS_COUNT","features":[517]},{"name":"VSS_SPROPID_SNAPSHOT_ATTRIBUTES","features":[517]},{"name":"VSS_SPROPID_SNAPSHOT_DEVICE","features":[517]},{"name":"VSS_SPROPID_SNAPSHOT_ID","features":[517]},{"name":"VSS_SPROPID_SNAPSHOT_SET_ID","features":[517]},{"name":"VSS_SPROPID_STATUS","features":[517]},{"name":"VSS_SPROPID_UNKNOWN","features":[517]},{"name":"VSS_SS_ABORTED","features":[517]},{"name":"VSS_SS_COMMITTED","features":[517]},{"name":"VSS_SS_COUNT","features":[517]},{"name":"VSS_SS_CREATED","features":[517]},{"name":"VSS_SS_DELETED","features":[517]},{"name":"VSS_SS_POSTCOMMITTED","features":[517]},{"name":"VSS_SS_PRECOMMITTED","features":[517]},{"name":"VSS_SS_PREFINALCOMMITTED","features":[517]},{"name":"VSS_SS_PREPARED","features":[517]},{"name":"VSS_SS_PREPARING","features":[517]},{"name":"VSS_SS_PROCESSING_COMMIT","features":[517]},{"name":"VSS_SS_PROCESSING_POSTCOMMIT","features":[517]},{"name":"VSS_SS_PROCESSING_POSTFINALCOMMIT","features":[517]},{"name":"VSS_SS_PROCESSING_PRECOMMIT","features":[517]},{"name":"VSS_SS_PROCESSING_PREFINALCOMMIT","features":[517]},{"name":"VSS_SS_PROCESSING_PREPARE","features":[517]},{"name":"VSS_SS_UNKNOWN","features":[517]},{"name":"VSS_ST_NONTRANSACTEDDB","features":[517]},{"name":"VSS_ST_OTHER","features":[517]},{"name":"VSS_ST_TRANSACTEDDB","features":[517]},{"name":"VSS_ST_UNDEFINED","features":[517]},{"name":"VSS_SUBSCRIBE_MASK","features":[517]},{"name":"VSS_S_ASYNC_CANCELLED","features":[517]},{"name":"VSS_S_ASYNC_FINISHED","features":[517]},{"name":"VSS_S_ASYNC_PENDING","features":[517]},{"name":"VSS_S_SOME_SNAPSHOTS_NOT_IMPORTED","features":[517]},{"name":"VSS_USAGE_TYPE","features":[517]},{"name":"VSS_UT_BOOTABLESYSTEMSTATE","features":[517]},{"name":"VSS_UT_OTHER","features":[517]},{"name":"VSS_UT_SYSTEMSERVICE","features":[517]},{"name":"VSS_UT_UNDEFINED","features":[517]},{"name":"VSS_UT_USERDATA","features":[517]},{"name":"VSS_VOLSNAP_ATTR_AUTORECOVER","features":[517]},{"name":"VSS_VOLSNAP_ATTR_CLIENT_ACCESSIBLE","features":[517]},{"name":"VSS_VOLSNAP_ATTR_DELAYED_POSTSNAPSHOT","features":[517]},{"name":"VSS_VOLSNAP_ATTR_DIFFERENTIAL","features":[517]},{"name":"VSS_VOLSNAP_ATTR_EXPOSED_LOCALLY","features":[517]},{"name":"VSS_VOLSNAP_ATTR_EXPOSED_REMOTELY","features":[517]},{"name":"VSS_VOLSNAP_ATTR_FILE_SHARE","features":[517]},{"name":"VSS_VOLSNAP_ATTR_HARDWARE_ASSISTED","features":[517]},{"name":"VSS_VOLSNAP_ATTR_IMPORTED","features":[517]},{"name":"VSS_VOLSNAP_ATTR_NOT_SURFACED","features":[517]},{"name":"VSS_VOLSNAP_ATTR_NOT_TRANSACTED","features":[517]},{"name":"VSS_VOLSNAP_ATTR_NO_AUTORECOVERY","features":[517]},{"name":"VSS_VOLSNAP_ATTR_NO_AUTO_RELEASE","features":[517]},{"name":"VSS_VOLSNAP_ATTR_NO_WRITERS","features":[517]},{"name":"VSS_VOLSNAP_ATTR_PERSISTENT","features":[517]},{"name":"VSS_VOLSNAP_ATTR_PLEX","features":[517]},{"name":"VSS_VOLSNAP_ATTR_ROLLBACK_RECOVERY","features":[517]},{"name":"VSS_VOLSNAP_ATTR_TRANSPORTABLE","features":[517]},{"name":"VSS_VOLSNAP_ATTR_TXF_RECOVERY","features":[517]},{"name":"VSS_VOLUME_PROP","features":[517]},{"name":"VSS_VOLUME_PROTECTION_INFO","features":[303,517]},{"name":"VSS_VOLUME_SNAPSHOT_ATTRIBUTES","features":[517]},{"name":"VSS_WRE_ALWAYS","features":[517]},{"name":"VSS_WRE_IF_REPLACE_FAILS","features":[517]},{"name":"VSS_WRE_NEVER","features":[517]},{"name":"VSS_WRE_UNDEFINED","features":[517]},{"name":"VSS_WRITERRESTORE_ENUM","features":[517]},{"name":"VSS_WRITER_STATE","features":[517]},{"name":"VSS_WS_COUNT","features":[517]},{"name":"VSS_WS_FAILED_AT_BACKUPSHUTDOWN","features":[517]},{"name":"VSS_WS_FAILED_AT_BACKUP_COMPLETE","features":[517]},{"name":"VSS_WS_FAILED_AT_FREEZE","features":[517]},{"name":"VSS_WS_FAILED_AT_IDENTIFY","features":[517]},{"name":"VSS_WS_FAILED_AT_POST_RESTORE","features":[517]},{"name":"VSS_WS_FAILED_AT_POST_SNAPSHOT","features":[517]},{"name":"VSS_WS_FAILED_AT_PREPARE_BACKUP","features":[517]},{"name":"VSS_WS_FAILED_AT_PREPARE_SNAPSHOT","features":[517]},{"name":"VSS_WS_FAILED_AT_PRE_RESTORE","features":[517]},{"name":"VSS_WS_FAILED_AT_THAW","features":[517]},{"name":"VSS_WS_STABLE","features":[517]},{"name":"VSS_WS_UNKNOWN","features":[517]},{"name":"VSS_WS_WAITING_FOR_BACKUP_COMPLETE","features":[517]},{"name":"VSS_WS_WAITING_FOR_FREEZE","features":[517]},{"name":"VSS_WS_WAITING_FOR_POST_SNAPSHOT","features":[517]},{"name":"VSS_WS_WAITING_FOR_THAW","features":[517]},{"name":"VssSnapshotMgmt","features":[517]}],"526":[{"name":"ABORTPROC","features":[303,314,412]},{"name":"AbortDoc","features":[314,412]},{"name":"DC_BINNAMES","features":[412]},{"name":"DC_BINS","features":[412]},{"name":"DC_COLLATE","features":[412]},{"name":"DC_COLORDEVICE","features":[412]},{"name":"DC_COPIES","features":[412]},{"name":"DC_DRIVER","features":[412]},{"name":"DC_DUPLEX","features":[412]},{"name":"DC_ENUMRESOLUTIONS","features":[412]},{"name":"DC_EXTRA","features":[412]},{"name":"DC_FIELDS","features":[412]},{"name":"DC_FILEDEPENDENCIES","features":[412]},{"name":"DC_MAXEXTENT","features":[412]},{"name":"DC_MEDIAREADY","features":[412]},{"name":"DC_MEDIATYPENAMES","features":[412]},{"name":"DC_MEDIATYPES","features":[412]},{"name":"DC_MINEXTENT","features":[412]},{"name":"DC_NUP","features":[412]},{"name":"DC_ORIENTATION","features":[412]},{"name":"DC_PAPERNAMES","features":[412]},{"name":"DC_PAPERS","features":[412]},{"name":"DC_PAPERSIZE","features":[412]},{"name":"DC_PERSONALITY","features":[412]},{"name":"DC_PRINTERMEM","features":[412]},{"name":"DC_PRINTRATE","features":[412]},{"name":"DC_PRINTRATEPPM","features":[412]},{"name":"DC_PRINTRATEUNIT","features":[412]},{"name":"DC_SIZE","features":[412]},{"name":"DC_STAPLE","features":[412]},{"name":"DC_TRUETYPE","features":[412]},{"name":"DC_VERSION","features":[412]},{"name":"DOCINFOA","features":[412]},{"name":"DOCINFOW","features":[412]},{"name":"DRAWPATRECT","features":[303,412]},{"name":"DeviceCapabilitiesA","features":[303,314,412]},{"name":"DeviceCapabilitiesW","features":[303,314,412]},{"name":"EndDoc","features":[314,412]},{"name":"EndPage","features":[314,412]},{"name":"Escape","features":[314,412]},{"name":"ExtEscape","features":[314,412]},{"name":"HPTPROVIDER","features":[412]},{"name":"IXpsDocumentPackageTarget","features":[412]},{"name":"IXpsDocumentPackageTarget3D","features":[412]},{"name":"IXpsOMBrush","features":[412]},{"name":"IXpsOMCanvas","features":[412]},{"name":"IXpsOMColorProfileResource","features":[412]},{"name":"IXpsOMColorProfileResourceCollection","features":[412]},{"name":"IXpsOMCoreProperties","features":[412]},{"name":"IXpsOMDashCollection","features":[412]},{"name":"IXpsOMDictionary","features":[412]},{"name":"IXpsOMDocument","features":[412]},{"name":"IXpsOMDocumentCollection","features":[412]},{"name":"IXpsOMDocumentSequence","features":[412]},{"name":"IXpsOMDocumentStructureResource","features":[412]},{"name":"IXpsOMFontResource","features":[412]},{"name":"IXpsOMFontResourceCollection","features":[412]},{"name":"IXpsOMGeometry","features":[412]},{"name":"IXpsOMGeometryFigure","features":[412]},{"name":"IXpsOMGeometryFigureCollection","features":[412]},{"name":"IXpsOMGlyphs","features":[412]},{"name":"IXpsOMGlyphsEditor","features":[412]},{"name":"IXpsOMGradientBrush","features":[412]},{"name":"IXpsOMGradientStop","features":[412]},{"name":"IXpsOMGradientStopCollection","features":[412]},{"name":"IXpsOMImageBrush","features":[412]},{"name":"IXpsOMImageResource","features":[412]},{"name":"IXpsOMImageResourceCollection","features":[412]},{"name":"IXpsOMLinearGradientBrush","features":[412]},{"name":"IXpsOMMatrixTransform","features":[412]},{"name":"IXpsOMNameCollection","features":[412]},{"name":"IXpsOMObjectFactory","features":[412]},{"name":"IXpsOMObjectFactory1","features":[412]},{"name":"IXpsOMPackage","features":[412]},{"name":"IXpsOMPackage1","features":[412]},{"name":"IXpsOMPackageTarget","features":[412]},{"name":"IXpsOMPackageWriter","features":[412]},{"name":"IXpsOMPackageWriter3D","features":[412]},{"name":"IXpsOMPage","features":[412]},{"name":"IXpsOMPage1","features":[412]},{"name":"IXpsOMPageReference","features":[412]},{"name":"IXpsOMPageReferenceCollection","features":[412]},{"name":"IXpsOMPart","features":[412]},{"name":"IXpsOMPartResources","features":[412]},{"name":"IXpsOMPartUriCollection","features":[412]},{"name":"IXpsOMPath","features":[412]},{"name":"IXpsOMPrintTicketResource","features":[412]},{"name":"IXpsOMRadialGradientBrush","features":[412]},{"name":"IXpsOMRemoteDictionaryResource","features":[412]},{"name":"IXpsOMRemoteDictionaryResource1","features":[412]},{"name":"IXpsOMRemoteDictionaryResourceCollection","features":[412]},{"name":"IXpsOMResource","features":[412]},{"name":"IXpsOMShareable","features":[412]},{"name":"IXpsOMSignatureBlockResource","features":[412]},{"name":"IXpsOMSignatureBlockResourceCollection","features":[412]},{"name":"IXpsOMSolidColorBrush","features":[412]},{"name":"IXpsOMStoryFragmentsResource","features":[412]},{"name":"IXpsOMThumbnailGenerator","features":[412]},{"name":"IXpsOMTileBrush","features":[412]},{"name":"IXpsOMVisual","features":[412]},{"name":"IXpsOMVisualBrush","features":[412]},{"name":"IXpsOMVisualCollection","features":[412]},{"name":"IXpsSignature","features":[412]},{"name":"IXpsSignatureBlock","features":[412]},{"name":"IXpsSignatureBlockCollection","features":[412]},{"name":"IXpsSignatureCollection","features":[412]},{"name":"IXpsSignatureManager","features":[412]},{"name":"IXpsSignatureRequest","features":[412]},{"name":"IXpsSignatureRequestCollection","features":[412]},{"name":"IXpsSigningOptions","features":[412]},{"name":"PRINTER_DEVICE_CAPABILITIES","features":[412]},{"name":"PRINT_WINDOW_FLAGS","features":[412]},{"name":"PSFEATURE_CUSTPAPER","features":[412]},{"name":"PSFEATURE_OUTPUT","features":[303,412]},{"name":"PSINJECTDATA","features":[412]},{"name":"PSINJECT_BEGINDEFAULTS","features":[412]},{"name":"PSINJECT_BEGINPAGESETUP","features":[412]},{"name":"PSINJECT_BEGINPROLOG","features":[412]},{"name":"PSINJECT_BEGINSETUP","features":[412]},{"name":"PSINJECT_BEGINSTREAM","features":[412]},{"name":"PSINJECT_BOUNDINGBOX","features":[412]},{"name":"PSINJECT_COMMENTS","features":[412]},{"name":"PSINJECT_DOCNEEDEDRES","features":[412]},{"name":"PSINJECT_DOCSUPPLIEDRES","features":[412]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORS","features":[412]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORSATEND","features":[412]},{"name":"PSINJECT_ENDDEFAULTS","features":[412]},{"name":"PSINJECT_ENDPAGECOMMENTS","features":[412]},{"name":"PSINJECT_ENDPAGESETUP","features":[412]},{"name":"PSINJECT_ENDPROLOG","features":[412]},{"name":"PSINJECT_ENDSETUP","features":[412]},{"name":"PSINJECT_ENDSTREAM","features":[412]},{"name":"PSINJECT_EOF","features":[412]},{"name":"PSINJECT_ORIENTATION","features":[412]},{"name":"PSINJECT_PAGEBBOX","features":[412]},{"name":"PSINJECT_PAGENUMBER","features":[412]},{"name":"PSINJECT_PAGEORDER","features":[412]},{"name":"PSINJECT_PAGES","features":[412]},{"name":"PSINJECT_PAGESATEND","features":[412]},{"name":"PSINJECT_PAGETRAILER","features":[412]},{"name":"PSINJECT_PLATECOLOR","features":[412]},{"name":"PSINJECT_POINT","features":[412]},{"name":"PSINJECT_PSADOBE","features":[412]},{"name":"PSINJECT_SHOWPAGE","features":[412]},{"name":"PSINJECT_TRAILER","features":[412]},{"name":"PSINJECT_VMRESTORE","features":[412]},{"name":"PSINJECT_VMSAVE","features":[412]},{"name":"PW_CLIENTONLY","features":[412]},{"name":"PrintWindow","features":[303,314,412]},{"name":"SetAbortProc","features":[303,314,412]},{"name":"StartDocA","features":[314,412]},{"name":"StartDocW","features":[314,412]},{"name":"StartPage","features":[314,412]},{"name":"XPS_COLOR","features":[412]},{"name":"XPS_COLOR_INTERPOLATION","features":[412]},{"name":"XPS_COLOR_INTERPOLATION_SCRGBLINEAR","features":[412]},{"name":"XPS_COLOR_INTERPOLATION_SRGBLINEAR","features":[412]},{"name":"XPS_COLOR_TYPE","features":[412]},{"name":"XPS_COLOR_TYPE_CONTEXT","features":[412]},{"name":"XPS_COLOR_TYPE_SCRGB","features":[412]},{"name":"XPS_COLOR_TYPE_SRGB","features":[412]},{"name":"XPS_DASH","features":[412]},{"name":"XPS_DASH_CAP","features":[412]},{"name":"XPS_DASH_CAP_FLAT","features":[412]},{"name":"XPS_DASH_CAP_ROUND","features":[412]},{"name":"XPS_DASH_CAP_SQUARE","features":[412]},{"name":"XPS_DASH_CAP_TRIANGLE","features":[412]},{"name":"XPS_DOCUMENT_TYPE","features":[412]},{"name":"XPS_DOCUMENT_TYPE_OPENXPS","features":[412]},{"name":"XPS_DOCUMENT_TYPE_UNSPECIFIED","features":[412]},{"name":"XPS_DOCUMENT_TYPE_XPS","features":[412]},{"name":"XPS_E_ABSOLUTE_REFERENCE","features":[412]},{"name":"XPS_E_ALREADY_OWNED","features":[412]},{"name":"XPS_E_BLEED_BOX_PAGE_DIMENSIONS_NOT_IN_SYNC","features":[412]},{"name":"XPS_E_BOTH_PATHFIGURE_AND_ABBR_SYNTAX_PRESENT","features":[412]},{"name":"XPS_E_BOTH_RESOURCE_AND_SOURCEATTR_PRESENT","features":[412]},{"name":"XPS_E_CARET_OUTSIDE_STRING","features":[412]},{"name":"XPS_E_CARET_OUT_OF_ORDER","features":[412]},{"name":"XPS_E_COLOR_COMPONENT_OUT_OF_RANGE","features":[412]},{"name":"XPS_E_DICTIONARY_ITEM_NAMED","features":[412]},{"name":"XPS_E_DUPLICATE_NAMES","features":[412]},{"name":"XPS_E_DUPLICATE_RESOURCE_KEYS","features":[412]},{"name":"XPS_E_INDEX_OUT_OF_RANGE","features":[412]},{"name":"XPS_E_INVALID_BLEED_BOX","features":[412]},{"name":"XPS_E_INVALID_CONTENT_BOX","features":[412]},{"name":"XPS_E_INVALID_CONTENT_TYPE","features":[412]},{"name":"XPS_E_INVALID_FLOAT","features":[412]},{"name":"XPS_E_INVALID_FONT_URI","features":[412]},{"name":"XPS_E_INVALID_LANGUAGE","features":[412]},{"name":"XPS_E_INVALID_LOOKUP_TYPE","features":[412]},{"name":"XPS_E_INVALID_MARKUP","features":[412]},{"name":"XPS_E_INVALID_NAME","features":[412]},{"name":"XPS_E_INVALID_NUMBER_OF_COLOR_CHANNELS","features":[412]},{"name":"XPS_E_INVALID_NUMBER_OF_POINTS_IN_CURVE_SEGMENTS","features":[412]},{"name":"XPS_E_INVALID_OBFUSCATED_FONT_URI","features":[412]},{"name":"XPS_E_INVALID_PAGE_SIZE","features":[412]},{"name":"XPS_E_INVALID_RESOURCE_KEY","features":[412]},{"name":"XPS_E_INVALID_SIGNATUREBLOCK_MARKUP","features":[412]},{"name":"XPS_E_INVALID_THUMBNAIL_IMAGE_TYPE","features":[412]},{"name":"XPS_E_INVALID_XML_ENCODING","features":[412]},{"name":"XPS_E_MAPPING_OUTSIDE_INDICES","features":[412]},{"name":"XPS_E_MAPPING_OUTSIDE_STRING","features":[412]},{"name":"XPS_E_MAPPING_OUT_OF_ORDER","features":[412]},{"name":"XPS_E_MARKUP_COMPATIBILITY_ELEMENTS","features":[412]},{"name":"XPS_E_MISSING_COLORPROFILE","features":[412]},{"name":"XPS_E_MISSING_DISCARDCONTROL","features":[412]},{"name":"XPS_E_MISSING_DOCUMENT","features":[412]},{"name":"XPS_E_MISSING_DOCUMENTSEQUENCE_RELATIONSHIP","features":[412]},{"name":"XPS_E_MISSING_FONTURI","features":[412]},{"name":"XPS_E_MISSING_GLYPHS","features":[412]},{"name":"XPS_E_MISSING_IMAGE_IN_IMAGEBRUSH","features":[412]},{"name":"XPS_E_MISSING_LOOKUP","features":[412]},{"name":"XPS_E_MISSING_NAME","features":[412]},{"name":"XPS_E_MISSING_PAGE_IN_DOCUMENT","features":[412]},{"name":"XPS_E_MISSING_PAGE_IN_PAGEREFERENCE","features":[412]},{"name":"XPS_E_MISSING_PART_REFERENCE","features":[412]},{"name":"XPS_E_MISSING_PART_STREAM","features":[412]},{"name":"XPS_E_MISSING_REFERRED_DOCUMENT","features":[412]},{"name":"XPS_E_MISSING_REFERRED_PAGE","features":[412]},{"name":"XPS_E_MISSING_RELATIONSHIP_TARGET","features":[412]},{"name":"XPS_E_MISSING_RESOURCE_KEY","features":[412]},{"name":"XPS_E_MISSING_RESOURCE_RELATIONSHIP","features":[412]},{"name":"XPS_E_MISSING_RESTRICTED_FONT_RELATIONSHIP","features":[412]},{"name":"XPS_E_MISSING_SEGMENT_DATA","features":[412]},{"name":"XPS_E_MULTIPLE_DOCUMENTSEQUENCE_RELATIONSHIPS","features":[412]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENT","features":[412]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENTSEQUENCE","features":[412]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_PAGE","features":[412]},{"name":"XPS_E_MULTIPLE_REFERENCES_TO_PART","features":[412]},{"name":"XPS_E_MULTIPLE_RESOURCES","features":[412]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PACKAGE","features":[412]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PAGE","features":[412]},{"name":"XPS_E_NEGATIVE_FLOAT","features":[412]},{"name":"XPS_E_NESTED_REMOTE_DICTIONARY","features":[412]},{"name":"XPS_E_NOT_ENOUGH_GRADIENT_STOPS","features":[412]},{"name":"XPS_E_NO_CUSTOM_OBJECTS","features":[412]},{"name":"XPS_E_OBJECT_DETACHED","features":[412]},{"name":"XPS_E_ODD_BIDILEVEL","features":[412]},{"name":"XPS_E_ONE_TO_ONE_MAPPING_EXPECTED","features":[412]},{"name":"XPS_E_PACKAGE_ALREADY_OPENED","features":[412]},{"name":"XPS_E_PACKAGE_NOT_OPENED","features":[412]},{"name":"XPS_E_PACKAGE_WRITER_NOT_CLOSED","features":[412]},{"name":"XPS_E_RELATIONSHIP_EXTERNAL","features":[412]},{"name":"XPS_E_RESOURCE_NOT_OWNED","features":[412]},{"name":"XPS_E_RESTRICTED_FONT_NOT_OBFUSCATED","features":[412]},{"name":"XPS_E_SIGNATUREID_DUP","features":[412]},{"name":"XPS_E_SIGREQUESTID_DUP","features":[412]},{"name":"XPS_E_STRING_TOO_LONG","features":[412]},{"name":"XPS_E_TOO_MANY_INDICES","features":[412]},{"name":"XPS_E_UNAVAILABLE_PACKAGE","features":[412]},{"name":"XPS_E_UNEXPECTED_COLORPROFILE","features":[412]},{"name":"XPS_E_UNEXPECTED_CONTENT_TYPE","features":[412]},{"name":"XPS_E_UNEXPECTED_RELATIONSHIP_TYPE","features":[412]},{"name":"XPS_E_UNEXPECTED_RESTRICTED_FONT_RELATIONSHIP","features":[412]},{"name":"XPS_E_VISUAL_CIRCULAR_REF","features":[412]},{"name":"XPS_E_XKEY_ATTR_PRESENT_OUTSIDE_RES_DICT","features":[412]},{"name":"XPS_FILL_RULE","features":[412]},{"name":"XPS_FILL_RULE_EVENODD","features":[412]},{"name":"XPS_FILL_RULE_NONZERO","features":[412]},{"name":"XPS_FONT_EMBEDDING","features":[412]},{"name":"XPS_FONT_EMBEDDING_NORMAL","features":[412]},{"name":"XPS_FONT_EMBEDDING_OBFUSCATED","features":[412]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED","features":[412]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED_UNOBFUSCATED","features":[412]},{"name":"XPS_GLYPH_INDEX","features":[412]},{"name":"XPS_GLYPH_MAPPING","features":[412]},{"name":"XPS_IMAGE_TYPE","features":[412]},{"name":"XPS_IMAGE_TYPE_JPEG","features":[412]},{"name":"XPS_IMAGE_TYPE_JXR","features":[412]},{"name":"XPS_IMAGE_TYPE_PNG","features":[412]},{"name":"XPS_IMAGE_TYPE_TIFF","features":[412]},{"name":"XPS_IMAGE_TYPE_WDP","features":[412]},{"name":"XPS_INTERLEAVING","features":[412]},{"name":"XPS_INTERLEAVING_OFF","features":[412]},{"name":"XPS_INTERLEAVING_ON","features":[412]},{"name":"XPS_LINE_CAP","features":[412]},{"name":"XPS_LINE_CAP_FLAT","features":[412]},{"name":"XPS_LINE_CAP_ROUND","features":[412]},{"name":"XPS_LINE_CAP_SQUARE","features":[412]},{"name":"XPS_LINE_CAP_TRIANGLE","features":[412]},{"name":"XPS_LINE_JOIN","features":[412]},{"name":"XPS_LINE_JOIN_BEVEL","features":[412]},{"name":"XPS_LINE_JOIN_MITER","features":[412]},{"name":"XPS_LINE_JOIN_ROUND","features":[412]},{"name":"XPS_MATRIX","features":[412]},{"name":"XPS_OBJECT_TYPE","features":[412]},{"name":"XPS_OBJECT_TYPE_CANVAS","features":[412]},{"name":"XPS_OBJECT_TYPE_GEOMETRY","features":[412]},{"name":"XPS_OBJECT_TYPE_GLYPHS","features":[412]},{"name":"XPS_OBJECT_TYPE_IMAGE_BRUSH","features":[412]},{"name":"XPS_OBJECT_TYPE_LINEAR_GRADIENT_BRUSH","features":[412]},{"name":"XPS_OBJECT_TYPE_MATRIX_TRANSFORM","features":[412]},{"name":"XPS_OBJECT_TYPE_PATH","features":[412]},{"name":"XPS_OBJECT_TYPE_RADIAL_GRADIENT_BRUSH","features":[412]},{"name":"XPS_OBJECT_TYPE_SOLID_COLOR_BRUSH","features":[412]},{"name":"XPS_OBJECT_TYPE_VISUAL_BRUSH","features":[412]},{"name":"XPS_POINT","features":[412]},{"name":"XPS_RECT","features":[412]},{"name":"XPS_SEGMENT_STROKE_PATTERN","features":[412]},{"name":"XPS_SEGMENT_STROKE_PATTERN_ALL","features":[412]},{"name":"XPS_SEGMENT_STROKE_PATTERN_MIXED","features":[412]},{"name":"XPS_SEGMENT_STROKE_PATTERN_NONE","features":[412]},{"name":"XPS_SEGMENT_TYPE","features":[412]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_CLOCKWISE","features":[412]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_COUNTERCLOCKWISE","features":[412]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_CLOCKWISE","features":[412]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_COUNTERCLOCKWISE","features":[412]},{"name":"XPS_SEGMENT_TYPE_BEZIER","features":[412]},{"name":"XPS_SEGMENT_TYPE_LINE","features":[412]},{"name":"XPS_SEGMENT_TYPE_QUADRATIC_BEZIER","features":[412]},{"name":"XPS_SIGNATURE_STATUS","features":[412]},{"name":"XPS_SIGNATURE_STATUS_BROKEN","features":[412]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLETE","features":[412]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLIANT","features":[412]},{"name":"XPS_SIGNATURE_STATUS_QUESTIONABLE","features":[412]},{"name":"XPS_SIGNATURE_STATUS_VALID","features":[412]},{"name":"XPS_SIGN_FLAGS","features":[412]},{"name":"XPS_SIGN_FLAGS_IGNORE_MARKUP_COMPATIBILITY","features":[412]},{"name":"XPS_SIGN_FLAGS_NONE","features":[412]},{"name":"XPS_SIGN_POLICY","features":[412]},{"name":"XPS_SIGN_POLICY_ALL","features":[412]},{"name":"XPS_SIGN_POLICY_CORE_PROPERTIES","features":[412]},{"name":"XPS_SIGN_POLICY_DISCARD_CONTROL","features":[412]},{"name":"XPS_SIGN_POLICY_NONE","features":[412]},{"name":"XPS_SIGN_POLICY_PRINT_TICKET","features":[412]},{"name":"XPS_SIGN_POLICY_SIGNATURE_RELATIONSHIPS","features":[412]},{"name":"XPS_SIZE","features":[412]},{"name":"XPS_SPREAD_METHOD","features":[412]},{"name":"XPS_SPREAD_METHOD_PAD","features":[412]},{"name":"XPS_SPREAD_METHOD_REFLECT","features":[412]},{"name":"XPS_SPREAD_METHOD_REPEAT","features":[412]},{"name":"XPS_STYLE_SIMULATION","features":[412]},{"name":"XPS_STYLE_SIMULATION_BOLD","features":[412]},{"name":"XPS_STYLE_SIMULATION_BOLDITALIC","features":[412]},{"name":"XPS_STYLE_SIMULATION_ITALIC","features":[412]},{"name":"XPS_STYLE_SIMULATION_NONE","features":[412]},{"name":"XPS_THUMBNAIL_SIZE","features":[412]},{"name":"XPS_THUMBNAIL_SIZE_LARGE","features":[412]},{"name":"XPS_THUMBNAIL_SIZE_MEDIUM","features":[412]},{"name":"XPS_THUMBNAIL_SIZE_SMALL","features":[412]},{"name":"XPS_THUMBNAIL_SIZE_VERYSMALL","features":[412]},{"name":"XPS_TILE_MODE","features":[412]},{"name":"XPS_TILE_MODE_FLIPX","features":[412]},{"name":"XPS_TILE_MODE_FLIPXY","features":[412]},{"name":"XPS_TILE_MODE_FLIPY","features":[412]},{"name":"XPS_TILE_MODE_NONE","features":[412]},{"name":"XPS_TILE_MODE_TILE","features":[412]},{"name":"XpsOMObjectFactory","features":[412]},{"name":"XpsOMThumbnailGenerator","features":[412]},{"name":"XpsSignatureManager","features":[412]}],"527":[{"name":"ID_DOCUMENTPACKAGETARGET_MSXPS","features":[518]},{"name":"ID_DOCUMENTPACKAGETARGET_OPENXPS","features":[518]},{"name":"ID_DOCUMENTPACKAGETARGET_OPENXPS_WITH_3D","features":[518]},{"name":"IPrintDocumentPackageStatusEvent","features":[518,354]},{"name":"IPrintDocumentPackageTarget","features":[518]},{"name":"IPrintDocumentPackageTarget2","features":[518]},{"name":"IPrintDocumentPackageTargetFactory","features":[518]},{"name":"IXpsPrintJob","features":[518]},{"name":"IXpsPrintJobStream","features":[518,354]},{"name":"PrintDocumentPackageCompletion","features":[518]},{"name":"PrintDocumentPackageCompletion_Canceled","features":[518]},{"name":"PrintDocumentPackageCompletion_Completed","features":[518]},{"name":"PrintDocumentPackageCompletion_Failed","features":[518]},{"name":"PrintDocumentPackageCompletion_InProgress","features":[518]},{"name":"PrintDocumentPackageStatus","features":[518]},{"name":"PrintDocumentPackageTarget","features":[518]},{"name":"PrintDocumentPackageTargetFactory","features":[518]},{"name":"StartXpsPrintJob","features":[303,518,354]},{"name":"StartXpsPrintJob1","features":[303,518]},{"name":"XPS_JOB_CANCELLED","features":[518]},{"name":"XPS_JOB_COMPLETED","features":[518]},{"name":"XPS_JOB_COMPLETION","features":[518]},{"name":"XPS_JOB_FAILED","features":[518]},{"name":"XPS_JOB_IN_PROGRESS","features":[518]},{"name":"XPS_JOB_STATUS","features":[518]}],"528":[{"name":"ADRENTRY","features":[303,384,354]},{"name":"ADRLIST","features":[303,384,354]},{"name":"ADRPARM","features":[303,384,354]},{"name":"BuildDisplayTable","features":[303,384,354]},{"name":"CALLERRELEASE","features":[384]},{"name":"ChangeIdleRoutine","features":[303,384]},{"name":"CreateIProp","features":[384]},{"name":"CreateTable","features":[384]},{"name":"DTBLBUTTON","features":[384]},{"name":"DTBLCHECKBOX","features":[384]},{"name":"DTBLCOMBOBOX","features":[384]},{"name":"DTBLDDLBX","features":[384]},{"name":"DTBLEDIT","features":[384]},{"name":"DTBLGROUPBOX","features":[384]},{"name":"DTBLLABEL","features":[384]},{"name":"DTBLLBX","features":[384]},{"name":"DTBLMVDDLBX","features":[384]},{"name":"DTBLMVLISTBOX","features":[384]},{"name":"DTBLPAGE","features":[384]},{"name":"DTBLRADIOBUTTON","features":[384]},{"name":"DTCTL","features":[384]},{"name":"DTPAGE","features":[384]},{"name":"DeinitMapiUtil","features":[384]},{"name":"DeregisterIdleRoutine","features":[384]},{"name":"ENTRYID","features":[384]},{"name":"ERROR_NOTIFICATION","features":[384]},{"name":"EXTENDED_NOTIFICATION","features":[384]},{"name":"E_IMAPI_BURN_VERIFICATION_FAILED","features":[384]},{"name":"E_IMAPI_DF2DATA_CLIENT_NAME_IS_NOT_VALID","features":[384]},{"name":"E_IMAPI_DF2DATA_INVALID_MEDIA_STATE","features":[384]},{"name":"E_IMAPI_DF2DATA_MEDIA_IS_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2DATA_MEDIA_NOT_BLANK","features":[384]},{"name":"E_IMAPI_DF2DATA_RECORDER_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2DATA_STREAM_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2DATA_STREAM_TOO_LARGE_FOR_CURRENT_MEDIA","features":[384]},{"name":"E_IMAPI_DF2DATA_WRITE_IN_PROGRESS","features":[384]},{"name":"E_IMAPI_DF2DATA_WRITE_NOT_IN_PROGRESS","features":[384]},{"name":"E_IMAPI_DF2RAW_CLIENT_NAME_IS_NOT_VALID","features":[384]},{"name":"E_IMAPI_DF2RAW_DATA_BLOCK_TYPE_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_BLANK","features":[384]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_PREPARED","features":[384]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_PREPARED","features":[384]},{"name":"E_IMAPI_DF2RAW_NOT_ENOUGH_SPACE","features":[384]},{"name":"E_IMAPI_DF2RAW_NO_RECORDER_SPECIFIED","features":[384]},{"name":"E_IMAPI_DF2RAW_RECORDER_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2RAW_STREAM_LEADIN_TOO_SHORT","features":[384]},{"name":"E_IMAPI_DF2RAW_STREAM_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2RAW_WRITE_IN_PROGRESS","features":[384]},{"name":"E_IMAPI_DF2RAW_WRITE_NOT_IN_PROGRESS","features":[384]},{"name":"E_IMAPI_DF2TAO_CLIENT_NAME_IS_NOT_VALID","features":[384]},{"name":"E_IMAPI_DF2TAO_INVALID_ISRC","features":[384]},{"name":"E_IMAPI_DF2TAO_INVALID_MCN","features":[384]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_BLANK","features":[384]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_PREPARED","features":[384]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_PREPARED","features":[384]},{"name":"E_IMAPI_DF2TAO_NOT_ENOUGH_SPACE","features":[384]},{"name":"E_IMAPI_DF2TAO_NO_RECORDER_SPECIFIED","features":[384]},{"name":"E_IMAPI_DF2TAO_PROPERTY_FOR_BLANK_MEDIA_ONLY","features":[384]},{"name":"E_IMAPI_DF2TAO_RECORDER_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2TAO_STREAM_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_DF2TAO_TABLE_OF_CONTENTS_EMPTY_DISC","features":[384]},{"name":"E_IMAPI_DF2TAO_TRACK_LIMIT_REACHED","features":[384]},{"name":"E_IMAPI_DF2TAO_WRITE_IN_PROGRESS","features":[384]},{"name":"E_IMAPI_DF2TAO_WRITE_NOT_IN_PROGRESS","features":[384]},{"name":"E_IMAPI_ERASE_CLIENT_NAME_IS_NOT_VALID","features":[384]},{"name":"E_IMAPI_ERASE_DISC_INFORMATION_TOO_SMALL","features":[384]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_ERASE_COMMAND","features":[384]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_SPINUP_COMMAND","features":[384]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_ERASABLE","features":[384]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_ERASE_MODE_PAGE_2A_TOO_SMALL","features":[384]},{"name":"E_IMAPI_ERASE_ONLY_ONE_RECORDER_SUPPORTED","features":[384]},{"name":"E_IMAPI_ERASE_RECORDER_IN_USE","features":[384]},{"name":"E_IMAPI_ERASE_RECORDER_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_ERASE_TOOK_LONGER_THAN_ONE_HOUR","features":[384]},{"name":"E_IMAPI_ERASE_UNEXPECTED_DRIVE_RESPONSE_DURING_ERASE","features":[384]},{"name":"E_IMAPI_LOSS_OF_STREAMING","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_INSUFFICIENT_SPACE","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_IS_READ_ONLY","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_NO_TRACKS","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_SECTOR_TYPE_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACKS","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACK_INDEXES","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_TRACKS_ALREADY_ADDED","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_NOT_FOUND","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_OFFSET_ZERO_CANNOT_BE_CLEARED","features":[384]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_TOO_CLOSE_TO_OTHER_INDEX","features":[384]},{"name":"E_IMAPI_RECORDER_CLIENT_NAME_IS_NOT_VALID","features":[384]},{"name":"E_IMAPI_RECORDER_COMMAND_TIMEOUT","features":[384]},{"name":"E_IMAPI_RECORDER_DVD_STRUCTURE_NOT_PRESENT","features":[384]},{"name":"E_IMAPI_RECORDER_FEATURE_IS_NOT_CURRENT","features":[384]},{"name":"E_IMAPI_RECORDER_GET_CONFIGURATION_NOT_SUPPORTED","features":[384]},{"name":"E_IMAPI_RECORDER_INVALID_MODE_PARAMETERS","features":[384]},{"name":"E_IMAPI_RECORDER_INVALID_RESPONSE_FROM_DEVICE","features":[384]},{"name":"E_IMAPI_RECORDER_LOCKED","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_BECOMING_READY","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_BUSY","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_FORMAT_IN_PROGRESS","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_INCOMPATIBLE","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_NOT_FORMATTED","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_NO_MEDIA","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_SPEED_MISMATCH","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_UPSIDE_DOWN","features":[384]},{"name":"E_IMAPI_RECORDER_MEDIA_WRITE_PROTECTED","features":[384]},{"name":"E_IMAPI_RECORDER_NO_SUCH_FEATURE","features":[384]},{"name":"E_IMAPI_RECORDER_NO_SUCH_MODE_PAGE","features":[384]},{"name":"E_IMAPI_RECORDER_REQUIRED","features":[384]},{"name":"E_IMAPI_REQUEST_CANCELLED","features":[384]},{"name":"E_IMAPI_UNEXPECTED_RESPONSE_FROM_DEVICE","features":[384]},{"name":"EnableIdleRoutine","features":[303,384]},{"name":"FACILITY_IMAPI2","features":[384]},{"name":"FEqualNames","features":[303,384]},{"name":"FLATENTRY","features":[384]},{"name":"FLATENTRYLIST","features":[384]},{"name":"FLATMTSIDLIST","features":[384]},{"name":"FPropCompareProp","features":[303,384,354]},{"name":"FPropContainsProp","features":[303,384,354]},{"name":"FPropExists","features":[303,384]},{"name":"FlagList","features":[384]},{"name":"FreePadrlist","features":[303,384,354]},{"name":"FreeProws","features":[303,384,354]},{"name":"FtAddFt","features":[303,384]},{"name":"FtMulDw","features":[303,384]},{"name":"FtMulDwDw","features":[303,384]},{"name":"FtNegFt","features":[303,384]},{"name":"FtSubFt","features":[303,384]},{"name":"FtgRegisterIdleRoutine","features":[303,384]},{"name":"Gender","features":[384]},{"name":"HrAddColumns","features":[384]},{"name":"HrAddColumnsEx","features":[384]},{"name":"HrAllocAdviseSink","features":[303,384,354]},{"name":"HrDispatchNotifications","features":[384]},{"name":"HrGetOneProp","features":[303,384,354]},{"name":"HrIStorageFromStream","features":[384,427]},{"name":"HrQueryAllRows","features":[303,384,354]},{"name":"HrSetOneProp","features":[303,384,354]},{"name":"HrThisThreadAdviseSink","features":[384]},{"name":"IABContainer","features":[384]},{"name":"IAddrBook","features":[384]},{"name":"IAttach","features":[384]},{"name":"IDistList","features":[384]},{"name":"IMAPIAdviseSink","features":[384]},{"name":"IMAPIContainer","features":[384]},{"name":"IMAPIControl","features":[384]},{"name":"IMAPIFolder","features":[384]},{"name":"IMAPIProgress","features":[384]},{"name":"IMAPIProp","features":[384]},{"name":"IMAPIStatus","features":[384]},{"name":"IMAPITable","features":[384]},{"name":"IMAPI_E_BAD_MULTISESSION_PARAMETER","features":[384]},{"name":"IMAPI_E_BOOT_EMULATION_IMAGE_SIZE_MISMATCH","features":[384]},{"name":"IMAPI_E_BOOT_IMAGE_DATA","features":[384]},{"name":"IMAPI_E_BOOT_OBJECT_CONFLICT","features":[384]},{"name":"IMAPI_E_DATA_STREAM_CREATE_FAILURE","features":[384]},{"name":"IMAPI_E_DATA_STREAM_INCONSISTENCY","features":[384]},{"name":"IMAPI_E_DATA_STREAM_READ_FAILURE","features":[384]},{"name":"IMAPI_E_DATA_TOO_BIG","features":[384]},{"name":"IMAPI_E_DIRECTORY_READ_FAILURE","features":[384]},{"name":"IMAPI_E_DIR_NOT_EMPTY","features":[384]},{"name":"IMAPI_E_DIR_NOT_FOUND","features":[384]},{"name":"IMAPI_E_DISC_MISMATCH","features":[384]},{"name":"IMAPI_E_DUP_NAME","features":[384]},{"name":"IMAPI_E_EMPTY_DISC","features":[384]},{"name":"IMAPI_E_FILE_NOT_FOUND","features":[384]},{"name":"IMAPI_E_FILE_SYSTEM_CHANGE_NOT_ALLOWED","features":[384]},{"name":"IMAPI_E_FILE_SYSTEM_FEATURE_NOT_SUPPORTED","features":[384]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_EMPTY","features":[384]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_FOUND","features":[384]},{"name":"IMAPI_E_FILE_SYSTEM_READ_CONSISTENCY_ERROR","features":[384]},{"name":"IMAPI_E_FSI_INTERNAL_ERROR","features":[384]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_NOT_ALIGNED","features":[384]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_TOO_BIG","features":[384]},{"name":"IMAPI_E_IMAGEMANAGER_NO_IMAGE","features":[384]},{"name":"IMAPI_E_IMAGEMANAGER_NO_VALID_VD_FOUND","features":[384]},{"name":"IMAPI_E_IMAGE_SIZE_LIMIT","features":[384]},{"name":"IMAPI_E_IMAGE_TOO_BIG","features":[384]},{"name":"IMAPI_E_IMPORT_MEDIA_NOT_ALLOWED","features":[384]},{"name":"IMAPI_E_IMPORT_READ_FAILURE","features":[384]},{"name":"IMAPI_E_IMPORT_SEEK_FAILURE","features":[384]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_DIRECTORY_EXISTS_AS_FILE","features":[384]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_FILE_EXISTS_AS_DIRECTORY","features":[384]},{"name":"IMAPI_E_INCOMPATIBLE_MULTISESSION_TYPE","features":[384]},{"name":"IMAPI_E_INCOMPATIBLE_PREVIOUS_SESSION","features":[384]},{"name":"IMAPI_E_INVALID_DATE","features":[384]},{"name":"IMAPI_E_INVALID_PARAM","features":[384]},{"name":"IMAPI_E_INVALID_PATH","features":[384]},{"name":"IMAPI_E_INVALID_VOLUME_NAME","features":[384]},{"name":"IMAPI_E_INVALID_WORKING_DIRECTORY","features":[384]},{"name":"IMAPI_E_ISO9660_LEVELS","features":[384]},{"name":"IMAPI_E_ITEM_NOT_FOUND","features":[384]},{"name":"IMAPI_E_MULTISESSION_NOT_SET","features":[384]},{"name":"IMAPI_E_NOT_DIR","features":[384]},{"name":"IMAPI_E_NOT_FILE","features":[384]},{"name":"IMAPI_E_NOT_IN_FILE_SYSTEM","features":[384]},{"name":"IMAPI_E_NO_COMPATIBLE_MULTISESSION_TYPE","features":[384]},{"name":"IMAPI_E_NO_OUTPUT","features":[384]},{"name":"IMAPI_E_NO_SUPPORTED_FILE_SYSTEM","features":[384]},{"name":"IMAPI_E_NO_UNIQUE_NAME","features":[384]},{"name":"IMAPI_E_PROPERTY_NOT_ACCESSIBLE","features":[384]},{"name":"IMAPI_E_READONLY","features":[384]},{"name":"IMAPI_E_RESTRICTED_NAME_VIOLATION","features":[384]},{"name":"IMAPI_E_STASHFILE_MOVE","features":[384]},{"name":"IMAPI_E_STASHFILE_OPEN_FAILURE","features":[384]},{"name":"IMAPI_E_STASHFILE_READ_FAILURE","features":[384]},{"name":"IMAPI_E_STASHFILE_SEEK_FAILURE","features":[384]},{"name":"IMAPI_E_STASHFILE_WRITE_FAILURE","features":[384]},{"name":"IMAPI_E_TOO_MANY_DIRS","features":[384]},{"name":"IMAPI_E_UDF_NOT_WRITE_COMPATIBLE","features":[384]},{"name":"IMAPI_E_UDF_REVISION_CHANGE_NOT_ALLOWED","features":[384]},{"name":"IMAPI_E_WORKING_DIRECTORY_SPACE","features":[384]},{"name":"IMAPI_S_IMAGE_FEATURE_NOT_SUPPORTED","features":[384]},{"name":"IMailUser","features":[384]},{"name":"IMessage","features":[384]},{"name":"IMsgStore","features":[384]},{"name":"IProfSect","features":[384]},{"name":"IPropData","features":[384]},{"name":"IProviderAdmin","features":[384]},{"name":"ITableData","features":[384]},{"name":"IWABExtInit","features":[384]},{"name":"IWABObject","features":[384]},{"name":"LPALLOCATEBUFFER","features":[384]},{"name":"LPALLOCATEMORE","features":[384]},{"name":"LPCREATECONVERSATIONINDEX","features":[384]},{"name":"LPDISPATCHNOTIFICATIONS","features":[384]},{"name":"LPFNABSDI","features":[303,384]},{"name":"LPFNBUTTON","features":[384]},{"name":"LPFNDISMISS","features":[384]},{"name":"LPFREEBUFFER","features":[384]},{"name":"LPNOTIFCALLBACK","features":[303,384,354]},{"name":"LPOPENSTREAMONFILE","features":[384,354]},{"name":"LPWABACTIONITEM","features":[384]},{"name":"LPWABALLOCATEBUFFER","features":[384]},{"name":"LPWABALLOCATEMORE","features":[384]},{"name":"LPWABFREEBUFFER","features":[384]},{"name":"LPWABOPEN","features":[303,384]},{"name":"LPWABOPENEX","features":[303,384]},{"name":"LPropCompareProp","features":[303,384,354]},{"name":"LpValFindProp","features":[303,384,354]},{"name":"MAPIDeinitIdle","features":[384]},{"name":"MAPIERROR","features":[384]},{"name":"MAPIGetDefaultMalloc","features":[384,354]},{"name":"MAPIInitIdle","features":[384]},{"name":"MAPINAMEID","features":[384]},{"name":"MAPIUID","features":[384]},{"name":"MAPI_COMPOUND","features":[384]},{"name":"MAPI_DIM","features":[384]},{"name":"MAPI_ERROR_VERSION","features":[384]},{"name":"MAPI_E_CALL_FAILED","features":[384]},{"name":"MAPI_E_INTERFACE_NOT_SUPPORTED","features":[384]},{"name":"MAPI_E_INVALID_PARAMETER","features":[384]},{"name":"MAPI_E_NOT_ENOUGH_MEMORY","features":[384]},{"name":"MAPI_E_NO_ACCESS","features":[384]},{"name":"MAPI_NOTRECIP","features":[384]},{"name":"MAPI_NOTRESERVED","features":[384]},{"name":"MAPI_NOW","features":[384]},{"name":"MAPI_ONE_OFF_NO_RICH_INFO","features":[384]},{"name":"MAPI_P1","features":[384]},{"name":"MAPI_SHORTTERM","features":[384]},{"name":"MAPI_SUBMITTED","features":[384]},{"name":"MAPI_THISSESSION","features":[384]},{"name":"MAPI_USE_DEFAULT","features":[384]},{"name":"MNID_ID","features":[384]},{"name":"MNID_STRING","features":[384]},{"name":"MTSID","features":[384]},{"name":"MV_FLAG","features":[384]},{"name":"MV_INSTANCE","features":[384]},{"name":"NEWMAIL_NOTIFICATION","features":[384]},{"name":"NOTIFICATION","features":[303,384,354]},{"name":"NOTIFKEY","features":[384]},{"name":"OBJECT_NOTIFICATION","features":[384]},{"name":"OPENSTREAMONFILE","features":[384]},{"name":"OpenStreamOnFile","features":[384,354]},{"name":"PFNIDLE","features":[303,384]},{"name":"PRIHIGHEST","features":[384]},{"name":"PRILOWEST","features":[384]},{"name":"PRIUSER","features":[384]},{"name":"PROP_ID_INVALID","features":[384]},{"name":"PROP_ID_NULL","features":[384]},{"name":"PROP_ID_SECURE_MAX","features":[384]},{"name":"PROP_ID_SECURE_MIN","features":[384]},{"name":"PpropFindProp","features":[303,384,354]},{"name":"PropCopyMore","features":[303,384,354]},{"name":"RTFSync","features":[303,384]},{"name":"SAndRestriction","features":[303,384,354]},{"name":"SAppTimeArray","features":[384]},{"name":"SBinary","features":[384]},{"name":"SBinaryArray","features":[384]},{"name":"SBitMaskRestriction","features":[384]},{"name":"SCommentRestriction","features":[303,384,354]},{"name":"SComparePropsRestriction","features":[384]},{"name":"SContentRestriction","features":[303,384,354]},{"name":"SCurrencyArray","features":[384,354]},{"name":"SDateTimeArray","features":[303,384]},{"name":"SDoubleArray","features":[384]},{"name":"SERVICE_UI_ALLOWED","features":[384]},{"name":"SERVICE_UI_ALWAYS","features":[384]},{"name":"SExistRestriction","features":[384]},{"name":"SGuidArray","features":[384]},{"name":"SLPSTRArray","features":[384]},{"name":"SLargeIntegerArray","features":[384]},{"name":"SLongArray","features":[384]},{"name":"SNotRestriction","features":[303,384,354]},{"name":"SOrRestriction","features":[303,384,354]},{"name":"SPropProblem","features":[384]},{"name":"SPropProblemArray","features":[384]},{"name":"SPropTagArray","features":[384]},{"name":"SPropValue","features":[303,384,354]},{"name":"SPropertyRestriction","features":[303,384,354]},{"name":"SRealArray","features":[384]},{"name":"SRestriction","features":[303,384,354]},{"name":"SRow","features":[303,384,354]},{"name":"SRowSet","features":[303,384,354]},{"name":"SShortArray","features":[384]},{"name":"SSizeRestriction","features":[384]},{"name":"SSortOrder","features":[384]},{"name":"SSortOrderSet","features":[384]},{"name":"SSubRestriction","features":[303,384,354]},{"name":"STATUS_OBJECT_NOTIFICATION","features":[303,384,354]},{"name":"SWStringArray","features":[384]},{"name":"S_IMAPI_BOTHADJUSTED","features":[384]},{"name":"S_IMAPI_COMMAND_HAS_SENSE_DATA","features":[384]},{"name":"S_IMAPI_RAW_IMAGE_TRACK_INDEX_ALREADY_EXISTS","features":[384]},{"name":"S_IMAPI_ROTATIONADJUSTED","features":[384]},{"name":"S_IMAPI_SPEEDADJUSTED","features":[384]},{"name":"S_IMAPI_WRITE_NOT_IN_PROGRESS","features":[384]},{"name":"ScCopyNotifications","features":[303,384,354]},{"name":"ScCopyProps","features":[303,384,354]},{"name":"ScCountNotifications","features":[303,384,354]},{"name":"ScCountProps","features":[303,384,354]},{"name":"ScCreateConversationIndex","features":[384]},{"name":"ScDupPropset","features":[303,384,354]},{"name":"ScInitMapiUtil","features":[384]},{"name":"ScLocalPathFromUNC","features":[384]},{"name":"ScRelocNotifications","features":[303,384,354]},{"name":"ScRelocProps","features":[303,384,354]},{"name":"ScUNCFromLocalPath","features":[384]},{"name":"SzFindCh","features":[384]},{"name":"SzFindLastCh","features":[384]},{"name":"SzFindSz","features":[384]},{"name":"TABLE_CHANGED","features":[384]},{"name":"TABLE_ERROR","features":[384]},{"name":"TABLE_NOTIFICATION","features":[303,384,354]},{"name":"TABLE_RELOAD","features":[384]},{"name":"TABLE_RESTRICT_DONE","features":[384]},{"name":"TABLE_ROW_ADDED","features":[384]},{"name":"TABLE_ROW_DELETED","features":[384]},{"name":"TABLE_ROW_MODIFIED","features":[384]},{"name":"TABLE_SETCOL_DONE","features":[384]},{"name":"TABLE_SORT_DONE","features":[384]},{"name":"TAD_ALL_ROWS","features":[384]},{"name":"UFromSz","features":[384]},{"name":"UI_CURRENT_PROVIDER_FIRST","features":[384]},{"name":"UI_SERVICE","features":[384]},{"name":"UlAddRef","features":[384]},{"name":"UlPropSize","features":[303,384,354]},{"name":"UlRelease","features":[384]},{"name":"WABEXTDISPLAY","features":[303,384]},{"name":"WABIMPORTPARAM","features":[303,384]},{"name":"WABOBJECT_LDAPURL_RETURN_MAILUSER","features":[384]},{"name":"WABOBJECT_ME_NEW","features":[384]},{"name":"WABOBJECT_ME_NOCREATE","features":[384]},{"name":"WAB_CONTEXT_ADRLIST","features":[384]},{"name":"WAB_DISPLAY_ISNTDS","features":[384]},{"name":"WAB_DISPLAY_LDAPURL","features":[384]},{"name":"WAB_DLL_NAME","features":[384]},{"name":"WAB_DLL_PATH_KEY","features":[384]},{"name":"WAB_ENABLE_PROFILES","features":[384]},{"name":"WAB_IGNORE_PROFILES","features":[384]},{"name":"WAB_LOCAL_CONTAINERS","features":[384]},{"name":"WAB_PARAM","features":[303,384]},{"name":"WAB_PROFILE_CONTENTS","features":[384]},{"name":"WAB_USE_OE_SENDMAIL","features":[384]},{"name":"WAB_VCARD_FILE","features":[384]},{"name":"WAB_VCARD_STREAM","features":[384]},{"name":"WrapCompressedRTFStream","features":[384,354]},{"name":"WrapStoreEntryID","features":[384]},{"name":"__UPV","features":[303,384,354]},{"name":"cchProfileNameMax","features":[384]},{"name":"cchProfilePassMax","features":[384]},{"name":"fMapiUnicode","features":[384]},{"name":"genderFemale","features":[384]},{"name":"genderMale","features":[384]},{"name":"genderUnspecified","features":[384]},{"name":"hrSuccess","features":[384]},{"name":"szHrDispatchNotifications","features":[384]},{"name":"szMAPINotificationMsg","features":[384]},{"name":"szScCreateConversationIndex","features":[384]}],"529":[{"name":"AMSI_ATTRIBUTE","features":[519]},{"name":"AMSI_ATTRIBUTE_ALL_ADDRESS","features":[519]},{"name":"AMSI_ATTRIBUTE_ALL_SIZE","features":[519]},{"name":"AMSI_ATTRIBUTE_APP_NAME","features":[519]},{"name":"AMSI_ATTRIBUTE_CONTENT_ADDRESS","features":[519]},{"name":"AMSI_ATTRIBUTE_CONTENT_NAME","features":[519]},{"name":"AMSI_ATTRIBUTE_CONTENT_SIZE","features":[519]},{"name":"AMSI_ATTRIBUTE_QUIET","features":[519]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_ADDRESS","features":[519]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_SIZE","features":[519]},{"name":"AMSI_ATTRIBUTE_SESSION","features":[519]},{"name":"AMSI_RESULT","features":[519]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_END","features":[519]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_START","features":[519]},{"name":"AMSI_RESULT_CLEAN","features":[519]},{"name":"AMSI_RESULT_DETECTED","features":[519]},{"name":"AMSI_RESULT_NOT_DETECTED","features":[519]},{"name":"AMSI_UAC_MSI_ACTION","features":[519]},{"name":"AMSI_UAC_MSI_ACTION_INSTALL","features":[519]},{"name":"AMSI_UAC_MSI_ACTION_MAINTENANCE","features":[519]},{"name":"AMSI_UAC_MSI_ACTION_MAX","features":[519]},{"name":"AMSI_UAC_MSI_ACTION_UNINSTALL","features":[519]},{"name":"AMSI_UAC_MSI_ACTION_UPDATE","features":[519]},{"name":"AMSI_UAC_REQUEST_AX_INFO","features":[519]},{"name":"AMSI_UAC_REQUEST_COM_INFO","features":[519]},{"name":"AMSI_UAC_REQUEST_CONTEXT","features":[303,519]},{"name":"AMSI_UAC_REQUEST_EXE_INFO","features":[519]},{"name":"AMSI_UAC_REQUEST_MSI_INFO","features":[519]},{"name":"AMSI_UAC_REQUEST_PACKAGED_APP_INFO","features":[519]},{"name":"AMSI_UAC_REQUEST_TYPE","features":[519]},{"name":"AMSI_UAC_REQUEST_TYPE_AX","features":[519]},{"name":"AMSI_UAC_REQUEST_TYPE_COM","features":[519]},{"name":"AMSI_UAC_REQUEST_TYPE_EXE","features":[519]},{"name":"AMSI_UAC_REQUEST_TYPE_MAX","features":[519]},{"name":"AMSI_UAC_REQUEST_TYPE_MSI","features":[519]},{"name":"AMSI_UAC_REQUEST_TYPE_PACKAGED_APP","features":[519]},{"name":"AMSI_UAC_TRUST_STATE","features":[519]},{"name":"AMSI_UAC_TRUST_STATE_BLOCKED","features":[519]},{"name":"AMSI_UAC_TRUST_STATE_MAX","features":[519]},{"name":"AMSI_UAC_TRUST_STATE_TRUSTED","features":[519]},{"name":"AMSI_UAC_TRUST_STATE_UNTRUSTED","features":[519]},{"name":"AmsiCloseSession","features":[519]},{"name":"AmsiInitialize","features":[519]},{"name":"AmsiNotifyOperation","features":[519]},{"name":"AmsiOpenSession","features":[519]},{"name":"AmsiScanBuffer","features":[519]},{"name":"AmsiScanString","features":[519]},{"name":"AmsiUninitialize","features":[519]},{"name":"CAntimalware","features":[519]},{"name":"HAMSICONTEXT","features":[519]},{"name":"HAMSISESSION","features":[519]},{"name":"IAmsiStream","features":[519]},{"name":"IAntimalware","features":[519]},{"name":"IAntimalware2","features":[519]},{"name":"IAntimalwareProvider","features":[519]},{"name":"IAntimalwareProvider2","features":[519]},{"name":"IAntimalwareUacProvider","features":[519]},{"name":"InstallELAMCertificateInfo","features":[303,519]}],"530":[{"name":"ACTCTXA","features":[303,520]},{"name":"ACTCTXW","features":[303,520]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE","features":[520]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MAXVERSIONTESTED","features":[520]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MITIGATION","features":[520]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_OS","features":[520]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_UNKNOWN","features":[520]},{"name":"ACTCTX_REQUESTED_RUN_LEVEL","features":[520]},{"name":"ACTCTX_RUN_LEVEL_AS_INVOKER","features":[520]},{"name":"ACTCTX_RUN_LEVEL_HIGHEST_AVAILABLE","features":[520]},{"name":"ACTCTX_RUN_LEVEL_NUMBERS","features":[520]},{"name":"ACTCTX_RUN_LEVEL_REQUIRE_ADMIN","features":[520]},{"name":"ACTCTX_RUN_LEVEL_UNSPECIFIED","features":[520]},{"name":"ACTCTX_SECTION_KEYED_DATA","features":[303,520,335]},{"name":"ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION","features":[520]},{"name":"ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION","features":[520]},{"name":"ACTIVATION_CONTEXT_DETAILED_INFORMATION","features":[520]},{"name":"ACTIVATION_CONTEXT_QUERY_INDEX","features":[520]},{"name":"ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION","features":[520]},{"name":"ADVERTISEFLAGS","features":[520]},{"name":"ADVERTISEFLAGS_MACHINEASSIGN","features":[520]},{"name":"ADVERTISEFLAGS_USERASSIGN","features":[520]},{"name":"APPLY_OPTION_FAIL_IF_CLOSE","features":[520]},{"name":"APPLY_OPTION_FAIL_IF_EXACT","features":[520]},{"name":"APPLY_OPTION_TEST_ONLY","features":[520]},{"name":"APPLY_OPTION_VALID_FLAGS","features":[520]},{"name":"ASM_BINDF_BINPATH_PROBE_ONLY","features":[520]},{"name":"ASM_BINDF_FORCE_CACHE_INSTALL","features":[520]},{"name":"ASM_BINDF_PARENT_ASM_HINT","features":[520]},{"name":"ASM_BINDF_RFS_INTEGRITY_CHECK","features":[520]},{"name":"ASM_BINDF_RFS_MODULE_CHECK","features":[520]},{"name":"ASM_BINDF_SHARED_BINPATH_HINT","features":[520]},{"name":"ASM_BIND_FLAGS","features":[520]},{"name":"ASM_CMPF_ALL","features":[520]},{"name":"ASM_CMPF_BUILD_NUMBER","features":[520]},{"name":"ASM_CMPF_CULTURE","features":[520]},{"name":"ASM_CMPF_CUSTOM","features":[520]},{"name":"ASM_CMPF_DEFAULT","features":[520]},{"name":"ASM_CMPF_MAJOR_VERSION","features":[520]},{"name":"ASM_CMPF_MINOR_VERSION","features":[520]},{"name":"ASM_CMPF_NAME","features":[520]},{"name":"ASM_CMPF_PUBLIC_KEY_TOKEN","features":[520]},{"name":"ASM_CMPF_REVISION_NUMBER","features":[520]},{"name":"ASM_CMP_FLAGS","features":[520]},{"name":"ASM_DISPLAYF_CULTURE","features":[520]},{"name":"ASM_DISPLAYF_CUSTOM","features":[520]},{"name":"ASM_DISPLAYF_LANGUAGEID","features":[520]},{"name":"ASM_DISPLAYF_PROCESSORARCHITECTURE","features":[520]},{"name":"ASM_DISPLAYF_PUBLIC_KEY","features":[520]},{"name":"ASM_DISPLAYF_PUBLIC_KEY_TOKEN","features":[520]},{"name":"ASM_DISPLAYF_VERSION","features":[520]},{"name":"ASM_DISPLAY_FLAGS","features":[520]},{"name":"ASM_NAME","features":[520]},{"name":"ASM_NAME_ALIAS","features":[520]},{"name":"ASM_NAME_BUILD_NUMBER","features":[520]},{"name":"ASM_NAME_CODEBASE_LASTMOD","features":[520]},{"name":"ASM_NAME_CODEBASE_URL","features":[520]},{"name":"ASM_NAME_CULTURE","features":[520]},{"name":"ASM_NAME_CUSTOM","features":[520]},{"name":"ASM_NAME_HASH_ALGID","features":[520]},{"name":"ASM_NAME_HASH_VALUE","features":[520]},{"name":"ASM_NAME_MAJOR_VERSION","features":[520]},{"name":"ASM_NAME_MAX_PARAMS","features":[520]},{"name":"ASM_NAME_MINOR_VERSION","features":[520]},{"name":"ASM_NAME_MVID","features":[520]},{"name":"ASM_NAME_NAME","features":[520]},{"name":"ASM_NAME_NULL_CUSTOM","features":[520]},{"name":"ASM_NAME_NULL_PUBLIC_KEY","features":[520]},{"name":"ASM_NAME_NULL_PUBLIC_KEY_TOKEN","features":[520]},{"name":"ASM_NAME_OSINFO_ARRAY","features":[520]},{"name":"ASM_NAME_PROCESSOR_ID_ARRAY","features":[520]},{"name":"ASM_NAME_PUBLIC_KEY","features":[520]},{"name":"ASM_NAME_PUBLIC_KEY_TOKEN","features":[520]},{"name":"ASM_NAME_REVISION_NUMBER","features":[520]},{"name":"ASSEMBLYINFO_FLAG_INSTALLED","features":[520]},{"name":"ASSEMBLYINFO_FLAG_PAYLOADRESIDENT","features":[520]},{"name":"ASSEMBLY_FILE_DETAILED_INFORMATION","features":[520]},{"name":"ASSEMBLY_INFO","features":[520]},{"name":"ActivateActCtx","features":[303,520]},{"name":"AddRefActCtx","features":[303,520]},{"name":"ApplyDeltaA","features":[303,520]},{"name":"ApplyDeltaB","features":[303,520]},{"name":"ApplyDeltaGetReverseB","features":[303,520]},{"name":"ApplyDeltaProvidedB","features":[303,520]},{"name":"ApplyDeltaW","features":[303,520]},{"name":"ApplyPatchToFileA","features":[303,520]},{"name":"ApplyPatchToFileByBuffers","features":[303,520]},{"name":"ApplyPatchToFileByHandles","features":[303,520]},{"name":"ApplyPatchToFileByHandlesEx","features":[303,520]},{"name":"ApplyPatchToFileExA","features":[303,520]},{"name":"ApplyPatchToFileExW","features":[303,520]},{"name":"ApplyPatchToFileW","features":[303,520]},{"name":"CANOF_PARSE_DISPLAY_NAME","features":[520]},{"name":"CANOF_SET_DEFAULT_VALUES","features":[520]},{"name":"CLSID_EvalCom2","features":[520]},{"name":"CLSID_MsmMerge2","features":[520]},{"name":"COMPATIBILITY_CONTEXT_ELEMENT","features":[520]},{"name":"CREATE_ASM_NAME_OBJ_FLAGS","features":[520]},{"name":"CreateActCtxA","features":[303,520]},{"name":"CreateActCtxW","features":[303,520]},{"name":"CreateDeltaA","features":[303,387,520]},{"name":"CreateDeltaB","features":[303,387,520]},{"name":"CreateDeltaW","features":[303,387,520]},{"name":"CreatePatchFileA","features":[303,520]},{"name":"CreatePatchFileByHandles","features":[303,520]},{"name":"CreatePatchFileByHandlesEx","features":[303,520]},{"name":"CreatePatchFileExA","features":[303,520]},{"name":"CreatePatchFileExW","features":[303,520]},{"name":"CreatePatchFileW","features":[303,520]},{"name":"DEFAULT_DISK_ID","features":[520]},{"name":"DEFAULT_FILE_SEQUENCE_START","features":[520]},{"name":"DEFAULT_MINIMUM_REQUIRED_MSI_VERSION","features":[520]},{"name":"DELTA_HASH","features":[520]},{"name":"DELTA_HEADER_INFO","features":[303,387,520]},{"name":"DELTA_INPUT","features":[303,520]},{"name":"DELTA_MAX_HASH_SIZE","features":[520]},{"name":"DELTA_OUTPUT","features":[520]},{"name":"DeactivateActCtx","features":[303,520]},{"name":"DeltaFree","features":[303,520]},{"name":"DeltaNormalizeProvidedB","features":[303,520]},{"name":"ERROR_PATCH_BIGGER_THAN_COMPRESSED","features":[520]},{"name":"ERROR_PATCH_CORRUPT","features":[520]},{"name":"ERROR_PATCH_DECODE_FAILURE","features":[520]},{"name":"ERROR_PATCH_ENCODE_FAILURE","features":[520]},{"name":"ERROR_PATCH_IMAGEHLP_FAILURE","features":[520]},{"name":"ERROR_PATCH_INVALID_OPTIONS","features":[520]},{"name":"ERROR_PATCH_NEWER_FORMAT","features":[520]},{"name":"ERROR_PATCH_NOT_AVAILABLE","features":[520]},{"name":"ERROR_PATCH_NOT_NECESSARY","features":[520]},{"name":"ERROR_PATCH_RETAIN_RANGES_DIFFER","features":[520]},{"name":"ERROR_PATCH_SAME_FILE","features":[520]},{"name":"ERROR_PATCH_WRONG_FILE","features":[520]},{"name":"ERROR_PCW_BAD_API_PATCHING_SYMBOL_FLAGS","features":[520]},{"name":"ERROR_PCW_BAD_FAMILY_RANGE_NAME","features":[520]},{"name":"ERROR_PCW_BAD_FILE_SEQUENCE_START","features":[520]},{"name":"ERROR_PCW_BAD_GUIDS_TO_REPLACE","features":[520]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_DISKID","features":[520]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_FILESEQSTART","features":[520]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_NAME","features":[520]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_SRC_PROP","features":[520]},{"name":"ERROR_PCW_BAD_MAJOR_VERSION","features":[520]},{"name":"ERROR_PCW_BAD_PATCH_GUID","features":[520]},{"name":"ERROR_PCW_BAD_PRODUCTVERSION_VALIDATION","features":[520]},{"name":"ERROR_PCW_BAD_SEQUENCE","features":[520]},{"name":"ERROR_PCW_BAD_SUPERCEDENCE","features":[520]},{"name":"ERROR_PCW_BAD_TARGET","features":[520]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_NAME","features":[520]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_CODE","features":[520]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_VERSION","features":[520]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADED","features":[520]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADE_CODE","features":[520]},{"name":"ERROR_PCW_BAD_TARGET_PRODUCT_CODE_LIST","features":[520]},{"name":"ERROR_PCW_BAD_TGT_UPD_IMAGES","features":[520]},{"name":"ERROR_PCW_BAD_TRANSFORMSET","features":[520]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_FAMILY","features":[520]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_NAME","features":[520]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_CODE","features":[520]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_VERSION","features":[520]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_UPGRADE_CODE","features":[520]},{"name":"ERROR_PCW_BAD_VERSION_STRING","features":[520]},{"name":"ERROR_PCW_BASE","features":[520]},{"name":"ERROR_PCW_CANNOT_CREATE_TABLE","features":[520]},{"name":"ERROR_PCW_CANNOT_RUN_MAKECAB","features":[520]},{"name":"ERROR_PCW_CANNOT_WRITE_DDF","features":[520]},{"name":"ERROR_PCW_CANT_COPY_FILE_TO_TEMP_FOLDER","features":[520]},{"name":"ERROR_PCW_CANT_CREATE_ONE_PATCH_FILE","features":[520]},{"name":"ERROR_PCW_CANT_CREATE_PATCH_FILE","features":[520]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO","features":[520]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO_POUND","features":[520]},{"name":"ERROR_PCW_CANT_CREATE_TEMP_FOLDER","features":[520]},{"name":"ERROR_PCW_CANT_DELETE_TEMP_FOLDER","features":[520]},{"name":"ERROR_PCW_CANT_GENERATE_SEQUENCEINFO_MAJORUPGD","features":[520]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM","features":[520]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM_POUND","features":[520]},{"name":"ERROR_PCW_CANT_OVERWRITE_PATCH","features":[520]},{"name":"ERROR_PCW_CANT_READ_FILE","features":[520]},{"name":"ERROR_PCW_CREATEFILE_LOG_FAILED","features":[520]},{"name":"ERROR_PCW_DUPLICATE_SEQUENCE_RECORD","features":[520]},{"name":"ERROR_PCW_DUP_IMAGE_FAMILY_NAME","features":[520]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_NAME","features":[520]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_PACKCODE","features":[520]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_NAME","features":[520]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_PACKCODE","features":[520]},{"name":"ERROR_PCW_ERROR_WRITING_TO_LOG","features":[520]},{"name":"ERROR_PCW_EXECUTE_VIEW","features":[520]},{"name":"ERROR_PCW_EXTFILE_BAD_FAMILY_FIELD","features":[520]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_LENGTHS","features":[520]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_OFFSETS","features":[520]},{"name":"ERROR_PCW_EXTFILE_BAD_RETAIN_OFFSETS","features":[520]},{"name":"ERROR_PCW_EXTFILE_BLANK_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_EXTFILE_BLANK_PATH_TO_FILE","features":[520]},{"name":"ERROR_PCW_EXTFILE_IGNORE_COUNT_MISMATCH","features":[520]},{"name":"ERROR_PCW_EXTFILE_LONG_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_LENGTHS","features":[520]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_OFFSETS","features":[520]},{"name":"ERROR_PCW_EXTFILE_LONG_PATH_TO_FILE","features":[520]},{"name":"ERROR_PCW_EXTFILE_LONG_RETAIN_OFFSETS","features":[520]},{"name":"ERROR_PCW_EXTFILE_MISSING_FILE","features":[520]},{"name":"ERROR_PCW_FAILED_CREATE_TRANSFORM","features":[520]},{"name":"ERROR_PCW_FAILED_EXPAND_PATH","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_LENGTHS","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_OFFSETS","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_LENGTHS","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_OFFSETS","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_COUNT_MISMATCH","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_LENGTHS","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_OFFSETS","features":[520]},{"name":"ERROR_PCW_FAMILY_RANGE_NAME_TOO_LONG","features":[520]},{"name":"ERROR_PCW_IMAGE_FAMILY_NAME_TOO_LONG","features":[520]},{"name":"ERROR_PCW_IMAGE_PATH_NOT_EXIST","features":[520]},{"name":"ERROR_PCW_INTERNAL_ERROR","features":[520]},{"name":"ERROR_PCW_INVALID_LOG_LEVEL","features":[520]},{"name":"ERROR_PCW_INVALID_MAJOR_VERSION","features":[520]},{"name":"ERROR_PCW_INVALID_PARAMETER","features":[520]},{"name":"ERROR_PCW_INVALID_PATCHMETADATA_PROP","features":[520]},{"name":"ERROR_PCW_INVALID_PATCH_TYPE_SEQUENCING","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_EXTERNALFILES","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_FAMILYFILERANGES","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_IMAGEFAMILIES","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_PATCHSEQUENCE","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTIES","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTY","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_TARGETFILES_OPTIONALDATA","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_TARGETIMAGES","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILESTOIGNORE","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILES_OPTIONALDATA","features":[520]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDIMAGES","features":[520]},{"name":"ERROR_PCW_INVALID_RANGE_ELEMENT","features":[520]},{"name":"ERROR_PCW_INVALID_SUPERCEDENCE","features":[520]},{"name":"ERROR_PCW_INVALID_SUPERSEDENCE_VALUE","features":[520]},{"name":"ERROR_PCW_INVALID_UI_LEVEL","features":[520]},{"name":"ERROR_PCW_LAX_VALIDATION_FLAGS","features":[520]},{"name":"ERROR_PCW_MAJOR_UPGD_WITHOUT_SEQUENCING","features":[520]},{"name":"ERROR_PCW_MATCHED_PRODUCT_VERSIONS","features":[520]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_CODES","features":[520]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[520]},{"name":"ERROR_PCW_MISSING_DIRECTORY_TABLE","features":[520]},{"name":"ERROR_PCW_MISSING_PATCHMETADATA","features":[520]},{"name":"ERROR_PCW_MISSING_PATCH_GUID","features":[520]},{"name":"ERROR_PCW_MISSING_PATCH_PATH","features":[520]},{"name":"ERROR_PCW_NO_UPGRADED_IMAGES_TO_PATCH","features":[520]},{"name":"ERROR_PCW_NULL_PATCHFAMILY","features":[520]},{"name":"ERROR_PCW_NULL_SEQUENCE_NUMBER","features":[520]},{"name":"ERROR_PCW_OBSOLETION_WITH_MSI30","features":[520]},{"name":"ERROR_PCW_OBSOLETION_WITH_PATCHSEQUENCE","features":[520]},{"name":"ERROR_PCW_OBSOLETION_WITH_SEQUENCE_DATA","features":[520]},{"name":"ERROR_PCW_OODS_COPYING_MSI","features":[520]},{"name":"ERROR_PCW_OPEN_VIEW","features":[520]},{"name":"ERROR_PCW_OUT_OF_MEMORY","features":[520]},{"name":"ERROR_PCW_PATCHMETADATA_PROP_NOT_SET","features":[520]},{"name":"ERROR_PCW_PCP_BAD_FORMAT","features":[520]},{"name":"ERROR_PCW_PCP_DOESNT_EXIST","features":[520]},{"name":"ERROR_PCW_SEQUENCING_BAD_TARGET","features":[520]},{"name":"ERROR_PCW_TARGET_BAD_PROD_CODE_VAL","features":[520]},{"name":"ERROR_PCW_TARGET_BAD_PROD_VALIDATE","features":[520]},{"name":"ERROR_PCW_TARGET_IMAGE_COMPRESSED","features":[520]},{"name":"ERROR_PCW_TARGET_IMAGE_NAME_TOO_LONG","features":[520]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_EMPTY","features":[520]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_EXIST","features":[520]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_MSI","features":[520]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_TOO_LONG","features":[520]},{"name":"ERROR_PCW_TARGET_MISSING_SRC_FILES","features":[520]},{"name":"ERROR_PCW_TARGET_WRONG_PRODUCT_VERSION_COMP","features":[520]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_LENGTHS","features":[520]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_OFFSETS","features":[520]},{"name":"ERROR_PCW_TFILEDATA_BAD_RETAIN_OFFSETS","features":[520]},{"name":"ERROR_PCW_TFILEDATA_BAD_TARGET_FIELD","features":[520]},{"name":"ERROR_PCW_TFILEDATA_BLANK_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_TFILEDATA_IGNORE_COUNT_MISMATCH","features":[520]},{"name":"ERROR_PCW_TFILEDATA_LONG_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_LENGTHS","features":[520]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_OFFSETS","features":[520]},{"name":"ERROR_PCW_TFILEDATA_LONG_RETAIN_OFFSETS","features":[520]},{"name":"ERROR_PCW_TFILEDATA_MISSING_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_UFILEDATA_BAD_UPGRADED_FIELD","features":[520]},{"name":"ERROR_PCW_UFILEDATA_BLANK_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_UFILEDATA_LONG_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_UFILEDATA_MISSING_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_UPGRADED_FIELD","features":[520]},{"name":"ERROR_PCW_UFILEIGNORE_BLANK_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_UFILEIGNORE_LONG_FILE_TABLE_KEY","features":[520]},{"name":"ERROR_PCW_UNKNOWN_ERROR","features":[520]},{"name":"ERROR_PCW_UNKNOWN_INFO","features":[520]},{"name":"ERROR_PCW_UNKNOWN_WARN","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_COMPRESSED","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_NAME_TOO_LONG","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_EXIST","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_MSI","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_TOO_LONG","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_EMPTY","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_EXIST","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_MSI","features":[520]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_TOO_LONG","features":[520]},{"name":"ERROR_PCW_UPGRADED_MISSING_SRC_FILES","features":[520]},{"name":"ERROR_PCW_VIEW_FETCH","features":[520]},{"name":"ERROR_PCW_WRITE_SUMMARY_PROPERTIES","features":[520]},{"name":"ERROR_PCW_WRONG_PATCHMETADATA_STRD_PROP","features":[520]},{"name":"ERROR_ROLLBACK_DISABLED","features":[520]},{"name":"ExtractPatchHeaderToFileA","features":[303,520]},{"name":"ExtractPatchHeaderToFileByHandles","features":[303,520]},{"name":"ExtractPatchHeaderToFileW","features":[303,520]},{"name":"FUSION_INSTALL_REFERENCE","features":[520]},{"name":"FUSION_REFCOUNT_FILEPATH_GUID","features":[520]},{"name":"FUSION_REFCOUNT_OPAQUE_STRING_GUID","features":[520]},{"name":"FUSION_REFCOUNT_UNINSTALL_SUBKEY_GUID","features":[520]},{"name":"FindActCtxSectionGuid","features":[303,520,335]},{"name":"FindActCtxSectionStringA","features":[303,520,335]},{"name":"FindActCtxSectionStringW","features":[303,520,335]},{"name":"GetCurrentActCtx","features":[303,520]},{"name":"GetDeltaInfoA","features":[303,387,520]},{"name":"GetDeltaInfoB","features":[303,387,520]},{"name":"GetDeltaInfoW","features":[303,387,520]},{"name":"GetDeltaSignatureA","features":[303,387,520]},{"name":"GetDeltaSignatureB","features":[303,387,520]},{"name":"GetDeltaSignatureW","features":[303,387,520]},{"name":"GetFilePatchSignatureA","features":[303,520]},{"name":"GetFilePatchSignatureByBuffer","features":[303,520]},{"name":"GetFilePatchSignatureByHandle","features":[303,520]},{"name":"GetFilePatchSignatureW","features":[303,520]},{"name":"IACTIONNAME_ADMIN","features":[520]},{"name":"IACTIONNAME_ADVERTISE","features":[520]},{"name":"IACTIONNAME_COLLECTUSERINFO","features":[520]},{"name":"IACTIONNAME_FIRSTRUN","features":[520]},{"name":"IACTIONNAME_INSTALL","features":[520]},{"name":"IACTIONNAME_SEQUENCE","features":[520]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_ALREADY_INSTALLED","features":[520]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_INSTALLED","features":[520]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_REFRESHED","features":[520]},{"name":"IASSEMBLYCACHEITEM_COMMIT_FLAG_REFRESH","features":[520]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION","features":[520]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_ALREADY_UNINSTALLED","features":[520]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_DELETE_PENDING","features":[520]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_STILL_IN_USE","features":[520]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_UNINSTALLED","features":[520]},{"name":"IAssemblyCache","features":[520]},{"name":"IAssemblyCacheItem","features":[520]},{"name":"IAssemblyName","features":[520]},{"name":"IEnumMsmDependency","features":[520]},{"name":"IEnumMsmError","features":[520]},{"name":"IEnumMsmString","features":[520]},{"name":"IMsmDependencies","features":[520,354]},{"name":"IMsmDependency","features":[520,354]},{"name":"IMsmError","features":[520,354]},{"name":"IMsmErrors","features":[520,354]},{"name":"IMsmGetFiles","features":[520,354]},{"name":"IMsmMerge","features":[520,354]},{"name":"IMsmStrings","features":[520,354]},{"name":"INFO_BASE","features":[520]},{"name":"INFO_ENTERING_PHASE_I","features":[520]},{"name":"INFO_ENTERING_PHASE_II","features":[520]},{"name":"INFO_ENTERING_PHASE_III","features":[520]},{"name":"INFO_ENTERING_PHASE_IV","features":[520]},{"name":"INFO_ENTERING_PHASE_I_VALIDATION","features":[520]},{"name":"INFO_ENTERING_PHASE_V","features":[520]},{"name":"INFO_GENERATING_METADATA","features":[520]},{"name":"INFO_PASSED_MAIN_CONTROL","features":[520]},{"name":"INFO_PATCHCACHE_FILEINFO_FAILURE","features":[520]},{"name":"INFO_PATCHCACHE_PCI_READFAILURE","features":[520]},{"name":"INFO_PATCHCACHE_PCI_WRITEFAILURE","features":[520]},{"name":"INFO_PCP_PATH","features":[520]},{"name":"INFO_PROPERTY","features":[520]},{"name":"INFO_SET_OPTIONS","features":[520]},{"name":"INFO_SUCCESSFUL_PATCH_CREATION","features":[520]},{"name":"INFO_TEMP_DIR","features":[520]},{"name":"INFO_TEMP_DIR_CLEANUP","features":[520]},{"name":"INFO_USING_USER_MSI_FOR_PATCH_TABLES","features":[520]},{"name":"INSTALLFEATUREATTRIBUTE","features":[520]},{"name":"INSTALLFEATUREATTRIBUTE_DISALLOWADVERTISE","features":[520]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORADVERTISE","features":[520]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORLOCAL","features":[520]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORSOURCE","features":[520]},{"name":"INSTALLFEATUREATTRIBUTE_FOLLOWPARENT","features":[520]},{"name":"INSTALLFEATUREATTRIBUTE_NOUNSUPPORTEDADVERTISE","features":[520]},{"name":"INSTALLLEVEL","features":[520]},{"name":"INSTALLLEVEL_DEFAULT","features":[520]},{"name":"INSTALLLEVEL_MAXIMUM","features":[520]},{"name":"INSTALLLEVEL_MINIMUM","features":[520]},{"name":"INSTALLLOGATTRIBUTES","features":[520]},{"name":"INSTALLLOGATTRIBUTES_APPEND","features":[520]},{"name":"INSTALLLOGATTRIBUTES_FLUSHEACHLINE","features":[520]},{"name":"INSTALLLOGMODE","features":[520]},{"name":"INSTALLLOGMODE_ACTIONDATA","features":[520]},{"name":"INSTALLLOGMODE_ACTIONSTART","features":[520]},{"name":"INSTALLLOGMODE_COMMONDATA","features":[520]},{"name":"INSTALLLOGMODE_ERROR","features":[520]},{"name":"INSTALLLOGMODE_EXTRADEBUG","features":[520]},{"name":"INSTALLLOGMODE_FATALEXIT","features":[520]},{"name":"INSTALLLOGMODE_FILESINUSE","features":[520]},{"name":"INSTALLLOGMODE_INFO","features":[520]},{"name":"INSTALLLOGMODE_INITIALIZE","features":[520]},{"name":"INSTALLLOGMODE_INSTALLEND","features":[520]},{"name":"INSTALLLOGMODE_INSTALLSTART","features":[520]},{"name":"INSTALLLOGMODE_LOGONLYONERROR","features":[520]},{"name":"INSTALLLOGMODE_LOGPERFORMANCE","features":[520]},{"name":"INSTALLLOGMODE_OUTOFDISKSPACE","features":[520]},{"name":"INSTALLLOGMODE_PROGRESS","features":[520]},{"name":"INSTALLLOGMODE_PROPERTYDUMP","features":[520]},{"name":"INSTALLLOGMODE_RESOLVESOURCE","features":[520]},{"name":"INSTALLLOGMODE_RMFILESINUSE","features":[520]},{"name":"INSTALLLOGMODE_SHOWDIALOG","features":[520]},{"name":"INSTALLLOGMODE_TERMINATE","features":[520]},{"name":"INSTALLLOGMODE_USER","features":[520]},{"name":"INSTALLLOGMODE_VERBOSE","features":[520]},{"name":"INSTALLLOGMODE_WARNING","features":[520]},{"name":"INSTALLMESSAGE","features":[520]},{"name":"INSTALLMESSAGE_ACTIONDATA","features":[520]},{"name":"INSTALLMESSAGE_ACTIONSTART","features":[520]},{"name":"INSTALLMESSAGE_COMMONDATA","features":[520]},{"name":"INSTALLMESSAGE_ERROR","features":[520]},{"name":"INSTALLMESSAGE_FATALEXIT","features":[520]},{"name":"INSTALLMESSAGE_FILESINUSE","features":[520]},{"name":"INSTALLMESSAGE_INFO","features":[520]},{"name":"INSTALLMESSAGE_INITIALIZE","features":[520]},{"name":"INSTALLMESSAGE_INSTALLEND","features":[520]},{"name":"INSTALLMESSAGE_INSTALLSTART","features":[520]},{"name":"INSTALLMESSAGE_OUTOFDISKSPACE","features":[520]},{"name":"INSTALLMESSAGE_PERFORMANCE","features":[520]},{"name":"INSTALLMESSAGE_PROGRESS","features":[520]},{"name":"INSTALLMESSAGE_RESOLVESOURCE","features":[520]},{"name":"INSTALLMESSAGE_RMFILESINUSE","features":[520]},{"name":"INSTALLMESSAGE_SHOWDIALOG","features":[520]},{"name":"INSTALLMESSAGE_TERMINATE","features":[520]},{"name":"INSTALLMESSAGE_TYPEMASK","features":[520]},{"name":"INSTALLMESSAGE_USER","features":[520]},{"name":"INSTALLMESSAGE_WARNING","features":[520]},{"name":"INSTALLMODE","features":[520]},{"name":"INSTALLMODE_DEFAULT","features":[520]},{"name":"INSTALLMODE_EXISTING","features":[520]},{"name":"INSTALLMODE_NODETECTION","features":[520]},{"name":"INSTALLMODE_NODETECTION_ANY","features":[520]},{"name":"INSTALLMODE_NOSOURCERESOLUTION","features":[520]},{"name":"INSTALLPROPERTY_ASSIGNMENTTYPE","features":[520]},{"name":"INSTALLPROPERTY_AUTHORIZED_LUA_APP","features":[520]},{"name":"INSTALLPROPERTY_DISKPROMPT","features":[520]},{"name":"INSTALLPROPERTY_DISPLAYNAME","features":[520]},{"name":"INSTALLPROPERTY_HELPLINK","features":[520]},{"name":"INSTALLPROPERTY_HELPTELEPHONE","features":[520]},{"name":"INSTALLPROPERTY_INSTALLDATE","features":[520]},{"name":"INSTALLPROPERTY_INSTALLEDLANGUAGE","features":[520]},{"name":"INSTALLPROPERTY_INSTALLEDPRODUCTNAME","features":[520]},{"name":"INSTALLPROPERTY_INSTALLLOCATION","features":[520]},{"name":"INSTALLPROPERTY_INSTALLSOURCE","features":[520]},{"name":"INSTALLPROPERTY_INSTANCETYPE","features":[520]},{"name":"INSTALLPROPERTY_LANGUAGE","features":[520]},{"name":"INSTALLPROPERTY_LASTUSEDSOURCE","features":[520]},{"name":"INSTALLPROPERTY_LASTUSEDTYPE","features":[520]},{"name":"INSTALLPROPERTY_LOCALPACKAGE","features":[520]},{"name":"INSTALLPROPERTY_LUAENABLED","features":[520]},{"name":"INSTALLPROPERTY_MEDIAPACKAGEPATH","features":[520]},{"name":"INSTALLPROPERTY_MOREINFOURL","features":[520]},{"name":"INSTALLPROPERTY_PACKAGECODE","features":[520]},{"name":"INSTALLPROPERTY_PACKAGENAME","features":[520]},{"name":"INSTALLPROPERTY_PATCHSTATE","features":[520]},{"name":"INSTALLPROPERTY_PATCHTYPE","features":[520]},{"name":"INSTALLPROPERTY_PRODUCTICON","features":[520]},{"name":"INSTALLPROPERTY_PRODUCTID","features":[520]},{"name":"INSTALLPROPERTY_PRODUCTNAME","features":[520]},{"name":"INSTALLPROPERTY_PRODUCTSTATE","features":[520]},{"name":"INSTALLPROPERTY_PUBLISHER","features":[520]},{"name":"INSTALLPROPERTY_REGCOMPANY","features":[520]},{"name":"INSTALLPROPERTY_REGOWNER","features":[520]},{"name":"INSTALLPROPERTY_TRANSFORMS","features":[520]},{"name":"INSTALLPROPERTY_UNINSTALLABLE","features":[520]},{"name":"INSTALLPROPERTY_URLINFOABOUT","features":[520]},{"name":"INSTALLPROPERTY_URLUPDATEINFO","features":[520]},{"name":"INSTALLPROPERTY_VERSION","features":[520]},{"name":"INSTALLPROPERTY_VERSIONMAJOR","features":[520]},{"name":"INSTALLPROPERTY_VERSIONMINOR","features":[520]},{"name":"INSTALLPROPERTY_VERSIONSTRING","features":[520]},{"name":"INSTALLSTATE","features":[520]},{"name":"INSTALLSTATE_ABSENT","features":[520]},{"name":"INSTALLSTATE_ADVERTISED","features":[520]},{"name":"INSTALLSTATE_BADCONFIG","features":[520]},{"name":"INSTALLSTATE_BROKEN","features":[520]},{"name":"INSTALLSTATE_DEFAULT","features":[520]},{"name":"INSTALLSTATE_INCOMPLETE","features":[520]},{"name":"INSTALLSTATE_INVALIDARG","features":[520]},{"name":"INSTALLSTATE_LOCAL","features":[520]},{"name":"INSTALLSTATE_MOREDATA","features":[520]},{"name":"INSTALLSTATE_NOTUSED","features":[520]},{"name":"INSTALLSTATE_REMOVED","features":[520]},{"name":"INSTALLSTATE_SOURCE","features":[520]},{"name":"INSTALLSTATE_SOURCEABSENT","features":[520]},{"name":"INSTALLSTATE_UNKNOWN","features":[520]},{"name":"INSTALLTYPE","features":[520]},{"name":"INSTALLTYPE_DEFAULT","features":[520]},{"name":"INSTALLTYPE_NETWORK_IMAGE","features":[520]},{"name":"INSTALLTYPE_SINGLE_INSTANCE","features":[520]},{"name":"INSTALLUILEVEL","features":[520]},{"name":"INSTALLUILEVEL_BASIC","features":[520]},{"name":"INSTALLUILEVEL_DEFAULT","features":[520]},{"name":"INSTALLUILEVEL_ENDDIALOG","features":[520]},{"name":"INSTALLUILEVEL_FULL","features":[520]},{"name":"INSTALLUILEVEL_HIDECANCEL","features":[520]},{"name":"INSTALLUILEVEL_NOCHANGE","features":[520]},{"name":"INSTALLUILEVEL_NONE","features":[520]},{"name":"INSTALLUILEVEL_PROGRESSONLY","features":[520]},{"name":"INSTALLUILEVEL_REDUCED","features":[520]},{"name":"INSTALLUILEVEL_SOURCERESONLY","features":[520]},{"name":"INSTALLUILEVEL_UACONLY","features":[520]},{"name":"INSTALLUI_HANDLERA","features":[520]},{"name":"INSTALLUI_HANDLERW","features":[520]},{"name":"IPMApplicationInfo","features":[520]},{"name":"IPMApplicationInfoEnumerator","features":[520]},{"name":"IPMBackgroundServiceAgentInfo","features":[520]},{"name":"IPMBackgroundServiceAgentInfoEnumerator","features":[520]},{"name":"IPMBackgroundWorkerInfo","features":[520]},{"name":"IPMBackgroundWorkerInfoEnumerator","features":[520]},{"name":"IPMDeploymentManager","features":[520]},{"name":"IPMEnumerationManager","features":[520]},{"name":"IPMExtensionCachedFileUpdaterInfo","features":[520]},{"name":"IPMExtensionContractInfo","features":[520]},{"name":"IPMExtensionFileExtensionInfo","features":[520]},{"name":"IPMExtensionFileOpenPickerInfo","features":[520]},{"name":"IPMExtensionFileSavePickerInfo","features":[520]},{"name":"IPMExtensionInfo","features":[520]},{"name":"IPMExtensionInfoEnumerator","features":[520]},{"name":"IPMExtensionProtocolInfo","features":[520]},{"name":"IPMExtensionShareTargetInfo","features":[520]},{"name":"IPMLiveTileJobInfo","features":[520]},{"name":"IPMLiveTileJobInfoEnumerator","features":[520]},{"name":"IPMTaskInfo","features":[520]},{"name":"IPMTaskInfoEnumerator","features":[520]},{"name":"IPMTileInfo","features":[520]},{"name":"IPMTileInfoEnumerator","features":[520]},{"name":"IPMTilePropertyEnumerator","features":[520]},{"name":"IPMTilePropertyInfo","features":[520]},{"name":"IPROPNAME_ACTION","features":[520]},{"name":"IPROPNAME_ADMINTOOLS_FOLDER","features":[520]},{"name":"IPROPNAME_ADMINUSER","features":[520]},{"name":"IPROPNAME_ADMIN_PROPERTIES","features":[520]},{"name":"IPROPNAME_AFTERREBOOT","features":[520]},{"name":"IPROPNAME_ALLOWEDPROPERTIES","features":[520]},{"name":"IPROPNAME_ALLUSERS","features":[520]},{"name":"IPROPNAME_APPDATA_FOLDER","features":[520]},{"name":"IPROPNAME_ARM","features":[520]},{"name":"IPROPNAME_ARM64","features":[520]},{"name":"IPROPNAME_ARPAUTHORIZEDCDFPREFIX","features":[520]},{"name":"IPROPNAME_ARPCOMMENTS","features":[520]},{"name":"IPROPNAME_ARPCONTACT","features":[520]},{"name":"IPROPNAME_ARPHELPLINK","features":[520]},{"name":"IPROPNAME_ARPHELPTELEPHONE","features":[520]},{"name":"IPROPNAME_ARPINSTALLLOCATION","features":[520]},{"name":"IPROPNAME_ARPNOMODIFY","features":[520]},{"name":"IPROPNAME_ARPNOREMOVE","features":[520]},{"name":"IPROPNAME_ARPNOREPAIR","features":[520]},{"name":"IPROPNAME_ARPPRODUCTICON","features":[520]},{"name":"IPROPNAME_ARPREADME","features":[520]},{"name":"IPROPNAME_ARPSETTINGSIDENTIFIER","features":[520]},{"name":"IPROPNAME_ARPSHIMFLAGS","features":[520]},{"name":"IPROPNAME_ARPSHIMSERVICEPACKLEVEL","features":[520]},{"name":"IPROPNAME_ARPSHIMVERSIONNT","features":[520]},{"name":"IPROPNAME_ARPSIZE","features":[520]},{"name":"IPROPNAME_ARPSYSTEMCOMPONENT","features":[520]},{"name":"IPROPNAME_ARPURLINFOABOUT","features":[520]},{"name":"IPROPNAME_ARPURLUPDATEINFO","features":[520]},{"name":"IPROPNAME_AVAILABLEFREEREG","features":[520]},{"name":"IPROPNAME_BORDERSIDE","features":[520]},{"name":"IPROPNAME_BORDERTOP","features":[520]},{"name":"IPROPNAME_CAPTIONHEIGHT","features":[520]},{"name":"IPROPNAME_CARRYINGNDP","features":[520]},{"name":"IPROPNAME_CHECKCRCS","features":[520]},{"name":"IPROPNAME_COLORBITS","features":[520]},{"name":"IPROPNAME_COMMONAPPDATA_FOLDER","features":[520]},{"name":"IPROPNAME_COMMONFILES64_FOLDER","features":[520]},{"name":"IPROPNAME_COMMONFILES_FOLDER","features":[520]},{"name":"IPROPNAME_COMPANYNAME","features":[520]},{"name":"IPROPNAME_COMPONENTADDDEFAULT","features":[520]},{"name":"IPROPNAME_COMPONENTADDLOCAL","features":[520]},{"name":"IPROPNAME_COMPONENTADDSOURCE","features":[520]},{"name":"IPROPNAME_COMPUTERNAME","features":[520]},{"name":"IPROPNAME_COSTINGCOMPLETE","features":[520]},{"name":"IPROPNAME_CUSTOMACTIONDATA","features":[520]},{"name":"IPROPNAME_DATE","features":[520]},{"name":"IPROPNAME_DATETIME","features":[520]},{"name":"IPROPNAME_DEFAULTUIFONT","features":[520]},{"name":"IPROPNAME_DESKTOP_FOLDER","features":[520]},{"name":"IPROPNAME_DISABLEADVTSHORTCUTS","features":[520]},{"name":"IPROPNAME_DISABLEROLLBACK","features":[520]},{"name":"IPROPNAME_DISKPROMPT","features":[520]},{"name":"IPROPNAME_ENABLEUSERCONTROL","features":[520]},{"name":"IPROPNAME_ENFORCE_UPGRADE_COMPONENT_RULES","features":[520]},{"name":"IPROPNAME_EXECUTEACTION","features":[520]},{"name":"IPROPNAME_EXECUTEMODE","features":[520]},{"name":"IPROPNAME_FAVORITES_FOLDER","features":[520]},{"name":"IPROPNAME_FEATUREADDDEFAULT","features":[520]},{"name":"IPROPNAME_FEATUREADDLOCAL","features":[520]},{"name":"IPROPNAME_FEATUREADDSOURCE","features":[520]},{"name":"IPROPNAME_FEATUREADVERTISE","features":[520]},{"name":"IPROPNAME_FEATUREREMOVE","features":[520]},{"name":"IPROPNAME_FILEADDDEFAULT","features":[520]},{"name":"IPROPNAME_FILEADDLOCAL","features":[520]},{"name":"IPROPNAME_FILEADDSOURCE","features":[520]},{"name":"IPROPNAME_FONTS_FOLDER","features":[520]},{"name":"IPROPNAME_HIDDEN_PROPERTIES","features":[520]},{"name":"IPROPNAME_HIDECANCEL","features":[520]},{"name":"IPROPNAME_IA64","features":[520]},{"name":"IPROPNAME_INSTALLED","features":[520]},{"name":"IPROPNAME_INSTALLLANGUAGE","features":[520]},{"name":"IPROPNAME_INSTALLLEVEL","features":[520]},{"name":"IPROPNAME_INSTALLPERUSER","features":[520]},{"name":"IPROPNAME_INTEL","features":[520]},{"name":"IPROPNAME_INTEL64","features":[520]},{"name":"IPROPNAME_INTERNALINSTALLEDPERUSER","features":[520]},{"name":"IPROPNAME_ISADMINPACKAGE","features":[520]},{"name":"IPROPNAME_LEFTUNIT","features":[520]},{"name":"IPROPNAME_LIMITUI","features":[520]},{"name":"IPROPNAME_LOCALAPPDATA_FOLDER","features":[520]},{"name":"IPROPNAME_LOGACTION","features":[520]},{"name":"IPROPNAME_LOGONUSER","features":[520]},{"name":"IPROPNAME_MANUFACTURER","features":[520]},{"name":"IPROPNAME_MSIAMD64","features":[520]},{"name":"IPROPNAME_MSIDISABLEEEUI","features":[520]},{"name":"IPROPNAME_MSIDISABLELUAPATCHING","features":[520]},{"name":"IPROPNAME_MSIINSTANCEGUID","features":[520]},{"name":"IPROPNAME_MSILOGFILELOCATION","features":[520]},{"name":"IPROPNAME_MSILOGGINGMODE","features":[520]},{"name":"IPROPNAME_MSINEWINSTANCE","features":[520]},{"name":"IPROPNAME_MSINODISABLEMEDIA","features":[520]},{"name":"IPROPNAME_MSIPACKAGEDOWNLOADLOCALCOPY","features":[520]},{"name":"IPROPNAME_MSIPATCHDOWNLOADLOCALCOPY","features":[520]},{"name":"IPROPNAME_MSIPATCHREMOVE","features":[520]},{"name":"IPROPNAME_MSITABLETPC","features":[520]},{"name":"IPROPNAME_MSIX64","features":[520]},{"name":"IPROPNAME_MSI_FASTINSTALL","features":[520]},{"name":"IPROPNAME_MSI_REBOOT_PENDING","features":[520]},{"name":"IPROPNAME_MSI_RM_CONTROL","features":[520]},{"name":"IPROPNAME_MSI_RM_DISABLE_RESTART","features":[520]},{"name":"IPROPNAME_MSI_RM_SESSION_KEY","features":[520]},{"name":"IPROPNAME_MSI_RM_SHUTDOWN","features":[520]},{"name":"IPROPNAME_MSI_UAC_DEPLOYMENT_COMPLIANT","features":[520]},{"name":"IPROPNAME_MSI_UNINSTALL_SUPERSEDED_COMPONENTS","features":[520]},{"name":"IPROPNAME_MSI_USE_REAL_ADMIN_DETECTION","features":[520]},{"name":"IPROPNAME_MYPICTURES_FOLDER","features":[520]},{"name":"IPROPNAME_NETASSEMBLYSUPPORT","features":[520]},{"name":"IPROPNAME_NETHOOD_FOLDER","features":[520]},{"name":"IPROPNAME_NOCOMPANYNAME","features":[520]},{"name":"IPROPNAME_NOUSERNAME","features":[520]},{"name":"IPROPNAME_NTPRODUCTTYPE","features":[520]},{"name":"IPROPNAME_NTSUITEBACKOFFICE","features":[520]},{"name":"IPROPNAME_NTSUITEDATACENTER","features":[520]},{"name":"IPROPNAME_NTSUITEENTERPRISE","features":[520]},{"name":"IPROPNAME_NTSUITEPERSONAL","features":[520]},{"name":"IPROPNAME_NTSUITESMALLBUSINESS","features":[520]},{"name":"IPROPNAME_NTSUITESMALLBUSINESSRESTRICTED","features":[520]},{"name":"IPROPNAME_NTSUITEWEBSERVER","features":[520]},{"name":"IPROPNAME_OLEADVTSUPPORT","features":[520]},{"name":"IPROPNAME_OUTOFDISKSPACE","features":[520]},{"name":"IPROPNAME_OUTOFNORBDISKSPACE","features":[520]},{"name":"IPROPNAME_PATCH","features":[520]},{"name":"IPROPNAME_PATCHNEWPACKAGECODE","features":[520]},{"name":"IPROPNAME_PATCHNEWSUMMARYCOMMENTS","features":[520]},{"name":"IPROPNAME_PATCHNEWSUMMARYSUBJECT","features":[520]},{"name":"IPROPNAME_PERSONAL_FOLDER","features":[520]},{"name":"IPROPNAME_PHYSICALMEMORY","features":[520]},{"name":"IPROPNAME_PIDKEY","features":[520]},{"name":"IPROPNAME_PIDTEMPLATE","features":[520]},{"name":"IPROPNAME_PRESELECTED","features":[520]},{"name":"IPROPNAME_PRIMARYFOLDER","features":[520]},{"name":"IPROPNAME_PRIMARYFOLDER_PATH","features":[520]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEAVAILABLE","features":[520]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREMAINING","features":[520]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREQUIRED","features":[520]},{"name":"IPROPNAME_PRINTHOOD_FOLDER","features":[520]},{"name":"IPROPNAME_PRIVILEGED","features":[520]},{"name":"IPROPNAME_PRODUCTCODE","features":[520]},{"name":"IPROPNAME_PRODUCTID","features":[520]},{"name":"IPROPNAME_PRODUCTLANGUAGE","features":[520]},{"name":"IPROPNAME_PRODUCTNAME","features":[520]},{"name":"IPROPNAME_PRODUCTSTATE","features":[520]},{"name":"IPROPNAME_PRODUCTVERSION","features":[520]},{"name":"IPROPNAME_PROGRAMFILES64_FOLDER","features":[520]},{"name":"IPROPNAME_PROGRAMFILES_FOLDER","features":[520]},{"name":"IPROPNAME_PROGRAMMENU_FOLDER","features":[520]},{"name":"IPROPNAME_PROGRESSONLY","features":[520]},{"name":"IPROPNAME_PROMPTROLLBACKCOST","features":[520]},{"name":"IPROPNAME_REBOOT","features":[520]},{"name":"IPROPNAME_REBOOTPROMPT","features":[520]},{"name":"IPROPNAME_RECENT_FOLDER","features":[520]},{"name":"IPROPNAME_REDIRECTEDDLLSUPPORT","features":[520]},{"name":"IPROPNAME_REINSTALL","features":[520]},{"name":"IPROPNAME_REINSTALLMODE","features":[520]},{"name":"IPROPNAME_REMOTEADMINTS","features":[520]},{"name":"IPROPNAME_REPLACEDINUSEFILES","features":[520]},{"name":"IPROPNAME_RESTRICTEDUSERCONTROL","features":[520]},{"name":"IPROPNAME_RESUME","features":[520]},{"name":"IPROPNAME_ROLLBACKDISABLED","features":[520]},{"name":"IPROPNAME_ROOTDRIVE","features":[520]},{"name":"IPROPNAME_RUNNINGELEVATED","features":[520]},{"name":"IPROPNAME_SCREENX","features":[520]},{"name":"IPROPNAME_SCREENY","features":[520]},{"name":"IPROPNAME_SENDTO_FOLDER","features":[520]},{"name":"IPROPNAME_SEQUENCE","features":[520]},{"name":"IPROPNAME_SERVICEPACKLEVEL","features":[520]},{"name":"IPROPNAME_SERVICEPACKLEVELMINOR","features":[520]},{"name":"IPROPNAME_SHAREDWINDOWS","features":[520]},{"name":"IPROPNAME_SHELLADVTSUPPORT","features":[520]},{"name":"IPROPNAME_SHORTFILENAMES","features":[520]},{"name":"IPROPNAME_SOURCEDIR","features":[520]},{"name":"IPROPNAME_SOURCELIST","features":[520]},{"name":"IPROPNAME_SOURCERESONLY","features":[520]},{"name":"IPROPNAME_STARTMENU_FOLDER","features":[520]},{"name":"IPROPNAME_STARTUP_FOLDER","features":[520]},{"name":"IPROPNAME_SYSTEM16_FOLDER","features":[520]},{"name":"IPROPNAME_SYSTEM64_FOLDER","features":[520]},{"name":"IPROPNAME_SYSTEMLANGUAGEID","features":[520]},{"name":"IPROPNAME_SYSTEM_FOLDER","features":[520]},{"name":"IPROPNAME_TARGETDIR","features":[520]},{"name":"IPROPNAME_TEMPLATE_AMD64","features":[520]},{"name":"IPROPNAME_TEMPLATE_FOLDER","features":[520]},{"name":"IPROPNAME_TEMPLATE_X64","features":[520]},{"name":"IPROPNAME_TEMP_FOLDER","features":[520]},{"name":"IPROPNAME_TERMSERVER","features":[520]},{"name":"IPROPNAME_TEXTHEIGHT","features":[520]},{"name":"IPROPNAME_TEXTHEIGHT_CORRECTION","features":[520]},{"name":"IPROPNAME_TEXTINTERNALLEADING","features":[520]},{"name":"IPROPNAME_TIME","features":[520]},{"name":"IPROPNAME_TRANSFORMS","features":[520]},{"name":"IPROPNAME_TRANSFORMSATSOURCE","features":[520]},{"name":"IPROPNAME_TRANSFORMSSECURE","features":[520]},{"name":"IPROPNAME_TRUEADMINUSER","features":[520]},{"name":"IPROPNAME_TTCSUPPORT","features":[520]},{"name":"IPROPNAME_UACONLY","features":[520]},{"name":"IPROPNAME_UPDATESTARTED","features":[520]},{"name":"IPROPNAME_UPGRADECODE","features":[520]},{"name":"IPROPNAME_USERLANGUAGEID","features":[520]},{"name":"IPROPNAME_USERNAME","features":[520]},{"name":"IPROPNAME_USERSID","features":[520]},{"name":"IPROPNAME_VERSION9X","features":[520]},{"name":"IPROPNAME_VERSIONNT","features":[520]},{"name":"IPROPNAME_VERSIONNT64","features":[520]},{"name":"IPROPNAME_VIRTUALMEMORY","features":[520]},{"name":"IPROPNAME_WIN32ASSEMBLYSUPPORT","features":[520]},{"name":"IPROPNAME_WINDOWSBUILD","features":[520]},{"name":"IPROPNAME_WINDOWS_FOLDER","features":[520]},{"name":"IPROPNAME_WINDOWS_VOLUME","features":[520]},{"name":"IPROPVALUE_EXECUTEMODE_NONE","features":[520]},{"name":"IPROPVALUE_EXECUTEMODE_SCRIPT","features":[520]},{"name":"IPROPVALUE_FEATURE_ALL","features":[520]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLE","features":[520]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLESHUTDOWN","features":[520]},{"name":"IPROPVALUE_RBCOST_FAIL","features":[520]},{"name":"IPROPVALUE_RBCOST_PROMPT","features":[520]},{"name":"IPROPVALUE_RBCOST_SILENT","features":[520]},{"name":"IPROPVALUE__CARRYINGNDP_URTREINSTALL","features":[520]},{"name":"IPROPVALUE__CARRYINGNDP_URTUPGRADE","features":[520]},{"name":"IValidate","features":[520]},{"name":"LIBID_MsmMergeTypeLib","features":[520]},{"name":"LOGALL","features":[520]},{"name":"LOGERR","features":[520]},{"name":"LOGINFO","features":[520]},{"name":"LOGNONE","features":[520]},{"name":"LOGPERFMESSAGES","features":[520]},{"name":"LOGTOKEN_NO_LOG","features":[520]},{"name":"LOGTOKEN_SETUPAPI_APPLOG","features":[520]},{"name":"LOGTOKEN_SETUPAPI_DEVLOG","features":[520]},{"name":"LOGTOKEN_TYPE_MASK","features":[520]},{"name":"LOGTOKEN_UNSPECIFIED","features":[520]},{"name":"LOGWARN","features":[520]},{"name":"LPDISPLAYVAL","features":[303,520]},{"name":"LPEVALCOMCALLBACK","features":[303,520]},{"name":"MAX_FEATURE_CHARS","features":[520]},{"name":"MAX_GUID_CHARS","features":[520]},{"name":"MSIADVERTISEOPTIONFLAGS","features":[520]},{"name":"MSIADVERTISEOPTIONFLAGS_INSTANCE","features":[520]},{"name":"MSIARCHITECTUREFLAGS","features":[520]},{"name":"MSIARCHITECTUREFLAGS_AMD64","features":[520]},{"name":"MSIARCHITECTUREFLAGS_ARM","features":[520]},{"name":"MSIARCHITECTUREFLAGS_IA64","features":[520]},{"name":"MSIARCHITECTUREFLAGS_X86","features":[520]},{"name":"MSIASSEMBLYINFO","features":[520]},{"name":"MSIASSEMBLYINFO_NETASSEMBLY","features":[520]},{"name":"MSIASSEMBLYINFO_WIN32ASSEMBLY","features":[520]},{"name":"MSICODE","features":[520]},{"name":"MSICODE_PATCH","features":[520]},{"name":"MSICODE_PRODUCT","features":[520]},{"name":"MSICOLINFO","features":[520]},{"name":"MSICOLINFO_NAMES","features":[520]},{"name":"MSICOLINFO_TYPES","features":[520]},{"name":"MSICONDITION","features":[520]},{"name":"MSICONDITION_ERROR","features":[520]},{"name":"MSICONDITION_FALSE","features":[520]},{"name":"MSICONDITION_NONE","features":[520]},{"name":"MSICONDITION_TRUE","features":[520]},{"name":"MSICOSTTREE","features":[520]},{"name":"MSICOSTTREE_CHILDREN","features":[520]},{"name":"MSICOSTTREE_PARENTS","features":[520]},{"name":"MSICOSTTREE_RESERVED","features":[520]},{"name":"MSICOSTTREE_SELFONLY","features":[520]},{"name":"MSIDBERROR","features":[520]},{"name":"MSIDBERROR_BADCABINET","features":[520]},{"name":"MSIDBERROR_BADCASE","features":[520]},{"name":"MSIDBERROR_BADCATEGORY","features":[520]},{"name":"MSIDBERROR_BADCONDITION","features":[520]},{"name":"MSIDBERROR_BADCUSTOMSOURCE","features":[520]},{"name":"MSIDBERROR_BADDEFAULTDIR","features":[520]},{"name":"MSIDBERROR_BADFILENAME","features":[520]},{"name":"MSIDBERROR_BADFORMATTED","features":[520]},{"name":"MSIDBERROR_BADGUID","features":[520]},{"name":"MSIDBERROR_BADIDENTIFIER","features":[520]},{"name":"MSIDBERROR_BADKEYTABLE","features":[520]},{"name":"MSIDBERROR_BADLANGUAGE","features":[520]},{"name":"MSIDBERROR_BADLINK","features":[520]},{"name":"MSIDBERROR_BADLOCALIZEATTRIB","features":[520]},{"name":"MSIDBERROR_BADMAXMINVALUES","features":[520]},{"name":"MSIDBERROR_BADPATH","features":[520]},{"name":"MSIDBERROR_BADPROPERTY","features":[520]},{"name":"MSIDBERROR_BADREGPATH","features":[520]},{"name":"MSIDBERROR_BADSHORTCUT","features":[520]},{"name":"MSIDBERROR_BADTEMPLATE","features":[520]},{"name":"MSIDBERROR_BADVERSION","features":[520]},{"name":"MSIDBERROR_BADWILDCARD","features":[520]},{"name":"MSIDBERROR_DUPLICATEKEY","features":[520]},{"name":"MSIDBERROR_FUNCTIONERROR","features":[520]},{"name":"MSIDBERROR_INVALIDARG","features":[520]},{"name":"MSIDBERROR_MISSINGDATA","features":[520]},{"name":"MSIDBERROR_MOREDATA","features":[520]},{"name":"MSIDBERROR_NOERROR","features":[520]},{"name":"MSIDBERROR_NOTINSET","features":[520]},{"name":"MSIDBERROR_OVERFLOW","features":[520]},{"name":"MSIDBERROR_REQUIRED","features":[520]},{"name":"MSIDBERROR_STRINGOVERFLOW","features":[520]},{"name":"MSIDBERROR_UNDERFLOW","features":[520]},{"name":"MSIDBOPEN_CREATE","features":[520]},{"name":"MSIDBOPEN_CREATEDIRECT","features":[520]},{"name":"MSIDBOPEN_DIRECT","features":[520]},{"name":"MSIDBOPEN_PATCHFILE","features":[520]},{"name":"MSIDBOPEN_READONLY","features":[520]},{"name":"MSIDBOPEN_TRANSACT","features":[520]},{"name":"MSIDBSTATE","features":[520]},{"name":"MSIDBSTATE_ERROR","features":[520]},{"name":"MSIDBSTATE_READ","features":[520]},{"name":"MSIDBSTATE_WRITE","features":[520]},{"name":"MSIFILEHASHINFO","features":[520]},{"name":"MSIHANDLE","features":[520]},{"name":"MSIINSTALLCONTEXT","features":[520]},{"name":"MSIINSTALLCONTEXT_ALL","features":[520]},{"name":"MSIINSTALLCONTEXT_ALLUSERMANAGED","features":[520]},{"name":"MSIINSTALLCONTEXT_FIRSTVISIBLE","features":[520]},{"name":"MSIINSTALLCONTEXT_MACHINE","features":[520]},{"name":"MSIINSTALLCONTEXT_NONE","features":[520]},{"name":"MSIINSTALLCONTEXT_USERMANAGED","features":[520]},{"name":"MSIINSTALLCONTEXT_USERUNMANAGED","features":[520]},{"name":"MSIMODIFY","features":[520]},{"name":"MSIMODIFY_ASSIGN","features":[520]},{"name":"MSIMODIFY_DELETE","features":[520]},{"name":"MSIMODIFY_INSERT","features":[520]},{"name":"MSIMODIFY_INSERT_TEMPORARY","features":[520]},{"name":"MSIMODIFY_MERGE","features":[520]},{"name":"MSIMODIFY_REFRESH","features":[520]},{"name":"MSIMODIFY_REPLACE","features":[520]},{"name":"MSIMODIFY_SEEK","features":[520]},{"name":"MSIMODIFY_UPDATE","features":[520]},{"name":"MSIMODIFY_VALIDATE","features":[520]},{"name":"MSIMODIFY_VALIDATE_DELETE","features":[520]},{"name":"MSIMODIFY_VALIDATE_FIELD","features":[520]},{"name":"MSIMODIFY_VALIDATE_NEW","features":[520]},{"name":"MSIOPENPACKAGEFLAGS","features":[520]},{"name":"MSIOPENPACKAGEFLAGS_IGNOREMACHINESTATE","features":[520]},{"name":"MSIPATCHDATATYPE","features":[520]},{"name":"MSIPATCHSEQUENCEINFOA","features":[520]},{"name":"MSIPATCHSEQUENCEINFOW","features":[520]},{"name":"MSIPATCHSTATE","features":[520]},{"name":"MSIPATCHSTATE_ALL","features":[520]},{"name":"MSIPATCHSTATE_APPLIED","features":[520]},{"name":"MSIPATCHSTATE_INVALID","features":[520]},{"name":"MSIPATCHSTATE_OBSOLETED","features":[520]},{"name":"MSIPATCHSTATE_REGISTERED","features":[520]},{"name":"MSIPATCHSTATE_SUPERSEDED","features":[520]},{"name":"MSIPATCH_DATATYPE_PATCHFILE","features":[520]},{"name":"MSIPATCH_DATATYPE_XMLBLOB","features":[520]},{"name":"MSIPATCH_DATATYPE_XMLPATH","features":[520]},{"name":"MSIRUNMODE","features":[520]},{"name":"MSIRUNMODE_ADMIN","features":[520]},{"name":"MSIRUNMODE_ADVERTISE","features":[520]},{"name":"MSIRUNMODE_CABINET","features":[520]},{"name":"MSIRUNMODE_COMMIT","features":[520]},{"name":"MSIRUNMODE_LOGENABLED","features":[520]},{"name":"MSIRUNMODE_MAINTENANCE","features":[520]},{"name":"MSIRUNMODE_OPERATIONS","features":[520]},{"name":"MSIRUNMODE_REBOOTATEND","features":[520]},{"name":"MSIRUNMODE_REBOOTNOW","features":[520]},{"name":"MSIRUNMODE_RESERVED11","features":[520]},{"name":"MSIRUNMODE_RESERVED14","features":[520]},{"name":"MSIRUNMODE_RESERVED15","features":[520]},{"name":"MSIRUNMODE_ROLLBACK","features":[520]},{"name":"MSIRUNMODE_ROLLBACKENABLED","features":[520]},{"name":"MSIRUNMODE_SCHEDULED","features":[520]},{"name":"MSIRUNMODE_SOURCESHORTNAMES","features":[520]},{"name":"MSIRUNMODE_TARGETSHORTNAMES","features":[520]},{"name":"MSIRUNMODE_WINDOWS9X","features":[520]},{"name":"MSIRUNMODE_ZAWENABLED","features":[520]},{"name":"MSISOURCETYPE","features":[520]},{"name":"MSISOURCETYPE_MEDIA","features":[520]},{"name":"MSISOURCETYPE_NETWORK","features":[520]},{"name":"MSISOURCETYPE_UNKNOWN","features":[520]},{"name":"MSISOURCETYPE_URL","features":[520]},{"name":"MSITRANSACTION","features":[520]},{"name":"MSITRANSACTIONSTATE","features":[520]},{"name":"MSITRANSACTIONSTATE_COMMIT","features":[520]},{"name":"MSITRANSACTIONSTATE_ROLLBACK","features":[520]},{"name":"MSITRANSACTION_CHAIN_EMBEDDEDUI","features":[520]},{"name":"MSITRANSACTION_JOIN_EXISTING_EMBEDDEDUI","features":[520]},{"name":"MSITRANSFORM_ERROR","features":[520]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGROW","features":[520]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGTABLE","features":[520]},{"name":"MSITRANSFORM_ERROR_CHANGECODEPAGE","features":[520]},{"name":"MSITRANSFORM_ERROR_DELMISSINGROW","features":[520]},{"name":"MSITRANSFORM_ERROR_DELMISSINGTABLE","features":[520]},{"name":"MSITRANSFORM_ERROR_NONE","features":[520]},{"name":"MSITRANSFORM_ERROR_UPDATEMISSINGROW","features":[520]},{"name":"MSITRANSFORM_ERROR_VIEWTRANSFORM","features":[520]},{"name":"MSITRANSFORM_VALIDATE","features":[520]},{"name":"MSITRANSFORM_VALIDATE_LANGUAGE","features":[520]},{"name":"MSITRANSFORM_VALIDATE_MAJORVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_MINORVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_NEWEQUALBASEVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATERBASEVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATEREQUALBASEVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSBASEVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSEQUALBASEVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_PLATFORM","features":[520]},{"name":"MSITRANSFORM_VALIDATE_PRODUCT","features":[520]},{"name":"MSITRANSFORM_VALIDATE_UPDATEVERSION","features":[520]},{"name":"MSITRANSFORM_VALIDATE_UPGRADECODE","features":[520]},{"name":"MSI_INVALID_HASH_IS_FATAL","features":[520]},{"name":"MSI_NULL_INTEGER","features":[520]},{"name":"MsiAdvertiseProductA","features":[520]},{"name":"MsiAdvertiseProductExA","features":[520]},{"name":"MsiAdvertiseProductExW","features":[520]},{"name":"MsiAdvertiseProductW","features":[520]},{"name":"MsiAdvertiseScriptA","features":[303,520,364]},{"name":"MsiAdvertiseScriptW","features":[303,520,364]},{"name":"MsiApplyMultiplePatchesA","features":[520]},{"name":"MsiApplyMultiplePatchesW","features":[520]},{"name":"MsiApplyPatchA","features":[520]},{"name":"MsiApplyPatchW","features":[520]},{"name":"MsiBeginTransactionA","features":[303,520]},{"name":"MsiBeginTransactionW","features":[303,520]},{"name":"MsiCloseAllHandles","features":[520]},{"name":"MsiCloseHandle","features":[520]},{"name":"MsiCollectUserInfoA","features":[520]},{"name":"MsiCollectUserInfoW","features":[520]},{"name":"MsiConfigureFeatureA","features":[520]},{"name":"MsiConfigureFeatureW","features":[520]},{"name":"MsiConfigureProductA","features":[520]},{"name":"MsiConfigureProductExA","features":[520]},{"name":"MsiConfigureProductExW","features":[520]},{"name":"MsiConfigureProductW","features":[520]},{"name":"MsiCreateRecord","features":[520]},{"name":"MsiCreateTransformSummaryInfoA","features":[520]},{"name":"MsiCreateTransformSummaryInfoW","features":[520]},{"name":"MsiDatabaseApplyTransformA","features":[520]},{"name":"MsiDatabaseApplyTransformW","features":[520]},{"name":"MsiDatabaseCommit","features":[520]},{"name":"MsiDatabaseExportA","features":[520]},{"name":"MsiDatabaseExportW","features":[520]},{"name":"MsiDatabaseGenerateTransformA","features":[520]},{"name":"MsiDatabaseGenerateTransformW","features":[520]},{"name":"MsiDatabaseGetPrimaryKeysA","features":[520]},{"name":"MsiDatabaseGetPrimaryKeysW","features":[520]},{"name":"MsiDatabaseImportA","features":[520]},{"name":"MsiDatabaseImportW","features":[520]},{"name":"MsiDatabaseIsTablePersistentA","features":[520]},{"name":"MsiDatabaseIsTablePersistentW","features":[520]},{"name":"MsiDatabaseMergeA","features":[520]},{"name":"MsiDatabaseMergeW","features":[520]},{"name":"MsiDatabaseOpenViewA","features":[520]},{"name":"MsiDatabaseOpenViewW","features":[520]},{"name":"MsiDetermineApplicablePatchesA","features":[520]},{"name":"MsiDetermineApplicablePatchesW","features":[520]},{"name":"MsiDeterminePatchSequenceA","features":[520]},{"name":"MsiDeterminePatchSequenceW","features":[520]},{"name":"MsiDoActionA","features":[520]},{"name":"MsiDoActionW","features":[520]},{"name":"MsiEnableLogA","features":[520]},{"name":"MsiEnableLogW","features":[520]},{"name":"MsiEnableUIPreview","features":[520]},{"name":"MsiEndTransaction","features":[520]},{"name":"MsiEnumClientsA","features":[520]},{"name":"MsiEnumClientsExA","features":[520]},{"name":"MsiEnumClientsExW","features":[520]},{"name":"MsiEnumClientsW","features":[520]},{"name":"MsiEnumComponentCostsA","features":[520]},{"name":"MsiEnumComponentCostsW","features":[520]},{"name":"MsiEnumComponentQualifiersA","features":[520]},{"name":"MsiEnumComponentQualifiersW","features":[520]},{"name":"MsiEnumComponentsA","features":[520]},{"name":"MsiEnumComponentsExA","features":[520]},{"name":"MsiEnumComponentsExW","features":[520]},{"name":"MsiEnumComponentsW","features":[520]},{"name":"MsiEnumFeaturesA","features":[520]},{"name":"MsiEnumFeaturesW","features":[520]},{"name":"MsiEnumPatchesA","features":[520]},{"name":"MsiEnumPatchesExA","features":[520]},{"name":"MsiEnumPatchesExW","features":[520]},{"name":"MsiEnumPatchesW","features":[520]},{"name":"MsiEnumProductsA","features":[520]},{"name":"MsiEnumProductsExA","features":[520]},{"name":"MsiEnumProductsExW","features":[520]},{"name":"MsiEnumProductsW","features":[520]},{"name":"MsiEnumRelatedProductsA","features":[520]},{"name":"MsiEnumRelatedProductsW","features":[520]},{"name":"MsiEvaluateConditionA","features":[520]},{"name":"MsiEvaluateConditionW","features":[520]},{"name":"MsiExtractPatchXMLDataA","features":[520]},{"name":"MsiExtractPatchXMLDataW","features":[520]},{"name":"MsiFormatRecordA","features":[520]},{"name":"MsiFormatRecordW","features":[520]},{"name":"MsiGetActiveDatabase","features":[520]},{"name":"MsiGetComponentPathA","features":[520]},{"name":"MsiGetComponentPathExA","features":[520]},{"name":"MsiGetComponentPathExW","features":[520]},{"name":"MsiGetComponentPathW","features":[520]},{"name":"MsiGetComponentStateA","features":[520]},{"name":"MsiGetComponentStateW","features":[520]},{"name":"MsiGetDatabaseState","features":[520]},{"name":"MsiGetFeatureCostA","features":[520]},{"name":"MsiGetFeatureCostW","features":[520]},{"name":"MsiGetFeatureInfoA","features":[520]},{"name":"MsiGetFeatureInfoW","features":[520]},{"name":"MsiGetFeatureStateA","features":[520]},{"name":"MsiGetFeatureStateW","features":[520]},{"name":"MsiGetFeatureUsageA","features":[520]},{"name":"MsiGetFeatureUsageW","features":[520]},{"name":"MsiGetFeatureValidStatesA","features":[520]},{"name":"MsiGetFeatureValidStatesW","features":[520]},{"name":"MsiGetFileHashA","features":[520]},{"name":"MsiGetFileHashW","features":[520]},{"name":"MsiGetFileSignatureInformationA","features":[303,387,520]},{"name":"MsiGetFileSignatureInformationW","features":[303,387,520]},{"name":"MsiGetFileVersionA","features":[520]},{"name":"MsiGetFileVersionW","features":[520]},{"name":"MsiGetLanguage","features":[520]},{"name":"MsiGetLastErrorRecord","features":[520]},{"name":"MsiGetMode","features":[303,520]},{"name":"MsiGetPatchFileListA","features":[520]},{"name":"MsiGetPatchFileListW","features":[520]},{"name":"MsiGetPatchInfoA","features":[520]},{"name":"MsiGetPatchInfoExA","features":[520]},{"name":"MsiGetPatchInfoExW","features":[520]},{"name":"MsiGetPatchInfoW","features":[520]},{"name":"MsiGetProductCodeA","features":[520]},{"name":"MsiGetProductCodeW","features":[520]},{"name":"MsiGetProductInfoA","features":[520]},{"name":"MsiGetProductInfoExA","features":[520]},{"name":"MsiGetProductInfoExW","features":[520]},{"name":"MsiGetProductInfoFromScriptA","features":[520]},{"name":"MsiGetProductInfoFromScriptW","features":[520]},{"name":"MsiGetProductInfoW","features":[520]},{"name":"MsiGetProductPropertyA","features":[520]},{"name":"MsiGetProductPropertyW","features":[520]},{"name":"MsiGetPropertyA","features":[520]},{"name":"MsiGetPropertyW","features":[520]},{"name":"MsiGetShortcutTargetA","features":[520]},{"name":"MsiGetShortcutTargetW","features":[520]},{"name":"MsiGetSourcePathA","features":[520]},{"name":"MsiGetSourcePathW","features":[520]},{"name":"MsiGetSummaryInformationA","features":[520]},{"name":"MsiGetSummaryInformationW","features":[520]},{"name":"MsiGetTargetPathA","features":[520]},{"name":"MsiGetTargetPathW","features":[520]},{"name":"MsiGetUserInfoA","features":[520]},{"name":"MsiGetUserInfoW","features":[520]},{"name":"MsiInstallMissingComponentA","features":[520]},{"name":"MsiInstallMissingComponentW","features":[520]},{"name":"MsiInstallMissingFileA","features":[520]},{"name":"MsiInstallMissingFileW","features":[520]},{"name":"MsiInstallProductA","features":[520]},{"name":"MsiInstallProductW","features":[520]},{"name":"MsiIsProductElevatedA","features":[303,520]},{"name":"MsiIsProductElevatedW","features":[303,520]},{"name":"MsiJoinTransaction","features":[303,520]},{"name":"MsiLocateComponentA","features":[520]},{"name":"MsiLocateComponentW","features":[520]},{"name":"MsiNotifySidChangeA","features":[520]},{"name":"MsiNotifySidChangeW","features":[520]},{"name":"MsiOpenDatabaseA","features":[520]},{"name":"MsiOpenDatabaseW","features":[520]},{"name":"MsiOpenPackageA","features":[520]},{"name":"MsiOpenPackageExA","features":[520]},{"name":"MsiOpenPackageExW","features":[520]},{"name":"MsiOpenPackageW","features":[520]},{"name":"MsiOpenProductA","features":[520]},{"name":"MsiOpenProductW","features":[520]},{"name":"MsiPreviewBillboardA","features":[520]},{"name":"MsiPreviewBillboardW","features":[520]},{"name":"MsiPreviewDialogA","features":[520]},{"name":"MsiPreviewDialogW","features":[520]},{"name":"MsiProcessAdvertiseScriptA","features":[303,520,364]},{"name":"MsiProcessAdvertiseScriptW","features":[303,520,364]},{"name":"MsiProcessMessage","features":[520]},{"name":"MsiProvideAssemblyA","features":[520]},{"name":"MsiProvideAssemblyW","features":[520]},{"name":"MsiProvideComponentA","features":[520]},{"name":"MsiProvideComponentW","features":[520]},{"name":"MsiProvideQualifiedComponentA","features":[520]},{"name":"MsiProvideQualifiedComponentExA","features":[520]},{"name":"MsiProvideQualifiedComponentExW","features":[520]},{"name":"MsiProvideQualifiedComponentW","features":[520]},{"name":"MsiQueryComponentStateA","features":[520]},{"name":"MsiQueryComponentStateW","features":[520]},{"name":"MsiQueryFeatureStateA","features":[520]},{"name":"MsiQueryFeatureStateExA","features":[520]},{"name":"MsiQueryFeatureStateExW","features":[520]},{"name":"MsiQueryFeatureStateW","features":[520]},{"name":"MsiQueryProductStateA","features":[520]},{"name":"MsiQueryProductStateW","features":[520]},{"name":"MsiRecordClearData","features":[520]},{"name":"MsiRecordDataSize","features":[520]},{"name":"MsiRecordGetFieldCount","features":[520]},{"name":"MsiRecordGetInteger","features":[520]},{"name":"MsiRecordGetStringA","features":[520]},{"name":"MsiRecordGetStringW","features":[520]},{"name":"MsiRecordIsNull","features":[303,520]},{"name":"MsiRecordReadStream","features":[520]},{"name":"MsiRecordSetInteger","features":[520]},{"name":"MsiRecordSetStreamA","features":[520]},{"name":"MsiRecordSetStreamW","features":[520]},{"name":"MsiRecordSetStringA","features":[520]},{"name":"MsiRecordSetStringW","features":[520]},{"name":"MsiReinstallFeatureA","features":[520]},{"name":"MsiReinstallFeatureW","features":[520]},{"name":"MsiReinstallProductA","features":[520]},{"name":"MsiReinstallProductW","features":[520]},{"name":"MsiRemovePatchesA","features":[520]},{"name":"MsiRemovePatchesW","features":[520]},{"name":"MsiSequenceA","features":[520]},{"name":"MsiSequenceW","features":[520]},{"name":"MsiSetComponentStateA","features":[520]},{"name":"MsiSetComponentStateW","features":[520]},{"name":"MsiSetExternalUIA","features":[520]},{"name":"MsiSetExternalUIRecord","features":[520]},{"name":"MsiSetExternalUIW","features":[520]},{"name":"MsiSetFeatureAttributesA","features":[520]},{"name":"MsiSetFeatureAttributesW","features":[520]},{"name":"MsiSetFeatureStateA","features":[520]},{"name":"MsiSetFeatureStateW","features":[520]},{"name":"MsiSetInstallLevel","features":[520]},{"name":"MsiSetInternalUI","features":[303,520]},{"name":"MsiSetMode","features":[303,520]},{"name":"MsiSetPropertyA","features":[520]},{"name":"MsiSetPropertyW","features":[520]},{"name":"MsiSetTargetPathA","features":[520]},{"name":"MsiSetTargetPathW","features":[520]},{"name":"MsiSourceListAddMediaDiskA","features":[520]},{"name":"MsiSourceListAddMediaDiskW","features":[520]},{"name":"MsiSourceListAddSourceA","features":[520]},{"name":"MsiSourceListAddSourceExA","features":[520]},{"name":"MsiSourceListAddSourceExW","features":[520]},{"name":"MsiSourceListAddSourceW","features":[520]},{"name":"MsiSourceListClearAllA","features":[520]},{"name":"MsiSourceListClearAllExA","features":[520]},{"name":"MsiSourceListClearAllExW","features":[520]},{"name":"MsiSourceListClearAllW","features":[520]},{"name":"MsiSourceListClearMediaDiskA","features":[520]},{"name":"MsiSourceListClearMediaDiskW","features":[520]},{"name":"MsiSourceListClearSourceA","features":[520]},{"name":"MsiSourceListClearSourceW","features":[520]},{"name":"MsiSourceListEnumMediaDisksA","features":[520]},{"name":"MsiSourceListEnumMediaDisksW","features":[520]},{"name":"MsiSourceListEnumSourcesA","features":[520]},{"name":"MsiSourceListEnumSourcesW","features":[520]},{"name":"MsiSourceListForceResolutionA","features":[520]},{"name":"MsiSourceListForceResolutionExA","features":[520]},{"name":"MsiSourceListForceResolutionExW","features":[520]},{"name":"MsiSourceListForceResolutionW","features":[520]},{"name":"MsiSourceListGetInfoA","features":[520]},{"name":"MsiSourceListGetInfoW","features":[520]},{"name":"MsiSourceListSetInfoA","features":[520]},{"name":"MsiSourceListSetInfoW","features":[520]},{"name":"MsiSummaryInfoGetPropertyA","features":[303,520]},{"name":"MsiSummaryInfoGetPropertyCount","features":[520]},{"name":"MsiSummaryInfoGetPropertyW","features":[303,520]},{"name":"MsiSummaryInfoPersist","features":[520]},{"name":"MsiSummaryInfoSetPropertyA","features":[303,520]},{"name":"MsiSummaryInfoSetPropertyW","features":[303,520]},{"name":"MsiUseFeatureA","features":[520]},{"name":"MsiUseFeatureExA","features":[520]},{"name":"MsiUseFeatureExW","features":[520]},{"name":"MsiUseFeatureW","features":[520]},{"name":"MsiVerifyDiskSpace","features":[520]},{"name":"MsiVerifyPackageA","features":[520]},{"name":"MsiVerifyPackageW","features":[520]},{"name":"MsiViewClose","features":[520]},{"name":"MsiViewExecute","features":[520]},{"name":"MsiViewFetch","features":[520]},{"name":"MsiViewGetColumnInfo","features":[520]},{"name":"MsiViewGetErrorA","features":[520]},{"name":"MsiViewGetErrorW","features":[520]},{"name":"MsiViewModify","features":[520]},{"name":"MsmMerge","features":[520]},{"name":"NormalizeFileForPatchSignature","features":[303,520]},{"name":"PACKMAN_RUNTIME","features":[520]},{"name":"PACKMAN_RUNTIME_INVALID","features":[520]},{"name":"PACKMAN_RUNTIME_JUPITER","features":[520]},{"name":"PACKMAN_RUNTIME_MODERN_NATIVE","features":[520]},{"name":"PACKMAN_RUNTIME_NATIVE","features":[520]},{"name":"PACKMAN_RUNTIME_SILVERLIGHTMOBILE","features":[520]},{"name":"PACKMAN_RUNTIME_XNA","features":[520]},{"name":"PATCH_IGNORE_RANGE","features":[520]},{"name":"PATCH_INTERLEAVE_MAP","features":[520]},{"name":"PATCH_OLD_FILE_INFO","features":[303,520]},{"name":"PATCH_OLD_FILE_INFO_A","features":[520]},{"name":"PATCH_OLD_FILE_INFO_H","features":[303,520]},{"name":"PATCH_OLD_FILE_INFO_W","features":[520]},{"name":"PATCH_OPTION_DATA","features":[303,520]},{"name":"PATCH_OPTION_FAIL_IF_BIGGER","features":[520]},{"name":"PATCH_OPTION_FAIL_IF_SAME_FILE","features":[520]},{"name":"PATCH_OPTION_INTERLEAVE_FILES","features":[520]},{"name":"PATCH_OPTION_NO_BINDFIX","features":[520]},{"name":"PATCH_OPTION_NO_CHECKSUM","features":[520]},{"name":"PATCH_OPTION_NO_LOCKFIX","features":[520]},{"name":"PATCH_OPTION_NO_REBASE","features":[520]},{"name":"PATCH_OPTION_NO_RESTIMEFIX","features":[520]},{"name":"PATCH_OPTION_NO_TIMESTAMP","features":[520]},{"name":"PATCH_OPTION_RESERVED1","features":[520]},{"name":"PATCH_OPTION_SIGNATURE_MD5","features":[520]},{"name":"PATCH_OPTION_USE_BEST","features":[520]},{"name":"PATCH_OPTION_USE_LZX_A","features":[520]},{"name":"PATCH_OPTION_USE_LZX_B","features":[520]},{"name":"PATCH_OPTION_USE_LZX_BEST","features":[520]},{"name":"PATCH_OPTION_USE_LZX_LARGE","features":[520]},{"name":"PATCH_OPTION_VALID_FLAGS","features":[520]},{"name":"PATCH_RETAIN_RANGE","features":[520]},{"name":"PATCH_SYMBOL_NO_FAILURES","features":[520]},{"name":"PATCH_SYMBOL_NO_IMAGEHLP","features":[520]},{"name":"PATCH_SYMBOL_RESERVED1","features":[520]},{"name":"PATCH_SYMBOL_UNDECORATED_TOO","features":[520]},{"name":"PATCH_TRANSFORM_PE_IRELOC_2","features":[520]},{"name":"PATCH_TRANSFORM_PE_RESOURCE_2","features":[520]},{"name":"PID_APPNAME","features":[520]},{"name":"PID_AUTHOR","features":[520]},{"name":"PID_CHARCOUNT","features":[520]},{"name":"PID_COMMENTS","features":[520]},{"name":"PID_CREATE_DTM","features":[520]},{"name":"PID_EDITTIME","features":[520]},{"name":"PID_KEYWORDS","features":[520]},{"name":"PID_LASTAUTHOR","features":[520]},{"name":"PID_LASTPRINTED","features":[520]},{"name":"PID_LASTSAVE_DTM","features":[520]},{"name":"PID_MSIRESTRICT","features":[520]},{"name":"PID_MSISOURCE","features":[520]},{"name":"PID_MSIVERSION","features":[520]},{"name":"PID_PAGECOUNT","features":[520]},{"name":"PID_REVNUMBER","features":[520]},{"name":"PID_SUBJECT","features":[520]},{"name":"PID_TEMPLATE","features":[520]},{"name":"PID_THUMBNAIL","features":[520]},{"name":"PID_TITLE","features":[520]},{"name":"PID_WORDCOUNT","features":[520]},{"name":"PINSTALLUI_HANDLER_RECORD","features":[520]},{"name":"PMSIHANDLE","features":[520]},{"name":"PMSvc","features":[520]},{"name":"PM_ACTIVATION_POLICY","features":[520]},{"name":"PM_ACTIVATION_POLICY_INVALID","features":[520]},{"name":"PM_ACTIVATION_POLICY_MULTISESSION","features":[520]},{"name":"PM_ACTIVATION_POLICY_REPLACE","features":[520]},{"name":"PM_ACTIVATION_POLICY_REPLACESAMEPARAMS","features":[520]},{"name":"PM_ACTIVATION_POLICY_REPLACE_IGNOREFOREGROUND","features":[520]},{"name":"PM_ACTIVATION_POLICY_RESUME","features":[520]},{"name":"PM_ACTIVATION_POLICY_RESUMESAMEPARAMS","features":[520]},{"name":"PM_ACTIVATION_POLICY_UNKNOWN","features":[520]},{"name":"PM_APPLICATION_HUBTYPE","features":[520]},{"name":"PM_APPLICATION_HUBTYPE_INVALID","features":[520]},{"name":"PM_APPLICATION_HUBTYPE_MUSIC","features":[520]},{"name":"PM_APPLICATION_HUBTYPE_NONMUSIC","features":[520]},{"name":"PM_APPLICATION_INSTALL_DEBUG","features":[520]},{"name":"PM_APPLICATION_INSTALL_ENTERPRISE","features":[520]},{"name":"PM_APPLICATION_INSTALL_INVALID","features":[520]},{"name":"PM_APPLICATION_INSTALL_IN_ROM","features":[520]},{"name":"PM_APPLICATION_INSTALL_NORMAL","features":[520]},{"name":"PM_APPLICATION_INSTALL_PA","features":[520]},{"name":"PM_APPLICATION_INSTALL_TYPE","features":[520]},{"name":"PM_APPLICATION_STATE","features":[520]},{"name":"PM_APPLICATION_STATE_DISABLED_BACKING_UP","features":[520]},{"name":"PM_APPLICATION_STATE_DISABLED_ENTERPRISE","features":[520]},{"name":"PM_APPLICATION_STATE_DISABLED_MDIL_BINDING","features":[520]},{"name":"PM_APPLICATION_STATE_DISABLED_SD_CARD","features":[520]},{"name":"PM_APPLICATION_STATE_INSTALLED","features":[520]},{"name":"PM_APPLICATION_STATE_INSTALLING","features":[520]},{"name":"PM_APPLICATION_STATE_INVALID","features":[520]},{"name":"PM_APPLICATION_STATE_LICENSE_UPDATING","features":[520]},{"name":"PM_APPLICATION_STATE_MAX","features":[520]},{"name":"PM_APPLICATION_STATE_MIN","features":[520]},{"name":"PM_APPLICATION_STATE_MOVING","features":[520]},{"name":"PM_APPLICATION_STATE_UNINSTALLING","features":[520]},{"name":"PM_APPLICATION_STATE_UPDATING","features":[520]},{"name":"PM_APPTASKTYPE","features":[520]},{"name":"PM_APP_FILTER_ALL","features":[520]},{"name":"PM_APP_FILTER_ALL_INCLUDE_MODERN","features":[520]},{"name":"PM_APP_FILTER_FRAMEWORK","features":[520]},{"name":"PM_APP_FILTER_GENRE","features":[520]},{"name":"PM_APP_FILTER_HUBTYPE","features":[520]},{"name":"PM_APP_FILTER_MAX","features":[520]},{"name":"PM_APP_FILTER_NONGAMES","features":[520]},{"name":"PM_APP_FILTER_PINABLEONKIDZONE","features":[520]},{"name":"PM_APP_FILTER_VISIBLE","features":[520]},{"name":"PM_APP_GENRE","features":[520]},{"name":"PM_APP_GENRE_GAMES","features":[520]},{"name":"PM_APP_GENRE_INVALID","features":[520]},{"name":"PM_APP_GENRE_OTHER","features":[520]},{"name":"PM_BSATASKID","features":[520]},{"name":"PM_BWTASKID","features":[520]},{"name":"PM_ENUM_APP_FILTER","features":[520]},{"name":"PM_ENUM_BSA_FILTER","features":[520]},{"name":"PM_ENUM_BSA_FILTER_ALL","features":[520]},{"name":"PM_ENUM_BSA_FILTER_BY_ALL_LAUNCHONBOOT","features":[520]},{"name":"PM_ENUM_BSA_FILTER_BY_PERIODIC","features":[520]},{"name":"PM_ENUM_BSA_FILTER_BY_PRODUCTID","features":[520]},{"name":"PM_ENUM_BSA_FILTER_BY_TASKID","features":[520]},{"name":"PM_ENUM_BSA_FILTER_MAX","features":[520]},{"name":"PM_ENUM_BW_FILTER","features":[520]},{"name":"PM_ENUM_BW_FILTER_BOOTWORKER_ALL","features":[520]},{"name":"PM_ENUM_BW_FILTER_BY_TASKID","features":[520]},{"name":"PM_ENUM_BW_FILTER_MAX","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_APPCONNECT","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_BY_CONSUMER","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_CACHEDFILEUPDATER_ALL","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_FILEOPENPICKER_ALL","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_FILESAVEPICKER_ALL","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_APPLICATION_ALL","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_CONTENTTYPE_ALL","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_FILETYPE_ALL","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_MAX","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_PROTOCOL_ALL","features":[520]},{"name":"PM_ENUM_EXTENSION_FILTER_SHARETARGET_ALL","features":[520]},{"name":"PM_ENUM_FILTER","features":[520]},{"name":"PM_ENUM_TASK_FILTER","features":[520]},{"name":"PM_ENUM_TILE_FILTER","features":[520]},{"name":"PM_EXTENSIONCONSUMER","features":[520]},{"name":"PM_INSTALLINFO","features":[303,520]},{"name":"PM_INVOCATIONINFO","features":[520]},{"name":"PM_LIVETILE_RECURRENCE_TYPE","features":[520]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INSTANT","features":[520]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INTERVAL","features":[520]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_MAX","features":[520]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_ONETIME","features":[520]},{"name":"PM_LOGO_SIZE","features":[520]},{"name":"PM_LOGO_SIZE_INVALID","features":[520]},{"name":"PM_LOGO_SIZE_LARGE","features":[520]},{"name":"PM_LOGO_SIZE_MEDIUM","features":[520]},{"name":"PM_LOGO_SIZE_SMALL","features":[520]},{"name":"PM_STARTAPPBLOB","features":[303,520]},{"name":"PM_STARTTILEBLOB","features":[303,520]},{"name":"PM_STARTTILE_TYPE","features":[520]},{"name":"PM_STARTTILE_TYPE_APPLIST","features":[520]},{"name":"PM_STARTTILE_TYPE_APPLISTPRIMARY","features":[520]},{"name":"PM_STARTTILE_TYPE_INVALID","features":[520]},{"name":"PM_STARTTILE_TYPE_PRIMARY","features":[520]},{"name":"PM_STARTTILE_TYPE_SECONDARY","features":[520]},{"name":"PM_TASK_FILTER_APP_ALL","features":[520]},{"name":"PM_TASK_FILTER_APP_TASK_TYPE","features":[520]},{"name":"PM_TASK_FILTER_BGEXECUTION","features":[520]},{"name":"PM_TASK_FILTER_DEHYD_SUPRESSING","features":[520]},{"name":"PM_TASK_FILTER_MAX","features":[520]},{"name":"PM_TASK_FILTER_TASK_TYPE","features":[520]},{"name":"PM_TASK_TRANSITION","features":[520]},{"name":"PM_TASK_TRANSITION_CUSTOM","features":[520]},{"name":"PM_TASK_TRANSITION_DEFAULT","features":[520]},{"name":"PM_TASK_TRANSITION_INVALID","features":[520]},{"name":"PM_TASK_TRANSITION_NONE","features":[520]},{"name":"PM_TASK_TRANSITION_READERBOARD","features":[520]},{"name":"PM_TASK_TRANSITION_SLIDE","features":[520]},{"name":"PM_TASK_TRANSITION_SWIVEL","features":[520]},{"name":"PM_TASK_TRANSITION_TURNSTILE","features":[520]},{"name":"PM_TASK_TYPE","features":[520]},{"name":"PM_TASK_TYPE_BACKGROUNDSERVICEAGENT","features":[520]},{"name":"PM_TASK_TYPE_BACKGROUNDWORKER","features":[520]},{"name":"PM_TASK_TYPE_DEFAULT","features":[520]},{"name":"PM_TASK_TYPE_INVALID","features":[520]},{"name":"PM_TASK_TYPE_NORMAL","features":[520]},{"name":"PM_TASK_TYPE_SETTINGS","features":[520]},{"name":"PM_TILE_FILTER_APPLIST","features":[520]},{"name":"PM_TILE_FILTER_APP_ALL","features":[520]},{"name":"PM_TILE_FILTER_HUBTYPE","features":[520]},{"name":"PM_TILE_FILTER_MAX","features":[520]},{"name":"PM_TILE_FILTER_PINNED","features":[520]},{"name":"PM_TILE_HUBTYPE","features":[520]},{"name":"PM_TILE_HUBTYPE_APPLIST","features":[520]},{"name":"PM_TILE_HUBTYPE_CACHED","features":[520]},{"name":"PM_TILE_HUBTYPE_GAMES","features":[520]},{"name":"PM_TILE_HUBTYPE_INVALID","features":[520]},{"name":"PM_TILE_HUBTYPE_KIDZONE","features":[520]},{"name":"PM_TILE_HUBTYPE_LOCKSCREEN","features":[520]},{"name":"PM_TILE_HUBTYPE_MOSETTINGS","features":[520]},{"name":"PM_TILE_HUBTYPE_MUSIC","features":[520]},{"name":"PM_TILE_HUBTYPE_STARTMENU","features":[520]},{"name":"PM_TILE_SIZE","features":[520]},{"name":"PM_TILE_SIZE_INVALID","features":[520]},{"name":"PM_TILE_SIZE_LARGE","features":[520]},{"name":"PM_TILE_SIZE_MEDIUM","features":[520]},{"name":"PM_TILE_SIZE_SMALL","features":[520]},{"name":"PM_TILE_SIZE_SQUARE310X310","features":[520]},{"name":"PM_TILE_SIZE_TALL150X310","features":[520]},{"name":"PM_UPDATEINFO","features":[520]},{"name":"PM_UPDATEINFO_LEGACY","features":[520]},{"name":"PPATCH_PROGRESS_CALLBACK","features":[303,520]},{"name":"PPATCH_SYMLOAD_CALLBACK","features":[303,520]},{"name":"PROTECTED_FILE_DATA","features":[520]},{"name":"QUERYASMINFO_FLAGS","features":[520]},{"name":"QUERYASMINFO_FLAG_VALIDATE","features":[520]},{"name":"QueryActCtxSettingsW","features":[303,520]},{"name":"QueryActCtxW","features":[303,520]},{"name":"REINSTALLMODE","features":[520]},{"name":"REINSTALLMODE_FILEEQUALVERSION","features":[520]},{"name":"REINSTALLMODE_FILEEXACT","features":[520]},{"name":"REINSTALLMODE_FILEMISSING","features":[520]},{"name":"REINSTALLMODE_FILEOLDERVERSION","features":[520]},{"name":"REINSTALLMODE_FILEREPLACE","features":[520]},{"name":"REINSTALLMODE_FILEVERIFY","features":[520]},{"name":"REINSTALLMODE_MACHINEDATA","features":[520]},{"name":"REINSTALLMODE_PACKAGE","features":[520]},{"name":"REINSTALLMODE_REPAIR","features":[520]},{"name":"REINSTALLMODE_SHORTCUT","features":[520]},{"name":"REINSTALLMODE_USERDATA","features":[520]},{"name":"RESULTTYPES","features":[520]},{"name":"ReleaseActCtx","features":[303,520]},{"name":"SCRIPTFLAGS","features":[520]},{"name":"SCRIPTFLAGS_CACHEINFO","features":[520]},{"name":"SCRIPTFLAGS_MACHINEASSIGN","features":[520]},{"name":"SCRIPTFLAGS_REGDATA","features":[520]},{"name":"SCRIPTFLAGS_REGDATA_APPINFO","features":[520]},{"name":"SCRIPTFLAGS_REGDATA_CLASSINFO","features":[520]},{"name":"SCRIPTFLAGS_REGDATA_CNFGINFO","features":[520]},{"name":"SCRIPTFLAGS_REGDATA_EXTENSIONINFO","features":[520]},{"name":"SCRIPTFLAGS_SHORTCUTS","features":[520]},{"name":"SCRIPTFLAGS_VALIDATE_TRANSFORMS_LIST","features":[520]},{"name":"SFC_DISABLE_ASK","features":[520]},{"name":"SFC_DISABLE_NOPOPUPS","features":[520]},{"name":"SFC_DISABLE_NORMAL","features":[520]},{"name":"SFC_DISABLE_ONCE","features":[520]},{"name":"SFC_DISABLE_SETUP","features":[520]},{"name":"SFC_IDLE_TRIGGER","features":[520]},{"name":"SFC_QUOTA_DEFAULT","features":[520]},{"name":"SFC_SCAN_ALWAYS","features":[520]},{"name":"SFC_SCAN_IMMEDIATE","features":[520]},{"name":"SFC_SCAN_NORMAL","features":[520]},{"name":"SFC_SCAN_ONCE","features":[520]},{"name":"STATUSTYPES","features":[520]},{"name":"STREAM_FORMAT_COMPLIB_MANIFEST","features":[520]},{"name":"STREAM_FORMAT_COMPLIB_MODULE","features":[520]},{"name":"STREAM_FORMAT_WIN32_MANIFEST","features":[520]},{"name":"STREAM_FORMAT_WIN32_MODULE","features":[520]},{"name":"SfcGetNextProtectedFile","features":[303,520]},{"name":"SfcIsFileProtected","features":[303,520]},{"name":"SfcIsKeyProtected","features":[303,520,364]},{"name":"SfpVerifyFile","features":[303,520]},{"name":"TILE_TEMPLATE_AGILESTORE","features":[520]},{"name":"TILE_TEMPLATE_ALL","features":[520]},{"name":"TILE_TEMPLATE_BADGE","features":[520]},{"name":"TILE_TEMPLATE_BLOCK","features":[520]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT01","features":[520]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT02","features":[520]},{"name":"TILE_TEMPLATE_CALENDAR","features":[520]},{"name":"TILE_TEMPLATE_CONTACT","features":[520]},{"name":"TILE_TEMPLATE_CYCLE","features":[520]},{"name":"TILE_TEMPLATE_DEEPLINK","features":[520]},{"name":"TILE_TEMPLATE_DEFAULT","features":[520]},{"name":"TILE_TEMPLATE_FLIP","features":[520]},{"name":"TILE_TEMPLATE_FOLDER","features":[520]},{"name":"TILE_TEMPLATE_GAMES","features":[520]},{"name":"TILE_TEMPLATE_GROUP","features":[520]},{"name":"TILE_TEMPLATE_IMAGE","features":[520]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT01","features":[520]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT02","features":[520]},{"name":"TILE_TEMPLATE_IMAGECOLLECTION","features":[520]},{"name":"TILE_TEMPLATE_INVALID","features":[520]},{"name":"TILE_TEMPLATE_METROCOUNT","features":[520]},{"name":"TILE_TEMPLATE_METROCOUNTQUEUE","features":[520]},{"name":"TILE_TEMPLATE_MUSICVIDEO","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGE01","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGE02","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGE03","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGE04","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGE05","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGE06","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT01","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT02","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT03","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT04","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION01","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION02","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION03","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION04","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION05","features":[520]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION06","features":[520]},{"name":"TILE_TEMPLATE_PEOPLE","features":[520]},{"name":"TILE_TEMPLATE_SEARCH","features":[520]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT01","features":[520]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT02","features":[520]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT03","features":[520]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT04","features":[520]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT05","features":[520]},{"name":"TILE_TEMPLATE_TEXT01","features":[520]},{"name":"TILE_TEMPLATE_TEXT02","features":[520]},{"name":"TILE_TEMPLATE_TEXT03","features":[520]},{"name":"TILE_TEMPLATE_TEXT04","features":[520]},{"name":"TILE_TEMPLATE_TEXT05","features":[520]},{"name":"TILE_TEMPLATE_TEXT06","features":[520]},{"name":"TILE_TEMPLATE_TEXT07","features":[520]},{"name":"TILE_TEMPLATE_TEXT08","features":[520]},{"name":"TILE_TEMPLATE_TEXT09","features":[520]},{"name":"TILE_TEMPLATE_TEXT10","features":[520]},{"name":"TILE_TEMPLATE_TEXT11","features":[520]},{"name":"TILE_TEMPLATE_TILEFLYOUT01","features":[520]},{"name":"TILE_TEMPLATE_TYPE","features":[520]},{"name":"TXTLOG_BACKUP","features":[520]},{"name":"TXTLOG_CMI","features":[520]},{"name":"TXTLOG_COPYFILES","features":[520]},{"name":"TXTLOG_DEPTH_DECR","features":[520]},{"name":"TXTLOG_DEPTH_INCR","features":[520]},{"name":"TXTLOG_DETAILS","features":[520]},{"name":"TXTLOG_DEVINST","features":[520]},{"name":"TXTLOG_DEVMGR","features":[520]},{"name":"TXTLOG_DRIVER_STORE","features":[520]},{"name":"TXTLOG_DRVSETUP","features":[520]},{"name":"TXTLOG_ERROR","features":[520]},{"name":"TXTLOG_FILEQ","features":[520]},{"name":"TXTLOG_FLUSH_FILE","features":[520]},{"name":"TXTLOG_INF","features":[520]},{"name":"TXTLOG_INFDB","features":[520]},{"name":"TXTLOG_INSTALLER","features":[520]},{"name":"TXTLOG_NEWDEV","features":[520]},{"name":"TXTLOG_POLICY","features":[520]},{"name":"TXTLOG_RESERVED_FLAGS","features":[520]},{"name":"TXTLOG_SETUP","features":[520]},{"name":"TXTLOG_SETUPAPI_BITS","features":[520]},{"name":"TXTLOG_SETUPAPI_CMDLINE","features":[520]},{"name":"TXTLOG_SETUPAPI_DEVLOG","features":[520]},{"name":"TXTLOG_SIGVERIF","features":[520]},{"name":"TXTLOG_SUMMARY","features":[520]},{"name":"TXTLOG_SYSTEM_STATE_CHANGE","features":[520]},{"name":"TXTLOG_TAB_1","features":[520]},{"name":"TXTLOG_TIMESTAMP","features":[520]},{"name":"TXTLOG_UI","features":[520]},{"name":"TXTLOG_UMPNPMGR","features":[520]},{"name":"TXTLOG_UTIL","features":[520]},{"name":"TXTLOG_VENDOR","features":[520]},{"name":"TXTLOG_VERBOSE","features":[520]},{"name":"TXTLOG_VERY_VERBOSE","features":[520]},{"name":"TXTLOG_WARNING","features":[520]},{"name":"TestApplyPatchToFileA","features":[303,520]},{"name":"TestApplyPatchToFileByBuffers","features":[303,520]},{"name":"TestApplyPatchToFileByHandles","features":[303,520]},{"name":"TestApplyPatchToFileW","features":[303,520]},{"name":"UIALL","features":[520]},{"name":"UILOGBITS","features":[520]},{"name":"UINONE","features":[520]},{"name":"USERINFOSTATE","features":[520]},{"name":"USERINFOSTATE_ABSENT","features":[520]},{"name":"USERINFOSTATE_INVALIDARG","features":[520]},{"name":"USERINFOSTATE_MOREDATA","features":[520]},{"name":"USERINFOSTATE_PRESENT","features":[520]},{"name":"USERINFOSTATE_UNKNOWN","features":[520]},{"name":"WARN_BAD_MAJOR_VERSION","features":[520]},{"name":"WARN_BASE","features":[520]},{"name":"WARN_EQUAL_FILE_VERSION","features":[520]},{"name":"WARN_FILE_VERSION_DOWNREV","features":[520]},{"name":"WARN_IMPROPER_TRANSFORM_VALIDATION","features":[520]},{"name":"WARN_INVALID_TRANSFORM_VALIDATION","features":[520]},{"name":"WARN_MAJOR_UPGRADE_PATCH","features":[520]},{"name":"WARN_OBSOLETION_WITH_MSI30","features":[520]},{"name":"WARN_OBSOLETION_WITH_PATCHSEQUENCE","features":[520]},{"name":"WARN_OBSOLETION_WITH_SEQUENCE_DATA","features":[520]},{"name":"WARN_PATCHPROPERTYNOTSET","features":[520]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_CODES","features":[520]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[520]},{"name":"WARN_SEQUENCE_DATA_GENERATION_DISABLED","features":[520]},{"name":"WARN_SEQUENCE_DATA_SUPERSEDENCE_IGNORED","features":[520]},{"name":"ZombifyActCtx","features":[303,520]},{"name":"_WIN32_MSI","features":[520]},{"name":"_WIN32_MSM","features":[520]},{"name":"cchMaxInteger","features":[520]},{"name":"ieError","features":[520]},{"name":"ieInfo","features":[520]},{"name":"ieStatusCancel","features":[520]},{"name":"ieStatusCreateEngine","features":[520]},{"name":"ieStatusFail","features":[520]},{"name":"ieStatusGetCUB","features":[520]},{"name":"ieStatusICECount","features":[520]},{"name":"ieStatusMerge","features":[520]},{"name":"ieStatusRunICE","features":[520]},{"name":"ieStatusShutdown","features":[520]},{"name":"ieStatusStarting","features":[520]},{"name":"ieStatusSuccess","features":[520]},{"name":"ieStatusSummaryInfo","features":[520]},{"name":"ieUnknown","features":[520]},{"name":"ieWarning","features":[520]},{"name":"msidbAssemblyAttributes","features":[520]},{"name":"msidbAssemblyAttributesURT","features":[520]},{"name":"msidbAssemblyAttributesWin32","features":[520]},{"name":"msidbClassAttributes","features":[520]},{"name":"msidbClassAttributesRelativePath","features":[520]},{"name":"msidbComponentAttributes","features":[520]},{"name":"msidbComponentAttributes64bit","features":[520]},{"name":"msidbComponentAttributesDisableRegistryReflection","features":[520]},{"name":"msidbComponentAttributesLocalOnly","features":[520]},{"name":"msidbComponentAttributesNeverOverwrite","features":[520]},{"name":"msidbComponentAttributesODBCDataSource","features":[520]},{"name":"msidbComponentAttributesOptional","features":[520]},{"name":"msidbComponentAttributesPermanent","features":[520]},{"name":"msidbComponentAttributesRegistryKeyPath","features":[520]},{"name":"msidbComponentAttributesShared","features":[520]},{"name":"msidbComponentAttributesSharedDllRefCount","features":[520]},{"name":"msidbComponentAttributesSourceOnly","features":[520]},{"name":"msidbComponentAttributesTransitive","features":[520]},{"name":"msidbComponentAttributesUninstallOnSupersedence","features":[520]},{"name":"msidbControlAttributes","features":[520]},{"name":"msidbControlAttributesBiDi","features":[520]},{"name":"msidbControlAttributesBitmap","features":[520]},{"name":"msidbControlAttributesCDROMVolume","features":[520]},{"name":"msidbControlAttributesComboList","features":[520]},{"name":"msidbControlAttributesElevationShield","features":[520]},{"name":"msidbControlAttributesEnabled","features":[520]},{"name":"msidbControlAttributesFixedSize","features":[520]},{"name":"msidbControlAttributesFixedVolume","features":[520]},{"name":"msidbControlAttributesFloppyVolume","features":[520]},{"name":"msidbControlAttributesFormatSize","features":[520]},{"name":"msidbControlAttributesHasBorder","features":[520]},{"name":"msidbControlAttributesIcon","features":[520]},{"name":"msidbControlAttributesIconSize16","features":[520]},{"name":"msidbControlAttributesIconSize32","features":[520]},{"name":"msidbControlAttributesIconSize48","features":[520]},{"name":"msidbControlAttributesImageHandle","features":[520]},{"name":"msidbControlAttributesIndirect","features":[520]},{"name":"msidbControlAttributesInteger","features":[520]},{"name":"msidbControlAttributesLeftScroll","features":[520]},{"name":"msidbControlAttributesMultiline","features":[520]},{"name":"msidbControlAttributesNoPrefix","features":[520]},{"name":"msidbControlAttributesNoWrap","features":[520]},{"name":"msidbControlAttributesPasswordInput","features":[520]},{"name":"msidbControlAttributesProgress95","features":[520]},{"name":"msidbControlAttributesPushLike","features":[520]},{"name":"msidbControlAttributesRAMDiskVolume","features":[520]},{"name":"msidbControlAttributesRTLRO","features":[520]},{"name":"msidbControlAttributesRemoteVolume","features":[520]},{"name":"msidbControlAttributesRemovableVolume","features":[520]},{"name":"msidbControlAttributesRightAligned","features":[520]},{"name":"msidbControlAttributesSorted","features":[520]},{"name":"msidbControlAttributesSunken","features":[520]},{"name":"msidbControlAttributesTransparent","features":[520]},{"name":"msidbControlAttributesUsersLanguage","features":[520]},{"name":"msidbControlAttributesVisible","features":[520]},{"name":"msidbControlShowRollbackCost","features":[520]},{"name":"msidbCustomActionType","features":[520]},{"name":"msidbCustomActionType64BitScript","features":[520]},{"name":"msidbCustomActionTypeAsync","features":[520]},{"name":"msidbCustomActionTypeBinaryData","features":[520]},{"name":"msidbCustomActionTypeClientRepeat","features":[520]},{"name":"msidbCustomActionTypeCommit","features":[520]},{"name":"msidbCustomActionTypeContinue","features":[520]},{"name":"msidbCustomActionTypeDirectory","features":[520]},{"name":"msidbCustomActionTypeDll","features":[520]},{"name":"msidbCustomActionTypeExe","features":[520]},{"name":"msidbCustomActionTypeFirstSequence","features":[520]},{"name":"msidbCustomActionTypeHideTarget","features":[520]},{"name":"msidbCustomActionTypeInScript","features":[520]},{"name":"msidbCustomActionTypeInstall","features":[520]},{"name":"msidbCustomActionTypeJScript","features":[520]},{"name":"msidbCustomActionTypeNoImpersonate","features":[520]},{"name":"msidbCustomActionTypeOncePerProcess","features":[520]},{"name":"msidbCustomActionTypePatchUninstall","features":[520]},{"name":"msidbCustomActionTypeProperty","features":[520]},{"name":"msidbCustomActionTypeRollback","features":[520]},{"name":"msidbCustomActionTypeSourceFile","features":[520]},{"name":"msidbCustomActionTypeTSAware","features":[520]},{"name":"msidbCustomActionTypeTextData","features":[520]},{"name":"msidbCustomActionTypeVBScript","features":[520]},{"name":"msidbDialogAttributes","features":[520]},{"name":"msidbDialogAttributesBiDi","features":[520]},{"name":"msidbDialogAttributesError","features":[520]},{"name":"msidbDialogAttributesKeepModeless","features":[520]},{"name":"msidbDialogAttributesLeftScroll","features":[520]},{"name":"msidbDialogAttributesMinimize","features":[520]},{"name":"msidbDialogAttributesModal","features":[520]},{"name":"msidbDialogAttributesRTLRO","features":[520]},{"name":"msidbDialogAttributesRightAligned","features":[520]},{"name":"msidbDialogAttributesSysModal","features":[520]},{"name":"msidbDialogAttributesTrackDiskSpace","features":[520]},{"name":"msidbDialogAttributesUseCustomPalette","features":[520]},{"name":"msidbDialogAttributesVisible","features":[520]},{"name":"msidbEmbeddedHandlesBasic","features":[520]},{"name":"msidbEmbeddedUI","features":[520]},{"name":"msidbEmbeddedUIAttributes","features":[520]},{"name":"msidbFeatureAttributes","features":[520]},{"name":"msidbFeatureAttributesDisallowAdvertise","features":[520]},{"name":"msidbFeatureAttributesFavorAdvertise","features":[520]},{"name":"msidbFeatureAttributesFavorLocal","features":[520]},{"name":"msidbFeatureAttributesFavorSource","features":[520]},{"name":"msidbFeatureAttributesFollowParent","features":[520]},{"name":"msidbFeatureAttributesNoUnsupportedAdvertise","features":[520]},{"name":"msidbFeatureAttributesUIDisallowAbsent","features":[520]},{"name":"msidbFileAttributes","features":[520]},{"name":"msidbFileAttributesChecksum","features":[520]},{"name":"msidbFileAttributesCompressed","features":[520]},{"name":"msidbFileAttributesHidden","features":[520]},{"name":"msidbFileAttributesIsolatedComp","features":[520]},{"name":"msidbFileAttributesNoncompressed","features":[520]},{"name":"msidbFileAttributesPatchAdded","features":[520]},{"name":"msidbFileAttributesReadOnly","features":[520]},{"name":"msidbFileAttributesReserved0","features":[520]},{"name":"msidbFileAttributesReserved1","features":[520]},{"name":"msidbFileAttributesReserved2","features":[520]},{"name":"msidbFileAttributesReserved3","features":[520]},{"name":"msidbFileAttributesReserved4","features":[520]},{"name":"msidbFileAttributesSystem","features":[520]},{"name":"msidbFileAttributesVital","features":[520]},{"name":"msidbIniFileAction","features":[520]},{"name":"msidbIniFileActionAddLine","features":[520]},{"name":"msidbIniFileActionAddTag","features":[520]},{"name":"msidbIniFileActionCreateLine","features":[520]},{"name":"msidbIniFileActionRemoveLine","features":[520]},{"name":"msidbIniFileActionRemoveTag","features":[520]},{"name":"msidbLocatorType","features":[520]},{"name":"msidbLocatorType64bit","features":[520]},{"name":"msidbLocatorTypeDirectory","features":[520]},{"name":"msidbLocatorTypeFileName","features":[520]},{"name":"msidbLocatorTypeRawValue","features":[520]},{"name":"msidbMoveFileOptions","features":[520]},{"name":"msidbMoveFileOptionsMove","features":[520]},{"name":"msidbODBCDataSourceRegistration","features":[520]},{"name":"msidbODBCDataSourceRegistrationPerMachine","features":[520]},{"name":"msidbODBCDataSourceRegistrationPerUser","features":[520]},{"name":"msidbPatchAttributes","features":[520]},{"name":"msidbPatchAttributesNonVital","features":[520]},{"name":"msidbRegistryRoot","features":[520]},{"name":"msidbRegistryRootClassesRoot","features":[520]},{"name":"msidbRegistryRootCurrentUser","features":[520]},{"name":"msidbRegistryRootLocalMachine","features":[520]},{"name":"msidbRegistryRootUsers","features":[520]},{"name":"msidbRemoveFileInstallMode","features":[520]},{"name":"msidbRemoveFileInstallModeOnBoth","features":[520]},{"name":"msidbRemoveFileInstallModeOnInstall","features":[520]},{"name":"msidbRemoveFileInstallModeOnRemove","features":[520]},{"name":"msidbServiceConfigEvent","features":[520]},{"name":"msidbServiceConfigEventInstall","features":[520]},{"name":"msidbServiceConfigEventReinstall","features":[520]},{"name":"msidbServiceConfigEventUninstall","features":[520]},{"name":"msidbServiceControlEvent","features":[520]},{"name":"msidbServiceControlEventDelete","features":[520]},{"name":"msidbServiceControlEventStart","features":[520]},{"name":"msidbServiceControlEventStop","features":[520]},{"name":"msidbServiceControlEventUninstallDelete","features":[520]},{"name":"msidbServiceControlEventUninstallStart","features":[520]},{"name":"msidbServiceControlEventUninstallStop","features":[520]},{"name":"msidbServiceInstallErrorControl","features":[520]},{"name":"msidbServiceInstallErrorControlVital","features":[520]},{"name":"msidbSumInfoSourceType","features":[520]},{"name":"msidbSumInfoSourceTypeAdminImage","features":[520]},{"name":"msidbSumInfoSourceTypeCompressed","features":[520]},{"name":"msidbSumInfoSourceTypeLUAPackage","features":[520]},{"name":"msidbSumInfoSourceTypeSFN","features":[520]},{"name":"msidbTextStyleStyleBits","features":[520]},{"name":"msidbTextStyleStyleBitsBold","features":[520]},{"name":"msidbTextStyleStyleBitsItalic","features":[520]},{"name":"msidbTextStyleStyleBitsStrike","features":[520]},{"name":"msidbTextStyleStyleBitsUnderline","features":[520]},{"name":"msidbUpgradeAttributes","features":[520]},{"name":"msidbUpgradeAttributesIgnoreRemoveFailure","features":[520]},{"name":"msidbUpgradeAttributesLanguagesExclusive","features":[520]},{"name":"msidbUpgradeAttributesMigrateFeatures","features":[520]},{"name":"msidbUpgradeAttributesOnlyDetect","features":[520]},{"name":"msidbUpgradeAttributesVersionMaxInclusive","features":[520]},{"name":"msidbUpgradeAttributesVersionMinInclusive","features":[520]},{"name":"msifiFastInstallBits","features":[520]},{"name":"msifiFastInstallLessPrgMsg","features":[520]},{"name":"msifiFastInstallNoSR","features":[520]},{"name":"msifiFastInstallQuickCosting","features":[520]},{"name":"msirbRebootCustomActionReason","features":[520]},{"name":"msirbRebootDeferred","features":[520]},{"name":"msirbRebootForceRebootReason","features":[520]},{"name":"msirbRebootImmediate","features":[520]},{"name":"msirbRebootInUseFilesReason","features":[520]},{"name":"msirbRebootReason","features":[520]},{"name":"msirbRebootScheduleRebootReason","features":[520]},{"name":"msirbRebootType","features":[520]},{"name":"msirbRebootUndeterminedReason","features":[520]},{"name":"msmErrorDirCreate","features":[520]},{"name":"msmErrorExclusion","features":[520]},{"name":"msmErrorFeatureRequired","features":[520]},{"name":"msmErrorFileCreate","features":[520]},{"name":"msmErrorLanguageFailed","features":[520]},{"name":"msmErrorLanguageUnsupported","features":[520]},{"name":"msmErrorResequenceMerge","features":[520]},{"name":"msmErrorTableMerge","features":[520]},{"name":"msmErrorType","features":[520]}],"531":[{"name":"AVRF_BACKTRACE_INFORMATION","features":[521]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_DONT_RESOLVE_TRACES","features":[521]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_SUSPEND","features":[521]},{"name":"AVRF_HANDLEOPERATION_ENUMERATE_CALLBACK","features":[521]},{"name":"AVRF_HANDLE_OPERATION","features":[521]},{"name":"AVRF_HEAPALLOCATION_ENUMERATE_CALLBACK","features":[521]},{"name":"AVRF_HEAP_ALLOCATION","features":[521]},{"name":"AVRF_MAX_TRACES","features":[521]},{"name":"AVRF_RESOURCE_ENUMERATE_CALLBACK","features":[521]},{"name":"AllocationStateBusy","features":[521]},{"name":"AllocationStateFree","features":[521]},{"name":"AllocationStateUnknown","features":[521]},{"name":"AvrfResourceHandleTrace","features":[521]},{"name":"AvrfResourceHeapAllocation","features":[521]},{"name":"AvrfResourceMax","features":[521]},{"name":"HeapEnumerationEverything","features":[521]},{"name":"HeapEnumerationStop","features":[521]},{"name":"HeapFullPageHeap","features":[521]},{"name":"HeapMetadata","features":[521]},{"name":"HeapStateMask","features":[521]},{"name":"OperationDbBADREF","features":[521]},{"name":"OperationDbCLOSE","features":[521]},{"name":"OperationDbOPEN","features":[521]},{"name":"OperationDbUnused","features":[521]},{"name":"VERIFIER_ENUM_RESOURCE_FLAGS","features":[521]},{"name":"VerifierEnumerateResource","features":[303,521]},{"name":"eAvrfResourceTypes","features":[521]},{"name":"eHANDLE_TRACE_OPERATIONS","features":[521]},{"name":"eHeapAllocationState","features":[521]},{"name":"eHeapEnumerationLevel","features":[521]},{"name":"eUserAllocationState","features":[521]}],"532":[{"name":"CAccessiblityWinSAT","features":[522]},{"name":"CInitiateWinSAT","features":[522]},{"name":"CProvideWinSATVisuals","features":[522]},{"name":"CQueryAllWinSAT","features":[522]},{"name":"CQueryOEMWinSATCustomization","features":[522]},{"name":"CQueryWinSAT","features":[522]},{"name":"IAccessibleWinSAT","features":[522,354,523]},{"name":"IInitiateWinSATAssessment","features":[522]},{"name":"IProvideWinSATAssessmentInfo","features":[522,354]},{"name":"IProvideWinSATResultsInfo","features":[522,354]},{"name":"IProvideWinSATVisuals","features":[522]},{"name":"IQueryAllWinSATAssessments","features":[522,354]},{"name":"IQueryOEMWinSATCustomization","features":[522]},{"name":"IQueryRecentWinSATAssessment","features":[522,354]},{"name":"IWinSATInitiateEvents","features":[522]},{"name":"WINSAT_ASSESSMENT_CPU","features":[522]},{"name":"WINSAT_ASSESSMENT_D3D","features":[522]},{"name":"WINSAT_ASSESSMENT_DISK","features":[522]},{"name":"WINSAT_ASSESSMENT_GRAPHICS","features":[522]},{"name":"WINSAT_ASSESSMENT_MEMORY","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE_INCOHERENT_WITH_HARDWARE","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE_INVALID","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE_MAX","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE_MIN","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE_NOT_AVAILABLE","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE_UNKNOWN","features":[522]},{"name":"WINSAT_ASSESSMENT_STATE_VALID","features":[522]},{"name":"WINSAT_ASSESSMENT_TYPE","features":[522]},{"name":"WINSAT_BITMAP_SIZE","features":[522]},{"name":"WINSAT_BITMAP_SIZE_NORMAL","features":[522]},{"name":"WINSAT_BITMAP_SIZE_SMALL","features":[522]},{"name":"WINSAT_OEM_CUSTOMIZATION_STATE","features":[522]},{"name":"WINSAT_OEM_DATA_INVALID","features":[522]},{"name":"WINSAT_OEM_DATA_NON_SYS_CONFIG_MATCH","features":[522]},{"name":"WINSAT_OEM_DATA_VALID","features":[522]},{"name":"WINSAT_OEM_NO_DATA_SUPPLIED","features":[522]}],"533":[{"name":"APPDOMAIN_FORCE_TRIVIAL_WAIT_OPERATIONS","features":[524]},{"name":"APPDOMAIN_SECURITY_DEFAULT","features":[524]},{"name":"APPDOMAIN_SECURITY_FLAGS","features":[524]},{"name":"APPDOMAIN_SECURITY_FORBID_CROSSAD_REVERSE_PINVOKE","features":[524]},{"name":"APPDOMAIN_SECURITY_SANDBOXED","features":[524]},{"name":"AssemblyBindInfo","features":[524]},{"name":"BucketParamLength","features":[524]},{"name":"BucketParameterIndex","features":[524]},{"name":"BucketParameters","features":[303,524]},{"name":"BucketParamsCount","features":[524]},{"name":"CLRCreateInstance","features":[524]},{"name":"CLRCreateInstanceFnPtr","features":[524]},{"name":"CLRRuntimeHost","features":[524]},{"name":"CLR_ASSEMBLY_BUILD_VERSION","features":[524]},{"name":"CLR_ASSEMBLY_IDENTITY_FLAGS_DEFAULT","features":[524]},{"name":"CLR_ASSEMBLY_MAJOR_VERSION","features":[524]},{"name":"CLR_ASSEMBLY_MINOR_VERSION","features":[524]},{"name":"CLR_BUILD_VERSION","features":[524]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_DEBUGGER_LAUNCH","features":[524]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_PENDING","features":[524]},{"name":"CLR_DEBUGGING_PROCESS_FLAGS","features":[524]},{"name":"CLR_DEBUGGING_VERSION","features":[524]},{"name":"CLR_MAJOR_VERSION","features":[524]},{"name":"CLR_MINOR_VERSION","features":[524]},{"name":"CLSID_CLRDebugging","features":[524]},{"name":"CLSID_CLRDebuggingLegacy","features":[524]},{"name":"CLSID_CLRMetaHost","features":[524]},{"name":"CLSID_CLRMetaHostPolicy","features":[524]},{"name":"CLSID_CLRProfiling","features":[524]},{"name":"CLSID_CLRStrongName","features":[524]},{"name":"CLSID_RESOLUTION_DEFAULT","features":[524]},{"name":"CLSID_RESOLUTION_FLAGS","features":[524]},{"name":"CLSID_RESOLUTION_REGISTERED","features":[524]},{"name":"COR_GC_COUNTS","features":[524]},{"name":"COR_GC_MEMORYUSAGE","features":[524]},{"name":"COR_GC_STATS","features":[524]},{"name":"COR_GC_STAT_TYPES","features":[524]},{"name":"COR_GC_THREAD_HAS_PROMOTED_BYTES","features":[524]},{"name":"COR_GC_THREAD_STATS","features":[524]},{"name":"COR_GC_THREAD_STATS_TYPES","features":[524]},{"name":"CallFunctionShim","features":[524]},{"name":"CallbackThreadSetFnPtr","features":[524]},{"name":"CallbackThreadUnsetFnPtr","features":[524]},{"name":"ClrCreateManagedInstance","features":[524]},{"name":"ComCallUnmarshal","features":[524]},{"name":"ComCallUnmarshalV4","features":[524]},{"name":"CorBindToCurrentRuntime","features":[524]},{"name":"CorBindToRuntime","features":[524]},{"name":"CorBindToRuntimeByCfg","features":[524,354]},{"name":"CorBindToRuntimeEx","features":[524]},{"name":"CorBindToRuntimeHost","features":[524]},{"name":"CorExitProcess","features":[524]},{"name":"CorLaunchApplication","features":[303,524,338]},{"name":"CorMarkThreadInThreadPool","features":[524]},{"name":"CorRuntimeHost","features":[524]},{"name":"CreateDebuggingInterfaceFromVersion","features":[524]},{"name":"CreateInterfaceFnPtr","features":[524]},{"name":"CustomDumpItem","features":[524]},{"name":"DEPRECATED_CLR_API_MESG","features":[524]},{"name":"DUMP_FLAVOR_CriticalCLRState","features":[524]},{"name":"DUMP_FLAVOR_Default","features":[524]},{"name":"DUMP_FLAVOR_Mini","features":[524]},{"name":"DUMP_FLAVOR_NonHeapCLRState","features":[524]},{"name":"DUMP_ITEM_None","features":[524]},{"name":"EApiCategories","features":[524]},{"name":"EBindPolicyLevels","features":[524]},{"name":"ECLRAssemblyIdentityFlags","features":[524]},{"name":"EClrEvent","features":[524]},{"name":"EClrFailure","features":[524]},{"name":"EClrOperation","features":[524]},{"name":"EClrUnhandledException","features":[524]},{"name":"EContextType","features":[524]},{"name":"ECustomDumpFlavor","features":[524]},{"name":"ECustomDumpItemKind","features":[524]},{"name":"EHostApplicationPolicy","features":[524]},{"name":"EHostBindingPolicyModifyFlags","features":[524]},{"name":"EInitializeNewDomainFlags","features":[524]},{"name":"EMemoryAvailable","features":[524]},{"name":"EMemoryCriticalLevel","features":[524]},{"name":"EPolicyAction","features":[524]},{"name":"ESymbolReadingPolicy","features":[524]},{"name":"ETaskType","features":[524]},{"name":"Event_ClrDisabled","features":[524]},{"name":"Event_DomainUnload","features":[524]},{"name":"Event_MDAFired","features":[524]},{"name":"Event_StackOverflow","features":[524]},{"name":"FAIL_AccessViolation","features":[524]},{"name":"FAIL_CodeContract","features":[524]},{"name":"FAIL_CriticalResource","features":[524]},{"name":"FAIL_FatalRuntime","features":[524]},{"name":"FAIL_NonCriticalResource","features":[524]},{"name":"FAIL_OrphanedLock","features":[524]},{"name":"FAIL_StackOverflow","features":[524]},{"name":"FExecuteInAppDomainCallback","features":[524]},{"name":"FLockClrVersionCallback","features":[524]},{"name":"GetCLRIdentityManager","features":[524]},{"name":"GetCORRequiredVersion","features":[524]},{"name":"GetCORSystemDirectory","features":[524]},{"name":"GetCORVersion","features":[524]},{"name":"GetFileVersion","features":[524]},{"name":"GetRealProcAddress","features":[524]},{"name":"GetRequestedRuntimeInfo","features":[524]},{"name":"GetRequestedRuntimeVersion","features":[524]},{"name":"GetRequestedRuntimeVersionForCLSID","features":[524]},{"name":"GetVersionFromProcess","features":[303,524]},{"name":"HOST_APPLICATION_BINDING_POLICY","features":[524]},{"name":"HOST_BINDING_POLICY_MODIFY_CHAIN","features":[524]},{"name":"HOST_BINDING_POLICY_MODIFY_DEFAULT","features":[524]},{"name":"HOST_BINDING_POLICY_MODIFY_MAX","features":[524]},{"name":"HOST_BINDING_POLICY_MODIFY_REMOVE","features":[524]},{"name":"HOST_TYPE","features":[524]},{"name":"HOST_TYPE_APPLAUNCH","features":[524]},{"name":"HOST_TYPE_CORFLAG","features":[524]},{"name":"HOST_TYPE_DEFAULT","features":[524]},{"name":"IActionOnCLREvent","features":[524]},{"name":"IApartmentCallback","features":[524]},{"name":"IAppDomainBinding","features":[524]},{"name":"ICLRAppDomainResourceMonitor","features":[524]},{"name":"ICLRAssemblyIdentityManager","features":[524]},{"name":"ICLRAssemblyReferenceList","features":[524]},{"name":"ICLRControl","features":[524]},{"name":"ICLRDebugManager","features":[524]},{"name":"ICLRDebugging","features":[524]},{"name":"ICLRDebuggingLibraryProvider","features":[524]},{"name":"ICLRDomainManager","features":[524]},{"name":"ICLRErrorReportingManager","features":[524]},{"name":"ICLRGCManager","features":[524]},{"name":"ICLRGCManager2","features":[524]},{"name":"ICLRHostBindingPolicyManager","features":[524]},{"name":"ICLRHostProtectionManager","features":[524]},{"name":"ICLRIoCompletionManager","features":[524]},{"name":"ICLRMemoryNotificationCallback","features":[524]},{"name":"ICLRMetaHost","features":[524]},{"name":"ICLRMetaHostPolicy","features":[524]},{"name":"ICLROnEventManager","features":[524]},{"name":"ICLRPolicyManager","features":[524]},{"name":"ICLRProbingAssemblyEnum","features":[524]},{"name":"ICLRProfiling","features":[524]},{"name":"ICLRReferenceAssemblyEnum","features":[524]},{"name":"ICLRRuntimeHost","features":[524]},{"name":"ICLRRuntimeInfo","features":[524]},{"name":"ICLRStrongName","features":[524]},{"name":"ICLRStrongName2","features":[524]},{"name":"ICLRStrongName3","features":[524]},{"name":"ICLRSyncManager","features":[524]},{"name":"ICLRTask","features":[524]},{"name":"ICLRTask2","features":[524]},{"name":"ICLRTaskManager","features":[524]},{"name":"ICatalogServices","features":[524]},{"name":"ICorConfiguration","features":[524]},{"name":"ICorRuntimeHost","features":[524]},{"name":"ICorThreadpool","features":[524]},{"name":"IDebuggerInfo","features":[524]},{"name":"IDebuggerThreadControl","features":[524]},{"name":"IGCHost","features":[524]},{"name":"IGCHost2","features":[524]},{"name":"IGCHostControl","features":[524]},{"name":"IGCThreadControl","features":[524]},{"name":"IHostAssemblyManager","features":[524]},{"name":"IHostAssemblyStore","features":[524]},{"name":"IHostAutoEvent","features":[524]},{"name":"IHostControl","features":[524]},{"name":"IHostCrst","features":[524]},{"name":"IHostGCManager","features":[524]},{"name":"IHostIoCompletionManager","features":[524]},{"name":"IHostMalloc","features":[524]},{"name":"IHostManualEvent","features":[524]},{"name":"IHostMemoryManager","features":[524]},{"name":"IHostPolicyManager","features":[524]},{"name":"IHostSecurityContext","features":[524]},{"name":"IHostSecurityManager","features":[524]},{"name":"IHostSemaphore","features":[524]},{"name":"IHostSyncManager","features":[524]},{"name":"IHostTask","features":[524]},{"name":"IHostTaskManager","features":[524]},{"name":"IHostThreadpoolManager","features":[524]},{"name":"IManagedObject","features":[524]},{"name":"IObjectHandle","features":[524]},{"name":"ITypeName","features":[524]},{"name":"ITypeNameBuilder","features":[524]},{"name":"ITypeNameFactory","features":[524]},{"name":"InvalidBucketParamIndex","features":[524]},{"name":"LIBID_mscoree","features":[524]},{"name":"LoadLibraryShim","features":[303,524]},{"name":"LoadStringRC","features":[524]},{"name":"LoadStringRCEx","features":[524]},{"name":"LockClrVersion","features":[524]},{"name":"MALLOC_EXECUTABLE","features":[524]},{"name":"MALLOC_THREADSAFE","features":[524]},{"name":"MALLOC_TYPE","features":[524]},{"name":"MDAInfo","features":[524]},{"name":"METAHOST_CONFIG_FLAGS","features":[524]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_FALSE","features":[524]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_MASK","features":[524]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_TRUE","features":[524]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_UNSET","features":[524]},{"name":"METAHOST_POLICY_APPLY_UPGRADE_POLICY","features":[524]},{"name":"METAHOST_POLICY_EMULATE_EXE_LAUNCH","features":[524]},{"name":"METAHOST_POLICY_ENSURE_SKU_SUPPORTED","features":[524]},{"name":"METAHOST_POLICY_FLAGS","features":[524]},{"name":"METAHOST_POLICY_HIGHCOMPAT","features":[524]},{"name":"METAHOST_POLICY_IGNORE_ERROR_MODE","features":[524]},{"name":"METAHOST_POLICY_SHOW_ERROR_DIALOG","features":[524]},{"name":"METAHOST_POLICY_USE_PROCESS_IMAGE_PATH","features":[524]},{"name":"MaxClrEvent","features":[524]},{"name":"MaxClrFailure","features":[524]},{"name":"MaxClrOperation","features":[524]},{"name":"MaxPolicyAction","features":[524]},{"name":"ModuleBindInfo","features":[524]},{"name":"OPR_AppDomainRudeUnload","features":[524]},{"name":"OPR_AppDomainUnload","features":[524]},{"name":"OPR_FinalizerRun","features":[524]},{"name":"OPR_ProcessExit","features":[524]},{"name":"OPR_ThreadAbort","features":[524]},{"name":"OPR_ThreadRudeAbortInCriticalRegion","features":[524]},{"name":"OPR_ThreadRudeAbortInNonCriticalRegion","features":[524]},{"name":"PTLS_CALLBACK_FUNCTION","features":[524]},{"name":"Parameter1","features":[524]},{"name":"Parameter2","features":[524]},{"name":"Parameter3","features":[524]},{"name":"Parameter4","features":[524]},{"name":"Parameter5","features":[524]},{"name":"Parameter6","features":[524]},{"name":"Parameter7","features":[524]},{"name":"Parameter8","features":[524]},{"name":"Parameter9","features":[524]},{"name":"RUNTIME_INFO_DONT_RETURN_DIRECTORY","features":[524]},{"name":"RUNTIME_INFO_DONT_RETURN_VERSION","features":[524]},{"name":"RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG","features":[524]},{"name":"RUNTIME_INFO_FLAGS","features":[524]},{"name":"RUNTIME_INFO_IGNORE_ERROR_MODE","features":[524]},{"name":"RUNTIME_INFO_REQUEST_AMD64","features":[524]},{"name":"RUNTIME_INFO_REQUEST_ARM64","features":[524]},{"name":"RUNTIME_INFO_REQUEST_IA64","features":[524]},{"name":"RUNTIME_INFO_REQUEST_X86","features":[524]},{"name":"RUNTIME_INFO_UPGRADE_VERSION","features":[524]},{"name":"RunDll32ShimW","features":[303,524]},{"name":"RuntimeLoadedCallbackFnPtr","features":[524]},{"name":"SO_ClrEngine","features":[524]},{"name":"SO_Managed","features":[524]},{"name":"SO_Other","features":[524]},{"name":"STARTUP_ALWAYSFLOW_IMPERSONATION","features":[524]},{"name":"STARTUP_ARM","features":[524]},{"name":"STARTUP_CONCURRENT_GC","features":[524]},{"name":"STARTUP_DISABLE_COMMITTHREADSTACK","features":[524]},{"name":"STARTUP_ETW","features":[524]},{"name":"STARTUP_FLAGS","features":[524]},{"name":"STARTUP_HOARD_GC_VM","features":[524]},{"name":"STARTUP_LEGACY_IMPERSONATION","features":[524]},{"name":"STARTUP_LOADER_OPTIMIZATION_MASK","features":[524]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN","features":[524]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST","features":[524]},{"name":"STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN","features":[524]},{"name":"STARTUP_LOADER_SAFEMODE","features":[524]},{"name":"STARTUP_LOADER_SETPREFERENCE","features":[524]},{"name":"STARTUP_SERVER_GC","features":[524]},{"name":"STARTUP_SINGLE_VERSION_HOSTING_INTERFACE","features":[524]},{"name":"STARTUP_TRIM_GC_COMMIT","features":[524]},{"name":"StackOverflowInfo","features":[303,524,331,309]},{"name":"StackOverflowType","features":[524]},{"name":"TT_ADUNLOAD","features":[524]},{"name":"TT_DEBUGGERHELPER","features":[524]},{"name":"TT_FINALIZER","features":[524]},{"name":"TT_GC","features":[524]},{"name":"TT_THREADPOOL_GATE","features":[524]},{"name":"TT_THREADPOOL_IOCOMPLETION","features":[524]},{"name":"TT_THREADPOOL_TIMER","features":[524]},{"name":"TT_THREADPOOL_WAIT","features":[524]},{"name":"TT_THREADPOOL_WORKER","features":[524]},{"name":"TT_UNKNOWN","features":[524]},{"name":"TT_USER","features":[524]},{"name":"TypeNameFactory","features":[524]},{"name":"WAIT_ALERTABLE","features":[524]},{"name":"WAIT_MSGPUMP","features":[524]},{"name":"WAIT_NOTINDEADLOCK","features":[524]},{"name":"WAIT_OPTION","features":[524]},{"name":"eAbortThread","features":[524]},{"name":"eAll","features":[524]},{"name":"eAppDomainCritical","features":[524]},{"name":"eCurrentContext","features":[524]},{"name":"eDisableRuntime","features":[524]},{"name":"eExitProcess","features":[524]},{"name":"eExternalProcessMgmt","features":[524]},{"name":"eExternalThreading","features":[524]},{"name":"eFastExitProcess","features":[524]},{"name":"eHostDeterminedPolicy","features":[524]},{"name":"eInitializeNewDomainFlags_NoSecurityChanges","features":[524]},{"name":"eInitializeNewDomainFlags_None","features":[524]},{"name":"eMayLeakOnAbort","features":[524]},{"name":"eMemoryAvailableHigh","features":[524]},{"name":"eMemoryAvailableLow","features":[524]},{"name":"eMemoryAvailableNeutral","features":[524]},{"name":"eNoAction","features":[524]},{"name":"eNoChecks","features":[524]},{"name":"ePolicyLevelAdmin","features":[524]},{"name":"ePolicyLevelApp","features":[524]},{"name":"ePolicyLevelHost","features":[524]},{"name":"ePolicyLevelNone","features":[524]},{"name":"ePolicyLevelPublisher","features":[524]},{"name":"ePolicyLevelRetargetable","features":[524]},{"name":"ePolicyPortability","features":[524]},{"name":"ePolicyUnifiedToCLR","features":[524]},{"name":"eProcessCritical","features":[524]},{"name":"eRestrictedContext","features":[524]},{"name":"eRudeAbortThread","features":[524]},{"name":"eRudeExitProcess","features":[524]},{"name":"eRudeUnloadAppDomain","features":[524]},{"name":"eRuntimeDeterminedPolicy","features":[524]},{"name":"eSecurityInfrastructure","features":[524]},{"name":"eSelfAffectingProcessMgmt","features":[524]},{"name":"eSelfAffectingThreading","features":[524]},{"name":"eSharedState","features":[524]},{"name":"eSymbolReadingAlways","features":[524]},{"name":"eSymbolReadingFullTrustOnly","features":[524]},{"name":"eSymbolReadingNever","features":[524]},{"name":"eSynchronization","features":[524]},{"name":"eTaskCritical","features":[524]},{"name":"eThrowException","features":[524]},{"name":"eUI","features":[524]},{"name":"eUnloadAppDomain","features":[524]}],"534":[{"name":"ADVANCED_FEATURE_FLAGS","features":[354]},{"name":"ADVF","features":[354]},{"name":"ADVFCACHE_FORCEBUILTIN","features":[354]},{"name":"ADVFCACHE_NOHANDLER","features":[354]},{"name":"ADVFCACHE_ONSAVE","features":[354]},{"name":"ADVF_DATAONSTOP","features":[354]},{"name":"ADVF_NODATA","features":[354]},{"name":"ADVF_ONLYONCE","features":[354]},{"name":"ADVF_PRIMEFIRST","features":[354]},{"name":"APPIDREGFLAGS_AAA_NO_IMPLICIT_ACTIVATE_AS_IU","features":[354]},{"name":"APPIDREGFLAGS_ACTIVATE_IUSERVER_INDESKTOP","features":[354]},{"name":"APPIDREGFLAGS_ISSUE_ACTIVATION_RPC_AT_IDENTIFY","features":[354]},{"name":"APPIDREGFLAGS_IUSERVER_ACTIVATE_IN_CLIENT_SESSION_ONLY","features":[354]},{"name":"APPIDREGFLAGS_IUSERVER_SELF_SID_IN_LAUNCH_PERMISSION","features":[354]},{"name":"APPIDREGFLAGS_IUSERVER_UNMODIFIED_LOGON_TOKEN","features":[354]},{"name":"APPIDREGFLAGS_RESERVED1","features":[354]},{"name":"APPIDREGFLAGS_RESERVED2","features":[354]},{"name":"APPIDREGFLAGS_RESERVED3","features":[354]},{"name":"APPIDREGFLAGS_RESERVED4","features":[354]},{"name":"APPIDREGFLAGS_RESERVED5","features":[354]},{"name":"APPIDREGFLAGS_RESERVED7","features":[354]},{"name":"APPIDREGFLAGS_RESERVED8","features":[354]},{"name":"APPIDREGFLAGS_RESERVED9","features":[354]},{"name":"APPIDREGFLAGS_SECURE_SERVER_PROCESS_SD_AND_BIND","features":[354]},{"name":"APTTYPE","features":[354]},{"name":"APTTYPEQUALIFIER","features":[354]},{"name":"APTTYPEQUALIFIER_APPLICATION_STA","features":[354]},{"name":"APTTYPEQUALIFIER_IMPLICIT_MTA","features":[354]},{"name":"APTTYPEQUALIFIER_NA_ON_IMPLICIT_MTA","features":[354]},{"name":"APTTYPEQUALIFIER_NA_ON_MAINSTA","features":[354]},{"name":"APTTYPEQUALIFIER_NA_ON_MTA","features":[354]},{"name":"APTTYPEQUALIFIER_NA_ON_STA","features":[354]},{"name":"APTTYPEQUALIFIER_NONE","features":[354]},{"name":"APTTYPEQUALIFIER_RESERVED_1","features":[354]},{"name":"APTTYPE_CURRENT","features":[354]},{"name":"APTTYPE_MAINSTA","features":[354]},{"name":"APTTYPE_MTA","features":[354]},{"name":"APTTYPE_NA","features":[354]},{"name":"APTTYPE_STA","features":[354]},{"name":"ASYNC_MODE_COMPATIBILITY","features":[354]},{"name":"ASYNC_MODE_DEFAULT","features":[354]},{"name":"AUTHENTICATEINFO","features":[354]},{"name":"ApplicationType","features":[354]},{"name":"AsyncIAdviseSink","features":[354]},{"name":"AsyncIAdviseSink2","features":[354]},{"name":"AsyncIMultiQI","features":[354]},{"name":"AsyncIPipeByte","features":[354]},{"name":"AsyncIPipeDouble","features":[354]},{"name":"AsyncIPipeLong","features":[354]},{"name":"AsyncIUnknown","features":[354]},{"name":"BINDINFO","features":[303,314,306,427]},{"name":"BINDINFOF","features":[354]},{"name":"BINDINFOF_URLENCODEDEXTRAINFO","features":[354]},{"name":"BINDINFOF_URLENCODESTGMEDDATA","features":[354]},{"name":"BINDPTR","features":[354,413,378]},{"name":"BIND_FLAGS","features":[354]},{"name":"BIND_JUSTTESTEXISTENCE","features":[354]},{"name":"BIND_MAYBOTHERUSER","features":[354]},{"name":"BIND_OPTS","features":[354]},{"name":"BIND_OPTS2","features":[354]},{"name":"BIND_OPTS3","features":[303,354]},{"name":"BLOB","features":[354]},{"name":"BYTE_BLOB","features":[354]},{"name":"BYTE_SIZEDARR","features":[354]},{"name":"BindMoniker","features":[354]},{"name":"CALLCONV","features":[354]},{"name":"CALLTYPE","features":[354]},{"name":"CALLTYPE_ASYNC","features":[354]},{"name":"CALLTYPE_ASYNC_CALLPENDING","features":[354]},{"name":"CALLTYPE_NESTED","features":[354]},{"name":"CALLTYPE_TOPLEVEL","features":[354]},{"name":"CALLTYPE_TOPLEVEL_CALLPENDING","features":[354]},{"name":"CATEGORYINFO","features":[354]},{"name":"CC_CDECL","features":[354]},{"name":"CC_FASTCALL","features":[354]},{"name":"CC_FPFASTCALL","features":[354]},{"name":"CC_MACPASCAL","features":[354]},{"name":"CC_MAX","features":[354]},{"name":"CC_MPWCDECL","features":[354]},{"name":"CC_MPWPASCAL","features":[354]},{"name":"CC_MSCPASCAL","features":[354]},{"name":"CC_PASCAL","features":[354]},{"name":"CC_STDCALL","features":[354]},{"name":"CC_SYSCALL","features":[354]},{"name":"CLSCTX","features":[354]},{"name":"CLSCTX_ACTIVATE_32_BIT_SERVER","features":[354]},{"name":"CLSCTX_ACTIVATE_64_BIT_SERVER","features":[354]},{"name":"CLSCTX_ACTIVATE_AAA_AS_IU","features":[354]},{"name":"CLSCTX_ACTIVATE_ARM32_SERVER","features":[354]},{"name":"CLSCTX_ACTIVATE_X86_SERVER","features":[354]},{"name":"CLSCTX_ALL","features":[354]},{"name":"CLSCTX_ALLOW_LOWER_TRUST_REGISTRATION","features":[354]},{"name":"CLSCTX_APPCONTAINER","features":[354]},{"name":"CLSCTX_DISABLE_AAA","features":[354]},{"name":"CLSCTX_ENABLE_AAA","features":[354]},{"name":"CLSCTX_ENABLE_CLOAKING","features":[354]},{"name":"CLSCTX_ENABLE_CODE_DOWNLOAD","features":[354]},{"name":"CLSCTX_FROM_DEFAULT_CONTEXT","features":[354]},{"name":"CLSCTX_INPROC_HANDLER","features":[354]},{"name":"CLSCTX_INPROC_HANDLER16","features":[354]},{"name":"CLSCTX_INPROC_SERVER","features":[354]},{"name":"CLSCTX_INPROC_SERVER16","features":[354]},{"name":"CLSCTX_LOCAL_SERVER","features":[354]},{"name":"CLSCTX_NO_CODE_DOWNLOAD","features":[354]},{"name":"CLSCTX_NO_CUSTOM_MARSHAL","features":[354]},{"name":"CLSCTX_NO_FAILURE_LOG","features":[354]},{"name":"CLSCTX_PS_DLL","features":[354]},{"name":"CLSCTX_REMOTE_SERVER","features":[354]},{"name":"CLSCTX_RESERVED1","features":[354]},{"name":"CLSCTX_RESERVED2","features":[354]},{"name":"CLSCTX_RESERVED3","features":[354]},{"name":"CLSCTX_RESERVED4","features":[354]},{"name":"CLSCTX_RESERVED5","features":[354]},{"name":"CLSCTX_RESERVED6","features":[354]},{"name":"CLSCTX_SERVER","features":[354]},{"name":"CLSIDFromProgID","features":[354]},{"name":"CLSIDFromProgIDEx","features":[354]},{"name":"CLSIDFromString","features":[354]},{"name":"COAUTHIDENTITY","features":[354]},{"name":"COAUTHINFO","features":[354]},{"name":"COINIT","features":[354]},{"name":"COINITBASE","features":[354]},{"name":"COINITBASE_MULTITHREADED","features":[354]},{"name":"COINIT_APARTMENTTHREADED","features":[354]},{"name":"COINIT_DISABLE_OLE1DDE","features":[354]},{"name":"COINIT_MULTITHREADED","features":[354]},{"name":"COINIT_SPEED_OVER_MEMORY","features":[354]},{"name":"COLE_DEFAULT_AUTHINFO","features":[354]},{"name":"COLE_DEFAULT_PRINCIPAL","features":[354]},{"name":"COMBND_RESERVED1","features":[354]},{"name":"COMBND_RESERVED2","features":[354]},{"name":"COMBND_RESERVED3","features":[354]},{"name":"COMBND_RESERVED4","features":[354]},{"name":"COMBND_RPCTIMEOUT","features":[354]},{"name":"COMBND_SERVER_LOCALITY","features":[354]},{"name":"COMGLB_APPID","features":[354]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE","features":[354]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_ANY","features":[354]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_FATAL","features":[354]},{"name":"COMGLB_EXCEPTION_HANDLE","features":[354]},{"name":"COMGLB_EXCEPTION_HANDLING","features":[354]},{"name":"COMGLB_FAST_RUNDOWN","features":[354]},{"name":"COMGLB_PROPERTIES_RESERVED1","features":[354]},{"name":"COMGLB_PROPERTIES_RESERVED2","features":[354]},{"name":"COMGLB_PROPERTIES_RESERVED3","features":[354]},{"name":"COMGLB_RESERVED1","features":[354]},{"name":"COMGLB_RESERVED2","features":[354]},{"name":"COMGLB_RESERVED3","features":[354]},{"name":"COMGLB_RESERVED4","features":[354]},{"name":"COMGLB_RESERVED5","features":[354]},{"name":"COMGLB_RESERVED6","features":[354]},{"name":"COMGLB_RO_SETTINGS","features":[354]},{"name":"COMGLB_RPC_THREADPOOL_SETTING","features":[354]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_DEFAULT_POOL","features":[354]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_PRIVATE_POOL","features":[354]},{"name":"COMGLB_STA_MODALLOOP_REMOVE_TOUCH_MESSAGES","features":[354]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_DONOT_REMOVE_INPUT_MESSAGES","features":[354]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REMOVE_INPUT_MESSAGES","features":[354]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REORDER_POINTER_MESSAGES","features":[354]},{"name":"COMGLB_UNMARSHALING_POLICY","features":[354]},{"name":"COMGLB_UNMARSHALING_POLICY_HYBRID","features":[354]},{"name":"COMGLB_UNMARSHALING_POLICY_NORMAL","features":[354]},{"name":"COMGLB_UNMARSHALING_POLICY_STRONG","features":[354]},{"name":"COMSD","features":[354]},{"name":"COM_RIGHTS_ACTIVATE_LOCAL","features":[354]},{"name":"COM_RIGHTS_ACTIVATE_REMOTE","features":[354]},{"name":"COM_RIGHTS_EXECUTE","features":[354]},{"name":"COM_RIGHTS_EXECUTE_LOCAL","features":[354]},{"name":"COM_RIGHTS_EXECUTE_REMOTE","features":[354]},{"name":"COM_RIGHTS_RESERVED1","features":[354]},{"name":"COM_RIGHTS_RESERVED2","features":[354]},{"name":"CONNECTDATA","features":[354]},{"name":"COSERVERINFO","features":[354]},{"name":"COWAIT_ALERTABLE","features":[354]},{"name":"COWAIT_DEFAULT","features":[354]},{"name":"COWAIT_DISPATCH_CALLS","features":[354]},{"name":"COWAIT_DISPATCH_WINDOW_MESSAGES","features":[354]},{"name":"COWAIT_FLAGS","features":[354]},{"name":"COWAIT_INPUTAVAILABLE","features":[354]},{"name":"COWAIT_WAITALL","features":[354]},{"name":"CO_DEVICE_CATALOG_COOKIE","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTES","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_1","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_10","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_11","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_12","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_13","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_14","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_15","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_16","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_17","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_18","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_2","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_3","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_4","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_5","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_6","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_7","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_8","features":[354]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_9","features":[354]},{"name":"CO_MARSHALING_SOURCE_IS_APP_CONTAINER","features":[354]},{"name":"CO_MTA_USAGE_COOKIE","features":[354]},{"name":"CSPLATFORM","features":[354]},{"name":"CUSTDATA","features":[354]},{"name":"CUSTDATAITEM","features":[354]},{"name":"CWMO_DEFAULT","features":[354]},{"name":"CWMO_DISPATCH_CALLS","features":[354]},{"name":"CWMO_DISPATCH_WINDOW_MESSAGES","features":[354]},{"name":"CWMO_FLAGS","features":[354]},{"name":"CWMO_MAX_HANDLES","features":[354]},{"name":"CY","features":[354]},{"name":"CoAddRefServerProcess","features":[354]},{"name":"CoAllowSetForegroundWindow","features":[354]},{"name":"CoAllowUnmarshalerCLSID","features":[354]},{"name":"CoBuildVersion","features":[354]},{"name":"CoCancelCall","features":[354]},{"name":"CoCopyProxy","features":[354]},{"name":"CoCreateFreeThreadedMarshaler","features":[354]},{"name":"CoCreateGuid","features":[354]},{"name":"CoCreateInstance","features":[354]},{"name":"CoCreateInstanceEx","features":[354]},{"name":"CoCreateInstanceFromApp","features":[354]},{"name":"CoDecrementMTAUsage","features":[354]},{"name":"CoDisableCallCancellation","features":[354]},{"name":"CoDisconnectContext","features":[354]},{"name":"CoDisconnectObject","features":[354]},{"name":"CoDosDateTimeToFileTime","features":[303,354]},{"name":"CoEnableCallCancellation","features":[354]},{"name":"CoFileTimeNow","features":[303,354]},{"name":"CoFileTimeToDosDateTime","features":[303,354]},{"name":"CoFreeAllLibraries","features":[354]},{"name":"CoFreeLibrary","features":[303,354]},{"name":"CoFreeUnusedLibraries","features":[354]},{"name":"CoFreeUnusedLibrariesEx","features":[354]},{"name":"CoGetApartmentType","features":[354]},{"name":"CoGetCallContext","features":[354]},{"name":"CoGetCallerTID","features":[354]},{"name":"CoGetCancelObject","features":[354]},{"name":"CoGetClassObject","features":[354]},{"name":"CoGetContextToken","features":[354]},{"name":"CoGetCurrentLogicalThreadId","features":[354]},{"name":"CoGetCurrentProcess","features":[354]},{"name":"CoGetMalloc","features":[354]},{"name":"CoGetObject","features":[354]},{"name":"CoGetObjectContext","features":[354]},{"name":"CoGetPSClsid","features":[354]},{"name":"CoGetSystemSecurityPermissions","features":[306,354]},{"name":"CoGetTreatAsClass","features":[354]},{"name":"CoImpersonateClient","features":[354]},{"name":"CoIncrementMTAUsage","features":[354]},{"name":"CoInitialize","features":[354]},{"name":"CoInitializeEx","features":[354]},{"name":"CoInitializeSecurity","features":[306,354]},{"name":"CoInstall","features":[354]},{"name":"CoInvalidateRemoteMachineBindings","features":[354]},{"name":"CoIsHandlerConnected","features":[303,354]},{"name":"CoIsOle1Class","features":[303,354]},{"name":"CoLoadLibrary","features":[303,354]},{"name":"CoLockObjectExternal","features":[303,354]},{"name":"CoQueryAuthenticationServices","features":[354]},{"name":"CoQueryClientBlanket","features":[354]},{"name":"CoQueryProxyBlanket","features":[354]},{"name":"CoRegisterActivationFilter","features":[354]},{"name":"CoRegisterChannelHook","features":[354]},{"name":"CoRegisterClassObject","features":[354]},{"name":"CoRegisterDeviceCatalog","features":[354]},{"name":"CoRegisterInitializeSpy","features":[354]},{"name":"CoRegisterMallocSpy","features":[354]},{"name":"CoRegisterPSClsid","features":[354]},{"name":"CoRegisterSurrogate","features":[354]},{"name":"CoReleaseServerProcess","features":[354]},{"name":"CoResumeClassObjects","features":[354]},{"name":"CoRevertToSelf","features":[354]},{"name":"CoRevokeClassObject","features":[354]},{"name":"CoRevokeDeviceCatalog","features":[354]},{"name":"CoRevokeInitializeSpy","features":[354]},{"name":"CoRevokeMallocSpy","features":[354]},{"name":"CoSetCancelObject","features":[354]},{"name":"CoSetProxyBlanket","features":[354]},{"name":"CoSuspendClassObjects","features":[354]},{"name":"CoSwitchCallContext","features":[354]},{"name":"CoTaskMemAlloc","features":[354]},{"name":"CoTaskMemFree","features":[354]},{"name":"CoTaskMemRealloc","features":[354]},{"name":"CoTestCancel","features":[354]},{"name":"CoTreatAsClass","features":[354]},{"name":"CoUninitialize","features":[354]},{"name":"CoWaitForMultipleHandles","features":[303,354]},{"name":"CoWaitForMultipleObjects","features":[303,354]},{"name":"ComCallData","features":[354]},{"name":"ContextProperty","features":[354]},{"name":"CreateAntiMoniker","features":[354]},{"name":"CreateBindCtx","features":[354]},{"name":"CreateClassMoniker","features":[354]},{"name":"CreateDataAdviseHolder","features":[354]},{"name":"CreateDataCache","features":[354]},{"name":"CreateFileMoniker","features":[354]},{"name":"CreateGenericComposite","features":[354]},{"name":"CreateIUriBuilder","features":[354]},{"name":"CreateItemMoniker","features":[354]},{"name":"CreateObjrefMoniker","features":[354]},{"name":"CreatePointerMoniker","features":[354]},{"name":"CreateStdProgressIndicator","features":[303,354]},{"name":"CreateUri","features":[354]},{"name":"CreateUriFromMultiByteString","features":[354]},{"name":"CreateUriWithFragment","features":[354]},{"name":"DATADIR","features":[354]},{"name":"DATADIR_GET","features":[354]},{"name":"DATADIR_SET","features":[354]},{"name":"DCOMSCM_ACTIVATION_DISALLOW_UNSECURE_CALL","features":[354]},{"name":"DCOMSCM_ACTIVATION_USE_ALL_AUTHNSERVICES","features":[354]},{"name":"DCOMSCM_PING_DISALLOW_UNSECURE_CALL","features":[354]},{"name":"DCOMSCM_PING_USE_MID_AUTHNSERVICE","features":[354]},{"name":"DCOMSCM_RESOLVE_DISALLOW_UNSECURE_CALL","features":[354]},{"name":"DCOMSCM_RESOLVE_USE_ALL_AUTHNSERVICES","features":[354]},{"name":"DCOM_CALL_CANCELED","features":[354]},{"name":"DCOM_CALL_COMPLETE","features":[354]},{"name":"DCOM_CALL_STATE","features":[354]},{"name":"DCOM_NONE","features":[354]},{"name":"DESCKIND","features":[354]},{"name":"DESCKIND_FUNCDESC","features":[354]},{"name":"DESCKIND_IMPLICITAPPOBJ","features":[354]},{"name":"DESCKIND_MAX","features":[354]},{"name":"DESCKIND_NONE","features":[354]},{"name":"DESCKIND_TYPECOMP","features":[354]},{"name":"DESCKIND_VARDESC","features":[354]},{"name":"DISPATCH_FLAGS","features":[354]},{"name":"DISPATCH_METHOD","features":[354]},{"name":"DISPATCH_PROPERTYGET","features":[354]},{"name":"DISPATCH_PROPERTYPUT","features":[354]},{"name":"DISPATCH_PROPERTYPUTREF","features":[354]},{"name":"DISPPARAMS","features":[354]},{"name":"DMUS_ERRBASE","features":[354]},{"name":"DVASPECT","features":[354]},{"name":"DVASPECT_CONTENT","features":[354]},{"name":"DVASPECT_DOCPRINT","features":[354]},{"name":"DVASPECT_ICON","features":[354]},{"name":"DVASPECT_OPAQUE","features":[354]},{"name":"DVASPECT_THUMBNAIL","features":[354]},{"name":"DVASPECT_TRANSPARENT","features":[354]},{"name":"DVTARGETDEVICE","features":[354]},{"name":"DWORD_BLOB","features":[354]},{"name":"DWORD_SIZEDARR","features":[354]},{"name":"DcomChannelSetHResult","features":[354]},{"name":"ELEMDESC","features":[354,413,378]},{"name":"EOAC_ACCESS_CONTROL","features":[354]},{"name":"EOAC_ANY_AUTHORITY","features":[354]},{"name":"EOAC_APPID","features":[354]},{"name":"EOAC_AUTO_IMPERSONATE","features":[354]},{"name":"EOAC_DEFAULT","features":[354]},{"name":"EOAC_DISABLE_AAA","features":[354]},{"name":"EOAC_DYNAMIC","features":[354]},{"name":"EOAC_DYNAMIC_CLOAKING","features":[354]},{"name":"EOAC_MAKE_FULLSIC","features":[354]},{"name":"EOAC_MUTUAL_AUTH","features":[354]},{"name":"EOAC_NONE","features":[354]},{"name":"EOAC_NO_CUSTOM_MARSHAL","features":[354]},{"name":"EOAC_REQUIRE_FULLSIC","features":[354]},{"name":"EOAC_RESERVED1","features":[354]},{"name":"EOAC_SECURE_REFS","features":[354]},{"name":"EOAC_STATIC_CLOAKING","features":[354]},{"name":"EOLE_AUTHENTICATION_CAPABILITIES","features":[354]},{"name":"EXCEPINFO","features":[354]},{"name":"EXTCONN","features":[354]},{"name":"EXTCONN_CALLABLE","features":[354]},{"name":"EXTCONN_STRONG","features":[354]},{"name":"EXTCONN_WEAK","features":[354]},{"name":"FADF_AUTO","features":[354]},{"name":"FADF_BSTR","features":[354]},{"name":"FADF_DISPATCH","features":[354]},{"name":"FADF_EMBEDDED","features":[354]},{"name":"FADF_FIXEDSIZE","features":[354]},{"name":"FADF_HAVEIID","features":[354]},{"name":"FADF_HAVEVARTYPE","features":[354]},{"name":"FADF_RECORD","features":[354]},{"name":"FADF_RESERVED","features":[354]},{"name":"FADF_STATIC","features":[354]},{"name":"FADF_UNKNOWN","features":[354]},{"name":"FADF_VARIANT","features":[354]},{"name":"FLAGGED_BYTE_BLOB","features":[354]},{"name":"FLAGGED_WORD_BLOB","features":[354]},{"name":"FLAG_STGMEDIUM","features":[303,314,427]},{"name":"FORMATETC","features":[354]},{"name":"FUNCDESC","features":[354,413,378]},{"name":"FUNCFLAGS","features":[354]},{"name":"FUNCFLAG_FBINDABLE","features":[354]},{"name":"FUNCFLAG_FDEFAULTBIND","features":[354]},{"name":"FUNCFLAG_FDEFAULTCOLLELEM","features":[354]},{"name":"FUNCFLAG_FDISPLAYBIND","features":[354]},{"name":"FUNCFLAG_FHIDDEN","features":[354]},{"name":"FUNCFLAG_FIMMEDIATEBIND","features":[354]},{"name":"FUNCFLAG_FNONBROWSABLE","features":[354]},{"name":"FUNCFLAG_FREPLACEABLE","features":[354]},{"name":"FUNCFLAG_FREQUESTEDIT","features":[354]},{"name":"FUNCFLAG_FRESTRICTED","features":[354]},{"name":"FUNCFLAG_FSOURCE","features":[354]},{"name":"FUNCFLAG_FUIDEFAULT","features":[354]},{"name":"FUNCFLAG_FUSESGETLASTERROR","features":[354]},{"name":"FUNCKIND","features":[354]},{"name":"FUNC_DISPATCH","features":[354]},{"name":"FUNC_NONVIRTUAL","features":[354]},{"name":"FUNC_PUREVIRTUAL","features":[354]},{"name":"FUNC_STATIC","features":[354]},{"name":"FUNC_VIRTUAL","features":[354]},{"name":"ForcedShutdown","features":[354]},{"name":"GDI_OBJECT","features":[314,354,337]},{"name":"GLOBALOPT_EH_VALUES","features":[354]},{"name":"GLOBALOPT_PROPERTIES","features":[354]},{"name":"GLOBALOPT_RO_FLAGS","features":[354]},{"name":"GLOBALOPT_RPCTP_VALUES","features":[354]},{"name":"GLOBALOPT_UNMARSHALING_POLICY_VALUES","features":[354]},{"name":"GetClassFile","features":[354]},{"name":"GetErrorInfo","features":[354]},{"name":"GetRunningObjectTable","features":[354]},{"name":"HYPER_SIZEDARR","features":[354]},{"name":"IActivationFilter","features":[354]},{"name":"IAddrExclusionControl","features":[354]},{"name":"IAddrTrackingControl","features":[354]},{"name":"IAdviseSink","features":[354]},{"name":"IAdviseSink2","features":[354]},{"name":"IAgileObject","features":[354]},{"name":"IAsyncManager","features":[354]},{"name":"IAsyncRpcChannelBuffer","features":[354]},{"name":"IAuthenticate","features":[354]},{"name":"IAuthenticateEx","features":[354]},{"name":"IBindCtx","features":[354]},{"name":"IBindHost","features":[354]},{"name":"IBindStatusCallback","features":[354]},{"name":"IBindStatusCallbackEx","features":[354]},{"name":"IBinding","features":[354]},{"name":"IBlockingLock","features":[354]},{"name":"ICallFactory","features":[354]},{"name":"ICancelMethodCalls","features":[354]},{"name":"ICatInformation","features":[354]},{"name":"ICatRegister","features":[354]},{"name":"IChannelHook","features":[354]},{"name":"IClassActivator","features":[354]},{"name":"IClassFactory","features":[354]},{"name":"IClientSecurity","features":[354]},{"name":"IComThreadingInfo","features":[354]},{"name":"IConnectionPoint","features":[354]},{"name":"IConnectionPointContainer","features":[354]},{"name":"IContext","features":[354]},{"name":"IContextCallback","features":[354]},{"name":"IDLDESC","features":[354]},{"name":"IDLFLAGS","features":[354]},{"name":"IDLFLAG_FIN","features":[354]},{"name":"IDLFLAG_FLCID","features":[354]},{"name":"IDLFLAG_FOUT","features":[354]},{"name":"IDLFLAG_FRETVAL","features":[354]},{"name":"IDLFLAG_NONE","features":[354]},{"name":"IDataAdviseHolder","features":[354]},{"name":"IDataObject","features":[354]},{"name":"IDispatch","features":[354]},{"name":"IEnumCATEGORYINFO","features":[354]},{"name":"IEnumConnectionPoints","features":[354]},{"name":"IEnumConnections","features":[354]},{"name":"IEnumContextProps","features":[354]},{"name":"IEnumFORMATETC","features":[354]},{"name":"IEnumGUID","features":[354]},{"name":"IEnumMoniker","features":[354]},{"name":"IEnumSTATDATA","features":[354]},{"name":"IEnumString","features":[354]},{"name":"IEnumUnknown","features":[354]},{"name":"IErrorInfo","features":[354]},{"name":"IErrorLog","features":[354]},{"name":"IExternalConnection","features":[354]},{"name":"IFastRundown","features":[354]},{"name":"IForegroundTransfer","features":[354]},{"name":"IGlobalInterfaceTable","features":[354]},{"name":"IGlobalOptions","features":[354]},{"name":"IIDFromString","features":[354]},{"name":"IInitializeSpy","features":[354]},{"name":"IInternalUnknown","features":[354]},{"name":"IMPLTYPEFLAGS","features":[354]},{"name":"IMPLTYPEFLAG_FDEFAULT","features":[354]},{"name":"IMPLTYPEFLAG_FDEFAULTVTABLE","features":[354]},{"name":"IMPLTYPEFLAG_FRESTRICTED","features":[354]},{"name":"IMPLTYPEFLAG_FSOURCE","features":[354]},{"name":"IMachineGlobalObjectTable","features":[354]},{"name":"IMalloc","features":[354]},{"name":"IMallocSpy","features":[354]},{"name":"IMoniker","features":[354]},{"name":"IMultiQI","features":[354]},{"name":"INTERFACEINFO","features":[354]},{"name":"INVOKEKIND","features":[354]},{"name":"INVOKE_FUNC","features":[354]},{"name":"INVOKE_PROPERTYGET","features":[354]},{"name":"INVOKE_PROPERTYPUT","features":[354]},{"name":"INVOKE_PROPERTYPUTREF","features":[354]},{"name":"INoMarshal","features":[354]},{"name":"IOplockStorage","features":[354]},{"name":"IPSFactoryBuffer","features":[354]},{"name":"IPersist","features":[354]},{"name":"IPersistFile","features":[354]},{"name":"IPersistMemory","features":[354]},{"name":"IPersistStream","features":[354]},{"name":"IPersistStreamInit","features":[354]},{"name":"IPipeByte","features":[354]},{"name":"IPipeDouble","features":[354]},{"name":"IPipeLong","features":[354]},{"name":"IProcessInitControl","features":[354]},{"name":"IProcessLock","features":[354]},{"name":"IProgressNotify","features":[354]},{"name":"IROTData","features":[354]},{"name":"IReleaseMarshalBuffers","features":[354]},{"name":"IRpcChannelBuffer","features":[354]},{"name":"IRpcChannelBuffer2","features":[354]},{"name":"IRpcChannelBuffer3","features":[354]},{"name":"IRpcHelper","features":[354]},{"name":"IRpcOptions","features":[354]},{"name":"IRpcProxyBuffer","features":[354]},{"name":"IRpcStubBuffer","features":[354]},{"name":"IRpcSyntaxNegotiate","features":[354]},{"name":"IRunnableObject","features":[354]},{"name":"IRunningObjectTable","features":[354]},{"name":"ISequentialStream","features":[354]},{"name":"IServerSecurity","features":[354]},{"name":"IServiceProvider","features":[354]},{"name":"IStdMarshalInfo","features":[354]},{"name":"IStream","features":[354]},{"name":"ISupportAllowLowerTrustActivation","features":[354]},{"name":"ISupportErrorInfo","features":[354]},{"name":"ISurrogate","features":[354]},{"name":"ISurrogateService","features":[354]},{"name":"ISynchronize","features":[354]},{"name":"ISynchronizeContainer","features":[354]},{"name":"ISynchronizeEvent","features":[354]},{"name":"ISynchronizeHandle","features":[354]},{"name":"ISynchronizeMutex","features":[354]},{"name":"ITimeAndNoticeControl","features":[354]},{"name":"ITypeComp","features":[354]},{"name":"ITypeInfo","features":[354]},{"name":"ITypeInfo2","features":[354]},{"name":"ITypeLib","features":[354]},{"name":"ITypeLib2","features":[354]},{"name":"ITypeLibRegistration","features":[354]},{"name":"ITypeLibRegistrationReader","features":[354]},{"name":"IUnknown","features":[354]},{"name":"IUri","features":[354]},{"name":"IUriBuilder","features":[354]},{"name":"IUrlMon","features":[354]},{"name":"IWaitMultiple","features":[354]},{"name":"IdleShutdown","features":[354]},{"name":"LOCKTYPE","features":[354]},{"name":"LOCK_EXCLUSIVE","features":[354]},{"name":"LOCK_ONLYONCE","features":[354]},{"name":"LOCK_WRITE","features":[354]},{"name":"LPEXCEPFINO_DEFERRED_FILLIN","features":[354]},{"name":"LPFNCANUNLOADNOW","features":[354]},{"name":"LPFNGETCLASSOBJECT","features":[354]},{"name":"LibraryApplication","features":[354]},{"name":"MARSHALINTERFACE_MIN","features":[354]},{"name":"MAXLSN","features":[354]},{"name":"MEMCTX","features":[354]},{"name":"MEMCTX_MACSYSTEM","features":[354]},{"name":"MEMCTX_SAME","features":[354]},{"name":"MEMCTX_SHARED","features":[354]},{"name":"MEMCTX_TASK","features":[354]},{"name":"MEMCTX_UNKNOWN","features":[354]},{"name":"MKRREDUCE","features":[354]},{"name":"MKRREDUCE_ALL","features":[354]},{"name":"MKRREDUCE_ONE","features":[354]},{"name":"MKRREDUCE_THROUGHUSER","features":[354]},{"name":"MKRREDUCE_TOUSER","features":[354]},{"name":"MKSYS","features":[354]},{"name":"MKSYS_ANTIMONIKER","features":[354]},{"name":"MKSYS_CLASSMONIKER","features":[354]},{"name":"MKSYS_FILEMONIKER","features":[354]},{"name":"MKSYS_GENERICCOMPOSITE","features":[354]},{"name":"MKSYS_ITEMMONIKER","features":[354]},{"name":"MKSYS_LUAMONIKER","features":[354]},{"name":"MKSYS_NONE","features":[354]},{"name":"MKSYS_OBJREFMONIKER","features":[354]},{"name":"MKSYS_POINTERMONIKER","features":[354]},{"name":"MKSYS_SESSIONMONIKER","features":[354]},{"name":"MSHCTX","features":[354]},{"name":"MSHCTX_CONTAINER","features":[354]},{"name":"MSHCTX_CROSSCTX","features":[354]},{"name":"MSHCTX_DIFFERENTMACHINE","features":[354]},{"name":"MSHCTX_INPROC","features":[354]},{"name":"MSHCTX_LOCAL","features":[354]},{"name":"MSHCTX_NOSHAREDMEM","features":[354]},{"name":"MSHLFLAGS","features":[354]},{"name":"MSHLFLAGS_NOPING","features":[354]},{"name":"MSHLFLAGS_NORMAL","features":[354]},{"name":"MSHLFLAGS_RESERVED1","features":[354]},{"name":"MSHLFLAGS_RESERVED2","features":[354]},{"name":"MSHLFLAGS_RESERVED3","features":[354]},{"name":"MSHLFLAGS_RESERVED4","features":[354]},{"name":"MSHLFLAGS_TABLESTRONG","features":[354]},{"name":"MSHLFLAGS_TABLEWEAK","features":[354]},{"name":"MULTI_QI","features":[354]},{"name":"MachineGlobalObjectTableRegistrationToken","features":[354]},{"name":"MkParseDisplayName","features":[354]},{"name":"MonikerCommonPrefixWith","features":[354]},{"name":"MonikerRelativePathTo","features":[303,354]},{"name":"PENDINGMSG","features":[354]},{"name":"PENDINGMSG_CANCELCALL","features":[354]},{"name":"PENDINGMSG_WAITDEFPROCESS","features":[354]},{"name":"PENDINGMSG_WAITNOPROCESS","features":[354]},{"name":"PENDINGTYPE","features":[354]},{"name":"PENDINGTYPE_NESTED","features":[354]},{"name":"PENDINGTYPE_TOPLEVEL","features":[354]},{"name":"PFNCONTEXTCALL","features":[354]},{"name":"ProgIDFromCLSID","features":[354]},{"name":"QUERYCONTEXT","features":[354]},{"name":"REGCLS","features":[354]},{"name":"REGCLS_AGILE","features":[354]},{"name":"REGCLS_MULTIPLEUSE","features":[354]},{"name":"REGCLS_MULTI_SEPARATE","features":[354]},{"name":"REGCLS_SINGLEUSE","features":[354]},{"name":"REGCLS_SURROGATE","features":[354]},{"name":"REGCLS_SUSPENDED","features":[354]},{"name":"ROTFLAGS_ALLOWANYCLIENT","features":[354]},{"name":"ROTFLAGS_REGISTRATIONKEEPSALIVE","features":[354]},{"name":"ROTREGFLAGS_ALLOWANYCLIENT","features":[354]},{"name":"ROT_FLAGS","features":[354]},{"name":"RPCOLEMESSAGE","features":[354]},{"name":"RPCOPT_PROPERTIES","features":[354]},{"name":"RPCOPT_SERVER_LOCALITY_VALUES","features":[354]},{"name":"RPC_C_AUTHN_LEVEL","features":[354]},{"name":"RPC_C_AUTHN_LEVEL_CALL","features":[354]},{"name":"RPC_C_AUTHN_LEVEL_CONNECT","features":[354]},{"name":"RPC_C_AUTHN_LEVEL_DEFAULT","features":[354]},{"name":"RPC_C_AUTHN_LEVEL_NONE","features":[354]},{"name":"RPC_C_AUTHN_LEVEL_PKT","features":[354]},{"name":"RPC_C_AUTHN_LEVEL_PKT_INTEGRITY","features":[354]},{"name":"RPC_C_AUTHN_LEVEL_PKT_PRIVACY","features":[354]},{"name":"RPC_C_IMP_LEVEL","features":[354]},{"name":"RPC_C_IMP_LEVEL_ANONYMOUS","features":[354]},{"name":"RPC_C_IMP_LEVEL_DEFAULT","features":[354]},{"name":"RPC_C_IMP_LEVEL_DELEGATE","features":[354]},{"name":"RPC_C_IMP_LEVEL_IDENTIFY","features":[354]},{"name":"RPC_C_IMP_LEVEL_IMPERSONATE","features":[354]},{"name":"RemSTGMEDIUM","features":[354]},{"name":"SAFEARRAY","features":[354]},{"name":"SAFEARRAYBOUND","features":[354]},{"name":"SChannelHookCallInfo","features":[354]},{"name":"SD_ACCESSPERMISSIONS","features":[354]},{"name":"SD_ACCESSRESTRICTIONS","features":[354]},{"name":"SD_LAUNCHPERMISSIONS","features":[354]},{"name":"SD_LAUNCHRESTRICTIONS","features":[354]},{"name":"SERVERCALL","features":[354]},{"name":"SERVERCALL_ISHANDLED","features":[354]},{"name":"SERVERCALL_REJECTED","features":[354]},{"name":"SERVERCALL_RETRYLATER","features":[354]},{"name":"SERVER_LOCALITY_MACHINE_LOCAL","features":[354]},{"name":"SERVER_LOCALITY_PROCESS_LOCAL","features":[354]},{"name":"SERVER_LOCALITY_REMOTE","features":[354]},{"name":"SOLE_AUTHENTICATION_INFO","features":[354]},{"name":"SOLE_AUTHENTICATION_LIST","features":[354]},{"name":"SOLE_AUTHENTICATION_SERVICE","features":[354]},{"name":"STATDATA","features":[354]},{"name":"STATFLAG","features":[354]},{"name":"STATFLAG_DEFAULT","features":[354]},{"name":"STATFLAG_NONAME","features":[354]},{"name":"STATFLAG_NOOPEN","features":[354]},{"name":"STATSTG","features":[303,354]},{"name":"STGC","features":[354]},{"name":"STGC_CONSOLIDATE","features":[354]},{"name":"STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE","features":[354]},{"name":"STGC_DEFAULT","features":[354]},{"name":"STGC_ONLYIFCURRENT","features":[354]},{"name":"STGC_OVERWRITE","features":[354]},{"name":"STGM","features":[354]},{"name":"STGMEDIUM","features":[303,314,427]},{"name":"STGM_CONVERT","features":[354]},{"name":"STGM_CREATE","features":[354]},{"name":"STGM_DELETEONRELEASE","features":[354]},{"name":"STGM_DIRECT","features":[354]},{"name":"STGM_DIRECT_SWMR","features":[354]},{"name":"STGM_FAILIFTHERE","features":[354]},{"name":"STGM_NOSCRATCH","features":[354]},{"name":"STGM_NOSNAPSHOT","features":[354]},{"name":"STGM_PRIORITY","features":[354]},{"name":"STGM_READ","features":[354]},{"name":"STGM_READWRITE","features":[354]},{"name":"STGM_SHARE_DENY_NONE","features":[354]},{"name":"STGM_SHARE_DENY_READ","features":[354]},{"name":"STGM_SHARE_DENY_WRITE","features":[354]},{"name":"STGM_SHARE_EXCLUSIVE","features":[354]},{"name":"STGM_SIMPLE","features":[354]},{"name":"STGM_TRANSACTED","features":[354]},{"name":"STGM_WRITE","features":[354]},{"name":"STGTY","features":[354]},{"name":"STGTY_LOCKBYTES","features":[354]},{"name":"STGTY_PROPERTY","features":[354]},{"name":"STGTY_REPEAT","features":[354]},{"name":"STGTY_STORAGE","features":[354]},{"name":"STGTY_STREAM","features":[354]},{"name":"STG_LAYOUT_INTERLEAVED","features":[354]},{"name":"STG_LAYOUT_SEQUENTIAL","features":[354]},{"name":"STG_TOEND","features":[354]},{"name":"STREAM_SEEK","features":[354]},{"name":"STREAM_SEEK_CUR","features":[354]},{"name":"STREAM_SEEK_END","features":[354]},{"name":"STREAM_SEEK_SET","features":[354]},{"name":"SYSKIND","features":[354]},{"name":"SYS_MAC","features":[354]},{"name":"SYS_WIN16","features":[354]},{"name":"SYS_WIN32","features":[354]},{"name":"SYS_WIN64","features":[354]},{"name":"ServerApplication","features":[354]},{"name":"SetErrorInfo","features":[354]},{"name":"ShutdownType","features":[354]},{"name":"StorageLayout","features":[354]},{"name":"StringFromCLSID","features":[354]},{"name":"StringFromGUID2","features":[354]},{"name":"StringFromIID","features":[354]},{"name":"THDTYPE","features":[354]},{"name":"THDTYPE_BLOCKMESSAGES","features":[354]},{"name":"THDTYPE_PROCESSMESSAGES","features":[354]},{"name":"TKIND_ALIAS","features":[354]},{"name":"TKIND_COCLASS","features":[354]},{"name":"TKIND_DISPATCH","features":[354]},{"name":"TKIND_ENUM","features":[354]},{"name":"TKIND_INTERFACE","features":[354]},{"name":"TKIND_MAX","features":[354]},{"name":"TKIND_MODULE","features":[354]},{"name":"TKIND_RECORD","features":[354]},{"name":"TKIND_UNION","features":[354]},{"name":"TLIBATTR","features":[354]},{"name":"TYMED","features":[354]},{"name":"TYMED_ENHMF","features":[354]},{"name":"TYMED_FILE","features":[354]},{"name":"TYMED_GDI","features":[354]},{"name":"TYMED_HGLOBAL","features":[354]},{"name":"TYMED_ISTORAGE","features":[354]},{"name":"TYMED_ISTREAM","features":[354]},{"name":"TYMED_MFPICT","features":[354]},{"name":"TYMED_NULL","features":[354]},{"name":"TYPEATTR","features":[354,413,378]},{"name":"TYPEDESC","features":[354,413,378]},{"name":"TYPEKIND","features":[354]},{"name":"TYSPEC","features":[354]},{"name":"TYSPEC_CLSID","features":[354]},{"name":"TYSPEC_FILEEXT","features":[354]},{"name":"TYSPEC_FILENAME","features":[354]},{"name":"TYSPEC_MIMETYPE","features":[354]},{"name":"TYSPEC_OBJECTID","features":[354]},{"name":"TYSPEC_PACKAGENAME","features":[354]},{"name":"TYSPEC_PROGID","features":[354]},{"name":"URI_CREATE_FLAGS","features":[354]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME","features":[354]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME","features":[354]},{"name":"Uri_CREATE_ALLOW_RELATIVE","features":[354]},{"name":"Uri_CREATE_CANONICALIZE","features":[354]},{"name":"Uri_CREATE_CANONICALIZE_ABSOLUTE","features":[354]},{"name":"Uri_CREATE_CRACK_UNKNOWN_SCHEMES","features":[354]},{"name":"Uri_CREATE_DECODE_EXTRA_INFO","features":[354]},{"name":"Uri_CREATE_FILE_USE_DOS_PATH","features":[354]},{"name":"Uri_CREATE_IE_SETTINGS","features":[354]},{"name":"Uri_CREATE_NOFRAG","features":[354]},{"name":"Uri_CREATE_NORMALIZE_INTL_CHARACTERS","features":[354]},{"name":"Uri_CREATE_NO_CANONICALIZE","features":[354]},{"name":"Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES","features":[354]},{"name":"Uri_CREATE_NO_DECODE_EXTRA_INFO","features":[354]},{"name":"Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS","features":[354]},{"name":"Uri_CREATE_NO_IE_SETTINGS","features":[354]},{"name":"Uri_CREATE_NO_PRE_PROCESS_HTML_URI","features":[354]},{"name":"Uri_CREATE_PRE_PROCESS_HTML_URI","features":[354]},{"name":"Uri_PROPERTY","features":[354]},{"name":"Uri_PROPERTY_ABSOLUTE_URI","features":[354]},{"name":"Uri_PROPERTY_AUTHORITY","features":[354]},{"name":"Uri_PROPERTY_DISPLAY_URI","features":[354]},{"name":"Uri_PROPERTY_DOMAIN","features":[354]},{"name":"Uri_PROPERTY_DWORD_LAST","features":[354]},{"name":"Uri_PROPERTY_DWORD_START","features":[354]},{"name":"Uri_PROPERTY_EXTENSION","features":[354]},{"name":"Uri_PROPERTY_FRAGMENT","features":[354]},{"name":"Uri_PROPERTY_HOST","features":[354]},{"name":"Uri_PROPERTY_HOST_TYPE","features":[354]},{"name":"Uri_PROPERTY_PASSWORD","features":[354]},{"name":"Uri_PROPERTY_PATH","features":[354]},{"name":"Uri_PROPERTY_PATH_AND_QUERY","features":[354]},{"name":"Uri_PROPERTY_PORT","features":[354]},{"name":"Uri_PROPERTY_QUERY","features":[354]},{"name":"Uri_PROPERTY_RAW_URI","features":[354]},{"name":"Uri_PROPERTY_SCHEME","features":[354]},{"name":"Uri_PROPERTY_SCHEME_NAME","features":[354]},{"name":"Uri_PROPERTY_STRING_LAST","features":[354]},{"name":"Uri_PROPERTY_STRING_START","features":[354]},{"name":"Uri_PROPERTY_USER_INFO","features":[354]},{"name":"Uri_PROPERTY_USER_NAME","features":[354]},{"name":"Uri_PROPERTY_ZONE","features":[354]},{"name":"VARDESC","features":[354,413,378]},{"name":"VARFLAGS","features":[354]},{"name":"VARFLAG_FBINDABLE","features":[354]},{"name":"VARFLAG_FDEFAULTBIND","features":[354]},{"name":"VARFLAG_FDEFAULTCOLLELEM","features":[354]},{"name":"VARFLAG_FDISPLAYBIND","features":[354]},{"name":"VARFLAG_FHIDDEN","features":[354]},{"name":"VARFLAG_FIMMEDIATEBIND","features":[354]},{"name":"VARFLAG_FNONBROWSABLE","features":[354]},{"name":"VARFLAG_FREADONLY","features":[354]},{"name":"VARFLAG_FREPLACEABLE","features":[354]},{"name":"VARFLAG_FREQUESTEDIT","features":[354]},{"name":"VARFLAG_FRESTRICTED","features":[354]},{"name":"VARFLAG_FSOURCE","features":[354]},{"name":"VARFLAG_FUIDEFAULT","features":[354]},{"name":"VARKIND","features":[354]},{"name":"VAR_CONST","features":[354]},{"name":"VAR_DISPATCH","features":[354]},{"name":"VAR_PERINSTANCE","features":[354]},{"name":"VAR_STATIC","features":[354]},{"name":"WORD_BLOB","features":[354]},{"name":"WORD_SIZEDARR","features":[354]},{"name":"uCLSSPEC","features":[354]},{"name":"userFLAG_STGMEDIUM","features":[314,354,337]},{"name":"userSTGMEDIUM","features":[314,354,337]}],"535":[{"name":"CALLFRAMEINFO","features":[303,525]},{"name":"CALLFRAMEPARAMINFO","features":[303,525]},{"name":"CALLFRAME_COPY","features":[525]},{"name":"CALLFRAME_COPY_INDEPENDENT","features":[525]},{"name":"CALLFRAME_COPY_NESTED","features":[525]},{"name":"CALLFRAME_FREE","features":[525]},{"name":"CALLFRAME_FREE_ALL","features":[525]},{"name":"CALLFRAME_FREE_IN","features":[525]},{"name":"CALLFRAME_FREE_INOUT","features":[525]},{"name":"CALLFRAME_FREE_NONE","features":[525]},{"name":"CALLFRAME_FREE_OUT","features":[525]},{"name":"CALLFRAME_FREE_TOP_INOUT","features":[525]},{"name":"CALLFRAME_FREE_TOP_OUT","features":[525]},{"name":"CALLFRAME_MARSHALCONTEXT","features":[303,525]},{"name":"CALLFRAME_NULL","features":[525]},{"name":"CALLFRAME_NULL_ALL","features":[525]},{"name":"CALLFRAME_NULL_INOUT","features":[525]},{"name":"CALLFRAME_NULL_NONE","features":[525]},{"name":"CALLFRAME_NULL_OUT","features":[525]},{"name":"CALLFRAME_WALK","features":[525]},{"name":"CALLFRAME_WALK_IN","features":[525]},{"name":"CALLFRAME_WALK_INOUT","features":[525]},{"name":"CALLFRAME_WALK_OUT","features":[525]},{"name":"CoGetInterceptor","features":[525]},{"name":"CoGetInterceptorFromTypeInfo","features":[525]},{"name":"ICallFrame","features":[525]},{"name":"ICallFrameEvents","features":[525]},{"name":"ICallFrameWalker","features":[525]},{"name":"ICallIndirect","features":[525]},{"name":"ICallInterceptor","features":[525]},{"name":"ICallUnmarshal","features":[525]},{"name":"IInterfaceRelated","features":[525]}],"536":[{"name":"IChannelCredentials","features":[526]}],"537":[{"name":"CEventClass","features":[527]},{"name":"CEventPublisher","features":[527]},{"name":"CEventSubscription","features":[527]},{"name":"CEventSystem","features":[527]},{"name":"COMEVENTSYSCHANGEINFO","features":[527]},{"name":"EOC_ChangeType","features":[527]},{"name":"EOC_DeletedObject","features":[527]},{"name":"EOC_ModifiedObject","features":[527]},{"name":"EOC_NewObject","features":[527]},{"name":"EventObjectChange","features":[527]},{"name":"EventObjectChange2","features":[527]},{"name":"IDontSupportEventSubscription","features":[527]},{"name":"IEnumEventObject","features":[527]},{"name":"IEventClass","features":[527]},{"name":"IEventClass2","features":[527]},{"name":"IEventControl","features":[527]},{"name":"IEventObjectChange","features":[527]},{"name":"IEventObjectChange2","features":[527]},{"name":"IEventObjectCollection","features":[527]},{"name":"IEventProperty","features":[527]},{"name":"IEventPublisher","features":[527]},{"name":"IEventSubscription","features":[527]},{"name":"IEventSystem","features":[527]},{"name":"IFiringControl","features":[527]},{"name":"IMultiInterfaceEventControl","features":[527]},{"name":"IMultiInterfacePublisherFilter","features":[527]},{"name":"IPublisherFilter","features":[527]}],"538":[{"name":"BSTR_UserFree","features":[528]},{"name":"BSTR_UserFree64","features":[528]},{"name":"BSTR_UserMarshal","features":[528]},{"name":"BSTR_UserMarshal64","features":[528]},{"name":"BSTR_UserSize","features":[528]},{"name":"BSTR_UserSize64","features":[528]},{"name":"BSTR_UserUnmarshal","features":[528]},{"name":"BSTR_UserUnmarshal64","features":[528]},{"name":"CLIPFORMAT_UserFree","features":[528]},{"name":"CLIPFORMAT_UserFree64","features":[528]},{"name":"CLIPFORMAT_UserMarshal","features":[528]},{"name":"CLIPFORMAT_UserMarshal64","features":[528]},{"name":"CLIPFORMAT_UserSize","features":[528]},{"name":"CLIPFORMAT_UserSize64","features":[528]},{"name":"CLIPFORMAT_UserUnmarshal","features":[528]},{"name":"CLIPFORMAT_UserUnmarshal64","features":[528]},{"name":"CoGetMarshalSizeMax","features":[528]},{"name":"CoGetStandardMarshal","features":[528]},{"name":"CoGetStdMarshalEx","features":[528]},{"name":"CoMarshalHresult","features":[528]},{"name":"CoMarshalInterThreadInterfaceInStream","features":[528]},{"name":"CoMarshalInterface","features":[528]},{"name":"CoReleaseMarshalData","features":[528]},{"name":"CoUnmarshalHresult","features":[528]},{"name":"CoUnmarshalInterface","features":[528]},{"name":"HACCEL_UserFree","features":[528,365]},{"name":"HACCEL_UserFree64","features":[528,365]},{"name":"HACCEL_UserMarshal","features":[528,365]},{"name":"HACCEL_UserMarshal64","features":[528,365]},{"name":"HACCEL_UserSize","features":[528,365]},{"name":"HACCEL_UserSize64","features":[528,365]},{"name":"HACCEL_UserUnmarshal","features":[528,365]},{"name":"HACCEL_UserUnmarshal64","features":[528,365]},{"name":"HBITMAP_UserFree","features":[314,528]},{"name":"HBITMAP_UserFree64","features":[314,528]},{"name":"HBITMAP_UserMarshal","features":[314,528]},{"name":"HBITMAP_UserMarshal64","features":[314,528]},{"name":"HBITMAP_UserSize","features":[314,528]},{"name":"HBITMAP_UserSize64","features":[314,528]},{"name":"HBITMAP_UserUnmarshal","features":[314,528]},{"name":"HBITMAP_UserUnmarshal64","features":[314,528]},{"name":"HDC_UserFree","features":[314,528]},{"name":"HDC_UserFree64","features":[314,528]},{"name":"HDC_UserMarshal","features":[314,528]},{"name":"HDC_UserMarshal64","features":[314,528]},{"name":"HDC_UserSize","features":[314,528]},{"name":"HDC_UserSize64","features":[314,528]},{"name":"HDC_UserUnmarshal","features":[314,528]},{"name":"HDC_UserUnmarshal64","features":[314,528]},{"name":"HGLOBAL_UserFree","features":[303,528]},{"name":"HGLOBAL_UserFree64","features":[303,528]},{"name":"HGLOBAL_UserMarshal","features":[303,528]},{"name":"HGLOBAL_UserMarshal64","features":[303,528]},{"name":"HGLOBAL_UserSize","features":[303,528]},{"name":"HGLOBAL_UserSize64","features":[303,528]},{"name":"HGLOBAL_UserUnmarshal","features":[303,528]},{"name":"HGLOBAL_UserUnmarshal64","features":[303,528]},{"name":"HICON_UserFree","features":[528,365]},{"name":"HICON_UserFree64","features":[528,365]},{"name":"HICON_UserMarshal","features":[528,365]},{"name":"HICON_UserMarshal64","features":[528,365]},{"name":"HICON_UserSize","features":[528,365]},{"name":"HICON_UserSize64","features":[528,365]},{"name":"HICON_UserUnmarshal","features":[528,365]},{"name":"HICON_UserUnmarshal64","features":[528,365]},{"name":"HMENU_UserFree","features":[528,365]},{"name":"HMENU_UserFree64","features":[528,365]},{"name":"HMENU_UserMarshal","features":[528,365]},{"name":"HMENU_UserMarshal64","features":[528,365]},{"name":"HMENU_UserSize","features":[528,365]},{"name":"HMENU_UserSize64","features":[528,365]},{"name":"HMENU_UserUnmarshal","features":[528,365]},{"name":"HMENU_UserUnmarshal64","features":[528,365]},{"name":"HPALETTE_UserFree","features":[314,528]},{"name":"HPALETTE_UserFree64","features":[314,528]},{"name":"HPALETTE_UserMarshal","features":[314,528]},{"name":"HPALETTE_UserMarshal64","features":[314,528]},{"name":"HPALETTE_UserSize","features":[314,528]},{"name":"HPALETTE_UserSize64","features":[314,528]},{"name":"HPALETTE_UserUnmarshal","features":[314,528]},{"name":"HPALETTE_UserUnmarshal64","features":[314,528]},{"name":"HWND_UserFree","features":[303,528]},{"name":"HWND_UserFree64","features":[303,528]},{"name":"HWND_UserMarshal","features":[303,528]},{"name":"HWND_UserMarshal64","features":[303,528]},{"name":"HWND_UserSize","features":[303,528]},{"name":"HWND_UserSize64","features":[303,528]},{"name":"HWND_UserUnmarshal","features":[303,528]},{"name":"HWND_UserUnmarshal64","features":[303,528]},{"name":"IMarshal","features":[528]},{"name":"IMarshal2","features":[528]},{"name":"IMarshalingStream","features":[528]},{"name":"LPSAFEARRAY_UserFree","features":[528]},{"name":"LPSAFEARRAY_UserFree64","features":[528]},{"name":"LPSAFEARRAY_UserMarshal","features":[528]},{"name":"LPSAFEARRAY_UserMarshal64","features":[528]},{"name":"LPSAFEARRAY_UserSize","features":[528]},{"name":"LPSAFEARRAY_UserSize64","features":[528]},{"name":"LPSAFEARRAY_UserUnmarshal","features":[528]},{"name":"LPSAFEARRAY_UserUnmarshal64","features":[528]},{"name":"SMEXF_HANDLER","features":[528]},{"name":"SMEXF_SERVER","features":[528]},{"name":"SNB_UserFree","features":[528]},{"name":"SNB_UserFree64","features":[528]},{"name":"SNB_UserMarshal","features":[528]},{"name":"SNB_UserMarshal64","features":[528]},{"name":"SNB_UserSize","features":[528]},{"name":"SNB_UserSize64","features":[528]},{"name":"SNB_UserUnmarshal","features":[528]},{"name":"SNB_UserUnmarshal64","features":[528]},{"name":"STDMSHLFLAGS","features":[528]},{"name":"STGMEDIUM_UserFree","features":[303,314,528,427]},{"name":"STGMEDIUM_UserFree64","features":[303,314,528,427]},{"name":"STGMEDIUM_UserMarshal","features":[303,314,528,427]},{"name":"STGMEDIUM_UserMarshal64","features":[303,314,528,427]},{"name":"STGMEDIUM_UserSize","features":[303,314,528,427]},{"name":"STGMEDIUM_UserSize64","features":[303,314,528,427]},{"name":"STGMEDIUM_UserUnmarshal","features":[303,314,528,427]},{"name":"STGMEDIUM_UserUnmarshal64","features":[303,314,528,427]}],"539":[{"name":"BSTRBLOB","features":[427]},{"name":"CABOOL","features":[303,427]},{"name":"CABSTR","features":[427]},{"name":"CABSTRBLOB","features":[427]},{"name":"CAC","features":[427]},{"name":"CACLIPDATA","features":[427]},{"name":"CACLSID","features":[427]},{"name":"CACY","features":[427]},{"name":"CADATE","features":[427]},{"name":"CADBL","features":[427]},{"name":"CAFILETIME","features":[303,427]},{"name":"CAFLT","features":[427]},{"name":"CAH","features":[427]},{"name":"CAI","features":[427]},{"name":"CAL","features":[427]},{"name":"CALPSTR","features":[427]},{"name":"CALPWSTR","features":[427]},{"name":"CAPROPVARIANT","features":[427]},{"name":"CASCODE","features":[427]},{"name":"CAUB","features":[427]},{"name":"CAUH","features":[427]},{"name":"CAUI","features":[427]},{"name":"CAUL","features":[427]},{"name":"CCH_MAX_PROPSTG_NAME","features":[427]},{"name":"CLIPDATA","features":[427]},{"name":"CWCSTORAGENAME","features":[427]},{"name":"ClearPropVariantArray","features":[427]},{"name":"CoGetInstanceFromFile","features":[427]},{"name":"CoGetInstanceFromIStorage","features":[427]},{"name":"CoGetInterfaceAndReleaseStream","features":[427]},{"name":"CreateILockBytesOnHGlobal","features":[303,427]},{"name":"CreateStreamOnHGlobal","features":[303,427]},{"name":"FmtIdToPropStgName","features":[427]},{"name":"FreePropVariantArray","features":[427]},{"name":"GetConvertStg","features":[427]},{"name":"GetHGlobalFromILockBytes","features":[303,427]},{"name":"GetHGlobalFromStream","features":[303,427]},{"name":"IDirectWriterLock","features":[427]},{"name":"IEnumSTATPROPSETSTG","features":[427]},{"name":"IEnumSTATPROPSTG","features":[427]},{"name":"IEnumSTATSTG","features":[427]},{"name":"IFillLockBytes","features":[427]},{"name":"ILayoutStorage","features":[427]},{"name":"ILockBytes","features":[427]},{"name":"IMemoryAllocator","features":[427]},{"name":"IPersistStorage","features":[427]},{"name":"IPropertyBag","features":[427]},{"name":"IPropertyBag2","features":[427]},{"name":"IPropertySetStorage","features":[427]},{"name":"IPropertyStorage","features":[427]},{"name":"IRootStorage","features":[427]},{"name":"IStorage","features":[427]},{"name":"InitPropVariantFromBooleanVector","features":[303,427]},{"name":"InitPropVariantFromBuffer","features":[427]},{"name":"InitPropVariantFromCLSID","features":[427]},{"name":"InitPropVariantFromDoubleVector","features":[427]},{"name":"InitPropVariantFromFileTime","features":[303,427]},{"name":"InitPropVariantFromFileTimeVector","features":[303,427]},{"name":"InitPropVariantFromGUIDAsString","features":[427]},{"name":"InitPropVariantFromInt16Vector","features":[427]},{"name":"InitPropVariantFromInt32Vector","features":[427]},{"name":"InitPropVariantFromInt64Vector","features":[427]},{"name":"InitPropVariantFromPropVariantVectorElem","features":[427]},{"name":"InitPropVariantFromResource","features":[303,427]},{"name":"InitPropVariantFromStringAsVector","features":[427]},{"name":"InitPropVariantFromStringVector","features":[427]},{"name":"InitPropVariantFromUInt16Vector","features":[427]},{"name":"InitPropVariantFromUInt32Vector","features":[427]},{"name":"InitPropVariantFromUInt64Vector","features":[427]},{"name":"InitPropVariantVectorFromPropVariant","features":[427]},{"name":"OLESTREAM","features":[427]},{"name":"OLESTREAMVTBL","features":[427]},{"name":"OleConvertIStorageToOLESTREAM","features":[427]},{"name":"OleConvertIStorageToOLESTREAMEx","features":[303,314,427]},{"name":"OleConvertOLESTREAMToIStorage","features":[427]},{"name":"OleConvertOLESTREAMToIStorageEx","features":[303,314,427]},{"name":"PIDDI_THUMBNAIL","features":[427]},{"name":"PIDDSI_BYTECOUNT","features":[427]},{"name":"PIDDSI_CATEGORY","features":[427]},{"name":"PIDDSI_COMPANY","features":[427]},{"name":"PIDDSI_DOCPARTS","features":[427]},{"name":"PIDDSI_HEADINGPAIR","features":[427]},{"name":"PIDDSI_HIDDENCOUNT","features":[427]},{"name":"PIDDSI_LINECOUNT","features":[427]},{"name":"PIDDSI_LINKSDIRTY","features":[427]},{"name":"PIDDSI_MANAGER","features":[427]},{"name":"PIDDSI_MMCLIPCOUNT","features":[427]},{"name":"PIDDSI_NOTECOUNT","features":[427]},{"name":"PIDDSI_PARCOUNT","features":[427]},{"name":"PIDDSI_PRESFORMAT","features":[427]},{"name":"PIDDSI_SCALE","features":[427]},{"name":"PIDDSI_SLIDECOUNT","features":[427]},{"name":"PIDMSI_COPYRIGHT","features":[427]},{"name":"PIDMSI_EDITOR","features":[427]},{"name":"PIDMSI_OWNER","features":[427]},{"name":"PIDMSI_PRODUCTION","features":[427]},{"name":"PIDMSI_PROJECT","features":[427]},{"name":"PIDMSI_RATING","features":[427]},{"name":"PIDMSI_SEQUENCE_NO","features":[427]},{"name":"PIDMSI_SOURCE","features":[427]},{"name":"PIDMSI_STATUS","features":[427]},{"name":"PIDMSI_STATUS_DRAFT","features":[427]},{"name":"PIDMSI_STATUS_EDIT","features":[427]},{"name":"PIDMSI_STATUS_FINAL","features":[427]},{"name":"PIDMSI_STATUS_INPROGRESS","features":[427]},{"name":"PIDMSI_STATUS_NEW","features":[427]},{"name":"PIDMSI_STATUS_NORMAL","features":[427]},{"name":"PIDMSI_STATUS_OTHER","features":[427]},{"name":"PIDMSI_STATUS_PRELIM","features":[427]},{"name":"PIDMSI_STATUS_PROOF","features":[427]},{"name":"PIDMSI_STATUS_REVIEW","features":[427]},{"name":"PIDMSI_STATUS_VALUE","features":[427]},{"name":"PIDMSI_SUPPLIER","features":[427]},{"name":"PIDSI_APPNAME","features":[427]},{"name":"PIDSI_AUTHOR","features":[427]},{"name":"PIDSI_CHARCOUNT","features":[427]},{"name":"PIDSI_COMMENTS","features":[427]},{"name":"PIDSI_CREATE_DTM","features":[427]},{"name":"PIDSI_DOC_SECURITY","features":[427]},{"name":"PIDSI_EDITTIME","features":[427]},{"name":"PIDSI_KEYWORDS","features":[427]},{"name":"PIDSI_LASTAUTHOR","features":[427]},{"name":"PIDSI_LASTPRINTED","features":[427]},{"name":"PIDSI_LASTSAVE_DTM","features":[427]},{"name":"PIDSI_PAGECOUNT","features":[427]},{"name":"PIDSI_REVNUMBER","features":[427]},{"name":"PIDSI_SUBJECT","features":[427]},{"name":"PIDSI_TEMPLATE","features":[427]},{"name":"PIDSI_THUMBNAIL","features":[427]},{"name":"PIDSI_TITLE","features":[427]},{"name":"PIDSI_WORDCOUNT","features":[427]},{"name":"PID_BEHAVIOR","features":[427]},{"name":"PID_CODEPAGE","features":[427]},{"name":"PID_DICTIONARY","features":[427]},{"name":"PID_FIRST_NAME_DEFAULT","features":[427]},{"name":"PID_FIRST_USABLE","features":[427]},{"name":"PID_ILLEGAL","features":[427]},{"name":"PID_LOCALE","features":[427]},{"name":"PID_MAX_READONLY","features":[427]},{"name":"PID_MIN_READONLY","features":[427]},{"name":"PID_MODIFY_TIME","features":[427]},{"name":"PID_SECURITY","features":[427]},{"name":"PROPBAG2","features":[427,378]},{"name":"PROPSETFLAG_ANSI","features":[427]},{"name":"PROPSETFLAG_CASE_SENSITIVE","features":[427]},{"name":"PROPSETFLAG_DEFAULT","features":[427]},{"name":"PROPSETFLAG_NONSIMPLE","features":[427]},{"name":"PROPSETFLAG_UNBUFFERED","features":[427]},{"name":"PROPSETHDR_OSVERSION_UNKNOWN","features":[427]},{"name":"PROPSET_BEHAVIOR_CASE_SENSITIVE","features":[427]},{"name":"PROPSPEC","features":[427]},{"name":"PROPSPEC_KIND","features":[427]},{"name":"PROPVARIANT","features":[303,427,378]},{"name":"PROPVAR_CHANGE_FLAGS","features":[427]},{"name":"PROPVAR_COMPARE_FLAGS","features":[427]},{"name":"PROPVAR_COMPARE_UNIT","features":[427]},{"name":"PRSPEC_INVALID","features":[427]},{"name":"PRSPEC_LPWSTR","features":[427]},{"name":"PRSPEC_PROPID","features":[427]},{"name":"PVCF_DEFAULT","features":[427]},{"name":"PVCF_DIGITSASNUMBERS_CASESENSITIVE","features":[427]},{"name":"PVCF_TREATEMPTYASGREATERTHAN","features":[427]},{"name":"PVCF_USESTRCMP","features":[427]},{"name":"PVCF_USESTRCMPC","features":[427]},{"name":"PVCF_USESTRCMPI","features":[427]},{"name":"PVCF_USESTRCMPIC","features":[427]},{"name":"PVCHF_ALPHABOOL","features":[427]},{"name":"PVCHF_DEFAULT","features":[427]},{"name":"PVCHF_LOCALBOOL","features":[427]},{"name":"PVCHF_NOHEXSTRING","features":[427]},{"name":"PVCHF_NOUSEROVERRIDE","features":[427]},{"name":"PVCHF_NOVALUEPROP","features":[427]},{"name":"PVCU_DAY","features":[427]},{"name":"PVCU_DEFAULT","features":[427]},{"name":"PVCU_HOUR","features":[427]},{"name":"PVCU_MINUTE","features":[427]},{"name":"PVCU_MONTH","features":[427]},{"name":"PVCU_SECOND","features":[427]},{"name":"PVCU_YEAR","features":[427]},{"name":"PropStgNameToFmtId","features":[427]},{"name":"PropVariantChangeType","features":[427,378]},{"name":"PropVariantClear","features":[427]},{"name":"PropVariantCompareEx","features":[427]},{"name":"PropVariantCopy","features":[427]},{"name":"PropVariantGetBooleanElem","features":[303,427]},{"name":"PropVariantGetDoubleElem","features":[427]},{"name":"PropVariantGetElementCount","features":[427]},{"name":"PropVariantGetFileTimeElem","features":[303,427]},{"name":"PropVariantGetInt16Elem","features":[427]},{"name":"PropVariantGetInt32Elem","features":[427]},{"name":"PropVariantGetInt64Elem","features":[427]},{"name":"PropVariantGetStringElem","features":[427]},{"name":"PropVariantGetUInt16Elem","features":[427]},{"name":"PropVariantGetUInt32Elem","features":[427]},{"name":"PropVariantGetUInt64Elem","features":[427]},{"name":"PropVariantToBSTR","features":[427]},{"name":"PropVariantToBoolean","features":[303,427]},{"name":"PropVariantToBooleanVector","features":[303,427]},{"name":"PropVariantToBooleanVectorAlloc","features":[303,427]},{"name":"PropVariantToBooleanWithDefault","features":[303,427]},{"name":"PropVariantToBuffer","features":[427]},{"name":"PropVariantToDouble","features":[427]},{"name":"PropVariantToDoubleVector","features":[427]},{"name":"PropVariantToDoubleVectorAlloc","features":[427]},{"name":"PropVariantToDoubleWithDefault","features":[427]},{"name":"PropVariantToFileTime","features":[303,427,378]},{"name":"PropVariantToFileTimeVector","features":[303,427]},{"name":"PropVariantToFileTimeVectorAlloc","features":[303,427]},{"name":"PropVariantToGUID","features":[427]},{"name":"PropVariantToInt16","features":[427]},{"name":"PropVariantToInt16Vector","features":[427]},{"name":"PropVariantToInt16VectorAlloc","features":[427]},{"name":"PropVariantToInt16WithDefault","features":[427]},{"name":"PropVariantToInt32","features":[427]},{"name":"PropVariantToInt32Vector","features":[427]},{"name":"PropVariantToInt32VectorAlloc","features":[427]},{"name":"PropVariantToInt32WithDefault","features":[427]},{"name":"PropVariantToInt64","features":[427]},{"name":"PropVariantToInt64Vector","features":[427]},{"name":"PropVariantToInt64VectorAlloc","features":[427]},{"name":"PropVariantToInt64WithDefault","features":[427]},{"name":"PropVariantToString","features":[427]},{"name":"PropVariantToStringAlloc","features":[427]},{"name":"PropVariantToStringVector","features":[427]},{"name":"PropVariantToStringVectorAlloc","features":[427]},{"name":"PropVariantToStringWithDefault","features":[427]},{"name":"PropVariantToUInt16","features":[427]},{"name":"PropVariantToUInt16Vector","features":[427]},{"name":"PropVariantToUInt16VectorAlloc","features":[427]},{"name":"PropVariantToUInt16WithDefault","features":[427]},{"name":"PropVariantToUInt32","features":[427]},{"name":"PropVariantToUInt32Vector","features":[427]},{"name":"PropVariantToUInt32VectorAlloc","features":[427]},{"name":"PropVariantToUInt32WithDefault","features":[427]},{"name":"PropVariantToUInt64","features":[427]},{"name":"PropVariantToUInt64Vector","features":[427]},{"name":"PropVariantToUInt64VectorAlloc","features":[427]},{"name":"PropVariantToUInt64WithDefault","features":[427]},{"name":"PropVariantToVariant","features":[427]},{"name":"PropVariantToWinRTPropertyValue","features":[427]},{"name":"ReadClassStg","features":[427]},{"name":"ReadClassStm","features":[427]},{"name":"ReadFmtUserTypeStg","features":[427]},{"name":"RemSNB","features":[427]},{"name":"SERIALIZEDPROPERTYVALUE","features":[427]},{"name":"STATPROPSETSTG","features":[303,427]},{"name":"STATPROPSTG","features":[427,378]},{"name":"STGFMT","features":[427]},{"name":"STGFMT_ANY","features":[427]},{"name":"STGFMT_DOCFILE","features":[427]},{"name":"STGFMT_DOCUMENT","features":[427]},{"name":"STGFMT_FILE","features":[427]},{"name":"STGFMT_NATIVE","features":[427]},{"name":"STGFMT_STORAGE","features":[427]},{"name":"STGMOVE","features":[427]},{"name":"STGMOVE_COPY","features":[427]},{"name":"STGMOVE_MOVE","features":[427]},{"name":"STGMOVE_SHALLOWCOPY","features":[427]},{"name":"STGOPTIONS","features":[427]},{"name":"STGOPTIONS_VERSION","features":[427]},{"name":"SetConvertStg","features":[303,427]},{"name":"StgConvertPropertyToVariant","features":[303,427]},{"name":"StgConvertVariantToProperty","features":[303,427]},{"name":"StgCreateDocfile","features":[427]},{"name":"StgCreateDocfileOnILockBytes","features":[427]},{"name":"StgCreatePropSetStg","features":[427]},{"name":"StgCreatePropStg","features":[427]},{"name":"StgCreateStorageEx","features":[306,427]},{"name":"StgDeserializePropVariant","features":[427]},{"name":"StgGetIFillLockBytesOnFile","features":[427]},{"name":"StgGetIFillLockBytesOnILockBytes","features":[427]},{"name":"StgIsStorageFile","features":[427]},{"name":"StgIsStorageILockBytes","features":[427]},{"name":"StgOpenAsyncDocfileOnIFillLockBytes","features":[427]},{"name":"StgOpenLayoutDocfile","features":[427]},{"name":"StgOpenPropStg","features":[427]},{"name":"StgOpenStorage","features":[427]},{"name":"StgOpenStorageEx","features":[306,427]},{"name":"StgOpenStorageOnILockBytes","features":[427]},{"name":"StgPropertyLengthAsVariant","features":[427]},{"name":"StgSerializePropVariant","features":[427]},{"name":"StgSetTimes","features":[303,427]},{"name":"VERSIONEDSTREAM","features":[427]},{"name":"VariantToPropVariant","features":[427]},{"name":"WinRTPropertyValueToPropVariant","features":[427]},{"name":"WriteClassStg","features":[427]},{"name":"WriteClassStm","features":[427]},{"name":"WriteFmtUserTypeStg","features":[427]}],"540":[{"name":"IDummyHICONIncluder","features":[529]},{"name":"IThumbnailExtractor","features":[529]}],"541":[{"name":"AUTHENTICATEF","features":[530]},{"name":"AUTHENTICATEF_BASIC","features":[530]},{"name":"AUTHENTICATEF_HTTP","features":[530]},{"name":"AUTHENTICATEF_PROXY","features":[530]},{"name":"BINDF","features":[530]},{"name":"BINDF2","features":[530]},{"name":"BINDF2_ALLOW_PROXY_CRED_PROMPT","features":[530]},{"name":"BINDF2_DISABLEAUTOCOOKIEHANDLING","features":[530]},{"name":"BINDF2_DISABLEBASICOVERHTTP","features":[530]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_CACHING","features":[530]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_XSECURITYID","features":[530]},{"name":"BINDF2_KEEP_CALLBACK_MODULE_LOADED","features":[530]},{"name":"BINDF2_READ_DATA_GREATER_THAN_4GB","features":[530]},{"name":"BINDF2_RESERVED_1","features":[530]},{"name":"BINDF2_RESERVED_10","features":[530]},{"name":"BINDF2_RESERVED_11","features":[530]},{"name":"BINDF2_RESERVED_12","features":[530]},{"name":"BINDF2_RESERVED_13","features":[530]},{"name":"BINDF2_RESERVED_14","features":[530]},{"name":"BINDF2_RESERVED_15","features":[530]},{"name":"BINDF2_RESERVED_16","features":[530]},{"name":"BINDF2_RESERVED_17","features":[530]},{"name":"BINDF2_RESERVED_2","features":[530]},{"name":"BINDF2_RESERVED_3","features":[530]},{"name":"BINDF2_RESERVED_4","features":[530]},{"name":"BINDF2_RESERVED_5","features":[530]},{"name":"BINDF2_RESERVED_6","features":[530]},{"name":"BINDF2_RESERVED_7","features":[530]},{"name":"BINDF2_RESERVED_8","features":[530]},{"name":"BINDF2_RESERVED_9","features":[530]},{"name":"BINDF2_RESERVED_A","features":[530]},{"name":"BINDF2_RESERVED_B","features":[530]},{"name":"BINDF2_RESERVED_C","features":[530]},{"name":"BINDF2_RESERVED_D","features":[530]},{"name":"BINDF2_RESERVED_E","features":[530]},{"name":"BINDF2_RESERVED_F","features":[530]},{"name":"BINDF2_SETDOWNLOADMODE","features":[530]},{"name":"BINDF_ASYNCHRONOUS","features":[530]},{"name":"BINDF_ASYNCSTORAGE","features":[530]},{"name":"BINDF_DIRECT_READ","features":[530]},{"name":"BINDF_ENFORCERESTRICTED","features":[530]},{"name":"BINDF_FORMS_SUBMIT","features":[530]},{"name":"BINDF_FREE_THREADED","features":[530]},{"name":"BINDF_FROMURLMON","features":[530]},{"name":"BINDF_FWD_BACK","features":[530]},{"name":"BINDF_GETCLASSOBJECT","features":[530]},{"name":"BINDF_GETFROMCACHE_IF_NET_FAIL","features":[530]},{"name":"BINDF_GETNEWESTVERSION","features":[530]},{"name":"BINDF_HYPERLINK","features":[530]},{"name":"BINDF_IGNORESECURITYPROBLEM","features":[530]},{"name":"BINDF_NEEDFILE","features":[530]},{"name":"BINDF_NOPROGRESSIVERENDERING","features":[530]},{"name":"BINDF_NOWRITECACHE","features":[530]},{"name":"BINDF_NO_UI","features":[530]},{"name":"BINDF_OFFLINEOPERATION","features":[530]},{"name":"BINDF_PRAGMA_NO_CACHE","features":[530]},{"name":"BINDF_PREFERDEFAULTHANDLER","features":[530]},{"name":"BINDF_PULLDATA","features":[530]},{"name":"BINDF_RESERVED_1","features":[530]},{"name":"BINDF_RESERVED_2","features":[530]},{"name":"BINDF_RESERVED_3","features":[530]},{"name":"BINDF_RESERVED_4","features":[530]},{"name":"BINDF_RESERVED_5","features":[530]},{"name":"BINDF_RESERVED_6","features":[530]},{"name":"BINDF_RESERVED_7","features":[530]},{"name":"BINDF_RESERVED_8","features":[530]},{"name":"BINDF_RESYNCHRONIZE","features":[530]},{"name":"BINDF_SILENTOPERATION","features":[530]},{"name":"BINDHANDLETYPES","features":[530]},{"name":"BINDHANDLETYPES_APPCACHE","features":[530]},{"name":"BINDHANDLETYPES_COUNT","features":[530]},{"name":"BINDHANDLETYPES_DEPENDENCY","features":[530]},{"name":"BINDINFO_OPTIONS","features":[530]},{"name":"BINDINFO_OPTIONS_ALLOWCONNECTDATA","features":[530]},{"name":"BINDINFO_OPTIONS_BINDTOOBJECT","features":[530]},{"name":"BINDINFO_OPTIONS_DISABLEAUTOREDIRECTS","features":[530]},{"name":"BINDINFO_OPTIONS_DISABLE_UTF8","features":[530]},{"name":"BINDINFO_OPTIONS_ENABLE_UTF8","features":[530]},{"name":"BINDINFO_OPTIONS_IGNOREHTTPHTTPSREDIRECTS","features":[530]},{"name":"BINDINFO_OPTIONS_IGNOREMIMETEXTPLAIN","features":[530]},{"name":"BINDINFO_OPTIONS_IGNORE_SSLERRORS_ONCE","features":[530]},{"name":"BINDINFO_OPTIONS_SECURITYOPTOUT","features":[530]},{"name":"BINDINFO_OPTIONS_SHDOCVW_NAVIGATE","features":[530]},{"name":"BINDINFO_OPTIONS_USEBINDSTRINGCREDS","features":[530]},{"name":"BINDINFO_OPTIONS_USE_IE_ENCODING","features":[530]},{"name":"BINDINFO_OPTIONS_WININETFLAG","features":[530]},{"name":"BINDINFO_WPC_DOWNLOADBLOCKED","features":[530]},{"name":"BINDINFO_WPC_LOGGING_ENABLED","features":[530]},{"name":"BINDSTATUS","features":[530]},{"name":"BINDSTATUS_64BIT_PROGRESS","features":[530]},{"name":"BINDSTATUS_ACCEPTRANGES","features":[530]},{"name":"BINDSTATUS_BEGINDOWNLOADCOMPONENTS","features":[530]},{"name":"BINDSTATUS_BEGINDOWNLOADDATA","features":[530]},{"name":"BINDSTATUS_BEGINSYNCOPERATION","features":[530]},{"name":"BINDSTATUS_BEGINUPLOADDATA","features":[530]},{"name":"BINDSTATUS_CACHECONTROL","features":[530]},{"name":"BINDSTATUS_CACHEFILENAMEAVAILABLE","features":[530]},{"name":"BINDSTATUS_CLASSIDAVAILABLE","features":[530]},{"name":"BINDSTATUS_CLASSINSTALLLOCATION","features":[530]},{"name":"BINDSTATUS_CLSIDCANINSTANTIATE","features":[530]},{"name":"BINDSTATUS_COMPACT_POLICY_RECEIVED","features":[530]},{"name":"BINDSTATUS_CONNECTING","features":[530]},{"name":"BINDSTATUS_CONTENTDISPOSITIONATTACH","features":[530]},{"name":"BINDSTATUS_CONTENTDISPOSITIONFILENAME","features":[530]},{"name":"BINDSTATUS_COOKIE_SENT","features":[530]},{"name":"BINDSTATUS_COOKIE_STATE_ACCEPT","features":[530]},{"name":"BINDSTATUS_COOKIE_STATE_DOWNGRADE","features":[530]},{"name":"BINDSTATUS_COOKIE_STATE_LEASH","features":[530]},{"name":"BINDSTATUS_COOKIE_STATE_PROMPT","features":[530]},{"name":"BINDSTATUS_COOKIE_STATE_REJECT","features":[530]},{"name":"BINDSTATUS_COOKIE_STATE_UNKNOWN","features":[530]},{"name":"BINDSTATUS_COOKIE_SUPPRESSED","features":[530]},{"name":"BINDSTATUS_DECODING","features":[530]},{"name":"BINDSTATUS_DIRECTBIND","features":[530]},{"name":"BINDSTATUS_DISPLAYNAMEAVAILABLE","features":[530]},{"name":"BINDSTATUS_DOWNLOADINGDATA","features":[530]},{"name":"BINDSTATUS_ENCODING","features":[530]},{"name":"BINDSTATUS_ENDDOWNLOADCOMPONENTS","features":[530]},{"name":"BINDSTATUS_ENDDOWNLOADDATA","features":[530]},{"name":"BINDSTATUS_ENDSYNCOPERATION","features":[530]},{"name":"BINDSTATUS_ENDUPLOADDATA","features":[530]},{"name":"BINDSTATUS_FILTERREPORTMIMETYPE","features":[530]},{"name":"BINDSTATUS_FINDINGRESOURCE","features":[530]},{"name":"BINDSTATUS_INSTALLINGCOMPONENTS","features":[530]},{"name":"BINDSTATUS_IUNKNOWNAVAILABLE","features":[530]},{"name":"BINDSTATUS_LAST","features":[530]},{"name":"BINDSTATUS_LAST_PRIVATE","features":[530]},{"name":"BINDSTATUS_LOADINGMIMEHANDLER","features":[530]},{"name":"BINDSTATUS_MIMETEXTPLAINMISMATCH","features":[530]},{"name":"BINDSTATUS_MIMETYPEAVAILABLE","features":[530]},{"name":"BINDSTATUS_P3P_HEADER","features":[530]},{"name":"BINDSTATUS_PERSISTENT_COOKIE_RECEIVED","features":[530]},{"name":"BINDSTATUS_POLICY_HREF","features":[530]},{"name":"BINDSTATUS_PROTOCOLCLASSID","features":[530]},{"name":"BINDSTATUS_PROXYDETECTING","features":[530]},{"name":"BINDSTATUS_PUBLISHERAVAILABLE","features":[530]},{"name":"BINDSTATUS_RAWMIMETYPE","features":[530]},{"name":"BINDSTATUS_REDIRECTING","features":[530]},{"name":"BINDSTATUS_RESERVED_0","features":[530]},{"name":"BINDSTATUS_RESERVED_1","features":[530]},{"name":"BINDSTATUS_RESERVED_10","features":[530]},{"name":"BINDSTATUS_RESERVED_11","features":[530]},{"name":"BINDSTATUS_RESERVED_12","features":[530]},{"name":"BINDSTATUS_RESERVED_13","features":[530]},{"name":"BINDSTATUS_RESERVED_14","features":[530]},{"name":"BINDSTATUS_RESERVED_2","features":[530]},{"name":"BINDSTATUS_RESERVED_3","features":[530]},{"name":"BINDSTATUS_RESERVED_4","features":[530]},{"name":"BINDSTATUS_RESERVED_5","features":[530]},{"name":"BINDSTATUS_RESERVED_6","features":[530]},{"name":"BINDSTATUS_RESERVED_7","features":[530]},{"name":"BINDSTATUS_RESERVED_8","features":[530]},{"name":"BINDSTATUS_RESERVED_9","features":[530]},{"name":"BINDSTATUS_RESERVED_A","features":[530]},{"name":"BINDSTATUS_RESERVED_B","features":[530]},{"name":"BINDSTATUS_RESERVED_C","features":[530]},{"name":"BINDSTATUS_RESERVED_D","features":[530]},{"name":"BINDSTATUS_RESERVED_E","features":[530]},{"name":"BINDSTATUS_RESERVED_F","features":[530]},{"name":"BINDSTATUS_SENDINGREQUEST","features":[530]},{"name":"BINDSTATUS_SERVER_MIMETYPEAVAILABLE","features":[530]},{"name":"BINDSTATUS_SESSION_COOKIES_ALLOWED","features":[530]},{"name":"BINDSTATUS_SESSION_COOKIE_RECEIVED","features":[530]},{"name":"BINDSTATUS_SNIFFED_CLASSIDAVAILABLE","features":[530]},{"name":"BINDSTATUS_SSLUX_NAVBLOCKED","features":[530]},{"name":"BINDSTATUS_UPLOADINGDATA","features":[530]},{"name":"BINDSTATUS_USINGCACHEDCOPY","features":[530]},{"name":"BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE","features":[530]},{"name":"BINDSTRING","features":[530]},{"name":"BINDSTRING_ACCEPT_ENCODINGS","features":[530]},{"name":"BINDSTRING_ACCEPT_MIMES","features":[530]},{"name":"BINDSTRING_DOC_URL","features":[530]},{"name":"BINDSTRING_DOWNLOADPATH","features":[530]},{"name":"BINDSTRING_ENTERPRISE_ID","features":[530]},{"name":"BINDSTRING_EXTRA_URL","features":[530]},{"name":"BINDSTRING_FLAG_BIND_TO_OBJECT","features":[530]},{"name":"BINDSTRING_HEADERS","features":[530]},{"name":"BINDSTRING_IID","features":[530]},{"name":"BINDSTRING_INITIAL_FILENAME","features":[530]},{"name":"BINDSTRING_LANGUAGE","features":[530]},{"name":"BINDSTRING_OS","features":[530]},{"name":"BINDSTRING_PASSWORD","features":[530]},{"name":"BINDSTRING_POST_COOKIE","features":[530]},{"name":"BINDSTRING_POST_DATA_MIME","features":[530]},{"name":"BINDSTRING_PROXY_PASSWORD","features":[530]},{"name":"BINDSTRING_PROXY_USERNAME","features":[530]},{"name":"BINDSTRING_PTR_BIND_CONTEXT","features":[530]},{"name":"BINDSTRING_ROOTDOC_URL","features":[530]},{"name":"BINDSTRING_SAMESITE_COOKIE_LEVEL","features":[530]},{"name":"BINDSTRING_UA_COLOR","features":[530]},{"name":"BINDSTRING_UA_PIXELS","features":[530]},{"name":"BINDSTRING_URL","features":[530]},{"name":"BINDSTRING_USERNAME","features":[530]},{"name":"BINDSTRING_USER_AGENT","features":[530]},{"name":"BINDSTRING_XDR_ORIGIN","features":[530]},{"name":"BINDVERB","features":[530]},{"name":"BINDVERB_CUSTOM","features":[530]},{"name":"BINDVERB_GET","features":[530]},{"name":"BINDVERB_POST","features":[530]},{"name":"BINDVERB_PUT","features":[530]},{"name":"BINDVERB_RESERVED1","features":[530]},{"name":"BSCF","features":[530]},{"name":"BSCF_64BITLENGTHDOWNLOAD","features":[530]},{"name":"BSCF_AVAILABLEDATASIZEUNKNOWN","features":[530]},{"name":"BSCF_DATAFULLYAVAILABLE","features":[530]},{"name":"BSCF_FIRSTDATANOTIFICATION","features":[530]},{"name":"BSCF_INTERMEDIATEDATANOTIFICATION","features":[530]},{"name":"BSCF_LASTDATANOTIFICATION","features":[530]},{"name":"BSCF_SKIPDRAINDATAFORFILEURLS","features":[530]},{"name":"CF_NULL","features":[530]},{"name":"CIP_ACCESS_DENIED","features":[530]},{"name":"CIP_DISK_FULL","features":[530]},{"name":"CIP_EXE_SELF_REGISTERATION_TIMEOUT","features":[530]},{"name":"CIP_NAME_CONFLICT","features":[530]},{"name":"CIP_NEED_REBOOT","features":[530]},{"name":"CIP_NEED_REBOOT_UI_PERMISSION","features":[530]},{"name":"CIP_NEWER_VERSION_EXISTS","features":[530]},{"name":"CIP_OLDER_VERSION_EXISTS","features":[530]},{"name":"CIP_STATUS","features":[530]},{"name":"CIP_TRUST_VERIFICATION_COMPONENT_MISSING","features":[530]},{"name":"CIP_UNSAFE_TO_ABORT","features":[530]},{"name":"CLASSIDPROP","features":[530]},{"name":"CODEBASEHOLD","features":[530]},{"name":"CONFIRMSAFETY","features":[530]},{"name":"CONFIRMSAFETYACTION_LOADOBJECT","features":[530]},{"name":"CoGetClassObjectFromURL","features":[530]},{"name":"CoInternetCombineIUri","features":[530]},{"name":"CoInternetCombineUrl","features":[530]},{"name":"CoInternetCombineUrlEx","features":[530]},{"name":"CoInternetCompareUrl","features":[530]},{"name":"CoInternetCreateSecurityManager","features":[530]},{"name":"CoInternetCreateZoneManager","features":[530]},{"name":"CoInternetGetProtocolFlags","features":[530]},{"name":"CoInternetGetSecurityUrl","features":[530]},{"name":"CoInternetGetSecurityUrlEx","features":[530]},{"name":"CoInternetGetSession","features":[530]},{"name":"CoInternetIsFeatureEnabled","features":[530]},{"name":"CoInternetIsFeatureEnabledForIUri","features":[530]},{"name":"CoInternetIsFeatureEnabledForUrl","features":[530]},{"name":"CoInternetIsFeatureZoneElevationEnabled","features":[530]},{"name":"CoInternetParseIUri","features":[530]},{"name":"CoInternetParseUrl","features":[530]},{"name":"CoInternetQueryInfo","features":[530]},{"name":"CoInternetSetFeatureEnabled","features":[303,530]},{"name":"CompareSecurityIds","features":[530]},{"name":"CompatFlagsFromClsid","features":[530]},{"name":"CopyBindInfo","features":[303,314,306,427,530]},{"name":"CopyStgMedium","features":[303,314,427,530]},{"name":"CreateAsyncBindCtx","features":[530]},{"name":"CreateAsyncBindCtxEx","features":[530]},{"name":"CreateFormatEnumerator","features":[530]},{"name":"CreateURLMoniker","features":[530]},{"name":"CreateURLMonikerEx","features":[530]},{"name":"CreateURLMonikerEx2","features":[530]},{"name":"DATAINFO","features":[530]},{"name":"E_PENDING","features":[530]},{"name":"FEATURE_ADDON_MANAGEMENT","features":[530]},{"name":"FEATURE_BEHAVIORS","features":[530]},{"name":"FEATURE_BLOCK_INPUT_PROMPTS","features":[530]},{"name":"FEATURE_DISABLE_LEGACY_COMPRESSION","features":[530]},{"name":"FEATURE_DISABLE_MK_PROTOCOL","features":[530]},{"name":"FEATURE_DISABLE_NAVIGATION_SOUNDS","features":[530]},{"name":"FEATURE_DISABLE_TELNET_PROTOCOL","features":[530]},{"name":"FEATURE_ENTRY_COUNT","features":[530]},{"name":"FEATURE_FEEDS","features":[530]},{"name":"FEATURE_FORCE_ADDR_AND_STATUS","features":[530]},{"name":"FEATURE_GET_URL_DOM_FILEPATH_UNENCODED","features":[530]},{"name":"FEATURE_HTTP_USERNAME_PASSWORD_DISABLE","features":[530]},{"name":"FEATURE_LOCALMACHINE_LOCKDOWN","features":[530]},{"name":"FEATURE_MIME_HANDLING","features":[530]},{"name":"FEATURE_MIME_SNIFFING","features":[530]},{"name":"FEATURE_OBJECT_CACHING","features":[530]},{"name":"FEATURE_PROTOCOL_LOCKDOWN","features":[530]},{"name":"FEATURE_RESTRICT_ACTIVEXINSTALL","features":[530]},{"name":"FEATURE_RESTRICT_FILEDOWNLOAD","features":[530]},{"name":"FEATURE_SAFE_BINDTOOBJECT","features":[530]},{"name":"FEATURE_SECURITYBAND","features":[530]},{"name":"FEATURE_SSLUX","features":[530]},{"name":"FEATURE_TABBED_BROWSING","features":[530]},{"name":"FEATURE_UNC_SAVEDFILECHECK","features":[530]},{"name":"FEATURE_VALIDATE_NAVIGATE_URL","features":[530]},{"name":"FEATURE_WEBOC_POPUPMANAGEMENT","features":[530]},{"name":"FEATURE_WINDOW_RESTRICTIONS","features":[530]},{"name":"FEATURE_XMLHTTP","features":[530]},{"name":"FEATURE_ZONE_ELEVATION","features":[530]},{"name":"FIEF_FLAG_FORCE_JITUI","features":[530]},{"name":"FIEF_FLAG_PEEK","features":[530]},{"name":"FIEF_FLAG_RESERVED_0","features":[530]},{"name":"FIEF_FLAG_SKIP_INSTALLED_VERSION_CHECK","features":[530]},{"name":"FMFD_DEFAULT","features":[530]},{"name":"FMFD_ENABLEMIMESNIFFING","features":[530]},{"name":"FMFD_IGNOREMIMETEXTPLAIN","features":[530]},{"name":"FMFD_RESERVED_1","features":[530]},{"name":"FMFD_RESERVED_2","features":[530]},{"name":"FMFD_RESPECTTEXTPLAIN","features":[530]},{"name":"FMFD_RETURNUPDATEDIMGMIMES","features":[530]},{"name":"FMFD_SERVERMIME","features":[530]},{"name":"FMFD_URLASFILENAME","features":[530]},{"name":"FaultInIEFeature","features":[303,530]},{"name":"FindMediaType","features":[530]},{"name":"FindMediaTypeClass","features":[530]},{"name":"FindMimeFromData","features":[530]},{"name":"GET_FEATURE_FROM_PROCESS","features":[530]},{"name":"GET_FEATURE_FROM_REGISTRY","features":[530]},{"name":"GET_FEATURE_FROM_THREAD","features":[530]},{"name":"GET_FEATURE_FROM_THREAD_INTERNET","features":[530]},{"name":"GET_FEATURE_FROM_THREAD_INTRANET","features":[530]},{"name":"GET_FEATURE_FROM_THREAD_LOCALMACHINE","features":[530]},{"name":"GET_FEATURE_FROM_THREAD_RESTRICTED","features":[530]},{"name":"GET_FEATURE_FROM_THREAD_TRUSTED","features":[530]},{"name":"GetClassFileOrMime","features":[530]},{"name":"GetClassURL","features":[530]},{"name":"GetComponentIDFromCLSSPEC","features":[530]},{"name":"GetSoftwareUpdateInfo","features":[530]},{"name":"HIT_LOGGING_INFO","features":[303,530]},{"name":"HlinkGoBack","features":[530]},{"name":"HlinkGoForward","features":[530]},{"name":"HlinkNavigateMoniker","features":[530]},{"name":"HlinkNavigateString","features":[530]},{"name":"HlinkSimpleNavigateToMoniker","features":[530]},{"name":"HlinkSimpleNavigateToString","features":[530]},{"name":"IBindCallbackRedirect","features":[530]},{"name":"IBindHttpSecurity","features":[530]},{"name":"IBindProtocol","features":[530]},{"name":"ICatalogFileInfo","features":[530]},{"name":"ICodeInstall","features":[530]},{"name":"IDataFilter","features":[530]},{"name":"IEGetUserPrivateNamespaceName","features":[530]},{"name":"IEInstallScope","features":[530]},{"name":"IEObjectType","features":[530]},{"name":"IE_EPM_OBJECT_EVENT","features":[530]},{"name":"IE_EPM_OBJECT_FILE","features":[530]},{"name":"IE_EPM_OBJECT_MUTEX","features":[530]},{"name":"IE_EPM_OBJECT_NAMED_PIPE","features":[530]},{"name":"IE_EPM_OBJECT_REGISTRY","features":[530]},{"name":"IE_EPM_OBJECT_SEMAPHORE","features":[530]},{"name":"IE_EPM_OBJECT_SHARED_MEMORY","features":[530]},{"name":"IE_EPM_OBJECT_WAITABLE_TIMER","features":[530]},{"name":"IEncodingFilterFactory","features":[530]},{"name":"IGetBindHandle","features":[530]},{"name":"IHttpNegotiate","features":[530]},{"name":"IHttpNegotiate2","features":[530]},{"name":"IHttpNegotiate3","features":[530]},{"name":"IHttpSecurity","features":[530]},{"name":"IInternet","features":[530]},{"name":"IInternetBindInfo","features":[530]},{"name":"IInternetBindInfoEx","features":[530]},{"name":"IInternetHostSecurityManager","features":[530]},{"name":"IInternetPriority","features":[530]},{"name":"IInternetProtocol","features":[530]},{"name":"IInternetProtocolEx","features":[530]},{"name":"IInternetProtocolInfo","features":[530]},{"name":"IInternetProtocolRoot","features":[530]},{"name":"IInternetProtocolSink","features":[530]},{"name":"IInternetProtocolSinkStackable","features":[530]},{"name":"IInternetSecurityManager","features":[530]},{"name":"IInternetSecurityManagerEx","features":[530]},{"name":"IInternetSecurityManagerEx2","features":[530]},{"name":"IInternetSecurityMgrSite","features":[530]},{"name":"IInternetSession","features":[530]},{"name":"IInternetThreadSwitch","features":[530]},{"name":"IInternetZoneManager","features":[530]},{"name":"IInternetZoneManagerEx","features":[530]},{"name":"IInternetZoneManagerEx2","features":[530]},{"name":"IMonikerProp","features":[530]},{"name":"INET_E_AUTHENTICATION_REQUIRED","features":[530]},{"name":"INET_E_BLOCKED_ENHANCEDPROTECTEDMODE","features":[530]},{"name":"INET_E_BLOCKED_PLUGGABLE_PROTOCOL","features":[530]},{"name":"INET_E_BLOCKED_REDIRECT_XSECURITYID","features":[530]},{"name":"INET_E_CANNOT_CONNECT","features":[530]},{"name":"INET_E_CANNOT_INSTANTIATE_OBJECT","features":[530]},{"name":"INET_E_CANNOT_LOAD_DATA","features":[530]},{"name":"INET_E_CANNOT_LOCK_REQUEST","features":[530]},{"name":"INET_E_CANNOT_REPLACE_SFP_FILE","features":[530]},{"name":"INET_E_CODE_DOWNLOAD_DECLINED","features":[530]},{"name":"INET_E_CODE_INSTALL_BLOCKED_ARM","features":[530]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BITNESS","features":[530]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY","features":[530]},{"name":"INET_E_CODE_INSTALL_BLOCKED_IMMERSIVE","features":[530]},{"name":"INET_E_CODE_INSTALL_SUPPRESSED","features":[530]},{"name":"INET_E_CONNECTION_TIMEOUT","features":[530]},{"name":"INET_E_DATA_NOT_AVAILABLE","features":[530]},{"name":"INET_E_DEFAULT_ACTION","features":[530]},{"name":"INET_E_DOMINJECTIONVALIDATION","features":[530]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_CSP","features":[530]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_INPRIVATE","features":[530]},{"name":"INET_E_DOWNLOAD_FAILURE","features":[530]},{"name":"INET_E_ERROR_FIRST","features":[530]},{"name":"INET_E_ERROR_LAST","features":[530]},{"name":"INET_E_FORBIDFRAMING","features":[530]},{"name":"INET_E_HSTS_CERTIFICATE_ERROR","features":[530]},{"name":"INET_E_INVALID_CERTIFICATE","features":[530]},{"name":"INET_E_INVALID_REQUEST","features":[530]},{"name":"INET_E_INVALID_URL","features":[530]},{"name":"INET_E_NO_SESSION","features":[530]},{"name":"INET_E_NO_VALID_MEDIA","features":[530]},{"name":"INET_E_OBJECT_NOT_FOUND","features":[530]},{"name":"INET_E_QUERYOPTION_UNKNOWN","features":[530]},{"name":"INET_E_REDIRECTING","features":[530]},{"name":"INET_E_REDIRECT_FAILED","features":[530]},{"name":"INET_E_REDIRECT_TO_DIR","features":[530]},{"name":"INET_E_RESERVED_1","features":[530]},{"name":"INET_E_RESERVED_2","features":[530]},{"name":"INET_E_RESERVED_3","features":[530]},{"name":"INET_E_RESERVED_4","features":[530]},{"name":"INET_E_RESERVED_5","features":[530]},{"name":"INET_E_RESOURCE_NOT_FOUND","features":[530]},{"name":"INET_E_RESULT_DISPATCHED","features":[530]},{"name":"INET_E_SECURITY_PROBLEM","features":[530]},{"name":"INET_E_TERMINATED_BIND","features":[530]},{"name":"INET_E_UNKNOWN_PROTOCOL","features":[530]},{"name":"INET_E_USE_DEFAULT_PROTOCOLHANDLER","features":[530]},{"name":"INET_E_USE_DEFAULT_SETTING","features":[530]},{"name":"INET_E_USE_EXTEND_BINDING","features":[530]},{"name":"INET_E_VTAB_SWITCH_FORCE_ENGINE","features":[530]},{"name":"INET_ZONE_MANAGER_CONSTANTS","features":[530]},{"name":"INTERNETFEATURELIST","features":[530]},{"name":"IPersistMoniker","features":[530]},{"name":"ISoftDistExt","features":[530]},{"name":"IUriBuilderFactory","features":[530]},{"name":"IUriContainer","features":[530]},{"name":"IWinInetCacheHints","features":[530]},{"name":"IWinInetCacheHints2","features":[530]},{"name":"IWinInetFileStream","features":[530]},{"name":"IWinInetHttpInfo","features":[530]},{"name":"IWinInetHttpTimeouts","features":[530]},{"name":"IWinInetInfo","features":[530]},{"name":"IWindowForBindingUI","features":[530]},{"name":"IWrappedProtocol","features":[530]},{"name":"IZoneIdentifier","features":[530]},{"name":"IZoneIdentifier2","features":[530]},{"name":"IsAsyncMoniker","features":[530]},{"name":"IsLoggingEnabledA","features":[303,530]},{"name":"IsLoggingEnabledW","features":[303,530]},{"name":"IsValidURL","features":[530]},{"name":"MAX_SIZE_SECURITY_ID","features":[530]},{"name":"MAX_ZONE_DESCRIPTION","features":[530]},{"name":"MAX_ZONE_PATH","features":[530]},{"name":"MIMETYPEPROP","features":[530]},{"name":"MKSYS_URLMONIKER","features":[530]},{"name":"MK_S_ASYNCHRONOUS","features":[530]},{"name":"MONIKERPROPERTY","features":[530]},{"name":"MUTZ_ACCEPT_WILDCARD_SCHEME","features":[530]},{"name":"MUTZ_DONT_UNESCAPE","features":[530]},{"name":"MUTZ_DONT_USE_CACHE","features":[530]},{"name":"MUTZ_ENFORCERESTRICTED","features":[530]},{"name":"MUTZ_FORCE_INTRANET_FLAGS","features":[530]},{"name":"MUTZ_IGNORE_ZONE_MAPPINGS","features":[530]},{"name":"MUTZ_ISFILE","features":[530]},{"name":"MUTZ_NOSAVEDFILECHECK","features":[530]},{"name":"MUTZ_REQUIRESAVEDFILECHECK","features":[530]},{"name":"MUTZ_RESERVED","features":[530]},{"name":"MkParseDisplayNameEx","features":[530]},{"name":"OIBDG_APARTMENTTHREADED","features":[530]},{"name":"OIBDG_DATAONLY","features":[530]},{"name":"OIBDG_FLAGS","features":[530]},{"name":"ObtainUserAgentString","features":[530]},{"name":"PARSEACTION","features":[530]},{"name":"PARSE_ANCHOR","features":[530]},{"name":"PARSE_CANONICALIZE","features":[530]},{"name":"PARSE_DECODE_IS_ESCAPE","features":[530]},{"name":"PARSE_DOCUMENT","features":[530]},{"name":"PARSE_DOMAIN","features":[530]},{"name":"PARSE_ENCODE_IS_UNESCAPE","features":[530]},{"name":"PARSE_ESCAPE","features":[530]},{"name":"PARSE_FRIENDLY","features":[530]},{"name":"PARSE_LOCATION","features":[530]},{"name":"PARSE_MIME","features":[530]},{"name":"PARSE_PATH_FROM_URL","features":[530]},{"name":"PARSE_ROOTDOCUMENT","features":[530]},{"name":"PARSE_SCHEMA","features":[530]},{"name":"PARSE_SECURITY_DOMAIN","features":[530]},{"name":"PARSE_SECURITY_URL","features":[530]},{"name":"PARSE_SERVER","features":[530]},{"name":"PARSE_SITE","features":[530]},{"name":"PARSE_UNESCAPE","features":[530]},{"name":"PARSE_URL_FROM_PATH","features":[530]},{"name":"PD_FORCE_SWITCH","features":[530]},{"name":"PI_APARTMENTTHREADED","features":[530]},{"name":"PI_CLASSINSTALL","features":[530]},{"name":"PI_CLSIDLOOKUP","features":[530]},{"name":"PI_DATAPROGRESS","features":[530]},{"name":"PI_FILTER_MODE","features":[530]},{"name":"PI_FLAGS","features":[530]},{"name":"PI_FORCE_ASYNC","features":[530]},{"name":"PI_LOADAPPDIRECT","features":[530]},{"name":"PI_MIMEVERIFICATION","features":[530]},{"name":"PI_NOMIMEHANDLER","features":[530]},{"name":"PI_PARSE_URL","features":[530]},{"name":"PI_PASSONBINDCTX","features":[530]},{"name":"PI_PREFERDEFAULTHANDLER","features":[530]},{"name":"PI_SYNCHRONOUS","features":[530]},{"name":"PI_USE_WORKERTHREAD","features":[530]},{"name":"POPUPLEVELPROP","features":[530]},{"name":"PROTOCOLDATA","features":[530]},{"name":"PROTOCOLFILTERDATA","features":[530]},{"name":"PROTOCOLFLAG_NO_PICS_CHECK","features":[530]},{"name":"PROTOCOL_ARGUMENT","features":[530]},{"name":"PSUACTION","features":[530]},{"name":"PSU_DEFAULT","features":[530]},{"name":"PSU_SECURITY_URL_ONLY","features":[530]},{"name":"PUAF","features":[530]},{"name":"PUAFOUT","features":[530]},{"name":"PUAFOUT_DEFAULT","features":[530]},{"name":"PUAFOUT_ISLOCKZONEPOLICY","features":[530]},{"name":"PUAF_ACCEPT_WILDCARD_SCHEME","features":[530]},{"name":"PUAF_CHECK_TIFS","features":[530]},{"name":"PUAF_DEFAULT","features":[530]},{"name":"PUAF_DEFAULTZONEPOL","features":[530]},{"name":"PUAF_DONTCHECKBOXINDIALOG","features":[530]},{"name":"PUAF_DONT_USE_CACHE","features":[530]},{"name":"PUAF_DRAGPROTOCOLCHECK","features":[530]},{"name":"PUAF_ENFORCERESTRICTED","features":[530]},{"name":"PUAF_FORCEUI_FOREGROUND","features":[530]},{"name":"PUAF_ISFILE","features":[530]},{"name":"PUAF_LMZ_LOCKED","features":[530]},{"name":"PUAF_LMZ_UNLOCKED","features":[530]},{"name":"PUAF_NOSAVEDFILECHECK","features":[530]},{"name":"PUAF_NOUI","features":[530]},{"name":"PUAF_NOUIIFLOCKED","features":[530]},{"name":"PUAF_NPL_USE_LOCKED_IF_RESTRICTED","features":[530]},{"name":"PUAF_REQUIRESAVEDFILECHECK","features":[530]},{"name":"PUAF_RESERVED1","features":[530]},{"name":"PUAF_RESERVED2","features":[530]},{"name":"PUAF_TRUSTED","features":[530]},{"name":"PUAF_WARN_IF_DENIED","features":[530]},{"name":"QUERYOPTION","features":[530]},{"name":"QUERY_CAN_NAVIGATE","features":[530]},{"name":"QUERY_CONTENT_ENCODING","features":[530]},{"name":"QUERY_CONTENT_TYPE","features":[530]},{"name":"QUERY_EXPIRATION_DATE","features":[530]},{"name":"QUERY_IS_CACHED","features":[530]},{"name":"QUERY_IS_CACHED_AND_USABLE_OFFLINE","features":[530]},{"name":"QUERY_IS_CACHED_OR_MAPPED","features":[530]},{"name":"QUERY_IS_INSTALLEDENTRY","features":[530]},{"name":"QUERY_IS_SAFE","features":[530]},{"name":"QUERY_IS_SECURE","features":[530]},{"name":"QUERY_RECOMBINE","features":[530]},{"name":"QUERY_REFRESH","features":[530]},{"name":"QUERY_TIME_OF_LAST_CHANGE","features":[530]},{"name":"QUERY_USES_CACHE","features":[530]},{"name":"QUERY_USES_HISTORYFOLDER","features":[530]},{"name":"QUERY_USES_NETWORK","features":[530]},{"name":"REMSECURITY_ATTRIBUTES","features":[303,530]},{"name":"RegisterBindStatusCallback","features":[530]},{"name":"RegisterFormatEnumerator","features":[530]},{"name":"RegisterMediaTypeClass","features":[530]},{"name":"RegisterMediaTypes","features":[530]},{"name":"ReleaseBindInfo","features":[303,314,306,427,530]},{"name":"RemBINDINFO","features":[303,530]},{"name":"RemFORMATETC","features":[530]},{"name":"RevokeBindStatusCallback","features":[530]},{"name":"RevokeFormatEnumerator","features":[530]},{"name":"SECURITY_IE_STATE_GREEN","features":[530]},{"name":"SECURITY_IE_STATE_RED","features":[530]},{"name":"SET_FEATURE_IN_REGISTRY","features":[530]},{"name":"SET_FEATURE_ON_PROCESS","features":[530]},{"name":"SET_FEATURE_ON_THREAD","features":[530]},{"name":"SET_FEATURE_ON_THREAD_INTERNET","features":[530]},{"name":"SET_FEATURE_ON_THREAD_INTRANET","features":[530]},{"name":"SET_FEATURE_ON_THREAD_LOCALMACHINE","features":[530]},{"name":"SET_FEATURE_ON_THREAD_RESTRICTED","features":[530]},{"name":"SET_FEATURE_ON_THREAD_TRUSTED","features":[530]},{"name":"SOFTDISTINFO","features":[530]},{"name":"SOFTDIST_ADSTATE_AVAILABLE","features":[530]},{"name":"SOFTDIST_ADSTATE_DOWNLOADED","features":[530]},{"name":"SOFTDIST_ADSTATE_INSTALLED","features":[530]},{"name":"SOFTDIST_ADSTATE_NONE","features":[530]},{"name":"SOFTDIST_FLAG_DELETE_SUBSCRIPTION","features":[530]},{"name":"SOFTDIST_FLAG_USAGE_AUTOINSTALL","features":[530]},{"name":"SOFTDIST_FLAG_USAGE_EMAIL","features":[530]},{"name":"SOFTDIST_FLAG_USAGE_PRECACHE","features":[530]},{"name":"SZM_CREATE","features":[530]},{"name":"SZM_DELETE","features":[530]},{"name":"SZM_FLAGS","features":[530]},{"name":"S_ASYNCHRONOUS","features":[530]},{"name":"SetAccessForIEAppContainer","features":[303,530]},{"name":"SetSoftwareUpdateAdvertisementState","features":[530]},{"name":"StartParam","features":[530]},{"name":"TRUSTEDDOWNLOADPROP","features":[530]},{"name":"UAS_EXACTLEGACY","features":[530]},{"name":"URLACTION_ACTIVEX_ALLOW_TDC","features":[530]},{"name":"URLACTION_ACTIVEX_CONFIRM_NOOBJECTSAFETY","features":[530]},{"name":"URLACTION_ACTIVEX_CURR_MAX","features":[530]},{"name":"URLACTION_ACTIVEX_DYNSRC_VIDEO_AND_ANIMATION","features":[530]},{"name":"URLACTION_ACTIVEX_MAX","features":[530]},{"name":"URLACTION_ACTIVEX_MIN","features":[530]},{"name":"URLACTION_ACTIVEX_NO_WEBOC_SCRIPT","features":[530]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DATA_SAFETY","features":[530]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DOMAINLIST","features":[530]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OBJECT_SAFETY","features":[530]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OPTIN","features":[530]},{"name":"URLACTION_ACTIVEX_OVERRIDE_REPURPOSEDETECTION","features":[530]},{"name":"URLACTION_ACTIVEX_OVERRIDE_SCRIPT_SAFETY","features":[530]},{"name":"URLACTION_ACTIVEX_RUN","features":[530]},{"name":"URLACTION_ACTIVEX_SCRIPTLET_RUN","features":[530]},{"name":"URLACTION_ACTIVEX_TREATASUNTRUSTED","features":[530]},{"name":"URLACTION_ALLOW_ACTIVEX_FILTERING","features":[530]},{"name":"URLACTION_ALLOW_ANTIMALWARE_SCANNING_OF_ACTIVEX","features":[530]},{"name":"URLACTION_ALLOW_APEVALUATION","features":[530]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO","features":[530]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO_PLUGINS","features":[530]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_APPCACHE_MANIFEST","features":[530]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_ACROSS_WINDOWS","features":[530]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_WITHIN_WINDOW","features":[530]},{"name":"URLACTION_ALLOW_CSS_EXPRESSIONS","features":[530]},{"name":"URLACTION_ALLOW_JSCRIPT_IE","features":[530]},{"name":"URLACTION_ALLOW_RENDER_LEGACY_DXTFILTERS","features":[530]},{"name":"URLACTION_ALLOW_RESTRICTEDPROTOCOLS","features":[530]},{"name":"URLACTION_ALLOW_STRUCTURED_STORAGE_SNIFFING","features":[530]},{"name":"URLACTION_ALLOW_VBSCRIPT_IE","features":[530]},{"name":"URLACTION_ALLOW_XDOMAIN_SUBFRAME_RESIZE","features":[530]},{"name":"URLACTION_ALLOW_XHR_EVALUATION","features":[530]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_OPT_OUT_ADDITION","features":[530]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_VIA_OPT_OUT","features":[530]},{"name":"URLACTION_AUTHENTICATE_CLIENT","features":[530]},{"name":"URLACTION_AUTOMATIC_ACTIVEX_UI","features":[530]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI","features":[530]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI_MIN","features":[530]},{"name":"URLACTION_BEHAVIOR_MIN","features":[530]},{"name":"URLACTION_BEHAVIOR_RUN","features":[530]},{"name":"URLACTION_CHANNEL_SOFTDIST_MAX","features":[530]},{"name":"URLACTION_CHANNEL_SOFTDIST_MIN","features":[530]},{"name":"URLACTION_CHANNEL_SOFTDIST_PERMISSIONS","features":[530]},{"name":"URLACTION_CLIENT_CERT_PROMPT","features":[530]},{"name":"URLACTION_COOKIES","features":[530]},{"name":"URLACTION_COOKIES_ENABLED","features":[530]},{"name":"URLACTION_COOKIES_SESSION","features":[530]},{"name":"URLACTION_COOKIES_SESSION_THIRD_PARTY","features":[530]},{"name":"URLACTION_COOKIES_THIRD_PARTY","features":[530]},{"name":"URLACTION_CREDENTIALS_USE","features":[530]},{"name":"URLACTION_CROSS_DOMAIN_DATA","features":[530]},{"name":"URLACTION_DOTNET_USERCONTROLS","features":[530]},{"name":"URLACTION_DOWNLOAD_CURR_MAX","features":[530]},{"name":"URLACTION_DOWNLOAD_MAX","features":[530]},{"name":"URLACTION_DOWNLOAD_MIN","features":[530]},{"name":"URLACTION_DOWNLOAD_SIGNED_ACTIVEX","features":[530]},{"name":"URLACTION_DOWNLOAD_UNSIGNED_ACTIVEX","features":[530]},{"name":"URLACTION_FEATURE_BLOCK_INPUT_PROMPTS","features":[530]},{"name":"URLACTION_FEATURE_CROSSDOMAIN_FOCUS_CHANGE","features":[530]},{"name":"URLACTION_FEATURE_DATA_BINDING","features":[530]},{"name":"URLACTION_FEATURE_FORCE_ADDR_AND_STATUS","features":[530]},{"name":"URLACTION_FEATURE_MIME_SNIFFING","features":[530]},{"name":"URLACTION_FEATURE_MIN","features":[530]},{"name":"URLACTION_FEATURE_SCRIPT_STATUS_BAR","features":[530]},{"name":"URLACTION_FEATURE_WINDOW_RESTRICTIONS","features":[530]},{"name":"URLACTION_FEATURE_ZONE_ELEVATION","features":[530]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_CANVAS","features":[530]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_TEXTTRACK","features":[530]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_WEBWORKER","features":[530]},{"name":"URLACTION_HTML_ALLOW_INDEXEDDB","features":[530]},{"name":"URLACTION_HTML_ALLOW_INJECTED_DYNAMIC_HTML","features":[530]},{"name":"URLACTION_HTML_ALLOW_WINDOW_CLOSE","features":[530]},{"name":"URLACTION_HTML_FONT_DOWNLOAD","features":[530]},{"name":"URLACTION_HTML_INCLUDE_FILE_PATH","features":[530]},{"name":"URLACTION_HTML_JAVA_RUN","features":[530]},{"name":"URLACTION_HTML_MAX","features":[530]},{"name":"URLACTION_HTML_META_REFRESH","features":[530]},{"name":"URLACTION_HTML_MIN","features":[530]},{"name":"URLACTION_HTML_MIXED_CONTENT","features":[530]},{"name":"URLACTION_HTML_REQUIRE_UTF8_DOCUMENT_CODEPAGE","features":[530]},{"name":"URLACTION_HTML_SUBFRAME_NAVIGATE","features":[530]},{"name":"URLACTION_HTML_SUBMIT_FORMS","features":[530]},{"name":"URLACTION_HTML_SUBMIT_FORMS_FROM","features":[530]},{"name":"URLACTION_HTML_SUBMIT_FORMS_TO","features":[530]},{"name":"URLACTION_HTML_USERDATA_SAVE","features":[530]},{"name":"URLACTION_INFODELIVERY_CURR_MAX","features":[530]},{"name":"URLACTION_INFODELIVERY_MAX","features":[530]},{"name":"URLACTION_INFODELIVERY_MIN","features":[530]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_CHANNELS","features":[530]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_SUBSCRIPTIONS","features":[530]},{"name":"URLACTION_INFODELIVERY_NO_CHANNEL_LOGGING","features":[530]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_CHANNELS","features":[530]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_SUBSCRIPTIONS","features":[530]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_CHANNELS","features":[530]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_SUBSCRIPTIONS","features":[530]},{"name":"URLACTION_INPRIVATE_BLOCKING","features":[530]},{"name":"URLACTION_JAVA_CURR_MAX","features":[530]},{"name":"URLACTION_JAVA_MAX","features":[530]},{"name":"URLACTION_JAVA_MIN","features":[530]},{"name":"URLACTION_JAVA_PERMISSIONS","features":[530]},{"name":"URLACTION_LOOSE_XAML","features":[530]},{"name":"URLACTION_LOWRIGHTS","features":[530]},{"name":"URLACTION_MIN","features":[530]},{"name":"URLACTION_NETWORK_CURR_MAX","features":[530]},{"name":"URLACTION_NETWORK_MAX","features":[530]},{"name":"URLACTION_NETWORK_MIN","features":[530]},{"name":"URLACTION_PLUGGABLE_PROTOCOL_XHR","features":[530]},{"name":"URLACTION_SCRIPT_CURR_MAX","features":[530]},{"name":"URLACTION_SCRIPT_JAVA_USE","features":[530]},{"name":"URLACTION_SCRIPT_MAX","features":[530]},{"name":"URLACTION_SCRIPT_MIN","features":[530]},{"name":"URLACTION_SCRIPT_NAVIGATE","features":[530]},{"name":"URLACTION_SCRIPT_OVERRIDE_SAFETY","features":[530]},{"name":"URLACTION_SCRIPT_PASTE","features":[530]},{"name":"URLACTION_SCRIPT_RUN","features":[530]},{"name":"URLACTION_SCRIPT_SAFE_ACTIVEX","features":[530]},{"name":"URLACTION_SCRIPT_XSSFILTER","features":[530]},{"name":"URLACTION_SHELL_ALLOW_CROSS_SITE_SHARE","features":[530]},{"name":"URLACTION_SHELL_CURR_MAX","features":[530]},{"name":"URLACTION_SHELL_ENHANCED_DRAGDROP_SECURITY","features":[530]},{"name":"URLACTION_SHELL_EXECUTE_HIGHRISK","features":[530]},{"name":"URLACTION_SHELL_EXECUTE_LOWRISK","features":[530]},{"name":"URLACTION_SHELL_EXECUTE_MODRISK","features":[530]},{"name":"URLACTION_SHELL_EXTENSIONSECURITY","features":[530]},{"name":"URLACTION_SHELL_FILE_DOWNLOAD","features":[530]},{"name":"URLACTION_SHELL_INSTALL_DTITEMS","features":[530]},{"name":"URLACTION_SHELL_MAX","features":[530]},{"name":"URLACTION_SHELL_MIN","features":[530]},{"name":"URLACTION_SHELL_MOVE_OR_COPY","features":[530]},{"name":"URLACTION_SHELL_POPUPMGR","features":[530]},{"name":"URLACTION_SHELL_PREVIEW","features":[530]},{"name":"URLACTION_SHELL_REMOTEQUERY","features":[530]},{"name":"URLACTION_SHELL_RTF_OBJECTS_LOAD","features":[530]},{"name":"URLACTION_SHELL_SECURE_DRAGSOURCE","features":[530]},{"name":"URLACTION_SHELL_SHARE","features":[530]},{"name":"URLACTION_SHELL_SHELLEXECUTE","features":[530]},{"name":"URLACTION_SHELL_TOCTOU_RISK","features":[530]},{"name":"URLACTION_SHELL_VERB","features":[530]},{"name":"URLACTION_SHELL_WEBVIEW_VERB","features":[530]},{"name":"URLACTION_WINDOWS_BROWSER_APPLICATIONS","features":[530]},{"name":"URLACTION_WINFX_SETUP","features":[530]},{"name":"URLACTION_XPS_DOCUMENTS","features":[530]},{"name":"URLDownloadToCacheFileA","features":[530]},{"name":"URLDownloadToCacheFileW","features":[530]},{"name":"URLDownloadToFileA","features":[530]},{"name":"URLDownloadToFileW","features":[530]},{"name":"URLMON_OPTION_URL_ENCODING","features":[530]},{"name":"URLMON_OPTION_USERAGENT","features":[530]},{"name":"URLMON_OPTION_USERAGENT_REFRESH","features":[530]},{"name":"URLMON_OPTION_USE_BINDSTRINGCREDS","features":[530]},{"name":"URLMON_OPTION_USE_BROWSERAPPSDOCUMENTS","features":[530]},{"name":"URLOSTRM_GETNEWESTVERSION","features":[530]},{"name":"URLOSTRM_USECACHEDCOPY","features":[530]},{"name":"URLOSTRM_USECACHEDCOPY_ONLY","features":[530]},{"name":"URLOpenBlockingStreamA","features":[530]},{"name":"URLOpenBlockingStreamW","features":[530]},{"name":"URLOpenPullStreamA","features":[530]},{"name":"URLOpenPullStreamW","features":[530]},{"name":"URLOpenStreamA","features":[530]},{"name":"URLOpenStreamW","features":[530]},{"name":"URLPOLICY_ACTIVEX_CHECK_LIST","features":[530]},{"name":"URLPOLICY_ALLOW","features":[530]},{"name":"URLPOLICY_AUTHENTICATE_CHALLENGE_RESPONSE","features":[530]},{"name":"URLPOLICY_AUTHENTICATE_CLEARTEXT_OK","features":[530]},{"name":"URLPOLICY_AUTHENTICATE_MUTUAL_ONLY","features":[530]},{"name":"URLPOLICY_BEHAVIOR_CHECK_LIST","features":[530]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_AUTOINSTALL","features":[530]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PRECACHE","features":[530]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PROHIBIT","features":[530]},{"name":"URLPOLICY_CREDENTIALS_ANONYMOUS_ONLY","features":[530]},{"name":"URLPOLICY_CREDENTIALS_CONDITIONAL_PROMPT","features":[530]},{"name":"URLPOLICY_CREDENTIALS_MUST_PROMPT_USER","features":[530]},{"name":"URLPOLICY_CREDENTIALS_SILENT_LOGON_OK","features":[530]},{"name":"URLPOLICY_DISALLOW","features":[530]},{"name":"URLPOLICY_DONTCHECKDLGBOX","features":[530]},{"name":"URLPOLICY_JAVA_CUSTOM","features":[530]},{"name":"URLPOLICY_JAVA_HIGH","features":[530]},{"name":"URLPOLICY_JAVA_LOW","features":[530]},{"name":"URLPOLICY_JAVA_MEDIUM","features":[530]},{"name":"URLPOLICY_JAVA_PROHIBIT","features":[530]},{"name":"URLPOLICY_LOG_ON_ALLOW","features":[530]},{"name":"URLPOLICY_LOG_ON_DISALLOW","features":[530]},{"name":"URLPOLICY_MASK_PERMISSIONS","features":[530]},{"name":"URLPOLICY_NOTIFY_ON_ALLOW","features":[530]},{"name":"URLPOLICY_NOTIFY_ON_DISALLOW","features":[530]},{"name":"URLPOLICY_QUERY","features":[530]},{"name":"URLTEMPLATE","features":[530]},{"name":"URLTEMPLATE_CUSTOM","features":[530]},{"name":"URLTEMPLATE_HIGH","features":[530]},{"name":"URLTEMPLATE_LOW","features":[530]},{"name":"URLTEMPLATE_MEDHIGH","features":[530]},{"name":"URLTEMPLATE_MEDIUM","features":[530]},{"name":"URLTEMPLATE_MEDLOW","features":[530]},{"name":"URLTEMPLATE_PREDEFINED_MAX","features":[530]},{"name":"URLTEMPLATE_PREDEFINED_MIN","features":[530]},{"name":"URLZONE","features":[530]},{"name":"URLZONEREG","features":[530]},{"name":"URLZONEREG_DEFAULT","features":[530]},{"name":"URLZONEREG_HKCU","features":[530]},{"name":"URLZONEREG_HKLM","features":[530]},{"name":"URLZONE_ESC_FLAG","features":[530]},{"name":"URLZONE_INTERNET","features":[530]},{"name":"URLZONE_INTRANET","features":[530]},{"name":"URLZONE_INVALID","features":[530]},{"name":"URLZONE_LOCAL_MACHINE","features":[530]},{"name":"URLZONE_PREDEFINED_MAX","features":[530]},{"name":"URLZONE_PREDEFINED_MIN","features":[530]},{"name":"URLZONE_TRUSTED","features":[530]},{"name":"URLZONE_UNTRUSTED","features":[530]},{"name":"URLZONE_USER_MAX","features":[530]},{"name":"URLZONE_USER_MIN","features":[530]},{"name":"URL_ENCODING","features":[530]},{"name":"URL_ENCODING_DISABLE_UTF8","features":[530]},{"name":"URL_ENCODING_ENABLE_UTF8","features":[530]},{"name":"URL_ENCODING_NONE","features":[530]},{"name":"URL_MK_LEGACY","features":[530]},{"name":"URL_MK_NO_CANONICALIZE","features":[530]},{"name":"URL_MK_UNIFORM","features":[530]},{"name":"USE_SRC_URL","features":[530]},{"name":"UriBuilder_USE_ORIGINAL_FLAGS","features":[530]},{"name":"Uri_DISPLAY_IDN_HOST","features":[530]},{"name":"Uri_DISPLAY_NO_FRAGMENT","features":[530]},{"name":"Uri_DISPLAY_NO_PUNYCODE","features":[530]},{"name":"Uri_ENCODING_HOST_IS_IDN","features":[530]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_CP","features":[530]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_UTF8","features":[530]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_CP","features":[530]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_PERCENT_ENCODED_UTF8","features":[530]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_CP","features":[530]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_PERCENT_ENCODED_UTF8","features":[530]},{"name":"Uri_HOST_DNS","features":[530]},{"name":"Uri_HOST_IDN","features":[530]},{"name":"Uri_HOST_IPV4","features":[530]},{"name":"Uri_HOST_IPV6","features":[530]},{"name":"Uri_HOST_TYPE","features":[530]},{"name":"Uri_HOST_UNKNOWN","features":[530]},{"name":"Uri_PUNYCODE_IDN_HOST","features":[530]},{"name":"UrlMkGetSessionOption","features":[530]},{"name":"UrlMkSetSessionOption","features":[530]},{"name":"WININETINFO_OPTION_LOCK_HANDLE","features":[530]},{"name":"WriteHitLogging","features":[303,530]},{"name":"ZAFLAGS","features":[530]},{"name":"ZAFLAGS_ADD_SITES","features":[530]},{"name":"ZAFLAGS_CUSTOM_EDIT","features":[530]},{"name":"ZAFLAGS_DETECT_INTRANET","features":[530]},{"name":"ZAFLAGS_INCLUDE_INTRANET_SITES","features":[530]},{"name":"ZAFLAGS_INCLUDE_PROXY_OVERRIDE","features":[530]},{"name":"ZAFLAGS_NO_CACHE","features":[530]},{"name":"ZAFLAGS_NO_UI","features":[530]},{"name":"ZAFLAGS_REQUIRE_VERIFICATION","features":[530]},{"name":"ZAFLAGS_SUPPORTS_VERIFICATION","features":[530]},{"name":"ZAFLAGS_UNC_AS_INTRANET","features":[530]},{"name":"ZAFLAGS_USE_LOCKED_ZONES","features":[530]},{"name":"ZAFLAGS_VERIFY_TEMPLATE_SETTINGS","features":[530]},{"name":"ZONEATTRIBUTES","features":[530]}],"542":[{"name":"APPDATA","features":[531]},{"name":"APPSTATISTICS","features":[531]},{"name":"APPTYPE_LIBRARY","features":[531]},{"name":"APPTYPE_SERVER","features":[531]},{"name":"APPTYPE_SWC","features":[531]},{"name":"APPTYPE_UNKNOWN","features":[531]},{"name":"AppDomainHelper","features":[531]},{"name":"ApplicationProcessRecycleInfo","features":[303,531]},{"name":"ApplicationProcessStatistics","features":[531]},{"name":"ApplicationProcessSummary","features":[303,531]},{"name":"ApplicationSummary","features":[531]},{"name":"AutoSvcs_Error_Constants","features":[531]},{"name":"ByotServerEx","features":[531]},{"name":"CLSIDDATA","features":[531]},{"name":"CLSIDDATA2","features":[531]},{"name":"COMAdmin32BitComponent","features":[531]},{"name":"COMAdmin64BitComponent","features":[531]},{"name":"COMAdminAccessChecksApplicationComponentLevel","features":[531]},{"name":"COMAdminAccessChecksApplicationLevel","features":[531]},{"name":"COMAdminAccessChecksLevelOptions","features":[531]},{"name":"COMAdminActivationInproc","features":[531]},{"name":"COMAdminActivationLocal","features":[531]},{"name":"COMAdminActivationOptions","features":[531]},{"name":"COMAdminApplicationExportOptions","features":[531]},{"name":"COMAdminApplicationInstallOptions","features":[531]},{"name":"COMAdminAuthenticationCall","features":[531]},{"name":"COMAdminAuthenticationCapabilitiesDynamicCloaking","features":[531]},{"name":"COMAdminAuthenticationCapabilitiesNone","features":[531]},{"name":"COMAdminAuthenticationCapabilitiesOptions","features":[531]},{"name":"COMAdminAuthenticationCapabilitiesSecureReference","features":[531]},{"name":"COMAdminAuthenticationCapabilitiesStaticCloaking","features":[531]},{"name":"COMAdminAuthenticationConnect","features":[531]},{"name":"COMAdminAuthenticationDefault","features":[531]},{"name":"COMAdminAuthenticationIntegrity","features":[531]},{"name":"COMAdminAuthenticationLevelOptions","features":[531]},{"name":"COMAdminAuthenticationNone","features":[531]},{"name":"COMAdminAuthenticationPacket","features":[531]},{"name":"COMAdminAuthenticationPrivacy","features":[531]},{"name":"COMAdminCatalog","features":[531]},{"name":"COMAdminCatalogCollection","features":[531]},{"name":"COMAdminCatalogObject","features":[531]},{"name":"COMAdminCompFlagAlreadyInstalled","features":[531]},{"name":"COMAdminCompFlagCOMPlusPropertiesFound","features":[531]},{"name":"COMAdminCompFlagInterfacesFound","features":[531]},{"name":"COMAdminCompFlagNotInApplication","features":[531]},{"name":"COMAdminCompFlagProxyFound","features":[531]},{"name":"COMAdminCompFlagTypeInfoFound","features":[531]},{"name":"COMAdminComponentFlags","features":[531]},{"name":"COMAdminComponentType","features":[531]},{"name":"COMAdminErrAlreadyInstalled","features":[531]},{"name":"COMAdminErrAppDirNotFound","features":[531]},{"name":"COMAdminErrAppFileReadFail","features":[531]},{"name":"COMAdminErrAppFileVersion","features":[531]},{"name":"COMAdminErrAppFileWriteFail","features":[531]},{"name":"COMAdminErrAppNotRunning","features":[531]},{"name":"COMAdminErrApplicationExists","features":[531]},{"name":"COMAdminErrApplidMatchesClsid","features":[531]},{"name":"COMAdminErrAuthenticationLevel","features":[531]},{"name":"COMAdminErrBadPath","features":[531]},{"name":"COMAdminErrBadRegistryLibID","features":[531]},{"name":"COMAdminErrBadRegistryProgID","features":[531]},{"name":"COMAdminErrBasePartitionOnly","features":[531]},{"name":"COMAdminErrCLSIDOrIIDMismatch","features":[531]},{"name":"COMAdminErrCanNotExportAppProxy","features":[531]},{"name":"COMAdminErrCanNotExportSystemApp","features":[531]},{"name":"COMAdminErrCanNotStartApp","features":[531]},{"name":"COMAdminErrCanNotSubscribeToComponent","features":[531]},{"name":"COMAdminErrCannotCopyEventClass","features":[531]},{"name":"COMAdminErrCantCopyFile","features":[531]},{"name":"COMAdminErrCantRecycleLibraryApps","features":[531]},{"name":"COMAdminErrCantRecycleServiceApps","features":[531]},{"name":"COMAdminErrCatBitnessMismatch","features":[531]},{"name":"COMAdminErrCatPauseResumeNotSupported","features":[531]},{"name":"COMAdminErrCatServerFault","features":[531]},{"name":"COMAdminErrCatUnacceptableBitness","features":[531]},{"name":"COMAdminErrCatWrongAppBitnessBitness","features":[531]},{"name":"COMAdminErrCoReqCompInstalled","features":[531]},{"name":"COMAdminErrCompFileBadTLB","features":[531]},{"name":"COMAdminErrCompFileClassNotAvail","features":[531]},{"name":"COMAdminErrCompFileDoesNotExist","features":[531]},{"name":"COMAdminErrCompFileGetClassObj","features":[531]},{"name":"COMAdminErrCompFileLoadDLLFail","features":[531]},{"name":"COMAdminErrCompFileNoRegistrar","features":[531]},{"name":"COMAdminErrCompFileNotInstallable","features":[531]},{"name":"COMAdminErrCompMoveBadDest","features":[531]},{"name":"COMAdminErrCompMoveDest","features":[531]},{"name":"COMAdminErrCompMoveLocked","features":[531]},{"name":"COMAdminErrCompMovePrivate","features":[531]},{"name":"COMAdminErrCompMoveSource","features":[531]},{"name":"COMAdminErrComponentExists","features":[531]},{"name":"COMAdminErrDllLoadFailed","features":[531]},{"name":"COMAdminErrDllRegisterServer","features":[531]},{"name":"COMAdminErrDuplicatePartitionName","features":[531]},{"name":"COMAdminErrEventClassCannotBeSubscriber","features":[531]},{"name":"COMAdminErrImportedComponentsNotAllowed","features":[531]},{"name":"COMAdminErrInvalidPartition","features":[531]},{"name":"COMAdminErrInvalidUserids","features":[531]},{"name":"COMAdminErrKeyMissing","features":[531]},{"name":"COMAdminErrLibAppProxyIncompatible","features":[531]},{"name":"COMAdminErrMigSchemaNotFound","features":[531]},{"name":"COMAdminErrMigVersionNotSupported","features":[531]},{"name":"COMAdminErrNoRegistryCLSID","features":[531]},{"name":"COMAdminErrNoServerShare","features":[531]},{"name":"COMAdminErrNoUser","features":[531]},{"name":"COMAdminErrNotChangeable","features":[531]},{"name":"COMAdminErrNotDeletable","features":[531]},{"name":"COMAdminErrNotInRegistry","features":[531]},{"name":"COMAdminErrObjectDoesNotExist","features":[531]},{"name":"COMAdminErrObjectErrors","features":[531]},{"name":"COMAdminErrObjectExists","features":[531]},{"name":"COMAdminErrObjectInvalid","features":[531]},{"name":"COMAdminErrObjectNotPoolable","features":[531]},{"name":"COMAdminErrObjectParentMissing","features":[531]},{"name":"COMAdminErrPartitionInUse","features":[531]},{"name":"COMAdminErrPartitionMsiOnly","features":[531]},{"name":"COMAdminErrPausedProcessMayNotBeRecycled","features":[531]},{"name":"COMAdminErrProcessAlreadyRecycled","features":[531]},{"name":"COMAdminErrPropertyOverflow","features":[531]},{"name":"COMAdminErrPropertySaveFailed","features":[531]},{"name":"COMAdminErrQueuingServiceNotAvailable","features":[531]},{"name":"COMAdminErrRegFileCorrupt","features":[531]},{"name":"COMAdminErrRegdbAlreadyRunning","features":[531]},{"name":"COMAdminErrRegdbNotInitialized","features":[531]},{"name":"COMAdminErrRegdbNotOpen","features":[531]},{"name":"COMAdminErrRegdbSystemErr","features":[531]},{"name":"COMAdminErrRegisterTLB","features":[531]},{"name":"COMAdminErrRegistrarFailed","features":[531]},{"name":"COMAdminErrRemoteInterface","features":[531]},{"name":"COMAdminErrRequiresDifferentPlatform","features":[531]},{"name":"COMAdminErrRoleDoesNotExist","features":[531]},{"name":"COMAdminErrRoleExists","features":[531]},{"name":"COMAdminErrServiceNotInstalled","features":[531]},{"name":"COMAdminErrSession","features":[531]},{"name":"COMAdminErrStartAppDisabled","features":[531]},{"name":"COMAdminErrStartAppNeedsComponents","features":[531]},{"name":"COMAdminErrSystemApp","features":[531]},{"name":"COMAdminErrUserPasswdNotValid","features":[531]},{"name":"COMAdminErrorCodes","features":[531]},{"name":"COMAdminExportApplicationProxy","features":[531]},{"name":"COMAdminExportForceOverwriteOfFiles","features":[531]},{"name":"COMAdminExportIn10Format","features":[531]},{"name":"COMAdminExportNoUsers","features":[531]},{"name":"COMAdminExportUsers","features":[531]},{"name":"COMAdminFileFlagAlreadyInstalled","features":[531]},{"name":"COMAdminFileFlagBadTLB","features":[531]},{"name":"COMAdminFileFlagCOM","features":[531]},{"name":"COMAdminFileFlagClassNotAvailable","features":[531]},{"name":"COMAdminFileFlagContainsComp","features":[531]},{"name":"COMAdminFileFlagContainsPS","features":[531]},{"name":"COMAdminFileFlagContainsTLB","features":[531]},{"name":"COMAdminFileFlagDLLRegsvrFailed","features":[531]},{"name":"COMAdminFileFlagDoesNotExist","features":[531]},{"name":"COMAdminFileFlagError","features":[531]},{"name":"COMAdminFileFlagGetClassObjFailed","features":[531]},{"name":"COMAdminFileFlagLoadable","features":[531]},{"name":"COMAdminFileFlagNoRegistrar","features":[531]},{"name":"COMAdminFileFlagRegTLBFailed","features":[531]},{"name":"COMAdminFileFlagRegistrar","features":[531]},{"name":"COMAdminFileFlagRegistrarFailed","features":[531]},{"name":"COMAdminFileFlagSelfReg","features":[531]},{"name":"COMAdminFileFlagSelfUnReg","features":[531]},{"name":"COMAdminFileFlagUnloadableDLL","features":[531]},{"name":"COMAdminFileFlags","features":[531]},{"name":"COMAdminImpersonationAnonymous","features":[531]},{"name":"COMAdminImpersonationDelegate","features":[531]},{"name":"COMAdminImpersonationIdentify","features":[531]},{"name":"COMAdminImpersonationImpersonate","features":[531]},{"name":"COMAdminImpersonationLevelOptions","features":[531]},{"name":"COMAdminInUse","features":[531]},{"name":"COMAdminInUseByCatalog","features":[531]},{"name":"COMAdminInUseByRegistryClsid","features":[531]},{"name":"COMAdminInUseByRegistryProxyStub","features":[531]},{"name":"COMAdminInUseByRegistryTypeLib","features":[531]},{"name":"COMAdminInUseByRegistryUnknown","features":[531]},{"name":"COMAdminInstallForceOverwriteOfFiles","features":[531]},{"name":"COMAdminInstallNoUsers","features":[531]},{"name":"COMAdminInstallUsers","features":[531]},{"name":"COMAdminNotInUse","features":[531]},{"name":"COMAdminOS","features":[531]},{"name":"COMAdminOSNotInitialized","features":[531]},{"name":"COMAdminOSUnknown","features":[531]},{"name":"COMAdminOSWindows2000","features":[531]},{"name":"COMAdminOSWindows2000AdvancedServer","features":[531]},{"name":"COMAdminOSWindows2000Unknown","features":[531]},{"name":"COMAdminOSWindows3_1","features":[531]},{"name":"COMAdminOSWindows7DatacenterServer","features":[531]},{"name":"COMAdminOSWindows7EnterpriseServer","features":[531]},{"name":"COMAdminOSWindows7Personal","features":[531]},{"name":"COMAdminOSWindows7Professional","features":[531]},{"name":"COMAdminOSWindows7StandardServer","features":[531]},{"name":"COMAdminOSWindows7WebServer","features":[531]},{"name":"COMAdminOSWindows8DatacenterServer","features":[531]},{"name":"COMAdminOSWindows8EnterpriseServer","features":[531]},{"name":"COMAdminOSWindows8Personal","features":[531]},{"name":"COMAdminOSWindows8Professional","features":[531]},{"name":"COMAdminOSWindows8StandardServer","features":[531]},{"name":"COMAdminOSWindows8WebServer","features":[531]},{"name":"COMAdminOSWindows9x","features":[531]},{"name":"COMAdminOSWindowsBlueDatacenterServer","features":[531]},{"name":"COMAdminOSWindowsBlueEnterpriseServer","features":[531]},{"name":"COMAdminOSWindowsBluePersonal","features":[531]},{"name":"COMAdminOSWindowsBlueProfessional","features":[531]},{"name":"COMAdminOSWindowsBlueStandardServer","features":[531]},{"name":"COMAdminOSWindowsBlueWebServer","features":[531]},{"name":"COMAdminOSWindowsLonghornDatacenterServer","features":[531]},{"name":"COMAdminOSWindowsLonghornEnterpriseServer","features":[531]},{"name":"COMAdminOSWindowsLonghornPersonal","features":[531]},{"name":"COMAdminOSWindowsLonghornProfessional","features":[531]},{"name":"COMAdminOSWindowsLonghornStandardServer","features":[531]},{"name":"COMAdminOSWindowsLonghornWebServer","features":[531]},{"name":"COMAdminOSWindowsNETDatacenterServer","features":[531]},{"name":"COMAdminOSWindowsNETEnterpriseServer","features":[531]},{"name":"COMAdminOSWindowsNETStandardServer","features":[531]},{"name":"COMAdminOSWindowsNETWebServer","features":[531]},{"name":"COMAdminOSWindowsXPPersonal","features":[531]},{"name":"COMAdminOSWindowsXPProfessional","features":[531]},{"name":"COMAdminQCMessageAuthenticateOff","features":[531]},{"name":"COMAdminQCMessageAuthenticateOn","features":[531]},{"name":"COMAdminQCMessageAuthenticateOptions","features":[531]},{"name":"COMAdminQCMessageAuthenticateSecureApps","features":[531]},{"name":"COMAdminServiceContinuePending","features":[531]},{"name":"COMAdminServiceLoadBalanceRouter","features":[531]},{"name":"COMAdminServiceOptions","features":[531]},{"name":"COMAdminServicePausePending","features":[531]},{"name":"COMAdminServicePaused","features":[531]},{"name":"COMAdminServiceRunning","features":[531]},{"name":"COMAdminServiceStartPending","features":[531]},{"name":"COMAdminServiceStatusOptions","features":[531]},{"name":"COMAdminServiceStopPending","features":[531]},{"name":"COMAdminServiceStopped","features":[531]},{"name":"COMAdminServiceUnknownState","features":[531]},{"name":"COMAdminSynchronizationIgnored","features":[531]},{"name":"COMAdminSynchronizationNone","features":[531]},{"name":"COMAdminSynchronizationOptions","features":[531]},{"name":"COMAdminSynchronizationRequired","features":[531]},{"name":"COMAdminSynchronizationRequiresNew","features":[531]},{"name":"COMAdminSynchronizationSupported","features":[531]},{"name":"COMAdminThreadingModelApartment","features":[531]},{"name":"COMAdminThreadingModelBoth","features":[531]},{"name":"COMAdminThreadingModelFree","features":[531]},{"name":"COMAdminThreadingModelMain","features":[531]},{"name":"COMAdminThreadingModelNeutral","features":[531]},{"name":"COMAdminThreadingModelNotSpecified","features":[531]},{"name":"COMAdminThreadingModels","features":[531]},{"name":"COMAdminTransactionIgnored","features":[531]},{"name":"COMAdminTransactionNone","features":[531]},{"name":"COMAdminTransactionOptions","features":[531]},{"name":"COMAdminTransactionRequired","features":[531]},{"name":"COMAdminTransactionRequiresNew","features":[531]},{"name":"COMAdminTransactionSupported","features":[531]},{"name":"COMAdminTxIsolationLevelAny","features":[531]},{"name":"COMAdminTxIsolationLevelOptions","features":[531]},{"name":"COMAdminTxIsolationLevelReadCommitted","features":[531]},{"name":"COMAdminTxIsolationLevelReadUnCommitted","features":[531]},{"name":"COMAdminTxIsolationLevelRepeatableRead","features":[531]},{"name":"COMAdminTxIsolationLevelSerializable","features":[531]},{"name":"COMEvents","features":[531]},{"name":"COMPLUS_APPTYPE","features":[531]},{"name":"COMSVCSEVENTINFO","features":[531]},{"name":"CRMClerk","features":[531]},{"name":"CRMFLAGS","features":[531]},{"name":"CRMFLAG_FORGETTARGET","features":[531]},{"name":"CRMFLAG_REPLAYINPROGRESS","features":[531]},{"name":"CRMFLAG_WRITTENDURINGABORT","features":[531]},{"name":"CRMFLAG_WRITTENDURINGCOMMIT","features":[531]},{"name":"CRMFLAG_WRITTENDURINGPREPARE","features":[531]},{"name":"CRMFLAG_WRITTENDURINGRECOVERY","features":[531]},{"name":"CRMFLAG_WRITTENDURINGREPLAY","features":[531]},{"name":"CRMREGFLAGS","features":[531]},{"name":"CRMREGFLAG_ABORTPHASE","features":[531]},{"name":"CRMREGFLAG_ALLPHASES","features":[531]},{"name":"CRMREGFLAG_COMMITPHASE","features":[531]},{"name":"CRMREGFLAG_FAILIFINDOUBTSREMAIN","features":[531]},{"name":"CRMREGFLAG_PREPAREPHASE","features":[531]},{"name":"CRMRecoveryClerk","features":[531]},{"name":"CRR_ACTIVATION_LIMIT","features":[531]},{"name":"CRR_CALL_LIMIT","features":[531]},{"name":"CRR_LIFETIME_LIMIT","features":[531]},{"name":"CRR_MEMORY_LIMIT","features":[531]},{"name":"CRR_NO_REASON_SUPPLIED","features":[531]},{"name":"CRR_RECYCLED_FROM_UI","features":[531]},{"name":"CSC_BindToPoolThread","features":[531]},{"name":"CSC_Binding","features":[531]},{"name":"CSC_COMTIIntrinsicsConfig","features":[531]},{"name":"CSC_CreateTransactionIfNecessary","features":[531]},{"name":"CSC_DontUseTracker","features":[531]},{"name":"CSC_IISIntrinsicsConfig","features":[531]},{"name":"CSC_IfContainerIsSynchronized","features":[531]},{"name":"CSC_IfContainerIsTransactional","features":[531]},{"name":"CSC_Ignore","features":[531]},{"name":"CSC_Inherit","features":[531]},{"name":"CSC_InheritCOMTIIntrinsics","features":[531]},{"name":"CSC_InheritIISIntrinsics","features":[531]},{"name":"CSC_InheritPartition","features":[531]},{"name":"CSC_InheritSxs","features":[531]},{"name":"CSC_InheritanceConfig","features":[531]},{"name":"CSC_MTAThreadPool","features":[531]},{"name":"CSC_NewPartition","features":[531]},{"name":"CSC_NewSxs","features":[531]},{"name":"CSC_NewSynchronization","features":[531]},{"name":"CSC_NewSynchronizationIfNecessary","features":[531]},{"name":"CSC_NewTransaction","features":[531]},{"name":"CSC_NoBinding","features":[531]},{"name":"CSC_NoCOMTIIntrinsics","features":[531]},{"name":"CSC_NoIISIntrinsics","features":[531]},{"name":"CSC_NoPartition","features":[531]},{"name":"CSC_NoSxs","features":[531]},{"name":"CSC_NoSynchronization","features":[531]},{"name":"CSC_NoTransaction","features":[531]},{"name":"CSC_PartitionConfig","features":[531]},{"name":"CSC_STAThreadPool","features":[531]},{"name":"CSC_SxsConfig","features":[531]},{"name":"CSC_SynchronizationConfig","features":[531]},{"name":"CSC_ThreadPool","features":[531]},{"name":"CSC_ThreadPoolInherit","features":[531]},{"name":"CSC_ThreadPoolNone","features":[531]},{"name":"CSC_TrackerConfig","features":[531]},{"name":"CSC_TransactionConfig","features":[531]},{"name":"CSC_UseTracker","features":[531]},{"name":"CServiceConfig","features":[531]},{"name":"ClrAssemblyLocator","features":[531]},{"name":"CoCreateActivity","features":[531]},{"name":"CoEnterServiceDomain","features":[531]},{"name":"CoGetDefaultContext","features":[354,531]},{"name":"CoLeaveServiceDomain","features":[531]},{"name":"CoMTSLocator","features":[531]},{"name":"ComServiceEvents","features":[531]},{"name":"ComSystemAppEventData","features":[531]},{"name":"ComponentHangMonitorInfo","features":[303,531]},{"name":"ComponentStatistics","features":[531]},{"name":"ComponentSummary","features":[531]},{"name":"ContextInfo","features":[354,531]},{"name":"ContextInfo2","features":[354,531]},{"name":"CrmLogRecordRead","features":[354,531]},{"name":"CrmTransactionState","features":[531]},{"name":"DATA_NOT_AVAILABLE","features":[531]},{"name":"DUMPTYPE","features":[531]},{"name":"DUMPTYPE_FULL","features":[531]},{"name":"DUMPTYPE_MINI","features":[531]},{"name":"DUMPTYPE_NONE","features":[531]},{"name":"DispenserManager","features":[531]},{"name":"Dummy30040732","features":[531]},{"name":"EventServer","features":[531]},{"name":"GATD_INCLUDE_APPLICATION_NAME","features":[531]},{"name":"GATD_INCLUDE_CLASS_NAME","features":[531]},{"name":"GATD_INCLUDE_LIBRARY_APPS","features":[531]},{"name":"GATD_INCLUDE_PROCESS_EXE_NAME","features":[531]},{"name":"GATD_INCLUDE_SWC","features":[531]},{"name":"GUID_STRING_SIZE","features":[531]},{"name":"GetAppTrackerDataFlags","features":[531]},{"name":"GetDispenserManager","features":[531]},{"name":"GetManagedExtensions","features":[531]},{"name":"GetSecurityCallContextAppObject","features":[531]},{"name":"HANG_INFO","features":[303,531]},{"name":"IAppDomainHelper","features":[354,531]},{"name":"IAssemblyLocator","features":[354,531]},{"name":"IAsyncErrorNotify","features":[531]},{"name":"ICOMAdminCatalog","features":[354,531]},{"name":"ICOMAdminCatalog2","features":[354,531]},{"name":"ICOMLBArguments","features":[531]},{"name":"ICatalogCollection","features":[354,531]},{"name":"ICatalogObject","features":[354,531]},{"name":"ICheckSxsConfig","features":[531]},{"name":"IComActivityEvents","features":[531]},{"name":"IComApp2Events","features":[531]},{"name":"IComAppEvents","features":[531]},{"name":"IComCRMEvents","features":[531]},{"name":"IComExceptionEvents","features":[531]},{"name":"IComIdentityEvents","features":[531]},{"name":"IComInstance2Events","features":[531]},{"name":"IComInstanceEvents","features":[531]},{"name":"IComLTxEvents","features":[531]},{"name":"IComMethod2Events","features":[531]},{"name":"IComMethodEvents","features":[531]},{"name":"IComMtaThreadPoolKnobs","features":[531]},{"name":"IComObjectConstruction2Events","features":[531]},{"name":"IComObjectConstructionEvents","features":[531]},{"name":"IComObjectEvents","features":[531]},{"name":"IComObjectPool2Events","features":[531]},{"name":"IComObjectPoolEvents","features":[531]},{"name":"IComObjectPoolEvents2","features":[531]},{"name":"IComQCEvents","features":[531]},{"name":"IComResourceEvents","features":[531]},{"name":"IComSecurityEvents","features":[531]},{"name":"IComStaThreadPoolKnobs","features":[531]},{"name":"IComStaThreadPoolKnobs2","features":[531]},{"name":"IComThreadEvents","features":[531]},{"name":"IComTrackingInfoCollection","features":[531]},{"name":"IComTrackingInfoEvents","features":[531]},{"name":"IComTrackingInfoObject","features":[531]},{"name":"IComTrackingInfoProperties","features":[531]},{"name":"IComTransaction2Events","features":[531]},{"name":"IComTransactionEvents","features":[531]},{"name":"IComUserEvent","features":[531]},{"name":"IContextProperties","features":[531]},{"name":"IContextSecurityPerimeter","features":[531]},{"name":"IContextState","features":[531]},{"name":"ICreateWithLocalTransaction","features":[531]},{"name":"ICreateWithTipTransactionEx","features":[531]},{"name":"ICreateWithTransactionEx","features":[531]},{"name":"ICrmCompensator","features":[531]},{"name":"ICrmCompensatorVariants","features":[531]},{"name":"ICrmFormatLogRecords","features":[531]},{"name":"ICrmLogControl","features":[531]},{"name":"ICrmMonitor","features":[531]},{"name":"ICrmMonitorClerks","features":[354,531]},{"name":"ICrmMonitorLogRecords","features":[531]},{"name":"IDispenserDriver","features":[531]},{"name":"IDispenserManager","features":[531]},{"name":"IEnumNames","features":[531]},{"name":"IEventServerTrace","features":[354,531]},{"name":"IGetAppTrackerData","features":[531]},{"name":"IGetContextProperties","features":[531]},{"name":"IGetSecurityCallContext","features":[354,531]},{"name":"IHolder","features":[531]},{"name":"ILBEvents","features":[531]},{"name":"IMTSActivity","features":[531]},{"name":"IMTSCall","features":[531]},{"name":"IMTSLocator","features":[354,531]},{"name":"IManagedActivationEvents","features":[531]},{"name":"IManagedObjectInfo","features":[531]},{"name":"IManagedPoolAction","features":[531]},{"name":"IManagedPooledObj","features":[531]},{"name":"IMessageMover","features":[354,531]},{"name":"IMtsEventInfo","features":[354,531]},{"name":"IMtsEvents","features":[354,531]},{"name":"IMtsGrp","features":[354,531]},{"name":"IObjPool","features":[531]},{"name":"IObjectConstruct","features":[531]},{"name":"IObjectConstructString","features":[354,531]},{"name":"IObjectContext","features":[531]},{"name":"IObjectContextActivity","features":[531]},{"name":"IObjectContextInfo","features":[531]},{"name":"IObjectContextInfo2","features":[531]},{"name":"IObjectContextTip","features":[531]},{"name":"IObjectControl","features":[531]},{"name":"IPlaybackControl","features":[531]},{"name":"IPoolManager","features":[354,531]},{"name":"IProcessInitializer","features":[531]},{"name":"ISecurityCallContext","features":[354,531]},{"name":"ISecurityCallersColl","features":[354,531]},{"name":"ISecurityIdentityColl","features":[354,531]},{"name":"ISecurityProperty","features":[531]},{"name":"ISelectCOMLBServer","features":[531]},{"name":"ISendMethodEvents","features":[531]},{"name":"IServiceActivity","features":[531]},{"name":"IServiceCall","features":[531]},{"name":"IServiceComTIIntrinsicsConfig","features":[531]},{"name":"IServiceIISIntrinsicsConfig","features":[531]},{"name":"IServiceInheritanceConfig","features":[531]},{"name":"IServicePartitionConfig","features":[531]},{"name":"IServicePool","features":[531]},{"name":"IServicePoolConfig","features":[531]},{"name":"IServiceSxsConfig","features":[531]},{"name":"IServiceSynchronizationConfig","features":[531]},{"name":"IServiceSysTxnConfig","features":[531]},{"name":"IServiceThreadPoolConfig","features":[531]},{"name":"IServiceTrackerConfig","features":[531]},{"name":"IServiceTransactionConfig","features":[531]},{"name":"IServiceTransactionConfigBase","features":[531]},{"name":"ISharedProperty","features":[354,531]},{"name":"ISharedPropertyGroup","features":[354,531]},{"name":"ISharedPropertyGroupManager","features":[354,531]},{"name":"ISystemAppEventData","features":[531]},{"name":"IThreadPoolKnobs","features":[531]},{"name":"ITransactionContext","features":[354,531]},{"name":"ITransactionContextEx","features":[531]},{"name":"ITransactionProperty","features":[531]},{"name":"ITransactionProxy","features":[531]},{"name":"ITransactionResourcePool","features":[531]},{"name":"ITransactionStatus","features":[531]},{"name":"ITxProxyHolder","features":[531]},{"name":"LBEvents","features":[531]},{"name":"LockMethod","features":[531]},{"name":"LockModes","features":[531]},{"name":"LockSetGet","features":[531]},{"name":"MTSCreateActivity","features":[531]},{"name":"MTXDM_E_ENLISTRESOURCEFAILED","features":[531]},{"name":"MessageMover","features":[531]},{"name":"MtsGrp","features":[531]},{"name":"ObjectContext","features":[354,531]},{"name":"ObjectControl","features":[531]},{"name":"PoolMgr","features":[531]},{"name":"Process","features":[531]},{"name":"RECYCLE_INFO","features":[531]},{"name":"RecycleSurrogate","features":[531]},{"name":"ReleaseModes","features":[531]},{"name":"SafeRef","features":[531]},{"name":"SecurityCallContext","features":[531]},{"name":"SecurityCallers","features":[531]},{"name":"SecurityIdentity","features":[531]},{"name":"SecurityProperty","features":[354,531]},{"name":"ServicePool","features":[531]},{"name":"ServicePoolConfig","features":[531]},{"name":"SharedProperty","features":[531]},{"name":"SharedPropertyGroup","features":[531]},{"name":"SharedPropertyGroupManager","features":[531]},{"name":"Standard","features":[531]},{"name":"TRACKER_INIT_EVENT","features":[531]},{"name":"TRACKER_STARTSTOP_EVENT","features":[531]},{"name":"TRACKING_COLL_TYPE","features":[531]},{"name":"TRKCOLL_APPLICATIONS","features":[531]},{"name":"TRKCOLL_COMPONENTS","features":[531]},{"name":"TRKCOLL_PROCESSES","features":[531]},{"name":"TrackerServer","features":[531]},{"name":"TransactionContext","features":[531]},{"name":"TransactionContextEx","features":[531]},{"name":"TransactionVote","features":[531]},{"name":"TxAbort","features":[531]},{"name":"TxCommit","features":[531]},{"name":"TxState_Aborted","features":[531]},{"name":"TxState_Active","features":[531]},{"name":"TxState_Committed","features":[531]},{"name":"TxState_Indoubt","features":[531]},{"name":"comQCErrApplicationNotQueued","features":[531]},{"name":"comQCErrNoQueueableInterfaces","features":[531]},{"name":"comQCErrQueueTransactMismatch","features":[531]},{"name":"comQCErrQueuingServiceNotAvailable","features":[531]},{"name":"comqcErrBadMarshaledObject","features":[531]},{"name":"comqcErrInvalidMessage","features":[531]},{"name":"comqcErrMarshaledObjSameTxn","features":[531]},{"name":"comqcErrMsgNotAuthenticated","features":[531]},{"name":"comqcErrMsmqConnectorUsed","features":[531]},{"name":"comqcErrMsmqServiceUnavailable","features":[531]},{"name":"comqcErrMsmqSidUnavailable","features":[531]},{"name":"comqcErrOutParam","features":[531]},{"name":"comqcErrPSLoad","features":[531]},{"name":"comqcErrRecorderMarshalled","features":[531]},{"name":"comqcErrRecorderNotTrusted","features":[531]},{"name":"comqcErrWrongMsgExtension","features":[531]},{"name":"mtsErrCtxAborted","features":[531]},{"name":"mtsErrCtxAborting","features":[531]},{"name":"mtsErrCtxNoContext","features":[531]},{"name":"mtsErrCtxNoSecurity","features":[531]},{"name":"mtsErrCtxNotRegistered","features":[531]},{"name":"mtsErrCtxOldReference","features":[531]},{"name":"mtsErrCtxRoleNotFound","features":[531]},{"name":"mtsErrCtxSynchTimeout","features":[531]},{"name":"mtsErrCtxTMNotAvailable","features":[531]},{"name":"mtsErrCtxWrongThread","features":[531]}],"543":[{"name":"ALTNUMPAD_BIT","features":[368]},{"name":"ATTACH_PARENT_PROCESS","features":[368]},{"name":"AddConsoleAliasA","features":[303,368]},{"name":"AddConsoleAliasW","features":[303,368]},{"name":"AllocConsole","features":[303,368]},{"name":"AttachConsole","features":[303,368]},{"name":"BACKGROUND_BLUE","features":[368]},{"name":"BACKGROUND_GREEN","features":[368]},{"name":"BACKGROUND_INTENSITY","features":[368]},{"name":"BACKGROUND_RED","features":[368]},{"name":"CAPSLOCK_ON","features":[368]},{"name":"CHAR_INFO","features":[368]},{"name":"COMMON_LVB_GRID_HORIZONTAL","features":[368]},{"name":"COMMON_LVB_GRID_LVERTICAL","features":[368]},{"name":"COMMON_LVB_GRID_RVERTICAL","features":[368]},{"name":"COMMON_LVB_LEADING_BYTE","features":[368]},{"name":"COMMON_LVB_REVERSE_VIDEO","features":[368]},{"name":"COMMON_LVB_SBCSDBCS","features":[368]},{"name":"COMMON_LVB_TRAILING_BYTE","features":[368]},{"name":"COMMON_LVB_UNDERSCORE","features":[368]},{"name":"CONSOLECONTROL","features":[368]},{"name":"CONSOLEENDTASK","features":[303,368]},{"name":"CONSOLESETFOREGROUND","features":[303,368]},{"name":"CONSOLEWINDOWOWNER","features":[303,368]},{"name":"CONSOLE_CARET_INFO","features":[303,368]},{"name":"CONSOLE_CHARACTER_ATTRIBUTES","features":[368]},{"name":"CONSOLE_CURSOR_INFO","features":[303,368]},{"name":"CONSOLE_FONT_INFO","features":[368]},{"name":"CONSOLE_FONT_INFOEX","features":[368]},{"name":"CONSOLE_FULLSCREEN","features":[368]},{"name":"CONSOLE_FULLSCREEN_HARDWARE","features":[368]},{"name":"CONSOLE_FULLSCREEN_MODE","features":[368]},{"name":"CONSOLE_HISTORY_INFO","features":[368]},{"name":"CONSOLE_MODE","features":[368]},{"name":"CONSOLE_MOUSE_DOWN","features":[368]},{"name":"CONSOLE_MOUSE_SELECTION","features":[368]},{"name":"CONSOLE_NO_SELECTION","features":[368]},{"name":"CONSOLE_PROCESS_INFO","features":[368]},{"name":"CONSOLE_READCONSOLE_CONTROL","features":[368]},{"name":"CONSOLE_SCREEN_BUFFER_INFO","features":[368]},{"name":"CONSOLE_SCREEN_BUFFER_INFOEX","features":[303,368]},{"name":"CONSOLE_SELECTION_INFO","features":[368]},{"name":"CONSOLE_SELECTION_IN_PROGRESS","features":[368]},{"name":"CONSOLE_SELECTION_NOT_EMPTY","features":[368]},{"name":"CONSOLE_TEXTMODE_BUFFER","features":[368]},{"name":"CONSOLE_WINDOWED_MODE","features":[368]},{"name":"COORD","features":[368]},{"name":"CTRL_BREAK_EVENT","features":[368]},{"name":"CTRL_CLOSE_EVENT","features":[368]},{"name":"CTRL_C_EVENT","features":[368]},{"name":"CTRL_LOGOFF_EVENT","features":[368]},{"name":"CTRL_SHUTDOWN_EVENT","features":[368]},{"name":"ClosePseudoConsole","features":[368]},{"name":"ConsoleControl","features":[303,368]},{"name":"ConsoleEndTask","features":[368]},{"name":"ConsoleNotifyConsoleApplication","features":[368]},{"name":"ConsoleSetCaretInfo","features":[368]},{"name":"ConsoleSetForeground","features":[368]},{"name":"ConsoleSetWindowOwner","features":[368]},{"name":"CreateConsoleScreenBuffer","features":[303,306,368]},{"name":"CreatePseudoConsole","features":[303,368]},{"name":"DISABLE_NEWLINE_AUTO_RETURN","features":[368]},{"name":"DOUBLE_CLICK","features":[368]},{"name":"ENABLE_AUTO_POSITION","features":[368]},{"name":"ENABLE_ECHO_INPUT","features":[368]},{"name":"ENABLE_EXTENDED_FLAGS","features":[368]},{"name":"ENABLE_INSERT_MODE","features":[368]},{"name":"ENABLE_LINE_INPUT","features":[368]},{"name":"ENABLE_LVB_GRID_WORLDWIDE","features":[368]},{"name":"ENABLE_MOUSE_INPUT","features":[368]},{"name":"ENABLE_PROCESSED_INPUT","features":[368]},{"name":"ENABLE_PROCESSED_OUTPUT","features":[368]},{"name":"ENABLE_QUICK_EDIT_MODE","features":[368]},{"name":"ENABLE_VIRTUAL_TERMINAL_INPUT","features":[368]},{"name":"ENABLE_VIRTUAL_TERMINAL_PROCESSING","features":[368]},{"name":"ENABLE_WINDOW_INPUT","features":[368]},{"name":"ENABLE_WRAP_AT_EOL_OUTPUT","features":[368]},{"name":"ENHANCED_KEY","features":[368]},{"name":"ExpungeConsoleCommandHistoryA","features":[368]},{"name":"ExpungeConsoleCommandHistoryW","features":[368]},{"name":"FOCUS_EVENT","features":[368]},{"name":"FOCUS_EVENT_RECORD","features":[303,368]},{"name":"FOREGROUND_BLUE","features":[368]},{"name":"FOREGROUND_GREEN","features":[368]},{"name":"FOREGROUND_INTENSITY","features":[368]},{"name":"FOREGROUND_RED","features":[368]},{"name":"FROM_LEFT_1ST_BUTTON_PRESSED","features":[368]},{"name":"FROM_LEFT_2ND_BUTTON_PRESSED","features":[368]},{"name":"FROM_LEFT_3RD_BUTTON_PRESSED","features":[368]},{"name":"FROM_LEFT_4TH_BUTTON_PRESSED","features":[368]},{"name":"FillConsoleOutputAttribute","features":[303,368]},{"name":"FillConsoleOutputCharacterA","features":[303,368]},{"name":"FillConsoleOutputCharacterW","features":[303,368]},{"name":"FlushConsoleInputBuffer","features":[303,368]},{"name":"FreeConsole","features":[303,368]},{"name":"GenerateConsoleCtrlEvent","features":[303,368]},{"name":"GetConsoleAliasA","features":[368]},{"name":"GetConsoleAliasExesA","features":[368]},{"name":"GetConsoleAliasExesLengthA","features":[368]},{"name":"GetConsoleAliasExesLengthW","features":[368]},{"name":"GetConsoleAliasExesW","features":[368]},{"name":"GetConsoleAliasW","features":[368]},{"name":"GetConsoleAliasesA","features":[368]},{"name":"GetConsoleAliasesLengthA","features":[368]},{"name":"GetConsoleAliasesLengthW","features":[368]},{"name":"GetConsoleAliasesW","features":[368]},{"name":"GetConsoleCP","features":[368]},{"name":"GetConsoleCommandHistoryA","features":[368]},{"name":"GetConsoleCommandHistoryLengthA","features":[368]},{"name":"GetConsoleCommandHistoryLengthW","features":[368]},{"name":"GetConsoleCommandHistoryW","features":[368]},{"name":"GetConsoleCursorInfo","features":[303,368]},{"name":"GetConsoleDisplayMode","features":[303,368]},{"name":"GetConsoleFontSize","features":[303,368]},{"name":"GetConsoleHistoryInfo","features":[303,368]},{"name":"GetConsoleMode","features":[303,368]},{"name":"GetConsoleOriginalTitleA","features":[368]},{"name":"GetConsoleOriginalTitleW","features":[368]},{"name":"GetConsoleOutputCP","features":[368]},{"name":"GetConsoleProcessList","features":[368]},{"name":"GetConsoleScreenBufferInfo","features":[303,368]},{"name":"GetConsoleScreenBufferInfoEx","features":[303,368]},{"name":"GetConsoleSelectionInfo","features":[303,368]},{"name":"GetConsoleTitleA","features":[368]},{"name":"GetConsoleTitleW","features":[368]},{"name":"GetConsoleWindow","features":[303,368]},{"name":"GetCurrentConsoleFont","features":[303,368]},{"name":"GetCurrentConsoleFontEx","features":[303,368]},{"name":"GetLargestConsoleWindowSize","features":[303,368]},{"name":"GetNumberOfConsoleInputEvents","features":[303,368]},{"name":"GetNumberOfConsoleMouseButtons","features":[303,368]},{"name":"GetStdHandle","features":[303,368]},{"name":"HISTORY_NO_DUP_FLAG","features":[368]},{"name":"HPCON","features":[368]},{"name":"INPUT_RECORD","features":[303,368]},{"name":"KEY_EVENT","features":[368]},{"name":"KEY_EVENT_RECORD","features":[303,368]},{"name":"LEFT_ALT_PRESSED","features":[368]},{"name":"LEFT_CTRL_PRESSED","features":[368]},{"name":"MENU_EVENT","features":[368]},{"name":"MENU_EVENT_RECORD","features":[368]},{"name":"MOUSE_EVENT","features":[368]},{"name":"MOUSE_EVENT_RECORD","features":[368]},{"name":"MOUSE_HWHEELED","features":[368]},{"name":"MOUSE_MOVED","features":[368]},{"name":"MOUSE_WHEELED","features":[368]},{"name":"NLS_ALPHANUMERIC","features":[368]},{"name":"NLS_DBCSCHAR","features":[368]},{"name":"NLS_HIRAGANA","features":[368]},{"name":"NLS_IME_CONVERSION","features":[368]},{"name":"NLS_IME_DISABLE","features":[368]},{"name":"NLS_KATAKANA","features":[368]},{"name":"NLS_ROMAN","features":[368]},{"name":"NUMLOCK_ON","features":[368]},{"name":"PHANDLER_ROUTINE","features":[303,368]},{"name":"PSEUDOCONSOLE_INHERIT_CURSOR","features":[368]},{"name":"PeekConsoleInputA","features":[303,368]},{"name":"PeekConsoleInputW","features":[303,368]},{"name":"RIGHTMOST_BUTTON_PRESSED","features":[368]},{"name":"RIGHT_ALT_PRESSED","features":[368]},{"name":"RIGHT_CTRL_PRESSED","features":[368]},{"name":"ReadConsoleA","features":[303,368]},{"name":"ReadConsoleInputA","features":[303,368]},{"name":"ReadConsoleInputW","features":[303,368]},{"name":"ReadConsoleOutputA","features":[303,368]},{"name":"ReadConsoleOutputAttribute","features":[303,368]},{"name":"ReadConsoleOutputCharacterA","features":[303,368]},{"name":"ReadConsoleOutputCharacterW","features":[303,368]},{"name":"ReadConsoleOutputW","features":[303,368]},{"name":"ReadConsoleW","features":[303,368]},{"name":"Reserved1","features":[368]},{"name":"Reserved2","features":[368]},{"name":"Reserved3","features":[368]},{"name":"ResizePseudoConsole","features":[368]},{"name":"SCROLLLOCK_ON","features":[368]},{"name":"SHIFT_PRESSED","features":[368]},{"name":"SMALL_RECT","features":[368]},{"name":"STD_ERROR_HANDLE","features":[368]},{"name":"STD_HANDLE","features":[368]},{"name":"STD_INPUT_HANDLE","features":[368]},{"name":"STD_OUTPUT_HANDLE","features":[368]},{"name":"ScrollConsoleScreenBufferA","features":[303,368]},{"name":"ScrollConsoleScreenBufferW","features":[303,368]},{"name":"SetConsoleActiveScreenBuffer","features":[303,368]},{"name":"SetConsoleCP","features":[303,368]},{"name":"SetConsoleCtrlHandler","features":[303,368]},{"name":"SetConsoleCursorInfo","features":[303,368]},{"name":"SetConsoleCursorPosition","features":[303,368]},{"name":"SetConsoleDisplayMode","features":[303,368]},{"name":"SetConsoleHistoryInfo","features":[303,368]},{"name":"SetConsoleMode","features":[303,368]},{"name":"SetConsoleNumberOfCommandsA","features":[303,368]},{"name":"SetConsoleNumberOfCommandsW","features":[303,368]},{"name":"SetConsoleOutputCP","features":[303,368]},{"name":"SetConsoleScreenBufferInfoEx","features":[303,368]},{"name":"SetConsoleScreenBufferSize","features":[303,368]},{"name":"SetConsoleTextAttribute","features":[303,368]},{"name":"SetConsoleTitleA","features":[303,368]},{"name":"SetConsoleTitleW","features":[303,368]},{"name":"SetConsoleWindowInfo","features":[303,368]},{"name":"SetCurrentConsoleFontEx","features":[303,368]},{"name":"SetStdHandle","features":[303,368]},{"name":"SetStdHandleEx","features":[303,368]},{"name":"WINDOW_BUFFER_SIZE_EVENT","features":[368]},{"name":"WINDOW_BUFFER_SIZE_RECORD","features":[368]},{"name":"WriteConsoleA","features":[303,368]},{"name":"WriteConsoleInputA","features":[303,368]},{"name":"WriteConsoleInputW","features":[303,368]},{"name":"WriteConsoleOutputA","features":[303,368]},{"name":"WriteConsoleOutputAttribute","features":[303,368]},{"name":"WriteConsoleOutputCharacterA","features":[303,368]},{"name":"WriteConsoleOutputCharacterW","features":[303,368]},{"name":"WriteConsoleOutputW","features":[303,368]},{"name":"WriteConsoleW","features":[303,368]}],"544":[{"name":"CACO_DEFAULT","features":[532]},{"name":"CACO_EXTERNAL_ONLY","features":[532]},{"name":"CACO_INCLUDE_EXTERNAL","features":[532]},{"name":"CA_CREATE_EXTERNAL","features":[532]},{"name":"CA_CREATE_LOCAL","features":[532]},{"name":"CGD_ARRAY_NODE","features":[532]},{"name":"CGD_BINARY_PROPERTY","features":[532]},{"name":"CGD_DATE_PROPERTY","features":[532]},{"name":"CGD_DEFAULT","features":[532]},{"name":"CGD_STRING_PROPERTY","features":[532]},{"name":"CGD_UNKNOWN_PROPERTY","features":[532]},{"name":"CLSID_ContactAggregationManager","features":[532]},{"name":"CONTACTLABEL_PUB_AGENT","features":[532]},{"name":"CONTACTLABEL_PUB_BBS","features":[532]},{"name":"CONTACTLABEL_PUB_BUSINESS","features":[532]},{"name":"CONTACTLABEL_PUB_CAR","features":[532]},{"name":"CONTACTLABEL_PUB_CELLULAR","features":[532]},{"name":"CONTACTLABEL_PUB_DOMESTIC","features":[532]},{"name":"CONTACTLABEL_PUB_FAX","features":[532]},{"name":"CONTACTLABEL_PUB_INTERNATIONAL","features":[532]},{"name":"CONTACTLABEL_PUB_ISDN","features":[532]},{"name":"CONTACTLABEL_PUB_LOGO","features":[532]},{"name":"CONTACTLABEL_PUB_MOBILE","features":[532]},{"name":"CONTACTLABEL_PUB_MODEM","features":[532]},{"name":"CONTACTLABEL_PUB_OTHER","features":[532]},{"name":"CONTACTLABEL_PUB_PAGER","features":[532]},{"name":"CONTACTLABEL_PUB_PARCEL","features":[532]},{"name":"CONTACTLABEL_PUB_PCS","features":[532]},{"name":"CONTACTLABEL_PUB_PERSONAL","features":[532]},{"name":"CONTACTLABEL_PUB_POSTAL","features":[532]},{"name":"CONTACTLABEL_PUB_PREFERRED","features":[532]},{"name":"CONTACTLABEL_PUB_TTY","features":[532]},{"name":"CONTACTLABEL_PUB_USERTILE","features":[532]},{"name":"CONTACTLABEL_PUB_VIDEO","features":[532]},{"name":"CONTACTLABEL_PUB_VOICE","features":[532]},{"name":"CONTACTLABEL_WAB_ANNIVERSARY","features":[532]},{"name":"CONTACTLABEL_WAB_ASSISTANT","features":[532]},{"name":"CONTACTLABEL_WAB_BIRTHDAY","features":[532]},{"name":"CONTACTLABEL_WAB_CHILD","features":[532]},{"name":"CONTACTLABEL_WAB_MANAGER","features":[532]},{"name":"CONTACTLABEL_WAB_SCHOOL","features":[532]},{"name":"CONTACTLABEL_WAB_SOCIALNETWORK","features":[532]},{"name":"CONTACTLABEL_WAB_SPOUSE","features":[532]},{"name":"CONTACTLABEL_WAB_WISHLIST","features":[532]},{"name":"CONTACTPROP_PUB_CREATIONDATE","features":[532]},{"name":"CONTACTPROP_PUB_GENDER","features":[532]},{"name":"CONTACTPROP_PUB_GENDER_FEMALE","features":[532]},{"name":"CONTACTPROP_PUB_GENDER_MALE","features":[532]},{"name":"CONTACTPROP_PUB_GENDER_UNSPECIFIED","features":[532]},{"name":"CONTACTPROP_PUB_L1_CERTIFICATECOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_CONTACTIDCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_DATECOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_EMAILADDRESSCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_IMADDRESSCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_NAMECOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_PERSONCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_PHONENUMBERCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_PHOTOCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_PHYSICALADDRESSCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_POSITIONCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L1_URLCOLLECTION","features":[532]},{"name":"CONTACTPROP_PUB_L2_CERTIFICATE","features":[532]},{"name":"CONTACTPROP_PUB_L2_CONTACTID","features":[532]},{"name":"CONTACTPROP_PUB_L2_DATE","features":[532]},{"name":"CONTACTPROP_PUB_L2_EMAILADDRESS","features":[532]},{"name":"CONTACTPROP_PUB_L2_IMADDRESSENTRY","features":[532]},{"name":"CONTACTPROP_PUB_L2_NAME","features":[532]},{"name":"CONTACTPROP_PUB_L2_PERSON","features":[532]},{"name":"CONTACTPROP_PUB_L2_PHONENUMBER","features":[532]},{"name":"CONTACTPROP_PUB_L2_PHOTO","features":[532]},{"name":"CONTACTPROP_PUB_L2_PHYSICALADDRESS","features":[532]},{"name":"CONTACTPROP_PUB_L2_POSITION","features":[532]},{"name":"CONTACTPROP_PUB_L2_URL","features":[532]},{"name":"CONTACTPROP_PUB_L3_ADDRESS","features":[532]},{"name":"CONTACTPROP_PUB_L3_ADDRESSLABEL","features":[532]},{"name":"CONTACTPROP_PUB_L3_ALTERNATE","features":[532]},{"name":"CONTACTPROP_PUB_L3_COMPANY","features":[532]},{"name":"CONTACTPROP_PUB_L3_COUNTRY","features":[532]},{"name":"CONTACTPROP_PUB_L3_DEPARTMENT","features":[532]},{"name":"CONTACTPROP_PUB_L3_EXTENDEDADDRESS","features":[532]},{"name":"CONTACTPROP_PUB_L3_FAMILYNAME","features":[532]},{"name":"CONTACTPROP_PUB_L3_FORMATTEDNAME","features":[532]},{"name":"CONTACTPROP_PUB_L3_GENERATION","features":[532]},{"name":"CONTACTPROP_PUB_L3_GIVENNAME","features":[532]},{"name":"CONTACTPROP_PUB_L3_JOB_TITLE","features":[532]},{"name":"CONTACTPROP_PUB_L3_LOCALITY","features":[532]},{"name":"CONTACTPROP_PUB_L3_MIDDLENAME","features":[532]},{"name":"CONTACTPROP_PUB_L3_NICKNAME","features":[532]},{"name":"CONTACTPROP_PUB_L3_NUMBER","features":[532]},{"name":"CONTACTPROP_PUB_L3_OFFICE","features":[532]},{"name":"CONTACTPROP_PUB_L3_ORGANIZATION","features":[532]},{"name":"CONTACTPROP_PUB_L3_PERSONID","features":[532]},{"name":"CONTACTPROP_PUB_L3_PHONETIC","features":[532]},{"name":"CONTACTPROP_PUB_L3_POBOX","features":[532]},{"name":"CONTACTPROP_PUB_L3_POSTALCODE","features":[532]},{"name":"CONTACTPROP_PUB_L3_PREFIX","features":[532]},{"name":"CONTACTPROP_PUB_L3_PROFESSION","features":[532]},{"name":"CONTACTPROP_PUB_L3_PROTOCOL","features":[532]},{"name":"CONTACTPROP_PUB_L3_REGION","features":[532]},{"name":"CONTACTPROP_PUB_L3_ROLE","features":[532]},{"name":"CONTACTPROP_PUB_L3_STREET","features":[532]},{"name":"CONTACTPROP_PUB_L3_SUFFIX","features":[532]},{"name":"CONTACTPROP_PUB_L3_THUMBPRINT","features":[532]},{"name":"CONTACTPROP_PUB_L3_TITLE","features":[532]},{"name":"CONTACTPROP_PUB_L3_TYPE","features":[532]},{"name":"CONTACTPROP_PUB_L3_URL","features":[532]},{"name":"CONTACTPROP_PUB_L3_VALUE","features":[532]},{"name":"CONTACTPROP_PUB_MAILER","features":[532]},{"name":"CONTACTPROP_PUB_NOTES","features":[532]},{"name":"CONTACTPROP_PUB_PROGID","features":[532]},{"name":"CONTACT_AGGREGATION_BLOB","features":[532]},{"name":"CONTACT_AGGREGATION_COLLECTION_OPTIONS","features":[532]},{"name":"CONTACT_AGGREGATION_CREATE_OR_OPEN_OPTIONS","features":[532]},{"name":"Contact","features":[532]},{"name":"ContactManager","features":[532]},{"name":"IContact","features":[532]},{"name":"IContactAggregationAggregate","features":[532]},{"name":"IContactAggregationAggregateCollection","features":[532]},{"name":"IContactAggregationContact","features":[532]},{"name":"IContactAggregationContactCollection","features":[532]},{"name":"IContactAggregationGroup","features":[532]},{"name":"IContactAggregationGroupCollection","features":[532]},{"name":"IContactAggregationLink","features":[532]},{"name":"IContactAggregationLinkCollection","features":[532]},{"name":"IContactAggregationManager","features":[532]},{"name":"IContactAggregationServerPerson","features":[532]},{"name":"IContactAggregationServerPersonCollection","features":[532]},{"name":"IContactCollection","features":[532]},{"name":"IContactManager","features":[532]},{"name":"IContactProperties","features":[532]},{"name":"IContactPropertyCollection","features":[532]}],"545":[{"name":"CORRELATION_VECTOR","features":[499]},{"name":"RTL_CORRELATION_VECTOR_STRING_LENGTH","features":[499]},{"name":"RTL_CORRELATION_VECTOR_V1_LENGTH","features":[499]},{"name":"RTL_CORRELATION_VECTOR_V1_PREFIX_LENGTH","features":[499]},{"name":"RTL_CORRELATION_VECTOR_V2_LENGTH","features":[499]},{"name":"RTL_CORRELATION_VECTOR_V2_PREFIX_LENGTH","features":[499]},{"name":"RtlExtendCorrelationVector","features":[499]},{"name":"RtlIncrementCorrelationVector","features":[499]},{"name":"RtlInitializeCorrelationVector","features":[499]},{"name":"RtlValidateCorrelationVector","features":[499]}],"546":[{"name":"APPCLASS_MASK","features":[533]},{"name":"APPCLASS_MONITOR","features":[533]},{"name":"APPCLASS_STANDARD","features":[533]},{"name":"APPCMD_CLIENTONLY","features":[533]},{"name":"APPCMD_FILTERINITS","features":[533]},{"name":"APPCMD_MASK","features":[533]},{"name":"AddAtomA","features":[533]},{"name":"AddAtomW","features":[533]},{"name":"AddClipboardFormatListener","features":[303,533]},{"name":"CADV_LATEACK","features":[533]},{"name":"CBF_FAIL_ADVISES","features":[533]},{"name":"CBF_FAIL_ALLSVRXACTIONS","features":[533]},{"name":"CBF_FAIL_CONNECTIONS","features":[533]},{"name":"CBF_FAIL_EXECUTES","features":[533]},{"name":"CBF_FAIL_POKES","features":[533]},{"name":"CBF_FAIL_REQUESTS","features":[533]},{"name":"CBF_FAIL_SELFCONNECTIONS","features":[533]},{"name":"CBF_SKIP_ALLNOTIFICATIONS","features":[533]},{"name":"CBF_SKIP_CONNECT_CONFIRMS","features":[533]},{"name":"CBF_SKIP_DISCONNECTS","features":[533]},{"name":"CBF_SKIP_REGISTRATIONS","features":[533]},{"name":"CBF_SKIP_UNREGISTRATIONS","features":[533]},{"name":"CONVCONTEXT","features":[303,306,533]},{"name":"CONVINFO","features":[303,306,533]},{"name":"CONVINFO_CONVERSATION_STATE","features":[533]},{"name":"CONVINFO_STATUS","features":[533]},{"name":"COPYDATASTRUCT","features":[533]},{"name":"CP_WINANSI","features":[533]},{"name":"CP_WINNEUTRAL","features":[533]},{"name":"CP_WINUNICODE","features":[533]},{"name":"ChangeClipboardChain","features":[303,533]},{"name":"CloseClipboard","features":[303,533]},{"name":"CountClipboardFormats","features":[533]},{"name":"DDEACK","features":[533]},{"name":"DDEADVISE","features":[533]},{"name":"DDEDATA","features":[533]},{"name":"DDELN","features":[533]},{"name":"DDEML_MSG_HOOK_DATA","features":[533]},{"name":"DDEPOKE","features":[533]},{"name":"DDEUP","features":[533]},{"name":"DDE_CLIENT_TRANSACTION_TYPE","features":[533]},{"name":"DDE_ENABLE_CALLBACK_CMD","features":[533]},{"name":"DDE_FACK","features":[533]},{"name":"DDE_FACKREQ","features":[533]},{"name":"DDE_FAPPSTATUS","features":[533]},{"name":"DDE_FBUSY","features":[533]},{"name":"DDE_FDEFERUPD","features":[533]},{"name":"DDE_FNOTPROCESSED","features":[533]},{"name":"DDE_FRELEASE","features":[533]},{"name":"DDE_FREQUESTED","features":[533]},{"name":"DDE_INITIALIZE_COMMAND","features":[533]},{"name":"DDE_NAME_SERVICE_CMD","features":[533]},{"name":"DMLERR_ADVACKTIMEOUT","features":[533]},{"name":"DMLERR_BUSY","features":[533]},{"name":"DMLERR_DATAACKTIMEOUT","features":[533]},{"name":"DMLERR_DLL_NOT_INITIALIZED","features":[533]},{"name":"DMLERR_DLL_USAGE","features":[533]},{"name":"DMLERR_EXECACKTIMEOUT","features":[533]},{"name":"DMLERR_FIRST","features":[533]},{"name":"DMLERR_INVALIDPARAMETER","features":[533]},{"name":"DMLERR_LAST","features":[533]},{"name":"DMLERR_LOW_MEMORY","features":[533]},{"name":"DMLERR_MEMORY_ERROR","features":[533]},{"name":"DMLERR_NOTPROCESSED","features":[533]},{"name":"DMLERR_NO_CONV_ESTABLISHED","features":[533]},{"name":"DMLERR_NO_ERROR","features":[533]},{"name":"DMLERR_POKEACKTIMEOUT","features":[533]},{"name":"DMLERR_POSTMSG_FAILED","features":[533]},{"name":"DMLERR_REENTRANCY","features":[533]},{"name":"DMLERR_SERVER_DIED","features":[533]},{"name":"DMLERR_SYS_ERROR","features":[533]},{"name":"DMLERR_UNADVACKTIMEOUT","features":[533]},{"name":"DMLERR_UNFOUND_QUEUE_ID","features":[533]},{"name":"DNS_FILTEROFF","features":[533]},{"name":"DNS_FILTERON","features":[533]},{"name":"DNS_REGISTER","features":[533]},{"name":"DNS_UNREGISTER","features":[533]},{"name":"DdeAbandonTransaction","features":[303,533]},{"name":"DdeAccessData","features":[533]},{"name":"DdeAddData","features":[533]},{"name":"DdeClientTransaction","features":[533]},{"name":"DdeCmpStringHandles","features":[533]},{"name":"DdeConnect","features":[303,306,533]},{"name":"DdeConnectList","features":[303,306,533]},{"name":"DdeCreateDataHandle","features":[533]},{"name":"DdeCreateStringHandleA","features":[533]},{"name":"DdeCreateStringHandleW","features":[533]},{"name":"DdeDisconnect","features":[303,533]},{"name":"DdeDisconnectList","features":[303,533]},{"name":"DdeEnableCallback","features":[303,533]},{"name":"DdeFreeDataHandle","features":[303,533]},{"name":"DdeFreeStringHandle","features":[303,533]},{"name":"DdeGetData","features":[533]},{"name":"DdeGetLastError","features":[533]},{"name":"DdeImpersonateClient","features":[303,533]},{"name":"DdeInitializeA","features":[533]},{"name":"DdeInitializeW","features":[533]},{"name":"DdeKeepStringHandle","features":[303,533]},{"name":"DdeNameService","features":[533]},{"name":"DdePostAdvise","features":[303,533]},{"name":"DdeQueryConvInfo","features":[303,306,533]},{"name":"DdeQueryNextServer","features":[533]},{"name":"DdeQueryStringA","features":[533]},{"name":"DdeQueryStringW","features":[533]},{"name":"DdeReconnect","features":[533]},{"name":"DdeSetQualityOfService","features":[303,306,533]},{"name":"DdeSetUserHandle","features":[303,533]},{"name":"DdeUnaccessData","features":[303,533]},{"name":"DdeUninitialize","features":[303,533]},{"name":"DeleteAtom","features":[533]},{"name":"EC_DISABLE","features":[533]},{"name":"EC_ENABLEALL","features":[533]},{"name":"EC_ENABLEONE","features":[533]},{"name":"EC_QUERYWAITING","features":[533]},{"name":"EmptyClipboard","features":[303,533]},{"name":"EnumClipboardFormats","features":[533]},{"name":"FindAtomA","features":[533]},{"name":"FindAtomW","features":[533]},{"name":"FreeDDElParam","features":[303,533]},{"name":"GetAtomNameA","features":[533]},{"name":"GetAtomNameW","features":[533]},{"name":"GetClipboardData","features":[303,533]},{"name":"GetClipboardFormatNameA","features":[533]},{"name":"GetClipboardFormatNameW","features":[533]},{"name":"GetClipboardOwner","features":[303,533]},{"name":"GetClipboardSequenceNumber","features":[533]},{"name":"GetClipboardViewer","features":[303,533]},{"name":"GetOpenClipboardWindow","features":[303,533]},{"name":"GetPriorityClipboardFormat","features":[533]},{"name":"GetUpdatedClipboardFormats","features":[303,533]},{"name":"GlobalAddAtomA","features":[533]},{"name":"GlobalAddAtomExA","features":[533]},{"name":"GlobalAddAtomExW","features":[533]},{"name":"GlobalAddAtomW","features":[533]},{"name":"GlobalDeleteAtom","features":[533]},{"name":"GlobalFindAtomA","features":[533]},{"name":"GlobalFindAtomW","features":[533]},{"name":"GlobalGetAtomNameA","features":[533]},{"name":"GlobalGetAtomNameW","features":[533]},{"name":"HCONV","features":[533]},{"name":"HCONVLIST","features":[533]},{"name":"HDATA_APPOWNED","features":[533]},{"name":"HDDEDATA","features":[533]},{"name":"HSZ","features":[533]},{"name":"HSZPAIR","features":[533]},{"name":"ImpersonateDdeClientWindow","features":[303,533]},{"name":"InitAtomTable","features":[303,533]},{"name":"IsClipboardFormatAvailable","features":[303,533]},{"name":"MAX_MONITORS","features":[533]},{"name":"METAFILEPICT","features":[314,533]},{"name":"MF_CALLBACKS","features":[533]},{"name":"MF_CONV","features":[533]},{"name":"MF_ERRORS","features":[533]},{"name":"MF_HSZ_INFO","features":[533]},{"name":"MF_LINKS","features":[533]},{"name":"MF_MASK","features":[533]},{"name":"MF_POSTMSGS","features":[533]},{"name":"MF_SENDMSGS","features":[533]},{"name":"MH_CLEANUP","features":[533]},{"name":"MH_CREATE","features":[533]},{"name":"MH_DELETE","features":[533]},{"name":"MH_KEEP","features":[533]},{"name":"MONCBSTRUCT","features":[303,306,533]},{"name":"MONCONVSTRUCT","features":[303,533]},{"name":"MONERRSTRUCT","features":[303,533]},{"name":"MONHSZSTRUCTA","features":[303,533]},{"name":"MONHSZSTRUCTW","features":[303,533]},{"name":"MONLINKSTRUCT","features":[303,533]},{"name":"MONMSGSTRUCT","features":[303,533]},{"name":"MSGF_DDEMGR","features":[533]},{"name":"OpenClipboard","features":[303,533]},{"name":"PFNCALLBACK","features":[533]},{"name":"PackDDElParam","features":[303,533]},{"name":"QID_SYNC","features":[533]},{"name":"RegisterClipboardFormatA","features":[533]},{"name":"RegisterClipboardFormatW","features":[533]},{"name":"RemoveClipboardFormatListener","features":[303,533]},{"name":"ReuseDDElParam","features":[303,533]},{"name":"ST_ADVISE","features":[533]},{"name":"ST_BLOCKED","features":[533]},{"name":"ST_BLOCKNEXT","features":[533]},{"name":"ST_CLIENT","features":[533]},{"name":"ST_CONNECTED","features":[533]},{"name":"ST_INLIST","features":[533]},{"name":"ST_ISLOCAL","features":[533]},{"name":"ST_ISSELF","features":[533]},{"name":"ST_TERMINATED","features":[533]},{"name":"SZDDESYS_ITEM_FORMATS","features":[533]},{"name":"SZDDESYS_ITEM_HELP","features":[533]},{"name":"SZDDESYS_ITEM_RTNMSG","features":[533]},{"name":"SZDDESYS_ITEM_STATUS","features":[533]},{"name":"SZDDESYS_ITEM_SYSITEMS","features":[533]},{"name":"SZDDESYS_ITEM_TOPICS","features":[533]},{"name":"SZDDESYS_TOPIC","features":[533]},{"name":"SZDDE_ITEM_ITEMLIST","features":[533]},{"name":"SetClipboardData","features":[303,533]},{"name":"SetClipboardViewer","features":[303,533]},{"name":"SetWinMetaFileBits","features":[314,533]},{"name":"TIMEOUT_ASYNC","features":[533]},{"name":"UnpackDDElParam","features":[303,533]},{"name":"WM_DDE_ACK","features":[533]},{"name":"WM_DDE_ADVISE","features":[533]},{"name":"WM_DDE_DATA","features":[533]},{"name":"WM_DDE_EXECUTE","features":[533]},{"name":"WM_DDE_FIRST","features":[533]},{"name":"WM_DDE_INITIATE","features":[533]},{"name":"WM_DDE_LAST","features":[533]},{"name":"WM_DDE_POKE","features":[533]},{"name":"WM_DDE_REQUEST","features":[533]},{"name":"WM_DDE_TERMINATE","features":[533]},{"name":"WM_DDE_UNADVISE","features":[533]},{"name":"XCLASS_BOOL","features":[533]},{"name":"XCLASS_DATA","features":[533]},{"name":"XCLASS_FLAGS","features":[533]},{"name":"XCLASS_MASK","features":[533]},{"name":"XCLASS_NOTIFICATION","features":[533]},{"name":"XST_ADVACKRCVD","features":[533]},{"name":"XST_ADVDATAACKRCVD","features":[533]},{"name":"XST_ADVDATASENT","features":[533]},{"name":"XST_ADVSENT","features":[533]},{"name":"XST_CONNECTED","features":[533]},{"name":"XST_DATARCVD","features":[533]},{"name":"XST_EXECACKRCVD","features":[533]},{"name":"XST_EXECSENT","features":[533]},{"name":"XST_INCOMPLETE","features":[533]},{"name":"XST_INIT1","features":[533]},{"name":"XST_INIT2","features":[533]},{"name":"XST_NULL","features":[533]},{"name":"XST_POKEACKRCVD","features":[533]},{"name":"XST_POKESENT","features":[533]},{"name":"XST_REQSENT","features":[533]},{"name":"XST_UNADVACKRCVD","features":[533]},{"name":"XST_UNADVSENT","features":[533]},{"name":"XTYPF_ACKREQ","features":[533]},{"name":"XTYPF_NOBLOCK","features":[533]},{"name":"XTYPF_NODATA","features":[533]},{"name":"XTYP_ADVDATA","features":[533]},{"name":"XTYP_ADVREQ","features":[533]},{"name":"XTYP_ADVSTART","features":[533]},{"name":"XTYP_ADVSTOP","features":[533]},{"name":"XTYP_CONNECT","features":[533]},{"name":"XTYP_CONNECT_CONFIRM","features":[533]},{"name":"XTYP_DISCONNECT","features":[533]},{"name":"XTYP_EXECUTE","features":[533]},{"name":"XTYP_MASK","features":[533]},{"name":"XTYP_MONITOR","features":[533]},{"name":"XTYP_POKE","features":[533]},{"name":"XTYP_REGISTER","features":[533]},{"name":"XTYP_REQUEST","features":[533]},{"name":"XTYP_SHIFT","features":[533]},{"name":"XTYP_UNREGISTER","features":[533]},{"name":"XTYP_WILDCONNECT","features":[533]},{"name":"XTYP_XACT_COMPLETE","features":[533]}],"547":[{"name":"CPU_ARCHITECTURE","features":[534]},{"name":"CPU_ARCHITECTURE_AMD64","features":[534]},{"name":"CPU_ARCHITECTURE_IA64","features":[534]},{"name":"CPU_ARCHITECTURE_INTEL","features":[534]},{"name":"EVT_WDSMCS_E_CP_CALLBACKS_NOT_REG","features":[534]},{"name":"EVT_WDSMCS_E_CP_CLOSE_INSTANCE_FAILED","features":[534]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED","features":[534]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED_CRITICAL","features":[534]},{"name":"EVT_WDSMCS_E_CP_INCOMPATIBLE_SERVER_VERSION","features":[534]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_FAILED","features":[534]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_MISSING","features":[534]},{"name":"EVT_WDSMCS_E_CP_MEMORY_LEAK","features":[534]},{"name":"EVT_WDSMCS_E_CP_OPEN_CONTENT_FAILED","features":[534]},{"name":"EVT_WDSMCS_E_CP_OPEN_INSTANCE_FAILED","features":[534]},{"name":"EVT_WDSMCS_E_CP_SHUTDOWN_FUNC_FAILED","features":[534]},{"name":"EVT_WDSMCS_E_DUPLICATE_MULTICAST_ADDR","features":[534]},{"name":"EVT_WDSMCS_E_NON_WDS_DUPLICATE_MULTICAST_ADDR","features":[534]},{"name":"EVT_WDSMCS_E_NSREG_CONTENT_PROVIDER_NOT_REG","features":[534]},{"name":"EVT_WDSMCS_E_NSREG_FAILURE","features":[534]},{"name":"EVT_WDSMCS_E_NSREG_NAMESPACE_EXISTS","features":[534]},{"name":"EVT_WDSMCS_E_NSREG_START_TIME_IN_PAST","features":[534]},{"name":"EVT_WDSMCS_E_PARAMETERS_READ_FAILED","features":[534]},{"name":"EVT_WDSMCS_S_PARAMETERS_READ","features":[534]},{"name":"EVT_WDSMCS_W_CP_DLL_LOAD_FAILED_NOT_CRITICAL","features":[534]},{"name":"FACILITY_WDSMCCLIENT","features":[534]},{"name":"FACILITY_WDSMCSERVER","features":[534]},{"name":"FACILITY_WDSTPTMGMT","features":[534]},{"name":"IWdsTransportCacheable","features":[354,534]},{"name":"IWdsTransportClient","features":[354,534]},{"name":"IWdsTransportCollection","features":[354,534]},{"name":"IWdsTransportConfigurationManager","features":[354,534]},{"name":"IWdsTransportConfigurationManager2","features":[354,534]},{"name":"IWdsTransportContent","features":[354,534]},{"name":"IWdsTransportContentProvider","features":[354,534]},{"name":"IWdsTransportDiagnosticsPolicy","features":[354,534]},{"name":"IWdsTransportManager","features":[354,534]},{"name":"IWdsTransportMulticastSessionPolicy","features":[354,534]},{"name":"IWdsTransportNamespace","features":[354,534]},{"name":"IWdsTransportNamespaceAutoCast","features":[354,534]},{"name":"IWdsTransportNamespaceManager","features":[354,534]},{"name":"IWdsTransportNamespaceScheduledCast","features":[354,534]},{"name":"IWdsTransportNamespaceScheduledCastAutoStart","features":[354,534]},{"name":"IWdsTransportNamespaceScheduledCastManualStart","features":[354,534]},{"name":"IWdsTransportServer","features":[354,534]},{"name":"IWdsTransportServer2","features":[354,534]},{"name":"IWdsTransportServicePolicy","features":[354,534]},{"name":"IWdsTransportServicePolicy2","features":[354,534]},{"name":"IWdsTransportSession","features":[354,534]},{"name":"IWdsTransportSetupManager","features":[354,534]},{"name":"IWdsTransportSetupManager2","features":[354,534]},{"name":"IWdsTransportTftpClient","features":[354,534]},{"name":"IWdsTransportTftpManager","features":[354,534]},{"name":"MC_SERVER_CURRENT_VERSION","features":[534]},{"name":"PFN_WDS_CLI_CALLBACK_MESSAGE_ID","features":[534]},{"name":"PFN_WdsCliCallback","features":[303,534]},{"name":"PFN_WdsCliTraceFunction","features":[534]},{"name":"PFN_WdsTransportClientReceiveContents","features":[303,534]},{"name":"PFN_WdsTransportClientReceiveMetadata","features":[303,534]},{"name":"PFN_WdsTransportClientSessionComplete","features":[303,534]},{"name":"PFN_WdsTransportClientSessionNegotiate","features":[303,534]},{"name":"PFN_WdsTransportClientSessionStart","features":[303,534]},{"name":"PFN_WdsTransportClientSessionStartEx","features":[303,534]},{"name":"PXE_ADDRESS","features":[534]},{"name":"PXE_ADDR_BROADCAST","features":[534]},{"name":"PXE_ADDR_USE_ADDR","features":[534]},{"name":"PXE_ADDR_USE_DHCP_RULES","features":[534]},{"name":"PXE_ADDR_USE_PORT","features":[534]},{"name":"PXE_BA_CUSTOM","features":[534]},{"name":"PXE_BA_IGNORE","features":[534]},{"name":"PXE_BA_NBP","features":[534]},{"name":"PXE_BA_REJECTED","features":[534]},{"name":"PXE_CALLBACK_MAX","features":[534]},{"name":"PXE_CALLBACK_RECV_REQUEST","features":[534]},{"name":"PXE_CALLBACK_SERVICE_CONTROL","features":[534]},{"name":"PXE_CALLBACK_SHUTDOWN","features":[534]},{"name":"PXE_DHCPV6_CLIENT_PORT","features":[534]},{"name":"PXE_DHCPV6_MESSAGE","features":[534]},{"name":"PXE_DHCPV6_MESSAGE_HEADER","features":[534]},{"name":"PXE_DHCPV6_NESTED_RELAY_MESSAGE","features":[534]},{"name":"PXE_DHCPV6_OPTION","features":[534]},{"name":"PXE_DHCPV6_RELAY_HOP_COUNT_LIMIT","features":[534]},{"name":"PXE_DHCPV6_RELAY_MESSAGE","features":[534]},{"name":"PXE_DHCPV6_SERVER_PORT","features":[534]},{"name":"PXE_DHCP_CLIENT_PORT","features":[534]},{"name":"PXE_DHCP_FILE_SIZE","features":[534]},{"name":"PXE_DHCP_HWAADR_SIZE","features":[534]},{"name":"PXE_DHCP_MAGIC_COOKIE_SIZE","features":[534]},{"name":"PXE_DHCP_MESSAGE","features":[534]},{"name":"PXE_DHCP_OPTION","features":[534]},{"name":"PXE_DHCP_SERVER_PORT","features":[534]},{"name":"PXE_DHCP_SERVER_SIZE","features":[534]},{"name":"PXE_GSI_SERVER_DUID","features":[534]},{"name":"PXE_GSI_TRACE_ENABLED","features":[534]},{"name":"PXE_MAX_ADDRESS","features":[534]},{"name":"PXE_PROVIDER","features":[303,534]},{"name":"PXE_PROV_ATTR_FILTER","features":[534]},{"name":"PXE_PROV_ATTR_FILTER_IPV6","features":[534]},{"name":"PXE_PROV_ATTR_IPV6_CAPABLE","features":[534]},{"name":"PXE_PROV_FILTER_ALL","features":[534]},{"name":"PXE_PROV_FILTER_DHCP_ONLY","features":[534]},{"name":"PXE_PROV_FILTER_PXE_ONLY","features":[534]},{"name":"PXE_REG_INDEX_BOTTOM","features":[534]},{"name":"PXE_REG_INDEX_TOP","features":[534]},{"name":"PXE_SERVER_PORT","features":[534]},{"name":"PXE_TRACE_ERROR","features":[534]},{"name":"PXE_TRACE_FATAL","features":[534]},{"name":"PXE_TRACE_INFO","features":[534]},{"name":"PXE_TRACE_VERBOSE","features":[534]},{"name":"PXE_TRACE_WARNING","features":[534]},{"name":"PxeAsyncRecvDone","features":[303,534]},{"name":"PxeDhcpAppendOption","features":[534]},{"name":"PxeDhcpAppendOptionRaw","features":[534]},{"name":"PxeDhcpGetOptionValue","features":[534]},{"name":"PxeDhcpGetVendorOptionValue","features":[534]},{"name":"PxeDhcpInitialize","features":[534]},{"name":"PxeDhcpIsValid","features":[303,534]},{"name":"PxeDhcpv6AppendOption","features":[534]},{"name":"PxeDhcpv6AppendOptionRaw","features":[534]},{"name":"PxeDhcpv6CreateRelayRepl","features":[534]},{"name":"PxeDhcpv6GetOptionValue","features":[534]},{"name":"PxeDhcpv6GetVendorOptionValue","features":[534]},{"name":"PxeDhcpv6Initialize","features":[534]},{"name":"PxeDhcpv6IsValid","features":[303,534]},{"name":"PxeDhcpv6ParseRelayForw","features":[534]},{"name":"PxeGetServerInfo","features":[534]},{"name":"PxeGetServerInfoEx","features":[534]},{"name":"PxePacketAllocate","features":[303,534]},{"name":"PxePacketFree","features":[303,534]},{"name":"PxeProviderEnumClose","features":[303,534]},{"name":"PxeProviderEnumFirst","features":[303,534]},{"name":"PxeProviderEnumNext","features":[303,534]},{"name":"PxeProviderFreeInfo","features":[303,534]},{"name":"PxeProviderQueryIndex","features":[534]},{"name":"PxeProviderRegister","features":[303,534,364]},{"name":"PxeProviderSetAttribute","features":[303,534]},{"name":"PxeProviderUnRegister","features":[534]},{"name":"PxeRegisterCallback","features":[303,534]},{"name":"PxeSendReply","features":[303,534]},{"name":"PxeTrace","features":[303,534]},{"name":"PxeTraceV","features":[303,534]},{"name":"TRANSPORTCLIENT_CALLBACK_ID","features":[534]},{"name":"TRANSPORTCLIENT_SESSION_INFO","features":[534]},{"name":"TRANSPORTPROVIDER_CALLBACK_ID","features":[534]},{"name":"TRANSPORTPROVIDER_CURRENT_VERSION","features":[534]},{"name":"WDSBP_OPTVAL_ACTION_ABORT","features":[534]},{"name":"WDSBP_OPTVAL_ACTION_APPROVAL","features":[534]},{"name":"WDSBP_OPTVAL_ACTION_REFERRAL","features":[534]},{"name":"WDSBP_OPTVAL_NBP_VER_7","features":[534]},{"name":"WDSBP_OPTVAL_NBP_VER_8","features":[534]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_NOPROMPT","features":[534]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTIN","features":[534]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTOUT","features":[534]},{"name":"WDSBP_OPT_TYPE_BYTE","features":[534]},{"name":"WDSBP_OPT_TYPE_IP4","features":[534]},{"name":"WDSBP_OPT_TYPE_IP6","features":[534]},{"name":"WDSBP_OPT_TYPE_NONE","features":[534]},{"name":"WDSBP_OPT_TYPE_STR","features":[534]},{"name":"WDSBP_OPT_TYPE_ULONG","features":[534]},{"name":"WDSBP_OPT_TYPE_USHORT","features":[534]},{"name":"WDSBP_OPT_TYPE_WSTR","features":[534]},{"name":"WDSBP_PK_TYPE_BCD","features":[534]},{"name":"WDSBP_PK_TYPE_DHCP","features":[534]},{"name":"WDSBP_PK_TYPE_DHCPV6","features":[534]},{"name":"WDSBP_PK_TYPE_WDSNBP","features":[534]},{"name":"WDSMCCLIENT_CATEGORY","features":[534]},{"name":"WDSMCSERVER_CATEGORY","features":[534]},{"name":"WDSMCS_E_CLIENT_DOESNOT_SUPPORT_SECURITY_MODE","features":[534]},{"name":"WDSMCS_E_CLIENT_NOT_FOUND","features":[534]},{"name":"WDSMCS_E_CONTENT_NOT_FOUND","features":[534]},{"name":"WDSMCS_E_CONTENT_PROVIDER_NOT_FOUND","features":[534]},{"name":"WDSMCS_E_INCOMPATIBLE_VERSION","features":[534]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_EXISTS","features":[534]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_STARTED","features":[534]},{"name":"WDSMCS_E_NAMESPACE_NOT_FOUND","features":[534]},{"name":"WDSMCS_E_NAMESPACE_SHUTDOWN_IN_PROGRESS","features":[534]},{"name":"WDSMCS_E_NS_START_FAILED_NO_CLIENTS","features":[534]},{"name":"WDSMCS_E_PACKET_HAS_SECURITY","features":[534]},{"name":"WDSMCS_E_PACKET_NOT_CHECKSUMED","features":[534]},{"name":"WDSMCS_E_PACKET_NOT_HASHED","features":[534]},{"name":"WDSMCS_E_PACKET_NOT_SIGNED","features":[534]},{"name":"WDSMCS_E_REQCALLBACKS_NOT_REG","features":[534]},{"name":"WDSMCS_E_SESSION_SHUTDOWN_IN_PROGRESS","features":[534]},{"name":"WDSMCS_E_START_TIME_IN_PAST","features":[534]},{"name":"WDSTPC_E_ALREADY_COMPLETED","features":[534]},{"name":"WDSTPC_E_ALREADY_IN_LOWEST_SESSION","features":[534]},{"name":"WDSTPC_E_ALREADY_IN_PROGRESS","features":[534]},{"name":"WDSTPC_E_CALLBACKS_NOT_REG","features":[534]},{"name":"WDSTPC_E_CLIENT_DEMOTE_NOT_SUPPORTED","features":[534]},{"name":"WDSTPC_E_KICKED_FAIL","features":[534]},{"name":"WDSTPC_E_KICKED_FALLBACK","features":[534]},{"name":"WDSTPC_E_KICKED_POLICY_NOT_MET","features":[534]},{"name":"WDSTPC_E_KICKED_UNKNOWN","features":[534]},{"name":"WDSTPC_E_MULTISTREAM_NOT_ENABLED","features":[534]},{"name":"WDSTPC_E_NOT_INITIALIZED","features":[534]},{"name":"WDSTPC_E_NO_IP4_INTERFACE","features":[534]},{"name":"WDSTPC_E_UNKNOWN_ERROR","features":[534]},{"name":"WDSTPTC_E_WIM_APPLY_REQUIRES_REFERENCE_IMAGE","features":[534]},{"name":"WDSTPTMGMT_CATEGORY","features":[534]},{"name":"WDSTPTMGMT_E_CANNOT_REFRESH_DIRTY_OBJECT","features":[534]},{"name":"WDSTPTMGMT_E_CANNOT_REINITIALIZE_OBJECT","features":[534]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_ALREADY_REGISTERED","features":[534]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_NOT_REGISTERED","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_AUTO_DISCONNECT_THRESHOLD","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_CLASS","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_CONTENT_PROVIDER_NAME","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_DIAGNOSTICS_COMPONENTS","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_IPV4_MULTICAST_ADDRESS","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS_SOURCE","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_IP_ADDRESS","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_MULTISTREAM_STREAM_COUNT","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_DATA","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_NAME","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_PARAMETERS","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_TIME","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_OPERATION","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_PROPERTY","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_IP_ADDRESS_RANGE","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_PORT_RANGE","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_SLOW_CLIENT_HANDLING_TYPE","features":[534]},{"name":"WDSTPTMGMT_E_INVALID_TFTP_MAX_BLOCKSIZE","features":[534]},{"name":"WDSTPTMGMT_E_IPV6_NOT_SUPPORTED","features":[534]},{"name":"WDSTPTMGMT_E_MULTICAST_SESSION_POLICY_NOT_SUPPORTED","features":[534]},{"name":"WDSTPTMGMT_E_NAMESPACE_ALREADY_REGISTERED","features":[534]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_ON_SERVER","features":[534]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_REGISTERED","features":[534]},{"name":"WDSTPTMGMT_E_NAMESPACE_READ_ONLY","features":[534]},{"name":"WDSTPTMGMT_E_NAMESPACE_REMOVED_FROM_SERVER","features":[534]},{"name":"WDSTPTMGMT_E_NETWORK_PROFILES_NOT_SUPPORTED","features":[534]},{"name":"WDSTPTMGMT_E_TFTP_MAX_BLOCKSIZE_NOT_SUPPORTED","features":[534]},{"name":"WDSTPTMGMT_E_TFTP_VAR_WINDOW_NOT_SUPPORTED","features":[534]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_ROLE_NOT_CONFIGURED","features":[534]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_UNAVAILABLE","features":[534]},{"name":"WDSTPTMGMT_E_UDP_PORT_POLICY_NOT_SUPPORTED","features":[534]},{"name":"WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS","features":[534]},{"name":"WDSTRANSPORT_DISCONNECT_TYPE","features":[534]},{"name":"WDSTRANSPORT_FEATURE_FLAGS","features":[534]},{"name":"WDSTRANSPORT_IP_ADDRESS_SOURCE_TYPE","features":[534]},{"name":"WDSTRANSPORT_IP_ADDRESS_TYPE","features":[534]},{"name":"WDSTRANSPORT_NAMESPACE_TYPE","features":[534]},{"name":"WDSTRANSPORT_NETWORK_PROFILE_TYPE","features":[534]},{"name":"WDSTRANSPORT_PROTOCOL_FLAGS","features":[534]},{"name":"WDSTRANSPORT_RESOURCE_UTILIZATION_UNKNOWN","features":[534]},{"name":"WDSTRANSPORT_SERVICE_NOTIFICATION","features":[534]},{"name":"WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE","features":[534]},{"name":"WDSTRANSPORT_TFTP_CAPABILITY","features":[534]},{"name":"WDSTRANSPORT_UDP_PORT_POLICY","features":[534]},{"name":"WDS_CLI_CRED","features":[534]},{"name":"WDS_CLI_FIRMWARE_BIOS","features":[534]},{"name":"WDS_CLI_FIRMWARE_EFI","features":[534]},{"name":"WDS_CLI_FIRMWARE_TYPE","features":[534]},{"name":"WDS_CLI_FIRMWARE_UNKNOWN","features":[534]},{"name":"WDS_CLI_IMAGE_PARAM_SPARSE_FILE","features":[534]},{"name":"WDS_CLI_IMAGE_PARAM_SUPPORTED_FIRMWARES","features":[534]},{"name":"WDS_CLI_IMAGE_PARAM_TYPE","features":[534]},{"name":"WDS_CLI_IMAGE_PARAM_UNKNOWN","features":[534]},{"name":"WDS_CLI_IMAGE_TYPE","features":[534]},{"name":"WDS_CLI_IMAGE_TYPE_UNKNOWN","features":[534]},{"name":"WDS_CLI_IMAGE_TYPE_VHD","features":[534]},{"name":"WDS_CLI_IMAGE_TYPE_VHDX","features":[534]},{"name":"WDS_CLI_IMAGE_TYPE_WIM","features":[534]},{"name":"WDS_CLI_MSG_COMPLETE","features":[534]},{"name":"WDS_CLI_MSG_PROGRESS","features":[534]},{"name":"WDS_CLI_MSG_START","features":[534]},{"name":"WDS_CLI_MSG_TEXT","features":[534]},{"name":"WDS_CLI_NO_SPARSE_FILE","features":[534]},{"name":"WDS_CLI_TRANSFER_ASYNCHRONOUS","features":[534]},{"name":"WDS_LOG_LEVEL_DISABLED","features":[534]},{"name":"WDS_LOG_LEVEL_ERROR","features":[534]},{"name":"WDS_LOG_LEVEL_INFO","features":[534]},{"name":"WDS_LOG_LEVEL_WARNING","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED_2","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED_2","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR_2","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_DRIVER_PACKAGE_NOT_ACCESSIBLE","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_ERROR","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_FINISHED","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_GENERIC_MESSAGE","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED2","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED3","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_MAX_CODE","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_END","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_FAILURE","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_START","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_END","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_START","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_STARTED","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_DOWNGRADE","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_END","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_START","features":[534]},{"name":"WDS_LOG_TYPE_CLIENT_UNATTEND_MODE","features":[534]},{"name":"WDS_MC_TRACE_ERROR","features":[534]},{"name":"WDS_MC_TRACE_FATAL","features":[534]},{"name":"WDS_MC_TRACE_INFO","features":[534]},{"name":"WDS_MC_TRACE_VERBOSE","features":[534]},{"name":"WDS_MC_TRACE_WARNING","features":[534]},{"name":"WDS_TRANSPORTCLIENT_AUTH","features":[534]},{"name":"WDS_TRANSPORTCLIENT_CALLBACKS","features":[303,534]},{"name":"WDS_TRANSPORTCLIENT_CURRENT_API_VERSION","features":[534]},{"name":"WDS_TRANSPORTCLIENT_MAX_CALLBACKS","features":[534]},{"name":"WDS_TRANSPORTCLIENT_NO_AUTH","features":[534]},{"name":"WDS_TRANSPORTCLIENT_NO_CACHE","features":[534]},{"name":"WDS_TRANSPORTCLIENT_PROTOCOL_MULTICAST","features":[534]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_CONTENTS","features":[534]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_METADATA","features":[534]},{"name":"WDS_TRANSPORTCLIENT_REQUEST","features":[534]},{"name":"WDS_TRANSPORTCLIENT_REQUEST_AUTH_LEVEL","features":[534]},{"name":"WDS_TRANSPORTCLIENT_SESSION_COMPLETE","features":[534]},{"name":"WDS_TRANSPORTCLIENT_SESSION_NEGOTIATE","features":[534]},{"name":"WDS_TRANSPORTCLIENT_SESSION_START","features":[534]},{"name":"WDS_TRANSPORTCLIENT_SESSION_STARTEX","features":[534]},{"name":"WDS_TRANSPORTCLIENT_STATUS_FAILURE","features":[534]},{"name":"WDS_TRANSPORTCLIENT_STATUS_IN_PROGRESS","features":[534]},{"name":"WDS_TRANSPORTCLIENT_STATUS_SUCCESS","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_CONTENT","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_INSTANCE","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_COMPARE_CONTENT","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_CREATE_INSTANCE","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_DUMP_STATE","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_METADATA","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_SIZE","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_INIT_PARAMS","features":[303,534,364]},{"name":"WDS_TRANSPORTPROVIDER_MAX_CALLBACKS","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_OPEN_CONTENT","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_READ_CONTENT","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_REFRESH_SETTINGS","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_SETTINGS","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_SHUTDOWN","features":[534]},{"name":"WDS_TRANSPORTPROVIDER_USER_ACCESS_CHECK","features":[534]},{"name":"WdsBpAddOption","features":[303,534]},{"name":"WdsBpCloseHandle","features":[303,534]},{"name":"WdsBpGetOptionBuffer","features":[303,534]},{"name":"WdsBpInitialize","features":[303,534]},{"name":"WdsBpParseInitialize","features":[303,534]},{"name":"WdsBpParseInitializev6","features":[303,534]},{"name":"WdsBpQueryOption","features":[303,534]},{"name":"WdsCliAuthorizeSession","features":[303,534]},{"name":"WdsCliCancelTransfer","features":[303,534]},{"name":"WdsCliClose","features":[303,534]},{"name":"WdsCliCreateSession","features":[303,534]},{"name":"WdsCliFindFirstImage","features":[303,534]},{"name":"WdsCliFindNextImage","features":[303,534]},{"name":"WdsCliFlagEnumFilterFirmware","features":[534]},{"name":"WdsCliFlagEnumFilterVersion","features":[534]},{"name":"WdsCliFreeStringArray","features":[534]},{"name":"WdsCliGetDriverQueryXml","features":[534]},{"name":"WdsCliGetEnumerationFlags","features":[303,534]},{"name":"WdsCliGetImageArchitecture","features":[303,534]},{"name":"WdsCliGetImageDescription","features":[303,534]},{"name":"WdsCliGetImageFiles","features":[303,534]},{"name":"WdsCliGetImageGroup","features":[303,534]},{"name":"WdsCliGetImageHalName","features":[303,534]},{"name":"WdsCliGetImageHandleFromFindHandle","features":[303,534]},{"name":"WdsCliGetImageHandleFromTransferHandle","features":[303,534]},{"name":"WdsCliGetImageIndex","features":[303,534]},{"name":"WdsCliGetImageLanguage","features":[303,534]},{"name":"WdsCliGetImageLanguages","features":[303,534]},{"name":"WdsCliGetImageLastModifiedTime","features":[303,534]},{"name":"WdsCliGetImageName","features":[303,534]},{"name":"WdsCliGetImageNamespace","features":[303,534]},{"name":"WdsCliGetImageParameter","features":[303,534]},{"name":"WdsCliGetImagePath","features":[303,534]},{"name":"WdsCliGetImageSize","features":[303,534]},{"name":"WdsCliGetImageType","features":[303,534]},{"name":"WdsCliGetImageVersion","features":[303,534]},{"name":"WdsCliGetTransferSize","features":[303,534]},{"name":"WdsCliInitializeLog","features":[303,534]},{"name":"WdsCliLog","features":[303,534]},{"name":"WdsCliObtainDriverPackages","features":[303,534]},{"name":"WdsCliObtainDriverPackagesEx","features":[303,534]},{"name":"WdsCliRegisterTrace","features":[534]},{"name":"WdsCliSetTransferBufferSize","features":[534]},{"name":"WdsCliTransferFile","features":[303,534]},{"name":"WdsCliTransferImage","features":[303,534]},{"name":"WdsCliWaitForTransfer","features":[303,534]},{"name":"WdsTptDiagnosticsComponentImageServer","features":[534]},{"name":"WdsTptDiagnosticsComponentMulticast","features":[534]},{"name":"WdsTptDiagnosticsComponentPxe","features":[534]},{"name":"WdsTptDiagnosticsComponentTftp","features":[534]},{"name":"WdsTptDisconnectAbort","features":[534]},{"name":"WdsTptDisconnectFallback","features":[534]},{"name":"WdsTptDisconnectUnknown","features":[534]},{"name":"WdsTptFeatureAdminPack","features":[534]},{"name":"WdsTptFeatureDeploymentServer","features":[534]},{"name":"WdsTptFeatureTransportServer","features":[534]},{"name":"WdsTptIpAddressIpv4","features":[534]},{"name":"WdsTptIpAddressIpv6","features":[534]},{"name":"WdsTptIpAddressSourceDhcp","features":[534]},{"name":"WdsTptIpAddressSourceRange","features":[534]},{"name":"WdsTptIpAddressSourceUnknown","features":[534]},{"name":"WdsTptIpAddressUnknown","features":[534]},{"name":"WdsTptNamespaceTypeAutoCast","features":[534]},{"name":"WdsTptNamespaceTypeScheduledCastAutoStart","features":[534]},{"name":"WdsTptNamespaceTypeScheduledCastManualStart","features":[534]},{"name":"WdsTptNamespaceTypeUnknown","features":[534]},{"name":"WdsTptNetworkProfile100Mbps","features":[534]},{"name":"WdsTptNetworkProfile10Mbps","features":[534]},{"name":"WdsTptNetworkProfile1Gbps","features":[534]},{"name":"WdsTptNetworkProfileCustom","features":[534]},{"name":"WdsTptNetworkProfileUnknown","features":[534]},{"name":"WdsTptProtocolMulticast","features":[534]},{"name":"WdsTptProtocolUnicast","features":[534]},{"name":"WdsTptServiceNotifyReadSettings","features":[534]},{"name":"WdsTptServiceNotifyUnknown","features":[534]},{"name":"WdsTptSlowClientHandlingAutoDisconnect","features":[534]},{"name":"WdsTptSlowClientHandlingMultistream","features":[534]},{"name":"WdsTptSlowClientHandlingNone","features":[534]},{"name":"WdsTptSlowClientHandlingUnknown","features":[534]},{"name":"WdsTptTftpCapMaximumBlockSize","features":[534]},{"name":"WdsTptTftpCapVariableWindow","features":[534]},{"name":"WdsTptUdpPortPolicyDynamic","features":[534]},{"name":"WdsTptUdpPortPolicyFixed","features":[534]},{"name":"WdsTransportCacheable","features":[534]},{"name":"WdsTransportClient","features":[534]},{"name":"WdsTransportClientAddRefBuffer","features":[534]},{"name":"WdsTransportClientCancelSession","features":[303,534]},{"name":"WdsTransportClientCancelSessionEx","features":[303,534]},{"name":"WdsTransportClientCloseSession","features":[303,534]},{"name":"WdsTransportClientCompleteReceive","features":[303,534]},{"name":"WdsTransportClientInitialize","features":[534]},{"name":"WdsTransportClientInitializeSession","features":[303,534]},{"name":"WdsTransportClientQueryStatus","features":[303,534]},{"name":"WdsTransportClientRegisterCallback","features":[303,534]},{"name":"WdsTransportClientReleaseBuffer","features":[534]},{"name":"WdsTransportClientShutdown","features":[534]},{"name":"WdsTransportClientStartSession","features":[303,534]},{"name":"WdsTransportClientWaitForCompletion","features":[303,534]},{"name":"WdsTransportCollection","features":[534]},{"name":"WdsTransportConfigurationManager","features":[534]},{"name":"WdsTransportContent","features":[534]},{"name":"WdsTransportContentProvider","features":[534]},{"name":"WdsTransportDiagnosticsPolicy","features":[534]},{"name":"WdsTransportManager","features":[534]},{"name":"WdsTransportMulticastSessionPolicy","features":[534]},{"name":"WdsTransportNamespace","features":[534]},{"name":"WdsTransportNamespaceAutoCast","features":[534]},{"name":"WdsTransportNamespaceManager","features":[534]},{"name":"WdsTransportNamespaceScheduledCast","features":[534]},{"name":"WdsTransportNamespaceScheduledCastAutoStart","features":[534]},{"name":"WdsTransportNamespaceScheduledCastManualStart","features":[534]},{"name":"WdsTransportServer","features":[534]},{"name":"WdsTransportServerAllocateBuffer","features":[303,534]},{"name":"WdsTransportServerCompleteRead","features":[303,534]},{"name":"WdsTransportServerFreeBuffer","features":[303,534]},{"name":"WdsTransportServerRegisterCallback","features":[303,534]},{"name":"WdsTransportServerTrace","features":[303,534]},{"name":"WdsTransportServerTraceV","features":[303,534]},{"name":"WdsTransportServicePolicy","features":[534]},{"name":"WdsTransportSession","features":[534]},{"name":"WdsTransportSetupManager","features":[534]},{"name":"WdsTransportTftpClient","features":[534]},{"name":"WdsTransportTftpManager","features":[534]}],"548":[{"name":"APP_FLAG_PRIVILEGED","features":[535]},{"name":"ATTENDEE_DISCONNECT_REASON","features":[535]},{"name":"ATTENDEE_DISCONNECT_REASON_APP","features":[535]},{"name":"ATTENDEE_DISCONNECT_REASON_CLI","features":[535]},{"name":"ATTENDEE_DISCONNECT_REASON_ERR","features":[535]},{"name":"ATTENDEE_DISCONNECT_REASON_MAX","features":[535]},{"name":"ATTENDEE_DISCONNECT_REASON_MIN","features":[535]},{"name":"ATTENDEE_FLAGS_LOCAL","features":[535]},{"name":"CHANNEL_ACCESS_ENUM","features":[535]},{"name":"CHANNEL_ACCESS_ENUM_NONE","features":[535]},{"name":"CHANNEL_ACCESS_ENUM_SENDRECEIVE","features":[535]},{"name":"CHANNEL_FLAGS","features":[535]},{"name":"CHANNEL_FLAGS_DYNAMIC","features":[535]},{"name":"CHANNEL_FLAGS_LEGACY","features":[535]},{"name":"CHANNEL_FLAGS_UNCOMPRESSED","features":[535]},{"name":"CHANNEL_PRIORITY","features":[535]},{"name":"CHANNEL_PRIORITY_HI","features":[535]},{"name":"CHANNEL_PRIORITY_LO","features":[535]},{"name":"CHANNEL_PRIORITY_MED","features":[535]},{"name":"CONST_ATTENDEE_ID_DEFAULT","features":[535]},{"name":"CONST_ATTENDEE_ID_EVERYONE","features":[535]},{"name":"CONST_ATTENDEE_ID_HOST","features":[535]},{"name":"CONST_CONN_INTERVAL","features":[535]},{"name":"CONST_MAX_CHANNEL_MESSAGE_SIZE","features":[535]},{"name":"CONST_MAX_CHANNEL_NAME_LEN","features":[535]},{"name":"CONST_MAX_LEGACY_CHANNEL_MESSAGE_SIZE","features":[535]},{"name":"CTRL_LEVEL","features":[535]},{"name":"CTRL_LEVEL_INTERACTIVE","features":[535]},{"name":"CTRL_LEVEL_INVALID","features":[535]},{"name":"CTRL_LEVEL_MAX","features":[535]},{"name":"CTRL_LEVEL_MIN","features":[535]},{"name":"CTRL_LEVEL_NONE","features":[535]},{"name":"CTRL_LEVEL_REQCTRL_INTERACTIVE","features":[535]},{"name":"CTRL_LEVEL_REQCTRL_VIEW","features":[535]},{"name":"CTRL_LEVEL_VIEW","features":[535]},{"name":"DISPID_RDPAPI_EVENT_ON_BOUNDING_RECT_CHANGED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPFILTER_UPDATE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPLICATION_CLOSE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPLICATION_OPEN","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPLICATION_UPDATE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ATTENDEE_CONNECTED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ATTENDEE_DISCONNECTED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ATTENDEE_UPDATE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_CTRLLEVEL_CHANGE_REQUEST","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_CTRLLEVEL_CHANGE_RESPONSE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ERROR","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_FOCUSRELEASED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_GRAPHICS_STREAM_PAUSED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_GRAPHICS_STREAM_RESUMED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_SHARED_DESKTOP_SETTINGS_CHANGED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_SHARED_RECT_CHANGED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_STREAM_CLOSED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_STREAM_DATARECEIVED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_STREAM_SENDCOMPLETED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_AUTHENTICATED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_CONNECTED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_CONNECTFAILED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_DISCONNECTED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_DATARECEIVED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_JOIN","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_LEAVE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_SENDCOMPLETED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_WINDOW_CLOSE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_WINDOW_OPEN","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_ON_WINDOW_UPDATE","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_VIEW_MOUSE_BUTTON_RECEIVED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_VIEW_MOUSE_MOVE_RECEIVED","features":[535]},{"name":"DISPID_RDPSRAPI_EVENT_VIEW_MOUSE_WHEEL_RECEIVED","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_ADD_TOUCH_INPUT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_BEGIN_TOUCH_FRAME","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_CLOSE","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_CONNECTTOCLIENT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_CONNECTUSINGTRANSPORTSTREAM","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_CREATE_INVITATION","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_END_TOUCH_FRAME","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_GETFRAMEBUFFERBITS","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_GETSHAREDRECT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_OPEN","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_PAUSE","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_REQUEST_COLOR_DEPTH_CHANGE","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_REQUEST_CONTROL","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_RESUME","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SENDCONTROLLEVELCHANGERESPONSE","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_KEYBOARD_EVENT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_MOUSE_BUTTON_EVENT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_MOUSE_MOVE_EVENT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_MOUSE_WHEEL_EVENT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_SYNC_EVENT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SETSHAREDRECT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SET_RENDERING_SURFACE","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_SHOW_WINDOW","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_STARTREVCONNECTLISTENER","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMCLOSE","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMOPEN","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMREADDATA","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMSENDDATA","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_STREAM_ALLOCBUFFER","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_STREAM_FREEBUFFER","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_TERMINATE_CONNECTION","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_VIEWERCONNECT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_VIEWERDISCONNECT","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_VIRTUAL_CHANNEL_CREATE","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_VIRTUAL_CHANNEL_SEND_DATA","features":[535]},{"name":"DISPID_RDPSRAPI_METHOD_VIRTUAL_CHANNEL_SET_ACCESS","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_APPFILTERENABLED","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_APPFILTER_ENABLED","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_APPFLAGS","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_APPLICATION","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_APPLICATION_FILTER","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_APPLICATION_LIST","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_APPNAME","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_ATTENDEELIMIT","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_ATTENDEES","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_ATTENDEE_FLAGS","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_CHANNELMANAGER","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_CODE","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_CONINFO","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_CONNECTION_STRING","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_COUNT","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_CTRL_LEVEL","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_DBG_CLX_CMDLINE","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_DISCONNECTED_STRING","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_DISPIDVALUE","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER_BPP","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER_HEIGHT","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER_WIDTH","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_GROUP_NAME","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_ID","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_INVITATION","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_INVITATIONITEM","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_INVITATIONS","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_LOCAL_IP","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_LOCAL_PORT","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_PASSWORD","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_PEER_IP","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_PEER_PORT","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_PROTOCOL_TYPE","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_REASON","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_REMOTENAME","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_REVOKED","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_SESSION_COLORDEPTH","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_SESSION_PROPERTIES","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_SHARED","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_CONTEXT","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_FLAGS","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_PAYLOADOFFSET","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_PAYLOADSIZE","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_STORAGE","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_STORESIZE","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_USESMARTSIZING","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_VIRTUAL_CHANNEL_GETFLAGS","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_VIRTUAL_CHANNEL_GETNAME","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_VIRTUAL_CHANNEL_GETPRIORITY","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_WINDOWID","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_WINDOWNAME","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_WINDOWSHARED","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_WINDOW_LIST","features":[535]},{"name":"DISPID_RDPSRAPI_PROP_WNDFLAGS","features":[535]},{"name":"IRDPSRAPIApplication","features":[354,535]},{"name":"IRDPSRAPIApplicationFilter","features":[354,535]},{"name":"IRDPSRAPIApplicationList","features":[354,535]},{"name":"IRDPSRAPIAttendee","features":[354,535]},{"name":"IRDPSRAPIAttendeeDisconnectInfo","features":[354,535]},{"name":"IRDPSRAPIAttendeeManager","features":[354,535]},{"name":"IRDPSRAPIAudioStream","features":[535]},{"name":"IRDPSRAPIClipboardUseEvents","features":[535]},{"name":"IRDPSRAPIDebug","features":[535]},{"name":"IRDPSRAPIFrameBuffer","features":[354,535]},{"name":"IRDPSRAPIInvitation","features":[354,535]},{"name":"IRDPSRAPIInvitationManager","features":[354,535]},{"name":"IRDPSRAPIPerfCounterLogger","features":[535]},{"name":"IRDPSRAPIPerfCounterLoggingManager","features":[535]},{"name":"IRDPSRAPISessionProperties","features":[354,535]},{"name":"IRDPSRAPISharingSession","features":[354,535]},{"name":"IRDPSRAPISharingSession2","features":[354,535]},{"name":"IRDPSRAPITcpConnectionInfo","features":[354,535]},{"name":"IRDPSRAPITransportStream","features":[535]},{"name":"IRDPSRAPITransportStreamBuffer","features":[535]},{"name":"IRDPSRAPITransportStreamEvents","features":[535]},{"name":"IRDPSRAPIViewer","features":[354,535]},{"name":"IRDPSRAPIVirtualChannel","features":[354,535]},{"name":"IRDPSRAPIVirtualChannelManager","features":[354,535]},{"name":"IRDPSRAPIWindow","features":[354,535]},{"name":"IRDPSRAPIWindowList","features":[354,535]},{"name":"IRDPViewerInputSink","features":[535]},{"name":"RDPENCOMAPI_ATTENDEE_FLAGS","features":[535]},{"name":"RDPENCOMAPI_CONSTANTS","features":[535]},{"name":"RDPSRAPIApplication","features":[535]},{"name":"RDPSRAPIApplicationFilter","features":[535]},{"name":"RDPSRAPIApplicationList","features":[535]},{"name":"RDPSRAPIAttendee","features":[535]},{"name":"RDPSRAPIAttendeeDisconnectInfo","features":[535]},{"name":"RDPSRAPIAttendeeManager","features":[535]},{"name":"RDPSRAPIFrameBuffer","features":[535]},{"name":"RDPSRAPIInvitation","features":[535]},{"name":"RDPSRAPIInvitationManager","features":[535]},{"name":"RDPSRAPISessionProperties","features":[535]},{"name":"RDPSRAPITcpConnectionInfo","features":[535]},{"name":"RDPSRAPIWindow","features":[535]},{"name":"RDPSRAPIWindowList","features":[535]},{"name":"RDPSRAPI_APP_FLAGS","features":[535]},{"name":"RDPSRAPI_KBD_CODE_SCANCODE","features":[535]},{"name":"RDPSRAPI_KBD_CODE_TYPE","features":[535]},{"name":"RDPSRAPI_KBD_CODE_UNICODE","features":[535]},{"name":"RDPSRAPI_KBD_SYNC_FLAG","features":[535]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_CAPS_LOCK","features":[535]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_KANA_LOCK","features":[535]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_NUM_LOCK","features":[535]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_SCROLL_LOCK","features":[535]},{"name":"RDPSRAPI_MOUSE_BUTTON_BUTTON1","features":[535]},{"name":"RDPSRAPI_MOUSE_BUTTON_BUTTON2","features":[535]},{"name":"RDPSRAPI_MOUSE_BUTTON_BUTTON3","features":[535]},{"name":"RDPSRAPI_MOUSE_BUTTON_TYPE","features":[535]},{"name":"RDPSRAPI_MOUSE_BUTTON_XBUTTON1","features":[535]},{"name":"RDPSRAPI_MOUSE_BUTTON_XBUTTON2","features":[535]},{"name":"RDPSRAPI_MOUSE_BUTTON_XBUTTON3","features":[535]},{"name":"RDPSRAPI_WND_FLAGS","features":[535]},{"name":"RDPSession","features":[535]},{"name":"RDPTransportStreamBuffer","features":[535]},{"name":"RDPTransportStreamEvents","features":[535]},{"name":"RDPViewer","features":[535]},{"name":"WND_FLAG_PRIVILEGED","features":[535]},{"name":"_IRDPSessionEvents","features":[354,535]},{"name":"__ReferenceRemainingTypes__","features":[535]}],"549":[{"name":"AcquireDeveloperLicense","features":[303,536]},{"name":"CheckDeveloperLicense","features":[303,536]},{"name":"RemoveDeveloperLicense","features":[303,536]}],"550":[{"name":"CeipIsOptedIn","features":[303,537]}],"551":[{"name":"COR_DEBUG_IL_TO_NATIVE_MAP","features":[538]},{"name":"COR_IL_MAP","features":[303,538]},{"name":"COR_PRF_ALL","features":[538]},{"name":"COR_PRF_ALLOWABLE_AFTER_ATTACH","features":[538]},{"name":"COR_PRF_ALLOWABLE_NOTIFICATION_PROFILER","features":[538]},{"name":"COR_PRF_ASSEMBLY_REFERENCE_INFO","features":[538,539]},{"name":"COR_PRF_CACHED_FUNCTION_FOUND","features":[538]},{"name":"COR_PRF_CACHED_FUNCTION_NOT_FOUND","features":[538]},{"name":"COR_PRF_CLAUSE_CATCH","features":[538]},{"name":"COR_PRF_CLAUSE_FILTER","features":[538]},{"name":"COR_PRF_CLAUSE_FINALLY","features":[538]},{"name":"COR_PRF_CLAUSE_NONE","features":[538]},{"name":"COR_PRF_CLAUSE_TYPE","features":[538]},{"name":"COR_PRF_CODEGEN_DISABLE_ALL_OPTIMIZATIONS","features":[538]},{"name":"COR_PRF_CODEGEN_DISABLE_INLINING","features":[538]},{"name":"COR_PRF_CODEGEN_FLAGS","features":[538]},{"name":"COR_PRF_CODE_INFO","features":[538]},{"name":"COR_PRF_CORE_CLR","features":[538]},{"name":"COR_PRF_DESKTOP_CLR","features":[538]},{"name":"COR_PRF_DISABLE_ALL_NGEN_IMAGES","features":[538]},{"name":"COR_PRF_DISABLE_INLINING","features":[538]},{"name":"COR_PRF_DISABLE_OPTIMIZATIONS","features":[538]},{"name":"COR_PRF_DISABLE_TRANSPARENCY_CHECKS_UNDER_FULL_TRUST","features":[538]},{"name":"COR_PRF_ENABLE_FRAME_INFO","features":[538]},{"name":"COR_PRF_ENABLE_FUNCTION_ARGS","features":[538]},{"name":"COR_PRF_ENABLE_FUNCTION_RETVAL","features":[538]},{"name":"COR_PRF_ENABLE_INPROC_DEBUGGING","features":[538]},{"name":"COR_PRF_ENABLE_JIT_MAPS","features":[538]},{"name":"COR_PRF_ENABLE_OBJECT_ALLOCATED","features":[538]},{"name":"COR_PRF_ENABLE_REJIT","features":[538]},{"name":"COR_PRF_ENABLE_STACK_SNAPSHOT","features":[538]},{"name":"COR_PRF_EVENTPIPE_ARRAY","features":[538]},{"name":"COR_PRF_EVENTPIPE_BOOLEAN","features":[538]},{"name":"COR_PRF_EVENTPIPE_BYTE","features":[538]},{"name":"COR_PRF_EVENTPIPE_CHAR","features":[538]},{"name":"COR_PRF_EVENTPIPE_CRITICAL","features":[538]},{"name":"COR_PRF_EVENTPIPE_DATETIME","features":[538]},{"name":"COR_PRF_EVENTPIPE_DECIMAL","features":[538]},{"name":"COR_PRF_EVENTPIPE_DOUBLE","features":[538]},{"name":"COR_PRF_EVENTPIPE_ERROR","features":[538]},{"name":"COR_PRF_EVENTPIPE_GUID","features":[538]},{"name":"COR_PRF_EVENTPIPE_INFORMATIONAL","features":[538]},{"name":"COR_PRF_EVENTPIPE_INT16","features":[538]},{"name":"COR_PRF_EVENTPIPE_INT32","features":[538]},{"name":"COR_PRF_EVENTPIPE_INT64","features":[538]},{"name":"COR_PRF_EVENTPIPE_LEVEL","features":[538]},{"name":"COR_PRF_EVENTPIPE_LOGALWAYS","features":[538]},{"name":"COR_PRF_EVENTPIPE_OBJECT","features":[538]},{"name":"COR_PRF_EVENTPIPE_PARAM_DESC","features":[538]},{"name":"COR_PRF_EVENTPIPE_PARAM_TYPE","features":[538]},{"name":"COR_PRF_EVENTPIPE_PROVIDER_CONFIG","features":[538]},{"name":"COR_PRF_EVENTPIPE_SBYTE","features":[538]},{"name":"COR_PRF_EVENTPIPE_SINGLE","features":[538]},{"name":"COR_PRF_EVENTPIPE_STRING","features":[538]},{"name":"COR_PRF_EVENTPIPE_UINT16","features":[538]},{"name":"COR_PRF_EVENTPIPE_UINT32","features":[538]},{"name":"COR_PRF_EVENTPIPE_UINT64","features":[538]},{"name":"COR_PRF_EVENTPIPE_VERBOSE","features":[538]},{"name":"COR_PRF_EVENTPIPE_WARNING","features":[538]},{"name":"COR_PRF_EVENT_DATA","features":[538]},{"name":"COR_PRF_EX_CLAUSE_INFO","features":[538]},{"name":"COR_PRF_FIELD_APP_DOMAIN_STATIC","features":[538]},{"name":"COR_PRF_FIELD_CONTEXT_STATIC","features":[538]},{"name":"COR_PRF_FIELD_NOT_A_STATIC","features":[538]},{"name":"COR_PRF_FIELD_RVA_STATIC","features":[538]},{"name":"COR_PRF_FIELD_THREAD_STATIC","features":[538]},{"name":"COR_PRF_FILTER_DATA","features":[538]},{"name":"COR_PRF_FINALIZER_CRITICAL","features":[538]},{"name":"COR_PRF_FINALIZER_FLAGS","features":[538]},{"name":"COR_PRF_FUNCTION","features":[538]},{"name":"COR_PRF_FUNCTION_ARGUMENT_INFO","features":[538]},{"name":"COR_PRF_FUNCTION_ARGUMENT_RANGE","features":[538]},{"name":"COR_PRF_GC_GENERATION","features":[538]},{"name":"COR_PRF_GC_GENERATION_RANGE","features":[538]},{"name":"COR_PRF_GC_GEN_0","features":[538]},{"name":"COR_PRF_GC_GEN_1","features":[538]},{"name":"COR_PRF_GC_GEN_2","features":[538]},{"name":"COR_PRF_GC_INDUCED","features":[538]},{"name":"COR_PRF_GC_LARGE_OBJECT_HEAP","features":[538]},{"name":"COR_PRF_GC_OTHER","features":[538]},{"name":"COR_PRF_GC_PINNED_OBJECT_HEAP","features":[538]},{"name":"COR_PRF_GC_REASON","features":[538]},{"name":"COR_PRF_GC_ROOT_FINALIZER","features":[538]},{"name":"COR_PRF_GC_ROOT_FLAGS","features":[538]},{"name":"COR_PRF_GC_ROOT_HANDLE","features":[538]},{"name":"COR_PRF_GC_ROOT_INTERIOR","features":[538]},{"name":"COR_PRF_GC_ROOT_KIND","features":[538]},{"name":"COR_PRF_GC_ROOT_OTHER","features":[538]},{"name":"COR_PRF_GC_ROOT_PINNING","features":[538]},{"name":"COR_PRF_GC_ROOT_REFCOUNTED","features":[538]},{"name":"COR_PRF_GC_ROOT_STACK","features":[538]},{"name":"COR_PRF_GC_ROOT_WEAKREF","features":[538]},{"name":"COR_PRF_HANDLE_TYPE","features":[538]},{"name":"COR_PRF_HANDLE_TYPE_PINNED","features":[538]},{"name":"COR_PRF_HANDLE_TYPE_STRONG","features":[538]},{"name":"COR_PRF_HANDLE_TYPE_WEAK","features":[538]},{"name":"COR_PRF_HIGH_ADD_ASSEMBLY_REFERENCES","features":[538]},{"name":"COR_PRF_HIGH_ALLOWABLE_AFTER_ATTACH","features":[538]},{"name":"COR_PRF_HIGH_ALLOWABLE_NOTIFICATION_PROFILER","features":[538]},{"name":"COR_PRF_HIGH_BASIC_GC","features":[538]},{"name":"COR_PRF_HIGH_DISABLE_TIERED_COMPILATION","features":[538]},{"name":"COR_PRF_HIGH_IN_MEMORY_SYMBOLS_UPDATED","features":[538]},{"name":"COR_PRF_HIGH_MONITOR","features":[538]},{"name":"COR_PRF_HIGH_MONITOR_DYNAMIC_FUNCTION_UNLOADS","features":[538]},{"name":"COR_PRF_HIGH_MONITOR_EVENT_PIPE","features":[538]},{"name":"COR_PRF_HIGH_MONITOR_GC_MOVED_OBJECTS","features":[538]},{"name":"COR_PRF_HIGH_MONITOR_IMMUTABLE","features":[538]},{"name":"COR_PRF_HIGH_MONITOR_LARGEOBJECT_ALLOCATED","features":[538]},{"name":"COR_PRF_HIGH_MONITOR_NONE","features":[538]},{"name":"COR_PRF_HIGH_MONITOR_PINNEDOBJECT_ALLOCATED","features":[538]},{"name":"COR_PRF_HIGH_REQUIRE_PROFILE_IMAGE","features":[538]},{"name":"COR_PRF_JIT_CACHE","features":[538]},{"name":"COR_PRF_METHOD","features":[538]},{"name":"COR_PRF_MISC","features":[538]},{"name":"COR_PRF_MODULE_COLLECTIBLE","features":[538]},{"name":"COR_PRF_MODULE_DISK","features":[538]},{"name":"COR_PRF_MODULE_DYNAMIC","features":[538]},{"name":"COR_PRF_MODULE_FLAGS","features":[538]},{"name":"COR_PRF_MODULE_FLAT_LAYOUT","features":[538]},{"name":"COR_PRF_MODULE_NGEN","features":[538]},{"name":"COR_PRF_MODULE_RESOURCE","features":[538]},{"name":"COR_PRF_MODULE_WINDOWS_RUNTIME","features":[538]},{"name":"COR_PRF_MONITOR","features":[538]},{"name":"COR_PRF_MONITOR_ALL","features":[538]},{"name":"COR_PRF_MONITOR_APPDOMAIN_LOADS","features":[538]},{"name":"COR_PRF_MONITOR_ASSEMBLY_LOADS","features":[538]},{"name":"COR_PRF_MONITOR_CACHE_SEARCHES","features":[538]},{"name":"COR_PRF_MONITOR_CCW","features":[538]},{"name":"COR_PRF_MONITOR_CLASS_LOADS","features":[538]},{"name":"COR_PRF_MONITOR_CLR_EXCEPTIONS","features":[538]},{"name":"COR_PRF_MONITOR_CODE_TRANSITIONS","features":[538]},{"name":"COR_PRF_MONITOR_ENTERLEAVE","features":[538]},{"name":"COR_PRF_MONITOR_EXCEPTIONS","features":[538]},{"name":"COR_PRF_MONITOR_FUNCTION_UNLOADS","features":[538]},{"name":"COR_PRF_MONITOR_GC","features":[538]},{"name":"COR_PRF_MONITOR_IMMUTABLE","features":[538]},{"name":"COR_PRF_MONITOR_JIT_COMPILATION","features":[538]},{"name":"COR_PRF_MONITOR_MODULE_LOADS","features":[538]},{"name":"COR_PRF_MONITOR_NONE","features":[538]},{"name":"COR_PRF_MONITOR_OBJECT_ALLOCATED","features":[538]},{"name":"COR_PRF_MONITOR_REMOTING","features":[538]},{"name":"COR_PRF_MONITOR_REMOTING_ASYNC","features":[538]},{"name":"COR_PRF_MONITOR_REMOTING_COOKIE","features":[538]},{"name":"COR_PRF_MONITOR_SUSPENDS","features":[538]},{"name":"COR_PRF_MONITOR_THREADS","features":[538]},{"name":"COR_PRF_NONGC_HEAP_RANGE","features":[538]},{"name":"COR_PRF_REJIT_BLOCK_INLINING","features":[538]},{"name":"COR_PRF_REJIT_FLAGS","features":[538]},{"name":"COR_PRF_REJIT_INLINING_CALLBACKS","features":[538]},{"name":"COR_PRF_REQUIRE_PROFILE_IMAGE","features":[538]},{"name":"COR_PRF_RUNTIME_TYPE","features":[538]},{"name":"COR_PRF_SNAPSHOT_DEFAULT","features":[538]},{"name":"COR_PRF_SNAPSHOT_INFO","features":[538]},{"name":"COR_PRF_SNAPSHOT_REGISTER_CONTEXT","features":[538]},{"name":"COR_PRF_SNAPSHOT_X86_OPTIMIZED","features":[538]},{"name":"COR_PRF_STATIC_TYPE","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_APPDOMAIN_SHUTDOWN","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_CODE_PITCHING","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_GC","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_GC_PREP","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_INPROC_DEBUGGER","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_PROFILER","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_REJIT","features":[538]},{"name":"COR_PRF_SUSPEND_FOR_SHUTDOWN","features":[538]},{"name":"COR_PRF_SUSPEND_OTHER","features":[538]},{"name":"COR_PRF_SUSPEND_REASON","features":[538]},{"name":"COR_PRF_TRANSITION_CALL","features":[538]},{"name":"COR_PRF_TRANSITION_REASON","features":[538]},{"name":"COR_PRF_TRANSITION_RETURN","features":[538]},{"name":"COR_PRF_USE_PROFILE_IMAGES","features":[538]},{"name":"CorDebugIlToNativeMappingTypes","features":[538]},{"name":"EPILOG","features":[538]},{"name":"EventPipeProviderCallback","features":[538]},{"name":"FunctionEnter","features":[538]},{"name":"FunctionEnter2","features":[538]},{"name":"FunctionEnter3","features":[538]},{"name":"FunctionEnter3WithInfo","features":[538]},{"name":"FunctionIDMapper","features":[303,538]},{"name":"FunctionIDMapper2","features":[303,538]},{"name":"FunctionIDOrClientID","features":[538]},{"name":"FunctionLeave","features":[538]},{"name":"FunctionLeave2","features":[538]},{"name":"FunctionLeave3","features":[538]},{"name":"FunctionLeave3WithInfo","features":[538]},{"name":"FunctionTailcall","features":[538]},{"name":"FunctionTailcall2","features":[538]},{"name":"FunctionTailcall3","features":[538]},{"name":"FunctionTailcall3WithInfo","features":[538]},{"name":"ICorProfilerAssemblyReferenceProvider","features":[538]},{"name":"ICorProfilerCallback","features":[538]},{"name":"ICorProfilerCallback10","features":[538]},{"name":"ICorProfilerCallback11","features":[538]},{"name":"ICorProfilerCallback2","features":[538]},{"name":"ICorProfilerCallback3","features":[538]},{"name":"ICorProfilerCallback4","features":[538]},{"name":"ICorProfilerCallback5","features":[538]},{"name":"ICorProfilerCallback6","features":[538]},{"name":"ICorProfilerCallback7","features":[538]},{"name":"ICorProfilerCallback8","features":[538]},{"name":"ICorProfilerCallback9","features":[538]},{"name":"ICorProfilerFunctionControl","features":[538]},{"name":"ICorProfilerFunctionEnum","features":[538]},{"name":"ICorProfilerInfo","features":[538]},{"name":"ICorProfilerInfo10","features":[538]},{"name":"ICorProfilerInfo11","features":[538]},{"name":"ICorProfilerInfo12","features":[538]},{"name":"ICorProfilerInfo13","features":[538]},{"name":"ICorProfilerInfo14","features":[538]},{"name":"ICorProfilerInfo2","features":[538]},{"name":"ICorProfilerInfo3","features":[538]},{"name":"ICorProfilerInfo4","features":[538]},{"name":"ICorProfilerInfo5","features":[538]},{"name":"ICorProfilerInfo6","features":[538]},{"name":"ICorProfilerInfo7","features":[538]},{"name":"ICorProfilerInfo8","features":[538]},{"name":"ICorProfilerInfo9","features":[538]},{"name":"ICorProfilerMethodEnum","features":[538]},{"name":"ICorProfilerModuleEnum","features":[538]},{"name":"ICorProfilerObjectEnum","features":[538]},{"name":"ICorProfilerThreadEnum","features":[538]},{"name":"IMethodMalloc","features":[538]},{"name":"NO_MAPPING","features":[538]},{"name":"ObjectReferenceCallback","features":[303,538]},{"name":"PROFILER_GLOBAL_CLASS","features":[538]},{"name":"PROFILER_GLOBAL_MODULE","features":[538]},{"name":"PROFILER_PARENT_UNKNOWN","features":[538]},{"name":"PROLOG","features":[538]},{"name":"StackSnapshotCallback","features":[538]}],"552":[{"name":"ABNORMAL_RESET_DETECTED","features":[331]},{"name":"ACPI_BIOS_ERROR","features":[331]},{"name":"ACPI_BIOS_FATAL_ERROR","features":[331]},{"name":"ACPI_DRIVER_INTERNAL","features":[331]},{"name":"ACPI_FIRMWARE_WATCHDOG_TIMEOUT","features":[331]},{"name":"ACTIVE_EX_WORKER_THREAD_TERMINATION","features":[331]},{"name":"ADDRESS","features":[331]},{"name":"ADDRESS64","features":[331]},{"name":"ADDRESS_MODE","features":[331]},{"name":"AER_BRIDGE_DESCRIPTOR_FLAGS","features":[331]},{"name":"AER_ENDPOINT_DESCRIPTOR_FLAGS","features":[331]},{"name":"AER_ROOTPORT_DESCRIPTOR_FLAGS","features":[331]},{"name":"AGP_GART_CORRUPTION","features":[331]},{"name":"AGP_ILLEGALLY_REPROGRAMMED","features":[331]},{"name":"AGP_INTERNAL","features":[331]},{"name":"AGP_INVALID_ACCESS","features":[331]},{"name":"APC_CALLBACK_DATA","features":[331,309]},{"name":"APC_INDEX_MISMATCH","features":[331]},{"name":"API_VERSION","features":[331]},{"name":"API_VERSION_NUMBER","features":[331]},{"name":"APP_TAGGING_INITIALIZATION_FAILED","features":[331]},{"name":"ARM64_NT_CONTEXT","features":[331]},{"name":"ARM64_NT_NEON128","features":[331]},{"name":"ASSIGN_DRIVE_LETTERS_FAILED","features":[331]},{"name":"ATDISK_DRIVER_INTERNAL","features":[331]},{"name":"ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY","features":[331]},{"name":"ATTEMPTED_SWITCH_FROM_DPC","features":[331]},{"name":"ATTEMPTED_WRITE_TO_CM_PROTECTED_STORAGE","features":[331]},{"name":"ATTEMPTED_WRITE_TO_READONLY_MEMORY","features":[331]},{"name":"AUDIT_FAILURE","features":[331]},{"name":"AZURE_DEVICE_FW_DUMP","features":[331]},{"name":"AddVectoredContinueHandler","features":[303,331,309]},{"name":"AddVectoredExceptionHandler","features":[303,331,309]},{"name":"AddrMode1616","features":[331]},{"name":"AddrMode1632","features":[331]},{"name":"AddrModeFlat","features":[331]},{"name":"AddrModeReal","features":[331]},{"name":"BAD_EXHANDLE","features":[331]},{"name":"BAD_OBJECT_HEADER","features":[331]},{"name":"BAD_POOL_CALLER","features":[331]},{"name":"BAD_POOL_HEADER","features":[331]},{"name":"BAD_SYSTEM_CONFIG_INFO","features":[331]},{"name":"BC_BLUETOOTH_VERIFIER_FAULT","features":[331]},{"name":"BC_BTHMINI_VERIFIER_FAULT","features":[331]},{"name":"BGI_DETECTED_VIOLATION","features":[331]},{"name":"BIND_ALL_IMAGES","features":[331]},{"name":"BIND_CACHE_IMPORT_DLLS","features":[331]},{"name":"BIND_NO_BOUND_IMPORTS","features":[331]},{"name":"BIND_NO_UPDATE","features":[331]},{"name":"BIND_REPORT_64BIT_VA","features":[331]},{"name":"BITLOCKER_FATAL_ERROR","features":[331]},{"name":"BLUETOOTH_ERROR_RECOVERY_LIVEDUMP","features":[331]},{"name":"BOOTING_IN_SAFEMODE_DSREPAIR","features":[331]},{"name":"BOOTING_IN_SAFEMODE_MINIMAL","features":[331]},{"name":"BOOTING_IN_SAFEMODE_NETWORK","features":[331]},{"name":"BOOTLOG_ENABLED","features":[331]},{"name":"BOOTLOG_LOADED","features":[331]},{"name":"BOOTLOG_NOT_LOADED","features":[331]},{"name":"BOOTPROC_INITIALIZATION_FAILED","features":[331]},{"name":"BOUND_IMAGE_UNSUPPORTED","features":[331]},{"name":"BREAKAWAY_CABLE_TRANSITION","features":[331]},{"name":"BUGCHECK_CONTEXT_MODIFIER","features":[331]},{"name":"BUGCHECK_ERROR","features":[331]},{"name":"BUGCODE_ID_DRIVER","features":[331]},{"name":"BUGCODE_MBBADAPTER_DRIVER","features":[331]},{"name":"BUGCODE_NDIS_DRIVER","features":[331]},{"name":"BUGCODE_NDIS_DRIVER_LIVE_DUMP","features":[331]},{"name":"BUGCODE_NETADAPTER_DRIVER","features":[331]},{"name":"BUGCODE_USB3_DRIVER","features":[331]},{"name":"BUGCODE_USB_DRIVER","features":[331]},{"name":"BUGCODE_WIFIADAPTER_DRIVER","features":[331]},{"name":"Beep","features":[303,331]},{"name":"BindExpandFileHeaders","features":[331]},{"name":"BindForwarder","features":[331]},{"name":"BindForwarder32","features":[331]},{"name":"BindForwarder64","features":[331]},{"name":"BindForwarderNOT","features":[331]},{"name":"BindForwarderNOT32","features":[331]},{"name":"BindForwarderNOT64","features":[331]},{"name":"BindImage","features":[303,331]},{"name":"BindImageComplete","features":[331]},{"name":"BindImageEx","features":[303,331]},{"name":"BindImageModified","features":[331]},{"name":"BindImportModule","features":[331]},{"name":"BindImportModuleFailed","features":[331]},{"name":"BindImportProcedure","features":[331]},{"name":"BindImportProcedure32","features":[331]},{"name":"BindImportProcedure64","features":[331]},{"name":"BindImportProcedureFailed","features":[331]},{"name":"BindMismatchedSymbols","features":[331]},{"name":"BindNoRoomInImage","features":[331]},{"name":"BindOutOfMemory","features":[331]},{"name":"BindRvaToVaFailed","features":[331]},{"name":"BindSymbolsNotUpdated","features":[331]},{"name":"CACHE_INITIALIZATION_FAILED","features":[331]},{"name":"CACHE_MANAGER","features":[331]},{"name":"CALL_HAS_NOT_RETURNED_WATCHDOG_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CANCEL_STATE_IN_COMPLETED_IRP","features":[331]},{"name":"CANNOT_WRITE_CONFIGURATION","features":[331]},{"name":"CBA_CHECK_ARM_MACHINE_THUMB_TYPE_OVERRIDE","features":[331]},{"name":"CBA_CHECK_ENGOPT_DISALLOW_NETWORK_PATHS","features":[331]},{"name":"CBA_DEBUG_INFO","features":[331]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_CANCEL","features":[331]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_COMPLETE","features":[331]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_FAILURE","features":[331]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_PARTIAL","features":[331]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_START","features":[331]},{"name":"CBA_DUPLICATE_SYMBOL","features":[331]},{"name":"CBA_ENGINE_PRESENT","features":[331]},{"name":"CBA_EVENT","features":[331]},{"name":"CBA_MAP_JIT_SYMBOL","features":[331]},{"name":"CBA_READ_MEMORY","features":[331]},{"name":"CBA_SET_OPTIONS","features":[331]},{"name":"CBA_SRCSRV_EVENT","features":[331]},{"name":"CBA_SRCSRV_INFO","features":[331]},{"name":"CBA_SYMBOLS_UNLOADED","features":[331]},{"name":"CBA_UPDATE_STATUS_BAR","features":[331]},{"name":"CBA_XML_LOG","features":[331]},{"name":"CDFS_FILE_SYSTEM","features":[331]},{"name":"CERT_PE_IMAGE_DIGEST_ALL_IMPORT_INFO","features":[331]},{"name":"CERT_PE_IMAGE_DIGEST_DEBUG_INFO","features":[331]},{"name":"CERT_PE_IMAGE_DIGEST_NON_PE_INFO","features":[331]},{"name":"CERT_PE_IMAGE_DIGEST_RESOURCES","features":[331]},{"name":"CERT_SECTION_TYPE_ANY","features":[331]},{"name":"CHECKSUM_MAPVIEW_FAILURE","features":[331]},{"name":"CHECKSUM_MAP_FAILURE","features":[331]},{"name":"CHECKSUM_OPEN_FAILURE","features":[331]},{"name":"CHECKSUM_SUCCESS","features":[331]},{"name":"CHECKSUM_UNICODE_FAILURE","features":[331]},{"name":"CHIPSET_DETECTED_ERROR","features":[331]},{"name":"CID_HANDLE_CREATION","features":[331]},{"name":"CID_HANDLE_DELETION","features":[331]},{"name":"CLOCK_WATCHDOG_TIMEOUT","features":[331]},{"name":"CLUSTER_CLUSPORT_STATUS_IO_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSVFS_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSV_CLUSSVC_DISCONNECT_WATCHDOG","features":[331]},{"name":"CLUSTER_CSV_CLUSTER_WATCHDOG_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSV_SNAPSHOT_DEVICE_INFO_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSV_STATE_TRANSITION_INTERVAL_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSV_STATE_TRANSITION_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSV_STATUS_IO_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSV_VOLUME_ARRIVAL_LIVEDUMP","features":[331]},{"name":"CLUSTER_CSV_VOLUME_REMOVAL_LIVEDUMP","features":[331]},{"name":"CLUSTER_RESOURCE_CALL_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CLUSTER_SVHDX_LIVEDUMP","features":[331]},{"name":"CNSS_FILE_SYSTEM_FILTER","features":[331]},{"name":"CONFIG_INITIALIZATION_FAILED","features":[331]},{"name":"CONFIG_LIST_FAILED","features":[331]},{"name":"CONNECTED_STANDBY_WATCHDOG_TIMEOUT_LIVEDUMP","features":[331]},{"name":"CONTEXT","features":[331,309]},{"name":"CONTEXT","features":[331,309]},{"name":"CONTEXT","features":[331,309]},{"name":"CONTEXT_ALL_AMD64","features":[331]},{"name":"CONTEXT_ALL_ARM","features":[331]},{"name":"CONTEXT_ALL_ARM64","features":[331]},{"name":"CONTEXT_ALL_X86","features":[331]},{"name":"CONTEXT_AMD64","features":[331]},{"name":"CONTEXT_ARM","features":[331]},{"name":"CONTEXT_ARM64","features":[331]},{"name":"CONTEXT_CONTROL_AMD64","features":[331]},{"name":"CONTEXT_CONTROL_ARM","features":[331]},{"name":"CONTEXT_CONTROL_ARM64","features":[331]},{"name":"CONTEXT_CONTROL_X86","features":[331]},{"name":"CONTEXT_DEBUG_REGISTERS_AMD64","features":[331]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM","features":[331]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM64","features":[331]},{"name":"CONTEXT_DEBUG_REGISTERS_X86","features":[331]},{"name":"CONTEXT_EXCEPTION_ACTIVE_AMD64","features":[331]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM","features":[331]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM64","features":[331]},{"name":"CONTEXT_EXCEPTION_ACTIVE_X86","features":[331]},{"name":"CONTEXT_EXCEPTION_REPORTING_AMD64","features":[331]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM","features":[331]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM64","features":[331]},{"name":"CONTEXT_EXCEPTION_REPORTING_X86","features":[331]},{"name":"CONTEXT_EXCEPTION_REQUEST_AMD64","features":[331]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM","features":[331]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM64","features":[331]},{"name":"CONTEXT_EXCEPTION_REQUEST_X86","features":[331]},{"name":"CONTEXT_EXTENDED_REGISTERS_X86","features":[331]},{"name":"CONTEXT_FLAGS","features":[331]},{"name":"CONTEXT_FLOATING_POINT_AMD64","features":[331]},{"name":"CONTEXT_FLOATING_POINT_ARM","features":[331]},{"name":"CONTEXT_FLOATING_POINT_ARM64","features":[331]},{"name":"CONTEXT_FLOATING_POINT_X86","features":[331]},{"name":"CONTEXT_FULL_AMD64","features":[331]},{"name":"CONTEXT_FULL_ARM","features":[331]},{"name":"CONTEXT_FULL_ARM64","features":[331]},{"name":"CONTEXT_FULL_X86","features":[331]},{"name":"CONTEXT_INTEGER_AMD64","features":[331]},{"name":"CONTEXT_INTEGER_ARM","features":[331]},{"name":"CONTEXT_INTEGER_ARM64","features":[331]},{"name":"CONTEXT_INTEGER_X86","features":[331]},{"name":"CONTEXT_KERNEL_CET_AMD64","features":[331]},{"name":"CONTEXT_KERNEL_DEBUGGER_AMD64","features":[331]},{"name":"CONTEXT_RET_TO_GUEST_ARM64","features":[331]},{"name":"CONTEXT_SEGMENTS_AMD64","features":[331]},{"name":"CONTEXT_SEGMENTS_X86","features":[331]},{"name":"CONTEXT_SERVICE_ACTIVE_AMD64","features":[331]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM","features":[331]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM64","features":[331]},{"name":"CONTEXT_SERVICE_ACTIVE_X86","features":[331]},{"name":"CONTEXT_UNWOUND_TO_CALL_AMD64","features":[331]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM","features":[331]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM64","features":[331]},{"name":"CONTEXT_X18_ARM64","features":[331]},{"name":"CONTEXT_X86","features":[331]},{"name":"CONTEXT_XSTATE_AMD64","features":[331]},{"name":"CONTEXT_XSTATE_X86","features":[331]},{"name":"COREMSGCALL_INTERNAL_ERROR","features":[331]},{"name":"COREMSG_INTERNAL_ERROR","features":[331]},{"name":"CORRUPT_ACCESS_TOKEN","features":[331]},{"name":"CPU_INFORMATION","features":[331]},{"name":"CRASHDUMP_WATCHDOG_TIMEOUT","features":[331]},{"name":"CREATE_DELETE_LOCK_NOT_LOCKED","features":[331]},{"name":"CREATE_PROCESS_DEBUG_EVENT","features":[331]},{"name":"CREATE_PROCESS_DEBUG_INFO","features":[303,331,338]},{"name":"CREATE_THREAD_DEBUG_EVENT","features":[331]},{"name":"CREATE_THREAD_DEBUG_INFO","features":[303,331,338]},{"name":"CRITICAL_INITIALIZATION_FAILURE","features":[331]},{"name":"CRITICAL_OBJECT_TERMINATION","features":[331]},{"name":"CRITICAL_PROCESS_DIED","features":[331]},{"name":"CRITICAL_SERVICE_FAILED","features":[331]},{"name":"CRITICAL_STRUCTURE_CORRUPTION","features":[331]},{"name":"CRYPTO_LIBRARY_INTERNAL_ERROR","features":[331]},{"name":"CRYPTO_SELF_TEST_FAILURE","features":[331]},{"name":"CancelCallback","features":[331]},{"name":"CheckRemoteDebuggerPresent","features":[303,331]},{"name":"CheckSumMappedFile","features":[331,333]},{"name":"CheckSumMappedFile","features":[331,333]},{"name":"CloseThreadWaitChainSession","features":[331]},{"name":"CommentStreamA","features":[331]},{"name":"CommentStreamW","features":[331]},{"name":"ContinueDebugEvent","features":[303,331]},{"name":"CopyContext","features":[303,331,309]},{"name":"DAM_WATCHDOG_TIMEOUT","features":[331]},{"name":"DATA_BUS_ERROR","features":[331]},{"name":"DATA_COHERENCY_EXCEPTION","features":[331]},{"name":"DBGHELP_DATA_REPORT_STRUCT","features":[331]},{"name":"DBGPROP_ATTRIB_ACCESS_FINAL","features":[331]},{"name":"DBGPROP_ATTRIB_ACCESS_PRIVATE","features":[331]},{"name":"DBGPROP_ATTRIB_ACCESS_PROTECTED","features":[331]},{"name":"DBGPROP_ATTRIB_ACCESS_PUBLIC","features":[331]},{"name":"DBGPROP_ATTRIB_FLAGS","features":[331]},{"name":"DBGPROP_ATTRIB_FRAME_INCATCHBLOCK","features":[331]},{"name":"DBGPROP_ATTRIB_FRAME_INFINALLYBLOCK","features":[331]},{"name":"DBGPROP_ATTRIB_FRAME_INTRYBLOCK","features":[331]},{"name":"DBGPROP_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[331]},{"name":"DBGPROP_ATTRIB_NO_ATTRIB","features":[331]},{"name":"DBGPROP_ATTRIB_STORAGE_FIELD","features":[331]},{"name":"DBGPROP_ATTRIB_STORAGE_GLOBAL","features":[331]},{"name":"DBGPROP_ATTRIB_STORAGE_STATIC","features":[331]},{"name":"DBGPROP_ATTRIB_STORAGE_VIRTUAL","features":[331]},{"name":"DBGPROP_ATTRIB_TYPE_IS_CONSTANT","features":[331]},{"name":"DBGPROP_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[331]},{"name":"DBGPROP_ATTRIB_TYPE_IS_VOLATILE","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EVENT","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EXPANDABLE","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_IS_FAKE","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_IS_INVALID","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_IS_METHOD","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RAW_STRING","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RETURN_VALUE","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_PENDING_MUTATION","features":[331]},{"name":"DBGPROP_ATTRIB_VALUE_READONLY","features":[331]},{"name":"DBGPROP_INFO","features":[331]},{"name":"DBGPROP_INFO_ATTRIBUTES","features":[331]},{"name":"DBGPROP_INFO_AUTOEXPAND","features":[331]},{"name":"DBGPROP_INFO_BEAUTIFY","features":[331]},{"name":"DBGPROP_INFO_CALLTOSTRING","features":[331]},{"name":"DBGPROP_INFO_DEBUGPROP","features":[331]},{"name":"DBGPROP_INFO_FULLNAME","features":[331]},{"name":"DBGPROP_INFO_NAME","features":[331]},{"name":"DBGPROP_INFO_TYPE","features":[331]},{"name":"DBGPROP_INFO_VALUE","features":[331]},{"name":"DBHHEADER_CVMISC","features":[331]},{"name":"DBHHEADER_DEBUGDIRS","features":[331]},{"name":"DBHHEADER_PDBGUID","features":[331]},{"name":"DEBUG_EVENT","features":[303,331,338]},{"name":"DEBUG_EVENT_CODE","features":[331]},{"name":"DEREF_UNKNOWN_LOGON_SESSION","features":[331]},{"name":"DEVICE_DIAGNOSTIC_LOG_LIVEDUMP","features":[331]},{"name":"DEVICE_QUEUE_NOT_BUSY","features":[331]},{"name":"DEVICE_REFERENCE_COUNT_NOT_ZERO","features":[331]},{"name":"DFSC_FILE_SYSTEM","features":[331]},{"name":"DFS_FILE_SYSTEM","features":[331]},{"name":"DIGEST_FUNCTION","features":[303,331]},{"name":"DIRECTED_FX_TRANSITION_LIVEDUMP","features":[331]},{"name":"DIRTY_MAPPED_PAGES_CONGESTION","features":[331]},{"name":"DIRTY_NOWRITE_PAGES_CONGESTION","features":[331]},{"name":"DISORDERLY_SHUTDOWN","features":[331]},{"name":"DISPATCHER_CONTEXT","features":[303,331,309]},{"name":"DISPATCHER_CONTEXT","features":[303,331,309]},{"name":"DMA_COMMON_BUFFER_VECTOR_ERROR","features":[331]},{"name":"DMP_CONTEXT_RECORD_SIZE_32","features":[331]},{"name":"DMP_CONTEXT_RECORD_SIZE_64","features":[331]},{"name":"DMP_HEADER_COMMENT_SIZE","features":[331]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_32","features":[331]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_64","features":[331]},{"name":"DMP_RESERVED_0_SIZE_32","features":[331]},{"name":"DMP_RESERVED_0_SIZE_64","features":[331]},{"name":"DMP_RESERVED_2_SIZE_32","features":[331]},{"name":"DMP_RESERVED_3_SIZE_32","features":[331]},{"name":"DPC_WATCHDOG_TIMEOUT","features":[331]},{"name":"DPC_WATCHDOG_VIOLATION","features":[331]},{"name":"DRIPS_SW_HW_DIVERGENCE_LIVEDUMP","features":[331]},{"name":"DRIVER_CAUGHT_MODIFYING_FREED_POOL","features":[331]},{"name":"DRIVER_CORRUPTED_EXPOOL","features":[331]},{"name":"DRIVER_CORRUPTED_MMPOOL","features":[331]},{"name":"DRIVER_CORRUPTED_SYSPTES","features":[331]},{"name":"DRIVER_INVALID_CRUNTIME_PARAMETER","features":[331]},{"name":"DRIVER_INVALID_STACK_ACCESS","features":[331]},{"name":"DRIVER_IRQL_NOT_LESS_OR_EQUAL","features":[331]},{"name":"DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS","features":[331]},{"name":"DRIVER_OVERRAN_STACK_BUFFER","features":[331]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[331]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION_M","features":[331]},{"name":"DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[331]},{"name":"DRIVER_PNP_WATCHDOG","features":[331]},{"name":"DRIVER_PORTION_MUST_BE_NONPAGED","features":[331]},{"name":"DRIVER_POWER_STATE_FAILURE","features":[331]},{"name":"DRIVER_RETURNED_HOLDING_CANCEL_LOCK","features":[331]},{"name":"DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN","features":[331]},{"name":"DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS","features":[331]},{"name":"DRIVER_UNMAPPING_INVALID_VIEW","features":[331]},{"name":"DRIVER_USED_EXCESSIVE_PTES","features":[331]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION","features":[331]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION_LIVEDUMP","features":[331]},{"name":"DRIVER_VERIFIER_DMA_VIOLATION","features":[331]},{"name":"DRIVER_VERIFIER_IOMANAGER_VIOLATION","features":[331]},{"name":"DRIVER_VERIFIER_TRACKING_LIVE_DUMP","features":[331]},{"name":"DRIVER_VIOLATION","features":[331]},{"name":"DRIVE_EXTENDER","features":[331]},{"name":"DSLFLAG_MISMATCHED_DBG","features":[331]},{"name":"DSLFLAG_MISMATCHED_PDB","features":[331]},{"name":"DUMP_FILE_ATTRIBUTES","features":[331]},{"name":"DUMP_HEADER32","features":[303,331]},{"name":"DUMP_HEADER64","features":[303,331]},{"name":"DUMP_SUMMARY_VALID_CURRENT_USER_VA","features":[331]},{"name":"DUMP_SUMMARY_VALID_KERNEL_VA","features":[331]},{"name":"DUMP_TYPE","features":[331]},{"name":"DUMP_TYPE_AUTOMATIC","features":[331]},{"name":"DUMP_TYPE_BITMAP_FULL","features":[331]},{"name":"DUMP_TYPE_BITMAP_KERNEL","features":[331]},{"name":"DUMP_TYPE_FULL","features":[331]},{"name":"DUMP_TYPE_HEADER","features":[331]},{"name":"DUMP_TYPE_INVALID","features":[331]},{"name":"DUMP_TYPE_SUMMARY","features":[331]},{"name":"DUMP_TYPE_TRIAGE","features":[331]},{"name":"DUMP_TYPE_UNKNOWN","features":[331]},{"name":"DYNAMIC_ADD_PROCESSOR_MISMATCH","features":[331]},{"name":"DbgHelpCreateUserDump","features":[303,331]},{"name":"DbgHelpCreateUserDumpW","features":[303,331]},{"name":"DebugActiveProcess","features":[303,331]},{"name":"DebugActiveProcessStop","features":[303,331]},{"name":"DebugBreak","features":[331]},{"name":"DebugBreakProcess","features":[303,331]},{"name":"DebugPropertyInfo","features":[331]},{"name":"DebugSetProcessKillOnExit","features":[303,331]},{"name":"DecodePointer","features":[331]},{"name":"DecodeRemotePointer","features":[303,331]},{"name":"DecodeSystemPointer","features":[331]},{"name":"EFS_FATAL_ERROR","features":[331]},{"name":"ELAM_DRIVER_DETECTED_FATAL_ERROR","features":[331]},{"name":"EMPTY_THREAD_REAPER_LIST","features":[331]},{"name":"EM_INITIALIZATION_ERROR","features":[331]},{"name":"END_OF_NT_EVALUATION_PERIOD","features":[331]},{"name":"ERESOURCE_INVALID_RELEASE","features":[331]},{"name":"ERRATA_WORKAROUND_UNSUCCESSFUL","features":[331]},{"name":"ERROR_IMAGE_NOT_STRIPPED","features":[331]},{"name":"ERROR_NO_DBG_POINTER","features":[331]},{"name":"ERROR_NO_PDB_POINTER","features":[331]},{"name":"ESLFLAG_FULLPATH","features":[331]},{"name":"ESLFLAG_INLINE_SITE","features":[331]},{"name":"ESLFLAG_NEAREST","features":[331]},{"name":"ESLFLAG_NEXT","features":[331]},{"name":"ESLFLAG_PREV","features":[331]},{"name":"EVENT_SRCSPEW","features":[331]},{"name":"EVENT_SRCSPEW_END","features":[331]},{"name":"EVENT_SRCSPEW_START","features":[331]},{"name":"EVENT_TRACING_FATAL_ERROR","features":[331]},{"name":"EXCEPTION_CONTINUE_EXECUTION","features":[331]},{"name":"EXCEPTION_CONTINUE_SEARCH","features":[331]},{"name":"EXCEPTION_DEBUG_EVENT","features":[331]},{"name":"EXCEPTION_DEBUG_INFO","features":[303,331]},{"name":"EXCEPTION_EXECUTE_HANDLER","features":[331]},{"name":"EXCEPTION_ON_INVALID_STACK","features":[331]},{"name":"EXCEPTION_POINTERS","features":[303,331,309]},{"name":"EXCEPTION_RECORD","features":[303,331]},{"name":"EXCEPTION_RECORD32","features":[303,331]},{"name":"EXCEPTION_RECORD64","features":[303,331]},{"name":"EXCEPTION_SCOPE_INVALID","features":[331]},{"name":"EXFAT_FILE_SYSTEM","features":[331]},{"name":"EXIT_PROCESS_DEBUG_EVENT","features":[331]},{"name":"EXIT_PROCESS_DEBUG_INFO","features":[331]},{"name":"EXIT_THREAD_DEBUG_EVENT","features":[331]},{"name":"EXIT_THREAD_DEBUG_INFO","features":[331]},{"name":"EXRESOURCE_TIMEOUT_LIVEDUMP","features":[331]},{"name":"EXT_OUTPUT_VER","features":[331]},{"name":"EX_PROP_INFO_DEBUGEXTPROP","features":[331]},{"name":"EX_PROP_INFO_FLAGS","features":[331]},{"name":"EX_PROP_INFO_ID","features":[331]},{"name":"EX_PROP_INFO_LOCKBYTES","features":[331]},{"name":"EX_PROP_INFO_NTYPE","features":[331]},{"name":"EX_PROP_INFO_NVALUE","features":[331]},{"name":"EncodePointer","features":[331]},{"name":"EncodeRemotePointer","features":[303,331]},{"name":"EncodeSystemPointer","features":[331]},{"name":"EnumDirTree","features":[303,331]},{"name":"EnumDirTreeW","features":[303,331]},{"name":"EnumerateLoadedModules","features":[303,331]},{"name":"EnumerateLoadedModules64","features":[303,331]},{"name":"EnumerateLoadedModulesEx","features":[303,331]},{"name":"EnumerateLoadedModulesExW","features":[303,331]},{"name":"EnumerateLoadedModulesW64","features":[303,331]},{"name":"ExceptionStream","features":[331]},{"name":"ExtendedDebugPropertyInfo","features":[427,331]},{"name":"FACILITY_AAF","features":[331]},{"name":"FACILITY_ACCELERATOR","features":[331]},{"name":"FACILITY_ACS","features":[331]},{"name":"FACILITY_ACTION_QUEUE","features":[331]},{"name":"FACILITY_AUDCLNT","features":[331]},{"name":"FACILITY_AUDIO","features":[331]},{"name":"FACILITY_AUDIOSTREAMING","features":[331]},{"name":"FACILITY_BACKGROUNDCOPY","features":[331]},{"name":"FACILITY_BCD","features":[331]},{"name":"FACILITY_BLB","features":[331]},{"name":"FACILITY_BLBUI","features":[331]},{"name":"FACILITY_BLB_CLI","features":[331]},{"name":"FACILITY_BLUETOOTH_ATT","features":[331]},{"name":"FACILITY_CERT","features":[331]},{"name":"FACILITY_CMI","features":[331]},{"name":"FACILITY_CODE","features":[331]},{"name":"FACILITY_COMPLUS","features":[331]},{"name":"FACILITY_CONFIGURATION","features":[331]},{"name":"FACILITY_CONTROL","features":[331]},{"name":"FACILITY_DAF","features":[331]},{"name":"FACILITY_DEBUGGERS","features":[331]},{"name":"FACILITY_DEFRAG","features":[331]},{"name":"FACILITY_DELIVERY_OPTIMIZATION","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_BINLSVC","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_CONTENT_PROVIDER","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_DRIVER_PROVISIONING","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_IMAGING","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MANAGEMENT","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_CLIENT","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_SERVER","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_PXE","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_SERVER","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TFTP","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TRANSPORT_MANAGEMENT","features":[331]},{"name":"FACILITY_DEPLOYMENT_SERVICES_UTIL","features":[331]},{"name":"FACILITY_DEVICE_UPDATE_AGENT","features":[331]},{"name":"FACILITY_DIRECT2D","features":[331]},{"name":"FACILITY_DIRECT3D10","features":[331]},{"name":"FACILITY_DIRECT3D11","features":[331]},{"name":"FACILITY_DIRECT3D11_DEBUG","features":[331]},{"name":"FACILITY_DIRECT3D12","features":[331]},{"name":"FACILITY_DIRECT3D12_DEBUG","features":[331]},{"name":"FACILITY_DIRECTMUSIC","features":[331]},{"name":"FACILITY_DIRECTORYSERVICE","features":[331]},{"name":"FACILITY_DISPATCH","features":[331]},{"name":"FACILITY_DLS","features":[331]},{"name":"FACILITY_DMSERVER","features":[331]},{"name":"FACILITY_DPLAY","features":[331]},{"name":"FACILITY_DRVSERVICING","features":[331]},{"name":"FACILITY_DXCORE","features":[331]},{"name":"FACILITY_DXGI","features":[331]},{"name":"FACILITY_DXGI_DDI","features":[331]},{"name":"FACILITY_EAP","features":[331]},{"name":"FACILITY_EAS","features":[331]},{"name":"FACILITY_FVE","features":[331]},{"name":"FACILITY_FWP","features":[331]},{"name":"FACILITY_GAME","features":[331]},{"name":"FACILITY_GRAPHICS","features":[331]},{"name":"FACILITY_HSP_SERVICES","features":[331]},{"name":"FACILITY_HSP_SOFTWARE","features":[331]},{"name":"FACILITY_HTTP","features":[331]},{"name":"FACILITY_INPUT","features":[331]},{"name":"FACILITY_INTERNET","features":[331]},{"name":"FACILITY_IORING","features":[331]},{"name":"FACILITY_ITF","features":[331]},{"name":"FACILITY_JSCRIPT","features":[331]},{"name":"FACILITY_LEAP","features":[331]},{"name":"FACILITY_LINGUISTIC_SERVICES","features":[331]},{"name":"FACILITY_MBN","features":[331]},{"name":"FACILITY_MEDIASERVER","features":[331]},{"name":"FACILITY_METADIRECTORY","features":[331]},{"name":"FACILITY_MOBILE","features":[331]},{"name":"FACILITY_MSMQ","features":[331]},{"name":"FACILITY_NAP","features":[331]},{"name":"FACILITY_NDIS","features":[331]},{"name":"FACILITY_NT_BIT","features":[331]},{"name":"FACILITY_NULL","features":[331]},{"name":"FACILITY_OCP_UPDATE_AGENT","features":[331]},{"name":"FACILITY_ONLINE_ID","features":[331]},{"name":"FACILITY_OPC","features":[331]},{"name":"FACILITY_P2P","features":[331]},{"name":"FACILITY_P2P_INT","features":[331]},{"name":"FACILITY_PARSE","features":[331]},{"name":"FACILITY_PIDGENX","features":[331]},{"name":"FACILITY_PIX","features":[331]},{"name":"FACILITY_PLA","features":[331]},{"name":"FACILITY_POWERSHELL","features":[331]},{"name":"FACILITY_PRESENTATION","features":[331]},{"name":"FACILITY_QUIC","features":[331]},{"name":"FACILITY_RAS","features":[331]},{"name":"FACILITY_RESTORE","features":[331]},{"name":"FACILITY_RPC","features":[331]},{"name":"FACILITY_SCARD","features":[331]},{"name":"FACILITY_SCRIPT","features":[331]},{"name":"FACILITY_SDIAG","features":[331]},{"name":"FACILITY_SECURITY","features":[331]},{"name":"FACILITY_SERVICE_FABRIC","features":[331]},{"name":"FACILITY_SETUPAPI","features":[331]},{"name":"FACILITY_SHELL","features":[331]},{"name":"FACILITY_SOS","features":[331]},{"name":"FACILITY_SPP","features":[331]},{"name":"FACILITY_SQLITE","features":[331]},{"name":"FACILITY_SSPI","features":[331]},{"name":"FACILITY_STATEREPOSITORY","features":[331]},{"name":"FACILITY_STATE_MANAGEMENT","features":[331]},{"name":"FACILITY_STORAGE","features":[331]},{"name":"FACILITY_SXS","features":[331]},{"name":"FACILITY_SYNCENGINE","features":[331]},{"name":"FACILITY_TIERING","features":[331]},{"name":"FACILITY_TPM_SERVICES","features":[331]},{"name":"FACILITY_TPM_SOFTWARE","features":[331]},{"name":"FACILITY_TTD","features":[331]},{"name":"FACILITY_UI","features":[331]},{"name":"FACILITY_UMI","features":[331]},{"name":"FACILITY_URT","features":[331]},{"name":"FACILITY_USERMODE_COMMONLOG","features":[331]},{"name":"FACILITY_USERMODE_FILTER_MANAGER","features":[331]},{"name":"FACILITY_USERMODE_HNS","features":[331]},{"name":"FACILITY_USERMODE_HYPERVISOR","features":[331]},{"name":"FACILITY_USERMODE_LICENSING","features":[331]},{"name":"FACILITY_USERMODE_SDBUS","features":[331]},{"name":"FACILITY_USERMODE_SPACES","features":[331]},{"name":"FACILITY_USERMODE_VHD","features":[331]},{"name":"FACILITY_USERMODE_VIRTUALIZATION","features":[331]},{"name":"FACILITY_USERMODE_VOLMGR","features":[331]},{"name":"FACILITY_USERMODE_VOLSNAP","features":[331]},{"name":"FACILITY_USER_MODE_SECURITY_CORE","features":[331]},{"name":"FACILITY_USN","features":[331]},{"name":"FACILITY_UTC","features":[331]},{"name":"FACILITY_VISUALCPP","features":[331]},{"name":"FACILITY_WEB","features":[331]},{"name":"FACILITY_WEBSERVICES","features":[331]},{"name":"FACILITY_WEB_SOCKET","features":[331]},{"name":"FACILITY_WEP","features":[331]},{"name":"FACILITY_WER","features":[331]},{"name":"FACILITY_WIA","features":[331]},{"name":"FACILITY_WIN32","features":[331]},{"name":"FACILITY_WINCODEC_DWRITE_DWM","features":[331]},{"name":"FACILITY_WINDOWS","features":[331]},{"name":"FACILITY_WINDOWSUPDATE","features":[331]},{"name":"FACILITY_WINDOWS_CE","features":[331]},{"name":"FACILITY_WINDOWS_DEFENDER","features":[331]},{"name":"FACILITY_WINDOWS_SETUP","features":[331]},{"name":"FACILITY_WINDOWS_STORE","features":[331]},{"name":"FACILITY_WINML","features":[331]},{"name":"FACILITY_WINPE","features":[331]},{"name":"FACILITY_WINRM","features":[331]},{"name":"FACILITY_WMAAECMA","features":[331]},{"name":"FACILITY_WPN","features":[331]},{"name":"FACILITY_WSBAPP","features":[331]},{"name":"FACILITY_WSB_ONLINE","features":[331]},{"name":"FACILITY_XAML","features":[331]},{"name":"FACILITY_XBOX","features":[331]},{"name":"FACILITY_XPS","features":[331]},{"name":"FAST_ERESOURCE_PRECONDITION_VIOLATION","features":[331]},{"name":"FATAL_ABNORMAL_RESET_ERROR","features":[331]},{"name":"FATAL_UNHANDLED_HARD_ERROR","features":[331]},{"name":"FAT_FILE_SYSTEM","features":[331]},{"name":"FAULTY_HARDWARE_CORRUPTED_PAGE","features":[331]},{"name":"FILE_INITIALIZATION_FAILED","features":[331]},{"name":"FILE_SYSTEM","features":[331]},{"name":"FLAG_ENGINE_PRESENT","features":[331]},{"name":"FLAG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[331]},{"name":"FLAG_OVERRIDE_ARM_MACHINE_TYPE","features":[331]},{"name":"FLOPPY_INTERNAL_ERROR","features":[331]},{"name":"FLTMGR_FILE_SYSTEM","features":[331]},{"name":"FORMAT_MESSAGE_ALLOCATE_BUFFER","features":[331]},{"name":"FORMAT_MESSAGE_ARGUMENT_ARRAY","features":[331]},{"name":"FORMAT_MESSAGE_FROM_HMODULE","features":[331]},{"name":"FORMAT_MESSAGE_FROM_STRING","features":[331]},{"name":"FORMAT_MESSAGE_FROM_SYSTEM","features":[331]},{"name":"FORMAT_MESSAGE_IGNORE_INSERTS","features":[331]},{"name":"FORMAT_MESSAGE_OPTIONS","features":[331]},{"name":"FPO_DATA","features":[331]},{"name":"FP_EMULATION_ERROR","features":[331]},{"name":"FSRTL_EXTRA_CREATE_PARAMETER_VIOLATION","features":[331]},{"name":"FatalAppExitA","features":[331]},{"name":"FatalAppExitW","features":[331]},{"name":"FatalExit","features":[331]},{"name":"FindDebugInfoFile","features":[303,331]},{"name":"FindDebugInfoFileEx","features":[303,331]},{"name":"FindDebugInfoFileExW","features":[303,331]},{"name":"FindExecutableImage","features":[303,331]},{"name":"FindExecutableImageEx","features":[303,331]},{"name":"FindExecutableImageExW","features":[303,331]},{"name":"FindFileInPath","features":[303,331]},{"name":"FindFileInSearchPath","features":[303,331]},{"name":"FlushInstructionCache","features":[303,331]},{"name":"FormatMessageA","features":[331]},{"name":"FormatMessageW","features":[331]},{"name":"FunctionTableStream","features":[331]},{"name":"GPIO_CONTROLLER_DRIVER_ERROR","features":[331]},{"name":"GetEnabledXStateFeatures","features":[331]},{"name":"GetErrorMode","features":[331]},{"name":"GetImageConfigInformation","features":[303,331,309,333]},{"name":"GetImageConfigInformation","features":[303,331,309,333]},{"name":"GetImageUnusedHeaderBytes","features":[303,331,309,333]},{"name":"GetSymLoadError","features":[331]},{"name":"GetThreadContext","features":[303,331,309]},{"name":"GetThreadErrorMode","features":[331]},{"name":"GetThreadSelectorEntry","features":[303,331]},{"name":"GetThreadWaitChain","features":[303,331]},{"name":"GetTimestampForLoadedLibrary","features":[303,331]},{"name":"GetXStateFeaturesMask","features":[303,331,309]},{"name":"HAL1_INITIALIZATION_FAILED","features":[331]},{"name":"HAL_BLOCKED_PROCESSOR_INTERNAL_ERROR","features":[331]},{"name":"HAL_ILLEGAL_IOMMU_PAGE_FAULT","features":[331]},{"name":"HAL_INITIALIZATION_FAILED","features":[331]},{"name":"HAL_IOMMU_INTERNAL_ERROR","features":[331]},{"name":"HAL_MEMORY_ALLOCATION","features":[331]},{"name":"HANDLE_ERROR_ON_CRITICAL_THREAD","features":[331]},{"name":"HANDLE_LIVE_DUMP","features":[331]},{"name":"HARDWARE_INTERRUPT_STORM","features":[331]},{"name":"HARDWARE_PROFILE_DOCKED_STRING","features":[331]},{"name":"HARDWARE_PROFILE_UNDOCKED_STRING","features":[331]},{"name":"HARDWARE_PROFILE_UNKNOWN_STRING","features":[331]},{"name":"HARDWARE_WATCHDOG_TIMEOUT","features":[331]},{"name":"HTTP_DRIVER_CORRUPTED","features":[331]},{"name":"HYPERGUARD_INITIALIZATION_FAILURE","features":[331]},{"name":"HYPERGUARD_VIOLATION","features":[331]},{"name":"HYPERVISOR_ERROR","features":[331]},{"name":"HandleDataStream","features":[331]},{"name":"HandleOperationListStream","features":[331]},{"name":"IDebugExtendedProperty","features":[331]},{"name":"IDebugProperty","features":[331]},{"name":"IDebugPropertyEnumType_All","features":[331]},{"name":"IDebugPropertyEnumType_Arguments","features":[331]},{"name":"IDebugPropertyEnumType_Locals","features":[331]},{"name":"IDebugPropertyEnumType_LocalsPlusArgs","features":[331]},{"name":"IDebugPropertyEnumType_Registers","features":[331]},{"name":"IEnumDebugExtendedPropertyInfo","features":[331]},{"name":"IEnumDebugPropertyInfo","features":[331]},{"name":"ILLEGAL_ATS_INITIALIZATION","features":[331]},{"name":"ILLEGAL_IOMMU_PAGE_FAULT","features":[331]},{"name":"IMAGEHLP_CBA_EVENT","features":[331]},{"name":"IMAGEHLP_CBA_EVENTW","features":[331]},{"name":"IMAGEHLP_CBA_EVENT_SEVERITY","features":[331]},{"name":"IMAGEHLP_CBA_READ_MEMORY","features":[331]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD","features":[303,331]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD64","features":[303,331]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOADW64","features":[303,331]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL","features":[331]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL64","features":[331]},{"name":"IMAGEHLP_EXTENDED_OPTIONS","features":[331]},{"name":"IMAGEHLP_GET_TYPE_INFO_CHILDREN","features":[331]},{"name":"IMAGEHLP_GET_TYPE_INFO_FLAGS","features":[331]},{"name":"IMAGEHLP_GET_TYPE_INFO_PARAMS","features":[331]},{"name":"IMAGEHLP_GET_TYPE_INFO_UNCACHED","features":[331]},{"name":"IMAGEHLP_HD_TYPE","features":[331]},{"name":"IMAGEHLP_JIT_SYMBOLMAP","features":[331]},{"name":"IMAGEHLP_LINE","features":[331]},{"name":"IMAGEHLP_LINE64","features":[331]},{"name":"IMAGEHLP_LINEW","features":[331]},{"name":"IMAGEHLP_LINEW64","features":[331]},{"name":"IMAGEHLP_MODULE","features":[331]},{"name":"IMAGEHLP_MODULE64","features":[303,331]},{"name":"IMAGEHLP_MODULE64_EX","features":[303,331]},{"name":"IMAGEHLP_MODULEW","features":[331]},{"name":"IMAGEHLP_MODULEW64","features":[303,331]},{"name":"IMAGEHLP_MODULEW64_EX","features":[303,331]},{"name":"IMAGEHLP_MODULE_REGION_ADDITIONAL","features":[331]},{"name":"IMAGEHLP_MODULE_REGION_ALL","features":[331]},{"name":"IMAGEHLP_MODULE_REGION_DLLBASE","features":[331]},{"name":"IMAGEHLP_MODULE_REGION_DLLRANGE","features":[331]},{"name":"IMAGEHLP_MODULE_REGION_JIT","features":[331]},{"name":"IMAGEHLP_RMAP_BIG_ENDIAN","features":[331]},{"name":"IMAGEHLP_RMAP_FIXUP_ARM64X","features":[331]},{"name":"IMAGEHLP_RMAP_FIXUP_IMAGEBASE","features":[331]},{"name":"IMAGEHLP_RMAP_IGNORE_MISCOMPARE","features":[331]},{"name":"IMAGEHLP_RMAP_LOAD_RW_DATA_SECTIONS","features":[331]},{"name":"IMAGEHLP_RMAP_MAPPED_FLAT","features":[331]},{"name":"IMAGEHLP_RMAP_OMIT_SHARED_RW_DATA_SECTIONS","features":[331]},{"name":"IMAGEHLP_SF_TYPE","features":[331]},{"name":"IMAGEHLP_STACK_FRAME","features":[303,331]},{"name":"IMAGEHLP_STATUS_REASON","features":[331]},{"name":"IMAGEHLP_SYMBOL","features":[331]},{"name":"IMAGEHLP_SYMBOL64","features":[331]},{"name":"IMAGEHLP_SYMBOL64_PACKAGE","features":[331]},{"name":"IMAGEHLP_SYMBOLW","features":[331]},{"name":"IMAGEHLP_SYMBOLW64","features":[331]},{"name":"IMAGEHLP_SYMBOLW64_PACKAGE","features":[331]},{"name":"IMAGEHLP_SYMBOLW_PACKAGE","features":[331]},{"name":"IMAGEHLP_SYMBOL_FUNCTION","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_CONSTANT","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_FRAMERELATIVE","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_LOCAL","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_PARAMETER","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_REGISTER","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_REGRELATIVE","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_TLSRELATIVE","features":[331]},{"name":"IMAGEHLP_SYMBOL_INFO_VALUEPRESENT","features":[331]},{"name":"IMAGEHLP_SYMBOL_PACKAGE","features":[331]},{"name":"IMAGEHLP_SYMBOL_SRC","features":[331]},{"name":"IMAGEHLP_SYMBOL_THUNK","features":[331]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO","features":[331]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO_MAX","features":[331]},{"name":"IMAGEHLP_SYMBOL_VIRTUAL","features":[331]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY","features":[331]},{"name":"IMAGE_COFF_SYMBOLS_HEADER","features":[331]},{"name":"IMAGE_COR20_HEADER","features":[331]},{"name":"IMAGE_DATA_DIRECTORY","features":[331]},{"name":"IMAGE_DEBUG_DIRECTORY","features":[331]},{"name":"IMAGE_DEBUG_INFORMATION","features":[303,331,309]},{"name":"IMAGE_DEBUG_TYPE","features":[331]},{"name":"IMAGE_DEBUG_TYPE_BORLAND","features":[331]},{"name":"IMAGE_DEBUG_TYPE_CODEVIEW","features":[331]},{"name":"IMAGE_DEBUG_TYPE_COFF","features":[331]},{"name":"IMAGE_DEBUG_TYPE_EXCEPTION","features":[331]},{"name":"IMAGE_DEBUG_TYPE_FIXUP","features":[331]},{"name":"IMAGE_DEBUG_TYPE_FPO","features":[331]},{"name":"IMAGE_DEBUG_TYPE_MISC","features":[331]},{"name":"IMAGE_DEBUG_TYPE_UNKNOWN","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_ARCHITECTURE","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_BASERELOC","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_DEBUG","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_EXCEPTION","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_EXPORT","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_GLOBALPTR","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_IAT","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_IMPORT","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_RESOURCE","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_SECURITY","features":[331]},{"name":"IMAGE_DIRECTORY_ENTRY_TLS","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_APPCONTAINER","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT_STRICT_MODE","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_DYNAMIC_APIS_ALLOW_IN_PROC","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_1","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_2","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_SET_CONTEXT_IP_VALIDATION_RELAXED_MODE","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_GUARD_CF","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_BIND","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_ISOLATION","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_SEH","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_NX_COMPAT","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE","features":[331]},{"name":"IMAGE_DLLCHARACTERISTICS_WDM_DRIVER","features":[331]},{"name":"IMAGE_DLL_CHARACTERISTICS","features":[331]},{"name":"IMAGE_FILE_32BIT_MACHINE","features":[331]},{"name":"IMAGE_FILE_32BIT_MACHINE2","features":[331]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM","features":[331]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM2","features":[331]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI","features":[331]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI_2","features":[331]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO","features":[331]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO2","features":[331]},{"name":"IMAGE_FILE_CHARACTERISTICS","features":[331]},{"name":"IMAGE_FILE_CHARACTERISTICS2","features":[331]},{"name":"IMAGE_FILE_DEBUG_STRIPPED","features":[331]},{"name":"IMAGE_FILE_DEBUG_STRIPPED2","features":[331]},{"name":"IMAGE_FILE_DLL","features":[331]},{"name":"IMAGE_FILE_DLL_2","features":[331]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE","features":[331]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE2","features":[331]},{"name":"IMAGE_FILE_HEADER","features":[331,333]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE","features":[331]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE2","features":[331]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED","features":[331]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED2","features":[331]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED","features":[331]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED2","features":[331]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP","features":[331]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP2","features":[331]},{"name":"IMAGE_FILE_RELOCS_STRIPPED","features":[331]},{"name":"IMAGE_FILE_RELOCS_STRIPPED2","features":[331]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP","features":[331]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP2","features":[331]},{"name":"IMAGE_FILE_SYSTEM","features":[331]},{"name":"IMAGE_FILE_SYSTEM_2","features":[331]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY","features":[331]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY_2","features":[331]},{"name":"IMAGE_FUNCTION_ENTRY","features":[331]},{"name":"IMAGE_FUNCTION_ENTRY64","features":[331]},{"name":"IMAGE_LOAD_CONFIG_CODE_INTEGRITY","features":[331]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY32","features":[331]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY64","features":[331]},{"name":"IMAGE_NT_HEADERS32","features":[331,333]},{"name":"IMAGE_NT_HEADERS64","features":[331,333]},{"name":"IMAGE_NT_OPTIONAL_HDR32_MAGIC","features":[331]},{"name":"IMAGE_NT_OPTIONAL_HDR64_MAGIC","features":[331]},{"name":"IMAGE_NT_OPTIONAL_HDR_MAGIC","features":[331]},{"name":"IMAGE_OPTIONAL_HEADER32","features":[331]},{"name":"IMAGE_OPTIONAL_HEADER64","features":[331]},{"name":"IMAGE_OPTIONAL_HEADER_MAGIC","features":[331]},{"name":"IMAGE_ROM_HEADERS","features":[331,333]},{"name":"IMAGE_ROM_OPTIONAL_HDR_MAGIC","features":[331]},{"name":"IMAGE_ROM_OPTIONAL_HEADER","features":[331]},{"name":"IMAGE_RUNTIME_FUNCTION_ENTRY","features":[331]},{"name":"IMAGE_SCN_ALIGN_1024BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_128BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_16BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_1BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_2048BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_256BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_2BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_32BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_4096BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_4BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_512BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_64BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_8192BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_8BYTES","features":[331]},{"name":"IMAGE_SCN_ALIGN_MASK","features":[331]},{"name":"IMAGE_SCN_CNT_CODE","features":[331]},{"name":"IMAGE_SCN_CNT_INITIALIZED_DATA","features":[331]},{"name":"IMAGE_SCN_CNT_UNINITIALIZED_DATA","features":[331]},{"name":"IMAGE_SCN_GPREL","features":[331]},{"name":"IMAGE_SCN_LNK_COMDAT","features":[331]},{"name":"IMAGE_SCN_LNK_INFO","features":[331]},{"name":"IMAGE_SCN_LNK_NRELOC_OVFL","features":[331]},{"name":"IMAGE_SCN_LNK_OTHER","features":[331]},{"name":"IMAGE_SCN_LNK_REMOVE","features":[331]},{"name":"IMAGE_SCN_MEM_16BIT","features":[331]},{"name":"IMAGE_SCN_MEM_DISCARDABLE","features":[331]},{"name":"IMAGE_SCN_MEM_EXECUTE","features":[331]},{"name":"IMAGE_SCN_MEM_FARDATA","features":[331]},{"name":"IMAGE_SCN_MEM_LOCKED","features":[331]},{"name":"IMAGE_SCN_MEM_NOT_CACHED","features":[331]},{"name":"IMAGE_SCN_MEM_NOT_PAGED","features":[331]},{"name":"IMAGE_SCN_MEM_PRELOAD","features":[331]},{"name":"IMAGE_SCN_MEM_PURGEABLE","features":[331]},{"name":"IMAGE_SCN_MEM_READ","features":[331]},{"name":"IMAGE_SCN_MEM_SHARED","features":[331]},{"name":"IMAGE_SCN_MEM_WRITE","features":[331]},{"name":"IMAGE_SCN_NO_DEFER_SPEC_EXC","features":[331]},{"name":"IMAGE_SCN_SCALE_INDEX","features":[331]},{"name":"IMAGE_SCN_TYPE_NO_PAD","features":[331]},{"name":"IMAGE_SECTION_CHARACTERISTICS","features":[331]},{"name":"IMAGE_SECTION_HEADER","features":[331]},{"name":"IMAGE_SUBSYSTEM","features":[331]},{"name":"IMAGE_SUBSYSTEM_EFI_APPLICATION","features":[331]},{"name":"IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER","features":[331]},{"name":"IMAGE_SUBSYSTEM_EFI_ROM","features":[331]},{"name":"IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER","features":[331]},{"name":"IMAGE_SUBSYSTEM_NATIVE","features":[331]},{"name":"IMAGE_SUBSYSTEM_NATIVE_WINDOWS","features":[331]},{"name":"IMAGE_SUBSYSTEM_OS2_CUI","features":[331]},{"name":"IMAGE_SUBSYSTEM_POSIX_CUI","features":[331]},{"name":"IMAGE_SUBSYSTEM_UNKNOWN","features":[331]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION","features":[331]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CE_GUI","features":[331]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CUI","features":[331]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_GUI","features":[331]},{"name":"IMAGE_SUBSYSTEM_XBOX","features":[331]},{"name":"IMAGE_SUBSYSTEM_XBOX_CODE_CATALOG","features":[331]},{"name":"IMPERSONATING_WORKER_THREAD","features":[331]},{"name":"INACCESSIBLE_BOOT_DEVICE","features":[331]},{"name":"INCONSISTENT_IRP","features":[331]},{"name":"INLINE_FRAME_CONTEXT_IGNORE","features":[331]},{"name":"INLINE_FRAME_CONTEXT_INIT","features":[331]},{"name":"INSTALL_MORE_MEMORY","features":[331]},{"name":"INSTRUCTION_BUS_ERROR","features":[331]},{"name":"INSTRUCTION_COHERENCY_EXCEPTION","features":[331]},{"name":"INSUFFICIENT_SYSTEM_MAP_REGS","features":[331]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_CALLER","features":[331]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_DATA","features":[331]},{"name":"INTERFACE_USES_DISPEX","features":[331]},{"name":"INTERFACE_USES_SECURITY_MANAGER","features":[331]},{"name":"INTERNAL_POWER_ERROR","features":[331]},{"name":"INTERRUPT_EXCEPTION_NOT_HANDLED","features":[331]},{"name":"INTERRUPT_UNWIND_ATTEMPTED","features":[331]},{"name":"INVALID_AFFINITY_SET","features":[331]},{"name":"INVALID_ALTERNATE_SYSTEM_CALL_HANDLER_REGISTRATION","features":[331]},{"name":"INVALID_CALLBACK_STACK_ADDRESS","features":[331]},{"name":"INVALID_CANCEL_OF_FILE_OPEN","features":[331]},{"name":"INVALID_DATA_ACCESS_TRAP","features":[331]},{"name":"INVALID_DRIVER_HANDLE","features":[331]},{"name":"INVALID_EXTENDED_PROCESSOR_STATE","features":[331]},{"name":"INVALID_FLOATING_POINT_STATE","features":[331]},{"name":"INVALID_HIBERNATED_STATE","features":[331]},{"name":"INVALID_IO_BOOST_STATE","features":[331]},{"name":"INVALID_KERNEL_HANDLE","features":[331]},{"name":"INVALID_KERNEL_STACK_ADDRESS","features":[331]},{"name":"INVALID_MDL_RANGE","features":[331]},{"name":"INVALID_PROCESS_ATTACH_ATTEMPT","features":[331]},{"name":"INVALID_PROCESS_DETACH_ATTEMPT","features":[331]},{"name":"INVALID_PUSH_LOCK_FLAGS","features":[331]},{"name":"INVALID_REGION_OR_SEGMENT","features":[331]},{"name":"INVALID_RUNDOWN_PROTECTION_FLAGS","features":[331]},{"name":"INVALID_SILO_DETACH","features":[331]},{"name":"INVALID_SLOT_ALLOCATOR_FLAGS","features":[331]},{"name":"INVALID_SOFTWARE_INTERRUPT","features":[331]},{"name":"INVALID_THREAD_AFFINITY_STATE","features":[331]},{"name":"INVALID_WORK_QUEUE_ITEM","features":[331]},{"name":"IO1_INITIALIZATION_FAILED","features":[331]},{"name":"IOCTL_IPMI_INTERNAL_RECORD_SEL_EVENT","features":[331]},{"name":"IORING","features":[331]},{"name":"IO_OBJECT_INVALID","features":[331]},{"name":"IO_THREADPOOL_DEADLOCK_LIVEDUMP","features":[331]},{"name":"IObjectSafety","features":[331]},{"name":"IPI_WATCHDOG_TIMEOUT","features":[331]},{"name":"IPMI_IOCTL_INDEX","features":[331]},{"name":"IPMI_OS_SEL_RECORD","features":[331]},{"name":"IPMI_OS_SEL_RECORD_MASK","features":[331]},{"name":"IPMI_OS_SEL_RECORD_TYPE","features":[331]},{"name":"IPMI_OS_SEL_RECORD_VERSION","features":[331]},{"name":"IPMI_OS_SEL_RECORD_VERSION_1","features":[331]},{"name":"IPerPropertyBrowsing2","features":[331]},{"name":"IRQL_GT_ZERO_AT_SYSTEM_SERVICE","features":[331]},{"name":"IRQL_NOT_DISPATCH_LEVEL","features":[331]},{"name":"IRQL_NOT_GREATER_OR_EQUAL","features":[331]},{"name":"IRQL_NOT_LESS_OR_EQUAL","features":[331]},{"name":"IRQL_UNEXPECTED_VALUE","features":[331]},{"name":"ImageAddCertificate","features":[303,486,331]},{"name":"ImageDirectoryEntryToData","features":[303,331]},{"name":"ImageDirectoryEntryToDataEx","features":[303,331]},{"name":"ImageEnumerateCertificates","features":[303,331]},{"name":"ImageGetCertificateData","features":[303,486,331]},{"name":"ImageGetCertificateHeader","features":[303,486,331]},{"name":"ImageGetDigestStream","features":[303,331]},{"name":"ImageLoad","features":[303,331,309,333]},{"name":"ImageNtHeader","features":[331,333]},{"name":"ImageNtHeader","features":[331,333]},{"name":"ImageRemoveCertificate","features":[303,331]},{"name":"ImageRvaToSection","features":[331,333]},{"name":"ImageRvaToSection","features":[331,333]},{"name":"ImageRvaToVa","features":[331,333]},{"name":"ImageRvaToVa","features":[331,333]},{"name":"ImageUnload","features":[303,331,309,333]},{"name":"ImagehlpApiVersion","features":[331]},{"name":"ImagehlpApiVersionEx","features":[331]},{"name":"IncludeModuleCallback","features":[331]},{"name":"IncludeThreadCallback","features":[331]},{"name":"IncludeVmRegionCallback","features":[331]},{"name":"InitializeContext","features":[303,331,309]},{"name":"InitializeContext2","features":[303,331,309]},{"name":"IoFinishCallback","features":[331]},{"name":"IoStartCallback","features":[331]},{"name":"IoWriteAllCallback","features":[331]},{"name":"IpmiOsSelRecordTypeBugcheckData","features":[331]},{"name":"IpmiOsSelRecordTypeBugcheckRecovery","features":[331]},{"name":"IpmiOsSelRecordTypeDriver","features":[331]},{"name":"IpmiOsSelRecordTypeMax","features":[331]},{"name":"IpmiOsSelRecordTypeOther","features":[331]},{"name":"IpmiOsSelRecordTypeRaw","features":[331]},{"name":"IpmiOsSelRecordTypeWhea","features":[331]},{"name":"IpmiOsSelRecordTypeWheaErrorNmi","features":[331]},{"name":"IpmiOsSelRecordTypeWheaErrorOther","features":[331]},{"name":"IpmiOsSelRecordTypeWheaErrorPci","features":[331]},{"name":"IpmiOsSelRecordTypeWheaErrorXpfMca","features":[331]},{"name":"IptTraceStream","features":[331]},{"name":"IsDebuggerPresent","features":[303,331]},{"name":"IsProcessSnapshotCallback","features":[331]},{"name":"JavaScriptDataStream","features":[331]},{"name":"KASAN_ENLIGHTENMENT_VIOLATION","features":[331]},{"name":"KASAN_ILLEGAL_ACCESS","features":[331]},{"name":"KDHELP","features":[331]},{"name":"KDHELP64","features":[331]},{"name":"KERNEL_APC_PENDING_DURING_EXIT","features":[331]},{"name":"KERNEL_AUTO_BOOST_INVALID_LOCK_RELEASE","features":[331]},{"name":"KERNEL_AUTO_BOOST_LOCK_ACQUISITION_WITH_RAISED_IRQL","features":[331]},{"name":"KERNEL_CFG_INIT_FAILURE","features":[331]},{"name":"KERNEL_DATA_INPAGE_ERROR","features":[331]},{"name":"KERNEL_EXPAND_STACK_ACTIVE","features":[331]},{"name":"KERNEL_LOCK_ENTRY_LEAKED_ON_THREAD_TERMINATION","features":[331]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED","features":[331]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED_M","features":[331]},{"name":"KERNEL_MODE_HEAP_CORRUPTION","features":[331]},{"name":"KERNEL_PARTITION_REFERENCE_VIOLATION","features":[331]},{"name":"KERNEL_SECURITY_CHECK_FAILURE","features":[331]},{"name":"KERNEL_STACK_INPAGE_ERROR","features":[331]},{"name":"KERNEL_STACK_LOCKED_AT_EXIT","features":[331]},{"name":"KERNEL_STORAGE_SLOT_IN_USE","features":[331]},{"name":"KERNEL_THREAD_PRIORITY_FLOOR_VIOLATION","features":[331]},{"name":"KERNEL_WMI_INTERNAL","features":[331]},{"name":"KMODE_EXCEPTION_NOT_HANDLED","features":[331]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[331]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[331]},{"name":"KNONVOLATILE_CONTEXT_POINTERS_ARM64","features":[331]},{"name":"KernelMinidumpStatusCallback","features":[331]},{"name":"LAST_CHANCE_CALLED_FROM_KMODE","features":[331]},{"name":"LDT_ENTRY","features":[331]},{"name":"LIVE_SYSTEM_DUMP","features":[331]},{"name":"LM_SERVER_INTERNAL_ERROR","features":[331]},{"name":"LOADED_IMAGE","features":[303,331,309,333]},{"name":"LOADED_IMAGE","features":[303,331,309,333]},{"name":"LOADER_BLOCK_MISMATCH","features":[331]},{"name":"LOADER_ROLLBACK_DETECTED","features":[331]},{"name":"LOAD_DLL_DEBUG_EVENT","features":[331]},{"name":"LOAD_DLL_DEBUG_INFO","features":[303,331]},{"name":"LOCKED_PAGES_TRACKER_CORRUPTION","features":[331]},{"name":"LPCALL_BACK_USER_INTERRUPT_ROUTINE","features":[331]},{"name":"LPC_INITIALIZATION_FAILED","features":[331]},{"name":"LPTOP_LEVEL_EXCEPTION_FILTER","features":[303,331,309]},{"name":"LastReservedStream","features":[331]},{"name":"LocateXStateFeature","features":[331,309]},{"name":"M128A","features":[331]},{"name":"MACHINE_CHECK_EXCEPTION","features":[331]},{"name":"MAILSLOT_FILE_SYSTEM","features":[331]},{"name":"MANUALLY_INITIATED_BLACKSCREEN_HOTKEY_LIVE_DUMP","features":[331]},{"name":"MANUALLY_INITIATED_CRASH","features":[331]},{"name":"MANUALLY_INITIATED_CRASH1","features":[331]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD","features":[331]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD_LIVE_DUMP","features":[331]},{"name":"MAXIMUM_WAIT_OBJECTS_EXCEEDED","features":[331]},{"name":"MAX_SYM_NAME","features":[331]},{"name":"MBR_CHECKSUM_MISMATCH","features":[331]},{"name":"MDL_CACHE","features":[331]},{"name":"MEMORY1_INITIALIZATION_FAILED","features":[331]},{"name":"MEMORY_IMAGE_CORRUPT","features":[331]},{"name":"MEMORY_MANAGEMENT","features":[331]},{"name":"MICROCODE_REVISION_MISMATCH","features":[331]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[303,322,331,309,321]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[303,322,331,309,321]},{"name":"MINIDUMP_CALLBACK_INPUT","features":[303,322,331,309]},{"name":"MINIDUMP_CALLBACK_OUTPUT","features":[303,331,321]},{"name":"MINIDUMP_CALLBACK_ROUTINE","features":[303,322,331,309,321]},{"name":"MINIDUMP_CALLBACK_TYPE","features":[331]},{"name":"MINIDUMP_DIRECTORY","features":[331]},{"name":"MINIDUMP_EXCEPTION","features":[331]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[303,331,309]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[303,331,309]},{"name":"MINIDUMP_EXCEPTION_INFORMATION64","features":[303,331]},{"name":"MINIDUMP_EXCEPTION_STREAM","features":[331]},{"name":"MINIDUMP_FUNCTION_TABLE_DESCRIPTOR","features":[331]},{"name":"MINIDUMP_FUNCTION_TABLE_STREAM","features":[331]},{"name":"MINIDUMP_HANDLE_DATA_STREAM","features":[331]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR","features":[331]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR_2","features":[331]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION","features":[331]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE","features":[331]},{"name":"MINIDUMP_HANDLE_OPERATION_LIST","features":[331]},{"name":"MINIDUMP_HEADER","features":[331]},{"name":"MINIDUMP_INCLUDE_MODULE_CALLBACK","features":[331]},{"name":"MINIDUMP_INCLUDE_THREAD_CALLBACK","features":[331]},{"name":"MINIDUMP_IO_CALLBACK","features":[303,331]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR","features":[331]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR64","features":[331]},{"name":"MINIDUMP_MEMORY64_LIST","features":[331]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR","features":[331]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR64","features":[331]},{"name":"MINIDUMP_MEMORY_INFO","features":[331,321]},{"name":"MINIDUMP_MEMORY_INFO_LIST","features":[331]},{"name":"MINIDUMP_MEMORY_LIST","features":[331]},{"name":"MINIDUMP_MISC1_PROCESSOR_POWER_INFO","features":[331]},{"name":"MINIDUMP_MISC1_PROCESS_ID","features":[331]},{"name":"MINIDUMP_MISC1_PROCESS_TIMES","features":[331]},{"name":"MINIDUMP_MISC3_PROCESS_EXECUTE_FLAGS","features":[331]},{"name":"MINIDUMP_MISC3_PROCESS_INTEGRITY","features":[331]},{"name":"MINIDUMP_MISC3_PROTECTED_PROCESS","features":[331]},{"name":"MINIDUMP_MISC3_TIMEZONE","features":[331]},{"name":"MINIDUMP_MISC4_BUILDSTRING","features":[331]},{"name":"MINIDUMP_MISC5_PROCESS_COOKIE","features":[331]},{"name":"MINIDUMP_MISC_INFO","features":[331]},{"name":"MINIDUMP_MISC_INFO_2","features":[331]},{"name":"MINIDUMP_MISC_INFO_3","features":[303,331,540]},{"name":"MINIDUMP_MISC_INFO_4","features":[303,331,540]},{"name":"MINIDUMP_MISC_INFO_5","features":[303,331,540]},{"name":"MINIDUMP_MISC_INFO_FLAGS","features":[331]},{"name":"MINIDUMP_MODULE","features":[322,331]},{"name":"MINIDUMP_MODULE_CALLBACK","features":[322,331]},{"name":"MINIDUMP_MODULE_LIST","features":[322,331]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS","features":[331]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_1","features":[331]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_2","features":[331]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX","features":[331]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX2","features":[331]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_JOB","features":[331]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_VIRTUALSIZE","features":[331]},{"name":"MINIDUMP_READ_MEMORY_FAILURE_CALLBACK","features":[331]},{"name":"MINIDUMP_SECONDARY_FLAGS","features":[331]},{"name":"MINIDUMP_STREAM_TYPE","features":[331]},{"name":"MINIDUMP_STRING","features":[331]},{"name":"MINIDUMP_SYSMEMINFO1_BASICPERF","features":[331]},{"name":"MINIDUMP_SYSMEMINFO1_FILECACHE_TRANSITIONREPURPOSECOUNT_FLAGS","features":[331]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_CCTOTALDIRTYPAGES_CCDIRTYPAGETHRESHOLD","features":[331]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_RESIDENTAVAILABLEPAGES_SHAREDCOMMITPAGES","features":[331]},{"name":"MINIDUMP_SYSTEM_BASIC_INFORMATION","features":[331]},{"name":"MINIDUMP_SYSTEM_BASIC_PERFORMANCE_INFORMATION","features":[331]},{"name":"MINIDUMP_SYSTEM_FILECACHE_INFORMATION","features":[331]},{"name":"MINIDUMP_SYSTEM_INFO","features":[331,333]},{"name":"MINIDUMP_SYSTEM_MEMORY_INFO_1","features":[331]},{"name":"MINIDUMP_SYSTEM_PERFORMANCE_INFORMATION","features":[331]},{"name":"MINIDUMP_THREAD","features":[331]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[303,331,309]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[303,331,309]},{"name":"MINIDUMP_THREAD_EX","features":[331]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[303,331,309]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[303,331,309]},{"name":"MINIDUMP_THREAD_EX_LIST","features":[331]},{"name":"MINIDUMP_THREAD_INFO","features":[331]},{"name":"MINIDUMP_THREAD_INFO_DUMP_FLAGS","features":[331]},{"name":"MINIDUMP_THREAD_INFO_ERROR_THREAD","features":[331]},{"name":"MINIDUMP_THREAD_INFO_EXITED_THREAD","features":[331]},{"name":"MINIDUMP_THREAD_INFO_INVALID_CONTEXT","features":[331]},{"name":"MINIDUMP_THREAD_INFO_INVALID_INFO","features":[331]},{"name":"MINIDUMP_THREAD_INFO_INVALID_TEB","features":[331]},{"name":"MINIDUMP_THREAD_INFO_LIST","features":[331]},{"name":"MINIDUMP_THREAD_INFO_WRITING_THREAD","features":[331]},{"name":"MINIDUMP_THREAD_LIST","features":[331]},{"name":"MINIDUMP_THREAD_NAME","features":[331]},{"name":"MINIDUMP_THREAD_NAME_LIST","features":[331]},{"name":"MINIDUMP_TOKEN_INFO_HEADER","features":[331]},{"name":"MINIDUMP_TOKEN_INFO_LIST","features":[331]},{"name":"MINIDUMP_TYPE","features":[331]},{"name":"MINIDUMP_UNLOADED_MODULE","features":[331]},{"name":"MINIDUMP_UNLOADED_MODULE_LIST","features":[331]},{"name":"MINIDUMP_USER_RECORD","features":[331]},{"name":"MINIDUMP_USER_STREAM","features":[331]},{"name":"MINIDUMP_USER_STREAM","features":[331]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[331]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[331]},{"name":"MINIDUMP_VERSION","features":[331]},{"name":"MINIDUMP_VM_POST_READ_CALLBACK","features":[331]},{"name":"MINIDUMP_VM_PRE_READ_CALLBACK","features":[331]},{"name":"MINIDUMP_VM_QUERY_CALLBACK","features":[331]},{"name":"MISALIGNED_POINTER_PARAMETER","features":[331]},{"name":"MISMATCHED_HAL","features":[331]},{"name":"MODLOAD_CVMISC","features":[331]},{"name":"MODLOAD_DATA","features":[331]},{"name":"MODLOAD_DATA_TYPE","features":[331]},{"name":"MODLOAD_PDBGUID_PDBAGE","features":[331]},{"name":"MODULE_TYPE_INFO","features":[331]},{"name":"MODULE_WRITE_FLAGS","features":[331]},{"name":"MPSDRV_QUERY_USER","features":[331]},{"name":"MSRPC_STATE_VIOLATION","features":[331]},{"name":"MSSECCORE_ASSERTION_FAILURE","features":[331]},{"name":"MUI_NO_VALID_SYSTEM_LANGUAGE","features":[331]},{"name":"MULTIPLE_IRP_COMPLETE_REQUESTS","features":[331]},{"name":"MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED","features":[331]},{"name":"MUP_FILE_SYSTEM","features":[331]},{"name":"MUST_SUCCEED_POOL_EMPTY","features":[331]},{"name":"MUTEX_ALREADY_OWNED","features":[331]},{"name":"MUTEX_LEVEL_NUMBER_VIOLATION","features":[331]},{"name":"MakeSureDirectoryPathExists","features":[303,331]},{"name":"MapAndLoad","features":[303,331,309,333]},{"name":"MapFileAndCheckSumA","features":[331]},{"name":"MapFileAndCheckSumW","features":[331]},{"name":"Memory64ListStream","features":[331]},{"name":"MemoryCallback","features":[331]},{"name":"MemoryInfoListStream","features":[331]},{"name":"MemoryListStream","features":[331]},{"name":"MessageBeep","features":[303,331,365]},{"name":"MiniDumpFilterMemory","features":[331]},{"name":"MiniDumpFilterModulePaths","features":[331]},{"name":"MiniDumpFilterTriage","features":[331]},{"name":"MiniDumpFilterWriteCombinedMemory","features":[331]},{"name":"MiniDumpIgnoreInaccessibleMemory","features":[331]},{"name":"MiniDumpNormal","features":[331]},{"name":"MiniDumpReadDumpStream","features":[303,331]},{"name":"MiniDumpScanInaccessiblePartialPages","features":[331]},{"name":"MiniDumpScanMemory","features":[331]},{"name":"MiniDumpValidTypeFlags","features":[331]},{"name":"MiniDumpWithAvxXStateContext","features":[331]},{"name":"MiniDumpWithCodeSegs","features":[331]},{"name":"MiniDumpWithDataSegs","features":[331]},{"name":"MiniDumpWithFullAuxiliaryState","features":[331]},{"name":"MiniDumpWithFullMemory","features":[331]},{"name":"MiniDumpWithFullMemoryInfo","features":[331]},{"name":"MiniDumpWithHandleData","features":[331]},{"name":"MiniDumpWithIndirectlyReferencedMemory","features":[331]},{"name":"MiniDumpWithIptTrace","features":[331]},{"name":"MiniDumpWithModuleHeaders","features":[331]},{"name":"MiniDumpWithPrivateReadWriteMemory","features":[331]},{"name":"MiniDumpWithPrivateWriteCopyMemory","features":[331]},{"name":"MiniDumpWithProcessThreadData","features":[331]},{"name":"MiniDumpWithThreadInfo","features":[331]},{"name":"MiniDumpWithTokenInformation","features":[331]},{"name":"MiniDumpWithUnloadedModules","features":[331]},{"name":"MiniDumpWithoutAuxiliaryState","features":[331]},{"name":"MiniDumpWithoutOptionalData","features":[331]},{"name":"MiniDumpWriteDump","features":[303,322,331,309,321]},{"name":"MiniEventInformation1","features":[331]},{"name":"MiniHandleObjectInformationNone","features":[331]},{"name":"MiniHandleObjectInformationTypeMax","features":[331]},{"name":"MiniMutantInformation1","features":[331]},{"name":"MiniMutantInformation2","features":[331]},{"name":"MiniProcessInformation1","features":[331]},{"name":"MiniProcessInformation2","features":[331]},{"name":"MiniSecondaryValidFlags","features":[331]},{"name":"MiniSecondaryWithoutPowerInfo","features":[331]},{"name":"MiniSectionInformation1","features":[331]},{"name":"MiniSemaphoreInformation1","features":[331]},{"name":"MiniThreadInformation1","features":[331]},{"name":"MiscInfoStream","features":[331]},{"name":"ModuleCallback","features":[331]},{"name":"ModuleListStream","features":[331]},{"name":"ModuleReferencedByMemory","features":[331]},{"name":"ModuleWriteCodeSegs","features":[331]},{"name":"ModuleWriteCvRecord","features":[331]},{"name":"ModuleWriteDataSeg","features":[331]},{"name":"ModuleWriteMiscRecord","features":[331]},{"name":"ModuleWriteModule","features":[331]},{"name":"ModuleWriteTlsData","features":[331]},{"name":"NDIS_INTERNAL_ERROR","features":[331]},{"name":"NDIS_NET_BUFFER_LIST_INFO_ILLEGALLY_TRANSFERRED","features":[331]},{"name":"NETIO_INVALID_POOL_CALLER","features":[331]},{"name":"NETWORK_BOOT_DUPLICATE_ADDRESS","features":[331]},{"name":"NETWORK_BOOT_INITIALIZATION_FAILED","features":[331]},{"name":"NMI_HARDWARE_FAILURE","features":[331]},{"name":"NMR_INVALID_STATE","features":[331]},{"name":"NO_BOOT_DEVICE","features":[331]},{"name":"NO_EXCEPTION_HANDLING_SUPPORT","features":[331]},{"name":"NO_MORE_IRP_STACK_LOCATIONS","features":[331]},{"name":"NO_MORE_SYSTEM_PTES","features":[331]},{"name":"NO_PAGES_AVAILABLE","features":[331]},{"name":"NO_SPIN_LOCK_AVAILABLE","features":[331]},{"name":"NO_SUCH_PARTITION","features":[331]},{"name":"NO_USER_MODE_CONTEXT","features":[331]},{"name":"NPFS_FILE_SYSTEM","features":[331]},{"name":"NTFS_FILE_SYSTEM","features":[331]},{"name":"NTHV_GUEST_ERROR","features":[331]},{"name":"NUM_SSRVOPTS","features":[331]},{"name":"NumSymTypes","features":[331]},{"name":"OBJECT1_INITIALIZATION_FAILED","features":[331]},{"name":"OBJECT_ATTRIB_ACCESS_FINAL","features":[331]},{"name":"OBJECT_ATTRIB_ACCESS_PRIVATE","features":[331]},{"name":"OBJECT_ATTRIB_ACCESS_PROTECTED","features":[331]},{"name":"OBJECT_ATTRIB_ACCESS_PUBLIC","features":[331]},{"name":"OBJECT_ATTRIB_FLAGS","features":[331]},{"name":"OBJECT_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[331]},{"name":"OBJECT_ATTRIB_IS_CLASS","features":[331]},{"name":"OBJECT_ATTRIB_IS_FUNCTION","features":[331]},{"name":"OBJECT_ATTRIB_IS_INHERITED","features":[331]},{"name":"OBJECT_ATTRIB_IS_INTERFACE","features":[331]},{"name":"OBJECT_ATTRIB_IS_MACRO","features":[331]},{"name":"OBJECT_ATTRIB_IS_PROPERTY","features":[331]},{"name":"OBJECT_ATTRIB_IS_TYPE","features":[331]},{"name":"OBJECT_ATTRIB_IS_VARIABLE","features":[331]},{"name":"OBJECT_ATTRIB_NO_ATTRIB","features":[331]},{"name":"OBJECT_ATTRIB_NO_NAME","features":[331]},{"name":"OBJECT_ATTRIB_NO_TYPE","features":[331]},{"name":"OBJECT_ATTRIB_NO_VALUE","features":[331]},{"name":"OBJECT_ATTRIB_OBJECT_IS_EXPANDABLE","features":[331]},{"name":"OBJECT_ATTRIB_SLOT_IS_CATEGORY","features":[331]},{"name":"OBJECT_ATTRIB_STORAGE_FIELD","features":[331]},{"name":"OBJECT_ATTRIB_STORAGE_GLOBAL","features":[331]},{"name":"OBJECT_ATTRIB_STORAGE_STATIC","features":[331]},{"name":"OBJECT_ATTRIB_STORAGE_VIRTUAL","features":[331]},{"name":"OBJECT_ATTRIB_TYPE_HAS_CODE","features":[331]},{"name":"OBJECT_ATTRIB_TYPE_IS_CONSTANT","features":[331]},{"name":"OBJECT_ATTRIB_TYPE_IS_EXPANDABLE","features":[331]},{"name":"OBJECT_ATTRIB_TYPE_IS_OBJECT","features":[331]},{"name":"OBJECT_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[331]},{"name":"OBJECT_ATTRIB_TYPE_IS_VOLATILE","features":[331]},{"name":"OBJECT_ATTRIB_VALUE_HAS_CODE","features":[331]},{"name":"OBJECT_ATTRIB_VALUE_IS_CUSTOM","features":[331]},{"name":"OBJECT_ATTRIB_VALUE_IS_ENUM","features":[331]},{"name":"OBJECT_ATTRIB_VALUE_IS_INVALID","features":[331]},{"name":"OBJECT_ATTRIB_VALUE_IS_OBJECT","features":[331]},{"name":"OBJECT_ATTRIB_VALUE_READONLY","features":[331]},{"name":"OBJECT_INITIALIZATION_FAILED","features":[331]},{"name":"OFS_FILE_SYSTEM","features":[331]},{"name":"OMAP","features":[331]},{"name":"OPEN_THREAD_WAIT_CHAIN_SESSION_FLAGS","features":[331]},{"name":"OS_DATA_TAMPERING","features":[331]},{"name":"OUTPUT_DEBUG_STRING_EVENT","features":[331]},{"name":"OUTPUT_DEBUG_STRING_INFO","features":[331]},{"name":"OpenThreadWaitChainSession","features":[303,331]},{"name":"OutputDebugStringA","features":[331]},{"name":"OutputDebugStringW","features":[331]},{"name":"PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[331]},{"name":"PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[331]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA","features":[331]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA_M","features":[331]},{"name":"PAGE_FAULT_WITH_INTERRUPTS_OFF","features":[331]},{"name":"PAGE_NOT_ZERO","features":[331]},{"name":"PANIC_STACK_SWITCH","features":[331]},{"name":"PASSIVE_INTERRUPT_ERROR","features":[331]},{"name":"PCI_BUS_DRIVER_INTERNAL","features":[331]},{"name":"PCI_CONFIG_SPACE_ACCESS_FAILURE","features":[331]},{"name":"PCI_VERIFIER_DETECTED_VIOLATION","features":[331]},{"name":"PCOGETACTIVATIONSTATE","features":[331]},{"name":"PCOGETCALLSTATE","features":[331]},{"name":"PDBGHELP_CREATE_USER_DUMP_CALLBACK","features":[303,331]},{"name":"PDC_LOCK_WATCHDOG_LIVEDUMP","features":[331]},{"name":"PDC_PRIVILEGE_CHECK_LIVEDUMP","features":[331]},{"name":"PDC_UNEXPECTED_REVOCATION_LIVEDUMP","features":[331]},{"name":"PDC_WATCHDOG_TIMEOUT","features":[331]},{"name":"PDC_WATCHDOG_TIMEOUT_LIVEDUMP","features":[331]},{"name":"PENUMDIRTREE_CALLBACK","features":[303,331]},{"name":"PENUMDIRTREE_CALLBACKW","features":[303,331]},{"name":"PENUMLOADED_MODULES_CALLBACK","features":[303,331]},{"name":"PENUMLOADED_MODULES_CALLBACK64","features":[303,331]},{"name":"PENUMLOADED_MODULES_CALLBACKW64","features":[303,331]},{"name":"PENUMSOURCEFILETOKENSCALLBACK","features":[303,331]},{"name":"PFINDFILEINPATHCALLBACK","features":[303,331]},{"name":"PFINDFILEINPATHCALLBACKW","features":[303,331]},{"name":"PFIND_DEBUG_FILE_CALLBACK","features":[303,331]},{"name":"PFIND_DEBUG_FILE_CALLBACKW","features":[303,331]},{"name":"PFIND_EXE_FILE_CALLBACK","features":[303,331]},{"name":"PFIND_EXE_FILE_CALLBACKW","features":[303,331]},{"name":"PFN_LIST_CORRUPT","features":[331]},{"name":"PFN_REFERENCE_COUNT","features":[331]},{"name":"PFN_SHARE_COUNT","features":[331]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE","features":[303,331]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE64","features":[303,331]},{"name":"PF_DETECTED_CORRUPTION","features":[331]},{"name":"PGET_MODULE_BASE_ROUTINE","features":[303,331]},{"name":"PGET_MODULE_BASE_ROUTINE64","features":[303,331]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[331]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[331]},{"name":"PGET_TARGET_ATTRIBUTE_VALUE64","features":[303,331]},{"name":"PHASE0_EXCEPTION","features":[331]},{"name":"PHASE0_INITIALIZATION_FAILED","features":[331]},{"name":"PHASE1_INITIALIZATION_FAILED","features":[331]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR32","features":[331]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR64","features":[331]},{"name":"PHYSICAL_MEMORY_RUN32","features":[331]},{"name":"PHYSICAL_MEMORY_RUN64","features":[331]},{"name":"PIMAGEHLP_STATUS_ROUTINE","features":[303,331]},{"name":"PIMAGEHLP_STATUS_ROUTINE32","features":[303,331]},{"name":"PIMAGEHLP_STATUS_ROUTINE64","features":[303,331]},{"name":"PINBALL_FILE_SYSTEM","features":[331]},{"name":"PNP_DETECTED_FATAL_ERROR","features":[331]},{"name":"PNP_INTERNAL_ERROR","features":[331]},{"name":"POOL_CORRUPTION_IN_FILE_AREA","features":[331]},{"name":"PORT_DRIVER_INTERNAL","features":[331]},{"name":"POWER_FAILURE_SIMULATE","features":[331]},{"name":"PP0_INITIALIZATION_FAILED","features":[331]},{"name":"PP1_INITIALIZATION_FAILED","features":[331]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE","features":[303,331]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE64","features":[303,331]},{"name":"PREVIOUS_FATAL_ABNORMAL_RESET_ERROR","features":[331]},{"name":"PROCESS1_INITIALIZATION_FAILED","features":[331]},{"name":"PROCESSOR_DRIVER_INTERNAL","features":[331]},{"name":"PROCESSOR_START_TIMEOUT","features":[331]},{"name":"PROCESS_HAS_LOCKED_PAGES","features":[331]},{"name":"PROCESS_INITIALIZATION_FAILED","features":[331]},{"name":"PROFILER_CONFIGURATION_ILLEGAL","features":[331]},{"name":"PROP_INFO_ATTRIBUTES","features":[331]},{"name":"PROP_INFO_AUTOEXPAND","features":[331]},{"name":"PROP_INFO_DEBUGPROP","features":[331]},{"name":"PROP_INFO_FLAGS","features":[331]},{"name":"PROP_INFO_FULLNAME","features":[331]},{"name":"PROP_INFO_NAME","features":[331]},{"name":"PROP_INFO_TYPE","features":[331]},{"name":"PROP_INFO_VALUE","features":[331]},{"name":"PSYMBOLSERVERBYINDEXPROC","features":[303,331]},{"name":"PSYMBOLSERVERBYINDEXPROCA","features":[303,331]},{"name":"PSYMBOLSERVERBYINDEXPROCW","features":[303,331]},{"name":"PSYMBOLSERVERCALLBACKPROC","features":[303,331]},{"name":"PSYMBOLSERVERCLOSEPROC","features":[303,331]},{"name":"PSYMBOLSERVERDELTANAME","features":[303,331]},{"name":"PSYMBOLSERVERDELTANAMEW","features":[303,331]},{"name":"PSYMBOLSERVERGETINDEXSTRING","features":[303,331]},{"name":"PSYMBOLSERVERGETINDEXSTRINGW","features":[303,331]},{"name":"PSYMBOLSERVERGETOPTIONDATAPROC","features":[303,331]},{"name":"PSYMBOLSERVERGETOPTIONSPROC","features":[331]},{"name":"PSYMBOLSERVERGETSUPPLEMENT","features":[303,331]},{"name":"PSYMBOLSERVERGETSUPPLEMENTW","features":[303,331]},{"name":"PSYMBOLSERVERGETVERSION","features":[303,331]},{"name":"PSYMBOLSERVERISSTORE","features":[303,331]},{"name":"PSYMBOLSERVERISSTOREW","features":[303,331]},{"name":"PSYMBOLSERVERMESSAGEPROC","features":[303,331]},{"name":"PSYMBOLSERVEROPENPROC","features":[303,331]},{"name":"PSYMBOLSERVERPINGPROC","features":[303,331]},{"name":"PSYMBOLSERVERPINGPROCA","features":[303,331]},{"name":"PSYMBOLSERVERPINGPROCW","features":[303,331]},{"name":"PSYMBOLSERVERPINGPROCWEX","features":[303,331]},{"name":"PSYMBOLSERVERPROC","features":[303,331]},{"name":"PSYMBOLSERVERPROCA","features":[303,331]},{"name":"PSYMBOLSERVERPROCW","features":[303,331]},{"name":"PSYMBOLSERVERSETHTTPAUTHHEADER","features":[303,331]},{"name":"PSYMBOLSERVERSETOPTIONSPROC","features":[303,331]},{"name":"PSYMBOLSERVERSETOPTIONSWPROC","features":[303,331]},{"name":"PSYMBOLSERVERSTOREFILE","features":[303,331]},{"name":"PSYMBOLSERVERSTOREFILEW","features":[303,331]},{"name":"PSYMBOLSERVERSTORESUPPLEMENT","features":[303,331]},{"name":"PSYMBOLSERVERSTORESUPPLEMENTW","features":[303,331]},{"name":"PSYMBOLSERVERVERSION","features":[331]},{"name":"PSYMBOLSERVERWEXPROC","features":[303,331]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK","features":[303,331]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK64","features":[303,331]},{"name":"PSYMBOL_REGISTERED_CALLBACK","features":[303,331]},{"name":"PSYMBOL_REGISTERED_CALLBACK64","features":[303,331]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACK","features":[303,331]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACKW","features":[303,331]},{"name":"PSYM_ENUMLINES_CALLBACK","features":[303,331]},{"name":"PSYM_ENUMLINES_CALLBACKW","features":[303,331]},{"name":"PSYM_ENUMMODULES_CALLBACK","features":[303,331]},{"name":"PSYM_ENUMMODULES_CALLBACK64","features":[303,331]},{"name":"PSYM_ENUMMODULES_CALLBACKW64","features":[303,331]},{"name":"PSYM_ENUMPROCESSES_CALLBACK","features":[303,331]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACK","features":[303,331]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACKW","features":[303,331]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK","features":[303,331]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64","features":[303,331]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64W","features":[303,331]},{"name":"PSYM_ENUMSYMBOLS_CALLBACKW","features":[303,331]},{"name":"PTRANSLATE_ADDRESS_ROUTINE","features":[303,331]},{"name":"PTRANSLATE_ADDRESS_ROUTINE64","features":[303,331]},{"name":"PVECTORED_EXCEPTION_HANDLER","features":[303,331,309]},{"name":"PWAITCHAINCALLBACK","features":[303,331]},{"name":"ProcessVmCountersStream","features":[331]},{"name":"QUOTA_UNDERFLOW","features":[331]},{"name":"RAMDISK_BOOT_INITIALIZATION_FAILED","features":[331]},{"name":"RDR_FILE_SYSTEM","features":[331]},{"name":"RECOM_DRIVER","features":[331]},{"name":"RECURSIVE_MACHINE_CHECK","features":[331]},{"name":"RECURSIVE_NMI","features":[331]},{"name":"REFERENCE_BY_POINTER","features":[331]},{"name":"REFMON_INITIALIZATION_FAILED","features":[331]},{"name":"REFS_FILE_SYSTEM","features":[331]},{"name":"REF_UNKNOWN_LOGON_SESSION","features":[331]},{"name":"REGISTRY_CALLBACK_DRIVER_EXCEPTION","features":[331]},{"name":"REGISTRY_ERROR","features":[331]},{"name":"REGISTRY_FILTER_DRIVER_EXCEPTION","features":[331]},{"name":"REGISTRY_LIVE_DUMP","features":[331]},{"name":"RESERVE_QUEUE_OVERFLOW","features":[331]},{"name":"RESOURCE_NOT_OWNED","features":[331]},{"name":"RESOURCE_OWNER_POINTER_INVALID","features":[331]},{"name":"RESTORE_LAST_ERROR_NAME","features":[331]},{"name":"RESTORE_LAST_ERROR_NAME_A","features":[331]},{"name":"RESTORE_LAST_ERROR_NAME_W","features":[331]},{"name":"RIP_EVENT","features":[331]},{"name":"RIP_INFO","features":[331]},{"name":"RIP_INFO_TYPE","features":[331]},{"name":"RTL_VIRTUAL_UNWIND_HANDLER_TYPE","features":[331]},{"name":"RaiseException","features":[331]},{"name":"RaiseFailFastException","features":[303,331,309]},{"name":"RangeMapAddPeImageSections","features":[303,331]},{"name":"RangeMapCreate","features":[331]},{"name":"RangeMapFree","features":[331]},{"name":"RangeMapRead","features":[303,331]},{"name":"RangeMapRemove","features":[303,331]},{"name":"RangeMapWrite","features":[303,331]},{"name":"ReBaseImage","features":[303,331]},{"name":"ReBaseImage64","features":[303,331]},{"name":"ReadMemoryFailureCallback","features":[331]},{"name":"ReadProcessMemory","features":[303,331]},{"name":"RegisterWaitChainCOMCallback","features":[331]},{"name":"RemoveInvalidModuleList","features":[303,331]},{"name":"RemoveMemoryCallback","features":[331]},{"name":"RemoveVectoredContinueHandler","features":[331]},{"name":"RemoveVectoredExceptionHandler","features":[331]},{"name":"ReportSymbolLoadSummary","features":[303,331]},{"name":"ReservedStream0","features":[331]},{"name":"ReservedStream1","features":[331]},{"name":"RtlAddFunctionTable","features":[303,331]},{"name":"RtlAddFunctionTable","features":[303,331]},{"name":"RtlAddGrowableFunctionTable","features":[331]},{"name":"RtlAddGrowableFunctionTable","features":[331]},{"name":"RtlCaptureContext","features":[331,309]},{"name":"RtlCaptureContext2","features":[331,309]},{"name":"RtlCaptureStackBackTrace","features":[331]},{"name":"RtlDeleteFunctionTable","features":[303,331]},{"name":"RtlDeleteFunctionTable","features":[303,331]},{"name":"RtlDeleteGrowableFunctionTable","features":[331]},{"name":"RtlGrowFunctionTable","features":[331]},{"name":"RtlInstallFunctionTableCallback","features":[303,331]},{"name":"RtlInstallFunctionTableCallback","features":[303,331]},{"name":"RtlLookupFunctionEntry","features":[331]},{"name":"RtlLookupFunctionEntry","features":[331]},{"name":"RtlPcToFileHeader","features":[331]},{"name":"RtlRaiseException","features":[303,331]},{"name":"RtlRestoreContext","features":[303,331,309]},{"name":"RtlUnwind","features":[303,331]},{"name":"RtlUnwindEx","features":[303,331,309]},{"name":"RtlVirtualUnwind","features":[303,331,309]},{"name":"RtlVirtualUnwind","features":[303,331,309]},{"name":"SAVER_ACCOUNTPROVSVCINITFAILURE","features":[331]},{"name":"SAVER_APPBARDISMISSAL","features":[331]},{"name":"SAVER_APPLISTUNREACHABLE","features":[331]},{"name":"SAVER_AUDIODRIVERHANG","features":[331]},{"name":"SAVER_AUXILIARYFULLDUMP","features":[331]},{"name":"SAVER_BATTERYPULLOUT","features":[331]},{"name":"SAVER_BLANKSCREEN","features":[331]},{"name":"SAVER_CALLDISMISSAL","features":[331]},{"name":"SAVER_CAPTURESERVICE","features":[331]},{"name":"SAVER_CHROMEPROCESSCRASH","features":[331]},{"name":"SAVER_DEVICEUPDATEUNSPECIFIED","features":[331]},{"name":"SAVER_GRAPHICS","features":[331]},{"name":"SAVER_INPUT","features":[331]},{"name":"SAVER_MEDIACORETESTHANG","features":[331]},{"name":"SAVER_MTBFCOMMANDHANG","features":[331]},{"name":"SAVER_MTBFCOMMANDTIMEOUT","features":[331]},{"name":"SAVER_MTBFIOERROR","features":[331]},{"name":"SAVER_MTBFPASSBUGCHECK","features":[331]},{"name":"SAVER_NAVIGATIONMODEL","features":[331]},{"name":"SAVER_NAVSERVERTIMEOUT","features":[331]},{"name":"SAVER_NONRESPONSIVEPROCESS","features":[331]},{"name":"SAVER_NOTIFICATIONDISMISSAL","features":[331]},{"name":"SAVER_OUTOFMEMORY","features":[331]},{"name":"SAVER_RENDERMOBILEUIOOM","features":[331]},{"name":"SAVER_RENDERTHREADHANG","features":[331]},{"name":"SAVER_REPORTNOTIFICATIONFAILURE","features":[331]},{"name":"SAVER_RESOURCEMANAGEMENT","features":[331]},{"name":"SAVER_RILADAPTATIONCRASH","features":[331]},{"name":"SAVER_RPCFAILURE","features":[331]},{"name":"SAVER_SICKAPPLICATION","features":[331]},{"name":"SAVER_SPEECHDISMISSAL","features":[331]},{"name":"SAVER_STARTNOTVISIBLE","features":[331]},{"name":"SAVER_UNEXPECTEDSHUTDOWN","features":[331]},{"name":"SAVER_UNSPECIFIED","features":[331]},{"name":"SAVER_WAITFORSHELLREADY","features":[331]},{"name":"SAVER_WATCHDOG","features":[331]},{"name":"SCSI_DISK_DRIVER_INTERNAL","features":[331]},{"name":"SCSI_VERIFIER_DETECTED_VIOLATION","features":[331]},{"name":"SDBUS_INTERNAL_ERROR","features":[331]},{"name":"SECURE_BOOT_VIOLATION","features":[331]},{"name":"SECURE_FAULT_UNHANDLED","features":[331]},{"name":"SECURE_KERNEL_ERROR","features":[331]},{"name":"SECURE_PCI_CONFIG_SPACE_ACCESS_VIOLATION","features":[331]},{"name":"SECURITY1_INITIALIZATION_FAILED","features":[331]},{"name":"SECURITY_INITIALIZATION_FAILED","features":[331]},{"name":"SECURITY_SYSTEM","features":[331]},{"name":"SEM_ALL_ERRORS","features":[331]},{"name":"SEM_FAILCRITICALERRORS","features":[331]},{"name":"SEM_NOALIGNMENTFAULTEXCEPT","features":[331]},{"name":"SEM_NOGPFAULTERRORBOX","features":[331]},{"name":"SEM_NOOPENFILEERRORBOX","features":[331]},{"name":"SERIAL_DRIVER_INTERNAL","features":[331]},{"name":"SESSION1_INITIALIZATION_FAILED","features":[331]},{"name":"SESSION_HAS_VALID_POOL_ON_EXIT","features":[331]},{"name":"SESSION_HAS_VALID_SPECIAL_POOL_ON_EXIT","features":[331]},{"name":"SESSION_HAS_VALID_VIEWS_ON_EXIT","features":[331]},{"name":"SETUP_FAILURE","features":[331]},{"name":"SET_ENV_VAR_FAILED","features":[331]},{"name":"SET_OF_INVALID_CONTEXT","features":[331]},{"name":"SHARED_RESOURCE_CONV_ERROR","features":[331]},{"name":"SILO_CORRUPT","features":[331]},{"name":"SLE_ERROR","features":[331]},{"name":"SLE_MINORERROR","features":[331]},{"name":"SLE_WARNING","features":[331]},{"name":"SLMFLAG_ALT_INDEX","features":[331]},{"name":"SLMFLAG_NONE","features":[331]},{"name":"SLMFLAG_NO_SYMBOLS","features":[331]},{"name":"SLMFLAG_VIRTUAL","features":[331]},{"name":"SMB_REDIRECTOR_LIVEDUMP","features":[331]},{"name":"SMB_SERVER_LIVEDUMP","features":[331]},{"name":"SOC_CRITICAL_DEVICE_REMOVED","features":[331]},{"name":"SOC_SUBSYSTEM_FAILURE","features":[331]},{"name":"SOC_SUBSYSTEM_FAILURE_LIVEDUMP","features":[331]},{"name":"SOFT_RESTART_FATAL_ERROR","features":[331]},{"name":"SOURCEFILE","features":[331]},{"name":"SOURCEFILEW","features":[331]},{"name":"SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION","features":[331]},{"name":"SPIN_LOCK_ALREADY_OWNED","features":[331]},{"name":"SPIN_LOCK_INIT_FAILURE","features":[331]},{"name":"SPIN_LOCK_NOT_OWNED","features":[331]},{"name":"SPLITSYM_EXTRACT_ALL","features":[331]},{"name":"SPLITSYM_REMOVE_PRIVATE","features":[331]},{"name":"SPLITSYM_SYMBOLPATH_IS_SRC","features":[331]},{"name":"SRCCODEINFO","features":[331]},{"name":"SRCCODEINFOW","features":[331]},{"name":"SSRVACTION_CHECKSUMSTATUS","features":[331]},{"name":"SSRVACTION_EVENT","features":[331]},{"name":"SSRVACTION_EVENTW","features":[331]},{"name":"SSRVACTION_HTTPSTATUS","features":[331]},{"name":"SSRVACTION_QUERYCANCEL","features":[331]},{"name":"SSRVACTION_SIZE","features":[331]},{"name":"SSRVACTION_TRACE","features":[331]},{"name":"SSRVACTION_XMLOUTPUT","features":[331]},{"name":"SSRVOPT_CALLBACK","features":[331]},{"name":"SSRVOPT_CALLBACKW","features":[331]},{"name":"SSRVOPT_DISABLE_PING_HOST","features":[331]},{"name":"SSRVOPT_DISABLE_TIMEOUT","features":[331]},{"name":"SSRVOPT_DONT_UNCOMPRESS","features":[331]},{"name":"SSRVOPT_DOWNSTREAM_STORE","features":[331]},{"name":"SSRVOPT_DWORD","features":[331]},{"name":"SSRVOPT_DWORDPTR","features":[331]},{"name":"SSRVOPT_ENABLE_COMM_MSG","features":[331]},{"name":"SSRVOPT_FAVOR_COMPRESSED","features":[331]},{"name":"SSRVOPT_FLAT_DEFAULT_STORE","features":[331]},{"name":"SSRVOPT_GETPATH","features":[331]},{"name":"SSRVOPT_GUIDPTR","features":[331]},{"name":"SSRVOPT_MAX","features":[331]},{"name":"SSRVOPT_MESSAGE","features":[331]},{"name":"SSRVOPT_NOCOPY","features":[331]},{"name":"SSRVOPT_OLDGUIDPTR","features":[331]},{"name":"SSRVOPT_OVERWRITE","features":[331]},{"name":"SSRVOPT_PARAMTYPE","features":[331]},{"name":"SSRVOPT_PARENTWIN","features":[331]},{"name":"SSRVOPT_PROXY","features":[331]},{"name":"SSRVOPT_PROXYW","features":[331]},{"name":"SSRVOPT_RESETTOU","features":[331]},{"name":"SSRVOPT_RETRY_APP_HANG","features":[331]},{"name":"SSRVOPT_SECURE","features":[331]},{"name":"SSRVOPT_SERVICE","features":[331]},{"name":"SSRVOPT_SETCONTEXT","features":[331]},{"name":"SSRVOPT_STRING","features":[331]},{"name":"SSRVOPT_TRACE","features":[331]},{"name":"SSRVOPT_UNATTENDED","features":[331]},{"name":"SSRVOPT_URI_FILTER","features":[331]},{"name":"SSRVOPT_URI_TIERS","features":[331]},{"name":"SSRVOPT_WINHTTP","features":[331]},{"name":"SSRVOPT_WININET","features":[331]},{"name":"SSRVURI_ALL","features":[331]},{"name":"SSRVURI_COMPRESSED","features":[331]},{"name":"SSRVURI_FILEPTR","features":[331]},{"name":"SSRVURI_HTTP_COMPRESSED","features":[331]},{"name":"SSRVURI_HTTP_FILEPTR","features":[331]},{"name":"SSRVURI_HTTP_MASK","features":[331]},{"name":"SSRVURI_HTTP_NORMAL","features":[331]},{"name":"SSRVURI_NORMAL","features":[331]},{"name":"SSRVURI_UNC_COMPRESSED","features":[331]},{"name":"SSRVURI_UNC_FILEPTR","features":[331]},{"name":"SSRVURI_UNC_MASK","features":[331]},{"name":"SSRVURI_UNC_NORMAL","features":[331]},{"name":"STACKFRAME","features":[303,331]},{"name":"STACKFRAME64","features":[303,331]},{"name":"STACKFRAME_EX","features":[303,331]},{"name":"STORAGE_DEVICE_ABNORMALITY_DETECTED","features":[331]},{"name":"STORAGE_MINIPORT_ERROR","features":[331]},{"name":"STORE_DATA_STRUCTURE_CORRUPTION","features":[331]},{"name":"STREAMS_INTERNAL_ERROR","features":[331]},{"name":"SYMADDSOURCESTREAM","features":[303,331]},{"name":"SYMADDSOURCESTREAMA","features":[303,331]},{"name":"SYMBOLIC_INITIALIZATION_FAILED","features":[331]},{"name":"SYMBOL_INFO","features":[331]},{"name":"SYMBOL_INFOW","features":[331]},{"name":"SYMBOL_INFO_FLAGS","features":[331]},{"name":"SYMBOL_INFO_PACKAGE","features":[331]},{"name":"SYMBOL_INFO_PACKAGEW","features":[331]},{"name":"SYMENUM_OPTIONS_DEFAULT","features":[331]},{"name":"SYMENUM_OPTIONS_INLINE","features":[331]},{"name":"SYMFLAG_CLR_TOKEN","features":[331]},{"name":"SYMFLAG_CONSTANT","features":[331]},{"name":"SYMFLAG_EXPORT","features":[331]},{"name":"SYMFLAG_FIXUP_ARM64X","features":[331]},{"name":"SYMFLAG_FORWARDER","features":[331]},{"name":"SYMFLAG_FRAMEREL","features":[331]},{"name":"SYMFLAG_FUNCTION","features":[331]},{"name":"SYMFLAG_FUNC_NO_RETURN","features":[331]},{"name":"SYMFLAG_GLOBAL","features":[331]},{"name":"SYMFLAG_ILREL","features":[331]},{"name":"SYMFLAG_LOCAL","features":[331]},{"name":"SYMFLAG_METADATA","features":[331]},{"name":"SYMFLAG_NULL","features":[331]},{"name":"SYMFLAG_PARAMETER","features":[331]},{"name":"SYMFLAG_PUBLIC_CODE","features":[331]},{"name":"SYMFLAG_REGISTER","features":[331]},{"name":"SYMFLAG_REGREL","features":[331]},{"name":"SYMFLAG_REGREL_ALIASINDIR","features":[331]},{"name":"SYMFLAG_RESET","features":[331]},{"name":"SYMFLAG_SLOT","features":[331]},{"name":"SYMFLAG_SYNTHETIC_ZEROBASE","features":[331]},{"name":"SYMFLAG_THUNK","features":[331]},{"name":"SYMFLAG_TLSREL","features":[331]},{"name":"SYMFLAG_VALUEPRESENT","features":[331]},{"name":"SYMFLAG_VIRTUAL","features":[331]},{"name":"SYMF_CONSTANT","features":[331]},{"name":"SYMF_EXPORT","features":[331]},{"name":"SYMF_FORWARDER","features":[331]},{"name":"SYMF_FRAMEREL","features":[331]},{"name":"SYMF_FUNCTION","features":[331]},{"name":"SYMF_LOCAL","features":[331]},{"name":"SYMF_OMAP_GENERATED","features":[331]},{"name":"SYMF_OMAP_MODIFIED","features":[331]},{"name":"SYMF_PARAMETER","features":[331]},{"name":"SYMF_REGISTER","features":[331]},{"name":"SYMF_REGREL","features":[331]},{"name":"SYMF_THUNK","features":[331]},{"name":"SYMF_TLSREL","features":[331]},{"name":"SYMF_VIRTUAL","features":[331]},{"name":"SYMOPT_ALLOW_ABSOLUTE_SYMBOLS","features":[331]},{"name":"SYMOPT_ALLOW_ZERO_ADDRESS","features":[331]},{"name":"SYMOPT_AUTO_PUBLICS","features":[331]},{"name":"SYMOPT_CASE_INSENSITIVE","features":[331]},{"name":"SYMOPT_DEBUG","features":[331]},{"name":"SYMOPT_DEFERRED_LOADS","features":[331]},{"name":"SYMOPT_DISABLE_FAST_SYMBOLS","features":[331]},{"name":"SYMOPT_DISABLE_SRVSTAR_ON_STARTUP","features":[331]},{"name":"SYMOPT_DISABLE_SYMSRV_AUTODETECT","features":[331]},{"name":"SYMOPT_DISABLE_SYMSRV_TIMEOUT","features":[331]},{"name":"SYMOPT_EXACT_SYMBOLS","features":[331]},{"name":"SYMOPT_EX_DISABLEACCESSTIMEUPDATE","features":[331]},{"name":"SYMOPT_EX_LASTVALIDDEBUGDIRECTORY","features":[331]},{"name":"SYMOPT_EX_MAX","features":[331]},{"name":"SYMOPT_EX_NEVERLOADSYMBOLS","features":[331]},{"name":"SYMOPT_EX_NOIMPLICITPATTERNSEARCH","features":[331]},{"name":"SYMOPT_FAIL_CRITICAL_ERRORS","features":[331]},{"name":"SYMOPT_FAVOR_COMPRESSED","features":[331]},{"name":"SYMOPT_FLAT_DIRECTORY","features":[331]},{"name":"SYMOPT_IGNORE_CVREC","features":[331]},{"name":"SYMOPT_IGNORE_IMAGEDIR","features":[331]},{"name":"SYMOPT_IGNORE_NT_SYMPATH","features":[331]},{"name":"SYMOPT_INCLUDE_32BIT_MODULES","features":[331]},{"name":"SYMOPT_LOAD_ANYTHING","features":[331]},{"name":"SYMOPT_LOAD_LINES","features":[331]},{"name":"SYMOPT_NO_CPP","features":[331]},{"name":"SYMOPT_NO_IMAGE_SEARCH","features":[331]},{"name":"SYMOPT_NO_PROMPTS","features":[331]},{"name":"SYMOPT_NO_PUBLICS","features":[331]},{"name":"SYMOPT_NO_UNQUALIFIED_LOADS","features":[331]},{"name":"SYMOPT_OMAP_FIND_NEAREST","features":[331]},{"name":"SYMOPT_OVERWRITE","features":[331]},{"name":"SYMOPT_PUBLICS_ONLY","features":[331]},{"name":"SYMOPT_READONLY_CACHE","features":[331]},{"name":"SYMOPT_SECURE","features":[331]},{"name":"SYMOPT_SYMPATH_LAST","features":[331]},{"name":"SYMOPT_UNDNAME","features":[331]},{"name":"SYMSEARCH_ALLITEMS","features":[331]},{"name":"SYMSEARCH_GLOBALSONLY","features":[331]},{"name":"SYMSEARCH_MASKOBJS","features":[331]},{"name":"SYMSEARCH_RECURSE","features":[331]},{"name":"SYMSRV_EXTENDED_OUTPUT_DATA","features":[331]},{"name":"SYMSRV_INDEX_INFO","features":[303,331]},{"name":"SYMSRV_INDEX_INFOW","features":[303,331]},{"name":"SYMSRV_VERSION","features":[331]},{"name":"SYMSTOREOPT_ALT_INDEX","features":[331]},{"name":"SYMSTOREOPT_COMPRESS","features":[331]},{"name":"SYMSTOREOPT_OVERWRITE","features":[331]},{"name":"SYMSTOREOPT_PASS_IF_EXISTS","features":[331]},{"name":"SYMSTOREOPT_POINTER","features":[331]},{"name":"SYMSTOREOPT_RETURNINDEX","features":[331]},{"name":"SYMSTOREOPT_UNICODE","features":[331]},{"name":"SYM_FIND_ID_OPTION","features":[331]},{"name":"SYM_INLINE_COMP_DIFFERENT","features":[331]},{"name":"SYM_INLINE_COMP_ERROR","features":[331]},{"name":"SYM_INLINE_COMP_IDENTICAL","features":[331]},{"name":"SYM_INLINE_COMP_STEPIN","features":[331]},{"name":"SYM_INLINE_COMP_STEPOUT","features":[331]},{"name":"SYM_INLINE_COMP_STEPOVER","features":[331]},{"name":"SYM_LOAD_FLAGS","features":[331]},{"name":"SYM_SRV_STORE_FILE_FLAGS","features":[331]},{"name":"SYM_STKWALK_DEFAULT","features":[331]},{"name":"SYM_STKWALK_FORCE_FRAMEPTR","features":[331]},{"name":"SYM_STKWALK_ZEROEXTEND_PTRS","features":[331]},{"name":"SYM_TYPE","features":[331]},{"name":"SYNTHETIC_EXCEPTION_UNHANDLED","features":[331]},{"name":"SYNTHETIC_WATCHDOG_TIMEOUT","features":[331]},{"name":"SYSTEM_EXIT_OWNED_MUTEX","features":[331]},{"name":"SYSTEM_IMAGE_BAD_SIGNATURE","features":[331]},{"name":"SYSTEM_LICENSE_VIOLATION","features":[331]},{"name":"SYSTEM_PTE_MISUSE","features":[331]},{"name":"SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD","features":[331]},{"name":"SYSTEM_SERVICE_EXCEPTION","features":[331]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED","features":[331]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M","features":[331]},{"name":"SYSTEM_UNWIND_PREVIOUS_USER","features":[331]},{"name":"SearchTreeForFile","features":[303,331]},{"name":"SearchTreeForFileW","features":[303,331]},{"name":"SecondaryFlagsCallback","features":[331]},{"name":"SetCheckUserInterruptShared","features":[331]},{"name":"SetErrorMode","features":[331]},{"name":"SetImageConfigInformation","features":[303,331,309,333]},{"name":"SetImageConfigInformation","features":[303,331,309,333]},{"name":"SetSymLoadError","features":[331]},{"name":"SetThreadContext","features":[303,331,309]},{"name":"SetThreadErrorMode","features":[303,331]},{"name":"SetUnhandledExceptionFilter","features":[303,331,309]},{"name":"SetXStateFeaturesMask","features":[303,331,309]},{"name":"StackWalk","features":[303,331]},{"name":"StackWalk2","features":[303,331]},{"name":"StackWalk64","features":[303,331]},{"name":"StackWalkEx","features":[303,331]},{"name":"SymAddSourceStream","features":[303,331]},{"name":"SymAddSourceStreamA","features":[303,331]},{"name":"SymAddSourceStreamW","features":[303,331]},{"name":"SymAddSymbol","features":[303,331]},{"name":"SymAddSymbolW","features":[303,331]},{"name":"SymAddrIncludeInlineTrace","features":[303,331]},{"name":"SymCleanup","features":[303,331]},{"name":"SymCoff","features":[331]},{"name":"SymCompareInlineTrace","features":[303,331]},{"name":"SymCv","features":[331]},{"name":"SymDeferred","features":[331]},{"name":"SymDeleteSymbol","features":[303,331]},{"name":"SymDeleteSymbolW","features":[303,331]},{"name":"SymDia","features":[331]},{"name":"SymEnumLines","features":[303,331]},{"name":"SymEnumLinesW","features":[303,331]},{"name":"SymEnumProcesses","features":[303,331]},{"name":"SymEnumSourceFileTokens","features":[303,331]},{"name":"SymEnumSourceFiles","features":[303,331]},{"name":"SymEnumSourceFilesW","features":[303,331]},{"name":"SymEnumSourceLines","features":[303,331]},{"name":"SymEnumSourceLinesW","features":[303,331]},{"name":"SymEnumSym","features":[303,331]},{"name":"SymEnumSymbols","features":[303,331]},{"name":"SymEnumSymbolsEx","features":[303,331]},{"name":"SymEnumSymbolsExW","features":[303,331]},{"name":"SymEnumSymbolsForAddr","features":[303,331]},{"name":"SymEnumSymbolsForAddrW","features":[303,331]},{"name":"SymEnumSymbolsW","features":[303,331]},{"name":"SymEnumTypes","features":[303,331]},{"name":"SymEnumTypesByName","features":[303,331]},{"name":"SymEnumTypesByNameW","features":[303,331]},{"name":"SymEnumTypesW","features":[303,331]},{"name":"SymEnumerateModules","features":[303,331]},{"name":"SymEnumerateModules64","features":[303,331]},{"name":"SymEnumerateModulesW64","features":[303,331]},{"name":"SymEnumerateSymbols","features":[303,331]},{"name":"SymEnumerateSymbols64","features":[303,331]},{"name":"SymEnumerateSymbolsW","features":[303,331]},{"name":"SymEnumerateSymbolsW64","features":[303,331]},{"name":"SymExport","features":[331]},{"name":"SymFindDebugInfoFile","features":[303,331]},{"name":"SymFindDebugInfoFileW","features":[303,331]},{"name":"SymFindExecutableImage","features":[303,331]},{"name":"SymFindExecutableImageW","features":[303,331]},{"name":"SymFindFileInPath","features":[303,331]},{"name":"SymFindFileInPathW","features":[303,331]},{"name":"SymFromAddr","features":[303,331]},{"name":"SymFromAddrW","features":[303,331]},{"name":"SymFromIndex","features":[303,331]},{"name":"SymFromIndexW","features":[303,331]},{"name":"SymFromInlineContext","features":[303,331]},{"name":"SymFromInlineContextW","features":[303,331]},{"name":"SymFromName","features":[303,331]},{"name":"SymFromNameW","features":[303,331]},{"name":"SymFromToken","features":[303,331]},{"name":"SymFromTokenW","features":[303,331]},{"name":"SymFunctionTableAccess","features":[303,331]},{"name":"SymFunctionTableAccess64","features":[303,331]},{"name":"SymFunctionTableAccess64AccessRoutines","features":[303,331]},{"name":"SymGetExtendedOption","features":[303,331]},{"name":"SymGetFileLineOffsets64","features":[303,331]},{"name":"SymGetHomeDirectory","features":[331]},{"name":"SymGetHomeDirectoryW","features":[331]},{"name":"SymGetLineFromAddr","features":[303,331]},{"name":"SymGetLineFromAddr64","features":[303,331]},{"name":"SymGetLineFromAddrW64","features":[303,331]},{"name":"SymGetLineFromInlineContext","features":[303,331]},{"name":"SymGetLineFromInlineContextW","features":[303,331]},{"name":"SymGetLineFromName","features":[303,331]},{"name":"SymGetLineFromName64","features":[303,331]},{"name":"SymGetLineFromNameW64","features":[303,331]},{"name":"SymGetLineNext","features":[303,331]},{"name":"SymGetLineNext64","features":[303,331]},{"name":"SymGetLineNextW64","features":[303,331]},{"name":"SymGetLinePrev","features":[303,331]},{"name":"SymGetLinePrev64","features":[303,331]},{"name":"SymGetLinePrevW64","features":[303,331]},{"name":"SymGetModuleBase","features":[303,331]},{"name":"SymGetModuleBase64","features":[303,331]},{"name":"SymGetModuleInfo","features":[303,331]},{"name":"SymGetModuleInfo64","features":[303,331]},{"name":"SymGetModuleInfoW","features":[303,331]},{"name":"SymGetModuleInfoW64","features":[303,331]},{"name":"SymGetOmaps","features":[303,331]},{"name":"SymGetOptions","features":[331]},{"name":"SymGetScope","features":[303,331]},{"name":"SymGetScopeW","features":[303,331]},{"name":"SymGetSearchPath","features":[303,331]},{"name":"SymGetSearchPathW","features":[303,331]},{"name":"SymGetSourceFile","features":[303,331]},{"name":"SymGetSourceFileChecksum","features":[303,331]},{"name":"SymGetSourceFileChecksumW","features":[303,331]},{"name":"SymGetSourceFileFromToken","features":[303,331]},{"name":"SymGetSourceFileFromTokenByTokenName","features":[303,331]},{"name":"SymGetSourceFileFromTokenByTokenNameW","features":[303,331]},{"name":"SymGetSourceFileFromTokenW","features":[303,331]},{"name":"SymGetSourceFileToken","features":[303,331]},{"name":"SymGetSourceFileTokenByTokenName","features":[303,331]},{"name":"SymGetSourceFileTokenByTokenNameW","features":[303,331]},{"name":"SymGetSourceFileTokenW","features":[303,331]},{"name":"SymGetSourceFileW","features":[303,331]},{"name":"SymGetSourceVarFromToken","features":[303,331]},{"name":"SymGetSourceVarFromTokenW","features":[303,331]},{"name":"SymGetSymFromAddr","features":[303,331]},{"name":"SymGetSymFromAddr64","features":[303,331]},{"name":"SymGetSymFromName","features":[303,331]},{"name":"SymGetSymFromName64","features":[303,331]},{"name":"SymGetSymNext","features":[303,331]},{"name":"SymGetSymNext64","features":[303,331]},{"name":"SymGetSymPrev","features":[303,331]},{"name":"SymGetSymPrev64","features":[303,331]},{"name":"SymGetSymbolFile","features":[303,331]},{"name":"SymGetSymbolFileW","features":[303,331]},{"name":"SymGetTypeFromName","features":[303,331]},{"name":"SymGetTypeFromNameW","features":[303,331]},{"name":"SymGetTypeInfo","features":[303,331]},{"name":"SymGetTypeInfoEx","features":[303,331]},{"name":"SymGetUnwindInfo","features":[303,331]},{"name":"SymInitialize","features":[303,331]},{"name":"SymInitializeW","features":[303,331]},{"name":"SymLoadModule","features":[303,331]},{"name":"SymLoadModule64","features":[303,331]},{"name":"SymLoadModuleEx","features":[303,331]},{"name":"SymLoadModuleExW","features":[303,331]},{"name":"SymMatchFileName","features":[303,331]},{"name":"SymMatchFileNameW","features":[303,331]},{"name":"SymMatchString","features":[303,331]},{"name":"SymMatchStringA","features":[303,331]},{"name":"SymMatchStringW","features":[303,331]},{"name":"SymNext","features":[303,331]},{"name":"SymNextW","features":[303,331]},{"name":"SymNone","features":[331]},{"name":"SymPdb","features":[331]},{"name":"SymPrev","features":[303,331]},{"name":"SymPrevW","features":[303,331]},{"name":"SymQueryInlineTrace","features":[303,331]},{"name":"SymRefreshModuleList","features":[303,331]},{"name":"SymRegisterCallback","features":[303,331]},{"name":"SymRegisterCallback64","features":[303,331]},{"name":"SymRegisterCallbackW64","features":[303,331]},{"name":"SymRegisterFunctionEntryCallback","features":[303,331]},{"name":"SymRegisterFunctionEntryCallback64","features":[303,331]},{"name":"SymSearch","features":[303,331]},{"name":"SymSearchW","features":[303,331]},{"name":"SymSetContext","features":[303,331]},{"name":"SymSetExtendedOption","features":[303,331]},{"name":"SymSetHomeDirectory","features":[303,331]},{"name":"SymSetHomeDirectoryW","features":[303,331]},{"name":"SymSetOptions","features":[331]},{"name":"SymSetParentWindow","features":[303,331]},{"name":"SymSetScopeFromAddr","features":[303,331]},{"name":"SymSetScopeFromIndex","features":[303,331]},{"name":"SymSetScopeFromInlineContext","features":[303,331]},{"name":"SymSetSearchPath","features":[303,331]},{"name":"SymSetSearchPathW","features":[303,331]},{"name":"SymSrvDeltaName","features":[303,331]},{"name":"SymSrvDeltaNameW","features":[303,331]},{"name":"SymSrvGetFileIndexInfo","features":[303,331]},{"name":"SymSrvGetFileIndexInfoW","features":[303,331]},{"name":"SymSrvGetFileIndexString","features":[303,331]},{"name":"SymSrvGetFileIndexStringW","features":[303,331]},{"name":"SymSrvGetFileIndexes","features":[303,331]},{"name":"SymSrvGetFileIndexesW","features":[303,331]},{"name":"SymSrvGetSupplement","features":[303,331]},{"name":"SymSrvGetSupplementW","features":[303,331]},{"name":"SymSrvIsStore","features":[303,331]},{"name":"SymSrvIsStoreW","features":[303,331]},{"name":"SymSrvStoreFile","features":[303,331]},{"name":"SymSrvStoreFileW","features":[303,331]},{"name":"SymSrvStoreSupplement","features":[303,331]},{"name":"SymSrvStoreSupplementW","features":[303,331]},{"name":"SymSym","features":[331]},{"name":"SymUnDName","features":[303,331]},{"name":"SymUnDName64","features":[303,331]},{"name":"SymUnloadModule","features":[303,331]},{"name":"SymUnloadModule64","features":[303,331]},{"name":"SymVirtual","features":[331]},{"name":"SystemInfoStream","features":[331]},{"name":"SystemMemoryInfoStream","features":[331]},{"name":"TARGET_ATTRIBUTE_PACMASK","features":[331]},{"name":"TARGET_MDL_TOO_SMALL","features":[331]},{"name":"TCPIP_AOAC_NIC_ACTIVE_REFERENCE_LEAK","features":[331]},{"name":"TELEMETRY_ASSERTS_LIVEDUMP","features":[331]},{"name":"TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE","features":[331]},{"name":"THIRD_PARTY_FILE_SYSTEM_FAILURE","features":[331]},{"name":"THREAD_ERROR_MODE","features":[331]},{"name":"THREAD_NOT_MUTEX_OWNER","features":[331]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER","features":[331]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER_M","features":[331]},{"name":"THREAD_TERMINATE_HELD_MUTEX","features":[331]},{"name":"THREAD_WRITE_FLAGS","features":[331]},{"name":"TIMER_OR_DPC_INVALID","features":[331]},{"name":"TI_FINDCHILDREN","features":[331]},{"name":"TI_FINDCHILDREN_PARAMS","features":[331]},{"name":"TI_GET_ADDRESS","features":[331]},{"name":"TI_GET_ADDRESSOFFSET","features":[331]},{"name":"TI_GET_ARRAYINDEXTYPEID","features":[331]},{"name":"TI_GET_BASETYPE","features":[331]},{"name":"TI_GET_BITPOSITION","features":[331]},{"name":"TI_GET_CALLING_CONVENTION","features":[331]},{"name":"TI_GET_CHILDRENCOUNT","features":[331]},{"name":"TI_GET_CLASSPARENTID","features":[331]},{"name":"TI_GET_COUNT","features":[331]},{"name":"TI_GET_DATAKIND","features":[331]},{"name":"TI_GET_INDIRECTVIRTUALBASECLASS","features":[331]},{"name":"TI_GET_IS_REFERENCE","features":[331]},{"name":"TI_GET_LENGTH","features":[331]},{"name":"TI_GET_LEXICALPARENT","features":[331]},{"name":"TI_GET_NESTED","features":[331]},{"name":"TI_GET_OBJECTPOINTERTYPE","features":[331]},{"name":"TI_GET_OFFSET","features":[331]},{"name":"TI_GET_SYMINDEX","features":[331]},{"name":"TI_GET_SYMNAME","features":[331]},{"name":"TI_GET_SYMTAG","features":[331]},{"name":"TI_GET_THISADJUST","features":[331]},{"name":"TI_GET_TYPE","features":[331]},{"name":"TI_GET_TYPEID","features":[331]},{"name":"TI_GET_UDTKIND","features":[331]},{"name":"TI_GET_VALUE","features":[331]},{"name":"TI_GET_VIRTUALBASECLASS","features":[331]},{"name":"TI_GET_VIRTUALBASEDISPINDEX","features":[331]},{"name":"TI_GET_VIRTUALBASEOFFSET","features":[331]},{"name":"TI_GET_VIRTUALBASEPOINTEROFFSET","features":[331]},{"name":"TI_GET_VIRTUALBASETABLETYPE","features":[331]},{"name":"TI_GET_VIRTUALTABLESHAPEID","features":[331]},{"name":"TI_GTIEX_REQS_VALID","features":[331]},{"name":"TI_IS_CLOSE_EQUIV_TO","features":[331]},{"name":"TI_IS_EQUIV_TO","features":[331]},{"name":"TOO_MANY_RECURSIVE_FAULTS","features":[331]},{"name":"TRAP_CAUSE_UNKNOWN","features":[331]},{"name":"TTM_FATAL_ERROR","features":[331]},{"name":"TTM_WATCHDOG_TIMEOUT","features":[331]},{"name":"TerminateProcessOnMemoryExhaustion","features":[331]},{"name":"ThreadCallback","features":[331]},{"name":"ThreadExCallback","features":[331]},{"name":"ThreadExListStream","features":[331]},{"name":"ThreadInfoListStream","features":[331]},{"name":"ThreadListStream","features":[331]},{"name":"ThreadNamesStream","features":[331]},{"name":"ThreadWriteBackingStore","features":[331]},{"name":"ThreadWriteContext","features":[331]},{"name":"ThreadWriteInstructionWindow","features":[331]},{"name":"ThreadWriteStack","features":[331]},{"name":"ThreadWriteThread","features":[331]},{"name":"ThreadWriteThreadData","features":[331]},{"name":"ThreadWriteThreadInfo","features":[331]},{"name":"TokenStream","features":[331]},{"name":"TouchFileTimes","features":[303,331]},{"name":"UCMUCSI_FAILURE","features":[331]},{"name":"UCMUCSI_LIVEDUMP","features":[331]},{"name":"UDFS_FILE_SYSTEM","features":[331]},{"name":"UFX_LIVEDUMP","features":[331]},{"name":"UNDNAME_32_BIT_DECODE","features":[331]},{"name":"UNDNAME_COMPLETE","features":[331]},{"name":"UNDNAME_NAME_ONLY","features":[331]},{"name":"UNDNAME_NO_ACCESS_SPECIFIERS","features":[331]},{"name":"UNDNAME_NO_ALLOCATION_LANGUAGE","features":[331]},{"name":"UNDNAME_NO_ALLOCATION_MODEL","features":[331]},{"name":"UNDNAME_NO_ARGUMENTS","features":[331]},{"name":"UNDNAME_NO_CV_THISTYPE","features":[331]},{"name":"UNDNAME_NO_FUNCTION_RETURNS","features":[331]},{"name":"UNDNAME_NO_LEADING_UNDERSCORES","features":[331]},{"name":"UNDNAME_NO_MEMBER_TYPE","features":[331]},{"name":"UNDNAME_NO_MS_KEYWORDS","features":[331]},{"name":"UNDNAME_NO_MS_THISTYPE","features":[331]},{"name":"UNDNAME_NO_RETURN_UDT_MODEL","features":[331]},{"name":"UNDNAME_NO_SPECIAL_SYMS","features":[331]},{"name":"UNDNAME_NO_THISTYPE","features":[331]},{"name":"UNDNAME_NO_THROW_SIGNATURES","features":[331]},{"name":"UNEXPECTED_INITIALIZATION_CALL","features":[331]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP","features":[331]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP_M","features":[331]},{"name":"UNEXPECTED_STORE_EXCEPTION","features":[331]},{"name":"UNLOAD_DLL_DEBUG_EVENT","features":[331]},{"name":"UNLOAD_DLL_DEBUG_INFO","features":[331]},{"name":"UNMOUNTABLE_BOOT_VOLUME","features":[331]},{"name":"UNSUPPORTED_INSTRUCTION_MODE","features":[331]},{"name":"UNSUPPORTED_PROCESSOR","features":[331]},{"name":"UNWIND_HISTORY_TABLE","features":[331]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[331]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[331]},{"name":"UNWIND_ON_INVALID_STACK","features":[331]},{"name":"UNW_FLAG_CHAININFO","features":[331]},{"name":"UNW_FLAG_EHANDLER","features":[331]},{"name":"UNW_FLAG_NHANDLER","features":[331]},{"name":"UNW_FLAG_UHANDLER","features":[331]},{"name":"UP_DRIVER_ON_MP_SYSTEM","features":[331]},{"name":"USB4_HARDWARE_VIOLATION","features":[331]},{"name":"USB_DRIPS_BLOCKER_SURPRISE_REMOVAL_LIVEDUMP","features":[331]},{"name":"USER_MODE_HEALTH_MONITOR","features":[331]},{"name":"USER_MODE_HEALTH_MONITOR_LIVEDUMP","features":[331]},{"name":"UnDecorateSymbolName","features":[331]},{"name":"UnDecorateSymbolNameW","features":[331]},{"name":"UnMapAndLoad","features":[303,331,309,333]},{"name":"UnhandledExceptionFilter","features":[303,331,309]},{"name":"UnloadedModuleListStream","features":[331]},{"name":"UnusedStream","features":[331]},{"name":"UpdateDebugInfoFile","features":[303,331,333]},{"name":"UpdateDebugInfoFileEx","features":[303,331,333]},{"name":"VER_PLATFORM","features":[331]},{"name":"VER_PLATFORM_WIN32_NT","features":[331]},{"name":"VER_PLATFORM_WIN32_WINDOWS","features":[331]},{"name":"VER_PLATFORM_WIN32s","features":[331]},{"name":"VHD_BOOT_HOST_VOLUME_NOT_ENOUGH_SPACE","features":[331]},{"name":"VHD_BOOT_INITIALIZATION_FAILED","features":[331]},{"name":"VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[331]},{"name":"VIDEO_DRIVER_INIT_FAILURE","features":[331]},{"name":"VIDEO_DWMINIT_TIMEOUT_FALLBACK_BDD","features":[331]},{"name":"VIDEO_DXGKRNL_BLACK_SCREEN_LIVEDUMP","features":[331]},{"name":"VIDEO_DXGKRNL_FATAL_ERROR","features":[331]},{"name":"VIDEO_DXGKRNL_LIVEDUMP","features":[331]},{"name":"VIDEO_DXGKRNL_SYSMM_FATAL_ERROR","features":[331]},{"name":"VIDEO_ENGINE_TIMEOUT_DETECTED","features":[331]},{"name":"VIDEO_MEMORY_MANAGEMENT_INTERNAL","features":[331]},{"name":"VIDEO_MINIPORT_BLACK_SCREEN_LIVEDUMP","features":[331]},{"name":"VIDEO_MINIPORT_FAILED_LIVEDUMP","features":[331]},{"name":"VIDEO_SCHEDULER_INTERNAL_ERROR","features":[331]},{"name":"VIDEO_SHADOW_DRIVER_FATAL_ERROR","features":[331]},{"name":"VIDEO_TDR_APPLICATION_BLOCKED","features":[331]},{"name":"VIDEO_TDR_FAILURE","features":[331]},{"name":"VIDEO_TDR_TIMEOUT_DETECTED","features":[331]},{"name":"VMBUS_LIVEDUMP","features":[331]},{"name":"VOLMGRX_INTERNAL_ERROR","features":[331]},{"name":"VOLSNAP_OVERLAPPED_TABLE_ACCESS","features":[331]},{"name":"VSL_INITIALIZATION_FAILED","features":[331]},{"name":"VmPostReadCallback","features":[331]},{"name":"VmPreReadCallback","features":[331]},{"name":"VmQueryCallback","features":[331]},{"name":"VmStartCallback","features":[331]},{"name":"WAITCHAIN_NODE_INFO","features":[303,331]},{"name":"WAIT_CHAIN_THREAD_OPTIONS","features":[331]},{"name":"WCT_ASYNC_OPEN_FLAG","features":[331]},{"name":"WCT_MAX_NODE_COUNT","features":[331]},{"name":"WCT_NETWORK_IO_FLAG","features":[331]},{"name":"WCT_OBJECT_STATUS","features":[331]},{"name":"WCT_OBJECT_TYPE","features":[331]},{"name":"WCT_OBJNAME_LENGTH","features":[331]},{"name":"WCT_OUT_OF_PROC_COM_FLAG","features":[331]},{"name":"WCT_OUT_OF_PROC_CS_FLAG","features":[331]},{"name":"WCT_OUT_OF_PROC_FLAG","features":[331]},{"name":"WDF_VIOLATION","features":[331]},{"name":"WFP_INVALID_OPERATION","features":[331]},{"name":"WHEA_AER_BRIDGE_DESCRIPTOR","features":[303,331]},{"name":"WHEA_AER_ENDPOINT_DESCRIPTOR","features":[303,331]},{"name":"WHEA_AER_ROOTPORT_DESCRIPTOR","features":[303,331]},{"name":"WHEA_BAD_PAGE_LIST_LOCATION","features":[331]},{"name":"WHEA_BAD_PAGE_LIST_MAX_SIZE","features":[331]},{"name":"WHEA_CMCI_THRESHOLD_COUNT","features":[331]},{"name":"WHEA_CMCI_THRESHOLD_POLL_COUNT","features":[331]},{"name":"WHEA_CMCI_THRESHOLD_TIME","features":[331]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MAX","features":[331]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MIN","features":[331]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_V1","features":[331]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MAX","features":[331]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MIN","features":[331]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V1","features":[331]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V2","features":[331]},{"name":"WHEA_DEVICE_DRIVER_DESCRIPTOR","features":[303,331]},{"name":"WHEA_DISABLE_DUMMY_WRITE","features":[331]},{"name":"WHEA_DISABLE_OFFLINE","features":[331]},{"name":"WHEA_DRIVER_BUFFER_SET","features":[331]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DD","features":[303,331]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER","features":[303,331]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER_V1","features":[303,331]},{"name":"WHEA_ERROR_SOURCE_CORRECT_DEVICE_DRIVER","features":[303,331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR","features":[303,331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERBRIDGE","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERENDPOINT","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERROOTPORT","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC_V2","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCMC","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCPE","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFMCA","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFCMC","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFMCE","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFNMI","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_10","features":[331]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_11","features":[331]},{"name":"WHEA_ERROR_SOURCE_FLAG_DEFAULTSOURCE","features":[331]},{"name":"WHEA_ERROR_SOURCE_FLAG_FIRMWAREFIRST","features":[331]},{"name":"WHEA_ERROR_SOURCE_FLAG_GHES_ASSIST","features":[331]},{"name":"WHEA_ERROR_SOURCE_FLAG_GLOBAL","features":[331]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE_DEVICE_DRIVER","features":[303,331]},{"name":"WHEA_ERROR_SOURCE_INVALID_RELATED_SOURCE","features":[331]},{"name":"WHEA_ERROR_SOURCE_STATE","features":[331]},{"name":"WHEA_ERROR_SOURCE_TYPE","features":[331]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE_DEVICE_DRIVER","features":[331]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR","features":[331]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR_V2","features":[331]},{"name":"WHEA_INTERNAL_ERROR","features":[331]},{"name":"WHEA_IPF_CMC_DESCRIPTOR","features":[331]},{"name":"WHEA_IPF_CPE_DESCRIPTOR","features":[331]},{"name":"WHEA_IPF_MCA_DESCRIPTOR","features":[331]},{"name":"WHEA_MAX_MC_BANKS","features":[331]},{"name":"WHEA_MEM_PERSISTOFFLINE","features":[331]},{"name":"WHEA_MEM_PFA_DISABLE","features":[331]},{"name":"WHEA_MEM_PFA_PAGECOUNT","features":[331]},{"name":"WHEA_MEM_PFA_THRESHOLD","features":[331]},{"name":"WHEA_MEM_PFA_TIMEOUT","features":[331]},{"name":"WHEA_NOTIFICATION_DESCRIPTOR","features":[331]},{"name":"WHEA_NOTIFICATION_FLAGS","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEA","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEI","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_CMCI","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT_GSIV","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_GPIO_SIGNAL","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_LOCALINTERRUPT","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_MCE","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_NMI","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_POLLED","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_SCI","features":[331]},{"name":"WHEA_NOTIFICATION_TYPE_SDEI","features":[331]},{"name":"WHEA_NOTIFY_ALL_OFFLINES","features":[331]},{"name":"WHEA_PCI_SLOT_NUMBER","features":[331]},{"name":"WHEA_PENDING_PAGE_LIST_SZ","features":[331]},{"name":"WHEA_RESTORE_CMCI_ATTEMPTS","features":[331]},{"name":"WHEA_RESTORE_CMCI_ENABLED","features":[331]},{"name":"WHEA_RESTORE_CMCI_ERR_LIMIT","features":[331]},{"name":"WHEA_ROW_FAIL_CHECK_ENABLE","features":[331]},{"name":"WHEA_ROW_FAIL_CHECK_EXTENT","features":[331]},{"name":"WHEA_ROW_FAIL_CHECK_THRESHOLD","features":[331]},{"name":"WHEA_UNCORRECTABLE_ERROR","features":[331]},{"name":"WHEA_XPF_CMC_DESCRIPTOR","features":[303,331]},{"name":"WHEA_XPF_MCE_DESCRIPTOR","features":[303,331]},{"name":"WHEA_XPF_MC_BANK_DESCRIPTOR","features":[303,331]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_AMD64MCA","features":[331]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_IA32MCA","features":[331]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_Intel64MCA","features":[331]},{"name":"WHEA_XPF_NMI_DESCRIPTOR","features":[303,331]},{"name":"WIN32K_ATOMIC_CHECK_FAILURE","features":[331]},{"name":"WIN32K_CALLOUT_WATCHDOG_BUGCHECK","features":[331]},{"name":"WIN32K_CALLOUT_WATCHDOG_LIVEDUMP","features":[331]},{"name":"WIN32K_CRITICAL_FAILURE","features":[331]},{"name":"WIN32K_CRITICAL_FAILURE_LIVEDUMP","features":[331]},{"name":"WIN32K_HANDLE_MANAGER","features":[331]},{"name":"WIN32K_INIT_OR_RIT_FAILURE","features":[331]},{"name":"WIN32K_POWER_WATCHDOG_TIMEOUT","features":[331]},{"name":"WIN32K_SECURITY_FAILURE","features":[331]},{"name":"WINDOWS_NT_BANNER","features":[331]},{"name":"WINDOWS_NT_CSD_STRING","features":[331]},{"name":"WINDOWS_NT_INFO_STRING","features":[331]},{"name":"WINDOWS_NT_INFO_STRING_PLURAL","features":[331]},{"name":"WINDOWS_NT_MP_STRING","features":[331]},{"name":"WINDOWS_NT_RC_STRING","features":[331]},{"name":"WINLOGON_FATAL_ERROR","features":[331]},{"name":"WINSOCK_DETECTED_HUNG_CLOSESOCKET_LIVEDUMP","features":[331]},{"name":"WORKER_INVALID","features":[331]},{"name":"WORKER_THREAD_INVALID_STATE","features":[331]},{"name":"WORKER_THREAD_RETURNED_AT_BAD_IRQL","features":[331]},{"name":"WORKER_THREAD_RETURNED_WHILE_ATTACHED_TO_SILO","features":[331]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_IO_PRIORITY","features":[331]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_PAGING_IO_PRIORITY","features":[331]},{"name":"WORKER_THREAD_RETURNED_WITH_NON_DEFAULT_WORKLOAD_CLASS","features":[331]},{"name":"WORKER_THREAD_RETURNED_WITH_SYSTEM_PAGE_PRIORITY_ACTIVE","features":[331]},{"name":"WORKER_THREAD_TEST_CONDITION","features":[331]},{"name":"WOW64_CONTEXT","features":[331]},{"name":"WOW64_CONTEXT_ALL","features":[331]},{"name":"WOW64_CONTEXT_CONTROL","features":[331]},{"name":"WOW64_CONTEXT_DEBUG_REGISTERS","features":[331]},{"name":"WOW64_CONTEXT_EXCEPTION_ACTIVE","features":[331]},{"name":"WOW64_CONTEXT_EXCEPTION_REPORTING","features":[331]},{"name":"WOW64_CONTEXT_EXCEPTION_REQUEST","features":[331]},{"name":"WOW64_CONTEXT_EXTENDED_REGISTERS","features":[331]},{"name":"WOW64_CONTEXT_FLAGS","features":[331]},{"name":"WOW64_CONTEXT_FLOATING_POINT","features":[331]},{"name":"WOW64_CONTEXT_FULL","features":[331]},{"name":"WOW64_CONTEXT_INTEGER","features":[331]},{"name":"WOW64_CONTEXT_SEGMENTS","features":[331]},{"name":"WOW64_CONTEXT_SERVICE_ACTIVE","features":[331]},{"name":"WOW64_CONTEXT_X86","features":[331]},{"name":"WOW64_CONTEXT_XSTATE","features":[331]},{"name":"WOW64_DESCRIPTOR_TABLE_ENTRY","features":[331]},{"name":"WOW64_FLOATING_SAVE_AREA","features":[331]},{"name":"WOW64_LDT_ENTRY","features":[331]},{"name":"WOW64_MAXIMUM_SUPPORTED_EXTENSION","features":[331]},{"name":"WOW64_SIZE_OF_80387_REGISTERS","features":[331]},{"name":"WVR_LIVEDUMP_APP_IO_TIMEOUT","features":[331]},{"name":"WVR_LIVEDUMP_CRITICAL_ERROR","features":[331]},{"name":"WVR_LIVEDUMP_MANUALLY_INITIATED","features":[331]},{"name":"WVR_LIVEDUMP_RECOVERY_IOCONTEXT_TIMEOUT","features":[331]},{"name":"WVR_LIVEDUMP_REPLICATION_IOCONTEXT_TIMEOUT","features":[331]},{"name":"WVR_LIVEDUMP_STATE_FAILURE","features":[331]},{"name":"WVR_LIVEDUMP_STATE_TRANSITION_TIMEOUT","features":[331]},{"name":"WaitForDebugEvent","features":[303,331,338]},{"name":"WaitForDebugEventEx","features":[303,331,338]},{"name":"WctAlpcType","features":[331]},{"name":"WctComActivationType","features":[331]},{"name":"WctComType","features":[331]},{"name":"WctCriticalSectionType","features":[331]},{"name":"WctMaxType","features":[331]},{"name":"WctMutexType","features":[331]},{"name":"WctProcessWaitType","features":[331]},{"name":"WctSendMessageType","features":[331]},{"name":"WctSmbIoType","features":[331]},{"name":"WctSocketIoType","features":[331]},{"name":"WctStatusAbandoned","features":[331]},{"name":"WctStatusBlocked","features":[331]},{"name":"WctStatusError","features":[331]},{"name":"WctStatusMax","features":[331]},{"name":"WctStatusNoAccess","features":[331]},{"name":"WctStatusNotOwned","features":[331]},{"name":"WctStatusOwned","features":[331]},{"name":"WctStatusPidOnly","features":[331]},{"name":"WctStatusPidOnlyRpcss","features":[331]},{"name":"WctStatusRunning","features":[331]},{"name":"WctStatusUnknown","features":[331]},{"name":"WctThreadType","features":[331]},{"name":"WctThreadWaitType","features":[331]},{"name":"WctUnknownType","features":[331]},{"name":"WheaErrSrcStateRemovePending","features":[331]},{"name":"WheaErrSrcStateRemoved","features":[331]},{"name":"WheaErrSrcStateStarted","features":[331]},{"name":"WheaErrSrcStateStopped","features":[331]},{"name":"WheaErrSrcTypeBMC","features":[331]},{"name":"WheaErrSrcTypeBOOT","features":[331]},{"name":"WheaErrSrcTypeCMC","features":[331]},{"name":"WheaErrSrcTypeCPE","features":[331]},{"name":"WheaErrSrcTypeDeviceDriver","features":[331]},{"name":"WheaErrSrcTypeGeneric","features":[331]},{"name":"WheaErrSrcTypeGenericV2","features":[331]},{"name":"WheaErrSrcTypeINIT","features":[331]},{"name":"WheaErrSrcTypeIPFCMC","features":[331]},{"name":"WheaErrSrcTypeIPFCPE","features":[331]},{"name":"WheaErrSrcTypeIPFMCA","features":[331]},{"name":"WheaErrSrcTypeMCE","features":[331]},{"name":"WheaErrSrcTypeMax","features":[331]},{"name":"WheaErrSrcTypeNMI","features":[331]},{"name":"WheaErrSrcTypePCIe","features":[331]},{"name":"WheaErrSrcTypePMEM","features":[331]},{"name":"WheaErrSrcTypeSCIGeneric","features":[331]},{"name":"WheaErrSrcTypeSCIGenericV2","features":[331]},{"name":"WheaErrSrcTypeSea","features":[331]},{"name":"WheaErrSrcTypeSei","features":[331]},{"name":"Wow64GetThreadContext","features":[303,331]},{"name":"Wow64GetThreadSelectorEntry","features":[303,331]},{"name":"Wow64SetThreadContext","features":[303,331]},{"name":"WriteKernelMinidumpCallback","features":[331]},{"name":"WriteProcessMemory","features":[303,331]},{"name":"XBOX_360_SYSTEM_CRASH","features":[331]},{"name":"XBOX_360_SYSTEM_CRASH_RESERVED","features":[331]},{"name":"XBOX_CORRUPTED_IMAGE","features":[331]},{"name":"XBOX_CORRUPTED_IMAGE_BASE","features":[331]},{"name":"XBOX_INVERTED_FUNCTION_TABLE_OVERFLOW","features":[331]},{"name":"XBOX_MANUALLY_INITIATED_CRASH","features":[331]},{"name":"XBOX_SECURITY_FAILUE","features":[331]},{"name":"XBOX_SHUTDOWN_WATCHDOG_TIMEOUT","features":[331]},{"name":"XBOX_VMCTRL_CS_TIMEOUT","features":[331]},{"name":"XBOX_XDS_WATCHDOG_TIMEOUT","features":[331]},{"name":"XNS_INTERNAL_ERROR","features":[331]},{"name":"XPF_MCE_FLAGS","features":[331]},{"name":"XPF_MC_BANK_FLAGS","features":[331]},{"name":"XSAVE_AREA","features":[331]},{"name":"XSAVE_AREA_HEADER","features":[331]},{"name":"XSAVE_FORMAT","features":[331]},{"name":"XSAVE_FORMAT","features":[331]},{"name":"XSTATE_CONFIGURATION","features":[331]},{"name":"XSTATE_CONFIG_FEATURE_MSC_INFO","features":[331]},{"name":"XSTATE_CONTEXT","features":[331]},{"name":"XSTATE_CONTEXT","features":[331]},{"name":"XSTATE_FEATURE","features":[331]},{"name":"ceStreamBucketParameters","features":[331]},{"name":"ceStreamDiagnosisList","features":[331]},{"name":"ceStreamException","features":[331]},{"name":"ceStreamMemoryPhysicalList","features":[331]},{"name":"ceStreamMemoryVirtualList","features":[331]},{"name":"ceStreamModuleList","features":[331]},{"name":"ceStreamNull","features":[331]},{"name":"ceStreamProcessList","features":[331]},{"name":"ceStreamProcessModuleMap","features":[331]},{"name":"ceStreamSystemInfo","features":[331]},{"name":"ceStreamThreadCallStackList","features":[331]},{"name":"ceStreamThreadContextList","features":[331]},{"name":"ceStreamThreadList","features":[331]},{"name":"hdBase","features":[331]},{"name":"hdMax","features":[331]},{"name":"hdSrc","features":[331]},{"name":"hdSym","features":[331]},{"name":"sevAttn","features":[331]},{"name":"sevFatal","features":[331]},{"name":"sevInfo","features":[331]},{"name":"sevMax","features":[331]},{"name":"sevProblem","features":[331]},{"name":"sfDbg","features":[331]},{"name":"sfImage","features":[331]},{"name":"sfMax","features":[331]},{"name":"sfMpd","features":[331]},{"name":"sfPdb","features":[331]}],"553":[{"name":"ACTIVPROF_E_PROFILER_ABSENT","features":[541]},{"name":"ACTIVPROF_E_PROFILER_PRESENT","features":[541]},{"name":"ACTIVPROF_E_UNABLE_TO_APPLY_ACTION","features":[541]},{"name":"APPBREAKFLAG_DEBUGGER_BLOCK","features":[541]},{"name":"APPBREAKFLAG_DEBUGGER_HALT","features":[541]},{"name":"APPBREAKFLAG_IN_BREAKPOINT","features":[541]},{"name":"APPBREAKFLAG_NESTED","features":[541]},{"name":"APPBREAKFLAG_STEP","features":[541]},{"name":"APPBREAKFLAG_STEPTYPE_BYTECODE","features":[541]},{"name":"APPBREAKFLAG_STEPTYPE_MACHINE","features":[541]},{"name":"APPBREAKFLAG_STEPTYPE_MASK","features":[541]},{"name":"APPBREAKFLAG_STEPTYPE_SOURCE","features":[541]},{"name":"APPLICATION_NODE_EVENT_FILTER","features":[541]},{"name":"AsyncIDebugApplicationNodeEvents","features":[541]},{"name":"BREAKPOINT_DELETED","features":[541]},{"name":"BREAKPOINT_DISABLED","features":[541]},{"name":"BREAKPOINT_ENABLED","features":[541]},{"name":"BREAKPOINT_STATE","features":[541]},{"name":"BREAKREASON","features":[541]},{"name":"BREAKREASON_BREAKPOINT","features":[541]},{"name":"BREAKREASON_DEBUGGER_BLOCK","features":[541]},{"name":"BREAKREASON_DEBUGGER_HALT","features":[541]},{"name":"BREAKREASON_ERROR","features":[541]},{"name":"BREAKREASON_HOST_INITIATED","features":[541]},{"name":"BREAKREASON_JIT","features":[541]},{"name":"BREAKREASON_LANGUAGE_INITIATED","features":[541]},{"name":"BREAKREASON_MUTATION_BREAKPOINT","features":[541]},{"name":"BREAKREASON_STEP","features":[541]},{"name":"BREAKRESUMEACTION","features":[541]},{"name":"BREAKRESUMEACTION_ABORT","features":[541]},{"name":"BREAKRESUMEACTION_CONTINUE","features":[541]},{"name":"BREAKRESUMEACTION_IGNORE","features":[541]},{"name":"BREAKRESUMEACTION_STEP_DOCUMENT","features":[541]},{"name":"BREAKRESUMEACTION_STEP_INTO","features":[541]},{"name":"BREAKRESUMEACTION_STEP_OUT","features":[541]},{"name":"BREAKRESUMEACTION_STEP_OVER","features":[541]},{"name":"CATID_ActiveScript","features":[541]},{"name":"CATID_ActiveScriptAuthor","features":[541]},{"name":"CATID_ActiveScriptEncode","features":[541]},{"name":"CATID_ActiveScriptParse","features":[541]},{"name":"CDebugDocumentHelper","features":[541]},{"name":"DEBUG_EVENT_INFO_TYPE","features":[541]},{"name":"DEBUG_STACKFRAME_TYPE","features":[541]},{"name":"DEBUG_TEXT_ALLOWBREAKPOINTS","features":[541]},{"name":"DEBUG_TEXT_ALLOWERRORREPORT","features":[541]},{"name":"DEBUG_TEXT_EVALUATETOCODECONTEXT","features":[541]},{"name":"DEBUG_TEXT_ISEXPRESSION","features":[541]},{"name":"DEBUG_TEXT_ISNONUSERCODE","features":[541]},{"name":"DEBUG_TEXT_NOSIDEEFFECTS","features":[541]},{"name":"DEBUG_TEXT_RETURNVALUE","features":[541]},{"name":"DEIT_ASMJS_FAILED","features":[541]},{"name":"DEIT_ASMJS_IN_DEBUGGING","features":[541]},{"name":"DEIT_ASMJS_SUCCEEDED","features":[541]},{"name":"DEIT_GENERAL","features":[541]},{"name":"DOCUMENTNAMETYPE","features":[541]},{"name":"DOCUMENTNAMETYPE_APPNODE","features":[541]},{"name":"DOCUMENTNAMETYPE_FILE_TAIL","features":[541]},{"name":"DOCUMENTNAMETYPE_SOURCE_MAP_URL","features":[541]},{"name":"DOCUMENTNAMETYPE_TITLE","features":[541]},{"name":"DOCUMENTNAMETYPE_UNIQUE_TITLE","features":[541]},{"name":"DOCUMENTNAMETYPE_URL","features":[541]},{"name":"DST_INTERNAL_FRAME","features":[541]},{"name":"DST_INVOCATION_FRAME","features":[541]},{"name":"DST_SCRIPT_FRAME","features":[541]},{"name":"DebugHelper","features":[541]},{"name":"DebugStackFrameDescriptor","features":[303,541]},{"name":"DebugStackFrameDescriptor64","features":[303,541]},{"name":"DefaultDebugSessionProvider","features":[541]},{"name":"ERRORRESUMEACTION","features":[541]},{"name":"ERRORRESUMEACTION_AbortCallAndReturnErrorToCaller","features":[541]},{"name":"ERRORRESUMEACTION_ReexecuteErrorStatement","features":[541]},{"name":"ERRORRESUMEACTION_SkipErrorStatement","features":[541]},{"name":"ETK_FIRST_CHANCE","features":[541]},{"name":"ETK_UNHANDLED","features":[541]},{"name":"ETK_USER_UNHANDLED","features":[541]},{"name":"E_JsDEBUG_INVALID_MEMORY_ADDRESS","features":[541]},{"name":"E_JsDEBUG_MISMATCHED_RUNTIME","features":[541]},{"name":"E_JsDEBUG_OUTSIDE_OF_VM","features":[541]},{"name":"E_JsDEBUG_RUNTIME_NOT_IN_DEBUG_MODE","features":[541]},{"name":"E_JsDEBUG_SOURCE_LOCATION_NOT_FOUND","features":[541]},{"name":"E_JsDEBUG_UNKNOWN_THREAD","features":[541]},{"name":"FACILITY_JsDEBUG","features":[541]},{"name":"FILTER_EXCLUDE_ANONYMOUS_CODE","features":[541]},{"name":"FILTER_EXCLUDE_EVAL_CODE","features":[541]},{"name":"FILTER_EXCLUDE_NOTHING","features":[541]},{"name":"GETATTRFLAG_HUMANTEXT","features":[541]},{"name":"GETATTRFLAG_THIS","features":[541]},{"name":"GETATTRTYPE_DEPSCAN","features":[541]},{"name":"GETATTRTYPE_NORMAL","features":[541]},{"name":"IActiveScript","features":[541]},{"name":"IActiveScriptAuthor","features":[541]},{"name":"IActiveScriptAuthorProcedure","features":[541]},{"name":"IActiveScriptDebug32","features":[541]},{"name":"IActiveScriptDebug64","features":[541]},{"name":"IActiveScriptEncode","features":[541]},{"name":"IActiveScriptError","features":[541]},{"name":"IActiveScriptError64","features":[541]},{"name":"IActiveScriptErrorDebug","features":[541]},{"name":"IActiveScriptErrorDebug110","features":[541]},{"name":"IActiveScriptGarbageCollector","features":[541]},{"name":"IActiveScriptHostEncode","features":[541]},{"name":"IActiveScriptParse32","features":[541]},{"name":"IActiveScriptParse64","features":[541]},{"name":"IActiveScriptParseProcedure2_32","features":[541]},{"name":"IActiveScriptParseProcedure2_64","features":[541]},{"name":"IActiveScriptParseProcedure32","features":[541]},{"name":"IActiveScriptParseProcedure64","features":[541]},{"name":"IActiveScriptParseProcedureOld32","features":[541]},{"name":"IActiveScriptParseProcedureOld64","features":[541]},{"name":"IActiveScriptProfilerCallback","features":[541]},{"name":"IActiveScriptProfilerCallback2","features":[541]},{"name":"IActiveScriptProfilerCallback3","features":[541]},{"name":"IActiveScriptProfilerControl","features":[541]},{"name":"IActiveScriptProfilerControl2","features":[541]},{"name":"IActiveScriptProfilerControl3","features":[541]},{"name":"IActiveScriptProfilerControl4","features":[541]},{"name":"IActiveScriptProfilerControl5","features":[541]},{"name":"IActiveScriptProfilerHeapEnum","features":[541]},{"name":"IActiveScriptProperty","features":[541]},{"name":"IActiveScriptSIPInfo","features":[541]},{"name":"IActiveScriptSite","features":[541]},{"name":"IActiveScriptSiteDebug32","features":[541]},{"name":"IActiveScriptSiteDebug64","features":[541]},{"name":"IActiveScriptSiteDebugEx","features":[541]},{"name":"IActiveScriptSiteInterruptPoll","features":[541]},{"name":"IActiveScriptSiteTraceInfo","features":[541]},{"name":"IActiveScriptSiteUIControl","features":[541]},{"name":"IActiveScriptSiteWindow","features":[541]},{"name":"IActiveScriptStats","features":[541]},{"name":"IActiveScriptStringCompare","features":[541]},{"name":"IActiveScriptTraceInfo","features":[541]},{"name":"IActiveScriptWinRTErrorDebug","features":[541]},{"name":"IApplicationDebugger","features":[541]},{"name":"IApplicationDebuggerUI","features":[541]},{"name":"IBindEventHandler","features":[541]},{"name":"IDebugApplication11032","features":[541]},{"name":"IDebugApplication11064","features":[541]},{"name":"IDebugApplication32","features":[541]},{"name":"IDebugApplication64","features":[541]},{"name":"IDebugApplicationNode","features":[541]},{"name":"IDebugApplicationNode100","features":[541]},{"name":"IDebugApplicationNodeEvents","features":[541]},{"name":"IDebugApplicationThread","features":[541]},{"name":"IDebugApplicationThread11032","features":[541]},{"name":"IDebugApplicationThread11064","features":[541]},{"name":"IDebugApplicationThread64","features":[541]},{"name":"IDebugApplicationThreadEvents110","features":[541]},{"name":"IDebugAsyncOperation","features":[541]},{"name":"IDebugAsyncOperationCallBack","features":[541]},{"name":"IDebugCodeContext","features":[541]},{"name":"IDebugCookie","features":[541]},{"name":"IDebugDocument","features":[541]},{"name":"IDebugDocumentContext","features":[541]},{"name":"IDebugDocumentHelper32","features":[541]},{"name":"IDebugDocumentHelper64","features":[541]},{"name":"IDebugDocumentHost","features":[541]},{"name":"IDebugDocumentInfo","features":[541]},{"name":"IDebugDocumentProvider","features":[541]},{"name":"IDebugDocumentText","features":[541]},{"name":"IDebugDocumentTextAuthor","features":[541]},{"name":"IDebugDocumentTextEvents","features":[541]},{"name":"IDebugDocumentTextExternalAuthor","features":[541]},{"name":"IDebugExpression","features":[541]},{"name":"IDebugExpressionCallBack","features":[541]},{"name":"IDebugExpressionContext","features":[541]},{"name":"IDebugFormatter","features":[541]},{"name":"IDebugHelper","features":[541]},{"name":"IDebugSessionProvider","features":[541]},{"name":"IDebugStackFrame","features":[541]},{"name":"IDebugStackFrame110","features":[541]},{"name":"IDebugStackFrameSniffer","features":[541]},{"name":"IDebugStackFrameSnifferEx32","features":[541]},{"name":"IDebugStackFrameSnifferEx64","features":[541]},{"name":"IDebugSyncOperation","features":[541]},{"name":"IDebugThreadCall32","features":[541]},{"name":"IDebugThreadCall64","features":[541]},{"name":"IEnumDebugApplicationNodes","features":[541]},{"name":"IEnumDebugCodeContexts","features":[541]},{"name":"IEnumDebugExpressionContexts","features":[541]},{"name":"IEnumDebugStackFrames","features":[541]},{"name":"IEnumDebugStackFrames64","features":[541]},{"name":"IEnumJsStackFrames","features":[541]},{"name":"IEnumRemoteDebugApplicationThreads","features":[541]},{"name":"IEnumRemoteDebugApplications","features":[541]},{"name":"IJsDebug","features":[541]},{"name":"IJsDebugBreakPoint","features":[541]},{"name":"IJsDebugDataTarget","features":[541]},{"name":"IJsDebugFrame","features":[541]},{"name":"IJsDebugProcess","features":[541]},{"name":"IJsDebugProperty","features":[541]},{"name":"IJsDebugStackWalker","features":[541]},{"name":"IJsEnumDebugProperty","features":[541]},{"name":"IMachineDebugManager","features":[541]},{"name":"IMachineDebugManagerCookie","features":[541]},{"name":"IMachineDebugManagerEvents","features":[541]},{"name":"IProcessDebugManager32","features":[541]},{"name":"IProcessDebugManager64","features":[541]},{"name":"IProvideExpressionContexts","features":[541]},{"name":"IRemoteDebugApplication","features":[541]},{"name":"IRemoteDebugApplication110","features":[541]},{"name":"IRemoteDebugApplicationEvents","features":[541]},{"name":"IRemoteDebugApplicationThread","features":[541]},{"name":"IRemoteDebugCriticalErrorEvent110","features":[541]},{"name":"IRemoteDebugInfoEvent110","features":[541]},{"name":"IScriptEntry","features":[541]},{"name":"IScriptInvocationContext","features":[541]},{"name":"IScriptNode","features":[541]},{"name":"IScriptScriptlet","features":[541]},{"name":"ISimpleConnectionPoint","features":[541]},{"name":"ITridentEventSink","features":[541]},{"name":"IWebAppDiagnosticsObjectInitialization","features":[541]},{"name":"IWebAppDiagnosticsSetup","features":[541]},{"name":"JS_NATIVE_FRAME","features":[541]},{"name":"JS_PROPERTY_ATTRIBUTES","features":[541]},{"name":"JS_PROPERTY_ATTRIBUTE_NONE","features":[541]},{"name":"JS_PROPERTY_FAKE","features":[541]},{"name":"JS_PROPERTY_FRAME_INCATCHBLOCK","features":[541]},{"name":"JS_PROPERTY_FRAME_INFINALLYBLOCK","features":[541]},{"name":"JS_PROPERTY_FRAME_INTRYBLOCK","features":[541]},{"name":"JS_PROPERTY_HAS_CHILDREN","features":[541]},{"name":"JS_PROPERTY_MEMBERS","features":[541]},{"name":"JS_PROPERTY_MEMBERS_ALL","features":[541]},{"name":"JS_PROPERTY_MEMBERS_ARGUMENTS","features":[541]},{"name":"JS_PROPERTY_METHOD","features":[541]},{"name":"JS_PROPERTY_NATIVE_WINRT_POINTER","features":[541]},{"name":"JS_PROPERTY_READONLY","features":[541]},{"name":"JsDebugPropertyInfo","features":[541]},{"name":"JsDebugReadMemoryFlags","features":[541]},{"name":"MachineDebugManager_DEBUG","features":[541]},{"name":"MachineDebugManager_RETAIL","features":[541]},{"name":"OID_JSSIP","features":[541]},{"name":"OID_VBSSIP","features":[541]},{"name":"OID_WSFSIP","features":[541]},{"name":"PROFILER_EVENT_MASK","features":[541]},{"name":"PROFILER_EVENT_MASK_TRACE_ALL","features":[541]},{"name":"PROFILER_EVENT_MASK_TRACE_ALL_WITH_DOM","features":[541]},{"name":"PROFILER_EVENT_MASK_TRACE_DOM_FUNCTION_CALL","features":[541]},{"name":"PROFILER_EVENT_MASK_TRACE_NATIVE_FUNCTION_CALL","features":[541]},{"name":"PROFILER_EVENT_MASK_TRACE_SCRIPT_FUNCTION_CALL","features":[541]},{"name":"PROFILER_HEAP_ENUM_FLAGS","features":[541]},{"name":"PROFILER_HEAP_ENUM_FLAGS_NONE","features":[541]},{"name":"PROFILER_HEAP_ENUM_FLAGS_RELATIONSHIP_SUBSTRINGS","features":[541]},{"name":"PROFILER_HEAP_ENUM_FLAGS_STORE_RELATIONSHIP_FLAGS","features":[541]},{"name":"PROFILER_HEAP_ENUM_FLAGS_SUBSTRINGS","features":[541]},{"name":"PROFILER_HEAP_OBJECT","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_EXTERNAL","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_EXTERNAL_DISPATCH","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_EXTERNAL_UNKNOWN","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_IS_ROOT","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_NEW_OBJECT","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_NEW_STATE_UNAVAILABLE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_SITE_CLOSED","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_SIZE_APPROXIMATE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_SIZE_UNAVAILABLE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_DELEGATE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_INSTANCE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_NAMESPACE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_RUNTIMECLASS","features":[541]},{"name":"PROFILER_HEAP_OBJECT_NAME_ID_UNAVAILABLE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_ELEMENT_ATTRIBUTES_SIZE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_ELEMENT_TEXT_CHILDREN_SIZE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_FUNCTION_NAME","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_INDEX_PROPERTIES","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_INTERNAL_PROPERTY","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_MAP_COLLECTION_LIST","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_MAX_VALUE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_NAME_PROPERTIES","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_PROTOTYPE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_RELATIONSHIPS","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_SCOPE_LIST","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_SET_COLLECTION_LIST","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_TYPE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_WEAKMAP_COLLECTION_LIST","features":[541]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_WINRTEVENTS","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_CONST_VARIABLE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_IS_GET_ACCESSOR","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_IS_SET_ACCESSOR","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_LET_VARIABLE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_NONE","features":[541]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_LIST","features":[541]},{"name":"PROFILER_HEAP_OBJECT_SCOPE_LIST","features":[541]},{"name":"PROFILER_HEAP_SUMMARY","features":[541]},{"name":"PROFILER_HEAP_SUMMARY_VERSION","features":[541]},{"name":"PROFILER_HEAP_SUMMARY_VERSION_1","features":[541]},{"name":"PROFILER_PROPERTY_TYPE_BSTR","features":[541]},{"name":"PROFILER_PROPERTY_TYPE_EXTERNAL_OBJECT","features":[541]},{"name":"PROFILER_PROPERTY_TYPE_HEAP_OBJECT","features":[541]},{"name":"PROFILER_PROPERTY_TYPE_NUMBER","features":[541]},{"name":"PROFILER_PROPERTY_TYPE_STRING","features":[541]},{"name":"PROFILER_PROPERTY_TYPE_SUBSTRING","features":[541]},{"name":"PROFILER_PROPERTY_TYPE_SUBSTRING_INFO","features":[541]},{"name":"PROFILER_RELATIONSHIP_INFO","features":[541]},{"name":"PROFILER_SCRIPT_TYPE","features":[541]},{"name":"PROFILER_SCRIPT_TYPE_DOM","features":[541]},{"name":"PROFILER_SCRIPT_TYPE_DYNAMIC","features":[541]},{"name":"PROFILER_SCRIPT_TYPE_NATIVE","features":[541]},{"name":"PROFILER_SCRIPT_TYPE_USER","features":[541]},{"name":"ProcessDebugManager","features":[541]},{"name":"SCRIPTGCTYPE","features":[541]},{"name":"SCRIPTGCTYPE_EXHAUSTIVE","features":[541]},{"name":"SCRIPTGCTYPE_NORMAL","features":[541]},{"name":"SCRIPTINFO_ITYPEINFO","features":[541]},{"name":"SCRIPTINFO_IUNKNOWN","features":[541]},{"name":"SCRIPTINTERRUPT_DEBUG","features":[541]},{"name":"SCRIPTINTERRUPT_RAISEEXCEPTION","features":[541]},{"name":"SCRIPTITEM_CODEONLY","features":[541]},{"name":"SCRIPTITEM_GLOBALMEMBERS","features":[541]},{"name":"SCRIPTITEM_ISPERSISTENT","features":[541]},{"name":"SCRIPTITEM_ISSOURCE","features":[541]},{"name":"SCRIPTITEM_ISVISIBLE","features":[541]},{"name":"SCRIPTITEM_NOCODE","features":[541]},{"name":"SCRIPTLANGUAGEVERSION","features":[541]},{"name":"SCRIPTLANGUAGEVERSION_5_7","features":[541]},{"name":"SCRIPTLANGUAGEVERSION_5_8","features":[541]},{"name":"SCRIPTLANGUAGEVERSION_DEFAULT","features":[541]},{"name":"SCRIPTLANGUAGEVERSION_MAX","features":[541]},{"name":"SCRIPTPROC_HOSTMANAGESSOURCE","features":[541]},{"name":"SCRIPTPROC_IMPLICIT_PARENTS","features":[541]},{"name":"SCRIPTPROC_IMPLICIT_THIS","features":[541]},{"name":"SCRIPTPROC_ISEXPRESSION","features":[541]},{"name":"SCRIPTPROC_ISXDOMAIN","features":[541]},{"name":"SCRIPTPROP_ABBREVIATE_GLOBALNAME_RESOLUTION","features":[541]},{"name":"SCRIPTPROP_BUILDNUMBER","features":[541]},{"name":"SCRIPTPROP_CATCHEXCEPTION","features":[541]},{"name":"SCRIPTPROP_CONVERSIONLCID","features":[541]},{"name":"SCRIPTPROP_DEBUGGER","features":[541]},{"name":"SCRIPTPROP_DELAYEDEVENTSINKING","features":[541]},{"name":"SCRIPTPROP_GCCONTROLSOFTCLOSE","features":[541]},{"name":"SCRIPTPROP_HACK_FIBERSUPPORT","features":[541]},{"name":"SCRIPTPROP_HACK_TRIDENTEVENTSINK","features":[541]},{"name":"SCRIPTPROP_HOSTKEEPALIVE","features":[541]},{"name":"SCRIPTPROP_HOSTSTACKREQUIRED","features":[541]},{"name":"SCRIPTPROP_INTEGERMODE","features":[541]},{"name":"SCRIPTPROP_INVOKEVERSIONING","features":[541]},{"name":"SCRIPTPROP_JITDEBUG","features":[541]},{"name":"SCRIPTPROP_MAJORVERSION","features":[541]},{"name":"SCRIPTPROP_MINORVERSION","features":[541]},{"name":"SCRIPTPROP_NAME","features":[541]},{"name":"SCRIPTPROP_SCRIPTSAREFULLYTRUSTED","features":[541]},{"name":"SCRIPTPROP_STRINGCOMPAREINSTANCE","features":[541]},{"name":"SCRIPTSTATE","features":[541]},{"name":"SCRIPTSTATE_CLOSED","features":[541]},{"name":"SCRIPTSTATE_CONNECTED","features":[541]},{"name":"SCRIPTSTATE_DISCONNECTED","features":[541]},{"name":"SCRIPTSTATE_INITIALIZED","features":[541]},{"name":"SCRIPTSTATE_STARTED","features":[541]},{"name":"SCRIPTSTATE_UNINITIALIZED","features":[541]},{"name":"SCRIPTSTAT_INSTRUCTION_COUNT","features":[541]},{"name":"SCRIPTSTAT_INTSTRUCTION_TIME","features":[541]},{"name":"SCRIPTSTAT_STATEMENT_COUNT","features":[541]},{"name":"SCRIPTSTAT_TOTAL_TIME","features":[541]},{"name":"SCRIPTTEXT_DELAYEXECUTION","features":[541]},{"name":"SCRIPTTEXT_HOSTMANAGESSOURCE","features":[541]},{"name":"SCRIPTTEXT_ISEXPRESSION","features":[541]},{"name":"SCRIPTTEXT_ISNONUSERCODE","features":[541]},{"name":"SCRIPTTEXT_ISPERSISTENT","features":[541]},{"name":"SCRIPTTEXT_ISVISIBLE","features":[541]},{"name":"SCRIPTTEXT_ISXDOMAIN","features":[541]},{"name":"SCRIPTTHREADSTATE","features":[541]},{"name":"SCRIPTTHREADSTATE_NOTINSCRIPT","features":[541]},{"name":"SCRIPTTHREADSTATE_RUNNING","features":[541]},{"name":"SCRIPTTRACEINFO","features":[541]},{"name":"SCRIPTTRACEINFO_COMCALLEND","features":[541]},{"name":"SCRIPTTRACEINFO_COMCALLSTART","features":[541]},{"name":"SCRIPTTRACEINFO_CREATEOBJEND","features":[541]},{"name":"SCRIPTTRACEINFO_CREATEOBJSTART","features":[541]},{"name":"SCRIPTTRACEINFO_GETOBJEND","features":[541]},{"name":"SCRIPTTRACEINFO_GETOBJSTART","features":[541]},{"name":"SCRIPTTRACEINFO_SCRIPTEND","features":[541]},{"name":"SCRIPTTRACEINFO_SCRIPTSTART","features":[541]},{"name":"SCRIPTTYPELIB_ISCONTROL","features":[541]},{"name":"SCRIPTTYPELIB_ISPERSISTENT","features":[541]},{"name":"SCRIPTUICHANDLING","features":[541]},{"name":"SCRIPTUICHANDLING_ALLOW","features":[541]},{"name":"SCRIPTUICHANDLING_NOUIDEFAULT","features":[541]},{"name":"SCRIPTUICHANDLING_NOUIERROR","features":[541]},{"name":"SCRIPTUICITEM","features":[541]},{"name":"SCRIPTUICITEM_INPUTBOX","features":[541]},{"name":"SCRIPTUICITEM_MSGBOX","features":[541]},{"name":"SCRIPT_CMPL_COMMIT","features":[541]},{"name":"SCRIPT_CMPL_ENUMLIST","features":[541]},{"name":"SCRIPT_CMPL_ENUM_TRIGGER","features":[541]},{"name":"SCRIPT_CMPL_GLOBALLIST","features":[541]},{"name":"SCRIPT_CMPL_MEMBERLIST","features":[541]},{"name":"SCRIPT_CMPL_MEMBER_TRIGGER","features":[541]},{"name":"SCRIPT_CMPL_NOLIST","features":[541]},{"name":"SCRIPT_CMPL_PARAMTIP","features":[541]},{"name":"SCRIPT_CMPL_PARAM_TRIGGER","features":[541]},{"name":"SCRIPT_DEBUGGER_OPTIONS","features":[541]},{"name":"SCRIPT_ENCODE_DEFAULT_LANGUAGE","features":[541]},{"name":"SCRIPT_ENCODE_NO_ASP_LANGUAGE","features":[541]},{"name":"SCRIPT_ENCODE_SECTION","features":[541]},{"name":"SCRIPT_ERROR_DEBUG_EXCEPTION_THROWN_KIND","features":[541]},{"name":"SCRIPT_E_PROPAGATE","features":[541]},{"name":"SCRIPT_E_RECORDED","features":[541]},{"name":"SCRIPT_E_REPORTED","features":[541]},{"name":"SCRIPT_INVOCATION_CONTEXT_TYPE","features":[541]},{"name":"SDO_ENABLE_FIRST_CHANCE_EXCEPTIONS","features":[541]},{"name":"SDO_ENABLE_LIBRARY_STACK_FRAME","features":[541]},{"name":"SDO_ENABLE_NONUSER_CODE_SUPPORT","features":[541]},{"name":"SDO_ENABLE_WEB_WORKER_SUPPORT","features":[541]},{"name":"SDO_NONE","features":[541]},{"name":"SICT_Event","features":[541]},{"name":"SICT_MutationObserverCheckpoint","features":[541]},{"name":"SICT_RequestAnimationFrame","features":[541]},{"name":"SICT_SetImmediate","features":[541]},{"name":"SICT_SetInterval","features":[541]},{"name":"SICT_SetTimeout","features":[541]},{"name":"SICT_ToString","features":[541]},{"name":"SICT_WWAExecAtPriority","features":[541]},{"name":"SICT_WWAExecUnsafeLocalFunction","features":[541]},{"name":"SOURCETEXT_ATTR_COMMENT","features":[541]},{"name":"SOURCETEXT_ATTR_FUNCTION_START","features":[541]},{"name":"SOURCETEXT_ATTR_HUMANTEXT","features":[541]},{"name":"SOURCETEXT_ATTR_IDENTIFIER","features":[541]},{"name":"SOURCETEXT_ATTR_KEYWORD","features":[541]},{"name":"SOURCETEXT_ATTR_MEMBERLOOKUP","features":[541]},{"name":"SOURCETEXT_ATTR_NONSOURCE","features":[541]},{"name":"SOURCETEXT_ATTR_NUMBER","features":[541]},{"name":"SOURCETEXT_ATTR_OPERATOR","features":[541]},{"name":"SOURCETEXT_ATTR_STRING","features":[541]},{"name":"SOURCETEXT_ATTR_THIS","features":[541]},{"name":"TEXT_DOCUMENT_ARRAY","features":[541]},{"name":"TEXT_DOC_ATTR_READONLY","features":[541]},{"name":"TEXT_DOC_ATTR_TYPE_PRIMARY","features":[541]},{"name":"TEXT_DOC_ATTR_TYPE_SCRIPT","features":[541]},{"name":"TEXT_DOC_ATTR_TYPE_WORKER","features":[541]},{"name":"THREAD_BLOCKED","features":[541]},{"name":"THREAD_OUT_OF_CONTEXT","features":[541]},{"name":"THREAD_STATE_RUNNING","features":[541]},{"name":"THREAD_STATE_SUSPENDED","features":[541]},{"name":"fasaCaseSensitive","features":[541]},{"name":"fasaPreferInternalHandler","features":[541]},{"name":"fasaSupportInternalHandler","features":[541]}],"554":[{"name":"ADDRESS_TYPE_INDEX_NOT_FOUND","features":[542]},{"name":"Ambiguous","features":[542]},{"name":"ArrayDimension","features":[542]},{"name":"BUSDATA","features":[542]},{"name":"CANNOT_ALLOCATE_MEMORY","features":[542]},{"name":"CKCL_DATA","features":[542]},{"name":"CKCL_LISTHEAD","features":[303,542]},{"name":"CLSID_DebugFailureAnalysisBasic","features":[542]},{"name":"CLSID_DebugFailureAnalysisKernel","features":[542]},{"name":"CLSID_DebugFailureAnalysisTarget","features":[542]},{"name":"CLSID_DebugFailureAnalysisUser","features":[542]},{"name":"CLSID_DebugFailureAnalysisWinCE","features":[542]},{"name":"CLSID_DebugFailureAnalysisXBox360","features":[542]},{"name":"CPU_INFO","features":[542]},{"name":"CPU_INFO_v1","features":[542]},{"name":"CPU_INFO_v2","features":[542]},{"name":"CROSS_PLATFORM_MAXIMUM_PROCESSORS","features":[542]},{"name":"CURRENT_KD_SECONDARY_VERSION","features":[542]},{"name":"CallingConventionCDecl","features":[542]},{"name":"CallingConventionFastCall","features":[542]},{"name":"CallingConventionKind","features":[542]},{"name":"CallingConventionStdCall","features":[542]},{"name":"CallingConventionSysCall","features":[542]},{"name":"CallingConventionThisCall","features":[542]},{"name":"CallingConventionUnknown","features":[542]},{"name":"CreateDataModelManager","features":[542]},{"name":"DBGKD_DEBUG_DATA_HEADER32","features":[542,309]},{"name":"DBGKD_DEBUG_DATA_HEADER64","features":[542,309]},{"name":"DBGKD_GET_VERSION32","features":[542]},{"name":"DBGKD_GET_VERSION64","features":[542]},{"name":"DBGKD_MAJOR_BIG","features":[542]},{"name":"DBGKD_MAJOR_CE","features":[542]},{"name":"DBGKD_MAJOR_COUNT","features":[542]},{"name":"DBGKD_MAJOR_EFI","features":[542]},{"name":"DBGKD_MAJOR_EXDI","features":[542]},{"name":"DBGKD_MAJOR_HYPERVISOR","features":[542]},{"name":"DBGKD_MAJOR_MIDORI","features":[542]},{"name":"DBGKD_MAJOR_NT","features":[542]},{"name":"DBGKD_MAJOR_NTBD","features":[542]},{"name":"DBGKD_MAJOR_SINGULARITY","features":[542]},{"name":"DBGKD_MAJOR_TNT","features":[542]},{"name":"DBGKD_MAJOR_TYPES","features":[542]},{"name":"DBGKD_MAJOR_XBOX","features":[542]},{"name":"DBGKD_SIMULATION_EXDI","features":[542]},{"name":"DBGKD_SIMULATION_NONE","features":[542]},{"name":"DBGKD_VERS_FLAG_DATA","features":[542]},{"name":"DBGKD_VERS_FLAG_HAL_IN_NTOS","features":[542]},{"name":"DBGKD_VERS_FLAG_HSS","features":[542]},{"name":"DBGKD_VERS_FLAG_MP","features":[542]},{"name":"DBGKD_VERS_FLAG_NOMM","features":[542]},{"name":"DBGKD_VERS_FLAG_PARTITIONS","features":[542]},{"name":"DBGKD_VERS_FLAG_PTR64","features":[542]},{"name":"DBG_DUMP_ADDRESS_AT_END","features":[542]},{"name":"DBG_DUMP_ADDRESS_OF_FIELD","features":[542]},{"name":"DBG_DUMP_ARRAY","features":[542]},{"name":"DBG_DUMP_BLOCK_RECURSE","features":[542]},{"name":"DBG_DUMP_CALL_FOR_EACH","features":[542]},{"name":"DBG_DUMP_COMPACT_OUT","features":[542]},{"name":"DBG_DUMP_COPY_TYPE_DATA","features":[542]},{"name":"DBG_DUMP_FIELD_ARRAY","features":[542]},{"name":"DBG_DUMP_FIELD_CALL_BEFORE_PRINT","features":[542]},{"name":"DBG_DUMP_FIELD_COPY_FIELD_DATA","features":[542]},{"name":"DBG_DUMP_FIELD_DEFAULT_STRING","features":[542]},{"name":"DBG_DUMP_FIELD_FULL_NAME","features":[542]},{"name":"DBG_DUMP_FIELD_GUID_STRING","features":[542]},{"name":"DBG_DUMP_FIELD_MULTI_STRING","features":[542]},{"name":"DBG_DUMP_FIELD_NO_CALLBACK_REQ","features":[542]},{"name":"DBG_DUMP_FIELD_NO_PRINT","features":[542]},{"name":"DBG_DUMP_FIELD_RECUR_ON_THIS","features":[542]},{"name":"DBG_DUMP_FIELD_RETURN_ADDRESS","features":[542]},{"name":"DBG_DUMP_FIELD_SIZE_IN_BITS","features":[542]},{"name":"DBG_DUMP_FIELD_UTF32_STRING","features":[542]},{"name":"DBG_DUMP_FIELD_WCHAR_STRING","features":[542]},{"name":"DBG_DUMP_FUNCTION_FORMAT","features":[542]},{"name":"DBG_DUMP_GET_SIZE_ONLY","features":[542]},{"name":"DBG_DUMP_LIST","features":[542]},{"name":"DBG_DUMP_MATCH_SIZE","features":[542]},{"name":"DBG_DUMP_NO_INDENT","features":[542]},{"name":"DBG_DUMP_NO_OFFSET","features":[542]},{"name":"DBG_DUMP_NO_PRINT","features":[542]},{"name":"DBG_DUMP_READ_PHYSICAL","features":[542]},{"name":"DBG_DUMP_VERBOSE","features":[542]},{"name":"DBG_FRAME_DEFAULT","features":[542]},{"name":"DBG_FRAME_IGNORE_INLINE","features":[542]},{"name":"DBG_RETURN_SUBTYPES","features":[542]},{"name":"DBG_RETURN_TYPE","features":[542]},{"name":"DBG_RETURN_TYPE_VALUES","features":[542]},{"name":"DBG_THREAD_ATTRIBUTES","features":[542]},{"name":"DEBUG_ADDSYNTHMOD_DEFAULT","features":[542]},{"name":"DEBUG_ADDSYNTHMOD_ZEROBASE","features":[542]},{"name":"DEBUG_ADDSYNTHSYM_DEFAULT","features":[542]},{"name":"DEBUG_ANALYSIS_PROCESSOR_INFO","features":[542]},{"name":"DEBUG_ANY_ID","features":[542]},{"name":"DEBUG_ASMOPT_DEFAULT","features":[542]},{"name":"DEBUG_ASMOPT_IGNORE_OUTPUT_WIDTH","features":[542]},{"name":"DEBUG_ASMOPT_NO_CODE_BYTES","features":[542]},{"name":"DEBUG_ASMOPT_SOURCE_LINE_NUMBER","features":[542]},{"name":"DEBUG_ASMOPT_VERBOSE","features":[542]},{"name":"DEBUG_ATTACH_DEFAULT","features":[542]},{"name":"DEBUG_ATTACH_EXDI_DRIVER","features":[542]},{"name":"DEBUG_ATTACH_EXISTING","features":[542]},{"name":"DEBUG_ATTACH_INSTALL_DRIVER","features":[542]},{"name":"DEBUG_ATTACH_INVASIVE_NO_INITIAL_BREAK","features":[542]},{"name":"DEBUG_ATTACH_INVASIVE_RESUME_PROCESS","features":[542]},{"name":"DEBUG_ATTACH_KERNEL_CONNECTION","features":[542]},{"name":"DEBUG_ATTACH_LOCAL_KERNEL","features":[542]},{"name":"DEBUG_ATTACH_NONINVASIVE","features":[542]},{"name":"DEBUG_ATTACH_NONINVASIVE_ALLOW_PARTIAL","features":[542]},{"name":"DEBUG_ATTACH_NONINVASIVE_NO_SUSPEND","features":[542]},{"name":"DEBUG_BREAKPOINT_ADDER_ONLY","features":[542]},{"name":"DEBUG_BREAKPOINT_CODE","features":[542]},{"name":"DEBUG_BREAKPOINT_DATA","features":[542]},{"name":"DEBUG_BREAKPOINT_DEFERRED","features":[542]},{"name":"DEBUG_BREAKPOINT_ENABLED","features":[542]},{"name":"DEBUG_BREAKPOINT_GO_ONLY","features":[542]},{"name":"DEBUG_BREAKPOINT_INLINE","features":[542]},{"name":"DEBUG_BREAKPOINT_ONE_SHOT","features":[542]},{"name":"DEBUG_BREAKPOINT_PARAMETERS","features":[542]},{"name":"DEBUG_BREAKPOINT_TIME","features":[542]},{"name":"DEBUG_BREAK_EXECUTE","features":[542]},{"name":"DEBUG_BREAK_IO","features":[542]},{"name":"DEBUG_BREAK_READ","features":[542]},{"name":"DEBUG_BREAK_WRITE","features":[542]},{"name":"DEBUG_CACHED_SYMBOL_INFO","features":[542]},{"name":"DEBUG_CDS_ALL","features":[542]},{"name":"DEBUG_CDS_DATA","features":[542]},{"name":"DEBUG_CDS_REFRESH","features":[542]},{"name":"DEBUG_CDS_REFRESH_ADDBREAKPOINT","features":[542]},{"name":"DEBUG_CDS_REFRESH_EVALUATE","features":[542]},{"name":"DEBUG_CDS_REFRESH_EXECUTE","features":[542]},{"name":"DEBUG_CDS_REFRESH_EXECUTECOMMANDFILE","features":[542]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP","features":[542]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP_PSEUDO","features":[542]},{"name":"DEBUG_CDS_REFRESH_REMOVEBREAKPOINT","features":[542]},{"name":"DEBUG_CDS_REFRESH_SETSCOPE","features":[542]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFRAMEBYINDEX","features":[542]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMJITDEBUGINFO","features":[542]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMSTOREDEVENT","features":[542]},{"name":"DEBUG_CDS_REFRESH_SETVALUE","features":[542]},{"name":"DEBUG_CDS_REFRESH_SETVALUE2","features":[542]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL","features":[542]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL2","features":[542]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUAL","features":[542]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUALUNCACHED","features":[542]},{"name":"DEBUG_CDS_REGISTERS","features":[542]},{"name":"DEBUG_CES_ALL","features":[542]},{"name":"DEBUG_CES_ASSEMBLY_OPTIONS","features":[542]},{"name":"DEBUG_CES_BREAKPOINTS","features":[542]},{"name":"DEBUG_CES_CODE_LEVEL","features":[542]},{"name":"DEBUG_CES_CURRENT_THREAD","features":[542]},{"name":"DEBUG_CES_EFFECTIVE_PROCESSOR","features":[542]},{"name":"DEBUG_CES_ENGINE_OPTIONS","features":[542]},{"name":"DEBUG_CES_EVENT_FILTERS","features":[542]},{"name":"DEBUG_CES_EXECUTION_STATUS","features":[542]},{"name":"DEBUG_CES_EXPRESSION_SYNTAX","features":[542]},{"name":"DEBUG_CES_EXTENSIONS","features":[542]},{"name":"DEBUG_CES_LOG_FILE","features":[542]},{"name":"DEBUG_CES_PROCESS_OPTIONS","features":[542]},{"name":"DEBUG_CES_RADIX","features":[542]},{"name":"DEBUG_CES_SYSTEMS","features":[542]},{"name":"DEBUG_CES_TEXT_REPLACEMENTS","features":[542]},{"name":"DEBUG_CLASS_IMAGE_FILE","features":[542]},{"name":"DEBUG_CLASS_KERNEL","features":[542]},{"name":"DEBUG_CLASS_UNINITIALIZED","features":[542]},{"name":"DEBUG_CLASS_USER_WINDOWS","features":[542]},{"name":"DEBUG_CLIENT_CDB","features":[542]},{"name":"DEBUG_CLIENT_CONTEXT","features":[542]},{"name":"DEBUG_CLIENT_KD","features":[542]},{"name":"DEBUG_CLIENT_NTKD","features":[542]},{"name":"DEBUG_CLIENT_NTSD","features":[542]},{"name":"DEBUG_CLIENT_UNKNOWN","features":[542]},{"name":"DEBUG_CLIENT_VSINT","features":[542]},{"name":"DEBUG_CLIENT_WINDBG","features":[542]},{"name":"DEBUG_CLIENT_WINIDE","features":[542]},{"name":"DEBUG_CMDEX_ADD_EVENT_STRING","features":[542]},{"name":"DEBUG_CMDEX_INVALID","features":[542]},{"name":"DEBUG_CMDEX_RESET_EVENT_STRINGS","features":[542]},{"name":"DEBUG_COMMAND_EXCEPTION_ID","features":[542]},{"name":"DEBUG_CONNECT_SESSION_DEFAULT","features":[542]},{"name":"DEBUG_CONNECT_SESSION_NO_ANNOUNCE","features":[542]},{"name":"DEBUG_CONNECT_SESSION_NO_VERSION","features":[542]},{"name":"DEBUG_CPU_MICROCODE_VERSION","features":[542]},{"name":"DEBUG_CPU_SPEED_INFO","features":[542]},{"name":"DEBUG_CREATE_PROCESS_OPTIONS","features":[542]},{"name":"DEBUG_CSS_ALL","features":[542]},{"name":"DEBUG_CSS_COLLAPSE_CHILDREN","features":[542]},{"name":"DEBUG_CSS_LOADS","features":[542]},{"name":"DEBUG_CSS_PATHS","features":[542]},{"name":"DEBUG_CSS_SCOPE","features":[542]},{"name":"DEBUG_CSS_SYMBOL_OPTIONS","features":[542]},{"name":"DEBUG_CSS_TYPE_OPTIONS","features":[542]},{"name":"DEBUG_CSS_UNLOADS","features":[542]},{"name":"DEBUG_CURRENT_DEFAULT","features":[542]},{"name":"DEBUG_CURRENT_DISASM","features":[542]},{"name":"DEBUG_CURRENT_REGISTERS","features":[542]},{"name":"DEBUG_CURRENT_SOURCE_LINE","features":[542]},{"name":"DEBUG_CURRENT_SYMBOL","features":[542]},{"name":"DEBUG_DATA_BASE_TRANSLATION_VIRTUAL_OFFSET","features":[542]},{"name":"DEBUG_DATA_BreakpointWithStatusAddr","features":[542]},{"name":"DEBUG_DATA_CmNtCSDVersionAddr","features":[542]},{"name":"DEBUG_DATA_DumpAttributes","features":[542]},{"name":"DEBUG_DATA_DumpFormatVersion","features":[542]},{"name":"DEBUG_DATA_DumpMmStorage","features":[542]},{"name":"DEBUG_DATA_DumpPowerState","features":[542]},{"name":"DEBUG_DATA_DumpWriterStatus","features":[542]},{"name":"DEBUG_DATA_DumpWriterVersion","features":[542]},{"name":"DEBUG_DATA_EtwpDebuggerData","features":[542]},{"name":"DEBUG_DATA_ExpNumberOfPagedPoolsAddr","features":[542]},{"name":"DEBUG_DATA_ExpPagedPoolDescriptorAddr","features":[542]},{"name":"DEBUG_DATA_ExpSystemResourcesListAddr","features":[542]},{"name":"DEBUG_DATA_IopErrorLogListHeadAddr","features":[542]},{"name":"DEBUG_DATA_KPCR_OFFSET","features":[542]},{"name":"DEBUG_DATA_KPRCB_OFFSET","features":[542]},{"name":"DEBUG_DATA_KTHREAD_OFFSET","features":[542]},{"name":"DEBUG_DATA_KdPrintBufferSizeAddr","features":[542]},{"name":"DEBUG_DATA_KdPrintCircularBufferAddr","features":[542]},{"name":"DEBUG_DATA_KdPrintCircularBufferEndAddr","features":[542]},{"name":"DEBUG_DATA_KdPrintCircularBufferPtrAddr","features":[542]},{"name":"DEBUG_DATA_KdPrintRolloverCountAddr","features":[542]},{"name":"DEBUG_DATA_KdPrintWritePointerAddr","features":[542]},{"name":"DEBUG_DATA_KeBugCheckCallbackListHeadAddr","features":[542]},{"name":"DEBUG_DATA_KeTimeIncrementAddr","features":[542]},{"name":"DEBUG_DATA_KeUserCallbackDispatcherAddr","features":[542]},{"name":"DEBUG_DATA_KernBase","features":[542]},{"name":"DEBUG_DATA_KernelVerifierAddr","features":[542]},{"name":"DEBUG_DATA_KiBugcheckDataAddr","features":[542]},{"name":"DEBUG_DATA_KiCallUserModeAddr","features":[542]},{"name":"DEBUG_DATA_KiNormalSystemCall","features":[542]},{"name":"DEBUG_DATA_KiProcessorBlockAddr","features":[542]},{"name":"DEBUG_DATA_MmAllocatedNonPagedPoolAddr","features":[542]},{"name":"DEBUG_DATA_MmAvailablePagesAddr","features":[542]},{"name":"DEBUG_DATA_MmBadPagesDetected","features":[542]},{"name":"DEBUG_DATA_MmDriverCommitAddr","features":[542]},{"name":"DEBUG_DATA_MmExtendedCommitAddr","features":[542]},{"name":"DEBUG_DATA_MmFreePageListHeadAddr","features":[542]},{"name":"DEBUG_DATA_MmHighestPhysicalPageAddr","features":[542]},{"name":"DEBUG_DATA_MmHighestUserAddressAddr","features":[542]},{"name":"DEBUG_DATA_MmLastUnloadedDriverAddr","features":[542]},{"name":"DEBUG_DATA_MmLoadedUserImageListAddr","features":[542]},{"name":"DEBUG_DATA_MmLowestPhysicalPageAddr","features":[542]},{"name":"DEBUG_DATA_MmMaximumNonPagedPoolInBytesAddr","features":[542]},{"name":"DEBUG_DATA_MmModifiedNoWritePageListHeadAddr","features":[542]},{"name":"DEBUG_DATA_MmModifiedPageListHeadAddr","features":[542]},{"name":"DEBUG_DATA_MmNonPagedPoolEndAddr","features":[542]},{"name":"DEBUG_DATA_MmNonPagedPoolStartAddr","features":[542]},{"name":"DEBUG_DATA_MmNonPagedSystemStartAddr","features":[542]},{"name":"DEBUG_DATA_MmNumberOfPagingFilesAddr","features":[542]},{"name":"DEBUG_DATA_MmNumberOfPhysicalPagesAddr","features":[542]},{"name":"DEBUG_DATA_MmPageSize","features":[542]},{"name":"DEBUG_DATA_MmPagedPoolCommitAddr","features":[542]},{"name":"DEBUG_DATA_MmPagedPoolEndAddr","features":[542]},{"name":"DEBUG_DATA_MmPagedPoolInformationAddr","features":[542]},{"name":"DEBUG_DATA_MmPagedPoolStartAddr","features":[542]},{"name":"DEBUG_DATA_MmPeakCommitmentAddr","features":[542]},{"name":"DEBUG_DATA_MmPfnDatabaseAddr","features":[542]},{"name":"DEBUG_DATA_MmPhysicalMemoryBlockAddr","features":[542]},{"name":"DEBUG_DATA_MmProcessCommitAddr","features":[542]},{"name":"DEBUG_DATA_MmResidentAvailablePagesAddr","features":[542]},{"name":"DEBUG_DATA_MmSessionBase","features":[542]},{"name":"DEBUG_DATA_MmSessionSize","features":[542]},{"name":"DEBUG_DATA_MmSharedCommitAddr","features":[542]},{"name":"DEBUG_DATA_MmSizeOfPagedPoolInBytesAddr","features":[542]},{"name":"DEBUG_DATA_MmSpecialPoolTagAddr","features":[542]},{"name":"DEBUG_DATA_MmStandbyPageListHeadAddr","features":[542]},{"name":"DEBUG_DATA_MmSubsectionBaseAddr","features":[542]},{"name":"DEBUG_DATA_MmSystemCacheEndAddr","features":[542]},{"name":"DEBUG_DATA_MmSystemCacheStartAddr","features":[542]},{"name":"DEBUG_DATA_MmSystemCacheWsAddr","features":[542]},{"name":"DEBUG_DATA_MmSystemParentTablePage","features":[542]},{"name":"DEBUG_DATA_MmSystemPtesEndAddr","features":[542]},{"name":"DEBUG_DATA_MmSystemPtesStartAddr","features":[542]},{"name":"DEBUG_DATA_MmSystemRangeStartAddr","features":[542]},{"name":"DEBUG_DATA_MmTotalCommitLimitAddr","features":[542]},{"name":"DEBUG_DATA_MmTotalCommitLimitMaximumAddr","features":[542]},{"name":"DEBUG_DATA_MmTotalCommittedPagesAddr","features":[542]},{"name":"DEBUG_DATA_MmTriageActionTakenAddr","features":[542]},{"name":"DEBUG_DATA_MmUnloadedDriversAddr","features":[542]},{"name":"DEBUG_DATA_MmUserProbeAddressAddr","features":[542]},{"name":"DEBUG_DATA_MmVerifierDataAddr","features":[542]},{"name":"DEBUG_DATA_MmVirtualTranslationBase","features":[542]},{"name":"DEBUG_DATA_MmZeroedPageListHeadAddr","features":[542]},{"name":"DEBUG_DATA_NonPagedPoolDescriptorAddr","features":[542]},{"name":"DEBUG_DATA_NtBuildLabAddr","features":[542]},{"name":"DEBUG_DATA_ObpRootDirectoryObjectAddr","features":[542]},{"name":"DEBUG_DATA_ObpTypeObjectTypeAddr","features":[542]},{"name":"DEBUG_DATA_OffsetEprocessDirectoryTableBase","features":[542]},{"name":"DEBUG_DATA_OffsetEprocessParentCID","features":[542]},{"name":"DEBUG_DATA_OffsetEprocessPeb","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadApcProcess","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadBStore","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadBStoreLimit","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadInitialStack","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadKernelStack","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadNextProcessor","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadState","features":[542]},{"name":"DEBUG_DATA_OffsetKThreadTeb","features":[542]},{"name":"DEBUG_DATA_OffsetPrcbCpuType","features":[542]},{"name":"DEBUG_DATA_OffsetPrcbCurrentThread","features":[542]},{"name":"DEBUG_DATA_OffsetPrcbDpcRoutine","features":[542]},{"name":"DEBUG_DATA_OffsetPrcbMhz","features":[542]},{"name":"DEBUG_DATA_OffsetPrcbNumber","features":[542]},{"name":"DEBUG_DATA_OffsetPrcbProcessorState","features":[542]},{"name":"DEBUG_DATA_OffsetPrcbVendorString","features":[542]},{"name":"DEBUG_DATA_PROCESSOR_IDENTIFICATION","features":[542]},{"name":"DEBUG_DATA_PROCESSOR_SPEED","features":[542]},{"name":"DEBUG_DATA_PaeEnabled","features":[542]},{"name":"DEBUG_DATA_PagingLevels","features":[542]},{"name":"DEBUG_DATA_PoolTrackTableAddr","features":[542]},{"name":"DEBUG_DATA_ProductType","features":[542]},{"name":"DEBUG_DATA_PsActiveProcessHeadAddr","features":[542]},{"name":"DEBUG_DATA_PsLoadedModuleListAddr","features":[542]},{"name":"DEBUG_DATA_PspCidTableAddr","features":[542]},{"name":"DEBUG_DATA_PteBase","features":[542]},{"name":"DEBUG_DATA_SPACE_BUS_DATA","features":[542]},{"name":"DEBUG_DATA_SPACE_CONTROL","features":[542]},{"name":"DEBUG_DATA_SPACE_COUNT","features":[542]},{"name":"DEBUG_DATA_SPACE_DEBUGGER_DATA","features":[542]},{"name":"DEBUG_DATA_SPACE_IO","features":[542]},{"name":"DEBUG_DATA_SPACE_MSR","features":[542]},{"name":"DEBUG_DATA_SPACE_PHYSICAL","features":[542]},{"name":"DEBUG_DATA_SPACE_VIRTUAL","features":[542]},{"name":"DEBUG_DATA_SavedContextAddr","features":[542]},{"name":"DEBUG_DATA_SharedUserData","features":[542]},{"name":"DEBUG_DATA_SizeEProcess","features":[542]},{"name":"DEBUG_DATA_SizeEThread","features":[542]},{"name":"DEBUG_DATA_SizePrcb","features":[542]},{"name":"DEBUG_DATA_SuiteMask","features":[542]},{"name":"DEBUG_DECODE_ERROR","features":[303,542]},{"name":"DEBUG_DEVICE_OBJECT_INFO","features":[303,542]},{"name":"DEBUG_DISASM_EFFECTIVE_ADDRESS","features":[542]},{"name":"DEBUG_DISASM_MATCHING_SYMBOLS","features":[542]},{"name":"DEBUG_DISASM_SOURCE_FILE_NAME","features":[542]},{"name":"DEBUG_DISASM_SOURCE_LINE_NUMBER","features":[542]},{"name":"DEBUG_DRIVER_OBJECT_INFO","features":[542]},{"name":"DEBUG_DUMP_ACTIVE","features":[542]},{"name":"DEBUG_DUMP_DEFAULT","features":[542]},{"name":"DEBUG_DUMP_FILE_BASE","features":[542]},{"name":"DEBUG_DUMP_FILE_LOAD_FAILED_INDEX","features":[542]},{"name":"DEBUG_DUMP_FILE_ORIGINAL_CAB_INDEX","features":[542]},{"name":"DEBUG_DUMP_FILE_PAGE_FILE_DUMP","features":[542]},{"name":"DEBUG_DUMP_FULL","features":[542]},{"name":"DEBUG_DUMP_IMAGE_FILE","features":[542]},{"name":"DEBUG_DUMP_SMALL","features":[542]},{"name":"DEBUG_DUMP_TRACE_LOG","features":[542]},{"name":"DEBUG_DUMP_WINDOWS_CE","features":[542]},{"name":"DEBUG_ECREATE_PROCESS_DEFAULT","features":[542]},{"name":"DEBUG_ECREATE_PROCESS_INHERIT_HANDLES","features":[542]},{"name":"DEBUG_ECREATE_PROCESS_USE_IMPLICIT_COMMAND_LINE","features":[542]},{"name":"DEBUG_ECREATE_PROCESS_USE_VERIFIER_FLAGS","features":[542]},{"name":"DEBUG_EINDEX_FROM_CURRENT","features":[542]},{"name":"DEBUG_EINDEX_FROM_END","features":[542]},{"name":"DEBUG_EINDEX_FROM_START","features":[542]},{"name":"DEBUG_EINDEX_NAME","features":[542]},{"name":"DEBUG_END_ACTIVE_DETACH","features":[542]},{"name":"DEBUG_END_ACTIVE_TERMINATE","features":[542]},{"name":"DEBUG_END_DISCONNECT","features":[542]},{"name":"DEBUG_END_PASSIVE","features":[542]},{"name":"DEBUG_END_REENTRANT","features":[542]},{"name":"DEBUG_ENGOPT_ALL","features":[542]},{"name":"DEBUG_ENGOPT_ALLOW_NETWORK_PATHS","features":[542]},{"name":"DEBUG_ENGOPT_ALLOW_READ_ONLY_BREAKPOINTS","features":[542]},{"name":"DEBUG_ENGOPT_DEBUGGING_SENSITIVE_DATA","features":[542]},{"name":"DEBUG_ENGOPT_DISABLESQM","features":[542]},{"name":"DEBUG_ENGOPT_DISABLE_EXECUTION_COMMANDS","features":[542]},{"name":"DEBUG_ENGOPT_DISABLE_MANAGED_SUPPORT","features":[542]},{"name":"DEBUG_ENGOPT_DISABLE_MODULE_SYMBOL_LOAD","features":[542]},{"name":"DEBUG_ENGOPT_DISABLE_STEPLINES_OPTIONS","features":[542]},{"name":"DEBUG_ENGOPT_DISALLOW_IMAGE_FILE_MAPPING","features":[542]},{"name":"DEBUG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[542]},{"name":"DEBUG_ENGOPT_DISALLOW_SHELL_COMMANDS","features":[542]},{"name":"DEBUG_ENGOPT_FAIL_INCOMPLETE_INFORMATION","features":[542]},{"name":"DEBUG_ENGOPT_FINAL_BREAK","features":[542]},{"name":"DEBUG_ENGOPT_IGNORE_DBGHELP_VERSION","features":[542]},{"name":"DEBUG_ENGOPT_IGNORE_EXTENSION_VERSIONS","features":[542]},{"name":"DEBUG_ENGOPT_IGNORE_LOADER_EXCEPTIONS","features":[542]},{"name":"DEBUG_ENGOPT_INITIAL_BREAK","features":[542]},{"name":"DEBUG_ENGOPT_INITIAL_MODULE_BREAK","features":[542]},{"name":"DEBUG_ENGOPT_KD_QUIET_MODE","features":[542]},{"name":"DEBUG_ENGOPT_NO_EXECUTE_REPEAT","features":[542]},{"name":"DEBUG_ENGOPT_PREFER_DML","features":[542]},{"name":"DEBUG_ENGOPT_PREFER_TRACE_FILES","features":[542]},{"name":"DEBUG_ENGOPT_RESOLVE_SHADOWED_VARIABLES","features":[542]},{"name":"DEBUG_ENGOPT_SYNCHRONIZE_BREAKPOINTS","features":[542]},{"name":"DEBUG_EVENT_BREAKPOINT","features":[542]},{"name":"DEBUG_EVENT_CHANGE_DEBUGGEE_STATE","features":[542]},{"name":"DEBUG_EVENT_CHANGE_ENGINE_STATE","features":[542]},{"name":"DEBUG_EVENT_CHANGE_SYMBOL_STATE","features":[542]},{"name":"DEBUG_EVENT_CONTEXT","features":[542]},{"name":"DEBUG_EVENT_CREATE_PROCESS","features":[542]},{"name":"DEBUG_EVENT_CREATE_THREAD","features":[542]},{"name":"DEBUG_EVENT_EXCEPTION","features":[542]},{"name":"DEBUG_EVENT_EXIT_PROCESS","features":[542]},{"name":"DEBUG_EVENT_EXIT_THREAD","features":[542]},{"name":"DEBUG_EVENT_LOAD_MODULE","features":[542]},{"name":"DEBUG_EVENT_SERVICE_EXCEPTION","features":[542]},{"name":"DEBUG_EVENT_SESSION_STATUS","features":[542]},{"name":"DEBUG_EVENT_SYSTEM_ERROR","features":[542]},{"name":"DEBUG_EVENT_UNLOAD_MODULE","features":[542]},{"name":"DEBUG_EXCEPTION_FILTER_PARAMETERS","features":[542]},{"name":"DEBUG_EXECUTE_DEFAULT","features":[542]},{"name":"DEBUG_EXECUTE_ECHO","features":[542]},{"name":"DEBUG_EXECUTE_EVENT","features":[542]},{"name":"DEBUG_EXECUTE_EXTENSION","features":[542]},{"name":"DEBUG_EXECUTE_HOTKEY","features":[542]},{"name":"DEBUG_EXECUTE_INTERNAL","features":[542]},{"name":"DEBUG_EXECUTE_MENU","features":[542]},{"name":"DEBUG_EXECUTE_NOT_LOGGED","features":[542]},{"name":"DEBUG_EXECUTE_NO_REPEAT","features":[542]},{"name":"DEBUG_EXECUTE_SCRIPT","features":[542]},{"name":"DEBUG_EXECUTE_TOOLBAR","features":[542]},{"name":"DEBUG_EXECUTE_USER_CLICKED","features":[542]},{"name":"DEBUG_EXECUTE_USER_TYPED","features":[542]},{"name":"DEBUG_EXEC_FLAGS_NONBLOCK","features":[542]},{"name":"DEBUG_EXPR_CPLUSPLUS","features":[542]},{"name":"DEBUG_EXPR_MASM","features":[542]},{"name":"DEBUG_EXTENSION_AT_ENGINE","features":[542]},{"name":"DEBUG_EXTINIT_HAS_COMMAND_HELP","features":[542]},{"name":"DEBUG_EXT_PVALUE_DEFAULT","features":[542]},{"name":"DEBUG_EXT_PVTYPE_IS_POINTER","features":[542]},{"name":"DEBUG_EXT_PVTYPE_IS_VALUE","features":[542]},{"name":"DEBUG_EXT_QVALUE_DEFAULT","features":[542]},{"name":"DEBUG_FAILURE_TYPE","features":[542]},{"name":"DEBUG_FA_ENTRY_ANSI_STRING","features":[542]},{"name":"DEBUG_FA_ENTRY_ANSI_STRINGs","features":[542]},{"name":"DEBUG_FA_ENTRY_ARRAY","features":[542]},{"name":"DEBUG_FA_ENTRY_EXTENSION_CMD","features":[542]},{"name":"DEBUG_FA_ENTRY_INSTRUCTION_OFFSET","features":[542]},{"name":"DEBUG_FA_ENTRY_NO_TYPE","features":[542]},{"name":"DEBUG_FA_ENTRY_POINTER","features":[542]},{"name":"DEBUG_FA_ENTRY_STRUCTURED_DATA","features":[542]},{"name":"DEBUG_FA_ENTRY_ULONG","features":[542]},{"name":"DEBUG_FA_ENTRY_ULONG64","features":[542]},{"name":"DEBUG_FA_ENTRY_UNICODE_STRING","features":[542]},{"name":"DEBUG_FILTER_BREAK","features":[542]},{"name":"DEBUG_FILTER_CREATE_PROCESS","features":[542]},{"name":"DEBUG_FILTER_CREATE_THREAD","features":[542]},{"name":"DEBUG_FILTER_DEBUGGEE_OUTPUT","features":[542]},{"name":"DEBUG_FILTER_EXIT_PROCESS","features":[542]},{"name":"DEBUG_FILTER_EXIT_THREAD","features":[542]},{"name":"DEBUG_FILTER_GO_HANDLED","features":[542]},{"name":"DEBUG_FILTER_GO_NOT_HANDLED","features":[542]},{"name":"DEBUG_FILTER_IGNORE","features":[542]},{"name":"DEBUG_FILTER_INITIAL_BREAKPOINT","features":[542]},{"name":"DEBUG_FILTER_INITIAL_MODULE_LOAD","features":[542]},{"name":"DEBUG_FILTER_LOAD_MODULE","features":[542]},{"name":"DEBUG_FILTER_OUTPUT","features":[542]},{"name":"DEBUG_FILTER_REMOVE","features":[542]},{"name":"DEBUG_FILTER_SECOND_CHANCE_BREAK","features":[542]},{"name":"DEBUG_FILTER_SYSTEM_ERROR","features":[542]},{"name":"DEBUG_FILTER_UNLOAD_MODULE","features":[542]},{"name":"DEBUG_FIND_SOURCE_BEST_MATCH","features":[542]},{"name":"DEBUG_FIND_SOURCE_DEFAULT","features":[542]},{"name":"DEBUG_FIND_SOURCE_FULL_PATH","features":[542]},{"name":"DEBUG_FIND_SOURCE_NO_SRCSRV","features":[542]},{"name":"DEBUG_FIND_SOURCE_TOKEN_LOOKUP","features":[542]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM","features":[542]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM_STRICT","features":[542]},{"name":"DEBUG_FLR_ACPI","features":[542]},{"name":"DEBUG_FLR_ACPI_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_ACPI_EXTENSION","features":[542]},{"name":"DEBUG_FLR_ACPI_OBJECT","features":[542]},{"name":"DEBUG_FLR_ACPI_RESCONFLICT","features":[542]},{"name":"DEBUG_FLR_ADDITIONAL_DEBUGTEXT","features":[542]},{"name":"DEBUG_FLR_ADDITIONAL_XML","features":[542]},{"name":"DEBUG_FLR_ADD_PROCESS_IN_BUCKET","features":[542]},{"name":"DEBUG_FLR_ALUREON","features":[542]},{"name":"DEBUG_FLR_ANALYSIS_REPROCESS","features":[542]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_ELAPSED_TIME","features":[542]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_HOST","features":[542]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_TIME","features":[542]},{"name":"DEBUG_FLR_ANALYSIS_VERSION","features":[542]},{"name":"DEBUG_FLR_ANALYZABLE_POOL_CORRUPTION","features":[542]},{"name":"DEBUG_FLR_APPKILL","features":[542]},{"name":"DEBUG_FLR_APPLICATION_VERIFIER_LOADED","features":[542]},{"name":"DEBUG_FLR_APPS_NOT_TERMINATED","features":[542]},{"name":"DEBUG_FLR_APPVERIFERFLAGS","features":[542]},{"name":"DEBUG_FLR_ARM_WRITE_AV_CAVEAT","features":[542]},{"name":"DEBUG_FLR_ASSERT_DATA","features":[542]},{"name":"DEBUG_FLR_ASSERT_FILE","features":[542]},{"name":"DEBUG_FLR_ASSERT_INSTRUCTION","features":[542]},{"name":"DEBUG_FLR_BADPAGES_DETECTED","features":[542]},{"name":"DEBUG_FLR_BAD_HANDLE","features":[542]},{"name":"DEBUG_FLR_BAD_MEMORY_REFERENCE","features":[542]},{"name":"DEBUG_FLR_BAD_OBJECT_REFERENCE","features":[542]},{"name":"DEBUG_FLR_BAD_STACK","features":[542]},{"name":"DEBUG_FLR_BLOCKED_THREAD0","features":[542]},{"name":"DEBUG_FLR_BLOCKED_THREAD1","features":[542]},{"name":"DEBUG_FLR_BLOCKED_THREAD2","features":[542]},{"name":"DEBUG_FLR_BLOCKING_PROCESSID","features":[542]},{"name":"DEBUG_FLR_BLOCKING_THREAD","features":[542]},{"name":"DEBUG_FLR_BOOST_FOLLOWUP_TO_SPECIFIC","features":[542]},{"name":"DEBUG_FLR_BOOTSTAT","features":[542]},{"name":"DEBUG_FLR_BOOTSTAT_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_CHECKSUM","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_FLAVOR_STR","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_FUNCTION_STR","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_FUNC_OFFSET","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_IMAGE_STR","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_MODULE_STR","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_MODVER_STR","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_OFFSET","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_PREFIX_STR","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_PRIVATE","features":[542]},{"name":"DEBUG_FLR_BUCKET_ID_TIMEDATESTAMP","features":[542]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER","features":[542]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER_IDTAG","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_CODE","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_DESC","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_P1","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_P2","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_P3","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_P4","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_SPECIFIER","features":[542]},{"name":"DEBUG_FLR_BUGCHECK_STR","features":[542]},{"name":"DEBUG_FLR_BUILDNAME_IN_BUCKET","features":[542]},{"name":"DEBUG_FLR_BUILDOSVER_STR_deprecated","features":[542]},{"name":"DEBUG_FLR_BUILD_OS_FULL_VERSION_STRING","features":[542]},{"name":"DEBUG_FLR_BUILD_VERSION_STRING","features":[542]},{"name":"DEBUG_FLR_CANCELLATION_NOT_SUPPORTED","features":[542]},{"name":"DEBUG_FLR_CHKIMG_EXTENSION","features":[542]},{"name":"DEBUG_FLR_CHPE_PROCESS","features":[542]},{"name":"DEBUG_FLR_CLIENT_DRIVER","features":[542]},{"name":"DEBUG_FLR_COLLECT_DATA_FOR_BUCKET","features":[542]},{"name":"DEBUG_FLR_COMPUTER_NAME","features":[542]},{"name":"DEBUG_FLR_CONTEXT","features":[542]},{"name":"DEBUG_FLR_CONTEXT_COMMAND","features":[542]},{"name":"DEBUG_FLR_CONTEXT_FLAGS","features":[542]},{"name":"DEBUG_FLR_CONTEXT_FOLLOWUP_INDEX","features":[542]},{"name":"DEBUG_FLR_CONTEXT_ID","features":[542]},{"name":"DEBUG_FLR_CONTEXT_METADATA","features":[542]},{"name":"DEBUG_FLR_CONTEXT_ORDER","features":[542]},{"name":"DEBUG_FLR_CONTEXT_RESTORE_COMMAND","features":[542]},{"name":"DEBUG_FLR_CONTEXT_SYSTEM","features":[542]},{"name":"DEBUG_FLR_CORRUPTING_POOL_ADDRESS","features":[542]},{"name":"DEBUG_FLR_CORRUPTING_POOL_TAG","features":[542]},{"name":"DEBUG_FLR_CORRUPT_MODULE_LIST","features":[542]},{"name":"DEBUG_FLR_CORRUPT_SERVICE_TABLE","features":[542]},{"name":"DEBUG_FLR_COVERAGE_BUILD","features":[542]},{"name":"DEBUG_FLR_CPU_COUNT","features":[542]},{"name":"DEBUG_FLR_CPU_FAMILY","features":[542]},{"name":"DEBUG_FLR_CPU_MICROCODE_VERSION","features":[542]},{"name":"DEBUG_FLR_CPU_MICROCODE_ZERO_INTEL","features":[542]},{"name":"DEBUG_FLR_CPU_MODEL","features":[542]},{"name":"DEBUG_FLR_CPU_OVERCLOCKED","features":[542]},{"name":"DEBUG_FLR_CPU_SPEED","features":[542]},{"name":"DEBUG_FLR_CPU_STEPPING","features":[542]},{"name":"DEBUG_FLR_CPU_VENDOR","features":[542]},{"name":"DEBUG_FLR_CRITICAL_PROCESS","features":[542]},{"name":"DEBUG_FLR_CRITICAL_PROCESS_REPORTGUID","features":[542]},{"name":"DEBUG_FLR_CRITICAL_SECTION","features":[542]},{"name":"DEBUG_FLR_CURRENT_IRQL","features":[542]},{"name":"DEBUG_FLR_CUSTOMER_CRASH_COUNT","features":[542]},{"name":"DEBUG_FLR_CUSTOMREPORTTAG","features":[542]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MAX","features":[542]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MIN","features":[542]},{"name":"DEBUG_FLR_CUSTOM_COMMAND","features":[542]},{"name":"DEBUG_FLR_CUSTOM_COMMAND_OUTPUT","features":[542]},{"name":"DEBUG_FLR_DEADLOCK_INPROC","features":[542]},{"name":"DEBUG_FLR_DEADLOCK_XPROC","features":[542]},{"name":"DEBUG_FLR_DEBUG_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_DEFAULT_BUCKET_ID","features":[542]},{"name":"DEBUG_FLR_DEFAULT_SOLUTION_ID","features":[542]},{"name":"DEBUG_FLR_DERIVED_WAIT_CHAIN","features":[542]},{"name":"DEBUG_FLR_DESKTOP_HEAP_MISSING","features":[542]},{"name":"DEBUG_FLR_DETOURED_IMAGE","features":[542]},{"name":"DEBUG_FLR_DEVICE_NODE","features":[542]},{"name":"DEBUG_FLR_DEVICE_OBJECT","features":[542]},{"name":"DEBUG_FLR_DISKIO_READ_FAILURE","features":[542]},{"name":"DEBUG_FLR_DISKIO_WRITE_FAILURE","features":[542]},{"name":"DEBUG_FLR_DISKSEC_ISSUEDESCSTRING_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_MFGID_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_MODEL_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_ORGID_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_DATASIZE_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_OFFSET_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_TOTSIZE_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_DATASIZE_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_OFFSET_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_TOTSIZE_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_REASON_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISKSEC_TOTALSIZE_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_DISK_HARDWARE_ERROR","features":[542]},{"name":"DEBUG_FLR_DPC_RUNTIME","features":[542]},{"name":"DEBUG_FLR_DPC_STACK_BASE","features":[542]},{"name":"DEBUG_FLR_DPC_TIMELIMIT","features":[542]},{"name":"DEBUG_FLR_DPC_TIMEOUT_TYPE","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWAREID","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_ID","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_NAME","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_ID_BUS_TYPE","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_REV_ID","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBSYS_ID","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBVENDOR_NAME","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_ID","features":[542]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_NAME","features":[542]},{"name":"DEBUG_FLR_DRIVER_OBJECT","features":[542]},{"name":"DEBUG_FLR_DRIVER_VERIFIER_IO_VIOLATION_TYPE","features":[542]},{"name":"DEBUG_FLR_DRIVER_XML_DESCRIPTION","features":[542]},{"name":"DEBUG_FLR_DRIVER_XML_MANUFACTURER","features":[542]},{"name":"DEBUG_FLR_DRIVER_XML_PRODUCTNAME","features":[542]},{"name":"DEBUG_FLR_DRIVER_XML_VERSION","features":[542]},{"name":"DEBUG_FLR_DRVPOWERSTATE_SUBCODE","features":[542]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTA","features":[542]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTW","features":[542]},{"name":"DEBUG_FLR_DUMP_CLASS","features":[542]},{"name":"DEBUG_FLR_DUMP_FILE_ATTRIBUTES","features":[542]},{"name":"DEBUG_FLR_DUMP_FLAGS","features":[542]},{"name":"DEBUG_FLR_DUMP_QUALIFIER","features":[542]},{"name":"DEBUG_FLR_DUMP_TYPE","features":[542]},{"name":"DEBUG_FLR_END_MESSAGE","features":[542]},{"name":"DEBUG_FLR_ERESOURCE_ADDRESS","features":[542]},{"name":"DEBUG_FLR_EVENT_CODE_DATA_MISMATCH","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_CODE","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR_deprecated","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_CONTEXT_RECURSION","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_DOESNOT_MATCH_CODE","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_MODULE_INFO","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER1","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER2","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER3","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER4","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_RECORD","features":[542]},{"name":"DEBUG_FLR_EXCEPTION_STR","features":[542]},{"name":"DEBUG_FLR_EXECUTE_ADDRESS","features":[542]},{"name":"DEBUG_FLR_FAILED_INSTRUCTION_ADDRESS","features":[542]},{"name":"DEBUG_FLR_FAILURE_ANALYSIS_SOURCE","features":[542]},{"name":"DEBUG_FLR_FAILURE_BUCKET_ID","features":[542]},{"name":"DEBUG_FLR_FAILURE_DISPLAY_NAME","features":[542]},{"name":"DEBUG_FLR_FAILURE_EXCEPTION_CODE","features":[542]},{"name":"DEBUG_FLR_FAILURE_FUNCTION_NAME","features":[542]},{"name":"DEBUG_FLR_FAILURE_ID_HASH","features":[542]},{"name":"DEBUG_FLR_FAILURE_ID_HASH_STRING","features":[542]},{"name":"DEBUG_FLR_FAILURE_ID_REPORT_LINK","features":[542]},{"name":"DEBUG_FLR_FAILURE_IMAGE_NAME","features":[542]},{"name":"DEBUG_FLR_FAILURE_LIST","features":[542]},{"name":"DEBUG_FLR_FAILURE_MODULE_NAME","features":[542]},{"name":"DEBUG_FLR_FAILURE_PROBLEM_CLASS","features":[542]},{"name":"DEBUG_FLR_FAILURE_SYMBOL_NAME","features":[542]},{"name":"DEBUG_FLR_FAULTING_INSTR_CODE","features":[542]},{"name":"DEBUG_FLR_FAULTING_IP","features":[542]},{"name":"DEBUG_FLR_FAULTING_LOCAL_VARIABLE_NAME","features":[542]},{"name":"DEBUG_FLR_FAULTING_MODULE","features":[542]},{"name":"DEBUG_FLR_FAULTING_SERVICE_NAME","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CODE","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_COMMIT_ID","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CONTROL_TYPE","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_FILE","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE_NUMBER","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_PROJECT","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_ID","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_URL","features":[542]},{"name":"DEBUG_FLR_FAULTING_SOURCE_SRV_COMMAND","features":[542]},{"name":"DEBUG_FLR_FAULTING_THREAD","features":[542]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_M","features":[542]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MF","features":[542]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MFO","features":[542]},{"name":"DEBUG_FLR_FA_ADHOC_ANALYSIS_ITEMS","features":[542]},{"name":"DEBUG_FLR_FA_PERF_DATA","features":[542]},{"name":"DEBUG_FLR_FA_PERF_ELAPSED_MS","features":[542]},{"name":"DEBUG_FLR_FA_PERF_ITEM","features":[542]},{"name":"DEBUG_FLR_FA_PERF_ITEM_NAME","features":[542]},{"name":"DEBUG_FLR_FA_PERF_ITERATIONS","features":[542]},{"name":"DEBUG_FLR_FEATURE_PATH","features":[542]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS","features":[542]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS","features":[542]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_FILE_ID","features":[542]},{"name":"DEBUG_FLR_FILE_IN_CAB","features":[542]},{"name":"DEBUG_FLR_FILE_LINE","features":[542]},{"name":"DEBUG_FLR_FIXED_IN_OSVERSION","features":[542]},{"name":"DEBUG_FLR_FOLLOWUP_BEFORE_RETRACER","features":[542]},{"name":"DEBUG_FLR_FOLLOWUP_BUCKET_ID","features":[542]},{"name":"DEBUG_FLR_FOLLOWUP_CONTEXT","features":[542]},{"name":"DEBUG_FLR_FOLLOWUP_DRIVER_ONLY","features":[542]},{"name":"DEBUG_FLR_FOLLOWUP_IP","features":[542]},{"name":"DEBUG_FLR_FOLLOWUP_NAME","features":[542]},{"name":"DEBUG_FLR_FRAME_ONE_INVALID","features":[542]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_NAME","features":[542]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_PATH","features":[542]},{"name":"DEBUG_FLR_FRAME_SOURCE_LINE_NUMBER","features":[542]},{"name":"DEBUG_FLR_FREED_POOL_TAG","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_ANALYSIS_TEXT","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_COOKIES_MATCH_EXH","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_COOKIE","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBP","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBPESP","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_FALSE_POSITIVE","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE_COMPLEMENT","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_FUNCTION","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_FRAMEID","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_THREADID","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_MEMORY_READ_ERROR","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_MISSING_ESTABLISHER_FRAME","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_MODULE_COOKIE","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_NOT_UP2DATE","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_OFF_BY_ONE_OVERRUN","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL_NAME","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVELY_CORRUPTED_EBPESP","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVE_BUFFER_OVERFLOW","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_PROBABLY_NOT_USING_GS","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_RA_SMASHED","features":[542]},{"name":"DEBUG_FLR_GSFAILURE_UP2DATE_UNKNOWN","features":[542]},{"name":"DEBUG_FLR_HANDLE_VALUE","features":[542]},{"name":"DEBUG_FLR_HANG","features":[542]},{"name":"DEBUG_FLR_HANG_DATA_NEEDED","features":[542]},{"name":"DEBUG_FLR_HANG_REPORT_THREAD_IS_IDLE","features":[542]},{"name":"DEBUG_FLR_HARDWARE_BUCKET_TAG","features":[542]},{"name":"DEBUG_FLR_HARDWARE_ERROR","features":[542]},{"name":"DEBUG_FLR_HIGH_NONPAGED_POOL_USAGE","features":[542]},{"name":"DEBUG_FLR_HIGH_PAGED_POOL_USAGE","features":[542]},{"name":"DEBUG_FLR_HIGH_PROCESS_COMMIT","features":[542]},{"name":"DEBUG_FLR_HIGH_SERVICE_COMMIT","features":[542]},{"name":"DEBUG_FLR_HIGH_SHARED_COMMIT_USAGE","features":[542]},{"name":"DEBUG_FLR_HOLDINFO","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_ACTIVE_HOLD_COUNT","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_HOLD","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_IGNORE","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_HISTORIC_HOLD_COUNT","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_LAST_SEEN_HOLD_DATE","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_MANUAL_HOLD","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_MAX_HOLD_LIMIT","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_NOTIFICATION_ALIASES","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_RECOMMEND_HOLD","features":[542]},{"name":"DEBUG_FLR_HOLDINFO_TENET_SOCRE","features":[542]},{"name":"DEBUG_FLR_IGNORE_BUCKET_ID_OFFSET","features":[542]},{"name":"DEBUG_FLR_IGNORE_LARGE_MODULE_CORRUPTION","features":[542]},{"name":"DEBUG_FLR_IGNORE_MODULE_HARDWARE_ID","features":[542]},{"name":"DEBUG_FLR_IMAGE_CLASS","features":[542]},{"name":"DEBUG_FLR_IMAGE_NAME","features":[542]},{"name":"DEBUG_FLR_IMAGE_TIMESTAMP","features":[542]},{"name":"DEBUG_FLR_IMAGE_VERSION","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_CLIFAULT","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_FREE_BLOCK","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_MODULE_NOT_IN_LIST","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_PAGED_CODE","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_RESERVED_BLOCK","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_UNLOADED_MODULE","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_VM_MAPPED_MODULE","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_MISALIGNED","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_NOT_IN_STREAM","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_HEAP","features":[542]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_STACK","features":[542]},{"name":"DEBUG_FLR_INSTR_SESSION_POOL_TAG","features":[542]},{"name":"DEBUG_FLR_INTEL_CPU_BIOS_UPGRADE_NEEDED","features":[542]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_CONTINUABLE","features":[542]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_HITCOUNT","features":[542]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_STATUS_TEXT","features":[542]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_URL","features":[542]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG","features":[542]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG_DATABASE_STRING","features":[542]},{"name":"DEBUG_FLR_INTERNAL_RESPONSE","features":[542]},{"name":"DEBUG_FLR_INTERNAL_SOLUTION_TEXT","features":[542]},{"name":"DEBUG_FLR_INVALID","features":[542]},{"name":"DEBUG_FLR_INVALID_DPC_FOUND","features":[542]},{"name":"DEBUG_FLR_INVALID_HEAP_ADDRESS","features":[542]},{"name":"DEBUG_FLR_INVALID_KERNEL_CONTEXT","features":[542]},{"name":"DEBUG_FLR_INVALID_OPCODE","features":[542]},{"name":"DEBUG_FLR_INVALID_PFN","features":[542]},{"name":"DEBUG_FLR_INVALID_USEREVENT","features":[542]},{"name":"DEBUG_FLR_INVALID_USER_CONTEXT","features":[542]},{"name":"DEBUG_FLR_IOCONTROL_CODE","features":[542]},{"name":"DEBUG_FLR_IOSB_ADDRESS","features":[542]},{"name":"DEBUG_FLR_IO_ERROR_CODE","features":[542]},{"name":"DEBUG_FLR_IRP_ADDRESS","features":[542]},{"name":"DEBUG_FLR_IRP_CANCEL_ROUTINE","features":[542]},{"name":"DEBUG_FLR_IRP_MAJOR_FN","features":[542]},{"name":"DEBUG_FLR_IRP_MINOR_FN","features":[542]},{"name":"DEBUG_FLR_KERNEL","features":[542]},{"name":"DEBUG_FLR_KERNEL_LOG_PROCESS_NAME","features":[542]},{"name":"DEBUG_FLR_KERNEL_LOG_STATUS","features":[542]},{"name":"DEBUG_FLR_KERNEL_VERIFIER_ENABLED","features":[542]},{"name":"DEBUG_FLR_KEYVALUE_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_KEY_VALUES_STRING","features":[542]},{"name":"DEBUG_FLR_KEY_VALUES_VARIANT","features":[542]},{"name":"DEBUG_FLR_KM_MODULE_LIST","features":[542]},{"name":"DEBUG_FLR_LARGE_TICK_INCREMENT","features":[542]},{"name":"DEBUG_FLR_LAST_CONTROL_TRANSFER","features":[542]},{"name":"DEBUG_FLR_LCIE_ISO_AVAILABLE","features":[542]},{"name":"DEBUG_FLR_LEAKED_SESSION_POOL_TAG","features":[542]},{"name":"DEBUG_FLR_LEGACY_PAGE_TABLE_ACCESS","features":[542]},{"name":"DEBUG_FLR_LIVE_KERNEL_DUMP","features":[542]},{"name":"DEBUG_FLR_LOADERLOCK_BLOCKED_API","features":[542]},{"name":"DEBUG_FLR_LOADERLOCK_IN_WAIT_CHAIN","features":[542]},{"name":"DEBUG_FLR_LOADERLOCK_OWNER_API","features":[542]},{"name":"DEBUG_FLR_LOP_STACKHASH","features":[542]},{"name":"DEBUG_FLR_LOW_SYSTEM_COMMIT","features":[542]},{"name":"DEBUG_FLR_MACHINE_INFO_SHA1_HASH","features":[542]},{"name":"DEBUG_FLR_MANAGED_ANALYSIS_PROVIDER","features":[542]},{"name":"DEBUG_FLR_MANAGED_BITNESS_MISMATCH","features":[542]},{"name":"DEBUG_FLR_MANAGED_CODE","features":[542]},{"name":"DEBUG_FLR_MANAGED_ENGINE_MODULE","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_ADDRESS","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CALLSTACK","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CMD","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CONTEXT_MESSAGE","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_HRESULT","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_ADDRESS","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_CALLSTACK","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_HRESULT","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_MESSAGE","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_TYPE","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE_deprecated","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_ADDRESS","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_CALLSTACK","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_HRESULT","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_MESSAGE","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_TYPE","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_OBJECT","features":[542]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_TYPE","features":[542]},{"name":"DEBUG_FLR_MANAGED_FRAME_CHAIN_CORRUPTION","features":[542]},{"name":"DEBUG_FLR_MANAGED_HRESULT_STRING","features":[542]},{"name":"DEBUG_FLR_MANAGED_KERNEL_DEBUGGER","features":[542]},{"name":"DEBUG_FLR_MANAGED_OBJECT","features":[542]},{"name":"DEBUG_FLR_MANAGED_OBJECT_NAME","features":[542]},{"name":"DEBUG_FLR_MANAGED_STACK_COMMAND","features":[542]},{"name":"DEBUG_FLR_MANAGED_STACK_STRING","features":[542]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_CALLSTACK","features":[542]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_STACKOBJECTS","features":[542]},{"name":"DEBUG_FLR_MANAGED_THREAD_ID","features":[542]},{"name":"DEBUG_FLR_MANUAL_BREAKIN","features":[542]},{"name":"DEBUG_FLR_MARKER_BUCKET","features":[542]},{"name":"DEBUG_FLR_MARKER_FILE","features":[542]},{"name":"DEBUG_FLR_MARKER_MODULE_FILE","features":[542]},{"name":"DEBUG_FLR_MASK_ALL","features":[542]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_STATUS","features":[542]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_TIME","features":[542]},{"name":"DEBUG_FLR_MEMORY_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_MEMORY_CORRUPTION_SIGNATURE","features":[542]},{"name":"DEBUG_FLR_MEMORY_CORRUPTOR","features":[542]},{"name":"DEBUG_FLR_MILCORE_BREAK","features":[542]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT","features":[542]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT_OF_THIS_TYPE","features":[542]},{"name":"DEBUG_FLR_MISSING_CLR_SYMBOL","features":[542]},{"name":"DEBUG_FLR_MISSING_IMPORTANT_SYMBOL","features":[542]},{"name":"DEBUG_FLR_MM_INTERNAL_CODE","features":[542]},{"name":"DEBUG_FLR_MODLIST_SHA1_HASH","features":[542]},{"name":"DEBUG_FLR_MODLIST_TSCHKSUM_SHA1_HASH","features":[542]},{"name":"DEBUG_FLR_MODLIST_UNLOADED_SHA1_HASH","features":[542]},{"name":"DEBUG_FLR_MODULE_BUCKET_ID","features":[542]},{"name":"DEBUG_FLR_MODULE_LIST","features":[542]},{"name":"DEBUG_FLR_MODULE_NAME","features":[542]},{"name":"DEBUG_FLR_MODULE_PRODUCTNAME","features":[542]},{"name":"DEBUG_FLR_MOD_SPECIFIC_DATA_ONLY","features":[542]},{"name":"DEBUG_FLR_NO_ARCH_IN_BUCKET","features":[542]},{"name":"DEBUG_FLR_NO_BUGCHECK_IN_BUCKET","features":[542]},{"name":"DEBUG_FLR_NO_IMAGE_IN_BUCKET","features":[542]},{"name":"DEBUG_FLR_NO_IMAGE_TIMESTAMP_IN_BUCKET","features":[542]},{"name":"DEBUG_FLR_NTGLOBALFLAG","features":[542]},{"name":"DEBUG_FLR_ON_DPC_STACK","features":[542]},{"name":"DEBUG_FLR_ORIGINAL_CAB_NAME","features":[542]},{"name":"DEBUG_FLR_OSBUILD_deprecated","features":[542]},{"name":"DEBUG_FLR_OS_BRANCH","features":[542]},{"name":"DEBUG_FLR_OS_BUILD","features":[542]},{"name":"DEBUG_FLR_OS_BUILD_LAYERS_XML","features":[542]},{"name":"DEBUG_FLR_OS_BUILD_STRING","features":[542]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_ISO","features":[542]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_LAB","features":[542]},{"name":"DEBUG_FLR_OS_FLAVOR","features":[542]},{"name":"DEBUG_FLR_OS_LOCALE","features":[542]},{"name":"DEBUG_FLR_OS_LOCALE_LCID","features":[542]},{"name":"DEBUG_FLR_OS_MAJOR","features":[542]},{"name":"DEBUG_FLR_OS_MINOR","features":[542]},{"name":"DEBUG_FLR_OS_NAME","features":[542]},{"name":"DEBUG_FLR_OS_NAME_EDITION","features":[542]},{"name":"DEBUG_FLR_OS_PLATFORM_ARCH","features":[542]},{"name":"DEBUG_FLR_OS_PLATFORM_ID","features":[542]},{"name":"DEBUG_FLR_OS_PRODUCT_TYPE","features":[542]},{"name":"DEBUG_FLR_OS_REVISION","features":[542]},{"name":"DEBUG_FLR_OS_SERVICEPACK","features":[542]},{"name":"DEBUG_FLR_OS_SERVICEPACK_deprecated","features":[542]},{"name":"DEBUG_FLR_OS_SKU","features":[542]},{"name":"DEBUG_FLR_OS_SUITE_MASK","features":[542]},{"name":"DEBUG_FLR_OS_VERSION","features":[542]},{"name":"DEBUG_FLR_OS_VERSION_deprecated","features":[542]},{"name":"DEBUG_FLR_OVERLAPPED_MODULE","features":[542]},{"name":"DEBUG_FLR_OVERLAPPED_UNLOADED_MODULE","features":[542]},{"name":"DEBUG_FLR_PAGE_HASH_ERRORS","features":[542]},{"name":"DEBUG_FLR_PARAM_TYPE","features":[542]},{"name":"DEBUG_FLR_PG_MISMATCH","features":[542]},{"name":"DEBUG_FLR_PHONE_APPID","features":[542]},{"name":"DEBUG_FLR_PHONE_APPVERSION","features":[542]},{"name":"DEBUG_FLR_PHONE_BOOTLOADERVERSION","features":[542]},{"name":"DEBUG_FLR_PHONE_BUILDBRANCH","features":[542]},{"name":"DEBUG_FLR_PHONE_BUILDER","features":[542]},{"name":"DEBUG_FLR_PHONE_BUILDNUMBER","features":[542]},{"name":"DEBUG_FLR_PHONE_BUILDTIMESTAMP","features":[542]},{"name":"DEBUG_FLR_PHONE_FIRMWAREREVISION","features":[542]},{"name":"DEBUG_FLR_PHONE_HARDWAREREVISION","features":[542]},{"name":"DEBUG_FLR_PHONE_LCID","features":[542]},{"name":"DEBUG_FLR_PHONE_MCCMNC","features":[542]},{"name":"DEBUG_FLR_PHONE_OPERATOR","features":[542]},{"name":"DEBUG_FLR_PHONE_QFE","features":[542]},{"name":"DEBUG_FLR_PHONE_RADIOHARDWAREREVISION","features":[542]},{"name":"DEBUG_FLR_PHONE_RADIOSOFTWAREREVISION","features":[542]},{"name":"DEBUG_FLR_PHONE_RAM","features":[542]},{"name":"DEBUG_FLR_PHONE_REPORTGUID","features":[542]},{"name":"DEBUG_FLR_PHONE_REPORTTIMESTAMP","features":[542]},{"name":"DEBUG_FLR_PHONE_ROMVERSION","features":[542]},{"name":"DEBUG_FLR_PHONE_SKUID","features":[542]},{"name":"DEBUG_FLR_PHONE_SOCVERSION","features":[542]},{"name":"DEBUG_FLR_PHONE_SOURCE","features":[542]},{"name":"DEBUG_FLR_PHONE_SOURCEEXTERNAL","features":[542]},{"name":"DEBUG_FLR_PHONE_UIF_APPID","features":[542]},{"name":"DEBUG_FLR_PHONE_UIF_APPNAME","features":[542]},{"name":"DEBUG_FLR_PHONE_UIF_CATEGORY","features":[542]},{"name":"DEBUG_FLR_PHONE_UIF_COMMENT","features":[542]},{"name":"DEBUG_FLR_PHONE_UIF_ORIGIN","features":[542]},{"name":"DEBUG_FLR_PHONE_USERALIAS","features":[542]},{"name":"DEBUG_FLR_PHONE_VERSIONMAJOR","features":[542]},{"name":"DEBUG_FLR_PHONE_VERSIONMINOR","features":[542]},{"name":"DEBUG_FLR_PLATFORM_BUCKET_STRING","features":[542]},{"name":"DEBUG_FLR_PNP","features":[542]},{"name":"DEBUG_FLR_PNP_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS","features":[542]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA","features":[542]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA_DEPRECATED","features":[542]},{"name":"DEBUG_FLR_POISONED_TB","features":[542]},{"name":"DEBUG_FLR_POOL_ADDRESS","features":[542]},{"name":"DEBUG_FLR_POOL_CORRUPTOR","features":[542]},{"name":"DEBUG_FLR_POSSIBLE_INVALID_CONTROL_TRANSFER","features":[542]},{"name":"DEBUG_FLR_POSSIBLE_STACK_OVERFLOW","features":[542]},{"name":"DEBUG_FLR_POWERREQUEST_ADDRESS","features":[542]},{"name":"DEBUG_FLR_PO_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_PREVIOUS_IRQL","features":[542]},{"name":"DEBUG_FLR_PREVIOUS_MODE","features":[542]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS","features":[542]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS_DATA","features":[542]},{"name":"DEBUG_FLR_PROBLEM_CLASSES","features":[542]},{"name":"DEBUG_FLR_PROBLEM_CODE_PATH_HASH","features":[542]},{"name":"DEBUG_FLR_PROCESSES_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_PROCESSOR_ID","features":[542]},{"name":"DEBUG_FLR_PROCESSOR_INFO","features":[542]},{"name":"DEBUG_FLR_PROCESS_BAM_CURRENT_THROTTLED","features":[542]},{"name":"DEBUG_FLR_PROCESS_BAM_PREVIOUS_THROTTLED","features":[542]},{"name":"DEBUG_FLR_PROCESS_INFO","features":[542]},{"name":"DEBUG_FLR_PROCESS_NAME","features":[542]},{"name":"DEBUG_FLR_PROCESS_OBJECT","features":[542]},{"name":"DEBUG_FLR_PROCESS_PRODUCTNAME","features":[542]},{"name":"DEBUG_FLR_RAISED_IRQL_USER_FAULT","features":[542]},{"name":"DEBUG_FLR_READ_ADDRESS","features":[542]},{"name":"DEBUG_FLR_RECURRING_STACK","features":[542]},{"name":"DEBUG_FLR_REGISTRYTXT_SOURCE","features":[542]},{"name":"DEBUG_FLR_REGISTRYTXT_STRESS_ID","features":[542]},{"name":"DEBUG_FLR_REGISTRY_DATA","features":[542]},{"name":"DEBUG_FLR_REPORT_INFO_CREATION_TIME","features":[542]},{"name":"DEBUG_FLR_REPORT_INFO_GUID","features":[542]},{"name":"DEBUG_FLR_REPORT_INFO_SOURCE","features":[542]},{"name":"DEBUG_FLR_REQUESTED_IRQL","features":[542]},{"name":"DEBUG_FLR_RESERVED","features":[542]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE","features":[542]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE_STR","features":[542]},{"name":"DEBUG_FLR_SCM","features":[542]},{"name":"DEBUG_FLR_SCM_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY","features":[542]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_CONTROLCODE","features":[542]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_SERVICENAME","features":[542]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_STARTTIME","features":[542]},{"name":"DEBUG_FLR_SEARCH_HANG","features":[542]},{"name":"DEBUG_FLR_SECURITY_COOKIES","features":[542]},{"name":"DEBUG_FLR_SERVICE","features":[542]},{"name":"DEBUG_FLR_SERVICETABLE_MODIFIED","features":[542]},{"name":"DEBUG_FLR_SERVICE_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_SERVICE_DEPENDONGROUP","features":[542]},{"name":"DEBUG_FLR_SERVICE_DEPENDONSERVICE","features":[542]},{"name":"DEBUG_FLR_SERVICE_DESCRIPTION","features":[542]},{"name":"DEBUG_FLR_SERVICE_DISPLAYNAME","features":[542]},{"name":"DEBUG_FLR_SERVICE_GROUP","features":[542]},{"name":"DEBUG_FLR_SERVICE_NAME","features":[542]},{"name":"DEBUG_FLR_SHOW_ERRORLOG","features":[542]},{"name":"DEBUG_FLR_SHOW_LCIE_ISO_DATA","features":[542]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELSVC_INSTANCES","features":[542]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELWP_INSTANCES","features":[542]},{"name":"DEBUG_FLR_SINGLE_BIT_ERROR","features":[542]},{"name":"DEBUG_FLR_SINGLE_BIT_PFN_PAGE_ERROR","features":[542]},{"name":"DEBUG_FLR_SKIP_CORRUPT_MODULE_DETECTION","features":[542]},{"name":"DEBUG_FLR_SKIP_MODULE_SPECIFIC_BUCKET_INFO","features":[542]},{"name":"DEBUG_FLR_SKIP_STACK_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_SM_BUFFER_HASH","features":[542]},{"name":"DEBUG_FLR_SM_COMPRESSION_FORMAT","features":[542]},{"name":"DEBUG_FLR_SM_ONEBIT_SOLUTION_COUNT","features":[542]},{"name":"DEBUG_FLR_SM_SOURCE_OFFSET","features":[542]},{"name":"DEBUG_FLR_SM_SOURCE_PFN1","features":[542]},{"name":"DEBUG_FLR_SM_SOURCE_PFN2","features":[542]},{"name":"DEBUG_FLR_SM_SOURCE_SIZE","features":[542]},{"name":"DEBUG_FLR_SM_TARGET_PFN","features":[542]},{"name":"DEBUG_FLR_SOLUTION_ID","features":[542]},{"name":"DEBUG_FLR_SOLUTION_TYPE","features":[542]},{"name":"DEBUG_FLR_SPECIAL_POOL_CORRUPTION_TYPE","features":[542]},{"name":"DEBUG_FLR_STACK","features":[542]},{"name":"DEBUG_FLR_STACKHASH_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION","features":[542]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION_SIZE","features":[542]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE","features":[542]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE_SIZE","features":[542]},{"name":"DEBUG_FLR_STACKUSAGE_RECURSION_COUNT","features":[542]},{"name":"DEBUG_FLR_STACK_COMMAND","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME","features":[542]},{"name":"DEBUG_FLR_STACK_FRAMES","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_FLAGS","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_FUNCTION","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_IMAGE","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_INSTRUCTION","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE_BASE","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_NUMBER","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_SRC","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL","features":[542]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL_OFFSET","features":[542]},{"name":"DEBUG_FLR_STACK_OVERFLOW","features":[542]},{"name":"DEBUG_FLR_STACK_POINTER_ERROR","features":[542]},{"name":"DEBUG_FLR_STACK_POINTER_MISALIGNED","features":[542]},{"name":"DEBUG_FLR_STACK_POINTER_ONEBIT_ERROR","features":[542]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_M","features":[542]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MF","features":[542]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MFO","features":[542]},{"name":"DEBUG_FLR_STACK_TEXT","features":[542]},{"name":"DEBUG_FLR_STATUS_CODE","features":[542]},{"name":"DEBUG_FLR_STORAGE","features":[542]},{"name":"DEBUG_FLR_STORAGE_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_STORAGE_ISSUEDESCSTRING","features":[542]},{"name":"DEBUG_FLR_STORAGE_MFGID","features":[542]},{"name":"DEBUG_FLR_STORAGE_MODEL","features":[542]},{"name":"DEBUG_FLR_STORAGE_ORGID","features":[542]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_DATASIZE","features":[542]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_OFFSET","features":[542]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_TOTSIZE","features":[542]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_DATASIZE","features":[542]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_OFFSET","features":[542]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_TOTSIZE","features":[542]},{"name":"DEBUG_FLR_STORAGE_REASON","features":[542]},{"name":"DEBUG_FLR_STORAGE_TOTALSIZE","features":[542]},{"name":"DEBUG_FLR_STORE_DEVELOPER_NAME","features":[542]},{"name":"DEBUG_FLR_STORE_IS_MICROSOFT_PRODUCT","features":[542]},{"name":"DEBUG_FLR_STORE_LEGACY_PARENT_PRODUCT_ID","features":[542]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_PHONE_PRODUCT_ID","features":[542]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_STORE_PRODUCT_ID","features":[542]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_360_PRODUCT_ID","features":[542]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_ONE_PRODUCT_ID","features":[542]},{"name":"DEBUG_FLR_STORE_PACKAGE_FAMILY_NAME","features":[542]},{"name":"DEBUG_FLR_STORE_PACKAGE_IDENTITY_NAME","features":[542]},{"name":"DEBUG_FLR_STORE_PREFERRED_SKU_ID","features":[542]},{"name":"DEBUG_FLR_STORE_PRIMARY_PARENT_PRODUCT_ID","features":[542]},{"name":"DEBUG_FLR_STORE_PRODUCT_DESCRIPTION","features":[542]},{"name":"DEBUG_FLR_STORE_PRODUCT_DISPLAY_NAME","features":[542]},{"name":"DEBUG_FLR_STORE_PRODUCT_EXTENDED_NAME","features":[542]},{"name":"DEBUG_FLR_STORE_PRODUCT_ID","features":[542]},{"name":"DEBUG_FLR_STORE_PUBLISHER_CERTIFICATE_NAME","features":[542]},{"name":"DEBUG_FLR_STORE_PUBLISHER_ID","features":[542]},{"name":"DEBUG_FLR_STORE_PUBLISHER_NAME","features":[542]},{"name":"DEBUG_FLR_STORE_URL_APP","features":[542]},{"name":"DEBUG_FLR_STORE_URL_APPHEALTH","features":[542]},{"name":"DEBUG_FLR_STORE_XBOX_TITLE_ID","features":[542]},{"name":"DEBUG_FLR_STREAM_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_SUSPECT_CODE_PATH_HASH","features":[542]},{"name":"DEBUG_FLR_SVCHOST","features":[542]},{"name":"DEBUG_FLR_SVCHOST_GROUP","features":[542]},{"name":"DEBUG_FLR_SVCHOST_IMAGEPATH","features":[542]},{"name":"DEBUG_FLR_SVCHOST_SERVICEDLL","features":[542]},{"name":"DEBUG_FLR_SWITCH_PROCESS_CONTEXT","features":[542]},{"name":"DEBUG_FLR_SYMBOL_FROM_RAW_STACK_ADDRESS","features":[542]},{"name":"DEBUG_FLR_SYMBOL_NAME","features":[542]},{"name":"DEBUG_FLR_SYMBOL_ON_RAW_STACK","features":[542]},{"name":"DEBUG_FLR_SYMBOL_ROUTINE_NAME","features":[542]},{"name":"DEBUG_FLR_SYMBOL_STACK_INDEX","features":[542]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_MANUFACTURER","features":[542]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_PRODUCT","features":[542]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_VERSION","features":[542]},{"name":"DEBUG_FLR_SYSINFO_BIOS_DATE","features":[542]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VENDOR","features":[542]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VERSION","features":[542]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_MANUFACTURER","features":[542]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_PRODUCT","features":[542]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_SKU","features":[542]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_VERSION","features":[542]},{"name":"DEBUG_FLR_SYSTEM_LOCALE_deprecated","features":[542]},{"name":"DEBUG_FLR_SYSXML_CHECKSUM","features":[542]},{"name":"DEBUG_FLR_SYSXML_LOCALEID","features":[542]},{"name":"DEBUG_FLR_TARGET_MODE","features":[542]},{"name":"DEBUG_FLR_TARGET_TIME","features":[542]},{"name":"DEBUG_FLR_TESTRESULTGUID","features":[542]},{"name":"DEBUG_FLR_TESTRESULTSERVER","features":[542]},{"name":"DEBUG_FLR_THREADPOOL_WAITER","features":[542]},{"name":"DEBUG_FLR_THREAD_ATTRIBUTES","features":[542]},{"name":"DEBUG_FLR_TIMELINE_ANALYSIS","features":[542]},{"name":"DEBUG_FLR_TIMELINE_TIMES","features":[542]},{"name":"DEBUG_FLR_TRAP_FRAME","features":[542]},{"name":"DEBUG_FLR_TRAP_FRAME_RECURSION","features":[542]},{"name":"DEBUG_FLR_TRIAGER_OS_BUILD_NAME","features":[542]},{"name":"DEBUG_FLR_TSS","features":[542]},{"name":"DEBUG_FLR_TWO_BIT_ERROR","features":[542]},{"name":"DEBUG_FLR_ULS_SCRIPT_EXCEPTION","features":[542]},{"name":"DEBUG_FLR_UNALIGNED_STACK_POINTER","features":[542]},{"name":"DEBUG_FLR_UNKNOWN","features":[542]},{"name":"DEBUG_FLR_UNKNOWN_MODULE","features":[542]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_FOLLOWUP_NAME","features":[542]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS","features":[542]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS_DATA","features":[542]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_STACK","features":[542]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_SYMBOL_NAME","features":[542]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_THREAD","features":[542]},{"name":"DEBUG_FLR_UNUSED001","features":[542]},{"name":"DEBUG_FLR_URLS","features":[542]},{"name":"DEBUG_FLR_URLS_DISCOVERED","features":[542]},{"name":"DEBUG_FLR_URL_ENTRY","features":[542]},{"name":"DEBUG_FLR_URL_LCIE_ENTRY","features":[542]},{"name":"DEBUG_FLR_URL_URLMON_ENTRY","features":[542]},{"name":"DEBUG_FLR_URL_XMLHTTPREQ_SYNC_ENTRY","features":[542]},{"name":"DEBUG_FLR_USBPORT_OCADATA","features":[542]},{"name":"DEBUG_FLR_USER","features":[542]},{"name":"DEBUG_FLR_USERBREAK_PEB_PAGEDOUT","features":[542]},{"name":"DEBUG_FLR_USERMODE_DATA","features":[542]},{"name":"DEBUG_FLR_USER_GLOBAL_ATTRIBUTES","features":[542]},{"name":"DEBUG_FLR_USER_LCID","features":[542]},{"name":"DEBUG_FLR_USER_LCID_STR","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_EVENTTYPE","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_INDEX","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P0","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P1","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P2","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P3","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P4","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P5","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P6","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P7","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTCREATIONTIME","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTGUID","features":[542]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_STRING","features":[542]},{"name":"DEBUG_FLR_USER_NAME","features":[542]},{"name":"DEBUG_FLR_USER_PROBLEM_CLASSES","features":[542]},{"name":"DEBUG_FLR_USER_THREAD_ATTRIBUTES","features":[542]},{"name":"DEBUG_FLR_USE_DEFAULT_CONTEXT","features":[542]},{"name":"DEBUG_FLR_VERIFIER_DRIVER_ENTRY","features":[542]},{"name":"DEBUG_FLR_VERIFIER_FOUND_DEADLOCK","features":[542]},{"name":"DEBUG_FLR_VERIFIER_STOP","features":[542]},{"name":"DEBUG_FLR_VIDEO_TDR_CONTEXT","features":[542]},{"name":"DEBUG_FLR_VIRTUAL_MACHINE","features":[542]},{"name":"DEBUG_FLR_WAIT_CHAIN_COMMAND","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_00","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_01","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_02","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_03","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_04","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_05","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_06","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_07","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_08","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_09","features":[542]},{"name":"DEBUG_FLR_WATSON_GENERIC_EVENT_NAME","features":[542]},{"name":"DEBUG_FLR_WATSON_IBUCKET","features":[542]},{"name":"DEBUG_FLR_WATSON_IBUCKETTABLE_S1_RESP","features":[542]},{"name":"DEBUG_FLR_WATSON_IBUCKET_S1_RESP","features":[542]},{"name":"DEBUG_FLR_WATSON_MODULE","features":[542]},{"name":"DEBUG_FLR_WATSON_MODULE_OFFSET","features":[542]},{"name":"DEBUG_FLR_WATSON_MODULE_TIMESTAMP","features":[542]},{"name":"DEBUG_FLR_WATSON_MODULE_VERSION","features":[542]},{"name":"DEBUG_FLR_WATSON_PROCESS_TIMESTAMP","features":[542]},{"name":"DEBUG_FLR_WATSON_PROCESS_VERSION","features":[542]},{"name":"DEBUG_FLR_WCT_XML_AVAILABLE","features":[542]},{"name":"DEBUG_FLR_WERCOLLECTION_DEFAULTCOLLECTION_FAILURE","features":[542]},{"name":"DEBUG_FLR_WERCOLLECTION_MINIDUMP_WRITE_FAILURE","features":[542]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSHEAPDUMP_REQUEST_FAILURE","features":[542]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSTERMINATED","features":[542]},{"name":"DEBUG_FLR_WER_DATA_COLLECTION_INFO","features":[542]},{"name":"DEBUG_FLR_WER_MACHINE_ID","features":[542]},{"name":"DEBUG_FLR_WHEA_ERROR_RECORD","features":[542]},{"name":"DEBUG_FLR_WINLOGON_BLACKBOX","features":[542]},{"name":"DEBUG_FLR_WMI_QUERY_DATA","features":[542]},{"name":"DEBUG_FLR_WORKER_ROUTINE","features":[542]},{"name":"DEBUG_FLR_WORK_ITEM","features":[542]},{"name":"DEBUG_FLR_WORK_QUEUE_ITEM","features":[542]},{"name":"DEBUG_FLR_WQL_EVENTLOG_INFO","features":[542]},{"name":"DEBUG_FLR_WQL_EVENT_COUNT","features":[542]},{"name":"DEBUG_FLR_WRITE_ADDRESS","features":[542]},{"name":"DEBUG_FLR_WRONG_SYMBOLS","features":[542]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_SIZE","features":[542]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_TIMESTAMP","features":[542]},{"name":"DEBUG_FLR_XBOX_LIVE_ENVIRONMENT","features":[542]},{"name":"DEBUG_FLR_XBOX_SYSTEM_CRASHTIME","features":[542]},{"name":"DEBUG_FLR_XBOX_SYSTEM_UPTIME","features":[542]},{"name":"DEBUG_FLR_XCS_PATH","features":[542]},{"name":"DEBUG_FLR_XDV_HELP_LINK","features":[542]},{"name":"DEBUG_FLR_XDV_RULE_INFO","features":[542]},{"name":"DEBUG_FLR_XDV_STATE_VARIABLE","features":[542]},{"name":"DEBUG_FLR_XDV_VIOLATED_CONDITION","features":[542]},{"name":"DEBUG_FLR_XHCI_FIRMWARE_VERSION","features":[542]},{"name":"DEBUG_FLR_XML_APPLICATION_NAME","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D1VALUE","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D2VALUE","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_DOVALUE","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_FRAME_NUMBER","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_LIST","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_NAME","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_THREAD_INDEX","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE","features":[542]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE_TYPE","features":[542]},{"name":"DEBUG_FLR_XML_ENCODED_OFFSETS","features":[542]},{"name":"DEBUG_FLR_XML_EVENTTYPE","features":[542]},{"name":"DEBUG_FLR_XML_GLOBALATTRIBUTE_LIST","features":[542]},{"name":"DEBUG_FLR_XML_MODERN_ASYNC_REQUEST_OUTSTANDING","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_BASE","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_CHECKSUM","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_COMPANY_NAME","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_DRIVER_GROUP","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_DESCRIPTION","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_FLAGS","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_FILE_VER","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_PROD_VER","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_NAME","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_PATH","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INDEX","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INTERNAL_NAME","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_NAME","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ON_STACK","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ORIG_FILE_NAME","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_PRODUCT_NAME","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SIZE","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_FILE_VER","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_PROD_VER","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMBOL_TYPE","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_DETAIL","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_ERROR","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_SEC","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_STATUS","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_DETAIL","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_ERROR","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_SEC","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_STATUS","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_TIMESTAMP","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_INFO_UNLOADED","features":[542]},{"name":"DEBUG_FLR_XML_MODULE_LIST","features":[542]},{"name":"DEBUG_FLR_XML_PACKAGE_MONIKER","features":[542]},{"name":"DEBUG_FLR_XML_PACKAGE_NAME","features":[542]},{"name":"DEBUG_FLR_XML_PACKAGE_RELATIVE_APPLICATION_ID","features":[542]},{"name":"DEBUG_FLR_XML_PACKAGE_VERSION","features":[542]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS","features":[542]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_FRAME_NUMBER","features":[542]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_LIST","features":[542]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_NAME","features":[542]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_THREAD_INDEX","features":[542]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE","features":[542]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE_TYPE","features":[542]},{"name":"DEBUG_FLR_XML_STACK_FRAME_TRIAGE_STATUS","features":[542]},{"name":"DEBUG_FLR_XML_SYSTEMINFO","features":[542]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMANUFACTURER","features":[542]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMARKER","features":[542]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMODEL","features":[542]},{"name":"DEBUG_FLR_XPROC_DUMP_AVAILABLE","features":[542]},{"name":"DEBUG_FLR_XPROC_HANG","features":[542]},{"name":"DEBUG_FLR_ZEROED_STACK","features":[542]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_ALL_IMAGES","features":[542]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_FILES","features":[542]},{"name":"DEBUG_FORMAT_DEFAULT","features":[542]},{"name":"DEBUG_FORMAT_NO_OVERWRITE","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_ADD_AVX_XSTATE_CONTEXT","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_CODE_SEGMENTS","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_DATA_SEGMENTS","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_MEMORY","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_PATHS","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_TRIAGE","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_AUXILIARY_STATE","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY_INFO","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_HANDLE_DATA","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_IGNORE_INACCESSIBLE_MEM","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_INDIRECT_MEMORY","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_IPT_TRACE","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_MODULE_HEADERS","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_AUXILIARY_STATE","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_OPTIONAL_DATA","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_PRIVATE_READ_WRITE_MEMORY","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_PROCESS_THREAD_DATA","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_SCAN_PARTIAL_PAGES","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_THREAD_INFO","features":[542]},{"name":"DEBUG_FORMAT_USER_SMALL_UNLOADED_MODULES","features":[542]},{"name":"DEBUG_FORMAT_WRITE_CAB","features":[542]},{"name":"DEBUG_FRAME_DEFAULT","features":[542]},{"name":"DEBUG_FRAME_IGNORE_INLINE","features":[542]},{"name":"DEBUG_GETFNENT_DEFAULT","features":[542]},{"name":"DEBUG_GETFNENT_RAW_ENTRY_ONLY","features":[542]},{"name":"DEBUG_GETMOD_DEFAULT","features":[542]},{"name":"DEBUG_GETMOD_NO_LOADED_MODULES","features":[542]},{"name":"DEBUG_GETMOD_NO_UNLOADED_MODULES","features":[542]},{"name":"DEBUG_GET_PROC_DEFAULT","features":[542]},{"name":"DEBUG_GET_PROC_FULL_MATCH","features":[542]},{"name":"DEBUG_GET_PROC_ONLY_MATCH","features":[542]},{"name":"DEBUG_GET_PROC_SERVICE_NAME","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IN","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_DOT_COMMAND","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_EXTENSION_COMMAND","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_SYMBOL","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_DOT_COMMANDS","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_EXTENSION_COMMANDS","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_SYMBOLS","features":[542]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_OUT","features":[542]},{"name":"DEBUG_GSEL_ALLOW_HIGHER","features":[542]},{"name":"DEBUG_GSEL_ALLOW_LOWER","features":[542]},{"name":"DEBUG_GSEL_DEFAULT","features":[542]},{"name":"DEBUG_GSEL_INLINE_CALLSITE","features":[542]},{"name":"DEBUG_GSEL_NEAREST_ONLY","features":[542]},{"name":"DEBUG_GSEL_NO_SYMBOL_LOADS","features":[542]},{"name":"DEBUG_HANDLE_DATA_BASIC","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_ALL_HANDLE_OPERATIONS","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_BASIC","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_HANDLE_COUNT","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_EVENT_1","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_1","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_2","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_1","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_2","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SECTION_1","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SEMAPHORE_1","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_THREAD_1","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME_WIDE","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_PER_HANDLE_OPERATIONS","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME","features":[542]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME_WIDE","features":[542]},{"name":"DEBUG_INTERRUPT_ACTIVE","features":[542]},{"name":"DEBUG_INTERRUPT_EXIT","features":[542]},{"name":"DEBUG_INTERRUPT_PASSIVE","features":[542]},{"name":"DEBUG_IOUTPUT_ADDR_TRANSLATE","features":[542]},{"name":"DEBUG_IOUTPUT_BREAKPOINT","features":[542]},{"name":"DEBUG_IOUTPUT_EVENT","features":[542]},{"name":"DEBUG_IOUTPUT_KD_PROTOCOL","features":[542]},{"name":"DEBUG_IOUTPUT_REMOTING","features":[542]},{"name":"DEBUG_IRP_INFO","features":[542]},{"name":"DEBUG_IRP_STACK_INFO","features":[542]},{"name":"DEBUG_KERNEL_ACTIVE_DUMP","features":[542]},{"name":"DEBUG_KERNEL_CONNECTION","features":[542]},{"name":"DEBUG_KERNEL_DUMP","features":[542]},{"name":"DEBUG_KERNEL_EXDI_DRIVER","features":[542]},{"name":"DEBUG_KERNEL_FULL_DUMP","features":[542]},{"name":"DEBUG_KERNEL_IDNA","features":[542]},{"name":"DEBUG_KERNEL_INSTALL_DRIVER","features":[542]},{"name":"DEBUG_KERNEL_LOCAL","features":[542]},{"name":"DEBUG_KERNEL_REPT","features":[542]},{"name":"DEBUG_KERNEL_SMALL_DUMP","features":[542]},{"name":"DEBUG_KERNEL_TRACE_LOG","features":[542]},{"name":"DEBUG_KNOWN_STRUCT_GET_NAMES","features":[542]},{"name":"DEBUG_KNOWN_STRUCT_GET_SINGLE_LINE_OUTPUT","features":[542]},{"name":"DEBUG_KNOWN_STRUCT_SUPPRESS_TYPE_NAME","features":[542]},{"name":"DEBUG_LAST_EVENT_INFO_BREAKPOINT","features":[542]},{"name":"DEBUG_LAST_EVENT_INFO_EXCEPTION","features":[303,542]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_PROCESS","features":[542]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_THREAD","features":[542]},{"name":"DEBUG_LAST_EVENT_INFO_LOAD_MODULE","features":[542]},{"name":"DEBUG_LAST_EVENT_INFO_SERVICE_EXCEPTION","features":[542]},{"name":"DEBUG_LAST_EVENT_INFO_SYSTEM_ERROR","features":[542]},{"name":"DEBUG_LAST_EVENT_INFO_UNLOAD_MODULE","features":[542]},{"name":"DEBUG_LEVEL_ASSEMBLY","features":[542]},{"name":"DEBUG_LEVEL_SOURCE","features":[542]},{"name":"DEBUG_LIVE_USER_NON_INVASIVE","features":[542]},{"name":"DEBUG_LOG_APPEND","features":[542]},{"name":"DEBUG_LOG_DEFAULT","features":[542]},{"name":"DEBUG_LOG_DML","features":[542]},{"name":"DEBUG_LOG_UNICODE","features":[542]},{"name":"DEBUG_MANAGED_ALLOWED","features":[542]},{"name":"DEBUG_MANAGED_DISABLED","features":[542]},{"name":"DEBUG_MANAGED_DLL_LOADED","features":[542]},{"name":"DEBUG_MANRESET_DEFAULT","features":[542]},{"name":"DEBUG_MANRESET_LOAD_DLL","features":[542]},{"name":"DEBUG_MANSTR_LOADED_SUPPORT_DLL","features":[542]},{"name":"DEBUG_MANSTR_LOAD_STATUS","features":[542]},{"name":"DEBUG_MANSTR_NONE","features":[542]},{"name":"DEBUG_MODNAME_IMAGE","features":[542]},{"name":"DEBUG_MODNAME_LOADED_IMAGE","features":[542]},{"name":"DEBUG_MODNAME_MAPPED_IMAGE","features":[542]},{"name":"DEBUG_MODNAME_MODULE","features":[542]},{"name":"DEBUG_MODNAME_SYMBOL_FILE","features":[542]},{"name":"DEBUG_MODULE_AND_ID","features":[542]},{"name":"DEBUG_MODULE_EXE_MODULE","features":[542]},{"name":"DEBUG_MODULE_EXPLICIT","features":[542]},{"name":"DEBUG_MODULE_LOADED","features":[542]},{"name":"DEBUG_MODULE_PARAMETERS","features":[542]},{"name":"DEBUG_MODULE_SECONDARY","features":[542]},{"name":"DEBUG_MODULE_SYM_BAD_CHECKSUM","features":[542]},{"name":"DEBUG_MODULE_SYNTHETIC","features":[542]},{"name":"DEBUG_MODULE_UNLOADED","features":[542]},{"name":"DEBUG_MODULE_USER_MODE","features":[542]},{"name":"DEBUG_NOTIFY_SESSION_ACCESSIBLE","features":[542]},{"name":"DEBUG_NOTIFY_SESSION_ACTIVE","features":[542]},{"name":"DEBUG_NOTIFY_SESSION_INACCESSIBLE","features":[542]},{"name":"DEBUG_NOTIFY_SESSION_INACTIVE","features":[542]},{"name":"DEBUG_OFFSET_REGION","features":[542]},{"name":"DEBUG_OFFSINFO_VIRTUAL_SOURCE","features":[542]},{"name":"DEBUG_OUTCBF_COMBINED_EXPLICIT_FLUSH","features":[542]},{"name":"DEBUG_OUTCBF_DML_HAS_SPECIAL_CHARACTERS","features":[542]},{"name":"DEBUG_OUTCBF_DML_HAS_TAGS","features":[542]},{"name":"DEBUG_OUTCBI_ANY_FORMAT","features":[542]},{"name":"DEBUG_OUTCBI_DML","features":[542]},{"name":"DEBUG_OUTCBI_EXPLICIT_FLUSH","features":[542]},{"name":"DEBUG_OUTCBI_TEXT","features":[542]},{"name":"DEBUG_OUTCB_DML","features":[542]},{"name":"DEBUG_OUTCB_EXPLICIT_FLUSH","features":[542]},{"name":"DEBUG_OUTCB_TEXT","features":[542]},{"name":"DEBUG_OUTCTL_ALL_CLIENTS","features":[542]},{"name":"DEBUG_OUTCTL_ALL_OTHER_CLIENTS","features":[542]},{"name":"DEBUG_OUTCTL_AMBIENT","features":[542]},{"name":"DEBUG_OUTCTL_AMBIENT_DML","features":[542]},{"name":"DEBUG_OUTCTL_AMBIENT_TEXT","features":[542]},{"name":"DEBUG_OUTCTL_DML","features":[542]},{"name":"DEBUG_OUTCTL_IGNORE","features":[542]},{"name":"DEBUG_OUTCTL_LOG_ONLY","features":[542]},{"name":"DEBUG_OUTCTL_NOT_LOGGED","features":[542]},{"name":"DEBUG_OUTCTL_OVERRIDE_MASK","features":[542]},{"name":"DEBUG_OUTCTL_SEND_MASK","features":[542]},{"name":"DEBUG_OUTCTL_THIS_CLIENT","features":[542]},{"name":"DEBUG_OUTPUT_DEBUGGEE","features":[542]},{"name":"DEBUG_OUTPUT_DEBUGGEE_PROMPT","features":[542]},{"name":"DEBUG_OUTPUT_ERROR","features":[542]},{"name":"DEBUG_OUTPUT_EXTENSION_WARNING","features":[542]},{"name":"DEBUG_OUTPUT_IDENTITY_DEFAULT","features":[542]},{"name":"DEBUG_OUTPUT_NAME_END","features":[542]},{"name":"DEBUG_OUTPUT_NAME_END_T","features":[542]},{"name":"DEBUG_OUTPUT_NAME_END_WIDE","features":[542]},{"name":"DEBUG_OUTPUT_NORMAL","features":[542]},{"name":"DEBUG_OUTPUT_OFFSET_END","features":[542]},{"name":"DEBUG_OUTPUT_OFFSET_END_T","features":[542]},{"name":"DEBUG_OUTPUT_OFFSET_END_WIDE","features":[542]},{"name":"DEBUG_OUTPUT_PROMPT","features":[542]},{"name":"DEBUG_OUTPUT_PROMPT_REGISTERS","features":[542]},{"name":"DEBUG_OUTPUT_STATUS","features":[542]},{"name":"DEBUG_OUTPUT_SYMBOLS","features":[542]},{"name":"DEBUG_OUTPUT_SYMBOLS_DEFAULT","features":[542]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_NAMES","features":[542]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_OFFSETS","features":[542]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_TYPES","features":[542]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_VALUES","features":[542]},{"name":"DEBUG_OUTPUT_TYPE_END","features":[542]},{"name":"DEBUG_OUTPUT_TYPE_END_T","features":[542]},{"name":"DEBUG_OUTPUT_TYPE_END_WIDE","features":[542]},{"name":"DEBUG_OUTPUT_VALUE_END","features":[542]},{"name":"DEBUG_OUTPUT_VALUE_END_T","features":[542]},{"name":"DEBUG_OUTPUT_VALUE_END_WIDE","features":[542]},{"name":"DEBUG_OUTPUT_VERBOSE","features":[542]},{"name":"DEBUG_OUTPUT_WARNING","features":[542]},{"name":"DEBUG_OUTPUT_XML","features":[542]},{"name":"DEBUG_OUTSYM_ALLOW_DISPLACEMENT","features":[542]},{"name":"DEBUG_OUTSYM_DEFAULT","features":[542]},{"name":"DEBUG_OUTSYM_FORCE_OFFSET","features":[542]},{"name":"DEBUG_OUTSYM_SOURCE_LINE","features":[542]},{"name":"DEBUG_OUTTYPE_ADDRESS_AT_END","features":[542]},{"name":"DEBUG_OUTTYPE_ADDRESS_OF_FIELD","features":[542]},{"name":"DEBUG_OUTTYPE_BLOCK_RECURSE","features":[542]},{"name":"DEBUG_OUTTYPE_COMPACT_OUTPUT","features":[542]},{"name":"DEBUG_OUTTYPE_DEFAULT","features":[542]},{"name":"DEBUG_OUTTYPE_NO_INDENT","features":[542]},{"name":"DEBUG_OUTTYPE_NO_OFFSET","features":[542]},{"name":"DEBUG_OUTTYPE_VERBOSE","features":[542]},{"name":"DEBUG_OUT_TEXT_REPL_DEFAULT","features":[542]},{"name":"DEBUG_PHYSICAL_CACHED","features":[542]},{"name":"DEBUG_PHYSICAL_DEFAULT","features":[542]},{"name":"DEBUG_PHYSICAL_UNCACHED","features":[542]},{"name":"DEBUG_PHYSICAL_WRITE_COMBINED","features":[542]},{"name":"DEBUG_PNP_TRIAGE_INFO","features":[542]},{"name":"DEBUG_POOLTAG_DESCRIPTION","features":[542]},{"name":"DEBUG_POOL_DATA","features":[542]},{"name":"DEBUG_POOL_REGION","features":[542]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALL","features":[542]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALPHA","features":[542]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_AMD64","features":[542]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM","features":[542]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM64","features":[542]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_IA64","features":[542]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_X86","features":[542]},{"name":"DEBUG_PROCESS_DETACH_ON_EXIT","features":[542]},{"name":"DEBUG_PROCESS_ONLY_THIS_PROCESS","features":[542]},{"name":"DEBUG_PROC_DESC_DEFAULT","features":[542]},{"name":"DEBUG_PROC_DESC_NO_COMMAND_LINE","features":[542]},{"name":"DEBUG_PROC_DESC_NO_MTS_PACKAGES","features":[542]},{"name":"DEBUG_PROC_DESC_NO_PATHS","features":[542]},{"name":"DEBUG_PROC_DESC_NO_SERVICES","features":[542]},{"name":"DEBUG_PROC_DESC_NO_SESSION_ID","features":[542]},{"name":"DEBUG_PROC_DESC_NO_USER_NAME","features":[542]},{"name":"DEBUG_PROC_DESC_WITH_ARCHITECTURE","features":[542]},{"name":"DEBUG_PROC_DESC_WITH_PACKAGEFAMILY","features":[542]},{"name":"DEBUG_READ_USER_MINIDUMP_STREAM","features":[542]},{"name":"DEBUG_REGISTERS_ALL","features":[542]},{"name":"DEBUG_REGISTERS_DEFAULT","features":[542]},{"name":"DEBUG_REGISTERS_FLOAT","features":[542]},{"name":"DEBUG_REGISTERS_INT32","features":[542]},{"name":"DEBUG_REGISTERS_INT64","features":[542]},{"name":"DEBUG_REGISTER_DESCRIPTION","features":[542]},{"name":"DEBUG_REGISTER_SUB_REGISTER","features":[542]},{"name":"DEBUG_REGSRC_DEBUGGEE","features":[542]},{"name":"DEBUG_REGSRC_EXPLICIT","features":[542]},{"name":"DEBUG_REGSRC_FRAME","features":[542]},{"name":"DEBUG_REQUEST_ADD_CACHED_SYMBOL_INFO","features":[542]},{"name":"DEBUG_REQUEST_CLOSE_TOKEN","features":[542]},{"name":"DEBUG_REQUEST_CURRENT_OUTPUT_CALLBACKS_ARE_DML_AWARE","features":[542]},{"name":"DEBUG_REQUEST_DUPLICATE_TOKEN","features":[542]},{"name":"DEBUG_REQUEST_EXT_TYPED_DATA_ANSI","features":[542]},{"name":"DEBUG_REQUEST_GET_ADDITIONAL_CREATE_OPTIONS","features":[542]},{"name":"DEBUG_REQUEST_GET_CACHED_SYMBOL_INFO","features":[542]},{"name":"DEBUG_REQUEST_GET_CAPTURED_EVENT_CODE_OFFSET","features":[542]},{"name":"DEBUG_REQUEST_GET_DUMP_HEADER","features":[542]},{"name":"DEBUG_REQUEST_GET_EXTENSION_SEARCH_PATH_WIDE","features":[542]},{"name":"DEBUG_REQUEST_GET_IMAGE_ARCHITECTURE","features":[542]},{"name":"DEBUG_REQUEST_GET_INSTRUMENTATION_VERSION","features":[542]},{"name":"DEBUG_REQUEST_GET_MODULE_ARCHITECTURE","features":[542]},{"name":"DEBUG_REQUEST_GET_OFFSET_UNWIND_INFORMATION","features":[542]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_ANSI","features":[542]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_WIDE","features":[542]},{"name":"DEBUG_REQUEST_GET_WIN32_MAJOR_MINOR_VERSIONS","features":[542]},{"name":"DEBUG_REQUEST_INLINE_QUERY","features":[542]},{"name":"DEBUG_REQUEST_MIDORI","features":[542]},{"name":"DEBUG_REQUEST_MISC_INFORMATION","features":[542]},{"name":"DEBUG_REQUEST_OPEN_PROCESS_TOKEN","features":[542]},{"name":"DEBUG_REQUEST_OPEN_THREAD_TOKEN","features":[542]},{"name":"DEBUG_REQUEST_PROCESS_DESCRIPTORS","features":[542]},{"name":"DEBUG_REQUEST_QUERY_INFO_TOKEN","features":[542]},{"name":"DEBUG_REQUEST_READ_CAPTURED_EVENT_CODE_STREAM","features":[542]},{"name":"DEBUG_REQUEST_READ_USER_MINIDUMP_STREAM","features":[542]},{"name":"DEBUG_REQUEST_REMOVE_CACHED_SYMBOL_INFO","features":[542]},{"name":"DEBUG_REQUEST_RESUME_THREAD","features":[542]},{"name":"DEBUG_REQUEST_SET_ADDITIONAL_CREATE_OPTIONS","features":[542]},{"name":"DEBUG_REQUEST_SET_DUMP_HEADER","features":[542]},{"name":"DEBUG_REQUEST_SET_LOCAL_IMPLICIT_COMMAND_LINE","features":[542]},{"name":"DEBUG_REQUEST_SOURCE_PATH_HAS_SOURCE_SERVER","features":[542]},{"name":"DEBUG_REQUEST_TARGET_CAN_DETACH","features":[542]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_CONTEXT","features":[542]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_RECORD","features":[542]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_THREAD","features":[542]},{"name":"DEBUG_REQUEST_TL_INSTRUMENTATION_AWARE","features":[542]},{"name":"DEBUG_REQUEST_WOW_MODULE","features":[542]},{"name":"DEBUG_REQUEST_WOW_PROCESS","features":[542]},{"name":"DEBUG_SCOPE_GROUP_ALL","features":[542]},{"name":"DEBUG_SCOPE_GROUP_ARGUMENTS","features":[542]},{"name":"DEBUG_SCOPE_GROUP_BY_DATAMODEL","features":[542]},{"name":"DEBUG_SCOPE_GROUP_LOCALS","features":[542]},{"name":"DEBUG_SERVERS_ALL","features":[542]},{"name":"DEBUG_SERVERS_DEBUGGER","features":[542]},{"name":"DEBUG_SERVERS_PROCESS","features":[542]},{"name":"DEBUG_SESSION_ACTIVE","features":[542]},{"name":"DEBUG_SESSION_END","features":[542]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_DETACH","features":[542]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_TERMINATE","features":[542]},{"name":"DEBUG_SESSION_END_SESSION_PASSIVE","features":[542]},{"name":"DEBUG_SESSION_FAILURE","features":[542]},{"name":"DEBUG_SESSION_HIBERNATE","features":[542]},{"name":"DEBUG_SESSION_REBOOT","features":[542]},{"name":"DEBUG_SMBIOS_INFO","features":[542]},{"name":"DEBUG_SOURCE_IS_STATEMENT","features":[542]},{"name":"DEBUG_SPECIFIC_FILTER_PARAMETERS","features":[542]},{"name":"DEBUG_SRCFILE_SYMBOL_CHECKSUMINFO","features":[542]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN","features":[542]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN_SOURCE_COMMAND_WIDE","features":[542]},{"name":"DEBUG_STACK_ARGUMENTS","features":[542]},{"name":"DEBUG_STACK_COLUMN_NAMES","features":[542]},{"name":"DEBUG_STACK_DML","features":[542]},{"name":"DEBUG_STACK_FRAME","features":[303,542]},{"name":"DEBUG_STACK_FRAME_ADDRESSES","features":[542]},{"name":"DEBUG_STACK_FRAME_ADDRESSES_RA_ONLY","features":[542]},{"name":"DEBUG_STACK_FRAME_ARCH","features":[542]},{"name":"DEBUG_STACK_FRAME_EX","features":[303,542]},{"name":"DEBUG_STACK_FRAME_MEMORY_USAGE","features":[542]},{"name":"DEBUG_STACK_FRAME_NUMBERS","features":[542]},{"name":"DEBUG_STACK_FRAME_OFFSETS","features":[542]},{"name":"DEBUG_STACK_FUNCTION_INFO","features":[542]},{"name":"DEBUG_STACK_NONVOLATILE_REGISTERS","features":[542]},{"name":"DEBUG_STACK_PARAMETERS","features":[542]},{"name":"DEBUG_STACK_PARAMETERS_NEWLINE","features":[542]},{"name":"DEBUG_STACK_PROVIDER","features":[542]},{"name":"DEBUG_STACK_SOURCE_LINE","features":[542]},{"name":"DEBUG_STATUS_BREAK","features":[542]},{"name":"DEBUG_STATUS_GO","features":[542]},{"name":"DEBUG_STATUS_GO_HANDLED","features":[542]},{"name":"DEBUG_STATUS_GO_NOT_HANDLED","features":[542]},{"name":"DEBUG_STATUS_IGNORE_EVENT","features":[542]},{"name":"DEBUG_STATUS_INSIDE_WAIT","features":[542]},{"name":"DEBUG_STATUS_MASK","features":[542]},{"name":"DEBUG_STATUS_NO_CHANGE","features":[542]},{"name":"DEBUG_STATUS_NO_DEBUGGEE","features":[542]},{"name":"DEBUG_STATUS_OUT_OF_SYNC","features":[542]},{"name":"DEBUG_STATUS_RESTART_REQUESTED","features":[542]},{"name":"DEBUG_STATUS_REVERSE_GO","features":[542]},{"name":"DEBUG_STATUS_REVERSE_STEP_BRANCH","features":[542]},{"name":"DEBUG_STATUS_REVERSE_STEP_INTO","features":[542]},{"name":"DEBUG_STATUS_REVERSE_STEP_OVER","features":[542]},{"name":"DEBUG_STATUS_STEP_BRANCH","features":[542]},{"name":"DEBUG_STATUS_STEP_INTO","features":[542]},{"name":"DEBUG_STATUS_STEP_OVER","features":[542]},{"name":"DEBUG_STATUS_TIMEOUT","features":[542]},{"name":"DEBUG_STATUS_WAIT_INPUT","features":[542]},{"name":"DEBUG_STATUS_WAIT_TIMEOUT","features":[542]},{"name":"DEBUG_SYMBOL_ENTRY","features":[542]},{"name":"DEBUG_SYMBOL_EXPANDED","features":[542]},{"name":"DEBUG_SYMBOL_EXPANSION_LEVEL_MASK","features":[542]},{"name":"DEBUG_SYMBOL_IS_ARGUMENT","features":[542]},{"name":"DEBUG_SYMBOL_IS_ARRAY","features":[542]},{"name":"DEBUG_SYMBOL_IS_FLOAT","features":[542]},{"name":"DEBUG_SYMBOL_IS_LOCAL","features":[542]},{"name":"DEBUG_SYMBOL_PARAMETERS","features":[542]},{"name":"DEBUG_SYMBOL_READ_ONLY","features":[542]},{"name":"DEBUG_SYMBOL_SOURCE_ENTRY","features":[542]},{"name":"DEBUG_SYMENT_IS_CODE","features":[542]},{"name":"DEBUG_SYMENT_IS_DATA","features":[542]},{"name":"DEBUG_SYMENT_IS_LOCAL","features":[542]},{"name":"DEBUG_SYMENT_IS_MANAGED","features":[542]},{"name":"DEBUG_SYMENT_IS_PARAMETER","features":[542]},{"name":"DEBUG_SYMENT_IS_SYNTHETIC","features":[542]},{"name":"DEBUG_SYMINFO_BREAKPOINT_SOURCE_LINE","features":[542]},{"name":"DEBUG_SYMINFO_GET_MODULE_SYMBOL_NAMES_AND_OFFSETS","features":[542]},{"name":"DEBUG_SYMINFO_GET_SYMBOL_NAME_BY_OFFSET_AND_TAG_WIDE","features":[542]},{"name":"DEBUG_SYMINFO_IMAGEHLP_MODULEW64","features":[542]},{"name":"DEBUG_SYMTYPE_CODEVIEW","features":[542]},{"name":"DEBUG_SYMTYPE_COFF","features":[542]},{"name":"DEBUG_SYMTYPE_DEFERRED","features":[542]},{"name":"DEBUG_SYMTYPE_DIA","features":[542]},{"name":"DEBUG_SYMTYPE_EXPORT","features":[542]},{"name":"DEBUG_SYMTYPE_NONE","features":[542]},{"name":"DEBUG_SYMTYPE_PDB","features":[542]},{"name":"DEBUG_SYMTYPE_SYM","features":[542]},{"name":"DEBUG_SYSOBJINFO_CURRENT_PROCESS_COOKIE","features":[542]},{"name":"DEBUG_SYSOBJINFO_THREAD_BASIC_INFORMATION","features":[542]},{"name":"DEBUG_SYSOBJINFO_THREAD_NAME_WIDE","features":[542]},{"name":"DEBUG_SYSVERSTR_BUILD","features":[542]},{"name":"DEBUG_SYSVERSTR_SERVICE_PACK","features":[542]},{"name":"DEBUG_TBINFO_AFFINITY","features":[542]},{"name":"DEBUG_TBINFO_ALL","features":[542]},{"name":"DEBUG_TBINFO_EXIT_STATUS","features":[542]},{"name":"DEBUG_TBINFO_PRIORITY","features":[542]},{"name":"DEBUG_TBINFO_PRIORITY_CLASS","features":[542]},{"name":"DEBUG_TBINFO_START_OFFSET","features":[542]},{"name":"DEBUG_TBINFO_TIMES","features":[542]},{"name":"DEBUG_THREAD_BASIC_INFORMATION","features":[542]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO","features":[542]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO_2","features":[542]},{"name":"DEBUG_TYPED_DATA","features":[542]},{"name":"DEBUG_TYPED_DATA_IS_IN_MEMORY","features":[542]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_CACHED","features":[542]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_DEFAULT","features":[542]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_MEMORY","features":[542]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_UNCACHED","features":[542]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_WRITE_COMBINED","features":[542]},{"name":"DEBUG_TYPEOPTS_FORCERADIX_OUTPUT","features":[542]},{"name":"DEBUG_TYPEOPTS_LONGSTATUS_DISPLAY","features":[542]},{"name":"DEBUG_TYPEOPTS_MATCH_MAXSIZE","features":[542]},{"name":"DEBUG_TYPEOPTS_UNICODE_DISPLAY","features":[542]},{"name":"DEBUG_USER_WINDOWS_DUMP","features":[542]},{"name":"DEBUG_USER_WINDOWS_DUMP_WINDOWS_CE","features":[542]},{"name":"DEBUG_USER_WINDOWS_IDNA","features":[542]},{"name":"DEBUG_USER_WINDOWS_PROCESS","features":[542]},{"name":"DEBUG_USER_WINDOWS_PROCESS_SERVER","features":[542]},{"name":"DEBUG_USER_WINDOWS_REPT","features":[542]},{"name":"DEBUG_USER_WINDOWS_SMALL_DUMP","features":[542]},{"name":"DEBUG_VALUE","features":[303,542]},{"name":"DEBUG_VALUE_FLOAT128","features":[542]},{"name":"DEBUG_VALUE_FLOAT32","features":[542]},{"name":"DEBUG_VALUE_FLOAT64","features":[542]},{"name":"DEBUG_VALUE_FLOAT80","features":[542]},{"name":"DEBUG_VALUE_FLOAT82","features":[542]},{"name":"DEBUG_VALUE_INT16","features":[542]},{"name":"DEBUG_VALUE_INT32","features":[542]},{"name":"DEBUG_VALUE_INT64","features":[542]},{"name":"DEBUG_VALUE_INT8","features":[542]},{"name":"DEBUG_VALUE_INVALID","features":[542]},{"name":"DEBUG_VALUE_TYPES","features":[542]},{"name":"DEBUG_VALUE_VECTOR128","features":[542]},{"name":"DEBUG_VALUE_VECTOR64","features":[542]},{"name":"DEBUG_VSEARCH_DEFAULT","features":[542]},{"name":"DEBUG_VSEARCH_WRITABLE_ONLY","features":[542]},{"name":"DEBUG_VSOURCE_DEBUGGEE","features":[542]},{"name":"DEBUG_VSOURCE_DUMP_WITHOUT_MEMINFO","features":[542]},{"name":"DEBUG_VSOURCE_INVALID","features":[542]},{"name":"DEBUG_VSOURCE_MAPPED_IMAGE","features":[542]},{"name":"DEBUG_WAIT_DEFAULT","features":[542]},{"name":"DISK_READ_0_BYTES","features":[542]},{"name":"DISK_WRITE","features":[542]},{"name":"DUMP_HANDLE_FLAG_CID_TABLE","features":[542]},{"name":"DUMP_HANDLE_FLAG_KERNEL_TABLE","features":[542]},{"name":"DUMP_HANDLE_FLAG_PRINT_FREE_ENTRY","features":[542]},{"name":"DUMP_HANDLE_FLAG_PRINT_OBJECT","features":[542]},{"name":"DbgPoolRegionMax","features":[542]},{"name":"DbgPoolRegionNonPaged","features":[542]},{"name":"DbgPoolRegionNonPagedExpansion","features":[542]},{"name":"DbgPoolRegionPaged","features":[542]},{"name":"DbgPoolRegionSessionPaged","features":[542]},{"name":"DbgPoolRegionSpecial","features":[542]},{"name":"DbgPoolRegionUnknown","features":[542]},{"name":"DebugBaseEventCallbacks","features":[542]},{"name":"DebugBaseEventCallbacksWide","features":[542]},{"name":"DebugConnect","features":[542]},{"name":"DebugConnectWide","features":[542]},{"name":"DebugCreate","features":[542]},{"name":"DebugCreateEx","features":[542]},{"name":"ENTRY_CALLBACK","features":[542]},{"name":"ERROR_DBG_CANCELLED","features":[542]},{"name":"ERROR_DBG_TIMEOUT","features":[542]},{"name":"EXIT_ON_CONTROLC","features":[542]},{"name":"EXIT_STATUS","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR_SYMSRV","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR_SYMSRV","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR_SYMSRV","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR","features":[542]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR_SYMSRV","features":[542]},{"name":"EXTDLL_ITERATERTLBALANCEDNODES","features":[542]},{"name":"EXTDLL_QUERYDATABYTAG","features":[542]},{"name":"EXTDLL_QUERYDATABYTAGEX","features":[542]},{"name":"EXTSTACKTRACE","features":[542]},{"name":"EXTSTACKTRACE32","features":[542]},{"name":"EXTSTACKTRACE64","features":[542]},{"name":"EXTS_JOB_PROCESS_CALLBACK","features":[303,542]},{"name":"EXTS_TABLE_ENTRY_CALLBACK","features":[303,542]},{"name":"EXT_ANALYSIS_PLUGIN","features":[542]},{"name":"EXT_ANALYZER","features":[542]},{"name":"EXT_ANALYZER_FLAG_ID","features":[542]},{"name":"EXT_ANALYZER_FLAG_MOD","features":[542]},{"name":"EXT_API_VERSION","features":[542]},{"name":"EXT_API_VERSION_NUMBER","features":[542]},{"name":"EXT_API_VERSION_NUMBER32","features":[542]},{"name":"EXT_API_VERSION_NUMBER64","features":[542]},{"name":"EXT_CAB_XML_DATA","features":[542]},{"name":"EXT_DECODE_ERROR","features":[303,542]},{"name":"EXT_FIND_FILE","features":[303,542]},{"name":"EXT_FIND_FILE_ALLOW_GIVEN_PATH","features":[542]},{"name":"EXT_GET_DEBUG_FAILURE_ANALYSIS","features":[542]},{"name":"EXT_GET_ENVIRONMENT_VARIABLE","features":[542]},{"name":"EXT_GET_FAILURE_ANALYSIS","features":[542]},{"name":"EXT_GET_FA_ENTRIES_DATA","features":[542]},{"name":"EXT_GET_HANDLE_TRACE","features":[542]},{"name":"EXT_MATCH_PATTERN_A","features":[542]},{"name":"EXT_RELOAD_TRIAGER","features":[542]},{"name":"EXT_TARGET_INFO","features":[542]},{"name":"EXT_TDF_PHYSICAL_CACHED","features":[542]},{"name":"EXT_TDF_PHYSICAL_DEFAULT","features":[542]},{"name":"EXT_TDF_PHYSICAL_MEMORY","features":[542]},{"name":"EXT_TDF_PHYSICAL_UNCACHED","features":[542]},{"name":"EXT_TDF_PHYSICAL_WRITE_COMBINED","features":[542]},{"name":"EXT_TDOP","features":[542]},{"name":"EXT_TDOP_COPY","features":[542]},{"name":"EXT_TDOP_COUNT","features":[542]},{"name":"EXT_TDOP_EVALUATE","features":[542]},{"name":"EXT_TDOP_GET_ARRAY_ELEMENT","features":[542]},{"name":"EXT_TDOP_GET_DEREFERENCE","features":[542]},{"name":"EXT_TDOP_GET_FIELD","features":[542]},{"name":"EXT_TDOP_GET_FIELD_OFFSET","features":[542]},{"name":"EXT_TDOP_GET_POINTER_TO","features":[542]},{"name":"EXT_TDOP_GET_TYPE_NAME","features":[542]},{"name":"EXT_TDOP_GET_TYPE_SIZE","features":[542]},{"name":"EXT_TDOP_HAS_FIELD","features":[542]},{"name":"EXT_TDOP_OUTPUT_FULL_VALUE","features":[542]},{"name":"EXT_TDOP_OUTPUT_SIMPLE_VALUE","features":[542]},{"name":"EXT_TDOP_OUTPUT_TYPE_DEFINITION","features":[542]},{"name":"EXT_TDOP_OUTPUT_TYPE_NAME","features":[542]},{"name":"EXT_TDOP_RELEASE","features":[542]},{"name":"EXT_TDOP_SET_FROM_EXPR","features":[542]},{"name":"EXT_TDOP_SET_FROM_TYPE_ID_AND_U64","features":[542]},{"name":"EXT_TDOP_SET_FROM_U64_EXPR","features":[542]},{"name":"EXT_TDOP_SET_PTR_FROM_TYPE_ID_AND_U64","features":[542]},{"name":"EXT_TRIAGE_FOLLOWUP","features":[542]},{"name":"EXT_TYPED_DATA","features":[542]},{"name":"EXT_XML_DATA","features":[542]},{"name":"ErrorClass","features":[542]},{"name":"ErrorClassError","features":[542]},{"name":"ErrorClassWarning","features":[542]},{"name":"FAILURE_ANALYSIS_ASSUME_HANG","features":[542]},{"name":"FAILURE_ANALYSIS_AUTOBUG_PROCESSING","features":[542]},{"name":"FAILURE_ANALYSIS_AUTOSET_SYMPATH","features":[542]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML","features":[542]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML_FULL_SOURCE_INFO","features":[542]},{"name":"FAILURE_ANALYSIS_CREATE_INSTANCE","features":[542]},{"name":"FAILURE_ANALYSIS_EXCEPTION_AS_HANG","features":[542]},{"name":"FAILURE_ANALYSIS_HEAP_CORRUPTION_BLAME_FUNCTION","features":[542]},{"name":"FAILURE_ANALYSIS_IGNORE_BREAKIN","features":[542]},{"name":"FAILURE_ANALYSIS_LIVE_DEBUG_HOLD_CHECK","features":[542]},{"name":"FAILURE_ANALYSIS_MODULE_INFO_XML","features":[542]},{"name":"FAILURE_ANALYSIS_MULTI_TARGET","features":[542]},{"name":"FAILURE_ANALYSIS_NO_DB_LOOKUP","features":[542]},{"name":"FAILURE_ANALYSIS_NO_IMAGE_CORRUPTION","features":[542]},{"name":"FAILURE_ANALYSIS_PERMIT_HEAP_ACCESS_VIOLATIONS","features":[542]},{"name":"FAILURE_ANALYSIS_REGISTRY_DATA","features":[542]},{"name":"FAILURE_ANALYSIS_SET_FAILURE_CONTEXT","features":[542]},{"name":"FAILURE_ANALYSIS_SHOW_SOURCE","features":[542]},{"name":"FAILURE_ANALYSIS_SHOW_WCT_STACKS","features":[542]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES","features":[542]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_ALL","features":[542]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_FRAMES","features":[542]},{"name":"FAILURE_ANALYSIS_VERBOSE","features":[542]},{"name":"FAILURE_ANALYSIS_WMI_QUERY_DATA","features":[542]},{"name":"FAILURE_ANALYSIS_XML_FILE_OUTPUT","features":[542]},{"name":"FAILURE_ANALYSIS_XML_OUTPUT","features":[542]},{"name":"FAILURE_ANALYSIS_XSD_VERIFY","features":[542]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_INPUT","features":[542]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_OUTPUT","features":[542]},{"name":"FA_ENTRY","features":[542]},{"name":"FA_ENTRY_TYPE","features":[542]},{"name":"FA_EXTENSION_PLUGIN_PHASE","features":[542]},{"name":"FA_PLUGIN_INITIALIZATION","features":[542]},{"name":"FA_PLUGIN_POST_BUCKETING","features":[542]},{"name":"FA_PLUGIN_PRE_BUCKETING","features":[542]},{"name":"FA_PLUGIN_STACK_ANALYSIS","features":[542]},{"name":"FIELDS_DID_NOT_MATCH","features":[542]},{"name":"FIELD_INFO","features":[542]},{"name":"FormatBSTRString","features":[542]},{"name":"FormatEnumNameOnly","features":[542]},{"name":"FormatEscapedStringWithQuote","features":[542]},{"name":"FormatHString","features":[542]},{"name":"FormatNone","features":[542]},{"name":"FormatQuotedHString","features":[542]},{"name":"FormatQuotedString","features":[542]},{"name":"FormatQuotedUTF32String","features":[542]},{"name":"FormatQuotedUTF8String","features":[542]},{"name":"FormatQuotedUnicodeString","features":[542]},{"name":"FormatRaw","features":[542]},{"name":"FormatSingleCharacter","features":[542]},{"name":"FormatString","features":[542]},{"name":"FormatUTF32String","features":[542]},{"name":"FormatUTF8String","features":[542]},{"name":"FormatUnicodeString","features":[542]},{"name":"GET_CONTEXT_EX","features":[542]},{"name":"GET_CURRENT_PROCESS_ADDRESS","features":[542]},{"name":"GET_CURRENT_THREAD_ADDRESS","features":[542]},{"name":"GET_EXPRESSION_EX","features":[542]},{"name":"GET_INPUT_LINE","features":[542]},{"name":"GET_PEB_ADDRESS","features":[542]},{"name":"GET_SET_SYMPATH","features":[542]},{"name":"GET_TEB_ADDRESS","features":[542]},{"name":"ICodeAddressConcept","features":[542]},{"name":"IComparableConcept","features":[542]},{"name":"IDataModelConcept","features":[542]},{"name":"IDataModelManager","features":[542]},{"name":"IDataModelManager2","features":[542]},{"name":"IDataModelNameBinder","features":[542]},{"name":"IDataModelScript","features":[542]},{"name":"IDataModelScriptClient","features":[542]},{"name":"IDataModelScriptDebug","features":[542]},{"name":"IDataModelScriptDebug2","features":[542]},{"name":"IDataModelScriptDebugBreakpoint","features":[542]},{"name":"IDataModelScriptDebugBreakpointEnumerator","features":[542]},{"name":"IDataModelScriptDebugClient","features":[542]},{"name":"IDataModelScriptDebugStack","features":[542]},{"name":"IDataModelScriptDebugStackFrame","features":[542]},{"name":"IDataModelScriptDebugVariableSetEnumerator","features":[542]},{"name":"IDataModelScriptHostContext","features":[542]},{"name":"IDataModelScriptManager","features":[542]},{"name":"IDataModelScriptProvider","features":[542]},{"name":"IDataModelScriptProviderEnumerator","features":[542]},{"name":"IDataModelScriptTemplate","features":[542]},{"name":"IDataModelScriptTemplateEnumerator","features":[542]},{"name":"IDebugAdvanced","features":[542]},{"name":"IDebugAdvanced2","features":[542]},{"name":"IDebugAdvanced3","features":[542]},{"name":"IDebugAdvanced4","features":[542]},{"name":"IDebugBreakpoint","features":[542]},{"name":"IDebugBreakpoint2","features":[542]},{"name":"IDebugBreakpoint3","features":[542]},{"name":"IDebugClient","features":[542]},{"name":"IDebugClient2","features":[542]},{"name":"IDebugClient3","features":[542]},{"name":"IDebugClient4","features":[542]},{"name":"IDebugClient5","features":[542]},{"name":"IDebugClient6","features":[542]},{"name":"IDebugClient7","features":[542]},{"name":"IDebugClient8","features":[542]},{"name":"IDebugControl","features":[542]},{"name":"IDebugControl2","features":[542]},{"name":"IDebugControl3","features":[542]},{"name":"IDebugControl4","features":[542]},{"name":"IDebugControl5","features":[542]},{"name":"IDebugControl6","features":[542]},{"name":"IDebugControl7","features":[542]},{"name":"IDebugDataSpaces","features":[542]},{"name":"IDebugDataSpaces2","features":[542]},{"name":"IDebugDataSpaces3","features":[542]},{"name":"IDebugDataSpaces4","features":[542]},{"name":"IDebugEventCallbacks","features":[542]},{"name":"IDebugEventCallbacksWide","features":[542]},{"name":"IDebugEventContextCallbacks","features":[542]},{"name":"IDebugFAEntryTags","features":[542]},{"name":"IDebugFailureAnalysis","features":[542]},{"name":"IDebugFailureAnalysis2","features":[542]},{"name":"IDebugFailureAnalysis3","features":[542]},{"name":"IDebugHost","features":[542]},{"name":"IDebugHostBaseClass","features":[542]},{"name":"IDebugHostConstant","features":[542]},{"name":"IDebugHostContext","features":[542]},{"name":"IDebugHostData","features":[542]},{"name":"IDebugHostErrorSink","features":[542]},{"name":"IDebugHostEvaluator","features":[542]},{"name":"IDebugHostEvaluator2","features":[542]},{"name":"IDebugHostExtensibility","features":[542]},{"name":"IDebugHostField","features":[542]},{"name":"IDebugHostMemory","features":[542]},{"name":"IDebugHostMemory2","features":[542]},{"name":"IDebugHostModule","features":[542]},{"name":"IDebugHostModule2","features":[542]},{"name":"IDebugHostModuleSignature","features":[542]},{"name":"IDebugHostPublic","features":[542]},{"name":"IDebugHostScriptHost","features":[542]},{"name":"IDebugHostStatus","features":[542]},{"name":"IDebugHostSymbol","features":[542]},{"name":"IDebugHostSymbol2","features":[542]},{"name":"IDebugHostSymbolEnumerator","features":[542]},{"name":"IDebugHostSymbols","features":[542]},{"name":"IDebugHostType","features":[542]},{"name":"IDebugHostType2","features":[542]},{"name":"IDebugHostTypeSignature","features":[542]},{"name":"IDebugInputCallbacks","features":[542]},{"name":"IDebugOutputCallbacks","features":[542]},{"name":"IDebugOutputCallbacks2","features":[542]},{"name":"IDebugOutputCallbacksWide","features":[542]},{"name":"IDebugOutputStream","features":[542]},{"name":"IDebugPlmClient","features":[542]},{"name":"IDebugPlmClient2","features":[542]},{"name":"IDebugPlmClient3","features":[542]},{"name":"IDebugRegisters","features":[542]},{"name":"IDebugRegisters2","features":[542]},{"name":"IDebugSymbolGroup","features":[542]},{"name":"IDebugSymbolGroup2","features":[542]},{"name":"IDebugSymbols","features":[542]},{"name":"IDebugSymbols2","features":[542]},{"name":"IDebugSymbols3","features":[542]},{"name":"IDebugSymbols4","features":[542]},{"name":"IDebugSymbols5","features":[542]},{"name":"IDebugSystemObjects","features":[542]},{"name":"IDebugSystemObjects2","features":[542]},{"name":"IDebugSystemObjects3","features":[542]},{"name":"IDebugSystemObjects4","features":[542]},{"name":"IDynamicConceptProviderConcept","features":[542]},{"name":"IDynamicKeyProviderConcept","features":[542]},{"name":"IEquatableConcept","features":[542]},{"name":"IG_DISASSEMBLE_BUFFER","features":[542]},{"name":"IG_DUMP_SYMBOL_INFO","features":[542]},{"name":"IG_FIND_FILE","features":[542]},{"name":"IG_GET_ANY_MODULE_IN_RANGE","features":[542]},{"name":"IG_GET_BUS_DATA","features":[542]},{"name":"IG_GET_CACHE_SIZE","features":[542]},{"name":"IG_GET_CLR_DATA_INTERFACE","features":[542]},{"name":"IG_GET_CONTEXT_EX","features":[542]},{"name":"IG_GET_CURRENT_PROCESS","features":[542]},{"name":"IG_GET_CURRENT_PROCESS_HANDLE","features":[542]},{"name":"IG_GET_CURRENT_THREAD","features":[542]},{"name":"IG_GET_DEBUGGER_DATA","features":[542]},{"name":"IG_GET_EXCEPTION_RECORD","features":[542]},{"name":"IG_GET_EXPRESSION_EX","features":[542]},{"name":"IG_GET_INPUT_LINE","features":[542]},{"name":"IG_GET_KERNEL_VERSION","features":[542]},{"name":"IG_GET_PEB_ADDRESS","features":[542]},{"name":"IG_GET_SET_SYMPATH","features":[542]},{"name":"IG_GET_TEB_ADDRESS","features":[542]},{"name":"IG_GET_THREAD_OS_INFO","features":[542]},{"name":"IG_GET_TYPE_SIZE","features":[542]},{"name":"IG_IS_PTR64","features":[542]},{"name":"IG_KD_CONTEXT","features":[542]},{"name":"IG_KSTACK_HELP","features":[542]},{"name":"IG_LOWMEM_CHECK","features":[542]},{"name":"IG_MATCH_PATTERN_A","features":[542]},{"name":"IG_OBSOLETE_PLACEHOLDER_36","features":[542]},{"name":"IG_PHYSICAL_TO_VIRTUAL","features":[542]},{"name":"IG_POINTER_SEARCH_PHYSICAL","features":[542]},{"name":"IG_QUERY_TARGET_INTERFACE","features":[542]},{"name":"IG_READ_CONTROL_SPACE","features":[542]},{"name":"IG_READ_IO_SPACE","features":[542]},{"name":"IG_READ_IO_SPACE_EX","features":[542]},{"name":"IG_READ_MSR","features":[542]},{"name":"IG_READ_PHYSICAL","features":[542]},{"name":"IG_READ_PHYSICAL_WITH_FLAGS","features":[542]},{"name":"IG_RELOAD_SYMBOLS","features":[542]},{"name":"IG_SEARCH_MEMORY","features":[542]},{"name":"IG_SET_BUS_DATA","features":[542]},{"name":"IG_SET_THREAD","features":[542]},{"name":"IG_TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[542]},{"name":"IG_TYPED_DATA","features":[542]},{"name":"IG_TYPED_DATA_OBSOLETE","features":[542]},{"name":"IG_VIRTUAL_TO_PHYSICAL","features":[542]},{"name":"IG_WRITE_CONTROL_SPACE","features":[542]},{"name":"IG_WRITE_IO_SPACE","features":[542]},{"name":"IG_WRITE_IO_SPACE_EX","features":[542]},{"name":"IG_WRITE_MSR","features":[542]},{"name":"IG_WRITE_PHYSICAL","features":[542]},{"name":"IG_WRITE_PHYSICAL_WITH_FLAGS","features":[542]},{"name":"IHostDataModelAccess","features":[542]},{"name":"IIndexableConcept","features":[542]},{"name":"IIterableConcept","features":[542]},{"name":"IKeyEnumerator","features":[542]},{"name":"IKeyStore","features":[542]},{"name":"IModelIterator","features":[542]},{"name":"IModelKeyReference","features":[542]},{"name":"IModelKeyReference2","features":[542]},{"name":"IModelMethod","features":[542]},{"name":"IModelObject","features":[542]},{"name":"IModelPropertyAccessor","features":[542]},{"name":"INCORRECT_VERSION_INFO","features":[542]},{"name":"INLINE_FRAME_CONTEXT","features":[542]},{"name":"INSUFFICIENT_SPACE_TO_COPY","features":[542]},{"name":"IOSPACE","features":[542]},{"name":"IOSPACE32","features":[542]},{"name":"IOSPACE64","features":[542]},{"name":"IOSPACE_EX","features":[542]},{"name":"IOSPACE_EX32","features":[542]},{"name":"IOSPACE_EX64","features":[542]},{"name":"IPreferredRuntimeTypeConcept","features":[542]},{"name":"IRawEnumerator","features":[542]},{"name":"IStringDisplayableConcept","features":[542]},{"name":"Identical","features":[542]},{"name":"IntrinsicBool","features":[542]},{"name":"IntrinsicChar","features":[542]},{"name":"IntrinsicChar16","features":[542]},{"name":"IntrinsicChar32","features":[542]},{"name":"IntrinsicFloat","features":[542]},{"name":"IntrinsicHRESULT","features":[542]},{"name":"IntrinsicInt","features":[542]},{"name":"IntrinsicKind","features":[542]},{"name":"IntrinsicLong","features":[542]},{"name":"IntrinsicUInt","features":[542]},{"name":"IntrinsicULong","features":[542]},{"name":"IntrinsicVoid","features":[542]},{"name":"IntrinsicWChar","features":[542]},{"name":"KDDEBUGGER_DATA32","features":[542,309]},{"name":"KDDEBUGGER_DATA64","features":[542,309]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE","features":[303,542]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE_DEFINED","features":[542]},{"name":"KDEXTS_LOCK_INFO","features":[303,542]},{"name":"KDEXTS_PTE_INFO","features":[542]},{"name":"KDEXT_DUMP_HANDLE_CALLBACK","features":[303,542]},{"name":"KDEXT_FILELOCK_OWNER","features":[542]},{"name":"KDEXT_HANDLE_INFORMATION","features":[303,542]},{"name":"KDEXT_PROCESS_FIND_PARAMS","features":[542]},{"name":"KDEXT_THREAD_FIND_PARAMS","features":[542]},{"name":"KD_SECONDARY_VERSION_AMD64_CONTEXT","features":[542]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_1","features":[542]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_2","features":[542]},{"name":"KD_SECONDARY_VERSION_DEFAULT","features":[542]},{"name":"LanguageAssembly","features":[542]},{"name":"LanguageC","features":[542]},{"name":"LanguageCPP","features":[542]},{"name":"LanguageKind","features":[542]},{"name":"LanguageUnknown","features":[542]},{"name":"LessSpecific","features":[542]},{"name":"Location","features":[542]},{"name":"LocationConstant","features":[542]},{"name":"LocationKind","features":[542]},{"name":"LocationMember","features":[542]},{"name":"LocationNone","features":[542]},{"name":"LocationStatic","features":[542]},{"name":"MAX_STACK_IN_BYTES","features":[542]},{"name":"MEMORY_READ_ERROR","features":[542]},{"name":"MODULE_ORDERS_LOADTIME","features":[542]},{"name":"MODULE_ORDERS_MASK","features":[542]},{"name":"MODULE_ORDERS_MODULENAME","features":[542]},{"name":"ModelObjectKind","features":[542]},{"name":"MoreSpecific","features":[542]},{"name":"NO_TYPE","features":[542]},{"name":"NT_STATUS_CODE","features":[542]},{"name":"NULL_FIELD_NAME","features":[542]},{"name":"NULL_SYM_DUMP_PARAM","features":[542]},{"name":"OS_INFO","features":[542]},{"name":"OS_INFO_v1","features":[542]},{"name":"OS_TYPE","features":[542]},{"name":"ObjectContext","features":[542]},{"name":"ObjectError","features":[542]},{"name":"ObjectIntrinsic","features":[542]},{"name":"ObjectKeyReference","features":[542]},{"name":"ObjectMethod","features":[542]},{"name":"ObjectNoValue","features":[542]},{"name":"ObjectPropertyAccessor","features":[542]},{"name":"ObjectSynthetic","features":[542]},{"name":"ObjectTargetObject","features":[542]},{"name":"ObjectTargetObjectReference","features":[542]},{"name":"PDEBUG_EXTENSION_CALL","features":[542]},{"name":"PDEBUG_EXTENSION_CANUNLOAD","features":[542]},{"name":"PDEBUG_EXTENSION_INITIALIZE","features":[542]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT","features":[542]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT_EX","features":[542]},{"name":"PDEBUG_EXTENSION_NOTIFY","features":[542]},{"name":"PDEBUG_EXTENSION_PROVIDE_VALUE","features":[542]},{"name":"PDEBUG_EXTENSION_QUERY_VALUE_NAMES","features":[542]},{"name":"PDEBUG_EXTENSION_UNINITIALIZE","features":[542]},{"name":"PDEBUG_EXTENSION_UNLOAD","features":[542]},{"name":"PDEBUG_STACK_PROVIDER_BEGINTHREADSTACKRECONSTRUCTION","features":[542]},{"name":"PDEBUG_STACK_PROVIDER_ENDTHREADSTACKRECONSTRUCTION","features":[542]},{"name":"PDEBUG_STACK_PROVIDER_FREESTACKSYMFRAMES","features":[303,542]},{"name":"PDEBUG_STACK_PROVIDER_RECONSTRUCTSTACK","features":[303,542]},{"name":"PENUMERATE_HANDLES","features":[303,542]},{"name":"PENUMERATE_HASH_TABLE","features":[303,542]},{"name":"PENUMERATE_JOB_PROCESSES","features":[303,542]},{"name":"PENUMERATE_SYSTEM_LOCKS","features":[303,542]},{"name":"PFIND_FILELOCK_OWNERINFO","features":[542]},{"name":"PFIND_MATCHING_PROCESS","features":[542]},{"name":"PFIND_MATCHING_THREAD","features":[542]},{"name":"PGET_CPU_MICROCODE_VERSION","features":[542]},{"name":"PGET_CPU_PSPEED_INFO","features":[542]},{"name":"PGET_DEVICE_OBJECT_INFO","features":[303,542]},{"name":"PGET_DRIVER_OBJECT_INFO","features":[542]},{"name":"PGET_FULL_IMAGE_NAME","features":[542]},{"name":"PGET_IRP_INFO","features":[542]},{"name":"PGET_PNP_TRIAGE_INFO","features":[542]},{"name":"PGET_POOL_DATA","features":[542]},{"name":"PGET_POOL_REGION","features":[542]},{"name":"PGET_POOL_TAG_DESCRIPTION","features":[542]},{"name":"PGET_PROCESS_COMMIT","features":[542]},{"name":"PGET_SMBIOS_INFO","features":[542]},{"name":"PHYSICAL","features":[542]},{"name":"PHYSICAL_TO_VIRTUAL","features":[542]},{"name":"PHYSICAL_WITH_FLAGS","features":[542]},{"name":"PHYS_FLAG_CACHED","features":[542]},{"name":"PHYS_FLAG_DEFAULT","features":[542]},{"name":"PHYS_FLAG_UNCACHED","features":[542]},{"name":"PHYS_FLAG_WRITE_COMBINED","features":[542]},{"name":"PKDEXTS_GET_PTE_INFO","features":[542]},{"name":"POINTER_SEARCH_PHYSICAL","features":[542]},{"name":"PROCESSORINFO","features":[542]},{"name":"PROCESS_COMMIT_USAGE","features":[542]},{"name":"PROCESS_END","features":[542]},{"name":"PROCESS_NAME_ENTRY","features":[542]},{"name":"PSYM_DUMP_FIELD_CALLBACK","features":[542]},{"name":"PTR_SEARCH_NO_SYMBOL_CHECK","features":[542]},{"name":"PTR_SEARCH_PHYS_ALL_HITS","features":[542]},{"name":"PTR_SEARCH_PHYS_PTE","features":[542]},{"name":"PTR_SEARCH_PHYS_RANGE_CHECK_ONLY","features":[542]},{"name":"PTR_SEARCH_PHYS_SIZE_SHIFT","features":[542]},{"name":"PWINDBG_CHECK_CONTROL_C","features":[542]},{"name":"PWINDBG_CHECK_VERSION","features":[542]},{"name":"PWINDBG_DISASM","features":[542]},{"name":"PWINDBG_DISASM32","features":[542]},{"name":"PWINDBG_DISASM64","features":[542]},{"name":"PWINDBG_EXTENSION_API_VERSION","features":[542]},{"name":"PWINDBG_EXTENSION_DLL_INIT","features":[542,309]},{"name":"PWINDBG_EXTENSION_DLL_INIT32","features":[542,309]},{"name":"PWINDBG_EXTENSION_DLL_INIT64","features":[542,309]},{"name":"PWINDBG_EXTENSION_ROUTINE","features":[303,542]},{"name":"PWINDBG_EXTENSION_ROUTINE32","features":[303,542]},{"name":"PWINDBG_EXTENSION_ROUTINE64","features":[303,542]},{"name":"PWINDBG_GET_EXPRESSION","features":[542]},{"name":"PWINDBG_GET_EXPRESSION32","features":[542]},{"name":"PWINDBG_GET_EXPRESSION64","features":[542]},{"name":"PWINDBG_GET_SYMBOL","features":[542]},{"name":"PWINDBG_GET_SYMBOL32","features":[542]},{"name":"PWINDBG_GET_SYMBOL64","features":[542]},{"name":"PWINDBG_GET_THREAD_CONTEXT_ROUTINE","features":[542,309]},{"name":"PWINDBG_IOCTL_ROUTINE","features":[542]},{"name":"PWINDBG_OLDKD_EXTENSION_ROUTINE","features":[542]},{"name":"PWINDBG_OLDKD_READ_PHYSICAL_MEMORY","features":[542]},{"name":"PWINDBG_OLDKD_WRITE_PHYSICAL_MEMORY","features":[542]},{"name":"PWINDBG_OLD_EXTENSION_ROUTINE","features":[542,309]},{"name":"PWINDBG_OUTPUT_ROUTINE","features":[542]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE","features":[542]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE32","features":[542]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE64","features":[542]},{"name":"PWINDBG_SET_THREAD_CONTEXT_ROUTINE","features":[542,309]},{"name":"PWINDBG_STACKTRACE_ROUTINE","features":[542]},{"name":"PWINDBG_STACKTRACE_ROUTINE32","features":[542]},{"name":"PWINDBG_STACKTRACE_ROUTINE64","features":[542]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE","features":[542]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE32","features":[542]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE64","features":[542]},{"name":"PointerCXHat","features":[542]},{"name":"PointerKind","features":[542]},{"name":"PointerManagedReference","features":[542]},{"name":"PointerRValueReference","features":[542]},{"name":"PointerReference","features":[542]},{"name":"PointerStandard","features":[542]},{"name":"PreferredFormat","features":[542]},{"name":"READCONTROLSPACE","features":[542]},{"name":"READCONTROLSPACE32","features":[542]},{"name":"READCONTROLSPACE64","features":[542]},{"name":"READ_WRITE_MSR","features":[542]},{"name":"RawSearchFlags","features":[542]},{"name":"RawSearchNoBases","features":[542]},{"name":"RawSearchNone","features":[542]},{"name":"SEARCHMEMORY","features":[542]},{"name":"STACK_FRAME_TYPE_IGNORE","features":[542]},{"name":"STACK_FRAME_TYPE_INIT","features":[542]},{"name":"STACK_FRAME_TYPE_INLINE","features":[542]},{"name":"STACK_FRAME_TYPE_RA","features":[542]},{"name":"STACK_FRAME_TYPE_STACK","features":[542]},{"name":"STACK_SRC_INFO","features":[542]},{"name":"STACK_SYM_FRAME_INFO","features":[303,542]},{"name":"SYMBOL_INFO_EX","features":[542]},{"name":"SYMBOL_TYPE_INDEX_NOT_FOUND","features":[542]},{"name":"SYMBOL_TYPE_INFO_NOT_FOUND","features":[542]},{"name":"SYM_DUMP_PARAM","features":[542]},{"name":"ScriptChangeKind","features":[542]},{"name":"ScriptDebugAsyncBreak","features":[542]},{"name":"ScriptDebugBreak","features":[542]},{"name":"ScriptDebugBreakpoint","features":[542]},{"name":"ScriptDebugEvent","features":[542]},{"name":"ScriptDebugEventFilter","features":[542]},{"name":"ScriptDebugEventFilterAbort","features":[542]},{"name":"ScriptDebugEventFilterEntry","features":[542]},{"name":"ScriptDebugEventFilterException","features":[542]},{"name":"ScriptDebugEventFilterUnhandledException","features":[542]},{"name":"ScriptDebugEventInformation","features":[542]},{"name":"ScriptDebugException","features":[542]},{"name":"ScriptDebugExecuting","features":[542]},{"name":"ScriptDebugNoDebugger","features":[542]},{"name":"ScriptDebugNotExecuting","features":[542]},{"name":"ScriptDebugPosition","features":[542]},{"name":"ScriptDebugState","features":[542]},{"name":"ScriptDebugStep","features":[542]},{"name":"ScriptExecutionKind","features":[542]},{"name":"ScriptExecutionNormal","features":[542]},{"name":"ScriptExecutionStepIn","features":[542]},{"name":"ScriptExecutionStepOut","features":[542]},{"name":"ScriptExecutionStepOver","features":[542]},{"name":"ScriptRename","features":[542]},{"name":"SignatureComparison","features":[542]},{"name":"Symbol","features":[542]},{"name":"SymbolBaseClass","features":[542]},{"name":"SymbolConstant","features":[542]},{"name":"SymbolData","features":[542]},{"name":"SymbolField","features":[542]},{"name":"SymbolFunction","features":[542]},{"name":"SymbolKind","features":[542]},{"name":"SymbolModule","features":[542]},{"name":"SymbolPublic","features":[542]},{"name":"SymbolSearchCaseInsensitive","features":[542]},{"name":"SymbolSearchCompletion","features":[542]},{"name":"SymbolSearchNone","features":[542]},{"name":"SymbolSearchOptions","features":[542]},{"name":"SymbolType","features":[542]},{"name":"TANALYZE_RETURN","features":[542]},{"name":"TARGET_DEBUG_INFO","features":[542]},{"name":"TARGET_DEBUG_INFO_v1","features":[542]},{"name":"TARGET_DEBUG_INFO_v2","features":[542]},{"name":"TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[542]},{"name":"TRIAGE_FOLLOWUP_DEFAULT","features":[542]},{"name":"TRIAGE_FOLLOWUP_FAIL","features":[542]},{"name":"TRIAGE_FOLLOWUP_IGNORE","features":[542]},{"name":"TRIAGE_FOLLOWUP_SUCCESS","features":[542]},{"name":"TypeArray","features":[542]},{"name":"TypeEnum","features":[542]},{"name":"TypeExtendedArray","features":[542]},{"name":"TypeFunction","features":[542]},{"name":"TypeIntrinsic","features":[542]},{"name":"TypeKind","features":[542]},{"name":"TypeMemberPointer","features":[542]},{"name":"TypePointer","features":[542]},{"name":"TypeTypedef","features":[542]},{"name":"TypeUDT","features":[542]},{"name":"UNAVAILABLE_ERROR","features":[542]},{"name":"Unrelated","features":[542]},{"name":"VIRTUAL_TO_PHYSICAL","features":[542]},{"name":"VarArgsCStyle","features":[542]},{"name":"VarArgsKind","features":[542]},{"name":"VarArgsNone","features":[542]},{"name":"WDBGEXTS_ADDRESS_DEFAULT","features":[542]},{"name":"WDBGEXTS_ADDRESS_RESERVED0","features":[542]},{"name":"WDBGEXTS_ADDRESS_SEG16","features":[542]},{"name":"WDBGEXTS_ADDRESS_SEG32","features":[542]},{"name":"WDBGEXTS_CLR_DATA_INTERFACE","features":[542]},{"name":"WDBGEXTS_DISASSEMBLE_BUFFER","features":[542]},{"name":"WDBGEXTS_MODULE_IN_RANGE","features":[542]},{"name":"WDBGEXTS_QUERY_INTERFACE","features":[542]},{"name":"WDBGEXTS_THREAD_OS_INFO","features":[542]},{"name":"WINDBG_EXTENSION_APIS","features":[542,309]},{"name":"WINDBG_EXTENSION_APIS32","features":[542,309]},{"name":"WINDBG_EXTENSION_APIS64","features":[542,309]},{"name":"WINDBG_OLDKD_EXTENSION_APIS","features":[542]},{"name":"WINDBG_OLD_EXTENSION_APIS","features":[542]},{"name":"WIN_95","features":[542]},{"name":"WIN_98","features":[542]},{"name":"WIN_ME","features":[542]},{"name":"WIN_NT4","features":[542]},{"name":"WIN_NT5","features":[542]},{"name":"WIN_NT5_1","features":[542]},{"name":"WIN_NT5_2","features":[542]},{"name":"WIN_NT6_0","features":[542]},{"name":"WIN_NT6_1","features":[542]},{"name":"WIN_UNDEFINED","features":[542]},{"name":"XML_DRIVER_NODE_INFO","features":[542]},{"name":"_EXTSAPI_VER_","features":[542]},{"name":"fnDebugFailureAnalysisCreateInstance","features":[542]}],"556":[{"name":"ALPCGuid","features":[332]},{"name":"CLASSIC_EVENT_ID","features":[332]},{"name":"CLSID_TraceRelogger","features":[332]},{"name":"CONTROLTRACE_HANDLE","features":[332]},{"name":"CTraceRelogger","features":[332]},{"name":"CloseTrace","features":[303,332]},{"name":"ControlTraceA","features":[303,332]},{"name":"ControlTraceW","features":[303,332]},{"name":"CreateTraceInstanceId","features":[303,332]},{"name":"CveEventWrite","features":[332]},{"name":"DECODING_SOURCE","features":[332]},{"name":"DIAG_LOGGER_NAMEA","features":[332]},{"name":"DIAG_LOGGER_NAMEW","features":[332]},{"name":"DecodingSourceMax","features":[332]},{"name":"DecodingSourceTlg","features":[332]},{"name":"DecodingSourceWPP","features":[332]},{"name":"DecodingSourceWbem","features":[332]},{"name":"DecodingSourceXMLFile","features":[332]},{"name":"DefaultTraceSecurityGuid","features":[332]},{"name":"DiskIoGuid","features":[332]},{"name":"ENABLECALLBACK_ENABLED_STATE","features":[332]},{"name":"ENABLE_TRACE_PARAMETERS","features":[332]},{"name":"ENABLE_TRACE_PARAMETERS_V1","features":[332]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION","features":[332]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION_2","features":[332]},{"name":"ETW_ASCIICHAR_TYPE_VALUE","features":[332]},{"name":"ETW_ASCIISTRING_TYPE_VALUE","features":[332]},{"name":"ETW_BOOLEAN_TYPE_VALUE","features":[332]},{"name":"ETW_BOOL_TYPE_VALUE","features":[332]},{"name":"ETW_BUFFER_CALLBACK_INFORMATION","features":[303,332,540]},{"name":"ETW_BUFFER_CONTEXT","features":[332]},{"name":"ETW_BUFFER_HEADER","features":[332]},{"name":"ETW_BYTE_TYPE_VALUE","features":[332]},{"name":"ETW_CHAR_TYPE_VALUE","features":[332]},{"name":"ETW_COMPRESSION_RESUMPTION_MODE","features":[332]},{"name":"ETW_COUNTED_ANSISTRING_TYPE_VALUE","features":[332]},{"name":"ETW_COUNTED_STRING_TYPE_VALUE","features":[332]},{"name":"ETW_DATETIME_TYPE_VALUE","features":[332]},{"name":"ETW_DECIMAL_TYPE_VALUE","features":[332]},{"name":"ETW_DOUBLE_TYPE_VALUE","features":[332]},{"name":"ETW_GUID_TYPE_VALUE","features":[332]},{"name":"ETW_HIDDEN_TYPE_VALUE","features":[332]},{"name":"ETW_INT16_TYPE_VALUE","features":[332]},{"name":"ETW_INT32_TYPE_VALUE","features":[332]},{"name":"ETW_INT64_TYPE_VALUE","features":[332]},{"name":"ETW_NON_NULL_TERMINATED_STRING_TYPE_VALUE","features":[332]},{"name":"ETW_NULL_TYPE_VALUE","features":[332]},{"name":"ETW_OBJECT_TYPE_VALUE","features":[332]},{"name":"ETW_OPEN_TRACE_OPTIONS","features":[303,332,540]},{"name":"ETW_PMC_COUNTER_OWNER","features":[332]},{"name":"ETW_PMC_COUNTER_OWNERSHIP_STATUS","features":[332]},{"name":"ETW_PMC_COUNTER_OWNER_TYPE","features":[332]},{"name":"ETW_PMC_SESSION_INFO","features":[332]},{"name":"ETW_POINTER_TYPE_VALUE","features":[332]},{"name":"ETW_PROCESS_HANDLE_INFO_TYPE","features":[332]},{"name":"ETW_PROCESS_TRACE_MODES","features":[332]},{"name":"ETW_PROCESS_TRACE_MODE_NONE","features":[332]},{"name":"ETW_PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[332]},{"name":"ETW_PROVIDER_TRAIT_TYPE","features":[332]},{"name":"ETW_PTVECTOR_TYPE_VALUE","features":[332]},{"name":"ETW_REDUCED_ANSISTRING_TYPE_VALUE","features":[332]},{"name":"ETW_REDUCED_STRING_TYPE_VALUE","features":[332]},{"name":"ETW_REFRENCE_TYPE_VALUE","features":[332]},{"name":"ETW_REVERSED_COUNTED_ANSISTRING_TYPE_VALUE","features":[332]},{"name":"ETW_REVERSED_COUNTED_STRING_TYPE_VALUE","features":[332]},{"name":"ETW_SBYTE_TYPE_VALUE","features":[332]},{"name":"ETW_SID_TYPE_VALUE","features":[332]},{"name":"ETW_SINGLE_TYPE_VALUE","features":[332]},{"name":"ETW_SIZET_TYPE_VALUE","features":[332]},{"name":"ETW_STRING_TYPE_VALUE","features":[332]},{"name":"ETW_TRACE_PARTITION_INFORMATION","features":[332]},{"name":"ETW_TRACE_PARTITION_INFORMATION_V2","features":[332]},{"name":"ETW_UINT16_TYPE_VALUE","features":[332]},{"name":"ETW_UINT32_TYPE_VALUE","features":[332]},{"name":"ETW_UINT64_TYPE_VALUE","features":[332]},{"name":"ETW_VARIANT_TYPE_VALUE","features":[332]},{"name":"ETW_WMITIME_TYPE_VALUE","features":[332]},{"name":"EVENTMAP_ENTRY_VALUETYPE_STRING","features":[332]},{"name":"EVENTMAP_ENTRY_VALUETYPE_ULONG","features":[332]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_BITMAP","features":[332]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_PATTERNMAP","features":[332]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_VALUEMAP","features":[332]},{"name":"EVENTMAP_INFO_FLAG_WBEM_BITMAP","features":[332]},{"name":"EVENTMAP_INFO_FLAG_WBEM_FLAG","features":[332]},{"name":"EVENTMAP_INFO_FLAG_WBEM_NO_MAP","features":[332]},{"name":"EVENTMAP_INFO_FLAG_WBEM_VALUEMAP","features":[332]},{"name":"EVENTSECURITYOPERATION","features":[332]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_ID","features":[332]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_SET_ID","features":[332]},{"name":"EVENT_ACTIVITY_CTRL_GET_ID","features":[332]},{"name":"EVENT_ACTIVITY_CTRL_GET_SET_ID","features":[332]},{"name":"EVENT_ACTIVITY_CTRL_SET_ID","features":[332]},{"name":"EVENT_CONTROL_CODE_CAPTURE_STATE","features":[332]},{"name":"EVENT_CONTROL_CODE_DISABLE_PROVIDER","features":[332]},{"name":"EVENT_CONTROL_CODE_ENABLE_PROVIDER","features":[332]},{"name":"EVENT_DATA_DESCRIPTOR","features":[332]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_EVENT_METADATA","features":[332]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_NONE","features":[332]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_PROVIDER_METADATA","features":[332]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_TIMESTAMP_OVERRIDE","features":[332]},{"name":"EVENT_DESCRIPTOR","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_KEYWORD_0","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_SILOS","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_EVENT_KEY","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_EXCLUDE_INPRIVATE","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_IGNORE_KEYWORD_0","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_PROCESS_START_KEY","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_PROVIDER_GROUP","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_PSM_KEY","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_SID","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_SOURCE_CONTAINER_TRACKING","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_STACK_TRACE","features":[332]},{"name":"EVENT_ENABLE_PROPERTY_TS_ID","features":[332]},{"name":"EVENT_EXTENDED_ITEM_EVENT_KEY","features":[332]},{"name":"EVENT_EXTENDED_ITEM_INSTANCE","features":[332]},{"name":"EVENT_EXTENDED_ITEM_PEBS_INDEX","features":[332]},{"name":"EVENT_EXTENDED_ITEM_PMC_COUNTERS","features":[332]},{"name":"EVENT_EXTENDED_ITEM_PROCESS_START_KEY","features":[332]},{"name":"EVENT_EXTENDED_ITEM_RELATED_ACTIVITYID","features":[332]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY32","features":[332]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY64","features":[332]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE32","features":[332]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE64","features":[332]},{"name":"EVENT_EXTENDED_ITEM_TS_ID","features":[332]},{"name":"EVENT_FIELD_TYPE","features":[332]},{"name":"EVENT_FILTER_DESCRIPTOR","features":[332]},{"name":"EVENT_FILTER_EVENT_ID","features":[303,332]},{"name":"EVENT_FILTER_EVENT_NAME","features":[303,332]},{"name":"EVENT_FILTER_HEADER","features":[332]},{"name":"EVENT_FILTER_LEVEL_KW","features":[303,332]},{"name":"EVENT_FILTER_TYPE_CONTAINER","features":[332]},{"name":"EVENT_FILTER_TYPE_EVENT_ID","features":[332]},{"name":"EVENT_FILTER_TYPE_EVENT_NAME","features":[332]},{"name":"EVENT_FILTER_TYPE_EXECUTABLE_NAME","features":[332]},{"name":"EVENT_FILTER_TYPE_NONE","features":[332]},{"name":"EVENT_FILTER_TYPE_PACKAGE_APP_ID","features":[332]},{"name":"EVENT_FILTER_TYPE_PACKAGE_ID","features":[332]},{"name":"EVENT_FILTER_TYPE_PAYLOAD","features":[332]},{"name":"EVENT_FILTER_TYPE_PID","features":[332]},{"name":"EVENT_FILTER_TYPE_SCHEMATIZED","features":[332]},{"name":"EVENT_FILTER_TYPE_STACKWALK","features":[332]},{"name":"EVENT_FILTER_TYPE_STACKWALK_LEVEL_KW","features":[332]},{"name":"EVENT_FILTER_TYPE_STACKWALK_NAME","features":[332]},{"name":"EVENT_FILTER_TYPE_SYSTEM_FLAGS","features":[332]},{"name":"EVENT_FILTER_TYPE_TRACEHANDLE","features":[332]},{"name":"EVENT_HEADER","features":[332]},{"name":"EVENT_HEADER_EXTENDED_DATA_ITEM","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_CONTAINER_ID","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_CONTROL_GUID","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_KEY","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_SCHEMA_TL","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_INSTANCE_INFO","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_MAX","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_PEBS_INDEX","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_PMC_COUNTERS","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_PROCESS_START_KEY","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_PROV_TRAITS","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_PSM_KEY","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_QPC_DELTA","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_RELATED_ACTIVITYID","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_SID","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY32","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY64","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE32","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE64","features":[332]},{"name":"EVENT_HEADER_EXT_TYPE_TS_ID","features":[332]},{"name":"EVENT_HEADER_FLAG_32_BIT_HEADER","features":[332]},{"name":"EVENT_HEADER_FLAG_64_BIT_HEADER","features":[332]},{"name":"EVENT_HEADER_FLAG_CLASSIC_HEADER","features":[332]},{"name":"EVENT_HEADER_FLAG_DECODE_GUID","features":[332]},{"name":"EVENT_HEADER_FLAG_EXTENDED_INFO","features":[332]},{"name":"EVENT_HEADER_FLAG_NO_CPUTIME","features":[332]},{"name":"EVENT_HEADER_FLAG_PRIVATE_SESSION","features":[332]},{"name":"EVENT_HEADER_FLAG_PROCESSOR_INDEX","features":[332]},{"name":"EVENT_HEADER_FLAG_STRING_ONLY","features":[332]},{"name":"EVENT_HEADER_FLAG_TRACE_MESSAGE","features":[332]},{"name":"EVENT_HEADER_PROPERTY_FORWARDED_XML","features":[332]},{"name":"EVENT_HEADER_PROPERTY_LEGACY_EVENTLOG","features":[332]},{"name":"EVENT_HEADER_PROPERTY_RELOGGABLE","features":[332]},{"name":"EVENT_HEADER_PROPERTY_XML","features":[332]},{"name":"EVENT_INFO_CLASS","features":[332]},{"name":"EVENT_INSTANCE_HEADER","features":[332]},{"name":"EVENT_INSTANCE_INFO","features":[303,332]},{"name":"EVENT_LOGGER_NAME","features":[332]},{"name":"EVENT_LOGGER_NAMEA","features":[332]},{"name":"EVENT_LOGGER_NAMEW","features":[332]},{"name":"EVENT_MAP_ENTRY","features":[332]},{"name":"EVENT_MAP_INFO","features":[332]},{"name":"EVENT_MAX_LEVEL","features":[332]},{"name":"EVENT_MIN_LEVEL","features":[332]},{"name":"EVENT_PROPERTY_INFO","features":[332]},{"name":"EVENT_RECORD","features":[332]},{"name":"EVENT_TRACE","features":[332]},{"name":"EVENT_TRACE_ADDTO_TRIAGE_DUMP","features":[332]},{"name":"EVENT_TRACE_ADD_HEADER_MODE","features":[332]},{"name":"EVENT_TRACE_BUFFERING_MODE","features":[332]},{"name":"EVENT_TRACE_COMPRESSED_MODE","features":[332]},{"name":"EVENT_TRACE_CONTROL","features":[332]},{"name":"EVENT_TRACE_CONTROL_CONVERT_TO_REALTIME","features":[332]},{"name":"EVENT_TRACE_CONTROL_FLUSH","features":[332]},{"name":"EVENT_TRACE_CONTROL_INCREMENT_FILE","features":[332]},{"name":"EVENT_TRACE_CONTROL_QUERY","features":[332]},{"name":"EVENT_TRACE_CONTROL_STOP","features":[332]},{"name":"EVENT_TRACE_CONTROL_UPDATE","features":[332]},{"name":"EVENT_TRACE_DELAY_OPEN_FILE_MODE","features":[332]},{"name":"EVENT_TRACE_FILE_MODE_APPEND","features":[332]},{"name":"EVENT_TRACE_FILE_MODE_CIRCULAR","features":[332]},{"name":"EVENT_TRACE_FILE_MODE_NEWFILE","features":[332]},{"name":"EVENT_TRACE_FILE_MODE_NONE","features":[332]},{"name":"EVENT_TRACE_FILE_MODE_PREALLOCATE","features":[332]},{"name":"EVENT_TRACE_FILE_MODE_SEQUENTIAL","features":[332]},{"name":"EVENT_TRACE_FLAG","features":[332]},{"name":"EVENT_TRACE_FLAG_ALPC","features":[332]},{"name":"EVENT_TRACE_FLAG_CSWITCH","features":[332]},{"name":"EVENT_TRACE_FLAG_DBGPRINT","features":[332]},{"name":"EVENT_TRACE_FLAG_DEBUG_EVENTS","features":[332]},{"name":"EVENT_TRACE_FLAG_DISK_FILE_IO","features":[332]},{"name":"EVENT_TRACE_FLAG_DISK_IO","features":[332]},{"name":"EVENT_TRACE_FLAG_DISK_IO_INIT","features":[332]},{"name":"EVENT_TRACE_FLAG_DISPATCHER","features":[332]},{"name":"EVENT_TRACE_FLAG_DPC","features":[332]},{"name":"EVENT_TRACE_FLAG_DRIVER","features":[332]},{"name":"EVENT_TRACE_FLAG_ENABLE_RESERVE","features":[332]},{"name":"EVENT_TRACE_FLAG_EXTENSION","features":[332]},{"name":"EVENT_TRACE_FLAG_FILE_IO","features":[332]},{"name":"EVENT_TRACE_FLAG_FILE_IO_INIT","features":[332]},{"name":"EVENT_TRACE_FLAG_FORWARD_WMI","features":[332]},{"name":"EVENT_TRACE_FLAG_IMAGE_LOAD","features":[332]},{"name":"EVENT_TRACE_FLAG_INTERRUPT","features":[332]},{"name":"EVENT_TRACE_FLAG_JOB","features":[332]},{"name":"EVENT_TRACE_FLAG_MEMORY_HARD_FAULTS","features":[332]},{"name":"EVENT_TRACE_FLAG_MEMORY_PAGE_FAULTS","features":[332]},{"name":"EVENT_TRACE_FLAG_NETWORK_TCPIP","features":[332]},{"name":"EVENT_TRACE_FLAG_NO_SYSCONFIG","features":[332]},{"name":"EVENT_TRACE_FLAG_PROCESS","features":[332]},{"name":"EVENT_TRACE_FLAG_PROCESS_COUNTERS","features":[332]},{"name":"EVENT_TRACE_FLAG_PROFILE","features":[332]},{"name":"EVENT_TRACE_FLAG_REGISTRY","features":[332]},{"name":"EVENT_TRACE_FLAG_SPLIT_IO","features":[332]},{"name":"EVENT_TRACE_FLAG_SYSTEMCALL","features":[332]},{"name":"EVENT_TRACE_FLAG_THREAD","features":[332]},{"name":"EVENT_TRACE_FLAG_VAMAP","features":[332]},{"name":"EVENT_TRACE_FLAG_VIRTUAL_ALLOC","features":[332]},{"name":"EVENT_TRACE_HEADER","features":[332]},{"name":"EVENT_TRACE_INDEPENDENT_SESSION_MODE","features":[332]},{"name":"EVENT_TRACE_LOGFILEA","features":[303,332,540]},{"name":"EVENT_TRACE_LOGFILEW","features":[303,332,540]},{"name":"EVENT_TRACE_MODE_RESERVED","features":[332]},{"name":"EVENT_TRACE_NONSTOPPABLE_MODE","features":[332]},{"name":"EVENT_TRACE_NO_PER_PROCESSOR_BUFFERING","features":[332]},{"name":"EVENT_TRACE_PERSIST_ON_HYBRID_SHUTDOWN","features":[332]},{"name":"EVENT_TRACE_PRIVATE_IN_PROC","features":[332]},{"name":"EVENT_TRACE_PRIVATE_LOGGER_MODE","features":[332]},{"name":"EVENT_TRACE_PROPERTIES","features":[303,332]},{"name":"EVENT_TRACE_PROPERTIES_V2","features":[303,332]},{"name":"EVENT_TRACE_REAL_TIME_MODE","features":[332]},{"name":"EVENT_TRACE_RELOG_MODE","features":[332]},{"name":"EVENT_TRACE_SECURE_MODE","features":[332]},{"name":"EVENT_TRACE_STOP_ON_HYBRID_SHUTDOWN","features":[332]},{"name":"EVENT_TRACE_SYSTEM_LOGGER_MODE","features":[332]},{"name":"EVENT_TRACE_TYPE_ACCEPT","features":[332]},{"name":"EVENT_TRACE_TYPE_ACKDUP","features":[332]},{"name":"EVENT_TRACE_TYPE_ACKFULL","features":[332]},{"name":"EVENT_TRACE_TYPE_ACKPART","features":[332]},{"name":"EVENT_TRACE_TYPE_CHECKPOINT","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_BOOT","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_CI_INFO","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_CPU","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEFRAG","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEVICEFAMILY","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_DPI","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_FLIGHTID","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_IDECHANNEL","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_IRQ","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_LOGICALDISK","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_MACHINEID","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_MOBILEPLATFORM","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_NETINFO","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_NIC","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_NUMANODE","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_OPTICALMEDIA","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK_EX","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_PLATFORM","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_PNP","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_POWER","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSOR","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORGROUP","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORNUMBER","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_SERVICES","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIDEO","features":[332]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIRTUALIZATION","features":[332]},{"name":"EVENT_TRACE_TYPE_CONNECT","features":[332]},{"name":"EVENT_TRACE_TYPE_CONNFAIL","features":[332]},{"name":"EVENT_TRACE_TYPE_COPY_ARP","features":[332]},{"name":"EVENT_TRACE_TYPE_COPY_TCP","features":[332]},{"name":"EVENT_TRACE_TYPE_DBGID_RSDS","features":[332]},{"name":"EVENT_TRACE_TYPE_DC_END","features":[332]},{"name":"EVENT_TRACE_TYPE_DC_START","features":[332]},{"name":"EVENT_TRACE_TYPE_DEQUEUE","features":[332]},{"name":"EVENT_TRACE_TYPE_DISCONNECT","features":[332]},{"name":"EVENT_TRACE_TYPE_END","features":[332]},{"name":"EVENT_TRACE_TYPE_EXTENSION","features":[332]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_COMPLETION","features":[332]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_FAILURE","features":[332]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_COMPLETION","features":[332]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_FAILURE","features":[332]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_GUIDMAP","features":[332]},{"name":"EVENT_TRACE_TYPE_INFO","features":[332]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH","features":[332]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_IO_READ","features":[332]},{"name":"EVENT_TRACE_TYPE_IO_READ_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_IO_REDIRECTED_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_IO_WRITE","features":[332]},{"name":"EVENT_TRACE_TYPE_IO_WRITE_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_LOAD","features":[332]},{"name":"EVENT_TRACE_TYPE_MM_AV","features":[332]},{"name":"EVENT_TRACE_TYPE_MM_COW","features":[332]},{"name":"EVENT_TRACE_TYPE_MM_DZF","features":[332]},{"name":"EVENT_TRACE_TYPE_MM_GPF","features":[332]},{"name":"EVENT_TRACE_TYPE_MM_HPF","features":[332]},{"name":"EVENT_TRACE_TYPE_MM_TF","features":[332]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH","features":[332]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ","features":[332]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE","features":[332]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE_INIT","features":[332]},{"name":"EVENT_TRACE_TYPE_RECEIVE","features":[332]},{"name":"EVENT_TRACE_TYPE_RECONNECT","features":[332]},{"name":"EVENT_TRACE_TYPE_REGCLOSE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGCOMMIT","features":[332]},{"name":"EVENT_TRACE_TYPE_REGCREATE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGDELETE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGDELETEVALUE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEKEY","features":[332]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEVALUEKEY","features":[332]},{"name":"EVENT_TRACE_TYPE_REGFLUSH","features":[332]},{"name":"EVENT_TRACE_TYPE_REGKCBCREATE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGKCBDELETE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNBEGIN","features":[332]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNEND","features":[332]},{"name":"EVENT_TRACE_TYPE_REGMOUNTHIVE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGOPEN","features":[332]},{"name":"EVENT_TRACE_TYPE_REGPREPARE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGQUERY","features":[332]},{"name":"EVENT_TRACE_TYPE_REGQUERYMULTIPLEVALUE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGQUERYSECURITY","features":[332]},{"name":"EVENT_TRACE_TYPE_REGQUERYVALUE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGROLLBACK","features":[332]},{"name":"EVENT_TRACE_TYPE_REGSETINFORMATION","features":[332]},{"name":"EVENT_TRACE_TYPE_REGSETSECURITY","features":[332]},{"name":"EVENT_TRACE_TYPE_REGSETVALUE","features":[332]},{"name":"EVENT_TRACE_TYPE_REGVIRTUALIZE","features":[332]},{"name":"EVENT_TRACE_TYPE_REPLY","features":[332]},{"name":"EVENT_TRACE_TYPE_RESUME","features":[332]},{"name":"EVENT_TRACE_TYPE_RETRANSMIT","features":[332]},{"name":"EVENT_TRACE_TYPE_SECURITY","features":[332]},{"name":"EVENT_TRACE_TYPE_SEND","features":[332]},{"name":"EVENT_TRACE_TYPE_SIDINFO","features":[332]},{"name":"EVENT_TRACE_TYPE_START","features":[332]},{"name":"EVENT_TRACE_TYPE_STOP","features":[332]},{"name":"EVENT_TRACE_TYPE_SUSPEND","features":[332]},{"name":"EVENT_TRACE_TYPE_TERMINATE","features":[332]},{"name":"EVENT_TRACE_TYPE_WINEVT_RECEIVE","features":[332]},{"name":"EVENT_TRACE_TYPE_WINEVT_SEND","features":[332]},{"name":"EVENT_TRACE_USE_GLOBAL_SEQUENCE","features":[332]},{"name":"EVENT_TRACE_USE_KBYTES_FOR_SIZE","features":[332]},{"name":"EVENT_TRACE_USE_LOCAL_SEQUENCE","features":[332]},{"name":"EVENT_TRACE_USE_NOCPUTIME","features":[332]},{"name":"EVENT_TRACE_USE_PAGED_MEMORY","features":[332]},{"name":"EVENT_TRACE_USE_PROCTIME","features":[332]},{"name":"EVENT_WRITE_FLAG_INPRIVATE","features":[332]},{"name":"EVENT_WRITE_FLAG_NO_FAULTING","features":[332]},{"name":"EnableTrace","features":[303,332]},{"name":"EnableTraceEx","features":[303,332]},{"name":"EnableTraceEx2","features":[303,332]},{"name":"EnumerateTraceGuids","features":[303,332]},{"name":"EnumerateTraceGuidsEx","features":[303,332]},{"name":"EtwCompressionModeNoDisable","features":[332]},{"name":"EtwCompressionModeNoRestart","features":[332]},{"name":"EtwCompressionModeRestart","features":[332]},{"name":"EtwPmcOwnerFree","features":[332]},{"name":"EtwPmcOwnerTagged","features":[332]},{"name":"EtwPmcOwnerTaggedWithSource","features":[332]},{"name":"EtwPmcOwnerUntagged","features":[332]},{"name":"EtwProviderTraitDecodeGuid","features":[332]},{"name":"EtwProviderTraitTypeGroup","features":[332]},{"name":"EtwProviderTraitTypeMax","features":[332]},{"name":"EtwQueryLastDroppedTimes","features":[332]},{"name":"EtwQueryLogFileHeader","features":[332]},{"name":"EtwQueryPartitionInformation","features":[332]},{"name":"EtwQueryPartitionInformationV2","features":[332]},{"name":"EtwQueryProcessHandleInfoMax","features":[332]},{"name":"EventAccessControl","features":[303,332]},{"name":"EventAccessQuery","features":[306,332]},{"name":"EventAccessRemove","features":[332]},{"name":"EventActivityIdControl","features":[332]},{"name":"EventChannelInformation","features":[332]},{"name":"EventEnabled","features":[303,332]},{"name":"EventInformationMax","features":[332]},{"name":"EventKeywordInformation","features":[332]},{"name":"EventLevelInformation","features":[332]},{"name":"EventOpcodeInformation","features":[332]},{"name":"EventProviderBinaryTrackInfo","features":[332]},{"name":"EventProviderEnabled","features":[303,332]},{"name":"EventProviderSetReserved1","features":[332]},{"name":"EventProviderSetTraits","features":[332]},{"name":"EventProviderUseDescriptorType","features":[332]},{"name":"EventRegister","features":[332]},{"name":"EventSecurityAddDACL","features":[332]},{"name":"EventSecurityAddSACL","features":[332]},{"name":"EventSecurityMax","features":[332]},{"name":"EventSecuritySetDACL","features":[332]},{"name":"EventSecuritySetSACL","features":[332]},{"name":"EventSetInformation","features":[332]},{"name":"EventTaskInformation","features":[332]},{"name":"EventTraceConfigGuid","features":[332]},{"name":"EventTraceGuid","features":[332]},{"name":"EventUnregister","features":[332]},{"name":"EventWrite","features":[332]},{"name":"EventWriteEx","features":[332]},{"name":"EventWriteString","features":[332]},{"name":"EventWriteTransfer","features":[332]},{"name":"FileIoGuid","features":[332]},{"name":"FlushTraceA","features":[303,332]},{"name":"FlushTraceW","features":[303,332]},{"name":"GLOBAL_LOGGER_NAME","features":[332]},{"name":"GLOBAL_LOGGER_NAMEA","features":[332]},{"name":"GLOBAL_LOGGER_NAMEW","features":[332]},{"name":"GetTraceEnableFlags","features":[332]},{"name":"GetTraceEnableLevel","features":[332]},{"name":"GetTraceLoggerHandle","features":[332]},{"name":"ITraceEvent","features":[332]},{"name":"ITraceEventCallback","features":[332]},{"name":"ITraceRelogger","features":[332]},{"name":"ImageLoadGuid","features":[332]},{"name":"KERNEL_LOGGER_NAME","features":[332]},{"name":"KERNEL_LOGGER_NAMEA","features":[332]},{"name":"KERNEL_LOGGER_NAMEW","features":[332]},{"name":"MAP_FLAGS","features":[332]},{"name":"MAP_VALUETYPE","features":[332]},{"name":"MAX_EVENT_DATA_DESCRIPTORS","features":[332]},{"name":"MAX_EVENT_FILTERS_COUNT","features":[332]},{"name":"MAX_EVENT_FILTER_DATA_SIZE","features":[332]},{"name":"MAX_EVENT_FILTER_EVENT_ID_COUNT","features":[332]},{"name":"MAX_EVENT_FILTER_EVENT_NAME_SIZE","features":[332]},{"name":"MAX_EVENT_FILTER_PAYLOAD_SIZE","features":[332]},{"name":"MAX_EVENT_FILTER_PID_COUNT","features":[332]},{"name":"MAX_MOF_FIELDS","features":[332]},{"name":"MAX_PAYLOAD_PREDICATES","features":[332]},{"name":"MOF_FIELD","features":[332]},{"name":"MaxEventInfo","features":[332]},{"name":"MaxTraceSetInfoClass","features":[332]},{"name":"OFFSETINSTANCEDATAANDLENGTH","features":[332]},{"name":"OpenTraceA","features":[303,332,540]},{"name":"OpenTraceFromBufferStream","features":[303,332,540]},{"name":"OpenTraceFromFile","features":[303,332,540]},{"name":"OpenTraceFromRealTimeLogger","features":[303,332,540]},{"name":"OpenTraceFromRealTimeLoggerWithAllocationOptions","features":[303,332,540]},{"name":"OpenTraceW","features":[303,332,540]},{"name":"PAYLOADFIELD_BETWEEN","features":[332]},{"name":"PAYLOADFIELD_CONTAINS","features":[332]},{"name":"PAYLOADFIELD_DOESNTCONTAIN","features":[332]},{"name":"PAYLOADFIELD_EQ","features":[332]},{"name":"PAYLOADFIELD_GE","features":[332]},{"name":"PAYLOADFIELD_GT","features":[332]},{"name":"PAYLOADFIELD_INVALID","features":[332]},{"name":"PAYLOADFIELD_IS","features":[332]},{"name":"PAYLOADFIELD_ISNOT","features":[332]},{"name":"PAYLOADFIELD_LE","features":[332]},{"name":"PAYLOADFIELD_LT","features":[332]},{"name":"PAYLOADFIELD_MODULO","features":[332]},{"name":"PAYLOADFIELD_NE","features":[332]},{"name":"PAYLOADFIELD_NOTBETWEEN","features":[332]},{"name":"PAYLOAD_FILTER_PREDICATE","features":[332]},{"name":"PAYLOAD_OPERATOR","features":[332]},{"name":"PENABLECALLBACK","features":[332]},{"name":"PETW_BUFFER_CALLBACK","features":[303,332,540]},{"name":"PETW_BUFFER_COMPLETION_CALLBACK","features":[332]},{"name":"PEVENT_CALLBACK","features":[332]},{"name":"PEVENT_RECORD_CALLBACK","features":[332]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKA","features":[303,332,540]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKW","features":[303,332,540]},{"name":"PROCESSTRACE_HANDLE","features":[332]},{"name":"PROCESS_TRACE_MODE_EVENT_RECORD","features":[332]},{"name":"PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[332]},{"name":"PROCESS_TRACE_MODE_REAL_TIME","features":[332]},{"name":"PROFILE_SOURCE_INFO","features":[332]},{"name":"PROPERTY_DATA_DESCRIPTOR","features":[332]},{"name":"PROPERTY_FLAGS","features":[332]},{"name":"PROVIDER_ENUMERATION_INFO","features":[332]},{"name":"PROVIDER_EVENT_INFO","features":[332]},{"name":"PROVIDER_FIELD_INFO","features":[332]},{"name":"PROVIDER_FIELD_INFOARRAY","features":[332]},{"name":"PROVIDER_FILTER_INFO","features":[332]},{"name":"PageFaultGuid","features":[332]},{"name":"PerfInfoGuid","features":[332]},{"name":"PrivateLoggerNotificationGuid","features":[332]},{"name":"ProcessGuid","features":[332]},{"name":"ProcessTrace","features":[303,332]},{"name":"ProcessTraceAddBufferToBufferStream","features":[332]},{"name":"ProcessTraceBufferDecrementReference","features":[332]},{"name":"ProcessTraceBufferIncrementReference","features":[332]},{"name":"PropertyHasCustomSchema","features":[332]},{"name":"PropertyHasTags","features":[332]},{"name":"PropertyParamCount","features":[332]},{"name":"PropertyParamFixedCount","features":[332]},{"name":"PropertyParamFixedLength","features":[332]},{"name":"PropertyParamLength","features":[332]},{"name":"PropertyStruct","features":[332]},{"name":"PropertyWBEMXmlFragment","features":[332]},{"name":"QueryAllTracesA","features":[303,332]},{"name":"QueryAllTracesW","features":[303,332]},{"name":"QueryTraceA","features":[303,332]},{"name":"QueryTraceProcessingHandle","features":[303,332]},{"name":"QueryTraceW","features":[303,332]},{"name":"RELOGSTREAM_HANDLE","features":[332]},{"name":"RegisterTraceGuidsA","features":[303,332]},{"name":"RegisterTraceGuidsW","features":[303,332]},{"name":"RegistryGuid","features":[332]},{"name":"RemoveTraceCallback","features":[303,332]},{"name":"SYSTEM_ALPC_KW_GENERAL","features":[332]},{"name":"SYSTEM_CONFIG_KW_GRAPHICS","features":[332]},{"name":"SYSTEM_CONFIG_KW_NETWORK","features":[332]},{"name":"SYSTEM_CONFIG_KW_OPTICAL","features":[332]},{"name":"SYSTEM_CONFIG_KW_PNP","features":[332]},{"name":"SYSTEM_CONFIG_KW_SERVICES","features":[332]},{"name":"SYSTEM_CONFIG_KW_STORAGE","features":[332]},{"name":"SYSTEM_CONFIG_KW_SYSTEM","features":[332]},{"name":"SYSTEM_CPU_KW_CACHE_FLUSH","features":[332]},{"name":"SYSTEM_CPU_KW_CONFIG","features":[332]},{"name":"SYSTEM_CPU_KW_SPEC_CONTROL","features":[332]},{"name":"SYSTEM_EVENT_TYPE","features":[332]},{"name":"SYSTEM_HYPERVISOR_KW_CALLOUTS","features":[332]},{"name":"SYSTEM_HYPERVISOR_KW_PROFILE","features":[332]},{"name":"SYSTEM_HYPERVISOR_KW_VTL_CHANGE","features":[332]},{"name":"SYSTEM_INTERRUPT_KW_CLOCK_INTERRUPT","features":[332]},{"name":"SYSTEM_INTERRUPT_KW_DPC","features":[332]},{"name":"SYSTEM_INTERRUPT_KW_DPC_QUEUE","features":[332]},{"name":"SYSTEM_INTERRUPT_KW_GENERAL","features":[332]},{"name":"SYSTEM_INTERRUPT_KW_IPI","features":[332]},{"name":"SYSTEM_INTERRUPT_KW_WDF_DPC","features":[332]},{"name":"SYSTEM_INTERRUPT_KW_WDF_INTERRUPT","features":[332]},{"name":"SYSTEM_IOFILTER_KW_FAILURE","features":[332]},{"name":"SYSTEM_IOFILTER_KW_FASTIO","features":[332]},{"name":"SYSTEM_IOFILTER_KW_GENERAL","features":[332]},{"name":"SYSTEM_IOFILTER_KW_INIT","features":[332]},{"name":"SYSTEM_IO_KW_CC","features":[332]},{"name":"SYSTEM_IO_KW_DISK","features":[332]},{"name":"SYSTEM_IO_KW_DISK_INIT","features":[332]},{"name":"SYSTEM_IO_KW_DRIVERS","features":[332]},{"name":"SYSTEM_IO_KW_FILE","features":[332]},{"name":"SYSTEM_IO_KW_FILENAME","features":[332]},{"name":"SYSTEM_IO_KW_NETWORK","features":[332]},{"name":"SYSTEM_IO_KW_OPTICAL","features":[332]},{"name":"SYSTEM_IO_KW_OPTICAL_INIT","features":[332]},{"name":"SYSTEM_IO_KW_SPLIT","features":[332]},{"name":"SYSTEM_LOCK_KW_SPINLOCK","features":[332]},{"name":"SYSTEM_LOCK_KW_SPINLOCK_COUNTERS","features":[332]},{"name":"SYSTEM_LOCK_KW_SYNC_OBJECTS","features":[332]},{"name":"SYSTEM_MEMORY_KW_ALL_FAULTS","features":[332]},{"name":"SYSTEM_MEMORY_KW_CONTMEM_GEN","features":[332]},{"name":"SYSTEM_MEMORY_KW_FOOTPRINT","features":[332]},{"name":"SYSTEM_MEMORY_KW_GENERAL","features":[332]},{"name":"SYSTEM_MEMORY_KW_HARD_FAULTS","features":[332]},{"name":"SYSTEM_MEMORY_KW_HEAP","features":[332]},{"name":"SYSTEM_MEMORY_KW_MEMINFO","features":[332]},{"name":"SYSTEM_MEMORY_KW_MEMINFO_WS","features":[332]},{"name":"SYSTEM_MEMORY_KW_NONTRADEABLE","features":[332]},{"name":"SYSTEM_MEMORY_KW_PFSECTION","features":[332]},{"name":"SYSTEM_MEMORY_KW_POOL","features":[332]},{"name":"SYSTEM_MEMORY_KW_REFSET","features":[332]},{"name":"SYSTEM_MEMORY_KW_SESSION","features":[332]},{"name":"SYSTEM_MEMORY_KW_VAMAP","features":[332]},{"name":"SYSTEM_MEMORY_KW_VIRTUAL_ALLOC","features":[332]},{"name":"SYSTEM_MEMORY_KW_WS","features":[332]},{"name":"SYSTEM_MEMORY_POOL_FILTER_ID","features":[332]},{"name":"SYSTEM_OBJECT_KW_GENERAL","features":[332]},{"name":"SYSTEM_OBJECT_KW_HANDLE","features":[332]},{"name":"SYSTEM_POWER_KW_GENERAL","features":[332]},{"name":"SYSTEM_POWER_KW_HIBER_RUNDOWN","features":[332]},{"name":"SYSTEM_POWER_KW_IDLE_SELECTION","features":[332]},{"name":"SYSTEM_POWER_KW_PPM_EXIT_LATENCY","features":[332]},{"name":"SYSTEM_POWER_KW_PROCESSOR_IDLE","features":[332]},{"name":"SYSTEM_PROCESS_KW_DBGPRINT","features":[332]},{"name":"SYSTEM_PROCESS_KW_DEBUG_EVENTS","features":[332]},{"name":"SYSTEM_PROCESS_KW_FREEZE","features":[332]},{"name":"SYSTEM_PROCESS_KW_GENERAL","features":[332]},{"name":"SYSTEM_PROCESS_KW_INSWAP","features":[332]},{"name":"SYSTEM_PROCESS_KW_JOB","features":[332]},{"name":"SYSTEM_PROCESS_KW_LOADER","features":[332]},{"name":"SYSTEM_PROCESS_KW_PERF_COUNTER","features":[332]},{"name":"SYSTEM_PROCESS_KW_THREAD","features":[332]},{"name":"SYSTEM_PROCESS_KW_WAKE_COUNTER","features":[332]},{"name":"SYSTEM_PROCESS_KW_WAKE_DROP","features":[332]},{"name":"SYSTEM_PROCESS_KW_WAKE_EVENT","features":[332]},{"name":"SYSTEM_PROCESS_KW_WORKER_THREAD","features":[332]},{"name":"SYSTEM_PROFILE_KW_GENERAL","features":[332]},{"name":"SYSTEM_PROFILE_KW_PMC_PROFILE","features":[332]},{"name":"SYSTEM_REGISTRY_KW_GENERAL","features":[332]},{"name":"SYSTEM_REGISTRY_KW_HIVE","features":[332]},{"name":"SYSTEM_REGISTRY_KW_NOTIFICATION","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_AFFINITY","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_ANTI_STARVATION","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_COMPACT_CSWITCH","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_CONTEXT_SWITCH","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_DISPATCHER","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_IDEAL_PROCESSOR","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_KERNEL_QUEUE","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_LOAD_BALANCER","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_PRIORITY","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_SHOULD_YIELD","features":[332]},{"name":"SYSTEM_SCHEDULER_KW_XSCHEDULER","features":[332]},{"name":"SYSTEM_SYSCALL_KW_GENERAL","features":[332]},{"name":"SYSTEM_TIMER_KW_CLOCK_TIMER","features":[332]},{"name":"SYSTEM_TIMER_KW_GENERAL","features":[332]},{"name":"SetTraceCallback","features":[303,332]},{"name":"SplitIoGuid","features":[332]},{"name":"StartTraceA","features":[303,332]},{"name":"StartTraceW","features":[303,332]},{"name":"StopTraceA","features":[303,332]},{"name":"StopTraceW","features":[303,332]},{"name":"SystemAlpcProviderGuid","features":[332]},{"name":"SystemConfigProviderGuid","features":[332]},{"name":"SystemCpuProviderGuid","features":[332]},{"name":"SystemHypervisorProviderGuid","features":[332]},{"name":"SystemInterruptProviderGuid","features":[332]},{"name":"SystemIoFilterProviderGuid","features":[332]},{"name":"SystemIoProviderGuid","features":[332]},{"name":"SystemLockProviderGuid","features":[332]},{"name":"SystemMemoryProviderGuid","features":[332]},{"name":"SystemObjectProviderGuid","features":[332]},{"name":"SystemPowerProviderGuid","features":[332]},{"name":"SystemProcessProviderGuid","features":[332]},{"name":"SystemProfileProviderGuid","features":[332]},{"name":"SystemRegistryProviderGuid","features":[332]},{"name":"SystemSchedulerProviderGuid","features":[332]},{"name":"SystemSyscallProviderGuid","features":[332]},{"name":"SystemTimerProviderGuid","features":[332]},{"name":"SystemTraceControlGuid","features":[332]},{"name":"TDH_CONTEXT","features":[332]},{"name":"TDH_CONTEXT_MAXIMUM","features":[332]},{"name":"TDH_CONTEXT_PDB_PATH","features":[332]},{"name":"TDH_CONTEXT_POINTERSIZE","features":[332]},{"name":"TDH_CONTEXT_TYPE","features":[332]},{"name":"TDH_CONTEXT_WPP_GMT","features":[332]},{"name":"TDH_CONTEXT_WPP_TMFFILE","features":[332]},{"name":"TDH_CONTEXT_WPP_TMFSEARCHPATH","features":[332]},{"name":"TDH_HANDLE","features":[332]},{"name":"TDH_INTYPE_ANSICHAR","features":[332]},{"name":"TDH_INTYPE_ANSISTRING","features":[332]},{"name":"TDH_INTYPE_BINARY","features":[332]},{"name":"TDH_INTYPE_BOOLEAN","features":[332]},{"name":"TDH_INTYPE_COUNTEDANSISTRING","features":[332]},{"name":"TDH_INTYPE_COUNTEDSTRING","features":[332]},{"name":"TDH_INTYPE_DOUBLE","features":[332]},{"name":"TDH_INTYPE_FILETIME","features":[332]},{"name":"TDH_INTYPE_FLOAT","features":[332]},{"name":"TDH_INTYPE_GUID","features":[332]},{"name":"TDH_INTYPE_HEXDUMP","features":[332]},{"name":"TDH_INTYPE_HEXINT32","features":[332]},{"name":"TDH_INTYPE_HEXINT64","features":[332]},{"name":"TDH_INTYPE_INT16","features":[332]},{"name":"TDH_INTYPE_INT32","features":[332]},{"name":"TDH_INTYPE_INT64","features":[332]},{"name":"TDH_INTYPE_INT8","features":[332]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDANSISTRING","features":[332]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDBINARY","features":[332]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDSTRING","features":[332]},{"name":"TDH_INTYPE_NONNULLTERMINATEDANSISTRING","features":[332]},{"name":"TDH_INTYPE_NONNULLTERMINATEDSTRING","features":[332]},{"name":"TDH_INTYPE_NULL","features":[332]},{"name":"TDH_INTYPE_POINTER","features":[332]},{"name":"TDH_INTYPE_RESERVED24","features":[332]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDANSISTRING","features":[332]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDSTRING","features":[332]},{"name":"TDH_INTYPE_SID","features":[332]},{"name":"TDH_INTYPE_SIZET","features":[332]},{"name":"TDH_INTYPE_SYSTEMTIME","features":[332]},{"name":"TDH_INTYPE_UINT16","features":[332]},{"name":"TDH_INTYPE_UINT32","features":[332]},{"name":"TDH_INTYPE_UINT64","features":[332]},{"name":"TDH_INTYPE_UINT8","features":[332]},{"name":"TDH_INTYPE_UNICODECHAR","features":[332]},{"name":"TDH_INTYPE_UNICODESTRING","features":[332]},{"name":"TDH_INTYPE_WBEMSID","features":[332]},{"name":"TDH_OUTTYPE_BOOLEAN","features":[332]},{"name":"TDH_OUTTYPE_BYTE","features":[332]},{"name":"TDH_OUTTYPE_CIMDATETIME","features":[332]},{"name":"TDH_OUTTYPE_CODE_POINTER","features":[332]},{"name":"TDH_OUTTYPE_CULTURE_INSENSITIVE_DATETIME","features":[332]},{"name":"TDH_OUTTYPE_DATETIME","features":[332]},{"name":"TDH_OUTTYPE_DATETIME_UTC","features":[332]},{"name":"TDH_OUTTYPE_DOUBLE","features":[332]},{"name":"TDH_OUTTYPE_ERRORCODE","features":[332]},{"name":"TDH_OUTTYPE_ETWTIME","features":[332]},{"name":"TDH_OUTTYPE_FLOAT","features":[332]},{"name":"TDH_OUTTYPE_GUID","features":[332]},{"name":"TDH_OUTTYPE_HEXBINARY","features":[332]},{"name":"TDH_OUTTYPE_HEXINT16","features":[332]},{"name":"TDH_OUTTYPE_HEXINT32","features":[332]},{"name":"TDH_OUTTYPE_HEXINT64","features":[332]},{"name":"TDH_OUTTYPE_HEXINT8","features":[332]},{"name":"TDH_OUTTYPE_HRESULT","features":[332]},{"name":"TDH_OUTTYPE_INT","features":[332]},{"name":"TDH_OUTTYPE_IPV4","features":[332]},{"name":"TDH_OUTTYPE_IPV6","features":[332]},{"name":"TDH_OUTTYPE_JSON","features":[332]},{"name":"TDH_OUTTYPE_LONG","features":[332]},{"name":"TDH_OUTTYPE_NOPRINT","features":[332]},{"name":"TDH_OUTTYPE_NTSTATUS","features":[332]},{"name":"TDH_OUTTYPE_NULL","features":[332]},{"name":"TDH_OUTTYPE_PID","features":[332]},{"name":"TDH_OUTTYPE_PKCS7_WITH_TYPE_INFO","features":[332]},{"name":"TDH_OUTTYPE_PORT","features":[332]},{"name":"TDH_OUTTYPE_REDUCEDSTRING","features":[332]},{"name":"TDH_OUTTYPE_SHORT","features":[332]},{"name":"TDH_OUTTYPE_SOCKETADDRESS","features":[332]},{"name":"TDH_OUTTYPE_STRING","features":[332]},{"name":"TDH_OUTTYPE_TID","features":[332]},{"name":"TDH_OUTTYPE_UNSIGNEDBYTE","features":[332]},{"name":"TDH_OUTTYPE_UNSIGNEDINT","features":[332]},{"name":"TDH_OUTTYPE_UNSIGNEDLONG","features":[332]},{"name":"TDH_OUTTYPE_UNSIGNEDSHORT","features":[332]},{"name":"TDH_OUTTYPE_UTF8","features":[332]},{"name":"TDH_OUTTYPE_WIN32ERROR","features":[332]},{"name":"TDH_OUTTYPE_XML","features":[332]},{"name":"TEMPLATE_CONTROL_GUID","features":[332]},{"name":"TEMPLATE_EVENT_DATA","features":[332]},{"name":"TEMPLATE_FLAGS","features":[332]},{"name":"TEMPLATE_USER_DATA","features":[332]},{"name":"TRACELOG_ACCESS_KERNEL_LOGGER","features":[332]},{"name":"TRACELOG_ACCESS_REALTIME","features":[332]},{"name":"TRACELOG_CREATE_INPROC","features":[332]},{"name":"TRACELOG_CREATE_ONDISK","features":[332]},{"name":"TRACELOG_CREATE_REALTIME","features":[332]},{"name":"TRACELOG_GUID_ENABLE","features":[332]},{"name":"TRACELOG_JOIN_GROUP","features":[332]},{"name":"TRACELOG_LOG_EVENT","features":[332]},{"name":"TRACELOG_REGISTER_GUIDS","features":[332]},{"name":"TRACE_ENABLE_INFO","features":[332]},{"name":"TRACE_EVENT_INFO","features":[332]},{"name":"TRACE_GUID_INFO","features":[332]},{"name":"TRACE_GUID_PROPERTIES","features":[303,332]},{"name":"TRACE_GUID_REGISTRATION","features":[303,332]},{"name":"TRACE_HEADER_FLAG_LOG_WNODE","features":[332]},{"name":"TRACE_HEADER_FLAG_TRACED_GUID","features":[332]},{"name":"TRACE_HEADER_FLAG_USE_GUID_PTR","features":[332]},{"name":"TRACE_HEADER_FLAG_USE_MOF_PTR","features":[332]},{"name":"TRACE_HEADER_FLAG_USE_TIMESTAMP","features":[332]},{"name":"TRACE_LEVEL_CRITICAL","features":[332]},{"name":"TRACE_LEVEL_ERROR","features":[332]},{"name":"TRACE_LEVEL_FATAL","features":[332]},{"name":"TRACE_LEVEL_INFORMATION","features":[332]},{"name":"TRACE_LEVEL_NONE","features":[332]},{"name":"TRACE_LEVEL_RESERVED6","features":[332]},{"name":"TRACE_LEVEL_RESERVED7","features":[332]},{"name":"TRACE_LEVEL_RESERVED8","features":[332]},{"name":"TRACE_LEVEL_RESERVED9","features":[332]},{"name":"TRACE_LEVEL_VERBOSE","features":[332]},{"name":"TRACE_LEVEL_WARNING","features":[332]},{"name":"TRACE_LOGFILE_HEADER","features":[303,332,540]},{"name":"TRACE_LOGFILE_HEADER32","features":[303,332,540]},{"name":"TRACE_LOGFILE_HEADER64","features":[303,332,540]},{"name":"TRACE_MESSAGE_COMPONENTID","features":[332]},{"name":"TRACE_MESSAGE_FLAGS","features":[332]},{"name":"TRACE_MESSAGE_FLAG_MASK","features":[332]},{"name":"TRACE_MESSAGE_GUID","features":[332]},{"name":"TRACE_MESSAGE_PERFORMANCE_TIMESTAMP","features":[332]},{"name":"TRACE_MESSAGE_POINTER32","features":[332]},{"name":"TRACE_MESSAGE_POINTER64","features":[332]},{"name":"TRACE_MESSAGE_SEQUENCE","features":[332]},{"name":"TRACE_MESSAGE_SYSTEMINFO","features":[332]},{"name":"TRACE_MESSAGE_TIMESTAMP","features":[332]},{"name":"TRACE_PERIODIC_CAPTURE_STATE_INFO","features":[332]},{"name":"TRACE_PROFILE_INTERVAL","features":[332]},{"name":"TRACE_PROVIDER_FLAG_LEGACY","features":[332]},{"name":"TRACE_PROVIDER_FLAG_PRE_ENABLE","features":[332]},{"name":"TRACE_PROVIDER_INFO","features":[332]},{"name":"TRACE_PROVIDER_INSTANCE_INFO","features":[332]},{"name":"TRACE_QUERY_INFO_CLASS","features":[332]},{"name":"TRACE_STACK_CACHING_INFO","features":[303,332]},{"name":"TRACE_VERSION_INFO","features":[332]},{"name":"TcpIpGuid","features":[332]},{"name":"TdhAggregatePayloadFilters","features":[303,332]},{"name":"TdhCleanupPayloadEventFilterDescriptor","features":[332]},{"name":"TdhCloseDecodingHandle","features":[332]},{"name":"TdhCreatePayloadFilter","features":[303,332]},{"name":"TdhDeletePayloadFilter","features":[332]},{"name":"TdhEnumerateManifestProviderEvents","features":[332]},{"name":"TdhEnumerateProviderFieldInformation","features":[332]},{"name":"TdhEnumerateProviderFilters","features":[332]},{"name":"TdhEnumerateProviders","features":[332]},{"name":"TdhEnumerateProvidersForDecodingSource","features":[332]},{"name":"TdhFormatProperty","features":[332]},{"name":"TdhGetDecodingParameter","features":[332]},{"name":"TdhGetEventInformation","features":[332]},{"name":"TdhGetEventMapInformation","features":[332]},{"name":"TdhGetManifestEventInformation","features":[332]},{"name":"TdhGetProperty","features":[332]},{"name":"TdhGetPropertySize","features":[332]},{"name":"TdhGetWppMessage","features":[332]},{"name":"TdhGetWppProperty","features":[332]},{"name":"TdhLoadManifest","features":[332]},{"name":"TdhLoadManifestFromBinary","features":[332]},{"name":"TdhLoadManifestFromMemory","features":[332]},{"name":"TdhOpenDecodingHandle","features":[332]},{"name":"TdhQueryProviderFieldInformation","features":[332]},{"name":"TdhSetDecodingParameter","features":[332]},{"name":"TdhUnloadManifest","features":[332]},{"name":"TdhUnloadManifestFromMemory","features":[332]},{"name":"ThreadGuid","features":[332]},{"name":"TraceDisallowListQuery","features":[332]},{"name":"TraceEvent","features":[303,332]},{"name":"TraceEventInstance","features":[303,332]},{"name":"TraceGroupQueryInfo","features":[332]},{"name":"TraceGroupQueryList","features":[332]},{"name":"TraceGuidQueryInfo","features":[332]},{"name":"TraceGuidQueryList","features":[332]},{"name":"TraceGuidQueryProcess","features":[332]},{"name":"TraceInfoReserved15","features":[332]},{"name":"TraceLbrConfigurationInfo","features":[332]},{"name":"TraceLbrEventListInfo","features":[332]},{"name":"TraceMaxLoggersQuery","features":[332]},{"name":"TraceMaxPmcCounterQuery","features":[332]},{"name":"TraceMessage","features":[303,332]},{"name":"TraceMessageVa","features":[303,332]},{"name":"TracePeriodicCaptureStateInfo","features":[332]},{"name":"TracePeriodicCaptureStateListInfo","features":[332]},{"name":"TracePmcCounterListInfo","features":[332]},{"name":"TracePmcCounterOwners","features":[332]},{"name":"TracePmcEventListInfo","features":[332]},{"name":"TracePmcSessionInformation","features":[332]},{"name":"TraceProfileSourceConfigInfo","features":[332]},{"name":"TraceProfileSourceListInfo","features":[332]},{"name":"TraceProviderBinaryTracking","features":[332]},{"name":"TraceQueryInformation","features":[303,332]},{"name":"TraceSampledProfileIntervalInfo","features":[332]},{"name":"TraceSetDisallowList","features":[332]},{"name":"TraceSetInformation","features":[303,332]},{"name":"TraceStackCachingInfo","features":[332]},{"name":"TraceStackTracingInfo","features":[332]},{"name":"TraceStreamCount","features":[332]},{"name":"TraceSystemTraceEnableFlagsInfo","features":[332]},{"name":"TraceUnifiedStackCachingInfo","features":[332]},{"name":"TraceVersionInfo","features":[332]},{"name":"UdpIpGuid","features":[332]},{"name":"UnregisterTraceGuids","features":[332]},{"name":"UpdateTraceA","features":[303,332]},{"name":"UpdateTraceW","features":[303,332]},{"name":"WMIDPREQUEST","features":[332]},{"name":"WMIDPREQUESTCODE","features":[332]},{"name":"WMIGUID_EXECUTE","features":[332]},{"name":"WMIGUID_NOTIFICATION","features":[332]},{"name":"WMIGUID_QUERY","features":[332]},{"name":"WMIGUID_READ_DESCRIPTION","features":[332]},{"name":"WMIGUID_SET","features":[332]},{"name":"WMIREGGUIDW","features":[332]},{"name":"WMIREGINFOW","features":[332]},{"name":"WMIREG_FLAG_EVENT_ONLY_GUID","features":[332]},{"name":"WMIREG_FLAG_EXPENSIVE","features":[332]},{"name":"WMIREG_FLAG_INSTANCE_BASENAME","features":[332]},{"name":"WMIREG_FLAG_INSTANCE_LIST","features":[332]},{"name":"WMIREG_FLAG_INSTANCE_PDO","features":[332]},{"name":"WMIREG_FLAG_REMOVE_GUID","features":[332]},{"name":"WMIREG_FLAG_RESERVED1","features":[332]},{"name":"WMIREG_FLAG_RESERVED2","features":[332]},{"name":"WMIREG_FLAG_TRACED_GUID","features":[332]},{"name":"WMIREG_FLAG_TRACE_CONTROL_GUID","features":[332]},{"name":"WMI_CAPTURE_STATE","features":[332]},{"name":"WMI_DISABLE_COLLECTION","features":[332]},{"name":"WMI_DISABLE_EVENTS","features":[332]},{"name":"WMI_ENABLE_COLLECTION","features":[332]},{"name":"WMI_ENABLE_EVENTS","features":[332]},{"name":"WMI_EXECUTE_METHOD","features":[332]},{"name":"WMI_GET_ALL_DATA","features":[332]},{"name":"WMI_GET_SINGLE_INSTANCE","features":[332]},{"name":"WMI_GLOBAL_LOGGER_ID","features":[332]},{"name":"WMI_GUIDTYPE_DATA","features":[332]},{"name":"WMI_GUIDTYPE_EVENT","features":[332]},{"name":"WMI_GUIDTYPE_TRACE","features":[332]},{"name":"WMI_GUIDTYPE_TRACECONTROL","features":[332]},{"name":"WMI_REGINFO","features":[332]},{"name":"WMI_SET_SINGLE_INSTANCE","features":[332]},{"name":"WMI_SET_SINGLE_ITEM","features":[332]},{"name":"WNODE_ALL_DATA","features":[303,332]},{"name":"WNODE_EVENT_ITEM","features":[303,332]},{"name":"WNODE_EVENT_REFERENCE","features":[303,332]},{"name":"WNODE_FLAG_ALL_DATA","features":[332]},{"name":"WNODE_FLAG_ANSI_INSTANCENAMES","features":[332]},{"name":"WNODE_FLAG_EVENT_ITEM","features":[332]},{"name":"WNODE_FLAG_EVENT_REFERENCE","features":[332]},{"name":"WNODE_FLAG_FIXED_INSTANCE_SIZE","features":[332]},{"name":"WNODE_FLAG_INSTANCES_SAME","features":[332]},{"name":"WNODE_FLAG_INTERNAL","features":[332]},{"name":"WNODE_FLAG_LOG_WNODE","features":[332]},{"name":"WNODE_FLAG_METHOD_ITEM","features":[332]},{"name":"WNODE_FLAG_NO_HEADER","features":[332]},{"name":"WNODE_FLAG_PDO_INSTANCE_NAMES","features":[332]},{"name":"WNODE_FLAG_PERSIST_EVENT","features":[332]},{"name":"WNODE_FLAG_SEND_DATA_BLOCK","features":[332]},{"name":"WNODE_FLAG_SEVERITY_MASK","features":[332]},{"name":"WNODE_FLAG_SINGLE_INSTANCE","features":[332]},{"name":"WNODE_FLAG_SINGLE_ITEM","features":[332]},{"name":"WNODE_FLAG_STATIC_INSTANCE_NAMES","features":[332]},{"name":"WNODE_FLAG_TOO_SMALL","features":[332]},{"name":"WNODE_FLAG_TRACED_GUID","features":[332]},{"name":"WNODE_FLAG_USE_GUID_PTR","features":[332]},{"name":"WNODE_FLAG_USE_MOF_PTR","features":[332]},{"name":"WNODE_FLAG_USE_TIMESTAMP","features":[332]},{"name":"WNODE_FLAG_VERSIONED_PROPERTIES","features":[332]},{"name":"WNODE_HEADER","features":[303,332]},{"name":"WNODE_METHOD_ITEM","features":[303,332]},{"name":"WNODE_SINGLE_INSTANCE","features":[303,332]},{"name":"WNODE_SINGLE_ITEM","features":[303,332]},{"name":"WNODE_TOO_SMALL","features":[303,332]},{"name":"_TDH_IN_TYPE","features":[332]},{"name":"_TDH_OUT_TYPE","features":[332]}],"557":[{"name":"HPSS","features":[543]},{"name":"HPSSWALK","features":[543]},{"name":"PSS_ALLOCATOR","features":[543]},{"name":"PSS_AUXILIARY_PAGES_INFORMATION","features":[543]},{"name":"PSS_AUXILIARY_PAGE_ENTRY","features":[303,543,321]},{"name":"PSS_CAPTURE_FLAGS","features":[543]},{"name":"PSS_CAPTURE_HANDLES","features":[543]},{"name":"PSS_CAPTURE_HANDLE_BASIC_INFORMATION","features":[543]},{"name":"PSS_CAPTURE_HANDLE_NAME_INFORMATION","features":[543]},{"name":"PSS_CAPTURE_HANDLE_TRACE","features":[543]},{"name":"PSS_CAPTURE_HANDLE_TYPE_SPECIFIC_INFORMATION","features":[543]},{"name":"PSS_CAPTURE_IPT_TRACE","features":[543]},{"name":"PSS_CAPTURE_NONE","features":[543]},{"name":"PSS_CAPTURE_RESERVED_00000002","features":[543]},{"name":"PSS_CAPTURE_RESERVED_00000400","features":[543]},{"name":"PSS_CAPTURE_RESERVED_00004000","features":[543]},{"name":"PSS_CAPTURE_THREADS","features":[543]},{"name":"PSS_CAPTURE_THREAD_CONTEXT","features":[543]},{"name":"PSS_CAPTURE_THREAD_CONTEXT_EXTENDED","features":[543]},{"name":"PSS_CAPTURE_VA_CLONE","features":[543]},{"name":"PSS_CAPTURE_VA_SPACE","features":[543]},{"name":"PSS_CAPTURE_VA_SPACE_SECTION_INFORMATION","features":[543]},{"name":"PSS_CREATE_BREAKAWAY","features":[543]},{"name":"PSS_CREATE_BREAKAWAY_OPTIONAL","features":[543]},{"name":"PSS_CREATE_FORCE_BREAKAWAY","features":[543]},{"name":"PSS_CREATE_MEASURE_PERFORMANCE","features":[543]},{"name":"PSS_CREATE_RELEASE_SECTION","features":[543]},{"name":"PSS_CREATE_USE_VM_ALLOCATIONS","features":[543]},{"name":"PSS_DUPLICATE_CLOSE_SOURCE","features":[543]},{"name":"PSS_DUPLICATE_FLAGS","features":[543]},{"name":"PSS_DUPLICATE_NONE","features":[543]},{"name":"PSS_HANDLE_ENTRY","features":[303,543]},{"name":"PSS_HANDLE_FLAGS","features":[543]},{"name":"PSS_HANDLE_HAVE_BASIC_INFORMATION","features":[543]},{"name":"PSS_HANDLE_HAVE_NAME","features":[543]},{"name":"PSS_HANDLE_HAVE_TYPE","features":[543]},{"name":"PSS_HANDLE_HAVE_TYPE_SPECIFIC_INFORMATION","features":[543]},{"name":"PSS_HANDLE_INFORMATION","features":[543]},{"name":"PSS_HANDLE_NONE","features":[543]},{"name":"PSS_HANDLE_TRACE_INFORMATION","features":[303,543]},{"name":"PSS_OBJECT_TYPE","features":[543]},{"name":"PSS_OBJECT_TYPE_EVENT","features":[543]},{"name":"PSS_OBJECT_TYPE_MUTANT","features":[543]},{"name":"PSS_OBJECT_TYPE_PROCESS","features":[543]},{"name":"PSS_OBJECT_TYPE_SECTION","features":[543]},{"name":"PSS_OBJECT_TYPE_SEMAPHORE","features":[543]},{"name":"PSS_OBJECT_TYPE_THREAD","features":[543]},{"name":"PSS_OBJECT_TYPE_UNKNOWN","features":[543]},{"name":"PSS_PERFORMANCE_COUNTERS","features":[543]},{"name":"PSS_PERF_RESOLUTION","features":[543]},{"name":"PSS_PROCESS_FLAGS","features":[543]},{"name":"PSS_PROCESS_FLAGS_FROZEN","features":[543]},{"name":"PSS_PROCESS_FLAGS_NONE","features":[543]},{"name":"PSS_PROCESS_FLAGS_PROTECTED","features":[543]},{"name":"PSS_PROCESS_FLAGS_RESERVED_03","features":[543]},{"name":"PSS_PROCESS_FLAGS_RESERVED_04","features":[543]},{"name":"PSS_PROCESS_FLAGS_WOW64","features":[543]},{"name":"PSS_PROCESS_INFORMATION","features":[303,543]},{"name":"PSS_QUERY_AUXILIARY_PAGES_INFORMATION","features":[543]},{"name":"PSS_QUERY_HANDLE_INFORMATION","features":[543]},{"name":"PSS_QUERY_HANDLE_TRACE_INFORMATION","features":[543]},{"name":"PSS_QUERY_INFORMATION_CLASS","features":[543]},{"name":"PSS_QUERY_PERFORMANCE_COUNTERS","features":[543]},{"name":"PSS_QUERY_PROCESS_INFORMATION","features":[543]},{"name":"PSS_QUERY_THREAD_INFORMATION","features":[543]},{"name":"PSS_QUERY_VA_CLONE_INFORMATION","features":[543]},{"name":"PSS_QUERY_VA_SPACE_INFORMATION","features":[543]},{"name":"PSS_THREAD_ENTRY","features":[303,331,543,309]},{"name":"PSS_THREAD_FLAGS","features":[543]},{"name":"PSS_THREAD_FLAGS_NONE","features":[543]},{"name":"PSS_THREAD_FLAGS_TERMINATED","features":[543]},{"name":"PSS_THREAD_INFORMATION","features":[543]},{"name":"PSS_VA_CLONE_INFORMATION","features":[303,543]},{"name":"PSS_VA_SPACE_ENTRY","features":[543]},{"name":"PSS_VA_SPACE_INFORMATION","features":[543]},{"name":"PSS_WALK_AUXILIARY_PAGES","features":[543]},{"name":"PSS_WALK_HANDLES","features":[543]},{"name":"PSS_WALK_INFORMATION_CLASS","features":[543]},{"name":"PSS_WALK_THREADS","features":[543]},{"name":"PSS_WALK_VA_SPACE","features":[543]},{"name":"PssCaptureSnapshot","features":[303,543]},{"name":"PssDuplicateSnapshot","features":[303,543]},{"name":"PssFreeSnapshot","features":[303,543]},{"name":"PssQuerySnapshot","features":[543]},{"name":"PssWalkMarkerCreate","features":[543]},{"name":"PssWalkMarkerFree","features":[543]},{"name":"PssWalkMarkerGetPosition","features":[543]},{"name":"PssWalkMarkerSeekToBeginning","features":[543]},{"name":"PssWalkMarkerSetPosition","features":[543]},{"name":"PssWalkSnapshot","features":[543]}],"558":[{"name":"CREATE_TOOLHELP_SNAPSHOT_FLAGS","features":[544]},{"name":"CreateToolhelp32Snapshot","features":[303,544]},{"name":"HEAPENTRY32","features":[303,544]},{"name":"HEAPENTRY32_FLAGS","features":[544]},{"name":"HEAPLIST32","features":[544]},{"name":"HF32_DEFAULT","features":[544]},{"name":"HF32_SHARED","features":[544]},{"name":"Heap32First","features":[303,544]},{"name":"Heap32ListFirst","features":[303,544]},{"name":"Heap32ListNext","features":[303,544]},{"name":"Heap32Next","features":[303,544]},{"name":"LF32_FIXED","features":[544]},{"name":"LF32_FREE","features":[544]},{"name":"LF32_MOVEABLE","features":[544]},{"name":"MAX_MODULE_NAME32","features":[544]},{"name":"MODULEENTRY32","features":[303,544]},{"name":"MODULEENTRY32W","features":[303,544]},{"name":"Module32First","features":[303,544]},{"name":"Module32FirstW","features":[303,544]},{"name":"Module32Next","features":[303,544]},{"name":"Module32NextW","features":[303,544]},{"name":"PROCESSENTRY32","features":[544]},{"name":"PROCESSENTRY32W","features":[544]},{"name":"Process32First","features":[303,544]},{"name":"Process32FirstW","features":[303,544]},{"name":"Process32Next","features":[303,544]},{"name":"Process32NextW","features":[303,544]},{"name":"TH32CS_INHERIT","features":[544]},{"name":"TH32CS_SNAPALL","features":[544]},{"name":"TH32CS_SNAPHEAPLIST","features":[544]},{"name":"TH32CS_SNAPMODULE","features":[544]},{"name":"TH32CS_SNAPMODULE32","features":[544]},{"name":"TH32CS_SNAPPROCESS","features":[544]},{"name":"TH32CS_SNAPTHREAD","features":[544]},{"name":"THREADENTRY32","features":[544]},{"name":"Thread32First","features":[303,544]},{"name":"Thread32Next","features":[303,544]},{"name":"Toolhelp32ReadProcessMemory","features":[303,544]}],"559":[{"name":"MSG_category_Devices","features":[545]},{"name":"MSG_category_Disk","features":[545]},{"name":"MSG_category_Network","features":[545]},{"name":"MSG_category_Printers","features":[545]},{"name":"MSG_category_Services","features":[545]},{"name":"MSG_category_Shell","features":[545]},{"name":"MSG_category_SystemEvent","features":[545]},{"name":"MSG_channel_Application","features":[545]},{"name":"MSG_channel_ProviderMetadata","features":[545]},{"name":"MSG_channel_Security","features":[545]},{"name":"MSG_channel_System","features":[545]},{"name":"MSG_channel_TraceClassic","features":[545]},{"name":"MSG_channel_TraceLogging","features":[545]},{"name":"MSG_keyword_AnyKeyword","features":[545]},{"name":"MSG_keyword_AuditFailure","features":[545]},{"name":"MSG_keyword_AuditSuccess","features":[545]},{"name":"MSG_keyword_Classic","features":[545]},{"name":"MSG_keyword_CorrelationHint","features":[545]},{"name":"MSG_keyword_ResponseTime","features":[545]},{"name":"MSG_keyword_SQM","features":[545]},{"name":"MSG_keyword_WDIDiag","features":[545]},{"name":"MSG_level_Critical","features":[545]},{"name":"MSG_level_Error","features":[545]},{"name":"MSG_level_Informational","features":[545]},{"name":"MSG_level_LogAlways","features":[545]},{"name":"MSG_level_Verbose","features":[545]},{"name":"MSG_level_Warning","features":[545]},{"name":"MSG_opcode_DCStart","features":[545]},{"name":"MSG_opcode_DCStop","features":[545]},{"name":"MSG_opcode_Extension","features":[545]},{"name":"MSG_opcode_Info","features":[545]},{"name":"MSG_opcode_Receive","features":[545]},{"name":"MSG_opcode_Reply","features":[545]},{"name":"MSG_opcode_Resume","features":[545]},{"name":"MSG_opcode_Send","features":[545]},{"name":"MSG_opcode_Start","features":[545]},{"name":"MSG_opcode_Stop","features":[545]},{"name":"MSG_opcode_Suspend","features":[545]},{"name":"MSG_task_None","features":[545]},{"name":"WINEVENT_CHANNEL_CLASSIC_TRACE","features":[545]},{"name":"WINEVENT_CHANNEL_GLOBAL_APPLICATION","features":[545]},{"name":"WINEVENT_CHANNEL_GLOBAL_SECURITY","features":[545]},{"name":"WINEVENT_CHANNEL_GLOBAL_SYSTEM","features":[545]},{"name":"WINEVENT_CHANNEL_PROVIDERMETADATA","features":[545]},{"name":"WINEVENT_CHANNEL_TRACELOGGING","features":[545]},{"name":"WINEVENT_KEYWORD_AUDIT_FAILURE","features":[545]},{"name":"WINEVENT_KEYWORD_AUDIT_SUCCESS","features":[545]},{"name":"WINEVENT_KEYWORD_CORRELATION_HINT","features":[545]},{"name":"WINEVENT_KEYWORD_EVENTLOG_CLASSIC","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_49","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_56","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_57","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_58","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_59","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_60","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_61","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_62","features":[545]},{"name":"WINEVENT_KEYWORD_RESERVED_63","features":[545]},{"name":"WINEVENT_KEYWORD_RESPONSE_TIME","features":[545]},{"name":"WINEVENT_KEYWORD_SQM","features":[545]},{"name":"WINEVENT_KEYWORD_WDI_DIAG","features":[545]},{"name":"WINEVENT_LEVEL_CRITICAL","features":[545]},{"name":"WINEVENT_LEVEL_ERROR","features":[545]},{"name":"WINEVENT_LEVEL_INFO","features":[545]},{"name":"WINEVENT_LEVEL_LOG_ALWAYS","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_10","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_11","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_12","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_13","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_14","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_15","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_6","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_7","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_8","features":[545]},{"name":"WINEVENT_LEVEL_RESERVED_9","features":[545]},{"name":"WINEVENT_LEVEL_VERBOSE","features":[545]},{"name":"WINEVENT_LEVEL_WARNING","features":[545]},{"name":"WINEVENT_OPCODE_DC_START","features":[545]},{"name":"WINEVENT_OPCODE_DC_STOP","features":[545]},{"name":"WINEVENT_OPCODE_EXTENSION","features":[545]},{"name":"WINEVENT_OPCODE_INFO","features":[545]},{"name":"WINEVENT_OPCODE_RECEIVE","features":[545]},{"name":"WINEVENT_OPCODE_REPLY","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_241","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_242","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_243","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_244","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_245","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_246","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_247","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_248","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_249","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_250","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_251","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_252","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_253","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_254","features":[545]},{"name":"WINEVENT_OPCODE_RESERVED_255","features":[545]},{"name":"WINEVENT_OPCODE_RESUME","features":[545]},{"name":"WINEVENT_OPCODE_SEND","features":[545]},{"name":"WINEVENT_OPCODE_START","features":[545]},{"name":"WINEVENT_OPCODE_STOP","features":[545]},{"name":"WINEVENT_OPCODE_SUSPEND","features":[545]},{"name":"WINEVENT_TASK_NONE","features":[545]},{"name":"WINEVT_KEYWORD_ANY","features":[545]}],"560":[{"name":"APPLICATIONTYPE","features":[546]},{"name":"AUTHENTICATION_LEVEL","features":[546]},{"name":"BOID","features":[546]},{"name":"CLSID_MSDtcTransaction","features":[546]},{"name":"CLSID_MSDtcTransactionManager","features":[546]},{"name":"CLUSTERRESOURCE_APPLICATIONTYPE","features":[546]},{"name":"DTCINITIATEDRECOVERYWORK","features":[546]},{"name":"DTCINITIATEDRECOVERYWORK_CHECKLUSTATUS","features":[546]},{"name":"DTCINITIATEDRECOVERYWORK_TMDOWN","features":[546]},{"name":"DTCINITIATEDRECOVERYWORK_TRANS","features":[546]},{"name":"DTCINSTALL_E_CLIENT_ALREADY_INSTALLED","features":[546]},{"name":"DTCINSTALL_E_SERVER_ALREADY_INSTALLED","features":[546]},{"name":"DTCLUCOMPARESTATE","features":[546]},{"name":"DTCLUCOMPARESTATESCONFIRMATION","features":[546]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_CONFIRM","features":[546]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_PROTOCOL","features":[546]},{"name":"DTCLUCOMPARESTATESERROR","features":[546]},{"name":"DTCLUCOMPARESTATESERROR_PROTOCOL","features":[546]},{"name":"DTCLUCOMPARESTATESRESPONSE","features":[546]},{"name":"DTCLUCOMPARESTATESRESPONSE_OK","features":[546]},{"name":"DTCLUCOMPARESTATESRESPONSE_PROTOCOL","features":[546]},{"name":"DTCLUCOMPARESTATE_COMMITTED","features":[546]},{"name":"DTCLUCOMPARESTATE_HEURISTICCOMMITTED","features":[546]},{"name":"DTCLUCOMPARESTATE_HEURISTICMIXED","features":[546]},{"name":"DTCLUCOMPARESTATE_HEURISTICRESET","features":[546]},{"name":"DTCLUCOMPARESTATE_INDOUBT","features":[546]},{"name":"DTCLUCOMPARESTATE_RESET","features":[546]},{"name":"DTCLUXLN","features":[546]},{"name":"DTCLUXLNCONFIRMATION","features":[546]},{"name":"DTCLUXLNCONFIRMATION_COLDWARMMISMATCH","features":[546]},{"name":"DTCLUXLNCONFIRMATION_CONFIRM","features":[546]},{"name":"DTCLUXLNCONFIRMATION_LOGNAMEMISMATCH","features":[546]},{"name":"DTCLUXLNCONFIRMATION_OBSOLETE","features":[546]},{"name":"DTCLUXLNERROR","features":[546]},{"name":"DTCLUXLNERROR_COLDWARMMISMATCH","features":[546]},{"name":"DTCLUXLNERROR_LOGNAMEMISMATCH","features":[546]},{"name":"DTCLUXLNERROR_PROTOCOL","features":[546]},{"name":"DTCLUXLNRESPONSE","features":[546]},{"name":"DTCLUXLNRESPONSE_COLDWARMMISMATCH","features":[546]},{"name":"DTCLUXLNRESPONSE_LOGNAMEMISMATCH","features":[546]},{"name":"DTCLUXLNRESPONSE_OK_SENDCONFIRMATION","features":[546]},{"name":"DTCLUXLNRESPONSE_OK_SENDOURXLNBACK","features":[546]},{"name":"DTCLUXLN_COLD","features":[546]},{"name":"DTCLUXLN_WARM","features":[546]},{"name":"DTC_GET_TRANSACTION_MANAGER","features":[546]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_A","features":[546]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_W","features":[546]},{"name":"DTC_INSTALL_CLIENT","features":[546]},{"name":"DTC_INSTALL_OVERWRITE_CLIENT","features":[546]},{"name":"DTC_INSTALL_OVERWRITE_SERVER","features":[546]},{"name":"DTC_STATUS_","features":[546]},{"name":"DTC_STATUS_CONTINUING","features":[546]},{"name":"DTC_STATUS_E_CANTCONTROL","features":[546]},{"name":"DTC_STATUS_FAILED","features":[546]},{"name":"DTC_STATUS_PAUSED","features":[546]},{"name":"DTC_STATUS_PAUSING","features":[546]},{"name":"DTC_STATUS_STARTED","features":[546]},{"name":"DTC_STATUS_STARTING","features":[546]},{"name":"DTC_STATUS_STOPPED","features":[546]},{"name":"DTC_STATUS_STOPPING","features":[546]},{"name":"DTC_STATUS_UNKNOWN","features":[546]},{"name":"DtcGetTransactionManager","features":[546]},{"name":"DtcGetTransactionManagerC","features":[546]},{"name":"DtcGetTransactionManagerExA","features":[546]},{"name":"DtcGetTransactionManagerExW","features":[546]},{"name":"IDtcLuConfigure","features":[546]},{"name":"IDtcLuRecovery","features":[546]},{"name":"IDtcLuRecoveryFactory","features":[546]},{"name":"IDtcLuRecoveryInitiatedByDtc","features":[546]},{"name":"IDtcLuRecoveryInitiatedByDtcStatusWork","features":[546]},{"name":"IDtcLuRecoveryInitiatedByDtcTransWork","features":[546]},{"name":"IDtcLuRecoveryInitiatedByLu","features":[546]},{"name":"IDtcLuRecoveryInitiatedByLuWork","features":[546]},{"name":"IDtcLuRmEnlistment","features":[546]},{"name":"IDtcLuRmEnlistmentFactory","features":[546]},{"name":"IDtcLuRmEnlistmentSink","features":[546]},{"name":"IDtcLuSubordinateDtc","features":[546]},{"name":"IDtcLuSubordinateDtcFactory","features":[546]},{"name":"IDtcLuSubordinateDtcSink","features":[546]},{"name":"IDtcNetworkAccessConfig","features":[546]},{"name":"IDtcNetworkAccessConfig2","features":[546]},{"name":"IDtcNetworkAccessConfig3","features":[546]},{"name":"IDtcToXaHelper","features":[546]},{"name":"IDtcToXaHelperFactory","features":[546]},{"name":"IDtcToXaHelperSinglePipe","features":[546]},{"name":"IDtcToXaMapper","features":[546]},{"name":"IGetDispenser","features":[546]},{"name":"IKernelTransaction","features":[546]},{"name":"ILastResourceManager","features":[546]},{"name":"INCOMING_AUTHENTICATION_REQUIRED","features":[546]},{"name":"IPrepareInfo","features":[546]},{"name":"IPrepareInfo2","features":[546]},{"name":"IRMHelper","features":[546]},{"name":"IResourceManager","features":[546]},{"name":"IResourceManager2","features":[546]},{"name":"IResourceManagerFactory","features":[546]},{"name":"IResourceManagerFactory2","features":[546]},{"name":"IResourceManagerRejoinable","features":[546]},{"name":"IResourceManagerSink","features":[546]},{"name":"ISOFLAG","features":[546]},{"name":"ISOFLAG_OPTIMISTIC","features":[546]},{"name":"ISOFLAG_READONLY","features":[546]},{"name":"ISOFLAG_RETAIN_ABORT","features":[546]},{"name":"ISOFLAG_RETAIN_ABORT_DC","features":[546]},{"name":"ISOFLAG_RETAIN_ABORT_NO","features":[546]},{"name":"ISOFLAG_RETAIN_BOTH","features":[546]},{"name":"ISOFLAG_RETAIN_COMMIT","features":[546]},{"name":"ISOFLAG_RETAIN_COMMIT_DC","features":[546]},{"name":"ISOFLAG_RETAIN_COMMIT_NO","features":[546]},{"name":"ISOFLAG_RETAIN_DONTCARE","features":[546]},{"name":"ISOFLAG_RETAIN_NONE","features":[546]},{"name":"ISOLATIONLEVEL","features":[546]},{"name":"ISOLATIONLEVEL_BROWSE","features":[546]},{"name":"ISOLATIONLEVEL_CHAOS","features":[546]},{"name":"ISOLATIONLEVEL_CURSORSTABILITY","features":[546]},{"name":"ISOLATIONLEVEL_ISOLATED","features":[546]},{"name":"ISOLATIONLEVEL_READCOMMITTED","features":[546]},{"name":"ISOLATIONLEVEL_READUNCOMMITTED","features":[546]},{"name":"ISOLATIONLEVEL_REPEATABLEREAD","features":[546]},{"name":"ISOLATIONLEVEL_SERIALIZABLE","features":[546]},{"name":"ISOLATIONLEVEL_UNSPECIFIED","features":[546]},{"name":"ITipHelper","features":[546]},{"name":"ITipPullSink","features":[546]},{"name":"ITipTransaction","features":[546]},{"name":"ITmNodeName","features":[546]},{"name":"ITransaction","features":[546]},{"name":"ITransaction2","features":[546]},{"name":"ITransactionCloner","features":[546]},{"name":"ITransactionDispenser","features":[546]},{"name":"ITransactionEnlistmentAsync","features":[546]},{"name":"ITransactionExport","features":[546]},{"name":"ITransactionExportFactory","features":[546]},{"name":"ITransactionImport","features":[546]},{"name":"ITransactionImportWhereabouts","features":[546]},{"name":"ITransactionLastEnlistmentAsync","features":[546]},{"name":"ITransactionLastResourceAsync","features":[546]},{"name":"ITransactionOptions","features":[546]},{"name":"ITransactionOutcomeEvents","features":[546]},{"name":"ITransactionPhase0EnlistmentAsync","features":[546]},{"name":"ITransactionPhase0Factory","features":[546]},{"name":"ITransactionPhase0NotifyAsync","features":[546]},{"name":"ITransactionReceiver","features":[546]},{"name":"ITransactionReceiverFactory","features":[546]},{"name":"ITransactionResource","features":[546]},{"name":"ITransactionResourceAsync","features":[546]},{"name":"ITransactionTransmitter","features":[546]},{"name":"ITransactionTransmitterFactory","features":[546]},{"name":"ITransactionVoterBallotAsync2","features":[546]},{"name":"ITransactionVoterFactory2","features":[546]},{"name":"ITransactionVoterNotifyAsync2","features":[546]},{"name":"IXAConfig","features":[546]},{"name":"IXAObtainRMInfo","features":[546]},{"name":"IXATransLookup","features":[546]},{"name":"IXATransLookup2","features":[546]},{"name":"LOCAL_APPLICATIONTYPE","features":[546]},{"name":"MAXBQUALSIZE","features":[546]},{"name":"MAXGTRIDSIZE","features":[546]},{"name":"MAXINFOSIZE","features":[546]},{"name":"MAX_TRAN_DESC","features":[546]},{"name":"MUTUAL_AUTHENTICATION_REQUIRED","features":[546]},{"name":"NO_AUTHENTICATION_REQUIRED","features":[546]},{"name":"OLE_TM_CONFIG_PARAMS_V1","features":[546]},{"name":"OLE_TM_CONFIG_PARAMS_V2","features":[546]},{"name":"OLE_TM_CONFIG_VERSION_1","features":[546]},{"name":"OLE_TM_CONFIG_VERSION_2","features":[546]},{"name":"OLE_TM_FLAG_INTERNAL_TO_TM","features":[546]},{"name":"OLE_TM_FLAG_NOAGILERECOVERY","features":[546]},{"name":"OLE_TM_FLAG_NODEMANDSTART","features":[546]},{"name":"OLE_TM_FLAG_NONE","features":[546]},{"name":"OLE_TM_FLAG_QUERY_SERVICE_LOCKSTATUS","features":[546]},{"name":"PROXY_CONFIG_PARAMS","features":[546]},{"name":"RMNAMESZ","features":[546]},{"name":"TMASYNC","features":[546]},{"name":"TMENDRSCAN","features":[546]},{"name":"TMER_INVAL","features":[546]},{"name":"TMER_PROTO","features":[546]},{"name":"TMER_TMERR","features":[546]},{"name":"TMFAIL","features":[546]},{"name":"TMJOIN","features":[546]},{"name":"TMMIGRATE","features":[546]},{"name":"TMMULTIPLE","features":[546]},{"name":"TMNOFLAGS","features":[546]},{"name":"TMNOMIGRATE","features":[546]},{"name":"TMNOWAIT","features":[546]},{"name":"TMONEPHASE","features":[546]},{"name":"TMREGISTER","features":[546]},{"name":"TMRESUME","features":[546]},{"name":"TMSTARTRSCAN","features":[546]},{"name":"TMSUCCESS","features":[546]},{"name":"TMSUSPEND","features":[546]},{"name":"TMUSEASYNC","features":[546]},{"name":"TM_JOIN","features":[546]},{"name":"TM_OK","features":[546]},{"name":"TM_RESUME","features":[546]},{"name":"TX_MISC_CONSTANTS","features":[546]},{"name":"XACTCONST","features":[546]},{"name":"XACTCONST_TIMEOUTINFINITE","features":[546]},{"name":"XACTHEURISTIC","features":[546]},{"name":"XACTHEURISTIC_ABORT","features":[546]},{"name":"XACTHEURISTIC_COMMIT","features":[546]},{"name":"XACTHEURISTIC_DAMAGE","features":[546]},{"name":"XACTHEURISTIC_DANGER","features":[546]},{"name":"XACTOPT","features":[546]},{"name":"XACTRM","features":[546]},{"name":"XACTRM_NOREADONLYPREPARES","features":[546]},{"name":"XACTRM_OPTIMISTICLASTWINS","features":[546]},{"name":"XACTSTAT","features":[546]},{"name":"XACTSTATS","features":[303,546]},{"name":"XACTSTAT_ABORTED","features":[546]},{"name":"XACTSTAT_ABORTING","features":[546]},{"name":"XACTSTAT_ALL","features":[546]},{"name":"XACTSTAT_CLOSED","features":[546]},{"name":"XACTSTAT_COMMITRETAINING","features":[546]},{"name":"XACTSTAT_COMMITTED","features":[546]},{"name":"XACTSTAT_COMMITTING","features":[546]},{"name":"XACTSTAT_FORCED_ABORT","features":[546]},{"name":"XACTSTAT_FORCED_COMMIT","features":[546]},{"name":"XACTSTAT_HEURISTIC_ABORT","features":[546]},{"name":"XACTSTAT_HEURISTIC_COMMIT","features":[546]},{"name":"XACTSTAT_HEURISTIC_DAMAGE","features":[546]},{"name":"XACTSTAT_HEURISTIC_DANGER","features":[546]},{"name":"XACTSTAT_INDOUBT","features":[546]},{"name":"XACTSTAT_NONE","features":[546]},{"name":"XACTSTAT_NOTPREPARED","features":[546]},{"name":"XACTSTAT_OPEN","features":[546]},{"name":"XACTSTAT_OPENNORMAL","features":[546]},{"name":"XACTSTAT_OPENREFUSED","features":[546]},{"name":"XACTSTAT_PREPARED","features":[546]},{"name":"XACTSTAT_PREPARERETAINED","features":[546]},{"name":"XACTSTAT_PREPARERETAINING","features":[546]},{"name":"XACTSTAT_PREPARING","features":[546]},{"name":"XACTTC","features":[546]},{"name":"XACTTC_ASYNC","features":[546]},{"name":"XACTTC_ASYNC_PHASEONE","features":[546]},{"name":"XACTTC_NONE","features":[546]},{"name":"XACTTC_SYNC","features":[546]},{"name":"XACTTC_SYNC_PHASEONE","features":[546]},{"name":"XACTTC_SYNC_PHASETWO","features":[546]},{"name":"XACTTRANSINFO","features":[546]},{"name":"XACT_DTC_CONSTANTS","features":[546]},{"name":"XACT_E_CONNECTION_REQUEST_DENIED","features":[546]},{"name":"XACT_E_DUPLICATE_GUID","features":[546]},{"name":"XACT_E_DUPLICATE_LU","features":[546]},{"name":"XACT_E_DUPLICATE_TRANSID","features":[546]},{"name":"XACT_E_LRMRECOVERYALREADYDONE","features":[546]},{"name":"XACT_E_LU_BUSY","features":[546]},{"name":"XACT_E_LU_DOWN","features":[546]},{"name":"XACT_E_LU_NOT_CONNECTED","features":[546]},{"name":"XACT_E_LU_NOT_FOUND","features":[546]},{"name":"XACT_E_LU_NO_RECOVERY_PROCESS","features":[546]},{"name":"XACT_E_LU_RECOVERING","features":[546]},{"name":"XACT_E_LU_RECOVERY_MISMATCH","features":[546]},{"name":"XACT_E_NOLASTRESOURCEINTERFACE","features":[546]},{"name":"XACT_E_NOTSINGLEPHASE","features":[546]},{"name":"XACT_E_PROTOCOL","features":[546]},{"name":"XACT_E_RECOVERYALREADYDONE","features":[546]},{"name":"XACT_E_RECOVERY_FAILED","features":[546]},{"name":"XACT_E_RM_FAILURE","features":[546]},{"name":"XACT_E_RM_UNAVAILABLE","features":[546]},{"name":"XACT_E_TOOMANY_ENLISTMENTS","features":[546]},{"name":"XACT_OK_NONOTIFY","features":[546]},{"name":"XACT_S_NONOTIFY","features":[546]},{"name":"XAER_ASYNC","features":[546]},{"name":"XAER_DUPID","features":[546]},{"name":"XAER_INVAL","features":[546]},{"name":"XAER_NOTA","features":[546]},{"name":"XAER_OUTSIDE","features":[546]},{"name":"XAER_PROTO","features":[546]},{"name":"XAER_RMERR","features":[546]},{"name":"XAER_RMFAIL","features":[546]},{"name":"XA_CLOSE_EPT","features":[546]},{"name":"XA_COMMIT_EPT","features":[546]},{"name":"XA_COMPLETE_EPT","features":[546]},{"name":"XA_END_EPT","features":[546]},{"name":"XA_FMTID_DTC","features":[546]},{"name":"XA_FMTID_DTC_VER1","features":[546]},{"name":"XA_FORGET_EPT","features":[546]},{"name":"XA_HEURCOM","features":[546]},{"name":"XA_HEURHAZ","features":[546]},{"name":"XA_HEURMIX","features":[546]},{"name":"XA_HEURRB","features":[546]},{"name":"XA_NOMIGRATE","features":[546]},{"name":"XA_OK","features":[546]},{"name":"XA_OPEN_EPT","features":[546]},{"name":"XA_PREPARE_EPT","features":[546]},{"name":"XA_RBBASE","features":[546]},{"name":"XA_RBCOMMFAIL","features":[546]},{"name":"XA_RBDEADLOCK","features":[546]},{"name":"XA_RBEND","features":[546]},{"name":"XA_RBINTEGRITY","features":[546]},{"name":"XA_RBOTHER","features":[546]},{"name":"XA_RBPROTO","features":[546]},{"name":"XA_RBROLLBACK","features":[546]},{"name":"XA_RBTIMEOUT","features":[546]},{"name":"XA_RBTRANSIENT","features":[546]},{"name":"XA_RDONLY","features":[546]},{"name":"XA_RECOVER_EPT","features":[546]},{"name":"XA_RETRY","features":[546]},{"name":"XA_ROLLBACK_EPT","features":[546]},{"name":"XA_START_EPT","features":[546]},{"name":"XA_SWITCH_F_DTC","features":[546]},{"name":"XID","features":[546]},{"name":"XIDDATASIZE","features":[546]},{"name":"dwUSER_MS_SQLSERVER","features":[546]},{"name":"xa_switch_t","features":[546]}],"561":[{"name":"CallEnclave","features":[303,547]},{"name":"CreateEnclave","features":[303,547]},{"name":"CreateEnvironmentBlock","features":[303,547]},{"name":"DeleteEnclave","features":[303,547]},{"name":"DestroyEnvironmentBlock","features":[303,547]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ACTIVE","features":[547]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ENABLED","features":[547]},{"name":"ENCLAVE_FLAG_FULL_DEBUG_ENABLED","features":[547]},{"name":"ENCLAVE_IDENTITY","features":[547]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_EXACT_CODE","features":[547]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_INVALID","features":[547]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_AUTHOR","features":[547]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_FAMILY","features":[547]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_IMAGE","features":[547]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_PRIMARY_CODE","features":[547]},{"name":"ENCLAVE_INFORMATION","features":[547]},{"name":"ENCLAVE_REPORT_DATA_LENGTH","features":[547]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_DYNAMIC_DEBUG","features":[547]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_FULL_DEBUG","features":[547]},{"name":"ENCLAVE_SEALING_IDENTITY_POLICY","features":[547]},{"name":"ENCLAVE_UNSEAL_FLAG_STALE_KEY","features":[547]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_DEBUG_KEY","features":[547]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_FAMILY_ID","features":[547]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_IMAGE_ID","features":[547]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_MEASUREMENT","features":[547]},{"name":"ENCLAVE_VBS_BASIC_KEY_REQUEST","features":[547]},{"name":"EnclaveGetAttestationReport","features":[547]},{"name":"EnclaveGetEnclaveInformation","features":[547]},{"name":"EnclaveSealData","features":[547]},{"name":"EnclaveUnsealData","features":[547]},{"name":"EnclaveVerifyAttestationReport","features":[547]},{"name":"ExpandEnvironmentStringsA","features":[547]},{"name":"ExpandEnvironmentStringsForUserA","features":[303,547]},{"name":"ExpandEnvironmentStringsForUserW","features":[303,547]},{"name":"ExpandEnvironmentStringsW","features":[547]},{"name":"FreeEnvironmentStringsA","features":[303,547]},{"name":"FreeEnvironmentStringsW","features":[303,547]},{"name":"GetCommandLineA","features":[547]},{"name":"GetCommandLineW","features":[547]},{"name":"GetCurrentDirectoryA","features":[547]},{"name":"GetCurrentDirectoryW","features":[547]},{"name":"GetEnvironmentStrings","features":[547]},{"name":"GetEnvironmentStringsW","features":[547]},{"name":"GetEnvironmentVariableA","features":[547]},{"name":"GetEnvironmentVariableW","features":[547]},{"name":"InitializeEnclave","features":[303,547]},{"name":"IsEnclaveTypeSupported","features":[303,547]},{"name":"LoadEnclaveData","features":[303,547]},{"name":"LoadEnclaveImageA","features":[303,547]},{"name":"LoadEnclaveImageW","features":[303,547]},{"name":"NeedCurrentDirectoryForExePathA","features":[303,547]},{"name":"NeedCurrentDirectoryForExePathW","features":[303,547]},{"name":"SetCurrentDirectoryA","features":[303,547]},{"name":"SetCurrentDirectoryW","features":[303,547]},{"name":"SetEnvironmentStringsW","features":[303,547]},{"name":"SetEnvironmentVariableA","features":[303,547]},{"name":"SetEnvironmentVariableW","features":[303,547]},{"name":"TerminateEnclave","features":[303,547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_COMMIT_PAGES","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_DECOMMIT_PAGES","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_KEY","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_RANDOM_DATA","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_REPORT","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GET_ENCLAVE_INFORMATION","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_PROTECT_PAGES","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_ENCLAVE","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[547]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_VERIFY_REPORT","features":[547]},{"name":"VBS_BASIC_ENCLAVE_EXCEPTION_AMD64","features":[547]},{"name":"VBS_BASIC_ENCLAVE_SYSCALL_PAGE","features":[547]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR32","features":[547]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR64","features":[547]},{"name":"VBS_ENCLAVE_REPORT","features":[547]},{"name":"VBS_ENCLAVE_REPORT_MODULE","features":[547]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER","features":[547]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER_VERSION_CURRENT","features":[547]},{"name":"VBS_ENCLAVE_REPORT_SIGNATURE_SCHEME_SHA256_RSA_PSS_SHA256","features":[547]},{"name":"VBS_ENCLAVE_REPORT_VARDATA_HEADER","features":[547]},{"name":"VBS_ENCLAVE_REPORT_VERSION_CURRENT","features":[547]},{"name":"VBS_ENCLAVE_VARDATA_INVALID","features":[547]},{"name":"VBS_ENCLAVE_VARDATA_MODULE","features":[547]}],"562":[{"name":"APPCRASH_EVENT","features":[548]},{"name":"AddERExcludedApplicationA","features":[303,548]},{"name":"AddERExcludedApplicationW","features":[303,548]},{"name":"EFaultRepRetVal","features":[548]},{"name":"E_STORE_INVALID","features":[548]},{"name":"E_STORE_MACHINE_ARCHIVE","features":[548]},{"name":"E_STORE_MACHINE_QUEUE","features":[548]},{"name":"E_STORE_USER_ARCHIVE","features":[548]},{"name":"E_STORE_USER_QUEUE","features":[548]},{"name":"HREPORT","features":[548]},{"name":"HREPORTSTORE","features":[548]},{"name":"PACKAGED_APPCRASH_EVENT","features":[548]},{"name":"PFN_WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[303,331,548,309]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT","features":[303,331,548,309]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE","features":[303,331,548,309]},{"name":"REPORT_STORE_TYPES","features":[548]},{"name":"ReportFault","features":[303,331,548,309]},{"name":"WER_CONSENT","features":[548]},{"name":"WER_DUMP_AUXILIARY","features":[548]},{"name":"WER_DUMP_CUSTOM_OPTIONS","features":[303,548]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V2","features":[303,548]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V3","features":[303,548]},{"name":"WER_DUMP_MASK_START","features":[548]},{"name":"WER_DUMP_NOHEAP_ONQUEUE","features":[548]},{"name":"WER_DUMP_TYPE","features":[548]},{"name":"WER_EXCEPTION_INFORMATION","features":[303,331,548,309]},{"name":"WER_FAULT_REPORTING","features":[548]},{"name":"WER_FAULT_REPORTING_ALWAYS_SHOW_UI","features":[548]},{"name":"WER_FAULT_REPORTING_CRITICAL","features":[548]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_CRASH","features":[548]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_HANG","features":[548]},{"name":"WER_FAULT_REPORTING_DURABLE","features":[548]},{"name":"WER_FAULT_REPORTING_FLAG_DISABLE_THREAD_SUSPENSION","features":[548]},{"name":"WER_FAULT_REPORTING_FLAG_NOHEAP","features":[548]},{"name":"WER_FAULT_REPORTING_FLAG_NO_HEAP_ON_QUEUE","features":[548]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE","features":[548]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE_UPLOAD","features":[548]},{"name":"WER_FAULT_REPORTING_NO_UI","features":[548]},{"name":"WER_FILE","features":[548]},{"name":"WER_FILE_ANONYMOUS_DATA","features":[548]},{"name":"WER_FILE_COMPRESSED","features":[548]},{"name":"WER_FILE_DELETE_WHEN_DONE","features":[548]},{"name":"WER_FILE_TYPE","features":[548]},{"name":"WER_MAX_APPLICATION_NAME_LENGTH","features":[548]},{"name":"WER_MAX_BUCKET_ID_STRING_LENGTH","features":[548]},{"name":"WER_MAX_DESCRIPTION_LENGTH","features":[548]},{"name":"WER_MAX_EVENT_NAME_LENGTH","features":[548]},{"name":"WER_MAX_FRIENDLY_EVENT_NAME_LENGTH","features":[548]},{"name":"WER_MAX_LOCAL_DUMP_SUBPATH_LENGTH","features":[548]},{"name":"WER_MAX_PARAM_COUNT","features":[548]},{"name":"WER_MAX_PARAM_LENGTH","features":[548]},{"name":"WER_MAX_PREFERRED_MODULES","features":[548]},{"name":"WER_MAX_PREFERRED_MODULES_BUFFER","features":[548]},{"name":"WER_MAX_REGISTERED_DUMPCOLLECTION","features":[548]},{"name":"WER_MAX_REGISTERED_ENTRIES","features":[548]},{"name":"WER_MAX_REGISTERED_METADATA","features":[548]},{"name":"WER_MAX_REGISTERED_RUNTIME_EXCEPTION_MODULES","features":[548]},{"name":"WER_MAX_SIGNATURE_NAME_LENGTH","features":[548]},{"name":"WER_MAX_TOTAL_PARAM_LENGTH","features":[548]},{"name":"WER_METADATA_KEY_MAX_LENGTH","features":[548]},{"name":"WER_METADATA_VALUE_MAX_LENGTH","features":[548]},{"name":"WER_P0","features":[548]},{"name":"WER_P1","features":[548]},{"name":"WER_P2","features":[548]},{"name":"WER_P3","features":[548]},{"name":"WER_P4","features":[548]},{"name":"WER_P5","features":[548]},{"name":"WER_P6","features":[548]},{"name":"WER_P7","features":[548]},{"name":"WER_P8","features":[548]},{"name":"WER_P9","features":[548]},{"name":"WER_REGISTER_FILE_TYPE","features":[548]},{"name":"WER_REPORT_INFORMATION","features":[303,548]},{"name":"WER_REPORT_INFORMATION_V3","features":[303,548]},{"name":"WER_REPORT_INFORMATION_V4","features":[303,548]},{"name":"WER_REPORT_INFORMATION_V5","features":[303,548]},{"name":"WER_REPORT_METADATA_V1","features":[303,548]},{"name":"WER_REPORT_METADATA_V2","features":[303,548]},{"name":"WER_REPORT_METADATA_V3","features":[303,548]},{"name":"WER_REPORT_PARAMETER","features":[548]},{"name":"WER_REPORT_SIGNATURE","features":[548]},{"name":"WER_REPORT_TYPE","features":[548]},{"name":"WER_REPORT_UI","features":[548]},{"name":"WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[548]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_FUNCTION","features":[548]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE_FUNCTION","features":[548]},{"name":"WER_RUNTIME_EXCEPTION_INFORMATION","features":[303,331,548,309]},{"name":"WER_SUBMIT_ADD_REGISTERED_DATA","features":[548]},{"name":"WER_SUBMIT_ARCHIVE_PARAMETERS_ONLY","features":[548]},{"name":"WER_SUBMIT_BYPASS_DATA_THROTTLING","features":[548]},{"name":"WER_SUBMIT_BYPASS_NETWORK_COST_THROTTLING","features":[548]},{"name":"WER_SUBMIT_BYPASS_POWER_THROTTLING","features":[548]},{"name":"WER_SUBMIT_FLAGS","features":[548]},{"name":"WER_SUBMIT_HONOR_RECOVERY","features":[548]},{"name":"WER_SUBMIT_HONOR_RESTART","features":[548]},{"name":"WER_SUBMIT_NO_ARCHIVE","features":[548]},{"name":"WER_SUBMIT_NO_CLOSE_UI","features":[548]},{"name":"WER_SUBMIT_NO_QUEUE","features":[548]},{"name":"WER_SUBMIT_OUTOFPROCESS","features":[548]},{"name":"WER_SUBMIT_OUTOFPROCESS_ASYNC","features":[548]},{"name":"WER_SUBMIT_QUEUE","features":[548]},{"name":"WER_SUBMIT_REPORT_MACHINE_ID","features":[548]},{"name":"WER_SUBMIT_RESULT","features":[548]},{"name":"WER_SUBMIT_SHOW_DEBUG","features":[548]},{"name":"WER_SUBMIT_START_MINIMIZED","features":[548]},{"name":"WerAddExcludedApplication","features":[303,548]},{"name":"WerConsentAlwaysPrompt","features":[548]},{"name":"WerConsentApproved","features":[548]},{"name":"WerConsentDenied","features":[548]},{"name":"WerConsentMax","features":[548]},{"name":"WerConsentNotAsked","features":[548]},{"name":"WerCustomAction","features":[548]},{"name":"WerDisabled","features":[548]},{"name":"WerDisabledQueue","features":[548]},{"name":"WerDumpTypeHeapDump","features":[548]},{"name":"WerDumpTypeMax","features":[548]},{"name":"WerDumpTypeMicroDump","features":[548]},{"name":"WerDumpTypeMiniDump","features":[548]},{"name":"WerDumpTypeNone","features":[548]},{"name":"WerDumpTypeTriageDump","features":[548]},{"name":"WerFileTypeAuxiliaryDump","features":[548]},{"name":"WerFileTypeCustomDump","features":[548]},{"name":"WerFileTypeEtlTrace","features":[548]},{"name":"WerFileTypeHeapdump","features":[548]},{"name":"WerFileTypeMax","features":[548]},{"name":"WerFileTypeMicrodump","features":[548]},{"name":"WerFileTypeMinidump","features":[548]},{"name":"WerFileTypeOther","features":[548]},{"name":"WerFileTypeTriagedump","features":[548]},{"name":"WerFileTypeUserDocument","features":[548]},{"name":"WerFreeString","features":[548]},{"name":"WerGetFlags","features":[303,548]},{"name":"WerRegFileTypeMax","features":[548]},{"name":"WerRegFileTypeOther","features":[548]},{"name":"WerRegFileTypeUserDocument","features":[548]},{"name":"WerRegisterAdditionalProcess","features":[548]},{"name":"WerRegisterAppLocalDump","features":[548]},{"name":"WerRegisterCustomMetadata","features":[548]},{"name":"WerRegisterExcludedMemoryBlock","features":[548]},{"name":"WerRegisterFile","features":[548]},{"name":"WerRegisterMemoryBlock","features":[548]},{"name":"WerRegisterRuntimeExceptionModule","features":[548]},{"name":"WerRemoveExcludedApplication","features":[303,548]},{"name":"WerReportAddDump","features":[303,331,548,309]},{"name":"WerReportAddFile","features":[548]},{"name":"WerReportApplicationCrash","features":[548]},{"name":"WerReportApplicationHang","features":[548]},{"name":"WerReportAsync","features":[548]},{"name":"WerReportCancelled","features":[548]},{"name":"WerReportCloseHandle","features":[548]},{"name":"WerReportCreate","features":[303,548]},{"name":"WerReportCritical","features":[548]},{"name":"WerReportDebug","features":[548]},{"name":"WerReportFailed","features":[548]},{"name":"WerReportHang","features":[303,548]},{"name":"WerReportInvalid","features":[548]},{"name":"WerReportKernel","features":[548]},{"name":"WerReportNonCritical","features":[548]},{"name":"WerReportQueued","features":[548]},{"name":"WerReportSetParameter","features":[548]},{"name":"WerReportSetUIOption","features":[548]},{"name":"WerReportSubmit","features":[548]},{"name":"WerReportUploaded","features":[548]},{"name":"WerReportUploadedCab","features":[548]},{"name":"WerSetFlags","features":[548]},{"name":"WerStorageLocationNotFound","features":[548]},{"name":"WerStoreClose","features":[548]},{"name":"WerStoreGetFirstReportKey","features":[548]},{"name":"WerStoreGetNextReportKey","features":[548]},{"name":"WerStoreGetReportCount","features":[548]},{"name":"WerStoreGetSizeOnDisk","features":[548]},{"name":"WerStoreOpen","features":[548]},{"name":"WerStorePurge","features":[548]},{"name":"WerStoreQueryReportMetadataV1","features":[303,548]},{"name":"WerStoreQueryReportMetadataV2","features":[303,548]},{"name":"WerStoreQueryReportMetadataV3","features":[303,548]},{"name":"WerStoreUploadReport","features":[548]},{"name":"WerSubmitResultMax","features":[548]},{"name":"WerThrottled","features":[548]},{"name":"WerUIAdditionalDataDlgHeader","features":[548]},{"name":"WerUICloseDlgBody","features":[548]},{"name":"WerUICloseDlgButtonText","features":[548]},{"name":"WerUICloseDlgHeader","features":[548]},{"name":"WerUICloseText","features":[548]},{"name":"WerUIConsentDlgBody","features":[548]},{"name":"WerUIConsentDlgHeader","features":[548]},{"name":"WerUIIconFilePath","features":[548]},{"name":"WerUIMax","features":[548]},{"name":"WerUIOfflineSolutionCheckText","features":[548]},{"name":"WerUIOnlineSolutionCheckText","features":[548]},{"name":"WerUnregisterAdditionalProcess","features":[548]},{"name":"WerUnregisterAppLocalDump","features":[548]},{"name":"WerUnregisterCustomMetadata","features":[548]},{"name":"WerUnregisterExcludedMemoryBlock","features":[548]},{"name":"WerUnregisterFile","features":[548]},{"name":"WerUnregisterMemoryBlock","features":[548]},{"name":"WerUnregisterRuntimeExceptionModule","features":[548]},{"name":"frrvErr","features":[548]},{"name":"frrvErrAnotherInstance","features":[548]},{"name":"frrvErrDoubleFault","features":[548]},{"name":"frrvErrNoDW","features":[548]},{"name":"frrvErrNoMemory","features":[548]},{"name":"frrvErrTimeout","features":[548]},{"name":"frrvLaunchDebugger","features":[548]},{"name":"frrvOk","features":[548]},{"name":"frrvOkHeadless","features":[548]},{"name":"frrvOkManifest","features":[548]},{"name":"frrvOkQueued","features":[548]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONA","features":[548]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONW","features":[548]},{"name":"pfn_REPORTFAULT","features":[303,331,548,309]}],"563":[{"name":"EC_CREATE_NEW","features":[549]},{"name":"EC_OPEN_ALWAYS","features":[549]},{"name":"EC_OPEN_EXISTING","features":[549]},{"name":"EC_READ_ACCESS","features":[549]},{"name":"EC_SUBSCRIPTION_CONFIGURATION_MODE","features":[549]},{"name":"EC_SUBSCRIPTION_CONTENT_FORMAT","features":[549]},{"name":"EC_SUBSCRIPTION_CREDENTIALS_TYPE","features":[549]},{"name":"EC_SUBSCRIPTION_DELIVERY_MODE","features":[549]},{"name":"EC_SUBSCRIPTION_PROPERTY_ID","features":[549]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_ACTIVE_STATUS","features":[549]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_INFO_ID","features":[549]},{"name":"EC_SUBSCRIPTION_TYPE","features":[549]},{"name":"EC_VARIANT","features":[303,549]},{"name":"EC_VARIANT_TYPE","features":[549]},{"name":"EC_VARIANT_TYPE_ARRAY","features":[549]},{"name":"EC_VARIANT_TYPE_MASK","features":[549]},{"name":"EC_WRITE_ACCESS","features":[549]},{"name":"EcClose","features":[303,549]},{"name":"EcConfigurationModeCustom","features":[549]},{"name":"EcConfigurationModeMinBandwidth","features":[549]},{"name":"EcConfigurationModeMinLatency","features":[549]},{"name":"EcConfigurationModeNormal","features":[549]},{"name":"EcContentFormatEvents","features":[549]},{"name":"EcContentFormatRenderedText","features":[549]},{"name":"EcDeleteSubscription","features":[303,549]},{"name":"EcDeliveryModePull","features":[549]},{"name":"EcDeliveryModePush","features":[549]},{"name":"EcEnumNextSubscription","features":[303,549]},{"name":"EcGetObjectArrayProperty","features":[303,549]},{"name":"EcGetObjectArraySize","features":[303,549]},{"name":"EcGetSubscriptionProperty","features":[303,549]},{"name":"EcGetSubscriptionRunTimeStatus","features":[303,549]},{"name":"EcInsertObjectArrayElement","features":[303,549]},{"name":"EcOpenSubscription","features":[549]},{"name":"EcOpenSubscriptionEnum","features":[549]},{"name":"EcRemoveObjectArrayElement","features":[303,549]},{"name":"EcRetrySubscription","features":[303,549]},{"name":"EcRuntimeStatusActiveStatusActive","features":[549]},{"name":"EcRuntimeStatusActiveStatusDisabled","features":[549]},{"name":"EcRuntimeStatusActiveStatusInactive","features":[549]},{"name":"EcRuntimeStatusActiveStatusTrying","features":[549]},{"name":"EcSaveSubscription","features":[303,549]},{"name":"EcSetObjectArrayProperty","features":[303,549]},{"name":"EcSetSubscriptionProperty","features":[303,549]},{"name":"EcSubscriptionAllowedIssuerCAs","features":[549]},{"name":"EcSubscriptionAllowedSourceDomainComputers","features":[549]},{"name":"EcSubscriptionAllowedSubjects","features":[549]},{"name":"EcSubscriptionCommonPassword","features":[549]},{"name":"EcSubscriptionCommonUserName","features":[549]},{"name":"EcSubscriptionConfigurationMode","features":[549]},{"name":"EcSubscriptionContentFormat","features":[549]},{"name":"EcSubscriptionCredBasic","features":[549]},{"name":"EcSubscriptionCredDefault","features":[549]},{"name":"EcSubscriptionCredDigest","features":[549]},{"name":"EcSubscriptionCredLocalMachine","features":[549]},{"name":"EcSubscriptionCredNegotiate","features":[549]},{"name":"EcSubscriptionCredentialsType","features":[549]},{"name":"EcSubscriptionDeliveryMaxItems","features":[549]},{"name":"EcSubscriptionDeliveryMaxLatencyTime","features":[549]},{"name":"EcSubscriptionDeliveryMode","features":[549]},{"name":"EcSubscriptionDeniedSubjects","features":[549]},{"name":"EcSubscriptionDescription","features":[549]},{"name":"EcSubscriptionDialect","features":[549]},{"name":"EcSubscriptionEnabled","features":[549]},{"name":"EcSubscriptionEventSourceAddress","features":[549]},{"name":"EcSubscriptionEventSourceEnabled","features":[549]},{"name":"EcSubscriptionEventSourcePassword","features":[549]},{"name":"EcSubscriptionEventSourceUserName","features":[549]},{"name":"EcSubscriptionEventSources","features":[549]},{"name":"EcSubscriptionExpires","features":[549]},{"name":"EcSubscriptionHeartbeatInterval","features":[549]},{"name":"EcSubscriptionHostName","features":[549]},{"name":"EcSubscriptionLocale","features":[549]},{"name":"EcSubscriptionLogFile","features":[549]},{"name":"EcSubscriptionPropertyIdEND","features":[549]},{"name":"EcSubscriptionPublisherName","features":[549]},{"name":"EcSubscriptionQuery","features":[549]},{"name":"EcSubscriptionReadExistingEvents","features":[549]},{"name":"EcSubscriptionRunTimeStatusActive","features":[549]},{"name":"EcSubscriptionRunTimeStatusEventSources","features":[549]},{"name":"EcSubscriptionRunTimeStatusInfoIdEND","features":[549]},{"name":"EcSubscriptionRunTimeStatusLastError","features":[549]},{"name":"EcSubscriptionRunTimeStatusLastErrorMessage","features":[549]},{"name":"EcSubscriptionRunTimeStatusLastErrorTime","features":[549]},{"name":"EcSubscriptionRunTimeStatusLastHeartbeatTime","features":[549]},{"name":"EcSubscriptionRunTimeStatusNextRetryTime","features":[549]},{"name":"EcSubscriptionTransportName","features":[549]},{"name":"EcSubscriptionTransportPort","features":[549]},{"name":"EcSubscriptionType","features":[549]},{"name":"EcSubscriptionTypeCollectorInitiated","features":[549]},{"name":"EcSubscriptionTypeSourceInitiated","features":[549]},{"name":"EcSubscriptionURI","features":[549]},{"name":"EcVarObjectArrayPropertyHandle","features":[549]},{"name":"EcVarTypeBoolean","features":[549]},{"name":"EcVarTypeDateTime","features":[549]},{"name":"EcVarTypeNull","features":[549]},{"name":"EcVarTypeString","features":[549]},{"name":"EcVarTypeUInt32","features":[549]}],"564":[{"name":"BackupEventLogA","features":[303,550]},{"name":"BackupEventLogW","features":[303,550]},{"name":"ClearEventLogA","features":[303,550]},{"name":"ClearEventLogW","features":[303,550]},{"name":"CloseEventLog","features":[303,550]},{"name":"DeregisterEventSource","features":[303,550]},{"name":"EVENTLOGRECORD","features":[550]},{"name":"EVENTLOG_AUDIT_FAILURE","features":[550]},{"name":"EVENTLOG_AUDIT_SUCCESS","features":[550]},{"name":"EVENTLOG_ERROR_TYPE","features":[550]},{"name":"EVENTLOG_FULL_INFORMATION","features":[550]},{"name":"EVENTLOG_INFORMATION_TYPE","features":[550]},{"name":"EVENTLOG_SEEK_READ","features":[550]},{"name":"EVENTLOG_SEQUENTIAL_READ","features":[550]},{"name":"EVENTLOG_SUCCESS","features":[550]},{"name":"EVENTLOG_WARNING_TYPE","features":[550]},{"name":"EVENTSFORLOGFILE","features":[550]},{"name":"EVT_ALL_ACCESS","features":[550]},{"name":"EVT_CHANNEL_CLOCK_TYPE","features":[550]},{"name":"EVT_CHANNEL_CONFIG_PROPERTY_ID","features":[550]},{"name":"EVT_CHANNEL_ISOLATION_TYPE","features":[550]},{"name":"EVT_CHANNEL_REFERENCE_FLAGS","features":[550]},{"name":"EVT_CHANNEL_SID_TYPE","features":[550]},{"name":"EVT_CHANNEL_TYPE","features":[550]},{"name":"EVT_CLEAR_ACCESS","features":[550]},{"name":"EVT_EVENT_METADATA_PROPERTY_ID","features":[550]},{"name":"EVT_EVENT_PROPERTY_ID","features":[550]},{"name":"EVT_EXPORTLOG_FLAGS","features":[550]},{"name":"EVT_FORMAT_MESSAGE_FLAGS","features":[550]},{"name":"EVT_HANDLE","features":[550]},{"name":"EVT_LOGIN_CLASS","features":[550]},{"name":"EVT_LOG_PROPERTY_ID","features":[550]},{"name":"EVT_OPEN_LOG_FLAGS","features":[550]},{"name":"EVT_PUBLISHER_METADATA_PROPERTY_ID","features":[550]},{"name":"EVT_QUERY_FLAGS","features":[550]},{"name":"EVT_QUERY_PROPERTY_ID","features":[550]},{"name":"EVT_READ_ACCESS","features":[550]},{"name":"EVT_RENDER_CONTEXT_FLAGS","features":[550]},{"name":"EVT_RENDER_FLAGS","features":[550]},{"name":"EVT_RPC_LOGIN","features":[550]},{"name":"EVT_RPC_LOGIN_FLAGS","features":[550]},{"name":"EVT_SEEK_FLAGS","features":[550]},{"name":"EVT_SUBSCRIBE_CALLBACK","features":[550]},{"name":"EVT_SUBSCRIBE_FLAGS","features":[550]},{"name":"EVT_SUBSCRIBE_NOTIFY_ACTION","features":[550]},{"name":"EVT_SYSTEM_PROPERTY_ID","features":[550]},{"name":"EVT_VARIANT","features":[303,550]},{"name":"EVT_VARIANT_TYPE","features":[550]},{"name":"EVT_VARIANT_TYPE_ARRAY","features":[550]},{"name":"EVT_VARIANT_TYPE_MASK","features":[550]},{"name":"EVT_WRITE_ACCESS","features":[550]},{"name":"EventMetadataEventChannel","features":[550]},{"name":"EventMetadataEventID","features":[550]},{"name":"EventMetadataEventKeyword","features":[550]},{"name":"EventMetadataEventLevel","features":[550]},{"name":"EventMetadataEventMessageID","features":[550]},{"name":"EventMetadataEventOpcode","features":[550]},{"name":"EventMetadataEventTask","features":[550]},{"name":"EventMetadataEventTemplate","features":[550]},{"name":"EventMetadataEventVersion","features":[550]},{"name":"EvtArchiveExportedLog","features":[303,550]},{"name":"EvtCancel","features":[303,550]},{"name":"EvtChannelClockTypeQPC","features":[550]},{"name":"EvtChannelClockTypeSystemTime","features":[550]},{"name":"EvtChannelConfigAccess","features":[550]},{"name":"EvtChannelConfigClassicEventlog","features":[550]},{"name":"EvtChannelConfigEnabled","features":[550]},{"name":"EvtChannelConfigIsolation","features":[550]},{"name":"EvtChannelConfigOwningPublisher","features":[550]},{"name":"EvtChannelConfigPropertyIdEND","features":[550]},{"name":"EvtChannelConfigType","features":[550]},{"name":"EvtChannelIsolationTypeApplication","features":[550]},{"name":"EvtChannelIsolationTypeCustom","features":[550]},{"name":"EvtChannelIsolationTypeSystem","features":[550]},{"name":"EvtChannelLoggingConfigAutoBackup","features":[550]},{"name":"EvtChannelLoggingConfigLogFilePath","features":[550]},{"name":"EvtChannelLoggingConfigMaxSize","features":[550]},{"name":"EvtChannelLoggingConfigRetention","features":[550]},{"name":"EvtChannelPublisherList","features":[550]},{"name":"EvtChannelPublishingConfigBufferSize","features":[550]},{"name":"EvtChannelPublishingConfigClockType","features":[550]},{"name":"EvtChannelPublishingConfigControlGuid","features":[550]},{"name":"EvtChannelPublishingConfigFileMax","features":[550]},{"name":"EvtChannelPublishingConfigKeywords","features":[550]},{"name":"EvtChannelPublishingConfigLatency","features":[550]},{"name":"EvtChannelPublishingConfigLevel","features":[550]},{"name":"EvtChannelPublishingConfigMaxBuffers","features":[550]},{"name":"EvtChannelPublishingConfigMinBuffers","features":[550]},{"name":"EvtChannelPublishingConfigSidType","features":[550]},{"name":"EvtChannelReferenceImported","features":[550]},{"name":"EvtChannelSidTypeNone","features":[550]},{"name":"EvtChannelSidTypePublishing","features":[550]},{"name":"EvtChannelTypeAdmin","features":[550]},{"name":"EvtChannelTypeAnalytic","features":[550]},{"name":"EvtChannelTypeDebug","features":[550]},{"name":"EvtChannelTypeOperational","features":[550]},{"name":"EvtClearLog","features":[303,550]},{"name":"EvtClose","features":[303,550]},{"name":"EvtCreateBookmark","features":[550]},{"name":"EvtCreateRenderContext","features":[550]},{"name":"EvtEventMetadataPropertyIdEND","features":[550]},{"name":"EvtEventPath","features":[550]},{"name":"EvtEventPropertyIdEND","features":[550]},{"name":"EvtEventQueryIDs","features":[550]},{"name":"EvtExportLog","features":[303,550]},{"name":"EvtExportLogChannelPath","features":[550]},{"name":"EvtExportLogFilePath","features":[550]},{"name":"EvtExportLogOverwrite","features":[550]},{"name":"EvtExportLogTolerateQueryErrors","features":[550]},{"name":"EvtFormatMessage","features":[303,550]},{"name":"EvtFormatMessageChannel","features":[550]},{"name":"EvtFormatMessageEvent","features":[550]},{"name":"EvtFormatMessageId","features":[550]},{"name":"EvtFormatMessageKeyword","features":[550]},{"name":"EvtFormatMessageLevel","features":[550]},{"name":"EvtFormatMessageOpcode","features":[550]},{"name":"EvtFormatMessageProvider","features":[550]},{"name":"EvtFormatMessageTask","features":[550]},{"name":"EvtFormatMessageXml","features":[550]},{"name":"EvtGetChannelConfigProperty","features":[303,550]},{"name":"EvtGetEventInfo","features":[303,550]},{"name":"EvtGetEventMetadataProperty","features":[303,550]},{"name":"EvtGetExtendedStatus","features":[550]},{"name":"EvtGetLogInfo","features":[303,550]},{"name":"EvtGetObjectArrayProperty","features":[303,550]},{"name":"EvtGetObjectArraySize","features":[303,550]},{"name":"EvtGetPublisherMetadataProperty","features":[303,550]},{"name":"EvtGetQueryInfo","features":[303,550]},{"name":"EvtLogAttributes","features":[550]},{"name":"EvtLogCreationTime","features":[550]},{"name":"EvtLogFileSize","features":[550]},{"name":"EvtLogFull","features":[550]},{"name":"EvtLogLastAccessTime","features":[550]},{"name":"EvtLogLastWriteTime","features":[550]},{"name":"EvtLogNumberOfLogRecords","features":[550]},{"name":"EvtLogOldestRecordNumber","features":[550]},{"name":"EvtNext","features":[303,550]},{"name":"EvtNextChannelPath","features":[303,550]},{"name":"EvtNextEventMetadata","features":[550]},{"name":"EvtNextPublisherId","features":[303,550]},{"name":"EvtOpenChannelConfig","features":[550]},{"name":"EvtOpenChannelEnum","features":[550]},{"name":"EvtOpenChannelPath","features":[550]},{"name":"EvtOpenEventMetadataEnum","features":[550]},{"name":"EvtOpenFilePath","features":[550]},{"name":"EvtOpenLog","features":[550]},{"name":"EvtOpenPublisherEnum","features":[550]},{"name":"EvtOpenPublisherMetadata","features":[550]},{"name":"EvtOpenSession","features":[550]},{"name":"EvtPublisherMetadataChannelReferenceFlags","features":[550]},{"name":"EvtPublisherMetadataChannelReferenceID","features":[550]},{"name":"EvtPublisherMetadataChannelReferenceIndex","features":[550]},{"name":"EvtPublisherMetadataChannelReferenceMessageID","features":[550]},{"name":"EvtPublisherMetadataChannelReferencePath","features":[550]},{"name":"EvtPublisherMetadataChannelReferences","features":[550]},{"name":"EvtPublisherMetadataHelpLink","features":[550]},{"name":"EvtPublisherMetadataKeywordMessageID","features":[550]},{"name":"EvtPublisherMetadataKeywordName","features":[550]},{"name":"EvtPublisherMetadataKeywordValue","features":[550]},{"name":"EvtPublisherMetadataKeywords","features":[550]},{"name":"EvtPublisherMetadataLevelMessageID","features":[550]},{"name":"EvtPublisherMetadataLevelName","features":[550]},{"name":"EvtPublisherMetadataLevelValue","features":[550]},{"name":"EvtPublisherMetadataLevels","features":[550]},{"name":"EvtPublisherMetadataMessageFilePath","features":[550]},{"name":"EvtPublisherMetadataOpcodeMessageID","features":[550]},{"name":"EvtPublisherMetadataOpcodeName","features":[550]},{"name":"EvtPublisherMetadataOpcodeValue","features":[550]},{"name":"EvtPublisherMetadataOpcodes","features":[550]},{"name":"EvtPublisherMetadataParameterFilePath","features":[550]},{"name":"EvtPublisherMetadataPropertyIdEND","features":[550]},{"name":"EvtPublisherMetadataPublisherGuid","features":[550]},{"name":"EvtPublisherMetadataPublisherMessageID","features":[550]},{"name":"EvtPublisherMetadataResourceFilePath","features":[550]},{"name":"EvtPublisherMetadataTaskEventGuid","features":[550]},{"name":"EvtPublisherMetadataTaskMessageID","features":[550]},{"name":"EvtPublisherMetadataTaskName","features":[550]},{"name":"EvtPublisherMetadataTaskValue","features":[550]},{"name":"EvtPublisherMetadataTasks","features":[550]},{"name":"EvtQuery","features":[550]},{"name":"EvtQueryChannelPath","features":[550]},{"name":"EvtQueryFilePath","features":[550]},{"name":"EvtQueryForwardDirection","features":[550]},{"name":"EvtQueryNames","features":[550]},{"name":"EvtQueryPropertyIdEND","features":[550]},{"name":"EvtQueryReverseDirection","features":[550]},{"name":"EvtQueryStatuses","features":[550]},{"name":"EvtQueryTolerateQueryErrors","features":[550]},{"name":"EvtRender","features":[303,550]},{"name":"EvtRenderBookmark","features":[550]},{"name":"EvtRenderContextSystem","features":[550]},{"name":"EvtRenderContextUser","features":[550]},{"name":"EvtRenderContextValues","features":[550]},{"name":"EvtRenderEventValues","features":[550]},{"name":"EvtRenderEventXml","features":[550]},{"name":"EvtRpcLogin","features":[550]},{"name":"EvtRpcLoginAuthDefault","features":[550]},{"name":"EvtRpcLoginAuthKerberos","features":[550]},{"name":"EvtRpcLoginAuthNTLM","features":[550]},{"name":"EvtRpcLoginAuthNegotiate","features":[550]},{"name":"EvtSaveChannelConfig","features":[303,550]},{"name":"EvtSeek","features":[303,550]},{"name":"EvtSeekOriginMask","features":[550]},{"name":"EvtSeekRelativeToBookmark","features":[550]},{"name":"EvtSeekRelativeToCurrent","features":[550]},{"name":"EvtSeekRelativeToFirst","features":[550]},{"name":"EvtSeekRelativeToLast","features":[550]},{"name":"EvtSeekStrict","features":[550]},{"name":"EvtSetChannelConfigProperty","features":[303,550]},{"name":"EvtSubscribe","features":[303,550]},{"name":"EvtSubscribeActionDeliver","features":[550]},{"name":"EvtSubscribeActionError","features":[550]},{"name":"EvtSubscribeOriginMask","features":[550]},{"name":"EvtSubscribeStartAfterBookmark","features":[550]},{"name":"EvtSubscribeStartAtOldestRecord","features":[550]},{"name":"EvtSubscribeStrict","features":[550]},{"name":"EvtSubscribeToFutureEvents","features":[550]},{"name":"EvtSubscribeTolerateQueryErrors","features":[550]},{"name":"EvtSystemActivityID","features":[550]},{"name":"EvtSystemChannel","features":[550]},{"name":"EvtSystemComputer","features":[550]},{"name":"EvtSystemEventID","features":[550]},{"name":"EvtSystemEventRecordId","features":[550]},{"name":"EvtSystemKeywords","features":[550]},{"name":"EvtSystemLevel","features":[550]},{"name":"EvtSystemOpcode","features":[550]},{"name":"EvtSystemProcessID","features":[550]},{"name":"EvtSystemPropertyIdEND","features":[550]},{"name":"EvtSystemProviderGuid","features":[550]},{"name":"EvtSystemProviderName","features":[550]},{"name":"EvtSystemQualifiers","features":[550]},{"name":"EvtSystemRelatedActivityID","features":[550]},{"name":"EvtSystemTask","features":[550]},{"name":"EvtSystemThreadID","features":[550]},{"name":"EvtSystemTimeCreated","features":[550]},{"name":"EvtSystemUserID","features":[550]},{"name":"EvtSystemVersion","features":[550]},{"name":"EvtUpdateBookmark","features":[303,550]},{"name":"EvtVarTypeAnsiString","features":[550]},{"name":"EvtVarTypeBinary","features":[550]},{"name":"EvtVarTypeBoolean","features":[550]},{"name":"EvtVarTypeByte","features":[550]},{"name":"EvtVarTypeDouble","features":[550]},{"name":"EvtVarTypeEvtHandle","features":[550]},{"name":"EvtVarTypeEvtXml","features":[550]},{"name":"EvtVarTypeFileTime","features":[550]},{"name":"EvtVarTypeGuid","features":[550]},{"name":"EvtVarTypeHexInt32","features":[550]},{"name":"EvtVarTypeHexInt64","features":[550]},{"name":"EvtVarTypeInt16","features":[550]},{"name":"EvtVarTypeInt32","features":[550]},{"name":"EvtVarTypeInt64","features":[550]},{"name":"EvtVarTypeNull","features":[550]},{"name":"EvtVarTypeSByte","features":[550]},{"name":"EvtVarTypeSid","features":[550]},{"name":"EvtVarTypeSingle","features":[550]},{"name":"EvtVarTypeSizeT","features":[550]},{"name":"EvtVarTypeString","features":[550]},{"name":"EvtVarTypeSysTime","features":[550]},{"name":"EvtVarTypeUInt16","features":[550]},{"name":"EvtVarTypeUInt32","features":[550]},{"name":"EvtVarTypeUInt64","features":[550]},{"name":"GetEventLogInformation","features":[303,550]},{"name":"GetNumberOfEventLogRecords","features":[303,550]},{"name":"GetOldestEventLogRecord","features":[303,550]},{"name":"NotifyChangeEventLog","features":[303,550]},{"name":"OpenBackupEventLogA","features":[303,550]},{"name":"OpenBackupEventLogW","features":[303,550]},{"name":"OpenEventLogA","features":[303,550]},{"name":"OpenEventLogW","features":[303,550]},{"name":"READ_EVENT_LOG_READ_FLAGS","features":[550]},{"name":"REPORT_EVENT_TYPE","features":[550]},{"name":"ReadEventLogA","features":[303,550]},{"name":"ReadEventLogW","features":[303,550]},{"name":"RegisterEventSourceA","features":[303,550]},{"name":"RegisterEventSourceW","features":[303,550]},{"name":"ReportEventA","features":[303,550]},{"name":"ReportEventW","features":[303,550]}],"565":[{"name":"CONNECTION_AOL","features":[551]},{"name":"CONNECTION_LAN","features":[551]},{"name":"CONNECTION_WAN","features":[551]},{"name":"ISensLogon","features":[354,551]},{"name":"ISensLogon2","features":[354,551]},{"name":"ISensNetwork","features":[354,551]},{"name":"ISensOnNow","features":[354,551]},{"name":"IsDestinationReachableA","features":[303,551]},{"name":"IsDestinationReachableW","features":[303,551]},{"name":"IsNetworkAlive","features":[303,551]},{"name":"NETWORK_ALIVE_AOL","features":[551]},{"name":"NETWORK_ALIVE_INTERNET","features":[551]},{"name":"NETWORK_ALIVE_LAN","features":[551]},{"name":"NETWORK_ALIVE_WAN","features":[551]},{"name":"QOCINFO","features":[551]},{"name":"SENS","features":[551]},{"name":"SENSGUID_EVENTCLASS_LOGON","features":[551]},{"name":"SENSGUID_EVENTCLASS_LOGON2","features":[551]},{"name":"SENSGUID_EVENTCLASS_NETWORK","features":[551]},{"name":"SENSGUID_EVENTCLASS_ONNOW","features":[551]},{"name":"SENSGUID_PUBLISHER","features":[551]},{"name":"SENSGUID_SUBSCRIBER_LCE","features":[551]},{"name":"SENSGUID_SUBSCRIBER_WININET","features":[551]},{"name":"SENS_CONNECTION_TYPE","features":[551]},{"name":"SENS_QOCINFO","features":[551]}],"566":[{"name":"ABSENT","features":[552]},{"name":"ADMXCOMMENTS_EXTENSION_GUID","features":[552]},{"name":"APPNAME","features":[552]},{"name":"APPSTATE","features":[552]},{"name":"ASSIGNED","features":[552]},{"name":"BrowseForGPO","features":[303,552]},{"name":"CLSID_GPESnapIn","features":[552]},{"name":"CLSID_GroupPolicyObject","features":[552]},{"name":"CLSID_RSOPSnapIn","features":[552]},{"name":"COMCLASS","features":[552]},{"name":"CommandLineFromMsiDescriptor","features":[552]},{"name":"CreateGPOLink","features":[303,552]},{"name":"DeleteAllGPOLinks","features":[552]},{"name":"DeleteGPOLink","features":[552]},{"name":"EnterCriticalPolicySection","features":[303,552]},{"name":"ExportRSoPData","features":[552]},{"name":"FILEEXT","features":[552]},{"name":"FLAG_ASSUME_COMP_WQLFILTER_TRUE","features":[552]},{"name":"FLAG_ASSUME_SLOW_LINK","features":[552]},{"name":"FLAG_ASSUME_USER_WQLFILTER_TRUE","features":[552]},{"name":"FLAG_FORCE_CREATENAMESPACE","features":[552]},{"name":"FLAG_LOOPBACK_MERGE","features":[552]},{"name":"FLAG_LOOPBACK_REPLACE","features":[552]},{"name":"FLAG_NO_COMPUTER","features":[552]},{"name":"FLAG_NO_CSE_INVOKE","features":[552]},{"name":"FLAG_NO_GPO_FILTER","features":[552]},{"name":"FLAG_NO_USER","features":[552]},{"name":"FLAG_PLANNING_MODE","features":[552]},{"name":"FreeGPOListA","features":[303,552]},{"name":"FreeGPOListW","features":[303,552]},{"name":"GPC_BLOCK_POLICY","features":[552]},{"name":"GPHintDomain","features":[552]},{"name":"GPHintMachine","features":[552]},{"name":"GPHintOrganizationalUnit","features":[552]},{"name":"GPHintSite","features":[552]},{"name":"GPHintUnknown","features":[552]},{"name":"GPLinkDomain","features":[552]},{"name":"GPLinkMachine","features":[552]},{"name":"GPLinkOrganizationalUnit","features":[552]},{"name":"GPLinkSite","features":[552]},{"name":"GPLinkUnknown","features":[552]},{"name":"GPM","features":[552]},{"name":"GPMAsyncCancel","features":[552]},{"name":"GPMBackup","features":[552]},{"name":"GPMBackupCollection","features":[552]},{"name":"GPMBackupDir","features":[552]},{"name":"GPMBackupDirEx","features":[552]},{"name":"GPMBackupType","features":[552]},{"name":"GPMCSECollection","features":[552]},{"name":"GPMClientSideExtension","features":[552]},{"name":"GPMConstants","features":[552]},{"name":"GPMDestinationOption","features":[552]},{"name":"GPMDomain","features":[552]},{"name":"GPMEntryType","features":[552]},{"name":"GPMGPO","features":[552]},{"name":"GPMGPOCollection","features":[552]},{"name":"GPMGPOLink","features":[552]},{"name":"GPMGPOLinksCollection","features":[552]},{"name":"GPMMapEntry","features":[552]},{"name":"GPMMapEntryCollection","features":[552]},{"name":"GPMMigrationTable","features":[552]},{"name":"GPMPermission","features":[552]},{"name":"GPMPermissionType","features":[552]},{"name":"GPMRSOP","features":[552]},{"name":"GPMRSOPMode","features":[552]},{"name":"GPMReportType","features":[552]},{"name":"GPMReportingOptions","features":[552]},{"name":"GPMResult","features":[552]},{"name":"GPMSOM","features":[552]},{"name":"GPMSOMCollection","features":[552]},{"name":"GPMSOMType","features":[552]},{"name":"GPMSearchCriteria","features":[552]},{"name":"GPMSearchOperation","features":[552]},{"name":"GPMSearchProperty","features":[552]},{"name":"GPMSecurityInfo","features":[552]},{"name":"GPMSitesContainer","features":[552]},{"name":"GPMStarterGPOBackup","features":[552]},{"name":"GPMStarterGPOBackupCollection","features":[552]},{"name":"GPMStarterGPOCollection","features":[552]},{"name":"GPMStarterGPOType","features":[552]},{"name":"GPMStatusMessage","features":[552]},{"name":"GPMStatusMsgCollection","features":[552]},{"name":"GPMTemplate","features":[552]},{"name":"GPMTrustee","features":[552]},{"name":"GPMWMIFilter","features":[552]},{"name":"GPMWMIFilterCollection","features":[552]},{"name":"GPM_DONOTUSE_W2KDC","features":[552]},{"name":"GPM_DONOT_VALIDATEDC","features":[552]},{"name":"GPM_MIGRATIONTABLE_ONLY","features":[552]},{"name":"GPM_PROCESS_SECURITY","features":[552]},{"name":"GPM_USE_ANYDC","features":[552]},{"name":"GPM_USE_PDC","features":[552]},{"name":"GPOBROWSEINFO","features":[303,552]},{"name":"GPOTypeDS","features":[552]},{"name":"GPOTypeLocal","features":[552]},{"name":"GPOTypeLocalGroup","features":[552]},{"name":"GPOTypeLocalUser","features":[552]},{"name":"GPOTypeRemote","features":[552]},{"name":"GPO_BROWSE_DISABLENEW","features":[552]},{"name":"GPO_BROWSE_INITTOALL","features":[552]},{"name":"GPO_BROWSE_NOCOMPUTERS","features":[552]},{"name":"GPO_BROWSE_NODSGPOS","features":[552]},{"name":"GPO_BROWSE_NOUSERGPOS","features":[552]},{"name":"GPO_BROWSE_OPENBUTTON","features":[552]},{"name":"GPO_BROWSE_SENDAPPLYONEDIT","features":[552]},{"name":"GPO_FLAG_DISABLE","features":[552]},{"name":"GPO_FLAG_FORCE","features":[552]},{"name":"GPO_INFO_FLAG_ASYNC_FOREGROUND","features":[552]},{"name":"GPO_INFO_FLAG_BACKGROUND","features":[552]},{"name":"GPO_INFO_FLAG_FORCED_REFRESH","features":[552]},{"name":"GPO_INFO_FLAG_LINKTRANSITION","features":[552]},{"name":"GPO_INFO_FLAG_LOGRSOP_TRANSITION","features":[552]},{"name":"GPO_INFO_FLAG_MACHINE","features":[552]},{"name":"GPO_INFO_FLAG_NOCHANGES","features":[552]},{"name":"GPO_INFO_FLAG_SAFEMODE_BOOT","features":[552]},{"name":"GPO_INFO_FLAG_SLOWLINK","features":[552]},{"name":"GPO_INFO_FLAG_VERBOSE","features":[552]},{"name":"GPO_LINK","features":[552]},{"name":"GPO_LIST_FLAG_MACHINE","features":[552]},{"name":"GPO_LIST_FLAG_NO_SECURITYFILTERS","features":[552]},{"name":"GPO_LIST_FLAG_NO_WMIFILTERS","features":[552]},{"name":"GPO_LIST_FLAG_SITEONLY","features":[552]},{"name":"GPO_OPEN_FLAGS","features":[552]},{"name":"GPO_OPEN_LOAD_REGISTRY","features":[552]},{"name":"GPO_OPEN_READ_ONLY","features":[552]},{"name":"GPO_OPTIONS","features":[552]},{"name":"GPO_OPTION_DISABLE_MACHINE","features":[552]},{"name":"GPO_OPTION_DISABLE_USER","features":[552]},{"name":"GPO_SECTION","features":[552]},{"name":"GPO_SECTION_MACHINE","features":[552]},{"name":"GPO_SECTION_ROOT","features":[552]},{"name":"GPO_SECTION_USER","features":[552]},{"name":"GP_DLLNAME","features":[552]},{"name":"GP_ENABLEASYNCHRONOUSPROCESSING","features":[552]},{"name":"GP_MAXNOGPOLISTCHANGESINTERVAL","features":[552]},{"name":"GP_NOBACKGROUNDPOLICY","features":[552]},{"name":"GP_NOGPOLISTCHANGES","features":[552]},{"name":"GP_NOMACHINEPOLICY","features":[552]},{"name":"GP_NOSLOWLINK","features":[552]},{"name":"GP_NOTIFYLINKTRANSITION","features":[552]},{"name":"GP_NOUSERPOLICY","features":[552]},{"name":"GP_PERUSERLOCALSETTINGS","features":[552]},{"name":"GP_PROCESSGROUPPOLICY","features":[552]},{"name":"GP_REQUIRESSUCCESSFULREGISTRY","features":[552]},{"name":"GROUP_POLICY_HINT_TYPE","features":[552]},{"name":"GROUP_POLICY_OBJECTA","features":[303,552]},{"name":"GROUP_POLICY_OBJECTW","features":[303,552]},{"name":"GROUP_POLICY_OBJECT_TYPE","features":[552]},{"name":"GROUP_POLICY_TRIGGER_EVENT_PROVIDER_GUID","features":[552]},{"name":"GenerateGPNotification","features":[303,552]},{"name":"GetAppliedGPOListA","features":[303,552]},{"name":"GetAppliedGPOListW","features":[303,552]},{"name":"GetGPOListA","features":[303,552]},{"name":"GetGPOListW","features":[303,552]},{"name":"GetLocalManagedApplicationData","features":[552]},{"name":"GetLocalManagedApplications","features":[303,552]},{"name":"GetManagedApplicationCategories","features":[552,464]},{"name":"GetManagedApplications","features":[303,552]},{"name":"IGPEInformation","features":[552]},{"name":"IGPM","features":[354,552]},{"name":"IGPM2","features":[354,552]},{"name":"IGPMAsyncCancel","features":[354,552]},{"name":"IGPMAsyncProgress","features":[354,552]},{"name":"IGPMBackup","features":[354,552]},{"name":"IGPMBackupCollection","features":[354,552]},{"name":"IGPMBackupDir","features":[354,552]},{"name":"IGPMBackupDirEx","features":[354,552]},{"name":"IGPMCSECollection","features":[354,552]},{"name":"IGPMClientSideExtension","features":[354,552]},{"name":"IGPMConstants","features":[354,552]},{"name":"IGPMConstants2","features":[354,552]},{"name":"IGPMDomain","features":[354,552]},{"name":"IGPMDomain2","features":[354,552]},{"name":"IGPMDomain3","features":[354,552]},{"name":"IGPMGPO","features":[354,552]},{"name":"IGPMGPO2","features":[354,552]},{"name":"IGPMGPO3","features":[354,552]},{"name":"IGPMGPOCollection","features":[354,552]},{"name":"IGPMGPOLink","features":[354,552]},{"name":"IGPMGPOLinksCollection","features":[354,552]},{"name":"IGPMMapEntry","features":[354,552]},{"name":"IGPMMapEntryCollection","features":[354,552]},{"name":"IGPMMigrationTable","features":[354,552]},{"name":"IGPMPermission","features":[354,552]},{"name":"IGPMRSOP","features":[354,552]},{"name":"IGPMResult","features":[354,552]},{"name":"IGPMSOM","features":[354,552]},{"name":"IGPMSOMCollection","features":[354,552]},{"name":"IGPMSearchCriteria","features":[354,552]},{"name":"IGPMSecurityInfo","features":[354,552]},{"name":"IGPMSitesContainer","features":[354,552]},{"name":"IGPMStarterGPO","features":[354,552]},{"name":"IGPMStarterGPOBackup","features":[354,552]},{"name":"IGPMStarterGPOBackupCollection","features":[354,552]},{"name":"IGPMStarterGPOCollection","features":[354,552]},{"name":"IGPMStatusMessage","features":[354,552]},{"name":"IGPMStatusMsgCollection","features":[354,552]},{"name":"IGPMTrustee","features":[354,552]},{"name":"IGPMWMIFilter","features":[354,552]},{"name":"IGPMWMIFilterCollection","features":[354,552]},{"name":"IGroupPolicyObject","features":[552]},{"name":"INSTALLDATA","features":[552]},{"name":"INSTALLSPEC","features":[552]},{"name":"INSTALLSPECTYPE","features":[552]},{"name":"IRSOPInformation","features":[552]},{"name":"ImportRSoPData","features":[552]},{"name":"InstallApplication","features":[552]},{"name":"LOCALMANAGEDAPPLICATION","features":[552]},{"name":"LOCALSTATE_ASSIGNED","features":[552]},{"name":"LOCALSTATE_ORPHANED","features":[552]},{"name":"LOCALSTATE_POLICYREMOVE_ORPHAN","features":[552]},{"name":"LOCALSTATE_POLICYREMOVE_UNINSTALL","features":[552]},{"name":"LOCALSTATE_PUBLISHED","features":[552]},{"name":"LOCALSTATE_UNINSTALLED","features":[552]},{"name":"LOCALSTATE_UNINSTALL_UNMANAGED","features":[552]},{"name":"LeaveCriticalPolicySection","features":[303,552]},{"name":"MACHINE_POLICY_PRESENT_TRIGGER_GUID","features":[552]},{"name":"MANAGEDAPPLICATION","features":[303,552]},{"name":"MANAGED_APPS_FROMCATEGORY","features":[552]},{"name":"MANAGED_APPS_INFOLEVEL_DEFAULT","features":[552]},{"name":"MANAGED_APPS_USERAPPLICATIONS","features":[552]},{"name":"MANAGED_APPTYPE_SETUPEXE","features":[552]},{"name":"MANAGED_APPTYPE_UNSUPPORTED","features":[552]},{"name":"MANAGED_APPTYPE_WINDOWSINSTALLER","features":[552]},{"name":"NODEID_Machine","features":[552]},{"name":"NODEID_MachineSWSettings","features":[552]},{"name":"NODEID_RSOPMachine","features":[552]},{"name":"NODEID_RSOPMachineSWSettings","features":[552]},{"name":"NODEID_RSOPUser","features":[552]},{"name":"NODEID_RSOPUserSWSettings","features":[552]},{"name":"NODEID_User","features":[552]},{"name":"NODEID_UserSWSettings","features":[552]},{"name":"PFNGENERATEGROUPPOLICY","features":[303,354,552,553]},{"name":"PFNPROCESSGROUPPOLICY","features":[303,552,364]},{"name":"PFNPROCESSGROUPPOLICYEX","features":[303,552,364,553]},{"name":"PFNSTATUSMESSAGECALLBACK","features":[303,552]},{"name":"PI_APPLYPOLICY","features":[552]},{"name":"PI_NOUI","features":[552]},{"name":"POLICYSETTINGSTATUSINFO","features":[303,552]},{"name":"PROGID","features":[552]},{"name":"PT_MANDATORY","features":[552]},{"name":"PT_ROAMING","features":[552]},{"name":"PT_ROAMING_PREEXISTING","features":[552]},{"name":"PT_TEMPORARY","features":[552]},{"name":"PUBLISHED","features":[552]},{"name":"ProcessGroupPolicyCompleted","features":[552]},{"name":"ProcessGroupPolicyCompletedEx","features":[552]},{"name":"REGISTRY_EXTENSION_GUID","features":[552]},{"name":"RP_FORCE","features":[552]},{"name":"RP_SYNC","features":[552]},{"name":"RSOPApplied","features":[552]},{"name":"RSOPFailed","features":[552]},{"name":"RSOPIgnored","features":[552]},{"name":"RSOPSubsettingFailed","features":[552]},{"name":"RSOPUnspecified","features":[552]},{"name":"RSOP_COMPUTER_ACCESS_DENIED","features":[552]},{"name":"RSOP_INFO_FLAG_DIAGNOSTIC_MODE","features":[552]},{"name":"RSOP_NO_COMPUTER","features":[552]},{"name":"RSOP_NO_USER","features":[552]},{"name":"RSOP_PLANNING_ASSUME_COMP_WQLFILTER_TRUE","features":[552]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_MERGE","features":[552]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_REPLACE","features":[552]},{"name":"RSOP_PLANNING_ASSUME_SLOW_LINK","features":[552]},{"name":"RSOP_PLANNING_ASSUME_USER_WQLFILTER_TRUE","features":[552]},{"name":"RSOP_TARGET","features":[303,354,552,553]},{"name":"RSOP_TEMPNAMESPACE_EXISTS","features":[552]},{"name":"RSOP_USER_ACCESS_DENIED","features":[552]},{"name":"RefreshPolicy","features":[303,552]},{"name":"RefreshPolicyEx","features":[303,552]},{"name":"RegisterGPNotification","features":[303,552]},{"name":"RsopAccessCheckByType","features":[303,306,552]},{"name":"RsopFileAccessCheck","features":[303,552]},{"name":"RsopResetPolicySettingStatus","features":[552,553]},{"name":"RsopSetPolicySettingStatus","features":[303,552,553]},{"name":"SETTINGSTATUS","features":[552]},{"name":"USER_POLICY_PRESENT_TRIGGER_GUID","features":[552]},{"name":"UninstallApplication","features":[552]},{"name":"UnregisterGPNotification","features":[303,552]},{"name":"backupMostRecent","features":[552]},{"name":"gpoComputerExtensions","features":[552]},{"name":"gpoDisplayName","features":[552]},{"name":"gpoDomain","features":[552]},{"name":"gpoEffectivePermissions","features":[552]},{"name":"gpoID","features":[552]},{"name":"gpoPermissions","features":[552]},{"name":"gpoUserExtensions","features":[552]},{"name":"gpoWMIFilter","features":[552]},{"name":"opContains","features":[552]},{"name":"opDestinationByRelativeName","features":[552]},{"name":"opDestinationNone","features":[552]},{"name":"opDestinationSameAsSource","features":[552]},{"name":"opDestinationSet","features":[552]},{"name":"opEquals","features":[552]},{"name":"opNotContains","features":[552]},{"name":"opNotEquals","features":[552]},{"name":"opReportComments","features":[552]},{"name":"opReportLegacy","features":[552]},{"name":"permGPOApply","features":[552]},{"name":"permGPOCustom","features":[552]},{"name":"permGPOEdit","features":[552]},{"name":"permGPOEditSecurityAndDelete","features":[552]},{"name":"permGPORead","features":[552]},{"name":"permSOMGPOCreate","features":[552]},{"name":"permSOMLink","features":[552]},{"name":"permSOMLogging","features":[552]},{"name":"permSOMPlanning","features":[552]},{"name":"permSOMStarterGPOCreate","features":[552]},{"name":"permSOMWMICreate","features":[552]},{"name":"permSOMWMIFullControl","features":[552]},{"name":"permStarterGPOCustom","features":[552]},{"name":"permStarterGPOEdit","features":[552]},{"name":"permStarterGPOFullControl","features":[552]},{"name":"permStarterGPORead","features":[552]},{"name":"permWMIFilterCustom","features":[552]},{"name":"permWMIFilterEdit","features":[552]},{"name":"permWMIFilterFullControl","features":[552]},{"name":"repClientHealthRefreshXML","features":[552]},{"name":"repClientHealthXML","features":[552]},{"name":"repHTML","features":[552]},{"name":"repInfraRefreshXML","features":[552]},{"name":"repInfraXML","features":[552]},{"name":"repXML","features":[552]},{"name":"rsopLogging","features":[552]},{"name":"rsopPlanning","features":[552]},{"name":"rsopUnknown","features":[552]},{"name":"somDomain","features":[552]},{"name":"somLinks","features":[552]},{"name":"somOU","features":[552]},{"name":"somSite","features":[552]},{"name":"starterGPODisplayName","features":[552]},{"name":"starterGPODomain","features":[552]},{"name":"starterGPOEffectivePermissions","features":[552]},{"name":"starterGPOID","features":[552]},{"name":"starterGPOPermissions","features":[552]},{"name":"typeComputer","features":[552]},{"name":"typeCustom","features":[552]},{"name":"typeGPO","features":[552]},{"name":"typeGlobalGroup","features":[552]},{"name":"typeLocalGroup","features":[552]},{"name":"typeStarterGPO","features":[552]},{"name":"typeSystem","features":[552]},{"name":"typeUNCPath","features":[552]},{"name":"typeUniversalGroup","features":[552]},{"name":"typeUnknown","features":[552]},{"name":"typeUser","features":[552]}],"567":[{"name":"HCS_CALLBACK","features":[554]}],"568":[{"name":"HCN_NOTIFICATIONS","features":[555]},{"name":"HCN_NOTIFICATION_CALLBACK","features":[555]},{"name":"HCN_PORT_ACCESS","features":[555]},{"name":"HCN_PORT_ACCESS_EXCLUSIVE","features":[555]},{"name":"HCN_PORT_ACCESS_SHARED","features":[555]},{"name":"HCN_PORT_PROTOCOL","features":[555]},{"name":"HCN_PORT_PROTOCOL_BOTH","features":[555]},{"name":"HCN_PORT_PROTOCOL_TCP","features":[555]},{"name":"HCN_PORT_PROTOCOL_UDP","features":[555]},{"name":"HCN_PORT_RANGE_ENTRY","features":[555]},{"name":"HCN_PORT_RANGE_RESERVATION","features":[555]},{"name":"HcnCloseEndpoint","features":[555]},{"name":"HcnCloseGuestNetworkService","features":[555]},{"name":"HcnCloseLoadBalancer","features":[555]},{"name":"HcnCloseNamespace","features":[555]},{"name":"HcnCloseNetwork","features":[555]},{"name":"HcnCreateEndpoint","features":[555]},{"name":"HcnCreateGuestNetworkService","features":[555]},{"name":"HcnCreateLoadBalancer","features":[555]},{"name":"HcnCreateNamespace","features":[555]},{"name":"HcnCreateNetwork","features":[555]},{"name":"HcnDeleteEndpoint","features":[555]},{"name":"HcnDeleteGuestNetworkService","features":[555]},{"name":"HcnDeleteLoadBalancer","features":[555]},{"name":"HcnDeleteNamespace","features":[555]},{"name":"HcnDeleteNetwork","features":[555]},{"name":"HcnEnumerateEndpoints","features":[555]},{"name":"HcnEnumerateGuestNetworkPortReservations","features":[555]},{"name":"HcnEnumerateLoadBalancers","features":[555]},{"name":"HcnEnumerateNamespaces","features":[555]},{"name":"HcnEnumerateNetworks","features":[555]},{"name":"HcnFreeGuestNetworkPortReservations","features":[555]},{"name":"HcnModifyEndpoint","features":[555]},{"name":"HcnModifyGuestNetworkService","features":[555]},{"name":"HcnModifyLoadBalancer","features":[555]},{"name":"HcnModifyNamespace","features":[555]},{"name":"HcnModifyNetwork","features":[555]},{"name":"HcnNotificationFlagsReserved","features":[555]},{"name":"HcnNotificationGuestNetworkServiceCreate","features":[555]},{"name":"HcnNotificationGuestNetworkServiceDelete","features":[555]},{"name":"HcnNotificationGuestNetworkServiceInterfaceStateChanged","features":[555]},{"name":"HcnNotificationGuestNetworkServiceStateChanged","features":[555]},{"name":"HcnNotificationInvalid","features":[555]},{"name":"HcnNotificationNamespaceCreate","features":[555]},{"name":"HcnNotificationNamespaceDelete","features":[555]},{"name":"HcnNotificationNetworkCreate","features":[555]},{"name":"HcnNotificationNetworkDelete","features":[555]},{"name":"HcnNotificationNetworkEndpointAttached","features":[555]},{"name":"HcnNotificationNetworkEndpointDetached","features":[555]},{"name":"HcnNotificationNetworkPreCreate","features":[555]},{"name":"HcnNotificationNetworkPreDelete","features":[555]},{"name":"HcnNotificationServiceDisconnect","features":[555]},{"name":"HcnOpenEndpoint","features":[555]},{"name":"HcnOpenLoadBalancer","features":[555]},{"name":"HcnOpenNamespace","features":[555]},{"name":"HcnOpenNetwork","features":[555]},{"name":"HcnQueryEndpointAddresses","features":[555]},{"name":"HcnQueryEndpointProperties","features":[555]},{"name":"HcnQueryEndpointStats","features":[555]},{"name":"HcnQueryLoadBalancerProperties","features":[555]},{"name":"HcnQueryNamespaceProperties","features":[555]},{"name":"HcnQueryNetworkProperties","features":[555]},{"name":"HcnRegisterGuestNetworkServiceCallback","features":[555]},{"name":"HcnRegisterServiceCallback","features":[555]},{"name":"HcnReleaseGuestNetworkServicePortReservationHandle","features":[303,555]},{"name":"HcnReserveGuestNetworkServicePort","features":[303,555]},{"name":"HcnReserveGuestNetworkServicePortRange","features":[303,555]},{"name":"HcnUnregisterGuestNetworkServiceCallback","features":[555]},{"name":"HcnUnregisterServiceCallback","features":[555]}],"569":[{"name":"HCS_CREATE_OPTIONS","features":[556]},{"name":"HCS_CREATE_OPTIONS_1","features":[303,306,556]},{"name":"HCS_EVENT","features":[556]},{"name":"HCS_EVENT_CALLBACK","features":[556]},{"name":"HCS_EVENT_OPTIONS","features":[556]},{"name":"HCS_EVENT_TYPE","features":[556]},{"name":"HCS_NOTIFICATIONS","features":[556]},{"name":"HCS_NOTIFICATION_CALLBACK","features":[556]},{"name":"HCS_NOTIFICATION_FLAGS","features":[556]},{"name":"HCS_OPERATION","features":[556]},{"name":"HCS_OPERATION_COMPLETION","features":[556]},{"name":"HCS_OPERATION_OPTIONS","features":[556]},{"name":"HCS_OPERATION_TYPE","features":[556]},{"name":"HCS_PROCESS","features":[556]},{"name":"HCS_PROCESS_INFORMATION","features":[303,556]},{"name":"HCS_RESOURCE_TYPE","features":[556]},{"name":"HCS_SYSTEM","features":[556]},{"name":"HcsAddResourceToOperation","features":[303,556]},{"name":"HcsAttachLayerStorageFilter","features":[556]},{"name":"HcsCancelOperation","features":[556]},{"name":"HcsCloseComputeSystem","features":[556]},{"name":"HcsCloseOperation","features":[556]},{"name":"HcsCloseProcess","features":[556]},{"name":"HcsCrashComputeSystem","features":[556]},{"name":"HcsCreateComputeSystem","features":[303,306,556]},{"name":"HcsCreateComputeSystemInNamespace","features":[556]},{"name":"HcsCreateEmptyGuestStateFile","features":[556]},{"name":"HcsCreateEmptyRuntimeStateFile","features":[556]},{"name":"HcsCreateOperation","features":[556]},{"name":"HcsCreateOperationWithNotifications","features":[556]},{"name":"HcsCreateOptions_1","features":[556]},{"name":"HcsCreateProcess","features":[303,306,556]},{"name":"HcsDestroyLayer","features":[556]},{"name":"HcsDetachLayerStorageFilter","features":[556]},{"name":"HcsEnumerateComputeSystems","features":[556]},{"name":"HcsEnumerateComputeSystemsInNamespace","features":[556]},{"name":"HcsEventGroupOperationInfo","features":[556]},{"name":"HcsEventGroupVmLifecycle","features":[556]},{"name":"HcsEventInvalid","features":[556]},{"name":"HcsEventOperationCallback","features":[556]},{"name":"HcsEventOptionEnableOperationCallbacks","features":[556]},{"name":"HcsEventOptionEnableVmLifecycle","features":[556]},{"name":"HcsEventOptionNone","features":[556]},{"name":"HcsEventProcessExited","features":[556]},{"name":"HcsEventServiceDisconnect","features":[556]},{"name":"HcsEventSystemCrashInitiated","features":[556]},{"name":"HcsEventSystemCrashReport","features":[556]},{"name":"HcsEventSystemExited","features":[556]},{"name":"HcsEventSystemGuestConnectionClosed","features":[556]},{"name":"HcsEventSystemRdpEnhancedModeStateChanged","features":[556]},{"name":"HcsEventSystemSiloJobCreated","features":[556]},{"name":"HcsExportLayer","features":[556]},{"name":"HcsExportLegacyWritableLayer","features":[556]},{"name":"HcsFormatWritableLayerVhd","features":[303,556]},{"name":"HcsGetComputeSystemFromOperation","features":[556]},{"name":"HcsGetComputeSystemProperties","features":[556]},{"name":"HcsGetLayerVhdMountPath","features":[303,556]},{"name":"HcsGetOperationContext","features":[556]},{"name":"HcsGetOperationId","features":[556]},{"name":"HcsGetOperationResult","features":[556]},{"name":"HcsGetOperationResultAndProcessInfo","features":[303,556]},{"name":"HcsGetOperationType","features":[556]},{"name":"HcsGetProcessFromOperation","features":[556]},{"name":"HcsGetProcessInfo","features":[556]},{"name":"HcsGetProcessProperties","features":[556]},{"name":"HcsGetProcessorCompatibilityFromSavedState","features":[556]},{"name":"HcsGetServiceProperties","features":[556]},{"name":"HcsGrantVmAccess","features":[556]},{"name":"HcsGrantVmGroupAccess","features":[556]},{"name":"HcsImportLayer","features":[556]},{"name":"HcsInitializeLegacyWritableLayer","features":[556]},{"name":"HcsInitializeWritableLayer","features":[556]},{"name":"HcsModifyComputeSystem","features":[303,556]},{"name":"HcsModifyProcess","features":[556]},{"name":"HcsModifyServiceSettings","features":[556]},{"name":"HcsNotificationFlagFailure","features":[556]},{"name":"HcsNotificationFlagSuccess","features":[556]},{"name":"HcsNotificationFlagsReserved","features":[556]},{"name":"HcsNotificationInvalid","features":[556]},{"name":"HcsNotificationOperationProgressUpdate","features":[556]},{"name":"HcsNotificationProcessExited","features":[556]},{"name":"HcsNotificationServiceDisconnect","features":[556]},{"name":"HcsNotificationSystemCrashInitiated","features":[556]},{"name":"HcsNotificationSystemCrashReport","features":[556]},{"name":"HcsNotificationSystemCreateCompleted","features":[556]},{"name":"HcsNotificationSystemExited","features":[556]},{"name":"HcsNotificationSystemGetPropertiesCompleted","features":[556]},{"name":"HcsNotificationSystemGuestConnectionClosed","features":[556]},{"name":"HcsNotificationSystemModifyCompleted","features":[556]},{"name":"HcsNotificationSystemOperationCompletion","features":[556]},{"name":"HcsNotificationSystemPassThru","features":[556]},{"name":"HcsNotificationSystemPauseCompleted","features":[556]},{"name":"HcsNotificationSystemRdpEnhancedModeStateChanged","features":[556]},{"name":"HcsNotificationSystemResumeCompleted","features":[556]},{"name":"HcsNotificationSystemSaveCompleted","features":[556]},{"name":"HcsNotificationSystemShutdownCompleted","features":[556]},{"name":"HcsNotificationSystemShutdownFailed","features":[556]},{"name":"HcsNotificationSystemSiloJobCreated","features":[556]},{"name":"HcsNotificationSystemStartCompleted","features":[556]},{"name":"HcsOpenComputeSystem","features":[556]},{"name":"HcsOpenComputeSystemInNamespace","features":[556]},{"name":"HcsOpenProcess","features":[556]},{"name":"HcsOperationOptionNone","features":[556]},{"name":"HcsOperationOptionProgressUpdate","features":[556]},{"name":"HcsOperationTypeCrash","features":[556]},{"name":"HcsOperationTypeCreate","features":[556]},{"name":"HcsOperationTypeCreateProcess","features":[556]},{"name":"HcsOperationTypeEnumerate","features":[556]},{"name":"HcsOperationTypeGetProcessInfo","features":[556]},{"name":"HcsOperationTypeGetProcessProperties","features":[556]},{"name":"HcsOperationTypeGetProperties","features":[556]},{"name":"HcsOperationTypeModify","features":[556]},{"name":"HcsOperationTypeModifyProcess","features":[556]},{"name":"HcsOperationTypeNone","features":[556]},{"name":"HcsOperationTypePause","features":[556]},{"name":"HcsOperationTypeResume","features":[556]},{"name":"HcsOperationTypeSave","features":[556]},{"name":"HcsOperationTypeShutdown","features":[556]},{"name":"HcsOperationTypeSignalProcess","features":[556]},{"name":"HcsOperationTypeStart","features":[556]},{"name":"HcsOperationTypeTerminate","features":[556]},{"name":"HcsPauseComputeSystem","features":[556]},{"name":"HcsResourceTypeFile","features":[556]},{"name":"HcsResourceTypeJob","features":[556]},{"name":"HcsResourceTypeNone","features":[556]},{"name":"HcsResumeComputeSystem","features":[556]},{"name":"HcsRevokeVmAccess","features":[556]},{"name":"HcsRevokeVmGroupAccess","features":[556]},{"name":"HcsSaveComputeSystem","features":[556]},{"name":"HcsSetComputeSystemCallback","features":[556]},{"name":"HcsSetOperationCallback","features":[556]},{"name":"HcsSetOperationContext","features":[556]},{"name":"HcsSetProcessCallback","features":[556]},{"name":"HcsSetupBaseOSLayer","features":[303,556]},{"name":"HcsSetupBaseOSVolume","features":[556]},{"name":"HcsShutDownComputeSystem","features":[556]},{"name":"HcsSignalProcess","features":[556]},{"name":"HcsStartComputeSystem","features":[556]},{"name":"HcsSubmitWerReport","features":[556]},{"name":"HcsTerminateComputeSystem","features":[556]},{"name":"HcsTerminateProcess","features":[556]},{"name":"HcsWaitForComputeSystemExit","features":[556]},{"name":"HcsWaitForOperationResult","features":[556]},{"name":"HcsWaitForOperationResultAndProcessInfo","features":[303,556]},{"name":"HcsWaitForProcessExit","features":[556]}],"570":[{"name":"ARM64_RegisterActlrEl1","features":[557]},{"name":"ARM64_RegisterAmairEl1","features":[557]},{"name":"ARM64_RegisterCntkctlEl1","features":[557]},{"name":"ARM64_RegisterCntvCtlEl0","features":[557]},{"name":"ARM64_RegisterCntvCvalEl0","features":[557]},{"name":"ARM64_RegisterContextIdrEl1","features":[557]},{"name":"ARM64_RegisterCpacrEl1","features":[557]},{"name":"ARM64_RegisterCpsr","features":[557]},{"name":"ARM64_RegisterCsselrEl1","features":[557]},{"name":"ARM64_RegisterElrEl1","features":[557]},{"name":"ARM64_RegisterEsrEl1","features":[557]},{"name":"ARM64_RegisterFarEl1","features":[557]},{"name":"ARM64_RegisterFpControl","features":[557]},{"name":"ARM64_RegisterFpStatus","features":[557]},{"name":"ARM64_RegisterMairEl1","features":[557]},{"name":"ARM64_RegisterMax","features":[557]},{"name":"ARM64_RegisterParEl1","features":[557]},{"name":"ARM64_RegisterPc","features":[557]},{"name":"ARM64_RegisterQ0","features":[557]},{"name":"ARM64_RegisterQ1","features":[557]},{"name":"ARM64_RegisterQ10","features":[557]},{"name":"ARM64_RegisterQ11","features":[557]},{"name":"ARM64_RegisterQ12","features":[557]},{"name":"ARM64_RegisterQ13","features":[557]},{"name":"ARM64_RegisterQ14","features":[557]},{"name":"ARM64_RegisterQ15","features":[557]},{"name":"ARM64_RegisterQ16","features":[557]},{"name":"ARM64_RegisterQ17","features":[557]},{"name":"ARM64_RegisterQ18","features":[557]},{"name":"ARM64_RegisterQ19","features":[557]},{"name":"ARM64_RegisterQ2","features":[557]},{"name":"ARM64_RegisterQ20","features":[557]},{"name":"ARM64_RegisterQ21","features":[557]},{"name":"ARM64_RegisterQ22","features":[557]},{"name":"ARM64_RegisterQ23","features":[557]},{"name":"ARM64_RegisterQ24","features":[557]},{"name":"ARM64_RegisterQ25","features":[557]},{"name":"ARM64_RegisterQ26","features":[557]},{"name":"ARM64_RegisterQ27","features":[557]},{"name":"ARM64_RegisterQ28","features":[557]},{"name":"ARM64_RegisterQ29","features":[557]},{"name":"ARM64_RegisterQ3","features":[557]},{"name":"ARM64_RegisterQ30","features":[557]},{"name":"ARM64_RegisterQ31","features":[557]},{"name":"ARM64_RegisterQ4","features":[557]},{"name":"ARM64_RegisterQ5","features":[557]},{"name":"ARM64_RegisterQ6","features":[557]},{"name":"ARM64_RegisterQ7","features":[557]},{"name":"ARM64_RegisterQ8","features":[557]},{"name":"ARM64_RegisterQ9","features":[557]},{"name":"ARM64_RegisterSctlrEl1","features":[557]},{"name":"ARM64_RegisterSpEl0","features":[557]},{"name":"ARM64_RegisterSpEl1","features":[557]},{"name":"ARM64_RegisterSpsrEl1","features":[557]},{"name":"ARM64_RegisterTcrEl1","features":[557]},{"name":"ARM64_RegisterTpidrEl0","features":[557]},{"name":"ARM64_RegisterTpidrEl1","features":[557]},{"name":"ARM64_RegisterTpidrroEl0","features":[557]},{"name":"ARM64_RegisterTtbr0El1","features":[557]},{"name":"ARM64_RegisterTtbr1El1","features":[557]},{"name":"ARM64_RegisterVbarEl1","features":[557]},{"name":"ARM64_RegisterX0","features":[557]},{"name":"ARM64_RegisterX1","features":[557]},{"name":"ARM64_RegisterX10","features":[557]},{"name":"ARM64_RegisterX11","features":[557]},{"name":"ARM64_RegisterX12","features":[557]},{"name":"ARM64_RegisterX13","features":[557]},{"name":"ARM64_RegisterX14","features":[557]},{"name":"ARM64_RegisterX15","features":[557]},{"name":"ARM64_RegisterX16","features":[557]},{"name":"ARM64_RegisterX17","features":[557]},{"name":"ARM64_RegisterX18","features":[557]},{"name":"ARM64_RegisterX19","features":[557]},{"name":"ARM64_RegisterX2","features":[557]},{"name":"ARM64_RegisterX20","features":[557]},{"name":"ARM64_RegisterX21","features":[557]},{"name":"ARM64_RegisterX22","features":[557]},{"name":"ARM64_RegisterX23","features":[557]},{"name":"ARM64_RegisterX24","features":[557]},{"name":"ARM64_RegisterX25","features":[557]},{"name":"ARM64_RegisterX26","features":[557]},{"name":"ARM64_RegisterX27","features":[557]},{"name":"ARM64_RegisterX28","features":[557]},{"name":"ARM64_RegisterX3","features":[557]},{"name":"ARM64_RegisterX4","features":[557]},{"name":"ARM64_RegisterX5","features":[557]},{"name":"ARM64_RegisterX6","features":[557]},{"name":"ARM64_RegisterX7","features":[557]},{"name":"ARM64_RegisterX8","features":[557]},{"name":"ARM64_RegisterX9","features":[557]},{"name":"ARM64_RegisterXFp","features":[557]},{"name":"ARM64_RegisterXLr","features":[557]},{"name":"ApplyGuestMemoryFix","features":[557]},{"name":"ApplyPendingSavedStateFileReplayLog","features":[557]},{"name":"Arch_Armv8","features":[557]},{"name":"Arch_Unknown","features":[557]},{"name":"Arch_x64","features":[557]},{"name":"Arch_x86","features":[557]},{"name":"CallStackUnwind","features":[557]},{"name":"DOS_IMAGE_INFO","features":[557]},{"name":"FOUND_IMAGE_CALLBACK","features":[303,557]},{"name":"FindSavedStateSymbolFieldInType","features":[303,557]},{"name":"ForceActiveVirtualTrustLevel","features":[557]},{"name":"ForceArchitecture","features":[557]},{"name":"ForceNestedHostMode","features":[303,557]},{"name":"ForcePagingMode","features":[557]},{"name":"GPA_MEMORY_CHUNK","features":[557]},{"name":"GUEST_OS_INFO","features":[557]},{"name":"GUEST_OS_MICROSOFT_IDS","features":[557]},{"name":"GUEST_OS_OPENSOURCE_IDS","features":[557]},{"name":"GUEST_OS_VENDOR","features":[557]},{"name":"GUEST_SYMBOLS_PROVIDER_DEBUG_INFO_CALLBACK","features":[557]},{"name":"GUID_DEVINTERFACE_VM_GENCOUNTER","features":[557]},{"name":"GetActiveVirtualTrustLevel","features":[557]},{"name":"GetArchitecture","features":[557]},{"name":"GetEnabledVirtualTrustLevels","features":[557]},{"name":"GetGuestEnabledVirtualTrustLevels","features":[557]},{"name":"GetGuestOsInfo","features":[557]},{"name":"GetGuestPhysicalMemoryChunks","features":[557]},{"name":"GetGuestRawSavedMemorySize","features":[557]},{"name":"GetMemoryBlockCacheLimit","features":[557]},{"name":"GetNestedVirtualizationMode","features":[303,557]},{"name":"GetPagingMode","features":[557]},{"name":"GetRegisterValue","features":[557]},{"name":"GetSavedStateSymbolFieldInfo","features":[557]},{"name":"GetSavedStateSymbolProviderHandle","features":[303,557]},{"name":"GetSavedStateSymbolTypeSize","features":[557]},{"name":"GetVpCount","features":[557]},{"name":"GuestOsMicrosoftMSDOS","features":[557]},{"name":"GuestOsMicrosoftUndefined","features":[557]},{"name":"GuestOsMicrosoftWindows3x","features":[557]},{"name":"GuestOsMicrosoftWindows9x","features":[557]},{"name":"GuestOsMicrosoftWindowsCE","features":[557]},{"name":"GuestOsMicrosoftWindowsNT","features":[557]},{"name":"GuestOsOpenSourceFreeBSD","features":[557]},{"name":"GuestOsOpenSourceIllumos","features":[557]},{"name":"GuestOsOpenSourceLinux","features":[557]},{"name":"GuestOsOpenSourceUndefined","features":[557]},{"name":"GuestOsOpenSourceXen","features":[557]},{"name":"GuestOsVendorHPE","features":[557]},{"name":"GuestOsVendorLANCOM","features":[557]},{"name":"GuestOsVendorMicrosoft","features":[557]},{"name":"GuestOsVendorUndefined","features":[557]},{"name":"GuestPhysicalAddressToRawSavedMemoryOffset","features":[557]},{"name":"GuestVirtualAddressToPhysicalAddress","features":[557]},{"name":"HDV_DEVICE_HOST_FLAGS","features":[557]},{"name":"HDV_DEVICE_TYPE","features":[557]},{"name":"HDV_DOORBELL_FLAGS","features":[557]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_ANY_VALUE","features":[557]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_ANY","features":[557]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_BYTE","features":[557]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_DWORD","features":[557]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_QWORD","features":[557]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_WORD","features":[557]},{"name":"HDV_MMIO_MAPPING_FLAGS","features":[557]},{"name":"HDV_PCI_BAR0","features":[557]},{"name":"HDV_PCI_BAR1","features":[557]},{"name":"HDV_PCI_BAR2","features":[557]},{"name":"HDV_PCI_BAR3","features":[557]},{"name":"HDV_PCI_BAR4","features":[557]},{"name":"HDV_PCI_BAR5","features":[557]},{"name":"HDV_PCI_BAR_COUNT","features":[557]},{"name":"HDV_PCI_BAR_SELECTOR","features":[557]},{"name":"HDV_PCI_DEVICE_GET_DETAILS","features":[557]},{"name":"HDV_PCI_DEVICE_INITIALIZE","features":[557]},{"name":"HDV_PCI_DEVICE_INTERFACE","features":[557]},{"name":"HDV_PCI_DEVICE_SET_CONFIGURATION","features":[557]},{"name":"HDV_PCI_DEVICE_START","features":[557]},{"name":"HDV_PCI_DEVICE_STOP","features":[557]},{"name":"HDV_PCI_DEVICE_TEARDOWN","features":[557]},{"name":"HDV_PCI_INTERFACE_VERSION","features":[557]},{"name":"HDV_PCI_PNP_ID","features":[557]},{"name":"HDV_PCI_READ_CONFIG_SPACE","features":[557]},{"name":"HDV_PCI_READ_INTERCEPTED_MEMORY","features":[557]},{"name":"HDV_PCI_WRITE_CONFIG_SPACE","features":[557]},{"name":"HDV_PCI_WRITE_INTERCEPTED_MEMORY","features":[557]},{"name":"HVSOCKET_ADDRESS_FLAG_PASSTHRU","features":[557]},{"name":"HVSOCKET_ADDRESS_INFO","features":[557]},{"name":"HVSOCKET_CONNECTED_SUSPEND","features":[557]},{"name":"HVSOCKET_CONNECT_TIMEOUT","features":[557]},{"name":"HVSOCKET_CONNECT_TIMEOUT_MAX","features":[557]},{"name":"HVSOCKET_HIGH_VTL","features":[557]},{"name":"HV_GUID_BROADCAST","features":[557]},{"name":"HV_GUID_CHILDREN","features":[557]},{"name":"HV_GUID_LOOPBACK","features":[557]},{"name":"HV_GUID_PARENT","features":[557]},{"name":"HV_GUID_SILOHOST","features":[557]},{"name":"HV_GUID_VSOCK_TEMPLATE","features":[557]},{"name":"HV_GUID_ZERO","features":[557]},{"name":"HV_PROTOCOL_RAW","features":[557]},{"name":"HdvCreateDeviceInstance","features":[557]},{"name":"HdvCreateGuestMemoryAperture","features":[303,557]},{"name":"HdvCreateSectionBackedMmioRange","features":[303,557]},{"name":"HdvDeliverGuestInterrupt","features":[557]},{"name":"HdvDestroyGuestMemoryAperture","features":[557]},{"name":"HdvDestroySectionBackedMmioRange","features":[557]},{"name":"HdvDeviceHostFlagInitializeComSecurity","features":[557]},{"name":"HdvDeviceHostFlagNone","features":[557]},{"name":"HdvDeviceTypePCI","features":[557]},{"name":"HdvDeviceTypeUndefined","features":[557]},{"name":"HdvInitializeDeviceHost","features":[556,557]},{"name":"HdvInitializeDeviceHostEx","features":[556,557]},{"name":"HdvMmioMappingFlagExecutable","features":[557]},{"name":"HdvMmioMappingFlagNone","features":[557]},{"name":"HdvMmioMappingFlagWriteable","features":[557]},{"name":"HdvPciDeviceInterfaceVersion1","features":[557]},{"name":"HdvPciDeviceInterfaceVersionInvalid","features":[557]},{"name":"HdvReadGuestMemory","features":[557]},{"name":"HdvRegisterDoorbell","features":[303,557]},{"name":"HdvTeardownDeviceHost","features":[557]},{"name":"HdvUnregisterDoorbell","features":[557]},{"name":"HdvWriteGuestMemory","features":[557]},{"name":"IOCTL_VMGENCOUNTER_READ","features":[557]},{"name":"InKernelSpace","features":[303,557]},{"name":"IsActiveVirtualTrustLevelEnabled","features":[303,557]},{"name":"IsNestedVirtualizationEnabled","features":[303,557]},{"name":"LoadSavedStateFile","features":[557]},{"name":"LoadSavedStateFiles","features":[557]},{"name":"LoadSavedStateModuleSymbols","features":[557]},{"name":"LoadSavedStateModuleSymbolsEx","features":[557]},{"name":"LoadSavedStateSymbolProvider","features":[303,557]},{"name":"LocateSavedStateFiles","features":[557]},{"name":"MODULE_INFO","features":[557]},{"name":"PAGING_MODE","features":[557]},{"name":"Paging_32Bit","features":[557]},{"name":"Paging_Armv8","features":[557]},{"name":"Paging_Invalid","features":[557]},{"name":"Paging_Long","features":[557]},{"name":"Paging_NonPaged","features":[557]},{"name":"Paging_Pae","features":[557]},{"name":"ProcessorVendor_Amd","features":[557]},{"name":"ProcessorVendor_Arm","features":[557]},{"name":"ProcessorVendor_Hygon","features":[557]},{"name":"ProcessorVendor_Intel","features":[557]},{"name":"ProcessorVendor_Unknown","features":[557]},{"name":"REGISTER_ID","features":[557]},{"name":"ReadGuestPhysicalAddress","features":[557]},{"name":"ReadGuestRawSavedMemory","features":[557]},{"name":"ReadSavedStateGlobalVariable","features":[557]},{"name":"ReleaseSavedStateFiles","features":[557]},{"name":"ReleaseSavedStateSymbolProvider","features":[557]},{"name":"ResolveSavedStateGlobalVariableAddress","features":[557]},{"name":"SOCKADDR_HV","features":[316,557]},{"name":"ScanMemoryForDosImages","features":[303,557]},{"name":"SetMemoryBlockCacheLimit","features":[557]},{"name":"SetSavedStateSymbolProviderDebugInfoCallback","features":[557]},{"name":"VIRTUAL_PROCESSOR_ARCH","features":[557]},{"name":"VIRTUAL_PROCESSOR_REGISTER","features":[557]},{"name":"VIRTUAL_PROCESSOR_VENDOR","features":[557]},{"name":"VM_GENCOUNTER","features":[557]},{"name":"VM_GENCOUNTER_SYMBOLIC_LINK_NAME","features":[557]},{"name":"WHV_ACCESS_GPA_CONTROLS","features":[557]},{"name":"WHV_ADVISE_GPA_RANGE","features":[557]},{"name":"WHV_ADVISE_GPA_RANGE_CODE","features":[557]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE","features":[557]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE_FLAGS","features":[557]},{"name":"WHV_ALLOCATE_VPCI_RESOURCE_FLAGS","features":[557]},{"name":"WHV_ANY_VP","features":[557]},{"name":"WHV_CACHE_TYPE","features":[557]},{"name":"WHV_CAPABILITY","features":[303,557]},{"name":"WHV_CAPABILITY_CODE","features":[557]},{"name":"WHV_CAPABILITY_FEATURES","features":[557]},{"name":"WHV_CAPABILITY_PROCESSOR_FREQUENCY_CAP","features":[557]},{"name":"WHV_CPUID_OUTPUT","features":[557]},{"name":"WHV_CREATE_VPCI_DEVICE_FLAGS","features":[557]},{"name":"WHV_DOORBELL_MATCH_DATA","features":[557]},{"name":"WHV_EMULATOR_CALLBACKS","features":[557]},{"name":"WHV_EMULATOR_GET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[557]},{"name":"WHV_EMULATOR_IO_ACCESS_INFO","features":[557]},{"name":"WHV_EMULATOR_IO_PORT_CALLBACK","features":[557]},{"name":"WHV_EMULATOR_MEMORY_ACCESS_INFO","features":[557]},{"name":"WHV_EMULATOR_MEMORY_CALLBACK","features":[557]},{"name":"WHV_EMULATOR_SET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[557]},{"name":"WHV_EMULATOR_STATUS","features":[557]},{"name":"WHV_EMULATOR_TRANSLATE_GVA_PAGE_CALLBACK","features":[557]},{"name":"WHV_EXCEPTION_TYPE","features":[557]},{"name":"WHV_EXTENDED_VM_EXITS","features":[557]},{"name":"WHV_HYPERCALL_CONTEXT","features":[557]},{"name":"WHV_HYPERCALL_CONTEXT_MAX_XMM_REGISTERS","features":[557]},{"name":"WHV_INTERNAL_ACTIVITY_REGISTER","features":[557]},{"name":"WHV_INTERRUPT_CONTROL","features":[557]},{"name":"WHV_INTERRUPT_DESTINATION_MODE","features":[557]},{"name":"WHV_INTERRUPT_TRIGGER_MODE","features":[557]},{"name":"WHV_INTERRUPT_TYPE","features":[557]},{"name":"WHV_MAP_GPA_RANGE_FLAGS","features":[557]},{"name":"WHV_MAX_DEVICE_ID_SIZE_IN_CHARS","features":[557]},{"name":"WHV_MEMORY_ACCESS_CONTEXT","features":[557]},{"name":"WHV_MEMORY_ACCESS_INFO","features":[557]},{"name":"WHV_MEMORY_ACCESS_TYPE","features":[557]},{"name":"WHV_MEMORY_RANGE_ENTRY","features":[557]},{"name":"WHV_MSR_ACTION","features":[557]},{"name":"WHV_MSR_ACTION_ENTRY","features":[557]},{"name":"WHV_NOTIFICATION_PORT_PARAMETERS","features":[557]},{"name":"WHV_NOTIFICATION_PORT_PROPERTY_CODE","features":[557]},{"name":"WHV_NOTIFICATION_PORT_TYPE","features":[557]},{"name":"WHV_PARTITION_COUNTER_SET","features":[557]},{"name":"WHV_PARTITION_HANDLE","features":[557]},{"name":"WHV_PARTITION_MEMORY_COUNTERS","features":[557]},{"name":"WHV_PARTITION_PROPERTY","features":[303,557]},{"name":"WHV_PARTITION_PROPERTY_CODE","features":[557]},{"name":"WHV_PROCESSOR_APIC_COUNTERS","features":[557]},{"name":"WHV_PROCESSOR_COUNTER_SET","features":[557]},{"name":"WHV_PROCESSOR_EVENT_COUNTERS","features":[557]},{"name":"WHV_PROCESSOR_FEATURES","features":[557]},{"name":"WHV_PROCESSOR_FEATURES1","features":[557]},{"name":"WHV_PROCESSOR_FEATURES_BANKS","features":[557]},{"name":"WHV_PROCESSOR_FEATURES_BANKS_COUNT","features":[557]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTER","features":[557]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTERS","features":[557]},{"name":"WHV_PROCESSOR_PERFMON_FEATURES","features":[557]},{"name":"WHV_PROCESSOR_RUNTIME_COUNTERS","features":[557]},{"name":"WHV_PROCESSOR_SYNTHETIC_FEATURES_COUNTERS","features":[557]},{"name":"WHV_PROCESSOR_VENDOR","features":[557]},{"name":"WHV_PROCESSOR_XSAVE_FEATURES","features":[557]},{"name":"WHV_READ_WRITE_GPA_RANGE_MAX_SIZE","features":[557]},{"name":"WHV_REGISTER_NAME","features":[557]},{"name":"WHV_REGISTER_VALUE","features":[557]},{"name":"WHV_RUN_VP_CANCELED_CONTEXT","features":[557]},{"name":"WHV_RUN_VP_CANCEL_REASON","features":[557]},{"name":"WHV_RUN_VP_EXIT_CONTEXT","features":[557]},{"name":"WHV_RUN_VP_EXIT_REASON","features":[557]},{"name":"WHV_SCHEDULER_FEATURES","features":[557]},{"name":"WHV_SRIOV_RESOURCE_DESCRIPTOR","features":[303,557]},{"name":"WHV_SYNIC_EVENT_PARAMETERS","features":[557]},{"name":"WHV_SYNIC_MESSAGE_SIZE","features":[557]},{"name":"WHV_SYNIC_SINT_DELIVERABLE_CONTEXT","features":[557]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES","features":[557]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS","features":[557]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS_COUNT","features":[557]},{"name":"WHV_TRANSLATE_GVA_FLAGS","features":[557]},{"name":"WHV_TRANSLATE_GVA_RESULT","features":[557]},{"name":"WHV_TRANSLATE_GVA_RESULT_CODE","features":[557]},{"name":"WHV_TRIGGER_PARAMETERS","features":[557]},{"name":"WHV_TRIGGER_TYPE","features":[557]},{"name":"WHV_UINT128","features":[557]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY","features":[557]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY_CODE","features":[557]},{"name":"WHV_VIRTUAL_PROCESSOR_STATE_TYPE","features":[557]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION","features":[557]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION_TYPE","features":[557]},{"name":"WHV_VPCI_DEVICE_PROPERTY_CODE","features":[557]},{"name":"WHV_VPCI_DEVICE_REGISTER","features":[557]},{"name":"WHV_VPCI_DEVICE_REGISTER_SPACE","features":[557]},{"name":"WHV_VPCI_HARDWARE_IDS","features":[557]},{"name":"WHV_VPCI_INTERRUPT_TARGET","features":[557]},{"name":"WHV_VPCI_INTERRUPT_TARGET_FLAGS","features":[557]},{"name":"WHV_VPCI_MMIO_MAPPING","features":[557]},{"name":"WHV_VPCI_MMIO_RANGE_FLAGS","features":[557]},{"name":"WHV_VPCI_PROBED_BARS","features":[557]},{"name":"WHV_VPCI_TYPE0_BAR_COUNT","features":[557]},{"name":"WHV_VP_EXCEPTION_CONTEXT","features":[557]},{"name":"WHV_VP_EXCEPTION_INFO","features":[557]},{"name":"WHV_VP_EXIT_CONTEXT","features":[557]},{"name":"WHV_X64_APIC_EOI_CONTEXT","features":[557]},{"name":"WHV_X64_APIC_INIT_SIPI_CONTEXT","features":[557]},{"name":"WHV_X64_APIC_SMI_CONTEXT","features":[557]},{"name":"WHV_X64_APIC_WRITE_CONTEXT","features":[557]},{"name":"WHV_X64_APIC_WRITE_TYPE","features":[557]},{"name":"WHV_X64_CPUID_ACCESS_CONTEXT","features":[557]},{"name":"WHV_X64_CPUID_RESULT","features":[557]},{"name":"WHV_X64_CPUID_RESULT2","features":[557]},{"name":"WHV_X64_CPUID_RESULT2_FLAGS","features":[557]},{"name":"WHV_X64_DELIVERABILITY_NOTIFICATIONS_REGISTER","features":[557]},{"name":"WHV_X64_FP_CONTROL_STATUS_REGISTER","features":[557]},{"name":"WHV_X64_FP_REGISTER","features":[557]},{"name":"WHV_X64_INTERRUPTION_DELIVERABLE_CONTEXT","features":[557]},{"name":"WHV_X64_INTERRUPT_STATE_REGISTER","features":[557]},{"name":"WHV_X64_IO_PORT_ACCESS_CONTEXT","features":[557]},{"name":"WHV_X64_IO_PORT_ACCESS_INFO","features":[557]},{"name":"WHV_X64_LOCAL_APIC_EMULATION_MODE","features":[557]},{"name":"WHV_X64_MSR_ACCESS_CONTEXT","features":[557]},{"name":"WHV_X64_MSR_ACCESS_INFO","features":[557]},{"name":"WHV_X64_MSR_EXIT_BITMAP","features":[557]},{"name":"WHV_X64_PENDING_DEBUG_EXCEPTION","features":[557]},{"name":"WHV_X64_PENDING_EVENT_TYPE","features":[557]},{"name":"WHV_X64_PENDING_EXCEPTION_EVENT","features":[557]},{"name":"WHV_X64_PENDING_EXT_INT_EVENT","features":[557]},{"name":"WHV_X64_PENDING_INTERRUPTION_REGISTER","features":[557]},{"name":"WHV_X64_PENDING_INTERRUPTION_TYPE","features":[557]},{"name":"WHV_X64_RDTSC_CONTEXT","features":[557]},{"name":"WHV_X64_RDTSC_INFO","features":[557]},{"name":"WHV_X64_SEGMENT_REGISTER","features":[557]},{"name":"WHV_X64_TABLE_REGISTER","features":[557]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CODE","features":[557]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CONTEXT","features":[557]},{"name":"WHV_X64_VP_EXECUTION_STATE","features":[557]},{"name":"WHV_X64_XMM_CONTROL_STATUS_REGISTER","features":[557]},{"name":"WHvAcceptPartitionMigration","features":[303,557]},{"name":"WHvAdviseGpaRange","features":[557]},{"name":"WHvAdviseGpaRangeCodePin","features":[557]},{"name":"WHvAdviseGpaRangeCodePopulate","features":[557]},{"name":"WHvAdviseGpaRangeCodeUnpin","features":[557]},{"name":"WHvAllocateVpciResource","features":[303,557]},{"name":"WHvAllocateVpciResourceFlagAllowDirectP2P","features":[557]},{"name":"WHvAllocateVpciResourceFlagNone","features":[557]},{"name":"WHvCacheTypeUncached","features":[557]},{"name":"WHvCacheTypeWriteBack","features":[557]},{"name":"WHvCacheTypeWriteCombining","features":[557]},{"name":"WHvCacheTypeWriteThrough","features":[557]},{"name":"WHvCancelPartitionMigration","features":[557]},{"name":"WHvCancelRunVirtualProcessor","features":[557]},{"name":"WHvCapabilityCodeExceptionExitBitmap","features":[557]},{"name":"WHvCapabilityCodeExtendedVmExits","features":[557]},{"name":"WHvCapabilityCodeFeatures","features":[557]},{"name":"WHvCapabilityCodeGpaRangePopulateFlags","features":[557]},{"name":"WHvCapabilityCodeHypervisorPresent","features":[557]},{"name":"WHvCapabilityCodeInterruptClockFrequency","features":[557]},{"name":"WHvCapabilityCodeProcessorClFlushSize","features":[557]},{"name":"WHvCapabilityCodeProcessorClockFrequency","features":[557]},{"name":"WHvCapabilityCodeProcessorFeatures","features":[557]},{"name":"WHvCapabilityCodeProcessorFeaturesBanks","features":[557]},{"name":"WHvCapabilityCodeProcessorFrequencyCap","features":[557]},{"name":"WHvCapabilityCodeProcessorPerfmonFeatures","features":[557]},{"name":"WHvCapabilityCodeProcessorVendor","features":[557]},{"name":"WHvCapabilityCodeProcessorXsaveFeatures","features":[557]},{"name":"WHvCapabilityCodeSchedulerFeatures","features":[557]},{"name":"WHvCapabilityCodeSyntheticProcessorFeaturesBanks","features":[557]},{"name":"WHvCapabilityCodeX64MsrExitBitmap","features":[557]},{"name":"WHvCompletePartitionMigration","features":[557]},{"name":"WHvCreateNotificationPort","features":[303,557]},{"name":"WHvCreatePartition","features":[557]},{"name":"WHvCreateTrigger","features":[303,557]},{"name":"WHvCreateVirtualProcessor","features":[557]},{"name":"WHvCreateVirtualProcessor2","features":[557]},{"name":"WHvCreateVpciDevice","features":[303,557]},{"name":"WHvCreateVpciDeviceFlagNone","features":[557]},{"name":"WHvCreateVpciDeviceFlagPhysicallyBacked","features":[557]},{"name":"WHvCreateVpciDeviceFlagUseLogicalInterrupts","features":[557]},{"name":"WHvDeleteNotificationPort","features":[557]},{"name":"WHvDeletePartition","features":[557]},{"name":"WHvDeleteTrigger","features":[557]},{"name":"WHvDeleteVirtualProcessor","features":[557]},{"name":"WHvDeleteVpciDevice","features":[557]},{"name":"WHvEmulatorCreateEmulator","features":[557]},{"name":"WHvEmulatorDestroyEmulator","features":[557]},{"name":"WHvEmulatorTryIoEmulation","features":[557]},{"name":"WHvEmulatorTryMmioEmulation","features":[557]},{"name":"WHvGetCapability","features":[557]},{"name":"WHvGetInterruptTargetVpSet","features":[557]},{"name":"WHvGetPartitionCounters","features":[557]},{"name":"WHvGetPartitionProperty","features":[557]},{"name":"WHvGetVirtualProcessorCounters","features":[557]},{"name":"WHvGetVirtualProcessorCpuidOutput","features":[557]},{"name":"WHvGetVirtualProcessorInterruptControllerState","features":[557]},{"name":"WHvGetVirtualProcessorInterruptControllerState2","features":[557]},{"name":"WHvGetVirtualProcessorRegisters","features":[557]},{"name":"WHvGetVirtualProcessorState","features":[557]},{"name":"WHvGetVirtualProcessorXsaveState","features":[557]},{"name":"WHvGetVpciDeviceInterruptTarget","features":[557]},{"name":"WHvGetVpciDeviceNotification","features":[557]},{"name":"WHvGetVpciDeviceProperty","features":[557]},{"name":"WHvMapGpaRange","features":[557]},{"name":"WHvMapGpaRange2","features":[303,557]},{"name":"WHvMapGpaRangeFlagExecute","features":[557]},{"name":"WHvMapGpaRangeFlagNone","features":[557]},{"name":"WHvMapGpaRangeFlagRead","features":[557]},{"name":"WHvMapGpaRangeFlagTrackDirtyPages","features":[557]},{"name":"WHvMapGpaRangeFlagWrite","features":[557]},{"name":"WHvMapVpciDeviceInterrupt","features":[557]},{"name":"WHvMapVpciDeviceMmioRanges","features":[557]},{"name":"WHvMemoryAccessExecute","features":[557]},{"name":"WHvMemoryAccessRead","features":[557]},{"name":"WHvMemoryAccessWrite","features":[557]},{"name":"WHvMsrActionArchitectureDefault","features":[557]},{"name":"WHvMsrActionExit","features":[557]},{"name":"WHvMsrActionIgnoreWriteReadZero","features":[557]},{"name":"WHvNotificationPortPropertyPreferredTargetDuration","features":[557]},{"name":"WHvNotificationPortPropertyPreferredTargetVp","features":[557]},{"name":"WHvNotificationPortTypeDoorbell","features":[557]},{"name":"WHvNotificationPortTypeEvent","features":[557]},{"name":"WHvPartitionCounterSetMemory","features":[557]},{"name":"WHvPartitionPropertyCodeAllowDeviceAssignment","features":[557]},{"name":"WHvPartitionPropertyCodeApicRemoteReadSupport","features":[557]},{"name":"WHvPartitionPropertyCodeCpuCap","features":[557]},{"name":"WHvPartitionPropertyCodeCpuGroupId","features":[557]},{"name":"WHvPartitionPropertyCodeCpuReserve","features":[557]},{"name":"WHvPartitionPropertyCodeCpuWeight","features":[557]},{"name":"WHvPartitionPropertyCodeCpuidExitList","features":[557]},{"name":"WHvPartitionPropertyCodeCpuidResultList","features":[557]},{"name":"WHvPartitionPropertyCodeCpuidResultList2","features":[557]},{"name":"WHvPartitionPropertyCodeDisableSmt","features":[557]},{"name":"WHvPartitionPropertyCodeExceptionExitBitmap","features":[557]},{"name":"WHvPartitionPropertyCodeExtendedVmExits","features":[557]},{"name":"WHvPartitionPropertyCodeInterruptClockFrequency","features":[557]},{"name":"WHvPartitionPropertyCodeLocalApicEmulationMode","features":[557]},{"name":"WHvPartitionPropertyCodeMsrActionList","features":[557]},{"name":"WHvPartitionPropertyCodeNestedVirtualization","features":[557]},{"name":"WHvPartitionPropertyCodePrimaryNumaNode","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorClFlushSize","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorClockFrequency","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorCount","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorFeatures","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorFeaturesBanks","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorFrequencyCap","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorPerfmonFeatures","features":[557]},{"name":"WHvPartitionPropertyCodeProcessorXsaveFeatures","features":[557]},{"name":"WHvPartitionPropertyCodeReferenceTime","features":[557]},{"name":"WHvPartitionPropertyCodeSeparateSecurityDomain","features":[557]},{"name":"WHvPartitionPropertyCodeSyntheticProcessorFeaturesBanks","features":[557]},{"name":"WHvPartitionPropertyCodeUnimplementedMsrAction","features":[557]},{"name":"WHvPartitionPropertyCodeX64MsrExitBitmap","features":[557]},{"name":"WHvPostVirtualProcessorSynicMessage","features":[557]},{"name":"WHvProcessorCounterSetApic","features":[557]},{"name":"WHvProcessorCounterSetEvents","features":[557]},{"name":"WHvProcessorCounterSetIntercepts","features":[557]},{"name":"WHvProcessorCounterSetRuntime","features":[557]},{"name":"WHvProcessorCounterSetSyntheticFeatures","features":[557]},{"name":"WHvProcessorVendorAmd","features":[557]},{"name":"WHvProcessorVendorHygon","features":[557]},{"name":"WHvProcessorVendorIntel","features":[557]},{"name":"WHvQueryGpaRangeDirtyBitmap","features":[557]},{"name":"WHvReadGpaRange","features":[557]},{"name":"WHvReadVpciDeviceRegister","features":[557]},{"name":"WHvRegisterEom","features":[557]},{"name":"WHvRegisterGuestOsId","features":[557]},{"name":"WHvRegisterInternalActivityState","features":[557]},{"name":"WHvRegisterInterruptState","features":[557]},{"name":"WHvRegisterPartitionDoorbellEvent","features":[303,557]},{"name":"WHvRegisterPendingEvent","features":[557]},{"name":"WHvRegisterPendingInterruption","features":[557]},{"name":"WHvRegisterReferenceTsc","features":[557]},{"name":"WHvRegisterReferenceTscSequence","features":[557]},{"name":"WHvRegisterScontrol","features":[557]},{"name":"WHvRegisterSiefp","features":[557]},{"name":"WHvRegisterSimp","features":[557]},{"name":"WHvRegisterSint0","features":[557]},{"name":"WHvRegisterSint1","features":[557]},{"name":"WHvRegisterSint10","features":[557]},{"name":"WHvRegisterSint11","features":[557]},{"name":"WHvRegisterSint12","features":[557]},{"name":"WHvRegisterSint13","features":[557]},{"name":"WHvRegisterSint14","features":[557]},{"name":"WHvRegisterSint15","features":[557]},{"name":"WHvRegisterSint2","features":[557]},{"name":"WHvRegisterSint3","features":[557]},{"name":"WHvRegisterSint4","features":[557]},{"name":"WHvRegisterSint5","features":[557]},{"name":"WHvRegisterSint6","features":[557]},{"name":"WHvRegisterSint7","features":[557]},{"name":"WHvRegisterSint8","features":[557]},{"name":"WHvRegisterSint9","features":[557]},{"name":"WHvRegisterSversion","features":[557]},{"name":"WHvRegisterVpAssistPage","features":[557]},{"name":"WHvRegisterVpRuntime","features":[557]},{"name":"WHvRequestInterrupt","features":[557]},{"name":"WHvRequestVpciDeviceInterrupt","features":[557]},{"name":"WHvResetPartition","features":[557]},{"name":"WHvResumePartitionTime","features":[557]},{"name":"WHvRetargetVpciDeviceInterrupt","features":[557]},{"name":"WHvRunVirtualProcessor","features":[557]},{"name":"WHvRunVpCancelReasonUser","features":[557]},{"name":"WHvRunVpExitReasonCanceled","features":[557]},{"name":"WHvRunVpExitReasonException","features":[557]},{"name":"WHvRunVpExitReasonHypercall","features":[557]},{"name":"WHvRunVpExitReasonInvalidVpRegisterValue","features":[557]},{"name":"WHvRunVpExitReasonMemoryAccess","features":[557]},{"name":"WHvRunVpExitReasonNone","features":[557]},{"name":"WHvRunVpExitReasonSynicSintDeliverable","features":[557]},{"name":"WHvRunVpExitReasonUnrecoverableException","features":[557]},{"name":"WHvRunVpExitReasonUnsupportedFeature","features":[557]},{"name":"WHvRunVpExitReasonX64ApicEoi","features":[557]},{"name":"WHvRunVpExitReasonX64ApicInitSipiTrap","features":[557]},{"name":"WHvRunVpExitReasonX64ApicSmiTrap","features":[557]},{"name":"WHvRunVpExitReasonX64ApicWriteTrap","features":[557]},{"name":"WHvRunVpExitReasonX64Cpuid","features":[557]},{"name":"WHvRunVpExitReasonX64Halt","features":[557]},{"name":"WHvRunVpExitReasonX64InterruptWindow","features":[557]},{"name":"WHvRunVpExitReasonX64IoPortAccess","features":[557]},{"name":"WHvRunVpExitReasonX64MsrAccess","features":[557]},{"name":"WHvRunVpExitReasonX64Rdtsc","features":[557]},{"name":"WHvSetNotificationPortProperty","features":[557]},{"name":"WHvSetPartitionProperty","features":[557]},{"name":"WHvSetVirtualProcessorInterruptControllerState","features":[557]},{"name":"WHvSetVirtualProcessorInterruptControllerState2","features":[557]},{"name":"WHvSetVirtualProcessorRegisters","features":[557]},{"name":"WHvSetVirtualProcessorState","features":[557]},{"name":"WHvSetVirtualProcessorXsaveState","features":[557]},{"name":"WHvSetVpciDevicePowerState","features":[557,310]},{"name":"WHvSetupPartition","features":[557]},{"name":"WHvSignalVirtualProcessorSynicEvent","features":[303,557]},{"name":"WHvStartPartitionMigration","features":[303,557]},{"name":"WHvSuspendPartitionTime","features":[557]},{"name":"WHvTranslateGva","features":[557]},{"name":"WHvTranslateGvaFlagEnforceSmap","features":[557]},{"name":"WHvTranslateGvaFlagNone","features":[557]},{"name":"WHvTranslateGvaFlagOverrideSmap","features":[557]},{"name":"WHvTranslateGvaFlagPrivilegeExempt","features":[557]},{"name":"WHvTranslateGvaFlagSetPageTableBits","features":[557]},{"name":"WHvTranslateGvaFlagValidateExecute","features":[557]},{"name":"WHvTranslateGvaFlagValidateRead","features":[557]},{"name":"WHvTranslateGvaFlagValidateWrite","features":[557]},{"name":"WHvTranslateGvaResultGpaIllegalOverlayAccess","features":[557]},{"name":"WHvTranslateGvaResultGpaNoReadAccess","features":[557]},{"name":"WHvTranslateGvaResultGpaNoWriteAccess","features":[557]},{"name":"WHvTranslateGvaResultGpaUnmapped","features":[557]},{"name":"WHvTranslateGvaResultIntercept","features":[557]},{"name":"WHvTranslateGvaResultInvalidPageTableFlags","features":[557]},{"name":"WHvTranslateGvaResultPageNotPresent","features":[557]},{"name":"WHvTranslateGvaResultPrivilegeViolation","features":[557]},{"name":"WHvTranslateGvaResultSuccess","features":[557]},{"name":"WHvTriggerTypeDeviceInterrupt","features":[557]},{"name":"WHvTriggerTypeInterrupt","features":[557]},{"name":"WHvTriggerTypeSynicEvent","features":[557]},{"name":"WHvUnmapGpaRange","features":[557]},{"name":"WHvUnmapVpciDeviceInterrupt","features":[557]},{"name":"WHvUnmapVpciDeviceMmioRanges","features":[557]},{"name":"WHvUnregisterPartitionDoorbellEvent","features":[557]},{"name":"WHvUnsupportedFeatureIntercept","features":[557]},{"name":"WHvUnsupportedFeatureTaskSwitchTss","features":[557]},{"name":"WHvUpdateTriggerParameters","features":[557]},{"name":"WHvVirtualProcessorPropertyCodeNumaNode","features":[557]},{"name":"WHvVirtualProcessorStateTypeInterruptControllerState2","features":[557]},{"name":"WHvVirtualProcessorStateTypeSynicEventFlagPage","features":[557]},{"name":"WHvVirtualProcessorStateTypeSynicMessagePage","features":[557]},{"name":"WHvVirtualProcessorStateTypeSynicTimerState","features":[557]},{"name":"WHvVirtualProcessorStateTypeXsaveState","features":[557]},{"name":"WHvVpciBar0","features":[557]},{"name":"WHvVpciBar1","features":[557]},{"name":"WHvVpciBar2","features":[557]},{"name":"WHvVpciBar3","features":[557]},{"name":"WHvVpciBar4","features":[557]},{"name":"WHvVpciBar5","features":[557]},{"name":"WHvVpciConfigSpace","features":[557]},{"name":"WHvVpciDeviceNotificationMmioRemapping","features":[557]},{"name":"WHvVpciDeviceNotificationSurpriseRemoval","features":[557]},{"name":"WHvVpciDeviceNotificationUndefined","features":[557]},{"name":"WHvVpciDevicePropertyCodeHardwareIDs","features":[557]},{"name":"WHvVpciDevicePropertyCodeProbedBARs","features":[557]},{"name":"WHvVpciDevicePropertyCodeUndefined","features":[557]},{"name":"WHvVpciInterruptTargetFlagMulticast","features":[557]},{"name":"WHvVpciInterruptTargetFlagNone","features":[557]},{"name":"WHvVpciMmioRangeFlagReadAccess","features":[557]},{"name":"WHvVpciMmioRangeFlagWriteAccess","features":[557]},{"name":"WHvWriteGpaRange","features":[557]},{"name":"WHvWriteVpciDeviceRegister","features":[557]},{"name":"WHvX64ApicWriteTypeDfr","features":[557]},{"name":"WHvX64ApicWriteTypeLdr","features":[557]},{"name":"WHvX64ApicWriteTypeLint0","features":[557]},{"name":"WHvX64ApicWriteTypeLint1","features":[557]},{"name":"WHvX64ApicWriteTypeSvr","features":[557]},{"name":"WHvX64CpuidResult2FlagSubleafSpecific","features":[557]},{"name":"WHvX64CpuidResult2FlagVpSpecific","features":[557]},{"name":"WHvX64ExceptionTypeAlignmentCheckFault","features":[557]},{"name":"WHvX64ExceptionTypeBoundRangeFault","features":[557]},{"name":"WHvX64ExceptionTypeBreakpointTrap","features":[557]},{"name":"WHvX64ExceptionTypeDebugTrapOrFault","features":[557]},{"name":"WHvX64ExceptionTypeDeviceNotAvailableFault","features":[557]},{"name":"WHvX64ExceptionTypeDivideErrorFault","features":[557]},{"name":"WHvX64ExceptionTypeDoubleFaultAbort","features":[557]},{"name":"WHvX64ExceptionTypeFloatingPointErrorFault","features":[557]},{"name":"WHvX64ExceptionTypeGeneralProtectionFault","features":[557]},{"name":"WHvX64ExceptionTypeInvalidOpcodeFault","features":[557]},{"name":"WHvX64ExceptionTypeInvalidTaskStateSegmentFault","features":[557]},{"name":"WHvX64ExceptionTypeMachineCheckAbort","features":[557]},{"name":"WHvX64ExceptionTypeOverflowTrap","features":[557]},{"name":"WHvX64ExceptionTypePageFault","features":[557]},{"name":"WHvX64ExceptionTypeSegmentNotPresentFault","features":[557]},{"name":"WHvX64ExceptionTypeSimdFloatingPointFault","features":[557]},{"name":"WHvX64ExceptionTypeStackFault","features":[557]},{"name":"WHvX64InterruptDestinationModeLogical","features":[557]},{"name":"WHvX64InterruptDestinationModePhysical","features":[557]},{"name":"WHvX64InterruptTriggerModeEdge","features":[557]},{"name":"WHvX64InterruptTriggerModeLevel","features":[557]},{"name":"WHvX64InterruptTypeFixed","features":[557]},{"name":"WHvX64InterruptTypeInit","features":[557]},{"name":"WHvX64InterruptTypeLocalInt1","features":[557]},{"name":"WHvX64InterruptTypeLowestPriority","features":[557]},{"name":"WHvX64InterruptTypeNmi","features":[557]},{"name":"WHvX64InterruptTypeSipi","features":[557]},{"name":"WHvX64LocalApicEmulationModeNone","features":[557]},{"name":"WHvX64LocalApicEmulationModeX2Apic","features":[557]},{"name":"WHvX64LocalApicEmulationModeXApic","features":[557]},{"name":"WHvX64PendingEventException","features":[557]},{"name":"WHvX64PendingEventExtInt","features":[557]},{"name":"WHvX64PendingException","features":[557]},{"name":"WHvX64PendingInterrupt","features":[557]},{"name":"WHvX64PendingNmi","features":[557]},{"name":"WHvX64RegisterACount","features":[557]},{"name":"WHvX64RegisterApicBase","features":[557]},{"name":"WHvX64RegisterApicCurrentCount","features":[557]},{"name":"WHvX64RegisterApicDivide","features":[557]},{"name":"WHvX64RegisterApicEoi","features":[557]},{"name":"WHvX64RegisterApicEse","features":[557]},{"name":"WHvX64RegisterApicIcr","features":[557]},{"name":"WHvX64RegisterApicId","features":[557]},{"name":"WHvX64RegisterApicInitCount","features":[557]},{"name":"WHvX64RegisterApicIrr0","features":[557]},{"name":"WHvX64RegisterApicIrr1","features":[557]},{"name":"WHvX64RegisterApicIrr2","features":[557]},{"name":"WHvX64RegisterApicIrr3","features":[557]},{"name":"WHvX64RegisterApicIrr4","features":[557]},{"name":"WHvX64RegisterApicIrr5","features":[557]},{"name":"WHvX64RegisterApicIrr6","features":[557]},{"name":"WHvX64RegisterApicIrr7","features":[557]},{"name":"WHvX64RegisterApicIsr0","features":[557]},{"name":"WHvX64RegisterApicIsr1","features":[557]},{"name":"WHvX64RegisterApicIsr2","features":[557]},{"name":"WHvX64RegisterApicIsr3","features":[557]},{"name":"WHvX64RegisterApicIsr4","features":[557]},{"name":"WHvX64RegisterApicIsr5","features":[557]},{"name":"WHvX64RegisterApicIsr6","features":[557]},{"name":"WHvX64RegisterApicIsr7","features":[557]},{"name":"WHvX64RegisterApicLdr","features":[557]},{"name":"WHvX64RegisterApicLvtError","features":[557]},{"name":"WHvX64RegisterApicLvtLint0","features":[557]},{"name":"WHvX64RegisterApicLvtLint1","features":[557]},{"name":"WHvX64RegisterApicLvtPerfmon","features":[557]},{"name":"WHvX64RegisterApicLvtThermal","features":[557]},{"name":"WHvX64RegisterApicLvtTimer","features":[557]},{"name":"WHvX64RegisterApicPpr","features":[557]},{"name":"WHvX64RegisterApicSelfIpi","features":[557]},{"name":"WHvX64RegisterApicSpurious","features":[557]},{"name":"WHvX64RegisterApicTmr0","features":[557]},{"name":"WHvX64RegisterApicTmr1","features":[557]},{"name":"WHvX64RegisterApicTmr2","features":[557]},{"name":"WHvX64RegisterApicTmr3","features":[557]},{"name":"WHvX64RegisterApicTmr4","features":[557]},{"name":"WHvX64RegisterApicTmr5","features":[557]},{"name":"WHvX64RegisterApicTmr6","features":[557]},{"name":"WHvX64RegisterApicTmr7","features":[557]},{"name":"WHvX64RegisterApicTpr","features":[557]},{"name":"WHvX64RegisterApicVersion","features":[557]},{"name":"WHvX64RegisterBndcfgs","features":[557]},{"name":"WHvX64RegisterCr0","features":[557]},{"name":"WHvX64RegisterCr2","features":[557]},{"name":"WHvX64RegisterCr3","features":[557]},{"name":"WHvX64RegisterCr4","features":[557]},{"name":"WHvX64RegisterCr8","features":[557]},{"name":"WHvX64RegisterCs","features":[557]},{"name":"WHvX64RegisterCstar","features":[557]},{"name":"WHvX64RegisterDeliverabilityNotifications","features":[557]},{"name":"WHvX64RegisterDr0","features":[557]},{"name":"WHvX64RegisterDr1","features":[557]},{"name":"WHvX64RegisterDr2","features":[557]},{"name":"WHvX64RegisterDr3","features":[557]},{"name":"WHvX64RegisterDr6","features":[557]},{"name":"WHvX64RegisterDr7","features":[557]},{"name":"WHvX64RegisterDs","features":[557]},{"name":"WHvX64RegisterEfer","features":[557]},{"name":"WHvX64RegisterEs","features":[557]},{"name":"WHvX64RegisterFpControlStatus","features":[557]},{"name":"WHvX64RegisterFpMmx0","features":[557]},{"name":"WHvX64RegisterFpMmx1","features":[557]},{"name":"WHvX64RegisterFpMmx2","features":[557]},{"name":"WHvX64RegisterFpMmx3","features":[557]},{"name":"WHvX64RegisterFpMmx4","features":[557]},{"name":"WHvX64RegisterFpMmx5","features":[557]},{"name":"WHvX64RegisterFpMmx6","features":[557]},{"name":"WHvX64RegisterFpMmx7","features":[557]},{"name":"WHvX64RegisterFs","features":[557]},{"name":"WHvX64RegisterGdtr","features":[557]},{"name":"WHvX64RegisterGs","features":[557]},{"name":"WHvX64RegisterHypercall","features":[557]},{"name":"WHvX64RegisterIdtr","features":[557]},{"name":"WHvX64RegisterInitialApicId","features":[557]},{"name":"WHvX64RegisterInterruptSspTableAddr","features":[557]},{"name":"WHvX64RegisterKernelGsBase","features":[557]},{"name":"WHvX64RegisterLdtr","features":[557]},{"name":"WHvX64RegisterLstar","features":[557]},{"name":"WHvX64RegisterMCount","features":[557]},{"name":"WHvX64RegisterMsrMtrrCap","features":[557]},{"name":"WHvX64RegisterMsrMtrrDefType","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix16k80000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix16kA0000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kC0000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kC8000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kD0000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kD8000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kE0000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kE8000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kF0000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix4kF8000","features":[557]},{"name":"WHvX64RegisterMsrMtrrFix64k00000","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase0","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase1","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase2","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase3","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase4","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase5","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase6","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase7","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase8","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBase9","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBaseA","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBaseB","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBaseC","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBaseD","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBaseE","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysBaseF","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask0","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask1","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask2","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask3","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask4","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask5","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask6","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask7","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask8","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMask9","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMaskA","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMaskB","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMaskC","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMaskD","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMaskE","features":[557]},{"name":"WHvX64RegisterMsrMtrrPhysMaskF","features":[557]},{"name":"WHvX64RegisterPat","features":[557]},{"name":"WHvX64RegisterPendingDebugException","features":[557]},{"name":"WHvX64RegisterPl0Ssp","features":[557]},{"name":"WHvX64RegisterPl1Ssp","features":[557]},{"name":"WHvX64RegisterPl2Ssp","features":[557]},{"name":"WHvX64RegisterPl3Ssp","features":[557]},{"name":"WHvX64RegisterPredCmd","features":[557]},{"name":"WHvX64RegisterR10","features":[557]},{"name":"WHvX64RegisterR11","features":[557]},{"name":"WHvX64RegisterR12","features":[557]},{"name":"WHvX64RegisterR13","features":[557]},{"name":"WHvX64RegisterR14","features":[557]},{"name":"WHvX64RegisterR15","features":[557]},{"name":"WHvX64RegisterR8","features":[557]},{"name":"WHvX64RegisterR9","features":[557]},{"name":"WHvX64RegisterRax","features":[557]},{"name":"WHvX64RegisterRbp","features":[557]},{"name":"WHvX64RegisterRbx","features":[557]},{"name":"WHvX64RegisterRcx","features":[557]},{"name":"WHvX64RegisterRdi","features":[557]},{"name":"WHvX64RegisterRdx","features":[557]},{"name":"WHvX64RegisterRflags","features":[557]},{"name":"WHvX64RegisterRip","features":[557]},{"name":"WHvX64RegisterRsi","features":[557]},{"name":"WHvX64RegisterRsp","features":[557]},{"name":"WHvX64RegisterSCet","features":[557]},{"name":"WHvX64RegisterSfmask","features":[557]},{"name":"WHvX64RegisterSpecCtrl","features":[557]},{"name":"WHvX64RegisterSs","features":[557]},{"name":"WHvX64RegisterSsp","features":[557]},{"name":"WHvX64RegisterStar","features":[557]},{"name":"WHvX64RegisterSysenterCs","features":[557]},{"name":"WHvX64RegisterSysenterEip","features":[557]},{"name":"WHvX64RegisterSysenterEsp","features":[557]},{"name":"WHvX64RegisterTr","features":[557]},{"name":"WHvX64RegisterTsc","features":[557]},{"name":"WHvX64RegisterTscAdjust","features":[557]},{"name":"WHvX64RegisterTscAux","features":[557]},{"name":"WHvX64RegisterTscDeadline","features":[557]},{"name":"WHvX64RegisterTscVirtualOffset","features":[557]},{"name":"WHvX64RegisterTsxCtrl","features":[557]},{"name":"WHvX64RegisterUCet","features":[557]},{"name":"WHvX64RegisterUmwaitControl","features":[557]},{"name":"WHvX64RegisterVirtualCr0","features":[557]},{"name":"WHvX64RegisterVirtualCr3","features":[557]},{"name":"WHvX64RegisterVirtualCr4","features":[557]},{"name":"WHvX64RegisterVirtualCr8","features":[557]},{"name":"WHvX64RegisterXCr0","features":[557]},{"name":"WHvX64RegisterXfd","features":[557]},{"name":"WHvX64RegisterXfdErr","features":[557]},{"name":"WHvX64RegisterXmm0","features":[557]},{"name":"WHvX64RegisterXmm1","features":[557]},{"name":"WHvX64RegisterXmm10","features":[557]},{"name":"WHvX64RegisterXmm11","features":[557]},{"name":"WHvX64RegisterXmm12","features":[557]},{"name":"WHvX64RegisterXmm13","features":[557]},{"name":"WHvX64RegisterXmm14","features":[557]},{"name":"WHvX64RegisterXmm15","features":[557]},{"name":"WHvX64RegisterXmm2","features":[557]},{"name":"WHvX64RegisterXmm3","features":[557]},{"name":"WHvX64RegisterXmm4","features":[557]},{"name":"WHvX64RegisterXmm5","features":[557]},{"name":"WHvX64RegisterXmm6","features":[557]},{"name":"WHvX64RegisterXmm7","features":[557]},{"name":"WHvX64RegisterXmm8","features":[557]},{"name":"WHvX64RegisterXmm9","features":[557]},{"name":"WHvX64RegisterXmmControlStatus","features":[557]},{"name":"WHvX64RegisterXss","features":[557]},{"name":"X64_RegisterCr0","features":[557]},{"name":"X64_RegisterCr2","features":[557]},{"name":"X64_RegisterCr3","features":[557]},{"name":"X64_RegisterCr4","features":[557]},{"name":"X64_RegisterCr8","features":[557]},{"name":"X64_RegisterCs","features":[557]},{"name":"X64_RegisterDr0","features":[557]},{"name":"X64_RegisterDr1","features":[557]},{"name":"X64_RegisterDr2","features":[557]},{"name":"X64_RegisterDr3","features":[557]},{"name":"X64_RegisterDr6","features":[557]},{"name":"X64_RegisterDr7","features":[557]},{"name":"X64_RegisterDs","features":[557]},{"name":"X64_RegisterEfer","features":[557]},{"name":"X64_RegisterEs","features":[557]},{"name":"X64_RegisterFpControlStatus","features":[557]},{"name":"X64_RegisterFpMmx0","features":[557]},{"name":"X64_RegisterFpMmx1","features":[557]},{"name":"X64_RegisterFpMmx2","features":[557]},{"name":"X64_RegisterFpMmx3","features":[557]},{"name":"X64_RegisterFpMmx4","features":[557]},{"name":"X64_RegisterFpMmx5","features":[557]},{"name":"X64_RegisterFpMmx6","features":[557]},{"name":"X64_RegisterFpMmx7","features":[557]},{"name":"X64_RegisterFs","features":[557]},{"name":"X64_RegisterGdtr","features":[557]},{"name":"X64_RegisterGs","features":[557]},{"name":"X64_RegisterIdtr","features":[557]},{"name":"X64_RegisterLdtr","features":[557]},{"name":"X64_RegisterMax","features":[557]},{"name":"X64_RegisterR10","features":[557]},{"name":"X64_RegisterR11","features":[557]},{"name":"X64_RegisterR12","features":[557]},{"name":"X64_RegisterR13","features":[557]},{"name":"X64_RegisterR14","features":[557]},{"name":"X64_RegisterR15","features":[557]},{"name":"X64_RegisterR8","features":[557]},{"name":"X64_RegisterR9","features":[557]},{"name":"X64_RegisterRFlags","features":[557]},{"name":"X64_RegisterRax","features":[557]},{"name":"X64_RegisterRbp","features":[557]},{"name":"X64_RegisterRbx","features":[557]},{"name":"X64_RegisterRcx","features":[557]},{"name":"X64_RegisterRdi","features":[557]},{"name":"X64_RegisterRdx","features":[557]},{"name":"X64_RegisterRip","features":[557]},{"name":"X64_RegisterRsi","features":[557]},{"name":"X64_RegisterRsp","features":[557]},{"name":"X64_RegisterSs","features":[557]},{"name":"X64_RegisterTr","features":[557]},{"name":"X64_RegisterXmm0","features":[557]},{"name":"X64_RegisterXmm1","features":[557]},{"name":"X64_RegisterXmm10","features":[557]},{"name":"X64_RegisterXmm11","features":[557]},{"name":"X64_RegisterXmm12","features":[557]},{"name":"X64_RegisterXmm13","features":[557]},{"name":"X64_RegisterXmm14","features":[557]},{"name":"X64_RegisterXmm15","features":[557]},{"name":"X64_RegisterXmm2","features":[557]},{"name":"X64_RegisterXmm3","features":[557]},{"name":"X64_RegisterXmm4","features":[557]},{"name":"X64_RegisterXmm5","features":[557]},{"name":"X64_RegisterXmm6","features":[557]},{"name":"X64_RegisterXmm7","features":[557]},{"name":"X64_RegisterXmm8","features":[557]},{"name":"X64_RegisterXmm9","features":[557]},{"name":"X64_RegisterXmmControlStatus","features":[557]}],"571":[{"name":"BindIoCompletionCallback","features":[303,308]},{"name":"CancelIo","features":[303,308]},{"name":"CancelIoEx","features":[303,308]},{"name":"CancelSynchronousIo","features":[303,308]},{"name":"CreateIoCompletionPort","features":[303,308]},{"name":"DeviceIoControl","features":[303,308]},{"name":"GetOverlappedResult","features":[303,308]},{"name":"GetOverlappedResultEx","features":[303,308]},{"name":"GetQueuedCompletionStatus","features":[303,308]},{"name":"GetQueuedCompletionStatusEx","features":[303,308]},{"name":"IO_STATUS_BLOCK","features":[303,308]},{"name":"LPOVERLAPPED_COMPLETION_ROUTINE","features":[303,308]},{"name":"OVERLAPPED","features":[303,308]},{"name":"OVERLAPPED_ENTRY","features":[303,308]},{"name":"PIO_APC_ROUTINE","features":[303,308]},{"name":"PostQueuedCompletionStatus","features":[303,308]}],"572":[{"name":"ADMINDATA_MAX_NAME_LEN","features":[558]},{"name":"ALL_METADATA","features":[558]},{"name":"APPCTR_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"APPCTR_MD_ID_END_RESERVED","features":[558]},{"name":"APPSTATUS_NOTDEFINED","features":[558]},{"name":"APPSTATUS_RUNNING","features":[558]},{"name":"APPSTATUS_STOPPED","features":[558]},{"name":"ASP_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"ASP_MD_ID_END_RESERVED","features":[558]},{"name":"ASP_MD_SERVER_BASE","features":[558]},{"name":"ASP_MD_UT_APP","features":[558]},{"name":"AsyncIFtpAuthenticationProvider","features":[558]},{"name":"AsyncIFtpAuthorizationProvider","features":[558]},{"name":"AsyncIFtpHomeDirectoryProvider","features":[558]},{"name":"AsyncIFtpLogProvider","features":[558]},{"name":"AsyncIFtpPostprocessProvider","features":[558]},{"name":"AsyncIFtpPreprocessProvider","features":[558]},{"name":"AsyncIFtpRoleProvider","features":[558]},{"name":"AsyncIMSAdminBaseSinkW","features":[558]},{"name":"BINARY_METADATA","features":[558]},{"name":"CERT_CONTEXT_EX","features":[303,387,558]},{"name":"CLSID_IImgCtx","features":[558]},{"name":"CLSID_IisServiceControl","features":[558]},{"name":"CLSID_MSAdminBase_W","features":[558]},{"name":"CLSID_Request","features":[558]},{"name":"CLSID_Response","features":[558]},{"name":"CLSID_ScriptingContext","features":[558]},{"name":"CLSID_Server","features":[558]},{"name":"CLSID_Session","features":[558]},{"name":"CLSID_WamAdmin","features":[558]},{"name":"CONFIGURATION_ENTRY","features":[558]},{"name":"DISPID_HTTPREQUEST_ABORT","features":[558]},{"name":"DISPID_HTTPREQUEST_BASE","features":[558]},{"name":"DISPID_HTTPREQUEST_GETALLRESPONSEHEADERS","features":[558]},{"name":"DISPID_HTTPREQUEST_GETRESPONSEHEADER","features":[558]},{"name":"DISPID_HTTPREQUEST_OPEN","features":[558]},{"name":"DISPID_HTTPREQUEST_OPTION","features":[558]},{"name":"DISPID_HTTPREQUEST_RESPONSEBODY","features":[558]},{"name":"DISPID_HTTPREQUEST_RESPONSESTREAM","features":[558]},{"name":"DISPID_HTTPREQUEST_RESPONSETEXT","features":[558]},{"name":"DISPID_HTTPREQUEST_SEND","features":[558]},{"name":"DISPID_HTTPREQUEST_SETAUTOLOGONPOLICY","features":[558]},{"name":"DISPID_HTTPREQUEST_SETCLIENTCERTIFICATE","features":[558]},{"name":"DISPID_HTTPREQUEST_SETCREDENTIALS","features":[558]},{"name":"DISPID_HTTPREQUEST_SETPROXY","features":[558]},{"name":"DISPID_HTTPREQUEST_SETREQUESTHEADER","features":[558]},{"name":"DISPID_HTTPREQUEST_SETTIMEOUTS","features":[558]},{"name":"DISPID_HTTPREQUEST_STATUS","features":[558]},{"name":"DISPID_HTTPREQUEST_STATUSTEXT","features":[558]},{"name":"DISPID_HTTPREQUEST_WAITFORRESPONSE","features":[558]},{"name":"DWN_COLORMODE","features":[558]},{"name":"DWN_DOWNLOADONLY","features":[558]},{"name":"DWN_FORCEDITHER","features":[558]},{"name":"DWN_MIRRORIMAGE","features":[558]},{"name":"DWN_RAWIMAGE","features":[558]},{"name":"DWORD_METADATA","features":[558]},{"name":"EXPANDSZ_METADATA","features":[558]},{"name":"EXTENSION_CONTROL_BLOCK","features":[303,558]},{"name":"FP_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"FP_MD_ID_END_RESERVED","features":[558]},{"name":"FTP_ACCESS","features":[558]},{"name":"FTP_ACCESS_NONE","features":[558]},{"name":"FTP_ACCESS_READ","features":[558]},{"name":"FTP_ACCESS_READ_WRITE","features":[558]},{"name":"FTP_ACCESS_WRITE","features":[558]},{"name":"FTP_PROCESS_CLOSE_SESSION","features":[558]},{"name":"FTP_PROCESS_CONTINUE","features":[558]},{"name":"FTP_PROCESS_REJECT_COMMAND","features":[558]},{"name":"FTP_PROCESS_STATUS","features":[558]},{"name":"FTP_PROCESS_TERMINATE_SESSION","features":[558]},{"name":"FtpProvider","features":[558]},{"name":"GUID_IIS_ALL_TRACE_PROVIDERS","features":[558]},{"name":"GUID_IIS_ASPNET_TRACE_PROVIDER","features":[558]},{"name":"GUID_IIS_ASP_TRACE_TRACE_PROVIDER","features":[558]},{"name":"GUID_IIS_ISAPI_TRACE_PROVIDER","features":[558]},{"name":"GUID_IIS_WWW_GLOBAL_TRACE_PROVIDER","features":[558]},{"name":"GUID_IIS_WWW_SERVER_TRACE_PROVIDER","features":[558]},{"name":"GUID_IIS_WWW_SERVER_V2_TRACE_PROVIDER","features":[558]},{"name":"GetExtensionVersion","features":[303,558]},{"name":"GetFilterVersion","features":[303,558]},{"name":"HCONN","features":[558]},{"name":"HSE_APPEND_LOG_PARAMETER","features":[558]},{"name":"HSE_APP_FLAG_IN_PROCESS","features":[558]},{"name":"HSE_APP_FLAG_ISOLATED_OOP","features":[558]},{"name":"HSE_APP_FLAG_POOLED_OOP","features":[558]},{"name":"HSE_CUSTOM_ERROR_INFO","features":[303,558]},{"name":"HSE_EXEC_UNICODE_URL_INFO","features":[303,558]},{"name":"HSE_EXEC_UNICODE_URL_USER_INFO","features":[303,558]},{"name":"HSE_EXEC_URL_DISABLE_CUSTOM_ERROR","features":[558]},{"name":"HSE_EXEC_URL_ENTITY_INFO","features":[558]},{"name":"HSE_EXEC_URL_HTTP_CACHE_ELIGIBLE","features":[558]},{"name":"HSE_EXEC_URL_IGNORE_CURRENT_INTERCEPTOR","features":[558]},{"name":"HSE_EXEC_URL_IGNORE_VALIDATION_AND_RANGE","features":[558]},{"name":"HSE_EXEC_URL_INFO","features":[303,558]},{"name":"HSE_EXEC_URL_NO_HEADERS","features":[558]},{"name":"HSE_EXEC_URL_SSI_CMD","features":[558]},{"name":"HSE_EXEC_URL_STATUS","features":[558]},{"name":"HSE_EXEC_URL_USER_INFO","features":[303,558]},{"name":"HSE_IO_ASYNC","features":[558]},{"name":"HSE_IO_CACHE_RESPONSE","features":[558]},{"name":"HSE_IO_DISCONNECT_AFTER_SEND","features":[558]},{"name":"HSE_IO_FINAL_SEND","features":[558]},{"name":"HSE_IO_NODELAY","features":[558]},{"name":"HSE_IO_SEND_HEADERS","features":[558]},{"name":"HSE_IO_SYNC","features":[558]},{"name":"HSE_IO_TRY_SKIP_CUSTOM_ERRORS","features":[558]},{"name":"HSE_LOG_BUFFER_LEN","features":[558]},{"name":"HSE_MAX_EXT_DLL_NAME_LEN","features":[558]},{"name":"HSE_REQ_ABORTIVE_CLOSE","features":[558]},{"name":"HSE_REQ_ASYNC_READ_CLIENT","features":[558]},{"name":"HSE_REQ_BASE","features":[558]},{"name":"HSE_REQ_CANCEL_IO","features":[558]},{"name":"HSE_REQ_CLOSE_CONNECTION","features":[558]},{"name":"HSE_REQ_DONE_WITH_SESSION","features":[558]},{"name":"HSE_REQ_END_RESERVED","features":[558]},{"name":"HSE_REQ_EXEC_UNICODE_URL","features":[558]},{"name":"HSE_REQ_EXEC_URL","features":[558]},{"name":"HSE_REQ_GET_ANONYMOUS_TOKEN","features":[558]},{"name":"HSE_REQ_GET_CACHE_INVALIDATION_CALLBACK","features":[558]},{"name":"HSE_REQ_GET_CERT_INFO_EX","features":[558]},{"name":"HSE_REQ_GET_CHANNEL_BINDING_TOKEN","features":[558]},{"name":"HSE_REQ_GET_CONFIG_OBJECT","features":[558]},{"name":"HSE_REQ_GET_EXEC_URL_STATUS","features":[558]},{"name":"HSE_REQ_GET_IMPERSONATION_TOKEN","features":[558]},{"name":"HSE_REQ_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[558]},{"name":"HSE_REQ_GET_SSPI_INFO","features":[558]},{"name":"HSE_REQ_GET_TRACE_INFO","features":[558]},{"name":"HSE_REQ_GET_TRACE_INFO_EX","features":[558]},{"name":"HSE_REQ_GET_UNICODE_ANONYMOUS_TOKEN","features":[558]},{"name":"HSE_REQ_GET_WORKER_PROCESS_SETTINGS","features":[558]},{"name":"HSE_REQ_IO_COMPLETION","features":[558]},{"name":"HSE_REQ_IS_CONNECTED","features":[558]},{"name":"HSE_REQ_IS_IN_PROCESS","features":[558]},{"name":"HSE_REQ_IS_KEEP_CONN","features":[558]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH","features":[558]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH_EX","features":[558]},{"name":"HSE_REQ_MAP_URL_TO_PATH","features":[558]},{"name":"HSE_REQ_MAP_URL_TO_PATH_EX","features":[558]},{"name":"HSE_REQ_NORMALIZE_URL","features":[558]},{"name":"HSE_REQ_RAISE_TRACE_EVENT","features":[558]},{"name":"HSE_REQ_REFRESH_ISAPI_ACL","features":[558]},{"name":"HSE_REQ_REPORT_UNHEALTHY","features":[558]},{"name":"HSE_REQ_SEND_CUSTOM_ERROR","features":[558]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER","features":[558]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER_EX","features":[558]},{"name":"HSE_REQ_SEND_URL","features":[558]},{"name":"HSE_REQ_SEND_URL_REDIRECT_RESP","features":[558]},{"name":"HSE_REQ_SET_FLUSH_FLAG","features":[558]},{"name":"HSE_REQ_TRANSMIT_FILE","features":[558]},{"name":"HSE_REQ_VECTOR_SEND","features":[558]},{"name":"HSE_RESPONSE_VECTOR","features":[558]},{"name":"HSE_SEND_HEADER_EX_INFO","features":[303,558]},{"name":"HSE_STATUS_ERROR","features":[558]},{"name":"HSE_STATUS_PENDING","features":[558]},{"name":"HSE_STATUS_SUCCESS","features":[558]},{"name":"HSE_STATUS_SUCCESS_AND_KEEP_CONN","features":[558]},{"name":"HSE_TERM_ADVISORY_UNLOAD","features":[558]},{"name":"HSE_TERM_MUST_UNLOAD","features":[558]},{"name":"HSE_TF_INFO","features":[303,558]},{"name":"HSE_TRACE_INFO","features":[303,558]},{"name":"HSE_UNICODE_URL_MAPEX_INFO","features":[558]},{"name":"HSE_URL_FLAGS_DONT_CACHE","features":[558]},{"name":"HSE_URL_FLAGS_EXECUTE","features":[558]},{"name":"HSE_URL_FLAGS_MAP_CERT","features":[558]},{"name":"HSE_URL_FLAGS_MASK","features":[558]},{"name":"HSE_URL_FLAGS_NEGO_CERT","features":[558]},{"name":"HSE_URL_FLAGS_READ","features":[558]},{"name":"HSE_URL_FLAGS_REQUIRE_CERT","features":[558]},{"name":"HSE_URL_FLAGS_SCRIPT","features":[558]},{"name":"HSE_URL_FLAGS_SSL","features":[558]},{"name":"HSE_URL_FLAGS_SSL128","features":[558]},{"name":"HSE_URL_FLAGS_WRITE","features":[558]},{"name":"HSE_URL_MAPEX_INFO","features":[558]},{"name":"HSE_VECTOR_ELEMENT","features":[558]},{"name":"HSE_VECTOR_ELEMENT_TYPE_FILE_HANDLE","features":[558]},{"name":"HSE_VECTOR_ELEMENT_TYPE_MEMORY_BUFFER","features":[558]},{"name":"HSE_VERSION_INFO","features":[558]},{"name":"HSE_VERSION_MAJOR","features":[558]},{"name":"HSE_VERSION_MINOR","features":[558]},{"name":"HTTP_FILTER_ACCESS_DENIED","features":[558]},{"name":"HTTP_FILTER_AUTHENT","features":[558]},{"name":"HTTP_FILTER_AUTH_COMPLETE_INFO","features":[303,558]},{"name":"HTTP_FILTER_CONTEXT","features":[303,558]},{"name":"HTTP_FILTER_LOG","features":[558]},{"name":"HTTP_FILTER_PREPROC_HEADERS","features":[558]},{"name":"HTTP_FILTER_RAW_DATA","features":[558]},{"name":"HTTP_FILTER_URL_MAP","features":[558]},{"name":"HTTP_FILTER_URL_MAP_EX","features":[558]},{"name":"HTTP_FILTER_VERSION","features":[558]},{"name":"HTTP_TRACE_CONFIGURATION","features":[303,558]},{"name":"HTTP_TRACE_EVENT","features":[558]},{"name":"HTTP_TRACE_EVENT_FLAG_STATIC_DESCRIPTIVE_FIELDS","features":[558]},{"name":"HTTP_TRACE_EVENT_ITEM","features":[558]},{"name":"HTTP_TRACE_LEVEL_END","features":[558]},{"name":"HTTP_TRACE_LEVEL_START","features":[558]},{"name":"HTTP_TRACE_TYPE","features":[558]},{"name":"HTTP_TRACE_TYPE_BOOL","features":[558]},{"name":"HTTP_TRACE_TYPE_BYTE","features":[558]},{"name":"HTTP_TRACE_TYPE_CHAR","features":[558]},{"name":"HTTP_TRACE_TYPE_LONG","features":[558]},{"name":"HTTP_TRACE_TYPE_LONGLONG","features":[558]},{"name":"HTTP_TRACE_TYPE_LPCGUID","features":[558]},{"name":"HTTP_TRACE_TYPE_LPCSTR","features":[558]},{"name":"HTTP_TRACE_TYPE_LPCWSTR","features":[558]},{"name":"HTTP_TRACE_TYPE_SHORT","features":[558]},{"name":"HTTP_TRACE_TYPE_ULONG","features":[558]},{"name":"HTTP_TRACE_TYPE_ULONGLONG","features":[558]},{"name":"HTTP_TRACE_TYPE_USHORT","features":[558]},{"name":"HttpExtensionProc","features":[303,558]},{"name":"HttpFilterProc","features":[303,558]},{"name":"IADMEXT","features":[558]},{"name":"IFtpAuthenticationProvider","features":[558]},{"name":"IFtpAuthorizationProvider","features":[558]},{"name":"IFtpHomeDirectoryProvider","features":[558]},{"name":"IFtpLogProvider","features":[558]},{"name":"IFtpPostprocessProvider","features":[558]},{"name":"IFtpPreprocessProvider","features":[558]},{"name":"IFtpProviderConstruct","features":[558]},{"name":"IFtpRoleProvider","features":[558]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEY","features":[558]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYA","features":[558]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYW","features":[558]},{"name":"IISADMIN_EXTENSIONS_REG_KEY","features":[558]},{"name":"IISADMIN_EXTENSIONS_REG_KEYA","features":[558]},{"name":"IISADMIN_EXTENSIONS_REG_KEYW","features":[558]},{"name":"IIS_CLASS_CERTMAPPER","features":[558]},{"name":"IIS_CLASS_CERTMAPPER_W","features":[558]},{"name":"IIS_CLASS_COMPRESS_SCHEME","features":[558]},{"name":"IIS_CLASS_COMPRESS_SCHEMES","features":[558]},{"name":"IIS_CLASS_COMPRESS_SCHEMES_W","features":[558]},{"name":"IIS_CLASS_COMPRESS_SCHEME_W","features":[558]},{"name":"IIS_CLASS_COMPUTER","features":[558]},{"name":"IIS_CLASS_COMPUTER_W","features":[558]},{"name":"IIS_CLASS_FILTER","features":[558]},{"name":"IIS_CLASS_FILTERS","features":[558]},{"name":"IIS_CLASS_FILTERS_W","features":[558]},{"name":"IIS_CLASS_FILTER_W","features":[558]},{"name":"IIS_CLASS_FTP_INFO","features":[558]},{"name":"IIS_CLASS_FTP_INFO_W","features":[558]},{"name":"IIS_CLASS_FTP_SERVER","features":[558]},{"name":"IIS_CLASS_FTP_SERVER_W","features":[558]},{"name":"IIS_CLASS_FTP_SERVICE","features":[558]},{"name":"IIS_CLASS_FTP_SERVICE_W","features":[558]},{"name":"IIS_CLASS_FTP_VDIR","features":[558]},{"name":"IIS_CLASS_FTP_VDIR_W","features":[558]},{"name":"IIS_CLASS_LOG_MODULE","features":[558]},{"name":"IIS_CLASS_LOG_MODULES","features":[558]},{"name":"IIS_CLASS_LOG_MODULES_W","features":[558]},{"name":"IIS_CLASS_LOG_MODULE_W","features":[558]},{"name":"IIS_CLASS_MIMEMAP","features":[558]},{"name":"IIS_CLASS_MIMEMAP_W","features":[558]},{"name":"IIS_CLASS_WEB_DIR","features":[558]},{"name":"IIS_CLASS_WEB_DIR_W","features":[558]},{"name":"IIS_CLASS_WEB_FILE","features":[558]},{"name":"IIS_CLASS_WEB_FILE_W","features":[558]},{"name":"IIS_CLASS_WEB_INFO","features":[558]},{"name":"IIS_CLASS_WEB_INFO_W","features":[558]},{"name":"IIS_CLASS_WEB_SERVER","features":[558]},{"name":"IIS_CLASS_WEB_SERVER_W","features":[558]},{"name":"IIS_CLASS_WEB_SERVICE","features":[558]},{"name":"IIS_CLASS_WEB_SERVICE_W","features":[558]},{"name":"IIS_CLASS_WEB_VDIR","features":[558]},{"name":"IIS_CLASS_WEB_VDIR_W","features":[558]},{"name":"IIS_MD_ADSI_METAID_BEGIN","features":[558]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_A","features":[558]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_W","features":[558]},{"name":"IIS_MD_APPPOOL_BASE","features":[558]},{"name":"IIS_MD_APP_BASE","features":[558]},{"name":"IIS_MD_FILE_PROP_BASE","features":[558]},{"name":"IIS_MD_FTP_BASE","features":[558]},{"name":"IIS_MD_GLOBAL_BASE","features":[558]},{"name":"IIS_MD_HTTP_BASE","features":[558]},{"name":"IIS_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"IIS_MD_ID_END_RESERVED","features":[558]},{"name":"IIS_MD_INSTANCE_ROOT","features":[558]},{"name":"IIS_MD_ISAPI_FILTERS","features":[558]},{"name":"IIS_MD_LOCAL_MACHINE_PATH","features":[558]},{"name":"IIS_MD_LOGCUSTOM_BASE","features":[558]},{"name":"IIS_MD_LOGCUSTOM_LAST","features":[558]},{"name":"IIS_MD_LOG_BASE","features":[558]},{"name":"IIS_MD_LOG_LAST","features":[558]},{"name":"IIS_MD_SERVER_BASE","features":[558]},{"name":"IIS_MD_SSL_BASE","features":[558]},{"name":"IIS_MD_SVC_INFO_PATH","features":[558]},{"name":"IIS_MD_UT_END_RESERVED","features":[558]},{"name":"IIS_MD_UT_FILE","features":[558]},{"name":"IIS_MD_UT_SERVER","features":[558]},{"name":"IIS_MD_UT_WAM","features":[558]},{"name":"IIS_MD_VR_BASE","features":[558]},{"name":"IIS_WEBSOCKET","features":[558]},{"name":"IIS_WEBSOCKET_SERVER_VARIABLE","features":[558]},{"name":"IMAP_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"IMAP_MD_ID_END_RESERVED","features":[558]},{"name":"IMGANIM_ANIMATED","features":[558]},{"name":"IMGANIM_MASK","features":[558]},{"name":"IMGBITS_MASK","features":[558]},{"name":"IMGBITS_NONE","features":[558]},{"name":"IMGBITS_PARTIAL","features":[558]},{"name":"IMGBITS_TOTAL","features":[558]},{"name":"IMGCHG_ANIMATE","features":[558]},{"name":"IMGCHG_COMPLETE","features":[558]},{"name":"IMGCHG_MASK","features":[558]},{"name":"IMGCHG_SIZE","features":[558]},{"name":"IMGCHG_VIEW","features":[558]},{"name":"IMGLOAD_COMPLETE","features":[558]},{"name":"IMGLOAD_ERROR","features":[558]},{"name":"IMGLOAD_LOADING","features":[558]},{"name":"IMGLOAD_MASK","features":[558]},{"name":"IMGLOAD_NOTLOADED","features":[558]},{"name":"IMGLOAD_STOPPED","features":[558]},{"name":"IMGTRANS_MASK","features":[558]},{"name":"IMGTRANS_OPAQUE","features":[558]},{"name":"IMSAdminBase2W","features":[558]},{"name":"IMSAdminBase3W","features":[558]},{"name":"IMSAdminBaseSinkW","features":[558]},{"name":"IMSAdminBaseW","features":[558]},{"name":"IMSImpExpHelpW","features":[558]},{"name":"INVALID_END_METADATA","features":[558]},{"name":"LIBID_ASPTypeLibrary","features":[558]},{"name":"LIBID_IISRSTALib","features":[558]},{"name":"LIBID_WAMREGLib","features":[558]},{"name":"LOGGING_PARAMETERS","features":[558]},{"name":"MB_DONT_IMPERSONATE","features":[558]},{"name":"MD_ACCESS_EXECUTE","features":[558]},{"name":"MD_ACCESS_MAP_CERT","features":[558]},{"name":"MD_ACCESS_MASK","features":[558]},{"name":"MD_ACCESS_NEGO_CERT","features":[558]},{"name":"MD_ACCESS_NO_PHYSICAL_DIR","features":[558]},{"name":"MD_ACCESS_NO_REMOTE_EXECUTE","features":[558]},{"name":"MD_ACCESS_NO_REMOTE_READ","features":[558]},{"name":"MD_ACCESS_NO_REMOTE_SCRIPT","features":[558]},{"name":"MD_ACCESS_NO_REMOTE_WRITE","features":[558]},{"name":"MD_ACCESS_PERM","features":[558]},{"name":"MD_ACCESS_READ","features":[558]},{"name":"MD_ACCESS_REQUIRE_CERT","features":[558]},{"name":"MD_ACCESS_SCRIPT","features":[558]},{"name":"MD_ACCESS_SOURCE","features":[558]},{"name":"MD_ACCESS_SSL","features":[558]},{"name":"MD_ACCESS_SSL128","features":[558]},{"name":"MD_ACCESS_WRITE","features":[558]},{"name":"MD_ACR_ENUM_KEYS","features":[558]},{"name":"MD_ACR_READ","features":[558]},{"name":"MD_ACR_RESTRICTED_WRITE","features":[558]},{"name":"MD_ACR_UNSECURE_PROPS_READ","features":[558]},{"name":"MD_ACR_WRITE","features":[558]},{"name":"MD_ACR_WRITE_DAC","features":[558]},{"name":"MD_ADMIN_ACL","features":[558]},{"name":"MD_ADMIN_INSTANCE","features":[558]},{"name":"MD_ADV_CACHE_TTL","features":[558]},{"name":"MD_ADV_NOTIFY_PWD_EXP_IN_DAYS","features":[558]},{"name":"MD_AD_CONNECTIONS_PASSWORD","features":[558]},{"name":"MD_AD_CONNECTIONS_USERNAME","features":[558]},{"name":"MD_ALLOW_ANONYMOUS","features":[558]},{"name":"MD_ALLOW_KEEPALIVES","features":[558]},{"name":"MD_ALLOW_PATH_INFO_FOR_SCRIPT_MAPPINGS","features":[558]},{"name":"MD_ALLOW_REPLACE_ON_RENAME","features":[558]},{"name":"MD_ANONYMOUS_ONLY","features":[558]},{"name":"MD_ANONYMOUS_PWD","features":[558]},{"name":"MD_ANONYMOUS_USER_NAME","features":[558]},{"name":"MD_ANONYMOUS_USE_SUBAUTH","features":[558]},{"name":"MD_APPPOOL_32_BIT_APP_ON_WIN64","features":[558]},{"name":"MD_APPPOOL_ALLOW_TRANSIENT_REGISTRATION","features":[558]},{"name":"MD_APPPOOL_APPPOOL_ID","features":[558]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_EXE","features":[558]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_PARAMS","features":[558]},{"name":"MD_APPPOOL_AUTO_START","features":[558]},{"name":"MD_APPPOOL_COMMAND","features":[558]},{"name":"MD_APPPOOL_COMMAND_START","features":[558]},{"name":"MD_APPPOOL_COMMAND_STOP","features":[558]},{"name":"MD_APPPOOL_DISALLOW_OVERLAPPING_ROTATION","features":[558]},{"name":"MD_APPPOOL_DISALLOW_ROTATION_ON_CONFIG_CHANGE","features":[558]},{"name":"MD_APPPOOL_EMULATION_ON_WINARM64","features":[558]},{"name":"MD_APPPOOL_IDENTITY_TYPE","features":[558]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSERVICE","features":[558]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSYSTEM","features":[558]},{"name":"MD_APPPOOL_IDENTITY_TYPE_NETWORKSERVICE","features":[558]},{"name":"MD_APPPOOL_IDENTITY_TYPE_SPECIFICUSER","features":[558]},{"name":"MD_APPPOOL_IDLE_TIMEOUT","features":[558]},{"name":"MD_APPPOOL_MANAGED_PIPELINE_MODE","features":[558]},{"name":"MD_APPPOOL_MANAGED_RUNTIME_VERSION","features":[558]},{"name":"MD_APPPOOL_MAX_PROCESS_COUNT","features":[558]},{"name":"MD_APPPOOL_ORPHAN_ACTION_EXE","features":[558]},{"name":"MD_APPPOOL_ORPHAN_ACTION_PARAMS","features":[558]},{"name":"MD_APPPOOL_ORPHAN_PROCESSES_FOR_DEBUGGING","features":[558]},{"name":"MD_APPPOOL_PERIODIC_RESTART_CONNECTIONS","features":[558]},{"name":"MD_APPPOOL_PERIODIC_RESTART_MEMORY","features":[558]},{"name":"MD_APPPOOL_PERIODIC_RESTART_PRIVATE_MEMORY","features":[558]},{"name":"MD_APPPOOL_PERIODIC_RESTART_REQUEST_COUNT","features":[558]},{"name":"MD_APPPOOL_PERIODIC_RESTART_SCHEDULE","features":[558]},{"name":"MD_APPPOOL_PERIODIC_RESTART_TIME","features":[558]},{"name":"MD_APPPOOL_PINGING_ENABLED","features":[558]},{"name":"MD_APPPOOL_PING_INTERVAL","features":[558]},{"name":"MD_APPPOOL_PING_RESPONSE_TIMELIMIT","features":[558]},{"name":"MD_APPPOOL_RAPID_FAIL_PROTECTION_ENABLED","features":[558]},{"name":"MD_APPPOOL_SHUTDOWN_TIMELIMIT","features":[558]},{"name":"MD_APPPOOL_SMP_AFFINITIZED","features":[558]},{"name":"MD_APPPOOL_SMP_AFFINITIZED_PROCESSOR_MASK","features":[558]},{"name":"MD_APPPOOL_STARTUP_TIMELIMIT","features":[558]},{"name":"MD_APPPOOL_STATE","features":[558]},{"name":"MD_APPPOOL_STATE_STARTED","features":[558]},{"name":"MD_APPPOOL_STATE_STARTING","features":[558]},{"name":"MD_APPPOOL_STATE_STOPPED","features":[558]},{"name":"MD_APPPOOL_STATE_STOPPING","features":[558]},{"name":"MD_APPPOOL_UL_APPPOOL_QUEUE_LENGTH","features":[558]},{"name":"MD_APP_ALLOW_TRANSIENT_REGISTRATION","features":[558]},{"name":"MD_APP_APPPOOL_ID","features":[558]},{"name":"MD_APP_AUTO_START","features":[558]},{"name":"MD_APP_DEPENDENCIES","features":[558]},{"name":"MD_APP_FRIENDLY_NAME","features":[558]},{"name":"MD_APP_ISOLATED","features":[558]},{"name":"MD_APP_OOP_RECOVER_LIMIT","features":[558]},{"name":"MD_APP_PACKAGE_ID","features":[558]},{"name":"MD_APP_PACKAGE_NAME","features":[558]},{"name":"MD_APP_PERIODIC_RESTART_REQUESTS","features":[558]},{"name":"MD_APP_PERIODIC_RESTART_SCHEDULE","features":[558]},{"name":"MD_APP_PERIODIC_RESTART_TIME","features":[558]},{"name":"MD_APP_POOL_LOG_EVENT_ON_PROCESSMODEL","features":[558]},{"name":"MD_APP_POOL_LOG_EVENT_ON_RECYCLE","features":[558]},{"name":"MD_APP_POOL_PROCESSMODEL_IDLE_TIMEOUT","features":[558]},{"name":"MD_APP_POOL_RECYCLE_CONFIG_CHANGE","features":[558]},{"name":"MD_APP_POOL_RECYCLE_ISAPI_UNHEALTHY","features":[558]},{"name":"MD_APP_POOL_RECYCLE_MEMORY","features":[558]},{"name":"MD_APP_POOL_RECYCLE_ON_DEMAND","features":[558]},{"name":"MD_APP_POOL_RECYCLE_PRIVATE_MEMORY","features":[558]},{"name":"MD_APP_POOL_RECYCLE_REQUESTS","features":[558]},{"name":"MD_APP_POOL_RECYCLE_SCHEDULE","features":[558]},{"name":"MD_APP_POOL_RECYCLE_TIME","features":[558]},{"name":"MD_APP_ROOT","features":[558]},{"name":"MD_APP_SHUTDOWN_TIME_LIMIT","features":[558]},{"name":"MD_APP_TRACE_URL_LIST","features":[558]},{"name":"MD_APP_WAM_CLSID","features":[558]},{"name":"MD_ASP_ALLOWOUTOFPROCCMPNTS","features":[558]},{"name":"MD_ASP_ALLOWOUTOFPROCCOMPONENTS","features":[558]},{"name":"MD_ASP_ALLOWSESSIONSTATE","features":[558]},{"name":"MD_ASP_BUFFERINGON","features":[558]},{"name":"MD_ASP_BUFFER_LIMIT","features":[558]},{"name":"MD_ASP_CALCLINENUMBER","features":[558]},{"name":"MD_ASP_CODEPAGE","features":[558]},{"name":"MD_ASP_DISKTEMPLATECACHEDIRECTORY","features":[558]},{"name":"MD_ASP_ENABLEAPPLICATIONRESTART","features":[558]},{"name":"MD_ASP_ENABLEASPHTMLFALLBACK","features":[558]},{"name":"MD_ASP_ENABLECHUNKEDENCODING","features":[558]},{"name":"MD_ASP_ENABLECLIENTDEBUG","features":[558]},{"name":"MD_ASP_ENABLEPARENTPATHS","features":[558]},{"name":"MD_ASP_ENABLESERVERDEBUG","features":[558]},{"name":"MD_ASP_ENABLETYPELIBCACHE","features":[558]},{"name":"MD_ASP_ERRORSTONTLOG","features":[558]},{"name":"MD_ASP_EXCEPTIONCATCHENABLE","features":[558]},{"name":"MD_ASP_EXECUTEINMTA","features":[558]},{"name":"MD_ASP_ID_LAST","features":[558]},{"name":"MD_ASP_KEEPSESSIONIDSECURE","features":[558]},{"name":"MD_ASP_LCID","features":[558]},{"name":"MD_ASP_LOGERRORREQUESTS","features":[558]},{"name":"MD_ASP_MAXDISKTEMPLATECACHEFILES","features":[558]},{"name":"MD_ASP_MAXREQUESTENTITY","features":[558]},{"name":"MD_ASP_MAX_REQUEST_ENTITY_ALLOWED","features":[558]},{"name":"MD_ASP_MEMFREEFACTOR","features":[558]},{"name":"MD_ASP_MINUSEDBLOCKS","features":[558]},{"name":"MD_ASP_PROCESSORTHREADMAX","features":[558]},{"name":"MD_ASP_QUEUECONNECTIONTESTTIME","features":[558]},{"name":"MD_ASP_QUEUETIMEOUT","features":[558]},{"name":"MD_ASP_REQEUSTQUEUEMAX","features":[558]},{"name":"MD_ASP_RUN_ONEND_ANON","features":[558]},{"name":"MD_ASP_SCRIPTENGINECACHEMAX","features":[558]},{"name":"MD_ASP_SCRIPTERRORMESSAGE","features":[558]},{"name":"MD_ASP_SCRIPTERRORSSENTTOBROWSER","features":[558]},{"name":"MD_ASP_SCRIPTFILECACHESIZE","features":[558]},{"name":"MD_ASP_SCRIPTLANGUAGE","features":[558]},{"name":"MD_ASP_SCRIPTLANGUAGELIST","features":[558]},{"name":"MD_ASP_SCRIPTTIMEOUT","features":[558]},{"name":"MD_ASP_SERVICE_ENABLE_SXS","features":[558]},{"name":"MD_ASP_SERVICE_ENABLE_TRACKER","features":[558]},{"name":"MD_ASP_SERVICE_FLAGS","features":[558]},{"name":"MD_ASP_SERVICE_FLAG_FUSION","features":[558]},{"name":"MD_ASP_SERVICE_FLAG_PARTITIONS","features":[558]},{"name":"MD_ASP_SERVICE_FLAG_TRACKER","features":[558]},{"name":"MD_ASP_SERVICE_PARTITION_ID","features":[558]},{"name":"MD_ASP_SERVICE_SXS_NAME","features":[558]},{"name":"MD_ASP_SERVICE_USE_PARTITION","features":[558]},{"name":"MD_ASP_SESSIONMAX","features":[558]},{"name":"MD_ASP_SESSIONTIMEOUT","features":[558]},{"name":"MD_ASP_THREADGATEENABLED","features":[558]},{"name":"MD_ASP_THREADGATELOADHIGH","features":[558]},{"name":"MD_ASP_THREADGATELOADLOW","features":[558]},{"name":"MD_ASP_THREADGATESLEEPDELAY","features":[558]},{"name":"MD_ASP_THREADGATESLEEPMAX","features":[558]},{"name":"MD_ASP_THREADGATETIMESLICE","features":[558]},{"name":"MD_ASP_TRACKTHREADINGMODEL","features":[558]},{"name":"MD_AUTHORIZATION","features":[558]},{"name":"MD_AUTHORIZATION_PERSISTENCE","features":[558]},{"name":"MD_AUTH_ADVNOTIFY_DISABLE","features":[558]},{"name":"MD_AUTH_ANONYMOUS","features":[558]},{"name":"MD_AUTH_BASIC","features":[558]},{"name":"MD_AUTH_CHANGE_DISABLE","features":[558]},{"name":"MD_AUTH_CHANGE_FLAGS","features":[558]},{"name":"MD_AUTH_CHANGE_UNSECURE","features":[558]},{"name":"MD_AUTH_CHANGE_URL","features":[558]},{"name":"MD_AUTH_EXPIRED_UNSECUREURL","features":[558]},{"name":"MD_AUTH_EXPIRED_URL","features":[558]},{"name":"MD_AUTH_MD5","features":[558]},{"name":"MD_AUTH_NT","features":[558]},{"name":"MD_AUTH_PASSPORT","features":[558]},{"name":"MD_AUTH_SINGLEREQUEST","features":[558]},{"name":"MD_AUTH_SINGLEREQUESTALWAYSIFPROXY","features":[558]},{"name":"MD_AUTH_SINGLEREQUESTIFPROXY","features":[558]},{"name":"MD_BACKUP_FORCE_BACKUP","features":[558]},{"name":"MD_BACKUP_HIGHEST_VERSION","features":[558]},{"name":"MD_BACKUP_MAX_LEN","features":[558]},{"name":"MD_BACKUP_MAX_VERSION","features":[558]},{"name":"MD_BACKUP_NEXT_VERSION","features":[558]},{"name":"MD_BACKUP_OVERWRITE","features":[558]},{"name":"MD_BACKUP_SAVE_FIRST","features":[558]},{"name":"MD_BANNER_MESSAGE","features":[558]},{"name":"MD_BINDINGS","features":[558]},{"name":"MD_CACHE_EXTENSIONS","features":[558]},{"name":"MD_CAL_AUTH_RESERVE_TIMEOUT","features":[558]},{"name":"MD_CAL_SSL_RESERVE_TIMEOUT","features":[558]},{"name":"MD_CAL_VC_PER_CONNECT","features":[558]},{"name":"MD_CAL_W3_ERROR","features":[558]},{"name":"MD_CC_MAX_AGE","features":[558]},{"name":"MD_CC_NO_CACHE","features":[558]},{"name":"MD_CC_OTHER","features":[558]},{"name":"MD_CENTRAL_W3C_LOGGING_ENABLED","features":[558]},{"name":"MD_CERT_CACHE_RETRIEVAL_ONLY","features":[558]},{"name":"MD_CERT_CHECK_REVOCATION_FRESHNESS_TIME","features":[558]},{"name":"MD_CERT_NO_REVOC_CHECK","features":[558]},{"name":"MD_CERT_NO_USAGE_CHECK","features":[558]},{"name":"MD_CGI_RESTRICTION_LIST","features":[558]},{"name":"MD_CHANGE_OBJECT_W","features":[558]},{"name":"MD_CHANGE_TYPE_ADD_OBJECT","features":[558]},{"name":"MD_CHANGE_TYPE_DELETE_DATA","features":[558]},{"name":"MD_CHANGE_TYPE_DELETE_OBJECT","features":[558]},{"name":"MD_CHANGE_TYPE_RENAME_OBJECT","features":[558]},{"name":"MD_CHANGE_TYPE_RESTORE","features":[558]},{"name":"MD_CHANGE_TYPE_SET_DATA","features":[558]},{"name":"MD_COMMENTS","features":[558]},{"name":"MD_CONNECTION_TIMEOUT","features":[558]},{"name":"MD_CPU_ACTION","features":[558]},{"name":"MD_CPU_APP_ENABLED","features":[558]},{"name":"MD_CPU_CGI_ENABLED","features":[558]},{"name":"MD_CPU_CGI_LIMIT","features":[558]},{"name":"MD_CPU_DISABLE_ALL_LOGGING","features":[558]},{"name":"MD_CPU_ENABLE_ACTIVE_PROCS","features":[558]},{"name":"MD_CPU_ENABLE_ALL_PROC_LOGGING","features":[558]},{"name":"MD_CPU_ENABLE_APP_LOGGING","features":[558]},{"name":"MD_CPU_ENABLE_CGI_LOGGING","features":[558]},{"name":"MD_CPU_ENABLE_EVENT","features":[558]},{"name":"MD_CPU_ENABLE_KERNEL_TIME","features":[558]},{"name":"MD_CPU_ENABLE_LOGGING","features":[558]},{"name":"MD_CPU_ENABLE_PAGE_FAULTS","features":[558]},{"name":"MD_CPU_ENABLE_PROC_TYPE","features":[558]},{"name":"MD_CPU_ENABLE_TERMINATED_PROCS","features":[558]},{"name":"MD_CPU_ENABLE_TOTAL_PROCS","features":[558]},{"name":"MD_CPU_ENABLE_USER_TIME","features":[558]},{"name":"MD_CPU_KILL_W3WP","features":[558]},{"name":"MD_CPU_LIMIT","features":[558]},{"name":"MD_CPU_LIMITS_ENABLED","features":[558]},{"name":"MD_CPU_LIMIT_LOGEVENT","features":[558]},{"name":"MD_CPU_LIMIT_PAUSE","features":[558]},{"name":"MD_CPU_LIMIT_PRIORITY","features":[558]},{"name":"MD_CPU_LIMIT_PROCSTOP","features":[558]},{"name":"MD_CPU_LOGGING_INTERVAL","features":[558]},{"name":"MD_CPU_LOGGING_MASK","features":[558]},{"name":"MD_CPU_LOGGING_OPTIONS","features":[558]},{"name":"MD_CPU_NO_ACTION","features":[558]},{"name":"MD_CPU_RESET_INTERVAL","features":[558]},{"name":"MD_CPU_THROTTLE","features":[558]},{"name":"MD_CPU_TRACE","features":[558]},{"name":"MD_CREATE_PROCESS_AS_USER","features":[558]},{"name":"MD_CREATE_PROC_NEW_CONSOLE","features":[558]},{"name":"MD_CUSTOM_DEPLOYMENT_DATA","features":[558]},{"name":"MD_CUSTOM_ERROR","features":[558]},{"name":"MD_CUSTOM_ERROR_DESC","features":[558]},{"name":"MD_DEFAULT_BACKUP_LOCATION","features":[558]},{"name":"MD_DEFAULT_LOAD_FILE","features":[558]},{"name":"MD_DEFAULT_LOGON_DOMAIN","features":[558]},{"name":"MD_DEMAND_START_THRESHOLD","features":[558]},{"name":"MD_DIRBROW_ENABLED","features":[558]},{"name":"MD_DIRBROW_LOADDEFAULT","features":[558]},{"name":"MD_DIRBROW_LONG_DATE","features":[558]},{"name":"MD_DIRBROW_SHOW_DATE","features":[558]},{"name":"MD_DIRBROW_SHOW_EXTENSION","features":[558]},{"name":"MD_DIRBROW_SHOW_SIZE","features":[558]},{"name":"MD_DIRBROW_SHOW_TIME","features":[558]},{"name":"MD_DIRECTORY_BROWSING","features":[558]},{"name":"MD_DISABLE_SOCKET_POOLING","features":[558]},{"name":"MD_DONT_LOG","features":[558]},{"name":"MD_DOWNLEVEL_ADMIN_INSTANCE","features":[558]},{"name":"MD_DO_REVERSE_DNS","features":[558]},{"name":"MD_ENABLEDPROTOCOLS","features":[558]},{"name":"MD_ENABLE_URL_AUTHORIZATION","features":[558]},{"name":"MD_ERROR_CANNOT_REMOVE_SECURE_ATTRIBUTE","features":[558]},{"name":"MD_ERROR_DATA_NOT_FOUND","features":[558]},{"name":"MD_ERROR_IISAO_INVALID_SCHEMA","features":[558]},{"name":"MD_ERROR_INVALID_VERSION","features":[558]},{"name":"MD_ERROR_NOT_INITIALIZED","features":[558]},{"name":"MD_ERROR_NO_SESSION_KEY","features":[558]},{"name":"MD_ERROR_READ_METABASE_FILE","features":[558]},{"name":"MD_ERROR_SECURE_CHANNEL_FAILURE","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_CONTENT_LENGTH","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_DEPTH","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_DESTINATION","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_IF","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_LOCK_TOKEN","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_OVERWRITE","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_REQUEST_BODY","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_TIMEOUT","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_TRANSLATE","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_WEBSOCKET_REQUEST","features":[558]},{"name":"MD_ERROR_SUB400_INVALID_XFF_HEADER","features":[558]},{"name":"MD_ERROR_SUB401_APPLICATION","features":[558]},{"name":"MD_ERROR_SUB401_FILTER","features":[558]},{"name":"MD_ERROR_SUB401_LOGON","features":[558]},{"name":"MD_ERROR_SUB401_LOGON_ACL","features":[558]},{"name":"MD_ERROR_SUB401_LOGON_CONFIG","features":[558]},{"name":"MD_ERROR_SUB401_URLAUTH_POLICY","features":[558]},{"name":"MD_ERROR_SUB403_ADDR_REJECT","features":[558]},{"name":"MD_ERROR_SUB403_APPPOOL_DENIED","features":[558]},{"name":"MD_ERROR_SUB403_CAL_EXCEEDED","features":[558]},{"name":"MD_ERROR_SUB403_CERT_BAD","features":[558]},{"name":"MD_ERROR_SUB403_CERT_REQUIRED","features":[558]},{"name":"MD_ERROR_SUB403_CERT_REVOKED","features":[558]},{"name":"MD_ERROR_SUB403_CERT_TIME_INVALID","features":[558]},{"name":"MD_ERROR_SUB403_DIR_LIST_DENIED","features":[558]},{"name":"MD_ERROR_SUB403_EXECUTE_ACCESS_DENIED","features":[558]},{"name":"MD_ERROR_SUB403_INFINITE_DEPTH_DENIED","features":[558]},{"name":"MD_ERROR_SUB403_INSUFFICIENT_PRIVILEGE_FOR_CGI","features":[558]},{"name":"MD_ERROR_SUB403_INVALID_CNFG","features":[558]},{"name":"MD_ERROR_SUB403_LOCK_TOKEN_REQUIRED","features":[558]},{"name":"MD_ERROR_SUB403_MAPPER_DENY_ACCESS","features":[558]},{"name":"MD_ERROR_SUB403_PASSPORT_LOGIN_FAILURE","features":[558]},{"name":"MD_ERROR_SUB403_PWD_CHANGE","features":[558]},{"name":"MD_ERROR_SUB403_READ_ACCESS_DENIED","features":[558]},{"name":"MD_ERROR_SUB403_SITE_ACCESS_DENIED","features":[558]},{"name":"MD_ERROR_SUB403_SOURCE_ACCESS_DENIED","features":[558]},{"name":"MD_ERROR_SUB403_SSL128_REQUIRED","features":[558]},{"name":"MD_ERROR_SUB403_SSL_REQUIRED","features":[558]},{"name":"MD_ERROR_SUB403_TOO_MANY_USERS","features":[558]},{"name":"MD_ERROR_SUB403_VALIDATION_FAILURE","features":[558]},{"name":"MD_ERROR_SUB403_WRITE_ACCESS_DENIED","features":[558]},{"name":"MD_ERROR_SUB404_DENIED_BY_FILTERING_RULE","features":[558]},{"name":"MD_ERROR_SUB404_DENIED_BY_MIMEMAP","features":[558]},{"name":"MD_ERROR_SUB404_DENIED_BY_POLICY","features":[558]},{"name":"MD_ERROR_SUB404_FILE_ATTRIBUTE_HIDDEN","features":[558]},{"name":"MD_ERROR_SUB404_FILE_EXTENSION_DENIED","features":[558]},{"name":"MD_ERROR_SUB404_HIDDEN_SEGMENT","features":[558]},{"name":"MD_ERROR_SUB404_NO_HANDLER","features":[558]},{"name":"MD_ERROR_SUB404_PRECONDITIONED_HANDLER","features":[558]},{"name":"MD_ERROR_SUB404_QUERY_STRING_SEQUENCE_DENIED","features":[558]},{"name":"MD_ERROR_SUB404_QUERY_STRING_TOO_LONG","features":[558]},{"name":"MD_ERROR_SUB404_SITE_NOT_FOUND","features":[558]},{"name":"MD_ERROR_SUB404_STATICFILE_DAV","features":[558]},{"name":"MD_ERROR_SUB404_TOO_MANY_URL_SEGMENTS","features":[558]},{"name":"MD_ERROR_SUB404_URL_DOUBLE_ESCAPED","features":[558]},{"name":"MD_ERROR_SUB404_URL_HAS_HIGH_BIT_CHARS","features":[558]},{"name":"MD_ERROR_SUB404_URL_SEQUENCE_DENIED","features":[558]},{"name":"MD_ERROR_SUB404_URL_TOO_LONG","features":[558]},{"name":"MD_ERROR_SUB404_VERB_DENIED","features":[558]},{"name":"MD_ERROR_SUB413_CONTENT_LENGTH_TOO_LARGE","features":[558]},{"name":"MD_ERROR_SUB423_LOCK_TOKEN_SUBMITTED","features":[558]},{"name":"MD_ERROR_SUB423_NO_CONFLICTING_LOCK","features":[558]},{"name":"MD_ERROR_SUB500_ASPNET_HANDLERS","features":[558]},{"name":"MD_ERROR_SUB500_ASPNET_IMPERSONATION","features":[558]},{"name":"MD_ERROR_SUB500_ASPNET_MODULES","features":[558]},{"name":"MD_ERROR_SUB500_BAD_METADATA","features":[558]},{"name":"MD_ERROR_SUB500_HANDLERS_MODULE","features":[558]},{"name":"MD_ERROR_SUB500_UNC_ACCESS","features":[558]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_SCOPE","features":[558]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_STORE","features":[558]},{"name":"MD_ERROR_SUB500_URLAUTH_STORE_ERROR","features":[558]},{"name":"MD_ERROR_SUB502_ARR_CONNECTION_ERROR","features":[558]},{"name":"MD_ERROR_SUB502_ARR_NO_SERVER","features":[558]},{"name":"MD_ERROR_SUB502_PREMATURE_EXIT","features":[558]},{"name":"MD_ERROR_SUB502_TIMEOUT","features":[558]},{"name":"MD_ERROR_SUB503_APP_CONCURRENT","features":[558]},{"name":"MD_ERROR_SUB503_ASPNET_QUEUE_FULL","features":[558]},{"name":"MD_ERROR_SUB503_CONNECTION_LIMIT","features":[558]},{"name":"MD_ERROR_SUB503_CPU_LIMIT","features":[558]},{"name":"MD_ERROR_SUB503_FASTCGI_QUEUE_FULL","features":[558]},{"name":"MD_EXIT_MESSAGE","features":[558]},{"name":"MD_EXPORT_INHERITED","features":[558]},{"name":"MD_EXPORT_NODE_ONLY","features":[558]},{"name":"MD_EXTLOG_BYTES_RECV","features":[558]},{"name":"MD_EXTLOG_BYTES_SENT","features":[558]},{"name":"MD_EXTLOG_CLIENT_IP","features":[558]},{"name":"MD_EXTLOG_COMPUTER_NAME","features":[558]},{"name":"MD_EXTLOG_COOKIE","features":[558]},{"name":"MD_EXTLOG_DATE","features":[558]},{"name":"MD_EXTLOG_HOST","features":[558]},{"name":"MD_EXTLOG_HTTP_STATUS","features":[558]},{"name":"MD_EXTLOG_HTTP_SUB_STATUS","features":[558]},{"name":"MD_EXTLOG_METHOD","features":[558]},{"name":"MD_EXTLOG_PROTOCOL_VERSION","features":[558]},{"name":"MD_EXTLOG_REFERER","features":[558]},{"name":"MD_EXTLOG_SERVER_IP","features":[558]},{"name":"MD_EXTLOG_SERVER_PORT","features":[558]},{"name":"MD_EXTLOG_SITE_NAME","features":[558]},{"name":"MD_EXTLOG_TIME","features":[558]},{"name":"MD_EXTLOG_TIME_TAKEN","features":[558]},{"name":"MD_EXTLOG_URI_QUERY","features":[558]},{"name":"MD_EXTLOG_URI_STEM","features":[558]},{"name":"MD_EXTLOG_USERNAME","features":[558]},{"name":"MD_EXTLOG_USER_AGENT","features":[558]},{"name":"MD_EXTLOG_WIN32_STATUS","features":[558]},{"name":"MD_FILTER_DESCRIPTION","features":[558]},{"name":"MD_FILTER_ENABLED","features":[558]},{"name":"MD_FILTER_ENABLE_CACHE","features":[558]},{"name":"MD_FILTER_FLAGS","features":[558]},{"name":"MD_FILTER_IMAGE_PATH","features":[558]},{"name":"MD_FILTER_LOAD_ORDER","features":[558]},{"name":"MD_FILTER_STATE","features":[558]},{"name":"MD_FILTER_STATE_LOADED","features":[558]},{"name":"MD_FILTER_STATE_UNLOADED","features":[558]},{"name":"MD_FOOTER_DOCUMENT","features":[558]},{"name":"MD_FOOTER_ENABLED","features":[558]},{"name":"MD_FRONTPAGE_WEB","features":[558]},{"name":"MD_FTPS_128_BITS","features":[558]},{"name":"MD_FTPS_ALLOW_CCC","features":[558]},{"name":"MD_FTPS_SECURE_ANONYMOUS","features":[558]},{"name":"MD_FTPS_SECURE_CONTROL_CHANNEL","features":[558]},{"name":"MD_FTPS_SECURE_DATA_CHANNEL","features":[558]},{"name":"MD_FTP_KEEP_PARTIAL_UPLOADS","features":[558]},{"name":"MD_FTP_LOG_IN_UTF_8","features":[558]},{"name":"MD_FTP_PASV_RESPONSE_IP","features":[558]},{"name":"MD_FTP_UTF8_FILE_NAMES","features":[558]},{"name":"MD_GLOBAL_BINARY_LOGGING_ENABLED","features":[558]},{"name":"MD_GLOBAL_BINSCHEMATIMESTAMP","features":[558]},{"name":"MD_GLOBAL_CHANGE_NUMBER","features":[558]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MAJOR_VERSION_NUMBER","features":[558]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MINOR_VERSION_NUMBER","features":[558]},{"name":"MD_GLOBAL_LOG_IN_UTF_8","features":[558]},{"name":"MD_GLOBAL_SESSIONKEY","features":[558]},{"name":"MD_GLOBAL_STANDARD_APP_MODE_ENABLED","features":[558]},{"name":"MD_GLOBAL_XMLSCHEMATIMESTAMP","features":[558]},{"name":"MD_GREETING_MESSAGE","features":[558]},{"name":"MD_HC_CACHE_CONTROL_HEADER","features":[558]},{"name":"MD_HC_COMPRESSION_BUFFER_SIZE","features":[558]},{"name":"MD_HC_COMPRESSION_DIRECTORY","features":[558]},{"name":"MD_HC_COMPRESSION_DLL","features":[558]},{"name":"MD_HC_CREATE_FLAGS","features":[558]},{"name":"MD_HC_DO_DISK_SPACE_LIMITING","features":[558]},{"name":"MD_HC_DO_DYNAMIC_COMPRESSION","features":[558]},{"name":"MD_HC_DO_NAMESPACE_DYNAMIC_COMPRESSION","features":[558]},{"name":"MD_HC_DO_NAMESPACE_STATIC_COMPRESSION","features":[558]},{"name":"MD_HC_DO_ON_DEMAND_COMPRESSION","features":[558]},{"name":"MD_HC_DO_STATIC_COMPRESSION","features":[558]},{"name":"MD_HC_DYNAMIC_COMPRESSION_LEVEL","features":[558]},{"name":"MD_HC_EXPIRES_HEADER","features":[558]},{"name":"MD_HC_FILES_DELETED_PER_DISK_FREE","features":[558]},{"name":"MD_HC_FILE_EXTENSIONS","features":[558]},{"name":"MD_HC_IO_BUFFER_SIZE","features":[558]},{"name":"MD_HC_MAX_DISK_SPACE_USAGE","features":[558]},{"name":"MD_HC_MAX_QUEUE_LENGTH","features":[558]},{"name":"MD_HC_MIME_TYPE","features":[558]},{"name":"MD_HC_MIN_FILE_SIZE_FOR_COMP","features":[558]},{"name":"MD_HC_NO_COMPRESSION_FOR_HTTP_10","features":[558]},{"name":"MD_HC_NO_COMPRESSION_FOR_PROXIES","features":[558]},{"name":"MD_HC_NO_COMPRESSION_FOR_RANGE","features":[558]},{"name":"MD_HC_ON_DEMAND_COMP_LEVEL","features":[558]},{"name":"MD_HC_PRIORITY","features":[558]},{"name":"MD_HC_SCRIPT_FILE_EXTENSIONS","features":[558]},{"name":"MD_HC_SEND_CACHE_HEADERS","features":[558]},{"name":"MD_HEADER_WAIT_TIMEOUT","features":[558]},{"name":"MD_HISTORY_LATEST","features":[558]},{"name":"MD_HTTPERRORS_EXISTING_RESPONSE","features":[558]},{"name":"MD_HTTP_CUSTOM","features":[558]},{"name":"MD_HTTP_EXPIRES","features":[558]},{"name":"MD_HTTP_FORWARDER_CUSTOM","features":[558]},{"name":"MD_HTTP_PICS","features":[558]},{"name":"MD_HTTP_REDIRECT","features":[558]},{"name":"MD_IISADMIN_EXTENSIONS","features":[558]},{"name":"MD_IMPORT_INHERITED","features":[558]},{"name":"MD_IMPORT_MERGE","features":[558]},{"name":"MD_IMPORT_NODE_ONLY","features":[558]},{"name":"MD_INSERT_PATH_STRING","features":[558]},{"name":"MD_INSERT_PATH_STRINGA","features":[558]},{"name":"MD_IN_PROCESS_ISAPI_APPS","features":[558]},{"name":"MD_IP_SEC","features":[558]},{"name":"MD_ISAPI_RESTRICTION_LIST","features":[558]},{"name":"MD_IS_CONTENT_INDEXED","features":[558]},{"name":"MD_KEY_TYPE","features":[558]},{"name":"MD_LEVELS_TO_SCAN","features":[558]},{"name":"MD_LOAD_BALANCER_CAPABILITIES","features":[558]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_BASIC","features":[558]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_SOPHISTICATED","features":[558]},{"name":"MD_LOCATION","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_DOUBLE","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_FLOAT","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_INT","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_LONG","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_LPSTR","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_LPWSTR","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_UINT","features":[558]},{"name":"MD_LOGCUSTOM_DATATYPE_ULONG","features":[558]},{"name":"MD_LOGCUSTOM_PROPERTY_DATATYPE","features":[558]},{"name":"MD_LOGCUSTOM_PROPERTY_HEADER","features":[558]},{"name":"MD_LOGCUSTOM_PROPERTY_ID","features":[558]},{"name":"MD_LOGCUSTOM_PROPERTY_MASK","features":[558]},{"name":"MD_LOGCUSTOM_PROPERTY_NAME","features":[558]},{"name":"MD_LOGCUSTOM_PROPERTY_NODE_ID","features":[558]},{"name":"MD_LOGCUSTOM_SERVICES_STRING","features":[558]},{"name":"MD_LOGEXT_FIELD_MASK","features":[558]},{"name":"MD_LOGEXT_FIELD_MASK2","features":[558]},{"name":"MD_LOGFILE_DIRECTORY","features":[558]},{"name":"MD_LOGFILE_LOCALTIME_ROLLOVER","features":[558]},{"name":"MD_LOGFILE_PERIOD","features":[558]},{"name":"MD_LOGFILE_PERIOD_DAILY","features":[558]},{"name":"MD_LOGFILE_PERIOD_HOURLY","features":[558]},{"name":"MD_LOGFILE_PERIOD_MAXSIZE","features":[558]},{"name":"MD_LOGFILE_PERIOD_MONTHLY","features":[558]},{"name":"MD_LOGFILE_PERIOD_NONE","features":[558]},{"name":"MD_LOGFILE_PERIOD_WEEKLY","features":[558]},{"name":"MD_LOGFILE_TRUNCATE_SIZE","features":[558]},{"name":"MD_LOGON_BATCH","features":[558]},{"name":"MD_LOGON_INTERACTIVE","features":[558]},{"name":"MD_LOGON_METHOD","features":[558]},{"name":"MD_LOGON_NETWORK","features":[558]},{"name":"MD_LOGON_NETWORK_CLEARTEXT","features":[558]},{"name":"MD_LOGSQL_DATA_SOURCES","features":[558]},{"name":"MD_LOGSQL_PASSWORD","features":[558]},{"name":"MD_LOGSQL_TABLE_NAME","features":[558]},{"name":"MD_LOGSQL_USER_NAME","features":[558]},{"name":"MD_LOG_ANONYMOUS","features":[558]},{"name":"MD_LOG_NONANONYMOUS","features":[558]},{"name":"MD_LOG_PLUGINS_AVAILABLE","features":[558]},{"name":"MD_LOG_PLUGIN_MOD_ID","features":[558]},{"name":"MD_LOG_PLUGIN_ORDER","features":[558]},{"name":"MD_LOG_PLUGIN_UI_ID","features":[558]},{"name":"MD_LOG_TYPE","features":[558]},{"name":"MD_LOG_TYPE_DISABLED","features":[558]},{"name":"MD_LOG_TYPE_ENABLED","features":[558]},{"name":"MD_LOG_UNUSED1","features":[558]},{"name":"MD_MAX_BANDWIDTH","features":[558]},{"name":"MD_MAX_BANDWIDTH_BLOCKED","features":[558]},{"name":"MD_MAX_CHANGE_ENTRIES","features":[558]},{"name":"MD_MAX_CLIENTS_MESSAGE","features":[558]},{"name":"MD_MAX_CONNECTIONS","features":[558]},{"name":"MD_MAX_ENDPOINT_CONNECTIONS","features":[558]},{"name":"MD_MAX_ERROR_FILES","features":[558]},{"name":"MD_MAX_GLOBAL_BANDWIDTH","features":[558]},{"name":"MD_MAX_GLOBAL_CONNECTIONS","features":[558]},{"name":"MD_MAX_REQUEST_ENTITY_ALLOWED","features":[558]},{"name":"MD_MD_SERVER_SS_AUTH_MAPPING","features":[558]},{"name":"MD_METADATA_ID_REGISTRATION","features":[558]},{"name":"MD_MIME_MAP","features":[558]},{"name":"MD_MIN_FILE_BYTES_PER_SEC","features":[558]},{"name":"MD_MSDOS_DIR_OUTPUT","features":[558]},{"name":"MD_NETLOGON_WKS_DNS","features":[558]},{"name":"MD_NETLOGON_WKS_IP","features":[558]},{"name":"MD_NETLOGON_WKS_NONE","features":[558]},{"name":"MD_NET_LOGON_WKS","features":[558]},{"name":"MD_NOTIFEXAUTH_NTLMSSL","features":[558]},{"name":"MD_NOTIFY_ACCESS_DENIED","features":[558]},{"name":"MD_NOTIFY_AUTHENTICATION","features":[558]},{"name":"MD_NOTIFY_AUTH_COMPLETE","features":[558]},{"name":"MD_NOTIFY_END_OF_NET_SESSION","features":[558]},{"name":"MD_NOTIFY_END_OF_REQUEST","features":[558]},{"name":"MD_NOTIFY_LOG","features":[558]},{"name":"MD_NOTIFY_NONSECURE_PORT","features":[558]},{"name":"MD_NOTIFY_ORDER_DEFAULT","features":[558]},{"name":"MD_NOTIFY_ORDER_HIGH","features":[558]},{"name":"MD_NOTIFY_ORDER_LOW","features":[558]},{"name":"MD_NOTIFY_ORDER_MEDIUM","features":[558]},{"name":"MD_NOTIFY_PREPROC_HEADERS","features":[558]},{"name":"MD_NOTIFY_READ_RAW_DATA","features":[558]},{"name":"MD_NOTIFY_SECURE_PORT","features":[558]},{"name":"MD_NOTIFY_SEND_RAW_DATA","features":[558]},{"name":"MD_NOTIFY_SEND_RESPONSE","features":[558]},{"name":"MD_NOTIFY_URL_MAP","features":[558]},{"name":"MD_NOT_DELETABLE","features":[558]},{"name":"MD_NTAUTHENTICATION_PROVIDERS","features":[558]},{"name":"MD_PASSIVE_PORT_RANGE","features":[558]},{"name":"MD_PASSPORT_NEED_MAPPING","features":[558]},{"name":"MD_PASSPORT_NO_MAPPING","features":[558]},{"name":"MD_PASSPORT_REQUIRE_AD_MAPPING","features":[558]},{"name":"MD_PASSPORT_TRY_MAPPING","features":[558]},{"name":"MD_POOL_IDC_TIMEOUT","features":[558]},{"name":"MD_PROCESS_NTCR_IF_LOGGED_ON","features":[558]},{"name":"MD_PUT_READ_SIZE","features":[558]},{"name":"MD_RAPID_FAIL_PROTECTION_INTERVAL","features":[558]},{"name":"MD_RAPID_FAIL_PROTECTION_MAX_CRASHES","features":[558]},{"name":"MD_REALM","features":[558]},{"name":"MD_REDIRECT_HEADERS","features":[558]},{"name":"MD_RESTRICTION_LIST_CUSTOM_DESC","features":[558]},{"name":"MD_ROOT_ENABLE_EDIT_WHILE_RUNNING","features":[558]},{"name":"MD_ROOT_ENABLE_HISTORY","features":[558]},{"name":"MD_ROOT_MAX_HISTORY_FILES","features":[558]},{"name":"MD_SCHEMA_METAID","features":[558]},{"name":"MD_SCRIPTMAPFLAG_ALLOWED_ON_READ_DIR","features":[558]},{"name":"MD_SCRIPTMAPFLAG_CHECK_PATH_INFO","features":[558]},{"name":"MD_SCRIPTMAPFLAG_SCRIPT","features":[558]},{"name":"MD_SCRIPT_MAPS","features":[558]},{"name":"MD_SCRIPT_TIMEOUT","features":[558]},{"name":"MD_SECURE_BINDINGS","features":[558]},{"name":"MD_SECURITY_SETUP_REQUIRED","features":[558]},{"name":"MD_SERVER_AUTOSTART","features":[558]},{"name":"MD_SERVER_BINDINGS","features":[558]},{"name":"MD_SERVER_COMMAND","features":[558]},{"name":"MD_SERVER_COMMAND_CONTINUE","features":[558]},{"name":"MD_SERVER_COMMAND_PAUSE","features":[558]},{"name":"MD_SERVER_COMMAND_START","features":[558]},{"name":"MD_SERVER_COMMAND_STOP","features":[558]},{"name":"MD_SERVER_COMMENT","features":[558]},{"name":"MD_SERVER_CONFIGURATION_INFO","features":[558]},{"name":"MD_SERVER_CONFIG_ALLOW_ENCRYPT","features":[558]},{"name":"MD_SERVER_CONFIG_AUTO_PW_SYNC","features":[558]},{"name":"MD_SERVER_CONFIG_SSL_128","features":[558]},{"name":"MD_SERVER_CONFIG_SSL_40","features":[558]},{"name":"MD_SERVER_LISTEN_BACKLOG","features":[558]},{"name":"MD_SERVER_LISTEN_TIMEOUT","features":[558]},{"name":"MD_SERVER_SIZE","features":[558]},{"name":"MD_SERVER_SIZE_LARGE","features":[558]},{"name":"MD_SERVER_SIZE_MEDIUM","features":[558]},{"name":"MD_SERVER_SIZE_SMALL","features":[558]},{"name":"MD_SERVER_STATE","features":[558]},{"name":"MD_SERVER_STATE_CONTINUING","features":[558]},{"name":"MD_SERVER_STATE_PAUSED","features":[558]},{"name":"MD_SERVER_STATE_PAUSING","features":[558]},{"name":"MD_SERVER_STATE_STARTED","features":[558]},{"name":"MD_SERVER_STATE_STARTING","features":[558]},{"name":"MD_SERVER_STATE_STOPPED","features":[558]},{"name":"MD_SERVER_STATE_STOPPING","features":[558]},{"name":"MD_SET_HOST_NAME","features":[558]},{"name":"MD_SHOW_4_DIGIT_YEAR","features":[558]},{"name":"MD_SSI_EXEC_DISABLED","features":[558]},{"name":"MD_SSL_ACCESS_PERM","features":[558]},{"name":"MD_SSL_ALWAYS_NEGO_CLIENT_CERT","features":[558]},{"name":"MD_SSL_KEY_PASSWORD","features":[558]},{"name":"MD_SSL_KEY_REQUEST","features":[558]},{"name":"MD_SSL_PRIVATE_KEY","features":[558]},{"name":"MD_SSL_PUBLIC_KEY","features":[558]},{"name":"MD_SSL_USE_DS_MAPPER","features":[558]},{"name":"MD_STOP_LISTENING","features":[558]},{"name":"MD_SUPPRESS_DEFAULT_BANNER","features":[558]},{"name":"MD_UPLOAD_READAHEAD_SIZE","features":[558]},{"name":"MD_URL_AUTHORIZATION_IMPERSONATION_LEVEL","features":[558]},{"name":"MD_URL_AUTHORIZATION_SCOPE_NAME","features":[558]},{"name":"MD_URL_AUTHORIZATION_STORE_NAME","features":[558]},{"name":"MD_USER_ISOLATION","features":[558]},{"name":"MD_USER_ISOLATION_AD","features":[558]},{"name":"MD_USER_ISOLATION_BASIC","features":[558]},{"name":"MD_USER_ISOLATION_LAST","features":[558]},{"name":"MD_USER_ISOLATION_NONE","features":[558]},{"name":"MD_USE_DIGEST_SSP","features":[558]},{"name":"MD_USE_HOST_NAME","features":[558]},{"name":"MD_VR_IGNORE_TRANSLATE","features":[558]},{"name":"MD_VR_NO_CACHE","features":[558]},{"name":"MD_VR_PASSTHROUGH","features":[558]},{"name":"MD_VR_PASSWORD","features":[558]},{"name":"MD_VR_PATH","features":[558]},{"name":"MD_VR_USERNAME","features":[558]},{"name":"MD_WAM_PWD","features":[558]},{"name":"MD_WAM_USER_NAME","features":[558]},{"name":"MD_WARNING_DUP_NAME","features":[558]},{"name":"MD_WARNING_INVALID_DATA","features":[558]},{"name":"MD_WARNING_PATH_NOT_FOUND","features":[558]},{"name":"MD_WARNING_PATH_NOT_INSERTED","features":[558]},{"name":"MD_WARNING_SAVE_FAILED","features":[558]},{"name":"MD_WEBDAV_MAX_ATTRIBUTES_PER_ELEMENT","features":[558]},{"name":"MD_WEB_SVC_EXT_RESTRICTION_LIST","features":[558]},{"name":"MD_WIN32_ERROR","features":[558]},{"name":"METADATATYPES","features":[558]},{"name":"METADATA_DONT_EXPAND","features":[558]},{"name":"METADATA_GETALL_INTERNAL_RECORD","features":[558]},{"name":"METADATA_GETALL_RECORD","features":[558]},{"name":"METADATA_HANDLE_INFO","features":[558]},{"name":"METADATA_INHERIT","features":[558]},{"name":"METADATA_INSERT_PATH","features":[558]},{"name":"METADATA_ISINHERITED","features":[558]},{"name":"METADATA_LOCAL_MACHINE_ONLY","features":[558]},{"name":"METADATA_MASTER_ROOT_HANDLE","features":[558]},{"name":"METADATA_MAX_NAME_LEN","features":[558]},{"name":"METADATA_NON_SECURE_ONLY","features":[558]},{"name":"METADATA_NO_ATTRIBUTES","features":[558]},{"name":"METADATA_PARTIAL_PATH","features":[558]},{"name":"METADATA_PERMISSION_READ","features":[558]},{"name":"METADATA_PERMISSION_WRITE","features":[558]},{"name":"METADATA_RECORD","features":[558]},{"name":"METADATA_REFERENCE","features":[558]},{"name":"METADATA_SECURE","features":[558]},{"name":"METADATA_VOLATILE","features":[558]},{"name":"MSCS_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"MSCS_MD_ID_END_RESERVED","features":[558]},{"name":"MULTISZ_METADATA","features":[558]},{"name":"NNTP_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"NNTP_MD_ID_END_RESERVED","features":[558]},{"name":"PFN_GETEXTENSIONVERSION","features":[303,558]},{"name":"PFN_HSE_CACHE_INVALIDATION_CALLBACK","features":[558]},{"name":"PFN_HSE_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[558]},{"name":"PFN_HSE_IO_COMPLETION","features":[303,558]},{"name":"PFN_HTTPEXTENSIONPROC","features":[303,558]},{"name":"PFN_IIS_GETSERVERVARIABLE","features":[303,558]},{"name":"PFN_IIS_READCLIENT","features":[303,558]},{"name":"PFN_IIS_SERVERSUPPORTFUNCTION","features":[303,558]},{"name":"PFN_IIS_WRITECLIENT","features":[303,558]},{"name":"PFN_TERMINATEEXTENSION","features":[303,558]},{"name":"PFN_WEB_CORE_ACTIVATE","features":[558]},{"name":"PFN_WEB_CORE_SET_METADATA_DLL_ENTRY","features":[558]},{"name":"PFN_WEB_CORE_SHUTDOWN","features":[558]},{"name":"POP3_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"POP3_MD_ID_END_RESERVED","features":[558]},{"name":"POST_PROCESS_PARAMETERS","features":[303,558]},{"name":"PRE_PROCESS_PARAMETERS","features":[303,558]},{"name":"SF_DENIED_APPLICATION","features":[558]},{"name":"SF_DENIED_BY_CONFIG","features":[558]},{"name":"SF_DENIED_FILTER","features":[558]},{"name":"SF_DENIED_LOGON","features":[558]},{"name":"SF_DENIED_RESOURCE","features":[558]},{"name":"SF_MAX_AUTH_TYPE","features":[558]},{"name":"SF_MAX_FILTER_DESC_LEN","features":[558]},{"name":"SF_MAX_PASSWORD","features":[558]},{"name":"SF_MAX_USERNAME","features":[558]},{"name":"SF_NOTIFY_ACCESS_DENIED","features":[558]},{"name":"SF_NOTIFY_AUTHENTICATION","features":[558]},{"name":"SF_NOTIFY_AUTH_COMPLETE","features":[558]},{"name":"SF_NOTIFY_END_OF_NET_SESSION","features":[558]},{"name":"SF_NOTIFY_END_OF_REQUEST","features":[558]},{"name":"SF_NOTIFY_LOG","features":[558]},{"name":"SF_NOTIFY_NONSECURE_PORT","features":[558]},{"name":"SF_NOTIFY_ORDER_DEFAULT","features":[558]},{"name":"SF_NOTIFY_ORDER_HIGH","features":[558]},{"name":"SF_NOTIFY_ORDER_LOW","features":[558]},{"name":"SF_NOTIFY_ORDER_MEDIUM","features":[558]},{"name":"SF_NOTIFY_PREPROC_HEADERS","features":[558]},{"name":"SF_NOTIFY_READ_RAW_DATA","features":[558]},{"name":"SF_NOTIFY_SECURE_PORT","features":[558]},{"name":"SF_NOTIFY_SEND_RAW_DATA","features":[558]},{"name":"SF_NOTIFY_SEND_RESPONSE","features":[558]},{"name":"SF_NOTIFY_URL_MAP","features":[558]},{"name":"SF_PROPERTY_IIS","features":[558]},{"name":"SF_PROPERTY_INSTANCE_NUM_ID","features":[558]},{"name":"SF_PROPERTY_SSL_CTXT","features":[558]},{"name":"SF_REQ_ADD_HEADERS_ON_DENIAL","features":[558]},{"name":"SF_REQ_DISABLE_NOTIFICATIONS","features":[558]},{"name":"SF_REQ_GET_CONNID","features":[558]},{"name":"SF_REQ_GET_PROPERTY","features":[558]},{"name":"SF_REQ_NORMALIZE_URL","features":[558]},{"name":"SF_REQ_SEND_RESPONSE_HEADER","features":[558]},{"name":"SF_REQ_SET_CERTIFICATE_INFO","features":[558]},{"name":"SF_REQ_SET_NEXT_READ_SIZE","features":[558]},{"name":"SF_REQ_SET_PROXY_INFO","features":[558]},{"name":"SF_REQ_TYPE","features":[558]},{"name":"SF_STATUS_REQ_ERROR","features":[558]},{"name":"SF_STATUS_REQ_FINISHED","features":[558]},{"name":"SF_STATUS_REQ_FINISHED_KEEP_CONN","features":[558]},{"name":"SF_STATUS_REQ_HANDLED_NOTIFICATION","features":[558]},{"name":"SF_STATUS_REQ_NEXT_NOTIFICATION","features":[558]},{"name":"SF_STATUS_REQ_READ_NEXT","features":[558]},{"name":"SF_STATUS_TYPE","features":[558]},{"name":"SMTP_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"SMTP_MD_ID_END_RESERVED","features":[558]},{"name":"STRING_METADATA","features":[558]},{"name":"USER_MD_ID_BASE_RESERVED","features":[558]},{"name":"WAM_MD_ID_BEGIN_RESERVED","features":[558]},{"name":"WAM_MD_ID_END_RESERVED","features":[558]},{"name":"WAM_MD_SERVER_BASE","features":[558]},{"name":"WEBDAV_MD_SERVER_BASE","features":[558]},{"name":"WEB_CORE_ACTIVATE_DLL_ENTRY","features":[558]},{"name":"WEB_CORE_DLL_NAME","features":[558]},{"name":"WEB_CORE_SET_METADATA_DLL_ENTRY","features":[558]},{"name":"WEB_CORE_SHUTDOWN_DLL_ENTRY","features":[558]}],"573":[{"name":"ABL_5_WO","features":[323]},{"name":"ADR_1","features":[323]},{"name":"ADR_2","features":[323]},{"name":"AIT1_8mm","features":[323]},{"name":"AIT_8mm","features":[323]},{"name":"AME_8mm","features":[323]},{"name":"ASSERT_ALTERNATE","features":[323]},{"name":"ASSERT_PRIMARY","features":[323]},{"name":"ASYNC_DUPLICATE_EXTENTS_STATUS","features":[323]},{"name":"ATAPI_ID_CMD","features":[323]},{"name":"AVATAR_F2","features":[323]},{"name":"AllElements","features":[323]},{"name":"AtaDataTypeIdentify","features":[323]},{"name":"AtaDataTypeLogPage","features":[323]},{"name":"AtaDataTypeUnknown","features":[323]},{"name":"BIN_COUNT","features":[323]},{"name":"BIN_RANGE","features":[323]},{"name":"BIN_RESULTS","features":[323]},{"name":"BIN_TYPES","features":[323]},{"name":"BOOT_AREA_INFO","features":[323]},{"name":"BULK_SECURITY_TEST_DATA","features":[323]},{"name":"CAP_ATAPI_ID_CMD","features":[323]},{"name":"CAP_ATA_ID_CMD","features":[323]},{"name":"CAP_SMART_CMD","features":[323]},{"name":"CDB_SIZE","features":[323]},{"name":"CD_R","features":[323]},{"name":"CD_ROM","features":[323]},{"name":"CD_RW","features":[323]},{"name":"CHANGER_BAR_CODE_SCANNER_INSTALLED","features":[323]},{"name":"CHANGER_CARTRIDGE_MAGAZINE","features":[323]},{"name":"CHANGER_CLEANER_ACCESS_NOT_VALID","features":[323]},{"name":"CHANGER_CLEANER_AUTODISMOUNT","features":[323]},{"name":"CHANGER_CLEANER_OPS_NOT_SUPPORTED","features":[323]},{"name":"CHANGER_CLEANER_SLOT","features":[323]},{"name":"CHANGER_CLOSE_IEPORT","features":[323]},{"name":"CHANGER_DEVICE_PROBLEM_TYPE","features":[323]},{"name":"CHANGER_DEVICE_REINITIALIZE_CAPABLE","features":[323]},{"name":"CHANGER_DRIVE_CLEANING_REQUIRED","features":[323]},{"name":"CHANGER_DRIVE_EMPTY_ON_DOOR_ACCESS","features":[323]},{"name":"CHANGER_ELEMENT","features":[323]},{"name":"CHANGER_ELEMENT_LIST","features":[323]},{"name":"CHANGER_ELEMENT_STATUS","features":[323]},{"name":"CHANGER_ELEMENT_STATUS_EX","features":[323]},{"name":"CHANGER_ELEMENT_STATUS_FLAGS","features":[323]},{"name":"CHANGER_EXCHANGE_MEDIA","features":[323]},{"name":"CHANGER_EXCHANGE_MEDIUM","features":[303,323]},{"name":"CHANGER_FEATURES","features":[323]},{"name":"CHANGER_IEPORT_USER_CONTROL_CLOSE","features":[323]},{"name":"CHANGER_IEPORT_USER_CONTROL_OPEN","features":[323]},{"name":"CHANGER_INITIALIZE_ELEMENT_STATUS","features":[303,323]},{"name":"CHANGER_INIT_ELEM_STAT_WITH_RANGE","features":[323]},{"name":"CHANGER_KEYPAD_ENABLE_DISABLE","features":[323]},{"name":"CHANGER_LOCK_UNLOCK","features":[323]},{"name":"CHANGER_MEDIUM_FLIP","features":[323]},{"name":"CHANGER_MOVE_EXTENDS_IEPORT","features":[323]},{"name":"CHANGER_MOVE_MEDIUM","features":[303,323]},{"name":"CHANGER_MOVE_RETRACTS_IEPORT","features":[323]},{"name":"CHANGER_OPEN_IEPORT","features":[323]},{"name":"CHANGER_POSITION_TO_ELEMENT","features":[323]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_DRIVE","features":[323]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_SLOT","features":[323]},{"name":"CHANGER_PREDISMOUNT_EJECT_REQUIRED","features":[323]},{"name":"CHANGER_PREMOUNT_EJECT_REQUIRED","features":[323]},{"name":"CHANGER_PRODUCT_DATA","features":[323]},{"name":"CHANGER_READ_ELEMENT_STATUS","features":[303,323]},{"name":"CHANGER_REPORT_IEPORT_STATE","features":[323]},{"name":"CHANGER_RESERVED_BIT","features":[323]},{"name":"CHANGER_RTN_MEDIA_TO_ORIGINAL_ADDR","features":[323]},{"name":"CHANGER_SEND_VOLUME_TAG_INFORMATION","features":[323]},{"name":"CHANGER_SERIAL_NUMBER_VALID","features":[323]},{"name":"CHANGER_SET_ACCESS","features":[323]},{"name":"CHANGER_SET_POSITION","features":[303,323]},{"name":"CHANGER_SLOTS_USE_TRAYS","features":[323]},{"name":"CHANGER_STATUS_NON_VOLATILE","features":[323]},{"name":"CHANGER_STORAGE_DRIVE","features":[323]},{"name":"CHANGER_STORAGE_IEPORT","features":[323]},{"name":"CHANGER_STORAGE_SLOT","features":[323]},{"name":"CHANGER_STORAGE_TRANSPORT","features":[323]},{"name":"CHANGER_TO_DRIVE","features":[323]},{"name":"CHANGER_TO_IEPORT","features":[323]},{"name":"CHANGER_TO_SLOT","features":[323]},{"name":"CHANGER_TO_TRANSPORT","features":[323]},{"name":"CHANGER_TRUE_EXCHANGE_CAPABLE","features":[323]},{"name":"CHANGER_VOLUME_ASSERT","features":[323]},{"name":"CHANGER_VOLUME_IDENTIFICATION","features":[323]},{"name":"CHANGER_VOLUME_REPLACE","features":[323]},{"name":"CHANGER_VOLUME_SEARCH","features":[323]},{"name":"CHANGER_VOLUME_UNDEFINE","features":[323]},{"name":"CHECKSUM_TYPE_CRC32","features":[323]},{"name":"CHECKSUM_TYPE_CRC64","features":[323]},{"name":"CHECKSUM_TYPE_ECC","features":[323]},{"name":"CHECKSUM_TYPE_FIRST_UNUSED_TYPE","features":[323]},{"name":"CHECKSUM_TYPE_NONE","features":[323]},{"name":"CHECKSUM_TYPE_SHA256","features":[323]},{"name":"CLASS_MEDIA_CHANGE_CONTEXT","features":[323]},{"name":"CLEANER_CARTRIDGE","features":[323]},{"name":"CLUSTER_RANGE","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_DO_NOT_MAP_NAME","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_EXCEPTION_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_TARGET_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_LAYER_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_SCRATCH_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_UNION_LAYER_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_EXCEPTION_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_TARGET_ROOT","features":[323]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[323]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[323]},{"name":"CONTAINER_ROOT_INFO_VALID_FLAGS","features":[323]},{"name":"CONTAINER_VOLUME_STATE","features":[323]},{"name":"CONTAINER_VOLUME_STATE_HOSTING_CONTAINER","features":[323]},{"name":"COPYFILE_SIS_FLAGS","features":[323]},{"name":"COPYFILE_SIS_LINK","features":[323]},{"name":"COPYFILE_SIS_REPLACE","features":[323]},{"name":"CREATE_DISK","features":[323]},{"name":"CREATE_DISK_GPT","features":[323]},{"name":"CREATE_DISK_MBR","features":[323]},{"name":"CREATE_USN_JOURNAL_DATA","features":[323]},{"name":"CSVFS_DISK_CONNECTIVITY","features":[323]},{"name":"CSV_CONTROL_OP","features":[323]},{"name":"CSV_CONTROL_PARAM","features":[323]},{"name":"CSV_INVALID_DEVICE_NUMBER","features":[323]},{"name":"CSV_IS_OWNED_BY_CSVFS","features":[303,323]},{"name":"CSV_MGMTLOCK_CHECK_VOLUME_REDIRECTED","features":[323]},{"name":"CSV_MGMT_LOCK","features":[323]},{"name":"CSV_NAMESPACE_INFO","features":[323]},{"name":"CSV_QUERY_FILE_REVISION","features":[323]},{"name":"CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[322,323]},{"name":"CSV_QUERY_MDS_PATH","features":[323]},{"name":"CSV_QUERY_MDS_PATH_FLAG_CSV_DIRECT_IO_ENABLED","features":[323]},{"name":"CSV_QUERY_MDS_PATH_FLAG_SMB_BYPASS_CSV_ENABLED","features":[323]},{"name":"CSV_QUERY_MDS_PATH_FLAG_STORAGE_ON_THIS_NODE_IS_CONNECTED","features":[323]},{"name":"CSV_QUERY_MDS_PATH_V2","features":[323]},{"name":"CSV_QUERY_MDS_PATH_V2_VERSION_1","features":[323]},{"name":"CSV_QUERY_REDIRECT_STATE","features":[303,323]},{"name":"CSV_QUERY_VETO_FILE_DIRECT_IO_OUTPUT","features":[323]},{"name":"CSV_QUERY_VOLUME_ID","features":[323]},{"name":"CSV_QUERY_VOLUME_REDIRECT_STATE","features":[303,323]},{"name":"CSV_SET_VOLUME_ID","features":[323]},{"name":"CYGNET_12_WO","features":[323]},{"name":"ChangerDoor","features":[323]},{"name":"ChangerDrive","features":[323]},{"name":"ChangerIEPort","features":[323]},{"name":"ChangerKeypad","features":[323]},{"name":"ChangerMaxElement","features":[323]},{"name":"ChangerSlot","features":[323]},{"name":"ChangerTransport","features":[323]},{"name":"CsvControlDisableCaching","features":[323]},{"name":"CsvControlEnableCaching","features":[323]},{"name":"CsvControlEnableUSNRangeModificationTracking","features":[323]},{"name":"CsvControlGetCsvFsMdsPathV2","features":[323]},{"name":"CsvControlMarkHandleLocalVolumeMount","features":[323]},{"name":"CsvControlQueryFileRevision","features":[323]},{"name":"CsvControlQueryFileRevisionFileId128","features":[323]},{"name":"CsvControlQueryMdsPath","features":[323]},{"name":"CsvControlQueryMdsPathNoPause","features":[323]},{"name":"CsvControlQueryRedirectState","features":[323]},{"name":"CsvControlQueryVolumeId","features":[323]},{"name":"CsvControlQueryVolumeRedirectState","features":[323]},{"name":"CsvControlSetVolumeId","features":[323]},{"name":"CsvControlStartForceDFO","features":[323]},{"name":"CsvControlStartRedirectFile","features":[323]},{"name":"CsvControlStopForceDFO","features":[323]},{"name":"CsvControlStopRedirectFile","features":[323]},{"name":"CsvControlUnmarkHandleLocalVolumeMount","features":[323]},{"name":"CsvFsDiskConnectivityAllNodes","features":[323]},{"name":"CsvFsDiskConnectivityMdsNodeOnly","features":[323]},{"name":"CsvFsDiskConnectivityNone","features":[323]},{"name":"CsvFsDiskConnectivitySubsetOfNodes","features":[323]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_FALLBACK_SPECIFIED","features":[323]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_MANDATORY","features":[323]},{"name":"DDS_4mm","features":[323]},{"name":"DDUMP_FLAG_DATA_READ_FROM_DEVICE","features":[323]},{"name":"DECRYPTION_STATUS_BUFFER","features":[303,323]},{"name":"DELETE_USN_JOURNAL_DATA","features":[323]},{"name":"DETECTION_TYPE","features":[323]},{"name":"DEVICEDUMP_CAP_PRIVATE_SECTION","features":[323]},{"name":"DEVICEDUMP_CAP_RESTRICTED_SECTION","features":[323]},{"name":"DEVICEDUMP_COLLECTION_TYPEIDE_NOTIFICATION_TYPE","features":[323]},{"name":"DEVICEDUMP_MAX_IDSTRING","features":[323]},{"name":"DEVICEDUMP_PRIVATE_SUBSECTION","features":[323]},{"name":"DEVICEDUMP_PUBLIC_SUBSECTION","features":[323]},{"name":"DEVICEDUMP_RESTRICTED_SUBSECTION","features":[323]},{"name":"DEVICEDUMP_SECTION_HEADER","features":[323]},{"name":"DEVICEDUMP_STORAGEDEVICE_DATA","features":[323]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_DUMP","features":[323]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_STATE_RECORD","features":[323]},{"name":"DEVICEDUMP_STRUCTURE_VERSION","features":[323]},{"name":"DEVICEDUMP_STRUCTURE_VERSION_V1","features":[323]},{"name":"DEVICEDUMP_SUBSECTION_POINTER","features":[323]},{"name":"DEVICE_COPY_OFFLOAD_DESCRIPTOR","features":[323]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS","features":[323]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS_VERSION_V1","features":[323]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE","features":[323]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE_V2","features":[323]},{"name":"DEVICE_DATA_SET_RANGE","features":[323]},{"name":"DEVICE_DATA_SET_REPAIR_OUTPUT","features":[323]},{"name":"DEVICE_DATA_SET_REPAIR_PARAMETERS","features":[323]},{"name":"DEVICE_DATA_SET_SCRUB_EX_OUTPUT","features":[323]},{"name":"DEVICE_DATA_SET_SCRUB_OUTPUT","features":[323]},{"name":"DEVICE_DATA_SET_TOPOLOGY_ID_QUERY_OUTPUT","features":[323]},{"name":"DEVICE_DSM_CONVERSION_OUTPUT","features":[323]},{"name":"DEVICE_DSM_DEFINITION","features":[303,323]},{"name":"DEVICE_DSM_FLAG_ALLOCATION_CONSOLIDATEABLE_ONLY","features":[323]},{"name":"DEVICE_DSM_FLAG_ENTIRE_DATA_SET_RANGE","features":[323]},{"name":"DEVICE_DSM_FLAG_PHYSICAL_ADDRESSES_OMIT_TOTAL_RANGES","features":[323]},{"name":"DEVICE_DSM_FLAG_REPAIR_INPUT_TOPOLOGY_ID_PRESENT","features":[323]},{"name":"DEVICE_DSM_FLAG_REPAIR_OUTPUT_PARITY_EXTENT","features":[323]},{"name":"DEVICE_DSM_FLAG_SCRUB_OUTPUT_PARITY_EXTENT","features":[323]},{"name":"DEVICE_DSM_FLAG_SCRUB_SKIP_IN_SYNC","features":[323]},{"name":"DEVICE_DSM_FLAG_TRIM_BYPASS_RZAT","features":[323]},{"name":"DEVICE_DSM_FLAG_TRIM_NOT_FS_ALLOCATED","features":[323]},{"name":"DEVICE_DSM_FREE_SPACE_OUTPUT","features":[323]},{"name":"DEVICE_DSM_LOST_QUERY_OUTPUT","features":[323]},{"name":"DEVICE_DSM_LOST_QUERY_PARAMETERS","features":[323]},{"name":"DEVICE_DSM_NOTIFICATION_PARAMETERS","features":[323]},{"name":"DEVICE_DSM_NOTIFY_FLAG_BEGIN","features":[323]},{"name":"DEVICE_DSM_NOTIFY_FLAG_END","features":[323]},{"name":"DEVICE_DSM_NVCACHE_CHANGE_PRIORITY_PARAMETERS","features":[323]},{"name":"DEVICE_DSM_OFFLOAD_READ_PARAMETERS","features":[323]},{"name":"DEVICE_DSM_OFFLOAD_WRITE_PARAMETERS","features":[323]},{"name":"DEVICE_DSM_PARAMETERS_V1","features":[323]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT","features":[323]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_V1","features":[323]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_VERSION_V1","features":[323]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO","features":[323]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO_VERSION_V1","features":[323]},{"name":"DEVICE_DSM_RANGE_ERROR_OUTPUT_V1","features":[323]},{"name":"DEVICE_DSM_REPORT_ZONES_DATA","features":[303,323]},{"name":"DEVICE_DSM_REPORT_ZONES_PARAMETERS","features":[323]},{"name":"DEVICE_DSM_TIERING_QUERY_INPUT","features":[323]},{"name":"DEVICE_DSM_TIERING_QUERY_OUTPUT","features":[323]},{"name":"DEVICE_INTERNAL_STATUS_DATA","features":[323]},{"name":"DEVICE_INTERNAL_STATUS_DATA_REQUEST_TYPE","features":[323]},{"name":"DEVICE_INTERNAL_STATUS_DATA_SET","features":[323]},{"name":"DEVICE_LB_PROVISIONING_DESCRIPTOR","features":[323]},{"name":"DEVICE_LOCATION","features":[323]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES","features":[323]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES_OUTPUT","features":[323]},{"name":"DEVICE_MEDIA_INFO","features":[322,323]},{"name":"DEVICE_POWER_DESCRIPTOR","features":[303,323]},{"name":"DEVICE_SEEK_PENALTY_DESCRIPTOR","features":[303,323]},{"name":"DEVICE_STORAGE_ADDRESS_RANGE","features":[323]},{"name":"DEVICE_STORAGE_NO_ERRORS","features":[323]},{"name":"DEVICE_STORAGE_RANGE_ATTRIBUTES","features":[323]},{"name":"DEVICE_TRIM_DESCRIPTOR","features":[303,323]},{"name":"DEVICE_WRITE_AGGREGATION_DESCRIPTOR","features":[303,323]},{"name":"DEVPKEY_Storage_Disk_Number","features":[336,323]},{"name":"DEVPKEY_Storage_Gpt_Name","features":[336,323]},{"name":"DEVPKEY_Storage_Gpt_Type","features":[336,323]},{"name":"DEVPKEY_Storage_Mbr_Type","features":[336,323]},{"name":"DEVPKEY_Storage_Partition_Number","features":[336,323]},{"name":"DEVPKEY_Storage_Portable","features":[336,323]},{"name":"DEVPKEY_Storage_Removable_Media","features":[336,323]},{"name":"DEVPKEY_Storage_System_Critical","features":[336,323]},{"name":"DISABLE_SMART","features":[323]},{"name":"DISK_ATTRIBUTE_OFFLINE","features":[323]},{"name":"DISK_ATTRIBUTE_READ_ONLY","features":[323]},{"name":"DISK_BINNING","features":[323]},{"name":"DISK_CACHE_INFORMATION","features":[303,323]},{"name":"DISK_CACHE_RETENTION_PRIORITY","features":[323]},{"name":"DISK_CONTROLLER_NUMBER","features":[323]},{"name":"DISK_DETECTION_INFO","features":[323]},{"name":"DISK_EXTENT","features":[323]},{"name":"DISK_EX_INT13_INFO","features":[323]},{"name":"DISK_GEOMETRY","features":[323]},{"name":"DISK_GEOMETRY_EX","features":[323]},{"name":"DISK_GROW_PARTITION","features":[323]},{"name":"DISK_HISTOGRAM","features":[323]},{"name":"DISK_INT13_INFO","features":[323]},{"name":"DISK_LOGGING","features":[323]},{"name":"DISK_LOGGING_DUMP","features":[323]},{"name":"DISK_LOGGING_START","features":[323]},{"name":"DISK_LOGGING_STOP","features":[323]},{"name":"DISK_PARTITION_INFO","features":[323]},{"name":"DISK_PERFORMANCE","features":[323]},{"name":"DISK_RECORD","features":[303,323]},{"name":"DLT","features":[323]},{"name":"DMI","features":[323]},{"name":"DRIVERSTATUS","features":[323]},{"name":"DRIVE_LAYOUT_INFORMATION","features":[303,323]},{"name":"DRIVE_LAYOUT_INFORMATION_EX","features":[303,323]},{"name":"DRIVE_LAYOUT_INFORMATION_GPT","features":[323]},{"name":"DRIVE_LAYOUT_INFORMATION_MBR","features":[323]},{"name":"DST_L","features":[323]},{"name":"DST_M","features":[323]},{"name":"DST_S","features":[323]},{"name":"DUPLICATE_EXTENTS_DATA","features":[303,323]},{"name":"DUPLICATE_EXTENTS_DATA32","features":[323]},{"name":"DUPLICATE_EXTENTS_DATA_EX","features":[303,323]},{"name":"DUPLICATE_EXTENTS_DATA_EX32","features":[323]},{"name":"DUPLICATE_EXTENTS_DATA_EX_ASYNC","features":[323]},{"name":"DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC","features":[323]},{"name":"DUPLICATE_EXTENTS_STATE","features":[323]},{"name":"DVD_R","features":[323]},{"name":"DVD_RAM","features":[323]},{"name":"DVD_ROM","features":[323]},{"name":"DVD_RW","features":[323]},{"name":"DV_6mm","features":[323]},{"name":"DetectExInt13","features":[323]},{"name":"DetectInt13","features":[323]},{"name":"DetectNone","features":[323]},{"name":"DeviceCurrentInternalStatusData","features":[323]},{"name":"DeviceCurrentInternalStatusDataHeader","features":[323]},{"name":"DeviceDsmActionFlag_NonDestructive","features":[323]},{"name":"DeviceInternalStatusDataRequestTypeUndefined","features":[323]},{"name":"DeviceProblemCHMError","features":[323]},{"name":"DeviceProblemCHMMoveError","features":[323]},{"name":"DeviceProblemCHMZeroError","features":[323]},{"name":"DeviceProblemCalibrationError","features":[323]},{"name":"DeviceProblemCartridgeEjectError","features":[323]},{"name":"DeviceProblemCartridgeInsertError","features":[323]},{"name":"DeviceProblemDoorOpen","features":[323]},{"name":"DeviceProblemDriveError","features":[323]},{"name":"DeviceProblemGripperError","features":[323]},{"name":"DeviceProblemHardware","features":[323]},{"name":"DeviceProblemNone","features":[323]},{"name":"DeviceProblemPositionError","features":[323]},{"name":"DeviceProblemSensorError","features":[323]},{"name":"DeviceProblemTargetFailure","features":[323]},{"name":"DeviceSavedInternalStatusData","features":[323]},{"name":"DeviceSavedInternalStatusDataHeader","features":[323]},{"name":"DeviceStatusDataSet1","features":[323]},{"name":"DeviceStatusDataSet2","features":[323]},{"name":"DeviceStatusDataSet3","features":[323]},{"name":"DeviceStatusDataSet4","features":[323]},{"name":"DeviceStatusDataSetMax","features":[323]},{"name":"DeviceStatusDataSetUndefined","features":[323]},{"name":"DiskHealthHealthy","features":[323]},{"name":"DiskHealthMax","features":[323]},{"name":"DiskHealthUnhealthy","features":[323]},{"name":"DiskHealthUnknown","features":[323]},{"name":"DiskHealthWarning","features":[323]},{"name":"DiskOpReasonBackgroundOperation","features":[323]},{"name":"DiskOpReasonComponent","features":[323]},{"name":"DiskOpReasonConfiguration","features":[323]},{"name":"DiskOpReasonDataPersistenceLossImminent","features":[323]},{"name":"DiskOpReasonDeviceController","features":[323]},{"name":"DiskOpReasonDisabledByPlatform","features":[323]},{"name":"DiskOpReasonEnergySource","features":[323]},{"name":"DiskOpReasonHealthCheck","features":[323]},{"name":"DiskOpReasonInvalidFirmware","features":[323]},{"name":"DiskOpReasonIo","features":[323]},{"name":"DiskOpReasonLostData","features":[323]},{"name":"DiskOpReasonLostDataPersistence","features":[323]},{"name":"DiskOpReasonLostWritePersistence","features":[323]},{"name":"DiskOpReasonMax","features":[323]},{"name":"DiskOpReasonMedia","features":[323]},{"name":"DiskOpReasonMediaController","features":[323]},{"name":"DiskOpReasonNVDIMM_N","features":[323]},{"name":"DiskOpReasonScsiSenseCode","features":[323]},{"name":"DiskOpReasonThresholdExceeded","features":[323]},{"name":"DiskOpReasonUnknown","features":[323]},{"name":"DiskOpReasonWritePersistenceLossImminent","features":[323]},{"name":"DiskOpStatusHardwareError","features":[323]},{"name":"DiskOpStatusInService","features":[323]},{"name":"DiskOpStatusMissing","features":[323]},{"name":"DiskOpStatusNone","features":[323]},{"name":"DiskOpStatusNotUsable","features":[323]},{"name":"DiskOpStatusOk","features":[323]},{"name":"DiskOpStatusPredictingFailure","features":[323]},{"name":"DiskOpStatusTransientError","features":[323]},{"name":"DiskOpStatusUnknown","features":[323]},{"name":"EFS_TRACKED_OFFSET_HEADER_FLAG","features":[323]},{"name":"ELEMENT_STATUS_ACCESS","features":[323]},{"name":"ELEMENT_STATUS_AVOLTAG","features":[323]},{"name":"ELEMENT_STATUS_EXCEPT","features":[323]},{"name":"ELEMENT_STATUS_EXENAB","features":[323]},{"name":"ELEMENT_STATUS_FULL","features":[323]},{"name":"ELEMENT_STATUS_ID_VALID","features":[323]},{"name":"ELEMENT_STATUS_IMPEXP","features":[323]},{"name":"ELEMENT_STATUS_INENAB","features":[323]},{"name":"ELEMENT_STATUS_INVERT","features":[323]},{"name":"ELEMENT_STATUS_LUN_VALID","features":[323]},{"name":"ELEMENT_STATUS_NOT_BUS","features":[323]},{"name":"ELEMENT_STATUS_PRODUCT_DATA","features":[323]},{"name":"ELEMENT_STATUS_PVOLTAG","features":[323]},{"name":"ELEMENT_STATUS_SVALID","features":[323]},{"name":"ELEMENT_TYPE","features":[323]},{"name":"ENABLE_DISABLE_AUTOSAVE","features":[323]},{"name":"ENABLE_DISABLE_AUTO_OFFLINE","features":[323]},{"name":"ENABLE_SMART","features":[323]},{"name":"ENCRYPTED_DATA_INFO","features":[323]},{"name":"ENCRYPTED_DATA_INFO_SPARSE_FILE","features":[323]},{"name":"ENCRYPTION_BUFFER","features":[323]},{"name":"ENCRYPTION_FORMAT_DEFAULT","features":[323]},{"name":"ENCRYPTION_KEY_CTRL_INPUT","features":[323]},{"name":"ERROR_DRIVE_NOT_INSTALLED","features":[323]},{"name":"ERROR_HISTORY_DIRECTORY_ENTRY_DEFAULT_COUNT","features":[323]},{"name":"ERROR_INIT_STATUS_NEEDED","features":[323]},{"name":"ERROR_LABEL_QUESTIONABLE","features":[323]},{"name":"ERROR_LABEL_UNREADABLE","features":[323]},{"name":"ERROR_SLOT_NOT_PRESENT","features":[323]},{"name":"ERROR_TRAY_MALFUNCTION","features":[323]},{"name":"ERROR_UNHANDLED_ERROR","features":[323]},{"name":"EXECUTE_OFFLINE_DIAGS","features":[323]},{"name":"EXFAT_STATISTICS","features":[323]},{"name":"EXTENDED_ENCRYPTED_DATA_INFO","features":[323]},{"name":"EXTEND_IEPORT","features":[323]},{"name":"EqualPriority","features":[323]},{"name":"F3_120M_512","features":[323]},{"name":"F3_128Mb_512","features":[323]},{"name":"F3_1Pt23_1024","features":[323]},{"name":"F3_1Pt2_512","features":[323]},{"name":"F3_1Pt44_512","features":[323]},{"name":"F3_200Mb_512","features":[323]},{"name":"F3_20Pt8_512","features":[323]},{"name":"F3_230Mb_512","features":[323]},{"name":"F3_240M_512","features":[323]},{"name":"F3_2Pt88_512","features":[323]},{"name":"F3_32M_512","features":[323]},{"name":"F3_640_512","features":[323]},{"name":"F3_720_512","features":[323]},{"name":"F5_160_512","features":[323]},{"name":"F5_180_512","features":[323]},{"name":"F5_1Pt23_1024","features":[323]},{"name":"F5_1Pt2_512","features":[323]},{"name":"F5_320_1024","features":[323]},{"name":"F5_320_512","features":[323]},{"name":"F5_360_512","features":[323]},{"name":"F5_640_512","features":[323]},{"name":"F5_720_512","features":[323]},{"name":"F8_256_128","features":[323]},{"name":"FAT_STATISTICS","features":[323]},{"name":"FILESYSTEM_STATISTICS","features":[323]},{"name":"FILESYSTEM_STATISTICS_EX","features":[323]},{"name":"FILESYSTEM_STATISTICS_TYPE","features":[323]},{"name":"FILESYSTEM_STATISTICS_TYPE_EXFAT","features":[323]},{"name":"FILESYSTEM_STATISTICS_TYPE_FAT","features":[323]},{"name":"FILESYSTEM_STATISTICS_TYPE_NTFS","features":[323]},{"name":"FILESYSTEM_STATISTICS_TYPE_REFS","features":[323]},{"name":"FILE_ALLOCATED_RANGE_BUFFER","features":[323]},{"name":"FILE_ANY_ACCESS","features":[323]},{"name":"FILE_CLEAR_ENCRYPTION","features":[323]},{"name":"FILE_DESIRED_STORAGE_CLASS_INFORMATION","features":[323]},{"name":"FILE_DEVICE_8042_PORT","features":[323]},{"name":"FILE_DEVICE_ACPI","features":[323]},{"name":"FILE_DEVICE_BATTERY","features":[323]},{"name":"FILE_DEVICE_BEEP","features":[323]},{"name":"FILE_DEVICE_BIOMETRIC","features":[323]},{"name":"FILE_DEVICE_BLUETOOTH","features":[323]},{"name":"FILE_DEVICE_BUS_EXTENDER","features":[323]},{"name":"FILE_DEVICE_CD_ROM_FILE_SYSTEM","features":[323]},{"name":"FILE_DEVICE_CHANGER","features":[323]},{"name":"FILE_DEVICE_CONSOLE","features":[323]},{"name":"FILE_DEVICE_CONTROLLER","features":[323]},{"name":"FILE_DEVICE_CRYPT_PROVIDER","features":[323]},{"name":"FILE_DEVICE_DATALINK","features":[323]},{"name":"FILE_DEVICE_DEVAPI","features":[323]},{"name":"FILE_DEVICE_DFS","features":[323]},{"name":"FILE_DEVICE_DFS_FILE_SYSTEM","features":[323]},{"name":"FILE_DEVICE_DFS_VOLUME","features":[323]},{"name":"FILE_DEVICE_DISK_FILE_SYSTEM","features":[323]},{"name":"FILE_DEVICE_EHSTOR","features":[323]},{"name":"FILE_DEVICE_EVENT_COLLECTOR","features":[323]},{"name":"FILE_DEVICE_FILE_SYSTEM","features":[323]},{"name":"FILE_DEVICE_FIPS","features":[323]},{"name":"FILE_DEVICE_FULLSCREEN_VIDEO","features":[323]},{"name":"FILE_DEVICE_GPIO","features":[323]},{"name":"FILE_DEVICE_HOLOGRAPHIC","features":[323]},{"name":"FILE_DEVICE_INFINIBAND","features":[323]},{"name":"FILE_DEVICE_INPORT_PORT","features":[323]},{"name":"FILE_DEVICE_KEYBOARD","features":[323]},{"name":"FILE_DEVICE_KS","features":[323]},{"name":"FILE_DEVICE_KSEC","features":[323]},{"name":"FILE_DEVICE_MAILSLOT","features":[323]},{"name":"FILE_DEVICE_MASS_STORAGE","features":[323]},{"name":"FILE_DEVICE_MIDI_IN","features":[323]},{"name":"FILE_DEVICE_MIDI_OUT","features":[323]},{"name":"FILE_DEVICE_MODEM","features":[323]},{"name":"FILE_DEVICE_MOUSE","features":[323]},{"name":"FILE_DEVICE_MT_COMPOSITE","features":[323]},{"name":"FILE_DEVICE_MT_TRANSPORT","features":[323]},{"name":"FILE_DEVICE_MULTI_UNC_PROVIDER","features":[323]},{"name":"FILE_DEVICE_NAMED_PIPE","features":[323]},{"name":"FILE_DEVICE_NETWORK","features":[323]},{"name":"FILE_DEVICE_NETWORK_BROWSER","features":[323]},{"name":"FILE_DEVICE_NETWORK_FILE_SYSTEM","features":[323]},{"name":"FILE_DEVICE_NETWORK_REDIRECTOR","features":[323]},{"name":"FILE_DEVICE_NFP","features":[323]},{"name":"FILE_DEVICE_NULL","features":[323]},{"name":"FILE_DEVICE_NVDIMM","features":[323]},{"name":"FILE_DEVICE_PARALLEL_PORT","features":[323]},{"name":"FILE_DEVICE_PERSISTENT_MEMORY","features":[323]},{"name":"FILE_DEVICE_PHYSICAL_NETCARD","features":[323]},{"name":"FILE_DEVICE_PMI","features":[323]},{"name":"FILE_DEVICE_POINT_OF_SERVICE","features":[323]},{"name":"FILE_DEVICE_PRINTER","features":[323]},{"name":"FILE_DEVICE_PRM","features":[323]},{"name":"FILE_DEVICE_SCANNER","features":[323]},{"name":"FILE_DEVICE_SCREEN","features":[323]},{"name":"FILE_DEVICE_SDFXHCI","features":[323]},{"name":"FILE_DEVICE_SERENUM","features":[323]},{"name":"FILE_DEVICE_SERIAL_MOUSE_PORT","features":[323]},{"name":"FILE_DEVICE_SERIAL_PORT","features":[323]},{"name":"FILE_DEVICE_SMB","features":[323]},{"name":"FILE_DEVICE_SOUND","features":[323]},{"name":"FILE_DEVICE_SOUNDWIRE","features":[323]},{"name":"FILE_DEVICE_STORAGE_REPLICATION","features":[323]},{"name":"FILE_DEVICE_STREAMS","features":[323]},{"name":"FILE_DEVICE_SYSENV","features":[323]},{"name":"FILE_DEVICE_TAPE_FILE_SYSTEM","features":[323]},{"name":"FILE_DEVICE_TERMSRV","features":[323]},{"name":"FILE_DEVICE_TRANSPORT","features":[323]},{"name":"FILE_DEVICE_TRUST_ENV","features":[323]},{"name":"FILE_DEVICE_UCM","features":[323]},{"name":"FILE_DEVICE_UCMTCPCI","features":[323]},{"name":"FILE_DEVICE_UCMUCSI","features":[323]},{"name":"FILE_DEVICE_UNKNOWN","features":[323]},{"name":"FILE_DEVICE_USB4","features":[323]},{"name":"FILE_DEVICE_USBEX","features":[323]},{"name":"FILE_DEVICE_VDM","features":[323]},{"name":"FILE_DEVICE_VIDEO","features":[323]},{"name":"FILE_DEVICE_VIRTUAL_BLOCK","features":[323]},{"name":"FILE_DEVICE_VIRTUAL_DISK","features":[323]},{"name":"FILE_DEVICE_VMBUS","features":[323]},{"name":"FILE_DEVICE_WAVE_IN","features":[323]},{"name":"FILE_DEVICE_WAVE_OUT","features":[323]},{"name":"FILE_DEVICE_WPD","features":[323]},{"name":"FILE_FS_PERSISTENT_VOLUME_INFORMATION","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NON_RESIDENT","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NOT_FOUND","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_TOO_SMALL","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_CLUSTERS_ALREADY_IN_USE","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_DENY_DEFRAG","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_IS_BASE_RECORD","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_BASE_RECORD","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_EXIST","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_IN_USE","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_ORPHAN","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_REUSED","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_INDEX_ENTRY_MISMATCH","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ARRAY_LENGTH_COUNT","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_LCN","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ORPHAN_RECOVERY_NAME","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_PARENT","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_RUN_LENGTH","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_VCN","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_LCN_NOT_EXIST","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_MULTIPLE_FILE_NAME_ATTRIBUTES","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_NAME_CONFLICT","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOTHING_WRONG","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOT_IMPLEMENTED","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN_GENERATED","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_GENERIC_NAMES","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_RESOURCE","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_BASE_RECORD","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_EXIST","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_INDEX","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_IN_USE","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_REUSED","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_POTENTIAL_CROSSLINK","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_PREVIOUS_PARENT_STILL_VALID","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_RECURSIVELY_CORRUPTED","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIRED","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIR_DISABLED","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_MISMATCH","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_VALID","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_STALE_INFORMATION","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_SYSTEM_FILE","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_UNABLE_TO_REPAIR","features":[323]},{"name":"FILE_INITIATE_REPAIR_HINT1_VALID_INDEX_ENTRY","features":[323]},{"name":"FILE_INITIATE_REPAIR_OUTPUT_BUFFER","features":[323]},{"name":"FILE_LAYOUT_ENTRY","features":[323]},{"name":"FILE_LAYOUT_INFO_ENTRY","features":[323]},{"name":"FILE_LAYOUT_NAME_ENTRY","features":[323]},{"name":"FILE_LAYOUT_NAME_ENTRY_DOS","features":[323]},{"name":"FILE_LAYOUT_NAME_ENTRY_PRIMARY","features":[323]},{"name":"FILE_LEVEL_TRIM","features":[323]},{"name":"FILE_LEVEL_TRIM_OUTPUT","features":[323]},{"name":"FILE_LEVEL_TRIM_RANGE","features":[323]},{"name":"FILE_MAKE_COMPATIBLE_BUFFER","features":[303,323]},{"name":"FILE_OBJECTID_BUFFER","features":[323]},{"name":"FILE_PREFETCH","features":[323]},{"name":"FILE_PREFETCH_EX","features":[323]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE","features":[323]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE_EX","features":[323]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM","features":[323]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM_EX","features":[323]},{"name":"FILE_PREFETCH_TYPE_MAX","features":[323]},{"name":"FILE_PROVIDER_COMPRESSION_MAXIMUM","features":[323]},{"name":"FILE_PROVIDER_CURRENT_VERSION","features":[323]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V0","features":[323]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V1","features":[323]},{"name":"FILE_PROVIDER_FLAG_COMPRESS_ON_WRITE","features":[323]},{"name":"FILE_PROVIDER_SINGLE_FILE","features":[323]},{"name":"FILE_QUERY_ON_DISK_VOL_INFO_BUFFER","features":[323]},{"name":"FILE_QUERY_SPARING_BUFFER","features":[303,323]},{"name":"FILE_READ_ACCESS","features":[323]},{"name":"FILE_REFERENCE_RANGE","features":[323]},{"name":"FILE_REGION_INFO","features":[323]},{"name":"FILE_REGION_INPUT","features":[323]},{"name":"FILE_REGION_OUTPUT","features":[323]},{"name":"FILE_REGION_USAGE_HUGE_PAGE_ALIGNMENT","features":[323]},{"name":"FILE_REGION_USAGE_LARGE_PAGE_ALIGNMENT","features":[323]},{"name":"FILE_REGION_USAGE_OTHER_PAGE_ALIGNMENT","features":[323]},{"name":"FILE_REGION_USAGE_QUERY_ALIGNMENT","features":[323]},{"name":"FILE_REGION_USAGE_VALID_CACHED_DATA","features":[323]},{"name":"FILE_REGION_USAGE_VALID_NONCACHED_DATA","features":[323]},{"name":"FILE_SET_DEFECT_MGMT_BUFFER","features":[303,323]},{"name":"FILE_SET_ENCRYPTION","features":[323]},{"name":"FILE_SET_SPARSE_BUFFER","features":[303,323]},{"name":"FILE_SPECIAL_ACCESS","features":[323]},{"name":"FILE_STORAGE_TIER","features":[323]},{"name":"FILE_STORAGE_TIER_CLASS","features":[323]},{"name":"FILE_STORAGE_TIER_DESCRIPTION_LENGTH","features":[323]},{"name":"FILE_STORAGE_TIER_FLAGS","features":[323]},{"name":"FILE_STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[323]},{"name":"FILE_STORAGE_TIER_FLAG_PARITY","features":[323]},{"name":"FILE_STORAGE_TIER_FLAG_READ_CACHE","features":[323]},{"name":"FILE_STORAGE_TIER_FLAG_SMR","features":[323]},{"name":"FILE_STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[323]},{"name":"FILE_STORAGE_TIER_MEDIA_TYPE","features":[323]},{"name":"FILE_STORAGE_TIER_NAME_LENGTH","features":[323]},{"name":"FILE_STORAGE_TIER_REGION","features":[323]},{"name":"FILE_SYSTEM_RECOGNITION_INFORMATION","features":[323]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_BEGIN","features":[323]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_END","features":[323]},{"name":"FILE_TYPE_NOTIFICATION_GUID_CRASHDUMP_FILE","features":[323]},{"name":"FILE_TYPE_NOTIFICATION_GUID_HIBERNATION_FILE","features":[323]},{"name":"FILE_TYPE_NOTIFICATION_GUID_PAGE_FILE","features":[323]},{"name":"FILE_TYPE_NOTIFICATION_INPUT","features":[323]},{"name":"FILE_WRITE_ACCESS","features":[323]},{"name":"FILE_ZERO_DATA_INFORMATION","features":[323]},{"name":"FILE_ZERO_DATA_INFORMATION_EX","features":[323]},{"name":"FILE_ZERO_DATA_INFORMATION_FLAG_PRESERVE_CACHED_DATA","features":[323]},{"name":"FIND_BY_SID_DATA","features":[306,323]},{"name":"FIND_BY_SID_OUTPUT","features":[323]},{"name":"FLAG_USN_TRACK_MODIFIED_RANGES_ENABLE","features":[323]},{"name":"FORMAT_EX_PARAMETERS","features":[323]},{"name":"FORMAT_PARAMETERS","features":[323]},{"name":"FSBPIO_INFL_None","features":[323]},{"name":"FSBPIO_INFL_SKIP_STORAGE_STACK_QUERY","features":[323]},{"name":"FSBPIO_OUTFL_COMPATIBLE_STORAGE_DRIVER","features":[323]},{"name":"FSBPIO_OUTFL_FILTER_ATTACH_BLOCKED","features":[323]},{"name":"FSBPIO_OUTFL_None","features":[323]},{"name":"FSBPIO_OUTFL_STREAM_BYPASS_PAUSED","features":[323]},{"name":"FSBPIO_OUTFL_VOLUME_STACK_BYPASS_PAUSED","features":[323]},{"name":"FSCTL_ADD_OVERLAY","features":[323]},{"name":"FSCTL_ADVANCE_FILE_ID","features":[323]},{"name":"FSCTL_ALLOW_EXTENDED_DASD_IO","features":[323]},{"name":"FSCTL_CLEAN_VOLUME_METADATA","features":[323]},{"name":"FSCTL_CLEAR_ALL_LCN_WEAK_REFERENCES","features":[323]},{"name":"FSCTL_CLEAR_LCN_WEAK_REFERENCE","features":[323]},{"name":"FSCTL_CORRUPTION_HANDLING","features":[323]},{"name":"FSCTL_CREATE_LCN_WEAK_REFERENCE","features":[323]},{"name":"FSCTL_CREATE_OR_GET_OBJECT_ID","features":[323]},{"name":"FSCTL_CREATE_USN_JOURNAL","features":[323]},{"name":"FSCTL_CSC_INTERNAL","features":[323]},{"name":"FSCTL_CSV_CONTROL","features":[323]},{"name":"FSCTL_CSV_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[323]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAME","features":[323]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAMES_FOR_VOLUME_NAME","features":[323]},{"name":"FSCTL_CSV_H_BREAKING_SYNC_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_CSV_INTERNAL","features":[323]},{"name":"FSCTL_CSV_MGMT_LOCK","features":[323]},{"name":"FSCTL_CSV_QUERY_DOWN_LEVEL_FILE_SYSTEM_CHARACTERISTICS","features":[323]},{"name":"FSCTL_CSV_QUERY_VETO_FILE_DIRECT_IO","features":[323]},{"name":"FSCTL_CSV_SYNC_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_CSV_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_DELETE_CORRUPTED_REFS_CONTAINER","features":[323]},{"name":"FSCTL_DELETE_EXTERNAL_BACKING","features":[323]},{"name":"FSCTL_DELETE_OBJECT_ID","features":[323]},{"name":"FSCTL_DELETE_REPARSE_POINT","features":[323]},{"name":"FSCTL_DELETE_USN_JOURNAL","features":[323]},{"name":"FSCTL_DFSR_SET_GHOST_HANDLE_STATE","features":[323]},{"name":"FSCTL_DISABLE_LOCAL_BUFFERING","features":[323]},{"name":"FSCTL_DISMOUNT_VOLUME","features":[323]},{"name":"FSCTL_DUPLICATE_CLUSTER","features":[323]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE","features":[323]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX","features":[323]},{"name":"FSCTL_ENABLE_PER_IO_FLAGS","features":[323]},{"name":"FSCTL_ENABLE_UPGRADE","features":[323]},{"name":"FSCTL_ENCRYPTION_FSCTL_IO","features":[323]},{"name":"FSCTL_ENCRYPTION_KEY_CONTROL","features":[323]},{"name":"FSCTL_ENUM_EXTERNAL_BACKING","features":[323]},{"name":"FSCTL_ENUM_OVERLAY","features":[323]},{"name":"FSCTL_ENUM_USN_DATA","features":[323]},{"name":"FSCTL_EXTEND_VOLUME","features":[323]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS","features":[323]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS_EX","features":[323]},{"name":"FSCTL_FILE_LEVEL_TRIM","features":[323]},{"name":"FSCTL_FILE_PREFETCH","features":[323]},{"name":"FSCTL_FILE_TYPE_NOTIFICATION","features":[323]},{"name":"FSCTL_FIND_FILES_BY_SID","features":[323]},{"name":"FSCTL_GET_BOOT_AREA_INFO","features":[323]},{"name":"FSCTL_GET_COMPRESSION","features":[323]},{"name":"FSCTL_GET_EXTERNAL_BACKING","features":[323]},{"name":"FSCTL_GET_FILTER_FILE_IDENTIFIER","features":[323]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION","features":[323]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION_BUFFER","features":[323]},{"name":"FSCTL_GET_NTFS_FILE_RECORD","features":[323]},{"name":"FSCTL_GET_NTFS_VOLUME_DATA","features":[323]},{"name":"FSCTL_GET_OBJECT_ID","features":[323]},{"name":"FSCTL_GET_REFS_VOLUME_DATA","features":[323]},{"name":"FSCTL_GET_REPAIR","features":[323]},{"name":"FSCTL_GET_REPARSE_POINT","features":[323]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS","features":[323]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS_AND_REFCOUNT","features":[323]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_BASE","features":[323]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_COUNT","features":[323]},{"name":"FSCTL_GET_VOLUME_BITMAP","features":[323]},{"name":"FSCTL_GET_WOF_VERSION","features":[323]},{"name":"FSCTL_GHOST_FILE_EXTENTS","features":[323]},{"name":"FSCTL_HCS_ASYNC_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_HCS_SYNC_NO_WRITE_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_HCS_SYNC_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_INITIATE_FILE_METADATA_OPTIMIZATION","features":[323]},{"name":"FSCTL_INITIATE_REPAIR","features":[323]},{"name":"FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF","features":[323]},{"name":"FSCTL_INVALIDATE_VOLUMES","features":[323]},{"name":"FSCTL_IS_CSV_FILE","features":[323]},{"name":"FSCTL_IS_FILE_ON_CSV_VOLUME","features":[323]},{"name":"FSCTL_IS_PATHNAME_VALID","features":[323]},{"name":"FSCTL_IS_VOLUME_DIRTY","features":[323]},{"name":"FSCTL_IS_VOLUME_MOUNTED","features":[323]},{"name":"FSCTL_IS_VOLUME_OWNED_BYCSVFS","features":[323]},{"name":"FSCTL_LMR_QUERY_INFO","features":[323]},{"name":"FSCTL_LOCK_VOLUME","features":[323]},{"name":"FSCTL_LOOKUP_STREAM_FROM_CLUSTER","features":[323]},{"name":"FSCTL_MAKE_MEDIA_COMPATIBLE","features":[323]},{"name":"FSCTL_MANAGE_BYPASS_IO","features":[323]},{"name":"FSCTL_MARK_AS_SYSTEM_HIVE","features":[323]},{"name":"FSCTL_MARK_HANDLE","features":[323]},{"name":"FSCTL_MARK_VOLUME_DIRTY","features":[323]},{"name":"FSCTL_MOVE_FILE","features":[323]},{"name":"FSCTL_NOTIFY_DATA_CHANGE","features":[323]},{"name":"FSCTL_NOTIFY_STORAGE_SPACE_ALLOCATION","features":[323]},{"name":"FSCTL_OFFLOAD_READ","features":[323]},{"name":"FSCTL_OFFLOAD_READ_INPUT","features":[323]},{"name":"FSCTL_OFFLOAD_READ_OUTPUT","features":[323]},{"name":"FSCTL_OFFLOAD_WRITE","features":[323]},{"name":"FSCTL_OFFLOAD_WRITE_INPUT","features":[323]},{"name":"FSCTL_OFFLOAD_WRITE_OUTPUT","features":[323]},{"name":"FSCTL_OPBATCH_ACK_CLOSE_PENDING","features":[323]},{"name":"FSCTL_OPLOCK_BREAK_ACKNOWLEDGE","features":[323]},{"name":"FSCTL_OPLOCK_BREAK_ACK_NO_2","features":[323]},{"name":"FSCTL_OPLOCK_BREAK_NOTIFY","features":[323]},{"name":"FSCTL_QUERY_ALLOCATED_RANGES","features":[323]},{"name":"FSCTL_QUERY_ASYNC_DUPLICATE_EXTENTS_STATUS","features":[323]},{"name":"FSCTL_QUERY_BAD_RANGES","features":[323]},{"name":"FSCTL_QUERY_DEPENDENT_VOLUME","features":[323]},{"name":"FSCTL_QUERY_DIRECT_ACCESS_EXTENTS","features":[323]},{"name":"FSCTL_QUERY_DIRECT_IMAGE_ORIGINAL_BASE","features":[323]},{"name":"FSCTL_QUERY_EXTENT_READ_CACHE_INFO","features":[323]},{"name":"FSCTL_QUERY_FAT_BPB","features":[323]},{"name":"FSCTL_QUERY_FAT_BPB_BUFFER","features":[323]},{"name":"FSCTL_QUERY_FILE_LAYOUT","features":[323]},{"name":"FSCTL_QUERY_FILE_METADATA_OPTIMIZATION","features":[323]},{"name":"FSCTL_QUERY_FILE_REGIONS","features":[323]},{"name":"FSCTL_QUERY_FILE_SYSTEM_RECOGNITION","features":[323]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS","features":[323]},{"name":"FSCTL_QUERY_LCN_WEAK_REFERENCE","features":[323]},{"name":"FSCTL_QUERY_ON_DISK_VOLUME_INFO","features":[323]},{"name":"FSCTL_QUERY_PAGEFILE_ENCRYPTION","features":[323]},{"name":"FSCTL_QUERY_PERSISTENT_VOLUME_STATE","features":[323]},{"name":"FSCTL_QUERY_REFS_SMR_VOLUME_INFO","features":[323]},{"name":"FSCTL_QUERY_REFS_VOLUME_COUNTER_INFO","features":[323]},{"name":"FSCTL_QUERY_REGION_INFO","features":[323]},{"name":"FSCTL_QUERY_REGION_INFO_INPUT","features":[323]},{"name":"FSCTL_QUERY_REGION_INFO_OUTPUT","features":[323]},{"name":"FSCTL_QUERY_RETRIEVAL_POINTERS","features":[323]},{"name":"FSCTL_QUERY_SHARED_VIRTUAL_DISK_SUPPORT","features":[323]},{"name":"FSCTL_QUERY_SPARING_INFO","features":[323]},{"name":"FSCTL_QUERY_STORAGE_CLASSES","features":[323]},{"name":"FSCTL_QUERY_STORAGE_CLASSES_OUTPUT","features":[323]},{"name":"FSCTL_QUERY_USN_JOURNAL","features":[323]},{"name":"FSCTL_QUERY_VOLUME_CONTAINER_STATE","features":[323]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO","features":[323]},{"name":"FSCTL_READ_FILE_USN_DATA","features":[323]},{"name":"FSCTL_READ_FROM_PLEX","features":[323]},{"name":"FSCTL_READ_RAW_ENCRYPTED","features":[323]},{"name":"FSCTL_READ_UNPRIVILEGED_USN_JOURNAL","features":[323]},{"name":"FSCTL_READ_USN_JOURNAL","features":[323]},{"name":"FSCTL_REARRANGE_FILE","features":[323]},{"name":"FSCTL_RECALL_FILE","features":[323]},{"name":"FSCTL_REFS_CHECKPOINT_VOLUME","features":[323]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES","features":[323]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES_EX","features":[323]},{"name":"FSCTL_REFS_QUERY_VOLUME_COMPRESSION_INFO","features":[323]},{"name":"FSCTL_REFS_QUERY_VOLUME_DEDUP_INFO","features":[323]},{"name":"FSCTL_REFS_QUERY_VOLUME_IO_METRICS_INFO","features":[323]},{"name":"FSCTL_REFS_QUERY_VOLUME_TOTAL_SHARED_LCNS","features":[323]},{"name":"FSCTL_REFS_SET_VOLUME_COMPRESSION_INFO","features":[323]},{"name":"FSCTL_REFS_SET_VOLUME_DEDUP_INFO","features":[323]},{"name":"FSCTL_REFS_SET_VOLUME_IO_METRICS_INFO","features":[323]},{"name":"FSCTL_REFS_STREAM_SNAPSHOT_MANAGEMENT","features":[323]},{"name":"FSCTL_REMOVE_OVERLAY","features":[323]},{"name":"FSCTL_REPAIR_COPIES","features":[323]},{"name":"FSCTL_REQUEST_BATCH_OPLOCK","features":[323]},{"name":"FSCTL_REQUEST_FILTER_OPLOCK","features":[323]},{"name":"FSCTL_REQUEST_OPLOCK","features":[323]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_1","features":[323]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_2","features":[323]},{"name":"FSCTL_RESET_VOLUME_ALLOCATION_HINTS","features":[323]},{"name":"FSCTL_RKF_INTERNAL","features":[323]},{"name":"FSCTL_SCRUB_DATA","features":[323]},{"name":"FSCTL_SCRUB_UNDISCOVERABLE_ID","features":[323]},{"name":"FSCTL_SD_GLOBAL_CHANGE","features":[323]},{"name":"FSCTL_SECURITY_ID_CHECK","features":[323]},{"name":"FSCTL_SET_BOOTLOADER_ACCESSED","features":[323]},{"name":"FSCTL_SET_CACHED_RUNS_STATE","features":[323]},{"name":"FSCTL_SET_COMPRESSION","features":[323]},{"name":"FSCTL_SET_DAX_ALLOC_ALIGNMENT_HINT","features":[323]},{"name":"FSCTL_SET_DEFECT_MANAGEMENT","features":[323]},{"name":"FSCTL_SET_ENCRYPTION","features":[323]},{"name":"FSCTL_SET_EXTERNAL_BACKING","features":[323]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION","features":[323]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER","features":[323]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER_EX","features":[323]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_EX","features":[323]},{"name":"FSCTL_SET_LAYER_ROOT","features":[323]},{"name":"FSCTL_SET_OBJECT_ID","features":[323]},{"name":"FSCTL_SET_OBJECT_ID_EXTENDED","features":[323]},{"name":"FSCTL_SET_PERSISTENT_VOLUME_STATE","features":[323]},{"name":"FSCTL_SET_PURGE_FAILURE_MODE","features":[323]},{"name":"FSCTL_SET_REFS_FILE_STRICTLY_SEQUENTIAL","features":[323]},{"name":"FSCTL_SET_REFS_SMR_VOLUME_GC_PARAMETERS","features":[323]},{"name":"FSCTL_SET_REPAIR","features":[323]},{"name":"FSCTL_SET_REPARSE_POINT","features":[323]},{"name":"FSCTL_SET_REPARSE_POINT_EX","features":[323]},{"name":"FSCTL_SET_SHORT_NAME_BEHAVIOR","features":[323]},{"name":"FSCTL_SET_SPARSE","features":[323]},{"name":"FSCTL_SET_VOLUME_COMPRESSION_STATE","features":[323]},{"name":"FSCTL_SET_ZERO_DATA","features":[323]},{"name":"FSCTL_SET_ZERO_ON_DEALLOCATION","features":[323]},{"name":"FSCTL_SHRINK_VOLUME","features":[323]},{"name":"FSCTL_SHUFFLE_FILE","features":[323]},{"name":"FSCTL_SIS_COPYFILE","features":[323]},{"name":"FSCTL_SIS_LINK_FILES","features":[323]},{"name":"FSCTL_SMB_SHARE_FLUSH_AND_PURGE","features":[323]},{"name":"FSCTL_SPARSE_OVERALLOCATE","features":[323]},{"name":"FSCTL_SSDI_STORAGE_REQUEST","features":[323]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE","features":[323]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE_EX","features":[323]},{"name":"FSCTL_STORAGE_QOS_CONTROL","features":[323]},{"name":"FSCTL_STREAMS_ASSOCIATE_ID","features":[323]},{"name":"FSCTL_STREAMS_QUERY_ID","features":[323]},{"name":"FSCTL_STREAMS_QUERY_PARAMETERS","features":[323]},{"name":"FSCTL_SUSPEND_OVERLAY","features":[323]},{"name":"FSCTL_SVHDX_ASYNC_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_SVHDX_SET_INITIATOR_INFORMATION","features":[323]},{"name":"FSCTL_SVHDX_SYNC_TUNNEL_REQUEST","features":[323]},{"name":"FSCTL_TXFS_CREATE_MINIVERSION","features":[323]},{"name":"FSCTL_TXFS_CREATE_SECONDARY_RM","features":[323]},{"name":"FSCTL_TXFS_GET_METADATA_INFO","features":[323]},{"name":"FSCTL_TXFS_GET_TRANSACTED_VERSION","features":[323]},{"name":"FSCTL_TXFS_LIST_TRANSACTIONS","features":[323]},{"name":"FSCTL_TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[323]},{"name":"FSCTL_TXFS_MODIFY_RM","features":[323]},{"name":"FSCTL_TXFS_QUERY_RM_INFORMATION","features":[323]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION","features":[323]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION2","features":[323]},{"name":"FSCTL_TXFS_ROLLFORWARD_REDO","features":[323]},{"name":"FSCTL_TXFS_ROLLFORWARD_UNDO","features":[323]},{"name":"FSCTL_TXFS_SAVEPOINT_INFORMATION","features":[323]},{"name":"FSCTL_TXFS_SHUTDOWN_RM","features":[323]},{"name":"FSCTL_TXFS_START_RM","features":[323]},{"name":"FSCTL_TXFS_TRANSACTION_ACTIVE","features":[323]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION","features":[323]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION2","features":[323]},{"name":"FSCTL_UNLOCK_VOLUME","features":[323]},{"name":"FSCTL_UNMAP_SPACE","features":[323]},{"name":"FSCTL_UPDATE_OVERLAY","features":[323]},{"name":"FSCTL_UPGRADE_VOLUME","features":[323]},{"name":"FSCTL_USN_TRACK_MODIFIED_RANGES","features":[323]},{"name":"FSCTL_VIRTUAL_STORAGE_PASSTHROUGH","features":[323]},{"name":"FSCTL_VIRTUAL_STORAGE_QUERY_PROPERTY","features":[323]},{"name":"FSCTL_VIRTUAL_STORAGE_SET_BEHAVIOR","features":[323]},{"name":"FSCTL_WAIT_FOR_REPAIR","features":[323]},{"name":"FSCTL_WRITE_RAW_ENCRYPTED","features":[323]},{"name":"FSCTL_WRITE_USN_CLOSE_RECORD","features":[323]},{"name":"FSCTL_WRITE_USN_REASON","features":[323]},{"name":"FS_BPIO_INFLAGS","features":[323]},{"name":"FS_BPIO_INFO","features":[323]},{"name":"FS_BPIO_INPUT","features":[323]},{"name":"FS_BPIO_OPERATIONS","features":[323]},{"name":"FS_BPIO_OP_DISABLE","features":[323]},{"name":"FS_BPIO_OP_ENABLE","features":[323]},{"name":"FS_BPIO_OP_GET_INFO","features":[323]},{"name":"FS_BPIO_OP_MAX_OPERATION","features":[323]},{"name":"FS_BPIO_OP_QUERY","features":[323]},{"name":"FS_BPIO_OP_STREAM_PAUSE","features":[323]},{"name":"FS_BPIO_OP_STREAM_RESUME","features":[323]},{"name":"FS_BPIO_OP_VOLUME_STACK_PAUSE","features":[323]},{"name":"FS_BPIO_OP_VOLUME_STACK_RESUME","features":[323]},{"name":"FS_BPIO_OUTFLAGS","features":[323]},{"name":"FS_BPIO_OUTPUT","features":[323]},{"name":"FS_BPIO_RESULTS","features":[323]},{"name":"FW_ISSUEID_NO_ISSUE","features":[323]},{"name":"FW_ISSUEID_UNKNOWN","features":[323]},{"name":"FileSnapStateInactive","features":[323]},{"name":"FileSnapStateSource","features":[323]},{"name":"FileSnapStateTarget","features":[323]},{"name":"FileStorageTierClassCapacity","features":[323]},{"name":"FileStorageTierClassMax","features":[323]},{"name":"FileStorageTierClassPerformance","features":[323]},{"name":"FileStorageTierClassUnspecified","features":[323]},{"name":"FileStorageTierMediaTypeDisk","features":[323]},{"name":"FileStorageTierMediaTypeMax","features":[323]},{"name":"FileStorageTierMediaTypeScm","features":[323]},{"name":"FileStorageTierMediaTypeSsd","features":[323]},{"name":"FileStorageTierMediaTypeUnspecified","features":[323]},{"name":"FixedMedia","features":[323]},{"name":"FormFactor1_8","features":[323]},{"name":"FormFactor1_8Less","features":[323]},{"name":"FormFactor2_5","features":[323]},{"name":"FormFactor3_5","features":[323]},{"name":"FormFactorDimm","features":[323]},{"name":"FormFactorEmbedded","features":[323]},{"name":"FormFactorM_2","features":[323]},{"name":"FormFactorMemoryCard","features":[323]},{"name":"FormFactorPCIeBoard","features":[323]},{"name":"FormFactorUnknown","features":[323]},{"name":"FormFactormSata","features":[323]},{"name":"GETVERSIONINPARAMS","features":[323]},{"name":"GET_CHANGER_PARAMETERS","features":[323]},{"name":"GET_CHANGER_PARAMETERS_FEATURES1","features":[323]},{"name":"GET_DEVICE_INTERNAL_STATUS_DATA_REQUEST","features":[323]},{"name":"GET_DISK_ATTRIBUTES","features":[323]},{"name":"GET_FILTER_FILE_IDENTIFIER_INPUT","features":[323]},{"name":"GET_FILTER_FILE_IDENTIFIER_OUTPUT","features":[323]},{"name":"GET_LENGTH_INFORMATION","features":[323]},{"name":"GET_MEDIA_TYPES","features":[322,323]},{"name":"GET_VOLUME_BITMAP_FLAG_MASK_METADATA","features":[323]},{"name":"GPT_ATTRIBUTES","features":[323]},{"name":"GPT_ATTRIBUTE_LEGACY_BIOS_BOOTABLE","features":[323]},{"name":"GPT_ATTRIBUTE_NO_BLOCK_IO_PROTOCOL","features":[323]},{"name":"GPT_ATTRIBUTE_PLATFORM_REQUIRED","features":[323]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_DAX","features":[323]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_HIDDEN","features":[323]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER","features":[323]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_OFFLINE","features":[323]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY","features":[323]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SERVICE","features":[323]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY","features":[323]},{"name":"GPT_SPACES_ATTRIBUTE_NO_METADATA","features":[323]},{"name":"GP_LOG_PAGE_DESCRIPTOR","features":[323]},{"name":"GUID_DEVICEDUMP_DRIVER_STORAGE_PORT","features":[323]},{"name":"GUID_DEVICEDUMP_STORAGE_DEVICE","features":[323]},{"name":"GUID_DEVINTERFACE_CDCHANGER","features":[323]},{"name":"GUID_DEVINTERFACE_CDROM","features":[323]},{"name":"GUID_DEVINTERFACE_COMPORT","features":[323]},{"name":"GUID_DEVINTERFACE_DISK","features":[323]},{"name":"GUID_DEVINTERFACE_FLOPPY","features":[323]},{"name":"GUID_DEVINTERFACE_HIDDEN_VOLUME","features":[323]},{"name":"GUID_DEVINTERFACE_MEDIUMCHANGER","features":[323]},{"name":"GUID_DEVINTERFACE_PARTITION","features":[323]},{"name":"GUID_DEVINTERFACE_SCM_PHYSICAL_DEVICE","features":[323]},{"name":"GUID_DEVINTERFACE_SERENUM_BUS_ENUMERATOR","features":[323]},{"name":"GUID_DEVINTERFACE_SERVICE_VOLUME","features":[323]},{"name":"GUID_DEVINTERFACE_SES","features":[323]},{"name":"GUID_DEVINTERFACE_STORAGEPORT","features":[323]},{"name":"GUID_DEVINTERFACE_TAPE","features":[323]},{"name":"GUID_DEVINTERFACE_UNIFIED_ACCESS_RPMB","features":[323]},{"name":"GUID_DEVINTERFACE_VMLUN","features":[323]},{"name":"GUID_DEVINTERFACE_VOLUME","features":[323]},{"name":"GUID_DEVINTERFACE_WRITEONCEDISK","features":[323]},{"name":"GUID_DEVINTERFACE_ZNSDISK","features":[323]},{"name":"GUID_SCM_PD_HEALTH_NOTIFICATION","features":[323]},{"name":"GUID_SCM_PD_PASSTHROUGH_INVDIMM","features":[323]},{"name":"HISTOGRAM_BUCKET","features":[323]},{"name":"HIST_NO_OF_BUCKETS","features":[323]},{"name":"HITACHI_12_WO","features":[323]},{"name":"HealthStatusDisabled","features":[323]},{"name":"HealthStatusFailed","features":[323]},{"name":"HealthStatusNormal","features":[323]},{"name":"HealthStatusThrottled","features":[323]},{"name":"HealthStatusUnknown","features":[323]},{"name":"HealthStatusWarning","features":[323]},{"name":"IBM_3480","features":[323]},{"name":"IBM_3490E","features":[323]},{"name":"IBM_Magstar_3590","features":[323]},{"name":"IBM_Magstar_MP","features":[323]},{"name":"IDENTIFY_BUFFER_SIZE","features":[323]},{"name":"IDEREGS","features":[323]},{"name":"ID_CMD","features":[323]},{"name":"IOCTL_CHANGER_BASE","features":[323]},{"name":"IOCTL_CHANGER_EXCHANGE_MEDIUM","features":[323]},{"name":"IOCTL_CHANGER_GET_ELEMENT_STATUS","features":[323]},{"name":"IOCTL_CHANGER_GET_PARAMETERS","features":[323]},{"name":"IOCTL_CHANGER_GET_PRODUCT_DATA","features":[323]},{"name":"IOCTL_CHANGER_GET_STATUS","features":[323]},{"name":"IOCTL_CHANGER_INITIALIZE_ELEMENT_STATUS","features":[323]},{"name":"IOCTL_CHANGER_MOVE_MEDIUM","features":[323]},{"name":"IOCTL_CHANGER_QUERY_VOLUME_TAGS","features":[323]},{"name":"IOCTL_CHANGER_REINITIALIZE_TRANSPORT","features":[323]},{"name":"IOCTL_CHANGER_SET_ACCESS","features":[323]},{"name":"IOCTL_CHANGER_SET_POSITION","features":[323]},{"name":"IOCTL_DISK_BASE","features":[323]},{"name":"IOCTL_DISK_CHECK_VERIFY","features":[323]},{"name":"IOCTL_DISK_CONTROLLER_NUMBER","features":[323]},{"name":"IOCTL_DISK_CREATE_DISK","features":[323]},{"name":"IOCTL_DISK_DELETE_DRIVE_LAYOUT","features":[323]},{"name":"IOCTL_DISK_EJECT_MEDIA","features":[323]},{"name":"IOCTL_DISK_FIND_NEW_DEVICES","features":[323]},{"name":"IOCTL_DISK_FORMAT_DRIVE","features":[323]},{"name":"IOCTL_DISK_FORMAT_TRACKS","features":[323]},{"name":"IOCTL_DISK_FORMAT_TRACKS_EX","features":[323]},{"name":"IOCTL_DISK_GET_CACHE_INFORMATION","features":[323]},{"name":"IOCTL_DISK_GET_DISK_ATTRIBUTES","features":[323]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY","features":[323]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY_EX","features":[323]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT","features":[323]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT_EX","features":[323]},{"name":"IOCTL_DISK_GET_LENGTH_INFO","features":[323]},{"name":"IOCTL_DISK_GET_MEDIA_TYPES","features":[323]},{"name":"IOCTL_DISK_GET_PARTITION_INFO","features":[323]},{"name":"IOCTL_DISK_GET_PARTITION_INFO_EX","features":[323]},{"name":"IOCTL_DISK_GET_WRITE_CACHE_STATE","features":[323]},{"name":"IOCTL_DISK_GROW_PARTITION","features":[323]},{"name":"IOCTL_DISK_HISTOGRAM_DATA","features":[323]},{"name":"IOCTL_DISK_HISTOGRAM_RESET","features":[323]},{"name":"IOCTL_DISK_HISTOGRAM_STRUCTURE","features":[323]},{"name":"IOCTL_DISK_IS_WRITABLE","features":[323]},{"name":"IOCTL_DISK_LOAD_MEDIA","features":[323]},{"name":"IOCTL_DISK_LOGGING","features":[323]},{"name":"IOCTL_DISK_MEDIA_REMOVAL","features":[323]},{"name":"IOCTL_DISK_PERFORMANCE","features":[323]},{"name":"IOCTL_DISK_PERFORMANCE_OFF","features":[323]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS","features":[323]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS_EX","features":[323]},{"name":"IOCTL_DISK_RELEASE","features":[323]},{"name":"IOCTL_DISK_REQUEST_DATA","features":[323]},{"name":"IOCTL_DISK_REQUEST_STRUCTURE","features":[323]},{"name":"IOCTL_DISK_RESERVE","features":[323]},{"name":"IOCTL_DISK_RESET_SNAPSHOT_INFO","features":[323]},{"name":"IOCTL_DISK_SENSE_DEVICE","features":[323]},{"name":"IOCTL_DISK_SET_CACHE_INFORMATION","features":[323]},{"name":"IOCTL_DISK_SET_DISK_ATTRIBUTES","features":[323]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT","features":[323]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT_EX","features":[323]},{"name":"IOCTL_DISK_SET_PARTITION_INFO","features":[323]},{"name":"IOCTL_DISK_SET_PARTITION_INFO_EX","features":[323]},{"name":"IOCTL_DISK_UPDATE_DRIVE_SIZE","features":[323]},{"name":"IOCTL_DISK_UPDATE_PROPERTIES","features":[323]},{"name":"IOCTL_DISK_VERIFY","features":[323]},{"name":"IOCTL_SCMBUS_BASE","features":[323]},{"name":"IOCTL_SCMBUS_DEVICE_FUNCTION_BASE","features":[323]},{"name":"IOCTL_SCM_BUS_GET_LOGICAL_DEVICES","features":[323]},{"name":"IOCTL_SCM_BUS_GET_PHYSICAL_DEVICES","features":[323]},{"name":"IOCTL_SCM_BUS_GET_REGIONS","features":[323]},{"name":"IOCTL_SCM_BUS_QUERY_PROPERTY","features":[323]},{"name":"IOCTL_SCM_BUS_REFRESH_NAMESPACE","features":[323]},{"name":"IOCTL_SCM_BUS_RUNTIME_FW_ACTIVATE","features":[323]},{"name":"IOCTL_SCM_BUS_SET_PROPERTY","features":[323]},{"name":"IOCTL_SCM_LD_GET_INTERLEAVE_SET","features":[323]},{"name":"IOCTL_SCM_LOGICAL_DEVICE_FUNCTION_BASE","features":[323]},{"name":"IOCTL_SCM_PD_FIRMWARE_ACTIVATE","features":[323]},{"name":"IOCTL_SCM_PD_FIRMWARE_DOWNLOAD","features":[323]},{"name":"IOCTL_SCM_PD_PASSTHROUGH","features":[323]},{"name":"IOCTL_SCM_PD_QUERY_PROPERTY","features":[323]},{"name":"IOCTL_SCM_PD_REINITIALIZE_MEDIA","features":[323]},{"name":"IOCTL_SCM_PD_SET_PROPERTY","features":[323]},{"name":"IOCTL_SCM_PD_UPDATE_MANAGEMENT_STATUS","features":[323]},{"name":"IOCTL_SCM_PHYSICAL_DEVICE_FUNCTION_BASE","features":[323]},{"name":"IOCTL_SERENUM_EXPOSE_HARDWARE","features":[323]},{"name":"IOCTL_SERENUM_GET_PORT_NAME","features":[323]},{"name":"IOCTL_SERENUM_PORT_DESC","features":[323]},{"name":"IOCTL_SERENUM_REMOVE_HARDWARE","features":[323]},{"name":"IOCTL_SERIAL_LSRMST_INSERT","features":[323]},{"name":"IOCTL_STORAGE_ALLOCATE_BC_STREAM","features":[323]},{"name":"IOCTL_STORAGE_ATTRIBUTE_MANAGEMENT","features":[323]},{"name":"IOCTL_STORAGE_BASE","features":[323]},{"name":"IOCTL_STORAGE_BC_VERSION","features":[323]},{"name":"IOCTL_STORAGE_BREAK_RESERVATION","features":[323]},{"name":"IOCTL_STORAGE_CHECK_PRIORITY_HINT_SUPPORT","features":[323]},{"name":"IOCTL_STORAGE_CHECK_VERIFY","features":[323]},{"name":"IOCTL_STORAGE_CHECK_VERIFY2","features":[323]},{"name":"IOCTL_STORAGE_DEVICE_POWER_CAP","features":[323]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_NOTIFY","features":[323]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_QUERY_CAPS","features":[323]},{"name":"IOCTL_STORAGE_DIAGNOSTIC","features":[323]},{"name":"IOCTL_STORAGE_EJECTION_CONTROL","features":[323]},{"name":"IOCTL_STORAGE_EJECT_MEDIA","features":[323]},{"name":"IOCTL_STORAGE_ENABLE_IDLE_POWER","features":[323]},{"name":"IOCTL_STORAGE_EVENT_NOTIFICATION","features":[323]},{"name":"IOCTL_STORAGE_FAILURE_PREDICTION_CONFIG","features":[323]},{"name":"IOCTL_STORAGE_FIND_NEW_DEVICES","features":[323]},{"name":"IOCTL_STORAGE_FIRMWARE_ACTIVATE","features":[323]},{"name":"IOCTL_STORAGE_FIRMWARE_DOWNLOAD","features":[323]},{"name":"IOCTL_STORAGE_FIRMWARE_GET_INFO","features":[323]},{"name":"IOCTL_STORAGE_FREE_BC_STREAM","features":[323]},{"name":"IOCTL_STORAGE_GET_BC_PROPERTIES","features":[323]},{"name":"IOCTL_STORAGE_GET_COUNTERS","features":[323]},{"name":"IOCTL_STORAGE_GET_DEVICE_INTERNAL_LOG","features":[323]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER","features":[323]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER_EX","features":[323]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY","features":[323]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY_RAW","features":[323]},{"name":"IOCTL_STORAGE_GET_HOTPLUG_INFO","features":[323]},{"name":"IOCTL_STORAGE_GET_IDLE_POWERUP_REASON","features":[323]},{"name":"IOCTL_STORAGE_GET_LB_PROVISIONING_MAP_RESOURCES","features":[323]},{"name":"IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER","features":[323]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES","features":[323]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES_EX","features":[323]},{"name":"IOCTL_STORAGE_GET_PHYSICAL_ELEMENT_STATUS","features":[323]},{"name":"IOCTL_STORAGE_LOAD_MEDIA","features":[323]},{"name":"IOCTL_STORAGE_LOAD_MEDIA2","features":[323]},{"name":"IOCTL_STORAGE_MANAGE_BYPASS_IO","features":[323]},{"name":"IOCTL_STORAGE_MANAGE_DATA_SET_ATTRIBUTES","features":[323]},{"name":"IOCTL_STORAGE_MCN_CONTROL","features":[323]},{"name":"IOCTL_STORAGE_MEDIA_REMOVAL","features":[323]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_IN","features":[323]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_OUT","features":[323]},{"name":"IOCTL_STORAGE_POWER_ACTIVE","features":[323]},{"name":"IOCTL_STORAGE_POWER_IDLE","features":[323]},{"name":"IOCTL_STORAGE_PREDICT_FAILURE","features":[323]},{"name":"IOCTL_STORAGE_PROTOCOL_COMMAND","features":[323]},{"name":"IOCTL_STORAGE_QUERY_PROPERTY","features":[323]},{"name":"IOCTL_STORAGE_READ_CAPACITY","features":[323]},{"name":"IOCTL_STORAGE_REINITIALIZE_MEDIA","features":[323]},{"name":"IOCTL_STORAGE_RELEASE","features":[323]},{"name":"IOCTL_STORAGE_REMOVE_ELEMENT_AND_TRUNCATE","features":[323]},{"name":"IOCTL_STORAGE_RESERVE","features":[323]},{"name":"IOCTL_STORAGE_RESET_BUS","features":[323]},{"name":"IOCTL_STORAGE_RESET_DEVICE","features":[323]},{"name":"IOCTL_STORAGE_RPMB_COMMAND","features":[323]},{"name":"IOCTL_STORAGE_SET_HOTPLUG_INFO","features":[323]},{"name":"IOCTL_STORAGE_SET_PROPERTY","features":[323]},{"name":"IOCTL_STORAGE_SET_TEMPERATURE_THRESHOLD","features":[323]},{"name":"IOCTL_STORAGE_START_DATA_INTEGRITY_CHECK","features":[323]},{"name":"IOCTL_STORAGE_STOP_DATA_INTEGRITY_CHECK","features":[323]},{"name":"IOMEGA_JAZ","features":[323]},{"name":"IOMEGA_ZIP","features":[323]},{"name":"IO_IRP_EXT_TRACK_OFFSET_HEADER","features":[323]},{"name":"KODAK_14_WO","features":[323]},{"name":"KeepPrefetchedData","features":[323]},{"name":"KeepReadData","features":[323]},{"name":"LMRQuerySessionInfo","features":[323]},{"name":"LMR_QUERY_INFO_CLASS","features":[323]},{"name":"LMR_QUERY_INFO_PARAM","features":[323]},{"name":"LMR_QUERY_SESSION_INFO","features":[323]},{"name":"LOCK_ELEMENT","features":[323]},{"name":"LOCK_UNLOCK_DOOR","features":[323]},{"name":"LOCK_UNLOCK_IEPORT","features":[323]},{"name":"LOCK_UNLOCK_KEYPAD","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_DATA","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_INDEX","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_MASK","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_SYSTEM","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_DENY_DEFRAG_SET","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_FS_SYSTEM_FILE","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_PAGE_FILE","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_TXF_SYSTEM_FILE","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_INPUT","features":[323]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_OUTPUT","features":[323]},{"name":"LTO_Accelis","features":[323]},{"name":"LTO_Ultrium","features":[323]},{"name":"MARK_HANDLE_CLOUD_SYNC","features":[323]},{"name":"MARK_HANDLE_DISABLE_FILE_METADATA_OPTIMIZATION","features":[323]},{"name":"MARK_HANDLE_ENABLE_CPU_CACHE","features":[323]},{"name":"MARK_HANDLE_ENABLE_USN_SOURCE_ON_PAGING_IO","features":[323]},{"name":"MARK_HANDLE_FILTER_METADATA","features":[323]},{"name":"MARK_HANDLE_INFO","features":[303,323]},{"name":"MARK_HANDLE_INFO32","features":[323]},{"name":"MARK_HANDLE_NOT_READ_COPY","features":[323]},{"name":"MARK_HANDLE_NOT_REALTIME","features":[323]},{"name":"MARK_HANDLE_NOT_TXF_SYSTEM_LOG","features":[323]},{"name":"MARK_HANDLE_PROTECT_CLUSTERS","features":[323]},{"name":"MARK_HANDLE_READ_COPY","features":[323]},{"name":"MARK_HANDLE_REALTIME","features":[323]},{"name":"MARK_HANDLE_RETURN_PURGE_FAILURE","features":[323]},{"name":"MARK_HANDLE_SKIP_COHERENCY_SYNC_DISALLOW_WRITES","features":[323]},{"name":"MARK_HANDLE_SUPPRESS_VOLUME_OPEN_FLUSH","features":[323]},{"name":"MARK_HANDLE_TXF_SYSTEM_LOG","features":[323]},{"name":"MAXIMUM_ENCRYPTION_VALUE","features":[323]},{"name":"MAX_FW_BUCKET_ID_LENGTH","features":[323]},{"name":"MAX_INTERFACE_CODES","features":[323]},{"name":"MAX_VOLUME_ID_SIZE","features":[323]},{"name":"MAX_VOLUME_TEMPLATE_SIZE","features":[323]},{"name":"MEDIA_CURRENTLY_MOUNTED","features":[323]},{"name":"MEDIA_ERASEABLE","features":[323]},{"name":"MEDIA_READ_ONLY","features":[323]},{"name":"MEDIA_READ_WRITE","features":[323]},{"name":"MEDIA_TYPE","features":[323]},{"name":"MEDIA_WRITE_ONCE","features":[323]},{"name":"MEDIA_WRITE_PROTECTED","features":[323]},{"name":"METHOD_BUFFERED","features":[323]},{"name":"METHOD_DIRECT_FROM_HARDWARE","features":[323]},{"name":"METHOD_DIRECT_TO_HARDWARE","features":[323]},{"name":"METHOD_IN_DIRECT","features":[323]},{"name":"METHOD_NEITHER","features":[323]},{"name":"METHOD_OUT_DIRECT","features":[323]},{"name":"MFT_ENUM_DATA_V0","features":[323]},{"name":"MFT_ENUM_DATA_V1","features":[323]},{"name":"MOVE_FILE_DATA","features":[303,323]},{"name":"MOVE_FILE_DATA32","features":[323]},{"name":"MOVE_FILE_RECORD_DATA","features":[303,323]},{"name":"MO_3_RW","features":[323]},{"name":"MO_5_LIMDOW","features":[323]},{"name":"MO_5_RW","features":[323]},{"name":"MO_5_WO","features":[323]},{"name":"MO_NFR_525","features":[323]},{"name":"MP2_8mm","features":[323]},{"name":"MP_8mm","features":[323]},{"name":"MiniQic","features":[323]},{"name":"NCTP","features":[323]},{"name":"NIKON_12_RW","features":[323]},{"name":"NTFS_EXTENDED_VOLUME_DATA","features":[323]},{"name":"NTFS_FILE_RECORD_INPUT_BUFFER","features":[323]},{"name":"NTFS_FILE_RECORD_OUTPUT_BUFFER","features":[323]},{"name":"NTFS_STATISTICS","features":[323]},{"name":"NTFS_STATISTICS_EX","features":[323]},{"name":"NTFS_VOLUME_DATA_BUFFER","features":[323]},{"name":"NVMeDataTypeFeature","features":[323]},{"name":"NVMeDataTypeIdentify","features":[323]},{"name":"NVMeDataTypeLogPage","features":[323]},{"name":"NVMeDataTypeUnknown","features":[323]},{"name":"OBSOLETE_DISK_GET_WRITE_CACHE_STATE","features":[323]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_BUS","features":[323]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_DEVICE","features":[323]},{"name":"OFFLOAD_READ_FLAG_ALL_ZERO_BEYOND_CURRENT_RANGE","features":[323]},{"name":"OPLOCK_LEVEL_CACHE_HANDLE","features":[323]},{"name":"OPLOCK_LEVEL_CACHE_READ","features":[323]},{"name":"OPLOCK_LEVEL_CACHE_WRITE","features":[323]},{"name":"PARTIITON_OS_DATA","features":[323]},{"name":"PARTITION_BSP","features":[323]},{"name":"PARTITION_DM","features":[323]},{"name":"PARTITION_DPP","features":[323]},{"name":"PARTITION_ENTRY_UNUSED","features":[323]},{"name":"PARTITION_EXTENDED","features":[323]},{"name":"PARTITION_EZDRIVE","features":[323]},{"name":"PARTITION_FAT32","features":[323]},{"name":"PARTITION_FAT32_XINT13","features":[323]},{"name":"PARTITION_FAT_12","features":[323]},{"name":"PARTITION_FAT_16","features":[323]},{"name":"PARTITION_GPT","features":[323]},{"name":"PARTITION_HUGE","features":[323]},{"name":"PARTITION_IFS","features":[323]},{"name":"PARTITION_INFORMATION","features":[303,323]},{"name":"PARTITION_INFORMATION_EX","features":[303,323]},{"name":"PARTITION_INFORMATION_GPT","features":[323]},{"name":"PARTITION_INFORMATION_MBR","features":[303,323]},{"name":"PARTITION_LDM","features":[323]},{"name":"PARTITION_MAIN_OS","features":[323]},{"name":"PARTITION_MSFT_RECOVERY","features":[323]},{"name":"PARTITION_NTFT","features":[323]},{"name":"PARTITION_OS2BOOTMGR","features":[323]},{"name":"PARTITION_PREP","features":[323]},{"name":"PARTITION_PRE_INSTALLED","features":[323]},{"name":"PARTITION_SPACES","features":[323]},{"name":"PARTITION_SPACES_DATA","features":[323]},{"name":"PARTITION_STYLE","features":[323]},{"name":"PARTITION_STYLE_GPT","features":[323]},{"name":"PARTITION_STYLE_MBR","features":[323]},{"name":"PARTITION_STYLE_RAW","features":[323]},{"name":"PARTITION_SYSTEM","features":[323]},{"name":"PARTITION_UNIX","features":[323]},{"name":"PARTITION_WINDOWS_SYSTEM","features":[323]},{"name":"PARTITION_XENIX_1","features":[323]},{"name":"PARTITION_XENIX_2","features":[323]},{"name":"PARTITION_XINT13","features":[323]},{"name":"PARTITION_XINT13_EXTENDED","features":[323]},{"name":"PATHNAME_BUFFER","features":[323]},{"name":"PC_5_RW","features":[323]},{"name":"PC_5_WO","features":[323]},{"name":"PD_5_RW","features":[323]},{"name":"PERF_BIN","features":[323]},{"name":"PERSISTENT_RESERVE_COMMAND","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_BACKED_BY_WIM","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_CHKDSK_RAN_ONCE","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_CONTAINS_BACKING_WIM","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_DAX_FORMATTED","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_DEV_VOLUME","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_GLOBAL_METADATA_NO_SEEK_PENALTY","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_LOCAL_METADATA_NO_SEEK_PENALTY","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_MODIFIED_BY_CHKDSK","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_NO_HEAT_GATHERING","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_NO_WRITE_AUTO_TIERING","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_REALLOCATE_ALL_DATA_WRITES","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_SHORT_NAME_CREATION_DISABLED","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_TRUSTED_VOLUME","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_TXF_DISABLED","features":[323]},{"name":"PERSISTENT_VOLUME_STATE_VOLUME_SCRUB_DISABLED","features":[323]},{"name":"PHILIPS_12_WO","features":[323]},{"name":"PHYSICAL_ELEMENT_STATUS","features":[323]},{"name":"PHYSICAL_ELEMENT_STATUS_DESCRIPTOR","features":[323]},{"name":"PHYSICAL_ELEMENT_STATUS_REQUEST","features":[323]},{"name":"PINNACLE_APEX_5_RW","features":[323]},{"name":"PIO_IRP_EXT_PROCESS_TRACKED_OFFSET_CALLBACK","features":[323]},{"name":"PLEX_READ_DATA_REQUEST","features":[323]},{"name":"PREVENT_MEDIA_REMOVAL","features":[303,323]},{"name":"PRODUCT_ID_LENGTH","features":[323]},{"name":"PROJFS_PROTOCOL_VERSION","features":[323]},{"name":"PropertyExistsQuery","features":[323]},{"name":"PropertyExistsSet","features":[323]},{"name":"PropertyMaskQuery","features":[323]},{"name":"PropertyQueryMaxDefined","features":[323]},{"name":"PropertySetMaxDefined","features":[323]},{"name":"PropertyStandardQuery","features":[323]},{"name":"PropertyStandardSet","features":[323]},{"name":"ProtocolTypeAta","features":[323]},{"name":"ProtocolTypeMaxReserved","features":[323]},{"name":"ProtocolTypeNvme","features":[323]},{"name":"ProtocolTypeProprietary","features":[323]},{"name":"ProtocolTypeScsi","features":[323]},{"name":"ProtocolTypeSd","features":[323]},{"name":"ProtocolTypeUfs","features":[323]},{"name":"ProtocolTypeUnknown","features":[323]},{"name":"QIC","features":[323]},{"name":"QUERY_BAD_RANGES_INPUT","features":[323]},{"name":"QUERY_BAD_RANGES_INPUT_RANGE","features":[323]},{"name":"QUERY_BAD_RANGES_OUTPUT","features":[323]},{"name":"QUERY_BAD_RANGES_OUTPUT_RANGE","features":[323]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_GUEST_VOLUMES","features":[323]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_HOST_VOLUMES","features":[323]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE","features":[323]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_CLUSTERS","features":[323]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_FILEID","features":[323]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_NONE","features":[323]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_STORAGE_RESERVE_ID","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTENTS","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTRA_INFO","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FILES_WITH_DSC_ATTRIBUTE","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FULL_PATH_IN_NAMES","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_NAMES","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_ONLY_FILES_WITH_SPECIFIC_ATTRIBUTES","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS_WITH_NO_CLUSTERS_ALLOCATED","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DATA_ATTRIBUTE","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DSC_ATTRIBUTE","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EA_ATTRIBUTE","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EFS_ATTRIBUTE","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_REPARSE_ATTRIBUTE","features":[323]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_TXF_ATTRIBUTE","features":[323]},{"name":"QUERY_FILE_LAYOUT_INPUT","features":[323]},{"name":"QUERY_FILE_LAYOUT_NUM_FILTER_TYPES","features":[323]},{"name":"QUERY_FILE_LAYOUT_OUTPUT","features":[323]},{"name":"QUERY_FILE_LAYOUT_REPARSE_DATA_INVALID","features":[323]},{"name":"QUERY_FILE_LAYOUT_REPARSE_TAG_INVALID","features":[323]},{"name":"QUERY_FILE_LAYOUT_RESTART","features":[323]},{"name":"QUERY_FILE_LAYOUT_SINGLE_INSTANCED","features":[323]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_READ","features":[323]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_WRITE","features":[323]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_NO_DEFRAG_VOLUME","features":[323]},{"name":"READ_ATTRIBUTES","features":[323]},{"name":"READ_ATTRIBUTE_BUFFER_SIZE","features":[323]},{"name":"READ_COMPRESSION_INFO_VALID","features":[323]},{"name":"READ_COPY_NUMBER_BYPASS_CACHE_FLAG","features":[323]},{"name":"READ_COPY_NUMBER_KEY","features":[323]},{"name":"READ_ELEMENT_ADDRESS_INFO","features":[323]},{"name":"READ_FILE_USN_DATA","features":[323]},{"name":"READ_THRESHOLDS","features":[323]},{"name":"READ_THRESHOLD_BUFFER_SIZE","features":[323]},{"name":"READ_USN_JOURNAL_DATA_V0","features":[323]},{"name":"READ_USN_JOURNAL_DATA_V1","features":[323]},{"name":"REASSIGN_BLOCKS","features":[323]},{"name":"REASSIGN_BLOCKS_EX","features":[323]},{"name":"RECOVERED_READS_VALID","features":[323]},{"name":"RECOVERED_WRITES_VALID","features":[323]},{"name":"REFS_SMR_VOLUME_GC_ACTION","features":[323]},{"name":"REFS_SMR_VOLUME_GC_METHOD","features":[323]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS","features":[323]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS_VERSION_V1","features":[323]},{"name":"REFS_SMR_VOLUME_GC_STATE","features":[323]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT","features":[323]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V0","features":[323]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V1","features":[323]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[323]},{"name":"REMOVE_ELEMENT_AND_TRUNCATE_REQUEST","features":[323]},{"name":"REPAIR_COPIES_INPUT","features":[323]},{"name":"REPAIR_COPIES_OUTPUT","features":[323]},{"name":"REPLACE_ALTERNATE","features":[323]},{"name":"REPLACE_PRIMARY","features":[323]},{"name":"REQUEST_OPLOCK_CURRENT_VERSION","features":[323]},{"name":"REQUEST_OPLOCK_INPUT_BUFFER","features":[323]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_ACK","features":[323]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_COMPLETE_ACK_ON_CLOSE","features":[323]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_REQUEST","features":[323]},{"name":"REQUEST_OPLOCK_OUTPUT_BUFFER","features":[323]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_ACK_REQUIRED","features":[323]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_MODES_PROVIDED","features":[323]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_WRITABLE_SECTION_PRESENT","features":[323]},{"name":"REQUEST_RAW_ENCRYPTED_DATA","features":[323]},{"name":"RETRACT_IEPORT","features":[323]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[323]},{"name":"RETRIEVAL_POINTERS_BUFFER","features":[323]},{"name":"RETRIEVAL_POINTER_BASE","features":[323]},{"name":"RETRIEVAL_POINTER_COUNT","features":[323]},{"name":"RETURN_SMART_STATUS","features":[323]},{"name":"REVISION_LENGTH","features":[323]},{"name":"RemovableMedia","features":[323]},{"name":"RequestLocation","features":[323]},{"name":"RequestSize","features":[323]},{"name":"SAIT","features":[323]},{"name":"SAVE_ATTRIBUTE_VALUES","features":[323]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICES_INFO","features":[323]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICE_INFO","features":[323]},{"name":"SCM_BUS_DEDICATED_MEMORY_STATE","features":[303,323]},{"name":"SCM_BUS_FIRMWARE_ACTIVATION_STATE","features":[323]},{"name":"SCM_BUS_PROPERTY_ID","features":[323]},{"name":"SCM_BUS_PROPERTY_QUERY","features":[323]},{"name":"SCM_BUS_PROPERTY_SET","features":[323]},{"name":"SCM_BUS_QUERY_TYPE","features":[323]},{"name":"SCM_BUS_RUNTIME_FW_ACTIVATION_INFO","features":[303,323]},{"name":"SCM_BUS_SET_TYPE","features":[323]},{"name":"SCM_INTERLEAVED_PD_INFO","features":[323]},{"name":"SCM_LD_INTERLEAVE_SET_INFO","features":[323]},{"name":"SCM_LOGICAL_DEVICES","features":[323]},{"name":"SCM_LOGICAL_DEVICE_INSTANCE","features":[323]},{"name":"SCM_MAX_SYMLINK_LEN_IN_CHARS","features":[323]},{"name":"SCM_PD_DESCRIPTOR_HEADER","features":[323]},{"name":"SCM_PD_DEVICE_HANDLE","features":[323]},{"name":"SCM_PD_DEVICE_INFO","features":[323]},{"name":"SCM_PD_DEVICE_SPECIFIC_INFO","features":[323]},{"name":"SCM_PD_DEVICE_SPECIFIC_PROPERTY","features":[323]},{"name":"SCM_PD_FIRMWARE_ACTIVATE","features":[323]},{"name":"SCM_PD_FIRMWARE_ACTIVATION_STATE","features":[323]},{"name":"SCM_PD_FIRMWARE_DOWNLOAD","features":[323]},{"name":"SCM_PD_FIRMWARE_INFO","features":[323]},{"name":"SCM_PD_FIRMWARE_LAST_DOWNLOAD","features":[323]},{"name":"SCM_PD_FIRMWARE_REVISION_LENGTH_BYTES","features":[323]},{"name":"SCM_PD_FIRMWARE_SLOT_INFO","features":[323]},{"name":"SCM_PD_FRU_ID_STRING","features":[323]},{"name":"SCM_PD_HEALTH_NOTIFICATION_DATA","features":[323]},{"name":"SCM_PD_HEALTH_STATUS","features":[323]},{"name":"SCM_PD_LAST_FW_ACTIVATION_STATUS","features":[323]},{"name":"SCM_PD_LOCATION_STRING","features":[323]},{"name":"SCM_PD_MANAGEMENT_STATUS","features":[323]},{"name":"SCM_PD_MAX_OPERATIONAL_STATUS","features":[323]},{"name":"SCM_PD_MEDIA_REINITIALIZATION_STATUS","features":[323]},{"name":"SCM_PD_OPERATIONAL_STATUS","features":[323]},{"name":"SCM_PD_OPERATIONAL_STATUS_REASON","features":[323]},{"name":"SCM_PD_PASSTHROUGH_INPUT","features":[323]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_INPUT","features":[323]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_OUTPUT","features":[323]},{"name":"SCM_PD_PASSTHROUGH_OUTPUT","features":[323]},{"name":"SCM_PD_PROPERTY_ID","features":[323]},{"name":"SCM_PD_PROPERTY_NAME_LENGTH_IN_CHARS","features":[323]},{"name":"SCM_PD_PROPERTY_QUERY","features":[323]},{"name":"SCM_PD_PROPERTY_SET","features":[323]},{"name":"SCM_PD_QUERY_TYPE","features":[323]},{"name":"SCM_PD_REINITIALIZE_MEDIA_INPUT","features":[323]},{"name":"SCM_PD_REINITIALIZE_MEDIA_OUTPUT","features":[323]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_ARM_STATE","features":[303,323]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_INFO","features":[323]},{"name":"SCM_PD_SET_TYPE","features":[323]},{"name":"SCM_PHYSICAL_DEVICES","features":[323]},{"name":"SCM_PHYSICAL_DEVICE_INSTANCE","features":[323]},{"name":"SCM_REGION","features":[323]},{"name":"SCM_REGIONS","features":[323]},{"name":"SCM_REGION_FLAG","features":[323]},{"name":"SD_CHANGE_MACHINE_SID_INPUT","features":[323]},{"name":"SD_CHANGE_MACHINE_SID_OUTPUT","features":[323]},{"name":"SD_ENUM_SDS_ENTRY","features":[323]},{"name":"SD_ENUM_SDS_INPUT","features":[323]},{"name":"SD_ENUM_SDS_OUTPUT","features":[323]},{"name":"SD_GLOBAL_CHANGE_INPUT","features":[323]},{"name":"SD_GLOBAL_CHANGE_OUTPUT","features":[323]},{"name":"SD_GLOBAL_CHANGE_TYPE_ENUM_SDS","features":[323]},{"name":"SD_GLOBAL_CHANGE_TYPE_MACHINE_SID","features":[323]},{"name":"SD_GLOBAL_CHANGE_TYPE_QUERY_STATS","features":[323]},{"name":"SD_QUERY_STATS_INPUT","features":[323]},{"name":"SD_QUERY_STATS_OUTPUT","features":[323]},{"name":"SEARCH_ALL","features":[323]},{"name":"SEARCH_ALL_NO_SEQ","features":[323]},{"name":"SEARCH_ALTERNATE","features":[323]},{"name":"SEARCH_ALT_NO_SEQ","features":[323]},{"name":"SEARCH_PRIMARY","features":[323]},{"name":"SEARCH_PRI_NO_SEQ","features":[323]},{"name":"SENDCMDINPARAMS","features":[323]},{"name":"SENDCMDOUTPARAMS","features":[323]},{"name":"SERIAL_IOC_FCR_DMA_MODE","features":[323]},{"name":"SERIAL_IOC_FCR_FIFO_ENABLE","features":[323]},{"name":"SERIAL_IOC_FCR_RCVR_RESET","features":[323]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_LSB","features":[323]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_MSB","features":[323]},{"name":"SERIAL_IOC_FCR_RES1","features":[323]},{"name":"SERIAL_IOC_FCR_RES2","features":[323]},{"name":"SERIAL_IOC_FCR_XMIT_RESET","features":[323]},{"name":"SERIAL_IOC_MCR_DTR","features":[323]},{"name":"SERIAL_IOC_MCR_LOOP","features":[323]},{"name":"SERIAL_IOC_MCR_OUT1","features":[323]},{"name":"SERIAL_IOC_MCR_OUT2","features":[323]},{"name":"SERIAL_IOC_MCR_RTS","features":[323]},{"name":"SERIAL_NUMBER_LENGTH","features":[323]},{"name":"SET_DAX_ALLOC_ALIGNMENT_HINT_INPUT","features":[323]},{"name":"SET_DISK_ATTRIBUTES","features":[303,323]},{"name":"SET_PARTITION_INFORMATION","features":[323]},{"name":"SET_PARTITION_INFORMATION_EX","features":[323]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[323]},{"name":"SET_PURGE_FAILURE_MODE_ENABLED","features":[323]},{"name":"SET_PURGE_FAILURE_MODE_INPUT","features":[323]},{"name":"SET_REPAIR_DISABLED_AND_BUGCHECK_ON_CORRUPT","features":[323]},{"name":"SET_REPAIR_ENABLED","features":[323]},{"name":"SET_REPAIR_VALID_MASK","features":[323]},{"name":"SET_REPAIR_WARN_ABOUT_DATA_LOSS","features":[323]},{"name":"SHRINK_VOLUME_INFORMATION","features":[323]},{"name":"SHRINK_VOLUME_REQUEST_TYPES","features":[323]},{"name":"SI_COPYFILE","features":[323]},{"name":"SMART_ABORT_OFFLINE_SELFTEST","features":[323]},{"name":"SMART_CMD","features":[323]},{"name":"SMART_CYL_HI","features":[323]},{"name":"SMART_CYL_LOW","features":[323]},{"name":"SMART_ERROR_NO_MEM","features":[323]},{"name":"SMART_EXTENDED_SELFTEST_CAPTIVE","features":[323]},{"name":"SMART_EXTENDED_SELFTEST_OFFLINE","features":[323]},{"name":"SMART_GET_VERSION","features":[323]},{"name":"SMART_IDE_ERROR","features":[323]},{"name":"SMART_INVALID_BUFFER","features":[323]},{"name":"SMART_INVALID_COMMAND","features":[323]},{"name":"SMART_INVALID_DRIVE","features":[323]},{"name":"SMART_INVALID_FLAG","features":[323]},{"name":"SMART_INVALID_IOCTL","features":[323]},{"name":"SMART_INVALID_REGISTER","features":[323]},{"name":"SMART_LOG_SECTOR_SIZE","features":[323]},{"name":"SMART_NOT_SUPPORTED","features":[323]},{"name":"SMART_NO_ERROR","features":[323]},{"name":"SMART_NO_IDE_DEVICE","features":[323]},{"name":"SMART_OFFLINE_ROUTINE_OFFLINE","features":[323]},{"name":"SMART_RCV_DRIVE_DATA","features":[323]},{"name":"SMART_RCV_DRIVE_DATA_EX","features":[323]},{"name":"SMART_READ_LOG","features":[323]},{"name":"SMART_SEND_DRIVE_COMMAND","features":[323]},{"name":"SMART_SHORT_SELFTEST_CAPTIVE","features":[323]},{"name":"SMART_SHORT_SELFTEST_OFFLINE","features":[323]},{"name":"SMART_WRITE_LOG","features":[323]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_INPUT","features":[323]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_OUTPUT","features":[323]},{"name":"SONY_12_WO","features":[323]},{"name":"SONY_D2","features":[323]},{"name":"SONY_DTF","features":[323]},{"name":"SPACES_TRACKED_OFFSET_HEADER_FLAG","features":[323]},{"name":"SRB_TYPE_SCSI_REQUEST_BLOCK","features":[323]},{"name":"SRB_TYPE_STORAGE_REQUEST_BLOCK","features":[323]},{"name":"STARTING_LCN_INPUT_BUFFER","features":[323]},{"name":"STARTING_LCN_INPUT_BUFFER_EX","features":[323]},{"name":"STARTING_VCN_INPUT_BUFFER","features":[323]},{"name":"STK_9840","features":[323]},{"name":"STK_9940","features":[323]},{"name":"STK_DATA_D3","features":[323]},{"name":"STORAGE_ACCESS_ALIGNMENT_DESCRIPTOR","features":[323]},{"name":"STORAGE_ADAPTER_DESCRIPTOR","features":[303,323]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER","features":[323]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER_V1_MAX_LENGTH","features":[323]},{"name":"STORAGE_ADDRESS_TYPE_BTL8","features":[323]},{"name":"STORAGE_ALLOCATE_BC_STREAM_INPUT","features":[303,323]},{"name":"STORAGE_ALLOCATE_BC_STREAM_OUTPUT","features":[323]},{"name":"STORAGE_ASSOCIATION_TYPE","features":[323]},{"name":"STORAGE_ATTRIBUTE_ASYNC_EVENT_NOTIFICATION","features":[323]},{"name":"STORAGE_ATTRIBUTE_BLOCK_IO","features":[323]},{"name":"STORAGE_ATTRIBUTE_BYTE_ADDRESSABLE_IO","features":[323]},{"name":"STORAGE_ATTRIBUTE_DYNAMIC_PERSISTENCE","features":[323]},{"name":"STORAGE_ATTRIBUTE_MGMT","features":[323]},{"name":"STORAGE_ATTRIBUTE_MGMT_ACTION","features":[323]},{"name":"STORAGE_ATTRIBUTE_PERF_SIZE_INDEPENDENT","features":[323]},{"name":"STORAGE_ATTRIBUTE_VOLATILE","features":[323]},{"name":"STORAGE_BREAK_RESERVATION_REQUEST","features":[323]},{"name":"STORAGE_BUS_RESET_REQUEST","features":[323]},{"name":"STORAGE_COMPONENT_HEALTH_STATUS","features":[323]},{"name":"STORAGE_COMPONENT_ROLE_CACHE","features":[323]},{"name":"STORAGE_COMPONENT_ROLE_DATA","features":[323]},{"name":"STORAGE_COMPONENT_ROLE_TIERING","features":[323]},{"name":"STORAGE_COUNTER","features":[323]},{"name":"STORAGE_COUNTERS","features":[323]},{"name":"STORAGE_COUNTER_TYPE","features":[323]},{"name":"STORAGE_CRASH_TELEMETRY_REGKEY","features":[323]},{"name":"STORAGE_CRYPTO_ALGORITHM_ID","features":[323]},{"name":"STORAGE_CRYPTO_CAPABILITY","features":[323]},{"name":"STORAGE_CRYPTO_CAPABILITY_VERSION_1","features":[323]},{"name":"STORAGE_CRYPTO_DESCRIPTOR","features":[323]},{"name":"STORAGE_CRYPTO_DESCRIPTOR_VERSION_1","features":[323]},{"name":"STORAGE_CRYPTO_KEY_SIZE","features":[323]},{"name":"STORAGE_DESCRIPTOR_HEADER","features":[323]},{"name":"STORAGE_DEVICE_ATTRIBUTES_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_DESCRIPTOR","features":[303,322,323]},{"name":"STORAGE_DEVICE_FAULT_DOMAIN_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_FLAGS_PAGE_83_DEVICEGUID","features":[323]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_CONFLICT","features":[323]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_NOHWID","features":[323]},{"name":"STORAGE_DEVICE_FORM_FACTOR","features":[323]},{"name":"STORAGE_DEVICE_ID_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_LED_STATE_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_LOCATION_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_MANAGEMENT_STATUS","features":[323]},{"name":"STORAGE_DEVICE_MAX_OPERATIONAL_STATUS","features":[323]},{"name":"STORAGE_DEVICE_NUMA_NODE_UNKNOWN","features":[323]},{"name":"STORAGE_DEVICE_NUMA_PROPERTY","features":[323]},{"name":"STORAGE_DEVICE_NUMBER","features":[323]},{"name":"STORAGE_DEVICE_NUMBERS","features":[323]},{"name":"STORAGE_DEVICE_NUMBER_EX","features":[323]},{"name":"STORAGE_DEVICE_POWER_CAP","features":[323]},{"name":"STORAGE_DEVICE_POWER_CAP_UNITS","features":[323]},{"name":"STORAGE_DEVICE_POWER_CAP_VERSION_V1","features":[323]},{"name":"STORAGE_DEVICE_RESILIENCY_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY","features":[303,323]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY_V2","features":[303,323]},{"name":"STORAGE_DEVICE_TELEMETRY_REGKEY","features":[323]},{"name":"STORAGE_DEVICE_TIERING_DESCRIPTOR","features":[323]},{"name":"STORAGE_DEVICE_UNSAFE_SHUTDOWN_COUNT","features":[323]},{"name":"STORAGE_DIAGNOSTIC_DATA","features":[323]},{"name":"STORAGE_DIAGNOSTIC_FLAG_ADAPTER_REQUEST","features":[323]},{"name":"STORAGE_DIAGNOSTIC_LEVEL","features":[323]},{"name":"STORAGE_DIAGNOSTIC_REQUEST","features":[323]},{"name":"STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[323]},{"name":"STORAGE_DISK_HEALTH_STATUS","features":[323]},{"name":"STORAGE_DISK_OPERATIONAL_STATUS","features":[323]},{"name":"STORAGE_ENCRYPTION_TYPE","features":[323]},{"name":"STORAGE_EVENT_DEVICE_OPERATION","features":[323]},{"name":"STORAGE_EVENT_DEVICE_STATUS","features":[323]},{"name":"STORAGE_EVENT_MEDIA_STATUS","features":[323]},{"name":"STORAGE_EVENT_NOTIFICATION","features":[323]},{"name":"STORAGE_EVENT_NOTIFICATION_VERSION_V1","features":[323]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG","features":[303,323]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG_V1","features":[323]},{"name":"STORAGE_FRU_ID_DESCRIPTOR","features":[323]},{"name":"STORAGE_GET_BC_PROPERTIES_OUTPUT","features":[323]},{"name":"STORAGE_HOTPLUG_INFO","features":[303,323]},{"name":"STORAGE_HW_ENDURANCE_DATA_DESCRIPTOR","features":[323]},{"name":"STORAGE_HW_ENDURANCE_INFO","features":[323]},{"name":"STORAGE_HW_FIRMWARE_ACTIVATE","features":[323]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD","features":[323]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD_V2","features":[323]},{"name":"STORAGE_HW_FIRMWARE_INFO","features":[303,323]},{"name":"STORAGE_HW_FIRMWARE_INFO_QUERY","features":[323]},{"name":"STORAGE_HW_FIRMWARE_INVALID_SLOT","features":[323]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[323]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[323]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[323]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[323]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[323]},{"name":"STORAGE_HW_FIRMWARE_REVISION_LENGTH","features":[323]},{"name":"STORAGE_HW_FIRMWARE_SLOT_INFO","features":[323]},{"name":"STORAGE_IDENTIFIER","features":[323]},{"name":"STORAGE_IDENTIFIER_CODE_SET","features":[323]},{"name":"STORAGE_IDENTIFIER_TYPE","features":[323]},{"name":"STORAGE_IDLE_POWER","features":[323]},{"name":"STORAGE_IDLE_POWERUP_REASON","features":[323]},{"name":"STORAGE_IDLE_POWERUP_REASON_VERSION_V1","features":[323]},{"name":"STORAGE_ID_NAA_FORMAT","features":[323]},{"name":"STORAGE_LB_PROVISIONING_MAP_RESOURCES","features":[323]},{"name":"STORAGE_MEDIA_SERIAL_NUMBER_DATA","features":[323]},{"name":"STORAGE_MEDIA_TYPE","features":[323]},{"name":"STORAGE_MEDIUM_PRODUCT_TYPE_DESCRIPTOR","features":[323]},{"name":"STORAGE_MINIPORT_DESCRIPTOR","features":[303,323]},{"name":"STORAGE_OFFLOAD_MAX_TOKEN_LENGTH","features":[323]},{"name":"STORAGE_OFFLOAD_READ_OUTPUT","features":[323]},{"name":"STORAGE_OFFLOAD_READ_RANGE_TRUNCATED","features":[323]},{"name":"STORAGE_OFFLOAD_TOKEN","features":[323]},{"name":"STORAGE_OFFLOAD_TOKEN_ID_LENGTH","features":[323]},{"name":"STORAGE_OFFLOAD_TOKEN_INVALID","features":[323]},{"name":"STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA","features":[323]},{"name":"STORAGE_OFFLOAD_WRITE_OUTPUT","features":[323]},{"name":"STORAGE_OFFLOAD_WRITE_RANGE_TRUNCATED","features":[323]},{"name":"STORAGE_OPERATIONAL_REASON","features":[323]},{"name":"STORAGE_OPERATIONAL_STATUS_REASON","features":[323]},{"name":"STORAGE_PHYSICAL_ADAPTER_DATA","features":[303,323]},{"name":"STORAGE_PHYSICAL_DEVICE_DATA","features":[323]},{"name":"STORAGE_PHYSICAL_NODE_DATA","features":[323]},{"name":"STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR","features":[323]},{"name":"STORAGE_PORT_CODE_SET","features":[323]},{"name":"STORAGE_POWERUP_REASON_TYPE","features":[323]},{"name":"STORAGE_PREDICT_FAILURE","features":[323]},{"name":"STORAGE_PRIORITY_HINT_SUPPORT","features":[323]},{"name":"STORAGE_PRIORITY_HINT_SUPPORTED","features":[323]},{"name":"STORAGE_PROPERTY_ID","features":[323]},{"name":"STORAGE_PROPERTY_QUERY","features":[323]},{"name":"STORAGE_PROPERTY_SET","features":[323]},{"name":"STORAGE_PROTOCOL_ATA_DATA_TYPE","features":[323]},{"name":"STORAGE_PROTOCOL_COMMAND","features":[323]},{"name":"STORAGE_PROTOCOL_COMMAND_FLAG_ADAPTER_REQUEST","features":[323]},{"name":"STORAGE_PROTOCOL_COMMAND_LENGTH_NVME","features":[323]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR","features":[323]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT","features":[323]},{"name":"STORAGE_PROTOCOL_DATA_SUBVALUE_GET_LOG_PAGE","features":[323]},{"name":"STORAGE_PROTOCOL_NVME_DATA_TYPE","features":[323]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA","features":[323]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA_EXT","features":[323]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_ADMIN_COMMAND","features":[323]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_NVM_COMMAND","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_BUSY","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_DATA_OVERRUN","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_ERROR","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_INSUFFICIENT_RESOURCES","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_INVALID_REQUEST","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_NOT_SUPPORTED","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_NO_DEVICE","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_PENDING","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_SUCCESS","features":[323]},{"name":"STORAGE_PROTOCOL_STATUS_THROTTLED_REQUEST","features":[323]},{"name":"STORAGE_PROTOCOL_STRUCTURE_VERSION","features":[323]},{"name":"STORAGE_PROTOCOL_TYPE","features":[323]},{"name":"STORAGE_PROTOCOL_UFS_DATA_TYPE","features":[323]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV1_ENTRY","features":[515,323]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV2_ENTRY","features":[515,323]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_REQUEST","features":[323]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_RESPONSE","features":[515,323]},{"name":"STORAGE_QUERY_TYPE","features":[323]},{"name":"STORAGE_READ_CAPACITY","features":[323]},{"name":"STORAGE_REINITIALIZE_MEDIA","features":[323]},{"name":"STORAGE_RESERVE_ID","features":[323]},{"name":"STORAGE_RPMB_COMMAND_TYPE","features":[323]},{"name":"STORAGE_RPMB_DATA_FRAME","features":[323]},{"name":"STORAGE_RPMB_DESCRIPTOR","features":[323]},{"name":"STORAGE_RPMB_DESCRIPTOR_VERSION_1","features":[323]},{"name":"STORAGE_RPMB_FRAME_TYPE","features":[323]},{"name":"STORAGE_RPMB_MINIMUM_RELIABLE_WRITE_SIZE","features":[323]},{"name":"STORAGE_SANITIZE_METHOD","features":[323]},{"name":"STORAGE_SET_TYPE","features":[323]},{"name":"STORAGE_SPEC_VERSION","features":[323]},{"name":"STORAGE_SUPPORTED_FEATURES_BYPASS_IO","features":[323]},{"name":"STORAGE_SUPPORTED_FEATURES_MASK","features":[323]},{"name":"STORAGE_TEMPERATURE_DATA_DESCRIPTOR","features":[303,323]},{"name":"STORAGE_TEMPERATURE_INFO","features":[303,323]},{"name":"STORAGE_TEMPERATURE_THRESHOLD","features":[303,323]},{"name":"STORAGE_TEMPERATURE_THRESHOLD_FLAG_ADAPTER_REQUEST","features":[323]},{"name":"STORAGE_TEMPERATURE_VALUE_NOT_REPORTED","features":[323]},{"name":"STORAGE_TIER","features":[323]},{"name":"STORAGE_TIER_CLASS","features":[323]},{"name":"STORAGE_TIER_DESCRIPTION_LENGTH","features":[323]},{"name":"STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[323]},{"name":"STORAGE_TIER_FLAG_PARITY","features":[323]},{"name":"STORAGE_TIER_FLAG_READ_CACHE","features":[323]},{"name":"STORAGE_TIER_FLAG_SMR","features":[323]},{"name":"STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[323]},{"name":"STORAGE_TIER_MEDIA_TYPE","features":[323]},{"name":"STORAGE_TIER_NAME_LENGTH","features":[323]},{"name":"STORAGE_TIER_REGION","features":[323]},{"name":"STORAGE_WRITE_CACHE_PROPERTY","features":[303,323]},{"name":"STORAGE_ZONED_DEVICE_DESCRIPTOR","features":[303,323]},{"name":"STORAGE_ZONED_DEVICE_TYPES","features":[323]},{"name":"STORAGE_ZONES_ATTRIBUTES","features":[323]},{"name":"STORAGE_ZONE_CONDITION","features":[323]},{"name":"STORAGE_ZONE_DESCRIPTOR","features":[303,323]},{"name":"STORAGE_ZONE_GROUP","features":[323]},{"name":"STORAGE_ZONE_TYPES","features":[323]},{"name":"STORATTRIBUTE_MANAGEMENT_STATE","features":[323]},{"name":"STORATTRIBUTE_NONE","features":[323]},{"name":"STREAMS_ASSOCIATE_ID_CLEAR","features":[323]},{"name":"STREAMS_ASSOCIATE_ID_INPUT_BUFFER","features":[323]},{"name":"STREAMS_ASSOCIATE_ID_SET","features":[323]},{"name":"STREAMS_INVALID_ID","features":[323]},{"name":"STREAMS_MAX_ID","features":[323]},{"name":"STREAMS_QUERY_ID_OUTPUT_BUFFER","features":[323]},{"name":"STREAMS_QUERY_PARAMETERS_OUTPUT_BUFFER","features":[323]},{"name":"STREAM_CLEAR_ENCRYPTION","features":[323]},{"name":"STREAM_EXTENT_ENTRY","features":[323]},{"name":"STREAM_EXTENT_ENTRY_ALL_EXTENTS","features":[323]},{"name":"STREAM_EXTENT_ENTRY_AS_RETRIEVAL_POINTERS","features":[323]},{"name":"STREAM_INFORMATION_ENTRY","features":[323]},{"name":"STREAM_LAYOUT_ENTRY","features":[323]},{"name":"STREAM_LAYOUT_ENTRY_HAS_INFORMATION","features":[323]},{"name":"STREAM_LAYOUT_ENTRY_IMMOVABLE","features":[323]},{"name":"STREAM_LAYOUT_ENTRY_NO_CLUSTERS_ALLOCATED","features":[323]},{"name":"STREAM_LAYOUT_ENTRY_PINNED","features":[323]},{"name":"STREAM_LAYOUT_ENTRY_RESIDENT","features":[323]},{"name":"STREAM_SET_ENCRYPTION","features":[323]},{"name":"SYQUEST_EZ135","features":[323]},{"name":"SYQUEST_EZFLYER","features":[323]},{"name":"SYQUEST_SYJET","features":[323]},{"name":"ScmBusFirmwareActivationState_Armed","features":[323]},{"name":"ScmBusFirmwareActivationState_Busy","features":[323]},{"name":"ScmBusFirmwareActivationState_Idle","features":[323]},{"name":"ScmBusProperty_DedicatedMemoryInfo","features":[323]},{"name":"ScmBusProperty_DedicatedMemoryState","features":[323]},{"name":"ScmBusProperty_Max","features":[323]},{"name":"ScmBusProperty_RuntimeFwActivationInfo","features":[323]},{"name":"ScmBusQuery_Descriptor","features":[323]},{"name":"ScmBusQuery_IsSupported","features":[323]},{"name":"ScmBusQuery_Max","features":[323]},{"name":"ScmBusSet_Descriptor","features":[323]},{"name":"ScmBusSet_IsSupported","features":[323]},{"name":"ScmBusSet_Max","features":[323]},{"name":"ScmPdFirmwareActivationState_Armed","features":[323]},{"name":"ScmPdFirmwareActivationState_Busy","features":[323]},{"name":"ScmPdFirmwareActivationState_Idle","features":[323]},{"name":"ScmPdLastFwActivaitonStatus_ActivationInProgress","features":[323]},{"name":"ScmPdLastFwActivaitonStatus_FwUnsupported","features":[323]},{"name":"ScmPdLastFwActivaitonStatus_Retry","features":[323]},{"name":"ScmPdLastFwActivaitonStatus_UnknownError","features":[323]},{"name":"ScmPdLastFwActivationStatus_ColdRebootRequired","features":[323]},{"name":"ScmPdLastFwActivationStatus_FwNotFound","features":[323]},{"name":"ScmPdLastFwActivationStatus_None","features":[323]},{"name":"ScmPdLastFwActivationStatus_Success","features":[323]},{"name":"ScmPhysicalDeviceHealth_Healthy","features":[323]},{"name":"ScmPhysicalDeviceHealth_Max","features":[323]},{"name":"ScmPhysicalDeviceHealth_Unhealthy","features":[323]},{"name":"ScmPhysicalDeviceHealth_Unknown","features":[323]},{"name":"ScmPhysicalDeviceHealth_Warning","features":[323]},{"name":"ScmPhysicalDeviceOpReason_BackgroundOperation","features":[323]},{"name":"ScmPhysicalDeviceOpReason_Component","features":[323]},{"name":"ScmPhysicalDeviceOpReason_Configuration","features":[323]},{"name":"ScmPhysicalDeviceOpReason_DataPersistenceLossImminent","features":[323]},{"name":"ScmPhysicalDeviceOpReason_DeviceController","features":[323]},{"name":"ScmPhysicalDeviceOpReason_DisabledByPlatform","features":[323]},{"name":"ScmPhysicalDeviceOpReason_EnergySource","features":[323]},{"name":"ScmPhysicalDeviceOpReason_ExcessiveTemperature","features":[323]},{"name":"ScmPhysicalDeviceOpReason_FatalError","features":[323]},{"name":"ScmPhysicalDeviceOpReason_HealthCheck","features":[323]},{"name":"ScmPhysicalDeviceOpReason_InternalFailure","features":[323]},{"name":"ScmPhysicalDeviceOpReason_InvalidFirmware","features":[323]},{"name":"ScmPhysicalDeviceOpReason_LostData","features":[323]},{"name":"ScmPhysicalDeviceOpReason_LostDataPersistence","features":[323]},{"name":"ScmPhysicalDeviceOpReason_LostWritePersistence","features":[323]},{"name":"ScmPhysicalDeviceOpReason_Max","features":[323]},{"name":"ScmPhysicalDeviceOpReason_Media","features":[323]},{"name":"ScmPhysicalDeviceOpReason_MediaController","features":[323]},{"name":"ScmPhysicalDeviceOpReason_MediaRemainingSpareBlock","features":[323]},{"name":"ScmPhysicalDeviceOpReason_PerformanceDegradation","features":[323]},{"name":"ScmPhysicalDeviceOpReason_PermanentError","features":[323]},{"name":"ScmPhysicalDeviceOpReason_ThresholdExceeded","features":[323]},{"name":"ScmPhysicalDeviceOpReason_Unknown","features":[323]},{"name":"ScmPhysicalDeviceOpReason_WritePersistenceLossImminent","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_HardwareError","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_InService","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_Max","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_Missing","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_NotUsable","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_Ok","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_PredictingFailure","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_TransientError","features":[323]},{"name":"ScmPhysicalDeviceOpStatus_Unknown","features":[323]},{"name":"ScmPhysicalDeviceProperty_DeviceHandle","features":[323]},{"name":"ScmPhysicalDeviceProperty_DeviceInfo","features":[323]},{"name":"ScmPhysicalDeviceProperty_DeviceSpecificInfo","features":[323]},{"name":"ScmPhysicalDeviceProperty_FirmwareInfo","features":[323]},{"name":"ScmPhysicalDeviceProperty_FruIdString","features":[323]},{"name":"ScmPhysicalDeviceProperty_LocationString","features":[323]},{"name":"ScmPhysicalDeviceProperty_ManagementStatus","features":[323]},{"name":"ScmPhysicalDeviceProperty_Max","features":[323]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationArmState","features":[323]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationInfo","features":[323]},{"name":"ScmPhysicalDeviceQuery_Descriptor","features":[323]},{"name":"ScmPhysicalDeviceQuery_IsSupported","features":[323]},{"name":"ScmPhysicalDeviceQuery_Max","features":[323]},{"name":"ScmPhysicalDeviceReinit_ColdBootNeeded","features":[323]},{"name":"ScmPhysicalDeviceReinit_Max","features":[323]},{"name":"ScmPhysicalDeviceReinit_RebootNeeded","features":[323]},{"name":"ScmPhysicalDeviceReinit_Success","features":[323]},{"name":"ScmPhysicalDeviceSet_Descriptor","features":[323]},{"name":"ScmPhysicalDeviceSet_IsSupported","features":[323]},{"name":"ScmPhysicalDeviceSet_Max","features":[323]},{"name":"ScmRegionFlagLabel","features":[323]},{"name":"ScmRegionFlagNone","features":[323]},{"name":"ShrinkAbort","features":[323]},{"name":"ShrinkCommit","features":[323]},{"name":"ShrinkPrepare","features":[323]},{"name":"SmrGcActionPause","features":[323]},{"name":"SmrGcActionStart","features":[323]},{"name":"SmrGcActionStartFullSpeed","features":[323]},{"name":"SmrGcActionStop","features":[323]},{"name":"SmrGcMethodCompaction","features":[323]},{"name":"SmrGcMethodCompression","features":[323]},{"name":"SmrGcMethodRotation","features":[323]},{"name":"SmrGcStateActive","features":[323]},{"name":"SmrGcStateActiveFullSpeed","features":[323]},{"name":"SmrGcStateInactive","features":[323]},{"name":"SmrGcStatePaused","features":[323]},{"name":"StorAttributeMgmt_ClearAttribute","features":[323]},{"name":"StorAttributeMgmt_ResetAttribute","features":[323]},{"name":"StorAttributeMgmt_SetAttribute","features":[323]},{"name":"StorRpmbAuthenticatedDeviceConfigRead","features":[323]},{"name":"StorRpmbAuthenticatedDeviceConfigWrite","features":[323]},{"name":"StorRpmbAuthenticatedRead","features":[323]},{"name":"StorRpmbAuthenticatedWrite","features":[323]},{"name":"StorRpmbProgramAuthKey","features":[323]},{"name":"StorRpmbQueryWriteCounter","features":[323]},{"name":"StorRpmbReadResultRequest","features":[323]},{"name":"StorageAccessAlignmentProperty","features":[323]},{"name":"StorageAdapterCryptoProperty","features":[323]},{"name":"StorageAdapterPhysicalTopologyProperty","features":[323]},{"name":"StorageAdapterProperty","features":[323]},{"name":"StorageAdapterProtocolSpecificProperty","features":[323]},{"name":"StorageAdapterRpmbProperty","features":[323]},{"name":"StorageAdapterSerialNumberProperty","features":[323]},{"name":"StorageAdapterTemperatureProperty","features":[323]},{"name":"StorageCounterTypeFlushLatency100NSMax","features":[323]},{"name":"StorageCounterTypeLoadUnloadCycleCount","features":[323]},{"name":"StorageCounterTypeLoadUnloadCycleCountMax","features":[323]},{"name":"StorageCounterTypeManufactureDate","features":[323]},{"name":"StorageCounterTypeMax","features":[323]},{"name":"StorageCounterTypePowerOnHours","features":[323]},{"name":"StorageCounterTypeReadErrorsCorrected","features":[323]},{"name":"StorageCounterTypeReadErrorsTotal","features":[323]},{"name":"StorageCounterTypeReadErrorsUncorrected","features":[323]},{"name":"StorageCounterTypeReadLatency100NSMax","features":[323]},{"name":"StorageCounterTypeStartStopCycleCount","features":[323]},{"name":"StorageCounterTypeStartStopCycleCountMax","features":[323]},{"name":"StorageCounterTypeTemperatureCelsius","features":[323]},{"name":"StorageCounterTypeTemperatureCelsiusMax","features":[323]},{"name":"StorageCounterTypeUnknown","features":[323]},{"name":"StorageCounterTypeWearPercentage","features":[323]},{"name":"StorageCounterTypeWearPercentageMax","features":[323]},{"name":"StorageCounterTypeWearPercentageWarning","features":[323]},{"name":"StorageCounterTypeWriteErrorsCorrected","features":[323]},{"name":"StorageCounterTypeWriteErrorsTotal","features":[323]},{"name":"StorageCounterTypeWriteErrorsUncorrected","features":[323]},{"name":"StorageCounterTypeWriteLatency100NSMax","features":[323]},{"name":"StorageCryptoAlgorithmAESECB","features":[323]},{"name":"StorageCryptoAlgorithmBitlockerAESCBC","features":[323]},{"name":"StorageCryptoAlgorithmESSIVAESCBC","features":[323]},{"name":"StorageCryptoAlgorithmMax","features":[323]},{"name":"StorageCryptoAlgorithmUnknown","features":[323]},{"name":"StorageCryptoAlgorithmXTSAES","features":[323]},{"name":"StorageCryptoKeySize128Bits","features":[323]},{"name":"StorageCryptoKeySize192Bits","features":[323]},{"name":"StorageCryptoKeySize256Bits","features":[323]},{"name":"StorageCryptoKeySize512Bits","features":[323]},{"name":"StorageCryptoKeySizeUnknown","features":[323]},{"name":"StorageDeviceAttributesProperty","features":[323]},{"name":"StorageDeviceCopyOffloadProperty","features":[323]},{"name":"StorageDeviceDeviceTelemetryProperty","features":[323]},{"name":"StorageDeviceEnduranceProperty","features":[323]},{"name":"StorageDeviceIdProperty","features":[323]},{"name":"StorageDeviceIoCapabilityProperty","features":[323]},{"name":"StorageDeviceLBProvisioningProperty","features":[323]},{"name":"StorageDeviceLedStateProperty","features":[323]},{"name":"StorageDeviceLocationProperty","features":[323]},{"name":"StorageDeviceManagementStatus","features":[323]},{"name":"StorageDeviceMediumProductType","features":[323]},{"name":"StorageDeviceNumaProperty","features":[323]},{"name":"StorageDevicePhysicalTopologyProperty","features":[323]},{"name":"StorageDevicePowerCapUnitsMilliwatts","features":[323]},{"name":"StorageDevicePowerCapUnitsPercent","features":[323]},{"name":"StorageDevicePowerProperty","features":[323]},{"name":"StorageDeviceProperty","features":[323]},{"name":"StorageDeviceProtocolSpecificProperty","features":[323]},{"name":"StorageDeviceResiliencyProperty","features":[323]},{"name":"StorageDeviceSeekPenaltyProperty","features":[323]},{"name":"StorageDeviceSelfEncryptionProperty","features":[323]},{"name":"StorageDeviceTemperatureProperty","features":[323]},{"name":"StorageDeviceTrimProperty","features":[323]},{"name":"StorageDeviceUniqueIdProperty","features":[323]},{"name":"StorageDeviceUnsafeShutdownCount","features":[323]},{"name":"StorageDeviceWriteAggregationProperty","features":[323]},{"name":"StorageDeviceWriteCacheProperty","features":[323]},{"name":"StorageDeviceZonedDeviceProperty","features":[323]},{"name":"StorageDiagnosticLevelDefault","features":[323]},{"name":"StorageDiagnosticLevelMax","features":[323]},{"name":"StorageDiagnosticTargetTypeHbaFirmware","features":[323]},{"name":"StorageDiagnosticTargetTypeMax","features":[323]},{"name":"StorageDiagnosticTargetTypeMiniport","features":[323]},{"name":"StorageDiagnosticTargetTypePort","features":[323]},{"name":"StorageDiagnosticTargetTypeUndefined","features":[323]},{"name":"StorageEncryptionTypeEDrive","features":[323]},{"name":"StorageEncryptionTypeTcgOpal","features":[323]},{"name":"StorageEncryptionTypeUnknown","features":[323]},{"name":"StorageFruIdProperty","features":[323]},{"name":"StorageIdAssocDevice","features":[323]},{"name":"StorageIdAssocPort","features":[323]},{"name":"StorageIdAssocTarget","features":[323]},{"name":"StorageIdCodeSetAscii","features":[323]},{"name":"StorageIdCodeSetBinary","features":[323]},{"name":"StorageIdCodeSetReserved","features":[323]},{"name":"StorageIdCodeSetUtf8","features":[323]},{"name":"StorageIdNAAFormatIEEEERegisteredExtended","features":[323]},{"name":"StorageIdNAAFormatIEEEExtended","features":[323]},{"name":"StorageIdNAAFormatIEEERegistered","features":[323]},{"name":"StorageIdTypeEUI64","features":[323]},{"name":"StorageIdTypeFCPHName","features":[323]},{"name":"StorageIdTypeLogicalUnitGroup","features":[323]},{"name":"StorageIdTypeMD5LogicalUnitIdentifier","features":[323]},{"name":"StorageIdTypePortRelative","features":[323]},{"name":"StorageIdTypeScsiNameString","features":[323]},{"name":"StorageIdTypeTargetPortGroup","features":[323]},{"name":"StorageIdTypeVendorId","features":[323]},{"name":"StorageIdTypeVendorSpecific","features":[323]},{"name":"StorageMiniportProperty","features":[323]},{"name":"StoragePortCodeSetATAport","features":[323]},{"name":"StoragePortCodeSetReserved","features":[323]},{"name":"StoragePortCodeSetSBP2port","features":[323]},{"name":"StoragePortCodeSetSCSIport","features":[323]},{"name":"StoragePortCodeSetSDport","features":[323]},{"name":"StoragePortCodeSetSpaceport","features":[323]},{"name":"StoragePortCodeSetStorport","features":[323]},{"name":"StoragePortCodeSetUSBport","features":[323]},{"name":"StoragePowerupDeviceAttention","features":[323]},{"name":"StoragePowerupIO","features":[323]},{"name":"StoragePowerupUnknown","features":[323]},{"name":"StorageReserveIdHard","features":[323]},{"name":"StorageReserveIdMax","features":[323]},{"name":"StorageReserveIdNone","features":[323]},{"name":"StorageReserveIdSoft","features":[323]},{"name":"StorageReserveIdUpdateScratch","features":[323]},{"name":"StorageRpmbFrameTypeMax","features":[323]},{"name":"StorageRpmbFrameTypeStandard","features":[323]},{"name":"StorageRpmbFrameTypeUnknown","features":[323]},{"name":"StorageSanitizeMethodBlockErase","features":[323]},{"name":"StorageSanitizeMethodCryptoErase","features":[323]},{"name":"StorageSanitizeMethodDefault","features":[323]},{"name":"StorageTierClassCapacity","features":[323]},{"name":"StorageTierClassMax","features":[323]},{"name":"StorageTierClassPerformance","features":[323]},{"name":"StorageTierClassUnspecified","features":[323]},{"name":"StorageTierMediaTypeDisk","features":[323]},{"name":"StorageTierMediaTypeMax","features":[323]},{"name":"StorageTierMediaTypeScm","features":[323]},{"name":"StorageTierMediaTypeSsd","features":[323]},{"name":"StorageTierMediaTypeUnspecified","features":[323]},{"name":"TAPE_GET_STATISTICS","features":[323]},{"name":"TAPE_RESET_STATISTICS","features":[323]},{"name":"TAPE_RETURN_ENV_INFO","features":[323]},{"name":"TAPE_RETURN_STATISTICS","features":[323]},{"name":"TAPE_STATISTICS","features":[323]},{"name":"TCCollectionApplicationRequested","features":[323]},{"name":"TCCollectionBugCheck","features":[323]},{"name":"TCCollectionDeviceRequested","features":[323]},{"name":"TC_DEVICEDUMP_SUBSECTION_DESC_LENGTH","features":[323]},{"name":"TC_PUBLIC_DATA_TYPE_ATAGP","features":[323]},{"name":"TC_PUBLIC_DATA_TYPE_ATASMART","features":[323]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG","features":[323]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG_MAX","features":[323]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_SMART","features":[323]},{"name":"TELEMETRY_COMMAND_SIZE","features":[323]},{"name":"TXFS_CREATE_MINIVERSION_INFO","features":[323]},{"name":"TXFS_GET_METADATA_INFO_OUT","features":[323]},{"name":"TXFS_GET_TRANSACTED_VERSION","features":[323]},{"name":"TXFS_LIST_TRANSACTIONS","features":[323]},{"name":"TXFS_LIST_TRANSACTIONS_ENTRY","features":[323]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[323]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY","features":[323]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_CREATED","features":[323]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_DELETED","features":[323]},{"name":"TXFS_LOGGING_MODE_FULL","features":[323]},{"name":"TXFS_LOGGING_MODE_SIMPLE","features":[323]},{"name":"TXFS_MODIFY_RM","features":[323]},{"name":"TXFS_QUERY_RM_INFORMATION","features":[323]},{"name":"TXFS_READ_BACKUP_INFORMATION_OUT","features":[323]},{"name":"TXFS_RMF_LAGS","features":[323]},{"name":"TXFS_RM_FLAG_DO_NOT_RESET_RM_AT_NEXT_START","features":[323]},{"name":"TXFS_RM_FLAG_ENFORCE_MINIMUM_SIZE","features":[323]},{"name":"TXFS_RM_FLAG_GROW_LOG","features":[323]},{"name":"TXFS_RM_FLAG_LOGGING_MODE","features":[323]},{"name":"TXFS_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[323]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[323]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[323]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[323]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[323]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[323]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[323]},{"name":"TXFS_RM_FLAG_PREFER_AVAILABILITY","features":[323]},{"name":"TXFS_RM_FLAG_PREFER_CONSISTENCY","features":[323]},{"name":"TXFS_RM_FLAG_PRESERVE_CHANGES","features":[323]},{"name":"TXFS_RM_FLAG_RENAME_RM","features":[323]},{"name":"TXFS_RM_FLAG_RESET_RM_AT_NEXT_START","features":[323]},{"name":"TXFS_RM_FLAG_SHRINK_LOG","features":[323]},{"name":"TXFS_RM_STATE_ACTIVE","features":[323]},{"name":"TXFS_RM_STATE_NOT_STARTED","features":[323]},{"name":"TXFS_RM_STATE_SHUTTING_DOWN","features":[323]},{"name":"TXFS_RM_STATE_STARTING","features":[323]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_REDO_LSN","features":[323]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_VIRTUAL_CLOCK","features":[323]},{"name":"TXFS_ROLLFORWARD_REDO_INFORMATION","features":[323]},{"name":"TXFS_SAVEPOINT_CLEAR","features":[323]},{"name":"TXFS_SAVEPOINT_CLEAR_ALL","features":[323]},{"name":"TXFS_SAVEPOINT_INFORMATION","features":[303,323]},{"name":"TXFS_SAVEPOINT_ROLLBACK","features":[323]},{"name":"TXFS_SAVEPOINT_SET","features":[323]},{"name":"TXFS_START_RM_FLAG_LOGGING_MODE","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_SIZE","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[323]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[323]},{"name":"TXFS_START_RM_FLAG_PREFER_AVAILABILITY","features":[323]},{"name":"TXFS_START_RM_FLAG_PREFER_CONSISTENCY","features":[323]},{"name":"TXFS_START_RM_FLAG_PRESERVE_CHANGES","features":[323]},{"name":"TXFS_START_RM_FLAG_RECOVER_BEST_EFFORT","features":[323]},{"name":"TXFS_START_RM_INFORMATION","features":[323]},{"name":"TXFS_TRANSACTED_VERSION_NONTRANSACTED","features":[323]},{"name":"TXFS_TRANSACTED_VERSION_UNCOMMITTED","features":[323]},{"name":"TXFS_TRANSACTION_ACTIVE_INFO","features":[303,323]},{"name":"TXFS_TRANSACTION_STATE_ACTIVE","features":[323]},{"name":"TXFS_TRANSACTION_STATE_NONE","features":[323]},{"name":"TXFS_TRANSACTION_STATE_NOTACTIVE","features":[323]},{"name":"TXFS_TRANSACTION_STATE_PREPARED","features":[323]},{"name":"TXFS_WRITE_BACKUP_INFORMATION","features":[323]},{"name":"Travan","features":[323]},{"name":"UNDEFINE_ALTERNATE","features":[323]},{"name":"UNDEFINE_PRIMARY","features":[323]},{"name":"UNLOCK_ELEMENT","features":[323]},{"name":"UNRECOVERED_READS_VALID","features":[323]},{"name":"UNRECOVERED_WRITES_VALID","features":[323]},{"name":"USN_DELETE_FLAGS","features":[323]},{"name":"USN_DELETE_FLAG_DELETE","features":[323]},{"name":"USN_DELETE_FLAG_NOTIFY","features":[323]},{"name":"USN_DELETE_VALID_FLAGS","features":[323]},{"name":"USN_JOURNAL_DATA_V0","features":[323]},{"name":"USN_JOURNAL_DATA_V1","features":[323]},{"name":"USN_JOURNAL_DATA_V2","features":[323]},{"name":"USN_PAGE_SIZE","features":[323]},{"name":"USN_RANGE_TRACK_OUTPUT","features":[323]},{"name":"USN_REASON_BASIC_INFO_CHANGE","features":[323]},{"name":"USN_REASON_CLOSE","features":[323]},{"name":"USN_REASON_COMPRESSION_CHANGE","features":[323]},{"name":"USN_REASON_DATA_EXTEND","features":[323]},{"name":"USN_REASON_DATA_OVERWRITE","features":[323]},{"name":"USN_REASON_DATA_TRUNCATION","features":[323]},{"name":"USN_REASON_DESIRED_STORAGE_CLASS_CHANGE","features":[323]},{"name":"USN_REASON_EA_CHANGE","features":[323]},{"name":"USN_REASON_ENCRYPTION_CHANGE","features":[323]},{"name":"USN_REASON_FILE_CREATE","features":[323]},{"name":"USN_REASON_FILE_DELETE","features":[323]},{"name":"USN_REASON_HARD_LINK_CHANGE","features":[323]},{"name":"USN_REASON_INDEXABLE_CHANGE","features":[323]},{"name":"USN_REASON_INTEGRITY_CHANGE","features":[323]},{"name":"USN_REASON_NAMED_DATA_EXTEND","features":[323]},{"name":"USN_REASON_NAMED_DATA_OVERWRITE","features":[323]},{"name":"USN_REASON_NAMED_DATA_TRUNCATION","features":[323]},{"name":"USN_REASON_OBJECT_ID_CHANGE","features":[323]},{"name":"USN_REASON_RENAME_NEW_NAME","features":[323]},{"name":"USN_REASON_RENAME_OLD_NAME","features":[323]},{"name":"USN_REASON_REPARSE_POINT_CHANGE","features":[323]},{"name":"USN_REASON_SECURITY_CHANGE","features":[323]},{"name":"USN_REASON_STREAM_CHANGE","features":[323]},{"name":"USN_REASON_TRANSACTED_CHANGE","features":[323]},{"name":"USN_RECORD_COMMON_HEADER","features":[323]},{"name":"USN_RECORD_EXTENT","features":[323]},{"name":"USN_RECORD_UNION","features":[322,323]},{"name":"USN_RECORD_V2","features":[323]},{"name":"USN_RECORD_V3","features":[322,323]},{"name":"USN_RECORD_V4","features":[322,323]},{"name":"USN_SOURCE_AUXILIARY_DATA","features":[323]},{"name":"USN_SOURCE_CLIENT_REPLICATION_MANAGEMENT","features":[323]},{"name":"USN_SOURCE_DATA_MANAGEMENT","features":[323]},{"name":"USN_SOURCE_INFO_ID","features":[323]},{"name":"USN_SOURCE_REPLICATION_MANAGEMENT","features":[323]},{"name":"USN_TRACK_MODIFIED_RANGES","features":[323]},{"name":"UfsDataTypeMax","features":[323]},{"name":"UfsDataTypeQueryAttribute","features":[323]},{"name":"UfsDataTypeQueryDescriptor","features":[323]},{"name":"UfsDataTypeQueryDmeAttribute","features":[323]},{"name":"UfsDataTypeQueryDmePeerAttribute","features":[323]},{"name":"UfsDataTypeQueryFlag","features":[323]},{"name":"UfsDataTypeUnknown","features":[323]},{"name":"Unknown","features":[323]},{"name":"VALID_NTFT","features":[323]},{"name":"VENDOR_ID_LENGTH","features":[323]},{"name":"VERIFY_INFORMATION","features":[323]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT","features":[323]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT_EX","features":[323]},{"name":"VIRTUALIZATION_INSTANCE_INFO_OUTPUT","features":[323]},{"name":"VIRTUAL_STORAGE_BEHAVIOR_CODE","features":[323]},{"name":"VIRTUAL_STORAGE_SET_BEHAVIOR_INPUT","features":[323]},{"name":"VOLUME_BITMAP_BUFFER","features":[323]},{"name":"VOLUME_DISK_EXTENTS","features":[323]},{"name":"VOLUME_GET_GPT_ATTRIBUTES_INFORMATION","features":[323]},{"name":"VOLUME_IS_DIRTY","features":[323]},{"name":"VOLUME_SESSION_OPEN","features":[323]},{"name":"VOLUME_UPGRADE_SCHEDULED","features":[323]},{"name":"VXATape","features":[323]},{"name":"VXATape_1","features":[323]},{"name":"VXATape_2","features":[323]},{"name":"VirtualStorageBehaviorCacheWriteBack","features":[323]},{"name":"VirtualStorageBehaviorCacheWriteThrough","features":[323]},{"name":"VirtualStorageBehaviorRestartIoProcessing","features":[323]},{"name":"VirtualStorageBehaviorStopIoProcessing","features":[323]},{"name":"VirtualStorageBehaviorUndefined","features":[323]},{"name":"WIM_PROVIDER_ADD_OVERLAY_INPUT","features":[323]},{"name":"WIM_PROVIDER_CURRENT_VERSION","features":[323]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_NOT_ACTIVE","features":[323]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_SUSPENDED","features":[323]},{"name":"WIM_PROVIDER_EXTERNAL_INFO","features":[323]},{"name":"WIM_PROVIDER_OVERLAY_ENTRY","features":[323]},{"name":"WIM_PROVIDER_REMOVE_OVERLAY_INPUT","features":[323]},{"name":"WIM_PROVIDER_SUSPEND_OVERLAY_INPUT","features":[323]},{"name":"WIM_PROVIDER_UPDATE_OVERLAY_INPUT","features":[323]},{"name":"WMI_DISK_GEOMETRY_GUID","features":[323]},{"name":"WOF_CURRENT_VERSION","features":[323]},{"name":"WOF_EXTERNAL_FILE_ID","features":[322,323]},{"name":"WOF_EXTERNAL_INFO","features":[323]},{"name":"WOF_PROVIDER_CLOUD","features":[323]},{"name":"WOF_VERSION_INFO","features":[323]},{"name":"WRITE_CACHE_CHANGE","features":[323]},{"name":"WRITE_CACHE_ENABLE","features":[323]},{"name":"WRITE_CACHE_TYPE","features":[323]},{"name":"WRITE_COMPRESSION_INFO_VALID","features":[323]},{"name":"WRITE_THROUGH","features":[323]},{"name":"WRITE_USN_REASON_INPUT","features":[323]},{"name":"WriteCacheChangeUnknown","features":[323]},{"name":"WriteCacheChangeable","features":[323]},{"name":"WriteCacheDisabled","features":[323]},{"name":"WriteCacheEnableUnknown","features":[323]},{"name":"WriteCacheEnabled","features":[323]},{"name":"WriteCacheNotChangeable","features":[323]},{"name":"WriteCacheTypeNone","features":[323]},{"name":"WriteCacheTypeUnknown","features":[323]},{"name":"WriteCacheTypeWriteBack","features":[323]},{"name":"WriteCacheTypeWriteThrough","features":[323]},{"name":"WriteThroughNotSupported","features":[323]},{"name":"WriteThroughSupported","features":[323]},{"name":"WriteThroughUnknown","features":[323]},{"name":"ZoneConditionClosed","features":[323]},{"name":"ZoneConditionConventional","features":[323]},{"name":"ZoneConditionEmpty","features":[323]},{"name":"ZoneConditionExplicitlyOpened","features":[323]},{"name":"ZoneConditionFull","features":[323]},{"name":"ZoneConditionImplicitlyOpened","features":[323]},{"name":"ZoneConditionOffline","features":[323]},{"name":"ZoneConditionReadOnly","features":[323]},{"name":"ZoneTypeConventional","features":[323]},{"name":"ZoneTypeMax","features":[323]},{"name":"ZoneTypeSequentialWritePreferred","features":[323]},{"name":"ZoneTypeSequentialWriteRequired","features":[323]},{"name":"ZoneTypeUnknown","features":[323]},{"name":"ZonedDeviceTypeDeviceManaged","features":[323]},{"name":"ZonedDeviceTypeHostAware","features":[323]},{"name":"ZonedDeviceTypeHostManaged","features":[323]},{"name":"ZonedDeviceTypeUnknown","features":[323]},{"name":"ZonesAttributeTypeAndLengthMayDifferent","features":[323]},{"name":"ZonesAttributeTypeMayDifferentLengthSame","features":[323]},{"name":"ZonesAttributeTypeSameLastZoneLengthDifferent","features":[323]},{"name":"ZonesAttributeTypeSameLengthSame","features":[323]}],"574":[{"name":"AssignProcessToJobObject","features":[303,559]},{"name":"CreateJobObjectA","features":[303,306,559]},{"name":"CreateJobObjectW","features":[303,306,559]},{"name":"CreateJobSet","features":[303,559]},{"name":"FreeMemoryJobObject","features":[559]},{"name":"IsProcessInJob","features":[303,559]},{"name":"JOBOBJECTINFOCLASS","features":[559]},{"name":"JOBOBJECT_ASSOCIATE_COMPLETION_PORT","features":[303,559]},{"name":"JOBOBJECT_BASIC_ACCOUNTING_INFORMATION","features":[559]},{"name":"JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","features":[559,338]},{"name":"JOBOBJECT_BASIC_LIMIT_INFORMATION","features":[559]},{"name":"JOBOBJECT_BASIC_PROCESS_ID_LIST","features":[559]},{"name":"JOBOBJECT_BASIC_UI_RESTRICTIONS","features":[559]},{"name":"JOBOBJECT_CPU_RATE_CONTROL_INFORMATION","features":[559]},{"name":"JOBOBJECT_END_OF_JOB_TIME_INFORMATION","features":[559]},{"name":"JOBOBJECT_EXTENDED_LIMIT_INFORMATION","features":[559,338]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_DISABLE","features":[559]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_ENABLE","features":[559]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_FLAGS","features":[559]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_VALID_FLAGS","features":[559]},{"name":"JOBOBJECT_IO_ATTRIBUTION_INFORMATION","features":[559]},{"name":"JOBOBJECT_IO_ATTRIBUTION_STATS","features":[559]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION","features":[559]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V1","features":[559]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2","features":[559]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3","features":[559]},{"name":"JOBOBJECT_JOBSET_INFORMATION","features":[559]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION","features":[559]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2","features":[559]},{"name":"JOBOBJECT_NET_RATE_CONTROL_INFORMATION","features":[559]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION","features":[559]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2","features":[559]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE","features":[559]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL","features":[559]},{"name":"JOBOBJECT_SECURITY_LIMIT_INFORMATION","features":[303,306,559]},{"name":"JOB_OBJECT_BASIC_LIMIT_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL","features":[559]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_ENABLE","features":[559]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_HARD_CAP","features":[559]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_MIN_MAX_RATE","features":[559]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_NOTIFY","features":[559]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED","features":[559]},{"name":"JOB_OBJECT_EXTENDED_LIMIT_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_ENABLE","features":[559]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FLAGS","features":[559]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ALL","features":[559]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ON_SOFT_CAP","features":[559]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_STANDALONE_VOLUME","features":[559]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_LIMIT","features":[559]},{"name":"JOB_OBJECT_LIMIT_ACTIVE_PROCESS","features":[559]},{"name":"JOB_OBJECT_LIMIT_AFFINITY","features":[559]},{"name":"JOB_OBJECT_LIMIT_BREAKAWAY_OK","features":[559]},{"name":"JOB_OBJECT_LIMIT_CPU_RATE_CONTROL","features":[559]},{"name":"JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION","features":[559]},{"name":"JOB_OBJECT_LIMIT_IO_RATE_CONTROL","features":[559]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY","features":[559]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_HIGH","features":[559]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_LOW","features":[559]},{"name":"JOB_OBJECT_LIMIT_JOB_READ_BYTES","features":[559]},{"name":"JOB_OBJECT_LIMIT_JOB_TIME","features":[559]},{"name":"JOB_OBJECT_LIMIT_JOB_WRITE_BYTES","features":[559]},{"name":"JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE","features":[559]},{"name":"JOB_OBJECT_LIMIT_NET_RATE_CONTROL","features":[559]},{"name":"JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME","features":[559]},{"name":"JOB_OBJECT_LIMIT_PRIORITY_CLASS","features":[559]},{"name":"JOB_OBJECT_LIMIT_PROCESS_MEMORY","features":[559]},{"name":"JOB_OBJECT_LIMIT_PROCESS_TIME","features":[559]},{"name":"JOB_OBJECT_LIMIT_RATE_CONTROL","features":[559]},{"name":"JOB_OBJECT_LIMIT_SCHEDULING_CLASS","features":[559]},{"name":"JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK","features":[559]},{"name":"JOB_OBJECT_LIMIT_SUBSET_AFFINITY","features":[559]},{"name":"JOB_OBJECT_LIMIT_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_LIMIT_WORKINGSET","features":[559]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_DSCP_TAG","features":[559]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_ENABLE","features":[559]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_FLAGS","features":[559]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_BANDWIDTH","features":[559]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_NOTIFICATION_LIMIT_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_POST_AT_END_OF_JOB","features":[559]},{"name":"JOB_OBJECT_SECURITY","features":[559]},{"name":"JOB_OBJECT_SECURITY_FILTER_TOKENS","features":[559]},{"name":"JOB_OBJECT_SECURITY_NO_ADMIN","features":[559]},{"name":"JOB_OBJECT_SECURITY_ONLY_TOKEN","features":[559]},{"name":"JOB_OBJECT_SECURITY_RESTRICTED_TOKEN","features":[559]},{"name":"JOB_OBJECT_SECURITY_VALID_FLAGS","features":[559]},{"name":"JOB_OBJECT_TERMINATE_AT_END_ACTION","features":[559]},{"name":"JOB_OBJECT_TERMINATE_AT_END_OF_JOB","features":[559]},{"name":"JOB_OBJECT_UILIMIT","features":[559]},{"name":"JOB_OBJECT_UILIMIT_DESKTOP","features":[559]},{"name":"JOB_OBJECT_UILIMIT_DISPLAYSETTINGS","features":[559]},{"name":"JOB_OBJECT_UILIMIT_EXITWINDOWS","features":[559]},{"name":"JOB_OBJECT_UILIMIT_GLOBALATOMS","features":[559]},{"name":"JOB_OBJECT_UILIMIT_HANDLES","features":[559]},{"name":"JOB_OBJECT_UILIMIT_NONE","features":[559]},{"name":"JOB_OBJECT_UILIMIT_READCLIPBOARD","features":[559]},{"name":"JOB_OBJECT_UILIMIT_SYSTEMPARAMETERS","features":[559]},{"name":"JOB_OBJECT_UILIMIT_WRITECLIPBOARD","features":[559]},{"name":"JOB_SET_ARRAY","features":[303,559]},{"name":"JobObjectAssociateCompletionPortInformation","features":[559]},{"name":"JobObjectBasicAccountingInformation","features":[559]},{"name":"JobObjectBasicAndIoAccountingInformation","features":[559]},{"name":"JobObjectBasicLimitInformation","features":[559]},{"name":"JobObjectBasicProcessIdList","features":[559]},{"name":"JobObjectBasicUIRestrictions","features":[559]},{"name":"JobObjectCompletionCounter","features":[559]},{"name":"JobObjectCompletionFilter","features":[559]},{"name":"JobObjectCpuRateControlInformation","features":[559]},{"name":"JobObjectCreateSilo","features":[559]},{"name":"JobObjectEndOfJobTimeInformation","features":[559]},{"name":"JobObjectExtendedLimitInformation","features":[559]},{"name":"JobObjectGroupInformation","features":[559]},{"name":"JobObjectGroupInformationEx","features":[559]},{"name":"JobObjectJobSetInformation","features":[559]},{"name":"JobObjectLimitViolationInformation","features":[559]},{"name":"JobObjectLimitViolationInformation2","features":[559]},{"name":"JobObjectNetRateControlInformation","features":[559]},{"name":"JobObjectNotificationLimitInformation","features":[559]},{"name":"JobObjectNotificationLimitInformation2","features":[559]},{"name":"JobObjectReserved10Information","features":[559]},{"name":"JobObjectReserved11Information","features":[559]},{"name":"JobObjectReserved12Information","features":[559]},{"name":"JobObjectReserved13Information","features":[559]},{"name":"JobObjectReserved14Information","features":[559]},{"name":"JobObjectReserved15Information","features":[559]},{"name":"JobObjectReserved16Information","features":[559]},{"name":"JobObjectReserved17Information","features":[559]},{"name":"JobObjectReserved18Information","features":[559]},{"name":"JobObjectReserved19Information","features":[559]},{"name":"JobObjectReserved1Information","features":[559]},{"name":"JobObjectReserved20Information","features":[559]},{"name":"JobObjectReserved21Information","features":[559]},{"name":"JobObjectReserved22Information","features":[559]},{"name":"JobObjectReserved23Information","features":[559]},{"name":"JobObjectReserved24Information","features":[559]},{"name":"JobObjectReserved25Information","features":[559]},{"name":"JobObjectReserved26Information","features":[559]},{"name":"JobObjectReserved27Information","features":[559]},{"name":"JobObjectReserved2Information","features":[559]},{"name":"JobObjectReserved3Information","features":[559]},{"name":"JobObjectReserved4Information","features":[559]},{"name":"JobObjectReserved5Information","features":[559]},{"name":"JobObjectReserved6Information","features":[559]},{"name":"JobObjectReserved7Information","features":[559]},{"name":"JobObjectReserved8Information","features":[559]},{"name":"JobObjectReserved9Information","features":[559]},{"name":"JobObjectSecurityLimitInformation","features":[559]},{"name":"JobObjectSiloBasicInformation","features":[559]},{"name":"MaxJobObjectInfoClass","features":[559]},{"name":"OpenJobObjectA","features":[303,559]},{"name":"OpenJobObjectW","features":[303,559]},{"name":"QueryInformationJobObject","features":[303,559]},{"name":"QueryIoRateControlInformationJobObject","features":[303,559]},{"name":"SetInformationJobObject","features":[303,559]},{"name":"SetIoRateControlInformationJobObject","features":[303,559]},{"name":"TerminateJobObject","features":[303,559]},{"name":"ToleranceHigh","features":[559]},{"name":"ToleranceIntervalLong","features":[559]},{"name":"ToleranceIntervalMedium","features":[559]},{"name":"ToleranceIntervalShort","features":[559]},{"name":"ToleranceLow","features":[559]},{"name":"ToleranceMedium","features":[559]},{"name":"UserHandleGrantAccess","features":[303,559]}],"575":[{"name":"JS_SOURCE_CONTEXT_NONE","features":[560]},{"name":"JsAddRef","features":[560]},{"name":"JsArray","features":[560]},{"name":"JsBackgroundWorkItemCallback","features":[560]},{"name":"JsBeforeCollectCallback","features":[560]},{"name":"JsBoolToBoolean","features":[560]},{"name":"JsBoolean","features":[560]},{"name":"JsBooleanToBool","features":[560]},{"name":"JsCallFunction","features":[560]},{"name":"JsCollectGarbage","features":[560]},{"name":"JsConstructObject","features":[560]},{"name":"JsConvertValueToBoolean","features":[560]},{"name":"JsConvertValueToNumber","features":[560]},{"name":"JsConvertValueToObject","features":[560]},{"name":"JsConvertValueToString","features":[560]},{"name":"JsCreateArray","features":[560]},{"name":"JsCreateContext","features":[541,560]},{"name":"JsCreateContext","features":[541,560]},{"name":"JsCreateError","features":[560]},{"name":"JsCreateExternalObject","features":[560]},{"name":"JsCreateFunction","features":[560]},{"name":"JsCreateObject","features":[560]},{"name":"JsCreateRangeError","features":[560]},{"name":"JsCreateReferenceError","features":[560]},{"name":"JsCreateRuntime","features":[560]},{"name":"JsCreateSyntaxError","features":[560]},{"name":"JsCreateTypeError","features":[560]},{"name":"JsCreateURIError","features":[560]},{"name":"JsDefineProperty","features":[560]},{"name":"JsDeleteIndexedProperty","features":[560]},{"name":"JsDeleteProperty","features":[560]},{"name":"JsDisableRuntimeExecution","features":[560]},{"name":"JsDisposeRuntime","features":[560]},{"name":"JsDoubleToNumber","features":[560]},{"name":"JsEnableRuntimeExecution","features":[560]},{"name":"JsEnumerateHeap","features":[541,560]},{"name":"JsEquals","features":[560]},{"name":"JsError","features":[560]},{"name":"JsErrorAlreadyDebuggingContext","features":[560]},{"name":"JsErrorAlreadyProfilingContext","features":[560]},{"name":"JsErrorArgumentNotObject","features":[560]},{"name":"JsErrorBadSerializedScript","features":[560]},{"name":"JsErrorCannotDisableExecution","features":[560]},{"name":"JsErrorCannotSerializeDebugScript","features":[560]},{"name":"JsErrorCategoryEngine","features":[560]},{"name":"JsErrorCategoryFatal","features":[560]},{"name":"JsErrorCategoryScript","features":[560]},{"name":"JsErrorCategoryUsage","features":[560]},{"name":"JsErrorCode","features":[560]},{"name":"JsErrorFatal","features":[560]},{"name":"JsErrorHeapEnumInProgress","features":[560]},{"name":"JsErrorIdleNotEnabled","features":[560]},{"name":"JsErrorInDisabledState","features":[560]},{"name":"JsErrorInExceptionState","features":[560]},{"name":"JsErrorInProfileCallback","features":[560]},{"name":"JsErrorInThreadServiceCallback","features":[560]},{"name":"JsErrorInvalidArgument","features":[560]},{"name":"JsErrorNoCurrentContext","features":[560]},{"name":"JsErrorNotImplemented","features":[560]},{"name":"JsErrorNullArgument","features":[560]},{"name":"JsErrorOutOfMemory","features":[560]},{"name":"JsErrorRuntimeInUse","features":[560]},{"name":"JsErrorScriptCompile","features":[560]},{"name":"JsErrorScriptEvalDisabled","features":[560]},{"name":"JsErrorScriptException","features":[560]},{"name":"JsErrorScriptTerminated","features":[560]},{"name":"JsErrorWrongThread","features":[560]},{"name":"JsFinalizeCallback","features":[560]},{"name":"JsFunction","features":[560]},{"name":"JsGetAndClearException","features":[560]},{"name":"JsGetCurrentContext","features":[560]},{"name":"JsGetExtensionAllowed","features":[560]},{"name":"JsGetExternalData","features":[560]},{"name":"JsGetFalseValue","features":[560]},{"name":"JsGetGlobalObject","features":[560]},{"name":"JsGetIndexedProperty","features":[560]},{"name":"JsGetNullValue","features":[560]},{"name":"JsGetOwnPropertyDescriptor","features":[560]},{"name":"JsGetOwnPropertyNames","features":[560]},{"name":"JsGetProperty","features":[560]},{"name":"JsGetPropertyIdFromName","features":[560]},{"name":"JsGetPropertyNameFromId","features":[560]},{"name":"JsGetPrototype","features":[560]},{"name":"JsGetRuntime","features":[560]},{"name":"JsGetRuntimeMemoryLimit","features":[560]},{"name":"JsGetRuntimeMemoryUsage","features":[560]},{"name":"JsGetStringLength","features":[560]},{"name":"JsGetTrueValue","features":[560]},{"name":"JsGetUndefinedValue","features":[560]},{"name":"JsGetValueType","features":[560]},{"name":"JsHasException","features":[560]},{"name":"JsHasExternalData","features":[560]},{"name":"JsHasIndexedProperty","features":[560]},{"name":"JsHasProperty","features":[560]},{"name":"JsIdle","features":[560]},{"name":"JsIntToNumber","features":[560]},{"name":"JsIsEnumeratingHeap","features":[560]},{"name":"JsIsRuntimeExecutionDisabled","features":[560]},{"name":"JsMemoryAllocate","features":[560]},{"name":"JsMemoryAllocationCallback","features":[560]},{"name":"JsMemoryEventType","features":[560]},{"name":"JsMemoryFailure","features":[560]},{"name":"JsMemoryFree","features":[560]},{"name":"JsNativeFunction","features":[560]},{"name":"JsNoError","features":[560]},{"name":"JsNull","features":[560]},{"name":"JsNumber","features":[560]},{"name":"JsNumberToDouble","features":[560]},{"name":"JsObject","features":[560]},{"name":"JsParseScript","features":[560]},{"name":"JsParseSerializedScript","features":[560]},{"name":"JsPointerToString","features":[560]},{"name":"JsPreventExtension","features":[560]},{"name":"JsRelease","features":[560]},{"name":"JsRunScript","features":[560]},{"name":"JsRunSerializedScript","features":[560]},{"name":"JsRuntimeAttributeAllowScriptInterrupt","features":[560]},{"name":"JsRuntimeAttributeDisableBackgroundWork","features":[560]},{"name":"JsRuntimeAttributeDisableEval","features":[560]},{"name":"JsRuntimeAttributeDisableNativeCodeGeneration","features":[560]},{"name":"JsRuntimeAttributeEnableIdleProcessing","features":[560]},{"name":"JsRuntimeAttributeNone","features":[560]},{"name":"JsRuntimeAttributes","features":[560]},{"name":"JsRuntimeVersion","features":[560]},{"name":"JsRuntimeVersion10","features":[560]},{"name":"JsRuntimeVersion11","features":[560]},{"name":"JsRuntimeVersionEdge","features":[560]},{"name":"JsSerializeScript","features":[560]},{"name":"JsSetCurrentContext","features":[560]},{"name":"JsSetException","features":[560]},{"name":"JsSetExternalData","features":[560]},{"name":"JsSetIndexedProperty","features":[560]},{"name":"JsSetProperty","features":[560]},{"name":"JsSetPrototype","features":[560]},{"name":"JsSetRuntimeBeforeCollectCallback","features":[560]},{"name":"JsSetRuntimeMemoryAllocationCallback","features":[560]},{"name":"JsSetRuntimeMemoryLimit","features":[560]},{"name":"JsStartDebugging","features":[541,560]},{"name":"JsStartDebugging","features":[541,560]},{"name":"JsStartProfiling","features":[541,560]},{"name":"JsStopProfiling","features":[560]},{"name":"JsStrictEquals","features":[560]},{"name":"JsString","features":[560]},{"name":"JsStringToPointer","features":[560]},{"name":"JsThreadServiceCallback","features":[560]},{"name":"JsUndefined","features":[560]},{"name":"JsValueToVariant","features":[560]},{"name":"JsValueType","features":[560]},{"name":"JsVariantToValue","features":[560]}],"576":[{"name":"BackOffice","features":[309]},{"name":"Blade","features":[309]},{"name":"COMPARTMENT_ID","features":[309]},{"name":"CSTRING","features":[309]},{"name":"CommunicationServer","features":[309]},{"name":"ComputeServer","features":[309]},{"name":"DEFAULT_COMPARTMENT_ID","features":[309]},{"name":"DataCenter","features":[309]},{"name":"EVENT_TYPE","features":[309]},{"name":"EXCEPTION_DISPOSITION","features":[309]},{"name":"EXCEPTION_REGISTRATION_RECORD","features":[303,331,309]},{"name":"EXCEPTION_ROUTINE","features":[303,331,309]},{"name":"EmbeddedNT","features":[309]},{"name":"EmbeddedRestricted","features":[309]},{"name":"Enterprise","features":[309]},{"name":"ExceptionCollidedUnwind","features":[309]},{"name":"ExceptionContinueExecution","features":[309]},{"name":"ExceptionContinueSearch","features":[309]},{"name":"ExceptionNestedException","features":[309]},{"name":"FLOATING_SAVE_AREA","features":[309]},{"name":"FLOATING_SAVE_AREA","features":[309]},{"name":"LIST_ENTRY","features":[309]},{"name":"LIST_ENTRY32","features":[309]},{"name":"LIST_ENTRY64","features":[309]},{"name":"MAXUCHAR","features":[309]},{"name":"MAXULONG","features":[309]},{"name":"MAXUSHORT","features":[309]},{"name":"MaxSuiteType","features":[309]},{"name":"MultiUserTS","features":[309]},{"name":"NT_PRODUCT_TYPE","features":[309]},{"name":"NT_TIB","features":[303,331,309]},{"name":"NULL64","features":[309]},{"name":"NotificationEvent","features":[309]},{"name":"NotificationTimer","features":[309]},{"name":"NtProductLanManNt","features":[309]},{"name":"NtProductServer","features":[309]},{"name":"NtProductWinNt","features":[309]},{"name":"OBJECTID","features":[309]},{"name":"OBJ_CASE_INSENSITIVE","features":[309]},{"name":"OBJ_DONT_REPARSE","features":[309]},{"name":"OBJ_EXCLUSIVE","features":[309]},{"name":"OBJ_FORCE_ACCESS_CHECK","features":[309]},{"name":"OBJ_HANDLE_TAGBITS","features":[309]},{"name":"OBJ_IGNORE_IMPERSONATED_DEVICEMAP","features":[309]},{"name":"OBJ_INHERIT","features":[309]},{"name":"OBJ_KERNEL_HANDLE","features":[309]},{"name":"OBJ_OPENIF","features":[309]},{"name":"OBJ_OPENLINK","features":[309]},{"name":"OBJ_PERMANENT","features":[309]},{"name":"OBJ_VALID_ATTRIBUTES","features":[309]},{"name":"PROCESSOR_NUMBER","features":[309]},{"name":"Personal","features":[309]},{"name":"PhoneNT","features":[309]},{"name":"QUAD","features":[309]},{"name":"RTL_BALANCED_NODE","features":[309]},{"name":"RTL_BALANCED_NODE_RESERVED_PARENT_MASK","features":[309]},{"name":"RtlFirstEntrySList","features":[309]},{"name":"RtlInitializeSListHead","features":[309]},{"name":"RtlInterlockedFlushSList","features":[309]},{"name":"RtlInterlockedPopEntrySList","features":[309]},{"name":"RtlInterlockedPushEntrySList","features":[309]},{"name":"RtlInterlockedPushListSListEx","features":[309]},{"name":"RtlQueryDepthSList","features":[309]},{"name":"SINGLE_LIST_ENTRY","features":[309]},{"name":"SINGLE_LIST_ENTRY32","features":[309]},{"name":"SLIST_ENTRY","features":[309]},{"name":"SLIST_HEADER","features":[309]},{"name":"SLIST_HEADER","features":[309]},{"name":"SLIST_HEADER","features":[309]},{"name":"STRING","features":[309]},{"name":"STRING32","features":[309]},{"name":"STRING64","features":[309]},{"name":"SUITE_TYPE","features":[309]},{"name":"SecurityAppliance","features":[309]},{"name":"SingleUserTS","features":[309]},{"name":"SmallBusiness","features":[309]},{"name":"SmallBusinessRestricted","features":[309]},{"name":"StorageServer","features":[309]},{"name":"SynchronizationEvent","features":[309]},{"name":"SynchronizationTimer","features":[309]},{"name":"TIMER_TYPE","features":[309]},{"name":"TerminalServer","features":[309]},{"name":"UNSPECIFIED_COMPARTMENT_ID","features":[309]},{"name":"WAIT_TYPE","features":[309]},{"name":"WHServer","features":[309]},{"name":"WNF_STATE_NAME","features":[309]},{"name":"WaitAll","features":[309]},{"name":"WaitAny","features":[309]},{"name":"WaitDequeue","features":[309]},{"name":"WaitDpc","features":[309]},{"name":"WaitNotification","features":[309]}],"577":[{"name":"AddDllDirectory","features":[561]},{"name":"BeginUpdateResourceA","features":[303,561]},{"name":"BeginUpdateResourceW","features":[303,561]},{"name":"CURRENT_IMPORT_REDIRECTION_VERSION","features":[561]},{"name":"DONT_RESOLVE_DLL_REFERENCES","features":[561]},{"name":"DisableThreadLibraryCalls","features":[303,561]},{"name":"ENUMRESLANGPROCA","features":[303,561]},{"name":"ENUMRESLANGPROCW","features":[303,561]},{"name":"ENUMRESNAMEPROCA","features":[303,561]},{"name":"ENUMRESNAMEPROCW","features":[303,561]},{"name":"ENUMRESTYPEPROCA","features":[303,561]},{"name":"ENUMRESTYPEPROCW","features":[303,561]},{"name":"ENUMUILANG","features":[561]},{"name":"EndUpdateResourceA","features":[303,561]},{"name":"EndUpdateResourceW","features":[303,561]},{"name":"EnumResourceLanguagesA","features":[303,561]},{"name":"EnumResourceLanguagesExA","features":[303,561]},{"name":"EnumResourceLanguagesExW","features":[303,561]},{"name":"EnumResourceLanguagesW","features":[303,561]},{"name":"EnumResourceNamesA","features":[303,561]},{"name":"EnumResourceNamesExA","features":[303,561]},{"name":"EnumResourceNamesExW","features":[303,561]},{"name":"EnumResourceNamesW","features":[303,561]},{"name":"EnumResourceTypesA","features":[303,561]},{"name":"EnumResourceTypesExA","features":[303,561]},{"name":"EnumResourceTypesExW","features":[303,561]},{"name":"EnumResourceTypesW","features":[303,561]},{"name":"FIND_RESOURCE_DIRECTORY_LANGUAGES","features":[561]},{"name":"FIND_RESOURCE_DIRECTORY_NAMES","features":[561]},{"name":"FIND_RESOURCE_DIRECTORY_TYPES","features":[561]},{"name":"FindResourceA","features":[303,561]},{"name":"FindResourceExA","features":[303,561]},{"name":"FindResourceExW","features":[303,561]},{"name":"FindResourceW","features":[303,561]},{"name":"FreeLibraryAndExitThread","features":[303,561]},{"name":"FreeResource","features":[303,561]},{"name":"GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS","features":[561]},{"name":"GET_MODULE_HANDLE_EX_FLAG_PIN","features":[561]},{"name":"GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT","features":[561]},{"name":"GetDllDirectoryA","features":[561]},{"name":"GetDllDirectoryW","features":[561]},{"name":"GetModuleFileNameA","features":[303,561]},{"name":"GetModuleFileNameW","features":[303,561]},{"name":"GetModuleHandleA","features":[303,561]},{"name":"GetModuleHandleExA","features":[303,561]},{"name":"GetModuleHandleExW","features":[303,561]},{"name":"GetModuleHandleW","features":[303,561]},{"name":"GetProcAddress","features":[303,561]},{"name":"LOAD_IGNORE_CODE_AUTHZ_LEVEL","features":[561]},{"name":"LOAD_LIBRARY_AS_DATAFILE","features":[561]},{"name":"LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE","features":[561]},{"name":"LOAD_LIBRARY_AS_IMAGE_RESOURCE","features":[561]},{"name":"LOAD_LIBRARY_FLAGS","features":[561]},{"name":"LOAD_LIBRARY_OS_INTEGRITY_CONTINUITY","features":[561]},{"name":"LOAD_LIBRARY_REQUIRE_SIGNED_TARGET","features":[561]},{"name":"LOAD_LIBRARY_SAFE_CURRENT_DIRS","features":[561]},{"name":"LOAD_LIBRARY_SEARCH_APPLICATION_DIR","features":[561]},{"name":"LOAD_LIBRARY_SEARCH_DEFAULT_DIRS","features":[561]},{"name":"LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR","features":[561]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32","features":[561]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32_NO_FORWARDER","features":[561]},{"name":"LOAD_LIBRARY_SEARCH_USER_DIRS","features":[561]},{"name":"LOAD_WITH_ALTERED_SEARCH_PATH","features":[561]},{"name":"LoadLibraryA","features":[303,561]},{"name":"LoadLibraryExA","features":[303,561]},{"name":"LoadLibraryExW","features":[303,561]},{"name":"LoadLibraryW","features":[303,561]},{"name":"LoadModule","features":[561]},{"name":"LoadPackagedLibrary","features":[303,561]},{"name":"LoadResource","features":[303,561]},{"name":"LockResource","features":[303,561]},{"name":"PGET_MODULE_HANDLE_EXA","features":[303,561]},{"name":"PGET_MODULE_HANDLE_EXW","features":[303,561]},{"name":"REDIRECTION_DESCRIPTOR","features":[561]},{"name":"REDIRECTION_FUNCTION_DESCRIPTOR","features":[561]},{"name":"RESOURCE_ENUM_LN","features":[561]},{"name":"RESOURCE_ENUM_MODULE_EXACT","features":[561]},{"name":"RESOURCE_ENUM_MUI","features":[561]},{"name":"RESOURCE_ENUM_MUI_SYSTEM","features":[561]},{"name":"RESOURCE_ENUM_VALIDATE","features":[561]},{"name":"RemoveDllDirectory","features":[303,561]},{"name":"SUPPORT_LANG_NUMBER","features":[561]},{"name":"SetDefaultDllDirectories","features":[303,561]},{"name":"SetDllDirectoryA","features":[303,561]},{"name":"SetDllDirectoryW","features":[303,561]},{"name":"SizeofResource","features":[303,561]},{"name":"UpdateResourceA","features":[303,561]},{"name":"UpdateResourceW","features":[303,561]}],"578":[{"name":"CreateMailslotA","features":[303,306,562]},{"name":"CreateMailslotW","features":[303,306,562]},{"name":"GetMailslotInfo","features":[303,562]},{"name":"SetMailslotInfo","features":[303,562]}],"579":[{"name":"LPMAPIADDRESS","features":[563]},{"name":"LPMAPIDELETEMAIL","features":[563]},{"name":"LPMAPIDETAILS","features":[563]},{"name":"LPMAPIFINDNEXT","features":[563]},{"name":"LPMAPIFREEBUFFER","features":[563]},{"name":"LPMAPILOGOFF","features":[563]},{"name":"LPMAPILOGON","features":[563]},{"name":"LPMAPIREADMAIL","features":[563]},{"name":"LPMAPIRESOLVENAME","features":[563]},{"name":"LPMAPISAVEMAIL","features":[563]},{"name":"LPMAPISENDDOCUMENTS","features":[563]},{"name":"LPMAPISENDMAIL","features":[563]},{"name":"LPMAPISENDMAILW","features":[563]},{"name":"MAPIFreeBuffer","features":[563]},{"name":"MAPI_AB_NOMODIFY","features":[563]},{"name":"MAPI_BCC","features":[563]},{"name":"MAPI_BODY_AS_FILE","features":[563]},{"name":"MAPI_CC","features":[563]},{"name":"MAPI_DIALOG","features":[563]},{"name":"MAPI_ENVELOPE_ONLY","features":[563]},{"name":"MAPI_EXTENDED","features":[563]},{"name":"MAPI_E_ACCESS_DENIED","features":[563]},{"name":"MAPI_E_AMBIGUOUS_RECIPIENT","features":[563]},{"name":"MAPI_E_AMBIG_RECIP","features":[563]},{"name":"MAPI_E_ATTACHMENT_NOT_FOUND","features":[563]},{"name":"MAPI_E_ATTACHMENT_OPEN_FAILURE","features":[563]},{"name":"MAPI_E_ATTACHMENT_TOO_LARGE","features":[563]},{"name":"MAPI_E_ATTACHMENT_WRITE_FAILURE","features":[563]},{"name":"MAPI_E_BAD_RECIPTYPE","features":[563]},{"name":"MAPI_E_DISK_FULL","features":[563]},{"name":"MAPI_E_FAILURE","features":[563]},{"name":"MAPI_E_INSUFFICIENT_MEMORY","features":[563]},{"name":"MAPI_E_INVALID_EDITFIELDS","features":[563]},{"name":"MAPI_E_INVALID_MESSAGE","features":[563]},{"name":"MAPI_E_INVALID_RECIPS","features":[563]},{"name":"MAPI_E_INVALID_SESSION","features":[563]},{"name":"MAPI_E_LOGIN_FAILURE","features":[563]},{"name":"MAPI_E_LOGON_FAILURE","features":[563]},{"name":"MAPI_E_MESSAGE_IN_USE","features":[563]},{"name":"MAPI_E_NETWORK_FAILURE","features":[563]},{"name":"MAPI_E_NOT_SUPPORTED","features":[563]},{"name":"MAPI_E_NO_MESSAGES","features":[563]},{"name":"MAPI_E_TEXT_TOO_LARGE","features":[563]},{"name":"MAPI_E_TOO_MANY_FILES","features":[563]},{"name":"MAPI_E_TOO_MANY_RECIPIENTS","features":[563]},{"name":"MAPI_E_TOO_MANY_SESSIONS","features":[563]},{"name":"MAPI_E_TYPE_NOT_SUPPORTED","features":[563]},{"name":"MAPI_E_UNICODE_NOT_SUPPORTED","features":[563]},{"name":"MAPI_E_UNKNOWN_RECIPIENT","features":[563]},{"name":"MAPI_E_USER_ABORT","features":[563]},{"name":"MAPI_FORCE_DOWNLOAD","features":[563]},{"name":"MAPI_FORCE_UNICODE","features":[563]},{"name":"MAPI_GUARANTEE_FIFO","features":[563]},{"name":"MAPI_LOGON_UI","features":[563]},{"name":"MAPI_LONG_MSGID","features":[563]},{"name":"MAPI_NEW_SESSION","features":[563]},{"name":"MAPI_OLE","features":[563]},{"name":"MAPI_OLE_STATIC","features":[563]},{"name":"MAPI_ORIG","features":[563]},{"name":"MAPI_PASSWORD_UI","features":[563]},{"name":"MAPI_PEEK","features":[563]},{"name":"MAPI_RECEIPT_REQUESTED","features":[563]},{"name":"MAPI_SENT","features":[563]},{"name":"MAPI_SUPPRESS_ATTACH","features":[563]},{"name":"MAPI_TO","features":[563]},{"name":"MAPI_UNREAD","features":[563]},{"name":"MAPI_UNREAD_ONLY","features":[563]},{"name":"MAPI_USER_ABORT","features":[563]},{"name":"MapiFileDesc","features":[563]},{"name":"MapiFileDescW","features":[563]},{"name":"MapiFileTagExt","features":[563]},{"name":"MapiMessage","features":[563]},{"name":"MapiMessageW","features":[563]},{"name":"MapiRecipDesc","features":[563]},{"name":"MapiRecipDescW","features":[563]},{"name":"SUCCESS_SUCCESS","features":[563]}],"580":[{"name":"AddSecureMemoryCacheCallback","features":[303,321]},{"name":"AllocateUserPhysicalPages","features":[303,321]},{"name":"AllocateUserPhysicalPages2","features":[303,321]},{"name":"AllocateUserPhysicalPagesNuma","features":[303,321]},{"name":"AtlThunkData_t","features":[321]},{"name":"CFG_CALL_TARGET_INFO","features":[321]},{"name":"CreateFileMapping2","features":[303,306,321]},{"name":"CreateFileMappingA","features":[303,306,321]},{"name":"CreateFileMappingFromApp","features":[303,306,321]},{"name":"CreateFileMappingNumaA","features":[303,306,321]},{"name":"CreateFileMappingNumaW","features":[303,306,321]},{"name":"CreateFileMappingW","features":[303,306,321]},{"name":"CreateMemoryResourceNotification","features":[303,321]},{"name":"DiscardVirtualMemory","features":[321]},{"name":"FILE_CACHE_MAX_HARD_DISABLE","features":[321]},{"name":"FILE_CACHE_MAX_HARD_ENABLE","features":[321]},{"name":"FILE_CACHE_MIN_HARD_DISABLE","features":[321]},{"name":"FILE_CACHE_MIN_HARD_ENABLE","features":[321]},{"name":"FILE_MAP","features":[321]},{"name":"FILE_MAP_ALL_ACCESS","features":[321]},{"name":"FILE_MAP_COPY","features":[321]},{"name":"FILE_MAP_EXECUTE","features":[321]},{"name":"FILE_MAP_LARGE_PAGES","features":[321]},{"name":"FILE_MAP_READ","features":[321]},{"name":"FILE_MAP_RESERVE","features":[321]},{"name":"FILE_MAP_TARGETS_INVALID","features":[321]},{"name":"FILE_MAP_WRITE","features":[321]},{"name":"FlushViewOfFile","features":[303,321]},{"name":"FreeUserPhysicalPages","features":[303,321]},{"name":"GHND","features":[321]},{"name":"GLOBAL_ALLOC_FLAGS","features":[321]},{"name":"GMEM_FIXED","features":[321]},{"name":"GMEM_MOVEABLE","features":[321]},{"name":"GMEM_ZEROINIT","features":[321]},{"name":"GPTR","features":[321]},{"name":"GetLargePageMinimum","features":[321]},{"name":"GetMemoryErrorHandlingCapabilities","features":[303,321]},{"name":"GetProcessHeap","features":[303,321]},{"name":"GetProcessHeaps","features":[303,321]},{"name":"GetProcessWorkingSetSizeEx","features":[303,321]},{"name":"GetSystemFileCacheSize","features":[303,321]},{"name":"GetWriteWatch","features":[321]},{"name":"GlobalAlloc","features":[303,321]},{"name":"GlobalFlags","features":[303,321]},{"name":"GlobalHandle","features":[303,321]},{"name":"GlobalLock","features":[303,321]},{"name":"GlobalReAlloc","features":[303,321]},{"name":"GlobalSize","features":[303,321]},{"name":"GlobalUnlock","features":[303,321]},{"name":"HEAP_CREATE_ALIGN_16","features":[321]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[321]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[321]},{"name":"HEAP_CREATE_HARDENED","features":[321]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[321]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[321]},{"name":"HEAP_FLAGS","features":[321]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[321]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[321]},{"name":"HEAP_GROWABLE","features":[321]},{"name":"HEAP_INFORMATION_CLASS","features":[321]},{"name":"HEAP_MAXIMUM_TAG","features":[321]},{"name":"HEAP_NONE","features":[321]},{"name":"HEAP_NO_SERIALIZE","features":[321]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[321]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[321]},{"name":"HEAP_SUMMARY","features":[321]},{"name":"HEAP_TAG_SHIFT","features":[321]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[321]},{"name":"HEAP_ZERO_MEMORY","features":[321]},{"name":"HeapAlloc","features":[303,321]},{"name":"HeapCompact","features":[303,321]},{"name":"HeapCompatibilityInformation","features":[321]},{"name":"HeapCreate","features":[303,321]},{"name":"HeapDestroy","features":[303,321]},{"name":"HeapEnableTerminationOnCorruption","features":[321]},{"name":"HeapFree","features":[303,321]},{"name":"HeapLock","features":[303,321]},{"name":"HeapOptimizeResources","features":[321]},{"name":"HeapQueryInformation","features":[303,321]},{"name":"HeapReAlloc","features":[303,321]},{"name":"HeapSetInformation","features":[303,321]},{"name":"HeapSize","features":[303,321]},{"name":"HeapSummary","features":[303,321]},{"name":"HeapTag","features":[321]},{"name":"HeapUnlock","features":[303,321]},{"name":"HeapValidate","features":[303,321]},{"name":"HeapWalk","features":[303,321]},{"name":"HighMemoryResourceNotification","features":[321]},{"name":"IsBadCodePtr","features":[303,321]},{"name":"IsBadReadPtr","features":[303,321]},{"name":"IsBadStringPtrA","features":[303,321]},{"name":"IsBadStringPtrW","features":[303,321]},{"name":"IsBadWritePtr","features":[303,321]},{"name":"LHND","features":[321]},{"name":"LMEM_FIXED","features":[321]},{"name":"LMEM_MOVEABLE","features":[321]},{"name":"LMEM_ZEROINIT","features":[321]},{"name":"LOCAL_ALLOC_FLAGS","features":[321]},{"name":"LPTR","features":[321]},{"name":"LocalAlloc","features":[303,321]},{"name":"LocalFlags","features":[303,321]},{"name":"LocalHandle","features":[303,321]},{"name":"LocalLock","features":[303,321]},{"name":"LocalReAlloc","features":[303,321]},{"name":"LocalSize","features":[303,321]},{"name":"LocalUnlock","features":[303,321]},{"name":"LowMemoryResourceNotification","features":[321]},{"name":"MEHC_PATROL_SCRUBBER_PRESENT","features":[321]},{"name":"MEMORY_BASIC_INFORMATION","features":[321]},{"name":"MEMORY_BASIC_INFORMATION","features":[321]},{"name":"MEMORY_BASIC_INFORMATION32","features":[321]},{"name":"MEMORY_BASIC_INFORMATION64","features":[321]},{"name":"MEMORY_MAPPED_VIEW_ADDRESS","features":[321]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_ATTRIBUTE","features":[321]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_INFORMATION","features":[321]},{"name":"MEMORY_RESOURCE_NOTIFICATION_TYPE","features":[321]},{"name":"MEM_ADDRESS_REQUIREMENTS","features":[321]},{"name":"MEM_COMMIT","features":[321]},{"name":"MEM_DECOMMIT","features":[321]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[321]},{"name":"MEM_EXTENDED_PARAMETER","features":[303,321]},{"name":"MEM_EXTENDED_PARAMETER_TYPE","features":[321]},{"name":"MEM_FREE","features":[321]},{"name":"MEM_IMAGE","features":[321]},{"name":"MEM_LARGE_PAGES","features":[321]},{"name":"MEM_MAPPED","features":[321]},{"name":"MEM_PRESERVE_PLACEHOLDER","features":[321]},{"name":"MEM_PRIVATE","features":[321]},{"name":"MEM_RELEASE","features":[321]},{"name":"MEM_REPLACE_PLACEHOLDER","features":[321]},{"name":"MEM_RESERVE","features":[321]},{"name":"MEM_RESERVE_PLACEHOLDER","features":[321]},{"name":"MEM_RESET","features":[321]},{"name":"MEM_RESET_UNDO","features":[321]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[321]},{"name":"MEM_UNMAP_NONE","features":[321]},{"name":"MEM_UNMAP_WITH_TRANSIENT_BOOST","features":[321]},{"name":"MapUserPhysicalPages","features":[303,321]},{"name":"MapUserPhysicalPagesScatter","features":[303,321]},{"name":"MapViewOfFile","features":[303,321]},{"name":"MapViewOfFile3","features":[303,321]},{"name":"MapViewOfFile3FromApp","features":[303,321]},{"name":"MapViewOfFileEx","features":[303,321]},{"name":"MapViewOfFileExNuma","features":[303,321]},{"name":"MapViewOfFileFromApp","features":[303,321]},{"name":"MapViewOfFileNuma2","features":[303,321]},{"name":"MemDedicatedAttributeMax","features":[321]},{"name":"MemDedicatedAttributeReadBandwidth","features":[321]},{"name":"MemDedicatedAttributeReadLatency","features":[321]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[321]},{"name":"MemDedicatedAttributeWriteLatency","features":[321]},{"name":"MemExtendedParameterAddressRequirements","features":[321]},{"name":"MemExtendedParameterAttributeFlags","features":[321]},{"name":"MemExtendedParameterImageMachine","features":[321]},{"name":"MemExtendedParameterInvalidType","features":[321]},{"name":"MemExtendedParameterMax","features":[321]},{"name":"MemExtendedParameterNumaNode","features":[321]},{"name":"MemExtendedParameterPartitionHandle","features":[321]},{"name":"MemExtendedParameterUserPhysicalHandle","features":[321]},{"name":"MemSectionExtendedParameterInvalidType","features":[321]},{"name":"MemSectionExtendedParameterMax","features":[321]},{"name":"MemSectionExtendedParameterNumaNode","features":[321]},{"name":"MemSectionExtendedParameterSigningLevel","features":[321]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[321]},{"name":"MemoryPartitionDedicatedMemoryInfo","features":[321]},{"name":"MemoryPartitionInfo","features":[321]},{"name":"MemoryRegionInfo","features":[321]},{"name":"NONZEROLHND","features":[321]},{"name":"NONZEROLPTR","features":[321]},{"name":"OFFER_PRIORITY","features":[321]},{"name":"OfferVirtualMemory","features":[321]},{"name":"OpenDedicatedMemoryPartition","features":[303,321]},{"name":"OpenFileMappingA","features":[303,321]},{"name":"OpenFileMappingFromApp","features":[303,321]},{"name":"OpenFileMappingW","features":[303,321]},{"name":"PAGE_ENCLAVE_DECOMMIT","features":[321]},{"name":"PAGE_ENCLAVE_MASK","features":[321]},{"name":"PAGE_ENCLAVE_SS_FIRST","features":[321]},{"name":"PAGE_ENCLAVE_SS_REST","features":[321]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[321]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[321]},{"name":"PAGE_EXECUTE","features":[321]},{"name":"PAGE_EXECUTE_READ","features":[321]},{"name":"PAGE_EXECUTE_READWRITE","features":[321]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[321]},{"name":"PAGE_GRAPHICS_COHERENT","features":[321]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[321]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[321]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[321]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[321]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[321]},{"name":"PAGE_GRAPHICS_READONLY","features":[321]},{"name":"PAGE_GRAPHICS_READWRITE","features":[321]},{"name":"PAGE_GUARD","features":[321]},{"name":"PAGE_NOACCESS","features":[321]},{"name":"PAGE_NOCACHE","features":[321]},{"name":"PAGE_PROTECTION_FLAGS","features":[321]},{"name":"PAGE_READONLY","features":[321]},{"name":"PAGE_READWRITE","features":[321]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[321]},{"name":"PAGE_TARGETS_INVALID","features":[321]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[321]},{"name":"PAGE_TYPE","features":[321]},{"name":"PAGE_WRITECOMBINE","features":[321]},{"name":"PAGE_WRITECOPY","features":[321]},{"name":"PBAD_MEMORY_CALLBACK_ROUTINE","features":[321]},{"name":"PROCESS_HEAP_ENTRY","features":[303,321]},{"name":"PSECURE_MEMORY_CACHE_CALLBACK","features":[303,321]},{"name":"PrefetchVirtualMemory","features":[303,321]},{"name":"QUOTA_LIMITS_HARDWS_MAX_DISABLE","features":[321]},{"name":"QUOTA_LIMITS_HARDWS_MAX_ENABLE","features":[321]},{"name":"QUOTA_LIMITS_HARDWS_MIN_DISABLE","features":[321]},{"name":"QUOTA_LIMITS_HARDWS_MIN_ENABLE","features":[321]},{"name":"QueryMemoryResourceNotification","features":[303,321]},{"name":"QueryPartitionInformation","features":[303,321]},{"name":"QueryVirtualMemoryInformation","features":[303,321]},{"name":"ReclaimVirtualMemory","features":[321]},{"name":"RegisterBadMemoryNotification","features":[321]},{"name":"RemoveSecureMemoryCacheCallback","features":[303,321]},{"name":"ResetWriteWatch","features":[321]},{"name":"RtlCompareMemory","features":[321]},{"name":"RtlCrc32","features":[321]},{"name":"RtlCrc64","features":[321]},{"name":"RtlIsZeroMemory","features":[303,321]},{"name":"SECTION_ALL_ACCESS","features":[321]},{"name":"SECTION_EXTEND_SIZE","features":[321]},{"name":"SECTION_FLAGS","features":[321]},{"name":"SECTION_MAP_EXECUTE","features":[321]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[321]},{"name":"SECTION_MAP_READ","features":[321]},{"name":"SECTION_MAP_WRITE","features":[321]},{"name":"SECTION_QUERY","features":[321]},{"name":"SEC_64K_PAGES","features":[321]},{"name":"SEC_COMMIT","features":[321]},{"name":"SEC_FILE","features":[321]},{"name":"SEC_IMAGE","features":[321]},{"name":"SEC_IMAGE_NO_EXECUTE","features":[321]},{"name":"SEC_LARGE_PAGES","features":[321]},{"name":"SEC_NOCACHE","features":[321]},{"name":"SEC_PARTITION_OWNER_HANDLE","features":[321]},{"name":"SEC_PROTECTED_IMAGE","features":[321]},{"name":"SEC_RESERVE","features":[321]},{"name":"SEC_WRITECOMBINE","features":[321]},{"name":"SETPROCESSWORKINGSETSIZEEX_FLAGS","features":[321]},{"name":"SetProcessValidCallTargets","features":[303,321]},{"name":"SetProcessValidCallTargetsForMappedView","features":[303,321]},{"name":"SetProcessWorkingSetSizeEx","features":[303,321]},{"name":"SetSystemFileCacheSize","features":[303,321]},{"name":"UNMAP_VIEW_OF_FILE_FLAGS","features":[321]},{"name":"UnmapViewOfFile","features":[303,321]},{"name":"UnmapViewOfFile2","features":[303,321]},{"name":"UnmapViewOfFileEx","features":[303,321]},{"name":"UnregisterBadMemoryNotification","features":[303,321]},{"name":"VIRTUAL_ALLOCATION_TYPE","features":[321]},{"name":"VIRTUAL_FREE_TYPE","features":[321]},{"name":"VirtualAlloc","features":[321]},{"name":"VirtualAlloc2","features":[303,321]},{"name":"VirtualAlloc2FromApp","features":[303,321]},{"name":"VirtualAllocEx","features":[303,321]},{"name":"VirtualAllocExNuma","features":[303,321]},{"name":"VirtualAllocFromApp","features":[321]},{"name":"VirtualFree","features":[303,321]},{"name":"VirtualFreeEx","features":[303,321]},{"name":"VirtualLock","features":[303,321]},{"name":"VirtualProtect","features":[303,321]},{"name":"VirtualProtectEx","features":[303,321]},{"name":"VirtualProtectFromApp","features":[303,321]},{"name":"VirtualQuery","features":[321]},{"name":"VirtualQueryEx","features":[303,321]},{"name":"VirtualUnlock","features":[303,321]},{"name":"VirtualUnlockEx","features":[303,321]},{"name":"VmOfferPriorityBelowNormal","features":[321]},{"name":"VmOfferPriorityLow","features":[321]},{"name":"VmOfferPriorityNormal","features":[321]},{"name":"VmOfferPriorityVeryLow","features":[321]},{"name":"WIN32_MEMORY_INFORMATION_CLASS","features":[321]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION","features":[321]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION_CLASS","features":[321]},{"name":"WIN32_MEMORY_RANGE_ENTRY","features":[321]},{"name":"WIN32_MEMORY_REGION_INFORMATION","features":[321]}],"581":[{"name":"NV_MEMORY_RANGE","features":[564]},{"name":"RtlDrainNonVolatileFlush","features":[564]},{"name":"RtlFillNonVolatileMemory","features":[564]},{"name":"RtlFlushNonVolatileMemory","features":[564]},{"name":"RtlFlushNonVolatileMemoryRanges","features":[564]},{"name":"RtlFreeNonVolatileToken","features":[564]},{"name":"RtlGetNonVolatileToken","features":[564]},{"name":"RtlWriteNonVolatileMemory","features":[564]}],"582":[{"name":"DEFAULT_M_ACKNOWLEDGE","features":[565]},{"name":"DEFAULT_M_APPSPECIFIC","features":[565]},{"name":"DEFAULT_M_AUTH_LEVEL","features":[565]},{"name":"DEFAULT_M_DELIVERY","features":[565]},{"name":"DEFAULT_M_JOURNAL","features":[565]},{"name":"DEFAULT_M_LOOKUPID","features":[565]},{"name":"DEFAULT_M_PRIORITY","features":[565]},{"name":"DEFAULT_M_PRIV_LEVEL","features":[565]},{"name":"DEFAULT_M_SENDERID_TYPE","features":[565]},{"name":"DEFAULT_Q_AUTHENTICATE","features":[565]},{"name":"DEFAULT_Q_BASEPRIORITY","features":[565]},{"name":"DEFAULT_Q_JOURNAL","features":[565]},{"name":"DEFAULT_Q_JOURNAL_QUOTA","features":[565]},{"name":"DEFAULT_Q_PRIV_LEVEL","features":[565]},{"name":"DEFAULT_Q_QUOTA","features":[565]},{"name":"DEFAULT_Q_TRANSACTION","features":[565]},{"name":"FOREIGN_STATUS","features":[565]},{"name":"IMSMQApplication","features":[354,565]},{"name":"IMSMQApplication2","features":[354,565]},{"name":"IMSMQApplication3","features":[354,565]},{"name":"IMSMQCollection","features":[354,565]},{"name":"IMSMQCoordinatedTransactionDispenser","features":[354,565]},{"name":"IMSMQCoordinatedTransactionDispenser2","features":[354,565]},{"name":"IMSMQCoordinatedTransactionDispenser3","features":[354,565]},{"name":"IMSMQDestination","features":[354,565]},{"name":"IMSMQEvent","features":[354,565]},{"name":"IMSMQEvent2","features":[354,565]},{"name":"IMSMQEvent3","features":[354,565]},{"name":"IMSMQManagement","features":[354,565]},{"name":"IMSMQMessage","features":[354,565]},{"name":"IMSMQMessage2","features":[354,565]},{"name":"IMSMQMessage3","features":[354,565]},{"name":"IMSMQMessage4","features":[354,565]},{"name":"IMSMQOutgoingQueueManagement","features":[354,565]},{"name":"IMSMQPrivateDestination","features":[354,565]},{"name":"IMSMQPrivateEvent","features":[354,565]},{"name":"IMSMQQuery","features":[354,565]},{"name":"IMSMQQuery2","features":[354,565]},{"name":"IMSMQQuery3","features":[354,565]},{"name":"IMSMQQuery4","features":[354,565]},{"name":"IMSMQQueue","features":[354,565]},{"name":"IMSMQQueue2","features":[354,565]},{"name":"IMSMQQueue3","features":[354,565]},{"name":"IMSMQQueue4","features":[354,565]},{"name":"IMSMQQueueInfo","features":[354,565]},{"name":"IMSMQQueueInfo2","features":[354,565]},{"name":"IMSMQQueueInfo3","features":[354,565]},{"name":"IMSMQQueueInfo4","features":[354,565]},{"name":"IMSMQQueueInfos","features":[354,565]},{"name":"IMSMQQueueInfos2","features":[354,565]},{"name":"IMSMQQueueInfos3","features":[354,565]},{"name":"IMSMQQueueInfos4","features":[354,565]},{"name":"IMSMQQueueManagement","features":[354,565]},{"name":"IMSMQTransaction","features":[354,565]},{"name":"IMSMQTransaction2","features":[354,565]},{"name":"IMSMQTransaction3","features":[354,565]},{"name":"IMSMQTransactionDispenser","features":[354,565]},{"name":"IMSMQTransactionDispenser2","features":[354,565]},{"name":"IMSMQTransactionDispenser3","features":[354,565]},{"name":"LONG_LIVED","features":[565]},{"name":"MACHINE_ACTION_CONNECT","features":[565]},{"name":"MACHINE_ACTION_DISCONNECT","features":[565]},{"name":"MACHINE_ACTION_TIDY","features":[565]},{"name":"MGMT_QUEUE_CORRECT_TYPE","features":[565]},{"name":"MGMT_QUEUE_FOREIGN_TYPE","features":[565]},{"name":"MGMT_QUEUE_INCORRECT_TYPE","features":[565]},{"name":"MGMT_QUEUE_LOCAL_LOCATION","features":[565]},{"name":"MGMT_QUEUE_NOT_FOREIGN_TYPE","features":[565]},{"name":"MGMT_QUEUE_NOT_TRANSACTIONAL_TYPE","features":[565]},{"name":"MGMT_QUEUE_REMOTE_LOCATION","features":[565]},{"name":"MGMT_QUEUE_STATE_CONNECTED","features":[565]},{"name":"MGMT_QUEUE_STATE_DISCONNECTED","features":[565]},{"name":"MGMT_QUEUE_STATE_DISCONNECTING","features":[565]},{"name":"MGMT_QUEUE_STATE_LOCAL","features":[565]},{"name":"MGMT_QUEUE_STATE_LOCKED","features":[565]},{"name":"MGMT_QUEUE_STATE_NEED_VALIDATE","features":[565]},{"name":"MGMT_QUEUE_STATE_NONACTIVE","features":[565]},{"name":"MGMT_QUEUE_STATE_ONHOLD","features":[565]},{"name":"MGMT_QUEUE_STATE_WAITING","features":[565]},{"name":"MGMT_QUEUE_TRANSACTIONAL_TYPE","features":[565]},{"name":"MGMT_QUEUE_TYPE_CONNECTOR","features":[565]},{"name":"MGMT_QUEUE_TYPE_MACHINE","features":[565]},{"name":"MGMT_QUEUE_TYPE_MULTICAST","features":[565]},{"name":"MGMT_QUEUE_TYPE_PRIVATE","features":[565]},{"name":"MGMT_QUEUE_TYPE_PUBLIC","features":[565]},{"name":"MGMT_QUEUE_UNKNOWN_TYPE","features":[565]},{"name":"MO_MACHINE_TOKEN","features":[565]},{"name":"MO_QUEUE_TOKEN","features":[565]},{"name":"MQACCESS","features":[565]},{"name":"MQADsPathToFormatName","features":[565]},{"name":"MQAUTHENTICATE","features":[565]},{"name":"MQBeginTransaction","features":[546,565]},{"name":"MQCALG","features":[565]},{"name":"MQCERT_REGISTER","features":[565]},{"name":"MQCERT_REGISTER_ALWAYS","features":[565]},{"name":"MQCERT_REGISTER_IF_NOT_EXIST","features":[565]},{"name":"MQCOLUMNSET","features":[565]},{"name":"MQCONN_BIND_SOCKET_FAILURE","features":[565]},{"name":"MQCONN_CONNECT_SOCKET_FAILURE","features":[565]},{"name":"MQCONN_CREATE_SOCKET_FAILURE","features":[565]},{"name":"MQCONN_ESTABLISH_PACKET_RECEIVED","features":[565]},{"name":"MQCONN_INVALID_SERVER_CERT","features":[565]},{"name":"MQCONN_LIMIT_REACHED","features":[565]},{"name":"MQCONN_NAME_RESOLUTION_FAILURE","features":[565]},{"name":"MQCONN_NOFAILURE","features":[565]},{"name":"MQCONN_NOT_READY","features":[565]},{"name":"MQCONN_OUT_OF_MEMORY","features":[565]},{"name":"MQCONN_PING_FAILURE","features":[565]},{"name":"MQCONN_READY","features":[565]},{"name":"MQCONN_REFUSED_BY_OTHER_SIDE","features":[565]},{"name":"MQCONN_ROUTING_FAILURE","features":[565]},{"name":"MQCONN_SEND_FAILURE","features":[565]},{"name":"MQCONN_TCP_NOT_ENABLED","features":[565]},{"name":"MQCONN_UNKNOWN_FAILURE","features":[565]},{"name":"MQCloseCursor","features":[303,565]},{"name":"MQCloseQueue","features":[565]},{"name":"MQConnectionState","features":[565]},{"name":"MQCreateCursor","features":[303,565]},{"name":"MQCreateQueue","features":[306,565]},{"name":"MQDEFAULT","features":[565]},{"name":"MQDeleteQueue","features":[565]},{"name":"MQERROR","features":[565]},{"name":"MQFreeMemory","features":[565]},{"name":"MQFreeSecurityContext","features":[303,565]},{"name":"MQGetMachineProperties","features":[565]},{"name":"MQGetOverlappedResult","features":[303,308,565]},{"name":"MQGetPrivateComputerInformation","features":[565]},{"name":"MQGetQueueProperties","features":[565]},{"name":"MQGetQueueSecurity","features":[306,565]},{"name":"MQGetSecurityContext","features":[303,565]},{"name":"MQGetSecurityContextEx","features":[303,565]},{"name":"MQHandleToFormatName","features":[565]},{"name":"MQInstanceToFormatName","features":[565]},{"name":"MQJOURNAL","features":[565]},{"name":"MQLocateBegin","features":[303,565]},{"name":"MQLocateEnd","features":[303,565]},{"name":"MQLocateNext","features":[303,565]},{"name":"MQMAX","features":[565]},{"name":"MQMGMTPROPS","features":[565]},{"name":"MQMSGACKNOWLEDGEMENT","features":[565]},{"name":"MQMSGAUTHENTICATION","features":[565]},{"name":"MQMSGAUTHLEVEL","features":[565]},{"name":"MQMSGCLASS","features":[565]},{"name":"MQMSGCURSOR","features":[565]},{"name":"MQMSGDELIVERY","features":[565]},{"name":"MQMSGIDSIZE","features":[565]},{"name":"MQMSGJOURNAL","features":[565]},{"name":"MQMSGMAX","features":[565]},{"name":"MQMSGPRIVLEVEL","features":[565]},{"name":"MQMSGPROPS","features":[565]},{"name":"MQMSGSENDERIDTYPE","features":[565]},{"name":"MQMSGTRACE","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_REACH_QUEUE","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_RECEIVE","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_REACH_QUEUE","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_RECEIVE","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_RECEIVE","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_NONE","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_ARRIVAL","features":[565]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_RECEIVE","features":[565]},{"name":"MQMSG_AUTHENTICATED_QM_MESSAGE","features":[565]},{"name":"MQMSG_AUTHENTICATED_SIG10","features":[565]},{"name":"MQMSG_AUTHENTICATED_SIG20","features":[565]},{"name":"MQMSG_AUTHENTICATED_SIG30","features":[565]},{"name":"MQMSG_AUTHENTICATED_SIGXML","features":[565]},{"name":"MQMSG_AUTHENTICATION_NOT_REQUESTED","features":[565]},{"name":"MQMSG_AUTHENTICATION_REQUESTED","features":[565]},{"name":"MQMSG_AUTHENTICATION_REQUESTED_EX","features":[565]},{"name":"MQMSG_AUTH_LEVEL_ALWAYS","features":[565]},{"name":"MQMSG_AUTH_LEVEL_MSMQ10","features":[565]},{"name":"MQMSG_AUTH_LEVEL_MSMQ20","features":[565]},{"name":"MQMSG_AUTH_LEVEL_NONE","features":[565]},{"name":"MQMSG_AUTH_LEVEL_SIG10","features":[565]},{"name":"MQMSG_AUTH_LEVEL_SIG20","features":[565]},{"name":"MQMSG_AUTH_LEVEL_SIG30","features":[565]},{"name":"MQMSG_CALG_DES","features":[565]},{"name":"MQMSG_CALG_DSS_SIGN","features":[565]},{"name":"MQMSG_CALG_MAC","features":[565]},{"name":"MQMSG_CALG_MD2","features":[565]},{"name":"MQMSG_CALG_MD4","features":[565]},{"name":"MQMSG_CALG_MD5","features":[565]},{"name":"MQMSG_CALG_RC2","features":[565]},{"name":"MQMSG_CALG_RC4","features":[565]},{"name":"MQMSG_CALG_RSA_KEYX","features":[565]},{"name":"MQMSG_CALG_RSA_SIGN","features":[565]},{"name":"MQMSG_CALG_SEAL","features":[565]},{"name":"MQMSG_CALG_SHA","features":[565]},{"name":"MQMSG_CALG_SHA1","features":[565]},{"name":"MQMSG_CLASS_ACK_REACH_QUEUE","features":[565]},{"name":"MQMSG_CLASS_ACK_RECEIVE","features":[565]},{"name":"MQMSG_CLASS_NACK_ACCESS_DENIED","features":[565]},{"name":"MQMSG_CLASS_NACK_BAD_DST_Q","features":[565]},{"name":"MQMSG_CLASS_NACK_BAD_ENCRYPTION","features":[565]},{"name":"MQMSG_CLASS_NACK_BAD_SIGNATURE","features":[565]},{"name":"MQMSG_CLASS_NACK_COULD_NOT_ENCRYPT","features":[565]},{"name":"MQMSG_CLASS_NACK_HOP_COUNT_EXCEEDED","features":[565]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_MSG","features":[565]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_Q","features":[565]},{"name":"MQMSG_CLASS_NACK_PURGED","features":[565]},{"name":"MQMSG_CLASS_NACK_Q_DELETED","features":[565]},{"name":"MQMSG_CLASS_NACK_Q_EXCEED_QUOTA","features":[565]},{"name":"MQMSG_CLASS_NACK_Q_PURGED","features":[565]},{"name":"MQMSG_CLASS_NACK_REACH_QUEUE_TIMEOUT","features":[565]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT","features":[565]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT_AT_SENDER","features":[565]},{"name":"MQMSG_CLASS_NACK_SOURCE_COMPUTER_GUID_CHANGED","features":[565]},{"name":"MQMSG_CLASS_NACK_UNSUPPORTED_CRYPTO_PROVIDER","features":[565]},{"name":"MQMSG_CLASS_NORMAL","features":[565]},{"name":"MQMSG_CLASS_REPORT","features":[565]},{"name":"MQMSG_CORRELATIONID_SIZE","features":[565]},{"name":"MQMSG_CURRENT","features":[565]},{"name":"MQMSG_DEADLETTER","features":[565]},{"name":"MQMSG_DELIVERY_EXPRESS","features":[565]},{"name":"MQMSG_DELIVERY_RECOVERABLE","features":[565]},{"name":"MQMSG_FIRST","features":[565]},{"name":"MQMSG_FIRST_IN_XACT","features":[565]},{"name":"MQMSG_JOURNAL","features":[565]},{"name":"MQMSG_JOURNAL_NONE","features":[565]},{"name":"MQMSG_LAST_IN_XACT","features":[565]},{"name":"MQMSG_MSGID_SIZE","features":[565]},{"name":"MQMSG_NEXT","features":[565]},{"name":"MQMSG_NOT_FIRST_IN_XACT","features":[565]},{"name":"MQMSG_NOT_LAST_IN_XACT","features":[565]},{"name":"MQMSG_PRIV_LEVEL_BODY_AES","features":[565]},{"name":"MQMSG_PRIV_LEVEL_BODY_BASE","features":[565]},{"name":"MQMSG_PRIV_LEVEL_BODY_ENHANCED","features":[565]},{"name":"MQMSG_PRIV_LEVEL_NONE","features":[565]},{"name":"MQMSG_SENDERID_TYPE_NONE","features":[565]},{"name":"MQMSG_SENDERID_TYPE_SID","features":[565]},{"name":"MQMSG_SEND_ROUTE_TO_REPORT_QUEUE","features":[565]},{"name":"MQMSG_TRACE_NONE","features":[565]},{"name":"MQMSG_XACTID_SIZE","features":[565]},{"name":"MQMarkMessageRejected","features":[303,565]},{"name":"MQMgmtAction","features":[565]},{"name":"MQMgmtGetInfo","features":[565]},{"name":"MQMoveMessage","features":[546,565]},{"name":"MQOpenQueue","features":[565]},{"name":"MQPRIORITY","features":[565]},{"name":"MQPRIVATEPROPS","features":[565]},{"name":"MQPRIVLEVEL","features":[565]},{"name":"MQPROPERTYRESTRICTION","features":[565]},{"name":"MQPathNameToFormatName","features":[565]},{"name":"MQPurgeQueue","features":[565]},{"name":"MQQMPROPS","features":[565]},{"name":"MQQUEUEACCESSMASK","features":[565]},{"name":"MQQUEUEPROPS","features":[565]},{"name":"MQRESTRICTION","features":[565]},{"name":"MQReceiveMessage","features":[303,546,308,565]},{"name":"MQReceiveMessageByLookupId","features":[303,546,308,565]},{"name":"MQRegisterCertificate","features":[565]},{"name":"MQSEC_CHANGE_QUEUE_PERMISSIONS","features":[565]},{"name":"MQSEC_DELETE_JOURNAL_MESSAGE","features":[565]},{"name":"MQSEC_DELETE_MESSAGE","features":[565]},{"name":"MQSEC_DELETE_QUEUE","features":[565]},{"name":"MQSEC_GET_QUEUE_PERMISSIONS","features":[565]},{"name":"MQSEC_GET_QUEUE_PROPERTIES","features":[565]},{"name":"MQSEC_PEEK_MESSAGE","features":[565]},{"name":"MQSEC_QUEUE_GENERIC_ALL","features":[565]},{"name":"MQSEC_QUEUE_GENERIC_EXECUTE","features":[565]},{"name":"MQSEC_QUEUE_GENERIC_READ","features":[565]},{"name":"MQSEC_QUEUE_GENERIC_WRITE","features":[565]},{"name":"MQSEC_RECEIVE_JOURNAL_MESSAGE","features":[565]},{"name":"MQSEC_RECEIVE_MESSAGE","features":[565]},{"name":"MQSEC_SET_QUEUE_PROPERTIES","features":[565]},{"name":"MQSEC_TAKE_QUEUE_OWNERSHIP","features":[565]},{"name":"MQSEC_WRITE_MESSAGE","features":[565]},{"name":"MQSHARE","features":[565]},{"name":"MQSORTKEY","features":[565]},{"name":"MQSORTSET","features":[565]},{"name":"MQSendMessage","features":[546,565]},{"name":"MQSetQueueProperties","features":[565]},{"name":"MQSetQueueSecurity","features":[306,565]},{"name":"MQTRANSACTION","features":[565]},{"name":"MQTRANSACTIONAL","features":[565]},{"name":"MQWARNING","features":[565]},{"name":"MQ_ACTION_PEEK_CURRENT","features":[565]},{"name":"MQ_ACTION_PEEK_NEXT","features":[565]},{"name":"MQ_ACTION_RECEIVE","features":[565]},{"name":"MQ_ADMIN_ACCESS","features":[565]},{"name":"MQ_AUTHENTICATE","features":[565]},{"name":"MQ_AUTHENTICATE_NONE","features":[565]},{"name":"MQ_CORRUPTED_QUEUE_WAS_DELETED","features":[565]},{"name":"MQ_DENY_NONE","features":[565]},{"name":"MQ_DENY_RECEIVE_SHARE","features":[565]},{"name":"MQ_ERROR","features":[565]},{"name":"MQ_ERROR_ACCESS_DENIED","features":[565]},{"name":"MQ_ERROR_BAD_SECURITY_CONTEXT","features":[565]},{"name":"MQ_ERROR_BAD_XML_FORMAT","features":[565]},{"name":"MQ_ERROR_BUFFER_OVERFLOW","features":[565]},{"name":"MQ_ERROR_CANNOT_CREATE_CERT_STORE","features":[565]},{"name":"MQ_ERROR_CANNOT_CREATE_HASH_EX","features":[565]},{"name":"MQ_ERROR_CANNOT_CREATE_ON_GC","features":[565]},{"name":"MQ_ERROR_CANNOT_CREATE_PSC_OBJECTS","features":[565]},{"name":"MQ_ERROR_CANNOT_DELETE_PSC_OBJECTS","features":[565]},{"name":"MQ_ERROR_CANNOT_GET_DN","features":[565]},{"name":"MQ_ERROR_CANNOT_GRANT_ADD_GUID","features":[565]},{"name":"MQ_ERROR_CANNOT_HASH_DATA_EX","features":[565]},{"name":"MQ_ERROR_CANNOT_IMPERSONATE_CLIENT","features":[565]},{"name":"MQ_ERROR_CANNOT_JOIN_DOMAIN","features":[565]},{"name":"MQ_ERROR_CANNOT_LOAD_MQAD","features":[565]},{"name":"MQ_ERROR_CANNOT_LOAD_MQDSSRV","features":[565]},{"name":"MQ_ERROR_CANNOT_LOAD_MSMQOCM","features":[565]},{"name":"MQ_ERROR_CANNOT_OPEN_CERT_STORE","features":[565]},{"name":"MQ_ERROR_CANNOT_SET_CRYPTO_SEC_DESCR","features":[565]},{"name":"MQ_ERROR_CANNOT_SIGN_DATA_EX","features":[565]},{"name":"MQ_ERROR_CANNOT_UPDATE_PSC_OBJECTS","features":[565]},{"name":"MQ_ERROR_CANT_CREATE_CERT_STORE","features":[565]},{"name":"MQ_ERROR_CANT_OPEN_CERT_STORE","features":[565]},{"name":"MQ_ERROR_CANT_RESOLVE_SITES","features":[565]},{"name":"MQ_ERROR_CERTIFICATE_NOT_PROVIDED","features":[565]},{"name":"MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION","features":[565]},{"name":"MQ_ERROR_CORRUPTED_INTERNAL_CERTIFICATE","features":[565]},{"name":"MQ_ERROR_CORRUPTED_PERSONAL_CERT_STORE","features":[565]},{"name":"MQ_ERROR_CORRUPTED_SECURITY_DATA","features":[565]},{"name":"MQ_ERROR_COULD_NOT_GET_ACCOUNT_INFO","features":[565]},{"name":"MQ_ERROR_COULD_NOT_GET_USER_SID","features":[565]},{"name":"MQ_ERROR_DELETE_CN_IN_USE","features":[565]},{"name":"MQ_ERROR_DEPEND_WKS_LICENSE_OVERFLOW","features":[565]},{"name":"MQ_ERROR_DS_BIND_ROOT_FOREST","features":[565]},{"name":"MQ_ERROR_DS_ERROR","features":[565]},{"name":"MQ_ERROR_DS_IS_FULL","features":[565]},{"name":"MQ_ERROR_DS_LOCAL_USER","features":[565]},{"name":"MQ_ERROR_DTC_CONNECT","features":[565]},{"name":"MQ_ERROR_ENCRYPTION_PROVIDER_NOT_SUPPORTED","features":[565]},{"name":"MQ_ERROR_FAIL_VERIFY_SIGNATURE_EX","features":[565]},{"name":"MQ_ERROR_FORMATNAME_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_GC_NEEDED","features":[565]},{"name":"MQ_ERROR_GUID_NOT_MATCHING","features":[565]},{"name":"MQ_ERROR_ILLEGAL_CONTEXT","features":[565]},{"name":"MQ_ERROR_ILLEGAL_CURSOR_ACTION","features":[565]},{"name":"MQ_ERROR_ILLEGAL_ENTERPRISE_OPERATION","features":[565]},{"name":"MQ_ERROR_ILLEGAL_FORMATNAME","features":[565]},{"name":"MQ_ERROR_ILLEGAL_MQCOLUMNS","features":[565]},{"name":"MQ_ERROR_ILLEGAL_MQPRIVATEPROPS","features":[565]},{"name":"MQ_ERROR_ILLEGAL_MQQMPROPS","features":[565]},{"name":"MQ_ERROR_ILLEGAL_MQQUEUEPROPS","features":[565]},{"name":"MQ_ERROR_ILLEGAL_OPERATION","features":[565]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_SIZE","features":[565]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VALUE","features":[565]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VT","features":[565]},{"name":"MQ_ERROR_ILLEGAL_PROPID","features":[565]},{"name":"MQ_ERROR_ILLEGAL_QUEUE_PATHNAME","features":[565]},{"name":"MQ_ERROR_ILLEGAL_RELATION","features":[565]},{"name":"MQ_ERROR_ILLEGAL_RESTRICTION_PROPID","features":[565]},{"name":"MQ_ERROR_ILLEGAL_SECURITY_DESCRIPTOR","features":[565]},{"name":"MQ_ERROR_ILLEGAL_SORT","features":[565]},{"name":"MQ_ERROR_ILLEGAL_SORT_PROPID","features":[565]},{"name":"MQ_ERROR_ILLEGAL_USER","features":[565]},{"name":"MQ_ERROR_INSUFFICIENT_PROPERTIES","features":[565]},{"name":"MQ_ERROR_INSUFFICIENT_RESOURCES","features":[565]},{"name":"MQ_ERROR_INTERNAL_USER_CERT_EXIST","features":[565]},{"name":"MQ_ERROR_INVALID_CERTIFICATE","features":[565]},{"name":"MQ_ERROR_INVALID_HANDLE","features":[565]},{"name":"MQ_ERROR_INVALID_OWNER","features":[565]},{"name":"MQ_ERROR_INVALID_PARAMETER","features":[565]},{"name":"MQ_ERROR_IO_TIMEOUT","features":[565]},{"name":"MQ_ERROR_LABEL_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_LABEL_TOO_LONG","features":[565]},{"name":"MQ_ERROR_MACHINE_EXISTS","features":[565]},{"name":"MQ_ERROR_MACHINE_NOT_FOUND","features":[565]},{"name":"MQ_ERROR_MESSAGE_ALREADY_RECEIVED","features":[565]},{"name":"MQ_ERROR_MESSAGE_LOCKED_UNDER_TRANSACTION","features":[565]},{"name":"MQ_ERROR_MESSAGE_NOT_AUTHENTICATED","features":[565]},{"name":"MQ_ERROR_MESSAGE_NOT_FOUND","features":[565]},{"name":"MQ_ERROR_MESSAGE_STORAGE_FAILED","features":[565]},{"name":"MQ_ERROR_MISSING_CONNECTOR_TYPE","features":[565]},{"name":"MQ_ERROR_MQIS_READONLY_MODE","features":[565]},{"name":"MQ_ERROR_MQIS_SERVER_EMPTY","features":[565]},{"name":"MQ_ERROR_MULTI_SORT_KEYS","features":[565]},{"name":"MQ_ERROR_NOT_A_CORRECT_OBJECT_CLASS","features":[565]},{"name":"MQ_ERROR_NOT_SUPPORTED_BY_DEPENDENT_CLIENTS","features":[565]},{"name":"MQ_ERROR_NO_DS","features":[565]},{"name":"MQ_ERROR_NO_ENTRY_POINT_MSMQOCM","features":[565]},{"name":"MQ_ERROR_NO_GC_IN_DOMAIN","features":[565]},{"name":"MQ_ERROR_NO_INTERNAL_USER_CERT","features":[565]},{"name":"MQ_ERROR_NO_MQUSER_OU","features":[565]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_DC","features":[565]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_GC","features":[565]},{"name":"MQ_ERROR_NO_RESPONSE_FROM_OBJECT_SERVER","features":[565]},{"name":"MQ_ERROR_OBJECT_SERVER_NOT_AVAILABLE","features":[565]},{"name":"MQ_ERROR_OPERATION_CANCELLED","features":[565]},{"name":"MQ_ERROR_OPERATION_NOT_SUPPORTED_BY_REMOTE_COMPUTER","features":[565]},{"name":"MQ_ERROR_PRIVILEGE_NOT_HELD","features":[565]},{"name":"MQ_ERROR_PROPERTIES_CONFLICT","features":[565]},{"name":"MQ_ERROR_PROPERTY","features":[565]},{"name":"MQ_ERROR_PROPERTY_NOTALLOWED","features":[565]},{"name":"MQ_ERROR_PROV_NAME_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_PUBLIC_KEY_DOES_NOT_EXIST","features":[565]},{"name":"MQ_ERROR_PUBLIC_KEY_NOT_FOUND","features":[565]},{"name":"MQ_ERROR_QUEUE_DELETED","features":[565]},{"name":"MQ_ERROR_QUEUE_EXISTS","features":[565]},{"name":"MQ_ERROR_QUEUE_NOT_ACTIVE","features":[565]},{"name":"MQ_ERROR_QUEUE_NOT_AVAILABLE","features":[565]},{"name":"MQ_ERROR_QUEUE_NOT_FOUND","features":[565]},{"name":"MQ_ERROR_Q_ADS_PROPERTY_NOT_SUPPORTED","features":[565]},{"name":"MQ_ERROR_Q_DNS_PROPERTY_NOT_SUPPORTED","features":[565]},{"name":"MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE","features":[565]},{"name":"MQ_ERROR_RESOLVE_ADDRESS","features":[565]},{"name":"MQ_ERROR_RESULT_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_SENDERID_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_SENDER_CERT_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_SERVICE_NOT_AVAILABLE","features":[565]},{"name":"MQ_ERROR_SHARING_VIOLATION","features":[565]},{"name":"MQ_ERROR_SIGNATURE_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_STALE_HANDLE","features":[565]},{"name":"MQ_ERROR_SYMM_KEY_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_TOO_MANY_PROPERTIES","features":[565]},{"name":"MQ_ERROR_TRANSACTION_ENLIST","features":[565]},{"name":"MQ_ERROR_TRANSACTION_IMPORT","features":[565]},{"name":"MQ_ERROR_TRANSACTION_SEQUENCE","features":[565]},{"name":"MQ_ERROR_TRANSACTION_USAGE","features":[565]},{"name":"MQ_ERROR_UNINITIALIZED_OBJECT","features":[565]},{"name":"MQ_ERROR_UNSUPPORTED_ACCESS_MODE","features":[565]},{"name":"MQ_ERROR_UNSUPPORTED_CLASS","features":[565]},{"name":"MQ_ERROR_UNSUPPORTED_FORMATNAME_OPERATION","features":[565]},{"name":"MQ_ERROR_UNSUPPORTED_OPERATION","features":[565]},{"name":"MQ_ERROR_USER_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_ERROR_WKS_CANT_SERVE_CLIENT","features":[565]},{"name":"MQ_ERROR_WRITE_NOT_ALLOWED","features":[565]},{"name":"MQ_INFORMATION_DUPLICATE_PROPERTY","features":[565]},{"name":"MQ_INFORMATION_FORMATNAME_BUFFER_TOO_SMALL","features":[565]},{"name":"MQ_INFORMATION_ILLEGAL_PROPERTY","features":[565]},{"name":"MQ_INFORMATION_INTERNAL_USER_CERT_EXIST","features":[565]},{"name":"MQ_INFORMATION_OPERATION_PENDING","features":[565]},{"name":"MQ_INFORMATION_OWNER_IGNORED","features":[565]},{"name":"MQ_INFORMATION_PROPERTY","features":[565]},{"name":"MQ_INFORMATION_PROPERTY_IGNORED","features":[565]},{"name":"MQ_INFORMATION_UNSUPPORTED_PROPERTY","features":[565]},{"name":"MQ_JOURNAL","features":[565]},{"name":"MQ_JOURNAL_NONE","features":[565]},{"name":"MQ_LOOKUP_PEEK_CURRENT","features":[565]},{"name":"MQ_LOOKUP_PEEK_FIRST","features":[565]},{"name":"MQ_LOOKUP_PEEK_LAST","features":[565]},{"name":"MQ_LOOKUP_PEEK_NEXT","features":[565]},{"name":"MQ_LOOKUP_PEEK_PREV","features":[565]},{"name":"MQ_LOOKUP_RECEIVE_ALLOW_PEEK","features":[565]},{"name":"MQ_LOOKUP_RECEIVE_CURRENT","features":[565]},{"name":"MQ_LOOKUP_RECEIVE_FIRST","features":[565]},{"name":"MQ_LOOKUP_RECEIVE_LAST","features":[565]},{"name":"MQ_LOOKUP_RECEIVE_NEXT","features":[565]},{"name":"MQ_LOOKUP_RECEIVE_PREV","features":[565]},{"name":"MQ_MAX_MSG_LABEL_LEN","features":[565]},{"name":"MQ_MAX_PRIORITY","features":[565]},{"name":"MQ_MAX_Q_LABEL_LEN","features":[565]},{"name":"MQ_MAX_Q_NAME_LEN","features":[565]},{"name":"MQ_MIN_PRIORITY","features":[565]},{"name":"MQ_MOVE_ACCESS","features":[565]},{"name":"MQ_MTS_TRANSACTION","features":[565]},{"name":"MQ_NO_TRANSACTION","features":[565]},{"name":"MQ_OK","features":[565]},{"name":"MQ_PEEK_ACCESS","features":[565]},{"name":"MQ_PRIV_LEVEL_BODY","features":[565]},{"name":"MQ_PRIV_LEVEL_NONE","features":[565]},{"name":"MQ_PRIV_LEVEL_OPTIONAL","features":[565]},{"name":"MQ_QTYPE_REPORT","features":[565]},{"name":"MQ_QTYPE_TEST","features":[565]},{"name":"MQ_QUEUE_STATE_CONNECTED","features":[565]},{"name":"MQ_QUEUE_STATE_DISCONNECTED","features":[565]},{"name":"MQ_QUEUE_STATE_DISCONNECTING","features":[565]},{"name":"MQ_QUEUE_STATE_LOCAL_CONNECTION","features":[565]},{"name":"MQ_QUEUE_STATE_LOCKED","features":[565]},{"name":"MQ_QUEUE_STATE_NEEDVALIDATE","features":[565]},{"name":"MQ_QUEUE_STATE_NONACTIVE","features":[565]},{"name":"MQ_QUEUE_STATE_ONHOLD","features":[565]},{"name":"MQ_QUEUE_STATE_WAITING","features":[565]},{"name":"MQ_RECEIVE_ACCESS","features":[565]},{"name":"MQ_SEND_ACCESS","features":[565]},{"name":"MQ_SINGLE_MESSAGE","features":[565]},{"name":"MQ_STATUS_FOREIGN","features":[565]},{"name":"MQ_STATUS_NOT_FOREIGN","features":[565]},{"name":"MQ_STATUS_UNKNOWN","features":[565]},{"name":"MQ_TRANSACTIONAL","features":[565]},{"name":"MQ_TRANSACTIONAL_NONE","features":[565]},{"name":"MQ_TYPE_CONNECTOR","features":[565]},{"name":"MQ_TYPE_MACHINE","features":[565]},{"name":"MQ_TYPE_MULTICAST","features":[565]},{"name":"MQ_TYPE_PRIVATE","features":[565]},{"name":"MQ_TYPE_PUBLIC","features":[565]},{"name":"MQ_XACT_STATUS_NOT_XACT","features":[565]},{"name":"MQ_XACT_STATUS_UNKNOWN","features":[565]},{"name":"MQ_XACT_STATUS_XACT","features":[565]},{"name":"MQ_XA_TRANSACTION","features":[565]},{"name":"MSMQApplication","features":[565]},{"name":"MSMQCollection","features":[565]},{"name":"MSMQCoordinatedTransactionDispenser","features":[565]},{"name":"MSMQDestination","features":[565]},{"name":"MSMQEvent","features":[565]},{"name":"MSMQManagement","features":[565]},{"name":"MSMQMessage","features":[565]},{"name":"MSMQOutgoingQueueManagement","features":[565]},{"name":"MSMQQuery","features":[565]},{"name":"MSMQQueue","features":[565]},{"name":"MSMQQueueInfo","features":[565]},{"name":"MSMQQueueInfos","features":[565]},{"name":"MSMQQueueManagement","features":[565]},{"name":"MSMQTransaction","features":[565]},{"name":"MSMQTransactionDispenser","features":[565]},{"name":"MSMQ_CONNECTED","features":[565]},{"name":"MSMQ_DISCONNECTED","features":[565]},{"name":"PMQRECEIVECALLBACK","features":[303,308,565]},{"name":"PREQ","features":[565]},{"name":"PRGE","features":[565]},{"name":"PRGT","features":[565]},{"name":"PRLE","features":[565]},{"name":"PRLT","features":[565]},{"name":"PRNE","features":[565]},{"name":"PROPID_MGMT_MSMQ_ACTIVEQUEUES","features":[565]},{"name":"PROPID_MGMT_MSMQ_BASE","features":[565]},{"name":"PROPID_MGMT_MSMQ_BYTES_IN_ALL_QUEUES","features":[565]},{"name":"PROPID_MGMT_MSMQ_CONNECTED","features":[565]},{"name":"PROPID_MGMT_MSMQ_DSSERVER","features":[565]},{"name":"PROPID_MGMT_MSMQ_PRIVATEQ","features":[565]},{"name":"PROPID_MGMT_MSMQ_TYPE","features":[565]},{"name":"PROPID_MGMT_QUEUE_BASE","features":[565]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_JOURNAL","features":[565]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_QUEUE","features":[565]},{"name":"PROPID_MGMT_QUEUE_CONNECTION_HISTORY","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_FIRST_NON_ACK","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_COUNT","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_TIME","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_NON_ACK","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_NEXT_SEQ","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_ACK_COUNT","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_READ_COUNT","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_COUNT","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_INTERVAL","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_TIME","features":[565]},{"name":"PROPID_MGMT_QUEUE_EOD_SOURCE_INFO","features":[565]},{"name":"PROPID_MGMT_QUEUE_FOREIGN","features":[565]},{"name":"PROPID_MGMT_QUEUE_FORMATNAME","features":[565]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_MESSAGE_COUNT","features":[565]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_USED_QUOTA","features":[565]},{"name":"PROPID_MGMT_QUEUE_LOCATION","features":[565]},{"name":"PROPID_MGMT_QUEUE_MESSAGE_COUNT","features":[565]},{"name":"PROPID_MGMT_QUEUE_NEXTHOPS","features":[565]},{"name":"PROPID_MGMT_QUEUE_PATHNAME","features":[565]},{"name":"PROPID_MGMT_QUEUE_STATE","features":[565]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_COUNT","features":[565]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_NAMES","features":[565]},{"name":"PROPID_MGMT_QUEUE_TYPE","features":[565]},{"name":"PROPID_MGMT_QUEUE_USED_QUOTA","features":[565]},{"name":"PROPID_MGMT_QUEUE_XACT","features":[565]},{"name":"PROPID_M_ABORT_COUNT","features":[565]},{"name":"PROPID_M_ACKNOWLEDGE","features":[565]},{"name":"PROPID_M_ADMIN_QUEUE","features":[565]},{"name":"PROPID_M_ADMIN_QUEUE_LEN","features":[565]},{"name":"PROPID_M_APPSPECIFIC","features":[565]},{"name":"PROPID_M_ARRIVEDTIME","features":[565]},{"name":"PROPID_M_AUTHENTICATED","features":[565]},{"name":"PROPID_M_AUTHENTICATED_EX","features":[565]},{"name":"PROPID_M_AUTH_LEVEL","features":[565]},{"name":"PROPID_M_BASE","features":[565]},{"name":"PROPID_M_BODY","features":[565]},{"name":"PROPID_M_BODY_SIZE","features":[565]},{"name":"PROPID_M_BODY_TYPE","features":[565]},{"name":"PROPID_M_CLASS","features":[565]},{"name":"PROPID_M_COMPOUND_MESSAGE","features":[565]},{"name":"PROPID_M_COMPOUND_MESSAGE_SIZE","features":[565]},{"name":"PROPID_M_CONNECTOR_TYPE","features":[565]},{"name":"PROPID_M_CORRELATIONID","features":[565]},{"name":"PROPID_M_CORRELATIONID_SIZE","features":[565]},{"name":"PROPID_M_DEADLETTER_QUEUE","features":[565]},{"name":"PROPID_M_DEADLETTER_QUEUE_LEN","features":[565]},{"name":"PROPID_M_DELIVERY","features":[565]},{"name":"PROPID_M_DEST_FORMAT_NAME","features":[565]},{"name":"PROPID_M_DEST_FORMAT_NAME_LEN","features":[565]},{"name":"PROPID_M_DEST_QUEUE","features":[565]},{"name":"PROPID_M_DEST_QUEUE_LEN","features":[565]},{"name":"PROPID_M_DEST_SYMM_KEY","features":[565]},{"name":"PROPID_M_DEST_SYMM_KEY_LEN","features":[565]},{"name":"PROPID_M_ENCRYPTION_ALG","features":[565]},{"name":"PROPID_M_EXTENSION","features":[565]},{"name":"PROPID_M_EXTENSION_LEN","features":[565]},{"name":"PROPID_M_FIRST_IN_XACT","features":[565]},{"name":"PROPID_M_HASH_ALG","features":[565]},{"name":"PROPID_M_JOURNAL","features":[565]},{"name":"PROPID_M_LABEL","features":[565]},{"name":"PROPID_M_LABEL_LEN","features":[565]},{"name":"PROPID_M_LAST_IN_XACT","features":[565]},{"name":"PROPID_M_LAST_MOVE_TIME","features":[565]},{"name":"PROPID_M_LOOKUPID","features":[565]},{"name":"PROPID_M_MOVE_COUNT","features":[565]},{"name":"PROPID_M_MSGID","features":[565]},{"name":"PROPID_M_MSGID_SIZE","features":[565]},{"name":"PROPID_M_PRIORITY","features":[565]},{"name":"PROPID_M_PRIV_LEVEL","features":[565]},{"name":"PROPID_M_PROV_NAME","features":[565]},{"name":"PROPID_M_PROV_NAME_LEN","features":[565]},{"name":"PROPID_M_PROV_TYPE","features":[565]},{"name":"PROPID_M_RESP_FORMAT_NAME","features":[565]},{"name":"PROPID_M_RESP_FORMAT_NAME_LEN","features":[565]},{"name":"PROPID_M_RESP_QUEUE","features":[565]},{"name":"PROPID_M_RESP_QUEUE_LEN","features":[565]},{"name":"PROPID_M_SECURITY_CONTEXT","features":[565]},{"name":"PROPID_M_SENDERID","features":[565]},{"name":"PROPID_M_SENDERID_LEN","features":[565]},{"name":"PROPID_M_SENDERID_TYPE","features":[565]},{"name":"PROPID_M_SENDER_CERT","features":[565]},{"name":"PROPID_M_SENDER_CERT_LEN","features":[565]},{"name":"PROPID_M_SENTTIME","features":[565]},{"name":"PROPID_M_SIGNATURE","features":[565]},{"name":"PROPID_M_SIGNATURE_LEN","features":[565]},{"name":"PROPID_M_SOAP_BODY","features":[565]},{"name":"PROPID_M_SOAP_ENVELOPE","features":[565]},{"name":"PROPID_M_SOAP_ENVELOPE_LEN","features":[565]},{"name":"PROPID_M_SOAP_HEADER","features":[565]},{"name":"PROPID_M_SRC_MACHINE_ID","features":[565]},{"name":"PROPID_M_TIME_TO_BE_RECEIVED","features":[565]},{"name":"PROPID_M_TIME_TO_REACH_QUEUE","features":[565]},{"name":"PROPID_M_TRACE","features":[565]},{"name":"PROPID_M_VERSION","features":[565]},{"name":"PROPID_M_XACTID","features":[565]},{"name":"PROPID_M_XACTID_SIZE","features":[565]},{"name":"PROPID_M_XACT_STATUS_QUEUE","features":[565]},{"name":"PROPID_M_XACT_STATUS_QUEUE_LEN","features":[565]},{"name":"PROPID_PC_BASE","features":[565]},{"name":"PROPID_PC_DS_ENABLED","features":[565]},{"name":"PROPID_PC_VERSION","features":[565]},{"name":"PROPID_QM_BASE","features":[565]},{"name":"PROPID_QM_CONNECTION","features":[565]},{"name":"PROPID_QM_ENCRYPTION_PK","features":[565]},{"name":"PROPID_QM_ENCRYPTION_PK_AES","features":[565]},{"name":"PROPID_QM_ENCRYPTION_PK_BASE","features":[565]},{"name":"PROPID_QM_ENCRYPTION_PK_ENHANCED","features":[565]},{"name":"PROPID_QM_MACHINE_ID","features":[565]},{"name":"PROPID_QM_PATHNAME","features":[565]},{"name":"PROPID_QM_PATHNAME_DNS","features":[565]},{"name":"PROPID_QM_SITE_ID","features":[565]},{"name":"PROPID_Q_ADS_PATH","features":[565]},{"name":"PROPID_Q_AUTHENTICATE","features":[565]},{"name":"PROPID_Q_BASE","features":[565]},{"name":"PROPID_Q_BASEPRIORITY","features":[565]},{"name":"PROPID_Q_CREATE_TIME","features":[565]},{"name":"PROPID_Q_INSTANCE","features":[565]},{"name":"PROPID_Q_JOURNAL","features":[565]},{"name":"PROPID_Q_JOURNAL_QUOTA","features":[565]},{"name":"PROPID_Q_LABEL","features":[565]},{"name":"PROPID_Q_MODIFY_TIME","features":[565]},{"name":"PROPID_Q_MULTICAST_ADDRESS","features":[565]},{"name":"PROPID_Q_PATHNAME","features":[565]},{"name":"PROPID_Q_PATHNAME_DNS","features":[565]},{"name":"PROPID_Q_PRIV_LEVEL","features":[565]},{"name":"PROPID_Q_QUOTA","features":[565]},{"name":"PROPID_Q_TRANSACTION","features":[565]},{"name":"PROPID_Q_TYPE","features":[565]},{"name":"QUERY_SORTASCEND","features":[565]},{"name":"QUERY_SORTDESCEND","features":[565]},{"name":"QUEUE_ACTION_EOD_RESEND","features":[565]},{"name":"QUEUE_ACTION_PAUSE","features":[565]},{"name":"QUEUE_ACTION_RESUME","features":[565]},{"name":"QUEUE_STATE","features":[565]},{"name":"QUEUE_TYPE","features":[565]},{"name":"RELOPS","features":[565]},{"name":"REL_EQ","features":[565]},{"name":"REL_GE","features":[565]},{"name":"REL_GT","features":[565]},{"name":"REL_LE","features":[565]},{"name":"REL_LT","features":[565]},{"name":"REL_NEQ","features":[565]},{"name":"REL_NOP","features":[565]},{"name":"SEQUENCE_INFO","features":[565]},{"name":"XACT_STATUS","features":[565]},{"name":"_DMSMQEventEvents","features":[354,565]}],"583":[{"name":"PERCEPTIONFIELD_StateStream_TimeStamps","features":[566]},{"name":"PERCEPTION_PAYLOAD_FIELD","features":[566]},{"name":"PERCEPTION_STATE_STREAM_TIMESTAMPS","features":[566]}],"584":[{"name":"AUTO_WIDTH","features":[567]},{"name":"AppEvents","features":[354,567]},{"name":"AppEventsDHTMLConnector","features":[567]},{"name":"Application","features":[567]},{"name":"BUTTONPRESSED","features":[567]},{"name":"CCM_COMMANDID_MASK_CONSTANTS","features":[567]},{"name":"CCM_COMMANDID_MASK_RESERVED","features":[567]},{"name":"CCM_INSERTIONALLOWED","features":[567]},{"name":"CCM_INSERTIONALLOWED_NEW","features":[567]},{"name":"CCM_INSERTIONALLOWED_TASK","features":[567]},{"name":"CCM_INSERTIONALLOWED_TOP","features":[567]},{"name":"CCM_INSERTIONALLOWED_VIEW","features":[567]},{"name":"CCM_INSERTIONPOINTID","features":[567]},{"name":"CCM_INSERTIONPOINTID_3RDPARTY_NEW","features":[567]},{"name":"CCM_INSERTIONPOINTID_3RDPARTY_TASK","features":[567]},{"name":"CCM_INSERTIONPOINTID_MASK_ADD_3RDPARTY","features":[567]},{"name":"CCM_INSERTIONPOINTID_MASK_ADD_PRIMARY","features":[567]},{"name":"CCM_INSERTIONPOINTID_MASK_CREATE_PRIMARY","features":[567]},{"name":"CCM_INSERTIONPOINTID_MASK_FLAGINDEX","features":[567]},{"name":"CCM_INSERTIONPOINTID_MASK_RESERVED","features":[567]},{"name":"CCM_INSERTIONPOINTID_MASK_SHARED","features":[567]},{"name":"CCM_INSERTIONPOINTID_MASK_SPECIAL","features":[567]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_HELP","features":[567]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_NEW","features":[567]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_TASK","features":[567]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_TOP","features":[567]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_VIEW","features":[567]},{"name":"CCM_INSERTIONPOINTID_ROOT_MENU","features":[567]},{"name":"CCM_SPECIAL","features":[567]},{"name":"CCM_SPECIAL_DEFAULT_ITEM","features":[567]},{"name":"CCM_SPECIAL_INSERTION_POINT","features":[567]},{"name":"CCM_SPECIAL_SEPARATOR","features":[567]},{"name":"CCM_SPECIAL_SUBMENU","features":[567]},{"name":"CCM_SPECIAL_TESTONLY","features":[567]},{"name":"CCT_RESULT","features":[567]},{"name":"CCT_SCOPE","features":[567]},{"name":"CCT_SNAPIN_MANAGER","features":[567]},{"name":"CCT_UNINITIALIZED","features":[567]},{"name":"CHECKED","features":[567]},{"name":"COMBOBOXBAR","features":[567]},{"name":"CONTEXTMENUITEM","features":[567]},{"name":"CONTEXTMENUITEM2","features":[567]},{"name":"Column","features":[354,567]},{"name":"Columns","features":[354,567]},{"name":"ConsolePower","features":[567]},{"name":"ContextMenu","features":[354,567]},{"name":"DATA_OBJECT_TYPES","features":[567]},{"name":"Document","features":[354,567]},{"name":"DocumentMode_Author","features":[567]},{"name":"DocumentMode_User","features":[567]},{"name":"DocumentMode_User_MDI","features":[567]},{"name":"DocumentMode_User_SDI","features":[567]},{"name":"ENABLED","features":[567]},{"name":"ExportListOptions_Default","features":[567]},{"name":"ExportListOptions_SelectedItemsOnly","features":[567]},{"name":"ExportListOptions_TabDelimited","features":[567]},{"name":"ExportListOptions_Unicode","features":[567]},{"name":"Extension","features":[354,567]},{"name":"Extensions","features":[354,567]},{"name":"Frame","features":[354,567]},{"name":"HDI_HIDDEN","features":[567]},{"name":"HIDDEN","features":[567]},{"name":"HIDE_COLUMN","features":[567]},{"name":"IColumnData","features":[567]},{"name":"IComponent","features":[567]},{"name":"IComponent2","features":[567]},{"name":"IComponentData","features":[567]},{"name":"IComponentData2","features":[567]},{"name":"IConsole","features":[567]},{"name":"IConsole2","features":[567]},{"name":"IConsole3","features":[567]},{"name":"IConsoleNameSpace","features":[567]},{"name":"IConsoleNameSpace2","features":[567]},{"name":"IConsolePower","features":[567]},{"name":"IConsolePowerSink","features":[567]},{"name":"IConsoleVerb","features":[567]},{"name":"IContextMenuCallback","features":[567]},{"name":"IContextMenuCallback2","features":[567]},{"name":"IContextMenuProvider","features":[567]},{"name":"IControlbar","features":[567]},{"name":"IDisplayHelp","features":[567]},{"name":"IEnumTASK","features":[567]},{"name":"IExtendContextMenu","features":[567]},{"name":"IExtendControlbar","features":[567]},{"name":"IExtendPropertySheet","features":[567]},{"name":"IExtendPropertySheet2","features":[567]},{"name":"IExtendTaskPad","features":[567]},{"name":"IExtendView","features":[567]},{"name":"IHeaderCtrl","features":[567]},{"name":"IHeaderCtrl2","features":[567]},{"name":"IImageList","features":[567]},{"name":"ILSIF_LEAVE_LARGE_ICON","features":[567]},{"name":"ILSIF_LEAVE_SMALL_ICON","features":[567]},{"name":"IMMCVersionInfo","features":[567]},{"name":"IMenuButton","features":[567]},{"name":"IMessageView","features":[567]},{"name":"INDETERMINATE","features":[567]},{"name":"INodeProperties","features":[567]},{"name":"IPropertySheetCallback","features":[567]},{"name":"IPropertySheetProvider","features":[567]},{"name":"IRequiredExtensions","features":[567]},{"name":"IResultData","features":[567]},{"name":"IResultData2","features":[567]},{"name":"IResultDataCompare","features":[567]},{"name":"IResultDataCompareEx","features":[567]},{"name":"IResultOwnerData","features":[567]},{"name":"ISnapinAbout","features":[567]},{"name":"ISnapinHelp","features":[567]},{"name":"ISnapinHelp2","features":[567]},{"name":"ISnapinProperties","features":[567]},{"name":"ISnapinPropertiesCallback","features":[567]},{"name":"IStringTable","features":[567]},{"name":"IToolbar","features":[567]},{"name":"IViewExtensionCallback","features":[567]},{"name":"IconIdentifier","features":[567]},{"name":"Icon_Error","features":[567]},{"name":"Icon_First","features":[567]},{"name":"Icon_Information","features":[567]},{"name":"Icon_Last","features":[567]},{"name":"Icon_None","features":[567]},{"name":"Icon_Question","features":[567]},{"name":"Icon_Warning","features":[567]},{"name":"ListMode_Detail","features":[567]},{"name":"ListMode_Filtered","features":[567]},{"name":"ListMode_Large_Icons","features":[567]},{"name":"ListMode_List","features":[567]},{"name":"ListMode_Small_Icons","features":[567]},{"name":"MENUBUTTON","features":[567]},{"name":"MENUBUTTONDATA","features":[567]},{"name":"MFCC_DISABLE","features":[567]},{"name":"MFCC_ENABLE","features":[567]},{"name":"MFCC_VALUE_CHANGE","features":[567]},{"name":"MMCBUTTON","features":[567]},{"name":"MMCC_STANDARD_VIEW_SELECT","features":[567]},{"name":"MMCLV_AUTO","features":[567]},{"name":"MMCLV_NOICON","features":[567]},{"name":"MMCLV_NOPARAM","features":[567]},{"name":"MMCLV_NOPTR","features":[567]},{"name":"MMCLV_UPDATE_NOINVALIDATEALL","features":[567]},{"name":"MMCLV_UPDATE_NOSCROLL","features":[567]},{"name":"MMCLV_VIEWSTYLE_FILTERED","features":[567]},{"name":"MMCLV_VIEWSTYLE_ICON","features":[567]},{"name":"MMCLV_VIEWSTYLE_LIST","features":[567]},{"name":"MMCLV_VIEWSTYLE_REPORT","features":[567]},{"name":"MMCLV_VIEWSTYLE_SMALLICON","features":[567]},{"name":"MMCN_ACTIVATE","features":[567]},{"name":"MMCN_ADD_IMAGES","features":[567]},{"name":"MMCN_BTN_CLICK","features":[567]},{"name":"MMCN_CANPASTE_OUTOFPROC","features":[567]},{"name":"MMCN_CLICK","features":[567]},{"name":"MMCN_COLUMNS_CHANGED","features":[567]},{"name":"MMCN_COLUMN_CLICK","features":[567]},{"name":"MMCN_CONTEXTHELP","features":[567]},{"name":"MMCN_CONTEXTMENU","features":[567]},{"name":"MMCN_CUTORMOVE","features":[567]},{"name":"MMCN_DBLCLICK","features":[567]},{"name":"MMCN_DELETE","features":[567]},{"name":"MMCN_DESELECT_ALL","features":[567]},{"name":"MMCN_EXPAND","features":[567]},{"name":"MMCN_EXPANDSYNC","features":[567]},{"name":"MMCN_FILTERBTN_CLICK","features":[567]},{"name":"MMCN_FILTER_CHANGE","features":[567]},{"name":"MMCN_HELP","features":[567]},{"name":"MMCN_INITOCX","features":[567]},{"name":"MMCN_LISTPAD","features":[567]},{"name":"MMCN_MENU_BTNCLICK","features":[567]},{"name":"MMCN_MINIMIZED","features":[567]},{"name":"MMCN_PASTE","features":[567]},{"name":"MMCN_PRELOAD","features":[567]},{"name":"MMCN_PRINT","features":[567]},{"name":"MMCN_PROPERTY_CHANGE","features":[567]},{"name":"MMCN_QUERY_PASTE","features":[567]},{"name":"MMCN_REFRESH","features":[567]},{"name":"MMCN_REMOVE_CHILDREN","features":[567]},{"name":"MMCN_RENAME","features":[567]},{"name":"MMCN_RESTORE_VIEW","features":[567]},{"name":"MMCN_SELECT","features":[567]},{"name":"MMCN_SHOW","features":[567]},{"name":"MMCN_SNAPINHELP","features":[567]},{"name":"MMCN_VIEW_CHANGE","features":[567]},{"name":"MMCVersionInfo","features":[567]},{"name":"MMC_ACTION_ID","features":[567]},{"name":"MMC_ACTION_LINK","features":[567]},{"name":"MMC_ACTION_SCRIPT","features":[567]},{"name":"MMC_ACTION_TYPE","features":[567]},{"name":"MMC_ACTION_UNINITIALIZED","features":[567]},{"name":"MMC_BUTTON_STATE","features":[567]},{"name":"MMC_COLUMN_DATA","features":[567]},{"name":"MMC_COLUMN_SET_DATA","features":[567]},{"name":"MMC_CONSOLE_VERB","features":[567]},{"name":"MMC_CONTROL_TYPE","features":[567]},{"name":"MMC_DEFAULT_OPERATION_COPY","features":[567]},{"name":"MMC_ENSUREFOCUSVISIBLE","features":[567]},{"name":"MMC_EXPANDSYNC_STRUCT","features":[303,567]},{"name":"MMC_EXT_VIEW_DATA","features":[303,567]},{"name":"MMC_FILTERDATA","features":[567]},{"name":"MMC_FILTER_CHANGE_CODE","features":[567]},{"name":"MMC_FILTER_NOVALUE","features":[567]},{"name":"MMC_FILTER_TYPE","features":[567]},{"name":"MMC_IMAGECALLBACK","features":[567]},{"name":"MMC_INT_FILTER","features":[567]},{"name":"MMC_ITEM_OVERLAY_STATE_MASK","features":[567]},{"name":"MMC_ITEM_OVERLAY_STATE_SHIFT","features":[567]},{"name":"MMC_ITEM_STATE_MASK","features":[567]},{"name":"MMC_LISTPAD_INFO","features":[567]},{"name":"MMC_MENU_COMMAND_IDS","features":[567]},{"name":"MMC_MULTI_SELECT_COOKIE","features":[567]},{"name":"MMC_NODEID_SLOW_RETRIEVAL","features":[567]},{"name":"MMC_NOSORTHEADER","features":[567]},{"name":"MMC_NOTIFY_TYPE","features":[567]},{"name":"MMC_NW_OPTION_CUSTOMTITLE","features":[567]},{"name":"MMC_NW_OPTION_NOACTIONPANE","features":[567]},{"name":"MMC_NW_OPTION_NONE","features":[567]},{"name":"MMC_NW_OPTION_NOPERSIST","features":[567]},{"name":"MMC_NW_OPTION_NOSCOPEPANE","features":[567]},{"name":"MMC_NW_OPTION_NOTOOLBARS","features":[567]},{"name":"MMC_NW_OPTION_SHORTTITLE","features":[567]},{"name":"MMC_PROPACT_CHANGING","features":[567]},{"name":"MMC_PROPACT_DELETING","features":[567]},{"name":"MMC_PROPACT_INITIALIZED","features":[567]},{"name":"MMC_PROPERTY_ACTION","features":[567]},{"name":"MMC_PROP_CHANGEAFFECTSUI","features":[567]},{"name":"MMC_PROP_MODIFIABLE","features":[567]},{"name":"MMC_PROP_PERSIST","features":[567]},{"name":"MMC_PROP_REMOVABLE","features":[567]},{"name":"MMC_PSO_HASHELP","features":[567]},{"name":"MMC_PSO_NEWWIZARDTYPE","features":[567]},{"name":"MMC_PSO_NOAPPLYNOW","features":[567]},{"name":"MMC_PSO_NO_PROPTITLE","features":[567]},{"name":"MMC_RESTORE_VIEW","features":[567]},{"name":"MMC_RESULT_VIEW_STYLE","features":[567]},{"name":"MMC_SCOPE_ITEM_STATE","features":[567]},{"name":"MMC_SCOPE_ITEM_STATE_BOLD","features":[567]},{"name":"MMC_SCOPE_ITEM_STATE_EXPANDEDONCE","features":[567]},{"name":"MMC_SCOPE_ITEM_STATE_NORMAL","features":[567]},{"name":"MMC_SHOWSELALWAYS","features":[567]},{"name":"MMC_SINGLESEL","features":[567]},{"name":"MMC_SNAPIN_PROPERTY","features":[567]},{"name":"MMC_SORT_DATA","features":[567]},{"name":"MMC_SORT_SET_DATA","features":[567]},{"name":"MMC_STRING_FILTER","features":[567]},{"name":"MMC_TASK","features":[567]},{"name":"MMC_TASK_DISPLAY_BITMAP","features":[567]},{"name":"MMC_TASK_DISPLAY_OBJECT","features":[567]},{"name":"MMC_TASK_DISPLAY_SYMBOL","features":[567]},{"name":"MMC_TASK_DISPLAY_TYPE","features":[567]},{"name":"MMC_TASK_DISPLAY_TYPE_BITMAP","features":[567]},{"name":"MMC_TASK_DISPLAY_TYPE_CHOCOLATE_GIF","features":[567]},{"name":"MMC_TASK_DISPLAY_TYPE_SYMBOL","features":[567]},{"name":"MMC_TASK_DISPLAY_TYPE_VANILLA_GIF","features":[567]},{"name":"MMC_TASK_DISPLAY_UNINITIALIZED","features":[567]},{"name":"MMC_VER","features":[567]},{"name":"MMC_VERB_COPY","features":[567]},{"name":"MMC_VERB_CUT","features":[567]},{"name":"MMC_VERB_DELETE","features":[567]},{"name":"MMC_VERB_FIRST","features":[567]},{"name":"MMC_VERB_LAST","features":[567]},{"name":"MMC_VERB_MAX","features":[567]},{"name":"MMC_VERB_NONE","features":[567]},{"name":"MMC_VERB_OPEN","features":[567]},{"name":"MMC_VERB_PASTE","features":[567]},{"name":"MMC_VERB_PRINT","features":[567]},{"name":"MMC_VERB_PROPERTIES","features":[567]},{"name":"MMC_VERB_REFRESH","features":[567]},{"name":"MMC_VERB_RENAME","features":[567]},{"name":"MMC_VIEW_OPTIONS_CREATENEW","features":[567]},{"name":"MMC_VIEW_OPTIONS_EXCLUDE_SCOPE_ITEMS_FROM_LIST","features":[567]},{"name":"MMC_VIEW_OPTIONS_FILTERED","features":[567]},{"name":"MMC_VIEW_OPTIONS_LEXICAL_SORT","features":[567]},{"name":"MMC_VIEW_OPTIONS_MULTISELECT","features":[567]},{"name":"MMC_VIEW_OPTIONS_NOLISTVIEWS","features":[567]},{"name":"MMC_VIEW_OPTIONS_NONE","features":[567]},{"name":"MMC_VIEW_OPTIONS_OWNERDATALIST","features":[567]},{"name":"MMC_VIEW_OPTIONS_USEFONTLINKING","features":[567]},{"name":"MMC_VIEW_TYPE","features":[567]},{"name":"MMC_VIEW_TYPE_HTML","features":[567]},{"name":"MMC_VIEW_TYPE_LIST","features":[567]},{"name":"MMC_VIEW_TYPE_OCX","features":[567]},{"name":"MMC_VISIBLE_COLUMNS","features":[567]},{"name":"MMC_WINDOW_COOKIE","features":[567]},{"name":"MenuItem","features":[354,567]},{"name":"Node","features":[354,567]},{"name":"Nodes","features":[354,567]},{"name":"Properties","features":[354,567]},{"name":"Property","features":[354,567]},{"name":"RDCI_ScopeItem","features":[567]},{"name":"RDCOMPARE","features":[303,567]},{"name":"RDITEMHDR","features":[303,567]},{"name":"RDI_IMAGE","features":[567]},{"name":"RDI_INDENT","features":[567]},{"name":"RDI_INDEX","features":[567]},{"name":"RDI_PARAM","features":[567]},{"name":"RDI_STATE","features":[567]},{"name":"RDI_STR","features":[567]},{"name":"RESULTDATAITEM","features":[303,567]},{"name":"RESULTFINDINFO","features":[567]},{"name":"RESULT_VIEW_TYPE_INFO","features":[567]},{"name":"RFI_PARTIAL","features":[567]},{"name":"RFI_WRAP","features":[567]},{"name":"RSI_DESCENDING","features":[567]},{"name":"RSI_NOSORTICON","features":[567]},{"name":"RVTI_HTML_OPTIONS_NOLISTVIEW","features":[567]},{"name":"RVTI_HTML_OPTIONS_NONE","features":[567]},{"name":"RVTI_LIST_OPTIONS_ALLOWPASTE","features":[567]},{"name":"RVTI_LIST_OPTIONS_EXCLUDE_SCOPE_ITEMS_FROM_LIST","features":[567]},{"name":"RVTI_LIST_OPTIONS_FILTERED","features":[567]},{"name":"RVTI_LIST_OPTIONS_LEXICAL_SORT","features":[567]},{"name":"RVTI_LIST_OPTIONS_MULTISELECT","features":[567]},{"name":"RVTI_LIST_OPTIONS_NONE","features":[567]},{"name":"RVTI_LIST_OPTIONS_OWNERDATALIST","features":[567]},{"name":"RVTI_LIST_OPTIONS_USEFONTLINKING","features":[567]},{"name":"RVTI_MISC_OPTIONS_NOLISTVIEWS","features":[567]},{"name":"RVTI_OCX_OPTIONS_CACHE_OCX","features":[567]},{"name":"RVTI_OCX_OPTIONS_NOLISTVIEW","features":[567]},{"name":"RVTI_OCX_OPTIONS_NONE","features":[567]},{"name":"SCOPEDATAITEM","features":[303,567]},{"name":"SColumnSetID","features":[567]},{"name":"SDI_CHILDREN","features":[567]},{"name":"SDI_FIRST","features":[567]},{"name":"SDI_IMAGE","features":[567]},{"name":"SDI_NEXT","features":[567]},{"name":"SDI_OPENIMAGE","features":[567]},{"name":"SDI_PARAM","features":[567]},{"name":"SDI_PARENT","features":[567]},{"name":"SDI_PREVIOUS","features":[567]},{"name":"SDI_STATE","features":[567]},{"name":"SDI_STR","features":[567]},{"name":"SMMCDataObjects","features":[354,567]},{"name":"SMMCObjectTypes","features":[567]},{"name":"SNodeID","features":[567]},{"name":"SNodeID2","features":[567]},{"name":"SPECIAL_COOKIE_MAX","features":[567]},{"name":"SPECIAL_COOKIE_MIN","features":[567]},{"name":"SPECIAL_DOBJ_MAX","features":[567]},{"name":"SPECIAL_DOBJ_MIN","features":[567]},{"name":"ScopeNamespace","features":[354,567]},{"name":"SnapIn","features":[354,567]},{"name":"SnapIns","features":[354,567]},{"name":"SortOrder_Ascending","features":[567]},{"name":"SortOrder_Descending","features":[567]},{"name":"TOOLBAR","features":[567]},{"name":"View","features":[354,567]},{"name":"ViewOption_ActionPaneHidden","features":[567]},{"name":"ViewOption_Default","features":[567]},{"name":"ViewOption_NoToolBars","features":[567]},{"name":"ViewOption_NotPersistable","features":[567]},{"name":"ViewOption_ScopeTreeHidden","features":[567]},{"name":"Views","features":[354,567]},{"name":"_AppEvents","features":[354,567]},{"name":"_Application","features":[354,567]},{"name":"_ColumnSortOrder","features":[567]},{"name":"_DocumentMode","features":[567]},{"name":"_EventConnector","features":[354,567]},{"name":"_ExportListOptions","features":[567]},{"name":"_ListViewMode","features":[567]},{"name":"_ViewOptions","features":[567]}],"585":[{"name":"ACTIVATEFLAGS","features":[413]},{"name":"ACTIVATE_WINDOWLESS","features":[413]},{"name":"ACTIVEOBJECT_FLAGS","features":[413]},{"name":"ACTIVEOBJECT_STRONG","features":[413]},{"name":"ACTIVEOBJECT_WEAK","features":[413]},{"name":"ARRAYDESC","features":[354,413,378]},{"name":"BINDSPEED","features":[413]},{"name":"BINDSPEED_IMMEDIATE","features":[413]},{"name":"BINDSPEED_INDEFINITE","features":[413]},{"name":"BINDSPEED_MODERATE","features":[413]},{"name":"BUSY_DIALOG_FLAGS","features":[413]},{"name":"BZ_DISABLECANCELBUTTON","features":[413]},{"name":"BZ_DISABLERETRYBUTTON","features":[413]},{"name":"BZ_DISABLESWITCHTOBUTTON","features":[413]},{"name":"BZ_NOTRESPONDINGDIALOG","features":[413]},{"name":"BstrFromVector","features":[354,413]},{"name":"CADWORD","features":[413]},{"name":"CALPOLESTR","features":[413]},{"name":"CAUUID","features":[413]},{"name":"CF_BITMAP","features":[413]},{"name":"CF_CONVERTONLY","features":[413]},{"name":"CF_DIB","features":[413]},{"name":"CF_DIBV5","features":[413]},{"name":"CF_DIF","features":[413]},{"name":"CF_DISABLEACTIVATEAS","features":[413]},{"name":"CF_DISABLEDISPLAYASICON","features":[413]},{"name":"CF_DSPBITMAP","features":[413]},{"name":"CF_DSPENHMETAFILE","features":[413]},{"name":"CF_DSPMETAFILEPICT","features":[413]},{"name":"CF_DSPTEXT","features":[413]},{"name":"CF_ENHMETAFILE","features":[413]},{"name":"CF_GDIOBJFIRST","features":[413]},{"name":"CF_GDIOBJLAST","features":[413]},{"name":"CF_HDROP","features":[413]},{"name":"CF_HIDECHANGEICON","features":[413]},{"name":"CF_LOCALE","features":[413]},{"name":"CF_MAX","features":[413]},{"name":"CF_METAFILEPICT","features":[413]},{"name":"CF_OEMTEXT","features":[413]},{"name":"CF_OWNERDISPLAY","features":[413]},{"name":"CF_PALETTE","features":[413]},{"name":"CF_PENDATA","features":[413]},{"name":"CF_PRIVATEFIRST","features":[413]},{"name":"CF_PRIVATELAST","features":[413]},{"name":"CF_RIFF","features":[413]},{"name":"CF_SELECTACTIVATEAS","features":[413]},{"name":"CF_SELECTCONVERTTO","features":[413]},{"name":"CF_SETACTIVATEDEFAULT","features":[413]},{"name":"CF_SETCONVERTDEFAULT","features":[413]},{"name":"CF_SHOWHELPBUTTON","features":[413]},{"name":"CF_SYLK","features":[413]},{"name":"CF_TEXT","features":[413]},{"name":"CF_TIFF","features":[413]},{"name":"CF_UNICODETEXT","features":[413]},{"name":"CF_WAVE","features":[413]},{"name":"CHANGEKIND","features":[413]},{"name":"CHANGEKIND_ADDMEMBER","features":[413]},{"name":"CHANGEKIND_CHANGEFAILED","features":[413]},{"name":"CHANGEKIND_DELETEMEMBER","features":[413]},{"name":"CHANGEKIND_GENERAL","features":[413]},{"name":"CHANGEKIND_INVALIDATE","features":[413]},{"name":"CHANGEKIND_MAX","features":[413]},{"name":"CHANGEKIND_SETDOCUMENTATION","features":[413]},{"name":"CHANGEKIND_SETNAMES","features":[413]},{"name":"CHANGE_ICON_FLAGS","features":[413]},{"name":"CHANGE_SOURCE_FLAGS","features":[413]},{"name":"CIF_SELECTCURRENT","features":[413]},{"name":"CIF_SELECTDEFAULT","features":[413]},{"name":"CIF_SELECTFROMFILE","features":[413]},{"name":"CIF_SHOWHELP","features":[413]},{"name":"CIF_USEICONEXE","features":[413]},{"name":"CLEANLOCALSTORAGE","features":[413]},{"name":"CLIPBOARD_FORMAT","features":[413]},{"name":"CLSID_CColorPropPage","features":[413]},{"name":"CLSID_CFontPropPage","features":[413]},{"name":"CLSID_CPicturePropPage","features":[413]},{"name":"CLSID_ConvertVBX","features":[413]},{"name":"CLSID_PersistPropset","features":[413]},{"name":"CLSID_StdFont","features":[413]},{"name":"CLSID_StdPicture","features":[413]},{"name":"CONNECT_E_ADVISELIMIT","features":[413]},{"name":"CONNECT_E_CANNOTCONNECT","features":[413]},{"name":"CONNECT_E_FIRST","features":[413]},{"name":"CONNECT_E_LAST","features":[413]},{"name":"CONNECT_E_NOCONNECTION","features":[413]},{"name":"CONNECT_E_OVERRIDDEN","features":[413]},{"name":"CONNECT_S_FIRST","features":[413]},{"name":"CONNECT_S_LAST","features":[413]},{"name":"CONTROLINFO","features":[413,365]},{"name":"CSF_EXPLORER","features":[413]},{"name":"CSF_ONLYGETSOURCE","features":[413]},{"name":"CSF_SHOWHELP","features":[413]},{"name":"CSF_VALIDSOURCE","features":[413]},{"name":"CTL_E_ILLEGALFUNCTIONCALL","features":[413]},{"name":"CTRLINFO","features":[413]},{"name":"CTRLINFO_EATS_ESCAPE","features":[413]},{"name":"CTRLINFO_EATS_RETURN","features":[413]},{"name":"ClearCustData","features":[354,413]},{"name":"CreateDispTypeInfo","features":[354,413,378]},{"name":"CreateErrorInfo","features":[413]},{"name":"CreateOleAdviseHolder","features":[413]},{"name":"CreateStdDispatch","features":[354,413]},{"name":"CreateTypeLib","features":[354,413]},{"name":"CreateTypeLib2","features":[354,413]},{"name":"DD_DEFDRAGDELAY","features":[413]},{"name":"DD_DEFDRAGMINDIST","features":[413]},{"name":"DD_DEFSCROLLDELAY","features":[413]},{"name":"DD_DEFSCROLLINSET","features":[413]},{"name":"DD_DEFSCROLLINTERVAL","features":[413]},{"name":"DISCARDCACHE","features":[413]},{"name":"DISCARDCACHE_NOSAVE","features":[413]},{"name":"DISCARDCACHE_SAVEIFDIRTY","features":[413]},{"name":"DISPATCH_CONSTRUCT","features":[413]},{"name":"DISPID_ABOUTBOX","features":[413]},{"name":"DISPID_ACCELERATOR","features":[413]},{"name":"DISPID_ADDITEM","features":[413]},{"name":"DISPID_AMBIENT_APPEARANCE","features":[413]},{"name":"DISPID_AMBIENT_AUTOCLIP","features":[413]},{"name":"DISPID_AMBIENT_BACKCOLOR","features":[413]},{"name":"DISPID_AMBIENT_CHARSET","features":[413]},{"name":"DISPID_AMBIENT_CODEPAGE","features":[413]},{"name":"DISPID_AMBIENT_DISPLAYASDEFAULT","features":[413]},{"name":"DISPID_AMBIENT_DISPLAYNAME","features":[413]},{"name":"DISPID_AMBIENT_FONT","features":[413]},{"name":"DISPID_AMBIENT_FORECOLOR","features":[413]},{"name":"DISPID_AMBIENT_LOCALEID","features":[413]},{"name":"DISPID_AMBIENT_MESSAGEREFLECT","features":[413]},{"name":"DISPID_AMBIENT_PALETTE","features":[413]},{"name":"DISPID_AMBIENT_RIGHTTOLEFT","features":[413]},{"name":"DISPID_AMBIENT_SCALEUNITS","features":[413]},{"name":"DISPID_AMBIENT_SHOWGRABHANDLES","features":[413]},{"name":"DISPID_AMBIENT_SHOWHATCHING","features":[413]},{"name":"DISPID_AMBIENT_SUPPORTSMNEMONICS","features":[413]},{"name":"DISPID_AMBIENT_TEXTALIGN","features":[413]},{"name":"DISPID_AMBIENT_TOPTOBOTTOM","features":[413]},{"name":"DISPID_AMBIENT_TRANSFERPRIORITY","features":[413]},{"name":"DISPID_AMBIENT_UIDEAD","features":[413]},{"name":"DISPID_AMBIENT_USERMODE","features":[413]},{"name":"DISPID_APPEARANCE","features":[413]},{"name":"DISPID_AUTOSIZE","features":[413]},{"name":"DISPID_BACKCOLOR","features":[413]},{"name":"DISPID_BACKSTYLE","features":[413]},{"name":"DISPID_BORDERCOLOR","features":[413]},{"name":"DISPID_BORDERSTYLE","features":[413]},{"name":"DISPID_BORDERVISIBLE","features":[413]},{"name":"DISPID_BORDERWIDTH","features":[413]},{"name":"DISPID_CAPTION","features":[413]},{"name":"DISPID_CLEAR","features":[413]},{"name":"DISPID_CLICK","features":[413]},{"name":"DISPID_CLICK_VALUE","features":[413]},{"name":"DISPID_COLLECT","features":[413]},{"name":"DISPID_COLUMN","features":[413]},{"name":"DISPID_CONSTRUCTOR","features":[413]},{"name":"DISPID_DBLCLICK","features":[413]},{"name":"DISPID_DESTRUCTOR","features":[413]},{"name":"DISPID_DISPLAYSTYLE","features":[413]},{"name":"DISPID_DOCLICK","features":[413]},{"name":"DISPID_DRAWMODE","features":[413]},{"name":"DISPID_DRAWSTYLE","features":[413]},{"name":"DISPID_DRAWWIDTH","features":[413]},{"name":"DISPID_Delete","features":[413]},{"name":"DISPID_ENABLED","features":[413]},{"name":"DISPID_ENTERKEYBEHAVIOR","features":[413]},{"name":"DISPID_ERROREVENT","features":[413]},{"name":"DISPID_EVALUATE","features":[413]},{"name":"DISPID_FILLCOLOR","features":[413]},{"name":"DISPID_FILLSTYLE","features":[413]},{"name":"DISPID_FONT","features":[413]},{"name":"DISPID_FONT_BOLD","features":[413]},{"name":"DISPID_FONT_CHANGED","features":[413]},{"name":"DISPID_FONT_CHARSET","features":[413]},{"name":"DISPID_FONT_ITALIC","features":[413]},{"name":"DISPID_FONT_NAME","features":[413]},{"name":"DISPID_FONT_SIZE","features":[413]},{"name":"DISPID_FONT_STRIKE","features":[413]},{"name":"DISPID_FONT_UNDER","features":[413]},{"name":"DISPID_FONT_WEIGHT","features":[413]},{"name":"DISPID_FORECOLOR","features":[413]},{"name":"DISPID_GROUPNAME","features":[413]},{"name":"DISPID_HWND","features":[413]},{"name":"DISPID_IMEMODE","features":[413]},{"name":"DISPID_KEYDOWN","features":[413]},{"name":"DISPID_KEYPRESS","features":[413]},{"name":"DISPID_KEYUP","features":[413]},{"name":"DISPID_LIST","features":[413]},{"name":"DISPID_LISTCOUNT","features":[413]},{"name":"DISPID_LISTINDEX","features":[413]},{"name":"DISPID_MAXLENGTH","features":[413]},{"name":"DISPID_MOUSEDOWN","features":[413]},{"name":"DISPID_MOUSEICON","features":[413]},{"name":"DISPID_MOUSEMOVE","features":[413]},{"name":"DISPID_MOUSEPOINTER","features":[413]},{"name":"DISPID_MOUSEUP","features":[413]},{"name":"DISPID_MULTILINE","features":[413]},{"name":"DISPID_MULTISELECT","features":[413]},{"name":"DISPID_NEWENUM","features":[413]},{"name":"DISPID_NUMBEROFCOLUMNS","features":[413]},{"name":"DISPID_NUMBEROFROWS","features":[413]},{"name":"DISPID_Name","features":[413]},{"name":"DISPID_Object","features":[413]},{"name":"DISPID_PASSWORDCHAR","features":[413]},{"name":"DISPID_PICTURE","features":[413]},{"name":"DISPID_PICT_HANDLE","features":[413]},{"name":"DISPID_PICT_HEIGHT","features":[413]},{"name":"DISPID_PICT_HPAL","features":[413]},{"name":"DISPID_PICT_RENDER","features":[413]},{"name":"DISPID_PICT_TYPE","features":[413]},{"name":"DISPID_PICT_WIDTH","features":[413]},{"name":"DISPID_PROPERTYPUT","features":[413]},{"name":"DISPID_Parent","features":[413]},{"name":"DISPID_READYSTATE","features":[413]},{"name":"DISPID_READYSTATECHANGE","features":[413]},{"name":"DISPID_REFRESH","features":[413]},{"name":"DISPID_REMOVEITEM","features":[413]},{"name":"DISPID_RIGHTTOLEFT","features":[413]},{"name":"DISPID_SCROLLBARS","features":[413]},{"name":"DISPID_SELECTED","features":[413]},{"name":"DISPID_SELLENGTH","features":[413]},{"name":"DISPID_SELSTART","features":[413]},{"name":"DISPID_SELTEXT","features":[413]},{"name":"DISPID_STARTENUM","features":[413]},{"name":"DISPID_TABKEYBEHAVIOR","features":[413]},{"name":"DISPID_TABSTOP","features":[413]},{"name":"DISPID_TEXT","features":[413]},{"name":"DISPID_THIS","features":[413]},{"name":"DISPID_TOPTOBOTTOM","features":[413]},{"name":"DISPID_UNKNOWN","features":[413]},{"name":"DISPID_VALID","features":[413]},{"name":"DISPID_VALUE","features":[413]},{"name":"DISPID_WORDWRAP","features":[413]},{"name":"DOCMISC","features":[413]},{"name":"DOCMISC_CANCREATEMULTIPLEVIEWS","features":[413]},{"name":"DOCMISC_CANTOPENEDIT","features":[413]},{"name":"DOCMISC_NOFILESUPPORT","features":[413]},{"name":"DOCMISC_SUPPORTCOMPLEXRECTANGLES","features":[413]},{"name":"DROPEFFECT","features":[413]},{"name":"DROPEFFECT_COPY","features":[413]},{"name":"DROPEFFECT_LINK","features":[413]},{"name":"DROPEFFECT_MOVE","features":[413]},{"name":"DROPEFFECT_NONE","features":[413]},{"name":"DROPEFFECT_SCROLL","features":[413]},{"name":"DVASPECTINFO","features":[413]},{"name":"DVASPECTINFOFLAG","features":[413]},{"name":"DVASPECTINFOFLAG_CANOPTIMIZE","features":[413]},{"name":"DVEXTENTINFO","features":[303,413]},{"name":"DVEXTENTMODE","features":[413]},{"name":"DVEXTENT_CONTENT","features":[413]},{"name":"DVEXTENT_INTEGRAL","features":[413]},{"name":"DispCallFunc","features":[354,413,378]},{"name":"DispGetIDsOfNames","features":[354,413]},{"name":"DispGetParam","features":[354,413,378]},{"name":"DispInvoke","features":[354,413]},{"name":"DoDragDrop","features":[354,413]},{"name":"EDIT_LINKS_FLAGS","features":[413]},{"name":"ELF_DISABLECANCELLINK","features":[413]},{"name":"ELF_DISABLECHANGESOURCE","features":[413]},{"name":"ELF_DISABLEOPENSOURCE","features":[413]},{"name":"ELF_DISABLEUPDATENOW","features":[413]},{"name":"ELF_SHOWHELP","features":[413]},{"name":"EMBDHLP_CREATENOW","features":[413]},{"name":"EMBDHLP_DELAYCREATE","features":[413]},{"name":"EMBDHLP_FLAGS","features":[413]},{"name":"EMBDHLP_INPROC_HANDLER","features":[413]},{"name":"EMBDHLP_INPROC_SERVER","features":[413]},{"name":"ENUM_CONTROLS_WHICH_FLAGS","features":[413]},{"name":"FDEX_PROP_FLAGS","features":[413]},{"name":"FONTDESC","features":[303,354,413]},{"name":"GCW_WCH_SIBLING","features":[413]},{"name":"GC_WCH_ALL","features":[413]},{"name":"GC_WCH_CONTAINED","features":[413]},{"name":"GC_WCH_CONTAINER","features":[413]},{"name":"GC_WCH_FONLYAFTER","features":[413]},{"name":"GC_WCH_FONLYBEFORE","features":[413]},{"name":"GC_WCH_FREVERSEDIR","features":[413]},{"name":"GC_WCH_FSELECTED","features":[413]},{"name":"GC_WCH_SIBLING","features":[413]},{"name":"GUIDKIND","features":[413]},{"name":"GUIDKIND_DEFAULT_SOURCE_DISP_IID","features":[413]},{"name":"GUID_CHECKVALUEEXCLUSIVE","features":[413]},{"name":"GUID_COLOR","features":[413]},{"name":"GUID_FONTBOLD","features":[413]},{"name":"GUID_FONTITALIC","features":[413]},{"name":"GUID_FONTNAME","features":[413]},{"name":"GUID_FONTSIZE","features":[413]},{"name":"GUID_FONTSTRIKETHROUGH","features":[413]},{"name":"GUID_FONTUNDERSCORE","features":[413]},{"name":"GUID_HANDLE","features":[413]},{"name":"GUID_HIMETRIC","features":[413]},{"name":"GUID_OPTIONVALUEEXCLUSIVE","features":[413]},{"name":"GUID_TRISTATE","features":[413]},{"name":"GUID_XPOS","features":[413]},{"name":"GUID_XPOSPIXEL","features":[413]},{"name":"GUID_XSIZE","features":[413]},{"name":"GUID_XSIZEPIXEL","features":[413]},{"name":"GUID_YPOS","features":[413]},{"name":"GUID_YPOSPIXEL","features":[413]},{"name":"GUID_YSIZE","features":[413]},{"name":"GUID_YSIZEPIXEL","features":[413]},{"name":"GetActiveObject","features":[413]},{"name":"GetAltMonthNames","features":[413]},{"name":"GetRecordInfoFromGuids","features":[413]},{"name":"GetRecordInfoFromTypeInfo","features":[354,413]},{"name":"HITRESULT","features":[413]},{"name":"HITRESULT_CLOSE","features":[413]},{"name":"HITRESULT_HIT","features":[413]},{"name":"HITRESULT_OUTSIDE","features":[413]},{"name":"HITRESULT_TRANSPARENT","features":[413]},{"name":"HRGN_UserFree","features":[314,413]},{"name":"HRGN_UserFree64","features":[314,413]},{"name":"HRGN_UserMarshal","features":[314,413]},{"name":"HRGN_UserMarshal64","features":[314,413]},{"name":"HRGN_UserSize","features":[314,413]},{"name":"HRGN_UserSize64","features":[314,413]},{"name":"HRGN_UserUnmarshal","features":[314,413]},{"name":"HRGN_UserUnmarshal64","features":[314,413]},{"name":"IAdviseSinkEx","features":[354,413]},{"name":"ICanHandleException","features":[413]},{"name":"IClassFactory2","features":[354,413]},{"name":"IContinue","features":[413]},{"name":"IContinueCallback","features":[413]},{"name":"ICreateErrorInfo","features":[413]},{"name":"ICreateTypeInfo","features":[413]},{"name":"ICreateTypeInfo2","features":[413]},{"name":"ICreateTypeLib","features":[413]},{"name":"ICreateTypeLib2","features":[413]},{"name":"IDC_BZ_ICON","features":[413]},{"name":"IDC_BZ_MESSAGE1","features":[413]},{"name":"IDC_BZ_RETRY","features":[413]},{"name":"IDC_BZ_SWITCHTO","features":[413]},{"name":"IDC_CI_BROWSE","features":[413]},{"name":"IDC_CI_CURRENT","features":[413]},{"name":"IDC_CI_CURRENTICON","features":[413]},{"name":"IDC_CI_DEFAULT","features":[413]},{"name":"IDC_CI_DEFAULTICON","features":[413]},{"name":"IDC_CI_FROMFILE","features":[413]},{"name":"IDC_CI_FROMFILEEDIT","features":[413]},{"name":"IDC_CI_GROUP","features":[413]},{"name":"IDC_CI_ICONDISPLAY","features":[413]},{"name":"IDC_CI_ICONLIST","features":[413]},{"name":"IDC_CI_LABEL","features":[413]},{"name":"IDC_CI_LABELEDIT","features":[413]},{"name":"IDC_CV_ACTIVATEAS","features":[413]},{"name":"IDC_CV_ACTIVATELIST","features":[413]},{"name":"IDC_CV_CHANGEICON","features":[413]},{"name":"IDC_CV_CONVERTLIST","features":[413]},{"name":"IDC_CV_CONVERTTO","features":[413]},{"name":"IDC_CV_DISPLAYASICON","features":[413]},{"name":"IDC_CV_ICONDISPLAY","features":[413]},{"name":"IDC_CV_OBJECTTYPE","features":[413]},{"name":"IDC_CV_RESULTTEXT","features":[413]},{"name":"IDC_EL_AUTOMATIC","features":[413]},{"name":"IDC_EL_CANCELLINK","features":[413]},{"name":"IDC_EL_CHANGESOURCE","features":[413]},{"name":"IDC_EL_COL1","features":[413]},{"name":"IDC_EL_COL2","features":[413]},{"name":"IDC_EL_COL3","features":[413]},{"name":"IDC_EL_LINKSLISTBOX","features":[413]},{"name":"IDC_EL_LINKSOURCE","features":[413]},{"name":"IDC_EL_LINKTYPE","features":[413]},{"name":"IDC_EL_MANUAL","features":[413]},{"name":"IDC_EL_OPENSOURCE","features":[413]},{"name":"IDC_EL_UPDATENOW","features":[413]},{"name":"IDC_GP_CONVERT","features":[413]},{"name":"IDC_GP_OBJECTICON","features":[413]},{"name":"IDC_GP_OBJECTLOCATION","features":[413]},{"name":"IDC_GP_OBJECTNAME","features":[413]},{"name":"IDC_GP_OBJECTSIZE","features":[413]},{"name":"IDC_GP_OBJECTTYPE","features":[413]},{"name":"IDC_IO_ADDCONTROL","features":[413]},{"name":"IDC_IO_CHANGEICON","features":[413]},{"name":"IDC_IO_CONTROLTYPELIST","features":[413]},{"name":"IDC_IO_CREATEFROMFILE","features":[413]},{"name":"IDC_IO_CREATENEW","features":[413]},{"name":"IDC_IO_DISPLAYASICON","features":[413]},{"name":"IDC_IO_FILE","features":[413]},{"name":"IDC_IO_FILEDISPLAY","features":[413]},{"name":"IDC_IO_FILETEXT","features":[413]},{"name":"IDC_IO_FILETYPE","features":[413]},{"name":"IDC_IO_ICONDISPLAY","features":[413]},{"name":"IDC_IO_INSERTCONTROL","features":[413]},{"name":"IDC_IO_LINKFILE","features":[413]},{"name":"IDC_IO_OBJECTTYPELIST","features":[413]},{"name":"IDC_IO_OBJECTTYPETEXT","features":[413]},{"name":"IDC_IO_RESULTIMAGE","features":[413]},{"name":"IDC_IO_RESULTTEXT","features":[413]},{"name":"IDC_LP_AUTOMATIC","features":[413]},{"name":"IDC_LP_BREAKLINK","features":[413]},{"name":"IDC_LP_CHANGESOURCE","features":[413]},{"name":"IDC_LP_DATE","features":[413]},{"name":"IDC_LP_LINKSOURCE","features":[413]},{"name":"IDC_LP_MANUAL","features":[413]},{"name":"IDC_LP_OPENSOURCE","features":[413]},{"name":"IDC_LP_TIME","features":[413]},{"name":"IDC_LP_UPDATENOW","features":[413]},{"name":"IDC_OLEUIHELP","features":[413]},{"name":"IDC_PS_CHANGEICON","features":[413]},{"name":"IDC_PS_DISPLAYASICON","features":[413]},{"name":"IDC_PS_DISPLAYLIST","features":[413]},{"name":"IDC_PS_ICONDISPLAY","features":[413]},{"name":"IDC_PS_PASTE","features":[413]},{"name":"IDC_PS_PASTELINK","features":[413]},{"name":"IDC_PS_PASTELINKLIST","features":[413]},{"name":"IDC_PS_PASTELIST","features":[413]},{"name":"IDC_PS_RESULTIMAGE","features":[413]},{"name":"IDC_PS_RESULTTEXT","features":[413]},{"name":"IDC_PS_SOURCETEXT","features":[413]},{"name":"IDC_PU_CONVERT","features":[413]},{"name":"IDC_PU_ICON","features":[413]},{"name":"IDC_PU_LINKS","features":[413]},{"name":"IDC_PU_TEXT","features":[413]},{"name":"IDC_UL_METER","features":[413]},{"name":"IDC_UL_PERCENT","features":[413]},{"name":"IDC_UL_PROGRESS","features":[413]},{"name":"IDC_UL_STOP","features":[413]},{"name":"IDC_VP_ASICON","features":[413]},{"name":"IDC_VP_CHANGEICON","features":[413]},{"name":"IDC_VP_EDITABLE","features":[413]},{"name":"IDC_VP_ICONDISPLAY","features":[413]},{"name":"IDC_VP_PERCENT","features":[413]},{"name":"IDC_VP_RELATIVE","features":[413]},{"name":"IDC_VP_RESULTIMAGE","features":[413]},{"name":"IDC_VP_SCALETXT","features":[413]},{"name":"IDC_VP_SPIN","features":[413]},{"name":"IDD_BUSY","features":[413]},{"name":"IDD_CANNOTUPDATELINK","features":[413]},{"name":"IDD_CHANGEICON","features":[413]},{"name":"IDD_CHANGEICONBROWSE","features":[413]},{"name":"IDD_CHANGESOURCE","features":[413]},{"name":"IDD_CHANGESOURCE4","features":[413]},{"name":"IDD_CONVERT","features":[413]},{"name":"IDD_CONVERT4","features":[413]},{"name":"IDD_CONVERTONLY","features":[413]},{"name":"IDD_CONVERTONLY4","features":[413]},{"name":"IDD_EDITLINKS","features":[413]},{"name":"IDD_EDITLINKS4","features":[413]},{"name":"IDD_GNRLPROPS","features":[413]},{"name":"IDD_GNRLPROPS4","features":[413]},{"name":"IDD_INSERTFILEBROWSE","features":[413]},{"name":"IDD_INSERTOBJECT","features":[413]},{"name":"IDD_LINKPROPS","features":[413]},{"name":"IDD_LINKPROPS4","features":[413]},{"name":"IDD_LINKSOURCEUNAVAILABLE","features":[413]},{"name":"IDD_LINKTYPECHANGED","features":[413]},{"name":"IDD_LINKTYPECHANGEDA","features":[413]},{"name":"IDD_LINKTYPECHANGEDW","features":[413]},{"name":"IDD_OUTOFMEMORY","features":[413]},{"name":"IDD_PASTESPECIAL","features":[413]},{"name":"IDD_PASTESPECIAL4","features":[413]},{"name":"IDD_SERVERNOTFOUND","features":[413]},{"name":"IDD_SERVERNOTREG","features":[413]},{"name":"IDD_SERVERNOTREGA","features":[413]},{"name":"IDD_SERVERNOTREGW","features":[413]},{"name":"IDD_UPDATELINKS","features":[413]},{"name":"IDD_VIEWPROPS","features":[413]},{"name":"ID_BROWSE_ADDCONTROL","features":[413]},{"name":"ID_BROWSE_CHANGEICON","features":[413]},{"name":"ID_BROWSE_CHANGESOURCE","features":[413]},{"name":"ID_BROWSE_INSERTFILE","features":[413]},{"name":"ID_DEFAULTINST","features":[413]},{"name":"IDispError","features":[413]},{"name":"IDispatchEx","features":[354,413]},{"name":"IDropSource","features":[413]},{"name":"IDropSourceNotify","features":[413]},{"name":"IDropTarget","features":[413]},{"name":"IEnterpriseDropTarget","features":[413]},{"name":"IEnumOLEVERB","features":[413]},{"name":"IEnumOleDocumentViews","features":[413]},{"name":"IEnumOleUndoUnits","features":[413]},{"name":"IEnumVARIANT","features":[413]},{"name":"IFont","features":[413]},{"name":"IFontDisp","features":[354,413]},{"name":"IFontEventsDisp","features":[354,413]},{"name":"IGNOREMIME","features":[413]},{"name":"IGNOREMIME_PROMPT","features":[413]},{"name":"IGNOREMIME_TEXT","features":[413]},{"name":"IGetOleObject","features":[413]},{"name":"IGetVBAObject","features":[413]},{"name":"INSERT_OBJECT_FLAGS","features":[413]},{"name":"INSTALL_SCOPE_INVALID","features":[413]},{"name":"INSTALL_SCOPE_MACHINE","features":[413]},{"name":"INSTALL_SCOPE_USER","features":[413]},{"name":"INTERFACEDATA","features":[354,413,378]},{"name":"IOF_CHECKDISPLAYASICON","features":[413]},{"name":"IOF_CHECKLINK","features":[413]},{"name":"IOF_CREATEFILEOBJECT","features":[413]},{"name":"IOF_CREATELINKOBJECT","features":[413]},{"name":"IOF_CREATENEWOBJECT","features":[413]},{"name":"IOF_DISABLEDISPLAYASICON","features":[413]},{"name":"IOF_DISABLELINK","features":[413]},{"name":"IOF_HIDECHANGEICON","features":[413]},{"name":"IOF_SELECTCREATECONTROL","features":[413]},{"name":"IOF_SELECTCREATEFROMFILE","features":[413]},{"name":"IOF_SELECTCREATENEW","features":[413]},{"name":"IOF_SHOWHELP","features":[413]},{"name":"IOF_SHOWINSERTCONTROL","features":[413]},{"name":"IOF_VERIFYSERVERSEXIST","features":[413]},{"name":"IObjectIdentity","features":[413]},{"name":"IObjectWithSite","features":[413]},{"name":"IOleAdviseHolder","features":[413]},{"name":"IOleCache","features":[413]},{"name":"IOleCache2","features":[413]},{"name":"IOleCacheControl","features":[413]},{"name":"IOleClientSite","features":[413]},{"name":"IOleCommandTarget","features":[413]},{"name":"IOleContainer","features":[413]},{"name":"IOleControl","features":[413]},{"name":"IOleControlSite","features":[413]},{"name":"IOleDocument","features":[413]},{"name":"IOleDocumentSite","features":[413]},{"name":"IOleDocumentView","features":[413]},{"name":"IOleInPlaceActiveObject","features":[413]},{"name":"IOleInPlaceFrame","features":[413]},{"name":"IOleInPlaceObject","features":[413]},{"name":"IOleInPlaceObjectWindowless","features":[413]},{"name":"IOleInPlaceSite","features":[413]},{"name":"IOleInPlaceSiteEx","features":[413]},{"name":"IOleInPlaceSiteWindowless","features":[413]},{"name":"IOleInPlaceUIWindow","features":[413]},{"name":"IOleItemContainer","features":[413]},{"name":"IOleLink","features":[413]},{"name":"IOleObject","features":[413]},{"name":"IOleParentUndoUnit","features":[413]},{"name":"IOleUILinkContainerA","features":[413]},{"name":"IOleUILinkContainerW","features":[413]},{"name":"IOleUILinkInfoA","features":[413]},{"name":"IOleUILinkInfoW","features":[413]},{"name":"IOleUIObjInfoA","features":[413]},{"name":"IOleUIObjInfoW","features":[413]},{"name":"IOleUndoManager","features":[413]},{"name":"IOleUndoUnit","features":[413]},{"name":"IOleWindow","features":[413]},{"name":"IParseDisplayName","features":[413]},{"name":"IPerPropertyBrowsing","features":[413]},{"name":"IPersistPropertyBag","features":[354,413]},{"name":"IPersistPropertyBag2","features":[354,413]},{"name":"IPicture","features":[413]},{"name":"IPicture2","features":[413]},{"name":"IPictureDisp","features":[354,413]},{"name":"IPointerInactive","features":[413]},{"name":"IPrint","features":[413]},{"name":"IPropertyNotifySink","features":[413]},{"name":"IPropertyPage","features":[413]},{"name":"IPropertyPage2","features":[413]},{"name":"IPropertyPageSite","features":[413]},{"name":"IProtectFocus","features":[413]},{"name":"IProtectedModeMenuServices","features":[413]},{"name":"IProvideClassInfo","features":[413]},{"name":"IProvideClassInfo2","features":[413]},{"name":"IProvideMultipleClassInfo","features":[413]},{"name":"IProvideRuntimeContext","features":[413]},{"name":"IQuickActivate","features":[413]},{"name":"IRecordInfo","features":[413]},{"name":"ISimpleFrameSite","features":[413]},{"name":"ISpecifyPropertyPages","features":[413]},{"name":"ITypeChangeEvents","features":[413]},{"name":"ITypeFactory","features":[413]},{"name":"ITypeMarshal","features":[413]},{"name":"IVBFormat","features":[413]},{"name":"IVBGetControl","features":[413]},{"name":"IVariantChangeType","features":[413]},{"name":"IViewObject","features":[413]},{"name":"IViewObject2","features":[413]},{"name":"IViewObjectEx","features":[413]},{"name":"IZoomEvents","features":[413]},{"name":"IsAccelerator","features":[303,413,365]},{"name":"KEYMODIFIERS","features":[413]},{"name":"KEYMOD_ALT","features":[413]},{"name":"KEYMOD_CONTROL","features":[413]},{"name":"KEYMOD_SHIFT","features":[413]},{"name":"LHashValOfNameSys","features":[354,413]},{"name":"LHashValOfNameSysA","features":[354,413]},{"name":"LIBFLAGS","features":[413]},{"name":"LIBFLAG_FCONTROL","features":[413]},{"name":"LIBFLAG_FHASDISKIMAGE","features":[413]},{"name":"LIBFLAG_FHIDDEN","features":[413]},{"name":"LIBFLAG_FRESTRICTED","features":[413]},{"name":"LICINFO","features":[303,413]},{"name":"LOAD_PICTURE_FLAGS","features":[413]},{"name":"LOAD_TLB_AS_32BIT","features":[413]},{"name":"LOAD_TLB_AS_64BIT","features":[413]},{"name":"LOCALE_USE_NLS","features":[413]},{"name":"LPFNOLEUIHOOK","features":[303,413]},{"name":"LP_COLOR","features":[413]},{"name":"LP_DEFAULT","features":[413]},{"name":"LP_MONOCHROME","features":[413]},{"name":"LP_VGACOLOR","features":[413]},{"name":"LoadRegTypeLib","features":[354,413]},{"name":"LoadTypeLib","features":[354,413]},{"name":"LoadTypeLibEx","features":[354,413]},{"name":"MEDIAPLAYBACK_PAUSE","features":[413]},{"name":"MEDIAPLAYBACK_PAUSE_AND_SUSPEND","features":[413]},{"name":"MEDIAPLAYBACK_RESUME","features":[413]},{"name":"MEDIAPLAYBACK_RESUME_FROM_SUSPEND","features":[413]},{"name":"MEDIAPLAYBACK_STATE","features":[413]},{"name":"MEMBERID_NIL","features":[413]},{"name":"METHODDATA","features":[354,413,378]},{"name":"MK_ALT","features":[413]},{"name":"MSOCMDERR_E_CANCELED","features":[413]},{"name":"MSOCMDERR_E_DISABLED","features":[413]},{"name":"MSOCMDERR_E_FIRST","features":[413]},{"name":"MSOCMDERR_E_NOHELP","features":[413]},{"name":"MSOCMDERR_E_NOTSUPPORTED","features":[413]},{"name":"MSOCMDERR_E_UNKNOWNGROUP","features":[413]},{"name":"MULTICLASSINFO_FLAGS","features":[413]},{"name":"MULTICLASSINFO_GETIIDPRIMARY","features":[413]},{"name":"MULTICLASSINFO_GETIIDSOURCE","features":[413]},{"name":"MULTICLASSINFO_GETNUMRESERVEDDISPIDS","features":[413]},{"name":"MULTICLASSINFO_GETTYPEINFO","features":[413]},{"name":"NUMPARSE","features":[413]},{"name":"NUMPARSE_FLAGS","features":[413]},{"name":"NUMPRS_CURRENCY","features":[413]},{"name":"NUMPRS_DECIMAL","features":[413]},{"name":"NUMPRS_EXPONENT","features":[413]},{"name":"NUMPRS_HEX_OCT","features":[413]},{"name":"NUMPRS_INEXACT","features":[413]},{"name":"NUMPRS_LEADING_MINUS","features":[413]},{"name":"NUMPRS_LEADING_PLUS","features":[413]},{"name":"NUMPRS_LEADING_WHITE","features":[413]},{"name":"NUMPRS_NEG","features":[413]},{"name":"NUMPRS_PARENS","features":[413]},{"name":"NUMPRS_STD","features":[413]},{"name":"NUMPRS_THOUSANDS","features":[413]},{"name":"NUMPRS_TRAILING_MINUS","features":[413]},{"name":"NUMPRS_TRAILING_PLUS","features":[413]},{"name":"NUMPRS_TRAILING_WHITE","features":[413]},{"name":"NUMPRS_USE_ALL","features":[413]},{"name":"OBJECTDESCRIPTOR","features":[303,413]},{"name":"OBJECT_PROPERTIES_FLAGS","features":[413]},{"name":"OCM__BASE","features":[413]},{"name":"OCPFIPARAMS","features":[303,413]},{"name":"OF_GET","features":[413]},{"name":"OF_HANDLER","features":[413]},{"name":"OF_SET","features":[413]},{"name":"OLECLOSE","features":[413]},{"name":"OLECLOSE_NOSAVE","features":[413]},{"name":"OLECLOSE_PROMPTSAVE","features":[413]},{"name":"OLECLOSE_SAVEIFDIRTY","features":[413]},{"name":"OLECMD","features":[413]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_CLSID","features":[413]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_DISPLAYNAME","features":[413]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_INSTALLSCOPE","features":[413]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_PUBLISHER","features":[413]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_SOURCEURL","features":[413]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_HWND","features":[413]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_X","features":[413]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_Y","features":[413]},{"name":"OLECMDERR_E_CANCELED","features":[413]},{"name":"OLECMDERR_E_DISABLED","features":[413]},{"name":"OLECMDERR_E_FIRST","features":[413]},{"name":"OLECMDERR_E_NOHELP","features":[413]},{"name":"OLECMDERR_E_NOTSUPPORTED","features":[413]},{"name":"OLECMDERR_E_UNKNOWNGROUP","features":[413]},{"name":"OLECMDEXECOPT","features":[413]},{"name":"OLECMDEXECOPT_DODEFAULT","features":[413]},{"name":"OLECMDEXECOPT_DONTPROMPTUSER","features":[413]},{"name":"OLECMDEXECOPT_PROMPTUSER","features":[413]},{"name":"OLECMDEXECOPT_SHOWHELP","features":[413]},{"name":"OLECMDF","features":[413]},{"name":"OLECMDF_DEFHIDEONCTXTMENU","features":[413]},{"name":"OLECMDF_ENABLED","features":[413]},{"name":"OLECMDF_INVISIBLE","features":[413]},{"name":"OLECMDF_LATCHED","features":[413]},{"name":"OLECMDF_NINCHED","features":[413]},{"name":"OLECMDF_SUPPORTED","features":[413]},{"name":"OLECMDID","features":[413]},{"name":"OLECMDIDF_BROWSERSTATE_BLOCKEDVERSION","features":[413]},{"name":"OLECMDIDF_BROWSERSTATE_DESKTOPHTMLDIALOG","features":[413]},{"name":"OLECMDIDF_BROWSERSTATE_EXTENSIONSOFF","features":[413]},{"name":"OLECMDIDF_BROWSERSTATE_IESECURITY","features":[413]},{"name":"OLECMDIDF_BROWSERSTATE_PROTECTEDMODE_OFF","features":[413]},{"name":"OLECMDIDF_BROWSERSTATE_REQUIRESACTIVEX","features":[413]},{"name":"OLECMDIDF_BROWSERSTATE_RESET","features":[413]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOLAYOUT","features":[413]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOPERSIST","features":[413]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOTRANSIENT","features":[413]},{"name":"OLECMDIDF_OPTICAL_ZOOM_RELOADFORNEWTAB","features":[413]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXDISALLOW","features":[413]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXINSTALL","features":[413]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXTRUSTFAIL","features":[413]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUNSAFE","features":[413]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERAPPROVAL","features":[413]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERDISABLE","features":[413]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEX_EPM_INCOMPATIBLE","features":[413]},{"name":"OLECMDIDF_PAGEACTION_EXTENSION_COMPAT_BLOCKED","features":[413]},{"name":"OLECMDIDF_PAGEACTION_FILEDOWNLOAD","features":[413]},{"name":"OLECMDIDF_PAGEACTION_GENERIC_STATE","features":[413]},{"name":"OLECMDIDF_PAGEACTION_INTRANETZONEREQUEST","features":[413]},{"name":"OLECMDIDF_PAGEACTION_INVALID_CERT","features":[413]},{"name":"OLECMDIDF_PAGEACTION_LOCALMACHINE","features":[413]},{"name":"OLECMDIDF_PAGEACTION_MIMETEXTPLAIN","features":[413]},{"name":"OLECMDIDF_PAGEACTION_MIXEDCONTENT","features":[413]},{"name":"OLECMDIDF_PAGEACTION_NORESETACTIVEX","features":[413]},{"name":"OLECMDIDF_PAGEACTION_POPUPALLOWED","features":[413]},{"name":"OLECMDIDF_PAGEACTION_POPUPWINDOW","features":[413]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNDENY","features":[413]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTERNET","features":[413]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTRANET","features":[413]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[413]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[413]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[413]},{"name":"OLECMDIDF_PAGEACTION_RESET","features":[413]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE","features":[413]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXINSTALL","features":[413]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXUSERAPPROVAL","features":[413]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTPROMPT","features":[413]},{"name":"OLECMDIDF_PAGEACTION_SPOOFABLEIDNHOST","features":[413]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED","features":[413]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED_ACTIVEX","features":[413]},{"name":"OLECMDIDF_PAGEACTION_XSSFILTERED","features":[413]},{"name":"OLECMDIDF_REFRESH_CLEARUSERINPUT","features":[413]},{"name":"OLECMDIDF_REFRESH_COMPLETELY","features":[413]},{"name":"OLECMDIDF_REFRESH_CONTINUE","features":[413]},{"name":"OLECMDIDF_REFRESH_IFEXPIRED","features":[413]},{"name":"OLECMDIDF_REFRESH_LEVELMASK","features":[413]},{"name":"OLECMDIDF_REFRESH_NORMAL","features":[413]},{"name":"OLECMDIDF_REFRESH_NO_CACHE","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ACTIVEXINSTALL","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ALLOW_VERSION","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_FILEDOWNLOAD","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_INVALID_CERT","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_LOCALMACHINE","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_MIXEDCONTENT","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_POPUPWINDOW","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTERNET","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTRANET","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[413]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[413]},{"name":"OLECMDIDF_REFRESH_PROMPTIFOFFLINE","features":[413]},{"name":"OLECMDIDF_REFRESH_RELOAD","features":[413]},{"name":"OLECMDIDF_REFRESH_SKIPBEFOREUNLOADEVENT","features":[413]},{"name":"OLECMDIDF_REFRESH_THROUGHSCRIPT","features":[413]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM","features":[413]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM_VALID","features":[413]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH","features":[413]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH_VALID","features":[413]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED","features":[413]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED_VALID","features":[413]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE","features":[413]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE_VALID","features":[413]},{"name":"OLECMDID_ACTIVEXINSTALLSCOPE","features":[413]},{"name":"OLECMDID_ADDTRAVELENTRY","features":[413]},{"name":"OLECMDID_ALLOWUILESSSAVEAS","features":[413]},{"name":"OLECMDID_BROWSERSTATEFLAG","features":[413]},{"name":"OLECMDID_CLEARSELECTION","features":[413]},{"name":"OLECMDID_CLOSE","features":[413]},{"name":"OLECMDID_COPY","features":[413]},{"name":"OLECMDID_CUT","features":[413]},{"name":"OLECMDID_DELETE","features":[413]},{"name":"OLECMDID_DONTDOWNLOADCSS","features":[413]},{"name":"OLECMDID_ENABLE_INTERACTION","features":[413]},{"name":"OLECMDID_ENABLE_VISIBILITY","features":[413]},{"name":"OLECMDID_EXITFULLSCREEN","features":[413]},{"name":"OLECMDID_FIND","features":[413]},{"name":"OLECMDID_FOCUSVIEWCONTROLS","features":[413]},{"name":"OLECMDID_FOCUSVIEWCONTROLSQUERY","features":[413]},{"name":"OLECMDID_GETPRINTTEMPLATE","features":[413]},{"name":"OLECMDID_GETUSERSCALABLE","features":[413]},{"name":"OLECMDID_GETZOOMRANGE","features":[413]},{"name":"OLECMDID_HIDETOOLBARS","features":[413]},{"name":"OLECMDID_HTTPEQUIV","features":[413]},{"name":"OLECMDID_HTTPEQUIV_DONE","features":[413]},{"name":"OLECMDID_LAYOUT_VIEWPORT_WIDTH","features":[413]},{"name":"OLECMDID_MEDIA_PLAYBACK","features":[413]},{"name":"OLECMDID_NEW","features":[413]},{"name":"OLECMDID_ONBEFOREUNLOAD","features":[413]},{"name":"OLECMDID_ONTOOLBARACTIVATED","features":[413]},{"name":"OLECMDID_ONUNLOAD","features":[413]},{"name":"OLECMDID_OPEN","features":[413]},{"name":"OLECMDID_OPTICAL_GETZOOMRANGE","features":[413]},{"name":"OLECMDID_OPTICAL_ZOOM","features":[413]},{"name":"OLECMDID_OPTICAL_ZOOMFLAG","features":[413]},{"name":"OLECMDID_PAGEACTIONBLOCKED","features":[413]},{"name":"OLECMDID_PAGEACTIONFLAG","features":[413]},{"name":"OLECMDID_PAGEACTIONUIQUERY","features":[413]},{"name":"OLECMDID_PAGEAVAILABLE","features":[413]},{"name":"OLECMDID_PAGESETUP","features":[413]},{"name":"OLECMDID_PASTE","features":[413]},{"name":"OLECMDID_PASTESPECIAL","features":[413]},{"name":"OLECMDID_POPSTATEEVENT","features":[413]},{"name":"OLECMDID_PREREFRESH","features":[413]},{"name":"OLECMDID_PRINT","features":[413]},{"name":"OLECMDID_PRINT2","features":[413]},{"name":"OLECMDID_PRINTPREVIEW","features":[413]},{"name":"OLECMDID_PRINTPREVIEW2","features":[413]},{"name":"OLECMDID_PROPERTIES","features":[413]},{"name":"OLECMDID_PROPERTYBAG2","features":[413]},{"name":"OLECMDID_REDO","features":[413]},{"name":"OLECMDID_REFRESH","features":[413]},{"name":"OLECMDID_REFRESHFLAG","features":[413]},{"name":"OLECMDID_SAVE","features":[413]},{"name":"OLECMDID_SAVEAS","features":[413]},{"name":"OLECMDID_SAVECOPYAS","features":[413]},{"name":"OLECMDID_SCROLLCOMPLETE","features":[413]},{"name":"OLECMDID_SELECTALL","features":[413]},{"name":"OLECMDID_SETDOWNLOADSTATE","features":[413]},{"name":"OLECMDID_SETFAVICON","features":[413]},{"name":"OLECMDID_SETPRINTTEMPLATE","features":[413]},{"name":"OLECMDID_SETPROGRESSMAX","features":[413]},{"name":"OLECMDID_SETPROGRESSPOS","features":[413]},{"name":"OLECMDID_SETPROGRESSTEXT","features":[413]},{"name":"OLECMDID_SETTITLE","features":[413]},{"name":"OLECMDID_SET_HOST_FULLSCREENMODE","features":[413]},{"name":"OLECMDID_SHOWFIND","features":[413]},{"name":"OLECMDID_SHOWMESSAGE","features":[413]},{"name":"OLECMDID_SHOWMESSAGE_BLOCKABLE","features":[413]},{"name":"OLECMDID_SHOWPAGEACTIONMENU","features":[413]},{"name":"OLECMDID_SHOWPAGESETUP","features":[413]},{"name":"OLECMDID_SHOWPRINT","features":[413]},{"name":"OLECMDID_SHOWSCRIPTERROR","features":[413]},{"name":"OLECMDID_SHOWTASKDLG","features":[413]},{"name":"OLECMDID_SHOWTASKDLG_BLOCKABLE","features":[413]},{"name":"OLECMDID_SPELL","features":[413]},{"name":"OLECMDID_STOP","features":[413]},{"name":"OLECMDID_STOPDOWNLOAD","features":[413]},{"name":"OLECMDID_UNDO","features":[413]},{"name":"OLECMDID_UPDATEBACKFORWARDSTATE","features":[413]},{"name":"OLECMDID_UPDATECOMMANDS","features":[413]},{"name":"OLECMDID_UPDATEPAGESTATUS","features":[413]},{"name":"OLECMDID_UPDATETRAVELENTRY","features":[413]},{"name":"OLECMDID_UPDATETRAVELENTRY_DATARECOVERY","features":[413]},{"name":"OLECMDID_UPDATE_CARET","features":[413]},{"name":"OLECMDID_USER_OPTICAL_ZOOM","features":[413]},{"name":"OLECMDID_VIEWPORT_MODE","features":[413]},{"name":"OLECMDID_VIEWPORT_MODE_FLAG","features":[413]},{"name":"OLECMDID_VISUAL_VIEWPORT_EXCLUDE_BOTTOM","features":[413]},{"name":"OLECMDID_WINDOWSTATECHANGED","features":[413]},{"name":"OLECMDID_WINDOWSTATE_FLAG","features":[413]},{"name":"OLECMDID_ZOOM","features":[413]},{"name":"OLECMDTEXT","features":[413]},{"name":"OLECMDTEXTF","features":[413]},{"name":"OLECMDTEXTF_NAME","features":[413]},{"name":"OLECMDTEXTF_NONE","features":[413]},{"name":"OLECMDTEXTF_STATUS","features":[413]},{"name":"OLECMD_TASKDLGID_ONBEFOREUNLOAD","features":[413]},{"name":"OLECONTF","features":[413]},{"name":"OLECONTF_EMBEDDINGS","features":[413]},{"name":"OLECONTF_LINKS","features":[413]},{"name":"OLECONTF_ONLYIFRUNNING","features":[413]},{"name":"OLECONTF_ONLYUSER","features":[413]},{"name":"OLECONTF_OTHERS","features":[413]},{"name":"OLECREATE","features":[413]},{"name":"OLECREATE_LEAVERUNNING","features":[413]},{"name":"OLECREATE_ZERO","features":[413]},{"name":"OLEDCFLAGS","features":[413]},{"name":"OLEDC_NODRAW","features":[413]},{"name":"OLEDC_OFFSCREEN","features":[413]},{"name":"OLEDC_PAINTBKGND","features":[413]},{"name":"OLEGETMONIKER","features":[413]},{"name":"OLEGETMONIKER_FORCEASSIGN","features":[413]},{"name":"OLEGETMONIKER_ONLYIFTHERE","features":[413]},{"name":"OLEGETMONIKER_TEMPFORUSER","features":[413]},{"name":"OLEGETMONIKER_UNASSIGN","features":[413]},{"name":"OLEINPLACEFRAMEINFO","features":[303,413,365]},{"name":"OLEIVERB","features":[413]},{"name":"OLEIVERB_DISCARDUNDOSTATE","features":[413]},{"name":"OLEIVERB_HIDE","features":[413]},{"name":"OLEIVERB_INPLACEACTIVATE","features":[413]},{"name":"OLEIVERB_OPEN","features":[413]},{"name":"OLEIVERB_PRIMARY","features":[413]},{"name":"OLEIVERB_PROPERTIES","features":[413]},{"name":"OLEIVERB_SHOW","features":[413]},{"name":"OLEIVERB_UIACTIVATE","features":[413]},{"name":"OLELINKBIND","features":[413]},{"name":"OLELINKBIND_EVENIFCLASSDIFF","features":[413]},{"name":"OLEMENUGROUPWIDTHS","features":[413]},{"name":"OLEMISC","features":[413]},{"name":"OLEMISC_ACTIVATEWHENVISIBLE","features":[413]},{"name":"OLEMISC_ACTSLIKEBUTTON","features":[413]},{"name":"OLEMISC_ACTSLIKELABEL","features":[413]},{"name":"OLEMISC_ALIGNABLE","features":[413]},{"name":"OLEMISC_ALWAYSRUN","features":[413]},{"name":"OLEMISC_CANLINKBYOLE1","features":[413]},{"name":"OLEMISC_CANTLINKINSIDE","features":[413]},{"name":"OLEMISC_IGNOREACTIVATEWHENVISIBLE","features":[413]},{"name":"OLEMISC_IMEMODE","features":[413]},{"name":"OLEMISC_INSERTNOTREPLACE","features":[413]},{"name":"OLEMISC_INSIDEOUT","features":[413]},{"name":"OLEMISC_INVISIBLEATRUNTIME","features":[413]},{"name":"OLEMISC_ISLINKOBJECT","features":[413]},{"name":"OLEMISC_NOUIACTIVATE","features":[413]},{"name":"OLEMISC_ONLYICONIC","features":[413]},{"name":"OLEMISC_RECOMPOSEONRESIZE","features":[413]},{"name":"OLEMISC_RENDERINGISDEVICEINDEPENDENT","features":[413]},{"name":"OLEMISC_SETCLIENTSITEFIRST","features":[413]},{"name":"OLEMISC_SIMPLEFRAME","features":[413]},{"name":"OLEMISC_STATIC","features":[413]},{"name":"OLEMISC_SUPPORTSMULTILEVELUNDO","features":[413]},{"name":"OLEMISC_WANTSTOMENUMERGE","features":[413]},{"name":"OLERENDER","features":[413]},{"name":"OLERENDER_ASIS","features":[413]},{"name":"OLERENDER_DRAW","features":[413]},{"name":"OLERENDER_FORMAT","features":[413]},{"name":"OLERENDER_NONE","features":[413]},{"name":"OLESTDDELIM","features":[413]},{"name":"OLESTREAMQUERYCONVERTOLELINKCALLBACK","features":[413]},{"name":"OLESTREAM_CONVERSION_DEFAULT","features":[413]},{"name":"OLESTREAM_CONVERSION_DISABLEOLELINK","features":[413]},{"name":"OLEUIBUSYA","features":[303,416,413]},{"name":"OLEUIBUSYW","features":[303,416,413]},{"name":"OLEUICHANGEICONA","features":[303,413]},{"name":"OLEUICHANGEICONW","features":[303,413]},{"name":"OLEUICHANGESOURCEA","features":[303,413,434]},{"name":"OLEUICHANGESOURCEW","features":[303,413,434]},{"name":"OLEUICONVERTA","features":[303,413]},{"name":"OLEUICONVERTW","features":[303,413]},{"name":"OLEUIEDITLINKSA","features":[303,413]},{"name":"OLEUIEDITLINKSW","features":[303,413]},{"name":"OLEUIGNRLPROPSA","features":[303,314,413,353,365]},{"name":"OLEUIGNRLPROPSW","features":[303,314,413,353,365]},{"name":"OLEUIINSERTOBJECTA","features":[303,427,413]},{"name":"OLEUIINSERTOBJECTW","features":[303,427,413]},{"name":"OLEUILINKPROPSA","features":[303,314,413,353,365]},{"name":"OLEUILINKPROPSW","features":[303,314,413,353,365]},{"name":"OLEUIOBJECTPROPSA","features":[303,314,413,353,365]},{"name":"OLEUIOBJECTPROPSW","features":[303,314,413,353,365]},{"name":"OLEUIPASTEENTRYA","features":[354,413]},{"name":"OLEUIPASTEENTRYW","features":[354,413]},{"name":"OLEUIPASTEFLAG","features":[413]},{"name":"OLEUIPASTESPECIALA","features":[303,354,413]},{"name":"OLEUIPASTESPECIALW","features":[303,354,413]},{"name":"OLEUIPASTE_ENABLEICON","features":[413]},{"name":"OLEUIPASTE_LINKANYTYPE","features":[413]},{"name":"OLEUIPASTE_LINKTYPE1","features":[413]},{"name":"OLEUIPASTE_LINKTYPE2","features":[413]},{"name":"OLEUIPASTE_LINKTYPE3","features":[413]},{"name":"OLEUIPASTE_LINKTYPE4","features":[413]},{"name":"OLEUIPASTE_LINKTYPE5","features":[413]},{"name":"OLEUIPASTE_LINKTYPE6","features":[413]},{"name":"OLEUIPASTE_LINKTYPE7","features":[413]},{"name":"OLEUIPASTE_LINKTYPE8","features":[413]},{"name":"OLEUIPASTE_PASTE","features":[413]},{"name":"OLEUIPASTE_PASTEONLY","features":[413]},{"name":"OLEUIVIEWPROPSA","features":[303,314,413,353,365]},{"name":"OLEUIVIEWPROPSW","features":[303,314,413,353,365]},{"name":"OLEUI_BZERR_HTASKINVALID","features":[413]},{"name":"OLEUI_BZ_CALLUNBLOCKED","features":[413]},{"name":"OLEUI_BZ_RETRYSELECTED","features":[413]},{"name":"OLEUI_BZ_SWITCHTOSELECTED","features":[413]},{"name":"OLEUI_CANCEL","features":[413]},{"name":"OLEUI_CIERR_MUSTHAVECLSID","features":[413]},{"name":"OLEUI_CIERR_MUSTHAVECURRENTMETAFILE","features":[413]},{"name":"OLEUI_CIERR_SZICONEXEINVALID","features":[413]},{"name":"OLEUI_CSERR_FROMNOTNULL","features":[413]},{"name":"OLEUI_CSERR_LINKCNTRINVALID","features":[413]},{"name":"OLEUI_CSERR_LINKCNTRNULL","features":[413]},{"name":"OLEUI_CSERR_SOURCEINVALID","features":[413]},{"name":"OLEUI_CSERR_SOURCENULL","features":[413]},{"name":"OLEUI_CSERR_SOURCEPARSEERROR","features":[413]},{"name":"OLEUI_CSERR_SOURCEPARSERROR","features":[413]},{"name":"OLEUI_CSERR_TONOTNULL","features":[413]},{"name":"OLEUI_CTERR_CBFORMATINVALID","features":[413]},{"name":"OLEUI_CTERR_CLASSIDINVALID","features":[413]},{"name":"OLEUI_CTERR_DVASPECTINVALID","features":[413]},{"name":"OLEUI_CTERR_HMETAPICTINVALID","features":[413]},{"name":"OLEUI_CTERR_STRINGINVALID","features":[413]},{"name":"OLEUI_ELERR_LINKCNTRINVALID","features":[413]},{"name":"OLEUI_ELERR_LINKCNTRNULL","features":[413]},{"name":"OLEUI_ERR_CBSTRUCTINCORRECT","features":[413]},{"name":"OLEUI_ERR_DIALOGFAILURE","features":[413]},{"name":"OLEUI_ERR_FINDTEMPLATEFAILURE","features":[413]},{"name":"OLEUI_ERR_GLOBALMEMALLOC","features":[413]},{"name":"OLEUI_ERR_HINSTANCEINVALID","features":[413]},{"name":"OLEUI_ERR_HRESOURCEINVALID","features":[413]},{"name":"OLEUI_ERR_HWNDOWNERINVALID","features":[413]},{"name":"OLEUI_ERR_LOADSTRING","features":[413]},{"name":"OLEUI_ERR_LOADTEMPLATEFAILURE","features":[413]},{"name":"OLEUI_ERR_LOCALMEMALLOC","features":[413]},{"name":"OLEUI_ERR_LPFNHOOKINVALID","features":[413]},{"name":"OLEUI_ERR_LPSZCAPTIONINVALID","features":[413]},{"name":"OLEUI_ERR_LPSZTEMPLATEINVALID","features":[413]},{"name":"OLEUI_ERR_OLEMEMALLOC","features":[413]},{"name":"OLEUI_ERR_STANDARDMAX","features":[413]},{"name":"OLEUI_ERR_STANDARDMIN","features":[413]},{"name":"OLEUI_ERR_STRUCTUREINVALID","features":[413]},{"name":"OLEUI_ERR_STRUCTURENULL","features":[413]},{"name":"OLEUI_FALSE","features":[413]},{"name":"OLEUI_GPERR_CBFORMATINVALID","features":[413]},{"name":"OLEUI_GPERR_CLASSIDINVALID","features":[413]},{"name":"OLEUI_GPERR_LPCLSIDEXCLUDEINVALID","features":[413]},{"name":"OLEUI_GPERR_STRINGINVALID","features":[413]},{"name":"OLEUI_IOERR_ARRLINKTYPESINVALID","features":[413]},{"name":"OLEUI_IOERR_ARRPASTEENTRIESINVALID","features":[413]},{"name":"OLEUI_IOERR_CCHFILEINVALID","features":[413]},{"name":"OLEUI_IOERR_HICONINVALID","features":[413]},{"name":"OLEUI_IOERR_LPCLSIDEXCLUDEINVALID","features":[413]},{"name":"OLEUI_IOERR_LPFORMATETCINVALID","features":[413]},{"name":"OLEUI_IOERR_LPIOLECLIENTSITEINVALID","features":[413]},{"name":"OLEUI_IOERR_LPISTORAGEINVALID","features":[413]},{"name":"OLEUI_IOERR_LPSZFILEINVALID","features":[413]},{"name":"OLEUI_IOERR_LPSZLABELINVALID","features":[413]},{"name":"OLEUI_IOERR_PPVOBJINVALID","features":[413]},{"name":"OLEUI_IOERR_SCODEHASERROR","features":[413]},{"name":"OLEUI_IOERR_SRCDATAOBJECTINVALID","features":[413]},{"name":"OLEUI_LPERR_LINKCNTRINVALID","features":[413]},{"name":"OLEUI_LPERR_LINKCNTRNULL","features":[413]},{"name":"OLEUI_OK","features":[413]},{"name":"OLEUI_OPERR_DLGPROCNOTNULL","features":[413]},{"name":"OLEUI_OPERR_INVALIDPAGES","features":[413]},{"name":"OLEUI_OPERR_LINKINFOINVALID","features":[413]},{"name":"OLEUI_OPERR_LPARAMNOTZERO","features":[413]},{"name":"OLEUI_OPERR_NOTSUPPORTED","features":[413]},{"name":"OLEUI_OPERR_OBJINFOINVALID","features":[413]},{"name":"OLEUI_OPERR_PAGESINCORRECT","features":[413]},{"name":"OLEUI_OPERR_PROPERTYSHEET","features":[413]},{"name":"OLEUI_OPERR_PROPSHEETINVALID","features":[413]},{"name":"OLEUI_OPERR_PROPSHEETNULL","features":[413]},{"name":"OLEUI_OPERR_PROPSINVALID","features":[413]},{"name":"OLEUI_OPERR_SUBPROPINVALID","features":[413]},{"name":"OLEUI_OPERR_SUBPROPNULL","features":[413]},{"name":"OLEUI_OPERR_SUPPROP","features":[413]},{"name":"OLEUI_PSERR_CLIPBOARDCHANGED","features":[413]},{"name":"OLEUI_PSERR_GETCLIPBOARDFAILED","features":[413]},{"name":"OLEUI_QUERY_GETCLASSID","features":[413]},{"name":"OLEUI_QUERY_LINKBROKEN","features":[413]},{"name":"OLEUI_SUCCESS","features":[413]},{"name":"OLEUI_VPERR_DVASPECTINVALID","features":[413]},{"name":"OLEUI_VPERR_METAPICTINVALID","features":[413]},{"name":"OLEUPDATE","features":[413]},{"name":"OLEUPDATE_ALWAYS","features":[413]},{"name":"OLEUPDATE_ONCALL","features":[413]},{"name":"OLEVERB","features":[413,365]},{"name":"OLEVERBATTRIB","features":[413]},{"name":"OLEVERBATTRIB_NEVERDIRTIES","features":[413]},{"name":"OLEVERBATTRIB_ONCONTAINERMENU","features":[413]},{"name":"OLEVERB_PRIMARY","features":[413]},{"name":"OLEWHICHMK","features":[413]},{"name":"OLEWHICHMK_CONTAINER","features":[413]},{"name":"OLEWHICHMK_OBJFULL","features":[413]},{"name":"OLEWHICHMK_OBJREL","features":[413]},{"name":"OLE_HANDLE","features":[413]},{"name":"OLE_TRISTATE","features":[413]},{"name":"OPF_DISABLECONVERT","features":[413]},{"name":"OPF_NOFILLDEFAULT","features":[413]},{"name":"OPF_OBJECTISLINK","features":[413]},{"name":"OPF_SHOWHELP","features":[413]},{"name":"OT_EMBEDDED","features":[413]},{"name":"OT_LINK","features":[413]},{"name":"OT_STATIC","features":[413]},{"name":"OaBuildVersion","features":[413]},{"name":"OaEnablePerUserTLibRegistration","features":[413]},{"name":"OleBuildVersion","features":[413]},{"name":"OleConvertOLESTREAMToIStorage2","features":[427,413]},{"name":"OleConvertOLESTREAMToIStorageEx2","features":[303,314,427,413]},{"name":"OleCreate","features":[427,413]},{"name":"OleCreateDefaultHandler","features":[413]},{"name":"OleCreateEmbeddingHelper","features":[354,413]},{"name":"OleCreateEx","features":[427,413]},{"name":"OleCreateFontIndirect","features":[303,354,413]},{"name":"OleCreateFromData","features":[427,413]},{"name":"OleCreateFromDataEx","features":[427,413]},{"name":"OleCreateFromFile","features":[427,413]},{"name":"OleCreateFromFileEx","features":[427,413]},{"name":"OleCreateLink","features":[427,413]},{"name":"OleCreateLinkEx","features":[427,413]},{"name":"OleCreateLinkFromData","features":[427,413]},{"name":"OleCreateLinkFromDataEx","features":[427,413]},{"name":"OleCreateLinkToFile","features":[427,413]},{"name":"OleCreateLinkToFileEx","features":[427,413]},{"name":"OleCreateMenuDescriptor","features":[413,365]},{"name":"OleCreatePictureIndirect","features":[303,314,413,365]},{"name":"OleCreatePropertyFrame","features":[303,413]},{"name":"OleCreatePropertyFrameIndirect","features":[303,413]},{"name":"OleCreateStaticFromData","features":[427,413]},{"name":"OleDestroyMenuDescriptor","features":[413]},{"name":"OleDoAutoConvert","features":[427,413]},{"name":"OleDraw","features":[303,314,413]},{"name":"OleDuplicateData","features":[303,321,413]},{"name":"OleFlushClipboard","features":[413]},{"name":"OleGetAutoConvert","features":[413]},{"name":"OleGetClipboard","features":[354,413]},{"name":"OleGetClipboardWithEnterpriseInfo","features":[354,413]},{"name":"OleGetIconOfClass","features":[303,413]},{"name":"OleGetIconOfFile","features":[303,413]},{"name":"OleIconToCursor","features":[303,413,365]},{"name":"OleInitialize","features":[413]},{"name":"OleIsCurrentClipboard","features":[354,413]},{"name":"OleIsRunning","features":[303,413]},{"name":"OleLoad","features":[427,413]},{"name":"OleLoadFromStream","features":[354,413]},{"name":"OleLoadPicture","features":[303,354,413]},{"name":"OleLoadPictureEx","features":[303,354,413]},{"name":"OleLoadPictureFile","features":[354,413]},{"name":"OleLoadPictureFileEx","features":[354,413]},{"name":"OleLoadPicturePath","features":[413]},{"name":"OleLockRunning","features":[303,413]},{"name":"OleMetafilePictFromIconAndLabel","features":[303,413,365]},{"name":"OleNoteObjectVisible","features":[303,413]},{"name":"OleQueryCreateFromData","features":[354,413]},{"name":"OleQueryLinkFromData","features":[354,413]},{"name":"OleRegEnumFormatEtc","features":[354,413]},{"name":"OleRegEnumVerbs","features":[413]},{"name":"OleRegGetMiscStatus","features":[413]},{"name":"OleRegGetUserType","features":[413]},{"name":"OleRun","features":[413]},{"name":"OleSave","features":[303,427,413]},{"name":"OleSavePictureFile","features":[354,413]},{"name":"OleSaveToStream","features":[354,413]},{"name":"OleSetAutoConvert","features":[413]},{"name":"OleSetClipboard","features":[354,413]},{"name":"OleSetContainedObject","features":[303,413]},{"name":"OleSetMenuDescriptor","features":[303,413]},{"name":"OleTranslateAccelerator","features":[303,413,365]},{"name":"OleTranslateColor","features":[303,314,413]},{"name":"OleUIAddVerbMenuA","features":[303,413,365]},{"name":"OleUIAddVerbMenuW","features":[303,413,365]},{"name":"OleUIBusyA","features":[303,416,413]},{"name":"OleUIBusyW","features":[303,416,413]},{"name":"OleUICanConvertOrActivateAs","features":[303,413]},{"name":"OleUIChangeIconA","features":[303,413]},{"name":"OleUIChangeIconW","features":[303,413]},{"name":"OleUIChangeSourceA","features":[303,413,434]},{"name":"OleUIChangeSourceW","features":[303,413,434]},{"name":"OleUIConvertA","features":[303,413]},{"name":"OleUIConvertW","features":[303,413]},{"name":"OleUIEditLinksA","features":[303,413]},{"name":"OleUIEditLinksW","features":[303,413]},{"name":"OleUIInsertObjectA","features":[303,427,413]},{"name":"OleUIInsertObjectW","features":[303,427,413]},{"name":"OleUIObjectPropertiesA","features":[303,314,413,353,365]},{"name":"OleUIObjectPropertiesW","features":[303,314,413,353,365]},{"name":"OleUIPasteSpecialA","features":[303,354,413]},{"name":"OleUIPasteSpecialW","features":[303,354,413]},{"name":"OleUIPromptUserA","features":[303,413]},{"name":"OleUIPromptUserW","features":[303,413]},{"name":"OleUIUpdateLinksA","features":[303,413]},{"name":"OleUIUpdateLinksW","features":[303,413]},{"name":"OleUninitialize","features":[413]},{"name":"PAGEACTION_UI","features":[413]},{"name":"PAGEACTION_UI_DEFAULT","features":[413]},{"name":"PAGEACTION_UI_MODAL","features":[413]},{"name":"PAGEACTION_UI_MODELESS","features":[413]},{"name":"PAGEACTION_UI_SILENT","features":[413]},{"name":"PAGERANGE","features":[413]},{"name":"PAGESET","features":[303,413]},{"name":"PARAMDATA","features":[413,378]},{"name":"PARAMDESC","features":[413]},{"name":"PARAMDESCEX","features":[413]},{"name":"PARAMFLAGS","features":[413]},{"name":"PARAMFLAG_FHASCUSTDATA","features":[413]},{"name":"PARAMFLAG_FHASDEFAULT","features":[413]},{"name":"PARAMFLAG_FIN","features":[413]},{"name":"PARAMFLAG_FLCID","features":[413]},{"name":"PARAMFLAG_FOPT","features":[413]},{"name":"PARAMFLAG_FOUT","features":[413]},{"name":"PARAMFLAG_FRETVAL","features":[413]},{"name":"PARAMFLAG_NONE","features":[413]},{"name":"PASTE_SPECIAL_FLAGS","features":[413]},{"name":"PERPROP_E_FIRST","features":[413]},{"name":"PERPROP_E_LAST","features":[413]},{"name":"PERPROP_E_NOPAGEAVAILABLE","features":[413]},{"name":"PERPROP_S_FIRST","features":[413]},{"name":"PERPROP_S_LAST","features":[413]},{"name":"PICTDESC","features":[314,413,365]},{"name":"PICTUREATTRIBUTES","features":[413]},{"name":"PICTURE_SCALABLE","features":[413]},{"name":"PICTURE_TRANSPARENT","features":[413]},{"name":"PICTYPE","features":[413]},{"name":"PICTYPE_BITMAP","features":[413]},{"name":"PICTYPE_ENHMETAFILE","features":[413]},{"name":"PICTYPE_ICON","features":[413]},{"name":"PICTYPE_METAFILE","features":[413]},{"name":"PICTYPE_NONE","features":[413]},{"name":"PICTYPE_UNINITIALIZED","features":[413]},{"name":"POINTERINACTIVE","features":[413]},{"name":"POINTERINACTIVE_ACTIVATEONDRAG","features":[413]},{"name":"POINTERINACTIVE_ACTIVATEONENTRY","features":[413]},{"name":"POINTERINACTIVE_DEACTIVATEONLEAVE","features":[413]},{"name":"POINTF","features":[413]},{"name":"PRINTFLAG","features":[413]},{"name":"PRINTFLAG_DONTACTUALLYPRINT","features":[413]},{"name":"PRINTFLAG_FORCEPROPERTIES","features":[413]},{"name":"PRINTFLAG_MAYBOTHERUSER","features":[413]},{"name":"PRINTFLAG_PRINTTOFILE","features":[413]},{"name":"PRINTFLAG_PROMPTUSER","features":[413]},{"name":"PRINTFLAG_RECOMPOSETODEVICE","features":[413]},{"name":"PRINTFLAG_USERMAYCHANGEPRINTER","features":[413]},{"name":"PROPBAG2_TYPE","features":[413]},{"name":"PROPBAG2_TYPE_DATA","features":[413]},{"name":"PROPBAG2_TYPE_MONIKER","features":[413]},{"name":"PROPBAG2_TYPE_OBJECT","features":[413]},{"name":"PROPBAG2_TYPE_STORAGE","features":[413]},{"name":"PROPBAG2_TYPE_STREAM","features":[413]},{"name":"PROPBAG2_TYPE_UNDEFINED","features":[413]},{"name":"PROPBAG2_TYPE_URL","features":[413]},{"name":"PROPPAGEINFO","features":[303,413]},{"name":"PROPPAGESTATUS","features":[413]},{"name":"PROPPAGESTATUS_CLEAN","features":[413]},{"name":"PROPPAGESTATUS_DIRTY","features":[413]},{"name":"PROPPAGESTATUS_VALIDATE","features":[413]},{"name":"PROP_HWND_CHGICONDLG","features":[413]},{"name":"PSF_CHECKDISPLAYASICON","features":[413]},{"name":"PSF_DISABLEDISPLAYASICON","features":[413]},{"name":"PSF_HIDECHANGEICON","features":[413]},{"name":"PSF_NOREFRESHDATAOBJECT","features":[413]},{"name":"PSF_SELECTPASTE","features":[413]},{"name":"PSF_SELECTPASTELINK","features":[413]},{"name":"PSF_SHOWHELP","features":[413]},{"name":"PSF_STAYONCLIPBOARDCHANGE","features":[413]},{"name":"PS_MAXLINKTYPES","features":[413]},{"name":"QACONTAINER","features":[314,354,413]},{"name":"QACONTAINERFLAGS","features":[413]},{"name":"QACONTAINER_AUTOCLIP","features":[413]},{"name":"QACONTAINER_DISPLAYASDEFAULT","features":[413]},{"name":"QACONTAINER_MESSAGEREFLECT","features":[413]},{"name":"QACONTAINER_SHOWGRABHANDLES","features":[413]},{"name":"QACONTAINER_SHOWHATCHING","features":[413]},{"name":"QACONTAINER_SUPPORTSMNEMONICS","features":[413]},{"name":"QACONTAINER_UIDEAD","features":[413]},{"name":"QACONTAINER_USERMODE","features":[413]},{"name":"QACONTROL","features":[413]},{"name":"QueryPathOfRegTypeLib","features":[413]},{"name":"READYSTATE","features":[413]},{"name":"READYSTATE_COMPLETE","features":[413]},{"name":"READYSTATE_INTERACTIVE","features":[413]},{"name":"READYSTATE_LOADED","features":[413]},{"name":"READYSTATE_LOADING","features":[413]},{"name":"READYSTATE_UNINITIALIZED","features":[413]},{"name":"REGKIND","features":[413]},{"name":"REGKIND_DEFAULT","features":[413]},{"name":"REGKIND_NONE","features":[413]},{"name":"REGKIND_REGISTER","features":[413]},{"name":"RegisterActiveObject","features":[413]},{"name":"RegisterDragDrop","features":[303,413]},{"name":"RegisterTypeLib","features":[354,413]},{"name":"RegisterTypeLibForUser","features":[354,413]},{"name":"ReleaseStgMedium","features":[303,314,427,413]},{"name":"RevokeActiveObject","features":[413]},{"name":"RevokeDragDrop","features":[303,413]},{"name":"SAFEARRAYUNION","features":[303,354,413]},{"name":"SAFEARR_BRECORD","features":[413]},{"name":"SAFEARR_BSTR","features":[354,413]},{"name":"SAFEARR_DISPATCH","features":[354,413]},{"name":"SAFEARR_HAVEIID","features":[413]},{"name":"SAFEARR_UNKNOWN","features":[413]},{"name":"SAFEARR_VARIANT","features":[303,354,413]},{"name":"SELFREG_E_CLASS","features":[413]},{"name":"SELFREG_E_FIRST","features":[413]},{"name":"SELFREG_E_LAST","features":[413]},{"name":"SELFREG_E_TYPELIB","features":[413]},{"name":"SELFREG_S_FIRST","features":[413]},{"name":"SELFREG_S_LAST","features":[413]},{"name":"SF_BSTR","features":[413]},{"name":"SF_DISPATCH","features":[413]},{"name":"SF_ERROR","features":[413]},{"name":"SF_HAVEIID","features":[413]},{"name":"SF_I1","features":[413]},{"name":"SF_I2","features":[413]},{"name":"SF_I4","features":[413]},{"name":"SF_I8","features":[413]},{"name":"SF_RECORD","features":[413]},{"name":"SF_TYPE","features":[413]},{"name":"SF_UNKNOWN","features":[413]},{"name":"SF_VARIANT","features":[413]},{"name":"SID_GetCaller","features":[413]},{"name":"SID_ProvideRuntimeContext","features":[413]},{"name":"SID_VariantConversion","features":[413]},{"name":"STDOLE2_LCID","features":[413]},{"name":"STDOLE2_MAJORVERNUM","features":[413]},{"name":"STDOLE2_MINORVERNUM","features":[413]},{"name":"STDOLE_LCID","features":[413]},{"name":"STDOLE_MAJORVERNUM","features":[413]},{"name":"STDOLE_MINORVERNUM","features":[413]},{"name":"STDOLE_TLB","features":[413]},{"name":"STDTYPE_TLB","features":[413]},{"name":"SZOLEUI_MSG_ADDCONTROL","features":[413]},{"name":"SZOLEUI_MSG_BROWSE","features":[413]},{"name":"SZOLEUI_MSG_BROWSE_OFN","features":[413]},{"name":"SZOLEUI_MSG_CHANGEICON","features":[413]},{"name":"SZOLEUI_MSG_CHANGESOURCE","features":[413]},{"name":"SZOLEUI_MSG_CLOSEBUSYDIALOG","features":[413]},{"name":"SZOLEUI_MSG_CONVERT","features":[413]},{"name":"SZOLEUI_MSG_ENDDIALOG","features":[413]},{"name":"SZOLEUI_MSG_HELP","features":[413]},{"name":"SafeArrayAccessData","features":[354,413]},{"name":"SafeArrayAddRef","features":[354,413]},{"name":"SafeArrayAllocData","features":[354,413]},{"name":"SafeArrayAllocDescriptor","features":[354,413]},{"name":"SafeArrayAllocDescriptorEx","features":[354,413,378]},{"name":"SafeArrayCopy","features":[354,413]},{"name":"SafeArrayCopyData","features":[354,413]},{"name":"SafeArrayCreate","features":[354,413,378]},{"name":"SafeArrayCreateEx","features":[354,413,378]},{"name":"SafeArrayCreateVector","features":[354,413,378]},{"name":"SafeArrayCreateVectorEx","features":[354,413,378]},{"name":"SafeArrayDestroy","features":[354,413]},{"name":"SafeArrayDestroyData","features":[354,413]},{"name":"SafeArrayDestroyDescriptor","features":[354,413]},{"name":"SafeArrayGetDim","features":[354,413]},{"name":"SafeArrayGetElement","features":[354,413]},{"name":"SafeArrayGetElemsize","features":[354,413]},{"name":"SafeArrayGetIID","features":[354,413]},{"name":"SafeArrayGetLBound","features":[354,413]},{"name":"SafeArrayGetRecordInfo","features":[354,413]},{"name":"SafeArrayGetUBound","features":[354,413]},{"name":"SafeArrayGetVartype","features":[354,413,378]},{"name":"SafeArrayLock","features":[354,413]},{"name":"SafeArrayPtrOfIndex","features":[354,413]},{"name":"SafeArrayPutElement","features":[354,413]},{"name":"SafeArrayRedim","features":[354,413]},{"name":"SafeArrayReleaseData","features":[413]},{"name":"SafeArrayReleaseDescriptor","features":[354,413]},{"name":"SafeArraySetIID","features":[354,413]},{"name":"SafeArraySetRecordInfo","features":[354,413]},{"name":"SafeArrayUnaccessData","features":[354,413]},{"name":"SafeArrayUnlock","features":[354,413]},{"name":"TIFLAGS_EXTENDDISPATCHONLY","features":[413]},{"name":"TYPEFLAGS","features":[413]},{"name":"TYPEFLAG_FAGGREGATABLE","features":[413]},{"name":"TYPEFLAG_FAPPOBJECT","features":[413]},{"name":"TYPEFLAG_FCANCREATE","features":[413]},{"name":"TYPEFLAG_FCONTROL","features":[413]},{"name":"TYPEFLAG_FDISPATCHABLE","features":[413]},{"name":"TYPEFLAG_FDUAL","features":[413]},{"name":"TYPEFLAG_FHIDDEN","features":[413]},{"name":"TYPEFLAG_FLICENSED","features":[413]},{"name":"TYPEFLAG_FNONEXTENSIBLE","features":[413]},{"name":"TYPEFLAG_FOLEAUTOMATION","features":[413]},{"name":"TYPEFLAG_FPREDECLID","features":[413]},{"name":"TYPEFLAG_FPROXY","features":[413]},{"name":"TYPEFLAG_FREPLACEABLE","features":[413]},{"name":"TYPEFLAG_FRESTRICTED","features":[413]},{"name":"TYPEFLAG_FREVERSEBIND","features":[413]},{"name":"UASFLAGS","features":[413]},{"name":"UAS_BLOCKED","features":[413]},{"name":"UAS_MASK","features":[413]},{"name":"UAS_NOPARENTENABLE","features":[413]},{"name":"UAS_NORMAL","features":[413]},{"name":"UDATE","features":[303,413]},{"name":"UI_CONVERT_FLAGS","features":[413]},{"name":"UPDFCACHE_ALL","features":[413]},{"name":"UPDFCACHE_ALLBUTNODATACACHE","features":[413]},{"name":"UPDFCACHE_FLAGS","features":[413]},{"name":"UPDFCACHE_IFBLANK","features":[413]},{"name":"UPDFCACHE_IFBLANKORONSAVECACHE","features":[413]},{"name":"UPDFCACHE_NODATACACHE","features":[413]},{"name":"UPDFCACHE_NORMALCACHE","features":[413]},{"name":"UPDFCACHE_ONLYIFBLANK","features":[413]},{"name":"UPDFCACHE_ONSAVECACHE","features":[413]},{"name":"UPDFCACHE_ONSTOPCACHE","features":[413]},{"name":"USERCLASSTYPE","features":[413]},{"name":"USERCLASSTYPE_APPNAME","features":[413]},{"name":"USERCLASSTYPE_FULL","features":[413]},{"name":"USERCLASSTYPE_SHORT","features":[413]},{"name":"UnRegisterTypeLib","features":[354,413]},{"name":"UnRegisterTypeLibForUser","features":[354,413]},{"name":"VARCMP","features":[413]},{"name":"VARCMP_EQ","features":[413]},{"name":"VARCMP_GT","features":[413]},{"name":"VARCMP_LT","features":[413]},{"name":"VARCMP_NULL","features":[413]},{"name":"VARFORMAT_FIRST_DAY","features":[413]},{"name":"VARFORMAT_FIRST_DAY_FRIDAY","features":[413]},{"name":"VARFORMAT_FIRST_DAY_MONDAY","features":[413]},{"name":"VARFORMAT_FIRST_DAY_SATURDAY","features":[413]},{"name":"VARFORMAT_FIRST_DAY_SUNDAY","features":[413]},{"name":"VARFORMAT_FIRST_DAY_SYSTEMDEFAULT","features":[413]},{"name":"VARFORMAT_FIRST_DAY_THURSDAY","features":[413]},{"name":"VARFORMAT_FIRST_DAY_TUESDAY","features":[413]},{"name":"VARFORMAT_FIRST_DAY_WEDNESDAY","features":[413]},{"name":"VARFORMAT_FIRST_WEEK","features":[413]},{"name":"VARFORMAT_FIRST_WEEK_CONTAINS_JANUARY_FIRST","features":[413]},{"name":"VARFORMAT_FIRST_WEEK_HAS_SEVEN_DAYS","features":[413]},{"name":"VARFORMAT_FIRST_WEEK_LARGER_HALF_IN_CURRENT_YEAR","features":[413]},{"name":"VARFORMAT_FIRST_WEEK_SYSTEMDEFAULT","features":[413]},{"name":"VARFORMAT_GROUP","features":[413]},{"name":"VARFORMAT_GROUP_NOTTHOUSANDS","features":[413]},{"name":"VARFORMAT_GROUP_SYSTEMDEFAULT","features":[413]},{"name":"VARFORMAT_GROUP_THOUSANDS","features":[413]},{"name":"VARFORMAT_LEADING_DIGIT","features":[413]},{"name":"VARFORMAT_LEADING_DIGIT_INCLUDED","features":[413]},{"name":"VARFORMAT_LEADING_DIGIT_NOTINCLUDED","features":[413]},{"name":"VARFORMAT_LEADING_DIGIT_SYSTEMDEFAULT","features":[413]},{"name":"VARFORMAT_NAMED_FORMAT","features":[413]},{"name":"VARFORMAT_NAMED_FORMAT_GENERALDATE","features":[413]},{"name":"VARFORMAT_NAMED_FORMAT_LONGDATE","features":[413]},{"name":"VARFORMAT_NAMED_FORMAT_LONGTIME","features":[413]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTDATE","features":[413]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTTIME","features":[413]},{"name":"VARFORMAT_PARENTHESES","features":[413]},{"name":"VARFORMAT_PARENTHESES_NOTUSED","features":[413]},{"name":"VARFORMAT_PARENTHESES_SYSTEMDEFAULT","features":[413]},{"name":"VARFORMAT_PARENTHESES_USED","features":[413]},{"name":"VAR_CALENDAR_GREGORIAN","features":[413]},{"name":"VAR_CALENDAR_HIJRI","features":[413]},{"name":"VAR_CALENDAR_THAI","features":[413]},{"name":"VAR_DATEVALUEONLY","features":[413]},{"name":"VAR_FORMAT_NOSUBSTITUTE","features":[413]},{"name":"VAR_FOURDIGITYEARS","features":[413]},{"name":"VAR_LOCALBOOL","features":[413]},{"name":"VAR_TIMEVALUEONLY","features":[413]},{"name":"VAR_VALIDDATE","features":[413]},{"name":"VIEWSTATUS","features":[413]},{"name":"VIEWSTATUS_3DSURFACE","features":[413]},{"name":"VIEWSTATUS_DVASPECTOPAQUE","features":[413]},{"name":"VIEWSTATUS_DVASPECTTRANSPARENT","features":[413]},{"name":"VIEWSTATUS_OPAQUE","features":[413]},{"name":"VIEWSTATUS_SOLIDBKGND","features":[413]},{"name":"VIEWSTATUS_SURFACE","features":[413]},{"name":"VIEW_OBJECT_PROPERTIES_FLAGS","features":[413]},{"name":"VPF_DISABLERELATIVE","features":[413]},{"name":"VPF_DISABLESCALE","features":[413]},{"name":"VPF_SELECTRELATIVE","features":[413]},{"name":"VTDATEGRE_MAX","features":[413]},{"name":"VTDATEGRE_MIN","features":[413]},{"name":"VT_BLOB_PROPSET","features":[413]},{"name":"VT_STORED_PROPSET","features":[413]},{"name":"VT_STREAMED_PROPSET","features":[413]},{"name":"VT_VERBOSE_ENUM","features":[413]},{"name":"VarAbs","features":[413]},{"name":"VarAdd","features":[413]},{"name":"VarAnd","features":[413]},{"name":"VarBoolFromCy","features":[303,354,413]},{"name":"VarBoolFromDate","features":[303,413]},{"name":"VarBoolFromDec","features":[303,413]},{"name":"VarBoolFromDisp","features":[303,354,413]},{"name":"VarBoolFromI1","features":[303,413]},{"name":"VarBoolFromI2","features":[303,413]},{"name":"VarBoolFromI4","features":[303,413]},{"name":"VarBoolFromI8","features":[303,413]},{"name":"VarBoolFromR4","features":[303,413]},{"name":"VarBoolFromR8","features":[303,413]},{"name":"VarBoolFromStr","features":[303,413]},{"name":"VarBoolFromUI1","features":[303,413]},{"name":"VarBoolFromUI2","features":[303,413]},{"name":"VarBoolFromUI4","features":[303,413]},{"name":"VarBoolFromUI8","features":[303,413]},{"name":"VarBstrCat","features":[413]},{"name":"VarBstrCmp","features":[413]},{"name":"VarBstrFromBool","features":[303,413]},{"name":"VarBstrFromCy","features":[354,413]},{"name":"VarBstrFromDate","features":[413]},{"name":"VarBstrFromDec","features":[303,413]},{"name":"VarBstrFromDisp","features":[354,413]},{"name":"VarBstrFromI1","features":[413]},{"name":"VarBstrFromI2","features":[413]},{"name":"VarBstrFromI4","features":[413]},{"name":"VarBstrFromI8","features":[413]},{"name":"VarBstrFromR4","features":[413]},{"name":"VarBstrFromR8","features":[413]},{"name":"VarBstrFromUI1","features":[413]},{"name":"VarBstrFromUI2","features":[413]},{"name":"VarBstrFromUI4","features":[413]},{"name":"VarBstrFromUI8","features":[413]},{"name":"VarCat","features":[413]},{"name":"VarCmp","features":[413]},{"name":"VarCyAbs","features":[354,413]},{"name":"VarCyAdd","features":[354,413]},{"name":"VarCyCmp","features":[354,413]},{"name":"VarCyCmpR8","features":[354,413]},{"name":"VarCyFix","features":[354,413]},{"name":"VarCyFromBool","features":[303,354,413]},{"name":"VarCyFromDate","features":[354,413]},{"name":"VarCyFromDec","features":[303,354,413]},{"name":"VarCyFromDisp","features":[354,413]},{"name":"VarCyFromI1","features":[354,413]},{"name":"VarCyFromI2","features":[354,413]},{"name":"VarCyFromI4","features":[354,413]},{"name":"VarCyFromI8","features":[354,413]},{"name":"VarCyFromR4","features":[354,413]},{"name":"VarCyFromR8","features":[354,413]},{"name":"VarCyFromStr","features":[354,413]},{"name":"VarCyFromUI1","features":[354,413]},{"name":"VarCyFromUI2","features":[354,413]},{"name":"VarCyFromUI4","features":[354,413]},{"name":"VarCyFromUI8","features":[354,413]},{"name":"VarCyInt","features":[354,413]},{"name":"VarCyMul","features":[354,413]},{"name":"VarCyMulI4","features":[354,413]},{"name":"VarCyMulI8","features":[354,413]},{"name":"VarCyNeg","features":[354,413]},{"name":"VarCyRound","features":[354,413]},{"name":"VarCySub","features":[354,413]},{"name":"VarDateFromBool","features":[303,413]},{"name":"VarDateFromCy","features":[354,413]},{"name":"VarDateFromDec","features":[303,413]},{"name":"VarDateFromDisp","features":[354,413]},{"name":"VarDateFromI1","features":[413]},{"name":"VarDateFromI2","features":[413]},{"name":"VarDateFromI4","features":[413]},{"name":"VarDateFromI8","features":[413]},{"name":"VarDateFromR4","features":[413]},{"name":"VarDateFromR8","features":[413]},{"name":"VarDateFromStr","features":[413]},{"name":"VarDateFromUI1","features":[413]},{"name":"VarDateFromUI2","features":[413]},{"name":"VarDateFromUI4","features":[413]},{"name":"VarDateFromUI8","features":[413]},{"name":"VarDateFromUdate","features":[303,413]},{"name":"VarDateFromUdateEx","features":[303,413]},{"name":"VarDecAbs","features":[303,413]},{"name":"VarDecAdd","features":[303,413]},{"name":"VarDecCmp","features":[303,413]},{"name":"VarDecCmpR8","features":[303,413]},{"name":"VarDecDiv","features":[303,413]},{"name":"VarDecFix","features":[303,413]},{"name":"VarDecFromBool","features":[303,413]},{"name":"VarDecFromCy","features":[303,354,413]},{"name":"VarDecFromDate","features":[303,413]},{"name":"VarDecFromDisp","features":[303,354,413]},{"name":"VarDecFromI1","features":[303,413]},{"name":"VarDecFromI2","features":[303,413]},{"name":"VarDecFromI4","features":[303,413]},{"name":"VarDecFromI8","features":[303,413]},{"name":"VarDecFromR4","features":[303,413]},{"name":"VarDecFromR8","features":[303,413]},{"name":"VarDecFromStr","features":[303,413]},{"name":"VarDecFromUI1","features":[303,413]},{"name":"VarDecFromUI2","features":[303,413]},{"name":"VarDecFromUI4","features":[303,413]},{"name":"VarDecFromUI8","features":[303,413]},{"name":"VarDecInt","features":[303,413]},{"name":"VarDecMul","features":[303,413]},{"name":"VarDecNeg","features":[303,413]},{"name":"VarDecRound","features":[303,413]},{"name":"VarDecSub","features":[303,413]},{"name":"VarDiv","features":[413]},{"name":"VarEqv","features":[413]},{"name":"VarFix","features":[413]},{"name":"VarFormat","features":[413]},{"name":"VarFormatCurrency","features":[413]},{"name":"VarFormatDateTime","features":[413]},{"name":"VarFormatFromTokens","features":[413]},{"name":"VarFormatNumber","features":[413]},{"name":"VarFormatPercent","features":[413]},{"name":"VarI1FromBool","features":[303,413]},{"name":"VarI1FromCy","features":[354,413]},{"name":"VarI1FromDate","features":[413]},{"name":"VarI1FromDec","features":[303,413]},{"name":"VarI1FromDisp","features":[354,413]},{"name":"VarI1FromI2","features":[413]},{"name":"VarI1FromI4","features":[413]},{"name":"VarI1FromI8","features":[413]},{"name":"VarI1FromR4","features":[413]},{"name":"VarI1FromR8","features":[413]},{"name":"VarI1FromStr","features":[413]},{"name":"VarI1FromUI1","features":[413]},{"name":"VarI1FromUI2","features":[413]},{"name":"VarI1FromUI4","features":[413]},{"name":"VarI1FromUI8","features":[413]},{"name":"VarI2FromBool","features":[303,413]},{"name":"VarI2FromCy","features":[354,413]},{"name":"VarI2FromDate","features":[413]},{"name":"VarI2FromDec","features":[303,413]},{"name":"VarI2FromDisp","features":[354,413]},{"name":"VarI2FromI1","features":[413]},{"name":"VarI2FromI4","features":[413]},{"name":"VarI2FromI8","features":[413]},{"name":"VarI2FromR4","features":[413]},{"name":"VarI2FromR8","features":[413]},{"name":"VarI2FromStr","features":[413]},{"name":"VarI2FromUI1","features":[413]},{"name":"VarI2FromUI2","features":[413]},{"name":"VarI2FromUI4","features":[413]},{"name":"VarI2FromUI8","features":[413]},{"name":"VarI4FromBool","features":[303,413]},{"name":"VarI4FromCy","features":[354,413]},{"name":"VarI4FromDate","features":[413]},{"name":"VarI4FromDec","features":[303,413]},{"name":"VarI4FromDisp","features":[354,413]},{"name":"VarI4FromI1","features":[413]},{"name":"VarI4FromI2","features":[413]},{"name":"VarI4FromI8","features":[413]},{"name":"VarI4FromR4","features":[413]},{"name":"VarI4FromR8","features":[413]},{"name":"VarI4FromStr","features":[413]},{"name":"VarI4FromUI1","features":[413]},{"name":"VarI4FromUI2","features":[413]},{"name":"VarI4FromUI4","features":[413]},{"name":"VarI4FromUI8","features":[413]},{"name":"VarI8FromBool","features":[303,413]},{"name":"VarI8FromCy","features":[354,413]},{"name":"VarI8FromDate","features":[413]},{"name":"VarI8FromDec","features":[303,413]},{"name":"VarI8FromDisp","features":[354,413]},{"name":"VarI8FromI1","features":[413]},{"name":"VarI8FromI2","features":[413]},{"name":"VarI8FromR4","features":[413]},{"name":"VarI8FromR8","features":[413]},{"name":"VarI8FromStr","features":[413]},{"name":"VarI8FromUI1","features":[413]},{"name":"VarI8FromUI2","features":[413]},{"name":"VarI8FromUI4","features":[413]},{"name":"VarI8FromUI8","features":[413]},{"name":"VarIdiv","features":[413]},{"name":"VarImp","features":[413]},{"name":"VarInt","features":[413]},{"name":"VarMod","features":[413]},{"name":"VarMonthName","features":[413]},{"name":"VarMul","features":[413]},{"name":"VarNeg","features":[413]},{"name":"VarNot","features":[413]},{"name":"VarNumFromParseNum","features":[413]},{"name":"VarOr","features":[413]},{"name":"VarParseNumFromStr","features":[413]},{"name":"VarPow","features":[413]},{"name":"VarR4CmpR8","features":[413]},{"name":"VarR4FromBool","features":[303,413]},{"name":"VarR4FromCy","features":[354,413]},{"name":"VarR4FromDate","features":[413]},{"name":"VarR4FromDec","features":[303,413]},{"name":"VarR4FromDisp","features":[354,413]},{"name":"VarR4FromI1","features":[413]},{"name":"VarR4FromI2","features":[413]},{"name":"VarR4FromI4","features":[413]},{"name":"VarR4FromI8","features":[413]},{"name":"VarR4FromR8","features":[413]},{"name":"VarR4FromStr","features":[413]},{"name":"VarR4FromUI1","features":[413]},{"name":"VarR4FromUI2","features":[413]},{"name":"VarR4FromUI4","features":[413]},{"name":"VarR4FromUI8","features":[413]},{"name":"VarR8FromBool","features":[303,413]},{"name":"VarR8FromCy","features":[354,413]},{"name":"VarR8FromDate","features":[413]},{"name":"VarR8FromDec","features":[303,413]},{"name":"VarR8FromDisp","features":[354,413]},{"name":"VarR8FromI1","features":[413]},{"name":"VarR8FromI2","features":[413]},{"name":"VarR8FromI4","features":[413]},{"name":"VarR8FromI8","features":[413]},{"name":"VarR8FromR4","features":[413]},{"name":"VarR8FromStr","features":[413]},{"name":"VarR8FromUI1","features":[413]},{"name":"VarR8FromUI2","features":[413]},{"name":"VarR8FromUI4","features":[413]},{"name":"VarR8FromUI8","features":[413]},{"name":"VarR8Pow","features":[413]},{"name":"VarR8Round","features":[413]},{"name":"VarRound","features":[413]},{"name":"VarSub","features":[413]},{"name":"VarTokenizeFormatString","features":[413]},{"name":"VarUI1FromBool","features":[303,413]},{"name":"VarUI1FromCy","features":[354,413]},{"name":"VarUI1FromDate","features":[413]},{"name":"VarUI1FromDec","features":[303,413]},{"name":"VarUI1FromDisp","features":[354,413]},{"name":"VarUI1FromI1","features":[413]},{"name":"VarUI1FromI2","features":[413]},{"name":"VarUI1FromI4","features":[413]},{"name":"VarUI1FromI8","features":[413]},{"name":"VarUI1FromR4","features":[413]},{"name":"VarUI1FromR8","features":[413]},{"name":"VarUI1FromStr","features":[413]},{"name":"VarUI1FromUI2","features":[413]},{"name":"VarUI1FromUI4","features":[413]},{"name":"VarUI1FromUI8","features":[413]},{"name":"VarUI2FromBool","features":[303,413]},{"name":"VarUI2FromCy","features":[354,413]},{"name":"VarUI2FromDate","features":[413]},{"name":"VarUI2FromDec","features":[303,413]},{"name":"VarUI2FromDisp","features":[354,413]},{"name":"VarUI2FromI1","features":[413]},{"name":"VarUI2FromI2","features":[413]},{"name":"VarUI2FromI4","features":[413]},{"name":"VarUI2FromI8","features":[413]},{"name":"VarUI2FromR4","features":[413]},{"name":"VarUI2FromR8","features":[413]},{"name":"VarUI2FromStr","features":[413]},{"name":"VarUI2FromUI1","features":[413]},{"name":"VarUI2FromUI4","features":[413]},{"name":"VarUI2FromUI8","features":[413]},{"name":"VarUI4FromBool","features":[303,413]},{"name":"VarUI4FromCy","features":[354,413]},{"name":"VarUI4FromDate","features":[413]},{"name":"VarUI4FromDec","features":[303,413]},{"name":"VarUI4FromDisp","features":[354,413]},{"name":"VarUI4FromI1","features":[413]},{"name":"VarUI4FromI2","features":[413]},{"name":"VarUI4FromI4","features":[413]},{"name":"VarUI4FromI8","features":[413]},{"name":"VarUI4FromR4","features":[413]},{"name":"VarUI4FromR8","features":[413]},{"name":"VarUI4FromStr","features":[413]},{"name":"VarUI4FromUI1","features":[413]},{"name":"VarUI4FromUI2","features":[413]},{"name":"VarUI4FromUI8","features":[413]},{"name":"VarUI8FromBool","features":[303,413]},{"name":"VarUI8FromCy","features":[354,413]},{"name":"VarUI8FromDate","features":[413]},{"name":"VarUI8FromDec","features":[303,413]},{"name":"VarUI8FromDisp","features":[354,413]},{"name":"VarUI8FromI1","features":[413]},{"name":"VarUI8FromI2","features":[413]},{"name":"VarUI8FromI8","features":[413]},{"name":"VarUI8FromR4","features":[413]},{"name":"VarUI8FromR8","features":[413]},{"name":"VarUI8FromStr","features":[413]},{"name":"VarUI8FromUI1","features":[413]},{"name":"VarUI8FromUI2","features":[413]},{"name":"VarUI8FromUI4","features":[413]},{"name":"VarUdateFromDate","features":[303,413]},{"name":"VarWeekdayName","features":[413]},{"name":"VarXor","features":[413]},{"name":"VectorFromBstr","features":[354,413]},{"name":"WIN32","features":[413]},{"name":"WPCSETTING","features":[413]},{"name":"WPCSETTING_FILEDOWNLOAD_BLOCKED","features":[413]},{"name":"WPCSETTING_LOGGING_ENABLED","features":[413]},{"name":"XFORMCOORDS","features":[413]},{"name":"XFORMCOORDS_CONTAINERTOHIMETRIC","features":[413]},{"name":"XFORMCOORDS_EVENTCOMPAT","features":[413]},{"name":"XFORMCOORDS_HIMETRICTOCONTAINER","features":[413]},{"name":"XFORMCOORDS_POSITION","features":[413]},{"name":"XFORMCOORDS_SIZE","features":[413]},{"name":"_wireBRECORD","features":[413]},{"name":"_wireSAFEARRAY","features":[303,354,413]},{"name":"_wireVARIANT","features":[303,354,413]},{"name":"fdexEnumAll","features":[413]},{"name":"fdexEnumDefault","features":[413]},{"name":"fdexNameCaseInsensitive","features":[413]},{"name":"fdexNameCaseSensitive","features":[413]},{"name":"fdexNameEnsure","features":[413]},{"name":"fdexNameImplicit","features":[413]},{"name":"fdexNameInternal","features":[413]},{"name":"fdexNameNoDynamicProperties","features":[413]},{"name":"fdexPropCanCall","features":[413]},{"name":"fdexPropCanConstruct","features":[413]},{"name":"fdexPropCanGet","features":[413]},{"name":"fdexPropCanPut","features":[413]},{"name":"fdexPropCanPutRef","features":[413]},{"name":"fdexPropCanSourceEvents","features":[413]},{"name":"fdexPropCannotCall","features":[413]},{"name":"fdexPropCannotConstruct","features":[413]},{"name":"fdexPropCannotGet","features":[413]},{"name":"fdexPropCannotPut","features":[413]},{"name":"fdexPropCannotPutRef","features":[413]},{"name":"fdexPropCannotSourceEvents","features":[413]},{"name":"fdexPropDynamicType","features":[413]},{"name":"fdexPropNoSideEffects","features":[413]},{"name":"triChecked","features":[413]},{"name":"triGray","features":[413]},{"name":"triUnchecked","features":[413]}],"586":[{"name":"ARRAY_SEP_CHAR","features":[568]},{"name":"FACILITY_WPC","features":[568]},{"name":"IWPCGamesSettings","features":[568]},{"name":"IWPCProviderConfig","features":[568]},{"name":"IWPCProviderState","features":[568]},{"name":"IWPCProviderSupport","features":[568]},{"name":"IWPCSettings","features":[568]},{"name":"IWPCWebSettings","features":[568]},{"name":"IWindowsParentalControls","features":[568]},{"name":"IWindowsParentalControlsCore","features":[568]},{"name":"MSG_Event_AppBlocked","features":[568]},{"name":"MSG_Event_AppOverride","features":[568]},{"name":"MSG_Event_Application","features":[568]},{"name":"MSG_Event_ComputerUsage","features":[568]},{"name":"MSG_Event_ContentUsage","features":[568]},{"name":"MSG_Event_Custom","features":[568]},{"name":"MSG_Event_EmailContact","features":[568]},{"name":"MSG_Event_EmailReceived","features":[568]},{"name":"MSG_Event_EmailSent","features":[568]},{"name":"MSG_Event_FileDownload","features":[568]},{"name":"MSG_Event_GameStart","features":[568]},{"name":"MSG_Event_IMContact","features":[568]},{"name":"MSG_Event_IMFeature","features":[568]},{"name":"MSG_Event_IMInvitation","features":[568]},{"name":"MSG_Event_IMJoin","features":[568]},{"name":"MSG_Event_IMLeave","features":[568]},{"name":"MSG_Event_MediaPlayback","features":[568]},{"name":"MSG_Event_SettingChange","features":[568]},{"name":"MSG_Event_UrlVisit","features":[568]},{"name":"MSG_Event_WebOverride","features":[568]},{"name":"MSG_Event_WebsiteVisit","features":[568]},{"name":"MSG_Keyword_ThirdParty","features":[568]},{"name":"MSG_Keyword_WPC","features":[568]},{"name":"MSG_Opcode_Launch","features":[568]},{"name":"MSG_Opcode_Locate","features":[568]},{"name":"MSG_Opcode_Modify","features":[568]},{"name":"MSG_Opcode_System","features":[568]},{"name":"MSG_Opcode_Web","features":[568]},{"name":"MSG_Publisher_Name","features":[568]},{"name":"MSG_Task_AppBlocked","features":[568]},{"name":"MSG_Task_AppOverride","features":[568]},{"name":"MSG_Task_Application","features":[568]},{"name":"MSG_Task_ComputerUsage","features":[568]},{"name":"MSG_Task_ContentUsage","features":[568]},{"name":"MSG_Task_Custom","features":[568]},{"name":"MSG_Task_EmailContact","features":[568]},{"name":"MSG_Task_EmailReceived","features":[568]},{"name":"MSG_Task_EmailSent","features":[568]},{"name":"MSG_Task_FileDownload","features":[568]},{"name":"MSG_Task_GameStart","features":[568]},{"name":"MSG_Task_IMContact","features":[568]},{"name":"MSG_Task_IMFeature","features":[568]},{"name":"MSG_Task_IMInvitation","features":[568]},{"name":"MSG_Task_IMJoin","features":[568]},{"name":"MSG_Task_IMLeave","features":[568]},{"name":"MSG_Task_MediaPlayback","features":[568]},{"name":"MSG_Task_SettingChange","features":[568]},{"name":"MSG_Task_UrlVisit","features":[568]},{"name":"MSG_Task_WebOverride","features":[568]},{"name":"MSG_Task_WebsiteVisit","features":[568]},{"name":"WPCCHANNEL","features":[568]},{"name":"WPCEVENT_APPLICATION_value","features":[568]},{"name":"WPCEVENT_APPOVERRIDE_value","features":[568]},{"name":"WPCEVENT_COMPUTERUSAGE_value","features":[568]},{"name":"WPCEVENT_CONTENTUSAGE_value","features":[568]},{"name":"WPCEVENT_CUSTOM_value","features":[568]},{"name":"WPCEVENT_EMAIL_CONTACT_value","features":[568]},{"name":"WPCEVENT_EMAIL_RECEIVED_value","features":[568]},{"name":"WPCEVENT_EMAIL_SENT_value","features":[568]},{"name":"WPCEVENT_GAME_START_value","features":[568]},{"name":"WPCEVENT_IM_CONTACT_value","features":[568]},{"name":"WPCEVENT_IM_FEATURE_value","features":[568]},{"name":"WPCEVENT_IM_INVITATION_value","features":[568]},{"name":"WPCEVENT_IM_JOIN_value","features":[568]},{"name":"WPCEVENT_IM_LEAVE_value","features":[568]},{"name":"WPCEVENT_MEDIA_PLAYBACK_value","features":[568]},{"name":"WPCEVENT_SYSTEM_APPBLOCKED_value","features":[568]},{"name":"WPCEVENT_SYS_SETTINGCHANGE_value","features":[568]},{"name":"WPCEVENT_WEBOVERRIDE_value","features":[568]},{"name":"WPCEVENT_WEB_FILEDOWNLOAD_value","features":[568]},{"name":"WPCEVENT_WEB_URLVISIT_value","features":[568]},{"name":"WPCEVENT_WEB_WEBSITEVISIT_value","features":[568]},{"name":"WPCFLAG_APPLICATION","features":[568]},{"name":"WPCFLAG_APPS_RESTRICTED","features":[568]},{"name":"WPCFLAG_GAMES_BLOCKED","features":[568]},{"name":"WPCFLAG_GAMES_RESTRICTED","features":[568]},{"name":"WPCFLAG_HOURS_RESTRICTED","features":[568]},{"name":"WPCFLAG_IM_FEATURE","features":[568]},{"name":"WPCFLAG_IM_FEATURE_ALL","features":[568]},{"name":"WPCFLAG_IM_FEATURE_AUDIO","features":[568]},{"name":"WPCFLAG_IM_FEATURE_FILESWAP","features":[568]},{"name":"WPCFLAG_IM_FEATURE_GAME","features":[568]},{"name":"WPCFLAG_IM_FEATURE_NONE","features":[568]},{"name":"WPCFLAG_IM_FEATURE_SENDING","features":[568]},{"name":"WPCFLAG_IM_FEATURE_SMS","features":[568]},{"name":"WPCFLAG_IM_FEATURE_URLSWAP","features":[568]},{"name":"WPCFLAG_IM_FEATURE_VIDEO","features":[568]},{"name":"WPCFLAG_IM_LEAVE","features":[568]},{"name":"WPCFLAG_IM_LEAVE_CONVERSATION_END","features":[568]},{"name":"WPCFLAG_IM_LEAVE_FORCED","features":[568]},{"name":"WPCFLAG_IM_LEAVE_NORMAL","features":[568]},{"name":"WPCFLAG_ISBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_ATTACHMENTBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_BADPASS","features":[568]},{"name":"WPCFLAG_ISBLOCKED_CATEGORYBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_CATEGORYNOTINLIST","features":[568]},{"name":"WPCFLAG_ISBLOCKED_CONTACTBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_DESCRIPTORBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_DOWNLOADBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_EMAILBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_EXPLICITBLOCK","features":[568]},{"name":"WPCFLAG_ISBLOCKED_FEATUREBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_GAMESBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_IMBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_INTERNALERROR","features":[568]},{"name":"WPCFLAG_ISBLOCKED_MAXHOURS","features":[568]},{"name":"WPCFLAG_ISBLOCKED_MEDIAPLAYBACKBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_NOACCESS","features":[568]},{"name":"WPCFLAG_ISBLOCKED_NOTBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_NOTEXPLICITLYALLOWED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_NOTINLIST","features":[568]},{"name":"WPCFLAG_ISBLOCKED_NOTKIDS","features":[568]},{"name":"WPCFLAG_ISBLOCKED_RATINGBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_RECEIVERBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_SENDERBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_SETTINGSCHANGEBLOCKED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_SPECHOURS","features":[568]},{"name":"WPCFLAG_ISBLOCKED_UNRATED","features":[568]},{"name":"WPCFLAG_ISBLOCKED_WEBBLOCKED","features":[568]},{"name":"WPCFLAG_LOGGING_REQUIRED","features":[568]},{"name":"WPCFLAG_LOGOFF_TYPE","features":[568]},{"name":"WPCFLAG_LOGOFF_TYPE_FORCEDFUS","features":[568]},{"name":"WPCFLAG_LOGOFF_TYPE_FUS","features":[568]},{"name":"WPCFLAG_LOGOFF_TYPE_LOGOUT","features":[568]},{"name":"WPCFLAG_LOGOFF_TYPE_RESTART","features":[568]},{"name":"WPCFLAG_LOGOFF_TYPE_SHUTDOWN","features":[568]},{"name":"WPCFLAG_NO_RESTRICTION","features":[568]},{"name":"WPCFLAG_OVERRIDE","features":[568]},{"name":"WPCFLAG_RESTRICTION","features":[568]},{"name":"WPCFLAG_TIME_ALLOWANCE_RESTRICTED","features":[568]},{"name":"WPCFLAG_VISIBILITY","features":[568]},{"name":"WPCFLAG_WEB_FILTERED","features":[568]},{"name":"WPCFLAG_WEB_SETTING","features":[568]},{"name":"WPCFLAG_WEB_SETTING_DOWNLOADSBLOCKED","features":[568]},{"name":"WPCFLAG_WEB_SETTING_NOTBLOCKED","features":[568]},{"name":"WPCFLAG_WPC_HIDDEN","features":[568]},{"name":"WPCFLAG_WPC_VISIBLE","features":[568]},{"name":"WPCPROV","features":[568]},{"name":"WPCPROV_KEYWORD_ThirdParty","features":[568]},{"name":"WPCPROV_KEYWORD_WPC","features":[568]},{"name":"WPCPROV_TASK_AppBlocked","features":[568]},{"name":"WPCPROV_TASK_AppOverride","features":[568]},{"name":"WPCPROV_TASK_Application","features":[568]},{"name":"WPCPROV_TASK_ComputerUsage","features":[568]},{"name":"WPCPROV_TASK_ContentUsage","features":[568]},{"name":"WPCPROV_TASK_Custom","features":[568]},{"name":"WPCPROV_TASK_EmailContact","features":[568]},{"name":"WPCPROV_TASK_EmailReceived","features":[568]},{"name":"WPCPROV_TASK_EmailSent","features":[568]},{"name":"WPCPROV_TASK_FileDownload","features":[568]},{"name":"WPCPROV_TASK_GameStart","features":[568]},{"name":"WPCPROV_TASK_IMContact","features":[568]},{"name":"WPCPROV_TASK_IMFeature","features":[568]},{"name":"WPCPROV_TASK_IMInvitation","features":[568]},{"name":"WPCPROV_TASK_IMJoin","features":[568]},{"name":"WPCPROV_TASK_IMLeave","features":[568]},{"name":"WPCPROV_TASK_MediaPlayback","features":[568]},{"name":"WPCPROV_TASK_SettingChange","features":[568]},{"name":"WPCPROV_TASK_UrlVisit","features":[568]},{"name":"WPCPROV_TASK_WebOverride","features":[568]},{"name":"WPCPROV_TASK_WebsiteVisit","features":[568]},{"name":"WPC_APP_LAUNCH","features":[568]},{"name":"WPC_ARGS_APPLICATIONEVENT","features":[568]},{"name":"WPC_ARGS_APPLICATIONEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_APPLICATIONEVENT_CREATIONTIME","features":[568]},{"name":"WPC_ARGS_APPLICATIONEVENT_DECISION","features":[568]},{"name":"WPC_ARGS_APPLICATIONEVENT_PROCESSID","features":[568]},{"name":"WPC_ARGS_APPLICATIONEVENT_SERIALIZEDAPPLICATION","features":[568]},{"name":"WPC_ARGS_APPLICATIONEVENT_TIMEUSED","features":[568]},{"name":"WPC_ARGS_APPOVERRIDEEVENT","features":[568]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_PATH","features":[568]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_REASON","features":[568]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_USERID","features":[568]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT","features":[568]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT_ID","features":[568]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT_TIMEUSED","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CATEGORY","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CONTENTPROVIDERID","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CONTENTPROVIDERTITLE","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_DECISION","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_ID","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_RATINGS","features":[568]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_TITLE","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_ACCOUNTNAME","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_CONVID","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_REASON","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_RECIPCOUNT","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_RECIPIENT","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_REQUESTINGIP","features":[568]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_SENDER","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_ACCOUNTNAME","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_CONVID","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_JOININGIP","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_JOININGUSER","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_MEMBER","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_MEMBERCOUNT","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_REASON","features":[568]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_SENDER","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_ACCOUNTNAME","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_CONVID","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_FLAGS","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_LEAVINGIP","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_LEAVINGUSER","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_MEMBER","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_MEMBERCOUNT","features":[568]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_REASON","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_BLOCKED","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_EVENT","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_PUBLISHER","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_REASON","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_VALUE1","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_VALUE2","features":[568]},{"name":"WPC_ARGS_CUSTOMEVENT_VALUE3","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_EMAILACCOUNT","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_NEWID","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_NEWNAME","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_OLDID","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_OLDNAME","features":[568]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_REASON","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_ATTACHCOUNT","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_ATTACHMENTNAME","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_EMAILACCOUNT","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_REASON","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_RECEIVEDTIME","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_RECIPCOUNT","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_RECIPIENT","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_SENDER","features":[568]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_SUBJECT","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_ATTACHCOUNT","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_ATTACHMENTNAME","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_EMAILACCOUNT","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_REASON","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_RECIPCOUNT","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_RECIPIENT","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_SENDER","features":[568]},{"name":"WPC_ARGS_EMAILSENTEVENT_SUBJECT","features":[568]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT","features":[568]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_BLOCKED","features":[568]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_PATH","features":[568]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_URL","features":[568]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_VERSION","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_APPID","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_DESCCOUNT","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_DESCRIPTOR","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_INSTANCEID","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_PATH","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_PID","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_RATING","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_RATINGSYSTEM","features":[568]},{"name":"WPC_ARGS_GAMESTARTEVENT_REASON","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_ACCOUNTNAME","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_NEWID","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_NEWNAME","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_OLDID","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_OLDNAME","features":[568]},{"name":"WPC_ARGS_IMCONTACTEVENT_REASON","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_ACCOUNTNAME","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_CONVID","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_DATA","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_MEDIATYPE","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_REASON","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_RECIPCOUNT","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_RECIPIENT","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_SENDER","features":[568]},{"name":"WPC_ARGS_IMFEATUREEVENT_SENDERIP","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_ALBUM","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_EXPLICIT","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_MEDIATYPE","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_PATH","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_PML","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_REASON","features":[568]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_TITLE","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_ALBUM","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_APPVERSION","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_EXPLICIT","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_MEDIATYPE","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_PATH","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_PML","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_REASON","features":[568]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_TITLE","features":[568]},{"name":"WPC_ARGS_SAFERAPPBLOCKED","features":[568]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_CARGS","features":[568]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_PATH","features":[568]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_RULEID","features":[568]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_TIMESTAMP","features":[568]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_USERID","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_CLASS","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_NEWVAL","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_OLDVAL","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_OPTIONAL","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_OWNER","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_REASON","features":[568]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_SETTING","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_APPNAME","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_CATCOUNT","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_CATEGORY","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_RATINGSYSTEMID","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_REASON","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_URL","features":[568]},{"name":"WPC_ARGS_URLVISITEVENT_VERSION","features":[568]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT","features":[568]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_REASON","features":[568]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_URL","features":[568]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_USERID","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_BLOCKEDCATEGORIES","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_CARGS","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_CATEGORIES","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_CONTENTTYPE","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_DECISION","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_REFERRER","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_SERIALIZEDAPPLICATION","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_TELEMETRY","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_TITLE","features":[568]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_URL","features":[568]},{"name":"WPC_MEDIA_EXPLICIT","features":[568]},{"name":"WPC_MEDIA_EXPLICIT_FALSE","features":[568]},{"name":"WPC_MEDIA_EXPLICIT_TRUE","features":[568]},{"name":"WPC_MEDIA_EXPLICIT_UNKNOWN","features":[568]},{"name":"WPC_MEDIA_TYPE","features":[568]},{"name":"WPC_MEDIA_TYPE_AUDIO_FILE","features":[568]},{"name":"WPC_MEDIA_TYPE_CD_AUDIO","features":[568]},{"name":"WPC_MEDIA_TYPE_DVD","features":[568]},{"name":"WPC_MEDIA_TYPE_MAX","features":[568]},{"name":"WPC_MEDIA_TYPE_OTHER","features":[568]},{"name":"WPC_MEDIA_TYPE_PICTURE_FILE","features":[568]},{"name":"WPC_MEDIA_TYPE_RECORDED_TV","features":[568]},{"name":"WPC_MEDIA_TYPE_VIDEO_FILE","features":[568]},{"name":"WPC_SETTINGS","features":[568]},{"name":"WPC_SETTINGS_ALLOW_BLOCK","features":[568]},{"name":"WPC_SETTINGS_GAME_ALLOW_UNRATED","features":[568]},{"name":"WPC_SETTINGS_GAME_BLOCKED","features":[568]},{"name":"WPC_SETTINGS_GAME_DENIED_DESCRIPTORS","features":[568]},{"name":"WPC_SETTINGS_GAME_MAX_ALLOWED","features":[568]},{"name":"WPC_SETTINGS_GAME_RESTRICTED","features":[568]},{"name":"WPC_SETTINGS_LOCATE","features":[568]},{"name":"WPC_SETTINGS_MODIFY","features":[568]},{"name":"WPC_SETTINGS_RATING_SYSTEM_PATH","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_CURRENT_RATING_SYSTEM","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_FILTER_ID","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_FILTER_NAME","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_HTTP_EXEMPTION_LIST","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_LAST_LOG_VIEW","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_LOCALE","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_LOG_VIEW_REMINDER_INTERVAL","features":[568]},{"name":"WPC_SETTINGS_SYSTEM_URL_EXEMPTION_LIST","features":[568]},{"name":"WPC_SETTINGS_USER_APP_RESTRICTIONS","features":[568]},{"name":"WPC_SETTINGS_USER_HOURLY_RESTRICTIONS","features":[568]},{"name":"WPC_SETTINGS_USER_LOGGING_REQUIRED","features":[568]},{"name":"WPC_SETTINGS_USER_LOGON_HOURS","features":[568]},{"name":"WPC_SETTINGS_USER_OVERRRIDE_REQUESTS","features":[568]},{"name":"WPC_SETTINGS_USER_TIME_ALLOWANCE","features":[568]},{"name":"WPC_SETTINGS_USER_TIME_ALLOWANCE_RESTRICTIONS","features":[568]},{"name":"WPC_SETTINGS_USER_WPC_ENABLED","features":[568]},{"name":"WPC_SETTINGS_WEB_BLOCKED_CATEGORY_LIST","features":[568]},{"name":"WPC_SETTINGS_WEB_BLOCK_UNRATED","features":[568]},{"name":"WPC_SETTINGS_WEB_DOWNLOAD_BLOCKED","features":[568]},{"name":"WPC_SETTINGS_WEB_FILTER_LEVEL","features":[568]},{"name":"WPC_SETTINGS_WEB_FILTER_ON","features":[568]},{"name":"WPC_SETTINGS_WPC_ENABLED","features":[568]},{"name":"WPC_SETTINGS_WPC_EXTENSION_DISABLEDIMAGE_PATH","features":[568]},{"name":"WPC_SETTINGS_WPC_EXTENSION_IMAGE_PATH","features":[568]},{"name":"WPC_SETTINGS_WPC_EXTENSION_NAME","features":[568]},{"name":"WPC_SETTINGS_WPC_EXTENSION_PATH","features":[568]},{"name":"WPC_SETTINGS_WPC_EXTENSION_SILO","features":[568]},{"name":"WPC_SETTINGS_WPC_EXTENSION_SUB_TITLE","features":[568]},{"name":"WPC_SETTINGS_WPC_LOGGING_REQUIRED","features":[568]},{"name":"WPC_SETTINGS_WPC_PROVIDER_CURRENT","features":[568]},{"name":"WPC_SETTING_COUNT","features":[568]},{"name":"WPC_SYSTEM","features":[568]},{"name":"WPC_WEB","features":[568]},{"name":"WindowsParentalControls","features":[568]},{"name":"WpcProviderSupport","features":[568]},{"name":"WpcSettingsProvider","features":[568]}],"587":[{"name":"CYPHER_BLOCK","features":[477]},{"name":"ENCRYPTED_LM_OWF_PASSWORD","features":[477]},{"name":"LM_OWF_PASSWORD","features":[477]},{"name":"MSChapSrvChangePassword","features":[303,477]},{"name":"MSChapSrvChangePassword2","features":[303,477]},{"name":"SAMPR_ENCRYPTED_USER_PASSWORD","features":[477]}],"588":[{"name":"AppearPropPage","features":[569]},{"name":"AutoPathFormat","features":[569]},{"name":"BackupPerfRegistryToFileW","features":[569]},{"name":"BootTraceSession","features":[569]},{"name":"BootTraceSessionCollection","features":[569]},{"name":"ClockType","features":[569]},{"name":"CommitMode","features":[569]},{"name":"CounterItem","features":[569]},{"name":"CounterItem2","features":[569]},{"name":"CounterPathCallBack","features":[569]},{"name":"CounterPropPage","features":[569]},{"name":"Counters","features":[569]},{"name":"DATA_SOURCE_REGISTRY","features":[569]},{"name":"DATA_SOURCE_WBEM","features":[569]},{"name":"DICounterItem","features":[354,569]},{"name":"DIID_DICounterItem","features":[569]},{"name":"DIID_DILogFileItem","features":[569]},{"name":"DIID_DISystemMonitor","features":[569]},{"name":"DIID_DISystemMonitorEvents","features":[569]},{"name":"DIID_DISystemMonitorInternal","features":[569]},{"name":"DILogFileItem","features":[354,569]},{"name":"DISystemMonitor","features":[354,569]},{"name":"DISystemMonitorEvents","features":[354,569]},{"name":"DISystemMonitorInternal","features":[354,569]},{"name":"DataCollectorSet","features":[569]},{"name":"DataCollectorSetCollection","features":[569]},{"name":"DataCollectorSetStatus","features":[569]},{"name":"DataCollectorType","features":[569]},{"name":"DataManagerSteps","features":[569]},{"name":"DataSourceTypeConstants","features":[569]},{"name":"DisplayTypeConstants","features":[569]},{"name":"FileFormat","features":[569]},{"name":"FolderActionSteps","features":[569]},{"name":"GeneralPropPage","features":[569]},{"name":"GraphPropPage","features":[569]},{"name":"H_WBEM_DATASOURCE","features":[569]},{"name":"IAlertDataCollector","features":[354,569]},{"name":"IApiTracingDataCollector","features":[354,569]},{"name":"IConfigurationDataCollector","features":[354,569]},{"name":"ICounterItem","features":[569]},{"name":"ICounterItem2","features":[569]},{"name":"ICounters","features":[354,569]},{"name":"IDataCollector","features":[354,569]},{"name":"IDataCollectorCollection","features":[354,569]},{"name":"IDataCollectorSet","features":[354,569]},{"name":"IDataCollectorSetCollection","features":[354,569]},{"name":"IDataManager","features":[354,569]},{"name":"IFolderAction","features":[354,569]},{"name":"IFolderActionCollection","features":[354,569]},{"name":"ILogFileItem","features":[569]},{"name":"ILogFiles","features":[354,569]},{"name":"IPerformanceCounterDataCollector","features":[354,569]},{"name":"ISchedule","features":[354,569]},{"name":"IScheduleCollection","features":[354,569]},{"name":"ISystemMonitor","features":[569]},{"name":"ISystemMonitor2","features":[569]},{"name":"ISystemMonitorEvents","features":[569]},{"name":"ITraceDataCollector","features":[354,569]},{"name":"ITraceDataProvider","features":[354,569]},{"name":"ITraceDataProviderCollection","features":[354,569]},{"name":"IValueMap","features":[354,569]},{"name":"IValueMapItem","features":[354,569]},{"name":"InstallPerfDllA","features":[569]},{"name":"InstallPerfDllW","features":[569]},{"name":"LIBID_SystemMonitor","features":[569]},{"name":"LegacyDataCollectorSet","features":[569]},{"name":"LegacyDataCollectorSetCollection","features":[569]},{"name":"LegacyTraceSession","features":[569]},{"name":"LegacyTraceSessionCollection","features":[569]},{"name":"LoadPerfCounterTextStringsA","features":[303,569]},{"name":"LoadPerfCounterTextStringsW","features":[303,569]},{"name":"LogFileItem","features":[569]},{"name":"LogFiles","features":[569]},{"name":"MAX_COUNTER_PATH","features":[569]},{"name":"MAX_PERF_OBJECTS_IN_QUERY_FUNCTION","features":[569]},{"name":"PDH_ACCESS_DENIED","features":[569]},{"name":"PDH_ASYNC_QUERY_TIMEOUT","features":[569]},{"name":"PDH_BINARY_LOG_CORRUPT","features":[569]},{"name":"PDH_BROWSE_DLG_CONFIG_A","features":[303,569]},{"name":"PDH_BROWSE_DLG_CONFIG_HA","features":[303,569]},{"name":"PDH_BROWSE_DLG_CONFIG_HW","features":[303,569]},{"name":"PDH_BROWSE_DLG_CONFIG_W","features":[303,569]},{"name":"PDH_CALC_NEGATIVE_DENOMINATOR","features":[569]},{"name":"PDH_CALC_NEGATIVE_TIMEBASE","features":[569]},{"name":"PDH_CALC_NEGATIVE_VALUE","features":[569]},{"name":"PDH_CANNOT_CONNECT_MACHINE","features":[569]},{"name":"PDH_CANNOT_CONNECT_WMI_SERVER","features":[569]},{"name":"PDH_CANNOT_READ_NAME_STRINGS","features":[569]},{"name":"PDH_CANNOT_SET_DEFAULT_REALTIME_DATASOURCE","features":[569]},{"name":"PDH_COUNTER_ALREADY_IN_QUERY","features":[569]},{"name":"PDH_COUNTER_INFO_A","features":[569]},{"name":"PDH_COUNTER_INFO_W","features":[569]},{"name":"PDH_COUNTER_PATH_ELEMENTS_A","features":[569]},{"name":"PDH_COUNTER_PATH_ELEMENTS_W","features":[569]},{"name":"PDH_CSTATUS_BAD_COUNTERNAME","features":[569]},{"name":"PDH_CSTATUS_INVALID_DATA","features":[569]},{"name":"PDH_CSTATUS_ITEM_NOT_VALIDATED","features":[569]},{"name":"PDH_CSTATUS_NEW_DATA","features":[569]},{"name":"PDH_CSTATUS_NO_COUNTER","features":[569]},{"name":"PDH_CSTATUS_NO_COUNTERNAME","features":[569]},{"name":"PDH_CSTATUS_NO_INSTANCE","features":[569]},{"name":"PDH_CSTATUS_NO_MACHINE","features":[569]},{"name":"PDH_CSTATUS_NO_OBJECT","features":[569]},{"name":"PDH_CSTATUS_VALID_DATA","features":[569]},{"name":"PDH_CVERSION_WIN50","features":[569]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_A","features":[569]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_W","features":[569]},{"name":"PDH_DATA_SOURCE_IS_LOG_FILE","features":[569]},{"name":"PDH_DATA_SOURCE_IS_REAL_TIME","features":[569]},{"name":"PDH_DIALOG_CANCELLED","features":[569]},{"name":"PDH_DLL_VERSION","features":[569]},{"name":"PDH_END_OF_LOG_FILE","features":[569]},{"name":"PDH_ENTRY_NOT_IN_LOG_FILE","features":[569]},{"name":"PDH_FILE_ALREADY_EXISTS","features":[569]},{"name":"PDH_FILE_NOT_FOUND","features":[569]},{"name":"PDH_FLAGS_FILE_BROWSER_ONLY","features":[569]},{"name":"PDH_FLAGS_NONE","features":[569]},{"name":"PDH_FMT","features":[569]},{"name":"PDH_FMT_COUNTERVALUE","features":[569]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_A","features":[569]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_W","features":[569]},{"name":"PDH_FMT_DOUBLE","features":[569]},{"name":"PDH_FMT_LARGE","features":[569]},{"name":"PDH_FMT_LONG","features":[569]},{"name":"PDH_FUNCTION_NOT_FOUND","features":[569]},{"name":"PDH_INCORRECT_APPEND_TIME","features":[569]},{"name":"PDH_INSUFFICIENT_BUFFER","features":[569]},{"name":"PDH_INVALID_ARGUMENT","features":[569]},{"name":"PDH_INVALID_BUFFER","features":[569]},{"name":"PDH_INVALID_DATA","features":[569]},{"name":"PDH_INVALID_DATASOURCE","features":[569]},{"name":"PDH_INVALID_HANDLE","features":[569]},{"name":"PDH_INVALID_INSTANCE","features":[569]},{"name":"PDH_INVALID_PATH","features":[569]},{"name":"PDH_INVALID_SQLDB","features":[569]},{"name":"PDH_INVALID_SQL_LOG_FORMAT","features":[569]},{"name":"PDH_LOG","features":[569]},{"name":"PDH_LOGSVC_NOT_OPENED","features":[569]},{"name":"PDH_LOGSVC_QUERY_NOT_FOUND","features":[569]},{"name":"PDH_LOG_FILE_CREATE_ERROR","features":[569]},{"name":"PDH_LOG_FILE_OPEN_ERROR","features":[569]},{"name":"PDH_LOG_FILE_TOO_SMALL","features":[569]},{"name":"PDH_LOG_READ_ACCESS","features":[569]},{"name":"PDH_LOG_SAMPLE_TOO_SMALL","features":[569]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_A","features":[303,569]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_W","features":[303,569]},{"name":"PDH_LOG_TYPE","features":[569]},{"name":"PDH_LOG_TYPE_BINARY","features":[569]},{"name":"PDH_LOG_TYPE_CSV","features":[569]},{"name":"PDH_LOG_TYPE_NOT_FOUND","features":[569]},{"name":"PDH_LOG_TYPE_PERFMON","features":[569]},{"name":"PDH_LOG_TYPE_RETIRED_BIN","features":[569]},{"name":"PDH_LOG_TYPE_SQL","features":[569]},{"name":"PDH_LOG_TYPE_TRACE_GENERIC","features":[569]},{"name":"PDH_LOG_TYPE_TRACE_KERNEL","features":[569]},{"name":"PDH_LOG_TYPE_TSV","features":[569]},{"name":"PDH_LOG_TYPE_UNDEFINED","features":[569]},{"name":"PDH_LOG_UPDATE_ACCESS","features":[569]},{"name":"PDH_LOG_WRITE_ACCESS","features":[569]},{"name":"PDH_MAX_COUNTER_NAME","features":[569]},{"name":"PDH_MAX_COUNTER_PATH","features":[569]},{"name":"PDH_MAX_DATASOURCE_PATH","features":[569]},{"name":"PDH_MAX_INSTANCE_NAME","features":[569]},{"name":"PDH_MAX_SCALE","features":[569]},{"name":"PDH_MEMORY_ALLOCATION_FAILURE","features":[569]},{"name":"PDH_MIN_SCALE","features":[569]},{"name":"PDH_MORE_DATA","features":[569]},{"name":"PDH_NOEXPANDCOUNTERS","features":[569]},{"name":"PDH_NOEXPANDINSTANCES","features":[569]},{"name":"PDH_NOT_IMPLEMENTED","features":[569]},{"name":"PDH_NO_COUNTERS","features":[569]},{"name":"PDH_NO_DATA","features":[569]},{"name":"PDH_NO_DIALOG_DATA","features":[569]},{"name":"PDH_NO_MORE_DATA","features":[569]},{"name":"PDH_OS_EARLIER_VERSION","features":[569]},{"name":"PDH_OS_LATER_VERSION","features":[569]},{"name":"PDH_PATH_FLAGS","features":[569]},{"name":"PDH_PATH_WBEM_INPUT","features":[569]},{"name":"PDH_PATH_WBEM_NONE","features":[569]},{"name":"PDH_PATH_WBEM_RESULT","features":[569]},{"name":"PDH_PLA_COLLECTION_ALREADY_RUNNING","features":[569]},{"name":"PDH_PLA_COLLECTION_NOT_FOUND","features":[569]},{"name":"PDH_PLA_ERROR_ALREADY_EXISTS","features":[569]},{"name":"PDH_PLA_ERROR_FILEPATH","features":[569]},{"name":"PDH_PLA_ERROR_NAME_TOO_LONG","features":[569]},{"name":"PDH_PLA_ERROR_NOSTART","features":[569]},{"name":"PDH_PLA_ERROR_SCHEDULE_ELAPSED","features":[569]},{"name":"PDH_PLA_ERROR_SCHEDULE_OVERLAP","features":[569]},{"name":"PDH_PLA_ERROR_TYPE_MISMATCH","features":[569]},{"name":"PDH_PLA_SERVICE_ERROR","features":[569]},{"name":"PDH_PLA_VALIDATION_ERROR","features":[569]},{"name":"PDH_PLA_VALIDATION_WARNING","features":[569]},{"name":"PDH_QUERY_PERF_DATA_TIMEOUT","features":[569]},{"name":"PDH_RAW_COUNTER","features":[303,569]},{"name":"PDH_RAW_COUNTER_ITEM_A","features":[303,569]},{"name":"PDH_RAW_COUNTER_ITEM_W","features":[303,569]},{"name":"PDH_RAW_LOG_RECORD","features":[569]},{"name":"PDH_REFRESHCOUNTERS","features":[569]},{"name":"PDH_RETRY","features":[569]},{"name":"PDH_SELECT_DATA_SOURCE_FLAGS","features":[569]},{"name":"PDH_SQL_ALLOCCON_FAILED","features":[569]},{"name":"PDH_SQL_ALLOC_FAILED","features":[569]},{"name":"PDH_SQL_ALTER_DETAIL_FAILED","features":[569]},{"name":"PDH_SQL_BIND_FAILED","features":[569]},{"name":"PDH_SQL_CONNECT_FAILED","features":[569]},{"name":"PDH_SQL_EXEC_DIRECT_FAILED","features":[569]},{"name":"PDH_SQL_FETCH_FAILED","features":[569]},{"name":"PDH_SQL_MORE_RESULTS_FAILED","features":[569]},{"name":"PDH_SQL_ROWCOUNT_FAILED","features":[569]},{"name":"PDH_STATISTICS","features":[569]},{"name":"PDH_STRING_NOT_FOUND","features":[569]},{"name":"PDH_TIME_INFO","features":[569]},{"name":"PDH_UNABLE_MAP_NAME_FILES","features":[569]},{"name":"PDH_UNABLE_READ_LOG_HEADER","features":[569]},{"name":"PDH_UNKNOWN_LOGSVC_COMMAND","features":[569]},{"name":"PDH_UNKNOWN_LOG_FORMAT","features":[569]},{"name":"PDH_UNMATCHED_APPEND_COUNTER","features":[569]},{"name":"PDH_VERSION","features":[569]},{"name":"PDH_WBEM_ERROR","features":[569]},{"name":"PERFLIBREQUEST","features":[569]},{"name":"PERF_ADD_COUNTER","features":[569]},{"name":"PERF_AGGREGATE_AVG","features":[569]},{"name":"PERF_AGGREGATE_INSTANCE","features":[569]},{"name":"PERF_AGGREGATE_MAX","features":[569]},{"name":"PERF_AGGREGATE_MIN","features":[569]},{"name":"PERF_AGGREGATE_TOTAL","features":[569]},{"name":"PERF_AGGREGATE_UNDEFINED","features":[569]},{"name":"PERF_ATTRIB_BY_REFERENCE","features":[569]},{"name":"PERF_ATTRIB_DISPLAY_AS_HEX","features":[569]},{"name":"PERF_ATTRIB_DISPLAY_AS_REAL","features":[569]},{"name":"PERF_ATTRIB_NO_DISPLAYABLE","features":[569]},{"name":"PERF_ATTRIB_NO_GROUP_SEPARATOR","features":[569]},{"name":"PERF_COLLECT_END","features":[569]},{"name":"PERF_COLLECT_START","features":[569]},{"name":"PERF_COUNTERSET","features":[569]},{"name":"PERF_COUNTERSET_FLAG_AGGREGATE","features":[569]},{"name":"PERF_COUNTERSET_FLAG_HISTORY","features":[569]},{"name":"PERF_COUNTERSET_FLAG_INSTANCE","features":[569]},{"name":"PERF_COUNTERSET_FLAG_MULTIPLE","features":[569]},{"name":"PERF_COUNTERSET_INFO","features":[569]},{"name":"PERF_COUNTERSET_INSTANCE","features":[569]},{"name":"PERF_COUNTERSET_MULTI_INSTANCES","features":[569]},{"name":"PERF_COUNTERSET_REG_INFO","features":[569]},{"name":"PERF_COUNTERSET_SINGLE_AGGREGATE","features":[569]},{"name":"PERF_COUNTERSET_SINGLE_INSTANCE","features":[569]},{"name":"PERF_COUNTER_AGGREGATE_FUNC","features":[569]},{"name":"PERF_COUNTER_BASE","features":[569]},{"name":"PERF_COUNTER_BLOCK","features":[569]},{"name":"PERF_COUNTER_DATA","features":[569]},{"name":"PERF_COUNTER_DEFINITION","features":[569]},{"name":"PERF_COUNTER_DEFINITION","features":[569]},{"name":"PERF_COUNTER_ELAPSED","features":[569]},{"name":"PERF_COUNTER_FRACTION","features":[569]},{"name":"PERF_COUNTER_HEADER","features":[569]},{"name":"PERF_COUNTER_HISTOGRAM","features":[569]},{"name":"PERF_COUNTER_HISTOGRAM_TYPE","features":[569]},{"name":"PERF_COUNTER_IDENTIFIER","features":[569]},{"name":"PERF_COUNTER_IDENTITY","features":[569]},{"name":"PERF_COUNTER_INFO","features":[569]},{"name":"PERF_COUNTER_PRECISION","features":[569]},{"name":"PERF_COUNTER_QUEUELEN","features":[569]},{"name":"PERF_COUNTER_RATE","features":[569]},{"name":"PERF_COUNTER_REG_INFO","features":[569]},{"name":"PERF_COUNTER_VALUE","features":[569]},{"name":"PERF_DATA_BLOCK","features":[303,569]},{"name":"PERF_DATA_HEADER","features":[303,569]},{"name":"PERF_DATA_REVISION","features":[569]},{"name":"PERF_DATA_VERSION","features":[569]},{"name":"PERF_DELTA_BASE","features":[569]},{"name":"PERF_DELTA_COUNTER","features":[569]},{"name":"PERF_DETAIL","features":[569]},{"name":"PERF_DETAIL_ADVANCED","features":[569]},{"name":"PERF_DETAIL_EXPERT","features":[569]},{"name":"PERF_DETAIL_NOVICE","features":[569]},{"name":"PERF_DETAIL_WIZARD","features":[569]},{"name":"PERF_DISPLAY_NOSHOW","features":[569]},{"name":"PERF_DISPLAY_NO_SUFFIX","features":[569]},{"name":"PERF_DISPLAY_PERCENT","features":[569]},{"name":"PERF_DISPLAY_PER_SEC","features":[569]},{"name":"PERF_DISPLAY_SECONDS","features":[569]},{"name":"PERF_ENUM_INSTANCES","features":[569]},{"name":"PERF_ERROR_RETURN","features":[569]},{"name":"PERF_FILTER","features":[569]},{"name":"PERF_INSTANCE_DEFINITION","features":[569]},{"name":"PERF_INSTANCE_HEADER","features":[569]},{"name":"PERF_INVERSE_COUNTER","features":[569]},{"name":"PERF_MAX_INSTANCE_NAME","features":[569]},{"name":"PERF_MEM_ALLOC","features":[569]},{"name":"PERF_MEM_FREE","features":[569]},{"name":"PERF_METADATA_MULTIPLE_INSTANCES","features":[569]},{"name":"PERF_METADATA_NO_INSTANCES","features":[569]},{"name":"PERF_MULTIPLE_COUNTERS","features":[569]},{"name":"PERF_MULTIPLE_INSTANCES","features":[569]},{"name":"PERF_MULTI_COUNTER","features":[569]},{"name":"PERF_MULTI_COUNTERS","features":[569]},{"name":"PERF_MULTI_INSTANCES","features":[569]},{"name":"PERF_NO_INSTANCES","features":[569]},{"name":"PERF_NO_UNIQUE_ID","features":[569]},{"name":"PERF_NUMBER_DECIMAL","features":[569]},{"name":"PERF_NUMBER_DEC_1000","features":[569]},{"name":"PERF_NUMBER_HEX","features":[569]},{"name":"PERF_OBJECT_TIMER","features":[569]},{"name":"PERF_OBJECT_TYPE","features":[569]},{"name":"PERF_OBJECT_TYPE","features":[569]},{"name":"PERF_PROVIDER_CONTEXT","features":[569]},{"name":"PERF_PROVIDER_DRIVER","features":[569]},{"name":"PERF_PROVIDER_KERNEL_MODE","features":[569]},{"name":"PERF_PROVIDER_USER_MODE","features":[569]},{"name":"PERF_REG_COUNTERSET_ENGLISH_NAME","features":[569]},{"name":"PERF_REG_COUNTERSET_HELP_STRING","features":[569]},{"name":"PERF_REG_COUNTERSET_NAME_STRING","features":[569]},{"name":"PERF_REG_COUNTERSET_STRUCT","features":[569]},{"name":"PERF_REG_COUNTER_ENGLISH_NAMES","features":[569]},{"name":"PERF_REG_COUNTER_HELP_STRINGS","features":[569]},{"name":"PERF_REG_COUNTER_NAME_STRINGS","features":[569]},{"name":"PERF_REG_COUNTER_STRUCT","features":[569]},{"name":"PERF_REG_PROVIDER_GUID","features":[569]},{"name":"PERF_REG_PROVIDER_NAME","features":[569]},{"name":"PERF_REMOVE_COUNTER","features":[569]},{"name":"PERF_SINGLE_COUNTER","features":[569]},{"name":"PERF_SIZE_DWORD","features":[569]},{"name":"PERF_SIZE_LARGE","features":[569]},{"name":"PERF_SIZE_VARIABLE_LEN","features":[569]},{"name":"PERF_SIZE_ZERO","features":[569]},{"name":"PERF_STRING_BUFFER_HEADER","features":[569]},{"name":"PERF_STRING_COUNTER_HEADER","features":[569]},{"name":"PERF_TEXT_ASCII","features":[569]},{"name":"PERF_TEXT_UNICODE","features":[569]},{"name":"PERF_TIMER_100NS","features":[569]},{"name":"PERF_TIMER_TICK","features":[569]},{"name":"PERF_TYPE_COUNTER","features":[569]},{"name":"PERF_TYPE_NUMBER","features":[569]},{"name":"PERF_TYPE_TEXT","features":[569]},{"name":"PERF_TYPE_ZERO","features":[569]},{"name":"PERF_WILDCARD_COUNTER","features":[569]},{"name":"PERF_WILDCARD_INSTANCE","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_A_NAME","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_C_NAME","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_D_TIME","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_L_VAL","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_MASK","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_M_VAL","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_SINGLE","features":[569]},{"name":"PLAL_ALERT_CMD_LINE_U_TEXT","features":[569]},{"name":"PLA_CABEXTRACT_CALLBACK","features":[569]},{"name":"PLA_CAPABILITY_AUTOLOGGER","features":[569]},{"name":"PLA_CAPABILITY_LEGACY_SESSION","features":[569]},{"name":"PLA_CAPABILITY_LEGACY_SVC","features":[569]},{"name":"PLA_CAPABILITY_LOCAL","features":[569]},{"name":"PLA_CAPABILITY_V1_SESSION","features":[569]},{"name":"PLA_CAPABILITY_V1_SVC","features":[569]},{"name":"PLA_CAPABILITY_V1_SYSTEM","features":[569]},{"name":"PM_CLOSE_PROC","features":[569]},{"name":"PM_COLLECT_PROC","features":[569]},{"name":"PM_OPEN_PROC","features":[569]},{"name":"PdhAddCounterA","features":[569]},{"name":"PdhAddCounterW","features":[569]},{"name":"PdhAddEnglishCounterA","features":[569]},{"name":"PdhAddEnglishCounterW","features":[569]},{"name":"PdhBindInputDataSourceA","features":[569]},{"name":"PdhBindInputDataSourceW","features":[569]},{"name":"PdhBrowseCountersA","features":[303,569]},{"name":"PdhBrowseCountersHA","features":[303,569]},{"name":"PdhBrowseCountersHW","features":[303,569]},{"name":"PdhBrowseCountersW","features":[303,569]},{"name":"PdhCalculateCounterFromRawValue","features":[303,569]},{"name":"PdhCloseLog","features":[569]},{"name":"PdhCloseQuery","features":[569]},{"name":"PdhCollectQueryData","features":[569]},{"name":"PdhCollectQueryDataEx","features":[303,569]},{"name":"PdhCollectQueryDataWithTime","features":[569]},{"name":"PdhComputeCounterStatistics","features":[303,569]},{"name":"PdhConnectMachineA","features":[569]},{"name":"PdhConnectMachineW","features":[569]},{"name":"PdhCreateSQLTablesA","features":[569]},{"name":"PdhCreateSQLTablesW","features":[569]},{"name":"PdhEnumLogSetNamesA","features":[569]},{"name":"PdhEnumLogSetNamesW","features":[569]},{"name":"PdhEnumMachinesA","features":[569]},{"name":"PdhEnumMachinesHA","features":[569]},{"name":"PdhEnumMachinesHW","features":[569]},{"name":"PdhEnumMachinesW","features":[569]},{"name":"PdhEnumObjectItemsA","features":[569]},{"name":"PdhEnumObjectItemsHA","features":[569]},{"name":"PdhEnumObjectItemsHW","features":[569]},{"name":"PdhEnumObjectItemsW","features":[569]},{"name":"PdhEnumObjectsA","features":[303,569]},{"name":"PdhEnumObjectsHA","features":[303,569]},{"name":"PdhEnumObjectsHW","features":[303,569]},{"name":"PdhEnumObjectsW","features":[303,569]},{"name":"PdhExpandCounterPathA","features":[569]},{"name":"PdhExpandCounterPathW","features":[569]},{"name":"PdhExpandWildCardPathA","features":[569]},{"name":"PdhExpandWildCardPathHA","features":[569]},{"name":"PdhExpandWildCardPathHW","features":[569]},{"name":"PdhExpandWildCardPathW","features":[569]},{"name":"PdhFormatFromRawValue","features":[303,569]},{"name":"PdhGetCounterInfoA","features":[303,569]},{"name":"PdhGetCounterInfoW","features":[303,569]},{"name":"PdhGetCounterTimeBase","features":[569]},{"name":"PdhGetDataSourceTimeRangeA","features":[569]},{"name":"PdhGetDataSourceTimeRangeH","features":[569]},{"name":"PdhGetDataSourceTimeRangeW","features":[569]},{"name":"PdhGetDefaultPerfCounterA","features":[569]},{"name":"PdhGetDefaultPerfCounterHA","features":[569]},{"name":"PdhGetDefaultPerfCounterHW","features":[569]},{"name":"PdhGetDefaultPerfCounterW","features":[569]},{"name":"PdhGetDefaultPerfObjectA","features":[569]},{"name":"PdhGetDefaultPerfObjectHA","features":[569]},{"name":"PdhGetDefaultPerfObjectHW","features":[569]},{"name":"PdhGetDefaultPerfObjectW","features":[569]},{"name":"PdhGetDllVersion","features":[569]},{"name":"PdhGetFormattedCounterArrayA","features":[569]},{"name":"PdhGetFormattedCounterArrayW","features":[569]},{"name":"PdhGetFormattedCounterValue","features":[569]},{"name":"PdhGetLogFileSize","features":[569]},{"name":"PdhGetLogSetGUID","features":[569]},{"name":"PdhGetRawCounterArrayA","features":[303,569]},{"name":"PdhGetRawCounterArrayW","features":[303,569]},{"name":"PdhGetRawCounterValue","features":[303,569]},{"name":"PdhIsRealTimeQuery","features":[303,569]},{"name":"PdhLookupPerfIndexByNameA","features":[569]},{"name":"PdhLookupPerfIndexByNameW","features":[569]},{"name":"PdhLookupPerfNameByIndexA","features":[569]},{"name":"PdhLookupPerfNameByIndexW","features":[569]},{"name":"PdhMakeCounterPathA","features":[569]},{"name":"PdhMakeCounterPathW","features":[569]},{"name":"PdhOpenLogA","features":[569]},{"name":"PdhOpenLogW","features":[569]},{"name":"PdhOpenQueryA","features":[569]},{"name":"PdhOpenQueryH","features":[569]},{"name":"PdhOpenQueryW","features":[569]},{"name":"PdhParseCounterPathA","features":[569]},{"name":"PdhParseCounterPathW","features":[569]},{"name":"PdhParseInstanceNameA","features":[569]},{"name":"PdhParseInstanceNameW","features":[569]},{"name":"PdhReadRawLogRecord","features":[303,569]},{"name":"PdhRemoveCounter","features":[569]},{"name":"PdhSelectDataSourceA","features":[303,569]},{"name":"PdhSelectDataSourceW","features":[303,569]},{"name":"PdhSetCounterScaleFactor","features":[569]},{"name":"PdhSetDefaultRealTimeDataSource","features":[569]},{"name":"PdhSetLogSetRunID","features":[569]},{"name":"PdhSetQueryTimeRange","features":[569]},{"name":"PdhUpdateLogA","features":[569]},{"name":"PdhUpdateLogFileCatalog","features":[569]},{"name":"PdhUpdateLogW","features":[569]},{"name":"PdhValidatePathA","features":[569]},{"name":"PdhValidatePathExA","features":[569]},{"name":"PdhValidatePathExW","features":[569]},{"name":"PdhValidatePathW","features":[569]},{"name":"PdhVerifySQLDBA","features":[569]},{"name":"PdhVerifySQLDBW","features":[569]},{"name":"PerfAddCounters","features":[303,569]},{"name":"PerfCloseQueryHandle","features":[303,569]},{"name":"PerfCounterDataType","features":[569]},{"name":"PerfCreateInstance","features":[303,569]},{"name":"PerfDecrementULongCounterValue","features":[303,569]},{"name":"PerfDecrementULongLongCounterValue","features":[303,569]},{"name":"PerfDeleteCounters","features":[303,569]},{"name":"PerfDeleteInstance","features":[303,569]},{"name":"PerfEnumerateCounterSet","features":[569]},{"name":"PerfEnumerateCounterSetInstances","features":[569]},{"name":"PerfIncrementULongCounterValue","features":[303,569]},{"name":"PerfIncrementULongLongCounterValue","features":[303,569]},{"name":"PerfOpenQueryHandle","features":[303,569]},{"name":"PerfQueryCounterData","features":[303,569]},{"name":"PerfQueryCounterInfo","features":[303,569]},{"name":"PerfQueryCounterSetRegistrationInfo","features":[569]},{"name":"PerfQueryInstance","features":[303,569]},{"name":"PerfRegInfoType","features":[569]},{"name":"PerfSetCounterRefValue","features":[303,569]},{"name":"PerfSetCounterSetInfo","features":[303,569]},{"name":"PerfSetULongCounterValue","features":[303,569]},{"name":"PerfSetULongLongCounterValue","features":[303,569]},{"name":"PerfStartProvider","features":[303,569]},{"name":"PerfStartProviderEx","features":[303,569]},{"name":"PerfStopProvider","features":[303,569]},{"name":"QueryPerformanceCounter","features":[303,569]},{"name":"QueryPerformanceFrequency","features":[303,569]},{"name":"REAL_TIME_DATA_SOURCE_ID_FLAGS","features":[569]},{"name":"ReportValueTypeConstants","features":[569]},{"name":"ResourcePolicy","features":[569]},{"name":"RestorePerfRegistryFromFileW","features":[569]},{"name":"S_PDH","features":[569]},{"name":"ServerDataCollectorSet","features":[569]},{"name":"ServerDataCollectorSetCollection","features":[569]},{"name":"SetServiceAsTrustedA","features":[569]},{"name":"SetServiceAsTrustedW","features":[569]},{"name":"SourcePropPage","features":[569]},{"name":"StreamMode","features":[569]},{"name":"SysmonBatchReason","features":[569]},{"name":"SysmonDataType","features":[569]},{"name":"SysmonFileType","features":[569]},{"name":"SystemDataCollectorSet","features":[569]},{"name":"SystemDataCollectorSetCollection","features":[569]},{"name":"SystemMonitor","features":[569]},{"name":"SystemMonitor2","features":[569]},{"name":"TraceDataProvider","features":[569]},{"name":"TraceDataProviderCollection","features":[569]},{"name":"TraceSession","features":[569]},{"name":"TraceSessionCollection","features":[569]},{"name":"UnloadPerfCounterTextStringsA","features":[303,569]},{"name":"UnloadPerfCounterTextStringsW","features":[303,569]},{"name":"UpdatePerfNameFilesA","features":[569]},{"name":"UpdatePerfNameFilesW","features":[569]},{"name":"ValueMapType","features":[569]},{"name":"WINPERF_LOG_DEBUG","features":[569]},{"name":"WINPERF_LOG_NONE","features":[569]},{"name":"WINPERF_LOG_USER","features":[569]},{"name":"WINPERF_LOG_VERBOSE","features":[569]},{"name":"WeekDays","features":[569]},{"name":"_ICounterItemUnion","features":[569]},{"name":"_ISystemMonitorUnion","features":[569]},{"name":"plaAlert","features":[569]},{"name":"plaApiTrace","features":[569]},{"name":"plaBinary","features":[569]},{"name":"plaBoth","features":[569]},{"name":"plaBuffering","features":[569]},{"name":"plaCommaSeparated","features":[569]},{"name":"plaCompiling","features":[569]},{"name":"plaComputer","features":[569]},{"name":"plaConfiguration","features":[569]},{"name":"plaCreateCab","features":[569]},{"name":"plaCreateHtml","features":[569]},{"name":"plaCreateNew","features":[569]},{"name":"plaCreateOrModify","features":[569]},{"name":"plaCreateReport","features":[569]},{"name":"plaCycle","features":[569]},{"name":"plaDeleteCab","features":[569]},{"name":"plaDeleteData","features":[569]},{"name":"plaDeleteLargest","features":[569]},{"name":"plaDeleteOldest","features":[569]},{"name":"plaDeleteReport","features":[569]},{"name":"plaEveryday","features":[569]},{"name":"plaFile","features":[569]},{"name":"plaFlag","features":[569]},{"name":"plaFlagArray","features":[569]},{"name":"plaFlushTrace","features":[569]},{"name":"plaFolderActions","features":[569]},{"name":"plaFriday","features":[569]},{"name":"plaIndex","features":[569]},{"name":"plaModify","features":[569]},{"name":"plaMonday","features":[569]},{"name":"plaMonthDayHour","features":[569]},{"name":"plaMonthDayHourMinute","features":[569]},{"name":"plaNone","features":[569]},{"name":"plaPattern","features":[569]},{"name":"plaPending","features":[569]},{"name":"plaPerformance","features":[569]},{"name":"plaPerformanceCounter","features":[569]},{"name":"plaRealTime","features":[569]},{"name":"plaResourceFreeing","features":[569]},{"name":"plaRunOnce","features":[569]},{"name":"plaRunRules","features":[569]},{"name":"plaRunning","features":[569]},{"name":"plaSaturday","features":[569]},{"name":"plaSendCab","features":[569]},{"name":"plaSerialNumber","features":[569]},{"name":"plaSql","features":[569]},{"name":"plaStopped","features":[569]},{"name":"plaSunday","features":[569]},{"name":"plaSystem","features":[569]},{"name":"plaTabSeparated","features":[569]},{"name":"plaThursday","features":[569]},{"name":"plaTimeStamp","features":[569]},{"name":"plaTrace","features":[569]},{"name":"plaTuesday","features":[569]},{"name":"plaUndefined","features":[569]},{"name":"plaUpdateRunningInstance","features":[569]},{"name":"plaValidateOnly","features":[569]},{"name":"plaValidation","features":[569]},{"name":"plaWednesday","features":[569]},{"name":"plaYearDayOfYear","features":[569]},{"name":"plaYearMonth","features":[569]},{"name":"plaYearMonthDay","features":[569]},{"name":"plaYearMonthDayHour","features":[569]},{"name":"sysmonAverage","features":[569]},{"name":"sysmonBatchAddCounters","features":[569]},{"name":"sysmonBatchAddFiles","features":[569]},{"name":"sysmonBatchAddFilesAutoCounters","features":[569]},{"name":"sysmonBatchNone","features":[569]},{"name":"sysmonChartArea","features":[569]},{"name":"sysmonChartStackedArea","features":[569]},{"name":"sysmonCurrentActivity","features":[569]},{"name":"sysmonCurrentValue","features":[569]},{"name":"sysmonDataAvg","features":[569]},{"name":"sysmonDataCount","features":[569]},{"name":"sysmonDataMax","features":[569]},{"name":"sysmonDataMin","features":[569]},{"name":"sysmonDataTime","features":[569]},{"name":"sysmonDefaultValue","features":[569]},{"name":"sysmonFileBlg","features":[569]},{"name":"sysmonFileCsv","features":[569]},{"name":"sysmonFileGif","features":[569]},{"name":"sysmonFileHtml","features":[569]},{"name":"sysmonFileReport","features":[569]},{"name":"sysmonFileRetiredBlg","features":[569]},{"name":"sysmonFileTsv","features":[569]},{"name":"sysmonHistogram","features":[569]},{"name":"sysmonLineGraph","features":[569]},{"name":"sysmonLogFiles","features":[569]},{"name":"sysmonMaximum","features":[569]},{"name":"sysmonMinimum","features":[569]},{"name":"sysmonNullDataSource","features":[569]},{"name":"sysmonReport","features":[569]},{"name":"sysmonSqlLog","features":[569]}],"589":[{"name":"DisableThreadProfiling","features":[303,570]},{"name":"EnableThreadProfiling","features":[303,570]},{"name":"HARDWARE_COUNTER_DATA","features":[570]},{"name":"HARDWARE_COUNTER_TYPE","features":[570]},{"name":"MaxHardwareCounterType","features":[570]},{"name":"PERFORMANCE_DATA","features":[570]},{"name":"PMCCounter","features":[570]},{"name":"QueryThreadProfiling","features":[303,570]},{"name":"ReadThreadProfilingData","features":[303,570]}],"590":[{"name":"CallNamedPipeA","features":[303,571]},{"name":"CallNamedPipeW","features":[303,571]},{"name":"ConnectNamedPipe","features":[303,308,571]},{"name":"CreateNamedPipeA","features":[303,306,322,571]},{"name":"CreateNamedPipeW","features":[303,306,322,571]},{"name":"CreatePipe","features":[303,306,571]},{"name":"DisconnectNamedPipe","features":[303,571]},{"name":"GetNamedPipeClientComputerNameA","features":[303,571]},{"name":"GetNamedPipeClientComputerNameW","features":[303,571]},{"name":"GetNamedPipeClientProcessId","features":[303,571]},{"name":"GetNamedPipeClientSessionId","features":[303,571]},{"name":"GetNamedPipeHandleStateA","features":[303,571]},{"name":"GetNamedPipeHandleStateW","features":[303,571]},{"name":"GetNamedPipeInfo","features":[303,571]},{"name":"GetNamedPipeServerProcessId","features":[303,571]},{"name":"GetNamedPipeServerSessionId","features":[303,571]},{"name":"ImpersonateNamedPipeClient","features":[303,571]},{"name":"NAMED_PIPE_MODE","features":[571]},{"name":"NMPWAIT_NOWAIT","features":[571]},{"name":"NMPWAIT_USE_DEFAULT_WAIT","features":[571]},{"name":"NMPWAIT_WAIT_FOREVER","features":[571]},{"name":"PIPE_ACCEPT_REMOTE_CLIENTS","features":[571]},{"name":"PIPE_CLIENT_END","features":[571]},{"name":"PIPE_NOWAIT","features":[571]},{"name":"PIPE_READMODE_BYTE","features":[571]},{"name":"PIPE_READMODE_MESSAGE","features":[571]},{"name":"PIPE_REJECT_REMOTE_CLIENTS","features":[571]},{"name":"PIPE_SERVER_END","features":[571]},{"name":"PIPE_TYPE_BYTE","features":[571]},{"name":"PIPE_TYPE_MESSAGE","features":[571]},{"name":"PIPE_UNLIMITED_INSTANCES","features":[571]},{"name":"PIPE_WAIT","features":[571]},{"name":"PeekNamedPipe","features":[303,571]},{"name":"SetNamedPipeHandleState","features":[303,571]},{"name":"TransactNamedPipe","features":[303,308,571]},{"name":"WaitNamedPipeA","features":[303,571]},{"name":"WaitNamedPipeW","features":[303,571]}],"591":[{"name":"ACCESS_ACTIVE_OVERLAY_SCHEME","features":[310]},{"name":"ACCESS_ACTIVE_SCHEME","features":[310]},{"name":"ACCESS_AC_POWER_SETTING_INDEX","features":[310]},{"name":"ACCESS_AC_POWER_SETTING_MAX","features":[310]},{"name":"ACCESS_AC_POWER_SETTING_MIN","features":[310]},{"name":"ACCESS_ATTRIBUTES","features":[310]},{"name":"ACCESS_CREATE_SCHEME","features":[310]},{"name":"ACCESS_DC_POWER_SETTING_INDEX","features":[310]},{"name":"ACCESS_DC_POWER_SETTING_MAX","features":[310]},{"name":"ACCESS_DC_POWER_SETTING_MIN","features":[310]},{"name":"ACCESS_DEFAULT_AC_POWER_SETTING","features":[310]},{"name":"ACCESS_DEFAULT_DC_POWER_SETTING","features":[310]},{"name":"ACCESS_DEFAULT_SECURITY_DESCRIPTOR","features":[310]},{"name":"ACCESS_DESCRIPTION","features":[310]},{"name":"ACCESS_FRIENDLY_NAME","features":[310]},{"name":"ACCESS_ICON_RESOURCE","features":[310]},{"name":"ACCESS_INDIVIDUAL_SETTING","features":[310]},{"name":"ACCESS_OVERLAY_SCHEME","features":[310]},{"name":"ACCESS_POSSIBLE_POWER_SETTING","features":[310]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_DESCRIPTION","features":[310]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_FRIENDLY_NAME","features":[310]},{"name":"ACCESS_POSSIBLE_VALUE_INCREMENT","features":[310]},{"name":"ACCESS_POSSIBLE_VALUE_MAX","features":[310]},{"name":"ACCESS_POSSIBLE_VALUE_MIN","features":[310]},{"name":"ACCESS_POSSIBLE_VALUE_UNITS","features":[310]},{"name":"ACCESS_PROFILE","features":[310]},{"name":"ACCESS_SCHEME","features":[310]},{"name":"ACCESS_SUBGROUP","features":[310]},{"name":"ACPI_REAL_TIME","features":[310]},{"name":"ACPI_TIME_ADJUST_DAYLIGHT","features":[310]},{"name":"ACPI_TIME_AND_ALARM_CAPABILITIES","features":[303,310]},{"name":"ACPI_TIME_IN_DAYLIGHT","features":[310]},{"name":"ACPI_TIME_RESOLUTION","features":[310]},{"name":"ACPI_TIME_ZONE_UNKNOWN","features":[310]},{"name":"ACTIVE_COOLING","features":[310]},{"name":"ADMINISTRATOR_POWER_POLICY","features":[310]},{"name":"ALTITUDE_GROUP_POLICY","features":[310]},{"name":"ALTITUDE_INTERNAL_OVERRIDE","features":[310]},{"name":"ALTITUDE_OEM_CUSTOMIZATION","features":[310]},{"name":"ALTITUDE_OS_DEFAULT","features":[310]},{"name":"ALTITUDE_PROVISIONING","features":[310]},{"name":"ALTITUDE_RUNTIME_OVERRIDE","features":[310]},{"name":"ALTITUDE_USER","features":[310]},{"name":"AcpiTimeResolutionMax","features":[310]},{"name":"AcpiTimeResolutionMilliseconds","features":[310]},{"name":"AcpiTimeResolutionSeconds","features":[310]},{"name":"AdministratorPowerPolicy","features":[310]},{"name":"BATTERY_CAPACITY_RELATIVE","features":[310]},{"name":"BATTERY_CHARGER_STATUS","features":[310]},{"name":"BATTERY_CHARGING","features":[310]},{"name":"BATTERY_CHARGING_SOURCE","features":[310]},{"name":"BATTERY_CHARGING_SOURCE_INFORMATION","features":[303,310]},{"name":"BATTERY_CHARGING_SOURCE_TYPE","features":[310]},{"name":"BATTERY_CLASS_MAJOR_VERSION","features":[310]},{"name":"BATTERY_CLASS_MINOR_VERSION","features":[310]},{"name":"BATTERY_CLASS_MINOR_VERSION_1","features":[310]},{"name":"BATTERY_CRITICAL","features":[310]},{"name":"BATTERY_CYCLE_COUNT_WMI_GUID","features":[310]},{"name":"BATTERY_DISCHARGING","features":[310]},{"name":"BATTERY_FULL_CHARGED_CAPACITY_WMI_GUID","features":[310]},{"name":"BATTERY_INFORMATION","features":[310]},{"name":"BATTERY_IS_SHORT_TERM","features":[310]},{"name":"BATTERY_MANUFACTURE_DATE","features":[310]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_1","features":[310]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_2","features":[310]},{"name":"BATTERY_POWER_ON_LINE","features":[310]},{"name":"BATTERY_QUERY_INFORMATION","features":[310]},{"name":"BATTERY_QUERY_INFORMATION_LEVEL","features":[310]},{"name":"BATTERY_REPORTING_SCALE","features":[310]},{"name":"BATTERY_RUNTIME_WMI_GUID","features":[310]},{"name":"BATTERY_SEALED","features":[310]},{"name":"BATTERY_SET_CHARGER_ID_SUPPORTED","features":[310]},{"name":"BATTERY_SET_CHARGE_SUPPORTED","features":[310]},{"name":"BATTERY_SET_CHARGINGSOURCE_SUPPORTED","features":[310]},{"name":"BATTERY_SET_DISCHARGE_SUPPORTED","features":[310]},{"name":"BATTERY_SET_INFORMATION","features":[310]},{"name":"BATTERY_SET_INFORMATION_LEVEL","features":[310]},{"name":"BATTERY_STATIC_DATA_WMI_GUID","features":[310]},{"name":"BATTERY_STATUS","features":[310]},{"name":"BATTERY_STATUS_CHANGE_WMI_GUID","features":[310]},{"name":"BATTERY_STATUS_WMI_GUID","features":[310]},{"name":"BATTERY_SYSTEM_BATTERY","features":[310]},{"name":"BATTERY_TAG_CHANGE_WMI_GUID","features":[310]},{"name":"BATTERY_TAG_INVALID","features":[310]},{"name":"BATTERY_TEMPERATURE_WMI_GUID","features":[310]},{"name":"BATTERY_UNKNOWN_CAPACITY","features":[310]},{"name":"BATTERY_UNKNOWN_CURRENT","features":[310]},{"name":"BATTERY_UNKNOWN_RATE","features":[310]},{"name":"BATTERY_UNKNOWN_TIME","features":[310]},{"name":"BATTERY_UNKNOWN_VOLTAGE","features":[310]},{"name":"BATTERY_USB_CHARGER_STATUS","features":[310]},{"name":"BATTERY_USB_CHARGER_STATUS_FN_DEFAULT_USB","features":[310]},{"name":"BATTERY_USB_CHARGER_STATUS_UCM_PD","features":[310]},{"name":"BATTERY_WAIT_STATUS","features":[310]},{"name":"BatteryCharge","features":[310]},{"name":"BatteryChargerId","features":[310]},{"name":"BatteryChargerStatus","features":[310]},{"name":"BatteryChargingSource","features":[310]},{"name":"BatteryChargingSourceType_AC","features":[310]},{"name":"BatteryChargingSourceType_Max","features":[310]},{"name":"BatteryChargingSourceType_USB","features":[310]},{"name":"BatteryChargingSourceType_Wireless","features":[310]},{"name":"BatteryCriticalBias","features":[310]},{"name":"BatteryDeviceName","features":[310]},{"name":"BatteryDeviceState","features":[310]},{"name":"BatteryDischarge","features":[310]},{"name":"BatteryEstimatedTime","features":[310]},{"name":"BatteryGranularityInformation","features":[310]},{"name":"BatteryInformation","features":[310]},{"name":"BatteryManufactureDate","features":[310]},{"name":"BatteryManufactureName","features":[310]},{"name":"BatterySerialNumber","features":[310]},{"name":"BatteryTemperature","features":[310]},{"name":"BatteryUniqueID","features":[310]},{"name":"BlackBoxRecorderDirectAccessBuffer","features":[310]},{"name":"CM_POWER_DATA","features":[310]},{"name":"CallNtPowerInformation","features":[303,310]},{"name":"CanUserWritePwrScheme","features":[303,310]},{"name":"CsDeviceNotification","features":[310]},{"name":"DEVICEPOWER_AND_OPERATION","features":[310]},{"name":"DEVICEPOWER_CLEAR_WAKEENABLED","features":[310]},{"name":"DEVICEPOWER_FILTER_DEVICES_PRESENT","features":[310]},{"name":"DEVICEPOWER_FILTER_HARDWARE","features":[310]},{"name":"DEVICEPOWER_FILTER_ON_NAME","features":[310]},{"name":"DEVICEPOWER_FILTER_WAKEENABLED","features":[310]},{"name":"DEVICEPOWER_FILTER_WAKEPROGRAMMABLE","features":[310]},{"name":"DEVICEPOWER_HARDWAREID","features":[310]},{"name":"DEVICEPOWER_SET_WAKEENABLED","features":[310]},{"name":"DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS","features":[310]},{"name":"DEVICE_POWER_STATE","features":[310]},{"name":"DeletePwrScheme","features":[303,310]},{"name":"DevicePowerClose","features":[303,310]},{"name":"DevicePowerEnumDevices","features":[303,310]},{"name":"DevicePowerOpen","features":[303,310]},{"name":"DevicePowerSetDeviceState","features":[310]},{"name":"DisplayBurst","features":[310]},{"name":"EFFECTIVE_POWER_MODE","features":[310]},{"name":"EFFECTIVE_POWER_MODE_CALLBACK","features":[310]},{"name":"EFFECTIVE_POWER_MODE_V1","features":[310]},{"name":"EFFECTIVE_POWER_MODE_V2","features":[310]},{"name":"EMI_CHANNEL_MEASUREMENT_DATA","features":[310]},{"name":"EMI_CHANNEL_V2","features":[310]},{"name":"EMI_MEASUREMENT_DATA_V2","features":[310]},{"name":"EMI_MEASUREMENT_UNIT","features":[310]},{"name":"EMI_METADATA_SIZE","features":[310]},{"name":"EMI_METADATA_V1","features":[310]},{"name":"EMI_METADATA_V2","features":[310]},{"name":"EMI_NAME_MAX","features":[310]},{"name":"EMI_VERSION","features":[310]},{"name":"EMI_VERSION_V1","features":[310]},{"name":"EMI_VERSION_V2","features":[310]},{"name":"ES_AWAYMODE_REQUIRED","features":[310]},{"name":"ES_CONTINUOUS","features":[310]},{"name":"ES_DISPLAY_REQUIRED","features":[310]},{"name":"ES_SYSTEM_REQUIRED","features":[310]},{"name":"ES_USER_PRESENT","features":[310]},{"name":"EXECUTION_STATE","features":[310]},{"name":"EffectivePowerModeBalanced","features":[310]},{"name":"EffectivePowerModeBatterySaver","features":[310]},{"name":"EffectivePowerModeBetterBattery","features":[310]},{"name":"EffectivePowerModeGameMode","features":[310]},{"name":"EffectivePowerModeHighPerformance","features":[310]},{"name":"EffectivePowerModeMaxPerformance","features":[310]},{"name":"EffectivePowerModeMixedReality","features":[310]},{"name":"EmiMeasurementUnitPicowattHours","features":[310]},{"name":"EnableMultiBatteryDisplay","features":[310]},{"name":"EnablePasswordLogon","features":[310]},{"name":"EnableSysTrayBatteryMeter","features":[310]},{"name":"EnableVideoDimDisplay","features":[310]},{"name":"EnableWakeOnRing","features":[310]},{"name":"EnergyTrackerCreate","features":[310]},{"name":"EnergyTrackerQuery","features":[310]},{"name":"EnumPwrSchemes","features":[303,310]},{"name":"ExitLatencySamplingPercentage","features":[310]},{"name":"FirmwareTableInformationRegistered","features":[310]},{"name":"GLOBAL_MACHINE_POWER_POLICY","features":[310]},{"name":"GLOBAL_POWER_POLICY","features":[303,310]},{"name":"GLOBAL_USER_POWER_POLICY","features":[303,310]},{"name":"GUID_CLASS_INPUT","features":[310]},{"name":"GUID_DEVICE_ACPI_TIME","features":[310]},{"name":"GUID_DEVICE_APPLICATIONLAUNCH_BUTTON","features":[310]},{"name":"GUID_DEVICE_BATTERY","features":[310]},{"name":"GUID_DEVICE_ENERGY_METER","features":[310]},{"name":"GUID_DEVICE_FAN","features":[310]},{"name":"GUID_DEVICE_LID","features":[310]},{"name":"GUID_DEVICE_MEMORY","features":[310]},{"name":"GUID_DEVICE_MESSAGE_INDICATOR","features":[310]},{"name":"GUID_DEVICE_PROCESSOR","features":[310]},{"name":"GUID_DEVICE_SYS_BUTTON","features":[310]},{"name":"GUID_DEVICE_THERMAL_ZONE","features":[310]},{"name":"GUID_DEVINTERFACE_THERMAL_COOLING","features":[310]},{"name":"GUID_DEVINTERFACE_THERMAL_MANAGER","features":[310]},{"name":"GetActivePwrScheme","features":[303,310]},{"name":"GetCurrentPowerPolicies","features":[303,310]},{"name":"GetDevicePowerState","features":[303,310]},{"name":"GetPowerRequestList","features":[310]},{"name":"GetPowerSettingValue","features":[310]},{"name":"GetPwrCapabilities","features":[303,310]},{"name":"GetPwrDiskSpindownRange","features":[303,310]},{"name":"GetSystemPowerStatus","features":[303,310]},{"name":"GroupPark","features":[310]},{"name":"HPOWERNOTIFY","features":[310]},{"name":"IOCTL_ACPI_GET_REAL_TIME","features":[310]},{"name":"IOCTL_ACPI_SET_REAL_TIME","features":[310]},{"name":"IOCTL_BATTERY_CHARGING_SOURCE_CHANGE","features":[310]},{"name":"IOCTL_BATTERY_QUERY_INFORMATION","features":[310]},{"name":"IOCTL_BATTERY_QUERY_STATUS","features":[310]},{"name":"IOCTL_BATTERY_QUERY_TAG","features":[310]},{"name":"IOCTL_BATTERY_SET_INFORMATION","features":[310]},{"name":"IOCTL_EMI_GET_MEASUREMENT","features":[310]},{"name":"IOCTL_EMI_GET_METADATA","features":[310]},{"name":"IOCTL_EMI_GET_METADATA_SIZE","features":[310]},{"name":"IOCTL_EMI_GET_VERSION","features":[310]},{"name":"IOCTL_GET_ACPI_TIME_AND_ALARM_CAPABILITIES","features":[310]},{"name":"IOCTL_GET_PROCESSOR_OBJ_INFO","features":[310]},{"name":"IOCTL_GET_SYS_BUTTON_CAPS","features":[310]},{"name":"IOCTL_GET_SYS_BUTTON_EVENT","features":[310]},{"name":"IOCTL_GET_WAKE_ALARM_POLICY","features":[310]},{"name":"IOCTL_GET_WAKE_ALARM_SYSTEM_POWERSTATE","features":[310]},{"name":"IOCTL_GET_WAKE_ALARM_VALUE","features":[310]},{"name":"IOCTL_NOTIFY_SWITCH_EVENT","features":[310]},{"name":"IOCTL_QUERY_LID","features":[310]},{"name":"IOCTL_RUN_ACTIVE_COOLING_METHOD","features":[310]},{"name":"IOCTL_SET_SYS_MESSAGE_INDICATOR","features":[310]},{"name":"IOCTL_SET_WAKE_ALARM_POLICY","features":[310]},{"name":"IOCTL_SET_WAKE_ALARM_VALUE","features":[310]},{"name":"IOCTL_THERMAL_QUERY_INFORMATION","features":[310]},{"name":"IOCTL_THERMAL_READ_POLICY","features":[310]},{"name":"IOCTL_THERMAL_READ_TEMPERATURE","features":[310]},{"name":"IOCTL_THERMAL_SET_COOLING_POLICY","features":[310]},{"name":"IOCTL_THERMAL_SET_PASSIVE_LIMIT","features":[310]},{"name":"IdleResiliency","features":[310]},{"name":"IsAdminOverrideActive","features":[303,310]},{"name":"IsPwrHibernateAllowed","features":[303,310]},{"name":"IsPwrShutdownAllowed","features":[303,310]},{"name":"IsPwrSuspendAllowed","features":[303,310]},{"name":"IsSystemResumeAutomatic","features":[303,310]},{"name":"LATENCY_TIME","features":[310]},{"name":"LT_DONT_CARE","features":[310]},{"name":"LT_LOWEST_LATENCY","features":[310]},{"name":"LastResumePerformance","features":[310]},{"name":"LastSleepTime","features":[310]},{"name":"LastWakeTime","features":[310]},{"name":"LogicalProcessorIdling","features":[310]},{"name":"MACHINE_POWER_POLICY","features":[310]},{"name":"MACHINE_PROCESSOR_POWER_POLICY","features":[310]},{"name":"MAX_ACTIVE_COOLING_LEVELS","features":[310]},{"name":"MAX_BATTERY_STRING_SIZE","features":[310]},{"name":"MonitorCapabilities","features":[310]},{"name":"MonitorInvocation","features":[310]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[310]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[310]},{"name":"MonitorRequestReasonBatteryCountChange","features":[310]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[310]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[310]},{"name":"MonitorRequestReasonBuiltinPanel","features":[310]},{"name":"MonitorRequestReasonDP","features":[310]},{"name":"MonitorRequestReasonDim","features":[310]},{"name":"MonitorRequestReasonDirectedDrips","features":[310]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[310]},{"name":"MonitorRequestReasonFullWake","features":[310]},{"name":"MonitorRequestReasonGracePeriod","features":[310]},{"name":"MonitorRequestReasonIdleTimeout","features":[310]},{"name":"MonitorRequestReasonLid","features":[310]},{"name":"MonitorRequestReasonMax","features":[310]},{"name":"MonitorRequestReasonNearProximity","features":[310]},{"name":"MonitorRequestReasonPdcSignal","features":[310]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[310]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[310]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[310]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[310]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[310]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[310]},{"name":"MonitorRequestReasonPnP","features":[310]},{"name":"MonitorRequestReasonPoSetSystemState","features":[310]},{"name":"MonitorRequestReasonPolicyChange","features":[310]},{"name":"MonitorRequestReasonPowerButton","features":[310]},{"name":"MonitorRequestReasonRemoteConnection","features":[310]},{"name":"MonitorRequestReasonResumeModernStandby","features":[310]},{"name":"MonitorRequestReasonResumePdc","features":[310]},{"name":"MonitorRequestReasonResumeS4","features":[310]},{"name":"MonitorRequestReasonScMonitorpower","features":[310]},{"name":"MonitorRequestReasonScreenOffRequest","features":[310]},{"name":"MonitorRequestReasonSessionUnlock","features":[310]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[310]},{"name":"MonitorRequestReasonSleepButton","features":[310]},{"name":"MonitorRequestReasonSxTransition","features":[310]},{"name":"MonitorRequestReasonSystemIdle","features":[310]},{"name":"MonitorRequestReasonSystemStateEntered","features":[310]},{"name":"MonitorRequestReasonTerminal","features":[310]},{"name":"MonitorRequestReasonTerminalInit","features":[310]},{"name":"MonitorRequestReasonThermalStandby","features":[310]},{"name":"MonitorRequestReasonUnknown","features":[310]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[310]},{"name":"MonitorRequestReasonUserInput","features":[310]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[310]},{"name":"MonitorRequestReasonUserInputHid","features":[310]},{"name":"MonitorRequestReasonUserInputInitialization","features":[310]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[310]},{"name":"MonitorRequestReasonUserInputMouse","features":[310]},{"name":"MonitorRequestReasonUserInputPen","features":[310]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[310]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[310]},{"name":"MonitorRequestReasonUserInputTouch","features":[310]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[310]},{"name":"MonitorRequestReasonWinrt","features":[310]},{"name":"MonitorRequestTypeOff","features":[310]},{"name":"MonitorRequestTypeOnAndPresent","features":[310]},{"name":"MonitorRequestTypeToggleOn","features":[310]},{"name":"NotifyUserModeLegacyPowerEvent","features":[310]},{"name":"NotifyUserPowerSetting","features":[310]},{"name":"PASSIVE_COOLING","features":[310]},{"name":"PDCAP_S0_SUPPORTED","features":[310]},{"name":"PDCAP_S1_SUPPORTED","features":[310]},{"name":"PDCAP_S2_SUPPORTED","features":[310]},{"name":"PDCAP_S3_SUPPORTED","features":[310]},{"name":"PDCAP_S4_SUPPORTED","features":[310]},{"name":"PDCAP_S5_SUPPORTED","features":[310]},{"name":"PDCAP_WAKE_FROM_S0_SUPPORTED","features":[310]},{"name":"PDCAP_WAKE_FROM_S1_SUPPORTED","features":[310]},{"name":"PDCAP_WAKE_FROM_S2_SUPPORTED","features":[310]},{"name":"PDCAP_WAKE_FROM_S3_SUPPORTED","features":[310]},{"name":"PDEVICE_NOTIFY_CALLBACK_ROUTINE","features":[310]},{"name":"POWERBROADCAST_SETTING","features":[310]},{"name":"POWER_ACTION","features":[310]},{"name":"POWER_ACTION_POLICY","features":[310]},{"name":"POWER_ACTION_POLICY_EVENT_CODE","features":[310]},{"name":"POWER_ATTRIBUTE_HIDE","features":[310]},{"name":"POWER_ATTRIBUTE_SHOW_AOAC","features":[310]},{"name":"POWER_COOLING_MODE","features":[310]},{"name":"POWER_DATA_ACCESSOR","features":[310]},{"name":"POWER_FORCE_TRIGGER_RESET","features":[310]},{"name":"POWER_IDLE_RESILIENCY","features":[310]},{"name":"POWER_INFORMATION_LEVEL","features":[310]},{"name":"POWER_LEVEL_USER_NOTIFY_EXEC","features":[310]},{"name":"POWER_LEVEL_USER_NOTIFY_SOUND","features":[310]},{"name":"POWER_LEVEL_USER_NOTIFY_TEXT","features":[310]},{"name":"POWER_MONITOR_INVOCATION","features":[303,310]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[310]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[310]},{"name":"POWER_PLATFORM_INFORMATION","features":[303,310]},{"name":"POWER_PLATFORM_ROLE","features":[310]},{"name":"POWER_PLATFORM_ROLE_V1","features":[310]},{"name":"POWER_PLATFORM_ROLE_V2","features":[310]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[310]},{"name":"POWER_POLICY","features":[303,310]},{"name":"POWER_REQUEST_TYPE","features":[310]},{"name":"POWER_SESSION_ALLOW_EXTERNAL_DMA_DEVICES","features":[303,310]},{"name":"POWER_SESSION_CONNECT","features":[303,310]},{"name":"POWER_SESSION_RIT_STATE","features":[303,310]},{"name":"POWER_SESSION_TIMEOUTS","features":[310]},{"name":"POWER_SESSION_WINLOGON","features":[303,310]},{"name":"POWER_SETTING_ALTITUDE","features":[310]},{"name":"POWER_USER_NOTIFY_BUTTON","features":[310]},{"name":"POWER_USER_NOTIFY_SHUTDOWN","features":[310]},{"name":"POWER_USER_PRESENCE","features":[310]},{"name":"POWER_USER_PRESENCE_TYPE","features":[310]},{"name":"PO_TZ_ACTIVE","features":[310]},{"name":"PO_TZ_INVALID_MODE","features":[310]},{"name":"PO_TZ_PASSIVE","features":[310]},{"name":"PPM_FIRMWARE_ACPI1C2","features":[310]},{"name":"PPM_FIRMWARE_ACPI1C3","features":[310]},{"name":"PPM_FIRMWARE_ACPI1TSTATES","features":[310]},{"name":"PPM_FIRMWARE_CPC","features":[310]},{"name":"PPM_FIRMWARE_CSD","features":[310]},{"name":"PPM_FIRMWARE_CST","features":[310]},{"name":"PPM_FIRMWARE_LPI","features":[310]},{"name":"PPM_FIRMWARE_OSC","features":[310]},{"name":"PPM_FIRMWARE_PCCH","features":[310]},{"name":"PPM_FIRMWARE_PCCP","features":[310]},{"name":"PPM_FIRMWARE_PCT","features":[310]},{"name":"PPM_FIRMWARE_PDC","features":[310]},{"name":"PPM_FIRMWARE_PPC","features":[310]},{"name":"PPM_FIRMWARE_PSD","features":[310]},{"name":"PPM_FIRMWARE_PSS","features":[310]},{"name":"PPM_FIRMWARE_PTC","features":[310]},{"name":"PPM_FIRMWARE_TPC","features":[310]},{"name":"PPM_FIRMWARE_TSD","features":[310]},{"name":"PPM_FIRMWARE_TSS","features":[310]},{"name":"PPM_FIRMWARE_XPSS","features":[310]},{"name":"PPM_IDLESTATES_DATA_GUID","features":[310]},{"name":"PPM_IDLESTATE_CHANGE_GUID","features":[310]},{"name":"PPM_IDLESTATE_EVENT","features":[310]},{"name":"PPM_IDLE_ACCOUNTING","features":[310]},{"name":"PPM_IDLE_ACCOUNTING_EX","features":[310]},{"name":"PPM_IDLE_ACCOUNTING_EX_GUID","features":[310]},{"name":"PPM_IDLE_ACCOUNTING_GUID","features":[310]},{"name":"PPM_IDLE_IMPLEMENTATION_CSTATES","features":[310]},{"name":"PPM_IDLE_IMPLEMENTATION_LPISTATES","features":[310]},{"name":"PPM_IDLE_IMPLEMENTATION_MICROPEP","features":[310]},{"name":"PPM_IDLE_IMPLEMENTATION_NONE","features":[310]},{"name":"PPM_IDLE_IMPLEMENTATION_PEP","features":[310]},{"name":"PPM_IDLE_STATE_ACCOUNTING","features":[310]},{"name":"PPM_IDLE_STATE_ACCOUNTING_EX","features":[310]},{"name":"PPM_IDLE_STATE_BUCKET_EX","features":[310]},{"name":"PPM_PERFMON_PERFSTATE_GUID","features":[310]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_CPPC","features":[310]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_NONE","features":[310]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PCCV1","features":[310]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PEP","features":[310]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PSTATES","features":[310]},{"name":"PPM_PERFSTATES_DATA_GUID","features":[310]},{"name":"PPM_PERFSTATE_CHANGE_GUID","features":[310]},{"name":"PPM_PERFSTATE_DOMAIN_CHANGE_GUID","features":[310]},{"name":"PPM_PERFSTATE_DOMAIN_EVENT","features":[310]},{"name":"PPM_PERFSTATE_EVENT","features":[310]},{"name":"PPM_THERMALCHANGE_EVENT","features":[310]},{"name":"PPM_THERMALCONSTRAINT_GUID","features":[310]},{"name":"PPM_THERMAL_POLICY_CHANGE_GUID","features":[310]},{"name":"PPM_THERMAL_POLICY_EVENT","features":[310]},{"name":"PPM_WMI_IDLE_STATE","features":[310]},{"name":"PPM_WMI_IDLE_STATES","features":[310]},{"name":"PPM_WMI_IDLE_STATES_EX","features":[310]},{"name":"PPM_WMI_LEGACY_PERFSTATE","features":[310]},{"name":"PPM_WMI_PERF_STATE","features":[310]},{"name":"PPM_WMI_PERF_STATES","features":[310]},{"name":"PPM_WMI_PERF_STATES_EX","features":[310]},{"name":"PROCESSOR_NUMBER_PKEY","features":[336,310]},{"name":"PROCESSOR_OBJECT_INFO","features":[310]},{"name":"PROCESSOR_OBJECT_INFO_EX","features":[310]},{"name":"PROCESSOR_POWER_INFORMATION","features":[310]},{"name":"PROCESSOR_POWER_POLICY","features":[310]},{"name":"PROCESSOR_POWER_POLICY_INFO","features":[310]},{"name":"PWRSCHEMESENUMPROC","features":[303,310]},{"name":"PWRSCHEMESENUMPROC_V1","features":[303,310]},{"name":"PdcInvocation","features":[310]},{"name":"PhysicalPowerButtonPress","features":[310]},{"name":"PlatformIdleStates","features":[310]},{"name":"PlatformIdleVeto","features":[310]},{"name":"PlatformInformation","features":[310]},{"name":"PlatformRole","features":[310]},{"name":"PlatformRoleAppliancePC","features":[310]},{"name":"PlatformRoleDesktop","features":[310]},{"name":"PlatformRoleEnterpriseServer","features":[310]},{"name":"PlatformRoleMaximum","features":[310]},{"name":"PlatformRoleMobile","features":[310]},{"name":"PlatformRolePerformanceServer","features":[310]},{"name":"PlatformRoleSOHOServer","features":[310]},{"name":"PlatformRoleSlate","features":[310]},{"name":"PlatformRoleUnspecified","features":[310]},{"name":"PlatformRoleWorkstation","features":[310]},{"name":"PlmPowerRequestCreate","features":[310]},{"name":"PoAc","features":[310]},{"name":"PoConditionMaximum","features":[310]},{"name":"PoDc","features":[310]},{"name":"PoHot","features":[310]},{"name":"PowerActionDisplayOff","features":[310]},{"name":"PowerActionHibernate","features":[310]},{"name":"PowerActionNone","features":[310]},{"name":"PowerActionReserved","features":[310]},{"name":"PowerActionShutdown","features":[310]},{"name":"PowerActionShutdownOff","features":[310]},{"name":"PowerActionShutdownReset","features":[310]},{"name":"PowerActionSleep","features":[310]},{"name":"PowerActionWarmEject","features":[310]},{"name":"PowerCanRestoreIndividualDefaultPowerScheme","features":[303,310]},{"name":"PowerClearRequest","features":[303,310]},{"name":"PowerCreatePossibleSetting","features":[303,310,364]},{"name":"PowerCreateRequest","features":[303,310,338]},{"name":"PowerCreateSetting","features":[303,310,364]},{"name":"PowerDeleteScheme","features":[303,310,364]},{"name":"PowerDeterminePlatformRole","features":[310]},{"name":"PowerDeterminePlatformRoleEx","features":[310]},{"name":"PowerDeviceD0","features":[310]},{"name":"PowerDeviceD1","features":[310]},{"name":"PowerDeviceD2","features":[310]},{"name":"PowerDeviceD3","features":[310]},{"name":"PowerDeviceMaximum","features":[310]},{"name":"PowerDeviceUnspecified","features":[310]},{"name":"PowerDuplicateScheme","features":[303,310,364]},{"name":"PowerEnumerate","features":[303,310,364]},{"name":"PowerGetActiveScheme","features":[303,310,364]},{"name":"PowerImportPowerScheme","features":[303,310,364]},{"name":"PowerInformationInternal","features":[310]},{"name":"PowerInformationLevelMaximum","features":[310]},{"name":"PowerInformationLevelUnused0","features":[310]},{"name":"PowerIsSettingRangeDefined","features":[303,310]},{"name":"PowerOpenSystemPowerKey","features":[303,310,364]},{"name":"PowerOpenUserPowerKey","features":[303,310,364]},{"name":"PowerReadACDefaultIndex","features":[310,364]},{"name":"PowerReadACValue","features":[303,310,364]},{"name":"PowerReadACValueIndex","features":[310,364]},{"name":"PowerReadDCDefaultIndex","features":[310,364]},{"name":"PowerReadDCValue","features":[303,310,364]},{"name":"PowerReadDCValueIndex","features":[310,364]},{"name":"PowerReadDescription","features":[303,310,364]},{"name":"PowerReadFriendlyName","features":[303,310,364]},{"name":"PowerReadIconResourceSpecifier","features":[303,310,364]},{"name":"PowerReadPossibleDescription","features":[303,310,364]},{"name":"PowerReadPossibleFriendlyName","features":[303,310,364]},{"name":"PowerReadPossibleValue","features":[303,310,364]},{"name":"PowerReadSettingAttributes","features":[310]},{"name":"PowerReadValueIncrement","features":[303,310,364]},{"name":"PowerReadValueMax","features":[303,310,364]},{"name":"PowerReadValueMin","features":[303,310,364]},{"name":"PowerReadValueUnitsSpecifier","features":[303,310,364]},{"name":"PowerRegisterForEffectivePowerModeNotifications","features":[310]},{"name":"PowerRegisterSuspendResumeNotification","features":[303,310,365]},{"name":"PowerRemovePowerSetting","features":[303,310]},{"name":"PowerReplaceDefaultPowerSchemes","features":[310]},{"name":"PowerReportThermalEvent","features":[303,310]},{"name":"PowerRequestAction","features":[310]},{"name":"PowerRequestActionInternal","features":[310]},{"name":"PowerRequestAwayModeRequired","features":[310]},{"name":"PowerRequestCreate","features":[310]},{"name":"PowerRequestDisplayRequired","features":[310]},{"name":"PowerRequestExecutionRequired","features":[310]},{"name":"PowerRequestSystemRequired","features":[310]},{"name":"PowerRestoreDefaultPowerSchemes","features":[303,310]},{"name":"PowerRestoreIndividualDefaultPowerScheme","features":[303,310]},{"name":"PowerSetActiveScheme","features":[303,310,364]},{"name":"PowerSetRequest","features":[303,310]},{"name":"PowerSettingAccessCheck","features":[303,310]},{"name":"PowerSettingAccessCheckEx","features":[303,310,364]},{"name":"PowerSettingNotificationName","features":[310]},{"name":"PowerSettingRegisterNotification","features":[303,310,365]},{"name":"PowerSettingUnregisterNotification","features":[303,310]},{"name":"PowerShutdownNotification","features":[310]},{"name":"PowerSystemHibernate","features":[310]},{"name":"PowerSystemMaximum","features":[310]},{"name":"PowerSystemShutdown","features":[310]},{"name":"PowerSystemSleeping1","features":[310]},{"name":"PowerSystemSleeping2","features":[310]},{"name":"PowerSystemSleeping3","features":[310]},{"name":"PowerSystemUnspecified","features":[310]},{"name":"PowerSystemWorking","features":[310]},{"name":"PowerUnregisterFromEffectivePowerModeNotifications","features":[310]},{"name":"PowerUnregisterSuspendResumeNotification","features":[303,310]},{"name":"PowerUserInactive","features":[310]},{"name":"PowerUserInvalid","features":[310]},{"name":"PowerUserMaximum","features":[310]},{"name":"PowerUserNotPresent","features":[310]},{"name":"PowerUserPresent","features":[310]},{"name":"PowerWriteACDefaultIndex","features":[310,364]},{"name":"PowerWriteACValueIndex","features":[310,364]},{"name":"PowerWriteDCDefaultIndex","features":[310,364]},{"name":"PowerWriteDCValueIndex","features":[310,364]},{"name":"PowerWriteDescription","features":[303,310,364]},{"name":"PowerWriteFriendlyName","features":[303,310,364]},{"name":"PowerWriteIconResourceSpecifier","features":[303,310,364]},{"name":"PowerWritePossibleDescription","features":[303,310,364]},{"name":"PowerWritePossibleFriendlyName","features":[303,310,364]},{"name":"PowerWritePossibleValue","features":[303,310,364]},{"name":"PowerWriteSettingAttributes","features":[303,310]},{"name":"PowerWriteValueIncrement","features":[303,310,364]},{"name":"PowerWriteValueMax","features":[303,310,364]},{"name":"PowerWriteValueMin","features":[303,310,364]},{"name":"PowerWriteValueUnitsSpecifier","features":[303,310,364]},{"name":"ProcessorCap","features":[310]},{"name":"ProcessorIdleDomains","features":[310]},{"name":"ProcessorIdleStates","features":[310]},{"name":"ProcessorIdleStatesHv","features":[310]},{"name":"ProcessorIdleVeto","features":[310]},{"name":"ProcessorInformation","features":[310]},{"name":"ProcessorInformationEx","features":[310]},{"name":"ProcessorLoad","features":[310]},{"name":"ProcessorPerfCapHv","features":[310]},{"name":"ProcessorPerfStates","features":[310]},{"name":"ProcessorPerfStatesHv","features":[310]},{"name":"ProcessorPowerPolicyAc","features":[310]},{"name":"ProcessorPowerPolicyCurrent","features":[310]},{"name":"ProcessorPowerPolicyDc","features":[310]},{"name":"ProcessorSetIdle","features":[310]},{"name":"ProcessorStateHandler","features":[310]},{"name":"ProcessorStateHandler2","features":[310]},{"name":"QueryPotentialDripsConstraint","features":[310]},{"name":"RESUME_PERFORMANCE","features":[310]},{"name":"ReadGlobalPwrPolicy","features":[303,310]},{"name":"ReadProcessorPwrScheme","features":[303,310]},{"name":"ReadPwrScheme","features":[303,310]},{"name":"RegisterPowerSettingNotification","features":[303,310,365]},{"name":"RegisterSpmPowerSettings","features":[310]},{"name":"RegisterSuspendResumeNotification","features":[303,310,365]},{"name":"RequestWakeupLatency","features":[303,310]},{"name":"SET_POWER_SETTING_VALUE","features":[310]},{"name":"SYSTEM_BATTERY_STATE","features":[303,310]},{"name":"SYSTEM_POWER_CAPABILITIES","features":[303,310]},{"name":"SYSTEM_POWER_CONDITION","features":[310]},{"name":"SYSTEM_POWER_INFORMATION","features":[310]},{"name":"SYSTEM_POWER_LEVEL","features":[303,310]},{"name":"SYSTEM_POWER_POLICY","features":[303,310]},{"name":"SYSTEM_POWER_STATE","features":[310]},{"name":"SYSTEM_POWER_STATUS","features":[310]},{"name":"SYS_BUTTON_LID","features":[310]},{"name":"SYS_BUTTON_LID_CHANGED","features":[310]},{"name":"SYS_BUTTON_LID_CLOSED","features":[310]},{"name":"SYS_BUTTON_LID_INITIAL","features":[310]},{"name":"SYS_BUTTON_LID_OPEN","features":[310]},{"name":"SYS_BUTTON_LID_STATE_MASK","features":[310]},{"name":"SYS_BUTTON_POWER","features":[310]},{"name":"SYS_BUTTON_SLEEP","features":[310]},{"name":"SYS_BUTTON_WAKE","features":[310]},{"name":"ScreenOff","features":[310]},{"name":"SendSuspendResumeNotification","features":[310]},{"name":"SessionAllowExternalDmaDevices","features":[310]},{"name":"SessionConnectNotification","features":[310]},{"name":"SessionDisplayState","features":[310]},{"name":"SessionLockState","features":[310]},{"name":"SessionPowerCleanup","features":[310]},{"name":"SessionPowerInit","features":[310]},{"name":"SessionRITState","features":[310]},{"name":"SetActivePwrScheme","features":[303,310]},{"name":"SetPowerSettingValue","features":[310]},{"name":"SetShutdownSelectedTime","features":[310]},{"name":"SetSuspendState","features":[303,310]},{"name":"SetSystemPowerState","features":[303,310]},{"name":"SetThreadExecutionState","features":[310]},{"name":"SuspendResumeInvocation","features":[310]},{"name":"SystemBatteryState","features":[310]},{"name":"SystemBatteryStatePrecise","features":[310]},{"name":"SystemExecutionState","features":[310]},{"name":"SystemHiberFileInformation","features":[310]},{"name":"SystemHiberFileSize","features":[310]},{"name":"SystemHiberFileType","features":[310]},{"name":"SystemHiberbootState","features":[310]},{"name":"SystemMonitorHiberBootPowerOff","features":[310]},{"name":"SystemPowerCapabilities","features":[310]},{"name":"SystemPowerInformation","features":[310]},{"name":"SystemPowerLoggingEntry","features":[310]},{"name":"SystemPowerPolicyAc","features":[310]},{"name":"SystemPowerPolicyCurrent","features":[310]},{"name":"SystemPowerPolicyDc","features":[310]},{"name":"SystemPowerStateHandler","features":[310]},{"name":"SystemPowerStateLogging","features":[310]},{"name":"SystemPowerStateNotifyHandler","features":[310]},{"name":"SystemReserveHiberFile","features":[310]},{"name":"SystemVideoState","features":[310]},{"name":"SystemWakeSource","features":[310]},{"name":"THERMAL_COOLING_INTERFACE_VERSION","features":[310]},{"name":"THERMAL_DEVICE_INTERFACE_VERSION","features":[310]},{"name":"THERMAL_EVENT","features":[310]},{"name":"THERMAL_EVENT_VERSION","features":[310]},{"name":"THERMAL_INFORMATION","features":[310]},{"name":"THERMAL_POLICY","features":[303,310]},{"name":"THERMAL_POLICY_VERSION_1","features":[310]},{"name":"THERMAL_POLICY_VERSION_2","features":[310]},{"name":"THERMAL_WAIT_READ","features":[310]},{"name":"TZ_ACTIVATION_REASON_CURRENT","features":[310]},{"name":"TZ_ACTIVATION_REASON_THERMAL","features":[310]},{"name":"ThermalEvent","features":[310]},{"name":"ThermalStandby","features":[310]},{"name":"TraceApplicationPowerMessage","features":[310]},{"name":"TraceApplicationPowerMessageEnd","features":[310]},{"name":"TraceServicePowerMessage","features":[310]},{"name":"UNKNOWN_CAPACITY","features":[310]},{"name":"UNKNOWN_CURRENT","features":[310]},{"name":"UNKNOWN_RATE","features":[310]},{"name":"UNKNOWN_VOLTAGE","features":[310]},{"name":"USB_CHARGER_PORT","features":[310]},{"name":"USER_ACTIVITY_PRESENCE","features":[310]},{"name":"USER_POWER_POLICY","features":[303,310]},{"name":"UnregisterPowerSettingNotification","features":[303,310]},{"name":"UnregisterSuspendResumeNotification","features":[303,310]},{"name":"UpdateBlackBoxRecorder","features":[310]},{"name":"UsbChargerPort_Legacy","features":[310]},{"name":"UsbChargerPort_Max","features":[310]},{"name":"UsbChargerPort_TypeC","features":[310]},{"name":"UserNotPresent","features":[310]},{"name":"UserPresence","features":[310]},{"name":"UserPresent","features":[310]},{"name":"UserUnknown","features":[310]},{"name":"ValidatePowerPolicies","features":[303,310]},{"name":"VerifyProcessorPowerPolicyAc","features":[310]},{"name":"VerifyProcessorPowerPolicyDc","features":[310]},{"name":"VerifySystemPolicyAc","features":[310]},{"name":"VerifySystemPolicyDc","features":[310]},{"name":"WAKE_ALARM_INFORMATION","features":[310]},{"name":"WakeTimerList","features":[310]},{"name":"WriteGlobalPwrPolicy","features":[303,310]},{"name":"WriteProcessorPwrScheme","features":[303,310]},{"name":"WritePwrScheme","features":[303,310]}],"592":[{"name":"ENUM_PAGE_FILE_INFORMATION","features":[572]},{"name":"ENUM_PROCESS_MODULES_EX_FLAGS","features":[572]},{"name":"EmptyWorkingSet","features":[303,572]},{"name":"EnumDeviceDrivers","features":[303,572]},{"name":"EnumPageFilesA","features":[303,572]},{"name":"EnumPageFilesW","features":[303,572]},{"name":"EnumProcessModules","features":[303,572]},{"name":"EnumProcessModulesEx","features":[303,572]},{"name":"EnumProcesses","features":[303,572]},{"name":"GetDeviceDriverBaseNameA","features":[572]},{"name":"GetDeviceDriverBaseNameW","features":[572]},{"name":"GetDeviceDriverFileNameA","features":[572]},{"name":"GetDeviceDriverFileNameW","features":[572]},{"name":"GetMappedFileNameA","features":[303,572]},{"name":"GetMappedFileNameW","features":[303,572]},{"name":"GetModuleBaseNameA","features":[303,572]},{"name":"GetModuleBaseNameW","features":[303,572]},{"name":"GetModuleFileNameExA","features":[303,572]},{"name":"GetModuleFileNameExW","features":[303,572]},{"name":"GetModuleInformation","features":[303,572]},{"name":"GetPerformanceInfo","features":[303,572]},{"name":"GetProcessImageFileNameA","features":[303,572]},{"name":"GetProcessImageFileNameW","features":[303,572]},{"name":"GetProcessMemoryInfo","features":[303,572]},{"name":"GetWsChanges","features":[303,572]},{"name":"GetWsChangesEx","features":[303,572]},{"name":"InitializeProcessForWsWatch","features":[303,572]},{"name":"K32EmptyWorkingSet","features":[303,572]},{"name":"K32EnumDeviceDrivers","features":[303,572]},{"name":"K32EnumPageFilesA","features":[303,572]},{"name":"K32EnumPageFilesW","features":[303,572]},{"name":"K32EnumProcessModules","features":[303,572]},{"name":"K32EnumProcessModulesEx","features":[303,572]},{"name":"K32EnumProcesses","features":[303,572]},{"name":"K32GetDeviceDriverBaseNameA","features":[572]},{"name":"K32GetDeviceDriverBaseNameW","features":[572]},{"name":"K32GetDeviceDriverFileNameA","features":[572]},{"name":"K32GetDeviceDriverFileNameW","features":[572]},{"name":"K32GetMappedFileNameA","features":[303,572]},{"name":"K32GetMappedFileNameW","features":[303,572]},{"name":"K32GetModuleBaseNameA","features":[303,572]},{"name":"K32GetModuleBaseNameW","features":[303,572]},{"name":"K32GetModuleFileNameExA","features":[303,572]},{"name":"K32GetModuleFileNameExW","features":[303,572]},{"name":"K32GetModuleInformation","features":[303,572]},{"name":"K32GetPerformanceInfo","features":[303,572]},{"name":"K32GetProcessImageFileNameA","features":[303,572]},{"name":"K32GetProcessImageFileNameW","features":[303,572]},{"name":"K32GetProcessMemoryInfo","features":[303,572]},{"name":"K32GetWsChanges","features":[303,572]},{"name":"K32GetWsChangesEx","features":[303,572]},{"name":"K32InitializeProcessForWsWatch","features":[303,572]},{"name":"K32QueryWorkingSet","features":[303,572]},{"name":"K32QueryWorkingSetEx","features":[303,572]},{"name":"LIST_MODULES_32BIT","features":[572]},{"name":"LIST_MODULES_64BIT","features":[572]},{"name":"LIST_MODULES_ALL","features":[572]},{"name":"LIST_MODULES_DEFAULT","features":[572]},{"name":"MODULEINFO","features":[572]},{"name":"PENUM_PAGE_FILE_CALLBACKA","features":[303,572]},{"name":"PENUM_PAGE_FILE_CALLBACKW","features":[303,572]},{"name":"PERFORMANCE_INFORMATION","features":[572]},{"name":"PROCESS_MEMORY_COUNTERS","features":[572]},{"name":"PROCESS_MEMORY_COUNTERS_EX","features":[572]},{"name":"PROCESS_MEMORY_COUNTERS_EX2","features":[572]},{"name":"PSAPI_VERSION","features":[572]},{"name":"PSAPI_WORKING_SET_BLOCK","features":[572]},{"name":"PSAPI_WORKING_SET_EX_BLOCK","features":[572]},{"name":"PSAPI_WORKING_SET_EX_INFORMATION","features":[572]},{"name":"PSAPI_WORKING_SET_INFORMATION","features":[572]},{"name":"PSAPI_WS_WATCH_INFORMATION","features":[572]},{"name":"PSAPI_WS_WATCH_INFORMATION_EX","features":[572]},{"name":"QueryWorkingSet","features":[303,572]},{"name":"QueryWorkingSetEx","features":[303,572]}],"593":[{"name":"FACILITY_PINT_STATUS_CODE","features":[573]},{"name":"FACILITY_RTC_INTERFACE","features":[573]},{"name":"FACILITY_SIP_STATUS_CODE","features":[573]},{"name":"INetworkTransportSettings","features":[573]},{"name":"INotificationTransportSync","features":[573]},{"name":"IRTCBuddy","features":[573]},{"name":"IRTCBuddy2","features":[573]},{"name":"IRTCBuddyEvent","features":[354,573]},{"name":"IRTCBuddyEvent2","features":[354,573]},{"name":"IRTCBuddyGroup","features":[573]},{"name":"IRTCBuddyGroupEvent","features":[354,573]},{"name":"IRTCClient","features":[573]},{"name":"IRTCClient2","features":[573]},{"name":"IRTCClientEvent","features":[354,573]},{"name":"IRTCClientPortManagement","features":[573]},{"name":"IRTCClientPresence","features":[573]},{"name":"IRTCClientPresence2","features":[573]},{"name":"IRTCClientProvisioning","features":[573]},{"name":"IRTCClientProvisioning2","features":[573]},{"name":"IRTCCollection","features":[354,573]},{"name":"IRTCDispatchEventNotification","features":[354,573]},{"name":"IRTCEnumBuddies","features":[573]},{"name":"IRTCEnumGroups","features":[573]},{"name":"IRTCEnumParticipants","features":[573]},{"name":"IRTCEnumPresenceDevices","features":[573]},{"name":"IRTCEnumProfiles","features":[573]},{"name":"IRTCEnumUserSearchResults","features":[573]},{"name":"IRTCEnumWatchers","features":[573]},{"name":"IRTCEventNotification","features":[573]},{"name":"IRTCInfoEvent","features":[354,573]},{"name":"IRTCIntensityEvent","features":[354,573]},{"name":"IRTCMediaEvent","features":[354,573]},{"name":"IRTCMediaRequestEvent","features":[354,573]},{"name":"IRTCMessagingEvent","features":[354,573]},{"name":"IRTCParticipant","features":[573]},{"name":"IRTCParticipantStateChangeEvent","features":[354,573]},{"name":"IRTCPortManager","features":[573]},{"name":"IRTCPresenceContact","features":[573]},{"name":"IRTCPresenceDataEvent","features":[354,573]},{"name":"IRTCPresenceDevice","features":[573]},{"name":"IRTCPresencePropertyEvent","features":[354,573]},{"name":"IRTCPresenceStatusEvent","features":[354,573]},{"name":"IRTCProfile","features":[573]},{"name":"IRTCProfile2","features":[573]},{"name":"IRTCProfileEvent","features":[354,573]},{"name":"IRTCProfileEvent2","features":[354,573]},{"name":"IRTCReInviteEvent","features":[354,573]},{"name":"IRTCRegistrationStateChangeEvent","features":[354,573]},{"name":"IRTCRoamingEvent","features":[354,573]},{"name":"IRTCSession","features":[573]},{"name":"IRTCSession2","features":[573]},{"name":"IRTCSessionCallControl","features":[573]},{"name":"IRTCSessionDescriptionManager","features":[573]},{"name":"IRTCSessionOperationCompleteEvent","features":[354,573]},{"name":"IRTCSessionOperationCompleteEvent2","features":[354,573]},{"name":"IRTCSessionPortManagement","features":[573]},{"name":"IRTCSessionReferStatusEvent","features":[354,573]},{"name":"IRTCSessionReferredEvent","features":[354,573]},{"name":"IRTCSessionStateChangeEvent","features":[354,573]},{"name":"IRTCSessionStateChangeEvent2","features":[354,573]},{"name":"IRTCUserSearch","features":[573]},{"name":"IRTCUserSearchQuery","features":[573]},{"name":"IRTCUserSearchResult","features":[573]},{"name":"IRTCUserSearchResultsEvent","features":[354,573]},{"name":"IRTCWatcher","features":[573]},{"name":"IRTCWatcher2","features":[573]},{"name":"IRTCWatcherEvent","features":[354,573]},{"name":"IRTCWatcherEvent2","features":[354,573]},{"name":"ITransportSettingsInternal","features":[573]},{"name":"RTCAD_MICROPHONE","features":[573]},{"name":"RTCAD_SPEAKER","features":[573]},{"name":"RTCAM_AUTOMATICALLY_ACCEPT","features":[573]},{"name":"RTCAM_AUTOMATICALLY_REJECT","features":[573]},{"name":"RTCAM_NOT_SUPPORTED","features":[573]},{"name":"RTCAM_OFFER_SESSION_EVENT","features":[573]},{"name":"RTCAS_SCOPE_ALL","features":[573]},{"name":"RTCAS_SCOPE_DOMAIN","features":[573]},{"name":"RTCAS_SCOPE_USER","features":[573]},{"name":"RTCAU_BASIC","features":[573]},{"name":"RTCAU_DIGEST","features":[573]},{"name":"RTCAU_KERBEROS","features":[573]},{"name":"RTCAU_NTLM","features":[573]},{"name":"RTCAU_USE_LOGON_CRED","features":[573]},{"name":"RTCBET_BUDDY_ADD","features":[573]},{"name":"RTCBET_BUDDY_REMOVE","features":[573]},{"name":"RTCBET_BUDDY_ROAMED","features":[573]},{"name":"RTCBET_BUDDY_STATE_CHANGE","features":[573]},{"name":"RTCBET_BUDDY_SUBSCRIBED","features":[573]},{"name":"RTCBET_BUDDY_UPDATE","features":[573]},{"name":"RTCBT_ALWAYS_OFFLINE","features":[573]},{"name":"RTCBT_ALWAYS_ONLINE","features":[573]},{"name":"RTCBT_POLL","features":[573]},{"name":"RTCBT_SUBSCRIBED","features":[573]},{"name":"RTCCET_ASYNC_CLEANUP_DONE","features":[573]},{"name":"RTCCET_DEVICE_CHANGE","features":[573]},{"name":"RTCCET_NETWORK_QUALITY_CHANGE","features":[573]},{"name":"RTCCET_VOLUME_CHANGE","features":[573]},{"name":"RTCCS_FAIL_ON_REDIRECT","features":[573]},{"name":"RTCCS_FORCE_PROFILE","features":[573]},{"name":"RTCClient","features":[573]},{"name":"RTCEF_ALL","features":[573]},{"name":"RTCEF_BUDDY","features":[573]},{"name":"RTCEF_BUDDY2","features":[573]},{"name":"RTCEF_CLIENT","features":[573]},{"name":"RTCEF_GROUP","features":[573]},{"name":"RTCEF_INFO","features":[573]},{"name":"RTCEF_INTENSITY","features":[573]},{"name":"RTCEF_MEDIA","features":[573]},{"name":"RTCEF_MEDIA_REQUEST","features":[573]},{"name":"RTCEF_MESSAGING","features":[573]},{"name":"RTCEF_PARTICIPANT_STATE_CHANGE","features":[573]},{"name":"RTCEF_PRESENCE_DATA","features":[573]},{"name":"RTCEF_PRESENCE_PROPERTY","features":[573]},{"name":"RTCEF_PRESENCE_STATUS","features":[573]},{"name":"RTCEF_PROFILE","features":[573]},{"name":"RTCEF_REGISTRATION_STATE_CHANGE","features":[573]},{"name":"RTCEF_REINVITE","features":[573]},{"name":"RTCEF_ROAMING","features":[573]},{"name":"RTCEF_SESSION_OPERATION_COMPLETE","features":[573]},{"name":"RTCEF_SESSION_REFERRED","features":[573]},{"name":"RTCEF_SESSION_REFER_STATUS","features":[573]},{"name":"RTCEF_SESSION_STATE_CHANGE","features":[573]},{"name":"RTCEF_USERSEARCH","features":[573]},{"name":"RTCEF_WATCHER","features":[573]},{"name":"RTCEF_WATCHER2","features":[573]},{"name":"RTCE_BUDDY","features":[573]},{"name":"RTCE_CLIENT","features":[573]},{"name":"RTCE_GROUP","features":[573]},{"name":"RTCE_INFO","features":[573]},{"name":"RTCE_INTENSITY","features":[573]},{"name":"RTCE_MEDIA","features":[573]},{"name":"RTCE_MEDIA_REQUEST","features":[573]},{"name":"RTCE_MESSAGING","features":[573]},{"name":"RTCE_PARTICIPANT_STATE_CHANGE","features":[573]},{"name":"RTCE_PRESENCE_DATA","features":[573]},{"name":"RTCE_PRESENCE_PROPERTY","features":[573]},{"name":"RTCE_PRESENCE_STATUS","features":[573]},{"name":"RTCE_PROFILE","features":[573]},{"name":"RTCE_REGISTRATION_STATE_CHANGE","features":[573]},{"name":"RTCE_REINVITE","features":[573]},{"name":"RTCE_ROAMING","features":[573]},{"name":"RTCE_SESSION_OPERATION_COMPLETE","features":[573]},{"name":"RTCE_SESSION_REFERRED","features":[573]},{"name":"RTCE_SESSION_REFER_STATUS","features":[573]},{"name":"RTCE_SESSION_STATE_CHANGE","features":[573]},{"name":"RTCE_USERSEARCH","features":[573]},{"name":"RTCE_WATCHER","features":[573]},{"name":"RTCGET_GROUP_ADD","features":[573]},{"name":"RTCGET_GROUP_BUDDY_ADD","features":[573]},{"name":"RTCGET_GROUP_BUDDY_REMOVE","features":[573]},{"name":"RTCGET_GROUP_REMOVE","features":[573]},{"name":"RTCGET_GROUP_ROAMED","features":[573]},{"name":"RTCGET_GROUP_UPDATE","features":[573]},{"name":"RTCIF_DISABLE_MEDIA","features":[573]},{"name":"RTCIF_DISABLE_STRICT_DNS","features":[573]},{"name":"RTCIF_DISABLE_UPNP","features":[573]},{"name":"RTCIF_ENABLE_SERVER_CLASS","features":[573]},{"name":"RTCLM_BOTH","features":[573]},{"name":"RTCLM_DYNAMIC","features":[573]},{"name":"RTCLM_NONE","features":[573]},{"name":"RTCMER_BAD_DEVICE","features":[573]},{"name":"RTCMER_HOLD","features":[573]},{"name":"RTCMER_NORMAL","features":[573]},{"name":"RTCMER_NO_PORT","features":[573]},{"name":"RTCMER_PORT_MAPPING_FAILED","features":[573]},{"name":"RTCMER_REMOTE_REQUEST","features":[573]},{"name":"RTCMER_TIMEOUT","features":[573]},{"name":"RTCMET_FAILED","features":[573]},{"name":"RTCMET_STARTED","features":[573]},{"name":"RTCMET_STOPPED","features":[573]},{"name":"RTCMSET_MESSAGE","features":[573]},{"name":"RTCMSET_STATUS","features":[573]},{"name":"RTCMT_AUDIO_RECEIVE","features":[573]},{"name":"RTCMT_AUDIO_SEND","features":[573]},{"name":"RTCMT_T120_SENDRECV","features":[573]},{"name":"RTCMT_VIDEO_RECEIVE","features":[573]},{"name":"RTCMT_VIDEO_SEND","features":[573]},{"name":"RTCMUS_IDLE","features":[573]},{"name":"RTCMUS_TYPING","features":[573]},{"name":"RTCOWM_AUTOMATICALLY_ADD_WATCHER","features":[573]},{"name":"RTCOWM_OFFER_WATCHER_EVENT","features":[573]},{"name":"RTCPFET_PROFILE_GET","features":[573]},{"name":"RTCPFET_PROFILE_UPDATE","features":[573]},{"name":"RTCPM_ALLOW_LIST_ONLY","features":[573]},{"name":"RTCPM_BLOCK_LIST_EXCLUDED","features":[573]},{"name":"RTCPP_DEVICE_NAME","features":[573]},{"name":"RTCPP_DISPLAYNAME","features":[573]},{"name":"RTCPP_EMAIL","features":[573]},{"name":"RTCPP_MULTIPLE","features":[573]},{"name":"RTCPP_PHONENUMBER","features":[573]},{"name":"RTCPS_ALERTING","features":[573]},{"name":"RTCPS_ANSWERING","features":[573]},{"name":"RTCPS_CONNECTED","features":[573]},{"name":"RTCPS_DISCONNECTED","features":[573]},{"name":"RTCPS_DISCONNECTING","features":[573]},{"name":"RTCPS_IDLE","features":[573]},{"name":"RTCPS_INCOMING","features":[573]},{"name":"RTCPS_INPROGRESS","features":[573]},{"name":"RTCPS_PENDING","features":[573]},{"name":"RTCPT_AUDIO_RTCP","features":[573]},{"name":"RTCPT_AUDIO_RTP","features":[573]},{"name":"RTCPT_SIP","features":[573]},{"name":"RTCPT_VIDEO_RTCP","features":[573]},{"name":"RTCPT_VIDEO_RTP","features":[573]},{"name":"RTCPU_URIDISPLAYDURINGCALL","features":[573]},{"name":"RTCPU_URIDISPLAYDURINGIDLE","features":[573]},{"name":"RTCPU_URIHELPDESK","features":[573]},{"name":"RTCPU_URIHOMEPAGE","features":[573]},{"name":"RTCPU_URIPERSONALACCOUNT","features":[573]},{"name":"RTCRET_BUDDY_ROAMING","features":[573]},{"name":"RTCRET_PRESENCE_ROAMING","features":[573]},{"name":"RTCRET_PROFILE_ROAMING","features":[573]},{"name":"RTCRET_WATCHER_ROAMING","features":[573]},{"name":"RTCRET_WPENDING_ROAMING","features":[573]},{"name":"RTCRF_REGISTER_ALL","features":[573]},{"name":"RTCRF_REGISTER_INVITE_SESSIONS","features":[573]},{"name":"RTCRF_REGISTER_MESSAGE_SESSIONS","features":[573]},{"name":"RTCRF_REGISTER_NOTIFY","features":[573]},{"name":"RTCRF_REGISTER_PRESENCE","features":[573]},{"name":"RTCRIN_FAIL","features":[573]},{"name":"RTCRIN_INCOMING","features":[573]},{"name":"RTCRIN_SUCCEEDED","features":[573]},{"name":"RTCRMF_ALL_ROAMING","features":[573]},{"name":"RTCRMF_BUDDY_ROAMING","features":[573]},{"name":"RTCRMF_PRESENCE_ROAMING","features":[573]},{"name":"RTCRMF_PROFILE_ROAMING","features":[573]},{"name":"RTCRMF_WATCHER_ROAMING","features":[573]},{"name":"RTCRS_ERROR","features":[573]},{"name":"RTCRS_LOCAL_PA_LOGGED_OFF","features":[573]},{"name":"RTCRS_LOGGED_OFF","features":[573]},{"name":"RTCRS_NOT_REGISTERED","features":[573]},{"name":"RTCRS_REGISTERED","features":[573]},{"name":"RTCRS_REGISTERING","features":[573]},{"name":"RTCRS_REJECTED","features":[573]},{"name":"RTCRS_REMOTE_PA_LOGGED_OFF","features":[573]},{"name":"RTCRS_UNREGISTERING","features":[573]},{"name":"RTCRT_MESSAGE","features":[573]},{"name":"RTCRT_PHONE","features":[573]},{"name":"RTCRT_RINGBACK","features":[573]},{"name":"RTCSECL_REQUIRED","features":[573]},{"name":"RTCSECL_SUPPORTED","features":[573]},{"name":"RTCSECL_UNSUPPORTED","features":[573]},{"name":"RTCSECT_AUDIO_VIDEO_MEDIA_ENCRYPTION","features":[573]},{"name":"RTCSECT_T120_MEDIA_ENCRYPTION","features":[573]},{"name":"RTCSI_APPLICATION","features":[573]},{"name":"RTCSI_IM","features":[573]},{"name":"RTCSI_MULTIPARTY_IM","features":[573]},{"name":"RTCSI_PC_TO_PC","features":[573]},{"name":"RTCSI_PC_TO_PHONE","features":[573]},{"name":"RTCSI_PHONE_TO_PHONE","features":[573]},{"name":"RTCSRS_ACCEPTED","features":[573]},{"name":"RTCSRS_DONE","features":[573]},{"name":"RTCSRS_DROPPED","features":[573]},{"name":"RTCSRS_ERROR","features":[573]},{"name":"RTCSRS_REFERRING","features":[573]},{"name":"RTCSRS_REJECTED","features":[573]},{"name":"RTCSS_ANSWERING","features":[573]},{"name":"RTCSS_CONNECTED","features":[573]},{"name":"RTCSS_DISCONNECTED","features":[573]},{"name":"RTCSS_HOLD","features":[573]},{"name":"RTCSS_IDLE","features":[573]},{"name":"RTCSS_INCOMING","features":[573]},{"name":"RTCSS_INPROGRESS","features":[573]},{"name":"RTCSS_REFER","features":[573]},{"name":"RTCST_APPLICATION","features":[573]},{"name":"RTCST_IM","features":[573]},{"name":"RTCST_MULTIPARTY_IM","features":[573]},{"name":"RTCST_PC_TO_PC","features":[573]},{"name":"RTCST_PC_TO_PHONE","features":[573]},{"name":"RTCST_PHONE_TO_PHONE","features":[573]},{"name":"RTCTA_APPSHARING","features":[573]},{"name":"RTCTA_WHITEBOARD","features":[573]},{"name":"RTCTR_BUSY","features":[573]},{"name":"RTCTR_DND","features":[573]},{"name":"RTCTR_INSUFFICIENT_SECURITY_LEVEL","features":[573]},{"name":"RTCTR_NORMAL","features":[573]},{"name":"RTCTR_NOT_SUPPORTED","features":[573]},{"name":"RTCTR_REJECT","features":[573]},{"name":"RTCTR_SHUTDOWN","features":[573]},{"name":"RTCTR_TCP","features":[573]},{"name":"RTCTR_TIMEOUT","features":[573]},{"name":"RTCTR_TLS","features":[573]},{"name":"RTCTR_UDP","features":[573]},{"name":"RTCUSC_CITY","features":[573]},{"name":"RTCUSC_COMPANY","features":[573]},{"name":"RTCUSC_COUNTRY","features":[573]},{"name":"RTCUSC_DISPLAYNAME","features":[573]},{"name":"RTCUSC_EMAIL","features":[573]},{"name":"RTCUSC_OFFICE","features":[573]},{"name":"RTCUSC_PHONE","features":[573]},{"name":"RTCUSC_STATE","features":[573]},{"name":"RTCUSC_TITLE","features":[573]},{"name":"RTCUSC_URI","features":[573]},{"name":"RTCUSP_MAX_MATCHES","features":[573]},{"name":"RTCUSP_TIME_LIMIT","features":[573]},{"name":"RTCVD_PREVIEW","features":[573]},{"name":"RTCVD_RECEIVE","features":[573]},{"name":"RTCWET_WATCHER_ADD","features":[573]},{"name":"RTCWET_WATCHER_OFFERING","features":[573]},{"name":"RTCWET_WATCHER_REMOVE","features":[573]},{"name":"RTCWET_WATCHER_ROAMED","features":[573]},{"name":"RTCWET_WATCHER_UPDATE","features":[573]},{"name":"RTCWMM_BEST_ACE_MATCH","features":[573]},{"name":"RTCWMM_EXACT_MATCH","features":[573]},{"name":"RTCWS_ALLOWED","features":[573]},{"name":"RTCWS_BLOCKED","features":[573]},{"name":"RTCWS_DENIED","features":[573]},{"name":"RTCWS_OFFERING","features":[573]},{"name":"RTCWS_PROMPT","features":[573]},{"name":"RTCWS_UNKNOWN","features":[573]},{"name":"RTCXS_PRESENCE_AWAY","features":[573]},{"name":"RTCXS_PRESENCE_BE_RIGHT_BACK","features":[573]},{"name":"RTCXS_PRESENCE_BUSY","features":[573]},{"name":"RTCXS_PRESENCE_IDLE","features":[573]},{"name":"RTCXS_PRESENCE_OFFLINE","features":[573]},{"name":"RTCXS_PRESENCE_ONLINE","features":[573]},{"name":"RTCXS_PRESENCE_ON_THE_PHONE","features":[573]},{"name":"RTCXS_PRESENCE_OUT_TO_LUNCH","features":[573]},{"name":"RTC_ACE_SCOPE","features":[573]},{"name":"RTC_ANSWER_MODE","features":[573]},{"name":"RTC_AUDIO_DEVICE","features":[573]},{"name":"RTC_BUDDY_EVENT_TYPE","features":[573]},{"name":"RTC_BUDDY_SUBSCRIPTION_TYPE","features":[573]},{"name":"RTC_CLIENT_EVENT_TYPE","features":[573]},{"name":"RTC_DTMF","features":[573]},{"name":"RTC_DTMF_0","features":[573]},{"name":"RTC_DTMF_1","features":[573]},{"name":"RTC_DTMF_2","features":[573]},{"name":"RTC_DTMF_3","features":[573]},{"name":"RTC_DTMF_4","features":[573]},{"name":"RTC_DTMF_5","features":[573]},{"name":"RTC_DTMF_6","features":[573]},{"name":"RTC_DTMF_7","features":[573]},{"name":"RTC_DTMF_8","features":[573]},{"name":"RTC_DTMF_9","features":[573]},{"name":"RTC_DTMF_A","features":[573]},{"name":"RTC_DTMF_B","features":[573]},{"name":"RTC_DTMF_C","features":[573]},{"name":"RTC_DTMF_D","features":[573]},{"name":"RTC_DTMF_FLASH","features":[573]},{"name":"RTC_DTMF_POUND","features":[573]},{"name":"RTC_DTMF_STAR","features":[573]},{"name":"RTC_EVENT","features":[573]},{"name":"RTC_E_ANOTHER_MEDIA_SESSION_ACTIVE","features":[573]},{"name":"RTC_E_BASIC_AUTH_SET_TLS","features":[573]},{"name":"RTC_E_CLIENT_ALREADY_INITIALIZED","features":[573]},{"name":"RTC_E_CLIENT_ALREADY_SHUT_DOWN","features":[573]},{"name":"RTC_E_CLIENT_NOT_INITIALIZED","features":[573]},{"name":"RTC_E_DESTINATION_ADDRESS_LOCAL","features":[573]},{"name":"RTC_E_DESTINATION_ADDRESS_MULTICAST","features":[573]},{"name":"RTC_E_DUPLICATE_BUDDY","features":[573]},{"name":"RTC_E_DUPLICATE_GROUP","features":[573]},{"name":"RTC_E_DUPLICATE_REALM","features":[573]},{"name":"RTC_E_DUPLICATE_WATCHER","features":[573]},{"name":"RTC_E_INVALID_ACL_LIST","features":[573]},{"name":"RTC_E_INVALID_ADDRESS_LOCAL","features":[573]},{"name":"RTC_E_INVALID_BUDDY_LIST","features":[573]},{"name":"RTC_E_INVALID_LISTEN_SOCKET","features":[573]},{"name":"RTC_E_INVALID_OBJECT_STATE","features":[573]},{"name":"RTC_E_INVALID_PORTRANGE","features":[573]},{"name":"RTC_E_INVALID_PREFERENCE_LIST","features":[573]},{"name":"RTC_E_INVALID_PROFILE","features":[573]},{"name":"RTC_E_INVALID_PROXY_ADDRESS","features":[573]},{"name":"RTC_E_INVALID_REGISTRATION_STATE","features":[573]},{"name":"RTC_E_INVALID_SESSION_STATE","features":[573]},{"name":"RTC_E_INVALID_SESSION_TYPE","features":[573]},{"name":"RTC_E_INVALID_SIP_URL","features":[573]},{"name":"RTC_E_LISTENING_SOCKET_NOT_EXIST","features":[573]},{"name":"RTC_E_LOCAL_PHONE_NEEDED","features":[573]},{"name":"RTC_E_MALFORMED_XML","features":[573]},{"name":"RTC_E_MAX_PENDING_OPERATIONS","features":[573]},{"name":"RTC_E_MAX_REDIRECTS","features":[573]},{"name":"RTC_E_MEDIA_AEC","features":[573]},{"name":"RTC_E_MEDIA_AUDIO_DEVICE_NOT_AVAILABLE","features":[573]},{"name":"RTC_E_MEDIA_CONTROLLER_STATE","features":[573]},{"name":"RTC_E_MEDIA_DISABLED","features":[573]},{"name":"RTC_E_MEDIA_ENABLED","features":[573]},{"name":"RTC_E_MEDIA_NEED_TERMINAL","features":[573]},{"name":"RTC_E_MEDIA_SESSION_IN_HOLD","features":[573]},{"name":"RTC_E_MEDIA_SESSION_NOT_EXIST","features":[573]},{"name":"RTC_E_MEDIA_VIDEO_DEVICE_NOT_AVAILABLE","features":[573]},{"name":"RTC_E_NOT_ALLOWED","features":[573]},{"name":"RTC_E_NOT_EXIST","features":[573]},{"name":"RTC_E_NOT_PRESENCE_PROFILE","features":[573]},{"name":"RTC_E_NO_BUDDY","features":[573]},{"name":"RTC_E_NO_DEVICE","features":[573]},{"name":"RTC_E_NO_GROUP","features":[573]},{"name":"RTC_E_NO_PROFILE","features":[573]},{"name":"RTC_E_NO_REALM","features":[573]},{"name":"RTC_E_NO_TRANSPORT","features":[573]},{"name":"RTC_E_NO_WATCHER","features":[573]},{"name":"RTC_E_OPERATION_WITH_TOO_MANY_PARTICIPANTS","features":[573]},{"name":"RTC_E_PINT_STATUS_REJECTED_ALL_BUSY","features":[573]},{"name":"RTC_E_PINT_STATUS_REJECTED_BADNUMBER","features":[573]},{"name":"RTC_E_PINT_STATUS_REJECTED_BUSY","features":[573]},{"name":"RTC_E_PINT_STATUS_REJECTED_CANCELLED","features":[573]},{"name":"RTC_E_PINT_STATUS_REJECTED_NO_ANSWER","features":[573]},{"name":"RTC_E_PINT_STATUS_REJECTED_PL_FAILED","features":[573]},{"name":"RTC_E_PINT_STATUS_REJECTED_SW_FAILED","features":[573]},{"name":"RTC_E_PLATFORM_NOT_SUPPORTED","features":[573]},{"name":"RTC_E_POLICY_NOT_ALLOW","features":[573]},{"name":"RTC_E_PORT_MANAGER_ALREADY_SET","features":[573]},{"name":"RTC_E_PORT_MAPPING_FAILED","features":[573]},{"name":"RTC_E_PORT_MAPPING_UNAVAILABLE","features":[573]},{"name":"RTC_E_PRESENCE_ENABLED","features":[573]},{"name":"RTC_E_PRESENCE_NOT_ENABLED","features":[573]},{"name":"RTC_E_PROFILE_INVALID_SERVER_AUTHMETHOD","features":[573]},{"name":"RTC_E_PROFILE_INVALID_SERVER_PROTOCOL","features":[573]},{"name":"RTC_E_PROFILE_INVALID_SERVER_ROLE","features":[573]},{"name":"RTC_E_PROFILE_INVALID_SESSION","features":[573]},{"name":"RTC_E_PROFILE_INVALID_SESSION_PARTY","features":[573]},{"name":"RTC_E_PROFILE_INVALID_SESSION_TYPE","features":[573]},{"name":"RTC_E_PROFILE_MULTIPLE_REGISTRARS","features":[573]},{"name":"RTC_E_PROFILE_NO_KEY","features":[573]},{"name":"RTC_E_PROFILE_NO_NAME","features":[573]},{"name":"RTC_E_PROFILE_NO_PROVISION","features":[573]},{"name":"RTC_E_PROFILE_NO_SERVER","features":[573]},{"name":"RTC_E_PROFILE_NO_SERVER_ADDRESS","features":[573]},{"name":"RTC_E_PROFILE_NO_SERVER_PROTOCOL","features":[573]},{"name":"RTC_E_PROFILE_NO_USER","features":[573]},{"name":"RTC_E_PROFILE_NO_USER_URI","features":[573]},{"name":"RTC_E_PROFILE_SERVER_UNAUTHORIZED","features":[573]},{"name":"RTC_E_REDIRECT_PROCESSING_FAILED","features":[573]},{"name":"RTC_E_REFER_NOT_ACCEPTED","features":[573]},{"name":"RTC_E_REFER_NOT_ALLOWED","features":[573]},{"name":"RTC_E_REFER_NOT_EXIST","features":[573]},{"name":"RTC_E_REGISTRATION_DEACTIVATED","features":[573]},{"name":"RTC_E_REGISTRATION_REJECTED","features":[573]},{"name":"RTC_E_REGISTRATION_UNREGISTERED","features":[573]},{"name":"RTC_E_ROAMING_ENABLED","features":[573]},{"name":"RTC_E_ROAMING_FAILED","features":[573]},{"name":"RTC_E_ROAMING_OPERATION_INTERRUPTED","features":[573]},{"name":"RTC_E_SDP_CONNECTION_ADDR","features":[573]},{"name":"RTC_E_SDP_FAILED_TO_BUILD","features":[573]},{"name":"RTC_E_SDP_MULTICAST","features":[573]},{"name":"RTC_E_SDP_NOT_PRESENT","features":[573]},{"name":"RTC_E_SDP_NO_MEDIA","features":[573]},{"name":"RTC_E_SDP_PARSE_FAILED","features":[573]},{"name":"RTC_E_SDP_UPDATE_FAILED","features":[573]},{"name":"RTC_E_SECURITY_LEVEL_ALREADY_SET","features":[573]},{"name":"RTC_E_SECURITY_LEVEL_NOT_COMPATIBLE","features":[573]},{"name":"RTC_E_SECURITY_LEVEL_NOT_DEFINED","features":[573]},{"name":"RTC_E_SECURITY_LEVEL_NOT_SUPPORTED_BY_PARTICIPANT","features":[573]},{"name":"RTC_E_SIP_ADDITIONAL_PARTY_IN_TWO_PARTY_SESSION","features":[573]},{"name":"RTC_E_SIP_AUTH_FAILED","features":[573]},{"name":"RTC_E_SIP_AUTH_HEADER_SENT","features":[573]},{"name":"RTC_E_SIP_AUTH_TIME_SKEW","features":[573]},{"name":"RTC_E_SIP_AUTH_TYPE_NOT_SUPPORTED","features":[573]},{"name":"RTC_E_SIP_CALL_CONNECTION_NOT_ESTABLISHED","features":[573]},{"name":"RTC_E_SIP_CALL_DISCONNECTED","features":[573]},{"name":"RTC_E_SIP_CODECS_DO_NOT_MATCH","features":[573]},{"name":"RTC_E_SIP_DNS_FAIL","features":[573]},{"name":"RTC_E_SIP_HEADER_NOT_PRESENT","features":[573]},{"name":"RTC_E_SIP_HIGH_SECURITY_SET_TLS","features":[573]},{"name":"RTC_E_SIP_HOLD_OPERATION_PENDING","features":[573]},{"name":"RTC_E_SIP_INVALID_CERTIFICATE","features":[573]},{"name":"RTC_E_SIP_INVITEE_PARTY_TIMEOUT","features":[573]},{"name":"RTC_E_SIP_INVITE_TRANSACTION_PENDING","features":[573]},{"name":"RTC_E_SIP_NEED_MORE_DATA","features":[573]},{"name":"RTC_E_SIP_NO_STREAM","features":[573]},{"name":"RTC_E_SIP_OTHER_PARTY_JOIN_IN_PROGRESS","features":[573]},{"name":"RTC_E_SIP_PARSE_FAILED","features":[573]},{"name":"RTC_E_SIP_PARTY_ALREADY_IN_SESSION","features":[573]},{"name":"RTC_E_SIP_PEER_PARTICIPANT_IN_MULTIPARTY_SESSION","features":[573]},{"name":"RTC_E_SIP_REFER_OPERATION_PENDING","features":[573]},{"name":"RTC_E_SIP_REQUEST_DESTINATION_ADDR_NOT_PRESENT","features":[573]},{"name":"RTC_E_SIP_SSL_NEGOTIATION_TIMEOUT","features":[573]},{"name":"RTC_E_SIP_SSL_TUNNEL_FAILED","features":[573]},{"name":"RTC_E_SIP_STACK_SHUTDOWN","features":[573]},{"name":"RTC_E_SIP_STREAM_NOT_PRESENT","features":[573]},{"name":"RTC_E_SIP_STREAM_PRESENT","features":[573]},{"name":"RTC_E_SIP_TCP_FAIL","features":[573]},{"name":"RTC_E_SIP_TIMEOUT","features":[573]},{"name":"RTC_E_SIP_TLS_FAIL","features":[573]},{"name":"RTC_E_SIP_TLS_INCOMPATIBLE_ENCRYPTION","features":[573]},{"name":"RTC_E_SIP_TRANSPORT_NOT_SUPPORTED","features":[573]},{"name":"RTC_E_SIP_UDP_SIZE_EXCEEDED","features":[573]},{"name":"RTC_E_SIP_UNHOLD_OPERATION_PENDING","features":[573]},{"name":"RTC_E_START_STREAM","features":[573]},{"name":"RTC_E_STATUS_CLIENT_ADDRESS_INCOMPLETE","features":[573]},{"name":"RTC_E_STATUS_CLIENT_AMBIGUOUS","features":[573]},{"name":"RTC_E_STATUS_CLIENT_BAD_EXTENSION","features":[573]},{"name":"RTC_E_STATUS_CLIENT_BAD_REQUEST","features":[573]},{"name":"RTC_E_STATUS_CLIENT_BUSY_HERE","features":[573]},{"name":"RTC_E_STATUS_CLIENT_CONFLICT","features":[573]},{"name":"RTC_E_STATUS_CLIENT_FORBIDDEN","features":[573]},{"name":"RTC_E_STATUS_CLIENT_GONE","features":[573]},{"name":"RTC_E_STATUS_CLIENT_LENGTH_REQUIRED","features":[573]},{"name":"RTC_E_STATUS_CLIENT_LOOP_DETECTED","features":[573]},{"name":"RTC_E_STATUS_CLIENT_METHOD_NOT_ALLOWED","features":[573]},{"name":"RTC_E_STATUS_CLIENT_NOT_ACCEPTABLE","features":[573]},{"name":"RTC_E_STATUS_CLIENT_NOT_FOUND","features":[573]},{"name":"RTC_E_STATUS_CLIENT_PAYMENT_REQUIRED","features":[573]},{"name":"RTC_E_STATUS_CLIENT_PROXY_AUTHENTICATION_REQUIRED","features":[573]},{"name":"RTC_E_STATUS_CLIENT_REQUEST_ENTITY_TOO_LARGE","features":[573]},{"name":"RTC_E_STATUS_CLIENT_REQUEST_TIMEOUT","features":[573]},{"name":"RTC_E_STATUS_CLIENT_REQUEST_URI_TOO_LARGE","features":[573]},{"name":"RTC_E_STATUS_CLIENT_TEMPORARILY_NOT_AVAILABLE","features":[573]},{"name":"RTC_E_STATUS_CLIENT_TOO_MANY_HOPS","features":[573]},{"name":"RTC_E_STATUS_CLIENT_TRANSACTION_DOES_NOT_EXIST","features":[573]},{"name":"RTC_E_STATUS_CLIENT_UNAUTHORIZED","features":[573]},{"name":"RTC_E_STATUS_CLIENT_UNSUPPORTED_MEDIA_TYPE","features":[573]},{"name":"RTC_E_STATUS_GLOBAL_BUSY_EVERYWHERE","features":[573]},{"name":"RTC_E_STATUS_GLOBAL_DECLINE","features":[573]},{"name":"RTC_E_STATUS_GLOBAL_DOES_NOT_EXIST_ANYWHERE","features":[573]},{"name":"RTC_E_STATUS_GLOBAL_NOT_ACCEPTABLE","features":[573]},{"name":"RTC_E_STATUS_INFO_CALL_FORWARDING","features":[573]},{"name":"RTC_E_STATUS_INFO_QUEUED","features":[573]},{"name":"RTC_E_STATUS_INFO_RINGING","features":[573]},{"name":"RTC_E_STATUS_INFO_TRYING","features":[573]},{"name":"RTC_E_STATUS_NOT_ACCEPTABLE_HERE","features":[573]},{"name":"RTC_E_STATUS_REDIRECT_ALTERNATIVE_SERVICE","features":[573]},{"name":"RTC_E_STATUS_REDIRECT_MOVED_PERMANENTLY","features":[573]},{"name":"RTC_E_STATUS_REDIRECT_MOVED_TEMPORARILY","features":[573]},{"name":"RTC_E_STATUS_REDIRECT_MULTIPLE_CHOICES","features":[573]},{"name":"RTC_E_STATUS_REDIRECT_SEE_OTHER","features":[573]},{"name":"RTC_E_STATUS_REDIRECT_USE_PROXY","features":[573]},{"name":"RTC_E_STATUS_REQUEST_TERMINATED","features":[573]},{"name":"RTC_E_STATUS_SERVER_BAD_GATEWAY","features":[573]},{"name":"RTC_E_STATUS_SERVER_INTERNAL_ERROR","features":[573]},{"name":"RTC_E_STATUS_SERVER_NOT_IMPLEMENTED","features":[573]},{"name":"RTC_E_STATUS_SERVER_SERVER_TIMEOUT","features":[573]},{"name":"RTC_E_STATUS_SERVER_SERVICE_UNAVAILABLE","features":[573]},{"name":"RTC_E_STATUS_SERVER_VERSION_NOT_SUPPORTED","features":[573]},{"name":"RTC_E_STATUS_SESSION_PROGRESS","features":[573]},{"name":"RTC_E_STATUS_SUCCESS","features":[573]},{"name":"RTC_E_TOO_MANY_GROUPS","features":[573]},{"name":"RTC_E_TOO_MANY_RETRIES","features":[573]},{"name":"RTC_E_TOO_SMALL_EXPIRES_VALUE","features":[573]},{"name":"RTC_E_UDP_NOT_SUPPORTED","features":[573]},{"name":"RTC_GROUP_EVENT_TYPE","features":[573]},{"name":"RTC_LISTEN_MODE","features":[573]},{"name":"RTC_MEDIA_EVENT_REASON","features":[573]},{"name":"RTC_MEDIA_EVENT_TYPE","features":[573]},{"name":"RTC_MESSAGING_EVENT_TYPE","features":[573]},{"name":"RTC_MESSAGING_USER_STATUS","features":[573]},{"name":"RTC_OFFER_WATCHER_MODE","features":[573]},{"name":"RTC_PARTICIPANT_STATE","features":[573]},{"name":"RTC_PORT_TYPE","features":[573]},{"name":"RTC_PRESENCE_PROPERTY","features":[573]},{"name":"RTC_PRESENCE_STATUS","features":[573]},{"name":"RTC_PRIVACY_MODE","features":[573]},{"name":"RTC_PROFILE_EVENT_TYPE","features":[573]},{"name":"RTC_PROVIDER_URI","features":[573]},{"name":"RTC_REGISTRATION_STATE","features":[573]},{"name":"RTC_REINVITE_STATE","features":[573]},{"name":"RTC_RING_TYPE","features":[573]},{"name":"RTC_ROAMING_EVENT_TYPE","features":[573]},{"name":"RTC_SECURITY_LEVEL","features":[573]},{"name":"RTC_SECURITY_TYPE","features":[573]},{"name":"RTC_SESSION_REFER_STATUS","features":[573]},{"name":"RTC_SESSION_STATE","features":[573]},{"name":"RTC_SESSION_TYPE","features":[573]},{"name":"RTC_S_ROAMING_NOT_SUPPORTED","features":[573]},{"name":"RTC_T120_APPLET","features":[573]},{"name":"RTC_TERMINATE_REASON","features":[573]},{"name":"RTC_USER_SEARCH_COLUMN","features":[573]},{"name":"RTC_USER_SEARCH_PREFERENCE","features":[573]},{"name":"RTC_VIDEO_DEVICE","features":[573]},{"name":"RTC_WATCHER_EVENT_TYPE","features":[573]},{"name":"RTC_WATCHER_MATCH_MODE","features":[573]},{"name":"RTC_WATCHER_STATE","features":[573]},{"name":"STATUS_SEVERITY_RTC_ERROR","features":[573]},{"name":"TRANSPORT_SETTING","features":[316,573]}],"594":[{"name":"ApplicationRecoveryFinished","features":[303,574]},{"name":"ApplicationRecoveryInProgress","features":[303,574]},{"name":"GetApplicationRecoveryCallback","features":[303,574,335]},{"name":"GetApplicationRestartSettings","features":[303,574]},{"name":"REGISTER_APPLICATION_RESTART_FLAGS","features":[574]},{"name":"RESTART_NO_CRASH","features":[574]},{"name":"RESTART_NO_HANG","features":[574]},{"name":"RESTART_NO_PATCH","features":[574]},{"name":"RESTART_NO_REBOOT","features":[574]},{"name":"RegisterApplicationRecoveryCallback","features":[574,335]},{"name":"RegisterApplicationRestart","features":[574]},{"name":"UnregisterApplicationRecoveryCallback","features":[574]},{"name":"UnregisterApplicationRestart","features":[574]}],"595":[{"name":"AGP_FLAG_NO_1X_RATE","features":[364]},{"name":"AGP_FLAG_NO_2X_RATE","features":[364]},{"name":"AGP_FLAG_NO_4X_RATE","features":[364]},{"name":"AGP_FLAG_NO_8X_RATE","features":[364]},{"name":"AGP_FLAG_NO_FW_ENABLE","features":[364]},{"name":"AGP_FLAG_NO_SBA_ENABLE","features":[364]},{"name":"AGP_FLAG_REVERSE_INITIALIZATION","features":[364]},{"name":"AGP_FLAG_SPECIAL_RESERVE","features":[364]},{"name":"AGP_FLAG_SPECIAL_TARGET","features":[364]},{"name":"APMMENUSUSPEND_DISABLED","features":[364]},{"name":"APMMENUSUSPEND_ENABLED","features":[364]},{"name":"APMMENUSUSPEND_NOCHANGE","features":[364]},{"name":"APMMENUSUSPEND_UNDOCKED","features":[364]},{"name":"APMTIMEOUT_DISABLED","features":[364]},{"name":"BIF_RAWDEVICENEEDSDRIVER","features":[364]},{"name":"BIF_SHOWSIMILARDRIVERS","features":[364]},{"name":"CSCONFIGFLAG_BITS","features":[364]},{"name":"CSCONFIGFLAG_DISABLED","features":[364]},{"name":"CSCONFIGFLAG_DO_NOT_CREATE","features":[364]},{"name":"CSCONFIGFLAG_DO_NOT_START","features":[364]},{"name":"DMSTATEFLAG_APPLYTOALL","features":[364]},{"name":"DOSOPTF_ALWAYSUSE","features":[364]},{"name":"DOSOPTF_DEFAULT","features":[364]},{"name":"DOSOPTF_INDOSSTART","features":[364]},{"name":"DOSOPTF_MULTIPLE","features":[364]},{"name":"DOSOPTF_NEEDSETUP","features":[364]},{"name":"DOSOPTF_PROVIDESUMB","features":[364]},{"name":"DOSOPTF_SUPPORTED","features":[364]},{"name":"DOSOPTF_USESPMODE","features":[364]},{"name":"DOSOPTGF_DEFCLEAN","features":[364]},{"name":"DRIVERSIGN_BLOCKING","features":[364]},{"name":"DRIVERSIGN_NONE","features":[364]},{"name":"DRIVERSIGN_WARNING","features":[364]},{"name":"DSKTLSYSTEMTIME","features":[364]},{"name":"DTRESULTFIX","features":[364]},{"name":"DTRESULTOK","features":[364]},{"name":"DTRESULTPART","features":[364]},{"name":"DTRESULTPROB","features":[364]},{"name":"EISAFLAG_NO_IO_MERGE","features":[364]},{"name":"EISAFLAG_SLOT_IO_FIRST","features":[364]},{"name":"EISA_NO_MAX_FUNCTION","features":[364]},{"name":"GetRegistryValueWithFallbackW","features":[303,364]},{"name":"HKEY","features":[364]},{"name":"HKEY_CLASSES_ROOT","features":[364]},{"name":"HKEY_CURRENT_CONFIG","features":[364]},{"name":"HKEY_CURRENT_USER","features":[364]},{"name":"HKEY_CURRENT_USER_LOCAL_SETTINGS","features":[364]},{"name":"HKEY_DYN_DATA","features":[364]},{"name":"HKEY_LOCAL_MACHINE","features":[364]},{"name":"HKEY_PERFORMANCE_DATA","features":[364]},{"name":"HKEY_PERFORMANCE_NLSTEXT","features":[364]},{"name":"HKEY_PERFORMANCE_TEXT","features":[364]},{"name":"HKEY_USERS","features":[364]},{"name":"IT_COMPACT","features":[364]},{"name":"IT_CUSTOM","features":[364]},{"name":"IT_PORTABLE","features":[364]},{"name":"IT_TYPICAL","features":[364]},{"name":"KEY_ALL_ACCESS","features":[364]},{"name":"KEY_CREATE_LINK","features":[364]},{"name":"KEY_CREATE_SUB_KEY","features":[364]},{"name":"KEY_ENUMERATE_SUB_KEYS","features":[364]},{"name":"KEY_EXECUTE","features":[364]},{"name":"KEY_NOTIFY","features":[364]},{"name":"KEY_QUERY_VALUE","features":[364]},{"name":"KEY_READ","features":[364]},{"name":"KEY_SET_VALUE","features":[364]},{"name":"KEY_WOW64_32KEY","features":[364]},{"name":"KEY_WOW64_64KEY","features":[364]},{"name":"KEY_WOW64_RES","features":[364]},{"name":"KEY_WRITE","features":[364]},{"name":"LASTGOOD_OPERATION","features":[364]},{"name":"LASTGOOD_OPERATION_DELETE","features":[364]},{"name":"LASTGOOD_OPERATION_NOPOSTPROC","features":[364]},{"name":"MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED","features":[364]},{"name":"MF_FLAGS_EVEN_IF_NO_RESOURCE","features":[364]},{"name":"MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE","features":[364]},{"name":"MF_FLAGS_NO_CREATE_IF_NO_RESOURCE","features":[364]},{"name":"NUM_EISA_RANGES","features":[364]},{"name":"NUM_RESOURCE_MAP","features":[364]},{"name":"PCIC_DEFAULT_IRQMASK","features":[364]},{"name":"PCIC_DEFAULT_NUMSOCKETS","features":[364]},{"name":"PCI_OPTIONS_USE_BIOS","features":[364]},{"name":"PCI_OPTIONS_USE_IRQ_STEERING","features":[364]},{"name":"PCMCIA_DEF_MEMBEGIN","features":[364]},{"name":"PCMCIA_DEF_MEMEND","features":[364]},{"name":"PCMCIA_DEF_MEMLEN","features":[364]},{"name":"PCMCIA_DEF_MIN_REGION","features":[364]},{"name":"PCMCIA_OPT_AUTOMEM","features":[364]},{"name":"PCMCIA_OPT_HAVE_SOCKET","features":[364]},{"name":"PCMCIA_OPT_NO_APMREMOVE","features":[364]},{"name":"PCMCIA_OPT_NO_AUDIO","features":[364]},{"name":"PCMCIA_OPT_NO_SOUND","features":[364]},{"name":"PIR_OPTION_DEFAULT","features":[364]},{"name":"PIR_OPTION_ENABLED","features":[364]},{"name":"PIR_OPTION_MSSPEC","features":[364]},{"name":"PIR_OPTION_REALMODE","features":[364]},{"name":"PIR_OPTION_REGISTRY","features":[364]},{"name":"PIR_STATUS_DISABLED","features":[364]},{"name":"PIR_STATUS_ENABLED","features":[364]},{"name":"PIR_STATUS_ERROR","features":[364]},{"name":"PIR_STATUS_MAX","features":[364]},{"name":"PIR_STATUS_MINIPORT_COMPATIBLE","features":[364]},{"name":"PIR_STATUS_MINIPORT_ERROR","features":[364]},{"name":"PIR_STATUS_MINIPORT_INVALID","features":[364]},{"name":"PIR_STATUS_MINIPORT_MAX","features":[364]},{"name":"PIR_STATUS_MINIPORT_NOKEY","features":[364]},{"name":"PIR_STATUS_MINIPORT_NONE","features":[364]},{"name":"PIR_STATUS_MINIPORT_NORMAL","features":[364]},{"name":"PIR_STATUS_MINIPORT_OVERRIDE","features":[364]},{"name":"PIR_STATUS_MINIPORT_SUCCESS","features":[364]},{"name":"PIR_STATUS_TABLE_BAD","features":[364]},{"name":"PIR_STATUS_TABLE_ERROR","features":[364]},{"name":"PIR_STATUS_TABLE_MAX","features":[364]},{"name":"PIR_STATUS_TABLE_MSSPEC","features":[364]},{"name":"PIR_STATUS_TABLE_NONE","features":[364]},{"name":"PIR_STATUS_TABLE_REALMODE","features":[364]},{"name":"PIR_STATUS_TABLE_REGISTRY","features":[364]},{"name":"PIR_STATUS_TABLE_SUCCESS","features":[364]},{"name":"PQUERYHANDLER","features":[364]},{"name":"PROVIDER_KEEPS_VALUE_LENGTH","features":[364]},{"name":"PVALUEA","features":[364]},{"name":"PVALUEW","features":[364]},{"name":"REGDF_CONFLICTDMA","features":[364]},{"name":"REGDF_CONFLICTIO","features":[364]},{"name":"REGDF_CONFLICTIRQ","features":[364]},{"name":"REGDF_CONFLICTMEM","features":[364]},{"name":"REGDF_GENFORCEDCONFIG","features":[364]},{"name":"REGDF_MAPIRQ2TO9","features":[364]},{"name":"REGDF_NEEDFULLCONFIG","features":[364]},{"name":"REGDF_NODETCONFIG","features":[364]},{"name":"REGDF_NOTDETDMA","features":[364]},{"name":"REGDF_NOTDETIO","features":[364]},{"name":"REGDF_NOTDETIRQ","features":[364]},{"name":"REGDF_NOTDETMEM","features":[364]},{"name":"REGDF_NOTVERIFIED","features":[364]},{"name":"REGSTR_DATA_NETOS_IPX","features":[364]},{"name":"REGSTR_DATA_NETOS_NDIS","features":[364]},{"name":"REGSTR_DATA_NETOS_ODI","features":[364]},{"name":"REGSTR_DEFAULT_INSTANCE","features":[364]},{"name":"REGSTR_KEY_ACPIENUM","features":[364]},{"name":"REGSTR_KEY_APM","features":[364]},{"name":"REGSTR_KEY_BIOSENUM","features":[364]},{"name":"REGSTR_KEY_CLASS","features":[364]},{"name":"REGSTR_KEY_CONFIG","features":[364]},{"name":"REGSTR_KEY_CONTROL","features":[364]},{"name":"REGSTR_KEY_CRASHES","features":[364]},{"name":"REGSTR_KEY_CURRENT","features":[364]},{"name":"REGSTR_KEY_CURRENT_ENV","features":[364]},{"name":"REGSTR_KEY_DANGERS","features":[364]},{"name":"REGSTR_KEY_DEFAULT","features":[364]},{"name":"REGSTR_KEY_DETMODVARS","features":[364]},{"name":"REGSTR_KEY_DEVICEPARAMETERS","features":[364]},{"name":"REGSTR_KEY_DEVICE_PROPERTIES","features":[364]},{"name":"REGSTR_KEY_DISPLAY_CLASS","features":[364]},{"name":"REGSTR_KEY_DOSOPTCDROM","features":[364]},{"name":"REGSTR_KEY_DOSOPTMOUSE","features":[364]},{"name":"REGSTR_KEY_DRIVERPARAMETERS","features":[364]},{"name":"REGSTR_KEY_DRIVERS","features":[364]},{"name":"REGSTR_KEY_EBDAUTOEXECBATKEYBOARD","features":[364]},{"name":"REGSTR_KEY_EBDAUTOEXECBATLOCAL","features":[364]},{"name":"REGSTR_KEY_EBDCONFIGSYSKEYBOARD","features":[364]},{"name":"REGSTR_KEY_EBDCONFIGSYSLOCAL","features":[364]},{"name":"REGSTR_KEY_EBDFILESKEYBOARD","features":[364]},{"name":"REGSTR_KEY_EBDFILESLOCAL","features":[364]},{"name":"REGSTR_KEY_EISAENUM","features":[364]},{"name":"REGSTR_KEY_ENUM","features":[364]},{"name":"REGSTR_KEY_EXPLORER","features":[364]},{"name":"REGSTR_KEY_FILTERS","features":[364]},{"name":"REGSTR_KEY_INIUPDATE","features":[364]},{"name":"REGSTR_KEY_ISAENUM","features":[364]},{"name":"REGSTR_KEY_JOYCURR","features":[364]},{"name":"REGSTR_KEY_JOYSETTINGS","features":[364]},{"name":"REGSTR_KEY_KEYBOARD_CLASS","features":[364]},{"name":"REGSTR_KEY_KNOWNDOCKINGSTATES","features":[364]},{"name":"REGSTR_KEY_LOGCONFIG","features":[364]},{"name":"REGSTR_KEY_LOGON","features":[364]},{"name":"REGSTR_KEY_LOWER_FILTER_LEVEL_DEFAULT","features":[364]},{"name":"REGSTR_KEY_MEDIA_CLASS","features":[364]},{"name":"REGSTR_KEY_MODEM_CLASS","features":[364]},{"name":"REGSTR_KEY_MODES","features":[364]},{"name":"REGSTR_KEY_MONITOR_CLASS","features":[364]},{"name":"REGSTR_KEY_MOUSE_CLASS","features":[364]},{"name":"REGSTR_KEY_NDISINFO","features":[364]},{"name":"REGSTR_KEY_NETWORK","features":[364]},{"name":"REGSTR_KEY_NETWORKPROVIDER","features":[364]},{"name":"REGSTR_KEY_NETWORK_PERSISTENT","features":[364]},{"name":"REGSTR_KEY_NETWORK_RECENT","features":[364]},{"name":"REGSTR_KEY_OVERRIDE","features":[364]},{"name":"REGSTR_KEY_PCIENUM","features":[364]},{"name":"REGSTR_KEY_PCMCIA","features":[364]},{"name":"REGSTR_KEY_PCMCIAENUM","features":[364]},{"name":"REGSTR_KEY_PCMCIA_CLASS","features":[364]},{"name":"REGSTR_KEY_PCMTD","features":[364]},{"name":"REGSTR_KEY_PCUNKNOWN","features":[364]},{"name":"REGSTR_KEY_POL_COMPUTERS","features":[364]},{"name":"REGSTR_KEY_POL_DEFAULT","features":[364]},{"name":"REGSTR_KEY_POL_USERGROUPDATA","features":[364]},{"name":"REGSTR_KEY_POL_USERGROUPS","features":[364]},{"name":"REGSTR_KEY_POL_USERS","features":[364]},{"name":"REGSTR_KEY_PORTS_CLASS","features":[364]},{"name":"REGSTR_KEY_PRINTERS","features":[364]},{"name":"REGSTR_KEY_PRINT_PROC","features":[364]},{"name":"REGSTR_KEY_ROOTENUM","features":[364]},{"name":"REGSTR_KEY_RUNHISTORY","features":[364]},{"name":"REGSTR_KEY_SCSI_CLASS","features":[364]},{"name":"REGSTR_KEY_SETUP","features":[364]},{"name":"REGSTR_KEY_SHARES","features":[364]},{"name":"REGSTR_KEY_SYSTEM","features":[364]},{"name":"REGSTR_KEY_SYSTEMBOARD","features":[364]},{"name":"REGSTR_KEY_UPPER_FILTER_LEVEL_DEFAULT","features":[364]},{"name":"REGSTR_KEY_USER","features":[364]},{"name":"REGSTR_KEY_VPOWERDENUM","features":[364]},{"name":"REGSTR_KEY_WINOLDAPP","features":[364]},{"name":"REGSTR_MACHTYPE_ATT_PC","features":[364]},{"name":"REGSTR_MACHTYPE_HP_VECTRA","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPC","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPCAT","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPCCONV","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPCJR","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPCXT","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPCXT_286","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS1","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_25","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_30","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_30_286","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_50","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_50Z","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_55SX","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_60","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_65SX","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_70","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_70_80","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_80","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_90","features":[364]},{"name":"REGSTR_MACHTYPE_IBMPS2_P70","features":[364]},{"name":"REGSTR_MACHTYPE_PHOENIX_PCAT","features":[364]},{"name":"REGSTR_MACHTYPE_UNKNOWN","features":[364]},{"name":"REGSTR_MACHTYPE_ZENITH_PC","features":[364]},{"name":"REGSTR_MAX_VALUE_LENGTH","features":[364]},{"name":"REGSTR_PATH_ADDRARB","features":[364]},{"name":"REGSTR_PATH_AEDEBUG","features":[364]},{"name":"REGSTR_PATH_APPEARANCE","features":[364]},{"name":"REGSTR_PATH_APPPATCH","features":[364]},{"name":"REGSTR_PATH_APPPATHS","features":[364]},{"name":"REGSTR_PATH_BIOSINFO","features":[364]},{"name":"REGSTR_PATH_BUSINFORMATION","features":[364]},{"name":"REGSTR_PATH_CDFS","features":[364]},{"name":"REGSTR_PATH_CHECKBADAPPS","features":[364]},{"name":"REGSTR_PATH_CHECKBADAPPS400","features":[364]},{"name":"REGSTR_PATH_CHECKDISK","features":[364]},{"name":"REGSTR_PATH_CHECKDISKSET","features":[364]},{"name":"REGSTR_PATH_CHECKDISKUDRVS","features":[364]},{"name":"REGSTR_PATH_CHECKVERDLLS","features":[364]},{"name":"REGSTR_PATH_CHILD_PREFIX","features":[364]},{"name":"REGSTR_PATH_CHKLASTCHECK","features":[364]},{"name":"REGSTR_PATH_CHKLASTSURFAN","features":[364]},{"name":"REGSTR_PATH_CLASS","features":[364]},{"name":"REGSTR_PATH_CLASS_NT","features":[364]},{"name":"REGSTR_PATH_CODEPAGE","features":[364]},{"name":"REGSTR_PATH_CODEVICEINSTALLERS","features":[364]},{"name":"REGSTR_PATH_COLORS","features":[364]},{"name":"REGSTR_PATH_COMPUTRNAME","features":[364]},{"name":"REGSTR_PATH_CONTROLPANEL","features":[364]},{"name":"REGSTR_PATH_CONTROLSFOLDER","features":[364]},{"name":"REGSTR_PATH_CRITICALDEVICEDATABASE","features":[364]},{"name":"REGSTR_PATH_CURRENTCONTROLSET","features":[364]},{"name":"REGSTR_PATH_CURRENT_CONTROL_SET","features":[364]},{"name":"REGSTR_PATH_CURSORS","features":[364]},{"name":"REGSTR_PATH_CVNETWORK","features":[364]},{"name":"REGSTR_PATH_DESKTOP","features":[364]},{"name":"REGSTR_PATH_DETECT","features":[364]},{"name":"REGSTR_PATH_DEVICEINSTALLER","features":[364]},{"name":"REGSTR_PATH_DEVICE_CLASSES","features":[364]},{"name":"REGSTR_PATH_DIFX","features":[364]},{"name":"REGSTR_PATH_DISPLAYSETTINGS","features":[364]},{"name":"REGSTR_PATH_DMAARB","features":[364]},{"name":"REGSTR_PATH_DRIVERSIGN","features":[364]},{"name":"REGSTR_PATH_DRIVERSIGN_POLICY","features":[364]},{"name":"REGSTR_PATH_ENUM","features":[364]},{"name":"REGSTR_PATH_ENVIRONMENTS","features":[364]},{"name":"REGSTR_PATH_EVENTLABELS","features":[364]},{"name":"REGSTR_PATH_EXPLORER","features":[364]},{"name":"REGSTR_PATH_FAULT","features":[364]},{"name":"REGSTR_PATH_FILESYSTEM","features":[364]},{"name":"REGSTR_PATH_FILESYSTEM_NOVOLTRACK","features":[364]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR","features":[364]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR0","features":[364]},{"name":"REGSTR_PATH_FONTS","features":[364]},{"name":"REGSTR_PATH_GRPCONV","features":[364]},{"name":"REGSTR_PATH_HACKINIFILE","features":[364]},{"name":"REGSTR_PATH_HWPROFILES","features":[364]},{"name":"REGSTR_PATH_HWPROFILESCURRENT","features":[364]},{"name":"REGSTR_PATH_ICONS","features":[364]},{"name":"REGSTR_PATH_IDCONFIGDB","features":[364]},{"name":"REGSTR_PATH_INSTALLEDFILES","features":[364]},{"name":"REGSTR_PATH_IOARB","features":[364]},{"name":"REGSTR_PATH_IOS","features":[364]},{"name":"REGSTR_PATH_IRQARB","features":[364]},{"name":"REGSTR_PATH_KEYBOARD","features":[364]},{"name":"REGSTR_PATH_KNOWN16DLLS","features":[364]},{"name":"REGSTR_PATH_KNOWNDLLS","features":[364]},{"name":"REGSTR_PATH_KNOWNVXDS","features":[364]},{"name":"REGSTR_PATH_LASTBACKUP","features":[364]},{"name":"REGSTR_PATH_LASTCHECK","features":[364]},{"name":"REGSTR_PATH_LASTGOOD","features":[364]},{"name":"REGSTR_PATH_LASTGOODTMP","features":[364]},{"name":"REGSTR_PATH_LASTOPTIMIZE","features":[364]},{"name":"REGSTR_PATH_LOOKSCHEMES","features":[364]},{"name":"REGSTR_PATH_METRICS","features":[364]},{"name":"REGSTR_PATH_MONITORS","features":[364]},{"name":"REGSTR_PATH_MOUSE","features":[364]},{"name":"REGSTR_PATH_MSDOSOPTS","features":[364]},{"name":"REGSTR_PATH_MULTIMEDIA_AUDIO","features":[364]},{"name":"REGSTR_PATH_MULTI_FUNCTION","features":[364]},{"name":"REGSTR_PATH_NCPSERVER","features":[364]},{"name":"REGSTR_PATH_NETEQUIV","features":[364]},{"name":"REGSTR_PATH_NETWORK_USERSETTINGS","features":[364]},{"name":"REGSTR_PATH_NEWDOSBOX","features":[364]},{"name":"REGSTR_PATH_NONDRIVERSIGN","features":[364]},{"name":"REGSTR_PATH_NONDRIVERSIGN_POLICY","features":[364]},{"name":"REGSTR_PATH_NOSUGGMSDOS","features":[364]},{"name":"REGSTR_PATH_NT_CURRENTVERSION","features":[364]},{"name":"REGSTR_PATH_NWREDIR","features":[364]},{"name":"REGSTR_PATH_PCIIR","features":[364]},{"name":"REGSTR_PATH_PER_HW_ID_STORAGE","features":[364]},{"name":"REGSTR_PATH_PIFCONVERT","features":[364]},{"name":"REGSTR_PATH_POLICIES","features":[364]},{"name":"REGSTR_PATH_PRINT","features":[364]},{"name":"REGSTR_PATH_PRINTERS","features":[364]},{"name":"REGSTR_PATH_PROPERTYSYSTEM","features":[364]},{"name":"REGSTR_PATH_PROVIDERS","features":[364]},{"name":"REGSTR_PATH_PWDPROVIDER","features":[364]},{"name":"REGSTR_PATH_REALMODENET","features":[364]},{"name":"REGSTR_PATH_REINSTALL","features":[364]},{"name":"REGSTR_PATH_RELIABILITY","features":[364]},{"name":"REGSTR_PATH_RELIABILITY_POLICY","features":[364]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_REPORTSNAPSHOT","features":[364]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SHUTDOWNREASONUI","features":[364]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SNAPSHOT","features":[364]},{"name":"REGSTR_PATH_ROOT","features":[364]},{"name":"REGSTR_PATH_RUN","features":[364]},{"name":"REGSTR_PATH_RUNONCE","features":[364]},{"name":"REGSTR_PATH_RUNONCEEX","features":[364]},{"name":"REGSTR_PATH_RUNSERVICES","features":[364]},{"name":"REGSTR_PATH_RUNSERVICESONCE","features":[364]},{"name":"REGSTR_PATH_SCHEMES","features":[364]},{"name":"REGSTR_PATH_SCREENSAVE","features":[364]},{"name":"REGSTR_PATH_SERVICES","features":[364]},{"name":"REGSTR_PATH_SETUP","features":[364]},{"name":"REGSTR_PATH_SHUTDOWN","features":[364]},{"name":"REGSTR_PATH_SOUND","features":[364]},{"name":"REGSTR_PATH_SYSTEMENUM","features":[364]},{"name":"REGSTR_PATH_SYSTRAY","features":[364]},{"name":"REGSTR_PATH_TIMEZONE","features":[364]},{"name":"REGSTR_PATH_UNINSTALL","features":[364]},{"name":"REGSTR_PATH_UPDATE","features":[364]},{"name":"REGSTR_PATH_VCOMM","features":[364]},{"name":"REGSTR_PATH_VMM","features":[364]},{"name":"REGSTR_PATH_VMM32FILES","features":[364]},{"name":"REGSTR_PATH_VNETSUP","features":[364]},{"name":"REGSTR_PATH_VOLUMECACHE","features":[364]},{"name":"REGSTR_PATH_VPOWERD","features":[364]},{"name":"REGSTR_PATH_VXD","features":[364]},{"name":"REGSTR_PATH_WARNVERDLLS","features":[364]},{"name":"REGSTR_PATH_WINBOOT","features":[364]},{"name":"REGSTR_PATH_WINDOWSAPPLETS","features":[364]},{"name":"REGSTR_PATH_WINLOGON","features":[364]},{"name":"REGSTR_PATH_WMI_SECURITY","features":[364]},{"name":"REGSTR_PCI_DUAL_IDE","features":[364]},{"name":"REGSTR_PCI_OPTIONS","features":[364]},{"name":"REGSTR_VALUE_DEFAULTLOC","features":[364]},{"name":"REGSTR_VALUE_ENABLE","features":[364]},{"name":"REGSTR_VALUE_LOWPOWERACTIVE","features":[364]},{"name":"REGSTR_VALUE_LOWPOWERTIMEOUT","features":[364]},{"name":"REGSTR_VALUE_NETPATH","features":[364]},{"name":"REGSTR_VALUE_POWEROFFACTIVE","features":[364]},{"name":"REGSTR_VALUE_POWEROFFTIMEOUT","features":[364]},{"name":"REGSTR_VALUE_SCRPASSWORD","features":[364]},{"name":"REGSTR_VALUE_USESCRPASSWORD","features":[364]},{"name":"REGSTR_VALUE_VERBOSE","features":[364]},{"name":"REGSTR_VAL_ACDRIVESPINDOWN","features":[364]},{"name":"REGSTR_VAL_ACSPINDOWNPREVIOUS","features":[364]},{"name":"REGSTR_VAL_ACTIVESERVICE","features":[364]},{"name":"REGSTR_VAL_ADDRESS","features":[364]},{"name":"REGSTR_VAL_AEDEBUG_AUTO","features":[364]},{"name":"REGSTR_VAL_AEDEBUG_DEBUGGER","features":[364]},{"name":"REGSTR_VAL_ALPHANUMPWDS","features":[364]},{"name":"REGSTR_VAL_APISUPPORT","features":[364]},{"name":"REGSTR_VAL_APMACTIMEOUT","features":[364]},{"name":"REGSTR_VAL_APMBATTIMEOUT","features":[364]},{"name":"REGSTR_VAL_APMBIOSVER","features":[364]},{"name":"REGSTR_VAL_APMFLAGS","features":[364]},{"name":"REGSTR_VAL_APMMENUSUSPEND","features":[364]},{"name":"REGSTR_VAL_APMSHUTDOWNPOWER","features":[364]},{"name":"REGSTR_VAL_APPINSTPATH","features":[364]},{"name":"REGSTR_VAL_ASKFORCONFIG","features":[364]},{"name":"REGSTR_VAL_ASKFORCONFIGFUNC","features":[364]},{"name":"REGSTR_VAL_ASYNCFILECOMMIT","features":[364]},{"name":"REGSTR_VAL_AUDIO_BITMAP","features":[364]},{"name":"REGSTR_VAL_AUDIO_ICON","features":[364]},{"name":"REGSTR_VAL_AUTHENT_AGENT","features":[364]},{"name":"REGSTR_VAL_AUTOEXEC","features":[364]},{"name":"REGSTR_VAL_AUTOINSNOTE","features":[364]},{"name":"REGSTR_VAL_AUTOLOGON","features":[364]},{"name":"REGSTR_VAL_AUTOMOUNT","features":[364]},{"name":"REGSTR_VAL_AUTOSTART","features":[364]},{"name":"REGSTR_VAL_BASICPROPERTIES","features":[364]},{"name":"REGSTR_VAL_BASICPROPERTIES_32","features":[364]},{"name":"REGSTR_VAL_BATDRIVESPINDOWN","features":[364]},{"name":"REGSTR_VAL_BATSPINDOWNPREVIOUS","features":[364]},{"name":"REGSTR_VAL_BEHAVIOR_ON_FAILED_VERIFY","features":[364]},{"name":"REGSTR_VAL_BIOSDATE","features":[364]},{"name":"REGSTR_VAL_BIOSNAME","features":[364]},{"name":"REGSTR_VAL_BIOSVERSION","features":[364]},{"name":"REGSTR_VAL_BITSPERPIXEL","features":[364]},{"name":"REGSTR_VAL_BOOTCONFIG","features":[364]},{"name":"REGSTR_VAL_BOOTCOUNT","features":[364]},{"name":"REGSTR_VAL_BOOTDIR","features":[364]},{"name":"REGSTR_VAL_BPP","features":[364]},{"name":"REGSTR_VAL_BT","features":[364]},{"name":"REGSTR_VAL_BUFFAGETIMEOUT","features":[364]},{"name":"REGSTR_VAL_BUFFIDLETIMEOUT","features":[364]},{"name":"REGSTR_VAL_BUSTYPE","features":[364]},{"name":"REGSTR_VAL_CAPABILITIES","features":[364]},{"name":"REGSTR_VAL_CARDSPECIFIC","features":[364]},{"name":"REGSTR_VAL_CDCACHESIZE","features":[364]},{"name":"REGSTR_VAL_CDCOMPATNAMES","features":[364]},{"name":"REGSTR_VAL_CDEXTERRORS","features":[364]},{"name":"REGSTR_VAL_CDNOREADAHEAD","features":[364]},{"name":"REGSTR_VAL_CDPREFETCH","features":[364]},{"name":"REGSTR_VAL_CDPREFETCHTAIL","features":[364]},{"name":"REGSTR_VAL_CDRAWCACHE","features":[364]},{"name":"REGSTR_VAL_CDROM","features":[364]},{"name":"REGSTR_VAL_CDROMCLASSNAME","features":[364]},{"name":"REGSTR_VAL_CDSHOWVERSIONS","features":[364]},{"name":"REGSTR_VAL_CDSVDSENSE","features":[364]},{"name":"REGSTR_VAL_CHECKSUM","features":[364]},{"name":"REGSTR_VAL_CLASS","features":[364]},{"name":"REGSTR_VAL_CLASSDESC","features":[364]},{"name":"REGSTR_VAL_CLASSGUID","features":[364]},{"name":"REGSTR_VAL_CMDRIVFLAGS","features":[364]},{"name":"REGSTR_VAL_CMENUMFLAGS","features":[364]},{"name":"REGSTR_VAL_COINSTALLERS_32","features":[364]},{"name":"REGSTR_VAL_COMINFO","features":[364]},{"name":"REGSTR_VAL_COMMENT","features":[364]},{"name":"REGSTR_VAL_COMPATIBLEIDS","features":[364]},{"name":"REGSTR_VAL_COMPRESSIONMETHOD","features":[364]},{"name":"REGSTR_VAL_COMPRESSIONTHRESHOLD","features":[364]},{"name":"REGSTR_VAL_COMPUTERNAME","features":[364]},{"name":"REGSTR_VAL_COMPUTRNAME","features":[364]},{"name":"REGSTR_VAL_COMVERIFYBASE","features":[364]},{"name":"REGSTR_VAL_CONFIG","features":[364]},{"name":"REGSTR_VAL_CONFIGFLAGS","features":[364]},{"name":"REGSTR_VAL_CONFIGMG","features":[364]},{"name":"REGSTR_VAL_CONFIGSYS","features":[364]},{"name":"REGSTR_VAL_CONNECTION_TYPE","features":[364]},{"name":"REGSTR_VAL_CONTAINERID","features":[364]},{"name":"REGSTR_VAL_CONTIGFILEALLOC","features":[364]},{"name":"REGSTR_VAL_CONVMEM","features":[364]},{"name":"REGSTR_VAL_CPU","features":[364]},{"name":"REGSTR_VAL_CRASHFUNCS","features":[364]},{"name":"REGSTR_VAL_CSCONFIGFLAGS","features":[364]},{"name":"REGSTR_VAL_CURCONFIG","features":[364]},{"name":"REGSTR_VAL_CURDRVLET","features":[364]},{"name":"REGSTR_VAL_CURRENTCONFIG","features":[364]},{"name":"REGSTR_VAL_CURRENT_BUILD","features":[364]},{"name":"REGSTR_VAL_CURRENT_CSDVERSION","features":[364]},{"name":"REGSTR_VAL_CURRENT_TYPE","features":[364]},{"name":"REGSTR_VAL_CURRENT_USER","features":[364]},{"name":"REGSTR_VAL_CURRENT_VERSION","features":[364]},{"name":"REGSTR_VAL_CUSTOMCOLORS","features":[364]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_CACHE_DATE","features":[364]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_HW_ID_KEY","features":[364]},{"name":"REGSTR_VAL_DEFAULT","features":[364]},{"name":"REGSTR_VAL_DETCONFIG","features":[364]},{"name":"REGSTR_VAL_DETECT","features":[364]},{"name":"REGSTR_VAL_DETECTFUNC","features":[364]},{"name":"REGSTR_VAL_DETFLAGS","features":[364]},{"name":"REGSTR_VAL_DETFUNC","features":[364]},{"name":"REGSTR_VAL_DEVDESC","features":[364]},{"name":"REGSTR_VAL_DEVICEDRIVER","features":[364]},{"name":"REGSTR_VAL_DEVICEPATH","features":[364]},{"name":"REGSTR_VAL_DEVICE_CHARACTERISTICS","features":[364]},{"name":"REGSTR_VAL_DEVICE_EXCLUSIVE","features":[364]},{"name":"REGSTR_VAL_DEVICE_INSTANCE","features":[364]},{"name":"REGSTR_VAL_DEVICE_SECURITY_DESCRIPTOR","features":[364]},{"name":"REGSTR_VAL_DEVICE_TYPE","features":[364]},{"name":"REGSTR_VAL_DEVLOADER","features":[364]},{"name":"REGSTR_VAL_DEVTYPE","features":[364]},{"name":"REGSTR_VAL_DIRECTHOST","features":[364]},{"name":"REGSTR_VAL_DIRTYSHUTDOWN","features":[364]},{"name":"REGSTR_VAL_DIRTYSHUTDOWNTIME","features":[364]},{"name":"REGSTR_VAL_DISABLECOUNT","features":[364]},{"name":"REGSTR_VAL_DISABLEPWDCACHING","features":[364]},{"name":"REGSTR_VAL_DISABLEREGTOOLS","features":[364]},{"name":"REGSTR_VAL_DISCONNECT","features":[364]},{"name":"REGSTR_VAL_DISK","features":[364]},{"name":"REGSTR_VAL_DISKCLASSNAME","features":[364]},{"name":"REGSTR_VAL_DISPCPL_NOAPPEARANCEPAGE","features":[364]},{"name":"REGSTR_VAL_DISPCPL_NOBACKGROUNDPAGE","features":[364]},{"name":"REGSTR_VAL_DISPCPL_NODISPCPL","features":[364]},{"name":"REGSTR_VAL_DISPCPL_NOSCRSAVPAGE","features":[364]},{"name":"REGSTR_VAL_DISPCPL_NOSETTINGSPAGE","features":[364]},{"name":"REGSTR_VAL_DISPLAY","features":[364]},{"name":"REGSTR_VAL_DISPLAYFLAGS","features":[364]},{"name":"REGSTR_VAL_DOCKED","features":[364]},{"name":"REGSTR_VAL_DOCKSTATE","features":[364]},{"name":"REGSTR_VAL_DOES_POLLING","features":[364]},{"name":"REGSTR_VAL_DONTLOADIFCONFLICT","features":[364]},{"name":"REGSTR_VAL_DONTUSEMEM","features":[364]},{"name":"REGSTR_VAL_DOSCP","features":[364]},{"name":"REGSTR_VAL_DOSOPTFLAGS","features":[364]},{"name":"REGSTR_VAL_DOSOPTGLOBALFLAGS","features":[364]},{"name":"REGSTR_VAL_DOSOPTTIP","features":[364]},{"name":"REGSTR_VAL_DOSPAGER","features":[364]},{"name":"REGSTR_VAL_DOS_SPOOL_MASK","features":[364]},{"name":"REGSTR_VAL_DOUBLEBUFFER","features":[364]},{"name":"REGSTR_VAL_DPI","features":[364]},{"name":"REGSTR_VAL_DPILOGICALX","features":[364]},{"name":"REGSTR_VAL_DPILOGICALY","features":[364]},{"name":"REGSTR_VAL_DPIPHYSICALX","features":[364]},{"name":"REGSTR_VAL_DPIPHYSICALY","features":[364]},{"name":"REGSTR_VAL_DPMS","features":[364]},{"name":"REGSTR_VAL_DRIVER","features":[364]},{"name":"REGSTR_VAL_DRIVERCACHEPATH","features":[364]},{"name":"REGSTR_VAL_DRIVERDATE","features":[364]},{"name":"REGSTR_VAL_DRIVERDATEDATA","features":[364]},{"name":"REGSTR_VAL_DRIVERVERSION","features":[364]},{"name":"REGSTR_VAL_DRIVESPINDOWN","features":[364]},{"name":"REGSTR_VAL_DRIVEWRITEBEHIND","features":[364]},{"name":"REGSTR_VAL_DRIVE_SPINDOWN","features":[364]},{"name":"REGSTR_VAL_DRV","features":[364]},{"name":"REGSTR_VAL_DRVDESC","features":[364]},{"name":"REGSTR_VAL_DYNAMIC","features":[364]},{"name":"REGSTR_VAL_EISA_FLAGS","features":[364]},{"name":"REGSTR_VAL_EISA_FUNCTIONS","features":[364]},{"name":"REGSTR_VAL_EISA_FUNCTIONS_MASK","features":[364]},{"name":"REGSTR_VAL_EISA_RANGES","features":[364]},{"name":"REGSTR_VAL_EISA_SIMULATE_INT15","features":[364]},{"name":"REGSTR_VAL_EJECT_PRIORITY","features":[364]},{"name":"REGSTR_VAL_ENABLEINTS","features":[364]},{"name":"REGSTR_VAL_ENUMERATOR","features":[364]},{"name":"REGSTR_VAL_ENUMPROPPAGES","features":[364]},{"name":"REGSTR_VAL_ENUMPROPPAGES_32","features":[364]},{"name":"REGSTR_VAL_ESDI","features":[364]},{"name":"REGSTR_VAL_EXISTS","features":[364]},{"name":"REGSTR_VAL_EXTMEM","features":[364]},{"name":"REGSTR_VAL_FAULT_LOGFILE","features":[364]},{"name":"REGSTR_VAL_FIFODEPTH","features":[364]},{"name":"REGSTR_VAL_FILESHARING","features":[364]},{"name":"REGSTR_VAL_FIRSTINSTALLDATETIME","features":[364]},{"name":"REGSTR_VAL_FIRSTNETDRIVE","features":[364]},{"name":"REGSTR_VAL_FLOP","features":[364]},{"name":"REGSTR_VAL_FLOPPY","features":[364]},{"name":"REGSTR_VAL_FONTSIZE","features":[364]},{"name":"REGSTR_VAL_FORCECL","features":[364]},{"name":"REGSTR_VAL_FORCEDCONFIG","features":[364]},{"name":"REGSTR_VAL_FORCEFIFO","features":[364]},{"name":"REGSTR_VAL_FORCELOAD","features":[364]},{"name":"REGSTR_VAL_FORCEPMIO","features":[364]},{"name":"REGSTR_VAL_FORCEREBOOT","features":[364]},{"name":"REGSTR_VAL_FORCERMIO","features":[364]},{"name":"REGSTR_VAL_FREESPACERATIO","features":[364]},{"name":"REGSTR_VAL_FRIENDLYNAME","features":[364]},{"name":"REGSTR_VAL_FSFILTERCLASS","features":[364]},{"name":"REGSTR_VAL_FULLTRACE","features":[364]},{"name":"REGSTR_VAL_FUNCDESC","features":[364]},{"name":"REGSTR_VAL_GAPTIME","features":[364]},{"name":"REGSTR_VAL_GRB","features":[364]},{"name":"REGSTR_VAL_HARDWAREID","features":[364]},{"name":"REGSTR_VAL_HIDESHAREPWDS","features":[364]},{"name":"REGSTR_VAL_HRES","features":[364]},{"name":"REGSTR_VAL_HWDETECT","features":[364]},{"name":"REGSTR_VAL_HWMECHANISM","features":[364]},{"name":"REGSTR_VAL_HWREV","features":[364]},{"name":"REGSTR_VAL_ID","features":[364]},{"name":"REGSTR_VAL_IDE_FORCE_SERIALIZE","features":[364]},{"name":"REGSTR_VAL_IDE_NO_SERIALIZE","features":[364]},{"name":"REGSTR_VAL_INFNAME","features":[364]},{"name":"REGSTR_VAL_INFPATH","features":[364]},{"name":"REGSTR_VAL_INFSECTION","features":[364]},{"name":"REGSTR_VAL_INFSECTIONEXT","features":[364]},{"name":"REGSTR_VAL_INHIBITRESULTS","features":[364]},{"name":"REGSTR_VAL_INSICON","features":[364]},{"name":"REGSTR_VAL_INSTALLER","features":[364]},{"name":"REGSTR_VAL_INSTALLER_32","features":[364]},{"name":"REGSTR_VAL_INSTALLTYPE","features":[364]},{"name":"REGSTR_VAL_INT13","features":[364]},{"name":"REGSTR_VAL_ISAPNP","features":[364]},{"name":"REGSTR_VAL_ISAPNP_RDP_OVERRIDE","features":[364]},{"name":"REGSTR_VAL_JOYCALLOUT","features":[364]},{"name":"REGSTR_VAL_JOYNCONFIG","features":[364]},{"name":"REGSTR_VAL_JOYNOEMCALLOUT","features":[364]},{"name":"REGSTR_VAL_JOYNOEMNAME","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL1","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL10","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL11","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL12","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL2","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL3","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL4","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL5","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL6","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL7","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL8","features":[364]},{"name":"REGSTR_VAL_JOYOEMCAL9","features":[364]},{"name":"REGSTR_VAL_JOYOEMCALCAP","features":[364]},{"name":"REGSTR_VAL_JOYOEMCALLOUT","features":[364]},{"name":"REGSTR_VAL_JOYOEMCALWINCAP","features":[364]},{"name":"REGSTR_VAL_JOYOEMDATA","features":[364]},{"name":"REGSTR_VAL_JOYOEMNAME","features":[364]},{"name":"REGSTR_VAL_JOYOEMPOVLABEL","features":[364]},{"name":"REGSTR_VAL_JOYOEMRLABEL","features":[364]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONCAP","features":[364]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONDESC","features":[364]},{"name":"REGSTR_VAL_JOYOEMTESTMOVECAP","features":[364]},{"name":"REGSTR_VAL_JOYOEMTESTMOVEDESC","features":[364]},{"name":"REGSTR_VAL_JOYOEMTESTWINCAP","features":[364]},{"name":"REGSTR_VAL_JOYOEMULABEL","features":[364]},{"name":"REGSTR_VAL_JOYOEMVLABEL","features":[364]},{"name":"REGSTR_VAL_JOYOEMXYLABEL","features":[364]},{"name":"REGSTR_VAL_JOYOEMZLABEL","features":[364]},{"name":"REGSTR_VAL_JOYUSERVALUES","features":[364]},{"name":"REGSTR_VAL_LASTALIVEBT","features":[364]},{"name":"REGSTR_VAL_LASTALIVEINTERVAL","features":[364]},{"name":"REGSTR_VAL_LASTALIVEPMPOLICY","features":[364]},{"name":"REGSTR_VAL_LASTALIVESTAMP","features":[364]},{"name":"REGSTR_VAL_LASTALIVESTAMPFORCED","features":[364]},{"name":"REGSTR_VAL_LASTALIVESTAMPINTERVAL","features":[364]},{"name":"REGSTR_VAL_LASTALIVESTAMPPOLICYINTERVAL","features":[364]},{"name":"REGSTR_VAL_LASTALIVEUPTIME","features":[364]},{"name":"REGSTR_VAL_LASTBOOTPMDRVS","features":[364]},{"name":"REGSTR_VAL_LASTCOMPUTERNAME","features":[364]},{"name":"REGSTR_VAL_LASTPCIBUSNUM","features":[364]},{"name":"REGSTR_VAL_LAST_UPDATE_TIME","features":[364]},{"name":"REGSTR_VAL_LEGALNOTICECAPTION","features":[364]},{"name":"REGSTR_VAL_LEGALNOTICETEXT","features":[364]},{"name":"REGSTR_VAL_LICENSINGINFO","features":[364]},{"name":"REGSTR_VAL_LINKED","features":[364]},{"name":"REGSTR_VAL_LOADHI","features":[364]},{"name":"REGSTR_VAL_LOADRMDRIVERS","features":[364]},{"name":"REGSTR_VAL_LOCATION_INFORMATION","features":[364]},{"name":"REGSTR_VAL_LOCATION_INFORMATION_OVERRIDE","features":[364]},{"name":"REGSTR_VAL_LOWERFILTERS","features":[364]},{"name":"REGSTR_VAL_LOWER_FILTER_DEFAULT_LEVEL","features":[364]},{"name":"REGSTR_VAL_LOWER_FILTER_LEVELS","features":[364]},{"name":"REGSTR_VAL_MACHINETYPE","features":[364]},{"name":"REGSTR_VAL_MANUFACTURER","features":[364]},{"name":"REGSTR_VAL_MAP","features":[364]},{"name":"REGSTR_VAL_MATCHINGDEVID","features":[364]},{"name":"REGSTR_VAL_MAXCONNECTIONS","features":[364]},{"name":"REGSTR_VAL_MAXLIP","features":[364]},{"name":"REGSTR_VAL_MAXRES","features":[364]},{"name":"REGSTR_VAL_MAXRETRY","features":[364]},{"name":"REGSTR_VAL_MAX_HCID_LEN","features":[364]},{"name":"REGSTR_VAL_MEDIA","features":[364]},{"name":"REGSTR_VAL_MFG","features":[364]},{"name":"REGSTR_VAL_MF_FLAGS","features":[364]},{"name":"REGSTR_VAL_MINIPORT_STAT","features":[364]},{"name":"REGSTR_VAL_MINPWDLEN","features":[364]},{"name":"REGSTR_VAL_MINRETRY","features":[364]},{"name":"REGSTR_VAL_MODE","features":[364]},{"name":"REGSTR_VAL_MODEL","features":[364]},{"name":"REGSTR_VAL_MSDOSMODE","features":[364]},{"name":"REGSTR_VAL_MSDOSMODEDISCARD","features":[364]},{"name":"REGSTR_VAL_MUSTBEVALIDATED","features":[364]},{"name":"REGSTR_VAL_NAMECACHECOUNT","features":[364]},{"name":"REGSTR_VAL_NAMENUMERICTAIL","features":[364]},{"name":"REGSTR_VAL_NCP_BROWSEMASTER","features":[364]},{"name":"REGSTR_VAL_NCP_USEPEERBROWSING","features":[364]},{"name":"REGSTR_VAL_NCP_USESAP","features":[364]},{"name":"REGSTR_VAL_NDP","features":[364]},{"name":"REGSTR_VAL_NETCARD","features":[364]},{"name":"REGSTR_VAL_NETCLEAN","features":[364]},{"name":"REGSTR_VAL_NETOSTYPE","features":[364]},{"name":"REGSTR_VAL_NETSETUP_DISABLE","features":[364]},{"name":"REGSTR_VAL_NETSETUP_NOCONFIGPAGE","features":[364]},{"name":"REGSTR_VAL_NETSETUP_NOIDPAGE","features":[364]},{"name":"REGSTR_VAL_NETSETUP_NOSECURITYPAGE","features":[364]},{"name":"REGSTR_VAL_NOCMOSORFDPT","features":[364]},{"name":"REGSTR_VAL_NODISPLAYCLASS","features":[364]},{"name":"REGSTR_VAL_NOENTIRENETWORK","features":[364]},{"name":"REGSTR_VAL_NOFILESHARING","features":[364]},{"name":"REGSTR_VAL_NOFILESHARINGCTRL","features":[364]},{"name":"REGSTR_VAL_NOIDE","features":[364]},{"name":"REGSTR_VAL_NOINSTALLCLASS","features":[364]},{"name":"REGSTR_VAL_NONSTANDARD_ATAPI","features":[364]},{"name":"REGSTR_VAL_NOPRINTSHARING","features":[364]},{"name":"REGSTR_VAL_NOPRINTSHARINGCTRL","features":[364]},{"name":"REGSTR_VAL_NOUSECLASS","features":[364]},{"name":"REGSTR_VAL_NOWORKGROUPCONTENTS","features":[364]},{"name":"REGSTR_VAL_OLDMSDOSVER","features":[364]},{"name":"REGSTR_VAL_OLDWINDIR","features":[364]},{"name":"REGSTR_VAL_OPTIMIZESFN","features":[364]},{"name":"REGSTR_VAL_OPTIONS","features":[364]},{"name":"REGSTR_VAL_OPTORDER","features":[364]},{"name":"REGSTR_VAL_P1284MDL","features":[364]},{"name":"REGSTR_VAL_P1284MFG","features":[364]},{"name":"REGSTR_VAL_PATHCACHECOUNT","features":[364]},{"name":"REGSTR_VAL_PCCARD_POWER","features":[364]},{"name":"REGSTR_VAL_PCI","features":[364]},{"name":"REGSTR_VAL_PCIBIOSVER","features":[364]},{"name":"REGSTR_VAL_PCICIRQMAP","features":[364]},{"name":"REGSTR_VAL_PCICOPTIONS","features":[364]},{"name":"REGSTR_VAL_PCMCIA_ALLOC","features":[364]},{"name":"REGSTR_VAL_PCMCIA_ATAD","features":[364]},{"name":"REGSTR_VAL_PCMCIA_MEM","features":[364]},{"name":"REGSTR_VAL_PCMCIA_OPT","features":[364]},{"name":"REGSTR_VAL_PCMCIA_SIZ","features":[364]},{"name":"REGSTR_VAL_PCMTDRIVER","features":[364]},{"name":"REGSTR_VAL_PCSSDRIVER","features":[364]},{"name":"REGSTR_VAL_PHYSICALDEVICEOBJECT","features":[364]},{"name":"REGSTR_VAL_PMODE_INT13","features":[364]},{"name":"REGSTR_VAL_PNPBIOSVER","features":[364]},{"name":"REGSTR_VAL_PNPSTRUCOFFSET","features":[364]},{"name":"REGSTR_VAL_POLICY","features":[364]},{"name":"REGSTR_VAL_POLLING","features":[364]},{"name":"REGSTR_VAL_PORTNAME","features":[364]},{"name":"REGSTR_VAL_PORTSUBCLASS","features":[364]},{"name":"REGSTR_VAL_PREFREDIR","features":[364]},{"name":"REGSTR_VAL_PRESERVECASE","features":[364]},{"name":"REGSTR_VAL_PRESERVELONGNAMES","features":[364]},{"name":"REGSTR_VAL_PRINTERS_HIDETABS","features":[364]},{"name":"REGSTR_VAL_PRINTERS_MASK","features":[364]},{"name":"REGSTR_VAL_PRINTERS_NOADD","features":[364]},{"name":"REGSTR_VAL_PRINTERS_NODELETE","features":[364]},{"name":"REGSTR_VAL_PRINTSHARING","features":[364]},{"name":"REGSTR_VAL_PRIORITY","features":[364]},{"name":"REGSTR_VAL_PRIVATE","features":[364]},{"name":"REGSTR_VAL_PRIVATEFUNC","features":[364]},{"name":"REGSTR_VAL_PRIVATEPROBLEM","features":[364]},{"name":"REGSTR_VAL_PRODUCTID","features":[364]},{"name":"REGSTR_VAL_PRODUCTTYPE","features":[364]},{"name":"REGSTR_VAL_PROFILEFLAGS","features":[364]},{"name":"REGSTR_VAL_PROPERTIES","features":[364]},{"name":"REGSTR_VAL_PROTINIPATH","features":[364]},{"name":"REGSTR_VAL_PROVIDER_NAME","features":[364]},{"name":"REGSTR_VAL_PWDEXPIRATION","features":[364]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEORDER","features":[364]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWD","features":[364]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWDHWND","features":[364]},{"name":"REGSTR_VAL_PWDPROVIDER_DESC","features":[364]},{"name":"REGSTR_VAL_PWDPROVIDER_GETPWDSTATUS","features":[364]},{"name":"REGSTR_VAL_PWDPROVIDER_ISNP","features":[364]},{"name":"REGSTR_VAL_PWDPROVIDER_PATH","features":[364]},{"name":"REGSTR_VAL_RDINTTHRESHOLD","features":[364]},{"name":"REGSTR_VAL_READAHEADTHRESHOLD","features":[364]},{"name":"REGSTR_VAL_READCACHING","features":[364]},{"name":"REGSTR_VAL_REALNETSTART","features":[364]},{"name":"REGSTR_VAL_REASONCODE","features":[364]},{"name":"REGSTR_VAL_REFRESHRATE","features":[364]},{"name":"REGSTR_VAL_REGITEMDELETEMESSAGE","features":[364]},{"name":"REGSTR_VAL_REGORGANIZATION","features":[364]},{"name":"REGSTR_VAL_REGOWNER","features":[364]},{"name":"REGSTR_VAL_REINSTALL_DEVICEINSTANCEIDS","features":[364]},{"name":"REGSTR_VAL_REINSTALL_DISPLAYNAME","features":[364]},{"name":"REGSTR_VAL_REINSTALL_STRING","features":[364]},{"name":"REGSTR_VAL_REMOTE_PATH","features":[364]},{"name":"REGSTR_VAL_REMOVABLE","features":[364]},{"name":"REGSTR_VAL_REMOVAL_POLICY","features":[364]},{"name":"REGSTR_VAL_REMOVEROMOKAY","features":[364]},{"name":"REGSTR_VAL_REMOVEROMOKAYFUNC","features":[364]},{"name":"REGSTR_VAL_RESERVED_DEVNODE","features":[364]},{"name":"REGSTR_VAL_RESOLUTION","features":[364]},{"name":"REGSTR_VAL_RESOURCES","features":[364]},{"name":"REGSTR_VAL_RESOURCE_MAP","features":[364]},{"name":"REGSTR_VAL_RESOURCE_PICKER_EXCEPTIONS","features":[364]},{"name":"REGSTR_VAL_RESOURCE_PICKER_TAGS","features":[364]},{"name":"REGSTR_VAL_RESTRICTRUN","features":[364]},{"name":"REGSTR_VAL_RESUMERESET","features":[364]},{"name":"REGSTR_VAL_REVISION","features":[364]},{"name":"REGSTR_VAL_REVLEVEL","features":[364]},{"name":"REGSTR_VAL_ROOT_DEVNODE","features":[364]},{"name":"REGSTR_VAL_RUNLOGINSCRIPT","features":[364]},{"name":"REGSTR_VAL_SCANNER","features":[364]},{"name":"REGSTR_VAL_SCAN_ONLY_FIRST","features":[364]},{"name":"REGSTR_VAL_SCSI","features":[364]},{"name":"REGSTR_VAL_SCSILUN","features":[364]},{"name":"REGSTR_VAL_SCSITID","features":[364]},{"name":"REGSTR_VAL_SEARCHMODE","features":[364]},{"name":"REGSTR_VAL_SEARCHOPTIONS","features":[364]},{"name":"REGSTR_VAL_SECCPL_NOADMINPAGE","features":[364]},{"name":"REGSTR_VAL_SECCPL_NOPROFILEPAGE","features":[364]},{"name":"REGSTR_VAL_SECCPL_NOPWDPAGE","features":[364]},{"name":"REGSTR_VAL_SECCPL_NOSECCPL","features":[364]},{"name":"REGSTR_VAL_SERVICE","features":[364]},{"name":"REGSTR_VAL_SETUPFLAGS","features":[364]},{"name":"REGSTR_VAL_SETUPMACHINETYPE","features":[364]},{"name":"REGSTR_VAL_SETUPN","features":[364]},{"name":"REGSTR_VAL_SETUPNPATH","features":[364]},{"name":"REGSTR_VAL_SETUPPROGRAMRAN","features":[364]},{"name":"REGSTR_VAL_SHARES_FLAGS","features":[364]},{"name":"REGSTR_VAL_SHARES_PATH","features":[364]},{"name":"REGSTR_VAL_SHARES_REMARK","features":[364]},{"name":"REGSTR_VAL_SHARES_RO_PASS","features":[364]},{"name":"REGSTR_VAL_SHARES_RW_PASS","features":[364]},{"name":"REGSTR_VAL_SHARES_TYPE","features":[364]},{"name":"REGSTR_VAL_SHARE_IRQ","features":[364]},{"name":"REGSTR_VAL_SHELLVERSION","features":[364]},{"name":"REGSTR_VAL_SHOWDOTS","features":[364]},{"name":"REGSTR_VAL_SHOWREASONUI","features":[364]},{"name":"REGSTR_VAL_SHUTDOWNREASON","features":[364]},{"name":"REGSTR_VAL_SHUTDOWNREASON_CODE","features":[364]},{"name":"REGSTR_VAL_SHUTDOWNREASON_COMMENT","features":[364]},{"name":"REGSTR_VAL_SHUTDOWNREASON_PROCESS","features":[364]},{"name":"REGSTR_VAL_SHUTDOWNREASON_USERNAME","features":[364]},{"name":"REGSTR_VAL_SHUTDOWN_FLAGS","features":[364]},{"name":"REGSTR_VAL_SHUTDOWN_IGNORE_PREDEFINED","features":[364]},{"name":"REGSTR_VAL_SHUTDOWN_STATE_SNAPSHOT","features":[364]},{"name":"REGSTR_VAL_SILENTINSTALL","features":[364]},{"name":"REGSTR_VAL_SLSUPPORT","features":[364]},{"name":"REGSTR_VAL_SOFTCOMPATMODE","features":[364]},{"name":"REGSTR_VAL_SRCPATH","features":[364]},{"name":"REGSTR_VAL_SRVNAMECACHE","features":[364]},{"name":"REGSTR_VAL_SRVNAMECACHECOUNT","features":[364]},{"name":"REGSTR_VAL_SRVNAMECACHENETPROV","features":[364]},{"name":"REGSTR_VAL_START_ON_BOOT","features":[364]},{"name":"REGSTR_VAL_STAT","features":[364]},{"name":"REGSTR_VAL_STATICDRIVE","features":[364]},{"name":"REGSTR_VAL_STATICVXD","features":[364]},{"name":"REGSTR_VAL_STDDOSOPTION","features":[364]},{"name":"REGSTR_VAL_SUBMODEL","features":[364]},{"name":"REGSTR_VAL_SUPPORTBURST","features":[364]},{"name":"REGSTR_VAL_SUPPORTLFN","features":[364]},{"name":"REGSTR_VAL_SUPPORTTUNNELLING","features":[364]},{"name":"REGSTR_VAL_SYMBOLIC_LINK","features":[364]},{"name":"REGSTR_VAL_SYNCDATAXFER","features":[364]},{"name":"REGSTR_VAL_SYSDM","features":[364]},{"name":"REGSTR_VAL_SYSDMFUNC","features":[364]},{"name":"REGSTR_VAL_SYSTEMCPL_NOCONFIGPAGE","features":[364]},{"name":"REGSTR_VAL_SYSTEMCPL_NODEVMGRPAGE","features":[364]},{"name":"REGSTR_VAL_SYSTEMCPL_NOFILESYSPAGE","features":[364]},{"name":"REGSTR_VAL_SYSTEMCPL_NOVIRTMEMPAGE","features":[364]},{"name":"REGSTR_VAL_SYSTEMROOT","features":[364]},{"name":"REGSTR_VAL_SYSTRAYBATFLAGS","features":[364]},{"name":"REGSTR_VAL_SYSTRAYPCCARDFLAGS","features":[364]},{"name":"REGSTR_VAL_SYSTRAYSVCS","features":[364]},{"name":"REGSTR_VAL_TABLE_STAT","features":[364]},{"name":"REGSTR_VAL_TAPE","features":[364]},{"name":"REGSTR_VAL_TRANSITION","features":[364]},{"name":"REGSTR_VAL_TRANSPORT","features":[364]},{"name":"REGSTR_VAL_TZACTBIAS","features":[364]},{"name":"REGSTR_VAL_TZBIAS","features":[364]},{"name":"REGSTR_VAL_TZDLTBIAS","features":[364]},{"name":"REGSTR_VAL_TZDLTFLAG","features":[364]},{"name":"REGSTR_VAL_TZDLTNAME","features":[364]},{"name":"REGSTR_VAL_TZDLTSTART","features":[364]},{"name":"REGSTR_VAL_TZNOAUTOTIME","features":[364]},{"name":"REGSTR_VAL_TZNOCHANGEEND","features":[364]},{"name":"REGSTR_VAL_TZNOCHANGESTART","features":[364]},{"name":"REGSTR_VAL_TZSTDBIAS","features":[364]},{"name":"REGSTR_VAL_TZSTDNAME","features":[364]},{"name":"REGSTR_VAL_TZSTDSTART","features":[364]},{"name":"REGSTR_VAL_UI_NUMBER","features":[364]},{"name":"REGSTR_VAL_UI_NUMBER_DESC_FORMAT","features":[364]},{"name":"REGSTR_VAL_UNDOCK_WITHOUT_LOGON","features":[364]},{"name":"REGSTR_VAL_UNINSTALLER_COMMANDLINE","features":[364]},{"name":"REGSTR_VAL_UNINSTALLER_DISPLAYNAME","features":[364]},{"name":"REGSTR_VAL_UPGRADE","features":[364]},{"name":"REGSTR_VAL_UPPERFILTERS","features":[364]},{"name":"REGSTR_VAL_UPPER_FILTER_DEFAULT_LEVEL","features":[364]},{"name":"REGSTR_VAL_UPPER_FILTER_LEVELS","features":[364]},{"name":"REGSTR_VAL_USERSETTINGS","features":[364]},{"name":"REGSTR_VAL_USER_NAME","features":[364]},{"name":"REGSTR_VAL_USRDRVLET","features":[364]},{"name":"REGSTR_VAL_VDD","features":[364]},{"name":"REGSTR_VAL_VER","features":[364]},{"name":"REGSTR_VAL_VERIFYKEY","features":[364]},{"name":"REGSTR_VAL_VIRTUALHDIRQ","features":[364]},{"name":"REGSTR_VAL_VOLIDLETIMEOUT","features":[364]},{"name":"REGSTR_VAL_VPOWERDFLAGS","features":[364]},{"name":"REGSTR_VAL_VRES","features":[364]},{"name":"REGSTR_VAL_VXDGROUPS","features":[364]},{"name":"REGSTR_VAL_WAITFORUNDOCK","features":[364]},{"name":"REGSTR_VAL_WAITFORUNDOCKFUNC","features":[364]},{"name":"REGSTR_VAL_WIN31FILESYSTEM","features":[364]},{"name":"REGSTR_VAL_WIN31PROVIDER","features":[364]},{"name":"REGSTR_VAL_WINBOOTDIR","features":[364]},{"name":"REGSTR_VAL_WINCP","features":[364]},{"name":"REGSTR_VAL_WINDIR","features":[364]},{"name":"REGSTR_VAL_WINOLDAPP_DISABLED","features":[364]},{"name":"REGSTR_VAL_WINOLDAPP_NOREALMODE","features":[364]},{"name":"REGSTR_VAL_WORKGROUP","features":[364]},{"name":"REGSTR_VAL_WRAPPER","features":[364]},{"name":"REGSTR_VAL_WRINTTHRESHOLD","features":[364]},{"name":"REGSTR_VAL_WRKGRP_FORCEMAPPING","features":[364]},{"name":"REGSTR_VAL_WRKGRP_REQUIRED","features":[364]},{"name":"REG_BINARY","features":[364]},{"name":"REG_CREATED_NEW_KEY","features":[364]},{"name":"REG_CREATE_KEY_DISPOSITION","features":[364]},{"name":"REG_DWORD","features":[364]},{"name":"REG_DWORD_BIG_ENDIAN","features":[364]},{"name":"REG_DWORD_LITTLE_ENDIAN","features":[364]},{"name":"REG_EXPAND_SZ","features":[364]},{"name":"REG_FORCE_RESTORE","features":[364]},{"name":"REG_FULL_RESOURCE_DESCRIPTOR","features":[364]},{"name":"REG_KEY_INSTDEV","features":[364]},{"name":"REG_LATEST_FORMAT","features":[364]},{"name":"REG_LINK","features":[364]},{"name":"REG_MUI_STRING_TRUNCATE","features":[364]},{"name":"REG_MULTI_SZ","features":[364]},{"name":"REG_NONE","features":[364]},{"name":"REG_NOTIFY_CHANGE_ATTRIBUTES","features":[364]},{"name":"REG_NOTIFY_CHANGE_LAST_SET","features":[364]},{"name":"REG_NOTIFY_CHANGE_NAME","features":[364]},{"name":"REG_NOTIFY_CHANGE_SECURITY","features":[364]},{"name":"REG_NOTIFY_FILTER","features":[364]},{"name":"REG_NOTIFY_THREAD_AGNOSTIC","features":[364]},{"name":"REG_NO_COMPRESSION","features":[364]},{"name":"REG_OPENED_EXISTING_KEY","features":[364]},{"name":"REG_OPEN_CREATE_OPTIONS","features":[364]},{"name":"REG_OPTION_BACKUP_RESTORE","features":[364]},{"name":"REG_OPTION_CREATE_LINK","features":[364]},{"name":"REG_OPTION_DONT_VIRTUALIZE","features":[364]},{"name":"REG_OPTION_NON_VOLATILE","features":[364]},{"name":"REG_OPTION_OPEN_LINK","features":[364]},{"name":"REG_OPTION_RESERVED","features":[364]},{"name":"REG_OPTION_VOLATILE","features":[364]},{"name":"REG_PROCESS_APPKEY","features":[364]},{"name":"REG_PROVIDER","features":[364]},{"name":"REG_QWORD","features":[364]},{"name":"REG_QWORD_LITTLE_ENDIAN","features":[364]},{"name":"REG_RESOURCE_LIST","features":[364]},{"name":"REG_RESOURCE_REQUIREMENTS_LIST","features":[364]},{"name":"REG_RESTORE_KEY_FLAGS","features":[364]},{"name":"REG_ROUTINE_FLAGS","features":[364]},{"name":"REG_SAM_FLAGS","features":[364]},{"name":"REG_SAVE_FORMAT","features":[364]},{"name":"REG_SECURE_CONNECTION","features":[364]},{"name":"REG_STANDARD_FORMAT","features":[364]},{"name":"REG_SZ","features":[364]},{"name":"REG_USE_CURRENT_SECURITY_CONTEXT","features":[364]},{"name":"REG_VALUE_TYPE","features":[364]},{"name":"REG_WHOLE_HIVE_VOLATILE","features":[364]},{"name":"RRF_NOEXPAND","features":[364]},{"name":"RRF_RT_ANY","features":[364]},{"name":"RRF_RT_DWORD","features":[364]},{"name":"RRF_RT_QWORD","features":[364]},{"name":"RRF_RT_REG_BINARY","features":[364]},{"name":"RRF_RT_REG_DWORD","features":[364]},{"name":"RRF_RT_REG_EXPAND_SZ","features":[364]},{"name":"RRF_RT_REG_MULTI_SZ","features":[364]},{"name":"RRF_RT_REG_NONE","features":[364]},{"name":"RRF_RT_REG_QWORD","features":[364]},{"name":"RRF_RT_REG_SZ","features":[364]},{"name":"RRF_SUBKEY_WOW6432KEY","features":[364]},{"name":"RRF_SUBKEY_WOW6464KEY","features":[364]},{"name":"RRF_WOW64_MASK","features":[364]},{"name":"RRF_ZEROONFAILURE","features":[364]},{"name":"RegCloseKey","features":[303,364]},{"name":"RegConnectRegistryA","features":[303,364]},{"name":"RegConnectRegistryExA","features":[364]},{"name":"RegConnectRegistryExW","features":[364]},{"name":"RegConnectRegistryW","features":[303,364]},{"name":"RegCopyTreeA","features":[303,364]},{"name":"RegCopyTreeW","features":[303,364]},{"name":"RegCreateKeyA","features":[303,364]},{"name":"RegCreateKeyExA","features":[303,306,364]},{"name":"RegCreateKeyExW","features":[303,306,364]},{"name":"RegCreateKeyTransactedA","features":[303,306,364]},{"name":"RegCreateKeyTransactedW","features":[303,306,364]},{"name":"RegCreateKeyW","features":[303,364]},{"name":"RegDeleteKeyA","features":[303,364]},{"name":"RegDeleteKeyExA","features":[303,364]},{"name":"RegDeleteKeyExW","features":[303,364]},{"name":"RegDeleteKeyTransactedA","features":[303,364]},{"name":"RegDeleteKeyTransactedW","features":[303,364]},{"name":"RegDeleteKeyValueA","features":[303,364]},{"name":"RegDeleteKeyValueW","features":[303,364]},{"name":"RegDeleteKeyW","features":[303,364]},{"name":"RegDeleteTreeA","features":[303,364]},{"name":"RegDeleteTreeW","features":[303,364]},{"name":"RegDeleteValueA","features":[303,364]},{"name":"RegDeleteValueW","features":[303,364]},{"name":"RegDisablePredefinedCache","features":[303,364]},{"name":"RegDisablePredefinedCacheEx","features":[303,364]},{"name":"RegDisableReflectionKey","features":[303,364]},{"name":"RegEnableReflectionKey","features":[303,364]},{"name":"RegEnumKeyA","features":[303,364]},{"name":"RegEnumKeyExA","features":[303,364]},{"name":"RegEnumKeyExW","features":[303,364]},{"name":"RegEnumKeyW","features":[303,364]},{"name":"RegEnumValueA","features":[303,364]},{"name":"RegEnumValueW","features":[303,364]},{"name":"RegFlushKey","features":[303,364]},{"name":"RegGetKeySecurity","features":[303,306,364]},{"name":"RegGetValueA","features":[303,364]},{"name":"RegGetValueW","features":[303,364]},{"name":"RegLoadAppKeyA","features":[303,364]},{"name":"RegLoadAppKeyW","features":[303,364]},{"name":"RegLoadKeyA","features":[303,364]},{"name":"RegLoadKeyW","features":[303,364]},{"name":"RegLoadMUIStringA","features":[303,364]},{"name":"RegLoadMUIStringW","features":[303,364]},{"name":"RegNotifyChangeKeyValue","features":[303,364]},{"name":"RegOpenCurrentUser","features":[303,364]},{"name":"RegOpenKeyA","features":[303,364]},{"name":"RegOpenKeyExA","features":[303,364]},{"name":"RegOpenKeyExW","features":[303,364]},{"name":"RegOpenKeyTransactedA","features":[303,364]},{"name":"RegOpenKeyTransactedW","features":[303,364]},{"name":"RegOpenKeyW","features":[303,364]},{"name":"RegOpenUserClassesRoot","features":[303,364]},{"name":"RegOverridePredefKey","features":[303,364]},{"name":"RegQueryInfoKeyA","features":[303,364]},{"name":"RegQueryInfoKeyW","features":[303,364]},{"name":"RegQueryMultipleValuesA","features":[303,364]},{"name":"RegQueryMultipleValuesW","features":[303,364]},{"name":"RegQueryReflectionKey","features":[303,364]},{"name":"RegQueryValueA","features":[303,364]},{"name":"RegQueryValueExA","features":[303,364]},{"name":"RegQueryValueExW","features":[303,364]},{"name":"RegQueryValueW","features":[303,364]},{"name":"RegRenameKey","features":[303,364]},{"name":"RegReplaceKeyA","features":[303,364]},{"name":"RegReplaceKeyW","features":[303,364]},{"name":"RegRestoreKeyA","features":[303,364]},{"name":"RegRestoreKeyW","features":[303,364]},{"name":"RegSaveKeyA","features":[303,306,364]},{"name":"RegSaveKeyExA","features":[303,306,364]},{"name":"RegSaveKeyExW","features":[303,306,364]},{"name":"RegSaveKeyW","features":[303,306,364]},{"name":"RegSetKeySecurity","features":[303,306,364]},{"name":"RegSetKeyValueA","features":[303,364]},{"name":"RegSetKeyValueW","features":[303,364]},{"name":"RegSetValueA","features":[303,364]},{"name":"RegSetValueExA","features":[303,364]},{"name":"RegSetValueExW","features":[303,364]},{"name":"RegSetValueW","features":[303,364]},{"name":"RegUnLoadKeyA","features":[303,364]},{"name":"RegUnLoadKeyW","features":[303,364]},{"name":"SUF_BATCHINF","features":[364]},{"name":"SUF_CLEAN","features":[364]},{"name":"SUF_EXPRESS","features":[364]},{"name":"SUF_FIRSTTIME","features":[364]},{"name":"SUF_INSETUP","features":[364]},{"name":"SUF_NETHDBOOT","features":[364]},{"name":"SUF_NETRPLBOOT","features":[364]},{"name":"SUF_NETSETUP","features":[364]},{"name":"SUF_SBSCOPYOK","features":[364]},{"name":"VALENTA","features":[364]},{"name":"VALENTW","features":[364]},{"name":"VPDF_DISABLEPWRMGMT","features":[364]},{"name":"VPDF_DISABLEPWRSTATUSPOLL","features":[364]},{"name":"VPDF_DISABLERINGRESUME","features":[364]},{"name":"VPDF_FORCEAPM10MODE","features":[364]},{"name":"VPDF_SHOWMULTIBATT","features":[364]},{"name":"VPDF_SKIPINTELSLCHECK","features":[364]},{"name":"val_context","features":[364]}],"596":[{"name":"DISPID_EVENT_ON_CONTEXT_DATA","features":[575]},{"name":"DISPID_EVENT_ON_SEND_ERROR","features":[575]},{"name":"DISPID_EVENT_ON_STATE_CHANGED","features":[575]},{"name":"DISPID_EVENT_ON_TERMINATION","features":[575]},{"name":"DRendezvousSessionEvents","features":[354,575]},{"name":"IRendezvousApplication","features":[575]},{"name":"IRendezvousSession","features":[575]},{"name":"RENDEZVOUS_SESSION_FLAGS","features":[575]},{"name":"RENDEZVOUS_SESSION_STATE","features":[575]},{"name":"RSF_INVITEE","features":[575]},{"name":"RSF_INVITER","features":[575]},{"name":"RSF_NONE","features":[575]},{"name":"RSF_ORIGINAL_INVITER","features":[575]},{"name":"RSF_REMOTE_LEGACYSESSION","features":[575]},{"name":"RSF_REMOTE_WIN7SESSION","features":[575]},{"name":"RSS_ACCEPTED","features":[575]},{"name":"RSS_CANCELLED","features":[575]},{"name":"RSS_CONNECTED","features":[575]},{"name":"RSS_DECLINED","features":[575]},{"name":"RSS_INVITATION","features":[575]},{"name":"RSS_READY","features":[575]},{"name":"RSS_TERMINATED","features":[575]},{"name":"RSS_UNKNOWN","features":[575]},{"name":"RendezvousApplication","features":[575]}],"597":[{"name":"AAAccountingData","features":[458]},{"name":"AAAccountingDataType","features":[458]},{"name":"AAAuthSchemes","features":[458]},{"name":"AATrustClassID","features":[458]},{"name":"AA_AUTH_ANY","features":[458]},{"name":"AA_AUTH_BASIC","features":[458]},{"name":"AA_AUTH_CONID","features":[458]},{"name":"AA_AUTH_COOKIE","features":[458]},{"name":"AA_AUTH_DIGEST","features":[458]},{"name":"AA_AUTH_LOGGEDONCREDENTIALS","features":[458]},{"name":"AA_AUTH_MAX","features":[458]},{"name":"AA_AUTH_MIN","features":[458]},{"name":"AA_AUTH_NEGOTIATE","features":[458]},{"name":"AA_AUTH_NTLM","features":[458]},{"name":"AA_AUTH_ORGID","features":[458]},{"name":"AA_AUTH_SC","features":[458]},{"name":"AA_AUTH_SSPI_NTLM","features":[458]},{"name":"AA_MAIN_SESSION_CLOSED","features":[458]},{"name":"AA_MAIN_SESSION_CREATION","features":[458]},{"name":"AA_SUB_SESSION_CLOSED","features":[458]},{"name":"AA_SUB_SESSION_CREATION","features":[458]},{"name":"AA_TRUSTEDUSER_TRUSTEDCLIENT","features":[458]},{"name":"AA_TRUSTEDUSER_UNTRUSTEDCLIENT","features":[458]},{"name":"AA_UNTRUSTED","features":[458]},{"name":"ACQUIRE_TARGET_LOCK_TIMEOUT","features":[458]},{"name":"ADsTSUserEx","features":[458]},{"name":"AE_CURRENT_POSITION","features":[458]},{"name":"AE_POSITION_FLAGS","features":[458]},{"name":"AllowOnlySDRServers","features":[458]},{"name":"BITMAP_RENDERER_STATISTICS","features":[458]},{"name":"CHANNEL_BUFFER_SIZE","features":[458]},{"name":"CHANNEL_CHUNK_LENGTH","features":[458]},{"name":"CHANNEL_DEF","features":[458]},{"name":"CHANNEL_ENTRY_POINTS","features":[458]},{"name":"CHANNEL_EVENT_CONNECTED","features":[458]},{"name":"CHANNEL_EVENT_DATA_RECEIVED","features":[458]},{"name":"CHANNEL_EVENT_DISCONNECTED","features":[458]},{"name":"CHANNEL_EVENT_INITIALIZED","features":[458]},{"name":"CHANNEL_EVENT_TERMINATED","features":[458]},{"name":"CHANNEL_EVENT_V1_CONNECTED","features":[458]},{"name":"CHANNEL_EVENT_WRITE_CANCELLED","features":[458]},{"name":"CHANNEL_EVENT_WRITE_COMPLETE","features":[458]},{"name":"CHANNEL_FLAG_FAIL","features":[458]},{"name":"CHANNEL_FLAG_FIRST","features":[458]},{"name":"CHANNEL_FLAG_LAST","features":[458]},{"name":"CHANNEL_FLAG_MIDDLE","features":[458]},{"name":"CHANNEL_MAX_COUNT","features":[458]},{"name":"CHANNEL_NAME_LEN","features":[458]},{"name":"CHANNEL_OPTION_COMPRESS","features":[458]},{"name":"CHANNEL_OPTION_COMPRESS_RDP","features":[458]},{"name":"CHANNEL_OPTION_ENCRYPT_CS","features":[458]},{"name":"CHANNEL_OPTION_ENCRYPT_RDP","features":[458]},{"name":"CHANNEL_OPTION_ENCRYPT_SC","features":[458]},{"name":"CHANNEL_OPTION_INITIALIZED","features":[458]},{"name":"CHANNEL_OPTION_PRI_HIGH","features":[458]},{"name":"CHANNEL_OPTION_PRI_LOW","features":[458]},{"name":"CHANNEL_OPTION_PRI_MED","features":[458]},{"name":"CHANNEL_OPTION_REMOTE_CONTROL_PERSISTENT","features":[458]},{"name":"CHANNEL_OPTION_SHOW_PROTOCOL","features":[458]},{"name":"CHANNEL_PDU_HEADER","features":[458]},{"name":"CHANNEL_RC_ALREADY_CONNECTED","features":[458]},{"name":"CHANNEL_RC_ALREADY_INITIALIZED","features":[458]},{"name":"CHANNEL_RC_ALREADY_OPEN","features":[458]},{"name":"CHANNEL_RC_BAD_CHANNEL","features":[458]},{"name":"CHANNEL_RC_BAD_CHANNEL_HANDLE","features":[458]},{"name":"CHANNEL_RC_BAD_INIT_HANDLE","features":[458]},{"name":"CHANNEL_RC_BAD_PROC","features":[458]},{"name":"CHANNEL_RC_INITIALIZATION_ERROR","features":[458]},{"name":"CHANNEL_RC_INVALID_INSTANCE","features":[458]},{"name":"CHANNEL_RC_NOT_CONNECTED","features":[458]},{"name":"CHANNEL_RC_NOT_INITIALIZED","features":[458]},{"name":"CHANNEL_RC_NOT_IN_VIRTUALCHANNELENTRY","features":[458]},{"name":"CHANNEL_RC_NOT_OPEN","features":[458]},{"name":"CHANNEL_RC_NO_BUFFER","features":[458]},{"name":"CHANNEL_RC_NO_MEMORY","features":[458]},{"name":"CHANNEL_RC_NULL_DATA","features":[458]},{"name":"CHANNEL_RC_OK","features":[458]},{"name":"CHANNEL_RC_TOO_MANY_CHANNELS","features":[458]},{"name":"CHANNEL_RC_UNKNOWN_CHANNEL_NAME","features":[458]},{"name":"CHANNEL_RC_UNSUPPORTED_VERSION","features":[458]},{"name":"CHANNEL_RC_ZERO_LENGTH","features":[458]},{"name":"CLIENTADDRESS_LENGTH","features":[458]},{"name":"CLIENTNAME_LENGTH","features":[458]},{"name":"CLIENT_DISPLAY","features":[458]},{"name":"CLIENT_MESSAGE_CONNECTION_ERROR","features":[458]},{"name":"CLIENT_MESSAGE_CONNECTION_INVALID","features":[458]},{"name":"CLIENT_MESSAGE_CONNECTION_STATUS","features":[458]},{"name":"CLIENT_MESSAGE_TYPE","features":[458]},{"name":"CONNECTION_CHANGE_NOTIFICATION","features":[458]},{"name":"CONNECTION_PROPERTY_CURSOR_BLINK_DISABLED","features":[458]},{"name":"CONNECTION_PROPERTY_IDLE_TIME_WARNING","features":[458]},{"name":"CONNECTION_REQUEST_CANCELLED","features":[458]},{"name":"CONNECTION_REQUEST_FAILED","features":[458]},{"name":"CONNECTION_REQUEST_INVALID","features":[458]},{"name":"CONNECTION_REQUEST_LB_COMPLETED","features":[458]},{"name":"CONNECTION_REQUEST_ORCH_COMPLETED","features":[458]},{"name":"CONNECTION_REQUEST_PENDING","features":[458]},{"name":"CONNECTION_REQUEST_QUERY_PL_COMPLETED","features":[458]},{"name":"CONNECTION_REQUEST_SUCCEEDED","features":[458]},{"name":"CONNECTION_REQUEST_TIMEDOUT","features":[458]},{"name":"ClipboardRedirectionDisabled","features":[458]},{"name":"DISPID_AX_ADMINMESSAGERECEIVED","features":[458]},{"name":"DISPID_AX_AUTORECONNECTED","features":[458]},{"name":"DISPID_AX_AUTORECONNECTING","features":[458]},{"name":"DISPID_AX_CONNECTED","features":[458]},{"name":"DISPID_AX_CONNECTING","features":[458]},{"name":"DISPID_AX_DIALOGDISMISSED","features":[458]},{"name":"DISPID_AX_DIALOGDISPLAYING","features":[458]},{"name":"DISPID_AX_DISCONNECTED","features":[458]},{"name":"DISPID_AX_KEYCOMBINATIONPRESSED","features":[458]},{"name":"DISPID_AX_LOGINCOMPLETED","features":[458]},{"name":"DISPID_AX_NETWORKSTATUSCHANGED","features":[458]},{"name":"DISPID_AX_REMOTEDESKTOPSIZECHANGED","features":[458]},{"name":"DISPID_AX_STATUSCHANGED","features":[458]},{"name":"DISPID_AX_TOUCHPOINTERCURSORMOVED","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_APPLY_SETTINGS","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_ATTACH_EVENT","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_CONNECT","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DELETE_SAVED_CREDENTIALS","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DETACH_EVENT","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DISCONNECT","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_EXECUTE_REMOTE_ACTION","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_RDPPROPERTY","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_SNAPSHOT","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RECONNECT","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RESUME_SCREEN_UPDATES","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RETRIEVE_SETTINGS","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SET_RDPPROPERTY","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SUSPEND_SCREEN_UPDATES","features":[458]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_UPDATE_SESSION_DISPLAYSETTINGS","features":[458]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_ACTIONS","features":[458]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_SETTINGS","features":[458]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_ENABLED","features":[458]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_EVENTSENABLED","features":[458]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_POINTERSPEED","features":[458]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCH_POINTER","features":[458]},{"name":"DOMAIN_LENGTH","features":[458]},{"name":"DisableAllRedirections","features":[458]},{"name":"DriveRedirectionDisabled","features":[458]},{"name":"EnableAllRedirections","features":[458]},{"name":"FARM","features":[458]},{"name":"FORCE_REJOIN","features":[458]},{"name":"FORCE_REJOIN_IN_CLUSTERMODE","features":[458]},{"name":"IADsTSUserEx","features":[354,458]},{"name":"IAudioDeviceEndpoint","features":[458]},{"name":"IAudioEndpoint","features":[458]},{"name":"IAudioEndpointControl","features":[458]},{"name":"IAudioEndpointRT","features":[458]},{"name":"IAudioInputEndpointRT","features":[458]},{"name":"IAudioOutputEndpointRT","features":[458]},{"name":"IRemoteDesktopClient","features":[354,458]},{"name":"IRemoteDesktopClientActions","features":[354,458]},{"name":"IRemoteDesktopClientSettings","features":[354,458]},{"name":"IRemoteDesktopClientTouchPointer","features":[354,458]},{"name":"IRemoteSystemAdditionalInfoProvider","features":[458]},{"name":"ITSGAccountingEngine","features":[458]},{"name":"ITSGAuthenticateUserSink","features":[458]},{"name":"ITSGAuthenticationEngine","features":[458]},{"name":"ITSGAuthorizeConnectionSink","features":[458]},{"name":"ITSGAuthorizeResourceSink","features":[458]},{"name":"ITSGPolicyEngine","features":[458]},{"name":"ITsSbBaseNotifySink","features":[458]},{"name":"ITsSbClientConnection","features":[458]},{"name":"ITsSbClientConnectionPropertySet","features":[427,458]},{"name":"ITsSbEnvironment","features":[458]},{"name":"ITsSbEnvironmentPropertySet","features":[427,458]},{"name":"ITsSbFilterPluginStore","features":[458]},{"name":"ITsSbGenericNotifySink","features":[458]},{"name":"ITsSbGlobalStore","features":[458]},{"name":"ITsSbLoadBalanceResult","features":[458]},{"name":"ITsSbLoadBalancing","features":[458]},{"name":"ITsSbLoadBalancingNotifySink","features":[458]},{"name":"ITsSbOrchestration","features":[458]},{"name":"ITsSbOrchestrationNotifySink","features":[458]},{"name":"ITsSbPlacement","features":[458]},{"name":"ITsSbPlacementNotifySink","features":[458]},{"name":"ITsSbPlugin","features":[458]},{"name":"ITsSbPluginNotifySink","features":[458]},{"name":"ITsSbPluginPropertySet","features":[427,458]},{"name":"ITsSbPropertySet","features":[427,458]},{"name":"ITsSbProvider","features":[458]},{"name":"ITsSbProvisioning","features":[458]},{"name":"ITsSbProvisioningPluginNotifySink","features":[458]},{"name":"ITsSbResourceNotification","features":[458]},{"name":"ITsSbResourceNotificationEx","features":[458]},{"name":"ITsSbResourcePlugin","features":[458]},{"name":"ITsSbResourcePluginStore","features":[458]},{"name":"ITsSbServiceNotification","features":[458]},{"name":"ITsSbSession","features":[458]},{"name":"ITsSbTarget","features":[458]},{"name":"ITsSbTargetPropertySet","features":[427,458]},{"name":"ITsSbTaskInfo","features":[458]},{"name":"ITsSbTaskPlugin","features":[458]},{"name":"ITsSbTaskPluginNotifySink","features":[458]},{"name":"IWRdsEnhancedFastReconnectArbitrator","features":[458]},{"name":"IWRdsGraphicsChannel","features":[458]},{"name":"IWRdsGraphicsChannelEvents","features":[458]},{"name":"IWRdsGraphicsChannelManager","features":[458]},{"name":"IWRdsProtocolConnection","features":[458]},{"name":"IWRdsProtocolConnectionCallback","features":[458]},{"name":"IWRdsProtocolConnectionSettings","features":[458]},{"name":"IWRdsProtocolLicenseConnection","features":[458]},{"name":"IWRdsProtocolListener","features":[458]},{"name":"IWRdsProtocolListenerCallback","features":[458]},{"name":"IWRdsProtocolLogonErrorRedirector","features":[458]},{"name":"IWRdsProtocolManager","features":[458]},{"name":"IWRdsProtocolSettings","features":[458]},{"name":"IWRdsProtocolShadowCallback","features":[458]},{"name":"IWRdsProtocolShadowConnection","features":[458]},{"name":"IWRdsWddmIddProps","features":[458]},{"name":"IWRdsWddmIddProps1","features":[458]},{"name":"IWTSBitmapRenderService","features":[458]},{"name":"IWTSBitmapRenderer","features":[458]},{"name":"IWTSBitmapRendererCallback","features":[458]},{"name":"IWTSListener","features":[458]},{"name":"IWTSListenerCallback","features":[458]},{"name":"IWTSPlugin","features":[458]},{"name":"IWTSPluginServiceProvider","features":[458]},{"name":"IWTSProtocolConnection","features":[458]},{"name":"IWTSProtocolConnectionCallback","features":[458]},{"name":"IWTSProtocolLicenseConnection","features":[458]},{"name":"IWTSProtocolListener","features":[458]},{"name":"IWTSProtocolListenerCallback","features":[458]},{"name":"IWTSProtocolLogonErrorRedirector","features":[458]},{"name":"IWTSProtocolManager","features":[458]},{"name":"IWTSProtocolShadowCallback","features":[458]},{"name":"IWTSProtocolShadowConnection","features":[458]},{"name":"IWTSSBPlugin","features":[458]},{"name":"IWTSVirtualChannel","features":[458]},{"name":"IWTSVirtualChannelCallback","features":[458]},{"name":"IWTSVirtualChannelManager","features":[458]},{"name":"IWorkspace","features":[458]},{"name":"IWorkspace2","features":[458]},{"name":"IWorkspace3","features":[458]},{"name":"IWorkspaceClientExt","features":[458]},{"name":"IWorkspaceRegistration","features":[458]},{"name":"IWorkspaceRegistration2","features":[458]},{"name":"IWorkspaceReportMessage","features":[458]},{"name":"IWorkspaceResTypeRegistry","features":[354,458]},{"name":"IWorkspaceScriptable","features":[354,458]},{"name":"IWorkspaceScriptable2","features":[354,458]},{"name":"IWorkspaceScriptable3","features":[354,458]},{"name":"ItsPubPlugin","features":[458]},{"name":"ItsPubPlugin2","features":[458]},{"name":"KEEP_EXISTING_SESSIONS","features":[458]},{"name":"KeyCombinationDown","features":[458]},{"name":"KeyCombinationHome","features":[458]},{"name":"KeyCombinationLeft","features":[458]},{"name":"KeyCombinationRight","features":[458]},{"name":"KeyCombinationScroll","features":[458]},{"name":"KeyCombinationType","features":[458]},{"name":"KeyCombinationUp","features":[458]},{"name":"LOAD_BALANCING_PLUGIN","features":[458]},{"name":"MAX_DATE_TIME_LENGTH","features":[458]},{"name":"MAX_ELAPSED_TIME_LENGTH","features":[458]},{"name":"MAX_POLICY_ATTRIBUTES","features":[458]},{"name":"MaxAppName_Len","features":[458]},{"name":"MaxDomainName_Len","features":[458]},{"name":"MaxFQDN_Len","features":[458]},{"name":"MaxFarm_Len","features":[458]},{"name":"MaxNetBiosName_Len","features":[458]},{"name":"MaxNumOfExposed_IPs","features":[458]},{"name":"MaxUserName_Len","features":[458]},{"name":"NONFARM","features":[458]},{"name":"NOTIFY_FOR_ALL_SESSIONS","features":[458]},{"name":"NOTIFY_FOR_THIS_SESSION","features":[458]},{"name":"ORCHESTRATION_PLUGIN","features":[458]},{"name":"OWNER_MS_TS_PLUGIN","features":[458]},{"name":"OWNER_MS_VM_PLUGIN","features":[458]},{"name":"OWNER_UNKNOWN","features":[458]},{"name":"PCHANNEL_INIT_EVENT_FN","features":[458]},{"name":"PCHANNEL_OPEN_EVENT_FN","features":[458]},{"name":"PLACEMENT_PLUGIN","features":[458]},{"name":"PLUGIN_CAPABILITY_EXTERNAL_REDIRECTION","features":[458]},{"name":"PLUGIN_TYPE","features":[458]},{"name":"POLICY_PLUGIN","features":[458]},{"name":"POSITION_CONTINUOUS","features":[458]},{"name":"POSITION_DISCONTINUOUS","features":[458]},{"name":"POSITION_INVALID","features":[458]},{"name":"POSITION_QPC_ERROR","features":[458]},{"name":"PRODUCTINFO_COMPANYNAME_LENGTH","features":[458]},{"name":"PRODUCTINFO_PRODUCTID_LENGTH","features":[458]},{"name":"PRODUCT_INFOA","features":[458]},{"name":"PRODUCT_INFOW","features":[458]},{"name":"PROPERTY_DYNAMIC_TIME_ZONE_INFORMATION","features":[458]},{"name":"PROPERTY_TYPE_ENABLE_UNIVERSAL_APPS_FOR_CUSTOM_SHELL","features":[458]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT","features":[458]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT_USER_SID","features":[458]},{"name":"PROVISIONING_PLUGIN","features":[458]},{"name":"PVIRTUALCHANNELCLOSE","features":[458]},{"name":"PVIRTUALCHANNELENTRY","features":[303,458]},{"name":"PVIRTUALCHANNELINIT","features":[458]},{"name":"PVIRTUALCHANNELOPEN","features":[458]},{"name":"PVIRTUALCHANNELWRITE","features":[458]},{"name":"PasswordEncodingType","features":[458]},{"name":"PasswordEncodingUTF16BE","features":[458]},{"name":"PasswordEncodingUTF16LE","features":[458]},{"name":"PasswordEncodingUTF8","features":[458]},{"name":"PnpRedirectionDisabled","features":[458]},{"name":"PolicyAttributeType","features":[458]},{"name":"PortRedirectionDisabled","features":[458]},{"name":"PrinterRedirectionDisabled","features":[458]},{"name":"ProcessIdToSessionId","features":[303,458]},{"name":"RDCLIENT_BITMAP_RENDER_SERVICE","features":[458]},{"name":"RDV_TASK_STATUS","features":[458]},{"name":"RDV_TASK_STATUS_APPLYING","features":[458]},{"name":"RDV_TASK_STATUS_DOWNLOADING","features":[458]},{"name":"RDV_TASK_STATUS_FAILED","features":[458]},{"name":"RDV_TASK_STATUS_REBOOTED","features":[458]},{"name":"RDV_TASK_STATUS_REBOOTING","features":[458]},{"name":"RDV_TASK_STATUS_SEARCHING","features":[458]},{"name":"RDV_TASK_STATUS_SUCCESS","features":[458]},{"name":"RDV_TASK_STATUS_TIMEOUT","features":[458]},{"name":"RDV_TASK_STATUS_UNKNOWN","features":[458]},{"name":"RD_FARM_AUTO_PERSONAL_RDSH","features":[458]},{"name":"RD_FARM_AUTO_PERSONAL_VM","features":[458]},{"name":"RD_FARM_MANUAL_PERSONAL_RDSH","features":[458]},{"name":"RD_FARM_MANUAL_PERSONAL_VM","features":[458]},{"name":"RD_FARM_RDSH","features":[458]},{"name":"RD_FARM_TEMP_VM","features":[458]},{"name":"RD_FARM_TYPE","features":[458]},{"name":"RD_FARM_TYPE_UNKNOWN","features":[458]},{"name":"REMOTECONTROL_KBDALT_HOTKEY","features":[458]},{"name":"REMOTECONTROL_KBDCTRL_HOTKEY","features":[458]},{"name":"REMOTECONTROL_KBDSHIFT_HOTKEY","features":[458]},{"name":"RENDER_HINT_CLEAR","features":[458]},{"name":"RENDER_HINT_MAPPEDWINDOW","features":[458]},{"name":"RENDER_HINT_VIDEO","features":[458]},{"name":"RESERVED_FOR_LEGACY","features":[458]},{"name":"RESOURCE_PLUGIN","features":[458]},{"name":"RFX_CLIENT_ID_LENGTH","features":[458]},{"name":"RFX_GFX_MAX_SUPPORTED_MONITORS","features":[458]},{"name":"RFX_GFX_MONITOR_INFO","features":[303,458]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST","features":[458]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE","features":[303,458]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM","features":[458]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY","features":[458]},{"name":"RFX_GFX_MSG_DESKTOP_INPUT_RESET","features":[458]},{"name":"RFX_GFX_MSG_DESKTOP_RESEND_REQUEST","features":[458]},{"name":"RFX_GFX_MSG_DISCONNECT_NOTIFY","features":[458]},{"name":"RFX_GFX_MSG_HEADER","features":[458]},{"name":"RFX_GFX_MSG_PREFIX","features":[458]},{"name":"RFX_GFX_MSG_PREFIX_MASK","features":[458]},{"name":"RFX_GFX_MSG_RDP_DATA","features":[458]},{"name":"RFX_GFX_RECT","features":[458]},{"name":"RFX_RDP_MSG_PREFIX","features":[458]},{"name":"RemoteActionAppSwitch","features":[458]},{"name":"RemoteActionAppbar","features":[458]},{"name":"RemoteActionCharms","features":[458]},{"name":"RemoteActionSnap","features":[458]},{"name":"RemoteActionStartScreen","features":[458]},{"name":"RemoteActionType","features":[458]},{"name":"SB_SYNCH_CONFLICT_MAX_WRITE_ATTEMPTS","features":[458]},{"name":"SESSION_TIMEOUT_ACTION_DISCONNECT","features":[458]},{"name":"SESSION_TIMEOUT_ACTION_SILENT_REAUTH","features":[458]},{"name":"SESSION_TIMEOUT_ACTION_TYPE","features":[458]},{"name":"SINGLE_SESSION","features":[458]},{"name":"STATE_ACTIVE","features":[458]},{"name":"STATE_CONNECTED","features":[458]},{"name":"STATE_CONNECTQUERY","features":[458]},{"name":"STATE_DISCONNECTED","features":[458]},{"name":"STATE_DOWN","features":[458]},{"name":"STATE_IDLE","features":[458]},{"name":"STATE_INIT","features":[458]},{"name":"STATE_INVALID","features":[458]},{"name":"STATE_LISTEN","features":[458]},{"name":"STATE_MAX","features":[458]},{"name":"STATE_RESET","features":[458]},{"name":"STATE_SHADOW","features":[458]},{"name":"SnapshotEncodingDataUri","features":[458]},{"name":"SnapshotEncodingType","features":[458]},{"name":"SnapshotFormatBmp","features":[458]},{"name":"SnapshotFormatJpeg","features":[458]},{"name":"SnapshotFormatPng","features":[458]},{"name":"SnapshotFormatType","features":[458]},{"name":"TARGET_CHANGE_TYPE","features":[458]},{"name":"TARGET_CHANGE_UNSPEC","features":[458]},{"name":"TARGET_CHECKED_OUT","features":[458]},{"name":"TARGET_DOWN","features":[458]},{"name":"TARGET_EXTERNALIP_CHANGED","features":[458]},{"name":"TARGET_FARM_MEMBERSHIP_CHANGED","features":[458]},{"name":"TARGET_HIBERNATED","features":[458]},{"name":"TARGET_IDLE","features":[458]},{"name":"TARGET_INITIALIZING","features":[458]},{"name":"TARGET_INTERNALIP_CHANGED","features":[458]},{"name":"TARGET_INUSE","features":[458]},{"name":"TARGET_INVALID","features":[458]},{"name":"TARGET_JOINED","features":[458]},{"name":"TARGET_MAXSTATE","features":[458]},{"name":"TARGET_OWNER","features":[458]},{"name":"TARGET_PATCH_COMPLETED","features":[458]},{"name":"TARGET_PATCH_FAILED","features":[458]},{"name":"TARGET_PATCH_IN_PROGRESS","features":[458]},{"name":"TARGET_PATCH_NOT_STARTED","features":[458]},{"name":"TARGET_PATCH_STATE","features":[458]},{"name":"TARGET_PATCH_STATE_CHANGED","features":[458]},{"name":"TARGET_PATCH_UNKNOWN","features":[458]},{"name":"TARGET_PENDING","features":[458]},{"name":"TARGET_REMOVED","features":[458]},{"name":"TARGET_RUNNING","features":[458]},{"name":"TARGET_STARTING","features":[458]},{"name":"TARGET_STATE","features":[458]},{"name":"TARGET_STATE_CHANGED","features":[458]},{"name":"TARGET_STOPPED","features":[458]},{"name":"TARGET_STOPPING","features":[458]},{"name":"TARGET_TYPE","features":[458]},{"name":"TARGET_UNKNOWN","features":[458]},{"name":"TASK_PLUGIN","features":[458]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_EXISTING","features":[458]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_NEW","features":[458]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE","features":[458]},{"name":"TSPUB_PLUGIN_PD_QUERY_EXISTING","features":[458]},{"name":"TSPUB_PLUGIN_PD_QUERY_OR_CREATE","features":[458]},{"name":"TSPUB_PLUGIN_PD_RESOLUTION_TYPE","features":[458]},{"name":"TSSB_NOTIFICATION_TYPE","features":[458]},{"name":"TSSB_NOTIFY_CONNECTION_REQUEST_CHANGE","features":[458]},{"name":"TSSB_NOTIFY_INVALID","features":[458]},{"name":"TSSB_NOTIFY_SESSION_CHANGE","features":[458]},{"name":"TSSB_NOTIFY_TARGET_CHANGE","features":[458]},{"name":"TSSD_ADDR_IPv4","features":[458]},{"name":"TSSD_ADDR_IPv6","features":[458]},{"name":"TSSD_ADDR_UNDEFINED","features":[458]},{"name":"TSSD_AddrV46Type","features":[458]},{"name":"TSSD_ConnectionPoint","features":[458]},{"name":"TSSESSION_STATE","features":[458]},{"name":"TSUserExInterfaces","features":[458]},{"name":"TS_SB_SORT_BY","features":[458]},{"name":"TS_SB_SORT_BY_NAME","features":[458]},{"name":"TS_SB_SORT_BY_NONE","features":[458]},{"name":"TS_SB_SORT_BY_PROP","features":[458]},{"name":"TS_VC_LISTENER_STATIC_CHANNEL","features":[458]},{"name":"UNKNOWN","features":[458]},{"name":"UNKNOWN_PLUGIN","features":[458]},{"name":"USERNAME_LENGTH","features":[458]},{"name":"VALIDATIONINFORMATION_HARDWAREID_LENGTH","features":[458]},{"name":"VALIDATIONINFORMATION_LICENSE_LENGTH","features":[458]},{"name":"VIRTUAL_CHANNEL_VERSION_WIN2000","features":[458]},{"name":"VM_HOST_NOTIFY_STATUS","features":[458]},{"name":"VM_HOST_STATUS_INIT_COMPLETE","features":[458]},{"name":"VM_HOST_STATUS_INIT_FAILED","features":[458]},{"name":"VM_HOST_STATUS_INIT_IN_PROGRESS","features":[458]},{"name":"VM_HOST_STATUS_INIT_PENDING","features":[458]},{"name":"VM_NOTIFY_ENTRY","features":[458]},{"name":"VM_NOTIFY_INFO","features":[458]},{"name":"VM_NOTIFY_STATUS","features":[458]},{"name":"VM_NOTIFY_STATUS_CANCELED","features":[458]},{"name":"VM_NOTIFY_STATUS_COMPLETE","features":[458]},{"name":"VM_NOTIFY_STATUS_FAILED","features":[458]},{"name":"VM_NOTIFY_STATUS_IN_PROGRESS","features":[458]},{"name":"VM_NOTIFY_STATUS_PENDING","features":[458]},{"name":"VM_PATCH_INFO","features":[458]},{"name":"WINSTATIONNAME_LENGTH","features":[458]},{"name":"WKS_FLAG_CLEAR_CREDS_ON_LAST_RESOURCE","features":[458]},{"name":"WKS_FLAG_CREDS_AUTHENTICATED","features":[458]},{"name":"WKS_FLAG_PASSWORD_ENCRYPTED","features":[458]},{"name":"WRDS_CLIENTADDRESS_LENGTH","features":[458]},{"name":"WRDS_CLIENTNAME_LENGTH","features":[458]},{"name":"WRDS_CLIENT_PRODUCT_ID_LENGTH","features":[458]},{"name":"WRDS_CONNECTION_SETTING","features":[303,458]},{"name":"WRDS_CONNECTION_SETTINGS","features":[303,458]},{"name":"WRDS_CONNECTION_SETTINGS_1","features":[303,458]},{"name":"WRDS_CONNECTION_SETTING_LEVEL","features":[458]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_1","features":[458]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_INVALID","features":[458]},{"name":"WRDS_DEVICE_NAME_LENGTH","features":[458]},{"name":"WRDS_DIRECTORY_LENGTH","features":[458]},{"name":"WRDS_DOMAIN_LENGTH","features":[458]},{"name":"WRDS_DRIVER_NAME_LENGTH","features":[458]},{"name":"WRDS_DYNAMIC_TIME_ZONE_INFORMATION","features":[458]},{"name":"WRDS_IMEFILENAME_LENGTH","features":[458]},{"name":"WRDS_INITIALPROGRAM_LENGTH","features":[458]},{"name":"WRDS_KEY_EXCHANGE_ALG_DH","features":[458]},{"name":"WRDS_KEY_EXCHANGE_ALG_RSA","features":[458]},{"name":"WRDS_LICENSE_PREAMBLE_VERSION","features":[458]},{"name":"WRDS_LICENSE_PROTOCOL_VERSION","features":[458]},{"name":"WRDS_LISTENER_SETTING","features":[458]},{"name":"WRDS_LISTENER_SETTINGS","features":[458]},{"name":"WRDS_LISTENER_SETTINGS_1","features":[458]},{"name":"WRDS_LISTENER_SETTING_LEVEL","features":[458]},{"name":"WRDS_LISTENER_SETTING_LEVEL_1","features":[458]},{"name":"WRDS_LISTENER_SETTING_LEVEL_INVALID","features":[458]},{"name":"WRDS_MAX_CACHE_RESERVED","features":[458]},{"name":"WRDS_MAX_COUNTERS","features":[458]},{"name":"WRDS_MAX_DISPLAY_IOCTL_DATA","features":[458]},{"name":"WRDS_MAX_PROTOCOL_CACHE","features":[458]},{"name":"WRDS_MAX_RESERVED","features":[458]},{"name":"WRDS_PASSWORD_LENGTH","features":[458]},{"name":"WRDS_PERF_DISABLE_CURSORSETTINGS","features":[458]},{"name":"WRDS_PERF_DISABLE_CURSOR_SHADOW","features":[458]},{"name":"WRDS_PERF_DISABLE_FULLWINDOWDRAG","features":[458]},{"name":"WRDS_PERF_DISABLE_MENUANIMATIONS","features":[458]},{"name":"WRDS_PERF_DISABLE_NOTHING","features":[458]},{"name":"WRDS_PERF_DISABLE_THEMING","features":[458]},{"name":"WRDS_PERF_DISABLE_WALLPAPER","features":[458]},{"name":"WRDS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[458]},{"name":"WRDS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[458]},{"name":"WRDS_PERF_ENABLE_FONT_SMOOTHING","features":[458]},{"name":"WRDS_PROTOCOL_NAME_LENGTH","features":[458]},{"name":"WRDS_SERVICE_ID_GRAPHICS_GUID","features":[458]},{"name":"WRDS_SETTING","features":[303,458]},{"name":"WRDS_SETTINGS","features":[303,458]},{"name":"WRDS_SETTINGS_1","features":[303,458]},{"name":"WRDS_SETTING_LEVEL","features":[458]},{"name":"WRDS_SETTING_LEVEL_1","features":[458]},{"name":"WRDS_SETTING_LEVEL_INVALID","features":[458]},{"name":"WRDS_SETTING_STATUS","features":[458]},{"name":"WRDS_SETTING_STATUS_DISABLED","features":[458]},{"name":"WRDS_SETTING_STATUS_ENABLED","features":[458]},{"name":"WRDS_SETTING_STATUS_NOTAPPLICABLE","features":[458]},{"name":"WRDS_SETTING_STATUS_NOTCONFIGURED","features":[458]},{"name":"WRDS_SETTING_TYPE","features":[458]},{"name":"WRDS_SETTING_TYPE_INVALID","features":[458]},{"name":"WRDS_SETTING_TYPE_MACHINE","features":[458]},{"name":"WRDS_SETTING_TYPE_SAM","features":[458]},{"name":"WRDS_SETTING_TYPE_USER","features":[458]},{"name":"WRDS_USERNAME_LENGTH","features":[458]},{"name":"WRDS_VALUE_TYPE_BINARY","features":[458]},{"name":"WRDS_VALUE_TYPE_GUID","features":[458]},{"name":"WRDS_VALUE_TYPE_STRING","features":[458]},{"name":"WRDS_VALUE_TYPE_ULONG","features":[458]},{"name":"WRdsGraphicsChannelType","features":[458]},{"name":"WRdsGraphicsChannelType_BestEffortDelivery","features":[458]},{"name":"WRdsGraphicsChannelType_GuaranteedDelivery","features":[458]},{"name":"WRdsGraphicsChannels_LossyChannelMaxMessageSize","features":[458]},{"name":"WTSActive","features":[458]},{"name":"WTSApplicationName","features":[458]},{"name":"WTSCLIENTA","features":[458]},{"name":"WTSCLIENTW","features":[458]},{"name":"WTSCONFIGINFOA","features":[458]},{"name":"WTSCONFIGINFOW","features":[458]},{"name":"WTSClientAddress","features":[458]},{"name":"WTSClientBuildNumber","features":[458]},{"name":"WTSClientDirectory","features":[458]},{"name":"WTSClientDisplay","features":[458]},{"name":"WTSClientHardwareId","features":[458]},{"name":"WTSClientInfo","features":[458]},{"name":"WTSClientName","features":[458]},{"name":"WTSClientProductId","features":[458]},{"name":"WTSClientProtocolType","features":[458]},{"name":"WTSCloseServer","features":[303,458]},{"name":"WTSConfigInfo","features":[458]},{"name":"WTSConnectQuery","features":[458]},{"name":"WTSConnectSessionA","features":[303,458]},{"name":"WTSConnectSessionW","features":[303,458]},{"name":"WTSConnectState","features":[458]},{"name":"WTSConnected","features":[458]},{"name":"WTSCreateListenerA","features":[303,458]},{"name":"WTSCreateListenerW","features":[303,458]},{"name":"WTSDisconnectSession","features":[303,458]},{"name":"WTSDisconnected","features":[458]},{"name":"WTSDomainName","features":[458]},{"name":"WTSDown","features":[458]},{"name":"WTSEnableChildSessions","features":[303,458]},{"name":"WTSEnumerateListenersA","features":[303,458]},{"name":"WTSEnumerateListenersW","features":[303,458]},{"name":"WTSEnumerateProcessesA","features":[303,458]},{"name":"WTSEnumerateProcessesExA","features":[303,458]},{"name":"WTSEnumerateProcessesExW","features":[303,458]},{"name":"WTSEnumerateProcessesW","features":[303,458]},{"name":"WTSEnumerateServersA","features":[303,458]},{"name":"WTSEnumerateServersW","features":[303,458]},{"name":"WTSEnumerateSessionsA","features":[303,458]},{"name":"WTSEnumerateSessionsExA","features":[303,458]},{"name":"WTSEnumerateSessionsExW","features":[303,458]},{"name":"WTSEnumerateSessionsW","features":[303,458]},{"name":"WTSFreeMemory","features":[458]},{"name":"WTSFreeMemoryExA","features":[303,458]},{"name":"WTSFreeMemoryExW","features":[303,458]},{"name":"WTSGetActiveConsoleSessionId","features":[458]},{"name":"WTSGetChildSessionId","features":[303,458]},{"name":"WTSGetListenerSecurityA","features":[303,306,458]},{"name":"WTSGetListenerSecurityW","features":[303,306,458]},{"name":"WTSINFOA","features":[458]},{"name":"WTSINFOEXA","features":[458]},{"name":"WTSINFOEXW","features":[458]},{"name":"WTSINFOEX_LEVEL1_A","features":[458]},{"name":"WTSINFOEX_LEVEL1_W","features":[458]},{"name":"WTSINFOEX_LEVEL_A","features":[458]},{"name":"WTSINFOEX_LEVEL_W","features":[458]},{"name":"WTSINFOW","features":[458]},{"name":"WTSIdle","features":[458]},{"name":"WTSIdleTime","features":[458]},{"name":"WTSIncomingBytes","features":[458]},{"name":"WTSIncomingFrames","features":[458]},{"name":"WTSInit","features":[458]},{"name":"WTSInitialProgram","features":[458]},{"name":"WTSIsChildSessionsEnabled","features":[303,458]},{"name":"WTSIsRemoteSession","features":[458]},{"name":"WTSLISTENERCONFIGA","features":[458]},{"name":"WTSLISTENERCONFIGW","features":[458]},{"name":"WTSListen","features":[458]},{"name":"WTSLogoffSession","features":[303,458]},{"name":"WTSLogonTime","features":[458]},{"name":"WTSOEMId","features":[458]},{"name":"WTSOpenServerA","features":[303,458]},{"name":"WTSOpenServerExA","features":[303,458]},{"name":"WTSOpenServerExW","features":[303,458]},{"name":"WTSOpenServerW","features":[303,458]},{"name":"WTSOutgoingBytes","features":[458]},{"name":"WTSOutgoingFrames","features":[458]},{"name":"WTSQueryListenerConfigA","features":[303,458]},{"name":"WTSQueryListenerConfigW","features":[303,458]},{"name":"WTSQuerySessionInformationA","features":[303,458]},{"name":"WTSQuerySessionInformationW","features":[303,458]},{"name":"WTSQueryUserConfigA","features":[303,458]},{"name":"WTSQueryUserConfigW","features":[303,458]},{"name":"WTSQueryUserToken","features":[303,458]},{"name":"WTSRegisterSessionNotification","features":[303,458]},{"name":"WTSRegisterSessionNotificationEx","features":[303,458]},{"name":"WTSReset","features":[458]},{"name":"WTSSBX_ADDRESS_FAMILY","features":[458]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET","features":[458]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET6","features":[458]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_IPX","features":[458]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_NETBIOS","features":[458]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_UNSPEC","features":[458]},{"name":"WTSSBX_IP_ADDRESS","features":[458]},{"name":"WTSSBX_MACHINE_CONNECT_INFO","features":[458]},{"name":"WTSSBX_MACHINE_DRAIN","features":[458]},{"name":"WTSSBX_MACHINE_DRAIN_OFF","features":[458]},{"name":"WTSSBX_MACHINE_DRAIN_ON","features":[458]},{"name":"WTSSBX_MACHINE_DRAIN_UNSPEC","features":[458]},{"name":"WTSSBX_MACHINE_INFO","features":[458]},{"name":"WTSSBX_MACHINE_SESSION_MODE","features":[458]},{"name":"WTSSBX_MACHINE_SESSION_MODE_MULTIPLE","features":[458]},{"name":"WTSSBX_MACHINE_SESSION_MODE_SINGLE","features":[458]},{"name":"WTSSBX_MACHINE_SESSION_MODE_UNSPEC","features":[458]},{"name":"WTSSBX_MACHINE_STATE","features":[458]},{"name":"WTSSBX_MACHINE_STATE_READY","features":[458]},{"name":"WTSSBX_MACHINE_STATE_SYNCHRONIZING","features":[458]},{"name":"WTSSBX_MACHINE_STATE_UNSPEC","features":[458]},{"name":"WTSSBX_NOTIFICATION_ADDED","features":[458]},{"name":"WTSSBX_NOTIFICATION_CHANGED","features":[458]},{"name":"WTSSBX_NOTIFICATION_REMOVED","features":[458]},{"name":"WTSSBX_NOTIFICATION_RESYNC","features":[458]},{"name":"WTSSBX_NOTIFICATION_TYPE","features":[458]},{"name":"WTSSBX_SESSION_INFO","features":[303,458]},{"name":"WTSSBX_SESSION_STATE","features":[458]},{"name":"WTSSBX_SESSION_STATE_ACTIVE","features":[458]},{"name":"WTSSBX_SESSION_STATE_DISCONNECTED","features":[458]},{"name":"WTSSBX_SESSION_STATE_UNSPEC","features":[458]},{"name":"WTSSESSION_NOTIFICATION","features":[458]},{"name":"WTSSendMessageA","features":[303,458,365]},{"name":"WTSSendMessageW","features":[303,458,365]},{"name":"WTSSessionAddressV4","features":[458]},{"name":"WTSSessionId","features":[458]},{"name":"WTSSessionInfo","features":[458]},{"name":"WTSSessionInfoEx","features":[458]},{"name":"WTSSetListenerSecurityA","features":[303,306,458]},{"name":"WTSSetListenerSecurityW","features":[303,306,458]},{"name":"WTSSetRenderHint","features":[303,458]},{"name":"WTSSetUserConfigA","features":[303,458]},{"name":"WTSSetUserConfigW","features":[303,458]},{"name":"WTSShadow","features":[458]},{"name":"WTSShutdownSystem","features":[303,458]},{"name":"WTSStartRemoteControlSessionA","features":[303,458]},{"name":"WTSStartRemoteControlSessionW","features":[303,458]},{"name":"WTSStopRemoteControlSession","features":[303,458]},{"name":"WTSTerminateProcess","features":[303,458]},{"name":"WTSTypeProcessInfoLevel0","features":[458]},{"name":"WTSTypeProcessInfoLevel1","features":[458]},{"name":"WTSTypeSessionInfoLevel1","features":[458]},{"name":"WTSUSERCONFIGA","features":[458]},{"name":"WTSUSERCONFIGW","features":[458]},{"name":"WTSUnRegisterSessionNotification","features":[303,458]},{"name":"WTSUnRegisterSessionNotificationEx","features":[303,458]},{"name":"WTSUserConfigBrokenTimeoutSettings","features":[458]},{"name":"WTSUserConfigInitialProgram","features":[458]},{"name":"WTSUserConfigModemCallbackPhoneNumber","features":[458]},{"name":"WTSUserConfigModemCallbackSettings","features":[458]},{"name":"WTSUserConfigReconnectSettings","features":[458]},{"name":"WTSUserConfigShadowingSettings","features":[458]},{"name":"WTSUserConfigSourceSAM","features":[458]},{"name":"WTSUserConfigTerminalServerHomeDir","features":[458]},{"name":"WTSUserConfigTerminalServerHomeDirDrive","features":[458]},{"name":"WTSUserConfigTerminalServerProfilePath","features":[458]},{"name":"WTSUserConfigTimeoutSettingsConnections","features":[458]},{"name":"WTSUserConfigTimeoutSettingsDisconnections","features":[458]},{"name":"WTSUserConfigTimeoutSettingsIdle","features":[458]},{"name":"WTSUserConfigUser","features":[458]},{"name":"WTSUserConfigWorkingDirectory","features":[458]},{"name":"WTSUserConfigfAllowLogonTerminalServer","features":[458]},{"name":"WTSUserConfigfDeviceClientDefaultPrinter","features":[458]},{"name":"WTSUserConfigfDeviceClientDrives","features":[458]},{"name":"WTSUserConfigfDeviceClientPrinters","features":[458]},{"name":"WTSUserConfigfInheritInitialProgram","features":[458]},{"name":"WTSUserConfigfTerminalServerRemoteHomeDir","features":[458]},{"name":"WTSUserName","features":[458]},{"name":"WTSValidationInfo","features":[458]},{"name":"WTSVirtualChannelClose","features":[303,458]},{"name":"WTSVirtualChannelOpen","features":[303,458]},{"name":"WTSVirtualChannelOpenEx","features":[303,458]},{"name":"WTSVirtualChannelPurgeInput","features":[303,458]},{"name":"WTSVirtualChannelPurgeOutput","features":[303,458]},{"name":"WTSVirtualChannelQuery","features":[303,458]},{"name":"WTSVirtualChannelRead","features":[303,458]},{"name":"WTSVirtualChannelWrite","features":[303,458]},{"name":"WTSVirtualClientData","features":[458]},{"name":"WTSVirtualFileHandle","features":[458]},{"name":"WTSWaitSystemEvent","features":[303,458]},{"name":"WTSWinStationName","features":[458]},{"name":"WTSWorkingDirectory","features":[458]},{"name":"WTS_CACHE_STATS","features":[458]},{"name":"WTS_CACHE_STATS_UN","features":[458]},{"name":"WTS_CERT_TYPE","features":[458]},{"name":"WTS_CERT_TYPE_INVALID","features":[458]},{"name":"WTS_CERT_TYPE_PROPRIETORY","features":[458]},{"name":"WTS_CERT_TYPE_X509","features":[458]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC","features":[458]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_NO_COMPRESS","features":[458]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_HIGH","features":[458]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_LOW","features":[458]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_MED","features":[458]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_REAL","features":[458]},{"name":"WTS_CLIENTADDRESS_LENGTH","features":[458]},{"name":"WTS_CLIENTNAME_LENGTH","features":[458]},{"name":"WTS_CLIENT_ADDRESS","features":[458]},{"name":"WTS_CLIENT_DATA","features":[303,458]},{"name":"WTS_CLIENT_DISPLAY","features":[458]},{"name":"WTS_CLIENT_PRODUCT_ID_LENGTH","features":[458]},{"name":"WTS_COMMENT_LENGTH","features":[458]},{"name":"WTS_CONFIG_CLASS","features":[458]},{"name":"WTS_CONFIG_SOURCE","features":[458]},{"name":"WTS_CONNECTSTATE_CLASS","features":[458]},{"name":"WTS_CURRENT_SERVER","features":[303,458]},{"name":"WTS_CURRENT_SERVER_HANDLE","features":[303,458]},{"name":"WTS_CURRENT_SERVER_NAME","features":[458]},{"name":"WTS_CURRENT_SESSION","features":[458]},{"name":"WTS_DEVICE_NAME_LENGTH","features":[458]},{"name":"WTS_DIRECTORY_LENGTH","features":[458]},{"name":"WTS_DISPLAY_IOCTL","features":[458]},{"name":"WTS_DOMAIN_LENGTH","features":[458]},{"name":"WTS_DRAIN_IN_DRAIN","features":[458]},{"name":"WTS_DRAIN_NOT_IN_DRAIN","features":[458]},{"name":"WTS_DRAIN_STATE_NONE","features":[458]},{"name":"WTS_DRIVER_NAME_LENGTH","features":[458]},{"name":"WTS_DRIVE_LENGTH","features":[458]},{"name":"WTS_EVENT_ALL","features":[458]},{"name":"WTS_EVENT_CONNECT","features":[458]},{"name":"WTS_EVENT_CREATE","features":[458]},{"name":"WTS_EVENT_DELETE","features":[458]},{"name":"WTS_EVENT_DISCONNECT","features":[458]},{"name":"WTS_EVENT_FLUSH","features":[458]},{"name":"WTS_EVENT_LICENSE","features":[458]},{"name":"WTS_EVENT_LOGOFF","features":[458]},{"name":"WTS_EVENT_LOGON","features":[458]},{"name":"WTS_EVENT_NONE","features":[458]},{"name":"WTS_EVENT_RENAME","features":[458]},{"name":"WTS_EVENT_STATECHANGE","features":[458]},{"name":"WTS_IMEFILENAME_LENGTH","features":[458]},{"name":"WTS_INFO_CLASS","features":[458]},{"name":"WTS_INITIALPROGRAM_LENGTH","features":[458]},{"name":"WTS_KEY_EXCHANGE_ALG_DH","features":[458]},{"name":"WTS_KEY_EXCHANGE_ALG_RSA","features":[458]},{"name":"WTS_LICENSE_CAPABILITIES","features":[303,458]},{"name":"WTS_LICENSE_PREAMBLE_VERSION","features":[458]},{"name":"WTS_LICENSE_PROTOCOL_VERSION","features":[458]},{"name":"WTS_LISTENER_CREATE","features":[458]},{"name":"WTS_LISTENER_NAME_LENGTH","features":[458]},{"name":"WTS_LISTENER_UPDATE","features":[458]},{"name":"WTS_LOGON_ERROR_REDIRECTOR_RESPONSE","features":[458]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW","features":[458]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW_START_OVER","features":[458]},{"name":"WTS_LOGON_ERR_HANDLED_SHOW","features":[458]},{"name":"WTS_LOGON_ERR_INVALID","features":[458]},{"name":"WTS_LOGON_ERR_NOT_HANDLED","features":[458]},{"name":"WTS_MAX_CACHE_RESERVED","features":[458]},{"name":"WTS_MAX_COUNTERS","features":[458]},{"name":"WTS_MAX_DISPLAY_IOCTL_DATA","features":[458]},{"name":"WTS_MAX_PROTOCOL_CACHE","features":[458]},{"name":"WTS_MAX_RESERVED","features":[458]},{"name":"WTS_PASSWORD_LENGTH","features":[458]},{"name":"WTS_PERF_DISABLE_CURSORSETTINGS","features":[458]},{"name":"WTS_PERF_DISABLE_CURSOR_SHADOW","features":[458]},{"name":"WTS_PERF_DISABLE_FULLWINDOWDRAG","features":[458]},{"name":"WTS_PERF_DISABLE_MENUANIMATIONS","features":[458]},{"name":"WTS_PERF_DISABLE_NOTHING","features":[458]},{"name":"WTS_PERF_DISABLE_THEMING","features":[458]},{"name":"WTS_PERF_DISABLE_WALLPAPER","features":[458]},{"name":"WTS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[458]},{"name":"WTS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[458]},{"name":"WTS_PERF_ENABLE_FONT_SMOOTHING","features":[458]},{"name":"WTS_POLICY_DATA","features":[303,458]},{"name":"WTS_PROCESS_INFOA","features":[303,458]},{"name":"WTS_PROCESS_INFOW","features":[303,458]},{"name":"WTS_PROCESS_INFO_EXA","features":[303,458]},{"name":"WTS_PROCESS_INFO_EXW","features":[303,458]},{"name":"WTS_PROCESS_INFO_LEVEL_0","features":[458]},{"name":"WTS_PROCESS_INFO_LEVEL_1","features":[458]},{"name":"WTS_PROPERTY_DEFAULT_CONFIG","features":[458]},{"name":"WTS_PROPERTY_VALUE","features":[458]},{"name":"WTS_PROTOCOL_CACHE","features":[458]},{"name":"WTS_PROTOCOL_COUNTERS","features":[458]},{"name":"WTS_PROTOCOL_NAME_LENGTH","features":[458]},{"name":"WTS_PROTOCOL_STATUS","features":[458]},{"name":"WTS_PROTOCOL_TYPE_CONSOLE","features":[458]},{"name":"WTS_PROTOCOL_TYPE_ICA","features":[458]},{"name":"WTS_PROTOCOL_TYPE_RDP","features":[458]},{"name":"WTS_QUERY_ALLOWED_INITIAL_APP","features":[458]},{"name":"WTS_QUERY_AUDIOENUM_DLL","features":[458]},{"name":"WTS_QUERY_LOGON_SCREEN_SIZE","features":[458]},{"name":"WTS_QUERY_MF_FORMAT_SUPPORT","features":[458]},{"name":"WTS_RCM_DRAIN_STATE","features":[458]},{"name":"WTS_RCM_SERVICE_STATE","features":[458]},{"name":"WTS_SECURITY_ALL_ACCESS","features":[458]},{"name":"WTS_SECURITY_CONNECT","features":[458]},{"name":"WTS_SECURITY_CURRENT_GUEST_ACCESS","features":[458]},{"name":"WTS_SECURITY_CURRENT_USER_ACCESS","features":[458]},{"name":"WTS_SECURITY_DISCONNECT","features":[458]},{"name":"WTS_SECURITY_FLAGS","features":[458]},{"name":"WTS_SECURITY_GUEST_ACCESS","features":[458]},{"name":"WTS_SECURITY_LOGOFF","features":[458]},{"name":"WTS_SECURITY_LOGON","features":[458]},{"name":"WTS_SECURITY_MESSAGE","features":[458]},{"name":"WTS_SECURITY_QUERY_INFORMATION","features":[458]},{"name":"WTS_SECURITY_REMOTE_CONTROL","features":[458]},{"name":"WTS_SECURITY_RESET","features":[458]},{"name":"WTS_SECURITY_SET_INFORMATION","features":[458]},{"name":"WTS_SECURITY_USER_ACCESS","features":[458]},{"name":"WTS_SECURITY_VIRTUAL_CHANNELS","features":[458]},{"name":"WTS_SERVER_INFOA","features":[458]},{"name":"WTS_SERVER_INFOW","features":[458]},{"name":"WTS_SERVICE_NONE","features":[458]},{"name":"WTS_SERVICE_START","features":[458]},{"name":"WTS_SERVICE_STATE","features":[458]},{"name":"WTS_SERVICE_STOP","features":[458]},{"name":"WTS_SESSIONSTATE_LOCK","features":[458]},{"name":"WTS_SESSIONSTATE_UNKNOWN","features":[458]},{"name":"WTS_SESSIONSTATE_UNLOCK","features":[458]},{"name":"WTS_SESSION_ADDRESS","features":[458]},{"name":"WTS_SESSION_ID","features":[458]},{"name":"WTS_SESSION_INFOA","features":[458]},{"name":"WTS_SESSION_INFOW","features":[458]},{"name":"WTS_SESSION_INFO_1A","features":[458]},{"name":"WTS_SESSION_INFO_1W","features":[458]},{"name":"WTS_SMALL_RECT","features":[458]},{"name":"WTS_SOCKADDR","features":[458]},{"name":"WTS_SYSTEMTIME","features":[458]},{"name":"WTS_TIME_ZONE_INFORMATION","features":[458]},{"name":"WTS_TYPE_CLASS","features":[458]},{"name":"WTS_USERNAME_LENGTH","features":[458]},{"name":"WTS_USER_CREDENTIAL","features":[458]},{"name":"WTS_USER_DATA","features":[458]},{"name":"WTS_VALIDATION_INFORMATIONA","features":[458]},{"name":"WTS_VALIDATION_INFORMATIONW","features":[458]},{"name":"WTS_VALUE_TYPE_BINARY","features":[458]},{"name":"WTS_VALUE_TYPE_GUID","features":[458]},{"name":"WTS_VALUE_TYPE_STRING","features":[458]},{"name":"WTS_VALUE_TYPE_ULONG","features":[458]},{"name":"WTS_VIRTUAL_CLASS","features":[458]},{"name":"WTS_WSD_FASTREBOOT","features":[458]},{"name":"WTS_WSD_LOGOFF","features":[458]},{"name":"WTS_WSD_POWEROFF","features":[458]},{"name":"WTS_WSD_REBOOT","features":[458]},{"name":"WTS_WSD_SHUTDOWN","features":[458]},{"name":"Workspace","features":[458]},{"name":"_ITSWkspEvents","features":[354,458]},{"name":"pluginResource","features":[458]},{"name":"pluginResource2","features":[458]},{"name":"pluginResource2FileAssociation","features":[458]}],"598":[{"name":"ERROR_REDIRECT_LOCATION_INVALID","features":[576]},{"name":"ERROR_REDIRECT_LOCATION_TOO_LONG","features":[576]},{"name":"ERROR_SERVICE_CBT_HARDENING_INVALID","features":[576]},{"name":"ERROR_WINRS_CLIENT_CLOSERECEIVEHANDLE_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_CLOSESENDHANDLE_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_CLOSESHELL_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_CREATESHELL_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_FREECREATESHELLRESULT_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_FREEPULLRESULT_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_FREERUNCOMMANDRESULT_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_GET_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_INVALID_FLAG","features":[576]},{"name":"ERROR_WINRS_CLIENT_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_PULL_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_PUSH_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_RECEIVE_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_RUNCOMMAND_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_SEND_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CLIENT_SIGNAL_NULL_PARAM","features":[576]},{"name":"ERROR_WINRS_CODE_PAGE_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WINRS_CONNECT_RESPONSE_BAD_BODY","features":[576]},{"name":"ERROR_WINRS_IDLETIMEOUT_OUTOFBOUNDS","features":[576]},{"name":"ERROR_WINRS_RECEIVE_IN_PROGRESS","features":[576]},{"name":"ERROR_WINRS_RECEIVE_NO_RESPONSE_DATA","features":[576]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_NOT_VALID","features":[576]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_RESOURCE_CONFLICT","features":[576]},{"name":"ERROR_WINRS_SHELLCOMMAND_DISCONNECT_OPERATION_NOT_VALID","features":[576]},{"name":"ERROR_WINRS_SHELLCOMMAND_RECONNECT_OPERATION_NOT_VALID","features":[576]},{"name":"ERROR_WINRS_SHELL_CLIENTID_NOT_VALID","features":[576]},{"name":"ERROR_WINRS_SHELL_CLIENTID_RESOURCE_CONFLICT","features":[576]},{"name":"ERROR_WINRS_SHELL_CLIENTSESSIONID_MISMATCH","features":[576]},{"name":"ERROR_WINRS_SHELL_CONNECTED_TO_DIFFERENT_CLIENT","features":[576]},{"name":"ERROR_WINRS_SHELL_DISCONNECTED","features":[576]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_GRACEFUL","features":[576]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_VALID","features":[576]},{"name":"ERROR_WINRS_SHELL_RECONNECT_OPERATION_NOT_VALID","features":[576]},{"name":"ERROR_WINRS_SHELL_URI_INVALID","features":[576]},{"name":"ERROR_WSMAN_ACK_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_ACTION_MISMATCH","features":[576]},{"name":"ERROR_WSMAN_ACTION_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_EPR","features":[576]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_OBJECT","features":[576]},{"name":"ERROR_WSMAN_ALREADY_EXISTS","features":[576]},{"name":"ERROR_WSMAN_AMBIGUOUS_SELECTORS","features":[576]},{"name":"ERROR_WSMAN_AUTHENTICATION_INVALID_FLAG","features":[576]},{"name":"ERROR_WSMAN_AUTHORIZATION_MODE_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_BAD_METHOD","features":[576]},{"name":"ERROR_WSMAN_BATCHSIZE_TOO_SMALL","features":[576]},{"name":"ERROR_WSMAN_BATCH_COMPLETE","features":[576]},{"name":"ERROR_WSMAN_BOOKMARKS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_BOOKMARK_EXPIRED","features":[576]},{"name":"ERROR_WSMAN_CANNOT_CHANGE_KEYS","features":[576]},{"name":"ERROR_WSMAN_CANNOT_DECRYPT","features":[576]},{"name":"ERROR_WSMAN_CANNOT_PROCESS_FILTER","features":[576]},{"name":"ERROR_WSMAN_CANNOT_USE_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS_FOR_HTTP","features":[576]},{"name":"ERROR_WSMAN_CANNOT_USE_CERTIFICATES_FOR_HTTP","features":[576]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_CREDSSP","features":[576]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_HTTP","features":[576]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_KERBEROS","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_CONFIGLIMIT_EXCEEDED","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_CREDENTIAL_MANAGEMENT_FAILIED","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDISSUERKEY","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDSUBJECTKEY","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDUSERCREDENTIALS","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDBLANK","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDTOOLONG","features":[576]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDUSERTUPLE","features":[576]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE","features":[576]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE_CLIENT","features":[576]},{"name":"ERROR_WSMAN_CERT_MISSING_AUTH_FLAG","features":[576]},{"name":"ERROR_WSMAN_CERT_MULTIPLE_CREDENTIALS_FLAG","features":[576]},{"name":"ERROR_WSMAN_CERT_NOT_FOUND","features":[576]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_BLANK","features":[576]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_NOT_BLANK","features":[576]},{"name":"ERROR_WSMAN_CHARACTER_SET","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS_NTLMONLY","features":[576]},{"name":"ERROR_WSMAN_CLIENT_BASIC_AUTHENTICATION_DISABLED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_BATCH_ITEMS_TOO_SMALL","features":[576]},{"name":"ERROR_WSMAN_CLIENT_BLANK_ACTION_URI","features":[576]},{"name":"ERROR_WSMAN_CLIENT_BLANK_INPUT_XML","features":[576]},{"name":"ERROR_WSMAN_CLIENT_BLANK_URI","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CERTIFICATES_AUTHENTICATION_DISABLED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CERT_NEEDED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_LOCATION","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_TYPE","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_CREDS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_USERNAME","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CLOSECOMMAND_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CLOSESHELL_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_COMPRESSION_INVALID_OPTION","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CONNECTCOMMAND_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CONNECTSHELL_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CONSTRUCTERROR_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREATESESSION_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NAME_INVALID","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FLAG_NEEDED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_DEFAULT_AUTHENTICATION","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_PROXY_AUTHENTICATION","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_NEEDED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_CREDSSP_AUTHENTICATION_DISABLED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_DECODEOBJECT_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_DELIVERENDSUBSCRIPTION_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_DELIVEREVENTS_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_DIGEST_AUTHENTICATION_DISABLED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_DISABLE_LOOPBACK_WITH_EXPLICIT_CREDENTIALS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_DISCONNECTSHELL_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ENCODEOBJECT_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATE_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDEVENT_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDOBJECT_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORNEXTOBJECT_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ENUM_RECEIVED_TOO_MANY_ITEMS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_GETBOOKMARK_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_GETERRORMESSAGE_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_INVALID_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_INVALID_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_STRING_INVALID_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INITIALIZE_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT_DNS_OR_UPN","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_COMMAND_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_SHELL_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CREATE_SHELL_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DEINIT_APPLICATION_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DELIVERY_RETRY","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISABLE_LOOPBACK","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISCONNECT_SHELL_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_GETERRORMESSAGE_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_INIT_APPLICATION_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LANGUAGE_CODE","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LOCALE","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RECEIVE_SHELL_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RESOURCE_LOCATOR","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RUNCOMMAND_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_PARAMETER","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SHELL_COMMAND_PAIR","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SIGNAL_SHELL_FLAG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_INVALID_UI_LANGUAGE","features":[576]},{"name":"ERROR_WSMAN_CLIENT_KERBEROS_AUTHENTICATION_DISABLED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CONNECTION_OPTIONS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CREDS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_MAX_CHARS_TOO_SMALL","features":[576]},{"name":"ERROR_WSMAN_CLIENT_MISSING_EXPIRATION","features":[576]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_AUTH_FLAGS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_DELIVERY_MODES","features":[576]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENUM_MODE_FLAGS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENVELOPE_POLICIES","features":[576]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_PROXY_AUTH_FLAGS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_NEGOTIATE_AUTHENTICATION_DISABLED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_NO_HANDLE","features":[576]},{"name":"ERROR_WSMAN_CLIENT_NO_SOURCES","features":[576]},{"name":"ERROR_WSMAN_CLIENT_NULL_ISSUERS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_NULL_PUBLISHERS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_NULL_RESULT_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_PULL_INVALID_FLAGS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_PUSH_HOST_TOO_LONG","features":[576]},{"name":"ERROR_WSMAN_CLIENT_PUSH_UNSUPPORTED_TRANSPORT","features":[576]},{"name":"ERROR_WSMAN_CLIENT_RECEIVE_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELLCOMMAND_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELL_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NOTCOMPLETED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_SEND_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_SESSION_UNUSABLE","features":[576]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_INVALID_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_SIGNAL_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_SPN_WRONG_AUTH","features":[576]},{"name":"ERROR_WSMAN_CLIENT_SUBSCRIBE_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_DISABLED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_HTTP_ONLY","features":[576]},{"name":"ERROR_WSMAN_CLIENT_UNKNOWN_EXPIRATION_TYPE","features":[576]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_AND_PASSWORD_NEEDED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_PASSWORD_NEEDED","features":[576]},{"name":"ERROR_WSMAN_CLIENT_WORKGROUP_NO_KERBEROS","features":[576]},{"name":"ERROR_WSMAN_CLIENT_ZERO_HEARTBEAT","features":[576]},{"name":"ERROR_WSMAN_COMMAND_ALREADY_CLOSED","features":[576]},{"name":"ERROR_WSMAN_COMMAND_TERMINATED","features":[576]},{"name":"ERROR_WSMAN_CONCURRENCY","features":[576]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_CERTMAPPING_KEYS","features":[576]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_GPO_CONTROLLED_SETTING","features":[576]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_MUTUAL","features":[576]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_SHARE_SSL_CONFIG","features":[576]},{"name":"ERROR_WSMAN_CONFIG_CERT_CN_DOES_NOT_MATCH_HOSTNAME","features":[576]},{"name":"ERROR_WSMAN_CONFIG_CORRUPTED","features":[576]},{"name":"ERROR_WSMAN_CONFIG_GROUP_POLICY_CHANGE_NOTIFICATION_SUBSCRIPTION_FAILED","features":[576]},{"name":"ERROR_WSMAN_CONFIG_HOSTNAME_CHANGE_WITHOUT_CERT","features":[576]},{"name":"ERROR_WSMAN_CONFIG_PORT_INVALID","features":[576]},{"name":"ERROR_WSMAN_CONFIG_READONLY_PROPERTY","features":[576]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_OPERATION_ON_KEY","features":[576]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_PROCESSPATH","features":[576]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_CMDSHELLURI_NOTPERMITTED","features":[576]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_INVALID","features":[576]},{"name":"ERROR_WSMAN_CONFIG_THUMBPRINT_SHOULD_BE_EMPTY","features":[576]},{"name":"ERROR_WSMAN_CONNECTIONSTR_INVALID","features":[576]},{"name":"ERROR_WSMAN_CONNECTOR_GET","features":[576]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_ENVIRONMENT_VARIABLE_NAME","features":[576]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_STREAMID","features":[576]},{"name":"ERROR_WSMAN_CREATESHELL_RUNAS_FAILED","features":[576]},{"name":"ERROR_WSMAN_CREATE_RESPONSE_NO_EPR","features":[576]},{"name":"ERROR_WSMAN_CREDSSP_USERNAME_PASSWORD_NEEDED","features":[576]},{"name":"ERROR_WSMAN_CREDS_PASSED_WITH_NO_AUTH_FLAG","features":[576]},{"name":"ERROR_WSMAN_CUSTOMREMOTESHELL_DEPRECATED","features":[576]},{"name":"ERROR_WSMAN_DEFAULTAUTH_IPADDRESS","features":[576]},{"name":"ERROR_WSMAN_DELIVERY_REFUSED","features":[576]},{"name":"ERROR_WSMAN_DELIVERY_RETRIES_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_DELIVER_IN_PROGRESS","features":[576]},{"name":"ERROR_WSMAN_DEPRECATED_CONFIG_SETTING","features":[576]},{"name":"ERROR_WSMAN_DESERIALIZE_CLASS","features":[576]},{"name":"ERROR_WSMAN_DESTINATION_INVALID","features":[576]},{"name":"ERROR_WSMAN_DESTINATION_UNREACHABLE","features":[576]},{"name":"ERROR_WSMAN_DIFFERENT_AUTHZ_TOKEN","features":[576]},{"name":"ERROR_WSMAN_DIFFERENT_CIM_SELECTOR","features":[576]},{"name":"ERROR_WSMAN_DUPLICATE_SELECTORS","features":[576]},{"name":"ERROR_WSMAN_ENCODING_LIMIT","features":[576]},{"name":"ERROR_WSMAN_ENCODING_TYPE","features":[576]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE","features":[576]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE_INVALID_VALUE","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_CANNOT_PROCESS_FILTER","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_FILTERING_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_FILTER_DIALECT_REQUESTED_UNAVAILABLE","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_ENUMERATION_CONTEXT","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_EXPIRATION_TIME","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMAMNDS_FILTER_EXPECTED","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMMANDS_EPRS_NOTSUPPORTED","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_TIMED_OUT","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_UNABLE_TO_RENEW","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TIME","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TYPE","features":[576]},{"name":"ERROR_WSMAN_ENUMERATE_WMI_INVALID_KEY","features":[576]},{"name":"ERROR_WSMAN_ENUMERATION_CLOSED","features":[576]},{"name":"ERROR_WSMAN_ENUMERATION_INITIALIZING","features":[576]},{"name":"ERROR_WSMAN_ENUMERATION_INVALID","features":[576]},{"name":"ERROR_WSMAN_ENUMERATION_MODE_UNSUPPORTED","features":[576]},{"name":"ERROR_WSMAN_ENVELOPE_TOO_LARGE","features":[576]},{"name":"ERROR_WSMAN_EPR_NESTING_EXCEEDED","features":[576]},{"name":"ERROR_WSMAN_EVENTING_CONCURRENT_CLIENT_RECEIVE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_DELIVERYFAILED_FROMSOURCE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_INVALID","features":[576]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_UNAVAILABLE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_FAST_SENDER","features":[576]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_REQUESTED_UNAVAILABLE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INCOMPATIBLE_BATCHPARAMS_AND_DELIVERYMODE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INSECURE_PUSHSUBSCRIPTION_CONNECTION","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENCODING_IN_DELIVERY","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENDTO_ADDRESSS","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EVENTSOURCE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EXPIRATION_TIME","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_HEARTBEAT","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_INCOMING_EVENT_PACKET_HEADER","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_LOCALE_IN_DELIVERY","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_MESSAGE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_INVALID_NOTIFYTO_ADDRESSS","features":[576]},{"name":"ERROR_WSMAN_EVENTING_LOOPBACK_TESTFAILED","features":[576]},{"name":"ERROR_WSMAN_EVENTING_MISSING_LOCALE_IN_DELIVERY","features":[576]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO","features":[576]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO_ADDRESSS","features":[576]},{"name":"ERROR_WSMAN_EVENTING_NOMATCHING_LISTENER","features":[576]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_COLLECTOR","features":[576]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_PUBLISHER","features":[576]},{"name":"ERROR_WSMAN_EVENTING_PUSH_SUBSCRIPTION_NOACTIVATE_EVENTSOURCE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_SOURCE_UNABLE_TO_PROCESS","features":[576]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTIONCLOSED_BYREMOTESERVICE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTION_CANCELLED_BYSOURCE","features":[576]},{"name":"ERROR_WSMAN_EVENTING_UNABLE_TO_RENEW","features":[576]},{"name":"ERROR_WSMAN_EVENTING_UNSUPPORTED_EXPIRATION_TYPE","features":[576]},{"name":"ERROR_WSMAN_EXPIRATION_TIME_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_EXPLICIT_CREDENTIALS_REQUIRED","features":[576]},{"name":"ERROR_WSMAN_FAILED_AUTHENTICATION","features":[576]},{"name":"ERROR_WSMAN_FEATURE_DEPRECATED","features":[576]},{"name":"ERROR_WSMAN_FILE_NOT_PRESENT","features":[576]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED","features":[576]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_FORMAT_MISMATCH_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_FORMAT_SECURITY_TOKEN_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_FRAGMENT_DIALECT_REQUESTED_UNAVAILABLE","features":[576]},{"name":"ERROR_WSMAN_FRAGMENT_TRANSFER_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_GETCLASS","features":[576]},{"name":"ERROR_WSMAN_HEARTBEATS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_HTML_ERROR","features":[576]},{"name":"ERROR_WSMAN_HTTP_CONTENT_TYPE_MISSMATCH_RESPONSE_DATA","features":[576]},{"name":"ERROR_WSMAN_HTTP_INVALID_CONTENT_TYPE_IN_RESPONSE_DATA","features":[576]},{"name":"ERROR_WSMAN_HTTP_NOT_FOUND_STATUS","features":[576]},{"name":"ERROR_WSMAN_HTTP_NO_RESPONSE_DATA","features":[576]},{"name":"ERROR_WSMAN_HTTP_REQUEST_TOO_LARGE_STATUS","features":[576]},{"name":"ERROR_WSMAN_HTTP_SERVICE_UNAVAILABLE_STATUS","features":[576]},{"name":"ERROR_WSMAN_HTTP_STATUS_BAD_REQUEST","features":[576]},{"name":"ERROR_WSMAN_HTTP_STATUS_SERVER_ERROR","features":[576]},{"name":"ERROR_WSMAN_IISCONFIGURATION_READ_FAILED","features":[576]},{"name":"ERROR_WSMAN_INCOMPATIBLE_EPR","features":[576]},{"name":"ERROR_WSMAN_INEXISTENT_MAC_ADDRESS","features":[576]},{"name":"ERROR_WSMAN_INSECURE_ADDRESS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_INSUFFCIENT_SELECTORS","features":[576]},{"name":"ERROR_WSMAN_INSUFFICIENT_METADATA_FOR_BASIC","features":[576]},{"name":"ERROR_WSMAN_INVALID_ACTIONURI","features":[576]},{"name":"ERROR_WSMAN_INVALID_BATCH_PARAMETER","features":[576]},{"name":"ERROR_WSMAN_INVALID_BATCH_SETTINGS_PARAMETER","features":[576]},{"name":"ERROR_WSMAN_INVALID_BOOKMARK","features":[576]},{"name":"ERROR_WSMAN_INVALID_CHARACTERS_IN_RESPONSE","features":[576]},{"name":"ERROR_WSMAN_INVALID_CONFIGSDDL_URL","features":[576]},{"name":"ERROR_WSMAN_INVALID_CONNECTIONRETRY","features":[576]},{"name":"ERROR_WSMAN_INVALID_FILEPATH","features":[576]},{"name":"ERROR_WSMAN_INVALID_FILTER_XML","features":[576]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_DIALECT","features":[576]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH","features":[576]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH_BLANK","features":[576]},{"name":"ERROR_WSMAN_INVALID_HEADER","features":[576]},{"name":"ERROR_WSMAN_INVALID_HOSTNAME_PATTERN","features":[576]},{"name":"ERROR_WSMAN_INVALID_IPFILTER","features":[576]},{"name":"ERROR_WSMAN_INVALID_KEY","features":[576]},{"name":"ERROR_WSMAN_INVALID_LITERAL_URI","features":[576]},{"name":"ERROR_WSMAN_INVALID_MESSAGE_INFORMATION_HEADER","features":[576]},{"name":"ERROR_WSMAN_INVALID_OPTIONS","features":[576]},{"name":"ERROR_WSMAN_INVALID_OPTIONSET","features":[576]},{"name":"ERROR_WSMAN_INVALID_OPTION_NO_PROXY_SERVER","features":[576]},{"name":"ERROR_WSMAN_INVALID_PARAMETER","features":[576]},{"name":"ERROR_WSMAN_INVALID_PARAMETER_NAME","features":[576]},{"name":"ERROR_WSMAN_INVALID_PROPOSED_ID","features":[576]},{"name":"ERROR_WSMAN_INVALID_PROVIDER_RESPONSE","features":[576]},{"name":"ERROR_WSMAN_INVALID_PUBLISHERS_TYPE","features":[576]},{"name":"ERROR_WSMAN_INVALID_REDIRECT_ERROR","features":[576]},{"name":"ERROR_WSMAN_INVALID_REPRESENTATION","features":[576]},{"name":"ERROR_WSMAN_INVALID_RESOURCE_URI","features":[576]},{"name":"ERROR_WSMAN_INVALID_RESUMPTION_CONTEXT","features":[576]},{"name":"ERROR_WSMAN_INVALID_SECURITY_DESCRIPTOR","features":[576]},{"name":"ERROR_WSMAN_INVALID_SELECTORS","features":[576]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_NAME","features":[576]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_VALUE","features":[576]},{"name":"ERROR_WSMAN_INVALID_SOAP_BODY","features":[576]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIBE_OBJECT","features":[576]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIPTION_MANAGER","features":[576]},{"name":"ERROR_WSMAN_INVALID_SYSTEM","features":[576]},{"name":"ERROR_WSMAN_INVALID_TARGET_RESOURCEURI","features":[576]},{"name":"ERROR_WSMAN_INVALID_TARGET_SELECTORS","features":[576]},{"name":"ERROR_WSMAN_INVALID_TARGET_SYSTEM","features":[576]},{"name":"ERROR_WSMAN_INVALID_TIMEOUT_HEADER","features":[576]},{"name":"ERROR_WSMAN_INVALID_URI","features":[576]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_ENUM_WQL","features":[576]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_SINGLETON","features":[576]},{"name":"ERROR_WSMAN_INVALID_USESSL_PARAM","features":[576]},{"name":"ERROR_WSMAN_INVALID_XML","features":[576]},{"name":"ERROR_WSMAN_INVALID_XML_FRAGMENT","features":[576]},{"name":"ERROR_WSMAN_INVALID_XML_MISSING_VALUES","features":[576]},{"name":"ERROR_WSMAN_INVALID_XML_NAMESPACE","features":[576]},{"name":"ERROR_WSMAN_INVALID_XML_RUNAS_DISABLED","features":[576]},{"name":"ERROR_WSMAN_INVALID_XML_VALUES","features":[576]},{"name":"ERROR_WSMAN_KERBEROS_IPADDRESS","features":[576]},{"name":"ERROR_WSMAN_LISTENER_ADDRESS_INVALID","features":[576]},{"name":"ERROR_WSMAN_LOCALE_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_MACHINE_OPTION_REQUIRED","features":[576]},{"name":"ERROR_WSMAN_MAXENVELOPE_POLICY_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_MAXENVELOPE_SIZE_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_MAXITEMS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_MAXTIME_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_MAX_ELEMENTS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE","features":[576]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE_EXCEEDED","features":[576]},{"name":"ERROR_WSMAN_MESSAGE_INFORMATION_HEADER_REQUIRED","features":[576]},{"name":"ERROR_WSMAN_METADATA_REDIRECT","features":[576]},{"name":"ERROR_WSMAN_MIN_ENVELOPE_SIZE","features":[576]},{"name":"ERROR_WSMAN_MISSING_CLASSNAME","features":[576]},{"name":"ERROR_WSMAN_MISSING_FRAGMENT_PATH","features":[576]},{"name":"ERROR_WSMAN_MULTIPLE_CREDENTIALS","features":[576]},{"name":"ERROR_WSMAN_MUSTUNDERSTAND_ON_LOCALE_UNSUPPORTED","features":[576]},{"name":"ERROR_WSMAN_MUTUAL_AUTH_FAILED","features":[576]},{"name":"ERROR_WSMAN_NAME_NOT_RESOLVED","features":[576]},{"name":"ERROR_WSMAN_NETWORK_TIMEDOUT","features":[576]},{"name":"ERROR_WSMAN_NEW_DESERIALIZER","features":[576]},{"name":"ERROR_WSMAN_NEW_SESSION","features":[576]},{"name":"ERROR_WSMAN_NON_PULL_SUBSCRIPTION_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_NO_ACK","features":[576]},{"name":"ERROR_WSMAN_NO_CERTMAPPING_OPERATION_FOR_LOCAL_SESSION","features":[576]},{"name":"ERROR_WSMAN_NO_COMMANDID","features":[576]},{"name":"ERROR_WSMAN_NO_COMMAND_RESPONSE","features":[576]},{"name":"ERROR_WSMAN_NO_DHCP_ADDRESSES","features":[576]},{"name":"ERROR_WSMAN_NO_IDENTIFY_FOR_LOCAL_SESSION","features":[576]},{"name":"ERROR_WSMAN_NO_PUSH_SUBSCRIPTION_FOR_LOCAL_SESSION","features":[576]},{"name":"ERROR_WSMAN_NO_RECEIVE_RESPONSE","features":[576]},{"name":"ERROR_WSMAN_NO_UNICAST_ADDRESSES","features":[576]},{"name":"ERROR_WSMAN_NULL_KEY","features":[576]},{"name":"ERROR_WSMAN_OBJECTONLY_INVALID","features":[576]},{"name":"ERROR_WSMAN_OPERATION_TIMEDOUT","features":[576]},{"name":"ERROR_WSMAN_OPERATION_TIMEOUT_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_NAME","features":[576]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_VALUE","features":[576]},{"name":"ERROR_WSMAN_OPTIONS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_OPTION_LIMIT","features":[576]},{"name":"ERROR_WSMAN_PARAMETER_TYPE_MISMATCH","features":[576]},{"name":"ERROR_WSMAN_PLUGIN_CONFIGURATION_CORRUPTED","features":[576]},{"name":"ERROR_WSMAN_PLUGIN_FAILED","features":[576]},{"name":"ERROR_WSMAN_POLICY_CANNOT_COMPLY","features":[576]},{"name":"ERROR_WSMAN_POLICY_CORRUPTED","features":[576]},{"name":"ERROR_WSMAN_POLICY_TOO_COMPLEX","features":[576]},{"name":"ERROR_WSMAN_POLYMORPHISM_MODE_UNSUPPORTED","features":[576]},{"name":"ERROR_WSMAN_PORT_INVALID","features":[576]},{"name":"ERROR_WSMAN_PROVIDER_FAILURE","features":[576]},{"name":"ERROR_WSMAN_PROVIDER_LOAD_FAILED","features":[576]},{"name":"ERROR_WSMAN_PROVSYS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_PROXY_ACCESS_TYPE","features":[576]},{"name":"ERROR_WSMAN_PROXY_AUTHENTICATION_INVALID_FLAG","features":[576]},{"name":"ERROR_WSMAN_PUBLIC_FIREWALL_PROFILE_ACTIVE","features":[576]},{"name":"ERROR_WSMAN_PULL_IN_PROGRESS","features":[576]},{"name":"ERROR_WSMAN_PULL_PARAMS_NOT_SAME_AS_ENUM","features":[576]},{"name":"ERROR_WSMAN_PUSHSUBSCRIPTION_INVALIDUSERACCOUNT","features":[576]},{"name":"ERROR_WSMAN_PUSH_SUBSCRIPTION_CONFIG_INVALID","features":[576]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FAILED_CERT_REQUIRED","features":[576]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FIREWALL_EXCEPTIONS_DISALLOWED","features":[576]},{"name":"ERROR_WSMAN_QUICK_CONFIG_LOCAL_POLICY_CHANGE_DISALLOWED","features":[576]},{"name":"ERROR_WSMAN_QUOTA_LIMIT","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_COMMANDS_PER_SHELL_PPQ","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS_USER_PPQ","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINOPERATIONS_PPQ","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINSHELLS_PPQ","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS_PPQ","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLUSERS","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MAX_USERS_PPQ","features":[576]},{"name":"ERROR_WSMAN_QUOTA_MIN_REQUIREMENT_NOT_AVAILABLE_PPQ","features":[576]},{"name":"ERROR_WSMAN_QUOTA_SYSTEM","features":[576]},{"name":"ERROR_WSMAN_QUOTA_USER","features":[576]},{"name":"ERROR_WSMAN_REDIRECT_LOCATION_NOT_AVAILABLE","features":[576]},{"name":"ERROR_WSMAN_REDIRECT_REQUESTED","features":[576]},{"name":"ERROR_WSMAN_REMOTESHELLS_NOT_ALLOWED","features":[576]},{"name":"ERROR_WSMAN_REMOTE_CIMPATH_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_REMOTE_CONNECTION_NOT_ALLOWED","features":[576]},{"name":"ERROR_WSMAN_RENAME_FAILURE","features":[576]},{"name":"ERROR_WSMAN_REQUEST_INIT_ERROR","features":[576]},{"name":"ERROR_WSMAN_REQUEST_NOT_SUPPORTED_AT_SERVICE","features":[576]},{"name":"ERROR_WSMAN_RESOURCE_NOT_FOUND","features":[576]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_ENUMERATION_CONTEXT","features":[576]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_MESSAGE_INFORMATION_HEADER","features":[576]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_SOAP_FAULT","features":[576]},{"name":"ERROR_WSMAN_RESPONSE_NO_RESULTS","features":[576]},{"name":"ERROR_WSMAN_RESPONSE_NO_SOAP_HEADER_BODY","features":[576]},{"name":"ERROR_WSMAN_RESPONSE_NO_XML_FRAGMENT_WRAPPER","features":[576]},{"name":"ERROR_WSMAN_RESUMPTION_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_RESUMPTION_TYPE_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_RUNASUSER_MANAGEDACCOUNT_LOGON_FAILED","features":[576]},{"name":"ERROR_WSMAN_RUNAS_INVALIDUSERCREDENTIALS","features":[576]},{"name":"ERROR_WSMAN_RUNSHELLCOMMAND_NULL_ARGUMENT","features":[576]},{"name":"ERROR_WSMAN_SCHEMA_VALIDATION_ERROR","features":[576]},{"name":"ERROR_WSMAN_SECURITY_UNMAPPED","features":[576]},{"name":"ERROR_WSMAN_SELECTOR_LIMIT","features":[576]},{"name":"ERROR_WSMAN_SELECTOR_TYPEMISMATCH","features":[576]},{"name":"ERROR_WSMAN_SEMANTICCALLBACK_TIMEDOUT","features":[576]},{"name":"ERROR_WSMAN_SENDHEARBEAT_EMPTY_ENUMERATOR","features":[576]},{"name":"ERROR_WSMAN_SENDSHELLINPUT_INVALID_STREAMID_INDEX","features":[576]},{"name":"ERROR_WSMAN_SERVER_DESTINATION_LOCALHOST","features":[576]},{"name":"ERROR_WSMAN_SERVER_ENVELOPE_LIMIT","features":[576]},{"name":"ERROR_WSMAN_SERVER_NONPULLSUBSCRIBE_NULL_PARAM","features":[576]},{"name":"ERROR_WSMAN_SERVER_NOT_TRUSTED","features":[576]},{"name":"ERROR_WSMAN_SERVICE_REMOTE_ACCESS_DISABLED","features":[576]},{"name":"ERROR_WSMAN_SERVICE_STREAM_DISCONNECTED","features":[576]},{"name":"ERROR_WSMAN_SESSION_ALREADY_CLOSED","features":[576]},{"name":"ERROR_WSMAN_SHELL_ALREADY_CLOSED","features":[576]},{"name":"ERROR_WSMAN_SHELL_INVALID_COMMAND_HANDLE","features":[576]},{"name":"ERROR_WSMAN_SHELL_INVALID_DESIRED_STREAMS","features":[576]},{"name":"ERROR_WSMAN_SHELL_INVALID_INPUT_STREAM","features":[576]},{"name":"ERROR_WSMAN_SHELL_INVALID_SHELL_HANDLE","features":[576]},{"name":"ERROR_WSMAN_SHELL_NOT_INITIALIZED","features":[576]},{"name":"ERROR_WSMAN_SHELL_SYNCHRONOUS_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_SOAP_DATA_ENCODING_UNKNOWN","features":[576]},{"name":"ERROR_WSMAN_SOAP_FAULT_MUST_UNDERSTAND","features":[576]},{"name":"ERROR_WSMAN_SOAP_VERSION_MISMATCH","features":[576]},{"name":"ERROR_WSMAN_SSL_CONNECTION_ABORTED","features":[576]},{"name":"ERROR_WSMAN_SUBSCRIBE_WMI_INVALID_KEY","features":[576]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLIENT_DID_NOT_CALL_WITHIN_HEARTBEAT","features":[576]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSED","features":[576]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSE_IN_PROGRESS","features":[576]},{"name":"ERROR_WSMAN_SUBSCRIPTION_LISTENER_NOLONGERVALID","features":[576]},{"name":"ERROR_WSMAN_SUBSCRIPTION_NO_HEARTBEAT","features":[576]},{"name":"ERROR_WSMAN_SYSTEM_NOT_FOUND","features":[576]},{"name":"ERROR_WSMAN_TARGET_ALREADY_EXISTS","features":[576]},{"name":"ERROR_WSMAN_TRANSPORT_NOT_SUPPORTED","features":[576]},{"name":"ERROR_WSMAN_UNEXPECTED_SELECTORS","features":[576]},{"name":"ERROR_WSMAN_UNKNOWN_HTTP_STATUS_RETURNED","features":[576]},{"name":"ERROR_WSMAN_UNREPORTABLE_SUCCESS","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_ADDRESSING_MODE","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_ENCODING","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_IDENTIFY","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_OPTIONS","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_HTTP_STATUS_REDIRECT","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_MEDIA","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_OCTETTYPE","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_TIMEOUT","features":[576]},{"name":"ERROR_WSMAN_UNSUPPORTED_TYPE","features":[576]},{"name":"ERROR_WSMAN_URISECURITY_INVALIDURIKEY","features":[576]},{"name":"ERROR_WSMAN_URI_LIMIT","features":[576]},{"name":"ERROR_WSMAN_URI_NON_DMTF_CLASS","features":[576]},{"name":"ERROR_WSMAN_URI_QUERY_STRING_SYNTAX_ERROR","features":[576]},{"name":"ERROR_WSMAN_URI_SECURITY_URI","features":[576]},{"name":"ERROR_WSMAN_URI_WRONG_DMTF_VERSION","features":[576]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED","features":[576]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED_DOWNLEVEL","features":[576]},{"name":"ERROR_WSMAN_WHITESPACE","features":[576]},{"name":"ERROR_WSMAN_WMI_CANNOT_CONNECT_ACCESS_DENIED","features":[576]},{"name":"ERROR_WSMAN_WMI_INVALID_VALUE","features":[576]},{"name":"ERROR_WSMAN_WMI_MAX_NESTED","features":[576]},{"name":"ERROR_WSMAN_WMI_PROVIDER_ACCESS_DENIED","features":[576]},{"name":"ERROR_WSMAN_WMI_PROVIDER_INVALID_PARAMETER","features":[576]},{"name":"ERROR_WSMAN_WMI_PROVIDER_NOT_CAPABLE","features":[576]},{"name":"ERROR_WSMAN_WMI_SVC_ACCESS_DENIED","features":[576]},{"name":"ERROR_WSMAN_WRONG_METADATA","features":[576]},{"name":"IWSMan","features":[354,576]},{"name":"IWSManConnectionOptions","features":[354,576]},{"name":"IWSManConnectionOptionsEx","features":[354,576]},{"name":"IWSManConnectionOptionsEx2","features":[354,576]},{"name":"IWSManEnumerator","features":[354,576]},{"name":"IWSManEx","features":[354,576]},{"name":"IWSManEx2","features":[354,576]},{"name":"IWSManEx3","features":[354,576]},{"name":"IWSManInternal","features":[354,576]},{"name":"IWSManResourceLocator","features":[354,576]},{"name":"IWSManResourceLocatorInternal","features":[576]},{"name":"IWSManSession","features":[354,576]},{"name":"WSMAN_API_HANDLE","features":[576]},{"name":"WSMAN_AUTHENTICATION_CREDENTIALS","features":[576]},{"name":"WSMAN_AUTHZ_QUOTA","features":[576]},{"name":"WSMAN_CERTIFICATE_DETAILS","features":[576]},{"name":"WSMAN_CMDSHELL_OPTION_CODEPAGE","features":[576]},{"name":"WSMAN_CMDSHELL_OPTION_CONSOLEMODE_STDIN","features":[576]},{"name":"WSMAN_CMDSHELL_OPTION_SKIP_CMD_SHELL","features":[576]},{"name":"WSMAN_COMMAND_ARG_SET","features":[576]},{"name":"WSMAN_COMMAND_HANDLE","features":[576]},{"name":"WSMAN_CONNECT_DATA","features":[576]},{"name":"WSMAN_CREATE_SHELL_DATA","features":[576]},{"name":"WSMAN_DATA","features":[576]},{"name":"WSMAN_DATA_BINARY","features":[576]},{"name":"WSMAN_DATA_NONE","features":[576]},{"name":"WSMAN_DATA_TEXT","features":[576]},{"name":"WSMAN_DATA_TYPE_BINARY","features":[576]},{"name":"WSMAN_DATA_TYPE_DWORD","features":[576]},{"name":"WSMAN_DATA_TYPE_TEXT","features":[576]},{"name":"WSMAN_DEFAULT_TIMEOUT_MS","features":[576]},{"name":"WSMAN_ENVIRONMENT_VARIABLE","features":[576]},{"name":"WSMAN_ENVIRONMENT_VARIABLE_SET","features":[576]},{"name":"WSMAN_ERROR","features":[576]},{"name":"WSMAN_FILTER","features":[576]},{"name":"WSMAN_FLAG_AUTH_BASIC","features":[576]},{"name":"WSMAN_FLAG_AUTH_CLIENT_CERTIFICATE","features":[576]},{"name":"WSMAN_FLAG_AUTH_CREDSSP","features":[576]},{"name":"WSMAN_FLAG_AUTH_DIGEST","features":[576]},{"name":"WSMAN_FLAG_AUTH_KERBEROS","features":[576]},{"name":"WSMAN_FLAG_AUTH_NEGOTIATE","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_OPERATION","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_STREAM","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_NETWORK_FAILURE_DETECTED","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_RECEIVE_DELAY_STREAM_REQUEST_PROCESSED","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_RECONNECTED_AFTER_NETWORK_FAILURE","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_RETRYING_AFTER_NETWORK_FAILURE","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_RETRY_ABORTED_DUE_TO_INTERNAL_ERROR","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTED","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTING","features":[576]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_SUPPORTS_DISCONNECT","features":[576]},{"name":"WSMAN_FLAG_DEFAULT_AUTHENTICATION","features":[576]},{"name":"WSMAN_FLAG_DELETE_SERVER_SESSION","features":[576]},{"name":"WSMAN_FLAG_NO_AUTHENTICATION","features":[576]},{"name":"WSMAN_FLAG_NO_COMPRESSION","features":[576]},{"name":"WSMAN_FLAG_RECEIVE_DELAY_OUTPUT_STREAM","features":[576]},{"name":"WSMAN_FLAG_RECEIVE_FLUSH","features":[576]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_DATA_BOUNDARY","features":[576]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_NO_MORE_DATA","features":[576]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_0","features":[576]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_1","features":[576]},{"name":"WSMAN_FLAG_SEND_NO_MORE_DATA","features":[576]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_BLOCK","features":[576]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_DROP","features":[576]},{"name":"WSMAN_FRAGMENT","features":[576]},{"name":"WSMAN_KEY","features":[576]},{"name":"WSMAN_OPERATION_HANDLE","features":[576]},{"name":"WSMAN_OPERATION_INFO","features":[303,576]},{"name":"WSMAN_OPERATION_INFOEX","features":[303,576]},{"name":"WSMAN_OPERATION_INFOV1","features":[576]},{"name":"WSMAN_OPERATION_INFOV2","features":[576]},{"name":"WSMAN_OPTION","features":[303,576]},{"name":"WSMAN_OPTION_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS","features":[576]},{"name":"WSMAN_OPTION_DEFAULT_OPERATION_TIMEOUTMS","features":[576]},{"name":"WSMAN_OPTION_ENABLE_SPN_SERVER_PORT","features":[576]},{"name":"WSMAN_OPTION_LOCALE","features":[576]},{"name":"WSMAN_OPTION_MACHINE_ID","features":[576]},{"name":"WSMAN_OPTION_MAX_ENVELOPE_SIZE_KB","features":[576]},{"name":"WSMAN_OPTION_MAX_RETRY_TIME","features":[576]},{"name":"WSMAN_OPTION_PROXY_AUTO_DETECT","features":[576]},{"name":"WSMAN_OPTION_PROXY_IE_PROXY_CONFIG","features":[576]},{"name":"WSMAN_OPTION_PROXY_NO_PROXY_SERVER","features":[576]},{"name":"WSMAN_OPTION_PROXY_WINHTTP_PROXY_CONFIG","features":[576]},{"name":"WSMAN_OPTION_REDIRECT_LOCATION","features":[576]},{"name":"WSMAN_OPTION_SET","features":[303,576]},{"name":"WSMAN_OPTION_SETEX","features":[303,576]},{"name":"WSMAN_OPTION_SHELL_MAX_DATA_SIZE_PER_MESSAGE_KB","features":[576]},{"name":"WSMAN_OPTION_SKIP_CA_CHECK","features":[576]},{"name":"WSMAN_OPTION_SKIP_CN_CHECK","features":[576]},{"name":"WSMAN_OPTION_SKIP_REVOCATION_CHECK","features":[576]},{"name":"WSMAN_OPTION_TIMEOUTMS_CLOSE_SHELL","features":[576]},{"name":"WSMAN_OPTION_TIMEOUTMS_CREATE_SHELL","features":[576]},{"name":"WSMAN_OPTION_TIMEOUTMS_RECEIVE_SHELL_OUTPUT","features":[576]},{"name":"WSMAN_OPTION_TIMEOUTMS_RUN_SHELL_COMMAND","features":[576]},{"name":"WSMAN_OPTION_TIMEOUTMS_SEND_SHELL_INPUT","features":[576]},{"name":"WSMAN_OPTION_TIMEOUTMS_SIGNAL_SHELL","features":[576]},{"name":"WSMAN_OPTION_UI_LANGUAGE","features":[576]},{"name":"WSMAN_OPTION_UNENCRYPTED_MESSAGES","features":[576]},{"name":"WSMAN_OPTION_USE_INTEARACTIVE_TOKEN","features":[576]},{"name":"WSMAN_OPTION_USE_SSL","features":[576]},{"name":"WSMAN_OPTION_UTF16","features":[576]},{"name":"WSMAN_PLUGIN_AUTHORIZE_OPERATION","features":[303,576]},{"name":"WSMAN_PLUGIN_AUTHORIZE_QUERY_QUOTA","features":[303,576]},{"name":"WSMAN_PLUGIN_AUTHORIZE_RELEASE_CONTEXT","features":[576]},{"name":"WSMAN_PLUGIN_AUTHORIZE_USER","features":[303,576]},{"name":"WSMAN_PLUGIN_COMMAND","features":[303,576]},{"name":"WSMAN_PLUGIN_CONNECT","features":[303,576]},{"name":"WSMAN_PLUGIN_PARAMS_AUTORESTART","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_DATA_LOCALE","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_LOCALE","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_HOSTIDLETIMEOUTSECONDS","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_LARGEST_RESULT_SIZE","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_MAX_ENVELOPE_SIZE","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_NAME","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_REMAINING_RESULT_SIZE","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_RUNAS_USER","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_SHAREDHOST","features":[576]},{"name":"WSMAN_PLUGIN_PARAMS_TIMEOUT","features":[576]},{"name":"WSMAN_PLUGIN_RECEIVE","features":[303,576]},{"name":"WSMAN_PLUGIN_RELEASE_COMMAND_CONTEXT","features":[576]},{"name":"WSMAN_PLUGIN_RELEASE_SHELL_CONTEXT","features":[576]},{"name":"WSMAN_PLUGIN_REQUEST","features":[303,576]},{"name":"WSMAN_PLUGIN_SEND","features":[303,576]},{"name":"WSMAN_PLUGIN_SHELL","features":[303,576]},{"name":"WSMAN_PLUGIN_SHUTDOWN","features":[576]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IDLETIMEOUT_ELAPSED","features":[576]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IISHOST","features":[576]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SERVICE","features":[576]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SYSTEM","features":[576]},{"name":"WSMAN_PLUGIN_SIGNAL","features":[303,576]},{"name":"WSMAN_PLUGIN_STARTUP","features":[576]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_CRASH","features":[576]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_REBOOT","features":[576]},{"name":"WSMAN_PLUGIN_STARTUP_REQUEST_RECEIVED","features":[576]},{"name":"WSMAN_PROXY_INFO","features":[576]},{"name":"WSMAN_RECEIVE_DATA_RESULT","features":[576]},{"name":"WSMAN_RESPONSE_DATA","features":[576]},{"name":"WSMAN_SELECTOR_SET","features":[576]},{"name":"WSMAN_SENDER_DETAILS","features":[303,576]},{"name":"WSMAN_SESSION_HANDLE","features":[576]},{"name":"WSMAN_SHELL_ASYNC","features":[576]},{"name":"WSMAN_SHELL_COMPLETION_FUNCTION","features":[576]},{"name":"WSMAN_SHELL_DISCONNECT_INFO","features":[576]},{"name":"WSMAN_SHELL_HANDLE","features":[576]},{"name":"WSMAN_SHELL_NS","features":[576]},{"name":"WSMAN_SHELL_OPTION_NOPROFILE","features":[576]},{"name":"WSMAN_SHELL_STARTUP_INFO_V10","features":[576]},{"name":"WSMAN_SHELL_STARTUP_INFO_V11","features":[576]},{"name":"WSMAN_STREAM_ID_SET","features":[576]},{"name":"WSMAN_STREAM_ID_STDERR","features":[576]},{"name":"WSMAN_STREAM_ID_STDIN","features":[576]},{"name":"WSMAN_STREAM_ID_STDOUT","features":[576]},{"name":"WSMAN_USERNAME_PASSWORD_CREDS","features":[576]},{"name":"WSMan","features":[576]},{"name":"WSManAuthenticationFlags","features":[576]},{"name":"WSManCallbackFlags","features":[576]},{"name":"WSManCloseCommand","features":[576]},{"name":"WSManCloseOperation","features":[576]},{"name":"WSManCloseSession","features":[576]},{"name":"WSManCloseShell","features":[576]},{"name":"WSManConnectShell","features":[303,576]},{"name":"WSManConnectShellCommand","features":[303,576]},{"name":"WSManCreateSession","features":[576]},{"name":"WSManCreateShell","features":[303,576]},{"name":"WSManCreateShellEx","features":[303,576]},{"name":"WSManDataType","features":[576]},{"name":"WSManDeinitialize","features":[576]},{"name":"WSManDisconnectShell","features":[576]},{"name":"WSManEnumFlags","features":[576]},{"name":"WSManFlagAllowNegotiateImplicitCredentials","features":[576]},{"name":"WSManFlagAssociatedInstance","features":[576]},{"name":"WSManFlagAssociationInstance","features":[576]},{"name":"WSManFlagCredUsernamePassword","features":[576]},{"name":"WSManFlagEnableSPNServerPort","features":[576]},{"name":"WSManFlagHierarchyDeep","features":[576]},{"name":"WSManFlagHierarchyDeepBasePropsOnly","features":[576]},{"name":"WSManFlagHierarchyShallow","features":[576]},{"name":"WSManFlagNoEncryption","features":[576]},{"name":"WSManFlagNonXmlText","features":[576]},{"name":"WSManFlagProxyAuthenticationUseBasic","features":[576]},{"name":"WSManFlagProxyAuthenticationUseDigest","features":[576]},{"name":"WSManFlagProxyAuthenticationUseNegotiate","features":[576]},{"name":"WSManFlagReturnEPR","features":[576]},{"name":"WSManFlagReturnObject","features":[576]},{"name":"WSManFlagReturnObjectAndEPR","features":[576]},{"name":"WSManFlagSkipCACheck","features":[576]},{"name":"WSManFlagSkipCNCheck","features":[576]},{"name":"WSManFlagSkipRevocationCheck","features":[576]},{"name":"WSManFlagUTF16","features":[576]},{"name":"WSManFlagUTF8","features":[576]},{"name":"WSManFlagUseBasic","features":[576]},{"name":"WSManFlagUseClientCertificate","features":[576]},{"name":"WSManFlagUseCredSsp","features":[576]},{"name":"WSManFlagUseDigest","features":[576]},{"name":"WSManFlagUseKerberos","features":[576]},{"name":"WSManFlagUseNegotiate","features":[576]},{"name":"WSManFlagUseNoAuthentication","features":[576]},{"name":"WSManFlagUseSsl","features":[576]},{"name":"WSManGetErrorMessage","features":[576]},{"name":"WSManGetSessionOptionAsDword","features":[576]},{"name":"WSManGetSessionOptionAsString","features":[576]},{"name":"WSManInitialize","features":[576]},{"name":"WSManInternal","features":[576]},{"name":"WSManPluginAuthzOperationComplete","features":[303,576]},{"name":"WSManPluginAuthzQueryQuotaComplete","features":[303,576]},{"name":"WSManPluginAuthzUserComplete","features":[303,576]},{"name":"WSManPluginFreeRequestDetails","features":[303,576]},{"name":"WSManPluginGetConfiguration","features":[576]},{"name":"WSManPluginGetOperationParameters","features":[303,576]},{"name":"WSManPluginOperationComplete","features":[303,576]},{"name":"WSManPluginReceiveResult","features":[303,576]},{"name":"WSManPluginReportCompletion","features":[576]},{"name":"WSManPluginReportContext","features":[303,576]},{"name":"WSManProxyAccessType","features":[576]},{"name":"WSManProxyAccessTypeFlags","features":[576]},{"name":"WSManProxyAuthenticationFlags","features":[576]},{"name":"WSManProxyAutoDetect","features":[576]},{"name":"WSManProxyIEConfig","features":[576]},{"name":"WSManProxyNoProxyServer","features":[576]},{"name":"WSManProxyWinHttpConfig","features":[576]},{"name":"WSManReceiveShellOutput","features":[576]},{"name":"WSManReconnectShell","features":[576]},{"name":"WSManReconnectShellCommand","features":[576]},{"name":"WSManRunShellCommand","features":[303,576]},{"name":"WSManRunShellCommandEx","features":[303,576]},{"name":"WSManSendShellInput","features":[303,576]},{"name":"WSManSessionFlags","features":[576]},{"name":"WSManSessionOption","features":[576]},{"name":"WSManSetSessionOption","features":[576]},{"name":"WSManShellFlag","features":[576]},{"name":"WSManSignalShell","features":[576]}],"599":[{"name":"CCH_RM_MAX_APP_NAME","features":[577]},{"name":"CCH_RM_MAX_SVC_NAME","features":[577]},{"name":"CCH_RM_SESSION_KEY","features":[577]},{"name":"RM_APP_STATUS","features":[577]},{"name":"RM_APP_TYPE","features":[577]},{"name":"RM_FILTER_ACTION","features":[577]},{"name":"RM_FILTER_INFO","features":[303,577]},{"name":"RM_FILTER_TRIGGER","features":[577]},{"name":"RM_INVALID_PROCESS","features":[577]},{"name":"RM_INVALID_TS_SESSION","features":[577]},{"name":"RM_PROCESS_INFO","features":[303,577]},{"name":"RM_REBOOT_REASON","features":[577]},{"name":"RM_SHUTDOWN_TYPE","features":[577]},{"name":"RM_UNIQUE_PROCESS","features":[303,577]},{"name":"RM_WRITE_STATUS_CALLBACK","features":[577]},{"name":"RmAddFilter","features":[303,577]},{"name":"RmCancelCurrentTask","features":[303,577]},{"name":"RmConsole","features":[577]},{"name":"RmCritical","features":[577]},{"name":"RmEndSession","features":[303,577]},{"name":"RmExplorer","features":[577]},{"name":"RmFilterTriggerFile","features":[577]},{"name":"RmFilterTriggerInvalid","features":[577]},{"name":"RmFilterTriggerProcess","features":[577]},{"name":"RmFilterTriggerService","features":[577]},{"name":"RmForceShutdown","features":[577]},{"name":"RmGetFilterList","features":[303,577]},{"name":"RmGetList","features":[303,577]},{"name":"RmInvalidFilterAction","features":[577]},{"name":"RmJoinSession","features":[303,577]},{"name":"RmMainWindow","features":[577]},{"name":"RmNoRestart","features":[577]},{"name":"RmNoShutdown","features":[577]},{"name":"RmOtherWindow","features":[577]},{"name":"RmRebootReasonCriticalProcess","features":[577]},{"name":"RmRebootReasonCriticalService","features":[577]},{"name":"RmRebootReasonDetectedSelf","features":[577]},{"name":"RmRebootReasonNone","features":[577]},{"name":"RmRebootReasonPermissionDenied","features":[577]},{"name":"RmRebootReasonSessionMismatch","features":[577]},{"name":"RmRegisterResources","features":[303,577]},{"name":"RmRemoveFilter","features":[303,577]},{"name":"RmRestart","features":[303,577]},{"name":"RmService","features":[577]},{"name":"RmShutdown","features":[303,577]},{"name":"RmShutdownOnlyRegistered","features":[577]},{"name":"RmStartSession","features":[303,577]},{"name":"RmStatusErrorOnRestart","features":[577]},{"name":"RmStatusErrorOnStop","features":[577]},{"name":"RmStatusRestartMasked","features":[577]},{"name":"RmStatusRestarted","features":[577]},{"name":"RmStatusRunning","features":[577]},{"name":"RmStatusShutdownMasked","features":[577]},{"name":"RmStatusStopped","features":[577]},{"name":"RmStatusStoppedOther","features":[577]},{"name":"RmStatusUnknown","features":[577]},{"name":"RmUnknownApp","features":[577]}],"600":[{"name":"ACCESSIBILITY_SETTING","features":[578]},{"name":"APPLICATION_INSTALL","features":[578]},{"name":"APPLICATION_RUN","features":[578]},{"name":"APPLICATION_UNINSTALL","features":[578]},{"name":"BACKUP","features":[578]},{"name":"BACKUP_RECOVERY","features":[578]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE","features":[578]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE_NORP","features":[578]},{"name":"BEGIN_SYSTEM_CHANGE","features":[578]},{"name":"CANCELLED_OPERATION","features":[578]},{"name":"CHECKPOINT","features":[578]},{"name":"CRITICAL_UPDATE","features":[578]},{"name":"DESKTOP_SETTING","features":[578]},{"name":"DEVICE_DRIVER_INSTALL","features":[578]},{"name":"END_NESTED_SYSTEM_CHANGE","features":[578]},{"name":"END_SYSTEM_CHANGE","features":[578]},{"name":"FIRSTRUN","features":[578]},{"name":"MANUAL_CHECKPOINT","features":[578]},{"name":"MAX_DESC","features":[578]},{"name":"MAX_DESC_W","features":[578]},{"name":"MAX_EVENT","features":[578]},{"name":"MAX_RPT","features":[578]},{"name":"MIN_EVENT","features":[578]},{"name":"MIN_RPT","features":[578]},{"name":"MODIFY_SETTINGS","features":[578]},{"name":"OE_SETTING","features":[578]},{"name":"RESTORE","features":[578]},{"name":"RESTOREPOINTINFOA","features":[578]},{"name":"RESTOREPOINTINFOEX","features":[303,578]},{"name":"RESTOREPOINTINFOW","features":[578]},{"name":"RESTOREPOINTINFO_EVENT_TYPE","features":[578]},{"name":"RESTOREPOINTINFO_TYPE","features":[578]},{"name":"SRRemoveRestorePoint","features":[578]},{"name":"SRSetRestorePointA","features":[303,578]},{"name":"SRSetRestorePointW","features":[303,578]},{"name":"STATEMGRSTATUS","features":[303,578]},{"name":"WINDOWS_BOOT","features":[578]},{"name":"WINDOWS_SHUTDOWN","features":[578]},{"name":"WINDOWS_UPDATE","features":[578]}],"601":[{"name":"ARRAY_INFO","features":[320]},{"name":"BinaryParam","features":[320]},{"name":"CLIENT_CALL_RETURN","features":[320]},{"name":"COMM_FAULT_OFFSETS","features":[320]},{"name":"CS_TAG_GETTING_ROUTINE","features":[320]},{"name":"CS_TYPE_FROM_NETCS_ROUTINE","features":[320]},{"name":"CS_TYPE_LOCAL_SIZE_ROUTINE","features":[320]},{"name":"CS_TYPE_NET_SIZE_ROUTINE","features":[320]},{"name":"CS_TYPE_TO_NETCS_ROUTINE","features":[320]},{"name":"DCE_C_ERROR_STRING_LEN","features":[320]},{"name":"DceErrorInqTextA","features":[320]},{"name":"DceErrorInqTextW","features":[320]},{"name":"EEInfoGCCOM","features":[320]},{"name":"EEInfoGCFRS","features":[320]},{"name":"EEInfoNextRecordsMissing","features":[320]},{"name":"EEInfoPreviousRecordsMissing","features":[320]},{"name":"EEInfoUseFileTime","features":[320]},{"name":"EPT_S_CANT_CREATE","features":[320]},{"name":"EPT_S_CANT_PERFORM_OP","features":[320]},{"name":"EPT_S_INVALID_ENTRY","features":[320]},{"name":"EPT_S_NOT_REGISTERED","features":[320]},{"name":"EXPR_EVAL","features":[354,320]},{"name":"EXPR_TOKEN","features":[320]},{"name":"ExtendedErrorParamTypes","features":[320]},{"name":"FC_EXPR_CONST32","features":[320]},{"name":"FC_EXPR_CONST64","features":[320]},{"name":"FC_EXPR_END","features":[320]},{"name":"FC_EXPR_ILLEGAL","features":[320]},{"name":"FC_EXPR_NOOP","features":[320]},{"name":"FC_EXPR_OPER","features":[320]},{"name":"FC_EXPR_START","features":[320]},{"name":"FC_EXPR_VAR","features":[320]},{"name":"FULL_PTR_XLAT_TABLES","features":[320]},{"name":"GENERIC_BINDING_INFO","features":[320]},{"name":"GENERIC_BINDING_ROUTINE","features":[320]},{"name":"GENERIC_BINDING_ROUTINE_PAIR","features":[320]},{"name":"GENERIC_UNBIND_ROUTINE","features":[320]},{"name":"GROUP_NAME_SYNTAX","features":[320]},{"name":"IDL_CS_CONVERT","features":[320]},{"name":"IDL_CS_IN_PLACE_CONVERT","features":[320]},{"name":"IDL_CS_NEW_BUFFER_CONVERT","features":[320]},{"name":"IDL_CS_NO_CONVERT","features":[320]},{"name":"INVALID_FRAGMENT_ID","features":[320]},{"name":"IUnknown_AddRef_Proxy","features":[320]},{"name":"IUnknown_QueryInterface_Proxy","features":[320]},{"name":"IUnknown_Release_Proxy","features":[320]},{"name":"I_RpcAllocate","features":[320]},{"name":"I_RpcAsyncAbortCall","features":[303,308,320]},{"name":"I_RpcAsyncSetHandle","features":[303,308,320]},{"name":"I_RpcBindingCopy","features":[320]},{"name":"I_RpcBindingCreateNP","features":[320]},{"name":"I_RpcBindingHandleToAsyncHandle","features":[320]},{"name":"I_RpcBindingInqClientTokenAttributes","features":[303,320]},{"name":"I_RpcBindingInqDynamicEndpointA","features":[320]},{"name":"I_RpcBindingInqDynamicEndpointW","features":[320]},{"name":"I_RpcBindingInqLocalClientPID","features":[320]},{"name":"I_RpcBindingInqMarshalledTargetInfo","features":[320]},{"name":"I_RpcBindingInqSecurityContext","features":[320]},{"name":"I_RpcBindingInqSecurityContextKeyInfo","features":[320]},{"name":"I_RpcBindingInqTransportType","features":[320]},{"name":"I_RpcBindingInqWireIdForSnego","features":[320]},{"name":"I_RpcBindingIsClientLocal","features":[320]},{"name":"I_RpcBindingIsServerLocal","features":[320]},{"name":"I_RpcBindingSetPrivateOption","features":[320]},{"name":"I_RpcBindingToStaticStringBindingW","features":[320]},{"name":"I_RpcClearMutex","features":[320]},{"name":"I_RpcDeleteMutex","features":[320]},{"name":"I_RpcExceptionFilter","features":[320]},{"name":"I_RpcFree","features":[320]},{"name":"I_RpcFreeBuffer","features":[320]},{"name":"I_RpcFreeCalloutStateFn","features":[320]},{"name":"I_RpcFreePipeBuffer","features":[320]},{"name":"I_RpcGetBuffer","features":[320]},{"name":"I_RpcGetBufferWithObject","features":[320]},{"name":"I_RpcGetCurrentCallHandle","features":[320]},{"name":"I_RpcGetDefaultSD","features":[320]},{"name":"I_RpcGetExtendedError","features":[320]},{"name":"I_RpcIfInqTransferSyntaxes","features":[320]},{"name":"I_RpcMapWin32Status","features":[320]},{"name":"I_RpcMgmtEnableDedicatedThreadPool","features":[320]},{"name":"I_RpcNegotiateTransferSyntax","features":[320]},{"name":"I_RpcNsBindingSetEntryNameA","features":[320]},{"name":"I_RpcNsBindingSetEntryNameW","features":[320]},{"name":"I_RpcNsGetBuffer","features":[320]},{"name":"I_RpcNsInterfaceExported","features":[320]},{"name":"I_RpcNsInterfaceUnexported","features":[320]},{"name":"I_RpcNsRaiseException","features":[320]},{"name":"I_RpcNsSendReceive","features":[320]},{"name":"I_RpcOpenClientProcess","features":[320]},{"name":"I_RpcPauseExecution","features":[320]},{"name":"I_RpcPerformCalloutFn","features":[320]},{"name":"I_RpcProxyCallbackInterface","features":[320]},{"name":"I_RpcProxyFilterIfFn","features":[320]},{"name":"I_RpcProxyGetClientAddressFn","features":[320]},{"name":"I_RpcProxyGetClientSessionAndResourceUUID","features":[320]},{"name":"I_RpcProxyGetConnectionTimeoutFn","features":[320]},{"name":"I_RpcProxyIsValidMachineFn","features":[320]},{"name":"I_RpcProxyUpdatePerfCounterBackendServerFn","features":[320]},{"name":"I_RpcProxyUpdatePerfCounterFn","features":[320]},{"name":"I_RpcReBindBuffer","features":[320]},{"name":"I_RpcReallocPipeBuffer","features":[320]},{"name":"I_RpcReceive","features":[320]},{"name":"I_RpcRecordCalloutFailure","features":[320]},{"name":"I_RpcRequestMutex","features":[320]},{"name":"I_RpcSend","features":[320]},{"name":"I_RpcSendReceive","features":[320]},{"name":"I_RpcServerCheckClientRestriction","features":[320]},{"name":"I_RpcServerDisableExceptionFilter","features":[320]},{"name":"I_RpcServerGetAssociationID","features":[320]},{"name":"I_RpcServerInqAddressChangeFn","features":[320]},{"name":"I_RpcServerInqLocalConnAddress","features":[320]},{"name":"I_RpcServerInqRemoteConnAddress","features":[320]},{"name":"I_RpcServerInqTransportType","features":[320]},{"name":"I_RpcServerRegisterForwardFunction","features":[320]},{"name":"I_RpcServerSetAddressChangeFn","features":[320]},{"name":"I_RpcServerStartService","features":[320]},{"name":"I_RpcServerSubscribeForDisconnectNotification","features":[320]},{"name":"I_RpcServerSubscribeForDisconnectNotification2","features":[320]},{"name":"I_RpcServerUnsubscribeForDisconnectNotification","features":[320]},{"name":"I_RpcServerUseProtseq2A","features":[320]},{"name":"I_RpcServerUseProtseq2W","features":[320]},{"name":"I_RpcServerUseProtseqEp2A","features":[320]},{"name":"I_RpcServerUseProtseqEp2W","features":[320]},{"name":"I_RpcSessionStrictContextHandle","features":[320]},{"name":"I_RpcSsDontSerializeContext","features":[320]},{"name":"I_RpcSystemHandleTypeSpecificWork","features":[320]},{"name":"I_RpcTurnOnEEInfoPropagation","features":[320]},{"name":"I_UuidCreate","features":[320]},{"name":"LRPC_SYSTEM_HANDLE_MARSHAL_DIRECTION","features":[320]},{"name":"MALLOC_FREE_STRUCT","features":[320]},{"name":"MES_DECODE","features":[320]},{"name":"MES_DYNAMIC_BUFFER_HANDLE","features":[320]},{"name":"MES_ENCODE","features":[320]},{"name":"MES_ENCODE_NDR64","features":[320]},{"name":"MES_FIXED_BUFFER_HANDLE","features":[320]},{"name":"MES_INCREMENTAL_HANDLE","features":[320]},{"name":"MIDL_ES_ALLOC","features":[320]},{"name":"MIDL_ES_CODE","features":[320]},{"name":"MIDL_ES_HANDLE_STYLE","features":[320]},{"name":"MIDL_ES_READ","features":[320]},{"name":"MIDL_ES_WRITE","features":[320]},{"name":"MIDL_FORMAT_STRING","features":[320]},{"name":"MIDL_INTERCEPTION_INFO","features":[320]},{"name":"MIDL_INTERFACE_METHOD_PROPERTIES","features":[320]},{"name":"MIDL_METHOD_PROPERTY","features":[320]},{"name":"MIDL_METHOD_PROPERTY_MAP","features":[320]},{"name":"MIDL_SERVER_INFO","features":[354,320]},{"name":"MIDL_STUBLESS_PROXY_INFO","features":[354,320]},{"name":"MIDL_STUB_DESC","features":[354,320]},{"name":"MIDL_STUB_MESSAGE","features":[354,320]},{"name":"MIDL_SYNTAX_INFO","features":[320]},{"name":"MIDL_TYPE_PICKLING_INFO","features":[320]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO","features":[354,320]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO_CURRENT_VERSION","features":[320]},{"name":"MarshalDirectionMarshal","features":[320]},{"name":"MarshalDirectionUnmarshal","features":[320]},{"name":"MaxNumberOfEEInfoParams","features":[320]},{"name":"MesBufferHandleReset","features":[320]},{"name":"MesDecodeBufferHandleCreate","features":[320]},{"name":"MesDecodeIncrementalHandleCreate","features":[320]},{"name":"MesEncodeDynBufferHandleCreate","features":[320]},{"name":"MesEncodeFixedBufferHandleCreate","features":[320]},{"name":"MesEncodeIncrementalHandleCreate","features":[320]},{"name":"MesHandleFree","features":[320]},{"name":"MesIncrementalHandleReset","features":[320]},{"name":"MesInqProcEncodingId","features":[320]},{"name":"MidlInterceptionInfoVersionOne","features":[320]},{"name":"MidlWinrtTypeSerializationInfoVersionOne","features":[320]},{"name":"NDR64_ARRAY_ELEMENT_INFO","features":[320]},{"name":"NDR64_ARRAY_FLAGS","features":[320]},{"name":"NDR64_BINDINGS","features":[320]},{"name":"NDR64_BIND_AND_NOTIFY_EXTENSION","features":[320]},{"name":"NDR64_BIND_CONTEXT","features":[320]},{"name":"NDR64_BIND_GENERIC","features":[320]},{"name":"NDR64_BIND_PRIMITIVE","features":[320]},{"name":"NDR64_BOGUS_ARRAY_HEADER_FORMAT","features":[320]},{"name":"NDR64_BOGUS_STRUCTURE_HEADER_FORMAT","features":[320]},{"name":"NDR64_BUFFER_ALIGN_FORMAT","features":[320]},{"name":"NDR64_CONFORMANT_STRING_FORMAT","features":[320]},{"name":"NDR64_CONF_ARRAY_HEADER_FORMAT","features":[320]},{"name":"NDR64_CONF_BOGUS_STRUCTURE_HEADER_FORMAT","features":[320]},{"name":"NDR64_CONF_STRUCTURE_HEADER_FORMAT","features":[320]},{"name":"NDR64_CONF_VAR_ARRAY_HEADER_FORMAT","features":[320]},{"name":"NDR64_CONF_VAR_BOGUS_ARRAY_HEADER_FORMAT","features":[320]},{"name":"NDR64_CONSTANT_IID_FORMAT","features":[320]},{"name":"NDR64_CONTEXT_HANDLE_FLAGS","features":[320]},{"name":"NDR64_CONTEXT_HANDLE_FORMAT","features":[320]},{"name":"NDR64_EMBEDDED_COMPLEX_FORMAT","features":[320]},{"name":"NDR64_ENCAPSULATED_UNION","features":[320]},{"name":"NDR64_EXPR_CONST32","features":[320]},{"name":"NDR64_EXPR_CONST64","features":[320]},{"name":"NDR64_EXPR_NOOP","features":[320]},{"name":"NDR64_EXPR_OPERATOR","features":[320]},{"name":"NDR64_EXPR_VAR","features":[320]},{"name":"NDR64_FC_AUTO_HANDLE","features":[320]},{"name":"NDR64_FC_BIND_GENERIC","features":[320]},{"name":"NDR64_FC_BIND_PRIMITIVE","features":[320]},{"name":"NDR64_FC_CALLBACK_HANDLE","features":[320]},{"name":"NDR64_FC_EXPLICIT_HANDLE","features":[320]},{"name":"NDR64_FC_NO_HANDLE","features":[320]},{"name":"NDR64_FIXED_REPEAT_FORMAT","features":[320]},{"name":"NDR64_FIX_ARRAY_HEADER_FORMAT","features":[320]},{"name":"NDR64_IID_FLAGS","features":[320]},{"name":"NDR64_IID_FORMAT","features":[320]},{"name":"NDR64_MEMPAD_FORMAT","features":[320]},{"name":"NDR64_NON_CONFORMANT_STRING_FORMAT","features":[320]},{"name":"NDR64_NON_ENCAPSULATED_UNION","features":[320]},{"name":"NDR64_NO_REPEAT_FORMAT","features":[320]},{"name":"NDR64_PARAM_FLAGS","features":[320]},{"name":"NDR64_PARAM_FORMAT","features":[320]},{"name":"NDR64_PIPE_FLAGS","features":[320]},{"name":"NDR64_PIPE_FORMAT","features":[320]},{"name":"NDR64_POINTER_FORMAT","features":[320]},{"name":"NDR64_POINTER_INSTANCE_HEADER_FORMAT","features":[320]},{"name":"NDR64_POINTER_REPEAT_FLAGS","features":[320]},{"name":"NDR64_PROC_FLAGS","features":[320]},{"name":"NDR64_PROC_FORMAT","features":[320]},{"name":"NDR64_RANGED_STRING_FORMAT","features":[320]},{"name":"NDR64_RANGE_FORMAT","features":[320]},{"name":"NDR64_RANGE_PIPE_FORMAT","features":[320]},{"name":"NDR64_REPEAT_FORMAT","features":[320]},{"name":"NDR64_RPC_FLAGS","features":[320]},{"name":"NDR64_SIMPLE_MEMBER_FORMAT","features":[320]},{"name":"NDR64_SIMPLE_REGION_FORMAT","features":[320]},{"name":"NDR64_SIZED_CONFORMANT_STRING_FORMAT","features":[320]},{"name":"NDR64_STRING_FLAGS","features":[320]},{"name":"NDR64_STRING_HEADER_FORMAT","features":[320]},{"name":"NDR64_STRUCTURE_FLAGS","features":[320]},{"name":"NDR64_STRUCTURE_HEADER_FORMAT","features":[320]},{"name":"NDR64_SYSTEM_HANDLE_FORMAT","features":[320]},{"name":"NDR64_TRANSMIT_AS_FLAGS","features":[320]},{"name":"NDR64_TRANSMIT_AS_FORMAT","features":[320]},{"name":"NDR64_TYPE_STRICT_CONTEXT_HANDLE","features":[320]},{"name":"NDR64_UNION_ARM","features":[320]},{"name":"NDR64_UNION_ARM_SELECTOR","features":[320]},{"name":"NDR64_USER_MARSHAL_FLAGS","features":[320]},{"name":"NDR64_USER_MARSHAL_FORMAT","features":[320]},{"name":"NDR64_VAR_ARRAY_HEADER_FORMAT","features":[320]},{"name":"NDRCContextBinding","features":[320]},{"name":"NDRCContextMarshall","features":[320]},{"name":"NDRCContextUnmarshall","features":[320]},{"name":"NDRSContextMarshall","features":[320]},{"name":"NDRSContextMarshall2","features":[320]},{"name":"NDRSContextMarshallEx","features":[320]},{"name":"NDRSContextUnmarshall","features":[320]},{"name":"NDRSContextUnmarshall2","features":[320]},{"name":"NDRSContextUnmarshallEx","features":[320]},{"name":"NDR_ALLOC_ALL_NODES_CONTEXT","features":[320]},{"name":"NDR_CS_ROUTINES","features":[320]},{"name":"NDR_CS_SIZE_CONVERT_ROUTINES","features":[320]},{"name":"NDR_CUSTOM_OR_DEFAULT_ALLOCATOR","features":[320]},{"name":"NDR_DEFAULT_ALLOCATOR","features":[320]},{"name":"NDR_EXPR_DESC","features":[320]},{"name":"NDR_NOTIFY2_ROUTINE","features":[320]},{"name":"NDR_NOTIFY_ROUTINE","features":[320]},{"name":"NDR_POINTER_QUEUE_STATE","features":[320]},{"name":"NDR_RUNDOWN","features":[320]},{"name":"NDR_SCONTEXT","features":[320]},{"name":"NDR_USER_MARSHAL_INFO","features":[354,320]},{"name":"NDR_USER_MARSHAL_INFO_LEVEL1","features":[354,320]},{"name":"NT351_INTERFACE_SIZE","features":[320]},{"name":"Ndr64AsyncClientCall","features":[354,320]},{"name":"Ndr64AsyncServerCall64","features":[320]},{"name":"Ndr64AsyncServerCallAll","features":[320]},{"name":"Ndr64DcomAsyncClientCall","features":[354,320]},{"name":"Ndr64DcomAsyncStubCall","features":[354,320]},{"name":"NdrAllocate","features":[354,320]},{"name":"NdrAsyncClientCall","features":[354,320]},{"name":"NdrAsyncServerCall","features":[320]},{"name":"NdrByteCountPointerBufferSize","features":[354,320]},{"name":"NdrByteCountPointerFree","features":[354,320]},{"name":"NdrByteCountPointerMarshall","features":[354,320]},{"name":"NdrByteCountPointerUnmarshall","features":[354,320]},{"name":"NdrClearOutParameters","features":[354,320]},{"name":"NdrClientCall2","features":[354,320]},{"name":"NdrClientCall3","features":[354,320]},{"name":"NdrClientContextMarshall","features":[354,320]},{"name":"NdrClientContextUnmarshall","features":[354,320]},{"name":"NdrClientInitialize","features":[354,320]},{"name":"NdrClientInitializeNew","features":[354,320]},{"name":"NdrComplexArrayBufferSize","features":[354,320]},{"name":"NdrComplexArrayFree","features":[354,320]},{"name":"NdrComplexArrayMarshall","features":[354,320]},{"name":"NdrComplexArrayMemorySize","features":[354,320]},{"name":"NdrComplexArrayUnmarshall","features":[354,320]},{"name":"NdrComplexStructBufferSize","features":[354,320]},{"name":"NdrComplexStructFree","features":[354,320]},{"name":"NdrComplexStructMarshall","features":[354,320]},{"name":"NdrComplexStructMemorySize","features":[354,320]},{"name":"NdrComplexStructUnmarshall","features":[354,320]},{"name":"NdrConformantArrayBufferSize","features":[354,320]},{"name":"NdrConformantArrayFree","features":[354,320]},{"name":"NdrConformantArrayMarshall","features":[354,320]},{"name":"NdrConformantArrayMemorySize","features":[354,320]},{"name":"NdrConformantArrayUnmarshall","features":[354,320]},{"name":"NdrConformantStringBufferSize","features":[354,320]},{"name":"NdrConformantStringMarshall","features":[354,320]},{"name":"NdrConformantStringMemorySize","features":[354,320]},{"name":"NdrConformantStringUnmarshall","features":[354,320]},{"name":"NdrConformantStructBufferSize","features":[354,320]},{"name":"NdrConformantStructFree","features":[354,320]},{"name":"NdrConformantStructMarshall","features":[354,320]},{"name":"NdrConformantStructMemorySize","features":[354,320]},{"name":"NdrConformantStructUnmarshall","features":[354,320]},{"name":"NdrConformantVaryingArrayBufferSize","features":[354,320]},{"name":"NdrConformantVaryingArrayFree","features":[354,320]},{"name":"NdrConformantVaryingArrayMarshall","features":[354,320]},{"name":"NdrConformantVaryingArrayMemorySize","features":[354,320]},{"name":"NdrConformantVaryingArrayUnmarshall","features":[354,320]},{"name":"NdrConformantVaryingStructBufferSize","features":[354,320]},{"name":"NdrConformantVaryingStructFree","features":[354,320]},{"name":"NdrConformantVaryingStructMarshall","features":[354,320]},{"name":"NdrConformantVaryingStructMemorySize","features":[354,320]},{"name":"NdrConformantVaryingStructUnmarshall","features":[354,320]},{"name":"NdrContextHandleInitialize","features":[354,320]},{"name":"NdrContextHandleSize","features":[354,320]},{"name":"NdrConvert","features":[354,320]},{"name":"NdrConvert2","features":[354,320]},{"name":"NdrCorrelationFree","features":[354,320]},{"name":"NdrCorrelationInitialize","features":[354,320]},{"name":"NdrCorrelationPass","features":[354,320]},{"name":"NdrCreateServerInterfaceFromStub","features":[354,320]},{"name":"NdrDcomAsyncClientCall","features":[354,320]},{"name":"NdrDcomAsyncStubCall","features":[354,320]},{"name":"NdrEncapsulatedUnionBufferSize","features":[354,320]},{"name":"NdrEncapsulatedUnionFree","features":[354,320]},{"name":"NdrEncapsulatedUnionMarshall","features":[354,320]},{"name":"NdrEncapsulatedUnionMemorySize","features":[354,320]},{"name":"NdrEncapsulatedUnionUnmarshall","features":[354,320]},{"name":"NdrFixedArrayBufferSize","features":[354,320]},{"name":"NdrFixedArrayFree","features":[354,320]},{"name":"NdrFixedArrayMarshall","features":[354,320]},{"name":"NdrFixedArrayMemorySize","features":[354,320]},{"name":"NdrFixedArrayUnmarshall","features":[354,320]},{"name":"NdrFreeBuffer","features":[354,320]},{"name":"NdrFullPointerXlatFree","features":[320]},{"name":"NdrFullPointerXlatInit","features":[320]},{"name":"NdrGetBuffer","features":[354,320]},{"name":"NdrGetDcomProtocolVersion","features":[354,320]},{"name":"NdrGetUserMarshalInfo","features":[354,320]},{"name":"NdrInterfacePointerBufferSize","features":[354,320]},{"name":"NdrInterfacePointerFree","features":[354,320]},{"name":"NdrInterfacePointerMarshall","features":[354,320]},{"name":"NdrInterfacePointerMemorySize","features":[354,320]},{"name":"NdrInterfacePointerUnmarshall","features":[354,320]},{"name":"NdrMapCommAndFaultStatus","features":[354,320]},{"name":"NdrMesProcEncodeDecode","features":[354,320]},{"name":"NdrMesProcEncodeDecode2","features":[354,320]},{"name":"NdrMesProcEncodeDecode3","features":[354,320]},{"name":"NdrMesSimpleTypeAlignSize","features":[320]},{"name":"NdrMesSimpleTypeAlignSizeAll","features":[354,320]},{"name":"NdrMesSimpleTypeDecode","features":[320]},{"name":"NdrMesSimpleTypeDecodeAll","features":[354,320]},{"name":"NdrMesSimpleTypeEncode","features":[354,320]},{"name":"NdrMesSimpleTypeEncodeAll","features":[354,320]},{"name":"NdrMesTypeAlignSize","features":[354,320]},{"name":"NdrMesTypeAlignSize2","features":[354,320]},{"name":"NdrMesTypeAlignSize3","features":[354,320]},{"name":"NdrMesTypeDecode","features":[354,320]},{"name":"NdrMesTypeDecode2","features":[354,320]},{"name":"NdrMesTypeDecode3","features":[354,320]},{"name":"NdrMesTypeEncode","features":[354,320]},{"name":"NdrMesTypeEncode2","features":[354,320]},{"name":"NdrMesTypeEncode3","features":[354,320]},{"name":"NdrMesTypeFree2","features":[354,320]},{"name":"NdrMesTypeFree3","features":[354,320]},{"name":"NdrNonConformantStringBufferSize","features":[354,320]},{"name":"NdrNonConformantStringMarshall","features":[354,320]},{"name":"NdrNonConformantStringMemorySize","features":[354,320]},{"name":"NdrNonConformantStringUnmarshall","features":[354,320]},{"name":"NdrNonEncapsulatedUnionBufferSize","features":[354,320]},{"name":"NdrNonEncapsulatedUnionFree","features":[354,320]},{"name":"NdrNonEncapsulatedUnionMarshall","features":[354,320]},{"name":"NdrNonEncapsulatedUnionMemorySize","features":[354,320]},{"name":"NdrNonEncapsulatedUnionUnmarshall","features":[354,320]},{"name":"NdrNsGetBuffer","features":[354,320]},{"name":"NdrNsSendReceive","features":[354,320]},{"name":"NdrOleAllocate","features":[320]},{"name":"NdrOleFree","features":[320]},{"name":"NdrPartialIgnoreClientBufferSize","features":[354,320]},{"name":"NdrPartialIgnoreClientMarshall","features":[354,320]},{"name":"NdrPartialIgnoreServerInitialize","features":[354,320]},{"name":"NdrPartialIgnoreServerUnmarshall","features":[354,320]},{"name":"NdrPointerBufferSize","features":[354,320]},{"name":"NdrPointerFree","features":[354,320]},{"name":"NdrPointerMarshall","features":[354,320]},{"name":"NdrPointerMemorySize","features":[354,320]},{"name":"NdrPointerUnmarshall","features":[354,320]},{"name":"NdrRangeUnmarshall","features":[354,320]},{"name":"NdrRpcSmClientAllocate","features":[320]},{"name":"NdrRpcSmClientFree","features":[320]},{"name":"NdrRpcSmSetClientToOsf","features":[354,320]},{"name":"NdrRpcSsDefaultAllocate","features":[320]},{"name":"NdrRpcSsDefaultFree","features":[320]},{"name":"NdrRpcSsDisableAllocate","features":[354,320]},{"name":"NdrRpcSsEnableAllocate","features":[354,320]},{"name":"NdrSendReceive","features":[354,320]},{"name":"NdrServerCall2","features":[320]},{"name":"NdrServerCallAll","features":[320]},{"name":"NdrServerCallNdr64","features":[320]},{"name":"NdrServerContextMarshall","features":[354,320]},{"name":"NdrServerContextNewMarshall","features":[354,320]},{"name":"NdrServerContextNewUnmarshall","features":[354,320]},{"name":"NdrServerContextUnmarshall","features":[354,320]},{"name":"NdrServerInitialize","features":[354,320]},{"name":"NdrServerInitializeMarshall","features":[354,320]},{"name":"NdrServerInitializeNew","features":[354,320]},{"name":"NdrServerInitializePartial","features":[354,320]},{"name":"NdrServerInitializeUnmarshall","features":[354,320]},{"name":"NdrSimpleStructBufferSize","features":[354,320]},{"name":"NdrSimpleStructFree","features":[354,320]},{"name":"NdrSimpleStructMarshall","features":[354,320]},{"name":"NdrSimpleStructMemorySize","features":[354,320]},{"name":"NdrSimpleStructUnmarshall","features":[354,320]},{"name":"NdrSimpleTypeMarshall","features":[354,320]},{"name":"NdrSimpleTypeUnmarshall","features":[354,320]},{"name":"NdrStubCall2","features":[320]},{"name":"NdrStubCall3","features":[320]},{"name":"NdrUserMarshalBufferSize","features":[354,320]},{"name":"NdrUserMarshalFree","features":[354,320]},{"name":"NdrUserMarshalMarshall","features":[354,320]},{"name":"NdrUserMarshalMemorySize","features":[354,320]},{"name":"NdrUserMarshalSimpleTypeConvert","features":[320]},{"name":"NdrUserMarshalUnmarshall","features":[354,320]},{"name":"NdrVaryingArrayBufferSize","features":[354,320]},{"name":"NdrVaryingArrayFree","features":[354,320]},{"name":"NdrVaryingArrayMarshall","features":[354,320]},{"name":"NdrVaryingArrayMemorySize","features":[354,320]},{"name":"NdrVaryingArrayUnmarshall","features":[354,320]},{"name":"NdrXmitOrRepAsBufferSize","features":[354,320]},{"name":"NdrXmitOrRepAsFree","features":[354,320]},{"name":"NdrXmitOrRepAsMarshall","features":[354,320]},{"name":"NdrXmitOrRepAsMemorySize","features":[354,320]},{"name":"NdrXmitOrRepAsUnmarshall","features":[354,320]},{"name":"PFN_RPCNOTIFICATION_ROUTINE","features":[303,308,320]},{"name":"PFN_RPC_ALLOCATE","features":[320]},{"name":"PFN_RPC_FREE","features":[320]},{"name":"PNDR_ASYNC_MESSAGE","features":[320]},{"name":"PNDR_CORRELATION_INFO","features":[320]},{"name":"PROTOCOL_ADDRESS_CHANGE","features":[320]},{"name":"PROTOCOL_LOADED","features":[320]},{"name":"PROTOCOL_NOT_LOADED","features":[320]},{"name":"PROXY_CALCSIZE","features":[320]},{"name":"PROXY_GETBUFFER","features":[320]},{"name":"PROXY_MARSHAL","features":[320]},{"name":"PROXY_PHASE","features":[320]},{"name":"PROXY_SENDRECEIVE","features":[320]},{"name":"PROXY_UNMARSHAL","features":[320]},{"name":"PRPC_RUNDOWN","features":[320]},{"name":"RDR_CALLOUT_STATE","features":[320]},{"name":"RPCFLG_ACCESSIBILITY_BIT1","features":[320]},{"name":"RPCFLG_ACCESSIBILITY_BIT2","features":[320]},{"name":"RPCFLG_ACCESS_LOCAL","features":[320]},{"name":"RPCFLG_ASYNCHRONOUS","features":[320]},{"name":"RPCFLG_AUTO_COMPLETE","features":[320]},{"name":"RPCFLG_HAS_CALLBACK","features":[320]},{"name":"RPCFLG_HAS_GUARANTEE","features":[320]},{"name":"RPCFLG_HAS_MULTI_SYNTAXES","features":[320]},{"name":"RPCFLG_INPUT_SYNCHRONOUS","features":[320]},{"name":"RPCFLG_LOCAL_CALL","features":[320]},{"name":"RPCFLG_MESSAGE","features":[320]},{"name":"RPCFLG_NDR64_CONTAINS_ARM_LAYOUT","features":[320]},{"name":"RPCFLG_NON_NDR","features":[320]},{"name":"RPCFLG_SENDER_WAITING_FOR_REPLY","features":[320]},{"name":"RPCFLG_WINRT_REMOTE_ASYNC","features":[320]},{"name":"RPCHTTP_RS_ACCESS_1","features":[320]},{"name":"RPCHTTP_RS_ACCESS_2","features":[320]},{"name":"RPCHTTP_RS_INTERFACE","features":[320]},{"name":"RPCHTTP_RS_REDIRECT","features":[320]},{"name":"RPCHTTP_RS_SESSION","features":[320]},{"name":"RPCLT_PDU_FILTER_FUNC","features":[320]},{"name":"RPC_ADDRESS_CHANGE_FN","features":[320]},{"name":"RPC_ADDRESS_CHANGE_TYPE","features":[320]},{"name":"RPC_ASYNC_EVENT","features":[320]},{"name":"RPC_ASYNC_NOTIFICATION_INFO","features":[303,308,320]},{"name":"RPC_ASYNC_STATE","features":[303,308,320]},{"name":"RPC_AUTH_KEY_RETRIEVAL_FN","features":[320]},{"name":"RPC_BHO_DONTLINGER","features":[320]},{"name":"RPC_BHO_EXCLUSIVE_AND_GUARANTEED","features":[320]},{"name":"RPC_BHO_NONCAUSAL","features":[320]},{"name":"RPC_BHT_OBJECT_UUID_VALID","features":[320]},{"name":"RPC_BINDING_HANDLE_OPTIONS_FLAGS","features":[320]},{"name":"RPC_BINDING_HANDLE_OPTIONS_V1","features":[320]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_A","features":[354,320]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_W","features":[354,320]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_A","features":[320]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_W","features":[320]},{"name":"RPC_BINDING_VECTOR","features":[320]},{"name":"RPC_BLOCKING_FN","features":[320]},{"name":"RPC_BUFFER_ASYNC","features":[320]},{"name":"RPC_BUFFER_COMPLETE","features":[320]},{"name":"RPC_BUFFER_EXTRA","features":[320]},{"name":"RPC_BUFFER_NONOTIFY","features":[320]},{"name":"RPC_BUFFER_PARTIAL","features":[320]},{"name":"RPC_CALL_ATTRIBUTES_V1_A","features":[303,320]},{"name":"RPC_CALL_ATTRIBUTES_V1_W","features":[303,320]},{"name":"RPC_CALL_ATTRIBUTES_V2_A","features":[303,320]},{"name":"RPC_CALL_ATTRIBUTES_V2_W","features":[303,320]},{"name":"RPC_CALL_ATTRIBUTES_V3_A","features":[303,320]},{"name":"RPC_CALL_ATTRIBUTES_V3_W","features":[303,320]},{"name":"RPC_CALL_ATTRIBUTES_VERSION","features":[320]},{"name":"RPC_CALL_LOCAL_ADDRESS_V1","features":[320]},{"name":"RPC_CALL_STATUS_CANCELLED","features":[320]},{"name":"RPC_CALL_STATUS_DISCONNECTED","features":[320]},{"name":"RPC_CLIENT_ALLOC","features":[320]},{"name":"RPC_CLIENT_FREE","features":[320]},{"name":"RPC_CLIENT_INFORMATION1","features":[320]},{"name":"RPC_CLIENT_INTERFACE","features":[320]},{"name":"RPC_CONTEXT_HANDLE_DEFAULT_FLAGS","features":[320]},{"name":"RPC_CONTEXT_HANDLE_DONT_SERIALIZE","features":[320]},{"name":"RPC_CONTEXT_HANDLE_FLAGS","features":[320]},{"name":"RPC_CONTEXT_HANDLE_SERIALIZE","features":[320]},{"name":"RPC_C_AUTHN_CLOUD_AP","features":[320]},{"name":"RPC_C_AUTHN_DCE_PRIVATE","features":[320]},{"name":"RPC_C_AUTHN_DCE_PUBLIC","features":[320]},{"name":"RPC_C_AUTHN_DEC_PUBLIC","features":[320]},{"name":"RPC_C_AUTHN_DEFAULT","features":[320]},{"name":"RPC_C_AUTHN_DIGEST","features":[320]},{"name":"RPC_C_AUTHN_DPA","features":[320]},{"name":"RPC_C_AUTHN_GSS_KERBEROS","features":[320]},{"name":"RPC_C_AUTHN_GSS_NEGOTIATE","features":[320]},{"name":"RPC_C_AUTHN_GSS_SCHANNEL","features":[320]},{"name":"RPC_C_AUTHN_INFO_NONE","features":[320]},{"name":"RPC_C_AUTHN_INFO_TYPE","features":[320]},{"name":"RPC_C_AUTHN_INFO_TYPE_HTTP","features":[320]},{"name":"RPC_C_AUTHN_KERNEL","features":[320]},{"name":"RPC_C_AUTHN_LIVEXP_SSP","features":[320]},{"name":"RPC_C_AUTHN_LIVE_SSP","features":[320]},{"name":"RPC_C_AUTHN_MQ","features":[320]},{"name":"RPC_C_AUTHN_MSN","features":[320]},{"name":"RPC_C_AUTHN_MSONLINE","features":[320]},{"name":"RPC_C_AUTHN_NEGO_EXTENDER","features":[320]},{"name":"RPC_C_AUTHN_NONE","features":[320]},{"name":"RPC_C_AUTHN_PKU2U","features":[320]},{"name":"RPC_C_AUTHN_WINNT","features":[320]},{"name":"RPC_C_AUTHZ_DCE","features":[320]},{"name":"RPC_C_AUTHZ_DEFAULT","features":[320]},{"name":"RPC_C_AUTHZ_NAME","features":[320]},{"name":"RPC_C_AUTHZ_NONE","features":[320]},{"name":"RPC_C_BINDING_DEFAULT_TIMEOUT","features":[320]},{"name":"RPC_C_BINDING_INFINITE_TIMEOUT","features":[320]},{"name":"RPC_C_BINDING_MAX_TIMEOUT","features":[320]},{"name":"RPC_C_BINDING_MIN_TIMEOUT","features":[320]},{"name":"RPC_C_BIND_TO_ALL_NICS","features":[320]},{"name":"RPC_C_CANCEL_INFINITE_TIMEOUT","features":[320]},{"name":"RPC_C_DONT_FAIL","features":[320]},{"name":"RPC_C_EP_ALL_ELTS","features":[320]},{"name":"RPC_C_EP_MATCH_BY_BOTH","features":[320]},{"name":"RPC_C_EP_MATCH_BY_IF","features":[320]},{"name":"RPC_C_EP_MATCH_BY_OBJ","features":[320]},{"name":"RPC_C_FULL_CERT_CHAIN","features":[320]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_BASIC","features":[320]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_CERT","features":[320]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_DIGEST","features":[320]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NEGOTIATE","features":[320]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NTLM","features":[320]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_PASSPORT","features":[320]},{"name":"RPC_C_HTTP_AUTHN_TARGET","features":[320]},{"name":"RPC_C_HTTP_AUTHN_TARGET_PROXY","features":[320]},{"name":"RPC_C_HTTP_AUTHN_TARGET_SERVER","features":[320]},{"name":"RPC_C_HTTP_FLAGS","features":[320]},{"name":"RPC_C_HTTP_FLAG_ENABLE_CERT_REVOCATION_CHECK","features":[320]},{"name":"RPC_C_HTTP_FLAG_IGNORE_CERT_CN_INVALID","features":[320]},{"name":"RPC_C_HTTP_FLAG_USE_FIRST_AUTH_SCHEME","features":[320]},{"name":"RPC_C_HTTP_FLAG_USE_SSL","features":[320]},{"name":"RPC_C_LISTEN_MAX_CALLS_DEFAULT","features":[320]},{"name":"RPC_C_MGMT_INQ_IF_IDS","features":[320]},{"name":"RPC_C_MGMT_INQ_PRINC_NAME","features":[320]},{"name":"RPC_C_MGMT_INQ_STATS","features":[320]},{"name":"RPC_C_MGMT_IS_SERVER_LISTEN","features":[320]},{"name":"RPC_C_MGMT_STOP_SERVER_LISTEN","features":[320]},{"name":"RPC_C_MQ_AUTHN_LEVEL_NONE","features":[320]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_INTEGRITY","features":[320]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_PRIVACY","features":[320]},{"name":"RPC_C_MQ_CLEAR_ON_OPEN","features":[320]},{"name":"RPC_C_MQ_EXPRESS","features":[320]},{"name":"RPC_C_MQ_JOURNAL_ALWAYS","features":[320]},{"name":"RPC_C_MQ_JOURNAL_DEADLETTER","features":[320]},{"name":"RPC_C_MQ_JOURNAL_NONE","features":[320]},{"name":"RPC_C_MQ_PERMANENT","features":[320]},{"name":"RPC_C_MQ_RECOVERABLE","features":[320]},{"name":"RPC_C_MQ_TEMPORARY","features":[320]},{"name":"RPC_C_MQ_USE_EXISTING_SECURITY","features":[320]},{"name":"RPC_C_NOTIFY_ON_SEND_COMPLETE","features":[320]},{"name":"RPC_C_NS_DEFAULT_EXP_AGE","features":[320]},{"name":"RPC_C_NS_SYNTAX_DCE","features":[320]},{"name":"RPC_C_NS_SYNTAX_DEFAULT","features":[320]},{"name":"RPC_C_OPT_ASYNC_BLOCK","features":[320]},{"name":"RPC_C_OPT_BINDING_NONCAUSAL","features":[320]},{"name":"RPC_C_OPT_CALL_TIMEOUT","features":[320]},{"name":"RPC_C_OPT_COOKIE_AUTH","features":[320]},{"name":"RPC_C_OPT_COOKIE_AUTH_DESCRIPTOR","features":[320]},{"name":"RPC_C_OPT_DONT_LINGER","features":[320]},{"name":"RPC_C_OPT_MAX_OPTIONS","features":[320]},{"name":"RPC_C_OPT_MQ_ACKNOWLEDGE","features":[320]},{"name":"RPC_C_OPT_MQ_AUTHN_LEVEL","features":[320]},{"name":"RPC_C_OPT_MQ_AUTHN_SERVICE","features":[320]},{"name":"RPC_C_OPT_MQ_DELIVERY","features":[320]},{"name":"RPC_C_OPT_MQ_JOURNAL","features":[320]},{"name":"RPC_C_OPT_MQ_PRIORITY","features":[320]},{"name":"RPC_C_OPT_MQ_TIME_TO_BE_RECEIVED","features":[320]},{"name":"RPC_C_OPT_MQ_TIME_TO_REACH_QUEUE","features":[320]},{"name":"RPC_C_OPT_OPTIMIZE_TIME","features":[320]},{"name":"RPC_C_OPT_PRIVATE_BREAK_ON_SUSPEND","features":[320]},{"name":"RPC_C_OPT_PRIVATE_DO_NOT_DISTURB","features":[320]},{"name":"RPC_C_OPT_PRIVATE_SUPPRESS_WAKE","features":[320]},{"name":"RPC_C_OPT_RESOURCE_TYPE_UUID","features":[320]},{"name":"RPC_C_OPT_SECURITY_CALLBACK","features":[320]},{"name":"RPC_C_OPT_SESSION_ID","features":[320]},{"name":"RPC_C_OPT_TRANS_SEND_BUFFER_SIZE","features":[320]},{"name":"RPC_C_OPT_TRUST_PEER","features":[320]},{"name":"RPC_C_OPT_UNIQUE_BINDING","features":[320]},{"name":"RPC_C_PARM_BUFFER_LENGTH","features":[320]},{"name":"RPC_C_PARM_MAX_PACKET_LENGTH","features":[320]},{"name":"RPC_C_PROFILE_ALL_ELT","features":[320]},{"name":"RPC_C_PROFILE_ALL_ELTS","features":[320]},{"name":"RPC_C_PROFILE_DEFAULT_ELT","features":[320]},{"name":"RPC_C_PROFILE_MATCH_BY_BOTH","features":[320]},{"name":"RPC_C_PROFILE_MATCH_BY_IF","features":[320]},{"name":"RPC_C_PROFILE_MATCH_BY_MBR","features":[320]},{"name":"RPC_C_PROTSEQ_MAX_REQS_DEFAULT","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES_ANY_AUTHORITY","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES_DEFAULT","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES_IGNORE_DELEGATE_FAILURE","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES_LOCAL_MA_HINT","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES_MAKE_FULLSIC","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH","features":[320]},{"name":"RPC_C_QOS_CAPABILITIES_SCHANNEL_FULL_AUTH_IDENTITY","features":[320]},{"name":"RPC_C_QOS_IDENTITY","features":[320]},{"name":"RPC_C_QOS_IDENTITY_DYNAMIC","features":[320]},{"name":"RPC_C_QOS_IDENTITY_STATIC","features":[320]},{"name":"RPC_C_RPCHTTP_USE_LOAD_BALANCE","features":[320]},{"name":"RPC_C_SECURITY_QOS_VERSION","features":[320]},{"name":"RPC_C_SECURITY_QOS_VERSION_1","features":[320]},{"name":"RPC_C_SECURITY_QOS_VERSION_2","features":[320]},{"name":"RPC_C_SECURITY_QOS_VERSION_3","features":[320]},{"name":"RPC_C_SECURITY_QOS_VERSION_4","features":[320]},{"name":"RPC_C_SECURITY_QOS_VERSION_5","features":[320]},{"name":"RPC_C_STATS_CALLS_IN","features":[320]},{"name":"RPC_C_STATS_CALLS_OUT","features":[320]},{"name":"RPC_C_STATS_PKTS_IN","features":[320]},{"name":"RPC_C_STATS_PKTS_OUT","features":[320]},{"name":"RPC_C_TRY_ENFORCE_MAX_CALLS","features":[320]},{"name":"RPC_C_USE_INTERNET_PORT","features":[320]},{"name":"RPC_C_USE_INTRANET_PORT","features":[320]},{"name":"RPC_C_VERS_ALL","features":[320]},{"name":"RPC_C_VERS_COMPATIBLE","features":[320]},{"name":"RPC_C_VERS_EXACT","features":[320]},{"name":"RPC_C_VERS_MAJOR_ONLY","features":[320]},{"name":"RPC_C_VERS_UPTO","features":[320]},{"name":"RPC_DISPATCH_FUNCTION","features":[320]},{"name":"RPC_DISPATCH_TABLE","features":[320]},{"name":"RPC_EEINFO_VERSION","features":[320]},{"name":"RPC_EE_INFO_PARAM","features":[320]},{"name":"RPC_ENDPOINT_TEMPLATEA","features":[320]},{"name":"RPC_ENDPOINT_TEMPLATEW","features":[320]},{"name":"RPC_ERROR_ENUM_HANDLE","features":[320]},{"name":"RPC_EXTENDED_ERROR_INFO","features":[303,320]},{"name":"RPC_FLAGS_VALID_BIT","features":[320]},{"name":"RPC_FORWARD_FUNCTION","features":[320]},{"name":"RPC_FW_IF_FLAG_DCOM","features":[320]},{"name":"RPC_HTTP_PROXY_FREE_STRING","features":[320]},{"name":"RPC_HTTP_REDIRECTOR_STAGE","features":[320]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_A","features":[320]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_A","features":[320]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_W","features":[320]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_A","features":[320]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_W","features":[320]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_W","features":[320]},{"name":"RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH","features":[320]},{"name":"RPC_IF_ALLOW_LOCAL_ONLY","features":[320]},{"name":"RPC_IF_ALLOW_SECURE_ONLY","features":[320]},{"name":"RPC_IF_ALLOW_UNKNOWN_AUTHORITY","features":[320]},{"name":"RPC_IF_ASYNC_CALLBACK","features":[320]},{"name":"RPC_IF_AUTOLISTEN","features":[320]},{"name":"RPC_IF_CALLBACK_FN","features":[320]},{"name":"RPC_IF_ID","features":[320]},{"name":"RPC_IF_ID_VECTOR","features":[320]},{"name":"RPC_IF_OLE","features":[320]},{"name":"RPC_IF_SEC_CACHE_PER_PROC","features":[320]},{"name":"RPC_IF_SEC_NO_CACHE","features":[320]},{"name":"RPC_IMPORT_CONTEXT_P","features":[320]},{"name":"RPC_INTERFACE_GROUP_IDLE_CALLBACK_FN","features":[320]},{"name":"RPC_INTERFACE_HAS_PIPES","features":[320]},{"name":"RPC_INTERFACE_TEMPLATEA","features":[320]},{"name":"RPC_INTERFACE_TEMPLATEW","features":[320]},{"name":"RPC_MESSAGE","features":[320]},{"name":"RPC_MGMT_AUTHORIZATION_FN","features":[320]},{"name":"RPC_NCA_FLAGS_BROADCAST","features":[320]},{"name":"RPC_NCA_FLAGS_DEFAULT","features":[320]},{"name":"RPC_NCA_FLAGS_IDEMPOTENT","features":[320]},{"name":"RPC_NCA_FLAGS_MAYBE","features":[320]},{"name":"RPC_NEW_HTTP_PROXY_CHANNEL","features":[320]},{"name":"RPC_NOTIFICATIONS","features":[320]},{"name":"RPC_NOTIFICATION_TYPES","features":[320]},{"name":"RPC_OBJECT_INQ_FN","features":[320]},{"name":"RPC_POLICY","features":[320]},{"name":"RPC_PROTSEQ_ENDPOINT","features":[320]},{"name":"RPC_PROTSEQ_HTTP","features":[320]},{"name":"RPC_PROTSEQ_LRPC","features":[320]},{"name":"RPC_PROTSEQ_NMP","features":[320]},{"name":"RPC_PROTSEQ_TCP","features":[320]},{"name":"RPC_PROTSEQ_VECTORA","features":[320]},{"name":"RPC_PROTSEQ_VECTORW","features":[320]},{"name":"RPC_PROXY_CONNECTION_TYPE_IN_PROXY","features":[320]},{"name":"RPC_PROXY_CONNECTION_TYPE_OUT_PROXY","features":[320]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV4","features":[320]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV6","features":[320]},{"name":"RPC_QUERY_CALL_LOCAL_ADDRESS","features":[320]},{"name":"RPC_QUERY_CLIENT_ID","features":[320]},{"name":"RPC_QUERY_CLIENT_PID","features":[320]},{"name":"RPC_QUERY_CLIENT_PRINCIPAL_NAME","features":[320]},{"name":"RPC_QUERY_IS_CLIENT_LOCAL","features":[320]},{"name":"RPC_QUERY_NO_AUTH_REQUIRED","features":[320]},{"name":"RPC_QUERY_SERVER_PRINCIPAL_NAME","features":[320]},{"name":"RPC_SECURITY_CALLBACK_FN","features":[320]},{"name":"RPC_SECURITY_QOS","features":[354,320]},{"name":"RPC_SECURITY_QOS_V2_A","features":[354,320]},{"name":"RPC_SECURITY_QOS_V2_W","features":[354,320]},{"name":"RPC_SECURITY_QOS_V3_A","features":[354,320]},{"name":"RPC_SECURITY_QOS_V3_W","features":[354,320]},{"name":"RPC_SECURITY_QOS_V4_A","features":[354,320]},{"name":"RPC_SECURITY_QOS_V4_W","features":[354,320]},{"name":"RPC_SECURITY_QOS_V5_A","features":[354,320]},{"name":"RPC_SECURITY_QOS_V5_W","features":[354,320]},{"name":"RPC_SEC_CONTEXT_KEY_INFO","features":[320]},{"name":"RPC_SERVER_INTERFACE","features":[320]},{"name":"RPC_SETFILTER_FUNC","features":[320]},{"name":"RPC_STATS_VECTOR","features":[320]},{"name":"RPC_STATUS","features":[320]},{"name":"RPC_SYNTAX_IDENTIFIER","features":[320]},{"name":"RPC_SYSTEM_HANDLE_FREE_ALL","features":[320]},{"name":"RPC_SYSTEM_HANDLE_FREE_ERROR_ON_CLOSE","features":[320]},{"name":"RPC_SYSTEM_HANDLE_FREE_RETRIEVED","features":[320]},{"name":"RPC_SYSTEM_HANDLE_FREE_UNRETRIEVED","features":[320]},{"name":"RPC_S_ADDRESS_ERROR","features":[320]},{"name":"RPC_S_ALREADY_LISTENING","features":[320]},{"name":"RPC_S_ALREADY_REGISTERED","features":[320]},{"name":"RPC_S_BINDING_HAS_NO_AUTH","features":[320]},{"name":"RPC_S_BINDING_INCOMPLETE","features":[320]},{"name":"RPC_S_CALL_CANCELLED","features":[320]},{"name":"RPC_S_CALL_FAILED","features":[320]},{"name":"RPC_S_CALL_FAILED_DNE","features":[320]},{"name":"RPC_S_CALL_IN_PROGRESS","features":[320]},{"name":"RPC_S_CANNOT_SUPPORT","features":[320]},{"name":"RPC_S_CANT_CREATE_ENDPOINT","features":[320]},{"name":"RPC_S_COMM_FAILURE","features":[320]},{"name":"RPC_S_COOKIE_AUTH_FAILED","features":[320]},{"name":"RPC_S_DO_NOT_DISTURB","features":[320]},{"name":"RPC_S_DUPLICATE_ENDPOINT","features":[320]},{"name":"RPC_S_ENTRY_ALREADY_EXISTS","features":[320]},{"name":"RPC_S_ENTRY_NOT_FOUND","features":[320]},{"name":"RPC_S_ENTRY_TYPE_MISMATCH","features":[320]},{"name":"RPC_S_FP_DIV_ZERO","features":[320]},{"name":"RPC_S_FP_OVERFLOW","features":[320]},{"name":"RPC_S_FP_UNDERFLOW","features":[320]},{"name":"RPC_S_GROUP_MEMBER_NOT_FOUND","features":[320]},{"name":"RPC_S_GRP_ELT_NOT_ADDED","features":[320]},{"name":"RPC_S_GRP_ELT_NOT_REMOVED","features":[320]},{"name":"RPC_S_INCOMPLETE_NAME","features":[320]},{"name":"RPC_S_INTERFACE_NOT_EXPORTED","features":[320]},{"name":"RPC_S_INTERFACE_NOT_FOUND","features":[320]},{"name":"RPC_S_INTERNAL_ERROR","features":[320]},{"name":"RPC_S_INVALID_ASYNC_CALL","features":[320]},{"name":"RPC_S_INVALID_ASYNC_HANDLE","features":[320]},{"name":"RPC_S_INVALID_AUTH_IDENTITY","features":[320]},{"name":"RPC_S_INVALID_BINDING","features":[320]},{"name":"RPC_S_INVALID_BOUND","features":[320]},{"name":"RPC_S_INVALID_ENDPOINT_FORMAT","features":[320]},{"name":"RPC_S_INVALID_NAF_ID","features":[320]},{"name":"RPC_S_INVALID_NAME_SYNTAX","features":[320]},{"name":"RPC_S_INVALID_NETWORK_OPTIONS","features":[320]},{"name":"RPC_S_INVALID_NET_ADDR","features":[320]},{"name":"RPC_S_INVALID_OBJECT","features":[320]},{"name":"RPC_S_INVALID_RPC_PROTSEQ","features":[320]},{"name":"RPC_S_INVALID_STRING_BINDING","features":[320]},{"name":"RPC_S_INVALID_STRING_UUID","features":[320]},{"name":"RPC_S_INVALID_TAG","features":[320]},{"name":"RPC_S_INVALID_TIMEOUT","features":[320]},{"name":"RPC_S_INVALID_VERS_OPTION","features":[320]},{"name":"RPC_S_MAX_CALLS_TOO_SMALL","features":[320]},{"name":"RPC_S_NAME_SERVICE_UNAVAILABLE","features":[320]},{"name":"RPC_S_NOTHING_TO_EXPORT","features":[320]},{"name":"RPC_S_NOT_ALL_OBJS_EXPORTED","features":[320]},{"name":"RPC_S_NOT_ALL_OBJS_UNEXPORTED","features":[320]},{"name":"RPC_S_NOT_CANCELLED","features":[320]},{"name":"RPC_S_NOT_LISTENING","features":[320]},{"name":"RPC_S_NOT_RPC_ERROR","features":[320]},{"name":"RPC_S_NO_BINDINGS","features":[320]},{"name":"RPC_S_NO_CALL_ACTIVE","features":[320]},{"name":"RPC_S_NO_CONTEXT_AVAILABLE","features":[320]},{"name":"RPC_S_NO_ENDPOINT_FOUND","features":[320]},{"name":"RPC_S_NO_ENTRY_NAME","features":[320]},{"name":"RPC_S_NO_INTERFACES","features":[320]},{"name":"RPC_S_NO_MORE_BINDINGS","features":[320]},{"name":"RPC_S_NO_MORE_MEMBERS","features":[320]},{"name":"RPC_S_NO_PRINC_NAME","features":[320]},{"name":"RPC_S_NO_PROTSEQS","features":[320]},{"name":"RPC_S_NO_PROTSEQS_REGISTERED","features":[320]},{"name":"RPC_S_OBJECT_NOT_FOUND","features":[320]},{"name":"RPC_S_OK","features":[320]},{"name":"RPC_S_OUT_OF_RESOURCES","features":[320]},{"name":"RPC_S_PRF_ELT_NOT_ADDED","features":[320]},{"name":"RPC_S_PRF_ELT_NOT_REMOVED","features":[320]},{"name":"RPC_S_PROCNUM_OUT_OF_RANGE","features":[320]},{"name":"RPC_S_PROFILE_NOT_ADDED","features":[320]},{"name":"RPC_S_PROTOCOL_ERROR","features":[320]},{"name":"RPC_S_PROTSEQ_NOT_FOUND","features":[320]},{"name":"RPC_S_PROTSEQ_NOT_SUPPORTED","features":[320]},{"name":"RPC_S_PROXY_ACCESS_DENIED","features":[320]},{"name":"RPC_S_SEC_PKG_ERROR","features":[320]},{"name":"RPC_S_SEND_INCOMPLETE","features":[320]},{"name":"RPC_S_SERVER_TOO_BUSY","features":[320]},{"name":"RPC_S_SERVER_UNAVAILABLE","features":[320]},{"name":"RPC_S_STRING_TOO_LONG","features":[320]},{"name":"RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED","features":[320]},{"name":"RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH","features":[320]},{"name":"RPC_S_TYPE_ALREADY_REGISTERED","features":[320]},{"name":"RPC_S_UNKNOWN_AUTHN_LEVEL","features":[320]},{"name":"RPC_S_UNKNOWN_AUTHN_SERVICE","features":[320]},{"name":"RPC_S_UNKNOWN_AUTHN_TYPE","features":[320]},{"name":"RPC_S_UNKNOWN_AUTHZ_SERVICE","features":[320]},{"name":"RPC_S_UNKNOWN_IF","features":[320]},{"name":"RPC_S_UNKNOWN_MGR_TYPE","features":[320]},{"name":"RPC_S_UNSUPPORTED_AUTHN_LEVEL","features":[320]},{"name":"RPC_S_UNSUPPORTED_NAME_SYNTAX","features":[320]},{"name":"RPC_S_UNSUPPORTED_TRANS_SYN","features":[320]},{"name":"RPC_S_UNSUPPORTED_TYPE","features":[320]},{"name":"RPC_S_UUID_LOCAL_ONLY","features":[320]},{"name":"RPC_S_UUID_NO_ADDRESS","features":[320]},{"name":"RPC_S_WRONG_KIND_OF_BINDING","features":[320]},{"name":"RPC_S_ZERO_DIVIDE","features":[320]},{"name":"RPC_TRANSFER_SYNTAX","features":[320]},{"name":"RPC_TYPE_DISCONNECT_EVENT_CONTEXT_HANDLE","features":[320]},{"name":"RPC_TYPE_STRICT_CONTEXT_HANDLE","features":[320]},{"name":"RPC_VERSION","features":[320]},{"name":"RpcAsyncAbortCall","features":[303,308,320]},{"name":"RpcAsyncCancelCall","features":[303,308,320]},{"name":"RpcAsyncCompleteCall","features":[303,308,320]},{"name":"RpcAsyncGetCallStatus","features":[303,308,320]},{"name":"RpcAsyncInitializeHandle","features":[303,308,320]},{"name":"RpcAsyncRegisterInfo","features":[303,308,320]},{"name":"RpcAttemptedLbsDecisions","features":[320]},{"name":"RpcAttemptedLbsMessages","features":[320]},{"name":"RpcBackEndConnectionAttempts","features":[320]},{"name":"RpcBackEndConnectionFailed","features":[320]},{"name":"RpcBindingBind","features":[303,308,320]},{"name":"RpcBindingCopy","features":[320]},{"name":"RpcBindingCreateA","features":[354,320]},{"name":"RpcBindingCreateW","features":[354,320]},{"name":"RpcBindingFree","features":[320]},{"name":"RpcBindingFromStringBindingA","features":[320]},{"name":"RpcBindingFromStringBindingW","features":[320]},{"name":"RpcBindingInqAuthClientA","features":[320]},{"name":"RpcBindingInqAuthClientExA","features":[320]},{"name":"RpcBindingInqAuthClientExW","features":[320]},{"name":"RpcBindingInqAuthClientW","features":[320]},{"name":"RpcBindingInqAuthInfoA","features":[320]},{"name":"RpcBindingInqAuthInfoExA","features":[354,320]},{"name":"RpcBindingInqAuthInfoExW","features":[354,320]},{"name":"RpcBindingInqAuthInfoW","features":[320]},{"name":"RpcBindingInqMaxCalls","features":[320]},{"name":"RpcBindingInqObject","features":[320]},{"name":"RpcBindingInqOption","features":[320]},{"name":"RpcBindingReset","features":[320]},{"name":"RpcBindingServerFromClient","features":[320]},{"name":"RpcBindingSetAuthInfoA","features":[320]},{"name":"RpcBindingSetAuthInfoExA","features":[354,320]},{"name":"RpcBindingSetAuthInfoExW","features":[354,320]},{"name":"RpcBindingSetAuthInfoW","features":[320]},{"name":"RpcBindingSetObject","features":[320]},{"name":"RpcBindingSetOption","features":[320]},{"name":"RpcBindingToStringBindingA","features":[320]},{"name":"RpcBindingToStringBindingW","features":[320]},{"name":"RpcBindingUnbind","features":[320]},{"name":"RpcBindingVectorFree","features":[320]},{"name":"RpcCallClientLocality","features":[320]},{"name":"RpcCallComplete","features":[320]},{"name":"RpcCallType","features":[320]},{"name":"RpcCancelThread","features":[320]},{"name":"RpcCancelThreadEx","features":[320]},{"name":"RpcCertGeneratePrincipalNameA","features":[303,387,320]},{"name":"RpcCertGeneratePrincipalNameW","features":[303,387,320]},{"name":"RpcClientCancel","features":[320]},{"name":"RpcClientDisconnect","features":[320]},{"name":"RpcCurrentUniqueUser","features":[320]},{"name":"RpcEpRegisterA","features":[320]},{"name":"RpcEpRegisterNoReplaceA","features":[320]},{"name":"RpcEpRegisterNoReplaceW","features":[320]},{"name":"RpcEpRegisterW","features":[320]},{"name":"RpcEpResolveBinding","features":[320]},{"name":"RpcEpUnregister","features":[320]},{"name":"RpcErrorAddRecord","features":[303,320]},{"name":"RpcErrorClearInformation","features":[320]},{"name":"RpcErrorEndEnumeration","features":[320]},{"name":"RpcErrorGetNextRecord","features":[303,320]},{"name":"RpcErrorGetNumberOfRecords","features":[320]},{"name":"RpcErrorLoadErrorInfo","features":[320]},{"name":"RpcErrorResetEnumeration","features":[320]},{"name":"RpcErrorSaveErrorInfo","features":[320]},{"name":"RpcErrorStartEnumeration","features":[320]},{"name":"RpcExceptionFilter","features":[320]},{"name":"RpcFailedLbsDecisions","features":[320]},{"name":"RpcFailedLbsMessages","features":[320]},{"name":"RpcFreeAuthorizationContext","features":[320]},{"name":"RpcGetAuthorizationContextForClient","features":[303,320]},{"name":"RpcIfIdVectorFree","features":[320]},{"name":"RpcIfInqId","features":[320]},{"name":"RpcImpersonateClient","features":[320]},{"name":"RpcImpersonateClient2","features":[320]},{"name":"RpcImpersonateClientContainer","features":[320]},{"name":"RpcIncomingBandwidth","features":[320]},{"name":"RpcIncomingConnections","features":[320]},{"name":"RpcLastCounter","features":[320]},{"name":"RpcLocalAddressFormat","features":[320]},{"name":"RpcMgmtEnableIdleCleanup","features":[320]},{"name":"RpcMgmtEpEltInqBegin","features":[320]},{"name":"RpcMgmtEpEltInqDone","features":[320]},{"name":"RpcMgmtEpEltInqNextA","features":[320]},{"name":"RpcMgmtEpEltInqNextW","features":[320]},{"name":"RpcMgmtEpUnregister","features":[320]},{"name":"RpcMgmtInqComTimeout","features":[320]},{"name":"RpcMgmtInqDefaultProtectLevel","features":[320]},{"name":"RpcMgmtInqIfIds","features":[320]},{"name":"RpcMgmtInqServerPrincNameA","features":[320]},{"name":"RpcMgmtInqServerPrincNameW","features":[320]},{"name":"RpcMgmtInqStats","features":[320]},{"name":"RpcMgmtIsServerListening","features":[320]},{"name":"RpcMgmtSetAuthorizationFn","features":[320]},{"name":"RpcMgmtSetCancelTimeout","features":[320]},{"name":"RpcMgmtSetComTimeout","features":[320]},{"name":"RpcMgmtSetServerStackSize","features":[320]},{"name":"RpcMgmtStatsVectorFree","features":[320]},{"name":"RpcMgmtStopServerListening","features":[320]},{"name":"RpcMgmtWaitServerListen","features":[320]},{"name":"RpcNetworkInqProtseqsA","features":[320]},{"name":"RpcNetworkInqProtseqsW","features":[320]},{"name":"RpcNetworkIsProtseqValidA","features":[320]},{"name":"RpcNetworkIsProtseqValidW","features":[320]},{"name":"RpcNotificationCallCancel","features":[320]},{"name":"RpcNotificationCallNone","features":[320]},{"name":"RpcNotificationClientDisconnect","features":[320]},{"name":"RpcNotificationTypeApc","features":[320]},{"name":"RpcNotificationTypeCallback","features":[320]},{"name":"RpcNotificationTypeEvent","features":[320]},{"name":"RpcNotificationTypeHwnd","features":[320]},{"name":"RpcNotificationTypeIoc","features":[320]},{"name":"RpcNotificationTypeNone","features":[320]},{"name":"RpcNsBindingExportA","features":[320]},{"name":"RpcNsBindingExportPnPA","features":[320]},{"name":"RpcNsBindingExportPnPW","features":[320]},{"name":"RpcNsBindingExportW","features":[320]},{"name":"RpcNsBindingImportBeginA","features":[320]},{"name":"RpcNsBindingImportBeginW","features":[320]},{"name":"RpcNsBindingImportDone","features":[320]},{"name":"RpcNsBindingImportNext","features":[320]},{"name":"RpcNsBindingInqEntryNameA","features":[320]},{"name":"RpcNsBindingInqEntryNameW","features":[320]},{"name":"RpcNsBindingLookupBeginA","features":[320]},{"name":"RpcNsBindingLookupBeginW","features":[320]},{"name":"RpcNsBindingLookupDone","features":[320]},{"name":"RpcNsBindingLookupNext","features":[320]},{"name":"RpcNsBindingSelect","features":[320]},{"name":"RpcNsBindingUnexportA","features":[320]},{"name":"RpcNsBindingUnexportPnPA","features":[320]},{"name":"RpcNsBindingUnexportPnPW","features":[320]},{"name":"RpcNsBindingUnexportW","features":[320]},{"name":"RpcNsEntryExpandNameA","features":[320]},{"name":"RpcNsEntryExpandNameW","features":[320]},{"name":"RpcNsEntryObjectInqBeginA","features":[320]},{"name":"RpcNsEntryObjectInqBeginW","features":[320]},{"name":"RpcNsEntryObjectInqDone","features":[320]},{"name":"RpcNsEntryObjectInqNext","features":[320]},{"name":"RpcNsGroupDeleteA","features":[320]},{"name":"RpcNsGroupDeleteW","features":[320]},{"name":"RpcNsGroupMbrAddA","features":[320]},{"name":"RpcNsGroupMbrAddW","features":[320]},{"name":"RpcNsGroupMbrInqBeginA","features":[320]},{"name":"RpcNsGroupMbrInqBeginW","features":[320]},{"name":"RpcNsGroupMbrInqDone","features":[320]},{"name":"RpcNsGroupMbrInqNextA","features":[320]},{"name":"RpcNsGroupMbrInqNextW","features":[320]},{"name":"RpcNsGroupMbrRemoveA","features":[320]},{"name":"RpcNsGroupMbrRemoveW","features":[320]},{"name":"RpcNsMgmtBindingUnexportA","features":[320]},{"name":"RpcNsMgmtBindingUnexportW","features":[320]},{"name":"RpcNsMgmtEntryCreateA","features":[320]},{"name":"RpcNsMgmtEntryCreateW","features":[320]},{"name":"RpcNsMgmtEntryDeleteA","features":[320]},{"name":"RpcNsMgmtEntryDeleteW","features":[320]},{"name":"RpcNsMgmtEntryInqIfIdsA","features":[320]},{"name":"RpcNsMgmtEntryInqIfIdsW","features":[320]},{"name":"RpcNsMgmtHandleSetExpAge","features":[320]},{"name":"RpcNsMgmtInqExpAge","features":[320]},{"name":"RpcNsMgmtSetExpAge","features":[320]},{"name":"RpcNsProfileDeleteA","features":[320]},{"name":"RpcNsProfileDeleteW","features":[320]},{"name":"RpcNsProfileEltAddA","features":[320]},{"name":"RpcNsProfileEltAddW","features":[320]},{"name":"RpcNsProfileEltInqBeginA","features":[320]},{"name":"RpcNsProfileEltInqBeginW","features":[320]},{"name":"RpcNsProfileEltInqDone","features":[320]},{"name":"RpcNsProfileEltInqNextA","features":[320]},{"name":"RpcNsProfileEltInqNextW","features":[320]},{"name":"RpcNsProfileEltRemoveA","features":[320]},{"name":"RpcNsProfileEltRemoveW","features":[320]},{"name":"RpcObjectInqType","features":[320]},{"name":"RpcObjectSetInqFn","features":[320]},{"name":"RpcObjectSetType","features":[320]},{"name":"RpcOutgoingBandwidth","features":[320]},{"name":"RpcPerfCounters","features":[320]},{"name":"RpcProtseqVectorFreeA","features":[320]},{"name":"RpcProtseqVectorFreeW","features":[320]},{"name":"RpcRaiseException","features":[320]},{"name":"RpcReceiveComplete","features":[320]},{"name":"RpcRequestsPerSecond","features":[320]},{"name":"RpcRevertContainerImpersonation","features":[320]},{"name":"RpcRevertToSelf","features":[320]},{"name":"RpcRevertToSelfEx","features":[320]},{"name":"RpcSendComplete","features":[320]},{"name":"RpcServerCompleteSecurityCallback","features":[320]},{"name":"RpcServerInqBindingHandle","features":[320]},{"name":"RpcServerInqBindings","features":[320]},{"name":"RpcServerInqBindingsEx","features":[320]},{"name":"RpcServerInqCallAttributesA","features":[320]},{"name":"RpcServerInqCallAttributesW","features":[320]},{"name":"RpcServerInqDefaultPrincNameA","features":[320]},{"name":"RpcServerInqDefaultPrincNameW","features":[320]},{"name":"RpcServerInqIf","features":[320]},{"name":"RpcServerInterfaceGroupActivate","features":[320]},{"name":"RpcServerInterfaceGroupClose","features":[320]},{"name":"RpcServerInterfaceGroupCreateA","features":[320]},{"name":"RpcServerInterfaceGroupCreateW","features":[320]},{"name":"RpcServerInterfaceGroupDeactivate","features":[320]},{"name":"RpcServerInterfaceGroupInqBindings","features":[320]},{"name":"RpcServerListen","features":[320]},{"name":"RpcServerRegisterAuthInfoA","features":[320]},{"name":"RpcServerRegisterAuthInfoW","features":[320]},{"name":"RpcServerRegisterIf","features":[320]},{"name":"RpcServerRegisterIf2","features":[320]},{"name":"RpcServerRegisterIf3","features":[320]},{"name":"RpcServerRegisterIfEx","features":[320]},{"name":"RpcServerSubscribeForNotification","features":[303,308,320]},{"name":"RpcServerTestCancel","features":[320]},{"name":"RpcServerUnregisterIf","features":[320]},{"name":"RpcServerUnregisterIfEx","features":[320]},{"name":"RpcServerUnsubscribeForNotification","features":[320]},{"name":"RpcServerUseAllProtseqs","features":[320]},{"name":"RpcServerUseAllProtseqsEx","features":[320]},{"name":"RpcServerUseAllProtseqsIf","features":[320]},{"name":"RpcServerUseAllProtseqsIfEx","features":[320]},{"name":"RpcServerUseProtseqA","features":[320]},{"name":"RpcServerUseProtseqEpA","features":[320]},{"name":"RpcServerUseProtseqEpExA","features":[320]},{"name":"RpcServerUseProtseqEpExW","features":[320]},{"name":"RpcServerUseProtseqEpW","features":[320]},{"name":"RpcServerUseProtseqExA","features":[320]},{"name":"RpcServerUseProtseqExW","features":[320]},{"name":"RpcServerUseProtseqIfA","features":[320]},{"name":"RpcServerUseProtseqIfExA","features":[320]},{"name":"RpcServerUseProtseqIfExW","features":[320]},{"name":"RpcServerUseProtseqIfW","features":[320]},{"name":"RpcServerUseProtseqW","features":[320]},{"name":"RpcServerYield","features":[320]},{"name":"RpcSmAllocate","features":[320]},{"name":"RpcSmClientFree","features":[320]},{"name":"RpcSmDestroyClientContext","features":[320]},{"name":"RpcSmDisableAllocate","features":[320]},{"name":"RpcSmEnableAllocate","features":[320]},{"name":"RpcSmFree","features":[320]},{"name":"RpcSmGetThreadHandle","features":[320]},{"name":"RpcSmSetClientAllocFree","features":[320]},{"name":"RpcSmSetThreadHandle","features":[320]},{"name":"RpcSmSwapClientAllocFree","features":[320]},{"name":"RpcSsAllocate","features":[320]},{"name":"RpcSsContextLockExclusive","features":[320]},{"name":"RpcSsContextLockShared","features":[320]},{"name":"RpcSsDestroyClientContext","features":[320]},{"name":"RpcSsDisableAllocate","features":[320]},{"name":"RpcSsDontSerializeContext","features":[320]},{"name":"RpcSsEnableAllocate","features":[320]},{"name":"RpcSsFree","features":[320]},{"name":"RpcSsGetContextBinding","features":[320]},{"name":"RpcSsGetThreadHandle","features":[320]},{"name":"RpcSsSetClientAllocFree","features":[320]},{"name":"RpcSsSetThreadHandle","features":[320]},{"name":"RpcSsSwapClientAllocFree","features":[320]},{"name":"RpcStringBindingComposeA","features":[320]},{"name":"RpcStringBindingComposeW","features":[320]},{"name":"RpcStringBindingParseA","features":[320]},{"name":"RpcStringBindingParseW","features":[320]},{"name":"RpcStringFreeA","features":[320]},{"name":"RpcStringFreeW","features":[320]},{"name":"RpcTestCancel","features":[320]},{"name":"RpcUserFree","features":[320]},{"name":"SCONTEXT_QUEUE","features":[320]},{"name":"SEC_WINNT_AUTH_IDENTITY","features":[320]},{"name":"SEC_WINNT_AUTH_IDENTITY_A","features":[320]},{"name":"SEC_WINNT_AUTH_IDENTITY_ANSI","features":[320]},{"name":"SEC_WINNT_AUTH_IDENTITY_UNICODE","features":[320]},{"name":"SEC_WINNT_AUTH_IDENTITY_W","features":[320]},{"name":"SERVER_ROUTINE","features":[320]},{"name":"STUB_CALL_SERVER","features":[320]},{"name":"STUB_CALL_SERVER_NO_HRESULT","features":[320]},{"name":"STUB_MARSHAL","features":[320]},{"name":"STUB_PHASE","features":[320]},{"name":"STUB_THUNK","features":[354,320]},{"name":"STUB_UNMARSHAL","features":[320]},{"name":"SYSTEM_HANDLE_COMPOSITION_OBJECT","features":[320]},{"name":"SYSTEM_HANDLE_EVENT","features":[320]},{"name":"SYSTEM_HANDLE_FILE","features":[320]},{"name":"SYSTEM_HANDLE_INVALID","features":[320]},{"name":"SYSTEM_HANDLE_JOB","features":[320]},{"name":"SYSTEM_HANDLE_MAX","features":[320]},{"name":"SYSTEM_HANDLE_MUTEX","features":[320]},{"name":"SYSTEM_HANDLE_PIPE","features":[320]},{"name":"SYSTEM_HANDLE_PROCESS","features":[320]},{"name":"SYSTEM_HANDLE_REG_KEY","features":[320]},{"name":"SYSTEM_HANDLE_SECTION","features":[320]},{"name":"SYSTEM_HANDLE_SEMAPHORE","features":[320]},{"name":"SYSTEM_HANDLE_SOCKET","features":[320]},{"name":"SYSTEM_HANDLE_THREAD","features":[320]},{"name":"SYSTEM_HANDLE_TOKEN","features":[320]},{"name":"TARGET_IS_NT100_OR_LATER","features":[320]},{"name":"TARGET_IS_NT1012_OR_LATER","features":[320]},{"name":"TARGET_IS_NT102_OR_LATER","features":[320]},{"name":"TARGET_IS_NT351_OR_WIN95_OR_LATER","features":[320]},{"name":"TARGET_IS_NT40_OR_LATER","features":[320]},{"name":"TARGET_IS_NT50_OR_LATER","features":[320]},{"name":"TARGET_IS_NT51_OR_LATER","features":[320]},{"name":"TARGET_IS_NT60_OR_LATER","features":[320]},{"name":"TARGET_IS_NT61_OR_LATER","features":[320]},{"name":"TARGET_IS_NT62_OR_LATER","features":[320]},{"name":"TARGET_IS_NT63_OR_LATER","features":[320]},{"name":"TRANSPORT_TYPE_CN","features":[320]},{"name":"TRANSPORT_TYPE_DG","features":[320]},{"name":"TRANSPORT_TYPE_LPC","features":[320]},{"name":"TRANSPORT_TYPE_WMSG","features":[320]},{"name":"USER_CALL_IS_ASYNC","features":[320]},{"name":"USER_CALL_NEW_CORRELATION_DESC","features":[320]},{"name":"USER_MARSHAL_CB","features":[354,320]},{"name":"USER_MARSHAL_CB_BUFFER_SIZE","features":[320]},{"name":"USER_MARSHAL_CB_FREE","features":[320]},{"name":"USER_MARSHAL_CB_MARSHALL","features":[320]},{"name":"USER_MARSHAL_CB_TYPE","features":[320]},{"name":"USER_MARSHAL_CB_UNMARSHALL","features":[320]},{"name":"USER_MARSHAL_FC_BYTE","features":[320]},{"name":"USER_MARSHAL_FC_CHAR","features":[320]},{"name":"USER_MARSHAL_FC_DOUBLE","features":[320]},{"name":"USER_MARSHAL_FC_FLOAT","features":[320]},{"name":"USER_MARSHAL_FC_HYPER","features":[320]},{"name":"USER_MARSHAL_FC_LONG","features":[320]},{"name":"USER_MARSHAL_FC_SHORT","features":[320]},{"name":"USER_MARSHAL_FC_SMALL","features":[320]},{"name":"USER_MARSHAL_FC_ULONG","features":[320]},{"name":"USER_MARSHAL_FC_USHORT","features":[320]},{"name":"USER_MARSHAL_FC_USMALL","features":[320]},{"name":"USER_MARSHAL_FC_WCHAR","features":[320]},{"name":"USER_MARSHAL_FREEING_ROUTINE","features":[320]},{"name":"USER_MARSHAL_MARSHALLING_ROUTINE","features":[320]},{"name":"USER_MARSHAL_ROUTINE_QUADRUPLE","features":[320]},{"name":"USER_MARSHAL_SIZING_ROUTINE","features":[320]},{"name":"USER_MARSHAL_UNMARSHALLING_ROUTINE","features":[320]},{"name":"UUID_VECTOR","features":[320]},{"name":"UuidCompare","features":[320]},{"name":"UuidCreate","features":[320]},{"name":"UuidCreateNil","features":[320]},{"name":"UuidCreateSequential","features":[320]},{"name":"UuidEqual","features":[320]},{"name":"UuidFromStringA","features":[320]},{"name":"UuidFromStringW","features":[320]},{"name":"UuidHash","features":[320]},{"name":"UuidIsNil","features":[320]},{"name":"UuidToStringA","features":[320]},{"name":"UuidToStringW","features":[320]},{"name":"XLAT_CLIENT","features":[320]},{"name":"XLAT_SERVER","features":[320]},{"name":"XLAT_SIDE","features":[320]},{"name":"XMIT_HELPER_ROUTINE","features":[354,320]},{"name":"XMIT_ROUTINE_QUINTUPLE","features":[354,320]},{"name":"_NDR_PROC_CONTEXT","features":[320]},{"name":"__RPCPROXY_H_VERSION__","features":[320]},{"name":"cbNDRContext","features":[320]},{"name":"eeptAnsiString","features":[320]},{"name":"eeptBinary","features":[320]},{"name":"eeptLongVal","features":[320]},{"name":"eeptNone","features":[320]},{"name":"eeptPointerVal","features":[320]},{"name":"eeptShortVal","features":[320]},{"name":"eeptUnicodeString","features":[320]},{"name":"rcclClientUnknownLocality","features":[320]},{"name":"rcclInvalid","features":[320]},{"name":"rcclLocal","features":[320]},{"name":"rcclRemote","features":[320]},{"name":"rctGuaranteed","features":[320]},{"name":"rctInvalid","features":[320]},{"name":"rctNormal","features":[320]},{"name":"rctTraining","features":[320]},{"name":"rlafIPv4","features":[320]},{"name":"rlafIPv6","features":[320]},{"name":"rlafInvalid","features":[320]},{"name":"system_handle_t","features":[320]}],"602":[{"name":"ACCESS_MASKENUM","features":[579]},{"name":"AUTHENTICATION_INFO","features":[579]},{"name":"AUTH_TYPE","features":[579]},{"name":"BCP6xFILEFMT","features":[579]},{"name":"BCPABORT","features":[579]},{"name":"BCPBATCH","features":[579]},{"name":"BCPFILECP","features":[579]},{"name":"BCPFILECP_ACP","features":[579]},{"name":"BCPFILECP_OEMCP","features":[579]},{"name":"BCPFILECP_RAW","features":[579]},{"name":"BCPFILEFMT","features":[579]},{"name":"BCPFIRST","features":[579]},{"name":"BCPHINTS","features":[579]},{"name":"BCPHINTSA","features":[579]},{"name":"BCPHINTSW","features":[579]},{"name":"BCPKEEPIDENTITY","features":[579]},{"name":"BCPKEEPNULLS","features":[579]},{"name":"BCPLAST","features":[579]},{"name":"BCPMAXERRS","features":[579]},{"name":"BCPODBC","features":[579]},{"name":"BCPTEXTFILE","features":[579]},{"name":"BCPUNICODEFILE","features":[579]},{"name":"BCP_FMT_COLLATION","features":[579]},{"name":"BCP_FMT_COLLATION_ID","features":[579]},{"name":"BCP_FMT_DATA_LEN","features":[579]},{"name":"BCP_FMT_INDICATOR_LEN","features":[579]},{"name":"BCP_FMT_SERVER_COL","features":[579]},{"name":"BCP_FMT_TERMINATOR","features":[579]},{"name":"BCP_FMT_TYPE","features":[579]},{"name":"BIO_BINDER","features":[579]},{"name":"BMK_DURABILITY_INTRANSACTION","features":[579]},{"name":"BMK_DURABILITY_REORGANIZATION","features":[579]},{"name":"BMK_DURABILITY_ROWSET","features":[579]},{"name":"BMK_DURABILITY_XTRANSACTION","features":[579]},{"name":"BUCKETCATEGORIZE","features":[579]},{"name":"BUCKET_EXPONENTIAL","features":[579]},{"name":"BUCKET_LINEAR","features":[579]},{"name":"CASE_REQUIREMENT","features":[579]},{"name":"CASE_REQUIREMENT_ANY","features":[579]},{"name":"CASE_REQUIREMENT_UPPER_IF_AQS","features":[579]},{"name":"CATALOG_PAUSED_REASON_DELAYED_RECOVERY","features":[579]},{"name":"CATALOG_PAUSED_REASON_EXTERNAL","features":[579]},{"name":"CATALOG_PAUSED_REASON_HIGH_CPU","features":[579]},{"name":"CATALOG_PAUSED_REASON_HIGH_IO","features":[579]},{"name":"CATALOG_PAUSED_REASON_HIGH_NTF_RATE","features":[579]},{"name":"CATALOG_PAUSED_REASON_LOW_BATTERY","features":[579]},{"name":"CATALOG_PAUSED_REASON_LOW_DISK","features":[579]},{"name":"CATALOG_PAUSED_REASON_LOW_MEMORY","features":[579]},{"name":"CATALOG_PAUSED_REASON_NONE","features":[579]},{"name":"CATALOG_PAUSED_REASON_UPGRADING","features":[579]},{"name":"CATALOG_PAUSED_REASON_USER_ACTIVE","features":[579]},{"name":"CATALOG_STATUS_FULL_CRAWL","features":[579]},{"name":"CATALOG_STATUS_IDLE","features":[579]},{"name":"CATALOG_STATUS_INCREMENTAL_CRAWL","features":[579]},{"name":"CATALOG_STATUS_PAUSED","features":[579]},{"name":"CATALOG_STATUS_PROCESSING_NOTIFICATIONS","features":[579]},{"name":"CATALOG_STATUS_RECOVERING","features":[579]},{"name":"CATALOG_STATUS_SHUTTING_DOWN","features":[579]},{"name":"CATEGORIZATION","features":[507,427,579]},{"name":"CATEGORIZATIONSET","features":[507,427,579]},{"name":"CATEGORIZE_BUCKETS","features":[579]},{"name":"CATEGORIZE_CLUSTER","features":[579]},{"name":"CATEGORIZE_RANGE","features":[579]},{"name":"CATEGORIZE_UNIQUE","features":[579]},{"name":"CATEGORY_COLLATOR","features":[579]},{"name":"CATEGORY_GATHERER","features":[579]},{"name":"CATEGORY_INDEXER","features":[579]},{"name":"CATEGORY_SEARCH","features":[579]},{"name":"CDBBMKDISPIDS","features":[579]},{"name":"CDBCOLDISPIDS","features":[579]},{"name":"CDBSELFDISPIDS","features":[579]},{"name":"CERT_E_NOT_FOUND_OR_NO_PERMISSSION","features":[579]},{"name":"CHANNEL_AGENT_DYNAMIC_SCHEDULE","features":[579]},{"name":"CHANNEL_AGENT_FLAGS","features":[579]},{"name":"CHANNEL_AGENT_PRECACHE_ALL","features":[579]},{"name":"CHANNEL_AGENT_PRECACHE_SCRNSAVER","features":[579]},{"name":"CHANNEL_AGENT_PRECACHE_SOME","features":[579]},{"name":"CI_E_CORRUPT_FWIDX","features":[579]},{"name":"CI_E_DIACRITIC_SETTINGS_DIFFER","features":[579]},{"name":"CI_E_INCONSISTENT_TRANSACTION","features":[579]},{"name":"CI_E_INVALID_CATALOG_LIST_VERSION","features":[579]},{"name":"CI_E_MULTIPLE_PROTECTED_USERS_UNSUPPORTED","features":[579]},{"name":"CI_E_NO_AUXMETADATA","features":[579]},{"name":"CI_E_NO_CATALOG_MANAGER","features":[579]},{"name":"CI_E_NO_PROTECTED_USER","features":[579]},{"name":"CI_E_PROTECTED_CATALOG_NON_INTERACTIVE_USER","features":[579]},{"name":"CI_E_PROTECTED_CATALOG_NOT_AVAILABLE","features":[579]},{"name":"CI_E_PROTECTED_CATALOG_SID_MISMATCH","features":[579]},{"name":"CI_S_CATALOG_RESET","features":[579]},{"name":"CI_S_CLIENT_REQUESTED_ABORT","features":[579]},{"name":"CI_S_NEW_AUXMETADATA","features":[579]},{"name":"CI_S_RETRY_DOCUMENT","features":[579]},{"name":"CLSID_CISimpleCommandCreator","features":[579]},{"name":"CLSID_DataShapeProvider","features":[579]},{"name":"CLSID_MSDASQL","features":[579]},{"name":"CLSID_MSDASQL_ENUMERATOR","features":[579]},{"name":"CLSID_MSPersist","features":[579]},{"name":"CLSID_SQLOLEDB","features":[579]},{"name":"CLSID_SQLOLEDB_ENUMERATOR","features":[579]},{"name":"CLSID_SQLOLEDB_ERROR","features":[579]},{"name":"CLUSIONREASON_DEFAULT","features":[579]},{"name":"CLUSIONREASON_GROUPPOLICY","features":[579]},{"name":"CLUSIONREASON_UNKNOWNSCOPE","features":[579]},{"name":"CLUSIONREASON_USER","features":[579]},{"name":"CLUSION_REASON","features":[579]},{"name":"CMDLINE_E_ALREADY_INIT","features":[579]},{"name":"CMDLINE_E_NOT_INIT","features":[579]},{"name":"CMDLINE_E_NUM_PARAMS","features":[579]},{"name":"CMDLINE_E_PARAM_SIZE","features":[579]},{"name":"CMDLINE_E_PAREN","features":[579]},{"name":"CMDLINE_E_UNEXPECTED","features":[579]},{"name":"CM_E_CONNECTIONTIMEOUT","features":[579]},{"name":"CM_E_DATASOURCENOTAVAILABLE","features":[579]},{"name":"CM_E_INSUFFICIENTBUFFER","features":[579]},{"name":"CM_E_INVALIDDATASOURCE","features":[579]},{"name":"CM_E_NOQUERYCONNECTIONS","features":[579]},{"name":"CM_E_REGISTRY","features":[579]},{"name":"CM_E_SERVERNOTFOUND","features":[579]},{"name":"CM_E_TIMEOUT","features":[579]},{"name":"CM_E_TOOMANYDATASERVERS","features":[579]},{"name":"CM_E_TOOMANYDATASOURCES","features":[579]},{"name":"CM_S_NODATASERVERS","features":[579]},{"name":"COLL_E_BADRESULT","features":[579]},{"name":"COLL_E_BADSEQUENCE","features":[579]},{"name":"COLL_E_BUFFERTOOSMALL","features":[579]},{"name":"COLL_E_DUPLICATEDBID","features":[579]},{"name":"COLL_E_INCOMPATIBLECOLUMNS","features":[579]},{"name":"COLL_E_MAXCONNEXCEEDED","features":[579]},{"name":"COLL_E_NODEFAULTCATALOG","features":[579]},{"name":"COLL_E_NOMOREDATA","features":[579]},{"name":"COLL_E_NOSORTCOLUMN","features":[579]},{"name":"COLL_E_TOOMANYMERGECOLUMNS","features":[579]},{"name":"COLUMNSET","features":[507,427,579]},{"name":"CONDITION_CREATION_DEFAULT","features":[579]},{"name":"CONDITION_CREATION_NONE","features":[579]},{"name":"CONDITION_CREATION_OPTIONS","features":[579]},{"name":"CONDITION_CREATION_SIMPLIFY","features":[579]},{"name":"CONDITION_CREATION_USE_CONTENT_LOCALE","features":[579]},{"name":"CONDITION_CREATION_VECTOR_AND","features":[579]},{"name":"CONDITION_CREATION_VECTOR_LEAF","features":[579]},{"name":"CONDITION_CREATION_VECTOR_OR","features":[579]},{"name":"CONTENTRESTRICTION","features":[507,427,579]},{"name":"CONTENT_SOURCE_E_CONTENT_CLASS_READ","features":[579]},{"name":"CONTENT_SOURCE_E_CONTENT_SOURCE_COLUMN_TYPE","features":[579]},{"name":"CONTENT_SOURCE_E_NULL_CONTENT_CLASS_BSTR","features":[579]},{"name":"CONTENT_SOURCE_E_NULL_URI","features":[579]},{"name":"CONTENT_SOURCE_E_OUT_OF_RANGE","features":[579]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_BAD_VECTOR_SIZE","features":[579]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_READ","features":[579]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_EXCEPTION","features":[579]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_NULL_POINTER","features":[579]},{"name":"CQUERYDISPIDS","features":[579]},{"name":"CQUERYMETADISPIDS","features":[579]},{"name":"CQUERYPROPERTY","features":[579]},{"name":"CREATESUBSCRIPTIONFLAGS","features":[579]},{"name":"CREATESUBS_ADDTOFAVORITES","features":[579]},{"name":"CREATESUBS_FROMFAVORITES","features":[579]},{"name":"CREATESUBS_NOSAVE","features":[579]},{"name":"CREATESUBS_NOUI","features":[579]},{"name":"CREATESUBS_SOFTWAREUPDATE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_ASSERTIONS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_CATALOGS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_CHARACTER_SETS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_COLLATIONS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMNS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_DOMAIN_USAGE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_PRIVILEGES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_COLUMN_USAGE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_TABLE_USAGE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_FOREIGN_KEYS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_INDEXES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_KEY_COLUMN_USAGE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_LINKEDSERVERS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECTS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECT_ACTIONS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_PRIMARY_KEYS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_COLUMNS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_PARAMETERS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_PROVIDER_TYPES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_REFERENTIAL_CONSTRAINTS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_SCHEMATA","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_SQL_LANGUAGES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_STATISTICS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES_INFO","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_CONSTRAINTS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_PRIVILEGES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_STATISTICS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_TRANSLATIONS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_TRUSTEE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_USAGE_PRIVILEGES","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEWS","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_COLUMN_USAGE","features":[579]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_TABLE_USAGE","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_ACTIONS","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_COMMANDS","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_CUBES","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_DIMENSIONS","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_FUNCTIONS","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_HIERARCHIES","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_LEVELS","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_MEASURES","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_MEMBERS","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_PROPERTIES","features":[579]},{"name":"CRESTRICTIONS_MDSCHEMA_SETS","features":[579]},{"name":"CSTORAGEPROPERTY","features":[579]},{"name":"CSearchLanguageSupport","features":[579]},{"name":"CSearchManager","features":[579]},{"name":"CSearchRoot","features":[579]},{"name":"CSearchScopeRule","features":[579]},{"name":"CatalogPausedReason","features":[579]},{"name":"CatalogStatus","features":[579]},{"name":"CompoundCondition","features":[579]},{"name":"ConditionFactory","features":[579]},{"name":"DATE_STRUCT","features":[579]},{"name":"DBACCESSORFLAGSENUM","features":[579]},{"name":"DBACCESSOR_INHERITED","features":[579]},{"name":"DBACCESSOR_INVALID","features":[579]},{"name":"DBACCESSOR_OPTIMIZED","features":[579]},{"name":"DBACCESSOR_PARAMETERDATA","features":[579]},{"name":"DBACCESSOR_PASSBYREF","features":[579]},{"name":"DBACCESSOR_ROWDATA","features":[579]},{"name":"DBASYNCHOPENUM","features":[579]},{"name":"DBASYNCHOP_OPEN","features":[579]},{"name":"DBASYNCHPHASEENUM","features":[579]},{"name":"DBASYNCHPHASE_CANCELED","features":[579]},{"name":"DBASYNCHPHASE_COMPLETE","features":[579]},{"name":"DBASYNCHPHASE_INITIALIZATION","features":[579]},{"name":"DBASYNCHPHASE_POPULATION","features":[579]},{"name":"DBBINDEXT","features":[579]},{"name":"DBBINDEXT","features":[579]},{"name":"DBBINDFLAGENUM","features":[579]},{"name":"DBBINDFLAG_HTML","features":[579]},{"name":"DBBINDING","features":[354,579]},{"name":"DBBINDING","features":[354,579]},{"name":"DBBINDSTATUSENUM","features":[579]},{"name":"DBBINDSTATUS_BADBINDINFO","features":[579]},{"name":"DBBINDSTATUS_BADORDINAL","features":[579]},{"name":"DBBINDSTATUS_BADSTORAGEFLAGS","features":[579]},{"name":"DBBINDSTATUS_MULTIPLESTORAGE","features":[579]},{"name":"DBBINDSTATUS_NOINTERFACE","features":[579]},{"name":"DBBINDSTATUS_OK","features":[579]},{"name":"DBBINDSTATUS_UNSUPPORTEDCONVERSION","features":[579]},{"name":"DBBINDURLFLAGENUM","features":[579]},{"name":"DBBINDURLFLAG_ASYNCHRONOUS","features":[579]},{"name":"DBBINDURLFLAG_COLLECTION","features":[579]},{"name":"DBBINDURLFLAG_DELAYFETCHCOLUMNS","features":[579]},{"name":"DBBINDURLFLAG_DELAYFETCHSTREAM","features":[579]},{"name":"DBBINDURLFLAG_ISSTRUCTUREDDOCUMENT","features":[579]},{"name":"DBBINDURLFLAG_OPENIFEXISTS","features":[579]},{"name":"DBBINDURLFLAG_OUTPUT","features":[579]},{"name":"DBBINDURLFLAG_OVERWRITE","features":[579]},{"name":"DBBINDURLFLAG_READ","features":[579]},{"name":"DBBINDURLFLAG_READWRITE","features":[579]},{"name":"DBBINDURLFLAG_RECURSIVE","features":[579]},{"name":"DBBINDURLFLAG_SHARE_DENY_NONE","features":[579]},{"name":"DBBINDURLFLAG_SHARE_DENY_READ","features":[579]},{"name":"DBBINDURLFLAG_SHARE_DENY_WRITE","features":[579]},{"name":"DBBINDURLFLAG_SHARE_EXCLUSIVE","features":[579]},{"name":"DBBINDURLFLAG_WAITFORINIT","features":[579]},{"name":"DBBINDURLFLAG_WRITE","features":[579]},{"name":"DBBINDURLSTATUSENUM","features":[579]},{"name":"DBBINDURLSTATUS_S_DENYNOTSUPPORTED","features":[579]},{"name":"DBBINDURLSTATUS_S_DENYTYPENOTSUPPORTED","features":[579]},{"name":"DBBINDURLSTATUS_S_OK","features":[579]},{"name":"DBBINDURLSTATUS_S_REDIRECTED","features":[579]},{"name":"DBBMKGUID","features":[579]},{"name":"DBBMK_FIRST","features":[579]},{"name":"DBBMK_INVALID","features":[579]},{"name":"DBBMK_LAST","features":[579]},{"name":"DBBOOKMARK","features":[579]},{"name":"DBCIDGUID","features":[579]},{"name":"DBCOLUMNACCESS","features":[507,579]},{"name":"DBCOLUMNACCESS","features":[507,579]},{"name":"DBCOLUMNDESC","features":[507,354,579]},{"name":"DBCOLUMNDESC","features":[507,354,579]},{"name":"DBCOLUMNDESCFLAGSENUM","features":[579]},{"name":"DBCOLUMNDESCFLAGS_CLSID","features":[579]},{"name":"DBCOLUMNDESCFLAGS_COLSIZE","features":[579]},{"name":"DBCOLUMNDESCFLAGS_DBCID","features":[579]},{"name":"DBCOLUMNDESCFLAGS_ITYPEINFO","features":[579]},{"name":"DBCOLUMNDESCFLAGS_PRECISION","features":[579]},{"name":"DBCOLUMNDESCFLAGS_PROPERTIES","features":[579]},{"name":"DBCOLUMNDESCFLAGS_SCALE","features":[579]},{"name":"DBCOLUMNDESCFLAGS_TYPENAME","features":[579]},{"name":"DBCOLUMNDESCFLAGS_WTYPE","features":[579]},{"name":"DBCOLUMNFLAGS15ENUM","features":[579]},{"name":"DBCOLUMNFLAGSDEPRECATED","features":[579]},{"name":"DBCOLUMNFLAGSENUM","features":[579]},{"name":"DBCOLUMNFLAGSENUM20","features":[579]},{"name":"DBCOLUMNFLAGSENUM21","features":[579]},{"name":"DBCOLUMNFLAGSENUM26","features":[579]},{"name":"DBCOLUMNFLAGS_CACHEDEFERRED","features":[579]},{"name":"DBCOLUMNFLAGS_ISBOOKMARK","features":[579]},{"name":"DBCOLUMNFLAGS_ISCHAPTER","features":[579]},{"name":"DBCOLUMNFLAGS_ISCOLLECTION","features":[579]},{"name":"DBCOLUMNFLAGS_ISDEFAULTSTREAM","features":[579]},{"name":"DBCOLUMNFLAGS_ISFIXEDLENGTH","features":[579]},{"name":"DBCOLUMNFLAGS_ISLONG","features":[579]},{"name":"DBCOLUMNFLAGS_ISNULLABLE","features":[579]},{"name":"DBCOLUMNFLAGS_ISROW","features":[579]},{"name":"DBCOLUMNFLAGS_ISROWID","features":[579]},{"name":"DBCOLUMNFLAGS_ISROWSET","features":[579]},{"name":"DBCOLUMNFLAGS_ISROWURL","features":[579]},{"name":"DBCOLUMNFLAGS_ISROWVER","features":[579]},{"name":"DBCOLUMNFLAGS_ISSTREAM","features":[579]},{"name":"DBCOLUMNFLAGS_KEYCOLUMN","features":[579]},{"name":"DBCOLUMNFLAGS_MAYBENULL","features":[579]},{"name":"DBCOLUMNFLAGS_MAYDEFER","features":[579]},{"name":"DBCOLUMNFLAGS_RESERVED","features":[579]},{"name":"DBCOLUMNFLAGS_ROWSPECIFICCOLUMN","features":[579]},{"name":"DBCOLUMNFLAGS_SCALEISNEGATIVE","features":[579]},{"name":"DBCOLUMNFLAGS_WRITE","features":[579]},{"name":"DBCOLUMNFLAGS_WRITEUNKNOWN","features":[579]},{"name":"DBCOLUMNINFO","features":[507,354,579]},{"name":"DBCOLUMNINFO","features":[507,354,579]},{"name":"DBCOMMANDPERSISTFLAGENUM","features":[579]},{"name":"DBCOMMANDPERSISTFLAGENUM21","features":[579]},{"name":"DBCOMMANDPERSISTFLAG_DEFAULT","features":[579]},{"name":"DBCOMMANDPERSISTFLAG_NOSAVE","features":[579]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTPROCEDURE","features":[579]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTVIEW","features":[579]},{"name":"DBCOMPAREENUM","features":[579]},{"name":"DBCOMPAREOPSENUM","features":[579]},{"name":"DBCOMPAREOPSENUM20","features":[579]},{"name":"DBCOMPAREOPS_BEGINSWITH","features":[579]},{"name":"DBCOMPAREOPS_CASEINSENSITIVE","features":[579]},{"name":"DBCOMPAREOPS_CASESENSITIVE","features":[579]},{"name":"DBCOMPAREOPS_CONTAINS","features":[579]},{"name":"DBCOMPAREOPS_EQ","features":[579]},{"name":"DBCOMPAREOPS_GE","features":[579]},{"name":"DBCOMPAREOPS_GT","features":[579]},{"name":"DBCOMPAREOPS_IGNORE","features":[579]},{"name":"DBCOMPAREOPS_LE","features":[579]},{"name":"DBCOMPAREOPS_LT","features":[579]},{"name":"DBCOMPAREOPS_NE","features":[579]},{"name":"DBCOMPAREOPS_NOTBEGINSWITH","features":[579]},{"name":"DBCOMPAREOPS_NOTCONTAINS","features":[579]},{"name":"DBCOMPARE_EQ","features":[579]},{"name":"DBCOMPARE_GT","features":[579]},{"name":"DBCOMPARE_LT","features":[579]},{"name":"DBCOMPARE_NE","features":[579]},{"name":"DBCOMPARE_NOTCOMPARABLE","features":[579]},{"name":"DBCOMPUTEMODE_COMPUTED","features":[579]},{"name":"DBCOMPUTEMODE_DYNAMIC","features":[579]},{"name":"DBCOMPUTEMODE_NOTCOMPUTED","features":[579]},{"name":"DBCONSTRAINTDESC","features":[507,579]},{"name":"DBCONSTRAINTDESC","features":[507,579]},{"name":"DBCONSTRAINTTYPEENUM","features":[579]},{"name":"DBCONSTRAINTTYPE_CHECK","features":[579]},{"name":"DBCONSTRAINTTYPE_FOREIGNKEY","features":[579]},{"name":"DBCONSTRAINTTYPE_PRIMARYKEY","features":[579]},{"name":"DBCONSTRAINTTYPE_UNIQUE","features":[579]},{"name":"DBCONVERTFLAGSENUM","features":[579]},{"name":"DBCONVERTFLAGSENUM20","features":[579]},{"name":"DBCONVERTFLAGS_COLUMN","features":[579]},{"name":"DBCONVERTFLAGS_FROMVARIANT","features":[579]},{"name":"DBCONVERTFLAGS_ISFIXEDLENGTH","features":[579]},{"name":"DBCONVERTFLAGS_ISLONG","features":[579]},{"name":"DBCONVERTFLAGS_PARAMETER","features":[579]},{"name":"DBCOPYFLAGSENUM","features":[579]},{"name":"DBCOPY_ALLOW_EMULATION","features":[579]},{"name":"DBCOPY_ASYNC","features":[579]},{"name":"DBCOPY_ATOMIC","features":[579]},{"name":"DBCOPY_NON_RECURSIVE","features":[579]},{"name":"DBCOPY_REPLACE_EXISTING","features":[579]},{"name":"DBCOST","features":[579]},{"name":"DBCOST","features":[579]},{"name":"DBCOSTUNITENUM","features":[579]},{"name":"DBDATACONVERTENUM","features":[579]},{"name":"DBDATACONVERT_DECIMALSCALE","features":[579]},{"name":"DBDATACONVERT_DEFAULT","features":[579]},{"name":"DBDATACONVERT_DSTISFIXEDLENGTH","features":[579]},{"name":"DBDATACONVERT_LENGTHFROMNTS","features":[579]},{"name":"DBDATACONVERT_SETDATABEHAVIOR","features":[579]},{"name":"DBDATE","features":[579]},{"name":"DBDATETIM4","features":[579]},{"name":"DBDATETIME","features":[579]},{"name":"DBDEFERRABILITYENUM","features":[579]},{"name":"DBDEFERRABILITY_DEFERRABLE","features":[579]},{"name":"DBDEFERRABILITY_DEFERRED","features":[579]},{"name":"DBDELETEFLAGSENUM","features":[579]},{"name":"DBDELETE_ASYNC","features":[579]},{"name":"DBDELETE_ATOMIC","features":[579]},{"name":"DBEVENTPHASEENUM","features":[579]},{"name":"DBEVENTPHASE_ABOUTTODO","features":[579]},{"name":"DBEVENTPHASE_DIDEVENT","features":[579]},{"name":"DBEVENTPHASE_FAILEDTODO","features":[579]},{"name":"DBEVENTPHASE_OKTODO","features":[579]},{"name":"DBEVENTPHASE_SYNCHAFTER","features":[579]},{"name":"DBEXECLIMITSENUM","features":[579]},{"name":"DBEXECLIMITS_ABORT","features":[579]},{"name":"DBEXECLIMITS_STOP","features":[579]},{"name":"DBEXECLIMITS_SUSPEND","features":[579]},{"name":"DBFAILUREINFO","features":[579]},{"name":"DBFAILUREINFO","features":[579]},{"name":"DBGUID_MSSQLXML","features":[579]},{"name":"DBGUID_ROWDEFAULTSTREAM","features":[579]},{"name":"DBGUID_ROWURL","features":[579]},{"name":"DBGUID_XPATH","features":[579]},{"name":"DBIMPLICITSESSION","features":[579]},{"name":"DBIMPLICITSESSION","features":[579]},{"name":"DBINDEXCOLUMNDESC","features":[507,579]},{"name":"DBINDEXCOLUMNDESC","features":[507,579]},{"name":"DBINDEX_COL_ORDERENUM","features":[579]},{"name":"DBINDEX_COL_ORDER_ASC","features":[579]},{"name":"DBINDEX_COL_ORDER_DESC","features":[579]},{"name":"DBLITERALENUM","features":[579]},{"name":"DBLITERALENUM20","features":[579]},{"name":"DBLITERALENUM21","features":[579]},{"name":"DBLITERALINFO","features":[303,579]},{"name":"DBLITERALINFO","features":[303,579]},{"name":"DBLITERAL_BINARY_LITERAL","features":[579]},{"name":"DBLITERAL_CATALOG_NAME","features":[579]},{"name":"DBLITERAL_CATALOG_SEPARATOR","features":[579]},{"name":"DBLITERAL_CHAR_LITERAL","features":[579]},{"name":"DBLITERAL_COLUMN_ALIAS","features":[579]},{"name":"DBLITERAL_COLUMN_NAME","features":[579]},{"name":"DBLITERAL_CORRELATION_NAME","features":[579]},{"name":"DBLITERAL_CUBE_NAME","features":[579]},{"name":"DBLITERAL_CURSOR_NAME","features":[579]},{"name":"DBLITERAL_DIMENSION_NAME","features":[579]},{"name":"DBLITERAL_ESCAPE_PERCENT","features":[579]},{"name":"DBLITERAL_ESCAPE_PERCENT_SUFFIX","features":[579]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE","features":[579]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE_SUFFIX","features":[579]},{"name":"DBLITERAL_HIERARCHY_NAME","features":[579]},{"name":"DBLITERAL_INDEX_NAME","features":[579]},{"name":"DBLITERAL_INVALID","features":[579]},{"name":"DBLITERAL_LEVEL_NAME","features":[579]},{"name":"DBLITERAL_LIKE_PERCENT","features":[579]},{"name":"DBLITERAL_LIKE_UNDERSCORE","features":[579]},{"name":"DBLITERAL_MEMBER_NAME","features":[579]},{"name":"DBLITERAL_PROCEDURE_NAME","features":[579]},{"name":"DBLITERAL_PROPERTY_NAME","features":[579]},{"name":"DBLITERAL_QUOTE","features":[579]},{"name":"DBLITERAL_QUOTE_SUFFIX","features":[579]},{"name":"DBLITERAL_SCHEMA_NAME","features":[579]},{"name":"DBLITERAL_SCHEMA_SEPARATOR","features":[579]},{"name":"DBLITERAL_TABLE_NAME","features":[579]},{"name":"DBLITERAL_TEXT_COMMAND","features":[579]},{"name":"DBLITERAL_USER_NAME","features":[579]},{"name":"DBLITERAL_VIEW_NAME","features":[579]},{"name":"DBMATCHTYPEENUM","features":[579]},{"name":"DBMATCHTYPE_FULL","features":[579]},{"name":"DBMATCHTYPE_NONE","features":[579]},{"name":"DBMATCHTYPE_PARTIAL","features":[579]},{"name":"DBMAXCHAR","features":[579]},{"name":"DBMEMOWNERENUM","features":[579]},{"name":"DBMEMOWNER_CLIENTOWNED","features":[579]},{"name":"DBMEMOWNER_PROVIDEROWNED","features":[579]},{"name":"DBMONEY","features":[579]},{"name":"DBMOVEFLAGSENUM","features":[579]},{"name":"DBMOVE_ALLOW_EMULATION","features":[579]},{"name":"DBMOVE_ASYNC","features":[579]},{"name":"DBMOVE_ATOMIC","features":[579]},{"name":"DBMOVE_DONT_UPDATE_LINKS","features":[579]},{"name":"DBMOVE_REPLACE_EXISTING","features":[579]},{"name":"DBOBJECT","features":[579]},{"name":"DBOBJECT","features":[579]},{"name":"DBPARAMBINDINFO","features":[579]},{"name":"DBPARAMBINDINFO","features":[579]},{"name":"DBPARAMFLAGSENUM","features":[579]},{"name":"DBPARAMFLAGSENUM20","features":[579]},{"name":"DBPARAMFLAGS_ISINPUT","features":[579]},{"name":"DBPARAMFLAGS_ISLONG","features":[579]},{"name":"DBPARAMFLAGS_ISNULLABLE","features":[579]},{"name":"DBPARAMFLAGS_ISOUTPUT","features":[579]},{"name":"DBPARAMFLAGS_ISSIGNED","features":[579]},{"name":"DBPARAMFLAGS_SCALEISNEGATIVE","features":[579]},{"name":"DBPARAMINFO","features":[354,579]},{"name":"DBPARAMINFO","features":[354,579]},{"name":"DBPARAMIOENUM","features":[579]},{"name":"DBPARAMIO_INPUT","features":[579]},{"name":"DBPARAMIO_NOTPARAM","features":[579]},{"name":"DBPARAMIO_OUTPUT","features":[579]},{"name":"DBPARAMS","features":[579]},{"name":"DBPARAMS","features":[579]},{"name":"DBPARAMTYPE_INPUT","features":[579]},{"name":"DBPARAMTYPE_INPUTOUTPUT","features":[579]},{"name":"DBPARAMTYPE_OUTPUT","features":[579]},{"name":"DBPARAMTYPE_RETURNVALUE","features":[579]},{"name":"DBPARTENUM","features":[579]},{"name":"DBPART_INVALID","features":[579]},{"name":"DBPART_LENGTH","features":[579]},{"name":"DBPART_STATUS","features":[579]},{"name":"DBPART_VALUE","features":[579]},{"name":"DBPENDINGSTATUSENUM","features":[579]},{"name":"DBPENDINGSTATUS_CHANGED","features":[579]},{"name":"DBPENDINGSTATUS_DELETED","features":[579]},{"name":"DBPENDINGSTATUS_INVALIDROW","features":[579]},{"name":"DBPENDINGSTATUS_NEW","features":[579]},{"name":"DBPENDINGSTATUS_UNCHANGED","features":[579]},{"name":"DBPOSITIONFLAGSENUM","features":[579]},{"name":"DBPOSITION_BOF","features":[579]},{"name":"DBPOSITION_EOF","features":[579]},{"name":"DBPOSITION_NOROW","features":[579]},{"name":"DBPOSITION_OK","features":[579]},{"name":"DBPROMPTOPTIONSENUM","features":[579]},{"name":"DBPROMPTOPTIONS_BROWSEONLY","features":[579]},{"name":"DBPROMPTOPTIONS_DISABLESAVEPASSWORD","features":[579]},{"name":"DBPROMPTOPTIONS_DISABLE_PROVIDER_SELECTION","features":[579]},{"name":"DBPROMPTOPTIONS_NONE","features":[579]},{"name":"DBPROMPTOPTIONS_PROPERTYSHEET","features":[579]},{"name":"DBPROMPTOPTIONS_WIZARDSHEET","features":[579]},{"name":"DBPROMPT_COMPLETE","features":[579]},{"name":"DBPROMPT_COMPLETEREQUIRED","features":[579]},{"name":"DBPROMPT_NOPROMPT","features":[579]},{"name":"DBPROMPT_PROMPT","features":[579]},{"name":"DBPROP","features":[507,579]},{"name":"DBPROP","features":[507,579]},{"name":"DBPROPENUM","features":[579]},{"name":"DBPROPENUM15","features":[579]},{"name":"DBPROPENUM20","features":[579]},{"name":"DBPROPENUM21","features":[579]},{"name":"DBPROPENUM25","features":[579]},{"name":"DBPROPENUM25_DEPRECATED","features":[579]},{"name":"DBPROPENUM26","features":[579]},{"name":"DBPROPENUMDEPRECATED","features":[579]},{"name":"DBPROPFLAGSENUM","features":[579]},{"name":"DBPROPFLAGSENUM21","features":[579]},{"name":"DBPROPFLAGSENUM25","features":[579]},{"name":"DBPROPFLAGSENUM26","features":[579]},{"name":"DBPROPFLAGS_COLUMN","features":[579]},{"name":"DBPROPFLAGS_COLUMNOK","features":[579]},{"name":"DBPROPFLAGS_DATASOURCE","features":[579]},{"name":"DBPROPFLAGS_DATASOURCECREATE","features":[579]},{"name":"DBPROPFLAGS_DATASOURCEINFO","features":[579]},{"name":"DBPROPFLAGS_DBINIT","features":[579]},{"name":"DBPROPFLAGS_INDEX","features":[579]},{"name":"DBPROPFLAGS_NOTSUPPORTED","features":[579]},{"name":"DBPROPFLAGS_PERSIST","features":[579]},{"name":"DBPROPFLAGS_READ","features":[579]},{"name":"DBPROPFLAGS_REQUIRED","features":[579]},{"name":"DBPROPFLAGS_ROWSET","features":[579]},{"name":"DBPROPFLAGS_SESSION","features":[579]},{"name":"DBPROPFLAGS_STREAM","features":[579]},{"name":"DBPROPFLAGS_TABLE","features":[579]},{"name":"DBPROPFLAGS_TRUSTEE","features":[579]},{"name":"DBPROPFLAGS_VIEW","features":[579]},{"name":"DBPROPFLAGS_WRITE","features":[579]},{"name":"DBPROPIDSET","features":[579]},{"name":"DBPROPIDSET","features":[579]},{"name":"DBPROPINFO","features":[579,378]},{"name":"DBPROPINFO","features":[579,378]},{"name":"DBPROPINFOSET","features":[579,378]},{"name":"DBPROPINFOSET","features":[579,378]},{"name":"DBPROPOPTIONSENUM","features":[579]},{"name":"DBPROPOPTIONS_OPTIONAL","features":[579]},{"name":"DBPROPOPTIONS_REQUIRED","features":[579]},{"name":"DBPROPOPTIONS_SETIFCHEAP","features":[579]},{"name":"DBPROPSET","features":[507,579]},{"name":"DBPROPSET","features":[507,579]},{"name":"DBPROPSET_MSDAORA8_ROWSET","features":[579]},{"name":"DBPROPSET_MSDAORA_ROWSET","features":[579]},{"name":"DBPROPSET_MSDSDBINIT","features":[579]},{"name":"DBPROPSET_MSDSSESSION","features":[579]},{"name":"DBPROPSET_PERSIST","features":[579]},{"name":"DBPROPSET_PROVIDERCONNATTR","features":[579]},{"name":"DBPROPSET_PROVIDERDATASOURCEINFO","features":[579]},{"name":"DBPROPSET_PROVIDERDBINIT","features":[579]},{"name":"DBPROPSET_PROVIDERROWSET","features":[579]},{"name":"DBPROPSET_PROVIDERSTMTATTR","features":[579]},{"name":"DBPROPSET_SQLSERVERCOLUMN","features":[579]},{"name":"DBPROPSET_SQLSERVERDATASOURCE","features":[579]},{"name":"DBPROPSET_SQLSERVERDATASOURCEINFO","features":[579]},{"name":"DBPROPSET_SQLSERVERDBINIT","features":[579]},{"name":"DBPROPSET_SQLSERVERROWSET","features":[579]},{"name":"DBPROPSET_SQLSERVERSESSION","features":[579]},{"name":"DBPROPSET_SQLSERVERSTREAM","features":[579]},{"name":"DBPROPSTATUSENUM","features":[579]},{"name":"DBPROPSTATUSENUM21","features":[579]},{"name":"DBPROPSTATUS_BADCOLUMN","features":[579]},{"name":"DBPROPSTATUS_BADOPTION","features":[579]},{"name":"DBPROPSTATUS_BADVALUE","features":[579]},{"name":"DBPROPSTATUS_CONFLICTING","features":[579]},{"name":"DBPROPSTATUS_NOTALLSETTABLE","features":[579]},{"name":"DBPROPSTATUS_NOTAVAILABLE","features":[579]},{"name":"DBPROPSTATUS_NOTSET","features":[579]},{"name":"DBPROPSTATUS_NOTSETTABLE","features":[579]},{"name":"DBPROPSTATUS_NOTSUPPORTED","features":[579]},{"name":"DBPROPSTATUS_OK","features":[579]},{"name":"DBPROPVAL_AO_RANDOM","features":[579]},{"name":"DBPROPVAL_AO_SEQUENTIAL","features":[579]},{"name":"DBPROPVAL_AO_SEQUENTIALSTORAGEOBJECTS","features":[579]},{"name":"DBPROPVAL_ASYNCH_BACKGROUNDPOPULATION","features":[579]},{"name":"DBPROPVAL_ASYNCH_INITIALIZE","features":[579]},{"name":"DBPROPVAL_ASYNCH_POPULATEONDEMAND","features":[579]},{"name":"DBPROPVAL_ASYNCH_PREPOPULATE","features":[579]},{"name":"DBPROPVAL_ASYNCH_RANDOMPOPULATION","features":[579]},{"name":"DBPROPVAL_ASYNCH_SEQUENTIALPOPULATION","features":[579]},{"name":"DBPROPVAL_BD_INTRANSACTION","features":[579]},{"name":"DBPROPVAL_BD_REORGANIZATION","features":[579]},{"name":"DBPROPVAL_BD_ROWSET","features":[579]},{"name":"DBPROPVAL_BD_XTRANSACTION","features":[579]},{"name":"DBPROPVAL_BI_CROSSROWSET","features":[579]},{"name":"DBPROPVAL_BMK_KEY","features":[579]},{"name":"DBPROPVAL_BMK_NUMERIC","features":[579]},{"name":"DBPROPVAL_BO_NOINDEXUPDATE","features":[579]},{"name":"DBPROPVAL_BO_NOLOG","features":[579]},{"name":"DBPROPVAL_BO_REFINTEGRITY","features":[579]},{"name":"DBPROPVAL_CB_DELETE","features":[579]},{"name":"DBPROPVAL_CB_NON_NULL","features":[579]},{"name":"DBPROPVAL_CB_NULL","features":[579]},{"name":"DBPROPVAL_CB_PRESERVE","features":[579]},{"name":"DBPROPVAL_CD_NOTNULL","features":[579]},{"name":"DBPROPVAL_CL_END","features":[579]},{"name":"DBPROPVAL_CL_START","features":[579]},{"name":"DBPROPVAL_CM_TRANSACTIONS","features":[579]},{"name":"DBPROPVAL_CO_BEGINSWITH","features":[579]},{"name":"DBPROPVAL_CO_CASEINSENSITIVE","features":[579]},{"name":"DBPROPVAL_CO_CASESENSITIVE","features":[579]},{"name":"DBPROPVAL_CO_CONTAINS","features":[579]},{"name":"DBPROPVAL_CO_EQUALITY","features":[579]},{"name":"DBPROPVAL_CO_STRING","features":[579]},{"name":"DBPROPVAL_CS_COMMUNICATIONFAILURE","features":[579]},{"name":"DBPROPVAL_CS_INITIALIZED","features":[579]},{"name":"DBPROPVAL_CS_UNINITIALIZED","features":[579]},{"name":"DBPROPVAL_CU_DML_STATEMENTS","features":[579]},{"name":"DBPROPVAL_CU_INDEX_DEFINITION","features":[579]},{"name":"DBPROPVAL_CU_PRIVILEGE_DEFINITION","features":[579]},{"name":"DBPROPVAL_CU_TABLE_DEFINITION","features":[579]},{"name":"DBPROPVAL_DF_INITIALLY_DEFERRED","features":[579]},{"name":"DBPROPVAL_DF_INITIALLY_IMMEDIATE","features":[579]},{"name":"DBPROPVAL_DF_NOT_DEFERRABLE","features":[579]},{"name":"DBPROPVAL_DST_DOCSOURCE","features":[579]},{"name":"DBPROPVAL_DST_MDP","features":[579]},{"name":"DBPROPVAL_DST_TDP","features":[579]},{"name":"DBPROPVAL_DST_TDPANDMDP","features":[579]},{"name":"DBPROPVAL_FU_CATALOG","features":[579]},{"name":"DBPROPVAL_FU_COLUMN","features":[579]},{"name":"DBPROPVAL_FU_NOT_SUPPORTED","features":[579]},{"name":"DBPROPVAL_FU_TABLE","features":[579]},{"name":"DBPROPVAL_GB_COLLATE","features":[579]},{"name":"DBPROPVAL_GB_CONTAINS_SELECT","features":[579]},{"name":"DBPROPVAL_GB_EQUALS_SELECT","features":[579]},{"name":"DBPROPVAL_GB_NOT_SUPPORTED","features":[579]},{"name":"DBPROPVAL_GB_NO_RELATION","features":[579]},{"name":"DBPROPVAL_GU_NOTSUPPORTED","features":[579]},{"name":"DBPROPVAL_GU_SUFFIX","features":[579]},{"name":"DBPROPVAL_HT_DIFFERENT_CATALOGS","features":[579]},{"name":"DBPROPVAL_HT_DIFFERENT_PROVIDERS","features":[579]},{"name":"DBPROPVAL_IC_LOWER","features":[579]},{"name":"DBPROPVAL_IC_MIXED","features":[579]},{"name":"DBPROPVAL_IC_SENSITIVE","features":[579]},{"name":"DBPROPVAL_IC_UPPER","features":[579]},{"name":"DBPROPVAL_IN_ALLOWNULL","features":[579]},{"name":"DBPROPVAL_IN_DISALLOWNULL","features":[579]},{"name":"DBPROPVAL_IN_IGNOREANYNULL","features":[579]},{"name":"DBPROPVAL_IN_IGNORENULL","features":[579]},{"name":"DBPROPVAL_IT_BTREE","features":[579]},{"name":"DBPROPVAL_IT_CONTENT","features":[579]},{"name":"DBPROPVAL_IT_HASH","features":[579]},{"name":"DBPROPVAL_IT_OTHER","features":[579]},{"name":"DBPROPVAL_LM_INTENT","features":[579]},{"name":"DBPROPVAL_LM_NONE","features":[579]},{"name":"DBPROPVAL_LM_READ","features":[579]},{"name":"DBPROPVAL_LM_RITE","features":[579]},{"name":"DBPROPVAL_LM_SINGLEROW","features":[579]},{"name":"DBPROPVAL_MR_CONCURRENT","features":[579]},{"name":"DBPROPVAL_MR_NOTSUPPORTED","features":[579]},{"name":"DBPROPVAL_MR_SUPPORTED","features":[579]},{"name":"DBPROPVAL_NC_END","features":[579]},{"name":"DBPROPVAL_NC_HIGH","features":[579]},{"name":"DBPROPVAL_NC_LOW","features":[579]},{"name":"DBPROPVAL_NC_START","features":[579]},{"name":"DBPROPVAL_NP_ABOUTTODO","features":[579]},{"name":"DBPROPVAL_NP_DIDEVENT","features":[579]},{"name":"DBPROPVAL_NP_FAILEDTODO","features":[579]},{"name":"DBPROPVAL_NP_OKTODO","features":[579]},{"name":"DBPROPVAL_NP_SYNCHAFTER","features":[579]},{"name":"DBPROPVAL_NT_MULTIPLEROWS","features":[579]},{"name":"DBPROPVAL_NT_SINGLEROW","features":[579]},{"name":"DBPROPVAL_OA_ATEXECUTE","features":[579]},{"name":"DBPROPVAL_OA_ATROWRELEASE","features":[579]},{"name":"DBPROPVAL_OA_NOTSUPPORTED","features":[579]},{"name":"DBPROPVAL_OO_BLOB","features":[579]},{"name":"DBPROPVAL_OO_DIRECTBIND","features":[579]},{"name":"DBPROPVAL_OO_IPERSIST","features":[579]},{"name":"DBPROPVAL_OO_ROWOBJECT","features":[579]},{"name":"DBPROPVAL_OO_SCOPED","features":[579]},{"name":"DBPROPVAL_OO_SINGLETON","features":[579]},{"name":"DBPROPVAL_OP_EQUAL","features":[579]},{"name":"DBPROPVAL_OP_RELATIVE","features":[579]},{"name":"DBPROPVAL_OP_STRING","features":[579]},{"name":"DBPROPVAL_ORS_HISTOGRAM","features":[579]},{"name":"DBPROPVAL_ORS_INDEX","features":[579]},{"name":"DBPROPVAL_ORS_INTEGRATEDINDEX","features":[579]},{"name":"DBPROPVAL_ORS_STOREDPROC","features":[579]},{"name":"DBPROPVAL_ORS_TABLE","features":[579]},{"name":"DBPROPVAL_OS_AGR_AFTERSESSION","features":[579]},{"name":"DBPROPVAL_OS_CLIENTCURSOR","features":[579]},{"name":"DBPROPVAL_OS_DISABLEALL","features":[579]},{"name":"DBPROPVAL_OS_ENABLEALL","features":[579]},{"name":"DBPROPVAL_OS_RESOURCEPOOLING","features":[579]},{"name":"DBPROPVAL_OS_TXNENLISTMENT","features":[579]},{"name":"DBPROPVAL_PERSIST_ADTG","features":[579]},{"name":"DBPROPVAL_PERSIST_XML","features":[579]},{"name":"DBPROPVAL_PT_GUID","features":[579]},{"name":"DBPROPVAL_PT_GUID_NAME","features":[579]},{"name":"DBPROPVAL_PT_GUID_PROPID","features":[579]},{"name":"DBPROPVAL_PT_NAME","features":[579]},{"name":"DBPROPVAL_PT_PGUID_NAME","features":[579]},{"name":"DBPROPVAL_PT_PGUID_PROPID","features":[579]},{"name":"DBPROPVAL_PT_PROPID","features":[579]},{"name":"DBPROPVAL_RD_RESETALL","features":[579]},{"name":"DBPROPVAL_RT_APTMTTHREAD","features":[579]},{"name":"DBPROPVAL_RT_FREETHREAD","features":[579]},{"name":"DBPROPVAL_RT_SINGLETHREAD","features":[579]},{"name":"DBPROPVAL_SQL_ANSI89_IEF","features":[579]},{"name":"DBPROPVAL_SQL_ANSI92_ENTRY","features":[579]},{"name":"DBPROPVAL_SQL_ANSI92_FULL","features":[579]},{"name":"DBPROPVAL_SQL_ANSI92_INTERMEDIATE","features":[579]},{"name":"DBPROPVAL_SQL_ESCAPECLAUSES","features":[579]},{"name":"DBPROPVAL_SQL_FIPS_TRANSITIONAL","features":[579]},{"name":"DBPROPVAL_SQL_NONE","features":[579]},{"name":"DBPROPVAL_SQL_ODBC_CORE","features":[579]},{"name":"DBPROPVAL_SQL_ODBC_EXTENDED","features":[579]},{"name":"DBPROPVAL_SQL_ODBC_MINIMUM","features":[579]},{"name":"DBPROPVAL_SQL_SUBMINIMUM","features":[579]},{"name":"DBPROPVAL_SQ_COMPARISON","features":[579]},{"name":"DBPROPVAL_SQ_CORRELATEDSUBQUERIES","features":[579]},{"name":"DBPROPVAL_SQ_EXISTS","features":[579]},{"name":"DBPROPVAL_SQ_IN","features":[579]},{"name":"DBPROPVAL_SQ_QUANTIFIED","features":[579]},{"name":"DBPROPVAL_SQ_TABLE","features":[579]},{"name":"DBPROPVAL_SS_ILOCKBYTES","features":[579]},{"name":"DBPROPVAL_SS_ISEQUENTIALSTREAM","features":[579]},{"name":"DBPROPVAL_SS_ISTORAGE","features":[579]},{"name":"DBPROPVAL_SS_ISTREAM","features":[579]},{"name":"DBPROPVAL_STGM_CONVERT","features":[579]},{"name":"DBPROPVAL_STGM_DELETEONRELEASE","features":[579]},{"name":"DBPROPVAL_STGM_DIRECT","features":[579]},{"name":"DBPROPVAL_STGM_FAILIFTHERE","features":[579]},{"name":"DBPROPVAL_STGM_PRIORITY","features":[579]},{"name":"DBPROPVAL_STGM_TRANSACTED","features":[579]},{"name":"DBPROPVAL_SU_DML_STATEMENTS","features":[579]},{"name":"DBPROPVAL_SU_INDEX_DEFINITION","features":[579]},{"name":"DBPROPVAL_SU_PRIVILEGE_DEFINITION","features":[579]},{"name":"DBPROPVAL_SU_TABLE_DEFINITION","features":[579]},{"name":"DBPROPVAL_TC_ALL","features":[579]},{"name":"DBPROPVAL_TC_DDL_COMMIT","features":[579]},{"name":"DBPROPVAL_TC_DDL_IGNORE","features":[579]},{"name":"DBPROPVAL_TC_DDL_LOCK","features":[579]},{"name":"DBPROPVAL_TC_DML","features":[579]},{"name":"DBPROPVAL_TC_NONE","features":[579]},{"name":"DBPROPVAL_TI_BROWSE","features":[579]},{"name":"DBPROPVAL_TI_CHAOS","features":[579]},{"name":"DBPROPVAL_TI_CURSORSTABILITY","features":[579]},{"name":"DBPROPVAL_TI_ISOLATED","features":[579]},{"name":"DBPROPVAL_TI_READCOMMITTED","features":[579]},{"name":"DBPROPVAL_TI_READUNCOMMITTED","features":[579]},{"name":"DBPROPVAL_TI_REPEATABLEREAD","features":[579]},{"name":"DBPROPVAL_TI_SERIALIZABLE","features":[579]},{"name":"DBPROPVAL_TR_ABORT","features":[579]},{"name":"DBPROPVAL_TR_ABORT_DC","features":[579]},{"name":"DBPROPVAL_TR_ABORT_NO","features":[579]},{"name":"DBPROPVAL_TR_BOTH","features":[579]},{"name":"DBPROPVAL_TR_COMMIT","features":[579]},{"name":"DBPROPVAL_TR_COMMIT_DC","features":[579]},{"name":"DBPROPVAL_TR_COMMIT_NO","features":[579]},{"name":"DBPROPVAL_TR_DONTCARE","features":[579]},{"name":"DBPROPVAL_TR_NONE","features":[579]},{"name":"DBPROPVAL_TR_OPTIMISTIC","features":[579]},{"name":"DBPROPVAL_TS_CARDINALITY","features":[579]},{"name":"DBPROPVAL_TS_HISTOGRAM","features":[579]},{"name":"DBPROPVAL_UP_CHANGE","features":[579]},{"name":"DBPROPVAL_UP_DELETE","features":[579]},{"name":"DBPROPVAL_UP_INSERT","features":[579]},{"name":"DBPROP_ABORTPRESERVE","features":[579]},{"name":"DBPROP_ACCESSORDER","features":[579]},{"name":"DBPROP_ACTIVESESSIONS","features":[579]},{"name":"DBPROP_ALTERCOLUMN","features":[579]},{"name":"DBPROP_APPENDONLY","features":[579]},{"name":"DBPROP_ASYNCTXNABORT","features":[579]},{"name":"DBPROP_ASYNCTXNCOMMIT","features":[579]},{"name":"DBPROP_AUTH_CACHE_AUTHINFO","features":[579]},{"name":"DBPROP_AUTH_ENCRYPT_PASSWORD","features":[579]},{"name":"DBPROP_AUTH_INTEGRATED","features":[579]},{"name":"DBPROP_AUTH_MASK_PASSWORD","features":[579]},{"name":"DBPROP_AUTH_PASSWORD","features":[579]},{"name":"DBPROP_AUTH_PERSIST_ENCRYPTED","features":[579]},{"name":"DBPROP_AUTH_PERSIST_SENSITIVE_AUTHINFO","features":[579]},{"name":"DBPROP_AUTH_USERID","features":[579]},{"name":"DBPROP_BLOCKINGSTORAGEOBJECTS","features":[579]},{"name":"DBPROP_BOOKMARKINFO","features":[579]},{"name":"DBPROP_BOOKMARKS","features":[579]},{"name":"DBPROP_BOOKMARKSKIPPED","features":[579]},{"name":"DBPROP_BOOKMARKTYPE","features":[579]},{"name":"DBPROP_BYREFACCESSORS","features":[579]},{"name":"DBPROP_CACHEDEFERRED","features":[579]},{"name":"DBPROP_CANFETCHBACKWARDS","features":[579]},{"name":"DBPROP_CANHOLDROWS","features":[579]},{"name":"DBPROP_CANSCROLLBACKWARDS","features":[579]},{"name":"DBPROP_CATALOGLOCATION","features":[579]},{"name":"DBPROP_CATALOGTERM","features":[579]},{"name":"DBPROP_CATALOGUSAGE","features":[579]},{"name":"DBPROP_CHANGEINSERTEDROWS","features":[579]},{"name":"DBPROP_CLIENTCURSOR","features":[579]},{"name":"DBPROP_COLUMNDEFINITION","features":[579]},{"name":"DBPROP_COLUMNLCID","features":[579]},{"name":"DBPROP_COLUMNRESTRICT","features":[579]},{"name":"DBPROP_COL_AUTOINCREMENT","features":[579]},{"name":"DBPROP_COL_DEFAULT","features":[579]},{"name":"DBPROP_COL_DESCRIPTION","features":[579]},{"name":"DBPROP_COL_FIXEDLENGTH","features":[579]},{"name":"DBPROP_COL_INCREMENT","features":[579]},{"name":"DBPROP_COL_ISLONG","features":[579]},{"name":"DBPROP_COL_NULLABLE","features":[579]},{"name":"DBPROP_COL_PRIMARYKEY","features":[579]},{"name":"DBPROP_COL_SEED","features":[579]},{"name":"DBPROP_COL_UNIQUE","features":[579]},{"name":"DBPROP_COMMANDTIMEOUT","features":[579]},{"name":"DBPROP_COMMITPRESERVE","features":[579]},{"name":"DBPROP_COMSERVICES","features":[579]},{"name":"DBPROP_CONCATNULLBEHAVIOR","features":[579]},{"name":"DBPROP_CONNECTIONSTATUS","features":[579]},{"name":"DBPROP_CURRENTCATALOG","features":[579]},{"name":"DBPROP_DATASOURCENAME","features":[579]},{"name":"DBPROP_DATASOURCEREADONLY","features":[579]},{"name":"DBPROP_DATASOURCE_TYPE","features":[579]},{"name":"DBPROP_DBMSNAME","features":[579]},{"name":"DBPROP_DBMSVER","features":[579]},{"name":"DBPROP_DEFERRED","features":[579]},{"name":"DBPROP_DELAYSTORAGEOBJECTS","features":[579]},{"name":"DBPROP_DSOTHREADMODEL","features":[579]},{"name":"DBPROP_FILTERCOMPAREOPS","features":[579]},{"name":"DBPROP_FILTEROPS","features":[579]},{"name":"DBPROP_FINDCOMPAREOPS","features":[579]},{"name":"DBPROP_GENERATEURL","features":[579]},{"name":"DBPROP_GROUPBY","features":[579]},{"name":"DBPROP_HCHAPTER","features":[579]},{"name":"DBPROP_HETEROGENEOUSTABLES","features":[579]},{"name":"DBPROP_HIDDENCOLUMNS","features":[579]},{"name":"DBPROP_IAccessor","features":[579]},{"name":"DBPROP_IBindResource","features":[579]},{"name":"DBPROP_IChapteredRowset","features":[579]},{"name":"DBPROP_IColumnsInfo","features":[579]},{"name":"DBPROP_IColumnsInfo2","features":[579]},{"name":"DBPROP_IColumnsRowset","features":[579]},{"name":"DBPROP_ICommandCost","features":[579]},{"name":"DBPROP_ICommandTree","features":[579]},{"name":"DBPROP_ICommandValidate","features":[579]},{"name":"DBPROP_IConnectionPointContainer","features":[579]},{"name":"DBPROP_IConvertType","features":[579]},{"name":"DBPROP_ICreateRow","features":[579]},{"name":"DBPROP_IDBAsynchStatus","features":[579]},{"name":"DBPROP_IDBBinderProperties","features":[579]},{"name":"DBPROP_IDBSchemaCommand","features":[579]},{"name":"DBPROP_IDENTIFIERCASE","features":[579]},{"name":"DBPROP_IGetRow","features":[579]},{"name":"DBPROP_IGetSession","features":[579]},{"name":"DBPROP_IGetSourceRow","features":[579]},{"name":"DBPROP_ILockBytes","features":[579]},{"name":"DBPROP_IMMOBILEROWS","features":[579]},{"name":"DBPROP_IMultipleResults","features":[579]},{"name":"DBPROP_INDEX_AUTOUPDATE","features":[579]},{"name":"DBPROP_INDEX_CLUSTERED","features":[579]},{"name":"DBPROP_INDEX_FILLFACTOR","features":[579]},{"name":"DBPROP_INDEX_INITIALSIZE","features":[579]},{"name":"DBPROP_INDEX_NULLCOLLATION","features":[579]},{"name":"DBPROP_INDEX_NULLS","features":[579]},{"name":"DBPROP_INDEX_PRIMARYKEY","features":[579]},{"name":"DBPROP_INDEX_SORTBOOKMARKS","features":[579]},{"name":"DBPROP_INDEX_TEMPINDEX","features":[579]},{"name":"DBPROP_INDEX_TYPE","features":[579]},{"name":"DBPROP_INDEX_UNIQUE","features":[579]},{"name":"DBPROP_INIT_ASYNCH","features":[579]},{"name":"DBPROP_INIT_BINDFLAGS","features":[579]},{"name":"DBPROP_INIT_CATALOG","features":[579]},{"name":"DBPROP_INIT_DATASOURCE","features":[579]},{"name":"DBPROP_INIT_GENERALTIMEOUT","features":[579]},{"name":"DBPROP_INIT_HWND","features":[579]},{"name":"DBPROP_INIT_IMPERSONATION_LEVEL","features":[579]},{"name":"DBPROP_INIT_LCID","features":[579]},{"name":"DBPROP_INIT_LOCATION","features":[579]},{"name":"DBPROP_INIT_LOCKOWNER","features":[579]},{"name":"DBPROP_INIT_MODE","features":[579]},{"name":"DBPROP_INIT_OLEDBSERVICES","features":[579]},{"name":"DBPROP_INIT_PROMPT","features":[579]},{"name":"DBPROP_INIT_PROTECTION_LEVEL","features":[579]},{"name":"DBPROP_INIT_PROVIDERSTRING","features":[579]},{"name":"DBPROP_INIT_TIMEOUT","features":[579]},{"name":"DBPROP_INTERLEAVEDROWS","features":[579]},{"name":"DBPROP_IParentRowset","features":[579]},{"name":"DBPROP_IProvideMoniker","features":[579]},{"name":"DBPROP_IQuery","features":[579]},{"name":"DBPROP_IReadData","features":[579]},{"name":"DBPROP_IRegisterProvider","features":[579]},{"name":"DBPROP_IRow","features":[579]},{"name":"DBPROP_IRowChange","features":[579]},{"name":"DBPROP_IRowSchemaChange","features":[579]},{"name":"DBPROP_IRowset","features":[579]},{"name":"DBPROP_IRowsetAsynch","features":[579]},{"name":"DBPROP_IRowsetBookmark","features":[579]},{"name":"DBPROP_IRowsetChange","features":[579]},{"name":"DBPROP_IRowsetCopyRows","features":[579]},{"name":"DBPROP_IRowsetCurrentIndex","features":[579]},{"name":"DBPROP_IRowsetExactScroll","features":[579]},{"name":"DBPROP_IRowsetFind","features":[579]},{"name":"DBPROP_IRowsetIdentity","features":[579]},{"name":"DBPROP_IRowsetIndex","features":[579]},{"name":"DBPROP_IRowsetInfo","features":[579]},{"name":"DBPROP_IRowsetKeys","features":[579]},{"name":"DBPROP_IRowsetLocate","features":[579]},{"name":"DBPROP_IRowsetNewRowAfter","features":[579]},{"name":"DBPROP_IRowsetNextRowset","features":[579]},{"name":"DBPROP_IRowsetRefresh","features":[579]},{"name":"DBPROP_IRowsetResynch","features":[579]},{"name":"DBPROP_IRowsetScroll","features":[579]},{"name":"DBPROP_IRowsetUpdate","features":[579]},{"name":"DBPROP_IRowsetView","features":[579]},{"name":"DBPROP_IRowsetWatchAll","features":[579]},{"name":"DBPROP_IRowsetWatchNotify","features":[579]},{"name":"DBPROP_IRowsetWatchRegion","features":[579]},{"name":"DBPROP_IRowsetWithParameters","features":[579]},{"name":"DBPROP_IScopedOperations","features":[579]},{"name":"DBPROP_ISequentialStream","features":[579]},{"name":"DBPROP_IStorage","features":[579]},{"name":"DBPROP_IStream","features":[579]},{"name":"DBPROP_ISupportErrorInfo","features":[579]},{"name":"DBPROP_IViewChapter","features":[579]},{"name":"DBPROP_IViewFilter","features":[579]},{"name":"DBPROP_IViewRowset","features":[579]},{"name":"DBPROP_IViewSort","features":[579]},{"name":"DBPROP_LITERALBOOKMARKS","features":[579]},{"name":"DBPROP_LITERALIDENTITY","features":[579]},{"name":"DBPROP_LOCKMODE","features":[579]},{"name":"DBPROP_MAINTAINPROPS","features":[579]},{"name":"DBPROP_MARSHALLABLE","features":[579]},{"name":"DBPROP_MAXINDEXSIZE","features":[579]},{"name":"DBPROP_MAXOPENCHAPTERS","features":[579]},{"name":"DBPROP_MAXOPENROWS","features":[579]},{"name":"DBPROP_MAXORSINFILTER","features":[579]},{"name":"DBPROP_MAXPENDINGROWS","features":[579]},{"name":"DBPROP_MAXROWS","features":[579]},{"name":"DBPROP_MAXROWSIZE","features":[579]},{"name":"DBPROP_MAXROWSIZEINCLUDESBLOB","features":[579]},{"name":"DBPROP_MAXSORTCOLUMNS","features":[579]},{"name":"DBPROP_MAXTABLESINSELECT","features":[579]},{"name":"DBPROP_MAYWRITECOLUMN","features":[579]},{"name":"DBPROP_MEMORYUSAGE","features":[579]},{"name":"DBPROP_MSDAORA8_DETERMINEKEYCOLUMNS","features":[579]},{"name":"DBPROP_MSDAORA_DETERMINEKEYCOLUMNS","features":[579]},{"name":"DBPROP_MSDS_DBINIT_DATAPROVIDER","features":[579]},{"name":"DBPROP_MSDS_SESS_UNIQUENAMES","features":[579]},{"name":"DBPROP_MULTIPLECONNECTIONS","features":[579]},{"name":"DBPROP_MULTIPLEPARAMSETS","features":[579]},{"name":"DBPROP_MULTIPLERESULTS","features":[579]},{"name":"DBPROP_MULTIPLESTORAGEOBJECTS","features":[579]},{"name":"DBPROP_MULTITABLEUPDATE","features":[579]},{"name":"DBPROP_NOTIFICATIONGRANULARITY","features":[579]},{"name":"DBPROP_NOTIFICATIONPHASES","features":[579]},{"name":"DBPROP_NOTIFYCOLUMNSET","features":[579]},{"name":"DBPROP_NOTIFYROWDELETE","features":[579]},{"name":"DBPROP_NOTIFYROWFIRSTCHANGE","features":[579]},{"name":"DBPROP_NOTIFYROWINSERT","features":[579]},{"name":"DBPROP_NOTIFYROWRESYNCH","features":[579]},{"name":"DBPROP_NOTIFYROWSETCHANGED","features":[579]},{"name":"DBPROP_NOTIFYROWSETFETCHPOSITIONCHANGE","features":[579]},{"name":"DBPROP_NOTIFYROWSETRELEASE","features":[579]},{"name":"DBPROP_NOTIFYROWUNDOCHANGE","features":[579]},{"name":"DBPROP_NOTIFYROWUNDODELETE","features":[579]},{"name":"DBPROP_NOTIFYROWUNDOINSERT","features":[579]},{"name":"DBPROP_NOTIFYROWUPDATE","features":[579]},{"name":"DBPROP_NULLCOLLATION","features":[579]},{"name":"DBPROP_OLEOBJECTS","features":[579]},{"name":"DBPROP_OPENROWSETSUPPORT","features":[579]},{"name":"DBPROP_ORDERBYCOLUMNSINSELECT","features":[579]},{"name":"DBPROP_ORDEREDBOOKMARKS","features":[579]},{"name":"DBPROP_OTHERINSERT","features":[579]},{"name":"DBPROP_OTHERUPDATEDELETE","features":[579]},{"name":"DBPROP_OUTPUTENCODING","features":[579]},{"name":"DBPROP_OUTPUTPARAMETERAVAILABILITY","features":[579]},{"name":"DBPROP_OUTPUTSTREAM","features":[579]},{"name":"DBPROP_OWNINSERT","features":[579]},{"name":"DBPROP_OWNUPDATEDELETE","features":[579]},{"name":"DBPROP_PERSISTENTIDTYPE","features":[579]},{"name":"DBPROP_PREPAREABORTBEHAVIOR","features":[579]},{"name":"DBPROP_PREPARECOMMITBEHAVIOR","features":[579]},{"name":"DBPROP_PROCEDURETERM","features":[579]},{"name":"DBPROP_PROVIDERFRIENDLYNAME","features":[579]},{"name":"DBPROP_PROVIDERMEMORY","features":[579]},{"name":"DBPROP_PROVIDERNAME","features":[579]},{"name":"DBPROP_PROVIDEROLEDBVER","features":[579]},{"name":"DBPROP_PROVIDERVER","features":[579]},{"name":"DBPROP_PersistFormat","features":[579]},{"name":"DBPROP_PersistSchema","features":[579]},{"name":"DBPROP_QUICKRESTART","features":[579]},{"name":"DBPROP_QUOTEDIDENTIFIERCASE","features":[579]},{"name":"DBPROP_REENTRANTEVENTS","features":[579]},{"name":"DBPROP_REMOVEDELETED","features":[579]},{"name":"DBPROP_REPORTMULTIPLECHANGES","features":[579]},{"name":"DBPROP_RESETDATASOURCE","features":[579]},{"name":"DBPROP_RETURNPENDINGINSERTS","features":[579]},{"name":"DBPROP_ROWRESTRICT","features":[579]},{"name":"DBPROP_ROWSETCONVERSIONSONCOMMAND","features":[579]},{"name":"DBPROP_ROWSET_ASYNCH","features":[579]},{"name":"DBPROP_ROWTHREADMODEL","features":[579]},{"name":"DBPROP_ROW_BULKOPS","features":[579]},{"name":"DBPROP_SCHEMATERM","features":[579]},{"name":"DBPROP_SCHEMAUSAGE","features":[579]},{"name":"DBPROP_SERVERCURSOR","features":[579]},{"name":"DBPROP_SERVERDATAONINSERT","features":[579]},{"name":"DBPROP_SERVERNAME","features":[579]},{"name":"DBPROP_SESS_AUTOCOMMITISOLEVELS","features":[579]},{"name":"DBPROP_SKIPROWCOUNTRESULTS","features":[579]},{"name":"DBPROP_SORTONINDEX","features":[579]},{"name":"DBPROP_SQLSUPPORT","features":[579]},{"name":"DBPROP_STORAGEFLAGS","features":[579]},{"name":"DBPROP_STRONGIDENTITY","features":[579]},{"name":"DBPROP_STRUCTUREDSTORAGE","features":[579]},{"name":"DBPROP_SUBQUERIES","features":[579]},{"name":"DBPROP_SUPPORTEDTXNDDL","features":[579]},{"name":"DBPROP_SUPPORTEDTXNISOLEVELS","features":[579]},{"name":"DBPROP_SUPPORTEDTXNISORETAIN","features":[579]},{"name":"DBPROP_TABLESTATISTICS","features":[579]},{"name":"DBPROP_TABLETERM","features":[579]},{"name":"DBPROP_TBL_TEMPTABLE","features":[579]},{"name":"DBPROP_TRANSACTEDOBJECT","features":[579]},{"name":"DBPROP_TRUSTEE_AUTHENTICATION","features":[579]},{"name":"DBPROP_TRUSTEE_NEWAUTHENTICATION","features":[579]},{"name":"DBPROP_TRUSTEE_USERNAME","features":[579]},{"name":"DBPROP_UNIQUEROWS","features":[579]},{"name":"DBPROP_UPDATABILITY","features":[579]},{"name":"DBPROP_USERNAME","features":[579]},{"name":"DBPROP_Unicode","features":[579]},{"name":"DBQUERYGUID","features":[579]},{"name":"DBRANGEENUM","features":[579]},{"name":"DBRANGEENUM20","features":[579]},{"name":"DBRANGE_EXCLUDENULLS","features":[579]},{"name":"DBRANGE_EXCLUSIVEEND","features":[579]},{"name":"DBRANGE_EXCLUSIVESTART","features":[579]},{"name":"DBRANGE_INCLUSIVEEND","features":[579]},{"name":"DBRANGE_INCLUSIVESTART","features":[579]},{"name":"DBRANGE_MATCH","features":[579]},{"name":"DBRANGE_MATCH_N_MASK","features":[579]},{"name":"DBRANGE_MATCH_N_SHIFT","features":[579]},{"name":"DBRANGE_PREFIX","features":[579]},{"name":"DBREASONENUM","features":[579]},{"name":"DBREASONENUM15","features":[579]},{"name":"DBREASONENUM25","features":[579]},{"name":"DBREASON_COLUMN_RECALCULATED","features":[579]},{"name":"DBREASON_COLUMN_SET","features":[579]},{"name":"DBREASON_ROWPOSITION_CHANGED","features":[579]},{"name":"DBREASON_ROWPOSITION_CHAPTERCHANGED","features":[579]},{"name":"DBREASON_ROWPOSITION_CLEARED","features":[579]},{"name":"DBREASON_ROWSET_CHANGED","features":[579]},{"name":"DBREASON_ROWSET_FETCHPOSITIONCHANGE","features":[579]},{"name":"DBREASON_ROWSET_POPULATIONCOMPLETE","features":[579]},{"name":"DBREASON_ROWSET_POPULATIONSTOPPED","features":[579]},{"name":"DBREASON_ROWSET_RELEASE","features":[579]},{"name":"DBREASON_ROWSET_ROWSADDED","features":[579]},{"name":"DBREASON_ROW_ACTIVATE","features":[579]},{"name":"DBREASON_ROW_ASYNCHINSERT","features":[579]},{"name":"DBREASON_ROW_DELETE","features":[579]},{"name":"DBREASON_ROW_FIRSTCHANGE","features":[579]},{"name":"DBREASON_ROW_INSERT","features":[579]},{"name":"DBREASON_ROW_RELEASE","features":[579]},{"name":"DBREASON_ROW_RESYNCH","features":[579]},{"name":"DBREASON_ROW_UNDOCHANGE","features":[579]},{"name":"DBREASON_ROW_UNDODELETE","features":[579]},{"name":"DBREASON_ROW_UNDOINSERT","features":[579]},{"name":"DBREASON_ROW_UPDATE","features":[579]},{"name":"DBRESOURCEKINDENUM","features":[579]},{"name":"DBRESOURCE_CPU","features":[579]},{"name":"DBRESOURCE_DISK","features":[579]},{"name":"DBRESOURCE_INVALID","features":[579]},{"name":"DBRESOURCE_MEMORY","features":[579]},{"name":"DBRESOURCE_NETWORK","features":[579]},{"name":"DBRESOURCE_OTHER","features":[579]},{"name":"DBRESOURCE_RESPONSE","features":[579]},{"name":"DBRESOURCE_ROWS","features":[579]},{"name":"DBRESOURCE_TOTAL","features":[579]},{"name":"DBRESULTFLAGENUM","features":[579]},{"name":"DBRESULTFLAG_DEFAULT","features":[579]},{"name":"DBRESULTFLAG_ROW","features":[579]},{"name":"DBRESULTFLAG_ROWSET","features":[579]},{"name":"DBROWCHANGEKINDENUM","features":[579]},{"name":"DBROWCHANGEKIND_COUNT","features":[579]},{"name":"DBROWCHANGEKIND_DELETE","features":[579]},{"name":"DBROWCHANGEKIND_INSERT","features":[579]},{"name":"DBROWCHANGEKIND_UPDATE","features":[579]},{"name":"DBROWSTATUSENUM","features":[579]},{"name":"DBROWSTATUSENUM20","features":[579]},{"name":"DBROWSTATUS_E_CANCELED","features":[579]},{"name":"DBROWSTATUS_E_CANTRELEASE","features":[579]},{"name":"DBROWSTATUS_E_CONCURRENCYVIOLATION","features":[579]},{"name":"DBROWSTATUS_E_DELETED","features":[579]},{"name":"DBROWSTATUS_E_FAIL","features":[579]},{"name":"DBROWSTATUS_E_INTEGRITYVIOLATION","features":[579]},{"name":"DBROWSTATUS_E_INVALID","features":[579]},{"name":"DBROWSTATUS_E_LIMITREACHED","features":[579]},{"name":"DBROWSTATUS_E_MAXPENDCHANGESEXCEEDED","features":[579]},{"name":"DBROWSTATUS_E_NEWLYINSERTED","features":[579]},{"name":"DBROWSTATUS_E_OBJECTOPEN","features":[579]},{"name":"DBROWSTATUS_E_OUTOFMEMORY","features":[579]},{"name":"DBROWSTATUS_E_PENDINGINSERT","features":[579]},{"name":"DBROWSTATUS_E_PERMISSIONDENIED","features":[579]},{"name":"DBROWSTATUS_E_SCHEMAVIOLATION","features":[579]},{"name":"DBROWSTATUS_S_MULTIPLECHANGES","features":[579]},{"name":"DBROWSTATUS_S_NOCHANGE","features":[579]},{"name":"DBROWSTATUS_S_OK","features":[579]},{"name":"DBROWSTATUS_S_PENDINGCHANGES","features":[579]},{"name":"DBROWWATCHCHANGE","features":[579]},{"name":"DBROWWATCHCHANGE","features":[579]},{"name":"DBSCHEMA_LINKEDSERVERS","features":[579]},{"name":"DBSEEKENUM","features":[579]},{"name":"DBSEEK_AFTER","features":[579]},{"name":"DBSEEK_AFTEREQ","features":[579]},{"name":"DBSEEK_BEFORE","features":[579]},{"name":"DBSEEK_BEFOREEQ","features":[579]},{"name":"DBSEEK_FIRSTEQ","features":[579]},{"name":"DBSEEK_INVALID","features":[579]},{"name":"DBSEEK_LASTEQ","features":[579]},{"name":"DBSELFGUID","features":[579]},{"name":"DBSORTENUM","features":[579]},{"name":"DBSORT_ASCENDING","features":[579]},{"name":"DBSORT_DESCENDING","features":[579]},{"name":"DBSOURCETYPEENUM","features":[579]},{"name":"DBSOURCETYPEENUM20","features":[579]},{"name":"DBSOURCETYPEENUM25","features":[579]},{"name":"DBSOURCETYPE_BINDER","features":[579]},{"name":"DBSOURCETYPE_DATASOURCE","features":[579]},{"name":"DBSOURCETYPE_DATASOURCE_MDP","features":[579]},{"name":"DBSOURCETYPE_DATASOURCE_TDP","features":[579]},{"name":"DBSOURCETYPE_ENUMERATOR","features":[579]},{"name":"DBSTATUSENUM","features":[579]},{"name":"DBSTATUSENUM20","features":[579]},{"name":"DBSTATUSENUM21","features":[579]},{"name":"DBSTATUSENUM25","features":[579]},{"name":"DBSTATUSENUM26","features":[579]},{"name":"DBSTATUS_E_BADACCESSOR","features":[579]},{"name":"DBSTATUS_E_BADSTATUS","features":[579]},{"name":"DBSTATUS_E_CANCELED","features":[579]},{"name":"DBSTATUS_E_CANNOTCOMPLETE","features":[579]},{"name":"DBSTATUS_E_CANTCONVERTVALUE","features":[579]},{"name":"DBSTATUS_E_CANTCREATE","features":[579]},{"name":"DBSTATUS_E_DATAOVERFLOW","features":[579]},{"name":"DBSTATUS_E_DOESNOTEXIST","features":[579]},{"name":"DBSTATUS_E_INTEGRITYVIOLATION","features":[579]},{"name":"DBSTATUS_E_INVALIDURL","features":[579]},{"name":"DBSTATUS_E_NOTCOLLECTION","features":[579]},{"name":"DBSTATUS_E_OUTOFSPACE","features":[579]},{"name":"DBSTATUS_E_PERMISSIONDENIED","features":[579]},{"name":"DBSTATUS_E_READONLY","features":[579]},{"name":"DBSTATUS_E_RESOURCEEXISTS","features":[579]},{"name":"DBSTATUS_E_RESOURCELOCKED","features":[579]},{"name":"DBSTATUS_E_RESOURCEOUTOFSCOPE","features":[579]},{"name":"DBSTATUS_E_SCHEMAVIOLATION","features":[579]},{"name":"DBSTATUS_E_SIGNMISMATCH","features":[579]},{"name":"DBSTATUS_E_UNAVAILABLE","features":[579]},{"name":"DBSTATUS_E_VOLUMENOTFOUND","features":[579]},{"name":"DBSTATUS_S_ALREADYEXISTS","features":[579]},{"name":"DBSTATUS_S_CANNOTDELETESOURCE","features":[579]},{"name":"DBSTATUS_S_DEFAULT","features":[579]},{"name":"DBSTATUS_S_IGNORE","features":[579]},{"name":"DBSTATUS_S_ISNULL","features":[579]},{"name":"DBSTATUS_S_OK","features":[579]},{"name":"DBSTATUS_S_ROWSETCOLUMN","features":[579]},{"name":"DBSTATUS_S_TRUNCATED","features":[579]},{"name":"DBSTAT_COLUMN_CARDINALITY","features":[579]},{"name":"DBSTAT_HISTOGRAM","features":[579]},{"name":"DBSTAT_TUPLE_CARDINALITY","features":[579]},{"name":"DBTABLESTATISTICSTYPE26","features":[579]},{"name":"DBTIME","features":[579]},{"name":"DBTIMESTAMP","features":[579]},{"name":"DBTIMESTAMP","features":[579]},{"name":"DBTYPEENUM","features":[579]},{"name":"DBTYPEENUM15","features":[579]},{"name":"DBTYPEENUM20","features":[579]},{"name":"DBTYPE_ARRAY","features":[579]},{"name":"DBTYPE_BOOL","features":[579]},{"name":"DBTYPE_BSTR","features":[579]},{"name":"DBTYPE_BYREF","features":[579]},{"name":"DBTYPE_BYTES","features":[579]},{"name":"DBTYPE_CY","features":[579]},{"name":"DBTYPE_DATE","features":[579]},{"name":"DBTYPE_DBDATE","features":[579]},{"name":"DBTYPE_DBTIME","features":[579]},{"name":"DBTYPE_DBTIMESTAMP","features":[579]},{"name":"DBTYPE_DECIMAL","features":[579]},{"name":"DBTYPE_EMPTY","features":[579]},{"name":"DBTYPE_ERROR","features":[579]},{"name":"DBTYPE_FILETIME","features":[579]},{"name":"DBTYPE_GUID","features":[579]},{"name":"DBTYPE_HCHAPTER","features":[579]},{"name":"DBTYPE_I1","features":[579]},{"name":"DBTYPE_I2","features":[579]},{"name":"DBTYPE_I4","features":[579]},{"name":"DBTYPE_I8","features":[579]},{"name":"DBTYPE_IDISPATCH","features":[579]},{"name":"DBTYPE_IUNKNOWN","features":[579]},{"name":"DBTYPE_NULL","features":[579]},{"name":"DBTYPE_NUMERIC","features":[579]},{"name":"DBTYPE_PROPVARIANT","features":[579]},{"name":"DBTYPE_R4","features":[579]},{"name":"DBTYPE_R8","features":[579]},{"name":"DBTYPE_RESERVED","features":[579]},{"name":"DBTYPE_SQLVARIANT","features":[579]},{"name":"DBTYPE_STR","features":[579]},{"name":"DBTYPE_UDT","features":[579]},{"name":"DBTYPE_UI1","features":[579]},{"name":"DBTYPE_UI2","features":[579]},{"name":"DBTYPE_UI4","features":[579]},{"name":"DBTYPE_UI8","features":[579]},{"name":"DBTYPE_VARIANT","features":[579]},{"name":"DBTYPE_VARNUMERIC","features":[579]},{"name":"DBTYPE_VECTOR","features":[579]},{"name":"DBTYPE_WSTR","features":[579]},{"name":"DBUNIT_BYTE","features":[579]},{"name":"DBUNIT_GIGA_BYTE","features":[579]},{"name":"DBUNIT_HOUR","features":[579]},{"name":"DBUNIT_INVALID","features":[579]},{"name":"DBUNIT_KILO_BYTE","features":[579]},{"name":"DBUNIT_MAXIMUM","features":[579]},{"name":"DBUNIT_MEGA_BYTE","features":[579]},{"name":"DBUNIT_MICRO_SECOND","features":[579]},{"name":"DBUNIT_MILLI_SECOND","features":[579]},{"name":"DBUNIT_MINIMUM","features":[579]},{"name":"DBUNIT_MINUTE","features":[579]},{"name":"DBUNIT_NUM_LOCKS","features":[579]},{"name":"DBUNIT_NUM_MSGS","features":[579]},{"name":"DBUNIT_NUM_ROWS","features":[579]},{"name":"DBUNIT_OTHER","features":[579]},{"name":"DBUNIT_PERCENT","features":[579]},{"name":"DBUNIT_SECOND","features":[579]},{"name":"DBUNIT_WEIGHT","features":[579]},{"name":"DBUPDELRULEENUM","features":[579]},{"name":"DBUPDELRULE_CASCADE","features":[579]},{"name":"DBUPDELRULE_NOACTION","features":[579]},{"name":"DBUPDELRULE_SETDEFAULT","features":[579]},{"name":"DBUPDELRULE_SETNULL","features":[579]},{"name":"DBVARYBIN","features":[579]},{"name":"DBVARYCHAR","features":[579]},{"name":"DBVECTOR","features":[579]},{"name":"DBVECTOR","features":[579]},{"name":"DBWATCHMODEENUM","features":[579]},{"name":"DBWATCHMODE_ALL","features":[579]},{"name":"DBWATCHMODE_COUNT","features":[579]},{"name":"DBWATCHMODE_EXTEND","features":[579]},{"name":"DBWATCHMODE_MOVE","features":[579]},{"name":"DBWATCHNOTIFYENUM","features":[579]},{"name":"DBWATCHNOTIFY_QUERYDONE","features":[579]},{"name":"DBWATCHNOTIFY_QUERYREEXECUTED","features":[579]},{"name":"DBWATCHNOTIFY_ROWSCHANGED","features":[579]},{"name":"DB_ALL_EXCEPT_LIKE","features":[579]},{"name":"DB_BINDFLAGS_COLLECTION","features":[579]},{"name":"DB_BINDFLAGS_DELAYFETCHCOLUMNS","features":[579]},{"name":"DB_BINDFLAGS_DELAYFETCHSTREAM","features":[579]},{"name":"DB_BINDFLAGS_ISSTRUCTUREDDOCUMENT","features":[579]},{"name":"DB_BINDFLAGS_OPENIFEXISTS","features":[579]},{"name":"DB_BINDFLAGS_OUTPUT","features":[579]},{"name":"DB_BINDFLAGS_OVERWRITE","features":[579]},{"name":"DB_BINDFLAGS_RECURSIVE","features":[579]},{"name":"DB_COLLATION_ASC","features":[579]},{"name":"DB_COLLATION_DESC","features":[579]},{"name":"DB_COUNTUNAVAILABLE","features":[579]},{"name":"DB_E_ABORTLIMITREACHED","features":[579]},{"name":"DB_E_ALREADYINITIALIZED","features":[579]},{"name":"DB_E_ALTERRESTRICTED","features":[579]},{"name":"DB_E_ASYNCNOTSUPPORTED","features":[579]},{"name":"DB_E_BADACCESSORFLAGS","features":[579]},{"name":"DB_E_BADACCESSORHANDLE","features":[579]},{"name":"DB_E_BADACCESSORTYPE","features":[579]},{"name":"DB_E_BADBINDINFO","features":[579]},{"name":"DB_E_BADBOOKMARK","features":[579]},{"name":"DB_E_BADCHAPTER","features":[579]},{"name":"DB_E_BADCOLUMNID","features":[579]},{"name":"DB_E_BADCOMMANDFLAGS","features":[579]},{"name":"DB_E_BADCOMMANDID","features":[579]},{"name":"DB_E_BADCOMPAREOP","features":[579]},{"name":"DB_E_BADCONSTRAINTFORM","features":[579]},{"name":"DB_E_BADCONSTRAINTID","features":[579]},{"name":"DB_E_BADCONSTRAINTTYPE","features":[579]},{"name":"DB_E_BADCONVERTFLAG","features":[579]},{"name":"DB_E_BADCOPY","features":[579]},{"name":"DB_E_BADDEFERRABILITY","features":[579]},{"name":"DB_E_BADDYNAMICERRORID","features":[579]},{"name":"DB_E_BADHRESULT","features":[579]},{"name":"DB_E_BADID","features":[579]},{"name":"DB_E_BADINDEXID","features":[579]},{"name":"DB_E_BADINITSTRING","features":[579]},{"name":"DB_E_BADLOCKMODE","features":[579]},{"name":"DB_E_BADLOOKUPID","features":[579]},{"name":"DB_E_BADMATCHTYPE","features":[579]},{"name":"DB_E_BADORDINAL","features":[579]},{"name":"DB_E_BADPARAMETERNAME","features":[579]},{"name":"DB_E_BADPRECISION","features":[579]},{"name":"DB_E_BADPROPERTYVALUE","features":[579]},{"name":"DB_E_BADRATIO","features":[579]},{"name":"DB_E_BADRECORDNUM","features":[579]},{"name":"DB_E_BADREGIONHANDLE","features":[579]},{"name":"DB_E_BADROWHANDLE","features":[579]},{"name":"DB_E_BADSCALE","features":[579]},{"name":"DB_E_BADSOURCEHANDLE","features":[579]},{"name":"DB_E_BADSTARTPOSITION","features":[579]},{"name":"DB_E_BADSTATUSVALUE","features":[579]},{"name":"DB_E_BADSTORAGEFLAG","features":[579]},{"name":"DB_E_BADSTORAGEFLAGS","features":[579]},{"name":"DB_E_BADTABLEID","features":[579]},{"name":"DB_E_BADTYPE","features":[579]},{"name":"DB_E_BADTYPENAME","features":[579]},{"name":"DB_E_BADUPDATEDELETERULE","features":[579]},{"name":"DB_E_BADVALUES","features":[579]},{"name":"DB_E_BOGUS","features":[579]},{"name":"DB_E_BOOKMARKSKIPPED","features":[579]},{"name":"DB_E_BYREFACCESSORNOTSUPPORTED","features":[579]},{"name":"DB_E_CANCELED","features":[579]},{"name":"DB_E_CANNOTCONNECT","features":[579]},{"name":"DB_E_CANNOTFREE","features":[579]},{"name":"DB_E_CANNOTRESTART","features":[579]},{"name":"DB_E_CANTCANCEL","features":[579]},{"name":"DB_E_CANTCONVERTVALUE","features":[579]},{"name":"DB_E_CANTFETCHBACKWARDS","features":[579]},{"name":"DB_E_CANTFILTER","features":[579]},{"name":"DB_E_CANTORDER","features":[579]},{"name":"DB_E_CANTSCROLLBACKWARDS","features":[579]},{"name":"DB_E_CANTTRANSLATE","features":[579]},{"name":"DB_E_CHAPTERNOTRELEASED","features":[579]},{"name":"DB_E_COLUMNUNAVAILABLE","features":[579]},{"name":"DB_E_COMMANDNOTPERSISTED","features":[579]},{"name":"DB_E_CONCURRENCYVIOLATION","features":[579]},{"name":"DB_E_COSTLIMIT","features":[579]},{"name":"DB_E_DATAOVERFLOW","features":[579]},{"name":"DB_E_DELETEDROW","features":[579]},{"name":"DB_E_DIALECTNOTSUPPORTED","features":[579]},{"name":"DB_E_DROPRESTRICTED","features":[579]},{"name":"DB_E_DUPLICATECOLUMNID","features":[579]},{"name":"DB_E_DUPLICATECONSTRAINTID","features":[579]},{"name":"DB_E_DUPLICATEDATASOURCE","features":[579]},{"name":"DB_E_DUPLICATEID","features":[579]},{"name":"DB_E_DUPLICATEINDEXID","features":[579]},{"name":"DB_E_DUPLICATETABLEID","features":[579]},{"name":"DB_E_ERRORSINCOMMAND","features":[579]},{"name":"DB_E_ERRORSOCCURRED","features":[579]},{"name":"DB_E_GOALREJECTED","features":[579]},{"name":"DB_E_INDEXINUSE","features":[579]},{"name":"DB_E_INTEGRITYVIOLATION","features":[579]},{"name":"DB_E_INVALID","features":[579]},{"name":"DB_E_INVALIDTRANSITION","features":[579]},{"name":"DB_E_LIMITREJECTED","features":[579]},{"name":"DB_E_MAXPENDCHANGESEXCEEDED","features":[579]},{"name":"DB_E_MISMATCHEDPROVIDER","features":[579]},{"name":"DB_E_MULTIPLESTATEMENTS","features":[579]},{"name":"DB_E_MULTIPLESTORAGE","features":[579]},{"name":"DB_E_NEWLYINSERTED","features":[579]},{"name":"DB_E_NOAGGREGATION","features":[579]},{"name":"DB_E_NOCOLUMN","features":[579]},{"name":"DB_E_NOCOMMAND","features":[579]},{"name":"DB_E_NOCONSTRAINT","features":[579]},{"name":"DB_E_NOINDEX","features":[579]},{"name":"DB_E_NOLOCALE","features":[579]},{"name":"DB_E_NONCONTIGUOUSRANGE","features":[579]},{"name":"DB_E_NOPROVIDERSREGISTERED","features":[579]},{"name":"DB_E_NOQUERY","features":[579]},{"name":"DB_E_NOSOURCEOBJECT","features":[579]},{"name":"DB_E_NOSTATISTIC","features":[579]},{"name":"DB_E_NOTABLE","features":[579]},{"name":"DB_E_NOTAREFERENCECOLUMN","features":[579]},{"name":"DB_E_NOTASUBREGION","features":[579]},{"name":"DB_E_NOTCOLLECTION","features":[579]},{"name":"DB_E_NOTFOUND","features":[579]},{"name":"DB_E_NOTPREPARED","features":[579]},{"name":"DB_E_NOTREENTRANT","features":[579]},{"name":"DB_E_NOTSUPPORTED","features":[579]},{"name":"DB_E_NULLACCESSORNOTSUPPORTED","features":[579]},{"name":"DB_E_OBJECTCREATIONLIMITREACHED","features":[579]},{"name":"DB_E_OBJECTMISMATCH","features":[579]},{"name":"DB_E_OBJECTOPEN","features":[579]},{"name":"DB_E_OUTOFSPACE","features":[579]},{"name":"DB_E_PARAMNOTOPTIONAL","features":[579]},{"name":"DB_E_PARAMUNAVAILABLE","features":[579]},{"name":"DB_E_PENDINGCHANGES","features":[579]},{"name":"DB_E_PENDINGINSERT","features":[579]},{"name":"DB_E_READONLY","features":[579]},{"name":"DB_E_READONLYACCESSOR","features":[579]},{"name":"DB_E_RESOURCEEXISTS","features":[579]},{"name":"DB_E_RESOURCELOCKED","features":[579]},{"name":"DB_E_RESOURCENOTSUPPORTED","features":[579]},{"name":"DB_E_RESOURCEOUTOFSCOPE","features":[579]},{"name":"DB_E_ROWLIMITEXCEEDED","features":[579]},{"name":"DB_E_ROWSETINCOMMAND","features":[579]},{"name":"DB_E_ROWSNOTRELEASED","features":[579]},{"name":"DB_E_SCHEMAVIOLATION","features":[579]},{"name":"DB_E_TABLEINUSE","features":[579]},{"name":"DB_E_TIMEOUT","features":[579]},{"name":"DB_E_UNSUPPORTEDCONVERSION","features":[579]},{"name":"DB_E_WRITEONLYACCESSOR","features":[579]},{"name":"DB_IMP_LEVEL_ANONYMOUS","features":[579]},{"name":"DB_IMP_LEVEL_DELEGATE","features":[579]},{"name":"DB_IMP_LEVEL_IDENTIFY","features":[579]},{"name":"DB_IMP_LEVEL_IMPERSONATE","features":[579]},{"name":"DB_IN","features":[579]},{"name":"DB_INVALID_HACCESSOR","features":[579]},{"name":"DB_INVALID_HCHAPTER","features":[579]},{"name":"DB_LIKE_ONLY","features":[579]},{"name":"DB_LOCAL_EXCLUSIVE","features":[579]},{"name":"DB_LOCAL_SHARED","features":[579]},{"name":"DB_MODE_READ","features":[579]},{"name":"DB_MODE_READWRITE","features":[579]},{"name":"DB_MODE_SHARE_DENY_NONE","features":[579]},{"name":"DB_MODE_SHARE_DENY_READ","features":[579]},{"name":"DB_MODE_SHARE_DENY_WRITE","features":[579]},{"name":"DB_MODE_SHARE_EXCLUSIVE","features":[579]},{"name":"DB_MODE_WRITE","features":[579]},{"name":"DB_NULLGUID","features":[579]},{"name":"DB_NULL_HACCESSOR","features":[579]},{"name":"DB_NULL_HCHAPTER","features":[579]},{"name":"DB_NULL_HROW","features":[579]},{"name":"DB_NUMERIC","features":[579]},{"name":"DB_OUT","features":[579]},{"name":"DB_PROT_LEVEL_CALL","features":[579]},{"name":"DB_PROT_LEVEL_CONNECT","features":[579]},{"name":"DB_PROT_LEVEL_NONE","features":[579]},{"name":"DB_PROT_LEVEL_PKT","features":[579]},{"name":"DB_PROT_LEVEL_PKT_INTEGRITY","features":[579]},{"name":"DB_PROT_LEVEL_PKT_PRIVACY","features":[579]},{"name":"DB_PT_FUNCTION","features":[579]},{"name":"DB_PT_PROCEDURE","features":[579]},{"name":"DB_PT_UNKNOWN","features":[579]},{"name":"DB_REMOTE","features":[579]},{"name":"DB_SEARCHABLE","features":[579]},{"name":"DB_SEC_E_AUTH_FAILED","features":[579]},{"name":"DB_SEC_E_PERMISSIONDENIED","features":[579]},{"name":"DB_SEC_E_SAFEMODE_DENIED","features":[579]},{"name":"DB_S_ASYNCHRONOUS","features":[579]},{"name":"DB_S_BADROWHANDLE","features":[579]},{"name":"DB_S_BOOKMARKSKIPPED","features":[579]},{"name":"DB_S_BUFFERFULL","features":[579]},{"name":"DB_S_CANTRELEASE","features":[579]},{"name":"DB_S_COLUMNSCHANGED","features":[579]},{"name":"DB_S_COLUMNTYPEMISMATCH","features":[579]},{"name":"DB_S_COMMANDREEXECUTED","features":[579]},{"name":"DB_S_DELETEDROW","features":[579]},{"name":"DB_S_DIALECTIGNORED","features":[579]},{"name":"DB_S_ENDOFROWSET","features":[579]},{"name":"DB_S_ERRORSOCCURRED","features":[579]},{"name":"DB_S_ERRORSRETURNED","features":[579]},{"name":"DB_S_GOALCHANGED","features":[579]},{"name":"DB_S_LOCKUPGRADED","features":[579]},{"name":"DB_S_MULTIPLECHANGES","features":[579]},{"name":"DB_S_NONEXTROWSET","features":[579]},{"name":"DB_S_NORESULT","features":[579]},{"name":"DB_S_NOROWSPECIFICCOLUMNS","features":[579]},{"name":"DB_S_NOTSINGLETON","features":[579]},{"name":"DB_S_PARAMUNAVAILABLE","features":[579]},{"name":"DB_S_PROPERTIESCHANGED","features":[579]},{"name":"DB_S_ROWLIMITEXCEEDED","features":[579]},{"name":"DB_S_STOPLIMITREACHED","features":[579]},{"name":"DB_S_TOOMANYCHANGES","features":[579]},{"name":"DB_S_TYPEINFOOVERRIDDEN","features":[579]},{"name":"DB_S_UNWANTEDOPERATION","features":[579]},{"name":"DB_S_UNWANTEDPHASE","features":[579]},{"name":"DB_S_UNWANTEDREASON","features":[579]},{"name":"DB_UNSEARCHABLE","features":[579]},{"name":"DB_VARNUMERIC","features":[579]},{"name":"DCINFO","features":[579]},{"name":"DCINFOTYPEENUM","features":[579]},{"name":"DCINFOTYPE_VERSION","features":[579]},{"name":"DELIVERY_AGENT_FLAGS","features":[579]},{"name":"DELIVERY_AGENT_FLAG_NO_BROADCAST","features":[579]},{"name":"DELIVERY_AGENT_FLAG_NO_RESTRICTIONS","features":[579]},{"name":"DELIVERY_AGENT_FLAG_SILENT_DIAL","features":[579]},{"name":"DISPID_QUERY_ALL","features":[579]},{"name":"DISPID_QUERY_HITCOUNT","features":[579]},{"name":"DISPID_QUERY_LASTSEENTIME","features":[579]},{"name":"DISPID_QUERY_METADATA_PROPDISPID","features":[579]},{"name":"DISPID_QUERY_METADATA_PROPGUID","features":[579]},{"name":"DISPID_QUERY_METADATA_PROPMODIFIABLE","features":[579]},{"name":"DISPID_QUERY_METADATA_PROPNAME","features":[579]},{"name":"DISPID_QUERY_METADATA_STORELEVEL","features":[579]},{"name":"DISPID_QUERY_METADATA_VROOTAUTOMATIC","features":[579]},{"name":"DISPID_QUERY_METADATA_VROOTMANUAL","features":[579]},{"name":"DISPID_QUERY_METADATA_VROOTUSED","features":[579]},{"name":"DISPID_QUERY_RANK","features":[579]},{"name":"DISPID_QUERY_RANKVECTOR","features":[579]},{"name":"DISPID_QUERY_REVNAME","features":[579]},{"name":"DISPID_QUERY_UNFILTERED","features":[579]},{"name":"DISPID_QUERY_VIRTUALPATH","features":[579]},{"name":"DISPID_QUERY_WORKID","features":[579]},{"name":"DS_E_ALREADYDISABLED","features":[579]},{"name":"DS_E_ALREADYENABLED","features":[579]},{"name":"DS_E_BADREQUEST","features":[579]},{"name":"DS_E_BADRESULT","features":[579]},{"name":"DS_E_BADSEQUENCE","features":[579]},{"name":"DS_E_BUFFERTOOSMALL","features":[579]},{"name":"DS_E_CANNOTREMOVECONCURRENT","features":[579]},{"name":"DS_E_CANNOTWRITEREGISTRY","features":[579]},{"name":"DS_E_CONFIGBAD","features":[579]},{"name":"DS_E_CONFIGNOTRIGHTTYPE","features":[579]},{"name":"DS_E_DATANOTPRESENT","features":[579]},{"name":"DS_E_DATASOURCENOTAVAILABLE","features":[579]},{"name":"DS_E_DATASOURCENOTDISABLED","features":[579]},{"name":"DS_E_DUPLICATEID","features":[579]},{"name":"DS_E_INDEXDIRECTORY","features":[579]},{"name":"DS_E_INVALIDCATALOGNAME","features":[579]},{"name":"DS_E_INVALIDDATASOURCE","features":[579]},{"name":"DS_E_INVALIDTAGDB","features":[579]},{"name":"DS_E_MESSAGETOOLONG","features":[579]},{"name":"DS_E_MISSINGCATALOG","features":[579]},{"name":"DS_E_NOMOREDATA","features":[579]},{"name":"DS_E_PARAMOUTOFRANGE","features":[579]},{"name":"DS_E_PROPVERSIONMISMATCH","features":[579]},{"name":"DS_E_PROTOCOLVERSION","features":[579]},{"name":"DS_E_QUERYCANCELED","features":[579]},{"name":"DS_E_QUERYHUNG","features":[579]},{"name":"DS_E_REGISTRY","features":[579]},{"name":"DS_E_SEARCHCATNAMECOLLISION","features":[579]},{"name":"DS_E_SERVERCAPACITY","features":[579]},{"name":"DS_E_SERVERERROR","features":[579]},{"name":"DS_E_SETSTATUSINPROGRESS","features":[579]},{"name":"DS_E_TOOMANYDATASOURCES","features":[579]},{"name":"DS_E_UNKNOWNPARAM","features":[579]},{"name":"DS_E_UNKNOWNREQUEST","features":[579]},{"name":"DS_E_VALUETOOLARGE","features":[579]},{"name":"DataLinks","features":[579]},{"name":"DataSource","features":[579]},{"name":"DataSourceListener","features":[579]},{"name":"DataSourceObject","features":[354,579]},{"name":"EBindInfoOptions","features":[579]},{"name":"ERRORINFO","features":[579]},{"name":"ERRORINFO","features":[579]},{"name":"ERROR_FTE","features":[579]},{"name":"ERROR_FTE_CB","features":[579]},{"name":"ERROR_FTE_FD","features":[579]},{"name":"ERROR_SOURCE_CMDLINE","features":[579]},{"name":"ERROR_SOURCE_COLLATOR","features":[579]},{"name":"ERROR_SOURCE_CONNMGR","features":[579]},{"name":"ERROR_SOURCE_CONTENT_SOURCE","features":[579]},{"name":"ERROR_SOURCE_DATASOURCE","features":[579]},{"name":"ERROR_SOURCE_DAV","features":[579]},{"name":"ERROR_SOURCE_EXSTOREPH","features":[579]},{"name":"ERROR_SOURCE_FLTRDMN","features":[579]},{"name":"ERROR_SOURCE_GATHERER","features":[579]},{"name":"ERROR_SOURCE_INDEXER","features":[579]},{"name":"ERROR_SOURCE_MSS","features":[579]},{"name":"ERROR_SOURCE_NETWORKING","features":[579]},{"name":"ERROR_SOURCE_NLADMIN","features":[579]},{"name":"ERROR_SOURCE_NOTESPH","features":[579]},{"name":"ERROR_SOURCE_OLEDB_BINDER","features":[579]},{"name":"ERROR_SOURCE_PEOPLE_IMPORT","features":[579]},{"name":"ERROR_SOURCE_PROTHNDLR","features":[579]},{"name":"ERROR_SOURCE_QUERY","features":[579]},{"name":"ERROR_SOURCE_REMOTE_EXSTOREPH","features":[579]},{"name":"ERROR_SOURCE_SCHEMA","features":[579]},{"name":"ERROR_SOURCE_SCRIPTPI","features":[579]},{"name":"ERROR_SOURCE_SECURITY","features":[579]},{"name":"ERROR_SOURCE_SETUP","features":[579]},{"name":"ERROR_SOURCE_SRCH_SCHEMA_CACHE","features":[579]},{"name":"ERROR_SOURCE_XML","features":[579]},{"name":"EVENT_AUDIENCECOMPUTATION_CANNOTSTART","features":[579]},{"name":"EVENT_AUTOCAT_CANT_CREATE_FILE_SHARE","features":[579]},{"name":"EVENT_AUTOCAT_PERFMON","features":[579]},{"name":"EVENT_CONFIG_ERROR","features":[579]},{"name":"EVENT_CONFIG_SYNTAX","features":[579]},{"name":"EVENT_CRAWL_SCHEDULED","features":[579]},{"name":"EVENT_DETAILED_FILTERPOOL_ADD_FAILED","features":[579]},{"name":"EVENT_DSS_NOT_ENABLED","features":[579]},{"name":"EVENT_ENUMERATE_SESSIONS_FAILED","features":[579]},{"name":"EVENT_EXCEPTION","features":[579]},{"name":"EVENT_FAILED_CREATE_GATHERER_LOG","features":[579]},{"name":"EVENT_FAILED_INITIALIZE_CRAWL","features":[579]},{"name":"EVENT_FILTERPOOL_ADD_FAILED","features":[579]},{"name":"EVENT_FILTERPOOL_DELETE_FAILED","features":[579]},{"name":"EVENT_FILTER_HOST_FORCE_TERMINATE","features":[579]},{"name":"EVENT_FILTER_HOST_NOT_INITIALIZED","features":[579]},{"name":"EVENT_FILTER_HOST_NOT_TERMINATED","features":[579]},{"name":"EVENT_GATHERER_DATASOURCE","features":[579]},{"name":"EVENT_GATHERER_PERFMON","features":[579]},{"name":"EVENT_GATHERSVC_PERFMON","features":[579]},{"name":"EVENT_GATHER_ADVISE_FAILED","features":[579]},{"name":"EVENT_GATHER_APP_INIT_FAILED","features":[579]},{"name":"EVENT_GATHER_AUTODESCENCODE_INVALID","features":[579]},{"name":"EVENT_GATHER_AUTODESCLEN_ADJUSTED","features":[579]},{"name":"EVENT_GATHER_BACKUPAPP_COMPLETE","features":[579]},{"name":"EVENT_GATHER_BACKUPAPP_ERROR","features":[579]},{"name":"EVENT_GATHER_CANT_CREATE_DOCID","features":[579]},{"name":"EVENT_GATHER_CANT_DELETE_DOCID","features":[579]},{"name":"EVENT_GATHER_CHECKPOINT_CORRUPT","features":[579]},{"name":"EVENT_GATHER_CHECKPOINT_FAILED","features":[579]},{"name":"EVENT_GATHER_CHECKPOINT_FILE_MISSING","features":[579]},{"name":"EVENT_GATHER_CRAWL_IN_PROGRESS","features":[579]},{"name":"EVENT_GATHER_CRAWL_NOT_STARTED","features":[579]},{"name":"EVENT_GATHER_CRAWL_SEED_ERROR","features":[579]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED","features":[579]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED_INIT","features":[579]},{"name":"EVENT_GATHER_CRITICAL_ERROR","features":[579]},{"name":"EVENT_GATHER_DAEMON_TERMINATED","features":[579]},{"name":"EVENT_GATHER_DELETING_HISTORY_ITEMS","features":[579]},{"name":"EVENT_GATHER_DIRTY_STARTUP","features":[579]},{"name":"EVENT_GATHER_DISK_FULL","features":[579]},{"name":"EVENT_GATHER_END_ADAPTIVE","features":[579]},{"name":"EVENT_GATHER_END_CRAWL","features":[579]},{"name":"EVENT_GATHER_END_INCREMENTAL","features":[579]},{"name":"EVENT_GATHER_EXCEPTION","features":[579]},{"name":"EVENT_GATHER_FLUSH_FAILED","features":[579]},{"name":"EVENT_GATHER_FROM_NOT_SET","features":[579]},{"name":"EVENT_GATHER_HISTORY_CORRUPTION_DETECTED","features":[579]},{"name":"EVENT_GATHER_INPLACE_INDEX_REBUILD","features":[579]},{"name":"EVENT_GATHER_INTERNAL","features":[579]},{"name":"EVENT_GATHER_INVALID_NETWORK_ACCESS_ACCOUNT","features":[579]},{"name":"EVENT_GATHER_LOCK_FAILED","features":[579]},{"name":"EVENT_GATHER_NO_CRAWL_SEEDS","features":[579]},{"name":"EVENT_GATHER_NO_SCHEMA","features":[579]},{"name":"EVENT_GATHER_OBJ_INIT_FAILED","features":[579]},{"name":"EVENT_GATHER_PLUGINMGR_INIT_FAILED","features":[579]},{"name":"EVENT_GATHER_PLUGIN_INIT_FAILED","features":[579]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_INIT_FAILED","features":[579]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_LOAD_FAILED","features":[579]},{"name":"EVENT_GATHER_READ_CHECKPOINT_FAILED","features":[579]},{"name":"EVENT_GATHER_RECOVERY_FAILURE","features":[579]},{"name":"EVENT_GATHER_REG_MISSING","features":[579]},{"name":"EVENT_GATHER_RESET_START","features":[579]},{"name":"EVENT_GATHER_RESTOREAPP_COMPLETE","features":[579]},{"name":"EVENT_GATHER_RESTOREAPP_ERROR","features":[579]},{"name":"EVENT_GATHER_RESTORE_CHECKPOINT_FAILED","features":[579]},{"name":"EVENT_GATHER_RESTORE_COMPLETE","features":[579]},{"name":"EVENT_GATHER_RESTORE_ERROR","features":[579]},{"name":"EVENT_GATHER_RESUME","features":[579]},{"name":"EVENT_GATHER_SAVE_FAILED","features":[579]},{"name":"EVENT_GATHER_SERVICE_INIT","features":[579]},{"name":"EVENT_GATHER_START_CRAWL","features":[579]},{"name":"EVENT_GATHER_START_CRAWL_IF_RESET","features":[579]},{"name":"EVENT_GATHER_START_PAUSE","features":[579]},{"name":"EVENT_GATHER_STOP_START","features":[579]},{"name":"EVENT_GATHER_SYSTEM_LCID_CHANGED","features":[579]},{"name":"EVENT_GATHER_THROTTLE","features":[579]},{"name":"EVENT_GATHER_TRANSACTION_FAIL","features":[579]},{"name":"EVENT_HASHMAP_INSERT","features":[579]},{"name":"EVENT_HASHMAP_UPDATE","features":[579]},{"name":"EVENT_INDEXER_ADD_DSS_DISCONNECT","features":[579]},{"name":"EVENT_INDEXER_ADD_DSS_FAILED","features":[579]},{"name":"EVENT_INDEXER_ADD_DSS_SUCCEEDED","features":[579]},{"name":"EVENT_INDEXER_BUILD_ENDED","features":[579]},{"name":"EVENT_INDEXER_BUILD_FAILED","features":[579]},{"name":"EVENT_INDEXER_BUILD_START","features":[579]},{"name":"EVENT_INDEXER_CI_LOAD_ERROR","features":[579]},{"name":"EVENT_INDEXER_DSS_ALREADY_ADDED","features":[579]},{"name":"EVENT_INDEXER_DSS_CONTACT_FAILED","features":[579]},{"name":"EVENT_INDEXER_DSS_UNABLE_TO_REMOVE","features":[579]},{"name":"EVENT_INDEXER_FAIL_TO_CREATE_PER_USER_CATALOG","features":[579]},{"name":"EVENT_INDEXER_FAIL_TO_SET_MAX_JETINSTANCE","features":[579]},{"name":"EVENT_INDEXER_FAIL_TO_UNLOAD_PER_USER_CATALOG","features":[579]},{"name":"EVENT_INDEXER_INIT_ERROR","features":[579]},{"name":"EVENT_INDEXER_INVALID_DIRECTORY","features":[579]},{"name":"EVENT_INDEXER_LOAD_FAIL","features":[579]},{"name":"EVENT_INDEXER_MISSING_APP_DIRECTORY","features":[579]},{"name":"EVENT_INDEXER_NEW_PROJECT","features":[579]},{"name":"EVENT_INDEXER_NO_SEARCH_SERVERS","features":[579]},{"name":"EVENT_INDEXER_OUT_OF_DATABASE_INSTANCE","features":[579]},{"name":"EVENT_INDEXER_PAUSED_FOR_DISKFULL","features":[579]},{"name":"EVENT_INDEXER_PERFMON","features":[579]},{"name":"EVENT_INDEXER_PROPSTORE_INIT_FAILED","features":[579]},{"name":"EVENT_INDEXER_PROP_ABORTED","features":[579]},{"name":"EVENT_INDEXER_PROP_COMMITTED","features":[579]},{"name":"EVENT_INDEXER_PROP_COMMIT_FAILED","features":[579]},{"name":"EVENT_INDEXER_PROP_ERROR","features":[579]},{"name":"EVENT_INDEXER_PROP_STARTED","features":[579]},{"name":"EVENT_INDEXER_PROP_STATE_CORRUPT","features":[579]},{"name":"EVENT_INDEXER_PROP_STOPPED","features":[579]},{"name":"EVENT_INDEXER_PROP_SUCCEEDED","features":[579]},{"name":"EVENT_INDEXER_REG_ERROR","features":[579]},{"name":"EVENT_INDEXER_REG_MISSING","features":[579]},{"name":"EVENT_INDEXER_REMOVED_PROJECT","features":[579]},{"name":"EVENT_INDEXER_REMOVE_DSS_FAILED","features":[579]},{"name":"EVENT_INDEXER_REMOVE_DSS_SUCCEEDED","features":[579]},{"name":"EVENT_INDEXER_RESET_FOR_CORRUPTION","features":[579]},{"name":"EVENT_INDEXER_SCHEMA_COPY_ERROR","features":[579]},{"name":"EVENT_INDEXER_SHUTDOWN","features":[579]},{"name":"EVENT_INDEXER_STARTED","features":[579]},{"name":"EVENT_INDEXER_VERIFY_PROP_ACCOUNT","features":[579]},{"name":"EVENT_LEARN_COMPILE_FAILED","features":[579]},{"name":"EVENT_LEARN_CREATE_DB_FAILED","features":[579]},{"name":"EVENT_LEARN_PROPAGATION_COPY_FAILED","features":[579]},{"name":"EVENT_LEARN_PROPAGATION_FAILED","features":[579]},{"name":"EVENT_LOCAL_GROUPS_CACHE_FLUSHED","features":[579]},{"name":"EVENT_LOCAL_GROUP_NOT_EXPANDED","features":[579]},{"name":"EVENT_NOTIFICATION_FAILURE","features":[579]},{"name":"EVENT_NOTIFICATION_FAILURE_SCOPE_EXCEEDED_LOGGING","features":[579]},{"name":"EVENT_NOTIFICATION_RESTORED","features":[579]},{"name":"EVENT_NOTIFICATION_RESTORED_SCOPE_EXCEEDED_LOGGING","features":[579]},{"name":"EVENT_NOTIFICATION_THREAD_EXIT_FAILED","features":[579]},{"name":"EVENT_OUTOFMEMORY","features":[579]},{"name":"EVENT_PERF_COUNTERS_ALREADY_EXISTS","features":[579]},{"name":"EVENT_PERF_COUNTERS_NOT_LOADED","features":[579]},{"name":"EVENT_PERF_COUNTERS_REGISTRY_TROUBLE","features":[579]},{"name":"EVENT_PROTOCOL_HOST_FORCE_TERMINATE","features":[579]},{"name":"EVENT_REG_VERSION","features":[579]},{"name":"EVENT_SSSEARCH_CREATE_PATH_RULES_FAILED","features":[579]},{"name":"EVENT_SSSEARCH_CSM_SAVE_FAILED","features":[579]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_FAILED","features":[579]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_ROLLBACK_ERRORS","features":[579]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_SUCCEEDED","features":[579]},{"name":"EVENT_SSSEARCH_DROPPED_EVENTS","features":[579]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_FAILED","features":[579]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_STARTED","features":[579]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_SUCCEEDED","features":[579]},{"name":"EVENT_SSSEARCH_SETUP_FAILED","features":[579]},{"name":"EVENT_SSSEARCH_SETUP_SUCCEEDED","features":[579]},{"name":"EVENT_SSSEARCH_STARTED","features":[579]},{"name":"EVENT_SSSEARCH_STARTING_SETUP","features":[579]},{"name":"EVENT_SSSEARCH_STOPPED","features":[579]},{"name":"EVENT_STS_INIT_SECURITY_FAILED","features":[579]},{"name":"EVENT_SYSTEM_EXCEPTION","features":[579]},{"name":"EVENT_TRANSACTION_READ","features":[579]},{"name":"EVENT_TRANSLOG_APPEND","features":[579]},{"name":"EVENT_TRANSLOG_CREATE","features":[579]},{"name":"EVENT_TRANSLOG_CREATE_TRX","features":[579]},{"name":"EVENT_TRANSLOG_UPDATE","features":[579]},{"name":"EVENT_UNPRIVILEGED_SERVICE_ACCOUNT","features":[579]},{"name":"EVENT_USING_DIFFERENT_WORD_BREAKER","features":[579]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILE","features":[579]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILES","features":[579]},{"name":"EVENT_WBREAKER_NOT_LOADED","features":[579]},{"name":"EVENT_WIN32_ERROR","features":[579]},{"name":"EXCI_E_ACCESS_DENIED","features":[579]},{"name":"EXCI_E_BADCONFIG_OR_ACCESSDENIED","features":[579]},{"name":"EXCI_E_INVALID_ACCOUNT_INFO","features":[579]},{"name":"EXCI_E_INVALID_EXCHANGE_SERVER","features":[579]},{"name":"EXCI_E_INVALID_SERVER_CONFIG","features":[579]},{"name":"EXCI_E_NOT_ADMIN_OR_WRONG_SITE","features":[579]},{"name":"EXCI_E_NO_CONFIG","features":[579]},{"name":"EXCI_E_NO_MAPI","features":[579]},{"name":"EXCI_E_WRONG_SERVER_OR_ACCT","features":[579]},{"name":"EXSTOREPH_E_UNEXPECTED","features":[579]},{"name":"EX_ANY","features":[579]},{"name":"EX_CMDFATAL","features":[579]},{"name":"EX_CONTROL","features":[579]},{"name":"EX_DBCORRUPT","features":[579]},{"name":"EX_DBFATAL","features":[579]},{"name":"EX_DEADLOCK","features":[579]},{"name":"EX_HARDWARE","features":[579]},{"name":"EX_INFO","features":[579]},{"name":"EX_INTOK","features":[579]},{"name":"EX_LIMIT","features":[579]},{"name":"EX_MAXISEVERITY","features":[579]},{"name":"EX_MISSING","features":[579]},{"name":"EX_PERMIT","features":[579]},{"name":"EX_RESOURCE","features":[579]},{"name":"EX_SYNTAX","features":[579]},{"name":"EX_TABCORRUPT","features":[579]},{"name":"EX_TYPE","features":[579]},{"name":"EX_USER","features":[579]},{"name":"FAIL","features":[579]},{"name":"FF_INDEXCOMPLEXURLS","features":[579]},{"name":"FF_SUPPRESSINDEXING","features":[579]},{"name":"FILTERED_DATA_SOURCES","features":[579]},{"name":"FLTRDMN_E_CANNOT_DECRYPT_PASSWORD","features":[579]},{"name":"FLTRDMN_E_ENCRYPTED_DOCUMENT","features":[579]},{"name":"FLTRDMN_E_FILTER_INIT_FAILED","features":[579]},{"name":"FLTRDMN_E_QI_FILTER_FAILED","features":[579]},{"name":"FLTRDMN_E_UNEXPECTED","features":[579]},{"name":"FOLLOW_FLAGS","features":[579]},{"name":"FTE_E_ADMIN_BLOB_CORRUPT","features":[579]},{"name":"FTE_E_AFFINITY_MASK","features":[579]},{"name":"FTE_E_ALREADY_INITIALIZED","features":[579]},{"name":"FTE_E_ANOTHER_STATUS_CHANGE_IS_ALREADY_ACTIVE","features":[579]},{"name":"FTE_E_BATCH_ABORTED","features":[579]},{"name":"FTE_E_CATALOG_ALREADY_EXISTS","features":[579]},{"name":"FTE_E_CATALOG_DOES_NOT_EXIST","features":[579]},{"name":"FTE_E_CB_CBID_OUT_OF_BOUND","features":[579]},{"name":"FTE_E_CB_NOT_ENOUGH_AVAIL_PHY_MEM","features":[579]},{"name":"FTE_E_CB_NOT_ENOUGH_OCC_BUFFER","features":[579]},{"name":"FTE_E_CB_OUT_OF_MEMORY","features":[579]},{"name":"FTE_E_COM_SIGNATURE_VALIDATION","features":[579]},{"name":"FTE_E_CORRUPT_GATHERER_HASH_MAP","features":[579]},{"name":"FTE_E_CORRUPT_PROPERTY_STORE","features":[579]},{"name":"FTE_E_CORRUPT_WORDLIST","features":[579]},{"name":"FTE_E_DATATYPE_MISALIGNMENT","features":[579]},{"name":"FTE_E_DEPENDENT_TRAN_FAILED_TO_PERSIST","features":[579]},{"name":"FTE_E_DOC_TOO_HUGE","features":[579]},{"name":"FTE_E_DUPLICATE_OBJECT","features":[579]},{"name":"FTE_E_ERROR_WRITING_REGISTRY","features":[579]},{"name":"FTE_E_EXCEEDED_MAX_PLUGINS","features":[579]},{"name":"FTE_E_FAILED_TO_CREATE_ACCESSOR","features":[579]},{"name":"FTE_E_FAILURE_TO_POST_SETCOMPLETION_STATUS","features":[579]},{"name":"FTE_E_FD_DID_NOT_CONNECT","features":[579]},{"name":"FTE_E_FD_DOC_TIMEOUT","features":[579]},{"name":"FTE_E_FD_DOC_UNEXPECTED_EXIT","features":[579]},{"name":"FTE_E_FD_FAILED_TO_LOAD_IFILTER","features":[579]},{"name":"FTE_E_FD_FILTER_CAUSED_SHARING_VIOLATION","features":[579]},{"name":"FTE_E_FD_IDLE","features":[579]},{"name":"FTE_E_FD_IFILTER_INIT_FAILED","features":[579]},{"name":"FTE_E_FD_NOISE_NO_IPERSISTSTREAM_ON_TEXT_FILTER","features":[579]},{"name":"FTE_E_FD_NOISE_NO_TEXT_FILTER","features":[579]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_INIT_FAILED","features":[579]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_LOAD_FAILED","features":[579]},{"name":"FTE_E_FD_NO_IPERSIST_INTERFACE","features":[579]},{"name":"FTE_E_FD_OCCURRENCE_OVERFLOW","features":[579]},{"name":"FTE_E_FD_OWNERSHIP_OBSOLETE","features":[579]},{"name":"FTE_E_FD_SHUTDOWN","features":[579]},{"name":"FTE_E_FD_TIMEOUT","features":[579]},{"name":"FTE_E_FD_UNEXPECTED_EXIT","features":[579]},{"name":"FTE_E_FD_UNRESPONSIVE","features":[579]},{"name":"FTE_E_FD_USED_TOO_MUCH_MEMORY","features":[579]},{"name":"FTE_E_FILTER_SINGLE_THREADED","features":[579]},{"name":"FTE_E_HIGH_MEMORY_PRESSURE","features":[579]},{"name":"FTE_E_INVALID_CODEPAGE","features":[579]},{"name":"FTE_E_INVALID_DOCID","features":[579]},{"name":"FTE_E_INVALID_ISOLATE_ERROR_BATCH","features":[579]},{"name":"FTE_E_INVALID_PROG_ID","features":[579]},{"name":"FTE_E_INVALID_PROJECT_ID","features":[579]},{"name":"FTE_E_INVALID_PROPERTY","features":[579]},{"name":"FTE_E_INVALID_TYPE","features":[579]},{"name":"FTE_E_KEY_NOT_CACHED","features":[579]},{"name":"FTE_E_LIBRARY_NOT_LOADED","features":[579]},{"name":"FTE_E_NOT_PROCESSED_DUE_TO_PREVIOUS_ERRORS","features":[579]},{"name":"FTE_E_NO_MORE_PROPERTIES","features":[579]},{"name":"FTE_E_NO_PLUGINS","features":[579]},{"name":"FTE_E_NO_PROPERTY_STORE","features":[579]},{"name":"FTE_E_OUT_OF_RANGE","features":[579]},{"name":"FTE_E_PATH_TOO_LONG","features":[579]},{"name":"FTE_E_PAUSE_EXTERNAL","features":[579]},{"name":"FTE_E_PERFMON_FULL","features":[579]},{"name":"FTE_E_PERF_NOT_LOADED","features":[579]},{"name":"FTE_E_PIPE_DATA_CORRUPTED","features":[579]},{"name":"FTE_E_PIPE_NOT_CONNECTED","features":[579]},{"name":"FTE_E_PROGID_REQUIRED","features":[579]},{"name":"FTE_E_PROJECT_NOT_INITALIZED","features":[579]},{"name":"FTE_E_PROJECT_SHUTDOWN","features":[579]},{"name":"FTE_E_PROPERTY_STORE_WORKID_NOTVALID","features":[579]},{"name":"FTE_E_READONLY_CATALOG","features":[579]},{"name":"FTE_E_REDUNDANT_TRAN_FAILURE","features":[579]},{"name":"FTE_E_REJECTED_DUE_TO_PROJECT_STATUS","features":[579]},{"name":"FTE_E_RESOURCE_SHUTDOWN","features":[579]},{"name":"FTE_E_RETRY_HUGE_DOC","features":[579]},{"name":"FTE_E_RETRY_SINGLE_DOC_PER_BATCH","features":[579]},{"name":"FTE_E_SECRET_NOT_FOUND","features":[579]},{"name":"FTE_E_SERIAL_STREAM_CORRUPT","features":[579]},{"name":"FTE_E_STACK_CORRUPTED","features":[579]},{"name":"FTE_E_STATIC_THREAD_INVALID_ARGUMENTS","features":[579]},{"name":"FTE_E_UNEXPECTED_EXIT","features":[579]},{"name":"FTE_E_UNKNOWN_FD_TYPE","features":[579]},{"name":"FTE_E_UNKNOWN_PLUGIN","features":[579]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_INSTANTIATED","features":[579]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_SHUTDOWN","features":[579]},{"name":"FTE_E_URB_TOO_BIG","features":[579]},{"name":"FTE_INVALID_ADMIN_CLIENT","features":[579]},{"name":"FTE_S_BEYOND_QUOTA","features":[579]},{"name":"FTE_S_CATALOG_BLOB_MISMATCHED","features":[579]},{"name":"FTE_S_PROPERTY_RESET","features":[579]},{"name":"FTE_S_PROPERTY_STORE_END_OF_ENUMERATION","features":[579]},{"name":"FTE_S_READONLY_CATALOG","features":[579]},{"name":"FTE_S_REDUNDANT","features":[579]},{"name":"FTE_S_RESOURCES_STARTING_TO_GET_LOW","features":[579]},{"name":"FTE_S_RESUME","features":[579]},{"name":"FTE_S_STATUS_CHANGE_REQUEST","features":[579]},{"name":"FTE_S_TRY_TO_FLUSH","features":[579]},{"name":"FilterRegistration","features":[579]},{"name":"GENERATE_METHOD_PREFIXMATCH","features":[579]},{"name":"GENERATE_METHOD_STEMMED","features":[579]},{"name":"GHTR_E_INSUFFICIENT_DISK_SPACE","features":[579]},{"name":"GHTR_E_LOCAL_SERVER_UNAVAILABLE","features":[579]},{"name":"GTHR_E_ADDLINKS_FAILED_WILL_RETRY_PARENT","features":[579]},{"name":"GTHR_E_APPLICATION_NOT_FOUND","features":[579]},{"name":"GTHR_E_AUTOCAT_UNEXPECTED","features":[579]},{"name":"GTHR_E_BACKUP_VALIDATION_FAIL","features":[579]},{"name":"GTHR_E_BAD_FILTER_DAEMON","features":[579]},{"name":"GTHR_E_BAD_FILTER_HOST","features":[579]},{"name":"GTHR_E_CANNOT_ENABLE_CHECKPOINT","features":[579]},{"name":"GTHR_E_CANNOT_REMOVE_PLUGINMGR","features":[579]},{"name":"GTHR_E_CONFIG_DUP_EXTENSION","features":[579]},{"name":"GTHR_E_CONFIG_DUP_PROJECT","features":[579]},{"name":"GTHR_E_CONTENT_ID_CONFLICT","features":[579]},{"name":"GTHR_E_DIRMON_NOT_INITIALZED","features":[579]},{"name":"GTHR_E_DUPLICATE_OBJECT","features":[579]},{"name":"GTHR_E_DUPLICATE_PROJECT","features":[579]},{"name":"GTHR_E_DUPLICATE_URL","features":[579]},{"name":"GTHR_E_DUP_PROPERTY_MAPPING","features":[579]},{"name":"GTHR_E_EMPTY_DACL","features":[579]},{"name":"GTHR_E_ERROR_INITIALIZING_PERFMON","features":[579]},{"name":"GTHR_E_ERROR_OBJECT_NOT_FOUND","features":[579]},{"name":"GTHR_E_ERROR_WRITING_REGISTRY","features":[579]},{"name":"GTHR_E_FILTERPOOL_NOTFOUND","features":[579]},{"name":"GTHR_E_FILTER_FAULT","features":[579]},{"name":"GTHR_E_FILTER_INIT","features":[579]},{"name":"GTHR_E_FILTER_INTERRUPTED","features":[579]},{"name":"GTHR_E_FILTER_INVALID_MESSAGE","features":[579]},{"name":"GTHR_E_FILTER_NOT_FOUND","features":[579]},{"name":"GTHR_E_FILTER_NO_CODEPAGE","features":[579]},{"name":"GTHR_E_FILTER_NO_MORE_THREADS","features":[579]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED","features":[579]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED_QUOTA","features":[579]},{"name":"GTHR_E_FILTER_SINGLE_THREADED","features":[579]},{"name":"GTHR_E_FOLDER_CRAWLED_BY_ANOTHER_WORKSPACE","features":[579]},{"name":"GTHR_E_FORCE_NOTIFICATION_RESET","features":[579]},{"name":"GTHR_E_FROM_NOT_SPECIFIED","features":[579]},{"name":"GTHR_E_IE_OFFLINE","features":[579]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_CATEGORIES","features":[579]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_DOCUMENTS","features":[579]},{"name":"GTHR_E_INSUFFICIENT_FEATURE_TERMS","features":[579]},{"name":"GTHR_E_INVALIDFUNCTION","features":[579]},{"name":"GTHR_E_INVALID_ACCOUNT","features":[579]},{"name":"GTHR_E_INVALID_ACCOUNT_SYNTAX","features":[579]},{"name":"GTHR_E_INVALID_APPLICATION_NAME","features":[579]},{"name":"GTHR_E_INVALID_CALL_FROM_WBREAKER","features":[579]},{"name":"GTHR_E_INVALID_DIRECTORY","features":[579]},{"name":"GTHR_E_INVALID_EXTENSION","features":[579]},{"name":"GTHR_E_INVALID_GROW_FACTOR","features":[579]},{"name":"GTHR_E_INVALID_HOST_NAME","features":[579]},{"name":"GTHR_E_INVALID_LOG_FILE_NAME","features":[579]},{"name":"GTHR_E_INVALID_MAPPING","features":[579]},{"name":"GTHR_E_INVALID_PATH","features":[579]},{"name":"GTHR_E_INVALID_PATH_EXPRESSION","features":[579]},{"name":"GTHR_E_INVALID_PATH_SPEC","features":[579]},{"name":"GTHR_E_INVALID_PROJECT_NAME","features":[579]},{"name":"GTHR_E_INVALID_PROXY_PORT","features":[579]},{"name":"GTHR_E_INVALID_RESOURCE_ID","features":[579]},{"name":"GTHR_E_INVALID_RETRIES","features":[579]},{"name":"GTHR_E_INVALID_START_ADDRESS","features":[579]},{"name":"GTHR_E_INVALID_START_PAGE","features":[579]},{"name":"GTHR_E_INVALID_START_PAGE_HOST","features":[579]},{"name":"GTHR_E_INVALID_START_PAGE_PATH","features":[579]},{"name":"GTHR_E_INVALID_STREAM_LOGS_COUNT","features":[579]},{"name":"GTHR_E_INVALID_TIME_OUT","features":[579]},{"name":"GTHR_E_JET_BACKUP_ERROR","features":[579]},{"name":"GTHR_E_JET_RESTORE_ERROR","features":[579]},{"name":"GTHR_E_LOCAL_GROUPS_EXPANSION_INTERNAL_ERROR","features":[579]},{"name":"GTHR_E_NAME_TOO_LONG","features":[579]},{"name":"GTHR_E_NESTED_HIERARCHICAL_START_ADDRESSES","features":[579]},{"name":"GTHR_E_NOFILTERSINK","features":[579]},{"name":"GTHR_E_NON_FIXED_DRIVE","features":[579]},{"name":"GTHR_E_NOTIFICATION_FILE_SHARE_INFO_NOT_AVAILABLE","features":[579]},{"name":"GTHR_E_NOTIFICATION_LOCAL_PATH_MUST_USE_FIXED_DRIVE","features":[579]},{"name":"GTHR_E_NOTIFICATION_START_ADDRESS_INVALID","features":[579]},{"name":"GTHR_E_NOTIFICATION_START_PAGE","features":[579]},{"name":"GTHR_E_NOTIFICATION_TYPE_NOT_SUPPORTED","features":[579]},{"name":"GTHR_E_NOTIF_ACCESS_TOKEN_UPDATED","features":[579]},{"name":"GTHR_E_NOTIF_BEING_REMOVED","features":[579]},{"name":"GTHR_E_NOTIF_EXCESSIVE_THROUGHPUT","features":[579]},{"name":"GTHR_E_NO_IDENTITY","features":[579]},{"name":"GTHR_E_NO_PRTCLHNLR","features":[579]},{"name":"GTHR_E_NTF_CLIENT_NOT_SUBSCRIBED","features":[579]},{"name":"GTHR_E_OBJECT_NOT_VALID","features":[579]},{"name":"GTHR_E_OUT_OF_DOC_ID","features":[579]},{"name":"GTHR_E_PIPE_NOT_CONNECTTED","features":[579]},{"name":"GTHR_E_PLUGIN_NOT_REGISTERED","features":[579]},{"name":"GTHR_E_PROJECT_NOT_INITIALIZED","features":[579]},{"name":"GTHR_E_PROPERTIES_EXCEEDED","features":[579]},{"name":"GTHR_E_PROPERTY_LIST_NOT_INITIALIZED","features":[579]},{"name":"GTHR_E_PROXY_NAME","features":[579]},{"name":"GTHR_E_PRT_HNDLR_PROGID_MISSING","features":[579]},{"name":"GTHR_E_RECOVERABLE_EXOLEDB_ERROR","features":[579]},{"name":"GTHR_E_RETRY","features":[579]},{"name":"GTHR_E_SCHEMA_ERRORS_OCCURRED","features":[579]},{"name":"GTHR_E_SCOPES_EXCEEDED","features":[579]},{"name":"GTHR_E_SECRET_NOT_FOUND","features":[579]},{"name":"GTHR_E_SERVER_UNAVAILABLE","features":[579]},{"name":"GTHR_E_SHUTTING_DOWN","features":[579]},{"name":"GTHR_E_SINGLE_THREADED_EMBEDDING","features":[579]},{"name":"GTHR_E_TIMEOUT","features":[579]},{"name":"GTHR_E_TOO_MANY_PLUGINS","features":[579]},{"name":"GTHR_E_UNABLE_TO_READ_EXCHANGE_STORE","features":[579]},{"name":"GTHR_E_UNABLE_TO_READ_REGISTRY","features":[579]},{"name":"GTHR_E_UNKNOWN_PROTOCOL","features":[579]},{"name":"GTHR_E_UNSUPPORTED_PROPERTY_TYPE","features":[579]},{"name":"GTHR_E_URL_EXCLUDED","features":[579]},{"name":"GTHR_E_URL_UNIDENTIFIED","features":[579]},{"name":"GTHR_E_USER_AGENT_NOT_SPECIFIED","features":[579]},{"name":"GTHR_E_VALUE_NOT_AVAILABLE","features":[579]},{"name":"GTHR_S_BAD_FILE_LINK","features":[579]},{"name":"GTHR_S_CANNOT_FILTER","features":[579]},{"name":"GTHR_S_CANNOT_WORDBREAK","features":[579]},{"name":"GTHR_S_CONFIG_HAS_ACCOUNTS","features":[579]},{"name":"GTHR_S_CRAWL_ADAPTIVE","features":[579]},{"name":"GTHR_S_CRAWL_FULL","features":[579]},{"name":"GTHR_S_CRAWL_INCREMENTAL","features":[579]},{"name":"GTHR_S_CRAWL_SCHEDULED","features":[579]},{"name":"GTHR_S_END_PROCESS_LOOP_NOTIFY_QUEUE","features":[579]},{"name":"GTHR_S_END_STD_CHUNKS","features":[579]},{"name":"GTHR_S_MODIFIED_PARTS","features":[579]},{"name":"GTHR_S_NOT_ALL_PARTS","features":[579]},{"name":"GTHR_S_NO_CRAWL_SEEDS","features":[579]},{"name":"GTHR_S_NO_INDEX","features":[579]},{"name":"GTHR_S_OFFICE_CHILD","features":[579]},{"name":"GTHR_S_PAUSE_REASON_BACKOFF","features":[579]},{"name":"GTHR_S_PAUSE_REASON_EXTERNAL","features":[579]},{"name":"GTHR_S_PAUSE_REASON_PROFILE_IMPORT","features":[579]},{"name":"GTHR_S_PAUSE_REASON_UPGRADING","features":[579]},{"name":"GTHR_S_PROB_NOT_MODIFIED","features":[579]},{"name":"GTHR_S_START_FILTER_FROM_BODY","features":[579]},{"name":"GTHR_S_START_FILTER_FROM_PROTOCOL","features":[579]},{"name":"GTHR_S_STATUS_CHANGE_IGNORED","features":[579]},{"name":"GTHR_S_STATUS_END_CRAWL","features":[579]},{"name":"GTHR_S_STATUS_PAUSE","features":[579]},{"name":"GTHR_S_STATUS_RESET","features":[579]},{"name":"GTHR_S_STATUS_RESUME","features":[579]},{"name":"GTHR_S_STATUS_START","features":[579]},{"name":"GTHR_S_STATUS_STOP","features":[579]},{"name":"GTHR_S_STATUS_THROTTLE","features":[579]},{"name":"GTHR_S_TRANSACTION_IGNORED","features":[579]},{"name":"GTHR_S_USE_MIME_FILTER","features":[579]},{"name":"HACCESSOR","features":[579]},{"name":"HITRANGE","features":[579]},{"name":"IAccessor","features":[579]},{"name":"IAlterIndex","features":[579]},{"name":"IAlterTable","features":[579]},{"name":"IBindResource","features":[579]},{"name":"IChapteredRowset","features":[579]},{"name":"IColumnMapper","features":[579]},{"name":"IColumnMapperCreator","features":[579]},{"name":"IColumnsInfo","features":[579]},{"name":"IColumnsInfo2","features":[579]},{"name":"IColumnsRowset","features":[579]},{"name":"ICommand","features":[579]},{"name":"ICommandCost","features":[579]},{"name":"ICommandPersist","features":[579]},{"name":"ICommandPrepare","features":[579]},{"name":"ICommandProperties","features":[579]},{"name":"ICommandStream","features":[579]},{"name":"ICommandText","features":[579]},{"name":"ICommandValidate","features":[579]},{"name":"ICommandWithParameters","features":[579]},{"name":"ICondition","features":[354,579]},{"name":"ICondition2","features":[354,579]},{"name":"IConditionFactory","features":[579]},{"name":"IConditionFactory2","features":[579]},{"name":"IConditionGenerator","features":[579]},{"name":"IConvertType","features":[579]},{"name":"ICreateRow","features":[579]},{"name":"IDBAsynchNotify","features":[579]},{"name":"IDBAsynchStatus","features":[579]},{"name":"IDBBinderProperties","features":[579]},{"name":"IDBCreateCommand","features":[579]},{"name":"IDBCreateSession","features":[579]},{"name":"IDBDataSourceAdmin","features":[579]},{"name":"IDBInfo","features":[579]},{"name":"IDBInitialize","features":[579]},{"name":"IDBPromptInitialize","features":[579]},{"name":"IDBProperties","features":[579]},{"name":"IDBSchemaCommand","features":[579]},{"name":"IDBSchemaRowset","features":[579]},{"name":"IDCInfo","features":[579]},{"name":"IDENTIFIER_SDK_ERROR","features":[579]},{"name":"IDENTIFIER_SDK_MASK","features":[579]},{"name":"IDS_MON_BUILTIN_PROPERTY","features":[579]},{"name":"IDS_MON_BUILTIN_VIEW","features":[579]},{"name":"IDS_MON_CANNOT_CAST","features":[579]},{"name":"IDS_MON_CANNOT_CONVERT","features":[579]},{"name":"IDS_MON_COLUMN_NOT_DEFINED","features":[579]},{"name":"IDS_MON_DATE_OUT_OF_RANGE","features":[579]},{"name":"IDS_MON_DEFAULT_ERROR","features":[579]},{"name":"IDS_MON_ILLEGAL_PASSTHROUGH","features":[579]},{"name":"IDS_MON_INVALIDSELECT_COALESCE","features":[579]},{"name":"IDS_MON_INVALID_CATALOG","features":[579]},{"name":"IDS_MON_INVALID_IN_GROUP_CLAUSE","features":[579]},{"name":"IDS_MON_MATCH_STRING","features":[579]},{"name":"IDS_MON_NOT_COLUMN_OF_VIEW","features":[579]},{"name":"IDS_MON_ORDINAL_OUT_OF_RANGE","features":[579]},{"name":"IDS_MON_OR_NOT","features":[579]},{"name":"IDS_MON_OUT_OF_MEMORY","features":[579]},{"name":"IDS_MON_OUT_OF_RANGE","features":[579]},{"name":"IDS_MON_PARSE_ERR_1_PARAM","features":[579]},{"name":"IDS_MON_PARSE_ERR_2_PARAM","features":[579]},{"name":"IDS_MON_PROPERTY_NAME_IN_VIEW","features":[579]},{"name":"IDS_MON_RELATIVE_INTERVAL","features":[579]},{"name":"IDS_MON_SELECT_STAR","features":[579]},{"name":"IDS_MON_SEMI_COLON","features":[579]},{"name":"IDS_MON_VIEW_ALREADY_DEFINED","features":[579]},{"name":"IDS_MON_VIEW_NOT_DEFINED","features":[579]},{"name":"IDS_MON_WEIGHT_OUT_OF_RANGE","features":[579]},{"name":"IDX_E_BUILD_IN_PROGRESS","features":[579]},{"name":"IDX_E_CATALOG_DISMOUNTED","features":[579]},{"name":"IDX_E_CORRUPT_INDEX","features":[579]},{"name":"IDX_E_DISKFULL","features":[579]},{"name":"IDX_E_DOCUMENT_ABORTED","features":[579]},{"name":"IDX_E_DSS_NOT_CONNECTED","features":[579]},{"name":"IDX_E_IDXLSTFILE_CORRUPT","features":[579]},{"name":"IDX_E_INVALIDTAG","features":[579]},{"name":"IDX_E_INVALID_INDEX","features":[579]},{"name":"IDX_E_METAFILE_CORRUPT","features":[579]},{"name":"IDX_E_NOISELIST_NOTFOUND","features":[579]},{"name":"IDX_E_NOT_LOADED","features":[579]},{"name":"IDX_E_OBJECT_NOT_FOUND","features":[579]},{"name":"IDX_E_PROPSTORE_INIT_FAILED","features":[579]},{"name":"IDX_E_PROP_MAJOR_VERSION_MISMATCH","features":[579]},{"name":"IDX_E_PROP_MINOR_VERSION_MISMATCH","features":[579]},{"name":"IDX_E_PROP_STATE_CORRUPT","features":[579]},{"name":"IDX_E_PROP_STOPPED","features":[579]},{"name":"IDX_E_REGISTRY_ENTRY","features":[579]},{"name":"IDX_E_SEARCH_SERVER_ALREADY_EXISTS","features":[579]},{"name":"IDX_E_SEARCH_SERVER_NOT_FOUND","features":[579]},{"name":"IDX_E_STEMMER_NOTFOUND","features":[579]},{"name":"IDX_E_TOO_MANY_SEARCH_SERVERS","features":[579]},{"name":"IDX_E_USE_APPGLOBAL_PROPTABLE","features":[579]},{"name":"IDX_E_USE_DEFAULT_CONTENTCLASS","features":[579]},{"name":"IDX_E_WB_NOTFOUND","features":[579]},{"name":"IDX_S_DSS_NOT_AVAILABLE","features":[579]},{"name":"IDX_S_NO_BUILD_IN_PROGRESS","features":[579]},{"name":"IDX_S_SEARCH_SERVER_ALREADY_EXISTS","features":[579]},{"name":"IDX_S_SEARCH_SERVER_DOES_NOT_EXIST","features":[579]},{"name":"IDataConvert","features":[579]},{"name":"IDataInitialize","features":[579]},{"name":"IDataSourceLocator","features":[354,579]},{"name":"IEntity","features":[579]},{"name":"IEnumItemProperties","features":[579]},{"name":"IEnumSearchRoots","features":[579]},{"name":"IEnumSearchScopeRules","features":[579]},{"name":"IEnumSubscription","features":[579]},{"name":"IErrorLookup","features":[579]},{"name":"IErrorRecords","features":[579]},{"name":"IGetDataSource","features":[579]},{"name":"IGetRow","features":[579]},{"name":"IGetSession","features":[579]},{"name":"IGetSourceRow","features":[579]},{"name":"IIndexDefinition","features":[579]},{"name":"IInterval","features":[579]},{"name":"ILK_EXPLICIT_EXCLUDED","features":[579]},{"name":"ILK_EXPLICIT_INCLUDED","features":[579]},{"name":"ILK_NEGATIVE_INFINITY","features":[579]},{"name":"ILK_POSITIVE_INFINITY","features":[579]},{"name":"ILoadFilter","features":[579]},{"name":"ILoadFilterWithPrivateComActivation","features":[579]},{"name":"IMDDataset","features":[579]},{"name":"IMDFind","features":[579]},{"name":"IMDRangeRowset","features":[579]},{"name":"IMetaData","features":[579]},{"name":"IMultipleResults","features":[579]},{"name":"INCREMENTAL_ACCESS_INFO","features":[303,579]},{"name":"INET_E_AGENT_CACHE_SIZE_EXCEEDED","features":[579]},{"name":"INET_E_AGENT_CONNECTION_FAILED","features":[579]},{"name":"INET_E_AGENT_EXCEEDING_CACHE_SIZE","features":[579]},{"name":"INET_E_AGENT_MAX_SIZE_EXCEEDED","features":[579]},{"name":"INET_E_SCHEDULED_EXCLUDE_RANGE","features":[579]},{"name":"INET_E_SCHEDULED_UPDATES_DISABLED","features":[579]},{"name":"INET_E_SCHEDULED_UPDATES_RESTRICTED","features":[579]},{"name":"INET_E_SCHEDULED_UPDATE_INTERVAL","features":[579]},{"name":"INET_S_AGENT_INCREASED_CACHE_SIZE","features":[579]},{"name":"INET_S_AGENT_PART_FAIL","features":[579]},{"name":"INTERVAL_LIMIT_KIND","features":[579]},{"name":"INamedEntity","features":[579]},{"name":"INamedEntityCollector","features":[579]},{"name":"IObjectAccessControl","features":[579]},{"name":"IOpLockStatus","features":[579]},{"name":"IOpenRowset","features":[579]},{"name":"IParentRowset","features":[579]},{"name":"IProtocolHandlerSite","features":[579]},{"name":"IProvideMoniker","features":[579]},{"name":"IQueryParser","features":[579]},{"name":"IQueryParserManager","features":[579]},{"name":"IQuerySolution","features":[579]},{"name":"IReadData","features":[579]},{"name":"IRegisterProvider","features":[579]},{"name":"IRelationship","features":[579]},{"name":"IRichChunk","features":[579]},{"name":"IRow","features":[579]},{"name":"IRowChange","features":[579]},{"name":"IRowPosition","features":[579]},{"name":"IRowPositionChange","features":[579]},{"name":"IRowSchemaChange","features":[579]},{"name":"IRowset","features":[579]},{"name":"IRowsetAsynch","features":[579]},{"name":"IRowsetBookmark","features":[579]},{"name":"IRowsetChange","features":[579]},{"name":"IRowsetChangeExtInfo","features":[579]},{"name":"IRowsetChapterMember","features":[579]},{"name":"IRowsetCopyRows","features":[579]},{"name":"IRowsetCurrentIndex","features":[579]},{"name":"IRowsetEvents","features":[579]},{"name":"IRowsetExactScroll","features":[579]},{"name":"IRowsetFastLoad","features":[579]},{"name":"IRowsetFind","features":[579]},{"name":"IRowsetIdentity","features":[579]},{"name":"IRowsetIndex","features":[579]},{"name":"IRowsetInfo","features":[579]},{"name":"IRowsetKeys","features":[579]},{"name":"IRowsetLocate","features":[579]},{"name":"IRowsetNewRowAfter","features":[579]},{"name":"IRowsetNextRowset","features":[579]},{"name":"IRowsetNotify","features":[579]},{"name":"IRowsetPrioritization","features":[579]},{"name":"IRowsetQueryStatus","features":[579]},{"name":"IRowsetRefresh","features":[579]},{"name":"IRowsetResynch","features":[579]},{"name":"IRowsetScroll","features":[579]},{"name":"IRowsetUpdate","features":[579]},{"name":"IRowsetView","features":[579]},{"name":"IRowsetWatchAll","features":[579]},{"name":"IRowsetWatchNotify","features":[579]},{"name":"IRowsetWatchRegion","features":[579]},{"name":"IRowsetWithParameters","features":[579]},{"name":"ISQLErrorInfo","features":[579]},{"name":"ISQLGetDiagField","features":[579]},{"name":"ISQLRequestDiagFields","features":[579]},{"name":"ISQLServerErrorInfo","features":[579]},{"name":"ISchemaLocalizerSupport","features":[579]},{"name":"ISchemaLock","features":[579]},{"name":"ISchemaProvider","features":[579]},{"name":"IScopedOperations","features":[579]},{"name":"ISearchCatalogManager","features":[579]},{"name":"ISearchCatalogManager2","features":[579]},{"name":"ISearchCrawlScopeManager","features":[579]},{"name":"ISearchCrawlScopeManager2","features":[579]},{"name":"ISearchItemsChangedSink","features":[579]},{"name":"ISearchLanguageSupport","features":[579]},{"name":"ISearchManager","features":[579]},{"name":"ISearchManager2","features":[579]},{"name":"ISearchNotifyInlineSite","features":[579]},{"name":"ISearchPersistentItemsChangedSink","features":[579]},{"name":"ISearchProtocol","features":[579]},{"name":"ISearchProtocol2","features":[579]},{"name":"ISearchProtocolThreadContext","features":[579]},{"name":"ISearchQueryHelper","features":[579]},{"name":"ISearchQueryHits","features":[579]},{"name":"ISearchRoot","features":[579]},{"name":"ISearchScopeRule","features":[579]},{"name":"ISearchViewChangedSink","features":[579]},{"name":"ISecurityInfo","features":[579]},{"name":"IService","features":[579]},{"name":"ISessionProperties","features":[579]},{"name":"ISimpleCommandCreator","features":[579]},{"name":"ISourcesRowset","features":[579]},{"name":"IStemmer","features":[579]},{"name":"ISubscriptionItem","features":[579]},{"name":"ISubscriptionMgr","features":[579]},{"name":"ISubscriptionMgr2","features":[579]},{"name":"ITEMPROP","features":[579]},{"name":"ITEM_INFO","features":[579]},{"name":"ITableCreation","features":[579]},{"name":"ITableDefinition","features":[579]},{"name":"ITableDefinitionWithConstraints","features":[579]},{"name":"ITableRename","features":[579]},{"name":"ITokenCollection","features":[579]},{"name":"ITransactionJoin","features":[579]},{"name":"ITransactionLocal","features":[546,579]},{"name":"ITransactionObject","features":[579]},{"name":"ITrusteeAdmin","features":[579]},{"name":"ITrusteeGroupAdmin","features":[579]},{"name":"IUMS","features":[579]},{"name":"IUMSInitialize","features":[579]},{"name":"IUrlAccessor","features":[579]},{"name":"IUrlAccessor2","features":[579]},{"name":"IUrlAccessor3","features":[579]},{"name":"IUrlAccessor4","features":[579]},{"name":"IViewChapter","features":[579]},{"name":"IViewFilter","features":[579]},{"name":"IViewRowset","features":[579]},{"name":"IViewSort","features":[579]},{"name":"IWordBreaker","features":[579]},{"name":"IWordFormSink","features":[579]},{"name":"IWordSink","features":[579]},{"name":"Interval","features":[579]},{"name":"JET_GET_PROP_STORE_ERROR","features":[579]},{"name":"JET_INIT_ERROR","features":[579]},{"name":"JET_MULTIINSTANCE_DISABLED","features":[579]},{"name":"JET_NEW_PROP_STORE_ERROR","features":[579]},{"name":"JPS_E_CATALOG_DECSRIPTION_MISSING","features":[579]},{"name":"JPS_E_INSUFFICIENT_DATABASE_RESOURCES","features":[579]},{"name":"JPS_E_INSUFFICIENT_DATABASE_SESSIONS","features":[579]},{"name":"JPS_E_INSUFFICIENT_VERSION_STORAGE","features":[579]},{"name":"JPS_E_JET_ERR","features":[579]},{"name":"JPS_E_MISSING_INFORMATION","features":[579]},{"name":"JPS_E_PROPAGATION_CORRUPTION","features":[579]},{"name":"JPS_E_PROPAGATION_FILE","features":[579]},{"name":"JPS_E_PROPAGATION_VERSION_MISMATCH","features":[579]},{"name":"JPS_E_SCHEMA_ERROR","features":[579]},{"name":"JPS_E_SHARING_VIOLATION","features":[579]},{"name":"JPS_S_DUPLICATE_DOC_DETECTED","features":[579]},{"name":"KAGGETDIAG","features":[579]},{"name":"KAGPROPVAL_CONCUR_LOCK","features":[579]},{"name":"KAGPROPVAL_CONCUR_READ_ONLY","features":[579]},{"name":"KAGPROPVAL_CONCUR_ROWVER","features":[579]},{"name":"KAGPROPVAL_CONCUR_VALUES","features":[579]},{"name":"KAGPROP_ACCESSIBLEPROCEDURES","features":[579]},{"name":"KAGPROP_ACCESSIBLETABLES","features":[579]},{"name":"KAGPROP_ACTIVESTATEMENTS","features":[579]},{"name":"KAGPROP_AUTH_SERVERINTEGRATED","features":[579]},{"name":"KAGPROP_AUTH_TRUSTEDCONNECTION","features":[579]},{"name":"KAGPROP_BLOBSONFOCURSOR","features":[579]},{"name":"KAGPROP_CONCURRENCY","features":[579]},{"name":"KAGPROP_CURSOR","features":[579]},{"name":"KAGPROP_DRIVERNAME","features":[579]},{"name":"KAGPROP_DRIVERODBCVER","features":[579]},{"name":"KAGPROP_DRIVERVER","features":[579]},{"name":"KAGPROP_FILEUSAGE","features":[579]},{"name":"KAGPROP_FORCENOPARAMETERREBIND","features":[579]},{"name":"KAGPROP_FORCENOPREPARE","features":[579]},{"name":"KAGPROP_FORCENOREEXECUTE","features":[579]},{"name":"KAGPROP_FORCESSFIREHOSEMODE","features":[579]},{"name":"KAGPROP_INCLUDENONEXACT","features":[579]},{"name":"KAGPROP_IRowsetChangeExtInfo","features":[579]},{"name":"KAGPROP_LIKEESCAPECLAUSE","features":[579]},{"name":"KAGPROP_MARSHALLABLE","features":[579]},{"name":"KAGPROP_MAXCOLUMNSINGROUPBY","features":[579]},{"name":"KAGPROP_MAXCOLUMNSININDEX","features":[579]},{"name":"KAGPROP_MAXCOLUMNSINORDERBY","features":[579]},{"name":"KAGPROP_MAXCOLUMNSINSELECT","features":[579]},{"name":"KAGPROP_MAXCOLUMNSINTABLE","features":[579]},{"name":"KAGPROP_NUMERICFUNCTIONS","features":[579]},{"name":"KAGPROP_ODBCSQLCONFORMANCE","features":[579]},{"name":"KAGPROP_ODBCSQLOPTIEF","features":[579]},{"name":"KAGPROP_OJCAPABILITY","features":[579]},{"name":"KAGPROP_OUTERJOINS","features":[579]},{"name":"KAGPROP_POSITIONONNEWROW","features":[579]},{"name":"KAGPROP_PROCEDURES","features":[579]},{"name":"KAGPROP_QUERYBASEDUPDATES","features":[579]},{"name":"KAGPROP_SPECIALCHARACTERS","features":[579]},{"name":"KAGPROP_STRINGFUNCTIONS","features":[579]},{"name":"KAGPROP_SYSTEMFUNCTIONS","features":[579]},{"name":"KAGPROP_TIMEDATEFUNCTIONS","features":[579]},{"name":"KAGREQDIAG","features":[579,378]},{"name":"KAGREQDIAGFLAGSENUM","features":[579]},{"name":"KAGREQDIAGFLAGS_HEADER","features":[579]},{"name":"KAGREQDIAGFLAGS_RECORD","features":[579]},{"name":"LOCKMODEENUM","features":[579]},{"name":"LOCKMODE_EXCLUSIVE","features":[579]},{"name":"LOCKMODE_INVALID","features":[579]},{"name":"LOCKMODE_SHARED","features":[579]},{"name":"LeafCondition","features":[579]},{"name":"MAXNAME","features":[579]},{"name":"MAXNUMERICLEN","features":[579]},{"name":"MAXUSEVERITY","features":[579]},{"name":"MAX_QUERY_RANK","features":[579]},{"name":"MDAXISINFO","features":[579]},{"name":"MDAXISINFO","features":[579]},{"name":"MDAXIS_CHAPTERS","features":[579]},{"name":"MDAXIS_COLUMNS","features":[579]},{"name":"MDAXIS_PAGES","features":[579]},{"name":"MDAXIS_ROWS","features":[579]},{"name":"MDAXIS_SECTIONS","features":[579]},{"name":"MDAXIS_SLICERS","features":[579]},{"name":"MDDISPINFO_DRILLED_DOWN","features":[579]},{"name":"MDDISPINFO_PARENT_SAME_AS_PREV","features":[579]},{"name":"MDFF_BOLD","features":[579]},{"name":"MDFF_ITALIC","features":[579]},{"name":"MDFF_STRIKEOUT","features":[579]},{"name":"MDFF_UNDERLINE","features":[579]},{"name":"MDLEVEL_TYPE_ALL","features":[579]},{"name":"MDLEVEL_TYPE_CALCULATED","features":[579]},{"name":"MDLEVEL_TYPE_REGULAR","features":[579]},{"name":"MDLEVEL_TYPE_RESERVED1","features":[579]},{"name":"MDLEVEL_TYPE_TIME","features":[579]},{"name":"MDLEVEL_TYPE_TIME_DAYS","features":[579]},{"name":"MDLEVEL_TYPE_TIME_HALF_YEAR","features":[579]},{"name":"MDLEVEL_TYPE_TIME_HOURS","features":[579]},{"name":"MDLEVEL_TYPE_TIME_MINUTES","features":[579]},{"name":"MDLEVEL_TYPE_TIME_MONTHS","features":[579]},{"name":"MDLEVEL_TYPE_TIME_QUARTERS","features":[579]},{"name":"MDLEVEL_TYPE_TIME_SECONDS","features":[579]},{"name":"MDLEVEL_TYPE_TIME_UNDEFINED","features":[579]},{"name":"MDLEVEL_TYPE_TIME_WEEKS","features":[579]},{"name":"MDLEVEL_TYPE_TIME_YEARS","features":[579]},{"name":"MDLEVEL_TYPE_UNKNOWN","features":[579]},{"name":"MDMEASURE_AGGR_AVG","features":[579]},{"name":"MDMEASURE_AGGR_CALCULATED","features":[579]},{"name":"MDMEASURE_AGGR_COUNT","features":[579]},{"name":"MDMEASURE_AGGR_MAX","features":[579]},{"name":"MDMEASURE_AGGR_MIN","features":[579]},{"name":"MDMEASURE_AGGR_STD","features":[579]},{"name":"MDMEASURE_AGGR_SUM","features":[579]},{"name":"MDMEASURE_AGGR_UNKNOWN","features":[579]},{"name":"MDMEASURE_AGGR_VAR","features":[579]},{"name":"MDMEMBER_TYPE_ALL","features":[579]},{"name":"MDMEMBER_TYPE_FORMULA","features":[579]},{"name":"MDMEMBER_TYPE_MEASURE","features":[579]},{"name":"MDMEMBER_TYPE_REGULAR","features":[579]},{"name":"MDMEMBER_TYPE_RESERVE1","features":[579]},{"name":"MDMEMBER_TYPE_RESERVE2","features":[579]},{"name":"MDMEMBER_TYPE_RESERVE3","features":[579]},{"name":"MDMEMBER_TYPE_RESERVE4","features":[579]},{"name":"MDMEMBER_TYPE_UNKNOWN","features":[579]},{"name":"MDPROPVAL_AU_UNCHANGED","features":[579]},{"name":"MDPROPVAL_AU_UNKNOWN","features":[579]},{"name":"MDPROPVAL_AU_UNSUPPORTED","features":[579]},{"name":"MDPROPVAL_FS_FULL_SUPPORT","features":[579]},{"name":"MDPROPVAL_FS_GENERATED_COLUMN","features":[579]},{"name":"MDPROPVAL_FS_GENERATED_DIMENSION","features":[579]},{"name":"MDPROPVAL_FS_NO_SUPPORT","features":[579]},{"name":"MDPROPVAL_MC_SEARCHEDCASE","features":[579]},{"name":"MDPROPVAL_MC_SINGLECASE","features":[579]},{"name":"MDPROPVAL_MD_AFTER","features":[579]},{"name":"MDPROPVAL_MD_BEFORE","features":[579]},{"name":"MDPROPVAL_MD_SELF","features":[579]},{"name":"MDPROPVAL_MF_CREATE_CALCMEMBERS","features":[579]},{"name":"MDPROPVAL_MF_CREATE_NAMEDSETS","features":[579]},{"name":"MDPROPVAL_MF_SCOPE_GLOBAL","features":[579]},{"name":"MDPROPVAL_MF_SCOPE_SESSION","features":[579]},{"name":"MDPROPVAL_MF_WITH_CALCMEMBERS","features":[579]},{"name":"MDPROPVAL_MF_WITH_NAMEDSETS","features":[579]},{"name":"MDPROPVAL_MJC_IMPLICITCUBE","features":[579]},{"name":"MDPROPVAL_MJC_MULTICUBES","features":[579]},{"name":"MDPROPVAL_MJC_SINGLECUBE","features":[579]},{"name":"MDPROPVAL_MMF_CLOSINGPERIOD","features":[579]},{"name":"MDPROPVAL_MMF_COUSIN","features":[579]},{"name":"MDPROPVAL_MMF_OPENINGPERIOD","features":[579]},{"name":"MDPROPVAL_MMF_PARALLELPERIOD","features":[579]},{"name":"MDPROPVAL_MNF_AGGREGATE","features":[579]},{"name":"MDPROPVAL_MNF_CORRELATION","features":[579]},{"name":"MDPROPVAL_MNF_COVARIANCE","features":[579]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVEL","features":[579]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELBOTTOM","features":[579]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELTOP","features":[579]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERBOTTOM","features":[579]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERTOP","features":[579]},{"name":"MDPROPVAL_MNF_DRILLUPLEVEL","features":[579]},{"name":"MDPROPVAL_MNF_DRILLUPMEMBER","features":[579]},{"name":"MDPROPVAL_MNF_LINREG2","features":[579]},{"name":"MDPROPVAL_MNF_LINREGPOINT","features":[579]},{"name":"MDPROPVAL_MNF_LINREGSLOPE","features":[579]},{"name":"MDPROPVAL_MNF_LINREGVARIANCE","features":[579]},{"name":"MDPROPVAL_MNF_MEDIAN","features":[579]},{"name":"MDPROPVAL_MNF_RANK","features":[579]},{"name":"MDPROPVAL_MNF_STDDEV","features":[579]},{"name":"MDPROPVAL_MNF_VAR","features":[579]},{"name":"MDPROPVAL_MOQ_CATALOG_CUBE","features":[579]},{"name":"MDPROPVAL_MOQ_CUBE_DIM","features":[579]},{"name":"MDPROPVAL_MOQ_DATASOURCE_CUBE","features":[579]},{"name":"MDPROPVAL_MOQ_DIMHIER_LEVEL","features":[579]},{"name":"MDPROPVAL_MOQ_DIMHIER_MEMBER","features":[579]},{"name":"MDPROPVAL_MOQ_DIM_HIER","features":[579]},{"name":"MDPROPVAL_MOQ_LEVEL_MEMBER","features":[579]},{"name":"MDPROPVAL_MOQ_MEMBER_MEMBER","features":[579]},{"name":"MDPROPVAL_MOQ_OUTERREFERENCE","features":[579]},{"name":"MDPROPVAL_MOQ_SCHEMA_CUBE","features":[579]},{"name":"MDPROPVAL_MSC_GREATERTHAN","features":[579]},{"name":"MDPROPVAL_MSC_GREATERTHANEQUAL","features":[579]},{"name":"MDPROPVAL_MSC_LESSTHAN","features":[579]},{"name":"MDPROPVAL_MSC_LESSTHANEQUAL","features":[579]},{"name":"MDPROPVAL_MSF_BOTTOMPERCENT","features":[579]},{"name":"MDPROPVAL_MSF_BOTTOMSUM","features":[579]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVEL","features":[579]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELBOTTOM","features":[579]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELTOP","features":[579]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBBER","features":[579]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERBOTTOM","features":[579]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERTOP","features":[579]},{"name":"MDPROPVAL_MSF_DRILLUPLEVEL","features":[579]},{"name":"MDPROPVAL_MSF_DRILLUPMEMBER","features":[579]},{"name":"MDPROPVAL_MSF_LASTPERIODS","features":[579]},{"name":"MDPROPVAL_MSF_MTD","features":[579]},{"name":"MDPROPVAL_MSF_PERIODSTODATE","features":[579]},{"name":"MDPROPVAL_MSF_QTD","features":[579]},{"name":"MDPROPVAL_MSF_TOGGLEDRILLSTATE","features":[579]},{"name":"MDPROPVAL_MSF_TOPPERCENT","features":[579]},{"name":"MDPROPVAL_MSF_TOPSUM","features":[579]},{"name":"MDPROPVAL_MSF_WTD","features":[579]},{"name":"MDPROPVAL_MSF_YTD","features":[579]},{"name":"MDPROPVAL_MS_MULTIPLETUPLES","features":[579]},{"name":"MDPROPVAL_MS_SINGLETUPLE","features":[579]},{"name":"MDPROPVAL_NL_NAMEDLEVELS","features":[579]},{"name":"MDPROPVAL_NL_NUMBEREDLEVELS","features":[579]},{"name":"MDPROPVAL_NL_SCHEMAONLY","features":[579]},{"name":"MDPROPVAL_NME_ALLDIMENSIONS","features":[579]},{"name":"MDPROPVAL_NME_MEASURESONLY","features":[579]},{"name":"MDPROPVAL_RR_NORANGEROWSET","features":[579]},{"name":"MDPROPVAL_RR_READONLY","features":[579]},{"name":"MDPROPVAL_RR_UPDATE","features":[579]},{"name":"MDPROPVAL_VISUAL_MODE_DEFAULT","features":[579]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL","features":[579]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL_OFF","features":[579]},{"name":"MDPROP_AGGREGATECELL_UPDATE","features":[579]},{"name":"MDPROP_AXES","features":[579]},{"name":"MDPROP_CELL","features":[579]},{"name":"MDPROP_FLATTENING_SUPPORT","features":[579]},{"name":"MDPROP_MDX_AGGREGATECELL_UPDATE","features":[579]},{"name":"MDPROP_MDX_CASESUPPORT","features":[579]},{"name":"MDPROP_MDX_CUBEQUALIFICATION","features":[579]},{"name":"MDPROP_MDX_DESCFLAGS","features":[579]},{"name":"MDPROP_MDX_FORMULAS","features":[579]},{"name":"MDPROP_MDX_JOINCUBES","features":[579]},{"name":"MDPROP_MDX_MEMBER_FUNCTIONS","features":[579]},{"name":"MDPROP_MDX_NONMEASURE_EXPRESSIONS","features":[579]},{"name":"MDPROP_MDX_NUMERIC_FUNCTIONS","features":[579]},{"name":"MDPROP_MDX_OBJQUALIFICATION","features":[579]},{"name":"MDPROP_MDX_OUTERREFERENCE","features":[579]},{"name":"MDPROP_MDX_QUERYBYPROPERTY","features":[579]},{"name":"MDPROP_MDX_SET_FUNCTIONS","features":[579]},{"name":"MDPROP_MDX_SLICER","features":[579]},{"name":"MDPROP_MDX_STRING_COMPOP","features":[579]},{"name":"MDPROP_MEMBER","features":[579]},{"name":"MDPROP_NAMED_LEVELS","features":[579]},{"name":"MDPROP_RANGEROWSET","features":[579]},{"name":"MDPROP_VISUALMODE","features":[579]},{"name":"MDSTATUS_S_CELLEMPTY","features":[579]},{"name":"MDTREEOP_ANCESTORS","features":[579]},{"name":"MDTREEOP_CHILDREN","features":[579]},{"name":"MDTREEOP_DESCENDANTS","features":[579]},{"name":"MDTREEOP_PARENT","features":[579]},{"name":"MDTREEOP_SELF","features":[579]},{"name":"MDTREEOP_SIBLINGS","features":[579]},{"name":"MD_DIMTYPE_MEASURE","features":[579]},{"name":"MD_DIMTYPE_OTHER","features":[579]},{"name":"MD_DIMTYPE_TIME","features":[579]},{"name":"MD_DIMTYPE_UNKNOWN","features":[579]},{"name":"MD_E_BADCOORDINATE","features":[579]},{"name":"MD_E_BADTUPLE","features":[579]},{"name":"MD_E_INVALIDAXIS","features":[579]},{"name":"MD_E_INVALIDCELLRANGE","features":[579]},{"name":"MINFATALERR","features":[579]},{"name":"MIN_USER_DATATYPE","features":[579]},{"name":"MSDAINITIALIZE","features":[579]},{"name":"MSDAORA","features":[579]},{"name":"MSDAORA8","features":[579]},{"name":"MSDAORA8_ERROR","features":[579]},{"name":"MSDAORA_ERROR","features":[579]},{"name":"MSDSDBINITPROPENUM","features":[579]},{"name":"MSDSSESSIONPROPENUM","features":[579]},{"name":"MSG_CI_CORRUPT_INDEX_COMPONENT","features":[579]},{"name":"MSG_CI_CREATE_SEVER_ITEM_FAILED","features":[579]},{"name":"MSG_CI_MASTER_MERGE_ABORTED","features":[579]},{"name":"MSG_CI_MASTER_MERGE_ABORTED_LOW_DISK","features":[579]},{"name":"MSG_CI_MASTER_MERGE_CANT_RESTART","features":[579]},{"name":"MSG_CI_MASTER_MERGE_CANT_START","features":[579]},{"name":"MSG_CI_MASTER_MERGE_COMPLETED","features":[579]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXPECTED_DOCS","features":[579]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXTERNAL","features":[579]},{"name":"MSG_CI_MASTER_MERGE_REASON_INDEX_LIMIT","features":[579]},{"name":"MSG_CI_MASTER_MERGE_REASON_NUMBER","features":[579]},{"name":"MSG_CI_MASTER_MERGE_RESTARTED","features":[579]},{"name":"MSG_CI_MASTER_MERGE_STARTED","features":[579]},{"name":"MSG_TEST_MESSAGE","features":[579]},{"name":"MSS_E_APPALREADYEXISTS","features":[579]},{"name":"MSS_E_APPNOTFOUND","features":[579]},{"name":"MSS_E_CATALOGALREADYEXISTS","features":[579]},{"name":"MSS_E_CATALOGNOTFOUND","features":[579]},{"name":"MSS_E_CATALOGSTOPPING","features":[579]},{"name":"MSS_E_INVALIDAPPNAME","features":[579]},{"name":"MSS_E_UNICODEFILEHEADERMISSING","features":[579]},{"name":"MS_PERSIST_PROGID","features":[579]},{"name":"NAMED_ENTITY_CERTAINTY","features":[579]},{"name":"NATLANGUAGERESTRICTION","features":[507,427,579]},{"name":"NEC_HIGH","features":[579]},{"name":"NEC_LOW","features":[579]},{"name":"NEC_MEDIUM","features":[579]},{"name":"NET_E_DISCONNECTED","features":[579]},{"name":"NET_E_GENERAL","features":[579]},{"name":"NET_E_INVALIDPARAMS","features":[579]},{"name":"NET_E_OPERATIONINPROGRESS","features":[579]},{"name":"NLADMIN_E_BUILD_CATALOG_NOT_INITIALIZED","features":[579]},{"name":"NLADMIN_E_DUPLICATE_CATALOG","features":[579]},{"name":"NLADMIN_E_FAILED_TO_GIVE_ACCOUNT_PRIVILEGE","features":[579]},{"name":"NLADMIN_S_NOT_ALL_BUILD_CATALOGS_INITIALIZED","features":[579]},{"name":"NODERESTRICTION","features":[507,427,579]},{"name":"NOTESPH_E_ATTACHMENTS","features":[579]},{"name":"NOTESPH_E_DB_ACCESS_DENIED","features":[579]},{"name":"NOTESPH_E_FAIL","features":[579]},{"name":"NOTESPH_E_ITEM_NOT_FOUND","features":[579]},{"name":"NOTESPH_E_NOTESSETUP_ID_MAPPING_ERROR","features":[579]},{"name":"NOTESPH_E_NO_NTID","features":[579]},{"name":"NOTESPH_E_SERVER_CONFIG","features":[579]},{"name":"NOTESPH_E_UNEXPECTED_STATE","features":[579]},{"name":"NOTESPH_E_UNSUPPORTED_CONTENT_FIELD_TYPE","features":[579]},{"name":"NOTESPH_S_IGNORE_ID","features":[579]},{"name":"NOTESPH_S_LISTKNOWNFIELDS","features":[579]},{"name":"NOTRESTRICTION","features":[507,427,579]},{"name":"NOT_N_PARSE_ERROR","features":[579]},{"name":"NegationCondition","features":[579]},{"name":"OCC_INVALID","features":[579]},{"name":"ODBCGetTryWaitValue","features":[579]},{"name":"ODBCSetTryWaitValue","features":[303,579]},{"name":"ODBCVER","features":[579]},{"name":"ODBC_ADD_DSN","features":[579]},{"name":"ODBC_ADD_SYS_DSN","features":[579]},{"name":"ODBC_BOTH_DSN","features":[579]},{"name":"ODBC_CONFIG_DRIVER","features":[579]},{"name":"ODBC_CONFIG_DRIVER_MAX","features":[579]},{"name":"ODBC_CONFIG_DSN","features":[579]},{"name":"ODBC_CONFIG_SYS_DSN","features":[579]},{"name":"ODBC_ERROR_COMPONENT_NOT_FOUND","features":[579]},{"name":"ODBC_ERROR_CREATE_DSN_FAILED","features":[579]},{"name":"ODBC_ERROR_GENERAL_ERR","features":[579]},{"name":"ODBC_ERROR_INVALID_BUFF_LEN","features":[579]},{"name":"ODBC_ERROR_INVALID_DSN","features":[579]},{"name":"ODBC_ERROR_INVALID_HWND","features":[579]},{"name":"ODBC_ERROR_INVALID_INF","features":[579]},{"name":"ODBC_ERROR_INVALID_KEYWORD_VALUE","features":[579]},{"name":"ODBC_ERROR_INVALID_LOG_FILE","features":[579]},{"name":"ODBC_ERROR_INVALID_NAME","features":[579]},{"name":"ODBC_ERROR_INVALID_PARAM_SEQUENCE","features":[579]},{"name":"ODBC_ERROR_INVALID_PATH","features":[579]},{"name":"ODBC_ERROR_INVALID_REQUEST_TYPE","features":[579]},{"name":"ODBC_ERROR_INVALID_STR","features":[579]},{"name":"ODBC_ERROR_LOAD_LIB_FAILED","features":[579]},{"name":"ODBC_ERROR_MAX","features":[579]},{"name":"ODBC_ERROR_NOTRANINFO","features":[579]},{"name":"ODBC_ERROR_OUTPUT_STRING_TRUNCATED","features":[579]},{"name":"ODBC_ERROR_OUT_OF_MEM","features":[579]},{"name":"ODBC_ERROR_REMOVE_DSN_FAILED","features":[579]},{"name":"ODBC_ERROR_REQUEST_FAILED","features":[579]},{"name":"ODBC_ERROR_USAGE_UPDATE_FAILED","features":[579]},{"name":"ODBC_ERROR_USER_CANCELED","features":[579]},{"name":"ODBC_ERROR_WRITING_SYSINFO_FAILED","features":[579]},{"name":"ODBC_INSTALL_COMPLETE","features":[579]},{"name":"ODBC_INSTALL_DRIVER","features":[579]},{"name":"ODBC_INSTALL_INQUIRY","features":[579]},{"name":"ODBC_REMOVE_DEFAULT_DSN","features":[579]},{"name":"ODBC_REMOVE_DRIVER","features":[579]},{"name":"ODBC_REMOVE_DSN","features":[579]},{"name":"ODBC_REMOVE_SYS_DSN","features":[579]},{"name":"ODBC_SYSTEM_DSN","features":[579]},{"name":"ODBC_USER_DSN","features":[579]},{"name":"ODBC_VS_ARGS","features":[579]},{"name":"ODBC_VS_FLAG_RETCODE","features":[579]},{"name":"ODBC_VS_FLAG_STOP","features":[579]},{"name":"ODBC_VS_FLAG_UNICODE_ARG","features":[579]},{"name":"ODBC_VS_FLAG_UNICODE_COR","features":[579]},{"name":"OLEDBSimpleProvider","features":[579]},{"name":"OLEDBSimpleProviderListener","features":[579]},{"name":"OLEDBVER","features":[579]},{"name":"OLEDB_BINDER_CUSTOM_ERROR","features":[579]},{"name":"OSPCOMP","features":[579]},{"name":"OSPCOMP_DEFAULT","features":[579]},{"name":"OSPCOMP_EQ","features":[579]},{"name":"OSPCOMP_GE","features":[579]},{"name":"OSPCOMP_GT","features":[579]},{"name":"OSPCOMP_LE","features":[579]},{"name":"OSPCOMP_LT","features":[579]},{"name":"OSPCOMP_NE","features":[579]},{"name":"OSPFIND","features":[579]},{"name":"OSPFIND_CASESENSITIVE","features":[579]},{"name":"OSPFIND_DEFAULT","features":[579]},{"name":"OSPFIND_UP","features":[579]},{"name":"OSPFIND_UPCASESENSITIVE","features":[579]},{"name":"OSPFORMAT","features":[579]},{"name":"OSPFORMAT_DEFAULT","features":[579]},{"name":"OSPFORMAT_FORMATTED","features":[579]},{"name":"OSPFORMAT_HTML","features":[579]},{"name":"OSPFORMAT_RAW","features":[579]},{"name":"OSPRW","features":[579]},{"name":"OSPRW_DEFAULT","features":[579]},{"name":"OSPRW_MIXED","features":[579]},{"name":"OSPRW_READONLY","features":[579]},{"name":"OSPRW_READWRITE","features":[579]},{"name":"OSPXFER","features":[579]},{"name":"OSPXFER_ABORT","features":[579]},{"name":"OSPXFER_COMPLETE","features":[579]},{"name":"OSPXFER_ERROR","features":[579]},{"name":"OSP_IndexLabel","features":[579]},{"name":"PDPO","features":[579]},{"name":"PEOPLE_IMPORT_E_CANONICALURL_TOOLONG","features":[579]},{"name":"PEOPLE_IMPORT_E_DATATYPENOTSUPPORTED","features":[579]},{"name":"PEOPLE_IMPORT_E_DBCONNFAIL","features":[579]},{"name":"PEOPLE_IMPORT_E_DC_NOT_AVAILABLE","features":[579]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_NOTREFRESHED","features":[579]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_ZERO_COOKIE","features":[579]},{"name":"PEOPLE_IMPORT_E_DOMAIN_DISCOVER_FAILED","features":[579]},{"name":"PEOPLE_IMPORT_E_DOMAIN_REMOVED","features":[579]},{"name":"PEOPLE_IMPORT_E_ENUM_ACCESSDENIED","features":[579]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSDEF","features":[579]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSMAPPING","features":[579]},{"name":"PEOPLE_IMPORT_E_FAILTOGETLCID","features":[579]},{"name":"PEOPLE_IMPORT_E_LDAPPATH_TOOLONG","features":[579]},{"name":"PEOPLE_IMPORT_E_NOCASTINGSUPPORTED","features":[579]},{"name":"PEOPLE_IMPORT_E_UPDATE_DIRSYNC_COOKIE","features":[579]},{"name":"PEOPLE_IMPORT_E_USERNAME_NOTRESOLVED","features":[579]},{"name":"PEOPLE_IMPORT_NODSDEFINED","features":[579]},{"name":"PEOPLE_IMPORT_NOMAPPINGDEFINED","features":[579]},{"name":"PERM_ALL","features":[579]},{"name":"PERM_CREATE","features":[579]},{"name":"PERM_DELETE","features":[579]},{"name":"PERM_DROP","features":[579]},{"name":"PERM_EXCLUSIVE","features":[579]},{"name":"PERM_EXECUTE","features":[579]},{"name":"PERM_INSERT","features":[579]},{"name":"PERM_MAXIMUM_ALLOWED","features":[579]},{"name":"PERM_READ","features":[579]},{"name":"PERM_READCONTROL","features":[579]},{"name":"PERM_READDESIGN","features":[579]},{"name":"PERM_REFERENCE","features":[579]},{"name":"PERM_UPDATE","features":[579]},{"name":"PERM_WITHGRANT","features":[579]},{"name":"PERM_WRITEDESIGN","features":[579]},{"name":"PERM_WRITEOWNER","features":[579]},{"name":"PERM_WRITEPERMISSIONS","features":[579]},{"name":"PFNFILLTEXTBUFFER","features":[579]},{"name":"PRAll","features":[579]},{"name":"PRAllBits","features":[579]},{"name":"PRAny","features":[579]},{"name":"PRIORITIZE_FLAGS","features":[579]},{"name":"PRIORITIZE_FLAG_IGNOREFAILURECOUNT","features":[579]},{"name":"PRIORITIZE_FLAG_RETRYFAILEDITEMS","features":[579]},{"name":"PRIORITY_LEVEL","features":[579]},{"name":"PRIORITY_LEVEL_DEFAULT","features":[579]},{"name":"PRIORITY_LEVEL_FOREGROUND","features":[579]},{"name":"PRIORITY_LEVEL_HIGH","features":[579]},{"name":"PRIORITY_LEVEL_LOW","features":[579]},{"name":"PROGID_MSPersist_Version_W","features":[579]},{"name":"PROGID_MSPersist_W","features":[579]},{"name":"PROPERTYRESTRICTION","features":[507,427,579]},{"name":"PROPID_DBBMK_BOOKMARK","features":[579]},{"name":"PROPID_DBBMK_CHAPTER","features":[579]},{"name":"PROPID_DBSELF_SELF","features":[579]},{"name":"PROXY_ACCESS","features":[579]},{"name":"PROXY_ACCESS_DIRECT","features":[579]},{"name":"PROXY_ACCESS_PRECONFIG","features":[579]},{"name":"PROXY_ACCESS_PROXY","features":[579]},{"name":"PROXY_INFO","features":[303,579]},{"name":"PRRE","features":[579]},{"name":"PRSomeBits","features":[579]},{"name":"PRTH_E_ACCESS_DENIED","features":[579]},{"name":"PRTH_E_ACL_IS_READ_NONE","features":[579]},{"name":"PRTH_E_ACL_TOO_BIG","features":[579]},{"name":"PRTH_E_BAD_REQUEST","features":[579]},{"name":"PRTH_E_CANT_TRANSFORM_DENIED_ACE","features":[579]},{"name":"PRTH_E_CANT_TRANSFORM_EXTERNAL_ACL","features":[579]},{"name":"PRTH_E_COMM_ERROR","features":[579]},{"name":"PRTH_E_DATABASE_OPEN_ERROR","features":[579]},{"name":"PRTH_E_HTTPS_CERTIFICATE_ERROR","features":[579]},{"name":"PRTH_E_HTTPS_REQUIRE_CERTIFICATE","features":[579]},{"name":"PRTH_E_HTTP_CANNOT_CONNECT","features":[579]},{"name":"PRTH_E_INIT_FAILED","features":[579]},{"name":"PRTH_E_INTERNAL_ERROR","features":[579]},{"name":"PRTH_E_LOAD_FAILED","features":[579]},{"name":"PRTH_E_MIME_EXCLUDED","features":[579]},{"name":"PRTH_E_NOT_REDIRECTED","features":[579]},{"name":"PRTH_E_NO_PROPERTY","features":[579]},{"name":"PRTH_E_OBJ_NOT_FOUND","features":[579]},{"name":"PRTH_E_OPLOCK_BROKEN","features":[579]},{"name":"PRTH_E_REQUEST_ERROR","features":[579]},{"name":"PRTH_E_RETRY","features":[579]},{"name":"PRTH_E_SERVER_ERROR","features":[579]},{"name":"PRTH_E_TRUNCATED","features":[579]},{"name":"PRTH_E_VOLUME_MOUNT_POINT","features":[579]},{"name":"PRTH_E_WININET","features":[579]},{"name":"PRTH_S_ACL_IS_READ_EVERYONE","features":[579]},{"name":"PRTH_S_MAX_DOWNLOAD","features":[579]},{"name":"PRTH_S_MAX_GROWTH","features":[579]},{"name":"PRTH_S_NOT_ALL_PARTS","features":[579]},{"name":"PRTH_S_NOT_MODIFIED","features":[579]},{"name":"PRTH_S_TRY_IMPERSONATING","features":[579]},{"name":"PRTH_S_USE_ROSEBUD","features":[579]},{"name":"PSGUID_CHARACTERIZATION","features":[579]},{"name":"PSGUID_QUERY_METADATA","features":[579]},{"name":"PSGUID_STORAGE","features":[579]},{"name":"PWPROP_OSPVALUE","features":[579]},{"name":"QPMO_APPEND_LCID_TO_LOCALIZED_PATH","features":[579]},{"name":"QPMO_LOCALIZED_SCHEMA_BINARY_PATH","features":[579]},{"name":"QPMO_LOCALIZER_SUPPORT","features":[579]},{"name":"QPMO_PRELOCALIZED_SCHEMA_BINARY_PATH","features":[579]},{"name":"QPMO_SCHEMA_BINARY_NAME","features":[579]},{"name":"QPMO_UNLOCALIZED_SCHEMA_BINARY_PATH","features":[579]},{"name":"QRY_E_COLUMNNOTSEARCHABLE","features":[579]},{"name":"QRY_E_COLUMNNOTSORTABLE","features":[579]},{"name":"QRY_E_ENGINEFAILED","features":[579]},{"name":"QRY_E_INFIXWILDCARD","features":[579]},{"name":"QRY_E_INVALIDCATALOG","features":[579]},{"name":"QRY_E_INVALIDCOLUMN","features":[579]},{"name":"QRY_E_INVALIDINTERVAL","features":[579]},{"name":"QRY_E_INVALIDPATH","features":[579]},{"name":"QRY_E_INVALIDSCOPES","features":[579]},{"name":"QRY_E_LMNOTINITIALIZED","features":[579]},{"name":"QRY_E_NOCOLUMNS","features":[579]},{"name":"QRY_E_NODATASOURCES","features":[579]},{"name":"QRY_E_NOLOGMANAGER","features":[579]},{"name":"QRY_E_NULLQUERY","features":[579]},{"name":"QRY_E_PREFIXWILDCARD","features":[579]},{"name":"QRY_E_QUERYCORRUPT","features":[579]},{"name":"QRY_E_QUERYSYNTAX","features":[579]},{"name":"QRY_E_SCOPECARDINALIDY","features":[579]},{"name":"QRY_E_SEARCHTOOBIG","features":[579]},{"name":"QRY_E_STARTHITTOBIG","features":[579]},{"name":"QRY_E_TIMEOUT","features":[579]},{"name":"QRY_E_TOOMANYCOLUMNS","features":[579]},{"name":"QRY_E_TOOMANYDATABASES","features":[579]},{"name":"QRY_E_TOOMANYQUERYTERMS","features":[579]},{"name":"QRY_E_TYPEMISMATCH","features":[579]},{"name":"QRY_E_UNEXPECTED","features":[579]},{"name":"QRY_E_UNHANDLEDTYPE","features":[579]},{"name":"QRY_E_WILDCARDPREFIXLENGTH","features":[579]},{"name":"QRY_S_INEXACTRESULTS","features":[579]},{"name":"QRY_S_NOROWSFOUND","features":[579]},{"name":"QRY_S_TERMIGNORED","features":[579]},{"name":"QUERY_E_AGGREGATE_NOT_SUPPORTED","features":[579]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELDOC","features":[579]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELPROP","features":[579]},{"name":"QUERY_E_DUPLICATE_RANGE_NAME","features":[579]},{"name":"QUERY_E_INCORRECT_VERSION","features":[579]},{"name":"QUERY_E_INVALIDCOALESCE","features":[579]},{"name":"QUERY_E_INVALIDSCOPE_COALESCE","features":[579]},{"name":"QUERY_E_INVALIDSORT_COALESCE","features":[579]},{"name":"QUERY_E_INVALID_DOCUMENT_IDENTIFIER","features":[579]},{"name":"QUERY_E_NO_RELDOC","features":[579]},{"name":"QUERY_E_NO_RELPROP","features":[579]},{"name":"QUERY_E_RELDOC_SYNTAX_NOT_SUPPORTED","features":[579]},{"name":"QUERY_E_REPEATED_RELDOC","features":[579]},{"name":"QUERY_E_TOP_LEVEL_IN_GROUP","features":[579]},{"name":"QUERY_E_UPGRADEINPROGRESS","features":[579]},{"name":"QUERY_PARSER_MANAGER_OPTION","features":[579]},{"name":"QUERY_SORTDEFAULT","features":[579]},{"name":"QUERY_SORTXASCEND","features":[579]},{"name":"QUERY_SORTXDESCEND","features":[579]},{"name":"QUERY_VALIDBITS","features":[579]},{"name":"QueryParser","features":[579]},{"name":"QueryParserManager","features":[579]},{"name":"RANGECATEGORIZE","features":[579]},{"name":"RESTRICTION","features":[507,427,579]},{"name":"REXSPH_E_DUPLICATE_PROPERTY","features":[579]},{"name":"REXSPH_E_INVALID_CALL","features":[579]},{"name":"REXSPH_E_MULTIPLE_REDIRECT","features":[579]},{"name":"REXSPH_E_NO_PROPERTY_ON_ROW","features":[579]},{"name":"REXSPH_E_REDIRECT_ON_SECURITY_UPDATE","features":[579]},{"name":"REXSPH_E_TYPE_MISMATCH_ON_READ","features":[579]},{"name":"REXSPH_E_UNEXPECTED_DATA_STATUS","features":[579]},{"name":"REXSPH_E_UNEXPECTED_FILTER_STATE","features":[579]},{"name":"REXSPH_E_UNKNOWN_DATA_TYPE","features":[579]},{"name":"REXSPH_S_REDIRECTED","features":[579]},{"name":"RMTPACK","features":[354,579]},{"name":"RMTPACK","features":[354,579]},{"name":"ROWSETEVENT_ITEMSTATE","features":[579]},{"name":"ROWSETEVENT_ITEMSTATE_INROWSET","features":[579]},{"name":"ROWSETEVENT_ITEMSTATE_NOTINROWSET","features":[579]},{"name":"ROWSETEVENT_ITEMSTATE_UNKNOWN","features":[579]},{"name":"ROWSETEVENT_TYPE","features":[579]},{"name":"ROWSETEVENT_TYPE_DATAEXPIRED","features":[579]},{"name":"ROWSETEVENT_TYPE_FOREGROUNDLOST","features":[579]},{"name":"ROWSETEVENT_TYPE_SCOPESTATISTICS","features":[579]},{"name":"RS_COMPLETED","features":[579]},{"name":"RS_MAYBOTHERUSER","features":[579]},{"name":"RS_READY","features":[579]},{"name":"RS_SUSPENDED","features":[579]},{"name":"RS_SUSPENDONIDLE","features":[579]},{"name":"RS_UPDATING","features":[579]},{"name":"RTAnd","features":[579]},{"name":"RTContent","features":[579]},{"name":"RTNatLanguage","features":[579]},{"name":"RTNone","features":[579]},{"name":"RTNot","features":[579]},{"name":"RTOr","features":[579]},{"name":"RTProperty","features":[579]},{"name":"RTProximity","features":[579]},{"name":"RTVector","features":[579]},{"name":"RootBinder","features":[579]},{"name":"SCHEMA_E_ADDSTOPWORDS","features":[579]},{"name":"SCHEMA_E_BADATTRIBUTE","features":[579]},{"name":"SCHEMA_E_BADCOLUMNNAME","features":[579]},{"name":"SCHEMA_E_BADFILENAME","features":[579]},{"name":"SCHEMA_E_BADPROPPID","features":[579]},{"name":"SCHEMA_E_BADPROPSPEC","features":[579]},{"name":"SCHEMA_E_CANNOTCREATEFILE","features":[579]},{"name":"SCHEMA_E_CANNOTCREATENOISEWORDFILE","features":[579]},{"name":"SCHEMA_E_CANNOTWRITEFILE","features":[579]},{"name":"SCHEMA_E_DUPLICATENOISE","features":[579]},{"name":"SCHEMA_E_EMPTYFILE","features":[579]},{"name":"SCHEMA_E_FILECHANGED","features":[579]},{"name":"SCHEMA_E_FILENOTFOUND","features":[579]},{"name":"SCHEMA_E_INVALIDDATATYPE","features":[579]},{"name":"SCHEMA_E_INVALIDFILETYPE","features":[579]},{"name":"SCHEMA_E_INVALIDVALUE","features":[579]},{"name":"SCHEMA_E_LOAD_SPECIAL","features":[579]},{"name":"SCHEMA_E_NAMEEXISTS","features":[579]},{"name":"SCHEMA_E_NESTEDTAG","features":[579]},{"name":"SCHEMA_E_NOMORECOLUMNS","features":[579]},{"name":"SCHEMA_E_PROPEXISTS","features":[579]},{"name":"SCHEMA_E_UNEXPECTEDTAG","features":[579]},{"name":"SCHEMA_E_VERSIONMISMATCH","features":[579]},{"name":"SCRIPTPI_E_ALREADY_COMPLETED","features":[579]},{"name":"SCRIPTPI_E_CANNOT_ALTER_CHUNK","features":[579]},{"name":"SCRIPTPI_E_CHUNK_NOT_TEXT","features":[579]},{"name":"SCRIPTPI_E_CHUNK_NOT_VALUE","features":[579]},{"name":"SCRIPTPI_E_PID_NOT_NAME","features":[579]},{"name":"SCRIPTPI_E_PID_NOT_NUMERIC","features":[579]},{"name":"SEARCH_ADVANCED_QUERY_SYNTAX","features":[579]},{"name":"SEARCH_CHANGE_ADD","features":[579]},{"name":"SEARCH_CHANGE_DELETE","features":[579]},{"name":"SEARCH_CHANGE_MODIFY","features":[579]},{"name":"SEARCH_CHANGE_MOVE_RENAME","features":[579]},{"name":"SEARCH_CHANGE_SEMANTICS_DIRECTORY","features":[579]},{"name":"SEARCH_CHANGE_SEMANTICS_SHALLOW","features":[579]},{"name":"SEARCH_CHANGE_SEMANTICS_UPDATE_SECURITY","features":[579]},{"name":"SEARCH_COLUMN_PROPERTIES","features":[579]},{"name":"SEARCH_HIGH_PRIORITY","features":[579]},{"name":"SEARCH_INDEXING_PHASE","features":[579]},{"name":"SEARCH_INDEXING_PHASE_GATHERER","features":[579]},{"name":"SEARCH_INDEXING_PHASE_PERSISTED","features":[579]},{"name":"SEARCH_INDEXING_PHASE_QUERYABLE","features":[579]},{"name":"SEARCH_ITEM_CHANGE","features":[354,579]},{"name":"SEARCH_ITEM_INDEXING_STATUS","features":[579]},{"name":"SEARCH_ITEM_PERSISTENT_CHANGE","features":[579]},{"name":"SEARCH_KIND_OF_CHANGE","features":[579]},{"name":"SEARCH_NATURAL_QUERY_SYNTAX","features":[579]},{"name":"SEARCH_NORMAL_PRIORITY","features":[579]},{"name":"SEARCH_NOTIFICATION_PRIORITY","features":[579]},{"name":"SEARCH_NO_QUERY_SYNTAX","features":[579]},{"name":"SEARCH_QUERY_SYNTAX","features":[579]},{"name":"SEARCH_TERM_EXPANSION","features":[579]},{"name":"SEARCH_TERM_NO_EXPANSION","features":[579]},{"name":"SEARCH_TERM_PREFIX_ALL","features":[579]},{"name":"SEARCH_TERM_STEM_ALL","features":[579]},{"name":"SEC_E_ACCESSDENIED","features":[579]},{"name":"SEC_E_BADTRUSTEEID","features":[579]},{"name":"SEC_E_INITFAILED","features":[579]},{"name":"SEC_E_INVALIDACCESSENTRY","features":[579]},{"name":"SEC_E_INVALIDACCESSENTRYLIST","features":[579]},{"name":"SEC_E_INVALIDCONTEXT","features":[579]},{"name":"SEC_E_INVALIDOBJECT","features":[579]},{"name":"SEC_E_INVALIDOWNER","features":[579]},{"name":"SEC_E_NOMEMBERSHIPSUPPORT","features":[579]},{"name":"SEC_E_NOOWNER","features":[579]},{"name":"SEC_E_NOTINITIALIZED","features":[579]},{"name":"SEC_E_NOTRUSTEEID","features":[579]},{"name":"SEC_E_PERMISSIONDENIED","features":[579]},{"name":"SEC_OBJECT","features":[507,579]},{"name":"SEC_OBJECT","features":[507,579]},{"name":"SEC_OBJECT_ELEMENT","features":[507,579]},{"name":"SEC_OBJECT_ELEMENT","features":[507,579]},{"name":"SI_TEMPORARY","features":[579]},{"name":"SORTKEY","features":[507,427,579]},{"name":"SORTSET","features":[507,427,579]},{"name":"SPS_WS_ERROR","features":[579]},{"name":"SQLAOPANY","features":[579]},{"name":"SQLAOPAVG","features":[579]},{"name":"SQLAOPCNT","features":[579]},{"name":"SQLAOPMAX","features":[579]},{"name":"SQLAOPMIN","features":[579]},{"name":"SQLAOPNOOP","features":[579]},{"name":"SQLAOPSTDEV","features":[579]},{"name":"SQLAOPSTDEVP","features":[579]},{"name":"SQLAOPSUM","features":[579]},{"name":"SQLAOPVAR","features":[579]},{"name":"SQLAOPVARP","features":[579]},{"name":"SQLAllocConnect","features":[579]},{"name":"SQLAllocEnv","features":[579]},{"name":"SQLAllocHandle","features":[579]},{"name":"SQLAllocHandleStd","features":[579]},{"name":"SQLAllocStmt","features":[579]},{"name":"SQLBIGBINARY","features":[579]},{"name":"SQLBIGCHAR","features":[579]},{"name":"SQLBIGVARBINARY","features":[579]},{"name":"SQLBIGVARCHAR","features":[579]},{"name":"SQLBINARY","features":[579]},{"name":"SQLBIT","features":[579]},{"name":"SQLBITN","features":[579]},{"name":"SQLBindCol","features":[579]},{"name":"SQLBindCol","features":[579]},{"name":"SQLBindParam","features":[579]},{"name":"SQLBindParam","features":[579]},{"name":"SQLBindParameter","features":[579]},{"name":"SQLBindParameter","features":[579]},{"name":"SQLBrowseConnect","features":[579]},{"name":"SQLBrowseConnectA","features":[579]},{"name":"SQLBrowseConnectW","features":[579]},{"name":"SQLBulkOperations","features":[579]},{"name":"SQLCHARACTER","features":[579]},{"name":"SQLCancel","features":[579]},{"name":"SQLCancelHandle","features":[579]},{"name":"SQLCloseCursor","features":[579]},{"name":"SQLCloseEnumServers","features":[303,579]},{"name":"SQLColAttribute","features":[579]},{"name":"SQLColAttribute","features":[579]},{"name":"SQLColAttributeA","features":[579]},{"name":"SQLColAttributeA","features":[579]},{"name":"SQLColAttributeW","features":[579]},{"name":"SQLColAttributeW","features":[579]},{"name":"SQLColAttributes","features":[579]},{"name":"SQLColAttributes","features":[579]},{"name":"SQLColAttributesA","features":[579]},{"name":"SQLColAttributesA","features":[579]},{"name":"SQLColAttributesW","features":[579]},{"name":"SQLColAttributesW","features":[579]},{"name":"SQLColumnPrivileges","features":[579]},{"name":"SQLColumnPrivilegesA","features":[579]},{"name":"SQLColumnPrivilegesW","features":[579]},{"name":"SQLColumns","features":[579]},{"name":"SQLColumnsA","features":[579]},{"name":"SQLColumnsW","features":[579]},{"name":"SQLCompleteAsync","features":[579]},{"name":"SQLConnect","features":[579]},{"name":"SQLConnectA","features":[579]},{"name":"SQLConnectW","features":[579]},{"name":"SQLCopyDesc","features":[579]},{"name":"SQLDATETIM4","features":[579]},{"name":"SQLDATETIME","features":[579]},{"name":"SQLDATETIMN","features":[579]},{"name":"SQLDECIMAL","features":[579]},{"name":"SQLDECIMALN","features":[579]},{"name":"SQLDataSources","features":[579]},{"name":"SQLDataSourcesA","features":[579]},{"name":"SQLDataSourcesW","features":[579]},{"name":"SQLDescribeCol","features":[579]},{"name":"SQLDescribeCol","features":[579]},{"name":"SQLDescribeColA","features":[579]},{"name":"SQLDescribeColA","features":[579]},{"name":"SQLDescribeColW","features":[579]},{"name":"SQLDescribeColW","features":[579]},{"name":"SQLDescribeParam","features":[579]},{"name":"SQLDescribeParam","features":[579]},{"name":"SQLDisconnect","features":[579]},{"name":"SQLDriverConnect","features":[579]},{"name":"SQLDriverConnectA","features":[579]},{"name":"SQLDriverConnectW","features":[579]},{"name":"SQLDrivers","features":[579]},{"name":"SQLDriversA","features":[579]},{"name":"SQLDriversW","features":[579]},{"name":"SQLEndTran","features":[579]},{"name":"SQLError","features":[579]},{"name":"SQLErrorA","features":[579]},{"name":"SQLErrorW","features":[579]},{"name":"SQLExecDirect","features":[579]},{"name":"SQLExecDirectA","features":[579]},{"name":"SQLExecDirectW","features":[579]},{"name":"SQLExecute","features":[579]},{"name":"SQLExtendedFetch","features":[579]},{"name":"SQLExtendedFetch","features":[579]},{"name":"SQLFLT4","features":[579]},{"name":"SQLFLT8","features":[579]},{"name":"SQLFLTN","features":[579]},{"name":"SQLFetch","features":[579]},{"name":"SQLFetchScroll","features":[579]},{"name":"SQLFetchScroll","features":[579]},{"name":"SQLForeignKeys","features":[579]},{"name":"SQLForeignKeysA","features":[579]},{"name":"SQLForeignKeysW","features":[579]},{"name":"SQLFreeConnect","features":[579]},{"name":"SQLFreeEnv","features":[579]},{"name":"SQLFreeHandle","features":[579]},{"name":"SQLFreeStmt","features":[579]},{"name":"SQLGetConnectAttr","features":[579]},{"name":"SQLGetConnectAttrA","features":[579]},{"name":"SQLGetConnectAttrW","features":[579]},{"name":"SQLGetConnectOption","features":[579]},{"name":"SQLGetConnectOptionA","features":[579]},{"name":"SQLGetConnectOptionW","features":[579]},{"name":"SQLGetCursorName","features":[579]},{"name":"SQLGetCursorNameA","features":[579]},{"name":"SQLGetCursorNameW","features":[579]},{"name":"SQLGetData","features":[579]},{"name":"SQLGetData","features":[579]},{"name":"SQLGetDescField","features":[579]},{"name":"SQLGetDescFieldA","features":[579]},{"name":"SQLGetDescFieldW","features":[579]},{"name":"SQLGetDescRec","features":[579]},{"name":"SQLGetDescRec","features":[579]},{"name":"SQLGetDescRecA","features":[579]},{"name":"SQLGetDescRecA","features":[579]},{"name":"SQLGetDescRecW","features":[579]},{"name":"SQLGetDescRecW","features":[579]},{"name":"SQLGetDiagField","features":[579]},{"name":"SQLGetDiagFieldA","features":[579]},{"name":"SQLGetDiagFieldW","features":[579]},{"name":"SQLGetDiagRec","features":[579]},{"name":"SQLGetDiagRecA","features":[579]},{"name":"SQLGetDiagRecW","features":[579]},{"name":"SQLGetEnvAttr","features":[579]},{"name":"SQLGetFunctions","features":[579]},{"name":"SQLGetInfo","features":[579]},{"name":"SQLGetInfoA","features":[579]},{"name":"SQLGetInfoW","features":[579]},{"name":"SQLGetNextEnumeration","features":[303,579]},{"name":"SQLGetStmtAttr","features":[579]},{"name":"SQLGetStmtAttrA","features":[579]},{"name":"SQLGetStmtAttrW","features":[579]},{"name":"SQLGetStmtOption","features":[579]},{"name":"SQLGetTypeInfo","features":[579]},{"name":"SQLGetTypeInfoA","features":[579]},{"name":"SQLGetTypeInfoW","features":[579]},{"name":"SQLIMAGE","features":[579]},{"name":"SQLINT1","features":[579]},{"name":"SQLINT2","features":[579]},{"name":"SQLINT4","features":[579]},{"name":"SQLINT8","features":[579]},{"name":"SQLINTERVAL","features":[579]},{"name":"SQLINTN","features":[579]},{"name":"SQLInitEnumServers","features":[303,579]},{"name":"SQLLinkedCatalogsA","features":[579]},{"name":"SQLLinkedCatalogsW","features":[579]},{"name":"SQLLinkedServers","features":[579]},{"name":"SQLMONEY","features":[579]},{"name":"SQLMONEY4","features":[579]},{"name":"SQLMONEYN","features":[579]},{"name":"SQLMoreResults","features":[579]},{"name":"SQLNCHAR","features":[579]},{"name":"SQLNTEXT","features":[579]},{"name":"SQLNUMERIC","features":[579]},{"name":"SQLNUMERICN","features":[579]},{"name":"SQLNVARCHAR","features":[579]},{"name":"SQLNativeSql","features":[579]},{"name":"SQLNativeSqlA","features":[579]},{"name":"SQLNativeSqlW","features":[579]},{"name":"SQLNumParams","features":[579]},{"name":"SQLNumResultCols","features":[579]},{"name":"SQLPERF","features":[579]},{"name":"SQLParamData","features":[579]},{"name":"SQLParamOptions","features":[579]},{"name":"SQLParamOptions","features":[579]},{"name":"SQLPrepare","features":[579]},{"name":"SQLPrepareA","features":[579]},{"name":"SQLPrepareW","features":[579]},{"name":"SQLPrimaryKeys","features":[579]},{"name":"SQLPrimaryKeysA","features":[579]},{"name":"SQLPrimaryKeysW","features":[579]},{"name":"SQLProcedureColumns","features":[579]},{"name":"SQLProcedureColumnsA","features":[579]},{"name":"SQLProcedureColumnsW","features":[579]},{"name":"SQLProcedures","features":[579]},{"name":"SQLProceduresA","features":[579]},{"name":"SQLProceduresW","features":[579]},{"name":"SQLPutData","features":[579]},{"name":"SQLPutData","features":[579]},{"name":"SQLRowCount","features":[579]},{"name":"SQLRowCount","features":[579]},{"name":"SQLSetConnectAttr","features":[579]},{"name":"SQLSetConnectAttrA","features":[579]},{"name":"SQLSetConnectAttrW","features":[579]},{"name":"SQLSetConnectOption","features":[579]},{"name":"SQLSetConnectOption","features":[579]},{"name":"SQLSetConnectOptionA","features":[579]},{"name":"SQLSetConnectOptionA","features":[579]},{"name":"SQLSetConnectOptionW","features":[579]},{"name":"SQLSetConnectOptionW","features":[579]},{"name":"SQLSetCursorName","features":[579]},{"name":"SQLSetCursorNameA","features":[579]},{"name":"SQLSetCursorNameW","features":[579]},{"name":"SQLSetDescField","features":[579]},{"name":"SQLSetDescFieldW","features":[579]},{"name":"SQLSetDescRec","features":[579]},{"name":"SQLSetDescRec","features":[579]},{"name":"SQLSetEnvAttr","features":[579]},{"name":"SQLSetParam","features":[579]},{"name":"SQLSetParam","features":[579]},{"name":"SQLSetPos","features":[579]},{"name":"SQLSetPos","features":[579]},{"name":"SQLSetScrollOptions","features":[579]},{"name":"SQLSetScrollOptions","features":[579]},{"name":"SQLSetStmtAttr","features":[579]},{"name":"SQLSetStmtAttrW","features":[579]},{"name":"SQLSetStmtOption","features":[579]},{"name":"SQLSetStmtOption","features":[579]},{"name":"SQLSpecialColumns","features":[579]},{"name":"SQLSpecialColumnsA","features":[579]},{"name":"SQLSpecialColumnsW","features":[579]},{"name":"SQLStatistics","features":[579]},{"name":"SQLStatisticsA","features":[579]},{"name":"SQLStatisticsW","features":[579]},{"name":"SQLTEXT","features":[579]},{"name":"SQLTablePrivileges","features":[579]},{"name":"SQLTablePrivilegesA","features":[579]},{"name":"SQLTablePrivilegesW","features":[579]},{"name":"SQLTables","features":[579]},{"name":"SQLTablesA","features":[579]},{"name":"SQLTablesW","features":[579]},{"name":"SQLTransact","features":[579]},{"name":"SQLUNIQUEID","features":[579]},{"name":"SQLVARBINARY","features":[579]},{"name":"SQLVARCHAR","features":[579]},{"name":"SQLVARENUM","features":[579]},{"name":"SQLVARIANT","features":[579]},{"name":"SQL_AA_FALSE","features":[579]},{"name":"SQL_AA_TRUE","features":[579]},{"name":"SQL_ACCESSIBLE_PROCEDURES","features":[579]},{"name":"SQL_ACCESSIBLE_TABLES","features":[579]},{"name":"SQL_ACCESS_MODE","features":[579]},{"name":"SQL_ACTIVE_CONNECTIONS","features":[579]},{"name":"SQL_ACTIVE_ENVIRONMENTS","features":[579]},{"name":"SQL_ACTIVE_STATEMENTS","features":[579]},{"name":"SQL_ADD","features":[579]},{"name":"SQL_AD_ADD_CONSTRAINT_DEFERRABLE","features":[579]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","features":[579]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","features":[579]},{"name":"SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","features":[579]},{"name":"SQL_AD_ADD_DOMAIN_CONSTRAINT","features":[579]},{"name":"SQL_AD_ADD_DOMAIN_DEFAULT","features":[579]},{"name":"SQL_AD_CONSTRAINT_NAME_DEFINITION","features":[579]},{"name":"SQL_AD_DEFAULT","features":[579]},{"name":"SQL_AD_DROP_DOMAIN_CONSTRAINT","features":[579]},{"name":"SQL_AD_DROP_DOMAIN_DEFAULT","features":[579]},{"name":"SQL_AD_OFF","features":[579]},{"name":"SQL_AD_ON","features":[579]},{"name":"SQL_AF_ALL","features":[579]},{"name":"SQL_AF_AVG","features":[579]},{"name":"SQL_AF_COUNT","features":[579]},{"name":"SQL_AF_DISTINCT","features":[579]},{"name":"SQL_AF_MAX","features":[579]},{"name":"SQL_AF_MIN","features":[579]},{"name":"SQL_AF_SUM","features":[579]},{"name":"SQL_AGGREGATE_FUNCTIONS","features":[579]},{"name":"SQL_ALL_CATALOGS","features":[579]},{"name":"SQL_ALL_EXCEPT_LIKE","features":[579]},{"name":"SQL_ALL_SCHEMAS","features":[579]},{"name":"SQL_ALL_TABLE_TYPES","features":[579]},{"name":"SQL_ALL_TYPES","features":[579]},{"name":"SQL_ALTER_DOMAIN","features":[579]},{"name":"SQL_ALTER_TABLE","features":[579]},{"name":"SQL_AM_CONNECTION","features":[579]},{"name":"SQL_AM_NONE","features":[579]},{"name":"SQL_AM_STATEMENT","features":[579]},{"name":"SQL_AO_DEFAULT","features":[579]},{"name":"SQL_AO_OFF","features":[579]},{"name":"SQL_AO_ON","features":[579]},{"name":"SQL_APD_TYPE","features":[579]},{"name":"SQL_API_ALL_FUNCTIONS","features":[579]},{"name":"SQL_API_LOADBYORDINAL","features":[579]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS","features":[579]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS_SIZE","features":[579]},{"name":"SQL_API_SQLALLOCCONNECT","features":[579]},{"name":"SQL_API_SQLALLOCENV","features":[579]},{"name":"SQL_API_SQLALLOCHANDLE","features":[579]},{"name":"SQL_API_SQLALLOCHANDLESTD","features":[579]},{"name":"SQL_API_SQLALLOCSTMT","features":[579]},{"name":"SQL_API_SQLBINDCOL","features":[579]},{"name":"SQL_API_SQLBINDPARAM","features":[579]},{"name":"SQL_API_SQLBINDPARAMETER","features":[579]},{"name":"SQL_API_SQLBROWSECONNECT","features":[579]},{"name":"SQL_API_SQLBULKOPERATIONS","features":[579]},{"name":"SQL_API_SQLCANCEL","features":[579]},{"name":"SQL_API_SQLCANCELHANDLE","features":[579]},{"name":"SQL_API_SQLCLOSECURSOR","features":[579]},{"name":"SQL_API_SQLCOLATTRIBUTE","features":[579]},{"name":"SQL_API_SQLCOLATTRIBUTES","features":[579]},{"name":"SQL_API_SQLCOLUMNPRIVILEGES","features":[579]},{"name":"SQL_API_SQLCOLUMNS","features":[579]},{"name":"SQL_API_SQLCOMPLETEASYNC","features":[579]},{"name":"SQL_API_SQLCONNECT","features":[579]},{"name":"SQL_API_SQLCOPYDESC","features":[579]},{"name":"SQL_API_SQLDATASOURCES","features":[579]},{"name":"SQL_API_SQLDESCRIBECOL","features":[579]},{"name":"SQL_API_SQLDESCRIBEPARAM","features":[579]},{"name":"SQL_API_SQLDISCONNECT","features":[579]},{"name":"SQL_API_SQLDRIVERCONNECT","features":[579]},{"name":"SQL_API_SQLDRIVERS","features":[579]},{"name":"SQL_API_SQLENDTRAN","features":[579]},{"name":"SQL_API_SQLERROR","features":[579]},{"name":"SQL_API_SQLEXECDIRECT","features":[579]},{"name":"SQL_API_SQLEXECUTE","features":[579]},{"name":"SQL_API_SQLEXTENDEDFETCH","features":[579]},{"name":"SQL_API_SQLFETCH","features":[579]},{"name":"SQL_API_SQLFETCHSCROLL","features":[579]},{"name":"SQL_API_SQLFOREIGNKEYS","features":[579]},{"name":"SQL_API_SQLFREECONNECT","features":[579]},{"name":"SQL_API_SQLFREEENV","features":[579]},{"name":"SQL_API_SQLFREEHANDLE","features":[579]},{"name":"SQL_API_SQLFREESTMT","features":[579]},{"name":"SQL_API_SQLGETCONNECTATTR","features":[579]},{"name":"SQL_API_SQLGETCONNECTOPTION","features":[579]},{"name":"SQL_API_SQLGETCURSORNAME","features":[579]},{"name":"SQL_API_SQLGETDATA","features":[579]},{"name":"SQL_API_SQLGETDESCFIELD","features":[579]},{"name":"SQL_API_SQLGETDESCREC","features":[579]},{"name":"SQL_API_SQLGETDIAGFIELD","features":[579]},{"name":"SQL_API_SQLGETDIAGREC","features":[579]},{"name":"SQL_API_SQLGETENVATTR","features":[579]},{"name":"SQL_API_SQLGETFUNCTIONS","features":[579]},{"name":"SQL_API_SQLGETINFO","features":[579]},{"name":"SQL_API_SQLGETSTMTATTR","features":[579]},{"name":"SQL_API_SQLGETSTMTOPTION","features":[579]},{"name":"SQL_API_SQLGETTYPEINFO","features":[579]},{"name":"SQL_API_SQLMORERESULTS","features":[579]},{"name":"SQL_API_SQLNATIVESQL","features":[579]},{"name":"SQL_API_SQLNUMPARAMS","features":[579]},{"name":"SQL_API_SQLNUMRESULTCOLS","features":[579]},{"name":"SQL_API_SQLPARAMDATA","features":[579]},{"name":"SQL_API_SQLPARAMOPTIONS","features":[579]},{"name":"SQL_API_SQLPREPARE","features":[579]},{"name":"SQL_API_SQLPRIMARYKEYS","features":[579]},{"name":"SQL_API_SQLPRIVATEDRIVERS","features":[579]},{"name":"SQL_API_SQLPROCEDURECOLUMNS","features":[579]},{"name":"SQL_API_SQLPROCEDURES","features":[579]},{"name":"SQL_API_SQLPUTDATA","features":[579]},{"name":"SQL_API_SQLROWCOUNT","features":[579]},{"name":"SQL_API_SQLSETCONNECTATTR","features":[579]},{"name":"SQL_API_SQLSETCONNECTOPTION","features":[579]},{"name":"SQL_API_SQLSETCURSORNAME","features":[579]},{"name":"SQL_API_SQLSETDESCFIELD","features":[579]},{"name":"SQL_API_SQLSETDESCREC","features":[579]},{"name":"SQL_API_SQLSETENVATTR","features":[579]},{"name":"SQL_API_SQLSETPARAM","features":[579]},{"name":"SQL_API_SQLSETPOS","features":[579]},{"name":"SQL_API_SQLSETSCROLLOPTIONS","features":[579]},{"name":"SQL_API_SQLSETSTMTATTR","features":[579]},{"name":"SQL_API_SQLSETSTMTOPTION","features":[579]},{"name":"SQL_API_SQLSPECIALCOLUMNS","features":[579]},{"name":"SQL_API_SQLSTATISTICS","features":[579]},{"name":"SQL_API_SQLTABLEPRIVILEGES","features":[579]},{"name":"SQL_API_SQLTABLES","features":[579]},{"name":"SQL_API_SQLTRANSACT","features":[579]},{"name":"SQL_ARD_TYPE","features":[579]},{"name":"SQL_ASYNC_DBC_CAPABLE","features":[579]},{"name":"SQL_ASYNC_DBC_ENABLE_DEFAULT","features":[579]},{"name":"SQL_ASYNC_DBC_ENABLE_OFF","features":[579]},{"name":"SQL_ASYNC_DBC_ENABLE_ON","features":[579]},{"name":"SQL_ASYNC_DBC_FUNCTIONS","features":[579]},{"name":"SQL_ASYNC_DBC_NOT_CAPABLE","features":[579]},{"name":"SQL_ASYNC_ENABLE","features":[579]},{"name":"SQL_ASYNC_ENABLE_DEFAULT","features":[579]},{"name":"SQL_ASYNC_ENABLE_OFF","features":[579]},{"name":"SQL_ASYNC_ENABLE_ON","features":[579]},{"name":"SQL_ASYNC_MODE","features":[579]},{"name":"SQL_ASYNC_NOTIFICATION","features":[579]},{"name":"SQL_ASYNC_NOTIFICATION_CALLBACK","features":[303,579]},{"name":"SQL_ASYNC_NOTIFICATION_CAPABLE","features":[579]},{"name":"SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","features":[579]},{"name":"SQL_ATTR_ACCESS_MODE","features":[579]},{"name":"SQL_ATTR_ANSI_APP","features":[579]},{"name":"SQL_ATTR_APPLICATION_KEY","features":[579]},{"name":"SQL_ATTR_APP_PARAM_DESC","features":[579]},{"name":"SQL_ATTR_APP_ROW_DESC","features":[579]},{"name":"SQL_ATTR_ASYNC_DBC_EVENT","features":[579]},{"name":"SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","features":[579]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CALLBACK","features":[579]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CONTEXT","features":[579]},{"name":"SQL_ATTR_ASYNC_ENABLE","features":[579]},{"name":"SQL_ATTR_ASYNC_STMT_EVENT","features":[579]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CALLBACK","features":[579]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CONTEXT","features":[579]},{"name":"SQL_ATTR_AUTOCOMMIT","features":[579]},{"name":"SQL_ATTR_AUTO_IPD","features":[579]},{"name":"SQL_ATTR_CONCURRENCY","features":[579]},{"name":"SQL_ATTR_CONNECTION_DEAD","features":[579]},{"name":"SQL_ATTR_CONNECTION_POOLING","features":[579]},{"name":"SQL_ATTR_CONNECTION_TIMEOUT","features":[579]},{"name":"SQL_ATTR_CP_MATCH","features":[579]},{"name":"SQL_ATTR_CURRENT_CATALOG","features":[579]},{"name":"SQL_ATTR_CURSOR_SCROLLABLE","features":[579]},{"name":"SQL_ATTR_CURSOR_SENSITIVITY","features":[579]},{"name":"SQL_ATTR_CURSOR_TYPE","features":[579]},{"name":"SQL_ATTR_DBC_INFO_TOKEN","features":[579]},{"name":"SQL_ATTR_DISCONNECT_BEHAVIOR","features":[579]},{"name":"SQL_ATTR_ENABLE_AUTO_IPD","features":[579]},{"name":"SQL_ATTR_ENLIST_IN_DTC","features":[579]},{"name":"SQL_ATTR_ENLIST_IN_XA","features":[579]},{"name":"SQL_ATTR_FETCH_BOOKMARK_PTR","features":[579]},{"name":"SQL_ATTR_IMP_PARAM_DESC","features":[579]},{"name":"SQL_ATTR_IMP_ROW_DESC","features":[579]},{"name":"SQL_ATTR_KEYSET_SIZE","features":[579]},{"name":"SQL_ATTR_LOGIN_TIMEOUT","features":[579]},{"name":"SQL_ATTR_MAX_LENGTH","features":[579]},{"name":"SQL_ATTR_MAX_ROWS","features":[579]},{"name":"SQL_ATTR_METADATA_ID","features":[579]},{"name":"SQL_ATTR_NOSCAN","features":[579]},{"name":"SQL_ATTR_ODBC_CURSORS","features":[579]},{"name":"SQL_ATTR_ODBC_VERSION","features":[579]},{"name":"SQL_ATTR_OUTPUT_NTS","features":[579]},{"name":"SQL_ATTR_PACKET_SIZE","features":[579]},{"name":"SQL_ATTR_PARAMSET_SIZE","features":[579]},{"name":"SQL_ATTR_PARAMS_PROCESSED_PTR","features":[579]},{"name":"SQL_ATTR_PARAM_BIND_OFFSET_PTR","features":[579]},{"name":"SQL_ATTR_PARAM_BIND_TYPE","features":[579]},{"name":"SQL_ATTR_PARAM_OPERATION_PTR","features":[579]},{"name":"SQL_ATTR_PARAM_STATUS_PTR","features":[579]},{"name":"SQL_ATTR_QUERY_TIMEOUT","features":[579]},{"name":"SQL_ATTR_QUIET_MODE","features":[579]},{"name":"SQL_ATTR_READONLY","features":[579]},{"name":"SQL_ATTR_READWRITE_UNKNOWN","features":[579]},{"name":"SQL_ATTR_RESET_CONNECTION","features":[579]},{"name":"SQL_ATTR_RETRIEVE_DATA","features":[579]},{"name":"SQL_ATTR_ROWS_FETCHED_PTR","features":[579]},{"name":"SQL_ATTR_ROW_ARRAY_SIZE","features":[579]},{"name":"SQL_ATTR_ROW_BIND_OFFSET_PTR","features":[579]},{"name":"SQL_ATTR_ROW_BIND_TYPE","features":[579]},{"name":"SQL_ATTR_ROW_NUMBER","features":[579]},{"name":"SQL_ATTR_ROW_OPERATION_PTR","features":[579]},{"name":"SQL_ATTR_ROW_STATUS_PTR","features":[579]},{"name":"SQL_ATTR_SIMULATE_CURSOR","features":[579]},{"name":"SQL_ATTR_TRACE","features":[579]},{"name":"SQL_ATTR_TRACEFILE","features":[579]},{"name":"SQL_ATTR_TRANSLATE_LIB","features":[579]},{"name":"SQL_ATTR_TRANSLATE_OPTION","features":[579]},{"name":"SQL_ATTR_TXN_ISOLATION","features":[579]},{"name":"SQL_ATTR_USE_BOOKMARKS","features":[579]},{"name":"SQL_ATTR_WRITE","features":[579]},{"name":"SQL_AT_ADD_COLUMN","features":[579]},{"name":"SQL_AT_ADD_COLUMN_COLLATION","features":[579]},{"name":"SQL_AT_ADD_COLUMN_DEFAULT","features":[579]},{"name":"SQL_AT_ADD_COLUMN_SINGLE","features":[579]},{"name":"SQL_AT_ADD_CONSTRAINT","features":[579]},{"name":"SQL_AT_ADD_TABLE_CONSTRAINT","features":[579]},{"name":"SQL_AT_CONSTRAINT_DEFERRABLE","features":[579]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","features":[579]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[579]},{"name":"SQL_AT_CONSTRAINT_NAME_DEFINITION","features":[579]},{"name":"SQL_AT_CONSTRAINT_NON_DEFERRABLE","features":[579]},{"name":"SQL_AT_DROP_COLUMN","features":[579]},{"name":"SQL_AT_DROP_COLUMN_CASCADE","features":[579]},{"name":"SQL_AT_DROP_COLUMN_DEFAULT","features":[579]},{"name":"SQL_AT_DROP_COLUMN_RESTRICT","features":[579]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","features":[579]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","features":[579]},{"name":"SQL_AT_SET_COLUMN_DEFAULT","features":[579]},{"name":"SQL_AUTOCOMMIT","features":[579]},{"name":"SQL_AUTOCOMMIT_DEFAULT","features":[579]},{"name":"SQL_AUTOCOMMIT_OFF","features":[579]},{"name":"SQL_AUTOCOMMIT_ON","features":[579]},{"name":"SQL_BATCH_ROW_COUNT","features":[579]},{"name":"SQL_BATCH_SUPPORT","features":[579]},{"name":"SQL_BCP_DEFAULT","features":[579]},{"name":"SQL_BCP_OFF","features":[579]},{"name":"SQL_BCP_ON","features":[579]},{"name":"SQL_BEST_ROWID","features":[579]},{"name":"SQL_BIGINT","features":[579]},{"name":"SQL_BINARY","features":[579]},{"name":"SQL_BIND_BY_COLUMN","features":[579]},{"name":"SQL_BIND_TYPE","features":[579]},{"name":"SQL_BIND_TYPE_DEFAULT","features":[579]},{"name":"SQL_BIT","features":[579]},{"name":"SQL_BOOKMARK_PERSISTENCE","features":[579]},{"name":"SQL_BP_CLOSE","features":[579]},{"name":"SQL_BP_DELETE","features":[579]},{"name":"SQL_BP_DROP","features":[579]},{"name":"SQL_BP_OTHER_HSTMT","features":[579]},{"name":"SQL_BP_SCROLL","features":[579]},{"name":"SQL_BP_TRANSACTION","features":[579]},{"name":"SQL_BP_UPDATE","features":[579]},{"name":"SQL_BRC_EXPLICIT","features":[579]},{"name":"SQL_BRC_PROCEDURES","features":[579]},{"name":"SQL_BRC_ROLLED_UP","features":[579]},{"name":"SQL_BS_ROW_COUNT_EXPLICIT","features":[579]},{"name":"SQL_BS_ROW_COUNT_PROC","features":[579]},{"name":"SQL_BS_SELECT_EXPLICIT","features":[579]},{"name":"SQL_BS_SELECT_PROC","features":[579]},{"name":"SQL_CA1_ABSOLUTE","features":[579]},{"name":"SQL_CA1_BOOKMARK","features":[579]},{"name":"SQL_CA1_BULK_ADD","features":[579]},{"name":"SQL_CA1_BULK_DELETE_BY_BOOKMARK","features":[579]},{"name":"SQL_CA1_BULK_FETCH_BY_BOOKMARK","features":[579]},{"name":"SQL_CA1_BULK_UPDATE_BY_BOOKMARK","features":[579]},{"name":"SQL_CA1_LOCK_EXCLUSIVE","features":[579]},{"name":"SQL_CA1_LOCK_NO_CHANGE","features":[579]},{"name":"SQL_CA1_LOCK_UNLOCK","features":[579]},{"name":"SQL_CA1_NEXT","features":[579]},{"name":"SQL_CA1_POSITIONED_DELETE","features":[579]},{"name":"SQL_CA1_POSITIONED_UPDATE","features":[579]},{"name":"SQL_CA1_POS_DELETE","features":[579]},{"name":"SQL_CA1_POS_POSITION","features":[579]},{"name":"SQL_CA1_POS_REFRESH","features":[579]},{"name":"SQL_CA1_POS_UPDATE","features":[579]},{"name":"SQL_CA1_RELATIVE","features":[579]},{"name":"SQL_CA1_SELECT_FOR_UPDATE","features":[579]},{"name":"SQL_CA2_CRC_APPROXIMATE","features":[579]},{"name":"SQL_CA2_CRC_EXACT","features":[579]},{"name":"SQL_CA2_LOCK_CONCURRENCY","features":[579]},{"name":"SQL_CA2_MAX_ROWS_CATALOG","features":[579]},{"name":"SQL_CA2_MAX_ROWS_DELETE","features":[579]},{"name":"SQL_CA2_MAX_ROWS_INSERT","features":[579]},{"name":"SQL_CA2_MAX_ROWS_SELECT","features":[579]},{"name":"SQL_CA2_MAX_ROWS_UPDATE","features":[579]},{"name":"SQL_CA2_OPT_ROWVER_CONCURRENCY","features":[579]},{"name":"SQL_CA2_OPT_VALUES_CONCURRENCY","features":[579]},{"name":"SQL_CA2_READ_ONLY_CONCURRENCY","features":[579]},{"name":"SQL_CA2_SENSITIVITY_ADDITIONS","features":[579]},{"name":"SQL_CA2_SENSITIVITY_DELETIONS","features":[579]},{"name":"SQL_CA2_SENSITIVITY_UPDATES","features":[579]},{"name":"SQL_CA2_SIMULATE_NON_UNIQUE","features":[579]},{"name":"SQL_CA2_SIMULATE_TRY_UNIQUE","features":[579]},{"name":"SQL_CA2_SIMULATE_UNIQUE","features":[579]},{"name":"SQL_CACHE_DATA_NO","features":[579]},{"name":"SQL_CACHE_DATA_YES","features":[579]},{"name":"SQL_CASCADE","features":[579]},{"name":"SQL_CATALOG_LOCATION","features":[579]},{"name":"SQL_CATALOG_NAME","features":[579]},{"name":"SQL_CATALOG_NAME_SEPARATOR","features":[579]},{"name":"SQL_CATALOG_TERM","features":[579]},{"name":"SQL_CATALOG_USAGE","features":[579]},{"name":"SQL_CA_CONSTRAINT_DEFERRABLE","features":[579]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","features":[579]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","features":[579]},{"name":"SQL_CA_CONSTRAINT_NON_DEFERRABLE","features":[579]},{"name":"SQL_CA_CREATE_ASSERTION","features":[579]},{"name":"SQL_CA_SS_BASE","features":[579]},{"name":"SQL_CA_SS_COLUMN_COLLATION","features":[579]},{"name":"SQL_CA_SS_COLUMN_HIDDEN","features":[579]},{"name":"SQL_CA_SS_COLUMN_ID","features":[579]},{"name":"SQL_CA_SS_COLUMN_KEY","features":[579]},{"name":"SQL_CA_SS_COLUMN_OP","features":[579]},{"name":"SQL_CA_SS_COLUMN_ORDER","features":[579]},{"name":"SQL_CA_SS_COLUMN_SIZE","features":[579]},{"name":"SQL_CA_SS_COLUMN_SSTYPE","features":[579]},{"name":"SQL_CA_SS_COLUMN_UTYPE","features":[579]},{"name":"SQL_CA_SS_COLUMN_VARYLEN","features":[579]},{"name":"SQL_CA_SS_COMPUTE_BYLIST","features":[579]},{"name":"SQL_CA_SS_COMPUTE_ID","features":[579]},{"name":"SQL_CA_SS_MAX_USED","features":[579]},{"name":"SQL_CA_SS_NUM_COMPUTES","features":[579]},{"name":"SQL_CA_SS_NUM_ORDERS","features":[579]},{"name":"SQL_CA_SS_VARIANT_SERVER_TYPE","features":[579]},{"name":"SQL_CA_SS_VARIANT_SQL_TYPE","features":[579]},{"name":"SQL_CA_SS_VARIANT_TYPE","features":[579]},{"name":"SQL_CB_CLOSE","features":[579]},{"name":"SQL_CB_DELETE","features":[579]},{"name":"SQL_CB_NON_NULL","features":[579]},{"name":"SQL_CB_NULL","features":[579]},{"name":"SQL_CB_PRESERVE","features":[579]},{"name":"SQL_CCOL_CREATE_COLLATION","features":[579]},{"name":"SQL_CCS_COLLATE_CLAUSE","features":[579]},{"name":"SQL_CCS_CREATE_CHARACTER_SET","features":[579]},{"name":"SQL_CCS_LIMITED_COLLATION","features":[579]},{"name":"SQL_CC_CLOSE","features":[579]},{"name":"SQL_CC_DELETE","features":[579]},{"name":"SQL_CC_PRESERVE","features":[579]},{"name":"SQL_CDO_COLLATION","features":[579]},{"name":"SQL_CDO_CONSTRAINT","features":[579]},{"name":"SQL_CDO_CONSTRAINT_DEFERRABLE","features":[579]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","features":[579]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","features":[579]},{"name":"SQL_CDO_CONSTRAINT_NAME_DEFINITION","features":[579]},{"name":"SQL_CDO_CONSTRAINT_NON_DEFERRABLE","features":[579]},{"name":"SQL_CDO_CREATE_DOMAIN","features":[579]},{"name":"SQL_CDO_DEFAULT","features":[579]},{"name":"SQL_CD_FALSE","features":[579]},{"name":"SQL_CD_TRUE","features":[579]},{"name":"SQL_CHAR","features":[579]},{"name":"SQL_CLOSE","features":[579]},{"name":"SQL_CL_END","features":[579]},{"name":"SQL_CL_START","features":[579]},{"name":"SQL_CN_ANY","features":[579]},{"name":"SQL_CN_DEFAULT","features":[579]},{"name":"SQL_CN_DIFFERENT","features":[579]},{"name":"SQL_CN_NONE","features":[579]},{"name":"SQL_CN_OFF","features":[579]},{"name":"SQL_CN_ON","features":[579]},{"name":"SQL_CODE_DATE","features":[579]},{"name":"SQL_CODE_DAY","features":[579]},{"name":"SQL_CODE_DAY_TO_HOUR","features":[579]},{"name":"SQL_CODE_DAY_TO_MINUTE","features":[579]},{"name":"SQL_CODE_DAY_TO_SECOND","features":[579]},{"name":"SQL_CODE_HOUR","features":[579]},{"name":"SQL_CODE_HOUR_TO_MINUTE","features":[579]},{"name":"SQL_CODE_HOUR_TO_SECOND","features":[579]},{"name":"SQL_CODE_MINUTE","features":[579]},{"name":"SQL_CODE_MINUTE_TO_SECOND","features":[579]},{"name":"SQL_CODE_MONTH","features":[579]},{"name":"SQL_CODE_SECOND","features":[579]},{"name":"SQL_CODE_TIME","features":[579]},{"name":"SQL_CODE_TIMESTAMP","features":[579]},{"name":"SQL_CODE_YEAR","features":[579]},{"name":"SQL_CODE_YEAR_TO_MONTH","features":[579]},{"name":"SQL_COLATT_OPT_MAX","features":[579]},{"name":"SQL_COLATT_OPT_MIN","features":[579]},{"name":"SQL_COLLATION_SEQ","features":[579]},{"name":"SQL_COLUMN_ALIAS","features":[579]},{"name":"SQL_COLUMN_AUTO_INCREMENT","features":[579]},{"name":"SQL_COLUMN_CASE_SENSITIVE","features":[579]},{"name":"SQL_COLUMN_COUNT","features":[579]},{"name":"SQL_COLUMN_DISPLAY_SIZE","features":[579]},{"name":"SQL_COLUMN_DRIVER_START","features":[579]},{"name":"SQL_COLUMN_IGNORE","features":[579]},{"name":"SQL_COLUMN_LABEL","features":[579]},{"name":"SQL_COLUMN_LENGTH","features":[579]},{"name":"SQL_COLUMN_MONEY","features":[579]},{"name":"SQL_COLUMN_NAME","features":[579]},{"name":"SQL_COLUMN_NULLABLE","features":[579]},{"name":"SQL_COLUMN_NUMBER_UNKNOWN","features":[579]},{"name":"SQL_COLUMN_OWNER_NAME","features":[579]},{"name":"SQL_COLUMN_PRECISION","features":[579]},{"name":"SQL_COLUMN_QUALIFIER_NAME","features":[579]},{"name":"SQL_COLUMN_SCALE","features":[579]},{"name":"SQL_COLUMN_SEARCHABLE","features":[579]},{"name":"SQL_COLUMN_TABLE_NAME","features":[579]},{"name":"SQL_COLUMN_TYPE","features":[579]},{"name":"SQL_COLUMN_TYPE_NAME","features":[579]},{"name":"SQL_COLUMN_UNSIGNED","features":[579]},{"name":"SQL_COLUMN_UPDATABLE","features":[579]},{"name":"SQL_COMMIT","features":[579]},{"name":"SQL_CONCAT_NULL_BEHAVIOR","features":[579]},{"name":"SQL_CONCURRENCY","features":[579]},{"name":"SQL_CONCUR_DEFAULT","features":[579]},{"name":"SQL_CONCUR_LOCK","features":[579]},{"name":"SQL_CONCUR_READ_ONLY","features":[579]},{"name":"SQL_CONCUR_ROWVER","features":[579]},{"name":"SQL_CONCUR_TIMESTAMP","features":[579]},{"name":"SQL_CONCUR_VALUES","features":[579]},{"name":"SQL_CONNECT_OPT_DRVR_START","features":[579]},{"name":"SQL_CONN_OPT_MAX","features":[579]},{"name":"SQL_CONN_OPT_MIN","features":[579]},{"name":"SQL_CONN_POOL_RATING_BEST","features":[579]},{"name":"SQL_CONN_POOL_RATING_GOOD_ENOUGH","features":[579]},{"name":"SQL_CONN_POOL_RATING_USELESS","features":[579]},{"name":"SQL_CONVERT_BIGINT","features":[579]},{"name":"SQL_CONVERT_BINARY","features":[579]},{"name":"SQL_CONVERT_BIT","features":[579]},{"name":"SQL_CONVERT_CHAR","features":[579]},{"name":"SQL_CONVERT_DATE","features":[579]},{"name":"SQL_CONVERT_DECIMAL","features":[579]},{"name":"SQL_CONVERT_DOUBLE","features":[579]},{"name":"SQL_CONVERT_FLOAT","features":[579]},{"name":"SQL_CONVERT_FUNCTIONS","features":[579]},{"name":"SQL_CONVERT_GUID","features":[579]},{"name":"SQL_CONVERT_INTEGER","features":[579]},{"name":"SQL_CONVERT_INTERVAL_DAY_TIME","features":[579]},{"name":"SQL_CONVERT_INTERVAL_YEAR_MONTH","features":[579]},{"name":"SQL_CONVERT_LONGVARBINARY","features":[579]},{"name":"SQL_CONVERT_LONGVARCHAR","features":[579]},{"name":"SQL_CONVERT_NUMERIC","features":[579]},{"name":"SQL_CONVERT_REAL","features":[579]},{"name":"SQL_CONVERT_SMALLINT","features":[579]},{"name":"SQL_CONVERT_TIME","features":[579]},{"name":"SQL_CONVERT_TIMESTAMP","features":[579]},{"name":"SQL_CONVERT_TINYINT","features":[579]},{"name":"SQL_CONVERT_VARBINARY","features":[579]},{"name":"SQL_CONVERT_VARCHAR","features":[579]},{"name":"SQL_CONVERT_WCHAR","features":[579]},{"name":"SQL_CONVERT_WLONGVARCHAR","features":[579]},{"name":"SQL_CONVERT_WVARCHAR","features":[579]},{"name":"SQL_COPT_SS_ANSI_NPW","features":[579]},{"name":"SQL_COPT_SS_ANSI_OEM","features":[579]},{"name":"SQL_COPT_SS_ATTACHDBFILENAME","features":[579]},{"name":"SQL_COPT_SS_BASE","features":[579]},{"name":"SQL_COPT_SS_BASE_EX","features":[579]},{"name":"SQL_COPT_SS_BCP","features":[579]},{"name":"SQL_COPT_SS_BROWSE_CACHE_DATA","features":[579]},{"name":"SQL_COPT_SS_BROWSE_CONNECT","features":[579]},{"name":"SQL_COPT_SS_BROWSE_SERVER","features":[579]},{"name":"SQL_COPT_SS_CONCAT_NULL","features":[579]},{"name":"SQL_COPT_SS_CONNECTION_DEAD","features":[579]},{"name":"SQL_COPT_SS_ENCRYPT","features":[579]},{"name":"SQL_COPT_SS_EX_MAX_USED","features":[579]},{"name":"SQL_COPT_SS_FALLBACK_CONNECT","features":[579]},{"name":"SQL_COPT_SS_INTEGRATED_SECURITY","features":[579]},{"name":"SQL_COPT_SS_MAX_USED","features":[579]},{"name":"SQL_COPT_SS_PERF_DATA","features":[579]},{"name":"SQL_COPT_SS_PERF_DATA_LOG","features":[579]},{"name":"SQL_COPT_SS_PERF_DATA_LOG_NOW","features":[579]},{"name":"SQL_COPT_SS_PERF_QUERY","features":[579]},{"name":"SQL_COPT_SS_PERF_QUERY_INTERVAL","features":[579]},{"name":"SQL_COPT_SS_PERF_QUERY_LOG","features":[579]},{"name":"SQL_COPT_SS_PRESERVE_CURSORS","features":[579]},{"name":"SQL_COPT_SS_QUOTED_IDENT","features":[579]},{"name":"SQL_COPT_SS_REMOTE_PWD","features":[579]},{"name":"SQL_COPT_SS_RESET_CONNECTION","features":[579]},{"name":"SQL_COPT_SS_TRANSLATE","features":[579]},{"name":"SQL_COPT_SS_USER_DATA","features":[579]},{"name":"SQL_COPT_SS_USE_PROC_FOR_PREP","features":[579]},{"name":"SQL_COPT_SS_WARN_ON_CP_ERROR","features":[579]},{"name":"SQL_CORRELATION_NAME","features":[579]},{"name":"SQL_CO_AF","features":[579]},{"name":"SQL_CO_DEFAULT","features":[579]},{"name":"SQL_CO_FFO","features":[579]},{"name":"SQL_CO_FIREHOSE_AF","features":[579]},{"name":"SQL_CO_OFF","features":[579]},{"name":"SQL_CP_DEFAULT","features":[579]},{"name":"SQL_CP_DRIVER_AWARE","features":[579]},{"name":"SQL_CP_MATCH_DEFAULT","features":[579]},{"name":"SQL_CP_OFF","features":[579]},{"name":"SQL_CP_ONE_PER_DRIVER","features":[579]},{"name":"SQL_CP_ONE_PER_HENV","features":[579]},{"name":"SQL_CP_RELAXED_MATCH","features":[579]},{"name":"SQL_CP_STRICT_MATCH","features":[579]},{"name":"SQL_CREATE_ASSERTION","features":[579]},{"name":"SQL_CREATE_CHARACTER_SET","features":[579]},{"name":"SQL_CREATE_COLLATION","features":[579]},{"name":"SQL_CREATE_DOMAIN","features":[579]},{"name":"SQL_CREATE_SCHEMA","features":[579]},{"name":"SQL_CREATE_TABLE","features":[579]},{"name":"SQL_CREATE_TRANSLATION","features":[579]},{"name":"SQL_CREATE_VIEW","features":[579]},{"name":"SQL_CR_CLOSE","features":[579]},{"name":"SQL_CR_DELETE","features":[579]},{"name":"SQL_CR_PRESERVE","features":[579]},{"name":"SQL_CS_AUTHORIZATION","features":[579]},{"name":"SQL_CS_CREATE_SCHEMA","features":[579]},{"name":"SQL_CS_DEFAULT_CHARACTER_SET","features":[579]},{"name":"SQL_CTR_CREATE_TRANSLATION","features":[579]},{"name":"SQL_CT_COLUMN_COLLATION","features":[579]},{"name":"SQL_CT_COLUMN_CONSTRAINT","features":[579]},{"name":"SQL_CT_COLUMN_DEFAULT","features":[579]},{"name":"SQL_CT_COMMIT_DELETE","features":[579]},{"name":"SQL_CT_COMMIT_PRESERVE","features":[579]},{"name":"SQL_CT_CONSTRAINT_DEFERRABLE","features":[579]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","features":[579]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[579]},{"name":"SQL_CT_CONSTRAINT_NAME_DEFINITION","features":[579]},{"name":"SQL_CT_CONSTRAINT_NON_DEFERRABLE","features":[579]},{"name":"SQL_CT_CREATE_TABLE","features":[579]},{"name":"SQL_CT_GLOBAL_TEMPORARY","features":[579]},{"name":"SQL_CT_LOCAL_TEMPORARY","features":[579]},{"name":"SQL_CT_TABLE_CONSTRAINT","features":[579]},{"name":"SQL_CURRENT_QUALIFIER","features":[579]},{"name":"SQL_CURSOR_COMMIT_BEHAVIOR","features":[579]},{"name":"SQL_CURSOR_DYNAMIC","features":[579]},{"name":"SQL_CURSOR_FAST_FORWARD_ONLY","features":[579]},{"name":"SQL_CURSOR_FORWARD_ONLY","features":[579]},{"name":"SQL_CURSOR_KEYSET_DRIVEN","features":[579]},{"name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","features":[579]},{"name":"SQL_CURSOR_SENSITIVITY","features":[579]},{"name":"SQL_CURSOR_STATIC","features":[579]},{"name":"SQL_CURSOR_TYPE","features":[579]},{"name":"SQL_CURSOR_TYPE_DEFAULT","features":[579]},{"name":"SQL_CUR_DEFAULT","features":[579]},{"name":"SQL_CUR_USE_DRIVER","features":[579]},{"name":"SQL_CUR_USE_IF_NEEDED","features":[579]},{"name":"SQL_CUR_USE_ODBC","features":[579]},{"name":"SQL_CU_DML_STATEMENTS","features":[579]},{"name":"SQL_CU_INDEX_DEFINITION","features":[579]},{"name":"SQL_CU_PRIVILEGE_DEFINITION","features":[579]},{"name":"SQL_CU_PROCEDURE_INVOCATION","features":[579]},{"name":"SQL_CU_TABLE_DEFINITION","features":[579]},{"name":"SQL_CVT_BIGINT","features":[579]},{"name":"SQL_CVT_BINARY","features":[579]},{"name":"SQL_CVT_BIT","features":[579]},{"name":"SQL_CVT_CHAR","features":[579]},{"name":"SQL_CVT_DATE","features":[579]},{"name":"SQL_CVT_DECIMAL","features":[579]},{"name":"SQL_CVT_DOUBLE","features":[579]},{"name":"SQL_CVT_FLOAT","features":[579]},{"name":"SQL_CVT_GUID","features":[579]},{"name":"SQL_CVT_INTEGER","features":[579]},{"name":"SQL_CVT_INTERVAL_DAY_TIME","features":[579]},{"name":"SQL_CVT_INTERVAL_YEAR_MONTH","features":[579]},{"name":"SQL_CVT_LONGVARBINARY","features":[579]},{"name":"SQL_CVT_LONGVARCHAR","features":[579]},{"name":"SQL_CVT_NUMERIC","features":[579]},{"name":"SQL_CVT_REAL","features":[579]},{"name":"SQL_CVT_SMALLINT","features":[579]},{"name":"SQL_CVT_TIME","features":[579]},{"name":"SQL_CVT_TIMESTAMP","features":[579]},{"name":"SQL_CVT_TINYINT","features":[579]},{"name":"SQL_CVT_VARBINARY","features":[579]},{"name":"SQL_CVT_VARCHAR","features":[579]},{"name":"SQL_CVT_WCHAR","features":[579]},{"name":"SQL_CVT_WLONGVARCHAR","features":[579]},{"name":"SQL_CVT_WVARCHAR","features":[579]},{"name":"SQL_CV_CASCADED","features":[579]},{"name":"SQL_CV_CHECK_OPTION","features":[579]},{"name":"SQL_CV_CREATE_VIEW","features":[579]},{"name":"SQL_CV_LOCAL","features":[579]},{"name":"SQL_C_BINARY","features":[579]},{"name":"SQL_C_BIT","features":[579]},{"name":"SQL_C_CHAR","features":[579]},{"name":"SQL_C_DATE","features":[579]},{"name":"SQL_C_DEFAULT","features":[579]},{"name":"SQL_C_DOUBLE","features":[579]},{"name":"SQL_C_FLOAT","features":[579]},{"name":"SQL_C_GUID","features":[579]},{"name":"SQL_C_INTERVAL_DAY","features":[579]},{"name":"SQL_C_INTERVAL_DAY_TO_HOUR","features":[579]},{"name":"SQL_C_INTERVAL_DAY_TO_MINUTE","features":[579]},{"name":"SQL_C_INTERVAL_DAY_TO_SECOND","features":[579]},{"name":"SQL_C_INTERVAL_HOUR","features":[579]},{"name":"SQL_C_INTERVAL_HOUR_TO_MINUTE","features":[579]},{"name":"SQL_C_INTERVAL_HOUR_TO_SECOND","features":[579]},{"name":"SQL_C_INTERVAL_MINUTE","features":[579]},{"name":"SQL_C_INTERVAL_MINUTE_TO_SECOND","features":[579]},{"name":"SQL_C_INTERVAL_MONTH","features":[579]},{"name":"SQL_C_INTERVAL_SECOND","features":[579]},{"name":"SQL_C_INTERVAL_YEAR","features":[579]},{"name":"SQL_C_INTERVAL_YEAR_TO_MONTH","features":[579]},{"name":"SQL_C_LONG","features":[579]},{"name":"SQL_C_NUMERIC","features":[579]},{"name":"SQL_C_SHORT","features":[579]},{"name":"SQL_C_TCHAR","features":[579]},{"name":"SQL_C_TIME","features":[579]},{"name":"SQL_C_TIMESTAMP","features":[579]},{"name":"SQL_C_TINYINT","features":[579]},{"name":"SQL_C_TYPE_DATE","features":[579]},{"name":"SQL_C_TYPE_TIME","features":[579]},{"name":"SQL_C_TYPE_TIMESTAMP","features":[579]},{"name":"SQL_C_VARBOOKMARK","features":[579]},{"name":"SQL_C_WCHAR","features":[579]},{"name":"SQL_DATABASE_NAME","features":[579]},{"name":"SQL_DATA_AT_EXEC","features":[579]},{"name":"SQL_DATA_SOURCE_NAME","features":[579]},{"name":"SQL_DATA_SOURCE_READ_ONLY","features":[579]},{"name":"SQL_DATE","features":[579]},{"name":"SQL_DATETIME","features":[579]},{"name":"SQL_DATETIME_LITERALS","features":[579]},{"name":"SQL_DATE_LEN","features":[579]},{"name":"SQL_DAY","features":[579]},{"name":"SQL_DAY_SECOND_STRUCT","features":[579]},{"name":"SQL_DAY_TO_HOUR","features":[579]},{"name":"SQL_DAY_TO_MINUTE","features":[579]},{"name":"SQL_DAY_TO_SECOND","features":[579]},{"name":"SQL_DA_DROP_ASSERTION","features":[579]},{"name":"SQL_DBMS_NAME","features":[579]},{"name":"SQL_DBMS_VER","features":[579]},{"name":"SQL_DB_DEFAULT","features":[579]},{"name":"SQL_DB_DISCONNECT","features":[579]},{"name":"SQL_DB_RETURN_TO_POOL","features":[579]},{"name":"SQL_DCS_DROP_CHARACTER_SET","features":[579]},{"name":"SQL_DC_DROP_COLLATION","features":[579]},{"name":"SQL_DDL_INDEX","features":[579]},{"name":"SQL_DD_CASCADE","features":[579]},{"name":"SQL_DD_DROP_DOMAIN","features":[579]},{"name":"SQL_DD_RESTRICT","features":[579]},{"name":"SQL_DECIMAL","features":[579]},{"name":"SQL_DEFAULT","features":[579]},{"name":"SQL_DEFAULT_PARAM","features":[579]},{"name":"SQL_DEFAULT_TXN_ISOLATION","features":[579]},{"name":"SQL_DELETE","features":[579]},{"name":"SQL_DELETE_BY_BOOKMARK","features":[579]},{"name":"SQL_DESCRIBE_PARAMETER","features":[579]},{"name":"SQL_DESC_ALLOC_AUTO","features":[579]},{"name":"SQL_DESC_ALLOC_TYPE","features":[579]},{"name":"SQL_DESC_ALLOC_USER","features":[579]},{"name":"SQL_DESC_ARRAY_SIZE","features":[579]},{"name":"SQL_DESC_ARRAY_STATUS_PTR","features":[579]},{"name":"SQL_DESC_BASE_COLUMN_NAME","features":[579]},{"name":"SQL_DESC_BASE_TABLE_NAME","features":[579]},{"name":"SQL_DESC_BIND_OFFSET_PTR","features":[579]},{"name":"SQL_DESC_BIND_TYPE","features":[579]},{"name":"SQL_DESC_COUNT","features":[579]},{"name":"SQL_DESC_DATA_PTR","features":[579]},{"name":"SQL_DESC_DATETIME_INTERVAL_CODE","features":[579]},{"name":"SQL_DESC_DATETIME_INTERVAL_PRECISION","features":[579]},{"name":"SQL_DESC_INDICATOR_PTR","features":[579]},{"name":"SQL_DESC_LENGTH","features":[579]},{"name":"SQL_DESC_LITERAL_PREFIX","features":[579]},{"name":"SQL_DESC_LITERAL_SUFFIX","features":[579]},{"name":"SQL_DESC_LOCAL_TYPE_NAME","features":[579]},{"name":"SQL_DESC_MAXIMUM_SCALE","features":[579]},{"name":"SQL_DESC_MINIMUM_SCALE","features":[579]},{"name":"SQL_DESC_NAME","features":[579]},{"name":"SQL_DESC_NULLABLE","features":[579]},{"name":"SQL_DESC_NUM_PREC_RADIX","features":[579]},{"name":"SQL_DESC_OCTET_LENGTH","features":[579]},{"name":"SQL_DESC_OCTET_LENGTH_PTR","features":[579]},{"name":"SQL_DESC_PARAMETER_TYPE","features":[579]},{"name":"SQL_DESC_PRECISION","features":[579]},{"name":"SQL_DESC_ROWS_PROCESSED_PTR","features":[579]},{"name":"SQL_DESC_ROWVER","features":[579]},{"name":"SQL_DESC_SCALE","features":[579]},{"name":"SQL_DESC_TYPE","features":[579]},{"name":"SQL_DESC_UNNAMED","features":[579]},{"name":"SQL_DIAG_ALTER_DOMAIN","features":[579]},{"name":"SQL_DIAG_ALTER_TABLE","features":[579]},{"name":"SQL_DIAG_CALL","features":[579]},{"name":"SQL_DIAG_CLASS_ORIGIN","features":[579]},{"name":"SQL_DIAG_COLUMN_NUMBER","features":[579]},{"name":"SQL_DIAG_CONNECTION_NAME","features":[579]},{"name":"SQL_DIAG_CREATE_ASSERTION","features":[579]},{"name":"SQL_DIAG_CREATE_CHARACTER_SET","features":[579]},{"name":"SQL_DIAG_CREATE_COLLATION","features":[579]},{"name":"SQL_DIAG_CREATE_DOMAIN","features":[579]},{"name":"SQL_DIAG_CREATE_INDEX","features":[579]},{"name":"SQL_DIAG_CREATE_SCHEMA","features":[579]},{"name":"SQL_DIAG_CREATE_TABLE","features":[579]},{"name":"SQL_DIAG_CREATE_TRANSLATION","features":[579]},{"name":"SQL_DIAG_CREATE_VIEW","features":[579]},{"name":"SQL_DIAG_CURSOR_ROW_COUNT","features":[579]},{"name":"SQL_DIAG_DELETE_WHERE","features":[579]},{"name":"SQL_DIAG_DFC_SS_ALTER_DATABASE","features":[579]},{"name":"SQL_DIAG_DFC_SS_BASE","features":[579]},{"name":"SQL_DIAG_DFC_SS_CHECKPOINT","features":[579]},{"name":"SQL_DIAG_DFC_SS_CONDITION","features":[579]},{"name":"SQL_DIAG_DFC_SS_CREATE_DATABASE","features":[579]},{"name":"SQL_DIAG_DFC_SS_CREATE_DEFAULT","features":[579]},{"name":"SQL_DIAG_DFC_SS_CREATE_PROCEDURE","features":[579]},{"name":"SQL_DIAG_DFC_SS_CREATE_RULE","features":[579]},{"name":"SQL_DIAG_DFC_SS_CREATE_TRIGGER","features":[579]},{"name":"SQL_DIAG_DFC_SS_CURSOR_CLOSE","features":[579]},{"name":"SQL_DIAG_DFC_SS_CURSOR_DECLARE","features":[579]},{"name":"SQL_DIAG_DFC_SS_CURSOR_FETCH","features":[579]},{"name":"SQL_DIAG_DFC_SS_CURSOR_OPEN","features":[579]},{"name":"SQL_DIAG_DFC_SS_DBCC","features":[579]},{"name":"SQL_DIAG_DFC_SS_DEALLOCATE_CURSOR","features":[579]},{"name":"SQL_DIAG_DFC_SS_DENY","features":[579]},{"name":"SQL_DIAG_DFC_SS_DISK","features":[579]},{"name":"SQL_DIAG_DFC_SS_DROP_DATABASE","features":[579]},{"name":"SQL_DIAG_DFC_SS_DROP_DEFAULT","features":[579]},{"name":"SQL_DIAG_DFC_SS_DROP_PROCEDURE","features":[579]},{"name":"SQL_DIAG_DFC_SS_DROP_RULE","features":[579]},{"name":"SQL_DIAG_DFC_SS_DROP_TRIGGER","features":[579]},{"name":"SQL_DIAG_DFC_SS_DUMP_DATABASE","features":[579]},{"name":"SQL_DIAG_DFC_SS_DUMP_TABLE","features":[579]},{"name":"SQL_DIAG_DFC_SS_DUMP_TRANSACTION","features":[579]},{"name":"SQL_DIAG_DFC_SS_GOTO","features":[579]},{"name":"SQL_DIAG_DFC_SS_INSERT_BULK","features":[579]},{"name":"SQL_DIAG_DFC_SS_KILL","features":[579]},{"name":"SQL_DIAG_DFC_SS_LOAD_DATABASE","features":[579]},{"name":"SQL_DIAG_DFC_SS_LOAD_HEADERONLY","features":[579]},{"name":"SQL_DIAG_DFC_SS_LOAD_TABLE","features":[579]},{"name":"SQL_DIAG_DFC_SS_LOAD_TRANSACTION","features":[579]},{"name":"SQL_DIAG_DFC_SS_PRINT","features":[579]},{"name":"SQL_DIAG_DFC_SS_RAISERROR","features":[579]},{"name":"SQL_DIAG_DFC_SS_READTEXT","features":[579]},{"name":"SQL_DIAG_DFC_SS_RECONFIGURE","features":[579]},{"name":"SQL_DIAG_DFC_SS_RETURN","features":[579]},{"name":"SQL_DIAG_DFC_SS_SELECT_INTO","features":[579]},{"name":"SQL_DIAG_DFC_SS_SET","features":[579]},{"name":"SQL_DIAG_DFC_SS_SETUSER","features":[579]},{"name":"SQL_DIAG_DFC_SS_SET_IDENTITY_INSERT","features":[579]},{"name":"SQL_DIAG_DFC_SS_SET_ROW_COUNT","features":[579]},{"name":"SQL_DIAG_DFC_SS_SET_STATISTICS","features":[579]},{"name":"SQL_DIAG_DFC_SS_SET_TEXTSIZE","features":[579]},{"name":"SQL_DIAG_DFC_SS_SET_XCTLVL","features":[579]},{"name":"SQL_DIAG_DFC_SS_SHUTDOWN","features":[579]},{"name":"SQL_DIAG_DFC_SS_TRANS_BEGIN","features":[579]},{"name":"SQL_DIAG_DFC_SS_TRANS_COMMIT","features":[579]},{"name":"SQL_DIAG_DFC_SS_TRANS_PREPARE","features":[579]},{"name":"SQL_DIAG_DFC_SS_TRANS_ROLLBACK","features":[579]},{"name":"SQL_DIAG_DFC_SS_TRANS_SAVE","features":[579]},{"name":"SQL_DIAG_DFC_SS_TRUNCATE_TABLE","features":[579]},{"name":"SQL_DIAG_DFC_SS_UPDATETEXT","features":[579]},{"name":"SQL_DIAG_DFC_SS_UPDATE_STATISTICS","features":[579]},{"name":"SQL_DIAG_DFC_SS_USE","features":[579]},{"name":"SQL_DIAG_DFC_SS_WAITFOR","features":[579]},{"name":"SQL_DIAG_DFC_SS_WRITETEXT","features":[579]},{"name":"SQL_DIAG_DROP_ASSERTION","features":[579]},{"name":"SQL_DIAG_DROP_CHARACTER_SET","features":[579]},{"name":"SQL_DIAG_DROP_COLLATION","features":[579]},{"name":"SQL_DIAG_DROP_DOMAIN","features":[579]},{"name":"SQL_DIAG_DROP_INDEX","features":[579]},{"name":"SQL_DIAG_DROP_SCHEMA","features":[579]},{"name":"SQL_DIAG_DROP_TABLE","features":[579]},{"name":"SQL_DIAG_DROP_TRANSLATION","features":[579]},{"name":"SQL_DIAG_DROP_VIEW","features":[579]},{"name":"SQL_DIAG_DYNAMIC_DELETE_CURSOR","features":[579]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION","features":[579]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION_CODE","features":[579]},{"name":"SQL_DIAG_DYNAMIC_UPDATE_CURSOR","features":[579]},{"name":"SQL_DIAG_GRANT","features":[579]},{"name":"SQL_DIAG_INSERT","features":[579]},{"name":"SQL_DIAG_MESSAGE_TEXT","features":[579]},{"name":"SQL_DIAG_NATIVE","features":[579]},{"name":"SQL_DIAG_NUMBER","features":[579]},{"name":"SQL_DIAG_RETURNCODE","features":[579]},{"name":"SQL_DIAG_REVOKE","features":[579]},{"name":"SQL_DIAG_ROW_COUNT","features":[579]},{"name":"SQL_DIAG_ROW_NUMBER","features":[579]},{"name":"SQL_DIAG_SELECT_CURSOR","features":[579]},{"name":"SQL_DIAG_SERVER_NAME","features":[579]},{"name":"SQL_DIAG_SQLSTATE","features":[579]},{"name":"SQL_DIAG_SS_BASE","features":[579]},{"name":"SQL_DIAG_SS_LINE","features":[579]},{"name":"SQL_DIAG_SS_MSGSTATE","features":[579]},{"name":"SQL_DIAG_SS_PROCNAME","features":[579]},{"name":"SQL_DIAG_SS_SEVERITY","features":[579]},{"name":"SQL_DIAG_SS_SRVNAME","features":[579]},{"name":"SQL_DIAG_SUBCLASS_ORIGIN","features":[579]},{"name":"SQL_DIAG_UNKNOWN_STATEMENT","features":[579]},{"name":"SQL_DIAG_UPDATE_WHERE","features":[579]},{"name":"SQL_DI_CREATE_INDEX","features":[579]},{"name":"SQL_DI_DROP_INDEX","features":[579]},{"name":"SQL_DL_SQL92_DATE","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_DAY","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_MONTH","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_SECOND","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR","features":[579]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","features":[579]},{"name":"SQL_DL_SQL92_TIME","features":[579]},{"name":"SQL_DL_SQL92_TIMESTAMP","features":[579]},{"name":"SQL_DM_VER","features":[579]},{"name":"SQL_DOUBLE","features":[579]},{"name":"SQL_DP_OFF","features":[579]},{"name":"SQL_DP_ON","features":[579]},{"name":"SQL_DRIVER_AWARE_POOLING_CAPABLE","features":[579]},{"name":"SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","features":[579]},{"name":"SQL_DRIVER_AWARE_POOLING_SUPPORTED","features":[579]},{"name":"SQL_DRIVER_COMPLETE","features":[579]},{"name":"SQL_DRIVER_COMPLETE_REQUIRED","features":[579]},{"name":"SQL_DRIVER_CONN_ATTR_BASE","features":[579]},{"name":"SQL_DRIVER_C_TYPE_BASE","features":[579]},{"name":"SQL_DRIVER_DESC_FIELD_BASE","features":[579]},{"name":"SQL_DRIVER_DIAG_FIELD_BASE","features":[579]},{"name":"SQL_DRIVER_HDBC","features":[579]},{"name":"SQL_DRIVER_HDESC","features":[579]},{"name":"SQL_DRIVER_HENV","features":[579]},{"name":"SQL_DRIVER_HLIB","features":[579]},{"name":"SQL_DRIVER_HSTMT","features":[579]},{"name":"SQL_DRIVER_INFO_TYPE_BASE","features":[579]},{"name":"SQL_DRIVER_NAME","features":[579]},{"name":"SQL_DRIVER_NOPROMPT","features":[579]},{"name":"SQL_DRIVER_ODBC_VER","features":[579]},{"name":"SQL_DRIVER_PROMPT","features":[579]},{"name":"SQL_DRIVER_SQL_TYPE_BASE","features":[579]},{"name":"SQL_DRIVER_STMT_ATTR_BASE","features":[579]},{"name":"SQL_DRIVER_VER","features":[579]},{"name":"SQL_DROP","features":[579]},{"name":"SQL_DROP_ASSERTION","features":[579]},{"name":"SQL_DROP_CHARACTER_SET","features":[579]},{"name":"SQL_DROP_COLLATION","features":[579]},{"name":"SQL_DROP_DOMAIN","features":[579]},{"name":"SQL_DROP_SCHEMA","features":[579]},{"name":"SQL_DROP_TABLE","features":[579]},{"name":"SQL_DROP_TRANSLATION","features":[579]},{"name":"SQL_DROP_VIEW","features":[579]},{"name":"SQL_DS_CASCADE","features":[579]},{"name":"SQL_DS_DROP_SCHEMA","features":[579]},{"name":"SQL_DS_RESTRICT","features":[579]},{"name":"SQL_DTC_DONE","features":[579]},{"name":"SQL_DTC_ENLIST_EXPENSIVE","features":[579]},{"name":"SQL_DTC_TRANSITION_COST","features":[579]},{"name":"SQL_DTC_UNENLIST_EXPENSIVE","features":[579]},{"name":"SQL_DTR_DROP_TRANSLATION","features":[579]},{"name":"SQL_DT_CASCADE","features":[579]},{"name":"SQL_DT_DROP_TABLE","features":[579]},{"name":"SQL_DT_RESTRICT","features":[579]},{"name":"SQL_DV_CASCADE","features":[579]},{"name":"SQL_DV_DROP_VIEW","features":[579]},{"name":"SQL_DV_RESTRICT","features":[579]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES1","features":[579]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES2","features":[579]},{"name":"SQL_ENSURE","features":[579]},{"name":"SQL_ENTIRE_ROWSET","features":[579]},{"name":"SQL_EN_OFF","features":[579]},{"name":"SQL_EN_ON","features":[579]},{"name":"SQL_ERROR","features":[579]},{"name":"SQL_EXPRESSIONS_IN_ORDERBY","features":[579]},{"name":"SQL_EXT_API_LAST","features":[579]},{"name":"SQL_EXT_API_START","features":[579]},{"name":"SQL_FALSE","features":[579]},{"name":"SQL_FAST_CONNECT","features":[579]},{"name":"SQL_FB_DEFAULT","features":[579]},{"name":"SQL_FB_OFF","features":[579]},{"name":"SQL_FB_ON","features":[579]},{"name":"SQL_FC_DEFAULT","features":[579]},{"name":"SQL_FC_OFF","features":[579]},{"name":"SQL_FC_ON","features":[579]},{"name":"SQL_FD_FETCH_ABSOLUTE","features":[579]},{"name":"SQL_FD_FETCH_BOOKMARK","features":[579]},{"name":"SQL_FD_FETCH_FIRST","features":[579]},{"name":"SQL_FD_FETCH_LAST","features":[579]},{"name":"SQL_FD_FETCH_NEXT","features":[579]},{"name":"SQL_FD_FETCH_PREV","features":[579]},{"name":"SQL_FD_FETCH_PRIOR","features":[579]},{"name":"SQL_FD_FETCH_RELATIVE","features":[579]},{"name":"SQL_FD_FETCH_RESUME","features":[579]},{"name":"SQL_FETCH_ABSOLUTE","features":[579]},{"name":"SQL_FETCH_BOOKMARK","features":[579]},{"name":"SQL_FETCH_BY_BOOKMARK","features":[579]},{"name":"SQL_FETCH_DIRECTION","features":[579]},{"name":"SQL_FETCH_FIRST","features":[579]},{"name":"SQL_FETCH_FIRST_SYSTEM","features":[579]},{"name":"SQL_FETCH_FIRST_USER","features":[579]},{"name":"SQL_FETCH_LAST","features":[579]},{"name":"SQL_FETCH_NEXT","features":[579]},{"name":"SQL_FETCH_PREV","features":[579]},{"name":"SQL_FETCH_PRIOR","features":[579]},{"name":"SQL_FETCH_RELATIVE","features":[579]},{"name":"SQL_FETCH_RESUME","features":[579]},{"name":"SQL_FILE_CATALOG","features":[579]},{"name":"SQL_FILE_NOT_SUPPORTED","features":[579]},{"name":"SQL_FILE_QUALIFIER","features":[579]},{"name":"SQL_FILE_TABLE","features":[579]},{"name":"SQL_FILE_USAGE","features":[579]},{"name":"SQL_FLOAT","features":[579]},{"name":"SQL_FN_CVT_CAST","features":[579]},{"name":"SQL_FN_CVT_CONVERT","features":[579]},{"name":"SQL_FN_NUM_ABS","features":[579]},{"name":"SQL_FN_NUM_ACOS","features":[579]},{"name":"SQL_FN_NUM_ASIN","features":[579]},{"name":"SQL_FN_NUM_ATAN","features":[579]},{"name":"SQL_FN_NUM_ATAN2","features":[579]},{"name":"SQL_FN_NUM_CEILING","features":[579]},{"name":"SQL_FN_NUM_COS","features":[579]},{"name":"SQL_FN_NUM_COT","features":[579]},{"name":"SQL_FN_NUM_DEGREES","features":[579]},{"name":"SQL_FN_NUM_EXP","features":[579]},{"name":"SQL_FN_NUM_FLOOR","features":[579]},{"name":"SQL_FN_NUM_LOG","features":[579]},{"name":"SQL_FN_NUM_LOG10","features":[579]},{"name":"SQL_FN_NUM_MOD","features":[579]},{"name":"SQL_FN_NUM_PI","features":[579]},{"name":"SQL_FN_NUM_POWER","features":[579]},{"name":"SQL_FN_NUM_RADIANS","features":[579]},{"name":"SQL_FN_NUM_RAND","features":[579]},{"name":"SQL_FN_NUM_ROUND","features":[579]},{"name":"SQL_FN_NUM_SIGN","features":[579]},{"name":"SQL_FN_NUM_SIN","features":[579]},{"name":"SQL_FN_NUM_SQRT","features":[579]},{"name":"SQL_FN_NUM_TAN","features":[579]},{"name":"SQL_FN_NUM_TRUNCATE","features":[579]},{"name":"SQL_FN_STR_ASCII","features":[579]},{"name":"SQL_FN_STR_BIT_LENGTH","features":[579]},{"name":"SQL_FN_STR_CHAR","features":[579]},{"name":"SQL_FN_STR_CHARACTER_LENGTH","features":[579]},{"name":"SQL_FN_STR_CHAR_LENGTH","features":[579]},{"name":"SQL_FN_STR_CONCAT","features":[579]},{"name":"SQL_FN_STR_DIFFERENCE","features":[579]},{"name":"SQL_FN_STR_INSERT","features":[579]},{"name":"SQL_FN_STR_LCASE","features":[579]},{"name":"SQL_FN_STR_LEFT","features":[579]},{"name":"SQL_FN_STR_LENGTH","features":[579]},{"name":"SQL_FN_STR_LOCATE","features":[579]},{"name":"SQL_FN_STR_LOCATE_2","features":[579]},{"name":"SQL_FN_STR_LTRIM","features":[579]},{"name":"SQL_FN_STR_OCTET_LENGTH","features":[579]},{"name":"SQL_FN_STR_POSITION","features":[579]},{"name":"SQL_FN_STR_REPEAT","features":[579]},{"name":"SQL_FN_STR_REPLACE","features":[579]},{"name":"SQL_FN_STR_RIGHT","features":[579]},{"name":"SQL_FN_STR_RTRIM","features":[579]},{"name":"SQL_FN_STR_SOUNDEX","features":[579]},{"name":"SQL_FN_STR_SPACE","features":[579]},{"name":"SQL_FN_STR_SUBSTRING","features":[579]},{"name":"SQL_FN_STR_UCASE","features":[579]},{"name":"SQL_FN_SYS_DBNAME","features":[579]},{"name":"SQL_FN_SYS_IFNULL","features":[579]},{"name":"SQL_FN_SYS_USERNAME","features":[579]},{"name":"SQL_FN_TD_CURDATE","features":[579]},{"name":"SQL_FN_TD_CURRENT_DATE","features":[579]},{"name":"SQL_FN_TD_CURRENT_TIME","features":[579]},{"name":"SQL_FN_TD_CURRENT_TIMESTAMP","features":[579]},{"name":"SQL_FN_TD_CURTIME","features":[579]},{"name":"SQL_FN_TD_DAYNAME","features":[579]},{"name":"SQL_FN_TD_DAYOFMONTH","features":[579]},{"name":"SQL_FN_TD_DAYOFWEEK","features":[579]},{"name":"SQL_FN_TD_DAYOFYEAR","features":[579]},{"name":"SQL_FN_TD_EXTRACT","features":[579]},{"name":"SQL_FN_TD_HOUR","features":[579]},{"name":"SQL_FN_TD_MINUTE","features":[579]},{"name":"SQL_FN_TD_MONTH","features":[579]},{"name":"SQL_FN_TD_MONTHNAME","features":[579]},{"name":"SQL_FN_TD_NOW","features":[579]},{"name":"SQL_FN_TD_QUARTER","features":[579]},{"name":"SQL_FN_TD_SECOND","features":[579]},{"name":"SQL_FN_TD_TIMESTAMPADD","features":[579]},{"name":"SQL_FN_TD_TIMESTAMPDIFF","features":[579]},{"name":"SQL_FN_TD_WEEK","features":[579]},{"name":"SQL_FN_TD_YEAR","features":[579]},{"name":"SQL_FN_TSI_DAY","features":[579]},{"name":"SQL_FN_TSI_FRAC_SECOND","features":[579]},{"name":"SQL_FN_TSI_HOUR","features":[579]},{"name":"SQL_FN_TSI_MINUTE","features":[579]},{"name":"SQL_FN_TSI_MONTH","features":[579]},{"name":"SQL_FN_TSI_QUARTER","features":[579]},{"name":"SQL_FN_TSI_SECOND","features":[579]},{"name":"SQL_FN_TSI_WEEK","features":[579]},{"name":"SQL_FN_TSI_YEAR","features":[579]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","features":[579]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","features":[579]},{"name":"SQL_GB_COLLATE","features":[579]},{"name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","features":[579]},{"name":"SQL_GB_GROUP_BY_EQUALS_SELECT","features":[579]},{"name":"SQL_GB_NOT_SUPPORTED","features":[579]},{"name":"SQL_GB_NO_RELATION","features":[579]},{"name":"SQL_GD_ANY_COLUMN","features":[579]},{"name":"SQL_GD_ANY_ORDER","features":[579]},{"name":"SQL_GD_BLOCK","features":[579]},{"name":"SQL_GD_BOUND","features":[579]},{"name":"SQL_GD_OUTPUT_PARAMS","features":[579]},{"name":"SQL_GETDATA_EXTENSIONS","features":[579]},{"name":"SQL_GET_BOOKMARK","features":[579]},{"name":"SQL_GROUP_BY","features":[579]},{"name":"SQL_GUID","features":[579]},{"name":"SQL_HANDLE_DBC","features":[579]},{"name":"SQL_HANDLE_DBC_INFO_TOKEN","features":[579]},{"name":"SQL_HANDLE_DESC","features":[579]},{"name":"SQL_HANDLE_ENV","features":[579]},{"name":"SQL_HANDLE_SENV","features":[579]},{"name":"SQL_HANDLE_STMT","features":[579]},{"name":"SQL_HC_DEFAULT","features":[579]},{"name":"SQL_HC_OFF","features":[579]},{"name":"SQL_HC_ON","features":[579]},{"name":"SQL_HOUR","features":[579]},{"name":"SQL_HOUR_TO_MINUTE","features":[579]},{"name":"SQL_HOUR_TO_SECOND","features":[579]},{"name":"SQL_IC_LOWER","features":[579]},{"name":"SQL_IC_MIXED","features":[579]},{"name":"SQL_IC_SENSITIVE","features":[579]},{"name":"SQL_IC_UPPER","features":[579]},{"name":"SQL_IDENTIFIER_CASE","features":[579]},{"name":"SQL_IDENTIFIER_QUOTE_CHAR","features":[579]},{"name":"SQL_IGNORE","features":[579]},{"name":"SQL_IK_ASC","features":[579]},{"name":"SQL_IK_DESC","features":[579]},{"name":"SQL_IK_NONE","features":[579]},{"name":"SQL_INDEX_ALL","features":[579]},{"name":"SQL_INDEX_CLUSTERED","features":[579]},{"name":"SQL_INDEX_HASHED","features":[579]},{"name":"SQL_INDEX_KEYWORDS","features":[579]},{"name":"SQL_INDEX_OTHER","features":[579]},{"name":"SQL_INDEX_UNIQUE","features":[579]},{"name":"SQL_INFO_DRIVER_START","features":[579]},{"name":"SQL_INFO_FIRST","features":[579]},{"name":"SQL_INFO_LAST","features":[579]},{"name":"SQL_INFO_SCHEMA_VIEWS","features":[579]},{"name":"SQL_INFO_SS_FIRST","features":[579]},{"name":"SQL_INFO_SS_MAX_USED","features":[579]},{"name":"SQL_INFO_SS_NETLIB_NAME","features":[579]},{"name":"SQL_INFO_SS_NETLIB_NAMEA","features":[579]},{"name":"SQL_INFO_SS_NETLIB_NAMEW","features":[579]},{"name":"SQL_INITIALLY_DEFERRED","features":[579]},{"name":"SQL_INITIALLY_IMMEDIATE","features":[579]},{"name":"SQL_INSENSITIVE","features":[579]},{"name":"SQL_INSERT_STATEMENT","features":[579]},{"name":"SQL_INTEGER","features":[579]},{"name":"SQL_INTEGRATED_SECURITY","features":[579]},{"name":"SQL_INTEGRITY","features":[579]},{"name":"SQL_INTERVAL","features":[579]},{"name":"SQL_INTERVAL_DAY","features":[579]},{"name":"SQL_INTERVAL_DAY_TO_HOUR","features":[579]},{"name":"SQL_INTERVAL_DAY_TO_MINUTE","features":[579]},{"name":"SQL_INTERVAL_DAY_TO_SECOND","features":[579]},{"name":"SQL_INTERVAL_HOUR","features":[579]},{"name":"SQL_INTERVAL_HOUR_TO_MINUTE","features":[579]},{"name":"SQL_INTERVAL_HOUR_TO_SECOND","features":[579]},{"name":"SQL_INTERVAL_MINUTE","features":[579]},{"name":"SQL_INTERVAL_MINUTE_TO_SECOND","features":[579]},{"name":"SQL_INTERVAL_MONTH","features":[579]},{"name":"SQL_INTERVAL_SECOND","features":[579]},{"name":"SQL_INTERVAL_STRUCT","features":[579]},{"name":"SQL_INTERVAL_YEAR","features":[579]},{"name":"SQL_INTERVAL_YEAR_TO_MONTH","features":[579]},{"name":"SQL_INVALID_HANDLE","features":[579]},{"name":"SQL_ISV_ASSERTIONS","features":[579]},{"name":"SQL_ISV_CHARACTER_SETS","features":[579]},{"name":"SQL_ISV_CHECK_CONSTRAINTS","features":[579]},{"name":"SQL_ISV_COLLATIONS","features":[579]},{"name":"SQL_ISV_COLUMNS","features":[579]},{"name":"SQL_ISV_COLUMN_DOMAIN_USAGE","features":[579]},{"name":"SQL_ISV_COLUMN_PRIVILEGES","features":[579]},{"name":"SQL_ISV_CONSTRAINT_COLUMN_USAGE","features":[579]},{"name":"SQL_ISV_CONSTRAINT_TABLE_USAGE","features":[579]},{"name":"SQL_ISV_DOMAINS","features":[579]},{"name":"SQL_ISV_DOMAIN_CONSTRAINTS","features":[579]},{"name":"SQL_ISV_KEY_COLUMN_USAGE","features":[579]},{"name":"SQL_ISV_REFERENTIAL_CONSTRAINTS","features":[579]},{"name":"SQL_ISV_SCHEMATA","features":[579]},{"name":"SQL_ISV_SQL_LANGUAGES","features":[579]},{"name":"SQL_ISV_TABLES","features":[579]},{"name":"SQL_ISV_TABLE_CONSTRAINTS","features":[579]},{"name":"SQL_ISV_TABLE_PRIVILEGES","features":[579]},{"name":"SQL_ISV_TRANSLATIONS","features":[579]},{"name":"SQL_ISV_USAGE_PRIVILEGES","features":[579]},{"name":"SQL_ISV_VIEWS","features":[579]},{"name":"SQL_ISV_VIEW_COLUMN_USAGE","features":[579]},{"name":"SQL_ISV_VIEW_TABLE_USAGE","features":[579]},{"name":"SQL_IS_DAY","features":[579]},{"name":"SQL_IS_DAY_TO_HOUR","features":[579]},{"name":"SQL_IS_DAY_TO_MINUTE","features":[579]},{"name":"SQL_IS_DAY_TO_SECOND","features":[579]},{"name":"SQL_IS_DEFAULT","features":[579]},{"name":"SQL_IS_HOUR","features":[579]},{"name":"SQL_IS_HOUR_TO_MINUTE","features":[579]},{"name":"SQL_IS_HOUR_TO_SECOND","features":[579]},{"name":"SQL_IS_INSERT_LITERALS","features":[579]},{"name":"SQL_IS_INSERT_SEARCHED","features":[579]},{"name":"SQL_IS_INTEGER","features":[579]},{"name":"SQL_IS_MINUTE","features":[579]},{"name":"SQL_IS_MINUTE_TO_SECOND","features":[579]},{"name":"SQL_IS_MONTH","features":[579]},{"name":"SQL_IS_OFF","features":[579]},{"name":"SQL_IS_ON","features":[579]},{"name":"SQL_IS_POINTER","features":[579]},{"name":"SQL_IS_SECOND","features":[579]},{"name":"SQL_IS_SELECT_INTO","features":[579]},{"name":"SQL_IS_SMALLINT","features":[579]},{"name":"SQL_IS_UINTEGER","features":[579]},{"name":"SQL_IS_USMALLINT","features":[579]},{"name":"SQL_IS_YEAR","features":[579]},{"name":"SQL_IS_YEAR_TO_MONTH","features":[579]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES1","features":[579]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES2","features":[579]},{"name":"SQL_KEYSET_SIZE","features":[579]},{"name":"SQL_KEYSET_SIZE_DEFAULT","features":[579]},{"name":"SQL_KEYWORDS","features":[579]},{"name":"SQL_LCK_EXCLUSIVE","features":[579]},{"name":"SQL_LCK_NO_CHANGE","features":[579]},{"name":"SQL_LCK_UNLOCK","features":[579]},{"name":"SQL_LEN_BINARY_ATTR_OFFSET","features":[579]},{"name":"SQL_LEN_DATA_AT_EXEC_OFFSET","features":[579]},{"name":"SQL_LIKE_ESCAPE_CLAUSE","features":[579]},{"name":"SQL_LIKE_ONLY","features":[579]},{"name":"SQL_LOCK_EXCLUSIVE","features":[579]},{"name":"SQL_LOCK_NO_CHANGE","features":[579]},{"name":"SQL_LOCK_TYPES","features":[579]},{"name":"SQL_LOCK_UNLOCK","features":[579]},{"name":"SQL_LOGIN_TIMEOUT","features":[579]},{"name":"SQL_LOGIN_TIMEOUT_DEFAULT","features":[579]},{"name":"SQL_LONGVARBINARY","features":[579]},{"name":"SQL_LONGVARCHAR","features":[579]},{"name":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","features":[579]},{"name":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","features":[579]},{"name":"SQL_MAXIMUM_COLUMNS_IN_INDEX","features":[579]},{"name":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","features":[579]},{"name":"SQL_MAXIMUM_COLUMNS_IN_SELECT","features":[579]},{"name":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","features":[579]},{"name":"SQL_MAXIMUM_CONCURRENT_ACTIVITIES","features":[579]},{"name":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","features":[579]},{"name":"SQL_MAXIMUM_DRIVER_CONNECTIONS","features":[579]},{"name":"SQL_MAXIMUM_IDENTIFIER_LENGTH","features":[579]},{"name":"SQL_MAXIMUM_INDEX_SIZE","features":[579]},{"name":"SQL_MAXIMUM_ROW_SIZE","features":[579]},{"name":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","features":[579]},{"name":"SQL_MAXIMUM_STATEMENT_LENGTH","features":[579]},{"name":"SQL_MAXIMUM_TABLES_IN_SELECT","features":[579]},{"name":"SQL_MAXIMUM_USER_NAME_LENGTH","features":[579]},{"name":"SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","features":[579]},{"name":"SQL_MAX_BINARY_LITERAL_LEN","features":[579]},{"name":"SQL_MAX_CATALOG_NAME_LEN","features":[579]},{"name":"SQL_MAX_CHAR_LITERAL_LEN","features":[579]},{"name":"SQL_MAX_COLUMNS_IN_GROUP_BY","features":[579]},{"name":"SQL_MAX_COLUMNS_IN_INDEX","features":[579]},{"name":"SQL_MAX_COLUMNS_IN_ORDER_BY","features":[579]},{"name":"SQL_MAX_COLUMNS_IN_SELECT","features":[579]},{"name":"SQL_MAX_COLUMNS_IN_TABLE","features":[579]},{"name":"SQL_MAX_COLUMN_NAME_LEN","features":[579]},{"name":"SQL_MAX_CONCURRENT_ACTIVITIES","features":[579]},{"name":"SQL_MAX_CURSOR_NAME_LEN","features":[579]},{"name":"SQL_MAX_DRIVER_CONNECTIONS","features":[579]},{"name":"SQL_MAX_DSN_LENGTH","features":[579]},{"name":"SQL_MAX_IDENTIFIER_LEN","features":[579]},{"name":"SQL_MAX_INDEX_SIZE","features":[579]},{"name":"SQL_MAX_LENGTH","features":[579]},{"name":"SQL_MAX_LENGTH_DEFAULT","features":[579]},{"name":"SQL_MAX_MESSAGE_LENGTH","features":[579]},{"name":"SQL_MAX_NUMERIC_LEN","features":[579]},{"name":"SQL_MAX_OPTION_STRING_LENGTH","features":[579]},{"name":"SQL_MAX_OWNER_NAME_LEN","features":[579]},{"name":"SQL_MAX_PROCEDURE_NAME_LEN","features":[579]},{"name":"SQL_MAX_QUALIFIER_NAME_LEN","features":[579]},{"name":"SQL_MAX_ROWS","features":[579]},{"name":"SQL_MAX_ROWS_DEFAULT","features":[579]},{"name":"SQL_MAX_ROW_SIZE","features":[579]},{"name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","features":[579]},{"name":"SQL_MAX_SCHEMA_NAME_LEN","features":[579]},{"name":"SQL_MAX_SQLSERVERNAME","features":[579]},{"name":"SQL_MAX_STATEMENT_LEN","features":[579]},{"name":"SQL_MAX_TABLES_IN_SELECT","features":[579]},{"name":"SQL_MAX_TABLE_NAME_LEN","features":[579]},{"name":"SQL_MAX_USER_NAME_LEN","features":[579]},{"name":"SQL_MINUTE","features":[579]},{"name":"SQL_MINUTE_TO_SECOND","features":[579]},{"name":"SQL_MODE_DEFAULT","features":[579]},{"name":"SQL_MODE_READ_ONLY","features":[579]},{"name":"SQL_MODE_READ_WRITE","features":[579]},{"name":"SQL_MONTH","features":[579]},{"name":"SQL_MORE_INFO_NO","features":[579]},{"name":"SQL_MORE_INFO_YES","features":[579]},{"name":"SQL_MULTIPLE_ACTIVE_TXN","features":[579]},{"name":"SQL_MULT_RESULT_SETS","features":[579]},{"name":"SQL_NAMED","features":[579]},{"name":"SQL_NB_DEFAULT","features":[579]},{"name":"SQL_NB_OFF","features":[579]},{"name":"SQL_NB_ON","features":[579]},{"name":"SQL_NC_END","features":[579]},{"name":"SQL_NC_HIGH","features":[579]},{"name":"SQL_NC_LOW","features":[579]},{"name":"SQL_NC_OFF","features":[579]},{"name":"SQL_NC_ON","features":[579]},{"name":"SQL_NC_START","features":[579]},{"name":"SQL_NEED_DATA","features":[579]},{"name":"SQL_NEED_LONG_DATA_LEN","features":[579]},{"name":"SQL_NNC_NON_NULL","features":[579]},{"name":"SQL_NNC_NULL","features":[579]},{"name":"SQL_NONSCROLLABLE","features":[579]},{"name":"SQL_NON_NULLABLE_COLUMNS","features":[579]},{"name":"SQL_NOSCAN","features":[579]},{"name":"SQL_NOSCAN_DEFAULT","features":[579]},{"name":"SQL_NOSCAN_OFF","features":[579]},{"name":"SQL_NOSCAN_ON","features":[579]},{"name":"SQL_NOT_DEFERRABLE","features":[579]},{"name":"SQL_NO_ACTION","features":[579]},{"name":"SQL_NO_COLUMN_NUMBER","features":[579]},{"name":"SQL_NO_DATA","features":[579]},{"name":"SQL_NO_DATA_FOUND","features":[579]},{"name":"SQL_NO_NULLS","features":[579]},{"name":"SQL_NO_ROW_NUMBER","features":[579]},{"name":"SQL_NO_TOTAL","features":[579]},{"name":"SQL_NTS","features":[579]},{"name":"SQL_NTSL","features":[579]},{"name":"SQL_NULLABLE","features":[579]},{"name":"SQL_NULLABLE_UNKNOWN","features":[579]},{"name":"SQL_NULL_COLLATION","features":[579]},{"name":"SQL_NULL_DATA","features":[579]},{"name":"SQL_NULL_HANDLE","features":[579]},{"name":"SQL_NULL_HDBC","features":[579]},{"name":"SQL_NULL_HDESC","features":[579]},{"name":"SQL_NULL_HENV","features":[579]},{"name":"SQL_NULL_HSTMT","features":[579]},{"name":"SQL_NUMERIC","features":[579]},{"name":"SQL_NUMERIC_FUNCTIONS","features":[579]},{"name":"SQL_NUMERIC_STRUCT","features":[579]},{"name":"SQL_NUM_FUNCTIONS","features":[579]},{"name":"SQL_OAC_LEVEL1","features":[579]},{"name":"SQL_OAC_LEVEL2","features":[579]},{"name":"SQL_OAC_NONE","features":[579]},{"name":"SQL_ODBC_API_CONFORMANCE","features":[579]},{"name":"SQL_ODBC_CURSORS","features":[579]},{"name":"SQL_ODBC_INTERFACE_CONFORMANCE","features":[579]},{"name":"SQL_ODBC_KEYWORDS","features":[579]},{"name":"SQL_ODBC_SAG_CLI_CONFORMANCE","features":[579]},{"name":"SQL_ODBC_SQL_CONFORMANCE","features":[579]},{"name":"SQL_ODBC_SQL_OPT_IEF","features":[579]},{"name":"SQL_ODBC_VER","features":[579]},{"name":"SQL_OIC_CORE","features":[579]},{"name":"SQL_OIC_LEVEL1","features":[579]},{"name":"SQL_OIC_LEVEL2","features":[579]},{"name":"SQL_OJ_ALL_COMPARISON_OPS","features":[579]},{"name":"SQL_OJ_CAPABILITIES","features":[579]},{"name":"SQL_OJ_FULL","features":[579]},{"name":"SQL_OJ_INNER","features":[579]},{"name":"SQL_OJ_LEFT","features":[579]},{"name":"SQL_OJ_NESTED","features":[579]},{"name":"SQL_OJ_NOT_ORDERED","features":[579]},{"name":"SQL_OJ_RIGHT","features":[579]},{"name":"SQL_OPT_TRACE","features":[579]},{"name":"SQL_OPT_TRACEFILE","features":[579]},{"name":"SQL_OPT_TRACE_DEFAULT","features":[579]},{"name":"SQL_OPT_TRACE_FILE_DEFAULT","features":[579]},{"name":"SQL_OPT_TRACE_OFF","features":[579]},{"name":"SQL_OPT_TRACE_ON","features":[579]},{"name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","features":[579]},{"name":"SQL_OSCC_COMPLIANT","features":[579]},{"name":"SQL_OSCC_NOT_COMPLIANT","features":[579]},{"name":"SQL_OSC_CORE","features":[579]},{"name":"SQL_OSC_EXTENDED","features":[579]},{"name":"SQL_OSC_MINIMUM","features":[579]},{"name":"SQL_OUTER_JOINS","features":[579]},{"name":"SQL_OUTER_JOIN_CAPABILITIES","features":[579]},{"name":"SQL_OU_DML_STATEMENTS","features":[579]},{"name":"SQL_OU_INDEX_DEFINITION","features":[579]},{"name":"SQL_OU_PRIVILEGE_DEFINITION","features":[579]},{"name":"SQL_OU_PROCEDURE_INVOCATION","features":[579]},{"name":"SQL_OU_TABLE_DEFINITION","features":[579]},{"name":"SQL_OV_ODBC2","features":[579]},{"name":"SQL_OV_ODBC3","features":[579]},{"name":"SQL_OV_ODBC3_80","features":[579]},{"name":"SQL_OWNER_TERM","features":[579]},{"name":"SQL_OWNER_USAGE","features":[579]},{"name":"SQL_PACKET_SIZE","features":[579]},{"name":"SQL_PARAM_ARRAY_ROW_COUNTS","features":[579]},{"name":"SQL_PARAM_ARRAY_SELECTS","features":[579]},{"name":"SQL_PARAM_BIND_BY_COLUMN","features":[579]},{"name":"SQL_PARAM_BIND_TYPE_DEFAULT","features":[579]},{"name":"SQL_PARAM_DATA_AVAILABLE","features":[579]},{"name":"SQL_PARAM_DIAG_UNAVAILABLE","features":[579]},{"name":"SQL_PARAM_ERROR","features":[579]},{"name":"SQL_PARAM_IGNORE","features":[579]},{"name":"SQL_PARAM_INPUT","features":[579]},{"name":"SQL_PARAM_INPUT_OUTPUT","features":[579]},{"name":"SQL_PARAM_INPUT_OUTPUT_STREAM","features":[579]},{"name":"SQL_PARAM_OUTPUT","features":[579]},{"name":"SQL_PARAM_OUTPUT_STREAM","features":[579]},{"name":"SQL_PARAM_PROCEED","features":[579]},{"name":"SQL_PARAM_SUCCESS","features":[579]},{"name":"SQL_PARAM_SUCCESS_WITH_INFO","features":[579]},{"name":"SQL_PARAM_TYPE_UNKNOWN","features":[579]},{"name":"SQL_PARAM_UNUSED","features":[579]},{"name":"SQL_PARC_BATCH","features":[579]},{"name":"SQL_PARC_NO_BATCH","features":[579]},{"name":"SQL_PAS_BATCH","features":[579]},{"name":"SQL_PAS_NO_BATCH","features":[579]},{"name":"SQL_PAS_NO_SELECT","features":[579]},{"name":"SQL_PC_DEFAULT","features":[579]},{"name":"SQL_PC_NON_PSEUDO","features":[579]},{"name":"SQL_PC_NOT_PSEUDO","features":[579]},{"name":"SQL_PC_OFF","features":[579]},{"name":"SQL_PC_ON","features":[579]},{"name":"SQL_PC_PSEUDO","features":[579]},{"name":"SQL_PC_UNKNOWN","features":[579]},{"name":"SQL_PERF_START","features":[579]},{"name":"SQL_PERF_STOP","features":[579]},{"name":"SQL_POSITION","features":[579]},{"name":"SQL_POSITIONED_STATEMENTS","features":[579]},{"name":"SQL_POS_ADD","features":[579]},{"name":"SQL_POS_DELETE","features":[579]},{"name":"SQL_POS_OPERATIONS","features":[579]},{"name":"SQL_POS_POSITION","features":[579]},{"name":"SQL_POS_REFRESH","features":[579]},{"name":"SQL_POS_UPDATE","features":[579]},{"name":"SQL_PRED_BASIC","features":[579]},{"name":"SQL_PRED_CHAR","features":[579]},{"name":"SQL_PRED_NONE","features":[579]},{"name":"SQL_PRED_SEARCHABLE","features":[579]},{"name":"SQL_PRESERVE_CURSORS","features":[579]},{"name":"SQL_PROCEDURES","features":[579]},{"name":"SQL_PROCEDURE_TERM","features":[579]},{"name":"SQL_PS_POSITIONED_DELETE","features":[579]},{"name":"SQL_PS_POSITIONED_UPDATE","features":[579]},{"name":"SQL_PS_SELECT_FOR_UPDATE","features":[579]},{"name":"SQL_PT_FUNCTION","features":[579]},{"name":"SQL_PT_PROCEDURE","features":[579]},{"name":"SQL_PT_UNKNOWN","features":[579]},{"name":"SQL_QI_DEFAULT","features":[579]},{"name":"SQL_QI_OFF","features":[579]},{"name":"SQL_QI_ON","features":[579]},{"name":"SQL_QL_END","features":[579]},{"name":"SQL_QL_START","features":[579]},{"name":"SQL_QUALIFIER_LOCATION","features":[579]},{"name":"SQL_QUALIFIER_NAME_SEPARATOR","features":[579]},{"name":"SQL_QUALIFIER_TERM","features":[579]},{"name":"SQL_QUALIFIER_USAGE","features":[579]},{"name":"SQL_QUERY_TIMEOUT","features":[579]},{"name":"SQL_QUERY_TIMEOUT_DEFAULT","features":[579]},{"name":"SQL_QUICK","features":[579]},{"name":"SQL_QUIET_MODE","features":[579]},{"name":"SQL_QUOTED_IDENTIFIER_CASE","features":[579]},{"name":"SQL_QU_DML_STATEMENTS","features":[579]},{"name":"SQL_QU_INDEX_DEFINITION","features":[579]},{"name":"SQL_QU_PRIVILEGE_DEFINITION","features":[579]},{"name":"SQL_QU_PROCEDURE_INVOCATION","features":[579]},{"name":"SQL_QU_TABLE_DEFINITION","features":[579]},{"name":"SQL_RD_DEFAULT","features":[579]},{"name":"SQL_RD_OFF","features":[579]},{"name":"SQL_RD_ON","features":[579]},{"name":"SQL_REAL","features":[579]},{"name":"SQL_REFRESH","features":[579]},{"name":"SQL_REMOTE_PWD","features":[579]},{"name":"SQL_RESET_CONNECTION_YES","features":[579]},{"name":"SQL_RESET_PARAMS","features":[579]},{"name":"SQL_RESET_YES","features":[579]},{"name":"SQL_RESTRICT","features":[579]},{"name":"SQL_RESULT_COL","features":[579]},{"name":"SQL_RETRIEVE_DATA","features":[579]},{"name":"SQL_RETURN_VALUE","features":[579]},{"name":"SQL_RE_DEFAULT","features":[579]},{"name":"SQL_RE_OFF","features":[579]},{"name":"SQL_RE_ON","features":[579]},{"name":"SQL_ROLLBACK","features":[579]},{"name":"SQL_ROWSET_SIZE","features":[579]},{"name":"SQL_ROWSET_SIZE_DEFAULT","features":[579]},{"name":"SQL_ROWVER","features":[579]},{"name":"SQL_ROW_ADDED","features":[579]},{"name":"SQL_ROW_DELETED","features":[579]},{"name":"SQL_ROW_ERROR","features":[579]},{"name":"SQL_ROW_IDENTIFIER","features":[579]},{"name":"SQL_ROW_IGNORE","features":[579]},{"name":"SQL_ROW_NOROW","features":[579]},{"name":"SQL_ROW_NUMBER","features":[579]},{"name":"SQL_ROW_NUMBER_UNKNOWN","features":[579]},{"name":"SQL_ROW_PROCEED","features":[579]},{"name":"SQL_ROW_SUCCESS","features":[579]},{"name":"SQL_ROW_SUCCESS_WITH_INFO","features":[579]},{"name":"SQL_ROW_UPDATED","features":[579]},{"name":"SQL_ROW_UPDATES","features":[579]},{"name":"SQL_SCCO_LOCK","features":[579]},{"name":"SQL_SCCO_OPT_ROWVER","features":[579]},{"name":"SQL_SCCO_OPT_TIMESTAMP","features":[579]},{"name":"SQL_SCCO_OPT_VALUES","features":[579]},{"name":"SQL_SCCO_READ_ONLY","features":[579]},{"name":"SQL_SCC_ISO92_CLI","features":[579]},{"name":"SQL_SCC_XOPEN_CLI_VERSION1","features":[579]},{"name":"SQL_SCHEMA_TERM","features":[579]},{"name":"SQL_SCHEMA_USAGE","features":[579]},{"name":"SQL_SCOPE_CURROW","features":[579]},{"name":"SQL_SCOPE_SESSION","features":[579]},{"name":"SQL_SCOPE_TRANSACTION","features":[579]},{"name":"SQL_SCROLLABLE","features":[579]},{"name":"SQL_SCROLL_CONCURRENCY","features":[579]},{"name":"SQL_SCROLL_DYNAMIC","features":[579]},{"name":"SQL_SCROLL_FORWARD_ONLY","features":[579]},{"name":"SQL_SCROLL_KEYSET_DRIVEN","features":[579]},{"name":"SQL_SCROLL_OPTIONS","features":[579]},{"name":"SQL_SCROLL_STATIC","features":[579]},{"name":"SQL_SC_FIPS127_2_TRANSITIONAL","features":[579]},{"name":"SQL_SC_NON_UNIQUE","features":[579]},{"name":"SQL_SC_SQL92_ENTRY","features":[579]},{"name":"SQL_SC_SQL92_FULL","features":[579]},{"name":"SQL_SC_SQL92_INTERMEDIATE","features":[579]},{"name":"SQL_SC_TRY_UNIQUE","features":[579]},{"name":"SQL_SC_UNIQUE","features":[579]},{"name":"SQL_SDF_CURRENT_DATE","features":[579]},{"name":"SQL_SDF_CURRENT_TIME","features":[579]},{"name":"SQL_SDF_CURRENT_TIMESTAMP","features":[579]},{"name":"SQL_SEARCHABLE","features":[579]},{"name":"SQL_SEARCH_PATTERN_ESCAPE","features":[579]},{"name":"SQL_SECOND","features":[579]},{"name":"SQL_SENSITIVE","features":[579]},{"name":"SQL_SERVER_NAME","features":[579]},{"name":"SQL_SETPARAM_VALUE_MAX","features":[579]},{"name":"SQL_SETPOS_MAX_LOCK_VALUE","features":[579]},{"name":"SQL_SETPOS_MAX_OPTION_VALUE","features":[579]},{"name":"SQL_SET_DEFAULT","features":[579]},{"name":"SQL_SET_NULL","features":[579]},{"name":"SQL_SFKD_CASCADE","features":[579]},{"name":"SQL_SFKD_NO_ACTION","features":[579]},{"name":"SQL_SFKD_SET_DEFAULT","features":[579]},{"name":"SQL_SFKD_SET_NULL","features":[579]},{"name":"SQL_SFKU_CASCADE","features":[579]},{"name":"SQL_SFKU_NO_ACTION","features":[579]},{"name":"SQL_SFKU_SET_DEFAULT","features":[579]},{"name":"SQL_SFKU_SET_NULL","features":[579]},{"name":"SQL_SG_DELETE_TABLE","features":[579]},{"name":"SQL_SG_INSERT_COLUMN","features":[579]},{"name":"SQL_SG_INSERT_TABLE","features":[579]},{"name":"SQL_SG_REFERENCES_COLUMN","features":[579]},{"name":"SQL_SG_REFERENCES_TABLE","features":[579]},{"name":"SQL_SG_SELECT_TABLE","features":[579]},{"name":"SQL_SG_UPDATE_COLUMN","features":[579]},{"name":"SQL_SG_UPDATE_TABLE","features":[579]},{"name":"SQL_SG_USAGE_ON_CHARACTER_SET","features":[579]},{"name":"SQL_SG_USAGE_ON_COLLATION","features":[579]},{"name":"SQL_SG_USAGE_ON_DOMAIN","features":[579]},{"name":"SQL_SG_USAGE_ON_TRANSLATION","features":[579]},{"name":"SQL_SG_WITH_GRANT_OPTION","features":[579]},{"name":"SQL_SIGNED_OFFSET","features":[579]},{"name":"SQL_SIMULATE_CURSOR","features":[579]},{"name":"SQL_SMALLINT","features":[579]},{"name":"SQL_SNVF_BIT_LENGTH","features":[579]},{"name":"SQL_SNVF_CHARACTER_LENGTH","features":[579]},{"name":"SQL_SNVF_CHAR_LENGTH","features":[579]},{"name":"SQL_SNVF_EXTRACT","features":[579]},{"name":"SQL_SNVF_OCTET_LENGTH","features":[579]},{"name":"SQL_SNVF_POSITION","features":[579]},{"name":"SQL_SOPT_SS_BASE","features":[579]},{"name":"SQL_SOPT_SS_CURRENT_COMMAND","features":[579]},{"name":"SQL_SOPT_SS_CURSOR_OPTIONS","features":[579]},{"name":"SQL_SOPT_SS_DEFER_PREPARE","features":[579]},{"name":"SQL_SOPT_SS_HIDDEN_COLUMNS","features":[579]},{"name":"SQL_SOPT_SS_MAX_USED","features":[579]},{"name":"SQL_SOPT_SS_NOBROWSETABLE","features":[579]},{"name":"SQL_SOPT_SS_NOCOUNT_STATUS","features":[579]},{"name":"SQL_SOPT_SS_REGIONALIZE","features":[579]},{"name":"SQL_SOPT_SS_TEXTPTR_LOGGING","features":[579]},{"name":"SQL_SO_DYNAMIC","features":[579]},{"name":"SQL_SO_FORWARD_ONLY","features":[579]},{"name":"SQL_SO_KEYSET_DRIVEN","features":[579]},{"name":"SQL_SO_MIXED","features":[579]},{"name":"SQL_SO_STATIC","features":[579]},{"name":"SQL_SPECIAL_CHARACTERS","features":[579]},{"name":"SQL_SPEC_MAJOR","features":[579]},{"name":"SQL_SPEC_MINOR","features":[579]},{"name":"SQL_SPEC_STRING","features":[579]},{"name":"SQL_SP_BETWEEN","features":[579]},{"name":"SQL_SP_COMPARISON","features":[579]},{"name":"SQL_SP_EXISTS","features":[579]},{"name":"SQL_SP_IN","features":[579]},{"name":"SQL_SP_ISNOTNULL","features":[579]},{"name":"SQL_SP_ISNULL","features":[579]},{"name":"SQL_SP_LIKE","features":[579]},{"name":"SQL_SP_MATCH_FULL","features":[579]},{"name":"SQL_SP_MATCH_PARTIAL","features":[579]},{"name":"SQL_SP_MATCH_UNIQUE_FULL","features":[579]},{"name":"SQL_SP_MATCH_UNIQUE_PARTIAL","features":[579]},{"name":"SQL_SP_OVERLAPS","features":[579]},{"name":"SQL_SP_QUANTIFIED_COMPARISON","features":[579]},{"name":"SQL_SP_UNIQUE","features":[579]},{"name":"SQL_SQL92_DATETIME_FUNCTIONS","features":[579]},{"name":"SQL_SQL92_FOREIGN_KEY_DELETE_RULE","features":[579]},{"name":"SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","features":[579]},{"name":"SQL_SQL92_GRANT","features":[579]},{"name":"SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","features":[579]},{"name":"SQL_SQL92_PREDICATES","features":[579]},{"name":"SQL_SQL92_RELATIONAL_JOIN_OPERATORS","features":[579]},{"name":"SQL_SQL92_REVOKE","features":[579]},{"name":"SQL_SQL92_ROW_VALUE_CONSTRUCTOR","features":[579]},{"name":"SQL_SQL92_STRING_FUNCTIONS","features":[579]},{"name":"SQL_SQL92_VALUE_EXPRESSIONS","features":[579]},{"name":"SQL_SQLSTATE_SIZE","features":[579]},{"name":"SQL_SQLSTATE_SIZEW","features":[579]},{"name":"SQL_SQL_CONFORMANCE","features":[579]},{"name":"SQL_SQ_COMPARISON","features":[579]},{"name":"SQL_SQ_CORRELATED_SUBQUERIES","features":[579]},{"name":"SQL_SQ_EXISTS","features":[579]},{"name":"SQL_SQ_IN","features":[579]},{"name":"SQL_SQ_QUANTIFIED","features":[579]},{"name":"SQL_SRJO_CORRESPONDING_CLAUSE","features":[579]},{"name":"SQL_SRJO_CROSS_JOIN","features":[579]},{"name":"SQL_SRJO_EXCEPT_JOIN","features":[579]},{"name":"SQL_SRJO_FULL_OUTER_JOIN","features":[579]},{"name":"SQL_SRJO_INNER_JOIN","features":[579]},{"name":"SQL_SRJO_INTERSECT_JOIN","features":[579]},{"name":"SQL_SRJO_LEFT_OUTER_JOIN","features":[579]},{"name":"SQL_SRJO_NATURAL_JOIN","features":[579]},{"name":"SQL_SRJO_RIGHT_OUTER_JOIN","features":[579]},{"name":"SQL_SRJO_UNION_JOIN","features":[579]},{"name":"SQL_SRVC_DEFAULT","features":[579]},{"name":"SQL_SRVC_NULL","features":[579]},{"name":"SQL_SRVC_ROW_SUBQUERY","features":[579]},{"name":"SQL_SRVC_VALUE_EXPRESSION","features":[579]},{"name":"SQL_SR_CASCADE","features":[579]},{"name":"SQL_SR_DELETE_TABLE","features":[579]},{"name":"SQL_SR_GRANT_OPTION_FOR","features":[579]},{"name":"SQL_SR_INSERT_COLUMN","features":[579]},{"name":"SQL_SR_INSERT_TABLE","features":[579]},{"name":"SQL_SR_REFERENCES_COLUMN","features":[579]},{"name":"SQL_SR_REFERENCES_TABLE","features":[579]},{"name":"SQL_SR_RESTRICT","features":[579]},{"name":"SQL_SR_SELECT_TABLE","features":[579]},{"name":"SQL_SR_UPDATE_COLUMN","features":[579]},{"name":"SQL_SR_UPDATE_TABLE","features":[579]},{"name":"SQL_SR_USAGE_ON_CHARACTER_SET","features":[579]},{"name":"SQL_SR_USAGE_ON_COLLATION","features":[579]},{"name":"SQL_SR_USAGE_ON_DOMAIN","features":[579]},{"name":"SQL_SR_USAGE_ON_TRANSLATION","features":[579]},{"name":"SQL_SSF_CONVERT","features":[579]},{"name":"SQL_SSF_LOWER","features":[579]},{"name":"SQL_SSF_SUBSTRING","features":[579]},{"name":"SQL_SSF_TRANSLATE","features":[579]},{"name":"SQL_SSF_TRIM_BOTH","features":[579]},{"name":"SQL_SSF_TRIM_LEADING","features":[579]},{"name":"SQL_SSF_TRIM_TRAILING","features":[579]},{"name":"SQL_SSF_UPPER","features":[579]},{"name":"SQL_SS_ADDITIONS","features":[579]},{"name":"SQL_SS_DELETIONS","features":[579]},{"name":"SQL_SS_DL_DEFAULT","features":[579]},{"name":"SQL_SS_QI_DEFAULT","features":[579]},{"name":"SQL_SS_QL_DEFAULT","features":[579]},{"name":"SQL_SS_UPDATES","features":[579]},{"name":"SQL_SS_VARIANT","features":[579]},{"name":"SQL_STANDARD_CLI_CONFORMANCE","features":[579]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES1","features":[579]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES2","features":[579]},{"name":"SQL_STATIC_SENSITIVITY","features":[579]},{"name":"SQL_STILL_EXECUTING","features":[579]},{"name":"SQL_STMT_OPT_MAX","features":[579]},{"name":"SQL_STMT_OPT_MIN","features":[579]},{"name":"SQL_STRING_FUNCTIONS","features":[579]},{"name":"SQL_SUBQUERIES","features":[579]},{"name":"SQL_SUCCESS","features":[579]},{"name":"SQL_SUCCESS_WITH_INFO","features":[579]},{"name":"SQL_SU_DML_STATEMENTS","features":[579]},{"name":"SQL_SU_INDEX_DEFINITION","features":[579]},{"name":"SQL_SU_PRIVILEGE_DEFINITION","features":[579]},{"name":"SQL_SU_PROCEDURE_INVOCATION","features":[579]},{"name":"SQL_SU_TABLE_DEFINITION","features":[579]},{"name":"SQL_SVE_CASE","features":[579]},{"name":"SQL_SVE_CAST","features":[579]},{"name":"SQL_SVE_COALESCE","features":[579]},{"name":"SQL_SVE_NULLIF","features":[579]},{"name":"SQL_SYSTEM_FUNCTIONS","features":[579]},{"name":"SQL_TABLE_STAT","features":[579]},{"name":"SQL_TABLE_TERM","features":[579]},{"name":"SQL_TC_ALL","features":[579]},{"name":"SQL_TC_DDL_COMMIT","features":[579]},{"name":"SQL_TC_DDL_IGNORE","features":[579]},{"name":"SQL_TC_DML","features":[579]},{"name":"SQL_TC_NONE","features":[579]},{"name":"SQL_TEXTPTR_LOGGING","features":[579]},{"name":"SQL_TIME","features":[579]},{"name":"SQL_TIMEDATE_ADD_INTERVALS","features":[579]},{"name":"SQL_TIMEDATE_DIFF_INTERVALS","features":[579]},{"name":"SQL_TIMEDATE_FUNCTIONS","features":[579]},{"name":"SQL_TIMESTAMP","features":[579]},{"name":"SQL_TIMESTAMP_LEN","features":[579]},{"name":"SQL_TIME_LEN","features":[579]},{"name":"SQL_TINYINT","features":[579]},{"name":"SQL_TL_DEFAULT","features":[579]},{"name":"SQL_TL_OFF","features":[579]},{"name":"SQL_TL_ON","features":[579]},{"name":"SQL_TRANSACTION_CAPABLE","features":[579]},{"name":"SQL_TRANSACTION_ISOLATION_OPTION","features":[579]},{"name":"SQL_TRANSACTION_READ_COMMITTED","features":[579]},{"name":"SQL_TRANSACTION_READ_UNCOMMITTED","features":[579]},{"name":"SQL_TRANSACTION_REPEATABLE_READ","features":[579]},{"name":"SQL_TRANSACTION_SERIALIZABLE","features":[579]},{"name":"SQL_TRANSLATE_DLL","features":[579]},{"name":"SQL_TRANSLATE_OPTION","features":[579]},{"name":"SQL_TRUE","features":[579]},{"name":"SQL_TXN_CAPABLE","features":[579]},{"name":"SQL_TXN_ISOLATION","features":[579]},{"name":"SQL_TXN_ISOLATION_OPTION","features":[579]},{"name":"SQL_TXN_READ_COMMITTED","features":[579]},{"name":"SQL_TXN_READ_UNCOMMITTED","features":[579]},{"name":"SQL_TXN_REPEATABLE_READ","features":[579]},{"name":"SQL_TXN_SERIALIZABLE","features":[579]},{"name":"SQL_TXN_VERSIONING","features":[579]},{"name":"SQL_TYPE_DATE","features":[579]},{"name":"SQL_TYPE_DRIVER_END","features":[579]},{"name":"SQL_TYPE_DRIVER_START","features":[579]},{"name":"SQL_TYPE_MAX","features":[579]},{"name":"SQL_TYPE_MIN","features":[579]},{"name":"SQL_TYPE_NULL","features":[579]},{"name":"SQL_TYPE_TIME","features":[579]},{"name":"SQL_TYPE_TIMESTAMP","features":[579]},{"name":"SQL_UB_DEFAULT","features":[579]},{"name":"SQL_UB_FIXED","features":[579]},{"name":"SQL_UB_OFF","features":[579]},{"name":"SQL_UB_ON","features":[579]},{"name":"SQL_UB_VARIABLE","features":[579]},{"name":"SQL_UNBIND","features":[579]},{"name":"SQL_UNICODE","features":[579]},{"name":"SQL_UNICODE_CHAR","features":[579]},{"name":"SQL_UNICODE_LONGVARCHAR","features":[579]},{"name":"SQL_UNICODE_VARCHAR","features":[579]},{"name":"SQL_UNION","features":[579]},{"name":"SQL_UNION_STATEMENT","features":[579]},{"name":"SQL_UNKNOWN_TYPE","features":[579]},{"name":"SQL_UNNAMED","features":[579]},{"name":"SQL_UNSEARCHABLE","features":[579]},{"name":"SQL_UNSIGNED_OFFSET","features":[579]},{"name":"SQL_UNSPECIFIED","features":[579]},{"name":"SQL_UPDATE","features":[579]},{"name":"SQL_UPDATE_BY_BOOKMARK","features":[579]},{"name":"SQL_UP_DEFAULT","features":[579]},{"name":"SQL_UP_OFF","features":[579]},{"name":"SQL_UP_ON","features":[579]},{"name":"SQL_UP_ON_DROP","features":[579]},{"name":"SQL_USER_NAME","features":[579]},{"name":"SQL_USE_BOOKMARKS","features":[579]},{"name":"SQL_USE_PROCEDURE_FOR_PREPARE","features":[579]},{"name":"SQL_US_UNION","features":[579]},{"name":"SQL_US_UNION_ALL","features":[579]},{"name":"SQL_U_UNION","features":[579]},{"name":"SQL_U_UNION_ALL","features":[579]},{"name":"SQL_VARBINARY","features":[579]},{"name":"SQL_VARCHAR","features":[579]},{"name":"SQL_VARLEN_DATA","features":[579]},{"name":"SQL_WARN_NO","features":[579]},{"name":"SQL_WARN_YES","features":[579]},{"name":"SQL_WCHAR","features":[579]},{"name":"SQL_WLONGVARCHAR","features":[579]},{"name":"SQL_WVARCHAR","features":[579]},{"name":"SQL_XL_DEFAULT","features":[579]},{"name":"SQL_XL_OFF","features":[579]},{"name":"SQL_XL_ON","features":[579]},{"name":"SQL_XOPEN_CLI_YEAR","features":[579]},{"name":"SQL_YEAR","features":[579]},{"name":"SQL_YEAR_MONTH_STRUCT","features":[579]},{"name":"SQL_YEAR_TO_MONTH","features":[579]},{"name":"SQLudtBINARY","features":[579]},{"name":"SQLudtBIT","features":[579]},{"name":"SQLudtBITN","features":[579]},{"name":"SQLudtCHAR","features":[579]},{"name":"SQLudtDATETIM4","features":[579]},{"name":"SQLudtDATETIME","features":[579]},{"name":"SQLudtDATETIMN","features":[579]},{"name":"SQLudtDECML","features":[579]},{"name":"SQLudtDECMLN","features":[579]},{"name":"SQLudtFLT4","features":[579]},{"name":"SQLudtFLT8","features":[579]},{"name":"SQLudtFLTN","features":[579]},{"name":"SQLudtIMAGE","features":[579]},{"name":"SQLudtINT1","features":[579]},{"name":"SQLudtINT2","features":[579]},{"name":"SQLudtINT4","features":[579]},{"name":"SQLudtINTN","features":[579]},{"name":"SQLudtMONEY","features":[579]},{"name":"SQLudtMONEY4","features":[579]},{"name":"SQLudtMONEYN","features":[579]},{"name":"SQLudtNUM","features":[579]},{"name":"SQLudtNUMN","features":[579]},{"name":"SQLudtSYSNAME","features":[579]},{"name":"SQLudtTEXT","features":[579]},{"name":"SQLudtTIMESTAMP","features":[579]},{"name":"SQLudtUNIQUEIDENTIFIER","features":[579]},{"name":"SQLudtVARBINARY","features":[579]},{"name":"SQLudtVARCHAR","features":[579]},{"name":"SQMO_DEFAULT_PROPERTY","features":[579]},{"name":"SQMO_GENERATOR_FOR_TYPE","features":[579]},{"name":"SQMO_MAP_PROPERTY","features":[579]},{"name":"SQMO_VIRTUAL_PROPERTY","features":[579]},{"name":"SQPE_EXTRA_CLOSING_PARENTHESIS","features":[579]},{"name":"SQPE_EXTRA_OPENING_PARENTHESIS","features":[579]},{"name":"SQPE_IGNORED_CONNECTOR","features":[579]},{"name":"SQPE_IGNORED_KEYWORD","features":[579]},{"name":"SQPE_IGNORED_MODIFIER","features":[579]},{"name":"SQPE_NONE","features":[579]},{"name":"SQPE_UNHANDLED","features":[579]},{"name":"SQRO_ADD_ROBUST_ITEM_NAME","features":[579]},{"name":"SQRO_ADD_VALUE_TYPE_FOR_PLAIN_VALUES","features":[579]},{"name":"SQRO_ALWAYS_ONE_INTERVAL","features":[579]},{"name":"SQRO_DEFAULT","features":[579]},{"name":"SQRO_DONT_MAP_RELATIONS","features":[579]},{"name":"SQRO_DONT_REMOVE_UNRESTRICTED_KEYWORDS","features":[579]},{"name":"SQRO_DONT_RESOLVE_DATETIME","features":[579]},{"name":"SQRO_DONT_RESOLVE_RANGES","features":[579]},{"name":"SQRO_DONT_SIMPLIFY_CONDITION_TREES","features":[579]},{"name":"SQRO_DONT_SPLIT_WORDS","features":[579]},{"name":"SQRO_IGNORE_PHRASE_ORDER","features":[579]},{"name":"SQSO_AUTOMATIC_WILDCARD","features":[579]},{"name":"SQSO_CONNECTOR_CASE","features":[579]},{"name":"SQSO_IMPLICIT_CONNECTOR","features":[579]},{"name":"SQSO_LANGUAGE_KEYWORDS","features":[579]},{"name":"SQSO_LOCALE_WORD_BREAKING","features":[579]},{"name":"SQSO_NATURAL_SYNTAX","features":[579]},{"name":"SQSO_SCHEMA","features":[579]},{"name":"SQSO_SYNTAX","features":[579]},{"name":"SQSO_TIME_ZONE","features":[579]},{"name":"SQSO_TRACE_LEVEL","features":[579]},{"name":"SQSO_WORD_BREAKER","features":[579]},{"name":"SQS_ADVANCED_QUERY_SYNTAX","features":[579]},{"name":"SQS_NATURAL_QUERY_SYNTAX","features":[579]},{"name":"SQS_NO_SYNTAX","features":[579]},{"name":"SRCH_SCHEMA_CACHE_E_UNEXPECTED","features":[579]},{"name":"SSERRORINFO","features":[579]},{"name":"SSPROPVAL_COMMANDTYPE_BULKLOAD","features":[579]},{"name":"SSPROPVAL_COMMANDTYPE_REGULAR","features":[579]},{"name":"SSPROPVAL_USEPROCFORPREP_OFF","features":[579]},{"name":"SSPROPVAL_USEPROCFORPREP_ON","features":[579]},{"name":"SSPROPVAL_USEPROCFORPREP_ON_DROP","features":[579]},{"name":"SSPROP_ALLOWNATIVEVARIANT","features":[579]},{"name":"SSPROP_AUTH_REPL_SERVER_NAME","features":[579]},{"name":"SSPROP_CHARACTERSET","features":[579]},{"name":"SSPROP_COLUMNLEVELCOLLATION","features":[579]},{"name":"SSPROP_COL_COLLATIONNAME","features":[579]},{"name":"SSPROP_CURRENTCOLLATION","features":[579]},{"name":"SSPROP_CURSORAUTOFETCH","features":[579]},{"name":"SSPROP_DEFERPREPARE","features":[579]},{"name":"SSPROP_ENABLEFASTLOAD","features":[579]},{"name":"SSPROP_FASTLOADKEEPIDENTITY","features":[579]},{"name":"SSPROP_FASTLOADKEEPNULLS","features":[579]},{"name":"SSPROP_FASTLOADOPTIONS","features":[579]},{"name":"SSPROP_INIT_APPNAME","features":[579]},{"name":"SSPROP_INIT_AUTOTRANSLATE","features":[579]},{"name":"SSPROP_INIT_CURRENTLANGUAGE","features":[579]},{"name":"SSPROP_INIT_ENCRYPT","features":[579]},{"name":"SSPROP_INIT_FILENAME","features":[579]},{"name":"SSPROP_INIT_NETWORKADDRESS","features":[579]},{"name":"SSPROP_INIT_NETWORKLIBRARY","features":[579]},{"name":"SSPROP_INIT_PACKETSIZE","features":[579]},{"name":"SSPROP_INIT_TAGCOLUMNCOLLATION","features":[579]},{"name":"SSPROP_INIT_USEPROCFORPREP","features":[579]},{"name":"SSPROP_INIT_WSID","features":[579]},{"name":"SSPROP_IRowsetFastLoad","features":[579]},{"name":"SSPROP_MAXBLOBLENGTH","features":[579]},{"name":"SSPROP_QUOTEDCATALOGNAMES","features":[579]},{"name":"SSPROP_SORTORDER","features":[579]},{"name":"SSPROP_SQLXMLXPROGID","features":[579]},{"name":"SSPROP_STREAM_BASEPATH","features":[579]},{"name":"SSPROP_STREAM_COMMANDTYPE","features":[579]},{"name":"SSPROP_STREAM_CONTENTTYPE","features":[579]},{"name":"SSPROP_STREAM_FLAGS","features":[579]},{"name":"SSPROP_STREAM_MAPPINGSCHEMA","features":[579]},{"name":"SSPROP_STREAM_XMLROOT","features":[579]},{"name":"SSPROP_STREAM_XSL","features":[579]},{"name":"SSPROP_UNICODECOMPARISONSTYLE","features":[579]},{"name":"SSPROP_UNICODELCID","features":[579]},{"name":"SSVARIANT","features":[303,354,579]},{"name":"STD_BOOKMARKLENGTH","features":[579]},{"name":"STGM_COLLECTION","features":[579]},{"name":"STGM_OPEN","features":[579]},{"name":"STGM_OUTPUT","features":[579]},{"name":"STGM_RECURSIVE","features":[579]},{"name":"STGM_STRICTOPEN","features":[579]},{"name":"STREAM_FLAGS_DISALLOW_ABSOLUTE_PATH","features":[579]},{"name":"STREAM_FLAGS_DISALLOW_QUERY","features":[579]},{"name":"STREAM_FLAGS_DISALLOW_UPDATEGRAMS","features":[579]},{"name":"STREAM_FLAGS_DISALLOW_URL","features":[579]},{"name":"STREAM_FLAGS_DONTCACHEMAPPINGSCHEMA","features":[579]},{"name":"STREAM_FLAGS_DONTCACHETEMPLATE","features":[579]},{"name":"STREAM_FLAGS_DONTCACHEXSL","features":[579]},{"name":"STREAM_FLAGS_RESERVED","features":[579]},{"name":"STRUCTURED_QUERY_MULTIOPTION","features":[579]},{"name":"STRUCTURED_QUERY_PARSE_ERROR","features":[579]},{"name":"STRUCTURED_QUERY_RESOLVE_OPTION","features":[579]},{"name":"STRUCTURED_QUERY_SINGLE_OPTION","features":[579]},{"name":"STRUCTURED_QUERY_SYNTAX","features":[579]},{"name":"STS_ABORTXMLPARSE","features":[579]},{"name":"STS_WS_ERROR","features":[579]},{"name":"SUBSCRIPTIONINFO","features":[303,579]},{"name":"SUBSCRIPTIONINFOFLAGS","features":[579]},{"name":"SUBSCRIPTIONITEMINFO","features":[579]},{"name":"SUBSCRIPTIONSCHEDULE","features":[579]},{"name":"SUBSCRIPTIONTYPE","features":[579]},{"name":"SUBSINFO_ALLFLAGS","features":[579]},{"name":"SUBSINFO_CHANGESONLY","features":[579]},{"name":"SUBSINFO_CHANNELFLAGS","features":[579]},{"name":"SUBSINFO_FRIENDLYNAME","features":[579]},{"name":"SUBSINFO_GLEAM","features":[579]},{"name":"SUBSINFO_MAILNOT","features":[579]},{"name":"SUBSINFO_MAXSIZEKB","features":[579]},{"name":"SUBSINFO_NEEDPASSWORD","features":[579]},{"name":"SUBSINFO_PASSWORD","features":[579]},{"name":"SUBSINFO_RECURSE","features":[579]},{"name":"SUBSINFO_SCHEDULE","features":[579]},{"name":"SUBSINFO_TASKFLAGS","features":[579]},{"name":"SUBSINFO_TYPE","features":[579]},{"name":"SUBSINFO_USER","features":[579]},{"name":"SUBSINFO_WEBCRAWL","features":[579]},{"name":"SUBSMGRENUM_MASK","features":[579]},{"name":"SUBSMGRENUM_TEMP","features":[579]},{"name":"SUBSMGRUPDATE_MASK","features":[579]},{"name":"SUBSMGRUPDATE_MINIMIZE","features":[579]},{"name":"SUBSSCHED_AUTO","features":[579]},{"name":"SUBSSCHED_CUSTOM","features":[579]},{"name":"SUBSSCHED_DAILY","features":[579]},{"name":"SUBSSCHED_MANUAL","features":[579]},{"name":"SUBSSCHED_WEEKLY","features":[579]},{"name":"SUBSTYPE_CHANNEL","features":[579]},{"name":"SUBSTYPE_DESKTOPCHANNEL","features":[579]},{"name":"SUBSTYPE_DESKTOPURL","features":[579]},{"name":"SUBSTYPE_EXTERNAL","features":[579]},{"name":"SUBSTYPE_URL","features":[579]},{"name":"SUCCEED","features":[579]},{"name":"SUCCEED_ABORT","features":[579]},{"name":"SUCCEED_ASYNC","features":[579]},{"name":"SubscriptionMgr","features":[579]},{"name":"TEXT_SOURCE","features":[579]},{"name":"TIMEOUT_INFO","features":[579]},{"name":"TIMESTAMP_STRUCT","features":[579]},{"name":"TIME_STRUCT","features":[579]},{"name":"TRACE_ON","features":[579]},{"name":"TRACE_VERSION","features":[579]},{"name":"TRACE_VS_EVENT_ON","features":[579]},{"name":"VECTORRESTRICTION","features":[507,427,579]},{"name":"VT_SS_BINARY","features":[579]},{"name":"VT_SS_BIT","features":[579]},{"name":"VT_SS_DATETIME","features":[579]},{"name":"VT_SS_DECIMAL","features":[579]},{"name":"VT_SS_EMPTY","features":[579]},{"name":"VT_SS_GUID","features":[579]},{"name":"VT_SS_I2","features":[579]},{"name":"VT_SS_I4","features":[579]},{"name":"VT_SS_I8","features":[579]},{"name":"VT_SS_MONEY","features":[579]},{"name":"VT_SS_NULL","features":[579]},{"name":"VT_SS_NUMERIC","features":[579]},{"name":"VT_SS_R4","features":[579]},{"name":"VT_SS_R8","features":[579]},{"name":"VT_SS_SMALLDATETIME","features":[579]},{"name":"VT_SS_SMALLMONEY","features":[579]},{"name":"VT_SS_STRING","features":[579]},{"name":"VT_SS_UI1","features":[579]},{"name":"VT_SS_UNKNOWN","features":[579]},{"name":"VT_SS_VARBINARY","features":[579]},{"name":"VT_SS_VARSTRING","features":[579]},{"name":"VT_SS_WSTRING","features":[579]},{"name":"VT_SS_WVARSTRING","features":[579]},{"name":"WEBCRAWL_DONT_MAKE_STICKY","features":[579]},{"name":"WEBCRAWL_GET_BGSOUNDS","features":[579]},{"name":"WEBCRAWL_GET_CONTROLS","features":[579]},{"name":"WEBCRAWL_GET_IMAGES","features":[579]},{"name":"WEBCRAWL_GET_VIDEOS","features":[579]},{"name":"WEBCRAWL_IGNORE_ROBOTSTXT","features":[579]},{"name":"WEBCRAWL_LINKS_ELSEWHERE","features":[579]},{"name":"WEBCRAWL_ONLY_LINKS_TO_HTML","features":[579]},{"name":"WEBCRAWL_RECURSEFLAGS","features":[579]},{"name":"XML_E_BADSXQL","features":[579]},{"name":"XML_E_NODEFAULTNS","features":[579]},{"name":"_MAPI_E_ACCOUNT_DISABLED","features":[579]},{"name":"_MAPI_E_BAD_CHARWIDTH","features":[579]},{"name":"_MAPI_E_BAD_COLUMN","features":[579]},{"name":"_MAPI_E_BUSY","features":[579]},{"name":"_MAPI_E_COMPUTED","features":[579]},{"name":"_MAPI_E_CORRUPT_DATA","features":[579]},{"name":"_MAPI_E_DISK_ERROR","features":[579]},{"name":"_MAPI_E_END_OF_SESSION","features":[579]},{"name":"_MAPI_E_EXTENDED_ERROR","features":[579]},{"name":"_MAPI_E_FAILONEPROVIDER","features":[579]},{"name":"_MAPI_E_INVALID_ACCESS_TIME","features":[579]},{"name":"_MAPI_E_INVALID_ENTRYID","features":[579]},{"name":"_MAPI_E_INVALID_OBJECT","features":[579]},{"name":"_MAPI_E_INVALID_WORKSTATION_ACCOUNT","features":[579]},{"name":"_MAPI_E_LOGON_FAILED","features":[579]},{"name":"_MAPI_E_MISSING_REQUIRED_COLUMN","features":[579]},{"name":"_MAPI_E_NETWORK_ERROR","features":[579]},{"name":"_MAPI_E_NOT_ENOUGH_DISK","features":[579]},{"name":"_MAPI_E_NOT_ENOUGH_RESOURCES","features":[579]},{"name":"_MAPI_E_NOT_FOUND","features":[579]},{"name":"_MAPI_E_NO_SUPPORT","features":[579]},{"name":"_MAPI_E_OBJECT_CHANGED","features":[579]},{"name":"_MAPI_E_OBJECT_DELETED","features":[579]},{"name":"_MAPI_E_PASSWORD_CHANGE_REQUIRED","features":[579]},{"name":"_MAPI_E_PASSWORD_EXPIRED","features":[579]},{"name":"_MAPI_E_SESSION_LIMIT","features":[579]},{"name":"_MAPI_E_STRING_TOO_LONG","features":[579]},{"name":"_MAPI_E_TOO_COMPLEX","features":[579]},{"name":"_MAPI_E_UNABLE_TO_ABORT","features":[579]},{"name":"_MAPI_E_UNCONFIGURED","features":[579]},{"name":"_MAPI_E_UNKNOWN_CPID","features":[579]},{"name":"_MAPI_E_UNKNOWN_ENTRYID","features":[579]},{"name":"_MAPI_E_UNKNOWN_FLAGS","features":[579]},{"name":"_MAPI_E_UNKNOWN_LCID","features":[579]},{"name":"_MAPI_E_USER_CANCEL","features":[579]},{"name":"_MAPI_E_VERSION","features":[579]},{"name":"_MAPI_W_NO_SERVICE","features":[579]},{"name":"bcp_batch","features":[579]},{"name":"bcp_bind","features":[579]},{"name":"bcp_colfmt","features":[579]},{"name":"bcp_collen","features":[579]},{"name":"bcp_colptr","features":[579]},{"name":"bcp_columns","features":[579]},{"name":"bcp_control","features":[579]},{"name":"bcp_done","features":[579]},{"name":"bcp_exec","features":[579]},{"name":"bcp_getcolfmt","features":[579]},{"name":"bcp_initA","features":[579]},{"name":"bcp_initW","features":[579]},{"name":"bcp_moretext","features":[579]},{"name":"bcp_readfmtA","features":[579]},{"name":"bcp_readfmtW","features":[579]},{"name":"bcp_sendrow","features":[579]},{"name":"bcp_setcolfmt","features":[579]},{"name":"bcp_writefmtA","features":[579]},{"name":"bcp_writefmtW","features":[579]},{"name":"dbprtypeA","features":[579]},{"name":"dbprtypeW","features":[579]},{"name":"eAUTH_TYPE_ANONYMOUS","features":[579]},{"name":"eAUTH_TYPE_BASIC","features":[579]},{"name":"eAUTH_TYPE_NTLM","features":[579]}],"603":[{"name":"CONDITION_OPERATION","features":[580]},{"name":"CONDITION_TYPE","features":[580]},{"name":"COP_APPLICATION_SPECIFIC","features":[580]},{"name":"COP_DOSWILDCARDS","features":[580]},{"name":"COP_EQUAL","features":[580]},{"name":"COP_GREATERTHAN","features":[580]},{"name":"COP_GREATERTHANOREQUAL","features":[580]},{"name":"COP_IMPLICIT","features":[580]},{"name":"COP_LESSTHAN","features":[580]},{"name":"COP_LESSTHANOREQUAL","features":[580]},{"name":"COP_NOTEQUAL","features":[580]},{"name":"COP_VALUE_CONTAINS","features":[580]},{"name":"COP_VALUE_ENDSWITH","features":[580]},{"name":"COP_VALUE_NOTCONTAINS","features":[580]},{"name":"COP_VALUE_STARTSWITH","features":[580]},{"name":"COP_WORD_EQUAL","features":[580]},{"name":"COP_WORD_STARTSWITH","features":[580]},{"name":"CT_AND_CONDITION","features":[580]},{"name":"CT_LEAF_CONDITION","features":[580]},{"name":"CT_NOT_CONDITION","features":[580]},{"name":"CT_OR_CONDITION","features":[580]}],"604":[{"name":"IWSCDefaultProduct","features":[354,581]},{"name":"IWSCProductList","features":[354,581]},{"name":"IWscProduct","features":[354,581]},{"name":"IWscProduct2","features":[354,581]},{"name":"IWscProduct3","features":[354,581]},{"name":"SECURITY_PRODUCT_TYPE","features":[581]},{"name":"SECURITY_PRODUCT_TYPE_ANTISPYWARE","features":[581]},{"name":"SECURITY_PRODUCT_TYPE_ANTIVIRUS","features":[581]},{"name":"SECURITY_PRODUCT_TYPE_FIREWALL","features":[581]},{"name":"WSCDefaultProduct","features":[581]},{"name":"WSCProductList","features":[581]},{"name":"WSC_SECURITY_PRODUCT_OUT_OF_DATE","features":[581]},{"name":"WSC_SECURITY_PRODUCT_STATE","features":[581]},{"name":"WSC_SECURITY_PRODUCT_STATE_EXPIRED","features":[581]},{"name":"WSC_SECURITY_PRODUCT_STATE_OFF","features":[581]},{"name":"WSC_SECURITY_PRODUCT_STATE_ON","features":[581]},{"name":"WSC_SECURITY_PRODUCT_STATE_SNOOZED","features":[581]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS","features":[581]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_NEEDED","features":[581]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_RECOMMENDED","features":[581]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NOT_SET","features":[581]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NO_ACTION","features":[581]},{"name":"WSC_SECURITY_PRODUCT_UP_TO_DATE","features":[581]},{"name":"WSC_SECURITY_PROVIDER","features":[581]},{"name":"WSC_SECURITY_PROVIDER_ALL","features":[581]},{"name":"WSC_SECURITY_PROVIDER_ANTISPYWARE","features":[581]},{"name":"WSC_SECURITY_PROVIDER_ANTIVIRUS","features":[581]},{"name":"WSC_SECURITY_PROVIDER_AUTOUPDATE_SETTINGS","features":[581]},{"name":"WSC_SECURITY_PROVIDER_FIREWALL","features":[581]},{"name":"WSC_SECURITY_PROVIDER_HEALTH","features":[581]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_GOOD","features":[581]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_NOTMONITORED","features":[581]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_POOR","features":[581]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_SNOOZE","features":[581]},{"name":"WSC_SECURITY_PROVIDER_INTERNET_SETTINGS","features":[581]},{"name":"WSC_SECURITY_PROVIDER_NONE","features":[581]},{"name":"WSC_SECURITY_PROVIDER_SERVICE","features":[581]},{"name":"WSC_SECURITY_PROVIDER_USER_ACCOUNT_CONTROL","features":[581]},{"name":"WSC_SECURITY_SIGNATURE_STATUS","features":[581]},{"name":"WscGetAntiMalwareUri","features":[581]},{"name":"WscGetSecurityProviderHealth","features":[581]},{"name":"WscQueryAntiMalwareUri","features":[581]},{"name":"WscRegisterForChanges","features":[303,581,338]},{"name":"WscRegisterForUserNotifications","features":[581]},{"name":"WscUnRegisterChanges","features":[303,581]}],"605":[{"name":"IWsbApplicationAsync","features":[582]},{"name":"IWsbApplicationBackupSupport","features":[582]},{"name":"IWsbApplicationRestoreSupport","features":[582]},{"name":"WSBAPP_ASYNC_IN_PROGRESS","features":[582]},{"name":"WSB_MAX_OB_STATUS_ENTRY","features":[582]},{"name":"WSB_MAX_OB_STATUS_VALUE_TYPE_PAIR","features":[582]},{"name":"WSB_OB_ET_DATETIME","features":[582]},{"name":"WSB_OB_ET_MAX","features":[582]},{"name":"WSB_OB_ET_NUMBER","features":[582]},{"name":"WSB_OB_ET_SIZE","features":[582]},{"name":"WSB_OB_ET_STRING","features":[582]},{"name":"WSB_OB_ET_TIME","features":[582]},{"name":"WSB_OB_ET_UNDEFINED","features":[582]},{"name":"WSB_OB_REGISTRATION_INFO","features":[303,582]},{"name":"WSB_OB_STATUS_ENTRY","features":[582]},{"name":"WSB_OB_STATUS_ENTRY_PAIR_TYPE","features":[582]},{"name":"WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR","features":[582]},{"name":"WSB_OB_STATUS_INFO","features":[582]}],"606":[{"name":"CUSTOM_SYSTEM_STATE_CHANGE_EVENT_GUID","features":[583]},{"name":"ChangeServiceConfig2A","features":[303,306,583]},{"name":"ChangeServiceConfig2W","features":[303,306,583]},{"name":"ChangeServiceConfigA","features":[303,306,583]},{"name":"ChangeServiceConfigW","features":[303,306,583]},{"name":"CloseServiceHandle","features":[303,306,583]},{"name":"ControlService","features":[303,306,583]},{"name":"ControlServiceExA","features":[303,306,583]},{"name":"ControlServiceExW","features":[303,306,583]},{"name":"CreateServiceA","features":[306,583]},{"name":"CreateServiceW","features":[306,583]},{"name":"DOMAIN_JOIN_GUID","features":[583]},{"name":"DOMAIN_LEAVE_GUID","features":[583]},{"name":"DeleteService","features":[303,306,583]},{"name":"ENUM_SERVICE_STATE","features":[583]},{"name":"ENUM_SERVICE_STATUSA","features":[583]},{"name":"ENUM_SERVICE_STATUSW","features":[583]},{"name":"ENUM_SERVICE_STATUS_PROCESSA","features":[583]},{"name":"ENUM_SERVICE_STATUS_PROCESSW","features":[583]},{"name":"ENUM_SERVICE_TYPE","features":[583]},{"name":"EnumDependentServicesA","features":[303,306,583]},{"name":"EnumDependentServicesW","features":[303,306,583]},{"name":"EnumServicesStatusA","features":[303,306,583]},{"name":"EnumServicesStatusExA","features":[303,306,583]},{"name":"EnumServicesStatusExW","features":[303,306,583]},{"name":"EnumServicesStatusW","features":[303,306,583]},{"name":"FIREWALL_PORT_CLOSE_GUID","features":[583]},{"name":"FIREWALL_PORT_OPEN_GUID","features":[583]},{"name":"GetServiceDirectory","features":[583]},{"name":"GetServiceDisplayNameA","features":[303,306,583]},{"name":"GetServiceDisplayNameW","features":[303,306,583]},{"name":"GetServiceKeyNameA","features":[303,306,583]},{"name":"GetServiceKeyNameW","features":[303,306,583]},{"name":"GetServiceRegistryStateKey","features":[364,583]},{"name":"GetSharedServiceDirectory","features":[306,583]},{"name":"GetSharedServiceRegistryStateKey","features":[306,364,583]},{"name":"HANDLER_FUNCTION","features":[583]},{"name":"HANDLER_FUNCTION_EX","features":[583]},{"name":"LPHANDLER_FUNCTION","features":[583]},{"name":"LPHANDLER_FUNCTION_EX","features":[583]},{"name":"LPSERVICE_MAIN_FUNCTIONA","features":[583]},{"name":"LPSERVICE_MAIN_FUNCTIONW","features":[583]},{"name":"LockServiceDatabase","features":[306,583]},{"name":"MACHINE_POLICY_PRESENT_GUID","features":[583]},{"name":"MaxServiceRegistryStateType","features":[583]},{"name":"NAMED_PIPE_EVENT_GUID","features":[583]},{"name":"NETWORK_MANAGER_FIRST_IP_ADDRESS_ARRIVAL_GUID","features":[583]},{"name":"NETWORK_MANAGER_LAST_IP_ADDRESS_REMOVAL_GUID","features":[583]},{"name":"NotifyBootConfigStatus","features":[303,583]},{"name":"NotifyServiceStatusChangeA","features":[306,583]},{"name":"NotifyServiceStatusChangeW","features":[306,583]},{"name":"OpenSCManagerA","features":[306,583]},{"name":"OpenSCManagerW","features":[306,583]},{"name":"OpenServiceA","features":[306,583]},{"name":"OpenServiceW","features":[306,583]},{"name":"PFN_SC_NOTIFY_CALLBACK","features":[583]},{"name":"PSC_NOTIFICATION_CALLBACK","features":[583]},{"name":"PSC_NOTIFICATION_REGISTRATION","features":[583]},{"name":"QUERY_SERVICE_CONFIGA","features":[583]},{"name":"QUERY_SERVICE_CONFIGW","features":[583]},{"name":"QUERY_SERVICE_LOCK_STATUSA","features":[583]},{"name":"QUERY_SERVICE_LOCK_STATUSW","features":[583]},{"name":"QueryServiceConfig2A","features":[303,306,583]},{"name":"QueryServiceConfig2W","features":[303,306,583]},{"name":"QueryServiceConfigA","features":[303,306,583]},{"name":"QueryServiceConfigW","features":[303,306,583]},{"name":"QueryServiceDynamicInformation","features":[303,583]},{"name":"QueryServiceLockStatusA","features":[303,306,583]},{"name":"QueryServiceLockStatusW","features":[303,306,583]},{"name":"QueryServiceObjectSecurity","features":[303,306,583]},{"name":"QueryServiceStatus","features":[303,306,583]},{"name":"QueryServiceStatusEx","features":[303,306,583]},{"name":"RPC_INTERFACE_EVENT_GUID","features":[583]},{"name":"RegisterServiceCtrlHandlerA","features":[583]},{"name":"RegisterServiceCtrlHandlerExA","features":[583]},{"name":"RegisterServiceCtrlHandlerExW","features":[583]},{"name":"RegisterServiceCtrlHandlerW","features":[583]},{"name":"SC_ACTION","features":[583]},{"name":"SC_ACTION_NONE","features":[583]},{"name":"SC_ACTION_OWN_RESTART","features":[583]},{"name":"SC_ACTION_REBOOT","features":[583]},{"name":"SC_ACTION_RESTART","features":[583]},{"name":"SC_ACTION_RUN_COMMAND","features":[583]},{"name":"SC_ACTION_TYPE","features":[583]},{"name":"SC_AGGREGATE_STORAGE_KEY","features":[583]},{"name":"SC_ENUM_PROCESS_INFO","features":[583]},{"name":"SC_ENUM_TYPE","features":[583]},{"name":"SC_EVENT_DATABASE_CHANGE","features":[583]},{"name":"SC_EVENT_PROPERTY_CHANGE","features":[583]},{"name":"SC_EVENT_STATUS_CHANGE","features":[583]},{"name":"SC_EVENT_TYPE","features":[583]},{"name":"SC_MANAGER_ALL_ACCESS","features":[583]},{"name":"SC_MANAGER_CONNECT","features":[583]},{"name":"SC_MANAGER_CREATE_SERVICE","features":[583]},{"name":"SC_MANAGER_ENUMERATE_SERVICE","features":[583]},{"name":"SC_MANAGER_LOCK","features":[583]},{"name":"SC_MANAGER_MODIFY_BOOT_CONFIG","features":[583]},{"name":"SC_MANAGER_QUERY_LOCK_STATUS","features":[583]},{"name":"SC_STATUS_PROCESS_INFO","features":[583]},{"name":"SC_STATUS_TYPE","features":[583]},{"name":"SERVICES_ACTIVE_DATABASE","features":[583]},{"name":"SERVICES_ACTIVE_DATABASEA","features":[583]},{"name":"SERVICES_ACTIVE_DATABASEW","features":[583]},{"name":"SERVICES_FAILED_DATABASE","features":[583]},{"name":"SERVICES_FAILED_DATABASEA","features":[583]},{"name":"SERVICES_FAILED_DATABASEW","features":[583]},{"name":"SERVICE_ACCEPT_HARDWAREPROFILECHANGE","features":[583]},{"name":"SERVICE_ACCEPT_LOWRESOURCES","features":[583]},{"name":"SERVICE_ACCEPT_NETBINDCHANGE","features":[583]},{"name":"SERVICE_ACCEPT_PARAMCHANGE","features":[583]},{"name":"SERVICE_ACCEPT_PAUSE_CONTINUE","features":[583]},{"name":"SERVICE_ACCEPT_POWEREVENT","features":[583]},{"name":"SERVICE_ACCEPT_PRESHUTDOWN","features":[583]},{"name":"SERVICE_ACCEPT_SESSIONCHANGE","features":[583]},{"name":"SERVICE_ACCEPT_SHUTDOWN","features":[583]},{"name":"SERVICE_ACCEPT_STOP","features":[583]},{"name":"SERVICE_ACCEPT_SYSTEMLOWRESOURCES","features":[583]},{"name":"SERVICE_ACCEPT_TIMECHANGE","features":[583]},{"name":"SERVICE_ACCEPT_TRIGGEREVENT","features":[583]},{"name":"SERVICE_ACCEPT_USER_LOGOFF","features":[583]},{"name":"SERVICE_ACTIVE","features":[583]},{"name":"SERVICE_ADAPTER","features":[583]},{"name":"SERVICE_ALL_ACCESS","features":[583]},{"name":"SERVICE_AUTO_START","features":[583]},{"name":"SERVICE_BOOT_START","features":[583]},{"name":"SERVICE_CHANGE_CONFIG","features":[583]},{"name":"SERVICE_CONFIG","features":[583]},{"name":"SERVICE_CONFIG_DELAYED_AUTO_START_INFO","features":[583]},{"name":"SERVICE_CONFIG_DESCRIPTION","features":[583]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS","features":[583]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS_FLAG","features":[583]},{"name":"SERVICE_CONFIG_LAUNCH_PROTECTED","features":[583]},{"name":"SERVICE_CONFIG_PREFERRED_NODE","features":[583]},{"name":"SERVICE_CONFIG_PRESHUTDOWN_INFO","features":[583]},{"name":"SERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO","features":[583]},{"name":"SERVICE_CONFIG_SERVICE_SID_INFO","features":[583]},{"name":"SERVICE_CONFIG_TRIGGER_INFO","features":[583]},{"name":"SERVICE_CONTINUE_PENDING","features":[583]},{"name":"SERVICE_CONTROL_CONTINUE","features":[583]},{"name":"SERVICE_CONTROL_DEVICEEVENT","features":[583]},{"name":"SERVICE_CONTROL_HARDWAREPROFILECHANGE","features":[583]},{"name":"SERVICE_CONTROL_INTERROGATE","features":[583]},{"name":"SERVICE_CONTROL_LOWRESOURCES","features":[583]},{"name":"SERVICE_CONTROL_NETBINDADD","features":[583]},{"name":"SERVICE_CONTROL_NETBINDDISABLE","features":[583]},{"name":"SERVICE_CONTROL_NETBINDENABLE","features":[583]},{"name":"SERVICE_CONTROL_NETBINDREMOVE","features":[583]},{"name":"SERVICE_CONTROL_PARAMCHANGE","features":[583]},{"name":"SERVICE_CONTROL_PAUSE","features":[583]},{"name":"SERVICE_CONTROL_POWEREVENT","features":[583]},{"name":"SERVICE_CONTROL_PRESHUTDOWN","features":[583]},{"name":"SERVICE_CONTROL_SESSIONCHANGE","features":[583]},{"name":"SERVICE_CONTROL_SHUTDOWN","features":[583]},{"name":"SERVICE_CONTROL_STATUS_REASON_INFO","features":[583]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSA","features":[583]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSW","features":[583]},{"name":"SERVICE_CONTROL_STOP","features":[583]},{"name":"SERVICE_CONTROL_SYSTEMLOWRESOURCES","features":[583]},{"name":"SERVICE_CONTROL_TIMECHANGE","features":[583]},{"name":"SERVICE_CONTROL_TRIGGEREVENT","features":[583]},{"name":"SERVICE_CUSTOM_SYSTEM_STATE_CHANGE_DATA_ITEM","features":[583]},{"name":"SERVICE_DELAYED_AUTO_START_INFO","features":[303,583]},{"name":"SERVICE_DEMAND_START","features":[583]},{"name":"SERVICE_DESCRIPTIONA","features":[583]},{"name":"SERVICE_DESCRIPTIONW","features":[583]},{"name":"SERVICE_DIRECTORY_TYPE","features":[583]},{"name":"SERVICE_DISABLED","features":[583]},{"name":"SERVICE_DRIVER","features":[583]},{"name":"SERVICE_DYNAMIC_INFORMATION_LEVEL_START_REASON","features":[583]},{"name":"SERVICE_ENUMERATE_DEPENDENTS","features":[583]},{"name":"SERVICE_ERROR","features":[583]},{"name":"SERVICE_ERROR_CRITICAL","features":[583]},{"name":"SERVICE_ERROR_IGNORE","features":[583]},{"name":"SERVICE_ERROR_NORMAL","features":[583]},{"name":"SERVICE_ERROR_SEVERE","features":[583]},{"name":"SERVICE_FAILURE_ACTIONSA","features":[583]},{"name":"SERVICE_FAILURE_ACTIONSW","features":[583]},{"name":"SERVICE_FAILURE_ACTIONS_FLAG","features":[303,583]},{"name":"SERVICE_FILE_SYSTEM_DRIVER","features":[583]},{"name":"SERVICE_INACTIVE","features":[583]},{"name":"SERVICE_INTERROGATE","features":[583]},{"name":"SERVICE_KERNEL_DRIVER","features":[583]},{"name":"SERVICE_LAUNCH_PROTECTED_ANTIMALWARE_LIGHT","features":[583]},{"name":"SERVICE_LAUNCH_PROTECTED_INFO","features":[583]},{"name":"SERVICE_LAUNCH_PROTECTED_NONE","features":[583]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS","features":[583]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS_LIGHT","features":[583]},{"name":"SERVICE_MAIN_FUNCTIONA","features":[583]},{"name":"SERVICE_MAIN_FUNCTIONW","features":[583]},{"name":"SERVICE_NOTIFY","features":[583]},{"name":"SERVICE_NOTIFY_1","features":[583]},{"name":"SERVICE_NOTIFY_2A","features":[583]},{"name":"SERVICE_NOTIFY_2W","features":[583]},{"name":"SERVICE_NOTIFY_CONTINUE_PENDING","features":[583]},{"name":"SERVICE_NOTIFY_CREATED","features":[583]},{"name":"SERVICE_NOTIFY_DELETED","features":[583]},{"name":"SERVICE_NOTIFY_DELETE_PENDING","features":[583]},{"name":"SERVICE_NOTIFY_PAUSED","features":[583]},{"name":"SERVICE_NOTIFY_PAUSE_PENDING","features":[583]},{"name":"SERVICE_NOTIFY_RUNNING","features":[583]},{"name":"SERVICE_NOTIFY_START_PENDING","features":[583]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE","features":[583]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_1","features":[583]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_2","features":[583]},{"name":"SERVICE_NOTIFY_STOPPED","features":[583]},{"name":"SERVICE_NOTIFY_STOP_PENDING","features":[583]},{"name":"SERVICE_NO_CHANGE","features":[583]},{"name":"SERVICE_PAUSED","features":[583]},{"name":"SERVICE_PAUSE_CONTINUE","features":[583]},{"name":"SERVICE_PAUSE_PENDING","features":[583]},{"name":"SERVICE_PREFERRED_NODE_INFO","features":[303,583]},{"name":"SERVICE_PRESHUTDOWN_INFO","features":[583]},{"name":"SERVICE_QUERY_CONFIG","features":[583]},{"name":"SERVICE_QUERY_STATUS","features":[583]},{"name":"SERVICE_RECOGNIZER_DRIVER","features":[583]},{"name":"SERVICE_REGISTRY_STATE_TYPE","features":[583]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOA","features":[583]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOW","features":[583]},{"name":"SERVICE_RUNNING","features":[583]},{"name":"SERVICE_RUNS_IN_NON_SYSTEM_OR_NOT_RUNNING","features":[583]},{"name":"SERVICE_RUNS_IN_PROCESS","features":[583]},{"name":"SERVICE_RUNS_IN_SYSTEM_PROCESS","features":[583]},{"name":"SERVICE_SHARED_DIRECTORY_TYPE","features":[583]},{"name":"SERVICE_SHARED_REGISTRY_STATE_TYPE","features":[583]},{"name":"SERVICE_SID_INFO","features":[583]},{"name":"SERVICE_SID_TYPE_NONE","features":[583]},{"name":"SERVICE_SID_TYPE_UNRESTRICTED","features":[583]},{"name":"SERVICE_START","features":[583]},{"name":"SERVICE_START_PENDING","features":[583]},{"name":"SERVICE_START_REASON","features":[583]},{"name":"SERVICE_START_REASON_AUTO","features":[583]},{"name":"SERVICE_START_REASON_DELAYEDAUTO","features":[583]},{"name":"SERVICE_START_REASON_DEMAND","features":[583]},{"name":"SERVICE_START_REASON_RESTART_ON_FAILURE","features":[583]},{"name":"SERVICE_START_REASON_TRIGGER","features":[583]},{"name":"SERVICE_START_TYPE","features":[583]},{"name":"SERVICE_STATE_ALL","features":[583]},{"name":"SERVICE_STATUS","features":[583]},{"name":"SERVICE_STATUS_CURRENT_STATE","features":[583]},{"name":"SERVICE_STATUS_HANDLE","features":[583]},{"name":"SERVICE_STATUS_PROCESS","features":[583]},{"name":"SERVICE_STOP","features":[583]},{"name":"SERVICE_STOPPED","features":[583]},{"name":"SERVICE_STOP_PENDING","features":[583]},{"name":"SERVICE_STOP_REASON_FLAG_CUSTOM","features":[583]},{"name":"SERVICE_STOP_REASON_FLAG_MAX","features":[583]},{"name":"SERVICE_STOP_REASON_FLAG_MIN","features":[583]},{"name":"SERVICE_STOP_REASON_FLAG_PLANNED","features":[583]},{"name":"SERVICE_STOP_REASON_FLAG_UNPLANNED","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_APPLICATION","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_HARDWARE","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX_CUSTOM","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN_CUSTOM","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_NONE","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_OPERATINGSYSTEM","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_OTHER","features":[583]},{"name":"SERVICE_STOP_REASON_MAJOR_SOFTWARE","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_DISK","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_ENVIRONMENT","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_HARDWARE_DRIVER","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_HUNG","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_INSTALLATION","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_MAINTENANCE","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_MAX","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_MAX_CUSTOM","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_MEMOTYLIMIT","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_MIN","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_MIN_CUSTOM","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_MMC","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORKCARD","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORK_CONNECTIVITY","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_NONE","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_OTHER","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_OTHERDRIVER","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_RECONFIG","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITY","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE_UNINSTALL","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_UNSTABLE","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_UPGRADE","features":[583]},{"name":"SERVICE_STOP_REASON_MINOR_WMI","features":[583]},{"name":"SERVICE_SYSTEM_START","features":[583]},{"name":"SERVICE_TABLE_ENTRYA","features":[583]},{"name":"SERVICE_TABLE_ENTRYW","features":[583]},{"name":"SERVICE_TIMECHANGE_INFO","features":[583]},{"name":"SERVICE_TRIGGER","features":[583]},{"name":"SERVICE_TRIGGER_ACTION","features":[583]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_START","features":[583]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_STOP","features":[583]},{"name":"SERVICE_TRIGGER_CUSTOM_STATE_ID","features":[583]},{"name":"SERVICE_TRIGGER_DATA_TYPE_BINARY","features":[583]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ALL","features":[583]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ANY","features":[583]},{"name":"SERVICE_TRIGGER_DATA_TYPE_LEVEL","features":[583]},{"name":"SERVICE_TRIGGER_DATA_TYPE_STRING","features":[583]},{"name":"SERVICE_TRIGGER_INFO","features":[583]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM","features":[583]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM_DATA_TYPE","features":[583]},{"name":"SERVICE_TRIGGER_STARTED_ARGUMENT","features":[583]},{"name":"SERVICE_TRIGGER_TYPE","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_AGGREGATE","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM_SYSTEM_STATE_CHANGE","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_DEVICE_INTERFACE_ARRIVAL","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_DOMAIN_JOIN","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_FIREWALL_PORT_EVENT","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_GROUP_POLICY","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_IP_ADDRESS_AVAILABILITY","features":[583]},{"name":"SERVICE_TRIGGER_TYPE_NETWORK_ENDPOINT","features":[583]},{"name":"SERVICE_USER_DEFINED_CONTROL","features":[583]},{"name":"SERVICE_USER_OWN_PROCESS","features":[583]},{"name":"SERVICE_USER_SHARE_PROCESS","features":[583]},{"name":"SERVICE_WIN32","features":[583]},{"name":"SERVICE_WIN32_OWN_PROCESS","features":[583]},{"name":"SERVICE_WIN32_SHARE_PROCESS","features":[583]},{"name":"ServiceDirectoryPersistentState","features":[583]},{"name":"ServiceDirectoryTypeMax","features":[583]},{"name":"ServiceRegistryStateParameters","features":[583]},{"name":"ServiceRegistryStatePersistent","features":[583]},{"name":"ServiceSharedDirectoryPersistentState","features":[583]},{"name":"ServiceSharedRegistryPersistentState","features":[583]},{"name":"SetServiceBits","features":[303,583]},{"name":"SetServiceObjectSecurity","features":[303,306,583]},{"name":"SetServiceStatus","features":[303,583]},{"name":"StartServiceA","features":[303,306,583]},{"name":"StartServiceCtrlDispatcherA","features":[303,583]},{"name":"StartServiceCtrlDispatcherW","features":[303,583]},{"name":"StartServiceW","features":[303,306,583]},{"name":"SubscribeServiceChangeNotifications","features":[306,583]},{"name":"USER_POLICY_PRESENT_GUID","features":[583]},{"name":"UnlockServiceDatabase","features":[303,583]},{"name":"UnsubscribeServiceChangeNotifications","features":[583]},{"name":"WaitServiceState","features":[303,306,583]}],"607":[{"name":"AllEnumeration","features":[584]},{"name":"IItemEnumerator","features":[584]},{"name":"ISettingsContext","features":[584]},{"name":"ISettingsEngine","features":[584]},{"name":"ISettingsIdentity","features":[584]},{"name":"ISettingsItem","features":[584]},{"name":"ISettingsNamespace","features":[584]},{"name":"ISettingsResult","features":[584]},{"name":"ITargetInfo","features":[584]},{"name":"LIMITED_VALIDATION_MODE","features":[584]},{"name":"LINK_STORE_TO_ENGINE_INSTANCE","features":[584]},{"name":"OfflineMode","features":[584]},{"name":"OnlineMode","features":[584]},{"name":"ReadOnlyAccess","features":[584]},{"name":"ReadWriteAccess","features":[584]},{"name":"SettingsEngine","features":[584]},{"name":"SharedEnumeration","features":[584]},{"name":"UnknownStatus","features":[584]},{"name":"UserEnumeration","features":[584]},{"name":"UserLoaded","features":[584]},{"name":"UserRegistered","features":[584]},{"name":"UserUnloaded","features":[584]},{"name":"UserUnregistered","features":[584]},{"name":"WCM_E_ABORTOPERATION","features":[584]},{"name":"WCM_E_ASSERTIONFAILED","features":[584]},{"name":"WCM_E_ATTRIBUTENOTALLOWED","features":[584]},{"name":"WCM_E_ATTRIBUTENOTFOUND","features":[584]},{"name":"WCM_E_CONFLICTINGASSERTION","features":[584]},{"name":"WCM_E_CYCLICREFERENCE","features":[584]},{"name":"WCM_E_DUPLICATENAME","features":[584]},{"name":"WCM_E_EXPRESSIONNOTFOUND","features":[584]},{"name":"WCM_E_HANDLERNOTFOUND","features":[584]},{"name":"WCM_E_INTERNALERROR","features":[584]},{"name":"WCM_E_INVALIDATTRIBUTECOMBINATION","features":[584]},{"name":"WCM_E_INVALIDDATATYPE","features":[584]},{"name":"WCM_E_INVALIDEXPRESSIONSYNTAX","features":[584]},{"name":"WCM_E_INVALIDHANDLERSYNTAX","features":[584]},{"name":"WCM_E_INVALIDKEY","features":[584]},{"name":"WCM_E_INVALIDLANGUAGEFORMAT","features":[584]},{"name":"WCM_E_INVALIDPATH","features":[584]},{"name":"WCM_E_INVALIDPROCESSORFORMAT","features":[584]},{"name":"WCM_E_INVALIDSTREAM","features":[584]},{"name":"WCM_E_INVALIDVALUE","features":[584]},{"name":"WCM_E_INVALIDVALUEFORMAT","features":[584]},{"name":"WCM_E_INVALIDVERSIONFORMAT","features":[584]},{"name":"WCM_E_KEYNOTCHANGEABLE","features":[584]},{"name":"WCM_E_MANIFESTCOMPILATIONFAILED","features":[584]},{"name":"WCM_E_MISSINGCONFIGURATION","features":[584]},{"name":"WCM_E_MIXTYPEASSERTION","features":[584]},{"name":"WCM_E_NAMESPACEALREADYREGISTERED","features":[584]},{"name":"WCM_E_NAMESPACENOTFOUND","features":[584]},{"name":"WCM_E_NOTIFICATIONNOTFOUND","features":[584]},{"name":"WCM_E_NOTPOSITIONED","features":[584]},{"name":"WCM_E_NOTSUPPORTEDFUNCTION","features":[584]},{"name":"WCM_E_READONLYITEM","features":[584]},{"name":"WCM_E_RESTRICTIONFAILED","features":[584]},{"name":"WCM_E_SOURCEMANEMPTYVALUE","features":[584]},{"name":"WCM_E_STATENODENOTALLOWED","features":[584]},{"name":"WCM_E_STATENODENOTFOUND","features":[584]},{"name":"WCM_E_STORECORRUPTED","features":[584]},{"name":"WCM_E_SUBSTITUTIONNOTFOUND","features":[584]},{"name":"WCM_E_TYPENOTSPECIFIED","features":[584]},{"name":"WCM_E_UNKNOWNRESULT","features":[584]},{"name":"WCM_E_USERALREADYREGISTERED","features":[584]},{"name":"WCM_E_USERNOTFOUND","features":[584]},{"name":"WCM_E_VALIDATIONFAILED","features":[584]},{"name":"WCM_E_VALUETOOBIG","features":[584]},{"name":"WCM_E_WRONGESCAPESTRING","features":[584]},{"name":"WCM_SETTINGS_ID_ARCHITECTURE","features":[584]},{"name":"WCM_SETTINGS_ID_FLAG_DEFINITION","features":[584]},{"name":"WCM_SETTINGS_ID_FLAG_REFERENCE","features":[584]},{"name":"WCM_SETTINGS_ID_LANGUAGE","features":[584]},{"name":"WCM_SETTINGS_ID_NAME","features":[584]},{"name":"WCM_SETTINGS_ID_TOKEN","features":[584]},{"name":"WCM_SETTINGS_ID_URI","features":[584]},{"name":"WCM_SETTINGS_ID_VERSION","features":[584]},{"name":"WCM_SETTINGS_ID_VERSION_SCOPE","features":[584]},{"name":"WCM_S_ATTRIBUTENOTALLOWED","features":[584]},{"name":"WCM_S_ATTRIBUTENOTFOUND","features":[584]},{"name":"WCM_S_INTERNALERROR","features":[584]},{"name":"WCM_S_INVALIDATTRIBUTECOMBINATION","features":[584]},{"name":"WCM_S_LEGACYSETTINGWARNING","features":[584]},{"name":"WCM_S_NAMESPACENOTFOUND","features":[584]},{"name":"WcmDataType","features":[584]},{"name":"WcmNamespaceAccess","features":[584]},{"name":"WcmNamespaceEnumerationFlags","features":[584]},{"name":"WcmRestrictionFacets","features":[584]},{"name":"WcmSettingType","features":[584]},{"name":"WcmTargetMode","features":[584]},{"name":"WcmUserStatus","features":[584]},{"name":"dataTypeBoolean","features":[584]},{"name":"dataTypeByte","features":[584]},{"name":"dataTypeFlagArray","features":[584]},{"name":"dataTypeInt16","features":[584]},{"name":"dataTypeInt32","features":[584]},{"name":"dataTypeInt64","features":[584]},{"name":"dataTypeSByte","features":[584]},{"name":"dataTypeString","features":[584]},{"name":"dataTypeUInt16","features":[584]},{"name":"dataTypeUInt32","features":[584]},{"name":"dataTypeUInt64","features":[584]},{"name":"restrictionFacetEnumeration","features":[584]},{"name":"restrictionFacetMaxInclusive","features":[584]},{"name":"restrictionFacetMaxLength","features":[584]},{"name":"restrictionFacetMinInclusive","features":[584]},{"name":"settingTypeComplex","features":[584]},{"name":"settingTypeList","features":[584]},{"name":"settingTypeScalar","features":[584]}],"608":[{"name":"OOBEComplete","features":[303,585]},{"name":"OOBE_COMPLETED_CALLBACK","features":[585]},{"name":"RegisterWaitUntilOOBECompleted","features":[303,585]},{"name":"UnregisterWaitUntilOOBECompleted","features":[303,585]}],"609":[{"name":"AbortSystemShutdownA","features":[303,586]},{"name":"AbortSystemShutdownW","features":[303,586]},{"name":"CheckForHiberboot","features":[303,586]},{"name":"EWX_ARSO","features":[586]},{"name":"EWX_BOOTOPTIONS","features":[586]},{"name":"EWX_CHECK_SAFE_FOR_SERVER","features":[586]},{"name":"EWX_FORCE","features":[586]},{"name":"EWX_FORCEIFHUNG","features":[586]},{"name":"EWX_HYBRID_SHUTDOWN","features":[586]},{"name":"EWX_LOGOFF","features":[586]},{"name":"EWX_POWEROFF","features":[586]},{"name":"EWX_QUICKRESOLVE","features":[586]},{"name":"EWX_REBOOT","features":[586]},{"name":"EWX_RESTARTAPPS","features":[586]},{"name":"EWX_SHUTDOWN","features":[586]},{"name":"EWX_SYSTEM_INITIATED","features":[586]},{"name":"EXIT_WINDOWS_FLAGS","features":[586]},{"name":"ExitWindowsEx","features":[303,586]},{"name":"InitiateShutdownA","features":[586]},{"name":"InitiateShutdownW","features":[586]},{"name":"InitiateSystemShutdownA","features":[303,586]},{"name":"InitiateSystemShutdownExA","features":[303,586]},{"name":"InitiateSystemShutdownExW","features":[303,586]},{"name":"InitiateSystemShutdownW","features":[303,586]},{"name":"LockWorkStation","features":[303,586]},{"name":"MAX_NUM_REASONS","features":[586]},{"name":"MAX_REASON_BUGID_LEN","features":[586]},{"name":"MAX_REASON_COMMENT_LEN","features":[586]},{"name":"MAX_REASON_DESC_LEN","features":[586]},{"name":"MAX_REASON_NAME_LEN","features":[586]},{"name":"POLICY_SHOWREASONUI_ALWAYS","features":[586]},{"name":"POLICY_SHOWREASONUI_NEVER","features":[586]},{"name":"POLICY_SHOWREASONUI_SERVERONLY","features":[586]},{"name":"POLICY_SHOWREASONUI_WORKSTATIONONLY","features":[586]},{"name":"SHTDN_REASON_FLAG_CLEAN_UI","features":[586]},{"name":"SHTDN_REASON_FLAG_COMMENT_REQUIRED","features":[586]},{"name":"SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED","features":[586]},{"name":"SHTDN_REASON_FLAG_DIRTY_UI","features":[586]},{"name":"SHTDN_REASON_FLAG_MOBILE_UI_RESERVED","features":[586]},{"name":"SHTDN_REASON_FLAG_PLANNED","features":[586]},{"name":"SHTDN_REASON_FLAG_USER_DEFINED","features":[586]},{"name":"SHTDN_REASON_LEGACY_API","features":[586]},{"name":"SHTDN_REASON_MAJOR_APPLICATION","features":[586]},{"name":"SHTDN_REASON_MAJOR_HARDWARE","features":[586]},{"name":"SHTDN_REASON_MAJOR_LEGACY_API","features":[586]},{"name":"SHTDN_REASON_MAJOR_NONE","features":[586]},{"name":"SHTDN_REASON_MAJOR_OPERATINGSYSTEM","features":[586]},{"name":"SHTDN_REASON_MAJOR_OTHER","features":[586]},{"name":"SHTDN_REASON_MAJOR_POWER","features":[586]},{"name":"SHTDN_REASON_MAJOR_SOFTWARE","features":[586]},{"name":"SHTDN_REASON_MAJOR_SYSTEM","features":[586]},{"name":"SHTDN_REASON_MINOR_BLUESCREEN","features":[586]},{"name":"SHTDN_REASON_MINOR_CORDUNPLUGGED","features":[586]},{"name":"SHTDN_REASON_MINOR_DC_DEMOTION","features":[586]},{"name":"SHTDN_REASON_MINOR_DC_PROMOTION","features":[586]},{"name":"SHTDN_REASON_MINOR_DISK","features":[586]},{"name":"SHTDN_REASON_MINOR_ENVIRONMENT","features":[586]},{"name":"SHTDN_REASON_MINOR_HARDWARE_DRIVER","features":[586]},{"name":"SHTDN_REASON_MINOR_HOTFIX","features":[586]},{"name":"SHTDN_REASON_MINOR_HOTFIX_UNINSTALL","features":[586]},{"name":"SHTDN_REASON_MINOR_HUNG","features":[586]},{"name":"SHTDN_REASON_MINOR_INSTALLATION","features":[586]},{"name":"SHTDN_REASON_MINOR_MAINTENANCE","features":[586]},{"name":"SHTDN_REASON_MINOR_MMC","features":[586]},{"name":"SHTDN_REASON_MINOR_NETWORKCARD","features":[586]},{"name":"SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY","features":[586]},{"name":"SHTDN_REASON_MINOR_NONE","features":[586]},{"name":"SHTDN_REASON_MINOR_OTHER","features":[586]},{"name":"SHTDN_REASON_MINOR_OTHERDRIVER","features":[586]},{"name":"SHTDN_REASON_MINOR_POWER_SUPPLY","features":[586]},{"name":"SHTDN_REASON_MINOR_PROCESSOR","features":[586]},{"name":"SHTDN_REASON_MINOR_RECONFIG","features":[586]},{"name":"SHTDN_REASON_MINOR_SECURITY","features":[586]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX","features":[586]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[586]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK","features":[586]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[586]},{"name":"SHTDN_REASON_MINOR_SYSTEMRESTORE","features":[586]},{"name":"SHTDN_REASON_MINOR_TERMSRV","features":[586]},{"name":"SHTDN_REASON_MINOR_UNSTABLE","features":[586]},{"name":"SHTDN_REASON_MINOR_UPGRADE","features":[586]},{"name":"SHTDN_REASON_MINOR_WMI","features":[586]},{"name":"SHTDN_REASON_NONE","features":[586]},{"name":"SHTDN_REASON_UNKNOWN","features":[586]},{"name":"SHTDN_REASON_VALID_BIT_MASK","features":[586]},{"name":"SHUTDOWN_ARSO","features":[586]},{"name":"SHUTDOWN_CHECK_SAFE_FOR_SERVER","features":[586]},{"name":"SHUTDOWN_FLAGS","features":[586]},{"name":"SHUTDOWN_FORCE_OTHERS","features":[586]},{"name":"SHUTDOWN_FORCE_SELF","features":[586]},{"name":"SHUTDOWN_GRACE_OVERRIDE","features":[586]},{"name":"SHUTDOWN_HYBRID","features":[586]},{"name":"SHUTDOWN_INSTALL_UPDATES","features":[586]},{"name":"SHUTDOWN_MOBILE_UI","features":[586]},{"name":"SHUTDOWN_NOREBOOT","features":[586]},{"name":"SHUTDOWN_POWEROFF","features":[586]},{"name":"SHUTDOWN_REASON","features":[586]},{"name":"SHUTDOWN_RESTART","features":[586]},{"name":"SHUTDOWN_RESTARTAPPS","features":[586]},{"name":"SHUTDOWN_RESTART_BOOTOPTIONS","features":[586]},{"name":"SHUTDOWN_SKIP_SVC_PRESHUTDOWN","features":[586]},{"name":"SHUTDOWN_SOFT_REBOOT","features":[586]},{"name":"SHUTDOWN_SYSTEM_INITIATED","features":[586]},{"name":"SHUTDOWN_TYPE_LEN","features":[586]},{"name":"SHUTDOWN_VAIL_CONTAINER","features":[586]},{"name":"SNAPSHOT_POLICY_ALWAYS","features":[586]},{"name":"SNAPSHOT_POLICY_NEVER","features":[586]},{"name":"SNAPSHOT_POLICY_UNPLANNED","features":[586]},{"name":"ShutdownBlockReasonCreate","features":[303,586]},{"name":"ShutdownBlockReasonDestroy","features":[303,586]},{"name":"ShutdownBlockReasonQuery","features":[303,586]}],"610":[{"name":"APPLICATION_EVENT_DATA","features":[587]},{"name":"CONTENT_ID_GLANCE","features":[587]},{"name":"CONTENT_ID_HOME","features":[587]},{"name":"CONTENT_MISSING_EVENT_DATA","features":[587]},{"name":"DEVICE_USER_CHANGE_EVENT_DATA","features":[587]},{"name":"EVENT_DATA_HEADER","features":[587]},{"name":"GUID_DEVINTERFACE_SIDESHOW","features":[587]},{"name":"ISideShowBulkCapabilities","features":[587]},{"name":"ISideShowCapabilities","features":[587]},{"name":"ISideShowCapabilitiesCollection","features":[587]},{"name":"ISideShowContent","features":[587]},{"name":"ISideShowContentManager","features":[587]},{"name":"ISideShowEvents","features":[587]},{"name":"ISideShowKeyCollection","features":[587]},{"name":"ISideShowNotification","features":[587]},{"name":"ISideShowNotificationManager","features":[587]},{"name":"ISideShowPropVariantCollection","features":[587]},{"name":"ISideShowSession","features":[587]},{"name":"NEW_EVENT_DATA_AVAILABLE","features":[587]},{"name":"SCF_BUTTON_BACK","features":[587]},{"name":"SCF_BUTTON_DOWN","features":[587]},{"name":"SCF_BUTTON_FASTFORWARD","features":[587]},{"name":"SCF_BUTTON_IDS","features":[587]},{"name":"SCF_BUTTON_LEFT","features":[587]},{"name":"SCF_BUTTON_MENU","features":[587]},{"name":"SCF_BUTTON_PAUSE","features":[587]},{"name":"SCF_BUTTON_PLAY","features":[587]},{"name":"SCF_BUTTON_REWIND","features":[587]},{"name":"SCF_BUTTON_RIGHT","features":[587]},{"name":"SCF_BUTTON_SELECT","features":[587]},{"name":"SCF_BUTTON_STOP","features":[587]},{"name":"SCF_BUTTON_UP","features":[587]},{"name":"SCF_CONTEXTMENU_EVENT","features":[587]},{"name":"SCF_EVENT_CONTEXTMENU","features":[587]},{"name":"SCF_EVENT_HEADER","features":[587]},{"name":"SCF_EVENT_IDS","features":[587]},{"name":"SCF_EVENT_MENUACTION","features":[587]},{"name":"SCF_EVENT_NAVIGATION","features":[587]},{"name":"SCF_MENUACTION_EVENT","features":[587]},{"name":"SCF_NAVIGATION_EVENT","features":[587]},{"name":"SIDESHOW_APPLICATION_EVENT","features":[587]},{"name":"SIDESHOW_CAPABILITY_CLIENT_AREA_HEIGHT","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_CLIENT_AREA_WIDTH","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_COLOR_DEPTH","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_COLOR_TYPE","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_CURRENT_LANGUAGE","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_DATA_CACHE","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_DEVICE_ID","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_DEVICE_PROPERTIES","features":[587]},{"name":"SIDESHOW_CAPABILITY_SCREEN_HEIGHT","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_SCREEN_TYPE","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_SCREEN_WIDTH","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_SUPPORTED_IMAGE_FORMATS","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_SUPPORTED_LANGUAGES","features":[587,374]},{"name":"SIDESHOW_CAPABILITY_SUPPORTED_THEMES","features":[587,374]},{"name":"SIDESHOW_COLOR_TYPE","features":[587]},{"name":"SIDESHOW_COLOR_TYPE_BLACK_AND_WHITE","features":[587]},{"name":"SIDESHOW_COLOR_TYPE_COLOR","features":[587]},{"name":"SIDESHOW_COLOR_TYPE_GREYSCALE","features":[587]},{"name":"SIDESHOW_CONTENT_MISSING_EVENT","features":[587]},{"name":"SIDESHOW_ENDPOINT_ICAL","features":[587]},{"name":"SIDESHOW_ENDPOINT_SIMPLE_CONTENT_FORMAT","features":[587]},{"name":"SIDESHOW_EVENTID_APPLICATION_ENTER","features":[587]},{"name":"SIDESHOW_EVENTID_APPLICATION_EXIT","features":[587]},{"name":"SIDESHOW_NEW_EVENT_DATA_AVAILABLE","features":[587]},{"name":"SIDESHOW_SCREEN_TYPE","features":[587]},{"name":"SIDESHOW_SCREEN_TYPE_BITMAP","features":[587]},{"name":"SIDESHOW_SCREEN_TYPE_TEXT","features":[587]},{"name":"SIDESHOW_USER_CHANGE_REQUEST_EVENT","features":[587]},{"name":"SideShowKeyCollection","features":[587]},{"name":"SideShowNotification","features":[587]},{"name":"SideShowPropVariantCollection","features":[587]},{"name":"SideShowSession","features":[587]},{"name":"VERSION_1_WINDOWS_7","features":[587]}],"611":[{"name":"BROADCAST_SYSTEM_MESSAGE_FLAGS","features":[496]},{"name":"BROADCAST_SYSTEM_MESSAGE_INFO","features":[496]},{"name":"BSF_ALLOWSFW","features":[496]},{"name":"BSF_FLUSHDISK","features":[496]},{"name":"BSF_FORCEIFHUNG","features":[496]},{"name":"BSF_IGNORECURRENTTASK","features":[496]},{"name":"BSF_LUID","features":[496]},{"name":"BSF_NOHANG","features":[496]},{"name":"BSF_NOTIMEOUTIFNOTHUNG","features":[496]},{"name":"BSF_POSTMESSAGE","features":[496]},{"name":"BSF_QUERY","features":[496]},{"name":"BSF_RETURNHDESK","features":[496]},{"name":"BSF_SENDNOTIFYMESSAGE","features":[496]},{"name":"BSMINFO","features":[303,496]},{"name":"BSM_ALLCOMPONENTS","features":[496]},{"name":"BSM_ALLDESKTOPS","features":[496]},{"name":"BSM_APPLICATIONS","features":[496]},{"name":"BroadcastSystemMessageA","features":[303,496]},{"name":"BroadcastSystemMessageExA","features":[303,496]},{"name":"BroadcastSystemMessageExW","features":[303,496]},{"name":"BroadcastSystemMessageW","features":[303,496]},{"name":"CloseDesktop","features":[303,496]},{"name":"CloseWindowStation","features":[303,496]},{"name":"CreateDesktopA","features":[303,314,306,496]},{"name":"CreateDesktopExA","features":[303,314,306,496]},{"name":"CreateDesktopExW","features":[303,314,306,496]},{"name":"CreateDesktopW","features":[303,314,306,496]},{"name":"CreateWindowStationA","features":[303,306,496]},{"name":"CreateWindowStationW","features":[303,306,496]},{"name":"DESKTOPENUMPROCA","features":[303,496]},{"name":"DESKTOPENUMPROCW","features":[303,496]},{"name":"DESKTOP_ACCESS_FLAGS","features":[496]},{"name":"DESKTOP_CONTROL_FLAGS","features":[496]},{"name":"DESKTOP_CREATEMENU","features":[496]},{"name":"DESKTOP_CREATEWINDOW","features":[496]},{"name":"DESKTOP_DELETE","features":[496]},{"name":"DESKTOP_ENUMERATE","features":[496]},{"name":"DESKTOP_HOOKCONTROL","features":[496]},{"name":"DESKTOP_JOURNALPLAYBACK","features":[496]},{"name":"DESKTOP_JOURNALRECORD","features":[496]},{"name":"DESKTOP_READOBJECTS","features":[496]},{"name":"DESKTOP_READ_CONTROL","features":[496]},{"name":"DESKTOP_SWITCHDESKTOP","features":[496]},{"name":"DESKTOP_SYNCHRONIZE","features":[496]},{"name":"DESKTOP_WRITEOBJECTS","features":[496]},{"name":"DESKTOP_WRITE_DAC","features":[496]},{"name":"DESKTOP_WRITE_OWNER","features":[496]},{"name":"DF_ALLOWOTHERACCOUNTHOOK","features":[496]},{"name":"EnumDesktopWindows","features":[303,496,365]},{"name":"EnumDesktopsA","features":[303,496]},{"name":"EnumDesktopsW","features":[303,496]},{"name":"EnumWindowStationsA","features":[303,496]},{"name":"EnumWindowStationsW","features":[303,496]},{"name":"GetProcessWindowStation","features":[496]},{"name":"GetThreadDesktop","features":[496]},{"name":"GetUserObjectInformationA","features":[303,496]},{"name":"GetUserObjectInformationW","features":[303,496]},{"name":"HDESK","features":[496]},{"name":"HWINSTA","features":[496]},{"name":"OpenDesktopA","features":[303,496]},{"name":"OpenDesktopW","features":[303,496]},{"name":"OpenInputDesktop","features":[303,496]},{"name":"OpenWindowStationA","features":[303,496]},{"name":"OpenWindowStationW","features":[303,496]},{"name":"SetProcessWindowStation","features":[303,496]},{"name":"SetThreadDesktop","features":[303,496]},{"name":"SetUserObjectInformationA","features":[303,496]},{"name":"SetUserObjectInformationW","features":[303,496]},{"name":"SwitchDesktop","features":[303,496]},{"name":"UOI_FLAGS","features":[496]},{"name":"UOI_HEAPSIZE","features":[496]},{"name":"UOI_IO","features":[496]},{"name":"UOI_NAME","features":[496]},{"name":"UOI_TYPE","features":[496]},{"name":"UOI_USER_SID","features":[496]},{"name":"USEROBJECTFLAGS","features":[303,496]},{"name":"USER_OBJECT_INFORMATION_INDEX","features":[496]},{"name":"WINSTAENUMPROCA","features":[303,496]},{"name":"WINSTAENUMPROCW","features":[303,496]}],"612":[{"name":"WSL_DISTRIBUTION_FLAGS","features":[588]},{"name":"WSL_DISTRIBUTION_FLAGS_APPEND_NT_PATH","features":[588]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_DRIVE_MOUNTING","features":[588]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_INTEROP","features":[588]},{"name":"WSL_DISTRIBUTION_FLAGS_NONE","features":[588]},{"name":"WslConfigureDistribution","features":[588]},{"name":"WslGetDistributionConfiguration","features":[588]},{"name":"WslIsDistributionRegistered","features":[303,588]},{"name":"WslLaunch","features":[303,588]},{"name":"WslLaunchInteractive","features":[303,588]},{"name":"WslRegisterDistribution","features":[588]},{"name":"WslUnregisterDistribution","features":[588]}],"613":[{"name":"ACPI","features":[333]},{"name":"CACHE_DESCRIPTOR","features":[333]},{"name":"CACHE_RELATIONSHIP","features":[333]},{"name":"COMPUTER_NAME_FORMAT","features":[333]},{"name":"CPU_SET_INFORMATION_TYPE","features":[333]},{"name":"CacheData","features":[333]},{"name":"CacheInstruction","features":[333]},{"name":"CacheTrace","features":[333]},{"name":"CacheUnified","features":[333]},{"name":"ComputerNameDnsDomain","features":[333]},{"name":"ComputerNameDnsFullyQualified","features":[333]},{"name":"ComputerNameDnsHostname","features":[333]},{"name":"ComputerNameMax","features":[333]},{"name":"ComputerNameNetBIOS","features":[333]},{"name":"ComputerNamePhysicalDnsDomain","features":[333]},{"name":"ComputerNamePhysicalDnsFullyQualified","features":[333]},{"name":"ComputerNamePhysicalDnsHostname","features":[333]},{"name":"ComputerNamePhysicalNetBIOS","features":[333]},{"name":"CpuSetInformation","features":[333]},{"name":"DEPPolicyAlwaysOff","features":[333]},{"name":"DEPPolicyAlwaysOn","features":[333]},{"name":"DEPPolicyOptIn","features":[333]},{"name":"DEPPolicyOptOut","features":[333]},{"name":"DEPTotalPolicyCount","features":[333]},{"name":"DEP_SYSTEM_POLICY_TYPE","features":[333]},{"name":"DEVELOPER_DRIVE_ENABLEMENT_STATE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_ALLINONE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_BANKING","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_CONVERTIBLE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_DESKTOP","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_DETACHABLE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_GAMING","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_HMD","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_KIOSK","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_LARGESCREEN","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_MAKER_BOARD","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_MAX","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_MEDICAL","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_NETWORKING","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_NOTEBOOK","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_PHONE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_PRINTING","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_PUCK","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_STICKPC","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_TABLET","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_THIN_CLIENT","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_TOY","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_UNKNOWN","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_VENDING","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_S","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X_DEVKIT","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_01","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_02","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_03","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_04","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_05","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_06","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_07","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_08","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_09","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_S","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X","features":[333]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X_DEVKIT","features":[333]},{"name":"DEVICEFAMILYINFOENUM","features":[333]},{"name":"DEVICEFAMILYINFOENUM_7067329","features":[333]},{"name":"DEVICEFAMILYINFOENUM_8828080","features":[333]},{"name":"DEVICEFAMILYINFOENUM_DESKTOP","features":[333]},{"name":"DEVICEFAMILYINFOENUM_HOLOGRAPHIC","features":[333]},{"name":"DEVICEFAMILYINFOENUM_IOT","features":[333]},{"name":"DEVICEFAMILYINFOENUM_IOT_HEADLESS","features":[333]},{"name":"DEVICEFAMILYINFOENUM_MAX","features":[333]},{"name":"DEVICEFAMILYINFOENUM_MOBILE","features":[333]},{"name":"DEVICEFAMILYINFOENUM_SERVER","features":[333]},{"name":"DEVICEFAMILYINFOENUM_SERVER_NANO","features":[333]},{"name":"DEVICEFAMILYINFOENUM_TEAM","features":[333]},{"name":"DEVICEFAMILYINFOENUM_UAP","features":[333]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_8X","features":[333]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE","features":[333]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE_HEADLESS","features":[333]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X","features":[333]},{"name":"DEVICEFAMILYINFOENUM_XBOX","features":[333]},{"name":"DEVICEFAMILYINFOENUM_XBOXERA","features":[333]},{"name":"DEVICEFAMILYINFOENUM_XBOXSRA","features":[333]},{"name":"DeveloperDriveDisabledByGroupPolicy","features":[333]},{"name":"DeveloperDriveDisabledBySystemPolicy","features":[333]},{"name":"DeveloperDriveEnabled","features":[333]},{"name":"DeveloperDriveEnablementStateError","features":[333]},{"name":"DnsHostnameToComputerNameExW","features":[303,333]},{"name":"EnumSystemFirmwareTables","features":[333]},{"name":"FIRM","features":[333]},{"name":"FIRMWARE_TABLE_PROVIDER","features":[333]},{"name":"FIRMWARE_TYPE","features":[333]},{"name":"FirmwareTypeBios","features":[333]},{"name":"FirmwareTypeMax","features":[333]},{"name":"FirmwareTypeUefi","features":[333]},{"name":"FirmwareTypeUnknown","features":[333]},{"name":"GROUP_AFFINITY","features":[333]},{"name":"GROUP_RELATIONSHIP","features":[333]},{"name":"GetComputerNameExA","features":[303,333]},{"name":"GetComputerNameExW","features":[303,333]},{"name":"GetDeveloperDriveEnablementState","features":[333]},{"name":"GetFirmwareType","features":[303,333]},{"name":"GetIntegratedDisplaySize","features":[333]},{"name":"GetLocalTime","features":[303,333]},{"name":"GetLogicalProcessorInformation","features":[303,333]},{"name":"GetLogicalProcessorInformationEx","features":[303,333]},{"name":"GetNativeSystemInfo","features":[333]},{"name":"GetOsManufacturingMode","features":[303,333]},{"name":"GetOsSafeBootMode","features":[303,333]},{"name":"GetPhysicallyInstalledSystemMemory","features":[303,333]},{"name":"GetProcessorSystemCycleTime","features":[303,333]},{"name":"GetProductInfo","features":[303,333]},{"name":"GetSystemCpuSetInformation","features":[303,333]},{"name":"GetSystemDEPPolicy","features":[333]},{"name":"GetSystemDirectoryA","features":[333]},{"name":"GetSystemDirectoryW","features":[333]},{"name":"GetSystemFirmwareTable","features":[333]},{"name":"GetSystemInfo","features":[333]},{"name":"GetSystemLeapSecondInformation","features":[303,333]},{"name":"GetSystemTime","features":[303,333]},{"name":"GetSystemTimeAdjustment","features":[303,333]},{"name":"GetSystemTimeAdjustmentPrecise","features":[303,333]},{"name":"GetSystemTimeAsFileTime","features":[303,333]},{"name":"GetSystemTimePreciseAsFileTime","features":[303,333]},{"name":"GetSystemWindowsDirectoryA","features":[333]},{"name":"GetSystemWindowsDirectoryW","features":[333]},{"name":"GetSystemWow64Directory2A","features":[333]},{"name":"GetSystemWow64Directory2W","features":[333]},{"name":"GetSystemWow64DirectoryA","features":[333]},{"name":"GetSystemWow64DirectoryW","features":[333]},{"name":"GetTickCount","features":[333]},{"name":"GetTickCount64","features":[333]},{"name":"GetVersion","features":[333]},{"name":"GetVersionExA","features":[303,333]},{"name":"GetVersionExW","features":[303,333]},{"name":"GetWindowsDirectoryA","features":[333]},{"name":"GetWindowsDirectoryW","features":[333]},{"name":"GlobalDataIdConsoleSharedDataFlags","features":[333]},{"name":"GlobalDataIdCyclesPerYield","features":[333]},{"name":"GlobalDataIdImageNumberHigh","features":[333]},{"name":"GlobalDataIdImageNumberLow","features":[333]},{"name":"GlobalDataIdInterruptTime","features":[333]},{"name":"GlobalDataIdKdDebuggerEnabled","features":[333]},{"name":"GlobalDataIdLastSystemRITEventTickCount","features":[333]},{"name":"GlobalDataIdNtMajorVersion","features":[333]},{"name":"GlobalDataIdNtMinorVersion","features":[333]},{"name":"GlobalDataIdNtSystemRootDrive","features":[333]},{"name":"GlobalDataIdQpcBias","features":[333]},{"name":"GlobalDataIdQpcBypassEnabled","features":[333]},{"name":"GlobalDataIdQpcData","features":[333]},{"name":"GlobalDataIdQpcShift","features":[333]},{"name":"GlobalDataIdRngSeedVersion","features":[333]},{"name":"GlobalDataIdSafeBootMode","features":[333]},{"name":"GlobalDataIdSystemExpirationDate","features":[333]},{"name":"GlobalDataIdTimeZoneBias","features":[333]},{"name":"GlobalDataIdTimeZoneId","features":[333]},{"name":"GlobalDataIdUnknown","features":[333]},{"name":"GlobalMemoryStatus","features":[333]},{"name":"GlobalMemoryStatusEx","features":[303,333]},{"name":"IMAGE_FILE_MACHINE","features":[333]},{"name":"IMAGE_FILE_MACHINE_ALPHA","features":[333]},{"name":"IMAGE_FILE_MACHINE_ALPHA64","features":[333]},{"name":"IMAGE_FILE_MACHINE_AM33","features":[333]},{"name":"IMAGE_FILE_MACHINE_AMD64","features":[333]},{"name":"IMAGE_FILE_MACHINE_ARM","features":[333]},{"name":"IMAGE_FILE_MACHINE_ARM64","features":[333]},{"name":"IMAGE_FILE_MACHINE_ARMNT","features":[333]},{"name":"IMAGE_FILE_MACHINE_AXP64","features":[333]},{"name":"IMAGE_FILE_MACHINE_CEE","features":[333]},{"name":"IMAGE_FILE_MACHINE_CEF","features":[333]},{"name":"IMAGE_FILE_MACHINE_EBC","features":[333]},{"name":"IMAGE_FILE_MACHINE_I386","features":[333]},{"name":"IMAGE_FILE_MACHINE_IA64","features":[333]},{"name":"IMAGE_FILE_MACHINE_M32R","features":[333]},{"name":"IMAGE_FILE_MACHINE_MIPS16","features":[333]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU","features":[333]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU16","features":[333]},{"name":"IMAGE_FILE_MACHINE_POWERPC","features":[333]},{"name":"IMAGE_FILE_MACHINE_POWERPCFP","features":[333]},{"name":"IMAGE_FILE_MACHINE_R10000","features":[333]},{"name":"IMAGE_FILE_MACHINE_R3000","features":[333]},{"name":"IMAGE_FILE_MACHINE_R4000","features":[333]},{"name":"IMAGE_FILE_MACHINE_SH3","features":[333]},{"name":"IMAGE_FILE_MACHINE_SH3DSP","features":[333]},{"name":"IMAGE_FILE_MACHINE_SH3E","features":[333]},{"name":"IMAGE_FILE_MACHINE_SH4","features":[333]},{"name":"IMAGE_FILE_MACHINE_SH5","features":[333]},{"name":"IMAGE_FILE_MACHINE_TARGET_HOST","features":[333]},{"name":"IMAGE_FILE_MACHINE_THUMB","features":[333]},{"name":"IMAGE_FILE_MACHINE_TRICORE","features":[333]},{"name":"IMAGE_FILE_MACHINE_UNKNOWN","features":[333]},{"name":"IMAGE_FILE_MACHINE_WCEMIPSV2","features":[333]},{"name":"IsUserCetAvailableInEnvironment","features":[303,333]},{"name":"IsWow64GuestMachineSupported","features":[303,333]},{"name":"LOGICAL_PROCESSOR_RELATIONSHIP","features":[333]},{"name":"MEMORYSTATUS","features":[333]},{"name":"MEMORYSTATUSEX","features":[333]},{"name":"NTDDI_LONGHORN","features":[333]},{"name":"NTDDI_VERSION","features":[333]},{"name":"NTDDI_VISTA","features":[333]},{"name":"NTDDI_VISTASP1","features":[333]},{"name":"NTDDI_VISTASP2","features":[333]},{"name":"NTDDI_VISTASP3","features":[333]},{"name":"NTDDI_VISTASP4","features":[333]},{"name":"NTDDI_WIN10","features":[333]},{"name":"NTDDI_WIN10_19H1","features":[333]},{"name":"NTDDI_WIN10_CO","features":[333]},{"name":"NTDDI_WIN10_FE","features":[333]},{"name":"NTDDI_WIN10_MN","features":[333]},{"name":"NTDDI_WIN10_NI","features":[333]},{"name":"NTDDI_WIN10_RS1","features":[333]},{"name":"NTDDI_WIN10_RS2","features":[333]},{"name":"NTDDI_WIN10_RS3","features":[333]},{"name":"NTDDI_WIN10_RS4","features":[333]},{"name":"NTDDI_WIN10_RS5","features":[333]},{"name":"NTDDI_WIN10_TH2","features":[333]},{"name":"NTDDI_WIN10_VB","features":[333]},{"name":"NTDDI_WIN2K","features":[333]},{"name":"NTDDI_WIN2KSP1","features":[333]},{"name":"NTDDI_WIN2KSP2","features":[333]},{"name":"NTDDI_WIN2KSP3","features":[333]},{"name":"NTDDI_WIN2KSP4","features":[333]},{"name":"NTDDI_WIN4","features":[333]},{"name":"NTDDI_WIN6","features":[333]},{"name":"NTDDI_WIN6SP1","features":[333]},{"name":"NTDDI_WIN6SP2","features":[333]},{"name":"NTDDI_WIN6SP3","features":[333]},{"name":"NTDDI_WIN6SP4","features":[333]},{"name":"NTDDI_WIN7","features":[333]},{"name":"NTDDI_WIN8","features":[333]},{"name":"NTDDI_WINBLUE","features":[333]},{"name":"NTDDI_WINTHRESHOLD","features":[333]},{"name":"NTDDI_WINXP","features":[333]},{"name":"NTDDI_WINXPSP1","features":[333]},{"name":"NTDDI_WINXPSP2","features":[333]},{"name":"NTDDI_WINXPSP3","features":[333]},{"name":"NTDDI_WINXPSP4","features":[333]},{"name":"NTDDI_WS03","features":[333]},{"name":"NTDDI_WS03SP1","features":[333]},{"name":"NTDDI_WS03SP2","features":[333]},{"name":"NTDDI_WS03SP3","features":[333]},{"name":"NTDDI_WS03SP4","features":[333]},{"name":"NTDDI_WS08","features":[333]},{"name":"NTDDI_WS08SP2","features":[333]},{"name":"NTDDI_WS08SP3","features":[333]},{"name":"NTDDI_WS08SP4","features":[333]},{"name":"NUMA_NODE_RELATIONSHIP","features":[333]},{"name":"OSVERSIONINFOA","features":[333]},{"name":"OSVERSIONINFOEXA","features":[333]},{"name":"OSVERSIONINFOEXW","features":[333]},{"name":"OSVERSIONINFOW","features":[333]},{"name":"OSVERSION_MASK","features":[333]},{"name":"OS_DEPLOYEMENT_STATE_VALUES","features":[333]},{"name":"OS_DEPLOYMENT_COMPACT","features":[333]},{"name":"OS_DEPLOYMENT_STANDARD","features":[333]},{"name":"OS_PRODUCT_TYPE","features":[333]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_A","features":[333]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_W","features":[333]},{"name":"PROCESSOR_ARCHITECTURE","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA64","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_AMD64","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_ARM","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_ARM32_ON_WIN64","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_ARM64","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_ARM64","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_WIN64","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_IA64","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_INTEL","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_MIPS","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_MSIL","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_NEUTRAL","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_PPC","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_SHX","features":[333]},{"name":"PROCESSOR_ARCHITECTURE_UNKNOWN","features":[333]},{"name":"PROCESSOR_CACHE_TYPE","features":[333]},{"name":"PROCESSOR_GROUP_INFO","features":[333]},{"name":"PROCESSOR_RELATIONSHIP","features":[333]},{"name":"PRODUCT_BUSINESS","features":[333]},{"name":"PRODUCT_BUSINESS_N","features":[333]},{"name":"PRODUCT_CLUSTER_SERVER","features":[333]},{"name":"PRODUCT_CLUSTER_SERVER_V","features":[333]},{"name":"PRODUCT_CORE","features":[333]},{"name":"PRODUCT_CORE_COUNTRYSPECIFIC","features":[333]},{"name":"PRODUCT_CORE_N","features":[333]},{"name":"PRODUCT_CORE_SINGLELANGUAGE","features":[333]},{"name":"PRODUCT_DATACENTER_A_SERVER_CORE","features":[333]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER","features":[333]},{"name":"PRODUCT_DATACENTER_SERVER","features":[333]},{"name":"PRODUCT_DATACENTER_SERVER_CORE","features":[333]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_V","features":[333]},{"name":"PRODUCT_DATACENTER_SERVER_V","features":[333]},{"name":"PRODUCT_EDUCATION","features":[333]},{"name":"PRODUCT_EDUCATION_N","features":[333]},{"name":"PRODUCT_ENTERPRISE","features":[333]},{"name":"PRODUCT_ENTERPRISE_E","features":[333]},{"name":"PRODUCT_ENTERPRISE_EVALUATION","features":[333]},{"name":"PRODUCT_ENTERPRISE_N","features":[333]},{"name":"PRODUCT_ENTERPRISE_N_EVALUATION","features":[333]},{"name":"PRODUCT_ENTERPRISE_S","features":[333]},{"name":"PRODUCT_ENTERPRISE_SERVER","features":[333]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE","features":[333]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE_V","features":[333]},{"name":"PRODUCT_ENTERPRISE_SERVER_IA64","features":[333]},{"name":"PRODUCT_ENTERPRISE_SERVER_V","features":[333]},{"name":"PRODUCT_ENTERPRISE_S_EVALUATION","features":[333]},{"name":"PRODUCT_ENTERPRISE_S_N","features":[333]},{"name":"PRODUCT_ENTERPRISE_S_N_EVALUATION","features":[333]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDL","features":[333]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDLSVC","features":[333]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMT","features":[333]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMTSVC","features":[333]},{"name":"PRODUCT_HOME_BASIC","features":[333]},{"name":"PRODUCT_HOME_BASIC_E","features":[333]},{"name":"PRODUCT_HOME_BASIC_N","features":[333]},{"name":"PRODUCT_HOME_PREMIUM","features":[333]},{"name":"PRODUCT_HOME_PREMIUM_E","features":[333]},{"name":"PRODUCT_HOME_PREMIUM_N","features":[333]},{"name":"PRODUCT_HOME_PREMIUM_SERVER","features":[333]},{"name":"PRODUCT_HOME_SERVER","features":[333]},{"name":"PRODUCT_HYPERV","features":[333]},{"name":"PRODUCT_IOTUAP","features":[333]},{"name":"PRODUCT_IOTUAPCOMMERCIAL","features":[333]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MANAGEMENT","features":[333]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING","features":[333]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_SECURITY","features":[333]},{"name":"PRODUCT_MOBILE_CORE","features":[333]},{"name":"PRODUCT_MOBILE_ENTERPRISE","features":[333]},{"name":"PRODUCT_MULTIPOINT_PREMIUM_SERVER","features":[333]},{"name":"PRODUCT_MULTIPOINT_STANDARD_SERVER","features":[333]},{"name":"PRODUCT_PROFESSIONAL","features":[333]},{"name":"PRODUCT_PROFESSIONAL_E","features":[333]},{"name":"PRODUCT_PROFESSIONAL_N","features":[333]},{"name":"PRODUCT_PROFESSIONAL_WMC","features":[333]},{"name":"PRODUCT_PRO_WORKSTATION","features":[333]},{"name":"PRODUCT_PRO_WORKSTATION_N","features":[333]},{"name":"PRODUCT_SB_SOLUTION_SERVER","features":[333]},{"name":"PRODUCT_SB_SOLUTION_SERVER_EM","features":[333]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS","features":[333]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS_EM","features":[333]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS","features":[333]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS_V","features":[333]},{"name":"PRODUCT_SERVER_FOUNDATION","features":[333]},{"name":"PRODUCT_SMALLBUSINESS_SERVER","features":[333]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM","features":[333]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM_CORE","features":[333]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER","features":[333]},{"name":"PRODUCT_STANDARD_A_SERVER_CORE","features":[333]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER","features":[333]},{"name":"PRODUCT_STANDARD_SERVER","features":[333]},{"name":"PRODUCT_STANDARD_SERVER_CORE_","features":[333]},{"name":"PRODUCT_STANDARD_SERVER_CORE_V","features":[333]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS","features":[333]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS_CORE","features":[333]},{"name":"PRODUCT_STANDARD_SERVER_V","features":[333]},{"name":"PRODUCT_STARTER","features":[333]},{"name":"PRODUCT_STARTER_E","features":[333]},{"name":"PRODUCT_STARTER_N","features":[333]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER","features":[333]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER_CORE","features":[333]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER","features":[333]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER_CORE","features":[333]},{"name":"PRODUCT_STORAGE_STANDARD_EVALUATION_SERVER","features":[333]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER","features":[333]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER_CORE","features":[333]},{"name":"PRODUCT_STORAGE_WORKGROUP_EVALUATION_SERVER","features":[333]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER","features":[333]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER_CORE","features":[333]},{"name":"PRODUCT_ULTIMATE","features":[333]},{"name":"PRODUCT_ULTIMATE_E","features":[333]},{"name":"PRODUCT_ULTIMATE_N","features":[333]},{"name":"PRODUCT_UNDEFINED","features":[333]},{"name":"PRODUCT_WEB_SERVER","features":[333]},{"name":"PRODUCT_WEB_SERVER_CORE","features":[333]},{"name":"RSMB","features":[333]},{"name":"RTL_SYSTEM_GLOBAL_DATA_ID","features":[333]},{"name":"RelationAll","features":[333]},{"name":"RelationCache","features":[333]},{"name":"RelationGroup","features":[333]},{"name":"RelationNumaNode","features":[333]},{"name":"RelationNumaNodeEx","features":[333]},{"name":"RelationProcessorCore","features":[333]},{"name":"RelationProcessorDie","features":[333]},{"name":"RelationProcessorModule","features":[333]},{"name":"RelationProcessorPackage","features":[333]},{"name":"RtlConvertDeviceFamilyInfoToString","features":[333]},{"name":"RtlGetDeviceFamilyInfoEnum","features":[333]},{"name":"RtlGetProductInfo","features":[303,333]},{"name":"RtlGetSystemGlobalData","features":[333]},{"name":"RtlOsDeploymentState","features":[333]},{"name":"RtlSwitchedVVI","features":[333]},{"name":"SCEX2_ALT_NETBIOS_NAME","features":[333]},{"name":"SPVERSION_MASK","features":[333]},{"name":"SUBVERSION_MASK","features":[333]},{"name":"SYSTEM_CPU_SET_INFORMATION","features":[333]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED","features":[333]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED_TO_TARGET_PROCESS","features":[333]},{"name":"SYSTEM_CPU_SET_INFORMATION_PARKED","features":[333]},{"name":"SYSTEM_CPU_SET_INFORMATION_REALTIME","features":[333]},{"name":"SYSTEM_INFO","features":[333]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION","features":[333]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX","features":[333]},{"name":"SYSTEM_POOL_ZEROING_INFORMATION","features":[303,333]},{"name":"SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION","features":[333]},{"name":"SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION","features":[333]},{"name":"SetComputerNameA","features":[303,333]},{"name":"SetComputerNameEx2W","features":[303,333]},{"name":"SetComputerNameExA","features":[303,333]},{"name":"SetComputerNameExW","features":[303,333]},{"name":"SetComputerNameW","features":[303,333]},{"name":"SetLocalTime","features":[303,333]},{"name":"SetSystemTime","features":[303,333]},{"name":"SetSystemTimeAdjustment","features":[303,333]},{"name":"SetSystemTimeAdjustmentPrecise","features":[303,333]},{"name":"USER_CET_ENVIRONMENT","features":[333]},{"name":"USER_CET_ENVIRONMENT_SGX2_ENCLAVE","features":[333]},{"name":"USER_CET_ENVIRONMENT_VBS_BASIC_ENCLAVE","features":[333]},{"name":"USER_CET_ENVIRONMENT_VBS_ENCLAVE","features":[333]},{"name":"USER_CET_ENVIRONMENT_WIN32_PROCESS","features":[333]},{"name":"VER_BUILDNUMBER","features":[333]},{"name":"VER_FLAGS","features":[333]},{"name":"VER_MAJORVERSION","features":[333]},{"name":"VER_MINORVERSION","features":[333]},{"name":"VER_PLATFORMID","features":[333]},{"name":"VER_PRODUCT_TYPE","features":[333]},{"name":"VER_SERVICEPACKMAJOR","features":[333]},{"name":"VER_SERVICEPACKMINOR","features":[333]},{"name":"VER_SUITENAME","features":[333]},{"name":"VerSetConditionMask","features":[333]},{"name":"VerifyVersionInfoA","features":[303,333]},{"name":"VerifyVersionInfoW","features":[303,333]},{"name":"WDK_NTDDI_VERSION","features":[333]},{"name":"_WIN32_IE_IE100","features":[333]},{"name":"_WIN32_IE_IE110","features":[333]},{"name":"_WIN32_IE_IE20","features":[333]},{"name":"_WIN32_IE_IE30","features":[333]},{"name":"_WIN32_IE_IE302","features":[333]},{"name":"_WIN32_IE_IE40","features":[333]},{"name":"_WIN32_IE_IE401","features":[333]},{"name":"_WIN32_IE_IE50","features":[333]},{"name":"_WIN32_IE_IE501","features":[333]},{"name":"_WIN32_IE_IE55","features":[333]},{"name":"_WIN32_IE_IE60","features":[333]},{"name":"_WIN32_IE_IE60SP1","features":[333]},{"name":"_WIN32_IE_IE60SP2","features":[333]},{"name":"_WIN32_IE_IE70","features":[333]},{"name":"_WIN32_IE_IE80","features":[333]},{"name":"_WIN32_IE_IE90","features":[333]},{"name":"_WIN32_IE_LONGHORN","features":[333]},{"name":"_WIN32_IE_NT4","features":[333]},{"name":"_WIN32_IE_NT4SP1","features":[333]},{"name":"_WIN32_IE_NT4SP2","features":[333]},{"name":"_WIN32_IE_NT4SP3","features":[333]},{"name":"_WIN32_IE_NT4SP4","features":[333]},{"name":"_WIN32_IE_NT4SP5","features":[333]},{"name":"_WIN32_IE_NT4SP6","features":[333]},{"name":"_WIN32_IE_WIN10","features":[333]},{"name":"_WIN32_IE_WIN2K","features":[333]},{"name":"_WIN32_IE_WIN2KSP1","features":[333]},{"name":"_WIN32_IE_WIN2KSP2","features":[333]},{"name":"_WIN32_IE_WIN2KSP3","features":[333]},{"name":"_WIN32_IE_WIN2KSP4","features":[333]},{"name":"_WIN32_IE_WIN6","features":[333]},{"name":"_WIN32_IE_WIN7","features":[333]},{"name":"_WIN32_IE_WIN8","features":[333]},{"name":"_WIN32_IE_WIN98","features":[333]},{"name":"_WIN32_IE_WIN98SE","features":[333]},{"name":"_WIN32_IE_WINBLUE","features":[333]},{"name":"_WIN32_IE_WINME","features":[333]},{"name":"_WIN32_IE_WINTHRESHOLD","features":[333]},{"name":"_WIN32_IE_WS03","features":[333]},{"name":"_WIN32_IE_WS03SP1","features":[333]},{"name":"_WIN32_IE_XP","features":[333]},{"name":"_WIN32_IE_XPSP1","features":[333]},{"name":"_WIN32_IE_XPSP2","features":[333]},{"name":"_WIN32_WINNT_LONGHORN","features":[333]},{"name":"_WIN32_WINNT_NT4","features":[333]},{"name":"_WIN32_WINNT_VISTA","features":[333]},{"name":"_WIN32_WINNT_WIN10","features":[333]},{"name":"_WIN32_WINNT_WIN2K","features":[333]},{"name":"_WIN32_WINNT_WIN6","features":[333]},{"name":"_WIN32_WINNT_WIN7","features":[333]},{"name":"_WIN32_WINNT_WIN8","features":[333]},{"name":"_WIN32_WINNT_WINBLUE","features":[333]},{"name":"_WIN32_WINNT_WINTHRESHOLD","features":[333]},{"name":"_WIN32_WINNT_WINXP","features":[333]},{"name":"_WIN32_WINNT_WS03","features":[333]},{"name":"_WIN32_WINNT_WS08","features":[333]}],"614":[{"name":"ACCESS_ALLOWED_ACE_TYPE","features":[337]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE_TYPE","features":[337]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE_TYPE","features":[337]},{"name":"ACCESS_ALLOWED_COMPOUND_ACE_TYPE","features":[337]},{"name":"ACCESS_ALLOWED_OBJECT_ACE_TYPE","features":[337]},{"name":"ACCESS_DENIED_ACE_TYPE","features":[337]},{"name":"ACCESS_DENIED_CALLBACK_ACE_TYPE","features":[337]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE_TYPE","features":[337]},{"name":"ACCESS_DENIED_OBJECT_ACE_TYPE","features":[337]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_A","features":[337]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_W","features":[337]},{"name":"ACCESS_DS_SOURCE_A","features":[337]},{"name":"ACCESS_DS_SOURCE_W","features":[337]},{"name":"ACCESS_FILTER_SECURITY_INFORMATION","features":[337]},{"name":"ACCESS_MAX_LEVEL","features":[337]},{"name":"ACCESS_MAX_MS_ACE_TYPE","features":[337]},{"name":"ACCESS_MAX_MS_OBJECT_ACE_TYPE","features":[337]},{"name":"ACCESS_MAX_MS_V2_ACE_TYPE","features":[337]},{"name":"ACCESS_MAX_MS_V3_ACE_TYPE","features":[337]},{"name":"ACCESS_MAX_MS_V4_ACE_TYPE","features":[337]},{"name":"ACCESS_MAX_MS_V5_ACE_TYPE","features":[337]},{"name":"ACCESS_MIN_MS_ACE_TYPE","features":[337]},{"name":"ACCESS_MIN_MS_OBJECT_ACE_TYPE","features":[337]},{"name":"ACCESS_OBJECT_GUID","features":[337]},{"name":"ACCESS_PROPERTY_GUID","features":[337]},{"name":"ACCESS_PROPERTY_SET_GUID","features":[337]},{"name":"ACCESS_REASON_DATA_MASK","features":[337]},{"name":"ACCESS_REASON_EXDATA_MASK","features":[337]},{"name":"ACCESS_REASON_STAGING_MASK","features":[337]},{"name":"ACCESS_REASON_TYPE","features":[337]},{"name":"ACCESS_REASON_TYPE_MASK","features":[337]},{"name":"ACCESS_SYSTEM_SECURITY","features":[337]},{"name":"ACL_REVISION1","features":[337]},{"name":"ACL_REVISION2","features":[337]},{"name":"ACL_REVISION3","features":[337]},{"name":"ACL_REVISION4","features":[337]},{"name":"ACPI_PPM_HARDWARE_ALL","features":[337]},{"name":"ACPI_PPM_SOFTWARE_ALL","features":[337]},{"name":"ACPI_PPM_SOFTWARE_ANY","features":[337]},{"name":"ACTIVATION_CONTEXT_INFO_CLASS","features":[337]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF","features":[337]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_NONE","features":[337]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_URL","features":[337]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_APPLICATION_SETTINGS","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_COMPATIBILITY_INFO","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION","features":[337]},{"name":"ACTIVATION_CONTEXT_SECTION_WINRT_ACTIVATABLE_CLASSES","features":[337]},{"name":"ALERT_SYSTEM_CRITICAL","features":[337]},{"name":"ALERT_SYSTEM_ERROR","features":[337]},{"name":"ALERT_SYSTEM_INFORMATIONAL","features":[337]},{"name":"ALERT_SYSTEM_QUERY","features":[337]},{"name":"ALERT_SYSTEM_SEV","features":[337]},{"name":"ALERT_SYSTEM_WARNING","features":[337]},{"name":"ALL_POWERSCHEMES_GUID","features":[337]},{"name":"ANON_OBJECT_HEADER","features":[337]},{"name":"ANON_OBJECT_HEADER_BIGOBJ","features":[337]},{"name":"ANON_OBJECT_HEADER_V2","features":[337]},{"name":"ANYSIZE_ARRAY","features":[337]},{"name":"APPCOMMAND_BASS_BOOST","features":[337]},{"name":"APPCOMMAND_BASS_DOWN","features":[337]},{"name":"APPCOMMAND_BASS_UP","features":[337]},{"name":"APPCOMMAND_BROWSER_BACKWARD","features":[337]},{"name":"APPCOMMAND_BROWSER_FAVORITES","features":[337]},{"name":"APPCOMMAND_BROWSER_FORWARD","features":[337]},{"name":"APPCOMMAND_BROWSER_HOME","features":[337]},{"name":"APPCOMMAND_BROWSER_REFRESH","features":[337]},{"name":"APPCOMMAND_BROWSER_SEARCH","features":[337]},{"name":"APPCOMMAND_BROWSER_STOP","features":[337]},{"name":"APPCOMMAND_CLOSE","features":[337]},{"name":"APPCOMMAND_COPY","features":[337]},{"name":"APPCOMMAND_CORRECTION_LIST","features":[337]},{"name":"APPCOMMAND_CUT","features":[337]},{"name":"APPCOMMAND_DELETE","features":[337]},{"name":"APPCOMMAND_DICTATE_OR_COMMAND_CONTROL_TOGGLE","features":[337]},{"name":"APPCOMMAND_DWM_FLIP3D","features":[337]},{"name":"APPCOMMAND_FIND","features":[337]},{"name":"APPCOMMAND_FORWARD_MAIL","features":[337]},{"name":"APPCOMMAND_HELP","features":[337]},{"name":"APPCOMMAND_ID","features":[337]},{"name":"APPCOMMAND_LAUNCH_APP1","features":[337]},{"name":"APPCOMMAND_LAUNCH_APP2","features":[337]},{"name":"APPCOMMAND_LAUNCH_MAIL","features":[337]},{"name":"APPCOMMAND_LAUNCH_MEDIA_SELECT","features":[337]},{"name":"APPCOMMAND_MEDIA_CHANNEL_DOWN","features":[337]},{"name":"APPCOMMAND_MEDIA_CHANNEL_UP","features":[337]},{"name":"APPCOMMAND_MEDIA_FAST_FORWARD","features":[337]},{"name":"APPCOMMAND_MEDIA_NEXTTRACK","features":[337]},{"name":"APPCOMMAND_MEDIA_PAUSE","features":[337]},{"name":"APPCOMMAND_MEDIA_PLAY","features":[337]},{"name":"APPCOMMAND_MEDIA_PLAY_PAUSE","features":[337]},{"name":"APPCOMMAND_MEDIA_PREVIOUSTRACK","features":[337]},{"name":"APPCOMMAND_MEDIA_RECORD","features":[337]},{"name":"APPCOMMAND_MEDIA_REWIND","features":[337]},{"name":"APPCOMMAND_MEDIA_STOP","features":[337]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_DOWN","features":[337]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_MUTE","features":[337]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_UP","features":[337]},{"name":"APPCOMMAND_MIC_ON_OFF_TOGGLE","features":[337]},{"name":"APPCOMMAND_NEW","features":[337]},{"name":"APPCOMMAND_OPEN","features":[337]},{"name":"APPCOMMAND_PASTE","features":[337]},{"name":"APPCOMMAND_PRINT","features":[337]},{"name":"APPCOMMAND_REDO","features":[337]},{"name":"APPCOMMAND_REPLY_TO_MAIL","features":[337]},{"name":"APPCOMMAND_SAVE","features":[337]},{"name":"APPCOMMAND_SEND_MAIL","features":[337]},{"name":"APPCOMMAND_SPELL_CHECK","features":[337]},{"name":"APPCOMMAND_TREBLE_DOWN","features":[337]},{"name":"APPCOMMAND_TREBLE_UP","features":[337]},{"name":"APPCOMMAND_UNDO","features":[337]},{"name":"APPCOMMAND_VOLUME_DOWN","features":[337]},{"name":"APPCOMMAND_VOLUME_MUTE","features":[337]},{"name":"APPCOMMAND_VOLUME_UP","features":[337]},{"name":"APPLICATIONLAUNCH_SETTING_VALUE","features":[337]},{"name":"APPLICATION_ERROR_MASK","features":[337]},{"name":"ARM64_FNPDATA_CR","features":[337]},{"name":"ARM64_FNPDATA_FLAGS","features":[337]},{"name":"ARM64_MAX_BREAKPOINTS","features":[337]},{"name":"ARM64_MAX_WATCHPOINTS","features":[337]},{"name":"ARM64_MULT_INTRINSICS_SUPPORTED","features":[337]},{"name":"ARM64_PREFETCH_KEEP","features":[337]},{"name":"ARM64_PREFETCH_L1","features":[337]},{"name":"ARM64_PREFETCH_L2","features":[337]},{"name":"ARM64_PREFETCH_L3","features":[337]},{"name":"ARM64_PREFETCH_PLD","features":[337]},{"name":"ARM64_PREFETCH_PLI","features":[337]},{"name":"ARM64_PREFETCH_PST","features":[337]},{"name":"ARM64_PREFETCH_STRM","features":[337]},{"name":"ARM_CACHE_ALIGNMENT_SIZE","features":[337]},{"name":"ARM_MAX_BREAKPOINTS","features":[337]},{"name":"ARM_MAX_WATCHPOINTS","features":[337]},{"name":"ASSERT_BREAKPOINT","features":[337]},{"name":"ATF_FLAGS","features":[337]},{"name":"ATF_ONOFFFEEDBACK","features":[337]},{"name":"ATF_TIMEOUTON","features":[337]},{"name":"AUDIT_ALLOW_NO_PRIVILEGE","features":[337]},{"name":"AccessReasonAllowedAce","features":[337]},{"name":"AccessReasonAllowedParentAce","features":[337]},{"name":"AccessReasonDeniedAce","features":[337]},{"name":"AccessReasonDeniedParentAce","features":[337]},{"name":"AccessReasonEmptyDacl","features":[337]},{"name":"AccessReasonFilterAce","features":[337]},{"name":"AccessReasonFromPrivilege","features":[337]},{"name":"AccessReasonIntegrityLevel","features":[337]},{"name":"AccessReasonMissingPrivilege","features":[337]},{"name":"AccessReasonNoGrant","features":[337]},{"name":"AccessReasonNoSD","features":[337]},{"name":"AccessReasonNone","features":[337]},{"name":"AccessReasonNotGrantedByCape","features":[337]},{"name":"AccessReasonNotGrantedByParentCape","features":[337]},{"name":"AccessReasonNotGrantedToAppContainer","features":[337]},{"name":"AccessReasonNullDacl","features":[337]},{"name":"AccessReasonOwnership","features":[337]},{"name":"AccessReasonTrustLabel","features":[337]},{"name":"ActivationContextBasicInformation","features":[337]},{"name":"ActivationContextDetailedInformation","features":[337]},{"name":"ActivationContextManifestResourceName","features":[337]},{"name":"AdapterType","features":[337]},{"name":"AssemblyDetailedInformationInActivationContext","features":[337]},{"name":"AssemblyDetailedInformationInActivationContxt","features":[337]},{"name":"AutoLoad","features":[337]},{"name":"BATTERY_DISCHARGE_FLAGS_ENABLE","features":[337]},{"name":"BATTERY_DISCHARGE_FLAGS_EVENTCODE_MASK","features":[337]},{"name":"BREAK_DEBUG_BASE","features":[337]},{"name":"BootLoad","features":[337]},{"name":"CACHE_FULLY_ASSOCIATIVE","features":[337]},{"name":"CFE_UNDERLINE","features":[337]},{"name":"CFG_CALL_TARGET_CONVERT_EXPORT_SUPPRESSED_TO_VALID","features":[337]},{"name":"CFG_CALL_TARGET_CONVERT_XFG_TO_CFG","features":[337]},{"name":"CFG_CALL_TARGET_PROCESSED","features":[337]},{"name":"CFG_CALL_TARGET_VALID","features":[337]},{"name":"CFG_CALL_TARGET_VALID_XFG","features":[337]},{"name":"CFU_CF1UNDERLINE","features":[337]},{"name":"CFU_INVERT","features":[337]},{"name":"CFU_UNDERLINE","features":[337]},{"name":"CFU_UNDERLINEDASH","features":[337]},{"name":"CFU_UNDERLINEDASHDOT","features":[337]},{"name":"CFU_UNDERLINEDASHDOTDOT","features":[337]},{"name":"CFU_UNDERLINEDOTTED","features":[337]},{"name":"CFU_UNDERLINEDOUBLE","features":[337]},{"name":"CFU_UNDERLINEDOUBLEWAVE","features":[337]},{"name":"CFU_UNDERLINEHAIRLINE","features":[337]},{"name":"CFU_UNDERLINEHEAVYWAVE","features":[337]},{"name":"CFU_UNDERLINELONGDASH","features":[337]},{"name":"CFU_UNDERLINENONE","features":[337]},{"name":"CFU_UNDERLINETHICK","features":[337]},{"name":"CFU_UNDERLINETHICKDASH","features":[337]},{"name":"CFU_UNDERLINETHICKDASHDOT","features":[337]},{"name":"CFU_UNDERLINETHICKDASHDOTDOT","features":[337]},{"name":"CFU_UNDERLINETHICKDOTTED","features":[337]},{"name":"CFU_UNDERLINETHICKLONGDASH","features":[337]},{"name":"CFU_UNDERLINEWAVE","features":[337]},{"name":"CFU_UNDERLINEWORD","features":[337]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[337]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[337]},{"name":"CLAIM_SECURITY_ATTRIBUTE_CUSTOM_FLAGS","features":[337]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[337]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_NETWORK_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_RAM_DISK_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_SD_DISK_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_USB3_DISK_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_USB_DISK_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_VERIFIER_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD","features":[337]},{"name":"CM_SERVICE_WINPE_BOOT_LOAD","features":[337]},{"name":"COMIMAGE_FLAGS_32BITPREFERRED","features":[337]},{"name":"COMIMAGE_FLAGS_32BITREQUIRED","features":[337]},{"name":"COMIMAGE_FLAGS_ILONLY","features":[337]},{"name":"COMIMAGE_FLAGS_IL_LIBRARY","features":[337]},{"name":"COMIMAGE_FLAGS_NATIVE_ENTRYPOINT","features":[337]},{"name":"COMIMAGE_FLAGS_STRONGNAMESIGNED","features":[337]},{"name":"COMIMAGE_FLAGS_TRACKDEBUGDATA","features":[337]},{"name":"COMPONENT_FILTER","features":[337]},{"name":"COMPONENT_KTM","features":[337]},{"name":"COMPONENT_VALID_FLAGS","features":[337]},{"name":"COMPRESSION_ENGINE_HIBER","features":[337]},{"name":"COMPRESSION_ENGINE_MAXIMUM","features":[337]},{"name":"COMPRESSION_ENGINE_STANDARD","features":[337]},{"name":"CORE_PARKING_POLICY_CHANGE_IDEAL","features":[337]},{"name":"CORE_PARKING_POLICY_CHANGE_MAX","features":[337]},{"name":"CORE_PARKING_POLICY_CHANGE_MULTISTEP","features":[337]},{"name":"CORE_PARKING_POLICY_CHANGE_ROCKET","features":[337]},{"name":"CORE_PARKING_POLICY_CHANGE_SINGLE","features":[337]},{"name":"COR_DELETED_NAME_LENGTH","features":[337]},{"name":"COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE","features":[337]},{"name":"COR_VERSION_MAJOR","features":[337]},{"name":"COR_VERSION_MAJOR_V2","features":[337]},{"name":"COR_VERSION_MINOR","features":[337]},{"name":"COR_VTABLEGAP_NAME_LENGTH","features":[337]},{"name":"COR_VTABLE_32BIT","features":[337]},{"name":"COR_VTABLE_64BIT","features":[337]},{"name":"COR_VTABLE_CALL_MOST_DERIVED","features":[337]},{"name":"COR_VTABLE_FROM_UNMANAGED","features":[337]},{"name":"COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN","features":[337]},{"name":"CREATE_BOUNDARY_DESCRIPTOR_ADD_APPCONTAINER_SID","features":[337]},{"name":"CRITICAL_ACE_FLAG","features":[337]},{"name":"CTMF_INCLUDE_APPCONTAINER","features":[337]},{"name":"CTMF_INCLUDE_LPAC","features":[337]},{"name":"CompatibilityInformationInActivationContext","features":[337]},{"name":"CriticalError","features":[337]},{"name":"DECIMAL_NEG","features":[337]},{"name":"DEDICATED_MEMORY_CACHE_ELIGIBLE","features":[337]},{"name":"DEVICEFAMILYDEVICEFORM_KEY","features":[337]},{"name":"DEVICEFAMILYDEVICEFORM_VALUE","features":[337]},{"name":"DIAGNOSTIC_REASON_DETAILED_STRING","features":[337]},{"name":"DIAGNOSTIC_REASON_NOT_SPECIFIED","features":[337]},{"name":"DIAGNOSTIC_REASON_SIMPLE_STRING","features":[337]},{"name":"DIAGNOSTIC_REASON_VERSION","features":[337]},{"name":"DISCHARGE_POLICY_CRITICAL","features":[337]},{"name":"DISCHARGE_POLICY_LOW","features":[337]},{"name":"DISPATCHER_CONTEXT_NONVOLREG_ARM64","features":[337]},{"name":"DLL_PROCESS_ATTACH","features":[337]},{"name":"DLL_PROCESS_DETACH","features":[337]},{"name":"DLL_THREAD_ATTACH","features":[337]},{"name":"DLL_THREAD_DETACH","features":[337]},{"name":"DOMAIN_ALIAS_RID_ACCESS_CONTROL_ASSISTANCE_OPS","features":[337]},{"name":"DOMAIN_ALIAS_RID_ACCOUNT_OPS","features":[337]},{"name":"DOMAIN_ALIAS_RID_ADMINS","features":[337]},{"name":"DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS","features":[337]},{"name":"DOMAIN_ALIAS_RID_BACKUP_OPS","features":[337]},{"name":"DOMAIN_ALIAS_RID_CACHEABLE_PRINCIPALS_GROUP","features":[337]},{"name":"DOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP","features":[337]},{"name":"DOMAIN_ALIAS_RID_CRYPTO_OPERATORS","features":[337]},{"name":"DOMAIN_ALIAS_RID_DCOM_USERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_DEFAULT_ACCOUNT","features":[337]},{"name":"DOMAIN_ALIAS_RID_DEVICE_OWNERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP","features":[337]},{"name":"DOMAIN_ALIAS_RID_GUESTS","features":[337]},{"name":"DOMAIN_ALIAS_RID_HYPER_V_ADMINS","features":[337]},{"name":"DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_IUSERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_LOGGING_USERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_MONITORING_USERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS","features":[337]},{"name":"DOMAIN_ALIAS_RID_NON_CACHEABLE_PRINCIPALS_GROUP","features":[337]},{"name":"DOMAIN_ALIAS_RID_POWER_USERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_PREW2KCOMPACCESS","features":[337]},{"name":"DOMAIN_ALIAS_RID_PRINT_OPS","features":[337]},{"name":"DOMAIN_ALIAS_RID_RAS_SERVERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_RDS_ENDPOINT_SERVERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_RDS_MANAGEMENT_SERVERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_RDS_REMOTE_ACCESS_SERVERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_REMOTE_MANAGEMENT_USERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_REPLICATOR","features":[337]},{"name":"DOMAIN_ALIAS_RID_STORAGE_REPLICA_ADMINS","features":[337]},{"name":"DOMAIN_ALIAS_RID_SYSTEM_OPS","features":[337]},{"name":"DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS","features":[337]},{"name":"DOMAIN_ALIAS_RID_USERS","features":[337]},{"name":"DOMAIN_GROUP_RID_ADMINS","features":[337]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_CONTAINS_CLAIMS","features":[337]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_IS_COMPOUNDED","features":[337]},{"name":"DOMAIN_GROUP_RID_CDC_RESERVED","features":[337]},{"name":"DOMAIN_GROUP_RID_CERT_ADMINS","features":[337]},{"name":"DOMAIN_GROUP_RID_CLONEABLE_CONTROLLERS","features":[337]},{"name":"DOMAIN_GROUP_RID_COMPUTERS","features":[337]},{"name":"DOMAIN_GROUP_RID_CONTROLLERS","features":[337]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_ADMINS","features":[337]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_KEY_ADMINS","features":[337]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_READONLY_DOMAIN_CONTROLLERS","features":[337]},{"name":"DOMAIN_GROUP_RID_GUESTS","features":[337]},{"name":"DOMAIN_GROUP_RID_KEY_ADMINS","features":[337]},{"name":"DOMAIN_GROUP_RID_POLICY_ADMINS","features":[337]},{"name":"DOMAIN_GROUP_RID_PROTECTED_USERS","features":[337]},{"name":"DOMAIN_GROUP_RID_READONLY_CONTROLLERS","features":[337]},{"name":"DOMAIN_GROUP_RID_SCHEMA_ADMINS","features":[337]},{"name":"DOMAIN_GROUP_RID_USERS","features":[337]},{"name":"DOMAIN_USER_RID_ADMIN","features":[337]},{"name":"DOMAIN_USER_RID_DEFAULT_ACCOUNT","features":[337]},{"name":"DOMAIN_USER_RID_GUEST","features":[337]},{"name":"DOMAIN_USER_RID_KRBTGT","features":[337]},{"name":"DOMAIN_USER_RID_MAX","features":[337]},{"name":"DOMAIN_USER_RID_WDAG_ACCOUNT","features":[337]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_ADD","features":[337]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_PROCESSED","features":[337]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_ADD","features":[337]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_PROCESSED","features":[337]},{"name":"DemandLoad","features":[337]},{"name":"DisableLoad","features":[337]},{"name":"DriverType","features":[337]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_IC_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_IC_VAL_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41a_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41a_VAL_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41b_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41b_VAL_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41c_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM41c_VAL_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM5C_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM5C_VAL_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM7B_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM7B_VAL_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM9D_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_IMM9D_VAL_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_POS_X","features":[337]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_X","features":[337]},{"name":"EMARCH_ENC_I17_SIGN_SIZE_X","features":[337]},{"name":"EMARCH_ENC_I17_SIGN_VAL_POS_X","features":[337]},{"name":"ENCLAVE_LONG_ID_LENGTH","features":[337]},{"name":"ENCLAVE_SHORT_ID_LENGTH","features":[337]},{"name":"ENCLAVE_TYPE_SGX","features":[337]},{"name":"ENCLAVE_TYPE_SGX2","features":[337]},{"name":"ENCLAVE_TYPE_VBS","features":[337]},{"name":"ENCLAVE_TYPE_VBS_BASIC","features":[337]},{"name":"ENCLAVE_VBS_FLAG_DEBUG","features":[337]},{"name":"ENLISTMENT_BASIC_INFORMATION","features":[337]},{"name":"ENLISTMENT_CRM_INFORMATION","features":[337]},{"name":"ENLISTMENT_INFORMATION_CLASS","features":[337]},{"name":"ENLISTMENT_QUERY_INFORMATION","features":[337]},{"name":"ENLISTMENT_RECOVER","features":[337]},{"name":"ENLISTMENT_SET_INFORMATION","features":[337]},{"name":"ENLISTMENT_SUBORDINATE_RIGHTS","features":[337]},{"name":"ENLISTMENT_SUPERIOR_RIGHTS","features":[337]},{"name":"ERROR_SEVERITY_ERROR","features":[337]},{"name":"ERROR_SEVERITY_INFORMATIONAL","features":[337]},{"name":"ERROR_SEVERITY_SUCCESS","features":[337]},{"name":"ERROR_SEVERITY_WARNING","features":[337]},{"name":"EVENTLOG_BACKWARDS_READ","features":[337]},{"name":"EVENTLOG_END_ALL_PAIRED_EVENTS","features":[337]},{"name":"EVENTLOG_END_PAIRED_EVENT","features":[337]},{"name":"EVENTLOG_FORWARDS_READ","features":[337]},{"name":"EVENTLOG_PAIRED_EVENT_ACTIVE","features":[337]},{"name":"EVENTLOG_PAIRED_EVENT_INACTIVE","features":[337]},{"name":"EVENTLOG_START_PAIRED_EVENT","features":[337]},{"name":"EXCEPTION_COLLIDED_UNWIND","features":[337]},{"name":"EXCEPTION_EXECUTE_FAULT","features":[337]},{"name":"EXCEPTION_EXIT_UNWIND","features":[337]},{"name":"EXCEPTION_MAXIMUM_PARAMETERS","features":[337]},{"name":"EXCEPTION_NESTED_CALL","features":[337]},{"name":"EXCEPTION_NONCONTINUABLE","features":[337]},{"name":"EXCEPTION_READ_FAULT","features":[337]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[337]},{"name":"EXCEPTION_STACK_INVALID","features":[337]},{"name":"EXCEPTION_TARGET_UNWIND","features":[337]},{"name":"EXCEPTION_UNWINDING","features":[337]},{"name":"EXCEPTION_WRITE_FAULT","features":[337]},{"name":"EnlistmentBasicInformation","features":[337]},{"name":"EnlistmentCrmInformation","features":[337]},{"name":"EnlistmentRecoveryInformation","features":[337]},{"name":"FAST_FAIL_ADMINLESS_ACCESS_DENIED","features":[337]},{"name":"FAST_FAIL_APCS_DISABLED","features":[337]},{"name":"FAST_FAIL_CAST_GUARD","features":[337]},{"name":"FAST_FAIL_CERTIFICATION_FAILURE","features":[337]},{"name":"FAST_FAIL_CONTROL_INVALID_RETURN_ADDRESS","features":[337]},{"name":"FAST_FAIL_CORRUPT_LIST_ENTRY","features":[337]},{"name":"FAST_FAIL_CRYPTO_LIBRARY","features":[337]},{"name":"FAST_FAIL_DEPRECATED_SERVICE_INVOKED","features":[337]},{"name":"FAST_FAIL_DLOAD_PROTECTION_FAILURE","features":[337]},{"name":"FAST_FAIL_ENCLAVE_CALL_FAILURE","features":[337]},{"name":"FAST_FAIL_ETW_CORRUPTION","features":[337]},{"name":"FAST_FAIL_FATAL_APP_EXIT","features":[337]},{"name":"FAST_FAIL_FLAGS_CORRUPTION","features":[337]},{"name":"FAST_FAIL_GS_COOKIE_INIT","features":[337]},{"name":"FAST_FAIL_GUARD_EXPORT_SUPPRESSION_FAILURE","features":[337]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE","features":[337]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE_XFG","features":[337]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_SUPPRESSED","features":[337]},{"name":"FAST_FAIL_GUARD_JUMPTABLE","features":[337]},{"name":"FAST_FAIL_GUARD_SS_FAILURE","features":[337]},{"name":"FAST_FAIL_GUARD_WRITE_CHECK_FAILURE","features":[337]},{"name":"FAST_FAIL_HEAP_METADATA_CORRUPTION","features":[337]},{"name":"FAST_FAIL_HOST_VISIBILITY_CHANGE","features":[337]},{"name":"FAST_FAIL_INCORRECT_STACK","features":[337]},{"name":"FAST_FAIL_INVALID_ARG","features":[337]},{"name":"FAST_FAIL_INVALID_BALANCED_TREE","features":[337]},{"name":"FAST_FAIL_INVALID_BUFFER_ACCESS","features":[337]},{"name":"FAST_FAIL_INVALID_CALL_IN_DLL_CALLOUT","features":[337]},{"name":"FAST_FAIL_INVALID_CONTROL_STACK","features":[337]},{"name":"FAST_FAIL_INVALID_DISPATCH_CONTEXT","features":[337]},{"name":"FAST_FAIL_INVALID_EXCEPTION_CHAIN","features":[337]},{"name":"FAST_FAIL_INVALID_FAST_FAIL_CODE","features":[337]},{"name":"FAST_FAIL_INVALID_FIBER_SWITCH","features":[337]},{"name":"FAST_FAIL_INVALID_FILE_OPERATION","features":[337]},{"name":"FAST_FAIL_INVALID_FLS_DATA","features":[337]},{"name":"FAST_FAIL_INVALID_IAT","features":[337]},{"name":"FAST_FAIL_INVALID_IDLE_STATE","features":[337]},{"name":"FAST_FAIL_INVALID_IMAGE_BASE","features":[337]},{"name":"FAST_FAIL_INVALID_JUMP_BUFFER","features":[337]},{"name":"FAST_FAIL_INVALID_LOCK_STATE","features":[337]},{"name":"FAST_FAIL_INVALID_LONGJUMP_TARGET","features":[337]},{"name":"FAST_FAIL_INVALID_NEXT_THREAD","features":[337]},{"name":"FAST_FAIL_INVALID_PFN","features":[337]},{"name":"FAST_FAIL_INVALID_REFERENCE_COUNT","features":[337]},{"name":"FAST_FAIL_INVALID_SET_OF_CONTEXT","features":[337]},{"name":"FAST_FAIL_INVALID_SYSCALL_NUMBER","features":[337]},{"name":"FAST_FAIL_INVALID_THREAD","features":[337]},{"name":"FAST_FAIL_KERNEL_CET_SHADOW_STACK_ASSIST","features":[337]},{"name":"FAST_FAIL_LEGACY_GS_VIOLATION","features":[337]},{"name":"FAST_FAIL_LOADER_CONTINUITY_FAILURE","features":[337]},{"name":"FAST_FAIL_LOW_LABEL_ACCESS_DENIED","features":[337]},{"name":"FAST_FAIL_LPAC_ACCESS_DENIED","features":[337]},{"name":"FAST_FAIL_MRDATA_MODIFIED","features":[337]},{"name":"FAST_FAIL_MRDATA_PROTECTION_FAILURE","features":[337]},{"name":"FAST_FAIL_NTDLL_PATCH_FAILED","features":[337]},{"name":"FAST_FAIL_PATCH_CALLBACK_FAILED","features":[337]},{"name":"FAST_FAIL_PAYLOAD_RESTRICTION_VIOLATION","features":[337]},{"name":"FAST_FAIL_RANGE_CHECK_FAILURE","features":[337]},{"name":"FAST_FAIL_RIO_ABORT","features":[337]},{"name":"FAST_FAIL_SET_CONTEXT_DENIED","features":[337]},{"name":"FAST_FAIL_STACK_COOKIE_CHECK_FAILURE","features":[337]},{"name":"FAST_FAIL_UNEXPECTED_CALL","features":[337]},{"name":"FAST_FAIL_UNEXPECTED_HEAP_EXCEPTION","features":[337]},{"name":"FAST_FAIL_UNEXPECTED_HOST_BEHAVIOR","features":[337]},{"name":"FAST_FAIL_UNHANDLED_LSS_EXCEPTON","features":[337]},{"name":"FAST_FAIL_UNSAFE_EXTENSION_CALL","features":[337]},{"name":"FAST_FAIL_UNSAFE_REGISTRY_ACCESS","features":[337]},{"name":"FAST_FAIL_VEH_CORRUPTION","features":[337]},{"name":"FAST_FAIL_VTGUARD_CHECK_FAILURE","features":[337]},{"name":"FILE_ATTRIBUTE_STRICTLY_SEQUENTIAL","features":[337]},{"name":"FILE_CASE_PRESERVED_NAMES","features":[337]},{"name":"FILE_CASE_SENSITIVE_SEARCH","features":[337]},{"name":"FILE_CS_FLAG_CASE_SENSITIVE_DIR","features":[337]},{"name":"FILE_DAX_VOLUME","features":[337]},{"name":"FILE_FILE_COMPRESSION","features":[337]},{"name":"FILE_NAMED_STREAMS","features":[337]},{"name":"FILE_NAME_FLAGS_UNSPECIFIED","features":[337]},{"name":"FILE_NAME_FLAG_BOTH","features":[337]},{"name":"FILE_NAME_FLAG_DOS","features":[337]},{"name":"FILE_NAME_FLAG_HARDLINK","features":[337]},{"name":"FILE_NAME_FLAG_NTFS","features":[337]},{"name":"FILE_NOTIFY_FULL_INFORMATION","features":[337]},{"name":"FILE_PERSISTENT_ACLS","features":[337]},{"name":"FILE_READ_ONLY_VOLUME","features":[337]},{"name":"FILE_RETURNS_CLEANUP_RESULT_INFO","features":[337]},{"name":"FILE_SEQUENTIAL_WRITE_ONCE","features":[337]},{"name":"FILE_SUPPORTS_BLOCK_REFCOUNTING","features":[337]},{"name":"FILE_SUPPORTS_BYPASS_IO","features":[337]},{"name":"FILE_SUPPORTS_CASE_SENSITIVE_DIRS","features":[337]},{"name":"FILE_SUPPORTS_ENCRYPTION","features":[337]},{"name":"FILE_SUPPORTS_EXTENDED_ATTRIBUTES","features":[337]},{"name":"FILE_SUPPORTS_GHOSTING","features":[337]},{"name":"FILE_SUPPORTS_HARD_LINKS","features":[337]},{"name":"FILE_SUPPORTS_INTEGRITY_STREAMS","features":[337]},{"name":"FILE_SUPPORTS_OBJECT_IDS","features":[337]},{"name":"FILE_SUPPORTS_OPEN_BY_FILE_ID","features":[337]},{"name":"FILE_SUPPORTS_POSIX_UNLINK_RENAME","features":[337]},{"name":"FILE_SUPPORTS_REMOTE_STORAGE","features":[337]},{"name":"FILE_SUPPORTS_REPARSE_POINTS","features":[337]},{"name":"FILE_SUPPORTS_SPARSE_FILES","features":[337]},{"name":"FILE_SUPPORTS_SPARSE_VDL","features":[337]},{"name":"FILE_SUPPORTS_STREAM_SNAPSHOTS","features":[337]},{"name":"FILE_SUPPORTS_TRANSACTIONS","features":[337]},{"name":"FILE_SUPPORTS_USN_JOURNAL","features":[337]},{"name":"FILE_UNICODE_ON_DISK","features":[337]},{"name":"FILE_VOLUME_IS_COMPRESSED","features":[337]},{"name":"FILE_VOLUME_QUOTAS","features":[337]},{"name":"FILL_NV_MEMORY_FLAG_FLUSH","features":[337]},{"name":"FILL_NV_MEMORY_FLAG_NON_TEMPORAL","features":[337]},{"name":"FILL_NV_MEMORY_FLAG_NO_DRAIN","features":[337]},{"name":"FLS_MAXIMUM_AVAILABLE","features":[337]},{"name":"FLUSH_FLAGS_FILE_DATA_ONLY","features":[337]},{"name":"FLUSH_FLAGS_FILE_DATA_SYNC_ONLY","features":[337]},{"name":"FLUSH_FLAGS_NO_SYNC","features":[337]},{"name":"FLUSH_NV_MEMORY_IN_FLAG_NO_DRAIN","features":[337]},{"name":"FOREST_USER_RID_MAX","features":[337]},{"name":"FRAME_FPO","features":[337]},{"name":"FRAME_NONFPO","features":[337]},{"name":"FRAME_TRAP","features":[337]},{"name":"FRAME_TSS","features":[337]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContext","features":[337]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContxt","features":[337]},{"name":"FileSystemType","features":[337]},{"name":"GC_ALLGESTURES","features":[337]},{"name":"GC_PAN","features":[337]},{"name":"GC_PAN_WITH_GUTTER","features":[337]},{"name":"GC_PAN_WITH_INERTIA","features":[337]},{"name":"GC_PAN_WITH_SINGLE_FINGER_HORIZONTALLY","features":[337]},{"name":"GC_PAN_WITH_SINGLE_FINGER_VERTICALLY","features":[337]},{"name":"GC_PRESSANDTAP","features":[337]},{"name":"GC_ROLLOVER","features":[337]},{"name":"GC_ROTATE","features":[337]},{"name":"GC_TWOFINGERTAP","features":[337]},{"name":"GC_ZOOM","features":[337]},{"name":"GDI_NONREMOTE","features":[354,337]},{"name":"GESTURECONFIG_FLAGS","features":[337]},{"name":"GUID_ACDC_POWER_SOURCE","features":[337]},{"name":"GUID_ACTIVE_POWERSCHEME","features":[337]},{"name":"GUID_ADAPTIVE_INPUT_CONTROLLER_STATE","features":[337]},{"name":"GUID_ADAPTIVE_POWER_BEHAVIOR_SUBGROUP","features":[337]},{"name":"GUID_ADVANCED_COLOR_QUALITY_BIAS","features":[337]},{"name":"GUID_ALLOW_AWAYMODE","features":[337]},{"name":"GUID_ALLOW_DISPLAY_REQUIRED","features":[337]},{"name":"GUID_ALLOW_RTC_WAKE","features":[337]},{"name":"GUID_ALLOW_STANDBY_STATES","features":[337]},{"name":"GUID_ALLOW_SYSTEM_REQUIRED","features":[337]},{"name":"GUID_APPLAUNCH_BUTTON","features":[337]},{"name":"GUID_BACKGROUND_TASK_NOTIFICATION","features":[337]},{"name":"GUID_BATTERY_COUNT","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_0","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_1","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_2","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_3","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_0","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_1","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_2","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_3","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_0","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_1","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_2","features":[337]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_3","features":[337]},{"name":"GUID_BATTERY_PERCENTAGE_REMAINING","features":[337]},{"name":"GUID_BATTERY_SUBGROUP","features":[337]},{"name":"GUID_CONNECTIVITY_IN_STANDBY","features":[337]},{"name":"GUID_CONSOLE_DISPLAY_STATE","features":[337]},{"name":"GUID_CRITICAL_POWER_TRANSITION","features":[337]},{"name":"GUID_DEEP_SLEEP_ENABLED","features":[337]},{"name":"GUID_DEEP_SLEEP_PLATFORM_STATE","features":[337]},{"name":"GUID_DEVICE_IDLE_POLICY","features":[337]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_BRIGHTNESS","features":[337]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_DIM_BRIGHTNESS","features":[337]},{"name":"GUID_DISCONNECTED_STANDBY_MODE","features":[337]},{"name":"GUID_DISK_ADAPTIVE_POWERDOWN","features":[337]},{"name":"GUID_DISK_BURST_IGNORE_THRESHOLD","features":[337]},{"name":"GUID_DISK_COALESCING_POWERDOWN_TIMEOUT","features":[337]},{"name":"GUID_DISK_IDLE_TIMEOUT","features":[337]},{"name":"GUID_DISK_MAX_POWER","features":[337]},{"name":"GUID_DISK_NVME_NOPPME","features":[337]},{"name":"GUID_DISK_POWERDOWN_TIMEOUT","features":[337]},{"name":"GUID_DISK_SUBGROUP","features":[337]},{"name":"GUID_ENABLE_SWITCH_FORCED_SHUTDOWN","features":[337]},{"name":"GUID_ENERGY_SAVER_BATTERY_THRESHOLD","features":[337]},{"name":"GUID_ENERGY_SAVER_BRIGHTNESS","features":[337]},{"name":"GUID_ENERGY_SAVER_POLICY","features":[337]},{"name":"GUID_ENERGY_SAVER_SUBGROUP","features":[337]},{"name":"GUID_EXECUTION_REQUIRED_REQUEST_TIMEOUT","features":[337]},{"name":"GUID_GLOBAL_USER_PRESENCE","features":[337]},{"name":"GUID_GPU_PREFERENCE_POLICY","features":[337]},{"name":"GUID_GRAPHICS_SUBGROUP","features":[337]},{"name":"GUID_HIBERNATE_FASTS4_POLICY","features":[337]},{"name":"GUID_HIBERNATE_TIMEOUT","features":[337]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DIM_TIMEOUT","features":[337]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DISPLAY_TIMEOUT","features":[337]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DIM_TIMEOUT","features":[337]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DISPLAY_TIMEOUT","features":[337]},{"name":"GUID_IDLE_BACKGROUND_TASK","features":[337]},{"name":"GUID_IDLE_RESILIENCY_PERIOD","features":[337]},{"name":"GUID_IDLE_RESILIENCY_SUBGROUP","features":[337]},{"name":"GUID_INTSTEER_LOAD_PER_PROC_TRIGGER","features":[337]},{"name":"GUID_INTSTEER_MODE","features":[337]},{"name":"GUID_INTSTEER_SUBGROUP","features":[337]},{"name":"GUID_INTSTEER_TIME_UNPARK_TRIGGER","features":[337]},{"name":"GUID_LEGACY_RTC_MITIGATION","features":[337]},{"name":"GUID_LIDCLOSE_ACTION","features":[337]},{"name":"GUID_LIDOPEN_POWERSTATE","features":[337]},{"name":"GUID_LIDSWITCH_STATE_CHANGE","features":[337]},{"name":"GUID_LIDSWITCH_STATE_RELIABILITY","features":[337]},{"name":"GUID_LOCK_CONSOLE_ON_WAKE","features":[337]},{"name":"GUID_MAX_POWER_SAVINGS","features":[337]},{"name":"GUID_MIN_POWER_SAVINGS","features":[337]},{"name":"GUID_MIXED_REALITY_MODE","features":[337]},{"name":"GUID_MONITOR_POWER_ON","features":[337]},{"name":"GUID_NON_ADAPTIVE_INPUT_TIMEOUT","features":[337]},{"name":"GUID_PCIEXPRESS_ASPM_POLICY","features":[337]},{"name":"GUID_PCIEXPRESS_SETTINGS_SUBGROUP","features":[337]},{"name":"GUID_POWERBUTTON_ACTION","features":[337]},{"name":"GUID_POWERSCHEME_PERSONALITY","features":[337]},{"name":"GUID_POWER_SAVING_STATUS","features":[337]},{"name":"GUID_PROCESSOR_ALLOW_THROTTLING","features":[337]},{"name":"GUID_PROCESSOR_CLASS0_FLOOR_PERF","features":[337]},{"name":"GUID_PROCESSOR_CLASS1_INITIAL_PERF","features":[337]},{"name":"GUID_PROCESSOR_COMPLEX_PARKING_POLICY","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_DECREASE_FACTOR","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_WEIGHTING","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_POLICY","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_TIME","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_POLICY","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_TIME","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES_1","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES_1","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_DECREASE_FACTOR","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_WEIGHTING","features":[337]},{"name":"GUID_PROCESSOR_DISTRIBUTE_UTILITY","features":[337]},{"name":"GUID_PROCESSOR_DUTY_CYCLING","features":[337]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT","features":[337]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT_1","features":[337]},{"name":"GUID_PROCESSOR_HETEROGENEOUS_POLICY","features":[337]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD_1","features":[337]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_TIME","features":[337]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD_1","features":[337]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_TIME","features":[337]},{"name":"GUID_PROCESSOR_IDLESTATE_POLICY","features":[337]},{"name":"GUID_PROCESSOR_IDLE_ALLOW_SCALING","features":[337]},{"name":"GUID_PROCESSOR_IDLE_DEMOTE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_IDLE_DISABLE","features":[337]},{"name":"GUID_PROCESSOR_IDLE_PROMOTE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_IDLE_STATE_MAXIMUM","features":[337]},{"name":"GUID_PROCESSOR_IDLE_TIME_CHECK","features":[337]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK","features":[337]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK_1","features":[337]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_MODULE_PARKING_POLICY","features":[337]},{"name":"GUID_PROCESSOR_PARKING_CONCURRENCY_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_PARKING_CORE_OVERRIDE","features":[337]},{"name":"GUID_PROCESSOR_PARKING_DISTRIBUTION_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_PARKING_HEADROOM_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE","features":[337]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE_1","features":[337]},{"name":"GUID_PROCESSOR_PERFSTATE_POLICY","features":[337]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_ACTIVITY_WINDOW","features":[337]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_MODE","features":[337]},{"name":"GUID_PROCESSOR_PERF_BOOST_MODE","features":[337]},{"name":"GUID_PROCESSOR_PERF_BOOST_POLICY","features":[337]},{"name":"GUID_PROCESSOR_PERF_CORE_PARKING_HISTORY","features":[337]},{"name":"GUID_PROCESSOR_PERF_DECREASE_HISTORY","features":[337]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY","features":[337]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME","features":[337]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE","features":[337]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_HISTORY","features":[337]},{"name":"GUID_PROCESSOR_PERF_HISTORY_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_INCREASE_HISTORY","features":[337]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY","features":[337]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME","features":[337]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT","features":[337]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF","features":[337]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF_1","features":[337]},{"name":"GUID_PROCESSOR_PERF_TIME_CHECK","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD_1","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME_1","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD_1","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME_1","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING_1","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR","features":[337]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR_1","features":[337]},{"name":"GUID_PROCESSOR_SETTINGS_SUBGROUP","features":[337]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_SHORT_THREAD_RUNTIME_THRESHOLD","features":[337]},{"name":"GUID_PROCESSOR_SHORT_THREAD_SCHEDULING_POLICY","features":[337]},{"name":"GUID_PROCESSOR_SMT_UNPARKING_POLICY","features":[337]},{"name":"GUID_PROCESSOR_SOFT_PARKING_LATENCY","features":[337]},{"name":"GUID_PROCESSOR_THREAD_SCHEDULING_POLICY","features":[337]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM","features":[337]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM_1","features":[337]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM","features":[337]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM_1","features":[337]},{"name":"GUID_PROCESSOR_THROTTLE_POLICY","features":[337]},{"name":"GUID_SESSION_DISPLAY_STATUS","features":[337]},{"name":"GUID_SESSION_USER_PRESENCE","features":[337]},{"name":"GUID_SLEEPBUTTON_ACTION","features":[337]},{"name":"GUID_SLEEP_IDLE_THRESHOLD","features":[337]},{"name":"GUID_SLEEP_SUBGROUP","features":[337]},{"name":"GUID_SPR_ACTIVE_SESSION_CHANGE","features":[337]},{"name":"GUID_STANDBY_BUDGET_GRACE_PERIOD","features":[337]},{"name":"GUID_STANDBY_BUDGET_PERCENT","features":[337]},{"name":"GUID_STANDBY_RESERVE_GRACE_PERIOD","features":[337]},{"name":"GUID_STANDBY_RESERVE_TIME","features":[337]},{"name":"GUID_STANDBY_RESET_PERCENT","features":[337]},{"name":"GUID_STANDBY_TIMEOUT","features":[337]},{"name":"GUID_SYSTEM_AWAYMODE","features":[337]},{"name":"GUID_SYSTEM_BUTTON_SUBGROUP","features":[337]},{"name":"GUID_SYSTEM_COOLING_POLICY","features":[337]},{"name":"GUID_TYPICAL_POWER_SAVINGS","features":[337]},{"name":"GUID_UNATTEND_SLEEP_TIMEOUT","features":[337]},{"name":"GUID_USERINTERFACEBUTTON_ACTION","features":[337]},{"name":"GUID_USER_PRESENCE_PREDICTION","features":[337]},{"name":"GUID_VIDEO_ADAPTIVE_DISPLAY_BRIGHTNESS","features":[337]},{"name":"GUID_VIDEO_ADAPTIVE_PERCENT_INCREASE","features":[337]},{"name":"GUID_VIDEO_ADAPTIVE_POWERDOWN","features":[337]},{"name":"GUID_VIDEO_ANNOYANCE_TIMEOUT","features":[337]},{"name":"GUID_VIDEO_CONSOLE_LOCK_TIMEOUT","features":[337]},{"name":"GUID_VIDEO_CURRENT_MONITOR_BRIGHTNESS","features":[337]},{"name":"GUID_VIDEO_DIM_TIMEOUT","features":[337]},{"name":"GUID_VIDEO_POWERDOWN_TIMEOUT","features":[337]},{"name":"GUID_VIDEO_SUBGROUP","features":[337]},{"name":"HEAP_OPTIMIZE_RESOURCES_CURRENT_VERSION","features":[337]},{"name":"HEAP_OPTIMIZE_RESOURCES_INFORMATION","features":[337]},{"name":"HIBERFILE_BUCKET","features":[337]},{"name":"HIBERFILE_BUCKET_SIZE","features":[337]},{"name":"HIBERFILE_TYPE_FULL","features":[337]},{"name":"HIBERFILE_TYPE_MAX","features":[337]},{"name":"HIBERFILE_TYPE_NONE","features":[337]},{"name":"HIBERFILE_TYPE_REDUCED","features":[337]},{"name":"HiberFileBucket16GB","features":[337]},{"name":"HiberFileBucket1GB","features":[337]},{"name":"HiberFileBucket2GB","features":[337]},{"name":"HiberFileBucket32GB","features":[337]},{"name":"HiberFileBucket4GB","features":[337]},{"name":"HiberFileBucket8GB","features":[337]},{"name":"HiberFileBucketMax","features":[337]},{"name":"HiberFileBucketUnlimited","features":[337]},{"name":"IGP_CONVERSION","features":[337]},{"name":"IGP_GETIMEVERSION","features":[337]},{"name":"IGP_ID","features":[337]},{"name":"IGP_PROPERTY","features":[337]},{"name":"IGP_SELECT","features":[337]},{"name":"IGP_SENTENCE","features":[337]},{"name":"IGP_SETCOMPSTR","features":[337]},{"name":"IGP_UI","features":[337]},{"name":"IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY","features":[337]},{"name":"IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY","features":[337]},{"name":"IMAGE_ARCHITECTURE_ENTRY","features":[337]},{"name":"IMAGE_ARCHITECTURE_HEADER","features":[337]},{"name":"IMAGE_ARCHIVE_END","features":[337]},{"name":"IMAGE_ARCHIVE_HYBRIDMAP_MEMBER","features":[337]},{"name":"IMAGE_ARCHIVE_LINKER_MEMBER","features":[337]},{"name":"IMAGE_ARCHIVE_LONGNAMES_MEMBER","features":[337]},{"name":"IMAGE_ARCHIVE_MEMBER_HEADER","features":[337]},{"name":"IMAGE_ARCHIVE_PAD","features":[337]},{"name":"IMAGE_ARCHIVE_START","features":[337]},{"name":"IMAGE_ARCHIVE_START_SIZE","features":[337]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY_XDATA","features":[337]},{"name":"IMAGE_ARM_RUNTIME_FUNCTION_ENTRY","features":[337]},{"name":"IMAGE_AUX_SYMBOL","features":[337]},{"name":"IMAGE_AUX_SYMBOL_EX","features":[337]},{"name":"IMAGE_AUX_SYMBOL_TOKEN_DEF","features":[337]},{"name":"IMAGE_AUX_SYMBOL_TYPE","features":[337]},{"name":"IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF","features":[337]},{"name":"IMAGE_BASE_RELOCATION","features":[337]},{"name":"IMAGE_BDD_DYNAMIC_RELOCATION","features":[337]},{"name":"IMAGE_BDD_INFO","features":[337]},{"name":"IMAGE_BOUND_FORWARDER_REF","features":[337]},{"name":"IMAGE_BOUND_IMPORT_DESCRIPTOR","features":[337]},{"name":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","features":[337]},{"name":"IMAGE_COMDAT_SELECT_ANY","features":[337]},{"name":"IMAGE_COMDAT_SELECT_ASSOCIATIVE","features":[337]},{"name":"IMAGE_COMDAT_SELECT_EXACT_MATCH","features":[337]},{"name":"IMAGE_COMDAT_SELECT_LARGEST","features":[337]},{"name":"IMAGE_COMDAT_SELECT_NEWEST","features":[337]},{"name":"IMAGE_COMDAT_SELECT_NODUPLICATES","features":[337]},{"name":"IMAGE_COMDAT_SELECT_SAME_SIZE","features":[337]},{"name":"IMAGE_COR_EATJ_THUNK_SIZE","features":[337]},{"name":"IMAGE_COR_MIH_BASICBLOCK","features":[337]},{"name":"IMAGE_COR_MIH_EHRVA","features":[337]},{"name":"IMAGE_COR_MIH_METHODRVA","features":[337]},{"name":"IMAGE_DEBUG_MISC","features":[303,337]},{"name":"IMAGE_DEBUG_MISC_EXENAME","features":[337]},{"name":"IMAGE_DEBUG_TYPE_BBT","features":[337]},{"name":"IMAGE_DEBUG_TYPE_CLSID","features":[337]},{"name":"IMAGE_DEBUG_TYPE_EX_DLLCHARACTERISTICS","features":[337]},{"name":"IMAGE_DEBUG_TYPE_ILTCG","features":[337]},{"name":"IMAGE_DEBUG_TYPE_MPX","features":[337]},{"name":"IMAGE_DEBUG_TYPE_OMAP_FROM_SRC","features":[337]},{"name":"IMAGE_DEBUG_TYPE_OMAP_TO_SRC","features":[337]},{"name":"IMAGE_DEBUG_TYPE_POGO","features":[337]},{"name":"IMAGE_DEBUG_TYPE_REPRO","features":[337]},{"name":"IMAGE_DEBUG_TYPE_RESERVED10","features":[337]},{"name":"IMAGE_DEBUG_TYPE_SPGO","features":[337]},{"name":"IMAGE_DEBUG_TYPE_VC_FEATURE","features":[337]},{"name":"IMAGE_DOS_HEADER","features":[337]},{"name":"IMAGE_DOS_SIGNATURE","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION32","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION32_V2","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION64","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION64_V2","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION_FUNCTION_OVERRIDE","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH","features":[337]},{"name":"IMAGE_DYNAMIC_RELOCATION_TABLE","features":[337]},{"name":"IMAGE_ENCLAVE_FLAG_PRIMARY_IMAGE","features":[337]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_AUTHOR_ID","features":[337]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_FAMILY_ID","features":[337]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_IMAGE_ID","features":[337]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_NONE","features":[337]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_UNIQUE_ID","features":[337]},{"name":"IMAGE_ENCLAVE_LONG_ID_LENGTH","features":[337]},{"name":"IMAGE_ENCLAVE_POLICY_DEBUGGABLE","features":[337]},{"name":"IMAGE_ENCLAVE_SHORT_ID_LENGTH","features":[337]},{"name":"IMAGE_EPILOGUE_DYNAMIC_RELOCATION_HEADER","features":[337]},{"name":"IMAGE_EXPORT_DIRECTORY","features":[337]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_BRANCH26","features":[337]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_THUNK","features":[337]},{"name":"IMAGE_FUNCTION_OVERRIDE_DYNAMIC_RELOCATION","features":[337]},{"name":"IMAGE_FUNCTION_OVERRIDE_HEADER","features":[337]},{"name":"IMAGE_FUNCTION_OVERRIDE_INVALID","features":[337]},{"name":"IMAGE_FUNCTION_OVERRIDE_X64_REL32","features":[337]},{"name":"IMAGE_GUARD_CASTGUARD_PRESENT","features":[337]},{"name":"IMAGE_GUARD_CFW_INSTRUMENTED","features":[337]},{"name":"IMAGE_GUARD_CF_ENABLE_EXPORT_SUPPRESSION","features":[337]},{"name":"IMAGE_GUARD_CF_EXPORT_SUPPRESSION_INFO_PRESENT","features":[337]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_PRESENT","features":[337]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_MASK","features":[337]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_SHIFT","features":[337]},{"name":"IMAGE_GUARD_CF_INSTRUMENTED","features":[337]},{"name":"IMAGE_GUARD_CF_LONGJUMP_TABLE_PRESENT","features":[337]},{"name":"IMAGE_GUARD_DELAYLOAD_IAT_IN_ITS_OWN_SECTION","features":[337]},{"name":"IMAGE_GUARD_EH_CONTINUATION_TABLE_PRESENT","features":[337]},{"name":"IMAGE_GUARD_FLAG_EXPORT_SUPPRESSED","features":[337]},{"name":"IMAGE_GUARD_FLAG_FID_LANGEXCPTHANDLER","features":[337]},{"name":"IMAGE_GUARD_FLAG_FID_SUPPRESSED","features":[337]},{"name":"IMAGE_GUARD_FLAG_FID_XFG","features":[337]},{"name":"IMAGE_GUARD_MEMCPY_PRESENT","features":[337]},{"name":"IMAGE_GUARD_PROTECT_DELAYLOAD_IAT","features":[337]},{"name":"IMAGE_GUARD_RETPOLINE_PRESENT","features":[337]},{"name":"IMAGE_GUARD_RF_ENABLE","features":[337]},{"name":"IMAGE_GUARD_RF_INSTRUMENTED","features":[337]},{"name":"IMAGE_GUARD_RF_STRICT","features":[337]},{"name":"IMAGE_GUARD_SECURITY_COOKIE_UNUSED","features":[337]},{"name":"IMAGE_GUARD_XFG_ENABLED","features":[337]},{"name":"IMAGE_HOT_PATCH_ABSOLUTE","features":[337]},{"name":"IMAGE_HOT_PATCH_BASE","features":[337]},{"name":"IMAGE_HOT_PATCH_BASE_CAN_ROLL_BACK","features":[337]},{"name":"IMAGE_HOT_PATCH_BASE_OBLIGATORY","features":[337]},{"name":"IMAGE_HOT_PATCH_CALL_TARGET","features":[337]},{"name":"IMAGE_HOT_PATCH_CHUNK_INVERSE","features":[337]},{"name":"IMAGE_HOT_PATCH_CHUNK_OBLIGATORY","features":[337]},{"name":"IMAGE_HOT_PATCH_CHUNK_RESERVED","features":[337]},{"name":"IMAGE_HOT_PATCH_CHUNK_SIZE","features":[337]},{"name":"IMAGE_HOT_PATCH_CHUNK_SOURCE_RVA","features":[337]},{"name":"IMAGE_HOT_PATCH_CHUNK_TARGET_RVA","features":[337]},{"name":"IMAGE_HOT_PATCH_CHUNK_TYPE","features":[337]},{"name":"IMAGE_HOT_PATCH_DYNAMIC_VALUE","features":[337]},{"name":"IMAGE_HOT_PATCH_FUNCTION","features":[337]},{"name":"IMAGE_HOT_PATCH_HASHES","features":[337]},{"name":"IMAGE_HOT_PATCH_INDIRECT","features":[337]},{"name":"IMAGE_HOT_PATCH_INFO","features":[337]},{"name":"IMAGE_HOT_PATCH_NONE","features":[337]},{"name":"IMAGE_HOT_PATCH_NO_CALL_TARGET","features":[337]},{"name":"IMAGE_HOT_PATCH_REL32","features":[337]},{"name":"IMAGE_IMPORT_BY_NAME","features":[337]},{"name":"IMAGE_IMPORT_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[337]},{"name":"IMAGE_IMPORT_DESCRIPTOR","features":[337]},{"name":"IMAGE_INDIR_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[337]},{"name":"IMAGE_LINENUMBER","features":[337]},{"name":"IMAGE_NT_SIGNATURE","features":[337]},{"name":"IMAGE_NUMBEROF_DIRECTORY_ENTRIES","features":[337]},{"name":"IMAGE_ORDINAL_FLAG32","features":[337]},{"name":"IMAGE_ORDINAL_FLAG64","features":[337]},{"name":"IMAGE_OS2_HEADER","features":[337]},{"name":"IMAGE_OS2_SIGNATURE","features":[337]},{"name":"IMAGE_OS2_SIGNATURE_LE","features":[337]},{"name":"IMAGE_POLICY_ENTRY","features":[303,337]},{"name":"IMAGE_POLICY_ENTRY_TYPE","features":[337]},{"name":"IMAGE_POLICY_ID","features":[337]},{"name":"IMAGE_POLICY_METADATA","features":[303,337]},{"name":"IMAGE_POLICY_METADATA_VERSION","features":[337]},{"name":"IMAGE_POLICY_SECTION_NAME","features":[337]},{"name":"IMAGE_PROLOGUE_DYNAMIC_RELOCATION_HEADER","features":[337]},{"name":"IMAGE_RELOCATION","features":[337]},{"name":"IMAGE_REL_ALPHA_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_ALPHA_BRADDR","features":[337]},{"name":"IMAGE_REL_ALPHA_GPDISP","features":[337]},{"name":"IMAGE_REL_ALPHA_GPREL32","features":[337]},{"name":"IMAGE_REL_ALPHA_GPRELHI","features":[337]},{"name":"IMAGE_REL_ALPHA_GPRELLO","features":[337]},{"name":"IMAGE_REL_ALPHA_HINT","features":[337]},{"name":"IMAGE_REL_ALPHA_INLINE_REFLONG","features":[337]},{"name":"IMAGE_REL_ALPHA_LITERAL","features":[337]},{"name":"IMAGE_REL_ALPHA_LITUSE","features":[337]},{"name":"IMAGE_REL_ALPHA_MATCH","features":[337]},{"name":"IMAGE_REL_ALPHA_PAIR","features":[337]},{"name":"IMAGE_REL_ALPHA_REFHI","features":[337]},{"name":"IMAGE_REL_ALPHA_REFLO","features":[337]},{"name":"IMAGE_REL_ALPHA_REFLONG","features":[337]},{"name":"IMAGE_REL_ALPHA_REFLONGNB","features":[337]},{"name":"IMAGE_REL_ALPHA_REFQ1","features":[337]},{"name":"IMAGE_REL_ALPHA_REFQ2","features":[337]},{"name":"IMAGE_REL_ALPHA_REFQ3","features":[337]},{"name":"IMAGE_REL_ALPHA_REFQUAD","features":[337]},{"name":"IMAGE_REL_ALPHA_SECREL","features":[337]},{"name":"IMAGE_REL_ALPHA_SECRELHI","features":[337]},{"name":"IMAGE_REL_ALPHA_SECRELLO","features":[337]},{"name":"IMAGE_REL_ALPHA_SECTION","features":[337]},{"name":"IMAGE_REL_AMD64_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_AMD64_ADDR32","features":[337]},{"name":"IMAGE_REL_AMD64_ADDR32NB","features":[337]},{"name":"IMAGE_REL_AMD64_ADDR64","features":[337]},{"name":"IMAGE_REL_AMD64_CFG_BR","features":[337]},{"name":"IMAGE_REL_AMD64_CFG_BR_REX","features":[337]},{"name":"IMAGE_REL_AMD64_CFG_CALL","features":[337]},{"name":"IMAGE_REL_AMD64_EHANDLER","features":[337]},{"name":"IMAGE_REL_AMD64_IMPORT_BR","features":[337]},{"name":"IMAGE_REL_AMD64_IMPORT_CALL","features":[337]},{"name":"IMAGE_REL_AMD64_INDIR_BR","features":[337]},{"name":"IMAGE_REL_AMD64_INDIR_BR_REX","features":[337]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_FIRST","features":[337]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_LAST","features":[337]},{"name":"IMAGE_REL_AMD64_INDIR_CALL","features":[337]},{"name":"IMAGE_REL_AMD64_PAIR","features":[337]},{"name":"IMAGE_REL_AMD64_REL32","features":[337]},{"name":"IMAGE_REL_AMD64_REL32_1","features":[337]},{"name":"IMAGE_REL_AMD64_REL32_2","features":[337]},{"name":"IMAGE_REL_AMD64_REL32_3","features":[337]},{"name":"IMAGE_REL_AMD64_REL32_4","features":[337]},{"name":"IMAGE_REL_AMD64_REL32_5","features":[337]},{"name":"IMAGE_REL_AMD64_SECREL","features":[337]},{"name":"IMAGE_REL_AMD64_SECREL7","features":[337]},{"name":"IMAGE_REL_AMD64_SECTION","features":[337]},{"name":"IMAGE_REL_AMD64_SREL32","features":[337]},{"name":"IMAGE_REL_AMD64_SSPAN32","features":[337]},{"name":"IMAGE_REL_AMD64_TOKEN","features":[337]},{"name":"IMAGE_REL_AM_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_AM_ADDR32","features":[337]},{"name":"IMAGE_REL_AM_ADDR32NB","features":[337]},{"name":"IMAGE_REL_AM_CALL32","features":[337]},{"name":"IMAGE_REL_AM_FUNCINFO","features":[337]},{"name":"IMAGE_REL_AM_REL32_1","features":[337]},{"name":"IMAGE_REL_AM_REL32_2","features":[337]},{"name":"IMAGE_REL_AM_SECREL","features":[337]},{"name":"IMAGE_REL_AM_SECTION","features":[337]},{"name":"IMAGE_REL_AM_TOKEN","features":[337]},{"name":"IMAGE_REL_ARM64_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_ARM64_ADDR32","features":[337]},{"name":"IMAGE_REL_ARM64_ADDR32NB","features":[337]},{"name":"IMAGE_REL_ARM64_ADDR64","features":[337]},{"name":"IMAGE_REL_ARM64_BRANCH19","features":[337]},{"name":"IMAGE_REL_ARM64_BRANCH26","features":[337]},{"name":"IMAGE_REL_ARM64_PAGEBASE_REL21","features":[337]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12A","features":[337]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12L","features":[337]},{"name":"IMAGE_REL_ARM64_REL21","features":[337]},{"name":"IMAGE_REL_ARM64_SECREL","features":[337]},{"name":"IMAGE_REL_ARM64_SECREL_HIGH12A","features":[337]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12A","features":[337]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12L","features":[337]},{"name":"IMAGE_REL_ARM64_SECTION","features":[337]},{"name":"IMAGE_REL_ARM64_TOKEN","features":[337]},{"name":"IMAGE_REL_ARM_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_ARM_ADDR32","features":[337]},{"name":"IMAGE_REL_ARM_ADDR32NB","features":[337]},{"name":"IMAGE_REL_ARM_BLX11","features":[337]},{"name":"IMAGE_REL_ARM_BLX23T","features":[337]},{"name":"IMAGE_REL_ARM_BLX24","features":[337]},{"name":"IMAGE_REL_ARM_BRANCH11","features":[337]},{"name":"IMAGE_REL_ARM_BRANCH20T","features":[337]},{"name":"IMAGE_REL_ARM_BRANCH24","features":[337]},{"name":"IMAGE_REL_ARM_BRANCH24T","features":[337]},{"name":"IMAGE_REL_ARM_GPREL12","features":[337]},{"name":"IMAGE_REL_ARM_GPREL7","features":[337]},{"name":"IMAGE_REL_ARM_MOV32","features":[337]},{"name":"IMAGE_REL_ARM_MOV32A","features":[337]},{"name":"IMAGE_REL_ARM_MOV32T","features":[337]},{"name":"IMAGE_REL_ARM_SECREL","features":[337]},{"name":"IMAGE_REL_ARM_SECTION","features":[337]},{"name":"IMAGE_REL_ARM_TOKEN","features":[337]},{"name":"IMAGE_REL_BASED_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_BASED_ARM_MOV32","features":[337]},{"name":"IMAGE_REL_BASED_DIR64","features":[337]},{"name":"IMAGE_REL_BASED_HIGH","features":[337]},{"name":"IMAGE_REL_BASED_HIGHADJ","features":[337]},{"name":"IMAGE_REL_BASED_HIGHLOW","features":[337]},{"name":"IMAGE_REL_BASED_IA64_IMM64","features":[337]},{"name":"IMAGE_REL_BASED_LOW","features":[337]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_5","features":[337]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_7","features":[337]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_8","features":[337]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_9","features":[337]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR","features":[337]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR16","features":[337]},{"name":"IMAGE_REL_BASED_RESERVED","features":[337]},{"name":"IMAGE_REL_BASED_THUMB_MOV32","features":[337]},{"name":"IMAGE_REL_CEE_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_CEE_ADDR32","features":[337]},{"name":"IMAGE_REL_CEE_ADDR32NB","features":[337]},{"name":"IMAGE_REL_CEE_ADDR64","features":[337]},{"name":"IMAGE_REL_CEE_SECREL","features":[337]},{"name":"IMAGE_REL_CEE_SECTION","features":[337]},{"name":"IMAGE_REL_CEE_TOKEN","features":[337]},{"name":"IMAGE_REL_CEF_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_CEF_ADDR32","features":[337]},{"name":"IMAGE_REL_CEF_ADDR32NB","features":[337]},{"name":"IMAGE_REL_CEF_ADDR64","features":[337]},{"name":"IMAGE_REL_CEF_SECREL","features":[337]},{"name":"IMAGE_REL_CEF_SECTION","features":[337]},{"name":"IMAGE_REL_CEF_TOKEN","features":[337]},{"name":"IMAGE_REL_EBC_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_EBC_ADDR32NB","features":[337]},{"name":"IMAGE_REL_EBC_REL32","features":[337]},{"name":"IMAGE_REL_EBC_SECREL","features":[337]},{"name":"IMAGE_REL_EBC_SECTION","features":[337]},{"name":"IMAGE_REL_I386_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_I386_DIR16","features":[337]},{"name":"IMAGE_REL_I386_DIR32","features":[337]},{"name":"IMAGE_REL_I386_DIR32NB","features":[337]},{"name":"IMAGE_REL_I386_REL16","features":[337]},{"name":"IMAGE_REL_I386_REL32","features":[337]},{"name":"IMAGE_REL_I386_SECREL","features":[337]},{"name":"IMAGE_REL_I386_SECREL7","features":[337]},{"name":"IMAGE_REL_I386_SECTION","features":[337]},{"name":"IMAGE_REL_I386_SEG12","features":[337]},{"name":"IMAGE_REL_I386_TOKEN","features":[337]},{"name":"IMAGE_REL_IA64_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_IA64_ADDEND","features":[337]},{"name":"IMAGE_REL_IA64_DIR32","features":[337]},{"name":"IMAGE_REL_IA64_DIR32NB","features":[337]},{"name":"IMAGE_REL_IA64_DIR64","features":[337]},{"name":"IMAGE_REL_IA64_GPREL22","features":[337]},{"name":"IMAGE_REL_IA64_GPREL32","features":[337]},{"name":"IMAGE_REL_IA64_IMM14","features":[337]},{"name":"IMAGE_REL_IA64_IMM22","features":[337]},{"name":"IMAGE_REL_IA64_IMM64","features":[337]},{"name":"IMAGE_REL_IA64_IMMGPREL64","features":[337]},{"name":"IMAGE_REL_IA64_LTOFF22","features":[337]},{"name":"IMAGE_REL_IA64_PCREL21B","features":[337]},{"name":"IMAGE_REL_IA64_PCREL21F","features":[337]},{"name":"IMAGE_REL_IA64_PCREL21M","features":[337]},{"name":"IMAGE_REL_IA64_PCREL60B","features":[337]},{"name":"IMAGE_REL_IA64_PCREL60F","features":[337]},{"name":"IMAGE_REL_IA64_PCREL60I","features":[337]},{"name":"IMAGE_REL_IA64_PCREL60M","features":[337]},{"name":"IMAGE_REL_IA64_PCREL60X","features":[337]},{"name":"IMAGE_REL_IA64_SECREL22","features":[337]},{"name":"IMAGE_REL_IA64_SECREL32","features":[337]},{"name":"IMAGE_REL_IA64_SECREL64I","features":[337]},{"name":"IMAGE_REL_IA64_SECTION","features":[337]},{"name":"IMAGE_REL_IA64_SREL14","features":[337]},{"name":"IMAGE_REL_IA64_SREL22","features":[337]},{"name":"IMAGE_REL_IA64_SREL32","features":[337]},{"name":"IMAGE_REL_IA64_TOKEN","features":[337]},{"name":"IMAGE_REL_IA64_UREL32","features":[337]},{"name":"IMAGE_REL_M32R_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_M32R_ADDR24","features":[337]},{"name":"IMAGE_REL_M32R_ADDR32","features":[337]},{"name":"IMAGE_REL_M32R_ADDR32NB","features":[337]},{"name":"IMAGE_REL_M32R_GPREL16","features":[337]},{"name":"IMAGE_REL_M32R_PAIR","features":[337]},{"name":"IMAGE_REL_M32R_PCREL16","features":[337]},{"name":"IMAGE_REL_M32R_PCREL24","features":[337]},{"name":"IMAGE_REL_M32R_PCREL8","features":[337]},{"name":"IMAGE_REL_M32R_REFHALF","features":[337]},{"name":"IMAGE_REL_M32R_REFHI","features":[337]},{"name":"IMAGE_REL_M32R_REFLO","features":[337]},{"name":"IMAGE_REL_M32R_SECREL32","features":[337]},{"name":"IMAGE_REL_M32R_SECTION","features":[337]},{"name":"IMAGE_REL_M32R_TOKEN","features":[337]},{"name":"IMAGE_REL_MIPS_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_MIPS_GPREL","features":[337]},{"name":"IMAGE_REL_MIPS_JMPADDR","features":[337]},{"name":"IMAGE_REL_MIPS_JMPADDR16","features":[337]},{"name":"IMAGE_REL_MIPS_LITERAL","features":[337]},{"name":"IMAGE_REL_MIPS_PAIR","features":[337]},{"name":"IMAGE_REL_MIPS_REFHALF","features":[337]},{"name":"IMAGE_REL_MIPS_REFHI","features":[337]},{"name":"IMAGE_REL_MIPS_REFLO","features":[337]},{"name":"IMAGE_REL_MIPS_REFWORD","features":[337]},{"name":"IMAGE_REL_MIPS_REFWORDNB","features":[337]},{"name":"IMAGE_REL_MIPS_SECREL","features":[337]},{"name":"IMAGE_REL_MIPS_SECRELHI","features":[337]},{"name":"IMAGE_REL_MIPS_SECRELLO","features":[337]},{"name":"IMAGE_REL_MIPS_SECTION","features":[337]},{"name":"IMAGE_REL_MIPS_TOKEN","features":[337]},{"name":"IMAGE_REL_PPC_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_PPC_ADDR14","features":[337]},{"name":"IMAGE_REL_PPC_ADDR16","features":[337]},{"name":"IMAGE_REL_PPC_ADDR24","features":[337]},{"name":"IMAGE_REL_PPC_ADDR32","features":[337]},{"name":"IMAGE_REL_PPC_ADDR32NB","features":[337]},{"name":"IMAGE_REL_PPC_ADDR64","features":[337]},{"name":"IMAGE_REL_PPC_BRNTAKEN","features":[337]},{"name":"IMAGE_REL_PPC_BRTAKEN","features":[337]},{"name":"IMAGE_REL_PPC_GPREL","features":[337]},{"name":"IMAGE_REL_PPC_IFGLUE","features":[337]},{"name":"IMAGE_REL_PPC_IMGLUE","features":[337]},{"name":"IMAGE_REL_PPC_NEG","features":[337]},{"name":"IMAGE_REL_PPC_PAIR","features":[337]},{"name":"IMAGE_REL_PPC_REFHI","features":[337]},{"name":"IMAGE_REL_PPC_REFLO","features":[337]},{"name":"IMAGE_REL_PPC_REL14","features":[337]},{"name":"IMAGE_REL_PPC_REL24","features":[337]},{"name":"IMAGE_REL_PPC_SECREL","features":[337]},{"name":"IMAGE_REL_PPC_SECREL16","features":[337]},{"name":"IMAGE_REL_PPC_SECRELHI","features":[337]},{"name":"IMAGE_REL_PPC_SECRELLO","features":[337]},{"name":"IMAGE_REL_PPC_SECTION","features":[337]},{"name":"IMAGE_REL_PPC_TOCDEFN","features":[337]},{"name":"IMAGE_REL_PPC_TOCREL14","features":[337]},{"name":"IMAGE_REL_PPC_TOCREL16","features":[337]},{"name":"IMAGE_REL_PPC_TOKEN","features":[337]},{"name":"IMAGE_REL_PPC_TYPEMASK","features":[337]},{"name":"IMAGE_REL_SH3_ABSOLUTE","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT16","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT32","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT32_NB","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT4","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT4_LONG","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT4_WORD","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT8","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT8_LONG","features":[337]},{"name":"IMAGE_REL_SH3_DIRECT8_WORD","features":[337]},{"name":"IMAGE_REL_SH3_GPREL4_LONG","features":[337]},{"name":"IMAGE_REL_SH3_PCREL12_WORD","features":[337]},{"name":"IMAGE_REL_SH3_PCREL8_LONG","features":[337]},{"name":"IMAGE_REL_SH3_PCREL8_WORD","features":[337]},{"name":"IMAGE_REL_SH3_SECREL","features":[337]},{"name":"IMAGE_REL_SH3_SECTION","features":[337]},{"name":"IMAGE_REL_SH3_SIZEOF_SECTION","features":[337]},{"name":"IMAGE_REL_SH3_STARTOF_SECTION","features":[337]},{"name":"IMAGE_REL_SH3_TOKEN","features":[337]},{"name":"IMAGE_REL_SHM_PAIR","features":[337]},{"name":"IMAGE_REL_SHM_PCRELPT","features":[337]},{"name":"IMAGE_REL_SHM_REFHALF","features":[337]},{"name":"IMAGE_REL_SHM_REFLO","features":[337]},{"name":"IMAGE_REL_SHM_RELHALF","features":[337]},{"name":"IMAGE_REL_SHM_RELLO","features":[337]},{"name":"IMAGE_REL_SH_NOMODE","features":[337]},{"name":"IMAGE_REL_THUMB_BLX23","features":[337]},{"name":"IMAGE_REL_THUMB_BRANCH20","features":[337]},{"name":"IMAGE_REL_THUMB_BRANCH24","features":[337]},{"name":"IMAGE_REL_THUMB_MOV32","features":[337]},{"name":"IMAGE_RESOURCE_DATA_ENTRY","features":[337]},{"name":"IMAGE_RESOURCE_DATA_IS_DIRECTORY","features":[337]},{"name":"IMAGE_RESOURCE_DIRECTORY","features":[337]},{"name":"IMAGE_RESOURCE_DIRECTORY_ENTRY","features":[337]},{"name":"IMAGE_RESOURCE_DIRECTORY_STRING","features":[337]},{"name":"IMAGE_RESOURCE_DIR_STRING_U","features":[337]},{"name":"IMAGE_RESOURCE_NAME_IS_STRING","features":[337]},{"name":"IMAGE_SEPARATE_DEBUG_FLAGS_MASK","features":[337]},{"name":"IMAGE_SEPARATE_DEBUG_HEADER","features":[337]},{"name":"IMAGE_SEPARATE_DEBUG_MISMATCH","features":[337]},{"name":"IMAGE_SEPARATE_DEBUG_SIGNATURE","features":[337]},{"name":"IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR","features":[337]},{"name":"IMAGE_SIZEOF_FILE_HEADER","features":[337]},{"name":"IMAGE_SIZEOF_SECTION_HEADER","features":[337]},{"name":"IMAGE_SIZEOF_SHORT_NAME","features":[337]},{"name":"IMAGE_SIZEOF_SYMBOL","features":[337]},{"name":"IMAGE_SWITCHTABLE_BRANCH_DYNAMIC_RELOCATION","features":[337]},{"name":"IMAGE_SYMBOL","features":[337]},{"name":"IMAGE_SYMBOL_EX","features":[337]},{"name":"IMAGE_SYM_CLASS_ARGUMENT","features":[337]},{"name":"IMAGE_SYM_CLASS_AUTOMATIC","features":[337]},{"name":"IMAGE_SYM_CLASS_BIT_FIELD","features":[337]},{"name":"IMAGE_SYM_CLASS_BLOCK","features":[337]},{"name":"IMAGE_SYM_CLASS_CLR_TOKEN","features":[337]},{"name":"IMAGE_SYM_CLASS_END_OF_STRUCT","features":[337]},{"name":"IMAGE_SYM_CLASS_ENUM_TAG","features":[337]},{"name":"IMAGE_SYM_CLASS_EXTERNAL","features":[337]},{"name":"IMAGE_SYM_CLASS_EXTERNAL_DEF","features":[337]},{"name":"IMAGE_SYM_CLASS_FAR_EXTERNAL","features":[337]},{"name":"IMAGE_SYM_CLASS_FILE","features":[337]},{"name":"IMAGE_SYM_CLASS_FUNCTION","features":[337]},{"name":"IMAGE_SYM_CLASS_LABEL","features":[337]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_ENUM","features":[337]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_STRUCT","features":[337]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_UNION","features":[337]},{"name":"IMAGE_SYM_CLASS_NULL","features":[337]},{"name":"IMAGE_SYM_CLASS_REGISTER","features":[337]},{"name":"IMAGE_SYM_CLASS_REGISTER_PARAM","features":[337]},{"name":"IMAGE_SYM_CLASS_SECTION","features":[337]},{"name":"IMAGE_SYM_CLASS_STATIC","features":[337]},{"name":"IMAGE_SYM_CLASS_STRUCT_TAG","features":[337]},{"name":"IMAGE_SYM_CLASS_TYPE_DEFINITION","features":[337]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_LABEL","features":[337]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_STATIC","features":[337]},{"name":"IMAGE_SYM_CLASS_UNION_TAG","features":[337]},{"name":"IMAGE_SYM_CLASS_WEAK_EXTERNAL","features":[337]},{"name":"IMAGE_SYM_DTYPE_ARRAY","features":[337]},{"name":"IMAGE_SYM_DTYPE_FUNCTION","features":[337]},{"name":"IMAGE_SYM_DTYPE_NULL","features":[337]},{"name":"IMAGE_SYM_DTYPE_POINTER","features":[337]},{"name":"IMAGE_SYM_SECTION_MAX","features":[337]},{"name":"IMAGE_SYM_SECTION_MAX_EX","features":[337]},{"name":"IMAGE_SYM_TYPE_BYTE","features":[337]},{"name":"IMAGE_SYM_TYPE_CHAR","features":[337]},{"name":"IMAGE_SYM_TYPE_DOUBLE","features":[337]},{"name":"IMAGE_SYM_TYPE_DWORD","features":[337]},{"name":"IMAGE_SYM_TYPE_ENUM","features":[337]},{"name":"IMAGE_SYM_TYPE_FLOAT","features":[337]},{"name":"IMAGE_SYM_TYPE_INT","features":[337]},{"name":"IMAGE_SYM_TYPE_LONG","features":[337]},{"name":"IMAGE_SYM_TYPE_MOE","features":[337]},{"name":"IMAGE_SYM_TYPE_NULL","features":[337]},{"name":"IMAGE_SYM_TYPE_PCODE","features":[337]},{"name":"IMAGE_SYM_TYPE_SHORT","features":[337]},{"name":"IMAGE_SYM_TYPE_STRUCT","features":[337]},{"name":"IMAGE_SYM_TYPE_UINT","features":[337]},{"name":"IMAGE_SYM_TYPE_UNION","features":[337]},{"name":"IMAGE_SYM_TYPE_VOID","features":[337]},{"name":"IMAGE_SYM_TYPE_WORD","features":[337]},{"name":"IMAGE_TLS_DIRECTORY32","features":[337]},{"name":"IMAGE_TLS_DIRECTORY64","features":[337]},{"name":"IMAGE_VXD_HEADER","features":[337]},{"name":"IMAGE_VXD_SIGNATURE","features":[337]},{"name":"IMAGE_WEAK_EXTERN_ANTI_DEPENDENCY","features":[337]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_ALIAS","features":[337]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_LIBRARY","features":[337]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY","features":[337]},{"name":"IMPORT_OBJECT_CODE","features":[337]},{"name":"IMPORT_OBJECT_CONST","features":[337]},{"name":"IMPORT_OBJECT_DATA","features":[337]},{"name":"IMPORT_OBJECT_HDR_SIG2","features":[337]},{"name":"IMPORT_OBJECT_HEADER","features":[337]},{"name":"IMPORT_OBJECT_NAME","features":[337]},{"name":"IMPORT_OBJECT_NAME_EXPORTAS","features":[337]},{"name":"IMPORT_OBJECT_NAME_NO_PREFIX","features":[337]},{"name":"IMPORT_OBJECT_NAME_TYPE","features":[337]},{"name":"IMPORT_OBJECT_NAME_UNDECORATE","features":[337]},{"name":"IMPORT_OBJECT_ORDINAL","features":[337]},{"name":"IMPORT_OBJECT_TYPE","features":[337]},{"name":"INITIAL_CPSR","features":[337]},{"name":"INITIAL_FPCSR","features":[337]},{"name":"INITIAL_FPSCR","features":[337]},{"name":"INITIAL_MXCSR","features":[337]},{"name":"IO_COMPLETION_MODIFY_STATE","features":[337]},{"name":"IO_REPARSE_TAG_AF_UNIX","features":[337]},{"name":"IO_REPARSE_TAG_APPEXECLINK","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_1","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_2","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_3","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_4","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_5","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_6","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_7","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_8","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_9","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_A","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_B","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_C","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_D","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_E","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_F","features":[337]},{"name":"IO_REPARSE_TAG_CLOUD_MASK","features":[337]},{"name":"IO_REPARSE_TAG_CSV","features":[337]},{"name":"IO_REPARSE_TAG_DATALESS_CIM","features":[337]},{"name":"IO_REPARSE_TAG_DEDUP","features":[337]},{"name":"IO_REPARSE_TAG_DFS","features":[337]},{"name":"IO_REPARSE_TAG_DFSR","features":[337]},{"name":"IO_REPARSE_TAG_FILE_PLACEHOLDER","features":[337]},{"name":"IO_REPARSE_TAG_GLOBAL_REPARSE","features":[337]},{"name":"IO_REPARSE_TAG_HSM","features":[337]},{"name":"IO_REPARSE_TAG_HSM2","features":[337]},{"name":"IO_REPARSE_TAG_MOUNT_POINT","features":[337]},{"name":"IO_REPARSE_TAG_NFS","features":[337]},{"name":"IO_REPARSE_TAG_ONEDRIVE","features":[337]},{"name":"IO_REPARSE_TAG_PROJFS","features":[337]},{"name":"IO_REPARSE_TAG_PROJFS_TOMBSTONE","features":[337]},{"name":"IO_REPARSE_TAG_RESERVED_INVALID","features":[337]},{"name":"IO_REPARSE_TAG_RESERVED_ONE","features":[337]},{"name":"IO_REPARSE_TAG_RESERVED_RANGE","features":[337]},{"name":"IO_REPARSE_TAG_RESERVED_TWO","features":[337]},{"name":"IO_REPARSE_TAG_RESERVED_ZERO","features":[337]},{"name":"IO_REPARSE_TAG_SIS","features":[337]},{"name":"IO_REPARSE_TAG_STORAGE_SYNC","features":[337]},{"name":"IO_REPARSE_TAG_SYMLINK","features":[337]},{"name":"IO_REPARSE_TAG_UNHANDLED","features":[337]},{"name":"IO_REPARSE_TAG_WCI","features":[337]},{"name":"IO_REPARSE_TAG_WCI_1","features":[337]},{"name":"IO_REPARSE_TAG_WCI_LINK","features":[337]},{"name":"IO_REPARSE_TAG_WCI_LINK_1","features":[337]},{"name":"IO_REPARSE_TAG_WCI_TOMBSTONE","features":[337]},{"name":"IO_REPARSE_TAG_WIM","features":[337]},{"name":"IO_REPARSE_TAG_WOF","features":[337]},{"name":"IS_TEXT_UNICODE_DBCS_LEADBYTE","features":[337]},{"name":"IS_TEXT_UNICODE_UTF8","features":[337]},{"name":"ITWW_OPEN_CONNECT","features":[337]},{"name":"IgnoreError","features":[337]},{"name":"ImagePolicyEntryTypeAnsiString","features":[337]},{"name":"ImagePolicyEntryTypeBool","features":[337]},{"name":"ImagePolicyEntryTypeInt16","features":[337]},{"name":"ImagePolicyEntryTypeInt32","features":[337]},{"name":"ImagePolicyEntryTypeInt64","features":[337]},{"name":"ImagePolicyEntryTypeInt8","features":[337]},{"name":"ImagePolicyEntryTypeMaximum","features":[337]},{"name":"ImagePolicyEntryTypeNone","features":[337]},{"name":"ImagePolicyEntryTypeOverride","features":[337]},{"name":"ImagePolicyEntryTypeUInt16","features":[337]},{"name":"ImagePolicyEntryTypeUInt32","features":[337]},{"name":"ImagePolicyEntryTypeUInt64","features":[337]},{"name":"ImagePolicyEntryTypeUInt8","features":[337]},{"name":"ImagePolicyEntryTypeUnicodeString","features":[337]},{"name":"ImagePolicyIdCapability","features":[337]},{"name":"ImagePolicyIdCrashDump","features":[337]},{"name":"ImagePolicyIdCrashDumpKey","features":[337]},{"name":"ImagePolicyIdCrashDumpKeyGuid","features":[337]},{"name":"ImagePolicyIdDebug","features":[337]},{"name":"ImagePolicyIdDeviceId","features":[337]},{"name":"ImagePolicyIdEtw","features":[337]},{"name":"ImagePolicyIdMaximum","features":[337]},{"name":"ImagePolicyIdNone","features":[337]},{"name":"ImagePolicyIdParentSd","features":[337]},{"name":"ImagePolicyIdParentSdRev","features":[337]},{"name":"ImagePolicyIdScenarioId","features":[337]},{"name":"ImagePolicyIdSvn","features":[337]},{"name":"JOB_OBJECT_ASSIGN_PROCESS","features":[337]},{"name":"JOB_OBJECT_IMPERSONATE","features":[337]},{"name":"JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS","features":[337]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT","features":[337]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO","features":[337]},{"name":"JOB_OBJECT_MSG_END_OF_JOB_TIME","features":[337]},{"name":"JOB_OBJECT_MSG_END_OF_PROCESS_TIME","features":[337]},{"name":"JOB_OBJECT_MSG_EXIT_PROCESS","features":[337]},{"name":"JOB_OBJECT_MSG_JOB_CYCLE_TIME_LIMIT","features":[337]},{"name":"JOB_OBJECT_MSG_JOB_MEMORY_LIMIT","features":[337]},{"name":"JOB_OBJECT_MSG_MAXIMUM","features":[337]},{"name":"JOB_OBJECT_MSG_MINIMUM","features":[337]},{"name":"JOB_OBJECT_MSG_NEW_PROCESS","features":[337]},{"name":"JOB_OBJECT_MSG_NOTIFICATION_LIMIT","features":[337]},{"name":"JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT","features":[337]},{"name":"JOB_OBJECT_MSG_SILO_TERMINATED","features":[337]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_DSCP_TAG","features":[337]},{"name":"JOB_OBJECT_QUERY","features":[337]},{"name":"JOB_OBJECT_SET_ATTRIBUTES","features":[337]},{"name":"JOB_OBJECT_SET_SECURITY_ATTRIBUTES","features":[337]},{"name":"JOB_OBJECT_TERMINATE","features":[337]},{"name":"JOB_OBJECT_UILIMIT_ALL","features":[337]},{"name":"JOB_OBJECT_UILIMIT_IME","features":[337]},{"name":"JOB_OBJECT_UI_VALID_FLAGS","features":[337]},{"name":"KERNEL_CET_CONTEXT","features":[337]},{"name":"KTMOBJECT_CURSOR","features":[337]},{"name":"KTMOBJECT_ENLISTMENT","features":[337]},{"name":"KTMOBJECT_INVALID","features":[337]},{"name":"KTMOBJECT_RESOURCE_MANAGER","features":[337]},{"name":"KTMOBJECT_TRANSACTION","features":[337]},{"name":"KTMOBJECT_TRANSACTION_MANAGER","features":[337]},{"name":"KTMOBJECT_TYPE","features":[337]},{"name":"LANG_AFRIKAANS","features":[337]},{"name":"LANG_ALBANIAN","features":[337]},{"name":"LANG_ALSATIAN","features":[337]},{"name":"LANG_AMHARIC","features":[337]},{"name":"LANG_ARABIC","features":[337]},{"name":"LANG_ARMENIAN","features":[337]},{"name":"LANG_ASSAMESE","features":[337]},{"name":"LANG_AZERBAIJANI","features":[337]},{"name":"LANG_AZERI","features":[337]},{"name":"LANG_BANGLA","features":[337]},{"name":"LANG_BASHKIR","features":[337]},{"name":"LANG_BASQUE","features":[337]},{"name":"LANG_BELARUSIAN","features":[337]},{"name":"LANG_BENGALI","features":[337]},{"name":"LANG_BOSNIAN","features":[337]},{"name":"LANG_BOSNIAN_NEUTRAL","features":[337]},{"name":"LANG_BRETON","features":[337]},{"name":"LANG_BULGARIAN","features":[337]},{"name":"LANG_CATALAN","features":[337]},{"name":"LANG_CENTRAL_KURDISH","features":[337]},{"name":"LANG_CHEROKEE","features":[337]},{"name":"LANG_CHINESE","features":[337]},{"name":"LANG_CHINESE_SIMPLIFIED","features":[337]},{"name":"LANG_CHINESE_TRADITIONAL","features":[337]},{"name":"LANG_CORSICAN","features":[337]},{"name":"LANG_CROATIAN","features":[337]},{"name":"LANG_CZECH","features":[337]},{"name":"LANG_DANISH","features":[337]},{"name":"LANG_DARI","features":[337]},{"name":"LANG_DIVEHI","features":[337]},{"name":"LANG_DUTCH","features":[337]},{"name":"LANG_ENGLISH","features":[337]},{"name":"LANG_ESTONIAN","features":[337]},{"name":"LANG_FAEROESE","features":[337]},{"name":"LANG_FARSI","features":[337]},{"name":"LANG_FILIPINO","features":[337]},{"name":"LANG_FINNISH","features":[337]},{"name":"LANG_FRENCH","features":[337]},{"name":"LANG_FRISIAN","features":[337]},{"name":"LANG_FULAH","features":[337]},{"name":"LANG_GALICIAN","features":[337]},{"name":"LANG_GEORGIAN","features":[337]},{"name":"LANG_GERMAN","features":[337]},{"name":"LANG_GREEK","features":[337]},{"name":"LANG_GREENLANDIC","features":[337]},{"name":"LANG_GUJARATI","features":[337]},{"name":"LANG_HAUSA","features":[337]},{"name":"LANG_HAWAIIAN","features":[337]},{"name":"LANG_HEBREW","features":[337]},{"name":"LANG_HINDI","features":[337]},{"name":"LANG_HUNGARIAN","features":[337]},{"name":"LANG_ICELANDIC","features":[337]},{"name":"LANG_IGBO","features":[337]},{"name":"LANG_INDONESIAN","features":[337]},{"name":"LANG_INUKTITUT","features":[337]},{"name":"LANG_INVARIANT","features":[337]},{"name":"LANG_IRISH","features":[337]},{"name":"LANG_ITALIAN","features":[337]},{"name":"LANG_JAPANESE","features":[337]},{"name":"LANG_KANNADA","features":[337]},{"name":"LANG_KASHMIRI","features":[337]},{"name":"LANG_KAZAK","features":[337]},{"name":"LANG_KHMER","features":[337]},{"name":"LANG_KICHE","features":[337]},{"name":"LANG_KINYARWANDA","features":[337]},{"name":"LANG_KONKANI","features":[337]},{"name":"LANG_KOREAN","features":[337]},{"name":"LANG_KYRGYZ","features":[337]},{"name":"LANG_LAO","features":[337]},{"name":"LANG_LATVIAN","features":[337]},{"name":"LANG_LITHUANIAN","features":[337]},{"name":"LANG_LOWER_SORBIAN","features":[337]},{"name":"LANG_LUXEMBOURGISH","features":[337]},{"name":"LANG_MACEDONIAN","features":[337]},{"name":"LANG_MALAY","features":[337]},{"name":"LANG_MALAYALAM","features":[337]},{"name":"LANG_MALTESE","features":[337]},{"name":"LANG_MANIPURI","features":[337]},{"name":"LANG_MAORI","features":[337]},{"name":"LANG_MAPUDUNGUN","features":[337]},{"name":"LANG_MARATHI","features":[337]},{"name":"LANG_MOHAWK","features":[337]},{"name":"LANG_MONGOLIAN","features":[337]},{"name":"LANG_NEPALI","features":[337]},{"name":"LANG_NEUTRAL","features":[337]},{"name":"LANG_NORWEGIAN","features":[337]},{"name":"LANG_OCCITAN","features":[337]},{"name":"LANG_ODIA","features":[337]},{"name":"LANG_ORIYA","features":[337]},{"name":"LANG_PASHTO","features":[337]},{"name":"LANG_PERSIAN","features":[337]},{"name":"LANG_POLISH","features":[337]},{"name":"LANG_PORTUGUESE","features":[337]},{"name":"LANG_PULAR","features":[337]},{"name":"LANG_PUNJABI","features":[337]},{"name":"LANG_QUECHUA","features":[337]},{"name":"LANG_ROMANIAN","features":[337]},{"name":"LANG_ROMANSH","features":[337]},{"name":"LANG_RUSSIAN","features":[337]},{"name":"LANG_SAKHA","features":[337]},{"name":"LANG_SAMI","features":[337]},{"name":"LANG_SANSKRIT","features":[337]},{"name":"LANG_SCOTTISH_GAELIC","features":[337]},{"name":"LANG_SERBIAN","features":[337]},{"name":"LANG_SERBIAN_NEUTRAL","features":[337]},{"name":"LANG_SINDHI","features":[337]},{"name":"LANG_SINHALESE","features":[337]},{"name":"LANG_SLOVAK","features":[337]},{"name":"LANG_SLOVENIAN","features":[337]},{"name":"LANG_SOTHO","features":[337]},{"name":"LANG_SPANISH","features":[337]},{"name":"LANG_SWAHILI","features":[337]},{"name":"LANG_SWEDISH","features":[337]},{"name":"LANG_SYRIAC","features":[337]},{"name":"LANG_TAJIK","features":[337]},{"name":"LANG_TAMAZIGHT","features":[337]},{"name":"LANG_TAMIL","features":[337]},{"name":"LANG_TATAR","features":[337]},{"name":"LANG_TELUGU","features":[337]},{"name":"LANG_THAI","features":[337]},{"name":"LANG_TIBETAN","features":[337]},{"name":"LANG_TIGRIGNA","features":[337]},{"name":"LANG_TIGRINYA","features":[337]},{"name":"LANG_TSWANA","features":[337]},{"name":"LANG_TURKISH","features":[337]},{"name":"LANG_TURKMEN","features":[337]},{"name":"LANG_UIGHUR","features":[337]},{"name":"LANG_UKRAINIAN","features":[337]},{"name":"LANG_UPPER_SORBIAN","features":[337]},{"name":"LANG_URDU","features":[337]},{"name":"LANG_UZBEK","features":[337]},{"name":"LANG_VALENCIAN","features":[337]},{"name":"LANG_VIETNAMESE","features":[337]},{"name":"LANG_WELSH","features":[337]},{"name":"LANG_WOLOF","features":[337]},{"name":"LANG_XHOSA","features":[337]},{"name":"LANG_YAKUT","features":[337]},{"name":"LANG_YI","features":[337]},{"name":"LANG_YORUBA","features":[337]},{"name":"LANG_ZULU","features":[337]},{"name":"LMEM_DISCARDABLE","features":[337]},{"name":"LMEM_DISCARDED","features":[337]},{"name":"LMEM_INVALID_HANDLE","features":[337]},{"name":"LMEM_LOCKCOUNT","features":[337]},{"name":"LMEM_MODIFY","features":[337]},{"name":"LMEM_NOCOMPACT","features":[337]},{"name":"LMEM_NODISCARD","features":[337]},{"name":"LMEM_VALID_FLAGS","features":[337]},{"name":"LOCALE_NAME_MAX_LENGTH","features":[337]},{"name":"LOCALE_TRANSIENT_KEYBOARD1","features":[337]},{"name":"LOCALE_TRANSIENT_KEYBOARD2","features":[337]},{"name":"LOCALE_TRANSIENT_KEYBOARD3","features":[337]},{"name":"LOCALE_TRANSIENT_KEYBOARD4","features":[337]},{"name":"LTP_PC_SMT","features":[337]},{"name":"MAILSLOT_NO_MESSAGE","features":[337]},{"name":"MAILSLOT_WAIT_FOREVER","features":[337]},{"name":"MAXBYTE","features":[337]},{"name":"MAXCHAR","features":[337]},{"name":"MAXDWORD","features":[337]},{"name":"MAXIMUM_ALLOWED","features":[337]},{"name":"MAXIMUM_PROCESSORS","features":[337]},{"name":"MAXIMUM_PROC_PER_GROUP","features":[337]},{"name":"MAXIMUM_SUPPORTED_EXTENSION","features":[337]},{"name":"MAXIMUM_SUSPEND_COUNT","features":[337]},{"name":"MAXIMUM_WAIT_OBJECTS","features":[337]},{"name":"MAXIMUM_XSTATE_FEATURES","features":[337]},{"name":"MAXLOGICALLOGNAMESIZE","features":[337]},{"name":"MAXLONG","features":[337]},{"name":"MAXLONGLONG","features":[337]},{"name":"MAXSHORT","features":[337]},{"name":"MAXVERSIONTESTED_INFO","features":[337]},{"name":"MAXWORD","features":[337]},{"name":"MAX_ACL_REVISION","features":[337]},{"name":"MAX_CLASS_NAME","features":[337]},{"name":"MAX_HW_COUNTERS","features":[337]},{"name":"MAX_PACKAGE_NAME","features":[337]},{"name":"MAX_UCSCHAR","features":[337]},{"name":"MEMORY_ALLOCATION_ALIGNMENT","features":[337]},{"name":"MEMORY_PARTITION_MODIFY_ACCESS","features":[337]},{"name":"MEMORY_PARTITION_QUERY_ACCESS","features":[337]},{"name":"MEMORY_PRIORITY_LOWEST","features":[337]},{"name":"MEM_4MB_PAGES","features":[337]},{"name":"MEM_COALESCE_PLACEHOLDERS","features":[337]},{"name":"MEM_DIFFERENT_IMAGE_BASE_OK","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_GRAPHICS","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_IMAGE_NO_HPAT","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_HUGE","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_LARGE","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_SOFT_FAULT_PAGES","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[337]},{"name":"MEM_EXTENDED_PARAMETER_ZERO_PAGES_OPTIONAL","features":[337]},{"name":"MEM_PHYSICAL","features":[337]},{"name":"MEM_ROTATE","features":[337]},{"name":"MEM_TOP_DOWN","features":[337]},{"name":"MEM_WRITE_WATCH","features":[337]},{"name":"MESSAGE_RESOURCE_UNICODE","features":[337]},{"name":"MESSAGE_RESOURCE_UTF8","features":[337]},{"name":"MINCHAR","features":[337]},{"name":"MINLONG","features":[337]},{"name":"MINSHORT","features":[337]},{"name":"MIN_UCSCHAR","features":[337]},{"name":"MK_CONTROL","features":[337]},{"name":"MK_LBUTTON","features":[337]},{"name":"MK_MBUTTON","features":[337]},{"name":"MK_RBUTTON","features":[337]},{"name":"MK_SHIFT","features":[337]},{"name":"MK_XBUTTON1","features":[337]},{"name":"MK_XBUTTON2","features":[337]},{"name":"MODIFIERKEYS_FLAGS","features":[337]},{"name":"MONITOR_DISPLAY_STATE","features":[337]},{"name":"MS_PPM_SOFTWARE_ALL","features":[337]},{"name":"MUTANT_QUERY_STATE","features":[337]},{"name":"MaxActivationContextInfoClass","features":[337]},{"name":"NATIVE_TYPE_MAX_CB","features":[337]},{"name":"NETWORK_APP_INSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[337]},{"name":"NETWORK_APP_INSTANCE_EA","features":[337]},{"name":"NLS_VALID_LOCALE_MASK","features":[337]},{"name":"NONVOL_FP_NUMREG_ARM64","features":[337]},{"name":"NONVOL_INT_NUMREG_ARM64","features":[337]},{"name":"NON_PAGED_DEBUG_INFO","features":[337]},{"name":"NON_PAGED_DEBUG_SIGNATURE","features":[337]},{"name":"NOTIFY_USER_POWER_SETTING","features":[337]},{"name":"NO_SUBGROUP_GUID","features":[337]},{"name":"NT_TIB32","features":[337]},{"name":"NT_TIB64","features":[337]},{"name":"NUMA_NO_PREFERRED_NODE","features":[337]},{"name":"NUM_DISCHARGE_POLICIES","features":[337]},{"name":"N_BTMASK","features":[337]},{"name":"N_BTSHFT","features":[337]},{"name":"N_TMASK","features":[337]},{"name":"N_TMASK1","features":[337]},{"name":"N_TMASK2","features":[337]},{"name":"N_TSHIFT","features":[337]},{"name":"NormalError","features":[337]},{"name":"OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME","features":[337]},{"name":"PACKEDEVENTINFO","features":[337]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[337]},{"name":"PARKING_TOPOLOGY_POLICY_ROUNDROBIN","features":[337]},{"name":"PARKING_TOPOLOGY_POLICY_SEQUENTIAL","features":[337]},{"name":"PDCAP_D0_SUPPORTED","features":[337]},{"name":"PDCAP_D1_SUPPORTED","features":[337]},{"name":"PDCAP_D2_SUPPORTED","features":[337]},{"name":"PDCAP_D3_SUPPORTED","features":[337]},{"name":"PDCAP_WAKE_FROM_D0_SUPPORTED","features":[337]},{"name":"PDCAP_WAKE_FROM_D1_SUPPORTED","features":[337]},{"name":"PDCAP_WAKE_FROM_D2_SUPPORTED","features":[337]},{"name":"PDCAP_WAKE_FROM_D3_SUPPORTED","features":[337]},{"name":"PDCAP_WARM_EJECT_SUPPORTED","features":[337]},{"name":"PERFORMANCE_DATA_VERSION","features":[337]},{"name":"PERFSTATE_POLICY_CHANGE_DECREASE_MAX","features":[337]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL","features":[337]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL_AGGRESSIVE","features":[337]},{"name":"PERFSTATE_POLICY_CHANGE_INCREASE_MAX","features":[337]},{"name":"PERFSTATE_POLICY_CHANGE_ROCKET","features":[337]},{"name":"PERFSTATE_POLICY_CHANGE_SINGLE","features":[337]},{"name":"PEXCEPTION_FILTER","features":[303,331,309,337]},{"name":"PF_NON_TEMPORAL_LEVEL_ALL","features":[337]},{"name":"PF_TEMPORAL_LEVEL_1","features":[337]},{"name":"PF_TEMPORAL_LEVEL_2","features":[337]},{"name":"PF_TEMPORAL_LEVEL_3","features":[337]},{"name":"PIMAGE_TLS_CALLBACK","features":[337]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[337]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[303,331,337]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[303,331,337]},{"name":"POWERBUTTON_ACTION_INDEX_HIBERNATE","features":[337]},{"name":"POWERBUTTON_ACTION_INDEX_NOTHING","features":[337]},{"name":"POWERBUTTON_ACTION_INDEX_SHUTDOWN","features":[337]},{"name":"POWERBUTTON_ACTION_INDEX_SLEEP","features":[337]},{"name":"POWERBUTTON_ACTION_INDEX_TURN_OFF_THE_DISPLAY","features":[337]},{"name":"POWERBUTTON_ACTION_VALUE_HIBERNATE","features":[337]},{"name":"POWERBUTTON_ACTION_VALUE_NOTHING","features":[337]},{"name":"POWERBUTTON_ACTION_VALUE_SHUTDOWN","features":[337]},{"name":"POWERBUTTON_ACTION_VALUE_SLEEP","features":[337]},{"name":"POWERBUTTON_ACTION_VALUE_TURN_OFF_THE_DISPLAY","features":[337]},{"name":"POWER_ACTION_ACPI_CRITICAL","features":[337]},{"name":"POWER_ACTION_ACPI_USER_NOTIFY","features":[337]},{"name":"POWER_ACTION_CRITICAL","features":[337]},{"name":"POWER_ACTION_DIRECTED_DRIPS","features":[337]},{"name":"POWER_ACTION_DISABLE_WAKES","features":[337]},{"name":"POWER_ACTION_DOZE_TO_HIBERNATE","features":[337]},{"name":"POWER_ACTION_HIBERBOOT","features":[337]},{"name":"POWER_ACTION_LIGHTEST_FIRST","features":[337]},{"name":"POWER_ACTION_LOCK_CONSOLE","features":[337]},{"name":"POWER_ACTION_OVERRIDE_APPS","features":[337]},{"name":"POWER_ACTION_PSEUDO_TRANSITION","features":[337]},{"name":"POWER_ACTION_QUERY_ALLOWED","features":[337]},{"name":"POWER_ACTION_UI_ALLOWED","features":[337]},{"name":"POWER_ACTION_USER_NOTIFY","features":[337]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_DISABLED","features":[337]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_ENABLED","features":[337]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_SYSTEM_MANAGED","features":[337]},{"name":"POWER_DEVICE_IDLE_POLICY_CONSERVATIVE","features":[337]},{"name":"POWER_DEVICE_IDLE_POLICY_PERFORMANCE","features":[337]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_AGGRESSIVE","features":[337]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_NORMAL","features":[337]},{"name":"POWER_REQUEST_CONTEXT_VERSION","features":[337]},{"name":"POWER_SETTING_VALUE_VERSION","features":[337]},{"name":"POWER_SYSTEM_MAXIMUM","features":[337]},{"name":"POWER_USER_NOTIFY_FORCED_SHUTDOWN","features":[337]},{"name":"PO_THROTTLE_ADAPTIVE","features":[337]},{"name":"PO_THROTTLE_CONSTANT","features":[337]},{"name":"PO_THROTTLE_DEGRADE","features":[337]},{"name":"PO_THROTTLE_MAXIMUM","features":[337]},{"name":"PO_THROTTLE_NONE","features":[337]},{"name":"PRAGMA_DEPRECATED_DDK","features":[337]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[337]},{"name":"PROCESSOR_ALPHA_21064","features":[337]},{"name":"PROCESSOR_AMD_X8664","features":[337]},{"name":"PROCESSOR_ARM720","features":[337]},{"name":"PROCESSOR_ARM820","features":[337]},{"name":"PROCESSOR_ARM920","features":[337]},{"name":"PROCESSOR_ARM_7TDMI","features":[337]},{"name":"PROCESSOR_DUTY_CYCLING_DISABLED","features":[337]},{"name":"PROCESSOR_DUTY_CYCLING_ENABLED","features":[337]},{"name":"PROCESSOR_HITACHI_SH3","features":[337]},{"name":"PROCESSOR_HITACHI_SH3E","features":[337]},{"name":"PROCESSOR_HITACHI_SH4","features":[337]},{"name":"PROCESSOR_IDLESTATE_INFO","features":[337]},{"name":"PROCESSOR_IDLESTATE_POLICY","features":[337]},{"name":"PROCESSOR_IDLESTATE_POLICY_COUNT","features":[337]},{"name":"PROCESSOR_INTEL_386","features":[337]},{"name":"PROCESSOR_INTEL_486","features":[337]},{"name":"PROCESSOR_INTEL_IA64","features":[337]},{"name":"PROCESSOR_INTEL_PENTIUM","features":[337]},{"name":"PROCESSOR_MIPS_R4000","features":[337]},{"name":"PROCESSOR_MOTOROLA_821","features":[337]},{"name":"PROCESSOR_OPTIL","features":[337]},{"name":"PROCESSOR_PERFSTATE_POLICY","features":[337]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_DISABLED","features":[337]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_ENABLED","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE_AT_GUARANTEED","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_DISABLED","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE_AT_GUARANTEED","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_ENABLED","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_ENABLED","features":[337]},{"name":"PROCESSOR_PERF_BOOST_MODE_MAX","features":[337]},{"name":"PROCESSOR_PERF_BOOST_POLICY_DISABLED","features":[337]},{"name":"PROCESSOR_PERF_BOOST_POLICY_MAX","features":[337]},{"name":"PROCESSOR_PERF_ENERGY_PREFERENCE","features":[337]},{"name":"PROCESSOR_PERF_MAXIMUM_ACTIVITY_WINDOW","features":[337]},{"name":"PROCESSOR_PERF_MINIMUM_ACTIVITY_WINDOW","features":[337]},{"name":"PROCESSOR_PERF_PERFORMANCE_PREFERENCE","features":[337]},{"name":"PROCESSOR_PPC_601","features":[337]},{"name":"PROCESSOR_PPC_603","features":[337]},{"name":"PROCESSOR_PPC_604","features":[337]},{"name":"PROCESSOR_PPC_620","features":[337]},{"name":"PROCESSOR_SHx_SH3","features":[337]},{"name":"PROCESSOR_SHx_SH4","features":[337]},{"name":"PROCESSOR_STRONGARM","features":[337]},{"name":"PROCESSOR_THROTTLE_AUTOMATIC","features":[337]},{"name":"PROCESSOR_THROTTLE_DISABLED","features":[337]},{"name":"PROCESSOR_THROTTLE_ENABLED","features":[337]},{"name":"PROCESS_HEAP_ENTRY_BUSY","features":[337]},{"name":"PROCESS_HEAP_ENTRY_DDESHARE","features":[337]},{"name":"PROCESS_HEAP_ENTRY_MOVEABLE","features":[337]},{"name":"PROCESS_HEAP_REGION","features":[337]},{"name":"PROCESS_HEAP_SEG_ALLOC","features":[337]},{"name":"PROCESS_HEAP_UNCOMMITTED_RANGE","features":[337]},{"name":"PROCESS_MITIGATION_ACTIVATION_CONTEXT_TRUST_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_ASLR_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_CHILD_PROCESS_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_DEP_POLICY","features":[303,337]},{"name":"PROCESS_MITIGATION_DYNAMIC_CODE_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_FONT_DISABLE_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_IMAGE_LOAD_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_REDIRECTION_TRUST_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_SEHOP_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_SIDE_CHANNEL_ISOLATION_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_USER_POINTER_AUTH_POLICY","features":[337]},{"name":"PROCESS_MITIGATION_USER_SHADOW_STACK_POLICY","features":[337]},{"name":"PROCESS_TRUST_LABEL_SECURITY_INFORMATION","features":[337]},{"name":"PROC_IDLE_BUCKET_COUNT","features":[337]},{"name":"PROC_IDLE_BUCKET_COUNT_EX","features":[337]},{"name":"PRODUCT_ARM64_SERVER","features":[337]},{"name":"PRODUCT_AZURESTACKHCI_SERVER_CORE","features":[337]},{"name":"PRODUCT_AZURE_NANO_SERVER","features":[337]},{"name":"PRODUCT_AZURE_SERVER_CLOUDHOST","features":[337]},{"name":"PRODUCT_AZURE_SERVER_CLOUDMOS","features":[337]},{"name":"PRODUCT_AZURE_SERVER_CORE","features":[337]},{"name":"PRODUCT_CLOUD","features":[337]},{"name":"PRODUCT_CLOUDE","features":[337]},{"name":"PRODUCT_CLOUDEDITION","features":[337]},{"name":"PRODUCT_CLOUDEDITIONN","features":[337]},{"name":"PRODUCT_CLOUDEN","features":[337]},{"name":"PRODUCT_CLOUDN","features":[337]},{"name":"PRODUCT_CLOUD_HOST_INFRASTRUCTURE_SERVER","features":[337]},{"name":"PRODUCT_CLOUD_STORAGE_SERVER","features":[337]},{"name":"PRODUCT_CONNECTED_CAR","features":[337]},{"name":"PRODUCT_CORE_ARM","features":[337]},{"name":"PRODUCT_CORE_CONNECTED","features":[337]},{"name":"PRODUCT_CORE_CONNECTED_COUNTRYSPECIFIC","features":[337]},{"name":"PRODUCT_CORE_CONNECTED_N","features":[337]},{"name":"PRODUCT_CORE_CONNECTED_SINGLELANGUAGE","features":[337]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER_CORE","features":[337]},{"name":"PRODUCT_DATACENTER_NANO_SERVER","features":[337]},{"name":"PRODUCT_DATACENTER_SERVER_AZURE_EDITION","features":[337]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_AZURE_EDITION","features":[337]},{"name":"PRODUCT_DATACENTER_WS_SERVER_CORE","features":[337]},{"name":"PRODUCT_EMBEDDED","features":[337]},{"name":"PRODUCT_EMBEDDED_A","features":[337]},{"name":"PRODUCT_EMBEDDED_AUTOMOTIVE","features":[337]},{"name":"PRODUCT_EMBEDDED_E","features":[337]},{"name":"PRODUCT_EMBEDDED_EVAL","features":[337]},{"name":"PRODUCT_EMBEDDED_E_EVAL","features":[337]},{"name":"PRODUCT_EMBEDDED_INDUSTRY","features":[337]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A","features":[337]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A_E","features":[337]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E","features":[337]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_EVAL","features":[337]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E_EVAL","features":[337]},{"name":"PRODUCT_ENTERPRISEG","features":[337]},{"name":"PRODUCT_ENTERPRISEGN","features":[337]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION","features":[337]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION_N","features":[337]},{"name":"PRODUCT_HOLOGRAPHIC","features":[337]},{"name":"PRODUCT_HOLOGRAPHIC_BUSINESS","features":[337]},{"name":"PRODUCT_HUBOS","features":[337]},{"name":"PRODUCT_INDUSTRY_HANDHELD","features":[337]},{"name":"PRODUCT_IOTEDGEOS","features":[337]},{"name":"PRODUCT_IOTENTERPRISE","features":[337]},{"name":"PRODUCT_IOTENTERPRISES","features":[337]},{"name":"PRODUCT_IOTOS","features":[337]},{"name":"PRODUCT_LITE","features":[337]},{"name":"PRODUCT_NANO_SERVER","features":[337]},{"name":"PRODUCT_ONECOREUPDATEOS","features":[337]},{"name":"PRODUCT_PPI_PRO","features":[337]},{"name":"PRODUCT_PROFESSIONAL_EMBEDDED","features":[337]},{"name":"PRODUCT_PROFESSIONAL_S","features":[337]},{"name":"PRODUCT_PROFESSIONAL_STUDENT","features":[337]},{"name":"PRODUCT_PROFESSIONAL_STUDENT_N","features":[337]},{"name":"PRODUCT_PROFESSIONAL_S_N","features":[337]},{"name":"PRODUCT_PRO_CHINA","features":[337]},{"name":"PRODUCT_PRO_FOR_EDUCATION","features":[337]},{"name":"PRODUCT_PRO_FOR_EDUCATION_N","features":[337]},{"name":"PRODUCT_PRO_SINGLE_LANGUAGE","features":[337]},{"name":"PRODUCT_SERVERRDSH","features":[337]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER_CORE","features":[337]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER_CORE","features":[337]},{"name":"PRODUCT_STANDARD_NANO_SERVER","features":[337]},{"name":"PRODUCT_STANDARD_SERVER_CORE","features":[337]},{"name":"PRODUCT_STANDARD_WS_SERVER_CORE","features":[337]},{"name":"PRODUCT_THINPC","features":[337]},{"name":"PRODUCT_UNLICENSED","features":[337]},{"name":"PRODUCT_UTILITY_VM","features":[337]},{"name":"PRODUCT_XBOX_DURANGOHOSTOS","features":[337]},{"name":"PRODUCT_XBOX_ERAOS","features":[337]},{"name":"PRODUCT_XBOX_GAMEOS","features":[337]},{"name":"PRODUCT_XBOX_KEYSTONE","features":[337]},{"name":"PRODUCT_XBOX_SCARLETTHOSTOS","features":[337]},{"name":"PRODUCT_XBOX_SYSTEMOS","features":[337]},{"name":"PTERMINATION_HANDLER","features":[303,337]},{"name":"PTERMINATION_HANDLER","features":[303,337]},{"name":"PUMS_SCHEDULER_ENTRY_POINT","features":[337]},{"name":"PcTeb","features":[337]},{"name":"PdataCrChained","features":[337]},{"name":"PdataCrChainedWithPac","features":[337]},{"name":"PdataCrUnchained","features":[337]},{"name":"PdataCrUnchainedSavedLr","features":[337]},{"name":"PdataPackedUnwindFragment","features":[337]},{"name":"PdataPackedUnwindFunction","features":[337]},{"name":"PdataRefToFullXdata","features":[337]},{"name":"PowerMonitorDim","features":[337]},{"name":"PowerMonitorOff","features":[337]},{"name":"PowerMonitorOn","features":[337]},{"name":"QUOTA_LIMITS_EX","features":[337]},{"name":"QUOTA_LIMITS_USE_DEFAULT_LIMITS","features":[337]},{"name":"RATE_QUOTA_LIMIT","features":[337]},{"name":"READ_THREAD_PROFILING_FLAG_DISPATCHING","features":[337]},{"name":"READ_THREAD_PROFILING_FLAG_HARDWARE_COUNTERS","features":[337]},{"name":"REARRANGE_FILE_DATA","features":[303,337]},{"name":"REARRANGE_FILE_DATA32","features":[337]},{"name":"RECO_COPY","features":[337]},{"name":"RECO_CUT","features":[337]},{"name":"RECO_DRAG","features":[337]},{"name":"RECO_DROP","features":[337]},{"name":"RECO_FLAGS","features":[337]},{"name":"RECO_PASTE","features":[337]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO","features":[337]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO_VERSION","features":[337]},{"name":"REG_APP_HIVE","features":[337]},{"name":"REG_APP_HIVE_OPEN_READ_ONLY","features":[337]},{"name":"REG_BOOT_HIVE","features":[337]},{"name":"REG_FLUSH_HIVE_FILE_GROWTH","features":[337]},{"name":"REG_FORCE_UNLOAD","features":[337]},{"name":"REG_HIVE_EXACT_FILE_GROWTH","features":[337]},{"name":"REG_HIVE_NO_RM","features":[337]},{"name":"REG_HIVE_SINGLE_LOG","features":[337]},{"name":"REG_IMMUTABLE","features":[337]},{"name":"REG_LOAD_HIVE_OPEN_HANDLE","features":[337]},{"name":"REG_NO_IMPERSONATION_FALLBACK","features":[337]},{"name":"REG_NO_LAZY_FLUSH","features":[337]},{"name":"REG_OPEN_READ_ONLY","features":[337]},{"name":"REG_PROCESS_PRIVATE","features":[337]},{"name":"REG_REFRESH_HIVE","features":[337]},{"name":"REG_START_JOURNAL","features":[337]},{"name":"REG_UNLOAD_LEGAL_FLAGS","features":[337]},{"name":"RESOURCEMANAGER_BASIC_INFORMATION","features":[337]},{"name":"RESOURCEMANAGER_COMPLETE_PROPAGATION","features":[337]},{"name":"RESOURCEMANAGER_COMPLETION_INFORMATION","features":[303,337]},{"name":"RESOURCEMANAGER_ENLIST","features":[337]},{"name":"RESOURCEMANAGER_GET_NOTIFICATION","features":[337]},{"name":"RESOURCEMANAGER_INFORMATION_CLASS","features":[337]},{"name":"RESOURCEMANAGER_QUERY_INFORMATION","features":[337]},{"name":"RESOURCEMANAGER_RECOVER","features":[337]},{"name":"RESOURCEMANAGER_REGISTER_PROTOCOL","features":[337]},{"name":"RESOURCEMANAGER_SET_INFORMATION","features":[337]},{"name":"ROT_COMPARE_MAX","features":[337]},{"name":"RTL_UMS_SCHEDULER_REASON","features":[337]},{"name":"RTL_UMS_VERSION","features":[337]},{"name":"RTL_VIRTUAL_UNWIND2_VALIDATE_PAC","features":[337]},{"name":"RUNTIME_FUNCTION_INDIRECT","features":[337]},{"name":"RecognizerType","features":[337]},{"name":"RemHBITMAP","features":[337]},{"name":"RemHBRUSH","features":[337]},{"name":"RemHENHMETAFILE","features":[337]},{"name":"RemHGLOBAL","features":[337]},{"name":"RemHMETAFILEPICT","features":[337]},{"name":"RemHPALETTE","features":[337]},{"name":"RemotableHandle","features":[337]},{"name":"ReplacesCorHdrNumericDefines","features":[337]},{"name":"ResourceManagerBasicInformation","features":[337]},{"name":"ResourceManagerCompletionInformation","features":[337]},{"name":"RunlevelInformationInActivationContext","features":[337]},{"name":"SCOPE_TABLE_AMD64","features":[337]},{"name":"SCOPE_TABLE_ARM","features":[337]},{"name":"SCOPE_TABLE_ARM64","features":[337]},{"name":"SCRUB_DATA_INPUT","features":[337]},{"name":"SCRUB_DATA_INPUT_FLAG_IGNORE_REDUNDANCY","features":[337]},{"name":"SCRUB_DATA_INPUT_FLAG_OPLOCK_NOT_ACQUIRED","features":[337]},{"name":"SCRUB_DATA_INPUT_FLAG_RESUME","features":[337]},{"name":"SCRUB_DATA_INPUT_FLAG_SCRUB_BY_OBJECT_ID","features":[337]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_DATA","features":[337]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_IN_SYNC","features":[337]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_NON_INTEGRITY_DATA","features":[337]},{"name":"SCRUB_DATA_OUTPUT","features":[337]},{"name":"SCRUB_DATA_OUTPUT_FLAG_INCOMPLETE","features":[337]},{"name":"SCRUB_DATA_OUTPUT_FLAG_NON_USER_DATA_RANGE","features":[337]},{"name":"SCRUB_DATA_OUTPUT_FLAG_PARITY_EXTENT_DATA_RETURNED","features":[337]},{"name":"SCRUB_DATA_OUTPUT_FLAG_RESUME_CONTEXT_LENGTH_SPECIFIED","features":[337]},{"name":"SCRUB_PARITY_EXTENT","features":[337]},{"name":"SCRUB_PARITY_EXTENT_DATA","features":[337]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[337]},{"name":"SECURITY_APPPOOL_ID_BASE_RID","features":[337]},{"name":"SECURITY_APPPOOL_ID_RID_COUNT","features":[337]},{"name":"SECURITY_APP_PACKAGE_BASE_RID","features":[337]},{"name":"SECURITY_APP_PACKAGE_RID_COUNT","features":[337]},{"name":"SECURITY_AUTHENTICATED_USER_RID","features":[337]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_ASSERTED_RID","features":[337]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_RID_COUNT","features":[337]},{"name":"SECURITY_AUTHENTICATION_FRESH_KEY_AUTH_RID","features":[337]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_ATTESTATION_RID","features":[337]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_MFA_RID","features":[337]},{"name":"SECURITY_AUTHENTICATION_KEY_TRUST_RID","features":[337]},{"name":"SECURITY_AUTHENTICATION_SERVICE_ASSERTED_RID","features":[337]},{"name":"SECURITY_BATCH_RID","features":[337]},{"name":"SECURITY_BUILTIN_APP_PACKAGE_RID_COUNT","features":[337]},{"name":"SECURITY_BUILTIN_CAPABILITY_RID_COUNT","features":[337]},{"name":"SECURITY_BUILTIN_DOMAIN_RID","features":[337]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE","features":[337]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_RESTRICTED_PACKAGE","features":[337]},{"name":"SECURITY_CAPABILITY_APPOINTMENTS","features":[337]},{"name":"SECURITY_CAPABILITY_APP_RID","features":[337]},{"name":"SECURITY_CAPABILITY_APP_SILO_RID","features":[337]},{"name":"SECURITY_CAPABILITY_BASE_RID","features":[337]},{"name":"SECURITY_CAPABILITY_CONTACTS","features":[337]},{"name":"SECURITY_CAPABILITY_DOCUMENTS_LIBRARY","features":[337]},{"name":"SECURITY_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[337]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT","features":[337]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT_SERVER","features":[337]},{"name":"SECURITY_CAPABILITY_INTERNET_EXPLORER","features":[337]},{"name":"SECURITY_CAPABILITY_MUSIC_LIBRARY","features":[337]},{"name":"SECURITY_CAPABILITY_PICTURES_LIBRARY","features":[337]},{"name":"SECURITY_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[337]},{"name":"SECURITY_CAPABILITY_REMOVABLE_STORAGE","features":[337]},{"name":"SECURITY_CAPABILITY_RID_COUNT","features":[337]},{"name":"SECURITY_CAPABILITY_SHARED_USER_CERTIFICATES","features":[337]},{"name":"SECURITY_CAPABILITY_VIDEOS_LIBRARY","features":[337]},{"name":"SECURITY_CCG_ID_BASE_RID","features":[337]},{"name":"SECURITY_CHILD_PACKAGE_RID_COUNT","features":[337]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_BASE_RID","features":[337]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_RID_COUNT","features":[337]},{"name":"SECURITY_COM_ID_BASE_RID","features":[337]},{"name":"SECURITY_CREATOR_GROUP_RID","features":[337]},{"name":"SECURITY_CREATOR_GROUP_SERVER_RID","features":[337]},{"name":"SECURITY_CREATOR_OWNER_RID","features":[337]},{"name":"SECURITY_CREATOR_OWNER_RIGHTS_RID","features":[337]},{"name":"SECURITY_CREATOR_OWNER_SERVER_RID","features":[337]},{"name":"SECURITY_CRED_TYPE_BASE_RID","features":[337]},{"name":"SECURITY_CRED_TYPE_RID_COUNT","features":[337]},{"name":"SECURITY_CRED_TYPE_THIS_ORG_CERT_RID","features":[337]},{"name":"SECURITY_DASHOST_ID_BASE_RID","features":[337]},{"name":"SECURITY_DASHOST_ID_RID_COUNT","features":[337]},{"name":"SECURITY_DESCRIPTOR_REVISION","features":[337]},{"name":"SECURITY_DESCRIPTOR_REVISION1","features":[337]},{"name":"SECURITY_DIALUP_RID","features":[337]},{"name":"SECURITY_ENTERPRISE_CONTROLLERS_RID","features":[337]},{"name":"SECURITY_ENTERPRISE_READONLY_CONTROLLERS_RID","features":[337]},{"name":"SECURITY_INSTALLER_CAPABILITY_RID_COUNT","features":[337]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_BASE","features":[337]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_RID_COUNT","features":[337]},{"name":"SECURITY_INTERACTIVE_RID","features":[337]},{"name":"SECURITY_IUSER_RID","features":[337]},{"name":"SECURITY_LOCAL_ACCOUNT_AND_ADMIN_RID","features":[337]},{"name":"SECURITY_LOCAL_ACCOUNT_RID","features":[337]},{"name":"SECURITY_LOCAL_LOGON_RID","features":[337]},{"name":"SECURITY_LOCAL_RID","features":[337]},{"name":"SECURITY_LOCAL_SERVICE_RID","features":[337]},{"name":"SECURITY_LOCAL_SYSTEM_RID","features":[337]},{"name":"SECURITY_LOGON_IDS_RID","features":[337]},{"name":"SECURITY_LOGON_IDS_RID_COUNT","features":[337]},{"name":"SECURITY_MANDATORY_HIGH_RID","features":[337]},{"name":"SECURITY_MANDATORY_LOW_RID","features":[337]},{"name":"SECURITY_MANDATORY_MAXIMUM_USER_RID","features":[337]},{"name":"SECURITY_MANDATORY_MEDIUM_PLUS_RID","features":[337]},{"name":"SECURITY_MANDATORY_MEDIUM_RID","features":[337]},{"name":"SECURITY_MANDATORY_PROTECTED_PROCESS_RID","features":[337]},{"name":"SECURITY_MANDATORY_SYSTEM_RID","features":[337]},{"name":"SECURITY_MANDATORY_UNTRUSTED_RID","features":[337]},{"name":"SECURITY_MAX_ALWAYS_FILTERED","features":[337]},{"name":"SECURITY_MAX_BASE_RID","features":[337]},{"name":"SECURITY_MIN_BASE_RID","features":[337]},{"name":"SECURITY_MIN_NEVER_FILTERED","features":[337]},{"name":"SECURITY_NETWORK_RID","features":[337]},{"name":"SECURITY_NETWORK_SERVICE_RID","features":[337]},{"name":"SECURITY_NFS_ID_BASE_RID","features":[337]},{"name":"SECURITY_NT_NON_UNIQUE","features":[337]},{"name":"SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT","features":[337]},{"name":"SECURITY_NULL_RID","features":[337]},{"name":"SECURITY_OBJECT_AI_PARAMS","features":[337]},{"name":"SECURITY_OTHER_ORGANIZATION_RID","features":[337]},{"name":"SECURITY_PACKAGE_BASE_RID","features":[337]},{"name":"SECURITY_PACKAGE_DIGEST_RID","features":[337]},{"name":"SECURITY_PACKAGE_NTLM_RID","features":[337]},{"name":"SECURITY_PACKAGE_RID_COUNT","features":[337]},{"name":"SECURITY_PACKAGE_SCHANNEL_RID","features":[337]},{"name":"SECURITY_PARENT_PACKAGE_RID_COUNT","features":[337]},{"name":"SECURITY_PRINCIPAL_SELF_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_ANTIMALWARE_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_APP_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_AUTHENTICODE_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_NONE_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINDOWS_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINTCB_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_FULL_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_LITE_RID","features":[337]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_NONE_RID","features":[337]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY_RID_COUNT","features":[337]},{"name":"SECURITY_PROXY_RID","features":[337]},{"name":"SECURITY_RDV_GFX_BASE_RID","features":[337]},{"name":"SECURITY_REMOTE_LOGON_RID","features":[337]},{"name":"SECURITY_RESERVED_ID_BASE_RID","features":[337]},{"name":"SECURITY_RESTRICTED_CODE_RID","features":[337]},{"name":"SECURITY_SERVER_LOGON_RID","features":[337]},{"name":"SECURITY_SERVICE_ID_BASE_RID","features":[337]},{"name":"SECURITY_SERVICE_ID_RID_COUNT","features":[337]},{"name":"SECURITY_SERVICE_RID","features":[337]},{"name":"SECURITY_TASK_ID_BASE_RID","features":[337]},{"name":"SECURITY_TERMINAL_SERVER_RID","features":[337]},{"name":"SECURITY_THIS_ORGANIZATION_RID","features":[337]},{"name":"SECURITY_TRUSTED_INSTALLER_RID1","features":[337]},{"name":"SECURITY_TRUSTED_INSTALLER_RID2","features":[337]},{"name":"SECURITY_TRUSTED_INSTALLER_RID3","features":[337]},{"name":"SECURITY_TRUSTED_INSTALLER_RID4","features":[337]},{"name":"SECURITY_TRUSTED_INSTALLER_RID5","features":[337]},{"name":"SECURITY_UMFD_BASE_RID","features":[337]},{"name":"SECURITY_USERMANAGER_ID_BASE_RID","features":[337]},{"name":"SECURITY_USERMANAGER_ID_RID_COUNT","features":[337]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_BASE_RID","features":[337]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_RID_COUNT","features":[337]},{"name":"SECURITY_VIRTUALACCOUNT_ID_RID_COUNT","features":[337]},{"name":"SECURITY_VIRTUALSERVER_ID_BASE_RID","features":[337]},{"name":"SECURITY_VIRTUALSERVER_ID_RID_COUNT","features":[337]},{"name":"SECURITY_WINDOWSMOBILE_ID_BASE_RID","features":[337]},{"name":"SECURITY_WINDOW_MANAGER_BASE_RID","features":[337]},{"name":"SECURITY_WINRM_ID_BASE_RID","features":[337]},{"name":"SECURITY_WINRM_ID_RID_COUNT","features":[337]},{"name":"SECURITY_WMIHOST_ID_BASE_RID","features":[337]},{"name":"SECURITY_WMIHOST_ID_RID_COUNT","features":[337]},{"name":"SECURITY_WORLD_RID","features":[337]},{"name":"SECURITY_WRITE_RESTRICTED_CODE_RID","features":[337]},{"name":"SEC_HUGE_PAGES","features":[337]},{"name":"SEF_AI_USE_EXTRA_PARAMS","features":[337]},{"name":"SEF_FORCE_USER_MODE","features":[337]},{"name":"SEF_NORMALIZE_OUTPUT_DESCRIPTOR","features":[337]},{"name":"SERVERSILO_BASIC_INFORMATION","features":[303,337]},{"name":"SERVERSILO_INITING","features":[337]},{"name":"SERVERSILO_SHUTTING_DOWN","features":[337]},{"name":"SERVERSILO_STARTED","features":[337]},{"name":"SERVERSILO_STATE","features":[337]},{"name":"SERVERSILO_TERMINATED","features":[337]},{"name":"SERVERSILO_TERMINATING","features":[337]},{"name":"SERVICE_ERROR_TYPE","features":[337]},{"name":"SERVICE_INTERACTIVE_PROCESS","features":[337]},{"name":"SERVICE_LOAD_TYPE","features":[337]},{"name":"SERVICE_NODE_TYPE","features":[337]},{"name":"SERVICE_PKG_SERVICE","features":[337]},{"name":"SERVICE_USERSERVICE_INSTANCE","features":[337]},{"name":"SERVICE_USER_SERVICE","features":[337]},{"name":"SESSION_MODIFY_ACCESS","features":[337]},{"name":"SESSION_QUERY_ACCESS","features":[337]},{"name":"SE_ACCESS_CHECK_FLAG_NO_LEARNING_MODE_LOGGING","features":[337]},{"name":"SE_ACCESS_CHECK_VALID_FLAGS","features":[337]},{"name":"SE_ACTIVATE_AS_USER_CAPABILITY","features":[337]},{"name":"SE_APP_SILO_PRINT_CAPABILITY","features":[337]},{"name":"SE_APP_SILO_PROFILES_ROOT_MINIMAL_CAPABILITY","features":[337]},{"name":"SE_APP_SILO_USER_PROFILE_MINIMAL_CAPABILITY","features":[337]},{"name":"SE_APP_SILO_VOLUME_ROOT_MINIMAL_CAPABILITY","features":[337]},{"name":"SE_CONSTRAINED_IMPERSONATION_CAPABILITY","features":[337]},{"name":"SE_DEVELOPMENT_MODE_NETWORK_CAPABILITY","features":[337]},{"name":"SE_GROUP_ENABLED","features":[337]},{"name":"SE_GROUP_ENABLED_BY_DEFAULT","features":[337]},{"name":"SE_GROUP_INTEGRITY","features":[337]},{"name":"SE_GROUP_INTEGRITY_ENABLED","features":[337]},{"name":"SE_GROUP_LOGON_ID","features":[337]},{"name":"SE_GROUP_MANDATORY","features":[337]},{"name":"SE_GROUP_OWNER","features":[337]},{"name":"SE_GROUP_RESOURCE","features":[337]},{"name":"SE_GROUP_USE_FOR_DENY_ONLY","features":[337]},{"name":"SE_IMAGE_SIGNATURE_TYPE","features":[337]},{"name":"SE_LEARNING_MODE_LOGGING_CAPABILITY","features":[337]},{"name":"SE_MUMA_CAPABILITY","features":[337]},{"name":"SE_PERMISSIVE_LEARNING_MODE_CAPABILITY","features":[337]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_ACCESS_FILTER_ACE","features":[337]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_LABEL_ACE","features":[337]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_OWNER_ACE","features":[337]},{"name":"SE_SECURITY_DESCRIPTOR_VALID_FLAGS","features":[337]},{"name":"SE_SESSION_IMPERSONATION_CAPABILITY","features":[337]},{"name":"SE_SIGNING_LEVEL_ANTIMALWARE","features":[337]},{"name":"SE_SIGNING_LEVEL_AUTHENTICODE","features":[337]},{"name":"SE_SIGNING_LEVEL_CUSTOM_1","features":[337]},{"name":"SE_SIGNING_LEVEL_CUSTOM_2","features":[337]},{"name":"SE_SIGNING_LEVEL_CUSTOM_3","features":[337]},{"name":"SE_SIGNING_LEVEL_CUSTOM_4","features":[337]},{"name":"SE_SIGNING_LEVEL_CUSTOM_5","features":[337]},{"name":"SE_SIGNING_LEVEL_CUSTOM_6","features":[337]},{"name":"SE_SIGNING_LEVEL_CUSTOM_7","features":[337]},{"name":"SE_SIGNING_LEVEL_DEVELOPER","features":[337]},{"name":"SE_SIGNING_LEVEL_DYNAMIC_CODEGEN","features":[337]},{"name":"SE_SIGNING_LEVEL_ENTERPRISE","features":[337]},{"name":"SE_SIGNING_LEVEL_MICROSOFT","features":[337]},{"name":"SE_SIGNING_LEVEL_STORE","features":[337]},{"name":"SE_SIGNING_LEVEL_UNCHECKED","features":[337]},{"name":"SE_SIGNING_LEVEL_UNSIGNED","features":[337]},{"name":"SE_SIGNING_LEVEL_WINDOWS","features":[337]},{"name":"SE_SIGNING_LEVEL_WINDOWS_TCB","features":[337]},{"name":"SE_TOKEN_USER","features":[303,306,337]},{"name":"SFGAO_BROWSABLE","features":[337]},{"name":"SFGAO_CANCOPY","features":[337]},{"name":"SFGAO_CANDELETE","features":[337]},{"name":"SFGAO_CANLINK","features":[337]},{"name":"SFGAO_CANMONIKER","features":[337]},{"name":"SFGAO_CANMOVE","features":[337]},{"name":"SFGAO_CANRENAME","features":[337]},{"name":"SFGAO_CAPABILITYMASK","features":[337]},{"name":"SFGAO_COMPRESSED","features":[337]},{"name":"SFGAO_CONTENTSMASK","features":[337]},{"name":"SFGAO_DISPLAYATTRMASK","features":[337]},{"name":"SFGAO_DROPTARGET","features":[337]},{"name":"SFGAO_ENCRYPTED","features":[337]},{"name":"SFGAO_FILESYSANCESTOR","features":[337]},{"name":"SFGAO_FILESYSTEM","features":[337]},{"name":"SFGAO_FLAGS","features":[337]},{"name":"SFGAO_FOLDER","features":[337]},{"name":"SFGAO_GHOSTED","features":[337]},{"name":"SFGAO_HASPROPSHEET","features":[337]},{"name":"SFGAO_HASSTORAGE","features":[337]},{"name":"SFGAO_HASSUBFOLDER","features":[337]},{"name":"SFGAO_HIDDEN","features":[337]},{"name":"SFGAO_ISSLOW","features":[337]},{"name":"SFGAO_LINK","features":[337]},{"name":"SFGAO_NEWCONTENT","features":[337]},{"name":"SFGAO_NONENUMERATED","features":[337]},{"name":"SFGAO_PKEYSFGAOMASK","features":[337]},{"name":"SFGAO_PLACEHOLDER","features":[337]},{"name":"SFGAO_READONLY","features":[337]},{"name":"SFGAO_REMOVABLE","features":[337]},{"name":"SFGAO_SHARE","features":[337]},{"name":"SFGAO_STORAGE","features":[337]},{"name":"SFGAO_STORAGEANCESTOR","features":[337]},{"name":"SFGAO_STORAGECAPMASK","features":[337]},{"name":"SFGAO_STREAM","features":[337]},{"name":"SFGAO_SYSTEM","features":[337]},{"name":"SFGAO_VALIDATE","features":[337]},{"name":"SHARED_VIRTUAL_DISK_SUPPORT","features":[337]},{"name":"SHUFFLE_FILE_DATA","features":[337]},{"name":"SHUFFLE_FILE_FLAG_SKIP_INITIALIZING_NEW_CLUSTERS","features":[337]},{"name":"SID_HASH_SIZE","features":[337]},{"name":"SID_MAX_SUB_AUTHORITIES","features":[337]},{"name":"SID_RECOMMENDED_SUB_AUTHORITIES","features":[337]},{"name":"SID_REVISION","features":[337]},{"name":"SILOOBJECT_BASIC_INFORMATION","features":[303,337]},{"name":"SIZEOF_RFPO_DATA","features":[337]},{"name":"SIZE_OF_80387_REGISTERS","features":[337]},{"name":"SMB_CCF_APP_INSTANCE_EA_NAME","features":[337]},{"name":"SMT_UNPARKING_POLICY_CORE","features":[337]},{"name":"SMT_UNPARKING_POLICY_CORE_PER_THREAD","features":[337]},{"name":"SMT_UNPARKING_POLICY_LP_ROUNDROBIN","features":[337]},{"name":"SMT_UNPARKING_POLICY_LP_SEQUENTIAL","features":[337]},{"name":"SORT_CHINESE_BIG5","features":[337]},{"name":"SORT_CHINESE_BOPOMOFO","features":[337]},{"name":"SORT_CHINESE_PRC","features":[337]},{"name":"SORT_CHINESE_PRCP","features":[337]},{"name":"SORT_CHINESE_RADICALSTROKE","features":[337]},{"name":"SORT_CHINESE_UNICODE","features":[337]},{"name":"SORT_DEFAULT","features":[337]},{"name":"SORT_GEORGIAN_MODERN","features":[337]},{"name":"SORT_GEORGIAN_TRADITIONAL","features":[337]},{"name":"SORT_GERMAN_PHONE_BOOK","features":[337]},{"name":"SORT_HUNGARIAN_DEFAULT","features":[337]},{"name":"SORT_HUNGARIAN_TECHNICAL","features":[337]},{"name":"SORT_INVARIANT_MATH","features":[337]},{"name":"SORT_JAPANESE_RADICALSTROKE","features":[337]},{"name":"SORT_JAPANESE_UNICODE","features":[337]},{"name":"SORT_JAPANESE_XJIS","features":[337]},{"name":"SORT_KOREAN_KSC","features":[337]},{"name":"SORT_KOREAN_UNICODE","features":[337]},{"name":"SS_BITMAP","features":[337]},{"name":"SS_BLACKFRAME","features":[337]},{"name":"SS_BLACKRECT","features":[337]},{"name":"SS_CENTER","features":[337]},{"name":"SS_CENTERIMAGE","features":[337]},{"name":"SS_EDITCONTROL","features":[337]},{"name":"SS_ELLIPSISMASK","features":[337]},{"name":"SS_ENDELLIPSIS","features":[337]},{"name":"SS_ENHMETAFILE","features":[337]},{"name":"SS_ETCHEDFRAME","features":[337]},{"name":"SS_ETCHEDHORZ","features":[337]},{"name":"SS_ETCHEDVERT","features":[337]},{"name":"SS_GRAYFRAME","features":[337]},{"name":"SS_GRAYRECT","features":[337]},{"name":"SS_ICON","features":[337]},{"name":"SS_LEFT","features":[337]},{"name":"SS_LEFTNOWORDWRAP","features":[337]},{"name":"SS_NOPREFIX","features":[337]},{"name":"SS_NOTIFY","features":[337]},{"name":"SS_OWNERDRAW","features":[337]},{"name":"SS_PATHELLIPSIS","features":[337]},{"name":"SS_REALSIZECONTROL","features":[337]},{"name":"SS_REALSIZEIMAGE","features":[337]},{"name":"SS_RIGHT","features":[337]},{"name":"SS_RIGHTJUST","features":[337]},{"name":"SS_SIMPLE","features":[337]},{"name":"SS_SUNKEN","features":[337]},{"name":"SS_TYPEMASK","features":[337]},{"name":"SS_USERITEM","features":[337]},{"name":"SS_WHITEFRAME","features":[337]},{"name":"SS_WHITERECT","features":[337]},{"name":"SS_WORDELLIPSIS","features":[337]},{"name":"STATIC_STYLES","features":[337]},{"name":"SUBLANG_AFRIKAANS_SOUTH_AFRICA","features":[337]},{"name":"SUBLANG_ALBANIAN_ALBANIA","features":[337]},{"name":"SUBLANG_ALSATIAN_FRANCE","features":[337]},{"name":"SUBLANG_AMHARIC_ETHIOPIA","features":[337]},{"name":"SUBLANG_ARABIC_ALGERIA","features":[337]},{"name":"SUBLANG_ARABIC_BAHRAIN","features":[337]},{"name":"SUBLANG_ARABIC_EGYPT","features":[337]},{"name":"SUBLANG_ARABIC_IRAQ","features":[337]},{"name":"SUBLANG_ARABIC_JORDAN","features":[337]},{"name":"SUBLANG_ARABIC_KUWAIT","features":[337]},{"name":"SUBLANG_ARABIC_LEBANON","features":[337]},{"name":"SUBLANG_ARABIC_LIBYA","features":[337]},{"name":"SUBLANG_ARABIC_MOROCCO","features":[337]},{"name":"SUBLANG_ARABIC_OMAN","features":[337]},{"name":"SUBLANG_ARABIC_QATAR","features":[337]},{"name":"SUBLANG_ARABIC_SAUDI_ARABIA","features":[337]},{"name":"SUBLANG_ARABIC_SYRIA","features":[337]},{"name":"SUBLANG_ARABIC_TUNISIA","features":[337]},{"name":"SUBLANG_ARABIC_UAE","features":[337]},{"name":"SUBLANG_ARABIC_YEMEN","features":[337]},{"name":"SUBLANG_ARMENIAN_ARMENIA","features":[337]},{"name":"SUBLANG_ASSAMESE_INDIA","features":[337]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_CYRILLIC","features":[337]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_LATIN","features":[337]},{"name":"SUBLANG_AZERI_CYRILLIC","features":[337]},{"name":"SUBLANG_AZERI_LATIN","features":[337]},{"name":"SUBLANG_BANGLA_BANGLADESH","features":[337]},{"name":"SUBLANG_BANGLA_INDIA","features":[337]},{"name":"SUBLANG_BASHKIR_RUSSIA","features":[337]},{"name":"SUBLANG_BASQUE_BASQUE","features":[337]},{"name":"SUBLANG_BELARUSIAN_BELARUS","features":[337]},{"name":"SUBLANG_BENGALI_BANGLADESH","features":[337]},{"name":"SUBLANG_BENGALI_INDIA","features":[337]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[337]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN","features":[337]},{"name":"SUBLANG_BRETON_FRANCE","features":[337]},{"name":"SUBLANG_BULGARIAN_BULGARIA","features":[337]},{"name":"SUBLANG_CATALAN_CATALAN","features":[337]},{"name":"SUBLANG_CENTRAL_KURDISH_IRAQ","features":[337]},{"name":"SUBLANG_CHEROKEE_CHEROKEE","features":[337]},{"name":"SUBLANG_CHINESE_HONGKONG","features":[337]},{"name":"SUBLANG_CHINESE_MACAU","features":[337]},{"name":"SUBLANG_CHINESE_SIMPLIFIED","features":[337]},{"name":"SUBLANG_CHINESE_SINGAPORE","features":[337]},{"name":"SUBLANG_CHINESE_TRADITIONAL","features":[337]},{"name":"SUBLANG_CORSICAN_FRANCE","features":[337]},{"name":"SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN","features":[337]},{"name":"SUBLANG_CROATIAN_CROATIA","features":[337]},{"name":"SUBLANG_CUSTOM_DEFAULT","features":[337]},{"name":"SUBLANG_CUSTOM_UNSPECIFIED","features":[337]},{"name":"SUBLANG_CZECH_CZECH_REPUBLIC","features":[337]},{"name":"SUBLANG_DANISH_DENMARK","features":[337]},{"name":"SUBLANG_DARI_AFGHANISTAN","features":[337]},{"name":"SUBLANG_DEFAULT","features":[337]},{"name":"SUBLANG_DIVEHI_MALDIVES","features":[337]},{"name":"SUBLANG_DUTCH","features":[337]},{"name":"SUBLANG_DUTCH_BELGIAN","features":[337]},{"name":"SUBLANG_ENGLISH_AUS","features":[337]},{"name":"SUBLANG_ENGLISH_BELIZE","features":[337]},{"name":"SUBLANG_ENGLISH_CAN","features":[337]},{"name":"SUBLANG_ENGLISH_CARIBBEAN","features":[337]},{"name":"SUBLANG_ENGLISH_EIRE","features":[337]},{"name":"SUBLANG_ENGLISH_INDIA","features":[337]},{"name":"SUBLANG_ENGLISH_JAMAICA","features":[337]},{"name":"SUBLANG_ENGLISH_MALAYSIA","features":[337]},{"name":"SUBLANG_ENGLISH_NZ","features":[337]},{"name":"SUBLANG_ENGLISH_PHILIPPINES","features":[337]},{"name":"SUBLANG_ENGLISH_SINGAPORE","features":[337]},{"name":"SUBLANG_ENGLISH_SOUTH_AFRICA","features":[337]},{"name":"SUBLANG_ENGLISH_TRINIDAD","features":[337]},{"name":"SUBLANG_ENGLISH_UK","features":[337]},{"name":"SUBLANG_ENGLISH_US","features":[337]},{"name":"SUBLANG_ENGLISH_ZIMBABWE","features":[337]},{"name":"SUBLANG_ESTONIAN_ESTONIA","features":[337]},{"name":"SUBLANG_FAEROESE_FAROE_ISLANDS","features":[337]},{"name":"SUBLANG_FILIPINO_PHILIPPINES","features":[337]},{"name":"SUBLANG_FINNISH_FINLAND","features":[337]},{"name":"SUBLANG_FRENCH","features":[337]},{"name":"SUBLANG_FRENCH_BELGIAN","features":[337]},{"name":"SUBLANG_FRENCH_CANADIAN","features":[337]},{"name":"SUBLANG_FRENCH_LUXEMBOURG","features":[337]},{"name":"SUBLANG_FRENCH_MONACO","features":[337]},{"name":"SUBLANG_FRENCH_SWISS","features":[337]},{"name":"SUBLANG_FRISIAN_NETHERLANDS","features":[337]},{"name":"SUBLANG_FULAH_SENEGAL","features":[337]},{"name":"SUBLANG_GALICIAN_GALICIAN","features":[337]},{"name":"SUBLANG_GEORGIAN_GEORGIA","features":[337]},{"name":"SUBLANG_GERMAN","features":[337]},{"name":"SUBLANG_GERMAN_AUSTRIAN","features":[337]},{"name":"SUBLANG_GERMAN_LIECHTENSTEIN","features":[337]},{"name":"SUBLANG_GERMAN_LUXEMBOURG","features":[337]},{"name":"SUBLANG_GERMAN_SWISS","features":[337]},{"name":"SUBLANG_GREEK_GREECE","features":[337]},{"name":"SUBLANG_GREENLANDIC_GREENLAND","features":[337]},{"name":"SUBLANG_GUJARATI_INDIA","features":[337]},{"name":"SUBLANG_HAUSA_NIGERIA_LATIN","features":[337]},{"name":"SUBLANG_HAWAIIAN_US","features":[337]},{"name":"SUBLANG_HEBREW_ISRAEL","features":[337]},{"name":"SUBLANG_HINDI_INDIA","features":[337]},{"name":"SUBLANG_HUNGARIAN_HUNGARY","features":[337]},{"name":"SUBLANG_ICELANDIC_ICELAND","features":[337]},{"name":"SUBLANG_IGBO_NIGERIA","features":[337]},{"name":"SUBLANG_INDONESIAN_INDONESIA","features":[337]},{"name":"SUBLANG_INUKTITUT_CANADA","features":[337]},{"name":"SUBLANG_INUKTITUT_CANADA_LATIN","features":[337]},{"name":"SUBLANG_IRISH_IRELAND","features":[337]},{"name":"SUBLANG_ITALIAN","features":[337]},{"name":"SUBLANG_ITALIAN_SWISS","features":[337]},{"name":"SUBLANG_JAPANESE_JAPAN","features":[337]},{"name":"SUBLANG_KANNADA_INDIA","features":[337]},{"name":"SUBLANG_KASHMIRI_INDIA","features":[337]},{"name":"SUBLANG_KASHMIRI_SASIA","features":[337]},{"name":"SUBLANG_KAZAK_KAZAKHSTAN","features":[337]},{"name":"SUBLANG_KHMER_CAMBODIA","features":[337]},{"name":"SUBLANG_KICHE_GUATEMALA","features":[337]},{"name":"SUBLANG_KINYARWANDA_RWANDA","features":[337]},{"name":"SUBLANG_KONKANI_INDIA","features":[337]},{"name":"SUBLANG_KOREAN","features":[337]},{"name":"SUBLANG_KYRGYZ_KYRGYZSTAN","features":[337]},{"name":"SUBLANG_LAO_LAO","features":[337]},{"name":"SUBLANG_LATVIAN_LATVIA","features":[337]},{"name":"SUBLANG_LITHUANIAN","features":[337]},{"name":"SUBLANG_LOWER_SORBIAN_GERMANY","features":[337]},{"name":"SUBLANG_LUXEMBOURGISH_LUXEMBOURG","features":[337]},{"name":"SUBLANG_MACEDONIAN_MACEDONIA","features":[337]},{"name":"SUBLANG_MALAYALAM_INDIA","features":[337]},{"name":"SUBLANG_MALAY_BRUNEI_DARUSSALAM","features":[337]},{"name":"SUBLANG_MALAY_MALAYSIA","features":[337]},{"name":"SUBLANG_MALTESE_MALTA","features":[337]},{"name":"SUBLANG_MAORI_NEW_ZEALAND","features":[337]},{"name":"SUBLANG_MAPUDUNGUN_CHILE","features":[337]},{"name":"SUBLANG_MARATHI_INDIA","features":[337]},{"name":"SUBLANG_MOHAWK_MOHAWK","features":[337]},{"name":"SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA","features":[337]},{"name":"SUBLANG_MONGOLIAN_PRC","features":[337]},{"name":"SUBLANG_NEPALI_INDIA","features":[337]},{"name":"SUBLANG_NEPALI_NEPAL","features":[337]},{"name":"SUBLANG_NEUTRAL","features":[337]},{"name":"SUBLANG_NORWEGIAN_BOKMAL","features":[337]},{"name":"SUBLANG_NORWEGIAN_NYNORSK","features":[337]},{"name":"SUBLANG_OCCITAN_FRANCE","features":[337]},{"name":"SUBLANG_ODIA_INDIA","features":[337]},{"name":"SUBLANG_ORIYA_INDIA","features":[337]},{"name":"SUBLANG_PASHTO_AFGHANISTAN","features":[337]},{"name":"SUBLANG_PERSIAN_IRAN","features":[337]},{"name":"SUBLANG_POLISH_POLAND","features":[337]},{"name":"SUBLANG_PORTUGUESE","features":[337]},{"name":"SUBLANG_PORTUGUESE_BRAZILIAN","features":[337]},{"name":"SUBLANG_PULAR_SENEGAL","features":[337]},{"name":"SUBLANG_PUNJABI_INDIA","features":[337]},{"name":"SUBLANG_PUNJABI_PAKISTAN","features":[337]},{"name":"SUBLANG_QUECHUA_BOLIVIA","features":[337]},{"name":"SUBLANG_QUECHUA_ECUADOR","features":[337]},{"name":"SUBLANG_QUECHUA_PERU","features":[337]},{"name":"SUBLANG_ROMANIAN_ROMANIA","features":[337]},{"name":"SUBLANG_ROMANSH_SWITZERLAND","features":[337]},{"name":"SUBLANG_RUSSIAN_RUSSIA","features":[337]},{"name":"SUBLANG_SAKHA_RUSSIA","features":[337]},{"name":"SUBLANG_SAMI_INARI_FINLAND","features":[337]},{"name":"SUBLANG_SAMI_LULE_NORWAY","features":[337]},{"name":"SUBLANG_SAMI_LULE_SWEDEN","features":[337]},{"name":"SUBLANG_SAMI_NORTHERN_FINLAND","features":[337]},{"name":"SUBLANG_SAMI_NORTHERN_NORWAY","features":[337]},{"name":"SUBLANG_SAMI_NORTHERN_SWEDEN","features":[337]},{"name":"SUBLANG_SAMI_SKOLT_FINLAND","features":[337]},{"name":"SUBLANG_SAMI_SOUTHERN_NORWAY","features":[337]},{"name":"SUBLANG_SAMI_SOUTHERN_SWEDEN","features":[337]},{"name":"SUBLANG_SANSKRIT_INDIA","features":[337]},{"name":"SUBLANG_SCOTTISH_GAELIC","features":[337]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[337]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN","features":[337]},{"name":"SUBLANG_SERBIAN_CROATIA","features":[337]},{"name":"SUBLANG_SERBIAN_CYRILLIC","features":[337]},{"name":"SUBLANG_SERBIAN_LATIN","features":[337]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_CYRILLIC","features":[337]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_LATIN","features":[337]},{"name":"SUBLANG_SERBIAN_SERBIA_CYRILLIC","features":[337]},{"name":"SUBLANG_SERBIAN_SERBIA_LATIN","features":[337]},{"name":"SUBLANG_SINDHI_AFGHANISTAN","features":[337]},{"name":"SUBLANG_SINDHI_INDIA","features":[337]},{"name":"SUBLANG_SINDHI_PAKISTAN","features":[337]},{"name":"SUBLANG_SINHALESE_SRI_LANKA","features":[337]},{"name":"SUBLANG_SLOVAK_SLOVAKIA","features":[337]},{"name":"SUBLANG_SLOVENIAN_SLOVENIA","features":[337]},{"name":"SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA","features":[337]},{"name":"SUBLANG_SPANISH","features":[337]},{"name":"SUBLANG_SPANISH_ARGENTINA","features":[337]},{"name":"SUBLANG_SPANISH_BOLIVIA","features":[337]},{"name":"SUBLANG_SPANISH_CHILE","features":[337]},{"name":"SUBLANG_SPANISH_COLOMBIA","features":[337]},{"name":"SUBLANG_SPANISH_COSTA_RICA","features":[337]},{"name":"SUBLANG_SPANISH_DOMINICAN_REPUBLIC","features":[337]},{"name":"SUBLANG_SPANISH_ECUADOR","features":[337]},{"name":"SUBLANG_SPANISH_EL_SALVADOR","features":[337]},{"name":"SUBLANG_SPANISH_GUATEMALA","features":[337]},{"name":"SUBLANG_SPANISH_HONDURAS","features":[337]},{"name":"SUBLANG_SPANISH_MEXICAN","features":[337]},{"name":"SUBLANG_SPANISH_MODERN","features":[337]},{"name":"SUBLANG_SPANISH_NICARAGUA","features":[337]},{"name":"SUBLANG_SPANISH_PANAMA","features":[337]},{"name":"SUBLANG_SPANISH_PARAGUAY","features":[337]},{"name":"SUBLANG_SPANISH_PERU","features":[337]},{"name":"SUBLANG_SPANISH_PUERTO_RICO","features":[337]},{"name":"SUBLANG_SPANISH_URUGUAY","features":[337]},{"name":"SUBLANG_SPANISH_US","features":[337]},{"name":"SUBLANG_SPANISH_VENEZUELA","features":[337]},{"name":"SUBLANG_SWAHILI_KENYA","features":[337]},{"name":"SUBLANG_SWEDISH","features":[337]},{"name":"SUBLANG_SWEDISH_FINLAND","features":[337]},{"name":"SUBLANG_SYRIAC_SYRIA","features":[337]},{"name":"SUBLANG_SYS_DEFAULT","features":[337]},{"name":"SUBLANG_TAJIK_TAJIKISTAN","features":[337]},{"name":"SUBLANG_TAMAZIGHT_ALGERIA_LATIN","features":[337]},{"name":"SUBLANG_TAMAZIGHT_MOROCCO_TIFINAGH","features":[337]},{"name":"SUBLANG_TAMIL_INDIA","features":[337]},{"name":"SUBLANG_TAMIL_SRI_LANKA","features":[337]},{"name":"SUBLANG_TATAR_RUSSIA","features":[337]},{"name":"SUBLANG_TELUGU_INDIA","features":[337]},{"name":"SUBLANG_THAI_THAILAND","features":[337]},{"name":"SUBLANG_TIBETAN_PRC","features":[337]},{"name":"SUBLANG_TIGRIGNA_ERITREA","features":[337]},{"name":"SUBLANG_TIGRINYA_ERITREA","features":[337]},{"name":"SUBLANG_TIGRINYA_ETHIOPIA","features":[337]},{"name":"SUBLANG_TSWANA_BOTSWANA","features":[337]},{"name":"SUBLANG_TSWANA_SOUTH_AFRICA","features":[337]},{"name":"SUBLANG_TURKISH_TURKEY","features":[337]},{"name":"SUBLANG_TURKMEN_TURKMENISTAN","features":[337]},{"name":"SUBLANG_UIGHUR_PRC","features":[337]},{"name":"SUBLANG_UI_CUSTOM_DEFAULT","features":[337]},{"name":"SUBLANG_UKRAINIAN_UKRAINE","features":[337]},{"name":"SUBLANG_UPPER_SORBIAN_GERMANY","features":[337]},{"name":"SUBLANG_URDU_INDIA","features":[337]},{"name":"SUBLANG_URDU_PAKISTAN","features":[337]},{"name":"SUBLANG_UZBEK_CYRILLIC","features":[337]},{"name":"SUBLANG_UZBEK_LATIN","features":[337]},{"name":"SUBLANG_VALENCIAN_VALENCIA","features":[337]},{"name":"SUBLANG_VIETNAMESE_VIETNAM","features":[337]},{"name":"SUBLANG_WELSH_UNITED_KINGDOM","features":[337]},{"name":"SUBLANG_WOLOF_SENEGAL","features":[337]},{"name":"SUBLANG_XHOSA_SOUTH_AFRICA","features":[337]},{"name":"SUBLANG_YAKUT_RUSSIA","features":[337]},{"name":"SUBLANG_YI_PRC","features":[337]},{"name":"SUBLANG_YORUBA_NIGERIA","features":[337]},{"name":"SUBLANG_ZULU_SOUTH_AFRICA","features":[337]},{"name":"SUPPORTED_OS_INFO","features":[337]},{"name":"SYSTEM_ACCESS_FILTER_ACE_TYPE","features":[337]},{"name":"SYSTEM_ACCESS_FILTER_NOCONSTRAINT_MASK","features":[337]},{"name":"SYSTEM_ACCESS_FILTER_VALID_MASK","features":[337]},{"name":"SYSTEM_ALARM_ACE_TYPE","features":[337]},{"name":"SYSTEM_ALARM_CALLBACK_ACE_TYPE","features":[337]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE","features":[337]},{"name":"SYSTEM_ALARM_OBJECT_ACE_TYPE","features":[337]},{"name":"SYSTEM_AUDIT_ACE_TYPE","features":[337]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE_TYPE","features":[337]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE_TYPE","features":[337]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_TYPE","features":[337]},{"name":"SYSTEM_CACHE_ALIGNMENT_SIZE","features":[337]},{"name":"SYSTEM_MANDATORY_LABEL_ACE_TYPE","features":[337]},{"name":"SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP","features":[337]},{"name":"SYSTEM_MANDATORY_LABEL_NO_READ_UP","features":[337]},{"name":"SYSTEM_MANDATORY_LABEL_NO_WRITE_UP","features":[337]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE_TYPE","features":[337]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_VALID_MASK","features":[337]},{"name":"SYSTEM_PROCESS_TRUST_NOCONSTRAINT_MASK","features":[337]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE_TYPE","features":[337]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE_TYPE","features":[337]},{"name":"SeImageSignatureCache","features":[337]},{"name":"SeImageSignatureCatalogCached","features":[337]},{"name":"SeImageSignatureCatalogHint","features":[337]},{"name":"SeImageSignatureCatalogNotCached","features":[337]},{"name":"SeImageSignatureEmbedded","features":[337]},{"name":"SeImageSignatureNone","features":[337]},{"name":"SeImageSignaturePackageCatalog","features":[337]},{"name":"SeImageSignaturePplMitigated","features":[337]},{"name":"SevereError","features":[337]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[337]},{"name":"SharedVirtualDiskHandleState","features":[337]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[337]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[337]},{"name":"SharedVirtualDiskHandleStateNone","features":[337]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[337]},{"name":"SharedVirtualDiskSupportType","features":[337]},{"name":"SharedVirtualDisksSupported","features":[337]},{"name":"SharedVirtualDisksUnsupported","features":[337]},{"name":"SystemLoad","features":[337]},{"name":"TAPE_CHECK_FOR_DRIVE_PROBLEM","features":[337]},{"name":"TAPE_CREATE_PARTITION","features":[337]},{"name":"TAPE_DRIVE_ABSOLUTE_BLK","features":[337]},{"name":"TAPE_DRIVE_ABS_BLK_IMMED","features":[337]},{"name":"TAPE_DRIVE_CLEAN_REQUESTS","features":[337]},{"name":"TAPE_DRIVE_COMPRESSION","features":[337]},{"name":"TAPE_DRIVE_ECC","features":[337]},{"name":"TAPE_DRIVE_EJECT_MEDIA","features":[337]},{"name":"TAPE_DRIVE_END_OF_DATA","features":[337]},{"name":"TAPE_DRIVE_EOT_WZ_SIZE","features":[337]},{"name":"TAPE_DRIVE_ERASE_BOP_ONLY","features":[337]},{"name":"TAPE_DRIVE_ERASE_IMMEDIATE","features":[337]},{"name":"TAPE_DRIVE_ERASE_LONG","features":[337]},{"name":"TAPE_DRIVE_ERASE_SHORT","features":[337]},{"name":"TAPE_DRIVE_FILEMARKS","features":[337]},{"name":"TAPE_DRIVE_FIXED","features":[337]},{"name":"TAPE_DRIVE_FIXED_BLOCK","features":[337]},{"name":"TAPE_DRIVE_FORMAT","features":[337]},{"name":"TAPE_DRIVE_FORMAT_IMMEDIATE","features":[337]},{"name":"TAPE_DRIVE_GET_ABSOLUTE_BLK","features":[337]},{"name":"TAPE_DRIVE_GET_LOGICAL_BLK","features":[337]},{"name":"TAPE_DRIVE_HIGH_FEATURES","features":[337]},{"name":"TAPE_DRIVE_INITIATOR","features":[337]},{"name":"TAPE_DRIVE_LOAD_UNLD_IMMED","features":[337]},{"name":"TAPE_DRIVE_LOAD_UNLOAD","features":[337]},{"name":"TAPE_DRIVE_LOCK_UNLK_IMMED","features":[337]},{"name":"TAPE_DRIVE_LOCK_UNLOCK","features":[337]},{"name":"TAPE_DRIVE_LOGICAL_BLK","features":[337]},{"name":"TAPE_DRIVE_LOG_BLK_IMMED","features":[337]},{"name":"TAPE_DRIVE_PADDING","features":[337]},{"name":"TAPE_DRIVE_PROBLEM_TYPE","features":[337]},{"name":"TAPE_DRIVE_RELATIVE_BLKS","features":[337]},{"name":"TAPE_DRIVE_REPORT_SMKS","features":[337]},{"name":"TAPE_DRIVE_RESERVED_BIT","features":[337]},{"name":"TAPE_DRIVE_REVERSE_POSITION","features":[337]},{"name":"TAPE_DRIVE_REWIND_IMMEDIATE","features":[337]},{"name":"TAPE_DRIVE_SELECT","features":[337]},{"name":"TAPE_DRIVE_SEQUENTIAL_FMKS","features":[337]},{"name":"TAPE_DRIVE_SEQUENTIAL_SMKS","features":[337]},{"name":"TAPE_DRIVE_SETMARKS","features":[337]},{"name":"TAPE_DRIVE_SET_BLOCK_SIZE","features":[337]},{"name":"TAPE_DRIVE_SET_CMP_BOP_ONLY","features":[337]},{"name":"TAPE_DRIVE_SET_COMPRESSION","features":[337]},{"name":"TAPE_DRIVE_SET_ECC","features":[337]},{"name":"TAPE_DRIVE_SET_EOT_WZ_SIZE","features":[337]},{"name":"TAPE_DRIVE_SET_PADDING","features":[337]},{"name":"TAPE_DRIVE_SET_REPORT_SMKS","features":[337]},{"name":"TAPE_DRIVE_SPACE_IMMEDIATE","features":[337]},{"name":"TAPE_DRIVE_TAPE_CAPACITY","features":[337]},{"name":"TAPE_DRIVE_TAPE_REMAINING","features":[337]},{"name":"TAPE_DRIVE_TENSION","features":[337]},{"name":"TAPE_DRIVE_TENSION_IMMED","features":[337]},{"name":"TAPE_DRIVE_VARIABLE_BLOCK","features":[337]},{"name":"TAPE_DRIVE_WRITE_FILEMARKS","features":[337]},{"name":"TAPE_DRIVE_WRITE_LONG_FMKS","features":[337]},{"name":"TAPE_DRIVE_WRITE_MARK_IMMED","features":[337]},{"name":"TAPE_DRIVE_WRITE_PROTECT","features":[337]},{"name":"TAPE_DRIVE_WRITE_SETMARKS","features":[337]},{"name":"TAPE_DRIVE_WRITE_SHORT_FMKS","features":[337]},{"name":"TAPE_GET_DRIVE_PARAMETERS","features":[303,337]},{"name":"TAPE_GET_DRIVE_PARAMETERS_FEATURES_HIGH","features":[337]},{"name":"TAPE_GET_MEDIA_PARAMETERS","features":[303,337]},{"name":"TAPE_PSEUDO_LOGICAL_BLOCK","features":[337]},{"name":"TAPE_PSEUDO_LOGICAL_POSITION","features":[337]},{"name":"TAPE_QUERY_DEVICE_ERROR_DATA","features":[337]},{"name":"TAPE_QUERY_DRIVE_PARAMETERS","features":[337]},{"name":"TAPE_QUERY_IO_ERROR_DATA","features":[337]},{"name":"TAPE_QUERY_MEDIA_CAPACITY","features":[337]},{"name":"TAPE_SET_DRIVE_PARAMETERS","features":[303,337]},{"name":"TAPE_SET_MEDIA_PARAMETERS","features":[337]},{"name":"TAPE_WMI_OPERATIONS","features":[337]},{"name":"THREAD_BASE_PRIORITY_IDLE","features":[337]},{"name":"THREAD_BASE_PRIORITY_LOWRT","features":[337]},{"name":"THREAD_BASE_PRIORITY_MAX","features":[337]},{"name":"THREAD_BASE_PRIORITY_MIN","features":[337]},{"name":"THREAD_DYNAMIC_CODE_ALLOW","features":[337]},{"name":"THREAD_PROFILING_FLAG_DISPATCH","features":[337]},{"name":"TIME_ZONE_ID_DAYLIGHT","features":[337]},{"name":"TIME_ZONE_ID_STANDARD","features":[337]},{"name":"TIME_ZONE_ID_UNKNOWN","features":[337]},{"name":"TLS_MINIMUM_AVAILABLE","features":[337]},{"name":"TOKEN_BNO_ISOLATION_INFORMATION","features":[303,337]},{"name":"TOKEN_SID_INFORMATION","features":[303,337]},{"name":"TOKEN_SOURCE_LENGTH","features":[337]},{"name":"TRANSACTIONMANAGER_BASIC_INFORMATION","features":[337]},{"name":"TRANSACTIONMANAGER_BIND_TRANSACTION","features":[337]},{"name":"TRANSACTIONMANAGER_CREATE_RM","features":[337]},{"name":"TRANSACTIONMANAGER_INFORMATION_CLASS","features":[337]},{"name":"TRANSACTIONMANAGER_LOGPATH_INFORMATION","features":[337]},{"name":"TRANSACTIONMANAGER_LOG_INFORMATION","features":[337]},{"name":"TRANSACTIONMANAGER_OLDEST_INFORMATION","features":[337]},{"name":"TRANSACTIONMANAGER_QUERY_INFORMATION","features":[337]},{"name":"TRANSACTIONMANAGER_RECOVER","features":[337]},{"name":"TRANSACTIONMANAGER_RECOVERY_INFORMATION","features":[337]},{"name":"TRANSACTIONMANAGER_RENAME","features":[337]},{"name":"TRANSACTIONMANAGER_SET_INFORMATION","features":[337]},{"name":"TRANSACTION_BASIC_INFORMATION","features":[337]},{"name":"TRANSACTION_BIND_INFORMATION","features":[303,337]},{"name":"TRANSACTION_COMMIT","features":[337]},{"name":"TRANSACTION_ENLIST","features":[337]},{"name":"TRANSACTION_ENLISTMENTS_INFORMATION","features":[337]},{"name":"TRANSACTION_ENLISTMENT_PAIR","features":[337]},{"name":"TRANSACTION_INFORMATION_CLASS","features":[337]},{"name":"TRANSACTION_LIST_ENTRY","features":[337]},{"name":"TRANSACTION_LIST_INFORMATION","features":[337]},{"name":"TRANSACTION_PROPAGATE","features":[337]},{"name":"TRANSACTION_PROPERTIES_INFORMATION","features":[337]},{"name":"TRANSACTION_QUERY_INFORMATION","features":[337]},{"name":"TRANSACTION_RIGHT_RESERVED1","features":[337]},{"name":"TRANSACTION_ROLLBACK","features":[337]},{"name":"TRANSACTION_SET_INFORMATION","features":[337]},{"name":"TRANSACTION_STATE","features":[337]},{"name":"TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION","features":[337]},{"name":"TREE_CONNECT_ATTRIBUTE_GLOBAL","features":[337]},{"name":"TREE_CONNECT_ATTRIBUTE_INTEGRITY","features":[337]},{"name":"TREE_CONNECT_ATTRIBUTE_PINNED","features":[337]},{"name":"TREE_CONNECT_ATTRIBUTE_PRIVACY","features":[337]},{"name":"TRUST_PROTECTED_FILTER_ACE_FLAG","features":[337]},{"name":"TapeDriveCleanDriveNow","features":[337]},{"name":"TapeDriveHardwareError","features":[337]},{"name":"TapeDriveMediaLifeExpired","features":[337]},{"name":"TapeDriveProblemNone","features":[337]},{"name":"TapeDriveReadError","features":[337]},{"name":"TapeDriveReadWarning","features":[337]},{"name":"TapeDriveReadWriteError","features":[337]},{"name":"TapeDriveReadWriteWarning","features":[337]},{"name":"TapeDriveScsiConnectionError","features":[337]},{"name":"TapeDriveSnappedTape","features":[337]},{"name":"TapeDriveTimetoClean","features":[337]},{"name":"TapeDriveUnsupportedMedia","features":[337]},{"name":"TapeDriveWriteError","features":[337]},{"name":"TapeDriveWriteWarning","features":[337]},{"name":"TransactionBasicInformation","features":[337]},{"name":"TransactionBindInformation","features":[337]},{"name":"TransactionDTCPrivateInformation","features":[337]},{"name":"TransactionEnlistmentInformation","features":[337]},{"name":"TransactionManagerBasicInformation","features":[337]},{"name":"TransactionManagerLogInformation","features":[337]},{"name":"TransactionManagerLogPathInformation","features":[337]},{"name":"TransactionManagerOldestTransactionInformation","features":[337]},{"name":"TransactionManagerOnlineProbeInformation","features":[337]},{"name":"TransactionManagerRecoveryInformation","features":[337]},{"name":"TransactionPropertiesInformation","features":[337]},{"name":"TransactionStateCommittedNotify","features":[337]},{"name":"TransactionStateIndoubt","features":[337]},{"name":"TransactionStateNormal","features":[337]},{"name":"TransactionSuperiorEnlistmentInformation","features":[337]},{"name":"UCSCHAR_INVALID_CHARACTER","features":[337]},{"name":"UMS_CREATE_THREAD_ATTRIBUTES","features":[337]},{"name":"UNICODE_STRING_MAX_CHARS","features":[337]},{"name":"UNIFIEDBUILDREVISION_KEY","features":[337]},{"name":"UNIFIEDBUILDREVISION_MIN","features":[337]},{"name":"UNIFIEDBUILDREVISION_VALUE","features":[337]},{"name":"UNWIND_CHAIN_LIMIT","features":[337]},{"name":"UNWIND_HISTORY_TABLE_SIZE","features":[337]},{"name":"UNW_FLAG_NO_EPILOGUE","features":[337]},{"name":"UmsSchedulerStartup","features":[337]},{"name":"UmsSchedulerThreadBlocked","features":[337]},{"name":"UmsSchedulerThreadYield","features":[337]},{"name":"VALID_INHERIT_FLAGS","features":[337]},{"name":"VBS_BASIC_PAGE_MEASURED_DATA","features":[337]},{"name":"VBS_BASIC_PAGE_SYSTEM_CALL","features":[337]},{"name":"VBS_BASIC_PAGE_THREAD_DESCRIPTOR","features":[337]},{"name":"VBS_BASIC_PAGE_UNMEASURED_DATA","features":[337]},{"name":"VBS_BASIC_PAGE_ZERO_FILL","features":[337]},{"name":"VER_AND","features":[337]},{"name":"VER_CONDITION_MASK","features":[337]},{"name":"VER_EQUAL","features":[337]},{"name":"VER_GREATER","features":[337]},{"name":"VER_GREATER_EQUAL","features":[337]},{"name":"VER_LESS","features":[337]},{"name":"VER_LESS_EQUAL","features":[337]},{"name":"VER_NT_DOMAIN_CONTROLLER","features":[337]},{"name":"VER_NT_SERVER","features":[337]},{"name":"VER_NT_WORKSTATION","features":[337]},{"name":"VER_NUM_BITS_PER_CONDITION_MASK","features":[337]},{"name":"VER_OR","features":[337]},{"name":"VER_SERVER_NT","features":[337]},{"name":"VER_SUITE_BACKOFFICE","features":[337]},{"name":"VER_SUITE_BLADE","features":[337]},{"name":"VER_SUITE_COMMUNICATIONS","features":[337]},{"name":"VER_SUITE_COMPUTE_SERVER","features":[337]},{"name":"VER_SUITE_DATACENTER","features":[337]},{"name":"VER_SUITE_EMBEDDEDNT","features":[337]},{"name":"VER_SUITE_EMBEDDED_RESTRICTED","features":[337]},{"name":"VER_SUITE_ENTERPRISE","features":[337]},{"name":"VER_SUITE_MULTIUSERTS","features":[337]},{"name":"VER_SUITE_PERSONAL","features":[337]},{"name":"VER_SUITE_SECURITY_APPLIANCE","features":[337]},{"name":"VER_SUITE_SINGLEUSERTS","features":[337]},{"name":"VER_SUITE_SMALLBUSINESS","features":[337]},{"name":"VER_SUITE_SMALLBUSINESS_RESTRICTED","features":[337]},{"name":"VER_SUITE_STORAGE_SERVER","features":[337]},{"name":"VER_SUITE_TERMINAL","features":[337]},{"name":"VER_SUITE_WH_SERVER","features":[337]},{"name":"VER_WORKSTATION_NT","features":[337]},{"name":"VRL_CUSTOM_CLASS_BEGIN","features":[337]},{"name":"VRL_ENABLE_KERNEL_BREAKS","features":[337]},{"name":"VRL_PREDEFINED_CLASS_BEGIN","features":[337]},{"name":"WDT_INPROC64_CALL","features":[337]},{"name":"WDT_INPROC_CALL","features":[337]},{"name":"WDT_REMOTE_CALL","features":[337]},{"name":"WORD_WHEEL_OPEN_FLAGS","features":[337]},{"name":"WRITE_NV_MEMORY_FLAG_FLUSH","features":[337]},{"name":"WRITE_NV_MEMORY_FLAG_NON_TEMPORAL","features":[337]},{"name":"WRITE_NV_MEMORY_FLAG_NO_DRAIN","features":[337]},{"name":"WRITE_WATCH_FLAG_RESET","features":[337]},{"name":"WT_EXECUTEDELETEWAIT","features":[337]},{"name":"WT_EXECUTEINLONGTHREAD","features":[337]},{"name":"WT_EXECUTEINPERSISTENTIOTHREAD","features":[337]},{"name":"WT_EXECUTEINUITHREAD","features":[337]},{"name":"Win32ServiceOwnProcess","features":[337]},{"name":"Win32ServiceShareProcess","features":[337]},{"name":"X3_BTYPE_QP_INST_VAL_POS_X","features":[337]},{"name":"X3_BTYPE_QP_INST_WORD_POS_X","features":[337]},{"name":"X3_BTYPE_QP_INST_WORD_X","features":[337]},{"name":"X3_BTYPE_QP_SIZE_X","features":[337]},{"name":"X3_D_WH_INST_WORD_POS_X","features":[337]},{"name":"X3_D_WH_INST_WORD_X","features":[337]},{"name":"X3_D_WH_SIGN_VAL_POS_X","features":[337]},{"name":"X3_D_WH_SIZE_X","features":[337]},{"name":"X3_EMPTY_INST_VAL_POS_X","features":[337]},{"name":"X3_EMPTY_INST_WORD_POS_X","features":[337]},{"name":"X3_EMPTY_INST_WORD_X","features":[337]},{"name":"X3_EMPTY_SIZE_X","features":[337]},{"name":"X3_IMM20_INST_WORD_POS_X","features":[337]},{"name":"X3_IMM20_INST_WORD_X","features":[337]},{"name":"X3_IMM20_SIGN_VAL_POS_X","features":[337]},{"name":"X3_IMM20_SIZE_X","features":[337]},{"name":"X3_IMM39_1_INST_WORD_POS_X","features":[337]},{"name":"X3_IMM39_1_INST_WORD_X","features":[337]},{"name":"X3_IMM39_1_SIGN_VAL_POS_X","features":[337]},{"name":"X3_IMM39_1_SIZE_X","features":[337]},{"name":"X3_IMM39_2_INST_WORD_POS_X","features":[337]},{"name":"X3_IMM39_2_INST_WORD_X","features":[337]},{"name":"X3_IMM39_2_SIGN_VAL_POS_X","features":[337]},{"name":"X3_IMM39_2_SIZE_X","features":[337]},{"name":"X3_I_INST_WORD_POS_X","features":[337]},{"name":"X3_I_INST_WORD_X","features":[337]},{"name":"X3_I_SIGN_VAL_POS_X","features":[337]},{"name":"X3_I_SIZE_X","features":[337]},{"name":"X3_OPCODE_INST_WORD_POS_X","features":[337]},{"name":"X3_OPCODE_INST_WORD_X","features":[337]},{"name":"X3_OPCODE_SIGN_VAL_POS_X","features":[337]},{"name":"X3_OPCODE_SIZE_X","features":[337]},{"name":"X3_P_INST_WORD_POS_X","features":[337]},{"name":"X3_P_INST_WORD_X","features":[337]},{"name":"X3_P_SIGN_VAL_POS_X","features":[337]},{"name":"X3_P_SIZE_X","features":[337]},{"name":"X3_TMPLT_INST_WORD_POS_X","features":[337]},{"name":"X3_TMPLT_INST_WORD_X","features":[337]},{"name":"X3_TMPLT_SIGN_VAL_POS_X","features":[337]},{"name":"X3_TMPLT_SIZE_X","features":[337]},{"name":"X86_CACHE_ALIGNMENT_SIZE","features":[337]},{"name":"XSAVE_CET_U_FORMAT","features":[337]},{"name":"XSTATE_ALIGN_BIT","features":[337]},{"name":"XSTATE_AMX_TILE_CONFIG","features":[337]},{"name":"XSTATE_AMX_TILE_DATA","features":[337]},{"name":"XSTATE_AVX","features":[337]},{"name":"XSTATE_AVX512_KMASK","features":[337]},{"name":"XSTATE_AVX512_ZMM","features":[337]},{"name":"XSTATE_AVX512_ZMM_H","features":[337]},{"name":"XSTATE_CET_S","features":[337]},{"name":"XSTATE_CET_U","features":[337]},{"name":"XSTATE_COMPACTION_ENABLE","features":[337]},{"name":"XSTATE_CONTROLFLAG_XFD_MASK","features":[337]},{"name":"XSTATE_CONTROLFLAG_XSAVEC_MASK","features":[337]},{"name":"XSTATE_CONTROLFLAG_XSAVEOPT_MASK","features":[337]},{"name":"XSTATE_GSSE","features":[337]},{"name":"XSTATE_IPT","features":[337]},{"name":"XSTATE_LEGACY_FLOATING_POINT","features":[337]},{"name":"XSTATE_LEGACY_SSE","features":[337]},{"name":"XSTATE_LWP","features":[337]},{"name":"XSTATE_MPX_BNDCSR","features":[337]},{"name":"XSTATE_MPX_BNDREGS","features":[337]},{"name":"XSTATE_PASID","features":[337]},{"name":"XSTATE_XFD_BIT","features":[337]},{"name":"_MM_HINT_NTA","features":[337]},{"name":"_MM_HINT_T0","features":[337]},{"name":"_MM_HINT_T1","features":[337]},{"name":"_MM_HINT_T2","features":[337]},{"name":"remoteMETAFILEPICT","features":[354,337]},{"name":"userBITMAP","features":[337]},{"name":"userCLIPFORMAT","features":[337]},{"name":"userHBITMAP","features":[337]},{"name":"userHENHMETAFILE","features":[354,337]},{"name":"userHGLOBAL","features":[354,337]},{"name":"userHMETAFILE","features":[354,337]},{"name":"userHMETAFILEPICT","features":[354,337]},{"name":"userHPALETTE","features":[314,337]}],"615":[{"name":"CLSID_CTask","features":[589]},{"name":"CLSID_CTaskScheduler","features":[589]},{"name":"DAILY","features":[589]},{"name":"IAction","features":[354,589]},{"name":"IActionCollection","features":[354,589]},{"name":"IBootTrigger","features":[354,589]},{"name":"IComHandlerAction","features":[354,589]},{"name":"IDailyTrigger","features":[354,589]},{"name":"IEmailAction","features":[354,589]},{"name":"IEnumWorkItems","features":[589]},{"name":"IEventTrigger","features":[354,589]},{"name":"IExecAction","features":[354,589]},{"name":"IExecAction2","features":[354,589]},{"name":"IIdleSettings","features":[354,589]},{"name":"IIdleTrigger","features":[354,589]},{"name":"ILogonTrigger","features":[354,589]},{"name":"IMaintenanceSettings","features":[354,589]},{"name":"IMonthlyDOWTrigger","features":[354,589]},{"name":"IMonthlyTrigger","features":[354,589]},{"name":"INetworkSettings","features":[354,589]},{"name":"IPrincipal","features":[354,589]},{"name":"IPrincipal2","features":[354,589]},{"name":"IProvideTaskPage","features":[589]},{"name":"IRegisteredTask","features":[354,589]},{"name":"IRegisteredTaskCollection","features":[354,589]},{"name":"IRegistrationInfo","features":[354,589]},{"name":"IRegistrationTrigger","features":[354,589]},{"name":"IRepetitionPattern","features":[354,589]},{"name":"IRunningTask","features":[354,589]},{"name":"IRunningTaskCollection","features":[354,589]},{"name":"IScheduledWorkItem","features":[589]},{"name":"ISessionStateChangeTrigger","features":[354,589]},{"name":"IShowMessageAction","features":[354,589]},{"name":"ITask","features":[589]},{"name":"ITaskDefinition","features":[354,589]},{"name":"ITaskFolder","features":[354,589]},{"name":"ITaskFolderCollection","features":[354,589]},{"name":"ITaskHandler","features":[589]},{"name":"ITaskHandlerStatus","features":[589]},{"name":"ITaskNamedValueCollection","features":[354,589]},{"name":"ITaskNamedValuePair","features":[354,589]},{"name":"ITaskScheduler","features":[589]},{"name":"ITaskService","features":[354,589]},{"name":"ITaskSettings","features":[354,589]},{"name":"ITaskSettings2","features":[354,589]},{"name":"ITaskSettings3","features":[354,589]},{"name":"ITaskTrigger","features":[589]},{"name":"ITaskVariables","features":[589]},{"name":"ITimeTrigger","features":[354,589]},{"name":"ITrigger","features":[354,589]},{"name":"ITriggerCollection","features":[354,589]},{"name":"IWeeklyTrigger","features":[354,589]},{"name":"MONTHLYDATE","features":[589]},{"name":"MONTHLYDOW","features":[589]},{"name":"TASKPAGE","features":[589]},{"name":"TASKPAGE_SCHEDULE","features":[589]},{"name":"TASKPAGE_SETTINGS","features":[589]},{"name":"TASKPAGE_TASK","features":[589]},{"name":"TASK_ACTION_COM_HANDLER","features":[589]},{"name":"TASK_ACTION_EXEC","features":[589]},{"name":"TASK_ACTION_SEND_EMAIL","features":[589]},{"name":"TASK_ACTION_SHOW_MESSAGE","features":[589]},{"name":"TASK_ACTION_TYPE","features":[589]},{"name":"TASK_APRIL","features":[589]},{"name":"TASK_AUGUST","features":[589]},{"name":"TASK_COMPATIBILITY","features":[589]},{"name":"TASK_COMPATIBILITY_AT","features":[589]},{"name":"TASK_COMPATIBILITY_V1","features":[589]},{"name":"TASK_COMPATIBILITY_V2","features":[589]},{"name":"TASK_COMPATIBILITY_V2_1","features":[589]},{"name":"TASK_COMPATIBILITY_V2_2","features":[589]},{"name":"TASK_COMPATIBILITY_V2_3","features":[589]},{"name":"TASK_COMPATIBILITY_V2_4","features":[589]},{"name":"TASK_CONSOLE_CONNECT","features":[589]},{"name":"TASK_CONSOLE_DISCONNECT","features":[589]},{"name":"TASK_CREATE","features":[589]},{"name":"TASK_CREATE_OR_UPDATE","features":[589]},{"name":"TASK_CREATION","features":[589]},{"name":"TASK_DECEMBER","features":[589]},{"name":"TASK_DISABLE","features":[589]},{"name":"TASK_DONT_ADD_PRINCIPAL_ACE","features":[589]},{"name":"TASK_ENUM_FLAGS","features":[589]},{"name":"TASK_ENUM_HIDDEN","features":[589]},{"name":"TASK_EVENT_TRIGGER_AT_LOGON","features":[589]},{"name":"TASK_EVENT_TRIGGER_AT_SYSTEMSTART","features":[589]},{"name":"TASK_EVENT_TRIGGER_ON_IDLE","features":[589]},{"name":"TASK_FEBRUARY","features":[589]},{"name":"TASK_FIRST_WEEK","features":[589]},{"name":"TASK_FLAG_DELETE_WHEN_DONE","features":[589]},{"name":"TASK_FLAG_DISABLED","features":[589]},{"name":"TASK_FLAG_DONT_START_IF_ON_BATTERIES","features":[589]},{"name":"TASK_FLAG_HIDDEN","features":[589]},{"name":"TASK_FLAG_INTERACTIVE","features":[589]},{"name":"TASK_FLAG_KILL_IF_GOING_ON_BATTERIES","features":[589]},{"name":"TASK_FLAG_KILL_ON_IDLE_END","features":[589]},{"name":"TASK_FLAG_RESTART_ON_IDLE_RESUME","features":[589]},{"name":"TASK_FLAG_RUN_IF_CONNECTED_TO_INTERNET","features":[589]},{"name":"TASK_FLAG_RUN_ONLY_IF_DOCKED","features":[589]},{"name":"TASK_FLAG_RUN_ONLY_IF_LOGGED_ON","features":[589]},{"name":"TASK_FLAG_START_ONLY_IF_IDLE","features":[589]},{"name":"TASK_FLAG_SYSTEM_REQUIRED","features":[589]},{"name":"TASK_FOURTH_WEEK","features":[589]},{"name":"TASK_FRIDAY","features":[589]},{"name":"TASK_IGNORE_REGISTRATION_TRIGGERS","features":[589]},{"name":"TASK_INSTANCES_IGNORE_NEW","features":[589]},{"name":"TASK_INSTANCES_PARALLEL","features":[589]},{"name":"TASK_INSTANCES_POLICY","features":[589]},{"name":"TASK_INSTANCES_QUEUE","features":[589]},{"name":"TASK_INSTANCES_STOP_EXISTING","features":[589]},{"name":"TASK_JANUARY","features":[589]},{"name":"TASK_JULY","features":[589]},{"name":"TASK_JUNE","features":[589]},{"name":"TASK_LAST_WEEK","features":[589]},{"name":"TASK_LOGON_GROUP","features":[589]},{"name":"TASK_LOGON_INTERACTIVE_TOKEN","features":[589]},{"name":"TASK_LOGON_INTERACTIVE_TOKEN_OR_PASSWORD","features":[589]},{"name":"TASK_LOGON_NONE","features":[589]},{"name":"TASK_LOGON_PASSWORD","features":[589]},{"name":"TASK_LOGON_S4U","features":[589]},{"name":"TASK_LOGON_SERVICE_ACCOUNT","features":[589]},{"name":"TASK_LOGON_TYPE","features":[589]},{"name":"TASK_MARCH","features":[589]},{"name":"TASK_MAX_RUN_TIMES","features":[589]},{"name":"TASK_MAY","features":[589]},{"name":"TASK_MONDAY","features":[589]},{"name":"TASK_NOVEMBER","features":[589]},{"name":"TASK_OCTOBER","features":[589]},{"name":"TASK_PROCESSTOKENSID_DEFAULT","features":[589]},{"name":"TASK_PROCESSTOKENSID_NONE","features":[589]},{"name":"TASK_PROCESSTOKENSID_TYPE","features":[589]},{"name":"TASK_PROCESSTOKENSID_UNRESTRICTED","features":[589]},{"name":"TASK_REMOTE_CONNECT","features":[589]},{"name":"TASK_REMOTE_DISCONNECT","features":[589]},{"name":"TASK_RUNLEVEL_HIGHEST","features":[589]},{"name":"TASK_RUNLEVEL_LUA","features":[589]},{"name":"TASK_RUNLEVEL_TYPE","features":[589]},{"name":"TASK_RUN_AS_SELF","features":[589]},{"name":"TASK_RUN_FLAGS","features":[589]},{"name":"TASK_RUN_IGNORE_CONSTRAINTS","features":[589]},{"name":"TASK_RUN_NO_FLAGS","features":[589]},{"name":"TASK_RUN_USER_SID","features":[589]},{"name":"TASK_RUN_USE_SESSION_ID","features":[589]},{"name":"TASK_SATURDAY","features":[589]},{"name":"TASK_SECOND_WEEK","features":[589]},{"name":"TASK_SEPTEMBER","features":[589]},{"name":"TASK_SESSION_LOCK","features":[589]},{"name":"TASK_SESSION_STATE_CHANGE_TYPE","features":[589]},{"name":"TASK_SESSION_UNLOCK","features":[589]},{"name":"TASK_STATE","features":[589]},{"name":"TASK_STATE_DISABLED","features":[589]},{"name":"TASK_STATE_QUEUED","features":[589]},{"name":"TASK_STATE_READY","features":[589]},{"name":"TASK_STATE_RUNNING","features":[589]},{"name":"TASK_STATE_UNKNOWN","features":[589]},{"name":"TASK_SUNDAY","features":[589]},{"name":"TASK_THIRD_WEEK","features":[589]},{"name":"TASK_THURSDAY","features":[589]},{"name":"TASK_TIME_TRIGGER_DAILY","features":[589]},{"name":"TASK_TIME_TRIGGER_MONTHLYDATE","features":[589]},{"name":"TASK_TIME_TRIGGER_MONTHLYDOW","features":[589]},{"name":"TASK_TIME_TRIGGER_ONCE","features":[589]},{"name":"TASK_TIME_TRIGGER_WEEKLY","features":[589]},{"name":"TASK_TRIGGER","features":[589]},{"name":"TASK_TRIGGER_BOOT","features":[589]},{"name":"TASK_TRIGGER_CUSTOM_TRIGGER_01","features":[589]},{"name":"TASK_TRIGGER_DAILY","features":[589]},{"name":"TASK_TRIGGER_EVENT","features":[589]},{"name":"TASK_TRIGGER_FLAG_DISABLED","features":[589]},{"name":"TASK_TRIGGER_FLAG_HAS_END_DATE","features":[589]},{"name":"TASK_TRIGGER_FLAG_KILL_AT_DURATION_END","features":[589]},{"name":"TASK_TRIGGER_IDLE","features":[589]},{"name":"TASK_TRIGGER_LOGON","features":[589]},{"name":"TASK_TRIGGER_MONTHLY","features":[589]},{"name":"TASK_TRIGGER_MONTHLYDOW","features":[589]},{"name":"TASK_TRIGGER_REGISTRATION","features":[589]},{"name":"TASK_TRIGGER_SESSION_STATE_CHANGE","features":[589]},{"name":"TASK_TRIGGER_TIME","features":[589]},{"name":"TASK_TRIGGER_TYPE","features":[589]},{"name":"TASK_TRIGGER_TYPE2","features":[589]},{"name":"TASK_TRIGGER_WEEKLY","features":[589]},{"name":"TASK_TUESDAY","features":[589]},{"name":"TASK_UPDATE","features":[589]},{"name":"TASK_VALIDATE_ONLY","features":[589]},{"name":"TASK_WEDNESDAY","features":[589]},{"name":"TRIGGER_TYPE_UNION","features":[589]},{"name":"TaskHandlerPS","features":[589]},{"name":"TaskHandlerStatusPS","features":[589]},{"name":"TaskScheduler","features":[589]},{"name":"WEEKLY","features":[589]}],"616":[{"name":"ABOVE_NORMAL_PRIORITY_CLASS","features":[338]},{"name":"ALL_PROCESSOR_GROUPS","features":[338]},{"name":"APC_CALLBACK_FUNCTION","features":[338]},{"name":"APP_MEMORY_INFORMATION","features":[338]},{"name":"AVRT_PRIORITY","features":[338]},{"name":"AVRT_PRIORITY_CRITICAL","features":[338]},{"name":"AVRT_PRIORITY_HIGH","features":[338]},{"name":"AVRT_PRIORITY_LOW","features":[338]},{"name":"AVRT_PRIORITY_NORMAL","features":[338]},{"name":"AVRT_PRIORITY_VERYLOW","features":[338]},{"name":"AcquireSRWLockExclusive","features":[338]},{"name":"AcquireSRWLockShared","features":[338]},{"name":"AddIntegrityLabelToBoundaryDescriptor","features":[303,338]},{"name":"AddSIDToBoundaryDescriptor","features":[303,338]},{"name":"AttachThreadInput","features":[303,338]},{"name":"AvQuerySystemResponsiveness","features":[303,338]},{"name":"AvRevertMmThreadCharacteristics","features":[303,338]},{"name":"AvRtCreateThreadOrderingGroup","features":[303,338]},{"name":"AvRtCreateThreadOrderingGroupExA","features":[303,338]},{"name":"AvRtCreateThreadOrderingGroupExW","features":[303,338]},{"name":"AvRtDeleteThreadOrderingGroup","features":[303,338]},{"name":"AvRtJoinThreadOrderingGroup","features":[303,338]},{"name":"AvRtLeaveThreadOrderingGroup","features":[303,338]},{"name":"AvRtWaitOnThreadOrderingGroup","features":[303,338]},{"name":"AvSetMmMaxThreadCharacteristicsA","features":[303,338]},{"name":"AvSetMmMaxThreadCharacteristicsW","features":[303,338]},{"name":"AvSetMmThreadCharacteristicsA","features":[303,338]},{"name":"AvSetMmThreadCharacteristicsW","features":[303,338]},{"name":"AvSetMmThreadPriority","features":[303,338]},{"name":"BELOW_NORMAL_PRIORITY_CLASS","features":[338]},{"name":"CONDITION_VARIABLE","features":[338]},{"name":"CONDITION_VARIABLE_INIT","features":[338]},{"name":"CONDITION_VARIABLE_LOCKMODE_SHARED","features":[338]},{"name":"CREATE_BREAKAWAY_FROM_JOB","features":[338]},{"name":"CREATE_DEFAULT_ERROR_MODE","features":[338]},{"name":"CREATE_EVENT","features":[338]},{"name":"CREATE_EVENT_INITIAL_SET","features":[338]},{"name":"CREATE_EVENT_MANUAL_RESET","features":[338]},{"name":"CREATE_FORCEDOS","features":[338]},{"name":"CREATE_IGNORE_SYSTEM_DEFAULT","features":[338]},{"name":"CREATE_MUTEX_INITIAL_OWNER","features":[338]},{"name":"CREATE_NEW_CONSOLE","features":[338]},{"name":"CREATE_NEW_PROCESS_GROUP","features":[338]},{"name":"CREATE_NO_WINDOW","features":[338]},{"name":"CREATE_PRESERVE_CODE_AUTHZ_LEVEL","features":[338]},{"name":"CREATE_PROCESS_LOGON_FLAGS","features":[338]},{"name":"CREATE_PROTECTED_PROCESS","features":[338]},{"name":"CREATE_SECURE_PROCESS","features":[338]},{"name":"CREATE_SEPARATE_WOW_VDM","features":[338]},{"name":"CREATE_SHARED_WOW_VDM","features":[338]},{"name":"CREATE_SUSPENDED","features":[338]},{"name":"CREATE_UNICODE_ENVIRONMENT","features":[338]},{"name":"CREATE_WAITABLE_TIMER_HIGH_RESOLUTION","features":[338]},{"name":"CREATE_WAITABLE_TIMER_MANUAL_RESET","features":[338]},{"name":"CRITICAL_SECTION","features":[303,309,338]},{"name":"CRITICAL_SECTION_DEBUG","features":[303,309,338]},{"name":"CallbackMayRunLong","features":[303,338]},{"name":"CancelThreadpoolIo","features":[338]},{"name":"CancelTimerQueueTimer","features":[303,338]},{"name":"CancelWaitableTimer","features":[303,338]},{"name":"ChangeTimerQueueTimer","features":[303,338]},{"name":"ClosePrivateNamespace","features":[303,338]},{"name":"CloseThreadpool","features":[338]},{"name":"CloseThreadpoolCleanupGroup","features":[338]},{"name":"CloseThreadpoolCleanupGroupMembers","features":[303,338]},{"name":"CloseThreadpoolIo","features":[338]},{"name":"CloseThreadpoolTimer","features":[338]},{"name":"CloseThreadpoolWait","features":[338]},{"name":"CloseThreadpoolWork","features":[338]},{"name":"ConvertFiberToThread","features":[303,338]},{"name":"ConvertThreadToFiber","features":[338]},{"name":"ConvertThreadToFiberEx","features":[338]},{"name":"CreateBoundaryDescriptorA","features":[303,338]},{"name":"CreateBoundaryDescriptorW","features":[303,338]},{"name":"CreateEventA","features":[303,306,338]},{"name":"CreateEventExA","features":[303,306,338]},{"name":"CreateEventExW","features":[303,306,338]},{"name":"CreateEventW","features":[303,306,338]},{"name":"CreateFiber","features":[338]},{"name":"CreateFiberEx","features":[338]},{"name":"CreateMutexA","features":[303,306,338]},{"name":"CreateMutexExA","features":[303,306,338]},{"name":"CreateMutexExW","features":[303,306,338]},{"name":"CreateMutexW","features":[303,306,338]},{"name":"CreatePrivateNamespaceA","features":[303,306,338]},{"name":"CreatePrivateNamespaceW","features":[303,306,338]},{"name":"CreateProcessA","features":[303,306,338]},{"name":"CreateProcessAsUserA","features":[303,306,338]},{"name":"CreateProcessAsUserW","features":[303,306,338]},{"name":"CreateProcessW","features":[303,306,338]},{"name":"CreateProcessWithLogonW","features":[303,338]},{"name":"CreateProcessWithTokenW","features":[303,338]},{"name":"CreateRemoteThread","features":[303,306,338]},{"name":"CreateRemoteThreadEx","features":[303,306,338]},{"name":"CreateSemaphoreA","features":[303,306,338]},{"name":"CreateSemaphoreExA","features":[303,306,338]},{"name":"CreateSemaphoreExW","features":[303,306,338]},{"name":"CreateSemaphoreW","features":[303,306,338]},{"name":"CreateThread","features":[303,306,338]},{"name":"CreateThreadpool","features":[338]},{"name":"CreateThreadpoolCleanupGroup","features":[338]},{"name":"CreateThreadpoolIo","features":[303,338]},{"name":"CreateThreadpoolTimer","features":[338]},{"name":"CreateThreadpoolWait","features":[338]},{"name":"CreateThreadpoolWork","features":[338]},{"name":"CreateTimerQueue","features":[303,338]},{"name":"CreateTimerQueueTimer","features":[303,338]},{"name":"CreateUmsCompletionList","features":[303,338]},{"name":"CreateUmsThreadContext","features":[303,338]},{"name":"CreateWaitableTimerA","features":[303,306,338]},{"name":"CreateWaitableTimerExA","features":[303,306,338]},{"name":"CreateWaitableTimerExW","features":[303,306,338]},{"name":"CreateWaitableTimerW","features":[303,306,338]},{"name":"DEBUG_ONLY_THIS_PROCESS","features":[338]},{"name":"DEBUG_PROCESS","features":[338]},{"name":"DETACHED_PROCESS","features":[338]},{"name":"DeleteBoundaryDescriptor","features":[303,338]},{"name":"DeleteCriticalSection","features":[303,309,338]},{"name":"DeleteFiber","features":[338]},{"name":"DeleteProcThreadAttributeList","features":[338]},{"name":"DeleteSynchronizationBarrier","features":[303,338]},{"name":"DeleteTimerQueue","features":[303,338]},{"name":"DeleteTimerQueueEx","features":[303,338]},{"name":"DeleteTimerQueueTimer","features":[303,338]},{"name":"DeleteUmsCompletionList","features":[303,338]},{"name":"DeleteUmsThreadContext","features":[303,338]},{"name":"DequeueUmsCompletionListItems","features":[303,338]},{"name":"DisassociateCurrentThreadFromCallback","features":[338]},{"name":"EVENT_ALL_ACCESS","features":[338]},{"name":"EVENT_MODIFY_STATE","features":[338]},{"name":"EXTENDED_STARTUPINFO_PRESENT","features":[338]},{"name":"EnterCriticalSection","features":[303,309,338]},{"name":"EnterSynchronizationBarrier","features":[303,338]},{"name":"EnterUmsSchedulingMode","features":[303,337,338]},{"name":"ExecuteUmsThread","features":[303,338]},{"name":"ExitProcess","features":[338]},{"name":"ExitThread","features":[338]},{"name":"FLS_OUT_OF_INDEXES","features":[338]},{"name":"FlsAlloc","features":[338]},{"name":"FlsFree","features":[303,338]},{"name":"FlsGetValue","features":[338]},{"name":"FlsSetValue","features":[303,338]},{"name":"FlushProcessWriteBuffers","features":[338]},{"name":"FreeLibraryWhenCallbackReturns","features":[303,338]},{"name":"GET_GUI_RESOURCES_FLAGS","features":[338]},{"name":"GR_GDIOBJECTS","features":[338]},{"name":"GR_GDIOBJECTS_PEAK","features":[338]},{"name":"GR_USEROBJECTS","features":[338]},{"name":"GR_USEROBJECTS_PEAK","features":[338]},{"name":"GetActiveProcessorCount","features":[338]},{"name":"GetActiveProcessorGroupCount","features":[338]},{"name":"GetCurrentProcess","features":[303,338]},{"name":"GetCurrentProcessId","features":[338]},{"name":"GetCurrentProcessToken","features":[303,338]},{"name":"GetCurrentProcessorNumber","features":[338]},{"name":"GetCurrentProcessorNumberEx","features":[309,338]},{"name":"GetCurrentThread","features":[303,338]},{"name":"GetCurrentThreadEffectiveToken","features":[303,338]},{"name":"GetCurrentThreadId","features":[338]},{"name":"GetCurrentThreadStackLimits","features":[338]},{"name":"GetCurrentThreadToken","features":[303,338]},{"name":"GetCurrentUmsThread","features":[338]},{"name":"GetExitCodeProcess","features":[303,338]},{"name":"GetExitCodeThread","features":[303,338]},{"name":"GetGuiResources","features":[303,338]},{"name":"GetMachineTypeAttributes","features":[338]},{"name":"GetMaximumProcessorCount","features":[338]},{"name":"GetMaximumProcessorGroupCount","features":[338]},{"name":"GetNextUmsListItem","features":[338]},{"name":"GetNumaAvailableMemoryNode","features":[303,338]},{"name":"GetNumaAvailableMemoryNodeEx","features":[303,338]},{"name":"GetNumaHighestNodeNumber","features":[303,338]},{"name":"GetNumaNodeNumberFromHandle","features":[303,338]},{"name":"GetNumaNodeProcessorMask","features":[303,338]},{"name":"GetNumaNodeProcessorMask2","features":[303,333,338]},{"name":"GetNumaNodeProcessorMaskEx","features":[303,333,338]},{"name":"GetNumaProcessorNode","features":[303,338]},{"name":"GetNumaProcessorNodeEx","features":[303,309,338]},{"name":"GetNumaProximityNode","features":[303,338]},{"name":"GetNumaProximityNodeEx","features":[303,338]},{"name":"GetPriorityClass","features":[303,338]},{"name":"GetProcessAffinityMask","features":[303,338]},{"name":"GetProcessDEPPolicy","features":[303,338]},{"name":"GetProcessDefaultCpuSetMasks","features":[303,333,338]},{"name":"GetProcessDefaultCpuSets","features":[303,338]},{"name":"GetProcessGroupAffinity","features":[303,338]},{"name":"GetProcessHandleCount","features":[303,338]},{"name":"GetProcessId","features":[303,338]},{"name":"GetProcessIdOfThread","features":[303,338]},{"name":"GetProcessInformation","features":[303,338]},{"name":"GetProcessIoCounters","features":[303,338]},{"name":"GetProcessMitigationPolicy","features":[303,338]},{"name":"GetProcessPriorityBoost","features":[303,338]},{"name":"GetProcessShutdownParameters","features":[303,338]},{"name":"GetProcessTimes","features":[303,338]},{"name":"GetProcessVersion","features":[338]},{"name":"GetProcessWorkingSetSize","features":[303,338]},{"name":"GetStartupInfoA","features":[303,338]},{"name":"GetStartupInfoW","features":[303,338]},{"name":"GetSystemTimes","features":[303,338]},{"name":"GetThreadDescription","features":[303,338]},{"name":"GetThreadGroupAffinity","features":[303,333,338]},{"name":"GetThreadIOPendingFlag","features":[303,338]},{"name":"GetThreadId","features":[303,338]},{"name":"GetThreadIdealProcessorEx","features":[303,309,338]},{"name":"GetThreadInformation","features":[303,338]},{"name":"GetThreadPriority","features":[303,338]},{"name":"GetThreadPriorityBoost","features":[303,338]},{"name":"GetThreadSelectedCpuSetMasks","features":[303,333,338]},{"name":"GetThreadSelectedCpuSets","features":[303,338]},{"name":"GetThreadTimes","features":[303,338]},{"name":"GetUmsCompletionListEvent","features":[303,338]},{"name":"GetUmsSystemThreadInformation","features":[303,338]},{"name":"HIGH_PRIORITY_CLASS","features":[338]},{"name":"IDLE_PRIORITY_CLASS","features":[338]},{"name":"INFINITE","features":[338]},{"name":"INHERIT_CALLER_PRIORITY","features":[338]},{"name":"INHERIT_PARENT_AFFINITY","features":[338]},{"name":"INIT_ONCE","features":[338]},{"name":"INIT_ONCE_ASYNC","features":[338]},{"name":"INIT_ONCE_CHECK_ONLY","features":[338]},{"name":"INIT_ONCE_CTX_RESERVED_BITS","features":[338]},{"name":"INIT_ONCE_INIT_FAILED","features":[338]},{"name":"INIT_ONCE_STATIC_INIT","features":[338]},{"name":"IO_COUNTERS","features":[338]},{"name":"IRtwqAsyncCallback","features":[338]},{"name":"IRtwqAsyncResult","features":[338]},{"name":"IRtwqPlatformEvents","features":[338]},{"name":"InitOnceBeginInitialize","features":[303,338]},{"name":"InitOnceComplete","features":[303,338]},{"name":"InitOnceExecuteOnce","features":[303,338]},{"name":"InitOnceInitialize","features":[338]},{"name":"InitializeConditionVariable","features":[338]},{"name":"InitializeCriticalSection","features":[303,309,338]},{"name":"InitializeCriticalSectionAndSpinCount","features":[303,309,338]},{"name":"InitializeCriticalSectionEx","features":[303,309,338]},{"name":"InitializeProcThreadAttributeList","features":[303,338]},{"name":"InitializeSListHead","features":[309,338]},{"name":"InitializeSRWLock","features":[338]},{"name":"InitializeSynchronizationBarrier","features":[303,338]},{"name":"InterlockedFlushSList","features":[309,338]},{"name":"InterlockedPopEntrySList","features":[309,338]},{"name":"InterlockedPushEntrySList","features":[309,338]},{"name":"InterlockedPushListSListEx","features":[309,338]},{"name":"IsImmersiveProcess","features":[303,338]},{"name":"IsProcessCritical","features":[303,338]},{"name":"IsProcessorFeaturePresent","features":[303,338]},{"name":"IsThreadAFiber","features":[303,338]},{"name":"IsThreadpoolTimerSet","features":[303,338]},{"name":"IsWow64Process","features":[303,338]},{"name":"IsWow64Process2","features":[303,333,338]},{"name":"KernelEnabled","features":[338]},{"name":"LOGON_NETCREDENTIALS_ONLY","features":[338]},{"name":"LOGON_WITH_PROFILE","features":[338]},{"name":"LPFIBER_START_ROUTINE","features":[338]},{"name":"LPPROC_THREAD_ATTRIBUTE_LIST","features":[338]},{"name":"LPTHREAD_START_ROUTINE","features":[338]},{"name":"LeaveCriticalSection","features":[303,309,338]},{"name":"LeaveCriticalSectionWhenCallbackReturns","features":[303,309,338]},{"name":"MACHINE_ATTRIBUTES","features":[338]},{"name":"MEMORY_PRIORITY","features":[338]},{"name":"MEMORY_PRIORITY_BELOW_NORMAL","features":[338]},{"name":"MEMORY_PRIORITY_INFORMATION","features":[338]},{"name":"MEMORY_PRIORITY_LOW","features":[338]},{"name":"MEMORY_PRIORITY_MEDIUM","features":[338]},{"name":"MEMORY_PRIORITY_NORMAL","features":[338]},{"name":"MEMORY_PRIORITY_VERY_LOW","features":[338]},{"name":"MUTEX_ALL_ACCESS","features":[338]},{"name":"MUTEX_MODIFY_STATE","features":[338]},{"name":"MaxProcessMitigationPolicy","features":[338]},{"name":"NORMAL_PRIORITY_CLASS","features":[338]},{"name":"OVERRIDE_PREFETCH_PARAMETER","features":[338]},{"name":"OpenEventA","features":[303,338]},{"name":"OpenEventW","features":[303,338]},{"name":"OpenMutexW","features":[303,338]},{"name":"OpenPrivateNamespaceA","features":[303,338]},{"name":"OpenPrivateNamespaceW","features":[303,338]},{"name":"OpenProcess","features":[303,338]},{"name":"OpenProcessToken","features":[303,306,338]},{"name":"OpenSemaphoreW","features":[303,338]},{"name":"OpenThread","features":[303,338]},{"name":"OpenThreadToken","features":[303,306,338]},{"name":"OpenWaitableTimerA","features":[303,338]},{"name":"OpenWaitableTimerW","features":[303,338]},{"name":"PEB","features":[303,309,338]},{"name":"PEB_LDR_DATA","features":[309,338]},{"name":"PFLS_CALLBACK_FUNCTION","features":[338]},{"name":"PF_3DNOW_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ALPHA_BYTE_INSTRUCTIONS","features":[338]},{"name":"PF_ARM_64BIT_LOADSTORE_ATOMIC","features":[338]},{"name":"PF_ARM_DIVIDE_INSTRUCTION_AVAILABLE","features":[338]},{"name":"PF_ARM_EXTERNAL_CACHE_AVAILABLE","features":[338]},{"name":"PF_ARM_FMAC_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_NEON_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_V81_ATOMIC_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_V83_LRCPC_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_V8_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_ARM_VFP_32_REGISTERS_AVAILABLE","features":[338]},{"name":"PF_AVX2_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_AVX512F_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_AVX_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_CHANNELS_ENABLED","features":[338]},{"name":"PF_COMPARE64_EXCHANGE128","features":[338]},{"name":"PF_COMPARE_EXCHANGE128","features":[338]},{"name":"PF_COMPARE_EXCHANGE_DOUBLE","features":[338]},{"name":"PF_ERMS_AVAILABLE","features":[338]},{"name":"PF_FASTFAIL_AVAILABLE","features":[338]},{"name":"PF_FLOATING_POINT_EMULATED","features":[338]},{"name":"PF_FLOATING_POINT_PRECISION_ERRATA","features":[338]},{"name":"PF_MMX_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_MONITORX_INSTRUCTION_AVAILABLE","features":[338]},{"name":"PF_NX_ENABLED","features":[338]},{"name":"PF_PAE_ENABLED","features":[338]},{"name":"PF_PPC_MOVEMEM_64BIT_OK","features":[338]},{"name":"PF_RDPID_INSTRUCTION_AVAILABLE","features":[338]},{"name":"PF_RDRAND_INSTRUCTION_AVAILABLE","features":[338]},{"name":"PF_RDTSCP_INSTRUCTION_AVAILABLE","features":[338]},{"name":"PF_RDTSC_INSTRUCTION_AVAILABLE","features":[338]},{"name":"PF_RDWRFSGSBASE_AVAILABLE","features":[338]},{"name":"PF_SECOND_LEVEL_ADDRESS_TRANSLATION","features":[338]},{"name":"PF_SSE3_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_SSE4_1_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_SSE4_2_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_SSE_DAZ_MODE_AVAILABLE","features":[338]},{"name":"PF_SSSE3_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_VIRT_FIRMWARE_ENABLED","features":[338]},{"name":"PF_XMMI64_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_XMMI_INSTRUCTIONS_AVAILABLE","features":[338]},{"name":"PF_XSAVE_ENABLED","features":[338]},{"name":"PINIT_ONCE_FN","features":[303,338]},{"name":"PMETypeFailFastOnCommitFailure","features":[338]},{"name":"PMETypeMax","features":[338]},{"name":"PME_CURRENT_VERSION","features":[338]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_DISABLE","features":[338]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_ENABLE","features":[338]},{"name":"POWER_REQUEST_CONTEXT_DETAILED_STRING","features":[338]},{"name":"POWER_REQUEST_CONTEXT_FLAGS","features":[338]},{"name":"POWER_REQUEST_CONTEXT_SIMPLE_STRING","features":[338]},{"name":"PPS_POST_PROCESS_INIT_ROUTINE","features":[338]},{"name":"PRIVATE_NAMESPACE_FLAG_DESTROY","features":[338]},{"name":"PROCESSOR_FEATURE_ID","features":[338]},{"name":"PROCESS_ACCESS_RIGHTS","features":[338]},{"name":"PROCESS_AFFINITY_AUTO_UPDATE_FLAGS","features":[338]},{"name":"PROCESS_AFFINITY_DISABLE_AUTO_UPDATE","features":[338]},{"name":"PROCESS_AFFINITY_ENABLE_AUTO_UPDATE","features":[338]},{"name":"PROCESS_ALL_ACCESS","features":[338]},{"name":"PROCESS_BASIC_INFORMATION","features":[303,309,338]},{"name":"PROCESS_CREATE_PROCESS","features":[338]},{"name":"PROCESS_CREATE_THREAD","features":[338]},{"name":"PROCESS_CREATION_FLAGS","features":[338]},{"name":"PROCESS_DELETE","features":[338]},{"name":"PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION","features":[338]},{"name":"PROCESS_DEP_ENABLE","features":[338]},{"name":"PROCESS_DEP_FLAGS","features":[338]},{"name":"PROCESS_DEP_NONE","features":[338]},{"name":"PROCESS_DUP_HANDLE","features":[338]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGET","features":[338]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGETS_INFORMATION","features":[338]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGE","features":[338]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGES_INFORMATION","features":[338]},{"name":"PROCESS_INFORMATION","features":[303,338]},{"name":"PROCESS_INFORMATION_CLASS","features":[338]},{"name":"PROCESS_LEAP_SECOND_INFO","features":[338]},{"name":"PROCESS_LEAP_SECOND_INFO_FLAG_ENABLE_SIXTY_SECOND","features":[338]},{"name":"PROCESS_LEAP_SECOND_INFO_VALID_FLAGS","features":[338]},{"name":"PROCESS_MACHINE_INFORMATION","features":[333,338]},{"name":"PROCESS_MEMORY_EXHAUSTION_INFO","features":[338]},{"name":"PROCESS_MEMORY_EXHAUSTION_TYPE","features":[338]},{"name":"PROCESS_MITIGATION_POLICY","features":[338]},{"name":"PROCESS_MODE_BACKGROUND_BEGIN","features":[338]},{"name":"PROCESS_MODE_BACKGROUND_END","features":[338]},{"name":"PROCESS_NAME_FORMAT","features":[338]},{"name":"PROCESS_NAME_NATIVE","features":[338]},{"name":"PROCESS_NAME_WIN32","features":[338]},{"name":"PROCESS_POWER_THROTTLING_CURRENT_VERSION","features":[338]},{"name":"PROCESS_POWER_THROTTLING_EXECUTION_SPEED","features":[338]},{"name":"PROCESS_POWER_THROTTLING_IGNORE_TIMER_RESOLUTION","features":[338]},{"name":"PROCESS_POWER_THROTTLING_STATE","features":[338]},{"name":"PROCESS_PROTECTION_LEVEL","features":[338]},{"name":"PROCESS_PROTECTION_LEVEL_INFORMATION","features":[338]},{"name":"PROCESS_QUERY_INFORMATION","features":[338]},{"name":"PROCESS_QUERY_LIMITED_INFORMATION","features":[338]},{"name":"PROCESS_READ_CONTROL","features":[338]},{"name":"PROCESS_SET_INFORMATION","features":[338]},{"name":"PROCESS_SET_LIMITED_INFORMATION","features":[338]},{"name":"PROCESS_SET_QUOTA","features":[338]},{"name":"PROCESS_SET_SESSIONID","features":[338]},{"name":"PROCESS_STANDARD_RIGHTS_REQUIRED","features":[338]},{"name":"PROCESS_SUSPEND_RESUME","features":[338]},{"name":"PROCESS_SYNCHRONIZE","features":[338]},{"name":"PROCESS_TERMINATE","features":[338]},{"name":"PROCESS_VM_OPERATION","features":[338]},{"name":"PROCESS_VM_READ","features":[338]},{"name":"PROCESS_VM_WRITE","features":[338]},{"name":"PROCESS_WRITE_DAC","features":[338]},{"name":"PROCESS_WRITE_OWNER","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_ALL_APPLICATION_PACKAGES_POLICY","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_CHILD_PROCESS_POLICY","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_COMPONENT_FILTER","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_DESKTOP_APP_POLICY","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_ENABLE_OPTIONAL_XSTATE_FEATURES","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_GROUP_AFFINITY","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_HANDLE_LIST","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_IDEAL_PROCESSOR","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_JOB_LIST","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_MACHINE_TYPE","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_AUDIT_POLICY","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_POLICY","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_NUM","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_PARENT_PROCESS","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_PREFERRED_NODE","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_PROTECTION_LEVEL","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_REPLACE_VALUE","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_SECURITY_CAPABILITIES","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_UMS_THREAD","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_WIN32K_FILTER","features":[338]},{"name":"PROFILE_KERNEL","features":[338]},{"name":"PROFILE_SERVER","features":[338]},{"name":"PROFILE_USER","features":[338]},{"name":"PROTECTION_LEVEL_ANTIMALWARE_LIGHT","features":[338]},{"name":"PROTECTION_LEVEL_AUTHENTICODE","features":[338]},{"name":"PROTECTION_LEVEL_CODEGEN_LIGHT","features":[338]},{"name":"PROTECTION_LEVEL_LSA_LIGHT","features":[338]},{"name":"PROTECTION_LEVEL_NONE","features":[338]},{"name":"PROTECTION_LEVEL_PPL_APP","features":[338]},{"name":"PROTECTION_LEVEL_WINDOWS","features":[338]},{"name":"PROTECTION_LEVEL_WINDOWS_LIGHT","features":[338]},{"name":"PROTECTION_LEVEL_WINTCB","features":[338]},{"name":"PROTECTION_LEVEL_WINTCB_LIGHT","features":[338]},{"name":"PRTL_UMS_SCHEDULER_ENTRY_POINT","features":[337,338]},{"name":"PTIMERAPCROUTINE","features":[338]},{"name":"PTP_CALLBACK_INSTANCE","features":[338]},{"name":"PTP_CLEANUP_GROUP","features":[338]},{"name":"PTP_CLEANUP_GROUP_CANCEL_CALLBACK","features":[338]},{"name":"PTP_IO","features":[338]},{"name":"PTP_POOL","features":[338]},{"name":"PTP_SIMPLE_CALLBACK","features":[338]},{"name":"PTP_TIMER","features":[338]},{"name":"PTP_TIMER_CALLBACK","features":[338]},{"name":"PTP_WAIT","features":[338]},{"name":"PTP_WAIT_CALLBACK","features":[338]},{"name":"PTP_WIN32_IO_CALLBACK","features":[338]},{"name":"PTP_WORK","features":[338]},{"name":"PTP_WORK_CALLBACK","features":[338]},{"name":"ProcThreadAttributeAllApplicationPackagesPolicy","features":[338]},{"name":"ProcThreadAttributeChildProcessPolicy","features":[338]},{"name":"ProcThreadAttributeComponentFilter","features":[338]},{"name":"ProcThreadAttributeDesktopAppPolicy","features":[338]},{"name":"ProcThreadAttributeEnableOptionalXStateFeatures","features":[338]},{"name":"ProcThreadAttributeGroupAffinity","features":[338]},{"name":"ProcThreadAttributeHandleList","features":[338]},{"name":"ProcThreadAttributeIdealProcessor","features":[338]},{"name":"ProcThreadAttributeJobList","features":[338]},{"name":"ProcThreadAttributeMachineType","features":[338]},{"name":"ProcThreadAttributeMitigationAuditPolicy","features":[338]},{"name":"ProcThreadAttributeMitigationPolicy","features":[338]},{"name":"ProcThreadAttributeParentProcess","features":[338]},{"name":"ProcThreadAttributePreferredNode","features":[338]},{"name":"ProcThreadAttributeProtectionLevel","features":[338]},{"name":"ProcThreadAttributePseudoConsole","features":[338]},{"name":"ProcThreadAttributeSafeOpenPromptOriginClaim","features":[338]},{"name":"ProcThreadAttributeSecurityCapabilities","features":[338]},{"name":"ProcThreadAttributeTrustedApp","features":[338]},{"name":"ProcThreadAttributeUmsThread","features":[338]},{"name":"ProcThreadAttributeWin32kFilter","features":[338]},{"name":"ProcessASLRPolicy","features":[338]},{"name":"ProcessActivationContextTrustPolicy","features":[338]},{"name":"ProcessAppMemoryInfo","features":[338]},{"name":"ProcessChildProcessPolicy","features":[338]},{"name":"ProcessControlFlowGuardPolicy","features":[338]},{"name":"ProcessDEPPolicy","features":[338]},{"name":"ProcessDynamicCodePolicy","features":[338]},{"name":"ProcessExtensionPointDisablePolicy","features":[338]},{"name":"ProcessFontDisablePolicy","features":[338]},{"name":"ProcessImageLoadPolicy","features":[338]},{"name":"ProcessInPrivateInfo","features":[338]},{"name":"ProcessInformationClassMax","features":[338]},{"name":"ProcessLeapSecondInfo","features":[338]},{"name":"ProcessMachineTypeInfo","features":[338]},{"name":"ProcessMaxOverridePrefetchParameter","features":[338]},{"name":"ProcessMemoryExhaustionInfo","features":[338]},{"name":"ProcessMemoryPriority","features":[338]},{"name":"ProcessMitigationOptionsMask","features":[338]},{"name":"ProcessOverrideSubsequentPrefetchParameter","features":[338]},{"name":"ProcessPayloadRestrictionPolicy","features":[338]},{"name":"ProcessPowerThrottling","features":[338]},{"name":"ProcessProtectionLevelInfo","features":[338]},{"name":"ProcessRedirectionTrustPolicy","features":[338]},{"name":"ProcessReservedValue1","features":[338]},{"name":"ProcessSEHOPPolicy","features":[338]},{"name":"ProcessSideChannelIsolationPolicy","features":[338]},{"name":"ProcessSignaturePolicy","features":[338]},{"name":"ProcessStrictHandleCheckPolicy","features":[338]},{"name":"ProcessSystemCallDisablePolicy","features":[338]},{"name":"ProcessSystemCallFilterPolicy","features":[338]},{"name":"ProcessTelemetryCoverageInfo","features":[338]},{"name":"ProcessUserPointerAuthPolicy","features":[338]},{"name":"ProcessUserShadowStackPolicy","features":[338]},{"name":"PulseEvent","features":[303,338]},{"name":"QUEUE_USER_APC_CALLBACK_DATA_CONTEXT","features":[338]},{"name":"QUEUE_USER_APC_FLAGS","features":[338]},{"name":"QUEUE_USER_APC_FLAGS_NONE","features":[338]},{"name":"QUEUE_USER_APC_FLAGS_SPECIAL_USER_APC","features":[338]},{"name":"QueryDepthSList","features":[309,338]},{"name":"QueryFullProcessImageNameA","features":[303,338]},{"name":"QueryFullProcessImageNameW","features":[303,338]},{"name":"QueryProcessAffinityUpdateMode","features":[303,338]},{"name":"QueryProtectedPolicy","features":[303,338]},{"name":"QueryThreadpoolStackInformation","features":[303,338]},{"name":"QueryUmsThreadInformation","features":[303,338]},{"name":"QueueUserAPC","features":[303,338]},{"name":"QueueUserAPC2","features":[303,338]},{"name":"QueueUserWorkItem","features":[303,338]},{"name":"REALTIME_PRIORITY_CLASS","features":[338]},{"name":"REASON_CONTEXT","features":[303,338]},{"name":"RTL_CRITICAL_SECTION_ALL_FLAG_BITS","features":[338]},{"name":"RTL_CRITICAL_SECTION_DEBUG_FLAG_STATIC_INIT","features":[338]},{"name":"RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN","features":[338]},{"name":"RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO","features":[338]},{"name":"RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO","features":[338]},{"name":"RTL_CRITICAL_SECTION_FLAG_RESOURCE_TYPE","features":[338]},{"name":"RTL_CRITICAL_SECTION_FLAG_STATIC_INIT","features":[338]},{"name":"RTL_USER_PROCESS_PARAMETERS","features":[303,338]},{"name":"RTWQASYNCRESULT","features":[338]},{"name":"RTWQPERIODICCALLBACK","features":[338]},{"name":"RTWQ_MULTITHREADED_WORKQUEUE","features":[338]},{"name":"RTWQ_STANDARD_WORKQUEUE","features":[338]},{"name":"RTWQ_WINDOW_WORKQUEUE","features":[338]},{"name":"RTWQ_WORKQUEUE_TYPE","features":[338]},{"name":"RegisterWaitForSingleObject","features":[303,338]},{"name":"ReleaseMutex","features":[303,338]},{"name":"ReleaseMutexWhenCallbackReturns","features":[303,338]},{"name":"ReleaseSRWLockExclusive","features":[338]},{"name":"ReleaseSRWLockShared","features":[338]},{"name":"ReleaseSemaphore","features":[303,338]},{"name":"ReleaseSemaphoreWhenCallbackReturns","features":[303,338]},{"name":"ResetEvent","features":[303,338]},{"name":"ResumeThread","features":[303,338]},{"name":"RtwqAddPeriodicCallback","features":[338]},{"name":"RtwqAllocateSerialWorkQueue","features":[338]},{"name":"RtwqAllocateWorkQueue","features":[338]},{"name":"RtwqBeginRegisterWorkQueueWithMMCSS","features":[338]},{"name":"RtwqBeginUnregisterWorkQueueWithMMCSS","features":[338]},{"name":"RtwqCancelDeadline","features":[303,338]},{"name":"RtwqCancelWorkItem","features":[338]},{"name":"RtwqCreateAsyncResult","features":[338]},{"name":"RtwqEndRegisterWorkQueueWithMMCSS","features":[338]},{"name":"RtwqGetWorkQueueMMCSSClass","features":[338]},{"name":"RtwqGetWorkQueueMMCSSPriority","features":[338]},{"name":"RtwqGetWorkQueueMMCSSTaskId","features":[338]},{"name":"RtwqInvokeCallback","features":[338]},{"name":"RtwqJoinWorkQueue","features":[303,338]},{"name":"RtwqLockPlatform","features":[338]},{"name":"RtwqLockSharedWorkQueue","features":[338]},{"name":"RtwqLockWorkQueue","features":[338]},{"name":"RtwqPutWaitingWorkItem","features":[303,338]},{"name":"RtwqPutWorkItem","features":[338]},{"name":"RtwqRegisterPlatformEvents","features":[338]},{"name":"RtwqRegisterPlatformWithMMCSS","features":[338]},{"name":"RtwqRemovePeriodicCallback","features":[338]},{"name":"RtwqScheduleWorkItem","features":[338]},{"name":"RtwqSetDeadline","features":[303,338]},{"name":"RtwqSetDeadline2","features":[303,338]},{"name":"RtwqSetLongRunning","features":[303,338]},{"name":"RtwqShutdown","features":[338]},{"name":"RtwqStartup","features":[338]},{"name":"RtwqUnjoinWorkQueue","features":[303,338]},{"name":"RtwqUnlockPlatform","features":[338]},{"name":"RtwqUnlockWorkQueue","features":[338]},{"name":"RtwqUnregisterPlatformEvents","features":[338]},{"name":"RtwqUnregisterPlatformFromMMCSS","features":[338]},{"name":"SEMAPHORE_ALL_ACCESS","features":[338]},{"name":"SEMAPHORE_MODIFY_STATE","features":[338]},{"name":"SRWLOCK","features":[338]},{"name":"SRWLOCK_INIT","features":[338]},{"name":"STACK_SIZE_PARAM_IS_A_RESERVATION","features":[338]},{"name":"STARTF_FORCEOFFFEEDBACK","features":[338]},{"name":"STARTF_FORCEONFEEDBACK","features":[338]},{"name":"STARTF_PREVENTPINNING","features":[338]},{"name":"STARTF_RUNFULLSCREEN","features":[338]},{"name":"STARTF_TITLEISAPPID","features":[338]},{"name":"STARTF_TITLEISLINKNAME","features":[338]},{"name":"STARTF_UNTRUSTEDSOURCE","features":[338]},{"name":"STARTF_USECOUNTCHARS","features":[338]},{"name":"STARTF_USEFILLATTRIBUTE","features":[338]},{"name":"STARTF_USEHOTKEY","features":[338]},{"name":"STARTF_USEPOSITION","features":[338]},{"name":"STARTF_USESHOWWINDOW","features":[338]},{"name":"STARTF_USESIZE","features":[338]},{"name":"STARTF_USESTDHANDLES","features":[338]},{"name":"STARTUPINFOA","features":[303,338]},{"name":"STARTUPINFOEXA","features":[303,338]},{"name":"STARTUPINFOEXW","features":[303,338]},{"name":"STARTUPINFOW","features":[303,338]},{"name":"STARTUPINFOW_FLAGS","features":[338]},{"name":"SYNCHRONIZATION_ACCESS_RIGHTS","features":[338]},{"name":"SYNCHRONIZATION_BARRIER","features":[338]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_BLOCK_ONLY","features":[338]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_NO_DELETE","features":[338]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_SPIN_ONLY","features":[338]},{"name":"SYNCHRONIZATION_DELETE","features":[338]},{"name":"SYNCHRONIZATION_READ_CONTROL","features":[338]},{"name":"SYNCHRONIZATION_SYNCHRONIZE","features":[338]},{"name":"SYNCHRONIZATION_WRITE_DAC","features":[338]},{"name":"SYNCHRONIZATION_WRITE_OWNER","features":[338]},{"name":"SetCriticalSectionSpinCount","features":[303,309,338]},{"name":"SetEvent","features":[303,338]},{"name":"SetEventWhenCallbackReturns","features":[303,338]},{"name":"SetPriorityClass","features":[303,338]},{"name":"SetProcessAffinityMask","features":[303,338]},{"name":"SetProcessAffinityUpdateMode","features":[303,338]},{"name":"SetProcessDEPPolicy","features":[303,338]},{"name":"SetProcessDefaultCpuSetMasks","features":[303,333,338]},{"name":"SetProcessDefaultCpuSets","features":[303,338]},{"name":"SetProcessDynamicEHContinuationTargets","features":[303,338]},{"name":"SetProcessDynamicEnforcedCetCompatibleRanges","features":[303,338]},{"name":"SetProcessInformation","features":[303,338]},{"name":"SetProcessMitigationPolicy","features":[303,338]},{"name":"SetProcessPriorityBoost","features":[303,338]},{"name":"SetProcessRestrictionExemption","features":[303,338]},{"name":"SetProcessShutdownParameters","features":[303,338]},{"name":"SetProcessWorkingSetSize","features":[303,338]},{"name":"SetProtectedPolicy","features":[303,338]},{"name":"SetThreadAffinityMask","features":[303,338]},{"name":"SetThreadDescription","features":[303,338]},{"name":"SetThreadGroupAffinity","features":[303,333,338]},{"name":"SetThreadIdealProcessor","features":[303,338]},{"name":"SetThreadIdealProcessorEx","features":[303,309,338]},{"name":"SetThreadInformation","features":[303,338]},{"name":"SetThreadPriority","features":[303,338]},{"name":"SetThreadPriorityBoost","features":[303,338]},{"name":"SetThreadSelectedCpuSetMasks","features":[303,333,338]},{"name":"SetThreadSelectedCpuSets","features":[303,338]},{"name":"SetThreadStackGuarantee","features":[303,338]},{"name":"SetThreadToken","features":[303,338]},{"name":"SetThreadpoolStackInformation","features":[303,338]},{"name":"SetThreadpoolThreadMaximum","features":[338]},{"name":"SetThreadpoolThreadMinimum","features":[303,338]},{"name":"SetThreadpoolTimer","features":[303,338]},{"name":"SetThreadpoolTimerEx","features":[303,338]},{"name":"SetThreadpoolWait","features":[303,338]},{"name":"SetThreadpoolWaitEx","features":[303,338]},{"name":"SetTimerQueueTimer","features":[303,338]},{"name":"SetUmsThreadInformation","features":[303,338]},{"name":"SetWaitableTimer","features":[303,338]},{"name":"SetWaitableTimerEx","features":[303,338]},{"name":"SignalObjectAndWait","features":[303,338]},{"name":"Sleep","features":[338]},{"name":"SleepConditionVariableCS","features":[303,309,338]},{"name":"SleepConditionVariableSRW","features":[303,338]},{"name":"SleepEx","features":[303,338]},{"name":"StartThreadpoolIo","features":[338]},{"name":"SubmitThreadpoolWork","features":[338]},{"name":"SuspendThread","features":[303,338]},{"name":"SwitchToFiber","features":[338]},{"name":"SwitchToThread","features":[303,338]},{"name":"TEB","features":[303,309,338]},{"name":"THREAD_ACCESS_RIGHTS","features":[338]},{"name":"THREAD_ALL_ACCESS","features":[338]},{"name":"THREAD_CREATE_RUN_IMMEDIATELY","features":[338]},{"name":"THREAD_CREATE_SUSPENDED","features":[338]},{"name":"THREAD_CREATION_FLAGS","features":[338]},{"name":"THREAD_DELETE","features":[338]},{"name":"THREAD_DIRECT_IMPERSONATION","features":[338]},{"name":"THREAD_GET_CONTEXT","features":[338]},{"name":"THREAD_IMPERSONATE","features":[338]},{"name":"THREAD_INFORMATION_CLASS","features":[338]},{"name":"THREAD_MODE_BACKGROUND_BEGIN","features":[338]},{"name":"THREAD_MODE_BACKGROUND_END","features":[338]},{"name":"THREAD_POWER_THROTTLING_CURRENT_VERSION","features":[338]},{"name":"THREAD_POWER_THROTTLING_EXECUTION_SPEED","features":[338]},{"name":"THREAD_POWER_THROTTLING_STATE","features":[338]},{"name":"THREAD_POWER_THROTTLING_VALID_FLAGS","features":[338]},{"name":"THREAD_PRIORITY","features":[338]},{"name":"THREAD_PRIORITY_ABOVE_NORMAL","features":[338]},{"name":"THREAD_PRIORITY_BELOW_NORMAL","features":[338]},{"name":"THREAD_PRIORITY_HIGHEST","features":[338]},{"name":"THREAD_PRIORITY_IDLE","features":[338]},{"name":"THREAD_PRIORITY_LOWEST","features":[338]},{"name":"THREAD_PRIORITY_MIN","features":[338]},{"name":"THREAD_PRIORITY_NORMAL","features":[338]},{"name":"THREAD_PRIORITY_TIME_CRITICAL","features":[338]},{"name":"THREAD_QUERY_INFORMATION","features":[338]},{"name":"THREAD_QUERY_LIMITED_INFORMATION","features":[338]},{"name":"THREAD_READ_CONTROL","features":[338]},{"name":"THREAD_RESUME","features":[338]},{"name":"THREAD_SET_CONTEXT","features":[338]},{"name":"THREAD_SET_INFORMATION","features":[338]},{"name":"THREAD_SET_LIMITED_INFORMATION","features":[338]},{"name":"THREAD_SET_THREAD_TOKEN","features":[338]},{"name":"THREAD_STANDARD_RIGHTS_REQUIRED","features":[338]},{"name":"THREAD_SUSPEND_RESUME","features":[338]},{"name":"THREAD_SYNCHRONIZE","features":[338]},{"name":"THREAD_TERMINATE","features":[338]},{"name":"THREAD_WRITE_DAC","features":[338]},{"name":"THREAD_WRITE_OWNER","features":[338]},{"name":"TIMER_ALL_ACCESS","features":[338]},{"name":"TIMER_MODIFY_STATE","features":[338]},{"name":"TIMER_QUERY_STATE","features":[338]},{"name":"TLS_OUT_OF_INDEXES","features":[338]},{"name":"TP_CALLBACK_ENVIRON_V3","features":[338]},{"name":"TP_CALLBACK_PRIORITY","features":[338]},{"name":"TP_CALLBACK_PRIORITY_COUNT","features":[338]},{"name":"TP_CALLBACK_PRIORITY_HIGH","features":[338]},{"name":"TP_CALLBACK_PRIORITY_INVALID","features":[338]},{"name":"TP_CALLBACK_PRIORITY_LOW","features":[338]},{"name":"TP_CALLBACK_PRIORITY_NORMAL","features":[338]},{"name":"TP_POOL_STACK_INFORMATION","features":[338]},{"name":"TerminateProcess","features":[303,338]},{"name":"TerminateThread","features":[303,338]},{"name":"ThreadAbsoluteCpuPriority","features":[338]},{"name":"ThreadDynamicCodePolicy","features":[338]},{"name":"ThreadInformationClassMax","features":[338]},{"name":"ThreadMemoryPriority","features":[338]},{"name":"ThreadPowerThrottling","features":[338]},{"name":"TlsAlloc","features":[338]},{"name":"TlsFree","features":[303,338]},{"name":"TlsGetValue","features":[338]},{"name":"TlsSetValue","features":[303,338]},{"name":"TryAcquireSRWLockExclusive","features":[303,338]},{"name":"TryAcquireSRWLockShared","features":[303,338]},{"name":"TryEnterCriticalSection","features":[303,309,338]},{"name":"TrySubmitThreadpoolCallback","features":[303,338]},{"name":"UMS_SCHEDULER_STARTUP_INFO","features":[337,338]},{"name":"UMS_SYSTEM_THREAD_INFORMATION","features":[338]},{"name":"UMS_THREAD_INFO_CLASS","features":[338]},{"name":"UmsThreadAffinity","features":[338]},{"name":"UmsThreadInvalidInfoClass","features":[338]},{"name":"UmsThreadIsSuspended","features":[338]},{"name":"UmsThreadIsTerminated","features":[338]},{"name":"UmsThreadMaxInfoClass","features":[338]},{"name":"UmsThreadPriority","features":[338]},{"name":"UmsThreadTeb","features":[338]},{"name":"UmsThreadUserContext","features":[338]},{"name":"UmsThreadYield","features":[303,338]},{"name":"UnregisterWait","features":[303,338]},{"name":"UnregisterWaitEx","features":[303,338]},{"name":"UpdateProcThreadAttribute","features":[303,338]},{"name":"UserEnabled","features":[338]},{"name":"WAITORTIMERCALLBACK","features":[303,338]},{"name":"WORKERCALLBACKFUNC","features":[338]},{"name":"WORKER_THREAD_FLAGS","features":[338]},{"name":"WT_EXECUTEDEFAULT","features":[338]},{"name":"WT_EXECUTEINIOTHREAD","features":[338]},{"name":"WT_EXECUTEINPERSISTENTTHREAD","features":[338]},{"name":"WT_EXECUTEINTIMERTHREAD","features":[338]},{"name":"WT_EXECUTEINWAITTHREAD","features":[338]},{"name":"WT_EXECUTELONGFUNCTION","features":[338]},{"name":"WT_EXECUTEONLYONCE","features":[338]},{"name":"WT_TRANSFER_IMPERSONATION","features":[338]},{"name":"WaitForInputIdle","features":[303,338]},{"name":"WaitForMultipleObjects","features":[303,338]},{"name":"WaitForMultipleObjectsEx","features":[303,338]},{"name":"WaitForSingleObject","features":[303,338]},{"name":"WaitForSingleObjectEx","features":[303,338]},{"name":"WaitForThreadpoolIoCallbacks","features":[303,338]},{"name":"WaitForThreadpoolTimerCallbacks","features":[303,338]},{"name":"WaitForThreadpoolWaitCallbacks","features":[303,338]},{"name":"WaitForThreadpoolWorkCallbacks","features":[303,338]},{"name":"WaitOnAddress","features":[303,338]},{"name":"WakeAllConditionVariable","features":[338]},{"name":"WakeByAddressAll","features":[338]},{"name":"WakeByAddressSingle","features":[338]},{"name":"WakeConditionVariable","features":[338]},{"name":"WinExec","features":[338]},{"name":"Wow64Container","features":[338]},{"name":"Wow64SetThreadDefaultGuestMachine","features":[338]},{"name":"Wow64SuspendThread","features":[303,338]}],"617":[{"name":"DYNAMIC_TIME_ZONE_INFORMATION","features":[303,540]},{"name":"EnumDynamicTimeZoneInformation","features":[303,540]},{"name":"FileTimeToSystemTime","features":[303,540]},{"name":"GetDynamicTimeZoneInformation","features":[303,540]},{"name":"GetDynamicTimeZoneInformationEffectiveYears","features":[303,540]},{"name":"GetTimeZoneInformation","features":[303,540]},{"name":"GetTimeZoneInformationForYear","features":[303,540]},{"name":"LocalFileTimeToLocalSystemTime","features":[303,540]},{"name":"LocalSystemTimeToLocalFileTime","features":[303,540]},{"name":"SetDynamicTimeZoneInformation","features":[303,540]},{"name":"SetTimeZoneInformation","features":[303,540]},{"name":"SystemTimeToFileTime","features":[303,540]},{"name":"SystemTimeToTzSpecificLocalTime","features":[303,540]},{"name":"SystemTimeToTzSpecificLocalTimeEx","features":[303,540]},{"name":"TIME_ZONE_ID_INVALID","features":[540]},{"name":"TIME_ZONE_INFORMATION","features":[303,540]},{"name":"TSF_Authenticated","features":[540]},{"name":"TSF_Hardware","features":[540]},{"name":"TSF_IPv6","features":[540]},{"name":"TSF_SignatureAuthenticated","features":[540]},{"name":"TzSpecificLocalTimeToSystemTime","features":[303,540]},{"name":"TzSpecificLocalTimeToSystemTimeEx","features":[303,540]},{"name":"wszW32TimeRegKeyPolicyTimeProviders","features":[540]},{"name":"wszW32TimeRegKeyTimeProviders","features":[540]},{"name":"wszW32TimeRegValueDllName","features":[540]},{"name":"wszW32TimeRegValueEnabled","features":[540]},{"name":"wszW32TimeRegValueInputProvider","features":[540]},{"name":"wszW32TimeRegValueMetaDataProvider","features":[540]}],"618":[{"name":"GetDeviceID","features":[303,590]},{"name":"GetDeviceIDString","features":[303,590]},{"name":"TBS_COMMAND_LOCALITY","features":[590]},{"name":"TBS_COMMAND_LOCALITY_FOUR","features":[590]},{"name":"TBS_COMMAND_LOCALITY_ONE","features":[590]},{"name":"TBS_COMMAND_LOCALITY_THREE","features":[590]},{"name":"TBS_COMMAND_LOCALITY_TWO","features":[590]},{"name":"TBS_COMMAND_LOCALITY_ZERO","features":[590]},{"name":"TBS_COMMAND_PRIORITY","features":[590]},{"name":"TBS_COMMAND_PRIORITY_HIGH","features":[590]},{"name":"TBS_COMMAND_PRIORITY_LOW","features":[590]},{"name":"TBS_COMMAND_PRIORITY_MAX","features":[590]},{"name":"TBS_COMMAND_PRIORITY_NORMAL","features":[590]},{"name":"TBS_COMMAND_PRIORITY_SYSTEM","features":[590]},{"name":"TBS_CONTEXT_PARAMS","features":[590]},{"name":"TBS_CONTEXT_PARAMS2","features":[590]},{"name":"TBS_CONTEXT_VERSION_ONE","features":[590]},{"name":"TBS_CONTEXT_VERSION_TWO","features":[590]},{"name":"TBS_OWNERAUTH_TYPE_ADMIN","features":[590]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT","features":[590]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT_20","features":[590]},{"name":"TBS_OWNERAUTH_TYPE_FULL","features":[590]},{"name":"TBS_OWNERAUTH_TYPE_STORAGE_20","features":[590]},{"name":"TBS_OWNERAUTH_TYPE_USER","features":[590]},{"name":"TBS_SUCCESS","features":[590]},{"name":"TBS_TCGLOG_DRTM_BOOT","features":[590]},{"name":"TBS_TCGLOG_DRTM_CURRENT","features":[590]},{"name":"TBS_TCGLOG_DRTM_RESUME","features":[590]},{"name":"TBS_TCGLOG_SRTM_BOOT","features":[590]},{"name":"TBS_TCGLOG_SRTM_CURRENT","features":[590]},{"name":"TBS_TCGLOG_SRTM_RESUME","features":[590]},{"name":"TPM_DEVICE_INFO","features":[590]},{"name":"TPM_IFTYPE_1","features":[590]},{"name":"TPM_IFTYPE_EMULATOR","features":[590]},{"name":"TPM_IFTYPE_HW","features":[590]},{"name":"TPM_IFTYPE_SPB","features":[590]},{"name":"TPM_IFTYPE_TRUSTZONE","features":[590]},{"name":"TPM_IFTYPE_UNKNOWN","features":[590]},{"name":"TPM_VERSION_12","features":[590]},{"name":"TPM_VERSION_20","features":[590]},{"name":"TPM_VERSION_UNKNOWN","features":[590]},{"name":"TPM_WNF_INFO_CLEAR_SUCCESSFUL","features":[590]},{"name":"TPM_WNF_INFO_NO_REBOOT_REQUIRED","features":[590]},{"name":"TPM_WNF_INFO_OWNERSHIP_SUCCESSFUL","features":[590]},{"name":"TPM_WNF_PROVISIONING","features":[590]},{"name":"Tbsi_Context_Create","features":[590]},{"name":"Tbsi_Create_Windows_Key","features":[590]},{"name":"Tbsi_GetDeviceInfo","features":[590]},{"name":"Tbsi_Get_OwnerAuth","features":[590]},{"name":"Tbsi_Get_TCG_Log","features":[590]},{"name":"Tbsi_Get_TCG_Log_Ex","features":[590]},{"name":"Tbsi_Is_Tpm_Present","features":[303,590]},{"name":"Tbsi_Physical_Presence_Command","features":[590]},{"name":"Tbsi_Revoke_Attestation","features":[590]},{"name":"Tbsip_Cancel_Commands","features":[590]},{"name":"Tbsip_Context_Close","features":[590]},{"name":"Tbsip_Submit_Command","features":[590]}],"619":[{"name":"Catalog","features":[591]},{"name":"CatalogCollection","features":[591]},{"name":"CatalogObject","features":[591]},{"name":"ComponentUtil","features":[591]},{"name":"ICatalog","features":[354,591]},{"name":"IComponentUtil","features":[354,591]},{"name":"IPackageUtil","features":[354,591]},{"name":"IRemoteComponentUtil","features":[354,591]},{"name":"IRoleAssociationUtil","features":[354,591]},{"name":"MTSAdminErrorCodes","features":[591]},{"name":"MTSPackageExportOptions","features":[591]},{"name":"MTSPackageInstallOptions","features":[591]},{"name":"PackageUtil","features":[591]},{"name":"RemoteComponentUtil","features":[591]},{"name":"RoleAssociationUtil","features":[591]},{"name":"mtsErrAlreadyInstalled","features":[591]},{"name":"mtsErrAuthenticationLevel","features":[591]},{"name":"mtsErrBadForward","features":[591]},{"name":"mtsErrBadIID","features":[591]},{"name":"mtsErrBadPath","features":[591]},{"name":"mtsErrBadRegistryLibID","features":[591]},{"name":"mtsErrBadRegistryProgID","features":[591]},{"name":"mtsErrCLSIDOrIIDMismatch","features":[591]},{"name":"mtsErrCantCopyFile","features":[591]},{"name":"mtsErrCoReqCompInstalled","features":[591]},{"name":"mtsErrCompFileBadTLB","features":[591]},{"name":"mtsErrCompFileClassNotAvail","features":[591]},{"name":"mtsErrCompFileDoesNotExist","features":[591]},{"name":"mtsErrCompFileGetClassObj","features":[591]},{"name":"mtsErrCompFileLoadDLLFail","features":[591]},{"name":"mtsErrCompFileNoRegistrar","features":[591]},{"name":"mtsErrCompFileNotInstallable","features":[591]},{"name":"mtsErrDllLoadFailed","features":[591]},{"name":"mtsErrDllRegisterServer","features":[591]},{"name":"mtsErrDownloadFailed","features":[591]},{"name":"mtsErrInvalidUserids","features":[591]},{"name":"mtsErrKeyMissing","features":[591]},{"name":"mtsErrNoAccessToUNC","features":[591]},{"name":"mtsErrNoRegistryCLSID","features":[591]},{"name":"mtsErrNoRegistryRead","features":[591]},{"name":"mtsErrNoRegistryRepair","features":[591]},{"name":"mtsErrNoRegistryWrite","features":[591]},{"name":"mtsErrNoServerShare","features":[591]},{"name":"mtsErrNoTypeLib","features":[591]},{"name":"mtsErrNoUser","features":[591]},{"name":"mtsErrNotChangeable","features":[591]},{"name":"mtsErrNotDeletable","features":[591]},{"name":"mtsErrObjectErrors","features":[591]},{"name":"mtsErrObjectInvalid","features":[591]},{"name":"mtsErrPDFReadFail","features":[591]},{"name":"mtsErrPDFVersion","features":[591]},{"name":"mtsErrPDFWriteFail","features":[591]},{"name":"mtsErrPackDirNotFound","features":[591]},{"name":"mtsErrPackageExists","features":[591]},{"name":"mtsErrRegistrarFailed","features":[591]},{"name":"mtsErrRemoteInterface","features":[591]},{"name":"mtsErrRoleExists","features":[591]},{"name":"mtsErrSession","features":[591]},{"name":"mtsErrTreatAs","features":[591]},{"name":"mtsErrUserPasswdNotValid","features":[591]},{"name":"mtsExportUsers","features":[591]},{"name":"mtsInstallUsers","features":[591]}],"620":[{"name":"AddServiceFlag","features":[592]},{"name":"AutoDownloadMode","features":[592]},{"name":"AutoSelectionMode","features":[592]},{"name":"AutomaticUpdates","features":[592]},{"name":"AutomaticUpdatesNotificationLevel","features":[592]},{"name":"AutomaticUpdatesPermissionType","features":[592]},{"name":"AutomaticUpdatesScheduledInstallationDay","features":[592]},{"name":"AutomaticUpdatesUserType","features":[592]},{"name":"DeploymentAction","features":[592]},{"name":"DownloadPhase","features":[592]},{"name":"DownloadPriority","features":[592]},{"name":"IAutomaticUpdates","features":[354,592]},{"name":"IAutomaticUpdates2","features":[354,592]},{"name":"IAutomaticUpdatesResults","features":[354,592]},{"name":"IAutomaticUpdatesSettings","features":[354,592]},{"name":"IAutomaticUpdatesSettings2","features":[354,592]},{"name":"IAutomaticUpdatesSettings3","features":[354,592]},{"name":"ICategory","features":[354,592]},{"name":"ICategoryCollection","features":[354,592]},{"name":"IDownloadCompletedCallback","features":[592]},{"name":"IDownloadCompletedCallbackArgs","features":[354,592]},{"name":"IDownloadJob","features":[354,592]},{"name":"IDownloadProgress","features":[354,592]},{"name":"IDownloadProgressChangedCallback","features":[592]},{"name":"IDownloadProgressChangedCallbackArgs","features":[354,592]},{"name":"IDownloadResult","features":[354,592]},{"name":"IImageInformation","features":[354,592]},{"name":"IInstallationAgent","features":[354,592]},{"name":"IInstallationBehavior","features":[354,592]},{"name":"IInstallationCompletedCallback","features":[592]},{"name":"IInstallationCompletedCallbackArgs","features":[354,592]},{"name":"IInstallationJob","features":[354,592]},{"name":"IInstallationProgress","features":[354,592]},{"name":"IInstallationProgressChangedCallback","features":[592]},{"name":"IInstallationProgressChangedCallbackArgs","features":[354,592]},{"name":"IInstallationResult","features":[354,592]},{"name":"IInvalidProductLicenseException","features":[354,592]},{"name":"ISearchCompletedCallback","features":[592]},{"name":"ISearchCompletedCallbackArgs","features":[354,592]},{"name":"ISearchJob","features":[354,592]},{"name":"ISearchResult","features":[354,592]},{"name":"IStringCollection","features":[354,592]},{"name":"ISystemInformation","features":[354,592]},{"name":"IUpdate","features":[354,592]},{"name":"IUpdate2","features":[354,592]},{"name":"IUpdate3","features":[354,592]},{"name":"IUpdate4","features":[354,592]},{"name":"IUpdate5","features":[354,592]},{"name":"IUpdateCollection","features":[354,592]},{"name":"IUpdateDownloadContent","features":[354,592]},{"name":"IUpdateDownloadContent2","features":[354,592]},{"name":"IUpdateDownloadContentCollection","features":[354,592]},{"name":"IUpdateDownloadResult","features":[354,592]},{"name":"IUpdateDownloader","features":[354,592]},{"name":"IUpdateException","features":[354,592]},{"name":"IUpdateExceptionCollection","features":[354,592]},{"name":"IUpdateHistoryEntry","features":[354,592]},{"name":"IUpdateHistoryEntry2","features":[354,592]},{"name":"IUpdateHistoryEntryCollection","features":[354,592]},{"name":"IUpdateIdentity","features":[354,592]},{"name":"IUpdateInstallationResult","features":[354,592]},{"name":"IUpdateInstaller","features":[354,592]},{"name":"IUpdateInstaller2","features":[354,592]},{"name":"IUpdateInstaller3","features":[354,592]},{"name":"IUpdateInstaller4","features":[354,592]},{"name":"IUpdateLockdown","features":[592]},{"name":"IUpdateSearcher","features":[354,592]},{"name":"IUpdateSearcher2","features":[354,592]},{"name":"IUpdateSearcher3","features":[354,592]},{"name":"IUpdateService","features":[354,592]},{"name":"IUpdateService2","features":[354,592]},{"name":"IUpdateServiceCollection","features":[354,592]},{"name":"IUpdateServiceManager","features":[354,592]},{"name":"IUpdateServiceManager2","features":[354,592]},{"name":"IUpdateServiceRegistration","features":[354,592]},{"name":"IUpdateSession","features":[354,592]},{"name":"IUpdateSession2","features":[354,592]},{"name":"IUpdateSession3","features":[354,592]},{"name":"IWebProxy","features":[354,592]},{"name":"IWindowsDriverUpdate","features":[354,592]},{"name":"IWindowsDriverUpdate2","features":[354,592]},{"name":"IWindowsDriverUpdate3","features":[354,592]},{"name":"IWindowsDriverUpdate4","features":[354,592]},{"name":"IWindowsDriverUpdate5","features":[354,592]},{"name":"IWindowsDriverUpdateEntry","features":[354,592]},{"name":"IWindowsDriverUpdateEntryCollection","features":[354,592]},{"name":"IWindowsUpdateAgentInfo","features":[354,592]},{"name":"InstallationAgent","features":[592]},{"name":"InstallationImpact","features":[592]},{"name":"InstallationRebootBehavior","features":[592]},{"name":"LIBID_WUApiLib","features":[592]},{"name":"OperationResultCode","features":[592]},{"name":"SearchScope","features":[592]},{"name":"ServerSelection","features":[592]},{"name":"StringCollection","features":[592]},{"name":"SystemInformation","features":[592]},{"name":"UPDATE_LOCKDOWN_WEBSITE_ACCESS","features":[592]},{"name":"UpdateCollection","features":[592]},{"name":"UpdateDownloader","features":[592]},{"name":"UpdateExceptionContext","features":[592]},{"name":"UpdateInstaller","features":[592]},{"name":"UpdateLockdownOption","features":[592]},{"name":"UpdateOperation","features":[592]},{"name":"UpdateSearcher","features":[592]},{"name":"UpdateServiceManager","features":[592]},{"name":"UpdateServiceOption","features":[592]},{"name":"UpdateServiceRegistrationState","features":[592]},{"name":"UpdateSession","features":[592]},{"name":"UpdateType","features":[592]},{"name":"WU_E_ALL_UPDATES_FAILED","features":[592]},{"name":"WU_E_AUCLIENT_UNEXPECTED","features":[592]},{"name":"WU_E_AU_CALL_CANCELLED","features":[592]},{"name":"WU_E_AU_DETECT_SVCID_MISMATCH","features":[592]},{"name":"WU_E_AU_LEGACYCLIENTDISABLED","features":[592]},{"name":"WU_E_AU_NONLEGACYSERVER","features":[592]},{"name":"WU_E_AU_NOSERVICE","features":[592]},{"name":"WU_E_AU_NO_REGISTERED_SERVICE","features":[592]},{"name":"WU_E_AU_OOBE_IN_PROGRESS","features":[592]},{"name":"WU_E_AU_PAUSED","features":[592]},{"name":"WU_E_AU_UNEXPECTED","features":[592]},{"name":"WU_E_BAD_FILE_URL","features":[592]},{"name":"WU_E_BAD_XML_HARDWARECAPABILITY","features":[592]},{"name":"WU_E_BIN_SOURCE_ABSENT","features":[592]},{"name":"WU_E_CALLBACK_COOKIE_NOT_FOUND","features":[592]},{"name":"WU_E_CALL_CANCELLED","features":[592]},{"name":"WU_E_CALL_CANCELLED_BY_HIDE","features":[592]},{"name":"WU_E_CALL_CANCELLED_BY_INTERACTIVE_SEARCH","features":[592]},{"name":"WU_E_CALL_CANCELLED_BY_INVALID","features":[592]},{"name":"WU_E_CALL_CANCELLED_BY_POLICY","features":[592]},{"name":"WU_E_COULDNOTCANCEL","features":[592]},{"name":"WU_E_CYCLE_DETECTED","features":[592]},{"name":"WU_E_DM_BG_ERROR_TOKEN_REQUIRED","features":[592]},{"name":"WU_E_DM_BITSTRANSFERERROR","features":[592]},{"name":"WU_E_DM_CONTENTCHANGED","features":[592]},{"name":"WU_E_DM_DOSVC_REQUIRED","features":[592]},{"name":"WU_E_DM_DOWNLOADFILEMISSING","features":[592]},{"name":"WU_E_DM_DOWNLOADFILEPATHUNKNOWN","features":[592]},{"name":"WU_E_DM_DOWNLOADLIMITEDBYUPDATESIZE","features":[592]},{"name":"WU_E_DM_DOWNLOADLOCATIONCHANGED","features":[592]},{"name":"WU_E_DM_DOWNLOADSANDBOXNOTFOUND","features":[592]},{"name":"WU_E_DM_DOWNLOAD_VOLUME_CONFLICT","features":[592]},{"name":"WU_E_DM_FAILTOCONNECTTOBITS","features":[592]},{"name":"WU_E_DM_FALLINGBACKTOBITS","features":[592]},{"name":"WU_E_DM_HARDRESERVEID_CONFLICT","features":[592]},{"name":"WU_E_DM_INCORRECTFILEHASH","features":[592]},{"name":"WU_E_DM_NEEDDOWNLOADREQUEST","features":[592]},{"name":"WU_E_DM_NONETWORK","features":[592]},{"name":"WU_E_DM_NOTDOWNLOADED","features":[592]},{"name":"WU_E_DM_READRANGEFAILED","features":[592]},{"name":"WU_E_DM_SANDBOX_HASH_MISMATCH","features":[592]},{"name":"WU_E_DM_UNAUTHORIZED","features":[592]},{"name":"WU_E_DM_UNAUTHORIZED_DOMAIN_USER","features":[592]},{"name":"WU_E_DM_UNAUTHORIZED_LOCAL_USER","features":[592]},{"name":"WU_E_DM_UNAUTHORIZED_MSA_USER","features":[592]},{"name":"WU_E_DM_UNAUTHORIZED_NO_USER","features":[592]},{"name":"WU_E_DM_UNEXPECTED","features":[592]},{"name":"WU_E_DM_UNKNOWNALGORITHM","features":[592]},{"name":"WU_E_DM_UPDATEREMOVED","features":[592]},{"name":"WU_E_DM_URLNOTAVAILABLE","features":[592]},{"name":"WU_E_DM_WRONGBITSVERSION","features":[592]},{"name":"WU_E_DOWNLOAD_FAILED","features":[592]},{"name":"WU_E_DRV_DEVICE_PROBLEM","features":[592]},{"name":"WU_E_DRV_MISSING_ATTRIBUTE","features":[592]},{"name":"WU_E_DRV_NOPROP_OR_LEGACY","features":[592]},{"name":"WU_E_DRV_NO_METADATA","features":[592]},{"name":"WU_E_DRV_NO_PRINTER_CONTENT","features":[592]},{"name":"WU_E_DRV_PRUNED","features":[592]},{"name":"WU_E_DRV_REG_MISMATCH","features":[592]},{"name":"WU_E_DRV_SYNC_FAILED","features":[592]},{"name":"WU_E_DRV_UNEXPECTED","features":[592]},{"name":"WU_E_DS_BADVERSION","features":[592]},{"name":"WU_E_DS_CANNOTREGISTER","features":[592]},{"name":"WU_E_DS_CANTDELETE","features":[592]},{"name":"WU_E_DS_DATANOTAVAILABLE","features":[592]},{"name":"WU_E_DS_DATANOTLOADED","features":[592]},{"name":"WU_E_DS_DECLINENOTALLOWED","features":[592]},{"name":"WU_E_DS_DUPLICATEUPDATEID","features":[592]},{"name":"WU_E_DS_IMPERSONATED","features":[592]},{"name":"WU_E_DS_INUSE","features":[592]},{"name":"WU_E_DS_INVALID","features":[592]},{"name":"WU_E_DS_INVALIDOPERATION","features":[592]},{"name":"WU_E_DS_INVALIDTABLENAME","features":[592]},{"name":"WU_E_DS_LOCKTIMEOUTEXPIRED","features":[592]},{"name":"WU_E_DS_MISSINGDATA","features":[592]},{"name":"WU_E_DS_MISSINGREF","features":[592]},{"name":"WU_E_DS_NEEDWINDOWSSERVICE","features":[592]},{"name":"WU_E_DS_NOCATEGORIES","features":[592]},{"name":"WU_E_DS_NODATA","features":[592]},{"name":"WU_E_DS_NODATA_CCR","features":[592]},{"name":"WU_E_DS_NODATA_COOKIE","features":[592]},{"name":"WU_E_DS_NODATA_DOWNLOADJOB","features":[592]},{"name":"WU_E_DS_NODATA_EULA","features":[592]},{"name":"WU_E_DS_NODATA_FILE","features":[592]},{"name":"WU_E_DS_NODATA_NOSUCHREVISION","features":[592]},{"name":"WU_E_DS_NODATA_NOSUCHUPDATE","features":[592]},{"name":"WU_E_DS_NODATA_SERVICE","features":[592]},{"name":"WU_E_DS_NODATA_TIMER","features":[592]},{"name":"WU_E_DS_NODATA_TMI","features":[592]},{"name":"WU_E_DS_RESETREQUIRED","features":[592]},{"name":"WU_E_DS_ROWEXISTS","features":[592]},{"name":"WU_E_DS_SCHEMAMISMATCH","features":[592]},{"name":"WU_E_DS_SERVICEEXPIRED","features":[592]},{"name":"WU_E_DS_SESSIONLOCKMISMATCH","features":[592]},{"name":"WU_E_DS_SHUTDOWN","features":[592]},{"name":"WU_E_DS_STOREFILELOCKED","features":[592]},{"name":"WU_E_DS_TABLEINCORRECT","features":[592]},{"name":"WU_E_DS_TABLEMISSING","features":[592]},{"name":"WU_E_DS_TABLESESSIONMISMATCH","features":[592]},{"name":"WU_E_DS_UNABLETOSTART","features":[592]},{"name":"WU_E_DS_UNEXPECTED","features":[592]},{"name":"WU_E_DS_UNKNOWNHANDLER","features":[592]},{"name":"WU_E_DS_UNKNOWNSERVICE","features":[592]},{"name":"WU_E_DUPLICATE_ITEM","features":[592]},{"name":"WU_E_EE_CLUSTER_ERROR","features":[592]},{"name":"WU_E_EE_INVALID_ATTRIBUTEDATA","features":[592]},{"name":"WU_E_EE_INVALID_EXPRESSION","features":[592]},{"name":"WU_E_EE_INVALID_VERSION","features":[592]},{"name":"WU_E_EE_MISSING_METADATA","features":[592]},{"name":"WU_E_EE_NOT_INITIALIZED","features":[592]},{"name":"WU_E_EE_UNEXPECTED","features":[592]},{"name":"WU_E_EE_UNKNOWN_EXPRESSION","features":[592]},{"name":"WU_E_EULAS_DECLINED","features":[592]},{"name":"WU_E_EULA_UNAVAILABLE","features":[592]},{"name":"WU_E_EXCLUSIVE_INSTALL_CONFLICT","features":[592]},{"name":"WU_E_EXTENDEDERROR_FAILED","features":[592]},{"name":"WU_E_EXTENDEDERROR_NOTSET","features":[592]},{"name":"WU_E_FILETRUST_DUALSIGNATURE_ECC","features":[592]},{"name":"WU_E_FILETRUST_DUALSIGNATURE_RSA","features":[592]},{"name":"WU_E_FILETRUST_SHA2SIGNATURE_MISSING","features":[592]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_DISCOVERY","features":[592]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_DOWNLOAD","features":[592]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_INSTALL","features":[592]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_OTHER","features":[592]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_SEARCH","features":[592]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_SERVICEREGISTRATION","features":[592]},{"name":"WU_E_INFRASTRUCTUREFILE_INVALID_FORMAT","features":[592]},{"name":"WU_E_INFRASTRUCTUREFILE_REQUIRES_SSL","features":[592]},{"name":"WU_E_INSTALLATION_RESULTS_INVALID_DATA","features":[592]},{"name":"WU_E_INSTALLATION_RESULTS_NOT_FOUND","features":[592]},{"name":"WU_E_INSTALLATION_RESULTS_UNKNOWN_VERSION","features":[592]},{"name":"WU_E_INSTALL_JOB_NOT_SUSPENDED","features":[592]},{"name":"WU_E_INSTALL_JOB_RESUME_NOT_ALLOWED","features":[592]},{"name":"WU_E_INSTALL_NOT_ALLOWED","features":[592]},{"name":"WU_E_INSTALL_USERCONTEXT_ACCESSDENIED","features":[592]},{"name":"WU_E_INTERACTIVE_CALL_CANCELLED","features":[592]},{"name":"WU_E_INVALIDINDEX","features":[592]},{"name":"WU_E_INVALID_CRITERIA","features":[592]},{"name":"WU_E_INVALID_EVENT","features":[592]},{"name":"WU_E_INVALID_EVENT_PAYLOAD","features":[592]},{"name":"WU_E_INVALID_EVENT_PAYLOADSIZE","features":[592]},{"name":"WU_E_INVALID_FILE","features":[592]},{"name":"WU_E_INVALID_INSTALL_REQUESTED","features":[592]},{"name":"WU_E_INVALID_NOTIFICATION_INFO","features":[592]},{"name":"WU_E_INVALID_OPERATION","features":[592]},{"name":"WU_E_INVALID_PRODUCT_LICENSE","features":[592]},{"name":"WU_E_INVALID_PROXY_SERVER","features":[592]},{"name":"WU_E_INVALID_RELATIONSHIP","features":[592]},{"name":"WU_E_INVALID_SERIALIZATION_VERSION","features":[592]},{"name":"WU_E_INVALID_UPDATE","features":[592]},{"name":"WU_E_INVALID_UPDATE_TYPE","features":[592]},{"name":"WU_E_INVALID_VOLUMEID","features":[592]},{"name":"WU_E_INVENTORY_GET_INVENTORY_TYPE_FAILED","features":[592]},{"name":"WU_E_INVENTORY_PARSEFAILED","features":[592]},{"name":"WU_E_INVENTORY_RESULT_UPLOAD_FAILED","features":[592]},{"name":"WU_E_INVENTORY_UNEXPECTED","features":[592]},{"name":"WU_E_INVENTORY_WMI_ERROR","features":[592]},{"name":"WU_E_ITEMNOTFOUND","features":[592]},{"name":"WU_E_LEGACYSERVER","features":[592]},{"name":"WU_E_LOW_BATTERY","features":[592]},{"name":"WU_E_MAX_CAPACITY_REACHED","features":[592]},{"name":"WU_E_METADATATRUST_CERTIFICATECHAIN_VERIFICATION","features":[592]},{"name":"WU_E_METADATATRUST_UNTRUSTED_CERTIFICATECHAIN","features":[592]},{"name":"WU_E_METADATA_BAD_FRAGMENTSIGNING_CONFIG","features":[592]},{"name":"WU_E_METADATA_BAD_SIGNATURE","features":[592]},{"name":"WU_E_METADATA_CERT_MISSING","features":[592]},{"name":"WU_E_METADATA_CERT_UNTRUSTED","features":[592]},{"name":"WU_E_METADATA_CONFIG_INVALID_BINARY_ENCODING","features":[592]},{"name":"WU_E_METADATA_FAILURE_PROCESSING_FRAGMENTSIGNING_CONFIG","features":[592]},{"name":"WU_E_METADATA_FETCH_CONFIG","features":[592]},{"name":"WU_E_METADATA_INTCERT_BAD_TRANSPORT_ENCODING","features":[592]},{"name":"WU_E_METADATA_INVALID_PARAMETER","features":[592]},{"name":"WU_E_METADATA_LEAFCERT_BAD_TRANSPORT_ENCODING","features":[592]},{"name":"WU_E_METADATA_NOOP","features":[592]},{"name":"WU_E_METADATA_NO_VERIFICATION_DATA","features":[592]},{"name":"WU_E_METADATA_SIGNATURE_VERIFY_FAILED","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_ALL_BAD","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_CACHELOOKUP","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_CERTCHAIN","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_MISSING","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_NODATA","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_REFRESHONLINE","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_SIGNATURE","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_UNEXPECTED","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_UNTRUSTED","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_VALIDITYWINDOW_UNEXPECTED","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_VALIDITY_WINDOW","features":[592]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_VERIFICATION_FAILED","features":[592]},{"name":"WU_E_METADATA_UNEXPECTED","features":[592]},{"name":"WU_E_METADATA_UNSUPPORTED_HASH_ALG","features":[592]},{"name":"WU_E_METADATA_XML_BASE64CERDATA_MISSING","features":[592]},{"name":"WU_E_METADATA_XML_FRAGMENTSIGNING_MISSING","features":[592]},{"name":"WU_E_METADATA_XML_INTERMEDIATECERT_MISSING","features":[592]},{"name":"WU_E_METADATA_XML_LEAFCERT_ID_MISSING","features":[592]},{"name":"WU_E_METADATA_XML_LEAFCERT_MISSING","features":[592]},{"name":"WU_E_METADATA_XML_MISSING","features":[592]},{"name":"WU_E_METADATA_XML_MODE_INVALID","features":[592]},{"name":"WU_E_METADATA_XML_MODE_MISSING","features":[592]},{"name":"WU_E_METADATA_XML_VALIDITY_INVALID","features":[592]},{"name":"WU_E_MISSING_HANDLER","features":[592]},{"name":"WU_E_MSI_NOT_CONFIGURED","features":[592]},{"name":"WU_E_MSI_NOT_PRESENT","features":[592]},{"name":"WU_E_MSI_WRONG_APP_CONTEXT","features":[592]},{"name":"WU_E_MSI_WRONG_VERSION","features":[592]},{"name":"WU_E_MSP_DISABLED","features":[592]},{"name":"WU_E_MSP_UNEXPECTED","features":[592]},{"name":"WU_E_NETWORK_COST_EXCEEDS_POLICY","features":[592]},{"name":"WU_E_NON_UI_MODE","features":[592]},{"name":"WU_E_NOOP","features":[592]},{"name":"WU_E_NOT_APPLICABLE","features":[592]},{"name":"WU_E_NOT_INITIALIZED","features":[592]},{"name":"WU_E_NOT_SUPPORTED","features":[592]},{"name":"WU_E_NO_CONNECTION","features":[592]},{"name":"WU_E_NO_INTERACTIVE_USER","features":[592]},{"name":"WU_E_NO_SERVER_CORE_SUPPORT","features":[592]},{"name":"WU_E_NO_SERVICE","features":[592]},{"name":"WU_E_NO_SUCH_HANDLER_PLUGIN","features":[592]},{"name":"WU_E_NO_UI_SUPPORT","features":[592]},{"name":"WU_E_NO_UPDATE","features":[592]},{"name":"WU_E_NO_USERTOKEN","features":[592]},{"name":"WU_E_OL_INVALID_SCANFILE","features":[592]},{"name":"WU_E_OL_NEWCLIENT_REQUIRED","features":[592]},{"name":"WU_E_OL_UNEXPECTED","features":[592]},{"name":"WU_E_OPERATIONINPROGRESS","features":[592]},{"name":"WU_E_ORPHANED_DOWNLOAD_JOB","features":[592]},{"name":"WU_E_OUTOFRANGE","features":[592]},{"name":"WU_E_PER_MACHINE_UPDATE_ACCESS_DENIED","features":[592]},{"name":"WU_E_POLICY_NOT_SET","features":[592]},{"name":"WU_E_PT_ADDRESS_IN_USE","features":[592]},{"name":"WU_E_PT_ADDRESS_NOT_AVAILABLE","features":[592]},{"name":"WU_E_PT_CATALOG_SYNC_REQUIRED","features":[592]},{"name":"WU_E_PT_CONFIG_PROP_MISSING","features":[592]},{"name":"WU_E_PT_DATA_BOUNDARY_RESTRICTED","features":[592]},{"name":"WU_E_PT_DOUBLE_INITIALIZATION","features":[592]},{"name":"WU_E_PT_ECP_FAILURE_TO_DECOMPRESS_CAB_FILE","features":[592]},{"name":"WU_E_PT_ECP_FAILURE_TO_EXTRACT_DIGEST","features":[592]},{"name":"WU_E_PT_ECP_FILE_LOCATION_ERROR","features":[592]},{"name":"WU_E_PT_ECP_INIT_FAILED","features":[592]},{"name":"WU_E_PT_ECP_INVALID_FILE_FORMAT","features":[592]},{"name":"WU_E_PT_ECP_INVALID_METADATA","features":[592]},{"name":"WU_E_PT_ECP_SUCCEEDED_WITH_ERRORS","features":[592]},{"name":"WU_E_PT_ENDPOINTURL_NOTAVAIL","features":[592]},{"name":"WU_E_PT_ENDPOINT_DISCONNECTED","features":[592]},{"name":"WU_E_PT_ENDPOINT_REFRESH_REQUIRED","features":[592]},{"name":"WU_E_PT_ENDPOINT_UNREACHABLE","features":[592]},{"name":"WU_E_PT_EXCEEDED_MAX_SERVER_TRIPS","features":[592]},{"name":"WU_E_PT_FILE_LOCATIONS_CHANGED","features":[592]},{"name":"WU_E_PT_GENERAL_AAD_CLIENT_ERROR","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_BAD_GATEWAY","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_BAD_METHOD","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_BAD_REQUEST","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_CONFLICT","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_DENIED","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_FORBIDDEN","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_GATEWAY_TIMEOUT","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_GONE","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_NOT_FOUND","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_NOT_MAPPED","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_NOT_SUPPORTED","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_PROXY_AUTH_REQ","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_REQUEST_TIMEOUT","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_SERVER_ERROR","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_SERVICE_UNAVAIL","features":[592]},{"name":"WU_E_PT_HTTP_STATUS_VERSION_NOT_SUP","features":[592]},{"name":"WU_E_PT_INVALID_COMPUTER_NAME","features":[592]},{"name":"WU_E_PT_INVALID_CONFIG_PROP","features":[592]},{"name":"WU_E_PT_INVALID_FORMAT","features":[592]},{"name":"WU_E_PT_INVALID_OPERATION","features":[592]},{"name":"WU_E_PT_INVALID_URL","features":[592]},{"name":"WU_E_PT_LOAD_SHEDDING","features":[592]},{"name":"WU_E_PT_NO_AUTH_COOKIES_CREATED","features":[592]},{"name":"WU_E_PT_NO_AUTH_PLUGINS_REQUESTED","features":[592]},{"name":"WU_E_PT_NO_MANAGED_RECOVER","features":[592]},{"name":"WU_E_PT_NO_TRANSLATION_AVAILABLE","features":[592]},{"name":"WU_E_PT_NUMERIC_OVERFLOW","features":[592]},{"name":"WU_E_PT_NWS_NOT_LOADED","features":[592]},{"name":"WU_E_PT_OBJECT_FAULTED","features":[592]},{"name":"WU_E_PT_OPERATION_ABANDONED","features":[592]},{"name":"WU_E_PT_OPERATION_ABORTED","features":[592]},{"name":"WU_E_PT_OTHER","features":[592]},{"name":"WU_E_PT_PROXY_AUTH_SCHEME_NOT_SUPPORTED","features":[592]},{"name":"WU_E_PT_QUOTA_EXCEEDED","features":[592]},{"name":"WU_E_PT_REFRESH_CACHE_REQUIRED","features":[592]},{"name":"WU_E_PT_REGISTRATION_NOT_SUPPORTED","features":[592]},{"name":"WU_E_PT_SAME_REDIR_ID","features":[592]},{"name":"WU_E_PT_SECURITY_SYSTEM_FAILURE","features":[592]},{"name":"WU_E_PT_SECURITY_VERIFICATION_FAILURE","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_BASE","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_CONNECT","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_GENERATE","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_INITIALIZE","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_OUTOFMEMORY","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_PARSE","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_PARSEFAULT","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_READ","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_SEND","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_SERVER","features":[592]},{"name":"WU_E_PT_SOAPCLIENT_SOAPFAULT","features":[592]},{"name":"WU_E_PT_SOAP_CLIENT","features":[592]},{"name":"WU_E_PT_SOAP_MUST_UNDERSTAND","features":[592]},{"name":"WU_E_PT_SOAP_SERVER","features":[592]},{"name":"WU_E_PT_SOAP_VERSION","features":[592]},{"name":"WU_E_PT_SUS_SERVER_NOT_SET","features":[592]},{"name":"WU_E_PT_UNEXPECTED","features":[592]},{"name":"WU_E_PT_WINHTTP_NAME_NOT_RESOLVED","features":[592]},{"name":"WU_E_PT_WMI_ERROR","features":[592]},{"name":"WU_E_RANGEOVERLAP","features":[592]},{"name":"WU_E_REBOOT_IN_PROGRESS","features":[592]},{"name":"WU_E_REDIRECTOR_ATTRPROVIDER_EXCEEDED_MAX_NAMEVALUE","features":[592]},{"name":"WU_E_REDIRECTOR_ATTRPROVIDER_INVALID_NAME","features":[592]},{"name":"WU_E_REDIRECTOR_ATTRPROVIDER_INVALID_VALUE","features":[592]},{"name":"WU_E_REDIRECTOR_CONNECT_POLICY","features":[592]},{"name":"WU_E_REDIRECTOR_ID_SMALLER","features":[592]},{"name":"WU_E_REDIRECTOR_INVALID_RESPONSE","features":[592]},{"name":"WU_E_REDIRECTOR_LOAD_XML","features":[592]},{"name":"WU_E_REDIRECTOR_ONLINE_DISALLOWED","features":[592]},{"name":"WU_E_REDIRECTOR_SLS_GENERIC_ERROR","features":[592]},{"name":"WU_E_REDIRECTOR_S_FALSE","features":[592]},{"name":"WU_E_REDIRECTOR_UNEXPECTED","features":[592]},{"name":"WU_E_REDIRECTOR_UNKNOWN_SERVICE","features":[592]},{"name":"WU_E_REDIRECTOR_UNSUPPORTED_CONTENTTYPE","features":[592]},{"name":"WU_E_REG_VALUE_INVALID","features":[592]},{"name":"WU_E_REPORTER_EVENTCACHECORRUPT","features":[592]},{"name":"WU_E_REPORTER_EVENTNAMESPACEPARSEFAILED","features":[592]},{"name":"WU_E_REPORTER_UNEXPECTED","features":[592]},{"name":"WU_E_REVERT_NOT_ALLOWED","features":[592]},{"name":"WU_E_SELFUPDATE_IN_PROGRESS","features":[592]},{"name":"WU_E_SELFUPDATE_REQUIRED","features":[592]},{"name":"WU_E_SELFUPDATE_REQUIRED_ADMIN","features":[592]},{"name":"WU_E_SELFUPDATE_SKIP_ON_FAILURE","features":[592]},{"name":"WU_E_SERVER_BUSY","features":[592]},{"name":"WU_E_SERVICEPROP_NOTAVAIL","features":[592]},{"name":"WU_E_SERVICE_NOT_REGISTERED","features":[592]},{"name":"WU_E_SERVICE_STOP","features":[592]},{"name":"WU_E_SETUP_ALREADYRUNNING","features":[592]},{"name":"WU_E_SETUP_ALREADY_INITIALIZED","features":[592]},{"name":"WU_E_SETUP_BLOCKED_CONFIGURATION","features":[592]},{"name":"WU_E_SETUP_DEFERRABLE_REBOOT_PENDING","features":[592]},{"name":"WU_E_SETUP_FAIL","features":[592]},{"name":"WU_E_SETUP_HANDLER_EXEC_FAILURE","features":[592]},{"name":"WU_E_SETUP_INVALID_IDENTDATA","features":[592]},{"name":"WU_E_SETUP_INVALID_INFDATA","features":[592]},{"name":"WU_E_SETUP_INVALID_REGISTRY_DATA","features":[592]},{"name":"WU_E_SETUP_IN_PROGRESS","features":[592]},{"name":"WU_E_SETUP_NON_DEFERRABLE_REBOOT_PENDING","features":[592]},{"name":"WU_E_SETUP_NOT_INITIALIZED","features":[592]},{"name":"WU_E_SETUP_REBOOTREQUIRED","features":[592]},{"name":"WU_E_SETUP_REBOOT_TO_FIX","features":[592]},{"name":"WU_E_SETUP_REGISTRATION_FAILED","features":[592]},{"name":"WU_E_SETUP_SKIP_UPDATE","features":[592]},{"name":"WU_E_SETUP_SOURCE_VERSION_MISMATCH","features":[592]},{"name":"WU_E_SETUP_TARGET_VERSION_GREATER","features":[592]},{"name":"WU_E_SETUP_UNEXPECTED","features":[592]},{"name":"WU_E_SETUP_UNSUPPORTED_CONFIGURATION","features":[592]},{"name":"WU_E_SETUP_WRONG_SERVER_VERSION","features":[592]},{"name":"WU_E_SIH_ACTION_NOT_FOUND","features":[592]},{"name":"WU_E_SIH_ANOTHER_INSTANCE_RUNNING","features":[592]},{"name":"WU_E_SIH_BLOCKED_FOR_PLATFORM","features":[592]},{"name":"WU_E_SIH_DNSRESILIENCY_OFF","features":[592]},{"name":"WU_E_SIH_ENGINE_EXCEPTION","features":[592]},{"name":"WU_E_SIH_INVALIDHASH","features":[592]},{"name":"WU_E_SIH_NONSTDEXCEPTION","features":[592]},{"name":"WU_E_SIH_NO_ENGINE","features":[592]},{"name":"WU_E_SIH_PARSE","features":[592]},{"name":"WU_E_SIH_POLICY","features":[592]},{"name":"WU_E_SIH_POST_REBOOT_INSTALL_FAILED","features":[592]},{"name":"WU_E_SIH_POST_REBOOT_NO_CACHED_SLS_RESPONSE","features":[592]},{"name":"WU_E_SIH_PPL","features":[592]},{"name":"WU_E_SIH_SECURITY","features":[592]},{"name":"WU_E_SIH_SLS_PARSE","features":[592]},{"name":"WU_E_SIH_STDEXCEPTION","features":[592]},{"name":"WU_E_SIH_UNEXPECTED","features":[592]},{"name":"WU_E_SIH_VERIFY_DOWNLOAD_ENGINE","features":[592]},{"name":"WU_E_SIH_VERIFY_DOWNLOAD_PAYLOAD","features":[592]},{"name":"WU_E_SIH_VERIFY_STAGE_ENGINE","features":[592]},{"name":"WU_E_SIH_VERIFY_STAGE_PAYLOAD","features":[592]},{"name":"WU_E_SKIPPED_UPDATE_INSTALLATION","features":[592]},{"name":"WU_E_SLS_INVALID_REVISION","features":[592]},{"name":"WU_E_SOURCE_ABSENT","features":[592]},{"name":"WU_E_SYSPREP_IN_PROGRESS","features":[592]},{"name":"WU_E_SYSTEM_UNSUPPORTED","features":[592]},{"name":"WU_E_TIME_OUT","features":[592]},{"name":"WU_E_TOOMANYRANGES","features":[592]},{"name":"WU_E_TOO_DEEP_RELATION","features":[592]},{"name":"WU_E_TOO_MANY_RESYNC","features":[592]},{"name":"WU_E_TRAYICON_FAILURE","features":[592]},{"name":"WU_E_TRUST_PROVIDER_UNKNOWN","features":[592]},{"name":"WU_E_TRUST_SUBJECT_NOT_TRUSTED","features":[592]},{"name":"WU_E_UH_APPX_DEFAULT_PACKAGE_VOLUME_UNAVAILABLE","features":[592]},{"name":"WU_E_UH_APPX_INSTALLED_PACKAGE_VOLUME_UNAVAILABLE","features":[592]},{"name":"WU_E_UH_APPX_INVALID_PACKAGE_VOLUME","features":[592]},{"name":"WU_E_UH_APPX_NOT_PRESENT","features":[592]},{"name":"WU_E_UH_APPX_PACKAGE_FAMILY_NOT_FOUND","features":[592]},{"name":"WU_E_UH_APPX_SYSTEM_VOLUME_NOT_FOUND","features":[592]},{"name":"WU_E_UH_BADCBSPACKAGEID","features":[592]},{"name":"WU_E_UH_BADHANDLERXML","features":[592]},{"name":"WU_E_UH_CALLED_BACK_FAILURE","features":[592]},{"name":"WU_E_UH_CANREQUIREINPUT","features":[592]},{"name":"WU_E_UH_CUSTOMINSTALLER_INVALID_SIGNATURE","features":[592]},{"name":"WU_E_UH_DECRYPTFAILURE","features":[592]},{"name":"WU_E_UH_DOESNOTSUPPORTACTION","features":[592]},{"name":"WU_E_UH_FALLBACKERROR","features":[592]},{"name":"WU_E_UH_FALLBACKTOSELFCONTAINED","features":[592]},{"name":"WU_E_UH_HANDLER_DISABLEDUNTILREBOOT","features":[592]},{"name":"WU_E_UH_INCONSISTENT_FILE_NAMES","features":[592]},{"name":"WU_E_UH_INSTALLERFAILURE","features":[592]},{"name":"WU_E_UH_INSTALLERHUNG","features":[592]},{"name":"WU_E_UH_INVALIDMETADATA","features":[592]},{"name":"WU_E_UH_INVALID_TARGETSESSION","features":[592]},{"name":"WU_E_UH_LOCALONLY","features":[592]},{"name":"WU_E_UH_NEEDANOTHERDOWNLOAD","features":[592]},{"name":"WU_E_UH_NEW_SERVICING_STACK_REQUIRED","features":[592]},{"name":"WU_E_UH_NOTIFYFAILURE","features":[592]},{"name":"WU_E_UH_NOTREADYTOCOMMIT","features":[592]},{"name":"WU_E_UH_OPERATIONCANCELLED","features":[592]},{"name":"WU_E_UH_POSTREBOOTRESULTUNKNOWN","features":[592]},{"name":"WU_E_UH_POSTREBOOTSTILLPENDING","features":[592]},{"name":"WU_E_UH_POSTREBOOTUNEXPECTEDSTATE","features":[592]},{"name":"WU_E_UH_REMOTEALREADYACTIVE","features":[592]},{"name":"WU_E_UH_REMOTEUNAVAILABLE","features":[592]},{"name":"WU_E_UH_TOOMANYDOWNLOADREQUESTS","features":[592]},{"name":"WU_E_UH_UNEXPECTED","features":[592]},{"name":"WU_E_UH_UNEXPECTEDCBSRESPONSE","features":[592]},{"name":"WU_E_UH_UNKNOWNHANDLER","features":[592]},{"name":"WU_E_UH_UNSUPPORTED_INSTALLCONTEXT","features":[592]},{"name":"WU_E_UH_WRONGHANDLER","features":[592]},{"name":"WU_E_UNEXPECTED","features":[592]},{"name":"WU_E_UNINSTALL_NOT_ALLOWED","features":[592]},{"name":"WU_E_UNKNOWN_HARDWARECAPABILITY","features":[592]},{"name":"WU_E_UNKNOWN_ID","features":[592]},{"name":"WU_E_UNKNOWN_SERVICE","features":[592]},{"name":"WU_E_UNRECOGNIZED_VOLUMEID","features":[592]},{"name":"WU_E_UNSUPPORTED_SEARCHSCOPE","features":[592]},{"name":"WU_E_UPDATE_MERGE_NOT_ALLOWED","features":[592]},{"name":"WU_E_UPDATE_NOT_APPROVED","features":[592]},{"name":"WU_E_UPDATE_NOT_PROCESSED","features":[592]},{"name":"WU_E_URL_TOO_LONG","features":[592]},{"name":"WU_E_USER_ACCESS_DISABLED","features":[592]},{"name":"WU_E_WINHTTP_INVALID_FILE","features":[592]},{"name":"WU_E_WMI_NOT_SUPPORTED","features":[592]},{"name":"WU_E_WUCLTUI_UNSUPPORTED_VERSION","features":[592]},{"name":"WU_E_WUTASK_CANCELINSTALL_DISALLOWED","features":[592]},{"name":"WU_E_WUTASK_INPROGRESS","features":[592]},{"name":"WU_E_WUTASK_NOT_STARTED","features":[592]},{"name":"WU_E_WUTASK_RETRY","features":[592]},{"name":"WU_E_WUTASK_STATUS_DISABLED","features":[592]},{"name":"WU_E_WU_DISABLED","features":[592]},{"name":"WU_E_XML_INVALID","features":[592]},{"name":"WU_E_XML_MISSINGDATA","features":[592]},{"name":"WU_S_AAD_DEVICE_TICKET_NOT_NEEDED","features":[592]},{"name":"WU_S_ALREADY_DOWNLOADED","features":[592]},{"name":"WU_S_ALREADY_INSTALLED","features":[592]},{"name":"WU_S_ALREADY_REVERTED","features":[592]},{"name":"WU_S_ALREADY_UNINSTALLED","features":[592]},{"name":"WU_S_DM_ALREADYDOWNLOADING","features":[592]},{"name":"WU_S_MARKED_FOR_DISCONNECT","features":[592]},{"name":"WU_S_METADATA_IGNORED_SIGNATURE_VERIFICATION","features":[592]},{"name":"WU_S_METADATA_SKIPPED_BY_ENFORCEMENTMODE","features":[592]},{"name":"WU_S_REBOOT_REQUIRED","features":[592]},{"name":"WU_S_SEARCH_CRITERIA_NOT_SUPPORTED","features":[592]},{"name":"WU_S_SEARCH_LOAD_SHEDDING","features":[592]},{"name":"WU_S_SELFUPDATE","features":[592]},{"name":"WU_S_SERVICE_STOP","features":[592]},{"name":"WU_S_SIH_NOOP","features":[592]},{"name":"WU_S_SOME_UPDATES_SKIPPED_ON_BATTERY","features":[592]},{"name":"WU_S_UH_DOWNLOAD_SIZE_CALCULATED","features":[592]},{"name":"WU_S_UH_INSTALLSTILLPENDING","features":[592]},{"name":"WU_S_UPDATE_ERROR","features":[592]},{"name":"WebProxy","features":[592]},{"name":"WindowsUpdateAgentInfo","features":[592]},{"name":"adAlwaysAutoDownload","features":[592]},{"name":"adLetWindowsUpdateDecide","features":[592]},{"name":"adNeverAutoDownload","features":[592]},{"name":"asAlwaysAutoSelect","features":[592]},{"name":"asAutoSelectIfDownloaded","features":[592]},{"name":"asLetWindowsUpdateDecide","features":[592]},{"name":"asNeverAutoSelect","features":[592]},{"name":"asfAllowOnlineRegistration","features":[592]},{"name":"asfAllowPendingRegistration","features":[592]},{"name":"asfRegisterServiceWithAU","features":[592]},{"name":"aunlDisabled","features":[592]},{"name":"aunlNotConfigured","features":[592]},{"name":"aunlNotifyBeforeDownload","features":[592]},{"name":"aunlNotifyBeforeInstallation","features":[592]},{"name":"aunlScheduledInstallation","features":[592]},{"name":"auptDisableAutomaticUpdates","features":[592]},{"name":"auptSetFeaturedUpdatesEnabled","features":[592]},{"name":"auptSetIncludeRecommendedUpdates","features":[592]},{"name":"auptSetNonAdministratorsElevated","features":[592]},{"name":"auptSetNotificationLevel","features":[592]},{"name":"ausidEveryDay","features":[592]},{"name":"ausidEveryFriday","features":[592]},{"name":"ausidEveryMonday","features":[592]},{"name":"ausidEverySaturday","features":[592]},{"name":"ausidEverySunday","features":[592]},{"name":"ausidEveryThursday","features":[592]},{"name":"ausidEveryTuesday","features":[592]},{"name":"ausidEveryWednesday","features":[592]},{"name":"auutCurrentUser","features":[592]},{"name":"auutLocalAdministrator","features":[592]},{"name":"daDetection","features":[592]},{"name":"daInstallation","features":[592]},{"name":"daNone","features":[592]},{"name":"daOptionalInstallation","features":[592]},{"name":"daUninstallation","features":[592]},{"name":"dpExtraHigh","features":[592]},{"name":"dpHigh","features":[592]},{"name":"dpLow","features":[592]},{"name":"dpNormal","features":[592]},{"name":"dphDownloading","features":[592]},{"name":"dphInitializing","features":[592]},{"name":"dphVerifying","features":[592]},{"name":"iiMinor","features":[592]},{"name":"iiNormal","features":[592]},{"name":"iiRequiresExclusiveHandling","features":[592]},{"name":"irbAlwaysRequiresReboot","features":[592]},{"name":"irbCanRequestReboot","features":[592]},{"name":"irbNeverReboots","features":[592]},{"name":"orcAborted","features":[592]},{"name":"orcFailed","features":[592]},{"name":"orcInProgress","features":[592]},{"name":"orcNotStarted","features":[592]},{"name":"orcSucceeded","features":[592]},{"name":"orcSucceededWithErrors","features":[592]},{"name":"searchScopeAllUsers","features":[592]},{"name":"searchScopeCurrentUserOnly","features":[592]},{"name":"searchScopeDefault","features":[592]},{"name":"searchScopeMachineAndAllUsers","features":[592]},{"name":"searchScopeMachineAndCurrentUser","features":[592]},{"name":"searchScopeMachineOnly","features":[592]},{"name":"ssDefault","features":[592]},{"name":"ssManagedServer","features":[592]},{"name":"ssOthers","features":[592]},{"name":"ssWindowsUpdate","features":[592]},{"name":"uecGeneral","features":[592]},{"name":"uecSearchIncomplete","features":[592]},{"name":"uecWindowsDriver","features":[592]},{"name":"uecWindowsInstaller","features":[592]},{"name":"uloForWebsiteAccess","features":[592]},{"name":"uoInstallation","features":[592]},{"name":"uoUninstallation","features":[592]},{"name":"usoNonVolatileService","features":[592]},{"name":"usrsNotRegistered","features":[592]},{"name":"usrsRegistered","features":[592]},{"name":"usrsRegistrationPending","features":[592]},{"name":"utDriver","features":[592]},{"name":"utSoftware","features":[592]}],"621":[{"name":"IWaaSAssessor","features":[593]},{"name":"OSUpdateAssessment","features":[303,593]},{"name":"UpdateAssessment","features":[593]},{"name":"UpdateAssessmentStatus","features":[593]},{"name":"UpdateAssessmentStatus_Latest","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestDeferredFeature","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestDeferredQuality","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestEndOfSupport","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestHardRestriction","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestManaged","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestPausedFeature","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestPausedQuality","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestServicingTrain","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestSoftRestriction","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestTargetedVersion","features":[593]},{"name":"UpdateAssessmentStatus_NotLatestUnknown","features":[593]},{"name":"UpdateImpactLevel","features":[593]},{"name":"UpdateImpactLevel_High","features":[593]},{"name":"UpdateImpactLevel_Low","features":[593]},{"name":"UpdateImpactLevel_Medium","features":[593]},{"name":"UpdateImpactLevel_None","features":[593]},{"name":"WaaSAssessor","features":[593]}],"622":[{"name":"UAL_DATA_BLOB","features":[316,594]},{"name":"UalInstrument","features":[316,594]},{"name":"UalRegisterProduct","features":[594]},{"name":"UalStart","features":[316,594]},{"name":"UalStop","features":[316,594]}],"623":[{"name":"ClearVariantArray","features":[378]},{"name":"DPF_ERROR","features":[378]},{"name":"DPF_MARQUEE","features":[378]},{"name":"DPF_MARQUEE_COMPLETE","features":[378]},{"name":"DPF_NONE","features":[378]},{"name":"DPF_STOPPED","features":[378]},{"name":"DPF_WARNING","features":[378]},{"name":"DRAWPROGRESSFLAGS","features":[378]},{"name":"DosDateTimeToVariantTime","features":[378]},{"name":"InitVariantFromBooleanArray","features":[303,378]},{"name":"InitVariantFromBuffer","features":[378]},{"name":"InitVariantFromDoubleArray","features":[378]},{"name":"InitVariantFromFileTime","features":[303,378]},{"name":"InitVariantFromFileTimeArray","features":[303,378]},{"name":"InitVariantFromGUIDAsString","features":[378]},{"name":"InitVariantFromInt16Array","features":[378]},{"name":"InitVariantFromInt32Array","features":[378]},{"name":"InitVariantFromInt64Array","features":[378]},{"name":"InitVariantFromResource","features":[303,378]},{"name":"InitVariantFromStringArray","features":[378]},{"name":"InitVariantFromUInt16Array","features":[378]},{"name":"InitVariantFromUInt32Array","features":[378]},{"name":"InitVariantFromUInt64Array","features":[378]},{"name":"InitVariantFromVariantArrayElem","features":[378]},{"name":"PSTF_LOCAL","features":[378]},{"name":"PSTF_UTC","features":[378]},{"name":"PSTIME_FLAGS","features":[378]},{"name":"SystemTimeToVariantTime","features":[303,378]},{"name":"VARENUM","features":[378]},{"name":"VARIANT","features":[303,354,413,378]},{"name":"VARIANT_ALPHABOOL","features":[378]},{"name":"VARIANT_CALENDAR_GREGORIAN","features":[378]},{"name":"VARIANT_CALENDAR_HIJRI","features":[378]},{"name":"VARIANT_CALENDAR_THAI","features":[378]},{"name":"VARIANT_LOCALBOOL","features":[378]},{"name":"VARIANT_NOUSEROVERRIDE","features":[378]},{"name":"VARIANT_NOVALUEPROP","features":[378]},{"name":"VARIANT_USE_NLS","features":[378]},{"name":"VARIANT_UserFree","features":[378]},{"name":"VARIANT_UserFree64","features":[378]},{"name":"VARIANT_UserMarshal","features":[378]},{"name":"VARIANT_UserMarshal64","features":[378]},{"name":"VARIANT_UserSize","features":[378]},{"name":"VARIANT_UserSize64","features":[378]},{"name":"VARIANT_UserUnmarshal","features":[378]},{"name":"VARIANT_UserUnmarshal64","features":[378]},{"name":"VAR_CHANGE_FLAGS","features":[378]},{"name":"VT_ARRAY","features":[378]},{"name":"VT_BLOB","features":[378]},{"name":"VT_BLOB_OBJECT","features":[378]},{"name":"VT_BOOL","features":[378]},{"name":"VT_BSTR","features":[378]},{"name":"VT_BSTR_BLOB","features":[378]},{"name":"VT_BYREF","features":[378]},{"name":"VT_CARRAY","features":[378]},{"name":"VT_CF","features":[378]},{"name":"VT_CLSID","features":[378]},{"name":"VT_CY","features":[378]},{"name":"VT_DATE","features":[378]},{"name":"VT_DECIMAL","features":[378]},{"name":"VT_DISPATCH","features":[378]},{"name":"VT_EMPTY","features":[378]},{"name":"VT_ERROR","features":[378]},{"name":"VT_FILETIME","features":[378]},{"name":"VT_HRESULT","features":[378]},{"name":"VT_I1","features":[378]},{"name":"VT_I2","features":[378]},{"name":"VT_I4","features":[378]},{"name":"VT_I8","features":[378]},{"name":"VT_ILLEGAL","features":[378]},{"name":"VT_ILLEGALMASKED","features":[378]},{"name":"VT_INT","features":[378]},{"name":"VT_INT_PTR","features":[378]},{"name":"VT_LPSTR","features":[378]},{"name":"VT_LPWSTR","features":[378]},{"name":"VT_NULL","features":[378]},{"name":"VT_PTR","features":[378]},{"name":"VT_R4","features":[378]},{"name":"VT_R8","features":[378]},{"name":"VT_RECORD","features":[378]},{"name":"VT_RESERVED","features":[378]},{"name":"VT_SAFEARRAY","features":[378]},{"name":"VT_STORAGE","features":[378]},{"name":"VT_STORED_OBJECT","features":[378]},{"name":"VT_STREAM","features":[378]},{"name":"VT_STREAMED_OBJECT","features":[378]},{"name":"VT_TYPEMASK","features":[378]},{"name":"VT_UI1","features":[378]},{"name":"VT_UI2","features":[378]},{"name":"VT_UI4","features":[378]},{"name":"VT_UI8","features":[378]},{"name":"VT_UINT","features":[378]},{"name":"VT_UINT_PTR","features":[378]},{"name":"VT_UNKNOWN","features":[378]},{"name":"VT_USERDEFINED","features":[378]},{"name":"VT_VARIANT","features":[378]},{"name":"VT_VECTOR","features":[378]},{"name":"VT_VERSIONED_STREAM","features":[378]},{"name":"VT_VOID","features":[378]},{"name":"VariantChangeType","features":[378]},{"name":"VariantChangeTypeEx","features":[378]},{"name":"VariantClear","features":[378]},{"name":"VariantCompare","features":[378]},{"name":"VariantCopy","features":[378]},{"name":"VariantCopyInd","features":[378]},{"name":"VariantGetBooleanElem","features":[303,378]},{"name":"VariantGetDoubleElem","features":[378]},{"name":"VariantGetElementCount","features":[378]},{"name":"VariantGetInt16Elem","features":[378]},{"name":"VariantGetInt32Elem","features":[378]},{"name":"VariantGetInt64Elem","features":[378]},{"name":"VariantGetStringElem","features":[378]},{"name":"VariantGetUInt16Elem","features":[378]},{"name":"VariantGetUInt32Elem","features":[378]},{"name":"VariantGetUInt64Elem","features":[378]},{"name":"VariantInit","features":[378]},{"name":"VariantTimeToDosDateTime","features":[378]},{"name":"VariantTimeToSystemTime","features":[303,378]},{"name":"VariantToBoolean","features":[303,378]},{"name":"VariantToBooleanArray","features":[303,378]},{"name":"VariantToBooleanArrayAlloc","features":[303,378]},{"name":"VariantToBooleanWithDefault","features":[303,378]},{"name":"VariantToBuffer","features":[378]},{"name":"VariantToDosDateTime","features":[378]},{"name":"VariantToDouble","features":[378]},{"name":"VariantToDoubleArray","features":[378]},{"name":"VariantToDoubleArrayAlloc","features":[378]},{"name":"VariantToDoubleWithDefault","features":[378]},{"name":"VariantToFileTime","features":[303,378]},{"name":"VariantToGUID","features":[378]},{"name":"VariantToInt16","features":[378]},{"name":"VariantToInt16Array","features":[378]},{"name":"VariantToInt16ArrayAlloc","features":[378]},{"name":"VariantToInt16WithDefault","features":[378]},{"name":"VariantToInt32","features":[378]},{"name":"VariantToInt32Array","features":[378]},{"name":"VariantToInt32ArrayAlloc","features":[378]},{"name":"VariantToInt32WithDefault","features":[378]},{"name":"VariantToInt64","features":[378]},{"name":"VariantToInt64Array","features":[378]},{"name":"VariantToInt64ArrayAlloc","features":[378]},{"name":"VariantToInt64WithDefault","features":[378]},{"name":"VariantToString","features":[378]},{"name":"VariantToStringAlloc","features":[378]},{"name":"VariantToStringArray","features":[378]},{"name":"VariantToStringArrayAlloc","features":[378]},{"name":"VariantToStringWithDefault","features":[378]},{"name":"VariantToUInt16","features":[378]},{"name":"VariantToUInt16Array","features":[378]},{"name":"VariantToUInt16ArrayAlloc","features":[378]},{"name":"VariantToUInt16WithDefault","features":[378]},{"name":"VariantToUInt32","features":[378]},{"name":"VariantToUInt32Array","features":[378]},{"name":"VariantToUInt32ArrayAlloc","features":[378]},{"name":"VariantToUInt32WithDefault","features":[378]},{"name":"VariantToUInt64","features":[378]},{"name":"VariantToUInt64Array","features":[378]},{"name":"VariantToUInt64ArrayAlloc","features":[378]},{"name":"VariantToUInt64WithDefault","features":[378]}],"624":[{"name":"DBG_ATTACH","features":[595]},{"name":"DBG_BREAK","features":[595]},{"name":"DBG_DIVOVERFLOW","features":[595]},{"name":"DBG_DLLSTART","features":[595]},{"name":"DBG_DLLSTOP","features":[595]},{"name":"DBG_GPFAULT","features":[595]},{"name":"DBG_GPFAULT2","features":[595]},{"name":"DBG_INIT","features":[595]},{"name":"DBG_INSTRFAULT","features":[595]},{"name":"DBG_MODFREE","features":[595]},{"name":"DBG_MODLOAD","features":[595]},{"name":"DBG_MODMOVE","features":[595]},{"name":"DBG_SEGFREE","features":[595]},{"name":"DBG_SEGLOAD","features":[595]},{"name":"DBG_SEGMOVE","features":[595]},{"name":"DBG_SINGLESTEP","features":[595]},{"name":"DBG_STACKFAULT","features":[595]},{"name":"DBG_TASKSTART","features":[595]},{"name":"DBG_TASKSTOP","features":[595]},{"name":"DBG_TEMPBP","features":[595]},{"name":"DBG_TOOLHELP","features":[595]},{"name":"DBG_WOWINIT","features":[595]},{"name":"DEBUGEVENTPROC","features":[303,331,338,595]},{"name":"GD_ACCELERATORS","features":[595]},{"name":"GD_BITMAP","features":[595]},{"name":"GD_CURSOR","features":[595]},{"name":"GD_CURSORCOMPONENT","features":[595]},{"name":"GD_DIALOG","features":[595]},{"name":"GD_ERRTABLE","features":[595]},{"name":"GD_FONT","features":[595]},{"name":"GD_FONTDIR","features":[595]},{"name":"GD_ICON","features":[595]},{"name":"GD_ICONCOMPONENT","features":[595]},{"name":"GD_MAX_RESOURCE","features":[595]},{"name":"GD_MENU","features":[595]},{"name":"GD_NAMETABLE","features":[595]},{"name":"GD_RCDATA","features":[595]},{"name":"GD_STRING","features":[595]},{"name":"GD_USERDEFINED","features":[595]},{"name":"GLOBALENTRY","features":[303,595]},{"name":"GLOBAL_ALL","features":[595]},{"name":"GLOBAL_FREE","features":[595]},{"name":"GLOBAL_LRU","features":[595]},{"name":"GT_BURGERMASTER","features":[595]},{"name":"GT_CODE","features":[595]},{"name":"GT_DATA","features":[595]},{"name":"GT_DGROUP","features":[595]},{"name":"GT_FREE","features":[595]},{"name":"GT_INTERNAL","features":[595]},{"name":"GT_MODULE","features":[595]},{"name":"GT_RESOURCE","features":[595]},{"name":"GT_SENTINEL","features":[595]},{"name":"GT_TASK","features":[595]},{"name":"GT_UNKNOWN","features":[595]},{"name":"IMAGE_NOTE","features":[595]},{"name":"MAX_MODULE_NAME","features":[595]},{"name":"MAX_PATH16","features":[595]},{"name":"MODULEENTRY","features":[303,595]},{"name":"PROCESSENUMPROC","features":[303,595]},{"name":"SEGMENT_NOTE","features":[595]},{"name":"SN_CODE","features":[595]},{"name":"SN_DATA","features":[595]},{"name":"SN_V86","features":[595]},{"name":"STATUS_VDM_EVENT","features":[595]},{"name":"TASKENUMPROC","features":[303,595]},{"name":"TASKENUMPROCEX","features":[303,595]},{"name":"TEMP_BP_NOTE","features":[303,595]},{"name":"V86FLAGS_ALIGNMENT","features":[595]},{"name":"V86FLAGS_AUXCARRY","features":[595]},{"name":"V86FLAGS_CARRY","features":[595]},{"name":"V86FLAGS_DIRECTION","features":[595]},{"name":"V86FLAGS_INTERRUPT","features":[595]},{"name":"V86FLAGS_IOPL","features":[595]},{"name":"V86FLAGS_IOPL_BITS","features":[595]},{"name":"V86FLAGS_OVERFLOW","features":[595]},{"name":"V86FLAGS_PARITY","features":[595]},{"name":"V86FLAGS_RESUME","features":[595]},{"name":"V86FLAGS_SIGN","features":[595]},{"name":"V86FLAGS_TRACE","features":[595]},{"name":"V86FLAGS_V86","features":[595]},{"name":"V86FLAGS_ZERO","features":[595]},{"name":"VDMADDR_PM16","features":[595]},{"name":"VDMADDR_PM32","features":[595]},{"name":"VDMADDR_V86","features":[595]},{"name":"VDMBREAKTHREADPROC","features":[303,595]},{"name":"VDMCONTEXT","features":[309,595]},{"name":"VDMCONTEXT_WITHOUT_XSAVE","features":[309,595]},{"name":"VDMCONTEXT_i386","features":[595]},{"name":"VDMCONTEXT_i486","features":[595]},{"name":"VDMDBG_BREAK_DEBUGGER","features":[595]},{"name":"VDMDBG_BREAK_DIVIDEBYZERO","features":[595]},{"name":"VDMDBG_BREAK_DOSTASK","features":[595]},{"name":"VDMDBG_BREAK_EXCEPTIONS","features":[595]},{"name":"VDMDBG_BREAK_LOADDLL","features":[595]},{"name":"VDMDBG_BREAK_WOWTASK","features":[595]},{"name":"VDMDBG_INITIAL_FLAGS","features":[595]},{"name":"VDMDBG_MAX_SYMBOL_BUFFER","features":[595]},{"name":"VDMDBG_TRACE_HISTORY","features":[595]},{"name":"VDMDETECTWOWPROC","features":[303,595]},{"name":"VDMENUMPROCESSWOWPROC","features":[303,595]},{"name":"VDMENUMTASKWOWEXPROC","features":[303,595]},{"name":"VDMENUMTASKWOWPROC","features":[303,595]},{"name":"VDMEVENT_ALLFLAGS","features":[595]},{"name":"VDMEVENT_NEEDS_INTERACTIVE","features":[595]},{"name":"VDMEVENT_PE","features":[595]},{"name":"VDMEVENT_PM16","features":[595]},{"name":"VDMEVENT_V86","features":[595]},{"name":"VDMEVENT_VERBOSE","features":[595]},{"name":"VDMGETADDREXPRESSIONPROC","features":[303,595]},{"name":"VDMGETCONTEXTPROC","features":[303,309,595]},{"name":"VDMGETCONTEXTPROC","features":[303,331,309,595]},{"name":"VDMGETDBGFLAGSPROC","features":[303,595]},{"name":"VDMGETMODULESELECTORPROC","features":[303,595]},{"name":"VDMGETPOINTERPROC","features":[303,595]},{"name":"VDMGETSEGMENTINFOPROC","features":[303,595]},{"name":"VDMGETSELECTORMODULEPROC","features":[303,595]},{"name":"VDMGETSYMBOLPROC","features":[303,595]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[303,595]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[303,331,595]},{"name":"VDMGLOBALFIRSTPROC","features":[303,331,338,595]},{"name":"VDMGLOBALNEXTPROC","features":[303,331,338,595]},{"name":"VDMISMODULELOADEDPROC","features":[303,595]},{"name":"VDMKILLWOWPROC","features":[303,595]},{"name":"VDMLDT_ENTRY","features":[595]},{"name":"VDMMODULEFIRSTPROC","features":[303,331,338,595]},{"name":"VDMMODULENEXTPROC","features":[303,331,338,595]},{"name":"VDMPROCESSEXCEPTIONPROC","features":[303,331,338,595]},{"name":"VDMSETCONTEXTPROC","features":[303,309,595]},{"name":"VDMSETCONTEXTPROC","features":[303,331,309,595]},{"name":"VDMSETDBGFLAGSPROC","features":[303,595]},{"name":"VDMSTARTTASKINWOWPROC","features":[303,595]},{"name":"VDMTERMINATETASKINWOWPROC","features":[303,595]},{"name":"VDM_KGDT_R3_CODE","features":[595]},{"name":"VDM_MAXIMUM_SUPPORTED_EXTENSION","features":[595]},{"name":"VDM_SEGINFO","features":[595]},{"name":"WOW_SYSTEM","features":[595]}],"625":[{"name":"ACTIVATIONTYPE","features":[596]},{"name":"ACTIVATIONTYPE_FROM_DATA","features":[596]},{"name":"ACTIVATIONTYPE_FROM_FILE","features":[596]},{"name":"ACTIVATIONTYPE_FROM_MONIKER","features":[596]},{"name":"ACTIVATIONTYPE_FROM_STORAGE","features":[596]},{"name":"ACTIVATIONTYPE_FROM_STREAM","features":[596]},{"name":"ACTIVATIONTYPE_UNCATEGORIZED","features":[596]},{"name":"AGILEREFERENCE_DEFAULT","features":[596]},{"name":"AGILEREFERENCE_DELAYEDMARSHAL","features":[596]},{"name":"APARTMENT_SHUTDOWN_REGISTRATION_COOKIE","features":[596]},{"name":"AgileReferenceOptions","features":[596]},{"name":"BSOS_DEFAULT","features":[596]},{"name":"BSOS_OPTIONS","features":[596]},{"name":"BSOS_PREFERDESTINATIONSTREAM","features":[596]},{"name":"BaseTrust","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS_DEVICE_DID_NOT_RESPOND","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS_DEVICE_ERROR","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS_DEVICE_LOCKED","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS_INVALID_CASTING_SOURCE","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS_PROTECTED_PLAYBACK_FAILED","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS_SUCCEEDED","features":[596]},{"name":"CASTING_CONNECTION_ERROR_STATUS_UNKNOWN","features":[596]},{"name":"CASTING_CONNECTION_STATE","features":[596]},{"name":"CASTING_CONNECTION_STATE_CONNECTED","features":[596]},{"name":"CASTING_CONNECTION_STATE_CONNECTING","features":[596]},{"name":"CASTING_CONNECTION_STATE_DISCONNECTED","features":[596]},{"name":"CASTING_CONNECTION_STATE_DISCONNECTING","features":[596]},{"name":"CASTING_CONNECTION_STATE_RENDERING","features":[596]},{"name":"CastingSourceInfo_Property_CastingTypes","features":[596]},{"name":"CastingSourceInfo_Property_PreferredSourceUriScheme","features":[596]},{"name":"CastingSourceInfo_Property_ProtectedMedia","features":[596]},{"name":"CoDecodeProxy","features":[596]},{"name":"CreateControlInput","features":[596]},{"name":"CreateControlInputEx","features":[596]},{"name":"CreateDispatcherQueueController","features":[245,596]},{"name":"CreateRandomAccessStreamOnFile","features":[596]},{"name":"CreateRandomAccessStreamOverStream","features":[354,596]},{"name":"CreateStreamOverRandomAccessStream","features":[596]},{"name":"DISPATCHERQUEUE_THREAD_APARTMENTTYPE","features":[596]},{"name":"DISPATCHERQUEUE_THREAD_TYPE","features":[596]},{"name":"DQTAT_COM_ASTA","features":[596]},{"name":"DQTAT_COM_NONE","features":[596]},{"name":"DQTAT_COM_STA","features":[596]},{"name":"DQTYPE_THREAD_CURRENT","features":[596]},{"name":"DQTYPE_THREAD_DEDICATED","features":[596]},{"name":"DispatcherQueueOptions","features":[596]},{"name":"EventRegistrationToken","features":[596]},{"name":"FullTrust","features":[596]},{"name":"GetRestrictedErrorInfo","features":[596]},{"name":"HSTRING","features":[596]},{"name":"HSTRING_BUFFER","features":[596]},{"name":"HSTRING_HEADER","features":[596]},{"name":"HSTRING_UserFree","features":[596]},{"name":"HSTRING_UserFree64","features":[596]},{"name":"HSTRING_UserMarshal","features":[596]},{"name":"HSTRING_UserMarshal64","features":[596]},{"name":"HSTRING_UserSize","features":[596]},{"name":"HSTRING_UserSize64","features":[596]},{"name":"HSTRING_UserUnmarshal","features":[596]},{"name":"HSTRING_UserUnmarshal64","features":[596]},{"name":"IAccountsSettingsPaneInterop","features":[596]},{"name":"IActivationFactory","features":[596]},{"name":"IAgileReference","features":[596]},{"name":"IApartmentShutdown","features":[596]},{"name":"IAppServiceConnectionExtendedExecution","features":[596]},{"name":"IBufferByteAccess","features":[596]},{"name":"ICastingController","features":[596]},{"name":"ICastingEventHandler","features":[596]},{"name":"ICastingSourceInfo","features":[596]},{"name":"ICoreInputInterop","features":[596]},{"name":"ICoreInputInterop2","features":[596]},{"name":"ICoreWindowAdapterInterop","features":[596]},{"name":"ICoreWindowComponentInterop","features":[596]},{"name":"ICoreWindowInterop","features":[596]},{"name":"ICorrelationVectorInformation","features":[596]},{"name":"ICorrelationVectorSource","features":[596]},{"name":"IDragDropManagerInterop","features":[596]},{"name":"IHolographicSpaceInterop","features":[596]},{"name":"IInputPaneInterop","features":[596]},{"name":"IInspectable","features":[596]},{"name":"ILanguageExceptionErrorInfo","features":[596]},{"name":"ILanguageExceptionErrorInfo2","features":[596]},{"name":"ILanguageExceptionStackBackTrace","features":[596]},{"name":"ILanguageExceptionTransform","features":[596]},{"name":"IMemoryBufferByteAccess","features":[596]},{"name":"IMessageDispatcher","features":[596]},{"name":"IPlayToManagerInterop","features":[596]},{"name":"IRestrictedErrorInfo","features":[596]},{"name":"IShareWindowCommandEventArgsInterop","features":[596]},{"name":"IShareWindowCommandSourceInterop","features":[596]},{"name":"ISpatialInteractionManagerInterop","features":[596]},{"name":"ISystemMediaTransportControlsInterop","features":[596]},{"name":"IUIViewSettingsInterop","features":[596]},{"name":"IUserActivityInterop","features":[596]},{"name":"IUserActivityRequestManagerInterop","features":[596]},{"name":"IUserActivitySourceHostInterop","features":[596]},{"name":"IUserConsentVerifierInterop","features":[596]},{"name":"IWeakReference","features":[596]},{"name":"IWeakReferenceSource","features":[596]},{"name":"IWebAuthenticationCoreManagerInterop","features":[596]},{"name":"IsErrorPropagationEnabled","features":[303,596]},{"name":"MAX_ERROR_MESSAGE_CHARS","features":[596]},{"name":"PFNGETACTIVATIONFACTORY","features":[596]},{"name":"PINSPECT_HSTRING_CALLBACK","features":[596]},{"name":"PINSPECT_HSTRING_CALLBACK2","features":[596]},{"name":"PINSPECT_MEMORY_CALLBACK","features":[596]},{"name":"PartialTrust","features":[596]},{"name":"ROPARAMIIDHANDLE","features":[596]},{"name":"RO_ERROR_REPORTING_FLAGS","features":[596]},{"name":"RO_ERROR_REPORTING_FORCEEXCEPTIONS","features":[596]},{"name":"RO_ERROR_REPORTING_NONE","features":[596]},{"name":"RO_ERROR_REPORTING_SUPPRESSEXCEPTIONS","features":[596]},{"name":"RO_ERROR_REPORTING_SUPPRESSSETERRORINFO","features":[596]},{"name":"RO_ERROR_REPORTING_USESETERRORINFO","features":[596]},{"name":"RO_INIT_MULTITHREADED","features":[596]},{"name":"RO_INIT_SINGLETHREADED","features":[596]},{"name":"RO_INIT_TYPE","features":[596]},{"name":"RO_REGISTRATION_COOKIE","features":[596]},{"name":"RoActivateInstance","features":[596]},{"name":"RoCaptureErrorContext","features":[596]},{"name":"RoClearError","features":[596]},{"name":"RoFailFastWithErrorContext","features":[596]},{"name":"RoGetActivationFactory","features":[596]},{"name":"RoGetAgileReference","features":[596]},{"name":"RoGetApartmentIdentifier","features":[596]},{"name":"RoGetBufferMarshaler","features":[528,596]},{"name":"RoGetErrorReportingFlags","features":[596]},{"name":"RoGetMatchingRestrictedErrorInfo","features":[596]},{"name":"RoGetServerActivatableClasses","features":[596]},{"name":"RoInitialize","features":[596]},{"name":"RoInspectCapturedStackBackTrace","features":[596]},{"name":"RoInspectThreadErrorInfo","features":[596]},{"name":"RoOriginateError","features":[303,596]},{"name":"RoOriginateErrorW","features":[303,596]},{"name":"RoOriginateLanguageException","features":[303,596]},{"name":"RoRegisterActivationFactories","features":[596]},{"name":"RoRegisterForApartmentShutdown","features":[596]},{"name":"RoReportFailedDelegate","features":[596]},{"name":"RoReportUnhandledError","features":[596]},{"name":"RoResolveRestrictedErrorInfoReference","features":[596]},{"name":"RoRevokeActivationFactories","features":[596]},{"name":"RoSetErrorReportingFlags","features":[596]},{"name":"RoTransformError","features":[303,596]},{"name":"RoTransformErrorW","features":[303,596]},{"name":"RoUninitialize","features":[596]},{"name":"RoUnregisterForApartmentShutdown","features":[596]},{"name":"ServerInformation","features":[596]},{"name":"SetRestrictedErrorInfo","features":[596]},{"name":"TrustLevel","features":[596]},{"name":"WindowsCompareStringOrdinal","features":[596]},{"name":"WindowsConcatString","features":[596]},{"name":"WindowsCreateString","features":[596]},{"name":"WindowsCreateStringReference","features":[596]},{"name":"WindowsDeleteString","features":[596]},{"name":"WindowsDeleteStringBuffer","features":[596]},{"name":"WindowsDuplicateString","features":[596]},{"name":"WindowsGetStringLen","features":[596]},{"name":"WindowsGetStringRawBuffer","features":[596]},{"name":"WindowsInspectString","features":[596]},{"name":"WindowsInspectString2","features":[596]},{"name":"WindowsIsStringEmpty","features":[303,596]},{"name":"WindowsPreallocateStringBuffer","features":[596]},{"name":"WindowsPromoteStringBuffer","features":[596]},{"name":"WindowsReplaceString","features":[596]},{"name":"WindowsStringHasEmbeddedNull","features":[303,596]},{"name":"WindowsSubstring","features":[596]},{"name":"WindowsSubstringWithSpecifiedLength","features":[596]},{"name":"WindowsTrimStringEnd","features":[596]},{"name":"WindowsTrimStringStart","features":[596]}],"626":[{"name":"IWindowsDevicesAllJoynBusAttachmentFactoryInterop","features":[597]},{"name":"IWindowsDevicesAllJoynBusAttachmentInterop","features":[597]},{"name":"IWindowsDevicesAllJoynBusObjectFactoryInterop","features":[597]},{"name":"IWindowsDevicesAllJoynBusObjectInterop","features":[597]}],"627":[{"name":"ICompositionCapabilitiesInteropFactory","features":[598]},{"name":"ICompositionDrawingSurfaceInterop","features":[598]},{"name":"ICompositionDrawingSurfaceInterop2","features":[598]},{"name":"ICompositionGraphicsDeviceInterop","features":[598]},{"name":"ICompositionTextureInterop","features":[598]},{"name":"ICompositorDesktopInterop","features":[598]},{"name":"ICompositorInterop","features":[598]},{"name":"ICompositorInterop2","features":[598]},{"name":"IDesktopWindowTargetInterop","features":[598]},{"name":"IVisualInteractionSourceInterop","features":[598]}],"628":[{"name":"ICoreFrameworkInputViewInterop","features":[599]}],"629":[{"name":"CreateDirect3D11DeviceFromDXGIDevice","features":[395,600]},{"name":"CreateDirect3D11SurfaceFromDXGISurface","features":[395,600]},{"name":"IDirect3DDxgiInterfaceAccess","features":[600]}],"630":[{"name":"IDisplayDeviceInterop","features":[601]},{"name":"IDisplayPathInterop","features":[601]}],"631":[{"name":"IGraphicsCaptureItemInterop","features":[602]}],"632":[{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_COLORMATRIX_ALPHA_MODE","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR3","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR4","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_RADIANS_TO_DEGREES","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_RECT_TO_VECTOR4","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_UNKNOWN","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORW","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORX","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORY","features":[603]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORZ","features":[603]},{"name":"IGeometrySource2DInterop","features":[603]},{"name":"IGraphicsEffectD2D1Interop","features":[603]}],"633":[{"name":"CLSID_SoftwareBitmapNativeFactory","features":[604]},{"name":"ISoftwareBitmapNative","features":[604]},{"name":"ISoftwareBitmapNativeFactory","features":[604]}],"634":[{"name":"IHolographicCameraInterop","features":[605]},{"name":"IHolographicCameraRenderingParametersInterop","features":[605]},{"name":"IHolographicQuadLayerInterop","features":[605]},{"name":"IHolographicQuadLayerUpdateParametersInterop","features":[605]}],"635":[{"name":"IIsolatedEnvironmentInterop","features":[606]}],"636":[{"name":"ILearningModelDeviceFactoryNative","features":[607]},{"name":"ILearningModelOperatorProviderNative","features":[607]},{"name":"ILearningModelSessionOptionsNative","features":[607]},{"name":"ILearningModelSessionOptionsNative1","features":[607]},{"name":"ITensorNative","features":[607]},{"name":"ITensorStaticsNative","features":[607]}],"637":[{"name":"CLSID_AudioFrameNativeFactory","features":[608]},{"name":"CLSID_VideoFrameNativeFactory","features":[608]},{"name":"IAudioFrameNative","features":[608]},{"name":"IAudioFrameNativeFactory","features":[608]},{"name":"IVideoFrameNative","features":[608]},{"name":"IVideoFrameNativeFactory","features":[608]}],"638":[{"name":"ASSEMBLYMETADATA","features":[539]},{"name":"ASSEMBLY_METADATA_TYPE","features":[539]},{"name":"ASSEMBLY_METADATA_TYPE_W","features":[539]},{"name":"CLSID_CLR_v1_MetaData","features":[539]},{"name":"CLSID_CLR_v2_MetaData","features":[539]},{"name":"CLSID_Cor","features":[539]},{"name":"CLSID_CorMetaDataDispenser","features":[539]},{"name":"CLSID_CorMetaDataDispenserReg","features":[539]},{"name":"CLSID_CorMetaDataDispenserRuntime","features":[539]},{"name":"CLSID_CorMetaDataReg","features":[539]},{"name":"CMOD_CALLCONV_NAMESPACE","features":[539]},{"name":"CMOD_CALLCONV_NAMESPACE_OLD","features":[539]},{"name":"CMOD_CALLCONV_NAME_CDECL","features":[539]},{"name":"CMOD_CALLCONV_NAME_FASTCALL","features":[539]},{"name":"CMOD_CALLCONV_NAME_STDCALL","features":[539]},{"name":"CMOD_CALLCONV_NAME_THISCALL","features":[539]},{"name":"COINITCOR_DEFAULT","features":[539]},{"name":"COINITEE_DEFAULT","features":[539]},{"name":"COINITEE_DLL","features":[539]},{"name":"COINITEE_MAIN","features":[539]},{"name":"COINITICOR","features":[539]},{"name":"COINITIEE","features":[539]},{"name":"COMPILATIONRELAXATIONS_TYPE","features":[539]},{"name":"COMPILATIONRELAXATIONS_TYPE_W","features":[539]},{"name":"COR_BASE_SECURITY_ATTRIBUTE_CLASS","features":[539]},{"name":"COR_BASE_SECURITY_ATTRIBUTE_CLASS_ANSI","features":[539]},{"name":"COR_CCTOR_METHOD_NAME","features":[539]},{"name":"COR_CCTOR_METHOD_NAME_W","features":[539]},{"name":"COR_COMPILERSERVICE_DISCARDABLEATTRIBUTE","features":[539]},{"name":"COR_COMPILERSERVICE_DISCARDABLEATTRIBUTE_ASNI","features":[539]},{"name":"COR_CTOR_METHOD_NAME","features":[539]},{"name":"COR_CTOR_METHOD_NAME_W","features":[539]},{"name":"COR_DELETED_NAME_A","features":[539]},{"name":"COR_DELETED_NAME_W","features":[539]},{"name":"COR_ENUM_FIELD_NAME","features":[539]},{"name":"COR_ENUM_FIELD_NAME_W","features":[539]},{"name":"COR_E_AMBIGUOUSMATCH","features":[539]},{"name":"COR_E_ARGUMENT","features":[539]},{"name":"COR_E_BADIMAGEFORMAT","features":[539]},{"name":"COR_E_DIVIDEBYZERO","features":[539]},{"name":"COR_E_INVALIDCAST","features":[539]},{"name":"COR_E_NULLREFERENCE","features":[539]},{"name":"COR_E_OUTOFMEMORY","features":[539]},{"name":"COR_E_TARGETPARAMCOUNT","features":[539]},{"name":"COR_E_UNAUTHORIZEDACCESS","features":[539]},{"name":"COR_FIELD_OFFSET","features":[539]},{"name":"COR_ILEXCEPTION_CLAUSE_DEPRECATED","features":[539]},{"name":"COR_ILEXCEPTION_CLAUSE_DUPLICATED","features":[539]},{"name":"COR_ILEXCEPTION_CLAUSE_FAULT","features":[539]},{"name":"COR_ILEXCEPTION_CLAUSE_FILTER","features":[539]},{"name":"COR_ILEXCEPTION_CLAUSE_FINALLY","features":[539]},{"name":"COR_ILEXCEPTION_CLAUSE_NONE","features":[539]},{"name":"COR_ILEXCEPTION_CLAUSE_OFFSETLEN","features":[539]},{"name":"COR_NATIVE_LINK","features":[539]},{"name":"COR_NATIVE_LINK_CUSTOM_VALUE","features":[539]},{"name":"COR_NATIVE_LINK_CUSTOM_VALUE_ANSI","features":[539]},{"name":"COR_NATIVE_LINK_CUSTOM_VALUE_CC","features":[539]},{"name":"COR_REQUIRES_SECOBJ_ATTRIBUTE","features":[539]},{"name":"COR_REQUIRES_SECOBJ_ATTRIBUTE_ANSI","features":[539]},{"name":"COR_SECATTR","features":[539]},{"name":"COR_SUPPRESS_UNMANAGED_CODE_CHECK_ATTRIBUTE","features":[539]},{"name":"COR_SUPPRESS_UNMANAGED_CODE_CHECK_ATTRIBUTE_ANSI","features":[539]},{"name":"COR_UNVER_CODE_ATTRIBUTE","features":[539]},{"name":"COR_UNVER_CODE_ATTRIBUTE_ANSI","features":[539]},{"name":"COR_VTABLEGAP_NAME_A","features":[539]},{"name":"COR_VTABLEGAP_NAME_W","features":[539]},{"name":"COUNINITEE_DEFAULT","features":[539]},{"name":"COUNINITEE_DLL","features":[539]},{"name":"COUNINITIEE","features":[539]},{"name":"CVStruct","features":[539]},{"name":"CeeSectionAttr","features":[539]},{"name":"CeeSectionRelocExtra","features":[539]},{"name":"CeeSectionRelocType","features":[539]},{"name":"CompilationRelaxationsEnum","features":[539]},{"name":"CompilationRelaxations_NoStringInterning","features":[539]},{"name":"CorArgType","features":[539]},{"name":"CorAssemblyFlags","features":[539]},{"name":"CorAttributeTargets","features":[539]},{"name":"CorCallingConvention","features":[539]},{"name":"CorCheckDuplicatesFor","features":[539]},{"name":"CorDeclSecurity","features":[539]},{"name":"CorElementType","features":[539]},{"name":"CorErrorIfEmitOutOfOrder","features":[539]},{"name":"CorEventAttr","features":[539]},{"name":"CorExceptionFlag","features":[539]},{"name":"CorFieldAttr","features":[539]},{"name":"CorFileFlags","features":[539]},{"name":"CorFileMapping","features":[539]},{"name":"CorGenericParamAttr","features":[539]},{"name":"CorILMethodFlags","features":[539]},{"name":"CorILMethodSect","features":[539]},{"name":"CorILMethod_CompressedIL","features":[539]},{"name":"CorILMethod_FatFormat","features":[539]},{"name":"CorILMethod_FormatMask","features":[539]},{"name":"CorILMethod_FormatShift","features":[539]},{"name":"CorILMethod_InitLocals","features":[539]},{"name":"CorILMethod_MoreSects","features":[539]},{"name":"CorILMethod_Sect_EHTable","features":[539]},{"name":"CorILMethod_Sect_FatFormat","features":[539]},{"name":"CorILMethod_Sect_KindMask","features":[539]},{"name":"CorILMethod_Sect_MoreSects","features":[539]},{"name":"CorILMethod_Sect_OptILTable","features":[539]},{"name":"CorILMethod_Sect_Reserved","features":[539]},{"name":"CorILMethod_SmallFormat","features":[539]},{"name":"CorILMethod_TinyFormat","features":[539]},{"name":"CorILMethod_TinyFormat1","features":[539]},{"name":"CorImportOptions","features":[539]},{"name":"CorLinkerOptions","features":[539]},{"name":"CorLocalRefPreservation","features":[539]},{"name":"CorManifestResourceFlags","features":[539]},{"name":"CorMethodAttr","features":[539]},{"name":"CorMethodImpl","features":[539]},{"name":"CorMethodSemanticsAttr","features":[539]},{"name":"CorNativeLinkFlags","features":[539]},{"name":"CorNativeLinkType","features":[539]},{"name":"CorNativeType","features":[539]},{"name":"CorNotificationForTokenMovement","features":[539]},{"name":"CorOpenFlags","features":[539]},{"name":"CorPEKind","features":[539]},{"name":"CorParamAttr","features":[539]},{"name":"CorPinvokeMap","features":[539]},{"name":"CorPropertyAttr","features":[539]},{"name":"CorRefToDefCheck","features":[539]},{"name":"CorRegFlags","features":[539]},{"name":"CorSaveSize","features":[539]},{"name":"CorSerializationType","features":[539]},{"name":"CorSetENC","features":[539]},{"name":"CorThreadSafetyOptions","features":[539]},{"name":"CorTokenType","features":[539]},{"name":"CorTypeAttr","features":[539]},{"name":"CorUnmanagedCallingConvention","features":[539]},{"name":"CorValidatorModuleType","features":[539]},{"name":"DEFAULTDEPENDENCY_TYPE","features":[539]},{"name":"DEFAULTDEPENDENCY_TYPE_W","features":[539]},{"name":"DEFAULTDOMAIN_LOADEROPTIMIZATION_TYPE","features":[539]},{"name":"DEFAULTDOMAIN_LOADEROPTIMIZATION_TYPE_W","features":[539]},{"name":"DEFAULTDOMAIN_MTA_TYPE","features":[539]},{"name":"DEFAULTDOMAIN_MTA_TYPE_W","features":[539]},{"name":"DEFAULTDOMAIN_STA_TYPE","features":[539]},{"name":"DEFAULTDOMAIN_STA_TYPE_W","features":[539]},{"name":"DEPENDENCY_TYPE","features":[539]},{"name":"DEPENDENCY_TYPE_W","features":[539]},{"name":"DESCR_GROUP_METHODDEF","features":[539]},{"name":"DESCR_GROUP_METHODIMPL","features":[539]},{"name":"DISABLED_PRIVATE_REFLECTION_TYPE","features":[539]},{"name":"DISABLED_PRIVATE_REFLECTION_TYPE_W","features":[539]},{"name":"DropMemberRefCAs","features":[539]},{"name":"ELEMENT_TYPE_ARRAY","features":[539]},{"name":"ELEMENT_TYPE_BOOLEAN","features":[539]},{"name":"ELEMENT_TYPE_BYREF","features":[539]},{"name":"ELEMENT_TYPE_CHAR","features":[539]},{"name":"ELEMENT_TYPE_CLASS","features":[539]},{"name":"ELEMENT_TYPE_CMOD_OPT","features":[539]},{"name":"ELEMENT_TYPE_CMOD_REQD","features":[539]},{"name":"ELEMENT_TYPE_END","features":[539]},{"name":"ELEMENT_TYPE_FNPTR","features":[539]},{"name":"ELEMENT_TYPE_GENERICINST","features":[539]},{"name":"ELEMENT_TYPE_I","features":[539]},{"name":"ELEMENT_TYPE_I1","features":[539]},{"name":"ELEMENT_TYPE_I2","features":[539]},{"name":"ELEMENT_TYPE_I4","features":[539]},{"name":"ELEMENT_TYPE_I8","features":[539]},{"name":"ELEMENT_TYPE_INTERNAL","features":[539]},{"name":"ELEMENT_TYPE_MAX","features":[539]},{"name":"ELEMENT_TYPE_MODIFIER","features":[539]},{"name":"ELEMENT_TYPE_MVAR","features":[539]},{"name":"ELEMENT_TYPE_OBJECT","features":[539]},{"name":"ELEMENT_TYPE_PINNED","features":[539]},{"name":"ELEMENT_TYPE_PTR","features":[539]},{"name":"ELEMENT_TYPE_R4","features":[539]},{"name":"ELEMENT_TYPE_R8","features":[539]},{"name":"ELEMENT_TYPE_SENTINEL","features":[539]},{"name":"ELEMENT_TYPE_STRING","features":[539]},{"name":"ELEMENT_TYPE_SZARRAY","features":[539]},{"name":"ELEMENT_TYPE_TYPEDBYREF","features":[539]},{"name":"ELEMENT_TYPE_U","features":[539]},{"name":"ELEMENT_TYPE_U1","features":[539]},{"name":"ELEMENT_TYPE_U2","features":[539]},{"name":"ELEMENT_TYPE_U4","features":[539]},{"name":"ELEMENT_TYPE_U8","features":[539]},{"name":"ELEMENT_TYPE_VALUETYPE","features":[539]},{"name":"ELEMENT_TYPE_VAR","features":[539]},{"name":"ELEMENT_TYPE_VOID","features":[539]},{"name":"FORWARD_INTEROP_STUB_METHOD_TYPE","features":[539]},{"name":"FORWARD_INTEROP_STUB_METHOD_TYPE_W","features":[539]},{"name":"FRAMEWORK_REGISTRY_KEY","features":[539]},{"name":"FRAMEWORK_REGISTRY_KEY_W","features":[539]},{"name":"FRIEND_ACCESS_ALLOWED_ATTRIBUTE_TYPE","features":[539]},{"name":"FRIEND_ACCESS_ALLOWED_ATTRIBUTE_TYPE_W","features":[539]},{"name":"FRIEND_ASSEMBLY_TYPE","features":[539]},{"name":"FRIEND_ASSEMBLY_TYPE_W","features":[539]},{"name":"GUID_DispIdOverride","features":[539]},{"name":"GUID_ExportedFromComPlus","features":[539]},{"name":"GUID_ForceIEnumerable","features":[539]},{"name":"GUID_Function2Getter","features":[539]},{"name":"GUID_ManagedName","features":[539]},{"name":"GUID_PropGetCA","features":[539]},{"name":"GUID_PropPutCA","features":[539]},{"name":"ICeeGen","features":[539]},{"name":"IHostFilter","features":[539]},{"name":"IMAGE_CEE_CS_BYVALUE","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_C","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_DEFAULT","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_EXPLICITTHIS","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_FASTCALL","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_FIELD","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_GENERIC","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_GENERICINST","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_HASTHIS","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_LOCAL_SIG","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_MASK","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_MAX","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_NATIVEVARARG","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_PROPERTY","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_STDCALL","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_THISCALL","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_UNMGD","features":[539]},{"name":"IMAGE_CEE_CS_CALLCONV_VARARG","features":[539]},{"name":"IMAGE_CEE_CS_END","features":[539]},{"name":"IMAGE_CEE_CS_I4","features":[539]},{"name":"IMAGE_CEE_CS_I8","features":[539]},{"name":"IMAGE_CEE_CS_OBJECT","features":[539]},{"name":"IMAGE_CEE_CS_PTR","features":[539]},{"name":"IMAGE_CEE_CS_R4","features":[539]},{"name":"IMAGE_CEE_CS_R8","features":[539]},{"name":"IMAGE_CEE_CS_STRUCT32","features":[539]},{"name":"IMAGE_CEE_CS_STRUCT4","features":[539]},{"name":"IMAGE_CEE_CS_VOID","features":[539]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_C","features":[539]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_FASTCALL","features":[539]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_STDCALL","features":[539]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_THISCALL","features":[539]},{"name":"IMAGE_COR_ILMETHOD","features":[539]},{"name":"IMAGE_COR_ILMETHOD_FAT","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_FAT","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_SMALL","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_FAT","features":[539]},{"name":"IMAGE_COR_ILMETHOD_SECT_SMALL","features":[539]},{"name":"IMAGE_COR_ILMETHOD_TINY","features":[539]},{"name":"IMAGE_COR_VTABLEFIXUP","features":[539]},{"name":"IMAGE_DIRECTORY_ENTRY_COMHEADER","features":[539]},{"name":"IMapToken","features":[539]},{"name":"IMetaDataAssemblyEmit","features":[539]},{"name":"IMetaDataAssemblyImport","features":[539]},{"name":"IMetaDataDispenser","features":[539]},{"name":"IMetaDataDispenserEx","features":[539]},{"name":"IMetaDataEmit","features":[539]},{"name":"IMetaDataEmit2","features":[539]},{"name":"IMetaDataError","features":[539]},{"name":"IMetaDataFilter","features":[539]},{"name":"IMetaDataImport","features":[539]},{"name":"IMetaDataImport2","features":[539]},{"name":"IMetaDataInfo","features":[539]},{"name":"IMetaDataTables","features":[539]},{"name":"IMetaDataTables2","features":[539]},{"name":"IMetaDataValidate","features":[539]},{"name":"IMetaDataWinMDImport","features":[539]},{"name":"INTEROP_AUTOPROXY_TYPE","features":[539]},{"name":"INTEROP_AUTOPROXY_TYPE_W","features":[539]},{"name":"INTEROP_BESTFITMAPPING_TYPE","features":[539]},{"name":"INTEROP_BESTFITMAPPING_TYPE_W","features":[539]},{"name":"INTEROP_CLASSINTERFACE_TYPE","features":[539]},{"name":"INTEROP_CLASSINTERFACE_TYPE_W","features":[539]},{"name":"INTEROP_COCLASS_TYPE","features":[539]},{"name":"INTEROP_COCLASS_TYPE_W","features":[539]},{"name":"INTEROP_COMALIASNAME_TYPE","features":[539]},{"name":"INTEROP_COMALIASNAME_TYPE_W","features":[539]},{"name":"INTEROP_COMCOMPATIBLEVERSION_TYPE","features":[539]},{"name":"INTEROP_COMCOMPATIBLEVERSION_TYPE_W","features":[539]},{"name":"INTEROP_COMCONVERSIONLOSS_TYPE","features":[539]},{"name":"INTEROP_COMCONVERSIONLOSS_TYPE_W","features":[539]},{"name":"INTEROP_COMDEFAULTINTERFACE_TYPE","features":[539]},{"name":"INTEROP_COMDEFAULTINTERFACE_TYPE_W","features":[539]},{"name":"INTEROP_COMEMULATE_TYPE","features":[539]},{"name":"INTEROP_COMEMULATE_TYPE_W","features":[539]},{"name":"INTEROP_COMEVENTINTERFACE_TYPE","features":[539]},{"name":"INTEROP_COMEVENTINTERFACE_TYPE_W","features":[539]},{"name":"INTEROP_COMIMPORT_TYPE","features":[539]},{"name":"INTEROP_COMIMPORT_TYPE_W","features":[539]},{"name":"INTEROP_COMREGISTERFUNCTION_TYPE","features":[539]},{"name":"INTEROP_COMREGISTERFUNCTION_TYPE_W","features":[539]},{"name":"INTEROP_COMSOURCEINTERFACES_TYPE","features":[539]},{"name":"INTEROP_COMSOURCEINTERFACES_TYPE_W","features":[539]},{"name":"INTEROP_COMSUBSTITUTABLEINTERFACE_TYPE","features":[539]},{"name":"INTEROP_COMSUBSTITUTABLEINTERFACE_TYPE_W","features":[539]},{"name":"INTEROP_COMUNREGISTERFUNCTION_TYPE","features":[539]},{"name":"INTEROP_COMUNREGISTERFUNCTION_TYPE_W","features":[539]},{"name":"INTEROP_COMVISIBLE_TYPE","features":[539]},{"name":"INTEROP_COMVISIBLE_TYPE_W","features":[539]},{"name":"INTEROP_DATETIMEVALUE_TYPE","features":[539]},{"name":"INTEROP_DATETIMEVALUE_TYPE_W","features":[539]},{"name":"INTEROP_DECIMALVALUE_TYPE","features":[539]},{"name":"INTEROP_DECIMALVALUE_TYPE_W","features":[539]},{"name":"INTEROP_DEFAULTMEMBER_TYPE","features":[539]},{"name":"INTEROP_DEFAULTMEMBER_TYPE_W","features":[539]},{"name":"INTEROP_DISPID_TYPE","features":[539]},{"name":"INTEROP_DISPID_TYPE_W","features":[539]},{"name":"INTEROP_GUID_TYPE","features":[539]},{"name":"INTEROP_GUID_TYPE_W","features":[539]},{"name":"INTEROP_IDISPATCHIMPL_TYPE","features":[539]},{"name":"INTEROP_IDISPATCHIMPL_TYPE_W","features":[539]},{"name":"INTEROP_IDISPATCHVALUE_TYPE","features":[539]},{"name":"INTEROP_IDISPATCHVALUE_TYPE_W","features":[539]},{"name":"INTEROP_IMPORTEDFROMTYPELIB_TYPE","features":[539]},{"name":"INTEROP_IMPORTEDFROMTYPELIB_TYPE_W","features":[539]},{"name":"INTEROP_INTERFACETYPE_TYPE","features":[539]},{"name":"INTEROP_INTERFACETYPE_TYPE_W","features":[539]},{"name":"INTEROP_IN_TYPE","features":[539]},{"name":"INTEROP_IN_TYPE_W","features":[539]},{"name":"INTEROP_IUNKNOWNVALUE_TYPE","features":[539]},{"name":"INTEROP_IUNKNOWNVALUE_TYPE_W","features":[539]},{"name":"INTEROP_LCIDCONVERSION_TYPE","features":[539]},{"name":"INTEROP_LCIDCONVERSION_TYPE_W","features":[539]},{"name":"INTEROP_MARSHALAS_TYPE","features":[539]},{"name":"INTEROP_MARSHALAS_TYPE_W","features":[539]},{"name":"INTEROP_OUT_TYPE","features":[539]},{"name":"INTEROP_OUT_TYPE_W","features":[539]},{"name":"INTEROP_PARAMARRAY_TYPE","features":[539]},{"name":"INTEROP_PARAMARRAY_TYPE_W","features":[539]},{"name":"INTEROP_PRESERVESIG_TYPE","features":[539]},{"name":"INTEROP_PRESERVESIG_TYPE_W","features":[539]},{"name":"INTEROP_PRIMARYINTEROPASSEMBLY_TYPE","features":[539]},{"name":"INTEROP_PRIMARYINTEROPASSEMBLY_TYPE_W","features":[539]},{"name":"INTEROP_SERIALIZABLE_TYPE","features":[539]},{"name":"INTEROP_SERIALIZABLE_TYPE_W","features":[539]},{"name":"INTEROP_SETWIN32CONTEXTINIDISPATCHATTRIBUTE_TYPE","features":[539]},{"name":"INTEROP_SETWIN32CONTEXTINIDISPATCHATTRIBUTE_TYPE_W","features":[539]},{"name":"INTEROP_TYPELIBFUNC_TYPE","features":[539]},{"name":"INTEROP_TYPELIBFUNC_TYPE_W","features":[539]},{"name":"INTEROP_TYPELIBIMPORTCLASS_TYPE","features":[539]},{"name":"INTEROP_TYPELIBIMPORTCLASS_TYPE_W","features":[539]},{"name":"INTEROP_TYPELIBTYPE_TYPE","features":[539]},{"name":"INTEROP_TYPELIBTYPE_TYPE_W","features":[539]},{"name":"INTEROP_TYPELIBVAR_TYPE","features":[539]},{"name":"INTEROP_TYPELIBVAR_TYPE_W","features":[539]},{"name":"INTEROP_TYPELIBVERSION_TYPE","features":[539]},{"name":"INTEROP_TYPELIBVERSION_TYPE_W","features":[539]},{"name":"INVALID_CONNECTION_ID","features":[539]},{"name":"INVALID_TASK_ID","features":[539]},{"name":"IRoMetaDataLocator","features":[539]},{"name":"IRoSimpleMetaDataBuilder","features":[539]},{"name":"LIBID_ComPlusRuntime","features":[539]},{"name":"LoadAlways","features":[539]},{"name":"LoadDefault","features":[539]},{"name":"LoadHintEnum","features":[539]},{"name":"LoadNever","features":[539]},{"name":"LoadSometimes","features":[539]},{"name":"MAIN_CLR_MODULE_NAME_A","features":[539]},{"name":"MAIN_CLR_MODULE_NAME_W","features":[539]},{"name":"MAX_CONNECTION_NAME","features":[539]},{"name":"MDAssembly","features":[539]},{"name":"MDDupAll","features":[539]},{"name":"MDDupAssembly","features":[539]},{"name":"MDDupAssemblyRef","features":[539]},{"name":"MDDupCustomAttribute","features":[539]},{"name":"MDDupDefault","features":[539]},{"name":"MDDupENC","features":[539]},{"name":"MDDupEvent","features":[539]},{"name":"MDDupExportedType","features":[539]},{"name":"MDDupFieldDef","features":[539]},{"name":"MDDupFile","features":[539]},{"name":"MDDupGenericParam","features":[539]},{"name":"MDDupGenericParamConstraint","features":[539]},{"name":"MDDupImplMap","features":[539]},{"name":"MDDupInterfaceImpl","features":[539]},{"name":"MDDupManifestResource","features":[539]},{"name":"MDDupMemberRef","features":[539]},{"name":"MDDupMethodDef","features":[539]},{"name":"MDDupMethodSpec","features":[539]},{"name":"MDDupModuleRef","features":[539]},{"name":"MDDupParamDef","features":[539]},{"name":"MDDupPermission","features":[539]},{"name":"MDDupProperty","features":[539]},{"name":"MDDupSignature","features":[539]},{"name":"MDDupTypeDef","features":[539]},{"name":"MDDupTypeRef","features":[539]},{"name":"MDDupTypeSpec","features":[539]},{"name":"MDErrorOutOfOrderAll","features":[539]},{"name":"MDErrorOutOfOrderDefault","features":[539]},{"name":"MDErrorOutOfOrderNone","features":[539]},{"name":"MDEventOutOfOrder","features":[539]},{"name":"MDFieldOutOfOrder","features":[539]},{"name":"MDImportOptionAll","features":[539]},{"name":"MDImportOptionAllCustomAttributes","features":[539]},{"name":"MDImportOptionAllEvents","features":[539]},{"name":"MDImportOptionAllExportedTypes","features":[539]},{"name":"MDImportOptionAllFieldDefs","features":[539]},{"name":"MDImportOptionAllMethodDefs","features":[539]},{"name":"MDImportOptionAllProperties","features":[539]},{"name":"MDImportOptionAllTypeDefs","features":[539]},{"name":"MDImportOptionDefault","features":[539]},{"name":"MDMemberRefToDef","features":[539]},{"name":"MDMethodOutOfOrder","features":[539]},{"name":"MDNetModule","features":[539]},{"name":"MDNoDupChecks","features":[539]},{"name":"MDNotifyAll","features":[539]},{"name":"MDNotifyAssemblyRef","features":[539]},{"name":"MDNotifyCustomAttribute","features":[539]},{"name":"MDNotifyDefault","features":[539]},{"name":"MDNotifyEvent","features":[539]},{"name":"MDNotifyExportedType","features":[539]},{"name":"MDNotifyFieldDef","features":[539]},{"name":"MDNotifyFile","features":[539]},{"name":"MDNotifyInterfaceImpl","features":[539]},{"name":"MDNotifyMemberRef","features":[539]},{"name":"MDNotifyMethodDef","features":[539]},{"name":"MDNotifyModuleRef","features":[539]},{"name":"MDNotifyNameSpace","features":[539]},{"name":"MDNotifyNone","features":[539]},{"name":"MDNotifyParamDef","features":[539]},{"name":"MDNotifyPermission","features":[539]},{"name":"MDNotifyProperty","features":[539]},{"name":"MDNotifyResource","features":[539]},{"name":"MDNotifySecurityValue","features":[539]},{"name":"MDNotifySignature","features":[539]},{"name":"MDNotifyTypeDef","features":[539]},{"name":"MDNotifyTypeRef","features":[539]},{"name":"MDNotifyTypeSpec","features":[539]},{"name":"MDParamOutOfOrder","features":[539]},{"name":"MDPreserveLocalMemberRef","features":[539]},{"name":"MDPreserveLocalRefsNone","features":[539]},{"name":"MDPreserveLocalTypeRef","features":[539]},{"name":"MDPropertyOutOfOrder","features":[539]},{"name":"MDRefToDefAll","features":[539]},{"name":"MDRefToDefDefault","features":[539]},{"name":"MDRefToDefNone","features":[539]},{"name":"MDSetENCOff","features":[539]},{"name":"MDSetENCOn","features":[539]},{"name":"MDThreadSafetyDefault","features":[539]},{"name":"MDThreadSafetyOff","features":[539]},{"name":"MDThreadSafetyOn","features":[539]},{"name":"MDTypeRefToDef","features":[539]},{"name":"MDUpdateDelta","features":[539]},{"name":"MDUpdateENC","features":[539]},{"name":"MDUpdateExtension","features":[539]},{"name":"MDUpdateFull","features":[539]},{"name":"MDUpdateIncremental","features":[539]},{"name":"MDUpdateMask","features":[539]},{"name":"MSCOREE_SHIM_A","features":[539]},{"name":"MSCOREE_SHIM_W","features":[539]},{"name":"MergeExportedTypes","features":[539]},{"name":"MergeFlags","features":[539]},{"name":"MergeFlagsNone","features":[539]},{"name":"MergeManifest","features":[539]},{"name":"MetaDataCheckDuplicatesFor","features":[539]},{"name":"MetaDataErrorIfEmitOutOfOrder","features":[539]},{"name":"MetaDataGenerateTCEAdapters","features":[539]},{"name":"MetaDataGetDispenser","features":[539]},{"name":"MetaDataImportOption","features":[539]},{"name":"MetaDataLinkerOptions","features":[539]},{"name":"MetaDataMergerOptions","features":[539]},{"name":"MetaDataNotificationForTokenMovement","features":[539]},{"name":"MetaDataPreserveLocalRefs","features":[539]},{"name":"MetaDataRefToDefCheck","features":[539]},{"name":"MetaDataRuntimeVersion","features":[539]},{"name":"MetaDataSetUpdate","features":[539]},{"name":"MetaDataThreadSafetyOptions","features":[539]},{"name":"MetaDataTypeLibImportNamespace","features":[539]},{"name":"NATIVE_TYPE_ANSIBSTR","features":[539]},{"name":"NATIVE_TYPE_ARRAY","features":[539]},{"name":"NATIVE_TYPE_ASANY","features":[539]},{"name":"NATIVE_TYPE_BOOLEAN","features":[539]},{"name":"NATIVE_TYPE_BSTR","features":[539]},{"name":"NATIVE_TYPE_BYVALSTR","features":[539]},{"name":"NATIVE_TYPE_CURRENCY","features":[539]},{"name":"NATIVE_TYPE_CUSTOMMARSHALER","features":[539]},{"name":"NATIVE_TYPE_DATE","features":[539]},{"name":"NATIVE_TYPE_DECIMAL","features":[539]},{"name":"NATIVE_TYPE_END","features":[539]},{"name":"NATIVE_TYPE_ERROR","features":[539]},{"name":"NATIVE_TYPE_FIXEDARRAY","features":[539]},{"name":"NATIVE_TYPE_FIXEDSYSSTRING","features":[539]},{"name":"NATIVE_TYPE_FUNC","features":[539]},{"name":"NATIVE_TYPE_HSTRING","features":[539]},{"name":"NATIVE_TYPE_I1","features":[539]},{"name":"NATIVE_TYPE_I2","features":[539]},{"name":"NATIVE_TYPE_I4","features":[539]},{"name":"NATIVE_TYPE_I8","features":[539]},{"name":"NATIVE_TYPE_IDISPATCH","features":[539]},{"name":"NATIVE_TYPE_IINSPECTABLE","features":[539]},{"name":"NATIVE_TYPE_INT","features":[539]},{"name":"NATIVE_TYPE_INTF","features":[539]},{"name":"NATIVE_TYPE_IUNKNOWN","features":[539]},{"name":"NATIVE_TYPE_LPSTR","features":[539]},{"name":"NATIVE_TYPE_LPSTRUCT","features":[539]},{"name":"NATIVE_TYPE_LPTSTR","features":[539]},{"name":"NATIVE_TYPE_LPUTF8STR","features":[539]},{"name":"NATIVE_TYPE_LPWSTR","features":[539]},{"name":"NATIVE_TYPE_MAX","features":[539]},{"name":"NATIVE_TYPE_NESTEDSTRUCT","features":[539]},{"name":"NATIVE_TYPE_OBJECTREF","features":[539]},{"name":"NATIVE_TYPE_PTR","features":[539]},{"name":"NATIVE_TYPE_R4","features":[539]},{"name":"NATIVE_TYPE_R8","features":[539]},{"name":"NATIVE_TYPE_SAFEARRAY","features":[539]},{"name":"NATIVE_TYPE_STRUCT","features":[539]},{"name":"NATIVE_TYPE_SYSCHAR","features":[539]},{"name":"NATIVE_TYPE_TBSTR","features":[539]},{"name":"NATIVE_TYPE_U1","features":[539]},{"name":"NATIVE_TYPE_U2","features":[539]},{"name":"NATIVE_TYPE_U4","features":[539]},{"name":"NATIVE_TYPE_U8","features":[539]},{"name":"NATIVE_TYPE_UINT","features":[539]},{"name":"NATIVE_TYPE_VARIANT","features":[539]},{"name":"NATIVE_TYPE_VARIANTBOOL","features":[539]},{"name":"NATIVE_TYPE_VOID","features":[539]},{"name":"NGenDefault","features":[539]},{"name":"NGenEager","features":[539]},{"name":"NGenHintEnum","features":[539]},{"name":"NGenLazy","features":[539]},{"name":"NGenNever","features":[539]},{"name":"NONVERSIONABLE_TYPE","features":[539]},{"name":"NONVERSIONABLE_TYPE_W","features":[539]},{"name":"NativeTypeArrayFlags","features":[539]},{"name":"NoDupCheck","features":[539]},{"name":"OSINFO","features":[539]},{"name":"RUNTIMECOMPATIBILITY_TYPE","features":[539]},{"name":"RUNTIMECOMPATIBILITY_TYPE_W","features":[539]},{"name":"ReplacesGeneralNumericDefines","features":[539]},{"name":"RoCreateNonAgilePropertySet","features":[36,539]},{"name":"RoCreatePropertySetSerializer","features":[70,539]},{"name":"RoFreeParameterizedTypeExtra","features":[539]},{"name":"RoGetMetaDataFile","features":[539]},{"name":"RoGetParameterizedTypeInstanceIID","features":[539]},{"name":"RoIsApiContractMajorVersionPresent","features":[303,539]},{"name":"RoIsApiContractPresent","features":[303,539]},{"name":"RoParameterizedTypeExtraGetTypeSignature","features":[539]},{"name":"RoParseTypeName","features":[539]},{"name":"RoResolveNamespace","features":[539]},{"name":"SERIALIZATION_TYPE_BOOLEAN","features":[539]},{"name":"SERIALIZATION_TYPE_CHAR","features":[539]},{"name":"SERIALIZATION_TYPE_ENUM","features":[539]},{"name":"SERIALIZATION_TYPE_FIELD","features":[539]},{"name":"SERIALIZATION_TYPE_I1","features":[539]},{"name":"SERIALIZATION_TYPE_I2","features":[539]},{"name":"SERIALIZATION_TYPE_I4","features":[539]},{"name":"SERIALIZATION_TYPE_I8","features":[539]},{"name":"SERIALIZATION_TYPE_PROPERTY","features":[539]},{"name":"SERIALIZATION_TYPE_R4","features":[539]},{"name":"SERIALIZATION_TYPE_R8","features":[539]},{"name":"SERIALIZATION_TYPE_STRING","features":[539]},{"name":"SERIALIZATION_TYPE_SZARRAY","features":[539]},{"name":"SERIALIZATION_TYPE_TAGGED_OBJECT","features":[539]},{"name":"SERIALIZATION_TYPE_TYPE","features":[539]},{"name":"SERIALIZATION_TYPE_U1","features":[539]},{"name":"SERIALIZATION_TYPE_U2","features":[539]},{"name":"SERIALIZATION_TYPE_U4","features":[539]},{"name":"SERIALIZATION_TYPE_U8","features":[539]},{"name":"SERIALIZATION_TYPE_UNDEFINED","features":[539]},{"name":"SIGN_MASK_FOURBYTE","features":[539]},{"name":"SIGN_MASK_ONEBYTE","features":[539]},{"name":"SIGN_MASK_TWOBYTE","features":[539]},{"name":"SUBJECT_ASSEMBLY_TYPE","features":[539]},{"name":"SUBJECT_ASSEMBLY_TYPE_W","features":[539]},{"name":"TARGET_FRAMEWORK_TYPE","features":[539]},{"name":"TARGET_FRAMEWORK_TYPE_W","features":[539]},{"name":"USER_FRAMEWORK_REGISTRY_KEY","features":[539]},{"name":"USER_FRAMEWORK_REGISTRY_KEY_W","features":[539]},{"name":"ValidatorModuleTypeEnc","features":[539]},{"name":"ValidatorModuleTypeIncr","features":[539]},{"name":"ValidatorModuleTypeInvalid","features":[539]},{"name":"ValidatorModuleTypeMax","features":[539]},{"name":"ValidatorModuleTypeMin","features":[539]},{"name":"ValidatorModuleTypeObj","features":[539]},{"name":"ValidatorModuleTypePE","features":[539]},{"name":"afContentType_Default","features":[539]},{"name":"afContentType_Mask","features":[539]},{"name":"afContentType_WindowsRuntime","features":[539]},{"name":"afDisableJITcompileOptimizer","features":[539]},{"name":"afEnableJITcompileTracking","features":[539]},{"name":"afPA_AMD64","features":[539]},{"name":"afPA_ARM","features":[539]},{"name":"afPA_FullMask","features":[539]},{"name":"afPA_IA64","features":[539]},{"name":"afPA_MSIL","features":[539]},{"name":"afPA_Mask","features":[539]},{"name":"afPA_NoPlatform","features":[539]},{"name":"afPA_None","features":[539]},{"name":"afPA_Shift","features":[539]},{"name":"afPA_Specified","features":[539]},{"name":"afPA_x86","features":[539]},{"name":"afPublicKey","features":[539]},{"name":"afRetargetable","features":[539]},{"name":"catAll","features":[539]},{"name":"catAssembly","features":[539]},{"name":"catClass","features":[539]},{"name":"catClassMembers","features":[539]},{"name":"catConstructor","features":[539]},{"name":"catDelegate","features":[539]},{"name":"catEnum","features":[539]},{"name":"catEvent","features":[539]},{"name":"catField","features":[539]},{"name":"catGenericParameter","features":[539]},{"name":"catInterface","features":[539]},{"name":"catMethod","features":[539]},{"name":"catModule","features":[539]},{"name":"catParameter","features":[539]},{"name":"catProperty","features":[539]},{"name":"catStruct","features":[539]},{"name":"cssAccurate","features":[539]},{"name":"cssDiscardTransientCAs","features":[539]},{"name":"cssQuick","features":[539]},{"name":"dclActionMask","features":[539]},{"name":"dclActionNil","features":[539]},{"name":"dclAssert","features":[539]},{"name":"dclDemand","features":[539]},{"name":"dclDeny","features":[539]},{"name":"dclInheritanceCheck","features":[539]},{"name":"dclLinktimeCheck","features":[539]},{"name":"dclMaximumValue","features":[539]},{"name":"dclNonCasDemand","features":[539]},{"name":"dclNonCasInheritance","features":[539]},{"name":"dclNonCasLinkDemand","features":[539]},{"name":"dclPermitOnly","features":[539]},{"name":"dclPrejitDenied","features":[539]},{"name":"dclPrejitGrant","features":[539]},{"name":"dclRequest","features":[539]},{"name":"dclRequestMinimum","features":[539]},{"name":"dclRequestOptional","features":[539]},{"name":"dclRequestRefuse","features":[539]},{"name":"evRTSpecialName","features":[539]},{"name":"evReservedMask","features":[539]},{"name":"evSpecialName","features":[539]},{"name":"fdAssembly","features":[539]},{"name":"fdFamANDAssem","features":[539]},{"name":"fdFamORAssem","features":[539]},{"name":"fdFamily","features":[539]},{"name":"fdFieldAccessMask","features":[539]},{"name":"fdHasDefault","features":[539]},{"name":"fdHasFieldMarshal","features":[539]},{"name":"fdHasFieldRVA","features":[539]},{"name":"fdInitOnly","features":[539]},{"name":"fdLiteral","features":[539]},{"name":"fdNotSerialized","features":[539]},{"name":"fdPinvokeImpl","features":[539]},{"name":"fdPrivate","features":[539]},{"name":"fdPrivateScope","features":[539]},{"name":"fdPublic","features":[539]},{"name":"fdRTSpecialName","features":[539]},{"name":"fdReservedMask","features":[539]},{"name":"fdSpecialName","features":[539]},{"name":"fdStatic","features":[539]},{"name":"ffContainsMetaData","features":[539]},{"name":"ffContainsNoMetaData","features":[539]},{"name":"fmExecutableImage","features":[539]},{"name":"fmFlat","features":[539]},{"name":"gpContravariant","features":[539]},{"name":"gpCovariant","features":[539]},{"name":"gpDefaultConstructorConstraint","features":[539]},{"name":"gpNoSpecialConstraint","features":[539]},{"name":"gpNonVariant","features":[539]},{"name":"gpNotNullableValueTypeConstraint","features":[539]},{"name":"gpReferenceTypeConstraint","features":[539]},{"name":"gpSpecialConstraintMask","features":[539]},{"name":"gpVarianceMask","features":[539]},{"name":"mdAbstract","features":[539]},{"name":"mdAssem","features":[539]},{"name":"mdCheckAccessOnOverride","features":[539]},{"name":"mdFamANDAssem","features":[539]},{"name":"mdFamORAssem","features":[539]},{"name":"mdFamily","features":[539]},{"name":"mdFinal","features":[539]},{"name":"mdHasSecurity","features":[539]},{"name":"mdHideBySig","features":[539]},{"name":"mdMemberAccessMask","features":[539]},{"name":"mdNewSlot","features":[539]},{"name":"mdPinvokeImpl","features":[539]},{"name":"mdPrivate","features":[539]},{"name":"mdPrivateScope","features":[539]},{"name":"mdPublic","features":[539]},{"name":"mdRTSpecialName","features":[539]},{"name":"mdRequireSecObject","features":[539]},{"name":"mdReservedMask","features":[539]},{"name":"mdReuseSlot","features":[539]},{"name":"mdSpecialName","features":[539]},{"name":"mdStatic","features":[539]},{"name":"mdUnmanagedExport","features":[539]},{"name":"mdVirtual","features":[539]},{"name":"mdVtableLayoutMask","features":[539]},{"name":"mdtAssembly","features":[539]},{"name":"mdtAssemblyRef","features":[539]},{"name":"mdtBaseType","features":[539]},{"name":"mdtCustomAttribute","features":[539]},{"name":"mdtEvent","features":[539]},{"name":"mdtExportedType","features":[539]},{"name":"mdtFieldDef","features":[539]},{"name":"mdtFile","features":[539]},{"name":"mdtGenericParam","features":[539]},{"name":"mdtGenericParamConstraint","features":[539]},{"name":"mdtInterfaceImpl","features":[539]},{"name":"mdtManifestResource","features":[539]},{"name":"mdtMemberRef","features":[539]},{"name":"mdtMethodDef","features":[539]},{"name":"mdtMethodImpl","features":[539]},{"name":"mdtMethodSpec","features":[539]},{"name":"mdtModule","features":[539]},{"name":"mdtModuleRef","features":[539]},{"name":"mdtName","features":[539]},{"name":"mdtParamDef","features":[539]},{"name":"mdtPermission","features":[539]},{"name":"mdtProperty","features":[539]},{"name":"mdtSignature","features":[539]},{"name":"mdtString","features":[539]},{"name":"mdtTypeDef","features":[539]},{"name":"mdtTypeRef","features":[539]},{"name":"mdtTypeSpec","features":[539]},{"name":"miAggressiveInlining","features":[539]},{"name":"miCodeTypeMask","features":[539]},{"name":"miForwardRef","features":[539]},{"name":"miIL","features":[539]},{"name":"miInternalCall","features":[539]},{"name":"miManaged","features":[539]},{"name":"miManagedMask","features":[539]},{"name":"miMaxMethodImplVal","features":[539]},{"name":"miNative","features":[539]},{"name":"miNoInlining","features":[539]},{"name":"miNoOptimization","features":[539]},{"name":"miOPTIL","features":[539]},{"name":"miPreserveSig","features":[539]},{"name":"miRuntime","features":[539]},{"name":"miSecurityMitigations","features":[539]},{"name":"miSynchronized","features":[539]},{"name":"miUnmanaged","features":[539]},{"name":"miUserMask","features":[539]},{"name":"mrPrivate","features":[539]},{"name":"mrPublic","features":[539]},{"name":"mrVisibilityMask","features":[539]},{"name":"msAddOn","features":[539]},{"name":"msFire","features":[539]},{"name":"msGetter","features":[539]},{"name":"msOther","features":[539]},{"name":"msRemoveOn","features":[539]},{"name":"msSetter","features":[539]},{"name":"nlfLastError","features":[539]},{"name":"nlfMaxValue","features":[539]},{"name":"nlfNoMangle","features":[539]},{"name":"nlfNone","features":[539]},{"name":"nltAnsi","features":[539]},{"name":"nltAuto","features":[539]},{"name":"nltMaxValue","features":[539]},{"name":"nltNone","features":[539]},{"name":"nltOle","features":[539]},{"name":"nltUnicode","features":[539]},{"name":"ntaReserved","features":[539]},{"name":"ntaSizeParamIndexSpecified","features":[539]},{"name":"ofCheckIntegrity","features":[539]},{"name":"ofCopyMemory","features":[539]},{"name":"ofNoTransform","features":[539]},{"name":"ofNoTypeLib","features":[539]},{"name":"ofRead","features":[539]},{"name":"ofReadOnly","features":[539]},{"name":"ofReadWriteMask","features":[539]},{"name":"ofReserved","features":[539]},{"name":"ofReserved1","features":[539]},{"name":"ofReserved2","features":[539]},{"name":"ofReserved3","features":[539]},{"name":"ofTakeOwnership","features":[539]},{"name":"ofWrite","features":[539]},{"name":"pdHasDefault","features":[539]},{"name":"pdHasFieldMarshal","features":[539]},{"name":"pdIn","features":[539]},{"name":"pdOptional","features":[539]},{"name":"pdOut","features":[539]},{"name":"pdReservedMask","features":[539]},{"name":"pdUnused","features":[539]},{"name":"pe32BitPreferred","features":[539]},{"name":"pe32BitRequired","features":[539]},{"name":"pe32Plus","features":[539]},{"name":"pe32Unmanaged","features":[539]},{"name":"peILonly","features":[539]},{"name":"peNot","features":[539]},{"name":"pmBestFitDisabled","features":[539]},{"name":"pmBestFitEnabled","features":[539]},{"name":"pmBestFitMask","features":[539]},{"name":"pmBestFitUseAssem","features":[539]},{"name":"pmCallConvCdecl","features":[539]},{"name":"pmCallConvFastcall","features":[539]},{"name":"pmCallConvMask","features":[539]},{"name":"pmCallConvStdcall","features":[539]},{"name":"pmCallConvThiscall","features":[539]},{"name":"pmCallConvWinapi","features":[539]},{"name":"pmCharSetAnsi","features":[539]},{"name":"pmCharSetAuto","features":[539]},{"name":"pmCharSetMask","features":[539]},{"name":"pmCharSetNotSpec","features":[539]},{"name":"pmCharSetUnicode","features":[539]},{"name":"pmMaxValue","features":[539]},{"name":"pmNoMangle","features":[539]},{"name":"pmSupportsLastError","features":[539]},{"name":"pmThrowOnUnmappableCharDisabled","features":[539]},{"name":"pmThrowOnUnmappableCharEnabled","features":[539]},{"name":"pmThrowOnUnmappableCharMask","features":[539]},{"name":"pmThrowOnUnmappableCharUseAssem","features":[539]},{"name":"prHasDefault","features":[539]},{"name":"prRTSpecialName","features":[539]},{"name":"prReservedMask","features":[539]},{"name":"prSpecialName","features":[539]},{"name":"prUnused","features":[539]},{"name":"regConfig","features":[539]},{"name":"regHasRefs","features":[539]},{"name":"regNoCopy","features":[539]},{"name":"sdExecute","features":[539]},{"name":"sdNone","features":[539]},{"name":"sdReadOnly","features":[539]},{"name":"sdReadWrite","features":[539]},{"name":"srNoBaseReloc","features":[539]},{"name":"srRelocAbsolute","features":[539]},{"name":"srRelocAbsolutePtr","features":[539]},{"name":"srRelocAbsoluteTagged","features":[539]},{"name":"srRelocCodeRelative","features":[539]},{"name":"srRelocDir64","features":[539]},{"name":"srRelocDir64Ptr","features":[539]},{"name":"srRelocFilePos","features":[539]},{"name":"srRelocHighAdj","features":[539]},{"name":"srRelocHighLow","features":[539]},{"name":"srRelocHighLowPtr","features":[539]},{"name":"srRelocIA64Imm64","features":[539]},{"name":"srRelocIA64Imm64Ptr","features":[539]},{"name":"srRelocIA64PcRel25","features":[539]},{"name":"srRelocIA64PcRel64","features":[539]},{"name":"srRelocMapToken","features":[539]},{"name":"srRelocPtr","features":[539]},{"name":"srRelocRelative","features":[539]},{"name":"srRelocRelativePtr","features":[539]},{"name":"srRelocSentinel","features":[539]},{"name":"tdAbstract","features":[539]},{"name":"tdAnsiClass","features":[539]},{"name":"tdAutoClass","features":[539]},{"name":"tdAutoLayout","features":[539]},{"name":"tdBeforeFieldInit","features":[539]},{"name":"tdClass","features":[539]},{"name":"tdClassSemanticsMask","features":[539]},{"name":"tdCustomFormatClass","features":[539]},{"name":"tdCustomFormatMask","features":[539]},{"name":"tdExplicitLayout","features":[539]},{"name":"tdForwarder","features":[539]},{"name":"tdHasSecurity","features":[539]},{"name":"tdImport","features":[539]},{"name":"tdInterface","features":[539]},{"name":"tdLayoutMask","features":[539]},{"name":"tdNestedAssembly","features":[539]},{"name":"tdNestedFamANDAssem","features":[539]},{"name":"tdNestedFamORAssem","features":[539]},{"name":"tdNestedFamily","features":[539]},{"name":"tdNestedPrivate","features":[539]},{"name":"tdNestedPublic","features":[539]},{"name":"tdNotPublic","features":[539]},{"name":"tdPublic","features":[539]},{"name":"tdRTSpecialName","features":[539]},{"name":"tdReservedMask","features":[539]},{"name":"tdSealed","features":[539]},{"name":"tdSequentialLayout","features":[539]},{"name":"tdSerializable","features":[539]},{"name":"tdSpecialName","features":[539]},{"name":"tdStringFormatMask","features":[539]},{"name":"tdUnicodeClass","features":[539]},{"name":"tdVisibilityMask","features":[539]},{"name":"tdWindowsRuntime","features":[539]}],"639":[{"name":"IPdfRendererNative","features":[609]},{"name":"PDF_RENDER_PARAMS","features":[303,394,609]},{"name":"PFN_PDF_CREATE_RENDERER","features":[395,609]},{"name":"PdfCreateRenderer","features":[395,609]}],"640":[{"name":"IPrintManagerInterop","features":[610]},{"name":"IPrintWorkflowConfigurationNative","features":[610]},{"name":"IPrintWorkflowObjectModelSourceFileContentNative","features":[610]},{"name":"IPrintWorkflowXpsObjectModelTargetPackageNative","features":[610]},{"name":"IPrintWorkflowXpsReceiver","features":[610]},{"name":"IPrintWorkflowXpsReceiver2","features":[610]},{"name":"IPrinting3DManagerInterop","features":[610]}],"641":[{"name":"CpAicLaunchAdminProcess","features":[611]},{"name":"CpCreateProcess","features":[611]},{"name":"CpCreateProcessAsUser","features":[611]},{"name":"CreateProcessMethod","features":[611]},{"name":"IDDEInitializer","features":[611]}],"642":[{"name":"HANDLE_ACCESS_OPTIONS","features":[612]},{"name":"HANDLE_CREATION_OPTIONS","features":[612]},{"name":"HANDLE_OPTIONS","features":[612]},{"name":"HANDLE_SHARING_OPTIONS","features":[612]},{"name":"HAO_DELETE","features":[612]},{"name":"HAO_NONE","features":[612]},{"name":"HAO_READ","features":[612]},{"name":"HAO_READ_ATTRIBUTES","features":[612]},{"name":"HAO_WRITE","features":[612]},{"name":"HCO_CREATE_ALWAYS","features":[612]},{"name":"HCO_CREATE_NEW","features":[612]},{"name":"HCO_OPEN_ALWAYS","features":[612]},{"name":"HCO_OPEN_EXISTING","features":[612]},{"name":"HCO_TRUNCATE_EXISTING","features":[612]},{"name":"HO_DELETE_ON_CLOSE","features":[612]},{"name":"HO_NONE","features":[612]},{"name":"HO_NO_BUFFERING","features":[612]},{"name":"HO_OPEN_REQUIRING_OPLOCK","features":[612]},{"name":"HO_OVERLAPPED","features":[612]},{"name":"HO_RANDOM_ACCESS","features":[612]},{"name":"HO_SEQUENTIAL_SCAN","features":[612]},{"name":"HO_WRITE_THROUGH","features":[612]},{"name":"HSO_SHARE_DELETE","features":[612]},{"name":"HSO_SHARE_NONE","features":[612]},{"name":"HSO_SHARE_READ","features":[612]},{"name":"HSO_SHARE_WRITE","features":[612]},{"name":"IOplockBreakingHandler","features":[612]},{"name":"IRandomAccessStreamFileAccessMode","features":[612]},{"name":"IStorageFolderHandleAccess","features":[612]},{"name":"IStorageItemHandleAccess","features":[612]},{"name":"IUnbufferedFileHandleOplockCallback","features":[612]},{"name":"IUnbufferedFileHandleProvider","features":[612]}],"644":[{"name":"AADBE_ADD_ENTRY","features":[335]},{"name":"AADBE_DEL_ENTRY","features":[335]},{"name":"ACTCTX_FLAG_APPLICATION_NAME_VALID","features":[335]},{"name":"ACTCTX_FLAG_ASSEMBLY_DIRECTORY_VALID","features":[335]},{"name":"ACTCTX_FLAG_HMODULE_VALID","features":[335]},{"name":"ACTCTX_FLAG_LANGID_VALID","features":[335]},{"name":"ACTCTX_FLAG_PROCESSOR_ARCHITECTURE_VALID","features":[335]},{"name":"ACTCTX_FLAG_RESOURCE_NAME_VALID","features":[335]},{"name":"ACTCTX_FLAG_SET_PROCESS_DEFAULT","features":[335]},{"name":"ACTCTX_FLAG_SOURCE_IS_ASSEMBLYREF","features":[335]},{"name":"ACTCTX_SECTION_KEYED_DATA_2600","features":[303,335]},{"name":"ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA","features":[335]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION","features":[303,335]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION_DEFINED","features":[335]},{"name":"AC_LINE_BACKUP_POWER","features":[335]},{"name":"AC_LINE_OFFLINE","features":[335]},{"name":"AC_LINE_ONLINE","features":[335]},{"name":"AC_LINE_UNKNOWN","features":[335]},{"name":"ADN_DEL_IF_EMPTY","features":[335]},{"name":"ADN_DEL_UNC_PATHS","features":[335]},{"name":"ADN_DONT_DEL_DIR","features":[335]},{"name":"ADN_DONT_DEL_SUBDIRS","features":[335]},{"name":"AFSR_BACKNEW","features":[335]},{"name":"AFSR_EXTRAINCREFCNT","features":[335]},{"name":"AFSR_NODELETENEW","features":[335]},{"name":"AFSR_NOMESSAGES","features":[335]},{"name":"AFSR_NOPROGRESS","features":[335]},{"name":"AFSR_RESTORE","features":[335]},{"name":"AFSR_UPDREFCNT","features":[335]},{"name":"AFSR_USEREFCNT","features":[335]},{"name":"AIF_FORCE_FILE_IN_USE","features":[335]},{"name":"AIF_NOLANGUAGECHECK","features":[335]},{"name":"AIF_NOOVERWRITE","features":[335]},{"name":"AIF_NOSKIP","features":[335]},{"name":"AIF_NOVERSIONCHECK","features":[335]},{"name":"AIF_NO_VERSION_DIALOG","features":[335]},{"name":"AIF_QUIET","features":[335]},{"name":"AIF_REPLACEONLY","features":[335]},{"name":"AIF_WARNIFSKIP","features":[335]},{"name":"ALINF_BKINSTALL","features":[335]},{"name":"ALINF_CHECKBKDATA","features":[335]},{"name":"ALINF_DELAYREGISTEROCX","features":[335]},{"name":"ALINF_NGCONV","features":[335]},{"name":"ALINF_QUIET","features":[335]},{"name":"ALINF_ROLLBACK","features":[335]},{"name":"ALINF_ROLLBKDOALL","features":[335]},{"name":"ALINF_UPDHLPDLLS","features":[335]},{"name":"APPLICATION_RECOVERY_CALLBACK","features":[335]},{"name":"ARSR_NOMESSAGES","features":[335]},{"name":"ARSR_REGSECTION","features":[335]},{"name":"ARSR_REMOVREGBKDATA","features":[335]},{"name":"ARSR_RESTORE","features":[335]},{"name":"ATOM_FLAG_GLOBAL","features":[335]},{"name":"AT_ARP","features":[335]},{"name":"AT_ENTITY","features":[335]},{"name":"AT_NULL","features":[335]},{"name":"AddDelBackupEntryA","features":[335]},{"name":"AddDelBackupEntryW","features":[335]},{"name":"AdvInstallFileA","features":[303,335]},{"name":"AdvInstallFileW","features":[303,335]},{"name":"ApphelpCheckShellObject","features":[303,335]},{"name":"BACKUP_GHOSTED_FILE_EXTENTS","features":[335]},{"name":"BACKUP_INVALID","features":[335]},{"name":"BASE_SEARCH_PATH_DISABLE_SAFE_SEARCHMODE","features":[335]},{"name":"BASE_SEARCH_PATH_ENABLE_SAFE_SEARCHMODE","features":[335]},{"name":"BASE_SEARCH_PATH_PERMANENT","features":[335]},{"name":"BATTERY_FLAG_CHARGING","features":[335]},{"name":"BATTERY_FLAG_CRITICAL","features":[335]},{"name":"BATTERY_FLAG_HIGH","features":[335]},{"name":"BATTERY_FLAG_LOW","features":[335]},{"name":"BATTERY_FLAG_NO_BATTERY","features":[335]},{"name":"BATTERY_FLAG_UNKNOWN","features":[335]},{"name":"BATTERY_LIFE_UNKNOWN","features":[335]},{"name":"BATTERY_PERCENTAGE_UNKNOWN","features":[335]},{"name":"BAUD_075","features":[335]},{"name":"BAUD_110","features":[335]},{"name":"BAUD_115200","features":[335]},{"name":"BAUD_1200","features":[335]},{"name":"BAUD_128K","features":[335]},{"name":"BAUD_134_5","features":[335]},{"name":"BAUD_14400","features":[335]},{"name":"BAUD_150","features":[335]},{"name":"BAUD_1800","features":[335]},{"name":"BAUD_19200","features":[335]},{"name":"BAUD_2400","features":[335]},{"name":"BAUD_300","features":[335]},{"name":"BAUD_38400","features":[335]},{"name":"BAUD_4800","features":[335]},{"name":"BAUD_56K","features":[335]},{"name":"BAUD_57600","features":[335]},{"name":"BAUD_600","features":[335]},{"name":"BAUD_7200","features":[335]},{"name":"BAUD_9600","features":[335]},{"name":"BAUD_USER","features":[335]},{"name":"CABINFOA","features":[335]},{"name":"CABINFOW","features":[335]},{"name":"CATID_DeleteBrowsingHistory","features":[335]},{"name":"CBR_110","features":[335]},{"name":"CBR_115200","features":[335]},{"name":"CBR_1200","features":[335]},{"name":"CBR_128000","features":[335]},{"name":"CBR_14400","features":[335]},{"name":"CBR_19200","features":[335]},{"name":"CBR_2400","features":[335]},{"name":"CBR_256000","features":[335]},{"name":"CBR_300","features":[335]},{"name":"CBR_38400","features":[335]},{"name":"CBR_4800","features":[335]},{"name":"CBR_56000","features":[335]},{"name":"CBR_57600","features":[335]},{"name":"CBR_600","features":[335]},{"name":"CBR_9600","features":[335]},{"name":"CE_DNS","features":[335]},{"name":"CE_IOE","features":[335]},{"name":"CE_MODE","features":[335]},{"name":"CE_OOP","features":[335]},{"name":"CE_PTO","features":[335]},{"name":"CE_TXFULL","features":[335]},{"name":"CLIENT_ID","features":[303,335]},{"name":"CL_NL_ENTITY","features":[335]},{"name":"CL_NL_IP","features":[335]},{"name":"CL_NL_IPX","features":[335]},{"name":"CL_TL_ENTITY","features":[335]},{"name":"CL_TL_NBF","features":[335]},{"name":"CL_TL_UDP","features":[335]},{"name":"CODEINTEGRITY_OPTION_DEBUGMODE_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_FLIGHTING_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_FLIGHT_BUILD","features":[335]},{"name":"CODEINTEGRITY_OPTION_HVCI_IUM_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_AUDITMODE_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_STRICTMODE_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_PREPRODUCTION_BUILD","features":[335]},{"name":"CODEINTEGRITY_OPTION_TESTSIGN","features":[335]},{"name":"CODEINTEGRITY_OPTION_TEST_BUILD","features":[335]},{"name":"CODEINTEGRITY_OPTION_UMCI_AUDITMODE_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_UMCI_ENABLED","features":[335]},{"name":"CODEINTEGRITY_OPTION_UMCI_EXCLUSIONPATHS_ENABLED","features":[335]},{"name":"COMMPROP_INITIALIZED","features":[335]},{"name":"CONTEXT_SIZE","features":[335]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MAX","features":[335]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MIN","features":[335]},{"name":"COPYFILE2_IO_RATE_MIN","features":[335]},{"name":"COPYFILE2_MESSAGE_COPY_OFFLOAD","features":[335]},{"name":"COPY_FILE2_V2_DONT_COPY_JUNCTIONS","features":[335]},{"name":"COPY_FILE2_V2_VALID_FLAGS","features":[335]},{"name":"COPY_FILE_ALLOW_DECRYPTED_DESTINATION","features":[335]},{"name":"COPY_FILE_COPY_SYMLINK","features":[335]},{"name":"COPY_FILE_DIRECTORY","features":[335]},{"name":"COPY_FILE_DISABLE_PRE_ALLOCATION","features":[335]},{"name":"COPY_FILE_DONT_REQUEST_DEST_WRITE_DAC","features":[335]},{"name":"COPY_FILE_ENABLE_LOW_FREE_SPACE_MODE","features":[335]},{"name":"COPY_FILE_ENABLE_SPARSE_COPY","features":[335]},{"name":"COPY_FILE_FAIL_IF_EXISTS","features":[335]},{"name":"COPY_FILE_IGNORE_EDP_BLOCK","features":[335]},{"name":"COPY_FILE_IGNORE_SOURCE_ENCRYPTION","features":[335]},{"name":"COPY_FILE_NO_BUFFERING","features":[335]},{"name":"COPY_FILE_NO_OFFLOAD","features":[335]},{"name":"COPY_FILE_OPEN_AND_COPY_REPARSE_POINT","features":[335]},{"name":"COPY_FILE_OPEN_SOURCE_FOR_WRITE","features":[335]},{"name":"COPY_FILE_REQUEST_COMPRESSED_TRAFFIC","features":[335]},{"name":"COPY_FILE_REQUEST_SECURITY_PRIVILEGES","features":[335]},{"name":"COPY_FILE_RESTARTABLE","features":[335]},{"name":"COPY_FILE_RESUME_FROM_PAUSE","features":[335]},{"name":"COPY_FILE_SKIP_ALTERNATE_STREAMS","features":[335]},{"name":"CO_NL_ENTITY","features":[335]},{"name":"CO_TL_ENTITY","features":[335]},{"name":"CO_TL_NBF","features":[335]},{"name":"CO_TL_SPP","features":[335]},{"name":"CO_TL_SPX","features":[335]},{"name":"CO_TL_TCP","features":[335]},{"name":"CP_DIRECT","features":[335]},{"name":"CP_HWND","features":[335]},{"name":"CP_LEVEL","features":[335]},{"name":"CP_OPEN","features":[335]},{"name":"CREATE_FOR_DIR","features":[335]},{"name":"CREATE_FOR_IMPORT","features":[335]},{"name":"CRITICAL_SECTION_NO_DEBUG_INFO","features":[335]},{"name":"CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG","features":[335]},{"name":"CameraUIControl","features":[335]},{"name":"CameraUIControlCaptureMode","features":[335]},{"name":"CameraUIControlLinearSelectionMode","features":[335]},{"name":"CameraUIControlMode","features":[335]},{"name":"CameraUIControlPhotoFormat","features":[335]},{"name":"CameraUIControlVideoFormat","features":[335]},{"name":"CameraUIControlViewType","features":[335]},{"name":"CancelDeviceWakeupRequest","features":[303,335]},{"name":"CloseINFEngine","features":[335]},{"name":"ConvertAuxiliaryCounterToPerformanceCounter","features":[335]},{"name":"ConvertPerformanceCounterToAuxiliaryCounter","features":[335]},{"name":"DATETIME","features":[335]},{"name":"DCIBeginAccess","features":[335]},{"name":"DCICMD","features":[335]},{"name":"DCICREATEINPUT","features":[335]},{"name":"DCICREATEOFFSCREENSURFACE","features":[335]},{"name":"DCICREATEOVERLAYSURFACE","features":[335]},{"name":"DCICREATEPRIMARYSURFACE","features":[335]},{"name":"DCICloseProvider","features":[314,335]},{"name":"DCICreateOffscreen","features":[314,335]},{"name":"DCICreateOverlay","features":[314,335]},{"name":"DCICreatePrimary","features":[314,335]},{"name":"DCIDestroy","features":[335]},{"name":"DCIDraw","features":[335]},{"name":"DCIENUMINPUT","features":[303,335]},{"name":"DCIENUMSURFACE","features":[335]},{"name":"DCIESCAPE","features":[335]},{"name":"DCIEndAccess","features":[335]},{"name":"DCIEnum","features":[303,314,335]},{"name":"DCIOFFSCREEN","features":[335]},{"name":"DCIOVERLAY","features":[335]},{"name":"DCIOpenProvider","features":[314,335]},{"name":"DCISURFACEINFO","features":[335]},{"name":"DCISetClipList","features":[303,314,335]},{"name":"DCISetDestination","features":[303,335]},{"name":"DCISetSrcDestClip","features":[303,314,335]},{"name":"DCI_1632_ACCESS","features":[335]},{"name":"DCI_ASYNC","features":[335]},{"name":"DCI_CANOVERLAY","features":[335]},{"name":"DCI_CAN_STRETCHX","features":[335]},{"name":"DCI_CAN_STRETCHXN","features":[335]},{"name":"DCI_CAN_STRETCHY","features":[335]},{"name":"DCI_CAN_STRETCHYN","features":[335]},{"name":"DCI_CHROMAKEY","features":[335]},{"name":"DCI_DWORDALIGN","features":[335]},{"name":"DCI_DWORDSIZE","features":[335]},{"name":"DCI_ERR_CURRENTLYNOTAVAIL","features":[335]},{"name":"DCI_ERR_HEIGHTALIGN","features":[335]},{"name":"DCI_ERR_INVALIDCLIPLIST","features":[335]},{"name":"DCI_ERR_INVALIDPOSITION","features":[335]},{"name":"DCI_ERR_INVALIDRECT","features":[335]},{"name":"DCI_ERR_INVALIDSTRETCH","features":[335]},{"name":"DCI_ERR_OUTOFMEMORY","features":[335]},{"name":"DCI_ERR_SURFACEISOBSCURED","features":[335]},{"name":"DCI_ERR_TOOBIGHEIGHT","features":[335]},{"name":"DCI_ERR_TOOBIGSIZE","features":[335]},{"name":"DCI_ERR_TOOBIGWIDTH","features":[335]},{"name":"DCI_ERR_UNSUPPORTEDFORMAT","features":[335]},{"name":"DCI_ERR_UNSUPPORTEDMASK","features":[335]},{"name":"DCI_ERR_WIDTHALIGN","features":[335]},{"name":"DCI_ERR_XALIGN","features":[335]},{"name":"DCI_ERR_XYALIGN","features":[335]},{"name":"DCI_ERR_YALIGN","features":[335]},{"name":"DCI_FAIL_GENERIC","features":[335]},{"name":"DCI_FAIL_INVALIDSURFACE","features":[335]},{"name":"DCI_FAIL_UNSUPPORTED","features":[335]},{"name":"DCI_FAIL_UNSUPPORTEDVERSION","features":[335]},{"name":"DCI_OFFSCREEN","features":[335]},{"name":"DCI_OK","features":[335]},{"name":"DCI_OVERLAY","features":[335]},{"name":"DCI_PRIMARY","features":[335]},{"name":"DCI_STATUS_CHROMAKEYCHANGED","features":[335]},{"name":"DCI_STATUS_FORMATCHANGED","features":[335]},{"name":"DCI_STATUS_POINTERCHANGED","features":[335]},{"name":"DCI_STATUS_STRIDECHANGED","features":[335]},{"name":"DCI_STATUS_SURFACEINFOCHANGED","features":[335]},{"name":"DCI_STATUS_WASSTILLDRAWING","features":[335]},{"name":"DCI_SURFACE_TYPE","features":[335]},{"name":"DCI_VERSION","features":[335]},{"name":"DCI_VISIBLE","features":[335]},{"name":"DCI_WRITEONLY","features":[335]},{"name":"DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION","features":[335]},{"name":"DECISION_LOCATION","features":[335]},{"name":"DECISION_LOCATION_AUDIT","features":[335]},{"name":"DECISION_LOCATION_ENFORCE_STATE_LIST","features":[335]},{"name":"DECISION_LOCATION_ENTERPRISE_DEFINED_CLASS_ID","features":[335]},{"name":"DECISION_LOCATION_FAILED_CONVERT_GUID","features":[335]},{"name":"DECISION_LOCATION_GLOBAL_BUILT_IN_LIST","features":[335]},{"name":"DECISION_LOCATION_NOT_FOUND","features":[335]},{"name":"DECISION_LOCATION_PARAMETER_VALIDATION","features":[335]},{"name":"DECISION_LOCATION_PROVIDER_BUILT_IN_LIST","features":[335]},{"name":"DECISION_LOCATION_REFRESH_GLOBAL_DATA","features":[335]},{"name":"DECISION_LOCATION_UNKNOWN","features":[335]},{"name":"DELAYLOAD_GPA_FAILURE","features":[335]},{"name":"DELAYLOAD_INFO","features":[335]},{"name":"DELAYLOAD_INFO","features":[335]},{"name":"DELAYLOAD_PROC_DESCRIPTOR","features":[335]},{"name":"DELETE_BROWSING_HISTORY_COOKIES","features":[335]},{"name":"DELETE_BROWSING_HISTORY_DOWNLOADHISTORY","features":[335]},{"name":"DELETE_BROWSING_HISTORY_FORMDATA","features":[335]},{"name":"DELETE_BROWSING_HISTORY_HISTORY","features":[335]},{"name":"DELETE_BROWSING_HISTORY_PASSWORDS","features":[335]},{"name":"DELETE_BROWSING_HISTORY_PRESERVEFAVORITES","features":[335]},{"name":"DELETE_BROWSING_HISTORY_TIF","features":[335]},{"name":"DOCKINFO_DOCKED","features":[335]},{"name":"DOCKINFO_UNDOCKED","features":[335]},{"name":"DOCKINFO_USER_SUPPLIED","features":[335]},{"name":"DRIVE_CDROM","features":[335]},{"name":"DRIVE_FIXED","features":[335]},{"name":"DRIVE_NO_ROOT_DIR","features":[335]},{"name":"DRIVE_RAMDISK","features":[335]},{"name":"DRIVE_REMOTE","features":[335]},{"name":"DRIVE_REMOVABLE","features":[335]},{"name":"DRIVE_UNKNOWN","features":[335]},{"name":"DTR_CONTROL_DISABLE","features":[335]},{"name":"DTR_CONTROL_ENABLE","features":[335]},{"name":"DTR_CONTROL_HANDSHAKE","features":[335]},{"name":"DefaultBrowserSyncSettings","features":[335]},{"name":"DelNodeA","features":[335]},{"name":"DelNodeRunDLL32W","features":[303,335]},{"name":"DelNodeW","features":[335]},{"name":"DnsHostnameToComputerNameA","features":[303,335]},{"name":"DnsHostnameToComputerNameW","features":[303,335]},{"name":"DosDateTimeToFileTime","features":[303,335]},{"name":"EFSRPC_SECURE_ONLY","features":[335]},{"name":"EFS_DROP_ALTERNATE_STREAMS","features":[335]},{"name":"EFS_USE_RECOVERY_KEYS","features":[335]},{"name":"ENTITY_LIST_ID","features":[335]},{"name":"ENTITY_TYPE_ID","features":[335]},{"name":"ENUM_CALLBACK","features":[335]},{"name":"ER_ENTITY","features":[335]},{"name":"ER_ICMP","features":[335]},{"name":"EVENTLOG_FULL_INFO","features":[335]},{"name":"EditionUpgradeBroker","features":[335]},{"name":"EditionUpgradeHelper","features":[335]},{"name":"EnableProcessOptionalXStateFeatures","features":[303,335]},{"name":"EndpointIoControlType","features":[335]},{"name":"ExecuteCabA","features":[303,335]},{"name":"ExecuteCabW","features":[303,335]},{"name":"ExtractFilesA","features":[335]},{"name":"ExtractFilesW","features":[335]},{"name":"FAIL_FAST_GENERATE_EXCEPTION_ADDRESS","features":[335]},{"name":"FAIL_FAST_NO_HARD_ERROR_DLG","features":[335]},{"name":"FEATURE_CHANGE_TIME","features":[335]},{"name":"FEATURE_CHANGE_TIME_MODULE_RELOAD","features":[335]},{"name":"FEATURE_CHANGE_TIME_READ","features":[335]},{"name":"FEATURE_CHANGE_TIME_REBOOT","features":[335]},{"name":"FEATURE_CHANGE_TIME_SESSION","features":[335]},{"name":"FEATURE_ENABLED_STATE","features":[335]},{"name":"FEATURE_ENABLED_STATE_DEFAULT","features":[335]},{"name":"FEATURE_ENABLED_STATE_DISABLED","features":[335]},{"name":"FEATURE_ENABLED_STATE_ENABLED","features":[335]},{"name":"FEATURE_ERROR","features":[335]},{"name":"FEATURE_STATE_CHANGE_SUBSCRIPTION","features":[335]},{"name":"FH_SERVICE_PIPE_HANDLE","features":[335]},{"name":"FIBER_FLAG_FLOAT_SWITCH","features":[335]},{"name":"FILE_CASE_SENSITIVE_INFO","features":[335]},{"name":"FILE_CREATED","features":[335]},{"name":"FILE_DIR_DISALLOWED","features":[335]},{"name":"FILE_DOES_NOT_EXIST","features":[335]},{"name":"FILE_ENCRYPTABLE","features":[335]},{"name":"FILE_EXISTS","features":[335]},{"name":"FILE_FLAG_IGNORE_IMPERSONATED_DEVICEMAP","features":[335]},{"name":"FILE_FLAG_OPEN_REQUIRING_OPLOCK","features":[335]},{"name":"FILE_IS_ENCRYPTED","features":[335]},{"name":"FILE_MAXIMUM_DISPOSITION","features":[335]},{"name":"FILE_NO_COMPRESSION","features":[335]},{"name":"FILE_OPENED","features":[335]},{"name":"FILE_OPEN_NO_RECALL","features":[335]},{"name":"FILE_OPEN_REMOTE_INSTANCE","features":[335]},{"name":"FILE_OVERWRITTEN","features":[335]},{"name":"FILE_READ_ONLY","features":[335]},{"name":"FILE_RENAME_FLAG_POSIX_SEMANTICS","features":[335]},{"name":"FILE_RENAME_FLAG_REPLACE_IF_EXISTS","features":[335]},{"name":"FILE_RENAME_FLAG_SUPPRESS_PIN_STATE_INHERITANCE","features":[335]},{"name":"FILE_ROOT_DIR","features":[335]},{"name":"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS","features":[335]},{"name":"FILE_SKIP_SET_EVENT_ON_HANDLE","features":[335]},{"name":"FILE_SUPERSEDED","features":[335]},{"name":"FILE_SYSTEM_ATTR","features":[335]},{"name":"FILE_SYSTEM_DIR","features":[335]},{"name":"FILE_SYSTEM_NOT_SUPPORT","features":[335]},{"name":"FILE_UNKNOWN","features":[335]},{"name":"FILE_USER_DISALLOWED","features":[335]},{"name":"FILE_VALID_MAILSLOT_OPTION_FLAGS","features":[335]},{"name":"FILE_VALID_OPTION_FLAGS","features":[335]},{"name":"FILE_VALID_PIPE_OPTION_FLAGS","features":[335]},{"name":"FILE_VALID_SET_FLAGS","features":[335]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_ASSEMBLY_METADATA","features":[335]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_FLAGS","features":[335]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX","features":[335]},{"name":"FORMAT_MESSAGE_MAX_WIDTH_MASK","features":[335]},{"name":"FS_CASE_IS_PRESERVED","features":[335]},{"name":"FS_CASE_SENSITIVE","features":[335]},{"name":"FS_FILE_COMPRESSION","features":[335]},{"name":"FS_FILE_ENCRYPTION","features":[335]},{"name":"FS_PERSISTENT_ACLS","features":[335]},{"name":"FS_UNICODE_STORED_ON_DISK","features":[335]},{"name":"FS_VOL_IS_COMPRESSED","features":[335]},{"name":"FileSaveMarkNotExistA","features":[335]},{"name":"FileSaveMarkNotExistW","features":[335]},{"name":"FileSaveRestoreOnINFA","features":[303,335]},{"name":"FileSaveRestoreOnINFW","features":[303,335]},{"name":"FileSaveRestoreW","features":[303,335]},{"name":"FileTimeToDosDateTime","features":[303,335]},{"name":"GENERIC_ENTITY","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_A","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_T","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_W","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_A","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_T","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_W","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_A","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_T","features":[335]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_W","features":[335]},{"name":"GMEM_DDESHARE","features":[335]},{"name":"GMEM_DISCARDABLE","features":[335]},{"name":"GMEM_DISCARDED","features":[335]},{"name":"GMEM_INVALID_HANDLE","features":[335]},{"name":"GMEM_LOCKCOUNT","features":[335]},{"name":"GMEM_LOWER","features":[335]},{"name":"GMEM_MODIFY","features":[335]},{"name":"GMEM_NOCOMPACT","features":[335]},{"name":"GMEM_NODISCARD","features":[335]},{"name":"GMEM_NOTIFY","features":[335]},{"name":"GMEM_NOT_BANKED","features":[335]},{"name":"GMEM_SHARE","features":[335]},{"name":"GMEM_VALID_FLAGS","features":[335]},{"name":"GdiEntry13","features":[335]},{"name":"GetComputerNameA","features":[303,335]},{"name":"GetComputerNameW","features":[303,335]},{"name":"GetCurrentHwProfileA","features":[303,335]},{"name":"GetCurrentHwProfileW","features":[303,335]},{"name":"GetDCRegionData","features":[303,314,335]},{"name":"GetFeatureEnabledState","features":[335]},{"name":"GetFeatureVariant","features":[303,335]},{"name":"GetFirmwareEnvironmentVariableA","features":[335]},{"name":"GetFirmwareEnvironmentVariableExA","features":[335]},{"name":"GetFirmwareEnvironmentVariableExW","features":[335]},{"name":"GetFirmwareEnvironmentVariableW","features":[335]},{"name":"GetPrivateProfileIntA","features":[335]},{"name":"GetPrivateProfileIntW","features":[335]},{"name":"GetPrivateProfileSectionA","features":[335]},{"name":"GetPrivateProfileSectionNamesA","features":[335]},{"name":"GetPrivateProfileSectionNamesW","features":[335]},{"name":"GetPrivateProfileSectionW","features":[335]},{"name":"GetPrivateProfileStringA","features":[335]},{"name":"GetPrivateProfileStringW","features":[335]},{"name":"GetPrivateProfileStructA","features":[303,335]},{"name":"GetPrivateProfileStructW","features":[303,335]},{"name":"GetProfileIntA","features":[335]},{"name":"GetProfileIntW","features":[335]},{"name":"GetProfileSectionA","features":[335]},{"name":"GetProfileSectionW","features":[335]},{"name":"GetProfileStringA","features":[335]},{"name":"GetProfileStringW","features":[335]},{"name":"GetSockOptIoControlType","features":[335]},{"name":"GetSystemRegistryQuota","features":[303,335]},{"name":"GetThreadEnabledXStateFeatures","features":[335]},{"name":"GetUserNameA","features":[303,335]},{"name":"GetUserNameW","features":[303,335]},{"name":"GetVersionFromFileA","features":[303,335]},{"name":"GetVersionFromFileExA","features":[303,335]},{"name":"GetVersionFromFileExW","features":[303,335]},{"name":"GetVersionFromFileW","features":[303,335]},{"name":"GetWindowRegionData","features":[303,314,335]},{"name":"GlobalCompact","features":[335]},{"name":"GlobalFix","features":[303,335]},{"name":"GlobalUnWire","features":[303,335]},{"name":"GlobalUnfix","features":[303,335]},{"name":"GlobalWire","features":[303,335]},{"name":"HANJA_WINDOW","features":[335]},{"name":"HINSTANCE_ERROR","features":[335]},{"name":"HWINWATCH","features":[335]},{"name":"HW_PROFILE_GUIDLEN","features":[335]},{"name":"HW_PROFILE_INFOA","features":[335]},{"name":"HW_PROFILE_INFOW","features":[335]},{"name":"ICameraUIControl","features":[335]},{"name":"ICameraUIControlEventCallback","features":[335]},{"name":"IClipServiceNotificationHelper","features":[335]},{"name":"IContainerActivationHelper","features":[335]},{"name":"IDefaultBrowserSyncSettings","features":[335]},{"name":"IDeleteBrowsingHistory","features":[335]},{"name":"IE4_BACKNEW","features":[335]},{"name":"IE4_EXTRAINCREFCNT","features":[335]},{"name":"IE4_FRDOALL","features":[335]},{"name":"IE4_NODELETENEW","features":[335]},{"name":"IE4_NOENUMKEY","features":[335]},{"name":"IE4_NOMESSAGES","features":[335]},{"name":"IE4_NOPROGRESS","features":[335]},{"name":"IE4_NO_CRC_MAPPING","features":[335]},{"name":"IE4_REGSECTION","features":[335]},{"name":"IE4_REMOVREGBKDATA","features":[335]},{"name":"IE4_RESTORE","features":[335]},{"name":"IE4_UPDREFCNT","features":[335]},{"name":"IE4_USEREFCNT","features":[335]},{"name":"IE_BADID","features":[335]},{"name":"IE_BAUDRATE","features":[335]},{"name":"IE_BYTESIZE","features":[335]},{"name":"IE_DEFAULT","features":[335]},{"name":"IE_HARDWARE","features":[335]},{"name":"IE_MEMORY","features":[335]},{"name":"IE_NOPEN","features":[335]},{"name":"IE_OPEN","features":[335]},{"name":"IEditionUpgradeBroker","features":[335]},{"name":"IEditionUpgradeHelper","features":[335]},{"name":"IFClipNotificationHelper","features":[335]},{"name":"IF_ENTITY","features":[335]},{"name":"IF_GENERIC","features":[335]},{"name":"IF_MIB","features":[335]},{"name":"IGNORE","features":[335]},{"name":"IMAGE_DELAYLOAD_DESCRIPTOR","features":[335]},{"name":"IMAGE_THUNK_DATA32","features":[335]},{"name":"IMAGE_THUNK_DATA64","features":[335]},{"name":"IMEA_INIT","features":[335]},{"name":"IMEA_NEXT","features":[335]},{"name":"IMEA_PREV","features":[335]},{"name":"IMEPROA","features":[303,335]},{"name":"IMEPROW","features":[303,335]},{"name":"IMESTRUCT","features":[303,335]},{"name":"IME_BANJAtoJUNJA","features":[335]},{"name":"IME_ENABLE_CONVERT","features":[335]},{"name":"IME_ENTERWORDREGISTERMODE","features":[335]},{"name":"IME_GETCONVERSIONMODE","features":[335]},{"name":"IME_GETIMECAPS","features":[335]},{"name":"IME_GETOPEN","features":[335]},{"name":"IME_GETVERSION","features":[335]},{"name":"IME_JOHABtoKS","features":[335]},{"name":"IME_JUNJAtoBANJA","features":[335]},{"name":"IME_KStoJOHAB","features":[335]},{"name":"IME_MAXPROCESS","features":[335]},{"name":"IME_MODE_ALPHANUMERIC","features":[335]},{"name":"IME_MODE_CODEINPUT","features":[335]},{"name":"IME_MODE_DBCSCHAR","features":[335]},{"name":"IME_MODE_HANJACONVERT","features":[335]},{"name":"IME_MODE_HIRAGANA","features":[335]},{"name":"IME_MODE_KATAKANA","features":[335]},{"name":"IME_MODE_NOCODEINPUT","features":[335]},{"name":"IME_MODE_NOROMAN","features":[335]},{"name":"IME_MODE_ROMAN","features":[335]},{"name":"IME_MODE_SBCSCHAR","features":[335]},{"name":"IME_MOVEIMEWINDOW","features":[335]},{"name":"IME_REQUEST_CONVERT","features":[335]},{"name":"IME_RS_DISKERROR","features":[335]},{"name":"IME_RS_ERROR","features":[335]},{"name":"IME_RS_ILLEGAL","features":[335]},{"name":"IME_RS_INVALID","features":[335]},{"name":"IME_RS_NEST","features":[335]},{"name":"IME_RS_NOIME","features":[335]},{"name":"IME_RS_NOROOM","features":[335]},{"name":"IME_RS_NOTFOUND","features":[335]},{"name":"IME_RS_SYSTEMMODAL","features":[335]},{"name":"IME_RS_TOOLONG","features":[335]},{"name":"IME_SENDVKEY","features":[335]},{"name":"IME_SETCONVERSIONFONTEX","features":[335]},{"name":"IME_SETCONVERSIONMODE","features":[335]},{"name":"IME_SETCONVERSIONWINDOW","features":[335]},{"name":"IME_SETOPEN","features":[335]},{"name":"IME_SET_MODE","features":[335]},{"name":"IMPGetIMEA","features":[303,335]},{"name":"IMPGetIMEW","features":[303,335]},{"name":"IMPQueryIMEA","features":[303,335]},{"name":"IMPQueryIMEW","features":[303,335]},{"name":"IMPSetIMEA","features":[303,335]},{"name":"IMPSetIMEW","features":[303,335]},{"name":"INFO_CLASS_GENERIC","features":[335]},{"name":"INFO_CLASS_IMPLEMENTATION","features":[335]},{"name":"INFO_CLASS_PROTOCOL","features":[335]},{"name":"INFO_TYPE_ADDRESS_OBJECT","features":[335]},{"name":"INFO_TYPE_CONNECTION","features":[335]},{"name":"INFO_TYPE_PROVIDER","features":[335]},{"name":"INTERIM_WINDOW","features":[335]},{"name":"INVALID_ENTITY_INSTANCE","features":[335]},{"name":"IOCTL_TDI_TL_IO_CONTROL_ENDPOINT","features":[335]},{"name":"IR_CHANGECONVERT","features":[335]},{"name":"IR_CLOSECONVERT","features":[335]},{"name":"IR_DBCSCHAR","features":[335]},{"name":"IR_FULLCONVERT","features":[335]},{"name":"IR_IMESELECT","features":[335]},{"name":"IR_MODEINFO","features":[335]},{"name":"IR_OPENCONVERT","features":[335]},{"name":"IR_STRING","features":[335]},{"name":"IR_STRINGEND","features":[335]},{"name":"IR_STRINGEX","features":[335]},{"name":"IR_STRINGSTART","features":[335]},{"name":"IR_UNDETERMINE","features":[335]},{"name":"IWindowsLockModeHelper","features":[335]},{"name":"IsApiSetImplemented","features":[303,335]},{"name":"IsBadHugeReadPtr","features":[303,335]},{"name":"IsBadHugeWritePtr","features":[303,335]},{"name":"IsNTAdmin","features":[303,335]},{"name":"IsNativeVhdBoot","features":[303,335]},{"name":"IsTokenUntrusted","features":[303,335]},{"name":"JAVA_TRUST","features":[303,335]},{"name":"JIT_DEBUG_INFO","features":[335]},{"name":"KEY_ALL_KEYS","features":[335]},{"name":"KEY_OVERRIDE","features":[335]},{"name":"KEY_UNKNOWN","features":[335]},{"name":"LDR_DATA_TABLE_ENTRY","features":[303,309,335]},{"name":"LIS_NOGRPCONV","features":[335]},{"name":"LIS_QUIET","features":[335]},{"name":"LOGON32_PROVIDER_VIRTUAL","features":[335]},{"name":"LOGON32_PROVIDER_WINNT35","features":[335]},{"name":"LOGON_ZERO_PASSWORD_BUFFER","features":[335]},{"name":"LPTx","features":[335]},{"name":"LaunchINFSectionExW","features":[303,335]},{"name":"LaunchINFSectionW","features":[303,335]},{"name":"LocalCompact","features":[335]},{"name":"LocalShrink","features":[303,335]},{"name":"MAXINTATOM","features":[335]},{"name":"MAX_COMPUTERNAME_LENGTH","features":[335]},{"name":"MAX_TDI_ENTITIES","features":[335]},{"name":"MCW_DEFAULT","features":[335]},{"name":"MCW_HIDDEN","features":[335]},{"name":"MCW_RECT","features":[335]},{"name":"MCW_SCREEN","features":[335]},{"name":"MCW_VERTICAL","features":[335]},{"name":"MCW_WINDOW","features":[335]},{"name":"MICROSOFT_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[335]},{"name":"MICROSOFT_WINDOWS_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[335]},{"name":"MODE_WINDOW","features":[335]},{"name":"MulDiv","features":[335]},{"name":"NeedReboot","features":[303,335]},{"name":"NeedRebootInit","features":[335]},{"name":"OFS_MAXPATHNAME","features":[335]},{"name":"OPERATION_API_VERSION","features":[335]},{"name":"OVERWRITE_HIDDEN","features":[335]},{"name":"OpenINFEngineA","features":[335]},{"name":"OpenINFEngineW","features":[335]},{"name":"OpenMutexA","features":[303,335]},{"name":"OpenSemaphoreA","features":[303,335]},{"name":"PCF_16BITMODE","features":[335]},{"name":"PCF_DTRDSR","features":[335]},{"name":"PCF_INTTIMEOUTS","features":[335]},{"name":"PCF_PARITY_CHECK","features":[335]},{"name":"PCF_RLSD","features":[335]},{"name":"PCF_RTSCTS","features":[335]},{"name":"PCF_SETXCHAR","features":[335]},{"name":"PCF_SPECIALCHARS","features":[335]},{"name":"PCF_TOTALTIMEOUTS","features":[335]},{"name":"PCF_XONXOFF","features":[335]},{"name":"PDELAYLOAD_FAILURE_DLL_CALLBACK","features":[335]},{"name":"PERUSERSECTIONA","features":[303,335]},{"name":"PERUSERSECTIONW","features":[303,335]},{"name":"PFEATURE_STATE_CHANGE_CALLBACK","features":[335]},{"name":"PFIBER_CALLOUT_ROUTINE","features":[335]},{"name":"PQUERYACTCTXW_FUNC","features":[303,335]},{"name":"PROCESS_CREATION_ALL_APPLICATION_PACKAGES_OPT_OUT","features":[335]},{"name":"PROCESS_CREATION_CHILD_PROCESS_OVERRIDE","features":[335]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED","features":[335]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED_UNLESS_SECURE","features":[335]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_DISABLE_PROCESS_TREE","features":[335]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_ENABLE_PROCESS_TREE","features":[335]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_OVERRIDE","features":[335]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ATL_THUNK_ENABLE","features":[335]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ENABLE","features":[335]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_SEHOP_ENABLE","features":[335]},{"name":"PROC_THREAD_ATTRIBUTE_ADDITIVE","features":[335]},{"name":"PROC_THREAD_ATTRIBUTE_INPUT","features":[335]},{"name":"PROC_THREAD_ATTRIBUTE_NUMBER","features":[335]},{"name":"PROC_THREAD_ATTRIBUTE_THREAD","features":[335]},{"name":"PROGRESS_CANCEL","features":[335]},{"name":"PROGRESS_CONTINUE","features":[335]},{"name":"PROGRESS_QUIET","features":[335]},{"name":"PROGRESS_STOP","features":[335]},{"name":"PROTECTION_LEVEL_SAME","features":[335]},{"name":"PST_FAX","features":[335]},{"name":"PST_LAT","features":[335]},{"name":"PST_MODEM","features":[335]},{"name":"PST_NETWORK_BRIDGE","features":[335]},{"name":"PST_PARALLELPORT","features":[335]},{"name":"PST_RS232","features":[335]},{"name":"PST_RS422","features":[335]},{"name":"PST_RS423","features":[335]},{"name":"PST_RS449","features":[335]},{"name":"PST_SCANNER","features":[335]},{"name":"PST_TCPIP_TELNET","features":[335]},{"name":"PST_UNSPECIFIED","features":[335]},{"name":"PST_X25","features":[335]},{"name":"PUBLIC_OBJECT_BASIC_INFORMATION","features":[335]},{"name":"PUBLIC_OBJECT_TYPE_INFORMATION","features":[303,335]},{"name":"PWINSTATIONQUERYINFORMATIONW","features":[303,335]},{"name":"PWLDP_CANEXECUTEBUFFER_API","features":[335]},{"name":"PWLDP_CANEXECUTEFILE_API","features":[303,335]},{"name":"PWLDP_CANEXECUTESTREAM_API","features":[354,335]},{"name":"PWLDP_ISAPPAPPROVEDBYPOLICY_API","features":[335]},{"name":"PWLDP_ISDYNAMICCODEPOLICYENABLED_API","features":[303,335]},{"name":"PWLDP_ISPRODUCTIONCONFIGURATION_API","features":[303,335]},{"name":"PWLDP_ISWCOSPRODUCTIONCONFIGURATION_API","features":[303,335]},{"name":"PWLDP_QUERYDEVICESECURITYINFORMATION_API","features":[335]},{"name":"PWLDP_QUERYDYNAMICODETRUST_API","features":[303,335]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED2_API","features":[303,335]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED_API","features":[303,335]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNMODE_API","features":[335]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_API","features":[335]},{"name":"PWLDP_RESETPRODUCTIONCONFIGURATION_API","features":[335]},{"name":"PWLDP_RESETWCOSPRODUCTIONCONFIGURATION_API","features":[335]},{"name":"PWLDP_SETDYNAMICCODETRUST_API","features":[303,335]},{"name":"PWLDP_SETWINDOWSLOCKDOWNRESTRICTION_API","features":[335]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS","features":[335]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE","features":[335]},{"name":"QUERY_ACTCTX_FLAG_NO_ADDREF","features":[335]},{"name":"QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX","features":[335]},{"name":"QueryAuxiliaryCounterFrequency","features":[335]},{"name":"QueryIdleProcessorCycleTime","features":[303,335]},{"name":"QueryIdleProcessorCycleTimeEx","features":[303,335]},{"name":"QueryInterruptTime","features":[335]},{"name":"QueryInterruptTimePrecise","features":[335]},{"name":"QueryProcessCycleTime","features":[303,335]},{"name":"QueryThreadCycleTime","features":[303,335]},{"name":"QueryUnbiasedInterruptTime","features":[303,335]},{"name":"QueryUnbiasedInterruptTimePrecise","features":[335]},{"name":"RECOVERY_DEFAULT_PING_INTERVAL","features":[335]},{"name":"REGINSTALLA","features":[303,335]},{"name":"REG_RESTORE_LOG_KEY","features":[335]},{"name":"REG_SAVE_LOG_KEY","features":[335]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_LOOPBACK","features":[335]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_OFFLINE","features":[335]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_PERSISTENT_HANDLE","features":[335]},{"name":"RESETDEV","features":[335]},{"name":"RESTART_MAX_CMD_LINE","features":[335]},{"name":"RPI_FLAG_SMB2_SHARECAP_CLUSTER","features":[335]},{"name":"RPI_FLAG_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[335]},{"name":"RPI_FLAG_SMB2_SHARECAP_DFS","features":[335]},{"name":"RPI_FLAG_SMB2_SHARECAP_SCALEOUT","features":[335]},{"name":"RPI_FLAG_SMB2_SHARECAP_TIMEWARP","features":[335]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DFS","features":[335]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DIRECTORY_LEASING","features":[335]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LARGEMTU","features":[335]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LEASING","features":[335]},{"name":"RPI_SMB2_FLAG_SERVERCAP_MULTICHANNEL","features":[335]},{"name":"RPI_SMB2_FLAG_SERVERCAP_PERSISTENT_HANDLES","features":[335]},{"name":"RPI_SMB2_SHAREFLAG_COMPRESS_DATA","features":[335]},{"name":"RPI_SMB2_SHAREFLAG_ENCRYPT_DATA","features":[335]},{"name":"RSC_FLAG_DELAYREGISTEROCX","features":[335]},{"name":"RSC_FLAG_INF","features":[335]},{"name":"RSC_FLAG_NGCONV","features":[335]},{"name":"RSC_FLAG_QUIET","features":[335]},{"name":"RSC_FLAG_SETUPAPI","features":[335]},{"name":"RSC_FLAG_SKIPDISKSPACECHECK","features":[335]},{"name":"RSC_FLAG_UPDHLPDLLS","features":[335]},{"name":"RTS_CONTROL_DISABLE","features":[335]},{"name":"RTS_CONTROL_ENABLE","features":[335]},{"name":"RTS_CONTROL_HANDSHAKE","features":[335]},{"name":"RTS_CONTROL_TOGGLE","features":[335]},{"name":"RUNCMDS_DELAYPOSTCMD","features":[335]},{"name":"RUNCMDS_NOWAIT","features":[335]},{"name":"RUNCMDS_QUIET","features":[335]},{"name":"RaiseCustomSystemEventTrigger","features":[335]},{"name":"RebootCheckOnInstallA","features":[303,335]},{"name":"RebootCheckOnInstallW","features":[303,335]},{"name":"RecordFeatureError","features":[335]},{"name":"RecordFeatureUsage","features":[335]},{"name":"RegInstallA","features":[303,335]},{"name":"RegInstallW","features":[303,335]},{"name":"RegRestoreAllA","features":[303,364,335]},{"name":"RegRestoreAllW","features":[303,364,335]},{"name":"RegSaveRestoreA","features":[303,364,335]},{"name":"RegSaveRestoreOnINFA","features":[303,364,335]},{"name":"RegSaveRestoreOnINFW","features":[303,364,335]},{"name":"RegSaveRestoreW","features":[303,364,335]},{"name":"ReplacePartitionUnit","features":[303,335]},{"name":"RequestDeviceWakeup","features":[303,335]},{"name":"RtlAnsiStringToUnicodeString","features":[303,309,335]},{"name":"RtlCharToInteger","features":[303,335]},{"name":"RtlFreeAnsiString","features":[309,335]},{"name":"RtlFreeOemString","features":[309,335]},{"name":"RtlFreeUnicodeString","features":[303,335]},{"name":"RtlGetReturnAddressHijackTarget","features":[335]},{"name":"RtlInitAnsiString","features":[309,335]},{"name":"RtlInitAnsiStringEx","features":[303,309,335]},{"name":"RtlInitString","features":[309,335]},{"name":"RtlInitStringEx","features":[303,309,335]},{"name":"RtlInitUnicodeString","features":[303,335]},{"name":"RtlIsNameLegalDOS8Dot3","features":[303,309,335]},{"name":"RtlLocalTimeToSystemTime","features":[303,335]},{"name":"RtlRaiseCustomSystemEventTrigger","features":[335]},{"name":"RtlTimeToSecondsSince1970","features":[303,335]},{"name":"RtlUnicodeStringToAnsiString","features":[303,309,335]},{"name":"RtlUnicodeStringToOemString","features":[303,309,335]},{"name":"RtlUnicodeToMultiByteSize","features":[303,335]},{"name":"RtlUniform","features":[335]},{"name":"RunSetupCommandA","features":[303,335]},{"name":"RunSetupCommandW","features":[303,335]},{"name":"SCS_32BIT_BINARY","features":[335]},{"name":"SCS_64BIT_BINARY","features":[335]},{"name":"SCS_DOS_BINARY","features":[335]},{"name":"SCS_OS216_BINARY","features":[335]},{"name":"SCS_PIF_BINARY","features":[335]},{"name":"SCS_POSIX_BINARY","features":[335]},{"name":"SCS_THIS_PLATFORM_BINARY","features":[335]},{"name":"SCS_WOW_BINARY","features":[335]},{"name":"SHUTDOWN_NORETRY","features":[335]},{"name":"SP_BAUD","features":[335]},{"name":"SP_DATABITS","features":[335]},{"name":"SP_HANDSHAKING","features":[335]},{"name":"SP_PARITY","features":[335]},{"name":"SP_PARITY_CHECK","features":[335]},{"name":"SP_RLSD","features":[335]},{"name":"SP_SERIALCOMM","features":[335]},{"name":"SP_STOPBITS","features":[335]},{"name":"STARTF_HOLOGRAPHIC","features":[335]},{"name":"STORAGE_INFO_FLAGS_ALIGNED_DEVICE","features":[335]},{"name":"STORAGE_INFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[335]},{"name":"STORAGE_INFO_OFFSET_UNKNOWN","features":[335]},{"name":"STREAM_CONTAINS_GHOSTED_FILE_EXTENTS","features":[335]},{"name":"STREAM_CONTAINS_PROPERTIES","features":[335]},{"name":"STREAM_CONTAINS_SECURITY","features":[335]},{"name":"STREAM_MODIFIED_WHEN_READ","features":[335]},{"name":"STREAM_NORMAL_ATTRIBUTE","features":[335]},{"name":"STREAM_SPARSE_ATTRIBUTE","features":[335]},{"name":"STRENTRYA","features":[335]},{"name":"STRENTRYW","features":[335]},{"name":"STRINGEXSTRUCT","features":[335]},{"name":"STRTABLEA","features":[335]},{"name":"STRTABLEW","features":[335]},{"name":"SYSTEM_BASIC_INFORMATION","features":[335]},{"name":"SYSTEM_CODEINTEGRITY_INFORMATION","features":[335]},{"name":"SYSTEM_EXCEPTION_INFORMATION","features":[335]},{"name":"SYSTEM_INTERRUPT_INFORMATION","features":[335]},{"name":"SYSTEM_LOOKASIDE_INFORMATION","features":[335]},{"name":"SYSTEM_PERFORMANCE_INFORMATION","features":[335]},{"name":"SYSTEM_POLICY_INFORMATION","features":[335]},{"name":"SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION","features":[335]},{"name":"SYSTEM_PROCESS_INFORMATION","features":[303,335]},{"name":"SYSTEM_REGISTRY_QUOTA_INFORMATION","features":[335]},{"name":"SYSTEM_STATUS_FLAG_POWER_SAVING_ON","features":[335]},{"name":"SYSTEM_THREAD_INFORMATION","features":[303,335]},{"name":"SYSTEM_TIMEOFDAY_INFORMATION","features":[335]},{"name":"S_ALLTHRESHOLD","features":[335]},{"name":"S_LEGATO","features":[335]},{"name":"S_NORMAL","features":[335]},{"name":"S_PERIOD1024","features":[335]},{"name":"S_PERIOD2048","features":[335]},{"name":"S_PERIOD512","features":[335]},{"name":"S_PERIODVOICE","features":[335]},{"name":"S_QUEUEEMPTY","features":[335]},{"name":"S_SERBDNT","features":[335]},{"name":"S_SERDCC","features":[335]},{"name":"S_SERDDR","features":[335]},{"name":"S_SERDFQ","features":[335]},{"name":"S_SERDLN","features":[335]},{"name":"S_SERDMD","features":[335]},{"name":"S_SERDPT","features":[335]},{"name":"S_SERDSH","features":[335]},{"name":"S_SERDSR","features":[335]},{"name":"S_SERDST","features":[335]},{"name":"S_SERDTP","features":[335]},{"name":"S_SERDVL","features":[335]},{"name":"S_SERDVNA","features":[335]},{"name":"S_SERMACT","features":[335]},{"name":"S_SEROFM","features":[335]},{"name":"S_SERQFUL","features":[335]},{"name":"S_STACCATO","features":[335]},{"name":"S_THRESHOLD","features":[335]},{"name":"S_WHITE1024","features":[335]},{"name":"S_WHITE2048","features":[335]},{"name":"S_WHITE512","features":[335]},{"name":"S_WHITEVOICE","features":[335]},{"name":"SendIMEMessageExA","features":[303,335]},{"name":"SendIMEMessageExW","features":[303,335]},{"name":"SetEnvironmentStringsA","features":[303,335]},{"name":"SetFirmwareEnvironmentVariableA","features":[303,335]},{"name":"SetFirmwareEnvironmentVariableExA","features":[303,335]},{"name":"SetFirmwareEnvironmentVariableExW","features":[303,335]},{"name":"SetFirmwareEnvironmentVariableW","features":[303,335]},{"name":"SetHandleCount","features":[335]},{"name":"SetMessageWaitingIndicator","features":[303,335]},{"name":"SetPerUserSecValuesA","features":[303,335]},{"name":"SetPerUserSecValuesW","features":[303,335]},{"name":"SetSockOptIoControlType","features":[335]},{"name":"SocketIoControlType","features":[335]},{"name":"SubscribeFeatureStateChangeNotification","features":[335]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX32_XP","features":[335]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_W2K","features":[335]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_XP","features":[335]},{"name":"TCP_REQUEST_SET_INFORMATION_EX","features":[335]},{"name":"TC_GP_TRAP","features":[335]},{"name":"TC_HARDERR","features":[335]},{"name":"TC_NORMAL","features":[335]},{"name":"TC_SIGNAL","features":[335]},{"name":"TDIENTITY_ENTITY_TYPE","features":[335]},{"name":"TDIEntityID","features":[335]},{"name":"TDIObjectID","features":[335]},{"name":"TDI_TL_IO_CONTROL_ENDPOINT","features":[335]},{"name":"TDI_TL_IO_CONTROL_TYPE","features":[335]},{"name":"THREAD_NAME_INFORMATION","features":[303,335]},{"name":"THREAD_PRIORITY_ERROR_RETURN","features":[335]},{"name":"TranslateInfStringA","features":[335]},{"name":"TranslateInfStringExA","features":[335]},{"name":"TranslateInfStringExW","features":[335]},{"name":"TranslateInfStringW","features":[335]},{"name":"UMS_VERSION","features":[335]},{"name":"UNDETERMINESTRUCT","features":[335]},{"name":"UnsubscribeFeatureStateChangeNotification","features":[335]},{"name":"UserInstStubWrapperA","features":[303,335]},{"name":"UserInstStubWrapperW","features":[303,335]},{"name":"UserUnInstStubWrapperA","features":[303,335]},{"name":"UserUnInstStubWrapperW","features":[303,335]},{"name":"VALUENAME","features":[335]},{"name":"VALUENAME_BUILT_IN_LIST","features":[335]},{"name":"VALUENAME_ENTERPRISE_DEFINED_CLASS_ID","features":[335]},{"name":"VALUENAME_UNKNOWN","features":[335]},{"name":"WINNLSEnableIME","features":[303,335]},{"name":"WINNLSGetEnableStatus","features":[303,335]},{"name":"WINNLSGetIMEHotkey","features":[303,335]},{"name":"WINSTATIONINFOCLASS","features":[335]},{"name":"WINSTATIONINFORMATIONW","features":[335]},{"name":"WINWATCHNOTIFYPROC","features":[303,335]},{"name":"WINWATCHNOTIFY_CHANGED","features":[335]},{"name":"WINWATCHNOTIFY_CHANGING","features":[335]},{"name":"WINWATCHNOTIFY_DESTROY","features":[335]},{"name":"WINWATCHNOTIFY_START","features":[335]},{"name":"WINWATCHNOTIFY_STOP","features":[335]},{"name":"WLDP_CANEXECUTEBUFFER_FN","features":[335]},{"name":"WLDP_CANEXECUTEFILE_FN","features":[335]},{"name":"WLDP_DEVICE_SECURITY_INFORMATION","features":[335]},{"name":"WLDP_DLL","features":[335]},{"name":"WLDP_EXECUTION_EVALUATION_OPTIONS","features":[335]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_EXECUTE_IN_INTERACTIVE_SESSION","features":[335]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_NONE","features":[335]},{"name":"WLDP_EXECUTION_POLICY","features":[335]},{"name":"WLDP_EXECUTION_POLICY_ALLOWED","features":[335]},{"name":"WLDP_EXECUTION_POLICY_BLOCKED","features":[335]},{"name":"WLDP_EXECUTION_POLICY_REQUIRE_SANDBOX","features":[335]},{"name":"WLDP_FLAGS_SKIPSIGNATUREVALIDATION","features":[335]},{"name":"WLDP_GETLOCKDOWNPOLICY_FN","features":[335]},{"name":"WLDP_HOST","features":[335]},{"name":"WLDP_HOST_CMD","features":[335]},{"name":"WLDP_HOST_HTML","features":[335]},{"name":"WLDP_HOST_ID","features":[335]},{"name":"WLDP_HOST_ID_ALL","features":[335]},{"name":"WLDP_HOST_ID_GLOBAL","features":[335]},{"name":"WLDP_HOST_ID_IE","features":[335]},{"name":"WLDP_HOST_ID_MAX","features":[335]},{"name":"WLDP_HOST_ID_MSI","features":[335]},{"name":"WLDP_HOST_ID_POWERSHELL","features":[335]},{"name":"WLDP_HOST_ID_UNKNOWN","features":[335]},{"name":"WLDP_HOST_ID_VBA","features":[335]},{"name":"WLDP_HOST_ID_WSH","features":[335]},{"name":"WLDP_HOST_INFORMATION","features":[303,335]},{"name":"WLDP_HOST_INFORMATION_REVISION","features":[335]},{"name":"WLDP_HOST_JAVASCRIPT","features":[335]},{"name":"WLDP_HOST_MAX","features":[335]},{"name":"WLDP_HOST_MSI","features":[335]},{"name":"WLDP_HOST_OTHER","features":[335]},{"name":"WLDP_HOST_POWERSHELL","features":[335]},{"name":"WLDP_HOST_PYTHON","features":[335]},{"name":"WLDP_HOST_RUNDLL32","features":[335]},{"name":"WLDP_HOST_SVCHOST","features":[335]},{"name":"WLDP_HOST_WINDOWS_SCRIPT_HOST","features":[335]},{"name":"WLDP_HOST_XML","features":[335]},{"name":"WLDP_ISAPPAPPROVEDBYPOLICY_FN","features":[335]},{"name":"WLDP_ISCLASSINAPPROVEDLIST_FN","features":[335]},{"name":"WLDP_ISDYNAMICCODEPOLICYENABLED_FN","features":[335]},{"name":"WLDP_ISPRODUCTIONCONFIGURATION_FN","features":[335]},{"name":"WLDP_ISWCOSPRODUCTIONCONFIGURATION_FN","features":[335]},{"name":"WLDP_KEY","features":[335]},{"name":"WLDP_LOCKDOWN_AUDIT_FLAG","features":[335]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_AUDIT_FLAG","features":[335]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_FLAG","features":[335]},{"name":"WLDP_LOCKDOWN_DEFINED_FLAG","features":[335]},{"name":"WLDP_LOCKDOWN_EXCLUSION_FLAG","features":[335]},{"name":"WLDP_LOCKDOWN_OFF","features":[335]},{"name":"WLDP_LOCKDOWN_UMCIENFORCE_FLAG","features":[335]},{"name":"WLDP_LOCKDOWN_UNDEFINED","features":[335]},{"name":"WLDP_POLICY_SETTING","features":[335]},{"name":"WLDP_POLICY_SETTING_AV_PERF_MODE","features":[335]},{"name":"WLDP_QUERYDANAMICCODETRUST_FN","features":[335]},{"name":"WLDP_QUERYDEVICESECURITYINFORMATION_FN","features":[335]},{"name":"WLDP_QUERYDYNAMICCODETRUST_FN","features":[335]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED2_FN","features":[335]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED_FN","features":[335]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNMODE_FN","features":[335]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_FN","features":[335]},{"name":"WLDP_RESETPRODUCTIONCONFIGURATION_FN","features":[335]},{"name":"WLDP_RESETWCOSPRODUCTIONCONFIGURATION_FN","features":[335]},{"name":"WLDP_SETDYNAMICCODETRUST_FN","features":[335]},{"name":"WLDP_SETWINDOWSLOCKDOWNRESTRICTION_FN","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_LOCKED","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_MAX","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_TRIAL","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_MAX","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NONE","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK","features":[335]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK_PERMANENT","features":[335]},{"name":"WM_CONVERTREQUEST","features":[335]},{"name":"WM_CONVERTRESULT","features":[335]},{"name":"WM_IMEKEYDOWN","features":[335]},{"name":"WM_IMEKEYUP","features":[335]},{"name":"WM_IME_REPORT","features":[335]},{"name":"WM_INTERIM","features":[335]},{"name":"WM_WNT_CONVERTREQUESTEX","features":[335]},{"name":"WinStationInformation","features":[335]},{"name":"WinWatchClose","features":[335]},{"name":"WinWatchDidStatusChange","features":[303,335]},{"name":"WinWatchGetClipList","features":[303,314,335]},{"name":"WinWatchNotify","features":[303,335]},{"name":"WinWatchOpen","features":[303,335]},{"name":"WldpCanExecuteBuffer","features":[335]},{"name":"WldpCanExecuteFile","features":[303,335]},{"name":"WldpCanExecuteStream","features":[354,335]},{"name":"WldpGetLockdownPolicy","features":[303,335]},{"name":"WldpIsClassInApprovedList","features":[303,335]},{"name":"WldpIsDynamicCodePolicyEnabled","features":[303,335]},{"name":"WldpQueryDeviceSecurityInformation","features":[335]},{"name":"WldpQueryDynamicCodeTrust","features":[303,335]},{"name":"WldpSetDynamicCodeTrust","features":[303,335]},{"name":"WritePrivateProfileSectionA","features":[303,335]},{"name":"WritePrivateProfileSectionW","features":[303,335]},{"name":"WritePrivateProfileStringA","features":[303,335]},{"name":"WritePrivateProfileStringW","features":[303,335]},{"name":"WritePrivateProfileStructA","features":[303,335]},{"name":"WritePrivateProfileStructW","features":[303,335]},{"name":"WriteProfileSectionA","features":[303,335]},{"name":"WriteProfileSectionW","features":[303,335]},{"name":"WriteProfileStringA","features":[303,335]},{"name":"WriteProfileStringW","features":[303,335]},{"name":"_hread","features":[335]},{"name":"_hwrite","features":[335]},{"name":"_lclose","features":[335]},{"name":"_lcreat","features":[335]},{"name":"_llseek","features":[335]},{"name":"_lopen","features":[335]},{"name":"_lread","features":[335]},{"name":"_lwrite","features":[335]},{"name":"uaw_lstrcmpW","features":[335]},{"name":"uaw_lstrcmpiW","features":[335]},{"name":"uaw_lstrlenW","features":[335]},{"name":"uaw_wcschr","features":[335]},{"name":"uaw_wcscpy","features":[335]},{"name":"uaw_wcsicmp","features":[335]},{"name":"uaw_wcslen","features":[335]},{"name":"uaw_wcsrchr","features":[335]}],"645":[{"name":"CCR_COLLISION","features":[613]},{"name":"CCR_IDENTITY","features":[613]},{"name":"CCR_NOPARENT","features":[613]},{"name":"CCR_OTHER","features":[613]},{"name":"CONFLICT_RESOLUTION_POLICY","features":[613]},{"name":"CONSTRAINT_CONFLICT_REASON","features":[613]},{"name":"CRP_DESTINATION_PROVIDER_WINS","features":[613]},{"name":"CRP_LAST","features":[613]},{"name":"CRP_NONE","features":[613]},{"name":"CRP_SOURCE_PROVIDER_WINS","features":[613]},{"name":"FCT_INTERSECTION","features":[613]},{"name":"FILTERING_TYPE","features":[613]},{"name":"FILTER_COMBINATION_TYPE","features":[613]},{"name":"FT_CURRENT_ITEMS_AND_VERSIONS_FOR_MOVED_OUT_ITEMS","features":[613]},{"name":"FT_CURRENT_ITEMS_ONLY","features":[613]},{"name":"IAsynchronousDataRetriever","features":[613]},{"name":"IChangeConflict","features":[613]},{"name":"IChangeUnitException","features":[613]},{"name":"IChangeUnitListFilterInfo","features":[613]},{"name":"IClockVector","features":[613]},{"name":"IClockVectorElement","features":[613]},{"name":"ICombinedFilterInfo","features":[613]},{"name":"IConstraintConflict","features":[613]},{"name":"IConstructReplicaKeyMap","features":[613]},{"name":"ICoreFragment","features":[613]},{"name":"ICoreFragmentInspector","features":[613]},{"name":"ICustomFilterInfo","features":[613]},{"name":"ID_PARAMETERS","features":[303,613]},{"name":"ID_PARAMETER_PAIR","features":[303,613]},{"name":"IDataRetrieverCallback","features":[613]},{"name":"IEnumChangeUnitExceptions","features":[613]},{"name":"IEnumClockVector","features":[613]},{"name":"IEnumFeedClockVector","features":[613]},{"name":"IEnumItemIds","features":[613]},{"name":"IEnumRangeExceptions","features":[613]},{"name":"IEnumSingleItemExceptions","features":[613]},{"name":"IEnumSyncChangeUnits","features":[613]},{"name":"IEnumSyncChanges","features":[613]},{"name":"IEnumSyncProviderConfigUIInfos","features":[613]},{"name":"IEnumSyncProviderInfos","features":[613]},{"name":"IFeedClockVector","features":[613]},{"name":"IFeedClockVectorElement","features":[613]},{"name":"IFilterKeyMap","features":[613]},{"name":"IFilterRequestCallback","features":[613]},{"name":"IFilterTrackingProvider","features":[613]},{"name":"IFilterTrackingRequestCallback","features":[613]},{"name":"IFilterTrackingSyncChangeBuilder","features":[613]},{"name":"IForgottenKnowledge","features":[613]},{"name":"IKnowledgeSyncProvider","features":[613]},{"name":"ILoadChangeContext","features":[613]},{"name":"IProviderConverter","features":[613]},{"name":"IRangeException","features":[613]},{"name":"IRecoverableError","features":[613]},{"name":"IRecoverableErrorData","features":[613]},{"name":"IRegisteredSyncProvider","features":[613]},{"name":"IReplicaKeyMap","features":[613]},{"name":"IRequestFilteredSync","features":[613]},{"name":"ISingleItemException","features":[613]},{"name":"ISupportFilteredSync","features":[613]},{"name":"ISupportLastWriteTime","features":[613]},{"name":"ISyncCallback","features":[613]},{"name":"ISyncCallback2","features":[613]},{"name":"ISyncChange","features":[613]},{"name":"ISyncChangeBatch","features":[613]},{"name":"ISyncChangeBatch2","features":[613]},{"name":"ISyncChangeBatchAdvanced","features":[613]},{"name":"ISyncChangeBatchBase","features":[613]},{"name":"ISyncChangeBatchBase2","features":[613]},{"name":"ISyncChangeBatchWithFilterKeyMap","features":[613]},{"name":"ISyncChangeBatchWithPrerequisite","features":[613]},{"name":"ISyncChangeBuilder","features":[613]},{"name":"ISyncChangeUnit","features":[613]},{"name":"ISyncChangeWithFilterKeyMap","features":[613]},{"name":"ISyncChangeWithPrerequisite","features":[613]},{"name":"ISyncConstraintCallback","features":[613]},{"name":"ISyncDataConverter","features":[613]},{"name":"ISyncFilter","features":[613]},{"name":"ISyncFilterDeserializer","features":[613]},{"name":"ISyncFilterInfo","features":[613]},{"name":"ISyncFilterInfo2","features":[613]},{"name":"ISyncFullEnumerationChange","features":[613]},{"name":"ISyncFullEnumerationChangeBatch","features":[613]},{"name":"ISyncFullEnumerationChangeBatch2","features":[613]},{"name":"ISyncKnowledge","features":[613]},{"name":"ISyncKnowledge2","features":[613]},{"name":"ISyncMergeTombstoneChange","features":[613]},{"name":"ISyncProvider","features":[613]},{"name":"ISyncProviderConfigUI","features":[613]},{"name":"ISyncProviderConfigUIInfo","features":[613,374]},{"name":"ISyncProviderInfo","features":[613,374]},{"name":"ISyncProviderRegistration","features":[613]},{"name":"ISyncRegistrationChange","features":[613]},{"name":"ISyncSessionExtendedErrorInfo","features":[613]},{"name":"ISyncSessionState","features":[613]},{"name":"ISyncSessionState2","features":[613]},{"name":"ISynchronousDataRetriever","features":[613]},{"name":"KCCR_COOKIE_KNOWLEDGE_CONTAINED","features":[613]},{"name":"KCCR_COOKIE_KNOWLEDGE_CONTAINS","features":[613]},{"name":"KCCR_COOKIE_KNOWLEDGE_EQUAL","features":[613]},{"name":"KCCR_COOKIE_KNOWLEDGE_NOT_COMPARABLE","features":[613]},{"name":"KNOWLEDGE_COOKIE_COMPARISON_RESULT","features":[613]},{"name":"PKEY_CONFIGUI_CAPABILITIES","features":[613,374]},{"name":"PKEY_CONFIGUI_CLSID","features":[613,374]},{"name":"PKEY_CONFIGUI_CONTENTTYPE","features":[613,374]},{"name":"PKEY_CONFIGUI_DESCRIPTION","features":[613,374]},{"name":"PKEY_CONFIGUI_ICON","features":[613,374]},{"name":"PKEY_CONFIGUI_INSTANCEID","features":[613,374]},{"name":"PKEY_CONFIGUI_IS_GLOBAL","features":[613,374]},{"name":"PKEY_CONFIGUI_MENUITEM","features":[613,374]},{"name":"PKEY_CONFIGUI_MENUITEM_NOUI","features":[613,374]},{"name":"PKEY_CONFIGUI_NAME","features":[613,374]},{"name":"PKEY_CONFIGUI_SUPPORTED_ARCHITECTURE","features":[613,374]},{"name":"PKEY_CONFIGUI_TOOLTIPS","features":[613,374]},{"name":"PKEY_PROVIDER_CAPABILITIES","features":[613,374]},{"name":"PKEY_PROVIDER_CLSID","features":[613,374]},{"name":"PKEY_PROVIDER_CONFIGUI","features":[613,374]},{"name":"PKEY_PROVIDER_CONTENTTYPE","features":[613,374]},{"name":"PKEY_PROVIDER_DESCRIPTION","features":[613,374]},{"name":"PKEY_PROVIDER_ICON","features":[613,374]},{"name":"PKEY_PROVIDER_INSTANCEID","features":[613,374]},{"name":"PKEY_PROVIDER_NAME","features":[613,374]},{"name":"PKEY_PROVIDER_SUPPORTED_ARCHITECTURE","features":[613,374]},{"name":"PKEY_PROVIDER_TOOLTIPS","features":[613,374]},{"name":"SCC_CAN_CREATE_WITHOUT_UI","features":[613]},{"name":"SCC_CAN_MODIFY_WITHOUT_UI","features":[613]},{"name":"SCC_CREATE_NOT_SUPPORTED","features":[613]},{"name":"SCC_DEFAULT","features":[613]},{"name":"SCC_MODIFY_NOT_SUPPORTED","features":[613]},{"name":"SCRA_ACCEPT_DESTINATION_PROVIDER","features":[613]},{"name":"SCRA_ACCEPT_SOURCE_PROVIDER","features":[613]},{"name":"SCRA_DEFER","features":[613]},{"name":"SCRA_MERGE","features":[613]},{"name":"SCRA_RENAME_DESTINATION","features":[613]},{"name":"SCRA_RENAME_SOURCE","features":[613]},{"name":"SCRA_TRANSFER_AND_DEFER","features":[613]},{"name":"SFEA_ABORT","features":[613]},{"name":"SFEA_FULL_ENUMERATION","features":[613]},{"name":"SFEA_PARTIAL_SYNC","features":[613]},{"name":"SPC_DEFAULT","features":[613]},{"name":"SPR_DESTINATION","features":[613]},{"name":"SPR_SOURCE","features":[613]},{"name":"SPS_CHANGE_APPLICATION","features":[613]},{"name":"SPS_CHANGE_DETECTION","features":[613]},{"name":"SPS_CHANGE_ENUMERATION","features":[613]},{"name":"SRA_ACCEPT_DESTINATION_PROVIDER","features":[613]},{"name":"SRA_ACCEPT_SOURCE_PROVIDER","features":[613]},{"name":"SRA_DEFER","features":[613]},{"name":"SRA_LAST","features":[613]},{"name":"SRA_MERGE","features":[613]},{"name":"SRA_TRANSFER_AND_DEFER","features":[613]},{"name":"SRE_CONFIGUI_ADDED","features":[613]},{"name":"SRE_CONFIGUI_REMOVED","features":[613]},{"name":"SRE_CONFIGUI_UPDATED","features":[613]},{"name":"SRE_PROVIDER_ADDED","features":[613]},{"name":"SRE_PROVIDER_REMOVED","features":[613]},{"name":"SRE_PROVIDER_STATE_CHANGED","features":[613]},{"name":"SRE_PROVIDER_UPDATED","features":[613]},{"name":"SYNC_32_BIT_SUPPORTED","features":[613]},{"name":"SYNC_64_BIT_SUPPORTED","features":[613]},{"name":"SYNC_CHANGE_FLAG_DELETED","features":[613]},{"name":"SYNC_CHANGE_FLAG_DOES_NOT_EXIST","features":[613]},{"name":"SYNC_CHANGE_FLAG_GHOST","features":[613]},{"name":"SYNC_CONSTRAINT_RESOLVE_ACTION","features":[613]},{"name":"SYNC_FILTER_CHANGE","features":[303,613]},{"name":"SYNC_FILTER_INFO_COMBINED","features":[613]},{"name":"SYNC_FILTER_INFO_FLAG_CHANGE_UNIT_LIST","features":[613]},{"name":"SYNC_FILTER_INFO_FLAG_CUSTOM","features":[613]},{"name":"SYNC_FILTER_INFO_FLAG_ITEM_LIST","features":[613]},{"name":"SYNC_FULL_ENUMERATION_ACTION","features":[613]},{"name":"SYNC_PROGRESS_STAGE","features":[613]},{"name":"SYNC_PROVIDER_CONFIGUI_CONFIGURATION_VERSION","features":[613]},{"name":"SYNC_PROVIDER_CONFIGURATION_VERSION","features":[613]},{"name":"SYNC_PROVIDER_ROLE","features":[613]},{"name":"SYNC_PROVIDER_STATE_DIRTY","features":[613]},{"name":"SYNC_PROVIDER_STATE_ENABLED","features":[613]},{"name":"SYNC_RANGE","features":[613]},{"name":"SYNC_REGISTRATION_EVENT","features":[613]},{"name":"SYNC_RESOLVE_ACTION","features":[613]},{"name":"SYNC_SERIALIZATION_VERSION","features":[613]},{"name":"SYNC_SERIALIZATION_VERSION_V1","features":[613]},{"name":"SYNC_SERIALIZATION_VERSION_V2","features":[613]},{"name":"SYNC_SERIALIZATION_VERSION_V3","features":[613]},{"name":"SYNC_SERIALIZE_REPLICA_KEY_MAP","features":[613]},{"name":"SYNC_SESSION_STATISTICS","features":[613]},{"name":"SYNC_STATISTICS","features":[613]},{"name":"SYNC_STATISTICS_RANGE_COUNT","features":[613]},{"name":"SYNC_TIME","features":[613]},{"name":"SYNC_VERSION","features":[613]},{"name":"SYNC_VERSION_FLAG_FROM_FEED","features":[613]},{"name":"SYNC_VERSION_FLAG_HAS_BY","features":[613]},{"name":"SyncProviderConfigUIConfiguration","features":[303,613]},{"name":"SyncProviderConfiguration","features":[613]},{"name":"SyncProviderRegistration","features":[613]}],"646":[{"name":"CIMTYPE_ENUMERATION","features":[553]},{"name":"CIM_BOOLEAN","features":[553]},{"name":"CIM_CHAR16","features":[553]},{"name":"CIM_DATETIME","features":[553]},{"name":"CIM_EMPTY","features":[553]},{"name":"CIM_FLAG_ARRAY","features":[553]},{"name":"CIM_ILLEGAL","features":[553]},{"name":"CIM_OBJECT","features":[553]},{"name":"CIM_REAL32","features":[553]},{"name":"CIM_REAL64","features":[553]},{"name":"CIM_REFERENCE","features":[553]},{"name":"CIM_SINT16","features":[553]},{"name":"CIM_SINT32","features":[553]},{"name":"CIM_SINT64","features":[553]},{"name":"CIM_SINT8","features":[553]},{"name":"CIM_STRING","features":[553]},{"name":"CIM_UINT16","features":[553]},{"name":"CIM_UINT32","features":[553]},{"name":"CIM_UINT64","features":[553]},{"name":"CIM_UINT8","features":[553]},{"name":"IEnumWbemClassObject","features":[553]},{"name":"IMofCompiler","features":[553]},{"name":"ISWbemDateTime","features":[354,553]},{"name":"ISWbemEventSource","features":[354,553]},{"name":"ISWbemLastError","features":[354,553]},{"name":"ISWbemLocator","features":[354,553]},{"name":"ISWbemMethod","features":[354,553]},{"name":"ISWbemMethodSet","features":[354,553]},{"name":"ISWbemNamedValue","features":[354,553]},{"name":"ISWbemNamedValueSet","features":[354,553]},{"name":"ISWbemObject","features":[354,553]},{"name":"ISWbemObjectEx","features":[354,553]},{"name":"ISWbemObjectPath","features":[354,553]},{"name":"ISWbemObjectSet","features":[354,553]},{"name":"ISWbemPrivilege","features":[354,553]},{"name":"ISWbemPrivilegeSet","features":[354,553]},{"name":"ISWbemProperty","features":[354,553]},{"name":"ISWbemPropertySet","features":[354,553]},{"name":"ISWbemQualifier","features":[354,553]},{"name":"ISWbemQualifierSet","features":[354,553]},{"name":"ISWbemRefreshableItem","features":[354,553]},{"name":"ISWbemRefresher","features":[354,553]},{"name":"ISWbemSecurity","features":[354,553]},{"name":"ISWbemServices","features":[354,553]},{"name":"ISWbemServicesEx","features":[354,553]},{"name":"ISWbemSink","features":[354,553]},{"name":"ISWbemSinkEvents","features":[354,553]},{"name":"IUnsecuredApartment","features":[553]},{"name":"IWMIExtension","features":[354,553]},{"name":"IWbemAddressResolution","features":[553]},{"name":"IWbemBackupRestore","features":[553]},{"name":"IWbemBackupRestoreEx","features":[553]},{"name":"IWbemCallResult","features":[553]},{"name":"IWbemClassObject","features":[553]},{"name":"IWbemClientConnectionTransport","features":[553]},{"name":"IWbemClientTransport","features":[553]},{"name":"IWbemConfigureRefresher","features":[553]},{"name":"IWbemConnectorLogin","features":[553]},{"name":"IWbemConstructClassObject","features":[553]},{"name":"IWbemContext","features":[553]},{"name":"IWbemDecoupledBasicEventProvider","features":[553]},{"name":"IWbemDecoupledRegistrar","features":[553]},{"name":"IWbemEventConsumerProvider","features":[553]},{"name":"IWbemEventProvider","features":[553]},{"name":"IWbemEventProviderQuerySink","features":[553]},{"name":"IWbemEventProviderSecurity","features":[553]},{"name":"IWbemEventSink","features":[553]},{"name":"IWbemHiPerfEnum","features":[553]},{"name":"IWbemHiPerfProvider","features":[553]},{"name":"IWbemLevel1Login","features":[553]},{"name":"IWbemLocator","features":[553]},{"name":"IWbemObjectAccess","features":[553]},{"name":"IWbemObjectSink","features":[553]},{"name":"IWbemObjectSinkEx","features":[553]},{"name":"IWbemObjectTextSrc","features":[553]},{"name":"IWbemPath","features":[553]},{"name":"IWbemPathKeyList","features":[553]},{"name":"IWbemPropertyProvider","features":[553]},{"name":"IWbemProviderIdentity","features":[553]},{"name":"IWbemProviderInit","features":[553]},{"name":"IWbemProviderInitSink","features":[553]},{"name":"IWbemQualifierSet","features":[553]},{"name":"IWbemQuery","features":[553]},{"name":"IWbemRefresher","features":[553]},{"name":"IWbemServices","features":[553]},{"name":"IWbemShutdown","features":[553]},{"name":"IWbemStatusCodeText","features":[553]},{"name":"IWbemTransport","features":[553]},{"name":"IWbemUnboundObjectSink","features":[553]},{"name":"IWbemUnsecuredApartment","features":[553]},{"name":"MI_ARRAY","features":[553]},{"name":"MI_Application","features":[553]},{"name":"MI_ApplicationFT","features":[553]},{"name":"MI_Application_InitializeV1","features":[553]},{"name":"MI_Array","features":[553]},{"name":"MI_ArrayField","features":[553]},{"name":"MI_BOOLEAN","features":[553]},{"name":"MI_BOOLEANA","features":[553]},{"name":"MI_BooleanA","features":[553]},{"name":"MI_BooleanAField","features":[553]},{"name":"MI_BooleanField","features":[553]},{"name":"MI_CALLBACKMODE_IGNORE","features":[553]},{"name":"MI_CALLBACKMODE_INQUIRE","features":[553]},{"name":"MI_CALLBACKMODE_REPORT","features":[553]},{"name":"MI_CALL_VERSION","features":[553]},{"name":"MI_CHAR16","features":[553]},{"name":"MI_CHAR16A","features":[553]},{"name":"MI_CHAR_TYPE","features":[553]},{"name":"MI_CallbackMode","features":[553]},{"name":"MI_CancelCallback","features":[553]},{"name":"MI_CancellationReason","features":[553]},{"name":"MI_Char16A","features":[553]},{"name":"MI_Char16AField","features":[553]},{"name":"MI_Char16Field","features":[553]},{"name":"MI_Class","features":[553]},{"name":"MI_ClassDecl","features":[553]},{"name":"MI_ClassFT","features":[553]},{"name":"MI_ClientFT_V1","features":[553]},{"name":"MI_ConstBooleanA","features":[553]},{"name":"MI_ConstBooleanAField","features":[553]},{"name":"MI_ConstBooleanField","features":[553]},{"name":"MI_ConstChar16A","features":[553]},{"name":"MI_ConstChar16AField","features":[553]},{"name":"MI_ConstChar16Field","features":[553]},{"name":"MI_ConstDatetimeA","features":[553]},{"name":"MI_ConstDatetimeAField","features":[553]},{"name":"MI_ConstDatetimeField","features":[553]},{"name":"MI_ConstInstanceA","features":[553]},{"name":"MI_ConstInstanceAField","features":[553]},{"name":"MI_ConstInstanceField","features":[553]},{"name":"MI_ConstReal32A","features":[553]},{"name":"MI_ConstReal32AField","features":[553]},{"name":"MI_ConstReal32Field","features":[553]},{"name":"MI_ConstReal64A","features":[553]},{"name":"MI_ConstReal64AField","features":[553]},{"name":"MI_ConstReal64Field","features":[553]},{"name":"MI_ConstReferenceA","features":[553]},{"name":"MI_ConstReferenceAField","features":[553]},{"name":"MI_ConstReferenceField","features":[553]},{"name":"MI_ConstSint16A","features":[553]},{"name":"MI_ConstSint16AField","features":[553]},{"name":"MI_ConstSint16Field","features":[553]},{"name":"MI_ConstSint32A","features":[553]},{"name":"MI_ConstSint32AField","features":[553]},{"name":"MI_ConstSint32Field","features":[553]},{"name":"MI_ConstSint64A","features":[553]},{"name":"MI_ConstSint64AField","features":[553]},{"name":"MI_ConstSint64Field","features":[553]},{"name":"MI_ConstSint8A","features":[553]},{"name":"MI_ConstSint8AField","features":[553]},{"name":"MI_ConstSint8Field","features":[553]},{"name":"MI_ConstStringA","features":[553]},{"name":"MI_ConstStringAField","features":[553]},{"name":"MI_ConstStringField","features":[553]},{"name":"MI_ConstUint16A","features":[553]},{"name":"MI_ConstUint16AField","features":[553]},{"name":"MI_ConstUint16Field","features":[553]},{"name":"MI_ConstUint32A","features":[553]},{"name":"MI_ConstUint32AField","features":[553]},{"name":"MI_ConstUint32Field","features":[553]},{"name":"MI_ConstUint64A","features":[553]},{"name":"MI_ConstUint64AField","features":[553]},{"name":"MI_ConstUint64Field","features":[553]},{"name":"MI_ConstUint8A","features":[553]},{"name":"MI_ConstUint8AField","features":[553]},{"name":"MI_ConstUint8Field","features":[553]},{"name":"MI_Context","features":[553]},{"name":"MI_ContextFT","features":[553]},{"name":"MI_DATETIME","features":[553]},{"name":"MI_DATETIMEA","features":[553]},{"name":"MI_Datetime","features":[553]},{"name":"MI_DatetimeA","features":[553]},{"name":"MI_DatetimeAField","features":[553]},{"name":"MI_DatetimeField","features":[553]},{"name":"MI_Deserializer","features":[553]},{"name":"MI_DeserializerFT","features":[553]},{"name":"MI_Deserializer_ClassObjectNeeded","features":[553]},{"name":"MI_DestinationOptions","features":[553]},{"name":"MI_DestinationOptionsFT","features":[553]},{"name":"MI_DestinationOptions_ImpersonationType","features":[553]},{"name":"MI_DestinationOptions_ImpersonationType_Default","features":[553]},{"name":"MI_DestinationOptions_ImpersonationType_Delegate","features":[553]},{"name":"MI_DestinationOptions_ImpersonationType_Identify","features":[553]},{"name":"MI_DestinationOptions_ImpersonationType_Impersonate","features":[553]},{"name":"MI_DestinationOptions_ImpersonationType_None","features":[553]},{"name":"MI_ERRORCATEGORY_ACCESS_DENIED","features":[553]},{"name":"MI_ERRORCATEGORY_AUTHENTICATION_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_CLOS_EERROR","features":[553]},{"name":"MI_ERRORCATEGORY_CONNECTION_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_DEADLOCK_DETECTED","features":[553]},{"name":"MI_ERRORCATEGORY_DEVICE_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_FROM_STDERR","features":[553]},{"name":"MI_ERRORCATEGORY_INVALID_ARGUMENT","features":[553]},{"name":"MI_ERRORCATEGORY_INVALID_DATA","features":[553]},{"name":"MI_ERRORCATEGORY_INVALID_OPERATION","features":[553]},{"name":"MI_ERRORCATEGORY_INVALID_RESULT","features":[553]},{"name":"MI_ERRORCATEGORY_INVALID_TYPE","features":[553]},{"name":"MI_ERRORCATEGORY_LIMITS_EXCEEDED","features":[553]},{"name":"MI_ERRORCATEGORY_METADATA_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_NOT_ENABLED","features":[553]},{"name":"MI_ERRORCATEGORY_NOT_IMPLEMENTED","features":[553]},{"name":"MI_ERRORCATEGORY_NOT_INSTALLED","features":[553]},{"name":"MI_ERRORCATEGORY_NOT_SPECIFIED","features":[553]},{"name":"MI_ERRORCATEGORY_OBJECT_NOT_FOUND","features":[553]},{"name":"MI_ERRORCATEGORY_OPEN_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_OPERATION_STOPPED","features":[553]},{"name":"MI_ERRORCATEGORY_OPERATION_TIMEOUT","features":[553]},{"name":"MI_ERRORCATEGORY_PARSER_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_PROTOCOL_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_QUOTA_EXCEEDED","features":[553]},{"name":"MI_ERRORCATEGORY_READ_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_RESOURCE_BUSY","features":[553]},{"name":"MI_ERRORCATEGORY_RESOURCE_EXISTS","features":[553]},{"name":"MI_ERRORCATEGORY_RESOURCE_UNAVAILABLE","features":[553]},{"name":"MI_ERRORCATEGORY_SECURITY_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_SYNTAX_ERROR","features":[553]},{"name":"MI_ERRORCATEGORY_WRITE_ERROR","features":[553]},{"name":"MI_ErrorCategory","features":[553]},{"name":"MI_FLAG_ABSTRACT","features":[553]},{"name":"MI_FLAG_ADOPT","features":[553]},{"name":"MI_FLAG_ANY","features":[553]},{"name":"MI_FLAG_ASSOCIATION","features":[553]},{"name":"MI_FLAG_BORROW","features":[553]},{"name":"MI_FLAG_CLASS","features":[553]},{"name":"MI_FLAG_DISABLEOVERRIDE","features":[553]},{"name":"MI_FLAG_ENABLEOVERRIDE","features":[553]},{"name":"MI_FLAG_EXPENSIVE","features":[553]},{"name":"MI_FLAG_EXTENDED","features":[553]},{"name":"MI_FLAG_IN","features":[553]},{"name":"MI_FLAG_INDICATION","features":[553]},{"name":"MI_FLAG_KEY","features":[553]},{"name":"MI_FLAG_METHOD","features":[553]},{"name":"MI_FLAG_NOT_MODIFIED","features":[553]},{"name":"MI_FLAG_NULL","features":[553]},{"name":"MI_FLAG_OUT","features":[553]},{"name":"MI_FLAG_PARAMETER","features":[553]},{"name":"MI_FLAG_PROPERTY","features":[553]},{"name":"MI_FLAG_READONLY","features":[553]},{"name":"MI_FLAG_REFERENCE","features":[553]},{"name":"MI_FLAG_REQUIRED","features":[553]},{"name":"MI_FLAG_RESTRICTED","features":[553]},{"name":"MI_FLAG_STATIC","features":[553]},{"name":"MI_FLAG_STREAM","features":[553]},{"name":"MI_FLAG_TERMINAL","features":[553]},{"name":"MI_FLAG_TOSUBCLASS","features":[553]},{"name":"MI_FLAG_TRANSLATABLE","features":[553]},{"name":"MI_FLAG_VERSION","features":[553]},{"name":"MI_FeatureDecl","features":[553]},{"name":"MI_Filter","features":[553]},{"name":"MI_FilterFT","features":[553]},{"name":"MI_HostedProvider","features":[553]},{"name":"MI_HostedProviderFT","features":[553]},{"name":"MI_INSTANCE","features":[553]},{"name":"MI_INSTANCEA","features":[553]},{"name":"MI_Instance","features":[553]},{"name":"MI_InstanceA","features":[553]},{"name":"MI_InstanceAField","features":[553]},{"name":"MI_InstanceExFT","features":[553]},{"name":"MI_InstanceFT","features":[553]},{"name":"MI_InstanceField","features":[553]},{"name":"MI_Interval","features":[553]},{"name":"MI_LOCALE_TYPE_CLOSEST_DATA","features":[553]},{"name":"MI_LOCALE_TYPE_CLOSEST_UI","features":[553]},{"name":"MI_LOCALE_TYPE_REQUESTED_DATA","features":[553]},{"name":"MI_LOCALE_TYPE_REQUESTED_UI","features":[553]},{"name":"MI_LocaleType","features":[553]},{"name":"MI_MAX_LOCALE_SIZE","features":[553]},{"name":"MI_MODULE_FLAG_BOOLEANS","features":[553]},{"name":"MI_MODULE_FLAG_CPLUSPLUS","features":[553]},{"name":"MI_MODULE_FLAG_DESCRIPTIONS","features":[553]},{"name":"MI_MODULE_FLAG_FILTER_SUPPORT","features":[553]},{"name":"MI_MODULE_FLAG_LOCALIZED","features":[553]},{"name":"MI_MODULE_FLAG_MAPPING_STRINGS","features":[553]},{"name":"MI_MODULE_FLAG_STANDARD_QUALIFIERS","features":[553]},{"name":"MI_MODULE_FLAG_VALUES","features":[553]},{"name":"MI_MainFunction","features":[553]},{"name":"MI_MethodDecl","features":[553]},{"name":"MI_MethodDecl_Invoke","features":[553]},{"name":"MI_Module","features":[553]},{"name":"MI_Module_Load","features":[553]},{"name":"MI_Module_Self","features":[553]},{"name":"MI_Module_Unload","features":[553]},{"name":"MI_OPERATIONFLAGS_BASIC_RTTI","features":[553]},{"name":"MI_OPERATIONFLAGS_DEFAULT_RTTI","features":[553]},{"name":"MI_OPERATIONFLAGS_EXPENSIVE_PROPERTIES","features":[553]},{"name":"MI_OPERATIONFLAGS_FULL_RTTI","features":[553]},{"name":"MI_OPERATIONFLAGS_LOCALIZED_QUALIFIERS","features":[553]},{"name":"MI_OPERATIONFLAGS_MANUAL_ACK_RESULTS","features":[553]},{"name":"MI_OPERATIONFLAGS_NO_RTTI","features":[553]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_DEEP_BASE_PROPS_ONLY","features":[553]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_SHALLOW","features":[553]},{"name":"MI_OPERATIONFLAGS_REPORT_OPERATION_STARTED","features":[553]},{"name":"MI_OPERATIONFLAGS_STANDARD_RTTI","features":[553]},{"name":"MI_ObjectDecl","features":[553]},{"name":"MI_Operation","features":[553]},{"name":"MI_OperationCallback_Class","features":[553]},{"name":"MI_OperationCallback_Indication","features":[553]},{"name":"MI_OperationCallback_Instance","features":[553]},{"name":"MI_OperationCallback_PromptUser","features":[553]},{"name":"MI_OperationCallback_ResponseType","features":[553]},{"name":"MI_OperationCallback_ResponseType_No","features":[553]},{"name":"MI_OperationCallback_ResponseType_NoToAll","features":[553]},{"name":"MI_OperationCallback_ResponseType_Yes","features":[553]},{"name":"MI_OperationCallback_ResponseType_YesToAll","features":[553]},{"name":"MI_OperationCallback_StreamedParameter","features":[553]},{"name":"MI_OperationCallback_WriteError","features":[553]},{"name":"MI_OperationCallback_WriteMessage","features":[553]},{"name":"MI_OperationCallback_WriteProgress","features":[553]},{"name":"MI_OperationCallbacks","features":[553]},{"name":"MI_OperationFT","features":[553]},{"name":"MI_OperationOptions","features":[553]},{"name":"MI_OperationOptionsFT","features":[553]},{"name":"MI_PROMPTTYPE_CRITICAL","features":[553]},{"name":"MI_PROMPTTYPE_NORMAL","features":[553]},{"name":"MI_PROVIDER_ARCHITECTURE_32BIT","features":[553]},{"name":"MI_PROVIDER_ARCHITECTURE_64BIT","features":[553]},{"name":"MI_ParameterDecl","features":[553]},{"name":"MI_ParameterSet","features":[553]},{"name":"MI_ParameterSetFT","features":[553]},{"name":"MI_PromptType","features":[553]},{"name":"MI_PropertyDecl","features":[553]},{"name":"MI_PropertySet","features":[553]},{"name":"MI_PropertySetFT","features":[553]},{"name":"MI_ProviderArchitecture","features":[553]},{"name":"MI_ProviderFT","features":[553]},{"name":"MI_ProviderFT_AssociatorInstances","features":[553]},{"name":"MI_ProviderFT_CreateInstance","features":[553]},{"name":"MI_ProviderFT_DeleteInstance","features":[553]},{"name":"MI_ProviderFT_DisableIndications","features":[553]},{"name":"MI_ProviderFT_EnableIndications","features":[553]},{"name":"MI_ProviderFT_EnumerateInstances","features":[553]},{"name":"MI_ProviderFT_GetInstance","features":[553]},{"name":"MI_ProviderFT_Invoke","features":[553]},{"name":"MI_ProviderFT_Load","features":[553]},{"name":"MI_ProviderFT_ModifyInstance","features":[553]},{"name":"MI_ProviderFT_ReferenceInstances","features":[553]},{"name":"MI_ProviderFT_Subscribe","features":[553]},{"name":"MI_ProviderFT_Unload","features":[553]},{"name":"MI_ProviderFT_Unsubscribe","features":[553]},{"name":"MI_Qualifier","features":[553]},{"name":"MI_QualifierDecl","features":[553]},{"name":"MI_QualifierSet","features":[553]},{"name":"MI_QualifierSetFT","features":[553]},{"name":"MI_REAL32","features":[553]},{"name":"MI_REAL32A","features":[553]},{"name":"MI_REAL64","features":[553]},{"name":"MI_REAL64A","features":[553]},{"name":"MI_REASON_NONE","features":[553]},{"name":"MI_REASON_SERVICESTOP","features":[553]},{"name":"MI_REASON_SHUTDOWN","features":[553]},{"name":"MI_REASON_TIMEOUT","features":[553]},{"name":"MI_REFERENCE","features":[553]},{"name":"MI_REFERENCEA","features":[553]},{"name":"MI_RESULT_ACCESS_DENIED","features":[553]},{"name":"MI_RESULT_ALREADY_EXISTS","features":[553]},{"name":"MI_RESULT_CLASS_HAS_CHILDREN","features":[553]},{"name":"MI_RESULT_CLASS_HAS_INSTANCES","features":[553]},{"name":"MI_RESULT_CONTINUATION_ON_ERROR_NOT_SUPPORTED","features":[553]},{"name":"MI_RESULT_FAILED","features":[553]},{"name":"MI_RESULT_FILTERED_ENUMERATION_NOT_SUPPORTED","features":[553]},{"name":"MI_RESULT_INVALID_CLASS","features":[553]},{"name":"MI_RESULT_INVALID_ENUMERATION_CONTEXT","features":[553]},{"name":"MI_RESULT_INVALID_NAMESPACE","features":[553]},{"name":"MI_RESULT_INVALID_OPERATION_TIMEOUT","features":[553]},{"name":"MI_RESULT_INVALID_PARAMETER","features":[553]},{"name":"MI_RESULT_INVALID_QUERY","features":[553]},{"name":"MI_RESULT_INVALID_SUPERCLASS","features":[553]},{"name":"MI_RESULT_METHOD_NOT_AVAILABLE","features":[553]},{"name":"MI_RESULT_METHOD_NOT_FOUND","features":[553]},{"name":"MI_RESULT_NAMESPACE_NOT_EMPTY","features":[553]},{"name":"MI_RESULT_NOT_FOUND","features":[553]},{"name":"MI_RESULT_NOT_SUPPORTED","features":[553]},{"name":"MI_RESULT_NO_SUCH_PROPERTY","features":[553]},{"name":"MI_RESULT_OK","features":[553]},{"name":"MI_RESULT_PULL_CANNOT_BE_ABANDONED","features":[553]},{"name":"MI_RESULT_PULL_HAS_BEEN_ABANDONED","features":[553]},{"name":"MI_RESULT_QUERY_LANGUAGE_NOT_SUPPORTED","features":[553]},{"name":"MI_RESULT_SERVER_IS_SHUTTING_DOWN","features":[553]},{"name":"MI_RESULT_SERVER_LIMITS_EXCEEDED","features":[553]},{"name":"MI_RESULT_TYPE_MISMATCH","features":[553]},{"name":"MI_Real32A","features":[553]},{"name":"MI_Real32AField","features":[553]},{"name":"MI_Real32Field","features":[553]},{"name":"MI_Real64A","features":[553]},{"name":"MI_Real64AField","features":[553]},{"name":"MI_Real64Field","features":[553]},{"name":"MI_ReferenceA","features":[553]},{"name":"MI_ReferenceAField","features":[553]},{"name":"MI_ReferenceField","features":[553]},{"name":"MI_Result","features":[553]},{"name":"MI_SERIALIZER_FLAGS_CLASS_DEEP","features":[553]},{"name":"MI_SERIALIZER_FLAGS_INSTANCE_WITH_CLASS","features":[553]},{"name":"MI_SINT16","features":[553]},{"name":"MI_SINT16A","features":[553]},{"name":"MI_SINT32","features":[553]},{"name":"MI_SINT32A","features":[553]},{"name":"MI_SINT64","features":[553]},{"name":"MI_SINT64A","features":[553]},{"name":"MI_SINT8","features":[553]},{"name":"MI_SINT8A","features":[553]},{"name":"MI_STRING","features":[553]},{"name":"MI_STRINGA","features":[553]},{"name":"MI_SUBSCRIBE_BOOKMARK_NEWEST","features":[553]},{"name":"MI_SUBSCRIBE_BOOKMARK_OLDEST","features":[553]},{"name":"MI_SchemaDecl","features":[553]},{"name":"MI_Serializer","features":[553]},{"name":"MI_SerializerFT","features":[553]},{"name":"MI_Server","features":[553]},{"name":"MI_ServerFT","features":[553]},{"name":"MI_Session","features":[553]},{"name":"MI_SessionCallbacks","features":[553]},{"name":"MI_SessionFT","features":[553]},{"name":"MI_Sint16A","features":[553]},{"name":"MI_Sint16AField","features":[553]},{"name":"MI_Sint16Field","features":[553]},{"name":"MI_Sint32A","features":[553]},{"name":"MI_Sint32AField","features":[553]},{"name":"MI_Sint32Field","features":[553]},{"name":"MI_Sint64A","features":[553]},{"name":"MI_Sint64AField","features":[553]},{"name":"MI_Sint64Field","features":[553]},{"name":"MI_Sint8A","features":[553]},{"name":"MI_Sint8AField","features":[553]},{"name":"MI_Sint8Field","features":[553]},{"name":"MI_StringA","features":[553]},{"name":"MI_StringAField","features":[553]},{"name":"MI_StringField","features":[553]},{"name":"MI_SubscriptionDeliveryOptions","features":[553]},{"name":"MI_SubscriptionDeliveryOptionsFT","features":[553]},{"name":"MI_SubscriptionDeliveryType","features":[553]},{"name":"MI_SubscriptionDeliveryType_Pull","features":[553]},{"name":"MI_SubscriptionDeliveryType_Push","features":[553]},{"name":"MI_Timestamp","features":[553]},{"name":"MI_Type","features":[553]},{"name":"MI_UINT16","features":[553]},{"name":"MI_UINT16A","features":[553]},{"name":"MI_UINT32","features":[553]},{"name":"MI_UINT32A","features":[553]},{"name":"MI_UINT64","features":[553]},{"name":"MI_UINT64A","features":[553]},{"name":"MI_UINT8","features":[553]},{"name":"MI_UINT8A","features":[553]},{"name":"MI_Uint16A","features":[553]},{"name":"MI_Uint16AField","features":[553]},{"name":"MI_Uint16Field","features":[553]},{"name":"MI_Uint32A","features":[553]},{"name":"MI_Uint32AField","features":[553]},{"name":"MI_Uint32Field","features":[553]},{"name":"MI_Uint64A","features":[553]},{"name":"MI_Uint64AField","features":[553]},{"name":"MI_Uint64Field","features":[553]},{"name":"MI_Uint8A","features":[553]},{"name":"MI_Uint8AField","features":[553]},{"name":"MI_Uint8Field","features":[553]},{"name":"MI_UserCredentials","features":[553]},{"name":"MI_UsernamePasswordCreds","features":[553]},{"name":"MI_UtilitiesFT","features":[553]},{"name":"MI_Value","features":[553]},{"name":"MI_WRITEMESSAGE_CHANNEL_DEBUG","features":[553]},{"name":"MI_WRITEMESSAGE_CHANNEL_VERBOSE","features":[553]},{"name":"MI_WRITEMESSAGE_CHANNEL_WARNING","features":[553]},{"name":"MofCompiler","features":[553]},{"name":"SWbemAnalysisMatrix","features":[303,553]},{"name":"SWbemAnalysisMatrixList","features":[303,553]},{"name":"SWbemAssocQueryInf","features":[553]},{"name":"SWbemDateTime","features":[553]},{"name":"SWbemEventSource","features":[553]},{"name":"SWbemLastError","features":[553]},{"name":"SWbemLocator","features":[553]},{"name":"SWbemMethod","features":[553]},{"name":"SWbemMethodSet","features":[553]},{"name":"SWbemNamedValue","features":[553]},{"name":"SWbemNamedValueSet","features":[553]},{"name":"SWbemObject","features":[553]},{"name":"SWbemObjectEx","features":[553]},{"name":"SWbemObjectPath","features":[553]},{"name":"SWbemObjectSet","features":[553]},{"name":"SWbemPrivilege","features":[553]},{"name":"SWbemPrivilegeSet","features":[553]},{"name":"SWbemProperty","features":[553]},{"name":"SWbemPropertySet","features":[553]},{"name":"SWbemQualifier","features":[553]},{"name":"SWbemQualifierSet","features":[553]},{"name":"SWbemQueryQualifiedName","features":[303,553]},{"name":"SWbemRefreshableItem","features":[553]},{"name":"SWbemRefresher","features":[553]},{"name":"SWbemRpnConst","features":[303,553]},{"name":"SWbemRpnEncodedQuery","features":[303,553]},{"name":"SWbemRpnQueryToken","features":[303,553]},{"name":"SWbemRpnTokenList","features":[553]},{"name":"SWbemSecurity","features":[553]},{"name":"SWbemServices","features":[553]},{"name":"SWbemServicesEx","features":[553]},{"name":"SWbemSink","features":[553]},{"name":"UnsecuredApartment","features":[553]},{"name":"WBEMESS_E_AUTHZ_NOT_PRIVILEGED","features":[553]},{"name":"WBEMESS_E_REGISTRATION_TOO_BROAD","features":[553]},{"name":"WBEMESS_E_REGISTRATION_TOO_PRECISE","features":[553]},{"name":"WBEMMOF_E_ALIASES_IN_EMBEDDED","features":[553]},{"name":"WBEMMOF_E_CIMTYPE_QUALIFIER","features":[553]},{"name":"WBEMMOF_E_DUPLICATE_PROPERTY","features":[553]},{"name":"WBEMMOF_E_DUPLICATE_QUALIFIER","features":[553]},{"name":"WBEMMOF_E_ERROR_CREATING_TEMP_FILE","features":[553]},{"name":"WBEMMOF_E_ERROR_INVALID_INCLUDE_FILE","features":[553]},{"name":"WBEMMOF_E_EXPECTED_ALIAS_NAME","features":[553]},{"name":"WBEMMOF_E_EXPECTED_BRACE_OR_BAD_TYPE","features":[553]},{"name":"WBEMMOF_E_EXPECTED_CLASS_NAME","features":[553]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACE","features":[553]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACKET","features":[553]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_PAREN","features":[553]},{"name":"WBEMMOF_E_EXPECTED_DOLLAR","features":[553]},{"name":"WBEMMOF_E_EXPECTED_FLAVOR_TYPE","features":[553]},{"name":"WBEMMOF_E_EXPECTED_OPEN_BRACE","features":[553]},{"name":"WBEMMOF_E_EXPECTED_OPEN_PAREN","features":[553]},{"name":"WBEMMOF_E_EXPECTED_PROPERTY_NAME","features":[553]},{"name":"WBEMMOF_E_EXPECTED_QUALIFIER_NAME","features":[553]},{"name":"WBEMMOF_E_EXPECTED_SEMI","features":[553]},{"name":"WBEMMOF_E_EXPECTED_TYPE_IDENTIFIER","features":[553]},{"name":"WBEMMOF_E_ILLEGAL_CONSTANT_VALUE","features":[553]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES","features":[553]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES2","features":[553]},{"name":"WBEMMOF_E_INVALID_AMENDMENT_SYNTAX","features":[553]},{"name":"WBEMMOF_E_INVALID_CLASS_DECLARATION","features":[553]},{"name":"WBEMMOF_E_INVALID_DELETECLASS_SYNTAX","features":[553]},{"name":"WBEMMOF_E_INVALID_DELETEINSTANCE_SYNTAX","features":[553]},{"name":"WBEMMOF_E_INVALID_DUPLICATE_AMENDMENT","features":[553]},{"name":"WBEMMOF_E_INVALID_FILE","features":[553]},{"name":"WBEMMOF_E_INVALID_FLAGS_SYNTAX","features":[553]},{"name":"WBEMMOF_E_INVALID_INSTANCE_DECLARATION","features":[553]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SPECIFICATION","features":[553]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SYNTAX","features":[553]},{"name":"WBEMMOF_E_INVALID_PRAGMA","features":[553]},{"name":"WBEMMOF_E_INVALID_QUALIFIER_SYNTAX","features":[553]},{"name":"WBEMMOF_E_MULTIPLE_ALIASES","features":[553]},{"name":"WBEMMOF_E_MUST_BE_IN_OR_OUT","features":[553]},{"name":"WBEMMOF_E_NO_ARRAYS_RETURNED","features":[553]},{"name":"WBEMMOF_E_NULL_ARRAY_ELEM","features":[553]},{"name":"WBEMMOF_E_OUT_OF_RANGE","features":[553]},{"name":"WBEMMOF_E_QUALIFIER_USED_OUTSIDE_SCOPE","features":[553]},{"name":"WBEMMOF_E_TYPEDEF_NOT_SUPPORTED","features":[553]},{"name":"WBEMMOF_E_TYPE_MISMATCH","features":[553]},{"name":"WBEMMOF_E_UNEXPECTED_ALIAS","features":[553]},{"name":"WBEMMOF_E_UNEXPECTED_ARRAY_INIT","features":[553]},{"name":"WBEMMOF_E_UNRECOGNIZED_TOKEN","features":[553]},{"name":"WBEMMOF_E_UNRECOGNIZED_TYPE","features":[553]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_DATA_TYPE","features":[553]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_QUAL_VALUE","features":[553]},{"name":"WBEMPATH_COMPRESSED","features":[553]},{"name":"WBEMPATH_CREATE_ACCEPT_ABSOLUTE","features":[553]},{"name":"WBEMPATH_CREATE_ACCEPT_ALL","features":[553]},{"name":"WBEMPATH_CREATE_ACCEPT_RELATIVE","features":[553]},{"name":"WBEMPATH_GET_NAMESPACE_ONLY","features":[553]},{"name":"WBEMPATH_GET_ORIGINAL","features":[553]},{"name":"WBEMPATH_GET_RELATIVE_ONLY","features":[553]},{"name":"WBEMPATH_GET_SERVER_AND_NAMESPACE_ONLY","features":[553]},{"name":"WBEMPATH_GET_SERVER_TOO","features":[553]},{"name":"WBEMPATH_INFO_ANON_LOCAL_MACHINE","features":[553]},{"name":"WBEMPATH_INFO_CIM_COMPLIANT","features":[553]},{"name":"WBEMPATH_INFO_CONTAINS_SINGLETON","features":[553]},{"name":"WBEMPATH_INFO_HAS_IMPLIED_KEY","features":[553]},{"name":"WBEMPATH_INFO_HAS_MACHINE_NAME","features":[553]},{"name":"WBEMPATH_INFO_HAS_SUBSCOPES","features":[553]},{"name":"WBEMPATH_INFO_HAS_V2_REF_PATHS","features":[553]},{"name":"WBEMPATH_INFO_IS_CLASS_REF","features":[553]},{"name":"WBEMPATH_INFO_IS_COMPOUND","features":[553]},{"name":"WBEMPATH_INFO_IS_INST_REF","features":[553]},{"name":"WBEMPATH_INFO_IS_PARENT","features":[553]},{"name":"WBEMPATH_INFO_IS_SINGLETON","features":[553]},{"name":"WBEMPATH_INFO_NATIVE_PATH","features":[553]},{"name":"WBEMPATH_INFO_PATH_HAD_SERVER","features":[553]},{"name":"WBEMPATH_INFO_SERVER_NAMESPACE_ONLY","features":[553]},{"name":"WBEMPATH_INFO_V1_COMPLIANT","features":[553]},{"name":"WBEMPATH_INFO_V2_COMPLIANT","features":[553]},{"name":"WBEMPATH_INFO_WMI_PATH","features":[553]},{"name":"WBEMPATH_QUOTEDTEXT","features":[553]},{"name":"WBEMPATH_TEXT","features":[553]},{"name":"WBEMPATH_TREAT_SINGLE_IDENT_AS_NS","features":[553]},{"name":"WBEMSTATUS","features":[553]},{"name":"WBEMSTATUS_FORMAT","features":[553]},{"name":"WBEMSTATUS_FORMAT_NEWLINE","features":[553]},{"name":"WBEMSTATUS_FORMAT_NO_NEWLINE","features":[553]},{"name":"WBEMS_DISPID_COMPLETED","features":[553]},{"name":"WBEMS_DISPID_CONNECTION_READY","features":[553]},{"name":"WBEMS_DISPID_DERIVATION","features":[553]},{"name":"WBEMS_DISPID_OBJECT_PUT","features":[553]},{"name":"WBEMS_DISPID_OBJECT_READY","features":[553]},{"name":"WBEMS_DISPID_PROGRESS","features":[553]},{"name":"WBEM_AUTHENTICATION_METHOD_MASK","features":[553]},{"name":"WBEM_BACKUP_RESTORE_FLAGS","features":[553]},{"name":"WBEM_BATCH_TYPE","features":[553]},{"name":"WBEM_CHANGE_FLAG_TYPE","features":[553]},{"name":"WBEM_COMPARISON_FLAG","features":[553]},{"name":"WBEM_COMPARISON_INCLUDE_ALL","features":[553]},{"name":"WBEM_COMPILER_OPTIONS","features":[553]},{"name":"WBEM_COMPILE_STATUS_INFO","features":[553]},{"name":"WBEM_CONDITION_FLAG_TYPE","features":[553]},{"name":"WBEM_CONNECT_OPTIONS","features":[553]},{"name":"WBEM_ENABLE","features":[553]},{"name":"WBEM_EXTRA_RETURN_CODES","features":[553]},{"name":"WBEM_E_ACCESS_DENIED","features":[553]},{"name":"WBEM_E_AGGREGATING_BY_OBJECT","features":[553]},{"name":"WBEM_E_ALREADY_EXISTS","features":[553]},{"name":"WBEM_E_AMBIGUOUS_OPERATION","features":[553]},{"name":"WBEM_E_AMENDED_OBJECT","features":[553]},{"name":"WBEM_E_BACKUP_RESTORE_WINMGMT_RUNNING","features":[553]},{"name":"WBEM_E_BUFFER_TOO_SMALL","features":[553]},{"name":"WBEM_E_CALL_CANCELLED","features":[553]},{"name":"WBEM_E_CANNOT_BE_ABSTRACT","features":[553]},{"name":"WBEM_E_CANNOT_BE_KEY","features":[553]},{"name":"WBEM_E_CANNOT_BE_SINGLETON","features":[553]},{"name":"WBEM_E_CANNOT_CHANGE_INDEX_INHERITANCE","features":[553]},{"name":"WBEM_E_CANNOT_CHANGE_KEY_INHERITANCE","features":[553]},{"name":"WBEM_E_CIRCULAR_REFERENCE","features":[553]},{"name":"WBEM_E_CLASS_HAS_CHILDREN","features":[553]},{"name":"WBEM_E_CLASS_HAS_INSTANCES","features":[553]},{"name":"WBEM_E_CLASS_NAME_TOO_WIDE","features":[553]},{"name":"WBEM_E_CLIENT_TOO_SLOW","features":[553]},{"name":"WBEM_E_CONNECTION_FAILED","features":[553]},{"name":"WBEM_E_CRITICAL_ERROR","features":[553]},{"name":"WBEM_E_DATABASE_VER_MISMATCH","features":[553]},{"name":"WBEM_E_ENCRYPTED_CONNECTION_REQUIRED","features":[553]},{"name":"WBEM_E_FAILED","features":[553]},{"name":"WBEM_E_FATAL_TRANSPORT_ERROR","features":[553]},{"name":"WBEM_E_HANDLE_OUT_OF_DATE","features":[553]},{"name":"WBEM_E_ILLEGAL_NULL","features":[553]},{"name":"WBEM_E_ILLEGAL_OPERATION","features":[553]},{"name":"WBEM_E_INCOMPLETE_CLASS","features":[553]},{"name":"WBEM_E_INITIALIZATION_FAILURE","features":[553]},{"name":"WBEM_E_INVALID_ASSOCIATION","features":[553]},{"name":"WBEM_E_INVALID_CIM_TYPE","features":[553]},{"name":"WBEM_E_INVALID_CLASS","features":[553]},{"name":"WBEM_E_INVALID_CONTEXT","features":[553]},{"name":"WBEM_E_INVALID_DUPLICATE_PARAMETER","features":[553]},{"name":"WBEM_E_INVALID_FLAVOR","features":[553]},{"name":"WBEM_E_INVALID_HANDLE_REQUEST","features":[553]},{"name":"WBEM_E_INVALID_LOCALE","features":[553]},{"name":"WBEM_E_INVALID_METHOD","features":[553]},{"name":"WBEM_E_INVALID_METHOD_PARAMETERS","features":[553]},{"name":"WBEM_E_INVALID_NAMESPACE","features":[553]},{"name":"WBEM_E_INVALID_OBJECT","features":[553]},{"name":"WBEM_E_INVALID_OBJECT_PATH","features":[553]},{"name":"WBEM_E_INVALID_OPERATION","features":[553]},{"name":"WBEM_E_INVALID_OPERATOR","features":[553]},{"name":"WBEM_E_INVALID_PARAMETER","features":[553]},{"name":"WBEM_E_INVALID_PARAMETER_ID","features":[553]},{"name":"WBEM_E_INVALID_PROPERTY","features":[553]},{"name":"WBEM_E_INVALID_PROPERTY_TYPE","features":[553]},{"name":"WBEM_E_INVALID_PROVIDER_REGISTRATION","features":[553]},{"name":"WBEM_E_INVALID_QUALIFIER","features":[553]},{"name":"WBEM_E_INVALID_QUALIFIER_TYPE","features":[553]},{"name":"WBEM_E_INVALID_QUERY","features":[553]},{"name":"WBEM_E_INVALID_QUERY_TYPE","features":[553]},{"name":"WBEM_E_INVALID_STREAM","features":[553]},{"name":"WBEM_E_INVALID_SUPERCLASS","features":[553]},{"name":"WBEM_E_INVALID_SYNTAX","features":[553]},{"name":"WBEM_E_LOCAL_CREDENTIALS","features":[553]},{"name":"WBEM_E_MARSHAL_INVALID_SIGNATURE","features":[553]},{"name":"WBEM_E_MARSHAL_VERSION_MISMATCH","features":[553]},{"name":"WBEM_E_METHOD_DISABLED","features":[553]},{"name":"WBEM_E_METHOD_NAME_TOO_WIDE","features":[553]},{"name":"WBEM_E_METHOD_NOT_IMPLEMENTED","features":[553]},{"name":"WBEM_E_MISSING_AGGREGATION_LIST","features":[553]},{"name":"WBEM_E_MISSING_GROUP_WITHIN","features":[553]},{"name":"WBEM_E_MISSING_PARAMETER_ID","features":[553]},{"name":"WBEM_E_NONCONSECUTIVE_PARAMETER_IDS","features":[553]},{"name":"WBEM_E_NONDECORATED_OBJECT","features":[553]},{"name":"WBEM_E_NOT_AVAILABLE","features":[553]},{"name":"WBEM_E_NOT_EVENT_CLASS","features":[553]},{"name":"WBEM_E_NOT_FOUND","features":[553]},{"name":"WBEM_E_NOT_SUPPORTED","features":[553]},{"name":"WBEM_E_NO_KEY","features":[553]},{"name":"WBEM_E_NO_SCHEMA","features":[553]},{"name":"WBEM_E_NULL_SECURITY_DESCRIPTOR","features":[553]},{"name":"WBEM_E_OUT_OF_DISK_SPACE","features":[553]},{"name":"WBEM_E_OUT_OF_MEMORY","features":[553]},{"name":"WBEM_E_OVERRIDE_NOT_ALLOWED","features":[553]},{"name":"WBEM_E_PARAMETER_ID_ON_RETVAL","features":[553]},{"name":"WBEM_E_PRIVILEGE_NOT_HELD","features":[553]},{"name":"WBEM_E_PROPAGATED_METHOD","features":[553]},{"name":"WBEM_E_PROPAGATED_PROPERTY","features":[553]},{"name":"WBEM_E_PROPAGATED_QUALIFIER","features":[553]},{"name":"WBEM_E_PROPERTY_NAME_TOO_WIDE","features":[553]},{"name":"WBEM_E_PROPERTY_NOT_AN_OBJECT","features":[553]},{"name":"WBEM_E_PROVIDER_ALREADY_REGISTERED","features":[553]},{"name":"WBEM_E_PROVIDER_DISABLED","features":[553]},{"name":"WBEM_E_PROVIDER_FAILURE","features":[553]},{"name":"WBEM_E_PROVIDER_LOAD_FAILURE","features":[553]},{"name":"WBEM_E_PROVIDER_NOT_CAPABLE","features":[553]},{"name":"WBEM_E_PROVIDER_NOT_FOUND","features":[553]},{"name":"WBEM_E_PROVIDER_NOT_REGISTERED","features":[553]},{"name":"WBEM_E_PROVIDER_SUSPENDED","features":[553]},{"name":"WBEM_E_PROVIDER_TIMED_OUT","features":[553]},{"name":"WBEM_E_QUALIFIER_NAME_TOO_WIDE","features":[553]},{"name":"WBEM_E_QUERY_NOT_IMPLEMENTED","features":[553]},{"name":"WBEM_E_QUEUE_OVERFLOW","features":[553]},{"name":"WBEM_E_QUOTA_VIOLATION","features":[553]},{"name":"WBEM_E_READ_ONLY","features":[553]},{"name":"WBEM_E_REFRESHER_BUSY","features":[553]},{"name":"WBEM_E_RERUN_COMMAND","features":[553]},{"name":"WBEM_E_RESERVED_001","features":[553]},{"name":"WBEM_E_RESERVED_002","features":[553]},{"name":"WBEM_E_RESOURCE_CONTENTION","features":[553]},{"name":"WBEM_E_RETRY_LATER","features":[553]},{"name":"WBEM_E_SERVER_TOO_BUSY","features":[553]},{"name":"WBEM_E_SHUTTING_DOWN","features":[553]},{"name":"WBEM_E_SYNCHRONIZATION_REQUIRED","features":[553]},{"name":"WBEM_E_SYSTEM_PROPERTY","features":[553]},{"name":"WBEM_E_TIMED_OUT","features":[553]},{"name":"WBEM_E_TOO_MANY_PROPERTIES","features":[553]},{"name":"WBEM_E_TOO_MUCH_DATA","features":[553]},{"name":"WBEM_E_TRANSPORT_FAILURE","features":[553]},{"name":"WBEM_E_TYPE_MISMATCH","features":[553]},{"name":"WBEM_E_UNEXPECTED","features":[553]},{"name":"WBEM_E_UNINTERPRETABLE_PROVIDER_QUERY","features":[553]},{"name":"WBEM_E_UNKNOWN_OBJECT_TYPE","features":[553]},{"name":"WBEM_E_UNKNOWN_PACKET_TYPE","features":[553]},{"name":"WBEM_E_UNPARSABLE_QUERY","features":[553]},{"name":"WBEM_E_UNSUPPORTED_CLASS_UPDATE","features":[553]},{"name":"WBEM_E_UNSUPPORTED_LOCALE","features":[553]},{"name":"WBEM_E_UNSUPPORTED_PARAMETER","features":[553]},{"name":"WBEM_E_UNSUPPORTED_PUT_EXTENSION","features":[553]},{"name":"WBEM_E_UPDATE_OVERRIDE_NOT_ALLOWED","features":[553]},{"name":"WBEM_E_UPDATE_PROPAGATED_METHOD","features":[553]},{"name":"WBEM_E_UPDATE_TYPE_MISMATCH","features":[553]},{"name":"WBEM_E_VALUE_OUT_OF_RANGE","features":[553]},{"name":"WBEM_E_VETO_DELETE","features":[553]},{"name":"WBEM_E_VETO_PUT","features":[553]},{"name":"WBEM_FLAG_ADVISORY","features":[553]},{"name":"WBEM_FLAG_ALLOW_READ","features":[553]},{"name":"WBEM_FLAG_ALWAYS","features":[553]},{"name":"WBEM_FLAG_AUTORECOVER","features":[553]},{"name":"WBEM_FLAG_BACKUP_RESTORE_DEFAULT","features":[553]},{"name":"WBEM_FLAG_BACKUP_RESTORE_FORCE_SHUTDOWN","features":[553]},{"name":"WBEM_FLAG_BATCH_IF_NEEDED","features":[553]},{"name":"WBEM_FLAG_BIDIRECTIONAL","features":[553]},{"name":"WBEM_FLAG_CHECK_ONLY","features":[553]},{"name":"WBEM_FLAG_CLASS_LOCAL_AND_OVERRIDES","features":[553]},{"name":"WBEM_FLAG_CLASS_OVERRIDES_ONLY","features":[553]},{"name":"WBEM_FLAG_CONNECT_PROVIDERS","features":[553]},{"name":"WBEM_FLAG_CONNECT_REPOSITORY_ONLY","features":[553]},{"name":"WBEM_FLAG_CONNECT_USE_MAX_WAIT","features":[553]},{"name":"WBEM_FLAG_CONSOLE_PRINT","features":[553]},{"name":"WBEM_FLAG_CREATE_ONLY","features":[553]},{"name":"WBEM_FLAG_CREATE_OR_UPDATE","features":[553]},{"name":"WBEM_FLAG_DEEP","features":[553]},{"name":"WBEM_FLAG_DIRECT_READ","features":[553]},{"name":"WBEM_FLAG_DONT_ADD_TO_LIST","features":[553]},{"name":"WBEM_FLAG_DONT_SEND_STATUS","features":[553]},{"name":"WBEM_FLAG_ENSURE_LOCATABLE","features":[553]},{"name":"WBEM_FLAG_EXCLUDE_OBJECT_QUALIFIERS","features":[553]},{"name":"WBEM_FLAG_EXCLUDE_PROPERTY_QUALIFIERS","features":[553]},{"name":"WBEM_FLAG_FORWARD_ONLY","features":[553]},{"name":"WBEM_FLAG_IGNORE_CASE","features":[553]},{"name":"WBEM_FLAG_IGNORE_CLASS","features":[553]},{"name":"WBEM_FLAG_IGNORE_DEFAULT_VALUES","features":[553]},{"name":"WBEM_FLAG_IGNORE_FLAVOR","features":[553]},{"name":"WBEM_FLAG_IGNORE_OBJECT_SOURCE","features":[553]},{"name":"WBEM_FLAG_IGNORE_QUALIFIERS","features":[553]},{"name":"WBEM_FLAG_INPROC_LOGIN","features":[553]},{"name":"WBEM_FLAG_KEYS_ONLY","features":[553]},{"name":"WBEM_FLAG_LOCAL_LOGIN","features":[553]},{"name":"WBEM_FLAG_LOCAL_ONLY","features":[553]},{"name":"WBEM_FLAG_LONG_NAME","features":[553]},{"name":"WBEM_FLAG_MUST_BATCH","features":[553]},{"name":"WBEM_FLAG_MUST_NOT_BATCH","features":[553]},{"name":"WBEM_FLAG_NONSYSTEM_ONLY","features":[553]},{"name":"WBEM_FLAG_NO_ERROR_OBJECT","features":[553]},{"name":"WBEM_FLAG_NO_FLAVORS","features":[553]},{"name":"WBEM_FLAG_ONLY_IF_FALSE","features":[553]},{"name":"WBEM_FLAG_ONLY_IF_IDENTICAL","features":[553]},{"name":"WBEM_FLAG_ONLY_IF_TRUE","features":[553]},{"name":"WBEM_FLAG_OWNER_UPDATE","features":[553]},{"name":"WBEM_FLAG_PROPAGATED_ONLY","features":[553]},{"name":"WBEM_FLAG_PROTOTYPE","features":[553]},{"name":"WBEM_FLAG_REFRESH_AUTO_RECONNECT","features":[553]},{"name":"WBEM_FLAG_REFRESH_NO_AUTO_RECONNECT","features":[553]},{"name":"WBEM_FLAG_REFS_ONLY","features":[553]},{"name":"WBEM_FLAG_REMOTE_LOGIN","features":[553]},{"name":"WBEM_FLAG_RETURN_ERROR_OBJECT","features":[553]},{"name":"WBEM_FLAG_RETURN_IMMEDIATELY","features":[553]},{"name":"WBEM_FLAG_RETURN_WBEM_COMPLETE","features":[553]},{"name":"WBEM_FLAG_SEND_ONLY_SELECTED","features":[553]},{"name":"WBEM_FLAG_SEND_STATUS","features":[553]},{"name":"WBEM_FLAG_SHALLOW","features":[553]},{"name":"WBEM_FLAG_SHORT_NAME","features":[553]},{"name":"WBEM_FLAG_SPLIT_FILES","features":[553]},{"name":"WBEM_FLAG_STORE_FILE","features":[553]},{"name":"WBEM_FLAG_STRONG_VALIDATION","features":[553]},{"name":"WBEM_FLAG_SYSTEM_ONLY","features":[553]},{"name":"WBEM_FLAG_UNSECAPP_CHECK_ACCESS","features":[553]},{"name":"WBEM_FLAG_UNSECAPP_DEFAULT_CHECK_ACCESS","features":[553]},{"name":"WBEM_FLAG_UNSECAPP_DONT_CHECK_ACCESS","features":[553]},{"name":"WBEM_FLAG_UPDATE_COMPATIBLE","features":[553]},{"name":"WBEM_FLAG_UPDATE_FORCE_MODE","features":[553]},{"name":"WBEM_FLAG_UPDATE_ONLY","features":[553]},{"name":"WBEM_FLAG_UPDATE_SAFE_MODE","features":[553]},{"name":"WBEM_FLAG_USE_AMENDED_QUALIFIERS","features":[553]},{"name":"WBEM_FLAG_USE_MULTIPLE_CHALLENGES","features":[553]},{"name":"WBEM_FLAG_WMI_CHECK","features":[553]},{"name":"WBEM_FLAVOR_AMENDED","features":[553]},{"name":"WBEM_FLAVOR_DONT_PROPAGATE","features":[553]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_DERIVED_CLASS","features":[553]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_INSTANCE","features":[553]},{"name":"WBEM_FLAVOR_MASK_AMENDED","features":[553]},{"name":"WBEM_FLAVOR_MASK_ORIGIN","features":[553]},{"name":"WBEM_FLAVOR_MASK_PERMISSIONS","features":[553]},{"name":"WBEM_FLAVOR_MASK_PROPAGATION","features":[553]},{"name":"WBEM_FLAVOR_NOT_AMENDED","features":[553]},{"name":"WBEM_FLAVOR_NOT_OVERRIDABLE","features":[553]},{"name":"WBEM_FLAVOR_ORIGIN_LOCAL","features":[553]},{"name":"WBEM_FLAVOR_ORIGIN_PROPAGATED","features":[553]},{"name":"WBEM_FLAVOR_ORIGIN_SYSTEM","features":[553]},{"name":"WBEM_FLAVOR_OVERRIDABLE","features":[553]},{"name":"WBEM_FLAVOR_TYPE","features":[553]},{"name":"WBEM_FULL_WRITE_REP","features":[553]},{"name":"WBEM_GENERIC_FLAG_TYPE","features":[553]},{"name":"WBEM_GENUS_CLASS","features":[553]},{"name":"WBEM_GENUS_INSTANCE","features":[553]},{"name":"WBEM_GENUS_TYPE","features":[553]},{"name":"WBEM_GET_KEY_FLAGS","features":[553]},{"name":"WBEM_GET_TEXT_FLAGS","features":[553]},{"name":"WBEM_INFINITE","features":[553]},{"name":"WBEM_INFORMATION_FLAG_TYPE","features":[553]},{"name":"WBEM_LIMITATION_FLAG_TYPE","features":[553]},{"name":"WBEM_LIMITS","features":[553]},{"name":"WBEM_LOCKING_FLAG_TYPE","features":[553]},{"name":"WBEM_LOGIN_TYPE","features":[553]},{"name":"WBEM_MASK_CLASS_CONDITION","features":[553]},{"name":"WBEM_MASK_CONDITION_ORIGIN","features":[553]},{"name":"WBEM_MASK_PRIMARY_CONDITION","features":[553]},{"name":"WBEM_MASK_RESERVED_FLAGS","features":[553]},{"name":"WBEM_MASK_UPDATE_MODE","features":[553]},{"name":"WBEM_MAX_IDENTIFIER","features":[553]},{"name":"WBEM_MAX_OBJECT_NESTING","features":[553]},{"name":"WBEM_MAX_PATH","features":[553]},{"name":"WBEM_MAX_QUERY","features":[553]},{"name":"WBEM_MAX_USER_PROPERTIES","features":[553]},{"name":"WBEM_METHOD_EXECUTE","features":[553]},{"name":"WBEM_NO_ERROR","features":[553]},{"name":"WBEM_NO_WAIT","features":[553]},{"name":"WBEM_PARTIAL_WRITE_REP","features":[553]},{"name":"WBEM_PATH_CREATE_FLAG","features":[553]},{"name":"WBEM_PATH_STATUS_FLAG","features":[553]},{"name":"WBEM_PROVIDER_FLAGS","features":[553]},{"name":"WBEM_PROVIDER_REQUIREMENTS_TYPE","features":[553]},{"name":"WBEM_QUERY_FLAG_TYPE","features":[553]},{"name":"WBEM_REFRESHER_FLAGS","features":[553]},{"name":"WBEM_REMOTE_ACCESS","features":[553]},{"name":"WBEM_REQUIREMENTS_RECHECK_SUBSCRIPTIONS","features":[553]},{"name":"WBEM_REQUIREMENTS_START_POSTFILTER","features":[553]},{"name":"WBEM_REQUIREMENTS_STOP_POSTFILTER","features":[553]},{"name":"WBEM_RETURN_IMMEDIATELY","features":[553]},{"name":"WBEM_RETURN_WHEN_COMPLETE","features":[553]},{"name":"WBEM_RIGHT_PUBLISH","features":[553]},{"name":"WBEM_RIGHT_SUBSCRIBE","features":[553]},{"name":"WBEM_SECURITY_FLAGS","features":[553]},{"name":"WBEM_SHUTDOWN_FLAGS","features":[553]},{"name":"WBEM_SHUTDOWN_OS","features":[553]},{"name":"WBEM_SHUTDOWN_UNLOAD_COMPONENT","features":[553]},{"name":"WBEM_SHUTDOWN_WMI","features":[553]},{"name":"WBEM_STATUS_COMPLETE","features":[553]},{"name":"WBEM_STATUS_LOGGING_INFORMATION","features":[553]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_ESS","features":[553]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_HOST","features":[553]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_PROVIDER","features":[553]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_REPOSITORY","features":[553]},{"name":"WBEM_STATUS_PROGRESS","features":[553]},{"name":"WBEM_STATUS_REQUIREMENTS","features":[553]},{"name":"WBEM_STATUS_TYPE","features":[553]},{"name":"WBEM_S_ACCESS_DENIED","features":[553]},{"name":"WBEM_S_ALREADY_EXISTS","features":[553]},{"name":"WBEM_S_DIFFERENT","features":[553]},{"name":"WBEM_S_DUPLICATE_OBJECTS","features":[553]},{"name":"WBEM_S_FALSE","features":[553]},{"name":"WBEM_S_INDIRECTLY_UPDATED","features":[553]},{"name":"WBEM_S_INITIALIZED","features":[553]},{"name":"WBEM_S_LIMITED_SERVICE","features":[553]},{"name":"WBEM_S_NO_ERROR","features":[553]},{"name":"WBEM_S_NO_MORE_DATA","features":[553]},{"name":"WBEM_S_OPERATION_CANCELLED","features":[553]},{"name":"WBEM_S_PARTIAL_RESULTS","features":[553]},{"name":"WBEM_S_PENDING","features":[553]},{"name":"WBEM_S_RESET_TO_DEFAULT","features":[553]},{"name":"WBEM_S_SAME","features":[553]},{"name":"WBEM_S_SOURCE_NOT_AVAILABLE","features":[553]},{"name":"WBEM_S_SUBJECT_TO_SDS","features":[553]},{"name":"WBEM_S_TIMEDOUT","features":[553]},{"name":"WBEM_TEXT_FLAG_TYPE","features":[553]},{"name":"WBEM_UNSECAPP_FLAG_TYPE","features":[553]},{"name":"WBEM_WRITE_PROVIDER","features":[553]},{"name":"WMIExtension","features":[553]},{"name":"WMIQ_ANALYSIS_ASSOC_QUERY","features":[553]},{"name":"WMIQ_ANALYSIS_PROP_ANALYSIS_MATRIX","features":[553]},{"name":"WMIQ_ANALYSIS_QUERY_TEXT","features":[553]},{"name":"WMIQ_ANALYSIS_RESERVED","features":[553]},{"name":"WMIQ_ANALYSIS_RPN_SEQUENCE","features":[553]},{"name":"WMIQ_ANALYSIS_TYPE","features":[553]},{"name":"WMIQ_ASSOCQ_ASSOCCLASS","features":[553]},{"name":"WMIQ_ASSOCQ_ASSOCIATORS","features":[553]},{"name":"WMIQ_ASSOCQ_CLASSDEFSONLY","features":[553]},{"name":"WMIQ_ASSOCQ_CLASSREFSONLY","features":[553]},{"name":"WMIQ_ASSOCQ_FLAGS","features":[553]},{"name":"WMIQ_ASSOCQ_KEYSONLY","features":[553]},{"name":"WMIQ_ASSOCQ_REFERENCES","features":[553]},{"name":"WMIQ_ASSOCQ_REQUIREDASSOCQUALIFIER","features":[553]},{"name":"WMIQ_ASSOCQ_REQUIREDQUALIFIER","features":[553]},{"name":"WMIQ_ASSOCQ_RESULTCLASS","features":[553]},{"name":"WMIQ_ASSOCQ_RESULTROLE","features":[553]},{"name":"WMIQ_ASSOCQ_ROLE","features":[553]},{"name":"WMIQ_ASSOCQ_SCHEMAONLY","features":[553]},{"name":"WMIQ_LANGUAGE_FEATURES","features":[553]},{"name":"WMIQ_LF10_COMPEX_SUBEXPRESSIONS","features":[553]},{"name":"WMIQ_LF11_ALIASING","features":[553]},{"name":"WMIQ_LF12_GROUP_BY_HAVING","features":[553]},{"name":"WMIQ_LF13_WMI_WITHIN","features":[553]},{"name":"WMIQ_LF14_SQL_WRITE_OPERATIONS","features":[553]},{"name":"WMIQ_LF15_GO","features":[553]},{"name":"WMIQ_LF16_SINGLE_LEVEL_TRANSACTIONS","features":[553]},{"name":"WMIQ_LF17_QUALIFIED_NAMES","features":[553]},{"name":"WMIQ_LF18_ASSOCIATONS","features":[553]},{"name":"WMIQ_LF19_SYSTEM_PROPERTIES","features":[553]},{"name":"WMIQ_LF1_BASIC_SELECT","features":[553]},{"name":"WMIQ_LF20_EXTENDED_SYSTEM_PROPERTIES","features":[553]},{"name":"WMIQ_LF21_SQL89_JOINS","features":[553]},{"name":"WMIQ_LF22_SQL92_JOINS","features":[553]},{"name":"WMIQ_LF23_SUBSELECTS","features":[553]},{"name":"WMIQ_LF24_UMI_EXTENSIONS","features":[553]},{"name":"WMIQ_LF25_DATEPART","features":[553]},{"name":"WMIQ_LF26_LIKE","features":[553]},{"name":"WMIQ_LF27_CIM_TEMPORAL_CONSTRUCTS","features":[553]},{"name":"WMIQ_LF28_STANDARD_AGGREGATES","features":[553]},{"name":"WMIQ_LF29_MULTI_LEVEL_ORDER_BY","features":[553]},{"name":"WMIQ_LF2_CLASS_NAME_IN_QUERY","features":[553]},{"name":"WMIQ_LF30_WMI_PRAGMAS","features":[553]},{"name":"WMIQ_LF31_QUALIFIER_TESTS","features":[553]},{"name":"WMIQ_LF32_SP_EXECUTE","features":[553]},{"name":"WMIQ_LF33_ARRAY_ACCESS","features":[553]},{"name":"WMIQ_LF34_UNION","features":[553]},{"name":"WMIQ_LF35_COMPLEX_SELECT_TARGET","features":[553]},{"name":"WMIQ_LF36_REFERENCE_TESTS","features":[553]},{"name":"WMIQ_LF37_SELECT_INTO","features":[553]},{"name":"WMIQ_LF38_BASIC_DATETIME_TESTS","features":[553]},{"name":"WMIQ_LF39_COUNT_COLUMN","features":[553]},{"name":"WMIQ_LF3_STRING_CASE_FUNCTIONS","features":[553]},{"name":"WMIQ_LF40_BETWEEN","features":[553]},{"name":"WMIQ_LF4_PROP_TO_PROP_TESTS","features":[553]},{"name":"WMIQ_LF5_COUNT_STAR","features":[553]},{"name":"WMIQ_LF6_ORDER_BY","features":[553]},{"name":"WMIQ_LF7_DISTINCT","features":[553]},{"name":"WMIQ_LF8_ISA","features":[553]},{"name":"WMIQ_LF9_THIS","features":[553]},{"name":"WMIQ_LF_LAST","features":[553]},{"name":"WMIQ_RPNF_ARRAY_ACCESS_USED","features":[553]},{"name":"WMIQ_RPNF_COUNT_STAR","features":[553]},{"name":"WMIQ_RPNF_EQUALITY_TESTS_ONLY","features":[553]},{"name":"WMIQ_RPNF_FEATURE","features":[553]},{"name":"WMIQ_RPNF_FEATURE_SELECT_STAR","features":[553]},{"name":"WMIQ_RPNF_GROUP_BY_HAVING","features":[553]},{"name":"WMIQ_RPNF_ISA_USED","features":[553]},{"name":"WMIQ_RPNF_ORDER_BY","features":[553]},{"name":"WMIQ_RPNF_PROJECTION","features":[553]},{"name":"WMIQ_RPNF_PROP_TO_PROP_TESTS","features":[553]},{"name":"WMIQ_RPNF_QUALIFIED_NAMES_USED","features":[553]},{"name":"WMIQ_RPNF_QUERY_IS_CONJUNCTIVE","features":[553]},{"name":"WMIQ_RPNF_QUERY_IS_DISJUNCTIVE","features":[553]},{"name":"WMIQ_RPNF_SYSPROP_CLASS_USED","features":[553]},{"name":"WMIQ_RPNF_WHERE_CLAUSE_PRESENT","features":[553]},{"name":"WMIQ_RPN_CONST","features":[553]},{"name":"WMIQ_RPN_CONST2","features":[553]},{"name":"WMIQ_RPN_FROM_CLASS_LIST","features":[553]},{"name":"WMIQ_RPN_FROM_MULTIPLE","features":[553]},{"name":"WMIQ_RPN_FROM_PATH","features":[553]},{"name":"WMIQ_RPN_FROM_UNARY","features":[553]},{"name":"WMIQ_RPN_GET_EXPR_SHAPE","features":[553]},{"name":"WMIQ_RPN_GET_LEFT_FUNCTION","features":[553]},{"name":"WMIQ_RPN_GET_RELOP","features":[553]},{"name":"WMIQ_RPN_GET_RIGHT_FUNCTION","features":[553]},{"name":"WMIQ_RPN_GET_TOKEN_TYPE","features":[553]},{"name":"WMIQ_RPN_LEFT_FUNCTION","features":[553]},{"name":"WMIQ_RPN_LEFT_PROPERTY_NAME","features":[553]},{"name":"WMIQ_RPN_NEXT_TOKEN","features":[553]},{"name":"WMIQ_RPN_OP_EQ","features":[553]},{"name":"WMIQ_RPN_OP_GE","features":[553]},{"name":"WMIQ_RPN_OP_GT","features":[553]},{"name":"WMIQ_RPN_OP_ISA","features":[553]},{"name":"WMIQ_RPN_OP_ISNOTA","features":[553]},{"name":"WMIQ_RPN_OP_ISNOTNULL","features":[553]},{"name":"WMIQ_RPN_OP_ISNULL","features":[553]},{"name":"WMIQ_RPN_OP_LE","features":[553]},{"name":"WMIQ_RPN_OP_LIKE","features":[553]},{"name":"WMIQ_RPN_OP_LT","features":[553]},{"name":"WMIQ_RPN_OP_NE","features":[553]},{"name":"WMIQ_RPN_OP_UNDEFINED","features":[553]},{"name":"WMIQ_RPN_RELOP","features":[553]},{"name":"WMIQ_RPN_RIGHT_FUNCTION","features":[553]},{"name":"WMIQ_RPN_RIGHT_PROPERTY_NAME","features":[553]},{"name":"WMIQ_RPN_TOKEN_AND","features":[553]},{"name":"WMIQ_RPN_TOKEN_EXPRESSION","features":[553]},{"name":"WMIQ_RPN_TOKEN_FLAGS","features":[553]},{"name":"WMIQ_RPN_TOKEN_NOT","features":[553]},{"name":"WMIQ_RPN_TOKEN_OR","features":[553]},{"name":"WMI_OBJ_TEXT","features":[553]},{"name":"WMI_OBJ_TEXT_CIM_DTD_2_0","features":[553]},{"name":"WMI_OBJ_TEXT_LAST","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_DTD_2_0","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT1","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT10","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT2","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT3","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT4","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT5","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT6","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT7","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT8","features":[553]},{"name":"WMI_OBJ_TEXT_WMI_EXT9","features":[553]},{"name":"WbemAdministrativeLocator","features":[553]},{"name":"WbemAuthenticatedLocator","features":[553]},{"name":"WbemAuthenticationLevelEnum","features":[553]},{"name":"WbemBackupRestore","features":[553]},{"name":"WbemChangeFlagEnum","features":[553]},{"name":"WbemCimtypeEnum","features":[553]},{"name":"WbemClassObject","features":[553]},{"name":"WbemComparisonFlagEnum","features":[553]},{"name":"WbemConnectOptionsEnum","features":[553]},{"name":"WbemContext","features":[553]},{"name":"WbemDCOMTransport","features":[553]},{"name":"WbemDecoupledBasicEventProvider","features":[553]},{"name":"WbemDecoupledRegistrar","features":[553]},{"name":"WbemDefPath","features":[553]},{"name":"WbemErrorEnum","features":[553]},{"name":"WbemFlagEnum","features":[553]},{"name":"WbemImpersonationLevelEnum","features":[553]},{"name":"WbemLevel1Login","features":[553]},{"name":"WbemLocalAddrRes","features":[553]},{"name":"WbemLocator","features":[553]},{"name":"WbemObjectTextFormatEnum","features":[553]},{"name":"WbemObjectTextSrc","features":[553]},{"name":"WbemPrivilegeEnum","features":[553]},{"name":"WbemQuery","features":[553]},{"name":"WbemQueryFlagEnum","features":[553]},{"name":"WbemRefresher","features":[553]},{"name":"WbemStatusCodeText","features":[553]},{"name":"WbemTextFlagEnum","features":[553]},{"name":"WbemTimeout","features":[553]},{"name":"WbemUnauthenticatedLocator","features":[553]},{"name":"WbemUninitializedClassObject","features":[553]},{"name":"wbemAuthenticationLevelCall","features":[553]},{"name":"wbemAuthenticationLevelConnect","features":[553]},{"name":"wbemAuthenticationLevelDefault","features":[553]},{"name":"wbemAuthenticationLevelNone","features":[553]},{"name":"wbemAuthenticationLevelPkt","features":[553]},{"name":"wbemAuthenticationLevelPktIntegrity","features":[553]},{"name":"wbemAuthenticationLevelPktPrivacy","features":[553]},{"name":"wbemChangeFlagAdvisory","features":[553]},{"name":"wbemChangeFlagCreateOnly","features":[553]},{"name":"wbemChangeFlagCreateOrUpdate","features":[553]},{"name":"wbemChangeFlagStrongValidation","features":[553]},{"name":"wbemChangeFlagUpdateCompatible","features":[553]},{"name":"wbemChangeFlagUpdateForceMode","features":[553]},{"name":"wbemChangeFlagUpdateOnly","features":[553]},{"name":"wbemChangeFlagUpdateSafeMode","features":[553]},{"name":"wbemCimtypeBoolean","features":[553]},{"name":"wbemCimtypeChar16","features":[553]},{"name":"wbemCimtypeDatetime","features":[553]},{"name":"wbemCimtypeObject","features":[553]},{"name":"wbemCimtypeReal32","features":[553]},{"name":"wbemCimtypeReal64","features":[553]},{"name":"wbemCimtypeReference","features":[553]},{"name":"wbemCimtypeSint16","features":[553]},{"name":"wbemCimtypeSint32","features":[553]},{"name":"wbemCimtypeSint64","features":[553]},{"name":"wbemCimtypeSint8","features":[553]},{"name":"wbemCimtypeString","features":[553]},{"name":"wbemCimtypeUint16","features":[553]},{"name":"wbemCimtypeUint32","features":[553]},{"name":"wbemCimtypeUint64","features":[553]},{"name":"wbemCimtypeUint8","features":[553]},{"name":"wbemComparisonFlagIgnoreCase","features":[553]},{"name":"wbemComparisonFlagIgnoreClass","features":[553]},{"name":"wbemComparisonFlagIgnoreDefaultValues","features":[553]},{"name":"wbemComparisonFlagIgnoreFlavor","features":[553]},{"name":"wbemComparisonFlagIgnoreObjectSource","features":[553]},{"name":"wbemComparisonFlagIgnoreQualifiers","features":[553]},{"name":"wbemComparisonFlagIncludeAll","features":[553]},{"name":"wbemConnectFlagUseMaxWait","features":[553]},{"name":"wbemErrAccessDenied","features":[553]},{"name":"wbemErrAggregatingByObject","features":[553]},{"name":"wbemErrAlreadyExists","features":[553]},{"name":"wbemErrAmbiguousOperation","features":[553]},{"name":"wbemErrAmendedObject","features":[553]},{"name":"wbemErrBackupRestoreWinmgmtRunning","features":[553]},{"name":"wbemErrBufferTooSmall","features":[553]},{"name":"wbemErrCallCancelled","features":[553]},{"name":"wbemErrCannotBeAbstract","features":[553]},{"name":"wbemErrCannotBeKey","features":[553]},{"name":"wbemErrCannotBeSingleton","features":[553]},{"name":"wbemErrCannotChangeIndexInheritance","features":[553]},{"name":"wbemErrCannotChangeKeyInheritance","features":[553]},{"name":"wbemErrCircularReference","features":[553]},{"name":"wbemErrClassHasChildren","features":[553]},{"name":"wbemErrClassHasInstances","features":[553]},{"name":"wbemErrClassNameTooWide","features":[553]},{"name":"wbemErrClientTooSlow","features":[553]},{"name":"wbemErrConnectionFailed","features":[553]},{"name":"wbemErrCriticalError","features":[553]},{"name":"wbemErrDatabaseVerMismatch","features":[553]},{"name":"wbemErrEncryptedConnectionRequired","features":[553]},{"name":"wbemErrFailed","features":[553]},{"name":"wbemErrFatalTransportError","features":[553]},{"name":"wbemErrForcedRollback","features":[553]},{"name":"wbemErrHandleOutOfDate","features":[553]},{"name":"wbemErrIllegalNull","features":[553]},{"name":"wbemErrIllegalOperation","features":[553]},{"name":"wbemErrIncompleteClass","features":[553]},{"name":"wbemErrInitializationFailure","features":[553]},{"name":"wbemErrInvalidAssociation","features":[553]},{"name":"wbemErrInvalidCimType","features":[553]},{"name":"wbemErrInvalidClass","features":[553]},{"name":"wbemErrInvalidContext","features":[553]},{"name":"wbemErrInvalidDuplicateParameter","features":[553]},{"name":"wbemErrInvalidFlavor","features":[553]},{"name":"wbemErrInvalidHandleRequest","features":[553]},{"name":"wbemErrInvalidLocale","features":[553]},{"name":"wbemErrInvalidMethod","features":[553]},{"name":"wbemErrInvalidMethodParameters","features":[553]},{"name":"wbemErrInvalidNamespace","features":[553]},{"name":"wbemErrInvalidObject","features":[553]},{"name":"wbemErrInvalidObjectPath","features":[553]},{"name":"wbemErrInvalidOperation","features":[553]},{"name":"wbemErrInvalidOperator","features":[553]},{"name":"wbemErrInvalidParameter","features":[553]},{"name":"wbemErrInvalidParameterId","features":[553]},{"name":"wbemErrInvalidProperty","features":[553]},{"name":"wbemErrInvalidPropertyType","features":[553]},{"name":"wbemErrInvalidProviderRegistration","features":[553]},{"name":"wbemErrInvalidQualifier","features":[553]},{"name":"wbemErrInvalidQualifierType","features":[553]},{"name":"wbemErrInvalidQuery","features":[553]},{"name":"wbemErrInvalidQueryType","features":[553]},{"name":"wbemErrInvalidStream","features":[553]},{"name":"wbemErrInvalidSuperclass","features":[553]},{"name":"wbemErrInvalidSyntax","features":[553]},{"name":"wbemErrLocalCredentials","features":[553]},{"name":"wbemErrMarshalInvalidSignature","features":[553]},{"name":"wbemErrMarshalVersionMismatch","features":[553]},{"name":"wbemErrMethodDisabled","features":[553]},{"name":"wbemErrMethodNameTooWide","features":[553]},{"name":"wbemErrMethodNotImplemented","features":[553]},{"name":"wbemErrMissingAggregationList","features":[553]},{"name":"wbemErrMissingGroupWithin","features":[553]},{"name":"wbemErrMissingParameter","features":[553]},{"name":"wbemErrNoSchema","features":[553]},{"name":"wbemErrNonConsecutiveParameterIds","features":[553]},{"name":"wbemErrNondecoratedObject","features":[553]},{"name":"wbemErrNotAvailable","features":[553]},{"name":"wbemErrNotEventClass","features":[553]},{"name":"wbemErrNotFound","features":[553]},{"name":"wbemErrNotSupported","features":[553]},{"name":"wbemErrNullSecurityDescriptor","features":[553]},{"name":"wbemErrOutOfDiskSpace","features":[553]},{"name":"wbemErrOutOfMemory","features":[553]},{"name":"wbemErrOverrideNotAllowed","features":[553]},{"name":"wbemErrParameterIdOnRetval","features":[553]},{"name":"wbemErrPrivilegeNotHeld","features":[553]},{"name":"wbemErrPropagatedMethod","features":[553]},{"name":"wbemErrPropagatedProperty","features":[553]},{"name":"wbemErrPropagatedQualifier","features":[553]},{"name":"wbemErrPropertyNameTooWide","features":[553]},{"name":"wbemErrPropertyNotAnObject","features":[553]},{"name":"wbemErrProviderAlreadyRegistered","features":[553]},{"name":"wbemErrProviderFailure","features":[553]},{"name":"wbemErrProviderLoadFailure","features":[553]},{"name":"wbemErrProviderNotCapable","features":[553]},{"name":"wbemErrProviderNotFound","features":[553]},{"name":"wbemErrProviderNotRegistered","features":[553]},{"name":"wbemErrProviderSuspended","features":[553]},{"name":"wbemErrQualifierNameTooWide","features":[553]},{"name":"wbemErrQueryNotImplemented","features":[553]},{"name":"wbemErrQueueOverflow","features":[553]},{"name":"wbemErrQuotaViolation","features":[553]},{"name":"wbemErrReadOnly","features":[553]},{"name":"wbemErrRefresherBusy","features":[553]},{"name":"wbemErrRegistrationTooBroad","features":[553]},{"name":"wbemErrRegistrationTooPrecise","features":[553]},{"name":"wbemErrRerunCommand","features":[553]},{"name":"wbemErrResetToDefault","features":[553]},{"name":"wbemErrServerTooBusy","features":[553]},{"name":"wbemErrShuttingDown","features":[553]},{"name":"wbemErrSynchronizationRequired","features":[553]},{"name":"wbemErrSystemProperty","features":[553]},{"name":"wbemErrTimedout","features":[553]},{"name":"wbemErrTimeout","features":[553]},{"name":"wbemErrTooManyProperties","features":[553]},{"name":"wbemErrTooMuchData","features":[553]},{"name":"wbemErrTransactionConflict","features":[553]},{"name":"wbemErrTransportFailure","features":[553]},{"name":"wbemErrTypeMismatch","features":[553]},{"name":"wbemErrUnexpected","features":[553]},{"name":"wbemErrUninterpretableProviderQuery","features":[553]},{"name":"wbemErrUnknownObjectType","features":[553]},{"name":"wbemErrUnknownPacketType","features":[553]},{"name":"wbemErrUnparsableQuery","features":[553]},{"name":"wbemErrUnsupportedClassUpdate","features":[553]},{"name":"wbemErrUnsupportedLocale","features":[553]},{"name":"wbemErrUnsupportedParameter","features":[553]},{"name":"wbemErrUnsupportedPutExtension","features":[553]},{"name":"wbemErrUpdateOverrideNotAllowed","features":[553]},{"name":"wbemErrUpdatePropagatedMethod","features":[553]},{"name":"wbemErrUpdateTypeMismatch","features":[553]},{"name":"wbemErrValueOutOfRange","features":[553]},{"name":"wbemErrVetoDelete","features":[553]},{"name":"wbemErrVetoPut","features":[553]},{"name":"wbemFlagBidirectional","features":[553]},{"name":"wbemFlagDirectRead","features":[553]},{"name":"wbemFlagDontSendStatus","features":[553]},{"name":"wbemFlagEnsureLocatable","features":[553]},{"name":"wbemFlagForwardOnly","features":[553]},{"name":"wbemFlagGetDefault","features":[553]},{"name":"wbemFlagNoErrorObject","features":[553]},{"name":"wbemFlagReturnErrorObject","features":[553]},{"name":"wbemFlagReturnImmediately","features":[553]},{"name":"wbemFlagReturnWhenComplete","features":[553]},{"name":"wbemFlagSendOnlySelected","features":[553]},{"name":"wbemFlagSendStatus","features":[553]},{"name":"wbemFlagSpawnInstance","features":[553]},{"name":"wbemFlagUseAmendedQualifiers","features":[553]},{"name":"wbemFlagUseCurrentTime","features":[553]},{"name":"wbemImpersonationLevelAnonymous","features":[553]},{"name":"wbemImpersonationLevelDelegate","features":[553]},{"name":"wbemImpersonationLevelIdentify","features":[553]},{"name":"wbemImpersonationLevelImpersonate","features":[553]},{"name":"wbemNoErr","features":[553]},{"name":"wbemObjectTextFormatCIMDTD20","features":[553]},{"name":"wbemObjectTextFormatWMIDTD20","features":[553]},{"name":"wbemPrivilegeAudit","features":[553]},{"name":"wbemPrivilegeBackup","features":[553]},{"name":"wbemPrivilegeChangeNotify","features":[553]},{"name":"wbemPrivilegeCreatePagefile","features":[553]},{"name":"wbemPrivilegeCreatePermanent","features":[553]},{"name":"wbemPrivilegeCreateToken","features":[553]},{"name":"wbemPrivilegeDebug","features":[553]},{"name":"wbemPrivilegeEnableDelegation","features":[553]},{"name":"wbemPrivilegeIncreaseBasePriority","features":[553]},{"name":"wbemPrivilegeIncreaseQuota","features":[553]},{"name":"wbemPrivilegeLoadDriver","features":[553]},{"name":"wbemPrivilegeLockMemory","features":[553]},{"name":"wbemPrivilegeMachineAccount","features":[553]},{"name":"wbemPrivilegeManageVolume","features":[553]},{"name":"wbemPrivilegePrimaryToken","features":[553]},{"name":"wbemPrivilegeProfileSingleProcess","features":[553]},{"name":"wbemPrivilegeRemoteShutdown","features":[553]},{"name":"wbemPrivilegeRestore","features":[553]},{"name":"wbemPrivilegeSecurity","features":[553]},{"name":"wbemPrivilegeShutdown","features":[553]},{"name":"wbemPrivilegeSyncAgent","features":[553]},{"name":"wbemPrivilegeSystemEnvironment","features":[553]},{"name":"wbemPrivilegeSystemProfile","features":[553]},{"name":"wbemPrivilegeSystemtime","features":[553]},{"name":"wbemPrivilegeTakeOwnership","features":[553]},{"name":"wbemPrivilegeTcb","features":[553]},{"name":"wbemPrivilegeUndock","features":[553]},{"name":"wbemQueryFlagDeep","features":[553]},{"name":"wbemQueryFlagPrototype","features":[553]},{"name":"wbemQueryFlagShallow","features":[553]},{"name":"wbemTextFlagNoFlavors","features":[553]},{"name":"wbemTimeoutInfinite","features":[553]}],"647":[{"name":"ACCESSTIMEOUT","features":[523]},{"name":"ACC_UTILITY_STATE_FLAGS","features":[523]},{"name":"ANNO_CONTAINER","features":[523]},{"name":"ANNO_THIS","features":[523]},{"name":"ANRUS_ON_SCREEN_KEYBOARD_ACTIVE","features":[523]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE","features":[523]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE_NODUCK","features":[523]},{"name":"ANRUS_PRIORITY_AUDIO_DYNAMIC_DUCK","features":[523]},{"name":"ANRUS_TOUCH_MODIFICATION_ACTIVE","features":[523]},{"name":"AccNotifyTouchInteraction","features":[303,523]},{"name":"AccSetRunningUtilityState","features":[303,523]},{"name":"AcceleratorKey_Property_GUID","features":[523]},{"name":"AccessKey_Property_GUID","features":[523]},{"name":"AccessibleChildren","features":[354,523]},{"name":"AccessibleObjectFromEvent","features":[303,354,523]},{"name":"AccessibleObjectFromPoint","features":[303,354,523]},{"name":"AccessibleObjectFromWindow","features":[303,523]},{"name":"ActiveEnd","features":[523]},{"name":"ActiveEnd_End","features":[523]},{"name":"ActiveEnd_None","features":[523]},{"name":"ActiveEnd_Start","features":[523]},{"name":"ActiveTextPositionChanged_Event_GUID","features":[523]},{"name":"AnimationStyle","features":[523]},{"name":"AnimationStyle_BlinkingBackground","features":[523]},{"name":"AnimationStyle_LasVegasLights","features":[523]},{"name":"AnimationStyle_MarchingBlackAnts","features":[523]},{"name":"AnimationStyle_MarchingRedAnts","features":[523]},{"name":"AnimationStyle_None","features":[523]},{"name":"AnimationStyle_Other","features":[523]},{"name":"AnimationStyle_Shimmer","features":[523]},{"name":"AnimationStyle_SparkleText","features":[523]},{"name":"AnnoScope","features":[523]},{"name":"AnnotationObjects_Property_GUID","features":[523]},{"name":"AnnotationType_AdvancedProofingIssue","features":[523]},{"name":"AnnotationType_Author","features":[523]},{"name":"AnnotationType_CircularReferenceError","features":[523]},{"name":"AnnotationType_Comment","features":[523]},{"name":"AnnotationType_ConflictingChange","features":[523]},{"name":"AnnotationType_DataValidationError","features":[523]},{"name":"AnnotationType_DeletionChange","features":[523]},{"name":"AnnotationType_EditingLockedChange","features":[523]},{"name":"AnnotationType_Endnote","features":[523]},{"name":"AnnotationType_ExternalChange","features":[523]},{"name":"AnnotationType_Footer","features":[523]},{"name":"AnnotationType_Footnote","features":[523]},{"name":"AnnotationType_FormatChange","features":[523]},{"name":"AnnotationType_FormulaError","features":[523]},{"name":"AnnotationType_GrammarError","features":[523]},{"name":"AnnotationType_Header","features":[523]},{"name":"AnnotationType_Highlighted","features":[523]},{"name":"AnnotationType_InsertionChange","features":[523]},{"name":"AnnotationType_Mathematics","features":[523]},{"name":"AnnotationType_MoveChange","features":[523]},{"name":"AnnotationType_Sensitive","features":[523]},{"name":"AnnotationType_SpellingError","features":[523]},{"name":"AnnotationType_TrackChanges","features":[523]},{"name":"AnnotationType_Unknown","features":[523]},{"name":"AnnotationType_UnsyncedChange","features":[523]},{"name":"AnnotationTypes_Property_GUID","features":[523]},{"name":"Annotation_AdvancedProofingIssue_GUID","features":[523]},{"name":"Annotation_AnnotationTypeId_Property_GUID","features":[523]},{"name":"Annotation_AnnotationTypeName_Property_GUID","features":[523]},{"name":"Annotation_Author_GUID","features":[523]},{"name":"Annotation_Author_Property_GUID","features":[523]},{"name":"Annotation_CircularReferenceError_GUID","features":[523]},{"name":"Annotation_Comment_GUID","features":[523]},{"name":"Annotation_ConflictingChange_GUID","features":[523]},{"name":"Annotation_Custom_GUID","features":[523]},{"name":"Annotation_DataValidationError_GUID","features":[523]},{"name":"Annotation_DateTime_Property_GUID","features":[523]},{"name":"Annotation_DeletionChange_GUID","features":[523]},{"name":"Annotation_EditingLockedChange_GUID","features":[523]},{"name":"Annotation_Endnote_GUID","features":[523]},{"name":"Annotation_ExternalChange_GUID","features":[523]},{"name":"Annotation_Footer_GUID","features":[523]},{"name":"Annotation_Footnote_GUID","features":[523]},{"name":"Annotation_FormatChange_GUID","features":[523]},{"name":"Annotation_FormulaError_GUID","features":[523]},{"name":"Annotation_GrammarError_GUID","features":[523]},{"name":"Annotation_Header_GUID","features":[523]},{"name":"Annotation_Highlighted_GUID","features":[523]},{"name":"Annotation_InsertionChange_GUID","features":[523]},{"name":"Annotation_Mathematics_GUID","features":[523]},{"name":"Annotation_MoveChange_GUID","features":[523]},{"name":"Annotation_Pattern_GUID","features":[523]},{"name":"Annotation_Sensitive_GUID","features":[523]},{"name":"Annotation_SpellingError_GUID","features":[523]},{"name":"Annotation_Target_Property_GUID","features":[523]},{"name":"Annotation_TrackChanges_GUID","features":[523]},{"name":"Annotation_UnsyncedChange_GUID","features":[523]},{"name":"AppBar_Control_GUID","features":[523]},{"name":"AriaProperties_Property_GUID","features":[523]},{"name":"AriaRole_Property_GUID","features":[523]},{"name":"Assertive","features":[523]},{"name":"AsyncContentLoadedState","features":[523]},{"name":"AsyncContentLoadedState_Beginning","features":[523]},{"name":"AsyncContentLoadedState_Completed","features":[523]},{"name":"AsyncContentLoadedState_Progress","features":[523]},{"name":"AsyncContentLoaded_Event_GUID","features":[523]},{"name":"AutomationElementMode","features":[523]},{"name":"AutomationElementMode_Full","features":[523]},{"name":"AutomationElementMode_None","features":[523]},{"name":"AutomationFocusChanged_Event_GUID","features":[523]},{"name":"AutomationId_Property_GUID","features":[523]},{"name":"AutomationIdentifierType","features":[523]},{"name":"AutomationIdentifierType_Annotation","features":[523]},{"name":"AutomationIdentifierType_Changes","features":[523]},{"name":"AutomationIdentifierType_ControlType","features":[523]},{"name":"AutomationIdentifierType_Event","features":[523]},{"name":"AutomationIdentifierType_LandmarkType","features":[523]},{"name":"AutomationIdentifierType_Pattern","features":[523]},{"name":"AutomationIdentifierType_Property","features":[523]},{"name":"AutomationIdentifierType_Style","features":[523]},{"name":"AutomationIdentifierType_TextAttribute","features":[523]},{"name":"AutomationPropertyChanged_Event_GUID","features":[523]},{"name":"BoundingRectangle_Property_GUID","features":[523]},{"name":"BulletStyle","features":[523]},{"name":"BulletStyle_DashBullet","features":[523]},{"name":"BulletStyle_FilledRoundBullet","features":[523]},{"name":"BulletStyle_FilledSquareBullet","features":[523]},{"name":"BulletStyle_HollowRoundBullet","features":[523]},{"name":"BulletStyle_HollowSquareBullet","features":[523]},{"name":"BulletStyle_None","features":[523]},{"name":"BulletStyle_Other","features":[523]},{"name":"Button_Control_GUID","features":[523]},{"name":"CAccPropServices","features":[523]},{"name":"CLSID_AccPropServices","features":[523]},{"name":"CUIAutomation","features":[523]},{"name":"CUIAutomation8","features":[523]},{"name":"CUIAutomationRegistrar","features":[523]},{"name":"Calendar_Control_GUID","features":[523]},{"name":"CapStyle","features":[523]},{"name":"CapStyle_AllCap","features":[523]},{"name":"CapStyle_AllPetiteCaps","features":[523]},{"name":"CapStyle_None","features":[523]},{"name":"CapStyle_Other","features":[523]},{"name":"CapStyle_PetiteCaps","features":[523]},{"name":"CapStyle_SmallCap","features":[523]},{"name":"CapStyle_Titling","features":[523]},{"name":"CapStyle_Unicase","features":[523]},{"name":"CaretBidiMode","features":[523]},{"name":"CaretBidiMode_LTR","features":[523]},{"name":"CaretBidiMode_RTL","features":[523]},{"name":"CaretPosition","features":[523]},{"name":"CaretPosition_BeginningOfLine","features":[523]},{"name":"CaretPosition_EndOfLine","features":[523]},{"name":"CaretPosition_Unknown","features":[523]},{"name":"CenterPoint_Property_GUID","features":[523]},{"name":"Changes_Event_GUID","features":[523]},{"name":"Changes_Summary_GUID","features":[523]},{"name":"CheckBox_Control_GUID","features":[523]},{"name":"ClassName_Property_GUID","features":[523]},{"name":"ClickablePoint_Property_GUID","features":[523]},{"name":"CoalesceEventsOptions","features":[523]},{"name":"CoalesceEventsOptions_Disabled","features":[523]},{"name":"CoalesceEventsOptions_Enabled","features":[523]},{"name":"ComboBox_Control_GUID","features":[523]},{"name":"ConditionType","features":[523]},{"name":"ConditionType_And","features":[523]},{"name":"ConditionType_False","features":[523]},{"name":"ConditionType_Not","features":[523]},{"name":"ConditionType_Or","features":[523]},{"name":"ConditionType_Property","features":[523]},{"name":"ConditionType_True","features":[523]},{"name":"ConnectionRecoveryBehaviorOptions","features":[523]},{"name":"ConnectionRecoveryBehaviorOptions_Disabled","features":[523]},{"name":"ConnectionRecoveryBehaviorOptions_Enabled","features":[523]},{"name":"ControlType_Property_GUID","features":[523]},{"name":"ControllerFor_Property_GUID","features":[523]},{"name":"CreateStdAccessibleObject","features":[303,523]},{"name":"CreateStdAccessibleProxyA","features":[303,523]},{"name":"CreateStdAccessibleProxyW","features":[303,523]},{"name":"Culture_Property_GUID","features":[523]},{"name":"CustomNavigation_Pattern_GUID","features":[523]},{"name":"Custom_Control_GUID","features":[523]},{"name":"DISPID_ACC_CHILD","features":[523]},{"name":"DISPID_ACC_CHILDCOUNT","features":[523]},{"name":"DISPID_ACC_DEFAULTACTION","features":[523]},{"name":"DISPID_ACC_DESCRIPTION","features":[523]},{"name":"DISPID_ACC_DODEFAULTACTION","features":[523]},{"name":"DISPID_ACC_FOCUS","features":[523]},{"name":"DISPID_ACC_HELP","features":[523]},{"name":"DISPID_ACC_HELPTOPIC","features":[523]},{"name":"DISPID_ACC_HITTEST","features":[523]},{"name":"DISPID_ACC_KEYBOARDSHORTCUT","features":[523]},{"name":"DISPID_ACC_LOCATION","features":[523]},{"name":"DISPID_ACC_NAME","features":[523]},{"name":"DISPID_ACC_NAVIGATE","features":[523]},{"name":"DISPID_ACC_PARENT","features":[523]},{"name":"DISPID_ACC_ROLE","features":[523]},{"name":"DISPID_ACC_SELECT","features":[523]},{"name":"DISPID_ACC_SELECTION","features":[523]},{"name":"DISPID_ACC_STATE","features":[523]},{"name":"DISPID_ACC_VALUE","features":[523]},{"name":"DataGrid_Control_GUID","features":[523]},{"name":"DataItem_Control_GUID","features":[523]},{"name":"DescribedBy_Property_GUID","features":[523]},{"name":"DockPattern_SetDockPosition","features":[523]},{"name":"DockPosition","features":[523]},{"name":"DockPosition_Bottom","features":[523]},{"name":"DockPosition_Fill","features":[523]},{"name":"DockPosition_Left","features":[523]},{"name":"DockPosition_None","features":[523]},{"name":"DockPosition_Right","features":[523]},{"name":"DockPosition_Top","features":[523]},{"name":"Dock_DockPosition_Property_GUID","features":[523]},{"name":"Dock_Pattern_GUID","features":[523]},{"name":"Document_Control_GUID","features":[523]},{"name":"Drag_DragCancel_Event_GUID","features":[523]},{"name":"Drag_DragComplete_Event_GUID","features":[523]},{"name":"Drag_DragStart_Event_GUID","features":[523]},{"name":"Drag_DropEffect_Property_GUID","features":[523]},{"name":"Drag_DropEffects_Property_GUID","features":[523]},{"name":"Drag_GrabbedItems_Property_GUID","features":[523]},{"name":"Drag_IsGrabbed_Property_GUID","features":[523]},{"name":"Drag_Pattern_GUID","features":[523]},{"name":"DropTarget_DragEnter_Event_GUID","features":[523]},{"name":"DropTarget_DragLeave_Event_GUID","features":[523]},{"name":"DropTarget_DropTargetEffect_Property_GUID","features":[523]},{"name":"DropTarget_DropTargetEffects_Property_GUID","features":[523]},{"name":"DropTarget_Dropped_Event_GUID","features":[523]},{"name":"DropTarget_Pattern_GUID","features":[523]},{"name":"Edit_Control_GUID","features":[523]},{"name":"EventArgsType","features":[523]},{"name":"EventArgsType_ActiveTextPositionChanged","features":[523]},{"name":"EventArgsType_AsyncContentLoaded","features":[523]},{"name":"EventArgsType_Changes","features":[523]},{"name":"EventArgsType_Notification","features":[523]},{"name":"EventArgsType_PropertyChanged","features":[523]},{"name":"EventArgsType_Simple","features":[523]},{"name":"EventArgsType_StructureChanged","features":[523]},{"name":"EventArgsType_StructuredMarkup","features":[523]},{"name":"EventArgsType_TextEditTextChanged","features":[523]},{"name":"EventArgsType_WindowClosed","features":[523]},{"name":"ExpandCollapsePattern_Collapse","features":[523]},{"name":"ExpandCollapsePattern_Expand","features":[523]},{"name":"ExpandCollapseState","features":[523]},{"name":"ExpandCollapseState_Collapsed","features":[523]},{"name":"ExpandCollapseState_Expanded","features":[523]},{"name":"ExpandCollapseState_LeafNode","features":[523]},{"name":"ExpandCollapseState_PartiallyExpanded","features":[523]},{"name":"ExpandCollapse_ExpandCollapseState_Property_GUID","features":[523]},{"name":"ExpandCollapse_Pattern_GUID","features":[523]},{"name":"ExtendedProperty","features":[523]},{"name":"FILTERKEYS","features":[523]},{"name":"FillColor_Property_GUID","features":[523]},{"name":"FillType","features":[523]},{"name":"FillType_Color","features":[523]},{"name":"FillType_Gradient","features":[523]},{"name":"FillType_None","features":[523]},{"name":"FillType_Pattern","features":[523]},{"name":"FillType_Picture","features":[523]},{"name":"FillType_Property_GUID","features":[523]},{"name":"FlowDirections","features":[523]},{"name":"FlowDirections_BottomToTop","features":[523]},{"name":"FlowDirections_Default","features":[523]},{"name":"FlowDirections_RightToLeft","features":[523]},{"name":"FlowDirections_Vertical","features":[523]},{"name":"FlowsFrom_Property_GUID","features":[523]},{"name":"FlowsTo_Property_GUID","features":[523]},{"name":"FrameworkId_Property_GUID","features":[523]},{"name":"FullDescription_Property_GUID","features":[523]},{"name":"GetOleaccVersionInfo","features":[523]},{"name":"GetRoleTextA","features":[523]},{"name":"GetRoleTextW","features":[523]},{"name":"GetStateTextA","features":[523]},{"name":"GetStateTextW","features":[523]},{"name":"GridItem_ColumnSpan_Property_GUID","features":[523]},{"name":"GridItem_Column_Property_GUID","features":[523]},{"name":"GridItem_Parent_Property_GUID","features":[523]},{"name":"GridItem_Pattern_GUID","features":[523]},{"name":"GridItem_RowSpan_Property_GUID","features":[523]},{"name":"GridItem_Row_Property_GUID","features":[523]},{"name":"GridPattern_GetItem","features":[523]},{"name":"Grid_ColumnCount_Property_GUID","features":[523]},{"name":"Grid_Pattern_GUID","features":[523]},{"name":"Grid_RowCount_Property_GUID","features":[523]},{"name":"Group_Control_GUID","features":[523]},{"name":"HCF_AVAILABLE","features":[523]},{"name":"HCF_CONFIRMHOTKEY","features":[523]},{"name":"HCF_HIGHCONTRASTON","features":[523]},{"name":"HCF_HOTKEYACTIVE","features":[523]},{"name":"HCF_HOTKEYAVAILABLE","features":[523]},{"name":"HCF_HOTKEYSOUND","features":[523]},{"name":"HCF_INDICATOR","features":[523]},{"name":"HCF_OPTION_NOTHEMECHANGE","features":[523]},{"name":"HIGHCONTRASTA","features":[523]},{"name":"HIGHCONTRASTW","features":[523]},{"name":"HIGHCONTRASTW_FLAGS","features":[523]},{"name":"HUIAEVENT","features":[523]},{"name":"HUIANODE","features":[523]},{"name":"HUIAPATTERNOBJECT","features":[523]},{"name":"HUIATEXTRANGE","features":[523]},{"name":"HWINEVENTHOOK","features":[523]},{"name":"HasKeyboardFocus_Property_GUID","features":[523]},{"name":"HeaderItem_Control_GUID","features":[523]},{"name":"Header_Control_GUID","features":[523]},{"name":"HeadingLevel1","features":[523]},{"name":"HeadingLevel2","features":[523]},{"name":"HeadingLevel3","features":[523]},{"name":"HeadingLevel4","features":[523]},{"name":"HeadingLevel5","features":[523]},{"name":"HeadingLevel6","features":[523]},{"name":"HeadingLevel7","features":[523]},{"name":"HeadingLevel8","features":[523]},{"name":"HeadingLevel9","features":[523]},{"name":"HeadingLevel_None","features":[523]},{"name":"HeadingLevel_Property_GUID","features":[523]},{"name":"HelpText_Property_GUID","features":[523]},{"name":"HorizontalTextAlignment","features":[523]},{"name":"HorizontalTextAlignment_Centered","features":[523]},{"name":"HorizontalTextAlignment_Justified","features":[523]},{"name":"HorizontalTextAlignment_Left","features":[523]},{"name":"HorizontalTextAlignment_Right","features":[523]},{"name":"HostedFragmentRootsInvalidated_Event_GUID","features":[523]},{"name":"Hyperlink_Control_GUID","features":[523]},{"name":"IAccIdentity","features":[523]},{"name":"IAccPropServer","features":[523]},{"name":"IAccPropServices","features":[523]},{"name":"IAccessible","features":[354,523]},{"name":"IAccessibleEx","features":[523]},{"name":"IAccessibleHandler","features":[523]},{"name":"IAccessibleHostingElementProviders","features":[523]},{"name":"IAccessibleWindowlessSite","features":[523]},{"name":"IAnnotationProvider","features":[523]},{"name":"ICustomNavigationProvider","features":[523]},{"name":"IDockProvider","features":[523]},{"name":"IDragProvider","features":[523]},{"name":"IDropTargetProvider","features":[523]},{"name":"IExpandCollapseProvider","features":[523]},{"name":"IGridItemProvider","features":[523]},{"name":"IGridProvider","features":[523]},{"name":"IIS_ControlAccessible","features":[523]},{"name":"IIS_IsOleaccProxy","features":[523]},{"name":"IInvokeProvider","features":[523]},{"name":"IItemContainerProvider","features":[523]},{"name":"ILegacyIAccessibleProvider","features":[523]},{"name":"IMultipleViewProvider","features":[523]},{"name":"IObjectModelProvider","features":[523]},{"name":"IProxyProviderWinEventHandler","features":[523]},{"name":"IProxyProviderWinEventSink","features":[523]},{"name":"IRangeValueProvider","features":[523]},{"name":"IRawElementProviderAdviseEvents","features":[523]},{"name":"IRawElementProviderFragment","features":[523]},{"name":"IRawElementProviderFragmentRoot","features":[523]},{"name":"IRawElementProviderHostingAccessibles","features":[523]},{"name":"IRawElementProviderHwndOverride","features":[523]},{"name":"IRawElementProviderSimple","features":[523]},{"name":"IRawElementProviderSimple2","features":[523]},{"name":"IRawElementProviderSimple3","features":[523]},{"name":"IRawElementProviderWindowlessSite","features":[523]},{"name":"IRichEditUiaInformation","features":[523]},{"name":"IRicheditWindowlessAccessibility","features":[523]},{"name":"IScrollItemProvider","features":[523]},{"name":"IScrollProvider","features":[523]},{"name":"ISelectionItemProvider","features":[523]},{"name":"ISelectionProvider","features":[523]},{"name":"ISelectionProvider2","features":[523]},{"name":"ISpreadsheetItemProvider","features":[523]},{"name":"ISpreadsheetProvider","features":[523]},{"name":"IStylesProvider","features":[523]},{"name":"ISynchronizedInputProvider","features":[523]},{"name":"ITableItemProvider","features":[523]},{"name":"ITableProvider","features":[523]},{"name":"ITextChildProvider","features":[523]},{"name":"ITextEditProvider","features":[523]},{"name":"ITextProvider","features":[523]},{"name":"ITextProvider2","features":[523]},{"name":"ITextRangeProvider","features":[523]},{"name":"ITextRangeProvider2","features":[523]},{"name":"IToggleProvider","features":[523]},{"name":"ITransformProvider","features":[523]},{"name":"ITransformProvider2","features":[523]},{"name":"IUIAutomation","features":[523]},{"name":"IUIAutomation2","features":[523]},{"name":"IUIAutomation3","features":[523]},{"name":"IUIAutomation4","features":[523]},{"name":"IUIAutomation5","features":[523]},{"name":"IUIAutomation6","features":[523]},{"name":"IUIAutomationActiveTextPositionChangedEventHandler","features":[523]},{"name":"IUIAutomationAndCondition","features":[523]},{"name":"IUIAutomationAnnotationPattern","features":[523]},{"name":"IUIAutomationBoolCondition","features":[523]},{"name":"IUIAutomationCacheRequest","features":[523]},{"name":"IUIAutomationChangesEventHandler","features":[523]},{"name":"IUIAutomationCondition","features":[523]},{"name":"IUIAutomationCustomNavigationPattern","features":[523]},{"name":"IUIAutomationDockPattern","features":[523]},{"name":"IUIAutomationDragPattern","features":[523]},{"name":"IUIAutomationDropTargetPattern","features":[523]},{"name":"IUIAutomationElement","features":[523]},{"name":"IUIAutomationElement2","features":[523]},{"name":"IUIAutomationElement3","features":[523]},{"name":"IUIAutomationElement4","features":[523]},{"name":"IUIAutomationElement5","features":[523]},{"name":"IUIAutomationElement6","features":[523]},{"name":"IUIAutomationElement7","features":[523]},{"name":"IUIAutomationElement8","features":[523]},{"name":"IUIAutomationElement9","features":[523]},{"name":"IUIAutomationElementArray","features":[523]},{"name":"IUIAutomationEventHandler","features":[523]},{"name":"IUIAutomationEventHandlerGroup","features":[523]},{"name":"IUIAutomationExpandCollapsePattern","features":[523]},{"name":"IUIAutomationFocusChangedEventHandler","features":[523]},{"name":"IUIAutomationGridItemPattern","features":[523]},{"name":"IUIAutomationGridPattern","features":[523]},{"name":"IUIAutomationInvokePattern","features":[523]},{"name":"IUIAutomationItemContainerPattern","features":[523]},{"name":"IUIAutomationLegacyIAccessiblePattern","features":[523]},{"name":"IUIAutomationMultipleViewPattern","features":[523]},{"name":"IUIAutomationNotCondition","features":[523]},{"name":"IUIAutomationNotificationEventHandler","features":[523]},{"name":"IUIAutomationObjectModelPattern","features":[523]},{"name":"IUIAutomationOrCondition","features":[523]},{"name":"IUIAutomationPatternHandler","features":[523]},{"name":"IUIAutomationPatternInstance","features":[523]},{"name":"IUIAutomationPropertyChangedEventHandler","features":[523]},{"name":"IUIAutomationPropertyCondition","features":[523]},{"name":"IUIAutomationProxyFactory","features":[523]},{"name":"IUIAutomationProxyFactoryEntry","features":[523]},{"name":"IUIAutomationProxyFactoryMapping","features":[523]},{"name":"IUIAutomationRangeValuePattern","features":[523]},{"name":"IUIAutomationRegistrar","features":[523]},{"name":"IUIAutomationScrollItemPattern","features":[523]},{"name":"IUIAutomationScrollPattern","features":[523]},{"name":"IUIAutomationSelectionItemPattern","features":[523]},{"name":"IUIAutomationSelectionPattern","features":[523]},{"name":"IUIAutomationSelectionPattern2","features":[523]},{"name":"IUIAutomationSpreadsheetItemPattern","features":[523]},{"name":"IUIAutomationSpreadsheetPattern","features":[523]},{"name":"IUIAutomationStructureChangedEventHandler","features":[523]},{"name":"IUIAutomationStylesPattern","features":[523]},{"name":"IUIAutomationSynchronizedInputPattern","features":[523]},{"name":"IUIAutomationTableItemPattern","features":[523]},{"name":"IUIAutomationTablePattern","features":[523]},{"name":"IUIAutomationTextChildPattern","features":[523]},{"name":"IUIAutomationTextEditPattern","features":[523]},{"name":"IUIAutomationTextEditTextChangedEventHandler","features":[523]},{"name":"IUIAutomationTextPattern","features":[523]},{"name":"IUIAutomationTextPattern2","features":[523]},{"name":"IUIAutomationTextRange","features":[523]},{"name":"IUIAutomationTextRange2","features":[523]},{"name":"IUIAutomationTextRange3","features":[523]},{"name":"IUIAutomationTextRangeArray","features":[523]},{"name":"IUIAutomationTogglePattern","features":[523]},{"name":"IUIAutomationTransformPattern","features":[523]},{"name":"IUIAutomationTransformPattern2","features":[523]},{"name":"IUIAutomationTreeWalker","features":[523]},{"name":"IUIAutomationValuePattern","features":[523]},{"name":"IUIAutomationVirtualizedItemPattern","features":[523]},{"name":"IUIAutomationWindowPattern","features":[523]},{"name":"IValueProvider","features":[523]},{"name":"IVirtualizedItemProvider","features":[523]},{"name":"IWindowProvider","features":[523]},{"name":"Image_Control_GUID","features":[523]},{"name":"InputDiscarded_Event_GUID","features":[523]},{"name":"InputReachedOtherElement_Event_GUID","features":[523]},{"name":"InputReachedTarget_Event_GUID","features":[523]},{"name":"InvokePattern_Invoke","features":[523]},{"name":"Invoke_Invoked_Event_GUID","features":[523]},{"name":"Invoke_Pattern_GUID","features":[523]},{"name":"IsAnnotationPatternAvailable_Property_GUID","features":[523]},{"name":"IsContentElement_Property_GUID","features":[523]},{"name":"IsControlElement_Property_GUID","features":[523]},{"name":"IsCustomNavigationPatternAvailable_Property_GUID","features":[523]},{"name":"IsDataValidForForm_Property_GUID","features":[523]},{"name":"IsDialog_Property_GUID","features":[523]},{"name":"IsDockPatternAvailable_Property_GUID","features":[523]},{"name":"IsDragPatternAvailable_Property_GUID","features":[523]},{"name":"IsDropTargetPatternAvailable_Property_GUID","features":[523]},{"name":"IsEnabled_Property_GUID","features":[523]},{"name":"IsExpandCollapsePatternAvailable_Property_GUID","features":[523]},{"name":"IsGridItemPatternAvailable_Property_GUID","features":[523]},{"name":"IsGridPatternAvailable_Property_GUID","features":[523]},{"name":"IsInvokePatternAvailable_Property_GUID","features":[523]},{"name":"IsItemContainerPatternAvailable_Property_GUID","features":[523]},{"name":"IsKeyboardFocusable_Property_GUID","features":[523]},{"name":"IsLegacyIAccessiblePatternAvailable_Property_GUID","features":[523]},{"name":"IsMultipleViewPatternAvailable_Property_GUID","features":[523]},{"name":"IsObjectModelPatternAvailable_Property_GUID","features":[523]},{"name":"IsOffscreen_Property_GUID","features":[523]},{"name":"IsPassword_Property_GUID","features":[523]},{"name":"IsPeripheral_Property_GUID","features":[523]},{"name":"IsRangeValuePatternAvailable_Property_GUID","features":[523]},{"name":"IsRequiredForForm_Property_GUID","features":[523]},{"name":"IsScrollItemPatternAvailable_Property_GUID","features":[523]},{"name":"IsScrollPatternAvailable_Property_GUID","features":[523]},{"name":"IsSelectionItemPatternAvailable_Property_GUID","features":[523]},{"name":"IsSelectionPattern2Available_Property_GUID","features":[523]},{"name":"IsSelectionPatternAvailable_Property_GUID","features":[523]},{"name":"IsSpreadsheetItemPatternAvailable_Property_GUID","features":[523]},{"name":"IsSpreadsheetPatternAvailable_Property_GUID","features":[523]},{"name":"IsStructuredMarkupPatternAvailable_Property_GUID","features":[523]},{"name":"IsStylesPatternAvailable_Property_GUID","features":[523]},{"name":"IsSynchronizedInputPatternAvailable_Property_GUID","features":[523]},{"name":"IsTableItemPatternAvailable_Property_GUID","features":[523]},{"name":"IsTablePatternAvailable_Property_GUID","features":[523]},{"name":"IsTextChildPatternAvailable_Property_GUID","features":[523]},{"name":"IsTextEditPatternAvailable_Property_GUID","features":[523]},{"name":"IsTextPattern2Available_Property_GUID","features":[523]},{"name":"IsTextPatternAvailable_Property_GUID","features":[523]},{"name":"IsTogglePatternAvailable_Property_GUID","features":[523]},{"name":"IsTransformPattern2Available_Property_GUID","features":[523]},{"name":"IsTransformPatternAvailable_Property_GUID","features":[523]},{"name":"IsValuePatternAvailable_Property_GUID","features":[523]},{"name":"IsVirtualizedItemPatternAvailable_Property_GUID","features":[523]},{"name":"IsWinEventHookInstalled","features":[303,523]},{"name":"IsWindowPatternAvailable_Property_GUID","features":[523]},{"name":"ItemContainerPattern_FindItemByProperty","features":[523]},{"name":"ItemContainer_Pattern_GUID","features":[523]},{"name":"ItemStatus_Property_GUID","features":[523]},{"name":"ItemType_Property_GUID","features":[523]},{"name":"LIBID_Accessibility","features":[523]},{"name":"LPFNACCESSIBLECHILDREN","features":[354,523]},{"name":"LPFNACCESSIBLEOBJECTFROMPOINT","features":[303,354,523]},{"name":"LPFNACCESSIBLEOBJECTFROMWINDOW","features":[303,523]},{"name":"LPFNCREATESTDACCESSIBLEOBJECT","features":[303,523]},{"name":"LPFNLRESULTFROMOBJECT","features":[303,523]},{"name":"LPFNOBJECTFROMLRESULT","features":[303,523]},{"name":"LabeledBy_Property_GUID","features":[523]},{"name":"LandmarkType_Property_GUID","features":[523]},{"name":"LayoutInvalidated_Event_GUID","features":[523]},{"name":"LegacyIAccessiblePattern_DoDefaultAction","features":[523]},{"name":"LegacyIAccessiblePattern_GetIAccessible","features":[354,523]},{"name":"LegacyIAccessiblePattern_Select","features":[523]},{"name":"LegacyIAccessiblePattern_SetValue","features":[523]},{"name":"LegacyIAccessible_ChildId_Property_GUID","features":[523]},{"name":"LegacyIAccessible_DefaultAction_Property_GUID","features":[523]},{"name":"LegacyIAccessible_Description_Property_GUID","features":[523]},{"name":"LegacyIAccessible_Help_Property_GUID","features":[523]},{"name":"LegacyIAccessible_KeyboardShortcut_Property_GUID","features":[523]},{"name":"LegacyIAccessible_Name_Property_GUID","features":[523]},{"name":"LegacyIAccessible_Pattern_GUID","features":[523]},{"name":"LegacyIAccessible_Role_Property_GUID","features":[523]},{"name":"LegacyIAccessible_Selection_Property_GUID","features":[523]},{"name":"LegacyIAccessible_State_Property_GUID","features":[523]},{"name":"LegacyIAccessible_Value_Property_GUID","features":[523]},{"name":"Level_Property_GUID","features":[523]},{"name":"ListItem_Control_GUID","features":[523]},{"name":"List_Control_GUID","features":[523]},{"name":"LiveRegionChanged_Event_GUID","features":[523]},{"name":"LiveSetting","features":[523]},{"name":"LiveSetting_Property_GUID","features":[523]},{"name":"LocalizedControlType_Property_GUID","features":[523]},{"name":"LocalizedLandmarkType_Property_GUID","features":[523]},{"name":"LresultFromObject","features":[303,523]},{"name":"MOUSEKEYS","features":[523]},{"name":"MSAAMENUINFO","features":[523]},{"name":"MSAA_MENU_SIG","features":[523]},{"name":"MenuBar_Control_GUID","features":[523]},{"name":"MenuClosed_Event_GUID","features":[523]},{"name":"MenuItem_Control_GUID","features":[523]},{"name":"MenuModeEnd_Event_GUID","features":[523]},{"name":"MenuModeStart_Event_GUID","features":[523]},{"name":"MenuOpened_Event_GUID","features":[523]},{"name":"Menu_Control_GUID","features":[523]},{"name":"MultipleViewPattern_GetViewName","features":[523]},{"name":"MultipleViewPattern_SetCurrentView","features":[523]},{"name":"MultipleView_CurrentView_Property_GUID","features":[523]},{"name":"MultipleView_Pattern_GUID","features":[523]},{"name":"MultipleView_SupportedViews_Property_GUID","features":[523]},{"name":"NAVDIR_DOWN","features":[523]},{"name":"NAVDIR_FIRSTCHILD","features":[523]},{"name":"NAVDIR_LASTCHILD","features":[523]},{"name":"NAVDIR_LEFT","features":[523]},{"name":"NAVDIR_MAX","features":[523]},{"name":"NAVDIR_MIN","features":[523]},{"name":"NAVDIR_NEXT","features":[523]},{"name":"NAVDIR_PREVIOUS","features":[523]},{"name":"NAVDIR_RIGHT","features":[523]},{"name":"NAVDIR_UP","features":[523]},{"name":"Name_Property_GUID","features":[523]},{"name":"NavigateDirection","features":[523]},{"name":"NavigateDirection_FirstChild","features":[523]},{"name":"NavigateDirection_LastChild","features":[523]},{"name":"NavigateDirection_NextSibling","features":[523]},{"name":"NavigateDirection_Parent","features":[523]},{"name":"NavigateDirection_PreviousSibling","features":[523]},{"name":"NewNativeWindowHandle_Property_GUID","features":[523]},{"name":"NormalizeState","features":[523]},{"name":"NormalizeState_Custom","features":[523]},{"name":"NormalizeState_None","features":[523]},{"name":"NormalizeState_View","features":[523]},{"name":"NotificationKind","features":[523]},{"name":"NotificationKind_ActionAborted","features":[523]},{"name":"NotificationKind_ActionCompleted","features":[523]},{"name":"NotificationKind_ItemAdded","features":[523]},{"name":"NotificationKind_ItemRemoved","features":[523]},{"name":"NotificationKind_Other","features":[523]},{"name":"NotificationProcessing","features":[523]},{"name":"NotificationProcessing_All","features":[523]},{"name":"NotificationProcessing_CurrentThenMostRecent","features":[523]},{"name":"NotificationProcessing_ImportantAll","features":[523]},{"name":"NotificationProcessing_ImportantMostRecent","features":[523]},{"name":"NotificationProcessing_MostRecent","features":[523]},{"name":"Notification_Event_GUID","features":[523]},{"name":"NotifyWinEvent","features":[303,523]},{"name":"ObjectFromLresult","features":[303,523]},{"name":"ObjectModel_Pattern_GUID","features":[523]},{"name":"Off","features":[523]},{"name":"OptimizeForVisualContent_Property_GUID","features":[523]},{"name":"OrientationType","features":[523]},{"name":"OrientationType_Horizontal","features":[523]},{"name":"OrientationType_None","features":[523]},{"name":"OrientationType_Vertical","features":[523]},{"name":"Orientation_Property_GUID","features":[523]},{"name":"OutlineColor_Property_GUID","features":[523]},{"name":"OutlineStyles","features":[523]},{"name":"OutlineStyles_Embossed","features":[523]},{"name":"OutlineStyles_Engraved","features":[523]},{"name":"OutlineStyles_None","features":[523]},{"name":"OutlineStyles_Outline","features":[523]},{"name":"OutlineStyles_Shadow","features":[523]},{"name":"OutlineThickness_Property_GUID","features":[523]},{"name":"PROPID_ACC_DEFAULTACTION","features":[523]},{"name":"PROPID_ACC_DESCRIPTION","features":[523]},{"name":"PROPID_ACC_DESCRIPTIONMAP","features":[523]},{"name":"PROPID_ACC_DODEFAULTACTION","features":[523]},{"name":"PROPID_ACC_FOCUS","features":[523]},{"name":"PROPID_ACC_HELP","features":[523]},{"name":"PROPID_ACC_HELPTOPIC","features":[523]},{"name":"PROPID_ACC_KEYBOARDSHORTCUT","features":[523]},{"name":"PROPID_ACC_NAME","features":[523]},{"name":"PROPID_ACC_NAV_DOWN","features":[523]},{"name":"PROPID_ACC_NAV_FIRSTCHILD","features":[523]},{"name":"PROPID_ACC_NAV_LASTCHILD","features":[523]},{"name":"PROPID_ACC_NAV_LEFT","features":[523]},{"name":"PROPID_ACC_NAV_NEXT","features":[523]},{"name":"PROPID_ACC_NAV_PREV","features":[523]},{"name":"PROPID_ACC_NAV_RIGHT","features":[523]},{"name":"PROPID_ACC_NAV_UP","features":[523]},{"name":"PROPID_ACC_PARENT","features":[523]},{"name":"PROPID_ACC_ROLE","features":[523]},{"name":"PROPID_ACC_ROLEMAP","features":[523]},{"name":"PROPID_ACC_SELECTION","features":[523]},{"name":"PROPID_ACC_STATE","features":[523]},{"name":"PROPID_ACC_STATEMAP","features":[523]},{"name":"PROPID_ACC_VALUE","features":[523]},{"name":"PROPID_ACC_VALUEMAP","features":[523]},{"name":"Pane_Control_GUID","features":[523]},{"name":"Polite","features":[523]},{"name":"PositionInSet_Property_GUID","features":[523]},{"name":"ProcessId_Property_GUID","features":[523]},{"name":"ProgressBar_Control_GUID","features":[523]},{"name":"PropertyConditionFlags","features":[523]},{"name":"PropertyConditionFlags_IgnoreCase","features":[523]},{"name":"PropertyConditionFlags_MatchSubstring","features":[523]},{"name":"PropertyConditionFlags_None","features":[523]},{"name":"ProviderDescription_Property_GUID","features":[523]},{"name":"ProviderOptions","features":[523]},{"name":"ProviderOptions_ClientSideProvider","features":[523]},{"name":"ProviderOptions_HasNativeIAccessible","features":[523]},{"name":"ProviderOptions_NonClientAreaProvider","features":[523]},{"name":"ProviderOptions_OverrideProvider","features":[523]},{"name":"ProviderOptions_ProviderOwnsSetFocus","features":[523]},{"name":"ProviderOptions_RefuseNonClientSupport","features":[523]},{"name":"ProviderOptions_ServerSideProvider","features":[523]},{"name":"ProviderOptions_UseClientCoordinates","features":[523]},{"name":"ProviderOptions_UseComThreading","features":[523]},{"name":"ProviderType","features":[523]},{"name":"ProviderType_BaseHwnd","features":[523]},{"name":"ProviderType_NonClientArea","features":[523]},{"name":"ProviderType_Proxy","features":[523]},{"name":"ROLE_SYSTEM_ALERT","features":[523]},{"name":"ROLE_SYSTEM_ANIMATION","features":[523]},{"name":"ROLE_SYSTEM_APPLICATION","features":[523]},{"name":"ROLE_SYSTEM_BORDER","features":[523]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWN","features":[523]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWNGRID","features":[523]},{"name":"ROLE_SYSTEM_BUTTONMENU","features":[523]},{"name":"ROLE_SYSTEM_CARET","features":[523]},{"name":"ROLE_SYSTEM_CELL","features":[523]},{"name":"ROLE_SYSTEM_CHARACTER","features":[523]},{"name":"ROLE_SYSTEM_CHART","features":[523]},{"name":"ROLE_SYSTEM_CHECKBUTTON","features":[523]},{"name":"ROLE_SYSTEM_CLIENT","features":[523]},{"name":"ROLE_SYSTEM_CLOCK","features":[523]},{"name":"ROLE_SYSTEM_COLUMN","features":[523]},{"name":"ROLE_SYSTEM_COLUMNHEADER","features":[523]},{"name":"ROLE_SYSTEM_COMBOBOX","features":[523]},{"name":"ROLE_SYSTEM_CURSOR","features":[523]},{"name":"ROLE_SYSTEM_DIAGRAM","features":[523]},{"name":"ROLE_SYSTEM_DIAL","features":[523]},{"name":"ROLE_SYSTEM_DIALOG","features":[523]},{"name":"ROLE_SYSTEM_DOCUMENT","features":[523]},{"name":"ROLE_SYSTEM_DROPLIST","features":[523]},{"name":"ROLE_SYSTEM_EQUATION","features":[523]},{"name":"ROLE_SYSTEM_GRAPHIC","features":[523]},{"name":"ROLE_SYSTEM_GRIP","features":[523]},{"name":"ROLE_SYSTEM_GROUPING","features":[523]},{"name":"ROLE_SYSTEM_HELPBALLOON","features":[523]},{"name":"ROLE_SYSTEM_HOTKEYFIELD","features":[523]},{"name":"ROLE_SYSTEM_INDICATOR","features":[523]},{"name":"ROLE_SYSTEM_IPADDRESS","features":[523]},{"name":"ROLE_SYSTEM_LINK","features":[523]},{"name":"ROLE_SYSTEM_LIST","features":[523]},{"name":"ROLE_SYSTEM_LISTITEM","features":[523]},{"name":"ROLE_SYSTEM_MENUBAR","features":[523]},{"name":"ROLE_SYSTEM_MENUITEM","features":[523]},{"name":"ROLE_SYSTEM_MENUPOPUP","features":[523]},{"name":"ROLE_SYSTEM_OUTLINE","features":[523]},{"name":"ROLE_SYSTEM_OUTLINEBUTTON","features":[523]},{"name":"ROLE_SYSTEM_OUTLINEITEM","features":[523]},{"name":"ROLE_SYSTEM_PAGETAB","features":[523]},{"name":"ROLE_SYSTEM_PAGETABLIST","features":[523]},{"name":"ROLE_SYSTEM_PANE","features":[523]},{"name":"ROLE_SYSTEM_PROGRESSBAR","features":[523]},{"name":"ROLE_SYSTEM_PROPERTYPAGE","features":[523]},{"name":"ROLE_SYSTEM_PUSHBUTTON","features":[523]},{"name":"ROLE_SYSTEM_RADIOBUTTON","features":[523]},{"name":"ROLE_SYSTEM_ROW","features":[523]},{"name":"ROLE_SYSTEM_ROWHEADER","features":[523]},{"name":"ROLE_SYSTEM_SCROLLBAR","features":[523]},{"name":"ROLE_SYSTEM_SEPARATOR","features":[523]},{"name":"ROLE_SYSTEM_SLIDER","features":[523]},{"name":"ROLE_SYSTEM_SOUND","features":[523]},{"name":"ROLE_SYSTEM_SPINBUTTON","features":[523]},{"name":"ROLE_SYSTEM_SPLITBUTTON","features":[523]},{"name":"ROLE_SYSTEM_STATICTEXT","features":[523]},{"name":"ROLE_SYSTEM_STATUSBAR","features":[523]},{"name":"ROLE_SYSTEM_TABLE","features":[523]},{"name":"ROLE_SYSTEM_TEXT","features":[523]},{"name":"ROLE_SYSTEM_TITLEBAR","features":[523]},{"name":"ROLE_SYSTEM_TOOLBAR","features":[523]},{"name":"ROLE_SYSTEM_TOOLTIP","features":[523]},{"name":"ROLE_SYSTEM_WHITESPACE","features":[523]},{"name":"ROLE_SYSTEM_WINDOW","features":[523]},{"name":"RadioButton_Control_GUID","features":[523]},{"name":"RangeValuePattern_SetValue","features":[523]},{"name":"RangeValue_IsReadOnly_Property_GUID","features":[523]},{"name":"RangeValue_LargeChange_Property_GUID","features":[523]},{"name":"RangeValue_Maximum_Property_GUID","features":[523]},{"name":"RangeValue_Minimum_Property_GUID","features":[523]},{"name":"RangeValue_Pattern_GUID","features":[523]},{"name":"RangeValue_SmallChange_Property_GUID","features":[523]},{"name":"RangeValue_Value_Property_GUID","features":[523]},{"name":"RegisterPointerInputTarget","features":[303,523,365]},{"name":"RegisterPointerInputTargetEx","features":[303,523,365]},{"name":"Rotation_Property_GUID","features":[523]},{"name":"RowOrColumnMajor","features":[523]},{"name":"RowOrColumnMajor_ColumnMajor","features":[523]},{"name":"RowOrColumnMajor_Indeterminate","features":[523]},{"name":"RowOrColumnMajor_RowMajor","features":[523]},{"name":"RuntimeId_Property_GUID","features":[523]},{"name":"SELFLAG_ADDSELECTION","features":[523]},{"name":"SELFLAG_EXTENDSELECTION","features":[523]},{"name":"SELFLAG_NONE","features":[523]},{"name":"SELFLAG_REMOVESELECTION","features":[523]},{"name":"SELFLAG_TAKEFOCUS","features":[523]},{"name":"SELFLAG_TAKESELECTION","features":[523]},{"name":"SELFLAG_VALID","features":[523]},{"name":"SERIALKEYSA","features":[523]},{"name":"SERIALKEYSW","features":[523]},{"name":"SERIALKEYS_FLAGS","features":[523]},{"name":"SERKF_AVAILABLE","features":[523]},{"name":"SERKF_INDICATOR","features":[523]},{"name":"SERKF_SERIALKEYSON","features":[523]},{"name":"SID_ControlElementProvider","features":[523]},{"name":"SID_IsUIAutomationObject","features":[523]},{"name":"SKF_AUDIBLEFEEDBACK","features":[523]},{"name":"SKF_AVAILABLE","features":[523]},{"name":"SKF_CONFIRMHOTKEY","features":[523]},{"name":"SKF_HOTKEYACTIVE","features":[523]},{"name":"SKF_HOTKEYSOUND","features":[523]},{"name":"SKF_INDICATOR","features":[523]},{"name":"SKF_LALTLATCHED","features":[523]},{"name":"SKF_LALTLOCKED","features":[523]},{"name":"SKF_LCTLLATCHED","features":[523]},{"name":"SKF_LCTLLOCKED","features":[523]},{"name":"SKF_LSHIFTLATCHED","features":[523]},{"name":"SKF_LSHIFTLOCKED","features":[523]},{"name":"SKF_LWINLATCHED","features":[523]},{"name":"SKF_LWINLOCKED","features":[523]},{"name":"SKF_RALTLATCHED","features":[523]},{"name":"SKF_RALTLOCKED","features":[523]},{"name":"SKF_RCTLLATCHED","features":[523]},{"name":"SKF_RCTLLOCKED","features":[523]},{"name":"SKF_RSHIFTLATCHED","features":[523]},{"name":"SKF_RSHIFTLOCKED","features":[523]},{"name":"SKF_RWINLATCHED","features":[523]},{"name":"SKF_RWINLOCKED","features":[523]},{"name":"SKF_STICKYKEYSON","features":[523]},{"name":"SKF_TRISTATE","features":[523]},{"name":"SKF_TWOKEYSOFF","features":[523]},{"name":"SOUNDSENTRYA","features":[523]},{"name":"SOUNDSENTRYW","features":[523]},{"name":"SOUNDSENTRY_FLAGS","features":[523]},{"name":"SOUNDSENTRY_TEXT_EFFECT","features":[523]},{"name":"SOUNDSENTRY_WINDOWS_EFFECT","features":[523]},{"name":"SOUND_SENTRY_GRAPHICS_EFFECT","features":[523]},{"name":"SSF_AVAILABLE","features":[523]},{"name":"SSF_INDICATOR","features":[523]},{"name":"SSF_SOUNDSENTRYON","features":[523]},{"name":"SSGF_DISPLAY","features":[523]},{"name":"SSGF_NONE","features":[523]},{"name":"SSTF_BORDER","features":[523]},{"name":"SSTF_CHARS","features":[523]},{"name":"SSTF_DISPLAY","features":[523]},{"name":"SSTF_NONE","features":[523]},{"name":"SSWF_CUSTOM","features":[523]},{"name":"SSWF_DISPLAY","features":[523]},{"name":"SSWF_NONE","features":[523]},{"name":"SSWF_TITLE","features":[523]},{"name":"SSWF_WINDOW","features":[523]},{"name":"STATE_SYSTEM_HASPOPUP","features":[523]},{"name":"STATE_SYSTEM_NORMAL","features":[523]},{"name":"STICKYKEYS","features":[523]},{"name":"STICKYKEYS_FLAGS","features":[523]},{"name":"SayAsInterpretAs","features":[523]},{"name":"SayAsInterpretAs_Address","features":[523]},{"name":"SayAsInterpretAs_Alphanumeric","features":[523]},{"name":"SayAsInterpretAs_Cardinal","features":[523]},{"name":"SayAsInterpretAs_Currency","features":[523]},{"name":"SayAsInterpretAs_Date","features":[523]},{"name":"SayAsInterpretAs_Date_DayMonth","features":[523]},{"name":"SayAsInterpretAs_Date_DayMonthYear","features":[523]},{"name":"SayAsInterpretAs_Date_MonthDay","features":[523]},{"name":"SayAsInterpretAs_Date_MonthDayYear","features":[523]},{"name":"SayAsInterpretAs_Date_MonthYear","features":[523]},{"name":"SayAsInterpretAs_Date_Year","features":[523]},{"name":"SayAsInterpretAs_Date_YearMonth","features":[523]},{"name":"SayAsInterpretAs_Date_YearMonthDay","features":[523]},{"name":"SayAsInterpretAs_Media","features":[523]},{"name":"SayAsInterpretAs_Name","features":[523]},{"name":"SayAsInterpretAs_Net","features":[523]},{"name":"SayAsInterpretAs_None","features":[523]},{"name":"SayAsInterpretAs_Number","features":[523]},{"name":"SayAsInterpretAs_Ordinal","features":[523]},{"name":"SayAsInterpretAs_Spell","features":[523]},{"name":"SayAsInterpretAs_Telephone","features":[523]},{"name":"SayAsInterpretAs_Time","features":[523]},{"name":"SayAsInterpretAs_Time_HoursMinutes12","features":[523]},{"name":"SayAsInterpretAs_Time_HoursMinutes24","features":[523]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds12","features":[523]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds24","features":[523]},{"name":"SayAsInterpretAs_Url","features":[523]},{"name":"ScrollAmount","features":[523]},{"name":"ScrollAmount_LargeDecrement","features":[523]},{"name":"ScrollAmount_LargeIncrement","features":[523]},{"name":"ScrollAmount_NoAmount","features":[523]},{"name":"ScrollAmount_SmallDecrement","features":[523]},{"name":"ScrollAmount_SmallIncrement","features":[523]},{"name":"ScrollBar_Control_GUID","features":[523]},{"name":"ScrollItemPattern_ScrollIntoView","features":[523]},{"name":"ScrollItem_Pattern_GUID","features":[523]},{"name":"ScrollPattern_Scroll","features":[523]},{"name":"ScrollPattern_SetScrollPercent","features":[523]},{"name":"Scroll_HorizontalScrollPercent_Property_GUID","features":[523]},{"name":"Scroll_HorizontalViewSize_Property_GUID","features":[523]},{"name":"Scroll_HorizontallyScrollable_Property_GUID","features":[523]},{"name":"Scroll_Pattern_GUID","features":[523]},{"name":"Scroll_VerticalScrollPercent_Property_GUID","features":[523]},{"name":"Scroll_VerticalViewSize_Property_GUID","features":[523]},{"name":"Scroll_VerticallyScrollable_Property_GUID","features":[523]},{"name":"Selection2_CurrentSelectedItem_Property_GUID","features":[523]},{"name":"Selection2_FirstSelectedItem_Property_GUID","features":[523]},{"name":"Selection2_ItemCount_Property_GUID","features":[523]},{"name":"Selection2_LastSelectedItem_Property_GUID","features":[523]},{"name":"SelectionItemPattern_AddToSelection","features":[523]},{"name":"SelectionItemPattern_RemoveFromSelection","features":[523]},{"name":"SelectionItemPattern_Select","features":[523]},{"name":"SelectionItem_ElementAddedToSelectionEvent_Event_GUID","features":[523]},{"name":"SelectionItem_ElementRemovedFromSelectionEvent_Event_GUID","features":[523]},{"name":"SelectionItem_ElementSelectedEvent_Event_GUID","features":[523]},{"name":"SelectionItem_IsSelected_Property_GUID","features":[523]},{"name":"SelectionItem_Pattern_GUID","features":[523]},{"name":"SelectionItem_SelectionContainer_Property_GUID","features":[523]},{"name":"Selection_CanSelectMultiple_Property_GUID","features":[523]},{"name":"Selection_InvalidatedEvent_Event_GUID","features":[523]},{"name":"Selection_IsSelectionRequired_Property_GUID","features":[523]},{"name":"Selection_Pattern2_GUID","features":[523]},{"name":"Selection_Pattern_GUID","features":[523]},{"name":"Selection_Selection_Property_GUID","features":[523]},{"name":"SemanticZoom_Control_GUID","features":[523]},{"name":"Separator_Control_GUID","features":[523]},{"name":"SetWinEventHook","features":[303,523]},{"name":"SizeOfSet_Property_GUID","features":[523]},{"name":"Size_Property_GUID","features":[523]},{"name":"Slider_Control_GUID","features":[523]},{"name":"Spinner_Control_GUID","features":[523]},{"name":"SplitButton_Control_GUID","features":[523]},{"name":"SpreadsheetItem_AnnotationObjects_Property_GUID","features":[523]},{"name":"SpreadsheetItem_AnnotationTypes_Property_GUID","features":[523]},{"name":"SpreadsheetItem_Formula_Property_GUID","features":[523]},{"name":"SpreadsheetItem_Pattern_GUID","features":[523]},{"name":"Spreadsheet_Pattern_GUID","features":[523]},{"name":"StatusBar_Control_GUID","features":[523]},{"name":"StructureChangeType","features":[523]},{"name":"StructureChangeType_ChildAdded","features":[523]},{"name":"StructureChangeType_ChildRemoved","features":[523]},{"name":"StructureChangeType_ChildrenBulkAdded","features":[523]},{"name":"StructureChangeType_ChildrenBulkRemoved","features":[523]},{"name":"StructureChangeType_ChildrenInvalidated","features":[523]},{"name":"StructureChangeType_ChildrenReordered","features":[523]},{"name":"StructureChanged_Event_GUID","features":[523]},{"name":"StructuredMarkup_CompositionComplete_Event_GUID","features":[523]},{"name":"StructuredMarkup_Deleted_Event_GUID","features":[523]},{"name":"StructuredMarkup_Pattern_GUID","features":[523]},{"name":"StructuredMarkup_SelectionChanged_Event_GUID","features":[523]},{"name":"StyleId_BulletedList","features":[523]},{"name":"StyleId_BulletedList_GUID","features":[523]},{"name":"StyleId_Custom","features":[523]},{"name":"StyleId_Custom_GUID","features":[523]},{"name":"StyleId_Emphasis","features":[523]},{"name":"StyleId_Emphasis_GUID","features":[523]},{"name":"StyleId_Heading1","features":[523]},{"name":"StyleId_Heading1_GUID","features":[523]},{"name":"StyleId_Heading2","features":[523]},{"name":"StyleId_Heading2_GUID","features":[523]},{"name":"StyleId_Heading3","features":[523]},{"name":"StyleId_Heading3_GUID","features":[523]},{"name":"StyleId_Heading4","features":[523]},{"name":"StyleId_Heading4_GUID","features":[523]},{"name":"StyleId_Heading5","features":[523]},{"name":"StyleId_Heading5_GUID","features":[523]},{"name":"StyleId_Heading6","features":[523]},{"name":"StyleId_Heading6_GUID","features":[523]},{"name":"StyleId_Heading7","features":[523]},{"name":"StyleId_Heading7_GUID","features":[523]},{"name":"StyleId_Heading8","features":[523]},{"name":"StyleId_Heading8_GUID","features":[523]},{"name":"StyleId_Heading9","features":[523]},{"name":"StyleId_Heading9_GUID","features":[523]},{"name":"StyleId_Normal","features":[523]},{"name":"StyleId_Normal_GUID","features":[523]},{"name":"StyleId_NumberedList","features":[523]},{"name":"StyleId_NumberedList_GUID","features":[523]},{"name":"StyleId_Quote","features":[523]},{"name":"StyleId_Quote_GUID","features":[523]},{"name":"StyleId_Subtitle","features":[523]},{"name":"StyleId_Subtitle_GUID","features":[523]},{"name":"StyleId_Title","features":[523]},{"name":"StyleId_Title_GUID","features":[523]},{"name":"Styles_ExtendedProperties_Property_GUID","features":[523]},{"name":"Styles_FillColor_Property_GUID","features":[523]},{"name":"Styles_FillPatternColor_Property_GUID","features":[523]},{"name":"Styles_FillPatternStyle_Property_GUID","features":[523]},{"name":"Styles_Pattern_GUID","features":[523]},{"name":"Styles_Shape_Property_GUID","features":[523]},{"name":"Styles_StyleId_Property_GUID","features":[523]},{"name":"Styles_StyleName_Property_GUID","features":[523]},{"name":"SupportedTextSelection","features":[523]},{"name":"SupportedTextSelection_Multiple","features":[523]},{"name":"SupportedTextSelection_None","features":[523]},{"name":"SupportedTextSelection_Single","features":[523]},{"name":"SynchronizedInputPattern_Cancel","features":[523]},{"name":"SynchronizedInputPattern_StartListening","features":[523]},{"name":"SynchronizedInputType","features":[523]},{"name":"SynchronizedInputType_KeyDown","features":[523]},{"name":"SynchronizedInputType_KeyUp","features":[523]},{"name":"SynchronizedInputType_LeftMouseDown","features":[523]},{"name":"SynchronizedInputType_LeftMouseUp","features":[523]},{"name":"SynchronizedInputType_RightMouseDown","features":[523]},{"name":"SynchronizedInputType_RightMouseUp","features":[523]},{"name":"SynchronizedInput_Pattern_GUID","features":[523]},{"name":"SystemAlert_Event_GUID","features":[523]},{"name":"TOGGLEKEYS","features":[523]},{"name":"TabItem_Control_GUID","features":[523]},{"name":"Tab_Control_GUID","features":[523]},{"name":"TableItem_ColumnHeaderItems_Property_GUID","features":[523]},{"name":"TableItem_Pattern_GUID","features":[523]},{"name":"TableItem_RowHeaderItems_Property_GUID","features":[523]},{"name":"Table_ColumnHeaders_Property_GUID","features":[523]},{"name":"Table_Control_GUID","features":[523]},{"name":"Table_Pattern_GUID","features":[523]},{"name":"Table_RowHeaders_Property_GUID","features":[523]},{"name":"Table_RowOrColumnMajor_Property_GUID","features":[523]},{"name":"TextChild_Pattern_GUID","features":[523]},{"name":"TextDecorationLineStyle","features":[523]},{"name":"TextDecorationLineStyle_Dash","features":[523]},{"name":"TextDecorationLineStyle_DashDot","features":[523]},{"name":"TextDecorationLineStyle_DashDotDot","features":[523]},{"name":"TextDecorationLineStyle_Dot","features":[523]},{"name":"TextDecorationLineStyle_Double","features":[523]},{"name":"TextDecorationLineStyle_DoubleWavy","features":[523]},{"name":"TextDecorationLineStyle_LongDash","features":[523]},{"name":"TextDecorationLineStyle_None","features":[523]},{"name":"TextDecorationLineStyle_Other","features":[523]},{"name":"TextDecorationLineStyle_Single","features":[523]},{"name":"TextDecorationLineStyle_ThickDash","features":[523]},{"name":"TextDecorationLineStyle_ThickDashDot","features":[523]},{"name":"TextDecorationLineStyle_ThickDashDotDot","features":[523]},{"name":"TextDecorationLineStyle_ThickDot","features":[523]},{"name":"TextDecorationLineStyle_ThickLongDash","features":[523]},{"name":"TextDecorationLineStyle_ThickSingle","features":[523]},{"name":"TextDecorationLineStyle_ThickWavy","features":[523]},{"name":"TextDecorationLineStyle_Wavy","features":[523]},{"name":"TextDecorationLineStyle_WordsOnly","features":[523]},{"name":"TextEditChangeType","features":[523]},{"name":"TextEditChangeType_AutoComplete","features":[523]},{"name":"TextEditChangeType_AutoCorrect","features":[523]},{"name":"TextEditChangeType_Composition","features":[523]},{"name":"TextEditChangeType_CompositionFinalized","features":[523]},{"name":"TextEditChangeType_None","features":[523]},{"name":"TextEdit_ConversionTargetChanged_Event_GUID","features":[523]},{"name":"TextEdit_Pattern_GUID","features":[523]},{"name":"TextEdit_TextChanged_Event_GUID","features":[523]},{"name":"TextPatternRangeEndpoint","features":[523]},{"name":"TextPatternRangeEndpoint_End","features":[523]},{"name":"TextPatternRangeEndpoint_Start","features":[523]},{"name":"TextPattern_GetSelection","features":[354,523]},{"name":"TextPattern_GetVisibleRanges","features":[354,523]},{"name":"TextPattern_RangeFromChild","features":[523]},{"name":"TextPattern_RangeFromPoint","features":[523]},{"name":"TextPattern_get_DocumentRange","features":[523]},{"name":"TextPattern_get_SupportedTextSelection","features":[523]},{"name":"TextRange_AddToSelection","features":[523]},{"name":"TextRange_Clone","features":[523]},{"name":"TextRange_Compare","features":[303,523]},{"name":"TextRange_CompareEndpoints","features":[523]},{"name":"TextRange_ExpandToEnclosingUnit","features":[523]},{"name":"TextRange_FindAttribute","features":[303,523]},{"name":"TextRange_FindText","features":[303,523]},{"name":"TextRange_GetAttributeValue","features":[523]},{"name":"TextRange_GetBoundingRectangles","features":[354,523]},{"name":"TextRange_GetChildren","features":[354,523]},{"name":"TextRange_GetEnclosingElement","features":[523]},{"name":"TextRange_GetText","features":[523]},{"name":"TextRange_Move","features":[523]},{"name":"TextRange_MoveEndpointByRange","features":[523]},{"name":"TextRange_MoveEndpointByUnit","features":[523]},{"name":"TextRange_RemoveFromSelection","features":[523]},{"name":"TextRange_ScrollIntoView","features":[303,523]},{"name":"TextRange_Select","features":[523]},{"name":"TextUnit","features":[523]},{"name":"TextUnit_Character","features":[523]},{"name":"TextUnit_Document","features":[523]},{"name":"TextUnit_Format","features":[523]},{"name":"TextUnit_Line","features":[523]},{"name":"TextUnit_Page","features":[523]},{"name":"TextUnit_Paragraph","features":[523]},{"name":"TextUnit_Word","features":[523]},{"name":"Text_AfterParagraphSpacing_Attribute_GUID","features":[523]},{"name":"Text_AfterSpacing_Attribute_GUID","features":[523]},{"name":"Text_AnimationStyle_Attribute_GUID","features":[523]},{"name":"Text_AnnotationObjects_Attribute_GUID","features":[523]},{"name":"Text_AnnotationTypes_Attribute_GUID","features":[523]},{"name":"Text_BackgroundColor_Attribute_GUID","features":[523]},{"name":"Text_BeforeParagraphSpacing_Attribute_GUID","features":[523]},{"name":"Text_BeforeSpacing_Attribute_GUID","features":[523]},{"name":"Text_BulletStyle_Attribute_GUID","features":[523]},{"name":"Text_CapStyle_Attribute_GUID","features":[523]},{"name":"Text_CaretBidiMode_Attribute_GUID","features":[523]},{"name":"Text_CaretPosition_Attribute_GUID","features":[523]},{"name":"Text_Control_GUID","features":[523]},{"name":"Text_Culture_Attribute_GUID","features":[523]},{"name":"Text_FontName_Attribute_GUID","features":[523]},{"name":"Text_FontSize_Attribute_GUID","features":[523]},{"name":"Text_FontWeight_Attribute_GUID","features":[523]},{"name":"Text_ForegroundColor_Attribute_GUID","features":[523]},{"name":"Text_HorizontalTextAlignment_Attribute_GUID","features":[523]},{"name":"Text_IndentationFirstLine_Attribute_GUID","features":[523]},{"name":"Text_IndentationLeading_Attribute_GUID","features":[523]},{"name":"Text_IndentationTrailing_Attribute_GUID","features":[523]},{"name":"Text_IsActive_Attribute_GUID","features":[523]},{"name":"Text_IsHidden_Attribute_GUID","features":[523]},{"name":"Text_IsItalic_Attribute_GUID","features":[523]},{"name":"Text_IsReadOnly_Attribute_GUID","features":[523]},{"name":"Text_IsSubscript_Attribute_GUID","features":[523]},{"name":"Text_IsSuperscript_Attribute_GUID","features":[523]},{"name":"Text_LineSpacing_Attribute_GUID","features":[523]},{"name":"Text_Link_Attribute_GUID","features":[523]},{"name":"Text_MarginBottom_Attribute_GUID","features":[523]},{"name":"Text_MarginLeading_Attribute_GUID","features":[523]},{"name":"Text_MarginTop_Attribute_GUID","features":[523]},{"name":"Text_MarginTrailing_Attribute_GUID","features":[523]},{"name":"Text_OutlineStyles_Attribute_GUID","features":[523]},{"name":"Text_OverlineColor_Attribute_GUID","features":[523]},{"name":"Text_OverlineStyle_Attribute_GUID","features":[523]},{"name":"Text_Pattern2_GUID","features":[523]},{"name":"Text_Pattern_GUID","features":[523]},{"name":"Text_SayAsInterpretAs_Attribute_GUID","features":[523]},{"name":"Text_SelectionActiveEnd_Attribute_GUID","features":[523]},{"name":"Text_StrikethroughColor_Attribute_GUID","features":[523]},{"name":"Text_StrikethroughStyle_Attribute_GUID","features":[523]},{"name":"Text_StyleId_Attribute_GUID","features":[523]},{"name":"Text_StyleName_Attribute_GUID","features":[523]},{"name":"Text_Tabs_Attribute_GUID","features":[523]},{"name":"Text_TextChangedEvent_Event_GUID","features":[523]},{"name":"Text_TextFlowDirections_Attribute_GUID","features":[523]},{"name":"Text_TextSelectionChangedEvent_Event_GUID","features":[523]},{"name":"Text_UnderlineColor_Attribute_GUID","features":[523]},{"name":"Text_UnderlineStyle_Attribute_GUID","features":[523]},{"name":"Thumb_Control_GUID","features":[523]},{"name":"TitleBar_Control_GUID","features":[523]},{"name":"TogglePattern_Toggle","features":[523]},{"name":"ToggleState","features":[523]},{"name":"ToggleState_Indeterminate","features":[523]},{"name":"ToggleState_Off","features":[523]},{"name":"ToggleState_On","features":[523]},{"name":"Toggle_Pattern_GUID","features":[523]},{"name":"Toggle_ToggleState_Property_GUID","features":[523]},{"name":"ToolBar_Control_GUID","features":[523]},{"name":"ToolTipClosed_Event_GUID","features":[523]},{"name":"ToolTipOpened_Event_GUID","features":[523]},{"name":"ToolTip_Control_GUID","features":[523]},{"name":"Tranform_Pattern2_GUID","features":[523]},{"name":"Transform2_CanZoom_Property_GUID","features":[523]},{"name":"Transform2_ZoomLevel_Property_GUID","features":[523]},{"name":"Transform2_ZoomMaximum_Property_GUID","features":[523]},{"name":"Transform2_ZoomMinimum_Property_GUID","features":[523]},{"name":"TransformPattern_Move","features":[523]},{"name":"TransformPattern_Resize","features":[523]},{"name":"TransformPattern_Rotate","features":[523]},{"name":"Transform_CanMove_Property_GUID","features":[523]},{"name":"Transform_CanResize_Property_GUID","features":[523]},{"name":"Transform_CanRotate_Property_GUID","features":[523]},{"name":"Transform_Pattern_GUID","features":[523]},{"name":"TreeItem_Control_GUID","features":[523]},{"name":"TreeScope","features":[523]},{"name":"TreeScope_Ancestors","features":[523]},{"name":"TreeScope_Children","features":[523]},{"name":"TreeScope_Descendants","features":[523]},{"name":"TreeScope_Element","features":[523]},{"name":"TreeScope_None","features":[523]},{"name":"TreeScope_Parent","features":[523]},{"name":"TreeScope_Subtree","features":[523]},{"name":"TreeTraversalOptions","features":[523]},{"name":"TreeTraversalOptions_Default","features":[523]},{"name":"TreeTraversalOptions_LastToFirstOrder","features":[523]},{"name":"TreeTraversalOptions_PostOrder","features":[523]},{"name":"Tree_Control_GUID","features":[523]},{"name":"UIA_ANNOTATIONTYPE","features":[523]},{"name":"UIA_AcceleratorKeyPropertyId","features":[523]},{"name":"UIA_AccessKeyPropertyId","features":[523]},{"name":"UIA_ActiveTextPositionChangedEventId","features":[523]},{"name":"UIA_AfterParagraphSpacingAttributeId","features":[523]},{"name":"UIA_AnimationStyleAttributeId","features":[523]},{"name":"UIA_AnnotationAnnotationTypeIdPropertyId","features":[523]},{"name":"UIA_AnnotationAnnotationTypeNamePropertyId","features":[523]},{"name":"UIA_AnnotationAuthorPropertyId","features":[523]},{"name":"UIA_AnnotationDateTimePropertyId","features":[523]},{"name":"UIA_AnnotationObjectsAttributeId","features":[523]},{"name":"UIA_AnnotationObjectsPropertyId","features":[523]},{"name":"UIA_AnnotationPatternId","features":[523]},{"name":"UIA_AnnotationTargetPropertyId","features":[523]},{"name":"UIA_AnnotationTypesAttributeId","features":[523]},{"name":"UIA_AnnotationTypesPropertyId","features":[523]},{"name":"UIA_AppBarControlTypeId","features":[523]},{"name":"UIA_AriaPropertiesPropertyId","features":[523]},{"name":"UIA_AriaRolePropertyId","features":[523]},{"name":"UIA_AsyncContentLoadedEventId","features":[523]},{"name":"UIA_AutomationFocusChangedEventId","features":[523]},{"name":"UIA_AutomationIdPropertyId","features":[523]},{"name":"UIA_AutomationPropertyChangedEventId","features":[523]},{"name":"UIA_BackgroundColorAttributeId","features":[523]},{"name":"UIA_BeforeParagraphSpacingAttributeId","features":[523]},{"name":"UIA_BoundingRectanglePropertyId","features":[523]},{"name":"UIA_BulletStyleAttributeId","features":[523]},{"name":"UIA_ButtonControlTypeId","features":[523]},{"name":"UIA_CHANGE_ID","features":[523]},{"name":"UIA_CONTROLTYPE_ID","features":[523]},{"name":"UIA_CalendarControlTypeId","features":[523]},{"name":"UIA_CapStyleAttributeId","features":[523]},{"name":"UIA_CaretBidiModeAttributeId","features":[523]},{"name":"UIA_CaretPositionAttributeId","features":[523]},{"name":"UIA_CenterPointPropertyId","features":[523]},{"name":"UIA_ChangesEventId","features":[523]},{"name":"UIA_CheckBoxControlTypeId","features":[523]},{"name":"UIA_ClassNamePropertyId","features":[523]},{"name":"UIA_ClickablePointPropertyId","features":[523]},{"name":"UIA_ComboBoxControlTypeId","features":[523]},{"name":"UIA_ControlTypePropertyId","features":[523]},{"name":"UIA_ControllerForPropertyId","features":[523]},{"name":"UIA_CultureAttributeId","features":[523]},{"name":"UIA_CulturePropertyId","features":[523]},{"name":"UIA_CustomControlTypeId","features":[523]},{"name":"UIA_CustomLandmarkTypeId","features":[523]},{"name":"UIA_CustomNavigationPatternId","features":[523]},{"name":"UIA_DataGridControlTypeId","features":[523]},{"name":"UIA_DataItemControlTypeId","features":[523]},{"name":"UIA_DescribedByPropertyId","features":[523]},{"name":"UIA_DockDockPositionPropertyId","features":[523]},{"name":"UIA_DockPatternId","features":[523]},{"name":"UIA_DocumentControlTypeId","features":[523]},{"name":"UIA_DragDropEffectPropertyId","features":[523]},{"name":"UIA_DragDropEffectsPropertyId","features":[523]},{"name":"UIA_DragGrabbedItemsPropertyId","features":[523]},{"name":"UIA_DragIsGrabbedPropertyId","features":[523]},{"name":"UIA_DragPatternId","features":[523]},{"name":"UIA_Drag_DragCancelEventId","features":[523]},{"name":"UIA_Drag_DragCompleteEventId","features":[523]},{"name":"UIA_Drag_DragStartEventId","features":[523]},{"name":"UIA_DropTargetDropTargetEffectPropertyId","features":[523]},{"name":"UIA_DropTargetDropTargetEffectsPropertyId","features":[523]},{"name":"UIA_DropTargetPatternId","features":[523]},{"name":"UIA_DropTarget_DragEnterEventId","features":[523]},{"name":"UIA_DropTarget_DragLeaveEventId","features":[523]},{"name":"UIA_DropTarget_DroppedEventId","features":[523]},{"name":"UIA_EVENT_ID","features":[523]},{"name":"UIA_E_ELEMENTNOTAVAILABLE","features":[523]},{"name":"UIA_E_ELEMENTNOTENABLED","features":[523]},{"name":"UIA_E_INVALIDOPERATION","features":[523]},{"name":"UIA_E_NOCLICKABLEPOINT","features":[523]},{"name":"UIA_E_NOTSUPPORTED","features":[523]},{"name":"UIA_E_PROXYASSEMBLYNOTLOADED","features":[523]},{"name":"UIA_E_TIMEOUT","features":[523]},{"name":"UIA_EditControlTypeId","features":[523]},{"name":"UIA_ExpandCollapseExpandCollapseStatePropertyId","features":[523]},{"name":"UIA_ExpandCollapsePatternId","features":[523]},{"name":"UIA_FillColorPropertyId","features":[523]},{"name":"UIA_FillTypePropertyId","features":[523]},{"name":"UIA_FlowsFromPropertyId","features":[523]},{"name":"UIA_FlowsToPropertyId","features":[523]},{"name":"UIA_FontNameAttributeId","features":[523]},{"name":"UIA_FontSizeAttributeId","features":[523]},{"name":"UIA_FontWeightAttributeId","features":[523]},{"name":"UIA_ForegroundColorAttributeId","features":[523]},{"name":"UIA_FormLandmarkTypeId","features":[523]},{"name":"UIA_FrameworkIdPropertyId","features":[523]},{"name":"UIA_FullDescriptionPropertyId","features":[523]},{"name":"UIA_GridColumnCountPropertyId","features":[523]},{"name":"UIA_GridItemColumnPropertyId","features":[523]},{"name":"UIA_GridItemColumnSpanPropertyId","features":[523]},{"name":"UIA_GridItemContainingGridPropertyId","features":[523]},{"name":"UIA_GridItemPatternId","features":[523]},{"name":"UIA_GridItemRowPropertyId","features":[523]},{"name":"UIA_GridItemRowSpanPropertyId","features":[523]},{"name":"UIA_GridPatternId","features":[523]},{"name":"UIA_GridRowCountPropertyId","features":[523]},{"name":"UIA_GroupControlTypeId","features":[523]},{"name":"UIA_HEADINGLEVEL_ID","features":[523]},{"name":"UIA_HasKeyboardFocusPropertyId","features":[523]},{"name":"UIA_HeaderControlTypeId","features":[523]},{"name":"UIA_HeaderItemControlTypeId","features":[523]},{"name":"UIA_HeadingLevelPropertyId","features":[523]},{"name":"UIA_HelpTextPropertyId","features":[523]},{"name":"UIA_HorizontalTextAlignmentAttributeId","features":[523]},{"name":"UIA_HostedFragmentRootsInvalidatedEventId","features":[523]},{"name":"UIA_HyperlinkControlTypeId","features":[523]},{"name":"UIA_IAFP_DEFAULT","features":[523]},{"name":"UIA_IAFP_UNWRAP_BRIDGE","features":[523]},{"name":"UIA_ImageControlTypeId","features":[523]},{"name":"UIA_IndentationFirstLineAttributeId","features":[523]},{"name":"UIA_IndentationLeadingAttributeId","features":[523]},{"name":"UIA_IndentationTrailingAttributeId","features":[523]},{"name":"UIA_InputDiscardedEventId","features":[523]},{"name":"UIA_InputReachedOtherElementEventId","features":[523]},{"name":"UIA_InputReachedTargetEventId","features":[523]},{"name":"UIA_InvokePatternId","features":[523]},{"name":"UIA_Invoke_InvokedEventId","features":[523]},{"name":"UIA_IsActiveAttributeId","features":[523]},{"name":"UIA_IsAnnotationPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsContentElementPropertyId","features":[523]},{"name":"UIA_IsControlElementPropertyId","features":[523]},{"name":"UIA_IsCustomNavigationPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsDataValidForFormPropertyId","features":[523]},{"name":"UIA_IsDialogPropertyId","features":[523]},{"name":"UIA_IsDockPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsDragPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsDropTargetPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsEnabledPropertyId","features":[523]},{"name":"UIA_IsExpandCollapsePatternAvailablePropertyId","features":[523]},{"name":"UIA_IsGridItemPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsGridPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsHiddenAttributeId","features":[523]},{"name":"UIA_IsInvokePatternAvailablePropertyId","features":[523]},{"name":"UIA_IsItalicAttributeId","features":[523]},{"name":"UIA_IsItemContainerPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsKeyboardFocusablePropertyId","features":[523]},{"name":"UIA_IsLegacyIAccessiblePatternAvailablePropertyId","features":[523]},{"name":"UIA_IsMultipleViewPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsObjectModelPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsOffscreenPropertyId","features":[523]},{"name":"UIA_IsPasswordPropertyId","features":[523]},{"name":"UIA_IsPeripheralPropertyId","features":[523]},{"name":"UIA_IsRangeValuePatternAvailablePropertyId","features":[523]},{"name":"UIA_IsReadOnlyAttributeId","features":[523]},{"name":"UIA_IsRequiredForFormPropertyId","features":[523]},{"name":"UIA_IsScrollItemPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsScrollPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsSelectionItemPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsSelectionPattern2AvailablePropertyId","features":[523]},{"name":"UIA_IsSelectionPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsSpreadsheetItemPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsSpreadsheetPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsStylesPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsSubscriptAttributeId","features":[523]},{"name":"UIA_IsSuperscriptAttributeId","features":[523]},{"name":"UIA_IsSynchronizedInputPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsTableItemPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsTablePatternAvailablePropertyId","features":[523]},{"name":"UIA_IsTextChildPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsTextEditPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsTextPattern2AvailablePropertyId","features":[523]},{"name":"UIA_IsTextPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsTogglePatternAvailablePropertyId","features":[523]},{"name":"UIA_IsTransformPattern2AvailablePropertyId","features":[523]},{"name":"UIA_IsTransformPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsValuePatternAvailablePropertyId","features":[523]},{"name":"UIA_IsVirtualizedItemPatternAvailablePropertyId","features":[523]},{"name":"UIA_IsWindowPatternAvailablePropertyId","features":[523]},{"name":"UIA_ItemContainerPatternId","features":[523]},{"name":"UIA_ItemStatusPropertyId","features":[523]},{"name":"UIA_ItemTypePropertyId","features":[523]},{"name":"UIA_LANDMARKTYPE_ID","features":[523]},{"name":"UIA_LabeledByPropertyId","features":[523]},{"name":"UIA_LandmarkTypePropertyId","features":[523]},{"name":"UIA_LayoutInvalidatedEventId","features":[523]},{"name":"UIA_LegacyIAccessibleChildIdPropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleDefaultActionPropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleDescriptionPropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleHelpPropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleKeyboardShortcutPropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleNamePropertyId","features":[523]},{"name":"UIA_LegacyIAccessiblePatternId","features":[523]},{"name":"UIA_LegacyIAccessibleRolePropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleSelectionPropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleStatePropertyId","features":[523]},{"name":"UIA_LegacyIAccessibleValuePropertyId","features":[523]},{"name":"UIA_LevelPropertyId","features":[523]},{"name":"UIA_LineSpacingAttributeId","features":[523]},{"name":"UIA_LinkAttributeId","features":[523]},{"name":"UIA_ListControlTypeId","features":[523]},{"name":"UIA_ListItemControlTypeId","features":[523]},{"name":"UIA_LiveRegionChangedEventId","features":[523]},{"name":"UIA_LiveSettingPropertyId","features":[523]},{"name":"UIA_LocalizedControlTypePropertyId","features":[523]},{"name":"UIA_LocalizedLandmarkTypePropertyId","features":[523]},{"name":"UIA_METADATA_ID","features":[523]},{"name":"UIA_MainLandmarkTypeId","features":[523]},{"name":"UIA_MarginBottomAttributeId","features":[523]},{"name":"UIA_MarginLeadingAttributeId","features":[523]},{"name":"UIA_MarginTopAttributeId","features":[523]},{"name":"UIA_MarginTrailingAttributeId","features":[523]},{"name":"UIA_MenuBarControlTypeId","features":[523]},{"name":"UIA_MenuClosedEventId","features":[523]},{"name":"UIA_MenuControlTypeId","features":[523]},{"name":"UIA_MenuItemControlTypeId","features":[523]},{"name":"UIA_MenuModeEndEventId","features":[523]},{"name":"UIA_MenuModeStartEventId","features":[523]},{"name":"UIA_MenuOpenedEventId","features":[523]},{"name":"UIA_MultipleViewCurrentViewPropertyId","features":[523]},{"name":"UIA_MultipleViewPatternId","features":[523]},{"name":"UIA_MultipleViewSupportedViewsPropertyId","features":[523]},{"name":"UIA_NamePropertyId","features":[523]},{"name":"UIA_NativeWindowHandlePropertyId","features":[523]},{"name":"UIA_NavigationLandmarkTypeId","features":[523]},{"name":"UIA_NotificationEventId","features":[523]},{"name":"UIA_ObjectModelPatternId","features":[523]},{"name":"UIA_OptimizeForVisualContentPropertyId","features":[523]},{"name":"UIA_OrientationPropertyId","features":[523]},{"name":"UIA_OutlineColorPropertyId","features":[523]},{"name":"UIA_OutlineStylesAttributeId","features":[523]},{"name":"UIA_OutlineThicknessPropertyId","features":[523]},{"name":"UIA_OverlineColorAttributeId","features":[523]},{"name":"UIA_OverlineStyleAttributeId","features":[523]},{"name":"UIA_PATTERN_ID","features":[523]},{"name":"UIA_PFIA_DEFAULT","features":[523]},{"name":"UIA_PFIA_UNWRAP_BRIDGE","features":[523]},{"name":"UIA_PROPERTY_ID","features":[523]},{"name":"UIA_PaneControlTypeId","features":[523]},{"name":"UIA_PositionInSetPropertyId","features":[523]},{"name":"UIA_ProcessIdPropertyId","features":[523]},{"name":"UIA_ProgressBarControlTypeId","features":[523]},{"name":"UIA_ProviderDescriptionPropertyId","features":[523]},{"name":"UIA_RadioButtonControlTypeId","features":[523]},{"name":"UIA_RangeValueIsReadOnlyPropertyId","features":[523]},{"name":"UIA_RangeValueLargeChangePropertyId","features":[523]},{"name":"UIA_RangeValueMaximumPropertyId","features":[523]},{"name":"UIA_RangeValueMinimumPropertyId","features":[523]},{"name":"UIA_RangeValuePatternId","features":[523]},{"name":"UIA_RangeValueSmallChangePropertyId","features":[523]},{"name":"UIA_RangeValueValuePropertyId","features":[523]},{"name":"UIA_RotationPropertyId","features":[523]},{"name":"UIA_RuntimeIdPropertyId","features":[523]},{"name":"UIA_STYLE_ID","features":[523]},{"name":"UIA_SayAsInterpretAsAttributeId","features":[523]},{"name":"UIA_SayAsInterpretAsMetadataId","features":[523]},{"name":"UIA_ScrollBarControlTypeId","features":[523]},{"name":"UIA_ScrollHorizontalScrollPercentPropertyId","features":[523]},{"name":"UIA_ScrollHorizontalViewSizePropertyId","features":[523]},{"name":"UIA_ScrollHorizontallyScrollablePropertyId","features":[523]},{"name":"UIA_ScrollItemPatternId","features":[523]},{"name":"UIA_ScrollPatternId","features":[523]},{"name":"UIA_ScrollPatternNoScroll","features":[523]},{"name":"UIA_ScrollVerticalScrollPercentPropertyId","features":[523]},{"name":"UIA_ScrollVerticalViewSizePropertyId","features":[523]},{"name":"UIA_ScrollVerticallyScrollablePropertyId","features":[523]},{"name":"UIA_SearchLandmarkTypeId","features":[523]},{"name":"UIA_Selection2CurrentSelectedItemPropertyId","features":[523]},{"name":"UIA_Selection2FirstSelectedItemPropertyId","features":[523]},{"name":"UIA_Selection2ItemCountPropertyId","features":[523]},{"name":"UIA_Selection2LastSelectedItemPropertyId","features":[523]},{"name":"UIA_SelectionActiveEndAttributeId","features":[523]},{"name":"UIA_SelectionCanSelectMultiplePropertyId","features":[523]},{"name":"UIA_SelectionIsSelectionRequiredPropertyId","features":[523]},{"name":"UIA_SelectionItemIsSelectedPropertyId","features":[523]},{"name":"UIA_SelectionItemPatternId","features":[523]},{"name":"UIA_SelectionItemSelectionContainerPropertyId","features":[523]},{"name":"UIA_SelectionItem_ElementAddedToSelectionEventId","features":[523]},{"name":"UIA_SelectionItem_ElementRemovedFromSelectionEventId","features":[523]},{"name":"UIA_SelectionItem_ElementSelectedEventId","features":[523]},{"name":"UIA_SelectionPattern2Id","features":[523]},{"name":"UIA_SelectionPatternId","features":[523]},{"name":"UIA_SelectionSelectionPropertyId","features":[523]},{"name":"UIA_Selection_InvalidatedEventId","features":[523]},{"name":"UIA_SemanticZoomControlTypeId","features":[523]},{"name":"UIA_SeparatorControlTypeId","features":[523]},{"name":"UIA_SizeOfSetPropertyId","features":[523]},{"name":"UIA_SizePropertyId","features":[523]},{"name":"UIA_SliderControlTypeId","features":[523]},{"name":"UIA_SpinnerControlTypeId","features":[523]},{"name":"UIA_SplitButtonControlTypeId","features":[523]},{"name":"UIA_SpreadsheetItemAnnotationObjectsPropertyId","features":[523]},{"name":"UIA_SpreadsheetItemAnnotationTypesPropertyId","features":[523]},{"name":"UIA_SpreadsheetItemFormulaPropertyId","features":[523]},{"name":"UIA_SpreadsheetItemPatternId","features":[523]},{"name":"UIA_SpreadsheetPatternId","features":[523]},{"name":"UIA_StatusBarControlTypeId","features":[523]},{"name":"UIA_StrikethroughColorAttributeId","features":[523]},{"name":"UIA_StrikethroughStyleAttributeId","features":[523]},{"name":"UIA_StructureChangedEventId","features":[523]},{"name":"UIA_StyleIdAttributeId","features":[523]},{"name":"UIA_StyleNameAttributeId","features":[523]},{"name":"UIA_StylesExtendedPropertiesPropertyId","features":[523]},{"name":"UIA_StylesFillColorPropertyId","features":[523]},{"name":"UIA_StylesFillPatternColorPropertyId","features":[523]},{"name":"UIA_StylesFillPatternStylePropertyId","features":[523]},{"name":"UIA_StylesPatternId","features":[523]},{"name":"UIA_StylesShapePropertyId","features":[523]},{"name":"UIA_StylesStyleIdPropertyId","features":[523]},{"name":"UIA_StylesStyleNamePropertyId","features":[523]},{"name":"UIA_SummaryChangeId","features":[523]},{"name":"UIA_SynchronizedInputPatternId","features":[523]},{"name":"UIA_SystemAlertEventId","features":[523]},{"name":"UIA_TEXTATTRIBUTE_ID","features":[523]},{"name":"UIA_TabControlTypeId","features":[523]},{"name":"UIA_TabItemControlTypeId","features":[523]},{"name":"UIA_TableColumnHeadersPropertyId","features":[523]},{"name":"UIA_TableControlTypeId","features":[523]},{"name":"UIA_TableItemColumnHeaderItemsPropertyId","features":[523]},{"name":"UIA_TableItemPatternId","features":[523]},{"name":"UIA_TableItemRowHeaderItemsPropertyId","features":[523]},{"name":"UIA_TablePatternId","features":[523]},{"name":"UIA_TableRowHeadersPropertyId","features":[523]},{"name":"UIA_TableRowOrColumnMajorPropertyId","features":[523]},{"name":"UIA_TabsAttributeId","features":[523]},{"name":"UIA_TextChildPatternId","features":[523]},{"name":"UIA_TextControlTypeId","features":[523]},{"name":"UIA_TextEditPatternId","features":[523]},{"name":"UIA_TextEdit_ConversionTargetChangedEventId","features":[523]},{"name":"UIA_TextEdit_TextChangedEventId","features":[523]},{"name":"UIA_TextFlowDirectionsAttributeId","features":[523]},{"name":"UIA_TextPattern2Id","features":[523]},{"name":"UIA_TextPatternId","features":[523]},{"name":"UIA_Text_TextChangedEventId","features":[523]},{"name":"UIA_Text_TextSelectionChangedEventId","features":[523]},{"name":"UIA_ThumbControlTypeId","features":[523]},{"name":"UIA_TitleBarControlTypeId","features":[523]},{"name":"UIA_TogglePatternId","features":[523]},{"name":"UIA_ToggleToggleStatePropertyId","features":[523]},{"name":"UIA_ToolBarControlTypeId","features":[523]},{"name":"UIA_ToolTipClosedEventId","features":[523]},{"name":"UIA_ToolTipControlTypeId","features":[523]},{"name":"UIA_ToolTipOpenedEventId","features":[523]},{"name":"UIA_Transform2CanZoomPropertyId","features":[523]},{"name":"UIA_Transform2ZoomLevelPropertyId","features":[523]},{"name":"UIA_Transform2ZoomMaximumPropertyId","features":[523]},{"name":"UIA_Transform2ZoomMinimumPropertyId","features":[523]},{"name":"UIA_TransformCanMovePropertyId","features":[523]},{"name":"UIA_TransformCanResizePropertyId","features":[523]},{"name":"UIA_TransformCanRotatePropertyId","features":[523]},{"name":"UIA_TransformPattern2Id","features":[523]},{"name":"UIA_TransformPatternId","features":[523]},{"name":"UIA_TreeControlTypeId","features":[523]},{"name":"UIA_TreeItemControlTypeId","features":[523]},{"name":"UIA_UnderlineColorAttributeId","features":[523]},{"name":"UIA_UnderlineStyleAttributeId","features":[523]},{"name":"UIA_ValueIsReadOnlyPropertyId","features":[523]},{"name":"UIA_ValuePatternId","features":[523]},{"name":"UIA_ValueValuePropertyId","features":[523]},{"name":"UIA_VirtualizedItemPatternId","features":[523]},{"name":"UIA_VisualEffectsPropertyId","features":[523]},{"name":"UIA_WindowCanMaximizePropertyId","features":[523]},{"name":"UIA_WindowCanMinimizePropertyId","features":[523]},{"name":"UIA_WindowControlTypeId","features":[523]},{"name":"UIA_WindowIsModalPropertyId","features":[523]},{"name":"UIA_WindowIsTopmostPropertyId","features":[523]},{"name":"UIA_WindowPatternId","features":[523]},{"name":"UIA_WindowWindowInteractionStatePropertyId","features":[523]},{"name":"UIA_WindowWindowVisualStatePropertyId","features":[523]},{"name":"UIA_Window_WindowClosedEventId","features":[523]},{"name":"UIA_Window_WindowOpenedEventId","features":[523]},{"name":"UIAutomationEventInfo","features":[523]},{"name":"UIAutomationMethodInfo","features":[303,523]},{"name":"UIAutomationParameter","features":[523]},{"name":"UIAutomationPatternInfo","features":[303,523]},{"name":"UIAutomationPropertyInfo","features":[523]},{"name":"UIAutomationType","features":[523]},{"name":"UIAutomationType_Array","features":[523]},{"name":"UIAutomationType_Bool","features":[523]},{"name":"UIAutomationType_BoolArray","features":[523]},{"name":"UIAutomationType_Double","features":[523]},{"name":"UIAutomationType_DoubleArray","features":[523]},{"name":"UIAutomationType_Element","features":[523]},{"name":"UIAutomationType_ElementArray","features":[523]},{"name":"UIAutomationType_Int","features":[523]},{"name":"UIAutomationType_IntArray","features":[523]},{"name":"UIAutomationType_Out","features":[523]},{"name":"UIAutomationType_OutBool","features":[523]},{"name":"UIAutomationType_OutBoolArray","features":[523]},{"name":"UIAutomationType_OutDouble","features":[523]},{"name":"UIAutomationType_OutDoubleArray","features":[523]},{"name":"UIAutomationType_OutElement","features":[523]},{"name":"UIAutomationType_OutElementArray","features":[523]},{"name":"UIAutomationType_OutInt","features":[523]},{"name":"UIAutomationType_OutIntArray","features":[523]},{"name":"UIAutomationType_OutPoint","features":[523]},{"name":"UIAutomationType_OutPointArray","features":[523]},{"name":"UIAutomationType_OutRect","features":[523]},{"name":"UIAutomationType_OutRectArray","features":[523]},{"name":"UIAutomationType_OutString","features":[523]},{"name":"UIAutomationType_OutStringArray","features":[523]},{"name":"UIAutomationType_Point","features":[523]},{"name":"UIAutomationType_PointArray","features":[523]},{"name":"UIAutomationType_Rect","features":[523]},{"name":"UIAutomationType_RectArray","features":[523]},{"name":"UIAutomationType_String","features":[523]},{"name":"UIAutomationType_StringArray","features":[523]},{"name":"UiaAddEvent","features":[354,523]},{"name":"UiaAndOrCondition","features":[523]},{"name":"UiaAppendRuntimeId","features":[523]},{"name":"UiaAsyncContentLoadedEventArgs","features":[523]},{"name":"UiaCacheRequest","features":[523]},{"name":"UiaChangeInfo","features":[523]},{"name":"UiaChangesEventArgs","features":[523]},{"name":"UiaClientsAreListening","features":[303,523]},{"name":"UiaCondition","features":[523]},{"name":"UiaDisconnectAllProviders","features":[523]},{"name":"UiaDisconnectProvider","features":[523]},{"name":"UiaEventAddWindow","features":[303,523]},{"name":"UiaEventArgs","features":[523]},{"name":"UiaEventCallback","features":[354,523]},{"name":"UiaEventRemoveWindow","features":[303,523]},{"name":"UiaFind","features":[303,354,523]},{"name":"UiaFindParams","features":[303,523]},{"name":"UiaGetErrorDescription","features":[303,523]},{"name":"UiaGetPatternProvider","features":[523]},{"name":"UiaGetPropertyValue","features":[523]},{"name":"UiaGetReservedMixedAttributeValue","features":[523]},{"name":"UiaGetReservedNotSupportedValue","features":[523]},{"name":"UiaGetRootNode","features":[523]},{"name":"UiaGetRuntimeId","features":[354,523]},{"name":"UiaGetUpdatedCache","features":[354,523]},{"name":"UiaHPatternObjectFromVariant","features":[523]},{"name":"UiaHTextRangeFromVariant","features":[523]},{"name":"UiaHUiaNodeFromVariant","features":[523]},{"name":"UiaHasServerSideProvider","features":[303,523]},{"name":"UiaHostProviderFromHwnd","features":[303,523]},{"name":"UiaIAccessibleFromProvider","features":[354,523]},{"name":"UiaLookupId","features":[523]},{"name":"UiaNavigate","features":[354,523]},{"name":"UiaNodeFromFocus","features":[354,523]},{"name":"UiaNodeFromHandle","features":[303,523]},{"name":"UiaNodeFromPoint","features":[354,523]},{"name":"UiaNodeFromProvider","features":[523]},{"name":"UiaNodeRelease","features":[303,523]},{"name":"UiaNotCondition","features":[523]},{"name":"UiaPatternRelease","features":[303,523]},{"name":"UiaPoint","features":[523]},{"name":"UiaPropertyChangedEventArgs","features":[523]},{"name":"UiaPropertyCondition","features":[523]},{"name":"UiaProviderCallback","features":[303,354,523]},{"name":"UiaProviderForNonClient","features":[303,523]},{"name":"UiaProviderFromIAccessible","features":[354,523]},{"name":"UiaRaiseActiveTextPositionChangedEvent","features":[523]},{"name":"UiaRaiseAsyncContentLoadedEvent","features":[523]},{"name":"UiaRaiseAutomationEvent","features":[523]},{"name":"UiaRaiseAutomationPropertyChangedEvent","features":[523]},{"name":"UiaRaiseChangesEvent","features":[523]},{"name":"UiaRaiseNotificationEvent","features":[523]},{"name":"UiaRaiseStructureChangedEvent","features":[523]},{"name":"UiaRaiseTextEditTextChangedEvent","features":[354,523]},{"name":"UiaRect","features":[523]},{"name":"UiaRegisterProviderCallback","features":[303,354,523]},{"name":"UiaRemoveEvent","features":[523]},{"name":"UiaReturnRawElementProvider","features":[303,523]},{"name":"UiaRootObjectId","features":[523]},{"name":"UiaSetFocus","features":[523]},{"name":"UiaStructureChangedEventArgs","features":[523]},{"name":"UiaTextEditTextChangedEventArgs","features":[354,523]},{"name":"UiaTextRangeRelease","features":[303,523]},{"name":"UiaWindowClosedEventArgs","features":[523]},{"name":"UnhookWinEvent","features":[303,523]},{"name":"UnregisterPointerInputTarget","features":[303,523,365]},{"name":"UnregisterPointerInputTargetEx","features":[303,523,365]},{"name":"ValuePattern_SetValue","features":[523]},{"name":"Value_IsReadOnly_Property_GUID","features":[523]},{"name":"Value_Pattern_GUID","features":[523]},{"name":"Value_Value_Property_GUID","features":[523]},{"name":"VirtualizedItemPattern_Realize","features":[523]},{"name":"VirtualizedItem_Pattern_GUID","features":[523]},{"name":"VisualEffects","features":[523]},{"name":"VisualEffects_Bevel","features":[523]},{"name":"VisualEffects_Glow","features":[523]},{"name":"VisualEffects_None","features":[523]},{"name":"VisualEffects_Property_GUID","features":[523]},{"name":"VisualEffects_Reflection","features":[523]},{"name":"VisualEffects_Shadow","features":[523]},{"name":"VisualEffects_SoftEdges","features":[523]},{"name":"WINEVENTPROC","features":[303,523]},{"name":"WindowFromAccessibleObject","features":[303,354,523]},{"name":"WindowInteractionState","features":[523]},{"name":"WindowInteractionState_BlockedByModalWindow","features":[523]},{"name":"WindowInteractionState_Closing","features":[523]},{"name":"WindowInteractionState_NotResponding","features":[523]},{"name":"WindowInteractionState_ReadyForUserInteraction","features":[523]},{"name":"WindowInteractionState_Running","features":[523]},{"name":"WindowPattern_Close","features":[523]},{"name":"WindowPattern_SetWindowVisualState","features":[523]},{"name":"WindowPattern_WaitForInputIdle","features":[303,523]},{"name":"WindowVisualState","features":[523]},{"name":"WindowVisualState_Maximized","features":[523]},{"name":"WindowVisualState_Minimized","features":[523]},{"name":"WindowVisualState_Normal","features":[523]},{"name":"Window_CanMaximize_Property_GUID","features":[523]},{"name":"Window_CanMinimize_Property_GUID","features":[523]},{"name":"Window_Control_GUID","features":[523]},{"name":"Window_IsModal_Property_GUID","features":[523]},{"name":"Window_IsTopmost_Property_GUID","features":[523]},{"name":"Window_Pattern_GUID","features":[523]},{"name":"Window_WindowClosed_Event_GUID","features":[523]},{"name":"Window_WindowInteractionState_Property_GUID","features":[523]},{"name":"Window_WindowOpened_Event_GUID","features":[523]},{"name":"Window_WindowVisualState_Property_GUID","features":[523]},{"name":"ZoomUnit","features":[523]},{"name":"ZoomUnit_LargeDecrement","features":[523]},{"name":"ZoomUnit_LargeIncrement","features":[523]},{"name":"ZoomUnit_NoAmount","features":[523]},{"name":"ZoomUnit_SmallDecrement","features":[523]},{"name":"ZoomUnit_SmallIncrement","features":[523]}],"648":[{"name":"IUIAnimationInterpolator","features":[614]},{"name":"IUIAnimationInterpolator2","features":[614]},{"name":"IUIAnimationLoopIterationChangeHandler2","features":[614]},{"name":"IUIAnimationManager","features":[614]},{"name":"IUIAnimationManager2","features":[614]},{"name":"IUIAnimationManagerEventHandler","features":[614]},{"name":"IUIAnimationManagerEventHandler2","features":[614]},{"name":"IUIAnimationPrimitiveInterpolation","features":[614]},{"name":"IUIAnimationPriorityComparison","features":[614]},{"name":"IUIAnimationPriorityComparison2","features":[614]},{"name":"IUIAnimationStoryboard","features":[614]},{"name":"IUIAnimationStoryboard2","features":[614]},{"name":"IUIAnimationStoryboardEventHandler","features":[614]},{"name":"IUIAnimationStoryboardEventHandler2","features":[614]},{"name":"IUIAnimationTimer","features":[614]},{"name":"IUIAnimationTimerClientEventHandler","features":[614]},{"name":"IUIAnimationTimerEventHandler","features":[614]},{"name":"IUIAnimationTimerUpdateHandler","features":[614]},{"name":"IUIAnimationTransition","features":[614]},{"name":"IUIAnimationTransition2","features":[614]},{"name":"IUIAnimationTransitionFactory","features":[614]},{"name":"IUIAnimationTransitionFactory2","features":[614]},{"name":"IUIAnimationTransitionLibrary","features":[614]},{"name":"IUIAnimationTransitionLibrary2","features":[614]},{"name":"IUIAnimationVariable","features":[614]},{"name":"IUIAnimationVariable2","features":[614]},{"name":"IUIAnimationVariableChangeHandler","features":[614]},{"name":"IUIAnimationVariableChangeHandler2","features":[614]},{"name":"IUIAnimationVariableCurveChangeHandler2","features":[614]},{"name":"IUIAnimationVariableIntegerChangeHandler","features":[614]},{"name":"IUIAnimationVariableIntegerChangeHandler2","features":[614]},{"name":"UIAnimationManager","features":[614]},{"name":"UIAnimationManager2","features":[614]},{"name":"UIAnimationTimer","features":[614]},{"name":"UIAnimationTransitionFactory","features":[614]},{"name":"UIAnimationTransitionFactory2","features":[614]},{"name":"UIAnimationTransitionLibrary","features":[614]},{"name":"UIAnimationTransitionLibrary2","features":[614]},{"name":"UI_ANIMATION_DEPENDENCIES","features":[614]},{"name":"UI_ANIMATION_DEPENDENCY_DURATION","features":[614]},{"name":"UI_ANIMATION_DEPENDENCY_FINAL_VALUE","features":[614]},{"name":"UI_ANIMATION_DEPENDENCY_FINAL_VELOCITY","features":[614]},{"name":"UI_ANIMATION_DEPENDENCY_INTERMEDIATE_VALUES","features":[614]},{"name":"UI_ANIMATION_DEPENDENCY_NONE","features":[614]},{"name":"UI_ANIMATION_IDLE_BEHAVIOR","features":[614]},{"name":"UI_ANIMATION_IDLE_BEHAVIOR_CONTINUE","features":[614]},{"name":"UI_ANIMATION_IDLE_BEHAVIOR_DISABLE","features":[614]},{"name":"UI_ANIMATION_KEYFRAME","features":[614]},{"name":"UI_ANIMATION_MANAGER_BUSY","features":[614]},{"name":"UI_ANIMATION_MANAGER_IDLE","features":[614]},{"name":"UI_ANIMATION_MANAGER_STATUS","features":[614]},{"name":"UI_ANIMATION_MODE","features":[614]},{"name":"UI_ANIMATION_MODE_DISABLED","features":[614]},{"name":"UI_ANIMATION_MODE_ENABLED","features":[614]},{"name":"UI_ANIMATION_MODE_SYSTEM_DEFAULT","features":[614]},{"name":"UI_ANIMATION_PRIORITY_EFFECT","features":[614]},{"name":"UI_ANIMATION_PRIORITY_EFFECT_DELAY","features":[614]},{"name":"UI_ANIMATION_PRIORITY_EFFECT_FAILURE","features":[614]},{"name":"UI_ANIMATION_REPEAT_INDEFINITELY","features":[614]},{"name":"UI_ANIMATION_REPEAT_INDEFINITELY_CONCLUDE_AT_END","features":[614]},{"name":"UI_ANIMATION_REPEAT_INDEFINITELY_CONCLUDE_AT_START","features":[614]},{"name":"UI_ANIMATION_REPEAT_MODE","features":[614]},{"name":"UI_ANIMATION_REPEAT_MODE_ALTERNATE","features":[614]},{"name":"UI_ANIMATION_REPEAT_MODE_NORMAL","features":[614]},{"name":"UI_ANIMATION_ROUNDING_CEILING","features":[614]},{"name":"UI_ANIMATION_ROUNDING_FLOOR","features":[614]},{"name":"UI_ANIMATION_ROUNDING_MODE","features":[614]},{"name":"UI_ANIMATION_ROUNDING_NEAREST","features":[614]},{"name":"UI_ANIMATION_SCHEDULING_ALREADY_SCHEDULED","features":[614]},{"name":"UI_ANIMATION_SCHEDULING_DEFERRED","features":[614]},{"name":"UI_ANIMATION_SCHEDULING_INSUFFICIENT_PRIORITY","features":[614]},{"name":"UI_ANIMATION_SCHEDULING_RESULT","features":[614]},{"name":"UI_ANIMATION_SCHEDULING_SUCCEEDED","features":[614]},{"name":"UI_ANIMATION_SCHEDULING_UNEXPECTED_FAILURE","features":[614]},{"name":"UI_ANIMATION_SECONDS_EVENTUALLY","features":[614]},{"name":"UI_ANIMATION_SECONDS_INFINITE","features":[614]},{"name":"UI_ANIMATION_SLOPE","features":[614]},{"name":"UI_ANIMATION_SLOPE_DECREASING","features":[614]},{"name":"UI_ANIMATION_SLOPE_INCREASING","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_BUILDING","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_CANCELLED","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_FINISHED","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_INSUFFICIENT_PRIORITY","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_PLAYING","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_READY","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_SCHEDULED","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_STATUS","features":[614]},{"name":"UI_ANIMATION_STORYBOARD_TRUNCATED","features":[614]},{"name":"UI_ANIMATION_TIMER_CLIENT_BUSY","features":[614]},{"name":"UI_ANIMATION_TIMER_CLIENT_IDLE","features":[614]},{"name":"UI_ANIMATION_TIMER_CLIENT_STATUS","features":[614]},{"name":"UI_ANIMATION_UPDATE_NO_CHANGE","features":[614]},{"name":"UI_ANIMATION_UPDATE_RESULT","features":[614]},{"name":"UI_ANIMATION_UPDATE_VARIABLES_CHANGED","features":[614]}],"649":[{"name":"ATTRIB_MATTE","features":[370]},{"name":"ATTRIB_TRANSPARENCY","features":[370]},{"name":"AssociateColorProfileWithDeviceA","features":[303,370]},{"name":"AssociateColorProfileWithDeviceW","features":[303,370]},{"name":"BEST_MODE","features":[370]},{"name":"BMFORMAT","features":[370]},{"name":"BM_10b_G3CH","features":[370]},{"name":"BM_10b_Lab","features":[370]},{"name":"BM_10b_RGB","features":[370]},{"name":"BM_10b_XYZ","features":[370]},{"name":"BM_10b_Yxy","features":[370]},{"name":"BM_16b_G3CH","features":[370]},{"name":"BM_16b_GRAY","features":[370]},{"name":"BM_16b_Lab","features":[370]},{"name":"BM_16b_RGB","features":[370]},{"name":"BM_16b_XYZ","features":[370]},{"name":"BM_16b_Yxy","features":[370]},{"name":"BM_32b_scARGB","features":[370]},{"name":"BM_32b_scRGB","features":[370]},{"name":"BM_565RGB","features":[370]},{"name":"BM_5CHANNEL","features":[370]},{"name":"BM_6CHANNEL","features":[370]},{"name":"BM_7CHANNEL","features":[370]},{"name":"BM_8CHANNEL","features":[370]},{"name":"BM_BGRTRIPLETS","features":[370]},{"name":"BM_CMYKQUADS","features":[370]},{"name":"BM_G3CHTRIPLETS","features":[370]},{"name":"BM_GRAY","features":[370]},{"name":"BM_KYMCQUADS","features":[370]},{"name":"BM_LabTRIPLETS","features":[370]},{"name":"BM_NAMED_INDEX","features":[370]},{"name":"BM_R10G10B10A2","features":[370]},{"name":"BM_R10G10B10A2_XR","features":[370]},{"name":"BM_R16G16B16A16_FLOAT","features":[370]},{"name":"BM_RGBTRIPLETS","features":[370]},{"name":"BM_S2DOT13FIXED_scARGB","features":[370]},{"name":"BM_S2DOT13FIXED_scRGB","features":[370]},{"name":"BM_XYZTRIPLETS","features":[370]},{"name":"BM_YxyTRIPLETS","features":[370]},{"name":"BM_x555G3CH","features":[370]},{"name":"BM_x555Lab","features":[370]},{"name":"BM_x555RGB","features":[370]},{"name":"BM_x555XYZ","features":[370]},{"name":"BM_x555Yxy","features":[370]},{"name":"BM_xBGRQUADS","features":[370]},{"name":"BM_xG3CHQUADS","features":[370]},{"name":"BM_xRGBQUADS","features":[370]},{"name":"BlackInformation","features":[303,370]},{"name":"CATID_WcsPlugin","features":[370]},{"name":"CMCheckColors","features":[303,370]},{"name":"CMCheckColorsInGamut","features":[303,314,370]},{"name":"CMCheckRGBs","features":[303,370]},{"name":"CMConvertColorNameToIndex","features":[303,370]},{"name":"CMConvertIndexToColorName","features":[303,370]},{"name":"CMCreateDeviceLinkProfile","features":[303,370]},{"name":"CMCreateMultiProfileTransform","features":[370]},{"name":"CMCreateProfile","features":[303,314,370]},{"name":"CMCreateProfileW","features":[303,314,370]},{"name":"CMCreateTransform","features":[314,370]},{"name":"CMCreateTransformExt","features":[314,370]},{"name":"CMCreateTransformExtW","features":[314,370]},{"name":"CMCreateTransformW","features":[314,370]},{"name":"CMDeleteTransform","features":[303,370]},{"name":"CMGetInfo","features":[370]},{"name":"CMGetNamedProfileInfo","features":[303,370]},{"name":"CMIsProfileValid","features":[303,370]},{"name":"CMM_DESCRIPTION","features":[370]},{"name":"CMM_DLL_VERSION","features":[370]},{"name":"CMM_DRIVER_VERSION","features":[370]},{"name":"CMM_FROM_PROFILE","features":[370]},{"name":"CMM_IDENT","features":[370]},{"name":"CMM_LOGOICON","features":[370]},{"name":"CMM_VERSION","features":[370]},{"name":"CMM_WIN_VERSION","features":[370]},{"name":"CMS_BACKWARD","features":[370]},{"name":"CMS_DISABLEICM","features":[370]},{"name":"CMS_DISABLEINTENT","features":[370]},{"name":"CMS_DISABLERENDERINTENT","features":[370]},{"name":"CMS_ENABLEPROOFING","features":[370]},{"name":"CMS_FORWARD","features":[370]},{"name":"CMS_MONITOROVERFLOW","features":[370]},{"name":"CMS_PRINTEROVERFLOW","features":[370]},{"name":"CMS_SETMONITORPROFILE","features":[370]},{"name":"CMS_SETPRINTERPROFILE","features":[370]},{"name":"CMS_SETPROOFINTENT","features":[370]},{"name":"CMS_SETRENDERINTENT","features":[370]},{"name":"CMS_SETTARGETPROFILE","features":[370]},{"name":"CMS_TARGETOVERFLOW","features":[370]},{"name":"CMS_USEAPPLYCALLBACK","features":[370]},{"name":"CMS_USEDESCRIPTION","features":[370]},{"name":"CMS_USEHOOK","features":[370]},{"name":"CMTranslateColors","features":[303,370]},{"name":"CMTranslateRGB","features":[303,370]},{"name":"CMTranslateRGBs","features":[303,370]},{"name":"CMTranslateRGBsExt","features":[303,370]},{"name":"CMYKCOLOR","features":[370]},{"name":"COLOR","features":[370]},{"name":"COLORDATATYPE","features":[370]},{"name":"COLORMATCHSETUPA","features":[303,370,365]},{"name":"COLORMATCHSETUPW","features":[303,370,365]},{"name":"COLORPROFILESUBTYPE","features":[370]},{"name":"COLORPROFILETYPE","features":[370]},{"name":"COLORTYPE","features":[370]},{"name":"COLOR_10b_R10G10B10A2","features":[370]},{"name":"COLOR_10b_R10G10B10A2_XR","features":[370]},{"name":"COLOR_3_CHANNEL","features":[370]},{"name":"COLOR_5_CHANNEL","features":[370]},{"name":"COLOR_6_CHANNEL","features":[370]},{"name":"COLOR_7_CHANNEL","features":[370]},{"name":"COLOR_8_CHANNEL","features":[370]},{"name":"COLOR_BYTE","features":[370]},{"name":"COLOR_CMYK","features":[370]},{"name":"COLOR_FLOAT","features":[370]},{"name":"COLOR_FLOAT16","features":[370]},{"name":"COLOR_GRAY","features":[370]},{"name":"COLOR_Lab","features":[370]},{"name":"COLOR_MATCH_TO_TARGET_ACTION","features":[370]},{"name":"COLOR_MATCH_VERSION","features":[370]},{"name":"COLOR_NAMED","features":[370]},{"name":"COLOR_RGB","features":[370]},{"name":"COLOR_S2DOT13FIXED","features":[370]},{"name":"COLOR_WORD","features":[370]},{"name":"COLOR_XYZ","features":[370]},{"name":"COLOR_Yxy","features":[370]},{"name":"CPST_ABSOLUTE_COLORIMETRIC","features":[370]},{"name":"CPST_CUSTOM_WORKING_SPACE","features":[370]},{"name":"CPST_EXTENDED_DISPLAY_COLOR_MODE","features":[370]},{"name":"CPST_NONE","features":[370]},{"name":"CPST_PERCEPTUAL","features":[370]},{"name":"CPST_RELATIVE_COLORIMETRIC","features":[370]},{"name":"CPST_RGB_WORKING_SPACE","features":[370]},{"name":"CPST_SATURATION","features":[370]},{"name":"CPST_STANDARD_DISPLAY_COLOR_MODE","features":[370]},{"name":"CPT_CAMP","features":[370]},{"name":"CPT_DMP","features":[370]},{"name":"CPT_GMMP","features":[370]},{"name":"CPT_ICC","features":[370]},{"name":"CSA_A","features":[370]},{"name":"CSA_ABC","features":[370]},{"name":"CSA_CMYK","features":[370]},{"name":"CSA_DEF","features":[370]},{"name":"CSA_DEFG","features":[370]},{"name":"CSA_GRAY","features":[370]},{"name":"CSA_Lab","features":[370]},{"name":"CSA_RGB","features":[370]},{"name":"CS_DELETE_TRANSFORM","features":[370]},{"name":"CS_DISABLE","features":[370]},{"name":"CS_ENABLE","features":[370]},{"name":"CheckBitmapBits","features":[303,370]},{"name":"CheckColors","features":[303,370]},{"name":"CheckColorsInGamut","features":[303,314,370]},{"name":"CloseColorProfile","features":[303,370]},{"name":"ColorCorrectPalette","features":[303,314,370]},{"name":"ColorMatchToTarget","features":[303,314,370]},{"name":"ColorProfileAddDisplayAssociation","features":[303,370]},{"name":"ColorProfileGetDisplayDefault","features":[303,370]},{"name":"ColorProfileGetDisplayList","features":[303,370]},{"name":"ColorProfileGetDisplayUserScope","features":[303,370]},{"name":"ColorProfileRemoveDisplayAssociation","features":[303,370]},{"name":"ColorProfileSetDisplayDefaultAssociation","features":[303,370]},{"name":"ConvertColorNameToIndex","features":[303,370]},{"name":"ConvertIndexToColorName","features":[303,370]},{"name":"CreateColorSpaceA","features":[314,370]},{"name":"CreateColorSpaceW","features":[314,370]},{"name":"CreateColorTransformA","features":[314,370]},{"name":"CreateColorTransformW","features":[314,370]},{"name":"CreateDeviceLinkProfile","features":[303,370]},{"name":"CreateMultiProfileTransform","features":[370]},{"name":"CreateProfileFromLogColorSpaceA","features":[303,314,370]},{"name":"CreateProfileFromLogColorSpaceW","features":[303,314,370]},{"name":"DONT_USE_EMBEDDED_WCS_PROFILES","features":[370]},{"name":"DeleteColorSpace","features":[303,370]},{"name":"DeleteColorTransform","features":[303,370]},{"name":"DisassociateColorProfileFromDeviceA","features":[303,370]},{"name":"DisassociateColorProfileFromDeviceW","features":[303,370]},{"name":"EMRCREATECOLORSPACE","features":[314,370]},{"name":"EMRCREATECOLORSPACEW","features":[314,370]},{"name":"ENABLE_GAMUT_CHECKING","features":[370]},{"name":"ENUMTYPEA","features":[370]},{"name":"ENUMTYPEW","features":[370]},{"name":"ENUM_TYPE_VERSION","features":[370]},{"name":"ET_ATTRIBUTES","features":[370]},{"name":"ET_CLASS","features":[370]},{"name":"ET_CMMTYPE","features":[370]},{"name":"ET_CONNECTIONSPACE","features":[370]},{"name":"ET_CREATOR","features":[370]},{"name":"ET_DATACOLORSPACE","features":[370]},{"name":"ET_DEVICECLASS","features":[370]},{"name":"ET_DEVICENAME","features":[370]},{"name":"ET_DITHERMODE","features":[370]},{"name":"ET_EXTENDEDDISPLAYCOLOR","features":[370]},{"name":"ET_MANUFACTURER","features":[370]},{"name":"ET_MEDIATYPE","features":[370]},{"name":"ET_MODEL","features":[370]},{"name":"ET_PLATFORM","features":[370]},{"name":"ET_PROFILEFLAGS","features":[370]},{"name":"ET_RENDERINGINTENT","features":[370]},{"name":"ET_RESOLUTION","features":[370]},{"name":"ET_SIGNATURE","features":[370]},{"name":"ET_STANDARDDISPLAYCOLOR","features":[370]},{"name":"EnumColorProfilesA","features":[303,370]},{"name":"EnumColorProfilesW","features":[303,370]},{"name":"EnumICMProfilesA","features":[303,314,370]},{"name":"EnumICMProfilesW","features":[303,314,370]},{"name":"FAST_TRANSLATE","features":[370]},{"name":"FLAG_DEPENDENTONDATA","features":[370]},{"name":"FLAG_EMBEDDEDPROFILE","features":[370]},{"name":"FLAG_ENABLE_CHROMATIC_ADAPTATION","features":[370]},{"name":"GENERIC3CHANNEL","features":[370]},{"name":"GRAYCOLOR","features":[370]},{"name":"GamutBoundaryDescription","features":[370]},{"name":"GamutShell","features":[370]},{"name":"GamutShellTriangle","features":[370]},{"name":"GetCMMInfo","features":[370]},{"name":"GetColorDirectoryA","features":[303,370]},{"name":"GetColorDirectoryW","features":[303,370]},{"name":"GetColorProfileElement","features":[303,370]},{"name":"GetColorProfileElementTag","features":[303,370]},{"name":"GetColorProfileFromHandle","features":[303,370]},{"name":"GetColorProfileHeader","features":[303,314,370]},{"name":"GetColorSpace","features":[314,370]},{"name":"GetCountColorProfileElements","features":[303,370]},{"name":"GetDeviceGammaRamp","features":[303,314,370]},{"name":"GetICMProfileA","features":[303,314,370]},{"name":"GetICMProfileW","features":[303,314,370]},{"name":"GetLogColorSpaceA","features":[303,314,370]},{"name":"GetLogColorSpaceW","features":[303,314,370]},{"name":"GetNamedProfileInfo","features":[303,370]},{"name":"GetPS2ColorRenderingDictionary","features":[303,370]},{"name":"GetPS2ColorRenderingIntent","features":[303,370]},{"name":"GetPS2ColorSpaceArray","features":[303,370]},{"name":"GetStandardColorSpaceProfileA","features":[303,370]},{"name":"GetStandardColorSpaceProfileW","features":[303,370]},{"name":"HCOLORSPACE","features":[370]},{"name":"HiFiCOLOR","features":[370]},{"name":"ICMENUMPROCA","features":[303,370]},{"name":"ICMENUMPROCW","features":[303,370]},{"name":"ICM_ADDPROFILE","features":[370]},{"name":"ICM_COMMAND","features":[370]},{"name":"ICM_DELETEPROFILE","features":[370]},{"name":"ICM_DONE_OUTSIDEDC","features":[370]},{"name":"ICM_MODE","features":[370]},{"name":"ICM_OFF","features":[370]},{"name":"ICM_ON","features":[370]},{"name":"ICM_QUERY","features":[370]},{"name":"ICM_QUERYMATCH","features":[370]},{"name":"ICM_QUERYPROFILE","features":[370]},{"name":"ICM_REGISTERICMATCHER","features":[370]},{"name":"ICM_SETDEFAULTPROFILE","features":[370]},{"name":"ICM_UNREGISTERICMATCHER","features":[370]},{"name":"IDeviceModelPlugIn","features":[370]},{"name":"IGamutMapModelPlugIn","features":[370]},{"name":"INDEX_DONT_CARE","features":[370]},{"name":"INTENT_ABSOLUTE_COLORIMETRIC","features":[370]},{"name":"INTENT_PERCEPTUAL","features":[370]},{"name":"INTENT_RELATIVE_COLORIMETRIC","features":[370]},{"name":"INTENT_SATURATION","features":[370]},{"name":"InstallColorProfileA","features":[303,370]},{"name":"InstallColorProfileW","features":[303,370]},{"name":"IsColorProfileTagPresent","features":[303,370]},{"name":"IsColorProfileValid","features":[303,370]},{"name":"JChColorF","features":[370]},{"name":"JabColorF","features":[370]},{"name":"LCSCSTYPE","features":[370]},{"name":"LCS_CALIBRATED_RGB","features":[370]},{"name":"LCS_WINDOWS_COLOR_SPACE","features":[370]},{"name":"LCS_sRGB","features":[370]},{"name":"LOGCOLORSPACEA","features":[314,370]},{"name":"LOGCOLORSPACEW","features":[314,370]},{"name":"LPBMCALLBACKFN","features":[303,370]},{"name":"LabCOLOR","features":[370]},{"name":"MAX_COLOR_CHANNELS","features":[370]},{"name":"MicrosoftHardwareColorV2","features":[370]},{"name":"NAMEDCOLOR","features":[370]},{"name":"NAMED_PROFILE_INFO","features":[370]},{"name":"NORMAL_MODE","features":[370]},{"name":"OpenColorProfileA","features":[370]},{"name":"OpenColorProfileW","features":[370]},{"name":"PCMSCALLBACKA","features":[303,370,365]},{"name":"PCMSCALLBACKW","features":[303,370,365]},{"name":"PRESERVEBLACK","features":[370]},{"name":"PROFILE","features":[370]},{"name":"PROFILEHEADER","features":[314,370]},{"name":"PROFILE_FILENAME","features":[370]},{"name":"PROFILE_MEMBUFFER","features":[370]},{"name":"PROFILE_READ","features":[370]},{"name":"PROFILE_READWRITE","features":[370]},{"name":"PROOF_MODE","features":[370]},{"name":"PrimaryJabColors","features":[370]},{"name":"PrimaryXYZColors","features":[370]},{"name":"RESERVED","features":[370]},{"name":"RGBCOLOR","features":[370]},{"name":"RegisterCMMA","features":[303,370]},{"name":"RegisterCMMW","features":[303,370]},{"name":"SEQUENTIAL_TRANSFORM","features":[370]},{"name":"SelectCMM","features":[303,370]},{"name":"SetColorProfileElement","features":[303,370]},{"name":"SetColorProfileElementReference","features":[303,370]},{"name":"SetColorProfileElementSize","features":[303,370]},{"name":"SetColorProfileHeader","features":[303,314,370]},{"name":"SetColorSpace","features":[314,370]},{"name":"SetDeviceGammaRamp","features":[303,314,370]},{"name":"SetICMMode","features":[314,370]},{"name":"SetICMProfileA","features":[303,314,370]},{"name":"SetICMProfileW","features":[303,314,370]},{"name":"SetStandardColorSpaceProfileA","features":[303,370]},{"name":"SetStandardColorSpaceProfileW","features":[303,370]},{"name":"SetupColorMatchingA","features":[303,370,365]},{"name":"SetupColorMatchingW","features":[303,370,365]},{"name":"TranslateBitmapBits","features":[303,370]},{"name":"TranslateColors","features":[303,370]},{"name":"USE_RELATIVE_COLORIMETRIC","features":[370]},{"name":"UninstallColorProfileA","features":[303,370]},{"name":"UninstallColorProfileW","features":[303,370]},{"name":"UnregisterCMMA","features":[303,370]},{"name":"UnregisterCMMW","features":[303,370]},{"name":"UpdateICMRegKeyA","features":[303,370]},{"name":"UpdateICMRegKeyW","features":[303,370]},{"name":"VideoCardGammaTable","features":[370]},{"name":"WCS_ALWAYS","features":[370]},{"name":"WCS_DEFAULT","features":[370]},{"name":"WCS_DEVICE_CAPABILITIES_TYPE","features":[370]},{"name":"WCS_DEVICE_MHC2_CAPABILITIES","features":[303,370]},{"name":"WCS_DEVICE_VCGT_CAPABILITIES","features":[303,370]},{"name":"WCS_ICCONLY","features":[370]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE","features":[370]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_CURRENT_USER","features":[370]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_SYSTEM_WIDE","features":[370]},{"name":"WcsAssociateColorProfileWithDevice","features":[303,370]},{"name":"WcsCheckColors","features":[303,370]},{"name":"WcsCreateIccProfile","features":[370]},{"name":"WcsDisassociateColorProfileFromDevice","features":[303,370]},{"name":"WcsEnumColorProfiles","features":[303,370]},{"name":"WcsEnumColorProfilesSize","features":[303,370]},{"name":"WcsGetCalibrationManagementState","features":[303,370]},{"name":"WcsGetDefaultColorProfile","features":[303,370]},{"name":"WcsGetDefaultColorProfileSize","features":[303,370]},{"name":"WcsGetDefaultRenderingIntent","features":[303,370]},{"name":"WcsGetUsePerUserProfiles","features":[303,370]},{"name":"WcsOpenColorProfileA","features":[370]},{"name":"WcsOpenColorProfileW","features":[370]},{"name":"WcsSetCalibrationManagementState","features":[303,370]},{"name":"WcsSetDefaultColorProfile","features":[303,370]},{"name":"WcsSetDefaultRenderingIntent","features":[303,370]},{"name":"WcsSetUsePerUserProfiles","features":[303,370]},{"name":"WcsTranslateColors","features":[303,370]},{"name":"XYZCOLOR","features":[370]},{"name":"XYZColorF","features":[370]},{"name":"YxyCOLOR","features":[370]}],"650":[{"name":"ABS_DOWNDISABLED","features":[353]},{"name":"ABS_DOWNHOT","features":[353]},{"name":"ABS_DOWNHOVER","features":[353]},{"name":"ABS_DOWNNORMAL","features":[353]},{"name":"ABS_DOWNPRESSED","features":[353]},{"name":"ABS_LEFTDISABLED","features":[353]},{"name":"ABS_LEFTHOT","features":[353]},{"name":"ABS_LEFTHOVER","features":[353]},{"name":"ABS_LEFTNORMAL","features":[353]},{"name":"ABS_LEFTPRESSED","features":[353]},{"name":"ABS_RIGHTDISABLED","features":[353]},{"name":"ABS_RIGHTHOT","features":[353]},{"name":"ABS_RIGHTHOVER","features":[353]},{"name":"ABS_RIGHTNORMAL","features":[353]},{"name":"ABS_RIGHTPRESSED","features":[353]},{"name":"ABS_UPDISABLED","features":[353]},{"name":"ABS_UPHOT","features":[353]},{"name":"ABS_UPHOVER","features":[353]},{"name":"ABS_UPNORMAL","features":[353]},{"name":"ABS_UPPRESSED","features":[353]},{"name":"ACM_ISPLAYING","features":[353]},{"name":"ACM_OPEN","features":[353]},{"name":"ACM_OPENA","features":[353]},{"name":"ACM_OPENW","features":[353]},{"name":"ACM_PLAY","features":[353]},{"name":"ACM_STOP","features":[353]},{"name":"ACN_START","features":[353]},{"name":"ACN_STOP","features":[353]},{"name":"ACS_AUTOPLAY","features":[353]},{"name":"ACS_CENTER","features":[353]},{"name":"ACS_TIMER","features":[353]},{"name":"ACS_TRANSPARENT","features":[353]},{"name":"AEROWIZARDPARTS","features":[353]},{"name":"ALLOW_CONTROLS","features":[353]},{"name":"ALLOW_NONCLIENT","features":[353]},{"name":"ALLOW_WEBCONTENT","features":[353]},{"name":"ANIMATE_CLASS","features":[353]},{"name":"ANIMATE_CLASSA","features":[353]},{"name":"ANIMATE_CLASSW","features":[353]},{"name":"ARROWBTNSTATES","features":[353]},{"name":"AW_BUTTON","features":[353]},{"name":"AW_COMMANDAREA","features":[353]},{"name":"AW_CONTENTAREA","features":[353]},{"name":"AW_HEADERAREA","features":[353]},{"name":"AW_S_CONTENTAREA_NOMARGIN","features":[353]},{"name":"AW_S_HEADERAREA_NOMARGIN","features":[353]},{"name":"AW_S_TITLEBAR_ACTIVE","features":[353]},{"name":"AW_S_TITLEBAR_INACTIVE","features":[353]},{"name":"AW_TITLEBAR","features":[353]},{"name":"BACKGROUNDSTATES","features":[353]},{"name":"BACKGROUNDWITHBORDERSTATES","features":[353]},{"name":"BALLOONSTATES","features":[353]},{"name":"BALLOONSTEMSTATES","features":[353]},{"name":"BARBACKGROUNDSTATES","features":[353]},{"name":"BARITEMSTATES","features":[353]},{"name":"BCM_FIRST","features":[353]},{"name":"BCM_GETIDEALSIZE","features":[353]},{"name":"BCM_GETIMAGELIST","features":[353]},{"name":"BCM_GETNOTE","features":[353]},{"name":"BCM_GETNOTELENGTH","features":[353]},{"name":"BCM_GETSPLITINFO","features":[353]},{"name":"BCM_GETTEXTMARGIN","features":[353]},{"name":"BCM_SETDROPDOWNSTATE","features":[353]},{"name":"BCM_SETIMAGELIST","features":[353]},{"name":"BCM_SETNOTE","features":[353]},{"name":"BCM_SETSHIELD","features":[353]},{"name":"BCM_SETSPLITINFO","features":[353]},{"name":"BCM_SETTEXTMARGIN","features":[353]},{"name":"BCN_DROPDOWN","features":[353]},{"name":"BCN_FIRST","features":[353]},{"name":"BCN_HOTITEMCHANGE","features":[353]},{"name":"BCN_LAST","features":[353]},{"name":"BCSIF_GLYPH","features":[353]},{"name":"BCSIF_IMAGE","features":[353]},{"name":"BCSIF_SIZE","features":[353]},{"name":"BCSIF_STYLE","features":[353]},{"name":"BCSS_ALIGNLEFT","features":[353]},{"name":"BCSS_IMAGE","features":[353]},{"name":"BCSS_NOSPLIT","features":[353]},{"name":"BCSS_STRETCH","features":[353]},{"name":"BGTYPE","features":[353]},{"name":"BODYSTATES","features":[353]},{"name":"BORDERSTATES","features":[353]},{"name":"BORDERTYPE","features":[353]},{"name":"BORDER_HSCROLLSTATES","features":[353]},{"name":"BORDER_HVSCROLLSTATES","features":[353]},{"name":"BORDER_NOSCROLLSTATES","features":[353]},{"name":"BORDER_VSCROLLSTATES","features":[353]},{"name":"BPAS_CUBIC","features":[353]},{"name":"BPAS_LINEAR","features":[353]},{"name":"BPAS_NONE","features":[353]},{"name":"BPAS_SINE","features":[353]},{"name":"BPBF_COMPATIBLEBITMAP","features":[353]},{"name":"BPBF_DIB","features":[353]},{"name":"BPBF_TOPDOWNDIB","features":[353]},{"name":"BPBF_TOPDOWNMONODIB","features":[353]},{"name":"BPPF_ERASE","features":[353]},{"name":"BPPF_NOCLIP","features":[353]},{"name":"BPPF_NONCLIENT","features":[353]},{"name":"BP_ANIMATIONPARAMS","features":[353]},{"name":"BP_ANIMATIONSTYLE","features":[353]},{"name":"BP_BUFFERFORMAT","features":[353]},{"name":"BP_CHECKBOX","features":[353]},{"name":"BP_CHECKBOX_HCDISABLED","features":[353]},{"name":"BP_COMMANDLINK","features":[353]},{"name":"BP_COMMANDLINKGLYPH","features":[353]},{"name":"BP_GROUPBOX","features":[353]},{"name":"BP_GROUPBOX_HCDISABLED","features":[353]},{"name":"BP_PAINTPARAMS","features":[303,314,353]},{"name":"BP_PAINTPARAMS_FLAGS","features":[353]},{"name":"BP_PUSHBUTTON","features":[353]},{"name":"BP_PUSHBUTTONDROPDOWN","features":[353]},{"name":"BP_RADIOBUTTON","features":[353]},{"name":"BP_RADIOBUTTON_HCDISABLED","features":[353]},{"name":"BP_USERBUTTON","features":[353]},{"name":"BST_CHECKED","features":[353]},{"name":"BST_DROPDOWNPUSHED","features":[353]},{"name":"BST_HOT","features":[353]},{"name":"BST_INDETERMINATE","features":[353]},{"name":"BST_UNCHECKED","features":[353]},{"name":"BS_COMMANDLINK","features":[353]},{"name":"BS_DEFCOMMANDLINK","features":[353]},{"name":"BS_DEFSPLITBUTTON","features":[353]},{"name":"BS_SPLITBUTTON","features":[353]},{"name":"BTNS_AUTOSIZE","features":[353]},{"name":"BTNS_BUTTON","features":[353]},{"name":"BTNS_CHECK","features":[353]},{"name":"BTNS_DROPDOWN","features":[353]},{"name":"BTNS_GROUP","features":[353]},{"name":"BTNS_NOPREFIX","features":[353]},{"name":"BTNS_SEP","features":[353]},{"name":"BTNS_SHOWTEXT","features":[353]},{"name":"BTNS_WHOLEDROPDOWN","features":[353]},{"name":"BT_BORDERFILL","features":[353]},{"name":"BT_ELLIPSE","features":[353]},{"name":"BT_IMAGEFILE","features":[353]},{"name":"BT_NONE","features":[353]},{"name":"BT_RECT","features":[353]},{"name":"BT_ROUNDRECT","features":[353]},{"name":"BUTTONPARTS","features":[353]},{"name":"BUTTON_IMAGELIST","features":[303,353]},{"name":"BUTTON_IMAGELIST_ALIGN","features":[353]},{"name":"BUTTON_IMAGELIST_ALIGN_BOTTOM","features":[353]},{"name":"BUTTON_IMAGELIST_ALIGN_CENTER","features":[353]},{"name":"BUTTON_IMAGELIST_ALIGN_LEFT","features":[353]},{"name":"BUTTON_IMAGELIST_ALIGN_RIGHT","features":[353]},{"name":"BUTTON_IMAGELIST_ALIGN_TOP","features":[353]},{"name":"BUTTON_SPLITINFO","features":[303,353]},{"name":"BeginBufferedAnimation","features":[303,314,353]},{"name":"BeginBufferedPaint","features":[303,314,353]},{"name":"BeginPanningFeedback","features":[303,353]},{"name":"BufferedPaintClear","features":[303,353]},{"name":"BufferedPaintInit","features":[353]},{"name":"BufferedPaintRenderAnimation","features":[303,314,353]},{"name":"BufferedPaintSetAlpha","features":[303,353]},{"name":"BufferedPaintStopAllAnimations","features":[303,353]},{"name":"BufferedPaintUnInit","features":[353]},{"name":"CAPTIONSTATES","features":[353]},{"name":"CA_CENTER","features":[353]},{"name":"CA_LEFT","features":[353]},{"name":"CA_RIGHT","features":[353]},{"name":"CBB_DISABLED","features":[353]},{"name":"CBB_FOCUSED","features":[353]},{"name":"CBB_HOT","features":[353]},{"name":"CBB_NORMAL","features":[353]},{"name":"CBCB_DISABLED","features":[353]},{"name":"CBCB_HOT","features":[353]},{"name":"CBCB_NORMAL","features":[353]},{"name":"CBCB_PRESSED","features":[353]},{"name":"CBDI_HIGHLIGHTED","features":[353]},{"name":"CBDI_NORMAL","features":[353]},{"name":"CBEIF_DI_SETITEM","features":[353]},{"name":"CBEIF_IMAGE","features":[353]},{"name":"CBEIF_INDENT","features":[353]},{"name":"CBEIF_LPARAM","features":[353]},{"name":"CBEIF_OVERLAY","features":[353]},{"name":"CBEIF_SELECTEDIMAGE","features":[353]},{"name":"CBEIF_TEXT","features":[353]},{"name":"CBEMAXSTRLEN","features":[353]},{"name":"CBEM_GETCOMBOCONTROL","features":[353]},{"name":"CBEM_GETEDITCONTROL","features":[353]},{"name":"CBEM_GETEXSTYLE","features":[353]},{"name":"CBEM_GETEXTENDEDSTYLE","features":[353]},{"name":"CBEM_GETIMAGELIST","features":[353]},{"name":"CBEM_GETITEM","features":[353]},{"name":"CBEM_GETITEMA","features":[353]},{"name":"CBEM_GETITEMW","features":[353]},{"name":"CBEM_GETUNICODEFORMAT","features":[353]},{"name":"CBEM_HASEDITCHANGED","features":[353]},{"name":"CBEM_INSERTITEM","features":[353]},{"name":"CBEM_INSERTITEMA","features":[353]},{"name":"CBEM_INSERTITEMW","features":[353]},{"name":"CBEM_SETEXSTYLE","features":[353]},{"name":"CBEM_SETEXTENDEDSTYLE","features":[353]},{"name":"CBEM_SETIMAGELIST","features":[353]},{"name":"CBEM_SETITEM","features":[353]},{"name":"CBEM_SETITEMA","features":[353]},{"name":"CBEM_SETITEMW","features":[353]},{"name":"CBEM_SETUNICODEFORMAT","features":[353]},{"name":"CBEM_SETWINDOWTHEME","features":[353]},{"name":"CBENF_DROPDOWN","features":[353]},{"name":"CBENF_ESCAPE","features":[353]},{"name":"CBENF_KILLFOCUS","features":[353]},{"name":"CBENF_RETURN","features":[353]},{"name":"CBEN_BEGINEDIT","features":[353]},{"name":"CBEN_DELETEITEM","features":[353]},{"name":"CBEN_DRAGBEGIN","features":[353]},{"name":"CBEN_DRAGBEGINA","features":[353]},{"name":"CBEN_DRAGBEGINW","features":[353]},{"name":"CBEN_ENDEDIT","features":[353]},{"name":"CBEN_ENDEDITA","features":[353]},{"name":"CBEN_ENDEDITW","features":[353]},{"name":"CBEN_FIRST","features":[353]},{"name":"CBEN_GETDISPINFOA","features":[353]},{"name":"CBEN_GETDISPINFOW","features":[353]},{"name":"CBEN_INSERTITEM","features":[353]},{"name":"CBEN_LAST","features":[353]},{"name":"CBES_EX_CASESENSITIVE","features":[353]},{"name":"CBES_EX_NOEDITIMAGE","features":[353]},{"name":"CBES_EX_NOEDITIMAGEINDENT","features":[353]},{"name":"CBES_EX_NOSIZELIMIT","features":[353]},{"name":"CBES_EX_PATHWORDBREAKPROC","features":[353]},{"name":"CBES_EX_TEXTENDELLIPSIS","features":[353]},{"name":"CBM_FIRST","features":[353]},{"name":"CBRO_DISABLED","features":[353]},{"name":"CBRO_HOT","features":[353]},{"name":"CBRO_NORMAL","features":[353]},{"name":"CBRO_PRESSED","features":[353]},{"name":"CBS_CHECKEDDISABLED","features":[353]},{"name":"CBS_CHECKEDHOT","features":[353]},{"name":"CBS_CHECKEDNORMAL","features":[353]},{"name":"CBS_CHECKEDPRESSED","features":[353]},{"name":"CBS_DISABLED","features":[353]},{"name":"CBS_EXCLUDEDDISABLED","features":[353]},{"name":"CBS_EXCLUDEDHOT","features":[353]},{"name":"CBS_EXCLUDEDNORMAL","features":[353]},{"name":"CBS_EXCLUDEDPRESSED","features":[353]},{"name":"CBS_HOT","features":[353]},{"name":"CBS_IMPLICITDISABLED","features":[353]},{"name":"CBS_IMPLICITHOT","features":[353]},{"name":"CBS_IMPLICITNORMAL","features":[353]},{"name":"CBS_IMPLICITPRESSED","features":[353]},{"name":"CBS_MIXEDDISABLED","features":[353]},{"name":"CBS_MIXEDHOT","features":[353]},{"name":"CBS_MIXEDNORMAL","features":[353]},{"name":"CBS_MIXEDPRESSED","features":[353]},{"name":"CBS_NORMAL","features":[353]},{"name":"CBS_PUSHED","features":[353]},{"name":"CBS_UNCHECKEDDISABLED","features":[353]},{"name":"CBS_UNCHECKEDHOT","features":[353]},{"name":"CBS_UNCHECKEDNORMAL","features":[353]},{"name":"CBS_UNCHECKEDPRESSED","features":[353]},{"name":"CBTBS_DISABLED","features":[353]},{"name":"CBTBS_FOCUSED","features":[353]},{"name":"CBTBS_HOT","features":[353]},{"name":"CBTBS_NORMAL","features":[353]},{"name":"CBXSL_DISABLED","features":[353]},{"name":"CBXSL_HOT","features":[353]},{"name":"CBXSL_NORMAL","features":[353]},{"name":"CBXSL_PRESSED","features":[353]},{"name":"CBXSR_DISABLED","features":[353]},{"name":"CBXSR_HOT","features":[353]},{"name":"CBXSR_NORMAL","features":[353]},{"name":"CBXSR_PRESSED","features":[353]},{"name":"CBXS_DISABLED","features":[353]},{"name":"CBXS_HOT","features":[353]},{"name":"CBXS_NORMAL","features":[353]},{"name":"CBXS_PRESSED","features":[353]},{"name":"CB_GETCUEBANNER","features":[353]},{"name":"CB_GETMINVISIBLE","features":[353]},{"name":"CB_SETCUEBANNER","features":[353]},{"name":"CB_SETMINVISIBLE","features":[353]},{"name":"CCF_NOTEXT","features":[353]},{"name":"CCHCCCLASS","features":[353]},{"name":"CCHCCDESC","features":[353]},{"name":"CCHCCTEXT","features":[353]},{"name":"CCINFOA","features":[303,314,353]},{"name":"CCINFOW","features":[303,314,353]},{"name":"CCM_DPISCALE","features":[353]},{"name":"CCM_FIRST","features":[353]},{"name":"CCM_GETCOLORSCHEME","features":[353]},{"name":"CCM_GETDROPTARGET","features":[353]},{"name":"CCM_GETUNICODEFORMAT","features":[353]},{"name":"CCM_GETVERSION","features":[353]},{"name":"CCM_LAST","features":[353]},{"name":"CCM_SETBKCOLOR","features":[353]},{"name":"CCM_SETCOLORSCHEME","features":[353]},{"name":"CCM_SETNOTIFYWINDOW","features":[353]},{"name":"CCM_SETUNICODEFORMAT","features":[353]},{"name":"CCM_SETVERSION","features":[353]},{"name":"CCM_SETWINDOWTHEME","features":[353]},{"name":"CCSTYLEA","features":[353]},{"name":"CCSTYLEFLAGA","features":[353]},{"name":"CCSTYLEFLAGW","features":[353]},{"name":"CCSTYLEW","features":[353]},{"name":"CCS_ADJUSTABLE","features":[353]},{"name":"CCS_BOTTOM","features":[353]},{"name":"CCS_NODIVIDER","features":[353]},{"name":"CCS_NOMOVEY","features":[353]},{"name":"CCS_NOPARENTALIGN","features":[353]},{"name":"CCS_NORESIZE","features":[353]},{"name":"CCS_TOP","features":[353]},{"name":"CCS_VERT","features":[353]},{"name":"CDDS_ITEM","features":[353]},{"name":"CDDS_ITEMPOSTERASE","features":[353]},{"name":"CDDS_ITEMPOSTPAINT","features":[353]},{"name":"CDDS_ITEMPREERASE","features":[353]},{"name":"CDDS_ITEMPREPAINT","features":[353]},{"name":"CDDS_POSTERASE","features":[353]},{"name":"CDDS_POSTPAINT","features":[353]},{"name":"CDDS_PREERASE","features":[353]},{"name":"CDDS_PREPAINT","features":[353]},{"name":"CDDS_SUBITEM","features":[353]},{"name":"CDIS_CHECKED","features":[353]},{"name":"CDIS_DEFAULT","features":[353]},{"name":"CDIS_DISABLED","features":[353]},{"name":"CDIS_DROPHILITED","features":[353]},{"name":"CDIS_FOCUS","features":[353]},{"name":"CDIS_GRAYED","features":[353]},{"name":"CDIS_HOT","features":[353]},{"name":"CDIS_INDETERMINATE","features":[353]},{"name":"CDIS_MARKED","features":[353]},{"name":"CDIS_NEARHOT","features":[353]},{"name":"CDIS_OTHERSIDEHOT","features":[353]},{"name":"CDIS_SELECTED","features":[353]},{"name":"CDIS_SHOWKEYBOARDCUES","features":[353]},{"name":"CDN_FIRST","features":[353]},{"name":"CDN_LAST","features":[353]},{"name":"CDRF_DODEFAULT","features":[353]},{"name":"CDRF_DOERASE","features":[353]},{"name":"CDRF_NEWFONT","features":[353]},{"name":"CDRF_NOTIFYITEMDRAW","features":[353]},{"name":"CDRF_NOTIFYPOSTERASE","features":[353]},{"name":"CDRF_NOTIFYPOSTPAINT","features":[353]},{"name":"CDRF_NOTIFYSUBITEMDRAW","features":[353]},{"name":"CDRF_SKIPDEFAULT","features":[353]},{"name":"CDRF_SKIPPOSTPAINT","features":[353]},{"name":"CHECKBOXSTATES","features":[353]},{"name":"CHEVRONSTATES","features":[353]},{"name":"CHEVRONVERTSTATES","features":[353]},{"name":"CHEVSV_HOT","features":[353]},{"name":"CHEVSV_NORMAL","features":[353]},{"name":"CHEVSV_PRESSED","features":[353]},{"name":"CHEVS_HOT","features":[353]},{"name":"CHEVS_NORMAL","features":[353]},{"name":"CHEVS_PRESSED","features":[353]},{"name":"CLOCKPARTS","features":[353]},{"name":"CLOCKSTATES","features":[353]},{"name":"CLOSEBUTTONSTATES","features":[353]},{"name":"CLOSESTATES","features":[353]},{"name":"CLP_TIME","features":[353]},{"name":"CLR_DEFAULT","features":[353]},{"name":"CLR_HILIGHT","features":[353]},{"name":"CLR_NONE","features":[353]},{"name":"CLS_HOT","features":[353]},{"name":"CLS_NORMAL","features":[353]},{"name":"CLS_PRESSED","features":[353]},{"name":"CMB_MASKED","features":[353]},{"name":"CMDLGS_DEFAULTED","features":[353]},{"name":"CMDLGS_DISABLED","features":[353]},{"name":"CMDLGS_HOT","features":[353]},{"name":"CMDLGS_NORMAL","features":[353]},{"name":"CMDLGS_PRESSED","features":[353]},{"name":"CMDLS_DEFAULTED","features":[353]},{"name":"CMDLS_DEFAULTED_ANIMATING","features":[353]},{"name":"CMDLS_DISABLED","features":[353]},{"name":"CMDLS_HOT","features":[353]},{"name":"CMDLS_NORMAL","features":[353]},{"name":"CMDLS_PRESSED","features":[353]},{"name":"COLLAPSEBUTTONSTATES","features":[353]},{"name":"COLORMAP","features":[303,353]},{"name":"COLORMGMTDLGORD","features":[353]},{"name":"COLORSCHEME","features":[303,353]},{"name":"COMBOBOXEXITEMA","features":[303,353]},{"name":"COMBOBOXEXITEMW","features":[303,353]},{"name":"COMBOBOXINFO","features":[303,353]},{"name":"COMBOBOXINFO_BUTTON_STATE","features":[353]},{"name":"COMBOBOXPARTS","features":[353]},{"name":"COMBOBOXSTYLESTATES","features":[353]},{"name":"COMBOBOX_EX_ITEM_FLAGS","features":[353]},{"name":"COMCTL32_VERSION","features":[353]},{"name":"COMMANDLINKGLYPHSTATES","features":[353]},{"name":"COMMANDLINKSTATES","features":[353]},{"name":"COMMUNICATIONSPARTS","features":[353]},{"name":"COMPAREITEMSTRUCT","features":[303,353]},{"name":"CONTENTALIGNMENT","features":[353]},{"name":"CONTENTAREASTATES","features":[353]},{"name":"CONTENTLINKSTATES","features":[353]},{"name":"CONTENTPANESTATES","features":[353]},{"name":"CONTROLLABELSTATES","features":[353]},{"name":"CONTROLPANELPARTS","features":[353]},{"name":"COPYSTATES","features":[353]},{"name":"CPANEL_BANNERAREA","features":[353]},{"name":"CPANEL_BODYTEXT","features":[353]},{"name":"CPANEL_BODYTITLE","features":[353]},{"name":"CPANEL_BUTTON","features":[353]},{"name":"CPANEL_CONTENTLINK","features":[353]},{"name":"CPANEL_CONTENTPANE","features":[353]},{"name":"CPANEL_CONTENTPANELABEL","features":[353]},{"name":"CPANEL_CONTENTPANELINE","features":[353]},{"name":"CPANEL_GROUPTEXT","features":[353]},{"name":"CPANEL_HELPLINK","features":[353]},{"name":"CPANEL_LARGECOMMANDAREA","features":[353]},{"name":"CPANEL_MESSAGETEXT","features":[353]},{"name":"CPANEL_NAVIGATIONPANE","features":[353]},{"name":"CPANEL_NAVIGATIONPANELABEL","features":[353]},{"name":"CPANEL_NAVIGATIONPANELINE","features":[353]},{"name":"CPANEL_SECTIONTITLELINK","features":[353]},{"name":"CPANEL_SMALLCOMMANDAREA","features":[353]},{"name":"CPANEL_TASKLINK","features":[353]},{"name":"CPANEL_TITLE","features":[353]},{"name":"CPCL_DISABLED","features":[353]},{"name":"CPCL_HOT","features":[353]},{"name":"CPCL_NORMAL","features":[353]},{"name":"CPCL_PRESSED","features":[353]},{"name":"CPHL_DISABLED","features":[353]},{"name":"CPHL_HOT","features":[353]},{"name":"CPHL_NORMAL","features":[353]},{"name":"CPHL_PRESSED","features":[353]},{"name":"CPSTL_HOT","features":[353]},{"name":"CPSTL_NORMAL","features":[353]},{"name":"CPTL_DISABLED","features":[353]},{"name":"CPTL_HOT","features":[353]},{"name":"CPTL_NORMAL","features":[353]},{"name":"CPTL_PAGE","features":[353]},{"name":"CPTL_PRESSED","features":[353]},{"name":"CP_BACKGROUND","features":[353]},{"name":"CP_BORDER","features":[353]},{"name":"CP_CUEBANNER","features":[353]},{"name":"CP_DROPDOWNBUTTON","features":[353]},{"name":"CP_DROPDOWNBUTTONLEFT","features":[353]},{"name":"CP_DROPDOWNBUTTONRIGHT","features":[353]},{"name":"CP_DROPDOWNITEM","features":[353]},{"name":"CP_READONLY","features":[353]},{"name":"CP_TRANSPARENTBACKGROUND","features":[353]},{"name":"CREATELINKSTATES","features":[353]},{"name":"CSST_TAB","features":[353]},{"name":"CSTB_HOT","features":[353]},{"name":"CSTB_NORMAL","features":[353]},{"name":"CSTB_SELECTED","features":[353]},{"name":"CS_ACTIVE","features":[353]},{"name":"CS_DISABLED","features":[353]},{"name":"CS_INACTIVE","features":[353]},{"name":"CUEBANNERSTATES","features":[353]},{"name":"CheckDlgButton","features":[303,353]},{"name":"CheckRadioButton","features":[303,353]},{"name":"CloseThemeData","features":[353]},{"name":"CreateMappedBitmap","features":[303,314,353]},{"name":"CreatePropertySheetPageA","features":[303,314,353,365]},{"name":"CreatePropertySheetPageW","features":[303,314,353,365]},{"name":"CreateStatusWindowA","features":[303,353]},{"name":"CreateStatusWindowW","features":[303,353]},{"name":"CreateSyntheticPointerDevice","features":[353,365]},{"name":"CreateToolbarEx","features":[303,353]},{"name":"CreateUpDownControl","features":[303,353]},{"name":"DATEBORDERSTATES","features":[353]},{"name":"DATEPICKERPARTS","features":[353]},{"name":"DATETEXTSTATES","features":[353]},{"name":"DATETIMEPICKERINFO","features":[303,353]},{"name":"DATETIMEPICK_CLASS","features":[353]},{"name":"DATETIMEPICK_CLASSA","features":[353]},{"name":"DATETIMEPICK_CLASSW","features":[353]},{"name":"DA_ERR","features":[353]},{"name":"DA_LAST","features":[353]},{"name":"DDCOPY_HIGHLIGHT","features":[353]},{"name":"DDCOPY_NOHIGHLIGHT","features":[353]},{"name":"DDCREATELINK_HIGHLIGHT","features":[353]},{"name":"DDCREATELINK_NOHIGHLIGHT","features":[353]},{"name":"DDL_ARCHIVE","features":[353]},{"name":"DDL_DIRECTORY","features":[353]},{"name":"DDL_DRIVES","features":[353]},{"name":"DDL_EXCLUSIVE","features":[353]},{"name":"DDL_HIDDEN","features":[353]},{"name":"DDL_POSTMSGS","features":[353]},{"name":"DDL_READONLY","features":[353]},{"name":"DDL_READWRITE","features":[353]},{"name":"DDL_SYSTEM","features":[353]},{"name":"DDMOVE_HIGHLIGHT","features":[353]},{"name":"DDMOVE_NOHIGHLIGHT","features":[353]},{"name":"DDNONE_HIGHLIGHT","features":[353]},{"name":"DDNONE_NOHIGHLIGHT","features":[353]},{"name":"DDUPDATEMETADATA_HIGHLIGHT","features":[353]},{"name":"DDUPDATEMETADATA_NOHIGHLIGHT","features":[353]},{"name":"DDWARNING_HIGHLIGHT","features":[353]},{"name":"DDWARNING_NOHIGHLIGHT","features":[353]},{"name":"DD_COPY","features":[353]},{"name":"DD_CREATELINK","features":[353]},{"name":"DD_IMAGEBG","features":[353]},{"name":"DD_MOVE","features":[353]},{"name":"DD_NONE","features":[353]},{"name":"DD_TEXTBG","features":[353]},{"name":"DD_UPDATEMETADATA","features":[353]},{"name":"DD_WARNING","features":[353]},{"name":"DELETEITEMSTRUCT","features":[303,353]},{"name":"DLG_BUTTON_CHECK_STATE","features":[353]},{"name":"DLG_DIR_LIST_FILE_TYPE","features":[353]},{"name":"DL_BEGINDRAG","features":[353]},{"name":"DL_CANCELDRAG","features":[353]},{"name":"DL_COPYCURSOR","features":[353]},{"name":"DL_CURSORSET","features":[353]},{"name":"DL_DRAGGING","features":[353]},{"name":"DL_DROPPED","features":[353]},{"name":"DL_MOVECURSOR","features":[353]},{"name":"DL_STOPCURSOR","features":[353]},{"name":"DNHZS_DISABLED","features":[353]},{"name":"DNHZS_HOT","features":[353]},{"name":"DNHZS_NORMAL","features":[353]},{"name":"DNHZS_PRESSED","features":[353]},{"name":"DNS_DISABLED","features":[353]},{"name":"DNS_HOT","features":[353]},{"name":"DNS_NORMAL","features":[353]},{"name":"DNS_PRESSED","features":[353]},{"name":"DOWNHORZSTATES","features":[353]},{"name":"DOWNSTATES","features":[353]},{"name":"DPAMM_DELETE","features":[353]},{"name":"DPAMM_INSERT","features":[353]},{"name":"DPAMM_MERGE","features":[353]},{"name":"DPAMM_MESSAGE","features":[353]},{"name":"DPAM_INTERSECT","features":[353]},{"name":"DPAM_NORMAL","features":[353]},{"name":"DPAM_SORTED","features":[353]},{"name":"DPAM_UNION","features":[353]},{"name":"DPASTREAMINFO","features":[353]},{"name":"DPAS_INSERTAFTER","features":[353]},{"name":"DPAS_INSERTBEFORE","features":[353]},{"name":"DPAS_SORTED","features":[353]},{"name":"DPA_APPEND","features":[353]},{"name":"DPA_Clone","features":[353]},{"name":"DPA_Create","features":[353]},{"name":"DPA_CreateEx","features":[303,353]},{"name":"DPA_DeleteAllPtrs","features":[303,353]},{"name":"DPA_DeletePtr","features":[353]},{"name":"DPA_Destroy","features":[303,353]},{"name":"DPA_DestroyCallback","features":[353]},{"name":"DPA_ERR","features":[353]},{"name":"DPA_EnumCallback","features":[353]},{"name":"DPA_GetPtr","features":[353]},{"name":"DPA_GetPtrIndex","features":[353]},{"name":"DPA_GetSize","features":[353]},{"name":"DPA_Grow","features":[303,353]},{"name":"DPA_InsertPtr","features":[353]},{"name":"DPA_LoadStream","features":[354,353]},{"name":"DPA_Merge","features":[303,353]},{"name":"DPA_SaveStream","features":[354,353]},{"name":"DPA_Search","features":[303,353]},{"name":"DPA_SetPtr","features":[303,353]},{"name":"DPA_Sort","features":[303,353]},{"name":"DPDB_DISABLED","features":[353]},{"name":"DPDB_FOCUSED","features":[353]},{"name":"DPDB_HOT","features":[353]},{"name":"DPDB_NORMAL","features":[353]},{"name":"DPDT_DISABLED","features":[353]},{"name":"DPDT_NORMAL","features":[353]},{"name":"DPDT_SELECTED","features":[353]},{"name":"DPSCBR_DISABLED","features":[353]},{"name":"DPSCBR_HOT","features":[353]},{"name":"DPSCBR_NORMAL","features":[353]},{"name":"DPSCBR_PRESSED","features":[353]},{"name":"DP_DATEBORDER","features":[353]},{"name":"DP_DATETEXT","features":[353]},{"name":"DP_SHOWCALENDARBUTTONRIGHT","features":[353]},{"name":"DRAGDROPPARTS","features":[353]},{"name":"DRAGLISTINFO","features":[303,353]},{"name":"DRAGLISTINFO_NOTIFICATION_FLAGS","features":[353]},{"name":"DRAGLISTMSGSTRING","features":[353]},{"name":"DRAWITEMSTRUCT","features":[303,314,353]},{"name":"DRAWITEMSTRUCT_CTL_TYPE","features":[353]},{"name":"DRAW_THEME_PARENT_BACKGROUND_FLAGS","features":[353]},{"name":"DROPDOWNBUTTONLEFTSTATES","features":[353]},{"name":"DROPDOWNBUTTONRIGHTSTATES","features":[353]},{"name":"DROPDOWNITEMSTATES","features":[353]},{"name":"DSA_APPEND","features":[353]},{"name":"DSA_Clone","features":[353]},{"name":"DSA_Create","features":[353]},{"name":"DSA_DeleteAllItems","features":[303,353]},{"name":"DSA_DeleteItem","features":[303,353]},{"name":"DSA_Destroy","features":[303,353]},{"name":"DSA_DestroyCallback","features":[353]},{"name":"DSA_ERR","features":[353]},{"name":"DSA_EnumCallback","features":[353]},{"name":"DSA_GetItem","features":[303,353]},{"name":"DSA_GetItemPtr","features":[353]},{"name":"DSA_GetSize","features":[353]},{"name":"DSA_InsertItem","features":[353]},{"name":"DSA_SetItem","features":[303,353]},{"name":"DSA_Sort","features":[303,353]},{"name":"DTBGOPTS","features":[303,353]},{"name":"DTBG_CLIPRECT","features":[353]},{"name":"DTBG_COMPUTINGREGION","features":[353]},{"name":"DTBG_DRAWSOLID","features":[353]},{"name":"DTBG_MIRRORDC","features":[353]},{"name":"DTBG_NOMIRROR","features":[353]},{"name":"DTBG_OMITBORDER","features":[353]},{"name":"DTBG_OMITCONTENT","features":[353]},{"name":"DTM_CLOSEMONTHCAL","features":[353]},{"name":"DTM_FIRST","features":[353]},{"name":"DTM_GETDATETIMEPICKERINFO","features":[353]},{"name":"DTM_GETIDEALSIZE","features":[353]},{"name":"DTM_GETMCCOLOR","features":[353]},{"name":"DTM_GETMCFONT","features":[353]},{"name":"DTM_GETMCSTYLE","features":[353]},{"name":"DTM_GETMONTHCAL","features":[353]},{"name":"DTM_GETRANGE","features":[353]},{"name":"DTM_GETSYSTEMTIME","features":[353]},{"name":"DTM_SETFORMAT","features":[353]},{"name":"DTM_SETFORMATA","features":[353]},{"name":"DTM_SETFORMATW","features":[353]},{"name":"DTM_SETMCCOLOR","features":[353]},{"name":"DTM_SETMCFONT","features":[353]},{"name":"DTM_SETMCSTYLE","features":[353]},{"name":"DTM_SETRANGE","features":[353]},{"name":"DTM_SETSYSTEMTIME","features":[353]},{"name":"DTN_CLOSEUP","features":[353]},{"name":"DTN_DATETIMECHANGE","features":[353]},{"name":"DTN_DROPDOWN","features":[353]},{"name":"DTN_FIRST","features":[353]},{"name":"DTN_FIRST2","features":[353]},{"name":"DTN_FORMAT","features":[353]},{"name":"DTN_FORMATA","features":[353]},{"name":"DTN_FORMATQUERY","features":[353]},{"name":"DTN_FORMATQUERYA","features":[353]},{"name":"DTN_FORMATQUERYW","features":[353]},{"name":"DTN_FORMATW","features":[353]},{"name":"DTN_LAST","features":[353]},{"name":"DTN_LAST2","features":[353]},{"name":"DTN_USERSTRING","features":[353]},{"name":"DTN_USERSTRINGA","features":[353]},{"name":"DTN_USERSTRINGW","features":[353]},{"name":"DTN_WMKEYDOWN","features":[353]},{"name":"DTN_WMKEYDOWNA","features":[353]},{"name":"DTN_WMKEYDOWNW","features":[353]},{"name":"DTPB_USECTLCOLORSTATIC","features":[353]},{"name":"DTPB_USEERASEBKGND","features":[353]},{"name":"DTPB_WINDOWDC","features":[353]},{"name":"DTS_APPCANPARSE","features":[353]},{"name":"DTS_LONGDATEFORMAT","features":[353]},{"name":"DTS_RIGHTALIGN","features":[353]},{"name":"DTS_SHORTDATECENTURYFORMAT","features":[353]},{"name":"DTS_SHORTDATEFORMAT","features":[353]},{"name":"DTS_SHOWNONE","features":[353]},{"name":"DTS_TIMEFORMAT","features":[353]},{"name":"DTS_UPDOWN","features":[353]},{"name":"DTTOPTS","features":[303,314,353]},{"name":"DTTOPTS_FLAGS","features":[353]},{"name":"DTT_APPLYOVERLAY","features":[353]},{"name":"DTT_BORDERCOLOR","features":[353]},{"name":"DTT_BORDERSIZE","features":[353]},{"name":"DTT_CALCRECT","features":[353]},{"name":"DTT_CALLBACK","features":[353]},{"name":"DTT_CALLBACK_PROC","features":[303,314,353]},{"name":"DTT_COLORPROP","features":[353]},{"name":"DTT_COMPOSITED","features":[353]},{"name":"DTT_FLAGS2VALIDBITS","features":[353]},{"name":"DTT_FONTPROP","features":[353]},{"name":"DTT_GLOWSIZE","features":[353]},{"name":"DTT_GRAYED","features":[353]},{"name":"DTT_SHADOWCOLOR","features":[353]},{"name":"DTT_SHADOWOFFSET","features":[353]},{"name":"DTT_SHADOWTYPE","features":[353]},{"name":"DTT_STATEID","features":[353]},{"name":"DTT_TEXTCOLOR","features":[353]},{"name":"DTT_VALIDBITS","features":[353]},{"name":"DestroyPropertySheetPage","features":[303,353]},{"name":"DestroySyntheticPointerDevice","features":[353]},{"name":"DlgDirListA","features":[303,353]},{"name":"DlgDirListComboBoxA","features":[303,353]},{"name":"DlgDirListComboBoxW","features":[303,353]},{"name":"DlgDirListW","features":[303,353]},{"name":"DlgDirSelectComboBoxExA","features":[303,353]},{"name":"DlgDirSelectComboBoxExW","features":[303,353]},{"name":"DlgDirSelectExA","features":[303,353]},{"name":"DlgDirSelectExW","features":[303,353]},{"name":"DrawInsert","features":[303,353]},{"name":"DrawShadowText","features":[303,314,353]},{"name":"DrawStatusTextA","features":[303,314,353]},{"name":"DrawStatusTextW","features":[303,314,353]},{"name":"DrawThemeBackground","features":[303,314,353]},{"name":"DrawThemeBackgroundEx","features":[303,314,353]},{"name":"DrawThemeEdge","features":[303,314,353]},{"name":"DrawThemeIcon","features":[303,314,353]},{"name":"DrawThemeParentBackground","features":[303,314,353]},{"name":"DrawThemeParentBackgroundEx","features":[303,314,353]},{"name":"DrawThemeText","features":[303,314,353]},{"name":"DrawThemeTextEx","features":[303,314,353]},{"name":"EBHC_HOT","features":[353]},{"name":"EBHC_NORMAL","features":[353]},{"name":"EBHC_PRESSED","features":[353]},{"name":"EBHP_HOT","features":[353]},{"name":"EBHP_NORMAL","features":[353]},{"name":"EBHP_PRESSED","features":[353]},{"name":"EBHP_SELECTEDHOT","features":[353]},{"name":"EBHP_SELECTEDNORMAL","features":[353]},{"name":"EBHP_SELECTEDPRESSED","features":[353]},{"name":"EBM_HOT","features":[353]},{"name":"EBM_NORMAL","features":[353]},{"name":"EBM_PRESSED","features":[353]},{"name":"EBNGC_HOT","features":[353]},{"name":"EBNGC_NORMAL","features":[353]},{"name":"EBNGC_PRESSED","features":[353]},{"name":"EBNGE_HOT","features":[353]},{"name":"EBNGE_NORMAL","features":[353]},{"name":"EBNGE_PRESSED","features":[353]},{"name":"EBP_HEADERBACKGROUND","features":[353]},{"name":"EBP_HEADERCLOSE","features":[353]},{"name":"EBP_HEADERPIN","features":[353]},{"name":"EBP_IEBARMENU","features":[353]},{"name":"EBP_NORMALGROUPBACKGROUND","features":[353]},{"name":"EBP_NORMALGROUPCOLLAPSE","features":[353]},{"name":"EBP_NORMALGROUPEXPAND","features":[353]},{"name":"EBP_NORMALGROUPHEAD","features":[353]},{"name":"EBP_SPECIALGROUPBACKGROUND","features":[353]},{"name":"EBP_SPECIALGROUPCOLLAPSE","features":[353]},{"name":"EBP_SPECIALGROUPEXPAND","features":[353]},{"name":"EBP_SPECIALGROUPHEAD","features":[353]},{"name":"EBSGC_HOT","features":[353]},{"name":"EBSGC_NORMAL","features":[353]},{"name":"EBSGC_PRESSED","features":[353]},{"name":"EBSGE_HOT","features":[353]},{"name":"EBSGE_NORMAL","features":[353]},{"name":"EBSGE_PRESSED","features":[353]},{"name":"EBS_ASSIST","features":[353]},{"name":"EBS_DISABLED","features":[353]},{"name":"EBS_FOCUSED","features":[353]},{"name":"EBS_HOT","features":[353]},{"name":"EBS_NORMAL","features":[353]},{"name":"EBS_READONLY","features":[353]},{"name":"EBWBS_DISABLED","features":[353]},{"name":"EBWBS_FOCUSED","features":[353]},{"name":"EBWBS_HOT","features":[353]},{"name":"EBWBS_NORMAL","features":[353]},{"name":"ECM_FIRST","features":[353]},{"name":"EC_ENDOFLINE","features":[353]},{"name":"EC_ENDOFLINE_CR","features":[353]},{"name":"EC_ENDOFLINE_CRLF","features":[353]},{"name":"EC_ENDOFLINE_DETECTFROMCONTENT","features":[353]},{"name":"EC_ENDOFLINE_LF","features":[353]},{"name":"EC_SEARCHWEB_ENTRYPOINT","features":[353]},{"name":"EC_SEARCHWEB_ENTRYPOINT_CONTEXTMENU","features":[353]},{"name":"EC_SEARCHWEB_ENTRYPOINT_EXTERNAL","features":[353]},{"name":"EDITBALLOONTIP","features":[353]},{"name":"EDITBALLOONTIP_ICON","features":[353]},{"name":"EDITBORDER_HSCROLLSTATES","features":[353]},{"name":"EDITBORDER_HVSCROLLSTATES","features":[353]},{"name":"EDITBORDER_NOSCROLLSTATES","features":[353]},{"name":"EDITBORDER_VSCROLLSTATES","features":[353]},{"name":"EDITPARTS","features":[353]},{"name":"EDITTEXTSTATES","features":[353]},{"name":"EDITWORDBREAKPROCA","features":[353]},{"name":"EDITWORDBREAKPROCW","features":[353]},{"name":"EMF_CENTERED","features":[353]},{"name":"EMPTYMARKUPPARTS","features":[353]},{"name":"EMP_MARKUPTEXT","features":[353]},{"name":"EMT_LINKTEXT","features":[353]},{"name":"EMT_NORMALTEXT","features":[353]},{"name":"EM_CANUNDO","features":[353]},{"name":"EM_CHARFROMPOS","features":[353]},{"name":"EM_EMPTYUNDOBUFFER","features":[353]},{"name":"EM_ENABLEFEATURE","features":[353]},{"name":"EM_ENABLESEARCHWEB","features":[353]},{"name":"EM_FILELINEFROMCHAR","features":[353]},{"name":"EM_FILELINEINDEX","features":[353]},{"name":"EM_FILELINELENGTH","features":[353]},{"name":"EM_FMTLINES","features":[353]},{"name":"EM_GETCARETINDEX","features":[353]},{"name":"EM_GETCUEBANNER","features":[353]},{"name":"EM_GETENDOFLINE","features":[353]},{"name":"EM_GETEXTENDEDSTYLE","features":[353]},{"name":"EM_GETFILELINE","features":[353]},{"name":"EM_GETFILELINECOUNT","features":[353]},{"name":"EM_GETFIRSTVISIBLELINE","features":[353]},{"name":"EM_GETHANDLE","features":[353]},{"name":"EM_GETHILITE","features":[353]},{"name":"EM_GETIMESTATUS","features":[353]},{"name":"EM_GETLIMITTEXT","features":[353]},{"name":"EM_GETLINE","features":[353]},{"name":"EM_GETLINECOUNT","features":[353]},{"name":"EM_GETMARGINS","features":[353]},{"name":"EM_GETMODIFY","features":[353]},{"name":"EM_GETPASSWORDCHAR","features":[353]},{"name":"EM_GETRECT","features":[353]},{"name":"EM_GETSEL","features":[353]},{"name":"EM_GETTHUMB","features":[353]},{"name":"EM_GETWORDBREAKPROC","features":[353]},{"name":"EM_HIDEBALLOONTIP","features":[353]},{"name":"EM_LIMITTEXT","features":[353]},{"name":"EM_LINEFROMCHAR","features":[353]},{"name":"EM_LINEINDEX","features":[353]},{"name":"EM_LINELENGTH","features":[353]},{"name":"EM_LINESCROLL","features":[353]},{"name":"EM_NOSETFOCUS","features":[353]},{"name":"EM_POSFROMCHAR","features":[353]},{"name":"EM_REPLACESEL","features":[353]},{"name":"EM_SCROLL","features":[353]},{"name":"EM_SCROLLCARET","features":[353]},{"name":"EM_SEARCHWEB","features":[353]},{"name":"EM_SETCARETINDEX","features":[353]},{"name":"EM_SETCUEBANNER","features":[353]},{"name":"EM_SETENDOFLINE","features":[353]},{"name":"EM_SETEXTENDEDSTYLE","features":[353]},{"name":"EM_SETHANDLE","features":[353]},{"name":"EM_SETHILITE","features":[353]},{"name":"EM_SETIMESTATUS","features":[353]},{"name":"EM_SETLIMITTEXT","features":[353]},{"name":"EM_SETMARGINS","features":[353]},{"name":"EM_SETMODIFY","features":[353]},{"name":"EM_SETPASSWORDCHAR","features":[353]},{"name":"EM_SETREADONLY","features":[353]},{"name":"EM_SETRECT","features":[353]},{"name":"EM_SETRECTNP","features":[353]},{"name":"EM_SETSEL","features":[353]},{"name":"EM_SETTABSTOPS","features":[353]},{"name":"EM_SETWORDBREAKPROC","features":[353]},{"name":"EM_SHOWBALLOONTIP","features":[353]},{"name":"EM_TAKEFOCUS","features":[353]},{"name":"EM_UNDO","features":[353]},{"name":"ENABLE_SCROLL_BAR_ARROWS","features":[353]},{"name":"EN_FIRST","features":[353]},{"name":"EN_LAST","features":[353]},{"name":"EN_SEARCHWEB","features":[353]},{"name":"EPSHV_DISABLED","features":[353]},{"name":"EPSHV_FOCUSED","features":[353]},{"name":"EPSHV_HOT","features":[353]},{"name":"EPSHV_NORMAL","features":[353]},{"name":"EPSH_DISABLED","features":[353]},{"name":"EPSH_FOCUSED","features":[353]},{"name":"EPSH_HOT","features":[353]},{"name":"EPSH_NORMAL","features":[353]},{"name":"EPSN_DISABLED","features":[353]},{"name":"EPSN_FOCUSED","features":[353]},{"name":"EPSN_HOT","features":[353]},{"name":"EPSN_NORMAL","features":[353]},{"name":"EPSV_DISABLED","features":[353]},{"name":"EPSV_FOCUSED","features":[353]},{"name":"EPSV_HOT","features":[353]},{"name":"EPSV_NORMAL","features":[353]},{"name":"EP_BACKGROUND","features":[353]},{"name":"EP_BACKGROUNDWITHBORDER","features":[353]},{"name":"EP_CARET","features":[353]},{"name":"EP_EDITBORDER_HSCROLL","features":[353]},{"name":"EP_EDITBORDER_HVSCROLL","features":[353]},{"name":"EP_EDITBORDER_NOSCROLL","features":[353]},{"name":"EP_EDITBORDER_VSCROLL","features":[353]},{"name":"EP_EDITTEXT","features":[353]},{"name":"EP_PASSWORD","features":[353]},{"name":"ESB_DISABLE_BOTH","features":[353]},{"name":"ESB_DISABLE_DOWN","features":[353]},{"name":"ESB_DISABLE_LEFT","features":[353]},{"name":"ESB_DISABLE_LTUP","features":[353]},{"name":"ESB_DISABLE_RIGHT","features":[353]},{"name":"ESB_DISABLE_RTDN","features":[353]},{"name":"ESB_DISABLE_UP","features":[353]},{"name":"ESB_ENABLE_BOTH","features":[353]},{"name":"ES_EX_ALLOWEOL_CR","features":[353]},{"name":"ES_EX_ALLOWEOL_LF","features":[353]},{"name":"ES_EX_CONVERT_EOL_ON_PASTE","features":[353]},{"name":"ES_EX_ZOOMABLE","features":[353]},{"name":"ETDT_DISABLE","features":[353]},{"name":"ETDT_ENABLE","features":[353]},{"name":"ETDT_USEAEROWIZARDTABTEXTURE","features":[353]},{"name":"ETDT_USETABTEXTURE","features":[353]},{"name":"ETS_ASSIST","features":[353]},{"name":"ETS_CUEBANNER","features":[353]},{"name":"ETS_DISABLED","features":[353]},{"name":"ETS_FOCUSED","features":[353]},{"name":"ETS_HOT","features":[353]},{"name":"ETS_NORMAL","features":[353]},{"name":"ETS_READONLY","features":[353]},{"name":"ETS_SELECTED","features":[353]},{"name":"EXPANDBUTTONSTATES","features":[353]},{"name":"EXPANDOBUTTONSTATES","features":[353]},{"name":"EXPLORERBARPARTS","features":[353]},{"name":"EnableScrollBar","features":[303,353]},{"name":"EnableThemeDialogTexture","features":[303,353]},{"name":"EnableTheming","features":[303,353]},{"name":"EndBufferedAnimation","features":[303,353]},{"name":"EndBufferedPaint","features":[303,353]},{"name":"EndPanningFeedback","features":[303,353]},{"name":"EvaluateProximityToPolygon","features":[303,353]},{"name":"EvaluateProximityToRect","features":[303,353]},{"name":"FBS_EMPHASIZED","features":[353]},{"name":"FBS_NORMAL","features":[353]},{"name":"FEEDBACK_GESTURE_PRESSANDTAP","features":[353]},{"name":"FEEDBACK_MAX","features":[353]},{"name":"FEEDBACK_PEN_BARRELVISUALIZATION","features":[353]},{"name":"FEEDBACK_PEN_DOUBLETAP","features":[353]},{"name":"FEEDBACK_PEN_PRESSANDHOLD","features":[353]},{"name":"FEEDBACK_PEN_RIGHTTAP","features":[353]},{"name":"FEEDBACK_PEN_TAP","features":[353]},{"name":"FEEDBACK_TOUCH_CONTACTVISUALIZATION","features":[353]},{"name":"FEEDBACK_TOUCH_DOUBLETAP","features":[353]},{"name":"FEEDBACK_TOUCH_PRESSANDHOLD","features":[353]},{"name":"FEEDBACK_TOUCH_RIGHTTAP","features":[353]},{"name":"FEEDBACK_TOUCH_TAP","features":[353]},{"name":"FEEDBACK_TYPE","features":[353]},{"name":"FILEOPENORD","features":[353]},{"name":"FILLSTATES","features":[353]},{"name":"FILLTYPE","features":[353]},{"name":"FILLVERTSTATES","features":[353]},{"name":"FINDDLGORD","features":[353]},{"name":"FLH_HOVER","features":[353]},{"name":"FLH_NORMAL","features":[353]},{"name":"FLS_DISABLED","features":[353]},{"name":"FLS_EMPHASIZED","features":[353]},{"name":"FLS_NORMAL","features":[353]},{"name":"FLS_SELECTED","features":[353]},{"name":"FLYOUTLINK_HOVER","features":[353]},{"name":"FLYOUTLINK_NORMAL","features":[353]},{"name":"FLYOUTPARTS","features":[353]},{"name":"FLYOUT_BODY","features":[353]},{"name":"FLYOUT_DIVIDER","features":[353]},{"name":"FLYOUT_HEADER","features":[353]},{"name":"FLYOUT_LABEL","features":[353]},{"name":"FLYOUT_LINK","features":[353]},{"name":"FLYOUT_LINKAREA","features":[353]},{"name":"FLYOUT_LINKHEADER","features":[353]},{"name":"FLYOUT_WINDOW","features":[353]},{"name":"FONTDLGORD","features":[353]},{"name":"FORMATDLGORD30","features":[353]},{"name":"FORMATDLGORD31","features":[353]},{"name":"FRAMEBOTTOMSTATES","features":[353]},{"name":"FRAMELEFTSTATES","features":[353]},{"name":"FRAMERIGHTSTATES","features":[353]},{"name":"FRAMESTATES","features":[353]},{"name":"FRB_ACTIVE","features":[353]},{"name":"FRB_INACTIVE","features":[353]},{"name":"FRL_ACTIVE","features":[353]},{"name":"FRL_INACTIVE","features":[353]},{"name":"FRR_ACTIVE","features":[353]},{"name":"FRR_INACTIVE","features":[353]},{"name":"FSB_ENCARTA_MODE","features":[353]},{"name":"FSB_FLAT_MODE","features":[353]},{"name":"FSB_REGULAR_MODE","features":[353]},{"name":"FS_ACTIVE","features":[353]},{"name":"FS_INACTIVE","features":[353]},{"name":"FT_HORZGRADIENT","features":[353]},{"name":"FT_RADIALGRADIENT","features":[353]},{"name":"FT_SOLID","features":[353]},{"name":"FT_TILEIMAGE","features":[353]},{"name":"FT_VERTGRADIENT","features":[353]},{"name":"FlatSB_EnableScrollBar","features":[303,353]},{"name":"FlatSB_GetScrollInfo","features":[303,353,365]},{"name":"FlatSB_GetScrollPos","features":[303,353,365]},{"name":"FlatSB_GetScrollProp","features":[303,353]},{"name":"FlatSB_GetScrollRange","features":[303,353,365]},{"name":"FlatSB_SetScrollInfo","features":[303,353,365]},{"name":"FlatSB_SetScrollPos","features":[303,353,365]},{"name":"FlatSB_SetScrollProp","features":[303,353]},{"name":"FlatSB_SetScrollRange","features":[303,353,365]},{"name":"FlatSB_ShowScrollBar","features":[303,353,365]},{"name":"GBF_COPY","features":[353]},{"name":"GBF_DIRECT","features":[353]},{"name":"GBF_VALIDBITS","features":[353]},{"name":"GBS_DISABLED","features":[353]},{"name":"GBS_NORMAL","features":[353]},{"name":"GDTR_MAX","features":[353]},{"name":"GDTR_MIN","features":[353]},{"name":"GDT_ERROR","features":[353]},{"name":"GDT_NONE","features":[353]},{"name":"GDT_VALID","features":[353]},{"name":"GET_THEME_BITMAP_FLAGS","features":[353]},{"name":"GFST_DPI","features":[353]},{"name":"GFST_NONE","features":[353]},{"name":"GFST_SIZE","features":[353]},{"name":"GLPS_CLOSED","features":[353]},{"name":"GLPS_OPENED","features":[353]},{"name":"GLYPHFONTSIZINGTYPE","features":[353]},{"name":"GLYPHSTATES","features":[353]},{"name":"GLYPHTYPE","features":[353]},{"name":"GMR_DAYSTATE","features":[353]},{"name":"GMR_VISIBLE","features":[353]},{"name":"GRIDCELLBACKGROUNDSTATES","features":[353]},{"name":"GRIDCELLSTATES","features":[353]},{"name":"GRIDCELLUPPERSTATES","features":[353]},{"name":"GRIPPERSTATES","features":[353]},{"name":"GROUPBOXSTATES","features":[353]},{"name":"GROUPHEADERLINESTATES","features":[353]},{"name":"GROUPHEADERSTATES","features":[353]},{"name":"GT_FONTGLYPH","features":[353]},{"name":"GT_IMAGEGLYPH","features":[353]},{"name":"GT_NONE","features":[353]},{"name":"GetBufferedPaintBits","features":[314,353]},{"name":"GetBufferedPaintDC","features":[314,353]},{"name":"GetBufferedPaintTargetDC","features":[314,353]},{"name":"GetBufferedPaintTargetRect","features":[303,353]},{"name":"GetComboBoxInfo","features":[303,353]},{"name":"GetCurrentThemeName","features":[353]},{"name":"GetEffectiveClientRect","features":[303,353]},{"name":"GetListBoxInfo","features":[303,353]},{"name":"GetMUILanguage","features":[353]},{"name":"GetThemeAnimationProperty","features":[353]},{"name":"GetThemeAnimationTransform","features":[353]},{"name":"GetThemeAppProperties","features":[353]},{"name":"GetThemeBackgroundContentRect","features":[303,314,353]},{"name":"GetThemeBackgroundExtent","features":[303,314,353]},{"name":"GetThemeBackgroundRegion","features":[303,314,353]},{"name":"GetThemeBitmap","features":[314,353]},{"name":"GetThemeBool","features":[303,353]},{"name":"GetThemeColor","features":[303,353]},{"name":"GetThemeDocumentationProperty","features":[353]},{"name":"GetThemeEnumValue","features":[353]},{"name":"GetThemeFilename","features":[353]},{"name":"GetThemeFont","features":[314,353]},{"name":"GetThemeInt","features":[353]},{"name":"GetThemeIntList","features":[353]},{"name":"GetThemeMargins","features":[303,314,353]},{"name":"GetThemeMetric","features":[314,353]},{"name":"GetThemePartSize","features":[303,314,353]},{"name":"GetThemePosition","features":[303,353]},{"name":"GetThemePropertyOrigin","features":[353]},{"name":"GetThemeRect","features":[303,353]},{"name":"GetThemeStream","features":[303,353]},{"name":"GetThemeString","features":[353]},{"name":"GetThemeSysBool","features":[303,353]},{"name":"GetThemeSysColor","features":[303,353]},{"name":"GetThemeSysColorBrush","features":[314,353]},{"name":"GetThemeSysFont","features":[314,353]},{"name":"GetThemeSysInt","features":[353]},{"name":"GetThemeSysSize","features":[353]},{"name":"GetThemeSysString","features":[353]},{"name":"GetThemeTextExtent","features":[303,314,353]},{"name":"GetThemeTextMetrics","features":[314,353]},{"name":"GetThemeTimingFunction","features":[353]},{"name":"GetThemeTransitionDuration","features":[353]},{"name":"GetWindowFeedbackSetting","features":[303,353]},{"name":"GetWindowTheme","features":[303,353]},{"name":"HALIGN","features":[353]},{"name":"HA_CENTER","features":[353]},{"name":"HA_LEFT","features":[353]},{"name":"HA_RIGHT","features":[353]},{"name":"HBG_DETAILS","features":[353]},{"name":"HBG_ICON","features":[353]},{"name":"HBS_DISABLED","features":[353]},{"name":"HBS_HOT","features":[353]},{"name":"HBS_NORMAL","features":[353]},{"name":"HBS_PUSHED","features":[353]},{"name":"HDDFS_HOT","features":[353]},{"name":"HDDFS_NORMAL","features":[353]},{"name":"HDDFS_SOFTHOT","features":[353]},{"name":"HDDS_HOT","features":[353]},{"name":"HDDS_NORMAL","features":[353]},{"name":"HDDS_SOFTHOT","features":[353]},{"name":"HDFT_HASNOVALUE","features":[353]},{"name":"HDFT_ISDATE","features":[353]},{"name":"HDFT_ISNUMBER","features":[353]},{"name":"HDFT_ISSTRING","features":[353]},{"name":"HDF_BITMAP","features":[353]},{"name":"HDF_BITMAP_ON_RIGHT","features":[353]},{"name":"HDF_CENTER","features":[353]},{"name":"HDF_CHECKBOX","features":[353]},{"name":"HDF_CHECKED","features":[353]},{"name":"HDF_FIXEDWIDTH","features":[353]},{"name":"HDF_IMAGE","features":[353]},{"name":"HDF_JUSTIFYMASK","features":[353]},{"name":"HDF_LEFT","features":[353]},{"name":"HDF_OWNERDRAW","features":[353]},{"name":"HDF_RIGHT","features":[353]},{"name":"HDF_RTLREADING","features":[353]},{"name":"HDF_SORTDOWN","features":[353]},{"name":"HDF_SORTUP","features":[353]},{"name":"HDF_SPLITBUTTON","features":[353]},{"name":"HDF_STRING","features":[353]},{"name":"HDHITTESTINFO","features":[303,353]},{"name":"HDIS_FOCUSED","features":[353]},{"name":"HDITEMA","features":[303,314,353]},{"name":"HDITEMW","features":[303,314,353]},{"name":"HDI_BITMAP","features":[353]},{"name":"HDI_DI_SETITEM","features":[353]},{"name":"HDI_FILTER","features":[353]},{"name":"HDI_FORMAT","features":[353]},{"name":"HDI_HEIGHT","features":[353]},{"name":"HDI_IMAGE","features":[353]},{"name":"HDI_LPARAM","features":[353]},{"name":"HDI_MASK","features":[353]},{"name":"HDI_ORDER","features":[353]},{"name":"HDI_STATE","features":[353]},{"name":"HDI_TEXT","features":[353]},{"name":"HDI_WIDTH","features":[353]},{"name":"HDLAYOUT","features":[303,353,365]},{"name":"HDM_CLEARFILTER","features":[353]},{"name":"HDM_CREATEDRAGIMAGE","features":[353]},{"name":"HDM_DELETEITEM","features":[353]},{"name":"HDM_EDITFILTER","features":[353]},{"name":"HDM_FIRST","features":[353]},{"name":"HDM_GETBITMAPMARGIN","features":[353]},{"name":"HDM_GETFOCUSEDITEM","features":[353]},{"name":"HDM_GETIMAGELIST","features":[353]},{"name":"HDM_GETITEM","features":[353]},{"name":"HDM_GETITEMA","features":[353]},{"name":"HDM_GETITEMCOUNT","features":[353]},{"name":"HDM_GETITEMDROPDOWNRECT","features":[353]},{"name":"HDM_GETITEMRECT","features":[353]},{"name":"HDM_GETITEMW","features":[353]},{"name":"HDM_GETORDERARRAY","features":[353]},{"name":"HDM_GETOVERFLOWRECT","features":[353]},{"name":"HDM_GETUNICODEFORMAT","features":[353]},{"name":"HDM_HITTEST","features":[353]},{"name":"HDM_INSERTITEM","features":[353]},{"name":"HDM_INSERTITEMA","features":[353]},{"name":"HDM_INSERTITEMW","features":[353]},{"name":"HDM_LAYOUT","features":[353]},{"name":"HDM_ORDERTOINDEX","features":[353]},{"name":"HDM_SETBITMAPMARGIN","features":[353]},{"name":"HDM_SETFILTERCHANGETIMEOUT","features":[353]},{"name":"HDM_SETFOCUSEDITEM","features":[353]},{"name":"HDM_SETHOTDIVIDER","features":[353]},{"name":"HDM_SETIMAGELIST","features":[353]},{"name":"HDM_SETITEM","features":[353]},{"name":"HDM_SETITEMA","features":[353]},{"name":"HDM_SETITEMW","features":[353]},{"name":"HDM_SETORDERARRAY","features":[353]},{"name":"HDM_SETUNICODEFORMAT","features":[353]},{"name":"HDN_BEGINDRAG","features":[353]},{"name":"HDN_BEGINFILTEREDIT","features":[353]},{"name":"HDN_BEGINTRACK","features":[353]},{"name":"HDN_BEGINTRACKA","features":[353]},{"name":"HDN_BEGINTRACKW","features":[353]},{"name":"HDN_DIVIDERDBLCLICK","features":[353]},{"name":"HDN_DIVIDERDBLCLICKA","features":[353]},{"name":"HDN_DIVIDERDBLCLICKW","features":[353]},{"name":"HDN_DROPDOWN","features":[353]},{"name":"HDN_ENDDRAG","features":[353]},{"name":"HDN_ENDFILTEREDIT","features":[353]},{"name":"HDN_ENDTRACK","features":[353]},{"name":"HDN_ENDTRACKA","features":[353]},{"name":"HDN_ENDTRACKW","features":[353]},{"name":"HDN_FILTERBTNCLICK","features":[353]},{"name":"HDN_FILTERCHANGE","features":[353]},{"name":"HDN_FIRST","features":[353]},{"name":"HDN_GETDISPINFO","features":[353]},{"name":"HDN_GETDISPINFOA","features":[353]},{"name":"HDN_GETDISPINFOW","features":[353]},{"name":"HDN_ITEMCHANGED","features":[353]},{"name":"HDN_ITEMCHANGEDA","features":[353]},{"name":"HDN_ITEMCHANGEDW","features":[353]},{"name":"HDN_ITEMCHANGING","features":[353]},{"name":"HDN_ITEMCHANGINGA","features":[353]},{"name":"HDN_ITEMCHANGINGW","features":[353]},{"name":"HDN_ITEMCLICK","features":[353]},{"name":"HDN_ITEMCLICKA","features":[353]},{"name":"HDN_ITEMCLICKW","features":[353]},{"name":"HDN_ITEMDBLCLICK","features":[353]},{"name":"HDN_ITEMDBLCLICKA","features":[353]},{"name":"HDN_ITEMDBLCLICKW","features":[353]},{"name":"HDN_ITEMKEYDOWN","features":[353]},{"name":"HDN_ITEMSTATEICONCLICK","features":[353]},{"name":"HDN_LAST","features":[353]},{"name":"HDN_OVERFLOWCLICK","features":[353]},{"name":"HDN_TRACK","features":[353]},{"name":"HDN_TRACKA","features":[353]},{"name":"HDN_TRACKW","features":[353]},{"name":"HDPA","features":[353]},{"name":"HDSA","features":[353]},{"name":"HDSIL_NORMAL","features":[353]},{"name":"HDSIL_STATE","features":[353]},{"name":"HDS_BUTTONS","features":[353]},{"name":"HDS_CHECKBOXES","features":[353]},{"name":"HDS_DRAGDROP","features":[353]},{"name":"HDS_FILTERBAR","features":[353]},{"name":"HDS_FLAT","features":[353]},{"name":"HDS_FULLDRAG","features":[353]},{"name":"HDS_HIDDEN","features":[353]},{"name":"HDS_HORZ","features":[353]},{"name":"HDS_HOTTRACK","features":[353]},{"name":"HDS_NOSIZING","features":[353]},{"name":"HDS_OVERFLOW","features":[353]},{"name":"HD_TEXTFILTERA","features":[353]},{"name":"HD_TEXTFILTERW","features":[353]},{"name":"HEADERAREASTATES","features":[353]},{"name":"HEADERCLOSESTATES","features":[353]},{"name":"HEADERDROPDOWNFILTERSTATES","features":[353]},{"name":"HEADERDROPDOWNSTATES","features":[353]},{"name":"HEADERITEMLEFTSTATES","features":[353]},{"name":"HEADERITEMRIGHTSTATES","features":[353]},{"name":"HEADERITEMSTATES","features":[353]},{"name":"HEADEROVERFLOWSTATES","features":[353]},{"name":"HEADERPARTS","features":[353]},{"name":"HEADERPINSTATES","features":[353]},{"name":"HEADERSORTARROWSTATES","features":[353]},{"name":"HEADERSTYLESTATES","features":[353]},{"name":"HEADER_CONTROL_FORMAT_FLAGS","features":[353]},{"name":"HEADER_CONTROL_FORMAT_STATE","features":[353]},{"name":"HEADER_CONTROL_FORMAT_TYPE","features":[353]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON","features":[353]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_LEFT","features":[353]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_MIDDLE","features":[353]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_RIGHT","features":[353]},{"name":"HEADER_HITTEST_INFO_FLAGS","features":[353]},{"name":"HELPBUTTONSTATES","features":[353]},{"name":"HELPLINKSTATES","features":[353]},{"name":"HGLPS_CLOSED","features":[353]},{"name":"HGLPS_OPENED","features":[353]},{"name":"HHT_ABOVE","features":[353]},{"name":"HHT_BELOW","features":[353]},{"name":"HHT_NOWHERE","features":[353]},{"name":"HHT_ONDIVIDER","features":[353]},{"name":"HHT_ONDIVOPEN","features":[353]},{"name":"HHT_ONDROPDOWN","features":[353]},{"name":"HHT_ONFILTER","features":[353]},{"name":"HHT_ONFILTERBUTTON","features":[353]},{"name":"HHT_ONHEADER","features":[353]},{"name":"HHT_ONITEMSTATEICON","features":[353]},{"name":"HHT_ONOVERFLOW","features":[353]},{"name":"HHT_TOLEFT","features":[353]},{"name":"HHT_TORIGHT","features":[353]},{"name":"HICF_ACCELERATOR","features":[353]},{"name":"HICF_ARROWKEYS","features":[353]},{"name":"HICF_DUPACCEL","features":[353]},{"name":"HICF_ENTERING","features":[353]},{"name":"HICF_LEAVING","features":[353]},{"name":"HICF_LMOUSE","features":[353]},{"name":"HICF_MOUSE","features":[353]},{"name":"HICF_OTHER","features":[353]},{"name":"HICF_RESELECT","features":[353]},{"name":"HICF_TOGGLEDROPDOWN","features":[353]},{"name":"HILS_HOT","features":[353]},{"name":"HILS_NORMAL","features":[353]},{"name":"HILS_PRESSED","features":[353]},{"name":"HIMAGELIST","features":[353]},{"name":"HIMAGELIST_QueryInterface","features":[353]},{"name":"HIRS_HOT","features":[353]},{"name":"HIRS_NORMAL","features":[353]},{"name":"HIRS_PRESSED","features":[353]},{"name":"HIST_ADDTOFAVORITES","features":[353]},{"name":"HIST_BACK","features":[353]},{"name":"HIST_FAVORITES","features":[353]},{"name":"HIST_FORWARD","features":[353]},{"name":"HIST_VIEWTREE","features":[353]},{"name":"HIS_HOT","features":[353]},{"name":"HIS_ICONHOT","features":[353]},{"name":"HIS_ICONNORMAL","features":[353]},{"name":"HIS_ICONPRESSED","features":[353]},{"name":"HIS_ICONSORTEDHOT","features":[353]},{"name":"HIS_ICONSORTEDNORMAL","features":[353]},{"name":"HIS_ICONSORTEDPRESSED","features":[353]},{"name":"HIS_NORMAL","features":[353]},{"name":"HIS_PRESSED","features":[353]},{"name":"HIS_SORTEDHOT","features":[353]},{"name":"HIS_SORTEDNORMAL","features":[353]},{"name":"HIS_SORTEDPRESSED","features":[353]},{"name":"HIT_TEST_BACKGROUND_OPTIONS","features":[353]},{"name":"HKCOMB_A","features":[353]},{"name":"HKCOMB_C","features":[353]},{"name":"HKCOMB_CA","features":[353]},{"name":"HKCOMB_NONE","features":[353]},{"name":"HKCOMB_S","features":[353]},{"name":"HKCOMB_SA","features":[353]},{"name":"HKCOMB_SC","features":[353]},{"name":"HKCOMB_SCA","features":[353]},{"name":"HKM_GETHOTKEY","features":[353]},{"name":"HKM_SETHOTKEY","features":[353]},{"name":"HKM_SETRULES","features":[353]},{"name":"HLS_LINKTEXT","features":[353]},{"name":"HLS_NORMALTEXT","features":[353]},{"name":"HOFS_HOT","features":[353]},{"name":"HOFS_NORMAL","features":[353]},{"name":"HORZSCROLLSTATES","features":[353]},{"name":"HORZTHUMBSTATES","features":[353]},{"name":"HOTGLYPHSTATES","features":[353]},{"name":"HOTKEYF_ALT","features":[353]},{"name":"HOTKEYF_CONTROL","features":[353]},{"name":"HOTKEYF_EXT","features":[353]},{"name":"HOTKEYF_SHIFT","features":[353]},{"name":"HOTKEY_CLASS","features":[353]},{"name":"HOTKEY_CLASSA","features":[353]},{"name":"HOTKEY_CLASSW","features":[353]},{"name":"HOVERBACKGROUNDSTATES","features":[353]},{"name":"HOVER_DEFAULT","features":[353]},{"name":"HPROPSHEETPAGE","features":[353]},{"name":"HP_HEADERDROPDOWN","features":[353]},{"name":"HP_HEADERDROPDOWNFILTER","features":[353]},{"name":"HP_HEADERITEM","features":[353]},{"name":"HP_HEADERITEMLEFT","features":[353]},{"name":"HP_HEADERITEMRIGHT","features":[353]},{"name":"HP_HEADEROVERFLOW","features":[353]},{"name":"HP_HEADERSORTARROW","features":[353]},{"name":"HSAS_SORTEDDOWN","features":[353]},{"name":"HSAS_SORTEDUP","features":[353]},{"name":"HSS_DISABLED","features":[353]},{"name":"HSS_HOT","features":[353]},{"name":"HSS_NORMAL","features":[353]},{"name":"HSS_PUSHED","features":[353]},{"name":"HSYNTHETICPOINTERDEVICE","features":[353]},{"name":"HTHEME","features":[353]},{"name":"HTREEITEM","features":[353]},{"name":"HTS_DISABLED","features":[353]},{"name":"HTS_HOT","features":[353]},{"name":"HTS_NORMAL","features":[353]},{"name":"HTS_PUSHED","features":[353]},{"name":"HTTB_BACKGROUNDSEG","features":[353]},{"name":"HTTB_CAPTION","features":[353]},{"name":"HTTB_FIXEDBORDER","features":[353]},{"name":"HTTB_RESIZINGBORDER","features":[353]},{"name":"HTTB_RESIZINGBORDER_BOTTOM","features":[353]},{"name":"HTTB_RESIZINGBORDER_LEFT","features":[353]},{"name":"HTTB_RESIZINGBORDER_RIGHT","features":[353]},{"name":"HTTB_RESIZINGBORDER_TOP","features":[353]},{"name":"HTTB_SIZINGTEMPLATE","features":[353]},{"name":"HTTB_SYSTEMSIZINGMARGINS","features":[353]},{"name":"HYPERLINKSTATES","features":[353]},{"name":"HYPERLINKTEXTSTATES","features":[353]},{"name":"HitTestThemeBackground","features":[303,314,353]},{"name":"ICC_ANIMATE_CLASS","features":[353]},{"name":"ICC_BAR_CLASSES","features":[353]},{"name":"ICC_COOL_CLASSES","features":[353]},{"name":"ICC_DATE_CLASSES","features":[353]},{"name":"ICC_HOTKEY_CLASS","features":[353]},{"name":"ICC_INTERNET_CLASSES","features":[353]},{"name":"ICC_LINK_CLASS","features":[353]},{"name":"ICC_LISTVIEW_CLASSES","features":[353]},{"name":"ICC_NATIVEFNTCTL_CLASS","features":[353]},{"name":"ICC_PAGESCROLLER_CLASS","features":[353]},{"name":"ICC_PROGRESS_CLASS","features":[353]},{"name":"ICC_STANDARD_CLASSES","features":[353]},{"name":"ICC_TAB_CLASSES","features":[353]},{"name":"ICC_TREEVIEW_CLASSES","features":[353]},{"name":"ICC_UPDOWN_CLASS","features":[353]},{"name":"ICC_USEREX_CLASSES","features":[353]},{"name":"ICC_WIN95_CLASSES","features":[353]},{"name":"ICE_ALPHA","features":[353]},{"name":"ICE_GLOW","features":[353]},{"name":"ICE_NONE","features":[353]},{"name":"ICE_PULSE","features":[353]},{"name":"ICE_SHADOW","features":[353]},{"name":"ICONEFFECT","features":[353]},{"name":"IDB_HIST_DISABLED","features":[353]},{"name":"IDB_HIST_HOT","features":[353]},{"name":"IDB_HIST_LARGE_COLOR","features":[353]},{"name":"IDB_HIST_NORMAL","features":[353]},{"name":"IDB_HIST_PRESSED","features":[353]},{"name":"IDB_HIST_SMALL_COLOR","features":[353]},{"name":"IDB_STD_LARGE_COLOR","features":[353]},{"name":"IDB_STD_SMALL_COLOR","features":[353]},{"name":"IDB_VIEW_LARGE_COLOR","features":[353]},{"name":"IDB_VIEW_SMALL_COLOR","features":[353]},{"name":"IDC_MANAGE_LINK","features":[353]},{"name":"ID_PSRESTARTWINDOWS","features":[353]},{"name":"IEBARMENUSTATES","features":[353]},{"name":"IImageList","features":[353]},{"name":"IImageList2","features":[353]},{"name":"ILCF_MOVE","features":[353]},{"name":"ILCF_SWAP","features":[353]},{"name":"ILC_COLOR","features":[353]},{"name":"ILC_COLOR16","features":[353]},{"name":"ILC_COLOR24","features":[353]},{"name":"ILC_COLOR32","features":[353]},{"name":"ILC_COLOR4","features":[353]},{"name":"ILC_COLOR8","features":[353]},{"name":"ILC_COLORDDB","features":[353]},{"name":"ILC_HIGHQUALITYSCALE","features":[353]},{"name":"ILC_MASK","features":[353]},{"name":"ILC_MIRROR","features":[353]},{"name":"ILC_ORIGINALSIZE","features":[353]},{"name":"ILC_PALETTE","features":[353]},{"name":"ILC_PERITEMMIRROR","features":[353]},{"name":"ILDI_PURGE","features":[353]},{"name":"ILDI_QUERYACCESS","features":[353]},{"name":"ILDI_RESETACCESS","features":[353]},{"name":"ILDI_STANDBY","features":[353]},{"name":"ILDRF_IMAGELOWQUALITY","features":[353]},{"name":"ILDRF_OVERLAYLOWQUALITY","features":[353]},{"name":"ILD_ASYNC","features":[353]},{"name":"ILD_BLEND","features":[353]},{"name":"ILD_BLEND25","features":[353]},{"name":"ILD_BLEND50","features":[353]},{"name":"ILD_DPISCALE","features":[353]},{"name":"ILD_FOCUS","features":[353]},{"name":"ILD_IMAGE","features":[353]},{"name":"ILD_MASK","features":[353]},{"name":"ILD_NORMAL","features":[353]},{"name":"ILD_OVERLAYMASK","features":[353]},{"name":"ILD_PRESERVEALPHA","features":[353]},{"name":"ILD_ROP","features":[353]},{"name":"ILD_SCALE","features":[353]},{"name":"ILD_SELECTED","features":[353]},{"name":"ILD_TRANSPARENT","features":[353]},{"name":"ILFIP_ALWAYS","features":[353]},{"name":"ILFIP_FROMSTANDBY","features":[353]},{"name":"ILGOS_ALWAYS","features":[353]},{"name":"ILGOS_FROMSTANDBY","features":[353]},{"name":"ILGT_ASYNC","features":[353]},{"name":"ILGT_NORMAL","features":[353]},{"name":"ILIF_ALPHA","features":[353]},{"name":"ILIF_LOWQUALITY","features":[353]},{"name":"ILP_DOWNLEVEL","features":[353]},{"name":"ILP_NORMAL","features":[353]},{"name":"ILR_DEFAULT","features":[353]},{"name":"ILR_HORIZONTAL_CENTER","features":[353]},{"name":"ILR_HORIZONTAL_LEFT","features":[353]},{"name":"ILR_HORIZONTAL_RIGHT","features":[353]},{"name":"ILR_SCALE_ASPECTRATIO","features":[353]},{"name":"ILR_SCALE_CLIP","features":[353]},{"name":"ILR_VERTICAL_BOTTOM","features":[353]},{"name":"ILR_VERTICAL_CENTER","features":[353]},{"name":"ILR_VERTICAL_TOP","features":[353]},{"name":"ILS_ALPHA","features":[353]},{"name":"ILS_GLOW","features":[353]},{"name":"ILS_NORMAL","features":[353]},{"name":"ILS_SATURATE","features":[353]},{"name":"ILS_SHADOW","features":[353]},{"name":"IL_HORIZONTAL","features":[353]},{"name":"IL_VERTICAL","features":[353]},{"name":"IMAGEINFO","features":[303,314,353]},{"name":"IMAGELAYOUT","features":[353]},{"name":"IMAGELISTDRAWPARAMS","features":[303,314,353]},{"name":"IMAGELISTSTATS","features":[353]},{"name":"IMAGELIST_CREATION_FLAGS","features":[353]},{"name":"IMAGESELECTTYPE","features":[353]},{"name":"IMAGE_LIST_COPY_FLAGS","features":[353]},{"name":"IMAGE_LIST_DRAW_STYLE","features":[353]},{"name":"IMAGE_LIST_ITEM_FLAGS","features":[353]},{"name":"IMAGE_LIST_WRITE_STREAM_FLAGS","features":[353]},{"name":"INFOTIPSIZE","features":[353]},{"name":"INITCOMMONCONTROLSEX","features":[353]},{"name":"INITCOMMONCONTROLSEX_ICC","features":[353]},{"name":"INTLIST","features":[353]},{"name":"INVALID_LINK_INDEX","features":[353]},{"name":"IPM_CLEARADDRESS","features":[353]},{"name":"IPM_GETADDRESS","features":[353]},{"name":"IPM_ISBLANK","features":[353]},{"name":"IPM_SETADDRESS","features":[353]},{"name":"IPM_SETFOCUS","features":[353]},{"name":"IPM_SETRANGE","features":[353]},{"name":"IPN_FIELDCHANGED","features":[353]},{"name":"IPN_FIRST","features":[353]},{"name":"IPN_LAST","features":[353]},{"name":"IST_DPI","features":[353]},{"name":"IST_NONE","features":[353]},{"name":"IST_SIZE","features":[353]},{"name":"ITEMSTATES","features":[353]},{"name":"I_CHILDRENAUTO","features":[353]},{"name":"I_CHILDRENCALLBACK","features":[353]},{"name":"I_GROUPIDCALLBACK","features":[353]},{"name":"I_GROUPIDNONE","features":[353]},{"name":"I_IMAGECALLBACK","features":[353]},{"name":"I_IMAGENONE","features":[353]},{"name":"I_INDENTCALLBACK","features":[353]},{"name":"I_ONE_OR_MORE","features":[353]},{"name":"I_ZERO","features":[353]},{"name":"ImageList","features":[353]},{"name":"ImageList_Add","features":[314,353]},{"name":"ImageList_AddMasked","features":[303,314,353]},{"name":"ImageList_BeginDrag","features":[303,353]},{"name":"ImageList_CoCreateInstance","features":[353]},{"name":"ImageList_Copy","features":[303,353]},{"name":"ImageList_Create","features":[353]},{"name":"ImageList_Destroy","features":[303,353]},{"name":"ImageList_DragEnter","features":[303,353]},{"name":"ImageList_DragLeave","features":[303,353]},{"name":"ImageList_DragMove","features":[303,353]},{"name":"ImageList_DragShowNolock","features":[303,353]},{"name":"ImageList_Draw","features":[303,314,353]},{"name":"ImageList_DrawEx","features":[303,314,353]},{"name":"ImageList_DrawIndirect","features":[303,314,353]},{"name":"ImageList_Duplicate","features":[353]},{"name":"ImageList_EndDrag","features":[353]},{"name":"ImageList_GetBkColor","features":[303,353]},{"name":"ImageList_GetDragImage","features":[303,353]},{"name":"ImageList_GetIcon","features":[353,365]},{"name":"ImageList_GetIconSize","features":[303,353]},{"name":"ImageList_GetImageCount","features":[353]},{"name":"ImageList_GetImageInfo","features":[303,314,353]},{"name":"ImageList_LoadImageA","features":[303,353,365]},{"name":"ImageList_LoadImageW","features":[303,353,365]},{"name":"ImageList_Merge","features":[353]},{"name":"ImageList_Read","features":[354,353]},{"name":"ImageList_ReadEx","features":[354,353]},{"name":"ImageList_Remove","features":[303,353]},{"name":"ImageList_Replace","features":[303,314,353]},{"name":"ImageList_ReplaceIcon","features":[353,365]},{"name":"ImageList_SetBkColor","features":[303,353]},{"name":"ImageList_SetDragCursorImage","features":[303,353]},{"name":"ImageList_SetIconSize","features":[303,353]},{"name":"ImageList_SetImageCount","features":[303,353]},{"name":"ImageList_SetOverlayImage","features":[303,353]},{"name":"ImageList_Write","features":[303,354,353]},{"name":"ImageList_WriteEx","features":[354,353]},{"name":"InitCommonControls","features":[353]},{"name":"InitCommonControlsEx","features":[303,353]},{"name":"InitMUILanguage","features":[353]},{"name":"InitializeFlatSB","features":[303,353]},{"name":"IsAppThemed","features":[303,353]},{"name":"IsCharLowerW","features":[303,353]},{"name":"IsCompositionActive","features":[303,353]},{"name":"IsDlgButtonChecked","features":[303,353]},{"name":"IsThemeActive","features":[303,353]},{"name":"IsThemeBackgroundPartiallyTransparent","features":[303,353]},{"name":"IsThemeDialogTextureEnabled","features":[303,353]},{"name":"IsThemePartDefined","features":[303,353]},{"name":"LABELSTATES","features":[353]},{"name":"LBCP_BORDER_HSCROLL","features":[353]},{"name":"LBCP_BORDER_HVSCROLL","features":[353]},{"name":"LBCP_BORDER_NOSCROLL","features":[353]},{"name":"LBCP_BORDER_VSCROLL","features":[353]},{"name":"LBCP_ITEM","features":[353]},{"name":"LBItemFromPt","features":[303,353]},{"name":"LBPSHV_DISABLED","features":[353]},{"name":"LBPSHV_FOCUSED","features":[353]},{"name":"LBPSHV_HOT","features":[353]},{"name":"LBPSHV_NORMAL","features":[353]},{"name":"LBPSH_DISABLED","features":[353]},{"name":"LBPSH_FOCUSED","features":[353]},{"name":"LBPSH_HOT","features":[353]},{"name":"LBPSH_NORMAL","features":[353]},{"name":"LBPSI_HOT","features":[353]},{"name":"LBPSI_HOTSELECTED","features":[353]},{"name":"LBPSI_SELECTED","features":[353]},{"name":"LBPSI_SELECTEDNOTFOCUS","features":[353]},{"name":"LBPSN_DISABLED","features":[353]},{"name":"LBPSN_FOCUSED","features":[353]},{"name":"LBPSN_HOT","features":[353]},{"name":"LBPSN_NORMAL","features":[353]},{"name":"LBPSV_DISABLED","features":[353]},{"name":"LBPSV_FOCUSED","features":[353]},{"name":"LBPSV_HOT","features":[353]},{"name":"LBPSV_NORMAL","features":[353]},{"name":"LHITTESTINFO","features":[303,353]},{"name":"LIF_ITEMID","features":[353]},{"name":"LIF_ITEMINDEX","features":[353]},{"name":"LIF_STATE","features":[353]},{"name":"LIF_URL","features":[353]},{"name":"LIM_LARGE","features":[353]},{"name":"LIM_SMALL","features":[353]},{"name":"LINKHEADERSTATES","features":[353]},{"name":"LINKPARTS","features":[353]},{"name":"LINKSTATES","features":[353]},{"name":"LISS_DISABLED","features":[353]},{"name":"LISS_HOT","features":[353]},{"name":"LISS_HOTSELECTED","features":[353]},{"name":"LISS_NORMAL","features":[353]},{"name":"LISS_SELECTED","features":[353]},{"name":"LISS_SELECTEDNOTFOCUS","features":[353]},{"name":"LISTBOXPARTS","features":[353]},{"name":"LISTITEMSTATES","features":[353]},{"name":"LISTVIEWPARTS","features":[353]},{"name":"LIST_ITEM_FLAGS","features":[353]},{"name":"LIST_ITEM_STATE_FLAGS","features":[353]},{"name":"LIST_VIEW_BACKGROUND_IMAGE_FLAGS","features":[353]},{"name":"LIST_VIEW_GROUP_ALIGN_FLAGS","features":[353]},{"name":"LIST_VIEW_GROUP_STATE_FLAGS","features":[353]},{"name":"LIST_VIEW_ITEM_COLUMN_FORMAT_FLAGS","features":[353]},{"name":"LIST_VIEW_ITEM_FLAGS","features":[353]},{"name":"LIST_VIEW_ITEM_STATE_FLAGS","features":[353]},{"name":"LIS_DEFAULTCOLORS","features":[353]},{"name":"LIS_ENABLED","features":[353]},{"name":"LIS_FOCUSED","features":[353]},{"name":"LIS_HOTTRACK","features":[353]},{"name":"LIS_VISITED","features":[353]},{"name":"LITEM","features":[353]},{"name":"LM_GETIDEALHEIGHT","features":[353]},{"name":"LM_GETIDEALSIZE","features":[353]},{"name":"LM_GETITEM","features":[353]},{"name":"LM_HITTEST","features":[353]},{"name":"LM_SETITEM","features":[353]},{"name":"LOGOFFBUTTONSSTATES","features":[353]},{"name":"LPFNADDPROPSHEETPAGES","features":[303,353]},{"name":"LPFNCCINFOA","features":[303,314,353]},{"name":"LPFNCCINFOW","features":[303,314,353]},{"name":"LPFNCCSIZETOTEXTA","features":[314,353]},{"name":"LPFNCCSIZETOTEXTW","features":[314,353]},{"name":"LPFNCCSTYLEA","features":[303,353]},{"name":"LPFNCCSTYLEW","features":[303,353]},{"name":"LPFNPSPCALLBACKA","features":[303,314,353,365]},{"name":"LPFNPSPCALLBACKW","features":[303,314,353,365]},{"name":"LPFNSVADDPROPSHEETPAGE","features":[303,353]},{"name":"LP_HYPERLINK","features":[353]},{"name":"LVA_ALIGNLEFT","features":[353]},{"name":"LVA_ALIGNTOP","features":[353]},{"name":"LVA_DEFAULT","features":[353]},{"name":"LVA_SNAPTOGRID","features":[353]},{"name":"LVBKIF_FLAG_ALPHABLEND","features":[353]},{"name":"LVBKIF_FLAG_TILEOFFSET","features":[353]},{"name":"LVBKIF_SOURCE_HBITMAP","features":[353]},{"name":"LVBKIF_SOURCE_MASK","features":[353]},{"name":"LVBKIF_SOURCE_NONE","features":[353]},{"name":"LVBKIF_SOURCE_URL","features":[353]},{"name":"LVBKIF_STYLE_MASK","features":[353]},{"name":"LVBKIF_STYLE_NORMAL","features":[353]},{"name":"LVBKIF_STYLE_TILE","features":[353]},{"name":"LVBKIF_TYPE_WATERMARK","features":[353]},{"name":"LVBKIMAGEA","features":[314,353]},{"name":"LVBKIMAGEW","features":[314,353]},{"name":"LVCB_HOVER","features":[353]},{"name":"LVCB_NORMAL","features":[353]},{"name":"LVCB_PUSHED","features":[353]},{"name":"LVCDI_GROUP","features":[353]},{"name":"LVCDI_ITEM","features":[353]},{"name":"LVCDI_ITEMSLIST","features":[353]},{"name":"LVCDRF_NOGROUPFRAME","features":[353]},{"name":"LVCDRF_NOSELECT","features":[353]},{"name":"LVCFMT_BITMAP_ON_RIGHT","features":[353]},{"name":"LVCFMT_CENTER","features":[353]},{"name":"LVCFMT_COL_HAS_IMAGES","features":[353]},{"name":"LVCFMT_FILL","features":[353]},{"name":"LVCFMT_FIXED_RATIO","features":[353]},{"name":"LVCFMT_FIXED_WIDTH","features":[353]},{"name":"LVCFMT_IMAGE","features":[353]},{"name":"LVCFMT_JUSTIFYMASK","features":[353]},{"name":"LVCFMT_LEFT","features":[353]},{"name":"LVCFMT_LINE_BREAK","features":[353]},{"name":"LVCFMT_NO_DPI_SCALE","features":[353]},{"name":"LVCFMT_NO_TITLE","features":[353]},{"name":"LVCFMT_RIGHT","features":[353]},{"name":"LVCFMT_SPLITBUTTON","features":[353]},{"name":"LVCFMT_TILE_PLACEMENTMASK","features":[353]},{"name":"LVCFMT_WRAP","features":[353]},{"name":"LVCF_DEFAULTWIDTH","features":[353]},{"name":"LVCF_FMT","features":[353]},{"name":"LVCF_IDEALWIDTH","features":[353]},{"name":"LVCF_IMAGE","features":[353]},{"name":"LVCF_MINWIDTH","features":[353]},{"name":"LVCF_ORDER","features":[353]},{"name":"LVCF_SUBITEM","features":[353]},{"name":"LVCF_TEXT","features":[353]},{"name":"LVCF_WIDTH","features":[353]},{"name":"LVCOLUMNA","features":[353]},{"name":"LVCOLUMNW","features":[353]},{"name":"LVCOLUMNW_FORMAT","features":[353]},{"name":"LVCOLUMNW_MASK","features":[353]},{"name":"LVEB_HOVER","features":[353]},{"name":"LVEB_NORMAL","features":[353]},{"name":"LVEB_PUSHED","features":[353]},{"name":"LVFF_ITEMCOUNT","features":[353]},{"name":"LVFIF_STATE","features":[353]},{"name":"LVFIF_TEXT","features":[353]},{"name":"LVFINDINFOA","features":[303,353]},{"name":"LVFINDINFOW","features":[303,353]},{"name":"LVFINDINFOW_FLAGS","features":[353]},{"name":"LVFIS_FOCUSED","features":[353]},{"name":"LVFI_NEARESTXY","features":[353]},{"name":"LVFI_PARAM","features":[353]},{"name":"LVFI_PARTIAL","features":[353]},{"name":"LVFI_STRING","features":[353]},{"name":"LVFI_SUBSTRING","features":[353]},{"name":"LVFI_WRAP","features":[353]},{"name":"LVFOOTERINFO","features":[353]},{"name":"LVFOOTERITEM","features":[353]},{"name":"LVFOOTERITEM_MASK","features":[353]},{"name":"LVGA_FOOTER_CENTER","features":[353]},{"name":"LVGA_FOOTER_LEFT","features":[353]},{"name":"LVGA_FOOTER_RIGHT","features":[353]},{"name":"LVGA_HEADER_CENTER","features":[353]},{"name":"LVGA_HEADER_LEFT","features":[353]},{"name":"LVGA_HEADER_RIGHT","features":[353]},{"name":"LVGF_ALIGN","features":[353]},{"name":"LVGF_DESCRIPTIONBOTTOM","features":[353]},{"name":"LVGF_DESCRIPTIONTOP","features":[353]},{"name":"LVGF_EXTENDEDIMAGE","features":[353]},{"name":"LVGF_FOOTER","features":[353]},{"name":"LVGF_GROUPID","features":[353]},{"name":"LVGF_HEADER","features":[353]},{"name":"LVGF_ITEMS","features":[353]},{"name":"LVGF_NONE","features":[353]},{"name":"LVGF_STATE","features":[353]},{"name":"LVGF_SUBSET","features":[353]},{"name":"LVGF_SUBSETITEMS","features":[353]},{"name":"LVGF_SUBTITLE","features":[353]},{"name":"LVGF_TASK","features":[353]},{"name":"LVGF_TITLEIMAGE","features":[353]},{"name":"LVGGR_GROUP","features":[353]},{"name":"LVGGR_HEADER","features":[353]},{"name":"LVGGR_LABEL","features":[353]},{"name":"LVGGR_SUBSETLINK","features":[353]},{"name":"LVGHL_CLOSE","features":[353]},{"name":"LVGHL_CLOSEHOT","features":[353]},{"name":"LVGHL_CLOSEMIXEDSELECTION","features":[353]},{"name":"LVGHL_CLOSEMIXEDSELECTIONHOT","features":[353]},{"name":"LVGHL_CLOSESELECTED","features":[353]},{"name":"LVGHL_CLOSESELECTEDHOT","features":[353]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSED","features":[353]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSEDHOT","features":[353]},{"name":"LVGHL_OPEN","features":[353]},{"name":"LVGHL_OPENHOT","features":[353]},{"name":"LVGHL_OPENMIXEDSELECTION","features":[353]},{"name":"LVGHL_OPENMIXEDSELECTIONHOT","features":[353]},{"name":"LVGHL_OPENSELECTED","features":[353]},{"name":"LVGHL_OPENSELECTEDHOT","features":[353]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSED","features":[353]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSEDHOT","features":[353]},{"name":"LVGH_CLOSE","features":[353]},{"name":"LVGH_CLOSEHOT","features":[353]},{"name":"LVGH_CLOSEMIXEDSELECTION","features":[353]},{"name":"LVGH_CLOSEMIXEDSELECTIONHOT","features":[353]},{"name":"LVGH_CLOSESELECTED","features":[353]},{"name":"LVGH_CLOSESELECTEDHOT","features":[353]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSED","features":[353]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSEDHOT","features":[353]},{"name":"LVGH_OPEN","features":[353]},{"name":"LVGH_OPENHOT","features":[353]},{"name":"LVGH_OPENMIXEDSELECTION","features":[353]},{"name":"LVGH_OPENMIXEDSELECTIONHOT","features":[353]},{"name":"LVGH_OPENSELECTED","features":[353]},{"name":"LVGH_OPENSELECTEDHOT","features":[353]},{"name":"LVGH_OPENSELECTEDNOTFOCUSED","features":[353]},{"name":"LVGH_OPENSELECTEDNOTFOCUSEDHOT","features":[353]},{"name":"LVGIT_UNFOLDED","features":[353]},{"name":"LVGIT_ZERO","features":[353]},{"name":"LVGMF_BORDERCOLOR","features":[353]},{"name":"LVGMF_BORDERSIZE","features":[353]},{"name":"LVGMF_NONE","features":[353]},{"name":"LVGMF_TEXTCOLOR","features":[353]},{"name":"LVGROUP","features":[353]},{"name":"LVGROUPMETRICS","features":[303,353]},{"name":"LVGROUP_MASK","features":[353]},{"name":"LVGS_COLLAPSED","features":[353]},{"name":"LVGS_COLLAPSIBLE","features":[353]},{"name":"LVGS_FOCUSED","features":[353]},{"name":"LVGS_HIDDEN","features":[353]},{"name":"LVGS_NOHEADER","features":[353]},{"name":"LVGS_NORMAL","features":[353]},{"name":"LVGS_SELECTED","features":[353]},{"name":"LVGS_SUBSETED","features":[353]},{"name":"LVGS_SUBSETLINKFOCUSED","features":[353]},{"name":"LVHITTESTINFO","features":[303,353]},{"name":"LVHITTESTINFO_FLAGS","features":[353]},{"name":"LVHT_ABOVE","features":[353]},{"name":"LVHT_BELOW","features":[353]},{"name":"LVHT_EX_FOOTER","features":[353]},{"name":"LVHT_EX_GROUP","features":[353]},{"name":"LVHT_EX_GROUP_BACKGROUND","features":[353]},{"name":"LVHT_EX_GROUP_COLLAPSE","features":[353]},{"name":"LVHT_EX_GROUP_FOOTER","features":[353]},{"name":"LVHT_EX_GROUP_HEADER","features":[353]},{"name":"LVHT_EX_GROUP_STATEICON","features":[353]},{"name":"LVHT_EX_GROUP_SUBSETLINK","features":[353]},{"name":"LVHT_EX_ONCONTENTS","features":[353]},{"name":"LVHT_NOWHERE","features":[353]},{"name":"LVHT_ONITEMICON","features":[353]},{"name":"LVHT_ONITEMLABEL","features":[353]},{"name":"LVHT_ONITEMSTATEICON","features":[353]},{"name":"LVHT_TOLEFT","features":[353]},{"name":"LVHT_TORIGHT","features":[353]},{"name":"LVIF_COLFMT","features":[353]},{"name":"LVIF_COLUMNS","features":[353]},{"name":"LVIF_DI_SETITEM","features":[353]},{"name":"LVIF_GROUPID","features":[353]},{"name":"LVIF_IMAGE","features":[353]},{"name":"LVIF_INDENT","features":[353]},{"name":"LVIF_NORECOMPUTE","features":[353]},{"name":"LVIF_PARAM","features":[353]},{"name":"LVIF_STATE","features":[353]},{"name":"LVIF_TEXT","features":[353]},{"name":"LVIM_AFTER","features":[353]},{"name":"LVINSERTGROUPSORTED","features":[353]},{"name":"LVINSERTMARK","features":[353]},{"name":"LVIR_BOUNDS","features":[353]},{"name":"LVIR_ICON","features":[353]},{"name":"LVIR_LABEL","features":[353]},{"name":"LVIR_SELECTBOUNDS","features":[353]},{"name":"LVIS_ACTIVATING","features":[353]},{"name":"LVIS_CUT","features":[353]},{"name":"LVIS_DROPHILITED","features":[353]},{"name":"LVIS_FOCUSED","features":[353]},{"name":"LVIS_GLOW","features":[353]},{"name":"LVIS_OVERLAYMASK","features":[353]},{"name":"LVIS_SELECTED","features":[353]},{"name":"LVIS_STATEIMAGEMASK","features":[353]},{"name":"LVITEMA","features":[303,353]},{"name":"LVITEMA_GROUP_ID","features":[353]},{"name":"LVITEMINDEX","features":[353]},{"name":"LVITEMW","features":[303,353]},{"name":"LVKF_ALT","features":[353]},{"name":"LVKF_CONTROL","features":[353]},{"name":"LVKF_SHIFT","features":[353]},{"name":"LVM_APPROXIMATEVIEWRECT","features":[353]},{"name":"LVM_ARRANGE","features":[353]},{"name":"LVM_CANCELEDITLABEL","features":[353]},{"name":"LVM_CREATEDRAGIMAGE","features":[353]},{"name":"LVM_DELETEALLITEMS","features":[353]},{"name":"LVM_DELETECOLUMN","features":[353]},{"name":"LVM_DELETEITEM","features":[353]},{"name":"LVM_EDITLABEL","features":[353]},{"name":"LVM_EDITLABELA","features":[353]},{"name":"LVM_EDITLABELW","features":[353]},{"name":"LVM_ENABLEGROUPVIEW","features":[353]},{"name":"LVM_ENSUREVISIBLE","features":[353]},{"name":"LVM_FINDITEM","features":[353]},{"name":"LVM_FINDITEMA","features":[353]},{"name":"LVM_FINDITEMW","features":[353]},{"name":"LVM_FIRST","features":[353]},{"name":"LVM_GETBKCOLOR","features":[353]},{"name":"LVM_GETBKIMAGE","features":[353]},{"name":"LVM_GETBKIMAGEA","features":[353]},{"name":"LVM_GETBKIMAGEW","features":[353]},{"name":"LVM_GETCALLBACKMASK","features":[353]},{"name":"LVM_GETCOLUMN","features":[353]},{"name":"LVM_GETCOLUMNA","features":[353]},{"name":"LVM_GETCOLUMNORDERARRAY","features":[353]},{"name":"LVM_GETCOLUMNW","features":[353]},{"name":"LVM_GETCOLUMNWIDTH","features":[353]},{"name":"LVM_GETCOUNTPERPAGE","features":[353]},{"name":"LVM_GETEDITCONTROL","features":[353]},{"name":"LVM_GETEMPTYTEXT","features":[353]},{"name":"LVM_GETEXTENDEDLISTVIEWSTYLE","features":[353]},{"name":"LVM_GETFOCUSEDGROUP","features":[353]},{"name":"LVM_GETFOOTERINFO","features":[353]},{"name":"LVM_GETFOOTERITEM","features":[353]},{"name":"LVM_GETFOOTERITEMRECT","features":[353]},{"name":"LVM_GETFOOTERRECT","features":[353]},{"name":"LVM_GETGROUPCOUNT","features":[353]},{"name":"LVM_GETGROUPINFO","features":[353]},{"name":"LVM_GETGROUPINFOBYINDEX","features":[353]},{"name":"LVM_GETGROUPMETRICS","features":[353]},{"name":"LVM_GETGROUPRECT","features":[353]},{"name":"LVM_GETGROUPSTATE","features":[353]},{"name":"LVM_GETHEADER","features":[353]},{"name":"LVM_GETHOTCURSOR","features":[353]},{"name":"LVM_GETHOTITEM","features":[353]},{"name":"LVM_GETHOVERTIME","features":[353]},{"name":"LVM_GETIMAGELIST","features":[353]},{"name":"LVM_GETINSERTMARK","features":[353]},{"name":"LVM_GETINSERTMARKCOLOR","features":[353]},{"name":"LVM_GETINSERTMARKRECT","features":[353]},{"name":"LVM_GETISEARCHSTRING","features":[353]},{"name":"LVM_GETISEARCHSTRINGA","features":[353]},{"name":"LVM_GETISEARCHSTRINGW","features":[353]},{"name":"LVM_GETITEM","features":[353]},{"name":"LVM_GETITEMA","features":[353]},{"name":"LVM_GETITEMCOUNT","features":[353]},{"name":"LVM_GETITEMINDEXRECT","features":[353]},{"name":"LVM_GETITEMPOSITION","features":[353]},{"name":"LVM_GETITEMRECT","features":[353]},{"name":"LVM_GETITEMSPACING","features":[353]},{"name":"LVM_GETITEMSTATE","features":[353]},{"name":"LVM_GETITEMTEXT","features":[353]},{"name":"LVM_GETITEMTEXTA","features":[353]},{"name":"LVM_GETITEMTEXTW","features":[353]},{"name":"LVM_GETITEMW","features":[353]},{"name":"LVM_GETNEXTITEM","features":[353]},{"name":"LVM_GETNEXTITEMINDEX","features":[353]},{"name":"LVM_GETNUMBEROFWORKAREAS","features":[353]},{"name":"LVM_GETORIGIN","features":[353]},{"name":"LVM_GETOUTLINECOLOR","features":[353]},{"name":"LVM_GETSELECTEDCOLUMN","features":[353]},{"name":"LVM_GETSELECTEDCOUNT","features":[353]},{"name":"LVM_GETSELECTIONMARK","features":[353]},{"name":"LVM_GETSTRINGWIDTH","features":[353]},{"name":"LVM_GETSTRINGWIDTHA","features":[353]},{"name":"LVM_GETSTRINGWIDTHW","features":[353]},{"name":"LVM_GETSUBITEMRECT","features":[353]},{"name":"LVM_GETTEXTBKCOLOR","features":[353]},{"name":"LVM_GETTEXTCOLOR","features":[353]},{"name":"LVM_GETTILEINFO","features":[353]},{"name":"LVM_GETTILEVIEWINFO","features":[353]},{"name":"LVM_GETTOOLTIPS","features":[353]},{"name":"LVM_GETTOPINDEX","features":[353]},{"name":"LVM_GETUNICODEFORMAT","features":[353]},{"name":"LVM_GETVIEW","features":[353]},{"name":"LVM_GETVIEWRECT","features":[353]},{"name":"LVM_GETWORKAREAS","features":[353]},{"name":"LVM_HASGROUP","features":[353]},{"name":"LVM_HITTEST","features":[353]},{"name":"LVM_INSERTCOLUMN","features":[353]},{"name":"LVM_INSERTCOLUMNA","features":[353]},{"name":"LVM_INSERTCOLUMNW","features":[353]},{"name":"LVM_INSERTGROUP","features":[353]},{"name":"LVM_INSERTGROUPSORTED","features":[353]},{"name":"LVM_INSERTITEM","features":[353]},{"name":"LVM_INSERTITEMA","features":[353]},{"name":"LVM_INSERTITEMW","features":[353]},{"name":"LVM_INSERTMARKHITTEST","features":[353]},{"name":"LVM_ISGROUPVIEWENABLED","features":[353]},{"name":"LVM_ISITEMVISIBLE","features":[353]},{"name":"LVM_MAPIDTOINDEX","features":[353]},{"name":"LVM_MAPINDEXTOID","features":[353]},{"name":"LVM_MOVEGROUP","features":[353]},{"name":"LVM_MOVEITEMTOGROUP","features":[353]},{"name":"LVM_REDRAWITEMS","features":[353]},{"name":"LVM_REMOVEALLGROUPS","features":[353]},{"name":"LVM_REMOVEGROUP","features":[353]},{"name":"LVM_SCROLL","features":[353]},{"name":"LVM_SETBKCOLOR","features":[353]},{"name":"LVM_SETBKIMAGE","features":[353]},{"name":"LVM_SETBKIMAGEA","features":[353]},{"name":"LVM_SETBKIMAGEW","features":[353]},{"name":"LVM_SETCALLBACKMASK","features":[353]},{"name":"LVM_SETCOLUMN","features":[353]},{"name":"LVM_SETCOLUMNA","features":[353]},{"name":"LVM_SETCOLUMNORDERARRAY","features":[353]},{"name":"LVM_SETCOLUMNW","features":[353]},{"name":"LVM_SETCOLUMNWIDTH","features":[353]},{"name":"LVM_SETEXTENDEDLISTVIEWSTYLE","features":[353]},{"name":"LVM_SETGROUPINFO","features":[353]},{"name":"LVM_SETGROUPMETRICS","features":[353]},{"name":"LVM_SETHOTCURSOR","features":[353]},{"name":"LVM_SETHOTITEM","features":[353]},{"name":"LVM_SETHOVERTIME","features":[353]},{"name":"LVM_SETICONSPACING","features":[353]},{"name":"LVM_SETIMAGELIST","features":[353]},{"name":"LVM_SETINFOTIP","features":[353]},{"name":"LVM_SETINSERTMARK","features":[353]},{"name":"LVM_SETINSERTMARKCOLOR","features":[353]},{"name":"LVM_SETITEM","features":[353]},{"name":"LVM_SETITEMA","features":[353]},{"name":"LVM_SETITEMCOUNT","features":[353]},{"name":"LVM_SETITEMINDEXSTATE","features":[353]},{"name":"LVM_SETITEMPOSITION","features":[353]},{"name":"LVM_SETITEMPOSITION32","features":[353]},{"name":"LVM_SETITEMSTATE","features":[353]},{"name":"LVM_SETITEMTEXT","features":[353]},{"name":"LVM_SETITEMTEXTA","features":[353]},{"name":"LVM_SETITEMTEXTW","features":[353]},{"name":"LVM_SETITEMW","features":[353]},{"name":"LVM_SETOUTLINECOLOR","features":[353]},{"name":"LVM_SETSELECTEDCOLUMN","features":[353]},{"name":"LVM_SETSELECTIONMARK","features":[353]},{"name":"LVM_SETTEXTBKCOLOR","features":[353]},{"name":"LVM_SETTEXTCOLOR","features":[353]},{"name":"LVM_SETTILEINFO","features":[353]},{"name":"LVM_SETTILEVIEWINFO","features":[353]},{"name":"LVM_SETTOOLTIPS","features":[353]},{"name":"LVM_SETUNICODEFORMAT","features":[353]},{"name":"LVM_SETVIEW","features":[353]},{"name":"LVM_SETWORKAREAS","features":[353]},{"name":"LVM_SORTGROUPS","features":[353]},{"name":"LVM_SORTITEMS","features":[353]},{"name":"LVM_SORTITEMSEX","features":[353]},{"name":"LVM_SUBITEMHITTEST","features":[353]},{"name":"LVM_UPDATE","features":[353]},{"name":"LVNI_ABOVE","features":[353]},{"name":"LVNI_ALL","features":[353]},{"name":"LVNI_BELOW","features":[353]},{"name":"LVNI_CUT","features":[353]},{"name":"LVNI_DROPHILITED","features":[353]},{"name":"LVNI_FOCUSED","features":[353]},{"name":"LVNI_PREVIOUS","features":[353]},{"name":"LVNI_SAMEGROUPONLY","features":[353]},{"name":"LVNI_SELECTED","features":[353]},{"name":"LVNI_TOLEFT","features":[353]},{"name":"LVNI_TORIGHT","features":[353]},{"name":"LVNI_VISIBLEONLY","features":[353]},{"name":"LVNI_VISIBLEORDER","features":[353]},{"name":"LVNSCH_DEFAULT","features":[353]},{"name":"LVNSCH_ERROR","features":[353]},{"name":"LVNSCH_IGNORE","features":[353]},{"name":"LVN_BEGINDRAG","features":[353]},{"name":"LVN_BEGINLABELEDIT","features":[353]},{"name":"LVN_BEGINLABELEDITA","features":[353]},{"name":"LVN_BEGINLABELEDITW","features":[353]},{"name":"LVN_BEGINRDRAG","features":[353]},{"name":"LVN_BEGINSCROLL","features":[353]},{"name":"LVN_COLUMNCLICK","features":[353]},{"name":"LVN_COLUMNDROPDOWN","features":[353]},{"name":"LVN_COLUMNOVERFLOWCLICK","features":[353]},{"name":"LVN_DELETEALLITEMS","features":[353]},{"name":"LVN_DELETEITEM","features":[353]},{"name":"LVN_ENDLABELEDIT","features":[353]},{"name":"LVN_ENDLABELEDITA","features":[353]},{"name":"LVN_ENDLABELEDITW","features":[353]},{"name":"LVN_ENDSCROLL","features":[353]},{"name":"LVN_FIRST","features":[353]},{"name":"LVN_GETDISPINFO","features":[353]},{"name":"LVN_GETDISPINFOA","features":[353]},{"name":"LVN_GETDISPINFOW","features":[353]},{"name":"LVN_GETEMPTYMARKUP","features":[353]},{"name":"LVN_GETINFOTIP","features":[353]},{"name":"LVN_GETINFOTIPA","features":[353]},{"name":"LVN_GETINFOTIPW","features":[353]},{"name":"LVN_HOTTRACK","features":[353]},{"name":"LVN_INCREMENTALSEARCH","features":[353]},{"name":"LVN_INCREMENTALSEARCHA","features":[353]},{"name":"LVN_INCREMENTALSEARCHW","features":[353]},{"name":"LVN_INSERTITEM","features":[353]},{"name":"LVN_ITEMACTIVATE","features":[353]},{"name":"LVN_ITEMCHANGED","features":[353]},{"name":"LVN_ITEMCHANGING","features":[353]},{"name":"LVN_KEYDOWN","features":[353]},{"name":"LVN_LAST","features":[353]},{"name":"LVN_LINKCLICK","features":[353]},{"name":"LVN_MARQUEEBEGIN","features":[353]},{"name":"LVN_ODCACHEHINT","features":[353]},{"name":"LVN_ODFINDITEM","features":[353]},{"name":"LVN_ODFINDITEMA","features":[353]},{"name":"LVN_ODFINDITEMW","features":[353]},{"name":"LVN_ODSTATECHANGED","features":[353]},{"name":"LVN_SETDISPINFO","features":[353]},{"name":"LVN_SETDISPINFOA","features":[353]},{"name":"LVN_SETDISPINFOW","features":[353]},{"name":"LVP_COLLAPSEBUTTON","features":[353]},{"name":"LVP_COLUMNDETAIL","features":[353]},{"name":"LVP_EMPTYTEXT","features":[353]},{"name":"LVP_EXPANDBUTTON","features":[353]},{"name":"LVP_GROUPHEADER","features":[353]},{"name":"LVP_GROUPHEADERLINE","features":[353]},{"name":"LVP_LISTDETAIL","features":[353]},{"name":"LVP_LISTGROUP","features":[353]},{"name":"LVP_LISTITEM","features":[353]},{"name":"LVP_LISTSORTEDDETAIL","features":[353]},{"name":"LVSCW_AUTOSIZE","features":[353]},{"name":"LVSCW_AUTOSIZE_USEHEADER","features":[353]},{"name":"LVSETINFOTIP","features":[353]},{"name":"LVSICF_NOINVALIDATEALL","features":[353]},{"name":"LVSICF_NOSCROLL","features":[353]},{"name":"LVSIL_GROUPHEADER","features":[353]},{"name":"LVSIL_NORMAL","features":[353]},{"name":"LVSIL_SMALL","features":[353]},{"name":"LVSIL_STATE","features":[353]},{"name":"LVS_ALIGNLEFT","features":[353]},{"name":"LVS_ALIGNMASK","features":[353]},{"name":"LVS_ALIGNTOP","features":[353]},{"name":"LVS_AUTOARRANGE","features":[353]},{"name":"LVS_EDITLABELS","features":[353]},{"name":"LVS_EX_AUTOAUTOARRANGE","features":[353]},{"name":"LVS_EX_AUTOCHECKSELECT","features":[353]},{"name":"LVS_EX_AUTOSIZECOLUMNS","features":[353]},{"name":"LVS_EX_BORDERSELECT","features":[353]},{"name":"LVS_EX_CHECKBOXES","features":[353]},{"name":"LVS_EX_COLUMNOVERFLOW","features":[353]},{"name":"LVS_EX_COLUMNSNAPPOINTS","features":[353]},{"name":"LVS_EX_DOUBLEBUFFER","features":[353]},{"name":"LVS_EX_FLATSB","features":[353]},{"name":"LVS_EX_FULLROWSELECT","features":[353]},{"name":"LVS_EX_GRIDLINES","features":[353]},{"name":"LVS_EX_HEADERDRAGDROP","features":[353]},{"name":"LVS_EX_HEADERINALLVIEWS","features":[353]},{"name":"LVS_EX_HIDELABELS","features":[353]},{"name":"LVS_EX_INFOTIP","features":[353]},{"name":"LVS_EX_JUSTIFYCOLUMNS","features":[353]},{"name":"LVS_EX_LABELTIP","features":[353]},{"name":"LVS_EX_MULTIWORKAREAS","features":[353]},{"name":"LVS_EX_ONECLICKACTIVATE","features":[353]},{"name":"LVS_EX_REGIONAL","features":[353]},{"name":"LVS_EX_SIMPLESELECT","features":[353]},{"name":"LVS_EX_SINGLEROW","features":[353]},{"name":"LVS_EX_SNAPTOGRID","features":[353]},{"name":"LVS_EX_SUBITEMIMAGES","features":[353]},{"name":"LVS_EX_TRACKSELECT","features":[353]},{"name":"LVS_EX_TRANSPARENTBKGND","features":[353]},{"name":"LVS_EX_TRANSPARENTSHADOWTEXT","features":[353]},{"name":"LVS_EX_TWOCLICKACTIVATE","features":[353]},{"name":"LVS_EX_UNDERLINECOLD","features":[353]},{"name":"LVS_EX_UNDERLINEHOT","features":[353]},{"name":"LVS_ICON","features":[353]},{"name":"LVS_LIST","features":[353]},{"name":"LVS_NOCOLUMNHEADER","features":[353]},{"name":"LVS_NOLABELWRAP","features":[353]},{"name":"LVS_NOSCROLL","features":[353]},{"name":"LVS_NOSORTHEADER","features":[353]},{"name":"LVS_OWNERDATA","features":[353]},{"name":"LVS_OWNERDRAWFIXED","features":[353]},{"name":"LVS_REPORT","features":[353]},{"name":"LVS_SHAREIMAGELISTS","features":[353]},{"name":"LVS_SHOWSELALWAYS","features":[353]},{"name":"LVS_SINGLESEL","features":[353]},{"name":"LVS_SMALLICON","features":[353]},{"name":"LVS_SORTASCENDING","features":[353]},{"name":"LVS_SORTDESCENDING","features":[353]},{"name":"LVS_TYPEMASK","features":[353]},{"name":"LVS_TYPESTYLEMASK","features":[353]},{"name":"LVTILEINFO","features":[353]},{"name":"LVTILEVIEWINFO","features":[303,353]},{"name":"LVTILEVIEWINFO_FLAGS","features":[353]},{"name":"LVTILEVIEWINFO_MASK","features":[353]},{"name":"LVTVIF_AUTOSIZE","features":[353]},{"name":"LVTVIF_EXTENDED","features":[353]},{"name":"LVTVIF_FIXEDHEIGHT","features":[353]},{"name":"LVTVIF_FIXEDSIZE","features":[353]},{"name":"LVTVIF_FIXEDWIDTH","features":[353]},{"name":"LVTVIM_COLUMNS","features":[353]},{"name":"LVTVIM_LABELMARGIN","features":[353]},{"name":"LVTVIM_TILESIZE","features":[353]},{"name":"LV_MAX_WORKAREAS","features":[353]},{"name":"LV_VIEW_DETAILS","features":[353]},{"name":"LV_VIEW_ICON","features":[353]},{"name":"LV_VIEW_LIST","features":[353]},{"name":"LV_VIEW_MAX","features":[353]},{"name":"LV_VIEW_SMALLICON","features":[353]},{"name":"LV_VIEW_TILE","features":[353]},{"name":"LWS_IGNORERETURN","features":[353]},{"name":"LWS_NOPREFIX","features":[353]},{"name":"LWS_RIGHT","features":[353]},{"name":"LWS_TRANSPARENT","features":[353]},{"name":"LWS_USECUSTOMTEXT","features":[353]},{"name":"LWS_USEVISUALSTYLE","features":[353]},{"name":"LoadIconMetric","features":[303,353,365]},{"name":"LoadIconWithScaleDown","features":[303,353,365]},{"name":"MARGINS","features":[353]},{"name":"MARKUPTEXTSTATES","features":[353]},{"name":"MAXBS_DISABLED","features":[353]},{"name":"MAXBS_HOT","features":[353]},{"name":"MAXBS_NORMAL","features":[353]},{"name":"MAXBS_PUSHED","features":[353]},{"name":"MAXBUTTONSTATES","features":[353]},{"name":"MAXCAPTIONSTATES","features":[353]},{"name":"MAXPROPPAGES","features":[353]},{"name":"MAX_INTLIST_COUNT","features":[353]},{"name":"MAX_LINKID_TEXT","features":[353]},{"name":"MAX_THEMECOLOR","features":[353]},{"name":"MAX_THEMESIZE","features":[353]},{"name":"MBI_DISABLED","features":[353]},{"name":"MBI_DISABLEDHOT","features":[353]},{"name":"MBI_DISABLEDPUSHED","features":[353]},{"name":"MBI_HOT","features":[353]},{"name":"MBI_NORMAL","features":[353]},{"name":"MBI_PUSHED","features":[353]},{"name":"MB_ACTIVE","features":[353]},{"name":"MB_INACTIVE","features":[353]},{"name":"MCB_BITMAP","features":[353]},{"name":"MCB_DISABLED","features":[353]},{"name":"MCB_NORMAL","features":[353]},{"name":"MCGCB_HOT","features":[353]},{"name":"MCGCB_SELECTED","features":[353]},{"name":"MCGCB_SELECTEDHOT","features":[353]},{"name":"MCGCB_SELECTEDNOTFOCUSED","features":[353]},{"name":"MCGCB_TODAY","features":[353]},{"name":"MCGCB_TODAYSELECTED","features":[353]},{"name":"MCGCU_HASSTATE","features":[353]},{"name":"MCGCU_HASSTATEHOT","features":[353]},{"name":"MCGCU_HOT","features":[353]},{"name":"MCGCU_SELECTED","features":[353]},{"name":"MCGCU_SELECTEDHOT","features":[353]},{"name":"MCGC_HASSTATE","features":[353]},{"name":"MCGC_HASSTATEHOT","features":[353]},{"name":"MCGC_HOT","features":[353]},{"name":"MCGC_SELECTED","features":[353]},{"name":"MCGC_SELECTEDHOT","features":[353]},{"name":"MCGC_TODAY","features":[353]},{"name":"MCGC_TODAYSELECTED","features":[353]},{"name":"MCGIF_DATE","features":[353]},{"name":"MCGIF_NAME","features":[353]},{"name":"MCGIF_RECT","features":[353]},{"name":"MCGIP_CALENDAR","features":[353]},{"name":"MCGIP_CALENDARBODY","features":[353]},{"name":"MCGIP_CALENDARCELL","features":[353]},{"name":"MCGIP_CALENDARCONTROL","features":[353]},{"name":"MCGIP_CALENDARHEADER","features":[353]},{"name":"MCGIP_CALENDARROW","features":[353]},{"name":"MCGIP_FOOTER","features":[353]},{"name":"MCGIP_NEXT","features":[353]},{"name":"MCGIP_PREV","features":[353]},{"name":"MCGRIDINFO","features":[303,353]},{"name":"MCGRIDINFO_FLAGS","features":[353]},{"name":"MCGRIDINFO_PART","features":[353]},{"name":"MCHITTESTINFO","features":[303,353]},{"name":"MCHITTESTINFO_HIT_FLAGS","features":[353]},{"name":"MCHT_CALENDAR","features":[353]},{"name":"MCHT_CALENDARBK","features":[353]},{"name":"MCHT_CALENDARCONTROL","features":[353]},{"name":"MCHT_CALENDARDATE","features":[353]},{"name":"MCHT_CALENDARDATEMAX","features":[353]},{"name":"MCHT_CALENDARDATEMIN","features":[353]},{"name":"MCHT_CALENDARDATENEXT","features":[353]},{"name":"MCHT_CALENDARDATEPREV","features":[353]},{"name":"MCHT_CALENDARDAY","features":[353]},{"name":"MCHT_CALENDARWEEKNUM","features":[353]},{"name":"MCHT_NEXT","features":[353]},{"name":"MCHT_NOWHERE","features":[353]},{"name":"MCHT_PREV","features":[353]},{"name":"MCHT_TITLE","features":[353]},{"name":"MCHT_TITLEBK","features":[353]},{"name":"MCHT_TITLEBTNNEXT","features":[353]},{"name":"MCHT_TITLEBTNPREV","features":[353]},{"name":"MCHT_TITLEMONTH","features":[353]},{"name":"MCHT_TITLEYEAR","features":[353]},{"name":"MCHT_TODAYLINK","features":[353]},{"name":"MCMV_CENTURY","features":[353]},{"name":"MCMV_DECADE","features":[353]},{"name":"MCMV_MAX","features":[353]},{"name":"MCMV_MONTH","features":[353]},{"name":"MCMV_YEAR","features":[353]},{"name":"MCM_FIRST","features":[353]},{"name":"MCM_GETCALENDARBORDER","features":[353]},{"name":"MCM_GETCALENDARCOUNT","features":[353]},{"name":"MCM_GETCALENDARGRIDINFO","features":[353]},{"name":"MCM_GETCALID","features":[353]},{"name":"MCM_GETCOLOR","features":[353]},{"name":"MCM_GETCURRENTVIEW","features":[353]},{"name":"MCM_GETCURSEL","features":[353]},{"name":"MCM_GETFIRSTDAYOFWEEK","features":[353]},{"name":"MCM_GETMAXSELCOUNT","features":[353]},{"name":"MCM_GETMAXTODAYWIDTH","features":[353]},{"name":"MCM_GETMINREQRECT","features":[353]},{"name":"MCM_GETMONTHDELTA","features":[353]},{"name":"MCM_GETMONTHRANGE","features":[353]},{"name":"MCM_GETRANGE","features":[353]},{"name":"MCM_GETSELRANGE","features":[353]},{"name":"MCM_GETTODAY","features":[353]},{"name":"MCM_GETUNICODEFORMAT","features":[353]},{"name":"MCM_HITTEST","features":[353]},{"name":"MCM_SETCALENDARBORDER","features":[353]},{"name":"MCM_SETCALID","features":[353]},{"name":"MCM_SETCOLOR","features":[353]},{"name":"MCM_SETCURRENTVIEW","features":[353]},{"name":"MCM_SETCURSEL","features":[353]},{"name":"MCM_SETDAYSTATE","features":[353]},{"name":"MCM_SETFIRSTDAYOFWEEK","features":[353]},{"name":"MCM_SETMAXSELCOUNT","features":[353]},{"name":"MCM_SETMONTHDELTA","features":[353]},{"name":"MCM_SETRANGE","features":[353]},{"name":"MCM_SETSELRANGE","features":[353]},{"name":"MCM_SETTODAY","features":[353]},{"name":"MCM_SETUNICODEFORMAT","features":[353]},{"name":"MCM_SIZERECTTOMIN","features":[353]},{"name":"MCNN_DISABLED","features":[353]},{"name":"MCNN_HOT","features":[353]},{"name":"MCNN_NORMAL","features":[353]},{"name":"MCNN_PRESSED","features":[353]},{"name":"MCNP_DISABLED","features":[353]},{"name":"MCNP_HOT","features":[353]},{"name":"MCNP_NORMAL","features":[353]},{"name":"MCNP_PRESSED","features":[353]},{"name":"MCN_FIRST","features":[353]},{"name":"MCN_GETDAYSTATE","features":[353]},{"name":"MCN_LAST","features":[353]},{"name":"MCN_SELCHANGE","features":[353]},{"name":"MCN_SELECT","features":[353]},{"name":"MCN_VIEWCHANGE","features":[353]},{"name":"MCSC_BACKGROUND","features":[353]},{"name":"MCSC_MONTHBK","features":[353]},{"name":"MCSC_TEXT","features":[353]},{"name":"MCSC_TITLEBK","features":[353]},{"name":"MCSC_TITLETEXT","features":[353]},{"name":"MCSC_TRAILINGTEXT","features":[353]},{"name":"MCS_DAYSTATE","features":[353]},{"name":"MCS_MULTISELECT","features":[353]},{"name":"MCS_NOSELCHANGEONNAV","features":[353]},{"name":"MCS_NOTODAY","features":[353]},{"name":"MCS_NOTODAYCIRCLE","features":[353]},{"name":"MCS_NOTRAILINGDATES","features":[353]},{"name":"MCS_SHORTDAYSOFWEEK","features":[353]},{"name":"MCS_WEEKNUMBERS","features":[353]},{"name":"MCTGCU_HASSTATE","features":[353]},{"name":"MCTGCU_HASSTATEHOT","features":[353]},{"name":"MCTGCU_HOT","features":[353]},{"name":"MCTGCU_SELECTED","features":[353]},{"name":"MCTGCU_SELECTEDHOT","features":[353]},{"name":"MCTGC_HASSTATE","features":[353]},{"name":"MCTGC_HASSTATEHOT","features":[353]},{"name":"MCTGC_HOT","features":[353]},{"name":"MCTGC_SELECTED","features":[353]},{"name":"MCTGC_SELECTEDHOT","features":[353]},{"name":"MCTGC_TODAY","features":[353]},{"name":"MCTGC_TODAYSELECTED","features":[353]},{"name":"MC_BACKGROUND","features":[353]},{"name":"MC_BORDERS","features":[353]},{"name":"MC_BULLETDISABLED","features":[353]},{"name":"MC_BULLETNORMAL","features":[353]},{"name":"MC_CHECKMARKDISABLED","features":[353]},{"name":"MC_CHECKMARKNORMAL","features":[353]},{"name":"MC_COLHEADERSPLITTER","features":[353]},{"name":"MC_GRIDBACKGROUND","features":[353]},{"name":"MC_GRIDCELL","features":[353]},{"name":"MC_GRIDCELLBACKGROUND","features":[353]},{"name":"MC_GRIDCELLUPPER","features":[353]},{"name":"MC_NAVNEXT","features":[353]},{"name":"MC_NAVPREV","features":[353]},{"name":"MC_TRAILINGGRIDCELL","features":[353]},{"name":"MC_TRAILINGGRIDCELLUPPER","features":[353]},{"name":"MDCL_DISABLED","features":[353]},{"name":"MDCL_HOT","features":[353]},{"name":"MDCL_NORMAL","features":[353]},{"name":"MDCL_PUSHED","features":[353]},{"name":"MDICLOSEBUTTONSTATES","features":[353]},{"name":"MDIMINBUTTONSTATES","features":[353]},{"name":"MDIRESTOREBUTTONSTATES","features":[353]},{"name":"MDMI_DISABLED","features":[353]},{"name":"MDMI_HOT","features":[353]},{"name":"MDMI_NORMAL","features":[353]},{"name":"MDMI_PUSHED","features":[353]},{"name":"MDP_NEWAPPBUTTON","features":[353]},{"name":"MDP_SEPERATOR","features":[353]},{"name":"MDRE_DISABLED","features":[353]},{"name":"MDRE_HOT","features":[353]},{"name":"MDRE_NORMAL","features":[353]},{"name":"MDRE_PUSHED","features":[353]},{"name":"MDS_CHECKED","features":[353]},{"name":"MDS_DISABLED","features":[353]},{"name":"MDS_HOT","features":[353]},{"name":"MDS_HOTCHECKED","features":[353]},{"name":"MDS_NORMAL","features":[353]},{"name":"MDS_PRESSED","features":[353]},{"name":"MEASUREITEMSTRUCT","features":[353]},{"name":"MENUBANDPARTS","features":[353]},{"name":"MENUBANDSTATES","features":[353]},{"name":"MENUPARTS","features":[353]},{"name":"MENU_BARBACKGROUND","features":[353]},{"name":"MENU_BARITEM","features":[353]},{"name":"MENU_CHEVRON_TMSCHEMA","features":[353]},{"name":"MENU_MENUBARDROPDOWN_TMSCHEMA","features":[353]},{"name":"MENU_MENUBARITEM_TMSCHEMA","features":[353]},{"name":"MENU_MENUDROPDOWN_TMSCHEMA","features":[353]},{"name":"MENU_MENUITEM_TMSCHEMA","features":[353]},{"name":"MENU_POPUPBACKGROUND","features":[353]},{"name":"MENU_POPUPBORDERS","features":[353]},{"name":"MENU_POPUPCHECK","features":[353]},{"name":"MENU_POPUPCHECKBACKGROUND","features":[353]},{"name":"MENU_POPUPGUTTER","features":[353]},{"name":"MENU_POPUPITEM","features":[353]},{"name":"MENU_POPUPITEMKBFOCUS","features":[353]},{"name":"MENU_POPUPITEM_FOCUSABLE","features":[353]},{"name":"MENU_POPUPSEPARATOR","features":[353]},{"name":"MENU_POPUPSUBMENU","features":[353]},{"name":"MENU_POPUPSUBMENU_HCHOT","features":[353]},{"name":"MENU_SEPARATOR_TMSCHEMA","features":[353]},{"name":"MENU_SYSTEMCLOSE","features":[353]},{"name":"MENU_SYSTEMCLOSE_HCHOT","features":[353]},{"name":"MENU_SYSTEMMAXIMIZE","features":[353]},{"name":"MENU_SYSTEMMAXIMIZE_HCHOT","features":[353]},{"name":"MENU_SYSTEMMINIMIZE","features":[353]},{"name":"MENU_SYSTEMMINIMIZE_HCHOT","features":[353]},{"name":"MENU_SYSTEMRESTORE","features":[353]},{"name":"MENU_SYSTEMRESTORE_HCHOT","features":[353]},{"name":"MINBS_DISABLED","features":[353]},{"name":"MINBS_HOT","features":[353]},{"name":"MINBS_NORMAL","features":[353]},{"name":"MINBS_PUSHED","features":[353]},{"name":"MINBUTTONSTATES","features":[353]},{"name":"MINCAPTIONSTATES","features":[353]},{"name":"MNCS_ACTIVE","features":[353]},{"name":"MNCS_DISABLED","features":[353]},{"name":"MNCS_INACTIVE","features":[353]},{"name":"MONTHCALPARTS","features":[353]},{"name":"MONTHCAL_CLASS","features":[353]},{"name":"MONTHCAL_CLASSA","features":[353]},{"name":"MONTHCAL_CLASSW","features":[353]},{"name":"MONTH_CALDENDAR_MESSAGES_VIEW","features":[353]},{"name":"MOREPROGRAMSARROWBACKSTATES","features":[353]},{"name":"MOREPROGRAMSARROWSTATES","features":[353]},{"name":"MOREPROGRAMSTABSTATES","features":[353]},{"name":"MOVESTATES","features":[353]},{"name":"MPIF_DISABLED","features":[353]},{"name":"MPIF_DISABLEDHOT","features":[353]},{"name":"MPIF_HOT","features":[353]},{"name":"MPIF_NORMAL","features":[353]},{"name":"MPIKBFOCUS_NORMAL","features":[353]},{"name":"MPI_DISABLED","features":[353]},{"name":"MPI_DISABLEDHOT","features":[353]},{"name":"MPI_HOT","features":[353]},{"name":"MPI_NORMAL","features":[353]},{"name":"MSGF_COMMCTRL_BEGINDRAG","features":[353]},{"name":"MSGF_COMMCTRL_DRAGSELECT","features":[353]},{"name":"MSGF_COMMCTRL_SIZEHEADER","features":[353]},{"name":"MSGF_COMMCTRL_TOOLBARCUST","features":[353]},{"name":"MSMHC_HOT","features":[353]},{"name":"MSM_DISABLED","features":[353]},{"name":"MSM_NORMAL","features":[353]},{"name":"MSYSCHC_HOT","features":[353]},{"name":"MSYSC_DISABLED","features":[353]},{"name":"MSYSC_NORMAL","features":[353]},{"name":"MSYSMNHC_HOT","features":[353]},{"name":"MSYSMN_DISABLED","features":[353]},{"name":"MSYSMN_NORMAL","features":[353]},{"name":"MSYSMXHC_HOT","features":[353]},{"name":"MSYSMX_DISABLED","features":[353]},{"name":"MSYSMX_NORMAL","features":[353]},{"name":"MSYSRHC_HOT","features":[353]},{"name":"MSYSR_DISABLED","features":[353]},{"name":"MSYSR_NORMAL","features":[353]},{"name":"MULTIFILEOPENORD","features":[353]},{"name":"MXCS_ACTIVE","features":[353]},{"name":"MXCS_DISABLED","features":[353]},{"name":"MXCS_INACTIVE","features":[353]},{"name":"MakeDragList","features":[303,353]},{"name":"MenuHelp","features":[303,353,365]},{"name":"NAVIGATIONPARTS","features":[353]},{"name":"NAVNEXTSTATES","features":[353]},{"name":"NAVPREVSTATES","features":[353]},{"name":"NAV_BACKBUTTON","features":[353]},{"name":"NAV_BACKBUTTONSTATES","features":[353]},{"name":"NAV_BB_DISABLED","features":[353]},{"name":"NAV_BB_HOT","features":[353]},{"name":"NAV_BB_NORMAL","features":[353]},{"name":"NAV_BB_PRESSED","features":[353]},{"name":"NAV_FB_DISABLED","features":[353]},{"name":"NAV_FB_HOT","features":[353]},{"name":"NAV_FB_NORMAL","features":[353]},{"name":"NAV_FB_PRESSED","features":[353]},{"name":"NAV_FORWARDBUTTON","features":[353]},{"name":"NAV_FORWARDBUTTONSTATES","features":[353]},{"name":"NAV_MB_DISABLED","features":[353]},{"name":"NAV_MB_HOT","features":[353]},{"name":"NAV_MB_NORMAL","features":[353]},{"name":"NAV_MB_PRESSED","features":[353]},{"name":"NAV_MENUBUTTON","features":[353]},{"name":"NAV_MENUBUTTONSTATES","features":[353]},{"name":"NEWFILEOPENORD","features":[353]},{"name":"NEWFILEOPENV2ORD","features":[353]},{"name":"NEWFILEOPENV3ORD","features":[353]},{"name":"NEWFORMATDLGWITHLINK","features":[353]},{"name":"NFS_ALL","features":[353]},{"name":"NFS_BUTTON","features":[353]},{"name":"NFS_EDIT","features":[353]},{"name":"NFS_LISTCOMBO","features":[353]},{"name":"NFS_STATIC","features":[353]},{"name":"NFS_USEFONTASSOC","features":[353]},{"name":"NMBCDROPDOWN","features":[303,353]},{"name":"NMBCHOTITEM","features":[303,353]},{"name":"NMCBEDRAGBEGINA","features":[303,353]},{"name":"NMCBEDRAGBEGINW","features":[303,353]},{"name":"NMCBEENDEDITA","features":[303,353]},{"name":"NMCBEENDEDITW","features":[303,353]},{"name":"NMCHAR","features":[303,353]},{"name":"NMCOMBOBOXEXA","features":[303,353]},{"name":"NMCOMBOBOXEXW","features":[303,353]},{"name":"NMCUSTOMDRAW","features":[303,314,353]},{"name":"NMCUSTOMDRAW_DRAW_STAGE","features":[353]},{"name":"NMCUSTOMDRAW_DRAW_STATE_FLAGS","features":[353]},{"name":"NMCUSTOMSPLITRECTINFO","features":[303,353]},{"name":"NMCUSTOMTEXT","features":[303,314,353]},{"name":"NMDATETIMECHANGE","features":[303,353]},{"name":"NMDATETIMECHANGE_FLAGS","features":[353]},{"name":"NMDATETIMEFORMATA","features":[303,353]},{"name":"NMDATETIMEFORMATQUERYA","features":[303,353]},{"name":"NMDATETIMEFORMATQUERYW","features":[303,353]},{"name":"NMDATETIMEFORMATW","features":[303,353]},{"name":"NMDATETIMESTRINGA","features":[303,353]},{"name":"NMDATETIMESTRINGW","features":[303,353]},{"name":"NMDATETIMEWMKEYDOWNA","features":[303,353]},{"name":"NMDATETIMEWMKEYDOWNW","features":[303,353]},{"name":"NMDAYSTATE","features":[303,353]},{"name":"NMHDDISPINFOA","features":[303,353]},{"name":"NMHDDISPINFOW","features":[303,353]},{"name":"NMHDFILTERBTNCLICK","features":[303,353]},{"name":"NMHDR","features":[303,353]},{"name":"NMHEADERA","features":[303,314,353]},{"name":"NMHEADERW","features":[303,314,353]},{"name":"NMIPADDRESS","features":[303,353]},{"name":"NMITEMACTIVATE","features":[303,353]},{"name":"NMKEY","features":[303,353]},{"name":"NMLINK","features":[303,353]},{"name":"NMLISTVIEW","features":[303,353]},{"name":"NMLVCACHEHINT","features":[303,353]},{"name":"NMLVCUSTOMDRAW","features":[303,314,353]},{"name":"NMLVCUSTOMDRAW_ITEM_TYPE","features":[353]},{"name":"NMLVDISPINFOA","features":[303,353]},{"name":"NMLVDISPINFOW","features":[303,353]},{"name":"NMLVEMPTYMARKUP","features":[303,353]},{"name":"NMLVEMPTYMARKUP_FLAGS","features":[353]},{"name":"NMLVFINDITEMA","features":[303,353]},{"name":"NMLVFINDITEMW","features":[303,353]},{"name":"NMLVGETINFOTIPA","features":[303,353]},{"name":"NMLVGETINFOTIPW","features":[303,353]},{"name":"NMLVGETINFOTIP_FLAGS","features":[353]},{"name":"NMLVKEYDOWN","features":[303,353]},{"name":"NMLVLINK","features":[303,353]},{"name":"NMLVODSTATECHANGE","features":[303,353]},{"name":"NMLVSCROLL","features":[303,353]},{"name":"NMMOUSE","features":[303,353]},{"name":"NMOBJECTNOTIFY","features":[303,353]},{"name":"NMPGCALCSIZE","features":[303,353]},{"name":"NMPGCALCSIZE_FLAGS","features":[353]},{"name":"NMPGHOTITEM","features":[303,353]},{"name":"NMPGSCROLL","features":[303,353]},{"name":"NMPGSCROLL_DIR","features":[353]},{"name":"NMPGSCROLL_KEYS","features":[353]},{"name":"NMRBAUTOSIZE","features":[303,353]},{"name":"NMREBAR","features":[303,353]},{"name":"NMREBARAUTOBREAK","features":[303,353]},{"name":"NMREBARCHEVRON","features":[303,353]},{"name":"NMREBARCHILDSIZE","features":[303,353]},{"name":"NMREBARSPLITTER","features":[303,353]},{"name":"NMREBAR_MASK_FLAGS","features":[353]},{"name":"NMSEARCHWEB","features":[303,353]},{"name":"NMSELCHANGE","features":[303,353]},{"name":"NMTBCUSTOMDRAW","features":[303,314,353]},{"name":"NMTBDISPINFOA","features":[303,353]},{"name":"NMTBDISPINFOW","features":[303,353]},{"name":"NMTBDISPINFOW_MASK","features":[353]},{"name":"NMTBGETINFOTIPA","features":[303,353]},{"name":"NMTBGETINFOTIPW","features":[303,353]},{"name":"NMTBHOTITEM","features":[303,353]},{"name":"NMTBHOTITEM_FLAGS","features":[353]},{"name":"NMTBRESTORE","features":[303,353]},{"name":"NMTBSAVE","features":[303,353]},{"name":"NMTCKEYDOWN","features":[303,353]},{"name":"NMTOOLBARA","features":[303,353]},{"name":"NMTOOLBARW","features":[303,353]},{"name":"NMTOOLTIPSCREATED","features":[303,353]},{"name":"NMTRBTHUMBPOSCHANGING","features":[303,353]},{"name":"NMTREEVIEWA","features":[303,353]},{"name":"NMTREEVIEWW","features":[303,353]},{"name":"NMTTCUSTOMDRAW","features":[303,314,353]},{"name":"NMTTDISPINFOA","features":[303,353]},{"name":"NMTTDISPINFOW","features":[303,353]},{"name":"NMTVASYNCDRAW","features":[303,314,353]},{"name":"NMTVCUSTOMDRAW","features":[303,314,353]},{"name":"NMTVDISPINFOA","features":[303,353]},{"name":"NMTVDISPINFOEXA","features":[303,353]},{"name":"NMTVDISPINFOEXW","features":[303,353]},{"name":"NMTVDISPINFOW","features":[303,353]},{"name":"NMTVGETINFOTIPA","features":[303,353]},{"name":"NMTVGETINFOTIPW","features":[303,353]},{"name":"NMTVITEMCHANGE","features":[303,353]},{"name":"NMTVKEYDOWN","features":[303,353]},{"name":"NMTVSTATEIMAGECHANGING","features":[303,353]},{"name":"NMUPDOWN","features":[303,353]},{"name":"NMVIEWCHANGE","features":[303,353]},{"name":"NM_CHAR","features":[353]},{"name":"NM_CLICK","features":[353]},{"name":"NM_CUSTOMDRAW","features":[353]},{"name":"NM_CUSTOMTEXT","features":[353]},{"name":"NM_DBLCLK","features":[353]},{"name":"NM_FIRST","features":[353]},{"name":"NM_FONTCHANGED","features":[353]},{"name":"NM_GETCUSTOMSPLITRECT","features":[353]},{"name":"NM_HOVER","features":[353]},{"name":"NM_KEYDOWN","features":[353]},{"name":"NM_KILLFOCUS","features":[353]},{"name":"NM_LAST","features":[353]},{"name":"NM_LDOWN","features":[353]},{"name":"NM_NCHITTEST","features":[353]},{"name":"NM_OUTOFMEMORY","features":[353]},{"name":"NM_RCLICK","features":[353]},{"name":"NM_RDBLCLK","features":[353]},{"name":"NM_RDOWN","features":[353]},{"name":"NM_RELEASEDCAPTURE","features":[353]},{"name":"NM_RETURN","features":[353]},{"name":"NM_SETCURSOR","features":[353]},{"name":"NM_SETFOCUS","features":[353]},{"name":"NM_THEMECHANGED","features":[353]},{"name":"NM_TOOLTIPSCREATED","features":[353]},{"name":"NM_TREEVIEW_ACTION","features":[353]},{"name":"NM_TVSTATEIMAGECHANGING","features":[353]},{"name":"NONESTATES","features":[353]},{"name":"NORMALGROUPCOLLAPSESTATES","features":[353]},{"name":"NORMALGROUPEXPANDSTATES","features":[353]},{"name":"ODA_DRAWENTIRE","features":[353]},{"name":"ODA_FLAGS","features":[353]},{"name":"ODA_FOCUS","features":[353]},{"name":"ODA_SELECT","features":[353]},{"name":"ODS_CHECKED","features":[353]},{"name":"ODS_COMBOBOXEDIT","features":[353]},{"name":"ODS_DEFAULT","features":[353]},{"name":"ODS_DISABLED","features":[353]},{"name":"ODS_FLAGS","features":[353]},{"name":"ODS_FOCUS","features":[353]},{"name":"ODS_GRAYED","features":[353]},{"name":"ODS_HOTLIGHT","features":[353]},{"name":"ODS_INACTIVE","features":[353]},{"name":"ODS_NOACCEL","features":[353]},{"name":"ODS_NOFOCUSRECT","features":[353]},{"name":"ODS_SELECTED","features":[353]},{"name":"ODT_BUTTON","features":[353]},{"name":"ODT_COMBOBOX","features":[353]},{"name":"ODT_HEADER","features":[353]},{"name":"ODT_LISTBOX","features":[353]},{"name":"ODT_LISTVIEW","features":[353]},{"name":"ODT_MENU","features":[353]},{"name":"ODT_STATIC","features":[353]},{"name":"ODT_TAB","features":[353]},{"name":"OFFSETTYPE","features":[353]},{"name":"OPENBOXSTATES","features":[353]},{"name":"OPEN_THEME_DATA_FLAGS","features":[353]},{"name":"OTD_FORCE_RECT_SIZING","features":[353]},{"name":"OTD_NONCLIENT","features":[353]},{"name":"OT_ABOVELASTBUTTON","features":[353]},{"name":"OT_BELOWLASTBUTTON","features":[353]},{"name":"OT_BOTTOMLEFT","features":[353]},{"name":"OT_BOTTOMMIDDLE","features":[353]},{"name":"OT_BOTTOMRIGHT","features":[353]},{"name":"OT_LEFTOFCAPTION","features":[353]},{"name":"OT_LEFTOFLASTBUTTON","features":[353]},{"name":"OT_MIDDLELEFT","features":[353]},{"name":"OT_MIDDLERIGHT","features":[353]},{"name":"OT_RIGHTOFCAPTION","features":[353]},{"name":"OT_RIGHTOFLASTBUTTON","features":[353]},{"name":"OT_TOPLEFT","features":[353]},{"name":"OT_TOPMIDDLE","features":[353]},{"name":"OT_TOPRIGHT","features":[353]},{"name":"OpenThemeData","features":[303,353]},{"name":"OpenThemeDataEx","features":[303,353]},{"name":"PAGEPARTS","features":[353]},{"name":"PAGESETUPDLGORD","features":[353]},{"name":"PAGESETUPDLGORDMOTIF","features":[353]},{"name":"PBBS_NORMAL","features":[353]},{"name":"PBBS_PARTIAL","features":[353]},{"name":"PBBVS_NORMAL","features":[353]},{"name":"PBBVS_PARTIAL","features":[353]},{"name":"PBDDS_DISABLED","features":[353]},{"name":"PBDDS_NORMAL","features":[353]},{"name":"PBFS_ERROR","features":[353]},{"name":"PBFS_NORMAL","features":[353]},{"name":"PBFS_PARTIAL","features":[353]},{"name":"PBFS_PAUSED","features":[353]},{"name":"PBFVS_ERROR","features":[353]},{"name":"PBFVS_NORMAL","features":[353]},{"name":"PBFVS_PARTIAL","features":[353]},{"name":"PBFVS_PAUSED","features":[353]},{"name":"PBM_DELTAPOS","features":[353]},{"name":"PBM_GETBARCOLOR","features":[353]},{"name":"PBM_GETBKCOLOR","features":[353]},{"name":"PBM_GETPOS","features":[353]},{"name":"PBM_GETRANGE","features":[353]},{"name":"PBM_GETSTATE","features":[353]},{"name":"PBM_GETSTEP","features":[353]},{"name":"PBM_SETBARCOLOR","features":[353]},{"name":"PBM_SETBKCOLOR","features":[353]},{"name":"PBM_SETMARQUEE","features":[353]},{"name":"PBM_SETPOS","features":[353]},{"name":"PBM_SETRANGE","features":[353]},{"name":"PBM_SETRANGE32","features":[353]},{"name":"PBM_SETSTATE","features":[353]},{"name":"PBM_SETSTEP","features":[353]},{"name":"PBM_STEPIT","features":[353]},{"name":"PBRANGE","features":[353]},{"name":"PBST_ERROR","features":[353]},{"name":"PBST_NORMAL","features":[353]},{"name":"PBST_PAUSED","features":[353]},{"name":"PBS_DEFAULTED","features":[353]},{"name":"PBS_DEFAULTED_ANIMATING","features":[353]},{"name":"PBS_DISABLED","features":[353]},{"name":"PBS_HOT","features":[353]},{"name":"PBS_MARQUEE","features":[353]},{"name":"PBS_NORMAL","features":[353]},{"name":"PBS_PRESSED","features":[353]},{"name":"PBS_SMOOTH","features":[353]},{"name":"PBS_SMOOTHREVERSE","features":[353]},{"name":"PBS_VERTICAL","features":[353]},{"name":"PFNDACOMPARE","features":[303,353]},{"name":"PFNDACOMPARECONST","features":[303,353]},{"name":"PFNDAENUMCALLBACK","features":[353]},{"name":"PFNDAENUMCALLBACKCONST","features":[353]},{"name":"PFNDPAMERGE","features":[303,353]},{"name":"PFNDPAMERGECONST","features":[303,353]},{"name":"PFNDPASTREAM","features":[354,353]},{"name":"PFNLVCOMPARE","features":[303,353]},{"name":"PFNLVGROUPCOMPARE","features":[353]},{"name":"PFNPROPSHEETCALLBACK","features":[303,353]},{"name":"PFNTVCOMPARE","features":[303,353]},{"name":"PFTASKDIALOGCALLBACK","features":[303,353]},{"name":"PGB_BOTTOMORRIGHT","features":[353]},{"name":"PGB_TOPORLEFT","features":[353]},{"name":"PGF_CALCHEIGHT","features":[353]},{"name":"PGF_CALCWIDTH","features":[353]},{"name":"PGF_DEPRESSED","features":[353]},{"name":"PGF_GRAYED","features":[353]},{"name":"PGF_HOT","features":[353]},{"name":"PGF_INVISIBLE","features":[353]},{"name":"PGF_NORMAL","features":[353]},{"name":"PGF_SCROLLDOWN","features":[353]},{"name":"PGF_SCROLLLEFT","features":[353]},{"name":"PGF_SCROLLRIGHT","features":[353]},{"name":"PGF_SCROLLUP","features":[353]},{"name":"PGK_CONTROL","features":[353]},{"name":"PGK_MENU","features":[353]},{"name":"PGK_NONE","features":[353]},{"name":"PGK_SHIFT","features":[353]},{"name":"PGM_FIRST","features":[353]},{"name":"PGM_FORWARDMOUSE","features":[353]},{"name":"PGM_GETBKCOLOR","features":[353]},{"name":"PGM_GETBORDER","features":[353]},{"name":"PGM_GETBUTTONSIZE","features":[353]},{"name":"PGM_GETBUTTONSTATE","features":[353]},{"name":"PGM_GETDROPTARGET","features":[353]},{"name":"PGM_GETPOS","features":[353]},{"name":"PGM_RECALCSIZE","features":[353]},{"name":"PGM_SETBKCOLOR","features":[353]},{"name":"PGM_SETBORDER","features":[353]},{"name":"PGM_SETBUTTONSIZE","features":[353]},{"name":"PGM_SETCHILD","features":[353]},{"name":"PGM_SETPOS","features":[353]},{"name":"PGM_SETSCROLLINFO","features":[353]},{"name":"PGN_CALCSIZE","features":[353]},{"name":"PGN_FIRST","features":[353]},{"name":"PGN_HOTITEMCHANGE","features":[353]},{"name":"PGN_LAST","features":[353]},{"name":"PGN_SCROLL","features":[353]},{"name":"PGRP_DOWN","features":[353]},{"name":"PGRP_DOWNHORZ","features":[353]},{"name":"PGRP_UP","features":[353]},{"name":"PGRP_UPHORZ","features":[353]},{"name":"PGS_AUTOSCROLL","features":[353]},{"name":"PGS_DRAGNDROP","features":[353]},{"name":"PGS_HORZ","features":[353]},{"name":"PGS_VERT","features":[353]},{"name":"POINTER_DEVICE_CURSOR_INFO","features":[353]},{"name":"POINTER_DEVICE_CURSOR_TYPE","features":[353]},{"name":"POINTER_DEVICE_CURSOR_TYPE_ERASER","features":[353]},{"name":"POINTER_DEVICE_CURSOR_TYPE_MAX","features":[353]},{"name":"POINTER_DEVICE_CURSOR_TYPE_TIP","features":[353]},{"name":"POINTER_DEVICE_CURSOR_TYPE_UNKNOWN","features":[353]},{"name":"POINTER_DEVICE_INFO","features":[303,314,353]},{"name":"POINTER_DEVICE_PROPERTY","features":[353]},{"name":"POINTER_DEVICE_TYPE","features":[353]},{"name":"POINTER_DEVICE_TYPE_EXTERNAL_PEN","features":[353]},{"name":"POINTER_DEVICE_TYPE_INTEGRATED_PEN","features":[353]},{"name":"POINTER_DEVICE_TYPE_MAX","features":[353]},{"name":"POINTER_DEVICE_TYPE_TOUCH","features":[353]},{"name":"POINTER_DEVICE_TYPE_TOUCH_PAD","features":[353]},{"name":"POINTER_FEEDBACK_DEFAULT","features":[353]},{"name":"POINTER_FEEDBACK_INDIRECT","features":[353]},{"name":"POINTER_FEEDBACK_MODE","features":[353]},{"name":"POINTER_FEEDBACK_NONE","features":[353]},{"name":"POINTER_TYPE_INFO","features":[303,353,615,365]},{"name":"POPUPCHECKBACKGROUNDSTATES","features":[353]},{"name":"POPUPCHECKSTATES","features":[353]},{"name":"POPUPITEMFOCUSABLESTATES","features":[353]},{"name":"POPUPITEMKBFOCUSSTATES","features":[353]},{"name":"POPUPITEMSTATES","features":[353]},{"name":"POPUPSUBMENUHCHOTSTATES","features":[353]},{"name":"POPUPSUBMENUSTATES","features":[353]},{"name":"PO_CLASS","features":[353]},{"name":"PO_GLOBAL","features":[353]},{"name":"PO_NOTFOUND","features":[353]},{"name":"PO_PART","features":[353]},{"name":"PO_STATE","features":[353]},{"name":"PP_BAR","features":[353]},{"name":"PP_BARVERT","features":[353]},{"name":"PP_CHUNK","features":[353]},{"name":"PP_CHUNKVERT","features":[353]},{"name":"PP_FILL","features":[353]},{"name":"PP_FILLVERT","features":[353]},{"name":"PP_MOVEOVERLAY","features":[353]},{"name":"PP_MOVEOVERLAYVERT","features":[353]},{"name":"PP_PULSEOVERLAY","features":[353]},{"name":"PP_PULSEOVERLAYVERT","features":[353]},{"name":"PP_TRANSPARENTBAR","features":[353]},{"name":"PP_TRANSPARENTBARVERT","features":[353]},{"name":"PRINTDLGEXORD","features":[353]},{"name":"PRINTDLGORD","features":[353]},{"name":"PRNSETUPDLGORD","features":[353]},{"name":"PROGRESSPARTS","features":[353]},{"name":"PROGRESS_CLASS","features":[353]},{"name":"PROGRESS_CLASSA","features":[353]},{"name":"PROGRESS_CLASSW","features":[353]},{"name":"PROPERTYORIGIN","features":[353]},{"name":"PROPSHEETHEADERA_V1","features":[303,314,353,365]},{"name":"PROPSHEETHEADERA_V2","features":[303,314,353,365]},{"name":"PROPSHEETHEADERW_V1","features":[303,314,353,365]},{"name":"PROPSHEETHEADERW_V2","features":[303,314,353,365]},{"name":"PROPSHEETPAGEA","features":[303,314,353,365]},{"name":"PROPSHEETPAGEA_V1","features":[303,314,353,365]},{"name":"PROPSHEETPAGEA_V2","features":[303,314,353,365]},{"name":"PROPSHEETPAGEA_V3","features":[303,314,353,365]},{"name":"PROPSHEETPAGEW","features":[303,314,353,365]},{"name":"PROPSHEETPAGEW_V1","features":[303,314,353,365]},{"name":"PROPSHEETPAGEW_V2","features":[303,314,353,365]},{"name":"PROPSHEETPAGEW_V3","features":[303,314,353,365]},{"name":"PROP_LG_CXDLG","features":[353]},{"name":"PROP_LG_CYDLG","features":[353]},{"name":"PROP_MED_CXDLG","features":[353]},{"name":"PROP_MED_CYDLG","features":[353]},{"name":"PROP_SM_CXDLG","features":[353]},{"name":"PROP_SM_CYDLG","features":[353]},{"name":"PSBTN_APPLYNOW","features":[353]},{"name":"PSBTN_BACK","features":[353]},{"name":"PSBTN_CANCEL","features":[353]},{"name":"PSBTN_FINISH","features":[353]},{"name":"PSBTN_HELP","features":[353]},{"name":"PSBTN_MAX","features":[353]},{"name":"PSBTN_NEXT","features":[353]},{"name":"PSBTN_OK","features":[353]},{"name":"PSCB_BUTTONPRESSED","features":[353]},{"name":"PSCB_INITIALIZED","features":[353]},{"name":"PSCB_PRECREATE","features":[353]},{"name":"PSHNOTIFY","features":[303,353]},{"name":"PSH_AEROWIZARD","features":[353]},{"name":"PSH_DEFAULT","features":[353]},{"name":"PSH_HASHELP","features":[353]},{"name":"PSH_HEADER","features":[353]},{"name":"PSH_HEADERBITMAP","features":[353]},{"name":"PSH_MODELESS","features":[353]},{"name":"PSH_NOAPPLYNOW","features":[353]},{"name":"PSH_NOCONTEXTHELP","features":[353]},{"name":"PSH_NOMARGIN","features":[353]},{"name":"PSH_PROPSHEETPAGE","features":[353]},{"name":"PSH_PROPTITLE","features":[353]},{"name":"PSH_RESIZABLE","features":[353]},{"name":"PSH_RTLREADING","features":[353]},{"name":"PSH_STRETCHWATERMARK","features":[353]},{"name":"PSH_USECALLBACK","features":[353]},{"name":"PSH_USEHBMHEADER","features":[353]},{"name":"PSH_USEHBMWATERMARK","features":[353]},{"name":"PSH_USEHICON","features":[353]},{"name":"PSH_USEHPLWATERMARK","features":[353]},{"name":"PSH_USEICONID","features":[353]},{"name":"PSH_USEPAGELANG","features":[353]},{"name":"PSH_USEPSTARTPAGE","features":[353]},{"name":"PSH_WATERMARK","features":[353]},{"name":"PSH_WIZARD","features":[353]},{"name":"PSH_WIZARD97","features":[353]},{"name":"PSH_WIZARDCONTEXTHELP","features":[353]},{"name":"PSH_WIZARDHASFINISH","features":[353]},{"name":"PSH_WIZARD_LITE","features":[353]},{"name":"PSM_ADDPAGE","features":[353]},{"name":"PSM_APPLY","features":[353]},{"name":"PSM_CANCELTOCLOSE","features":[353]},{"name":"PSM_CHANGED","features":[353]},{"name":"PSM_ENABLEWIZBUTTONS","features":[353]},{"name":"PSM_GETCURRENTPAGEHWND","features":[353]},{"name":"PSM_GETRESULT","features":[353]},{"name":"PSM_GETTABCONTROL","features":[353]},{"name":"PSM_HWNDTOINDEX","features":[353]},{"name":"PSM_IDTOINDEX","features":[353]},{"name":"PSM_INDEXTOHWND","features":[353]},{"name":"PSM_INDEXTOID","features":[353]},{"name":"PSM_INDEXTOPAGE","features":[353]},{"name":"PSM_INSERTPAGE","features":[353]},{"name":"PSM_ISDIALOGMESSAGE","features":[353]},{"name":"PSM_PAGETOINDEX","features":[353]},{"name":"PSM_PRESSBUTTON","features":[353]},{"name":"PSM_QUERYSIBLINGS","features":[353]},{"name":"PSM_REBOOTSYSTEM","features":[353]},{"name":"PSM_RECALCPAGESIZES","features":[353]},{"name":"PSM_REMOVEPAGE","features":[353]},{"name":"PSM_RESTARTWINDOWS","features":[353]},{"name":"PSM_SETBUTTONTEXT","features":[353]},{"name":"PSM_SETBUTTONTEXTW","features":[353]},{"name":"PSM_SETCURSEL","features":[353]},{"name":"PSM_SETCURSELID","features":[353]},{"name":"PSM_SETFINISHTEXT","features":[353]},{"name":"PSM_SETFINISHTEXTA","features":[353]},{"name":"PSM_SETFINISHTEXTW","features":[353]},{"name":"PSM_SETHEADERSUBTITLE","features":[353]},{"name":"PSM_SETHEADERSUBTITLEA","features":[353]},{"name":"PSM_SETHEADERSUBTITLEW","features":[353]},{"name":"PSM_SETHEADERTITLE","features":[353]},{"name":"PSM_SETHEADERTITLEA","features":[353]},{"name":"PSM_SETHEADERTITLEW","features":[353]},{"name":"PSM_SETNEXTTEXT","features":[353]},{"name":"PSM_SETNEXTTEXTW","features":[353]},{"name":"PSM_SETTITLE","features":[353]},{"name":"PSM_SETTITLEA","features":[353]},{"name":"PSM_SETTITLEW","features":[353]},{"name":"PSM_SETWIZBUTTONS","features":[353]},{"name":"PSM_SHOWWIZBUTTONS","features":[353]},{"name":"PSM_UNCHANGED","features":[353]},{"name":"PSNRET_INVALID","features":[353]},{"name":"PSNRET_INVALID_NOCHANGEPAGE","features":[353]},{"name":"PSNRET_MESSAGEHANDLED","features":[353]},{"name":"PSNRET_NOERROR","features":[353]},{"name":"PSN_APPLY","features":[353]},{"name":"PSN_FIRST","features":[353]},{"name":"PSN_GETOBJECT","features":[353]},{"name":"PSN_HELP","features":[353]},{"name":"PSN_KILLACTIVE","features":[353]},{"name":"PSN_LAST","features":[353]},{"name":"PSN_QUERYCANCEL","features":[353]},{"name":"PSN_QUERYINITIALFOCUS","features":[353]},{"name":"PSN_RESET","features":[353]},{"name":"PSN_SETACTIVE","features":[353]},{"name":"PSN_TRANSLATEACCELERATOR","features":[353]},{"name":"PSN_WIZBACK","features":[353]},{"name":"PSN_WIZFINISH","features":[353]},{"name":"PSN_WIZNEXT","features":[353]},{"name":"PSPCB_ADDREF","features":[353]},{"name":"PSPCB_CREATE","features":[353]},{"name":"PSPCB_MESSAGE","features":[353]},{"name":"PSPCB_RELEASE","features":[353]},{"name":"PSPCB_SI_INITDIALOG","features":[353]},{"name":"PSP_DEFAULT","features":[353]},{"name":"PSP_DLGINDIRECT","features":[353]},{"name":"PSP_HASHELP","features":[353]},{"name":"PSP_HIDEHEADER","features":[353]},{"name":"PSP_PREMATURE","features":[353]},{"name":"PSP_RTLREADING","features":[353]},{"name":"PSP_USECALLBACK","features":[353]},{"name":"PSP_USEFUSIONCONTEXT","features":[353]},{"name":"PSP_USEHEADERSUBTITLE","features":[353]},{"name":"PSP_USEHEADERTITLE","features":[353]},{"name":"PSP_USEHICON","features":[353]},{"name":"PSP_USEICONID","features":[353]},{"name":"PSP_USEREFPARENT","features":[353]},{"name":"PSP_USETITLE","features":[353]},{"name":"PSWIZBF_ELEVATIONREQUIRED","features":[353]},{"name":"PSWIZB_BACK","features":[353]},{"name":"PSWIZB_CANCEL","features":[353]},{"name":"PSWIZB_DISABLEDFINISH","features":[353]},{"name":"PSWIZB_FINISH","features":[353]},{"name":"PSWIZB_NEXT","features":[353]},{"name":"PSWIZB_RESTORE","features":[353]},{"name":"PSWIZB_SHOW","features":[353]},{"name":"PUSHBUTTONDROPDOWNSTATES","features":[353]},{"name":"PUSHBUTTONSTATES","features":[353]},{"name":"PackTouchHitTestingProximityEvaluation","features":[303,353]},{"name":"PropertySheetA","features":[303,314,353,365]},{"name":"PropertySheetW","features":[303,314,353,365]},{"name":"RADIOBUTTONSTATES","features":[353]},{"name":"RBAB_ADDBAND","features":[353]},{"name":"RBAB_AUTOSIZE","features":[353]},{"name":"RBBIM_BACKGROUND","features":[353]},{"name":"RBBIM_CHEVRONLOCATION","features":[353]},{"name":"RBBIM_CHEVRONSTATE","features":[353]},{"name":"RBBIM_CHILD","features":[353]},{"name":"RBBIM_CHILDSIZE","features":[353]},{"name":"RBBIM_COLORS","features":[353]},{"name":"RBBIM_HEADERSIZE","features":[353]},{"name":"RBBIM_ID","features":[353]},{"name":"RBBIM_IDEALSIZE","features":[353]},{"name":"RBBIM_IMAGE","features":[353]},{"name":"RBBIM_LPARAM","features":[353]},{"name":"RBBIM_SIZE","features":[353]},{"name":"RBBIM_STYLE","features":[353]},{"name":"RBBIM_TEXT","features":[353]},{"name":"RBBS_BREAK","features":[353]},{"name":"RBBS_CHILDEDGE","features":[353]},{"name":"RBBS_FIXEDBMP","features":[353]},{"name":"RBBS_FIXEDSIZE","features":[353]},{"name":"RBBS_GRIPPERALWAYS","features":[353]},{"name":"RBBS_HIDDEN","features":[353]},{"name":"RBBS_HIDETITLE","features":[353]},{"name":"RBBS_NOGRIPPER","features":[353]},{"name":"RBBS_NOVERT","features":[353]},{"name":"RBBS_TOPALIGN","features":[353]},{"name":"RBBS_USECHEVRON","features":[353]},{"name":"RBBS_VARIABLEHEIGHT","features":[353]},{"name":"RBHITTESTINFO","features":[303,353]},{"name":"RBHT_CAPTION","features":[353]},{"name":"RBHT_CHEVRON","features":[353]},{"name":"RBHT_CLIENT","features":[353]},{"name":"RBHT_GRABBER","features":[353]},{"name":"RBHT_NOWHERE","features":[353]},{"name":"RBHT_SPLITTER","features":[353]},{"name":"RBIM_IMAGELIST","features":[353]},{"name":"RBNM_ID","features":[353]},{"name":"RBNM_LPARAM","features":[353]},{"name":"RBNM_STYLE","features":[353]},{"name":"RBN_AUTOBREAK","features":[353]},{"name":"RBN_AUTOSIZE","features":[353]},{"name":"RBN_BEGINDRAG","features":[353]},{"name":"RBN_CHEVRONPUSHED","features":[353]},{"name":"RBN_CHILDSIZE","features":[353]},{"name":"RBN_DELETEDBAND","features":[353]},{"name":"RBN_DELETINGBAND","features":[353]},{"name":"RBN_ENDDRAG","features":[353]},{"name":"RBN_FIRST","features":[353]},{"name":"RBN_GETOBJECT","features":[353]},{"name":"RBN_HEIGHTCHANGE","features":[353]},{"name":"RBN_LAST","features":[353]},{"name":"RBN_LAYOUTCHANGED","features":[353]},{"name":"RBN_MINMAX","features":[353]},{"name":"RBN_SPLITTERDRAG","features":[353]},{"name":"RBSTR_CHANGERECT","features":[353]},{"name":"RBS_AUTOSIZE","features":[353]},{"name":"RBS_BANDBORDERS","features":[353]},{"name":"RBS_CHECKEDDISABLED","features":[353]},{"name":"RBS_CHECKEDHOT","features":[353]},{"name":"RBS_CHECKEDNORMAL","features":[353]},{"name":"RBS_CHECKEDPRESSED","features":[353]},{"name":"RBS_DBLCLKTOGGLE","features":[353]},{"name":"RBS_DISABLED","features":[353]},{"name":"RBS_FIXEDORDER","features":[353]},{"name":"RBS_HOT","features":[353]},{"name":"RBS_NORMAL","features":[353]},{"name":"RBS_PUSHED","features":[353]},{"name":"RBS_REGISTERDROP","features":[353]},{"name":"RBS_TOOLTIPS","features":[353]},{"name":"RBS_UNCHECKEDDISABLED","features":[353]},{"name":"RBS_UNCHECKEDHOT","features":[353]},{"name":"RBS_UNCHECKEDNORMAL","features":[353]},{"name":"RBS_UNCHECKEDPRESSED","features":[353]},{"name":"RBS_VARHEIGHT","features":[353]},{"name":"RBS_VERTICALGRIPPER","features":[353]},{"name":"RB_BEGINDRAG","features":[353]},{"name":"RB_DELETEBAND","features":[353]},{"name":"RB_DRAGMOVE","features":[353]},{"name":"RB_ENDDRAG","features":[353]},{"name":"RB_GETBANDBORDERS","features":[353]},{"name":"RB_GETBANDCOUNT","features":[353]},{"name":"RB_GETBANDINFO","features":[353]},{"name":"RB_GETBANDINFOA","features":[353]},{"name":"RB_GETBANDINFOW","features":[353]},{"name":"RB_GETBANDMARGINS","features":[353]},{"name":"RB_GETBARHEIGHT","features":[353]},{"name":"RB_GETBARINFO","features":[353]},{"name":"RB_GETBKCOLOR","features":[353]},{"name":"RB_GETCOLORSCHEME","features":[353]},{"name":"RB_GETDROPTARGET","features":[353]},{"name":"RB_GETEXTENDEDSTYLE","features":[353]},{"name":"RB_GETPALETTE","features":[353]},{"name":"RB_GETRECT","features":[353]},{"name":"RB_GETROWCOUNT","features":[353]},{"name":"RB_GETROWHEIGHT","features":[353]},{"name":"RB_GETTEXTCOLOR","features":[353]},{"name":"RB_GETTOOLTIPS","features":[353]},{"name":"RB_GETUNICODEFORMAT","features":[353]},{"name":"RB_HITTEST","features":[353]},{"name":"RB_IDTOINDEX","features":[353]},{"name":"RB_INSERTBAND","features":[353]},{"name":"RB_INSERTBANDA","features":[353]},{"name":"RB_INSERTBANDW","features":[353]},{"name":"RB_MAXIMIZEBAND","features":[353]},{"name":"RB_MINIMIZEBAND","features":[353]},{"name":"RB_MOVEBAND","features":[353]},{"name":"RB_PUSHCHEVRON","features":[353]},{"name":"RB_SETBANDINFO","features":[353]},{"name":"RB_SETBANDINFOA","features":[353]},{"name":"RB_SETBANDINFOW","features":[353]},{"name":"RB_SETBANDWIDTH","features":[353]},{"name":"RB_SETBARINFO","features":[353]},{"name":"RB_SETBKCOLOR","features":[353]},{"name":"RB_SETCOLORSCHEME","features":[353]},{"name":"RB_SETEXTENDEDSTYLE","features":[353]},{"name":"RB_SETPALETTE","features":[353]},{"name":"RB_SETPARENT","features":[353]},{"name":"RB_SETTEXTCOLOR","features":[353]},{"name":"RB_SETTOOLTIPS","features":[353]},{"name":"RB_SETUNICODEFORMAT","features":[353]},{"name":"RB_SETWINDOWTHEME","features":[353]},{"name":"RB_SHOWBAND","features":[353]},{"name":"RB_SIZETORECT","features":[353]},{"name":"READONLYSTATES","features":[353]},{"name":"REBARBANDINFOA","features":[303,314,353]},{"name":"REBARBANDINFOW","features":[303,314,353]},{"name":"REBARCLASSNAME","features":[353]},{"name":"REBARCLASSNAMEA","features":[353]},{"name":"REBARCLASSNAMEW","features":[353]},{"name":"REBARINFO","features":[353]},{"name":"REBARPARTS","features":[353]},{"name":"REPLACEDLGORD","features":[353]},{"name":"RESTOREBUTTONSTATES","features":[353]},{"name":"RP_BACKGROUND","features":[353]},{"name":"RP_BAND","features":[353]},{"name":"RP_CHEVRON","features":[353]},{"name":"RP_CHEVRONVERT","features":[353]},{"name":"RP_GRIPPER","features":[353]},{"name":"RP_GRIPPERVERT","features":[353]},{"name":"RP_SPLITTER","features":[353]},{"name":"RP_SPLITTERVERT","features":[353]},{"name":"RUNDLGORD","features":[353]},{"name":"RegisterPointerDeviceNotifications","features":[303,353]},{"name":"RegisterTouchHitTestingWindow","features":[303,353]},{"name":"SBARS_SIZEGRIP","features":[353]},{"name":"SBARS_TOOLTIPS","features":[353]},{"name":"SBN_FIRST","features":[353]},{"name":"SBN_LAST","features":[353]},{"name":"SBN_SIMPLEMODECHANGE","features":[353]},{"name":"SBP_ARROWBTN","features":[353]},{"name":"SBP_GRIPPERHORZ","features":[353]},{"name":"SBP_GRIPPERVERT","features":[353]},{"name":"SBP_LOWERTRACKHORZ","features":[353]},{"name":"SBP_LOWERTRACKVERT","features":[353]},{"name":"SBP_SIZEBOX","features":[353]},{"name":"SBP_SIZEBOXBKGND","features":[353]},{"name":"SBP_THUMBBTNHORZ","features":[353]},{"name":"SBP_THUMBBTNVERT","features":[353]},{"name":"SBP_UPPERTRACKHORZ","features":[353]},{"name":"SBP_UPPERTRACKVERT","features":[353]},{"name":"SBS_DISABLED","features":[353]},{"name":"SBS_HOT","features":[353]},{"name":"SBS_NORMAL","features":[353]},{"name":"SBS_PUSHED","features":[353]},{"name":"SBT_NOBORDERS","features":[353]},{"name":"SBT_NOTABPARSING","features":[353]},{"name":"SBT_OWNERDRAW","features":[353]},{"name":"SBT_POPOUT","features":[353]},{"name":"SBT_RTLREADING","features":[353]},{"name":"SBT_TOOLTIPS","features":[353]},{"name":"SB_GETBORDERS","features":[353]},{"name":"SB_GETICON","features":[353]},{"name":"SB_GETPARTS","features":[353]},{"name":"SB_GETRECT","features":[353]},{"name":"SB_GETTEXT","features":[353]},{"name":"SB_GETTEXTA","features":[353]},{"name":"SB_GETTEXTLENGTH","features":[353]},{"name":"SB_GETTEXTLENGTHA","features":[353]},{"name":"SB_GETTEXTLENGTHW","features":[353]},{"name":"SB_GETTEXTW","features":[353]},{"name":"SB_GETTIPTEXTA","features":[353]},{"name":"SB_GETTIPTEXTW","features":[353]},{"name":"SB_GETUNICODEFORMAT","features":[353]},{"name":"SB_ISSIMPLE","features":[353]},{"name":"SB_SETBKCOLOR","features":[353]},{"name":"SB_SETICON","features":[353]},{"name":"SB_SETMINHEIGHT","features":[353]},{"name":"SB_SETPARTS","features":[353]},{"name":"SB_SETTEXT","features":[353]},{"name":"SB_SETTEXTA","features":[353]},{"name":"SB_SETTEXTW","features":[353]},{"name":"SB_SETTIPTEXTA","features":[353]},{"name":"SB_SETTIPTEXTW","features":[353]},{"name":"SB_SETUNICODEFORMAT","features":[353]},{"name":"SB_SIMPLE","features":[353]},{"name":"SB_SIMPLEID","features":[353]},{"name":"SCBS_DISABLED","features":[353]},{"name":"SCBS_HOT","features":[353]},{"name":"SCBS_NORMAL","features":[353]},{"name":"SCBS_PUSHED","features":[353]},{"name":"SCRBS_DISABLED","features":[353]},{"name":"SCRBS_HOT","features":[353]},{"name":"SCRBS_HOVER","features":[353]},{"name":"SCRBS_NORMAL","features":[353]},{"name":"SCRBS_PRESSED","features":[353]},{"name":"SCROLLBARPARTS","features":[353]},{"name":"SCROLLBARSTYLESTATES","features":[353]},{"name":"SCS_ACTIVE","features":[353]},{"name":"SCS_DISABLED","features":[353]},{"name":"SCS_INACTIVE","features":[353]},{"name":"SECTIONTITLELINKSTATES","features":[353]},{"name":"SET_THEME_APP_PROPERTIES_FLAGS","features":[353]},{"name":"SFRB_ACTIVE","features":[353]},{"name":"SFRB_INACTIVE","features":[353]},{"name":"SFRL_ACTIVE","features":[353]},{"name":"SFRL_INACTIVE","features":[353]},{"name":"SFRR_ACTIVE","features":[353]},{"name":"SFRR_INACTIVE","features":[353]},{"name":"SHOWCALENDARBUTTONRIGHTSTATES","features":[353]},{"name":"SIZEBOXSTATES","features":[353]},{"name":"SIZINGTYPE","features":[353]},{"name":"SMALLCAPTIONSTATES","features":[353]},{"name":"SMALLCLOSEBUTTONSTATES","features":[353]},{"name":"SMALLFRAMEBOTTOMSTATES","features":[353]},{"name":"SMALLFRAMELEFTSTATES","features":[353]},{"name":"SMALLFRAMERIGHTSTATES","features":[353]},{"name":"SOFTWAREEXPLORERSTATES","features":[353]},{"name":"SPECIALGROUPCOLLAPSESTATES","features":[353]},{"name":"SPECIALGROUPEXPANDSTATES","features":[353]},{"name":"SPINPARTS","features":[353]},{"name":"SPLITSV_HOT","features":[353]},{"name":"SPLITSV_NORMAL","features":[353]},{"name":"SPLITSV_PRESSED","features":[353]},{"name":"SPLITS_HOT","features":[353]},{"name":"SPLITS_NORMAL","features":[353]},{"name":"SPLITS_PRESSED","features":[353]},{"name":"SPLITTERSTATES","features":[353]},{"name":"SPLITTERVERTSTATES","features":[353]},{"name":"SPLS_HOT","features":[353]},{"name":"SPLS_NORMAL","features":[353]},{"name":"SPLS_PRESSED","features":[353]},{"name":"SPMPT_DISABLED","features":[353]},{"name":"SPMPT_FOCUSED","features":[353]},{"name":"SPMPT_HOT","features":[353]},{"name":"SPMPT_NORMAL","features":[353]},{"name":"SPMPT_SELECTED","features":[353]},{"name":"SPNP_DOWN","features":[353]},{"name":"SPNP_DOWNHORZ","features":[353]},{"name":"SPNP_UP","features":[353]},{"name":"SPNP_UPHORZ","features":[353]},{"name":"SPOB_DISABLED","features":[353]},{"name":"SPOB_FOCUSED","features":[353]},{"name":"SPOB_HOT","features":[353]},{"name":"SPOB_NORMAL","features":[353]},{"name":"SPOB_SELECTED","features":[353]},{"name":"SPP_LOGOFF","features":[353]},{"name":"SPP_LOGOFFBUTTONS","features":[353]},{"name":"SPP_LOGOFFSPLITBUTTONDROPDOWN","features":[353]},{"name":"SPP_MOREPROGRAMS","features":[353]},{"name":"SPP_MOREPROGRAMSARROW","features":[353]},{"name":"SPP_MOREPROGRAMSARROWBACK","features":[353]},{"name":"SPP_MOREPROGRAMSTAB","features":[353]},{"name":"SPP_NSCHOST","features":[353]},{"name":"SPP_OPENBOX","features":[353]},{"name":"SPP_PLACESLIST","features":[353]},{"name":"SPP_PLACESLISTSEPARATOR","features":[353]},{"name":"SPP_PREVIEW","features":[353]},{"name":"SPP_PROGLIST","features":[353]},{"name":"SPP_PROGLISTSEPARATOR","features":[353]},{"name":"SPP_SEARCHVIEW","features":[353]},{"name":"SPP_SOFTWAREEXPLORER","features":[353]},{"name":"SPP_TOPMATCH","features":[353]},{"name":"SPP_USERPANE","features":[353]},{"name":"SPP_USERPICTURE","features":[353]},{"name":"SPSB_HOT","features":[353]},{"name":"SPSB_NORMAL","features":[353]},{"name":"SPSB_PRESSED","features":[353]},{"name":"SPSE_DISABLED","features":[353]},{"name":"SPSE_FOCUSED","features":[353]},{"name":"SPSE_HOT","features":[353]},{"name":"SPSE_NORMAL","features":[353]},{"name":"SPSE_SELECTED","features":[353]},{"name":"SPS_HOT","features":[353]},{"name":"SPS_NORMAL","features":[353]},{"name":"SPS_PRESSED","features":[353]},{"name":"SP_GRIPPER","features":[353]},{"name":"SP_GRIPPERPANE","features":[353]},{"name":"SP_PANE","features":[353]},{"name":"STANDARDSTATES","features":[353]},{"name":"STARTPANELPARTS","features":[353]},{"name":"STATE_SYSTEM_FOCUSABLE","features":[353]},{"name":"STATE_SYSTEM_INVISIBLE","features":[353]},{"name":"STATE_SYSTEM_OFFSCREEN","features":[353]},{"name":"STATE_SYSTEM_PRESSED","features":[353]},{"name":"STATE_SYSTEM_UNAVAILABLE","features":[353]},{"name":"STATICPARTS","features":[353]},{"name":"STATUSCLASSNAME","features":[353]},{"name":"STATUSCLASSNAMEA","features":[353]},{"name":"STATUSCLASSNAMEW","features":[353]},{"name":"STATUSPARTS","features":[353]},{"name":"STAT_TEXT","features":[353]},{"name":"STD_COPY","features":[353]},{"name":"STD_CUT","features":[353]},{"name":"STD_DELETE","features":[353]},{"name":"STD_FILENEW","features":[353]},{"name":"STD_FILEOPEN","features":[353]},{"name":"STD_FILESAVE","features":[353]},{"name":"STD_FIND","features":[353]},{"name":"STD_HELP","features":[353]},{"name":"STD_PASTE","features":[353]},{"name":"STD_PRINT","features":[353]},{"name":"STD_PRINTPRE","features":[353]},{"name":"STD_PROPERTIES","features":[353]},{"name":"STD_REDOW","features":[353]},{"name":"STD_REPLACE","features":[353]},{"name":"STD_UNDO","features":[353]},{"name":"ST_STRETCH","features":[353]},{"name":"ST_TILE","features":[353]},{"name":"ST_TRUESIZE","features":[353]},{"name":"SYSBUTTONSTATES","features":[353]},{"name":"SYSTEMCLOSEHCHOTSTATES","features":[353]},{"name":"SYSTEMCLOSESTATES","features":[353]},{"name":"SYSTEMMAXIMIZEHCHOTSTATES","features":[353]},{"name":"SYSTEMMAXIMIZESTATES","features":[353]},{"name":"SYSTEMMINIMIZEHCHOTSTATES","features":[353]},{"name":"SYSTEMMINIMIZESTATES","features":[353]},{"name":"SYSTEMRESTOREHCHOTSTATES","features":[353]},{"name":"SYSTEMRESTORESTATES","features":[353]},{"name":"SZB_HALFBOTTOMLEFTALIGN","features":[353]},{"name":"SZB_HALFBOTTOMRIGHTALIGN","features":[353]},{"name":"SZB_HALFTOPLEFTALIGN","features":[353]},{"name":"SZB_HALFTOPRIGHTALIGN","features":[353]},{"name":"SZB_LEFTALIGN","features":[353]},{"name":"SZB_RIGHTALIGN","features":[353]},{"name":"SZB_TOPLEFTALIGN","features":[353]},{"name":"SZB_TOPRIGHTALIGN","features":[353]},{"name":"SZ_THDOCPROP_AUTHOR","features":[353]},{"name":"SZ_THDOCPROP_CANONICALNAME","features":[353]},{"name":"SZ_THDOCPROP_DISPLAYNAME","features":[353]},{"name":"SZ_THDOCPROP_TOOLTIP","features":[353]},{"name":"SetScrollInfo","features":[303,353,365]},{"name":"SetScrollPos","features":[303,353,365]},{"name":"SetScrollRange","features":[303,353,365]},{"name":"SetThemeAppProperties","features":[353]},{"name":"SetWindowFeedbackSetting","features":[303,353]},{"name":"SetWindowTheme","features":[303,353]},{"name":"SetWindowThemeAttribute","features":[303,353]},{"name":"ShowHideMenuCtl","features":[303,353]},{"name":"ShowScrollBar","features":[303,353,365]},{"name":"Str_SetPtrW","features":[303,353]},{"name":"TABITEMBOTHEDGESTATES","features":[353]},{"name":"TABITEMLEFTEDGESTATES","features":[353]},{"name":"TABITEMRIGHTEDGESTATES","features":[353]},{"name":"TABITEMSTATES","features":[353]},{"name":"TABPARTS","features":[353]},{"name":"TABP_AEROWIZARDBODY","features":[353]},{"name":"TABP_BODY","features":[353]},{"name":"TABP_PANE","features":[353]},{"name":"TABP_TABITEM","features":[353]},{"name":"TABP_TABITEMBOTHEDGE","features":[353]},{"name":"TABP_TABITEMLEFTEDGE","features":[353]},{"name":"TABP_TABITEMRIGHTEDGE","features":[353]},{"name":"TABP_TOPTABITEM","features":[353]},{"name":"TABP_TOPTABITEMBOTHEDGE","features":[353]},{"name":"TABP_TOPTABITEMLEFTEDGE","features":[353]},{"name":"TABP_TOPTABITEMRIGHTEDGE","features":[353]},{"name":"TABSTATES","features":[353]},{"name":"TAB_CONTROL_ITEM_STATE","features":[353]},{"name":"TAPF_ALLOWCOLLECTION","features":[353]},{"name":"TAPF_HASBACKGROUND","features":[353]},{"name":"TAPF_HASPERSPECTIVE","features":[353]},{"name":"TAPF_HASSTAGGER","features":[353]},{"name":"TAPF_ISRTLAWARE","features":[353]},{"name":"TAPF_NONE","features":[353]},{"name":"TAP_FLAGS","features":[353]},{"name":"TAP_STAGGERDELAY","features":[353]},{"name":"TAP_STAGGERDELAYCAP","features":[353]},{"name":"TAP_STAGGERDELAYFACTOR","features":[353]},{"name":"TAP_TRANSFORMCOUNT","features":[353]},{"name":"TAP_ZORDER","features":[353]},{"name":"TASKBANDPARTS","features":[353]},{"name":"TASKBARPARTS","features":[353]},{"name":"TASKDIALOGCONFIG","features":[303,353,365]},{"name":"TASKDIALOGPARTS","features":[353]},{"name":"TASKDIALOG_BUTTON","features":[353]},{"name":"TASKDIALOG_COMMON_BUTTON_FLAGS","features":[353]},{"name":"TASKDIALOG_ELEMENTS","features":[353]},{"name":"TASKDIALOG_FLAGS","features":[353]},{"name":"TASKDIALOG_ICON_ELEMENTS","features":[353]},{"name":"TASKDIALOG_MESSAGES","features":[353]},{"name":"TASKDIALOG_NOTIFICATIONS","features":[353]},{"name":"TASKLINKSTATES","features":[353]},{"name":"TATF_HASINITIALVALUES","features":[353]},{"name":"TATF_HASORIGINVALUES","features":[353]},{"name":"TATF_NONE","features":[353]},{"name":"TATF_TARGETVALUES_USER","features":[353]},{"name":"TATT_CLIP","features":[353]},{"name":"TATT_OPACITY","features":[353]},{"name":"TATT_SCALE_2D","features":[353]},{"name":"TATT_TRANSLATE_2D","features":[353]},{"name":"TA_CUBIC_BEZIER","features":[353]},{"name":"TA_PROPERTY","features":[353]},{"name":"TA_PROPERTY_FLAG","features":[353]},{"name":"TA_TIMINGFUNCTION","features":[353]},{"name":"TA_TIMINGFUNCTION_TYPE","features":[353]},{"name":"TA_TRANSFORM","features":[353]},{"name":"TA_TRANSFORM_2D","features":[353]},{"name":"TA_TRANSFORM_CLIP","features":[353]},{"name":"TA_TRANSFORM_FLAG","features":[353]},{"name":"TA_TRANSFORM_OPACITY","features":[353]},{"name":"TA_TRANSFORM_TYPE","features":[353]},{"name":"TBADDBITMAP","features":[303,353]},{"name":"TBBF_LARGE","features":[353]},{"name":"TBBUTTON","features":[353]},{"name":"TBBUTTON","features":[353]},{"name":"TBBUTTONINFOA","features":[353]},{"name":"TBBUTTONINFOW","features":[353]},{"name":"TBBUTTONINFOW_MASK","features":[353]},{"name":"TBCDRF_BLENDICON","features":[353]},{"name":"TBCDRF_HILITEHOTTRACK","features":[353]},{"name":"TBCDRF_NOBACKGROUND","features":[353]},{"name":"TBCDRF_NOEDGES","features":[353]},{"name":"TBCDRF_NOETCHEDEFFECT","features":[353]},{"name":"TBCDRF_NOMARK","features":[353]},{"name":"TBCDRF_NOOFFSET","features":[353]},{"name":"TBCDRF_USECDCOLORS","features":[353]},{"name":"TBCD_CHANNEL","features":[353]},{"name":"TBCD_THUMB","features":[353]},{"name":"TBCD_TICS","features":[353]},{"name":"TBDDRET_DEFAULT","features":[353]},{"name":"TBDDRET_NODEFAULT","features":[353]},{"name":"TBDDRET_TREATPRESSED","features":[353]},{"name":"TBIF_BYINDEX","features":[353]},{"name":"TBIF_COMMAND","features":[353]},{"name":"TBIF_IMAGE","features":[353]},{"name":"TBIF_LPARAM","features":[353]},{"name":"TBIF_SIZE","features":[353]},{"name":"TBIF_STATE","features":[353]},{"name":"TBIF_STYLE","features":[353]},{"name":"TBIF_TEXT","features":[353]},{"name":"TBIMHT_AFTER","features":[353]},{"name":"TBIMHT_BACKGROUND","features":[353]},{"name":"TBIMHT_NONE","features":[353]},{"name":"TBINSERTMARK","features":[353]},{"name":"TBINSERTMARK_FLAGS","features":[353]},{"name":"TBMETRICS","features":[353]},{"name":"TBMF_BARPAD","features":[353]},{"name":"TBMF_BUTTONSPACING","features":[353]},{"name":"TBMF_PAD","features":[353]},{"name":"TBM_CLEARSEL","features":[353]},{"name":"TBM_CLEARTICS","features":[353]},{"name":"TBM_GETBUDDY","features":[353]},{"name":"TBM_GETCHANNELRECT","features":[353]},{"name":"TBM_GETLINESIZE","features":[353]},{"name":"TBM_GETNUMTICS","features":[353]},{"name":"TBM_GETPAGESIZE","features":[353]},{"name":"TBM_GETPTICS","features":[353]},{"name":"TBM_GETRANGEMAX","features":[353]},{"name":"TBM_GETRANGEMIN","features":[353]},{"name":"TBM_GETSELEND","features":[353]},{"name":"TBM_GETSELSTART","features":[353]},{"name":"TBM_GETTHUMBLENGTH","features":[353]},{"name":"TBM_GETTHUMBRECT","features":[353]},{"name":"TBM_GETTIC","features":[353]},{"name":"TBM_GETTICPOS","features":[353]},{"name":"TBM_GETTOOLTIPS","features":[353]},{"name":"TBM_GETUNICODEFORMAT","features":[353]},{"name":"TBM_SETBUDDY","features":[353]},{"name":"TBM_SETLINESIZE","features":[353]},{"name":"TBM_SETPAGESIZE","features":[353]},{"name":"TBM_SETPOS","features":[353]},{"name":"TBM_SETPOSNOTIFY","features":[353]},{"name":"TBM_SETRANGE","features":[353]},{"name":"TBM_SETRANGEMAX","features":[353]},{"name":"TBM_SETRANGEMIN","features":[353]},{"name":"TBM_SETSEL","features":[353]},{"name":"TBM_SETSELEND","features":[353]},{"name":"TBM_SETSELSTART","features":[353]},{"name":"TBM_SETTHUMBLENGTH","features":[353]},{"name":"TBM_SETTIC","features":[353]},{"name":"TBM_SETTICFREQ","features":[353]},{"name":"TBM_SETTIPSIDE","features":[353]},{"name":"TBM_SETTOOLTIPS","features":[353]},{"name":"TBM_SETUNICODEFORMAT","features":[353]},{"name":"TBNF_DI_SETITEM","features":[353]},{"name":"TBNF_IMAGE","features":[353]},{"name":"TBNF_TEXT","features":[353]},{"name":"TBNRF_ENDCUSTOMIZE","features":[353]},{"name":"TBNRF_HIDEHELP","features":[353]},{"name":"TBN_BEGINADJUST","features":[353]},{"name":"TBN_BEGINDRAG","features":[353]},{"name":"TBN_CUSTHELP","features":[353]},{"name":"TBN_DELETINGBUTTON","features":[353]},{"name":"TBN_DRAGOUT","features":[353]},{"name":"TBN_DRAGOVER","features":[353]},{"name":"TBN_DROPDOWN","features":[353]},{"name":"TBN_DUPACCELERATOR","features":[353]},{"name":"TBN_ENDADJUST","features":[353]},{"name":"TBN_ENDDRAG","features":[353]},{"name":"TBN_FIRST","features":[353]},{"name":"TBN_GETBUTTONINFO","features":[353]},{"name":"TBN_GETBUTTONINFOA","features":[353]},{"name":"TBN_GETBUTTONINFOW","features":[353]},{"name":"TBN_GETDISPINFO","features":[353]},{"name":"TBN_GETDISPINFOA","features":[353]},{"name":"TBN_GETDISPINFOW","features":[353]},{"name":"TBN_GETINFOTIP","features":[353]},{"name":"TBN_GETINFOTIPA","features":[353]},{"name":"TBN_GETINFOTIPW","features":[353]},{"name":"TBN_GETOBJECT","features":[353]},{"name":"TBN_HOTITEMCHANGE","features":[353]},{"name":"TBN_INITCUSTOMIZE","features":[353]},{"name":"TBN_LAST","features":[353]},{"name":"TBN_MAPACCELERATOR","features":[353]},{"name":"TBN_QUERYDELETE","features":[353]},{"name":"TBN_QUERYINSERT","features":[353]},{"name":"TBN_RESET","features":[353]},{"name":"TBN_RESTORE","features":[353]},{"name":"TBN_SAVE","features":[353]},{"name":"TBN_TOOLBARCHANGE","features":[353]},{"name":"TBN_WRAPACCELERATOR","features":[353]},{"name":"TBN_WRAPHOTITEM","features":[353]},{"name":"TBP_BACKGROUNDBOTTOM","features":[353]},{"name":"TBP_BACKGROUNDLEFT","features":[353]},{"name":"TBP_BACKGROUNDRIGHT","features":[353]},{"name":"TBP_BACKGROUNDTOP","features":[353]},{"name":"TBP_SIZINGBARBOTTOM","features":[353]},{"name":"TBP_SIZINGBARLEFT","features":[353]},{"name":"TBP_SIZINGBARRIGHT","features":[353]},{"name":"TBP_SIZINGBARTOP","features":[353]},{"name":"TBREPLACEBITMAP","features":[303,353]},{"name":"TBSAVEPARAMSA","features":[364,353]},{"name":"TBSAVEPARAMSW","features":[364,353]},{"name":"TBSTATE_CHECKED","features":[353]},{"name":"TBSTATE_ELLIPSES","features":[353]},{"name":"TBSTATE_ENABLED","features":[353]},{"name":"TBSTATE_HIDDEN","features":[353]},{"name":"TBSTATE_INDETERMINATE","features":[353]},{"name":"TBSTATE_MARKED","features":[353]},{"name":"TBSTATE_PRESSED","features":[353]},{"name":"TBSTATE_WRAP","features":[353]},{"name":"TBSTYLE_ALTDRAG","features":[353]},{"name":"TBSTYLE_AUTOSIZE","features":[353]},{"name":"TBSTYLE_BUTTON","features":[353]},{"name":"TBSTYLE_CHECK","features":[353]},{"name":"TBSTYLE_CUSTOMERASE","features":[353]},{"name":"TBSTYLE_DROPDOWN","features":[353]},{"name":"TBSTYLE_EX_DOUBLEBUFFER","features":[353]},{"name":"TBSTYLE_EX_DRAWDDARROWS","features":[353]},{"name":"TBSTYLE_EX_HIDECLIPPEDBUTTONS","features":[353]},{"name":"TBSTYLE_EX_MIXEDBUTTONS","features":[353]},{"name":"TBSTYLE_EX_MULTICOLUMN","features":[353]},{"name":"TBSTYLE_EX_VERTICAL","features":[353]},{"name":"TBSTYLE_FLAT","features":[353]},{"name":"TBSTYLE_GROUP","features":[353]},{"name":"TBSTYLE_LIST","features":[353]},{"name":"TBSTYLE_NOPREFIX","features":[353]},{"name":"TBSTYLE_REGISTERDROP","features":[353]},{"name":"TBSTYLE_SEP","features":[353]},{"name":"TBSTYLE_TOOLTIPS","features":[353]},{"name":"TBSTYLE_TRANSPARENT","features":[353]},{"name":"TBSTYLE_WRAPABLE","features":[353]},{"name":"TBS_AUTOTICKS","features":[353]},{"name":"TBS_BOTH","features":[353]},{"name":"TBS_BOTTOM","features":[353]},{"name":"TBS_DOWNISLEFT","features":[353]},{"name":"TBS_ENABLESELRANGE","features":[353]},{"name":"TBS_FIXEDLENGTH","features":[353]},{"name":"TBS_HORZ","features":[353]},{"name":"TBS_LEFT","features":[353]},{"name":"TBS_NOTHUMB","features":[353]},{"name":"TBS_NOTICKS","features":[353]},{"name":"TBS_NOTIFYBEFOREMOVE","features":[353]},{"name":"TBS_REVERSED","features":[353]},{"name":"TBS_RIGHT","features":[353]},{"name":"TBS_TOOLTIPS","features":[353]},{"name":"TBS_TOP","features":[353]},{"name":"TBS_TRANSPARENTBKGND","features":[353]},{"name":"TBS_VERT","features":[353]},{"name":"TBTS_BOTTOM","features":[353]},{"name":"TBTS_LEFT","features":[353]},{"name":"TBTS_RIGHT","features":[353]},{"name":"TBTS_TOP","features":[353]},{"name":"TB_ADDBITMAP","features":[353]},{"name":"TB_ADDBUTTONS","features":[353]},{"name":"TB_ADDBUTTONSA","features":[353]},{"name":"TB_ADDBUTTONSW","features":[353]},{"name":"TB_ADDSTRING","features":[353]},{"name":"TB_ADDSTRINGA","features":[353]},{"name":"TB_ADDSTRINGW","features":[353]},{"name":"TB_AUTOSIZE","features":[353]},{"name":"TB_BOTTOM","features":[353]},{"name":"TB_BUTTONCOUNT","features":[353]},{"name":"TB_BUTTONSTRUCTSIZE","features":[353]},{"name":"TB_CHANGEBITMAP","features":[353]},{"name":"TB_CHECKBUTTON","features":[353]},{"name":"TB_COMMANDTOINDEX","features":[353]},{"name":"TB_CUSTOMIZE","features":[353]},{"name":"TB_DELETEBUTTON","features":[353]},{"name":"TB_ENABLEBUTTON","features":[353]},{"name":"TB_ENDTRACK","features":[353]},{"name":"TB_GETANCHORHIGHLIGHT","features":[353]},{"name":"TB_GETBITMAP","features":[353]},{"name":"TB_GETBITMAPFLAGS","features":[353]},{"name":"TB_GETBUTTON","features":[353]},{"name":"TB_GETBUTTONINFO","features":[353]},{"name":"TB_GETBUTTONINFOA","features":[353]},{"name":"TB_GETBUTTONINFOW","features":[353]},{"name":"TB_GETBUTTONSIZE","features":[353]},{"name":"TB_GETBUTTONTEXT","features":[353]},{"name":"TB_GETBUTTONTEXTA","features":[353]},{"name":"TB_GETBUTTONTEXTW","features":[353]},{"name":"TB_GETCOLORSCHEME","features":[353]},{"name":"TB_GETDISABLEDIMAGELIST","features":[353]},{"name":"TB_GETEXTENDEDSTYLE","features":[353]},{"name":"TB_GETHOTIMAGELIST","features":[353]},{"name":"TB_GETHOTITEM","features":[353]},{"name":"TB_GETIDEALSIZE","features":[353]},{"name":"TB_GETIMAGELIST","features":[353]},{"name":"TB_GETIMAGELISTCOUNT","features":[353]},{"name":"TB_GETINSERTMARK","features":[353]},{"name":"TB_GETINSERTMARKCOLOR","features":[353]},{"name":"TB_GETITEMDROPDOWNRECT","features":[353]},{"name":"TB_GETITEMRECT","features":[353]},{"name":"TB_GETMAXSIZE","features":[353]},{"name":"TB_GETMETRICS","features":[353]},{"name":"TB_GETOBJECT","features":[353]},{"name":"TB_GETPADDING","features":[353]},{"name":"TB_GETPRESSEDIMAGELIST","features":[353]},{"name":"TB_GETRECT","features":[353]},{"name":"TB_GETROWS","features":[353]},{"name":"TB_GETSTATE","features":[353]},{"name":"TB_GETSTRING","features":[353]},{"name":"TB_GETSTRINGA","features":[353]},{"name":"TB_GETSTRINGW","features":[353]},{"name":"TB_GETSTYLE","features":[353]},{"name":"TB_GETTEXTROWS","features":[353]},{"name":"TB_GETTOOLTIPS","features":[353]},{"name":"TB_GETUNICODEFORMAT","features":[353]},{"name":"TB_HASACCELERATOR","features":[353]},{"name":"TB_HIDEBUTTON","features":[353]},{"name":"TB_HITTEST","features":[353]},{"name":"TB_INDETERMINATE","features":[353]},{"name":"TB_INSERTBUTTON","features":[353]},{"name":"TB_INSERTBUTTONA","features":[353]},{"name":"TB_INSERTBUTTONW","features":[353]},{"name":"TB_INSERTMARKHITTEST","features":[353]},{"name":"TB_ISBUTTONCHECKED","features":[353]},{"name":"TB_ISBUTTONENABLED","features":[353]},{"name":"TB_ISBUTTONHIDDEN","features":[353]},{"name":"TB_ISBUTTONHIGHLIGHTED","features":[353]},{"name":"TB_ISBUTTONINDETERMINATE","features":[353]},{"name":"TB_ISBUTTONPRESSED","features":[353]},{"name":"TB_LINEDOWN","features":[353]},{"name":"TB_LINEUP","features":[353]},{"name":"TB_LOADIMAGES","features":[353]},{"name":"TB_MAPACCELERATOR","features":[353]},{"name":"TB_MAPACCELERATORA","features":[353]},{"name":"TB_MAPACCELERATORW","features":[353]},{"name":"TB_MARKBUTTON","features":[353]},{"name":"TB_MOVEBUTTON","features":[353]},{"name":"TB_PAGEDOWN","features":[353]},{"name":"TB_PAGEUP","features":[353]},{"name":"TB_PRESSBUTTON","features":[353]},{"name":"TB_REPLACEBITMAP","features":[353]},{"name":"TB_SAVERESTORE","features":[353]},{"name":"TB_SAVERESTOREA","features":[353]},{"name":"TB_SAVERESTOREW","features":[353]},{"name":"TB_SETANCHORHIGHLIGHT","features":[353]},{"name":"TB_SETBITMAPSIZE","features":[353]},{"name":"TB_SETBOUNDINGSIZE","features":[353]},{"name":"TB_SETBUTTONINFO","features":[353]},{"name":"TB_SETBUTTONINFOA","features":[353]},{"name":"TB_SETBUTTONINFOW","features":[353]},{"name":"TB_SETBUTTONSIZE","features":[353]},{"name":"TB_SETBUTTONWIDTH","features":[353]},{"name":"TB_SETCMDID","features":[353]},{"name":"TB_SETCOLORSCHEME","features":[353]},{"name":"TB_SETDISABLEDIMAGELIST","features":[353]},{"name":"TB_SETDRAWTEXTFLAGS","features":[353]},{"name":"TB_SETEXTENDEDSTYLE","features":[353]},{"name":"TB_SETHOTIMAGELIST","features":[353]},{"name":"TB_SETHOTITEM","features":[353]},{"name":"TB_SETHOTITEM2","features":[353]},{"name":"TB_SETIMAGELIST","features":[353]},{"name":"TB_SETINDENT","features":[353]},{"name":"TB_SETINSERTMARK","features":[353]},{"name":"TB_SETINSERTMARKCOLOR","features":[353]},{"name":"TB_SETLISTGAP","features":[353]},{"name":"TB_SETMAXTEXTROWS","features":[353]},{"name":"TB_SETMETRICS","features":[353]},{"name":"TB_SETPADDING","features":[353]},{"name":"TB_SETPARENT","features":[353]},{"name":"TB_SETPRESSEDIMAGELIST","features":[353]},{"name":"TB_SETROWS","features":[353]},{"name":"TB_SETSTATE","features":[353]},{"name":"TB_SETSTYLE","features":[353]},{"name":"TB_SETTOOLTIPS","features":[353]},{"name":"TB_SETUNICODEFORMAT","features":[353]},{"name":"TB_SETWINDOWTHEME","features":[353]},{"name":"TB_THUMBPOSITION","features":[353]},{"name":"TB_THUMBTRACK","features":[353]},{"name":"TB_TOP","features":[353]},{"name":"TCHITTESTINFO","features":[303,353]},{"name":"TCHITTESTINFO_FLAGS","features":[353]},{"name":"TCHT_NOWHERE","features":[353]},{"name":"TCHT_ONITEM","features":[353]},{"name":"TCHT_ONITEMICON","features":[353]},{"name":"TCHT_ONITEMLABEL","features":[353]},{"name":"TCIF_IMAGE","features":[353]},{"name":"TCIF_PARAM","features":[353]},{"name":"TCIF_RTLREADING","features":[353]},{"name":"TCIF_STATE","features":[353]},{"name":"TCIF_TEXT","features":[353]},{"name":"TCIS_BUTTONPRESSED","features":[353]},{"name":"TCIS_HIGHLIGHTED","features":[353]},{"name":"TCITEMA","features":[303,353]},{"name":"TCITEMHEADERA","features":[353]},{"name":"TCITEMHEADERA_MASK","features":[353]},{"name":"TCITEMHEADERW","features":[353]},{"name":"TCITEMW","features":[303,353]},{"name":"TCM_ADJUSTRECT","features":[353]},{"name":"TCM_DELETEALLITEMS","features":[353]},{"name":"TCM_DELETEITEM","features":[353]},{"name":"TCM_DESELECTALL","features":[353]},{"name":"TCM_FIRST","features":[353]},{"name":"TCM_GETCURFOCUS","features":[353]},{"name":"TCM_GETCURSEL","features":[353]},{"name":"TCM_GETEXTENDEDSTYLE","features":[353]},{"name":"TCM_GETIMAGELIST","features":[353]},{"name":"TCM_GETITEM","features":[353]},{"name":"TCM_GETITEMA","features":[353]},{"name":"TCM_GETITEMCOUNT","features":[353]},{"name":"TCM_GETITEMRECT","features":[353]},{"name":"TCM_GETITEMW","features":[353]},{"name":"TCM_GETROWCOUNT","features":[353]},{"name":"TCM_GETTOOLTIPS","features":[353]},{"name":"TCM_GETUNICODEFORMAT","features":[353]},{"name":"TCM_HIGHLIGHTITEM","features":[353]},{"name":"TCM_HITTEST","features":[353]},{"name":"TCM_INSERTITEM","features":[353]},{"name":"TCM_INSERTITEMA","features":[353]},{"name":"TCM_INSERTITEMW","features":[353]},{"name":"TCM_REMOVEIMAGE","features":[353]},{"name":"TCM_SETCURFOCUS","features":[353]},{"name":"TCM_SETCURSEL","features":[353]},{"name":"TCM_SETEXTENDEDSTYLE","features":[353]},{"name":"TCM_SETIMAGELIST","features":[353]},{"name":"TCM_SETITEM","features":[353]},{"name":"TCM_SETITEMA","features":[353]},{"name":"TCM_SETITEMEXTRA","features":[353]},{"name":"TCM_SETITEMSIZE","features":[353]},{"name":"TCM_SETITEMW","features":[353]},{"name":"TCM_SETMINTABWIDTH","features":[353]},{"name":"TCM_SETPADDING","features":[353]},{"name":"TCM_SETTOOLTIPS","features":[353]},{"name":"TCM_SETUNICODEFORMAT","features":[353]},{"name":"TCN_FIRST","features":[353]},{"name":"TCN_FOCUSCHANGE","features":[353]},{"name":"TCN_GETOBJECT","features":[353]},{"name":"TCN_KEYDOWN","features":[353]},{"name":"TCN_LAST","features":[353]},{"name":"TCN_SELCHANGE","features":[353]},{"name":"TCN_SELCHANGING","features":[353]},{"name":"TCS_BOTTOM","features":[353]},{"name":"TCS_BUTTONS","features":[353]},{"name":"TCS_EX_FLATSEPARATORS","features":[353]},{"name":"TCS_EX_REGISTERDROP","features":[353]},{"name":"TCS_FIXEDWIDTH","features":[353]},{"name":"TCS_FLATBUTTONS","features":[353]},{"name":"TCS_FOCUSNEVER","features":[353]},{"name":"TCS_FOCUSONBUTTONDOWN","features":[353]},{"name":"TCS_FORCEICONLEFT","features":[353]},{"name":"TCS_FORCELABELLEFT","features":[353]},{"name":"TCS_HOTTRACK","features":[353]},{"name":"TCS_MULTILINE","features":[353]},{"name":"TCS_MULTISELECT","features":[353]},{"name":"TCS_OWNERDRAWFIXED","features":[353]},{"name":"TCS_RAGGEDRIGHT","features":[353]},{"name":"TCS_RIGHT","features":[353]},{"name":"TCS_RIGHTJUSTIFY","features":[353]},{"name":"TCS_SCROLLOPPOSITE","features":[353]},{"name":"TCS_SINGLELINE","features":[353]},{"name":"TCS_TABS","features":[353]},{"name":"TCS_TOOLTIPS","features":[353]},{"name":"TCS_VERTICAL","features":[353]},{"name":"TDCBF_ABORT_BUTTON","features":[353]},{"name":"TDCBF_CANCEL_BUTTON","features":[353]},{"name":"TDCBF_CLOSE_BUTTON","features":[353]},{"name":"TDCBF_CONTINUE_BUTTON","features":[353]},{"name":"TDCBF_HELP_BUTTON","features":[353]},{"name":"TDCBF_IGNORE_BUTTON","features":[353]},{"name":"TDCBF_NO_BUTTON","features":[353]},{"name":"TDCBF_OK_BUTTON","features":[353]},{"name":"TDCBF_RETRY_BUTTON","features":[353]},{"name":"TDCBF_TRYAGAIN_BUTTON","features":[353]},{"name":"TDCBF_YES_BUTTON","features":[353]},{"name":"TDE_CONTENT","features":[353]},{"name":"TDE_EXPANDED_INFORMATION","features":[353]},{"name":"TDE_FOOTER","features":[353]},{"name":"TDE_MAIN_INSTRUCTION","features":[353]},{"name":"TDF_ALLOW_DIALOG_CANCELLATION","features":[353]},{"name":"TDF_CALLBACK_TIMER","features":[353]},{"name":"TDF_CAN_BE_MINIMIZED","features":[353]},{"name":"TDF_ENABLE_HYPERLINKS","features":[353]},{"name":"TDF_EXPANDED_BY_DEFAULT","features":[353]},{"name":"TDF_EXPAND_FOOTER_AREA","features":[353]},{"name":"TDF_NO_DEFAULT_RADIO_BUTTON","features":[353]},{"name":"TDF_NO_SET_FOREGROUND","features":[353]},{"name":"TDF_POSITION_RELATIVE_TO_WINDOW","features":[353]},{"name":"TDF_RTL_LAYOUT","features":[353]},{"name":"TDF_SHOW_MARQUEE_PROGRESS_BAR","features":[353]},{"name":"TDF_SHOW_PROGRESS_BAR","features":[353]},{"name":"TDF_SIZE_TO_CONTENT","features":[353]},{"name":"TDF_USE_COMMAND_LINKS","features":[353]},{"name":"TDF_USE_COMMAND_LINKS_NO_ICON","features":[353]},{"name":"TDF_USE_HICON_FOOTER","features":[353]},{"name":"TDF_USE_HICON_MAIN","features":[353]},{"name":"TDF_VERIFICATION_FLAG_CHECKED","features":[353]},{"name":"TDIE_ICON_FOOTER","features":[353]},{"name":"TDIE_ICON_MAIN","features":[353]},{"name":"TDLGCPS_STANDALONE","features":[353]},{"name":"TDLGEBS_EXPANDEDDISABLED","features":[353]},{"name":"TDLGEBS_EXPANDEDHOVER","features":[353]},{"name":"TDLGEBS_EXPANDEDNORMAL","features":[353]},{"name":"TDLGEBS_EXPANDEDPRESSED","features":[353]},{"name":"TDLGEBS_HOVER","features":[353]},{"name":"TDLGEBS_NORMAL","features":[353]},{"name":"TDLGEBS_NORMALDISABLED","features":[353]},{"name":"TDLGEBS_PRESSED","features":[353]},{"name":"TDLG_BUTTONSECTION","features":[353]},{"name":"TDLG_BUTTONWRAPPER","features":[353]},{"name":"TDLG_COMMANDLINKPANE","features":[353]},{"name":"TDLG_CONTENTICON","features":[353]},{"name":"TDLG_CONTENTPANE","features":[353]},{"name":"TDLG_CONTROLPANE","features":[353]},{"name":"TDLG_EXPANDEDCONTENT","features":[353]},{"name":"TDLG_EXPANDEDFOOTERAREA","features":[353]},{"name":"TDLG_EXPANDOBUTTON","features":[353]},{"name":"TDLG_EXPANDOTEXT","features":[353]},{"name":"TDLG_FOOTNOTEAREA","features":[353]},{"name":"TDLG_FOOTNOTEPANE","features":[353]},{"name":"TDLG_FOOTNOTESEPARATOR","features":[353]},{"name":"TDLG_IMAGEALIGNMENT","features":[353]},{"name":"TDLG_MAINICON","features":[353]},{"name":"TDLG_MAININSTRUCTIONPANE","features":[353]},{"name":"TDLG_PRIMARYPANEL","features":[353]},{"name":"TDLG_PROGRESSBAR","features":[353]},{"name":"TDLG_RADIOBUTTONPANE","features":[353]},{"name":"TDLG_SECONDARYPANEL","features":[353]},{"name":"TDLG_VERIFICATIONTEXT","features":[353]},{"name":"TDM_CLICK_BUTTON","features":[353]},{"name":"TDM_CLICK_RADIO_BUTTON","features":[353]},{"name":"TDM_CLICK_VERIFICATION","features":[353]},{"name":"TDM_ENABLE_BUTTON","features":[353]},{"name":"TDM_ENABLE_RADIO_BUTTON","features":[353]},{"name":"TDM_NAVIGATE_PAGE","features":[353]},{"name":"TDM_SET_BUTTON_ELEVATION_REQUIRED_STATE","features":[353]},{"name":"TDM_SET_ELEMENT_TEXT","features":[353]},{"name":"TDM_SET_MARQUEE_PROGRESS_BAR","features":[353]},{"name":"TDM_SET_PROGRESS_BAR_MARQUEE","features":[353]},{"name":"TDM_SET_PROGRESS_BAR_POS","features":[353]},{"name":"TDM_SET_PROGRESS_BAR_RANGE","features":[353]},{"name":"TDM_SET_PROGRESS_BAR_STATE","features":[353]},{"name":"TDM_UPDATE_ELEMENT_TEXT","features":[353]},{"name":"TDM_UPDATE_ICON","features":[353]},{"name":"TDN_BUTTON_CLICKED","features":[353]},{"name":"TDN_CREATED","features":[353]},{"name":"TDN_DESTROYED","features":[353]},{"name":"TDN_DIALOG_CONSTRUCTED","features":[353]},{"name":"TDN_EXPANDO_BUTTON_CLICKED","features":[353]},{"name":"TDN_HELP","features":[353]},{"name":"TDN_HYPERLINK_CLICKED","features":[353]},{"name":"TDN_NAVIGATED","features":[353]},{"name":"TDN_RADIO_BUTTON_CLICKED","features":[353]},{"name":"TDN_TIMER","features":[353]},{"name":"TDN_VERIFICATION_CLICKED","features":[353]},{"name":"TDP_FLASHBUTTON","features":[353]},{"name":"TDP_FLASHBUTTONGROUPMENU","features":[353]},{"name":"TDP_GROUPCOUNT","features":[353]},{"name":"TD_ERROR_ICON","features":[353]},{"name":"TD_INFORMATION_ICON","features":[353]},{"name":"TD_SHIELD_ICON","features":[353]},{"name":"TD_WARNING_ICON","features":[353]},{"name":"TEXTSELECTIONGRIPPERPARTS","features":[353]},{"name":"TEXTSHADOWTYPE","features":[353]},{"name":"TEXTSTYLEPARTS","features":[353]},{"name":"TEXT_BODYTEXT","features":[353]},{"name":"TEXT_BODYTITLE","features":[353]},{"name":"TEXT_CONTROLLABEL","features":[353]},{"name":"TEXT_EXPANDED","features":[353]},{"name":"TEXT_HYPERLINKTEXT","features":[353]},{"name":"TEXT_INSTRUCTION","features":[353]},{"name":"TEXT_LABEL","features":[353]},{"name":"TEXT_MAININSTRUCTION","features":[353]},{"name":"TEXT_SECONDARYTEXT","features":[353]},{"name":"THEMESIZE","features":[353]},{"name":"THEME_PROPERTY_SYMBOL_ID","features":[353]},{"name":"THUMBBOTTOMSTATES","features":[353]},{"name":"THUMBLEFTSTATES","features":[353]},{"name":"THUMBRIGHTSTATES","features":[353]},{"name":"THUMBSTATES","features":[353]},{"name":"THUMBTOPSTATES","features":[353]},{"name":"THUMBVERTSTATES","features":[353]},{"name":"TIBES_DISABLED","features":[353]},{"name":"TIBES_FOCUSED","features":[353]},{"name":"TIBES_HOT","features":[353]},{"name":"TIBES_NORMAL","features":[353]},{"name":"TIBES_SELECTED","features":[353]},{"name":"TICSSTATES","features":[353]},{"name":"TICSVERTSTATES","features":[353]},{"name":"TILES_DISABLED","features":[353]},{"name":"TILES_FOCUSED","features":[353]},{"name":"TILES_HOT","features":[353]},{"name":"TILES_NORMAL","features":[353]},{"name":"TILES_SELECTED","features":[353]},{"name":"TIRES_DISABLED","features":[353]},{"name":"TIRES_FOCUSED","features":[353]},{"name":"TIRES_HOT","features":[353]},{"name":"TIRES_NORMAL","features":[353]},{"name":"TIRES_SELECTED","features":[353]},{"name":"TIS_DISABLED","features":[353]},{"name":"TIS_FOCUSED","features":[353]},{"name":"TIS_HOT","features":[353]},{"name":"TIS_NORMAL","features":[353]},{"name":"TIS_SELECTED","features":[353]},{"name":"TITLEBARSTATES","features":[353]},{"name":"TKP_THUMB","features":[353]},{"name":"TKP_THUMBBOTTOM","features":[353]},{"name":"TKP_THUMBLEFT","features":[353]},{"name":"TKP_THUMBRIGHT","features":[353]},{"name":"TKP_THUMBTOP","features":[353]},{"name":"TKP_THUMBVERT","features":[353]},{"name":"TKP_TICS","features":[353]},{"name":"TKP_TICSVERT","features":[353]},{"name":"TKP_TRACK","features":[353]},{"name":"TKP_TRACKVERT","features":[353]},{"name":"TKS_NORMAL","features":[353]},{"name":"TMTVS_RESERVEDHIGH","features":[353]},{"name":"TMTVS_RESERVEDLOW","features":[353]},{"name":"TMT_ACCENTCOLORHINT","features":[353]},{"name":"TMT_ACTIVEBORDER","features":[353]},{"name":"TMT_ACTIVECAPTION","features":[353]},{"name":"TMT_ALIAS","features":[353]},{"name":"TMT_ALPHALEVEL","features":[353]},{"name":"TMT_ALPHATHRESHOLD","features":[353]},{"name":"TMT_ALWAYSSHOWSIZINGBAR","features":[353]},{"name":"TMT_ANIMATIONBUTTONRECT","features":[353]},{"name":"TMT_ANIMATIONDELAY","features":[353]},{"name":"TMT_ANIMATIONDURATION","features":[353]},{"name":"TMT_APPWORKSPACE","features":[353]},{"name":"TMT_ATLASIMAGE","features":[353]},{"name":"TMT_ATLASINPUTIMAGE","features":[353]},{"name":"TMT_ATLASRECT","features":[353]},{"name":"TMT_AUTHOR","features":[353]},{"name":"TMT_AUTOSIZE","features":[353]},{"name":"TMT_BACKGROUND","features":[353]},{"name":"TMT_BGFILL","features":[353]},{"name":"TMT_BGTYPE","features":[353]},{"name":"TMT_BITMAPREF","features":[353]},{"name":"TMT_BLENDCOLOR","features":[353]},{"name":"TMT_BODYFONT","features":[353]},{"name":"TMT_BODYTEXTCOLOR","features":[353]},{"name":"TMT_BOOL","features":[353]},{"name":"TMT_BORDERCOLOR","features":[353]},{"name":"TMT_BORDERCOLORHINT","features":[353]},{"name":"TMT_BORDERONLY","features":[353]},{"name":"TMT_BORDERSIZE","features":[353]},{"name":"TMT_BORDERTYPE","features":[353]},{"name":"TMT_BTNFACE","features":[353]},{"name":"TMT_BTNHIGHLIGHT","features":[353]},{"name":"TMT_BTNSHADOW","features":[353]},{"name":"TMT_BTNTEXT","features":[353]},{"name":"TMT_BUTTONALTERNATEFACE","features":[353]},{"name":"TMT_CAPTIONBARHEIGHT","features":[353]},{"name":"TMT_CAPTIONBARWIDTH","features":[353]},{"name":"TMT_CAPTIONFONT","features":[353]},{"name":"TMT_CAPTIONMARGINS","features":[353]},{"name":"TMT_CAPTIONTEXT","features":[353]},{"name":"TMT_CHARSET","features":[353]},{"name":"TMT_CLASSICVALUE","features":[353]},{"name":"TMT_COLOR","features":[353]},{"name":"TMT_COLORIZATIONCOLOR","features":[353]},{"name":"TMT_COLORIZATIONOPACITY","features":[353]},{"name":"TMT_COLORSCHEMES","features":[353]},{"name":"TMT_COMPANY","features":[353]},{"name":"TMT_COMPOSITED","features":[353]},{"name":"TMT_COMPOSITEDOPAQUE","features":[353]},{"name":"TMT_CONTENTALIGNMENT","features":[353]},{"name":"TMT_CONTENTMARGINS","features":[353]},{"name":"TMT_COPYRIGHT","features":[353]},{"name":"TMT_CSSNAME","features":[353]},{"name":"TMT_CUSTOMSPLITRECT","features":[353]},{"name":"TMT_DEFAULTPANESIZE","features":[353]},{"name":"TMT_DESCRIPTION","features":[353]},{"name":"TMT_DIBDATA","features":[353]},{"name":"TMT_DISKSTREAM","features":[353]},{"name":"TMT_DISPLAYNAME","features":[353]},{"name":"TMT_DKSHADOW3D","features":[353]},{"name":"TMT_DRAWBORDERS","features":[353]},{"name":"TMT_EDGEDKSHADOWCOLOR","features":[353]},{"name":"TMT_EDGEFILLCOLOR","features":[353]},{"name":"TMT_EDGEHIGHLIGHTCOLOR","features":[353]},{"name":"TMT_EDGELIGHTCOLOR","features":[353]},{"name":"TMT_EDGESHADOWCOLOR","features":[353]},{"name":"TMT_ENUM","features":[353]},{"name":"TMT_FILENAME","features":[353]},{"name":"TMT_FILLCOLOR","features":[353]},{"name":"TMT_FILLCOLORHINT","features":[353]},{"name":"TMT_FILLTYPE","features":[353]},{"name":"TMT_FIRSTBOOL","features":[353]},{"name":"TMT_FIRSTCOLOR","features":[353]},{"name":"TMT_FIRSTFONT","features":[353]},{"name":"TMT_FIRSTINT","features":[353]},{"name":"TMT_FIRSTSIZE","features":[353]},{"name":"TMT_FIRSTSTRING","features":[353]},{"name":"TMT_FIRST_RCSTRING_NAME","features":[353]},{"name":"TMT_FLATMENUS","features":[353]},{"name":"TMT_FLOAT","features":[353]},{"name":"TMT_FLOATLIST","features":[353]},{"name":"TMT_FONT","features":[353]},{"name":"TMT_FRAMESPERSECOND","features":[353]},{"name":"TMT_FROMCOLOR1","features":[353]},{"name":"TMT_FROMCOLOR2","features":[353]},{"name":"TMT_FROMCOLOR3","features":[353]},{"name":"TMT_FROMCOLOR4","features":[353]},{"name":"TMT_FROMCOLOR5","features":[353]},{"name":"TMT_FROMHUE1","features":[353]},{"name":"TMT_FROMHUE2","features":[353]},{"name":"TMT_FROMHUE3","features":[353]},{"name":"TMT_FROMHUE4","features":[353]},{"name":"TMT_FROMHUE5","features":[353]},{"name":"TMT_GLOWCOLOR","features":[353]},{"name":"TMT_GLOWINTENSITY","features":[353]},{"name":"TMT_GLYPHDIBDATA","features":[353]},{"name":"TMT_GLYPHFONT","features":[353]},{"name":"TMT_GLYPHFONTSIZINGTYPE","features":[353]},{"name":"TMT_GLYPHIMAGEFILE","features":[353]},{"name":"TMT_GLYPHINDEX","features":[353]},{"name":"TMT_GLYPHONLY","features":[353]},{"name":"TMT_GLYPHTEXTCOLOR","features":[353]},{"name":"TMT_GLYPHTRANSPARENT","features":[353]},{"name":"TMT_GLYPHTRANSPARENTCOLOR","features":[353]},{"name":"TMT_GLYPHTYPE","features":[353]},{"name":"TMT_GRADIENTACTIVECAPTION","features":[353]},{"name":"TMT_GRADIENTCOLOR1","features":[353]},{"name":"TMT_GRADIENTCOLOR2","features":[353]},{"name":"TMT_GRADIENTCOLOR3","features":[353]},{"name":"TMT_GRADIENTCOLOR4","features":[353]},{"name":"TMT_GRADIENTCOLOR5","features":[353]},{"name":"TMT_GRADIENTINACTIVECAPTION","features":[353]},{"name":"TMT_GRADIENTRATIO1","features":[353]},{"name":"TMT_GRADIENTRATIO2","features":[353]},{"name":"TMT_GRADIENTRATIO3","features":[353]},{"name":"TMT_GRADIENTRATIO4","features":[353]},{"name":"TMT_GRADIENTRATIO5","features":[353]},{"name":"TMT_GRAYTEXT","features":[353]},{"name":"TMT_HALIGN","features":[353]},{"name":"TMT_HBITMAP","features":[353]},{"name":"TMT_HEADING1FONT","features":[353]},{"name":"TMT_HEADING1TEXTCOLOR","features":[353]},{"name":"TMT_HEADING2FONT","features":[353]},{"name":"TMT_HEADING2TEXTCOLOR","features":[353]},{"name":"TMT_HEIGHT","features":[353]},{"name":"TMT_HIGHLIGHT","features":[353]},{"name":"TMT_HIGHLIGHTTEXT","features":[353]},{"name":"TMT_HOTTRACKING","features":[353]},{"name":"TMT_ICONEFFECT","features":[353]},{"name":"TMT_ICONTITLEFONT","features":[353]},{"name":"TMT_IMAGECOUNT","features":[353]},{"name":"TMT_IMAGEFILE","features":[353]},{"name":"TMT_IMAGEFILE1","features":[353]},{"name":"TMT_IMAGEFILE2","features":[353]},{"name":"TMT_IMAGEFILE3","features":[353]},{"name":"TMT_IMAGEFILE4","features":[353]},{"name":"TMT_IMAGEFILE5","features":[353]},{"name":"TMT_IMAGEFILE6","features":[353]},{"name":"TMT_IMAGEFILE7","features":[353]},{"name":"TMT_IMAGELAYOUT","features":[353]},{"name":"TMT_IMAGESELECTTYPE","features":[353]},{"name":"TMT_INACTIVEBORDER","features":[353]},{"name":"TMT_INACTIVECAPTION","features":[353]},{"name":"TMT_INACTIVECAPTIONTEXT","features":[353]},{"name":"TMT_INFOBK","features":[353]},{"name":"TMT_INFOTEXT","features":[353]},{"name":"TMT_INT","features":[353]},{"name":"TMT_INTEGRALSIZING","features":[353]},{"name":"TMT_INTLIST","features":[353]},{"name":"TMT_LASTBOOL","features":[353]},{"name":"TMT_LASTCOLOR","features":[353]},{"name":"TMT_LASTFONT","features":[353]},{"name":"TMT_LASTINT","features":[353]},{"name":"TMT_LASTSIZE","features":[353]},{"name":"TMT_LASTSTRING","features":[353]},{"name":"TMT_LASTUPDATED","features":[353]},{"name":"TMT_LAST_RCSTRING_NAME","features":[353]},{"name":"TMT_LIGHT3D","features":[353]},{"name":"TMT_LOCALIZEDMIRRORIMAGE","features":[353]},{"name":"TMT_MARGINS","features":[353]},{"name":"TMT_MENU","features":[353]},{"name":"TMT_MENUBAR","features":[353]},{"name":"TMT_MENUBARHEIGHT","features":[353]},{"name":"TMT_MENUBARWIDTH","features":[353]},{"name":"TMT_MENUFONT","features":[353]},{"name":"TMT_MENUHILIGHT","features":[353]},{"name":"TMT_MENUTEXT","features":[353]},{"name":"TMT_MINCOLORDEPTH","features":[353]},{"name":"TMT_MINDPI1","features":[353]},{"name":"TMT_MINDPI2","features":[353]},{"name":"TMT_MINDPI3","features":[353]},{"name":"TMT_MINDPI4","features":[353]},{"name":"TMT_MINDPI5","features":[353]},{"name":"TMT_MINDPI6","features":[353]},{"name":"TMT_MINDPI7","features":[353]},{"name":"TMT_MINSIZE","features":[353]},{"name":"TMT_MINSIZE1","features":[353]},{"name":"TMT_MINSIZE2","features":[353]},{"name":"TMT_MINSIZE3","features":[353]},{"name":"TMT_MINSIZE4","features":[353]},{"name":"TMT_MINSIZE5","features":[353]},{"name":"TMT_MINSIZE6","features":[353]},{"name":"TMT_MINSIZE7","features":[353]},{"name":"TMT_MIRRORIMAGE","features":[353]},{"name":"TMT_MSGBOXFONT","features":[353]},{"name":"TMT_NAME","features":[353]},{"name":"TMT_NOETCHEDEFFECT","features":[353]},{"name":"TMT_NORMALSIZE","features":[353]},{"name":"TMT_OFFSET","features":[353]},{"name":"TMT_OFFSETTYPE","features":[353]},{"name":"TMT_OPACITY","features":[353]},{"name":"TMT_PADDEDBORDERWIDTH","features":[353]},{"name":"TMT_PIXELSPERFRAME","features":[353]},{"name":"TMT_POSITION","features":[353]},{"name":"TMT_PROGRESSCHUNKSIZE","features":[353]},{"name":"TMT_PROGRESSSPACESIZE","features":[353]},{"name":"TMT_RECT","features":[353]},{"name":"TMT_RESERVEDHIGH","features":[353]},{"name":"TMT_RESERVEDLOW","features":[353]},{"name":"TMT_ROUNDCORNERHEIGHT","features":[353]},{"name":"TMT_ROUNDCORNERWIDTH","features":[353]},{"name":"TMT_SATURATION","features":[353]},{"name":"TMT_SCALEDBACKGROUND","features":[353]},{"name":"TMT_SCROLLBAR","features":[353]},{"name":"TMT_SCROLLBARHEIGHT","features":[353]},{"name":"TMT_SCROLLBARWIDTH","features":[353]},{"name":"TMT_SHADOWCOLOR","features":[353]},{"name":"TMT_SIZE","features":[353]},{"name":"TMT_SIZES","features":[353]},{"name":"TMT_SIZINGBORDERWIDTH","features":[353]},{"name":"TMT_SIZINGMARGINS","features":[353]},{"name":"TMT_SIZINGTYPE","features":[353]},{"name":"TMT_SMALLCAPTIONFONT","features":[353]},{"name":"TMT_SMCAPTIONBARHEIGHT","features":[353]},{"name":"TMT_SMCAPTIONBARWIDTH","features":[353]},{"name":"TMT_SOURCEGROW","features":[353]},{"name":"TMT_SOURCESHRINK","features":[353]},{"name":"TMT_STATUSFONT","features":[353]},{"name":"TMT_STREAM","features":[353]},{"name":"TMT_STRING","features":[353]},{"name":"TMT_TEXT","features":[353]},{"name":"TMT_TEXTAPPLYOVERLAY","features":[353]},{"name":"TMT_TEXTBORDERCOLOR","features":[353]},{"name":"TMT_TEXTBORDERSIZE","features":[353]},{"name":"TMT_TEXTCOLOR","features":[353]},{"name":"TMT_TEXTCOLORHINT","features":[353]},{"name":"TMT_TEXTGLOW","features":[353]},{"name":"TMT_TEXTGLOWSIZE","features":[353]},{"name":"TMT_TEXTITALIC","features":[353]},{"name":"TMT_TEXTSHADOWCOLOR","features":[353]},{"name":"TMT_TEXTSHADOWOFFSET","features":[353]},{"name":"TMT_TEXTSHADOWTYPE","features":[353]},{"name":"TMT_TOCOLOR1","features":[353]},{"name":"TMT_TOCOLOR2","features":[353]},{"name":"TMT_TOCOLOR3","features":[353]},{"name":"TMT_TOCOLOR4","features":[353]},{"name":"TMT_TOCOLOR5","features":[353]},{"name":"TMT_TOHUE1","features":[353]},{"name":"TMT_TOHUE2","features":[353]},{"name":"TMT_TOHUE3","features":[353]},{"name":"TMT_TOHUE4","features":[353]},{"name":"TMT_TOHUE5","features":[353]},{"name":"TMT_TOOLTIP","features":[353]},{"name":"TMT_TRANSITIONDURATIONS","features":[353]},{"name":"TMT_TRANSPARENT","features":[353]},{"name":"TMT_TRANSPARENTCOLOR","features":[353]},{"name":"TMT_TRUESIZESCALINGTYPE","features":[353]},{"name":"TMT_TRUESIZESTRETCHMARK","features":[353]},{"name":"TMT_UNIFORMSIZING","features":[353]},{"name":"TMT_URL","features":[353]},{"name":"TMT_USERPICTURE","features":[353]},{"name":"TMT_VALIGN","features":[353]},{"name":"TMT_VERSION","features":[353]},{"name":"TMT_WIDTH","features":[353]},{"name":"TMT_WINDOW","features":[353]},{"name":"TMT_WINDOWFRAME","features":[353]},{"name":"TMT_WINDOWTEXT","features":[353]},{"name":"TMT_XMLNAME","features":[353]},{"name":"TNP_ANIMBACKGROUND","features":[353]},{"name":"TNP_BACKGROUND","features":[353]},{"name":"TOOLBARCLASSNAME","features":[353]},{"name":"TOOLBARCLASSNAMEA","features":[353]},{"name":"TOOLBARCLASSNAMEW","features":[353]},{"name":"TOOLBARPARTS","features":[353]},{"name":"TOOLBARSTYLESTATES","features":[353]},{"name":"TOOLTIPPARTS","features":[353]},{"name":"TOOLTIPS_CLASS","features":[353]},{"name":"TOOLTIPS_CLASSA","features":[353]},{"name":"TOOLTIPS_CLASSW","features":[353]},{"name":"TOOLTIP_FLAGS","features":[353]},{"name":"TOPTABITEMBOTHEDGESTATES","features":[353]},{"name":"TOPTABITEMLEFTEDGESTATES","features":[353]},{"name":"TOPTABITEMRIGHTEDGESTATES","features":[353]},{"name":"TOPTABITEMSTATES","features":[353]},{"name":"TOUCH_HIT_TESTING_INPUT","features":[303,353]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_EVALUATION","features":[303,353]},{"name":"TP_BUTTON","features":[353]},{"name":"TP_DROPDOWNBUTTON","features":[353]},{"name":"TP_DROPDOWNBUTTONGLYPH","features":[353]},{"name":"TP_SEPARATOR","features":[353]},{"name":"TP_SEPARATORVERT","features":[353]},{"name":"TP_SPLITBUTTON","features":[353]},{"name":"TP_SPLITBUTTONDROPDOWN","features":[353]},{"name":"TRACKBARPARTS","features":[353]},{"name":"TRACKBARSTYLESTATES","features":[353]},{"name":"TRACKBAR_CLASS","features":[353]},{"name":"TRACKBAR_CLASSA","features":[353]},{"name":"TRACKBAR_CLASSW","features":[353]},{"name":"TRACKSTATES","features":[353]},{"name":"TRACKVERTSTATES","features":[353]},{"name":"TRAILINGGRIDCELLSTATES","features":[353]},{"name":"TRAILINGGRIDCELLUPPERSTATES","features":[353]},{"name":"TRANSPARENTBACKGROUNDSTATES","features":[353]},{"name":"TRANSPARENTBARSTATES","features":[353]},{"name":"TRANSPARENTBARVERTSTATES","features":[353]},{"name":"TRAYNOTIFYPARTS","features":[353]},{"name":"TRBN_FIRST","features":[353]},{"name":"TRBN_LAST","features":[353]},{"name":"TRBN_THUMBPOSCHANGING","features":[353]},{"name":"TREEITEMSTATES","features":[353]},{"name":"TREEVIEWPARTS","features":[353]},{"name":"TREE_VIEW_ITEM_STATE_FLAGS","features":[353]},{"name":"TREIS_DISABLED","features":[353]},{"name":"TREIS_HOT","features":[353]},{"name":"TREIS_HOTSELECTED","features":[353]},{"name":"TREIS_NORMAL","features":[353]},{"name":"TREIS_SELECTED","features":[353]},{"name":"TREIS_SELECTEDNOTFOCUS","features":[353]},{"name":"TRS_NORMAL","features":[353]},{"name":"TRUESIZESCALINGTYPE","features":[353]},{"name":"TRVS_NORMAL","features":[353]},{"name":"TSGP_GRIPPER","features":[353]},{"name":"TSGS_CENTERED","features":[353]},{"name":"TSGS_NORMAL","features":[353]},{"name":"TSST_DPI","features":[353]},{"name":"TSST_NONE","features":[353]},{"name":"TSST_SIZE","features":[353]},{"name":"TSS_NORMAL","features":[353]},{"name":"TST_CONTINUOUS","features":[353]},{"name":"TST_NONE","features":[353]},{"name":"TST_SINGLE","features":[353]},{"name":"TSVS_NORMAL","features":[353]},{"name":"TS_CHECKED","features":[353]},{"name":"TS_CONTROLLABEL_DISABLED","features":[353]},{"name":"TS_CONTROLLABEL_NORMAL","features":[353]},{"name":"TS_DISABLED","features":[353]},{"name":"TS_DRAW","features":[353]},{"name":"TS_HOT","features":[353]},{"name":"TS_HOTCHECKED","features":[353]},{"name":"TS_HYPERLINK_DISABLED","features":[353]},{"name":"TS_HYPERLINK_HOT","features":[353]},{"name":"TS_HYPERLINK_NORMAL","features":[353]},{"name":"TS_HYPERLINK_PRESSED","features":[353]},{"name":"TS_MIN","features":[353]},{"name":"TS_NEARHOT","features":[353]},{"name":"TS_NORMAL","features":[353]},{"name":"TS_OTHERSIDEHOT","features":[353]},{"name":"TS_PRESSED","features":[353]},{"name":"TS_TRUE","features":[353]},{"name":"TTBSS_POINTINGDOWNCENTERED","features":[353]},{"name":"TTBSS_POINTINGDOWNLEFTWALL","features":[353]},{"name":"TTBSS_POINTINGDOWNRIGHTWALL","features":[353]},{"name":"TTBSS_POINTINGUPCENTERED","features":[353]},{"name":"TTBSS_POINTINGUPLEFTWALL","features":[353]},{"name":"TTBSS_POINTINGUPRIGHTWALL","features":[353]},{"name":"TTBS_LINK","features":[353]},{"name":"TTBS_NORMAL","features":[353]},{"name":"TTCS_HOT","features":[353]},{"name":"TTCS_NORMAL","features":[353]},{"name":"TTCS_PRESSED","features":[353]},{"name":"TTDT_AUTOMATIC","features":[353]},{"name":"TTDT_AUTOPOP","features":[353]},{"name":"TTDT_INITIAL","features":[353]},{"name":"TTDT_RESHOW","features":[353]},{"name":"TTFT_CUBIC_BEZIER","features":[353]},{"name":"TTFT_UNDEFINED","features":[353]},{"name":"TTF_ABSOLUTE","features":[353]},{"name":"TTF_CENTERTIP","features":[353]},{"name":"TTF_DI_SETITEM","features":[353]},{"name":"TTF_IDISHWND","features":[353]},{"name":"TTF_PARSELINKS","features":[353]},{"name":"TTF_RTLREADING","features":[353]},{"name":"TTF_SUBCLASS","features":[353]},{"name":"TTF_TRACK","features":[353]},{"name":"TTF_TRANSPARENT","features":[353]},{"name":"TTGETTITLE","features":[353]},{"name":"TTHITTESTINFOA","features":[303,353]},{"name":"TTHITTESTINFOW","features":[303,353]},{"name":"TTIBES_DISABLED","features":[353]},{"name":"TTIBES_FOCUSED","features":[353]},{"name":"TTIBES_HOT","features":[353]},{"name":"TTIBES_NORMAL","features":[353]},{"name":"TTIBES_SELECTED","features":[353]},{"name":"TTILES_DISABLED","features":[353]},{"name":"TTILES_FOCUSED","features":[353]},{"name":"TTILES_HOT","features":[353]},{"name":"TTILES_NORMAL","features":[353]},{"name":"TTILES_SELECTED","features":[353]},{"name":"TTIRES_DISABLED","features":[353]},{"name":"TTIRES_FOCUSED","features":[353]},{"name":"TTIRES_HOT","features":[353]},{"name":"TTIRES_NORMAL","features":[353]},{"name":"TTIRES_SELECTED","features":[353]},{"name":"TTIS_DISABLED","features":[353]},{"name":"TTIS_FOCUSED","features":[353]},{"name":"TTIS_HOT","features":[353]},{"name":"TTIS_NORMAL","features":[353]},{"name":"TTIS_SELECTED","features":[353]},{"name":"TTI_ERROR","features":[353]},{"name":"TTI_ERROR_LARGE","features":[353]},{"name":"TTI_INFO","features":[353]},{"name":"TTI_INFO_LARGE","features":[353]},{"name":"TTI_NONE","features":[353]},{"name":"TTI_WARNING","features":[353]},{"name":"TTI_WARNING_LARGE","features":[353]},{"name":"TTM_ACTIVATE","features":[353]},{"name":"TTM_ADDTOOL","features":[353]},{"name":"TTM_ADDTOOLA","features":[353]},{"name":"TTM_ADDTOOLW","features":[353]},{"name":"TTM_ADJUSTRECT","features":[353]},{"name":"TTM_DELTOOL","features":[353]},{"name":"TTM_DELTOOLA","features":[353]},{"name":"TTM_DELTOOLW","features":[353]},{"name":"TTM_ENUMTOOLS","features":[353]},{"name":"TTM_ENUMTOOLSA","features":[353]},{"name":"TTM_ENUMTOOLSW","features":[353]},{"name":"TTM_GETBUBBLESIZE","features":[353]},{"name":"TTM_GETCURRENTTOOL","features":[353]},{"name":"TTM_GETCURRENTTOOLA","features":[353]},{"name":"TTM_GETCURRENTTOOLW","features":[353]},{"name":"TTM_GETDELAYTIME","features":[353]},{"name":"TTM_GETMARGIN","features":[353]},{"name":"TTM_GETMAXTIPWIDTH","features":[353]},{"name":"TTM_GETTEXT","features":[353]},{"name":"TTM_GETTEXTA","features":[353]},{"name":"TTM_GETTEXTW","features":[353]},{"name":"TTM_GETTIPBKCOLOR","features":[353]},{"name":"TTM_GETTIPTEXTCOLOR","features":[353]},{"name":"TTM_GETTITLE","features":[353]},{"name":"TTM_GETTOOLCOUNT","features":[353]},{"name":"TTM_GETTOOLINFO","features":[353]},{"name":"TTM_GETTOOLINFOA","features":[353]},{"name":"TTM_GETTOOLINFOW","features":[353]},{"name":"TTM_HITTEST","features":[353]},{"name":"TTM_HITTESTA","features":[353]},{"name":"TTM_HITTESTW","features":[353]},{"name":"TTM_NEWTOOLRECT","features":[353]},{"name":"TTM_NEWTOOLRECTA","features":[353]},{"name":"TTM_NEWTOOLRECTW","features":[353]},{"name":"TTM_POP","features":[353]},{"name":"TTM_POPUP","features":[353]},{"name":"TTM_RELAYEVENT","features":[353]},{"name":"TTM_SETDELAYTIME","features":[353]},{"name":"TTM_SETMARGIN","features":[353]},{"name":"TTM_SETMAXTIPWIDTH","features":[353]},{"name":"TTM_SETTIPBKCOLOR","features":[353]},{"name":"TTM_SETTIPTEXTCOLOR","features":[353]},{"name":"TTM_SETTITLE","features":[353]},{"name":"TTM_SETTITLEA","features":[353]},{"name":"TTM_SETTITLEW","features":[353]},{"name":"TTM_SETTOOLINFO","features":[353]},{"name":"TTM_SETTOOLINFOA","features":[353]},{"name":"TTM_SETTOOLINFOW","features":[353]},{"name":"TTM_SETWINDOWTHEME","features":[353]},{"name":"TTM_TRACKACTIVATE","features":[353]},{"name":"TTM_TRACKPOSITION","features":[353]},{"name":"TTM_UPDATE","features":[353]},{"name":"TTM_UPDATETIPTEXT","features":[353]},{"name":"TTM_UPDATETIPTEXTA","features":[353]},{"name":"TTM_UPDATETIPTEXTW","features":[353]},{"name":"TTM_WINDOWFROMPOINT","features":[353]},{"name":"TTN_FIRST","features":[353]},{"name":"TTN_GETDISPINFO","features":[353]},{"name":"TTN_GETDISPINFOA","features":[353]},{"name":"TTN_GETDISPINFOW","features":[353]},{"name":"TTN_LAST","features":[353]},{"name":"TTN_LINKCLICK","features":[353]},{"name":"TTN_NEEDTEXT","features":[353]},{"name":"TTN_NEEDTEXTA","features":[353]},{"name":"TTN_NEEDTEXTW","features":[353]},{"name":"TTN_POP","features":[353]},{"name":"TTN_SHOW","features":[353]},{"name":"TTP_BALLOON","features":[353]},{"name":"TTP_BALLOONSTEM","features":[353]},{"name":"TTP_BALLOONTITLE","features":[353]},{"name":"TTP_CLOSE","features":[353]},{"name":"TTP_STANDARD","features":[353]},{"name":"TTP_STANDARDTITLE","features":[353]},{"name":"TTP_WRENCH","features":[353]},{"name":"TTSS_LINK","features":[353]},{"name":"TTSS_NORMAL","features":[353]},{"name":"TTS_ALWAYSTIP","features":[353]},{"name":"TTS_BALLOON","features":[353]},{"name":"TTS_CLOSE","features":[353]},{"name":"TTS_NOANIMATE","features":[353]},{"name":"TTS_NOFADE","features":[353]},{"name":"TTS_NOPREFIX","features":[353]},{"name":"TTS_USEVISUALSTYLE","features":[353]},{"name":"TTTOOLINFOA","features":[303,353]},{"name":"TTTOOLINFOW","features":[303,353]},{"name":"TTWS_HOT","features":[353]},{"name":"TTWS_NORMAL","features":[353]},{"name":"TTWS_PRESSED","features":[353]},{"name":"TUBS_DISABLED","features":[353]},{"name":"TUBS_FOCUSED","features":[353]},{"name":"TUBS_HOT","features":[353]},{"name":"TUBS_NORMAL","features":[353]},{"name":"TUBS_PRESSED","features":[353]},{"name":"TUS_DISABLED","features":[353]},{"name":"TUS_FOCUSED","features":[353]},{"name":"TUS_HOT","features":[353]},{"name":"TUS_NORMAL","features":[353]},{"name":"TUS_PRESSED","features":[353]},{"name":"TUTS_DISABLED","features":[353]},{"name":"TUTS_FOCUSED","features":[353]},{"name":"TUTS_HOT","features":[353]},{"name":"TUTS_NORMAL","features":[353]},{"name":"TUTS_PRESSED","features":[353]},{"name":"TUVLS_DISABLED","features":[353]},{"name":"TUVLS_FOCUSED","features":[353]},{"name":"TUVLS_HOT","features":[353]},{"name":"TUVLS_NORMAL","features":[353]},{"name":"TUVLS_PRESSED","features":[353]},{"name":"TUVRS_DISABLED","features":[353]},{"name":"TUVRS_FOCUSED","features":[353]},{"name":"TUVRS_HOT","features":[353]},{"name":"TUVRS_NORMAL","features":[353]},{"name":"TUVRS_PRESSED","features":[353]},{"name":"TUVS_DISABLED","features":[353]},{"name":"TUVS_FOCUSED","features":[353]},{"name":"TUVS_HOT","features":[353]},{"name":"TUVS_NORMAL","features":[353]},{"name":"TUVS_PRESSED","features":[353]},{"name":"TVCDRF_NOIMAGES","features":[353]},{"name":"TVC_BYKEYBOARD","features":[353]},{"name":"TVC_BYMOUSE","features":[353]},{"name":"TVC_UNKNOWN","features":[353]},{"name":"TVE_COLLAPSE","features":[353]},{"name":"TVE_COLLAPSERESET","features":[353]},{"name":"TVE_EXPAND","features":[353]},{"name":"TVE_EXPANDPARTIAL","features":[353]},{"name":"TVE_TOGGLE","features":[353]},{"name":"TVGETITEMPARTRECTINFO","features":[303,353]},{"name":"TVGIPR_BUTTON","features":[353]},{"name":"TVGN_CARET","features":[353]},{"name":"TVGN_CHILD","features":[353]},{"name":"TVGN_DROPHILITE","features":[353]},{"name":"TVGN_FIRSTVISIBLE","features":[353]},{"name":"TVGN_LASTVISIBLE","features":[353]},{"name":"TVGN_NEXT","features":[353]},{"name":"TVGN_NEXTSELECTED","features":[353]},{"name":"TVGN_NEXTVISIBLE","features":[353]},{"name":"TVGN_PARENT","features":[353]},{"name":"TVGN_PREVIOUS","features":[353]},{"name":"TVGN_PREVIOUSVISIBLE","features":[353]},{"name":"TVGN_ROOT","features":[353]},{"name":"TVHITTESTINFO","features":[303,353]},{"name":"TVHITTESTINFO_FLAGS","features":[353]},{"name":"TVHT_ABOVE","features":[353]},{"name":"TVHT_BELOW","features":[353]},{"name":"TVHT_NOWHERE","features":[353]},{"name":"TVHT_ONITEM","features":[353]},{"name":"TVHT_ONITEMBUTTON","features":[353]},{"name":"TVHT_ONITEMICON","features":[353]},{"name":"TVHT_ONITEMINDENT","features":[353]},{"name":"TVHT_ONITEMLABEL","features":[353]},{"name":"TVHT_ONITEMRIGHT","features":[353]},{"name":"TVHT_ONITEMSTATEICON","features":[353]},{"name":"TVHT_TOLEFT","features":[353]},{"name":"TVHT_TORIGHT","features":[353]},{"name":"TVIF_CHILDREN","features":[353]},{"name":"TVIF_DI_SETITEM","features":[353]},{"name":"TVIF_EXPANDEDIMAGE","features":[353]},{"name":"TVIF_HANDLE","features":[353]},{"name":"TVIF_IMAGE","features":[353]},{"name":"TVIF_INTEGRAL","features":[353]},{"name":"TVIF_PARAM","features":[353]},{"name":"TVIF_SELECTEDIMAGE","features":[353]},{"name":"TVIF_STATE","features":[353]},{"name":"TVIF_STATEEX","features":[353]},{"name":"TVIF_TEXT","features":[353]},{"name":"TVINSERTSTRUCTA","features":[303,353]},{"name":"TVINSERTSTRUCTW","features":[303,353]},{"name":"TVIS_BOLD","features":[353]},{"name":"TVIS_CUT","features":[353]},{"name":"TVIS_DROPHILITED","features":[353]},{"name":"TVIS_EXPANDED","features":[353]},{"name":"TVIS_EXPANDEDONCE","features":[353]},{"name":"TVIS_EXPANDPARTIAL","features":[353]},{"name":"TVIS_EX_ALL","features":[353]},{"name":"TVIS_EX_DISABLED","features":[353]},{"name":"TVIS_EX_FLAT","features":[353]},{"name":"TVIS_OVERLAYMASK","features":[353]},{"name":"TVIS_SELECTED","features":[353]},{"name":"TVIS_STATEIMAGEMASK","features":[353]},{"name":"TVIS_USERMASK","features":[353]},{"name":"TVITEMA","features":[303,353]},{"name":"TVITEMEXA","features":[303,353]},{"name":"TVITEMEXW","features":[303,353]},{"name":"TVITEMEXW_CHILDREN","features":[353]},{"name":"TVITEMPART","features":[353]},{"name":"TVITEMW","features":[303,353]},{"name":"TVITEM_MASK","features":[353]},{"name":"TVI_FIRST","features":[353]},{"name":"TVI_LAST","features":[353]},{"name":"TVI_ROOT","features":[353]},{"name":"TVI_SORT","features":[353]},{"name":"TVM_CREATEDRAGIMAGE","features":[353]},{"name":"TVM_DELETEITEM","features":[353]},{"name":"TVM_EDITLABEL","features":[353]},{"name":"TVM_EDITLABELA","features":[353]},{"name":"TVM_EDITLABELW","features":[353]},{"name":"TVM_ENDEDITLABELNOW","features":[353]},{"name":"TVM_ENSUREVISIBLE","features":[353]},{"name":"TVM_EXPAND","features":[353]},{"name":"TVM_GETBKCOLOR","features":[353]},{"name":"TVM_GETCOUNT","features":[353]},{"name":"TVM_GETEDITCONTROL","features":[353]},{"name":"TVM_GETEXTENDEDSTYLE","features":[353]},{"name":"TVM_GETIMAGELIST","features":[353]},{"name":"TVM_GETINDENT","features":[353]},{"name":"TVM_GETINSERTMARKCOLOR","features":[353]},{"name":"TVM_GETISEARCHSTRING","features":[353]},{"name":"TVM_GETISEARCHSTRINGA","features":[353]},{"name":"TVM_GETISEARCHSTRINGW","features":[353]},{"name":"TVM_GETITEM","features":[353]},{"name":"TVM_GETITEMA","features":[353]},{"name":"TVM_GETITEMHEIGHT","features":[353]},{"name":"TVM_GETITEMPARTRECT","features":[353]},{"name":"TVM_GETITEMRECT","features":[353]},{"name":"TVM_GETITEMSTATE","features":[353]},{"name":"TVM_GETITEMW","features":[353]},{"name":"TVM_GETLINECOLOR","features":[353]},{"name":"TVM_GETNEXTITEM","features":[353]},{"name":"TVM_GETSCROLLTIME","features":[353]},{"name":"TVM_GETSELECTEDCOUNT","features":[353]},{"name":"TVM_GETTEXTCOLOR","features":[353]},{"name":"TVM_GETTOOLTIPS","features":[353]},{"name":"TVM_GETUNICODEFORMAT","features":[353]},{"name":"TVM_GETVISIBLECOUNT","features":[353]},{"name":"TVM_HITTEST","features":[353]},{"name":"TVM_INSERTITEM","features":[353]},{"name":"TVM_INSERTITEMA","features":[353]},{"name":"TVM_INSERTITEMW","features":[353]},{"name":"TVM_MAPACCIDTOHTREEITEM","features":[353]},{"name":"TVM_MAPHTREEITEMTOACCID","features":[353]},{"name":"TVM_SELECTITEM","features":[353]},{"name":"TVM_SETAUTOSCROLLINFO","features":[353]},{"name":"TVM_SETBKCOLOR","features":[353]},{"name":"TVM_SETBORDER","features":[353]},{"name":"TVM_SETEXTENDEDSTYLE","features":[353]},{"name":"TVM_SETHOT","features":[353]},{"name":"TVM_SETIMAGELIST","features":[353]},{"name":"TVM_SETINDENT","features":[353]},{"name":"TVM_SETINSERTMARK","features":[353]},{"name":"TVM_SETINSERTMARKCOLOR","features":[353]},{"name":"TVM_SETITEM","features":[353]},{"name":"TVM_SETITEMA","features":[353]},{"name":"TVM_SETITEMHEIGHT","features":[353]},{"name":"TVM_SETITEMW","features":[353]},{"name":"TVM_SETLINECOLOR","features":[353]},{"name":"TVM_SETSCROLLTIME","features":[353]},{"name":"TVM_SETTEXTCOLOR","features":[353]},{"name":"TVM_SETTOOLTIPS","features":[353]},{"name":"TVM_SETUNICODEFORMAT","features":[353]},{"name":"TVM_SHOWINFOTIP","features":[353]},{"name":"TVM_SORTCHILDREN","features":[353]},{"name":"TVM_SORTCHILDRENCB","features":[353]},{"name":"TVNRET_DEFAULT","features":[353]},{"name":"TVNRET_SKIPNEW","features":[353]},{"name":"TVNRET_SKIPOLD","features":[353]},{"name":"TVN_ASYNCDRAW","features":[353]},{"name":"TVN_BEGINDRAG","features":[353]},{"name":"TVN_BEGINDRAGA","features":[353]},{"name":"TVN_BEGINDRAGW","features":[353]},{"name":"TVN_BEGINLABELEDIT","features":[353]},{"name":"TVN_BEGINLABELEDITA","features":[353]},{"name":"TVN_BEGINLABELEDITW","features":[353]},{"name":"TVN_BEGINRDRAG","features":[353]},{"name":"TVN_BEGINRDRAGA","features":[353]},{"name":"TVN_BEGINRDRAGW","features":[353]},{"name":"TVN_DELETEITEM","features":[353]},{"name":"TVN_DELETEITEMA","features":[353]},{"name":"TVN_DELETEITEMW","features":[353]},{"name":"TVN_ENDLABELEDIT","features":[353]},{"name":"TVN_ENDLABELEDITA","features":[353]},{"name":"TVN_ENDLABELEDITW","features":[353]},{"name":"TVN_FIRST","features":[353]},{"name":"TVN_GETDISPINFO","features":[353]},{"name":"TVN_GETDISPINFOA","features":[353]},{"name":"TVN_GETDISPINFOW","features":[353]},{"name":"TVN_GETINFOTIP","features":[353]},{"name":"TVN_GETINFOTIPA","features":[353]},{"name":"TVN_GETINFOTIPW","features":[353]},{"name":"TVN_ITEMCHANGED","features":[353]},{"name":"TVN_ITEMCHANGEDA","features":[353]},{"name":"TVN_ITEMCHANGEDW","features":[353]},{"name":"TVN_ITEMCHANGING","features":[353]},{"name":"TVN_ITEMCHANGINGA","features":[353]},{"name":"TVN_ITEMCHANGINGW","features":[353]},{"name":"TVN_ITEMEXPANDED","features":[353]},{"name":"TVN_ITEMEXPANDEDA","features":[353]},{"name":"TVN_ITEMEXPANDEDW","features":[353]},{"name":"TVN_ITEMEXPANDING","features":[353]},{"name":"TVN_ITEMEXPANDINGA","features":[353]},{"name":"TVN_ITEMEXPANDINGW","features":[353]},{"name":"TVN_KEYDOWN","features":[353]},{"name":"TVN_LAST","features":[353]},{"name":"TVN_SELCHANGED","features":[353]},{"name":"TVN_SELCHANGEDA","features":[353]},{"name":"TVN_SELCHANGEDW","features":[353]},{"name":"TVN_SELCHANGING","features":[353]},{"name":"TVN_SELCHANGINGA","features":[353]},{"name":"TVN_SELCHANGINGW","features":[353]},{"name":"TVN_SETDISPINFO","features":[353]},{"name":"TVN_SETDISPINFOA","features":[353]},{"name":"TVN_SETDISPINFOW","features":[353]},{"name":"TVN_SINGLEEXPAND","features":[353]},{"name":"TVP_BRANCH","features":[353]},{"name":"TVP_GLYPH","features":[353]},{"name":"TVP_HOTGLYPH","features":[353]},{"name":"TVP_TREEITEM","features":[353]},{"name":"TVSBF_XBORDER","features":[353]},{"name":"TVSBF_YBORDER","features":[353]},{"name":"TVSIL_NORMAL","features":[353]},{"name":"TVSIL_STATE","features":[353]},{"name":"TVSI_NOSINGLEEXPAND","features":[353]},{"name":"TVSORTCB","features":[303,353]},{"name":"TVS_CHECKBOXES","features":[353]},{"name":"TVS_DISABLEDRAGDROP","features":[353]},{"name":"TVS_EDITLABELS","features":[353]},{"name":"TVS_EX_AUTOHSCROLL","features":[353]},{"name":"TVS_EX_DIMMEDCHECKBOXES","features":[353]},{"name":"TVS_EX_DOUBLEBUFFER","features":[353]},{"name":"TVS_EX_DRAWIMAGEASYNC","features":[353]},{"name":"TVS_EX_EXCLUSIONCHECKBOXES","features":[353]},{"name":"TVS_EX_FADEINOUTEXPANDOS","features":[353]},{"name":"TVS_EX_MULTISELECT","features":[353]},{"name":"TVS_EX_NOINDENTSTATE","features":[353]},{"name":"TVS_EX_NOSINGLECOLLAPSE","features":[353]},{"name":"TVS_EX_PARTIALCHECKBOXES","features":[353]},{"name":"TVS_EX_RICHTOOLTIP","features":[353]},{"name":"TVS_FULLROWSELECT","features":[353]},{"name":"TVS_HASBUTTONS","features":[353]},{"name":"TVS_HASLINES","features":[353]},{"name":"TVS_INFOTIP","features":[353]},{"name":"TVS_LINESATROOT","features":[353]},{"name":"TVS_NOHSCROLL","features":[353]},{"name":"TVS_NONEVENHEIGHT","features":[353]},{"name":"TVS_NOSCROLL","features":[353]},{"name":"TVS_NOTOOLTIPS","features":[353]},{"name":"TVS_RTLREADING","features":[353]},{"name":"TVS_SHOWSELALWAYS","features":[353]},{"name":"TVS_SINGLEEXPAND","features":[353]},{"name":"TVS_TRACKSELECT","features":[353]},{"name":"TV_FIRST","features":[353]},{"name":"TaskDialog","features":[303,353]},{"name":"TaskDialogIndirect","features":[303,353,365]},{"name":"UDACCEL","features":[353]},{"name":"UDM_GETACCEL","features":[353]},{"name":"UDM_GETBASE","features":[353]},{"name":"UDM_GETBUDDY","features":[353]},{"name":"UDM_GETPOS","features":[353]},{"name":"UDM_GETPOS32","features":[353]},{"name":"UDM_GETRANGE","features":[353]},{"name":"UDM_GETRANGE32","features":[353]},{"name":"UDM_GETUNICODEFORMAT","features":[353]},{"name":"UDM_SETACCEL","features":[353]},{"name":"UDM_SETBASE","features":[353]},{"name":"UDM_SETBUDDY","features":[353]},{"name":"UDM_SETPOS","features":[353]},{"name":"UDM_SETPOS32","features":[353]},{"name":"UDM_SETRANGE","features":[353]},{"name":"UDM_SETRANGE32","features":[353]},{"name":"UDM_SETUNICODEFORMAT","features":[353]},{"name":"UDN_DELTAPOS","features":[353]},{"name":"UDN_FIRST","features":[353]},{"name":"UDN_LAST","features":[353]},{"name":"UDS_ALIGNLEFT","features":[353]},{"name":"UDS_ALIGNRIGHT","features":[353]},{"name":"UDS_ARROWKEYS","features":[353]},{"name":"UDS_AUTOBUDDY","features":[353]},{"name":"UDS_HORZ","features":[353]},{"name":"UDS_HOTTRACK","features":[353]},{"name":"UDS_NOTHOUSANDS","features":[353]},{"name":"UDS_SETBUDDYINT","features":[353]},{"name":"UDS_WRAP","features":[353]},{"name":"UD_MAXVAL","features":[353]},{"name":"UPDATEMETADATASTATES","features":[353]},{"name":"UPDOWN_CLASS","features":[353]},{"name":"UPDOWN_CLASSA","features":[353]},{"name":"UPDOWN_CLASSW","features":[353]},{"name":"UPHORZSTATES","features":[353]},{"name":"UPHZS_DISABLED","features":[353]},{"name":"UPHZS_HOT","features":[353]},{"name":"UPHZS_NORMAL","features":[353]},{"name":"UPHZS_PRESSED","features":[353]},{"name":"UPSTATES","features":[353]},{"name":"UPS_DISABLED","features":[353]},{"name":"UPS_HOT","features":[353]},{"name":"UPS_NORMAL","features":[353]},{"name":"UPS_PRESSED","features":[353]},{"name":"USAGE_PROPERTIES","features":[353]},{"name":"USERTILEPARTS","features":[353]},{"name":"UTP_HOVERBACKGROUND","features":[353]},{"name":"UTP_STROKEBACKGROUND","features":[353]},{"name":"UTS_HOT","features":[353]},{"name":"UTS_NORMAL","features":[353]},{"name":"UTS_PRESSED","features":[353]},{"name":"UninitializeFlatSB","features":[303,353]},{"name":"UpdatePanningFeedback","features":[303,353]},{"name":"VALIDBITS","features":[353]},{"name":"VALIGN","features":[353]},{"name":"VA_BOTTOM","features":[353]},{"name":"VA_CENTER","features":[353]},{"name":"VA_TOP","features":[353]},{"name":"VERTSCROLLSTATES","features":[353]},{"name":"VERTTHUMBSTATES","features":[353]},{"name":"VIEW_DETAILS","features":[353]},{"name":"VIEW_LARGEICONS","features":[353]},{"name":"VIEW_LIST","features":[353]},{"name":"VIEW_NETCONNECT","features":[353]},{"name":"VIEW_NETDISCONNECT","features":[353]},{"name":"VIEW_NEWFOLDER","features":[353]},{"name":"VIEW_PARENTFOLDER","features":[353]},{"name":"VIEW_SMALLICONS","features":[353]},{"name":"VIEW_SORTDATE","features":[353]},{"name":"VIEW_SORTNAME","features":[353]},{"name":"VIEW_SORTSIZE","features":[353]},{"name":"VIEW_SORTTYPE","features":[353]},{"name":"VIEW_VIEWMENU","features":[353]},{"name":"VSCLASS_AEROWIZARD","features":[353]},{"name":"VSCLASS_AEROWIZARDSTYLE","features":[353]},{"name":"VSCLASS_BUTTON","features":[353]},{"name":"VSCLASS_BUTTONSTYLE","features":[353]},{"name":"VSCLASS_CLOCK","features":[353]},{"name":"VSCLASS_COMBOBOX","features":[353]},{"name":"VSCLASS_COMBOBOXSTYLE","features":[353]},{"name":"VSCLASS_COMMUNICATIONS","features":[353]},{"name":"VSCLASS_COMMUNICATIONSSTYLE","features":[353]},{"name":"VSCLASS_CONTROLPANEL","features":[353]},{"name":"VSCLASS_CONTROLPANELSTYLE","features":[353]},{"name":"VSCLASS_DATEPICKER","features":[353]},{"name":"VSCLASS_DATEPICKERSTYLE","features":[353]},{"name":"VSCLASS_DRAGDROP","features":[353]},{"name":"VSCLASS_DRAGDROPSTYLE","features":[353]},{"name":"VSCLASS_EDIT","features":[353]},{"name":"VSCLASS_EDITSTYLE","features":[353]},{"name":"VSCLASS_EMPTYMARKUP","features":[353]},{"name":"VSCLASS_EXPLORERBAR","features":[353]},{"name":"VSCLASS_EXPLORERBARSTYLE","features":[353]},{"name":"VSCLASS_FLYOUT","features":[353]},{"name":"VSCLASS_FLYOUTSTYLE","features":[353]},{"name":"VSCLASS_HEADER","features":[353]},{"name":"VSCLASS_HEADERSTYLE","features":[353]},{"name":"VSCLASS_LINK","features":[353]},{"name":"VSCLASS_LISTBOX","features":[353]},{"name":"VSCLASS_LISTBOXSTYLE","features":[353]},{"name":"VSCLASS_LISTVIEW","features":[353]},{"name":"VSCLASS_LISTVIEWSTYLE","features":[353]},{"name":"VSCLASS_MENU","features":[353]},{"name":"VSCLASS_MENUBAND","features":[353]},{"name":"VSCLASS_MENUSTYLE","features":[353]},{"name":"VSCLASS_MONTHCAL","features":[353]},{"name":"VSCLASS_NAVIGATION","features":[353]},{"name":"VSCLASS_PAGE","features":[353]},{"name":"VSCLASS_PROGRESS","features":[353]},{"name":"VSCLASS_PROGRESSSTYLE","features":[353]},{"name":"VSCLASS_REBAR","features":[353]},{"name":"VSCLASS_REBARSTYLE","features":[353]},{"name":"VSCLASS_SCROLLBAR","features":[353]},{"name":"VSCLASS_SCROLLBARSTYLE","features":[353]},{"name":"VSCLASS_SPIN","features":[353]},{"name":"VSCLASS_SPINSTYLE","features":[353]},{"name":"VSCLASS_STARTPANEL","features":[353]},{"name":"VSCLASS_STATIC","features":[353]},{"name":"VSCLASS_STATUS","features":[353]},{"name":"VSCLASS_STATUSSTYLE","features":[353]},{"name":"VSCLASS_TAB","features":[353]},{"name":"VSCLASS_TABSTYLE","features":[353]},{"name":"VSCLASS_TASKBAND","features":[353]},{"name":"VSCLASS_TASKBAR","features":[353]},{"name":"VSCLASS_TASKDIALOG","features":[353]},{"name":"VSCLASS_TASKDIALOGSTYLE","features":[353]},{"name":"VSCLASS_TEXTSELECTIONGRIPPER","features":[353]},{"name":"VSCLASS_TEXTSTYLE","features":[353]},{"name":"VSCLASS_TOOLBAR","features":[353]},{"name":"VSCLASS_TOOLBARSTYLE","features":[353]},{"name":"VSCLASS_TOOLTIP","features":[353]},{"name":"VSCLASS_TOOLTIPSTYLE","features":[353]},{"name":"VSCLASS_TRACKBAR","features":[353]},{"name":"VSCLASS_TRACKBARSTYLE","features":[353]},{"name":"VSCLASS_TRAYNOTIFY","features":[353]},{"name":"VSCLASS_TREEVIEW","features":[353]},{"name":"VSCLASS_TREEVIEWSTYLE","features":[353]},{"name":"VSCLASS_USERTILE","features":[353]},{"name":"VSCLASS_WINDOW","features":[353]},{"name":"VSCLASS_WINDOWSTYLE","features":[353]},{"name":"VSS_DISABLED","features":[353]},{"name":"VSS_HOT","features":[353]},{"name":"VSS_NORMAL","features":[353]},{"name":"VSS_PUSHED","features":[353]},{"name":"VTS_DISABLED","features":[353]},{"name":"VTS_HOT","features":[353]},{"name":"VTS_NORMAL","features":[353]},{"name":"VTS_PUSHED","features":[353]},{"name":"WARNINGSTATES","features":[353]},{"name":"WB_CLASSIFY","features":[353]},{"name":"WB_ISDELIMITER","features":[353]},{"name":"WB_LEFT","features":[353]},{"name":"WB_LEFTBREAK","features":[353]},{"name":"WB_MOVEWORDLEFT","features":[353]},{"name":"WB_MOVEWORDRIGHT","features":[353]},{"name":"WB_RIGHT","features":[353]},{"name":"WB_RIGHTBREAK","features":[353]},{"name":"WC_BUTTON","features":[353]},{"name":"WC_BUTTONA","features":[353]},{"name":"WC_BUTTONW","features":[353]},{"name":"WC_COMBOBOX","features":[353]},{"name":"WC_COMBOBOXA","features":[353]},{"name":"WC_COMBOBOXEX","features":[353]},{"name":"WC_COMBOBOXEXA","features":[353]},{"name":"WC_COMBOBOXEXW","features":[353]},{"name":"WC_COMBOBOXW","features":[353]},{"name":"WC_EDIT","features":[353]},{"name":"WC_EDITA","features":[353]},{"name":"WC_EDITW","features":[353]},{"name":"WC_HEADER","features":[353]},{"name":"WC_HEADERA","features":[353]},{"name":"WC_HEADERW","features":[353]},{"name":"WC_IPADDRESS","features":[353]},{"name":"WC_IPADDRESSA","features":[353]},{"name":"WC_IPADDRESSW","features":[353]},{"name":"WC_LINK","features":[353]},{"name":"WC_LISTBOX","features":[353]},{"name":"WC_LISTBOXA","features":[353]},{"name":"WC_LISTBOXW","features":[353]},{"name":"WC_LISTVIEW","features":[353]},{"name":"WC_LISTVIEWA","features":[353]},{"name":"WC_LISTVIEWW","features":[353]},{"name":"WC_NATIVEFONTCTL","features":[353]},{"name":"WC_NATIVEFONTCTLA","features":[353]},{"name":"WC_NATIVEFONTCTLW","features":[353]},{"name":"WC_PAGESCROLLER","features":[353]},{"name":"WC_PAGESCROLLERA","features":[353]},{"name":"WC_PAGESCROLLERW","features":[353]},{"name":"WC_SCROLLBAR","features":[353]},{"name":"WC_SCROLLBARA","features":[353]},{"name":"WC_SCROLLBARW","features":[353]},{"name":"WC_STATIC","features":[353]},{"name":"WC_STATICA","features":[353]},{"name":"WC_STATICW","features":[353]},{"name":"WC_TABCONTROL","features":[353]},{"name":"WC_TABCONTROLA","features":[353]},{"name":"WC_TABCONTROLW","features":[353]},{"name":"WC_TREEVIEW","features":[353]},{"name":"WC_TREEVIEWA","features":[353]},{"name":"WC_TREEVIEWW","features":[353]},{"name":"WINDOWPARTS","features":[353]},{"name":"WINDOWTHEMEATTRIBUTETYPE","features":[353]},{"name":"WIZ_BODYCX","features":[353]},{"name":"WIZ_BODYX","features":[353]},{"name":"WIZ_CXBMP","features":[353]},{"name":"WIZ_CXDLG","features":[353]},{"name":"WIZ_CYDLG","features":[353]},{"name":"WMN_FIRST","features":[353]},{"name":"WMN_LAST","features":[353]},{"name":"WM_CTLCOLOR","features":[353]},{"name":"WM_MOUSEHOVER","features":[353]},{"name":"WM_MOUSELEAVE","features":[353]},{"name":"WORD_BREAK_ACTION","features":[353]},{"name":"WP_BORDER","features":[353]},{"name":"WP_CAPTION","features":[353]},{"name":"WP_CAPTIONSIZINGTEMPLATE","features":[353]},{"name":"WP_CLOSEBUTTON","features":[353]},{"name":"WP_DIALOG","features":[353]},{"name":"WP_FRAME","features":[353]},{"name":"WP_FRAMEBOTTOM","features":[353]},{"name":"WP_FRAMEBOTTOMSIZINGTEMPLATE","features":[353]},{"name":"WP_FRAMELEFT","features":[353]},{"name":"WP_FRAMELEFTSIZINGTEMPLATE","features":[353]},{"name":"WP_FRAMERIGHT","features":[353]},{"name":"WP_FRAMERIGHTSIZINGTEMPLATE","features":[353]},{"name":"WP_HELPBUTTON","features":[353]},{"name":"WP_HORZSCROLL","features":[353]},{"name":"WP_HORZTHUMB","features":[353]},{"name":"WP_MAXBUTTON","features":[353]},{"name":"WP_MAXCAPTION","features":[353]},{"name":"WP_MDICLOSEBUTTON","features":[353]},{"name":"WP_MDIHELPBUTTON","features":[353]},{"name":"WP_MDIMINBUTTON","features":[353]},{"name":"WP_MDIRESTOREBUTTON","features":[353]},{"name":"WP_MDISYSBUTTON","features":[353]},{"name":"WP_MINBUTTON","features":[353]},{"name":"WP_MINCAPTION","features":[353]},{"name":"WP_RESTOREBUTTON","features":[353]},{"name":"WP_SMALLCAPTION","features":[353]},{"name":"WP_SMALLCAPTIONSIZINGTEMPLATE","features":[353]},{"name":"WP_SMALLCLOSEBUTTON","features":[353]},{"name":"WP_SMALLFRAMEBOTTOM","features":[353]},{"name":"WP_SMALLFRAMEBOTTOMSIZINGTEMPLATE","features":[353]},{"name":"WP_SMALLFRAMELEFT","features":[353]},{"name":"WP_SMALLFRAMELEFTSIZINGTEMPLATE","features":[353]},{"name":"WP_SMALLFRAMERIGHT","features":[353]},{"name":"WP_SMALLFRAMERIGHTSIZINGTEMPLATE","features":[353]},{"name":"WP_SMALLMAXCAPTION","features":[353]},{"name":"WP_SMALLMINCAPTION","features":[353]},{"name":"WP_SYSBUTTON","features":[353]},{"name":"WP_VERTSCROLL","features":[353]},{"name":"WP_VERTTHUMB","features":[353]},{"name":"WRENCHSTATES","features":[353]},{"name":"WSB_PROP","features":[353]},{"name":"WSB_PROP_CXHSCROLL","features":[353]},{"name":"WSB_PROP_CXHTHUMB","features":[353]},{"name":"WSB_PROP_CXVSCROLL","features":[353]},{"name":"WSB_PROP_CYHSCROLL","features":[353]},{"name":"WSB_PROP_CYVSCROLL","features":[353]},{"name":"WSB_PROP_CYVTHUMB","features":[353]},{"name":"WSB_PROP_HBKGCOLOR","features":[353]},{"name":"WSB_PROP_HSTYLE","features":[353]},{"name":"WSB_PROP_MASK","features":[353]},{"name":"WSB_PROP_PALETTE","features":[353]},{"name":"WSB_PROP_VBKGCOLOR","features":[353]},{"name":"WSB_PROP_VSTYLE","features":[353]},{"name":"WSB_PROP_WINSTYLE","features":[353]},{"name":"WTA_NONCLIENT","features":[353]},{"name":"WTA_OPTIONS","features":[353]},{"name":"WTNCA_NODRAWCAPTION","features":[353]},{"name":"WTNCA_NODRAWICON","features":[353]},{"name":"WTNCA_NOMIRRORHELP","features":[353]},{"name":"WTNCA_NOSYSMENU","features":[353]},{"name":"_LI_METRIC","features":[353]},{"name":"chx1","features":[353]},{"name":"chx10","features":[353]},{"name":"chx11","features":[353]},{"name":"chx12","features":[353]},{"name":"chx13","features":[353]},{"name":"chx14","features":[353]},{"name":"chx15","features":[353]},{"name":"chx16","features":[353]},{"name":"chx2","features":[353]},{"name":"chx3","features":[353]},{"name":"chx4","features":[353]},{"name":"chx5","features":[353]},{"name":"chx6","features":[353]},{"name":"chx7","features":[353]},{"name":"chx8","features":[353]},{"name":"chx9","features":[353]},{"name":"cmb1","features":[353]},{"name":"cmb10","features":[353]},{"name":"cmb11","features":[353]},{"name":"cmb12","features":[353]},{"name":"cmb13","features":[353]},{"name":"cmb14","features":[353]},{"name":"cmb15","features":[353]},{"name":"cmb16","features":[353]},{"name":"cmb2","features":[353]},{"name":"cmb3","features":[353]},{"name":"cmb4","features":[353]},{"name":"cmb5","features":[353]},{"name":"cmb6","features":[353]},{"name":"cmb7","features":[353]},{"name":"cmb8","features":[353]},{"name":"cmb9","features":[353]},{"name":"ctl1","features":[353]},{"name":"ctlFirst","features":[353]},{"name":"ctlLast","features":[353]},{"name":"edt1","features":[353]},{"name":"edt10","features":[353]},{"name":"edt11","features":[353]},{"name":"edt12","features":[353]},{"name":"edt13","features":[353]},{"name":"edt14","features":[353]},{"name":"edt15","features":[353]},{"name":"edt16","features":[353]},{"name":"edt2","features":[353]},{"name":"edt3","features":[353]},{"name":"edt4","features":[353]},{"name":"edt5","features":[353]},{"name":"edt6","features":[353]},{"name":"edt7","features":[353]},{"name":"edt8","features":[353]},{"name":"edt9","features":[353]},{"name":"frm1","features":[353]},{"name":"frm2","features":[353]},{"name":"frm3","features":[353]},{"name":"frm4","features":[353]},{"name":"grp1","features":[353]},{"name":"grp2","features":[353]},{"name":"grp3","features":[353]},{"name":"grp4","features":[353]},{"name":"ico1","features":[353]},{"name":"ico2","features":[353]},{"name":"ico3","features":[353]},{"name":"ico4","features":[353]},{"name":"lst1","features":[353]},{"name":"lst10","features":[353]},{"name":"lst11","features":[353]},{"name":"lst12","features":[353]},{"name":"lst13","features":[353]},{"name":"lst14","features":[353]},{"name":"lst15","features":[353]},{"name":"lst16","features":[353]},{"name":"lst2","features":[353]},{"name":"lst3","features":[353]},{"name":"lst4","features":[353]},{"name":"lst5","features":[353]},{"name":"lst6","features":[353]},{"name":"lst7","features":[353]},{"name":"lst8","features":[353]},{"name":"lst9","features":[353]},{"name":"psh1","features":[353]},{"name":"psh10","features":[353]},{"name":"psh11","features":[353]},{"name":"psh12","features":[353]},{"name":"psh13","features":[353]},{"name":"psh14","features":[353]},{"name":"psh15","features":[353]},{"name":"psh16","features":[353]},{"name":"psh2","features":[353]},{"name":"psh3","features":[353]},{"name":"psh4","features":[353]},{"name":"psh5","features":[353]},{"name":"psh6","features":[353]},{"name":"psh7","features":[353]},{"name":"psh8","features":[353]},{"name":"psh9","features":[353]},{"name":"pshHelp","features":[353]},{"name":"rad1","features":[353]},{"name":"rad10","features":[353]},{"name":"rad11","features":[353]},{"name":"rad12","features":[353]},{"name":"rad13","features":[353]},{"name":"rad14","features":[353]},{"name":"rad15","features":[353]},{"name":"rad16","features":[353]},{"name":"rad2","features":[353]},{"name":"rad3","features":[353]},{"name":"rad4","features":[353]},{"name":"rad5","features":[353]},{"name":"rad6","features":[353]},{"name":"rad7","features":[353]},{"name":"rad8","features":[353]},{"name":"rad9","features":[353]},{"name":"rct1","features":[353]},{"name":"rct2","features":[353]},{"name":"rct3","features":[353]},{"name":"rct4","features":[353]},{"name":"scr1","features":[353]},{"name":"scr2","features":[353]},{"name":"scr3","features":[353]},{"name":"scr4","features":[353]},{"name":"scr5","features":[353]},{"name":"scr6","features":[353]},{"name":"scr7","features":[353]},{"name":"scr8","features":[353]},{"name":"stc1","features":[353]},{"name":"stc10","features":[353]},{"name":"stc11","features":[353]},{"name":"stc12","features":[353]},{"name":"stc13","features":[353]},{"name":"stc14","features":[353]},{"name":"stc15","features":[353]},{"name":"stc16","features":[353]},{"name":"stc17","features":[353]},{"name":"stc18","features":[353]},{"name":"stc19","features":[353]},{"name":"stc2","features":[353]},{"name":"stc20","features":[353]},{"name":"stc21","features":[353]},{"name":"stc22","features":[353]},{"name":"stc23","features":[353]},{"name":"stc24","features":[353]},{"name":"stc25","features":[353]},{"name":"stc26","features":[353]},{"name":"stc27","features":[353]},{"name":"stc28","features":[353]},{"name":"stc29","features":[353]},{"name":"stc3","features":[353]},{"name":"stc30","features":[353]},{"name":"stc31","features":[353]},{"name":"stc32","features":[353]},{"name":"stc4","features":[353]},{"name":"stc5","features":[353]},{"name":"stc6","features":[353]},{"name":"stc7","features":[353]},{"name":"stc8","features":[353]},{"name":"stc9","features":[353]}],"651":[{"name":"BOLD_FONTTYPE","features":[434]},{"name":"CCERR_CHOOSECOLORCODES","features":[434]},{"name":"CC_ANYCOLOR","features":[434]},{"name":"CC_ENABLEHOOK","features":[434]},{"name":"CC_ENABLETEMPLATE","features":[434]},{"name":"CC_ENABLETEMPLATEHANDLE","features":[434]},{"name":"CC_FULLOPEN","features":[434]},{"name":"CC_PREVENTFULLOPEN","features":[434]},{"name":"CC_RGBINIT","features":[434]},{"name":"CC_SHOWHELP","features":[434]},{"name":"CC_SOLIDCOLOR","features":[434]},{"name":"CDERR_DIALOGFAILURE","features":[434]},{"name":"CDERR_FINDRESFAILURE","features":[434]},{"name":"CDERR_GENERALCODES","features":[434]},{"name":"CDERR_INITIALIZATION","features":[434]},{"name":"CDERR_LOADRESFAILURE","features":[434]},{"name":"CDERR_LOADSTRFAILURE","features":[434]},{"name":"CDERR_LOCKRESFAILURE","features":[434]},{"name":"CDERR_MEMALLOCFAILURE","features":[434]},{"name":"CDERR_MEMLOCKFAILURE","features":[434]},{"name":"CDERR_NOHINSTANCE","features":[434]},{"name":"CDERR_NOHOOK","features":[434]},{"name":"CDERR_NOTEMPLATE","features":[434]},{"name":"CDERR_REGISTERMSGFAIL","features":[434]},{"name":"CDERR_STRUCTSIZE","features":[434]},{"name":"CDM_FIRST","features":[434]},{"name":"CDM_GETFILEPATH","features":[434]},{"name":"CDM_GETFOLDERIDLIST","features":[434]},{"name":"CDM_GETFOLDERPATH","features":[434]},{"name":"CDM_GETSPEC","features":[434]},{"name":"CDM_HIDECONTROL","features":[434]},{"name":"CDM_LAST","features":[434]},{"name":"CDM_SETCONTROLTEXT","features":[434]},{"name":"CDM_SETDEFEXT","features":[434]},{"name":"CDN_FILEOK","features":[434]},{"name":"CDN_FOLDERCHANGE","features":[434]},{"name":"CDN_HELP","features":[434]},{"name":"CDN_INCLUDEITEM","features":[434]},{"name":"CDN_INITDONE","features":[434]},{"name":"CDN_SELCHANGE","features":[434]},{"name":"CDN_SHAREVIOLATION","features":[434]},{"name":"CDN_TYPECHANGE","features":[434]},{"name":"CD_LBSELADD","features":[434]},{"name":"CD_LBSELCHANGE","features":[434]},{"name":"CD_LBSELNOITEMS","features":[434]},{"name":"CD_LBSELSUB","features":[434]},{"name":"CFERR_CHOOSEFONTCODES","features":[434]},{"name":"CFERR_MAXLESSTHANMIN","features":[434]},{"name":"CFERR_NOFONTS","features":[434]},{"name":"CF_ANSIONLY","features":[434]},{"name":"CF_APPLY","features":[434]},{"name":"CF_BOTH","features":[434]},{"name":"CF_EFFECTS","features":[434]},{"name":"CF_ENABLEHOOK","features":[434]},{"name":"CF_ENABLETEMPLATE","features":[434]},{"name":"CF_ENABLETEMPLATEHANDLE","features":[434]},{"name":"CF_FIXEDPITCHONLY","features":[434]},{"name":"CF_FORCEFONTEXIST","features":[434]},{"name":"CF_INACTIVEFONTS","features":[434]},{"name":"CF_INITTOLOGFONTSTRUCT","features":[434]},{"name":"CF_LIMITSIZE","features":[434]},{"name":"CF_NOFACESEL","features":[434]},{"name":"CF_NOOEMFONTS","features":[434]},{"name":"CF_NOSCRIPTSEL","features":[434]},{"name":"CF_NOSIMULATIONS","features":[434]},{"name":"CF_NOSIZESEL","features":[434]},{"name":"CF_NOSTYLESEL","features":[434]},{"name":"CF_NOVECTORFONTS","features":[434]},{"name":"CF_NOVERTFONTS","features":[434]},{"name":"CF_PRINTERFONTS","features":[434]},{"name":"CF_SCALABLEONLY","features":[434]},{"name":"CF_SCREENFONTS","features":[434]},{"name":"CF_SCRIPTSONLY","features":[434]},{"name":"CF_SELECTSCRIPT","features":[434]},{"name":"CF_SHOWHELP","features":[434]},{"name":"CF_TTONLY","features":[434]},{"name":"CF_USESTYLE","features":[434]},{"name":"CF_WYSIWYG","features":[434]},{"name":"CHOOSECOLORA","features":[303,434]},{"name":"CHOOSECOLORA","features":[303,434]},{"name":"CHOOSECOLORW","features":[303,434]},{"name":"CHOOSECOLORW","features":[303,434]},{"name":"CHOOSECOLOR_FLAGS","features":[434]},{"name":"CHOOSEFONTA","features":[303,314,434]},{"name":"CHOOSEFONTA","features":[303,314,434]},{"name":"CHOOSEFONTW","features":[303,314,434]},{"name":"CHOOSEFONTW","features":[303,314,434]},{"name":"CHOOSEFONT_FLAGS","features":[434]},{"name":"CHOOSEFONT_FONT_TYPE","features":[434]},{"name":"COLOROKSTRING","features":[434]},{"name":"COLOROKSTRINGA","features":[434]},{"name":"COLOROKSTRINGW","features":[434]},{"name":"COLOR_ADD","features":[434]},{"name":"COLOR_BLUE","features":[434]},{"name":"COLOR_BLUEACCEL","features":[434]},{"name":"COLOR_BOX1","features":[434]},{"name":"COLOR_CURRENT","features":[434]},{"name":"COLOR_CUSTOM1","features":[434]},{"name":"COLOR_ELEMENT","features":[434]},{"name":"COLOR_GREEN","features":[434]},{"name":"COLOR_GREENACCEL","features":[434]},{"name":"COLOR_HUE","features":[434]},{"name":"COLOR_HUEACCEL","features":[434]},{"name":"COLOR_HUESCROLL","features":[434]},{"name":"COLOR_LUM","features":[434]},{"name":"COLOR_LUMACCEL","features":[434]},{"name":"COLOR_LUMSCROLL","features":[434]},{"name":"COLOR_MIX","features":[434]},{"name":"COLOR_PALETTE","features":[434]},{"name":"COLOR_RAINBOW","features":[434]},{"name":"COLOR_RED","features":[434]},{"name":"COLOR_REDACCEL","features":[434]},{"name":"COLOR_SAMPLES","features":[434]},{"name":"COLOR_SAT","features":[434]},{"name":"COLOR_SATACCEL","features":[434]},{"name":"COLOR_SATSCROLL","features":[434]},{"name":"COLOR_SAVE","features":[434]},{"name":"COLOR_SCHEMES","features":[434]},{"name":"COLOR_SOLID","features":[434]},{"name":"COLOR_SOLID_LEFT","features":[434]},{"name":"COLOR_SOLID_RIGHT","features":[434]},{"name":"COLOR_TUNE","features":[434]},{"name":"COMMON_DLG_ERRORS","features":[434]},{"name":"ChooseColorA","features":[303,434]},{"name":"ChooseColorW","features":[303,434]},{"name":"ChooseFontA","features":[303,314,434]},{"name":"ChooseFontW","features":[303,314,434]},{"name":"CommDlgExtendedError","features":[434]},{"name":"DEVNAMES","features":[434]},{"name":"DEVNAMES","features":[434]},{"name":"DLG_COLOR","features":[434]},{"name":"DN_DEFAULTPRN","features":[434]},{"name":"FILEOKSTRING","features":[434]},{"name":"FILEOKSTRINGA","features":[434]},{"name":"FILEOKSTRINGW","features":[434]},{"name":"FINDMSGSTRING","features":[434]},{"name":"FINDMSGSTRINGA","features":[434]},{"name":"FINDMSGSTRINGW","features":[434]},{"name":"FINDREPLACEA","features":[303,434]},{"name":"FINDREPLACEA","features":[303,434]},{"name":"FINDREPLACEW","features":[303,434]},{"name":"FINDREPLACEW","features":[303,434]},{"name":"FINDREPLACE_FLAGS","features":[434]},{"name":"FNERR_BUFFERTOOSMALL","features":[434]},{"name":"FNERR_FILENAMECODES","features":[434]},{"name":"FNERR_INVALIDFILENAME","features":[434]},{"name":"FNERR_SUBCLASSFAILURE","features":[434]},{"name":"FRERR_BUFFERLENGTHZERO","features":[434]},{"name":"FRERR_FINDREPLACECODES","features":[434]},{"name":"FRM_FIRST","features":[434]},{"name":"FRM_LAST","features":[434]},{"name":"FRM_SETOPERATIONRESULT","features":[434]},{"name":"FRM_SETOPERATIONRESULTTEXT","features":[434]},{"name":"FR_DIALOGTERM","features":[434]},{"name":"FR_DOWN","features":[434]},{"name":"FR_ENABLEHOOK","features":[434]},{"name":"FR_ENABLETEMPLATE","features":[434]},{"name":"FR_ENABLETEMPLATEHANDLE","features":[434]},{"name":"FR_FINDNEXT","features":[434]},{"name":"FR_HIDEMATCHCASE","features":[434]},{"name":"FR_HIDEUPDOWN","features":[434]},{"name":"FR_HIDEWHOLEWORD","features":[434]},{"name":"FR_MATCHALEFHAMZA","features":[434]},{"name":"FR_MATCHCASE","features":[434]},{"name":"FR_MATCHDIAC","features":[434]},{"name":"FR_MATCHKASHIDA","features":[434]},{"name":"FR_NOMATCHCASE","features":[434]},{"name":"FR_NOUPDOWN","features":[434]},{"name":"FR_NOWHOLEWORD","features":[434]},{"name":"FR_NOWRAPAROUND","features":[434]},{"name":"FR_RAW","features":[434]},{"name":"FR_REPLACE","features":[434]},{"name":"FR_REPLACEALL","features":[434]},{"name":"FR_SHOWHELP","features":[434]},{"name":"FR_SHOWWRAPAROUND","features":[434]},{"name":"FR_WHOLEWORD","features":[434]},{"name":"FR_WRAPAROUND","features":[434]},{"name":"FindTextA","features":[303,434]},{"name":"FindTextW","features":[303,434]},{"name":"GetFileTitleA","features":[434]},{"name":"GetFileTitleW","features":[434]},{"name":"GetOpenFileNameA","features":[303,434]},{"name":"GetOpenFileNameW","features":[303,434]},{"name":"GetSaveFileNameA","features":[303,434]},{"name":"GetSaveFileNameW","features":[303,434]},{"name":"HELPMSGSTRING","features":[434]},{"name":"HELPMSGSTRINGA","features":[434]},{"name":"HELPMSGSTRINGW","features":[434]},{"name":"IPrintDialogCallback","features":[434]},{"name":"IPrintDialogServices","features":[434]},{"name":"ITALIC_FONTTYPE","features":[434]},{"name":"LBSELCHSTRING","features":[434]},{"name":"LBSELCHSTRINGA","features":[434]},{"name":"LBSELCHSTRINGW","features":[434]},{"name":"LPCCHOOKPROC","features":[303,434]},{"name":"LPCFHOOKPROC","features":[303,434]},{"name":"LPFRHOOKPROC","features":[303,434]},{"name":"LPOFNHOOKPROC","features":[303,434]},{"name":"LPPAGEPAINTHOOK","features":[303,434]},{"name":"LPPAGESETUPHOOK","features":[303,434]},{"name":"LPPRINTHOOKPROC","features":[303,434]},{"name":"LPSETUPHOOKPROC","features":[303,434]},{"name":"NUM_BASIC_COLORS","features":[434]},{"name":"NUM_CUSTOM_COLORS","features":[434]},{"name":"OFNOTIFYA","features":[303,434]},{"name":"OFNOTIFYA","features":[303,434]},{"name":"OFNOTIFYEXA","features":[303,434]},{"name":"OFNOTIFYEXA","features":[303,434]},{"name":"OFNOTIFYEXW","features":[303,434]},{"name":"OFNOTIFYEXW","features":[303,434]},{"name":"OFNOTIFYW","features":[303,434]},{"name":"OFNOTIFYW","features":[303,434]},{"name":"OFN_ALLOWMULTISELECT","features":[434]},{"name":"OFN_CREATEPROMPT","features":[434]},{"name":"OFN_DONTADDTORECENT","features":[434]},{"name":"OFN_ENABLEHOOK","features":[434]},{"name":"OFN_ENABLEINCLUDENOTIFY","features":[434]},{"name":"OFN_ENABLESIZING","features":[434]},{"name":"OFN_ENABLETEMPLATE","features":[434]},{"name":"OFN_ENABLETEMPLATEHANDLE","features":[434]},{"name":"OFN_EXPLORER","features":[434]},{"name":"OFN_EXTENSIONDIFFERENT","features":[434]},{"name":"OFN_EX_NONE","features":[434]},{"name":"OFN_EX_NOPLACESBAR","features":[434]},{"name":"OFN_FILEMUSTEXIST","features":[434]},{"name":"OFN_FORCESHOWHIDDEN","features":[434]},{"name":"OFN_HIDEREADONLY","features":[434]},{"name":"OFN_LONGNAMES","features":[434]},{"name":"OFN_NOCHANGEDIR","features":[434]},{"name":"OFN_NODEREFERENCELINKS","features":[434]},{"name":"OFN_NOLONGNAMES","features":[434]},{"name":"OFN_NONETWORKBUTTON","features":[434]},{"name":"OFN_NOREADONLYRETURN","features":[434]},{"name":"OFN_NOTESTFILECREATE","features":[434]},{"name":"OFN_NOVALIDATE","features":[434]},{"name":"OFN_OVERWRITEPROMPT","features":[434]},{"name":"OFN_PATHMUSTEXIST","features":[434]},{"name":"OFN_READONLY","features":[434]},{"name":"OFN_SHAREAWARE","features":[434]},{"name":"OFN_SHAREFALLTHROUGH","features":[434]},{"name":"OFN_SHARENOWARN","features":[434]},{"name":"OFN_SHAREWARN","features":[434]},{"name":"OFN_SHOWHELP","features":[434]},{"name":"OPENFILENAMEA","features":[303,434]},{"name":"OPENFILENAMEA","features":[303,434]},{"name":"OPENFILENAMEW","features":[303,434]},{"name":"OPENFILENAMEW","features":[303,434]},{"name":"OPENFILENAME_NT4A","features":[303,434]},{"name":"OPENFILENAME_NT4A","features":[303,434]},{"name":"OPENFILENAME_NT4W","features":[303,434]},{"name":"OPENFILENAME_NT4W","features":[303,434]},{"name":"OPEN_FILENAME_FLAGS","features":[434]},{"name":"OPEN_FILENAME_FLAGS_EX","features":[434]},{"name":"PAGESETUPDLGA","features":[303,434]},{"name":"PAGESETUPDLGA","features":[303,434]},{"name":"PAGESETUPDLGW","features":[303,434]},{"name":"PAGESETUPDLGW","features":[303,434]},{"name":"PAGESETUPDLG_FLAGS","features":[434]},{"name":"PDERR_CREATEICFAILURE","features":[434]},{"name":"PDERR_DEFAULTDIFFERENT","features":[434]},{"name":"PDERR_DNDMMISMATCH","features":[434]},{"name":"PDERR_GETDEVMODEFAIL","features":[434]},{"name":"PDERR_INITFAILURE","features":[434]},{"name":"PDERR_LOADDRVFAILURE","features":[434]},{"name":"PDERR_NODEFAULTPRN","features":[434]},{"name":"PDERR_NODEVICES","features":[434]},{"name":"PDERR_PARSEFAILURE","features":[434]},{"name":"PDERR_PRINTERCODES","features":[434]},{"name":"PDERR_PRINTERNOTFOUND","features":[434]},{"name":"PDERR_RETDEFFAILURE","features":[434]},{"name":"PDERR_SETUPFAILURE","features":[434]},{"name":"PD_ALLPAGES","features":[434]},{"name":"PD_COLLATE","features":[434]},{"name":"PD_CURRENTPAGE","features":[434]},{"name":"PD_DISABLEPRINTTOFILE","features":[434]},{"name":"PD_ENABLEPRINTHOOK","features":[434]},{"name":"PD_ENABLEPRINTTEMPLATE","features":[434]},{"name":"PD_ENABLEPRINTTEMPLATEHANDLE","features":[434]},{"name":"PD_ENABLESETUPHOOK","features":[434]},{"name":"PD_ENABLESETUPTEMPLATE","features":[434]},{"name":"PD_ENABLESETUPTEMPLATEHANDLE","features":[434]},{"name":"PD_EXCLUSIONFLAGS","features":[434]},{"name":"PD_HIDEPRINTTOFILE","features":[434]},{"name":"PD_NOCURRENTPAGE","features":[434]},{"name":"PD_NONETWORKBUTTON","features":[434]},{"name":"PD_NOPAGENUMS","features":[434]},{"name":"PD_NOSELECTION","features":[434]},{"name":"PD_NOWARNING","features":[434]},{"name":"PD_PAGENUMS","features":[434]},{"name":"PD_PRINTSETUP","features":[434]},{"name":"PD_PRINTTOFILE","features":[434]},{"name":"PD_RESULT_APPLY","features":[434]},{"name":"PD_RESULT_CANCEL","features":[434]},{"name":"PD_RESULT_PRINT","features":[434]},{"name":"PD_RETURNDC","features":[434]},{"name":"PD_RETURNDEFAULT","features":[434]},{"name":"PD_RETURNIC","features":[434]},{"name":"PD_SELECTION","features":[434]},{"name":"PD_SHOWHELP","features":[434]},{"name":"PD_USEDEVMODECOPIES","features":[434]},{"name":"PD_USEDEVMODECOPIESANDCOLLATE","features":[434]},{"name":"PD_USELARGETEMPLATE","features":[434]},{"name":"PRINTDLGA","features":[303,314,434]},{"name":"PRINTDLGA","features":[303,314,434]},{"name":"PRINTDLGEXA","features":[303,314,434]},{"name":"PRINTDLGEXA","features":[303,314,434]},{"name":"PRINTDLGEXW","features":[303,314,434]},{"name":"PRINTDLGEXW","features":[303,314,434]},{"name":"PRINTDLGEX_FLAGS","features":[434]},{"name":"PRINTDLGW","features":[303,314,434]},{"name":"PRINTDLGW","features":[303,314,434]},{"name":"PRINTER_FONTTYPE","features":[434]},{"name":"PRINTPAGERANGE","features":[434]},{"name":"PRINTPAGERANGE","features":[434]},{"name":"PSD_DEFAULTMINMARGINS","features":[434]},{"name":"PSD_DISABLEMARGINS","features":[434]},{"name":"PSD_DISABLEORIENTATION","features":[434]},{"name":"PSD_DISABLEPAGEPAINTING","features":[434]},{"name":"PSD_DISABLEPAPER","features":[434]},{"name":"PSD_DISABLEPRINTER","features":[434]},{"name":"PSD_ENABLEPAGEPAINTHOOK","features":[434]},{"name":"PSD_ENABLEPAGESETUPHOOK","features":[434]},{"name":"PSD_ENABLEPAGESETUPTEMPLATE","features":[434]},{"name":"PSD_ENABLEPAGESETUPTEMPLATEHANDLE","features":[434]},{"name":"PSD_INHUNDREDTHSOFMILLIMETERS","features":[434]},{"name":"PSD_INTHOUSANDTHSOFINCHES","features":[434]},{"name":"PSD_INWININIINTLMEASURE","features":[434]},{"name":"PSD_MARGINS","features":[434]},{"name":"PSD_MINMARGINS","features":[434]},{"name":"PSD_NONETWORKBUTTON","features":[434]},{"name":"PSD_NOWARNING","features":[434]},{"name":"PSD_RETURNDEFAULT","features":[434]},{"name":"PSD_SHOWHELP","features":[434]},{"name":"PS_OPENTYPE_FONTTYPE","features":[434]},{"name":"PageSetupDlgA","features":[303,434]},{"name":"PageSetupDlgW","features":[303,434]},{"name":"PrintDlgA","features":[303,314,434]},{"name":"PrintDlgExA","features":[303,314,434]},{"name":"PrintDlgExW","features":[303,314,434]},{"name":"PrintDlgW","features":[303,314,434]},{"name":"REGULAR_FONTTYPE","features":[434]},{"name":"ReplaceTextA","features":[303,434]},{"name":"ReplaceTextW","features":[303,434]},{"name":"SCREEN_FONTTYPE","features":[434]},{"name":"SETRGBSTRING","features":[434]},{"name":"SETRGBSTRINGA","features":[434]},{"name":"SETRGBSTRINGW","features":[434]},{"name":"SHAREVISTRING","features":[434]},{"name":"SHAREVISTRINGA","features":[434]},{"name":"SHAREVISTRINGW","features":[434]},{"name":"SIMULATED_FONTTYPE","features":[434]},{"name":"START_PAGE_GENERAL","features":[434]},{"name":"SYMBOL_FONTTYPE","features":[434]},{"name":"TT_OPENTYPE_FONTTYPE","features":[434]},{"name":"TYPE1_FONTTYPE","features":[434]},{"name":"WM_CHOOSEFONT_GETLOGFONT","features":[434]},{"name":"WM_CHOOSEFONT_SETFLAGS","features":[434]},{"name":"WM_CHOOSEFONT_SETLOGFONT","features":[434]},{"name":"WM_PSD_ENVSTAMPRECT","features":[434]},{"name":"WM_PSD_FULLPAGERECT","features":[434]},{"name":"WM_PSD_GREEKTEXTRECT","features":[434]},{"name":"WM_PSD_MARGINRECT","features":[434]},{"name":"WM_PSD_MINMARGINRECT","features":[434]},{"name":"WM_PSD_YAFULLPAGERECT","features":[434]}],"652":[{"name":"ATP_CHANGE","features":[616]},{"name":"ATP_NOCHANGE","features":[616]},{"name":"ATP_NODELIMITER","features":[616]},{"name":"ATP_REPLACEALLTEXT","features":[616]},{"name":"AURL_DISABLEMIXEDLGC","features":[616]},{"name":"AURL_ENABLEDRIVELETTERS","features":[616]},{"name":"AURL_ENABLEEA","features":[616]},{"name":"AURL_ENABLEEAURLS","features":[616]},{"name":"AURL_ENABLEEMAILADDR","features":[616]},{"name":"AURL_ENABLETELNO","features":[616]},{"name":"AURL_ENABLEURL","features":[616]},{"name":"AutoCorrectProc","features":[616]},{"name":"BIDIOPTIONS","features":[616]},{"name":"BOE_CONTEXTALIGNMENT","features":[616]},{"name":"BOE_CONTEXTREADING","features":[616]},{"name":"BOE_FORCERECALC","features":[616]},{"name":"BOE_LEGACYBIDICLASS","features":[616]},{"name":"BOE_NEUTRALOVERRIDE","features":[616]},{"name":"BOE_PLAINTEXT","features":[616]},{"name":"BOE_RTLDIR","features":[616]},{"name":"BOE_UNICODEBIDI","features":[616]},{"name":"BOM_CONTEXTALIGNMENT","features":[616]},{"name":"BOM_CONTEXTREADING","features":[616]},{"name":"BOM_DEFPARADIR","features":[616]},{"name":"BOM_LEGACYBIDICLASS","features":[616]},{"name":"BOM_NEUTRALOVERRIDE","features":[616]},{"name":"BOM_PLAINTEXT","features":[616]},{"name":"BOM_UNICODEBIDI","features":[616]},{"name":"CARET_CUSTOM","features":[616]},{"name":"CARET_FLAGS","features":[616]},{"name":"CARET_INFO","features":[314,616]},{"name":"CARET_ITALIC","features":[616]},{"name":"CARET_NONE","features":[616]},{"name":"CARET_NULL","features":[616]},{"name":"CARET_ROTATE90","features":[616]},{"name":"CARET_RTL","features":[616]},{"name":"CERICHEDIT_CLASSA","features":[616]},{"name":"CERICHEDIT_CLASSW","features":[616]},{"name":"CFE_ALLCAPS","features":[616]},{"name":"CFE_AUTOBACKCOLOR","features":[616]},{"name":"CFE_AUTOCOLOR","features":[616]},{"name":"CFE_BOLD","features":[616]},{"name":"CFE_DISABLED","features":[616]},{"name":"CFE_EFFECTS","features":[616]},{"name":"CFE_EMBOSS","features":[616]},{"name":"CFE_EXTENDED","features":[616]},{"name":"CFE_FONTBOUND","features":[616]},{"name":"CFE_HIDDEN","features":[616]},{"name":"CFE_IMPRINT","features":[616]},{"name":"CFE_ITALIC","features":[616]},{"name":"CFE_LINK","features":[616]},{"name":"CFE_LINKPROTECTED","features":[616]},{"name":"CFE_MATH","features":[616]},{"name":"CFE_MATHNOBUILDUP","features":[616]},{"name":"CFE_MATHORDINARY","features":[616]},{"name":"CFE_OUTLINE","features":[616]},{"name":"CFE_PROTECTED","features":[616]},{"name":"CFE_REVISED","features":[616]},{"name":"CFE_SHADOW","features":[616]},{"name":"CFE_SMALLCAPS","features":[616]},{"name":"CFE_STRIKEOUT","features":[616]},{"name":"CFE_SUBSCRIPT","features":[616]},{"name":"CFE_SUPERSCRIPT","features":[616]},{"name":"CFE_UNDERLINE","features":[616]},{"name":"CFM_ALL","features":[616]},{"name":"CFM_ALL2","features":[616]},{"name":"CFM_ALLCAPS","features":[616]},{"name":"CFM_ALLEFFECTS","features":[616]},{"name":"CFM_ANIMATION","features":[616]},{"name":"CFM_BACKCOLOR","features":[616]},{"name":"CFM_BOLD","features":[616]},{"name":"CFM_CHARSET","features":[616]},{"name":"CFM_COLOR","features":[616]},{"name":"CFM_COOKIE","features":[616]},{"name":"CFM_DISABLED","features":[616]},{"name":"CFM_EFFECTS","features":[616]},{"name":"CFM_EFFECTS2","features":[616]},{"name":"CFM_EMBOSS","features":[616]},{"name":"CFM_EXTENDED","features":[616]},{"name":"CFM_FACE","features":[616]},{"name":"CFM_FONTBOUND","features":[616]},{"name":"CFM_HIDDEN","features":[616]},{"name":"CFM_IMPRINT","features":[616]},{"name":"CFM_ITALIC","features":[616]},{"name":"CFM_KERNING","features":[616]},{"name":"CFM_LCID","features":[616]},{"name":"CFM_LINK","features":[616]},{"name":"CFM_LINKPROTECTED","features":[616]},{"name":"CFM_MASK","features":[616]},{"name":"CFM_MATH","features":[616]},{"name":"CFM_MATHNOBUILDUP","features":[616]},{"name":"CFM_MATHORDINARY","features":[616]},{"name":"CFM_OFFSET","features":[616]},{"name":"CFM_OUTLINE","features":[616]},{"name":"CFM_PROTECTED","features":[616]},{"name":"CFM_REVAUTHOR","features":[616]},{"name":"CFM_REVISED","features":[616]},{"name":"CFM_SHADOW","features":[616]},{"name":"CFM_SIZE","features":[616]},{"name":"CFM_SMALLCAPS","features":[616]},{"name":"CFM_SPACING","features":[616]},{"name":"CFM_STRIKEOUT","features":[616]},{"name":"CFM_STYLE","features":[616]},{"name":"CFM_SUBSCRIPT","features":[616]},{"name":"CFM_SUPERSCRIPT","features":[616]},{"name":"CFM_UNDERLINE","features":[616]},{"name":"CFM_UNDERLINETYPE","features":[616]},{"name":"CFM_WEIGHT","features":[616]},{"name":"CF_RETEXTOBJ","features":[616]},{"name":"CF_RTF","features":[616]},{"name":"CF_RTFNOOBJS","features":[616]},{"name":"CHANGENOTIFY","features":[616]},{"name":"CHANGETYPE","features":[616]},{"name":"CHARFORMAT2A","features":[303,314,616]},{"name":"CHARFORMAT2W","features":[303,314,616]},{"name":"CHARFORMATA","features":[303,314,616]},{"name":"CHARFORMATW","features":[303,314,616]},{"name":"CHARRANGE","features":[616]},{"name":"CLIPBOARDFORMAT","features":[303,616]},{"name":"CLIPBOARDFORMAT","features":[303,616]},{"name":"CN_GENERIC","features":[616]},{"name":"CN_NEWREDO","features":[616]},{"name":"CN_NEWUNDO","features":[616]},{"name":"CN_TEXTCHANGED","features":[616]},{"name":"COMPCOLOR","features":[303,616]},{"name":"CTFMODEBIAS_CONVERSATION","features":[616]},{"name":"CTFMODEBIAS_DATETIME","features":[616]},{"name":"CTFMODEBIAS_DEFAULT","features":[616]},{"name":"CTFMODEBIAS_FILENAME","features":[616]},{"name":"CTFMODEBIAS_FULLWIDTHALPHANUMERIC","features":[616]},{"name":"CTFMODEBIAS_HALFWIDTHALPHANUMERIC","features":[616]},{"name":"CTFMODEBIAS_HALFWIDTHKATAKANA","features":[616]},{"name":"CTFMODEBIAS_HANGUL","features":[616]},{"name":"CTFMODEBIAS_HIRAGANA","features":[616]},{"name":"CTFMODEBIAS_KATAKANA","features":[616]},{"name":"CTFMODEBIAS_NAME","features":[616]},{"name":"CTFMODEBIAS_NUMERIC","features":[616]},{"name":"CTFMODEBIAS_READING","features":[616]},{"name":"ECN_ENDCOMPOSITION","features":[616]},{"name":"ECN_NEWTEXT","features":[616]},{"name":"ECOOP_AND","features":[616]},{"name":"ECOOP_OR","features":[616]},{"name":"ECOOP_SET","features":[616]},{"name":"ECOOP_XOR","features":[616]},{"name":"ECO_AUTOHSCROLL","features":[616]},{"name":"ECO_AUTOVSCROLL","features":[616]},{"name":"ECO_AUTOWORDSELECTION","features":[616]},{"name":"ECO_NOHIDESEL","features":[616]},{"name":"ECO_READONLY","features":[616]},{"name":"ECO_SAVESEL","features":[616]},{"name":"ECO_SELECTIONBAR","features":[616]},{"name":"ECO_VERTICAL","features":[616]},{"name":"ECO_WANTRETURN","features":[616]},{"name":"EDITSTREAM","features":[616]},{"name":"EDITSTREAM","features":[616]},{"name":"EDITSTREAMCALLBACK","features":[616]},{"name":"EDITWORDBREAKPROCEX","features":[616]},{"name":"ELLIPSIS_END","features":[616]},{"name":"ELLIPSIS_MASK","features":[616]},{"name":"ELLIPSIS_NONE","features":[616]},{"name":"ELLIPSIS_WORD","features":[616]},{"name":"EMO_ENTER","features":[616]},{"name":"EMO_EXIT","features":[616]},{"name":"EMO_EXPAND","features":[616]},{"name":"EMO_EXPANDDOCUMENT","features":[616]},{"name":"EMO_EXPANDSELECTION","features":[616]},{"name":"EMO_GETVIEWMODE","features":[616]},{"name":"EMO_MOVESELECTION","features":[616]},{"name":"EMO_PROMOTE","features":[616]},{"name":"EM_AUTOURLDETECT","features":[616]},{"name":"EM_CALLAUTOCORRECTPROC","features":[616]},{"name":"EM_CANPASTE","features":[616]},{"name":"EM_CANREDO","features":[616]},{"name":"EM_CONVPOSITION","features":[616]},{"name":"EM_DISPLAYBAND","features":[616]},{"name":"EM_EXGETSEL","features":[616]},{"name":"EM_EXLIMITTEXT","features":[616]},{"name":"EM_EXLINEFROMCHAR","features":[616]},{"name":"EM_EXSETSEL","features":[616]},{"name":"EM_FINDTEXT","features":[616]},{"name":"EM_FINDTEXTEX","features":[616]},{"name":"EM_FINDTEXTEXW","features":[616]},{"name":"EM_FINDTEXTW","features":[616]},{"name":"EM_FINDWORDBREAK","features":[616]},{"name":"EM_FORMATRANGE","features":[616]},{"name":"EM_GETAUTOCORRECTPROC","features":[616]},{"name":"EM_GETAUTOURLDETECT","features":[616]},{"name":"EM_GETBIDIOPTIONS","features":[616]},{"name":"EM_GETCHARFORMAT","features":[616]},{"name":"EM_GETCTFMODEBIAS","features":[616]},{"name":"EM_GETCTFOPENSTATUS","features":[616]},{"name":"EM_GETEDITSTYLE","features":[616]},{"name":"EM_GETEDITSTYLEEX","features":[616]},{"name":"EM_GETELLIPSISMODE","features":[616]},{"name":"EM_GETELLIPSISSTATE","features":[616]},{"name":"EM_GETEVENTMASK","features":[616]},{"name":"EM_GETHYPHENATEINFO","features":[616]},{"name":"EM_GETIMECOLOR","features":[616]},{"name":"EM_GETIMECOMPMODE","features":[616]},{"name":"EM_GETIMECOMPTEXT","features":[616]},{"name":"EM_GETIMEMODEBIAS","features":[616]},{"name":"EM_GETIMEOPTIONS","features":[616]},{"name":"EM_GETIMEPROPERTY","features":[616]},{"name":"EM_GETLANGOPTIONS","features":[616]},{"name":"EM_GETOLEINTERFACE","features":[616]},{"name":"EM_GETOPTIONS","features":[616]},{"name":"EM_GETPAGE","features":[616]},{"name":"EM_GETPAGEROTATE","features":[616]},{"name":"EM_GETPARAFORMAT","features":[616]},{"name":"EM_GETPUNCTUATION","features":[616]},{"name":"EM_GETQUERYRTFOBJ","features":[616]},{"name":"EM_GETREDONAME","features":[616]},{"name":"EM_GETSCROLLPOS","features":[616]},{"name":"EM_GETSELTEXT","features":[616]},{"name":"EM_GETSTORYTYPE","features":[616]},{"name":"EM_GETTABLEPARMS","features":[616]},{"name":"EM_GETTEXTEX","features":[616]},{"name":"EM_GETTEXTLENGTHEX","features":[616]},{"name":"EM_GETTEXTMODE","features":[616]},{"name":"EM_GETTEXTRANGE","features":[616]},{"name":"EM_GETTOUCHOPTIONS","features":[616]},{"name":"EM_GETTYPOGRAPHYOPTIONS","features":[616]},{"name":"EM_GETUNDONAME","features":[616]},{"name":"EM_GETVIEWKIND","features":[616]},{"name":"EM_GETWORDBREAKPROCEX","features":[616]},{"name":"EM_GETWORDWRAPMODE","features":[616]},{"name":"EM_GETZOOM","features":[616]},{"name":"EM_HIDESELECTION","features":[616]},{"name":"EM_INSERTIMAGE","features":[616]},{"name":"EM_INSERTTABLE","features":[616]},{"name":"EM_ISIME","features":[616]},{"name":"EM_OUTLINE","features":[616]},{"name":"EM_PASTESPECIAL","features":[616]},{"name":"EM_RECONVERSION","features":[616]},{"name":"EM_REDO","features":[616]},{"name":"EM_REQUESTRESIZE","features":[616]},{"name":"EM_SELECTIONTYPE","features":[616]},{"name":"EM_SETAUTOCORRECTPROC","features":[616]},{"name":"EM_SETBIDIOPTIONS","features":[616]},{"name":"EM_SETBKGNDCOLOR","features":[616]},{"name":"EM_SETCHARFORMAT","features":[616]},{"name":"EM_SETCTFMODEBIAS","features":[616]},{"name":"EM_SETCTFOPENSTATUS","features":[616]},{"name":"EM_SETDISABLEOLELINKCONVERSION","features":[616]},{"name":"EM_SETEDITSTYLE","features":[616]},{"name":"EM_SETEDITSTYLEEX","features":[616]},{"name":"EM_SETELLIPSISMODE","features":[616]},{"name":"EM_SETEVENTMASK","features":[616]},{"name":"EM_SETFONTSIZE","features":[616]},{"name":"EM_SETHYPHENATEINFO","features":[616]},{"name":"EM_SETIMECOLOR","features":[616]},{"name":"EM_SETIMEMODEBIAS","features":[616]},{"name":"EM_SETIMEOPTIONS","features":[616]},{"name":"EM_SETLANGOPTIONS","features":[616]},{"name":"EM_SETOLECALLBACK","features":[616]},{"name":"EM_SETOPTIONS","features":[616]},{"name":"EM_SETPAGE","features":[616]},{"name":"EM_SETPAGEROTATE","features":[616]},{"name":"EM_SETPALETTE","features":[616]},{"name":"EM_SETPARAFORMAT","features":[616]},{"name":"EM_SETPUNCTUATION","features":[616]},{"name":"EM_SETQUERYCONVERTOLELINKCALLBACK","features":[616]},{"name":"EM_SETQUERYRTFOBJ","features":[616]},{"name":"EM_SETSCROLLPOS","features":[616]},{"name":"EM_SETSTORYTYPE","features":[616]},{"name":"EM_SETTABLEPARMS","features":[616]},{"name":"EM_SETTARGETDEVICE","features":[616]},{"name":"EM_SETTEXTEX","features":[616]},{"name":"EM_SETTEXTMODE","features":[616]},{"name":"EM_SETTOUCHOPTIONS","features":[616]},{"name":"EM_SETTYPOGRAPHYOPTIONS","features":[616]},{"name":"EM_SETUIANAME","features":[616]},{"name":"EM_SETUNDOLIMIT","features":[616]},{"name":"EM_SETVIEWKIND","features":[616]},{"name":"EM_SETWORDBREAKPROCEX","features":[616]},{"name":"EM_SETWORDWRAPMODE","features":[616]},{"name":"EM_SETZOOM","features":[616]},{"name":"EM_SHOWSCROLLBAR","features":[616]},{"name":"EM_STOPGROUPTYPING","features":[616]},{"name":"EM_STREAMIN","features":[616]},{"name":"EM_STREAMOUT","features":[616]},{"name":"ENCORRECTTEXT","features":[303,616]},{"name":"ENCORRECTTEXT","features":[303,616]},{"name":"ENDCOMPOSITIONNOTIFY","features":[303,616]},{"name":"ENDCOMPOSITIONNOTIFY","features":[303,616]},{"name":"ENDCOMPOSITIONNOTIFY_CODE","features":[616]},{"name":"ENDROPFILES","features":[303,616]},{"name":"ENDROPFILES","features":[303,616]},{"name":"ENLINK","features":[303,616]},{"name":"ENLINK","features":[303,616]},{"name":"ENLOWFIRTF","features":[303,616]},{"name":"ENLOWFIRTF","features":[303,616]},{"name":"ENM_CHANGE","features":[616]},{"name":"ENM_CLIPFORMAT","features":[616]},{"name":"ENM_CORRECTTEXT","features":[616]},{"name":"ENM_DRAGDROPDONE","features":[616]},{"name":"ENM_DROPFILES","features":[616]},{"name":"ENM_ENDCOMPOSITION","features":[616]},{"name":"ENM_GROUPTYPINGCHANGE","features":[616]},{"name":"ENM_HIDELINKTOOLTIP","features":[616]},{"name":"ENM_IMECHANGE","features":[616]},{"name":"ENM_KEYEVENTS","features":[616]},{"name":"ENM_LANGCHANGE","features":[616]},{"name":"ENM_LINK","features":[616]},{"name":"ENM_LOWFIRTF","features":[616]},{"name":"ENM_MOUSEEVENTS","features":[616]},{"name":"ENM_NONE","features":[616]},{"name":"ENM_OBJECTPOSITIONS","features":[616]},{"name":"ENM_PAGECHANGE","features":[616]},{"name":"ENM_PARAGRAPHEXPANDED","features":[616]},{"name":"ENM_PROTECTED","features":[616]},{"name":"ENM_REQUESTRESIZE","features":[616]},{"name":"ENM_SCROLL","features":[616]},{"name":"ENM_SCROLLEVENTS","features":[616]},{"name":"ENM_SELCHANGE","features":[616]},{"name":"ENM_STARTCOMPOSITION","features":[616]},{"name":"ENM_UPDATE","features":[616]},{"name":"ENOLEOPFAILED","features":[303,616]},{"name":"ENOLEOPFAILED","features":[303,616]},{"name":"ENPROTECTED","features":[303,616]},{"name":"ENPROTECTED","features":[303,616]},{"name":"ENSAVECLIPBOARD","features":[303,616]},{"name":"ENSAVECLIPBOARD","features":[303,616]},{"name":"EN_ALIGNLTR","features":[616]},{"name":"EN_ALIGNRTL","features":[616]},{"name":"EN_CLIPFORMAT","features":[616]},{"name":"EN_CORRECTTEXT","features":[616]},{"name":"EN_DRAGDROPDONE","features":[616]},{"name":"EN_DROPFILES","features":[616]},{"name":"EN_ENDCOMPOSITION","features":[616]},{"name":"EN_IMECHANGE","features":[616]},{"name":"EN_LINK","features":[616]},{"name":"EN_LOWFIRTF","features":[616]},{"name":"EN_MSGFILTER","features":[616]},{"name":"EN_OBJECTPOSITIONS","features":[616]},{"name":"EN_OLEOPFAILED","features":[616]},{"name":"EN_PAGECHANGE","features":[616]},{"name":"EN_PARAGRAPHEXPANDED","features":[616]},{"name":"EN_PROTECTED","features":[616]},{"name":"EN_REQUESTRESIZE","features":[616]},{"name":"EN_SAVECLIPBOARD","features":[616]},{"name":"EN_SELCHANGE","features":[616]},{"name":"EN_STARTCOMPOSITION","features":[616]},{"name":"EN_STOPNOUNDO","features":[616]},{"name":"EPR_0","features":[616]},{"name":"EPR_180","features":[616]},{"name":"EPR_270","features":[616]},{"name":"EPR_90","features":[616]},{"name":"EPR_SE","features":[616]},{"name":"ES_DISABLENOSCROLL","features":[616]},{"name":"ES_EX_NOCALLOLEINIT","features":[616]},{"name":"ES_NOIME","features":[616]},{"name":"ES_NOOLEDRAGDROP","features":[616]},{"name":"ES_SAVESEL","features":[616]},{"name":"ES_SELECTIONBAR","features":[616]},{"name":"ES_SELFIME","features":[616]},{"name":"ES_SUNKEN","features":[616]},{"name":"ES_VERTICAL","features":[616]},{"name":"FINDTEXTA","features":[616]},{"name":"FINDTEXTA","features":[616]},{"name":"FINDTEXTEXA","features":[616]},{"name":"FINDTEXTEXA","features":[616]},{"name":"FINDTEXTEXW","features":[616]},{"name":"FINDTEXTEXW","features":[616]},{"name":"FINDTEXTW","features":[616]},{"name":"FINDTEXTW","features":[616]},{"name":"FORMATRANGE","features":[303,314,616]},{"name":"FORMATRANGE","features":[303,314,616]},{"name":"GCMF_GRIPPER","features":[616]},{"name":"GCMF_MOUSEMENU","features":[616]},{"name":"GCMF_SPELLING","features":[616]},{"name":"GCMF_TOUCHMENU","features":[616]},{"name":"GCM_MOUSEMENU","features":[616]},{"name":"GCM_RIGHTMOUSEDROP","features":[616]},{"name":"GCM_TOUCHMENU","features":[616]},{"name":"GETCONTEXTMENUEX","features":[303,616]},{"name":"GETCONTEXTMENUEX","features":[303,616]},{"name":"GETTEXTEX","features":[303,616]},{"name":"GETTEXTEX","features":[303,616]},{"name":"GETTEXTEX_FLAGS","features":[616]},{"name":"GETTEXTLENGTHEX","features":[616]},{"name":"GETTEXTLENGTHEX_FLAGS","features":[616]},{"name":"GROUPTYPINGCHANGE","features":[303,616]},{"name":"GTL_CLOSE","features":[616]},{"name":"GTL_DEFAULT","features":[616]},{"name":"GTL_NUMBYTES","features":[616]},{"name":"GTL_NUMCHARS","features":[616]},{"name":"GTL_PRECISE","features":[616]},{"name":"GTL_USECRLF","features":[616]},{"name":"GT_DEFAULT","features":[616]},{"name":"GT_NOHIDDENTEXT","features":[616]},{"name":"GT_RAWTEXT","features":[616]},{"name":"GT_SELECTION","features":[616]},{"name":"GT_USECRLF","features":[616]},{"name":"HYPHENATEINFO","features":[616]},{"name":"HYPHENATEINFO","features":[616]},{"name":"HYPHRESULT","features":[616]},{"name":"ICM_CTF","features":[616]},{"name":"ICM_LEVEL2","features":[616]},{"name":"ICM_LEVEL2_5","features":[616]},{"name":"ICM_LEVEL2_SUI","features":[616]},{"name":"ICM_LEVEL3","features":[616]},{"name":"ICM_NOTOPEN","features":[616]},{"name":"ICT_RESULTREADSTR","features":[616]},{"name":"IMECOMPTEXT","features":[616]},{"name":"IMECOMPTEXT_FLAGS","features":[616]},{"name":"IMF_AUTOFONT","features":[616]},{"name":"IMF_AUTOFONTSIZEADJUST","features":[616]},{"name":"IMF_AUTOKEYBOARD","features":[616]},{"name":"IMF_CLOSESTATUSWINDOW","features":[616]},{"name":"IMF_DUALFONT","features":[616]},{"name":"IMF_FORCEACTIVE","features":[616]},{"name":"IMF_FORCEDISABLE","features":[616]},{"name":"IMF_FORCEENABLE","features":[616]},{"name":"IMF_FORCEINACTIVE","features":[616]},{"name":"IMF_FORCENONE","features":[616]},{"name":"IMF_FORCEREMEMBER","features":[616]},{"name":"IMF_IMEALWAYSSENDNOTIFY","features":[616]},{"name":"IMF_IMECANCELCOMPLETE","features":[616]},{"name":"IMF_IMEUIINTEGRATION","features":[616]},{"name":"IMF_MULTIPLEEDIT","features":[616]},{"name":"IMF_NOIMPLICITLANG","features":[616]},{"name":"IMF_NOKBDLIDFIXUP","features":[616]},{"name":"IMF_NORTFFONTSUBSTITUTE","features":[616]},{"name":"IMF_SMODE_NONE","features":[616]},{"name":"IMF_SMODE_PLAURALCLAUSE","features":[616]},{"name":"IMF_SPELLCHECKING","features":[616]},{"name":"IMF_TKBPREDICTION","features":[616]},{"name":"IMF_UIFONTS","features":[616]},{"name":"IMF_VERTICAL","features":[616]},{"name":"IRichEditOle","features":[616]},{"name":"IRichEditOleCallback","features":[616]},{"name":"IRicheditUiaOverrides","features":[616]},{"name":"ITextDisplays","features":[354,616]},{"name":"ITextDocument","features":[354,616]},{"name":"ITextDocument2","features":[354,616]},{"name":"ITextDocument2Old","features":[354,616]},{"name":"ITextFont","features":[354,616]},{"name":"ITextFont2","features":[354,616]},{"name":"ITextHost","features":[616]},{"name":"ITextHost2","features":[616]},{"name":"ITextPara","features":[354,616]},{"name":"ITextPara2","features":[354,616]},{"name":"ITextRange","features":[354,616]},{"name":"ITextRange2","features":[354,616]},{"name":"ITextRow","features":[354,616]},{"name":"ITextSelection","features":[354,616]},{"name":"ITextSelection2","features":[354,616]},{"name":"ITextServices","features":[616]},{"name":"ITextServices2","features":[616]},{"name":"ITextStory","features":[616]},{"name":"ITextStoryRanges","features":[354,616]},{"name":"ITextStoryRanges2","features":[354,616]},{"name":"ITextStrings","features":[354,616]},{"name":"KHYPH","features":[616]},{"name":"MANCODE","features":[616]},{"name":"MAX_TABLE_CELLS","features":[616]},{"name":"MAX_TAB_STOPS","features":[616]},{"name":"MBOLD","features":[616]},{"name":"MFRAK","features":[616]},{"name":"MGREEK","features":[616]},{"name":"MINIT","features":[616]},{"name":"MISOL","features":[616]},{"name":"MITAL","features":[616]},{"name":"MLOOP","features":[616]},{"name":"MMATH","features":[616]},{"name":"MMONO","features":[616]},{"name":"MOPEN","features":[616]},{"name":"MOPENA","features":[616]},{"name":"MROMN","features":[616]},{"name":"MSANS","features":[616]},{"name":"MSCRP","features":[616]},{"name":"MSFTEDIT_CLASS","features":[616]},{"name":"MSGFILTER","features":[303,616]},{"name":"MSGFILTER","features":[303,616]},{"name":"MSTRCH","features":[616]},{"name":"MTAIL","features":[616]},{"name":"OBJECTPOSITIONS","features":[303,616]},{"name":"OBJECTPOSITIONS","features":[303,616]},{"name":"OBJECTTYPE","features":[616]},{"name":"OLEOP_DOVERB","features":[616]},{"name":"PARAFORMAT","features":[616]},{"name":"PARAFORMAT2","features":[616]},{"name":"PARAFORMAT_ALIGNMENT","features":[616]},{"name":"PARAFORMAT_BORDERS","features":[616]},{"name":"PARAFORMAT_BORDERS_AUTOCOLOR","features":[616]},{"name":"PARAFORMAT_BORDERS_BOTTOM","features":[616]},{"name":"PARAFORMAT_BORDERS_INSIDE","features":[616]},{"name":"PARAFORMAT_BORDERS_LEFT","features":[616]},{"name":"PARAFORMAT_BORDERS_OUTSIDE","features":[616]},{"name":"PARAFORMAT_BORDERS_RIGHT","features":[616]},{"name":"PARAFORMAT_BORDERS_TOP","features":[616]},{"name":"PARAFORMAT_MASK","features":[616]},{"name":"PARAFORMAT_NUMBERING","features":[616]},{"name":"PARAFORMAT_NUMBERING_STYLE","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_DOWN_DIAG","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_GRID","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_HORIZ","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_TRELLIS","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_UP_DIAG","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_VERT","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_DOWN_DIAG","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_GRID","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_HORZ","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_TRELLIS","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_UP_DIAG","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_VERT","features":[616]},{"name":"PARAFORMAT_SHADING_STYLE_NONE","features":[616]},{"name":"PC_DELIMITER","features":[616]},{"name":"PC_FOLLOWING","features":[616]},{"name":"PC_LEADING","features":[616]},{"name":"PC_OVERFLOW","features":[616]},{"name":"PCreateTextServices","features":[616]},{"name":"PFA_CENTER","features":[616]},{"name":"PFA_FULL_GLYPHS","features":[616]},{"name":"PFA_FULL_INTERLETTER","features":[616]},{"name":"PFA_FULL_INTERWORD","features":[616]},{"name":"PFA_FULL_NEWSPAPER","features":[616]},{"name":"PFA_FULL_SCALED","features":[616]},{"name":"PFA_JUSTIFY","features":[616]},{"name":"PFA_LEFT","features":[616]},{"name":"PFA_RIGHT","features":[616]},{"name":"PFM_ALIGNMENT","features":[616]},{"name":"PFM_ALL","features":[616]},{"name":"PFM_ALL2","features":[616]},{"name":"PFM_BORDER","features":[616]},{"name":"PFM_BOX","features":[616]},{"name":"PFM_COLLAPSED","features":[616]},{"name":"PFM_DONOTHYPHEN","features":[616]},{"name":"PFM_EFFECTS","features":[616]},{"name":"PFM_KEEP","features":[616]},{"name":"PFM_KEEPNEXT","features":[616]},{"name":"PFM_LINESPACING","features":[616]},{"name":"PFM_NOLINENUMBER","features":[616]},{"name":"PFM_NOWIDOWCONTROL","features":[616]},{"name":"PFM_NUMBERING","features":[616]},{"name":"PFM_NUMBERINGSTART","features":[616]},{"name":"PFM_NUMBERINGSTYLE","features":[616]},{"name":"PFM_NUMBERINGTAB","features":[616]},{"name":"PFM_OFFSET","features":[616]},{"name":"PFM_OFFSETINDENT","features":[616]},{"name":"PFM_OUTLINELEVEL","features":[616]},{"name":"PFM_PAGEBREAKBEFORE","features":[616]},{"name":"PFM_RESERVED2","features":[616]},{"name":"PFM_RIGHTINDENT","features":[616]},{"name":"PFM_RTLPARA","features":[616]},{"name":"PFM_SHADING","features":[616]},{"name":"PFM_SIDEBYSIDE","features":[616]},{"name":"PFM_SPACEAFTER","features":[616]},{"name":"PFM_SPACEBEFORE","features":[616]},{"name":"PFM_STARTINDENT","features":[616]},{"name":"PFM_STYLE","features":[616]},{"name":"PFM_TABLE","features":[616]},{"name":"PFM_TABLEROWDELIMITER","features":[616]},{"name":"PFM_TABSTOPS","features":[616]},{"name":"PFM_TEXTWRAPPINGBREAK","features":[616]},{"name":"PFNS_NEWNUMBER","features":[616]},{"name":"PFNS_NONUMBER","features":[616]},{"name":"PFNS_PAREN","features":[616]},{"name":"PFNS_PARENS","features":[616]},{"name":"PFNS_PERIOD","features":[616]},{"name":"PFNS_PLAIN","features":[616]},{"name":"PFN_ARABIC","features":[616]},{"name":"PFN_BULLET","features":[616]},{"name":"PFN_LCLETTER","features":[616]},{"name":"PFN_LCROMAN","features":[616]},{"name":"PFN_UCLETTER","features":[616]},{"name":"PFN_UCROMAN","features":[616]},{"name":"PShutdownTextServices","features":[616]},{"name":"PUNCTUATION","features":[616]},{"name":"PUNCTUATION","features":[616]},{"name":"REOBJECT","features":[303,427,413,616]},{"name":"REOBJECT_FLAGS","features":[616]},{"name":"REO_ALIGNTORIGHT","features":[616]},{"name":"REO_BELOWBASELINE","features":[616]},{"name":"REO_BLANK","features":[616]},{"name":"REO_CANROTATE","features":[616]},{"name":"REO_DONTNEEDPALETTE","features":[616]},{"name":"REO_DYNAMICSIZE","features":[616]},{"name":"REO_GETMETAFILE","features":[616]},{"name":"REO_GETOBJ_ALL_INTERFACES","features":[616]},{"name":"REO_GETOBJ_NO_INTERFACES","features":[616]},{"name":"REO_GETOBJ_POLEOBJ","features":[616]},{"name":"REO_GETOBJ_POLESITE","features":[616]},{"name":"REO_GETOBJ_PSTG","features":[616]},{"name":"REO_HILITED","features":[616]},{"name":"REO_INPLACEACTIVE","features":[616]},{"name":"REO_INVERTEDSELECT","features":[616]},{"name":"REO_LINK","features":[616]},{"name":"REO_LINKAVAILABLE","features":[616]},{"name":"REO_NULL","features":[616]},{"name":"REO_OPEN","features":[616]},{"name":"REO_OWNERDRAWSELECT","features":[616]},{"name":"REO_READWRITEMASK","features":[616]},{"name":"REO_RESIZABLE","features":[616]},{"name":"REO_SELECTED","features":[616]},{"name":"REO_STATIC","features":[616]},{"name":"REO_USEASBACKGROUND","features":[616]},{"name":"REO_WRAPTEXTAROUND","features":[616]},{"name":"REPASTESPECIAL","features":[354,616]},{"name":"REPASTESPECIAL","features":[354,616]},{"name":"REQRESIZE","features":[303,616]},{"name":"REQRESIZE","features":[303,616]},{"name":"RICHEDIT60_CLASS","features":[616]},{"name":"RICHEDIT_CLASS","features":[616]},{"name":"RICHEDIT_CLASS10A","features":[616]},{"name":"RICHEDIT_CLASSA","features":[616]},{"name":"RICHEDIT_CLASSW","features":[616]},{"name":"RICHEDIT_IMAGE_PARAMETERS","features":[354,616]},{"name":"RICHEDIT_IMAGE_PARAMETERS","features":[354,616]},{"name":"RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE","features":[616]},{"name":"RICH_EDIT_GET_OBJECT_FLAGS","features":[616]},{"name":"RTO_DISABLEHANDLES","features":[616]},{"name":"RTO_READINGMODE","features":[616]},{"name":"RTO_SHOWHANDLES","features":[616]},{"name":"SCF_ALL","features":[616]},{"name":"SCF_ASSOCIATEFONT","features":[616]},{"name":"SCF_ASSOCIATEFONT2","features":[616]},{"name":"SCF_CHARREPFROMLCID","features":[616]},{"name":"SCF_DEFAULT","features":[616]},{"name":"SCF_NOKBUPDATE","features":[616]},{"name":"SCF_SELECTION","features":[616]},{"name":"SCF_SMARTFONT","features":[616]},{"name":"SCF_USEUIRULES","features":[616]},{"name":"SCF_WORD","features":[616]},{"name":"SELCHANGE","features":[303,616]},{"name":"SELCHANGE","features":[303,616]},{"name":"SEL_EMPTY","features":[616]},{"name":"SEL_MULTICHAR","features":[616]},{"name":"SEL_MULTIOBJECT","features":[616]},{"name":"SEL_OBJECT","features":[616]},{"name":"SEL_TEXT","features":[616]},{"name":"SES_ALLOWBEEPS","features":[616]},{"name":"SES_BEEPONMAXTEXT","features":[616]},{"name":"SES_BIDI","features":[616]},{"name":"SES_CTFALLOWEMBED","features":[616]},{"name":"SES_CTFALLOWPROOFING","features":[616]},{"name":"SES_CTFALLOWSMARTTAG","features":[616]},{"name":"SES_CTFNOLOCK","features":[616]},{"name":"SES_CUSTOMLOOK","features":[616]},{"name":"SES_DEFAULTLATINLIGA","features":[616]},{"name":"SES_DRAFTMODE","features":[616]},{"name":"SES_EMULATE10","features":[616]},{"name":"SES_EMULATESYSEDIT","features":[616]},{"name":"SES_EXTENDBACKCOLOR","features":[616]},{"name":"SES_EX_HANDLEFRIENDLYURL","features":[616]},{"name":"SES_EX_HIDETEMPFORMAT","features":[616]},{"name":"SES_EX_MULTITOUCH","features":[616]},{"name":"SES_EX_NOACETATESELECTION","features":[616]},{"name":"SES_EX_NOMATH","features":[616]},{"name":"SES_EX_NOTABLE","features":[616]},{"name":"SES_EX_NOTHEMING","features":[616]},{"name":"SES_EX_USEMOUSEWPARAM","features":[616]},{"name":"SES_EX_USESINGLELINE","features":[616]},{"name":"SES_HIDEGRIDLINES","features":[616]},{"name":"SES_HYPERLINKTOOLTIPS","features":[616]},{"name":"SES_LBSCROLLNOTIFY","features":[616]},{"name":"SES_LOGICALCARET","features":[616]},{"name":"SES_LOWERCASE","features":[616]},{"name":"SES_MAPCPS","features":[616]},{"name":"SES_MAX","features":[616]},{"name":"SES_MULTISELECT","features":[616]},{"name":"SES_NOEALINEHEIGHTADJUST","features":[616]},{"name":"SES_NOFOCUSLINKNOTIFY","features":[616]},{"name":"SES_NOIME","features":[616]},{"name":"SES_NOINPUTSEQUENCECHK","features":[616]},{"name":"SES_SCROLLONKILLFOCUS","features":[616]},{"name":"SES_SMARTDRAGDROP","features":[616]},{"name":"SES_UPPERCASE","features":[616]},{"name":"SES_USEAIMM","features":[616]},{"name":"SES_USEATFONT","features":[616]},{"name":"SES_USECRLF","features":[616]},{"name":"SES_USECTF","features":[616]},{"name":"SES_WORDDRAGDROP","features":[616]},{"name":"SES_XLTCRCRLFTOCR","features":[616]},{"name":"SETTEXTEX","features":[616]},{"name":"SFF_KEEPDOCINFO","features":[616]},{"name":"SFF_PERSISTVIEWSCALE","features":[616]},{"name":"SFF_PLAINRTF","features":[616]},{"name":"SFF_PWD","features":[616]},{"name":"SFF_SELECTION","features":[616]},{"name":"SFF_WRITEXTRAPAR","features":[616]},{"name":"SF_NCRFORNONASCII","features":[616]},{"name":"SF_RTF","features":[616]},{"name":"SF_RTFNOOBJS","features":[616]},{"name":"SF_RTFVAL","features":[616]},{"name":"SF_TEXT","features":[616]},{"name":"SF_TEXTIZED","features":[616]},{"name":"SF_UNICODE","features":[616]},{"name":"SF_USECODEPAGE","features":[616]},{"name":"SPF_DONTSETDEFAULT","features":[616]},{"name":"SPF_SETDEFAULT","features":[616]},{"name":"ST_DEFAULT","features":[616]},{"name":"ST_KEEPUNDO","features":[616]},{"name":"ST_NEWCHARS","features":[616]},{"name":"ST_SELECTION","features":[616]},{"name":"ST_UNICODE","features":[616]},{"name":"S_MSG_KEY_IGNORED","features":[616]},{"name":"TABLECELLPARMS","features":[303,616]},{"name":"TABLEROWPARMS","features":[616]},{"name":"TEXTMODE","features":[616]},{"name":"TEXTRANGEA","features":[616]},{"name":"TEXTRANGEA","features":[616]},{"name":"TEXTRANGEW","features":[616]},{"name":"TEXTRANGEW","features":[616]},{"name":"TM_MULTICODEPAGE","features":[616]},{"name":"TM_MULTILEVELUNDO","features":[616]},{"name":"TM_PLAINTEXT","features":[616]},{"name":"TM_RICHTEXT","features":[616]},{"name":"TM_SINGLECODEPAGE","features":[616]},{"name":"TM_SINGLELEVELUNDO","features":[616]},{"name":"TO_ADVANCEDLAYOUT","features":[616]},{"name":"TO_ADVANCEDTYPOGRAPHY","features":[616]},{"name":"TO_DISABLECUSTOMTEXTOUT","features":[616]},{"name":"TO_SIMPLELINEBREAK","features":[616]},{"name":"TXES_ISDIALOG","features":[616]},{"name":"TXTBACKSTYLE","features":[616]},{"name":"TXTBACK_OPAQUE","features":[616]},{"name":"TXTBACK_TRANSPARENT","features":[616]},{"name":"TXTBIT_ADVANCEDINPUT","features":[616]},{"name":"TXTBIT_ALLOWBEEP","features":[616]},{"name":"TXTBIT_AUTOWORDSEL","features":[616]},{"name":"TXTBIT_BACKSTYLECHANGE","features":[616]},{"name":"TXTBIT_CHARFORMATCHANGE","features":[616]},{"name":"TXTBIT_CLIENTRECTCHANGE","features":[616]},{"name":"TXTBIT_D2DDWRITE","features":[616]},{"name":"TXTBIT_D2DPIXELSNAPPED","features":[616]},{"name":"TXTBIT_D2DSIMPLETYPOGRAPHY","features":[616]},{"name":"TXTBIT_D2DSUBPIXELLINES","features":[616]},{"name":"TXTBIT_DISABLEDRAG","features":[616]},{"name":"TXTBIT_EXTENTCHANGE","features":[616]},{"name":"TXTBIT_FLASHLASTPASSWORDCHAR","features":[616]},{"name":"TXTBIT_HIDESELECTION","features":[616]},{"name":"TXTBIT_MAXLENGTHCHANGE","features":[616]},{"name":"TXTBIT_MULTILINE","features":[616]},{"name":"TXTBIT_NOTHREADREFCOUNT","features":[616]},{"name":"TXTBIT_PARAFORMATCHANGE","features":[616]},{"name":"TXTBIT_READONLY","features":[616]},{"name":"TXTBIT_RICHTEXT","features":[616]},{"name":"TXTBIT_SAVESELECTION","features":[616]},{"name":"TXTBIT_SCROLLBARCHANGE","features":[616]},{"name":"TXTBIT_SELBARCHANGE","features":[616]},{"name":"TXTBIT_SHOWACCELERATOR","features":[616]},{"name":"TXTBIT_SHOWPASSWORD","features":[616]},{"name":"TXTBIT_USECURRENTBKG","features":[616]},{"name":"TXTBIT_USEPASSWORD","features":[616]},{"name":"TXTBIT_VERTICAL","features":[616]},{"name":"TXTBIT_VIEWINSETCHANGE","features":[616]},{"name":"TXTBIT_WORDWRAP","features":[616]},{"name":"TXTHITRESULT","features":[616]},{"name":"TXTHITRESULT_CLOSE","features":[616]},{"name":"TXTHITRESULT_HIT","features":[616]},{"name":"TXTHITRESULT_NOHIT","features":[616]},{"name":"TXTHITRESULT_TRANSPARENT","features":[616]},{"name":"TXTNATURALSIZE","features":[616]},{"name":"TXTNS_EMU","features":[616]},{"name":"TXTNS_FITTOCONTENT","features":[616]},{"name":"TXTNS_FITTOCONTENT2","features":[616]},{"name":"TXTNS_FITTOCONTENT3","features":[616]},{"name":"TXTNS_FITTOCONTENTWSP","features":[616]},{"name":"TXTNS_INCLUDELASTLINE","features":[616]},{"name":"TXTNS_ROUNDTOLINE","features":[616]},{"name":"TXTVIEW","features":[616]},{"name":"TXTVIEW_ACTIVE","features":[616]},{"name":"TXTVIEW_INACTIVE","features":[616]},{"name":"UID_AUTOTABLE","features":[616]},{"name":"UID_CUT","features":[616]},{"name":"UID_DELETE","features":[616]},{"name":"UID_DRAGDROP","features":[616]},{"name":"UID_PASTE","features":[616]},{"name":"UID_TYPING","features":[616]},{"name":"UID_UNKNOWN","features":[616]},{"name":"UNDONAMEID","features":[616]},{"name":"VM_NORMAL","features":[616]},{"name":"VM_OUTLINE","features":[616]},{"name":"VM_PAGE","features":[616]},{"name":"WBF_CUSTOM","features":[616]},{"name":"WBF_LEVEL1","features":[616]},{"name":"WBF_LEVEL2","features":[616]},{"name":"WBF_OVERFLOW","features":[616]},{"name":"WBF_WORDBREAK","features":[616]},{"name":"WBF_WORDWRAP","features":[616]},{"name":"WB_MOVEWORDNEXT","features":[616]},{"name":"WB_MOVEWORDPREV","features":[616]},{"name":"WB_NEXTBREAK","features":[616]},{"name":"WB_PREVBREAK","features":[616]},{"name":"cchTextLimitDefault","features":[616]},{"name":"khyphAddBefore","features":[616]},{"name":"khyphChangeAfter","features":[616]},{"name":"khyphChangeBefore","features":[616]},{"name":"khyphDelAndChange","features":[616]},{"name":"khyphDeleteBefore","features":[616]},{"name":"khyphNil","features":[616]},{"name":"khyphNormal","features":[616]},{"name":"lDefaultTab","features":[616]},{"name":"tomAboriginal","features":[616]},{"name":"tomAccent","features":[616]},{"name":"tomAdjustCRLF","features":[616]},{"name":"tomAlignBar","features":[616]},{"name":"tomAlignCenter","features":[616]},{"name":"tomAlignDecimal","features":[616]},{"name":"tomAlignDefault","features":[616]},{"name":"tomAlignInterLetter","features":[616]},{"name":"tomAlignInterWord","features":[616]},{"name":"tomAlignJustify","features":[616]},{"name":"tomAlignLeft","features":[616]},{"name":"tomAlignMatchAscentDescent","features":[616]},{"name":"tomAlignNewspaper","features":[616]},{"name":"tomAlignRight","features":[616]},{"name":"tomAlignScaled","features":[616]},{"name":"tomAllCaps","features":[616]},{"name":"tomAllowFinalEOP","features":[616]},{"name":"tomAllowMathBold","features":[616]},{"name":"tomAllowOffClient","features":[616]},{"name":"tomAnimationMax","features":[616]},{"name":"tomAnsi","features":[616]},{"name":"tomApplyLater","features":[616]},{"name":"tomApplyNow","features":[616]},{"name":"tomApplyRtfDocProps","features":[616]},{"name":"tomApplyTmp","features":[616]},{"name":"tomArabic","features":[616]},{"name":"tomArmenian","features":[616]},{"name":"tomAtEnd","features":[616]},{"name":"tomAutoBackColor","features":[616]},{"name":"tomAutoColor","features":[616]},{"name":"tomAutoLinkEmail","features":[616]},{"name":"tomAutoLinkPath","features":[616]},{"name":"tomAutoLinkPhone","features":[616]},{"name":"tomAutoLinkURL","features":[616]},{"name":"tomAutoSpaceAlpha","features":[616]},{"name":"tomAutoSpaceNumeric","features":[616]},{"name":"tomAutoSpaceParens","features":[616]},{"name":"tomAutoTextColor","features":[616]},{"name":"tomBIG5","features":[616]},{"name":"tomBackward","features":[616]},{"name":"tomBaltic","features":[616]},{"name":"tomBengali","features":[616]},{"name":"tomBlinkingBackground","features":[616]},{"name":"tomBold","features":[616]},{"name":"tomBox","features":[616]},{"name":"tomBoxAlignCenter","features":[616]},{"name":"tomBoxHideBottom","features":[616]},{"name":"tomBoxHideLeft","features":[616]},{"name":"tomBoxHideRight","features":[616]},{"name":"tomBoxHideTop","features":[616]},{"name":"tomBoxStrikeBLTR","features":[616]},{"name":"tomBoxStrikeH","features":[616]},{"name":"tomBoxStrikeTLBR","features":[616]},{"name":"tomBoxStrikeV","features":[616]},{"name":"tomBoxedFormula","features":[616]},{"name":"tomBrackets","features":[616]},{"name":"tomBracketsWithSeps","features":[616]},{"name":"tomBraille","features":[616]},{"name":"tomCacheParms","features":[616]},{"name":"tomCanCopy","features":[616]},{"name":"tomCanRedo","features":[616]},{"name":"tomCanUndo","features":[616]},{"name":"tomCell","features":[616]},{"name":"tomCellStructureChangeOnly","features":[616]},{"name":"tomCharFormat","features":[616]},{"name":"tomCharRepFromLcid","features":[616]},{"name":"tomCharRepMax","features":[616]},{"name":"tomCharacter","features":[616]},{"name":"tomCharset","features":[616]},{"name":"tomCheckTextLimit","features":[616]},{"name":"tomCherokee","features":[616]},{"name":"tomClientCoord","features":[616]},{"name":"tomClientLink","features":[616]},{"name":"tomCluster","features":[616]},{"name":"tomCollapseEnd","features":[616]},{"name":"tomCollapseStart","features":[616]},{"name":"tomColumn","features":[616]},{"name":"tomCommentsStory","features":[616]},{"name":"tomCompressMax","features":[616]},{"name":"tomCompressNone","features":[616]},{"name":"tomCompressPunctuation","features":[616]},{"name":"tomCompressPunctuationAndKana","features":[616]},{"name":"tomConstants","features":[616]},{"name":"tomConvertMathChar","features":[616]},{"name":"tomConvertRTF","features":[616]},{"name":"tomCreateAlways","features":[616]},{"name":"tomCreateNew","features":[616]},{"name":"tomCyrillic","features":[616]},{"name":"tomDash","features":[616]},{"name":"tomDashDot","features":[616]},{"name":"tomDashDotDot","features":[616]},{"name":"tomDashes","features":[616]},{"name":"tomDecDecSize","features":[616]},{"name":"tomDecSize","features":[616]},{"name":"tomDefault","features":[616]},{"name":"tomDefaultCharRep","features":[616]},{"name":"tomDefaultTab","features":[616]},{"name":"tomDeseret","features":[616]},{"name":"tomDevanagari","features":[616]},{"name":"tomDisableSmartFont","features":[616]},{"name":"tomDisabled","features":[616]},{"name":"tomDocAutoLink","features":[616]},{"name":"tomDocMathBuild","features":[616]},{"name":"tomDontGrowWithContent","features":[616]},{"name":"tomDots","features":[616]},{"name":"tomDotted","features":[616]},{"name":"tomDouble","features":[616]},{"name":"tomDoubleWave","features":[616]},{"name":"tomDoublestrike","features":[616]},{"name":"tomEastEurope","features":[616]},{"name":"tomEllipsisEnd","features":[616]},{"name":"tomEllipsisMode","features":[616]},{"name":"tomEllipsisNone","features":[616]},{"name":"tomEllipsisPresent","features":[616]},{"name":"tomEllipsisState","features":[616]},{"name":"tomEllipsisWord","features":[616]},{"name":"tomEmbeddedFont","features":[616]},{"name":"tomEmboss","features":[616]},{"name":"tomEmoji","features":[616]},{"name":"tomEnableSmartFont","features":[616]},{"name":"tomEnd","features":[616]},{"name":"tomEndnotesStory","features":[616]},{"name":"tomEq","features":[616]},{"name":"tomEqArrayAlignBottomRow","features":[616]},{"name":"tomEqArrayAlignCenter","features":[616]},{"name":"tomEqArrayAlignMask","features":[616]},{"name":"tomEqArrayAlignTopRow","features":[616]},{"name":"tomEqArrayLayoutWidth","features":[616]},{"name":"tomEquals","features":[616]},{"name":"tomEquationArray","features":[616]},{"name":"tomEthiopic","features":[616]},{"name":"tomEvenPagesFooterStory","features":[616]},{"name":"tomEvenPagesHeaderStory","features":[616]},{"name":"tomExtend","features":[616]},{"name":"tomExtendedChar","features":[616]},{"name":"tomFalse","features":[616]},{"name":"tomFindStory","features":[616]},{"name":"tomFirstPageFooterStory","features":[616]},{"name":"tomFirstPageHeaderStory","features":[616]},{"name":"tomFoldMathAlpha","features":[616]},{"name":"tomFontAlignmentAuto","features":[616]},{"name":"tomFontAlignmentBaseline","features":[616]},{"name":"tomFontAlignmentBottom","features":[616]},{"name":"tomFontAlignmentCenter","features":[616]},{"name":"tomFontAlignmentMax","features":[616]},{"name":"tomFontAlignmentTop","features":[616]},{"name":"tomFontBound","features":[616]},{"name":"tomFontPropAlign","features":[616]},{"name":"tomFontPropTeXStyle","features":[616]},{"name":"tomFontStretch","features":[616]},{"name":"tomFontStretchCondensed","features":[616]},{"name":"tomFontStretchDefault","features":[616]},{"name":"tomFontStretchExpanded","features":[616]},{"name":"tomFontStretchExtraCondensed","features":[616]},{"name":"tomFontStretchExtraExpanded","features":[616]},{"name":"tomFontStretchNormal","features":[616]},{"name":"tomFontStretchSemiCondensed","features":[616]},{"name":"tomFontStretchSemiExpanded","features":[616]},{"name":"tomFontStretchUltraCondensed","features":[616]},{"name":"tomFontStretchUltraExpanded","features":[616]},{"name":"tomFontStyle","features":[616]},{"name":"tomFontStyleItalic","features":[616]},{"name":"tomFontStyleOblique","features":[616]},{"name":"tomFontStyleUpright","features":[616]},{"name":"tomFontWeightBlack","features":[616]},{"name":"tomFontWeightBold","features":[616]},{"name":"tomFontWeightDefault","features":[616]},{"name":"tomFontWeightExtraBlack","features":[616]},{"name":"tomFontWeightExtraBold","features":[616]},{"name":"tomFontWeightExtraLight","features":[616]},{"name":"tomFontWeightHeavy","features":[616]},{"name":"tomFontWeightLight","features":[616]},{"name":"tomFontWeightMedium","features":[616]},{"name":"tomFontWeightNormal","features":[616]},{"name":"tomFontWeightRegular","features":[616]},{"name":"tomFontWeightSemiBold","features":[616]},{"name":"tomFontWeightThin","features":[616]},{"name":"tomFootnotesStory","features":[616]},{"name":"tomForward","features":[616]},{"name":"tomFraction","features":[616]},{"name":"tomFriendlyLinkAddress","features":[616]},{"name":"tomFriendlyLinkName","features":[616]},{"name":"tomFunctionApply","features":[616]},{"name":"tomFunctionTypeIsLim","features":[616]},{"name":"tomFunctionTypeNone","features":[616]},{"name":"tomFunctionTypeTakesArg","features":[616]},{"name":"tomFunctionTypeTakesLim","features":[616]},{"name":"tomFunctionTypeTakesLim2","features":[616]},{"name":"tomGB2312","features":[616]},{"name":"tomGeorgian","features":[616]},{"name":"tomGetHeightOnly","features":[616]},{"name":"tomGlagolitic","features":[616]},{"name":"tomGothic","features":[616]},{"name":"tomGravityBack","features":[616]},{"name":"tomGravityBackward","features":[616]},{"name":"tomGravityFore","features":[616]},{"name":"tomGravityForward","features":[616]},{"name":"tomGravityIn","features":[616]},{"name":"tomGravityOut","features":[616]},{"name":"tomGravityUI","features":[616]},{"name":"tomGreek","features":[616]},{"name":"tomGrowWithContent","features":[616]},{"name":"tomGujarati","features":[616]},{"name":"tomGurmukhi","features":[616]},{"name":"tomHContCell","features":[616]},{"name":"tomHStartCell","features":[616]},{"name":"tomHTML","features":[616]},{"name":"tomHair","features":[616]},{"name":"tomHangul","features":[616]},{"name":"tomHardParagraph","features":[616]},{"name":"tomHeavyWave","features":[616]},{"name":"tomHebrew","features":[616]},{"name":"tomHidden","features":[616]},{"name":"tomHorzVert","features":[616]},{"name":"tomHstring","features":[616]},{"name":"tomIgnoreCurrentFont","features":[616]},{"name":"tomIgnoreNumberStyle","features":[616]},{"name":"tomImprint","features":[616]},{"name":"tomIncIncSize","features":[616]},{"name":"tomIncSize","features":[616]},{"name":"tomIncludeInset","features":[616]},{"name":"tomIncludeNumbering","features":[616]},{"name":"tomInlineObject","features":[616]},{"name":"tomInlineObjectArg","features":[616]},{"name":"tomInlineObjectStart","features":[616]},{"name":"tomItalic","features":[616]},{"name":"tomJamo","features":[616]},{"name":"tomKannada","features":[616]},{"name":"tomKayahli","features":[616]},{"name":"tomKharoshthi","features":[616]},{"name":"tomKhmer","features":[616]},{"name":"tomKoreanBlockCaret","features":[616]},{"name":"tomLanguageTag","features":[616]},{"name":"tomLao","features":[616]},{"name":"tomLasVegasLights","features":[616]},{"name":"tomLayoutColumn","features":[616]},{"name":"tomLeafLine","features":[616]},{"name":"tomLeftSubSup","features":[616]},{"name":"tomLimbu","features":[616]},{"name":"tomLimitAlignCenter","features":[616]},{"name":"tomLimitAlignLeft","features":[616]},{"name":"tomLimitAlignMask","features":[616]},{"name":"tomLimitAlignRight","features":[616]},{"name":"tomLimitsDefault","features":[616]},{"name":"tomLimitsOpposite","features":[616]},{"name":"tomLimitsSubSup","features":[616]},{"name":"tomLimitsUnderOver","features":[616]},{"name":"tomLine","features":[616]},{"name":"tomLineSpace1pt5","features":[616]},{"name":"tomLineSpaceAtLeast","features":[616]},{"name":"tomLineSpaceDouble","features":[616]},{"name":"tomLineSpaceExactly","features":[616]},{"name":"tomLineSpaceMultiple","features":[616]},{"name":"tomLineSpacePercent","features":[616]},{"name":"tomLineSpaceSingle","features":[616]},{"name":"tomLines","features":[616]},{"name":"tomLink","features":[616]},{"name":"tomLinkProtected","features":[616]},{"name":"tomListBullet","features":[616]},{"name":"tomListMinus","features":[616]},{"name":"tomListNoNumber","features":[616]},{"name":"tomListNone","features":[616]},{"name":"tomListNumberAsArabic","features":[616]},{"name":"tomListNumberAsLCLetter","features":[616]},{"name":"tomListNumberAsLCRoman","features":[616]},{"name":"tomListNumberAsSequence","features":[616]},{"name":"tomListNumberAsUCLetter","features":[616]},{"name":"tomListNumberAsUCRoman","features":[616]},{"name":"tomListNumberedArabic1","features":[616]},{"name":"tomListNumberedArabic2","features":[616]},{"name":"tomListNumberedArabicWide","features":[616]},{"name":"tomListNumberedBlackCircleWingding","features":[616]},{"name":"tomListNumberedChS","features":[616]},{"name":"tomListNumberedChT","features":[616]},{"name":"tomListNumberedCircle","features":[616]},{"name":"tomListNumberedHebrew","features":[616]},{"name":"tomListNumberedHindiAlpha","features":[616]},{"name":"tomListNumberedHindiAlpha1","features":[616]},{"name":"tomListNumberedHindiNum","features":[616]},{"name":"tomListNumberedJpnChS","features":[616]},{"name":"tomListNumberedJpnKor","features":[616]},{"name":"tomListNumberedThaiAlpha","features":[616]},{"name":"tomListNumberedThaiNum","features":[616]},{"name":"tomListNumberedWhiteCircleWingding","features":[616]},{"name":"tomListParentheses","features":[616]},{"name":"tomListPeriod","features":[616]},{"name":"tomListPlain","features":[616]},{"name":"tomLisu","features":[616]},{"name":"tomLongDash","features":[616]},{"name":"tomLowerCase","features":[616]},{"name":"tomLowerLimit","features":[616]},{"name":"tomMac","features":[616]},{"name":"tomMainTextStory","features":[616]},{"name":"tomMalayalam","features":[616]},{"name":"tomMarchingBlackAnts","features":[616]},{"name":"tomMarchingRedAnts","features":[616]},{"name":"tomMatchAscii","features":[616]},{"name":"tomMatchCase","features":[616]},{"name":"tomMatchCharRep","features":[616]},{"name":"tomMatchFontSignature","features":[616]},{"name":"tomMatchMathFont","features":[616]},{"name":"tomMatchPattern","features":[616]},{"name":"tomMatchWord","features":[616]},{"name":"tomMath","features":[616]},{"name":"tomMathArgShadingEnd","features":[616]},{"name":"tomMathArgShadingStart","features":[616]},{"name":"tomMathBreakCenter","features":[616]},{"name":"tomMathBreakLeft","features":[616]},{"name":"tomMathBreakRight","features":[616]},{"name":"tomMathBrkBinAfter","features":[616]},{"name":"tomMathBrkBinBefore","features":[616]},{"name":"tomMathBrkBinDup","features":[616]},{"name":"tomMathBrkBinMask","features":[616]},{"name":"tomMathBrkBinSubMM","features":[616]},{"name":"tomMathBrkBinSubMP","features":[616]},{"name":"tomMathBrkBinSubMask","features":[616]},{"name":"tomMathBrkBinSubPM","features":[616]},{"name":"tomMathCFCheck","features":[616]},{"name":"tomMathDispAlignCenter","features":[616]},{"name":"tomMathDispAlignCenterGroup","features":[616]},{"name":"tomMathDispAlignLeft","features":[616]},{"name":"tomMathDispAlignMask","features":[616]},{"name":"tomMathDispAlignRight","features":[616]},{"name":"tomMathDispDef","features":[616]},{"name":"tomMathDispFracTeX","features":[616]},{"name":"tomMathDispIntUnderOver","features":[616]},{"name":"tomMathDispNaryGrow","features":[616]},{"name":"tomMathDispNarySubSup","features":[616]},{"name":"tomMathDocDiffDefault","features":[616]},{"name":"tomMathDocDiffItalic","features":[616]},{"name":"tomMathDocDiffMask","features":[616]},{"name":"tomMathDocDiffOpenItalic","features":[616]},{"name":"tomMathDocDiffUpright","features":[616]},{"name":"tomMathDocEmptyArgAlways","features":[616]},{"name":"tomMathDocEmptyArgAuto","features":[616]},{"name":"tomMathDocEmptyArgMask","features":[616]},{"name":"tomMathDocEmptyArgNever","features":[616]},{"name":"tomMathDocSbSpOpUnchanged","features":[616]},{"name":"tomMathEnableRtl","features":[616]},{"name":"tomMathEqAlign","features":[616]},{"name":"tomMathInterSpace","features":[616]},{"name":"tomMathIntraSpace","features":[616]},{"name":"tomMathLMargin","features":[616]},{"name":"tomMathManualBreakMask","features":[616]},{"name":"tomMathObjShadingEnd","features":[616]},{"name":"tomMathObjShadingStart","features":[616]},{"name":"tomMathParaAlignCenter","features":[616]},{"name":"tomMathParaAlignCenterGroup","features":[616]},{"name":"tomMathParaAlignDefault","features":[616]},{"name":"tomMathParaAlignLeft","features":[616]},{"name":"tomMathParaAlignRight","features":[616]},{"name":"tomMathPostSpace","features":[616]},{"name":"tomMathPreSpace","features":[616]},{"name":"tomMathRMargin","features":[616]},{"name":"tomMathRelSize","features":[616]},{"name":"tomMathVariant","features":[616]},{"name":"tomMathWrapIndent","features":[616]},{"name":"tomMathWrapRight","features":[616]},{"name":"tomMathZone","features":[616]},{"name":"tomMathZoneDisplay","features":[616]},{"name":"tomMathZoneNoBuildUp","features":[616]},{"name":"tomMathZoneOrdinary","features":[616]},{"name":"tomMatrix","features":[616]},{"name":"tomMatrixAlignBottomRow","features":[616]},{"name":"tomMatrixAlignCenter","features":[616]},{"name":"tomMatrixAlignMask","features":[616]},{"name":"tomMatrixAlignTopRow","features":[616]},{"name":"tomModWidthPairs","features":[616]},{"name":"tomModWidthSpace","features":[616]},{"name":"tomMongolian","features":[616]},{"name":"tomMove","features":[616]},{"name":"tomMyanmar","features":[616]},{"name":"tomNKo","features":[616]},{"name":"tomNary","features":[616]},{"name":"tomNewTaiLue","features":[616]},{"name":"tomNoAnimation","features":[616]},{"name":"tomNoBreak","features":[616]},{"name":"tomNoHidden","features":[616]},{"name":"tomNoIME","features":[616]},{"name":"tomNoLink","features":[616]},{"name":"tomNoMathZoneBrackets","features":[616]},{"name":"tomNoSelection","features":[616]},{"name":"tomNoUCGreekItalic","features":[616]},{"name":"tomNoUpScroll","features":[616]},{"name":"tomNoVpScroll","features":[616]},{"name":"tomNone","features":[616]},{"name":"tomNormalCaret","features":[616]},{"name":"tomNullCaret","features":[616]},{"name":"tomOEM","features":[616]},{"name":"tomObject","features":[616]},{"name":"tomObjectArg","features":[616]},{"name":"tomObjectMax","features":[616]},{"name":"tomOgham","features":[616]},{"name":"tomOpChar","features":[616]},{"name":"tomOpenAlways","features":[616]},{"name":"tomOpenExisting","features":[616]},{"name":"tomOriya","features":[616]},{"name":"tomOsmanya","features":[616]},{"name":"tomOutline","features":[616]},{"name":"tomOverbar","features":[616]},{"name":"tomOverlapping","features":[616]},{"name":"tomPC437","features":[616]},{"name":"tomPage","features":[616]},{"name":"tomParaEffectBox","features":[616]},{"name":"tomParaEffectCollapsed","features":[616]},{"name":"tomParaEffectDoNotHyphen","features":[616]},{"name":"tomParaEffectKeep","features":[616]},{"name":"tomParaEffectKeepNext","features":[616]},{"name":"tomParaEffectNoLineNumber","features":[616]},{"name":"tomParaEffectNoWidowControl","features":[616]},{"name":"tomParaEffectOutlineLevel","features":[616]},{"name":"tomParaEffectPageBreakBefore","features":[616]},{"name":"tomParaEffectRTL","features":[616]},{"name":"tomParaEffectSideBySide","features":[616]},{"name":"tomParaEffectTable","features":[616]},{"name":"tomParaEffectTableRowDelimiter","features":[616]},{"name":"tomParaFormat","features":[616]},{"name":"tomParaPropMathAlign","features":[616]},{"name":"tomParaStyleHeading1","features":[616]},{"name":"tomParaStyleHeading2","features":[616]},{"name":"tomParaStyleHeading3","features":[616]},{"name":"tomParaStyleHeading4","features":[616]},{"name":"tomParaStyleHeading5","features":[616]},{"name":"tomParaStyleHeading6","features":[616]},{"name":"tomParaStyleHeading7","features":[616]},{"name":"tomParaStyleHeading8","features":[616]},{"name":"tomParaStyleHeading9","features":[616]},{"name":"tomParaStyleNormal","features":[616]},{"name":"tomParagraph","features":[616]},{"name":"tomPasteFile","features":[616]},{"name":"tomPhagsPa","features":[616]},{"name":"tomPhantom","features":[616]},{"name":"tomPhantomASmash","features":[616]},{"name":"tomPhantomDSmash","features":[616]},{"name":"tomPhantomHSmash","features":[616]},{"name":"tomPhantomHorz","features":[616]},{"name":"tomPhantomShow","features":[616]},{"name":"tomPhantomSmash","features":[616]},{"name":"tomPhantomTransparent","features":[616]},{"name":"tomPhantomVert","features":[616]},{"name":"tomPhantomZeroAscent","features":[616]},{"name":"tomPhantomZeroDescent","features":[616]},{"name":"tomPhantomZeroWidth","features":[616]},{"name":"tomPrimaryFooterStory","features":[616]},{"name":"tomPrimaryHeaderStory","features":[616]},{"name":"tomProcessId","features":[616]},{"name":"tomProtected","features":[616]},{"name":"tomRE10Mode","features":[616]},{"name":"tomRTF","features":[616]},{"name":"tomRadical","features":[616]},{"name":"tomReadOnly","features":[616]},{"name":"tomReplaceStory","features":[616]},{"name":"tomResume","features":[616]},{"name":"tomRevised","features":[616]},{"name":"tomRow","features":[616]},{"name":"tomRowApplyDefault","features":[616]},{"name":"tomRowHeightActual","features":[616]},{"name":"tomRowUpdate","features":[616]},{"name":"tomRuby","features":[616]},{"name":"tomRubyAlign010","features":[616]},{"name":"tomRubyAlign121","features":[616]},{"name":"tomRubyAlignCenter","features":[616]},{"name":"tomRubyAlignLeft","features":[616]},{"name":"tomRubyAlignRight","features":[616]},{"name":"tomRubyBelow","features":[616]},{"name":"tomRunic","features":[616]},{"name":"tomScratchStory","features":[616]},{"name":"tomScreen","features":[616]},{"name":"tomSection","features":[616]},{"name":"tomSelActive","features":[616]},{"name":"tomSelAtEOL","features":[616]},{"name":"tomSelOvertype","features":[616]},{"name":"tomSelRange","features":[616]},{"name":"tomSelReplace","features":[616]},{"name":"tomSelStartActive","features":[616]},{"name":"tomSelectionBlock","features":[616]},{"name":"tomSelectionColumn","features":[616]},{"name":"tomSelectionFrame","features":[616]},{"name":"tomSelectionIP","features":[616]},{"name":"tomSelectionInlineShape","features":[616]},{"name":"tomSelectionNormal","features":[616]},{"name":"tomSelectionRow","features":[616]},{"name":"tomSelectionShape","features":[616]},{"name":"tomSelfIME","features":[616]},{"name":"tomSentence","features":[616]},{"name":"tomSentenceCase","features":[616]},{"name":"tomShadow","features":[616]},{"name":"tomShareDenyRead","features":[616]},{"name":"tomShareDenyWrite","features":[616]},{"name":"tomShiftJIS","features":[616]},{"name":"tomShimmer","features":[616]},{"name":"tomShowDegPlaceHldr","features":[616]},{"name":"tomShowLLimPlaceHldr","features":[616]},{"name":"tomShowMatPlaceHldr","features":[616]},{"name":"tomShowULimPlaceHldr","features":[616]},{"name":"tomSimpleText","features":[616]},{"name":"tomSingle","features":[616]},{"name":"tomSinhala","features":[616]},{"name":"tomSizeScript","features":[616]},{"name":"tomSizeScriptScript","features":[616]},{"name":"tomSizeText","features":[616]},{"name":"tomSlashedFraction","features":[616]},{"name":"tomSmallCaps","features":[616]},{"name":"tomSpaceBinary","features":[616]},{"name":"tomSpaceDefault","features":[616]},{"name":"tomSpaceDifferential","features":[616]},{"name":"tomSpaceMask","features":[616]},{"name":"tomSpaceOrd","features":[616]},{"name":"tomSpaceRelational","features":[616]},{"name":"tomSpaceSkip","features":[616]},{"name":"tomSpaceUnary","features":[616]},{"name":"tomSpaces","features":[616]},{"name":"tomSparkleText","features":[616]},{"name":"tomStack","features":[616]},{"name":"tomStart","features":[616]},{"name":"tomStory","features":[616]},{"name":"tomStoryActiveDisplay","features":[616]},{"name":"tomStoryActiveDisplayUI","features":[616]},{"name":"tomStoryActiveUI","features":[616]},{"name":"tomStoryInactive","features":[616]},{"name":"tomStretchBaseAbove","features":[616]},{"name":"tomStretchBaseBelow","features":[616]},{"name":"tomStretchCharAbove","features":[616]},{"name":"tomStretchCharBelow","features":[616]},{"name":"tomStretchStack","features":[616]},{"name":"tomStrikeout","features":[616]},{"name":"tomStyleDefault","features":[616]},{"name":"tomStyleDisplay","features":[616]},{"name":"tomStyleDisplayCramped","features":[616]},{"name":"tomStyleScript","features":[616]},{"name":"tomStyleScriptCramped","features":[616]},{"name":"tomStyleScriptScript","features":[616]},{"name":"tomStyleScriptScriptCramped","features":[616]},{"name":"tomStyleText","features":[616]},{"name":"tomStyleTextCramped","features":[616]},{"name":"tomSubSup","features":[616]},{"name":"tomSubSupAlign","features":[616]},{"name":"tomSubscript","features":[616]},{"name":"tomSubscriptCF","features":[616]},{"name":"tomSuperscript","features":[616]},{"name":"tomSuperscriptCF","features":[616]},{"name":"tomSuspend","features":[616]},{"name":"tomSylotiNagri","features":[616]},{"name":"tomSymbol","features":[616]},{"name":"tomSyriac","features":[616]},{"name":"tomTabBack","features":[616]},{"name":"tomTabHere","features":[616]},{"name":"tomTabNext","features":[616]},{"name":"tomTable","features":[616]},{"name":"tomTableColumn","features":[616]},{"name":"tomTaiLe","features":[616]},{"name":"tomTamil","features":[616]},{"name":"tomTelugu","features":[616]},{"name":"tomText","features":[616]},{"name":"tomTextFlowES","features":[616]},{"name":"tomTextFlowMask","features":[616]},{"name":"tomTextFlowNE","features":[616]},{"name":"tomTextFlowSW","features":[616]},{"name":"tomTextFlowWN","features":[616]},{"name":"tomTextFrameStory","features":[616]},{"name":"tomTextize","features":[616]},{"name":"tomThaana","features":[616]},{"name":"tomThai","features":[616]},{"name":"tomThick","features":[616]},{"name":"tomThickDash","features":[616]},{"name":"tomThickDashDot","features":[616]},{"name":"tomThickDashDotDot","features":[616]},{"name":"tomThickDotted","features":[616]},{"name":"tomThickLines","features":[616]},{"name":"tomThickLongDash","features":[616]},{"name":"tomTibetan","features":[616]},{"name":"tomTifinagh","features":[616]},{"name":"tomTitleCase","features":[616]},{"name":"tomToggle","features":[616]},{"name":"tomToggleCase","features":[616]},{"name":"tomTrackParms","features":[616]},{"name":"tomTransform","features":[616]},{"name":"tomTranslateTableCell","features":[616]},{"name":"tomTransparentForPositioning","features":[616]},{"name":"tomTransparentForSpacing","features":[616]},{"name":"tomTrue","features":[616]},{"name":"tomTruncateExisting","features":[616]},{"name":"tomTurkish","features":[616]},{"name":"tomUndefined","features":[616]},{"name":"tomUnderbar","features":[616]},{"name":"tomUnderline","features":[616]},{"name":"tomUnderlinePositionAbove","features":[616]},{"name":"tomUnderlinePositionAuto","features":[616]},{"name":"tomUnderlinePositionBelow","features":[616]},{"name":"tomUnderlinePositionMax","features":[616]},{"name":"tomUndoLimit","features":[616]},{"name":"tomUnhide","features":[616]},{"name":"tomUnicodeBiDi","features":[616]},{"name":"tomUnknownStory","features":[616]},{"name":"tomUnlink","features":[616]},{"name":"tomUpperCase","features":[616]},{"name":"tomUpperLimit","features":[616]},{"name":"tomUpperLimitAsSuperScript","features":[616]},{"name":"tomUseAtFont","features":[616]},{"name":"tomUseCRLF","features":[616]},{"name":"tomUsePoints","features":[616]},{"name":"tomUseTwips","features":[616]},{"name":"tomUsymbol","features":[616]},{"name":"tomVLowCell","features":[616]},{"name":"tomVTopCell","features":[616]},{"name":"tomVai","features":[616]},{"name":"tomVietnamese","features":[616]},{"name":"tomWarichu","features":[616]},{"name":"tomWave","features":[616]},{"name":"tomWindow","features":[616]},{"name":"tomWipeDown","features":[616]},{"name":"tomWipeRight","features":[616]},{"name":"tomWord","features":[616]},{"name":"tomWordDocument","features":[616]},{"name":"tomWords","features":[616]},{"name":"tomYi","features":[616]},{"name":"yHeightCharPtsMost","features":[616]}],"653":[{"name":"AdjustWindowRectExForDpi","features":[303,617,365]},{"name":"AreDpiAwarenessContextsEqual","features":[303,617]},{"name":"DCDC_DEFAULT","features":[617]},{"name":"DCDC_DISABLE_FONT_UPDATE","features":[617]},{"name":"DCDC_DISABLE_RELAYOUT","features":[617]},{"name":"DDC_DEFAULT","features":[617]},{"name":"DDC_DISABLE_ALL","features":[617]},{"name":"DDC_DISABLE_CONTROL_RELAYOUT","features":[617]},{"name":"DDC_DISABLE_RESIZE","features":[617]},{"name":"DIALOG_CONTROL_DPI_CHANGE_BEHAVIORS","features":[617]},{"name":"DIALOG_DPI_CHANGE_BEHAVIORS","features":[617]},{"name":"DPI_AWARENESS","features":[617]},{"name":"DPI_AWARENESS_CONTEXT","features":[617]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE","features":[617]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2","features":[617]},{"name":"DPI_AWARENESS_CONTEXT_SYSTEM_AWARE","features":[617]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE","features":[617]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE_GDISCALED","features":[617]},{"name":"DPI_AWARENESS_INVALID","features":[617]},{"name":"DPI_AWARENESS_PER_MONITOR_AWARE","features":[617]},{"name":"DPI_AWARENESS_SYSTEM_AWARE","features":[617]},{"name":"DPI_AWARENESS_UNAWARE","features":[617]},{"name":"DPI_HOSTING_BEHAVIOR","features":[617]},{"name":"DPI_HOSTING_BEHAVIOR_DEFAULT","features":[617]},{"name":"DPI_HOSTING_BEHAVIOR_INVALID","features":[617]},{"name":"DPI_HOSTING_BEHAVIOR_MIXED","features":[617]},{"name":"EnableNonClientDpiScaling","features":[303,617]},{"name":"GetAwarenessFromDpiAwarenessContext","features":[617]},{"name":"GetDialogControlDpiChangeBehavior","features":[303,617]},{"name":"GetDialogDpiChangeBehavior","features":[303,617]},{"name":"GetDpiAwarenessContextForProcess","features":[303,617]},{"name":"GetDpiForMonitor","features":[314,617]},{"name":"GetDpiForSystem","features":[617]},{"name":"GetDpiForWindow","features":[303,617]},{"name":"GetDpiFromDpiAwarenessContext","features":[617]},{"name":"GetProcessDpiAwareness","features":[303,617]},{"name":"GetSystemDpiForProcess","features":[303,617]},{"name":"GetSystemMetricsForDpi","features":[617,365]},{"name":"GetThreadDpiAwarenessContext","features":[617]},{"name":"GetThreadDpiHostingBehavior","features":[617]},{"name":"GetWindowDpiAwarenessContext","features":[303,617]},{"name":"GetWindowDpiHostingBehavior","features":[303,617]},{"name":"IsValidDpiAwarenessContext","features":[303,617]},{"name":"LogicalToPhysicalPointForPerMonitorDPI","features":[303,617]},{"name":"MDT_ANGULAR_DPI","features":[617]},{"name":"MDT_DEFAULT","features":[617]},{"name":"MDT_EFFECTIVE_DPI","features":[617]},{"name":"MDT_RAW_DPI","features":[617]},{"name":"MONITOR_DPI_TYPE","features":[617]},{"name":"OpenThemeDataForDpi","features":[303,353,617]},{"name":"PROCESS_DPI_AWARENESS","features":[617]},{"name":"PROCESS_DPI_UNAWARE","features":[617]},{"name":"PROCESS_PER_MONITOR_DPI_AWARE","features":[617]},{"name":"PROCESS_SYSTEM_DPI_AWARE","features":[617]},{"name":"PhysicalToLogicalPointForPerMonitorDPI","features":[303,617]},{"name":"SetDialogControlDpiChangeBehavior","features":[303,617]},{"name":"SetDialogDpiChangeBehavior","features":[303,617]},{"name":"SetProcessDpiAwareness","features":[617]},{"name":"SetProcessDpiAwarenessContext","features":[303,617]},{"name":"SetThreadDpiAwarenessContext","features":[617]},{"name":"SetThreadDpiHostingBehavior","features":[617]},{"name":"SystemParametersInfoForDpi","features":[303,617]}],"654":[{"name":"DefRawInputProc","features":[303,618]},{"name":"GetCIMSSM","features":[303,618]},{"name":"GetCurrentInputMessageSource","features":[303,618]},{"name":"GetRawInputBuffer","features":[303,618]},{"name":"GetRawInputData","features":[618]},{"name":"GetRawInputDeviceInfoA","features":[303,618]},{"name":"GetRawInputDeviceInfoW","features":[303,618]},{"name":"GetRawInputDeviceList","features":[303,618]},{"name":"GetRegisteredRawInputDevices","features":[303,618]},{"name":"HRAWINPUT","features":[618]},{"name":"IMDT_KEYBOARD","features":[618]},{"name":"IMDT_MOUSE","features":[618]},{"name":"IMDT_PEN","features":[618]},{"name":"IMDT_TOUCH","features":[618]},{"name":"IMDT_TOUCHPAD","features":[618]},{"name":"IMDT_UNAVAILABLE","features":[618]},{"name":"IMO_HARDWARE","features":[618]},{"name":"IMO_INJECTED","features":[618]},{"name":"IMO_SYSTEM","features":[618]},{"name":"IMO_UNAVAILABLE","features":[618]},{"name":"INPUT_MESSAGE_DEVICE_TYPE","features":[618]},{"name":"INPUT_MESSAGE_ORIGIN_ID","features":[618]},{"name":"INPUT_MESSAGE_SOURCE","features":[618]},{"name":"MOUSE_ATTRIBUTES_CHANGED","features":[618]},{"name":"MOUSE_MOVE_ABSOLUTE","features":[618]},{"name":"MOUSE_MOVE_NOCOALESCE","features":[618]},{"name":"MOUSE_MOVE_RELATIVE","features":[618]},{"name":"MOUSE_STATE","features":[618]},{"name":"MOUSE_VIRTUAL_DESKTOP","features":[618]},{"name":"RAWHID","features":[618]},{"name":"RAWINPUT","features":[303,618]},{"name":"RAWINPUTDEVICE","features":[303,618]},{"name":"RAWINPUTDEVICELIST","features":[303,618]},{"name":"RAWINPUTDEVICE_FLAGS","features":[618]},{"name":"RAWINPUTHEADER","features":[303,618]},{"name":"RAWKEYBOARD","features":[618]},{"name":"RAWMOUSE","features":[618]},{"name":"RAW_INPUT_DATA_COMMAND_FLAGS","features":[618]},{"name":"RAW_INPUT_DEVICE_INFO_COMMAND","features":[618]},{"name":"RIDEV_APPKEYS","features":[618]},{"name":"RIDEV_CAPTUREMOUSE","features":[618]},{"name":"RIDEV_DEVNOTIFY","features":[618]},{"name":"RIDEV_EXCLUDE","features":[618]},{"name":"RIDEV_EXINPUTSINK","features":[618]},{"name":"RIDEV_INPUTSINK","features":[618]},{"name":"RIDEV_NOHOTKEYS","features":[618]},{"name":"RIDEV_NOLEGACY","features":[618]},{"name":"RIDEV_PAGEONLY","features":[618]},{"name":"RIDEV_REMOVE","features":[618]},{"name":"RIDI_DEVICEINFO","features":[618]},{"name":"RIDI_DEVICENAME","features":[618]},{"name":"RIDI_PREPARSEDDATA","features":[618]},{"name":"RID_DEVICE_INFO","features":[303,618]},{"name":"RID_DEVICE_INFO_HID","features":[618]},{"name":"RID_DEVICE_INFO_KEYBOARD","features":[618]},{"name":"RID_DEVICE_INFO_MOUSE","features":[303,618]},{"name":"RID_DEVICE_INFO_TYPE","features":[618]},{"name":"RID_HEADER","features":[618]},{"name":"RID_INPUT","features":[618]},{"name":"RIM_TYPEHID","features":[618]},{"name":"RIM_TYPEKEYBOARD","features":[618]},{"name":"RIM_TYPEMOUSE","features":[618]},{"name":"RegisterRawInputDevices","features":[303,618]}],"655":[{"name":"APPLETIDLIST","features":[619]},{"name":"APPLYCANDEXPARAM","features":[619]},{"name":"ATTR_CONVERTED","features":[619]},{"name":"ATTR_FIXEDCONVERTED","features":[619]},{"name":"ATTR_INPUT","features":[619]},{"name":"ATTR_INPUT_ERROR","features":[619]},{"name":"ATTR_TARGET_CONVERTED","features":[619]},{"name":"ATTR_TARGET_NOTCONVERTED","features":[619]},{"name":"CANDIDATEFORM","features":[303,619]},{"name":"CANDIDATEINFO","features":[619]},{"name":"CANDIDATELIST","features":[619]},{"name":"CATID_MSIME_IImePadApplet","features":[619]},{"name":"CATID_MSIME_IImePadApplet1000","features":[619]},{"name":"CATID_MSIME_IImePadApplet1200","features":[619]},{"name":"CATID_MSIME_IImePadApplet900","features":[619]},{"name":"CATID_MSIME_IImePadApplet_VER7","features":[619]},{"name":"CATID_MSIME_IImePadApplet_VER80","features":[619]},{"name":"CATID_MSIME_IImePadApplet_VER81","features":[619]},{"name":"CActiveIMM","features":[619]},{"name":"CFS_CANDIDATEPOS","features":[619]},{"name":"CFS_DEFAULT","features":[619]},{"name":"CFS_EXCLUDE","features":[619]},{"name":"CFS_FORCE_POSITION","features":[619]},{"name":"CFS_POINT","features":[619]},{"name":"CFS_RECT","features":[619]},{"name":"CHARINFO_APPLETID_MASK","features":[619]},{"name":"CHARINFO_CHARID_MASK","features":[619]},{"name":"CHARINFO_FEID_MASK","features":[619]},{"name":"CLSID_ImePlugInDictDictionaryList_CHS","features":[619]},{"name":"CLSID_ImePlugInDictDictionaryList_JPN","features":[619]},{"name":"CLSID_VERSION_DEPENDENT_MSIME_JAPANESE","features":[619]},{"name":"COMPOSITIONFORM","features":[303,619]},{"name":"COMPOSITIONSTRING","features":[619]},{"name":"CPS_CANCEL","features":[619]},{"name":"CPS_COMPLETE","features":[619]},{"name":"CPS_CONVERT","features":[619]},{"name":"CPS_REVERT","features":[619]},{"name":"CS_INSERTCHAR","features":[619]},{"name":"CS_NOMOVECARET","features":[619]},{"name":"E_LARGEINPUT","features":[619]},{"name":"E_NOCAND","features":[619]},{"name":"E_NOTENOUGH_BUFFER","features":[619]},{"name":"E_NOTENOUGH_WDD","features":[619]},{"name":"FEID_CHINESE_HONGKONG","features":[619]},{"name":"FEID_CHINESE_SIMPLIFIED","features":[619]},{"name":"FEID_CHINESE_SINGAPORE","features":[619]},{"name":"FEID_CHINESE_TRADITIONAL","features":[619]},{"name":"FEID_JAPANESE","features":[619]},{"name":"FEID_KOREAN","features":[619]},{"name":"FEID_KOREAN_JOHAB","features":[619]},{"name":"FEID_NONE","features":[619]},{"name":"FELANG_CLMN_FIXD","features":[619]},{"name":"FELANG_CLMN_FIXR","features":[619]},{"name":"FELANG_CLMN_NOPBREAK","features":[619]},{"name":"FELANG_CLMN_NOWBREAK","features":[619]},{"name":"FELANG_CLMN_PBREAK","features":[619]},{"name":"FELANG_CLMN_WBREAK","features":[619]},{"name":"FELANG_CMODE_AUTOMATIC","features":[619]},{"name":"FELANG_CMODE_BESTFIRST","features":[619]},{"name":"FELANG_CMODE_BOPOMOFO","features":[619]},{"name":"FELANG_CMODE_CONVERSATION","features":[619]},{"name":"FELANG_CMODE_FULLWIDTHOUT","features":[619]},{"name":"FELANG_CMODE_HALFWIDTHOUT","features":[619]},{"name":"FELANG_CMODE_HANGUL","features":[619]},{"name":"FELANG_CMODE_HIRAGANAOUT","features":[619]},{"name":"FELANG_CMODE_KATAKANAOUT","features":[619]},{"name":"FELANG_CMODE_MERGECAND","features":[619]},{"name":"FELANG_CMODE_MONORUBY","features":[619]},{"name":"FELANG_CMODE_NAME","features":[619]},{"name":"FELANG_CMODE_NOINVISIBLECHAR","features":[619]},{"name":"FELANG_CMODE_NONE","features":[619]},{"name":"FELANG_CMODE_NOPRUNING","features":[619]},{"name":"FELANG_CMODE_PHRASEPREDICT","features":[619]},{"name":"FELANG_CMODE_PINYIN","features":[619]},{"name":"FELANG_CMODE_PLAURALCLAUSE","features":[619]},{"name":"FELANG_CMODE_PRECONV","features":[619]},{"name":"FELANG_CMODE_RADICAL","features":[619]},{"name":"FELANG_CMODE_ROMAN","features":[619]},{"name":"FELANG_CMODE_SINGLECONVERT","features":[619]},{"name":"FELANG_CMODE_UNKNOWNREADING","features":[619]},{"name":"FELANG_CMODE_USENOREVWORDS","features":[619]},{"name":"FELANG_INVALD_PO","features":[619]},{"name":"FELANG_REQ_CONV","features":[619]},{"name":"FELANG_REQ_RECONV","features":[619]},{"name":"FELANG_REQ_REV","features":[619]},{"name":"FID_MSIME_KMS_DEL_KEYLIST","features":[619]},{"name":"FID_MSIME_KMS_FUNCDESC","features":[619]},{"name":"FID_MSIME_KMS_GETMAP","features":[619]},{"name":"FID_MSIME_KMS_GETMAPFAST","features":[619]},{"name":"FID_MSIME_KMS_GETMAPSEAMLESS","features":[619]},{"name":"FID_MSIME_KMS_INIT","features":[619]},{"name":"FID_MSIME_KMS_INVOKE","features":[619]},{"name":"FID_MSIME_KMS_NOTIFY","features":[619]},{"name":"FID_MSIME_KMS_SETMAP","features":[619]},{"name":"FID_MSIME_KMS_TERM","features":[619]},{"name":"FID_MSIME_KMS_VERSION","features":[619]},{"name":"FID_MSIME_VERSION","features":[619]},{"name":"FID_RECONVERT_VERSION","features":[619]},{"name":"GCL_CONVERSION","features":[619]},{"name":"GCL_REVERSECONVERSION","features":[619]},{"name":"GCL_REVERSE_LENGTH","features":[619]},{"name":"GCSEX_CANCELRECONVERT","features":[619]},{"name":"GCS_COMPATTR","features":[619]},{"name":"GCS_COMPCLAUSE","features":[619]},{"name":"GCS_COMPREADATTR","features":[619]},{"name":"GCS_COMPREADCLAUSE","features":[619]},{"name":"GCS_COMPREADSTR","features":[619]},{"name":"GCS_COMPSTR","features":[619]},{"name":"GCS_CURSORPOS","features":[619]},{"name":"GCS_DELTASTART","features":[619]},{"name":"GCS_RESULTCLAUSE","features":[619]},{"name":"GCS_RESULTREADCLAUSE","features":[619]},{"name":"GCS_RESULTREADSTR","features":[619]},{"name":"GCS_RESULTSTR","features":[619]},{"name":"GET_CONVERSION_LIST_FLAG","features":[619]},{"name":"GET_GUIDE_LINE_TYPE","features":[619]},{"name":"GGL_INDEX","features":[619]},{"name":"GGL_LEVEL","features":[619]},{"name":"GGL_PRIVATE","features":[619]},{"name":"GGL_STRING","features":[619]},{"name":"GL_ID_CANNOTSAVE","features":[619]},{"name":"GL_ID_CHOOSECANDIDATE","features":[619]},{"name":"GL_ID_INPUTCODE","features":[619]},{"name":"GL_ID_INPUTRADICAL","features":[619]},{"name":"GL_ID_INPUTREADING","features":[619]},{"name":"GL_ID_INPUTSYMBOL","features":[619]},{"name":"GL_ID_NOCONVERT","features":[619]},{"name":"GL_ID_NODICTIONARY","features":[619]},{"name":"GL_ID_NOMODULE","features":[619]},{"name":"GL_ID_PRIVATE_FIRST","features":[619]},{"name":"GL_ID_PRIVATE_LAST","features":[619]},{"name":"GL_ID_READINGCONFLICT","features":[619]},{"name":"GL_ID_REVERSECONVERSION","features":[619]},{"name":"GL_ID_TOOMANYSTROKE","features":[619]},{"name":"GL_ID_TYPINGERROR","features":[619]},{"name":"GL_ID_UNKNOWN","features":[619]},{"name":"GL_LEVEL_ERROR","features":[619]},{"name":"GL_LEVEL_FATAL","features":[619]},{"name":"GL_LEVEL_INFORMATION","features":[619]},{"name":"GL_LEVEL_NOGUIDELINE","features":[619]},{"name":"GL_LEVEL_WARNING","features":[619]},{"name":"GUIDELINE","features":[619]},{"name":"IACE_CHILDREN","features":[619]},{"name":"IACE_DEFAULT","features":[619]},{"name":"IACE_IGNORENOCONTEXT","features":[619]},{"name":"IActiveIME","features":[619]},{"name":"IActiveIME2","features":[619]},{"name":"IActiveIMMApp","features":[619]},{"name":"IActiveIMMIME","features":[619]},{"name":"IActiveIMMMessagePumpOwner","features":[619]},{"name":"IActiveIMMRegistrar","features":[619]},{"name":"IEnumInputContext","features":[619]},{"name":"IEnumRegisterWordA","features":[619]},{"name":"IEnumRegisterWordW","features":[619]},{"name":"IFEC_S_ALREADY_DEFAULT","features":[619]},{"name":"IFEClassFactory","features":[354,619]},{"name":"IFECommon","features":[619]},{"name":"IFED_ACTIVE_DICT","features":[619]},{"name":"IFED_ATOK10","features":[619]},{"name":"IFED_ATOK9","features":[619]},{"name":"IFED_E_INVALID_FORMAT","features":[619]},{"name":"IFED_E_NOT_FOUND","features":[619]},{"name":"IFED_E_NOT_SUPPORTED","features":[619]},{"name":"IFED_E_NOT_USER_DIC","features":[619]},{"name":"IFED_E_NO_ENTRY","features":[619]},{"name":"IFED_E_OPEN_FAILED","features":[619]},{"name":"IFED_E_REGISTER_DISCONNECTED","features":[619]},{"name":"IFED_E_REGISTER_FAILED","features":[619]},{"name":"IFED_E_REGISTER_ILLEGAL_POS","features":[619]},{"name":"IFED_E_REGISTER_IMPROPER_WORD","features":[619]},{"name":"IFED_E_USER_COMMENT","features":[619]},{"name":"IFED_E_WRITE_FAILED","features":[619]},{"name":"IFED_MSIME2_BIN_SYSTEM","features":[619]},{"name":"IFED_MSIME2_BIN_USER","features":[619]},{"name":"IFED_MSIME2_TEXT_USER","features":[619]},{"name":"IFED_MSIME95_BIN_SYSTEM","features":[619]},{"name":"IFED_MSIME95_BIN_USER","features":[619]},{"name":"IFED_MSIME95_TEXT_USER","features":[619]},{"name":"IFED_MSIME97_BIN_SYSTEM","features":[619]},{"name":"IFED_MSIME97_BIN_USER","features":[619]},{"name":"IFED_MSIME97_TEXT_USER","features":[619]},{"name":"IFED_MSIME98_BIN_SYSTEM","features":[619]},{"name":"IFED_MSIME98_BIN_USER","features":[619]},{"name":"IFED_MSIME98_SYSTEM_CE","features":[619]},{"name":"IFED_MSIME98_TEXT_USER","features":[619]},{"name":"IFED_MSIME_BIN_SYSTEM","features":[619]},{"name":"IFED_MSIME_BIN_USER","features":[619]},{"name":"IFED_MSIME_TEXT_USER","features":[619]},{"name":"IFED_NEC_AI_","features":[619]},{"name":"IFED_PIME2_BIN_STANDARD_SYSTEM","features":[619]},{"name":"IFED_PIME2_BIN_SYSTEM","features":[619]},{"name":"IFED_PIME2_BIN_USER","features":[619]},{"name":"IFED_POS_ADJECTIVE","features":[619]},{"name":"IFED_POS_ADJECTIVE_VERB","features":[619]},{"name":"IFED_POS_ADNOUN","features":[619]},{"name":"IFED_POS_ADVERB","features":[619]},{"name":"IFED_POS_AFFIX","features":[619]},{"name":"IFED_POS_ALL","features":[619]},{"name":"IFED_POS_AUXILIARY_VERB","features":[619]},{"name":"IFED_POS_CONJUNCTION","features":[619]},{"name":"IFED_POS_DEPENDENT","features":[619]},{"name":"IFED_POS_IDIOMS","features":[619]},{"name":"IFED_POS_INDEPENDENT","features":[619]},{"name":"IFED_POS_INFLECTIONALSUFFIX","features":[619]},{"name":"IFED_POS_INTERJECTION","features":[619]},{"name":"IFED_POS_NONE","features":[619]},{"name":"IFED_POS_NOUN","features":[619]},{"name":"IFED_POS_PARTICLE","features":[619]},{"name":"IFED_POS_PREFIX","features":[619]},{"name":"IFED_POS_SUB_VERB","features":[619]},{"name":"IFED_POS_SUFFIX","features":[619]},{"name":"IFED_POS_SYMBOLS","features":[619]},{"name":"IFED_POS_TANKANJI","features":[619]},{"name":"IFED_POS_VERB","features":[619]},{"name":"IFED_REG_ALL","features":[619]},{"name":"IFED_REG_AUTO","features":[619]},{"name":"IFED_REG_DEL","features":[619]},{"name":"IFED_REG_GRAMMAR","features":[619]},{"name":"IFED_REG_HEAD","features":[619]},{"name":"IFED_REG_NONE","features":[619]},{"name":"IFED_REG_TAIL","features":[619]},{"name":"IFED_REG_USER","features":[619]},{"name":"IFED_REL_ALL","features":[619]},{"name":"IFED_REL_DE","features":[619]},{"name":"IFED_REL_FUKU_YOUGEN","features":[619]},{"name":"IFED_REL_GA","features":[619]},{"name":"IFED_REL_HE","features":[619]},{"name":"IFED_REL_IDEOM","features":[619]},{"name":"IFED_REL_KARA","features":[619]},{"name":"IFED_REL_KEIDOU1_YOUGEN","features":[619]},{"name":"IFED_REL_KEIDOU2_YOUGEN","features":[619]},{"name":"IFED_REL_KEIYOU_TARU_YOUGEN","features":[619]},{"name":"IFED_REL_KEIYOU_TO_YOUGEN","features":[619]},{"name":"IFED_REL_KEIYOU_YOUGEN","features":[619]},{"name":"IFED_REL_MADE","features":[619]},{"name":"IFED_REL_NI","features":[619]},{"name":"IFED_REL_NO","features":[619]},{"name":"IFED_REL_NONE","features":[619]},{"name":"IFED_REL_RENSOU","features":[619]},{"name":"IFED_REL_RENTAI_MEI","features":[619]},{"name":"IFED_REL_TAIGEN","features":[619]},{"name":"IFED_REL_TO","features":[619]},{"name":"IFED_REL_UNKNOWN1","features":[619]},{"name":"IFED_REL_UNKNOWN2","features":[619]},{"name":"IFED_REL_WO","features":[619]},{"name":"IFED_REL_YORI","features":[619]},{"name":"IFED_REL_YOUGEN","features":[619]},{"name":"IFED_SELECT_ALL","features":[619]},{"name":"IFED_SELECT_COMMENT","features":[619]},{"name":"IFED_SELECT_DISPLAY","features":[619]},{"name":"IFED_SELECT_NONE","features":[619]},{"name":"IFED_SELECT_POS","features":[619]},{"name":"IFED_SELECT_READING","features":[619]},{"name":"IFED_S_COMMENT_CHANGED","features":[619]},{"name":"IFED_S_EMPTY_DICTIONARY","features":[619]},{"name":"IFED_S_MORE_ENTRIES","features":[619]},{"name":"IFED_S_WORD_EXISTS","features":[619]},{"name":"IFED_TYPE_ALL","features":[619]},{"name":"IFED_TYPE_ENGLISH","features":[619]},{"name":"IFED_TYPE_GENERAL","features":[619]},{"name":"IFED_TYPE_NAMEPLACE","features":[619]},{"name":"IFED_TYPE_NONE","features":[619]},{"name":"IFED_TYPE_REVERSE","features":[619]},{"name":"IFED_TYPE_SPEECH","features":[619]},{"name":"IFED_UCT_MAX","features":[619]},{"name":"IFED_UCT_NONE","features":[619]},{"name":"IFED_UCT_STRING_SJIS","features":[619]},{"name":"IFED_UCT_STRING_UNICODE","features":[619]},{"name":"IFED_UCT_USER_DEFINED","features":[619]},{"name":"IFED_UNKNOWN","features":[619]},{"name":"IFED_VJE_20","features":[619]},{"name":"IFED_WX_II","features":[619]},{"name":"IFED_WX_III","features":[619]},{"name":"IFEDictionary","features":[619]},{"name":"IFELanguage","features":[619]},{"name":"IGIMIF_RIGHTMENU","features":[619]},{"name":"IGIMII_CMODE","features":[619]},{"name":"IGIMII_CONFIGURE","features":[619]},{"name":"IGIMII_HELP","features":[619]},{"name":"IGIMII_INPUTTOOLS","features":[619]},{"name":"IGIMII_OTHER","features":[619]},{"name":"IGIMII_SMODE","features":[619]},{"name":"IGIMII_TOOLS","features":[619]},{"name":"IImePad","features":[619]},{"name":"IImePadApplet","features":[619]},{"name":"IImePlugInDictDictionaryList","features":[619]},{"name":"IImeSpecifyApplets","features":[619]},{"name":"IMCENUMPROC","features":[303,389,619]},{"name":"IMC_CLOSESTATUSWINDOW","features":[619]},{"name":"IMC_GETCANDIDATEPOS","features":[619]},{"name":"IMC_GETCOMPOSITIONFONT","features":[619]},{"name":"IMC_GETCOMPOSITIONWINDOW","features":[619]},{"name":"IMC_GETSOFTKBDFONT","features":[619]},{"name":"IMC_GETSOFTKBDPOS","features":[619]},{"name":"IMC_GETSOFTKBDSUBTYPE","features":[619]},{"name":"IMC_GETSTATUSWINDOWPOS","features":[619]},{"name":"IMC_OPENSTATUSWINDOW","features":[619]},{"name":"IMC_SETCANDIDATEPOS","features":[619]},{"name":"IMC_SETCOMPOSITIONFONT","features":[619]},{"name":"IMC_SETCOMPOSITIONWINDOW","features":[619]},{"name":"IMC_SETCONVERSIONMODE","features":[619]},{"name":"IMC_SETOPENSTATUS","features":[619]},{"name":"IMC_SETSENTENCEMODE","features":[619]},{"name":"IMC_SETSOFTKBDDATA","features":[619]},{"name":"IMC_SETSOFTKBDFONT","features":[619]},{"name":"IMC_SETSOFTKBDPOS","features":[619]},{"name":"IMC_SETSOFTKBDSUBTYPE","features":[619]},{"name":"IMC_SETSTATUSWINDOWPOS","features":[619]},{"name":"IMEAPPLETCFG","features":[303,619,365]},{"name":"IMEAPPLETUI","features":[303,619]},{"name":"IMECHARINFO","features":[619]},{"name":"IMECHARPOSITION","features":[303,619]},{"name":"IMECOMPOSITIONSTRINGINFO","features":[619]},{"name":"IMEDLG","features":[303,619]},{"name":"IMEDP","features":[619]},{"name":"IMEFAREASTINFO","features":[619]},{"name":"IMEFAREASTINFO_TYPE_COMMENT","features":[619]},{"name":"IMEFAREASTINFO_TYPE_COSTTIME","features":[619]},{"name":"IMEFAREASTINFO_TYPE_DEFAULT","features":[619]},{"name":"IMEFAREASTINFO_TYPE_READING","features":[619]},{"name":"IMEFMT","features":[619]},{"name":"IMEINFO","features":[619]},{"name":"IMEITEM","features":[619]},{"name":"IMEITEMCANDIDATE","features":[619]},{"name":"IMEKEYCTRLMASK_ALT","features":[619]},{"name":"IMEKEYCTRLMASK_CTRL","features":[619]},{"name":"IMEKEYCTRLMASK_SHIFT","features":[619]},{"name":"IMEKEYCTRL_DOWN","features":[619]},{"name":"IMEKEYCTRL_UP","features":[619]},{"name":"IMEKMS","features":[389,619]},{"name":"IMEKMSFUNCDESC","features":[619]},{"name":"IMEKMSINIT","features":[303,619]},{"name":"IMEKMSINVK","features":[389,619]},{"name":"IMEKMSKEY","features":[619]},{"name":"IMEKMSKMP","features":[389,619]},{"name":"IMEKMSNTFY","features":[303,389,619]},{"name":"IMEKMS_2NDLEVEL","features":[619]},{"name":"IMEKMS_CANDIDATE","features":[619]},{"name":"IMEKMS_COMPOSITION","features":[619]},{"name":"IMEKMS_IMEOFF","features":[619]},{"name":"IMEKMS_INPTGL","features":[619]},{"name":"IMEKMS_NOCOMPOSITION","features":[619]},{"name":"IMEKMS_SELECTION","features":[619]},{"name":"IMEKMS_TYPECAND","features":[619]},{"name":"IMEMENUITEMINFOA","features":[314,619]},{"name":"IMEMENUITEMINFOW","features":[314,619]},{"name":"IMEMENUITEM_STRING_SIZE","features":[619]},{"name":"IMEMOUSERET_NOTHANDLED","features":[619]},{"name":"IMEMOUSE_LDOWN","features":[619]},{"name":"IMEMOUSE_MDOWN","features":[619]},{"name":"IMEMOUSE_NONE","features":[619]},{"name":"IMEMOUSE_RDOWN","features":[619]},{"name":"IMEMOUSE_VERSION","features":[619]},{"name":"IMEMOUSE_WDOWN","features":[619]},{"name":"IMEMOUSE_WUP","features":[619]},{"name":"IMEPADCTRL_CARETBACKSPACE","features":[619]},{"name":"IMEPADCTRL_CARETBOTTOM","features":[619]},{"name":"IMEPADCTRL_CARETDELETE","features":[619]},{"name":"IMEPADCTRL_CARETLEFT","features":[619]},{"name":"IMEPADCTRL_CARETRIGHT","features":[619]},{"name":"IMEPADCTRL_CARETSET","features":[619]},{"name":"IMEPADCTRL_CARETTOP","features":[619]},{"name":"IMEPADCTRL_CLEARALL","features":[619]},{"name":"IMEPADCTRL_CONVERTALL","features":[619]},{"name":"IMEPADCTRL_DETERMINALL","features":[619]},{"name":"IMEPADCTRL_DETERMINCHAR","features":[619]},{"name":"IMEPADCTRL_INSERTFULLSPACE","features":[619]},{"name":"IMEPADCTRL_INSERTHALFSPACE","features":[619]},{"name":"IMEPADCTRL_INSERTSPACE","features":[619]},{"name":"IMEPADCTRL_OFFIME","features":[619]},{"name":"IMEPADCTRL_OFFPRECONVERSION","features":[619]},{"name":"IMEPADCTRL_ONIME","features":[619]},{"name":"IMEPADCTRL_ONPRECONVERSION","features":[619]},{"name":"IMEPADCTRL_PHONETICCANDIDATE","features":[619]},{"name":"IMEPADCTRL_PHRASEDELETE","features":[619]},{"name":"IMEPADREQ_CHANGESTRING","features":[619]},{"name":"IMEPADREQ_CHANGESTRINGCANDIDATEINFO","features":[619]},{"name":"IMEPADREQ_CHANGESTRINGINFO","features":[619]},{"name":"IMEPADREQ_DELETESTRING","features":[619]},{"name":"IMEPADREQ_FIRST","features":[619]},{"name":"IMEPADREQ_FORCEIMEPADWINDOWSHOW","features":[619]},{"name":"IMEPADREQ_GETAPPLETDATA","features":[619]},{"name":"IMEPADREQ_GETAPPLETUISTYLE","features":[619]},{"name":"IMEPADREQ_GETAPPLHWND","features":[619]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRING","features":[619]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGID","features":[619]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGINFO","features":[619]},{"name":"IMEPADREQ_GETCONVERSIONSTATUS","features":[619]},{"name":"IMEPADREQ_GETCURRENTIMEINFO","features":[619]},{"name":"IMEPADREQ_GETCURRENTUILANGID","features":[619]},{"name":"IMEPADREQ_GETDEFAULTUILANGID","features":[619]},{"name":"IMEPADREQ_GETSELECTEDSTRING","features":[619]},{"name":"IMEPADREQ_GETVERSION","features":[619]},{"name":"IMEPADREQ_INSERTITEMCANDIDATE","features":[619]},{"name":"IMEPADREQ_INSERTSTRING","features":[619]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATE","features":[619]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATEINFO","features":[619]},{"name":"IMEPADREQ_INSERTSTRINGINFO","features":[619]},{"name":"IMEPADREQ_ISAPPLETACTIVE","features":[619]},{"name":"IMEPADREQ_ISIMEPADWINDOWVISIBLE","features":[619]},{"name":"IMEPADREQ_POSTMODALNOTIFY","features":[619]},{"name":"IMEPADREQ_SENDCONTROL","features":[619]},{"name":"IMEPADREQ_SENDKEYCONTROL","features":[619]},{"name":"IMEPADREQ_SETAPPLETDATA","features":[619]},{"name":"IMEPADREQ_SETAPPLETMINMAXSIZE","features":[619]},{"name":"IMEPADREQ_SETAPPLETSIZE","features":[619]},{"name":"IMEPADREQ_SETAPPLETUISTYLE","features":[619]},{"name":"IMEPADREQ_SETTITLEFONT","features":[619]},{"name":"IMEPN_ACTIVATE","features":[619]},{"name":"IMEPN_APPLYCAND","features":[619]},{"name":"IMEPN_APPLYCANDEX","features":[619]},{"name":"IMEPN_CONFIG","features":[619]},{"name":"IMEPN_FIRST","features":[619]},{"name":"IMEPN_HELP","features":[619]},{"name":"IMEPN_HIDE","features":[619]},{"name":"IMEPN_INACTIVATE","features":[619]},{"name":"IMEPN_QUERYCAND","features":[619]},{"name":"IMEPN_SETTINGCHANGED","features":[619]},{"name":"IMEPN_SHOW","features":[619]},{"name":"IMEPN_SIZECHANGED","features":[619]},{"name":"IMEPN_SIZECHANGING","features":[619]},{"name":"IMEPN_USER","features":[619]},{"name":"IMEREG","features":[619]},{"name":"IMEREL","features":[619]},{"name":"IMESHF","features":[619]},{"name":"IMESTRINGCANDIDATE","features":[619]},{"name":"IMESTRINGCANDIDATEINFO","features":[619]},{"name":"IMESTRINGINFO","features":[619]},{"name":"IMEUCT","features":[619]},{"name":"IMEVER_0310","features":[619]},{"name":"IMEVER_0400","features":[619]},{"name":"IMEWRD","features":[619]},{"name":"IME_CAND_CODE","features":[619]},{"name":"IME_CAND_MEANING","features":[619]},{"name":"IME_CAND_RADICAL","features":[619]},{"name":"IME_CAND_READ","features":[619]},{"name":"IME_CAND_STROKE","features":[619]},{"name":"IME_CAND_UNKNOWN","features":[619]},{"name":"IME_CHOTKEY_IME_NONIME_TOGGLE","features":[619]},{"name":"IME_CHOTKEY_SHAPE_TOGGLE","features":[619]},{"name":"IME_CHOTKEY_SYMBOL_TOGGLE","features":[619]},{"name":"IME_CMODE_ALPHANUMERIC","features":[619]},{"name":"IME_CMODE_CHARCODE","features":[619]},{"name":"IME_CMODE_CHINESE","features":[619]},{"name":"IME_CMODE_EUDC","features":[619]},{"name":"IME_CMODE_FIXED","features":[619]},{"name":"IME_CMODE_FULLSHAPE","features":[619]},{"name":"IME_CMODE_HANGEUL","features":[619]},{"name":"IME_CMODE_HANGUL","features":[619]},{"name":"IME_CMODE_HANJACONVERT","features":[619]},{"name":"IME_CMODE_JAPANESE","features":[619]},{"name":"IME_CMODE_KATAKANA","features":[619]},{"name":"IME_CMODE_LANGUAGE","features":[619]},{"name":"IME_CMODE_NATIVE","features":[619]},{"name":"IME_CMODE_NATIVESYMBOL","features":[619]},{"name":"IME_CMODE_NOCONVERSION","features":[619]},{"name":"IME_CMODE_RESERVED","features":[619]},{"name":"IME_CMODE_ROMAN","features":[619]},{"name":"IME_CMODE_SOFTKBD","features":[619]},{"name":"IME_CMODE_SYMBOL","features":[619]},{"name":"IME_COMPOSITION_STRING","features":[619]},{"name":"IME_CONFIG_GENERAL","features":[619]},{"name":"IME_CONFIG_REGISTERWORD","features":[619]},{"name":"IME_CONFIG_SELECTDICTIONARY","features":[619]},{"name":"IME_CONVERSION_MODE","features":[619]},{"name":"IME_ESCAPE","features":[619]},{"name":"IME_ESC_AUTOMATA","features":[619]},{"name":"IME_ESC_GETHELPFILENAME","features":[619]},{"name":"IME_ESC_GET_EUDC_DICTIONARY","features":[619]},{"name":"IME_ESC_HANJA_MODE","features":[619]},{"name":"IME_ESC_IME_NAME","features":[619]},{"name":"IME_ESC_MAX_KEY","features":[619]},{"name":"IME_ESC_PRIVATE_FIRST","features":[619]},{"name":"IME_ESC_PRIVATE_HOTKEY","features":[619]},{"name":"IME_ESC_PRIVATE_LAST","features":[619]},{"name":"IME_ESC_QUERY_SUPPORT","features":[619]},{"name":"IME_ESC_RESERVED_FIRST","features":[619]},{"name":"IME_ESC_RESERVED_LAST","features":[619]},{"name":"IME_ESC_SEQUENCE_TO_INTERNAL","features":[619]},{"name":"IME_ESC_SET_EUDC_DICTIONARY","features":[619]},{"name":"IME_ESC_STRING_BUFFER_SIZE","features":[619]},{"name":"IME_ESC_SYNC_HOTKEY","features":[619]},{"name":"IME_HOTKEY_DSWITCH_FIRST","features":[619]},{"name":"IME_HOTKEY_DSWITCH_LAST","features":[619]},{"name":"IME_HOTKEY_IDENTIFIER","features":[619]},{"name":"IME_HOTKEY_PRIVATE_FIRST","features":[619]},{"name":"IME_HOTKEY_PRIVATE_LAST","features":[619]},{"name":"IME_ITHOTKEY_PREVIOUS_COMPOSITION","features":[619]},{"name":"IME_ITHOTKEY_RECONVERTSTRING","features":[619]},{"name":"IME_ITHOTKEY_RESEND_RESULTSTR","features":[619]},{"name":"IME_ITHOTKEY_UISTYLE_TOGGLE","features":[619]},{"name":"IME_JHOTKEY_CLOSE_OPEN","features":[619]},{"name":"IME_KHOTKEY_ENGLISH","features":[619]},{"name":"IME_KHOTKEY_HANJACONVERT","features":[619]},{"name":"IME_KHOTKEY_SHAPE_TOGGLE","features":[619]},{"name":"IME_PAD_REQUEST_FLAGS","features":[619]},{"name":"IME_PROP_ACCEPT_WIDE_VKEY","features":[619]},{"name":"IME_PROP_AT_CARET","features":[619]},{"name":"IME_PROP_CANDLIST_START_FROM_1","features":[619]},{"name":"IME_PROP_COMPLETE_ON_UNSELECT","features":[619]},{"name":"IME_PROP_END_UNLOAD","features":[619]},{"name":"IME_PROP_IGNORE_UPKEYS","features":[619]},{"name":"IME_PROP_KBD_CHAR_FIRST","features":[619]},{"name":"IME_PROP_NEED_ALTKEY","features":[619]},{"name":"IME_PROP_NO_KEYS_ON_CLOSE","features":[619]},{"name":"IME_PROP_SPECIAL_UI","features":[619]},{"name":"IME_PROP_UNICODE","features":[619]},{"name":"IME_REGWORD_STYLE_EUDC","features":[619]},{"name":"IME_REGWORD_STYLE_USER_FIRST","features":[619]},{"name":"IME_REGWORD_STYLE_USER_LAST","features":[619]},{"name":"IME_SENTENCE_MODE","features":[619]},{"name":"IME_SMODE_AUTOMATIC","features":[619]},{"name":"IME_SMODE_CONVERSATION","features":[619]},{"name":"IME_SMODE_NONE","features":[619]},{"name":"IME_SMODE_PHRASEPREDICT","features":[619]},{"name":"IME_SMODE_PLAURALCLAUSE","features":[619]},{"name":"IME_SMODE_RESERVED","features":[619]},{"name":"IME_SMODE_SINGLECONVERT","features":[619]},{"name":"IME_SYSINFO_WINLOGON","features":[619]},{"name":"IME_THOTKEY_IME_NONIME_TOGGLE","features":[619]},{"name":"IME_THOTKEY_SHAPE_TOGGLE","features":[619]},{"name":"IME_THOTKEY_SYMBOL_TOGGLE","features":[619]},{"name":"IME_UI_CLASS_NAME_SIZE","features":[619]},{"name":"IMFT_RADIOCHECK","features":[619]},{"name":"IMFT_SEPARATOR","features":[619]},{"name":"IMFT_SUBMENU","features":[619]},{"name":"IMMGWLP_IMC","features":[619]},{"name":"IMMGWL_IMC","features":[619]},{"name":"IMM_ERROR_GENERAL","features":[619]},{"name":"IMM_ERROR_NODATA","features":[619]},{"name":"IMN_CHANGECANDIDATE","features":[619]},{"name":"IMN_CLOSECANDIDATE","features":[619]},{"name":"IMN_CLOSESTATUSWINDOW","features":[619]},{"name":"IMN_GUIDELINE","features":[619]},{"name":"IMN_OPENCANDIDATE","features":[619]},{"name":"IMN_OPENSTATUSWINDOW","features":[619]},{"name":"IMN_PRIVATE","features":[619]},{"name":"IMN_SETCANDIDATEPOS","features":[619]},{"name":"IMN_SETCOMPOSITIONFONT","features":[619]},{"name":"IMN_SETCOMPOSITIONWINDOW","features":[619]},{"name":"IMN_SETCONVERSIONMODE","features":[619]},{"name":"IMN_SETOPENSTATUS","features":[619]},{"name":"IMN_SETSENTENCEMODE","features":[619]},{"name":"IMN_SETSTATUSWINDOWPOS","features":[619]},{"name":"IMN_SOFTKBDDESTROYED","features":[619]},{"name":"IMR_CANDIDATEWINDOW","features":[619]},{"name":"IMR_COMPOSITIONFONT","features":[619]},{"name":"IMR_COMPOSITIONWINDOW","features":[619]},{"name":"IMR_CONFIRMRECONVERTSTRING","features":[619]},{"name":"IMR_DOCUMENTFEED","features":[619]},{"name":"IMR_QUERYCHARPOSITION","features":[619]},{"name":"IMR_RECONVERTSTRING","features":[619]},{"name":"INFOMASK_APPLY_CAND","features":[619]},{"name":"INFOMASK_APPLY_CAND_EX","features":[619]},{"name":"INFOMASK_BLOCK_CAND","features":[619]},{"name":"INFOMASK_HIDE_CAND","features":[619]},{"name":"INFOMASK_NONE","features":[619]},{"name":"INFOMASK_QUERY_CAND","features":[619]},{"name":"INFOMASK_STRING_FIX","features":[619]},{"name":"INIT_COMPFORM","features":[619]},{"name":"INIT_CONVERSION","features":[619]},{"name":"INIT_LOGFONT","features":[619]},{"name":"INIT_SENTENCE","features":[619]},{"name":"INIT_SOFTKBDPOS","features":[619]},{"name":"INIT_STATUSWNDPOS","features":[619]},{"name":"INPUTCONTEXT","features":[303,389,314,619]},{"name":"IPACFG_CATEGORY","features":[619]},{"name":"IPACFG_HELP","features":[619]},{"name":"IPACFG_LANG","features":[619]},{"name":"IPACFG_NONE","features":[619]},{"name":"IPACFG_PROPERTY","features":[619]},{"name":"IPACFG_TITLE","features":[619]},{"name":"IPACFG_TITLEFONTFACE","features":[619]},{"name":"IPACID_CHARLIST","features":[619]},{"name":"IPACID_EPWING","features":[619]},{"name":"IPACID_HANDWRITING","features":[619]},{"name":"IPACID_NONE","features":[619]},{"name":"IPACID_OCR","features":[619]},{"name":"IPACID_RADICALSEARCH","features":[619]},{"name":"IPACID_SOFTKEY","features":[619]},{"name":"IPACID_STROKESEARCH","features":[619]},{"name":"IPACID_SYMBOLSEARCH","features":[619]},{"name":"IPACID_USER","features":[619]},{"name":"IPACID_VOICE","features":[619]},{"name":"IPAWS_ENABLED","features":[619]},{"name":"IPAWS_HORIZONTALFIXED","features":[619]},{"name":"IPAWS_MAXHEIGHTFIXED","features":[619]},{"name":"IPAWS_MAXSIZEFIXED","features":[619]},{"name":"IPAWS_MAXWIDTHFIXED","features":[619]},{"name":"IPAWS_MINHEIGHTFIXED","features":[619]},{"name":"IPAWS_MINSIZEFIXED","features":[619]},{"name":"IPAWS_MINWIDTHFIXED","features":[619]},{"name":"IPAWS_SIZEFIXED","features":[619]},{"name":"IPAWS_SIZINGNOTIFY","features":[619]},{"name":"IPAWS_VERTICALFIXED","features":[619]},{"name":"ISC_SHOWUIALL","features":[619]},{"name":"ISC_SHOWUIALLCANDIDATEWINDOW","features":[619]},{"name":"ISC_SHOWUICANDIDATEWINDOW","features":[619]},{"name":"ISC_SHOWUICOMPOSITIONWINDOW","features":[619]},{"name":"ISC_SHOWUIGUIDELINE","features":[619]},{"name":"ImmAssociateContext","features":[303,389,619]},{"name":"ImmAssociateContextEx","features":[303,389,619]},{"name":"ImmConfigureIMEA","features":[303,619,620]},{"name":"ImmConfigureIMEW","features":[303,619,620]},{"name":"ImmCreateContext","features":[389,619]},{"name":"ImmCreateIMCC","features":[389,619]},{"name":"ImmCreateSoftKeyboard","features":[303,619]},{"name":"ImmDestroyContext","features":[303,389,619]},{"name":"ImmDestroyIMCC","features":[389,619]},{"name":"ImmDestroySoftKeyboard","features":[303,619]},{"name":"ImmDisableIME","features":[303,619]},{"name":"ImmDisableLegacyIME","features":[303,619]},{"name":"ImmDisableTextFrameService","features":[303,619]},{"name":"ImmEnumInputContext","features":[303,389,619]},{"name":"ImmEnumRegisterWordA","features":[619,620]},{"name":"ImmEnumRegisterWordW","features":[619,620]},{"name":"ImmEscapeA","features":[303,389,619,620]},{"name":"ImmEscapeW","features":[303,389,619,620]},{"name":"ImmGenerateMessage","features":[303,389,619]},{"name":"ImmGetCandidateListA","features":[389,619]},{"name":"ImmGetCandidateListCountA","features":[389,619]},{"name":"ImmGetCandidateListCountW","features":[389,619]},{"name":"ImmGetCandidateListW","features":[389,619]},{"name":"ImmGetCandidateWindow","features":[303,389,619]},{"name":"ImmGetCompositionFontA","features":[303,389,314,619]},{"name":"ImmGetCompositionFontW","features":[303,389,314,619]},{"name":"ImmGetCompositionStringA","features":[389,619]},{"name":"ImmGetCompositionStringW","features":[389,619]},{"name":"ImmGetCompositionWindow","features":[303,389,619]},{"name":"ImmGetContext","features":[303,389,619]},{"name":"ImmGetConversionListA","features":[389,619,620]},{"name":"ImmGetConversionListW","features":[389,619,620]},{"name":"ImmGetConversionStatus","features":[303,389,619]},{"name":"ImmGetDefaultIMEWnd","features":[303,619]},{"name":"ImmGetDescriptionA","features":[619,620]},{"name":"ImmGetDescriptionW","features":[619,620]},{"name":"ImmGetGuideLineA","features":[389,619]},{"name":"ImmGetGuideLineW","features":[389,619]},{"name":"ImmGetHotKey","features":[303,619,620]},{"name":"ImmGetIMCCLockCount","features":[389,619]},{"name":"ImmGetIMCCSize","features":[389,619]},{"name":"ImmGetIMCLockCount","features":[389,619]},{"name":"ImmGetIMEFileNameA","features":[619,620]},{"name":"ImmGetIMEFileNameW","features":[619,620]},{"name":"ImmGetImeMenuItemsA","features":[389,314,619]},{"name":"ImmGetImeMenuItemsW","features":[389,314,619]},{"name":"ImmGetOpenStatus","features":[303,389,619]},{"name":"ImmGetProperty","features":[619,620]},{"name":"ImmGetRegisterWordStyleA","features":[619,620]},{"name":"ImmGetRegisterWordStyleW","features":[619,620]},{"name":"ImmGetStatusWindowPos","features":[303,389,619]},{"name":"ImmGetVirtualKey","features":[303,619]},{"name":"ImmInstallIMEA","features":[619,620]},{"name":"ImmInstallIMEW","features":[619,620]},{"name":"ImmIsIME","features":[303,619,620]},{"name":"ImmIsUIMessageA","features":[303,619]},{"name":"ImmIsUIMessageW","features":[303,619]},{"name":"ImmLockIMC","features":[303,389,314,619]},{"name":"ImmLockIMCC","features":[389,619]},{"name":"ImmNotifyIME","features":[303,389,619]},{"name":"ImmReSizeIMCC","features":[389,619]},{"name":"ImmRegisterWordA","features":[303,619,620]},{"name":"ImmRegisterWordW","features":[303,619,620]},{"name":"ImmReleaseContext","features":[303,389,619]},{"name":"ImmRequestMessageA","features":[303,389,619]},{"name":"ImmRequestMessageW","features":[303,389,619]},{"name":"ImmSetCandidateWindow","features":[303,389,619]},{"name":"ImmSetCompositionFontA","features":[303,389,314,619]},{"name":"ImmSetCompositionFontW","features":[303,389,314,619]},{"name":"ImmSetCompositionStringA","features":[303,389,619]},{"name":"ImmSetCompositionStringW","features":[303,389,619]},{"name":"ImmSetCompositionWindow","features":[303,389,619]},{"name":"ImmSetConversionStatus","features":[303,389,619]},{"name":"ImmSetHotKey","features":[303,619,620]},{"name":"ImmSetOpenStatus","features":[303,389,619]},{"name":"ImmSetStatusWindowPos","features":[303,389,619]},{"name":"ImmShowSoftKeyboard","features":[303,619]},{"name":"ImmSimulateHotKey","features":[303,619]},{"name":"ImmUnlockIMC","features":[303,389,619]},{"name":"ImmUnlockIMCC","features":[303,389,619]},{"name":"ImmUnregisterWordA","features":[303,619,620]},{"name":"ImmUnregisterWordW","features":[303,619,620]},{"name":"JPOS_1DAN","features":[619]},{"name":"JPOS_4DAN_HA","features":[619]},{"name":"JPOS_5DAN_AWA","features":[619]},{"name":"JPOS_5DAN_AWAUON","features":[619]},{"name":"JPOS_5DAN_BA","features":[619]},{"name":"JPOS_5DAN_GA","features":[619]},{"name":"JPOS_5DAN_KA","features":[619]},{"name":"JPOS_5DAN_KASOKUON","features":[619]},{"name":"JPOS_5DAN_MA","features":[619]},{"name":"JPOS_5DAN_NA","features":[619]},{"name":"JPOS_5DAN_RA","features":[619]},{"name":"JPOS_5DAN_RAHEN","features":[619]},{"name":"JPOS_5DAN_SA","features":[619]},{"name":"JPOS_5DAN_TA","features":[619]},{"name":"JPOS_BUPPIN","features":[619]},{"name":"JPOS_CHIMEI","features":[619]},{"name":"JPOS_CHIMEI_EKI","features":[619]},{"name":"JPOS_CHIMEI_GUN","features":[619]},{"name":"JPOS_CHIMEI_KEN","features":[619]},{"name":"JPOS_CHIMEI_KU","features":[619]},{"name":"JPOS_CHIMEI_KUNI","features":[619]},{"name":"JPOS_CHIMEI_MACHI","features":[619]},{"name":"JPOS_CHIMEI_MURA","features":[619]},{"name":"JPOS_CHIMEI_SHI","features":[619]},{"name":"JPOS_CLOSEBRACE","features":[619]},{"name":"JPOS_DAIMEISHI","features":[619]},{"name":"JPOS_DAIMEISHI_NINSHOU","features":[619]},{"name":"JPOS_DAIMEISHI_SHIJI","features":[619]},{"name":"JPOS_DOKURITSUGO","features":[619]},{"name":"JPOS_EIJI","features":[619]},{"name":"JPOS_FUKUSHI","features":[619]},{"name":"JPOS_FUKUSHI_DA","features":[619]},{"name":"JPOS_FUKUSHI_NANO","features":[619]},{"name":"JPOS_FUKUSHI_NI","features":[619]},{"name":"JPOS_FUKUSHI_SAHEN","features":[619]},{"name":"JPOS_FUKUSHI_TO","features":[619]},{"name":"JPOS_FUKUSHI_TOSURU","features":[619]},{"name":"JPOS_FUTEIGO","features":[619]},{"name":"JPOS_HUKUSIMEISHI","features":[619]},{"name":"JPOS_JINMEI","features":[619]},{"name":"JPOS_JINMEI_MEI","features":[619]},{"name":"JPOS_JINMEI_SEI","features":[619]},{"name":"JPOS_KANDOUSHI","features":[619]},{"name":"JPOS_KANJI","features":[619]},{"name":"JPOS_KANYOUKU","features":[619]},{"name":"JPOS_KAZU","features":[619]},{"name":"JPOS_KAZU_SURYOU","features":[619]},{"name":"JPOS_KAZU_SUSHI","features":[619]},{"name":"JPOS_KEIDOU","features":[619]},{"name":"JPOS_KEIDOU_GARU","features":[619]},{"name":"JPOS_KEIDOU_NO","features":[619]},{"name":"JPOS_KEIDOU_TARU","features":[619]},{"name":"JPOS_KEIYOU","features":[619]},{"name":"JPOS_KEIYOU_GARU","features":[619]},{"name":"JPOS_KEIYOU_GE","features":[619]},{"name":"JPOS_KEIYOU_ME","features":[619]},{"name":"JPOS_KEIYOU_U","features":[619]},{"name":"JPOS_KEIYOU_YUU","features":[619]},{"name":"JPOS_KENCHIKU","features":[619]},{"name":"JPOS_KIGOU","features":[619]},{"name":"JPOS_KURU_KI","features":[619]},{"name":"JPOS_KURU_KITA","features":[619]},{"name":"JPOS_KURU_KITARA","features":[619]},{"name":"JPOS_KURU_KITARI","features":[619]},{"name":"JPOS_KURU_KITAROU","features":[619]},{"name":"JPOS_KURU_KITE","features":[619]},{"name":"JPOS_KURU_KO","features":[619]},{"name":"JPOS_KURU_KOI","features":[619]},{"name":"JPOS_KURU_KOYOU","features":[619]},{"name":"JPOS_KURU_KUREBA","features":[619]},{"name":"JPOS_KUTEN","features":[619]},{"name":"JPOS_MEISA_KEIDOU","features":[619]},{"name":"JPOS_MEISHI_FUTSU","features":[619]},{"name":"JPOS_MEISHI_KEIYOUDOUSHI","features":[619]},{"name":"JPOS_MEISHI_SAHEN","features":[619]},{"name":"JPOS_MEISHI_ZAHEN","features":[619]},{"name":"JPOS_OPENBRACE","features":[619]},{"name":"JPOS_RENTAISHI","features":[619]},{"name":"JPOS_RENTAISHI_SHIJI","features":[619]},{"name":"JPOS_RENYOU_SETSUBI","features":[619]},{"name":"JPOS_SETSUBI","features":[619]},{"name":"JPOS_SETSUBI_CHIMEI","features":[619]},{"name":"JPOS_SETSUBI_CHOU","features":[619]},{"name":"JPOS_SETSUBI_CHU","features":[619]},{"name":"JPOS_SETSUBI_DONO","features":[619]},{"name":"JPOS_SETSUBI_EKI","features":[619]},{"name":"JPOS_SETSUBI_FU","features":[619]},{"name":"JPOS_SETSUBI_FUKUSU","features":[619]},{"name":"JPOS_SETSUBI_GUN","features":[619]},{"name":"JPOS_SETSUBI_JIKAN","features":[619]},{"name":"JPOS_SETSUBI_JIKANPLUS","features":[619]},{"name":"JPOS_SETSUBI_JINMEI","features":[619]},{"name":"JPOS_SETSUBI_JOSUSHI","features":[619]},{"name":"JPOS_SETSUBI_JOSUSHIPLUS","features":[619]},{"name":"JPOS_SETSUBI_KA","features":[619]},{"name":"JPOS_SETSUBI_KATA","features":[619]},{"name":"JPOS_SETSUBI_KEN","features":[619]},{"name":"JPOS_SETSUBI_KENCHIKU","features":[619]},{"name":"JPOS_SETSUBI_KU","features":[619]},{"name":"JPOS_SETSUBI_KUN","features":[619]},{"name":"JPOS_SETSUBI_KUNI","features":[619]},{"name":"JPOS_SETSUBI_MACHI","features":[619]},{"name":"JPOS_SETSUBI_MEISHIRENDAKU","features":[619]},{"name":"JPOS_SETSUBI_MURA","features":[619]},{"name":"JPOS_SETSUBI_RA","features":[619]},{"name":"JPOS_SETSUBI_RYU","features":[619]},{"name":"JPOS_SETSUBI_SAMA","features":[619]},{"name":"JPOS_SETSUBI_SAN","features":[619]},{"name":"JPOS_SETSUBI_SEI","features":[619]},{"name":"JPOS_SETSUBI_SHAMEI","features":[619]},{"name":"JPOS_SETSUBI_SHI","features":[619]},{"name":"JPOS_SETSUBI_SON","features":[619]},{"name":"JPOS_SETSUBI_SONOTA","features":[619]},{"name":"JPOS_SETSUBI_SOSHIKI","features":[619]},{"name":"JPOS_SETSUBI_TACHI","features":[619]},{"name":"JPOS_SETSUBI_TEINEI","features":[619]},{"name":"JPOS_SETSUBI_TEKI","features":[619]},{"name":"JPOS_SETSUBI_YOU","features":[619]},{"name":"JPOS_SETSUZOKUSHI","features":[619]},{"name":"JPOS_SETTOU","features":[619]},{"name":"JPOS_SETTOU_CHIMEI","features":[619]},{"name":"JPOS_SETTOU_CHOUTAN","features":[619]},{"name":"JPOS_SETTOU_DAISHOU","features":[619]},{"name":"JPOS_SETTOU_FUKU","features":[619]},{"name":"JPOS_SETTOU_JINMEI","features":[619]},{"name":"JPOS_SETTOU_JOSUSHI","features":[619]},{"name":"JPOS_SETTOU_KAKU","features":[619]},{"name":"JPOS_SETTOU_KOUTEI","features":[619]},{"name":"JPOS_SETTOU_MI","features":[619]},{"name":"JPOS_SETTOU_SAI","features":[619]},{"name":"JPOS_SETTOU_SHINKYU","features":[619]},{"name":"JPOS_SETTOU_SONOTA","features":[619]},{"name":"JPOS_SETTOU_TEINEI_GO","features":[619]},{"name":"JPOS_SETTOU_TEINEI_O","features":[619]},{"name":"JPOS_SETTOU_TEINEI_ON","features":[619]},{"name":"JPOS_SHAMEI","features":[619]},{"name":"JPOS_SONOTA","features":[619]},{"name":"JPOS_SOSHIKI","features":[619]},{"name":"JPOS_SURU_SA","features":[619]},{"name":"JPOS_SURU_SE","features":[619]},{"name":"JPOS_SURU_SEYO","features":[619]},{"name":"JPOS_SURU_SI","features":[619]},{"name":"JPOS_SURU_SIATRI","features":[619]},{"name":"JPOS_SURU_SITA","features":[619]},{"name":"JPOS_SURU_SITARA","features":[619]},{"name":"JPOS_SURU_SITAROU","features":[619]},{"name":"JPOS_SURU_SITE","features":[619]},{"name":"JPOS_SURU_SIYOU","features":[619]},{"name":"JPOS_SURU_SUREBA","features":[619]},{"name":"JPOS_TANKANJI","features":[619]},{"name":"JPOS_TANKANJI_KAO","features":[619]},{"name":"JPOS_TANSHUKU","features":[619]},{"name":"JPOS_TOKUSHU_KAHEN","features":[619]},{"name":"JPOS_TOKUSHU_NAHEN","features":[619]},{"name":"JPOS_TOKUSHU_SAHEN","features":[619]},{"name":"JPOS_TOKUSHU_SAHENSURU","features":[619]},{"name":"JPOS_TOKUSHU_ZAHEN","features":[619]},{"name":"JPOS_TOUTEN","features":[619]},{"name":"JPOS_UNDEFINED","features":[619]},{"name":"JPOS_YOKUSEI","features":[619]},{"name":"MAX_APPLETTITLE","features":[619]},{"name":"MAX_FONTFACE","features":[619]},{"name":"MODEBIASMODE_DEFAULT","features":[619]},{"name":"MODEBIASMODE_DIGIT","features":[619]},{"name":"MODEBIASMODE_FILENAME","features":[619]},{"name":"MODEBIASMODE_READING","features":[619]},{"name":"MODEBIAS_GETVALUE","features":[619]},{"name":"MODEBIAS_GETVERSION","features":[619]},{"name":"MODEBIAS_SETVALUE","features":[619]},{"name":"MOD_IGNORE_ALL_MODIFIER","features":[619]},{"name":"MOD_LEFT","features":[619]},{"name":"MOD_ON_KEYUP","features":[619]},{"name":"MOD_RIGHT","features":[619]},{"name":"MORRSLT","features":[619]},{"name":"NI_CHANGECANDIDATELIST","features":[619]},{"name":"NI_CLOSECANDIDATE","features":[619]},{"name":"NI_COMPOSITIONSTR","features":[619]},{"name":"NI_CONTEXTUPDATED","features":[619]},{"name":"NI_FINALIZECONVERSIONRESULT","features":[619]},{"name":"NI_IMEMENUSELECTED","features":[619]},{"name":"NI_OPENCANDIDATE","features":[619]},{"name":"NI_SELECTCANDIDATESTR","features":[619]},{"name":"NI_SETCANDIDATE_PAGESIZE","features":[619]},{"name":"NI_SETCANDIDATE_PAGESTART","features":[619]},{"name":"NOTIFY_IME_ACTION","features":[619]},{"name":"NOTIFY_IME_INDEX","features":[619]},{"name":"PFNLOG","features":[303,619]},{"name":"POSTBL","features":[619]},{"name":"POS_UNDEFINED","features":[619]},{"name":"RECONVERTSTRING","features":[619]},{"name":"RECONVOPT_NONE","features":[619]},{"name":"RECONVOPT_USECANCELNOTIFY","features":[619]},{"name":"REGISTERWORDA","features":[619]},{"name":"REGISTERWORDENUMPROCA","features":[619]},{"name":"REGISTERWORDENUMPROCW","features":[619]},{"name":"REGISTERWORDW","features":[619]},{"name":"RWM_CHGKEYMAP","features":[619]},{"name":"RWM_DOCUMENTFEED","features":[619]},{"name":"RWM_KEYMAP","features":[619]},{"name":"RWM_MODEBIAS","features":[619]},{"name":"RWM_MOUSE","features":[619]},{"name":"RWM_NTFYKEYMAP","features":[619]},{"name":"RWM_QUERYPOSITION","features":[619]},{"name":"RWM_RECONVERT","features":[619]},{"name":"RWM_RECONVERTOPTIONS","features":[619]},{"name":"RWM_RECONVERTREQUEST","features":[619]},{"name":"RWM_SERVICE","features":[619]},{"name":"RWM_SHOWIMEPAD","features":[619]},{"name":"RWM_UIREADY","features":[619]},{"name":"SCS_CAP_COMPSTR","features":[619]},{"name":"SCS_CAP_MAKEREAD","features":[619]},{"name":"SCS_CAP_SETRECONVERTSTRING","features":[619]},{"name":"SCS_CHANGEATTR","features":[619]},{"name":"SCS_CHANGECLAUSE","features":[619]},{"name":"SCS_QUERYRECONVERTSTRING","features":[619]},{"name":"SCS_SETRECONVERTSTRING","features":[619]},{"name":"SCS_SETSTR","features":[619]},{"name":"SELECT_CAP_CONVERSION","features":[619]},{"name":"SELECT_CAP_SENTENCE","features":[619]},{"name":"SET_COMPOSITION_STRING_TYPE","features":[619]},{"name":"SHOWIMEPAD_CATEGORY","features":[619]},{"name":"SHOWIMEPAD_DEFAULT","features":[619]},{"name":"SHOWIMEPAD_GUID","features":[619]},{"name":"SOFTKBDDATA","features":[619]},{"name":"SOFTKEYBOARD_TYPE_C1","features":[619]},{"name":"SOFTKEYBOARD_TYPE_T1","features":[619]},{"name":"STYLEBUFA","features":[619]},{"name":"STYLEBUFW","features":[619]},{"name":"STYLE_DESCRIPTION_SIZE","features":[619]},{"name":"TRANSMSG","features":[303,619]},{"name":"TRANSMSGLIST","features":[303,619]},{"name":"UI_CAP_2700","features":[619]},{"name":"UI_CAP_ROT90","features":[619]},{"name":"UI_CAP_ROTANY","features":[619]},{"name":"UI_CAP_SOFTKBD","features":[619]},{"name":"VERSION_DOCUMENTFEED","features":[619]},{"name":"VERSION_ID_CHINESE_SIMPLIFIED","features":[619]},{"name":"VERSION_ID_CHINESE_TRADITIONAL","features":[619]},{"name":"VERSION_ID_JAPANESE","features":[619]},{"name":"VERSION_ID_KOREAN","features":[619]},{"name":"VERSION_MODEBIAS","features":[619]},{"name":"VERSION_MOUSE_OPERATION","features":[619]},{"name":"VERSION_QUERYPOSITION","features":[619]},{"name":"VERSION_RECONVERSION","features":[619]},{"name":"WDD","features":[619]},{"name":"cbCommentMax","features":[619]},{"name":"fpCreateIFECommonInstanceType","features":[619]},{"name":"fpCreateIFEDictionaryInstanceType","features":[619]},{"name":"fpCreateIFELanguageInstanceType","features":[619]},{"name":"szImeChina","features":[619]},{"name":"szImeJapan","features":[619]},{"name":"szImeKorea","features":[619]},{"name":"szImeTaiwan","features":[619]},{"name":"wchPrivate1","features":[619]}],"656":[{"name":"IInkCommitRequestHandler","features":[621]},{"name":"IInkD2DRenderer","features":[621]},{"name":"IInkD2DRenderer2","features":[621]},{"name":"IInkDesktopHost","features":[621]},{"name":"IInkHostWorkItem","features":[621]},{"name":"IInkPresenterDesktop","features":[621]},{"name":"INK_HIGH_CONTRAST_ADJUSTMENT","features":[621]},{"name":"InkD2DRenderer","features":[621]},{"name":"InkDesktopHost","features":[621]},{"name":"USE_ORIGINAL_COLORS","features":[621]},{"name":"USE_SYSTEM_COLORS","features":[621]},{"name":"USE_SYSTEM_COLORS_WHEN_NECESSARY","features":[621]}],"657":[{"name":"ACTIVATE_KEYBOARD_LAYOUT_FLAGS","features":[622]},{"name":"ACUTE","features":[622]},{"name":"AX_KBD_DESKTOP_TYPE","features":[622]},{"name":"ActivateKeyboardLayout","features":[622,620]},{"name":"BREVE","features":[622]},{"name":"BlockInput","features":[303,622]},{"name":"CAPLOK","features":[622]},{"name":"CAPLOKALTGR","features":[622]},{"name":"CEDILLA","features":[622]},{"name":"CIRCUMFLEX","features":[622]},{"name":"DEADKEY","features":[622]},{"name":"DEC_KBD_ANSI_LAYOUT_TYPE","features":[622]},{"name":"DEC_KBD_JIS_LAYOUT_TYPE","features":[622]},{"name":"DIARESIS","features":[622]},{"name":"DIARESIS_TONOS","features":[622]},{"name":"DKF_DEAD","features":[622]},{"name":"DONTCARE_BIT","features":[622]},{"name":"DOT_ABOVE","features":[622]},{"name":"DOUBLE_ACUTE","features":[622]},{"name":"DragDetect","features":[303,622]},{"name":"EXTENDED_BIT","features":[622]},{"name":"EnableWindow","features":[303,622]},{"name":"FAKE_KEYSTROKE","features":[622]},{"name":"FMR_KBD_JIS_TYPE","features":[622]},{"name":"FMR_KBD_OASYS_TYPE","features":[622]},{"name":"FMV_KBD_OASYS_TYPE","features":[622]},{"name":"GET_MOUSE_MOVE_POINTS_EX_RESOLUTION","features":[622]},{"name":"GMMP_USE_DISPLAY_POINTS","features":[622]},{"name":"GMMP_USE_HIGH_RESOLUTION_POINTS","features":[622]},{"name":"GRAVE","features":[622]},{"name":"GRPSELTAP","features":[622]},{"name":"GetActiveWindow","features":[303,622]},{"name":"GetAsyncKeyState","features":[622]},{"name":"GetCapture","features":[303,622]},{"name":"GetDoubleClickTime","features":[622]},{"name":"GetFocus","features":[303,622]},{"name":"GetKBCodePage","features":[622]},{"name":"GetKeyNameTextA","features":[622]},{"name":"GetKeyNameTextW","features":[622]},{"name":"GetKeyState","features":[622]},{"name":"GetKeyboardLayout","features":[622,620]},{"name":"GetKeyboardLayoutList","features":[622,620]},{"name":"GetKeyboardLayoutNameA","features":[303,622]},{"name":"GetKeyboardLayoutNameW","features":[303,622]},{"name":"GetKeyboardState","features":[303,622]},{"name":"GetKeyboardType","features":[622]},{"name":"GetLastInputInfo","features":[303,622]},{"name":"GetMouseMovePointsEx","features":[622]},{"name":"HACEK","features":[622]},{"name":"HARDWAREINPUT","features":[622]},{"name":"HOOK_ABOVE","features":[622]},{"name":"HOT_KEY_MODIFIERS","features":[622]},{"name":"INPUT","features":[622]},{"name":"INPUT_HARDWARE","features":[622]},{"name":"INPUT_KEYBOARD","features":[622]},{"name":"INPUT_MOUSE","features":[622]},{"name":"INPUT_TYPE","features":[622]},{"name":"IsWindowEnabled","features":[303,622]},{"name":"KANALOK","features":[622]},{"name":"KBDALT","features":[622]},{"name":"KBDBASE","features":[622]},{"name":"KBDCTRL","features":[622]},{"name":"KBDGRPSELTAP","features":[622]},{"name":"KBDKANA","features":[622]},{"name":"KBDLOYA","features":[622]},{"name":"KBDNLSTABLES","features":[622]},{"name":"KBDNLS_ALPHANUM","features":[622]},{"name":"KBDNLS_CODEINPUT","features":[622]},{"name":"KBDNLS_CONV_OR_NONCONV","features":[622]},{"name":"KBDNLS_HELP_OR_END","features":[622]},{"name":"KBDNLS_HIRAGANA","features":[622]},{"name":"KBDNLS_HOME_OR_CLEAR","features":[622]},{"name":"KBDNLS_INDEX_ALT","features":[622]},{"name":"KBDNLS_INDEX_NORMAL","features":[622]},{"name":"KBDNLS_KANAEVENT","features":[622]},{"name":"KBDNLS_KANALOCK","features":[622]},{"name":"KBDNLS_KATAKANA","features":[622]},{"name":"KBDNLS_NOEVENT","features":[622]},{"name":"KBDNLS_NULL","features":[622]},{"name":"KBDNLS_NUMPAD","features":[622]},{"name":"KBDNLS_ROMAN","features":[622]},{"name":"KBDNLS_SBCSDBCS","features":[622]},{"name":"KBDNLS_SEND_BASE_VK","features":[622]},{"name":"KBDNLS_SEND_PARAM_VK","features":[622]},{"name":"KBDNLS_TYPE_NORMAL","features":[622]},{"name":"KBDNLS_TYPE_NULL","features":[622]},{"name":"KBDNLS_TYPE_TOGGLE","features":[622]},{"name":"KBDROYA","features":[622]},{"name":"KBDSHIFT","features":[622]},{"name":"KBDTABLES","features":[622]},{"name":"KBDTABLE_DESC","features":[622]},{"name":"KBDTABLE_MULTI","features":[622]},{"name":"KBDTABLE_MULTI_MAX","features":[622]},{"name":"KBD_TYPE","features":[622]},{"name":"KBD_TYPE_INFO","features":[622]},{"name":"KBD_VERSION","features":[622]},{"name":"KEYBDINPUT","features":[622]},{"name":"KEYBD_EVENT_FLAGS","features":[622]},{"name":"KEYBOARD_TYPE_GENERIC_101","features":[622]},{"name":"KEYBOARD_TYPE_JAPAN","features":[622]},{"name":"KEYBOARD_TYPE_KOREA","features":[622]},{"name":"KEYBOARD_TYPE_UNKNOWN","features":[622]},{"name":"KEYEVENTF_EXTENDEDKEY","features":[622]},{"name":"KEYEVENTF_KEYUP","features":[622]},{"name":"KEYEVENTF_SCANCODE","features":[622]},{"name":"KEYEVENTF_UNICODE","features":[622]},{"name":"KLF_ACTIVATE","features":[622]},{"name":"KLF_NOTELLSHELL","features":[622]},{"name":"KLF_REORDER","features":[622]},{"name":"KLF_REPLACELANG","features":[622]},{"name":"KLF_RESET","features":[622]},{"name":"KLF_SETFORPROCESS","features":[622]},{"name":"KLF_SHIFTLOCK","features":[622]},{"name":"KLF_SUBSTITUTE_OK","features":[622]},{"name":"KLLF_ALTGR","features":[622]},{"name":"KLLF_GLOBAL_ATTRS","features":[622]},{"name":"KLLF_LRM_RLM","features":[622]},{"name":"KLLF_SHIFTLOCK","features":[622]},{"name":"LASTINPUTINFO","features":[622]},{"name":"LIGATURE1","features":[622]},{"name":"LIGATURE2","features":[622]},{"name":"LIGATURE3","features":[622]},{"name":"LIGATURE4","features":[622]},{"name":"LIGATURE5","features":[622]},{"name":"LoadKeyboardLayoutA","features":[622,620]},{"name":"LoadKeyboardLayoutW","features":[622,620]},{"name":"MACRON","features":[622]},{"name":"MAPVK_VK_TO_CHAR","features":[622]},{"name":"MAPVK_VK_TO_VSC","features":[622]},{"name":"MAPVK_VK_TO_VSC_EX","features":[622]},{"name":"MAPVK_VSC_TO_VK","features":[622]},{"name":"MAPVK_VSC_TO_VK_EX","features":[622]},{"name":"MAP_VIRTUAL_KEY_TYPE","features":[622]},{"name":"MICROSOFT_KBD_001_TYPE","features":[622]},{"name":"MICROSOFT_KBD_002_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101A_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101B_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101C_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101_TYPE","features":[622]},{"name":"MICROSOFT_KBD_103_TYPE","features":[622]},{"name":"MICROSOFT_KBD_106_TYPE","features":[622]},{"name":"MICROSOFT_KBD_AX_TYPE","features":[622]},{"name":"MICROSOFT_KBD_FUNC","features":[622]},{"name":"MODIFIERS","features":[622]},{"name":"MOD_ALT","features":[622]},{"name":"MOD_CONTROL","features":[622]},{"name":"MOD_NOREPEAT","features":[622]},{"name":"MOD_SHIFT","features":[622]},{"name":"MOD_WIN","features":[622]},{"name":"MOUSEEVENTF_ABSOLUTE","features":[622]},{"name":"MOUSEEVENTF_HWHEEL","features":[622]},{"name":"MOUSEEVENTF_LEFTDOWN","features":[622]},{"name":"MOUSEEVENTF_LEFTUP","features":[622]},{"name":"MOUSEEVENTF_MIDDLEDOWN","features":[622]},{"name":"MOUSEEVENTF_MIDDLEUP","features":[622]},{"name":"MOUSEEVENTF_MOVE","features":[622]},{"name":"MOUSEEVENTF_MOVE_NOCOALESCE","features":[622]},{"name":"MOUSEEVENTF_RIGHTDOWN","features":[622]},{"name":"MOUSEEVENTF_RIGHTUP","features":[622]},{"name":"MOUSEEVENTF_VIRTUALDESK","features":[622]},{"name":"MOUSEEVENTF_WHEEL","features":[622]},{"name":"MOUSEEVENTF_XDOWN","features":[622]},{"name":"MOUSEEVENTF_XUP","features":[622]},{"name":"MOUSEINPUT","features":[622]},{"name":"MOUSEMOVEPOINT","features":[622]},{"name":"MOUSE_EVENT_FLAGS","features":[622]},{"name":"MapVirtualKeyA","features":[622]},{"name":"MapVirtualKeyExA","features":[622,620]},{"name":"MapVirtualKeyExW","features":[622,620]},{"name":"MapVirtualKeyW","features":[622]},{"name":"NEC_KBD_106_TYPE","features":[622]},{"name":"NEC_KBD_H_MODE_TYPE","features":[622]},{"name":"NEC_KBD_LAPTOP_TYPE","features":[622]},{"name":"NEC_KBD_NORMAL_TYPE","features":[622]},{"name":"NEC_KBD_N_MODE_TYPE","features":[622]},{"name":"NLSKBD_INFO_ACCESSIBILITY_KEYMAP","features":[622]},{"name":"NLSKBD_INFO_EMURATE_101_KEYBOARD","features":[622]},{"name":"NLSKBD_INFO_EMURATE_106_KEYBOARD","features":[622]},{"name":"NLSKBD_INFO_SEND_IME_NOTIFICATION","features":[622]},{"name":"NLSKBD_OEM_AX","features":[622]},{"name":"NLSKBD_OEM_DEC","features":[622]},{"name":"NLSKBD_OEM_EPSON","features":[622]},{"name":"NLSKBD_OEM_FUJITSU","features":[622]},{"name":"NLSKBD_OEM_IBM","features":[622]},{"name":"NLSKBD_OEM_MATSUSHITA","features":[622]},{"name":"NLSKBD_OEM_MICROSOFT","features":[622]},{"name":"NLSKBD_OEM_NEC","features":[622]},{"name":"NLSKBD_OEM_TOSHIBA","features":[622]},{"name":"OGONEK","features":[622]},{"name":"OVERSCORE","features":[622]},{"name":"OemKeyScan","features":[622]},{"name":"RING","features":[622]},{"name":"RegisterHotKey","features":[303,622]},{"name":"ReleaseCapture","features":[303,622]},{"name":"SCANCODE_ALT","features":[622]},{"name":"SCANCODE_CTRL","features":[622]},{"name":"SCANCODE_LSHIFT","features":[622]},{"name":"SCANCODE_LWIN","features":[622]},{"name":"SCANCODE_NUMPAD_FIRST","features":[622]},{"name":"SCANCODE_NUMPAD_LAST","features":[622]},{"name":"SCANCODE_RSHIFT","features":[622]},{"name":"SCANCODE_RWIN","features":[622]},{"name":"SCANCODE_THAI_LAYOUT_TOGGLE","features":[622]},{"name":"SGCAPS","features":[622]},{"name":"SHFT_INVALID","features":[622]},{"name":"SendInput","features":[622]},{"name":"SetActiveWindow","features":[303,622]},{"name":"SetCapture","features":[303,622]},{"name":"SetDoubleClickTime","features":[303,622]},{"name":"SetFocus","features":[303,622]},{"name":"SetKeyboardState","features":[303,622]},{"name":"SwapMouseButton","features":[303,622]},{"name":"TILDE","features":[622]},{"name":"TME_CANCEL","features":[622]},{"name":"TME_HOVER","features":[622]},{"name":"TME_LEAVE","features":[622]},{"name":"TME_NONCLIENT","features":[622]},{"name":"TME_QUERY","features":[622]},{"name":"TONOS","features":[622]},{"name":"TOSHIBA_KBD_DESKTOP_TYPE","features":[622]},{"name":"TOSHIBA_KBD_LAPTOP_TYPE","features":[622]},{"name":"TRACKMOUSEEVENT","features":[303,622]},{"name":"TRACKMOUSEEVENT_FLAGS","features":[622]},{"name":"ToAscii","features":[622]},{"name":"ToAsciiEx","features":[622,620]},{"name":"ToUnicode","features":[622]},{"name":"ToUnicodeEx","features":[622,620]},{"name":"TrackMouseEvent","features":[303,622]},{"name":"UMLAUT","features":[622]},{"name":"UnloadKeyboardLayout","features":[303,622,620]},{"name":"UnregisterHotKey","features":[303,622]},{"name":"VIRTUAL_KEY","features":[622]},{"name":"VK_0","features":[622]},{"name":"VK_1","features":[622]},{"name":"VK_2","features":[622]},{"name":"VK_3","features":[622]},{"name":"VK_4","features":[622]},{"name":"VK_5","features":[622]},{"name":"VK_6","features":[622]},{"name":"VK_7","features":[622]},{"name":"VK_8","features":[622]},{"name":"VK_9","features":[622]},{"name":"VK_A","features":[622]},{"name":"VK_ABNT_C1","features":[622]},{"name":"VK_ABNT_C2","features":[622]},{"name":"VK_ACCEPT","features":[622]},{"name":"VK_ADD","features":[622]},{"name":"VK_APPS","features":[622]},{"name":"VK_ATTN","features":[622]},{"name":"VK_B","features":[622]},{"name":"VK_BACK","features":[622]},{"name":"VK_BROWSER_BACK","features":[622]},{"name":"VK_BROWSER_FAVORITES","features":[622]},{"name":"VK_BROWSER_FORWARD","features":[622]},{"name":"VK_BROWSER_HOME","features":[622]},{"name":"VK_BROWSER_REFRESH","features":[622]},{"name":"VK_BROWSER_SEARCH","features":[622]},{"name":"VK_BROWSER_STOP","features":[622]},{"name":"VK_C","features":[622]},{"name":"VK_CANCEL","features":[622]},{"name":"VK_CAPITAL","features":[622]},{"name":"VK_CLEAR","features":[622]},{"name":"VK_CONTROL","features":[622]},{"name":"VK_CONVERT","features":[622]},{"name":"VK_CRSEL","features":[622]},{"name":"VK_D","features":[622]},{"name":"VK_DBE_ALPHANUMERIC","features":[622]},{"name":"VK_DBE_CODEINPUT","features":[622]},{"name":"VK_DBE_DBCSCHAR","features":[622]},{"name":"VK_DBE_DETERMINESTRING","features":[622]},{"name":"VK_DBE_ENTERDLGCONVERSIONMODE","features":[622]},{"name":"VK_DBE_ENTERIMECONFIGMODE","features":[622]},{"name":"VK_DBE_ENTERWORDREGISTERMODE","features":[622]},{"name":"VK_DBE_FLUSHSTRING","features":[622]},{"name":"VK_DBE_HIRAGANA","features":[622]},{"name":"VK_DBE_KATAKANA","features":[622]},{"name":"VK_DBE_NOCODEINPUT","features":[622]},{"name":"VK_DBE_NOROMAN","features":[622]},{"name":"VK_DBE_ROMAN","features":[622]},{"name":"VK_DBE_SBCSCHAR","features":[622]},{"name":"VK_DECIMAL","features":[622]},{"name":"VK_DELETE","features":[622]},{"name":"VK_DIVIDE","features":[622]},{"name":"VK_DOWN","features":[622]},{"name":"VK_E","features":[622]},{"name":"VK_END","features":[622]},{"name":"VK_EREOF","features":[622]},{"name":"VK_ESCAPE","features":[622]},{"name":"VK_EXECUTE","features":[622]},{"name":"VK_EXSEL","features":[622]},{"name":"VK_F","features":[622]},{"name":"VK_F","features":[622]},{"name":"VK_F1","features":[622]},{"name":"VK_F10","features":[622]},{"name":"VK_F11","features":[622]},{"name":"VK_F12","features":[622]},{"name":"VK_F13","features":[622]},{"name":"VK_F14","features":[622]},{"name":"VK_F15","features":[622]},{"name":"VK_F16","features":[622]},{"name":"VK_F17","features":[622]},{"name":"VK_F18","features":[622]},{"name":"VK_F19","features":[622]},{"name":"VK_F2","features":[622]},{"name":"VK_F20","features":[622]},{"name":"VK_F21","features":[622]},{"name":"VK_F22","features":[622]},{"name":"VK_F23","features":[622]},{"name":"VK_F24","features":[622]},{"name":"VK_F3","features":[622]},{"name":"VK_F4","features":[622]},{"name":"VK_F5","features":[622]},{"name":"VK_F6","features":[622]},{"name":"VK_F7","features":[622]},{"name":"VK_F8","features":[622]},{"name":"VK_F9","features":[622]},{"name":"VK_FINAL","features":[622]},{"name":"VK_FPARAM","features":[622]},{"name":"VK_G","features":[622]},{"name":"VK_GAMEPAD_A","features":[622]},{"name":"VK_GAMEPAD_B","features":[622]},{"name":"VK_GAMEPAD_DPAD_DOWN","features":[622]},{"name":"VK_GAMEPAD_DPAD_LEFT","features":[622]},{"name":"VK_GAMEPAD_DPAD_RIGHT","features":[622]},{"name":"VK_GAMEPAD_DPAD_UP","features":[622]},{"name":"VK_GAMEPAD_LEFT_SHOULDER","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_BUTTON","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_DOWN","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_LEFT","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_RIGHT","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_UP","features":[622]},{"name":"VK_GAMEPAD_LEFT_TRIGGER","features":[622]},{"name":"VK_GAMEPAD_MENU","features":[622]},{"name":"VK_GAMEPAD_RIGHT_SHOULDER","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_BUTTON","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_DOWN","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_LEFT","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_RIGHT","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_UP","features":[622]},{"name":"VK_GAMEPAD_RIGHT_TRIGGER","features":[622]},{"name":"VK_GAMEPAD_VIEW","features":[622]},{"name":"VK_GAMEPAD_X","features":[622]},{"name":"VK_GAMEPAD_Y","features":[622]},{"name":"VK_H","features":[622]},{"name":"VK_HANGEUL","features":[622]},{"name":"VK_HANGUL","features":[622]},{"name":"VK_HANJA","features":[622]},{"name":"VK_HELP","features":[622]},{"name":"VK_HOME","features":[622]},{"name":"VK_I","features":[622]},{"name":"VK_ICO_00","features":[622]},{"name":"VK_ICO_CLEAR","features":[622]},{"name":"VK_ICO_HELP","features":[622]},{"name":"VK_IME_OFF","features":[622]},{"name":"VK_IME_ON","features":[622]},{"name":"VK_INSERT","features":[622]},{"name":"VK_J","features":[622]},{"name":"VK_JUNJA","features":[622]},{"name":"VK_K","features":[622]},{"name":"VK_KANA","features":[622]},{"name":"VK_KANJI","features":[622]},{"name":"VK_L","features":[622]},{"name":"VK_LAUNCH_APP1","features":[622]},{"name":"VK_LAUNCH_APP2","features":[622]},{"name":"VK_LAUNCH_MAIL","features":[622]},{"name":"VK_LAUNCH_MEDIA_SELECT","features":[622]},{"name":"VK_LBUTTON","features":[622]},{"name":"VK_LCONTROL","features":[622]},{"name":"VK_LEFT","features":[622]},{"name":"VK_LMENU","features":[622]},{"name":"VK_LSHIFT","features":[622]},{"name":"VK_LWIN","features":[622]},{"name":"VK_M","features":[622]},{"name":"VK_MBUTTON","features":[622]},{"name":"VK_MEDIA_NEXT_TRACK","features":[622]},{"name":"VK_MEDIA_PLAY_PAUSE","features":[622]},{"name":"VK_MEDIA_PREV_TRACK","features":[622]},{"name":"VK_MEDIA_STOP","features":[622]},{"name":"VK_MENU","features":[622]},{"name":"VK_MODECHANGE","features":[622]},{"name":"VK_MULTIPLY","features":[622]},{"name":"VK_N","features":[622]},{"name":"VK_NAVIGATION_ACCEPT","features":[622]},{"name":"VK_NAVIGATION_CANCEL","features":[622]},{"name":"VK_NAVIGATION_DOWN","features":[622]},{"name":"VK_NAVIGATION_LEFT","features":[622]},{"name":"VK_NAVIGATION_MENU","features":[622]},{"name":"VK_NAVIGATION_RIGHT","features":[622]},{"name":"VK_NAVIGATION_UP","features":[622]},{"name":"VK_NAVIGATION_VIEW","features":[622]},{"name":"VK_NEXT","features":[622]},{"name":"VK_NONAME","features":[622]},{"name":"VK_NONCONVERT","features":[622]},{"name":"VK_NUMLOCK","features":[622]},{"name":"VK_NUMPAD0","features":[622]},{"name":"VK_NUMPAD1","features":[622]},{"name":"VK_NUMPAD2","features":[622]},{"name":"VK_NUMPAD3","features":[622]},{"name":"VK_NUMPAD4","features":[622]},{"name":"VK_NUMPAD5","features":[622]},{"name":"VK_NUMPAD6","features":[622]},{"name":"VK_NUMPAD7","features":[622]},{"name":"VK_NUMPAD8","features":[622]},{"name":"VK_NUMPAD9","features":[622]},{"name":"VK_O","features":[622]},{"name":"VK_OEM_1","features":[622]},{"name":"VK_OEM_102","features":[622]},{"name":"VK_OEM_2","features":[622]},{"name":"VK_OEM_3","features":[622]},{"name":"VK_OEM_4","features":[622]},{"name":"VK_OEM_5","features":[622]},{"name":"VK_OEM_6","features":[622]},{"name":"VK_OEM_7","features":[622]},{"name":"VK_OEM_8","features":[622]},{"name":"VK_OEM_ATTN","features":[622]},{"name":"VK_OEM_AUTO","features":[622]},{"name":"VK_OEM_AX","features":[622]},{"name":"VK_OEM_BACKTAB","features":[622]},{"name":"VK_OEM_CLEAR","features":[622]},{"name":"VK_OEM_COMMA","features":[622]},{"name":"VK_OEM_COPY","features":[622]},{"name":"VK_OEM_CUSEL","features":[622]},{"name":"VK_OEM_ENLW","features":[622]},{"name":"VK_OEM_FINISH","features":[622]},{"name":"VK_OEM_FJ_JISHO","features":[622]},{"name":"VK_OEM_FJ_LOYA","features":[622]},{"name":"VK_OEM_FJ_MASSHOU","features":[622]},{"name":"VK_OEM_FJ_ROYA","features":[622]},{"name":"VK_OEM_FJ_TOUROKU","features":[622]},{"name":"VK_OEM_JUMP","features":[622]},{"name":"VK_OEM_MINUS","features":[622]},{"name":"VK_OEM_NEC_EQUAL","features":[622]},{"name":"VK_OEM_PA1","features":[622]},{"name":"VK_OEM_PA2","features":[622]},{"name":"VK_OEM_PA3","features":[622]},{"name":"VK_OEM_PERIOD","features":[622]},{"name":"VK_OEM_PLUS","features":[622]},{"name":"VK_OEM_RESET","features":[622]},{"name":"VK_OEM_WSCTRL","features":[622]},{"name":"VK_P","features":[622]},{"name":"VK_PA1","features":[622]},{"name":"VK_PACKET","features":[622]},{"name":"VK_PAUSE","features":[622]},{"name":"VK_PLAY","features":[622]},{"name":"VK_PRINT","features":[622]},{"name":"VK_PRIOR","features":[622]},{"name":"VK_PROCESSKEY","features":[622]},{"name":"VK_Q","features":[622]},{"name":"VK_R","features":[622]},{"name":"VK_RBUTTON","features":[622]},{"name":"VK_RCONTROL","features":[622]},{"name":"VK_RETURN","features":[622]},{"name":"VK_RIGHT","features":[622]},{"name":"VK_RMENU","features":[622]},{"name":"VK_RSHIFT","features":[622]},{"name":"VK_RWIN","features":[622]},{"name":"VK_S","features":[622]},{"name":"VK_SCROLL","features":[622]},{"name":"VK_SELECT","features":[622]},{"name":"VK_SEPARATOR","features":[622]},{"name":"VK_SHIFT","features":[622]},{"name":"VK_SLEEP","features":[622]},{"name":"VK_SNAPSHOT","features":[622]},{"name":"VK_SPACE","features":[622]},{"name":"VK_SUBTRACT","features":[622]},{"name":"VK_T","features":[622]},{"name":"VK_TAB","features":[622]},{"name":"VK_TO_BIT","features":[622]},{"name":"VK_TO_WCHARS1","features":[622]},{"name":"VK_TO_WCHARS10","features":[622]},{"name":"VK_TO_WCHARS2","features":[622]},{"name":"VK_TO_WCHARS3","features":[622]},{"name":"VK_TO_WCHARS4","features":[622]},{"name":"VK_TO_WCHARS5","features":[622]},{"name":"VK_TO_WCHARS6","features":[622]},{"name":"VK_TO_WCHARS7","features":[622]},{"name":"VK_TO_WCHARS8","features":[622]},{"name":"VK_TO_WCHARS9","features":[622]},{"name":"VK_TO_WCHAR_TABLE","features":[622]},{"name":"VK_U","features":[622]},{"name":"VK_UP","features":[622]},{"name":"VK_V","features":[622]},{"name":"VK_VOLUME_DOWN","features":[622]},{"name":"VK_VOLUME_MUTE","features":[622]},{"name":"VK_VOLUME_UP","features":[622]},{"name":"VK_VSC","features":[622]},{"name":"VK_W","features":[622]},{"name":"VK_X","features":[622]},{"name":"VK_XBUTTON1","features":[622]},{"name":"VK_XBUTTON2","features":[622]},{"name":"VK_Y","features":[622]},{"name":"VK_Z","features":[622]},{"name":"VK_ZOOM","features":[622]},{"name":"VK__none_","features":[622]},{"name":"VSC_LPWSTR","features":[622]},{"name":"VSC_VK","features":[622]},{"name":"VkKeyScanA","features":[622]},{"name":"VkKeyScanExA","features":[622,620]},{"name":"VkKeyScanExW","features":[622,620]},{"name":"VkKeyScanW","features":[622]},{"name":"WCH_DEAD","features":[622]},{"name":"WCH_LGTR","features":[622]},{"name":"WCH_NONE","features":[622]},{"name":"_TrackMouseEvent","features":[303,622]},{"name":"keybd_event","features":[622]},{"name":"mouse_event","features":[622]},{"name":"wszACUTE","features":[622]},{"name":"wszBREVE","features":[622]},{"name":"wszCEDILLA","features":[622]},{"name":"wszCIRCUMFLEX","features":[622]},{"name":"wszDIARESIS_TONOS","features":[622]},{"name":"wszDOT_ABOVE","features":[622]},{"name":"wszDOUBLE_ACUTE","features":[622]},{"name":"wszGRAVE","features":[622]},{"name":"wszHACEK","features":[622]},{"name":"wszHOOK_ABOVE","features":[622]},{"name":"wszMACRON","features":[622]},{"name":"wszOGONEK","features":[622]},{"name":"wszOVERSCORE","features":[622]},{"name":"wszRING","features":[622]},{"name":"wszTILDE","features":[622]},{"name":"wszTONOS","features":[622]},{"name":"wszUMLAUT","features":[622]}],"658":[{"name":"EnableMouseInPointer","features":[303,615]},{"name":"GetPointerCursorId","features":[303,615]},{"name":"GetPointerDevice","features":[303,314,353,615]},{"name":"GetPointerDeviceCursors","features":[303,353,615]},{"name":"GetPointerDeviceProperties","features":[303,353,615]},{"name":"GetPointerDeviceRects","features":[303,615]},{"name":"GetPointerDevices","features":[303,314,353,615]},{"name":"GetPointerFrameInfo","features":[303,615,365]},{"name":"GetPointerFrameInfoHistory","features":[303,615,365]},{"name":"GetPointerFramePenInfo","features":[303,615,365]},{"name":"GetPointerFramePenInfoHistory","features":[303,615,365]},{"name":"GetPointerFrameTouchInfo","features":[303,615,365]},{"name":"GetPointerFrameTouchInfoHistory","features":[303,615,365]},{"name":"GetPointerInfo","features":[303,615,365]},{"name":"GetPointerInfoHistory","features":[303,615,365]},{"name":"GetPointerInputTransform","features":[303,615]},{"name":"GetPointerPenInfo","features":[303,615,365]},{"name":"GetPointerPenInfoHistory","features":[303,615,365]},{"name":"GetPointerTouchInfo","features":[303,615,365]},{"name":"GetPointerTouchInfoHistory","features":[303,615,365]},{"name":"GetPointerType","features":[303,615,365]},{"name":"GetRawPointerDeviceData","features":[303,353,615]},{"name":"GetUnpredictedMessagePos","features":[615]},{"name":"INPUT_INJECTION_VALUE","features":[615]},{"name":"INPUT_TRANSFORM","features":[615]},{"name":"InitializeTouchInjection","features":[303,615]},{"name":"InjectSyntheticPointerInput","features":[303,353,615,365]},{"name":"InjectTouchInput","features":[303,615,365]},{"name":"IsMouseInPointerEnabled","features":[303,615]},{"name":"POINTER_BUTTON_CHANGE_TYPE","features":[615]},{"name":"POINTER_CHANGE_FIFTHBUTTON_DOWN","features":[615]},{"name":"POINTER_CHANGE_FIFTHBUTTON_UP","features":[615]},{"name":"POINTER_CHANGE_FIRSTBUTTON_DOWN","features":[615]},{"name":"POINTER_CHANGE_FIRSTBUTTON_UP","features":[615]},{"name":"POINTER_CHANGE_FOURTHBUTTON_DOWN","features":[615]},{"name":"POINTER_CHANGE_FOURTHBUTTON_UP","features":[615]},{"name":"POINTER_CHANGE_NONE","features":[615]},{"name":"POINTER_CHANGE_SECONDBUTTON_DOWN","features":[615]},{"name":"POINTER_CHANGE_SECONDBUTTON_UP","features":[615]},{"name":"POINTER_CHANGE_THIRDBUTTON_DOWN","features":[615]},{"name":"POINTER_CHANGE_THIRDBUTTON_UP","features":[615]},{"name":"POINTER_FLAGS","features":[615]},{"name":"POINTER_FLAG_CANCELED","features":[615]},{"name":"POINTER_FLAG_CAPTURECHANGED","features":[615]},{"name":"POINTER_FLAG_CONFIDENCE","features":[615]},{"name":"POINTER_FLAG_DOWN","features":[615]},{"name":"POINTER_FLAG_FIFTHBUTTON","features":[615]},{"name":"POINTER_FLAG_FIRSTBUTTON","features":[615]},{"name":"POINTER_FLAG_FOURTHBUTTON","features":[615]},{"name":"POINTER_FLAG_HASTRANSFORM","features":[615]},{"name":"POINTER_FLAG_HWHEEL","features":[615]},{"name":"POINTER_FLAG_INCONTACT","features":[615]},{"name":"POINTER_FLAG_INRANGE","features":[615]},{"name":"POINTER_FLAG_NEW","features":[615]},{"name":"POINTER_FLAG_NONE","features":[615]},{"name":"POINTER_FLAG_PRIMARY","features":[615]},{"name":"POINTER_FLAG_SECONDBUTTON","features":[615]},{"name":"POINTER_FLAG_THIRDBUTTON","features":[615]},{"name":"POINTER_FLAG_UP","features":[615]},{"name":"POINTER_FLAG_UPDATE","features":[615]},{"name":"POINTER_FLAG_WHEEL","features":[615]},{"name":"POINTER_INFO","features":[303,615,365]},{"name":"POINTER_PEN_INFO","features":[303,615,365]},{"name":"POINTER_TOUCH_INFO","features":[303,615,365]},{"name":"SkipPointerFrameMessages","features":[303,615]},{"name":"TOUCH_FEEDBACK_DEFAULT","features":[615]},{"name":"TOUCH_FEEDBACK_INDIRECT","features":[615]},{"name":"TOUCH_FEEDBACK_MODE","features":[615]},{"name":"TOUCH_FEEDBACK_NONE","features":[615]}],"659":[{"name":"IRadialControllerConfigurationInterop","features":[623]},{"name":"IRadialControllerIndependentInputSourceInterop","features":[623]},{"name":"IRadialControllerInterop","features":[623]}],"660":[{"name":"CloseGestureInfoHandle","features":[303,624]},{"name":"CloseTouchInputHandle","features":[303,624]},{"name":"GESTURECONFIG","features":[624]},{"name":"GESTURECONFIG_ID","features":[624]},{"name":"GESTUREINFO","features":[303,624]},{"name":"GESTURENOTIFYSTRUCT","features":[303,624]},{"name":"GID_BEGIN","features":[624]},{"name":"GID_END","features":[624]},{"name":"GID_PAN","features":[624]},{"name":"GID_PRESSANDTAP","features":[624]},{"name":"GID_ROLLOVER","features":[624]},{"name":"GID_ROTATE","features":[624]},{"name":"GID_TWOFINGERTAP","features":[624]},{"name":"GID_ZOOM","features":[624]},{"name":"GetGestureConfig","features":[303,624]},{"name":"GetGestureExtraArgs","features":[303,624]},{"name":"GetGestureInfo","features":[303,624]},{"name":"GetTouchInputInfo","features":[303,624]},{"name":"HGESTUREINFO","features":[624]},{"name":"HTOUCHINPUT","features":[624]},{"name":"IInertiaProcessor","features":[624]},{"name":"IManipulationProcessor","features":[624]},{"name":"InertiaProcessor","features":[624]},{"name":"IsTouchWindow","features":[303,624]},{"name":"MANIPULATION_ALL","features":[624]},{"name":"MANIPULATION_NONE","features":[624]},{"name":"MANIPULATION_PROCESSOR_MANIPULATIONS","features":[624]},{"name":"MANIPULATION_ROTATE","features":[624]},{"name":"MANIPULATION_SCALE","features":[624]},{"name":"MANIPULATION_TRANSLATE_X","features":[624]},{"name":"MANIPULATION_TRANSLATE_Y","features":[624]},{"name":"ManipulationProcessor","features":[624]},{"name":"REGISTER_TOUCH_WINDOW_FLAGS","features":[624]},{"name":"RegisterTouchWindow","features":[303,624]},{"name":"SetGestureConfig","features":[303,624]},{"name":"TOUCHEVENTF_DOWN","features":[624]},{"name":"TOUCHEVENTF_FLAGS","features":[624]},{"name":"TOUCHEVENTF_INRANGE","features":[624]},{"name":"TOUCHEVENTF_MOVE","features":[624]},{"name":"TOUCHEVENTF_NOCOALESCE","features":[624]},{"name":"TOUCHEVENTF_PALM","features":[624]},{"name":"TOUCHEVENTF_PEN","features":[624]},{"name":"TOUCHEVENTF_PRIMARY","features":[624]},{"name":"TOUCHEVENTF_UP","features":[624]},{"name":"TOUCHINPUT","features":[303,624]},{"name":"TOUCHINPUTMASKF_CONTACTAREA","features":[624]},{"name":"TOUCHINPUTMASKF_EXTRAINFO","features":[624]},{"name":"TOUCHINPUTMASKF_MASK","features":[624]},{"name":"TOUCHINPUTMASKF_TIMEFROMSYSTEM","features":[624]},{"name":"TWF_FINETOUCH","features":[624]},{"name":"TWF_WANTPALM","features":[624]},{"name":"UnregisterTouchWindow","features":[303,624]},{"name":"_IManipulationEvents","features":[624]}],"661":[{"name":"BATTERY_DEVTYPE","features":[625]},{"name":"BATTERY_DEVTYPE_GAMEPAD","features":[625]},{"name":"BATTERY_DEVTYPE_HEADSET","features":[625]},{"name":"BATTERY_LEVEL","features":[625]},{"name":"BATTERY_LEVEL_EMPTY","features":[625]},{"name":"BATTERY_LEVEL_FULL","features":[625]},{"name":"BATTERY_LEVEL_LOW","features":[625]},{"name":"BATTERY_LEVEL_MEDIUM","features":[625]},{"name":"BATTERY_TYPE","features":[625]},{"name":"BATTERY_TYPE_ALKALINE","features":[625]},{"name":"BATTERY_TYPE_DISCONNECTED","features":[625]},{"name":"BATTERY_TYPE_NIMH","features":[625]},{"name":"BATTERY_TYPE_UNKNOWN","features":[625]},{"name":"BATTERY_TYPE_WIRED","features":[625]},{"name":"VK_PAD_A","features":[625]},{"name":"VK_PAD_B","features":[625]},{"name":"VK_PAD_BACK","features":[625]},{"name":"VK_PAD_DPAD_DOWN","features":[625]},{"name":"VK_PAD_DPAD_LEFT","features":[625]},{"name":"VK_PAD_DPAD_RIGHT","features":[625]},{"name":"VK_PAD_DPAD_UP","features":[625]},{"name":"VK_PAD_LSHOULDER","features":[625]},{"name":"VK_PAD_LTHUMB_DOWN","features":[625]},{"name":"VK_PAD_LTHUMB_DOWNLEFT","features":[625]},{"name":"VK_PAD_LTHUMB_DOWNRIGHT","features":[625]},{"name":"VK_PAD_LTHUMB_LEFT","features":[625]},{"name":"VK_PAD_LTHUMB_PRESS","features":[625]},{"name":"VK_PAD_LTHUMB_RIGHT","features":[625]},{"name":"VK_PAD_LTHUMB_UP","features":[625]},{"name":"VK_PAD_LTHUMB_UPLEFT","features":[625]},{"name":"VK_PAD_LTHUMB_UPRIGHT","features":[625]},{"name":"VK_PAD_LTRIGGER","features":[625]},{"name":"VK_PAD_RSHOULDER","features":[625]},{"name":"VK_PAD_RTHUMB_DOWN","features":[625]},{"name":"VK_PAD_RTHUMB_DOWNLEFT","features":[625]},{"name":"VK_PAD_RTHUMB_DOWNRIGHT","features":[625]},{"name":"VK_PAD_RTHUMB_LEFT","features":[625]},{"name":"VK_PAD_RTHUMB_PRESS","features":[625]},{"name":"VK_PAD_RTHUMB_RIGHT","features":[625]},{"name":"VK_PAD_RTHUMB_UP","features":[625]},{"name":"VK_PAD_RTHUMB_UPLEFT","features":[625]},{"name":"VK_PAD_RTHUMB_UPRIGHT","features":[625]},{"name":"VK_PAD_RTRIGGER","features":[625]},{"name":"VK_PAD_START","features":[625]},{"name":"VK_PAD_X","features":[625]},{"name":"VK_PAD_Y","features":[625]},{"name":"XINPUT_BATTERY_INFORMATION","features":[625]},{"name":"XINPUT_CAPABILITIES","features":[625]},{"name":"XINPUT_CAPABILITIES_FLAGS","features":[625]},{"name":"XINPUT_CAPS_FFB_SUPPORTED","features":[625]},{"name":"XINPUT_CAPS_NO_NAVIGATION","features":[625]},{"name":"XINPUT_CAPS_PMD_SUPPORTED","features":[625]},{"name":"XINPUT_CAPS_VOICE_SUPPORTED","features":[625]},{"name":"XINPUT_CAPS_WIRELESS","features":[625]},{"name":"XINPUT_DEVSUBTYPE","features":[625]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_PAD","features":[625]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_STICK","features":[625]},{"name":"XINPUT_DEVSUBTYPE_DANCE_PAD","features":[625]},{"name":"XINPUT_DEVSUBTYPE_DRUM_KIT","features":[625]},{"name":"XINPUT_DEVSUBTYPE_FLIGHT_STICK","features":[625]},{"name":"XINPUT_DEVSUBTYPE_GAMEPAD","features":[625]},{"name":"XINPUT_DEVSUBTYPE_GUITAR","features":[625]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_ALTERNATE","features":[625]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_BASS","features":[625]},{"name":"XINPUT_DEVSUBTYPE_UNKNOWN","features":[625]},{"name":"XINPUT_DEVSUBTYPE_WHEEL","features":[625]},{"name":"XINPUT_DEVTYPE","features":[625]},{"name":"XINPUT_DEVTYPE_GAMEPAD","features":[625]},{"name":"XINPUT_DLL","features":[625]},{"name":"XINPUT_DLL_A","features":[625]},{"name":"XINPUT_DLL_W","features":[625]},{"name":"XINPUT_FLAG","features":[625]},{"name":"XINPUT_FLAG_ALL","features":[625]},{"name":"XINPUT_FLAG_GAMEPAD","features":[625]},{"name":"XINPUT_GAMEPAD","features":[625]},{"name":"XINPUT_GAMEPAD_A","features":[625]},{"name":"XINPUT_GAMEPAD_B","features":[625]},{"name":"XINPUT_GAMEPAD_BACK","features":[625]},{"name":"XINPUT_GAMEPAD_BUTTON_FLAGS","features":[625]},{"name":"XINPUT_GAMEPAD_DPAD_DOWN","features":[625]},{"name":"XINPUT_GAMEPAD_DPAD_LEFT","features":[625]},{"name":"XINPUT_GAMEPAD_DPAD_RIGHT","features":[625]},{"name":"XINPUT_GAMEPAD_DPAD_UP","features":[625]},{"name":"XINPUT_GAMEPAD_LEFT_SHOULDER","features":[625]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB","features":[625]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE","features":[625]},{"name":"XINPUT_GAMEPAD_RIGHT_SHOULDER","features":[625]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB","features":[625]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE","features":[625]},{"name":"XINPUT_GAMEPAD_START","features":[625]},{"name":"XINPUT_GAMEPAD_TRIGGER_THRESHOLD","features":[625]},{"name":"XINPUT_GAMEPAD_X","features":[625]},{"name":"XINPUT_GAMEPAD_Y","features":[625]},{"name":"XINPUT_KEYSTROKE","features":[625]},{"name":"XINPUT_KEYSTROKE_FLAGS","features":[625]},{"name":"XINPUT_KEYSTROKE_KEYDOWN","features":[625]},{"name":"XINPUT_KEYSTROKE_KEYUP","features":[625]},{"name":"XINPUT_KEYSTROKE_REPEAT","features":[625]},{"name":"XINPUT_STATE","features":[625]},{"name":"XINPUT_VIBRATION","features":[625]},{"name":"XINPUT_VIRTUAL_KEY","features":[625]},{"name":"XInputEnable","features":[303,625]},{"name":"XInputGetAudioDeviceIds","features":[625]},{"name":"XInputGetBatteryInformation","features":[625]},{"name":"XInputGetCapabilities","features":[625]},{"name":"XInputGetKeystroke","features":[625]},{"name":"XInputGetState","features":[625]},{"name":"XInputSetState","features":[625]},{"name":"XUSER_INDEX_ANY","features":[625]},{"name":"XUSER_MAX_COUNT","features":[625]}],"662":[{"name":"AddPointerInteractionContext","features":[626]},{"name":"BufferPointerPacketsInteractionContext","features":[303,615,626,365]},{"name":"CROSS_SLIDE_FLAGS","features":[626]},{"name":"CROSS_SLIDE_FLAGS_MAX","features":[626]},{"name":"CROSS_SLIDE_FLAGS_NONE","features":[626]},{"name":"CROSS_SLIDE_FLAGS_REARRANGE","features":[626]},{"name":"CROSS_SLIDE_FLAGS_SELECT","features":[626]},{"name":"CROSS_SLIDE_FLAGS_SPEED_BUMP","features":[626]},{"name":"CROSS_SLIDE_PARAMETER","features":[626]},{"name":"CROSS_SLIDE_THRESHOLD","features":[626]},{"name":"CROSS_SLIDE_THRESHOLD_COUNT","features":[626]},{"name":"CROSS_SLIDE_THRESHOLD_MAX","features":[626]},{"name":"CROSS_SLIDE_THRESHOLD_REARRANGE_START","features":[626]},{"name":"CROSS_SLIDE_THRESHOLD_SELECT_START","features":[626]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_END","features":[626]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_START","features":[626]},{"name":"CreateInteractionContext","features":[626]},{"name":"DestroyInteractionContext","features":[626]},{"name":"GetCrossSlideParameterInteractionContext","features":[626]},{"name":"GetHoldParameterInteractionContext","features":[626]},{"name":"GetInertiaParameterInteractionContext","features":[626]},{"name":"GetInteractionConfigurationInteractionContext","features":[626]},{"name":"GetMouseWheelParameterInteractionContext","features":[626]},{"name":"GetPropertyInteractionContext","features":[626]},{"name":"GetStateInteractionContext","features":[303,615,626,365]},{"name":"GetTapParameterInteractionContext","features":[626]},{"name":"GetTranslationParameterInteractionContext","features":[626]},{"name":"HINTERACTIONCONTEXT","features":[626]},{"name":"HOLD_PARAMETER","features":[626]},{"name":"HOLD_PARAMETER_MAX","features":[626]},{"name":"HOLD_PARAMETER_MAX_CONTACT_COUNT","features":[626]},{"name":"HOLD_PARAMETER_MIN_CONTACT_COUNT","features":[626]},{"name":"HOLD_PARAMETER_THRESHOLD_RADIUS","features":[626]},{"name":"HOLD_PARAMETER_THRESHOLD_START_DELAY","features":[626]},{"name":"INERTIA_PARAMETER","features":[626]},{"name":"INERTIA_PARAMETER_EXPANSION_DECELERATION","features":[626]},{"name":"INERTIA_PARAMETER_EXPANSION_EXPANSION","features":[626]},{"name":"INERTIA_PARAMETER_MAX","features":[626]},{"name":"INERTIA_PARAMETER_ROTATION_ANGLE","features":[626]},{"name":"INERTIA_PARAMETER_ROTATION_DECELERATION","features":[626]},{"name":"INERTIA_PARAMETER_TRANSLATION_DECELERATION","features":[626]},{"name":"INERTIA_PARAMETER_TRANSLATION_DISPLACEMENT","features":[626]},{"name":"INTERACTION_ARGUMENTS_CROSS_SLIDE","features":[626]},{"name":"INTERACTION_ARGUMENTS_MANIPULATION","features":[626]},{"name":"INTERACTION_ARGUMENTS_TAP","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAGS","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_EXACT","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_HORIZONTAL","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_REARRANGE","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SELECT","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SPEED_BUMP","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_DRAG","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MOUSE","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MULTIPLE_FINGER","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_EXACT","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_MULTIPLE_FINGER_PANNING","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_X","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_Y","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION_INERTIA","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING_INERTIA","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_INERTIA","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_X","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_Y","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_MAX","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_NONE","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_SECONDARY_TAP","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_DOUBLE","features":[626]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_MULTIPLE_FINGER","features":[626]},{"name":"INTERACTION_CONTEXT_CONFIGURATION","features":[626]},{"name":"INTERACTION_CONTEXT_OUTPUT","features":[626,365]},{"name":"INTERACTION_CONTEXT_OUTPUT2","features":[626,365]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK","features":[626,365]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK2","features":[626,365]},{"name":"INTERACTION_CONTEXT_PROPERTY","features":[626]},{"name":"INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS","features":[626]},{"name":"INTERACTION_CONTEXT_PROPERTY_INTERACTION_UI_FEEDBACK","features":[626]},{"name":"INTERACTION_CONTEXT_PROPERTY_MAX","features":[626]},{"name":"INTERACTION_CONTEXT_PROPERTY_MEASUREMENT_UNITS","features":[626]},{"name":"INTERACTION_FLAGS","features":[626]},{"name":"INTERACTION_FLAG_BEGIN","features":[626]},{"name":"INTERACTION_FLAG_CANCEL","features":[626]},{"name":"INTERACTION_FLAG_END","features":[626]},{"name":"INTERACTION_FLAG_INERTIA","features":[626]},{"name":"INTERACTION_FLAG_MAX","features":[626]},{"name":"INTERACTION_FLAG_NONE","features":[626]},{"name":"INTERACTION_ID","features":[626]},{"name":"INTERACTION_ID_CROSS_SLIDE","features":[626]},{"name":"INTERACTION_ID_DRAG","features":[626]},{"name":"INTERACTION_ID_HOLD","features":[626]},{"name":"INTERACTION_ID_MANIPULATION","features":[626]},{"name":"INTERACTION_ID_MAX","features":[626]},{"name":"INTERACTION_ID_NONE","features":[626]},{"name":"INTERACTION_ID_SECONDARY_TAP","features":[626]},{"name":"INTERACTION_ID_TAP","features":[626]},{"name":"INTERACTION_STATE","features":[626]},{"name":"INTERACTION_STATE_IDLE","features":[626]},{"name":"INTERACTION_STATE_IN_INTERACTION","features":[626]},{"name":"INTERACTION_STATE_MAX","features":[626]},{"name":"INTERACTION_STATE_POSSIBLE_DOUBLE_TAP","features":[626]},{"name":"MANIPULATION_RAILS_STATE","features":[626]},{"name":"MANIPULATION_RAILS_STATE_FREE","features":[626]},{"name":"MANIPULATION_RAILS_STATE_MAX","features":[626]},{"name":"MANIPULATION_RAILS_STATE_RAILED","features":[626]},{"name":"MANIPULATION_RAILS_STATE_UNDECIDED","features":[626]},{"name":"MANIPULATION_TRANSFORM","features":[626]},{"name":"MANIPULATION_VELOCITY","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_X","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_Y","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_ROTATION","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_SCALE","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER_MAX","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_X","features":[626]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_Y","features":[626]},{"name":"ProcessBufferedPacketsInteractionContext","features":[626]},{"name":"ProcessInertiaInteractionContext","features":[626]},{"name":"ProcessPointerFramesInteractionContext","features":[303,615,626,365]},{"name":"RegisterOutputCallbackInteractionContext","features":[626,365]},{"name":"RegisterOutputCallbackInteractionContext2","features":[626,365]},{"name":"RemovePointerInteractionContext","features":[626]},{"name":"ResetInteractionContext","features":[626]},{"name":"SetCrossSlideParametersInteractionContext","features":[626]},{"name":"SetHoldParameterInteractionContext","features":[626]},{"name":"SetInertiaParameterInteractionContext","features":[626]},{"name":"SetInteractionConfigurationInteractionContext","features":[626]},{"name":"SetMouseWheelParameterInteractionContext","features":[626]},{"name":"SetPivotInteractionContext","features":[626]},{"name":"SetPropertyInteractionContext","features":[626]},{"name":"SetTapParameterInteractionContext","features":[626]},{"name":"SetTranslationParameterInteractionContext","features":[626]},{"name":"StopInteractionContext","features":[626]},{"name":"TAP_PARAMETER","features":[626]},{"name":"TAP_PARAMETER_MAX","features":[626]},{"name":"TAP_PARAMETER_MAX_CONTACT_COUNT","features":[626]},{"name":"TAP_PARAMETER_MIN_CONTACT_COUNT","features":[626]},{"name":"TRANSLATION_PARAMETER","features":[626]},{"name":"TRANSLATION_PARAMETER_MAX","features":[626]},{"name":"TRANSLATION_PARAMETER_MAX_CONTACT_COUNT","features":[626]},{"name":"TRANSLATION_PARAMETER_MIN_CONTACT_COUNT","features":[626]}],"663":[{"name":"ALL_RECONCILE_FLAGS","features":[627]},{"name":"EMPTY_VOLUME_CACHE_FLAGS","features":[627]},{"name":"EVCCBF_LASTNOTIFICATION","features":[627]},{"name":"EVCF_DONTSHOWIFZERO","features":[627]},{"name":"EVCF_ENABLEBYDEFAULT","features":[627]},{"name":"EVCF_ENABLEBYDEFAULT_AUTO","features":[627]},{"name":"EVCF_HASSETTINGS","features":[627]},{"name":"EVCF_OUTOFDISKSPACE","features":[627]},{"name":"EVCF_REMOVEFROMLIST","features":[627]},{"name":"EVCF_SETTINGSMODE","features":[627]},{"name":"EVCF_SYSTEMAUTORUN","features":[627]},{"name":"EVCF_USERCONSENTOBTAINED","features":[627]},{"name":"IADesktopP2","features":[627]},{"name":"IActiveDesktopP","features":[627]},{"name":"IBriefcaseInitiator","features":[627]},{"name":"IEmptyVolumeCache","features":[627]},{"name":"IEmptyVolumeCache2","features":[627]},{"name":"IEmptyVolumeCacheCallBack","features":[627]},{"name":"IReconcilableObject","features":[627]},{"name":"IReconcileInitiator","features":[627]},{"name":"RECONCILEF","features":[627]},{"name":"RECONCILEF_FEEDBACKWINDOWVALID","features":[627]},{"name":"RECONCILEF_MAYBOTHERUSER","features":[627]},{"name":"RECONCILEF_NORESIDUESOK","features":[627]},{"name":"RECONCILEF_OMITSELFRESIDUE","features":[627]},{"name":"RECONCILEF_ONLYYOUWERECHANGED","features":[627]},{"name":"RECONCILEF_RESUMERECONCILIATION","features":[627]},{"name":"RECONCILEF_YOUMAYDOTHEUPDATES","features":[627]},{"name":"REC_E_ABORTED","features":[627]},{"name":"REC_E_INEEDTODOTHEUPDATES","features":[627]},{"name":"REC_E_NOCALLBACK","features":[627]},{"name":"REC_E_NORESIDUES","features":[627]},{"name":"REC_E_TOODIFFERENT","features":[627]},{"name":"REC_S_IDIDTHEUPDATES","features":[627]},{"name":"REC_S_NOTCOMPLETE","features":[627]},{"name":"REC_S_NOTCOMPLETEBUTPROPAGATE","features":[627]},{"name":"STATEBITS_FLAT","features":[627]}],"664":[{"name":"MAGCOLOREFFECT","features":[628]},{"name":"MAGIMAGEHEADER","features":[628]},{"name":"MAGTRANSFORM","features":[628]},{"name":"MS_CLIPAROUNDCURSOR","features":[628]},{"name":"MS_INVERTCOLORS","features":[628]},{"name":"MS_SHOWMAGNIFIEDCURSOR","features":[628]},{"name":"MW_FILTERMODE","features":[628]},{"name":"MW_FILTERMODE_EXCLUDE","features":[628]},{"name":"MW_FILTERMODE_INCLUDE","features":[628]},{"name":"MagGetColorEffect","features":[303,628]},{"name":"MagGetFullscreenColorEffect","features":[303,628]},{"name":"MagGetFullscreenTransform","features":[303,628]},{"name":"MagGetImageScalingCallback","features":[303,314,628]},{"name":"MagGetInputTransform","features":[303,628]},{"name":"MagGetWindowFilterList","features":[303,628]},{"name":"MagGetWindowSource","features":[303,628]},{"name":"MagGetWindowTransform","features":[303,628]},{"name":"MagImageScalingCallback","features":[303,314,628]},{"name":"MagInitialize","features":[303,628]},{"name":"MagSetColorEffect","features":[303,628]},{"name":"MagSetFullscreenColorEffect","features":[303,628]},{"name":"MagSetFullscreenTransform","features":[303,628]},{"name":"MagSetImageScalingCallback","features":[303,314,628]},{"name":"MagSetInputTransform","features":[303,628]},{"name":"MagSetWindowFilterList","features":[303,628]},{"name":"MagSetWindowSource","features":[303,628]},{"name":"MagSetWindowTransform","features":[303,628]},{"name":"MagShowSystemCursor","features":[303,628]},{"name":"MagUninitialize","features":[303,628]},{"name":"WC_MAGNIFIER","features":[628]},{"name":"WC_MAGNIFIERA","features":[628]},{"name":"WC_MAGNIFIERW","features":[628]}],"665":[{"name":"INotificationActivationCallback","features":[629]},{"name":"NOTIFICATION_USER_INPUT_DATA","features":[629]}],"666":[{"name":"IUIApplication","features":[630]},{"name":"IUICollection","features":[630]},{"name":"IUICollectionChangedEvent","features":[630]},{"name":"IUICommandHandler","features":[630]},{"name":"IUIContextualUI","features":[630]},{"name":"IUIEventLogger","features":[630]},{"name":"IUIEventingManager","features":[630]},{"name":"IUIFramework","features":[630]},{"name":"IUIImage","features":[630]},{"name":"IUIImageFromBitmap","features":[630]},{"name":"IUIRibbon","features":[630]},{"name":"IUISimplePropertySet","features":[630]},{"name":"LIBID_UIRibbon","features":[630]},{"name":"UIRibbonFramework","features":[630]},{"name":"UIRibbonImageFromBitmapFactory","features":[630]},{"name":"UI_ALL_COMMANDS","features":[630]},{"name":"UI_COLLECTIONCHANGE","features":[630]},{"name":"UI_COLLECTIONCHANGE_INSERT","features":[630]},{"name":"UI_COLLECTIONCHANGE_REMOVE","features":[630]},{"name":"UI_COLLECTIONCHANGE_REPLACE","features":[630]},{"name":"UI_COLLECTIONCHANGE_RESET","features":[630]},{"name":"UI_COLLECTION_INVALIDINDEX","features":[630]},{"name":"UI_COMMANDTYPE","features":[630]},{"name":"UI_COMMANDTYPE_ACTION","features":[630]},{"name":"UI_COMMANDTYPE_ANCHOR","features":[630]},{"name":"UI_COMMANDTYPE_BOOLEAN","features":[630]},{"name":"UI_COMMANDTYPE_COLLECTION","features":[630]},{"name":"UI_COMMANDTYPE_COLORANCHOR","features":[630]},{"name":"UI_COMMANDTYPE_COLORCOLLECTION","features":[630]},{"name":"UI_COMMANDTYPE_COMMANDCOLLECTION","features":[630]},{"name":"UI_COMMANDTYPE_CONTEXT","features":[630]},{"name":"UI_COMMANDTYPE_DECIMAL","features":[630]},{"name":"UI_COMMANDTYPE_FONT","features":[630]},{"name":"UI_COMMANDTYPE_GROUP","features":[630]},{"name":"UI_COMMANDTYPE_RECENTITEMS","features":[630]},{"name":"UI_COMMANDTYPE_UNKNOWN","features":[630]},{"name":"UI_CONTEXTAVAILABILITY","features":[630]},{"name":"UI_CONTEXTAVAILABILITY_ACTIVE","features":[630]},{"name":"UI_CONTEXTAVAILABILITY_AVAILABLE","features":[630]},{"name":"UI_CONTEXTAVAILABILITY_NOTAVAILABLE","features":[630]},{"name":"UI_CONTROLDOCK","features":[630]},{"name":"UI_CONTROLDOCK_BOTTOM","features":[630]},{"name":"UI_CONTROLDOCK_TOP","features":[630]},{"name":"UI_EVENTLOCATION","features":[630]},{"name":"UI_EVENTLOCATION_ApplicationMenu","features":[630]},{"name":"UI_EVENTLOCATION_ContextPopup","features":[630]},{"name":"UI_EVENTLOCATION_QAT","features":[630]},{"name":"UI_EVENTLOCATION_Ribbon","features":[630]},{"name":"UI_EVENTPARAMS","features":[630]},{"name":"UI_EVENTPARAMS_COMMAND","features":[630]},{"name":"UI_EVENTTYPE","features":[630]},{"name":"UI_EVENTTYPE_ApplicationMenuOpened","features":[630]},{"name":"UI_EVENTTYPE_ApplicationModeSwitched","features":[630]},{"name":"UI_EVENTTYPE_CommandExecuted","features":[630]},{"name":"UI_EVENTTYPE_MenuOpened","features":[630]},{"name":"UI_EVENTTYPE_RibbonExpanded","features":[630]},{"name":"UI_EVENTTYPE_RibbonMinimized","features":[630]},{"name":"UI_EVENTTYPE_TabActivated","features":[630]},{"name":"UI_EVENTTYPE_TooltipShown","features":[630]},{"name":"UI_EXECUTIONVERB","features":[630]},{"name":"UI_EXECUTIONVERB_CANCELPREVIEW","features":[630]},{"name":"UI_EXECUTIONVERB_EXECUTE","features":[630]},{"name":"UI_EXECUTIONVERB_PREVIEW","features":[630]},{"name":"UI_FONTDELTASIZE","features":[630]},{"name":"UI_FONTDELTASIZE_GROW","features":[630]},{"name":"UI_FONTDELTASIZE_SHRINK","features":[630]},{"name":"UI_FONTPROPERTIES","features":[630]},{"name":"UI_FONTPROPERTIES_NOTAVAILABLE","features":[630]},{"name":"UI_FONTPROPERTIES_NOTSET","features":[630]},{"name":"UI_FONTPROPERTIES_SET","features":[630]},{"name":"UI_FONTUNDERLINE","features":[630]},{"name":"UI_FONTUNDERLINE_NOTAVAILABLE","features":[630]},{"name":"UI_FONTUNDERLINE_NOTSET","features":[630]},{"name":"UI_FONTUNDERLINE_SET","features":[630]},{"name":"UI_FONTVERTICALPOSITION","features":[630]},{"name":"UI_FONTVERTICALPOSITION_NOTAVAILABLE","features":[630]},{"name":"UI_FONTVERTICALPOSITION_NOTSET","features":[630]},{"name":"UI_FONTVERTICALPOSITION_SUBSCRIPT","features":[630]},{"name":"UI_FONTVERTICALPOSITION_SUPERSCRIPT","features":[630]},{"name":"UI_INVALIDATIONS","features":[630]},{"name":"UI_INVALIDATIONS_ALLPROPERTIES","features":[630]},{"name":"UI_INVALIDATIONS_PROPERTY","features":[630]},{"name":"UI_INVALIDATIONS_STATE","features":[630]},{"name":"UI_INVALIDATIONS_VALUE","features":[630]},{"name":"UI_OWNERSHIP","features":[630]},{"name":"UI_OWNERSHIP_COPY","features":[630]},{"name":"UI_OWNERSHIP_TRANSFER","features":[630]},{"name":"UI_SWATCHCOLORMODE","features":[630]},{"name":"UI_SWATCHCOLORMODE_MONOCHROME","features":[630]},{"name":"UI_SWATCHCOLORMODE_NORMAL","features":[630]},{"name":"UI_SWATCHCOLORTYPE","features":[630]},{"name":"UI_SWATCHCOLORTYPE_AUTOMATIC","features":[630]},{"name":"UI_SWATCHCOLORTYPE_NOCOLOR","features":[630]},{"name":"UI_SWATCHCOLORTYPE_RGB","features":[630]},{"name":"UI_VIEWTYPE","features":[630]},{"name":"UI_VIEWTYPE_RIBBON","features":[630]},{"name":"UI_VIEWVERB","features":[630]},{"name":"UI_VIEWVERB_CREATE","features":[630]},{"name":"UI_VIEWVERB_DESTROY","features":[630]},{"name":"UI_VIEWVERB_ERROR","features":[630]},{"name":"UI_VIEWVERB_SIZE","features":[630]}],"667":[{"name":"AASHELLMENUFILENAME","features":[464]},{"name":"AASHELLMENUITEM","features":[464]},{"name":"ABE_BOTTOM","features":[464]},{"name":"ABE_LEFT","features":[464]},{"name":"ABE_RIGHT","features":[464]},{"name":"ABE_TOP","features":[464]},{"name":"ABM_ACTIVATE","features":[464]},{"name":"ABM_GETAUTOHIDEBAR","features":[464]},{"name":"ABM_GETAUTOHIDEBAREX","features":[464]},{"name":"ABM_GETSTATE","features":[464]},{"name":"ABM_GETTASKBARPOS","features":[464]},{"name":"ABM_NEW","features":[464]},{"name":"ABM_QUERYPOS","features":[464]},{"name":"ABM_REMOVE","features":[464]},{"name":"ABM_SETAUTOHIDEBAR","features":[464]},{"name":"ABM_SETAUTOHIDEBAREX","features":[464]},{"name":"ABM_SETPOS","features":[464]},{"name":"ABM_SETSTATE","features":[464]},{"name":"ABM_WINDOWPOSCHANGED","features":[464]},{"name":"ABN_FULLSCREENAPP","features":[464]},{"name":"ABN_POSCHANGED","features":[464]},{"name":"ABN_STATECHANGE","features":[464]},{"name":"ABN_WINDOWARRANGE","features":[464]},{"name":"ABS_ALWAYSONTOP","features":[464]},{"name":"ABS_AUTOHIDE","features":[464]},{"name":"ACDD_VISIBLE","features":[464]},{"name":"ACENUMOPTION","features":[464]},{"name":"ACEO_FIRSTUNUSED","features":[464]},{"name":"ACEO_MOSTRECENTFIRST","features":[464]},{"name":"ACEO_NONE","features":[464]},{"name":"ACLO_CURRENTDIR","features":[464]},{"name":"ACLO_DESKTOP","features":[464]},{"name":"ACLO_FAVORITES","features":[464]},{"name":"ACLO_FILESYSDIRS","features":[464]},{"name":"ACLO_FILESYSONLY","features":[464]},{"name":"ACLO_MYCOMPUTER","features":[464]},{"name":"ACLO_NONE","features":[464]},{"name":"ACLO_VIRTUALNAMESPACE","features":[464]},{"name":"ACO_AUTOAPPEND","features":[464]},{"name":"ACO_AUTOSUGGEST","features":[464]},{"name":"ACO_FILTERPREFIXES","features":[464]},{"name":"ACO_NONE","features":[464]},{"name":"ACO_NOPREFIXFILTERING","features":[464]},{"name":"ACO_RTLREADING","features":[464]},{"name":"ACO_SEARCH","features":[464]},{"name":"ACO_UPDOWNKEYDROPSLIST","features":[464]},{"name":"ACO_USETAB","features":[464]},{"name":"ACO_WORD_FILTER","features":[464]},{"name":"ACTIVATEOPTIONS","features":[464]},{"name":"ADDURL_SILENT","features":[464]},{"name":"ADE_LEFT","features":[464]},{"name":"ADE_NONE","features":[464]},{"name":"ADE_RIGHT","features":[464]},{"name":"ADJACENT_DISPLAY_EDGES","features":[464]},{"name":"ADLT_FREQUENT","features":[464]},{"name":"ADLT_RECENT","features":[464]},{"name":"AD_APPLY_BUFFERED_REFRESH","features":[464]},{"name":"AD_APPLY_DYNAMICREFRESH","features":[464]},{"name":"AD_APPLY_FORCE","features":[464]},{"name":"AD_APPLY_HTMLGEN","features":[464]},{"name":"AD_APPLY_REFRESH","features":[464]},{"name":"AD_APPLY_SAVE","features":[464]},{"name":"AD_GETWP_BMP","features":[464]},{"name":"AD_GETWP_IMAGE","features":[464]},{"name":"AD_GETWP_LAST_APPLIED","features":[464]},{"name":"AHE_DESKTOP","features":[464]},{"name":"AHE_IMMERSIVE","features":[464]},{"name":"AHE_TYPE","features":[464]},{"name":"AHTYPE","features":[464]},{"name":"AHTYPE_ANY_APPLICATION","features":[464]},{"name":"AHTYPE_ANY_PROGID","features":[464]},{"name":"AHTYPE_APPLICATION","features":[464]},{"name":"AHTYPE_CLASS_APPLICATION","features":[464]},{"name":"AHTYPE_MACHINEDEFAULT","features":[464]},{"name":"AHTYPE_PROGID","features":[464]},{"name":"AHTYPE_UNDEFINED","features":[464]},{"name":"AHTYPE_USER_APPLICATION","features":[464]},{"name":"AIM_COMMENTS","features":[464]},{"name":"AIM_CONTACT","features":[464]},{"name":"AIM_DISPLAYNAME","features":[464]},{"name":"AIM_HELPLINK","features":[464]},{"name":"AIM_IMAGE","features":[464]},{"name":"AIM_INSTALLDATE","features":[464]},{"name":"AIM_INSTALLLOCATION","features":[464]},{"name":"AIM_INSTALLSOURCE","features":[464]},{"name":"AIM_LANGUAGE","features":[464]},{"name":"AIM_PRODUCTID","features":[464]},{"name":"AIM_PUBLISHER","features":[464]},{"name":"AIM_READMEURL","features":[464]},{"name":"AIM_REGISTEREDCOMPANY","features":[464]},{"name":"AIM_REGISTEREDOWNER","features":[464]},{"name":"AIM_SUPPORTTELEPHONE","features":[464]},{"name":"AIM_SUPPORTURL","features":[464]},{"name":"AIM_UPDATEINFOURL","features":[464]},{"name":"AIM_VERSION","features":[464]},{"name":"AL_EFFECTIVE","features":[464]},{"name":"AL_MACHINE","features":[464]},{"name":"AL_USER","features":[464]},{"name":"AO_DESIGNMODE","features":[464]},{"name":"AO_NOERRORUI","features":[464]},{"name":"AO_NONE","features":[464]},{"name":"AO_NOSPLASHSCREEN","features":[464]},{"name":"AO_PRELAUNCH","features":[464]},{"name":"APPACTIONFLAGS","features":[464]},{"name":"APPACTION_ADDLATER","features":[464]},{"name":"APPACTION_CANGETSIZE","features":[464]},{"name":"APPACTION_INSTALL","features":[464]},{"name":"APPACTION_MODIFY","features":[464]},{"name":"APPACTION_MODIFYREMOVE","features":[464]},{"name":"APPACTION_REPAIR","features":[464]},{"name":"APPACTION_UNINSTALL","features":[464]},{"name":"APPACTION_UNSCHEDULE","features":[464]},{"name":"APPACTION_UPGRADE","features":[464]},{"name":"APPBARDATA","features":[303,464]},{"name":"APPBARDATA","features":[303,464]},{"name":"APPCATEGORYINFO","features":[464]},{"name":"APPCATEGORYINFOLIST","features":[464]},{"name":"APPDOCLISTTYPE","features":[464]},{"name":"APPINFODATA","features":[464]},{"name":"APPINFODATAFLAGS","features":[464]},{"name":"APPLET_PROC","features":[303,464]},{"name":"APPLICATION_VIEW_MIN_WIDTH","features":[464]},{"name":"APPLICATION_VIEW_ORIENTATION","features":[464]},{"name":"APPLICATION_VIEW_SIZE_PREFERENCE","features":[464]},{"name":"APPLICATION_VIEW_STATE","features":[464]},{"name":"APPNAMEBUFFERLEN","features":[464]},{"name":"ARCONTENT_AUDIOCD","features":[464]},{"name":"ARCONTENT_AUTOPLAYMUSIC","features":[464]},{"name":"ARCONTENT_AUTOPLAYPIX","features":[464]},{"name":"ARCONTENT_AUTOPLAYVIDEO","features":[464]},{"name":"ARCONTENT_AUTORUNINF","features":[464]},{"name":"ARCONTENT_BLANKBD","features":[464]},{"name":"ARCONTENT_BLANKCD","features":[464]},{"name":"ARCONTENT_BLANKDVD","features":[464]},{"name":"ARCONTENT_BLURAY","features":[464]},{"name":"ARCONTENT_CAMERASTORAGE","features":[464]},{"name":"ARCONTENT_CUSTOMEVENT","features":[464]},{"name":"ARCONTENT_DVDAUDIO","features":[464]},{"name":"ARCONTENT_DVDMOVIE","features":[464]},{"name":"ARCONTENT_MASK","features":[464]},{"name":"ARCONTENT_NONE","features":[464]},{"name":"ARCONTENT_PHASE_FINAL","features":[464]},{"name":"ARCONTENT_PHASE_MASK","features":[464]},{"name":"ARCONTENT_PHASE_PRESNIFF","features":[464]},{"name":"ARCONTENT_PHASE_SNIFFING","features":[464]},{"name":"ARCONTENT_PHASE_UNKNOWN","features":[464]},{"name":"ARCONTENT_SVCD","features":[464]},{"name":"ARCONTENT_UNKNOWNCONTENT","features":[464]},{"name":"ARCONTENT_VCD","features":[464]},{"name":"ASSOCCLASS","features":[464]},{"name":"ASSOCCLASS_APP_KEY","features":[464]},{"name":"ASSOCCLASS_APP_STR","features":[464]},{"name":"ASSOCCLASS_CLSID_KEY","features":[464]},{"name":"ASSOCCLASS_CLSID_STR","features":[464]},{"name":"ASSOCCLASS_FIXED_PROGID_STR","features":[464]},{"name":"ASSOCCLASS_FOLDER","features":[464]},{"name":"ASSOCCLASS_PROGID_KEY","features":[464]},{"name":"ASSOCCLASS_PROGID_STR","features":[464]},{"name":"ASSOCCLASS_PROTOCOL_STR","features":[464]},{"name":"ASSOCCLASS_SHELL_KEY","features":[464]},{"name":"ASSOCCLASS_STAR","features":[464]},{"name":"ASSOCCLASS_SYSTEM_STR","features":[464]},{"name":"ASSOCDATA","features":[464]},{"name":"ASSOCDATA_EDITFLAGS","features":[464]},{"name":"ASSOCDATA_HASPERUSERASSOC","features":[464]},{"name":"ASSOCDATA_MAX","features":[464]},{"name":"ASSOCDATA_MSIDESCRIPTOR","features":[464]},{"name":"ASSOCDATA_NOACTIVATEHANDLER","features":[464]},{"name":"ASSOCDATA_UNUSED1","features":[464]},{"name":"ASSOCDATA_VALUE","features":[464]},{"name":"ASSOCENUM","features":[464]},{"name":"ASSOCENUM_NONE","features":[464]},{"name":"ASSOCF","features":[464]},{"name":"ASSOCF_APP_TO_APP","features":[464]},{"name":"ASSOCF_IGNOREBASECLASS","features":[464]},{"name":"ASSOCF_INIT_BYEXENAME","features":[464]},{"name":"ASSOCF_INIT_DEFAULTTOFOLDER","features":[464]},{"name":"ASSOCF_INIT_DEFAULTTOSTAR","features":[464]},{"name":"ASSOCF_INIT_FIXED_PROGID","features":[464]},{"name":"ASSOCF_INIT_FOR_FILE","features":[464]},{"name":"ASSOCF_INIT_IGNOREUNKNOWN","features":[464]},{"name":"ASSOCF_INIT_NOREMAPCLSID","features":[464]},{"name":"ASSOCF_IS_FULL_URI","features":[464]},{"name":"ASSOCF_IS_PROTOCOL","features":[464]},{"name":"ASSOCF_NOFIXUPS","features":[464]},{"name":"ASSOCF_NONE","features":[464]},{"name":"ASSOCF_NOTRUNCATE","features":[464]},{"name":"ASSOCF_NOUSERSETTINGS","features":[464]},{"name":"ASSOCF_OPEN_BYEXENAME","features":[464]},{"name":"ASSOCF_PER_MACHINE_ONLY","features":[464]},{"name":"ASSOCF_REMAPRUNDLL","features":[464]},{"name":"ASSOCF_VERIFY","features":[464]},{"name":"ASSOCIATIONELEMENT","features":[364,464]},{"name":"ASSOCIATIONELEMENT","features":[364,464]},{"name":"ASSOCIATIONLEVEL","features":[464]},{"name":"ASSOCIATIONTYPE","features":[464]},{"name":"ASSOCKEY","features":[464]},{"name":"ASSOCKEY_APP","features":[464]},{"name":"ASSOCKEY_BASECLASS","features":[464]},{"name":"ASSOCKEY_CLASS","features":[464]},{"name":"ASSOCKEY_MAX","features":[464]},{"name":"ASSOCKEY_SHELLEXECCLASS","features":[464]},{"name":"ASSOCSTR","features":[464]},{"name":"ASSOCSTR_APPICONREFERENCE","features":[464]},{"name":"ASSOCSTR_APPID","features":[464]},{"name":"ASSOCSTR_APPPUBLISHER","features":[464]},{"name":"ASSOCSTR_COMMAND","features":[464]},{"name":"ASSOCSTR_CONTENTTYPE","features":[464]},{"name":"ASSOCSTR_DDEAPPLICATION","features":[464]},{"name":"ASSOCSTR_DDECOMMAND","features":[464]},{"name":"ASSOCSTR_DDEIFEXEC","features":[464]},{"name":"ASSOCSTR_DDETOPIC","features":[464]},{"name":"ASSOCSTR_DEFAULTICON","features":[464]},{"name":"ASSOCSTR_DELEGATEEXECUTE","features":[464]},{"name":"ASSOCSTR_DROPTARGET","features":[464]},{"name":"ASSOCSTR_EXECUTABLE","features":[464]},{"name":"ASSOCSTR_FRIENDLYAPPNAME","features":[464]},{"name":"ASSOCSTR_FRIENDLYDOCNAME","features":[464]},{"name":"ASSOCSTR_INFOTIP","features":[464]},{"name":"ASSOCSTR_MAX","features":[464]},{"name":"ASSOCSTR_NOOPEN","features":[464]},{"name":"ASSOCSTR_PROGID","features":[464]},{"name":"ASSOCSTR_QUICKTIP","features":[464]},{"name":"ASSOCSTR_SHELLEXTENSION","features":[464]},{"name":"ASSOCSTR_SHELLNEWVALUE","features":[464]},{"name":"ASSOCSTR_SUPPORTED_URI_PROTOCOLS","features":[464]},{"name":"ASSOCSTR_TILEINFO","features":[464]},{"name":"ASSOC_FILTER","features":[464]},{"name":"ASSOC_FILTER_NONE","features":[464]},{"name":"ASSOC_FILTER_RECOMMENDED","features":[464]},{"name":"ATTACHMENT_ACTION","features":[464]},{"name":"ATTACHMENT_ACTION_CANCEL","features":[464]},{"name":"ATTACHMENT_ACTION_EXEC","features":[464]},{"name":"ATTACHMENT_ACTION_SAVE","features":[464]},{"name":"ATTACHMENT_PROMPT","features":[464]},{"name":"ATTACHMENT_PROMPT_EXEC","features":[464]},{"name":"ATTACHMENT_PROMPT_EXEC_OR_SAVE","features":[464]},{"name":"ATTACHMENT_PROMPT_NONE","features":[464]},{"name":"ATTACHMENT_PROMPT_SAVE","features":[464]},{"name":"AT_FILEEXTENSION","features":[464]},{"name":"AT_MIMETYPE","features":[464]},{"name":"AT_STARTMENUCLIENT","features":[464]},{"name":"AT_URLPROTOCOL","features":[464]},{"name":"AUTOCOMPLETELISTOPTIONS","features":[464]},{"name":"AUTOCOMPLETEOPTIONS","features":[464]},{"name":"AUTO_SCROLL_DATA","features":[303,464]},{"name":"AVMW_320","features":[464]},{"name":"AVMW_500","features":[464]},{"name":"AVMW_DEFAULT","features":[464]},{"name":"AVO_LANDSCAPE","features":[464]},{"name":"AVO_PORTRAIT","features":[464]},{"name":"AVSP_CUSTOM","features":[464]},{"name":"AVSP_DEFAULT","features":[464]},{"name":"AVSP_USE_HALF","features":[464]},{"name":"AVSP_USE_LESS","features":[464]},{"name":"AVSP_USE_MINIMUM","features":[464]},{"name":"AVSP_USE_MORE","features":[464]},{"name":"AVSP_USE_NONE","features":[464]},{"name":"AVS_FILLED","features":[464]},{"name":"AVS_FULLSCREEN_LANDSCAPE","features":[464]},{"name":"AVS_FULLSCREEN_PORTRAIT","features":[464]},{"name":"AVS_SNAPPED","features":[464]},{"name":"AccessibilityDockingService","features":[464]},{"name":"AllowSmallerSize","features":[464]},{"name":"AlphabeticalCategorizer","features":[464]},{"name":"AppShellVerbHandler","features":[464]},{"name":"AppStartupLink","features":[464]},{"name":"AppVisibility","features":[464]},{"name":"ApplicationActivationManager","features":[464]},{"name":"ApplicationAssociationRegistration","features":[464]},{"name":"ApplicationAssociationRegistrationUI","features":[464]},{"name":"ApplicationDesignModeSettings","features":[464]},{"name":"ApplicationDestinations","features":[464]},{"name":"ApplicationDocumentLists","features":[464]},{"name":"AssocCreate","features":[464]},{"name":"AssocCreateForClasses","features":[364,464]},{"name":"AssocGetDetailsOfPropKey","features":[303,631,374]},{"name":"AssocGetPerceivedType","features":[631]},{"name":"AssocIsDangerous","features":[303,464]},{"name":"AssocQueryKeyA","features":[364,464]},{"name":"AssocQueryKeyW","features":[364,464]},{"name":"AssocQueryStringA","features":[464]},{"name":"AssocQueryStringByKeyA","features":[364,464]},{"name":"AssocQueryStringByKeyW","features":[364,464]},{"name":"AssocQueryStringW","features":[464]},{"name":"AttachmentServices","features":[464]},{"name":"BANDINFOSFB","features":[303,631]},{"name":"BANDSITECID","features":[464]},{"name":"BANDSITEINFO","features":[464]},{"name":"BANNER_NOTIFICATION","features":[464]},{"name":"BANNER_NOTIFICATION_EVENT","features":[464]},{"name":"BASEBROWSERDATALH","features":[303,354,413,631]},{"name":"BASEBROWSERDATAXP","features":[303,354,413,631]},{"name":"BFFCALLBACK","features":[303,464]},{"name":"BFFM_ENABLEOK","features":[464]},{"name":"BFFM_INITIALIZED","features":[464]},{"name":"BFFM_IUNKNOWN","features":[464]},{"name":"BFFM_SELCHANGED","features":[464]},{"name":"BFFM_SETEXPANDED","features":[464]},{"name":"BFFM_SETOKTEXT","features":[464]},{"name":"BFFM_SETSELECTION","features":[464]},{"name":"BFFM_SETSELECTIONA","features":[464]},{"name":"BFFM_SETSELECTIONW","features":[464]},{"name":"BFFM_SETSTATUSTEXT","features":[464]},{"name":"BFFM_SETSTATUSTEXTA","features":[464]},{"name":"BFFM_SETSTATUSTEXTW","features":[464]},{"name":"BFFM_VALIDATEFAILED","features":[464]},{"name":"BFFM_VALIDATEFAILEDA","features":[464]},{"name":"BFFM_VALIDATEFAILEDW","features":[464]},{"name":"BFO_ADD_IE_TOCAPTIONBAR","features":[464]},{"name":"BFO_BOTH_OPTIONS","features":[464]},{"name":"BFO_BROWSER_PERSIST_SETTINGS","features":[464]},{"name":"BFO_BROWSE_NO_IN_NEW_PROCESS","features":[464]},{"name":"BFO_ENABLE_HYPERLINK_TRACKING","features":[464]},{"name":"BFO_GO_HOME_PAGE","features":[464]},{"name":"BFO_NONE","features":[464]},{"name":"BFO_NO_PARENT_FOLDER_SUPPORT","features":[464]},{"name":"BFO_NO_REOPEN_NEXT_RESTART","features":[464]},{"name":"BFO_PREFER_IEPROCESS","features":[464]},{"name":"BFO_QUERY_ALL","features":[464]},{"name":"BFO_RENAME_FOLDER_OPTIONS_TOINTERNET","features":[464]},{"name":"BFO_SHOW_NAVIGATION_CANCELLED","features":[464]},{"name":"BFO_SUBSTITUE_INTERNET_START_PAGE","features":[464]},{"name":"BFO_USE_DIALUP_REF","features":[464]},{"name":"BFO_USE_IE_LOGOBANDING","features":[464]},{"name":"BFO_USE_IE_OFFLINE_SUPPORT","features":[464]},{"name":"BFO_USE_IE_STATUSBAR","features":[464]},{"name":"BFO_USE_IE_TOOLBAR","features":[464]},{"name":"BHID_AssociationArray","features":[464]},{"name":"BHID_DataObject","features":[464]},{"name":"BHID_EnumAssocHandlers","features":[464]},{"name":"BHID_EnumItems","features":[464]},{"name":"BHID_FilePlaceholder","features":[464]},{"name":"BHID_Filter","features":[464]},{"name":"BHID_LinkTargetItem","features":[464]},{"name":"BHID_PropertyStore","features":[464]},{"name":"BHID_RandomAccessStream","features":[464]},{"name":"BHID_SFObject","features":[464]},{"name":"BHID_SFUIObject","features":[464]},{"name":"BHID_SFViewObject","features":[464]},{"name":"BHID_Storage","features":[464]},{"name":"BHID_StorageEnum","features":[464]},{"name":"BHID_StorageItem","features":[464]},{"name":"BHID_Stream","features":[464]},{"name":"BHID_ThumbnailHandler","features":[464]},{"name":"BHID_Transfer","features":[464]},{"name":"BIF_BROWSEFILEJUNCTIONS","features":[464]},{"name":"BIF_BROWSEFORCOMPUTER","features":[464]},{"name":"BIF_BROWSEFORPRINTER","features":[464]},{"name":"BIF_BROWSEINCLUDEFILES","features":[464]},{"name":"BIF_BROWSEINCLUDEURLS","features":[464]},{"name":"BIF_DONTGOBELOWDOMAIN","features":[464]},{"name":"BIF_EDITBOX","features":[464]},{"name":"BIF_NEWDIALOGSTYLE","features":[464]},{"name":"BIF_NONEWFOLDERBUTTON","features":[464]},{"name":"BIF_NOTRANSLATETARGETS","features":[464]},{"name":"BIF_PREFER_INTERNET_SHORTCUT","features":[464]},{"name":"BIF_RETURNFSANCESTORS","features":[464]},{"name":"BIF_RETURNONLYFSDIRS","features":[464]},{"name":"BIF_SHAREABLE","features":[464]},{"name":"BIF_STATUSTEXT","features":[464]},{"name":"BIF_UAHINT","features":[464]},{"name":"BIF_VALIDATE","features":[464]},{"name":"BIND_INTERRUPTABLE","features":[464]},{"name":"BMICON_LARGE","features":[464]},{"name":"BMICON_SMALL","features":[464]},{"name":"BNE_Button1Clicked","features":[464]},{"name":"BNE_Button2Clicked","features":[464]},{"name":"BNE_Closed","features":[464]},{"name":"BNE_Dismissed","features":[464]},{"name":"BNE_Hovered","features":[464]},{"name":"BNE_Rendered","features":[464]},{"name":"BNSTATE","features":[464]},{"name":"BNS_BEGIN_NAVIGATE","features":[464]},{"name":"BNS_NAVIGATE","features":[464]},{"name":"BNS_NORMAL","features":[464]},{"name":"BROWSEINFOA","features":[303,631]},{"name":"BROWSEINFOW","features":[303,631]},{"name":"BSF_CANMAXIMIZE","features":[464]},{"name":"BSF_DELEGATEDNAVIGATION","features":[464]},{"name":"BSF_DONTSHOWNAVCANCELPAGE","features":[464]},{"name":"BSF_FEEDNAVIGATION","features":[464]},{"name":"BSF_FEEDSUBSCRIBED","features":[464]},{"name":"BSF_HTMLNAVCANCELED","features":[464]},{"name":"BSF_MERGEDMENUS","features":[464]},{"name":"BSF_NAVNOHISTORY","features":[464]},{"name":"BSF_NOLOCALFILEWARNING","features":[464]},{"name":"BSF_REGISTERASDROPTARGET","features":[464]},{"name":"BSF_RESIZABLE","features":[464]},{"name":"BSF_SETNAVIGATABLECODEPAGE","features":[464]},{"name":"BSF_THEATERMODE","features":[464]},{"name":"BSF_TOPBROWSER","features":[464]},{"name":"BSF_TRUSTEDFORACTIVEX","features":[464]},{"name":"BSF_UISETBYAUTOMATION","features":[464]},{"name":"BSID_BANDADDED","features":[464]},{"name":"BSID_BANDREMOVED","features":[464]},{"name":"BSIM_STATE","features":[464]},{"name":"BSIM_STYLE","features":[464]},{"name":"BSIS_ALWAYSGRIPPER","features":[464]},{"name":"BSIS_AUTOGRIPPER","features":[464]},{"name":"BSIS_FIXEDORDER","features":[464]},{"name":"BSIS_LEFTALIGN","features":[464]},{"name":"BSIS_LOCKED","features":[464]},{"name":"BSIS_NOCAPTION","features":[464]},{"name":"BSIS_NOCONTEXTMENU","features":[464]},{"name":"BSIS_NODROPTARGET","features":[464]},{"name":"BSIS_NOGRIPPER","features":[464]},{"name":"BSIS_PREFERNOLINEBREAK","features":[464]},{"name":"BSIS_PRESERVEORDERDURINGLAYOUT","features":[464]},{"name":"BSIS_SINGLECLICK","features":[464]},{"name":"BSSF_NOTITLE","features":[464]},{"name":"BSSF_UNDELETEABLE","features":[464]},{"name":"BSSF_VISIBLE","features":[464]},{"name":"BUFFLEN","features":[464]},{"name":"BrowserNavConstants","features":[464]},{"name":"CABINETSTATE","features":[464]},{"name":"CABINETSTATE_VERSION","features":[464]},{"name":"CAMERAROLL_E_NO_DOWNSAMPLING_REQUIRED","features":[464]},{"name":"CATEGORYINFO_FLAGS","features":[464]},{"name":"CATEGORY_INFO","features":[464]},{"name":"CATID_BrowsableShellExt","features":[464]},{"name":"CATID_BrowseInPlace","features":[464]},{"name":"CATID_CommBand","features":[464]},{"name":"CATID_DeskBand","features":[464]},{"name":"CATID_FilePlaceholderMergeHandler","features":[464]},{"name":"CATID_InfoBand","features":[464]},{"name":"CATID_LocationFactory","features":[464]},{"name":"CATID_LocationProvider","features":[464]},{"name":"CATID_SearchableApplication","features":[464]},{"name":"CATINFO_COLLAPSED","features":[464]},{"name":"CATINFO_EXPANDED","features":[464]},{"name":"CATINFO_HIDDEN","features":[464]},{"name":"CATINFO_NOHEADER","features":[464]},{"name":"CATINFO_NOHEADERCOUNT","features":[464]},{"name":"CATINFO_NORMAL","features":[464]},{"name":"CATINFO_NOTCOLLAPSIBLE","features":[464]},{"name":"CATINFO_SEPARATE_IMAGES","features":[464]},{"name":"CATINFO_SHOWEMPTY","features":[464]},{"name":"CATINFO_SUBSETTED","features":[464]},{"name":"CATSORT_DEFAULT","features":[464]},{"name":"CATSORT_FLAGS","features":[464]},{"name":"CATSORT_NAME","features":[464]},{"name":"CDB2GVF_ADDSHIELD","features":[464]},{"name":"CDB2GVF_ALLOWPREVIEWPANE","features":[464]},{"name":"CDB2GVF_ISFILESAVE","features":[464]},{"name":"CDB2GVF_ISFOLDERPICKER","features":[464]},{"name":"CDB2GVF_NOINCLUDEITEM","features":[464]},{"name":"CDB2GVF_NOSELECTVERB","features":[464]},{"name":"CDB2GVF_SHOWALLFILES","features":[464]},{"name":"CDB2N_CONTEXTMENU_DONE","features":[464]},{"name":"CDB2N_CONTEXTMENU_START","features":[464]},{"name":"CDBE_RET_DEFAULT","features":[464]},{"name":"CDBE_RET_DONTRUNOTHEREXTS","features":[464]},{"name":"CDBE_RET_STOPWIZARD","features":[464]},{"name":"CDBE_TYPE_ALL","features":[464]},{"name":"CDBE_TYPE_DATA","features":[464]},{"name":"CDBE_TYPE_MUSIC","features":[464]},{"name":"CDBOSC_KILLFOCUS","features":[464]},{"name":"CDBOSC_RENAME","features":[464]},{"name":"CDBOSC_SELCHANGE","features":[464]},{"name":"CDBOSC_SETFOCUS","features":[464]},{"name":"CDBOSC_STATECHANGE","features":[464]},{"name":"CDBURNINGEXTENSIONRET","features":[464]},{"name":"CDBurn","features":[464]},{"name":"CDCONTROLSTATEF","features":[464]},{"name":"CDCS_ENABLED","features":[464]},{"name":"CDCS_ENABLEDVISIBLE","features":[464]},{"name":"CDCS_INACTIVE","features":[464]},{"name":"CDCS_VISIBLE","features":[464]},{"name":"CDefFolderMenu_Create2","features":[303,354,364,631]},{"name":"CFSTR_AUTOPLAY_SHELLIDLISTS","features":[464]},{"name":"CFSTR_DROPDESCRIPTION","features":[464]},{"name":"CFSTR_FILECONTENTS","features":[464]},{"name":"CFSTR_FILEDESCRIPTOR","features":[464]},{"name":"CFSTR_FILEDESCRIPTORA","features":[464]},{"name":"CFSTR_FILEDESCRIPTORW","features":[464]},{"name":"CFSTR_FILENAME","features":[464]},{"name":"CFSTR_FILENAMEA","features":[464]},{"name":"CFSTR_FILENAMEMAP","features":[464]},{"name":"CFSTR_FILENAMEMAPA","features":[464]},{"name":"CFSTR_FILENAMEMAPW","features":[464]},{"name":"CFSTR_FILENAMEW","features":[464]},{"name":"CFSTR_FILE_ATTRIBUTES_ARRAY","features":[464]},{"name":"CFSTR_INDRAGLOOP","features":[464]},{"name":"CFSTR_INETURL","features":[464]},{"name":"CFSTR_INETURLA","features":[464]},{"name":"CFSTR_INETURLW","features":[464]},{"name":"CFSTR_INVOKECOMMAND_DROPPARAM","features":[464]},{"name":"CFSTR_LOGICALPERFORMEDDROPEFFECT","features":[464]},{"name":"CFSTR_MOUNTEDVOLUME","features":[464]},{"name":"CFSTR_NETRESOURCES","features":[464]},{"name":"CFSTR_PASTESUCCEEDED","features":[464]},{"name":"CFSTR_PERFORMEDDROPEFFECT","features":[464]},{"name":"CFSTR_PERSISTEDDATAOBJECT","features":[464]},{"name":"CFSTR_PREFERREDDROPEFFECT","features":[464]},{"name":"CFSTR_PRINTERGROUP","features":[464]},{"name":"CFSTR_SHELLDROPHANDLER","features":[464]},{"name":"CFSTR_SHELLIDLIST","features":[464]},{"name":"CFSTR_SHELLIDLISTOFFSET","features":[464]},{"name":"CFSTR_SHELLURL","features":[464]},{"name":"CFSTR_TARGETCLSID","features":[464]},{"name":"CFSTR_UNTRUSTEDDRAGDROP","features":[464]},{"name":"CFSTR_ZONEIDENTIFIER","features":[464]},{"name":"CGID_DefView","features":[464]},{"name":"CGID_Explorer","features":[464]},{"name":"CGID_ExplorerBarDoc","features":[464]},{"name":"CGID_MENUDESKBAR","features":[464]},{"name":"CGID_ShellDocView","features":[464]},{"name":"CGID_ShellServiceObject","features":[464]},{"name":"CGID_ShortCut","features":[464]},{"name":"CIDA","features":[464]},{"name":"CIDLData_CreateFromIDArray","features":[354,631]},{"name":"CIE4ConnectionPoint","features":[354,464]},{"name":"CLOSEPROPS_DISCARD","features":[464]},{"name":"CLOSEPROPS_NONE","features":[464]},{"name":"CLSID_ACLCustomMRU","features":[464]},{"name":"CLSID_ACLHistory","features":[464]},{"name":"CLSID_ACLMRU","features":[464]},{"name":"CLSID_ACLMulti","features":[464]},{"name":"CLSID_ACListISF","features":[464]},{"name":"CLSID_ActiveDesktop","features":[464]},{"name":"CLSID_AutoComplete","features":[464]},{"name":"CLSID_CAnchorBrowsePropertyPage","features":[464]},{"name":"CLSID_CDocBrowsePropertyPage","features":[464]},{"name":"CLSID_CFSIconOverlayManager","features":[464]},{"name":"CLSID_CImageBrowsePropertyPage","features":[464]},{"name":"CLSID_CURLSearchHook","features":[464]},{"name":"CLSID_CUrlHistory","features":[464]},{"name":"CLSID_CUrlHistoryBoth","features":[464]},{"name":"CLSID_ControlPanel","features":[464]},{"name":"CLSID_DarwinAppPublisher","features":[464]},{"name":"CLSID_DocHostUIHandler","features":[464]},{"name":"CLSID_DragDropHelper","features":[464]},{"name":"CLSID_FileTypes","features":[464]},{"name":"CLSID_FolderItemsMultiLevel","features":[464]},{"name":"CLSID_FolderShortcut","features":[464]},{"name":"CLSID_HWShellExecute","features":[464]},{"name":"CLSID_ISFBand","features":[464]},{"name":"CLSID_Internet","features":[464]},{"name":"CLSID_InternetButtons","features":[464]},{"name":"CLSID_InternetShortcut","features":[464]},{"name":"CLSID_LinkColumnProvider","features":[464]},{"name":"CLSID_MSOButtons","features":[464]},{"name":"CLSID_MenuBand","features":[464]},{"name":"CLSID_MenuBandSite","features":[464]},{"name":"CLSID_MenuToolbarBase","features":[464]},{"name":"CLSID_MyComputer","features":[464]},{"name":"CLSID_MyDocuments","features":[464]},{"name":"CLSID_NetworkDomain","features":[464]},{"name":"CLSID_NetworkServer","features":[464]},{"name":"CLSID_NetworkShare","features":[464]},{"name":"CLSID_NewMenu","features":[464]},{"name":"CLSID_Printers","features":[464]},{"name":"CLSID_ProgressDialog","features":[464]},{"name":"CLSID_QueryAssociations","features":[464]},{"name":"CLSID_QuickLinks","features":[464]},{"name":"CLSID_RecycleBin","features":[464]},{"name":"CLSID_ShellFldSetExt","features":[464]},{"name":"CLSID_ShellThumbnailDiskCache","features":[464]},{"name":"CLSID_ToolbarExtButtons","features":[464]},{"name":"CMDID_INTSHORTCUTCREATE","features":[464]},{"name":"CMDSTR_NEWFOLDER","features":[464]},{"name":"CMDSTR_NEWFOLDERA","features":[464]},{"name":"CMDSTR_NEWFOLDERW","features":[464]},{"name":"CMDSTR_VIEWDETAILS","features":[464]},{"name":"CMDSTR_VIEWDETAILSA","features":[464]},{"name":"CMDSTR_VIEWDETAILSW","features":[464]},{"name":"CMDSTR_VIEWLIST","features":[464]},{"name":"CMDSTR_VIEWLISTA","features":[464]},{"name":"CMDSTR_VIEWLISTW","features":[464]},{"name":"CMF_ASYNCVERBSTATE","features":[464]},{"name":"CMF_CANRENAME","features":[464]},{"name":"CMF_DEFAULTONLY","features":[464]},{"name":"CMF_DISABLEDVERBS","features":[464]},{"name":"CMF_DONOTPICKDEFAULT","features":[464]},{"name":"CMF_EXPLORE","features":[464]},{"name":"CMF_EXTENDEDVERBS","features":[464]},{"name":"CMF_INCLUDESTATIC","features":[464]},{"name":"CMF_ITEMMENU","features":[464]},{"name":"CMF_NODEFAULT","features":[464]},{"name":"CMF_NORMAL","features":[464]},{"name":"CMF_NOVERBS","features":[464]},{"name":"CMF_OPTIMIZEFORINVOKE","features":[464]},{"name":"CMF_RESERVED","features":[464]},{"name":"CMF_SYNCCASCADEMENU","features":[464]},{"name":"CMF_VERBSONLY","features":[464]},{"name":"CMIC_MASK_CONTROL_DOWN","features":[464]},{"name":"CMIC_MASK_PTINVOKE","features":[464]},{"name":"CMIC_MASK_SHIFT_DOWN","features":[464]},{"name":"CMINVOKECOMMANDINFO","features":[303,464]},{"name":"CMINVOKECOMMANDINFOEX","features":[303,464]},{"name":"CMINVOKECOMMANDINFOEX_REMOTE","features":[303,464]},{"name":"CM_COLUMNINFO","features":[464]},{"name":"CM_ENUM_ALL","features":[464]},{"name":"CM_ENUM_FLAGS","features":[464]},{"name":"CM_ENUM_VISIBLE","features":[464]},{"name":"CM_MASK","features":[464]},{"name":"CM_MASK_DEFAULTWIDTH","features":[464]},{"name":"CM_MASK_IDEALWIDTH","features":[464]},{"name":"CM_MASK_NAME","features":[464]},{"name":"CM_MASK_STATE","features":[464]},{"name":"CM_MASK_WIDTH","features":[464]},{"name":"CM_SET_WIDTH_VALUE","features":[464]},{"name":"CM_STATE","features":[464]},{"name":"CM_STATE_ALWAYSVISIBLE","features":[464]},{"name":"CM_STATE_FIXEDWIDTH","features":[464]},{"name":"CM_STATE_NONE","features":[464]},{"name":"CM_STATE_NOSORTBYFOLDERNESS","features":[464]},{"name":"CM_STATE_VISIBLE","features":[464]},{"name":"CM_WIDTH_AUTOSIZE","features":[464]},{"name":"CM_WIDTH_USEDEFAULT","features":[464]},{"name":"COMPONENT_DEFAULT_LEFT","features":[464]},{"name":"COMPONENT_DEFAULT_TOP","features":[464]},{"name":"COMPONENT_TOP","features":[464]},{"name":"COMP_ELEM_CHECKED","features":[464]},{"name":"COMP_ELEM_CURITEMSTATE","features":[464]},{"name":"COMP_ELEM_DIRTY","features":[464]},{"name":"COMP_ELEM_FRIENDLYNAME","features":[464]},{"name":"COMP_ELEM_NOSCROLL","features":[464]},{"name":"COMP_ELEM_ORIGINAL_CSI","features":[464]},{"name":"COMP_ELEM_POS_LEFT","features":[464]},{"name":"COMP_ELEM_POS_TOP","features":[464]},{"name":"COMP_ELEM_POS_ZINDEX","features":[464]},{"name":"COMP_ELEM_RESTORED_CSI","features":[464]},{"name":"COMP_ELEM_SIZE_HEIGHT","features":[464]},{"name":"COMP_ELEM_SIZE_WIDTH","features":[464]},{"name":"COMP_ELEM_SOURCE","features":[464]},{"name":"COMP_ELEM_SUBSCRIBEDURL","features":[464]},{"name":"COMP_ELEM_TYPE","features":[464]},{"name":"COMP_TYPE_CFHTML","features":[464]},{"name":"COMP_TYPE_CONTROL","features":[464]},{"name":"COMP_TYPE_HTMLDOC","features":[464]},{"name":"COMP_TYPE_MAX","features":[464]},{"name":"COMP_TYPE_PICTURE","features":[464]},{"name":"COMP_TYPE_WEBSITE","features":[464]},{"name":"CONFIRM_CONFLICT_ITEM","features":[464]},{"name":"CONFIRM_CONFLICT_RESULT_INFO","features":[464]},{"name":"CONFLICT_RESOLUTION_CLSID_KEY","features":[464]},{"name":"COPYENGINE_E_ACCESSDENIED_READONLY","features":[464]},{"name":"COPYENGINE_E_ACCESS_DENIED_DEST","features":[464]},{"name":"COPYENGINE_E_ACCESS_DENIED_SRC","features":[464]},{"name":"COPYENGINE_E_ALREADY_EXISTS_FOLDER","features":[464]},{"name":"COPYENGINE_E_ALREADY_EXISTS_NORMAL","features":[464]},{"name":"COPYENGINE_E_ALREADY_EXISTS_READONLY","features":[464]},{"name":"COPYENGINE_E_ALREADY_EXISTS_SYSTEM","features":[464]},{"name":"COPYENGINE_E_BLOCKED_BY_DLP_POLICY","features":[464]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[464]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_POLICY","features":[464]},{"name":"COPYENGINE_E_CANCELLED","features":[464]},{"name":"COPYENGINE_E_CANNOT_MOVE_FROM_RECYCLE_BIN","features":[464]},{"name":"COPYENGINE_E_CANNOT_MOVE_SHARED_FOLDER","features":[464]},{"name":"COPYENGINE_E_CANT_REACH_SOURCE","features":[464]},{"name":"COPYENGINE_E_DEST_IS_RO_CD","features":[464]},{"name":"COPYENGINE_E_DEST_IS_RO_DVD","features":[464]},{"name":"COPYENGINE_E_DEST_IS_RW_CD","features":[464]},{"name":"COPYENGINE_E_DEST_IS_RW_DVD","features":[464]},{"name":"COPYENGINE_E_DEST_IS_R_CD","features":[464]},{"name":"COPYENGINE_E_DEST_IS_R_DVD","features":[464]},{"name":"COPYENGINE_E_DEST_SAME_TREE","features":[464]},{"name":"COPYENGINE_E_DEST_SUBTREE","features":[464]},{"name":"COPYENGINE_E_DIFF_DIR","features":[464]},{"name":"COPYENGINE_E_DIR_NOT_EMPTY","features":[464]},{"name":"COPYENGINE_E_DISK_FULL","features":[464]},{"name":"COPYENGINE_E_DISK_FULL_CLEAN","features":[464]},{"name":"COPYENGINE_E_EA_LOSS","features":[464]},{"name":"COPYENGINE_E_EA_NOT_SUPPORTED","features":[464]},{"name":"COPYENGINE_E_ENCRYPTION_LOSS","features":[464]},{"name":"COPYENGINE_E_FAT_MAX_IN_ROOT","features":[464]},{"name":"COPYENGINE_E_FILE_IS_FLD_DEST","features":[464]},{"name":"COPYENGINE_E_FILE_TOO_LARGE","features":[464]},{"name":"COPYENGINE_E_FLD_IS_FILE_DEST","features":[464]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_ERROR","features":[464]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_PAUSED","features":[464]},{"name":"COPYENGINE_E_INTERNET_ITEM_UNAVAILABLE","features":[464]},{"name":"COPYENGINE_E_INVALID_FILES_DEST","features":[464]},{"name":"COPYENGINE_E_INVALID_FILES_SRC","features":[464]},{"name":"COPYENGINE_E_MANY_SRC_1_DEST","features":[464]},{"name":"COPYENGINE_E_NET_DISCONNECT_DEST","features":[464]},{"name":"COPYENGINE_E_NET_DISCONNECT_SRC","features":[464]},{"name":"COPYENGINE_E_NEWFILE_NAME_TOO_LONG","features":[464]},{"name":"COPYENGINE_E_NEWFOLDER_NAME_TOO_LONG","features":[464]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_DEST","features":[464]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_SRC","features":[464]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_DEST","features":[464]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_SRC","features":[464]},{"name":"COPYENGINE_E_PROPERTIES_LOSS","features":[464]},{"name":"COPYENGINE_E_PROPERTY_LOSS","features":[464]},{"name":"COPYENGINE_E_RECYCLE_BIN_NOT_FOUND","features":[464]},{"name":"COPYENGINE_E_RECYCLE_FORCE_NUKE","features":[464]},{"name":"COPYENGINE_E_RECYCLE_PATH_TOO_LONG","features":[464]},{"name":"COPYENGINE_E_RECYCLE_SIZE_TOO_BIG","features":[464]},{"name":"COPYENGINE_E_RECYCLE_UNKNOWN_ERROR","features":[464]},{"name":"COPYENGINE_E_REDIRECTED_TO_WEBPAGE","features":[464]},{"name":"COPYENGINE_E_REMOVABLE_FULL","features":[464]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT","features":[464]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[464]},{"name":"COPYENGINE_E_REQUIRES_ELEVATION","features":[464]},{"name":"COPYENGINE_E_RMS_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[464]},{"name":"COPYENGINE_E_RMS_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[464]},{"name":"COPYENGINE_E_ROOT_DIR_DEST","features":[464]},{"name":"COPYENGINE_E_ROOT_DIR_SRC","features":[464]},{"name":"COPYENGINE_E_SAME_FILE","features":[464]},{"name":"COPYENGINE_E_SERVER_BAD_FILE_TYPE","features":[464]},{"name":"COPYENGINE_E_SHARING_VIOLATION_DEST","features":[464]},{"name":"COPYENGINE_E_SHARING_VIOLATION_SRC","features":[464]},{"name":"COPYENGINE_E_SILENT_FAIL_BY_DLP_POLICY","features":[464]},{"name":"COPYENGINE_E_SRC_IS_RO_CD","features":[464]},{"name":"COPYENGINE_E_SRC_IS_RO_DVD","features":[464]},{"name":"COPYENGINE_E_SRC_IS_RW_CD","features":[464]},{"name":"COPYENGINE_E_SRC_IS_RW_DVD","features":[464]},{"name":"COPYENGINE_E_SRC_IS_R_CD","features":[464]},{"name":"COPYENGINE_E_SRC_IS_R_DVD","features":[464]},{"name":"COPYENGINE_E_STREAM_LOSS","features":[464]},{"name":"COPYENGINE_E_USER_CANCELLED","features":[464]},{"name":"COPYENGINE_E_WARNED_BY_DLP_POLICY","features":[464]},{"name":"COPYENGINE_S_ALREADY_DONE","features":[464]},{"name":"COPYENGINE_S_CLOSE_PROGRAM","features":[464]},{"name":"COPYENGINE_S_COLLISIONRESOLVED","features":[464]},{"name":"COPYENGINE_S_DONT_PROCESS_CHILDREN","features":[464]},{"name":"COPYENGINE_S_KEEP_BOTH","features":[464]},{"name":"COPYENGINE_S_MERGE","features":[464]},{"name":"COPYENGINE_S_NOT_HANDLED","features":[464]},{"name":"COPYENGINE_S_PENDING","features":[464]},{"name":"COPYENGINE_S_PENDING_DELETE","features":[464]},{"name":"COPYENGINE_S_PROGRESS_PAUSE","features":[464]},{"name":"COPYENGINE_S_USER_IGNORED","features":[464]},{"name":"COPYENGINE_S_USER_RETRY","features":[464]},{"name":"COPYENGINE_S_YES","features":[464]},{"name":"CPAO_EMPTY_CONNECTED","features":[464]},{"name":"CPAO_EMPTY_LOCAL","features":[464]},{"name":"CPAO_NONE","features":[464]},{"name":"CPCFO_ENABLE_PASSWORD_REVEAL","features":[464]},{"name":"CPCFO_ENABLE_TOUCH_KEYBOARD_AUTO_INVOKE","features":[464]},{"name":"CPCFO_IS_EMAIL_ADDRESS","features":[464]},{"name":"CPCFO_NONE","features":[464]},{"name":"CPCFO_NUMBERS_ONLY","features":[464]},{"name":"CPCFO_SHOW_ENGLISH_KEYBOARD","features":[464]},{"name":"CPFG_CREDENTIAL_PROVIDER_LABEL","features":[464]},{"name":"CPFG_CREDENTIAL_PROVIDER_LOGO","features":[464]},{"name":"CPFG_LOGON_PASSWORD","features":[464]},{"name":"CPFG_LOGON_USERNAME","features":[464]},{"name":"CPFG_SMARTCARD_PIN","features":[464]},{"name":"CPFG_SMARTCARD_USERNAME","features":[464]},{"name":"CPFG_STANDALONE_SUBMIT_BUTTON","features":[464]},{"name":"CPFG_STYLE_LINK_AS_BUTTON","features":[464]},{"name":"CPFIS_DISABLED","features":[464]},{"name":"CPFIS_FOCUSED","features":[464]},{"name":"CPFIS_NONE","features":[464]},{"name":"CPFIS_READONLY","features":[464]},{"name":"CPFS_DISPLAY_IN_BOTH","features":[464]},{"name":"CPFS_DISPLAY_IN_DESELECTED_TILE","features":[464]},{"name":"CPFS_DISPLAY_IN_SELECTED_TILE","features":[464]},{"name":"CPFS_HIDDEN","features":[464]},{"name":"CPFT_CHECKBOX","features":[464]},{"name":"CPFT_COMBOBOX","features":[464]},{"name":"CPFT_COMMAND_LINK","features":[464]},{"name":"CPFT_EDIT_TEXT","features":[464]},{"name":"CPFT_INVALID","features":[464]},{"name":"CPFT_LARGE_TEXT","features":[464]},{"name":"CPFT_PASSWORD_TEXT","features":[464]},{"name":"CPFT_SMALL_TEXT","features":[464]},{"name":"CPFT_SUBMIT_BUTTON","features":[464]},{"name":"CPFT_TILE_IMAGE","features":[464]},{"name":"CPGSR_NO_CREDENTIAL_FINISHED","features":[464]},{"name":"CPGSR_NO_CREDENTIAL_NOT_FINISHED","features":[464]},{"name":"CPGSR_RETURN_CREDENTIAL_FINISHED","features":[464]},{"name":"CPGSR_RETURN_NO_CREDENTIAL_FINISHED","features":[464]},{"name":"CPLINFO","features":[464]},{"name":"CPLPAGE_DISPLAY_BACKGROUND","features":[464]},{"name":"CPLPAGE_KEYBOARD_SPEED","features":[464]},{"name":"CPLPAGE_MOUSE_BUTTONS","features":[464]},{"name":"CPLPAGE_MOUSE_PTRMOTION","features":[464]},{"name":"CPLPAGE_MOUSE_WHEEL","features":[464]},{"name":"CPL_DBLCLK","features":[464]},{"name":"CPL_DYNAMIC_RES","features":[464]},{"name":"CPL_EXIT","features":[464]},{"name":"CPL_GETCOUNT","features":[464]},{"name":"CPL_INIT","features":[464]},{"name":"CPL_INQUIRE","features":[464]},{"name":"CPL_NEWINQUIRE","features":[464]},{"name":"CPL_SELECT","features":[464]},{"name":"CPL_SETUP","features":[464]},{"name":"CPL_STARTWPARMS","features":[464]},{"name":"CPL_STARTWPARMSA","features":[464]},{"name":"CPL_STARTWPARMSW","features":[464]},{"name":"CPL_STOP","features":[464]},{"name":"CPSI_ERROR","features":[464]},{"name":"CPSI_NONE","features":[464]},{"name":"CPSI_SUCCESS","features":[464]},{"name":"CPSI_WARNING","features":[464]},{"name":"CPUS_CHANGE_PASSWORD","features":[464]},{"name":"CPUS_CREDUI","features":[464]},{"name":"CPUS_INVALID","features":[464]},{"name":"CPUS_LOGON","features":[464]},{"name":"CPUS_PLAP","features":[464]},{"name":"CPUS_UNLOCK_WORKSTATION","features":[464]},{"name":"CPVIEW","features":[464]},{"name":"CPVIEW_ALLITEMS","features":[464]},{"name":"CPVIEW_CATEGORY","features":[464]},{"name":"CPVIEW_CLASSIC","features":[464]},{"name":"CPVIEW_HOME","features":[464]},{"name":"CREDENTIAL_PROVIDER_ACCOUNT_OPTIONS","features":[464]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_FIELD_OPTIONS","features":[464]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION","features":[464]},{"name":"CREDENTIAL_PROVIDER_FIELD_DESCRIPTOR","features":[464]},{"name":"CREDENTIAL_PROVIDER_FIELD_INTERACTIVE_STATE","features":[464]},{"name":"CREDENTIAL_PROVIDER_FIELD_STATE","features":[464]},{"name":"CREDENTIAL_PROVIDER_FIELD_TYPE","features":[464]},{"name":"CREDENTIAL_PROVIDER_GET_SERIALIZATION_RESPONSE","features":[464]},{"name":"CREDENTIAL_PROVIDER_NO_DEFAULT","features":[464]},{"name":"CREDENTIAL_PROVIDER_STATUS_ICON","features":[464]},{"name":"CREDENTIAL_PROVIDER_USAGE_SCENARIO","features":[464]},{"name":"CSC_NAVIGATEBACK","features":[464]},{"name":"CSC_NAVIGATEFORWARD","features":[464]},{"name":"CSC_UPDATECOMMANDS","features":[464]},{"name":"CSFV","features":[303,413,631]},{"name":"CSIDL_ADMINTOOLS","features":[464]},{"name":"CSIDL_ALTSTARTUP","features":[464]},{"name":"CSIDL_APPDATA","features":[464]},{"name":"CSIDL_BITBUCKET","features":[464]},{"name":"CSIDL_CDBURN_AREA","features":[464]},{"name":"CSIDL_COMMON_ADMINTOOLS","features":[464]},{"name":"CSIDL_COMMON_ALTSTARTUP","features":[464]},{"name":"CSIDL_COMMON_APPDATA","features":[464]},{"name":"CSIDL_COMMON_DESKTOPDIRECTORY","features":[464]},{"name":"CSIDL_COMMON_DOCUMENTS","features":[464]},{"name":"CSIDL_COMMON_FAVORITES","features":[464]},{"name":"CSIDL_COMMON_MUSIC","features":[464]},{"name":"CSIDL_COMMON_OEM_LINKS","features":[464]},{"name":"CSIDL_COMMON_PICTURES","features":[464]},{"name":"CSIDL_COMMON_PROGRAMS","features":[464]},{"name":"CSIDL_COMMON_STARTMENU","features":[464]},{"name":"CSIDL_COMMON_STARTUP","features":[464]},{"name":"CSIDL_COMMON_TEMPLATES","features":[464]},{"name":"CSIDL_COMMON_VIDEO","features":[464]},{"name":"CSIDL_COMPUTERSNEARME","features":[464]},{"name":"CSIDL_CONNECTIONS","features":[464]},{"name":"CSIDL_CONTROLS","features":[464]},{"name":"CSIDL_COOKIES","features":[464]},{"name":"CSIDL_DESKTOP","features":[464]},{"name":"CSIDL_DESKTOPDIRECTORY","features":[464]},{"name":"CSIDL_DRIVES","features":[464]},{"name":"CSIDL_FAVORITES","features":[464]},{"name":"CSIDL_FLAG_CREATE","features":[464]},{"name":"CSIDL_FLAG_DONT_UNEXPAND","features":[464]},{"name":"CSIDL_FLAG_DONT_VERIFY","features":[464]},{"name":"CSIDL_FLAG_MASK","features":[464]},{"name":"CSIDL_FLAG_NO_ALIAS","features":[464]},{"name":"CSIDL_FLAG_PER_USER_INIT","features":[464]},{"name":"CSIDL_FLAG_PFTI_TRACKTARGET","features":[464]},{"name":"CSIDL_FONTS","features":[464]},{"name":"CSIDL_HISTORY","features":[464]},{"name":"CSIDL_INTERNET","features":[464]},{"name":"CSIDL_INTERNET_CACHE","features":[464]},{"name":"CSIDL_LOCAL_APPDATA","features":[464]},{"name":"CSIDL_MYDOCUMENTS","features":[464]},{"name":"CSIDL_MYMUSIC","features":[464]},{"name":"CSIDL_MYPICTURES","features":[464]},{"name":"CSIDL_MYVIDEO","features":[464]},{"name":"CSIDL_NETHOOD","features":[464]},{"name":"CSIDL_NETWORK","features":[464]},{"name":"CSIDL_PERSONAL","features":[464]},{"name":"CSIDL_PRINTERS","features":[464]},{"name":"CSIDL_PRINTHOOD","features":[464]},{"name":"CSIDL_PROFILE","features":[464]},{"name":"CSIDL_PROGRAMS","features":[464]},{"name":"CSIDL_PROGRAM_FILES","features":[464]},{"name":"CSIDL_PROGRAM_FILESX86","features":[464]},{"name":"CSIDL_PROGRAM_FILES_COMMON","features":[464]},{"name":"CSIDL_PROGRAM_FILES_COMMONX86","features":[464]},{"name":"CSIDL_RECENT","features":[464]},{"name":"CSIDL_RESOURCES","features":[464]},{"name":"CSIDL_RESOURCES_LOCALIZED","features":[464]},{"name":"CSIDL_SENDTO","features":[464]},{"name":"CSIDL_STARTMENU","features":[464]},{"name":"CSIDL_STARTUP","features":[464]},{"name":"CSIDL_SYSTEM","features":[464]},{"name":"CSIDL_SYSTEMX86","features":[464]},{"name":"CSIDL_TEMPLATES","features":[464]},{"name":"CSIDL_WINDOWS","features":[464]},{"name":"CScriptErrorList","features":[464]},{"name":"CTF_COINIT","features":[464]},{"name":"CTF_COINIT_MTA","features":[464]},{"name":"CTF_COINIT_STA","features":[464]},{"name":"CTF_FREELIBANDEXIT","features":[464]},{"name":"CTF_INHERITWOW64","features":[464]},{"name":"CTF_INSIST","features":[464]},{"name":"CTF_KEYBOARD_LOCALE","features":[464]},{"name":"CTF_NOADDREFLIB","features":[464]},{"name":"CTF_OLEINITIALIZE","features":[464]},{"name":"CTF_PROCESS_REF","features":[464]},{"name":"CTF_REF_COUNTED","features":[464]},{"name":"CTF_THREAD_REF","features":[464]},{"name":"CTF_UNUSED","features":[464]},{"name":"CTF_WAIT_ALLOWCOM","features":[464]},{"name":"CTF_WAIT_NO_REENTRANCY","features":[464]},{"name":"ChrCmpIA","features":[303,464]},{"name":"ChrCmpIW","features":[303,464]},{"name":"ColorAdjustLuma","features":[303,464]},{"name":"ColorHLSToRGB","features":[303,464]},{"name":"ColorRGBToHLS","features":[303,464]},{"name":"CommandLineToArgvW","features":[464]},{"name":"CommandStateChangeConstants","features":[464]},{"name":"ConflictFolder","features":[464]},{"name":"ConnectToConnectionPoint","features":[303,354,464]},{"name":"CreateProfile","features":[464]},{"name":"DAD_AutoScroll","features":[303,464]},{"name":"DAD_DragEnterEx","features":[303,464]},{"name":"DAD_DragEnterEx2","features":[303,354,464]},{"name":"DAD_DragLeave","features":[303,464]},{"name":"DAD_DragMove","features":[303,464]},{"name":"DAD_SetDragImage","features":[303,353,464]},{"name":"DAD_ShowDragImage","features":[303,464]},{"name":"DATABLOCK_HEADER","features":[464]},{"name":"DATAOBJ_GET_ITEM_FLAGS","features":[464]},{"name":"DBCID_CLSIDOFBAR","features":[464]},{"name":"DBCID_EMPTY","features":[464]},{"name":"DBCID_GETBAR","features":[464]},{"name":"DBCID_ONDRAG","features":[464]},{"name":"DBCID_RESIZE","features":[464]},{"name":"DBCID_UPDATESIZE","features":[464]},{"name":"DBC_GS_IDEAL","features":[464]},{"name":"DBC_GS_SIZEDOWN","features":[464]},{"name":"DBC_HIDE","features":[464]},{"name":"DBC_SHOW","features":[464]},{"name":"DBC_SHOWOBSCURE","features":[464]},{"name":"DBID_BANDINFOCHANGED","features":[464]},{"name":"DBID_DELAYINIT","features":[464]},{"name":"DBID_FINISHINIT","features":[464]},{"name":"DBID_MAXIMIZEBAND","features":[464]},{"name":"DBID_PERMITAUTOHIDE","features":[464]},{"name":"DBID_PUSHCHEVRON","features":[464]},{"name":"DBID_SETWINDOWTHEME","features":[464]},{"name":"DBID_SHOWONLY","features":[464]},{"name":"DBIF_VIEWMODE_FLOATING","features":[464]},{"name":"DBIF_VIEWMODE_NORMAL","features":[464]},{"name":"DBIF_VIEWMODE_TRANSPARENT","features":[464]},{"name":"DBIF_VIEWMODE_VERTICAL","features":[464]},{"name":"DBIMF_ADDTOFRONT","features":[464]},{"name":"DBIMF_ALWAYSGRIPPER","features":[464]},{"name":"DBIMF_BKCOLOR","features":[464]},{"name":"DBIMF_BREAK","features":[464]},{"name":"DBIMF_DEBOSSED","features":[464]},{"name":"DBIMF_FIXED","features":[464]},{"name":"DBIMF_FIXEDBMP","features":[464]},{"name":"DBIMF_NOGRIPPER","features":[464]},{"name":"DBIMF_NOMARGINS","features":[464]},{"name":"DBIMF_NORMAL","features":[464]},{"name":"DBIMF_TOPALIGN","features":[464]},{"name":"DBIMF_UNDELETEABLE","features":[464]},{"name":"DBIMF_USECHEVRON","features":[464]},{"name":"DBIMF_VARIABLEHEIGHT","features":[464]},{"name":"DBIM_ACTUAL","features":[464]},{"name":"DBIM_BKCOLOR","features":[464]},{"name":"DBIM_INTEGRAL","features":[464]},{"name":"DBIM_MAXSIZE","features":[464]},{"name":"DBIM_MINSIZE","features":[464]},{"name":"DBIM_MODEFLAGS","features":[464]},{"name":"DBIM_TITLE","features":[464]},{"name":"DBPC_SELECTFIRST","features":[464]},{"name":"DEFAULTSAVEFOLDERTYPE","features":[464]},{"name":"DEFAULT_FOLDER_MENU_RESTRICTIONS","features":[464]},{"name":"DEFCONTEXTMENU","features":[303,364,631]},{"name":"DEFSHAREID_PUBLIC","features":[464]},{"name":"DEFSHAREID_USERS","features":[464]},{"name":"DEF_SHARE_ID","features":[464]},{"name":"DELEGATEITEMID","features":[464]},{"name":"DESKBANDCID","features":[464]},{"name":"DESKBANDINFO","features":[303,464]},{"name":"DESKTOP_SLIDESHOW_DIRECTION","features":[464]},{"name":"DESKTOP_SLIDESHOW_OPTIONS","features":[464]},{"name":"DESKTOP_SLIDESHOW_STATE","features":[464]},{"name":"DESKTOP_WALLPAPER_POSITION","features":[464]},{"name":"DETAILSINFO","features":[631]},{"name":"DEVICE_IMMERSIVE","features":[464]},{"name":"DEVICE_PRIMARY","features":[464]},{"name":"DFConstraint","features":[354,464]},{"name":"DFMICS","features":[303,464]},{"name":"DFMR_DEFAULT","features":[464]},{"name":"DFMR_NO_ASYNC_VERBS","features":[464]},{"name":"DFMR_NO_NATIVECPU_VERBS","features":[464]},{"name":"DFMR_NO_NONWOW_VERBS","features":[464]},{"name":"DFMR_NO_RESOURCE_VERBS","features":[464]},{"name":"DFMR_NO_STATIC_VERBS","features":[464]},{"name":"DFMR_OPTIN_HANDLERS_ONLY","features":[464]},{"name":"DFMR_RESOURCE_AND_FOLDER_VERBS_ONLY","features":[464]},{"name":"DFMR_STATIC_VERBS_ONLY","features":[464]},{"name":"DFMR_USE_SPECIFIED_HANDLERS","features":[464]},{"name":"DFMR_USE_SPECIFIED_VERBS","features":[464]},{"name":"DFM_CMD","features":[464]},{"name":"DFM_CMD_COPY","features":[464]},{"name":"DFM_CMD_DELETE","features":[464]},{"name":"DFM_CMD_LINK","features":[464]},{"name":"DFM_CMD_MODALPROP","features":[464]},{"name":"DFM_CMD_MOVE","features":[464]},{"name":"DFM_CMD_NEWFOLDER","features":[464]},{"name":"DFM_CMD_PASTE","features":[464]},{"name":"DFM_CMD_PASTELINK","features":[464]},{"name":"DFM_CMD_PASTESPECIAL","features":[464]},{"name":"DFM_CMD_PROPERTIES","features":[464]},{"name":"DFM_CMD_RENAME","features":[464]},{"name":"DFM_CMD_VIEWDETAILS","features":[464]},{"name":"DFM_CMD_VIEWLIST","features":[464]},{"name":"DFM_GETDEFSTATICID","features":[464]},{"name":"DFM_GETHELPTEXT","features":[464]},{"name":"DFM_GETHELPTEXTW","features":[464]},{"name":"DFM_GETVERBA","features":[464]},{"name":"DFM_GETVERBW","features":[464]},{"name":"DFM_INVOKECOMMAND","features":[464]},{"name":"DFM_INVOKECOMMANDEX","features":[464]},{"name":"DFM_MAPCOMMANDNAME","features":[464]},{"name":"DFM_MERGECONTEXTMENU","features":[464]},{"name":"DFM_MERGECONTEXTMENU_BOTTOM","features":[464]},{"name":"DFM_MERGECONTEXTMENU_TOP","features":[464]},{"name":"DFM_MESSAGE_ID","features":[464]},{"name":"DFM_MODIFYQCMFLAGS","features":[464]},{"name":"DFM_VALIDATECMD","features":[464]},{"name":"DFM_WM_DRAWITEM","features":[464]},{"name":"DFM_WM_INITMENUPOPUP","features":[464]},{"name":"DFM_WM_MEASUREITEM","features":[464]},{"name":"DISPID_BEGINDRAG","features":[464]},{"name":"DISPID_CHECKSTATECHANGED","features":[464]},{"name":"DISPID_COLUMNSCHANGED","features":[464]},{"name":"DISPID_CONTENTSCHANGED","features":[464]},{"name":"DISPID_CTRLMOUSEWHEEL","features":[464]},{"name":"DISPID_DEFAULTVERBINVOKED","features":[464]},{"name":"DISPID_ENTERPRESSED","features":[464]},{"name":"DISPID_ENTERPRISEIDCHANGED","features":[464]},{"name":"DISPID_EXPLORERWINDOWREADY","features":[464]},{"name":"DISPID_FILELISTENUMDONE","features":[464]},{"name":"DISPID_FILTERINVOKED","features":[464]},{"name":"DISPID_FOCUSCHANGED","features":[464]},{"name":"DISPID_FOLDERCHANGED","features":[464]},{"name":"DISPID_IADCCTL_DEFAULTCAT","features":[464]},{"name":"DISPID_IADCCTL_DIRTY","features":[464]},{"name":"DISPID_IADCCTL_FORCEX86","features":[464]},{"name":"DISPID_IADCCTL_ONDOMAIN","features":[464]},{"name":"DISPID_IADCCTL_PUBCAT","features":[464]},{"name":"DISPID_IADCCTL_SHOWPOSTSETUP","features":[464]},{"name":"DISPID_IADCCTL_SORT","features":[464]},{"name":"DISPID_ICONSIZECHANGED","features":[464]},{"name":"DISPID_INITIALENUMERATIONDONE","features":[464]},{"name":"DISPID_NOITEMSTATE_CHANGED","features":[464]},{"name":"DISPID_ORDERCHANGED","features":[464]},{"name":"DISPID_SEARCHCOMMAND_ABORT","features":[464]},{"name":"DISPID_SEARCHCOMMAND_COMPLETE","features":[464]},{"name":"DISPID_SEARCHCOMMAND_ERROR","features":[464]},{"name":"DISPID_SEARCHCOMMAND_PROGRESSTEXT","features":[464]},{"name":"DISPID_SEARCHCOMMAND_RESTORE","features":[464]},{"name":"DISPID_SEARCHCOMMAND_START","features":[464]},{"name":"DISPID_SEARCHCOMMAND_UPDATE","features":[464]},{"name":"DISPID_SELECTEDITEMCHANGED","features":[464]},{"name":"DISPID_SELECTIONCHANGED","features":[464]},{"name":"DISPID_SORTDONE","features":[464]},{"name":"DISPID_UPDATEIMAGE","features":[464]},{"name":"DISPID_VERBINVOKED","features":[464]},{"name":"DISPID_VIEWMODECHANGED","features":[464]},{"name":"DISPID_VIEWPAINTDONE","features":[464]},{"name":"DISPID_WORDWHEELEDITED","features":[464]},{"name":"DISPLAY_DEVICE_TYPE","features":[464]},{"name":"DI_GETDRAGIMAGE","features":[464]},{"name":"DLG_SCRNSAVECONFIGURE","features":[464]},{"name":"DLLGETVERSIONPROC","features":[464]},{"name":"DLLVERSIONINFO","features":[464]},{"name":"DLLVERSIONINFO2","features":[464]},{"name":"DLLVER_BUILD_MASK","features":[464]},{"name":"DLLVER_MAJOR_MASK","features":[464]},{"name":"DLLVER_MINOR_MASK","features":[464]},{"name":"DLLVER_PLATFORM_NT","features":[464]},{"name":"DLLVER_PLATFORM_WINDOWS","features":[464]},{"name":"DLLVER_QFE_MASK","features":[464]},{"name":"DOGIF_DEFAULT","features":[464]},{"name":"DOGIF_NO_HDROP","features":[464]},{"name":"DOGIF_NO_URL","features":[464]},{"name":"DOGIF_ONLY_IF_ONE","features":[464]},{"name":"DOGIF_TRAVERSE_LINK","features":[464]},{"name":"DRAGINFOA","features":[303,464]},{"name":"DRAGINFOA","features":[303,464]},{"name":"DRAGINFOW","features":[303,464]},{"name":"DRAGINFOW","features":[303,464]},{"name":"DROPDESCRIPTION","features":[464]},{"name":"DROPFILES","features":[303,464]},{"name":"DROPIMAGETYPE","features":[464]},{"name":"DROPIMAGE_COPY","features":[464]},{"name":"DROPIMAGE_INVALID","features":[464]},{"name":"DROPIMAGE_LABEL","features":[464]},{"name":"DROPIMAGE_LINK","features":[464]},{"name":"DROPIMAGE_MOVE","features":[464]},{"name":"DROPIMAGE_NOIMAGE","features":[464]},{"name":"DROPIMAGE_NONE","features":[464]},{"name":"DROPIMAGE_WARNING","features":[464]},{"name":"DSD_BACKWARD","features":[464]},{"name":"DSD_FORWARD","features":[464]},{"name":"DSFT_DETECT","features":[464]},{"name":"DSFT_PRIVATE","features":[464]},{"name":"DSFT_PUBLIC","features":[464]},{"name":"DSH_ALLOWDROPDESCRIPTIONTEXT","features":[464]},{"name":"DSH_FLAGS","features":[464]},{"name":"DSO_SHUFFLEIMAGES","features":[464]},{"name":"DSS_DISABLED_BY_REMOTE_SESSION","features":[464]},{"name":"DSS_ENABLED","features":[464]},{"name":"DSS_SLIDESHOW","features":[464]},{"name":"DShellFolderViewEvents","features":[354,464]},{"name":"DShellNameSpaceEvents","features":[354,464]},{"name":"DShellWindowsEvents","features":[354,464]},{"name":"DVASPECT_COPY","features":[464]},{"name":"DVASPECT_LINK","features":[464]},{"name":"DVASPECT_SHORTNAME","features":[464]},{"name":"DWFAF_AUTOHIDE","features":[464]},{"name":"DWFAF_GROUP1","features":[464]},{"name":"DWFAF_GROUP2","features":[464]},{"name":"DWFAF_HIDDEN","features":[464]},{"name":"DWFRF_DELETECONFIGDATA","features":[464]},{"name":"DWFRF_NORMAL","features":[464]},{"name":"DWPOS_CENTER","features":[464]},{"name":"DWPOS_FILL","features":[464]},{"name":"DWPOS_FIT","features":[464]},{"name":"DWPOS_SPAN","features":[464]},{"name":"DWPOS_STRETCH","features":[464]},{"name":"DWPOS_TILE","features":[464]},{"name":"DWebBrowserEvents","features":[354,464]},{"name":"DWebBrowserEvents2","features":[354,464]},{"name":"DefFolderMenu","features":[464]},{"name":"DefSubclassProc","features":[303,464]},{"name":"DeleteProfileA","features":[303,464]},{"name":"DeleteProfileW","features":[303,464]},{"name":"DesktopGadget","features":[464]},{"name":"DesktopWallpaper","features":[464]},{"name":"DestinationList","features":[464]},{"name":"DoEnvironmentSubstA","features":[464]},{"name":"DoEnvironmentSubstW","features":[464]},{"name":"DocPropShellExtension","features":[464]},{"name":"DragAcceptFiles","features":[303,464]},{"name":"DragFinish","features":[464]},{"name":"DragQueryFileA","features":[464]},{"name":"DragQueryFileW","features":[464]},{"name":"DragQueryPoint","features":[303,464]},{"name":"DriveSizeCategorizer","features":[464]},{"name":"DriveType","features":[464]},{"name":"DriveTypeCategorizer","features":[464]},{"name":"DuplicateIcon","features":[303,464,365]},{"name":"EBF_NODROPTARGET","features":[464]},{"name":"EBF_NONE","features":[464]},{"name":"EBF_SELECTFROMDATAOBJECT","features":[464]},{"name":"EBO_ALWAYSNAVIGATE","features":[464]},{"name":"EBO_HTMLSHAREPOINTVIEW","features":[464]},{"name":"EBO_NAVIGATEONCE","features":[464]},{"name":"EBO_NOBORDER","features":[464]},{"name":"EBO_NONE","features":[464]},{"name":"EBO_NOPERSISTVIEWSTATE","features":[464]},{"name":"EBO_NOTRAVELLOG","features":[464]},{"name":"EBO_NOWRAPPERWINDOW","features":[464]},{"name":"EBO_SHOWFRAMES","features":[464]},{"name":"ECF_AUTOMENUICONS","features":[464]},{"name":"ECF_DEFAULT","features":[464]},{"name":"ECF_HASLUASHIELD","features":[464]},{"name":"ECF_HASSPLITBUTTON","features":[464]},{"name":"ECF_HASSUBCOMMANDS","features":[464]},{"name":"ECF_HIDELABEL","features":[464]},{"name":"ECF_ISDROPDOWN","features":[464]},{"name":"ECF_ISSEPARATOR","features":[464]},{"name":"ECF_SEPARATORAFTER","features":[464]},{"name":"ECF_SEPARATORBEFORE","features":[464]},{"name":"ECF_TOGGLEABLE","features":[464]},{"name":"ECHUIM_DESKTOP","features":[464]},{"name":"ECHUIM_IMMERSIVE","features":[464]},{"name":"ECHUIM_SYSTEM_LAUNCHER","features":[464]},{"name":"ECS_CHECKBOX","features":[464]},{"name":"ECS_CHECKED","features":[464]},{"name":"ECS_DISABLED","features":[464]},{"name":"ECS_ENABLED","features":[464]},{"name":"ECS_HIDDEN","features":[464]},{"name":"ECS_RADIOCHECK","features":[464]},{"name":"EC_HOST_UI_MODE","features":[464]},{"name":"EDGE_GESTURE_KIND","features":[464]},{"name":"EGK_KEYBOARD","features":[464]},{"name":"EGK_MOUSE","features":[464]},{"name":"EGK_TOUCH","features":[464]},{"name":"EPS_DEFAULT_OFF","features":[464]},{"name":"EPS_DEFAULT_ON","features":[464]},{"name":"EPS_DONTCARE","features":[464]},{"name":"EPS_FORCE","features":[464]},{"name":"EPS_INITIALSTATE","features":[464]},{"name":"EPS_STATEMASK","features":[464]},{"name":"EP_AdvQueryPane","features":[464]},{"name":"EP_Commands","features":[464]},{"name":"EP_Commands_Organize","features":[464]},{"name":"EP_Commands_View","features":[464]},{"name":"EP_DetailsPane","features":[464]},{"name":"EP_NavPane","features":[464]},{"name":"EP_PreviewPane","features":[464]},{"name":"EP_QueryPane","features":[464]},{"name":"EP_Ribbon","features":[464]},{"name":"EP_StatusBar","features":[464]},{"name":"EXECUTE_E_LAUNCH_APPLICATION","features":[464]},{"name":"EXPLORER_BROWSER_FILL_FLAGS","features":[464]},{"name":"EXPLORER_BROWSER_OPTIONS","features":[464]},{"name":"EXPPS_FILETYPES","features":[464]},{"name":"EXP_DARWIN_ID_SIG","features":[464]},{"name":"EXP_DARWIN_LINK","features":[464]},{"name":"EXP_PROPERTYSTORAGE","features":[464]},{"name":"EXP_PROPERTYSTORAGE_SIG","features":[464]},{"name":"EXP_SPECIAL_FOLDER","features":[464]},{"name":"EXP_SPECIAL_FOLDER_SIG","features":[464]},{"name":"EXP_SZ_ICON_SIG","features":[464]},{"name":"EXP_SZ_LINK","features":[464]},{"name":"EXP_SZ_LINK_SIG","features":[464]},{"name":"EXTRASEARCH","features":[464]},{"name":"E_ACTIVATIONDENIED_SHELLERROR","features":[464]},{"name":"E_ACTIVATIONDENIED_SHELLNOTREADY","features":[464]},{"name":"E_ACTIVATIONDENIED_SHELLRESTART","features":[464]},{"name":"E_ACTIVATIONDENIED_UNEXPECTED","features":[464]},{"name":"E_ACTIVATIONDENIED_USERCLOSE","features":[464]},{"name":"E_FILE_PLACEHOLDER_NOT_INITIALIZED","features":[464]},{"name":"E_FILE_PLACEHOLDER_SERVER_TIMED_OUT","features":[464]},{"name":"E_FILE_PLACEHOLDER_STORAGEPROVIDER_NOT_FOUND","features":[464]},{"name":"E_FILE_PLACEHOLDER_VERSION_MISMATCH","features":[464]},{"name":"E_FLAGS","features":[464]},{"name":"E_IMAGEFEED_CHANGEDISABLED","features":[464]},{"name":"E_NOTVALIDFORANIMATEDIMAGE","features":[464]},{"name":"E_PREVIEWHANDLER_CORRUPT","features":[464]},{"name":"E_PREVIEWHANDLER_DRM_FAIL","features":[464]},{"name":"E_PREVIEWHANDLER_NOAUTH","features":[464]},{"name":"E_PREVIEWHANDLER_NOTFOUND","features":[464]},{"name":"E_SHELL_EXTENSION_BLOCKED","features":[464]},{"name":"E_TILE_NOTIFICATIONS_PLATFORM_FAILURE","features":[464]},{"name":"E_USERTILE_CHANGEDISABLED","features":[464]},{"name":"E_USERTILE_FILESIZE","features":[464]},{"name":"E_USERTILE_LARGEORDYNAMIC","features":[464]},{"name":"E_USERTILE_UNSUPPORTEDFILETYPE","features":[464]},{"name":"E_USERTILE_VIDEOFRAMESIZE","features":[464]},{"name":"EnumerableObjectCollection","features":[464]},{"name":"ExecuteFolder","features":[464]},{"name":"ExecuteUnknown","features":[464]},{"name":"ExplorerBrowser","features":[464]},{"name":"ExtractAssociatedIconA","features":[303,464,365]},{"name":"ExtractAssociatedIconExA","features":[303,464,365]},{"name":"ExtractAssociatedIconExW","features":[303,464,365]},{"name":"ExtractAssociatedIconW","features":[303,464,365]},{"name":"ExtractIconA","features":[303,464,365]},{"name":"ExtractIconExA","features":[464,365]},{"name":"ExtractIconExW","features":[464,365]},{"name":"ExtractIconW","features":[303,464,365]},{"name":"ExtractIfNotCached","features":[464]},{"name":"FCIDM_BROWSERFIRST","features":[464]},{"name":"FCIDM_BROWSERLAST","features":[464]},{"name":"FCIDM_GLOBALFIRST","features":[464]},{"name":"FCIDM_GLOBALLAST","features":[464]},{"name":"FCIDM_MENU_EDIT","features":[464]},{"name":"FCIDM_MENU_EXPLORE","features":[464]},{"name":"FCIDM_MENU_FAVORITES","features":[464]},{"name":"FCIDM_MENU_FILE","features":[464]},{"name":"FCIDM_MENU_FIND","features":[464]},{"name":"FCIDM_MENU_HELP","features":[464]},{"name":"FCIDM_MENU_TOOLS","features":[464]},{"name":"FCIDM_MENU_TOOLS_SEP_GOTO","features":[464]},{"name":"FCIDM_MENU_VIEW","features":[464]},{"name":"FCIDM_MENU_VIEW_SEP_OPTIONS","features":[464]},{"name":"FCIDM_SHVIEWFIRST","features":[464]},{"name":"FCIDM_SHVIEWLAST","features":[464]},{"name":"FCIDM_STATUS","features":[464]},{"name":"FCIDM_TOOLBAR","features":[464]},{"name":"FCSM_CLSID","features":[464]},{"name":"FCSM_FLAGS","features":[464]},{"name":"FCSM_ICONFILE","features":[464]},{"name":"FCSM_INFOTIP","features":[464]},{"name":"FCSM_LOGO","features":[464]},{"name":"FCSM_VIEWID","features":[464]},{"name":"FCSM_WEBVIEWTEMPLATE","features":[464]},{"name":"FCS_FLAG_DRAGDROP","features":[464]},{"name":"FCS_FORCEWRITE","features":[464]},{"name":"FCS_READ","features":[464]},{"name":"FCT_ADDTOEND","features":[464]},{"name":"FCT_CONFIGABLE","features":[464]},{"name":"FCT_MERGE","features":[464]},{"name":"FCW_INTERNETBAR","features":[464]},{"name":"FCW_PROGRESS","features":[464]},{"name":"FCW_STATUS","features":[464]},{"name":"FCW_TOOLBAR","features":[464]},{"name":"FCW_TREE","features":[464]},{"name":"FDAP","features":[464]},{"name":"FDAP_BOTTOM","features":[464]},{"name":"FDAP_TOP","features":[464]},{"name":"FDEOR_ACCEPT","features":[464]},{"name":"FDEOR_DEFAULT","features":[464]},{"name":"FDEOR_REFUSE","features":[464]},{"name":"FDESVR_ACCEPT","features":[464]},{"name":"FDESVR_DEFAULT","features":[464]},{"name":"FDESVR_REFUSE","features":[464]},{"name":"FDE_OVERWRITE_RESPONSE","features":[464]},{"name":"FDE_SHAREVIOLATION_RESPONSE","features":[464]},{"name":"FDTF_LONGDATE","features":[464]},{"name":"FDTF_LONGTIME","features":[464]},{"name":"FDTF_LTRDATE","features":[464]},{"name":"FDTF_NOAUTOREADINGORDER","features":[464]},{"name":"FDTF_RELATIVE","features":[464]},{"name":"FDTF_RTLDATE","features":[464]},{"name":"FDTF_SHORTDATE","features":[464]},{"name":"FDTF_SHORTTIME","features":[464]},{"name":"FD_ACCESSTIME","features":[464]},{"name":"FD_ATTRIBUTES","features":[464]},{"name":"FD_CLSID","features":[464]},{"name":"FD_CREATETIME","features":[464]},{"name":"FD_FILESIZE","features":[464]},{"name":"FD_FLAGS","features":[464]},{"name":"FD_LINKUI","features":[464]},{"name":"FD_PROGRESSUI","features":[464]},{"name":"FD_SIZEPOINT","features":[464]},{"name":"FD_UNICODE","features":[464]},{"name":"FD_WRITESTIME","features":[464]},{"name":"FEM_NAVIGATION","features":[464]},{"name":"FEM_VIEWRESULT","features":[464]},{"name":"FFFP_EXACTMATCH","features":[464]},{"name":"FFFP_MODE","features":[464]},{"name":"FFFP_NEARESTPARENTMATCH","features":[464]},{"name":"FILEDESCRIPTORA","features":[303,464]},{"name":"FILEDESCRIPTORW","features":[303,464]},{"name":"FILEGROUPDESCRIPTORA","features":[303,464]},{"name":"FILEGROUPDESCRIPTORW","features":[303,464]},{"name":"FILEOPENDIALOGOPTIONS","features":[464]},{"name":"FILEOPERATION_FLAGS","features":[464]},{"name":"FILETYPEATTRIBUTEFLAGS","features":[464]},{"name":"FILE_ATTRIBUTES_ARRAY","features":[464]},{"name":"FILE_OPERATION_FLAGS2","features":[464]},{"name":"FILE_USAGE_TYPE","features":[464]},{"name":"FLVM_CONTENT","features":[464]},{"name":"FLVM_DETAILS","features":[464]},{"name":"FLVM_FIRST","features":[464]},{"name":"FLVM_ICONS","features":[464]},{"name":"FLVM_LAST","features":[464]},{"name":"FLVM_LIST","features":[464]},{"name":"FLVM_TILES","features":[464]},{"name":"FLVM_UNSPECIFIED","features":[464]},{"name":"FLYOUT_PLACEMENT","features":[464]},{"name":"FMTID_Briefcase","features":[464]},{"name":"FMTID_CustomImageProperties","features":[464]},{"name":"FMTID_DRM","features":[464]},{"name":"FMTID_Displaced","features":[464]},{"name":"FMTID_ImageProperties","features":[464]},{"name":"FMTID_InternetSite","features":[464]},{"name":"FMTID_Intshcut","features":[464]},{"name":"FMTID_LibraryProperties","features":[464]},{"name":"FMTID_MUSIC","features":[464]},{"name":"FMTID_Misc","features":[464]},{"name":"FMTID_Query","features":[464]},{"name":"FMTID_ShellDetails","features":[464]},{"name":"FMTID_Storage","features":[464]},{"name":"FMTID_Volume","features":[464]},{"name":"FMTID_WebView","features":[464]},{"name":"FOF2_MERGEFOLDERSONCOLLISION","features":[464]},{"name":"FOF2_NONE","features":[464]},{"name":"FOFX_ADDUNDORECORD","features":[464]},{"name":"FOFX_COPYASDOWNLOAD","features":[464]},{"name":"FOFX_DONTDISPLAYDESTPATH","features":[464]},{"name":"FOFX_DONTDISPLAYLOCATIONS","features":[464]},{"name":"FOFX_DONTDISPLAYSOURCEPATH","features":[464]},{"name":"FOFX_EARLYFAILURE","features":[464]},{"name":"FOFX_KEEPNEWERFILE","features":[464]},{"name":"FOFX_MOVEACLSACROSSVOLUMES","features":[464]},{"name":"FOFX_NOCOPYHOOKS","features":[464]},{"name":"FOFX_NOMINIMIZEBOX","features":[464]},{"name":"FOFX_NOSKIPJUNCTIONS","features":[464]},{"name":"FOFX_PREFERHARDLINK","features":[464]},{"name":"FOFX_PRESERVEFILEEXTENSIONS","features":[464]},{"name":"FOFX_RECYCLEONDELETE","features":[464]},{"name":"FOFX_REQUIREELEVATION","features":[464]},{"name":"FOFX_SHOWELEVATIONPROMPT","features":[464]},{"name":"FOF_ALLOWUNDO","features":[464]},{"name":"FOF_CONFIRMMOUSE","features":[464]},{"name":"FOF_FILESONLY","features":[464]},{"name":"FOF_MULTIDESTFILES","features":[464]},{"name":"FOF_NOCONFIRMATION","features":[464]},{"name":"FOF_NOCONFIRMMKDIR","features":[464]},{"name":"FOF_NOCOPYSECURITYATTRIBS","features":[464]},{"name":"FOF_NOERRORUI","features":[464]},{"name":"FOF_NORECURSEREPARSE","features":[464]},{"name":"FOF_NORECURSION","features":[464]},{"name":"FOF_NO_CONNECTED_ELEMENTS","features":[464]},{"name":"FOF_NO_UI","features":[464]},{"name":"FOF_RENAMEONCOLLISION","features":[464]},{"name":"FOF_SILENT","features":[464]},{"name":"FOF_SIMPLEPROGRESS","features":[464]},{"name":"FOF_WANTMAPPINGHANDLE","features":[464]},{"name":"FOF_WANTNUKEWARNING","features":[464]},{"name":"FOLDERFLAGS","features":[464]},{"name":"FOLDERID_AccountPictures","features":[464]},{"name":"FOLDERID_AddNewPrograms","features":[464]},{"name":"FOLDERID_AdminTools","features":[464]},{"name":"FOLDERID_AllAppMods","features":[464]},{"name":"FOLDERID_AppCaptures","features":[464]},{"name":"FOLDERID_AppDataDesktop","features":[464]},{"name":"FOLDERID_AppDataDocuments","features":[464]},{"name":"FOLDERID_AppDataFavorites","features":[464]},{"name":"FOLDERID_AppDataProgramData","features":[464]},{"name":"FOLDERID_AppUpdates","features":[464]},{"name":"FOLDERID_ApplicationShortcuts","features":[464]},{"name":"FOLDERID_AppsFolder","features":[464]},{"name":"FOLDERID_CDBurning","features":[464]},{"name":"FOLDERID_CameraRoll","features":[464]},{"name":"FOLDERID_CameraRollLibrary","features":[464]},{"name":"FOLDERID_ChangeRemovePrograms","features":[464]},{"name":"FOLDERID_CommonAdminTools","features":[464]},{"name":"FOLDERID_CommonOEMLinks","features":[464]},{"name":"FOLDERID_CommonPrograms","features":[464]},{"name":"FOLDERID_CommonStartMenu","features":[464]},{"name":"FOLDERID_CommonStartMenuPlaces","features":[464]},{"name":"FOLDERID_CommonStartup","features":[464]},{"name":"FOLDERID_CommonTemplates","features":[464]},{"name":"FOLDERID_ComputerFolder","features":[464]},{"name":"FOLDERID_ConflictFolder","features":[464]},{"name":"FOLDERID_ConnectionsFolder","features":[464]},{"name":"FOLDERID_Contacts","features":[464]},{"name":"FOLDERID_ControlPanelFolder","features":[464]},{"name":"FOLDERID_Cookies","features":[464]},{"name":"FOLDERID_CurrentAppMods","features":[464]},{"name":"FOLDERID_Desktop","features":[464]},{"name":"FOLDERID_DevelopmentFiles","features":[464]},{"name":"FOLDERID_Device","features":[464]},{"name":"FOLDERID_DeviceMetadataStore","features":[464]},{"name":"FOLDERID_Documents","features":[464]},{"name":"FOLDERID_DocumentsLibrary","features":[464]},{"name":"FOLDERID_Downloads","features":[464]},{"name":"FOLDERID_Favorites","features":[464]},{"name":"FOLDERID_Fonts","features":[464]},{"name":"FOLDERID_GameTasks","features":[464]},{"name":"FOLDERID_Games","features":[464]},{"name":"FOLDERID_History","features":[464]},{"name":"FOLDERID_HomeGroup","features":[464]},{"name":"FOLDERID_HomeGroupCurrentUser","features":[464]},{"name":"FOLDERID_ImplicitAppShortcuts","features":[464]},{"name":"FOLDERID_InternetCache","features":[464]},{"name":"FOLDERID_InternetFolder","features":[464]},{"name":"FOLDERID_Libraries","features":[464]},{"name":"FOLDERID_Links","features":[464]},{"name":"FOLDERID_LocalAppData","features":[464]},{"name":"FOLDERID_LocalAppDataLow","features":[464]},{"name":"FOLDERID_LocalDocuments","features":[464]},{"name":"FOLDERID_LocalDownloads","features":[464]},{"name":"FOLDERID_LocalMusic","features":[464]},{"name":"FOLDERID_LocalPictures","features":[464]},{"name":"FOLDERID_LocalStorage","features":[464]},{"name":"FOLDERID_LocalVideos","features":[464]},{"name":"FOLDERID_LocalizedResourcesDir","features":[464]},{"name":"FOLDERID_Music","features":[464]},{"name":"FOLDERID_MusicLibrary","features":[464]},{"name":"FOLDERID_NetHood","features":[464]},{"name":"FOLDERID_NetworkFolder","features":[464]},{"name":"FOLDERID_Objects3D","features":[464]},{"name":"FOLDERID_OneDrive","features":[464]},{"name":"FOLDERID_OriginalImages","features":[464]},{"name":"FOLDERID_PhotoAlbums","features":[464]},{"name":"FOLDERID_Pictures","features":[464]},{"name":"FOLDERID_PicturesLibrary","features":[464]},{"name":"FOLDERID_Playlists","features":[464]},{"name":"FOLDERID_PrintHood","features":[464]},{"name":"FOLDERID_PrintersFolder","features":[464]},{"name":"FOLDERID_Profile","features":[464]},{"name":"FOLDERID_ProgramData","features":[464]},{"name":"FOLDERID_ProgramFiles","features":[464]},{"name":"FOLDERID_ProgramFilesCommon","features":[464]},{"name":"FOLDERID_ProgramFilesCommonX64","features":[464]},{"name":"FOLDERID_ProgramFilesCommonX86","features":[464]},{"name":"FOLDERID_ProgramFilesX64","features":[464]},{"name":"FOLDERID_ProgramFilesX86","features":[464]},{"name":"FOLDERID_Programs","features":[464]},{"name":"FOLDERID_Public","features":[464]},{"name":"FOLDERID_PublicDesktop","features":[464]},{"name":"FOLDERID_PublicDocuments","features":[464]},{"name":"FOLDERID_PublicDownloads","features":[464]},{"name":"FOLDERID_PublicGameTasks","features":[464]},{"name":"FOLDERID_PublicLibraries","features":[464]},{"name":"FOLDERID_PublicMusic","features":[464]},{"name":"FOLDERID_PublicPictures","features":[464]},{"name":"FOLDERID_PublicRingtones","features":[464]},{"name":"FOLDERID_PublicUserTiles","features":[464]},{"name":"FOLDERID_PublicVideos","features":[464]},{"name":"FOLDERID_QuickLaunch","features":[464]},{"name":"FOLDERID_Recent","features":[464]},{"name":"FOLDERID_RecordedCalls","features":[464]},{"name":"FOLDERID_RecordedTVLibrary","features":[464]},{"name":"FOLDERID_RecycleBinFolder","features":[464]},{"name":"FOLDERID_ResourceDir","features":[464]},{"name":"FOLDERID_RetailDemo","features":[464]},{"name":"FOLDERID_Ringtones","features":[464]},{"name":"FOLDERID_RoamedTileImages","features":[464]},{"name":"FOLDERID_RoamingAppData","features":[464]},{"name":"FOLDERID_RoamingTiles","features":[464]},{"name":"FOLDERID_SEARCH_CSC","features":[464]},{"name":"FOLDERID_SEARCH_MAPI","features":[464]},{"name":"FOLDERID_SampleMusic","features":[464]},{"name":"FOLDERID_SamplePictures","features":[464]},{"name":"FOLDERID_SamplePlaylists","features":[464]},{"name":"FOLDERID_SampleVideos","features":[464]},{"name":"FOLDERID_SavedGames","features":[464]},{"name":"FOLDERID_SavedPictures","features":[464]},{"name":"FOLDERID_SavedPicturesLibrary","features":[464]},{"name":"FOLDERID_SavedSearches","features":[464]},{"name":"FOLDERID_Screenshots","features":[464]},{"name":"FOLDERID_SearchHistory","features":[464]},{"name":"FOLDERID_SearchHome","features":[464]},{"name":"FOLDERID_SearchTemplates","features":[464]},{"name":"FOLDERID_SendTo","features":[464]},{"name":"FOLDERID_SidebarDefaultParts","features":[464]},{"name":"FOLDERID_SidebarParts","features":[464]},{"name":"FOLDERID_SkyDrive","features":[464]},{"name":"FOLDERID_SkyDriveCameraRoll","features":[464]},{"name":"FOLDERID_SkyDriveDocuments","features":[464]},{"name":"FOLDERID_SkyDriveMusic","features":[464]},{"name":"FOLDERID_SkyDrivePictures","features":[464]},{"name":"FOLDERID_StartMenu","features":[464]},{"name":"FOLDERID_StartMenuAllPrograms","features":[464]},{"name":"FOLDERID_Startup","features":[464]},{"name":"FOLDERID_SyncManagerFolder","features":[464]},{"name":"FOLDERID_SyncResultsFolder","features":[464]},{"name":"FOLDERID_SyncSetupFolder","features":[464]},{"name":"FOLDERID_System","features":[464]},{"name":"FOLDERID_SystemX86","features":[464]},{"name":"FOLDERID_Templates","features":[464]},{"name":"FOLDERID_UserPinned","features":[464]},{"name":"FOLDERID_UserProfiles","features":[464]},{"name":"FOLDERID_UserProgramFiles","features":[464]},{"name":"FOLDERID_UserProgramFilesCommon","features":[464]},{"name":"FOLDERID_UsersFiles","features":[464]},{"name":"FOLDERID_UsersLibraries","features":[464]},{"name":"FOLDERID_Videos","features":[464]},{"name":"FOLDERID_VideosLibrary","features":[464]},{"name":"FOLDERID_Windows","features":[464]},{"name":"FOLDERLOGICALVIEWMODE","features":[464]},{"name":"FOLDERSETDATA","features":[464]},{"name":"FOLDERSETTINGS","features":[464]},{"name":"FOLDERTYPEID_AccountPictures","features":[464]},{"name":"FOLDERTYPEID_Communications","features":[464]},{"name":"FOLDERTYPEID_CompressedFolder","features":[464]},{"name":"FOLDERTYPEID_Contacts","features":[464]},{"name":"FOLDERTYPEID_ControlPanelCategory","features":[464]},{"name":"FOLDERTYPEID_ControlPanelClassic","features":[464]},{"name":"FOLDERTYPEID_Documents","features":[464]},{"name":"FOLDERTYPEID_Downloads","features":[464]},{"name":"FOLDERTYPEID_Games","features":[464]},{"name":"FOLDERTYPEID_Generic","features":[464]},{"name":"FOLDERTYPEID_GenericLibrary","features":[464]},{"name":"FOLDERTYPEID_GenericSearchResults","features":[464]},{"name":"FOLDERTYPEID_Invalid","features":[464]},{"name":"FOLDERTYPEID_Music","features":[464]},{"name":"FOLDERTYPEID_NetworkExplorer","features":[464]},{"name":"FOLDERTYPEID_OpenSearch","features":[464]},{"name":"FOLDERTYPEID_OtherUsers","features":[464]},{"name":"FOLDERTYPEID_Pictures","features":[464]},{"name":"FOLDERTYPEID_Printers","features":[464]},{"name":"FOLDERTYPEID_PublishedItems","features":[464]},{"name":"FOLDERTYPEID_RecordedTV","features":[464]},{"name":"FOLDERTYPEID_RecycleBin","features":[464]},{"name":"FOLDERTYPEID_SavedGames","features":[464]},{"name":"FOLDERTYPEID_SearchConnector","features":[464]},{"name":"FOLDERTYPEID_SearchHome","features":[464]},{"name":"FOLDERTYPEID_Searches","features":[464]},{"name":"FOLDERTYPEID_SoftwareExplorer","features":[464]},{"name":"FOLDERTYPEID_StartMenu","features":[464]},{"name":"FOLDERTYPEID_StorageProviderDocuments","features":[464]},{"name":"FOLDERTYPEID_StorageProviderGeneric","features":[464]},{"name":"FOLDERTYPEID_StorageProviderMusic","features":[464]},{"name":"FOLDERTYPEID_StorageProviderPictures","features":[464]},{"name":"FOLDERTYPEID_StorageProviderVideos","features":[464]},{"name":"FOLDERTYPEID_UserFiles","features":[464]},{"name":"FOLDERTYPEID_UsersLibraries","features":[464]},{"name":"FOLDERTYPEID_Videos","features":[464]},{"name":"FOLDERVIEWMODE","features":[464]},{"name":"FOLDERVIEWOPTIONS","features":[464]},{"name":"FOLDER_ENUM_MODE","features":[464]},{"name":"FOS_ALLNONSTORAGEITEMS","features":[464]},{"name":"FOS_ALLOWMULTISELECT","features":[464]},{"name":"FOS_CREATEPROMPT","features":[464]},{"name":"FOS_DEFAULTNOMINIMODE","features":[464]},{"name":"FOS_DONTADDTORECENT","features":[464]},{"name":"FOS_FILEMUSTEXIST","features":[464]},{"name":"FOS_FORCEFILESYSTEM","features":[464]},{"name":"FOS_FORCEPREVIEWPANEON","features":[464]},{"name":"FOS_FORCESHOWHIDDEN","features":[464]},{"name":"FOS_HIDEMRUPLACES","features":[464]},{"name":"FOS_HIDEPINNEDPLACES","features":[464]},{"name":"FOS_NOCHANGEDIR","features":[464]},{"name":"FOS_NODEREFERENCELINKS","features":[464]},{"name":"FOS_NOREADONLYRETURN","features":[464]},{"name":"FOS_NOTESTFILECREATE","features":[464]},{"name":"FOS_NOVALIDATE","features":[464]},{"name":"FOS_OKBUTTONNEEDSINTERACTION","features":[464]},{"name":"FOS_OVERWRITEPROMPT","features":[464]},{"name":"FOS_PATHMUSTEXIST","features":[464]},{"name":"FOS_PICKFOLDERS","features":[464]},{"name":"FOS_SHAREAWARE","features":[464]},{"name":"FOS_STRICTFILETYPES","features":[464]},{"name":"FOS_SUPPORTSTREAMABLEITEMS","features":[464]},{"name":"FO_COPY","features":[464]},{"name":"FO_DELETE","features":[464]},{"name":"FO_MOVE","features":[464]},{"name":"FO_RENAME","features":[464]},{"name":"FP_ABOVE","features":[464]},{"name":"FP_BELOW","features":[464]},{"name":"FP_DEFAULT","features":[464]},{"name":"FP_LEFT","features":[464]},{"name":"FP_RIGHT","features":[464]},{"name":"FSCopyHandler","features":[464]},{"name":"FTA_AlwaysUnsafe","features":[464]},{"name":"FTA_AlwaysUseDirectInvoke","features":[464]},{"name":"FTA_Exclude","features":[464]},{"name":"FTA_HasExtension","features":[464]},{"name":"FTA_NoDDE","features":[464]},{"name":"FTA_NoEdit","features":[464]},{"name":"FTA_NoEditDesc","features":[464]},{"name":"FTA_NoEditDflt","features":[464]},{"name":"FTA_NoEditIcon","features":[464]},{"name":"FTA_NoEditMIME","features":[464]},{"name":"FTA_NoEditVerb","features":[464]},{"name":"FTA_NoEditVerbCmd","features":[464]},{"name":"FTA_NoEditVerbExe","features":[464]},{"name":"FTA_NoNewVerb","features":[464]},{"name":"FTA_NoRecentDocs","features":[464]},{"name":"FTA_NoRemove","features":[464]},{"name":"FTA_NoRemoveVerb","features":[464]},{"name":"FTA_None","features":[464]},{"name":"FTA_OpenIsSafe","features":[464]},{"name":"FTA_SafeForElevation","features":[464]},{"name":"FTA_Show","features":[464]},{"name":"FUT_EDITING","features":[464]},{"name":"FUT_GENERIC","features":[464]},{"name":"FUT_PLAYING","features":[464]},{"name":"FVM_AUTO","features":[464]},{"name":"FVM_CONTENT","features":[464]},{"name":"FVM_DETAILS","features":[464]},{"name":"FVM_FIRST","features":[464]},{"name":"FVM_ICON","features":[464]},{"name":"FVM_LAST","features":[464]},{"name":"FVM_LIST","features":[464]},{"name":"FVM_SMALLICON","features":[464]},{"name":"FVM_THUMBNAIL","features":[464]},{"name":"FVM_THUMBSTRIP","features":[464]},{"name":"FVM_TILE","features":[464]},{"name":"FVO_CUSTOMORDERING","features":[464]},{"name":"FVO_CUSTOMPOSITION","features":[464]},{"name":"FVO_DEFAULT","features":[464]},{"name":"FVO_NOANIMATIONS","features":[464]},{"name":"FVO_NOSCROLLTIPS","features":[464]},{"name":"FVO_SUPPORTHYPERLINKS","features":[464]},{"name":"FVO_VISTALAYOUT","features":[464]},{"name":"FVSIF_CANVIEWIT","features":[464]},{"name":"FVSIF_NEWFAILED","features":[464]},{"name":"FVSIF_NEWFILE","features":[464]},{"name":"FVSIF_PINNED","features":[464]},{"name":"FVSIF_RECT","features":[464]},{"name":"FVST_EMPTYTEXT","features":[464]},{"name":"FVTEXTTYPE","features":[464]},{"name":"FWF_ABBREVIATEDNAMES","features":[464]},{"name":"FWF_ALIGNLEFT","features":[464]},{"name":"FWF_ALLOWRTLREADING","features":[464]},{"name":"FWF_AUTOARRANGE","features":[464]},{"name":"FWF_AUTOCHECKSELECT","features":[464]},{"name":"FWF_BESTFITWINDOW","features":[464]},{"name":"FWF_CHECKSELECT","features":[464]},{"name":"FWF_DESKTOP","features":[464]},{"name":"FWF_EXTENDEDTILES","features":[464]},{"name":"FWF_FULLROWSELECT","features":[464]},{"name":"FWF_HIDEFILENAMES","features":[464]},{"name":"FWF_NOBROWSERVIEWSTATE","features":[464]},{"name":"FWF_NOCLIENTEDGE","features":[464]},{"name":"FWF_NOCOLUMNHEADER","features":[464]},{"name":"FWF_NOENUMREFRESH","features":[464]},{"name":"FWF_NOFILTERS","features":[464]},{"name":"FWF_NOGROUPING","features":[464]},{"name":"FWF_NOHEADERINALLVIEWS","features":[464]},{"name":"FWF_NOICONS","features":[464]},{"name":"FWF_NONE","features":[464]},{"name":"FWF_NOSCROLL","features":[464]},{"name":"FWF_NOSUBFOLDERS","features":[464]},{"name":"FWF_NOVISIBLE","features":[464]},{"name":"FWF_NOWEBVIEW","features":[464]},{"name":"FWF_OWNERDATA","features":[464]},{"name":"FWF_SHOWSELALWAYS","features":[464]},{"name":"FWF_SINGLECLICKACTIVATE","features":[464]},{"name":"FWF_SINGLESEL","features":[464]},{"name":"FWF_SNAPTOGRID","features":[464]},{"name":"FWF_SUBSETGROUPS","features":[464]},{"name":"FWF_TRANSPARENT","features":[464]},{"name":"FWF_TRICHECKSELECT","features":[464]},{"name":"FWF_USESEARCHFOLDER","features":[464]},{"name":"FileIconInit","features":[303,464]},{"name":"FileOpenDialog","features":[464]},{"name":"FileOperation","features":[464]},{"name":"FileSaveDialog","features":[464]},{"name":"FileSearchBand","features":[464]},{"name":"FindExecutableA","features":[303,464]},{"name":"FindExecutableW","features":[303,464]},{"name":"Folder","features":[354,464]},{"name":"Folder2","features":[354,464]},{"name":"Folder3","features":[354,464]},{"name":"FolderItem","features":[354,464]},{"name":"FolderItem2","features":[354,464]},{"name":"FolderItemVerb","features":[354,464]},{"name":"FolderItemVerbs","features":[354,464]},{"name":"FolderItems","features":[354,464]},{"name":"FolderItems2","features":[354,464]},{"name":"FolderItems3","features":[354,464]},{"name":"FolderViewHost","features":[464]},{"name":"FrameworkInputPane","features":[464]},{"name":"FreeSpaceCategorizer","features":[464]},{"name":"GADOF_DIRTY","features":[464]},{"name":"GCS_HELPTEXT","features":[464]},{"name":"GCS_HELPTEXTA","features":[464]},{"name":"GCS_HELPTEXTW","features":[464]},{"name":"GCS_UNICODE","features":[464]},{"name":"GCS_VALIDATE","features":[464]},{"name":"GCS_VALIDATEA","features":[464]},{"name":"GCS_VALIDATEW","features":[464]},{"name":"GCS_VERB","features":[464]},{"name":"GCS_VERBA","features":[464]},{"name":"GCS_VERBICONW","features":[464]},{"name":"GCS_VERBW","features":[464]},{"name":"GCT_INVALID","features":[464]},{"name":"GCT_LFNCHAR","features":[464]},{"name":"GCT_SEPARATOR","features":[464]},{"name":"GCT_SHORTCHAR","features":[464]},{"name":"GCT_WILD","features":[464]},{"name":"GETPROPS_NONE","features":[464]},{"name":"GIL_ASYNC","features":[464]},{"name":"GIL_CHECKSHIELD","features":[464]},{"name":"GIL_DEFAULTICON","features":[464]},{"name":"GIL_DONTCACHE","features":[464]},{"name":"GIL_FORCENOSHIELD","features":[464]},{"name":"GIL_FORSHELL","features":[464]},{"name":"GIL_FORSHORTCUT","features":[464]},{"name":"GIL_NOTFILENAME","features":[464]},{"name":"GIL_OPENICON","features":[464]},{"name":"GIL_PERCLASS","features":[464]},{"name":"GIL_PERINSTANCE","features":[464]},{"name":"GIL_SHIELD","features":[464]},{"name":"GIL_SIMULATEDOC","features":[464]},{"name":"GLOBALCOUNTER_APPLICATION_DESTINATIONS","features":[464]},{"name":"GLOBALCOUNTER_APPROVEDSITES","features":[464]},{"name":"GLOBALCOUNTER_APPSFOLDER_FILETYPEASSOCIATION_COUNTER","features":[464]},{"name":"GLOBALCOUNTER_APP_ITEMS_STATE_STORE_CACHE","features":[464]},{"name":"GLOBALCOUNTER_ASSOCCHANGED","features":[464]},{"name":"GLOBALCOUNTER_BANNERS_DATAMODEL_CACHE_MACHINEWIDE","features":[464]},{"name":"GLOBALCOUNTER_BITBUCKETNUMDELETERS","features":[464]},{"name":"GLOBALCOUNTER_COMMONPLACES_LIST_CACHE","features":[464]},{"name":"GLOBALCOUNTER_FOLDERDEFINITION_CACHE","features":[464]},{"name":"GLOBALCOUNTER_FOLDERSETTINGSCHANGE","features":[464]},{"name":"GLOBALCOUNTER_IEONLY_SESSIONS","features":[464]},{"name":"GLOBALCOUNTER_IESESSIONS","features":[464]},{"name":"GLOBALCOUNTER_INTERNETTOOLBAR_LAYOUT","features":[464]},{"name":"GLOBALCOUNTER_MAXIMUMVALUE","features":[464]},{"name":"GLOBALCOUNTER_OVERLAYMANAGER","features":[464]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE","features":[464]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE_MACHINEWIDE","features":[464]},{"name":"GLOBALCOUNTER_QUERYASSOCIATIONS","features":[464]},{"name":"GLOBALCOUNTER_RATINGS","features":[464]},{"name":"GLOBALCOUNTER_RATINGS_STATECOUNTER","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEBINCORRUPTED","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEBINENUM","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_A","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_B","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_C","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_D","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_E","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_F","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_G","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_H","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_I","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_J","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_K","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_L","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_M","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_N","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_O","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_P","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Q","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_R","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_S","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_T","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_U","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_V","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_W","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_X","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Y","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Z","features":[464]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SHARES","features":[464]},{"name":"GLOBALCOUNTER_RESTRICTIONS","features":[464]},{"name":"GLOBALCOUNTER_SEARCHMANAGER","features":[464]},{"name":"GLOBALCOUNTER_SEARCHOPTIONS","features":[464]},{"name":"GLOBALCOUNTER_SETTINGSYNC_ENABLED","features":[464]},{"name":"GLOBALCOUNTER_SHELLSETTINGSCHANGED","features":[464]},{"name":"GLOBALCOUNTER_SYNC_ENGINE_INFORMATION_CACHE_MACHINEWIDE","features":[464]},{"name":"GLOBALCOUNTER_SYSTEMPIDLCHANGE","features":[464]},{"name":"GLOBALCOUNTER_USERINFOCHANGED","features":[464]},{"name":"GPFIDL_ALTNAME","features":[464]},{"name":"GPFIDL_DEFAULT","features":[464]},{"name":"GPFIDL_FLAGS","features":[464]},{"name":"GPFIDL_UNCPRINTER","features":[464]},{"name":"GenericCredentialProvider","features":[464]},{"name":"GetAcceptLanguagesA","features":[464]},{"name":"GetAcceptLanguagesW","features":[464]},{"name":"GetAllUsersProfileDirectoryA","features":[303,464]},{"name":"GetAllUsersProfileDirectoryW","features":[303,464]},{"name":"GetCurrentProcessExplicitAppUserModelID","features":[464]},{"name":"GetDefaultUserProfileDirectoryA","features":[303,464]},{"name":"GetDefaultUserProfileDirectoryW","features":[303,464]},{"name":"GetDpiForShellUIComponent","features":[464]},{"name":"GetFileNameFromBrowse","features":[303,464]},{"name":"GetMenuContextHelpId","features":[464,365]},{"name":"GetMenuPosFromID","features":[464,365]},{"name":"GetProfileType","features":[303,464]},{"name":"GetProfilesDirectoryA","features":[303,464]},{"name":"GetProfilesDirectoryW","features":[303,464]},{"name":"GetScaleFactorForDevice","features":[631]},{"name":"GetScaleFactorForMonitor","features":[314,631]},{"name":"GetUserProfileDirectoryA","features":[303,464]},{"name":"GetUserProfileDirectoryW","features":[303,464]},{"name":"GetWindowContextHelpId","features":[303,464]},{"name":"GetWindowSubclass","features":[303,464]},{"name":"HDROP","features":[464]},{"name":"HELPINFO","features":[303,464]},{"name":"HELPINFO_MENUITEM","features":[464]},{"name":"HELPINFO_WINDOW","features":[464]},{"name":"HELPWININFOA","features":[464]},{"name":"HELPWININFOW","features":[464]},{"name":"HELP_INFO_TYPE","features":[464]},{"name":"HGSC_DOCUMENTSLIBRARY","features":[464]},{"name":"HGSC_MUSICLIBRARY","features":[464]},{"name":"HGSC_NONE","features":[464]},{"name":"HGSC_PICTURESLIBRARY","features":[464]},{"name":"HGSC_PRINTERS","features":[464]},{"name":"HGSC_VIDEOSLIBRARY","features":[464]},{"name":"HLBWIF_DOCWNDMAXIMIZED","features":[464]},{"name":"HLBWIF_FLAGS","features":[464]},{"name":"HLBWIF_FRAMEWNDMAXIMIZED","features":[464]},{"name":"HLBWIF_HASDOCWNDINFO","features":[464]},{"name":"HLBWIF_HASFRAMEWNDINFO","features":[464]},{"name":"HLBWIF_HASWEBTOOLBARINFO","features":[464]},{"name":"HLBWIF_WEBTOOLBARHIDDEN","features":[464]},{"name":"HLBWINFO","features":[303,464]},{"name":"HLFNAMEF","features":[464]},{"name":"HLFNAMEF_DEFAULT","features":[464]},{"name":"HLFNAMEF_TRYCACHE","features":[464]},{"name":"HLFNAMEF_TRYFULLTARGET","features":[464]},{"name":"HLFNAMEF_TRYPRETTYTARGET","features":[464]},{"name":"HLFNAMEF_TRYWIN95SHORTCUT","features":[464]},{"name":"HLID_CURRENT","features":[464]},{"name":"HLID_INFO","features":[464]},{"name":"HLID_INVALID","features":[464]},{"name":"HLID_NEXT","features":[464]},{"name":"HLID_PREVIOUS","features":[464]},{"name":"HLID_STACKBOTTOM","features":[464]},{"name":"HLID_STACKTOP","features":[464]},{"name":"HLINKGETREF","features":[464]},{"name":"HLINKGETREF_ABSOLUTE","features":[464]},{"name":"HLINKGETREF_DEFAULT","features":[464]},{"name":"HLINKGETREF_RELATIVE","features":[464]},{"name":"HLINKMISC","features":[464]},{"name":"HLINKMISC_RELATIVE","features":[464]},{"name":"HLINKSETF","features":[464]},{"name":"HLINKSETF_LOCATION","features":[464]},{"name":"HLINKSETF_TARGET","features":[464]},{"name":"HLINKWHICHMK","features":[464]},{"name":"HLINKWHICHMK_BASE","features":[464]},{"name":"HLINKWHICHMK_CONTAINER","features":[464]},{"name":"HLINK_E_FIRST","features":[464]},{"name":"HLINK_S_DONTHIDE","features":[464]},{"name":"HLINK_S_FIRST","features":[464]},{"name":"HLITEM","features":[464]},{"name":"HLNF","features":[464]},{"name":"HLNF_ALLOW_AUTONAVIGATE","features":[464]},{"name":"HLNF_CALLERUNTRUSTED","features":[464]},{"name":"HLNF_CREATENOHISTORY","features":[464]},{"name":"HLNF_DISABLEWINDOWRESTRICTIONS","features":[464]},{"name":"HLNF_EXTERNALNAVIGATE","features":[464]},{"name":"HLNF_INTERNALJUMP","features":[464]},{"name":"HLNF_NAVIGATINGBACK","features":[464]},{"name":"HLNF_NAVIGATINGFORWARD","features":[464]},{"name":"HLNF_NAVIGATINGTOSTACKITEM","features":[464]},{"name":"HLNF_NEWWINDOWSMANAGED","features":[464]},{"name":"HLNF_OPENINNEWWINDOW","features":[464]},{"name":"HLNF_TRUSTEDFORACTIVEX","features":[464]},{"name":"HLNF_TRUSTFIRSTDOWNLOAD","features":[464]},{"name":"HLNF_UNTRUSTEDFORDOWNLOAD","features":[464]},{"name":"HLQF_INFO","features":[464]},{"name":"HLQF_ISCURRENT","features":[464]},{"name":"HLQF_ISVALID","features":[464]},{"name":"HLSHORTCUTF","features":[464]},{"name":"HLSHORTCUTF_DEFAULT","features":[464]},{"name":"HLSHORTCUTF_DONTACTUALLYCREATE","features":[464]},{"name":"HLSHORTCUTF_MAYUSEEXISTINGSHORTCUT","features":[464]},{"name":"HLSHORTCUTF_USEFILENAMEFROMFRIENDLYNAME","features":[464]},{"name":"HLSHORTCUTF_USEUNIQUEFILENAME","features":[464]},{"name":"HLSR","features":[464]},{"name":"HLSR_HISTORYFOLDER","features":[464]},{"name":"HLSR_HOME","features":[464]},{"name":"HLSR_SEARCHPAGE","features":[464]},{"name":"HLTBINFO","features":[303,464]},{"name":"HLTB_DOCKEDBOTTOM","features":[464]},{"name":"HLTB_DOCKEDLEFT","features":[464]},{"name":"HLTB_DOCKEDRIGHT","features":[464]},{"name":"HLTB_DOCKEDTOP","features":[464]},{"name":"HLTB_FLOATING","features":[464]},{"name":"HLTB_INFO","features":[464]},{"name":"HLTRANSLATEF","features":[464]},{"name":"HLTRANSLATEF_DEFAULT","features":[464]},{"name":"HLTRANSLATEF_DONTAPPLYDEFAULTPREFIX","features":[464]},{"name":"HMONITOR_UserFree","features":[314,464]},{"name":"HMONITOR_UserFree64","features":[314,464]},{"name":"HMONITOR_UserMarshal","features":[314,464]},{"name":"HMONITOR_UserMarshal64","features":[314,464]},{"name":"HMONITOR_UserSize","features":[314,464]},{"name":"HMONITOR_UserSize64","features":[314,464]},{"name":"HMONITOR_UserUnmarshal","features":[314,464]},{"name":"HMONITOR_UserUnmarshal64","features":[314,464]},{"name":"HOMEGROUPSHARINGCHOICES","features":[464]},{"name":"HOMEGROUP_SECURITY_GROUP","features":[464]},{"name":"HOMEGROUP_SECURITY_GROUP_MULTI","features":[464]},{"name":"HPSXA","features":[464]},{"name":"HashData","features":[464]},{"name":"HideInputPaneAnimationCoordinator","features":[464]},{"name":"HlinkClone","features":[464]},{"name":"HlinkCreateBrowseContext","features":[464]},{"name":"HlinkCreateExtensionServices","features":[303,464]},{"name":"HlinkCreateFromData","features":[354,464]},{"name":"HlinkCreateFromMoniker","features":[354,464]},{"name":"HlinkCreateFromString","features":[464]},{"name":"HlinkCreateShortcut","features":[464]},{"name":"HlinkCreateShortcutFromMoniker","features":[354,464]},{"name":"HlinkCreateShortcutFromString","features":[464]},{"name":"HlinkGetSpecialReference","features":[464]},{"name":"HlinkGetValueFromParams","features":[464]},{"name":"HlinkIsShortcut","features":[464]},{"name":"HlinkNavigate","features":[354,464]},{"name":"HlinkNavigateToStringReference","features":[354,464]},{"name":"HlinkOnNavigate","features":[354,464]},{"name":"HlinkOnRenameDocument","features":[354,464]},{"name":"HlinkParseDisplayName","features":[303,354,464]},{"name":"HlinkPreprocessMoniker","features":[354,464]},{"name":"HlinkQueryCreateFromData","features":[354,464]},{"name":"HlinkResolveMonikerForData","features":[354,464]},{"name":"HlinkResolveShortcut","features":[464]},{"name":"HlinkResolveShortcutToMoniker","features":[354,464]},{"name":"HlinkResolveShortcutToString","features":[464]},{"name":"HlinkResolveStringForData","features":[354,464]},{"name":"HlinkSetSpecialReference","features":[464]},{"name":"HlinkTranslateURL","features":[464]},{"name":"HlinkUpdateStackItem","features":[354,464]},{"name":"HomeGroup","features":[464]},{"name":"IACList","features":[464]},{"name":"IACList2","features":[464]},{"name":"IAccessibilityDockingService","features":[464]},{"name":"IAccessibilityDockingServiceCallback","features":[464]},{"name":"IAccessibleObject","features":[464]},{"name":"IActionProgress","features":[464]},{"name":"IActionProgressDialog","features":[464]},{"name":"IAppActivationUIInfo","features":[464]},{"name":"IAppPublisher","features":[464]},{"name":"IAppVisibility","features":[464]},{"name":"IAppVisibilityEvents","features":[464]},{"name":"IApplicationActivationManager","features":[464]},{"name":"IApplicationAssociationRegistration","features":[464]},{"name":"IApplicationAssociationRegistrationUI","features":[464]},{"name":"IApplicationDesignModeSettings","features":[464]},{"name":"IApplicationDesignModeSettings2","features":[464]},{"name":"IApplicationDestinations","features":[464]},{"name":"IApplicationDocumentLists","features":[464]},{"name":"IAssocHandler","features":[464]},{"name":"IAssocHandlerInvoker","features":[464]},{"name":"IAttachmentExecute","features":[464]},{"name":"IAutoComplete","features":[464]},{"name":"IAutoComplete2","features":[464]},{"name":"IAutoCompleteDropDown","features":[464]},{"name":"IBandHost","features":[464]},{"name":"IBandSite","features":[464]},{"name":"IBannerNotificationHandler","features":[464]},{"name":"IBanneredBar","features":[464]},{"name":"IBrowserFrameOptions","features":[464]},{"name":"IBrowserService","features":[464]},{"name":"IBrowserService2","features":[464]},{"name":"IBrowserService3","features":[464]},{"name":"IBrowserService4","features":[464]},{"name":"ICDBurn","features":[464]},{"name":"ICDBurnExt","features":[464]},{"name":"ICategorizer","features":[464]},{"name":"ICategoryProvider","features":[464]},{"name":"IColumnManager","features":[464]},{"name":"IColumnProvider","features":[464]},{"name":"ICommDlgBrowser","features":[464]},{"name":"ICommDlgBrowser2","features":[464]},{"name":"ICommDlgBrowser3","features":[464]},{"name":"IComputerInfoChangeNotify","features":[464]},{"name":"IConnectableCredentialProviderCredential","features":[464]},{"name":"IContactManagerInterop","features":[464]},{"name":"IContextMenu","features":[464]},{"name":"IContextMenu2","features":[464]},{"name":"IContextMenu3","features":[464]},{"name":"IContextMenuCB","features":[464]},{"name":"IContextMenuSite","features":[464]},{"name":"ICopyHookA","features":[464]},{"name":"ICopyHookW","features":[464]},{"name":"ICreateProcessInputs","features":[464]},{"name":"ICreatingProcess","features":[464]},{"name":"ICredentialProvider","features":[464]},{"name":"ICredentialProviderCredential","features":[464]},{"name":"ICredentialProviderCredential2","features":[464]},{"name":"ICredentialProviderCredentialEvents","features":[464]},{"name":"ICredentialProviderCredentialEvents2","features":[464]},{"name":"ICredentialProviderCredentialWithFieldOptions","features":[464]},{"name":"ICredentialProviderEvents","features":[464]},{"name":"ICredentialProviderFilter","features":[464]},{"name":"ICredentialProviderSetUserArray","features":[464]},{"name":"ICredentialProviderUser","features":[464]},{"name":"ICredentialProviderUserArray","features":[464]},{"name":"ICurrentItem","features":[464]},{"name":"ICurrentWorkingDirectory","features":[464]},{"name":"ICustomDestinationList","features":[464]},{"name":"IDC_OFFLINE_HAND","features":[464]},{"name":"IDC_PANTOOL_HAND_CLOSED","features":[464]},{"name":"IDC_PANTOOL_HAND_OPEN","features":[464]},{"name":"IDD_WIZEXTN_FIRST","features":[464]},{"name":"IDD_WIZEXTN_LAST","features":[464]},{"name":"IDO_SHGIOI_DEFAULT","features":[464]},{"name":"IDO_SHGIOI_LINK","features":[464]},{"name":"IDO_SHGIOI_SHARE","features":[464]},{"name":"IDO_SHGIOI_SLOWFILE","features":[464]},{"name":"IDS_DESCRIPTION","features":[464]},{"name":"ID_APP","features":[464]},{"name":"IDataObjectAsyncCapability","features":[464]},{"name":"IDataObjectProvider","features":[464]},{"name":"IDataTransferManagerInterop","features":[464]},{"name":"IDefaultExtractIconInit","features":[464]},{"name":"IDefaultFolderMenuInitialize","features":[464]},{"name":"IDelegateFolder","features":[464]},{"name":"IDelegateItem","features":[464]},{"name":"IDeskBand","features":[413,464]},{"name":"IDeskBand2","features":[413,464]},{"name":"IDeskBandInfo","features":[464]},{"name":"IDeskBar","features":[413,464]},{"name":"IDeskBarClient","features":[413,464]},{"name":"IDesktopGadget","features":[464]},{"name":"IDesktopWallpaper","features":[464]},{"name":"IDestinationStreamFactory","features":[464]},{"name":"IDisplayItem","features":[464]},{"name":"IDocViewSite","features":[464]},{"name":"IDockingWindow","features":[413,464]},{"name":"IDockingWindowFrame","features":[413,464]},{"name":"IDockingWindowSite","features":[413,464]},{"name":"IDragSourceHelper","features":[464]},{"name":"IDragSourceHelper2","features":[464]},{"name":"IDropTargetHelper","features":[464]},{"name":"IDynamicHWHandler","features":[464]},{"name":"IEIFLAG_ASPECT","features":[464]},{"name":"IEIFLAG_ASYNC","features":[464]},{"name":"IEIFLAG_CACHE","features":[464]},{"name":"IEIFLAG_GLEAM","features":[464]},{"name":"IEIFLAG_NOBORDER","features":[464]},{"name":"IEIFLAG_NOSTAMP","features":[464]},{"name":"IEIFLAG_OFFLINE","features":[464]},{"name":"IEIFLAG_ORIGSIZE","features":[464]},{"name":"IEIFLAG_QUALITY","features":[464]},{"name":"IEIFLAG_REFRESH","features":[464]},{"name":"IEIFLAG_SCREEN","features":[464]},{"name":"IEIT_PRIORITY_NORMAL","features":[464]},{"name":"IEI_PRIORITY_MAX","features":[464]},{"name":"IEI_PRIORITY_MIN","features":[464]},{"name":"IENamespaceTreeControl","features":[464]},{"name":"IEPDNFLAGS","features":[464]},{"name":"IEPDN_BINDINGUI","features":[464]},{"name":"IESHORTCUTFLAGS","features":[464]},{"name":"IESHORTCUT_BACKGROUNDTAB","features":[464]},{"name":"IESHORTCUT_FORCENAVIGATE","features":[464]},{"name":"IESHORTCUT_NEWBROWSER","features":[464]},{"name":"IESHORTCUT_OPENNEWTAB","features":[464]},{"name":"IEnumACString","features":[354,464]},{"name":"IEnumAssocHandlers","features":[464]},{"name":"IEnumExplorerCommand","features":[464]},{"name":"IEnumExtraSearch","features":[464]},{"name":"IEnumFullIDList","features":[464]},{"name":"IEnumHLITEM","features":[464]},{"name":"IEnumIDList","features":[464]},{"name":"IEnumObjects","features":[464]},{"name":"IEnumPublishedApps","features":[464]},{"name":"IEnumReadyCallback","features":[464]},{"name":"IEnumResources","features":[464]},{"name":"IEnumShellItems","features":[464]},{"name":"IEnumSyncMgrConflict","features":[464]},{"name":"IEnumSyncMgrEvents","features":[464]},{"name":"IEnumSyncMgrSyncItems","features":[464]},{"name":"IEnumTravelLogEntry","features":[464]},{"name":"IEnumerableView","features":[464]},{"name":"IExecuteCommand","features":[464]},{"name":"IExecuteCommandApplicationHostEnvironment","features":[464]},{"name":"IExecuteCommandHost","features":[464]},{"name":"IExpDispSupport","features":[464]},{"name":"IExpDispSupportXP","features":[464]},{"name":"IExplorerBrowser","features":[464]},{"name":"IExplorerBrowserEvents","features":[464]},{"name":"IExplorerCommand","features":[464]},{"name":"IExplorerCommandProvider","features":[464]},{"name":"IExplorerCommandState","features":[464]},{"name":"IExplorerPaneVisibility","features":[464]},{"name":"IExtensionServices","features":[464]},{"name":"IExtractIconA","features":[464]},{"name":"IExtractIconW","features":[464]},{"name":"IExtractImage","features":[464]},{"name":"IExtractImage2","features":[464]},{"name":"IFileDialog","features":[464]},{"name":"IFileDialog2","features":[464]},{"name":"IFileDialogControlEvents","features":[464]},{"name":"IFileDialogCustomize","features":[464]},{"name":"IFileDialogEvents","features":[464]},{"name":"IFileIsInUse","features":[464]},{"name":"IFileOpenDialog","features":[464]},{"name":"IFileOperation","features":[464]},{"name":"IFileOperation2","features":[464]},{"name":"IFileOperationProgressSink","features":[464]},{"name":"IFileSaveDialog","features":[464]},{"name":"IFileSearchBand","features":[354,464]},{"name":"IFileSyncMergeHandler","features":[464]},{"name":"IFileSystemBindData","features":[464]},{"name":"IFileSystemBindData2","features":[464]},{"name":"IFolderBandPriv","features":[464]},{"name":"IFolderFilter","features":[464]},{"name":"IFolderFilterSite","features":[464]},{"name":"IFolderView","features":[464]},{"name":"IFolderView2","features":[464]},{"name":"IFolderViewHost","features":[464]},{"name":"IFolderViewOC","features":[354,464]},{"name":"IFolderViewOptions","features":[464]},{"name":"IFolderViewSettings","features":[464]},{"name":"IFrameworkInputPane","features":[464]},{"name":"IFrameworkInputPaneHandler","features":[464]},{"name":"IGetServiceIds","features":[464]},{"name":"IHWEventHandler","features":[464]},{"name":"IHWEventHandler2","features":[464]},{"name":"IHandlerActivationHost","features":[464]},{"name":"IHandlerInfo","features":[464]},{"name":"IHandlerInfo2","features":[464]},{"name":"IHlink","features":[464]},{"name":"IHlinkBrowseContext","features":[464]},{"name":"IHlinkFrame","features":[464]},{"name":"IHlinkSite","features":[464]},{"name":"IHlinkTarget","features":[464]},{"name":"IHomeGroup","features":[464]},{"name":"IIOCancelInformation","features":[464]},{"name":"IIdentityName","features":[464]},{"name":"IImageRecompress","features":[464]},{"name":"IInitializeCommand","features":[464]},{"name":"IInitializeNetworkFolder","features":[464]},{"name":"IInitializeObject","features":[464]},{"name":"IInitializeWithBindCtx","features":[464]},{"name":"IInitializeWithItem","features":[464]},{"name":"IInitializeWithPropertyStore","features":[464]},{"name":"IInitializeWithWindow","features":[464]},{"name":"IInputObject","features":[464]},{"name":"IInputObject2","features":[464]},{"name":"IInputObjectSite","features":[464]},{"name":"IInputPaneAnimationCoordinator","features":[464]},{"name":"IInputPanelConfiguration","features":[464]},{"name":"IInputPanelInvocationConfiguration","features":[464]},{"name":"IInsertItem","features":[464]},{"name":"IItemNameLimits","features":[464]},{"name":"IKnownFolder","features":[464]},{"name":"IKnownFolderManager","features":[464]},{"name":"ILAppendID","features":[303,631]},{"name":"ILClone","features":[631]},{"name":"ILCloneFirst","features":[631]},{"name":"ILCombine","features":[631]},{"name":"ILCreateFromPathA","features":[631]},{"name":"ILCreateFromPathW","features":[631]},{"name":"ILFindChild","features":[631]},{"name":"ILFindLastID","features":[631]},{"name":"ILFree","features":[631]},{"name":"ILGetNext","features":[631]},{"name":"ILGetSize","features":[631]},{"name":"ILIsEqual","features":[303,631]},{"name":"ILIsParent","features":[303,631]},{"name":"ILLoadFromStreamEx","features":[354,631]},{"name":"ILMM_IE4","features":[464]},{"name":"ILRemoveLastID","features":[303,631]},{"name":"ILSaveToStream","features":[354,631]},{"name":"ILaunchSourceAppUserModelId","features":[464]},{"name":"ILaunchSourceViewSizePreference","features":[464]},{"name":"ILaunchTargetMonitor","features":[464]},{"name":"ILaunchTargetViewSizePreference","features":[464]},{"name":"ILaunchUIContext","features":[464]},{"name":"ILaunchUIContextProvider","features":[464]},{"name":"IMM_ACC_DOCKING_E_DOCKOCCUPIED","features":[464]},{"name":"IMM_ACC_DOCKING_E_INSUFFICIENTHEIGHT","features":[464]},{"name":"IMSC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[464]},{"name":"IMenuBand","features":[464]},{"name":"IMenuPopup","features":[413,464]},{"name":"IModalWindow","features":[464]},{"name":"INTERNET_MAX_PATH_LENGTH","features":[464]},{"name":"INTERNET_MAX_SCHEME_LENGTH","features":[464]},{"name":"INameSpaceTreeAccessible","features":[464]},{"name":"INameSpaceTreeControl","features":[464]},{"name":"INameSpaceTreeControl2","features":[464]},{"name":"INameSpaceTreeControlCustomDraw","features":[464]},{"name":"INameSpaceTreeControlDropHandler","features":[464]},{"name":"INameSpaceTreeControlEvents","features":[464]},{"name":"INameSpaceTreeControlFolderCapabilities","features":[464]},{"name":"INamedPropertyBag","features":[464]},{"name":"INamespaceWalk","features":[464]},{"name":"INamespaceWalkCB","features":[464]},{"name":"INamespaceWalkCB2","features":[464]},{"name":"INetworkFolderInternal","features":[464]},{"name":"INewMenuClient","features":[464]},{"name":"INewShortcutHookA","features":[464]},{"name":"INewShortcutHookW","features":[464]},{"name":"INewWDEvents","features":[354,464]},{"name":"INewWindowManager","features":[464]},{"name":"INotifyReplica","features":[464]},{"name":"IObjMgr","features":[464]},{"name":"IObjectProvider","features":[464]},{"name":"IObjectWithAppUserModelID","features":[464]},{"name":"IObjectWithBackReferences","features":[464]},{"name":"IObjectWithCancelEvent","features":[464]},{"name":"IObjectWithFolderEnumMode","features":[464]},{"name":"IObjectWithProgID","features":[464]},{"name":"IObjectWithSelection","features":[464]},{"name":"IOpenControlPanel","features":[464]},{"name":"IOpenSearchSource","features":[464]},{"name":"IOperationsProgressDialog","features":[464]},{"name":"IPackageDebugSettings","features":[464]},{"name":"IPackageDebugSettings2","features":[464]},{"name":"IPackageExecutionStateChangeNotification","features":[464]},{"name":"IParentAndItem","features":[464]},{"name":"IParseAndCreateItem","features":[464]},{"name":"IPersistFolder","features":[354,464]},{"name":"IPersistFolder2","features":[354,464]},{"name":"IPersistFolder3","features":[354,464]},{"name":"IPersistIDList","features":[354,464]},{"name":"IPreviewHandler","features":[464]},{"name":"IPreviewHandlerFrame","features":[464]},{"name":"IPreviewHandlerVisuals","features":[464]},{"name":"IPreviewItem","features":[464]},{"name":"IPreviousVersionsInfo","features":[464]},{"name":"IProfferService","features":[464]},{"name":"IProgressDialog","features":[464]},{"name":"IPropertyKeyStore","features":[464]},{"name":"IPublishedApp","features":[464]},{"name":"IPublishedApp2","features":[464]},{"name":"IPublishingWizard","features":[464]},{"name":"IQueryAssociations","features":[464]},{"name":"IQueryCancelAutoPlay","features":[464]},{"name":"IQueryCodePage","features":[464]},{"name":"IQueryContinue","features":[464]},{"name":"IQueryContinueWithStatus","features":[464]},{"name":"IQueryInfo","features":[464]},{"name":"IRTIR_TASK_FINISHED","features":[464]},{"name":"IRTIR_TASK_NOT_RUNNING","features":[464]},{"name":"IRTIR_TASK_PENDING","features":[464]},{"name":"IRTIR_TASK_RUNNING","features":[464]},{"name":"IRTIR_TASK_SUSPENDED","features":[464]},{"name":"IRegTreeItem","features":[464]},{"name":"IRelatedItem","features":[464]},{"name":"IRemoteComputer","features":[464]},{"name":"IResolveShellLink","features":[464]},{"name":"IResultsFolder","features":[464]},{"name":"IRunnableTask","features":[464]},{"name":"ISFBVIEWMODE_LARGEICONS","features":[464]},{"name":"ISFBVIEWMODE_LOGOS","features":[464]},{"name":"ISFBVIEWMODE_SMALLICONS","features":[464]},{"name":"ISFB_MASK_BKCOLOR","features":[464]},{"name":"ISFB_MASK_COLORS","features":[464]},{"name":"ISFB_MASK_IDLIST","features":[464]},{"name":"ISFB_MASK_SHELLFOLDER","features":[464]},{"name":"ISFB_MASK_STATE","features":[464]},{"name":"ISFB_MASK_VIEWMODE","features":[464]},{"name":"ISFB_STATE_ALLOWRENAME","features":[464]},{"name":"ISFB_STATE_BTNMINSIZE","features":[464]},{"name":"ISFB_STATE_CHANNELBAR","features":[464]},{"name":"ISFB_STATE_DEBOSSED","features":[464]},{"name":"ISFB_STATE_DEFAULT","features":[464]},{"name":"ISFB_STATE_FULLOPEN","features":[464]},{"name":"ISFB_STATE_NONAMESORT","features":[464]},{"name":"ISFB_STATE_NOSHOWTEXT","features":[464]},{"name":"ISFB_STATE_QLINKSMODE","features":[464]},{"name":"ISHCUTCMDID_COMMITHISTORY","features":[464]},{"name":"ISHCUTCMDID_DOWNLOADICON","features":[464]},{"name":"ISHCUTCMDID_INTSHORTCUTCREATE","features":[464]},{"name":"ISHCUTCMDID_SETUSERAWURL","features":[464]},{"name":"ISIOI_ICONFILE","features":[464]},{"name":"ISIOI_ICONINDEX","features":[464]},{"name":"IS_E_EXEC_FAILED","features":[464]},{"name":"IS_FULLSCREEN","features":[464]},{"name":"IS_NORMAL","features":[464]},{"name":"IS_SPLIT","features":[464]},{"name":"IScriptErrorList","features":[354,464]},{"name":"ISearchBoxInfo","features":[464]},{"name":"ISearchContext","features":[464]},{"name":"ISearchFolderItemFactory","features":[464]},{"name":"ISharedBitmap","features":[464]},{"name":"ISharingConfigurationManager","features":[464]},{"name":"IShellApp","features":[464]},{"name":"IShellBrowser","features":[413,464]},{"name":"IShellChangeNotify","features":[464]},{"name":"IShellDetails","features":[464]},{"name":"IShellDispatch","features":[354,464]},{"name":"IShellDispatch2","features":[354,464]},{"name":"IShellDispatch3","features":[354,464]},{"name":"IShellDispatch4","features":[354,464]},{"name":"IShellDispatch5","features":[354,464]},{"name":"IShellDispatch6","features":[354,464]},{"name":"IShellExtInit","features":[464]},{"name":"IShellFavoritesNameSpace","features":[354,464]},{"name":"IShellFolder","features":[464]},{"name":"IShellFolder2","features":[464]},{"name":"IShellFolderBand","features":[464]},{"name":"IShellFolderView","features":[464]},{"name":"IShellFolderViewCB","features":[464]},{"name":"IShellFolderViewDual","features":[354,464]},{"name":"IShellFolderViewDual2","features":[354,464]},{"name":"IShellFolderViewDual3","features":[354,464]},{"name":"IShellIcon","features":[464]},{"name":"IShellIconOverlay","features":[464]},{"name":"IShellIconOverlayIdentifier","features":[464]},{"name":"IShellIconOverlayManager","features":[464]},{"name":"IShellImageData","features":[464]},{"name":"IShellImageDataAbort","features":[464]},{"name":"IShellImageDataFactory","features":[464]},{"name":"IShellItem","features":[464]},{"name":"IShellItem2","features":[464]},{"name":"IShellItemArray","features":[464]},{"name":"IShellItemFilter","features":[464]},{"name":"IShellItemImageFactory","features":[464]},{"name":"IShellItemResources","features":[464]},{"name":"IShellLibrary","features":[464]},{"name":"IShellLinkA","features":[464]},{"name":"IShellLinkDataList","features":[464]},{"name":"IShellLinkDual","features":[354,464]},{"name":"IShellLinkDual2","features":[354,464]},{"name":"IShellLinkW","features":[464]},{"name":"IShellMenu","features":[464]},{"name":"IShellMenuCallback","features":[464]},{"name":"IShellNameSpace","features":[354,464]},{"name":"IShellPropSheetExt","features":[464]},{"name":"IShellRunDll","features":[464]},{"name":"IShellService","features":[464]},{"name":"IShellTaskScheduler","features":[464]},{"name":"IShellUIHelper","features":[354,464]},{"name":"IShellUIHelper2","features":[354,464]},{"name":"IShellUIHelper3","features":[354,464]},{"name":"IShellUIHelper4","features":[354,464]},{"name":"IShellUIHelper5","features":[354,464]},{"name":"IShellUIHelper6","features":[354,464]},{"name":"IShellUIHelper7","features":[354,464]},{"name":"IShellUIHelper8","features":[354,464]},{"name":"IShellUIHelper9","features":[354,464]},{"name":"IShellView","features":[413,464]},{"name":"IShellView2","features":[413,464]},{"name":"IShellView3","features":[413,464]},{"name":"IShellWindows","features":[354,464]},{"name":"ISortColumnArray","features":[464]},{"name":"IStartMenuPinnedList","features":[464]},{"name":"IStorageProviderBanners","features":[464]},{"name":"IStorageProviderCopyHook","features":[464]},{"name":"IStorageProviderHandler","features":[464]},{"name":"IStorageProviderPropertyHandler","features":[464]},{"name":"IStreamAsync","features":[354,464]},{"name":"IStreamUnbufferedInfo","features":[464]},{"name":"IStream_Copy","features":[354,464]},{"name":"IStream_Read","features":[354,464]},{"name":"IStream_ReadPidl","features":[354,631]},{"name":"IStream_ReadStr","features":[354,464]},{"name":"IStream_Reset","features":[354,464]},{"name":"IStream_Size","features":[354,464]},{"name":"IStream_Write","features":[354,464]},{"name":"IStream_WritePidl","features":[354,631]},{"name":"IStream_WriteStr","features":[354,464]},{"name":"ISuspensionDependencyManager","features":[464]},{"name":"ISyncMgrConflict","features":[464]},{"name":"ISyncMgrConflictFolder","features":[464]},{"name":"ISyncMgrConflictItems","features":[464]},{"name":"ISyncMgrConflictPresenter","features":[464]},{"name":"ISyncMgrConflictResolutionItems","features":[464]},{"name":"ISyncMgrConflictResolveInfo","features":[464]},{"name":"ISyncMgrConflictStore","features":[464]},{"name":"ISyncMgrControl","features":[464]},{"name":"ISyncMgrEnumItems","features":[464]},{"name":"ISyncMgrEvent","features":[464]},{"name":"ISyncMgrEventLinkUIOperation","features":[464]},{"name":"ISyncMgrEventStore","features":[464]},{"name":"ISyncMgrHandler","features":[464]},{"name":"ISyncMgrHandlerCollection","features":[464]},{"name":"ISyncMgrHandlerInfo","features":[464]},{"name":"ISyncMgrRegister","features":[464]},{"name":"ISyncMgrResolutionHandler","features":[464]},{"name":"ISyncMgrScheduleWizardUIOperation","features":[464]},{"name":"ISyncMgrSessionCreator","features":[464]},{"name":"ISyncMgrSyncCallback","features":[464]},{"name":"ISyncMgrSyncItem","features":[464]},{"name":"ISyncMgrSyncItemContainer","features":[464]},{"name":"ISyncMgrSyncItemInfo","features":[464]},{"name":"ISyncMgrSyncResult","features":[464]},{"name":"ISyncMgrSynchronize","features":[464]},{"name":"ISyncMgrSynchronizeCallback","features":[464]},{"name":"ISyncMgrSynchronizeInvoke","features":[464]},{"name":"ISyncMgrUIOperation","features":[464]},{"name":"ITEMSPACING","features":[464]},{"name":"ITSAT_DEFAULT_PRIORITY","features":[464]},{"name":"ITSAT_MAX_PRIORITY","features":[464]},{"name":"ITSAT_MIN_PRIORITY","features":[464]},{"name":"ITSSFLAG_COMPLETE_ON_DESTROY","features":[464]},{"name":"ITSSFLAG_FLAGS_MASK","features":[464]},{"name":"ITSSFLAG_KILL_ON_DESTROY","features":[464]},{"name":"ITSS_THREAD_TIMEOUT_NO_CHANGE","features":[464]},{"name":"ITaskbarList","features":[464]},{"name":"ITaskbarList2","features":[464]},{"name":"ITaskbarList3","features":[464]},{"name":"ITaskbarList4","features":[464]},{"name":"IThumbnailCache","features":[464]},{"name":"IThumbnailCachePrimer","features":[464]},{"name":"IThumbnailCapture","features":[464]},{"name":"IThumbnailHandlerFactory","features":[464]},{"name":"IThumbnailProvider","features":[464]},{"name":"IThumbnailSettings","features":[464]},{"name":"IThumbnailStreamCache","features":[464]},{"name":"ITrackShellMenu","features":[464]},{"name":"ITranscodeImage","features":[464]},{"name":"ITransferAdviseSink","features":[464]},{"name":"ITransferDestination","features":[464]},{"name":"ITransferMediumItem","features":[464]},{"name":"ITransferSource","features":[464]},{"name":"ITravelEntry","features":[464]},{"name":"ITravelLog","features":[464]},{"name":"ITravelLogClient","features":[464]},{"name":"ITravelLogEntry","features":[464]},{"name":"ITravelLogStg","features":[464]},{"name":"ITrayDeskBand","features":[464]},{"name":"IURLSearchHook","features":[464]},{"name":"IURLSearchHook2","features":[464]},{"name":"IURL_INVOKECOMMAND_FLAGS","features":[464]},{"name":"IURL_INVOKECOMMAND_FL_ALLOW_UI","features":[464]},{"name":"IURL_INVOKECOMMAND_FL_ASYNCOK","features":[464]},{"name":"IURL_INVOKECOMMAND_FL_DDEWAIT","features":[464]},{"name":"IURL_INVOKECOMMAND_FL_LOG_USAGE","features":[464]},{"name":"IURL_INVOKECOMMAND_FL_USE_DEFAULT_VERB","features":[464]},{"name":"IURL_SETURL_FLAGS","features":[464]},{"name":"IURL_SETURL_FL_GUESS_PROTOCOL","features":[464]},{"name":"IURL_SETURL_FL_USE_DEFAULT_PROTOCOL","features":[464]},{"name":"IUniformResourceLocatorA","features":[464]},{"name":"IUniformResourceLocatorW","features":[464]},{"name":"IUnknown_AtomicRelease","features":[464]},{"name":"IUnknown_GetSite","features":[464]},{"name":"IUnknown_GetWindow","features":[303,464]},{"name":"IUnknown_QueryService","features":[464]},{"name":"IUnknown_Set","features":[464]},{"name":"IUnknown_SetSite","features":[464]},{"name":"IUpdateIDList","features":[464]},{"name":"IUseToBrowseItem","features":[464]},{"name":"IUserAccountChangeCallback","features":[464]},{"name":"IUserNotification","features":[464]},{"name":"IUserNotification2","features":[464]},{"name":"IUserNotificationCallback","features":[464]},{"name":"IViewStateIdentityItem","features":[464]},{"name":"IVirtualDesktopManager","features":[464]},{"name":"IVisualProperties","features":[464]},{"name":"IWebBrowser","features":[354,464]},{"name":"IWebBrowser2","features":[354,464]},{"name":"IWebBrowserApp","features":[354,464]},{"name":"IWebWizardExtension","features":[464]},{"name":"IWebWizardHost","features":[354,464]},{"name":"IWebWizardHost2","features":[354,464]},{"name":"IWizardExtension","features":[464]},{"name":"IWizardSite","features":[464]},{"name":"Identity_LocalUserProvider","features":[464]},{"name":"ImageProperties","features":[464]},{"name":"ImageRecompress","features":[464]},{"name":"ImageTranscode","features":[464]},{"name":"ImportPrivacySettings","features":[303,464]},{"name":"InitNetworkAddressControl","features":[303,464]},{"name":"InitPropVariantFromStrRet","features":[631]},{"name":"InitVariantFromStrRet","features":[631]},{"name":"InputPanelConfiguration","features":[464]},{"name":"InternetExplorer","features":[464]},{"name":"InternetExplorerMedium","features":[464]},{"name":"InternetPrintOrdering","features":[464]},{"name":"IntlStrEqWorkerA","features":[303,464]},{"name":"IntlStrEqWorkerW","features":[303,464]},{"name":"IsCharSpaceA","features":[303,464]},{"name":"IsCharSpaceW","features":[303,464]},{"name":"IsInternetESCEnabled","features":[303,464]},{"name":"IsLFNDriveA","features":[303,464]},{"name":"IsLFNDriveW","features":[303,464]},{"name":"IsNetDrive","features":[464]},{"name":"IsOS","features":[303,464]},{"name":"IsUserAnAdmin","features":[303,464]},{"name":"ItemCount_Property_GUID","features":[464]},{"name":"ItemIndex_Property_GUID","features":[464]},{"name":"KDC_FREQUENT","features":[464]},{"name":"KDC_RECENT","features":[464]},{"name":"KFDF_LOCAL_REDIRECT_ONLY","features":[464]},{"name":"KFDF_NO_REDIRECT_UI","features":[464]},{"name":"KFDF_PRECREATE","features":[464]},{"name":"KFDF_PUBLISHEXPANDEDPATH","features":[464]},{"name":"KFDF_ROAMABLE","features":[464]},{"name":"KFDF_STREAM","features":[464]},{"name":"KF_CATEGORY","features":[464]},{"name":"KF_CATEGORY_COMMON","features":[464]},{"name":"KF_CATEGORY_FIXED","features":[464]},{"name":"KF_CATEGORY_PERUSER","features":[464]},{"name":"KF_CATEGORY_VIRTUAL","features":[464]},{"name":"KF_FLAG_ALIAS_ONLY","features":[464]},{"name":"KF_FLAG_CREATE","features":[464]},{"name":"KF_FLAG_DEFAULT","features":[464]},{"name":"KF_FLAG_DEFAULT_PATH","features":[464]},{"name":"KF_FLAG_DONT_UNEXPAND","features":[464]},{"name":"KF_FLAG_DONT_VERIFY","features":[464]},{"name":"KF_FLAG_FORCE_APPCONTAINER_REDIRECTION","features":[464]},{"name":"KF_FLAG_FORCE_APP_DATA_REDIRECTION","features":[464]},{"name":"KF_FLAG_FORCE_PACKAGE_REDIRECTION","features":[464]},{"name":"KF_FLAG_INIT","features":[464]},{"name":"KF_FLAG_NOT_PARENT_RELATIVE","features":[464]},{"name":"KF_FLAG_NO_ALIAS","features":[464]},{"name":"KF_FLAG_NO_APPCONTAINER_REDIRECTION","features":[464]},{"name":"KF_FLAG_NO_PACKAGE_REDIRECTION","features":[464]},{"name":"KF_FLAG_RETURN_FILTER_REDIRECTION_TARGET","features":[464]},{"name":"KF_FLAG_SIMPLE_IDLIST","features":[464]},{"name":"KF_REDIRECTION_CAPABILITIES_ALLOW_ALL","features":[464]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_ALL","features":[464]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_PERMISSIONS","features":[464]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY","features":[464]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY_REDIRECTED","features":[464]},{"name":"KF_REDIRECTION_CAPABILITIES_REDIRECTABLE","features":[464]},{"name":"KF_REDIRECT_CHECK_ONLY","features":[464]},{"name":"KF_REDIRECT_COPY_CONTENTS","features":[464]},{"name":"KF_REDIRECT_COPY_SOURCE_DACL","features":[464]},{"name":"KF_REDIRECT_DEL_SOURCE_CONTENTS","features":[464]},{"name":"KF_REDIRECT_EXCLUDE_ALL_KNOWN_SUBFOLDERS","features":[464]},{"name":"KF_REDIRECT_OWNER_USER","features":[464]},{"name":"KF_REDIRECT_PIN","features":[464]},{"name":"KF_REDIRECT_SET_OWNER_EXPLICIT","features":[464]},{"name":"KF_REDIRECT_UNPIN","features":[464]},{"name":"KF_REDIRECT_USER_EXCLUSIVE","features":[464]},{"name":"KF_REDIRECT_WITH_UI","features":[464]},{"name":"KNOWNDESTCATEGORY","features":[464]},{"name":"KNOWNFOLDER_DEFINITION","features":[464]},{"name":"KNOWN_FOLDER_FLAG","features":[464]},{"name":"KnownFolderManager","features":[464]},{"name":"LFF_ALLITEMS","features":[464]},{"name":"LFF_FORCEFILESYSTEM","features":[464]},{"name":"LFF_STORAGEITEMS","features":[464]},{"name":"LIBRARYFOLDERFILTER","features":[464]},{"name":"LIBRARYMANAGEDIALOGOPTIONS","features":[464]},{"name":"LIBRARYOPTIONFLAGS","features":[464]},{"name":"LIBRARYSAVEFLAGS","features":[464]},{"name":"LIBRARY_E_NO_ACCESSIBLE_LOCATION","features":[464]},{"name":"LIBRARY_E_NO_SAVE_LOCATION","features":[464]},{"name":"LINK_E_DELETE","features":[464]},{"name":"LMD_ALLOWUNINDEXABLENETWORKLOCATIONS","features":[464]},{"name":"LMD_DEFAULT","features":[464]},{"name":"LOF_DEFAULT","features":[464]},{"name":"LOF_MASK_ALL","features":[464]},{"name":"LOF_PINNEDTONAVPANE","features":[464]},{"name":"LPFNDFMCALLBACK","features":[303,354,464]},{"name":"LPFNVIEWCALLBACK","features":[303,413,464]},{"name":"LSF_FAILIFTHERE","features":[464]},{"name":"LSF_MAKEUNIQUENAME","features":[464]},{"name":"LSF_OVERRIDEEXISTING","features":[464]},{"name":"LoadUserProfileA","features":[303,464]},{"name":"LoadUserProfileW","features":[303,464]},{"name":"LocalThumbnailCache","features":[464]},{"name":"MAV_APP_VISIBLE","features":[464]},{"name":"MAV_NO_APP_VISIBLE","features":[464]},{"name":"MAV_UNKNOWN","features":[464]},{"name":"MAXFILELEN","features":[464]},{"name":"MAX_COLUMN_DESC_LEN","features":[464]},{"name":"MAX_COLUMN_NAME_LEN","features":[464]},{"name":"MAX_SYNCMGRHANDLERNAME","features":[464]},{"name":"MAX_SYNCMGRITEMNAME","features":[464]},{"name":"MAX_SYNCMGR_ID","features":[464]},{"name":"MAX_SYNCMGR_NAME","features":[464]},{"name":"MAX_SYNCMGR_PROGRESSTEXT","features":[464]},{"name":"MBHANDCID_PIDLSELECT","features":[464]},{"name":"MENUBANDHANDLERCID","features":[464]},{"name":"MENUPOPUPPOPUPFLAGS","features":[464]},{"name":"MENUPOPUPSELECT","features":[464]},{"name":"MERGE_UPDATE_STATUS","features":[464]},{"name":"MIMEASSOCDLG_FL_REGISTER_ASSOC","features":[464]},{"name":"MIMEASSOCIATIONDIALOG_IN_FLAGS","features":[464]},{"name":"MM_ADDSEPARATOR","features":[464]},{"name":"MM_DONTREMOVESEPS","features":[464]},{"name":"MM_FLAGS","features":[464]},{"name":"MM_SUBMENUSHAVEIDS","features":[464]},{"name":"MONITOR_APP_VISIBILITY","features":[464]},{"name":"MPOS_CANCELLEVEL","features":[464]},{"name":"MPOS_CHILDTRACKING","features":[464]},{"name":"MPOS_EXECUTE","features":[464]},{"name":"MPOS_FULLCANCEL","features":[464]},{"name":"MPOS_SELECTLEFT","features":[464]},{"name":"MPOS_SELECTRIGHT","features":[464]},{"name":"MPPF_ALIGN_LEFT","features":[464]},{"name":"MPPF_ALIGN_RIGHT","features":[464]},{"name":"MPPF_BOTTOM","features":[464]},{"name":"MPPF_FINALSELECT","features":[464]},{"name":"MPPF_FORCEZORDER","features":[464]},{"name":"MPPF_INITIALSELECT","features":[464]},{"name":"MPPF_KEYBOARD","features":[464]},{"name":"MPPF_LEFT","features":[464]},{"name":"MPPF_NOANIMATE","features":[464]},{"name":"MPPF_POS_MASK","features":[464]},{"name":"MPPF_REPOSITION","features":[464]},{"name":"MPPF_RIGHT","features":[464]},{"name":"MPPF_SETFOCUS","features":[464]},{"name":"MPPF_TOP","features":[464]},{"name":"MULTIKEYHELPA","features":[464]},{"name":"MULTIKEYHELPW","features":[464]},{"name":"MUS_COMPLETE","features":[464]},{"name":"MUS_FAILED","features":[464]},{"name":"MUS_USERINPUTNEEDED","features":[464]},{"name":"MailRecipient","features":[464]},{"name":"MergedCategorizer","features":[464]},{"name":"NAMESPACEWALKFLAG","features":[464]},{"name":"NATIVE_DISPLAY_ORIENTATION","features":[464]},{"name":"NCM_DISPLAYERRORTIP","features":[464]},{"name":"NCM_GETADDRESS","features":[464]},{"name":"NCM_GETALLOWTYPE","features":[464]},{"name":"NCM_SETALLOWTYPE","features":[464]},{"name":"NC_ADDRESS","features":[442,316,464]},{"name":"NDO_LANDSCAPE","features":[464]},{"name":"NDO_PORTRAIT","features":[464]},{"name":"NETCACHE_E_NEGATIVE_CACHE","features":[464]},{"name":"NEWCPLINFOA","features":[464,365]},{"name":"NEWCPLINFOW","features":[464,365]},{"name":"NIF_GUID","features":[464]},{"name":"NIF_ICON","features":[464]},{"name":"NIF_INFO","features":[464]},{"name":"NIF_MESSAGE","features":[464]},{"name":"NIF_REALTIME","features":[464]},{"name":"NIF_SHOWTIP","features":[464]},{"name":"NIF_STATE","features":[464]},{"name":"NIF_TIP","features":[464]},{"name":"NIIF_ERROR","features":[464]},{"name":"NIIF_ICON_MASK","features":[464]},{"name":"NIIF_INFO","features":[464]},{"name":"NIIF_LARGE_ICON","features":[464]},{"name":"NIIF_NONE","features":[464]},{"name":"NIIF_NOSOUND","features":[464]},{"name":"NIIF_RESPECT_QUIET_TIME","features":[464]},{"name":"NIIF_USER","features":[464]},{"name":"NIIF_WARNING","features":[464]},{"name":"NIM_ADD","features":[464]},{"name":"NIM_DELETE","features":[464]},{"name":"NIM_MODIFY","features":[464]},{"name":"NIM_SETFOCUS","features":[464]},{"name":"NIM_SETVERSION","features":[464]},{"name":"NINF_KEY","features":[464]},{"name":"NIN_BALLOONHIDE","features":[464]},{"name":"NIN_BALLOONSHOW","features":[464]},{"name":"NIN_BALLOONTIMEOUT","features":[464]},{"name":"NIN_BALLOONUSERCLICK","features":[464]},{"name":"NIN_POPUPCLOSE","features":[464]},{"name":"NIN_POPUPOPEN","features":[464]},{"name":"NIN_SELECT","features":[464]},{"name":"NIS_HIDDEN","features":[464]},{"name":"NIS_SHAREDICON","features":[464]},{"name":"NMCII_FOLDERS","features":[464]},{"name":"NMCII_ITEMS","features":[464]},{"name":"NMCII_NONE","features":[464]},{"name":"NMCSAEI_EDIT","features":[464]},{"name":"NMCSAEI_SELECT","features":[464]},{"name":"NOTIFYICONDATAA","features":[303,464,365]},{"name":"NOTIFYICONDATAA","features":[303,464,365]},{"name":"NOTIFYICONDATAW","features":[303,464,365]},{"name":"NOTIFYICONDATAW","features":[303,464,365]},{"name":"NOTIFYICONIDENTIFIER","features":[303,464]},{"name":"NOTIFYICONIDENTIFIER","features":[303,464]},{"name":"NOTIFYICON_VERSION","features":[464]},{"name":"NOTIFYICON_VERSION_4","features":[464]},{"name":"NOTIFY_ICON_DATA_FLAGS","features":[464]},{"name":"NOTIFY_ICON_INFOTIP_FLAGS","features":[464]},{"name":"NOTIFY_ICON_MESSAGE","features":[464]},{"name":"NOTIFY_ICON_STATE","features":[464]},{"name":"NPCredentialProvider","features":[464]},{"name":"NRESARRAY","features":[454,464]},{"name":"NSTCCUSTOMDRAW","features":[353,464]},{"name":"NSTCDHPOS_ONTOP","features":[464]},{"name":"NSTCECT_BUTTON","features":[464]},{"name":"NSTCECT_DBLCLICK","features":[464]},{"name":"NSTCECT_LBUTTON","features":[464]},{"name":"NSTCECT_MBUTTON","features":[464]},{"name":"NSTCECT_RBUTTON","features":[464]},{"name":"NSTCEHT_NOWHERE","features":[464]},{"name":"NSTCEHT_ONITEM","features":[464]},{"name":"NSTCEHT_ONITEMBUTTON","features":[464]},{"name":"NSTCEHT_ONITEMICON","features":[464]},{"name":"NSTCEHT_ONITEMINDENT","features":[464]},{"name":"NSTCEHT_ONITEMLABEL","features":[464]},{"name":"NSTCEHT_ONITEMRIGHT","features":[464]},{"name":"NSTCEHT_ONITEMSTATEICON","features":[464]},{"name":"NSTCEHT_ONITEMTABBUTTON","features":[464]},{"name":"NSTCFC_DELAY_REGISTER_NOTIFY","features":[464]},{"name":"NSTCFC_NONE","features":[464]},{"name":"NSTCFC_PINNEDITEMFILTERING","features":[464]},{"name":"NSTCFOLDERCAPABILITIES","features":[464]},{"name":"NSTCGNI","features":[464]},{"name":"NSTCGNI_CHILD","features":[464]},{"name":"NSTCGNI_FIRSTVISIBLE","features":[464]},{"name":"NSTCGNI_LASTVISIBLE","features":[464]},{"name":"NSTCGNI_NEXT","features":[464]},{"name":"NSTCGNI_NEXTVISIBLE","features":[464]},{"name":"NSTCGNI_PARENT","features":[464]},{"name":"NSTCGNI_PREV","features":[464]},{"name":"NSTCGNI_PREVVISIBLE","features":[464]},{"name":"NSTCIS_BOLD","features":[464]},{"name":"NSTCIS_DISABLED","features":[464]},{"name":"NSTCIS_EXPANDED","features":[464]},{"name":"NSTCIS_NONE","features":[464]},{"name":"NSTCIS_SELECTED","features":[464]},{"name":"NSTCIS_SELECTEDNOEXPAND","features":[464]},{"name":"NSTCRS_EXPANDED","features":[464]},{"name":"NSTCRS_HIDDEN","features":[464]},{"name":"NSTCRS_VISIBLE","features":[464]},{"name":"NSTCS2_DEFAULT","features":[464]},{"name":"NSTCS2_DISPLAYPADDING","features":[464]},{"name":"NSTCS2_DISPLAYPINNEDONLY","features":[464]},{"name":"NSTCS2_INTERRUPTNOTIFICATIONS","features":[464]},{"name":"NSTCS2_SHOWNULLSPACEMENU","features":[464]},{"name":"NSTCSTYLE2","features":[464]},{"name":"NSTCS_ALLOWJUNCTIONS","features":[464]},{"name":"NSTCS_AUTOHSCROLL","features":[464]},{"name":"NSTCS_BORDER","features":[464]},{"name":"NSTCS_CHECKBOXES","features":[464]},{"name":"NSTCS_DIMMEDCHECKBOXES","features":[464]},{"name":"NSTCS_DISABLEDRAGDROP","features":[464]},{"name":"NSTCS_EMPTYTEXT","features":[464]},{"name":"NSTCS_EVENHEIGHT","features":[464]},{"name":"NSTCS_EXCLUSIONCHECKBOXES","features":[464]},{"name":"NSTCS_FADEINOUTEXPANDOS","features":[464]},{"name":"NSTCS_FAVORITESMODE","features":[464]},{"name":"NSTCS_FULLROWSELECT","features":[464]},{"name":"NSTCS_HASEXPANDOS","features":[464]},{"name":"NSTCS_HASLINES","features":[464]},{"name":"NSTCS_HORIZONTALSCROLL","features":[464]},{"name":"NSTCS_NOEDITLABELS","features":[464]},{"name":"NSTCS_NOINDENTCHECKS","features":[464]},{"name":"NSTCS_NOINFOTIP","features":[464]},{"name":"NSTCS_NOORDERSTREAM","features":[464]},{"name":"NSTCS_NOREPLACEOPEN","features":[464]},{"name":"NSTCS_PARTIALCHECKBOXES","features":[464]},{"name":"NSTCS_RICHTOOLTIP","features":[464]},{"name":"NSTCS_ROOTHASEXPANDO","features":[464]},{"name":"NSTCS_SHOWDELETEBUTTON","features":[464]},{"name":"NSTCS_SHOWREFRESHBUTTON","features":[464]},{"name":"NSTCS_SHOWSELECTIONALWAYS","features":[464]},{"name":"NSTCS_SHOWTABSBUTTON","features":[464]},{"name":"NSTCS_SINGLECLICKEXPAND","features":[464]},{"name":"NSTCS_SPRINGEXPAND","features":[464]},{"name":"NSTCS_TABSTOP","features":[464]},{"name":"NSWF_ACCUMULATE_FOLDERS","features":[464]},{"name":"NSWF_ANY_IMPLIES_ALL","features":[464]},{"name":"NSWF_ASYNC","features":[464]},{"name":"NSWF_DEFAULT","features":[464]},{"name":"NSWF_DONT_ACCUMULATE_RESULT","features":[464]},{"name":"NSWF_DONT_RESOLVE_LINKS","features":[464]},{"name":"NSWF_DONT_SORT","features":[464]},{"name":"NSWF_DONT_TRAVERSE_LINKS","features":[464]},{"name":"NSWF_DONT_TRAVERSE_STREAM_JUNCTIONS","features":[464]},{"name":"NSWF_FILESYSTEM_ONLY","features":[464]},{"name":"NSWF_FLAG_VIEWORDER","features":[464]},{"name":"NSWF_IGNORE_AUTOPLAY_HIDA","features":[464]},{"name":"NSWF_NONE_IMPLIES_ALL","features":[464]},{"name":"NSWF_ONE_IMPLIES_ALL","features":[464]},{"name":"NSWF_SHOW_PROGRESS","features":[464]},{"name":"NSWF_TRAVERSE_STREAM_JUNCTIONS","features":[464]},{"name":"NSWF_USE_TRANSFER_MEDIUM","features":[464]},{"name":"NTSCS2_NEVERINSERTNONENUMERATED","features":[464]},{"name":"NTSCS2_NOSINGLETONAUTOEXPAND","features":[464]},{"name":"NT_CONSOLE_PROPS","features":[303,368,464]},{"name":"NT_CONSOLE_PROPS_SIG","features":[464]},{"name":"NT_FE_CONSOLE_PROPS","features":[464]},{"name":"NT_FE_CONSOLE_PROPS_SIG","features":[464]},{"name":"NUM_POINTS","features":[464]},{"name":"NWMF","features":[464]},{"name":"NWMF_FIRST","features":[464]},{"name":"NWMF_FORCETAB","features":[464]},{"name":"NWMF_FORCEWINDOW","features":[464]},{"name":"NWMF_FROMDIALOGCHILD","features":[464]},{"name":"NWMF_HTMLDIALOG","features":[464]},{"name":"NWMF_INACTIVETAB","features":[464]},{"name":"NWMF_OVERRIDEKEY","features":[464]},{"name":"NWMF_SHOWHELP","features":[464]},{"name":"NWMF_SUGGESTTAB","features":[464]},{"name":"NWMF_SUGGESTWINDOW","features":[464]},{"name":"NWMF_UNLOADING","features":[464]},{"name":"NWMF_USERALLOWED","features":[464]},{"name":"NWMF_USERINITED","features":[464]},{"name":"NWMF_USERREQUESTED","features":[464]},{"name":"NamespaceTreeControl","features":[464]},{"name":"NamespaceWalker","features":[464]},{"name":"NetworkConnections","features":[464]},{"name":"NetworkExplorerFolder","features":[464]},{"name":"NetworkPlaces","features":[464]},{"name":"NewProcessCauseConstants","features":[464]},{"name":"OAIF_ALLOW_REGISTRATION","features":[464]},{"name":"OAIF_EXEC","features":[464]},{"name":"OAIF_FILE_IS_URI","features":[464]},{"name":"OAIF_FORCE_REGISTRATION","features":[464]},{"name":"OAIF_HIDE_REGISTRATION","features":[464]},{"name":"OAIF_REGISTER_EXT","features":[464]},{"name":"OAIF_URL_PROTOCOL","features":[464]},{"name":"OFASI_EDIT","features":[464]},{"name":"OFASI_OPENDESKTOP","features":[464]},{"name":"OFFLINE_STATUS_INCOMPLETE","features":[464]},{"name":"OFFLINE_STATUS_LOCAL","features":[464]},{"name":"OFFLINE_STATUS_REMOTE","features":[464]},{"name":"OFS_DIRTYCACHE","features":[464]},{"name":"OFS_INACTIVE","features":[464]},{"name":"OFS_OFFLINE","features":[464]},{"name":"OFS_ONLINE","features":[464]},{"name":"OFS_SERVERBACK","features":[464]},{"name":"OF_CAP_CANCLOSE","features":[464]},{"name":"OF_CAP_CANSWITCHTO","features":[464]},{"name":"OI_ASYNC","features":[464]},{"name":"OI_DEFAULT","features":[464]},{"name":"OPENASINFO","features":[464]},{"name":"OPENPROPS_INHIBITPIF","features":[464]},{"name":"OPENPROPS_NONE","features":[464]},{"name":"OPEN_AS_INFO_FLAGS","features":[464]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[303,464]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[303,464]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[303,464]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[303,464]},{"name":"OPPROGDLG_ALLOWUNDO","features":[464]},{"name":"OPPROGDLG_DEFAULT","features":[464]},{"name":"OPPROGDLG_DONTDISPLAYDESTPATH","features":[464]},{"name":"OPPROGDLG_DONTDISPLAYLOCATIONS","features":[464]},{"name":"OPPROGDLG_DONTDISPLAYSOURCEPATH","features":[464]},{"name":"OPPROGDLG_ENABLEPAUSE","features":[464]},{"name":"OPPROGDLG_NOMULTIDAYESTIMATES","features":[464]},{"name":"OS","features":[464]},{"name":"OS_ADVSERVER","features":[464]},{"name":"OS_ANYSERVER","features":[464]},{"name":"OS_APPLIANCE","features":[464]},{"name":"OS_DATACENTER","features":[464]},{"name":"OS_DOMAINMEMBER","features":[464]},{"name":"OS_EMBEDDED","features":[464]},{"name":"OS_FASTUSERSWITCHING","features":[464]},{"name":"OS_HOME","features":[464]},{"name":"OS_MEDIACENTER","features":[464]},{"name":"OS_MEORGREATER","features":[464]},{"name":"OS_NT","features":[464]},{"name":"OS_NT4ORGREATER","features":[464]},{"name":"OS_PERSONALTERMINALSERVER","features":[464]},{"name":"OS_PROFESSIONAL","features":[464]},{"name":"OS_SERVER","features":[464]},{"name":"OS_SERVERADMINUI","features":[464]},{"name":"OS_SMALLBUSINESSSERVER","features":[464]},{"name":"OS_TABLETPC","features":[464]},{"name":"OS_TERMINALCLIENT","features":[464]},{"name":"OS_TERMINALREMOTEADMIN","features":[464]},{"name":"OS_TERMINALSERVER","features":[464]},{"name":"OS_WEBSERVER","features":[464]},{"name":"OS_WELCOMELOGONUI","features":[464]},{"name":"OS_WIN2000ADVSERVER","features":[464]},{"name":"OS_WIN2000DATACENTER","features":[464]},{"name":"OS_WIN2000ORGREATER","features":[464]},{"name":"OS_WIN2000PRO","features":[464]},{"name":"OS_WIN2000SERVER","features":[464]},{"name":"OS_WIN2000TERMINAL","features":[464]},{"name":"OS_WIN95ORGREATER","features":[464]},{"name":"OS_WIN95_GOLD","features":[464]},{"name":"OS_WIN98ORGREATER","features":[464]},{"name":"OS_WIN98_GOLD","features":[464]},{"name":"OS_WINDOWS","features":[464]},{"name":"OS_WOW6432","features":[464]},{"name":"OS_XPORGREATER","features":[464]},{"name":"OfflineFolderStatus","features":[464]},{"name":"OleSaveToStreamEx","features":[303,354,464]},{"name":"OnexCredentialProvider","features":[464]},{"name":"OnexPlapSmartcardCredentialProvider","features":[464]},{"name":"OpenControlPanel","features":[464]},{"name":"OpenRegStream","features":[354,364,464]},{"name":"PACKAGE_EXECUTION_STATE","features":[464]},{"name":"PAI_ASSIGNEDTIME","features":[464]},{"name":"PAI_EXPIRETIME","features":[464]},{"name":"PAI_PUBLISHEDTIME","features":[464]},{"name":"PAI_SCHEDULEDTIME","features":[464]},{"name":"PAI_SOURCE","features":[464]},{"name":"PANE_NAVIGATION","features":[464]},{"name":"PANE_NONE","features":[464]},{"name":"PANE_OFFLINE","features":[464]},{"name":"PANE_PRINTER","features":[464]},{"name":"PANE_PRIVACY","features":[464]},{"name":"PANE_PROGRESS","features":[464]},{"name":"PANE_SSL","features":[464]},{"name":"PANE_ZONE","features":[464]},{"name":"PAPPCONSTRAIN_CHANGE_ROUTINE","features":[303,464]},{"name":"PAPPCONSTRAIN_REGISTRATION","features":[464]},{"name":"PAPPSTATE_CHANGE_ROUTINE","features":[303,464]},{"name":"PAPPSTATE_REGISTRATION","features":[464]},{"name":"PARSEDURLA","features":[464]},{"name":"PARSEDURLW","features":[464]},{"name":"PATHCCH_ALLOW_LONG_PATHS","features":[464]},{"name":"PATHCCH_CANONICALIZE_SLASHES","features":[464]},{"name":"PATHCCH_DO_NOT_NORMALIZE_SEGMENTS","features":[464]},{"name":"PATHCCH_ENSURE_IS_EXTENDED_LENGTH_PATH","features":[464]},{"name":"PATHCCH_ENSURE_TRAILING_SLASH","features":[464]},{"name":"PATHCCH_FORCE_DISABLE_LONG_NAME_PROCESS","features":[464]},{"name":"PATHCCH_FORCE_ENABLE_LONG_NAME_PROCESS","features":[464]},{"name":"PATHCCH_MAX_CCH","features":[464]},{"name":"PATHCCH_NONE","features":[464]},{"name":"PATHCCH_OPTIONS","features":[464]},{"name":"PCS_FATAL","features":[464]},{"name":"PCS_PATHTOOLONG","features":[464]},{"name":"PCS_REMOVEDCHAR","features":[464]},{"name":"PCS_REPLACEDCHAR","features":[464]},{"name":"PCS_RET","features":[464]},{"name":"PCS_TRUNCATED","features":[464]},{"name":"PDM_DEFAULT","features":[464]},{"name":"PDM_ERRORSBLOCKING","features":[464]},{"name":"PDM_INDETERMINATE","features":[464]},{"name":"PDM_PREFLIGHT","features":[464]},{"name":"PDM_RUN","features":[464]},{"name":"PDM_UNDOING","features":[464]},{"name":"PDTIMER_PAUSE","features":[464]},{"name":"PDTIMER_RESET","features":[464]},{"name":"PDTIMER_RESUME","features":[464]},{"name":"PERSIST_FOLDER_TARGET_INFO","features":[631]},{"name":"PES_RUNNING","features":[464]},{"name":"PES_SUSPENDED","features":[464]},{"name":"PES_SUSPENDING","features":[464]},{"name":"PES_TERMINATED","features":[464]},{"name":"PES_UNKNOWN","features":[464]},{"name":"PFNCANSHAREFOLDERW","features":[464]},{"name":"PFNSHOWSHAREFOLDERUIW","features":[303,464]},{"name":"PIDASI_AVG_DATA_RATE","features":[464]},{"name":"PIDASI_CHANNEL_COUNT","features":[464]},{"name":"PIDASI_COMPRESSION","features":[464]},{"name":"PIDASI_FORMAT","features":[464]},{"name":"PIDASI_SAMPLE_RATE","features":[464]},{"name":"PIDASI_SAMPLE_SIZE","features":[464]},{"name":"PIDASI_STREAM_NAME","features":[464]},{"name":"PIDASI_STREAM_NUMBER","features":[464]},{"name":"PIDASI_TIMELENGTH","features":[464]},{"name":"PIDDRSI_DESCRIPTION","features":[464]},{"name":"PIDDRSI_PLAYCOUNT","features":[464]},{"name":"PIDDRSI_PLAYEXPIRES","features":[464]},{"name":"PIDDRSI_PLAYSTARTS","features":[464]},{"name":"PIDDRSI_PROTECTED","features":[464]},{"name":"PIDISF_CACHEDSTICKY","features":[464]},{"name":"PIDISF_CACHEIMAGES","features":[464]},{"name":"PIDISF_FLAGS","features":[464]},{"name":"PIDISF_FOLLOWALLLINKS","features":[464]},{"name":"PIDISF_RECENTLYCHANGED","features":[464]},{"name":"PIDISM_DONTWATCH","features":[464]},{"name":"PIDISM_GLOBAL","features":[464]},{"name":"PIDISM_OPTIONS","features":[464]},{"name":"PIDISM_WATCH","features":[464]},{"name":"PIDISR_INFO","features":[464]},{"name":"PIDISR_NEEDS_ADD","features":[464]},{"name":"PIDISR_NEEDS_DELETE","features":[464]},{"name":"PIDISR_NEEDS_UPDATE","features":[464]},{"name":"PIDISR_UP_TO_DATE","features":[464]},{"name":"PIDSI_ALBUM","features":[464]},{"name":"PIDSI_ARTIST","features":[464]},{"name":"PIDSI_COMMENT","features":[464]},{"name":"PIDSI_GENRE","features":[464]},{"name":"PIDSI_LYRICS","features":[464]},{"name":"PIDSI_SONGTITLE","features":[464]},{"name":"PIDSI_TRACK","features":[464]},{"name":"PIDSI_YEAR","features":[464]},{"name":"PIDVSI_COMPRESSION","features":[464]},{"name":"PIDVSI_DATA_RATE","features":[464]},{"name":"PIDVSI_FRAME_COUNT","features":[464]},{"name":"PIDVSI_FRAME_HEIGHT","features":[464]},{"name":"PIDVSI_FRAME_RATE","features":[464]},{"name":"PIDVSI_FRAME_WIDTH","features":[464]},{"name":"PIDVSI_SAMPLE_SIZE","features":[464]},{"name":"PIDVSI_STREAM_NAME","features":[464]},{"name":"PIDVSI_STREAM_NUMBER","features":[464]},{"name":"PIDVSI_TIMELENGTH","features":[464]},{"name":"PID_COMPUTERNAME","features":[464]},{"name":"PID_CONTROLPANEL_CATEGORY","features":[464]},{"name":"PID_DESCRIPTIONID","features":[464]},{"name":"PID_DISPLACED_DATE","features":[464]},{"name":"PID_DISPLACED_FROM","features":[464]},{"name":"PID_DISPLAY_PROPERTIES","features":[464]},{"name":"PID_FINDDATA","features":[464]},{"name":"PID_HTMLINFOTIPFILE","features":[464]},{"name":"PID_INTROTEXT","features":[464]},{"name":"PID_INTSITE","features":[464]},{"name":"PID_INTSITE_AUTHOR","features":[464]},{"name":"PID_INTSITE_CODEPAGE","features":[464]},{"name":"PID_INTSITE_COMMENT","features":[464]},{"name":"PID_INTSITE_CONTENTCODE","features":[464]},{"name":"PID_INTSITE_CONTENTLEN","features":[464]},{"name":"PID_INTSITE_DESCRIPTION","features":[464]},{"name":"PID_INTSITE_FLAGS","features":[464]},{"name":"PID_INTSITE_ICONFILE","features":[464]},{"name":"PID_INTSITE_ICONINDEX","features":[464]},{"name":"PID_INTSITE_LASTMOD","features":[464]},{"name":"PID_INTSITE_LASTVISIT","features":[464]},{"name":"PID_INTSITE_RECURSE","features":[464]},{"name":"PID_INTSITE_ROAMED","features":[464]},{"name":"PID_INTSITE_SUBSCRIPTION","features":[464]},{"name":"PID_INTSITE_TITLE","features":[464]},{"name":"PID_INTSITE_TRACKING","features":[464]},{"name":"PID_INTSITE_URL","features":[464]},{"name":"PID_INTSITE_VISITCOUNT","features":[464]},{"name":"PID_INTSITE_WATCH","features":[464]},{"name":"PID_INTSITE_WHATSNEW","features":[464]},{"name":"PID_IS","features":[464]},{"name":"PID_IS_AUTHOR","features":[464]},{"name":"PID_IS_COMMENT","features":[464]},{"name":"PID_IS_DESCRIPTION","features":[464]},{"name":"PID_IS_HOTKEY","features":[464]},{"name":"PID_IS_ICONFILE","features":[464]},{"name":"PID_IS_ICONINDEX","features":[464]},{"name":"PID_IS_NAME","features":[464]},{"name":"PID_IS_ROAMED","features":[464]},{"name":"PID_IS_SHOWCMD","features":[464]},{"name":"PID_IS_URL","features":[464]},{"name":"PID_IS_WHATSNEW","features":[464]},{"name":"PID_IS_WORKINGDIR","features":[464]},{"name":"PID_LINK_TARGET","features":[464]},{"name":"PID_LINK_TARGET_TYPE","features":[464]},{"name":"PID_MISC_ACCESSCOUNT","features":[464]},{"name":"PID_MISC_OWNER","features":[464]},{"name":"PID_MISC_PICS","features":[464]},{"name":"PID_MISC_STATUS","features":[464]},{"name":"PID_NETRESOURCE","features":[464]},{"name":"PID_NETWORKLOCATION","features":[464]},{"name":"PID_QUERY_RANK","features":[464]},{"name":"PID_SHARE_CSC_STATUS","features":[464]},{"name":"PID_SYNC_COPY_IN","features":[464]},{"name":"PID_VOLUME_CAPACITY","features":[464]},{"name":"PID_VOLUME_FILESYSTEM","features":[464]},{"name":"PID_VOLUME_FREE","features":[464]},{"name":"PID_WHICHFOLDER","features":[464]},{"name":"PIFDEFFILESIZE","features":[464]},{"name":"PIFDEFPATHSIZE","features":[464]},{"name":"PIFMAXFILEPATH","features":[464]},{"name":"PIFNAMESIZE","features":[464]},{"name":"PIFPARAMSSIZE","features":[464]},{"name":"PIFSHDATASIZE","features":[464]},{"name":"PIFSHPROGSIZE","features":[464]},{"name":"PIFSTARTLOCSIZE","features":[464]},{"name":"PINLogonCredentialProvider","features":[464]},{"name":"PLATFORM_BROWSERONLY","features":[464]},{"name":"PLATFORM_IE3","features":[464]},{"name":"PLATFORM_INTEGRATED","features":[464]},{"name":"PLATFORM_UNKNOWN","features":[464]},{"name":"PMSF_DONT_STRIP_SPACES","features":[464]},{"name":"PMSF_MULTIPLE","features":[464]},{"name":"PMSF_NORMAL","features":[464]},{"name":"PO_DELETE","features":[464]},{"name":"PO_PORTCHANGE","features":[464]},{"name":"PO_RENAME","features":[464]},{"name":"PO_REN_PORT","features":[464]},{"name":"PPCF_ADDARGUMENTS","features":[464]},{"name":"PPCF_ADDQUOTES","features":[464]},{"name":"PPCF_FORCEQUALIFY","features":[464]},{"name":"PPCF_LONGESTPOSSIBLE","features":[464]},{"name":"PPCF_NODIRECTORIES","features":[464]},{"name":"PREVIEWHANDLERFRAMEINFO","features":[464,365]},{"name":"PRF_DONTFINDLNK","features":[464]},{"name":"PRF_FIRSTDIRDEF","features":[464]},{"name":"PRF_FLAGS","features":[464]},{"name":"PRF_REQUIREABSOLUTE","features":[464]},{"name":"PRF_TRYPROGRAMEXTENSIONS","features":[464]},{"name":"PRF_VERIFYEXISTS","features":[464]},{"name":"PRINTACTION_DOCUMENTDEFAULTS","features":[464]},{"name":"PRINTACTION_NETINSTALL","features":[464]},{"name":"PRINTACTION_NETINSTALLLINK","features":[464]},{"name":"PRINTACTION_OPEN","features":[464]},{"name":"PRINTACTION_OPENNETPRN","features":[464]},{"name":"PRINTACTION_PROPERTIES","features":[464]},{"name":"PRINTACTION_SERVERPROPERTIES","features":[464]},{"name":"PRINTACTION_TESTPAGE","features":[464]},{"name":"PRINT_PROP_FORCE_NAME","features":[464]},{"name":"PROFILEINFOA","features":[303,464]},{"name":"PROFILEINFOW","features":[303,464]},{"name":"PROGDLG_AUTOTIME","features":[464]},{"name":"PROGDLG_MARQUEEPROGRESS","features":[464]},{"name":"PROGDLG_MODAL","features":[464]},{"name":"PROGDLG_NOCANCEL","features":[464]},{"name":"PROGDLG_NOMINIMIZE","features":[464]},{"name":"PROGDLG_NOPROGRESSBAR","features":[464]},{"name":"PROGDLG_NORMAL","features":[464]},{"name":"PROGDLG_NOTIME","features":[464]},{"name":"PROPSTR_EXTENSIONCOMPLETIONSTATE","features":[464]},{"name":"PROP_CONTRACT_DELEGATE","features":[464]},{"name":"PSGUID_AUDIO","features":[464]},{"name":"PSGUID_BRIEFCASE","features":[464]},{"name":"PSGUID_CONTROLPANEL","features":[464]},{"name":"PSGUID_CUSTOMIMAGEPROPERTIES","features":[464]},{"name":"PSGUID_DISPLACED","features":[464]},{"name":"PSGUID_DOCUMENTSUMMARYINFORMATION","features":[464]},{"name":"PSGUID_DRM","features":[464]},{"name":"PSGUID_IMAGEPROPERTIES","features":[464]},{"name":"PSGUID_IMAGESUMMARYINFORMATION","features":[464]},{"name":"PSGUID_LIBRARYPROPERTIES","features":[464]},{"name":"PSGUID_LINK","features":[464]},{"name":"PSGUID_MEDIAFILESUMMARYINFORMATION","features":[464]},{"name":"PSGUID_MISC","features":[464]},{"name":"PSGUID_MUSIC","features":[464]},{"name":"PSGUID_QUERY_D","features":[464]},{"name":"PSGUID_SHARE","features":[464]},{"name":"PSGUID_SHELLDETAILS","features":[464]},{"name":"PSGUID_SUMMARYINFORMATION","features":[464]},{"name":"PSGUID_VIDEO","features":[464]},{"name":"PSGUID_VOLUME","features":[464]},{"name":"PSGUID_WEBVIEW","features":[464]},{"name":"PUBAPPINFO","features":[303,464]},{"name":"PUBAPPINFOFLAGS","features":[464]},{"name":"PackageDebugSettings","features":[464]},{"name":"ParseURLA","features":[464]},{"name":"ParseURLW","features":[464]},{"name":"PasswordCredentialProvider","features":[464]},{"name":"PathAddBackslashA","features":[464]},{"name":"PathAddBackslashW","features":[464]},{"name":"PathAddExtensionA","features":[303,464]},{"name":"PathAddExtensionW","features":[303,464]},{"name":"PathAllocCanonicalize","features":[464]},{"name":"PathAllocCombine","features":[464]},{"name":"PathAppendA","features":[303,464]},{"name":"PathAppendW","features":[303,464]},{"name":"PathBuildRootA","features":[464]},{"name":"PathBuildRootW","features":[464]},{"name":"PathCanonicalizeA","features":[303,464]},{"name":"PathCanonicalizeW","features":[303,464]},{"name":"PathCchAddBackslash","features":[464]},{"name":"PathCchAddBackslashEx","features":[464]},{"name":"PathCchAddExtension","features":[464]},{"name":"PathCchAppend","features":[464]},{"name":"PathCchAppendEx","features":[464]},{"name":"PathCchCanonicalize","features":[464]},{"name":"PathCchCanonicalizeEx","features":[464]},{"name":"PathCchCombine","features":[464]},{"name":"PathCchCombineEx","features":[464]},{"name":"PathCchFindExtension","features":[464]},{"name":"PathCchIsRoot","features":[303,464]},{"name":"PathCchRemoveBackslash","features":[464]},{"name":"PathCchRemoveBackslashEx","features":[464]},{"name":"PathCchRemoveExtension","features":[464]},{"name":"PathCchRemoveFileSpec","features":[464]},{"name":"PathCchRenameExtension","features":[464]},{"name":"PathCchSkipRoot","features":[464]},{"name":"PathCchStripPrefix","features":[464]},{"name":"PathCchStripToRoot","features":[464]},{"name":"PathCleanupSpec","features":[464]},{"name":"PathCombineA","features":[464]},{"name":"PathCombineW","features":[464]},{"name":"PathCommonPrefixA","features":[464]},{"name":"PathCommonPrefixW","features":[464]},{"name":"PathCompactPathA","features":[303,314,464]},{"name":"PathCompactPathExA","features":[303,464]},{"name":"PathCompactPathExW","features":[303,464]},{"name":"PathCompactPathW","features":[303,314,464]},{"name":"PathCreateFromUrlA","features":[464]},{"name":"PathCreateFromUrlAlloc","features":[464]},{"name":"PathCreateFromUrlW","features":[464]},{"name":"PathFileExistsA","features":[303,464]},{"name":"PathFileExistsW","features":[303,464]},{"name":"PathFindExtensionA","features":[464]},{"name":"PathFindExtensionW","features":[464]},{"name":"PathFindFileNameA","features":[464]},{"name":"PathFindFileNameW","features":[464]},{"name":"PathFindNextComponentA","features":[464]},{"name":"PathFindNextComponentW","features":[464]},{"name":"PathFindOnPathA","features":[303,464]},{"name":"PathFindOnPathW","features":[303,464]},{"name":"PathFindSuffixArrayA","features":[464]},{"name":"PathFindSuffixArrayW","features":[464]},{"name":"PathGetArgsA","features":[464]},{"name":"PathGetArgsW","features":[464]},{"name":"PathGetCharTypeA","features":[464]},{"name":"PathGetCharTypeW","features":[464]},{"name":"PathGetDriveNumberA","features":[464]},{"name":"PathGetDriveNumberW","features":[464]},{"name":"PathGetShortPath","features":[464]},{"name":"PathIsContentTypeA","features":[303,464]},{"name":"PathIsContentTypeW","features":[303,464]},{"name":"PathIsDirectoryA","features":[303,464]},{"name":"PathIsDirectoryEmptyA","features":[303,464]},{"name":"PathIsDirectoryEmptyW","features":[303,464]},{"name":"PathIsDirectoryW","features":[303,464]},{"name":"PathIsExe","features":[303,464]},{"name":"PathIsFileSpecA","features":[303,464]},{"name":"PathIsFileSpecW","features":[303,464]},{"name":"PathIsLFNFileSpecA","features":[303,464]},{"name":"PathIsLFNFileSpecW","features":[303,464]},{"name":"PathIsNetworkPathA","features":[303,464]},{"name":"PathIsNetworkPathW","features":[303,464]},{"name":"PathIsPrefixA","features":[303,464]},{"name":"PathIsPrefixW","features":[303,464]},{"name":"PathIsRelativeA","features":[303,464]},{"name":"PathIsRelativeW","features":[303,464]},{"name":"PathIsRootA","features":[303,464]},{"name":"PathIsRootW","features":[303,464]},{"name":"PathIsSameRootA","features":[303,464]},{"name":"PathIsSameRootW","features":[303,464]},{"name":"PathIsSlowA","features":[303,464]},{"name":"PathIsSlowW","features":[303,464]},{"name":"PathIsSystemFolderA","features":[303,464]},{"name":"PathIsSystemFolderW","features":[303,464]},{"name":"PathIsUNCA","features":[303,464]},{"name":"PathIsUNCEx","features":[303,464]},{"name":"PathIsUNCServerA","features":[303,464]},{"name":"PathIsUNCServerShareA","features":[303,464]},{"name":"PathIsUNCServerShareW","features":[303,464]},{"name":"PathIsUNCServerW","features":[303,464]},{"name":"PathIsUNCW","features":[303,464]},{"name":"PathIsURLA","features":[303,464]},{"name":"PathIsURLW","features":[303,464]},{"name":"PathMakePrettyA","features":[303,464]},{"name":"PathMakePrettyW","features":[303,464]},{"name":"PathMakeSystemFolderA","features":[303,464]},{"name":"PathMakeSystemFolderW","features":[303,464]},{"name":"PathMakeUniqueName","features":[303,464]},{"name":"PathMatchSpecA","features":[303,464]},{"name":"PathMatchSpecExA","features":[464]},{"name":"PathMatchSpecExW","features":[464]},{"name":"PathMatchSpecW","features":[303,464]},{"name":"PathParseIconLocationA","features":[464]},{"name":"PathParseIconLocationW","features":[464]},{"name":"PathQualify","features":[464]},{"name":"PathQuoteSpacesA","features":[303,464]},{"name":"PathQuoteSpacesW","features":[303,464]},{"name":"PathRelativePathToA","features":[303,464]},{"name":"PathRelativePathToW","features":[303,464]},{"name":"PathRemoveArgsA","features":[464]},{"name":"PathRemoveArgsW","features":[464]},{"name":"PathRemoveBackslashA","features":[464]},{"name":"PathRemoveBackslashW","features":[464]},{"name":"PathRemoveBlanksA","features":[464]},{"name":"PathRemoveBlanksW","features":[464]},{"name":"PathRemoveExtensionA","features":[464]},{"name":"PathRemoveExtensionW","features":[464]},{"name":"PathRemoveFileSpecA","features":[303,464]},{"name":"PathRemoveFileSpecW","features":[303,464]},{"name":"PathRenameExtensionA","features":[303,464]},{"name":"PathRenameExtensionW","features":[303,464]},{"name":"PathResolve","features":[464]},{"name":"PathSearchAndQualifyA","features":[303,464]},{"name":"PathSearchAndQualifyW","features":[303,464]},{"name":"PathSetDlgItemPathA","features":[303,464]},{"name":"PathSetDlgItemPathW","features":[303,464]},{"name":"PathSkipRootA","features":[464]},{"name":"PathSkipRootW","features":[464]},{"name":"PathStripPathA","features":[464]},{"name":"PathStripPathW","features":[464]},{"name":"PathStripToRootA","features":[303,464]},{"name":"PathStripToRootW","features":[303,464]},{"name":"PathUnExpandEnvStringsA","features":[303,464]},{"name":"PathUnExpandEnvStringsW","features":[303,464]},{"name":"PathUndecorateA","features":[464]},{"name":"PathUndecorateW","features":[464]},{"name":"PathUnmakeSystemFolderA","features":[303,464]},{"name":"PathUnmakeSystemFolderW","features":[303,464]},{"name":"PathUnquoteSpacesA","features":[303,464]},{"name":"PathUnquoteSpacesW","features":[303,464]},{"name":"PathYetAnotherMakeUniqueName","features":[303,464]},{"name":"PickIconDlg","features":[303,464]},{"name":"PreviousVersions","features":[464]},{"name":"PropVariantToStrRet","features":[631]},{"name":"PropertiesUI","features":[464]},{"name":"ProtectedModeRedirect","features":[464]},{"name":"PublishDropTarget","features":[464]},{"name":"PublishingWizard","features":[464]},{"name":"QCMINFO","features":[464,365]},{"name":"QCMINFO_IDMAP","features":[464]},{"name":"QCMINFO_IDMAP_PLACEMENT","features":[464]},{"name":"QCMINFO_PLACE_AFTER","features":[464]},{"name":"QCMINFO_PLACE_BEFORE","features":[464]},{"name":"QIF_CACHED","features":[464]},{"name":"QIF_DONTEXPANDFOLDER","features":[464]},{"name":"QISearch","features":[464]},{"name":"QITAB","features":[464]},{"name":"QITIPF_DEFAULT","features":[464]},{"name":"QITIPF_FLAGS","features":[464]},{"name":"QITIPF_LINKNOTARGET","features":[464]},{"name":"QITIPF_LINKUSETARGET","features":[464]},{"name":"QITIPF_SINGLELINE","features":[464]},{"name":"QITIPF_USENAME","features":[464]},{"name":"QITIPF_USESLOWTIP","features":[464]},{"name":"QUERY_USER_NOTIFICATION_STATE","features":[464]},{"name":"QUNS_ACCEPTS_NOTIFICATIONS","features":[464]},{"name":"QUNS_APP","features":[464]},{"name":"QUNS_BUSY","features":[464]},{"name":"QUNS_NOT_PRESENT","features":[464]},{"name":"QUNS_PRESENTATION_MODE","features":[464]},{"name":"QUNS_QUIET_TIME","features":[464]},{"name":"QUNS_RUNNING_D3D_FULL_SCREEN","features":[464]},{"name":"QueryCancelAutoPlay","features":[464]},{"name":"RASProvider","features":[464]},{"name":"REFRESH_COMPLETELY","features":[464]},{"name":"REFRESH_IFEXPIRED","features":[464]},{"name":"REFRESH_NORMAL","features":[464]},{"name":"RESTRICTIONS","features":[464]},{"name":"REST_ALLOWBITBUCKDRIVES","features":[464]},{"name":"REST_ALLOWCOMMENTTOGGLE","features":[464]},{"name":"REST_ALLOWFILECLSIDJUNCTIONS","features":[464]},{"name":"REST_ALLOWLEGACYWEBVIEW","features":[464]},{"name":"REST_ALLOWUNHASHEDWEBVIEW","features":[464]},{"name":"REST_ARP_DONTGROUPPATCHES","features":[464]},{"name":"REST_ARP_NOADDPAGE","features":[464]},{"name":"REST_ARP_NOARP","features":[464]},{"name":"REST_ARP_NOCHOOSEPROGRAMSPAGE","features":[464]},{"name":"REST_ARP_NOREMOVEPAGE","features":[464]},{"name":"REST_ARP_NOWINSETUPPAGE","features":[464]},{"name":"REST_ARP_ShowPostSetup","features":[464]},{"name":"REST_BITBUCKCONFIRMDELETE","features":[464]},{"name":"REST_BITBUCKNOPROP","features":[464]},{"name":"REST_BITBUCKNUKEONDELETE","features":[464]},{"name":"REST_CLASSICSHELL","features":[464]},{"name":"REST_CLEARRECENTDOCSONEXIT","features":[464]},{"name":"REST_DISALLOWCPL","features":[464]},{"name":"REST_DISALLOWRUN","features":[464]},{"name":"REST_DONTRETRYBADNETNAME","features":[464]},{"name":"REST_DONTSHOWSUPERHIDDEN","features":[464]},{"name":"REST_ENFORCESHELLEXTSECURITY","features":[464]},{"name":"REST_ENUMWORKGROUP","features":[464]},{"name":"REST_FORCEACTIVEDESKTOPON","features":[464]},{"name":"REST_FORCECOPYACLWITHFILE","features":[464]},{"name":"REST_FORCESTARTMENULOGOFF","features":[464]},{"name":"REST_GREYMSIADS","features":[464]},{"name":"REST_HASFINDCOMPUTERS","features":[464]},{"name":"REST_HIDECLOCK","features":[464]},{"name":"REST_HIDERUNASVERB","features":[464]},{"name":"REST_INHERITCONSOLEHANDLES","features":[464]},{"name":"REST_INTELLIMENUS","features":[464]},{"name":"REST_LINKRESOLVEIGNORELINKINFO","features":[464]},{"name":"REST_MYCOMPNOPROP","features":[464]},{"name":"REST_MYDOCSNOPROP","features":[464]},{"name":"REST_MYDOCSONNET","features":[464]},{"name":"REST_MaxRecentDocs","features":[464]},{"name":"REST_NOACTIVEDESKTOP","features":[464]},{"name":"REST_NOACTIVEDESKTOPCHANGES","features":[464]},{"name":"REST_NOADDDESKCOMP","features":[464]},{"name":"REST_NOAUTOTRAYNOTIFY","features":[464]},{"name":"REST_NOCDBURNING","features":[464]},{"name":"REST_NOCHANGEMAPPEDDRIVECOMMENT","features":[464]},{"name":"REST_NOCHANGEMAPPEDDRIVELABEL","features":[464]},{"name":"REST_NOCHANGESTARMENU","features":[464]},{"name":"REST_NOCHANGINGWALLPAPER","features":[464]},{"name":"REST_NOCLOSE","features":[464]},{"name":"REST_NOCLOSEDESKCOMP","features":[464]},{"name":"REST_NOCLOSE_DRAGDROPBAND","features":[464]},{"name":"REST_NOCOLORCHOICE","features":[464]},{"name":"REST_NOCOMMONGROUPS","features":[464]},{"name":"REST_NOCONTROLPANEL","features":[464]},{"name":"REST_NOCONTROLPANELBARRICADE","features":[464]},{"name":"REST_NOCSC","features":[464]},{"name":"REST_NOCURRENTUSERRUN","features":[464]},{"name":"REST_NOCURRENTUSERRUNONCE","features":[464]},{"name":"REST_NOCUSTOMIZETHISFOLDER","features":[464]},{"name":"REST_NOCUSTOMIZEWEBVIEW","features":[464]},{"name":"REST_NODELDESKCOMP","features":[464]},{"name":"REST_NODESKCOMP","features":[464]},{"name":"REST_NODESKTOP","features":[464]},{"name":"REST_NODESKTOPCLEANUP","features":[464]},{"name":"REST_NODISCONNECT","features":[464]},{"name":"REST_NODISPBACKGROUND","features":[464]},{"name":"REST_NODISPLAYAPPEARANCEPAGE","features":[464]},{"name":"REST_NODISPLAYCPL","features":[464]},{"name":"REST_NODISPSCREENSAVEPG","features":[464]},{"name":"REST_NODISPSCREENSAVEPREVIEW","features":[464]},{"name":"REST_NODISPSETTINGSPG","features":[464]},{"name":"REST_NODRIVEAUTORUN","features":[464]},{"name":"REST_NODRIVES","features":[464]},{"name":"REST_NODRIVETYPEAUTORUN","features":[464]},{"name":"REST_NOEDITDESKCOMP","features":[464]},{"name":"REST_NOENCRYPTION","features":[464]},{"name":"REST_NOENCRYPTONMOVE","features":[464]},{"name":"REST_NOENTIRENETWORK","features":[464]},{"name":"REST_NOENUMENTIRENETWORK","features":[464]},{"name":"REST_NOEXITTODOS","features":[464]},{"name":"REST_NOFAVORITESMENU","features":[464]},{"name":"REST_NOFILEASSOCIATE","features":[464]},{"name":"REST_NOFILEMENU","features":[464]},{"name":"REST_NOFIND","features":[464]},{"name":"REST_NOFOLDEROPTIONS","features":[464]},{"name":"REST_NOFORGETSOFTWAREUPDATE","features":[464]},{"name":"REST_NOHARDWARETAB","features":[464]},{"name":"REST_NOHTMLWALLPAPER","features":[464]},{"name":"REST_NOINTERNETICON","features":[464]},{"name":"REST_NOINTERNETOPENWITH","features":[464]},{"name":"REST_NOLOCALMACHINERUN","features":[464]},{"name":"REST_NOLOCALMACHINERUNONCE","features":[464]},{"name":"REST_NOLOWDISKSPACECHECKS","features":[464]},{"name":"REST_NOMANAGEMYCOMPUTERVERB","features":[464]},{"name":"REST_NOMOVINGBAND","features":[464]},{"name":"REST_NOMYCOMPUTERICON","features":[464]},{"name":"REST_NONE","features":[464]},{"name":"REST_NONETCONNECTDISCONNECT","features":[464]},{"name":"REST_NONETCRAWL","features":[464]},{"name":"REST_NONETHOOD","features":[464]},{"name":"REST_NONETWORKCONNECTIONS","features":[464]},{"name":"REST_NONLEGACYSHELLMODE","features":[464]},{"name":"REST_NOONLINEPRINTSWIZARD","features":[464]},{"name":"REST_NOPRINTERADD","features":[464]},{"name":"REST_NOPRINTERDELETE","features":[464]},{"name":"REST_NOPRINTERTABS","features":[464]},{"name":"REST_NOPUBLISHWIZARD","features":[464]},{"name":"REST_NORECENTDOCSHISTORY","features":[464]},{"name":"REST_NORECENTDOCSMENU","features":[464]},{"name":"REST_NOREMOTECHANGENOTIFY","features":[464]},{"name":"REST_NOREMOTERECURSIVEEVENTS","features":[464]},{"name":"REST_NORESOLVESEARCH","features":[464]},{"name":"REST_NORESOLVETRACK","features":[464]},{"name":"REST_NORUN","features":[464]},{"name":"REST_NORUNASINSTALLPROMPT","features":[464]},{"name":"REST_NOSAVESET","features":[464]},{"name":"REST_NOSECURITY","features":[464]},{"name":"REST_NOSETACTIVEDESKTOP","features":[464]},{"name":"REST_NOSETFOLDERS","features":[464]},{"name":"REST_NOSETTASKBAR","features":[464]},{"name":"REST_NOSETTINGSASSIST","features":[464]},{"name":"REST_NOSHAREDDOCUMENTS","features":[464]},{"name":"REST_NOSHELLSEARCHBUTTON","features":[464]},{"name":"REST_NOSIZECHOICE","features":[464]},{"name":"REST_NOSMBALLOONTIP","features":[464]},{"name":"REST_NOSMCONFIGUREPROGRAMS","features":[464]},{"name":"REST_NOSMEJECTPC","features":[464]},{"name":"REST_NOSMHELP","features":[464]},{"name":"REST_NOSMMFUPROGRAMS","features":[464]},{"name":"REST_NOSMMOREPROGRAMS","features":[464]},{"name":"REST_NOSMMYDOCS","features":[464]},{"name":"REST_NOSMMYMUSIC","features":[464]},{"name":"REST_NOSMMYPICS","features":[464]},{"name":"REST_NOSMNETWORKPLACES","features":[464]},{"name":"REST_NOSMPINNEDLIST","features":[464]},{"name":"REST_NOSTARTMENUSUBFOLDERS","features":[464]},{"name":"REST_NOSTARTPAGE","features":[464]},{"name":"REST_NOSTARTPANEL","features":[464]},{"name":"REST_NOSTRCMPLOGICAL","features":[464]},{"name":"REST_NOTASKGROUPING","features":[464]},{"name":"REST_NOTHEMESTAB","features":[464]},{"name":"REST_NOTHUMBNAILCACHE","features":[464]},{"name":"REST_NOTOOLBARSONTASKBAR","features":[464]},{"name":"REST_NOTRAYCONTEXTMENU","features":[464]},{"name":"REST_NOTRAYITEMSDISPLAY","features":[464]},{"name":"REST_NOUPDATEWINDOWS","features":[464]},{"name":"REST_NOUPNPINSTALL","features":[464]},{"name":"REST_NOUSERNAMEINSTARTPANEL","features":[464]},{"name":"REST_NOVIEWCONTEXTMENU","features":[464]},{"name":"REST_NOVIEWONDRIVE","features":[464]},{"name":"REST_NOVISUALSTYLECHOICE","features":[464]},{"name":"REST_NOWEB","features":[464]},{"name":"REST_NOWEBSERVICES","features":[464]},{"name":"REST_NOWEBVIEW","features":[464]},{"name":"REST_NOWELCOMESCREEN","features":[464]},{"name":"REST_NOWINKEYS","features":[464]},{"name":"REST_PROMPTRUNASINSTALLNETPATH","features":[464]},{"name":"REST_RESTRICTCPL","features":[464]},{"name":"REST_RESTRICTRUN","features":[464]},{"name":"REST_REVERTWEBVIEWSECURITY","features":[464]},{"name":"REST_RUNDLGMEMCHECKBOX","features":[464]},{"name":"REST_SEPARATEDESKTOPPROCESS","features":[464]},{"name":"REST_SETVISUALSTYLE","features":[464]},{"name":"REST_STARTBANNER","features":[464]},{"name":"REST_STARTMENULOGOFF","features":[464]},{"name":"REST_STARTRUNNOHOMEPATH","features":[464]},{"name":"ReadCabinetState","features":[303,464]},{"name":"RealDriveType","features":[303,464]},{"name":"RefreshConstants","features":[464]},{"name":"RegisterAppConstrainedChangeNotification","features":[303,464]},{"name":"RegisterAppStateChangeNotification","features":[303,464]},{"name":"RegisterScaleChangeEvent","features":[303,464]},{"name":"RegisterScaleChangeNotifications","features":[303,464]},{"name":"RemoveWindowSubclass","features":[303,464]},{"name":"ResizeThumbnail","features":[464]},{"name":"RestartDialog","features":[303,464]},{"name":"RestartDialogEx","features":[303,464]},{"name":"ReturnOnlyIfCached","features":[464]},{"name":"RevokeScaleChangeNotifications","features":[464]},{"name":"SBSC_HIDE","features":[464]},{"name":"SBSC_QUERY","features":[464]},{"name":"SBSC_SHOW","features":[464]},{"name":"SBSC_TOGGLE","features":[464]},{"name":"SBSP_ABSOLUTE","features":[464]},{"name":"SBSP_ACTIVATE_NOFOCUS","features":[464]},{"name":"SBSP_ALLOW_AUTONAVIGATE","features":[464]},{"name":"SBSP_CALLERUNTRUSTED","features":[464]},{"name":"SBSP_CREATENOHISTORY","features":[464]},{"name":"SBSP_DEFBROWSER","features":[464]},{"name":"SBSP_DEFMODE","features":[464]},{"name":"SBSP_EXPLOREMODE","features":[464]},{"name":"SBSP_FEEDNAVIGATION","features":[464]},{"name":"SBSP_HELPMODE","features":[464]},{"name":"SBSP_INITIATEDBYHLINKFRAME","features":[464]},{"name":"SBSP_KEEPSAMETEMPLATE","features":[464]},{"name":"SBSP_KEEPWORDWHEELTEXT","features":[464]},{"name":"SBSP_NAVIGATEBACK","features":[464]},{"name":"SBSP_NAVIGATEFORWARD","features":[464]},{"name":"SBSP_NEWBROWSER","features":[464]},{"name":"SBSP_NOAUTOSELECT","features":[464]},{"name":"SBSP_NOTRANSFERHIST","features":[464]},{"name":"SBSP_OPENMODE","features":[464]},{"name":"SBSP_PARENT","features":[464]},{"name":"SBSP_PLAYNOSOUND","features":[464]},{"name":"SBSP_REDIRECT","features":[464]},{"name":"SBSP_RELATIVE","features":[464]},{"name":"SBSP_SAMEBROWSER","features":[464]},{"name":"SBSP_TRUSTEDFORACTIVEX","features":[464]},{"name":"SBSP_TRUSTFIRSTDOWNLOAD","features":[464]},{"name":"SBSP_UNTRUSTEDFORDOWNLOAD","features":[464]},{"name":"SBSP_WRITENOHISTORY","features":[464]},{"name":"SCALE_CHANGE_FLAGS","features":[464]},{"name":"SCF_PHYSICAL","features":[464]},{"name":"SCF_SCALE","features":[464]},{"name":"SCF_VALUE_NONE","features":[464]},{"name":"SCHEME_CREATE","features":[464]},{"name":"SCHEME_DISPLAY","features":[464]},{"name":"SCHEME_DONOTUSE","features":[464]},{"name":"SCHEME_EDIT","features":[464]},{"name":"SCHEME_GLOBAL","features":[464]},{"name":"SCHEME_LOCAL","features":[464]},{"name":"SCHEME_REFRESH","features":[464]},{"name":"SCHEME_UPDATE","features":[464]},{"name":"SCNRT_DISABLE","features":[464]},{"name":"SCNRT_ENABLE","features":[464]},{"name":"SCNRT_STATUS","features":[464]},{"name":"SCRM_VERIFYPW","features":[464]},{"name":"SECURELOCKCODE","features":[464]},{"name":"SECURELOCK_FIRSTSUGGEST","features":[464]},{"name":"SECURELOCK_NOCHANGE","features":[464]},{"name":"SECURELOCK_SET_FORTEZZA","features":[464]},{"name":"SECURELOCK_SET_MIXED","features":[464]},{"name":"SECURELOCK_SET_SECURE128BIT","features":[464]},{"name":"SECURELOCK_SET_SECURE40BIT","features":[464]},{"name":"SECURELOCK_SET_SECURE56BIT","features":[464]},{"name":"SECURELOCK_SET_SECUREUNKNOWNBIT","features":[464]},{"name":"SECURELOCK_SET_UNSECURE","features":[464]},{"name":"SECURELOCK_SUGGEST_FORTEZZA","features":[464]},{"name":"SECURELOCK_SUGGEST_MIXED","features":[464]},{"name":"SECURELOCK_SUGGEST_SECURE128BIT","features":[464]},{"name":"SECURELOCK_SUGGEST_SECURE40BIT","features":[464]},{"name":"SECURELOCK_SUGGEST_SECURE56BIT","features":[464]},{"name":"SECURELOCK_SUGGEST_SECUREUNKNOWNBIT","features":[464]},{"name":"SECURELOCK_SUGGEST_UNSECURE","features":[464]},{"name":"SEE_MASK_ASYNCOK","features":[464]},{"name":"SEE_MASK_CLASSKEY","features":[464]},{"name":"SEE_MASK_CLASSNAME","features":[464]},{"name":"SEE_MASK_CONNECTNETDRV","features":[464]},{"name":"SEE_MASK_DEFAULT","features":[464]},{"name":"SEE_MASK_DOENVSUBST","features":[464]},{"name":"SEE_MASK_FLAG_DDEWAIT","features":[464]},{"name":"SEE_MASK_FLAG_HINST_IS_SITE","features":[464]},{"name":"SEE_MASK_FLAG_LOG_USAGE","features":[464]},{"name":"SEE_MASK_FLAG_NO_UI","features":[464]},{"name":"SEE_MASK_HMONITOR","features":[464]},{"name":"SEE_MASK_HOTKEY","features":[464]},{"name":"SEE_MASK_ICON","features":[464]},{"name":"SEE_MASK_IDLIST","features":[464]},{"name":"SEE_MASK_INVOKEIDLIST","features":[464]},{"name":"SEE_MASK_NOASYNC","features":[464]},{"name":"SEE_MASK_NOCLOSEPROCESS","features":[464]},{"name":"SEE_MASK_NOQUERYCLASSSTORE","features":[464]},{"name":"SEE_MASK_NOZONECHECKS","features":[464]},{"name":"SEE_MASK_NO_CONSOLE","features":[464]},{"name":"SEE_MASK_UNICODE","features":[464]},{"name":"SEE_MASK_WAITFORINPUTIDLE","features":[464]},{"name":"SETPROPS_NONE","features":[464]},{"name":"SE_ERR_ACCESSDENIED","features":[464]},{"name":"SE_ERR_ASSOCINCOMPLETE","features":[464]},{"name":"SE_ERR_DDEBUSY","features":[464]},{"name":"SE_ERR_DDEFAIL","features":[464]},{"name":"SE_ERR_DDETIMEOUT","features":[464]},{"name":"SE_ERR_DLLNOTFOUND","features":[464]},{"name":"SE_ERR_FNF","features":[464]},{"name":"SE_ERR_NOASSOC","features":[464]},{"name":"SE_ERR_OOM","features":[464]},{"name":"SE_ERR_PNF","features":[464]},{"name":"SE_ERR_SHARE","features":[464]},{"name":"SFBID_PIDLCHANGED","features":[464]},{"name":"SFBS_FLAGS","features":[464]},{"name":"SFBS_FLAGS_ROUND_TO_NEAREST_DISPLAYED_DIGIT","features":[464]},{"name":"SFBS_FLAGS_TRUNCATE_UNDISPLAYED_DECIMAL_DIGITS","features":[464]},{"name":"SFVM_ADDOBJECT","features":[464]},{"name":"SFVM_ADDPROPERTYPAGES","features":[464]},{"name":"SFVM_BACKGROUNDENUM","features":[464]},{"name":"SFVM_BACKGROUNDENUMDONE","features":[464]},{"name":"SFVM_COLUMNCLICK","features":[464]},{"name":"SFVM_DEFITEMCOUNT","features":[464]},{"name":"SFVM_DEFVIEWMODE","features":[464]},{"name":"SFVM_DIDDRAGDROP","features":[464]},{"name":"SFVM_FSNOTIFY","features":[464]},{"name":"SFVM_GETANIMATION","features":[464]},{"name":"SFVM_GETBUTTONINFO","features":[464]},{"name":"SFVM_GETBUTTONS","features":[464]},{"name":"SFVM_GETDETAILSOF","features":[464]},{"name":"SFVM_GETHELPTEXT","features":[464]},{"name":"SFVM_GETHELPTOPIC","features":[464]},{"name":"SFVM_GETNOTIFY","features":[464]},{"name":"SFVM_GETPANE","features":[464]},{"name":"SFVM_GETSELECTEDOBJECTS","features":[464]},{"name":"SFVM_GETSORTDEFAULTS","features":[464]},{"name":"SFVM_GETTOOLTIPTEXT","features":[464]},{"name":"SFVM_GETZONE","features":[464]},{"name":"SFVM_HELPTOPIC_DATA","features":[464]},{"name":"SFVM_INITMENUPOPUP","features":[464]},{"name":"SFVM_INVOKECOMMAND","features":[464]},{"name":"SFVM_MERGEMENU","features":[464]},{"name":"SFVM_MESSAGE_ID","features":[464]},{"name":"SFVM_PROPPAGE_DATA","features":[303,353,464]},{"name":"SFVM_QUERYFSNOTIFY","features":[464]},{"name":"SFVM_REARRANGE","features":[464]},{"name":"SFVM_REMOVEOBJECT","features":[464]},{"name":"SFVM_SETCLIPBOARD","features":[464]},{"name":"SFVM_SETISFV","features":[464]},{"name":"SFVM_SETITEMPOS","features":[464]},{"name":"SFVM_SETPOINTS","features":[464]},{"name":"SFVM_SIZE","features":[464]},{"name":"SFVM_THISIDLIST","features":[464]},{"name":"SFVM_UNMERGEMENU","features":[464]},{"name":"SFVM_UPDATEOBJECT","features":[464]},{"name":"SFVM_UPDATESTATUSBAR","features":[464]},{"name":"SFVM_WINDOWCREATED","features":[464]},{"name":"SFVSOC_INVALIDATE_ALL","features":[464]},{"name":"SFVSOC_NOSCROLL","features":[464]},{"name":"SFVS_SELECT","features":[464]},{"name":"SFVS_SELECT_ALLITEMS","features":[464]},{"name":"SFVS_SELECT_INVERT","features":[464]},{"name":"SFVS_SELECT_NONE","features":[464]},{"name":"SFVVO_DESKTOPHTML","features":[464]},{"name":"SFVVO_DOUBLECLICKINWEBVIEW","features":[464]},{"name":"SFVVO_SHOWALLOBJECTS","features":[464]},{"name":"SFVVO_SHOWCOMPCOLOR","features":[464]},{"name":"SFVVO_SHOWEXTENSIONS","features":[464]},{"name":"SFVVO_SHOWSYSFILES","features":[464]},{"name":"SFVVO_WIN95CLASSIC","features":[464]},{"name":"SFV_CREATE","features":[413,464]},{"name":"SFV_SETITEMPOS","features":[303,631]},{"name":"SHACF_AUTOAPPEND_FORCE_OFF","features":[464]},{"name":"SHACF_AUTOAPPEND_FORCE_ON","features":[464]},{"name":"SHACF_AUTOSUGGEST_FORCE_OFF","features":[464]},{"name":"SHACF_AUTOSUGGEST_FORCE_ON","features":[464]},{"name":"SHACF_DEFAULT","features":[464]},{"name":"SHACF_FILESYSTEM","features":[464]},{"name":"SHACF_FILESYS_DIRS","features":[464]},{"name":"SHACF_FILESYS_ONLY","features":[464]},{"name":"SHACF_URLALL","features":[464]},{"name":"SHACF_URLHISTORY","features":[464]},{"name":"SHACF_URLMRU","features":[464]},{"name":"SHACF_USETAB","features":[464]},{"name":"SHACF_VIRTUAL_NAMESPACE","features":[464]},{"name":"SHARD","features":[464]},{"name":"SHARDAPPIDINFO","features":[464]},{"name":"SHARDAPPIDINFOIDLIST","features":[631]},{"name":"SHARDAPPIDINFOLINK","features":[464]},{"name":"SHARD_APPIDINFO","features":[464]},{"name":"SHARD_APPIDINFOIDLIST","features":[464]},{"name":"SHARD_APPIDINFOLINK","features":[464]},{"name":"SHARD_LINK","features":[464]},{"name":"SHARD_PATHA","features":[464]},{"name":"SHARD_PATHW","features":[464]},{"name":"SHARD_PIDL","features":[464]},{"name":"SHARD_SHELLITEM","features":[464]},{"name":"SHARE_ROLE","features":[464]},{"name":"SHARE_ROLE_CONTRIBUTOR","features":[464]},{"name":"SHARE_ROLE_CO_OWNER","features":[464]},{"name":"SHARE_ROLE_CUSTOM","features":[464]},{"name":"SHARE_ROLE_INVALID","features":[464]},{"name":"SHARE_ROLE_MIXED","features":[464]},{"name":"SHARE_ROLE_OWNER","features":[464]},{"name":"SHARE_ROLE_READER","features":[464]},{"name":"SHAddFromPropSheetExtArray","features":[303,353,464]},{"name":"SHAddToRecentDocs","features":[464]},{"name":"SHAlloc","features":[464]},{"name":"SHAllocShared","features":[303,464]},{"name":"SHAnsiToAnsi","features":[464]},{"name":"SHAnsiToUnicode","features":[464]},{"name":"SHAppBarMessage","features":[303,464]},{"name":"SHAssocEnumHandlers","features":[464]},{"name":"SHAssocEnumHandlersForProtocolByApplication","features":[464]},{"name":"SHAutoComplete","features":[303,464]},{"name":"SHBindToFolderIDListParent","features":[631]},{"name":"SHBindToFolderIDListParentEx","features":[354,631]},{"name":"SHBindToObject","features":[354,631]},{"name":"SHBindToParent","features":[631]},{"name":"SHBrowseForFolderA","features":[303,631]},{"name":"SHBrowseForFolderW","features":[303,631]},{"name":"SHCDF_UPDATEITEM","features":[464]},{"name":"SHCIDS_ALLFIELDS","features":[464]},{"name":"SHCIDS_BITMASK","features":[464]},{"name":"SHCIDS_CANONICALONLY","features":[464]},{"name":"SHCIDS_COLUMNMASK","features":[464]},{"name":"SHCLSIDFromString","features":[464]},{"name":"SHCNEE_MSI_CHANGE","features":[464]},{"name":"SHCNEE_MSI_UNINSTALL","features":[464]},{"name":"SHCNEE_ORDERCHANGED","features":[464]},{"name":"SHCNE_ALLEVENTS","features":[464]},{"name":"SHCNE_ASSOCCHANGED","features":[464]},{"name":"SHCNE_ATTRIBUTES","features":[464]},{"name":"SHCNE_CREATE","features":[464]},{"name":"SHCNE_DELETE","features":[464]},{"name":"SHCNE_DISKEVENTS","features":[464]},{"name":"SHCNE_DRIVEADD","features":[464]},{"name":"SHCNE_DRIVEADDGUI","features":[464]},{"name":"SHCNE_DRIVEREMOVED","features":[464]},{"name":"SHCNE_EXTENDED_EVENT","features":[464]},{"name":"SHCNE_FREESPACE","features":[464]},{"name":"SHCNE_GLOBALEVENTS","features":[464]},{"name":"SHCNE_ID","features":[464]},{"name":"SHCNE_INTERRUPT","features":[464]},{"name":"SHCNE_MEDIAINSERTED","features":[464]},{"name":"SHCNE_MEDIAREMOVED","features":[464]},{"name":"SHCNE_MKDIR","features":[464]},{"name":"SHCNE_NETSHARE","features":[464]},{"name":"SHCNE_NETUNSHARE","features":[464]},{"name":"SHCNE_RENAMEFOLDER","features":[464]},{"name":"SHCNE_RENAMEITEM","features":[464]},{"name":"SHCNE_RMDIR","features":[464]},{"name":"SHCNE_SERVERDISCONNECT","features":[464]},{"name":"SHCNE_UPDATEDIR","features":[464]},{"name":"SHCNE_UPDATEIMAGE","features":[464]},{"name":"SHCNE_UPDATEITEM","features":[464]},{"name":"SHCNF_DWORD","features":[464]},{"name":"SHCNF_FLAGS","features":[464]},{"name":"SHCNF_FLUSH","features":[464]},{"name":"SHCNF_FLUSHNOWAIT","features":[464]},{"name":"SHCNF_IDLIST","features":[464]},{"name":"SHCNF_NOTIFYRECURSIVE","features":[464]},{"name":"SHCNF_PATH","features":[464]},{"name":"SHCNF_PATHA","features":[464]},{"name":"SHCNF_PATHW","features":[464]},{"name":"SHCNF_PRINTER","features":[464]},{"name":"SHCNF_PRINTERA","features":[464]},{"name":"SHCNF_PRINTERW","features":[464]},{"name":"SHCNF_TYPE","features":[464]},{"name":"SHCNRF_InterruptLevel","features":[464]},{"name":"SHCNRF_NewDelivery","features":[464]},{"name":"SHCNRF_RecursiveInterrupt","features":[464]},{"name":"SHCNRF_SOURCE","features":[464]},{"name":"SHCNRF_ShellLevel","features":[464]},{"name":"SHCOLUMNDATA","features":[464]},{"name":"SHCOLUMNINFO","features":[378,374]},{"name":"SHCOLUMNINIT","features":[464]},{"name":"SHCONTF_CHECKING_FOR_CHILDREN","features":[464]},{"name":"SHCONTF_ENABLE_ASYNC","features":[464]},{"name":"SHCONTF_FASTITEMS","features":[464]},{"name":"SHCONTF_FLATLIST","features":[464]},{"name":"SHCONTF_FOLDERS","features":[464]},{"name":"SHCONTF_INCLUDEHIDDEN","features":[464]},{"name":"SHCONTF_INCLUDESUPERHIDDEN","features":[464]},{"name":"SHCONTF_INIT_ON_FIRST_NEXT","features":[464]},{"name":"SHCONTF_NAVIGATION_ENUM","features":[464]},{"name":"SHCONTF_NETPRINTERSRCH","features":[464]},{"name":"SHCONTF_NONFOLDERS","features":[464]},{"name":"SHCONTF_SHAREABLE","features":[464]},{"name":"SHCONTF_STORAGE","features":[464]},{"name":"SHCREATEPROCESSINFOW","features":[303,306,338,464]},{"name":"SHCREATEPROCESSINFOW","features":[303,306,338,464]},{"name":"SHC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[464]},{"name":"SHChangeDWORDAsIDList","features":[464]},{"name":"SHChangeNotification_Lock","features":[303,631]},{"name":"SHChangeNotification_Unlock","features":[303,464]},{"name":"SHChangeNotify","features":[464]},{"name":"SHChangeNotifyDeregister","features":[303,464]},{"name":"SHChangeNotifyEntry","features":[303,631]},{"name":"SHChangeNotifyRegister","features":[303,631]},{"name":"SHChangeNotifyRegisterThread","features":[464]},{"name":"SHChangeProductKeyAsIDList","features":[464]},{"name":"SHChangeUpdateImageIDList","features":[464]},{"name":"SHCloneSpecialIDList","features":[303,631]},{"name":"SHCoCreateInstance","features":[464]},{"name":"SHCopyKeyA","features":[303,364,464]},{"name":"SHCopyKeyW","features":[303,364,464]},{"name":"SHCreateAssociationRegistration","features":[464]},{"name":"SHCreateDataObject","features":[354,631]},{"name":"SHCreateDefaultContextMenu","features":[303,364,631]},{"name":"SHCreateDefaultExtractIcon","features":[464]},{"name":"SHCreateDefaultPropertiesOp","features":[464]},{"name":"SHCreateDirectory","features":[303,464]},{"name":"SHCreateDirectoryExA","features":[303,306,464]},{"name":"SHCreateDirectoryExW","features":[303,306,464]},{"name":"SHCreateFileExtractIconW","features":[464]},{"name":"SHCreateItemFromIDList","features":[631]},{"name":"SHCreateItemFromParsingName","features":[354,464]},{"name":"SHCreateItemFromRelativeName","features":[354,464]},{"name":"SHCreateItemInKnownFolder","features":[464]},{"name":"SHCreateItemWithParent","features":[631]},{"name":"SHCreateMemStream","features":[354,464]},{"name":"SHCreateProcessAsUserW","features":[303,306,338,464]},{"name":"SHCreatePropSheetExtArray","features":[364,464]},{"name":"SHCreateQueryCancelAutoPlayMoniker","features":[354,464]},{"name":"SHCreateShellFolderView","features":[413,464]},{"name":"SHCreateShellFolderViewEx","features":[303,413,631]},{"name":"SHCreateShellItem","features":[631]},{"name":"SHCreateShellItemArray","features":[631]},{"name":"SHCreateShellItemArrayFromDataObject","features":[354,464]},{"name":"SHCreateShellItemArrayFromIDLists","features":[631]},{"name":"SHCreateShellItemArrayFromShellItem","features":[464]},{"name":"SHCreateShellPalette","features":[314,464]},{"name":"SHCreateStdEnumFmtEtc","features":[354,464]},{"name":"SHCreateStreamOnFileA","features":[354,464]},{"name":"SHCreateStreamOnFileEx","features":[303,354,464]},{"name":"SHCreateStreamOnFileW","features":[354,464]},{"name":"SHCreateThread","features":[303,338,464]},{"name":"SHCreateThreadRef","features":[464]},{"name":"SHCreateThreadWithHandle","features":[303,338,464]},{"name":"SHDESCRIPTIONID","features":[464]},{"name":"SHDID_COMPUTER_AUDIO","features":[464]},{"name":"SHDID_COMPUTER_CDROM","features":[464]},{"name":"SHDID_COMPUTER_DRIVE35","features":[464]},{"name":"SHDID_COMPUTER_DRIVE525","features":[464]},{"name":"SHDID_COMPUTER_FIXED","features":[464]},{"name":"SHDID_COMPUTER_IMAGING","features":[464]},{"name":"SHDID_COMPUTER_NETDRIVE","features":[464]},{"name":"SHDID_COMPUTER_OTHER","features":[464]},{"name":"SHDID_COMPUTER_RAMDISK","features":[464]},{"name":"SHDID_COMPUTER_REMOVABLE","features":[464]},{"name":"SHDID_COMPUTER_SHAREDDOCS","features":[464]},{"name":"SHDID_FS_DIRECTORY","features":[464]},{"name":"SHDID_FS_FILE","features":[464]},{"name":"SHDID_FS_OTHER","features":[464]},{"name":"SHDID_ID","features":[464]},{"name":"SHDID_MOBILE_DEVICE","features":[464]},{"name":"SHDID_NET_DOMAIN","features":[464]},{"name":"SHDID_NET_OTHER","features":[464]},{"name":"SHDID_NET_RESTOFNET","features":[464]},{"name":"SHDID_NET_SERVER","features":[464]},{"name":"SHDID_NET_SHARE","features":[464]},{"name":"SHDID_REMOTE_DESKTOP_DRIVE","features":[464]},{"name":"SHDID_ROOT_REGITEM","features":[464]},{"name":"SHDRAGIMAGE","features":[303,314,464]},{"name":"SHDefExtractIconA","features":[464,365]},{"name":"SHDefExtractIconW","features":[464,365]},{"name":"SHDeleteEmptyKeyA","features":[303,364,464]},{"name":"SHDeleteEmptyKeyW","features":[303,364,464]},{"name":"SHDeleteKeyA","features":[303,364,464]},{"name":"SHDeleteKeyW","features":[303,364,464]},{"name":"SHDeleteValueA","features":[303,364,464]},{"name":"SHDeleteValueW","features":[303,364,464]},{"name":"SHDestroyPropSheetExtArray","features":[464]},{"name":"SHDoDragDrop","features":[303,354,413,464]},{"name":"SHELLBROWSERSHOWCONTROL","features":[464]},{"name":"SHELLEXECUTEINFOA","features":[303,364,464]},{"name":"SHELLEXECUTEINFOA","features":[303,364,464]},{"name":"SHELLEXECUTEINFOW","features":[303,364,464]},{"name":"SHELLEXECUTEINFOW","features":[303,364,464]},{"name":"SHELLFLAGSTATE","features":[464]},{"name":"SHELLSTATEA","features":[464]},{"name":"SHELLSTATEVERSION_IE4","features":[464]},{"name":"SHELLSTATEVERSION_WIN2K","features":[464]},{"name":"SHELLSTATEW","features":[464]},{"name":"SHELL_AUTOCOMPLETE_FLAGS","features":[464]},{"name":"SHELL_E_WRONG_BITDEPTH","features":[464]},{"name":"SHELL_ITEM_RESOURCE","features":[464]},{"name":"SHELL_LINK_DATA_FLAGS","features":[464]},{"name":"SHELL_UI_COMPONENT","features":[464]},{"name":"SHELL_UI_COMPONENT_DESKBAND","features":[464]},{"name":"SHELL_UI_COMPONENT_NOTIFICATIONAREA","features":[464]},{"name":"SHELL_UI_COMPONENT_TASKBARS","features":[464]},{"name":"SHERB_NOCONFIRMATION","features":[464]},{"name":"SHERB_NOPROGRESSUI","features":[464]},{"name":"SHERB_NOSOUND","features":[464]},{"name":"SHEmptyRecycleBinA","features":[303,464]},{"name":"SHEmptyRecycleBinW","features":[303,464]},{"name":"SHEnumKeyExA","features":[303,364,464]},{"name":"SHEnumKeyExW","features":[303,364,464]},{"name":"SHEnumValueA","features":[303,364,464]},{"name":"SHEnumValueW","features":[303,364,464]},{"name":"SHEnumerateUnreadMailAccountsW","features":[364,464]},{"name":"SHEvaluateSystemCommandTemplate","features":[464]},{"name":"SHFILEINFOA","features":[464,365]},{"name":"SHFILEINFOA","features":[464,365]},{"name":"SHFILEINFOW","features":[464,365]},{"name":"SHFILEINFOW","features":[464,365]},{"name":"SHFILEOPSTRUCTA","features":[303,464]},{"name":"SHFILEOPSTRUCTA","features":[303,464]},{"name":"SHFILEOPSTRUCTW","features":[303,464]},{"name":"SHFILEOPSTRUCTW","features":[303,464]},{"name":"SHFMT_CANCEL","features":[464]},{"name":"SHFMT_ERROR","features":[464]},{"name":"SHFMT_ID","features":[464]},{"name":"SHFMT_ID_DEFAULT","features":[464]},{"name":"SHFMT_NOFORMAT","features":[464]},{"name":"SHFMT_OPT","features":[464]},{"name":"SHFMT_OPT_FULL","features":[464]},{"name":"SHFMT_OPT_NONE","features":[464]},{"name":"SHFMT_OPT_SYSONLY","features":[464]},{"name":"SHFMT_RET","features":[464]},{"name":"SHFOLDERCUSTOMSETTINGS","features":[464]},{"name":"SHFileOperationA","features":[303,464]},{"name":"SHFileOperationW","features":[303,464]},{"name":"SHFindFiles","features":[303,631]},{"name":"SHFind_InitMenuPopup","features":[303,464,365]},{"name":"SHFlushSFCache","features":[464]},{"name":"SHFormatDateTimeA","features":[303,464]},{"name":"SHFormatDateTimeW","features":[303,464]},{"name":"SHFormatDrive","features":[303,464]},{"name":"SHFree","features":[464]},{"name":"SHFreeNameMappings","features":[303,464]},{"name":"SHFreeShared","features":[303,464]},{"name":"SHGDFIL_DESCRIPTIONID","features":[464]},{"name":"SHGDFIL_FINDDATA","features":[464]},{"name":"SHGDFIL_FORMAT","features":[464]},{"name":"SHGDFIL_NETRESOURCE","features":[464]},{"name":"SHGDNF","features":[464]},{"name":"SHGDN_FORADDRESSBAR","features":[464]},{"name":"SHGDN_FOREDITING","features":[464]},{"name":"SHGDN_FORPARSING","features":[464]},{"name":"SHGDN_INFOLDER","features":[464]},{"name":"SHGDN_NORMAL","features":[464]},{"name":"SHGFI_ADDOVERLAYS","features":[464]},{"name":"SHGFI_ATTRIBUTES","features":[464]},{"name":"SHGFI_ATTR_SPECIFIED","features":[464]},{"name":"SHGFI_DISPLAYNAME","features":[464]},{"name":"SHGFI_EXETYPE","features":[464]},{"name":"SHGFI_FLAGS","features":[464]},{"name":"SHGFI_ICON","features":[464]},{"name":"SHGFI_ICONLOCATION","features":[464]},{"name":"SHGFI_LARGEICON","features":[464]},{"name":"SHGFI_LINKOVERLAY","features":[464]},{"name":"SHGFI_OPENICON","features":[464]},{"name":"SHGFI_OVERLAYINDEX","features":[464]},{"name":"SHGFI_PIDL","features":[464]},{"name":"SHGFI_SELECTED","features":[464]},{"name":"SHGFI_SHELLICONSIZE","features":[464]},{"name":"SHGFI_SMALLICON","features":[464]},{"name":"SHGFI_SYSICONINDEX","features":[464]},{"name":"SHGFI_TYPENAME","features":[464]},{"name":"SHGFI_USEFILEATTRIBUTES","features":[464]},{"name":"SHGFP_TYPE","features":[464]},{"name":"SHGFP_TYPE_CURRENT","features":[464]},{"name":"SHGFP_TYPE_DEFAULT","features":[464]},{"name":"SHGLOBALCOUNTER","features":[464]},{"name":"SHGNLI_NOLNK","features":[464]},{"name":"SHGNLI_NOLOCNAME","features":[464]},{"name":"SHGNLI_NOUNIQUE","features":[464]},{"name":"SHGNLI_PIDL","features":[464]},{"name":"SHGNLI_PREFIXNAME","features":[464]},{"name":"SHGNLI_USEURLEXT","features":[464]},{"name":"SHGSI_FLAGS","features":[464]},{"name":"SHGSI_ICON","features":[464]},{"name":"SHGSI_ICONLOCATION","features":[464]},{"name":"SHGSI_LARGEICON","features":[464]},{"name":"SHGSI_LINKOVERLAY","features":[464]},{"name":"SHGSI_SELECTED","features":[464]},{"name":"SHGSI_SHELLICONSIZE","features":[464]},{"name":"SHGSI_SMALLICON","features":[464]},{"name":"SHGSI_SYSICONINDEX","features":[464]},{"name":"SHGVSPB_ALLFOLDERS","features":[464]},{"name":"SHGVSPB_ALLUSERS","features":[464]},{"name":"SHGVSPB_INHERIT","features":[464]},{"name":"SHGVSPB_NOAUTODEFAULTS","features":[464]},{"name":"SHGVSPB_PERFOLDER","features":[464]},{"name":"SHGVSPB_PERUSER","features":[464]},{"name":"SHGVSPB_ROAM","features":[464]},{"name":"SHGetAttributesFromDataObject","features":[354,464]},{"name":"SHGetDataFromIDListA","features":[631]},{"name":"SHGetDataFromIDListW","features":[631]},{"name":"SHGetDesktopFolder","features":[464]},{"name":"SHGetDiskFreeSpaceExA","features":[303,464]},{"name":"SHGetDiskFreeSpaceExW","features":[303,464]},{"name":"SHGetDriveMedia","features":[464]},{"name":"SHGetFileInfoA","features":[322,464,365]},{"name":"SHGetFileInfoW","features":[322,464,365]},{"name":"SHGetFolderLocation","features":[303,631]},{"name":"SHGetFolderPathA","features":[303,464]},{"name":"SHGetFolderPathAndSubDirA","features":[303,464]},{"name":"SHGetFolderPathAndSubDirW","features":[303,464]},{"name":"SHGetFolderPathW","features":[303,464]},{"name":"SHGetIDListFromObject","features":[631]},{"name":"SHGetIconOverlayIndexA","features":[464]},{"name":"SHGetIconOverlayIndexW","features":[464]},{"name":"SHGetImageList","features":[464]},{"name":"SHGetInstanceExplorer","features":[464]},{"name":"SHGetInverseCMAP","features":[464]},{"name":"SHGetItemFromDataObject","features":[354,464]},{"name":"SHGetItemFromObject","features":[464]},{"name":"SHGetKnownFolderIDList","features":[303,631]},{"name":"SHGetKnownFolderItem","features":[303,464]},{"name":"SHGetKnownFolderPath","features":[303,464]},{"name":"SHGetLocalizedName","features":[464]},{"name":"SHGetMalloc","features":[354,464]},{"name":"SHGetNameFromIDList","features":[631]},{"name":"SHGetNewLinkInfoA","features":[303,464]},{"name":"SHGetNewLinkInfoW","features":[303,464]},{"name":"SHGetPathFromIDListA","features":[303,631]},{"name":"SHGetPathFromIDListEx","features":[303,631]},{"name":"SHGetPathFromIDListW","features":[303,631]},{"name":"SHGetRealIDL","features":[631]},{"name":"SHGetSetFolderCustomSettings","features":[464]},{"name":"SHGetSetSettings","features":[303,464]},{"name":"SHGetSettings","features":[464]},{"name":"SHGetSpecialFolderLocation","features":[303,631]},{"name":"SHGetSpecialFolderPathA","features":[303,464]},{"name":"SHGetSpecialFolderPathW","features":[303,464]},{"name":"SHGetStockIconInfo","features":[464,365]},{"name":"SHGetTemporaryPropertyForItem","features":[374]},{"name":"SHGetThreadRef","features":[464]},{"name":"SHGetUnreadMailCountW","features":[303,364,464]},{"name":"SHGetValueA","features":[303,364,464]},{"name":"SHGetValueW","features":[303,364,464]},{"name":"SHGetViewStatePropertyBag","features":[631]},{"name":"SHGlobalCounterDecrement","features":[464]},{"name":"SHGlobalCounterGetValue","features":[464]},{"name":"SHGlobalCounterIncrement","features":[464]},{"name":"SHHLNF_NOAUTOSELECT","features":[464]},{"name":"SHHLNF_WRITENOHISTORY","features":[464]},{"name":"SHHandleUpdateImage","features":[631]},{"name":"SHILCreateFromPath","features":[631]},{"name":"SHIL_EXTRALARGE","features":[464]},{"name":"SHIL_JUMBO","features":[464]},{"name":"SHIL_LARGE","features":[464]},{"name":"SHIL_LAST","features":[464]},{"name":"SHIL_SMALL","features":[464]},{"name":"SHIL_SYSSMALL","features":[464]},{"name":"SHIMGDEC_DEFAULT","features":[464]},{"name":"SHIMGDEC_LOADFULL","features":[464]},{"name":"SHIMGDEC_THUMBNAIL","features":[464]},{"name":"SHIMGKEY_QUALITY","features":[464]},{"name":"SHIMGKEY_RAWFORMAT","features":[464]},{"name":"SHIMSTCAPFLAG_LOCKABLE","features":[464]},{"name":"SHIMSTCAPFLAG_PURGEABLE","features":[464]},{"name":"SHInvokePrinterCommandA","features":[303,464]},{"name":"SHInvokePrinterCommandW","features":[303,464]},{"name":"SHIsFileAvailableOffline","features":[464]},{"name":"SHIsLowMemoryMachine","features":[303,464]},{"name":"SHLimitInputEdit","features":[303,464]},{"name":"SHLoadInProc","features":[464]},{"name":"SHLoadIndirectString","features":[464]},{"name":"SHLoadNonloadedIconOverlayIdentifiers","features":[464]},{"name":"SHLockShared","features":[303,464]},{"name":"SHMapPIDLToSystemImageListIndex","features":[631]},{"name":"SHMessageBoxCheckA","features":[303,464]},{"name":"SHMessageBoxCheckW","features":[303,464]},{"name":"SHMultiFileProperties","features":[354,464]},{"name":"SHNAMEMAPPINGA","features":[464]},{"name":"SHNAMEMAPPINGA","features":[464]},{"name":"SHNAMEMAPPINGW","features":[464]},{"name":"SHNAMEMAPPINGW","features":[464]},{"name":"SHOP_FILEPATH","features":[464]},{"name":"SHOP_PRINTERNAME","features":[464]},{"name":"SHOP_TYPE","features":[464]},{"name":"SHOP_VOLUMEGUID","features":[464]},{"name":"SHObjectProperties","features":[303,464]},{"name":"SHOpenFolderAndSelectItems","features":[631]},{"name":"SHOpenPropSheetW","features":[303,354,413,364,464]},{"name":"SHOpenRegStream2A","features":[354,364,464]},{"name":"SHOpenRegStream2W","features":[354,364,464]},{"name":"SHOpenRegStreamA","features":[354,364,464]},{"name":"SHOpenRegStreamW","features":[354,364,464]},{"name":"SHOpenWithDialog","features":[303,464]},{"name":"SHPPFW_ASKDIRCREATE","features":[464]},{"name":"SHPPFW_DIRCREATE","features":[464]},{"name":"SHPPFW_IGNOREFILENAME","features":[464]},{"name":"SHPPFW_MEDIACHECKONLY","features":[464]},{"name":"SHPPFW_NONE","features":[464]},{"name":"SHPPFW_NOWRITECHECK","features":[464]},{"name":"SHPWHF_ANYLOCATION","features":[464]},{"name":"SHPWHF_NOFILESELECTOR","features":[464]},{"name":"SHPWHF_NONETPLACECREATE","features":[464]},{"name":"SHPWHF_NORECOMPRESS","features":[464]},{"name":"SHPWHF_USEMRU","features":[464]},{"name":"SHPWHF_VALIDATEVIAWEBFOLDERS","features":[464]},{"name":"SHParseDisplayName","features":[354,631]},{"name":"SHPathPrepareForWriteA","features":[303,464]},{"name":"SHPathPrepareForWriteW","features":[303,464]},{"name":"SHQUERYRBINFO","features":[464]},{"name":"SHQUERYRBINFO","features":[464]},{"name":"SHQueryInfoKeyA","features":[303,364,464]},{"name":"SHQueryInfoKeyW","features":[303,364,464]},{"name":"SHQueryRecycleBinA","features":[464]},{"name":"SHQueryRecycleBinW","features":[464]},{"name":"SHQueryUserNotificationState","features":[464]},{"name":"SHQueryValueExA","features":[303,364,464]},{"name":"SHQueryValueExW","features":[303,364,464]},{"name":"SHREGDEL_BOTH","features":[464]},{"name":"SHREGDEL_DEFAULT","features":[464]},{"name":"SHREGDEL_FLAGS","features":[464]},{"name":"SHREGDEL_HKCU","features":[464]},{"name":"SHREGDEL_HKLM","features":[464]},{"name":"SHREGENUM_BOTH","features":[464]},{"name":"SHREGENUM_DEFAULT","features":[464]},{"name":"SHREGENUM_FLAGS","features":[464]},{"name":"SHREGENUM_HKCU","features":[464]},{"name":"SHREGENUM_HKLM","features":[464]},{"name":"SHREGSET_FORCE_HKCU","features":[464]},{"name":"SHREGSET_FORCE_HKLM","features":[464]},{"name":"SHREGSET_HKCU","features":[464]},{"name":"SHREGSET_HKLM","features":[464]},{"name":"SHRegCloseUSKey","features":[303,464]},{"name":"SHRegCreateUSKeyA","features":[303,464]},{"name":"SHRegCreateUSKeyW","features":[303,464]},{"name":"SHRegDeleteEmptyUSKeyA","features":[303,464]},{"name":"SHRegDeleteEmptyUSKeyW","features":[303,464]},{"name":"SHRegDeleteUSValueA","features":[303,464]},{"name":"SHRegDeleteUSValueW","features":[303,464]},{"name":"SHRegDuplicateHKey","features":[364,464]},{"name":"SHRegEnumUSKeyA","features":[303,464]},{"name":"SHRegEnumUSKeyW","features":[303,464]},{"name":"SHRegEnumUSValueA","features":[303,464]},{"name":"SHRegEnumUSValueW","features":[303,464]},{"name":"SHRegGetBoolUSValueA","features":[303,464]},{"name":"SHRegGetBoolUSValueW","features":[303,464]},{"name":"SHRegGetIntW","features":[364,464]},{"name":"SHRegGetPathA","features":[303,364,464]},{"name":"SHRegGetPathW","features":[303,364,464]},{"name":"SHRegGetUSValueA","features":[303,464]},{"name":"SHRegGetUSValueW","features":[303,464]},{"name":"SHRegGetValueA","features":[303,364,464]},{"name":"SHRegGetValueFromHKCUHKLM","features":[303,464]},{"name":"SHRegGetValueW","features":[303,364,464]},{"name":"SHRegOpenUSKeyA","features":[303,464]},{"name":"SHRegOpenUSKeyW","features":[303,464]},{"name":"SHRegQueryInfoUSKeyA","features":[303,464]},{"name":"SHRegQueryInfoUSKeyW","features":[303,464]},{"name":"SHRegQueryUSValueA","features":[303,464]},{"name":"SHRegQueryUSValueW","features":[303,464]},{"name":"SHRegSetPathA","features":[303,364,464]},{"name":"SHRegSetPathW","features":[303,364,464]},{"name":"SHRegSetUSValueA","features":[303,464]},{"name":"SHRegSetUSValueW","features":[303,464]},{"name":"SHRegWriteUSValueA","features":[303,464]},{"name":"SHRegWriteUSValueW","features":[303,464]},{"name":"SHReleaseThreadRef","features":[464]},{"name":"SHRemoveLocalizedName","features":[464]},{"name":"SHReplaceFromPropSheetExtArray","features":[303,353,464]},{"name":"SHResolveLibrary","features":[464]},{"name":"SHRestricted","features":[464]},{"name":"SHSTOCKICONID","features":[464]},{"name":"SHSTOCKICONINFO","features":[464,365]},{"name":"SHSTOCKICONINFO","features":[464,365]},{"name":"SHSendMessageBroadcastA","features":[303,464]},{"name":"SHSendMessageBroadcastW","features":[303,464]},{"name":"SHSetDefaultProperties","features":[303,464]},{"name":"SHSetFolderPathA","features":[303,464]},{"name":"SHSetFolderPathW","features":[303,464]},{"name":"SHSetInstanceExplorer","features":[464]},{"name":"SHSetKnownFolderPath","features":[303,464]},{"name":"SHSetLocalizedName","features":[464]},{"name":"SHSetTemporaryPropertyForItem","features":[374]},{"name":"SHSetThreadRef","features":[464]},{"name":"SHSetUnreadMailCountW","features":[464]},{"name":"SHSetValueA","features":[364,464]},{"name":"SHSetValueW","features":[364,464]},{"name":"SHShellFolderView_Message","features":[303,464]},{"name":"SHShowManageLibraryUI","features":[303,464]},{"name":"SHSimpleIDListFromPath","features":[631]},{"name":"SHSkipJunction","features":[303,354,464]},{"name":"SHStartNetConnectionDialogW","features":[303,464]},{"name":"SHStrDupA","features":[464]},{"name":"SHStrDupW","features":[464]},{"name":"SHStripMneumonicA","features":[464]},{"name":"SHStripMneumonicW","features":[464]},{"name":"SHTestTokenMembership","features":[303,464]},{"name":"SHUnicodeToAnsi","features":[464]},{"name":"SHUnicodeToUnicode","features":[464]},{"name":"SHUnlockShared","features":[303,464]},{"name":"SHUpdateImageA","features":[464]},{"name":"SHUpdateImageW","features":[464]},{"name":"SHValidateUNC","features":[303,464]},{"name":"SIATTRIBFLAGS","features":[464]},{"name":"SIATTRIBFLAGS_ALLITEMS","features":[464]},{"name":"SIATTRIBFLAGS_AND","features":[464]},{"name":"SIATTRIBFLAGS_APPCOMPAT","features":[464]},{"name":"SIATTRIBFLAGS_MASK","features":[464]},{"name":"SIATTRIBFLAGS_OR","features":[464]},{"name":"SICHINT_ALLFIELDS","features":[464]},{"name":"SICHINT_CANONICAL","features":[464]},{"name":"SICHINT_DISPLAY","features":[464]},{"name":"SICHINT_TEST_FILESYSPATH_IF_NOT_EQUAL","features":[464]},{"name":"SID_CommandsPropertyBag","features":[464]},{"name":"SID_CtxQueryAssociations","features":[464]},{"name":"SID_DefView","features":[464]},{"name":"SID_LaunchSourceAppUserModelId","features":[464]},{"name":"SID_LaunchSourceViewSizePreference","features":[464]},{"name":"SID_LaunchTargetViewSizePreference","features":[464]},{"name":"SID_MenuShellFolder","features":[464]},{"name":"SID_SCommDlgBrowser","features":[464]},{"name":"SID_SCommandBarState","features":[464]},{"name":"SID_SGetViewFromViewDual","features":[464]},{"name":"SID_SInPlaceBrowser","features":[464]},{"name":"SID_SMenuBandBKContextMenu","features":[464]},{"name":"SID_SMenuBandBottom","features":[464]},{"name":"SID_SMenuBandBottomSelected","features":[464]},{"name":"SID_SMenuBandChild","features":[464]},{"name":"SID_SMenuBandContextMenuModifier","features":[464]},{"name":"SID_SMenuBandParent","features":[464]},{"name":"SID_SMenuBandTop","features":[464]},{"name":"SID_SMenuPopup","features":[464]},{"name":"SID_SSearchBoxInfo","features":[464]},{"name":"SID_STopLevelBrowser","features":[464]},{"name":"SID_STopWindow","features":[464]},{"name":"SID_ShellExecuteNamedPropertyStore","features":[464]},{"name":"SID_URLExecutionContext","features":[464]},{"name":"SIGDN","features":[464]},{"name":"SIGDN_DESKTOPABSOLUTEEDITING","features":[464]},{"name":"SIGDN_DESKTOPABSOLUTEPARSING","features":[464]},{"name":"SIGDN_FILESYSPATH","features":[464]},{"name":"SIGDN_NORMALDISPLAY","features":[464]},{"name":"SIGDN_PARENTRELATIVE","features":[464]},{"name":"SIGDN_PARENTRELATIVEEDITING","features":[464]},{"name":"SIGDN_PARENTRELATIVEFORADDRESSBAR","features":[464]},{"name":"SIGDN_PARENTRELATIVEFORUI","features":[464]},{"name":"SIGDN_PARENTRELATIVEPARSING","features":[464]},{"name":"SIGDN_URL","features":[464]},{"name":"SIID_APPLICATION","features":[464]},{"name":"SIID_AUDIOFILES","features":[464]},{"name":"SIID_AUTOLIST","features":[464]},{"name":"SIID_CLUSTEREDDRIVE","features":[464]},{"name":"SIID_DELETE","features":[464]},{"name":"SIID_DESKTOPPC","features":[464]},{"name":"SIID_DEVICEAUDIOPLAYER","features":[464]},{"name":"SIID_DEVICECAMERA","features":[464]},{"name":"SIID_DEVICECELLPHONE","features":[464]},{"name":"SIID_DEVICEVIDEOCAMERA","features":[464]},{"name":"SIID_DOCASSOC","features":[464]},{"name":"SIID_DOCNOASSOC","features":[464]},{"name":"SIID_DRIVE35","features":[464]},{"name":"SIID_DRIVE525","features":[464]},{"name":"SIID_DRIVEBD","features":[464]},{"name":"SIID_DRIVECD","features":[464]},{"name":"SIID_DRIVEDVD","features":[464]},{"name":"SIID_DRIVEFIXED","features":[464]},{"name":"SIID_DRIVEHDDVD","features":[464]},{"name":"SIID_DRIVENET","features":[464]},{"name":"SIID_DRIVENETDISABLED","features":[464]},{"name":"SIID_DRIVERAM","features":[464]},{"name":"SIID_DRIVEREMOVE","features":[464]},{"name":"SIID_DRIVEUNKNOWN","features":[464]},{"name":"SIID_ERROR","features":[464]},{"name":"SIID_FIND","features":[464]},{"name":"SIID_FOLDER","features":[464]},{"name":"SIID_FOLDERBACK","features":[464]},{"name":"SIID_FOLDERFRONT","features":[464]},{"name":"SIID_FOLDEROPEN","features":[464]},{"name":"SIID_HELP","features":[464]},{"name":"SIID_IMAGEFILES","features":[464]},{"name":"SIID_INFO","features":[464]},{"name":"SIID_INTERNET","features":[464]},{"name":"SIID_KEY","features":[464]},{"name":"SIID_LINK","features":[464]},{"name":"SIID_LOCK","features":[464]},{"name":"SIID_MAX_ICONS","features":[464]},{"name":"SIID_MEDIAAUDIODVD","features":[464]},{"name":"SIID_MEDIABDR","features":[464]},{"name":"SIID_MEDIABDRE","features":[464]},{"name":"SIID_MEDIABDROM","features":[464]},{"name":"SIID_MEDIABLANKCD","features":[464]},{"name":"SIID_MEDIABLURAY","features":[464]},{"name":"SIID_MEDIACDAUDIO","features":[464]},{"name":"SIID_MEDIACDAUDIOPLUS","features":[464]},{"name":"SIID_MEDIACDBURN","features":[464]},{"name":"SIID_MEDIACDR","features":[464]},{"name":"SIID_MEDIACDROM","features":[464]},{"name":"SIID_MEDIACDRW","features":[464]},{"name":"SIID_MEDIACOMPACTFLASH","features":[464]},{"name":"SIID_MEDIADVD","features":[464]},{"name":"SIID_MEDIADVDPLUSR","features":[464]},{"name":"SIID_MEDIADVDPLUSRW","features":[464]},{"name":"SIID_MEDIADVDR","features":[464]},{"name":"SIID_MEDIADVDRAM","features":[464]},{"name":"SIID_MEDIADVDROM","features":[464]},{"name":"SIID_MEDIADVDRW","features":[464]},{"name":"SIID_MEDIAENHANCEDCD","features":[464]},{"name":"SIID_MEDIAENHANCEDDVD","features":[464]},{"name":"SIID_MEDIAHDDVD","features":[464]},{"name":"SIID_MEDIAHDDVDR","features":[464]},{"name":"SIID_MEDIAHDDVDRAM","features":[464]},{"name":"SIID_MEDIAHDDVDROM","features":[464]},{"name":"SIID_MEDIAMOVIEDVD","features":[464]},{"name":"SIID_MEDIASMARTMEDIA","features":[464]},{"name":"SIID_MEDIASVCD","features":[464]},{"name":"SIID_MEDIAVCD","features":[464]},{"name":"SIID_MIXEDFILES","features":[464]},{"name":"SIID_MOBILEPC","features":[464]},{"name":"SIID_MYNETWORK","features":[464]},{"name":"SIID_NETWORKCONNECT","features":[464]},{"name":"SIID_PRINTER","features":[464]},{"name":"SIID_PRINTERFAX","features":[464]},{"name":"SIID_PRINTERFAXNET","features":[464]},{"name":"SIID_PRINTERFILE","features":[464]},{"name":"SIID_PRINTERNET","features":[464]},{"name":"SIID_RECYCLER","features":[464]},{"name":"SIID_RECYCLERFULL","features":[464]},{"name":"SIID_RENAME","features":[464]},{"name":"SIID_SERVER","features":[464]},{"name":"SIID_SERVERSHARE","features":[464]},{"name":"SIID_SETTINGS","features":[464]},{"name":"SIID_SHARE","features":[464]},{"name":"SIID_SHIELD","features":[464]},{"name":"SIID_SLOWFILE","features":[464]},{"name":"SIID_SOFTWARE","features":[464]},{"name":"SIID_STACK","features":[464]},{"name":"SIID_STUFFEDFOLDER","features":[464]},{"name":"SIID_USERS","features":[464]},{"name":"SIID_VIDEOFILES","features":[464]},{"name":"SIID_WARNING","features":[464]},{"name":"SIID_WORLD","features":[464]},{"name":"SIID_ZIPFILE","features":[464]},{"name":"SIIGBF","features":[464]},{"name":"SIIGBF_BIGGERSIZEOK","features":[464]},{"name":"SIIGBF_CROPTOSQUARE","features":[464]},{"name":"SIIGBF_ICONBACKGROUND","features":[464]},{"name":"SIIGBF_ICONONLY","features":[464]},{"name":"SIIGBF_INCACHEONLY","features":[464]},{"name":"SIIGBF_MEMORYONLY","features":[464]},{"name":"SIIGBF_RESIZETOFIT","features":[464]},{"name":"SIIGBF_SCALEUP","features":[464]},{"name":"SIIGBF_THUMBNAILONLY","features":[464]},{"name":"SIIGBF_WIDETHUMBNAILS","features":[464]},{"name":"SIOM_ICONINDEX","features":[464]},{"name":"SIOM_OVERLAYINDEX","features":[464]},{"name":"SIOM_RESERVED_DEFAULT","features":[464]},{"name":"SIOM_RESERVED_LINK","features":[464]},{"name":"SIOM_RESERVED_SHARED","features":[464]},{"name":"SIOM_RESERVED_SLOWFILE","features":[464]},{"name":"SLDF_ALLOW_LINK_TO_LINK","features":[464]},{"name":"SLDF_DEFAULT","features":[464]},{"name":"SLDF_DISABLE_KNOWNFOLDER_RELATIVE_TRACKING","features":[464]},{"name":"SLDF_DISABLE_LINK_PATH_TRACKING","features":[464]},{"name":"SLDF_ENABLE_TARGET_METADATA","features":[464]},{"name":"SLDF_FORCE_NO_LINKINFO","features":[464]},{"name":"SLDF_FORCE_NO_LINKTRACK","features":[464]},{"name":"SLDF_FORCE_UNCNAME","features":[464]},{"name":"SLDF_HAS_ARGS","features":[464]},{"name":"SLDF_HAS_DARWINID","features":[464]},{"name":"SLDF_HAS_EXP_ICON_SZ","features":[464]},{"name":"SLDF_HAS_EXP_SZ","features":[464]},{"name":"SLDF_HAS_ICONLOCATION","features":[464]},{"name":"SLDF_HAS_ID_LIST","features":[464]},{"name":"SLDF_HAS_LINK_INFO","features":[464]},{"name":"SLDF_HAS_NAME","features":[464]},{"name":"SLDF_HAS_RELPATH","features":[464]},{"name":"SLDF_HAS_WORKINGDIR","features":[464]},{"name":"SLDF_KEEP_LOCAL_IDLIST_FOR_UNC_TARGET","features":[464]},{"name":"SLDF_NO_KF_ALIAS","features":[464]},{"name":"SLDF_NO_PIDL_ALIAS","features":[464]},{"name":"SLDF_PERSIST_VOLUME_ID_RELATIVE","features":[464]},{"name":"SLDF_PREFER_ENVIRONMENT_PATH","features":[464]},{"name":"SLDF_RESERVED","features":[464]},{"name":"SLDF_RUNAS_USER","features":[464]},{"name":"SLDF_RUN_IN_SEPARATE","features":[464]},{"name":"SLDF_RUN_WITH_SHIMLAYER","features":[464]},{"name":"SLDF_UNALIAS_ON_SAVE","features":[464]},{"name":"SLDF_UNICODE","features":[464]},{"name":"SLDF_VALID","features":[464]},{"name":"SLGP_FLAGS","features":[464]},{"name":"SLGP_RAWPATH","features":[464]},{"name":"SLGP_RELATIVEPRIORITY","features":[464]},{"name":"SLGP_SHORTPATH","features":[464]},{"name":"SLGP_UNCPRIORITY","features":[464]},{"name":"SLOWAPPINFO","features":[303,464]},{"name":"SLR_ANY_MATCH","features":[464]},{"name":"SLR_FLAGS","features":[464]},{"name":"SLR_INVOKE_MSI","features":[464]},{"name":"SLR_KNOWNFOLDER","features":[464]},{"name":"SLR_MACHINE_IN_LOCAL_TARGET","features":[464]},{"name":"SLR_NOLINKINFO","features":[464]},{"name":"SLR_NONE","features":[464]},{"name":"SLR_NOSEARCH","features":[464]},{"name":"SLR_NOTRACK","features":[464]},{"name":"SLR_NOUPDATE","features":[464]},{"name":"SLR_NO_OBJECT_ID","features":[464]},{"name":"SLR_NO_UI","features":[464]},{"name":"SLR_NO_UI_WITH_MSG_PUMP","features":[464]},{"name":"SLR_OFFER_DELETE_WITHOUT_FILE","features":[464]},{"name":"SLR_UPDATE","features":[464]},{"name":"SLR_UPDATE_MACHINE_AND_SID","features":[464]},{"name":"SMAE_CONTRACTED","features":[464]},{"name":"SMAE_EXPANDED","features":[464]},{"name":"SMAE_USER","features":[464]},{"name":"SMAE_VALID","features":[464]},{"name":"SMCSHCHANGENOTIFYSTRUCT","features":[631]},{"name":"SMC_AUTOEXPANDCHANGE","features":[464]},{"name":"SMC_CHEVRONEXPAND","features":[464]},{"name":"SMC_CHEVRONGETTIP","features":[464]},{"name":"SMC_CREATE","features":[464]},{"name":"SMC_DEFAULTICON","features":[464]},{"name":"SMC_DEMOTE","features":[464]},{"name":"SMC_DISPLAYCHEVRONTIP","features":[464]},{"name":"SMC_EXITMENU","features":[464]},{"name":"SMC_GETAUTOEXPANDSTATE","features":[464]},{"name":"SMC_GETBKCONTEXTMENU","features":[464]},{"name":"SMC_GETCONTEXTMENUMODIFIER","features":[464]},{"name":"SMC_GETINFO","features":[464]},{"name":"SMC_GETOBJECT","features":[464]},{"name":"SMC_GETSFINFO","features":[464]},{"name":"SMC_GETSFOBJECT","features":[464]},{"name":"SMC_INITMENU","features":[464]},{"name":"SMC_NEWITEM","features":[464]},{"name":"SMC_OPEN","features":[464]},{"name":"SMC_PROMOTE","features":[464]},{"name":"SMC_REFRESH","features":[464]},{"name":"SMC_SETSFOBJECT","features":[464]},{"name":"SMC_SFDDRESTRICTED","features":[464]},{"name":"SMC_SFEXEC","features":[464]},{"name":"SMC_SFEXEC_MIDDLE","features":[464]},{"name":"SMC_SFSELECTITEM","features":[464]},{"name":"SMC_SHCHANGENOTIFY","features":[464]},{"name":"SMDATA","features":[303,631,365]},{"name":"SMDM_HMENU","features":[464]},{"name":"SMDM_SHELLFOLDER","features":[464]},{"name":"SMDM_TOOLBAR","features":[464]},{"name":"SMIF_ACCELERATOR","features":[464]},{"name":"SMIF_ALTSTATE","features":[464]},{"name":"SMIF_CHECKED","features":[464]},{"name":"SMIF_DEMOTED","features":[464]},{"name":"SMIF_DISABLED","features":[464]},{"name":"SMIF_DRAGNDROP","features":[464]},{"name":"SMIF_DROPCASCADE","features":[464]},{"name":"SMIF_DROPTARGET","features":[464]},{"name":"SMIF_HIDDEN","features":[464]},{"name":"SMIF_ICON","features":[464]},{"name":"SMIF_NEW","features":[464]},{"name":"SMIF_SUBMENU","features":[464]},{"name":"SMIF_TRACKPOPUP","features":[464]},{"name":"SMIM_FLAGS","features":[464]},{"name":"SMIM_ICON","features":[464]},{"name":"SMIM_TYPE","features":[464]},{"name":"SMINFO","features":[464]},{"name":"SMINFOFLAGS","features":[464]},{"name":"SMINFOMASK","features":[464]},{"name":"SMINFOTYPE","features":[464]},{"name":"SMINIT_AUTOEXPAND","features":[464]},{"name":"SMINIT_AUTOTOOLTIP","features":[464]},{"name":"SMINIT_CACHED","features":[464]},{"name":"SMINIT_DEFAULT","features":[464]},{"name":"SMINIT_DROPONCONTAINER","features":[464]},{"name":"SMINIT_HORIZONTAL","features":[464]},{"name":"SMINIT_RESTRICT_DRAGDROP","features":[464]},{"name":"SMINIT_TOPLEVEL","features":[464]},{"name":"SMINIT_VERTICAL","features":[464]},{"name":"SMINV_ID","features":[464]},{"name":"SMINV_REFRESH","features":[464]},{"name":"SMIT_SEPARATOR","features":[464]},{"name":"SMIT_STRING","features":[464]},{"name":"SMSET_BOTTOM","features":[464]},{"name":"SMSET_DONTOWN","features":[464]},{"name":"SMSET_TOP","features":[464]},{"name":"SORTCOLUMN","features":[374]},{"name":"SORTDIRECTION","features":[464]},{"name":"SORT_ASCENDING","features":[464]},{"name":"SORT_DESCENDING","features":[464]},{"name":"SORT_ORDER_TYPE","features":[464]},{"name":"SOT_DEFAULT","features":[464]},{"name":"SOT_IGNORE_FOLDERNESS","features":[464]},{"name":"SPACTION","features":[464]},{"name":"SPACTION_APPLYINGATTRIBS","features":[464]},{"name":"SPACTION_CALCULATING","features":[464]},{"name":"SPACTION_COPYING","features":[464]},{"name":"SPACTION_COPY_MOVING","features":[464]},{"name":"SPACTION_DELETING","features":[464]},{"name":"SPACTION_DOWNLOADING","features":[464]},{"name":"SPACTION_FORMATTING","features":[464]},{"name":"SPACTION_MOVING","features":[464]},{"name":"SPACTION_NONE","features":[464]},{"name":"SPACTION_RECYCLING","features":[464]},{"name":"SPACTION_RENAMING","features":[464]},{"name":"SPACTION_SEARCHING_FILES","features":[464]},{"name":"SPACTION_SEARCHING_INTERNET","features":[464]},{"name":"SPACTION_UPLOADING","features":[464]},{"name":"SPBEGINF_AUTOTIME","features":[464]},{"name":"SPBEGINF_MARQUEEPROGRESS","features":[464]},{"name":"SPBEGINF_NOCANCELBUTTON","features":[464]},{"name":"SPBEGINF_NOPROGRESSBAR","features":[464]},{"name":"SPBEGINF_NORMAL","features":[464]},{"name":"SPFF_CREATED_ON_THIS_DEVICE","features":[464]},{"name":"SPFF_DOWNLOAD_BY_DEFAULT","features":[464]},{"name":"SPFF_NONE","features":[464]},{"name":"SPINITF_MODAL","features":[464]},{"name":"SPINITF_NOMINIMIZE","features":[464]},{"name":"SPINITF_NORMAL","features":[464]},{"name":"SPMODE_BROWSER","features":[464]},{"name":"SPMODE_DBMON","features":[464]},{"name":"SPMODE_DEBUGBREAK","features":[464]},{"name":"SPMODE_DEBUGOUT","features":[464]},{"name":"SPMODE_EVENT","features":[464]},{"name":"SPMODE_EVENTTRACE","features":[464]},{"name":"SPMODE_FLUSH","features":[464]},{"name":"SPMODE_FORMATTEXT","features":[464]},{"name":"SPMODE_MEMWATCH","features":[464]},{"name":"SPMODE_MSGTRACE","features":[464]},{"name":"SPMODE_MSVM","features":[464]},{"name":"SPMODE_MULTISTOP","features":[464]},{"name":"SPMODE_PERFTAGS","features":[464]},{"name":"SPMODE_PROFILE","features":[464]},{"name":"SPMODE_SHELL","features":[464]},{"name":"SPMODE_TEST","features":[464]},{"name":"SPTEXT","features":[464]},{"name":"SPTEXT_ACTIONDESCRIPTION","features":[464]},{"name":"SPTEXT_ACTIONDETAIL","features":[464]},{"name":"SRRF_NOEXPAND","features":[464]},{"name":"SRRF_NOVIRT","features":[464]},{"name":"SRRF_RM_ANY","features":[464]},{"name":"SRRF_RM_NORMAL","features":[464]},{"name":"SRRF_RM_SAFE","features":[464]},{"name":"SRRF_RM_SAFENETWORK","features":[464]},{"name":"SRRF_RT_ANY","features":[464]},{"name":"SRRF_RT_REG_BINARY","features":[464]},{"name":"SRRF_RT_REG_DWORD","features":[464]},{"name":"SRRF_RT_REG_EXPAND_SZ","features":[464]},{"name":"SRRF_RT_REG_MULTI_SZ","features":[464]},{"name":"SRRF_RT_REG_NONE","features":[464]},{"name":"SRRF_RT_REG_QWORD","features":[464]},{"name":"SRRF_RT_REG_SZ","features":[464]},{"name":"SRRF_ZEROONFAILURE","features":[464]},{"name":"SSF_AUTOCHECKSELECT","features":[464]},{"name":"SSF_DESKTOPHTML","features":[464]},{"name":"SSF_DONTPRETTYPATH","features":[464]},{"name":"SSF_DOUBLECLICKINWEBVIEW","features":[464]},{"name":"SSF_FILTER","features":[464]},{"name":"SSF_HIDDENFILEEXTS","features":[464]},{"name":"SSF_HIDEICONS","features":[464]},{"name":"SSF_ICONSONLY","features":[464]},{"name":"SSF_MAPNETDRVBUTTON","features":[464]},{"name":"SSF_MASK","features":[464]},{"name":"SSF_NOCONFIRMRECYCLE","features":[464]},{"name":"SSF_NONETCRAWLING","features":[464]},{"name":"SSF_SEPPROCESS","features":[464]},{"name":"SSF_SERVERADMINUI","features":[464]},{"name":"SSF_SHOWALLOBJECTS","features":[464]},{"name":"SSF_SHOWATTRIBCOL","features":[464]},{"name":"SSF_SHOWCOMPCOLOR","features":[464]},{"name":"SSF_SHOWEXTENSIONS","features":[464]},{"name":"SSF_SHOWINFOTIP","features":[464]},{"name":"SSF_SHOWSTARTPAGE","features":[464]},{"name":"SSF_SHOWSTATUSBAR","features":[464]},{"name":"SSF_SHOWSUPERHIDDEN","features":[464]},{"name":"SSF_SHOWSYSFILES","features":[464]},{"name":"SSF_SHOWTYPEOVERLAY","features":[464]},{"name":"SSF_SORTCOLUMNS","features":[464]},{"name":"SSF_STARTPANELON","features":[464]},{"name":"SSF_WEBVIEW","features":[464]},{"name":"SSF_WIN95CLASSIC","features":[464]},{"name":"SSM_CLEAR","features":[464]},{"name":"SSM_REFRESH","features":[464]},{"name":"SSM_SET","features":[464]},{"name":"SSM_UPDATE","features":[464]},{"name":"STGOP","features":[464]},{"name":"STGOP_APPLYPROPERTIES","features":[464]},{"name":"STGOP_COPY","features":[464]},{"name":"STGOP_MOVE","features":[464]},{"name":"STGOP_NEW","features":[464]},{"name":"STGOP_REMOVE","features":[464]},{"name":"STGOP_RENAME","features":[464]},{"name":"STGOP_SYNC","features":[464]},{"name":"STIF_DEFAULT","features":[464]},{"name":"STIF_SUPPORT_HEX","features":[464]},{"name":"STORAGE_PROVIDER_FILE_FLAGS","features":[464]},{"name":"STORE_E_NEWER_VERSION_AVAILABLE","features":[464]},{"name":"STPFLAG","features":[464]},{"name":"STPF_NONE","features":[464]},{"name":"STPF_USEAPPPEEKALWAYS","features":[464]},{"name":"STPF_USEAPPPEEKWHENACTIVE","features":[464]},{"name":"STPF_USEAPPTHUMBNAILALWAYS","features":[464]},{"name":"STPF_USEAPPTHUMBNAILWHENACTIVE","features":[464]},{"name":"STR_AVOID_DRIVE_RESTRICTION_POLICY","features":[464]},{"name":"STR_BIND_DELEGATE_CREATE_OBJECT","features":[464]},{"name":"STR_BIND_FOLDERS_READ_ONLY","features":[464]},{"name":"STR_BIND_FOLDER_ENUM_MODE","features":[464]},{"name":"STR_BIND_FORCE_FOLDER_SHORTCUT_RESOLVE","features":[464]},{"name":"STR_DONT_PARSE_RELATIVE","features":[464]},{"name":"STR_DONT_RESOLVE_LINK","features":[464]},{"name":"STR_ENUM_ITEMS_FLAGS","features":[464]},{"name":"STR_FILE_SYS_BIND_DATA","features":[464]},{"name":"STR_FILE_SYS_BIND_DATA_WIN7_FORMAT","features":[464]},{"name":"STR_GET_ASYNC_HANDLER","features":[464]},{"name":"STR_GPS_BESTEFFORT","features":[464]},{"name":"STR_GPS_DELAYCREATION","features":[464]},{"name":"STR_GPS_FASTPROPERTIESONLY","features":[464]},{"name":"STR_GPS_HANDLERPROPERTIESONLY","features":[464]},{"name":"STR_GPS_NO_OPLOCK","features":[464]},{"name":"STR_GPS_OPENSLOWITEM","features":[464]},{"name":"STR_INTERNAL_NAVIGATE","features":[464]},{"name":"STR_INTERNETFOLDER_PARSE_ONLY_URLMON_BINDABLE","features":[464]},{"name":"STR_ITEM_CACHE_CONTEXT","features":[464]},{"name":"STR_MYDOCS_CLSID","features":[464]},{"name":"STR_NO_VALIDATE_FILENAME_CHARS","features":[464]},{"name":"STR_PARSE_ALLOW_INTERNET_SHELL_FOLDERS","features":[464]},{"name":"STR_PARSE_AND_CREATE_ITEM","features":[464]},{"name":"STR_PARSE_DONT_REQUIRE_VALIDATED_URLS","features":[464]},{"name":"STR_PARSE_EXPLICIT_ASSOCIATION_SUCCESSFUL","features":[464]},{"name":"STR_PARSE_PARTIAL_IDLIST","features":[464]},{"name":"STR_PARSE_PREFER_FOLDER_BROWSING","features":[464]},{"name":"STR_PARSE_PREFER_WEB_BROWSING","features":[464]},{"name":"STR_PARSE_PROPERTYSTORE","features":[464]},{"name":"STR_PARSE_SHELL_PROTOCOL_TO_FILE_OBJECTS","features":[464]},{"name":"STR_PARSE_SHOW_NET_DIAGNOSTICS_UI","features":[464]},{"name":"STR_PARSE_SKIP_NET_CACHE","features":[464]},{"name":"STR_PARSE_TRANSLATE_ALIASES","features":[464]},{"name":"STR_PARSE_WITH_EXPLICIT_ASSOCAPP","features":[464]},{"name":"STR_PARSE_WITH_EXPLICIT_PROGID","features":[464]},{"name":"STR_PARSE_WITH_PROPERTIES","features":[464]},{"name":"STR_PROPERTYBAG_PARAM","features":[464]},{"name":"STR_REFERRER_IDENTIFIER","features":[464]},{"name":"STR_SKIP_BINDING_CLSID","features":[464]},{"name":"STR_STORAGEITEM_CREATION_FLAGS","features":[464]},{"name":"STR_TAB_REUSE_IDENTIFIER","features":[464]},{"name":"STR_TRACK_CLSID","features":[464]},{"name":"SUBCLASSPROC","features":[303,464]},{"name":"SV2CVW2_PARAMS","features":[303,413,464]},{"name":"SV3CVW3_DEFAULT","features":[464]},{"name":"SV3CVW3_FORCEFOLDERFLAGS","features":[464]},{"name":"SV3CVW3_FORCEVIEWMODE","features":[464]},{"name":"SV3CVW3_NONINTERACTIVE","features":[464]},{"name":"SVGIO_ALLVIEW","features":[464]},{"name":"SVGIO_BACKGROUND","features":[464]},{"name":"SVGIO_CHECKED","features":[464]},{"name":"SVGIO_FLAG_VIEWORDER","features":[464]},{"name":"SVGIO_SELECTION","features":[464]},{"name":"SVGIO_TYPE_MASK","features":[464]},{"name":"SVSI_CHECK","features":[464]},{"name":"SVSI_CHECK2","features":[464]},{"name":"SVSI_DESELECT","features":[464]},{"name":"SVSI_DESELECTOTHERS","features":[464]},{"name":"SVSI_EDIT","features":[464]},{"name":"SVSI_ENSUREVISIBLE","features":[464]},{"name":"SVSI_FOCUSED","features":[464]},{"name":"SVSI_KEYBOARDSELECT","features":[464]},{"name":"SVSI_NOTAKEFOCUS","features":[464]},{"name":"SVSI_POSITIONITEM","features":[464]},{"name":"SVSI_SELECT","features":[464]},{"name":"SVSI_SELECTIONMARK","features":[464]},{"name":"SVSI_TRANSLATEPT","features":[464]},{"name":"SVUIA_ACTIVATE_FOCUS","features":[464]},{"name":"SVUIA_ACTIVATE_NOFOCUS","features":[464]},{"name":"SVUIA_DEACTIVATE","features":[464]},{"name":"SVUIA_INPLACEACTIVATE","features":[464]},{"name":"SVUIA_STATUS","features":[464]},{"name":"SWC_3RDPARTY","features":[464]},{"name":"SWC_BROWSER","features":[464]},{"name":"SWC_CALLBACK","features":[464]},{"name":"SWC_DESKTOP","features":[464]},{"name":"SWC_EXPLORER","features":[464]},{"name":"SWFO_COOKIEPASSED","features":[464]},{"name":"SWFO_INCLUDEPENDING","features":[464]},{"name":"SWFO_NEEDDISPATCH","features":[464]},{"name":"SYNCMGRERRORFLAGS","features":[464]},{"name":"SYNCMGRERRORFLAG_ENABLEJUMPTEXT","features":[464]},{"name":"SYNCMGRFLAG","features":[464]},{"name":"SYNCMGRFLAG_CONNECT","features":[464]},{"name":"SYNCMGRFLAG_EVENTMASK","features":[464]},{"name":"SYNCMGRFLAG_IDLE","features":[464]},{"name":"SYNCMGRFLAG_INVOKE","features":[464]},{"name":"SYNCMGRFLAG_MANUAL","features":[464]},{"name":"SYNCMGRFLAG_MAYBOTHERUSER","features":[464]},{"name":"SYNCMGRFLAG_PENDINGDISCONNECT","features":[464]},{"name":"SYNCMGRFLAG_SCHEDULED","features":[464]},{"name":"SYNCMGRFLAG_SETTINGS","features":[464]},{"name":"SYNCMGRHANDLERFLAGS","features":[464]},{"name":"SYNCMGRHANDLERFLAG_MASK","features":[464]},{"name":"SYNCMGRHANDLERINFO","features":[464,365]},{"name":"SYNCMGRHANDLER_ALWAYSLISTHANDLER","features":[464]},{"name":"SYNCMGRHANDLER_HASPROPERTIES","features":[464]},{"name":"SYNCMGRHANDLER_HIDDEN","features":[464]},{"name":"SYNCMGRHANDLER_MAYESTABLISHCONNECTION","features":[464]},{"name":"SYNCMGRINVOKEFLAGS","features":[464]},{"name":"SYNCMGRINVOKE_MINIMIZED","features":[464]},{"name":"SYNCMGRINVOKE_STARTSYNC","features":[464]},{"name":"SYNCMGRITEM","features":[303,464,365]},{"name":"SYNCMGRITEMFLAGS","features":[464]},{"name":"SYNCMGRITEMSTATE","features":[464]},{"name":"SYNCMGRITEMSTATE_CHECKED","features":[464]},{"name":"SYNCMGRITEMSTATE_UNCHECKED","features":[464]},{"name":"SYNCMGRITEM_HASPROPERTIES","features":[464]},{"name":"SYNCMGRITEM_HIDDEN","features":[464]},{"name":"SYNCMGRITEM_ITEMFLAGMASK","features":[464]},{"name":"SYNCMGRITEM_LASTUPDATETIME","features":[464]},{"name":"SYNCMGRITEM_MAYDELETEITEM","features":[464]},{"name":"SYNCMGRITEM_ROAMINGUSER","features":[464]},{"name":"SYNCMGRITEM_TEMPORARY","features":[464]},{"name":"SYNCMGRLOGERRORINFO","features":[464]},{"name":"SYNCMGRLOGERROR_ERRORFLAGS","features":[464]},{"name":"SYNCMGRLOGERROR_ERRORID","features":[464]},{"name":"SYNCMGRLOGERROR_ITEMID","features":[464]},{"name":"SYNCMGRLOGLEVEL","features":[464]},{"name":"SYNCMGRLOGLEVEL_ERROR","features":[464]},{"name":"SYNCMGRLOGLEVEL_INFORMATION","features":[464]},{"name":"SYNCMGRLOGLEVEL_LOGLEVELMAX","features":[464]},{"name":"SYNCMGRLOGLEVEL_WARNING","features":[464]},{"name":"SYNCMGRPROGRESSITEM","features":[464]},{"name":"SYNCMGRPROGRESSITEM_MAXVALUE","features":[464]},{"name":"SYNCMGRPROGRESSITEM_PROGVALUE","features":[464]},{"name":"SYNCMGRPROGRESSITEM_STATUSTEXT","features":[464]},{"name":"SYNCMGRPROGRESSITEM_STATUSTYPE","features":[464]},{"name":"SYNCMGRREGISTERFLAGS","features":[464]},{"name":"SYNCMGRREGISTERFLAGS_MASK","features":[464]},{"name":"SYNCMGRREGISTERFLAG_CONNECT","features":[464]},{"name":"SYNCMGRREGISTERFLAG_IDLE","features":[464]},{"name":"SYNCMGRREGISTERFLAG_PENDINGDISCONNECT","features":[464]},{"name":"SYNCMGRSTATUS","features":[464]},{"name":"SYNCMGRSTATUS_DELETED","features":[464]},{"name":"SYNCMGRSTATUS_FAILED","features":[464]},{"name":"SYNCMGRSTATUS_PAUSED","features":[464]},{"name":"SYNCMGRSTATUS_PENDING","features":[464]},{"name":"SYNCMGRSTATUS_RESUMING","features":[464]},{"name":"SYNCMGRSTATUS_SKIPPED","features":[464]},{"name":"SYNCMGRSTATUS_STOPPED","features":[464]},{"name":"SYNCMGRSTATUS_SUCCEEDED","features":[464]},{"name":"SYNCMGRSTATUS_UPDATING","features":[464]},{"name":"SYNCMGRSTATUS_UPDATING_INDETERMINATE","features":[464]},{"name":"SYNCMGR_CANCEL_REQUEST","features":[464]},{"name":"SYNCMGR_CF_NONE","features":[464]},{"name":"SYNCMGR_CF_NOUI","features":[464]},{"name":"SYNCMGR_CF_NOWAIT","features":[464]},{"name":"SYNCMGR_CF_VALID","features":[464]},{"name":"SYNCMGR_CF_WAIT","features":[464]},{"name":"SYNCMGR_CIT_DELETED","features":[464]},{"name":"SYNCMGR_CIT_UPDATED","features":[464]},{"name":"SYNCMGR_CONFLICT_ID_INFO","features":[354,464]},{"name":"SYNCMGR_CONFLICT_ITEM_TYPE","features":[464]},{"name":"SYNCMGR_CONTROL_FLAGS","features":[464]},{"name":"SYNCMGR_CR_CANCEL_ALL","features":[464]},{"name":"SYNCMGR_CR_CANCEL_ITEM","features":[464]},{"name":"SYNCMGR_CR_MAX","features":[464]},{"name":"SYNCMGR_CR_NONE","features":[464]},{"name":"SYNCMGR_EF_NONE","features":[464]},{"name":"SYNCMGR_EF_VALID","features":[464]},{"name":"SYNCMGR_EL_ERROR","features":[464]},{"name":"SYNCMGR_EL_INFORMATION","features":[464]},{"name":"SYNCMGR_EL_MAX","features":[464]},{"name":"SYNCMGR_EL_WARNING","features":[464]},{"name":"SYNCMGR_EVENT_FLAGS","features":[464]},{"name":"SYNCMGR_EVENT_LEVEL","features":[464]},{"name":"SYNCMGR_HANDLER_CAPABILITIES","features":[464]},{"name":"SYNCMGR_HANDLER_POLICIES","features":[464]},{"name":"SYNCMGR_HANDLER_TYPE","features":[464]},{"name":"SYNCMGR_HCM_CAN_BROWSE_CONTENT","features":[464]},{"name":"SYNCMGR_HCM_CAN_SHOW_SCHEDULE","features":[464]},{"name":"SYNCMGR_HCM_CONFLICT_STORE","features":[464]},{"name":"SYNCMGR_HCM_EVENT_STORE","features":[464]},{"name":"SYNCMGR_HCM_NONE","features":[464]},{"name":"SYNCMGR_HCM_PROVIDES_ICON","features":[464]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ACTIVATE","features":[464]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DEACTIVATE","features":[464]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DISABLE","features":[464]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ENABLE","features":[464]},{"name":"SYNCMGR_HCM_SUPPORTS_CONCURRENT_SESSIONS","features":[464]},{"name":"SYNCMGR_HCM_VALID_MASK","features":[464]},{"name":"SYNCMGR_HPM_BACKGROUND_SYNC_ONLY","features":[464]},{"name":"SYNCMGR_HPM_DISABLE_BROWSE","features":[464]},{"name":"SYNCMGR_HPM_DISABLE_DISABLE","features":[464]},{"name":"SYNCMGR_HPM_DISABLE_ENABLE","features":[464]},{"name":"SYNCMGR_HPM_DISABLE_SCHEDULE","features":[464]},{"name":"SYNCMGR_HPM_DISABLE_START_SYNC","features":[464]},{"name":"SYNCMGR_HPM_DISABLE_STOP_SYNC","features":[464]},{"name":"SYNCMGR_HPM_HIDDEN_BY_DEFAULT","features":[464]},{"name":"SYNCMGR_HPM_NONE","features":[464]},{"name":"SYNCMGR_HPM_PREVENT_ACTIVATE","features":[464]},{"name":"SYNCMGR_HPM_PREVENT_DEACTIVATE","features":[464]},{"name":"SYNCMGR_HPM_PREVENT_DISABLE","features":[464]},{"name":"SYNCMGR_HPM_PREVENT_ENABLE","features":[464]},{"name":"SYNCMGR_HPM_PREVENT_START_SYNC","features":[464]},{"name":"SYNCMGR_HPM_PREVENT_STOP_SYNC","features":[464]},{"name":"SYNCMGR_HPM_VALID_MASK","features":[464]},{"name":"SYNCMGR_HT_APPLICATION","features":[464]},{"name":"SYNCMGR_HT_COMPUTER","features":[464]},{"name":"SYNCMGR_HT_DEVICE","features":[464]},{"name":"SYNCMGR_HT_FOLDER","features":[464]},{"name":"SYNCMGR_HT_MAX","features":[464]},{"name":"SYNCMGR_HT_MIN","features":[464]},{"name":"SYNCMGR_HT_SERVICE","features":[464]},{"name":"SYNCMGR_HT_UNSPECIFIED","features":[464]},{"name":"SYNCMGR_ICM_CAN_BROWSE_CONTENT","features":[464]},{"name":"SYNCMGR_ICM_CAN_DELETE","features":[464]},{"name":"SYNCMGR_ICM_CONFLICT_STORE","features":[464]},{"name":"SYNCMGR_ICM_EVENT_STORE","features":[464]},{"name":"SYNCMGR_ICM_NONE","features":[464]},{"name":"SYNCMGR_ICM_PROVIDES_ICON","features":[464]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DELETE","features":[464]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DISABLE","features":[464]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_ENABLE","features":[464]},{"name":"SYNCMGR_ICM_VALID_MASK","features":[464]},{"name":"SYNCMGR_IPM_DISABLE_BROWSE","features":[464]},{"name":"SYNCMGR_IPM_DISABLE_DELETE","features":[464]},{"name":"SYNCMGR_IPM_DISABLE_DISABLE","features":[464]},{"name":"SYNCMGR_IPM_DISABLE_ENABLE","features":[464]},{"name":"SYNCMGR_IPM_DISABLE_START_SYNC","features":[464]},{"name":"SYNCMGR_IPM_DISABLE_STOP_SYNC","features":[464]},{"name":"SYNCMGR_IPM_HIDDEN_BY_DEFAULT","features":[464]},{"name":"SYNCMGR_IPM_NONE","features":[464]},{"name":"SYNCMGR_IPM_PREVENT_DISABLE","features":[464]},{"name":"SYNCMGR_IPM_PREVENT_ENABLE","features":[464]},{"name":"SYNCMGR_IPM_PREVENT_START_SYNC","features":[464]},{"name":"SYNCMGR_IPM_PREVENT_STOP_SYNC","features":[464]},{"name":"SYNCMGR_IPM_VALID_MASK","features":[464]},{"name":"SYNCMGR_ITEM_CAPABILITIES","features":[464]},{"name":"SYNCMGR_ITEM_POLICIES","features":[464]},{"name":"SYNCMGR_OBJECTID_BrowseContent","features":[464]},{"name":"SYNCMGR_OBJECTID_ConflictStore","features":[464]},{"name":"SYNCMGR_OBJECTID_EventLinkClick","features":[464]},{"name":"SYNCMGR_OBJECTID_EventStore","features":[464]},{"name":"SYNCMGR_OBJECTID_Icon","features":[464]},{"name":"SYNCMGR_OBJECTID_QueryBeforeActivate","features":[464]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDeactivate","features":[464]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDelete","features":[464]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDisable","features":[464]},{"name":"SYNCMGR_OBJECTID_QueryBeforeEnable","features":[464]},{"name":"SYNCMGR_OBJECTID_ShowSchedule","features":[464]},{"name":"SYNCMGR_PC_KEEP_MULTIPLE","features":[464]},{"name":"SYNCMGR_PC_KEEP_ONE","features":[464]},{"name":"SYNCMGR_PC_KEEP_RECENT","features":[464]},{"name":"SYNCMGR_PC_NO_CHOICE","features":[464]},{"name":"SYNCMGR_PC_REMOVE_FROM_SYNC_SET","features":[464]},{"name":"SYNCMGR_PC_SKIP","features":[464]},{"name":"SYNCMGR_PNS_CANCEL","features":[464]},{"name":"SYNCMGR_PNS_CONTINUE","features":[464]},{"name":"SYNCMGR_PNS_DEFAULT","features":[464]},{"name":"SYNCMGR_PRESENTER_CHOICE","features":[464]},{"name":"SYNCMGR_PRESENTER_NEXT_STEP","features":[464]},{"name":"SYNCMGR_PROGRESS_STATUS","features":[464]},{"name":"SYNCMGR_PS_CANCELED","features":[464]},{"name":"SYNCMGR_PS_DISCONNECTED","features":[464]},{"name":"SYNCMGR_PS_FAILED","features":[464]},{"name":"SYNCMGR_PS_MAX","features":[464]},{"name":"SYNCMGR_PS_SUCCEEDED","features":[464]},{"name":"SYNCMGR_PS_UPDATING","features":[464]},{"name":"SYNCMGR_PS_UPDATING_INDETERMINATE","features":[464]},{"name":"SYNCMGR_RA_KEEPOTHER","features":[464]},{"name":"SYNCMGR_RA_KEEPRECENT","features":[464]},{"name":"SYNCMGR_RA_KEEP_MULTIPLE","features":[464]},{"name":"SYNCMGR_RA_KEEP_SINGLE","features":[464]},{"name":"SYNCMGR_RA_REMOVEFROMSYNCSET","features":[464]},{"name":"SYNCMGR_RA_VALID","features":[464]},{"name":"SYNCMGR_RESOLUTION_ABILITIES","features":[464]},{"name":"SYNCMGR_RESOLUTION_FEEDBACK","features":[464]},{"name":"SYNCMGR_RF_CANCEL","features":[464]},{"name":"SYNCMGR_RF_CONTINUE","features":[464]},{"name":"SYNCMGR_RF_REFRESH","features":[464]},{"name":"SYNCMGR_SCF_IGNORE_IF_ALREADY_SYNCING","features":[464]},{"name":"SYNCMGR_SCF_NONE","features":[464]},{"name":"SYNCMGR_SCF_VALID","features":[464]},{"name":"SYNCMGR_SYNC_CONTROL_FLAGS","features":[464]},{"name":"SYNCMGR_UPDATE_REASON","features":[464]},{"name":"SYNCMGR_UR_ADDED","features":[464]},{"name":"SYNCMGR_UR_CHANGED","features":[464]},{"name":"SYNCMGR_UR_MAX","features":[464]},{"name":"SYNCMGR_UR_REMOVED","features":[464]},{"name":"SZ_CONTENTTYPE_CDF","features":[464]},{"name":"SZ_CONTENTTYPE_CDFA","features":[464]},{"name":"SZ_CONTENTTYPE_CDFW","features":[464]},{"name":"SZ_CONTENTTYPE_HTML","features":[464]},{"name":"SZ_CONTENTTYPE_HTMLA","features":[464]},{"name":"SZ_CONTENTTYPE_HTMLW","features":[464]},{"name":"S_SYNCMGR_CANCELALL","features":[464]},{"name":"S_SYNCMGR_CANCELITEM","features":[464]},{"name":"S_SYNCMGR_ENUMITEMS","features":[464]},{"name":"S_SYNCMGR_ITEMDELETED","features":[464]},{"name":"S_SYNCMGR_MISSINGITEMS","features":[464]},{"name":"S_SYNCMGR_RETRYSYNC","features":[464]},{"name":"ScheduledTasks","features":[464]},{"name":"SearchFolderItemFactory","features":[464]},{"name":"SecureLockIconConstants","features":[464]},{"name":"SelectedItemCount_Property_GUID","features":[464]},{"name":"SetCurrentProcessExplicitAppUserModelID","features":[464]},{"name":"SetMenuContextHelpId","features":[303,464,365]},{"name":"SetWindowContextHelpId","features":[303,464]},{"name":"SetWindowSubclass","features":[303,464]},{"name":"SharedBitmap","features":[464]},{"name":"SharingConfigurationManager","features":[464]},{"name":"Shell","features":[464]},{"name":"ShellAboutA","features":[303,464,365]},{"name":"ShellAboutW","features":[303,464,365]},{"name":"ShellBrowserWindow","features":[464]},{"name":"ShellDesktop","features":[464]},{"name":"ShellDispatchInproc","features":[464]},{"name":"ShellExecuteA","features":[303,464,365]},{"name":"ShellExecuteExA","features":[303,364,464]},{"name":"ShellExecuteExW","features":[303,364,464]},{"name":"ShellExecuteW","features":[303,464,365]},{"name":"ShellFSFolder","features":[464]},{"name":"ShellFolderItem","features":[464]},{"name":"ShellFolderView","features":[464]},{"name":"ShellFolderViewOC","features":[464]},{"name":"ShellFolderViewOptions","features":[464]},{"name":"ShellImageDataFactory","features":[464]},{"name":"ShellItem","features":[464]},{"name":"ShellLibrary","features":[464]},{"name":"ShellLink","features":[464]},{"name":"ShellLinkObject","features":[464]},{"name":"ShellMessageBoxA","features":[303,464,365]},{"name":"ShellMessageBoxW","features":[303,464,365]},{"name":"ShellNameSpace","features":[464]},{"name":"ShellSpecialFolderConstants","features":[464]},{"name":"ShellUIHelper","features":[464]},{"name":"ShellWindowFindWindowOptions","features":[464]},{"name":"ShellWindowTypeConstants","features":[464]},{"name":"ShellWindows","features":[464]},{"name":"Shell_GetCachedImageIndex","features":[464]},{"name":"Shell_GetCachedImageIndexA","features":[464]},{"name":"Shell_GetCachedImageIndexW","features":[464]},{"name":"Shell_GetImageLists","features":[303,353,464]},{"name":"Shell_MergeMenus","features":[464,365]},{"name":"Shell_NotifyIconA","features":[303,464,365]},{"name":"Shell_NotifyIconGetRect","features":[303,464]},{"name":"Shell_NotifyIconW","features":[303,464,365]},{"name":"ShowInputPaneAnimationCoordinator","features":[464]},{"name":"SignalFileOpen","features":[303,631]},{"name":"SimpleConflictPresenter","features":[464]},{"name":"SizeCategorizer","features":[464]},{"name":"SmartcardCredentialProvider","features":[464]},{"name":"SmartcardPinProvider","features":[464]},{"name":"SmartcardReaderSelectionProvider","features":[464]},{"name":"SmartcardWinRTProvider","features":[464]},{"name":"SoftwareUpdateMessageBox","features":[303,530,464]},{"name":"StartMenuPin","features":[464]},{"name":"StgMakeUniqueName","features":[427,464]},{"name":"StorageProviderBanners","features":[464]},{"name":"StrCSpnA","features":[464]},{"name":"StrCSpnIA","features":[464]},{"name":"StrCSpnIW","features":[464]},{"name":"StrCSpnW","features":[464]},{"name":"StrCatBuffA","features":[464]},{"name":"StrCatBuffW","features":[464]},{"name":"StrCatChainW","features":[464]},{"name":"StrCatW","features":[464]},{"name":"StrChrA","features":[464]},{"name":"StrChrIA","features":[464]},{"name":"StrChrIW","features":[464]},{"name":"StrChrNIW","features":[464]},{"name":"StrChrNW","features":[464]},{"name":"StrChrW","features":[464]},{"name":"StrCmpCA","features":[464]},{"name":"StrCmpCW","features":[464]},{"name":"StrCmpICA","features":[464]},{"name":"StrCmpICW","features":[464]},{"name":"StrCmpIW","features":[464]},{"name":"StrCmpLogicalW","features":[464]},{"name":"StrCmpNA","features":[464]},{"name":"StrCmpNCA","features":[464]},{"name":"StrCmpNCW","features":[464]},{"name":"StrCmpNIA","features":[464]},{"name":"StrCmpNICA","features":[464]},{"name":"StrCmpNICW","features":[464]},{"name":"StrCmpNIW","features":[464]},{"name":"StrCmpNW","features":[464]},{"name":"StrCmpW","features":[464]},{"name":"StrCpyNW","features":[464]},{"name":"StrCpyW","features":[464]},{"name":"StrDupA","features":[464]},{"name":"StrDupW","features":[464]},{"name":"StrFormatByteSize64A","features":[464]},{"name":"StrFormatByteSizeA","features":[464]},{"name":"StrFormatByteSizeEx","features":[464]},{"name":"StrFormatByteSizeW","features":[464]},{"name":"StrFormatKBSizeA","features":[464]},{"name":"StrFormatKBSizeW","features":[464]},{"name":"StrFromTimeIntervalA","features":[464]},{"name":"StrFromTimeIntervalW","features":[464]},{"name":"StrIsIntlEqualA","features":[303,464]},{"name":"StrIsIntlEqualW","features":[303,464]},{"name":"StrNCatA","features":[464]},{"name":"StrNCatW","features":[464]},{"name":"StrPBrkA","features":[464]},{"name":"StrPBrkW","features":[464]},{"name":"StrRChrA","features":[464]},{"name":"StrRChrIA","features":[464]},{"name":"StrRChrIW","features":[464]},{"name":"StrRChrW","features":[464]},{"name":"StrRStrIA","features":[464]},{"name":"StrRStrIW","features":[464]},{"name":"StrRetToBSTR","features":[631]},{"name":"StrRetToBufA","features":[631]},{"name":"StrRetToBufW","features":[631]},{"name":"StrRetToStrA","features":[631]},{"name":"StrRetToStrW","features":[631]},{"name":"StrSpnA","features":[464]},{"name":"StrSpnW","features":[464]},{"name":"StrStrA","features":[464]},{"name":"StrStrIA","features":[464]},{"name":"StrStrIW","features":[464]},{"name":"StrStrNIW","features":[464]},{"name":"StrStrNW","features":[464]},{"name":"StrStrW","features":[464]},{"name":"StrToInt64ExA","features":[303,464]},{"name":"StrToInt64ExW","features":[303,464]},{"name":"StrToIntA","features":[464]},{"name":"StrToIntExA","features":[303,464]},{"name":"StrToIntExW","features":[303,464]},{"name":"StrToIntW","features":[464]},{"name":"StrTrimA","features":[303,464]},{"name":"StrTrimW","features":[303,464]},{"name":"SuspensionDependencyManager","features":[464]},{"name":"SyncMgr","features":[464]},{"name":"SyncMgrClient","features":[464]},{"name":"SyncMgrControl","features":[464]},{"name":"SyncMgrFolder","features":[464]},{"name":"SyncMgrScheduleWizard","features":[464]},{"name":"SyncResultsFolder","features":[464]},{"name":"SyncSetupFolder","features":[464]},{"name":"TBIF_APPEND","features":[464]},{"name":"TBIF_DEFAULT","features":[464]},{"name":"TBIF_INTERNETBAR","features":[464]},{"name":"TBIF_NOTOOLBAR","features":[464]},{"name":"TBIF_PREPEND","features":[464]},{"name":"TBIF_REPLACE","features":[464]},{"name":"TBIF_STANDARDTOOLBAR","features":[464]},{"name":"TBINFO","features":[464]},{"name":"TBPFLAG","features":[464]},{"name":"TBPF_ERROR","features":[464]},{"name":"TBPF_INDETERMINATE","features":[464]},{"name":"TBPF_NOPROGRESS","features":[464]},{"name":"TBPF_NORMAL","features":[464]},{"name":"TBPF_PAUSED","features":[464]},{"name":"THBF_DISABLED","features":[464]},{"name":"THBF_DISMISSONCLICK","features":[464]},{"name":"THBF_ENABLED","features":[464]},{"name":"THBF_HIDDEN","features":[464]},{"name":"THBF_NOBACKGROUND","features":[464]},{"name":"THBF_NONINTERACTIVE","features":[464]},{"name":"THBN_CLICKED","features":[464]},{"name":"THB_BITMAP","features":[464]},{"name":"THB_FLAGS","features":[464]},{"name":"THB_ICON","features":[464]},{"name":"THB_TOOLTIP","features":[464]},{"name":"THUMBBUTTON","features":[464,365]},{"name":"THUMBBUTTONFLAGS","features":[464]},{"name":"THUMBBUTTONMASK","features":[464]},{"name":"TITLEBARNAMELEN","features":[464]},{"name":"TI_BITMAP","features":[464]},{"name":"TI_FLAGS","features":[464]},{"name":"TI_JPEG","features":[464]},{"name":"TLEF_ABSOLUTE","features":[464]},{"name":"TLEF_EXCLUDE_ABOUT_PAGES","features":[464]},{"name":"TLEF_EXCLUDE_SUBFRAME_ENTRIES","features":[464]},{"name":"TLEF_INCLUDE_UNINVOKEABLE","features":[464]},{"name":"TLEF_RELATIVE_BACK","features":[464]},{"name":"TLEF_RELATIVE_FORE","features":[464]},{"name":"TLEF_RELATIVE_INCLUDE_CURRENT","features":[464]},{"name":"TLENUMF","features":[464]},{"name":"TLMENUF_BACK","features":[464]},{"name":"TLMENUF_FORE","features":[464]},{"name":"TLMENUF_INCLUDECURRENT","features":[464]},{"name":"TLOG_BACK","features":[464]},{"name":"TLOG_CURRENT","features":[464]},{"name":"TLOG_FORE","features":[464]},{"name":"TOOLBARITEM","features":[303,314,413,464]},{"name":"TRANSLATEURL_FL_GUESS_PROTOCOL","features":[464]},{"name":"TRANSLATEURL_FL_USE_DEFAULT_PROTOCOL","features":[464]},{"name":"TRANSLATEURL_IN_FLAGS","features":[464]},{"name":"TSF_ALLOW_DECRYPTION","features":[464]},{"name":"TSF_COPY_CREATION_TIME","features":[464]},{"name":"TSF_COPY_HARD_LINK","features":[464]},{"name":"TSF_COPY_LOCALIZED_NAME","features":[464]},{"name":"TSF_COPY_WRITE_TIME","features":[464]},{"name":"TSF_DELETE_RECYCLE_IF_POSSIBLE","features":[464]},{"name":"TSF_FAIL_EXIST","features":[464]},{"name":"TSF_MOVE_AS_COPY_DELETE","features":[464]},{"name":"TSF_NORMAL","features":[464]},{"name":"TSF_NO_SECURITY","features":[464]},{"name":"TSF_OVERWRITE_EXIST","features":[464]},{"name":"TSF_RENAME_EXIST","features":[464]},{"name":"TSF_SUSPEND_SHELLEVENTS","features":[464]},{"name":"TSF_USE_FULL_ACCESS","features":[464]},{"name":"TS_INDETERMINATE","features":[464]},{"name":"TS_NONE","features":[464]},{"name":"TS_PERFORMING","features":[464]},{"name":"TS_PREPARING","features":[464]},{"name":"TaskbarList","features":[464]},{"name":"ThumbnailStreamCache","features":[464]},{"name":"ThumbnailStreamCacheOptions","features":[464]},{"name":"TimeCategorizer","features":[464]},{"name":"TrackShellMenu","features":[464]},{"name":"TrayBandSiteService","features":[464]},{"name":"TrayDeskBand","features":[464]},{"name":"UNDOCK_REASON","features":[464]},{"name":"URLASSOCDLG_FL_REGISTER_ASSOC","features":[464]},{"name":"URLASSOCDLG_FL_USE_DEFAULT_NAME","features":[464]},{"name":"URLASSOCIATIONDIALOG_IN_FLAGS","features":[464]},{"name":"URLINVOKECOMMANDINFOA","features":[303,464]},{"name":"URLINVOKECOMMANDINFOW","features":[303,464]},{"name":"URLIS","features":[464]},{"name":"URLIS_APPLIABLE","features":[464]},{"name":"URLIS_DIRECTORY","features":[464]},{"name":"URLIS_FILEURL","features":[464]},{"name":"URLIS_HASQUERY","features":[464]},{"name":"URLIS_NOHISTORY","features":[464]},{"name":"URLIS_OPAQUE","features":[464]},{"name":"URLIS_URL","features":[464]},{"name":"URL_APPLY_DEFAULT","features":[464]},{"name":"URL_APPLY_FORCEAPPLY","features":[464]},{"name":"URL_APPLY_GUESSFILE","features":[464]},{"name":"URL_APPLY_GUESSSCHEME","features":[464]},{"name":"URL_BROWSER_MODE","features":[464]},{"name":"URL_CONVERT_IF_DOSPATH","features":[464]},{"name":"URL_DONT_ESCAPE_EXTRA_INFO","features":[464]},{"name":"URL_DONT_SIMPLIFY","features":[464]},{"name":"URL_DONT_UNESCAPE","features":[464]},{"name":"URL_DONT_UNESCAPE_EXTRA_INFO","features":[464]},{"name":"URL_ESCAPE_ASCII_URI_COMPONENT","features":[464]},{"name":"URL_ESCAPE_AS_UTF8","features":[464]},{"name":"URL_ESCAPE_PERCENT","features":[464]},{"name":"URL_ESCAPE_SEGMENT_ONLY","features":[464]},{"name":"URL_ESCAPE_SPACES_ONLY","features":[464]},{"name":"URL_ESCAPE_UNSAFE","features":[464]},{"name":"URL_E_INVALID_SYNTAX","features":[464]},{"name":"URL_E_UNREGISTERED_PROTOCOL","features":[464]},{"name":"URL_FILE_USE_PATHURL","features":[464]},{"name":"URL_INTERNAL_PATH","features":[464]},{"name":"URL_NO_META","features":[464]},{"name":"URL_PART","features":[464]},{"name":"URL_PARTFLAG_KEEPSCHEME","features":[464]},{"name":"URL_PART_HOSTNAME","features":[464]},{"name":"URL_PART_NONE","features":[464]},{"name":"URL_PART_PASSWORD","features":[464]},{"name":"URL_PART_PORT","features":[464]},{"name":"URL_PART_QUERY","features":[464]},{"name":"URL_PART_SCHEME","features":[464]},{"name":"URL_PART_USERNAME","features":[464]},{"name":"URL_PLUGGABLE_PROTOCOL","features":[464]},{"name":"URL_SCHEME","features":[464]},{"name":"URL_SCHEME_ABOUT","features":[464]},{"name":"URL_SCHEME_FILE","features":[464]},{"name":"URL_SCHEME_FTP","features":[464]},{"name":"URL_SCHEME_GOPHER","features":[464]},{"name":"URL_SCHEME_HTTP","features":[464]},{"name":"URL_SCHEME_HTTPS","features":[464]},{"name":"URL_SCHEME_INVALID","features":[464]},{"name":"URL_SCHEME_JAVASCRIPT","features":[464]},{"name":"URL_SCHEME_KNOWNFOLDER","features":[464]},{"name":"URL_SCHEME_LOCAL","features":[464]},{"name":"URL_SCHEME_MAILTO","features":[464]},{"name":"URL_SCHEME_MAXVALUE","features":[464]},{"name":"URL_SCHEME_MK","features":[464]},{"name":"URL_SCHEME_MSHELP","features":[464]},{"name":"URL_SCHEME_MSSHELLDEVICE","features":[464]},{"name":"URL_SCHEME_MSSHELLIDLIST","features":[464]},{"name":"URL_SCHEME_MSSHELLROOTED","features":[464]},{"name":"URL_SCHEME_NEWS","features":[464]},{"name":"URL_SCHEME_NNTP","features":[464]},{"name":"URL_SCHEME_RES","features":[464]},{"name":"URL_SCHEME_SEARCH","features":[464]},{"name":"URL_SCHEME_SEARCH_MS","features":[464]},{"name":"URL_SCHEME_SHELL","features":[464]},{"name":"URL_SCHEME_SNEWS","features":[464]},{"name":"URL_SCHEME_TELNET","features":[464]},{"name":"URL_SCHEME_UNKNOWN","features":[464]},{"name":"URL_SCHEME_VBSCRIPT","features":[464]},{"name":"URL_SCHEME_WAIS","features":[464]},{"name":"URL_SCHEME_WILDCARD","features":[464]},{"name":"URL_UNESCAPE","features":[464]},{"name":"URL_UNESCAPE_AS_UTF8","features":[464]},{"name":"URL_UNESCAPE_HIGH_ANSI_ONLY","features":[464]},{"name":"URL_UNESCAPE_INPLACE","features":[464]},{"name":"URL_UNESCAPE_URI_COMPONENT","features":[464]},{"name":"URL_WININET_COMPATIBILITY","features":[464]},{"name":"UR_MONITOR_DISCONNECT","features":[464]},{"name":"UR_RESOLUTION_CHANGE","features":[464]},{"name":"UnloadUserProfile","features":[303,464]},{"name":"UnregisterAppConstrainedChangeNotification","features":[464]},{"name":"UnregisterAppStateChangeNotification","features":[464]},{"name":"UnregisterScaleChangeEvent","features":[464]},{"name":"UrlApplySchemeA","features":[464]},{"name":"UrlApplySchemeW","features":[464]},{"name":"UrlCanonicalizeA","features":[464]},{"name":"UrlCanonicalizeW","features":[464]},{"name":"UrlCombineA","features":[464]},{"name":"UrlCombineW","features":[464]},{"name":"UrlCompareA","features":[303,464]},{"name":"UrlCompareW","features":[303,464]},{"name":"UrlCreateFromPathA","features":[464]},{"name":"UrlCreateFromPathW","features":[464]},{"name":"UrlEscapeA","features":[464]},{"name":"UrlEscapeW","features":[464]},{"name":"UrlFixupW","features":[464]},{"name":"UrlGetLocationA","features":[464]},{"name":"UrlGetLocationW","features":[464]},{"name":"UrlGetPartA","features":[464]},{"name":"UrlGetPartW","features":[464]},{"name":"UrlHashA","features":[464]},{"name":"UrlHashW","features":[464]},{"name":"UrlIsA","features":[303,464]},{"name":"UrlIsNoHistoryA","features":[303,464]},{"name":"UrlIsNoHistoryW","features":[303,464]},{"name":"UrlIsOpaqueA","features":[303,464]},{"name":"UrlIsOpaqueW","features":[303,464]},{"name":"UrlIsW","features":[303,464]},{"name":"UrlUnescapeA","features":[464]},{"name":"UrlUnescapeW","features":[464]},{"name":"UserNotification","features":[464]},{"name":"V1PasswordCredentialProvider","features":[464]},{"name":"V1SmartcardCredentialProvider","features":[464]},{"name":"V1WinBioCredentialProvider","features":[464]},{"name":"VALIDATEUNC_CONNECT","features":[464]},{"name":"VALIDATEUNC_NOUI","features":[464]},{"name":"VALIDATEUNC_OPTION","features":[464]},{"name":"VALIDATEUNC_PERSIST","features":[464]},{"name":"VALIDATEUNC_PRINT","features":[464]},{"name":"VALIDATEUNC_VALID","features":[464]},{"name":"VID_Content","features":[464]},{"name":"VID_Details","features":[464]},{"name":"VID_LargeIcons","features":[464]},{"name":"VID_List","features":[464]},{"name":"VID_SmallIcons","features":[464]},{"name":"VID_ThumbStrip","features":[464]},{"name":"VID_Thumbnails","features":[464]},{"name":"VID_Tile","features":[464]},{"name":"VIEW_PRIORITY_CACHEHIT","features":[464]},{"name":"VIEW_PRIORITY_CACHEMISS","features":[464]},{"name":"VIEW_PRIORITY_DESPERATE","features":[464]},{"name":"VIEW_PRIORITY_INHERIT","features":[464]},{"name":"VIEW_PRIORITY_NONE","features":[464]},{"name":"VIEW_PRIORITY_RESTRICTED","features":[464]},{"name":"VIEW_PRIORITY_SHELLEXT","features":[464]},{"name":"VIEW_PRIORITY_SHELLEXT_ASBACKUP","features":[464]},{"name":"VIEW_PRIORITY_STALECACHEHIT","features":[464]},{"name":"VIEW_PRIORITY_USEASDEFAULT","features":[464]},{"name":"VOLUME_PREFIX","features":[464]},{"name":"VPCF_BACKGROUND","features":[464]},{"name":"VPCF_SORTCOLUMN","features":[464]},{"name":"VPCF_SUBTEXT","features":[464]},{"name":"VPCF_TEXT","features":[464]},{"name":"VPCF_TEXTBACKGROUND","features":[464]},{"name":"VPCOLORFLAGS","features":[464]},{"name":"VPWATERMARKFLAGS","features":[464]},{"name":"VPWF_ALPHABLEND","features":[464]},{"name":"VPWF_DEFAULT","features":[464]},{"name":"VariantToStrRet","features":[631]},{"name":"VaultProvider","features":[464]},{"name":"VirtualDesktopManager","features":[464]},{"name":"WC_NETADDRESS","features":[464]},{"name":"WINDOWDATA","features":[631]},{"name":"WM_CPL_LAUNCH","features":[464]},{"name":"WM_CPL_LAUNCHED","features":[464]},{"name":"WPSTYLE_CENTER","features":[464]},{"name":"WPSTYLE_CROPTOFIT","features":[464]},{"name":"WPSTYLE_KEEPASPECT","features":[464]},{"name":"WPSTYLE_MAX","features":[464]},{"name":"WPSTYLE_SPAN","features":[464]},{"name":"WPSTYLE_STRETCH","features":[464]},{"name":"WPSTYLE_TILE","features":[464]},{"name":"WTSAT_ARGB","features":[464]},{"name":"WTSAT_RGB","features":[464]},{"name":"WTSAT_UNKNOWN","features":[464]},{"name":"WTSCF_APPSTYLE","features":[464]},{"name":"WTSCF_DEFAULT","features":[464]},{"name":"WTSCF_FAST","features":[464]},{"name":"WTSCF_SQUARE","features":[464]},{"name":"WTSCF_WIDE","features":[464]},{"name":"WTS_ALPHATYPE","features":[464]},{"name":"WTS_APPSTYLE","features":[464]},{"name":"WTS_CACHED","features":[464]},{"name":"WTS_CACHEFLAGS","features":[464]},{"name":"WTS_CONTEXTFLAGS","features":[464]},{"name":"WTS_CROPTOSQUARE","features":[464]},{"name":"WTS_DEFAULT","features":[464]},{"name":"WTS_EXTRACT","features":[464]},{"name":"WTS_EXTRACTDONOTCACHE","features":[464]},{"name":"WTS_EXTRACTINPROC","features":[464]},{"name":"WTS_E_DATAFILEUNAVAILABLE","features":[464]},{"name":"WTS_E_EXTRACTIONBLOCKED","features":[464]},{"name":"WTS_E_EXTRACTIONPENDING","features":[464]},{"name":"WTS_E_EXTRACTIONTIMEDOUT","features":[464]},{"name":"WTS_E_FAILEDEXTRACTION","features":[464]},{"name":"WTS_E_FASTEXTRACTIONNOTSUPPORTED","features":[464]},{"name":"WTS_E_NOSTORAGEPROVIDERTHUMBNAILHANDLER","features":[464]},{"name":"WTS_E_SURROGATEUNAVAILABLE","features":[464]},{"name":"WTS_FASTEXTRACT","features":[464]},{"name":"WTS_FLAGS","features":[464]},{"name":"WTS_FORCEEXTRACTION","features":[464]},{"name":"WTS_IDEALCACHESIZEONLY","features":[464]},{"name":"WTS_INCACHEONLY","features":[464]},{"name":"WTS_INSTANCESURROGATE","features":[464]},{"name":"WTS_LOWQUALITY","features":[464]},{"name":"WTS_NONE","features":[464]},{"name":"WTS_REQUIRESURROGATE","features":[464]},{"name":"WTS_SCALETOREQUESTEDSIZE","features":[464]},{"name":"WTS_SCALEUP","features":[464]},{"name":"WTS_SKIPFASTEXTRACT","features":[464]},{"name":"WTS_SLOWRECLAIM","features":[464]},{"name":"WTS_THUMBNAILID","features":[464]},{"name":"WTS_WIDETHUMBNAILS","features":[464]},{"name":"WebBrowser","features":[464]},{"name":"WebBrowser_V1","features":[464]},{"name":"WebWizardHost","features":[464]},{"name":"WhichPlatform","features":[464]},{"name":"Win32DeleteFile","features":[303,464]},{"name":"WinBioCredentialProvider","features":[464]},{"name":"WinHelpA","features":[303,464]},{"name":"WinHelpW","features":[303,464]},{"name":"WriteCabinetState","features":[303,464]},{"name":"_BROWSERFRAMEOPTIONS","features":[464]},{"name":"_CDBE_ACTIONS","features":[464]},{"name":"_EXPCMDFLAGS","features":[464]},{"name":"_EXPCMDSTATE","features":[464]},{"name":"_EXPLORERPANESTATE","features":[464]},{"name":"_EXPPS","features":[464]},{"name":"_KF_DEFINITION_FLAGS","features":[464]},{"name":"_KF_REDIRECTION_CAPABILITIES","features":[464]},{"name":"_KF_REDIRECT_FLAGS","features":[464]},{"name":"_NMCII_FLAGS","features":[464]},{"name":"_NMCSAEI_FLAGS","features":[464]},{"name":"_NSTCECLICKTYPE","features":[464]},{"name":"_NSTCEHITTEST","features":[464]},{"name":"_NSTCITEMSTATE","features":[464]},{"name":"_NSTCROOTSTYLE","features":[464]},{"name":"_NSTCSTYLE","features":[464]},{"name":"_OPPROGDLGF","features":[464]},{"name":"_PDMODE","features":[464]},{"name":"_SHCONTF","features":[464]},{"name":"_SICHINTF","features":[464]},{"name":"_SPBEGINF","features":[464]},{"name":"_SPINITF","features":[464]},{"name":"_SV3CVW3_FLAGS","features":[464]},{"name":"_SVGIO","features":[464]},{"name":"_SVSIF","features":[464]},{"name":"_TRANSFER_ADVISE_STATE","features":[464]},{"name":"_TRANSFER_SOURCE_FLAGS","features":[464]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_CSCSYNCINPROGRESS","features":[464]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SERVERDRIVE","features":[464]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEGLOBALDIRTYCOUNT","features":[464]},{"name":"idsAppName","features":[464]},{"name":"idsBadOldPW","features":[464]},{"name":"idsChangePW","features":[464]},{"name":"idsDefKeyword","features":[464]},{"name":"idsDifferentPW","features":[464]},{"name":"idsHelpFile","features":[464]},{"name":"idsIniFile","features":[464]},{"name":"idsIsPassword","features":[464]},{"name":"idsNoHelpMemory","features":[464]},{"name":"idsPassword","features":[464]},{"name":"idsScreenSaver","features":[464]},{"name":"navAllowAutosearch","features":[464]},{"name":"navBlockRedirectsXDomain","features":[464]},{"name":"navBrowserBar","features":[464]},{"name":"navDeferUnload","features":[464]},{"name":"navEnforceRestricted","features":[464]},{"name":"navHomepageNavigate","features":[464]},{"name":"navHostNavigation","features":[464]},{"name":"navHyperlink","features":[464]},{"name":"navKeepWordWheelText","features":[464]},{"name":"navNewWindowsManaged","features":[464]},{"name":"navNoHistory","features":[464]},{"name":"navNoReadFromCache","features":[464]},{"name":"navNoWriteToCache","features":[464]},{"name":"navOpenInBackgroundTab","features":[464]},{"name":"navOpenInNewTab","features":[464]},{"name":"navOpenInNewWindow","features":[464]},{"name":"navOpenNewForegroundTab","features":[464]},{"name":"navRefresh","features":[464]},{"name":"navReserved1","features":[464]},{"name":"navReserved2","features":[464]},{"name":"navReserved3","features":[464]},{"name":"navReserved4","features":[464]},{"name":"navReserved5","features":[464]},{"name":"navReserved6","features":[464]},{"name":"navReserved7","features":[464]},{"name":"navSpeculative","features":[464]},{"name":"navSuggestNewTab","features":[464]},{"name":"navSuggestNewWindow","features":[464]},{"name":"navTravelLogScreenshot","features":[464]},{"name":"navTrustedForActiveX","features":[464]},{"name":"navUntrustedForDownload","features":[464]},{"name":"navVirtualTab","features":[464]},{"name":"secureLockIconMixed","features":[464]},{"name":"secureLockIconSecure128Bit","features":[464]},{"name":"secureLockIconSecure40Bit","features":[464]},{"name":"secureLockIconSecure56Bit","features":[464]},{"name":"secureLockIconSecureFortezza","features":[464]},{"name":"secureLockIconSecureUnknownBits","features":[464]},{"name":"secureLockIconUnsecure","features":[464]},{"name":"ssfALTSTARTUP","features":[464]},{"name":"ssfAPPDATA","features":[464]},{"name":"ssfBITBUCKET","features":[464]},{"name":"ssfCOMMONALTSTARTUP","features":[464]},{"name":"ssfCOMMONAPPDATA","features":[464]},{"name":"ssfCOMMONDESKTOPDIR","features":[464]},{"name":"ssfCOMMONFAVORITES","features":[464]},{"name":"ssfCOMMONPROGRAMS","features":[464]},{"name":"ssfCOMMONSTARTMENU","features":[464]},{"name":"ssfCOMMONSTARTUP","features":[464]},{"name":"ssfCONTROLS","features":[464]},{"name":"ssfCOOKIES","features":[464]},{"name":"ssfDESKTOP","features":[464]},{"name":"ssfDESKTOPDIRECTORY","features":[464]},{"name":"ssfDRIVES","features":[464]},{"name":"ssfFAVORITES","features":[464]},{"name":"ssfFONTS","features":[464]},{"name":"ssfHISTORY","features":[464]},{"name":"ssfINTERNETCACHE","features":[464]},{"name":"ssfLOCALAPPDATA","features":[464]},{"name":"ssfMYPICTURES","features":[464]},{"name":"ssfNETHOOD","features":[464]},{"name":"ssfNETWORK","features":[464]},{"name":"ssfPERSONAL","features":[464]},{"name":"ssfPRINTERS","features":[464]},{"name":"ssfPRINTHOOD","features":[464]},{"name":"ssfPROFILE","features":[464]},{"name":"ssfPROGRAMFILES","features":[464]},{"name":"ssfPROGRAMFILESx86","features":[464]},{"name":"ssfPROGRAMS","features":[464]},{"name":"ssfRECENT","features":[464]},{"name":"ssfSENDTO","features":[464]},{"name":"ssfSTARTMENU","features":[464]},{"name":"ssfSTARTUP","features":[464]},{"name":"ssfSYSTEM","features":[464]},{"name":"ssfSYSTEMx86","features":[464]},{"name":"ssfTEMPLATES","features":[464]},{"name":"ssfWINDOWS","features":[464]},{"name":"wnsprintfA","features":[464]},{"name":"wnsprintfW","features":[464]},{"name":"wvnsprintfA","features":[464]},{"name":"wvnsprintfW","features":[464]}],"668":[{"name":"COMDLG_FILTERSPEC","features":[631]},{"name":"DEVICE_SCALE_FACTOR","features":[631]},{"name":"DEVICE_SCALE_FACTOR_INVALID","features":[631]},{"name":"IObjectArray","features":[631]},{"name":"IObjectCollection","features":[631]},{"name":"ITEMIDLIST","features":[631]},{"name":"PERCEIVED","features":[631]},{"name":"PERCEIVEDFLAG_GDIPLUS","features":[631]},{"name":"PERCEIVEDFLAG_HARDCODED","features":[631]},{"name":"PERCEIVEDFLAG_NATIVESUPPORT","features":[631]},{"name":"PERCEIVEDFLAG_SOFTCODED","features":[631]},{"name":"PERCEIVEDFLAG_UNDEFINED","features":[631]},{"name":"PERCEIVEDFLAG_WMSDK","features":[631]},{"name":"PERCEIVEDFLAG_ZIPFOLDER","features":[631]},{"name":"PERCEIVED_TYPE_APPLICATION","features":[631]},{"name":"PERCEIVED_TYPE_AUDIO","features":[631]},{"name":"PERCEIVED_TYPE_COMPRESSED","features":[631]},{"name":"PERCEIVED_TYPE_CONTACTS","features":[631]},{"name":"PERCEIVED_TYPE_CUSTOM","features":[631]},{"name":"PERCEIVED_TYPE_DOCUMENT","features":[631]},{"name":"PERCEIVED_TYPE_FIRST","features":[631]},{"name":"PERCEIVED_TYPE_FOLDER","features":[631]},{"name":"PERCEIVED_TYPE_GAMEMEDIA","features":[631]},{"name":"PERCEIVED_TYPE_IMAGE","features":[631]},{"name":"PERCEIVED_TYPE_LAST","features":[631]},{"name":"PERCEIVED_TYPE_SYSTEM","features":[631]},{"name":"PERCEIVED_TYPE_TEXT","features":[631]},{"name":"PERCEIVED_TYPE_UNKNOWN","features":[631]},{"name":"PERCEIVED_TYPE_UNSPECIFIED","features":[631]},{"name":"PERCEIVED_TYPE_VIDEO","features":[631]},{"name":"SCALE_100_PERCENT","features":[631]},{"name":"SCALE_120_PERCENT","features":[631]},{"name":"SCALE_125_PERCENT","features":[631]},{"name":"SCALE_140_PERCENT","features":[631]},{"name":"SCALE_150_PERCENT","features":[631]},{"name":"SCALE_160_PERCENT","features":[631]},{"name":"SCALE_175_PERCENT","features":[631]},{"name":"SCALE_180_PERCENT","features":[631]},{"name":"SCALE_200_PERCENT","features":[631]},{"name":"SCALE_225_PERCENT","features":[631]},{"name":"SCALE_250_PERCENT","features":[631]},{"name":"SCALE_300_PERCENT","features":[631]},{"name":"SCALE_350_PERCENT","features":[631]},{"name":"SCALE_400_PERCENT","features":[631]},{"name":"SCALE_450_PERCENT","features":[631]},{"name":"SCALE_500_PERCENT","features":[631]},{"name":"SHCOLSTATE","features":[631]},{"name":"SHCOLSTATE_BATCHREAD","features":[631]},{"name":"SHCOLSTATE_DEFAULT","features":[631]},{"name":"SHCOLSTATE_DISPLAYMASK","features":[631]},{"name":"SHCOLSTATE_EXTENDED","features":[631]},{"name":"SHCOLSTATE_FIXED_RATIO","features":[631]},{"name":"SHCOLSTATE_FIXED_WIDTH","features":[631]},{"name":"SHCOLSTATE_HIDDEN","features":[631]},{"name":"SHCOLSTATE_NODPISCALE","features":[631]},{"name":"SHCOLSTATE_NOSORTBYFOLDERNESS","features":[631]},{"name":"SHCOLSTATE_NO_GROUPBY","features":[631]},{"name":"SHCOLSTATE_ONBYDEFAULT","features":[631]},{"name":"SHCOLSTATE_PREFER_FMTCMP","features":[631]},{"name":"SHCOLSTATE_PREFER_VARCMP","features":[631]},{"name":"SHCOLSTATE_SECONDARYUI","features":[631]},{"name":"SHCOLSTATE_SLOW","features":[631]},{"name":"SHCOLSTATE_TYPEMASK","features":[631]},{"name":"SHCOLSTATE_TYPE_DATE","features":[631]},{"name":"SHCOLSTATE_TYPE_INT","features":[631]},{"name":"SHCOLSTATE_TYPE_STR","features":[631]},{"name":"SHCOLSTATE_VIEWONLY","features":[631]},{"name":"SHELLDETAILS","features":[631]},{"name":"SHITEMID","features":[631]},{"name":"STRRET","features":[631]},{"name":"STRRET_CSTR","features":[631]},{"name":"STRRET_OFFSET","features":[631]},{"name":"STRRET_TYPE","features":[631]},{"name":"STRRET_WSTR","features":[631]}],"669":[{"name":"FPSPS_DEFAULT","features":[374]},{"name":"FPSPS_READONLY","features":[374]},{"name":"FPSPS_TREAT_NEW_VALUES_AS_DIRTY","features":[374]},{"name":"GETPROPERTYSTOREFLAGS","features":[374]},{"name":"GPS_BESTEFFORT","features":[374]},{"name":"GPS_DEFAULT","features":[374]},{"name":"GPS_DELAYCREATION","features":[374]},{"name":"GPS_EXTRINSICPROPERTIES","features":[374]},{"name":"GPS_EXTRINSICPROPERTIESONLY","features":[374]},{"name":"GPS_FASTPROPERTIESONLY","features":[374]},{"name":"GPS_HANDLERPROPERTIESONLY","features":[374]},{"name":"GPS_MASK_VALID","features":[374]},{"name":"GPS_NO_OPLOCK","features":[374]},{"name":"GPS_OPENSLOWITEM","features":[374]},{"name":"GPS_PREFERQUERYPROPERTIES","features":[374]},{"name":"GPS_READWRITE","features":[374]},{"name":"GPS_TEMPORARY","features":[374]},{"name":"GPS_VOLATILEPROPERTIES","features":[374]},{"name":"GPS_VOLATILEPROPERTIESONLY","features":[374]},{"name":"ICreateObject","features":[374]},{"name":"IDelayedPropertyStoreFactory","features":[374]},{"name":"IInitializeWithFile","features":[374]},{"name":"IInitializeWithStream","features":[374]},{"name":"INamedPropertyStore","features":[374]},{"name":"IObjectWithPropertyKey","features":[374]},{"name":"IPersistSerializedPropStorage","features":[374]},{"name":"IPersistSerializedPropStorage2","features":[374]},{"name":"IPropertyChange","features":[374]},{"name":"IPropertyChangeArray","features":[374]},{"name":"IPropertyDescription","features":[374]},{"name":"IPropertyDescription2","features":[374]},{"name":"IPropertyDescriptionAliasInfo","features":[374]},{"name":"IPropertyDescriptionList","features":[374]},{"name":"IPropertyDescriptionRelatedPropertyInfo","features":[374]},{"name":"IPropertyDescriptionSearchInfo","features":[374]},{"name":"IPropertyEnumType","features":[374]},{"name":"IPropertyEnumType2","features":[374]},{"name":"IPropertyEnumTypeList","features":[374]},{"name":"IPropertyStore","features":[374]},{"name":"IPropertyStoreCache","features":[374]},{"name":"IPropertyStoreCapabilities","features":[374]},{"name":"IPropertyStoreFactory","features":[374]},{"name":"IPropertySystem","features":[374]},{"name":"IPropertySystemChangeNotify","features":[374]},{"name":"IPropertyUI","features":[374]},{"name":"InMemoryPropertyStore","features":[374]},{"name":"InMemoryPropertyStoreMarshalByValue","features":[374]},{"name":"PCUSERIALIZEDPROPSTORAGE","features":[374]},{"name":"PDAT_AVERAGE","features":[374]},{"name":"PDAT_DATERANGE","features":[374]},{"name":"PDAT_DEFAULT","features":[374]},{"name":"PDAT_FIRST","features":[374]},{"name":"PDAT_MAX","features":[374]},{"name":"PDAT_MIN","features":[374]},{"name":"PDAT_SUM","features":[374]},{"name":"PDAT_UNION","features":[374]},{"name":"PDCIT_INMEMORY","features":[374]},{"name":"PDCIT_NONE","features":[374]},{"name":"PDCIT_ONDEMAND","features":[374]},{"name":"PDCIT_ONDISK","features":[374]},{"name":"PDCIT_ONDISKALL","features":[374]},{"name":"PDCIT_ONDISKVECTOR","features":[374]},{"name":"PDCOT_BOOLEAN","features":[374]},{"name":"PDCOT_DATETIME","features":[374]},{"name":"PDCOT_NONE","features":[374]},{"name":"PDCOT_NUMBER","features":[374]},{"name":"PDCOT_SIZE","features":[374]},{"name":"PDCOT_STRING","features":[374]},{"name":"PDDT_BOOLEAN","features":[374]},{"name":"PDDT_DATETIME","features":[374]},{"name":"PDDT_ENUMERATED","features":[374]},{"name":"PDDT_NUMBER","features":[374]},{"name":"PDDT_STRING","features":[374]},{"name":"PDEF_ALL","features":[374]},{"name":"PDEF_COLUMN","features":[374]},{"name":"PDEF_INFULLTEXTQUERY","features":[374]},{"name":"PDEF_NONSYSTEM","features":[374]},{"name":"PDEF_QUERYABLE","features":[374]},{"name":"PDEF_SYSTEM","features":[374]},{"name":"PDEF_VIEWABLE","features":[374]},{"name":"PDFF_ALWAYSKB","features":[374]},{"name":"PDFF_DEFAULT","features":[374]},{"name":"PDFF_FILENAME","features":[374]},{"name":"PDFF_HIDEDATE","features":[374]},{"name":"PDFF_HIDETIME","features":[374]},{"name":"PDFF_LONGDATE","features":[374]},{"name":"PDFF_LONGTIME","features":[374]},{"name":"PDFF_NOAUTOREADINGORDER","features":[374]},{"name":"PDFF_PREFIXNAME","features":[374]},{"name":"PDFF_READONLY","features":[374]},{"name":"PDFF_RELATIVEDATE","features":[374]},{"name":"PDFF_RESERVED_RIGHTTOLEFT","features":[374]},{"name":"PDFF_SHORTDATE","features":[374]},{"name":"PDFF_SHORTTIME","features":[374]},{"name":"PDFF_USEEDITINVITATION","features":[374]},{"name":"PDGR_ALPHANUMERIC","features":[374]},{"name":"PDGR_DATE","features":[374]},{"name":"PDGR_DISCRETE","features":[374]},{"name":"PDGR_DYNAMIC","features":[374]},{"name":"PDGR_ENUMERATED","features":[374]},{"name":"PDGR_PERCENT","features":[374]},{"name":"PDGR_SIZE","features":[374]},{"name":"PDOPSTATUS","features":[374]},{"name":"PDOPS_CANCELLED","features":[374]},{"name":"PDOPS_ERRORS","features":[374]},{"name":"PDOPS_PAUSED","features":[374]},{"name":"PDOPS_RUNNING","features":[374]},{"name":"PDOPS_STOPPED","features":[374]},{"name":"PDRDT_COUNT","features":[374]},{"name":"PDRDT_DATE","features":[374]},{"name":"PDRDT_DURATION","features":[374]},{"name":"PDRDT_GENERAL","features":[374]},{"name":"PDRDT_LENGTH","features":[374]},{"name":"PDRDT_PRIORITY","features":[374]},{"name":"PDRDT_RATE","features":[374]},{"name":"PDRDT_RATING","features":[374]},{"name":"PDRDT_REVISION","features":[374]},{"name":"PDRDT_SIZE","features":[374]},{"name":"PDRDT_SPEED","features":[374]},{"name":"PDSD_A_Z","features":[374]},{"name":"PDSD_GENERAL","features":[374]},{"name":"PDSD_LOWEST_HIGHEST","features":[374]},{"name":"PDSD_OLDEST_NEWEST","features":[374]},{"name":"PDSD_SMALLEST_BIGGEST","features":[374]},{"name":"PDSIF_ALWAYSINCLUDE","features":[374]},{"name":"PDSIF_DEFAULT","features":[374]},{"name":"PDSIF_ININVERTEDINDEX","features":[374]},{"name":"PDSIF_ISCOLUMN","features":[374]},{"name":"PDSIF_ISCOLUMNSPARSE","features":[374]},{"name":"PDSIF_USEFORTYPEAHEAD","features":[374]},{"name":"PDTF_ALWAYSINSUPPLEMENTALSTORE","features":[374]},{"name":"PDTF_CANBEPURGED","features":[374]},{"name":"PDTF_CANGROUPBY","features":[374]},{"name":"PDTF_CANSTACKBY","features":[374]},{"name":"PDTF_DEFAULT","features":[374]},{"name":"PDTF_DONTCOERCEEMPTYSTRINGS","features":[374]},{"name":"PDTF_INCLUDEINFULLTEXTQUERY","features":[374]},{"name":"PDTF_ISGROUP","features":[374]},{"name":"PDTF_ISINNATE","features":[374]},{"name":"PDTF_ISQUERYABLE","features":[374]},{"name":"PDTF_ISSYSTEMPROPERTY","features":[374]},{"name":"PDTF_ISTREEPROPERTY","features":[374]},{"name":"PDTF_ISVIEWABLE","features":[374]},{"name":"PDTF_MASK_ALL","features":[374]},{"name":"PDTF_MULTIPLEVALUES","features":[374]},{"name":"PDTF_SEARCHRAWVALUE","features":[374]},{"name":"PDVF_BEGINNEWGROUP","features":[374]},{"name":"PDVF_CANWRAP","features":[374]},{"name":"PDVF_CENTERALIGN","features":[374]},{"name":"PDVF_DEFAULT","features":[374]},{"name":"PDVF_FILLAREA","features":[374]},{"name":"PDVF_HIDDEN","features":[374]},{"name":"PDVF_HIDELABEL","features":[374]},{"name":"PDVF_MASK_ALL","features":[374]},{"name":"PDVF_RIGHTALIGN","features":[374]},{"name":"PDVF_SHOWBYDEFAULT","features":[374]},{"name":"PDVF_SHOWINPRIMARYLIST","features":[374]},{"name":"PDVF_SHOWINSECONDARYLIST","features":[374]},{"name":"PDVF_SHOWONLYIFPRESENT","features":[374]},{"name":"PDVF_SORTDESCENDING","features":[374]},{"name":"PET_DEFAULTVALUE","features":[374]},{"name":"PET_DISCRETEVALUE","features":[374]},{"name":"PET_ENDRANGE","features":[374]},{"name":"PET_RANGEDVALUE","features":[374]},{"name":"PKA_APPEND","features":[374]},{"name":"PKA_DELETE","features":[374]},{"name":"PKA_FLAGS","features":[374]},{"name":"PKA_SET","features":[374]},{"name":"PKEY_PIDSTR_MAX","features":[374]},{"name":"PLACEHOLDER_STATES","features":[374]},{"name":"PROPDESC_AGGREGATION_TYPE","features":[374]},{"name":"PROPDESC_COLUMNINDEX_TYPE","features":[374]},{"name":"PROPDESC_CONDITION_TYPE","features":[374]},{"name":"PROPDESC_DISPLAYTYPE","features":[374]},{"name":"PROPDESC_ENUMFILTER","features":[374]},{"name":"PROPDESC_FORMAT_FLAGS","features":[374]},{"name":"PROPDESC_GROUPING_RANGE","features":[374]},{"name":"PROPDESC_RELATIVEDESCRIPTION_TYPE","features":[374]},{"name":"PROPDESC_SEARCHINFO_FLAGS","features":[374]},{"name":"PROPDESC_SORTDESCRIPTION","features":[374]},{"name":"PROPDESC_TYPE_FLAGS","features":[374]},{"name":"PROPDESC_VIEW_FLAGS","features":[374]},{"name":"PROPENUMTYPE","features":[374]},{"name":"PROPERTYKEY","features":[374]},{"name":"PROPERTYUI_FLAGS","features":[374]},{"name":"PROPERTYUI_FORMAT_FLAGS","features":[374]},{"name":"PROPERTYUI_NAME_FLAGS","features":[374]},{"name":"PROPPRG","features":[374]},{"name":"PSC_DIRTY","features":[374]},{"name":"PSC_NORMAL","features":[374]},{"name":"PSC_NOTINSOURCE","features":[374]},{"name":"PSC_READONLY","features":[374]},{"name":"PSC_STATE","features":[374]},{"name":"PSCoerceToCanonicalValue","features":[374]},{"name":"PSCreateAdapterFromPropertyStore","features":[374]},{"name":"PSCreateDelayedMultiplexPropertyStore","features":[374]},{"name":"PSCreateMemoryPropertyStore","features":[374]},{"name":"PSCreateMultiplexPropertyStore","features":[374]},{"name":"PSCreatePropertyChangeArray","features":[374]},{"name":"PSCreatePropertyStoreFromObject","features":[374]},{"name":"PSCreatePropertyStoreFromPropertySetStorage","features":[427,374]},{"name":"PSCreateSimplePropertyChange","features":[374]},{"name":"PSEnumeratePropertyDescriptions","features":[374]},{"name":"PSFormatForDisplay","features":[374]},{"name":"PSFormatForDisplayAlloc","features":[374]},{"name":"PSFormatPropertyValue","features":[374]},{"name":"PSGetImageReferenceForValue","features":[374]},{"name":"PSGetItemPropertyHandler","features":[303,374]},{"name":"PSGetItemPropertyHandlerWithCreateObject","features":[303,374]},{"name":"PSGetNameFromPropertyKey","features":[374]},{"name":"PSGetNamedPropertyFromPropertyStorage","features":[374]},{"name":"PSGetPropertyDescription","features":[374]},{"name":"PSGetPropertyDescriptionByName","features":[374]},{"name":"PSGetPropertyDescriptionListFromString","features":[374]},{"name":"PSGetPropertyFromPropertyStorage","features":[374]},{"name":"PSGetPropertyKeyFromName","features":[374]},{"name":"PSGetPropertySystem","features":[374]},{"name":"PSGetPropertyValue","features":[374]},{"name":"PSLookupPropertyHandlerCLSID","features":[374]},{"name":"PSPropertyBag_Delete","features":[427,374]},{"name":"PSPropertyBag_ReadBOOL","features":[303,427,374]},{"name":"PSPropertyBag_ReadBSTR","features":[427,374]},{"name":"PSPropertyBag_ReadDWORD","features":[427,374]},{"name":"PSPropertyBag_ReadGUID","features":[427,374]},{"name":"PSPropertyBag_ReadInt","features":[427,374]},{"name":"PSPropertyBag_ReadLONG","features":[427,374]},{"name":"PSPropertyBag_ReadPOINTL","features":[303,427,374]},{"name":"PSPropertyBag_ReadPOINTS","features":[303,427,374]},{"name":"PSPropertyBag_ReadPropertyKey","features":[427,374]},{"name":"PSPropertyBag_ReadRECTL","features":[303,427,374]},{"name":"PSPropertyBag_ReadSHORT","features":[427,374]},{"name":"PSPropertyBag_ReadStr","features":[427,374]},{"name":"PSPropertyBag_ReadStrAlloc","features":[427,374]},{"name":"PSPropertyBag_ReadStream","features":[427,374]},{"name":"PSPropertyBag_ReadType","features":[427,378,374]},{"name":"PSPropertyBag_ReadULONGLONG","features":[427,374]},{"name":"PSPropertyBag_ReadUnknown","features":[427,374]},{"name":"PSPropertyBag_WriteBOOL","features":[303,427,374]},{"name":"PSPropertyBag_WriteBSTR","features":[427,374]},{"name":"PSPropertyBag_WriteDWORD","features":[427,374]},{"name":"PSPropertyBag_WriteGUID","features":[427,374]},{"name":"PSPropertyBag_WriteInt","features":[427,374]},{"name":"PSPropertyBag_WriteLONG","features":[427,374]},{"name":"PSPropertyBag_WritePOINTL","features":[303,427,374]},{"name":"PSPropertyBag_WritePOINTS","features":[303,427,374]},{"name":"PSPropertyBag_WritePropertyKey","features":[427,374]},{"name":"PSPropertyBag_WriteRECTL","features":[303,427,374]},{"name":"PSPropertyBag_WriteSHORT","features":[427,374]},{"name":"PSPropertyBag_WriteStr","features":[427,374]},{"name":"PSPropertyBag_WriteStream","features":[427,374]},{"name":"PSPropertyBag_WriteULONGLONG","features":[427,374]},{"name":"PSPropertyBag_WriteUnknown","features":[427,374]},{"name":"PSPropertyKeyFromString","features":[374]},{"name":"PSRefreshPropertySchema","features":[374]},{"name":"PSRegisterPropertySchema","features":[374]},{"name":"PSSetPropertyValue","features":[374]},{"name":"PSStringFromPropertyKey","features":[374]},{"name":"PSUnregisterPropertySchema","features":[374]},{"name":"PS_ALL","features":[374]},{"name":"PS_CLOUDFILE_PLACEHOLDER","features":[374]},{"name":"PS_CREATE_FILE_ACCESSIBLE","features":[374]},{"name":"PS_DEFAULT","features":[374]},{"name":"PS_FULL_PRIMARY_STREAM_AVAILABLE","features":[374]},{"name":"PS_MARKED_FOR_OFFLINE_AVAILABILITY","features":[374]},{"name":"PS_NONE","features":[374]},{"name":"PUIFFDF_DEFAULT","features":[374]},{"name":"PUIFFDF_FRIENDLYDATE","features":[374]},{"name":"PUIFFDF_NOTIME","features":[374]},{"name":"PUIFFDF_RIGHTTOLEFT","features":[374]},{"name":"PUIFFDF_SHORTFORMAT","features":[374]},{"name":"PUIFNF_DEFAULT","features":[374]},{"name":"PUIFNF_MNEMONIC","features":[374]},{"name":"PUIF_DEFAULT","features":[374]},{"name":"PUIF_NOLABELININFOTIP","features":[374]},{"name":"PUIF_RIGHTALIGN","features":[374]},{"name":"PifMgr_CloseProperties","features":[303,374]},{"name":"PifMgr_GetProperties","features":[303,374]},{"name":"PifMgr_OpenProperties","features":[303,374]},{"name":"PifMgr_SetProperties","features":[303,374]},{"name":"PropertySystem","features":[374]},{"name":"SERIALIZEDPROPSTORAGE","features":[374]},{"name":"SESF_ALL_FLAGS","features":[374]},{"name":"SESF_AUTHENTICATION_ERROR","features":[374]},{"name":"SESF_NONE","features":[374]},{"name":"SESF_PAUSED_DUE_TO_CLIENT_POLICY","features":[374]},{"name":"SESF_PAUSED_DUE_TO_DISK_SPACE_FULL","features":[374]},{"name":"SESF_PAUSED_DUE_TO_METERED_NETWORK","features":[374]},{"name":"SESF_PAUSED_DUE_TO_SERVICE_POLICY","features":[374]},{"name":"SESF_PAUSED_DUE_TO_USER_REQUEST","features":[374]},{"name":"SESF_SERVICE_QUOTA_EXCEEDED_LIMIT","features":[374]},{"name":"SESF_SERVICE_QUOTA_NEARING_LIMIT","features":[374]},{"name":"SESF_SERVICE_UNAVAILABLE","features":[374]},{"name":"SHAddDefaultPropertiesByExt","features":[374]},{"name":"SHGetPropertyStoreForWindow","features":[303,374]},{"name":"SHGetPropertyStoreFromIDList","features":[631,374]},{"name":"SHGetPropertyStoreFromParsingName","features":[354,374]},{"name":"SHPropStgCreate","features":[427,374]},{"name":"SHPropStgReadMultiple","features":[427,374]},{"name":"SHPropStgWriteMultiple","features":[427,374]},{"name":"STS_EXCLUDED","features":[374]},{"name":"STS_FETCHING_METADATA","features":[374]},{"name":"STS_HASERROR","features":[374]},{"name":"STS_HASWARNING","features":[374]},{"name":"STS_INCOMPLETE","features":[374]},{"name":"STS_NEEDSDOWNLOAD","features":[374]},{"name":"STS_NEEDSUPLOAD","features":[374]},{"name":"STS_NONE","features":[374]},{"name":"STS_PAUSED","features":[374]},{"name":"STS_PLACEHOLDER_IFEMPTY","features":[374]},{"name":"STS_TRANSFERRING","features":[374]},{"name":"STS_USER_REQUESTED_REFRESH","features":[374]},{"name":"SYNC_ENGINE_STATE_FLAGS","features":[374]},{"name":"SYNC_TRANSFER_STATUS","features":[374]},{"name":"_PERSIST_SPROPSTORE_FLAGS","features":[374]}],"670":[{"name":"ALT_BREAKS","features":[632]},{"name":"ALT_BREAKS_FULL","features":[632]},{"name":"ALT_BREAKS_SAME","features":[632]},{"name":"ALT_BREAKS_UNIQUE","features":[632]},{"name":"ASYNC_RECO_ADDSTROKE_FAILED","features":[632]},{"name":"ASYNC_RECO_INTERRUPTED","features":[632]},{"name":"ASYNC_RECO_PROCESS_FAILED","features":[632]},{"name":"ASYNC_RECO_RESETCONTEXT_FAILED","features":[632]},{"name":"ASYNC_RECO_SETCACMODE_FAILED","features":[632]},{"name":"ASYNC_RECO_SETFACTOID_FAILED","features":[632]},{"name":"ASYNC_RECO_SETFLAGS_FAILED","features":[632]},{"name":"ASYNC_RECO_SETGUIDE_FAILED","features":[632]},{"name":"ASYNC_RECO_SETTEXTCONTEXT_FAILED","features":[632]},{"name":"ASYNC_RECO_SETWORDLIST_FAILED","features":[632]},{"name":"AddStroke","features":[314,632]},{"name":"AddWordsToWordList","features":[632]},{"name":"AdviseInkChange","features":[303,632]},{"name":"AppearanceConstants","features":[632]},{"name":"AsyncStylusQueue","features":[632]},{"name":"AsyncStylusQueueImmediate","features":[632]},{"name":"BEST_COMPLETE","features":[632]},{"name":"BorderStyleConstants","features":[632]},{"name":"CAC_FULL","features":[632]},{"name":"CAC_PREFIX","features":[632]},{"name":"CAC_RANDOM","features":[632]},{"name":"CFL_INTERMEDIATE","features":[632]},{"name":"CFL_POOR","features":[632]},{"name":"CFL_STRONG","features":[632]},{"name":"CHARACTER_RANGE","features":[632]},{"name":"CONFIDENCE_LEVEL","features":[632]},{"name":"Closed","features":[632]},{"name":"CorrectionMode","features":[632]},{"name":"CorrectionMode_NotVisible","features":[632]},{"name":"CorrectionMode_PostInsertionCollapsed","features":[632]},{"name":"CorrectionMode_PostInsertionExpanded","features":[632]},{"name":"CorrectionMode_PreInsertion","features":[632]},{"name":"CorrectionPosition","features":[632]},{"name":"CorrectionPosition_Auto","features":[632]},{"name":"CorrectionPosition_Bottom","features":[632]},{"name":"CorrectionPosition_Top","features":[632]},{"name":"CreateContext","features":[632]},{"name":"CreateRecognizer","features":[632]},{"name":"DISPID_DAAntiAliased","features":[632]},{"name":"DISPID_DAClone","features":[632]},{"name":"DISPID_DAColor","features":[632]},{"name":"DISPID_DAExtendedProperties","features":[632]},{"name":"DISPID_DAFitToCurve","features":[632]},{"name":"DISPID_DAHeight","features":[632]},{"name":"DISPID_DAIgnorePressure","features":[632]},{"name":"DISPID_DAPenTip","features":[632]},{"name":"DISPID_DARasterOperation","features":[632]},{"name":"DISPID_DATransparency","features":[632]},{"name":"DISPID_DAWidth","features":[632]},{"name":"DISPID_DisableNoScroll","features":[632]},{"name":"DISPID_DragIcon","features":[632]},{"name":"DISPID_DrawAttr","features":[632]},{"name":"DISPID_Enabled","features":[632]},{"name":"DISPID_Factoid","features":[632]},{"name":"DISPID_GetGestStatus","features":[632]},{"name":"DISPID_Hwnd","features":[632]},{"name":"DISPID_IAddStrokesAtRectangle","features":[632]},{"name":"DISPID_ICAutoRedraw","features":[632]},{"name":"DISPID_ICBId","features":[632]},{"name":"DISPID_ICBName","features":[632]},{"name":"DISPID_ICBState","features":[632]},{"name":"DISPID_ICBsCount","features":[632]},{"name":"DISPID_ICBsItem","features":[632]},{"name":"DISPID_ICBs_NewEnum","features":[632]},{"name":"DISPID_ICCollectingInk","features":[632]},{"name":"DISPID_ICCollectionMode","features":[632]},{"name":"DISPID_ICCursors","features":[632]},{"name":"DISPID_ICDefaultDrawingAttributes","features":[632]},{"name":"DISPID_ICDesiredPacketDescription","features":[632]},{"name":"DISPID_ICDynamicRendering","features":[632]},{"name":"DISPID_ICECursorButtonDown","features":[632]},{"name":"DISPID_ICECursorButtonUp","features":[632]},{"name":"DISPID_ICECursorDown","features":[632]},{"name":"DISPID_ICECursorInRange","features":[632]},{"name":"DISPID_ICECursorOutOfRange","features":[632]},{"name":"DISPID_ICEGesture","features":[632]},{"name":"DISPID_ICENewInAirPackets","features":[632]},{"name":"DISPID_ICENewPackets","features":[632]},{"name":"DISPID_ICEStroke","features":[632]},{"name":"DISPID_ICESystemGesture","features":[632]},{"name":"DISPID_ICETabletAdded","features":[632]},{"name":"DISPID_ICETabletRemoved","features":[632]},{"name":"DISPID_ICEnabled","features":[632]},{"name":"DISPID_ICGetEventInterest","features":[632]},{"name":"DISPID_ICGetGestureStatus","features":[632]},{"name":"DISPID_ICGetWindowInputRectangle","features":[632]},{"name":"DISPID_ICHwnd","features":[632]},{"name":"DISPID_ICInk","features":[632]},{"name":"DISPID_ICMarginX","features":[632]},{"name":"DISPID_ICMarginY","features":[632]},{"name":"DISPID_ICMouseIcon","features":[632]},{"name":"DISPID_ICMousePointer","features":[632]},{"name":"DISPID_ICPaint","features":[632]},{"name":"DISPID_ICRenderer","features":[632]},{"name":"DISPID_ICSetAllTabletsMode","features":[632]},{"name":"DISPID_ICSetEventInterest","features":[632]},{"name":"DISPID_ICSetGestureStatus","features":[632]},{"name":"DISPID_ICSetSingleTabletIntegratedMode","features":[632]},{"name":"DISPID_ICSetWindowInputRectangle","features":[632]},{"name":"DISPID_ICSsAdd","features":[632]},{"name":"DISPID_ICSsClear","features":[632]},{"name":"DISPID_ICSsCount","features":[632]},{"name":"DISPID_ICSsItem","features":[632]},{"name":"DISPID_ICSsRemove","features":[632]},{"name":"DISPID_ICSs_NewEnum","features":[632]},{"name":"DISPID_ICSupportHighContrastInk","features":[632]},{"name":"DISPID_ICTablet","features":[632]},{"name":"DISPID_ICText","features":[632]},{"name":"DISPID_ICanPaste","features":[632]},{"name":"DISPID_IClip","features":[632]},{"name":"DISPID_IClipboardCopy","features":[632]},{"name":"DISPID_IClipboardCopyWithRectangle","features":[632]},{"name":"DISPID_IClipboardPaste","features":[632]},{"name":"DISPID_IClone","features":[632]},{"name":"DISPID_ICreateStroke","features":[632]},{"name":"DISPID_ICreateStrokeFromPoints","features":[632]},{"name":"DISPID_ICreateStrokes","features":[632]},{"name":"DISPID_ICsCount","features":[632]},{"name":"DISPID_ICsItem","features":[632]},{"name":"DISPID_ICs_NewEnum","features":[632]},{"name":"DISPID_ICsrButtons","features":[632]},{"name":"DISPID_ICsrDrawingAttributes","features":[632]},{"name":"DISPID_ICsrId","features":[632]},{"name":"DISPID_ICsrInverted","features":[632]},{"name":"DISPID_ICsrName","features":[632]},{"name":"DISPID_ICsrTablet","features":[632]},{"name":"DISPID_ICustomStrokes","features":[632]},{"name":"DISPID_IDeleteStroke","features":[632]},{"name":"DISPID_IDeleteStrokes","features":[632]},{"name":"DISPID_IDirty","features":[632]},{"name":"DISPID_IEInkAdded","features":[632]},{"name":"DISPID_IEInkDeleted","features":[632]},{"name":"DISPID_IEPData","features":[632]},{"name":"DISPID_IEPGuid","features":[632]},{"name":"DISPID_IEPsAdd","features":[632]},{"name":"DISPID_IEPsClear","features":[632]},{"name":"DISPID_IEPsCount","features":[632]},{"name":"DISPID_IEPsDoesPropertyExist","features":[632]},{"name":"DISPID_IEPsItem","features":[632]},{"name":"DISPID_IEPsRemove","features":[632]},{"name":"DISPID_IEPs_NewEnum","features":[632]},{"name":"DISPID_IExtendedProperties","features":[632]},{"name":"DISPID_IExtractStrokes","features":[632]},{"name":"DISPID_IExtractWithRectangle","features":[632]},{"name":"DISPID_IGConfidence","features":[632]},{"name":"DISPID_IGGetHotPoint","features":[632]},{"name":"DISPID_IGId","features":[632]},{"name":"DISPID_IGetBoundingBox","features":[632]},{"name":"DISPID_IHitTestCircle","features":[632]},{"name":"DISPID_IHitTestWithLasso","features":[632]},{"name":"DISPID_IHitTestWithRectangle","features":[632]},{"name":"DISPID_IInkDivider_Divide","features":[632]},{"name":"DISPID_IInkDivider_LineHeight","features":[632]},{"name":"DISPID_IInkDivider_RecognizerContext","features":[632]},{"name":"DISPID_IInkDivider_Strokes","features":[632]},{"name":"DISPID_IInkDivisionResult_ResultByType","features":[632]},{"name":"DISPID_IInkDivisionResult_Strokes","features":[632]},{"name":"DISPID_IInkDivisionUnit_DivisionType","features":[632]},{"name":"DISPID_IInkDivisionUnit_RecognizedString","features":[632]},{"name":"DISPID_IInkDivisionUnit_RotationTransform","features":[632]},{"name":"DISPID_IInkDivisionUnit_Strokes","features":[632]},{"name":"DISPID_IInkDivisionUnits_Count","features":[632]},{"name":"DISPID_IInkDivisionUnits_Item","features":[632]},{"name":"DISPID_IInkDivisionUnits_NewEnum","features":[632]},{"name":"DISPID_ILoad","features":[632]},{"name":"DISPID_INearestPoint","features":[632]},{"name":"DISPID_IOAttachMode","features":[632]},{"name":"DISPID_IODraw","features":[632]},{"name":"DISPID_IOEPainted","features":[632]},{"name":"DISPID_IOEPainting","features":[632]},{"name":"DISPID_IOESelectionChanged","features":[632]},{"name":"DISPID_IOESelectionChanging","features":[632]},{"name":"DISPID_IOESelectionMoved","features":[632]},{"name":"DISPID_IOESelectionMoving","features":[632]},{"name":"DISPID_IOESelectionResized","features":[632]},{"name":"DISPID_IOESelectionResizing","features":[632]},{"name":"DISPID_IOEStrokesDeleted","features":[632]},{"name":"DISPID_IOEStrokesDeleting","features":[632]},{"name":"DISPID_IOEditingMode","features":[632]},{"name":"DISPID_IOEraserMode","features":[632]},{"name":"DISPID_IOEraserWidth","features":[632]},{"name":"DISPID_IOHitTestSelection","features":[632]},{"name":"DISPID_IOSelection","features":[632]},{"name":"DISPID_IOSupportHighContrastSelectionUI","features":[632]},{"name":"DISPID_IPBackColor","features":[632]},{"name":"DISPID_IPEChangeUICues","features":[632]},{"name":"DISPID_IPEClick","features":[632]},{"name":"DISPID_IPEDblClick","features":[632]},{"name":"DISPID_IPEInvalidated","features":[632]},{"name":"DISPID_IPEKeyDown","features":[632]},{"name":"DISPID_IPEKeyPress","features":[632]},{"name":"DISPID_IPEKeyUp","features":[632]},{"name":"DISPID_IPEMouseDown","features":[632]},{"name":"DISPID_IPEMouseEnter","features":[632]},{"name":"DISPID_IPEMouseHover","features":[632]},{"name":"DISPID_IPEMouseLeave","features":[632]},{"name":"DISPID_IPEMouseMove","features":[632]},{"name":"DISPID_IPEMouseUp","features":[632]},{"name":"DISPID_IPEMouseWheel","features":[632]},{"name":"DISPID_IPEResize","features":[632]},{"name":"DISPID_IPESizeChanged","features":[632]},{"name":"DISPID_IPESizeModeChanged","features":[632]},{"name":"DISPID_IPEStyleChanged","features":[632]},{"name":"DISPID_IPESystemColorsChanged","features":[632]},{"name":"DISPID_IPInkEnabled","features":[632]},{"name":"DISPID_IPPicture","features":[632]},{"name":"DISPID_IPSizeMode","features":[632]},{"name":"DISPID_IRBottom","features":[632]},{"name":"DISPID_IRData","features":[632]},{"name":"DISPID_IRDraw","features":[632]},{"name":"DISPID_IRDrawStroke","features":[632]},{"name":"DISPID_IRERecognition","features":[632]},{"name":"DISPID_IRERecognitionWithAlternates","features":[632]},{"name":"DISPID_IRGColumns","features":[632]},{"name":"DISPID_IRGDrawnBox","features":[632]},{"name":"DISPID_IRGGuideData","features":[632]},{"name":"DISPID_IRGMidline","features":[632]},{"name":"DISPID_IRGRows","features":[632]},{"name":"DISPID_IRGWritingBox","features":[632]},{"name":"DISPID_IRGetObjectTransform","features":[632]},{"name":"DISPID_IRGetRectangle","features":[632]},{"name":"DISPID_IRGetViewTransform","features":[632]},{"name":"DISPID_IRInkSpaceToPixel","features":[632]},{"name":"DISPID_IRInkSpaceToPixelFromPoints","features":[632]},{"name":"DISPID_IRLeft","features":[632]},{"name":"DISPID_IRMeasure","features":[632]},{"name":"DISPID_IRMeasureStroke","features":[632]},{"name":"DISPID_IRMove","features":[632]},{"name":"DISPID_IRPixelToInkSpace","features":[632]},{"name":"DISPID_IRPixelToInkSpaceFromPoints","features":[632]},{"name":"DISPID_IRRight","features":[632]},{"name":"DISPID_IRRotate","features":[632]},{"name":"DISPID_IRScale","features":[632]},{"name":"DISPID_IRSetObjectTransform","features":[632]},{"name":"DISPID_IRSetRectangle","features":[632]},{"name":"DISPID_IRSetViewTransform","features":[632]},{"name":"DISPID_IRTop","features":[632]},{"name":"DISPID_IRecoCtx2_EnabledUnicodeRanges","features":[632]},{"name":"DISPID_IRecoCtx_BackgroundRecognize","features":[632]},{"name":"DISPID_IRecoCtx_BackgroundRecognizeWithAlternates","features":[632]},{"name":"DISPID_IRecoCtx_CharacterAutoCompletionMode","features":[632]},{"name":"DISPID_IRecoCtx_Clone","features":[632]},{"name":"DISPID_IRecoCtx_EndInkInput","features":[632]},{"name":"DISPID_IRecoCtx_Factoid","features":[632]},{"name":"DISPID_IRecoCtx_Flags","features":[632]},{"name":"DISPID_IRecoCtx_Guide","features":[632]},{"name":"DISPID_IRecoCtx_IsStringSupported","features":[632]},{"name":"DISPID_IRecoCtx_PrefixText","features":[632]},{"name":"DISPID_IRecoCtx_Recognize","features":[632]},{"name":"DISPID_IRecoCtx_Recognizer","features":[632]},{"name":"DISPID_IRecoCtx_StopBackgroundRecognition","features":[632]},{"name":"DISPID_IRecoCtx_StopRecognition","features":[632]},{"name":"DISPID_IRecoCtx_Strokes","features":[632]},{"name":"DISPID_IRecoCtx_SuffixText","features":[632]},{"name":"DISPID_IRecoCtx_WordList","features":[632]},{"name":"DISPID_IRecosCount","features":[632]},{"name":"DISPID_IRecosGetDefaultRecognizer","features":[632]},{"name":"DISPID_IRecosItem","features":[632]},{"name":"DISPID_IRecos_NewEnum","features":[632]},{"name":"DISPID_ISDBezierCusps","features":[632]},{"name":"DISPID_ISDBezierPoints","features":[632]},{"name":"DISPID_ISDClip","features":[632]},{"name":"DISPID_ISDDeleted","features":[632]},{"name":"DISPID_ISDDrawingAttributes","features":[632]},{"name":"DISPID_ISDExtendedProperties","features":[632]},{"name":"DISPID_ISDFindIntersections","features":[632]},{"name":"DISPID_ISDGetBoundingBox","features":[632]},{"name":"DISPID_ISDGetFlattenedBezierPoints","features":[632]},{"name":"DISPID_ISDGetPacketData","features":[632]},{"name":"DISPID_ISDGetPacketDescriptionPropertyMetrics","features":[632]},{"name":"DISPID_ISDGetPacketValuesByProperty","features":[632]},{"name":"DISPID_ISDGetPoints","features":[632]},{"name":"DISPID_ISDGetRectangleIntersections","features":[632]},{"name":"DISPID_ISDHitTestCircle","features":[632]},{"name":"DISPID_ISDID","features":[632]},{"name":"DISPID_ISDInk","features":[632]},{"name":"DISPID_ISDInkIndex","features":[632]},{"name":"DISPID_ISDMove","features":[632]},{"name":"DISPID_ISDNearestPoint","features":[632]},{"name":"DISPID_ISDPacketCount","features":[632]},{"name":"DISPID_ISDPacketDescription","features":[632]},{"name":"DISPID_ISDPacketSize","features":[632]},{"name":"DISPID_ISDPolylineCusps","features":[632]},{"name":"DISPID_ISDRotate","features":[632]},{"name":"DISPID_ISDScale","features":[632]},{"name":"DISPID_ISDScaleToRectangle","features":[632]},{"name":"DISPID_ISDSelfIntersections","features":[632]},{"name":"DISPID_ISDSetPacketValuesByProperty","features":[632]},{"name":"DISPID_ISDSetPoints","features":[632]},{"name":"DISPID_ISDShear","features":[632]},{"name":"DISPID_ISDSplit","features":[632]},{"name":"DISPID_ISDTransform","features":[632]},{"name":"DISPID_ISave","features":[632]},{"name":"DISPID_ISsAdd","features":[632]},{"name":"DISPID_ISsAddStrokes","features":[632]},{"name":"DISPID_ISsClip","features":[632]},{"name":"DISPID_ISsCount","features":[632]},{"name":"DISPID_ISsGetBoundingBox","features":[632]},{"name":"DISPID_ISsInk","features":[632]},{"name":"DISPID_ISsItem","features":[632]},{"name":"DISPID_ISsModifyDrawingAttributes","features":[632]},{"name":"DISPID_ISsMove","features":[632]},{"name":"DISPID_ISsRecognitionResult","features":[632]},{"name":"DISPID_ISsRemove","features":[632]},{"name":"DISPID_ISsRemoveRecognitionResult","features":[632]},{"name":"DISPID_ISsRemoveStrokes","features":[632]},{"name":"DISPID_ISsRotate","features":[632]},{"name":"DISPID_ISsScale","features":[632]},{"name":"DISPID_ISsScaleToRectangle","features":[632]},{"name":"DISPID_ISsShear","features":[632]},{"name":"DISPID_ISsToString","features":[632]},{"name":"DISPID_ISsTransform","features":[632]},{"name":"DISPID_ISsValid","features":[632]},{"name":"DISPID_ISs_NewEnum","features":[632]},{"name":"DISPID_IStrokes","features":[632]},{"name":"DISPID_IT2DeviceKind","features":[632]},{"name":"DISPID_IT3IsMultiTouch","features":[632]},{"name":"DISPID_IT3MaximumCursors","features":[632]},{"name":"DISPID_ITData","features":[632]},{"name":"DISPID_ITGetTransform","features":[632]},{"name":"DISPID_ITHardwareCapabilities","features":[632]},{"name":"DISPID_ITIsPacketPropertySupported","features":[632]},{"name":"DISPID_ITMaximumInputRectangle","features":[632]},{"name":"DISPID_ITName","features":[632]},{"name":"DISPID_ITPlugAndPlayId","features":[632]},{"name":"DISPID_ITPropertyMetrics","features":[632]},{"name":"DISPID_ITReflect","features":[632]},{"name":"DISPID_ITReset","features":[632]},{"name":"DISPID_ITRotate","features":[632]},{"name":"DISPID_ITScale","features":[632]},{"name":"DISPID_ITSetTransform","features":[632]},{"name":"DISPID_ITShear","features":[632]},{"name":"DISPID_ITTranslate","features":[632]},{"name":"DISPID_ITeDx","features":[632]},{"name":"DISPID_ITeDy","features":[632]},{"name":"DISPID_ITeM11","features":[632]},{"name":"DISPID_ITeM12","features":[632]},{"name":"DISPID_ITeM21","features":[632]},{"name":"DISPID_ITeM22","features":[632]},{"name":"DISPID_ITsCount","features":[632]},{"name":"DISPID_ITsDefaultTablet","features":[632]},{"name":"DISPID_ITsIsPacketPropertySupported","features":[632]},{"name":"DISPID_ITsItem","features":[632]},{"name":"DISPID_ITs_NewEnum","features":[632]},{"name":"DISPID_IeeChange","features":[632]},{"name":"DISPID_IeeClick","features":[632]},{"name":"DISPID_IeeCursorDown","features":[632]},{"name":"DISPID_IeeDblClick","features":[632]},{"name":"DISPID_IeeGesture","features":[632]},{"name":"DISPID_IeeKeyDown","features":[632]},{"name":"DISPID_IeeKeyPress","features":[632]},{"name":"DISPID_IeeKeyUp","features":[632]},{"name":"DISPID_IeeMouseDown","features":[632]},{"name":"DISPID_IeeMouseMove","features":[632]},{"name":"DISPID_IeeMouseUp","features":[632]},{"name":"DISPID_IeeRecognitionResult","features":[632]},{"name":"DISPID_IeeSelChange","features":[632]},{"name":"DISPID_IeeStroke","features":[632]},{"name":"DISPID_Ink","features":[632]},{"name":"DISPID_InkCollector","features":[632]},{"name":"DISPID_InkCollectorEvent","features":[632]},{"name":"DISPID_InkCursor","features":[632]},{"name":"DISPID_InkCursorButton","features":[632]},{"name":"DISPID_InkCursorButtons","features":[632]},{"name":"DISPID_InkCursors","features":[632]},{"name":"DISPID_InkCustomStrokes","features":[632]},{"name":"DISPID_InkDivider","features":[632]},{"name":"DISPID_InkDivisionResult","features":[632]},{"name":"DISPID_InkDivisionUnit","features":[632]},{"name":"DISPID_InkDivisionUnits","features":[632]},{"name":"DISPID_InkDrawingAttributes","features":[632]},{"name":"DISPID_InkEdit","features":[632]},{"name":"DISPID_InkEditEvents","features":[632]},{"name":"DISPID_InkEvent","features":[632]},{"name":"DISPID_InkExtendedProperties","features":[632]},{"name":"DISPID_InkExtendedProperty","features":[632]},{"name":"DISPID_InkGesture","features":[632]},{"name":"DISPID_InkInsertMode","features":[632]},{"name":"DISPID_InkMode","features":[632]},{"name":"DISPID_InkRecoAlternate","features":[632]},{"name":"DISPID_InkRecoAlternate_AlternatesWithConstantPropertyValues","features":[632]},{"name":"DISPID_InkRecoAlternate_Ascender","features":[632]},{"name":"DISPID_InkRecoAlternate_Baseline","features":[632]},{"name":"DISPID_InkRecoAlternate_Confidence","features":[632]},{"name":"DISPID_InkRecoAlternate_ConfidenceAlternates","features":[632]},{"name":"DISPID_InkRecoAlternate_Descender","features":[632]},{"name":"DISPID_InkRecoAlternate_GetPropertyValue","features":[632]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromStrokeRanges","features":[632]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromTextRange","features":[632]},{"name":"DISPID_InkRecoAlternate_GetTextRangeFromStrokes","features":[632]},{"name":"DISPID_InkRecoAlternate_LineAlternates","features":[632]},{"name":"DISPID_InkRecoAlternate_LineNumber","features":[632]},{"name":"DISPID_InkRecoAlternate_Midline","features":[632]},{"name":"DISPID_InkRecoAlternate_String","features":[632]},{"name":"DISPID_InkRecoAlternate_Strokes","features":[632]},{"name":"DISPID_InkRecoContext","features":[632]},{"name":"DISPID_InkRecoContext2","features":[632]},{"name":"DISPID_InkRecognitionAlternates","features":[632]},{"name":"DISPID_InkRecognitionAlternates_Count","features":[632]},{"name":"DISPID_InkRecognitionAlternates_Item","features":[632]},{"name":"DISPID_InkRecognitionAlternates_NewEnum","features":[632]},{"name":"DISPID_InkRecognitionAlternates_Strokes","features":[632]},{"name":"DISPID_InkRecognitionEvent","features":[632]},{"name":"DISPID_InkRecognitionResult","features":[632]},{"name":"DISPID_InkRecognitionResult_AlternatesFromSelection","features":[632]},{"name":"DISPID_InkRecognitionResult_ModifyTopAlternate","features":[632]},{"name":"DISPID_InkRecognitionResult_SetResultOnStrokes","features":[632]},{"name":"DISPID_InkRecognitionResult_Strokes","features":[632]},{"name":"DISPID_InkRecognitionResult_TopAlternate","features":[632]},{"name":"DISPID_InkRecognitionResult_TopConfidence","features":[632]},{"name":"DISPID_InkRecognitionResult_TopString","features":[632]},{"name":"DISPID_InkRecognizer","features":[632]},{"name":"DISPID_InkRecognizer2","features":[632]},{"name":"DISPID_InkRecognizerGuide","features":[632]},{"name":"DISPID_InkRecognizers","features":[632]},{"name":"DISPID_InkRectangle","features":[632]},{"name":"DISPID_InkRenderer","features":[632]},{"name":"DISPID_InkStrokeDisp","features":[632]},{"name":"DISPID_InkStrokes","features":[632]},{"name":"DISPID_InkTablet","features":[632]},{"name":"DISPID_InkTablet2","features":[632]},{"name":"DISPID_InkTablet3","features":[632]},{"name":"DISPID_InkTablets","features":[632]},{"name":"DISPID_InkTransform","features":[632]},{"name":"DISPID_InkWordList","features":[632]},{"name":"DISPID_InkWordList2","features":[632]},{"name":"DISPID_InkWordList2_AddWords","features":[632]},{"name":"DISPID_InkWordList_AddWord","features":[632]},{"name":"DISPID_InkWordList_Merge","features":[632]},{"name":"DISPID_InkWordList_RemoveWord","features":[632]},{"name":"DISPID_Locked","features":[632]},{"name":"DISPID_MICClear","features":[632]},{"name":"DISPID_MICClose","features":[632]},{"name":"DISPID_MICInsert","features":[632]},{"name":"DISPID_MICPaint","features":[632]},{"name":"DISPID_MathInputControlEvents","features":[632]},{"name":"DISPID_MaxLength","features":[632]},{"name":"DISPID_MultiLine","features":[632]},{"name":"DISPID_PIPAttachedEditWindow","features":[632]},{"name":"DISPID_PIPAutoShow","features":[632]},{"name":"DISPID_PIPBusy","features":[632]},{"name":"DISPID_PIPCommitPendingInput","features":[632]},{"name":"DISPID_PIPCurrentPanel","features":[632]},{"name":"DISPID_PIPDefaultPanel","features":[632]},{"name":"DISPID_PIPEInputFailed","features":[632]},{"name":"DISPID_PIPEPanelChanged","features":[632]},{"name":"DISPID_PIPEPanelMoving","features":[632]},{"name":"DISPID_PIPEVisibleChanged","features":[632]},{"name":"DISPID_PIPEnableTsf","features":[632]},{"name":"DISPID_PIPFactoid","features":[632]},{"name":"DISPID_PIPHeight","features":[632]},{"name":"DISPID_PIPHorizontalOffset","features":[632]},{"name":"DISPID_PIPLeft","features":[632]},{"name":"DISPID_PIPMoveTo","features":[632]},{"name":"DISPID_PIPRefresh","features":[632]},{"name":"DISPID_PIPTop","features":[632]},{"name":"DISPID_PIPVerticalOffset","features":[632]},{"name":"DISPID_PIPVisible","features":[632]},{"name":"DISPID_PIPWidth","features":[632]},{"name":"DISPID_PenInputPanel","features":[632]},{"name":"DISPID_PenInputPanelEvents","features":[632]},{"name":"DISPID_RTSelLength","features":[632]},{"name":"DISPID_RTSelStart","features":[632]},{"name":"DISPID_RTSelText","features":[632]},{"name":"DISPID_RecoCapabilities","features":[632]},{"name":"DISPID_RecoClsid","features":[632]},{"name":"DISPID_RecoCreateRecognizerContext","features":[632]},{"name":"DISPID_RecoId","features":[632]},{"name":"DISPID_RecoLanguageID","features":[632]},{"name":"DISPID_RecoName","features":[632]},{"name":"DISPID_RecoPreferredPacketDescription","features":[632]},{"name":"DISPID_RecoSupportedProperties","features":[632]},{"name":"DISPID_RecoTimeout","features":[632]},{"name":"DISPID_RecoUnicodeRanges","features":[632]},{"name":"DISPID_RecoVendor","features":[632]},{"name":"DISPID_Recognize","features":[632]},{"name":"DISPID_Recognizer","features":[632]},{"name":"DISPID_Refresh","features":[632]},{"name":"DISPID_SEStrokesAdded","features":[632]},{"name":"DISPID_SEStrokesRemoved","features":[632]},{"name":"DISPID_ScrollBars","features":[632]},{"name":"DISPID_SelAlignment","features":[632]},{"name":"DISPID_SelBold","features":[632]},{"name":"DISPID_SelCharOffset","features":[632]},{"name":"DISPID_SelColor","features":[632]},{"name":"DISPID_SelFontName","features":[632]},{"name":"DISPID_SelFontSize","features":[632]},{"name":"DISPID_SelInk","features":[632]},{"name":"DISPID_SelInksDisplayMode","features":[632]},{"name":"DISPID_SelItalic","features":[632]},{"name":"DISPID_SelRTF","features":[632]},{"name":"DISPID_SelUnderline","features":[632]},{"name":"DISPID_SetGestStatus","features":[632]},{"name":"DISPID_Status","features":[632]},{"name":"DISPID_StrokeEvent","features":[632]},{"name":"DISPID_Text","features":[632]},{"name":"DISPID_TextRTF","features":[632]},{"name":"DISPID_UseMouseForInput","features":[632]},{"name":"DYNAMIC_RENDERER_CACHED_DATA","features":[632]},{"name":"DestroyContext","features":[632]},{"name":"DestroyRecognizer","features":[632]},{"name":"DestroyWordList","features":[632]},{"name":"DockedBottom","features":[632]},{"name":"DockedTop","features":[632]},{"name":"DynamicRenderer","features":[632]},{"name":"EM_GETDRAWATTR","features":[632]},{"name":"EM_GETFACTOID","features":[632]},{"name":"EM_GETGESTURESTATUS","features":[632]},{"name":"EM_GETINKINSERTMODE","features":[632]},{"name":"EM_GETINKMODE","features":[632]},{"name":"EM_GETMOUSEICON","features":[632]},{"name":"EM_GETMOUSEPOINTER","features":[632]},{"name":"EM_GETRECOGNIZER","features":[632]},{"name":"EM_GETRECOTIMEOUT","features":[632]},{"name":"EM_GETSELINK","features":[632]},{"name":"EM_GETSELINKDISPLAYMODE","features":[632]},{"name":"EM_GETSTATUS","features":[632]},{"name":"EM_GETUSEMOUSEFORINPUT","features":[632]},{"name":"EM_RECOGNIZE","features":[632]},{"name":"EM_SETDRAWATTR","features":[632]},{"name":"EM_SETFACTOID","features":[632]},{"name":"EM_SETGESTURESTATUS","features":[632]},{"name":"EM_SETINKINSERTMODE","features":[632]},{"name":"EM_SETINKMODE","features":[632]},{"name":"EM_SETMOUSEICON","features":[632]},{"name":"EM_SETMOUSEPOINTER","features":[632]},{"name":"EM_SETRECOGNIZER","features":[632]},{"name":"EM_SETRECOTIMEOUT","features":[632]},{"name":"EM_SETSELINK","features":[632]},{"name":"EM_SETSELINKDISPLAYMODE","features":[632]},{"name":"EM_SETUSEMOUSEFORINPUT","features":[632]},{"name":"EndInkInput","features":[632]},{"name":"EventMask","features":[632]},{"name":"EventMask_All","features":[632]},{"name":"EventMask_CorrectionModeChanged","features":[632]},{"name":"EventMask_CorrectionModeChanging","features":[632]},{"name":"EventMask_InPlaceSizeChanged","features":[632]},{"name":"EventMask_InPlaceSizeChanging","features":[632]},{"name":"EventMask_InPlaceStateChanged","features":[632]},{"name":"EventMask_InPlaceStateChanging","features":[632]},{"name":"EventMask_InPlaceVisibilityChanged","features":[632]},{"name":"EventMask_InPlaceVisibilityChanging","features":[632]},{"name":"EventMask_InputAreaChanged","features":[632]},{"name":"EventMask_InputAreaChanging","features":[632]},{"name":"EventMask_TextInserted","features":[632]},{"name":"EventMask_TextInserting","features":[632]},{"name":"FACILITY_INK","features":[632]},{"name":"FACTOID_BOPOMOFO","features":[632]},{"name":"FACTOID_CHINESESIMPLECOMMON","features":[632]},{"name":"FACTOID_CHINESETRADITIONALCOMMON","features":[632]},{"name":"FACTOID_CURRENCY","features":[632]},{"name":"FACTOID_DATE","features":[632]},{"name":"FACTOID_DEFAULT","features":[632]},{"name":"FACTOID_DIGIT","features":[632]},{"name":"FACTOID_EMAIL","features":[632]},{"name":"FACTOID_FILENAME","features":[632]},{"name":"FACTOID_HANGULCOMMON","features":[632]},{"name":"FACTOID_HANGULRARE","features":[632]},{"name":"FACTOID_HIRAGANA","features":[632]},{"name":"FACTOID_JAMO","features":[632]},{"name":"FACTOID_JAPANESECOMMON","features":[632]},{"name":"FACTOID_KANJICOMMON","features":[632]},{"name":"FACTOID_KANJIRARE","features":[632]},{"name":"FACTOID_KATAKANA","features":[632]},{"name":"FACTOID_KOREANCOMMON","features":[632]},{"name":"FACTOID_LOWERCHAR","features":[632]},{"name":"FACTOID_NONE","features":[632]},{"name":"FACTOID_NUMBER","features":[632]},{"name":"FACTOID_NUMBERSIMPLE","features":[632]},{"name":"FACTOID_ONECHAR","features":[632]},{"name":"FACTOID_PERCENT","features":[632]},{"name":"FACTOID_POSTALCODE","features":[632]},{"name":"FACTOID_PUNCCHAR","features":[632]},{"name":"FACTOID_SYSTEMDICTIONARY","features":[632]},{"name":"FACTOID_TELEPHONE","features":[632]},{"name":"FACTOID_TIME","features":[632]},{"name":"FACTOID_UPPERCHAR","features":[632]},{"name":"FACTOID_WEB","features":[632]},{"name":"FACTOID_WORDLIST","features":[632]},{"name":"FLICKACTION_COMMANDCODE","features":[632]},{"name":"FLICKACTION_COMMANDCODE_APPCOMMAND","features":[632]},{"name":"FLICKACTION_COMMANDCODE_CUSTOMKEY","features":[632]},{"name":"FLICKACTION_COMMANDCODE_KEYMODIFIER","features":[632]},{"name":"FLICKACTION_COMMANDCODE_NULL","features":[632]},{"name":"FLICKACTION_COMMANDCODE_SCROLL","features":[632]},{"name":"FLICKDIRECTION","features":[632]},{"name":"FLICKDIRECTION_DOWN","features":[632]},{"name":"FLICKDIRECTION_DOWNLEFT","features":[632]},{"name":"FLICKDIRECTION_DOWNRIGHT","features":[632]},{"name":"FLICKDIRECTION_INVALID","features":[632]},{"name":"FLICKDIRECTION_LEFT","features":[632]},{"name":"FLICKDIRECTION_MIN","features":[632]},{"name":"FLICKDIRECTION_RIGHT","features":[632]},{"name":"FLICKDIRECTION_UP","features":[632]},{"name":"FLICKDIRECTION_UPLEFT","features":[632]},{"name":"FLICKDIRECTION_UPRIGHT","features":[632]},{"name":"FLICKMODE","features":[632]},{"name":"FLICKMODE_DEFAULT","features":[632]},{"name":"FLICKMODE_LEARNING","features":[632]},{"name":"FLICKMODE_MAX","features":[632]},{"name":"FLICKMODE_MIN","features":[632]},{"name":"FLICKMODE_OFF","features":[632]},{"name":"FLICKMODE_ON","features":[632]},{"name":"FLICK_DATA","features":[632]},{"name":"FLICK_POINT","features":[632]},{"name":"FLICK_WM_HANDLED_MASK","features":[632]},{"name":"Floating","features":[632]},{"name":"GESTURE_ARROW_DOWN","features":[632]},{"name":"GESTURE_ARROW_LEFT","features":[632]},{"name":"GESTURE_ARROW_RIGHT","features":[632]},{"name":"GESTURE_ARROW_UP","features":[632]},{"name":"GESTURE_ASTERISK","features":[632]},{"name":"GESTURE_BRACE_LEFT","features":[632]},{"name":"GESTURE_BRACE_OVER","features":[632]},{"name":"GESTURE_BRACE_RIGHT","features":[632]},{"name":"GESTURE_BRACE_UNDER","features":[632]},{"name":"GESTURE_BRACKET_LEFT","features":[632]},{"name":"GESTURE_BRACKET_OVER","features":[632]},{"name":"GESTURE_BRACKET_RIGHT","features":[632]},{"name":"GESTURE_BRACKET_UNDER","features":[632]},{"name":"GESTURE_BULLET","features":[632]},{"name":"GESTURE_BULLET_CROSS","features":[632]},{"name":"GESTURE_CHECK","features":[632]},{"name":"GESTURE_CHEVRON_DOWN","features":[632]},{"name":"GESTURE_CHEVRON_LEFT","features":[632]},{"name":"GESTURE_CHEVRON_RIGHT","features":[632]},{"name":"GESTURE_CHEVRON_UP","features":[632]},{"name":"GESTURE_CIRCLE","features":[632]},{"name":"GESTURE_CIRCLE_CIRCLE","features":[632]},{"name":"GESTURE_CIRCLE_CROSS","features":[632]},{"name":"GESTURE_CIRCLE_LINE_HORZ","features":[632]},{"name":"GESTURE_CIRCLE_LINE_VERT","features":[632]},{"name":"GESTURE_CIRCLE_TAP","features":[632]},{"name":"GESTURE_CLOSEUP","features":[632]},{"name":"GESTURE_CROSS","features":[632]},{"name":"GESTURE_CURLICUE","features":[632]},{"name":"GESTURE_DATA","features":[632]},{"name":"GESTURE_DIAGONAL_LEFTDOWN","features":[632]},{"name":"GESTURE_DIAGONAL_LEFTUP","features":[632]},{"name":"GESTURE_DIAGONAL_RIGHTDOWN","features":[632]},{"name":"GESTURE_DIAGONAL_RIGHTUP","features":[632]},{"name":"GESTURE_DIGIT_0","features":[632]},{"name":"GESTURE_DIGIT_1","features":[632]},{"name":"GESTURE_DIGIT_2","features":[632]},{"name":"GESTURE_DIGIT_3","features":[632]},{"name":"GESTURE_DIGIT_4","features":[632]},{"name":"GESTURE_DIGIT_5","features":[632]},{"name":"GESTURE_DIGIT_6","features":[632]},{"name":"GESTURE_DIGIT_7","features":[632]},{"name":"GESTURE_DIGIT_8","features":[632]},{"name":"GESTURE_DIGIT_9","features":[632]},{"name":"GESTURE_DOLLAR","features":[632]},{"name":"GESTURE_DOUBLE_ARROW_DOWN","features":[632]},{"name":"GESTURE_DOUBLE_ARROW_LEFT","features":[632]},{"name":"GESTURE_DOUBLE_ARROW_RIGHT","features":[632]},{"name":"GESTURE_DOUBLE_ARROW_UP","features":[632]},{"name":"GESTURE_DOUBLE_CIRCLE","features":[632]},{"name":"GESTURE_DOUBLE_CURLICUE","features":[632]},{"name":"GESTURE_DOUBLE_DOWN","features":[632]},{"name":"GESTURE_DOUBLE_LEFT","features":[632]},{"name":"GESTURE_DOUBLE_RIGHT","features":[632]},{"name":"GESTURE_DOUBLE_TAP","features":[632]},{"name":"GESTURE_DOUBLE_UP","features":[632]},{"name":"GESTURE_DOWN","features":[632]},{"name":"GESTURE_DOWN_ARROW_LEFT","features":[632]},{"name":"GESTURE_DOWN_ARROW_RIGHT","features":[632]},{"name":"GESTURE_DOWN_LEFT","features":[632]},{"name":"GESTURE_DOWN_LEFT_LONG","features":[632]},{"name":"GESTURE_DOWN_RIGHT","features":[632]},{"name":"GESTURE_DOWN_RIGHT_LONG","features":[632]},{"name":"GESTURE_DOWN_UP","features":[632]},{"name":"GESTURE_EXCLAMATION","features":[632]},{"name":"GESTURE_INFINITY","features":[632]},{"name":"GESTURE_LEFT","features":[632]},{"name":"GESTURE_LEFT_ARROW_DOWN","features":[632]},{"name":"GESTURE_LEFT_ARROW_UP","features":[632]},{"name":"GESTURE_LEFT_DOWN","features":[632]},{"name":"GESTURE_LEFT_RIGHT","features":[632]},{"name":"GESTURE_LEFT_UP","features":[632]},{"name":"GESTURE_LETTER_A","features":[632]},{"name":"GESTURE_LETTER_B","features":[632]},{"name":"GESTURE_LETTER_C","features":[632]},{"name":"GESTURE_LETTER_D","features":[632]},{"name":"GESTURE_LETTER_E","features":[632]},{"name":"GESTURE_LETTER_F","features":[632]},{"name":"GESTURE_LETTER_G","features":[632]},{"name":"GESTURE_LETTER_H","features":[632]},{"name":"GESTURE_LETTER_I","features":[632]},{"name":"GESTURE_LETTER_J","features":[632]},{"name":"GESTURE_LETTER_K","features":[632]},{"name":"GESTURE_LETTER_L","features":[632]},{"name":"GESTURE_LETTER_M","features":[632]},{"name":"GESTURE_LETTER_N","features":[632]},{"name":"GESTURE_LETTER_O","features":[632]},{"name":"GESTURE_LETTER_P","features":[632]},{"name":"GESTURE_LETTER_Q","features":[632]},{"name":"GESTURE_LETTER_R","features":[632]},{"name":"GESTURE_LETTER_S","features":[632]},{"name":"GESTURE_LETTER_T","features":[632]},{"name":"GESTURE_LETTER_U","features":[632]},{"name":"GESTURE_LETTER_V","features":[632]},{"name":"GESTURE_LETTER_W","features":[632]},{"name":"GESTURE_LETTER_X","features":[632]},{"name":"GESTURE_LETTER_Y","features":[632]},{"name":"GESTURE_LETTER_Z","features":[632]},{"name":"GESTURE_NULL","features":[632]},{"name":"GESTURE_OPENUP","features":[632]},{"name":"GESTURE_PARAGRAPH","features":[632]},{"name":"GESTURE_PLUS","features":[632]},{"name":"GESTURE_QUAD_TAP","features":[632]},{"name":"GESTURE_QUESTION","features":[632]},{"name":"GESTURE_RECTANGLE","features":[632]},{"name":"GESTURE_RIGHT","features":[632]},{"name":"GESTURE_RIGHT_ARROW_DOWN","features":[632]},{"name":"GESTURE_RIGHT_ARROW_UP","features":[632]},{"name":"GESTURE_RIGHT_DOWN","features":[632]},{"name":"GESTURE_RIGHT_LEFT","features":[632]},{"name":"GESTURE_RIGHT_UP","features":[632]},{"name":"GESTURE_SCRATCHOUT","features":[632]},{"name":"GESTURE_SECTION","features":[632]},{"name":"GESTURE_SEMICIRCLE_LEFT","features":[632]},{"name":"GESTURE_SEMICIRCLE_RIGHT","features":[632]},{"name":"GESTURE_SHARP","features":[632]},{"name":"GESTURE_SQUARE","features":[632]},{"name":"GESTURE_SQUIGGLE","features":[632]},{"name":"GESTURE_STAR","features":[632]},{"name":"GESTURE_SWAP","features":[632]},{"name":"GESTURE_TAP","features":[632]},{"name":"GESTURE_TRIANGLE","features":[632]},{"name":"GESTURE_TRIPLE_DOWN","features":[632]},{"name":"GESTURE_TRIPLE_LEFT","features":[632]},{"name":"GESTURE_TRIPLE_RIGHT","features":[632]},{"name":"GESTURE_TRIPLE_TAP","features":[632]},{"name":"GESTURE_TRIPLE_UP","features":[632]},{"name":"GESTURE_UP","features":[632]},{"name":"GESTURE_UP_ARROW_LEFT","features":[632]},{"name":"GESTURE_UP_ARROW_RIGHT","features":[632]},{"name":"GESTURE_UP_DOWN","features":[632]},{"name":"GESTURE_UP_LEFT","features":[632]},{"name":"GESTURE_UP_LEFT_LONG","features":[632]},{"name":"GESTURE_UP_RIGHT","features":[632]},{"name":"GESTURE_UP_RIGHT_LONG","features":[632]},{"name":"GET_DANDIDATE_FLAGS","features":[632]},{"name":"GUID_DYNAMIC_RENDERER_CACHED_DATA","features":[632]},{"name":"GUID_GESTURE_DATA","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_ALTITUDE_ORIENTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_AZIMUTH_ORIENTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_BUTTON_PRESSURE","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_DEVICE_CONTACT_ID","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_FINGERCONTACTCONFIDENCE","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_HEIGHT","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_NORMAL_PRESSURE","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_PACKET_STATUS","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_PITCH_ROTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_ROLL_ROTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_SERIAL_NUMBER","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_TANGENT_PRESSURE","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_TIMER_TICK","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_TWIST_ORIENTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_WIDTH","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_X","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_X_TILT_ORIENTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_Y","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_YAW_ROTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_Y_TILT_ORIENTATION","features":[632]},{"name":"GUID_PACKETPROPERTY_GUID_Z","features":[632]},{"name":"GestureRecognizer","features":[632]},{"name":"GetAllRecognizers","features":[632]},{"name":"GetBestResultString","features":[632]},{"name":"GetLatticePtr","features":[632]},{"name":"GetLeftSeparator","features":[632]},{"name":"GetRecoAttributes","features":[632]},{"name":"GetResultPropertyList","features":[632]},{"name":"GetRightSeparator","features":[632]},{"name":"GetUnicodeRanges","features":[632]},{"name":"HRECOALT","features":[632]},{"name":"HRECOCONTEXT","features":[632]},{"name":"HRECOGNIZER","features":[632]},{"name":"HRECOLATTICE","features":[632]},{"name":"HRECOWORDLIST","features":[632]},{"name":"HandwrittenTextInsertion","features":[632]},{"name":"IAG_AllGestures","features":[632]},{"name":"IAG_ArrowDown","features":[632]},{"name":"IAG_ArrowLeft","features":[632]},{"name":"IAG_ArrowRight","features":[632]},{"name":"IAG_ArrowUp","features":[632]},{"name":"IAG_Check","features":[632]},{"name":"IAG_ChevronDown","features":[632]},{"name":"IAG_ChevronLeft","features":[632]},{"name":"IAG_ChevronRight","features":[632]},{"name":"IAG_ChevronUp","features":[632]},{"name":"IAG_Circle","features":[632]},{"name":"IAG_Curlicue","features":[632]},{"name":"IAG_DoubleCircle","features":[632]},{"name":"IAG_DoubleCurlicue","features":[632]},{"name":"IAG_DoubleTap","features":[632]},{"name":"IAG_Down","features":[632]},{"name":"IAG_DownLeft","features":[632]},{"name":"IAG_DownLeftLong","features":[632]},{"name":"IAG_DownRight","features":[632]},{"name":"IAG_DownRightLong","features":[632]},{"name":"IAG_DownUp","features":[632]},{"name":"IAG_Exclamation","features":[632]},{"name":"IAG_Left","features":[632]},{"name":"IAG_LeftDown","features":[632]},{"name":"IAG_LeftRight","features":[632]},{"name":"IAG_LeftUp","features":[632]},{"name":"IAG_NoGesture","features":[632]},{"name":"IAG_Right","features":[632]},{"name":"IAG_RightDown","features":[632]},{"name":"IAG_RightLeft","features":[632]},{"name":"IAG_RightUp","features":[632]},{"name":"IAG_Scratchout","features":[632]},{"name":"IAG_SemiCircleLeft","features":[632]},{"name":"IAG_SemiCircleRight","features":[632]},{"name":"IAG_Square","features":[632]},{"name":"IAG_Star","features":[632]},{"name":"IAG_Tap","features":[632]},{"name":"IAG_Triangle","features":[632]},{"name":"IAG_Up","features":[632]},{"name":"IAG_UpDown","features":[632]},{"name":"IAG_UpLeft","features":[632]},{"name":"IAG_UpLeftLong","features":[632]},{"name":"IAG_UpRight","features":[632]},{"name":"IAG_UpRightLong","features":[632]},{"name":"IBBM_CurveFit","features":[632]},{"name":"IBBM_Default","features":[632]},{"name":"IBBM_NoCurveFit","features":[632]},{"name":"IBBM_PointsOnly","features":[632]},{"name":"IBBM_Union","features":[632]},{"name":"ICBS_Down","features":[632]},{"name":"ICBS_Unavailable","features":[632]},{"name":"ICBS_Up","features":[632]},{"name":"ICB_Copy","features":[632]},{"name":"ICB_Cut","features":[632]},{"name":"ICB_Default","features":[632]},{"name":"ICB_DelayedCopy","features":[632]},{"name":"ICB_ExtractOnly","features":[632]},{"name":"ICEI_AllEvents","features":[632]},{"name":"ICEI_CursorButtonDown","features":[632]},{"name":"ICEI_CursorButtonUp","features":[632]},{"name":"ICEI_CursorDown","features":[632]},{"name":"ICEI_CursorInRange","features":[632]},{"name":"ICEI_CursorOutOfRange","features":[632]},{"name":"ICEI_DblClick","features":[632]},{"name":"ICEI_DefaultEvents","features":[632]},{"name":"ICEI_MouseDown","features":[632]},{"name":"ICEI_MouseMove","features":[632]},{"name":"ICEI_MouseUp","features":[632]},{"name":"ICEI_MouseWheel","features":[632]},{"name":"ICEI_NewInAirPackets","features":[632]},{"name":"ICEI_NewPackets","features":[632]},{"name":"ICEI_Stroke","features":[632]},{"name":"ICEI_SystemGesture","features":[632]},{"name":"ICEI_TabletAdded","features":[632]},{"name":"ICEI_TabletRemoved","features":[632]},{"name":"ICF_Bitmap","features":[632]},{"name":"ICF_CopyMask","features":[632]},{"name":"ICF_Default","features":[632]},{"name":"ICF_EnhancedMetafile","features":[632]},{"name":"ICF_InkSerializedFormat","features":[632]},{"name":"ICF_Metafile","features":[632]},{"name":"ICF_None","features":[632]},{"name":"ICF_PasteMask","features":[632]},{"name":"ICF_SketchInk","features":[632]},{"name":"ICF_TextInk","features":[632]},{"name":"ICM_GestureOnly","features":[632]},{"name":"ICM_InkAndGesture","features":[632]},{"name":"ICM_InkOnly","features":[632]},{"name":"IDM_Ink","features":[632]},{"name":"IDM_Text","features":[632]},{"name":"IDT_Drawing","features":[632]},{"name":"IDT_Line","features":[632]},{"name":"IDT_Paragraph","features":[632]},{"name":"IDT_Segment","features":[632]},{"name":"IDynamicRenderer","features":[632]},{"name":"IECN_GESTURE","features":[632]},{"name":"IECN_RECOGNITIONRESULT","features":[632]},{"name":"IECN_STROKE","features":[632]},{"name":"IECN__BASE","features":[632]},{"name":"IEC_GESTUREINFO","features":[303,354,353,632]},{"name":"IEC_RECOGNITIONRESULTINFO","features":[303,354,353,632]},{"name":"IEC_STROKEINFO","features":[303,354,353,632]},{"name":"IEC__BASE","features":[632]},{"name":"IEF_CopyFromOriginal","features":[632]},{"name":"IEF_Default","features":[632]},{"name":"IEF_RemoveFromOriginal","features":[632]},{"name":"IEM_Disabled","features":[632]},{"name":"IEM_Ink","features":[632]},{"name":"IEM_InkAndGesture","features":[632]},{"name":"IEM_InsertInk","features":[632]},{"name":"IEM_InsertText","features":[632]},{"name":"IES_Collecting","features":[632]},{"name":"IES_Idle","features":[632]},{"name":"IES_Recognizing","features":[632]},{"name":"IGestureRecognizer","features":[632]},{"name":"IHandwrittenTextInsertion","features":[632]},{"name":"IInk","features":[354,632]},{"name":"IInkCollector","features":[354,632]},{"name":"IInkCursor","features":[354,632]},{"name":"IInkCursorButton","features":[354,632]},{"name":"IInkCursorButtons","features":[354,632]},{"name":"IInkCursors","features":[354,632]},{"name":"IInkCustomStrokes","features":[354,632]},{"name":"IInkDisp","features":[354,632]},{"name":"IInkDivider","features":[354,632]},{"name":"IInkDivisionResult","features":[354,632]},{"name":"IInkDivisionUnit","features":[354,632]},{"name":"IInkDivisionUnits","features":[354,632]},{"name":"IInkDrawingAttributes","features":[354,632]},{"name":"IInkEdit","features":[354,632]},{"name":"IInkExtendedProperties","features":[354,632]},{"name":"IInkExtendedProperty","features":[354,632]},{"name":"IInkGesture","features":[354,632]},{"name":"IInkLineInfo","features":[632]},{"name":"IInkOverlay","features":[354,632]},{"name":"IInkPicture","features":[354,632]},{"name":"IInkRecognitionAlternate","features":[354,632]},{"name":"IInkRecognitionAlternates","features":[354,632]},{"name":"IInkRecognitionResult","features":[354,632]},{"name":"IInkRecognizer","features":[354,632]},{"name":"IInkRecognizer2","features":[354,632]},{"name":"IInkRecognizerContext","features":[354,632]},{"name":"IInkRecognizerContext2","features":[354,632]},{"name":"IInkRecognizerGuide","features":[354,632]},{"name":"IInkRecognizers","features":[354,632]},{"name":"IInkRectangle","features":[354,632]},{"name":"IInkRenderer","features":[354,632]},{"name":"IInkStrokeDisp","features":[354,632]},{"name":"IInkStrokes","features":[354,632]},{"name":"IInkTablet","features":[354,632]},{"name":"IInkTablet2","features":[354,632]},{"name":"IInkTablet3","features":[354,632]},{"name":"IInkTablets","features":[354,632]},{"name":"IInkTransform","features":[354,632]},{"name":"IInkWordList","features":[354,632]},{"name":"IInkWordList2","features":[354,632]},{"name":"IInputPanelWindowHandle","features":[632]},{"name":"IKM_Alt","features":[632]},{"name":"IKM_Control","features":[632]},{"name":"IKM_Shift","features":[632]},{"name":"IMF_BOLD","features":[632]},{"name":"IMF_FONT_SELECTED_IN_HDC","features":[632]},{"name":"IMF_ITALIC","features":[632]},{"name":"IMF_Left","features":[632]},{"name":"IMF_Middle","features":[632]},{"name":"IMF_Right","features":[632]},{"name":"IMP_Arrow","features":[632]},{"name":"IMP_ArrowHourglass","features":[632]},{"name":"IMP_ArrowQuestion","features":[632]},{"name":"IMP_Crosshair","features":[632]},{"name":"IMP_Custom","features":[632]},{"name":"IMP_Default","features":[632]},{"name":"IMP_Hand","features":[632]},{"name":"IMP_Hourglass","features":[632]},{"name":"IMP_Ibeam","features":[632]},{"name":"IMP_NoDrop","features":[632]},{"name":"IMP_SizeAll","features":[632]},{"name":"IMP_SizeNESW","features":[632]},{"name":"IMP_SizeNS","features":[632]},{"name":"IMP_SizeNWSE","features":[632]},{"name":"IMP_SizeWE","features":[632]},{"name":"IMP_UpArrow","features":[632]},{"name":"IMathInputControl","features":[354,632]},{"name":"INKEDIT_CLASS","features":[632]},{"name":"INKEDIT_CLASSW","features":[632]},{"name":"INKMETRIC","features":[303,632]},{"name":"INKRECOGNITIONPROPERTY_BOXNUMBER","features":[632]},{"name":"INKRECOGNITIONPROPERTY_CONFIDENCELEVEL","features":[632]},{"name":"INKRECOGNITIONPROPERTY_HOTPOINT","features":[632]},{"name":"INKRECOGNITIONPROPERTY_LINEMETRICS","features":[632]},{"name":"INKRECOGNITIONPROPERTY_LINENUMBER","features":[632]},{"name":"INKRECOGNITIONPROPERTY_MAXIMUMSTROKECOUNT","features":[632]},{"name":"INKRECOGNITIONPROPERTY_POINTSPERINCH","features":[632]},{"name":"INKRECOGNITIONPROPERTY_SEGMENTATION","features":[632]},{"name":"INK_METRIC_FLAGS","features":[632]},{"name":"INK_SERIALIZED_FORMAT","features":[632]},{"name":"IOAM_Behind","features":[632]},{"name":"IOAM_InFront","features":[632]},{"name":"IOEM_Delete","features":[632]},{"name":"IOEM_Ink","features":[632]},{"name":"IOEM_Select","features":[632]},{"name":"IOERM_PointErase","features":[632]},{"name":"IOERM_StrokeErase","features":[632]},{"name":"IPCM_Default","features":[632]},{"name":"IPCM_MaximumCompression","features":[632]},{"name":"IPCM_NoCompression","features":[632]},{"name":"IPF_Base64GIF","features":[632]},{"name":"IPF_Base64InkSerializedFormat","features":[632]},{"name":"IPF_GIF","features":[632]},{"name":"IPF_InkSerializedFormat","features":[632]},{"name":"IPSM_AutoSize","features":[632]},{"name":"IPSM_CenterImage","features":[632]},{"name":"IPSM_Normal","features":[632]},{"name":"IPSM_StretchImage","features":[632]},{"name":"IPT_Ball","features":[632]},{"name":"IPT_Rectangle","features":[632]},{"name":"IP_CURSOR_DOWN","features":[632]},{"name":"IP_INVERTED","features":[632]},{"name":"IP_MARGIN","features":[632]},{"name":"IPenInputPanel","features":[354,632]},{"name":"IRAS_All","features":[632]},{"name":"IRAS_DefaultCount","features":[632]},{"name":"IRAS_Start","features":[632]},{"name":"IRCACM_Full","features":[632]},{"name":"IRCACM_Prefix","features":[632]},{"name":"IRCACM_Random","features":[632]},{"name":"IRC_AdviseInkChange","features":[632]},{"name":"IRC_Alpha","features":[632]},{"name":"IRC_ArbitraryAngle","features":[632]},{"name":"IRC_Beta","features":[632]},{"name":"IRC_BoxedInput","features":[632]},{"name":"IRC_CharacterAutoCompletionInput","features":[632]},{"name":"IRC_Cursive","features":[632]},{"name":"IRC_DontCare","features":[632]},{"name":"IRC_DownAndLeft","features":[632]},{"name":"IRC_DownAndRight","features":[632]},{"name":"IRC_FreeInput","features":[632]},{"name":"IRC_Intermediate","features":[632]},{"name":"IRC_Lattice","features":[632]},{"name":"IRC_LeftAndDown","features":[632]},{"name":"IRC_LinedInput","features":[632]},{"name":"IRC_Object","features":[632]},{"name":"IRC_Personalizable","features":[632]},{"name":"IRC_Poor","features":[632]},{"name":"IRC_PrefersArbitraryAngle","features":[632]},{"name":"IRC_PrefersParagraphBreaking","features":[632]},{"name":"IRC_PrefersSegmentation","features":[632]},{"name":"IRC_RightAndDown","features":[632]},{"name":"IRC_StrokeReorder","features":[632]},{"name":"IRC_Strong","features":[632]},{"name":"IRC_TextPrediction","features":[632]},{"name":"IRM_AutoSpace","features":[632]},{"name":"IRM_Coerce","features":[632]},{"name":"IRM_DisablePersonalization","features":[632]},{"name":"IRM_LineMode","features":[632]},{"name":"IRM_Max","features":[632]},{"name":"IRM_None","features":[632]},{"name":"IRM_PrefixOk","features":[632]},{"name":"IRM_TopInkBreaksOnly","features":[632]},{"name":"IRM_WordModeOnly","features":[632]},{"name":"IRO_Black","features":[632]},{"name":"IRO_CopyPen","features":[632]},{"name":"IRO_MaskNotPen","features":[632]},{"name":"IRO_MaskPen","features":[632]},{"name":"IRO_MaskPenNot","features":[632]},{"name":"IRO_MergeNotPen","features":[632]},{"name":"IRO_MergePen","features":[632]},{"name":"IRO_MergePenNot","features":[632]},{"name":"IRO_NoOperation","features":[632]},{"name":"IRO_Not","features":[632]},{"name":"IRO_NotCopyPen","features":[632]},{"name":"IRO_NotMaskPen","features":[632]},{"name":"IRO_NotMergePen","features":[632]},{"name":"IRO_NotXOrPen","features":[632]},{"name":"IRO_White","features":[632]},{"name":"IRO_XOrPen","features":[632]},{"name":"IRS_InkAddedFailed","features":[632]},{"name":"IRS_Interrupted","features":[632]},{"name":"IRS_NoError","features":[632]},{"name":"IRS_ProcessFailed","features":[632]},{"name":"IRS_SetAutoCompletionModeFailed","features":[632]},{"name":"IRS_SetFactoidFailed","features":[632]},{"name":"IRS_SetFlagsFailed","features":[632]},{"name":"IRS_SetGuideFailed","features":[632]},{"name":"IRS_SetPrefixSuffixFailed","features":[632]},{"name":"IRS_SetStrokesFailed","features":[632]},{"name":"IRS_SetWordListFailed","features":[632]},{"name":"IRealTimeStylus","features":[632]},{"name":"IRealTimeStylus2","features":[632]},{"name":"IRealTimeStylus3","features":[632]},{"name":"IRealTimeStylusSynchronization","features":[632]},{"name":"ISC_AllElements","features":[632]},{"name":"ISC_FirstElement","features":[632]},{"name":"ISG_DoubleTap","features":[632]},{"name":"ISG_Drag","features":[632]},{"name":"ISG_Flick","features":[632]},{"name":"ISG_HoldEnter","features":[632]},{"name":"ISG_HoldLeave","features":[632]},{"name":"ISG_HoverEnter","features":[632]},{"name":"ISG_HoverLeave","features":[632]},{"name":"ISG_RightDrag","features":[632]},{"name":"ISG_RightTap","features":[632]},{"name":"ISG_Tap","features":[632]},{"name":"ISketchInk","features":[354,632]},{"name":"IStrokeBuilder","features":[632]},{"name":"IStylusAsyncPlugin","features":[632]},{"name":"IStylusPlugin","features":[632]},{"name":"IStylusSyncPlugin","features":[632]},{"name":"ITextInputPanel","features":[632]},{"name":"ITextInputPanelEventSink","features":[632]},{"name":"ITextInputPanelRunInfo","features":[632]},{"name":"ITipAutoCompleteClient","features":[632]},{"name":"ITipAutoCompleteProvider","features":[632]},{"name":"InPlace","features":[632]},{"name":"InPlaceDirection","features":[632]},{"name":"InPlaceDirection_Auto","features":[632]},{"name":"InPlaceDirection_Bottom","features":[632]},{"name":"InPlaceDirection_Top","features":[632]},{"name":"InPlaceState","features":[632]},{"name":"InPlaceState_Auto","features":[632]},{"name":"InPlaceState_Expanded","features":[632]},{"name":"InPlaceState_HoverTarget","features":[632]},{"name":"Ink","features":[632]},{"name":"InkApplicationGesture","features":[632]},{"name":"InkBoundingBoxMode","features":[632]},{"name":"InkClipboardFormats","features":[632]},{"name":"InkClipboardModes","features":[632]},{"name":"InkCollectionMode","features":[632]},{"name":"InkCollector","features":[632]},{"name":"InkCollectorClipInkToMargin","features":[632]},{"name":"InkCollectorDefaultMargin","features":[632]},{"name":"InkCollectorEventInterest","features":[632]},{"name":"InkCursorButtonState","features":[632]},{"name":"InkDisp","features":[632]},{"name":"InkDisplayMode","features":[632]},{"name":"InkDivider","features":[632]},{"name":"InkDivisionType","features":[632]},{"name":"InkDrawingAttributes","features":[632]},{"name":"InkEdit","features":[632]},{"name":"InkEditStatus","features":[632]},{"name":"InkExtractFlags","features":[632]},{"name":"InkInsertMode","features":[632]},{"name":"InkMaxTransparencyValue","features":[632]},{"name":"InkMinTransparencyValue","features":[632]},{"name":"InkMode","features":[632]},{"name":"InkMouseButton","features":[632]},{"name":"InkMousePointer","features":[632]},{"name":"InkOverlay","features":[632]},{"name":"InkOverlayAttachMode","features":[632]},{"name":"InkOverlayEditingMode","features":[632]},{"name":"InkOverlayEraserMode","features":[632]},{"name":"InkPenTip","features":[632]},{"name":"InkPersistenceCompressionMode","features":[632]},{"name":"InkPersistenceFormat","features":[632]},{"name":"InkPicture","features":[632]},{"name":"InkPictureSizeMode","features":[632]},{"name":"InkRasterOperation","features":[632]},{"name":"InkRecoGuide","features":[303,632]},{"name":"InkRecognitionAlternatesSelection","features":[632]},{"name":"InkRecognitionConfidence","features":[632]},{"name":"InkRecognitionModes","features":[632]},{"name":"InkRecognitionStatus","features":[632]},{"name":"InkRecognizerCapabilities","features":[632]},{"name":"InkRecognizerCharacterAutoCompletionMode","features":[632]},{"name":"InkRecognizerContext","features":[632]},{"name":"InkRecognizerGuide","features":[632]},{"name":"InkRecognizers","features":[632]},{"name":"InkRectangle","features":[632]},{"name":"InkRenderer","features":[632]},{"name":"InkSelectionConstants","features":[632]},{"name":"InkShiftKeyModifierFlags","features":[632]},{"name":"InkStrokes","features":[632]},{"name":"InkSystemGesture","features":[632]},{"name":"InkTablets","features":[632]},{"name":"InkTransform","features":[632]},{"name":"InkWordList","features":[632]},{"name":"InteractionMode","features":[632]},{"name":"InteractionMode_DockedBottom","features":[632]},{"name":"InteractionMode_DockedTop","features":[632]},{"name":"InteractionMode_Floating","features":[632]},{"name":"InteractionMode_InPlace","features":[632]},{"name":"IsStringSupported","features":[632]},{"name":"KEYMODIFIER","features":[632]},{"name":"KEYMODIFIER_ALTGR","features":[632]},{"name":"KEYMODIFIER_CONTROL","features":[632]},{"name":"KEYMODIFIER_EXT","features":[632]},{"name":"KEYMODIFIER_MENU","features":[632]},{"name":"KEYMODIFIER_SHIFT","features":[632]},{"name":"KEYMODIFIER_WIN","features":[632]},{"name":"LATTICE_METRICS","features":[303,632]},{"name":"LEFT_BUTTON","features":[632]},{"name":"LINE_METRICS","features":[632]},{"name":"LINE_SEGMENT","features":[303,632]},{"name":"LM_ASCENDER","features":[632]},{"name":"LM_BASELINE","features":[632]},{"name":"LM_DESCENDER","features":[632]},{"name":"LM_MIDLINE","features":[632]},{"name":"LoadCachedAttributes","features":[632]},{"name":"MAX_FRIENDLYNAME","features":[632]},{"name":"MAX_LANGUAGES","features":[632]},{"name":"MAX_PACKET_BUTTON_COUNT","features":[632]},{"name":"MAX_PACKET_PROPERTY_COUNT","features":[632]},{"name":"MAX_VENDORNAME","features":[632]},{"name":"MICROSOFT_PENINPUT_PANEL_PROPERTY_T","features":[632]},{"name":"MICROSOFT_TIP_COMBOBOXLIST_PROPERTY","features":[632]},{"name":"MICROSOFT_TIP_NO_INSERT_BUTTON_PROPERTY","features":[632]},{"name":"MICROSOFT_TIP_OPENING_MSG","features":[632]},{"name":"MICROSOFT_URL_EXPERIENCE_PROPERTY","features":[632]},{"name":"MICUIELEMENT","features":[632]},{"name":"MICUIELEMENTSTATE","features":[632]},{"name":"MICUIELEMENTSTATE_DISABLED","features":[632]},{"name":"MICUIELEMENTSTATE_HOT","features":[632]},{"name":"MICUIELEMENTSTATE_NORMAL","features":[632]},{"name":"MICUIELEMENTSTATE_PRESSED","features":[632]},{"name":"MICUIELEMENT_BUTTON_CANCEL","features":[632]},{"name":"MICUIELEMENT_BUTTON_CLEAR","features":[632]},{"name":"MICUIELEMENT_BUTTON_CORRECT","features":[632]},{"name":"MICUIELEMENT_BUTTON_ERASE","features":[632]},{"name":"MICUIELEMENT_BUTTON_INSERT","features":[632]},{"name":"MICUIELEMENT_BUTTON_REDO","features":[632]},{"name":"MICUIELEMENT_BUTTON_UNDO","features":[632]},{"name":"MICUIELEMENT_BUTTON_WRITE","features":[632]},{"name":"MICUIELEMENT_INKPANEL_BACKGROUND","features":[632]},{"name":"MICUIELEMENT_RESULTPANEL_BACKGROUND","features":[632]},{"name":"MIDDLE_BUTTON","features":[632]},{"name":"MakeWordList","features":[632]},{"name":"MathInputControl","features":[632]},{"name":"MouseButton","features":[632]},{"name":"NO_BUTTON","features":[632]},{"name":"NUM_FLICK_DIRECTIONS","features":[632]},{"name":"PACKET_DESCRIPTION","features":[632]},{"name":"PACKET_PROPERTY","features":[632]},{"name":"PROPERTY_METRICS","features":[632]},{"name":"PROPERTY_UNITS","features":[632]},{"name":"PROPERTY_UNITS_AMPERE","features":[632]},{"name":"PROPERTY_UNITS_CANDELA","features":[632]},{"name":"PROPERTY_UNITS_CENTIMETERS","features":[632]},{"name":"PROPERTY_UNITS_DEFAULT","features":[632]},{"name":"PROPERTY_UNITS_DEGREES","features":[632]},{"name":"PROPERTY_UNITS_ENGLINEAR","features":[632]},{"name":"PROPERTY_UNITS_ENGROTATION","features":[632]},{"name":"PROPERTY_UNITS_FAHRENHEIT","features":[632]},{"name":"PROPERTY_UNITS_GRAMS","features":[632]},{"name":"PROPERTY_UNITS_INCHES","features":[632]},{"name":"PROPERTY_UNITS_KELVIN","features":[632]},{"name":"PROPERTY_UNITS_POUNDS","features":[632]},{"name":"PROPERTY_UNITS_RADIANS","features":[632]},{"name":"PROPERTY_UNITS_SECONDS","features":[632]},{"name":"PROPERTY_UNITS_SILINEAR","features":[632]},{"name":"PROPERTY_UNITS_SIROTATION","features":[632]},{"name":"PROPERTY_UNITS_SLUGS","features":[632]},{"name":"PT_Default","features":[632]},{"name":"PT_Handwriting","features":[632]},{"name":"PT_Inactive","features":[632]},{"name":"PT_Keyboard","features":[632]},{"name":"PanelInputArea","features":[632]},{"name":"PanelInputArea_Auto","features":[632]},{"name":"PanelInputArea_CharacterPad","features":[632]},{"name":"PanelInputArea_Keyboard","features":[632]},{"name":"PanelInputArea_WritingPad","features":[632]},{"name":"PanelType","features":[632]},{"name":"PenInputPanel","features":[632]},{"name":"PenInputPanel_Internal","features":[632]},{"name":"PfnRecoCallback","features":[632]},{"name":"Process","features":[303,632]},{"name":"RECOCONF_HIGHCONFIDENCE","features":[632]},{"name":"RECOCONF_LOWCONFIDENCE","features":[632]},{"name":"RECOCONF_MEDIUMCONFIDENCE","features":[632]},{"name":"RECOCONF_NOTSET","features":[632]},{"name":"RECOFLAG_AUTOSPACE","features":[632]},{"name":"RECOFLAG_COERCE","features":[632]},{"name":"RECOFLAG_DISABLEPERSONALIZATION","features":[632]},{"name":"RECOFLAG_LINEMODE","features":[632]},{"name":"RECOFLAG_PREFIXOK","features":[632]},{"name":"RECOFLAG_SINGLESEG","features":[632]},{"name":"RECOFLAG_WORDMODE","features":[632]},{"name":"RECO_ATTRS","features":[632]},{"name":"RECO_GUIDE","features":[632]},{"name":"RECO_LATTICE","features":[632]},{"name":"RECO_LATTICE_COLUMN","features":[632]},{"name":"RECO_LATTICE_ELEMENT","features":[632]},{"name":"RECO_LATTICE_PROPERTIES","features":[632]},{"name":"RECO_LATTICE_PROPERTY","features":[632]},{"name":"RECO_RANGE","features":[632]},{"name":"RECO_TYPE","features":[632]},{"name":"RECO_TYPE_WCHAR","features":[632]},{"name":"RECO_TYPE_WSTRING","features":[632]},{"name":"RF_ADVISEINKCHANGE","features":[632]},{"name":"RF_ARBITRARY_ANGLE","features":[632]},{"name":"RF_BOXED_INPUT","features":[632]},{"name":"RF_CAC_INPUT","features":[632]},{"name":"RF_DONTCARE","features":[632]},{"name":"RF_DOWN_AND_LEFT","features":[632]},{"name":"RF_DOWN_AND_RIGHT","features":[632]},{"name":"RF_FREE_INPUT","features":[632]},{"name":"RF_LATTICE","features":[632]},{"name":"RF_LEFT_AND_DOWN","features":[632]},{"name":"RF_LINED_INPUT","features":[632]},{"name":"RF_OBJECT","features":[632]},{"name":"RF_PERFORMSLINEBREAKING","features":[632]},{"name":"RF_PERSONALIZABLE","features":[632]},{"name":"RF_REQUIRESSEGMENTATIONBREAKING","features":[632]},{"name":"RF_RIGHT_AND_DOWN","features":[632]},{"name":"RF_STROKEREORDER","features":[632]},{"name":"RIGHT_BUTTON","features":[632]},{"name":"RTSDI_AllData","features":[632]},{"name":"RTSDI_CustomStylusDataAdded","features":[632]},{"name":"RTSDI_DefaultEvents","features":[632]},{"name":"RTSDI_Error","features":[632]},{"name":"RTSDI_InAirPackets","features":[632]},{"name":"RTSDI_None","features":[632]},{"name":"RTSDI_Packets","features":[632]},{"name":"RTSDI_RealTimeStylusDisabled","features":[632]},{"name":"RTSDI_RealTimeStylusEnabled","features":[632]},{"name":"RTSDI_StylusButtonDown","features":[632]},{"name":"RTSDI_StylusButtonUp","features":[632]},{"name":"RTSDI_StylusDown","features":[632]},{"name":"RTSDI_StylusInRange","features":[632]},{"name":"RTSDI_StylusNew","features":[632]},{"name":"RTSDI_StylusOutOfRange","features":[632]},{"name":"RTSDI_StylusUp","features":[632]},{"name":"RTSDI_SystemEvents","features":[632]},{"name":"RTSDI_TabletAdded","features":[632]},{"name":"RTSDI_TabletRemoved","features":[632]},{"name":"RTSDI_UpdateMapping","features":[632]},{"name":"RTSLT_AsyncEventLock","features":[632]},{"name":"RTSLT_AsyncObjLock","features":[632]},{"name":"RTSLT_ExcludeCallback","features":[632]},{"name":"RTSLT_ObjLock","features":[632]},{"name":"RTSLT_SyncEventLock","features":[632]},{"name":"RTSLT_SyncObjLock","features":[632]},{"name":"RealTimeStylus","features":[632]},{"name":"RealTimeStylusDataInterest","features":[632]},{"name":"RealTimeStylusLockType","features":[632]},{"name":"SAFE_PARTIAL","features":[632]},{"name":"SCROLLDIRECTION","features":[632]},{"name":"SCROLLDIRECTION_DOWN","features":[632]},{"name":"SCROLLDIRECTION_UP","features":[632]},{"name":"SHR_E","features":[632]},{"name":"SHR_N","features":[632]},{"name":"SHR_NE","features":[632]},{"name":"SHR_NW","features":[632]},{"name":"SHR_None","features":[632]},{"name":"SHR_S","features":[632]},{"name":"SHR_SE","features":[632]},{"name":"SHR_SW","features":[632]},{"name":"SHR_Selection","features":[632]},{"name":"SHR_W","features":[632]},{"name":"STROKE_RANGE","features":[632]},{"name":"STR_GUID_ALTITUDEORIENTATION","features":[632]},{"name":"STR_GUID_AZIMUTHORIENTATION","features":[632]},{"name":"STR_GUID_BUTTONPRESSURE","features":[632]},{"name":"STR_GUID_DEVICE_CONTACT_ID","features":[632]},{"name":"STR_GUID_FINGERCONTACTCONFIDENCE","features":[632]},{"name":"STR_GUID_HEIGHT","features":[632]},{"name":"STR_GUID_NORMALPRESSURE","features":[632]},{"name":"STR_GUID_PAKETSTATUS","features":[632]},{"name":"STR_GUID_PITCHROTATION","features":[632]},{"name":"STR_GUID_ROLLROTATION","features":[632]},{"name":"STR_GUID_SERIALNUMBER","features":[632]},{"name":"STR_GUID_TANGENTPRESSURE","features":[632]},{"name":"STR_GUID_TIMERTICK","features":[632]},{"name":"STR_GUID_TWISTORIENTATION","features":[632]},{"name":"STR_GUID_WIDTH","features":[632]},{"name":"STR_GUID_X","features":[632]},{"name":"STR_GUID_XTILTORIENTATION","features":[632]},{"name":"STR_GUID_Y","features":[632]},{"name":"STR_GUID_YAWROTATION","features":[632]},{"name":"STR_GUID_YTILTORIENTATION","features":[632]},{"name":"STR_GUID_Z","features":[632]},{"name":"SYSTEM_EVENT_DATA","features":[632]},{"name":"ScrollBarsConstants","features":[632]},{"name":"SelAlignmentConstants","features":[632]},{"name":"SelectionHitResult","features":[632]},{"name":"SetEnabledUnicodeRanges","features":[632]},{"name":"SetFactoid","features":[632]},{"name":"SetFlags","features":[632]},{"name":"SetGuide","features":[632]},{"name":"SetTextContext","features":[632]},{"name":"SetWordList","features":[632]},{"name":"SketchInk","features":[632]},{"name":"StrokeBuilder","features":[632]},{"name":"StylusInfo","features":[303,632]},{"name":"StylusQueue","features":[632]},{"name":"SyncStylusQueue","features":[632]},{"name":"TABLET_DISABLE_FLICKFALLBACKKEYS","features":[632]},{"name":"TABLET_DISABLE_FLICKS","features":[632]},{"name":"TABLET_DISABLE_PENBARRELFEEDBACK","features":[632]},{"name":"TABLET_DISABLE_PENTAPFEEDBACK","features":[632]},{"name":"TABLET_DISABLE_PRESSANDHOLD","features":[632]},{"name":"TABLET_DISABLE_SMOOTHSCROLLING","features":[632]},{"name":"TABLET_DISABLE_TOUCHSWITCH","features":[632]},{"name":"TABLET_DISABLE_TOUCHUIFORCEOFF","features":[632]},{"name":"TABLET_DISABLE_TOUCHUIFORCEON","features":[632]},{"name":"TABLET_ENABLE_FLICKLEARNINGMODE","features":[632]},{"name":"TABLET_ENABLE_FLICKSONCONTEXT","features":[632]},{"name":"TABLET_ENABLE_MULTITOUCHDATA","features":[632]},{"name":"TCF_ALLOW_RECOGNITION","features":[632]},{"name":"TCF_FORCE_RECOGNITION","features":[632]},{"name":"TDK_Mouse","features":[632]},{"name":"TDK_Pen","features":[632]},{"name":"TDK_Touch","features":[632]},{"name":"THWC_CursorMustTouch","features":[632]},{"name":"THWC_CursorsHavePhysicalIds","features":[632]},{"name":"THWC_HardProximity","features":[632]},{"name":"THWC_Integrated","features":[632]},{"name":"TPMU_Centimeters","features":[632]},{"name":"TPMU_Default","features":[632]},{"name":"TPMU_Degrees","features":[632]},{"name":"TPMU_Grams","features":[632]},{"name":"TPMU_Inches","features":[632]},{"name":"TPMU_Pounds","features":[632]},{"name":"TPMU_Radians","features":[632]},{"name":"TPMU_Seconds","features":[632]},{"name":"TabletDeviceKind","features":[632]},{"name":"TabletHardwareCapabilities","features":[632]},{"name":"TabletPropertyMetricUnit","features":[632]},{"name":"TextInputPanel","features":[632]},{"name":"TipAutoCompleteClient","features":[632]},{"name":"VisualState","features":[632]},{"name":"WM_TABLET_ADDED","features":[632]},{"name":"WM_TABLET_DEFBASE","features":[632]},{"name":"WM_TABLET_DELETED","features":[632]},{"name":"WM_TABLET_FLICK","features":[632]},{"name":"WM_TABLET_MAXOFFSET","features":[632]},{"name":"WM_TABLET_QUERYSYSTEMGESTURESTATUS","features":[632]},{"name":"_IInkCollectorEvents","features":[354,632]},{"name":"_IInkEditEvents","features":[354,632]},{"name":"_IInkEvents","features":[354,632]},{"name":"_IInkOverlayEvents","features":[354,632]},{"name":"_IInkPictureEvents","features":[354,632]},{"name":"_IInkRecognitionEvents","features":[354,632]},{"name":"_IInkStrokesEvents","features":[354,632]},{"name":"_IMathInputControlEvents","features":[354,632]},{"name":"_IPenInputPanelEvents","features":[354,632]},{"name":"rtfBoth","features":[632]},{"name":"rtfCenter","features":[632]},{"name":"rtfFixedSingle","features":[632]},{"name":"rtfFlat","features":[632]},{"name":"rtfHorizontal","features":[632]},{"name":"rtfLeft","features":[632]},{"name":"rtfNoBorder","features":[632]},{"name":"rtfNone","features":[632]},{"name":"rtfRight","features":[632]},{"name":"rtfThreeD","features":[632]},{"name":"rtfVertical","features":[632]}],"671":[{"name":"ANCHOR_CHANGE_HISTORY_FLAGS","features":[620]},{"name":"AccClientDocMgr","features":[620]},{"name":"AccDictionary","features":[620]},{"name":"AccServerDocMgr","features":[620]},{"name":"AccStore","features":[620]},{"name":"CAND_CANCELED","features":[620]},{"name":"CAND_FINALIZED","features":[620]},{"name":"CAND_SELECTED","features":[620]},{"name":"CLSID_TF_CategoryMgr","features":[620]},{"name":"CLSID_TF_ClassicLangBar","features":[620]},{"name":"CLSID_TF_DisplayAttributeMgr","features":[620]},{"name":"CLSID_TF_InputProcessorProfiles","features":[620]},{"name":"CLSID_TF_LangBarItemMgr","features":[620]},{"name":"CLSID_TF_LangBarMgr","features":[620]},{"name":"CLSID_TF_ThreadMgr","features":[620]},{"name":"CLSID_TF_TransitoryExtensionUIEntry","features":[620]},{"name":"CLSID_TsfServices","features":[620]},{"name":"DCM_FLAGS_CTFMON","features":[620]},{"name":"DCM_FLAGS_LOCALTHREADTSF","features":[620]},{"name":"DCM_FLAGS_TASKENG","features":[620]},{"name":"DoMsCtfMonitor","features":[303,620]},{"name":"DocWrap","features":[620]},{"name":"GETIF_DICTGRAM","features":[620]},{"name":"GETIF_RECOCONTEXT","features":[620]},{"name":"GETIF_RECOGNIZER","features":[620]},{"name":"GETIF_RECOGNIZERNOINIT","features":[620]},{"name":"GETIF_RESMGR","features":[620]},{"name":"GETIF_VOICE","features":[620]},{"name":"GET_TEXT_AND_PROPERTY_UPDATES_FLAGS","features":[620]},{"name":"GUID_APP_FUNCTIONPROVIDER","features":[620]},{"name":"GUID_COMPARTMENT_CONVERSIONMODEBIAS","features":[620]},{"name":"GUID_COMPARTMENT_EMPTYCONTEXT","features":[620]},{"name":"GUID_COMPARTMENT_ENABLED_PROFILES_UPDATED","features":[620]},{"name":"GUID_COMPARTMENT_HANDWRITING_OPENCLOSE","features":[620]},{"name":"GUID_COMPARTMENT_KEYBOARD_DISABLED","features":[620]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE","features":[620]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_CONVERSION","features":[620]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_SENTENCE","features":[620]},{"name":"GUID_COMPARTMENT_KEYBOARD_OPENCLOSE","features":[620]},{"name":"GUID_COMPARTMENT_SAPI_AUDIO","features":[620]},{"name":"GUID_COMPARTMENT_SPEECH_CFGMENU","features":[620]},{"name":"GUID_COMPARTMENT_SPEECH_DISABLED","features":[620]},{"name":"GUID_COMPARTMENT_SPEECH_GLOBALSTATE","features":[620]},{"name":"GUID_COMPARTMENT_SPEECH_OPENCLOSE","features":[620]},{"name":"GUID_COMPARTMENT_SPEECH_UI_STATUS","features":[620]},{"name":"GUID_COMPARTMENT_TIPUISTATUS","features":[620]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION","features":[620]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_DOCUMENTMANAGER","features":[620]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_PARENT","features":[620]},{"name":"GUID_INTEGRATIONSTYLE_SEARCHBOX","features":[620]},{"name":"GUID_LBI_INPUTMODE","features":[620]},{"name":"GUID_LBI_SAPILAYR_CFGMENUBUTTON","features":[620]},{"name":"GUID_MODEBIAS_CHINESE","features":[620]},{"name":"GUID_MODEBIAS_CONVERSATION","features":[620]},{"name":"GUID_MODEBIAS_DATETIME","features":[620]},{"name":"GUID_MODEBIAS_FILENAME","features":[620]},{"name":"GUID_MODEBIAS_FULLWIDTHALPHANUMERIC","features":[620]},{"name":"GUID_MODEBIAS_FULLWIDTHHANGUL","features":[620]},{"name":"GUID_MODEBIAS_HALFWIDTHKATAKANA","features":[620]},{"name":"GUID_MODEBIAS_HANGUL","features":[620]},{"name":"GUID_MODEBIAS_HIRAGANA","features":[620]},{"name":"GUID_MODEBIAS_KATAKANA","features":[620]},{"name":"GUID_MODEBIAS_NAME","features":[620]},{"name":"GUID_MODEBIAS_NONE","features":[620]},{"name":"GUID_MODEBIAS_NUMERIC","features":[620]},{"name":"GUID_MODEBIAS_READING","features":[620]},{"name":"GUID_MODEBIAS_URLHISTORY","features":[620]},{"name":"GUID_PROP_ATTRIBUTE","features":[620]},{"name":"GUID_PROP_COMPOSING","features":[620]},{"name":"GUID_PROP_INPUTSCOPE","features":[620]},{"name":"GUID_PROP_LANGID","features":[620]},{"name":"GUID_PROP_MODEBIAS","features":[620]},{"name":"GUID_PROP_READING","features":[620]},{"name":"GUID_PROP_TEXTOWNER","features":[620]},{"name":"GUID_PROP_TKB_ALTERNATES","features":[620]},{"name":"GUID_SYSTEM_FUNCTIONPROVIDER","features":[620]},{"name":"GUID_TFCAT_CATEGORY_OF_TIP","features":[620]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROPERTY","features":[620]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROVIDER","features":[620]},{"name":"GUID_TFCAT_PROPSTYLE_STATIC","features":[620]},{"name":"GUID_TFCAT_PROP_AUDIODATA","features":[620]},{"name":"GUID_TFCAT_PROP_INKDATA","features":[620]},{"name":"GUID_TFCAT_TIPCAP_COMLESS","features":[620]},{"name":"GUID_TFCAT_TIPCAP_DUALMODE","features":[620]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVEONLY","features":[620]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVESUPPORT","features":[620]},{"name":"GUID_TFCAT_TIPCAP_INPUTMODECOMPARTMENT","features":[620]},{"name":"GUID_TFCAT_TIPCAP_LOCALSERVER","features":[620]},{"name":"GUID_TFCAT_TIPCAP_SECUREMODE","features":[620]},{"name":"GUID_TFCAT_TIPCAP_SYSTRAYSUPPORT","features":[620]},{"name":"GUID_TFCAT_TIPCAP_TSF3","features":[620]},{"name":"GUID_TFCAT_TIPCAP_UIELEMENTENABLED","features":[620]},{"name":"GUID_TFCAT_TIPCAP_WOW16","features":[620]},{"name":"GUID_TFCAT_TIP_HANDWRITING","features":[620]},{"name":"GUID_TFCAT_TIP_KEYBOARD","features":[620]},{"name":"GUID_TFCAT_TIP_SPEECH","features":[620]},{"name":"GUID_TFCAT_TRANSITORYEXTENSIONUI","features":[620]},{"name":"GUID_TS_SERVICE_ACCESSIBLE","features":[620]},{"name":"GUID_TS_SERVICE_ACTIVEX","features":[620]},{"name":"GUID_TS_SERVICE_DATAOBJECT","features":[620]},{"name":"GXFPF_NEAREST","features":[620]},{"name":"GXFPF_ROUND_NEAREST","features":[620]},{"name":"HKL","features":[620]},{"name":"IAccClientDocMgr","features":[620]},{"name":"IAccDictionary","features":[620]},{"name":"IAccServerDocMgr","features":[620]},{"name":"IAccStore","features":[620]},{"name":"IAnchor","features":[620]},{"name":"IClonableWrapper","features":[620]},{"name":"ICoCreateLocally","features":[620]},{"name":"ICoCreatedLocally","features":[620]},{"name":"IDocWrap","features":[620]},{"name":"IEnumITfCompositionView","features":[620]},{"name":"IEnumSpeechCommands","features":[620]},{"name":"IEnumTfCandidates","features":[620]},{"name":"IEnumTfContextViews","features":[620]},{"name":"IEnumTfContexts","features":[620]},{"name":"IEnumTfDisplayAttributeInfo","features":[620]},{"name":"IEnumTfDocumentMgrs","features":[620]},{"name":"IEnumTfFunctionProviders","features":[620]},{"name":"IEnumTfInputProcessorProfiles","features":[620]},{"name":"IEnumTfLangBarItems","features":[620]},{"name":"IEnumTfLanguageProfiles","features":[620]},{"name":"IEnumTfLatticeElements","features":[620]},{"name":"IEnumTfProperties","features":[620]},{"name":"IEnumTfPropertyValue","features":[620]},{"name":"IEnumTfRanges","features":[620]},{"name":"IEnumTfUIElements","features":[620]},{"name":"IInternalDocWrap","features":[620]},{"name":"ILMCM_CHECKLAYOUTANDTIPENABLED","features":[620]},{"name":"ILMCM_LANGUAGEBAROFF","features":[620]},{"name":"INSERT_TEXT_AT_SELECTION_FLAGS","features":[620]},{"name":"IS_ADDRESS_CITY","features":[620]},{"name":"IS_ADDRESS_COUNTRYNAME","features":[620]},{"name":"IS_ADDRESS_COUNTRYSHORTNAME","features":[620]},{"name":"IS_ADDRESS_FULLPOSTALADDRESS","features":[620]},{"name":"IS_ADDRESS_POSTALCODE","features":[620]},{"name":"IS_ADDRESS_STATEORPROVINCE","features":[620]},{"name":"IS_ADDRESS_STREET","features":[620]},{"name":"IS_ALPHANUMERIC_FULLWIDTH","features":[620]},{"name":"IS_ALPHANUMERIC_HALFWIDTH","features":[620]},{"name":"IS_ALPHANUMERIC_PIN","features":[620]},{"name":"IS_ALPHANUMERIC_PIN_SET","features":[620]},{"name":"IS_BOPOMOFO","features":[620]},{"name":"IS_CHAT","features":[620]},{"name":"IS_CHAT_WITHOUT_EMOJI","features":[620]},{"name":"IS_CHINESE_FULLWIDTH","features":[620]},{"name":"IS_CHINESE_HALFWIDTH","features":[620]},{"name":"IS_CURRENCY_AMOUNT","features":[620]},{"name":"IS_CURRENCY_AMOUNTANDSYMBOL","features":[620]},{"name":"IS_CURRENCY_CHINESE","features":[620]},{"name":"IS_DATE_DAY","features":[620]},{"name":"IS_DATE_DAYNAME","features":[620]},{"name":"IS_DATE_FULLDATE","features":[620]},{"name":"IS_DATE_MONTH","features":[620]},{"name":"IS_DATE_MONTHNAME","features":[620]},{"name":"IS_DATE_YEAR","features":[620]},{"name":"IS_DEFAULT","features":[620]},{"name":"IS_DIGITS","features":[620]},{"name":"IS_EMAILNAME_OR_ADDRESS","features":[620]},{"name":"IS_EMAIL_SMTPEMAILADDRESS","features":[620]},{"name":"IS_EMAIL_USERNAME","features":[620]},{"name":"IS_ENUMSTRING","features":[620]},{"name":"IS_FILE_FILENAME","features":[620]},{"name":"IS_FILE_FULLFILEPATH","features":[620]},{"name":"IS_FORMULA","features":[620]},{"name":"IS_FORMULA_NUMBER","features":[620]},{"name":"IS_HANGUL_FULLWIDTH","features":[620]},{"name":"IS_HANGUL_HALFWIDTH","features":[620]},{"name":"IS_HANJA","features":[620]},{"name":"IS_HIRAGANA","features":[620]},{"name":"IS_KATAKANA_FULLWIDTH","features":[620]},{"name":"IS_KATAKANA_HALFWIDTH","features":[620]},{"name":"IS_LOGINNAME","features":[620]},{"name":"IS_MAPS","features":[620]},{"name":"IS_NAME_OR_PHONENUMBER","features":[620]},{"name":"IS_NATIVE_SCRIPT","features":[620]},{"name":"IS_NUMBER","features":[620]},{"name":"IS_NUMBER_FULLWIDTH","features":[620]},{"name":"IS_NUMERIC_PASSWORD","features":[620]},{"name":"IS_NUMERIC_PIN","features":[620]},{"name":"IS_ONECHAR","features":[620]},{"name":"IS_PASSWORD","features":[620]},{"name":"IS_PERSONALNAME_FULLNAME","features":[620]},{"name":"IS_PERSONALNAME_GIVENNAME","features":[620]},{"name":"IS_PERSONALNAME_MIDDLENAME","features":[620]},{"name":"IS_PERSONALNAME_PREFIX","features":[620]},{"name":"IS_PERSONALNAME_SUFFIX","features":[620]},{"name":"IS_PERSONALNAME_SURNAME","features":[620]},{"name":"IS_PHRASELIST","features":[620]},{"name":"IS_PRIVATE","features":[620]},{"name":"IS_REGULAREXPRESSION","features":[620]},{"name":"IS_SEARCH","features":[620]},{"name":"IS_SEARCH_INCREMENTAL","features":[620]},{"name":"IS_SRGS","features":[620]},{"name":"IS_TELEPHONE_AREACODE","features":[620]},{"name":"IS_TELEPHONE_COUNTRYCODE","features":[620]},{"name":"IS_TELEPHONE_FULLTELEPHONENUMBER","features":[620]},{"name":"IS_TELEPHONE_LOCALNUMBER","features":[620]},{"name":"IS_TEXT","features":[620]},{"name":"IS_TIME_FULLTIME","features":[620]},{"name":"IS_TIME_HOUR","features":[620]},{"name":"IS_TIME_MINORSEC","features":[620]},{"name":"IS_URL","features":[620]},{"name":"IS_XML","features":[620]},{"name":"IS_YOMI","features":[620]},{"name":"ISpeechCommandProvider","features":[620]},{"name":"ITextStoreACP","features":[620]},{"name":"ITextStoreACP2","features":[620]},{"name":"ITextStoreACPEx","features":[620]},{"name":"ITextStoreACPServices","features":[620]},{"name":"ITextStoreACPSink","features":[620]},{"name":"ITextStoreACPSinkEx","features":[620]},{"name":"ITextStoreAnchor","features":[620]},{"name":"ITextStoreAnchorEx","features":[620]},{"name":"ITextStoreAnchorSink","features":[620]},{"name":"ITextStoreSinkAnchorEx","features":[620]},{"name":"ITfActiveLanguageProfileNotifySink","features":[620]},{"name":"ITfCandidateList","features":[620]},{"name":"ITfCandidateListUIElement","features":[620]},{"name":"ITfCandidateListUIElementBehavior","features":[620]},{"name":"ITfCandidateString","features":[620]},{"name":"ITfCategoryMgr","features":[620]},{"name":"ITfCleanupContextDurationSink","features":[620]},{"name":"ITfCleanupContextSink","features":[620]},{"name":"ITfClientId","features":[620]},{"name":"ITfCompartment","features":[620]},{"name":"ITfCompartmentEventSink","features":[620]},{"name":"ITfCompartmentMgr","features":[620]},{"name":"ITfComposition","features":[620]},{"name":"ITfCompositionSink","features":[620]},{"name":"ITfCompositionView","features":[620]},{"name":"ITfConfigureSystemKeystrokeFeed","features":[620]},{"name":"ITfContext","features":[620]},{"name":"ITfContextComposition","features":[620]},{"name":"ITfContextKeyEventSink","features":[620]},{"name":"ITfContextOwner","features":[620]},{"name":"ITfContextOwnerCompositionServices","features":[620]},{"name":"ITfContextOwnerCompositionSink","features":[620]},{"name":"ITfContextOwnerServices","features":[620]},{"name":"ITfContextView","features":[620]},{"name":"ITfCreatePropertyStore","features":[620]},{"name":"ITfDisplayAttributeInfo","features":[620]},{"name":"ITfDisplayAttributeMgr","features":[620]},{"name":"ITfDisplayAttributeNotifySink","features":[620]},{"name":"ITfDisplayAttributeProvider","features":[620]},{"name":"ITfDocumentMgr","features":[620]},{"name":"ITfEditRecord","features":[620]},{"name":"ITfEditSession","features":[620]},{"name":"ITfEditTransactionSink","features":[620]},{"name":"ITfFnAdviseText","features":[620]},{"name":"ITfFnBalloon","features":[620]},{"name":"ITfFnConfigure","features":[620]},{"name":"ITfFnConfigureRegisterEudc","features":[620]},{"name":"ITfFnConfigureRegisterWord","features":[620]},{"name":"ITfFnCustomSpeechCommand","features":[620]},{"name":"ITfFnGetLinguisticAlternates","features":[620]},{"name":"ITfFnGetPreferredTouchKeyboardLayout","features":[620]},{"name":"ITfFnGetSAPIObject","features":[620]},{"name":"ITfFnLMInternal","features":[620]},{"name":"ITfFnLMProcessor","features":[620]},{"name":"ITfFnLangProfileUtil","features":[620]},{"name":"ITfFnPlayBack","features":[620]},{"name":"ITfFnPropertyUIStatus","features":[620]},{"name":"ITfFnReconversion","features":[620]},{"name":"ITfFnSearchCandidateProvider","features":[620]},{"name":"ITfFnShowHelp","features":[620]},{"name":"ITfFunction","features":[620]},{"name":"ITfFunctionProvider","features":[620]},{"name":"ITfInputProcessorProfileActivationSink","features":[620]},{"name":"ITfInputProcessorProfileMgr","features":[620]},{"name":"ITfInputProcessorProfileSubstituteLayout","features":[620]},{"name":"ITfInputProcessorProfiles","features":[620]},{"name":"ITfInputProcessorProfilesEx","features":[620]},{"name":"ITfInputScope","features":[620]},{"name":"ITfInputScope2","features":[620]},{"name":"ITfInsertAtSelection","features":[620]},{"name":"ITfIntegratableCandidateListUIElement","features":[620]},{"name":"ITfKeyEventSink","features":[620]},{"name":"ITfKeyTraceEventSink","features":[620]},{"name":"ITfKeystrokeMgr","features":[620]},{"name":"ITfLMLattice","features":[620]},{"name":"ITfLangBarEventSink","features":[620]},{"name":"ITfLangBarItem","features":[620]},{"name":"ITfLangBarItemBalloon","features":[620]},{"name":"ITfLangBarItemBitmap","features":[620]},{"name":"ITfLangBarItemBitmapButton","features":[620]},{"name":"ITfLangBarItemButton","features":[620]},{"name":"ITfLangBarItemMgr","features":[620]},{"name":"ITfLangBarItemSink","features":[620]},{"name":"ITfLangBarMgr","features":[620]},{"name":"ITfLanguageProfileNotifySink","features":[620]},{"name":"ITfMSAAControl","features":[620]},{"name":"ITfMenu","features":[620]},{"name":"ITfMessagePump","features":[620]},{"name":"ITfMouseSink","features":[620]},{"name":"ITfMouseTracker","features":[620]},{"name":"ITfMouseTrackerACP","features":[620]},{"name":"ITfPersistentPropertyLoaderACP","features":[620]},{"name":"ITfPreservedKeyNotifySink","features":[620]},{"name":"ITfProperty","features":[620]},{"name":"ITfPropertyStore","features":[620]},{"name":"ITfQueryEmbedded","features":[620]},{"name":"ITfRange","features":[620]},{"name":"ITfRangeACP","features":[620]},{"name":"ITfRangeBackup","features":[620]},{"name":"ITfReadOnlyProperty","features":[620]},{"name":"ITfReadingInformationUIElement","features":[620]},{"name":"ITfReverseConversion","features":[620]},{"name":"ITfReverseConversionList","features":[620]},{"name":"ITfReverseConversionMgr","features":[620]},{"name":"ITfSource","features":[620]},{"name":"ITfSourceSingle","features":[620]},{"name":"ITfSpeechUIServer","features":[620]},{"name":"ITfStatusSink","features":[620]},{"name":"ITfSystemDeviceTypeLangBarItem","features":[620]},{"name":"ITfSystemLangBarItem","features":[620]},{"name":"ITfSystemLangBarItemSink","features":[620]},{"name":"ITfSystemLangBarItemText","features":[620]},{"name":"ITfTextEditSink","features":[620]},{"name":"ITfTextInputProcessor","features":[620]},{"name":"ITfTextInputProcessorEx","features":[620]},{"name":"ITfTextLayoutSink","features":[620]},{"name":"ITfThreadFocusSink","features":[620]},{"name":"ITfThreadMgr","features":[620]},{"name":"ITfThreadMgr2","features":[620]},{"name":"ITfThreadMgrEventSink","features":[620]},{"name":"ITfThreadMgrEx","features":[620]},{"name":"ITfToolTipUIElement","features":[620]},{"name":"ITfTransitoryExtensionSink","features":[620]},{"name":"ITfTransitoryExtensionUIElement","features":[620]},{"name":"ITfUIElement","features":[620]},{"name":"ITfUIElementMgr","features":[620]},{"name":"ITfUIElementSink","features":[620]},{"name":"IUIManagerEventSink","features":[620]},{"name":"IVersionInfo","features":[620]},{"name":"InitLocalMsCtfMonitor","features":[620]},{"name":"InputScope","features":[620]},{"name":"LANG_BAR_ITEM_ICON_MODE_FLAGS","features":[620]},{"name":"LIBID_MSAATEXTLib","features":[620]},{"name":"MSAAControl","features":[620]},{"name":"STYLE_ACTIVE_SELECTION","features":[620]},{"name":"STYLE_IMPLIED_SELECTION","features":[620]},{"name":"TEXT_STORE_CHANGE_FLAGS","features":[620]},{"name":"TEXT_STORE_LOCK_FLAGS","features":[620]},{"name":"TEXT_STORE_TEXT_CHANGE_FLAGS","features":[620]},{"name":"TF_AE_END","features":[620]},{"name":"TF_AE_NONE","features":[620]},{"name":"TF_AE_START","features":[620]},{"name":"TF_ANCHOR_END","features":[620]},{"name":"TF_ANCHOR_START","features":[620]},{"name":"TF_ATTR_CONVERTED","features":[620]},{"name":"TF_ATTR_FIXEDCONVERTED","features":[620]},{"name":"TF_ATTR_INPUT","features":[620]},{"name":"TF_ATTR_INPUT_ERROR","features":[620]},{"name":"TF_ATTR_OTHER","features":[620]},{"name":"TF_ATTR_TARGET_CONVERTED","features":[620]},{"name":"TF_ATTR_TARGET_NOTCONVERTED","features":[620]},{"name":"TF_CHAR_EMBEDDED","features":[620]},{"name":"TF_CLUIE_COUNT","features":[620]},{"name":"TF_CLUIE_CURRENTPAGE","features":[620]},{"name":"TF_CLUIE_DOCUMENTMGR","features":[620]},{"name":"TF_CLUIE_PAGEINDEX","features":[620]},{"name":"TF_CLUIE_SELECTION","features":[620]},{"name":"TF_CLUIE_STRING","features":[620]},{"name":"TF_COMMANDING_ENABLED","features":[620]},{"name":"TF_COMMANDING_ON","features":[620]},{"name":"TF_CONTEXT_EDIT_CONTEXT_FLAGS","features":[620]},{"name":"TF_CONVERSIONMODE_ALPHANUMERIC","features":[620]},{"name":"TF_CONVERSIONMODE_CHARCODE","features":[620]},{"name":"TF_CONVERSIONMODE_EUDC","features":[620]},{"name":"TF_CONVERSIONMODE_FIXED","features":[620]},{"name":"TF_CONVERSIONMODE_FULLSHAPE","features":[620]},{"name":"TF_CONVERSIONMODE_KATAKANA","features":[620]},{"name":"TF_CONVERSIONMODE_NATIVE","features":[620]},{"name":"TF_CONVERSIONMODE_NOCONVERSION","features":[620]},{"name":"TF_CONVERSIONMODE_ROMAN","features":[620]},{"name":"TF_CONVERSIONMODE_SOFTKEYBOARD","features":[620]},{"name":"TF_CONVERSIONMODE_SYMBOL","features":[620]},{"name":"TF_CT_COLORREF","features":[620]},{"name":"TF_CT_NONE","features":[620]},{"name":"TF_CT_SYSCOLOR","features":[620]},{"name":"TF_DA_ATTR_INFO","features":[620]},{"name":"TF_DA_COLOR","features":[303,620]},{"name":"TF_DA_COLORTYPE","features":[620]},{"name":"TF_DA_LINESTYLE","features":[620]},{"name":"TF_DEFAULT_SELECTION","features":[620]},{"name":"TF_DICTATION_ENABLED","features":[620]},{"name":"TF_DICTATION_ON","features":[620]},{"name":"TF_DISABLE_BALLOON","features":[620]},{"name":"TF_DISABLE_COMMANDING","features":[620]},{"name":"TF_DISABLE_DICTATION","features":[620]},{"name":"TF_DISABLE_SPEECH","features":[620]},{"name":"TF_DISPLAYATTRIBUTE","features":[303,620]},{"name":"TF_DTLBI_NONE","features":[620]},{"name":"TF_DTLBI_USEPROFILEICON","features":[620]},{"name":"TF_ENABLE_PROCESS_ATOM","features":[620]},{"name":"TF_ES_ASYNC","features":[620]},{"name":"TF_ES_ASYNCDONTCARE","features":[620]},{"name":"TF_ES_READ","features":[620]},{"name":"TF_ES_READWRITE","features":[620]},{"name":"TF_ES_SYNC","features":[620]},{"name":"TF_E_ALREADY_EXISTS","features":[620]},{"name":"TF_E_COMPOSITION_REJECTED","features":[620]},{"name":"TF_E_DISCONNECTED","features":[620]},{"name":"TF_E_EMPTYCONTEXT","features":[620]},{"name":"TF_E_FORMAT","features":[620]},{"name":"TF_E_INVALIDPOINT","features":[620]},{"name":"TF_E_INVALIDPOS","features":[620]},{"name":"TF_E_INVALIDVIEW","features":[620]},{"name":"TF_E_LOCKED","features":[620]},{"name":"TF_E_NOCONVERSION","features":[620]},{"name":"TF_E_NOINTERFACE","features":[620]},{"name":"TF_E_NOLAYOUT","features":[620]},{"name":"TF_E_NOLOCK","features":[620]},{"name":"TF_E_NOOBJECT","features":[620]},{"name":"TF_E_NOPROVIDER","features":[620]},{"name":"TF_E_NOSELECTION","features":[620]},{"name":"TF_E_NOSERVICE","features":[620]},{"name":"TF_E_NOTOWNEDRANGE","features":[620]},{"name":"TF_E_RANGE_NOT_COVERED","features":[620]},{"name":"TF_E_READONLY","features":[620]},{"name":"TF_E_STACKFULL","features":[620]},{"name":"TF_E_SYNCHRONOUS","features":[620]},{"name":"TF_FLOATINGLANGBAR_WNDTITLE","features":[620]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEA","features":[620]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEW","features":[620]},{"name":"TF_GRAVITY_BACKWARD","features":[620]},{"name":"TF_GRAVITY_FORWARD","features":[620]},{"name":"TF_GTP_INCL_TEXT","features":[620]},{"name":"TF_GTP_NONE","features":[620]},{"name":"TF_HALTCOND","features":[620]},{"name":"TF_HF_OBJECT","features":[620]},{"name":"TF_IAS_NOQUERY","features":[620]},{"name":"TF_IAS_NO_DEFAULT_COMPOSITION","features":[620]},{"name":"TF_IAS_QUERYONLY","features":[620]},{"name":"TF_IE_CORRECTION","features":[620]},{"name":"TF_INPUTPROCESSORPROFILE","features":[620]},{"name":"TF_INVALID_COOKIE","features":[620]},{"name":"TF_INVALID_EDIT_COOKIE","features":[620]},{"name":"TF_IPPMF_DISABLEPROFILE","features":[620]},{"name":"TF_IPPMF_DONTCARECURRENTINPUTLANGUAGE","features":[620]},{"name":"TF_IPPMF_ENABLEPROFILE","features":[620]},{"name":"TF_IPPMF_FORPROCESS","features":[620]},{"name":"TF_IPPMF_FORSESSION","features":[620]},{"name":"TF_IPPMF_FORSYSTEMALL","features":[620]},{"name":"TF_IPP_CAPS_COMLESSSUPPORT","features":[620]},{"name":"TF_IPP_CAPS_DISABLEONTRANSITORY","features":[620]},{"name":"TF_IPP_CAPS_IMMERSIVESUPPORT","features":[620]},{"name":"TF_IPP_CAPS_SECUREMODESUPPORT","features":[620]},{"name":"TF_IPP_CAPS_SYSTRAYSUPPORT","features":[620]},{"name":"TF_IPP_CAPS_UIELEMENTENABLED","features":[620]},{"name":"TF_IPP_CAPS_WOW16SUPPORT","features":[620]},{"name":"TF_IPP_FLAG_ACTIVE","features":[620]},{"name":"TF_IPP_FLAG_ENABLED","features":[620]},{"name":"TF_IPP_FLAG_SUBSTITUTEDBYINPUTPROCESSOR","features":[620]},{"name":"TF_IPSINK_FLAG_ACTIVE","features":[620]},{"name":"TF_LANGBARITEMINFO","features":[620]},{"name":"TF_LANGUAGEPROFILE","features":[303,620]},{"name":"TF_LBBALLOONINFO","features":[620]},{"name":"TF_LBI_BALLOON","features":[620]},{"name":"TF_LBI_BITMAP","features":[620]},{"name":"TF_LBI_BMPF_VERTICAL","features":[620]},{"name":"TF_LBI_CLK_LEFT","features":[620]},{"name":"TF_LBI_CLK_RIGHT","features":[620]},{"name":"TF_LBI_CUSTOMUI","features":[620]},{"name":"TF_LBI_DESC_MAXLEN","features":[620]},{"name":"TF_LBI_ICON","features":[620]},{"name":"TF_LBI_STATUS","features":[620]},{"name":"TF_LBI_STATUS_BTN_TOGGLED","features":[620]},{"name":"TF_LBI_STATUS_DISABLED","features":[620]},{"name":"TF_LBI_STATUS_HIDDEN","features":[620]},{"name":"TF_LBI_STYLE_BTN_BUTTON","features":[620]},{"name":"TF_LBI_STYLE_BTN_MENU","features":[620]},{"name":"TF_LBI_STYLE_BTN_TOGGLE","features":[620]},{"name":"TF_LBI_STYLE_HIDDENBYDEFAULT","features":[620]},{"name":"TF_LBI_STYLE_HIDDENSTATUSCONTROL","features":[620]},{"name":"TF_LBI_STYLE_HIDEONNOOTHERITEMS","features":[620]},{"name":"TF_LBI_STYLE_SHOWNINTRAY","features":[620]},{"name":"TF_LBI_STYLE_SHOWNINTRAYONLY","features":[620]},{"name":"TF_LBI_STYLE_TEXTCOLORICON","features":[620]},{"name":"TF_LBI_TEXT","features":[620]},{"name":"TF_LBI_TOOLTIP","features":[620]},{"name":"TF_LBMENUF_CHECKED","features":[620]},{"name":"TF_LBMENUF_GRAYED","features":[620]},{"name":"TF_LBMENUF_RADIOCHECKED","features":[620]},{"name":"TF_LBMENUF_SEPARATOR","features":[620]},{"name":"TF_LBMENUF_SUBMENU","features":[620]},{"name":"TF_LB_BALLOON_MISS","features":[620]},{"name":"TF_LB_BALLOON_RECO","features":[620]},{"name":"TF_LB_BALLOON_SHOW","features":[620]},{"name":"TF_LC_CHANGE","features":[620]},{"name":"TF_LC_CREATE","features":[620]},{"name":"TF_LC_DESTROY","features":[620]},{"name":"TF_LMLATTELEMENT","features":[620]},{"name":"TF_LS_DASH","features":[620]},{"name":"TF_LS_DOT","features":[620]},{"name":"TF_LS_NONE","features":[620]},{"name":"TF_LS_SOLID","features":[620]},{"name":"TF_LS_SQUIGGLE","features":[620]},{"name":"TF_MENUREADY","features":[620]},{"name":"TF_MOD_ALT","features":[620]},{"name":"TF_MOD_CONTROL","features":[620]},{"name":"TF_MOD_IGNORE_ALL_MODIFIER","features":[620]},{"name":"TF_MOD_LALT","features":[620]},{"name":"TF_MOD_LCONTROL","features":[620]},{"name":"TF_MOD_LSHIFT","features":[620]},{"name":"TF_MOD_ON_KEYUP","features":[620]},{"name":"TF_MOD_RALT","features":[620]},{"name":"TF_MOD_RCONTROL","features":[620]},{"name":"TF_MOD_RSHIFT","features":[620]},{"name":"TF_MOD_SHIFT","features":[620]},{"name":"TF_PERSISTENT_PROPERTY_HEADER_ACP","features":[620]},{"name":"TF_POPF_ALL","features":[620]},{"name":"TF_PRESERVEDKEY","features":[620]},{"name":"TF_PROCESS_ATOM","features":[620]},{"name":"TF_PROFILETYPE_INPUTPROCESSOR","features":[620]},{"name":"TF_PROFILETYPE_KEYBOARDLAYOUT","features":[620]},{"name":"TF_PROFILE_ARRAY","features":[620]},{"name":"TF_PROFILE_CANTONESE","features":[620]},{"name":"TF_PROFILE_CHANGJIE","features":[620]},{"name":"TF_PROFILE_DAYI","features":[620]},{"name":"TF_PROFILE_NEWCHANGJIE","features":[620]},{"name":"TF_PROFILE_NEWPHONETIC","features":[620]},{"name":"TF_PROFILE_NEWQUICK","features":[620]},{"name":"TF_PROFILE_PHONETIC","features":[620]},{"name":"TF_PROFILE_PINYIN","features":[620]},{"name":"TF_PROFILE_QUICK","features":[620]},{"name":"TF_PROFILE_SIMPLEFAST","features":[620]},{"name":"TF_PROFILE_TIGRINYA","features":[620]},{"name":"TF_PROFILE_WUBI","features":[620]},{"name":"TF_PROFILE_YI","features":[620]},{"name":"TF_PROPERTYVAL","features":[620]},{"name":"TF_PROPUI_STATUS_SAVETOFILE","features":[620]},{"name":"TF_RCM_COMLESS","features":[620]},{"name":"TF_RCM_HINT_COLLISION","features":[620]},{"name":"TF_RCM_HINT_READING_LENGTH","features":[620]},{"name":"TF_RCM_VKEY","features":[620]},{"name":"TF_RIP_FLAG_FREEUNUSEDLIBRARIES","features":[620]},{"name":"TF_RIUIE_CONTEXT","features":[620]},{"name":"TF_RIUIE_ERRORINDEX","features":[620]},{"name":"TF_RIUIE_MAXREADINGSTRINGLENGTH","features":[620]},{"name":"TF_RIUIE_STRING","features":[620]},{"name":"TF_RIUIE_VERTICALORDER","features":[620]},{"name":"TF_RP_HIDDENINSETTINGUI","features":[620]},{"name":"TF_RP_LOCALPROCESS","features":[620]},{"name":"TF_RP_LOCALTHREAD","features":[620]},{"name":"TF_RP_SUBITEMINSETTINGUI","features":[620]},{"name":"TF_SD_BACKWARD","features":[620]},{"name":"TF_SD_FORWARD","features":[620]},{"name":"TF_SD_LOADING","features":[620]},{"name":"TF_SD_READONLY","features":[620]},{"name":"TF_SELECTION","features":[303,620]},{"name":"TF_SELECTIONSTYLE","features":[303,620]},{"name":"TF_SENTENCEMODE_AUTOMATIC","features":[620]},{"name":"TF_SENTENCEMODE_CONVERSATION","features":[620]},{"name":"TF_SENTENCEMODE_NONE","features":[620]},{"name":"TF_SENTENCEMODE_PHRASEPREDICT","features":[620]},{"name":"TF_SENTENCEMODE_PLAURALCLAUSE","features":[620]},{"name":"TF_SENTENCEMODE_SINGLECONVERT","features":[620]},{"name":"TF_SFT_DESKBAND","features":[620]},{"name":"TF_SFT_DOCK","features":[620]},{"name":"TF_SFT_EXTRAICONSONMINIMIZED","features":[620]},{"name":"TF_SFT_HIDDEN","features":[620]},{"name":"TF_SFT_HIGHTRANSPARENCY","features":[620]},{"name":"TF_SFT_LABELS","features":[620]},{"name":"TF_SFT_LOWTRANSPARENCY","features":[620]},{"name":"TF_SFT_MINIMIZED","features":[620]},{"name":"TF_SFT_NOEXTRAICONSONMINIMIZED","features":[620]},{"name":"TF_SFT_NOLABELS","features":[620]},{"name":"TF_SFT_NOTRANSPARENCY","features":[620]},{"name":"TF_SFT_SHOWNORMAL","features":[620]},{"name":"TF_SHOW_BALLOON","features":[620]},{"name":"TF_SPEECHUI_SHOWN","features":[620]},{"name":"TF_SS_DISJOINTSEL","features":[620]},{"name":"TF_SS_REGIONS","features":[620]},{"name":"TF_SS_TKBAUTOCORRECTENABLE","features":[620]},{"name":"TF_SS_TKBPREDICTIONENABLE","features":[620]},{"name":"TF_SS_TRANSITORY","features":[620]},{"name":"TF_ST_CORRECTION","features":[620]},{"name":"TF_S_ASYNC","features":[620]},{"name":"TF_TF_IGNOREEND","features":[620]},{"name":"TF_TF_MOVESTART","features":[620]},{"name":"TF_TMAE_COMLESS","features":[620]},{"name":"TF_TMAE_CONSOLE","features":[620]},{"name":"TF_TMAE_NOACTIVATEKEYBOARDLAYOUT","features":[620]},{"name":"TF_TMAE_NOACTIVATETIP","features":[620]},{"name":"TF_TMAE_SECUREMODE","features":[620]},{"name":"TF_TMAE_UIELEMENTENABLEDONLY","features":[620]},{"name":"TF_TMAE_WOW16","features":[620]},{"name":"TF_TMF_ACTIVATED","features":[620]},{"name":"TF_TMF_COMLESS","features":[620]},{"name":"TF_TMF_CONSOLE","features":[620]},{"name":"TF_TMF_IMMERSIVEMODE","features":[620]},{"name":"TF_TMF_NOACTIVATETIP","features":[620]},{"name":"TF_TMF_SECUREMODE","features":[620]},{"name":"TF_TMF_UIELEMENTENABLEDONLY","features":[620]},{"name":"TF_TMF_WOW16","features":[620]},{"name":"TF_TRANSITORYEXTENSION_ATSELECTION","features":[620]},{"name":"TF_TRANSITORYEXTENSION_FLOATING","features":[620]},{"name":"TF_TRANSITORYEXTENSION_NONE","features":[620]},{"name":"TF_TU_CORRECTION","features":[620]},{"name":"TF_URP_ALLPROFILES","features":[620]},{"name":"TF_URP_LOCALPROCESS","features":[620]},{"name":"TF_URP_LOCALTHREAD","features":[620]},{"name":"TF_US_HIDETIPUI","features":[620]},{"name":"TKBLT_CLASSIC","features":[620]},{"name":"TKBLT_OPTIMIZED","features":[620]},{"name":"TKBLT_UNDEFINED","features":[620]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_CHANGJIE","features":[620]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_DAYI","features":[620]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_PHONETIC","features":[620]},{"name":"TKBL_OPT_JAPANESE_ABC","features":[620]},{"name":"TKBL_OPT_KOREAN_HANGUL_2_BULSIK","features":[620]},{"name":"TKBL_OPT_SIMPLIFIED_CHINESE_PINYIN","features":[620]},{"name":"TKBL_OPT_TRADITIONAL_CHINESE_PHONETIC","features":[620]},{"name":"TKBL_UNDEFINED","features":[620]},{"name":"TKBLayoutType","features":[620]},{"name":"TKB_ALTERNATES_AUTOCORRECTION_APPLIED","features":[620]},{"name":"TKB_ALTERNATES_FOR_AUTOCORRECTION","features":[620]},{"name":"TKB_ALTERNATES_FOR_PREDICTION","features":[620]},{"name":"TKB_ALTERNATES_STANDARD","features":[620]},{"name":"TSATTRID_App","features":[620]},{"name":"TSATTRID_App_IncorrectGrammar","features":[620]},{"name":"TSATTRID_App_IncorrectSpelling","features":[620]},{"name":"TSATTRID_Font","features":[620]},{"name":"TSATTRID_Font_FaceName","features":[620]},{"name":"TSATTRID_Font_SizePts","features":[620]},{"name":"TSATTRID_Font_Style","features":[620]},{"name":"TSATTRID_Font_Style_Animation","features":[620]},{"name":"TSATTRID_Font_Style_Animation_BlinkingBackground","features":[620]},{"name":"TSATTRID_Font_Style_Animation_LasVegasLights","features":[620]},{"name":"TSATTRID_Font_Style_Animation_MarchingBlackAnts","features":[620]},{"name":"TSATTRID_Font_Style_Animation_MarchingRedAnts","features":[620]},{"name":"TSATTRID_Font_Style_Animation_Shimmer","features":[620]},{"name":"TSATTRID_Font_Style_Animation_SparkleText","features":[620]},{"name":"TSATTRID_Font_Style_Animation_WipeDown","features":[620]},{"name":"TSATTRID_Font_Style_Animation_WipeRight","features":[620]},{"name":"TSATTRID_Font_Style_BackgroundColor","features":[620]},{"name":"TSATTRID_Font_Style_Blink","features":[620]},{"name":"TSATTRID_Font_Style_Bold","features":[620]},{"name":"TSATTRID_Font_Style_Capitalize","features":[620]},{"name":"TSATTRID_Font_Style_Color","features":[620]},{"name":"TSATTRID_Font_Style_Emboss","features":[620]},{"name":"TSATTRID_Font_Style_Engrave","features":[620]},{"name":"TSATTRID_Font_Style_Height","features":[620]},{"name":"TSATTRID_Font_Style_Hidden","features":[620]},{"name":"TSATTRID_Font_Style_Italic","features":[620]},{"name":"TSATTRID_Font_Style_Kerning","features":[620]},{"name":"TSATTRID_Font_Style_Lowercase","features":[620]},{"name":"TSATTRID_Font_Style_Outlined","features":[620]},{"name":"TSATTRID_Font_Style_Overline","features":[620]},{"name":"TSATTRID_Font_Style_Overline_Double","features":[620]},{"name":"TSATTRID_Font_Style_Overline_Single","features":[620]},{"name":"TSATTRID_Font_Style_Position","features":[620]},{"name":"TSATTRID_Font_Style_Protected","features":[620]},{"name":"TSATTRID_Font_Style_Shadow","features":[620]},{"name":"TSATTRID_Font_Style_SmallCaps","features":[620]},{"name":"TSATTRID_Font_Style_Spacing","features":[620]},{"name":"TSATTRID_Font_Style_Strikethrough","features":[620]},{"name":"TSATTRID_Font_Style_Strikethrough_Double","features":[620]},{"name":"TSATTRID_Font_Style_Strikethrough_Single","features":[620]},{"name":"TSATTRID_Font_Style_Subscript","features":[620]},{"name":"TSATTRID_Font_Style_Superscript","features":[620]},{"name":"TSATTRID_Font_Style_Underline","features":[620]},{"name":"TSATTRID_Font_Style_Underline_Double","features":[620]},{"name":"TSATTRID_Font_Style_Underline_Single","features":[620]},{"name":"TSATTRID_Font_Style_Uppercase","features":[620]},{"name":"TSATTRID_Font_Style_Weight","features":[620]},{"name":"TSATTRID_List","features":[620]},{"name":"TSATTRID_List_LevelIndel","features":[620]},{"name":"TSATTRID_List_Type","features":[620]},{"name":"TSATTRID_List_Type_Arabic","features":[620]},{"name":"TSATTRID_List_Type_Bullet","features":[620]},{"name":"TSATTRID_List_Type_LowerLetter","features":[620]},{"name":"TSATTRID_List_Type_LowerRoman","features":[620]},{"name":"TSATTRID_List_Type_UpperLetter","features":[620]},{"name":"TSATTRID_List_Type_UpperRoman","features":[620]},{"name":"TSATTRID_OTHERS","features":[620]},{"name":"TSATTRID_Text","features":[620]},{"name":"TSATTRID_Text_Alignment","features":[620]},{"name":"TSATTRID_Text_Alignment_Center","features":[620]},{"name":"TSATTRID_Text_Alignment_Justify","features":[620]},{"name":"TSATTRID_Text_Alignment_Left","features":[620]},{"name":"TSATTRID_Text_Alignment_Right","features":[620]},{"name":"TSATTRID_Text_EmbeddedObject","features":[620]},{"name":"TSATTRID_Text_Hyphenation","features":[620]},{"name":"TSATTRID_Text_Language","features":[620]},{"name":"TSATTRID_Text_Link","features":[620]},{"name":"TSATTRID_Text_Orientation","features":[620]},{"name":"TSATTRID_Text_Para","features":[620]},{"name":"TSATTRID_Text_Para_FirstLineIndent","features":[620]},{"name":"TSATTRID_Text_Para_LeftIndent","features":[620]},{"name":"TSATTRID_Text_Para_LineSpacing","features":[620]},{"name":"TSATTRID_Text_Para_LineSpacing_AtLeast","features":[620]},{"name":"TSATTRID_Text_Para_LineSpacing_Double","features":[620]},{"name":"TSATTRID_Text_Para_LineSpacing_Exactly","features":[620]},{"name":"TSATTRID_Text_Para_LineSpacing_Multiple","features":[620]},{"name":"TSATTRID_Text_Para_LineSpacing_OnePtFive","features":[620]},{"name":"TSATTRID_Text_Para_LineSpacing_Single","features":[620]},{"name":"TSATTRID_Text_Para_RightIndent","features":[620]},{"name":"TSATTRID_Text_Para_SpaceAfter","features":[620]},{"name":"TSATTRID_Text_Para_SpaceBefore","features":[620]},{"name":"TSATTRID_Text_ReadOnly","features":[620]},{"name":"TSATTRID_Text_RightToLeft","features":[620]},{"name":"TSATTRID_Text_VerticalWriting","features":[620]},{"name":"TS_AE_END","features":[620]},{"name":"TS_AE_NONE","features":[620]},{"name":"TS_AE_START","features":[620]},{"name":"TS_AS_ATTR_CHANGE","features":[620]},{"name":"TS_AS_LAYOUT_CHANGE","features":[620]},{"name":"TS_AS_SEL_CHANGE","features":[620]},{"name":"TS_AS_STATUS_CHANGE","features":[620]},{"name":"TS_AS_TEXT_CHANGE","features":[620]},{"name":"TS_ATTRVAL","features":[620]},{"name":"TS_ATTR_FIND_BACKWARDS","features":[620]},{"name":"TS_ATTR_FIND_HIDDEN","features":[620]},{"name":"TS_ATTR_FIND_UPDATESTART","features":[620]},{"name":"TS_ATTR_FIND_WANT_END","features":[620]},{"name":"TS_ATTR_FIND_WANT_OFFSET","features":[620]},{"name":"TS_ATTR_FIND_WANT_VALUE","features":[620]},{"name":"TS_CHAR_EMBEDDED","features":[620]},{"name":"TS_CHAR_REGION","features":[620]},{"name":"TS_CHAR_REPLACEMENT","features":[620]},{"name":"TS_CH_FOLLOWING_DEL","features":[620]},{"name":"TS_CH_PRECEDING_DEL","features":[620]},{"name":"TS_DEFAULT_SELECTION","features":[620]},{"name":"TS_E_FORMAT","features":[620]},{"name":"TS_E_INVALIDPOINT","features":[620]},{"name":"TS_E_INVALIDPOS","features":[620]},{"name":"TS_E_NOINTERFACE","features":[620]},{"name":"TS_E_NOLAYOUT","features":[620]},{"name":"TS_E_NOLOCK","features":[620]},{"name":"TS_E_NOOBJECT","features":[620]},{"name":"TS_E_NOSELECTION","features":[620]},{"name":"TS_E_NOSERVICE","features":[620]},{"name":"TS_E_READONLY","features":[620]},{"name":"TS_E_SYNCHRONOUS","features":[620]},{"name":"TS_GEA_HIDDEN","features":[620]},{"name":"TS_GR_BACKWARD","features":[620]},{"name":"TS_GR_FORWARD","features":[620]},{"name":"TS_GTA_HIDDEN","features":[620]},{"name":"TS_IAS_NOQUERY","features":[620]},{"name":"TS_IAS_QUERYONLY","features":[620]},{"name":"TS_IE_COMPOSITION","features":[620]},{"name":"TS_IE_CORRECTION","features":[620]},{"name":"TS_LC_CHANGE","features":[620]},{"name":"TS_LC_CREATE","features":[620]},{"name":"TS_LC_DESTROY","features":[620]},{"name":"TS_LF_READ","features":[620]},{"name":"TS_LF_READWRITE","features":[620]},{"name":"TS_LF_SYNC","features":[620]},{"name":"TS_RT_HIDDEN","features":[620]},{"name":"TS_RT_OPAQUE","features":[620]},{"name":"TS_RT_PLAIN","features":[620]},{"name":"TS_RUNINFO","features":[620]},{"name":"TS_SD_BACKWARD","features":[620]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_ENABLED","features":[620]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_VISIBLE","features":[620]},{"name":"TS_SD_FORWARD","features":[620]},{"name":"TS_SD_INPUTPANEMANUALDISPLAYENABLE","features":[620]},{"name":"TS_SD_LOADING","features":[620]},{"name":"TS_SD_READONLY","features":[620]},{"name":"TS_SD_RESERVED","features":[620]},{"name":"TS_SD_TKBAUTOCORRECTENABLE","features":[620]},{"name":"TS_SD_TKBPREDICTIONENABLE","features":[620]},{"name":"TS_SD_UIINTEGRATIONENABLE","features":[620]},{"name":"TS_SELECTIONSTYLE","features":[303,620]},{"name":"TS_SELECTION_ACP","features":[303,620]},{"name":"TS_SELECTION_ANCHOR","features":[303,620]},{"name":"TS_SHIFT_COUNT_HIDDEN","features":[620]},{"name":"TS_SHIFT_COUNT_ONLY","features":[620]},{"name":"TS_SHIFT_HALT_HIDDEN","features":[620]},{"name":"TS_SHIFT_HALT_VISIBLE","features":[620]},{"name":"TS_SS_DISJOINTSEL","features":[620]},{"name":"TS_SS_NOHIDDENTEXT","features":[620]},{"name":"TS_SS_REGIONS","features":[620]},{"name":"TS_SS_TKBAUTOCORRECTENABLE","features":[620]},{"name":"TS_SS_TKBPREDICTIONENABLE","features":[620]},{"name":"TS_SS_TRANSITORY","features":[620]},{"name":"TS_SS_UWPCONTROL","features":[620]},{"name":"TS_STATUS","features":[620]},{"name":"TS_STRF_END","features":[620]},{"name":"TS_STRF_MID","features":[620]},{"name":"TS_STRF_START","features":[620]},{"name":"TS_ST_CORRECTION","features":[620]},{"name":"TS_ST_NONE","features":[620]},{"name":"TS_S_ASYNC","features":[620]},{"name":"TS_TC_CORRECTION","features":[620]},{"name":"TS_TC_NONE","features":[620]},{"name":"TS_TEXTCHANGE","features":[620]},{"name":"TS_VCOOKIE_NUL","features":[620]},{"name":"TfActiveSelEnd","features":[620]},{"name":"TfAnchor","features":[620]},{"name":"TfCandidateResult","features":[620]},{"name":"TfGravity","features":[620]},{"name":"TfIntegratableCandidateListSelectionStyle","features":[620]},{"name":"TfLBBalloonStyle","features":[620]},{"name":"TfLBIClick","features":[620]},{"name":"TfLayoutCode","features":[620]},{"name":"TfSapiObject","features":[620]},{"name":"TfShiftDir","features":[620]},{"name":"TsActiveSelEnd","features":[620]},{"name":"TsGravity","features":[620]},{"name":"TsLayoutCode","features":[620]},{"name":"TsRunType","features":[620]},{"name":"TsShiftDir","features":[620]},{"name":"UninitLocalMsCtfMonitor","features":[620]}],"672":[{"name":"ACCEL","features":[365]},{"name":"ACCEL_VIRT_FLAGS","features":[365]},{"name":"ALTTABINFO","features":[303,365]},{"name":"ANIMATE_WINDOW_FLAGS","features":[365]},{"name":"ANIMATIONINFO","features":[365]},{"name":"ARW_BOTTOMLEFT","features":[365]},{"name":"ARW_BOTTOMRIGHT","features":[365]},{"name":"ARW_DOWN","features":[365]},{"name":"ARW_HIDE","features":[365]},{"name":"ARW_LEFT","features":[365]},{"name":"ARW_RIGHT","features":[365]},{"name":"ARW_STARTMASK","features":[365]},{"name":"ARW_STARTRIGHT","features":[365]},{"name":"ARW_STARTTOP","features":[365]},{"name":"ARW_TOPLEFT","features":[365]},{"name":"ARW_TOPRIGHT","features":[365]},{"name":"ARW_UP","features":[365]},{"name":"ASFW_ANY","features":[365]},{"name":"AUDIODESCRIPTION","features":[303,365]},{"name":"AW_ACTIVATE","features":[365]},{"name":"AW_BLEND","features":[365]},{"name":"AW_CENTER","features":[365]},{"name":"AW_HIDE","features":[365]},{"name":"AW_HOR_NEGATIVE","features":[365]},{"name":"AW_HOR_POSITIVE","features":[365]},{"name":"AW_SLIDE","features":[365]},{"name":"AW_VER_NEGATIVE","features":[365]},{"name":"AW_VER_POSITIVE","features":[365]},{"name":"AdjustWindowRect","features":[303,365]},{"name":"AdjustWindowRectEx","features":[303,365]},{"name":"AllowSetForegroundWindow","features":[303,365]},{"name":"AnimateWindow","features":[303,365]},{"name":"AnyPopup","features":[303,365]},{"name":"AppendMenuA","features":[303,365]},{"name":"AppendMenuW","features":[303,365]},{"name":"ArrangeIconicWindows","features":[303,365]},{"name":"BM_CLICK","features":[365]},{"name":"BM_GETCHECK","features":[365]},{"name":"BM_GETIMAGE","features":[365]},{"name":"BM_GETSTATE","features":[365]},{"name":"BM_SETCHECK","features":[365]},{"name":"BM_SETDONTCLICK","features":[365]},{"name":"BM_SETIMAGE","features":[365]},{"name":"BM_SETSTATE","features":[365]},{"name":"BM_SETSTYLE","features":[365]},{"name":"BN_CLICKED","features":[365]},{"name":"BN_DBLCLK","features":[365]},{"name":"BN_DISABLE","features":[365]},{"name":"BN_DOUBLECLICKED","features":[365]},{"name":"BN_HILITE","features":[365]},{"name":"BN_KILLFOCUS","features":[365]},{"name":"BN_PAINT","features":[365]},{"name":"BN_PUSHED","features":[365]},{"name":"BN_SETFOCUS","features":[365]},{"name":"BN_UNHILITE","features":[365]},{"name":"BN_UNPUSHED","features":[365]},{"name":"BROADCAST_QUERY_DENY","features":[365]},{"name":"BSF_MSGSRV32ISOK","features":[365]},{"name":"BSF_MSGSRV32ISOK_BIT","features":[365]},{"name":"BSM_INSTALLABLEDRIVERS","features":[365]},{"name":"BSM_NETDRIVER","features":[365]},{"name":"BSM_VXDS","features":[365]},{"name":"BST_FOCUS","features":[365]},{"name":"BST_PUSHED","features":[365]},{"name":"BS_3STATE","features":[365]},{"name":"BS_AUTO3STATE","features":[365]},{"name":"BS_AUTOCHECKBOX","features":[365]},{"name":"BS_AUTORADIOBUTTON","features":[365]},{"name":"BS_BITMAP","features":[365]},{"name":"BS_BOTTOM","features":[365]},{"name":"BS_CENTER","features":[365]},{"name":"BS_CHECKBOX","features":[365]},{"name":"BS_DEFPUSHBUTTON","features":[365]},{"name":"BS_FLAT","features":[365]},{"name":"BS_GROUPBOX","features":[365]},{"name":"BS_ICON","features":[365]},{"name":"BS_LEFT","features":[365]},{"name":"BS_LEFTTEXT","features":[365]},{"name":"BS_MULTILINE","features":[365]},{"name":"BS_NOTIFY","features":[365]},{"name":"BS_OWNERDRAW","features":[365]},{"name":"BS_PUSHBOX","features":[365]},{"name":"BS_PUSHBUTTON","features":[365]},{"name":"BS_PUSHLIKE","features":[365]},{"name":"BS_RADIOBUTTON","features":[365]},{"name":"BS_RIGHT","features":[365]},{"name":"BS_RIGHTBUTTON","features":[365]},{"name":"BS_TEXT","features":[365]},{"name":"BS_TOP","features":[365]},{"name":"BS_TYPEMASK","features":[365]},{"name":"BS_USERBUTTON","features":[365]},{"name":"BS_VCENTER","features":[365]},{"name":"BeginDeferWindowPos","features":[365]},{"name":"BringWindowToTop","features":[303,365]},{"name":"CALERT_SYSTEM","features":[365]},{"name":"CASCADE_WINDOWS_HOW","features":[365]},{"name":"CBN_CLOSEUP","features":[365]},{"name":"CBN_DBLCLK","features":[365]},{"name":"CBN_DROPDOWN","features":[365]},{"name":"CBN_EDITCHANGE","features":[365]},{"name":"CBN_EDITUPDATE","features":[365]},{"name":"CBN_ERRSPACE","features":[365]},{"name":"CBN_KILLFOCUS","features":[365]},{"name":"CBN_SELCHANGE","features":[365]},{"name":"CBN_SELENDCANCEL","features":[365]},{"name":"CBN_SELENDOK","features":[365]},{"name":"CBN_SETFOCUS","features":[365]},{"name":"CBS_AUTOHSCROLL","features":[365]},{"name":"CBS_DISABLENOSCROLL","features":[365]},{"name":"CBS_DROPDOWN","features":[365]},{"name":"CBS_DROPDOWNLIST","features":[365]},{"name":"CBS_HASSTRINGS","features":[365]},{"name":"CBS_LOWERCASE","features":[365]},{"name":"CBS_NOINTEGRALHEIGHT","features":[365]},{"name":"CBS_OEMCONVERT","features":[365]},{"name":"CBS_OWNERDRAWFIXED","features":[365]},{"name":"CBS_OWNERDRAWVARIABLE","features":[365]},{"name":"CBS_SIMPLE","features":[365]},{"name":"CBS_SORT","features":[365]},{"name":"CBS_UPPERCASE","features":[365]},{"name":"CBTACTIVATESTRUCT","features":[303,365]},{"name":"CBT_CREATEWNDA","features":[303,365]},{"name":"CBT_CREATEWNDW","features":[303,365]},{"name":"CB_ADDSTRING","features":[365]},{"name":"CB_DELETESTRING","features":[365]},{"name":"CB_DIR","features":[365]},{"name":"CB_ERR","features":[365]},{"name":"CB_ERRSPACE","features":[365]},{"name":"CB_FINDSTRING","features":[365]},{"name":"CB_FINDSTRINGEXACT","features":[365]},{"name":"CB_GETCOMBOBOXINFO","features":[365]},{"name":"CB_GETCOUNT","features":[365]},{"name":"CB_GETCURSEL","features":[365]},{"name":"CB_GETDROPPEDCONTROLRECT","features":[365]},{"name":"CB_GETDROPPEDSTATE","features":[365]},{"name":"CB_GETDROPPEDWIDTH","features":[365]},{"name":"CB_GETEDITSEL","features":[365]},{"name":"CB_GETEXTENDEDUI","features":[365]},{"name":"CB_GETHORIZONTALEXTENT","features":[365]},{"name":"CB_GETITEMDATA","features":[365]},{"name":"CB_GETITEMHEIGHT","features":[365]},{"name":"CB_GETLBTEXT","features":[365]},{"name":"CB_GETLBTEXTLEN","features":[365]},{"name":"CB_GETLOCALE","features":[365]},{"name":"CB_GETTOPINDEX","features":[365]},{"name":"CB_INITSTORAGE","features":[365]},{"name":"CB_INSERTSTRING","features":[365]},{"name":"CB_LIMITTEXT","features":[365]},{"name":"CB_MSGMAX","features":[365]},{"name":"CB_MULTIPLEADDSTRING","features":[365]},{"name":"CB_OKAY","features":[365]},{"name":"CB_RESETCONTENT","features":[365]},{"name":"CB_SELECTSTRING","features":[365]},{"name":"CB_SETCURSEL","features":[365]},{"name":"CB_SETDROPPEDWIDTH","features":[365]},{"name":"CB_SETEDITSEL","features":[365]},{"name":"CB_SETEXTENDEDUI","features":[365]},{"name":"CB_SETHORIZONTALEXTENT","features":[365]},{"name":"CB_SETITEMDATA","features":[365]},{"name":"CB_SETITEMHEIGHT","features":[365]},{"name":"CB_SETLOCALE","features":[365]},{"name":"CB_SETTOPINDEX","features":[365]},{"name":"CB_SHOWDROPDOWN","features":[365]},{"name":"CCHILDREN_SCROLLBAR","features":[365]},{"name":"CCHILDREN_TITLEBAR","features":[365]},{"name":"CHANGEFILTERSTRUCT","features":[365]},{"name":"CHANGE_WINDOW_MESSAGE_FILTER_FLAGS","features":[365]},{"name":"CHILDID_SELF","features":[365]},{"name":"CLIENTCREATESTRUCT","features":[303,365]},{"name":"CONSOLE_APPLICATION_16BIT","features":[365]},{"name":"CONSOLE_CARET_SELECTION","features":[365]},{"name":"CONSOLE_CARET_VISIBLE","features":[365]},{"name":"CONTACTVISUALIZATION_OFF","features":[365]},{"name":"CONTACTVISUALIZATION_ON","features":[365]},{"name":"CONTACTVISUALIZATION_PRESENTATIONMODE","features":[365]},{"name":"CREATEPROCESS_MANIFEST_RESOURCE_ID","features":[365]},{"name":"CREATESTRUCTA","features":[303,365]},{"name":"CREATESTRUCTW","features":[303,365]},{"name":"CSOUND_SYSTEM","features":[365]},{"name":"CS_BYTEALIGNCLIENT","features":[365]},{"name":"CS_BYTEALIGNWINDOW","features":[365]},{"name":"CS_CLASSDC","features":[365]},{"name":"CS_DBLCLKS","features":[365]},{"name":"CS_DROPSHADOW","features":[365]},{"name":"CS_GLOBALCLASS","features":[365]},{"name":"CS_HREDRAW","features":[365]},{"name":"CS_IME","features":[365]},{"name":"CS_NOCLOSE","features":[365]},{"name":"CS_OWNDC","features":[365]},{"name":"CS_PARENTDC","features":[365]},{"name":"CS_SAVEBITS","features":[365]},{"name":"CS_VREDRAW","features":[365]},{"name":"CTLCOLOR_BTN","features":[365]},{"name":"CTLCOLOR_DLG","features":[365]},{"name":"CTLCOLOR_EDIT","features":[365]},{"name":"CTLCOLOR_LISTBOX","features":[365]},{"name":"CTLCOLOR_MAX","features":[365]},{"name":"CTLCOLOR_MSGBOX","features":[365]},{"name":"CTLCOLOR_SCROLLBAR","features":[365]},{"name":"CTLCOLOR_STATIC","features":[365]},{"name":"CURSORINFO","features":[303,365]},{"name":"CURSORINFO_FLAGS","features":[365]},{"name":"CURSORSHAPE","features":[365]},{"name":"CURSOR_CREATION_SCALING_DEFAULT","features":[365]},{"name":"CURSOR_CREATION_SCALING_NONE","features":[365]},{"name":"CURSOR_SHOWING","features":[365]},{"name":"CURSOR_SUPPRESSED","features":[365]},{"name":"CWF_CREATE_ONLY","features":[365]},{"name":"CWPRETSTRUCT","features":[303,365]},{"name":"CWPSTRUCT","features":[303,365]},{"name":"CWP_ALL","features":[365]},{"name":"CWP_FLAGS","features":[365]},{"name":"CWP_SKIPDISABLED","features":[365]},{"name":"CWP_SKIPINVISIBLE","features":[365]},{"name":"CWP_SKIPTRANSPARENT","features":[365]},{"name":"CW_USEDEFAULT","features":[365]},{"name":"CalculatePopupWindowPosition","features":[303,365]},{"name":"CallMsgFilterA","features":[303,365]},{"name":"CallMsgFilterW","features":[303,365]},{"name":"CallNextHookEx","features":[303,365]},{"name":"CallWindowProcA","features":[303,365]},{"name":"CallWindowProcW","features":[303,365]},{"name":"CancelShutdown","features":[303,365]},{"name":"CascadeWindows","features":[303,365]},{"name":"ChangeMenuA","features":[303,365]},{"name":"ChangeMenuW","features":[303,365]},{"name":"ChangeWindowMessageFilter","features":[303,365]},{"name":"ChangeWindowMessageFilterEx","features":[303,365]},{"name":"CharLowerA","features":[365]},{"name":"CharLowerBuffA","features":[365]},{"name":"CharLowerBuffW","features":[365]},{"name":"CharLowerW","features":[365]},{"name":"CharNextA","features":[365]},{"name":"CharNextExA","features":[365]},{"name":"CharNextW","features":[365]},{"name":"CharPrevA","features":[365]},{"name":"CharPrevExA","features":[365]},{"name":"CharPrevW","features":[365]},{"name":"CharToOemA","features":[303,365]},{"name":"CharToOemBuffA","features":[303,365]},{"name":"CharToOemBuffW","features":[303,365]},{"name":"CharToOemW","features":[303,365]},{"name":"CharUpperA","features":[365]},{"name":"CharUpperBuffA","features":[365]},{"name":"CharUpperBuffW","features":[365]},{"name":"CharUpperW","features":[365]},{"name":"CheckMenuItem","features":[365]},{"name":"CheckMenuRadioItem","features":[303,365]},{"name":"ChildWindowFromPoint","features":[303,365]},{"name":"ChildWindowFromPointEx","features":[303,365]},{"name":"ClipCursor","features":[303,365]},{"name":"CloseWindow","features":[303,365]},{"name":"CopyAcceleratorTableA","features":[365]},{"name":"CopyAcceleratorTableW","features":[365]},{"name":"CopyIcon","features":[365]},{"name":"CopyImage","features":[303,365]},{"name":"CreateAcceleratorTableA","features":[365]},{"name":"CreateAcceleratorTableW","features":[365]},{"name":"CreateCaret","features":[303,314,365]},{"name":"CreateCursor","features":[303,365]},{"name":"CreateDialogIndirectParamA","features":[303,365]},{"name":"CreateDialogIndirectParamW","features":[303,365]},{"name":"CreateDialogParamA","features":[303,365]},{"name":"CreateDialogParamW","features":[303,365]},{"name":"CreateIcon","features":[303,365]},{"name":"CreateIconFromResource","features":[303,365]},{"name":"CreateIconFromResourceEx","features":[303,365]},{"name":"CreateIconIndirect","features":[303,314,365]},{"name":"CreateMDIWindowA","features":[303,365]},{"name":"CreateMDIWindowW","features":[303,365]},{"name":"CreateMenu","features":[365]},{"name":"CreatePopupMenu","features":[365]},{"name":"CreateResourceIndexer","features":[365]},{"name":"CreateWindowExA","features":[303,365]},{"name":"CreateWindowExW","features":[303,365]},{"name":"DBTF_MEDIA","features":[365]},{"name":"DBTF_NET","features":[365]},{"name":"DBTF_RESOURCE","features":[365]},{"name":"DBTF_SLOWNET","features":[365]},{"name":"DBTF_XPORT","features":[365]},{"name":"DBT_APPYBEGIN","features":[365]},{"name":"DBT_APPYEND","features":[365]},{"name":"DBT_CONFIGCHANGECANCELED","features":[365]},{"name":"DBT_CONFIGCHANGED","features":[365]},{"name":"DBT_CONFIGMGAPI32","features":[365]},{"name":"DBT_CONFIGMGPRIVATE","features":[365]},{"name":"DBT_CUSTOMEVENT","features":[365]},{"name":"DBT_DEVICEARRIVAL","features":[365]},{"name":"DBT_DEVICEQUERYREMOVE","features":[365]},{"name":"DBT_DEVICEQUERYREMOVEFAILED","features":[365]},{"name":"DBT_DEVICEREMOVECOMPLETE","features":[365]},{"name":"DBT_DEVICEREMOVEPENDING","features":[365]},{"name":"DBT_DEVICETYPESPECIFIC","features":[365]},{"name":"DBT_DEVNODES_CHANGED","features":[365]},{"name":"DBT_DEVTYP_DEVICEINTERFACE","features":[365]},{"name":"DBT_DEVTYP_DEVNODE","features":[365]},{"name":"DBT_DEVTYP_HANDLE","features":[365]},{"name":"DBT_DEVTYP_NET","features":[365]},{"name":"DBT_DEVTYP_OEM","features":[365]},{"name":"DBT_DEVTYP_PORT","features":[365]},{"name":"DBT_DEVTYP_VOLUME","features":[365]},{"name":"DBT_LOW_DISK_SPACE","features":[365]},{"name":"DBT_MONITORCHANGE","features":[365]},{"name":"DBT_NO_DISK_SPACE","features":[365]},{"name":"DBT_QUERYCHANGECONFIG","features":[365]},{"name":"DBT_SHELLLOGGEDON","features":[365]},{"name":"DBT_USERDEFINED","features":[365]},{"name":"DBT_VOLLOCKLOCKFAILED","features":[365]},{"name":"DBT_VOLLOCKLOCKRELEASED","features":[365]},{"name":"DBT_VOLLOCKLOCKTAKEN","features":[365]},{"name":"DBT_VOLLOCKQUERYLOCK","features":[365]},{"name":"DBT_VOLLOCKQUERYUNLOCK","features":[365]},{"name":"DBT_VOLLOCKUNLOCKFAILED","features":[365]},{"name":"DBT_VPOWERDAPI","features":[365]},{"name":"DBT_VXDINITCOMPLETE","features":[365]},{"name":"DCX_EXCLUDEUPDATE","features":[365]},{"name":"DC_HASDEFID","features":[365]},{"name":"DEBUGHOOKINFO","features":[303,365]},{"name":"DEVICE_EVENT_BECOMING_READY","features":[365]},{"name":"DEVICE_EVENT_EXTERNAL_REQUEST","features":[365]},{"name":"DEVICE_EVENT_GENERIC_DATA","features":[365]},{"name":"DEVICE_EVENT_MOUNT","features":[365]},{"name":"DEVICE_EVENT_RBC_DATA","features":[365]},{"name":"DEVICE_NOTIFY_ALL_INTERFACE_CLASSES","features":[365]},{"name":"DEVICE_NOTIFY_CALLBACK","features":[365]},{"name":"DEVICE_NOTIFY_SERVICE_HANDLE","features":[365]},{"name":"DEVICE_NOTIFY_WINDOW_HANDLE","features":[365]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_A","features":[365]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_W","features":[365]},{"name":"DEV_BROADCAST_DEVNODE","features":[365]},{"name":"DEV_BROADCAST_HANDLE","features":[303,365]},{"name":"DEV_BROADCAST_HANDLE32","features":[365]},{"name":"DEV_BROADCAST_HANDLE64","features":[365]},{"name":"DEV_BROADCAST_HDR","features":[365]},{"name":"DEV_BROADCAST_HDR_DEVICE_TYPE","features":[365]},{"name":"DEV_BROADCAST_NET","features":[365]},{"name":"DEV_BROADCAST_OEM","features":[365]},{"name":"DEV_BROADCAST_PORT_A","features":[365]},{"name":"DEV_BROADCAST_PORT_W","features":[365]},{"name":"DEV_BROADCAST_VOLUME","features":[365]},{"name":"DEV_BROADCAST_VOLUME_FLAGS","features":[365]},{"name":"DIFFERENCE","features":[365]},{"name":"DISK_HEALTH_NOTIFICATION_DATA","features":[365]},{"name":"DI_COMPAT","features":[365]},{"name":"DI_DEFAULTSIZE","features":[365]},{"name":"DI_FLAGS","features":[365]},{"name":"DI_IMAGE","features":[365]},{"name":"DI_MASK","features":[365]},{"name":"DI_NOMIRROR","features":[365]},{"name":"DI_NORMAL","features":[365]},{"name":"DLGC_BUTTON","features":[365]},{"name":"DLGC_DEFPUSHBUTTON","features":[365]},{"name":"DLGC_HASSETSEL","features":[365]},{"name":"DLGC_RADIOBUTTON","features":[365]},{"name":"DLGC_STATIC","features":[365]},{"name":"DLGC_UNDEFPUSHBUTTON","features":[365]},{"name":"DLGC_WANTALLKEYS","features":[365]},{"name":"DLGC_WANTARROWS","features":[365]},{"name":"DLGC_WANTCHARS","features":[365]},{"name":"DLGC_WANTMESSAGE","features":[365]},{"name":"DLGC_WANTTAB","features":[365]},{"name":"DLGITEMTEMPLATE","features":[365]},{"name":"DLGPROC","features":[303,365]},{"name":"DLGTEMPLATE","features":[365]},{"name":"DLGWINDOWEXTRA","features":[365]},{"name":"DM_GETDEFID","features":[365]},{"name":"DM_POINTERHITTEST","features":[365]},{"name":"DM_REPOSITION","features":[365]},{"name":"DM_SETDEFID","features":[365]},{"name":"DOF_DIRECTORY","features":[365]},{"name":"DOF_DOCUMENT","features":[365]},{"name":"DOF_EXECUTABLE","features":[365]},{"name":"DOF_MULTIPLE","features":[365]},{"name":"DOF_PROGMAN","features":[365]},{"name":"DOF_SHELLDATA","features":[365]},{"name":"DO_DROPFILE","features":[365]},{"name":"DO_PRINTFILE","features":[365]},{"name":"DROPSTRUCT","features":[303,365]},{"name":"DS_3DLOOK","features":[365]},{"name":"DS_ABSALIGN","features":[365]},{"name":"DS_CENTER","features":[365]},{"name":"DS_CENTERMOUSE","features":[365]},{"name":"DS_CONTEXTHELP","features":[365]},{"name":"DS_CONTROL","features":[365]},{"name":"DS_FIXEDSYS","features":[365]},{"name":"DS_LOCALEDIT","features":[365]},{"name":"DS_MODALFRAME","features":[365]},{"name":"DS_NOFAILCREATE","features":[365]},{"name":"DS_NOIDLEMSG","features":[365]},{"name":"DS_SETFONT","features":[365]},{"name":"DS_SETFOREGROUND","features":[365]},{"name":"DS_SYSMODAL","features":[365]},{"name":"DS_USEPIXELS","features":[365]},{"name":"DWLP_MSGRESULT","features":[365]},{"name":"DWL_DLGPROC","features":[365]},{"name":"DWL_MSGRESULT","features":[365]},{"name":"DWL_USER","features":[365]},{"name":"DefDlgProcA","features":[303,365]},{"name":"DefDlgProcW","features":[303,365]},{"name":"DefFrameProcA","features":[303,365]},{"name":"DefFrameProcW","features":[303,365]},{"name":"DefMDIChildProcA","features":[303,365]},{"name":"DefMDIChildProcW","features":[303,365]},{"name":"DefWindowProcA","features":[303,365]},{"name":"DefWindowProcW","features":[303,365]},{"name":"DeferWindowPos","features":[303,365]},{"name":"DeleteMenu","features":[303,365]},{"name":"DeregisterShellHookWindow","features":[303,365]},{"name":"DestroyAcceleratorTable","features":[303,365]},{"name":"DestroyCaret","features":[303,365]},{"name":"DestroyCursor","features":[303,365]},{"name":"DestroyIcon","features":[303,365]},{"name":"DestroyIndexedResults","features":[365]},{"name":"DestroyMenu","features":[303,365]},{"name":"DestroyResourceIndexer","features":[365]},{"name":"DestroyWindow","features":[303,365]},{"name":"DialogBoxIndirectParamA","features":[303,365]},{"name":"DialogBoxIndirectParamW","features":[303,365]},{"name":"DialogBoxParamA","features":[303,365]},{"name":"DialogBoxParamW","features":[303,365]},{"name":"DisableProcessWindowsGhosting","features":[365]},{"name":"DispatchMessageA","features":[303,365]},{"name":"DispatchMessageW","features":[303,365]},{"name":"DragObject","features":[303,365]},{"name":"DrawIcon","features":[303,314,365]},{"name":"DrawIconEx","features":[303,314,365]},{"name":"DrawMenuBar","features":[303,365]},{"name":"EC_LEFTMARGIN","features":[365]},{"name":"EC_RIGHTMARGIN","features":[365]},{"name":"EC_USEFONTINFO","features":[365]},{"name":"EDD_GET_DEVICE_INTERFACE_NAME","features":[365]},{"name":"EDIT_CONTROL_FEATURE","features":[365]},{"name":"EDIT_CONTROL_FEATURE_ENTERPRISE_DATA_PROTECTION_PASTE_SUPPORT","features":[365]},{"name":"EDIT_CONTROL_FEATURE_PASTE_NOTIFICATIONS","features":[365]},{"name":"EIMES_CANCELCOMPSTRINFOCUS","features":[365]},{"name":"EIMES_COMPLETECOMPSTRKILLFOCUS","features":[365]},{"name":"EIMES_GETCOMPSTRATONCE","features":[365]},{"name":"EMSIS_COMPOSITIONSTRING","features":[365]},{"name":"ENDSESSION_CLOSEAPP","features":[365]},{"name":"ENDSESSION_CRITICAL","features":[365]},{"name":"ENDSESSION_LOGOFF","features":[365]},{"name":"EN_AFTER_PASTE","features":[365]},{"name":"EN_ALIGN_LTR_EC","features":[365]},{"name":"EN_ALIGN_RTL_EC","features":[365]},{"name":"EN_BEFORE_PASTE","features":[365]},{"name":"EN_CHANGE","features":[365]},{"name":"EN_ERRSPACE","features":[365]},{"name":"EN_HSCROLL","features":[365]},{"name":"EN_KILLFOCUS","features":[365]},{"name":"EN_MAXTEXT","features":[365]},{"name":"EN_SETFOCUS","features":[365]},{"name":"EN_UPDATE","features":[365]},{"name":"EN_VSCROLL","features":[365]},{"name":"ES_AUTOHSCROLL","features":[365]},{"name":"ES_AUTOVSCROLL","features":[365]},{"name":"ES_CENTER","features":[365]},{"name":"ES_LEFT","features":[365]},{"name":"ES_LOWERCASE","features":[365]},{"name":"ES_MULTILINE","features":[365]},{"name":"ES_NOHIDESEL","features":[365]},{"name":"ES_NUMBER","features":[365]},{"name":"ES_OEMCONVERT","features":[365]},{"name":"ES_PASSWORD","features":[365]},{"name":"ES_READONLY","features":[365]},{"name":"ES_RIGHT","features":[365]},{"name":"ES_UPPERCASE","features":[365]},{"name":"ES_WANTRETURN","features":[365]},{"name":"EVENTMSG","features":[303,365]},{"name":"EVENT_AIA_END","features":[365]},{"name":"EVENT_AIA_START","features":[365]},{"name":"EVENT_CONSOLE_CARET","features":[365]},{"name":"EVENT_CONSOLE_END","features":[365]},{"name":"EVENT_CONSOLE_END_APPLICATION","features":[365]},{"name":"EVENT_CONSOLE_LAYOUT","features":[365]},{"name":"EVENT_CONSOLE_START_APPLICATION","features":[365]},{"name":"EVENT_CONSOLE_UPDATE_REGION","features":[365]},{"name":"EVENT_CONSOLE_UPDATE_SCROLL","features":[365]},{"name":"EVENT_CONSOLE_UPDATE_SIMPLE","features":[365]},{"name":"EVENT_MAX","features":[365]},{"name":"EVENT_MIN","features":[365]},{"name":"EVENT_OBJECT_ACCELERATORCHANGE","features":[365]},{"name":"EVENT_OBJECT_CLOAKED","features":[365]},{"name":"EVENT_OBJECT_CONTENTSCROLLED","features":[365]},{"name":"EVENT_OBJECT_CREATE","features":[365]},{"name":"EVENT_OBJECT_DEFACTIONCHANGE","features":[365]},{"name":"EVENT_OBJECT_DESCRIPTIONCHANGE","features":[365]},{"name":"EVENT_OBJECT_DESTROY","features":[365]},{"name":"EVENT_OBJECT_DRAGCANCEL","features":[365]},{"name":"EVENT_OBJECT_DRAGCOMPLETE","features":[365]},{"name":"EVENT_OBJECT_DRAGDROPPED","features":[365]},{"name":"EVENT_OBJECT_DRAGENTER","features":[365]},{"name":"EVENT_OBJECT_DRAGLEAVE","features":[365]},{"name":"EVENT_OBJECT_DRAGSTART","features":[365]},{"name":"EVENT_OBJECT_END","features":[365]},{"name":"EVENT_OBJECT_FOCUS","features":[365]},{"name":"EVENT_OBJECT_HELPCHANGE","features":[365]},{"name":"EVENT_OBJECT_HIDE","features":[365]},{"name":"EVENT_OBJECT_HOSTEDOBJECTSINVALIDATED","features":[365]},{"name":"EVENT_OBJECT_IME_CHANGE","features":[365]},{"name":"EVENT_OBJECT_IME_HIDE","features":[365]},{"name":"EVENT_OBJECT_IME_SHOW","features":[365]},{"name":"EVENT_OBJECT_INVOKED","features":[365]},{"name":"EVENT_OBJECT_LIVEREGIONCHANGED","features":[365]},{"name":"EVENT_OBJECT_LOCATIONCHANGE","features":[365]},{"name":"EVENT_OBJECT_NAMECHANGE","features":[365]},{"name":"EVENT_OBJECT_PARENTCHANGE","features":[365]},{"name":"EVENT_OBJECT_REORDER","features":[365]},{"name":"EVENT_OBJECT_SELECTION","features":[365]},{"name":"EVENT_OBJECT_SELECTIONADD","features":[365]},{"name":"EVENT_OBJECT_SELECTIONREMOVE","features":[365]},{"name":"EVENT_OBJECT_SELECTIONWITHIN","features":[365]},{"name":"EVENT_OBJECT_SHOW","features":[365]},{"name":"EVENT_OBJECT_STATECHANGE","features":[365]},{"name":"EVENT_OBJECT_TEXTEDIT_CONVERSIONTARGETCHANGED","features":[365]},{"name":"EVENT_OBJECT_TEXTSELECTIONCHANGED","features":[365]},{"name":"EVENT_OBJECT_UNCLOAKED","features":[365]},{"name":"EVENT_OBJECT_VALUECHANGE","features":[365]},{"name":"EVENT_OEM_DEFINED_END","features":[365]},{"name":"EVENT_OEM_DEFINED_START","features":[365]},{"name":"EVENT_SYSTEM_ALERT","features":[365]},{"name":"EVENT_SYSTEM_ARRANGMENTPREVIEW","features":[365]},{"name":"EVENT_SYSTEM_CAPTUREEND","features":[365]},{"name":"EVENT_SYSTEM_CAPTURESTART","features":[365]},{"name":"EVENT_SYSTEM_CONTEXTHELPEND","features":[365]},{"name":"EVENT_SYSTEM_CONTEXTHELPSTART","features":[365]},{"name":"EVENT_SYSTEM_DESKTOPSWITCH","features":[365]},{"name":"EVENT_SYSTEM_DIALOGEND","features":[365]},{"name":"EVENT_SYSTEM_DIALOGSTART","features":[365]},{"name":"EVENT_SYSTEM_DRAGDROPEND","features":[365]},{"name":"EVENT_SYSTEM_DRAGDROPSTART","features":[365]},{"name":"EVENT_SYSTEM_END","features":[365]},{"name":"EVENT_SYSTEM_FOREGROUND","features":[365]},{"name":"EVENT_SYSTEM_IME_KEY_NOTIFICATION","features":[365]},{"name":"EVENT_SYSTEM_MENUEND","features":[365]},{"name":"EVENT_SYSTEM_MENUPOPUPEND","features":[365]},{"name":"EVENT_SYSTEM_MENUPOPUPSTART","features":[365]},{"name":"EVENT_SYSTEM_MENUSTART","features":[365]},{"name":"EVENT_SYSTEM_MINIMIZEEND","features":[365]},{"name":"EVENT_SYSTEM_MINIMIZESTART","features":[365]},{"name":"EVENT_SYSTEM_MOVESIZEEND","features":[365]},{"name":"EVENT_SYSTEM_MOVESIZESTART","features":[365]},{"name":"EVENT_SYSTEM_SCROLLINGEND","features":[365]},{"name":"EVENT_SYSTEM_SCROLLINGSTART","features":[365]},{"name":"EVENT_SYSTEM_SOUND","features":[365]},{"name":"EVENT_SYSTEM_SWITCHEND","features":[365]},{"name":"EVENT_SYSTEM_SWITCHER_APPDROPPED","features":[365]},{"name":"EVENT_SYSTEM_SWITCHER_APPGRABBED","features":[365]},{"name":"EVENT_SYSTEM_SWITCHER_APPOVERTARGET","features":[365]},{"name":"EVENT_SYSTEM_SWITCHER_CANCELLED","features":[365]},{"name":"EVENT_SYSTEM_SWITCHSTART","features":[365]},{"name":"EVENT_UIA_EVENTID_END","features":[365]},{"name":"EVENT_UIA_EVENTID_START","features":[365]},{"name":"EVENT_UIA_PROPID_END","features":[365]},{"name":"EVENT_UIA_PROPID_START","features":[365]},{"name":"EnableMenuItem","features":[303,365]},{"name":"EndDeferWindowPos","features":[303,365]},{"name":"EndDialog","features":[303,365]},{"name":"EndMenu","features":[303,365]},{"name":"EnumChildWindows","features":[303,365]},{"name":"EnumPropsA","features":[303,365]},{"name":"EnumPropsExA","features":[303,365]},{"name":"EnumPropsExW","features":[303,365]},{"name":"EnumPropsW","features":[303,365]},{"name":"EnumThreadWindows","features":[303,365]},{"name":"EnumWindows","features":[303,365]},{"name":"FALT","features":[365]},{"name":"FAPPCOMMAND_KEY","features":[365]},{"name":"FAPPCOMMAND_MASK","features":[365]},{"name":"FAPPCOMMAND_MOUSE","features":[365]},{"name":"FAPPCOMMAND_OEM","features":[365]},{"name":"FCONTROL","features":[365]},{"name":"FE_FONTSMOOTHINGCLEARTYPE","features":[365]},{"name":"FE_FONTSMOOTHINGORIENTATIONBGR","features":[365]},{"name":"FE_FONTSMOOTHINGORIENTATIONRGB","features":[365]},{"name":"FE_FONTSMOOTHINGSTANDARD","features":[365]},{"name":"FKF_AVAILABLE","features":[365]},{"name":"FKF_CLICKON","features":[365]},{"name":"FKF_CONFIRMHOTKEY","features":[365]},{"name":"FKF_FILTERKEYSON","features":[365]},{"name":"FKF_HOTKEYACTIVE","features":[365]},{"name":"FKF_HOTKEYSOUND","features":[365]},{"name":"FKF_INDICATOR","features":[365]},{"name":"FLASHWINFO","features":[303,365]},{"name":"FLASHWINFO_FLAGS","features":[365]},{"name":"FLASHW_ALL","features":[365]},{"name":"FLASHW_CAPTION","features":[365]},{"name":"FLASHW_STOP","features":[365]},{"name":"FLASHW_TIMER","features":[365]},{"name":"FLASHW_TIMERNOFG","features":[365]},{"name":"FLASHW_TRAY","features":[365]},{"name":"FNOINVERT","features":[365]},{"name":"FOREGROUND_WINDOW_LOCK_CODE","features":[365]},{"name":"FSHIFT","features":[365]},{"name":"FVIRTKEY","features":[365]},{"name":"FindWindowA","features":[303,365]},{"name":"FindWindowExA","features":[303,365]},{"name":"FindWindowExW","features":[303,365]},{"name":"FindWindowW","features":[303,365]},{"name":"FlashWindow","features":[303,365]},{"name":"FlashWindowEx","features":[303,365]},{"name":"GA_PARENT","features":[365]},{"name":"GA_ROOT","features":[365]},{"name":"GA_ROOTOWNER","features":[365]},{"name":"GCF_INCLUDE_ANCESTORS","features":[365]},{"name":"GCLP_HBRBACKGROUND","features":[365]},{"name":"GCLP_HCURSOR","features":[365]},{"name":"GCLP_HICON","features":[365]},{"name":"GCLP_HICONSM","features":[365]},{"name":"GCLP_HMODULE","features":[365]},{"name":"GCLP_MENUNAME","features":[365]},{"name":"GCLP_WNDPROC","features":[365]},{"name":"GCL_CBCLSEXTRA","features":[365]},{"name":"GCL_CBWNDEXTRA","features":[365]},{"name":"GCL_HBRBACKGROUND","features":[365]},{"name":"GCL_HCURSOR","features":[365]},{"name":"GCL_HICON","features":[365]},{"name":"GCL_HICONSM","features":[365]},{"name":"GCL_HMODULE","features":[365]},{"name":"GCL_MENUNAME","features":[365]},{"name":"GCL_STYLE","features":[365]},{"name":"GCL_WNDPROC","features":[365]},{"name":"GCW_ATOM","features":[365]},{"name":"GDI_IMAGE_TYPE","features":[365]},{"name":"GESTURECONFIGMAXCOUNT","features":[365]},{"name":"GESTUREVISUALIZATION_DOUBLETAP","features":[365]},{"name":"GESTUREVISUALIZATION_OFF","features":[365]},{"name":"GESTUREVISUALIZATION_ON","features":[365]},{"name":"GESTUREVISUALIZATION_PRESSANDHOLD","features":[365]},{"name":"GESTUREVISUALIZATION_PRESSANDTAP","features":[365]},{"name":"GESTUREVISUALIZATION_RIGHTTAP","features":[365]},{"name":"GESTUREVISUALIZATION_TAP","features":[365]},{"name":"GETCLIPBMETADATA","features":[303,365]},{"name":"GET_ANCESTOR_FLAGS","features":[365]},{"name":"GET_CLASS_LONG_INDEX","features":[365]},{"name":"GET_MENU_DEFAULT_ITEM_FLAGS","features":[365]},{"name":"GET_WINDOW_CMD","features":[365]},{"name":"GF_BEGIN","features":[365]},{"name":"GF_END","features":[365]},{"name":"GF_INERTIA","features":[365]},{"name":"GIDC_ARRIVAL","features":[365]},{"name":"GIDC_REMOVAL","features":[365]},{"name":"GMDI_GOINTOPOPUPS","features":[365]},{"name":"GMDI_USEDISABLED","features":[365]},{"name":"GUID_DEVICE_EVENT_RBC","features":[365]},{"name":"GUID_IO_CDROM_EXCLUSIVE_LOCK","features":[365]},{"name":"GUID_IO_CDROM_EXCLUSIVE_UNLOCK","features":[365]},{"name":"GUID_IO_DEVICE_BECOMING_READY","features":[365]},{"name":"GUID_IO_DEVICE_EXTERNAL_REQUEST","features":[365]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL","features":[365]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL_INFORMATION","features":[365]},{"name":"GUID_IO_DISK_HEALTH_NOTIFICATION","features":[365]},{"name":"GUID_IO_DISK_LAYOUT_CHANGE","features":[365]},{"name":"GUID_IO_DRIVE_REQUIRES_CLEANING","features":[365]},{"name":"GUID_IO_MEDIA_ARRIVAL","features":[365]},{"name":"GUID_IO_MEDIA_EJECT_REQUEST","features":[365]},{"name":"GUID_IO_MEDIA_REMOVAL","features":[365]},{"name":"GUID_IO_TAPE_ERASE","features":[365]},{"name":"GUID_IO_VOLUME_BACKGROUND_FORMAT","features":[365]},{"name":"GUID_IO_VOLUME_CHANGE","features":[365]},{"name":"GUID_IO_VOLUME_CHANGE_SIZE","features":[365]},{"name":"GUID_IO_VOLUME_DEVICE_INTERFACE","features":[365]},{"name":"GUID_IO_VOLUME_DISMOUNT","features":[365]},{"name":"GUID_IO_VOLUME_DISMOUNT_FAILED","features":[365]},{"name":"GUID_IO_VOLUME_FORCE_CLOSED","features":[365]},{"name":"GUID_IO_VOLUME_FVE_STATUS_CHANGE","features":[365]},{"name":"GUID_IO_VOLUME_INFO_MAKE_COMPAT","features":[365]},{"name":"GUID_IO_VOLUME_LOCK","features":[365]},{"name":"GUID_IO_VOLUME_LOCK_FAILED","features":[365]},{"name":"GUID_IO_VOLUME_MOUNT","features":[365]},{"name":"GUID_IO_VOLUME_NAME_CHANGE","features":[365]},{"name":"GUID_IO_VOLUME_NEED_CHKDSK","features":[365]},{"name":"GUID_IO_VOLUME_PHYSICAL_CONFIGURATION_CHANGE","features":[365]},{"name":"GUID_IO_VOLUME_PREPARING_EJECT","features":[365]},{"name":"GUID_IO_VOLUME_UNIQUE_ID_CHANGE","features":[365]},{"name":"GUID_IO_VOLUME_UNLOCK","features":[365]},{"name":"GUID_IO_VOLUME_WEARING_OUT","features":[365]},{"name":"GUID_IO_VOLUME_WORM_NEAR_FULL","features":[365]},{"name":"GUITHREADINFO","features":[303,365]},{"name":"GUITHREADINFO_FLAGS","features":[365]},{"name":"GUI_16BITTASK","features":[365]},{"name":"GUI_CARETBLINKING","features":[365]},{"name":"GUI_INMENUMODE","features":[365]},{"name":"GUI_INMOVESIZE","features":[365]},{"name":"GUI_POPUPMENUMODE","features":[365]},{"name":"GUI_SYSTEMMENUMODE","features":[365]},{"name":"GWFS_INCLUDE_ANCESTORS","features":[365]},{"name":"GWLP_HINSTANCE","features":[365]},{"name":"GWLP_HWNDPARENT","features":[365]},{"name":"GWLP_ID","features":[365]},{"name":"GWLP_USERDATA","features":[365]},{"name":"GWLP_WNDPROC","features":[365]},{"name":"GWL_EXSTYLE","features":[365]},{"name":"GWL_HINSTANCE","features":[365]},{"name":"GWL_HWNDPARENT","features":[365]},{"name":"GWL_ID","features":[365]},{"name":"GWL_STYLE","features":[365]},{"name":"GWL_USERDATA","features":[365]},{"name":"GWL_WNDPROC","features":[365]},{"name":"GW_CHILD","features":[365]},{"name":"GW_ENABLEDPOPUP","features":[365]},{"name":"GW_HWNDFIRST","features":[365]},{"name":"GW_HWNDLAST","features":[365]},{"name":"GW_HWNDNEXT","features":[365]},{"name":"GW_HWNDPREV","features":[365]},{"name":"GW_MAX","features":[365]},{"name":"GW_OWNER","features":[365]},{"name":"GetAltTabInfoA","features":[303,365]},{"name":"GetAltTabInfoW","features":[303,365]},{"name":"GetAncestor","features":[303,365]},{"name":"GetCaretBlinkTime","features":[365]},{"name":"GetCaretPos","features":[303,365]},{"name":"GetClassInfoA","features":[303,314,365]},{"name":"GetClassInfoExA","features":[303,314,365]},{"name":"GetClassInfoExW","features":[303,314,365]},{"name":"GetClassInfoW","features":[303,314,365]},{"name":"GetClassLongA","features":[303,365]},{"name":"GetClassLongPtrA","features":[303,365]},{"name":"GetClassLongPtrW","features":[303,365]},{"name":"GetClassLongW","features":[303,365]},{"name":"GetClassNameA","features":[303,365]},{"name":"GetClassNameW","features":[303,365]},{"name":"GetClassWord","features":[303,365]},{"name":"GetClientRect","features":[303,365]},{"name":"GetClipCursor","features":[303,365]},{"name":"GetCursor","features":[365]},{"name":"GetCursorInfo","features":[303,365]},{"name":"GetCursorPos","features":[303,365]},{"name":"GetDesktopWindow","features":[303,365]},{"name":"GetDialogBaseUnits","features":[365]},{"name":"GetDlgCtrlID","features":[303,365]},{"name":"GetDlgItem","features":[303,365]},{"name":"GetDlgItemInt","features":[303,365]},{"name":"GetDlgItemTextA","features":[303,365]},{"name":"GetDlgItemTextW","features":[303,365]},{"name":"GetForegroundWindow","features":[303,365]},{"name":"GetGUIThreadInfo","features":[303,365]},{"name":"GetIconInfo","features":[303,314,365]},{"name":"GetIconInfoExA","features":[303,314,365]},{"name":"GetIconInfoExW","features":[303,314,365]},{"name":"GetInputState","features":[303,365]},{"name":"GetLastActivePopup","features":[303,365]},{"name":"GetLayeredWindowAttributes","features":[303,365]},{"name":"GetMenu","features":[303,365]},{"name":"GetMenuBarInfo","features":[303,365]},{"name":"GetMenuCheckMarkDimensions","features":[365]},{"name":"GetMenuDefaultItem","features":[365]},{"name":"GetMenuInfo","features":[303,314,365]},{"name":"GetMenuItemCount","features":[365]},{"name":"GetMenuItemID","features":[365]},{"name":"GetMenuItemInfoA","features":[303,314,365]},{"name":"GetMenuItemInfoW","features":[303,314,365]},{"name":"GetMenuItemRect","features":[303,365]},{"name":"GetMenuState","features":[365]},{"name":"GetMenuStringA","features":[365]},{"name":"GetMenuStringW","features":[365]},{"name":"GetMessageA","features":[303,365]},{"name":"GetMessageExtraInfo","features":[303,365]},{"name":"GetMessagePos","features":[365]},{"name":"GetMessageTime","features":[365]},{"name":"GetMessageW","features":[303,365]},{"name":"GetNextDlgGroupItem","features":[303,365]},{"name":"GetNextDlgTabItem","features":[303,365]},{"name":"GetParent","features":[303,365]},{"name":"GetPhysicalCursorPos","features":[303,365]},{"name":"GetProcessDefaultLayout","features":[303,365]},{"name":"GetPropA","features":[303,365]},{"name":"GetPropW","features":[303,365]},{"name":"GetQueueStatus","features":[365]},{"name":"GetScrollBarInfo","features":[303,365]},{"name":"GetScrollInfo","features":[303,365]},{"name":"GetScrollPos","features":[303,365]},{"name":"GetScrollRange","features":[303,365]},{"name":"GetShellWindow","features":[303,365]},{"name":"GetSubMenu","features":[365]},{"name":"GetSystemMenu","features":[303,365]},{"name":"GetSystemMetrics","features":[365]},{"name":"GetTitleBarInfo","features":[303,365]},{"name":"GetTopWindow","features":[303,365]},{"name":"GetWindow","features":[303,365]},{"name":"GetWindowDisplayAffinity","features":[303,365]},{"name":"GetWindowInfo","features":[303,365]},{"name":"GetWindowLongA","features":[303,365]},{"name":"GetWindowLongPtrA","features":[303,365]},{"name":"GetWindowLongPtrW","features":[303,365]},{"name":"GetWindowLongW","features":[303,365]},{"name":"GetWindowModuleFileNameA","features":[303,365]},{"name":"GetWindowModuleFileNameW","features":[303,365]},{"name":"GetWindowPlacement","features":[303,365]},{"name":"GetWindowRect","features":[303,365]},{"name":"GetWindowTextA","features":[303,365]},{"name":"GetWindowTextLengthA","features":[303,365]},{"name":"GetWindowTextLengthW","features":[303,365]},{"name":"GetWindowTextW","features":[303,365]},{"name":"GetWindowThreadProcessId","features":[303,365]},{"name":"GetWindowWord","features":[303,365]},{"name":"HACCEL","features":[365]},{"name":"HANDEDNESS","features":[365]},{"name":"HANDEDNESS_LEFT","features":[365]},{"name":"HANDEDNESS_RIGHT","features":[365]},{"name":"HARDWAREHOOKSTRUCT","features":[303,365]},{"name":"HBMMENU_CALLBACK","features":[314,365]},{"name":"HBMMENU_MBAR_CLOSE","features":[314,365]},{"name":"HBMMENU_MBAR_CLOSE_D","features":[314,365]},{"name":"HBMMENU_MBAR_MINIMIZE","features":[314,365]},{"name":"HBMMENU_MBAR_MINIMIZE_D","features":[314,365]},{"name":"HBMMENU_MBAR_RESTORE","features":[314,365]},{"name":"HBMMENU_POPUP_CLOSE","features":[314,365]},{"name":"HBMMENU_POPUP_MAXIMIZE","features":[314,365]},{"name":"HBMMENU_POPUP_MINIMIZE","features":[314,365]},{"name":"HBMMENU_POPUP_RESTORE","features":[314,365]},{"name":"HBMMENU_SYSTEM","features":[314,365]},{"name":"HCBT_ACTIVATE","features":[365]},{"name":"HCBT_CLICKSKIPPED","features":[365]},{"name":"HCBT_CREATEWND","features":[365]},{"name":"HCBT_DESTROYWND","features":[365]},{"name":"HCBT_KEYSKIPPED","features":[365]},{"name":"HCBT_MINMAX","features":[365]},{"name":"HCBT_MOVESIZE","features":[365]},{"name":"HCBT_QS","features":[365]},{"name":"HCBT_SETFOCUS","features":[365]},{"name":"HCBT_SYSCOMMAND","features":[365]},{"name":"HCF_DEFAULTDESKTOP","features":[365]},{"name":"HCF_LOGONDESKTOP","features":[365]},{"name":"HCURSOR","features":[365]},{"name":"HC_ACTION","features":[365]},{"name":"HC_GETNEXT","features":[365]},{"name":"HC_NOREM","features":[365]},{"name":"HC_NOREMOVE","features":[365]},{"name":"HC_SKIP","features":[365]},{"name":"HC_SYSMODALOFF","features":[365]},{"name":"HC_SYSMODALON","features":[365]},{"name":"HDEVNOTIFY","features":[365]},{"name":"HDWP","features":[365]},{"name":"HELP_COMMAND","features":[365]},{"name":"HELP_CONTENTS","features":[365]},{"name":"HELP_CONTEXT","features":[365]},{"name":"HELP_CONTEXTMENU","features":[365]},{"name":"HELP_CONTEXTPOPUP","features":[365]},{"name":"HELP_FINDER","features":[365]},{"name":"HELP_FORCEFILE","features":[365]},{"name":"HELP_HELPONHELP","features":[365]},{"name":"HELP_INDEX","features":[365]},{"name":"HELP_KEY","features":[365]},{"name":"HELP_MULTIKEY","features":[365]},{"name":"HELP_PARTIALKEY","features":[365]},{"name":"HELP_QUIT","features":[365]},{"name":"HELP_SETCONTENTS","features":[365]},{"name":"HELP_SETINDEX","features":[365]},{"name":"HELP_SETPOPUP_POS","features":[365]},{"name":"HELP_SETWINPOS","features":[365]},{"name":"HELP_TCARD","features":[365]},{"name":"HELP_TCARD_DATA","features":[365]},{"name":"HELP_TCARD_OTHER_CALLER","features":[365]},{"name":"HELP_WM_HELP","features":[365]},{"name":"HHOOK","features":[365]},{"name":"HICON","features":[365]},{"name":"HIDE_WINDOW","features":[365]},{"name":"HKL_NEXT","features":[365]},{"name":"HKL_PREV","features":[365]},{"name":"HMENU","features":[365]},{"name":"HOOKPROC","features":[303,365]},{"name":"HSHELL_ACCESSIBILITYSTATE","features":[365]},{"name":"HSHELL_ACTIVATESHELLWINDOW","features":[365]},{"name":"HSHELL_APPCOMMAND","features":[365]},{"name":"HSHELL_ENDTASK","features":[365]},{"name":"HSHELL_GETMINRECT","features":[365]},{"name":"HSHELL_HIGHBIT","features":[365]},{"name":"HSHELL_LANGUAGE","features":[365]},{"name":"HSHELL_MONITORCHANGED","features":[365]},{"name":"HSHELL_REDRAW","features":[365]},{"name":"HSHELL_SYSMENU","features":[365]},{"name":"HSHELL_TASKMAN","features":[365]},{"name":"HSHELL_WINDOWACTIVATED","features":[365]},{"name":"HSHELL_WINDOWCREATED","features":[365]},{"name":"HSHELL_WINDOWDESTROYED","features":[365]},{"name":"HSHELL_WINDOWREPLACED","features":[365]},{"name":"HSHELL_WINDOWREPLACING","features":[365]},{"name":"HTBORDER","features":[365]},{"name":"HTBOTTOM","features":[365]},{"name":"HTBOTTOMLEFT","features":[365]},{"name":"HTBOTTOMRIGHT","features":[365]},{"name":"HTCAPTION","features":[365]},{"name":"HTCLIENT","features":[365]},{"name":"HTCLOSE","features":[365]},{"name":"HTERROR","features":[365]},{"name":"HTGROWBOX","features":[365]},{"name":"HTHELP","features":[365]},{"name":"HTHSCROLL","features":[365]},{"name":"HTLEFT","features":[365]},{"name":"HTMAXBUTTON","features":[365]},{"name":"HTMENU","features":[365]},{"name":"HTMINBUTTON","features":[365]},{"name":"HTNOWHERE","features":[365]},{"name":"HTOBJECT","features":[365]},{"name":"HTREDUCE","features":[365]},{"name":"HTRIGHT","features":[365]},{"name":"HTSIZE","features":[365]},{"name":"HTSIZEFIRST","features":[365]},{"name":"HTSIZELAST","features":[365]},{"name":"HTSYSMENU","features":[365]},{"name":"HTTOP","features":[365]},{"name":"HTTOPLEFT","features":[365]},{"name":"HTTOPRIGHT","features":[365]},{"name":"HTTRANSPARENT","features":[365]},{"name":"HTVSCROLL","features":[365]},{"name":"HTZOOM","features":[365]},{"name":"HWND_BOTTOM","features":[303,365]},{"name":"HWND_BROADCAST","features":[303,365]},{"name":"HWND_DESKTOP","features":[303,365]},{"name":"HWND_MESSAGE","features":[303,365]},{"name":"HWND_NOTOPMOST","features":[303,365]},{"name":"HWND_TOP","features":[303,365]},{"name":"HWND_TOPMOST","features":[303,365]},{"name":"HideCaret","features":[303,365]},{"name":"HiliteMenuItem","features":[303,365]},{"name":"ICONINFO","features":[303,314,365]},{"name":"ICONINFOEXA","features":[303,314,365]},{"name":"ICONINFOEXW","features":[303,314,365]},{"name":"ICONMETRICSA","features":[314,365]},{"name":"ICONMETRICSW","features":[314,365]},{"name":"ICON_BIG","features":[365]},{"name":"ICON_SMALL","features":[365]},{"name":"ICON_SMALL2","features":[365]},{"name":"IDABORT","features":[365]},{"name":"IDANI_CAPTION","features":[365]},{"name":"IDANI_OPEN","features":[365]},{"name":"IDASYNC","features":[365]},{"name":"IDCANCEL","features":[365]},{"name":"IDCLOSE","features":[365]},{"name":"IDCONTINUE","features":[365]},{"name":"IDC_APPSTARTING","features":[365]},{"name":"IDC_ARROW","features":[365]},{"name":"IDC_CROSS","features":[365]},{"name":"IDC_HAND","features":[365]},{"name":"IDC_HELP","features":[365]},{"name":"IDC_IBEAM","features":[365]},{"name":"IDC_ICON","features":[365]},{"name":"IDC_NO","features":[365]},{"name":"IDC_PERSON","features":[365]},{"name":"IDC_PIN","features":[365]},{"name":"IDC_SIZE","features":[365]},{"name":"IDC_SIZEALL","features":[365]},{"name":"IDC_SIZENESW","features":[365]},{"name":"IDC_SIZENS","features":[365]},{"name":"IDC_SIZENWSE","features":[365]},{"name":"IDC_SIZEWE","features":[365]},{"name":"IDC_UPARROW","features":[365]},{"name":"IDC_WAIT","features":[365]},{"name":"IDHELP","features":[365]},{"name":"IDHOT_SNAPDESKTOP","features":[365]},{"name":"IDHOT_SNAPWINDOW","features":[365]},{"name":"IDH_CANCEL","features":[365]},{"name":"IDH_GENERIC_HELP_BUTTON","features":[365]},{"name":"IDH_HELP","features":[365]},{"name":"IDH_MISSING_CONTEXT","features":[365]},{"name":"IDH_NO_HELP","features":[365]},{"name":"IDH_OK","features":[365]},{"name":"IDIGNORE","features":[365]},{"name":"IDI_APPLICATION","features":[365]},{"name":"IDI_ASTERISK","features":[365]},{"name":"IDI_ERROR","features":[365]},{"name":"IDI_EXCLAMATION","features":[365]},{"name":"IDI_HAND","features":[365]},{"name":"IDI_INFORMATION","features":[365]},{"name":"IDI_QUESTION","features":[365]},{"name":"IDI_SHIELD","features":[365]},{"name":"IDI_WARNING","features":[365]},{"name":"IDI_WINLOGO","features":[365]},{"name":"IDNO","features":[365]},{"name":"IDOK","features":[365]},{"name":"IDRETRY","features":[365]},{"name":"IDTIMEOUT","features":[365]},{"name":"IDTRYAGAIN","features":[365]},{"name":"IDYES","features":[365]},{"name":"IMAGE_BITMAP","features":[365]},{"name":"IMAGE_CURSOR","features":[365]},{"name":"IMAGE_ENHMETAFILE","features":[365]},{"name":"IMAGE_FLAGS","features":[365]},{"name":"IMAGE_ICON","features":[365]},{"name":"INDEXID_CONTAINER","features":[365]},{"name":"INDEXID_OBJECT","features":[365]},{"name":"INPUTLANGCHANGE_BACKWARD","features":[365]},{"name":"INPUTLANGCHANGE_FORWARD","features":[365]},{"name":"INPUTLANGCHANGE_SYSCHARSET","features":[365]},{"name":"ISMEX_CALLBACK","features":[365]},{"name":"ISMEX_NOSEND","features":[365]},{"name":"ISMEX_NOTIFY","features":[365]},{"name":"ISMEX_REPLIED","features":[365]},{"name":"ISMEX_SEND","features":[365]},{"name":"ISOLATIONAWARE_MANIFEST_RESOURCE_ID","features":[365]},{"name":"ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID","features":[365]},{"name":"ISOLATIONPOLICY_BROWSER_MANIFEST_RESOURCE_ID","features":[365]},{"name":"ISOLATIONPOLICY_MANIFEST_RESOURCE_ID","features":[365]},{"name":"InSendMessage","features":[303,365]},{"name":"InSendMessageEx","features":[365]},{"name":"IndexFilePath","features":[365]},{"name":"IndexedResourceQualifier","features":[365]},{"name":"InheritWindowMonitor","features":[303,365]},{"name":"InsertMenuA","features":[303,365]},{"name":"InsertMenuItemA","features":[303,314,365]},{"name":"InsertMenuItemW","features":[303,314,365]},{"name":"InsertMenuW","features":[303,365]},{"name":"InternalGetWindowText","features":[303,365]},{"name":"IsCharAlphaA","features":[303,365]},{"name":"IsCharAlphaNumericA","features":[303,365]},{"name":"IsCharAlphaNumericW","features":[303,365]},{"name":"IsCharAlphaW","features":[303,365]},{"name":"IsCharLowerA","features":[303,365]},{"name":"IsCharUpperA","features":[303,365]},{"name":"IsCharUpperW","features":[303,365]},{"name":"IsChild","features":[303,365]},{"name":"IsDialogMessageA","features":[303,365]},{"name":"IsDialogMessageW","features":[303,365]},{"name":"IsGUIThread","features":[303,365]},{"name":"IsHungAppWindow","features":[303,365]},{"name":"IsIconic","features":[303,365]},{"name":"IsMenu","features":[303,365]},{"name":"IsProcessDPIAware","features":[303,365]},{"name":"IsWindow","features":[303,365]},{"name":"IsWindowArranged","features":[303,365]},{"name":"IsWindowUnicode","features":[303,365]},{"name":"IsWindowVisible","features":[303,365]},{"name":"IsWow64Message","features":[303,365]},{"name":"IsZoomed","features":[303,365]},{"name":"KBDLLHOOKSTRUCT","features":[365]},{"name":"KBDLLHOOKSTRUCT_FLAGS","features":[365]},{"name":"KF_ALTDOWN","features":[365]},{"name":"KF_DLGMODE","features":[365]},{"name":"KF_EXTENDED","features":[365]},{"name":"KF_MENUMODE","features":[365]},{"name":"KF_REPEAT","features":[365]},{"name":"KF_UP","features":[365]},{"name":"KL_NAMELENGTH","features":[365]},{"name":"KillTimer","features":[303,365]},{"name":"LAYERED_WINDOW_ATTRIBUTES_FLAGS","features":[365]},{"name":"LBN_DBLCLK","features":[365]},{"name":"LBN_ERRSPACE","features":[365]},{"name":"LBN_KILLFOCUS","features":[365]},{"name":"LBN_SELCANCEL","features":[365]},{"name":"LBN_SELCHANGE","features":[365]},{"name":"LBN_SETFOCUS","features":[365]},{"name":"LBS_COMBOBOX","features":[365]},{"name":"LBS_DISABLENOSCROLL","features":[365]},{"name":"LBS_EXTENDEDSEL","features":[365]},{"name":"LBS_HASSTRINGS","features":[365]},{"name":"LBS_MULTICOLUMN","features":[365]},{"name":"LBS_MULTIPLESEL","features":[365]},{"name":"LBS_NODATA","features":[365]},{"name":"LBS_NOINTEGRALHEIGHT","features":[365]},{"name":"LBS_NOREDRAW","features":[365]},{"name":"LBS_NOSEL","features":[365]},{"name":"LBS_NOTIFY","features":[365]},{"name":"LBS_OWNERDRAWFIXED","features":[365]},{"name":"LBS_OWNERDRAWVARIABLE","features":[365]},{"name":"LBS_SORT","features":[365]},{"name":"LBS_STANDARD","features":[365]},{"name":"LBS_USETABSTOPS","features":[365]},{"name":"LBS_WANTKEYBOARDINPUT","features":[365]},{"name":"LB_ADDFILE","features":[365]},{"name":"LB_ADDSTRING","features":[365]},{"name":"LB_CTLCODE","features":[365]},{"name":"LB_DELETESTRING","features":[365]},{"name":"LB_DIR","features":[365]},{"name":"LB_ERR","features":[365]},{"name":"LB_ERRSPACE","features":[365]},{"name":"LB_FINDSTRING","features":[365]},{"name":"LB_FINDSTRINGEXACT","features":[365]},{"name":"LB_GETANCHORINDEX","features":[365]},{"name":"LB_GETCARETINDEX","features":[365]},{"name":"LB_GETCOUNT","features":[365]},{"name":"LB_GETCURSEL","features":[365]},{"name":"LB_GETHORIZONTALEXTENT","features":[365]},{"name":"LB_GETITEMDATA","features":[365]},{"name":"LB_GETITEMHEIGHT","features":[365]},{"name":"LB_GETITEMRECT","features":[365]},{"name":"LB_GETLISTBOXINFO","features":[365]},{"name":"LB_GETLOCALE","features":[365]},{"name":"LB_GETSEL","features":[365]},{"name":"LB_GETSELCOUNT","features":[365]},{"name":"LB_GETSELITEMS","features":[365]},{"name":"LB_GETTEXT","features":[365]},{"name":"LB_GETTEXTLEN","features":[365]},{"name":"LB_GETTOPINDEX","features":[365]},{"name":"LB_INITSTORAGE","features":[365]},{"name":"LB_INSERTSTRING","features":[365]},{"name":"LB_ITEMFROMPOINT","features":[365]},{"name":"LB_MSGMAX","features":[365]},{"name":"LB_MULTIPLEADDSTRING","features":[365]},{"name":"LB_OKAY","features":[365]},{"name":"LB_RESETCONTENT","features":[365]},{"name":"LB_SELECTSTRING","features":[365]},{"name":"LB_SELITEMRANGE","features":[365]},{"name":"LB_SELITEMRANGEEX","features":[365]},{"name":"LB_SETANCHORINDEX","features":[365]},{"name":"LB_SETCARETINDEX","features":[365]},{"name":"LB_SETCOLUMNWIDTH","features":[365]},{"name":"LB_SETCOUNT","features":[365]},{"name":"LB_SETCURSEL","features":[365]},{"name":"LB_SETHORIZONTALEXTENT","features":[365]},{"name":"LB_SETITEMDATA","features":[365]},{"name":"LB_SETITEMHEIGHT","features":[365]},{"name":"LB_SETLOCALE","features":[365]},{"name":"LB_SETSEL","features":[365]},{"name":"LB_SETTABSTOPS","features":[365]},{"name":"LB_SETTOPINDEX","features":[365]},{"name":"LLKHF_ALTDOWN","features":[365]},{"name":"LLKHF_EXTENDED","features":[365]},{"name":"LLKHF_INJECTED","features":[365]},{"name":"LLKHF_LOWER_IL_INJECTED","features":[365]},{"name":"LLKHF_UP","features":[365]},{"name":"LLMHF_INJECTED","features":[365]},{"name":"LLMHF_LOWER_IL_INJECTED","features":[365]},{"name":"LOCKF_LOGICAL_LOCK","features":[365]},{"name":"LOCKF_PHYSICAL_LOCK","features":[365]},{"name":"LOCKP_ALLOW_MEM_MAPPING","features":[365]},{"name":"LOCKP_ALLOW_WRITES","features":[365]},{"name":"LOCKP_FAIL_MEM_MAPPING","features":[365]},{"name":"LOCKP_FAIL_WRITES","features":[365]},{"name":"LOCKP_LOCK_FOR_FORMAT","features":[365]},{"name":"LOCKP_USER_MASK","features":[365]},{"name":"LR_COLOR","features":[365]},{"name":"LR_COPYDELETEORG","features":[365]},{"name":"LR_COPYFROMRESOURCE","features":[365]},{"name":"LR_COPYRETURNORG","features":[365]},{"name":"LR_CREATEDIBSECTION","features":[365]},{"name":"LR_DEFAULTCOLOR","features":[365]},{"name":"LR_DEFAULTSIZE","features":[365]},{"name":"LR_LOADFROMFILE","features":[365]},{"name":"LR_LOADMAP3DCOLORS","features":[365]},{"name":"LR_LOADTRANSPARENT","features":[365]},{"name":"LR_MONOCHROME","features":[365]},{"name":"LR_SHARED","features":[365]},{"name":"LR_VGACOLOR","features":[365]},{"name":"LSFW_LOCK","features":[365]},{"name":"LSFW_UNLOCK","features":[365]},{"name":"LWA_ALPHA","features":[365]},{"name":"LWA_COLORKEY","features":[365]},{"name":"LoadAcceleratorsA","features":[303,365]},{"name":"LoadAcceleratorsW","features":[303,365]},{"name":"LoadCursorA","features":[303,365]},{"name":"LoadCursorFromFileA","features":[365]},{"name":"LoadCursorFromFileW","features":[365]},{"name":"LoadCursorW","features":[303,365]},{"name":"LoadIconA","features":[303,365]},{"name":"LoadIconW","features":[303,365]},{"name":"LoadImageA","features":[303,365]},{"name":"LoadImageW","features":[303,365]},{"name":"LoadMenuA","features":[303,365]},{"name":"LoadMenuIndirectA","features":[365]},{"name":"LoadMenuIndirectW","features":[365]},{"name":"LoadMenuW","features":[303,365]},{"name":"LoadStringA","features":[303,365]},{"name":"LoadStringW","features":[303,365]},{"name":"LockSetForegroundWindow","features":[303,365]},{"name":"LogicalToPhysicalPoint","features":[303,365]},{"name":"LookupIconIdFromDirectory","features":[303,365]},{"name":"LookupIconIdFromDirectoryEx","features":[303,365]},{"name":"MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[365]},{"name":"MAX_LOGICALDPIOVERRIDE","features":[365]},{"name":"MAX_STR_BLOCKREASON","features":[365]},{"name":"MAX_TOUCH_COUNT","features":[365]},{"name":"MAX_TOUCH_PREDICTION_FILTER_TAPS","features":[365]},{"name":"MA_ACTIVATE","features":[365]},{"name":"MA_ACTIVATEANDEAT","features":[365]},{"name":"MA_NOACTIVATE","features":[365]},{"name":"MA_NOACTIVATEANDEAT","features":[365]},{"name":"MB_ABORTRETRYIGNORE","features":[365]},{"name":"MB_APPLMODAL","features":[365]},{"name":"MB_CANCELTRYCONTINUE","features":[365]},{"name":"MB_DEFAULT_DESKTOP_ONLY","features":[365]},{"name":"MB_DEFBUTTON1","features":[365]},{"name":"MB_DEFBUTTON2","features":[365]},{"name":"MB_DEFBUTTON3","features":[365]},{"name":"MB_DEFBUTTON4","features":[365]},{"name":"MB_DEFMASK","features":[365]},{"name":"MB_HELP","features":[365]},{"name":"MB_ICONASTERISK","features":[365]},{"name":"MB_ICONERROR","features":[365]},{"name":"MB_ICONEXCLAMATION","features":[365]},{"name":"MB_ICONHAND","features":[365]},{"name":"MB_ICONINFORMATION","features":[365]},{"name":"MB_ICONMASK","features":[365]},{"name":"MB_ICONQUESTION","features":[365]},{"name":"MB_ICONSTOP","features":[365]},{"name":"MB_ICONWARNING","features":[365]},{"name":"MB_MISCMASK","features":[365]},{"name":"MB_MODEMASK","features":[365]},{"name":"MB_NOFOCUS","features":[365]},{"name":"MB_OK","features":[365]},{"name":"MB_OKCANCEL","features":[365]},{"name":"MB_RETRYCANCEL","features":[365]},{"name":"MB_RIGHT","features":[365]},{"name":"MB_RTLREADING","features":[365]},{"name":"MB_SERVICE_NOTIFICATION","features":[365]},{"name":"MB_SERVICE_NOTIFICATION_NT3X","features":[365]},{"name":"MB_SETFOREGROUND","features":[365]},{"name":"MB_SYSTEMMODAL","features":[365]},{"name":"MB_TASKMODAL","features":[365]},{"name":"MB_TOPMOST","features":[365]},{"name":"MB_TYPEMASK","features":[365]},{"name":"MB_USERICON","features":[365]},{"name":"MB_YESNO","features":[365]},{"name":"MB_YESNOCANCEL","features":[365]},{"name":"MDICREATESTRUCTA","features":[303,365]},{"name":"MDICREATESTRUCTW","features":[303,365]},{"name":"MDINEXTMENU","features":[303,365]},{"name":"MDIS_ALLCHILDSTYLES","features":[365]},{"name":"MDITILE_HORIZONTAL","features":[365]},{"name":"MDITILE_SKIPDISABLED","features":[365]},{"name":"MDITILE_VERTICAL","features":[365]},{"name":"MDITILE_ZORDER","features":[365]},{"name":"MENUBARINFO","features":[303,365]},{"name":"MENUEX_TEMPLATE_HEADER","features":[365]},{"name":"MENUEX_TEMPLATE_ITEM","features":[365]},{"name":"MENUGETOBJECTINFO","features":[365]},{"name":"MENUGETOBJECTINFO_FLAGS","features":[365]},{"name":"MENUINFO","features":[314,365]},{"name":"MENUINFO_MASK","features":[365]},{"name":"MENUINFO_STYLE","features":[365]},{"name":"MENUITEMINFOA","features":[314,365]},{"name":"MENUITEMINFOW","features":[314,365]},{"name":"MENUITEMTEMPLATE","features":[365]},{"name":"MENUITEMTEMPLATEHEADER","features":[365]},{"name":"MENUTEMPLATEEX","features":[365]},{"name":"MENU_ITEM_FLAGS","features":[365]},{"name":"MENU_ITEM_MASK","features":[365]},{"name":"MENU_ITEM_STATE","features":[365]},{"name":"MENU_ITEM_TYPE","features":[365]},{"name":"MESSAGEBOX_RESULT","features":[365]},{"name":"MESSAGEBOX_STYLE","features":[365]},{"name":"MESSAGE_RESOURCE_BLOCK","features":[365]},{"name":"MESSAGE_RESOURCE_DATA","features":[365]},{"name":"MESSAGE_RESOURCE_ENTRY","features":[365]},{"name":"METRICS_USEDEFAULT","features":[365]},{"name":"MFS_CHECKED","features":[365]},{"name":"MFS_DEFAULT","features":[365]},{"name":"MFS_DISABLED","features":[365]},{"name":"MFS_ENABLED","features":[365]},{"name":"MFS_GRAYED","features":[365]},{"name":"MFS_HILITE","features":[365]},{"name":"MFS_UNCHECKED","features":[365]},{"name":"MFS_UNHILITE","features":[365]},{"name":"MFT_BITMAP","features":[365]},{"name":"MFT_MENUBARBREAK","features":[365]},{"name":"MFT_MENUBREAK","features":[365]},{"name":"MFT_OWNERDRAW","features":[365]},{"name":"MFT_RADIOCHECK","features":[365]},{"name":"MFT_RIGHTJUSTIFY","features":[365]},{"name":"MFT_RIGHTORDER","features":[365]},{"name":"MFT_SEPARATOR","features":[365]},{"name":"MFT_STRING","features":[365]},{"name":"MF_APPEND","features":[365]},{"name":"MF_BITMAP","features":[365]},{"name":"MF_BYCOMMAND","features":[365]},{"name":"MF_BYPOSITION","features":[365]},{"name":"MF_CHANGE","features":[365]},{"name":"MF_CHECKED","features":[365]},{"name":"MF_DEFAULT","features":[365]},{"name":"MF_DELETE","features":[365]},{"name":"MF_DISABLED","features":[365]},{"name":"MF_ENABLED","features":[365]},{"name":"MF_END","features":[365]},{"name":"MF_GRAYED","features":[365]},{"name":"MF_HELP","features":[365]},{"name":"MF_HILITE","features":[365]},{"name":"MF_INSERT","features":[365]},{"name":"MF_MENUBARBREAK","features":[365]},{"name":"MF_MENUBREAK","features":[365]},{"name":"MF_MOUSESELECT","features":[365]},{"name":"MF_OWNERDRAW","features":[365]},{"name":"MF_POPUP","features":[365]},{"name":"MF_REMOVE","features":[365]},{"name":"MF_RIGHTJUSTIFY","features":[365]},{"name":"MF_SEPARATOR","features":[365]},{"name":"MF_STRING","features":[365]},{"name":"MF_SYSMENU","features":[365]},{"name":"MF_UNCHECKED","features":[365]},{"name":"MF_UNHILITE","features":[365]},{"name":"MF_USECHECKBITMAPS","features":[365]},{"name":"MIIM_BITMAP","features":[365]},{"name":"MIIM_CHECKMARKS","features":[365]},{"name":"MIIM_DATA","features":[365]},{"name":"MIIM_FTYPE","features":[365]},{"name":"MIIM_ID","features":[365]},{"name":"MIIM_STATE","features":[365]},{"name":"MIIM_STRING","features":[365]},{"name":"MIIM_SUBMENU","features":[365]},{"name":"MIIM_TYPE","features":[365]},{"name":"MIM_APPLYTOSUBMENUS","features":[365]},{"name":"MIM_BACKGROUND","features":[365]},{"name":"MIM_HELPID","features":[365]},{"name":"MIM_MAXHEIGHT","features":[365]},{"name":"MIM_MENUDATA","features":[365]},{"name":"MIM_STYLE","features":[365]},{"name":"MINIMIZEDMETRICS","features":[365]},{"name":"MINIMIZEDMETRICS_ARRANGE","features":[365]},{"name":"MINIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[365]},{"name":"MINMAXINFO","features":[303,365]},{"name":"MIN_LOGICALDPIOVERRIDE","features":[365]},{"name":"MKF_AVAILABLE","features":[365]},{"name":"MKF_CONFIRMHOTKEY","features":[365]},{"name":"MKF_HOTKEYACTIVE","features":[365]},{"name":"MKF_HOTKEYSOUND","features":[365]},{"name":"MKF_INDICATOR","features":[365]},{"name":"MKF_LEFTBUTTONDOWN","features":[365]},{"name":"MKF_LEFTBUTTONSEL","features":[365]},{"name":"MKF_MODIFIERS","features":[365]},{"name":"MKF_MOUSEKEYSON","features":[365]},{"name":"MKF_MOUSEMODE","features":[365]},{"name":"MKF_REPLACENUMBERS","features":[365]},{"name":"MKF_RIGHTBUTTONDOWN","features":[365]},{"name":"MKF_RIGHTBUTTONSEL","features":[365]},{"name":"MNC_CLOSE","features":[365]},{"name":"MNC_EXECUTE","features":[365]},{"name":"MNC_IGNORE","features":[365]},{"name":"MNC_SELECT","features":[365]},{"name":"MND_CONTINUE","features":[365]},{"name":"MND_ENDMENU","features":[365]},{"name":"MNGOF_BOTTOMGAP","features":[365]},{"name":"MNGOF_TOPGAP","features":[365]},{"name":"MNGO_NOERROR","features":[365]},{"name":"MNGO_NOINTERFACE","features":[365]},{"name":"MNS_AUTODISMISS","features":[365]},{"name":"MNS_CHECKORBMP","features":[365]},{"name":"MNS_DRAGDROP","features":[365]},{"name":"MNS_MODELESS","features":[365]},{"name":"MNS_NOCHECK","features":[365]},{"name":"MNS_NOTIFYBYPOS","features":[365]},{"name":"MN_GETHMENU","features":[365]},{"name":"MONITORINFOF_PRIMARY","features":[365]},{"name":"MOUSEHOOKSTRUCT","features":[303,365]},{"name":"MOUSEHOOKSTRUCTEX","features":[303,365]},{"name":"MOUSEWHEEL_ROUTING_FOCUS","features":[365]},{"name":"MOUSEWHEEL_ROUTING_HYBRID","features":[365]},{"name":"MOUSEWHEEL_ROUTING_MOUSE_POS","features":[365]},{"name":"MSG","features":[303,365]},{"name":"MSGBOXCALLBACK","features":[303,464,365]},{"name":"MSGBOXPARAMSA","features":[303,464,365]},{"name":"MSGBOXPARAMSW","features":[303,464,365]},{"name":"MSGFLTINFO_ALLOWED_HIGHER","features":[365]},{"name":"MSGFLTINFO_ALREADYALLOWED_FORWND","features":[365]},{"name":"MSGFLTINFO_ALREADYDISALLOWED_FORWND","features":[365]},{"name":"MSGFLTINFO_NONE","features":[365]},{"name":"MSGFLTINFO_STATUS","features":[365]},{"name":"MSGFLT_ADD","features":[365]},{"name":"MSGFLT_ALLOW","features":[365]},{"name":"MSGFLT_DISALLOW","features":[365]},{"name":"MSGFLT_REMOVE","features":[365]},{"name":"MSGFLT_RESET","features":[365]},{"name":"MSGF_DIALOGBOX","features":[365]},{"name":"MSGF_MAX","features":[365]},{"name":"MSGF_MENU","features":[365]},{"name":"MSGF_MESSAGEBOX","features":[365]},{"name":"MSGF_NEXTWINDOW","features":[365]},{"name":"MSGF_SCROLLBAR","features":[365]},{"name":"MSGF_USER","features":[365]},{"name":"MSG_WAIT_FOR_MULTIPLE_OBJECTS_EX_FLAGS","features":[365]},{"name":"MSLLHOOKSTRUCT","features":[303,365]},{"name":"MWMO_ALERTABLE","features":[365]},{"name":"MWMO_INPUTAVAILABLE","features":[365]},{"name":"MWMO_NONE","features":[365]},{"name":"MWMO_WAITALL","features":[365]},{"name":"MapDialogRect","features":[303,365]},{"name":"MenuItemFromPoint","features":[303,365]},{"name":"MessageBoxA","features":[303,365]},{"name":"MessageBoxExA","features":[303,365]},{"name":"MessageBoxExW","features":[303,365]},{"name":"MessageBoxIndirectA","features":[303,464,365]},{"name":"MessageBoxIndirectW","features":[303,464,365]},{"name":"MessageBoxW","features":[303,365]},{"name":"ModifyMenuA","features":[303,365]},{"name":"ModifyMenuW","features":[303,365]},{"name":"MoveWindow","features":[303,365]},{"name":"MrmCreateConfig","features":[365]},{"name":"MrmCreateConfigInMemory","features":[365]},{"name":"MrmCreateResourceFile","features":[365]},{"name":"MrmCreateResourceFileInMemory","features":[365]},{"name":"MrmCreateResourceFileWithChecksum","features":[365]},{"name":"MrmCreateResourceIndexer","features":[365]},{"name":"MrmCreateResourceIndexerFromPreviousPriData","features":[365]},{"name":"MrmCreateResourceIndexerFromPreviousPriFile","features":[365]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaData","features":[365]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaFile","features":[365]},{"name":"MrmCreateResourceIndexerWithFlags","features":[365]},{"name":"MrmDestroyIndexerAndMessages","features":[365]},{"name":"MrmDumpPriDataInMemory","features":[365]},{"name":"MrmDumpPriFile","features":[365]},{"name":"MrmDumpPriFileInMemory","features":[365]},{"name":"MrmDumpType","features":[365]},{"name":"MrmDumpType_Basic","features":[365]},{"name":"MrmDumpType_Detailed","features":[365]},{"name":"MrmDumpType_Schema","features":[365]},{"name":"MrmFreeMemory","features":[365]},{"name":"MrmGetPriFileContentChecksum","features":[365]},{"name":"MrmIndexEmbeddedData","features":[365]},{"name":"MrmIndexFile","features":[365]},{"name":"MrmIndexFileAutoQualifiers","features":[365]},{"name":"MrmIndexResourceContainerAutoQualifiers","features":[365]},{"name":"MrmIndexString","features":[365]},{"name":"MrmIndexerFlags","features":[365]},{"name":"MrmIndexerFlagsAutoMerge","features":[365]},{"name":"MrmIndexerFlagsCreateContentChecksum","features":[365]},{"name":"MrmIndexerFlagsNone","features":[365]},{"name":"MrmPackagingMode","features":[365]},{"name":"MrmPackagingModeAutoSplit","features":[365]},{"name":"MrmPackagingModeResourcePack","features":[365]},{"name":"MrmPackagingModeStandaloneFile","features":[365]},{"name":"MrmPackagingOptions","features":[365]},{"name":"MrmPackagingOptionsNone","features":[365]},{"name":"MrmPackagingOptionsOmitSchemaFromResourcePacks","features":[365]},{"name":"MrmPackagingOptionsSplitLanguageVariants","features":[365]},{"name":"MrmPeekResourceIndexerMessages","features":[365]},{"name":"MrmPlatformVersion","features":[365]},{"name":"MrmPlatformVersion_Default","features":[365]},{"name":"MrmPlatformVersion_Windows10_0_0_0","features":[365]},{"name":"MrmPlatformVersion_Windows10_0_0_5","features":[365]},{"name":"MrmResourceIndexerHandle","features":[365]},{"name":"MrmResourceIndexerMessage","features":[365]},{"name":"MrmResourceIndexerMessageSeverity","features":[365]},{"name":"MrmResourceIndexerMessageSeverityError","features":[365]},{"name":"MrmResourceIndexerMessageSeverityInfo","features":[365]},{"name":"MrmResourceIndexerMessageSeverityVerbose","features":[365]},{"name":"MrmResourceIndexerMessageSeverityWarning","features":[365]},{"name":"MsgWaitForMultipleObjects","features":[303,365]},{"name":"MsgWaitForMultipleObjectsEx","features":[303,365]},{"name":"NAMEENUMPROCA","features":[303,365]},{"name":"NAMEENUMPROCW","features":[303,365]},{"name":"NCCALCSIZE_PARAMS","features":[303,365]},{"name":"NFR_ANSI","features":[365]},{"name":"NFR_UNICODE","features":[365]},{"name":"NF_QUERY","features":[365]},{"name":"NF_REQUERY","features":[365]},{"name":"NID_EXTERNAL_PEN","features":[365]},{"name":"NID_EXTERNAL_TOUCH","features":[365]},{"name":"NID_INTEGRATED_PEN","features":[365]},{"name":"NID_INTEGRATED_TOUCH","features":[365]},{"name":"NID_MULTI_INPUT","features":[365]},{"name":"NID_READY","features":[365]},{"name":"NONCLIENTMETRICSA","features":[314,365]},{"name":"NONCLIENTMETRICSW","features":[314,365]},{"name":"OBJECT_IDENTIFIER","features":[365]},{"name":"OBJID_ALERT","features":[365]},{"name":"OBJID_CARET","features":[365]},{"name":"OBJID_CLIENT","features":[365]},{"name":"OBJID_CURSOR","features":[365]},{"name":"OBJID_HSCROLL","features":[365]},{"name":"OBJID_MENU","features":[365]},{"name":"OBJID_NATIVEOM","features":[365]},{"name":"OBJID_QUERYCLASSNAMEIDX","features":[365]},{"name":"OBJID_SIZEGRIP","features":[365]},{"name":"OBJID_SOUND","features":[365]},{"name":"OBJID_SYSMENU","features":[365]},{"name":"OBJID_TITLEBAR","features":[365]},{"name":"OBJID_VSCROLL","features":[365]},{"name":"OBJID_WINDOW","features":[365]},{"name":"OBM_BTNCORNERS","features":[365]},{"name":"OBM_BTSIZE","features":[365]},{"name":"OBM_CHECK","features":[365]},{"name":"OBM_CHECKBOXES","features":[365]},{"name":"OBM_CLOSE","features":[365]},{"name":"OBM_COMBO","features":[365]},{"name":"OBM_DNARROW","features":[365]},{"name":"OBM_DNARROWD","features":[365]},{"name":"OBM_DNARROWI","features":[365]},{"name":"OBM_LFARROW","features":[365]},{"name":"OBM_LFARROWD","features":[365]},{"name":"OBM_LFARROWI","features":[365]},{"name":"OBM_MNARROW","features":[365]},{"name":"OBM_OLD_CLOSE","features":[365]},{"name":"OBM_OLD_DNARROW","features":[365]},{"name":"OBM_OLD_LFARROW","features":[365]},{"name":"OBM_OLD_REDUCE","features":[365]},{"name":"OBM_OLD_RESTORE","features":[365]},{"name":"OBM_OLD_RGARROW","features":[365]},{"name":"OBM_OLD_UPARROW","features":[365]},{"name":"OBM_OLD_ZOOM","features":[365]},{"name":"OBM_REDUCE","features":[365]},{"name":"OBM_REDUCED","features":[365]},{"name":"OBM_RESTORE","features":[365]},{"name":"OBM_RESTORED","features":[365]},{"name":"OBM_RGARROW","features":[365]},{"name":"OBM_RGARROWD","features":[365]},{"name":"OBM_RGARROWI","features":[365]},{"name":"OBM_SIZE","features":[365]},{"name":"OBM_UPARROW","features":[365]},{"name":"OBM_UPARROWD","features":[365]},{"name":"OBM_UPARROWI","features":[365]},{"name":"OBM_ZOOM","features":[365]},{"name":"OBM_ZOOMD","features":[365]},{"name":"OCR_APPSTARTING","features":[365]},{"name":"OCR_CROSS","features":[365]},{"name":"OCR_HAND","features":[365]},{"name":"OCR_HELP","features":[365]},{"name":"OCR_IBEAM","features":[365]},{"name":"OCR_ICOCUR","features":[365]},{"name":"OCR_ICON","features":[365]},{"name":"OCR_NO","features":[365]},{"name":"OCR_NORMAL","features":[365]},{"name":"OCR_SIZE","features":[365]},{"name":"OCR_SIZEALL","features":[365]},{"name":"OCR_SIZENESW","features":[365]},{"name":"OCR_SIZENS","features":[365]},{"name":"OCR_SIZENWSE","features":[365]},{"name":"OCR_SIZEWE","features":[365]},{"name":"OCR_UP","features":[365]},{"name":"OCR_WAIT","features":[365]},{"name":"OIC_BANG","features":[365]},{"name":"OIC_ERROR","features":[365]},{"name":"OIC_HAND","features":[365]},{"name":"OIC_INFORMATION","features":[365]},{"name":"OIC_NOTE","features":[365]},{"name":"OIC_QUES","features":[365]},{"name":"OIC_SAMPLE","features":[365]},{"name":"OIC_SHIELD","features":[365]},{"name":"OIC_WARNING","features":[365]},{"name":"OIC_WINLOGO","features":[365]},{"name":"ORD_LANGDRIVER","features":[365]},{"name":"OemToCharA","features":[303,365]},{"name":"OemToCharBuffA","features":[303,365]},{"name":"OemToCharBuffW","features":[303,365]},{"name":"OemToCharW","features":[303,365]},{"name":"OpenIcon","features":[303,365]},{"name":"PA_ACTIVATE","features":[365]},{"name":"PA_NOACTIVATE","features":[365]},{"name":"PBTF_APMRESUMEFROMFAILURE","features":[365]},{"name":"PBT_APMBATTERYLOW","features":[365]},{"name":"PBT_APMOEMEVENT","features":[365]},{"name":"PBT_APMPOWERSTATUSCHANGE","features":[365]},{"name":"PBT_APMQUERYSTANDBY","features":[365]},{"name":"PBT_APMQUERYSTANDBYFAILED","features":[365]},{"name":"PBT_APMQUERYSUSPEND","features":[365]},{"name":"PBT_APMQUERYSUSPENDFAILED","features":[365]},{"name":"PBT_APMRESUMEAUTOMATIC","features":[365]},{"name":"PBT_APMRESUMECRITICAL","features":[365]},{"name":"PBT_APMRESUMESTANDBY","features":[365]},{"name":"PBT_APMRESUMESUSPEND","features":[365]},{"name":"PBT_APMSTANDBY","features":[365]},{"name":"PBT_APMSUSPEND","features":[365]},{"name":"PBT_POWERSETTINGCHANGE","features":[365]},{"name":"PDC_ARRIVAL","features":[365]},{"name":"PDC_MAPPING_CHANGE","features":[365]},{"name":"PDC_MODE_ASPECTRATIOPRESERVED","features":[365]},{"name":"PDC_MODE_CENTERED","features":[365]},{"name":"PDC_MODE_DEFAULT","features":[365]},{"name":"PDC_ORIENTATION_0","features":[365]},{"name":"PDC_ORIENTATION_180","features":[365]},{"name":"PDC_ORIENTATION_270","features":[365]},{"name":"PDC_ORIENTATION_90","features":[365]},{"name":"PDC_ORIGIN","features":[365]},{"name":"PDC_REMOVAL","features":[365]},{"name":"PDC_RESOLUTION","features":[365]},{"name":"PEEK_MESSAGE_REMOVE_TYPE","features":[365]},{"name":"PENARBITRATIONTYPE_FIS","features":[365]},{"name":"PENARBITRATIONTYPE_MAX","features":[365]},{"name":"PENARBITRATIONTYPE_NONE","features":[365]},{"name":"PENARBITRATIONTYPE_SPT","features":[365]},{"name":"PENARBITRATIONTYPE_WIN8","features":[365]},{"name":"PENVISUALIZATION_CURSOR","features":[365]},{"name":"PENVISUALIZATION_DOUBLETAP","features":[365]},{"name":"PENVISUALIZATION_OFF","features":[365]},{"name":"PENVISUALIZATION_ON","features":[365]},{"name":"PENVISUALIZATION_TAP","features":[365]},{"name":"PEN_FLAG_BARREL","features":[365]},{"name":"PEN_FLAG_ERASER","features":[365]},{"name":"PEN_FLAG_INVERTED","features":[365]},{"name":"PEN_FLAG_NONE","features":[365]},{"name":"PEN_MASK_NONE","features":[365]},{"name":"PEN_MASK_PRESSURE","features":[365]},{"name":"PEN_MASK_ROTATION","features":[365]},{"name":"PEN_MASK_TILT_X","features":[365]},{"name":"PEN_MASK_TILT_Y","features":[365]},{"name":"PMB_ACTIVE","features":[365]},{"name":"PM_NOREMOVE","features":[365]},{"name":"PM_NOYIELD","features":[365]},{"name":"PM_QS_INPUT","features":[365]},{"name":"PM_QS_PAINT","features":[365]},{"name":"PM_QS_POSTMESSAGE","features":[365]},{"name":"PM_QS_SENDMESSAGE","features":[365]},{"name":"PM_REMOVE","features":[365]},{"name":"POINTER_DEVICE_PRODUCT_STRING_MAX","features":[365]},{"name":"POINTER_INPUT_TYPE","features":[365]},{"name":"POINTER_MESSAGE_FLAG_CANCELED","features":[365]},{"name":"POINTER_MESSAGE_FLAG_CONFIDENCE","features":[365]},{"name":"POINTER_MESSAGE_FLAG_FIFTHBUTTON","features":[365]},{"name":"POINTER_MESSAGE_FLAG_FIRSTBUTTON","features":[365]},{"name":"POINTER_MESSAGE_FLAG_FOURTHBUTTON","features":[365]},{"name":"POINTER_MESSAGE_FLAG_INCONTACT","features":[365]},{"name":"POINTER_MESSAGE_FLAG_INRANGE","features":[365]},{"name":"POINTER_MESSAGE_FLAG_NEW","features":[365]},{"name":"POINTER_MESSAGE_FLAG_PRIMARY","features":[365]},{"name":"POINTER_MESSAGE_FLAG_SECONDBUTTON","features":[365]},{"name":"POINTER_MESSAGE_FLAG_THIRDBUTTON","features":[365]},{"name":"POINTER_MOD_CTRL","features":[365]},{"name":"POINTER_MOD_SHIFT","features":[365]},{"name":"PREGISTERCLASSNAMEW","features":[303,365]},{"name":"PRF_CHECKVISIBLE","features":[365]},{"name":"PRF_CHILDREN","features":[365]},{"name":"PRF_CLIENT","features":[365]},{"name":"PRF_ERASEBKGND","features":[365]},{"name":"PRF_NONCLIENT","features":[365]},{"name":"PRF_OWNED","features":[365]},{"name":"PROPENUMPROCA","features":[303,365]},{"name":"PROPENUMPROCEXA","features":[303,365]},{"name":"PROPENUMPROCEXW","features":[303,365]},{"name":"PROPENUMPROCW","features":[303,365]},{"name":"PT_MOUSE","features":[365]},{"name":"PT_PEN","features":[365]},{"name":"PT_POINTER","features":[365]},{"name":"PT_TOUCH","features":[365]},{"name":"PT_TOUCHPAD","features":[365]},{"name":"PWR_CRITICALRESUME","features":[365]},{"name":"PWR_FAIL","features":[365]},{"name":"PWR_OK","features":[365]},{"name":"PWR_SUSPENDREQUEST","features":[365]},{"name":"PWR_SUSPENDRESUME","features":[365]},{"name":"PW_RENDERFULLCONTENT","features":[365]},{"name":"PeekMessageA","features":[303,365]},{"name":"PeekMessageW","features":[303,365]},{"name":"PhysicalToLogicalPoint","features":[303,365]},{"name":"PostMessageA","features":[303,365]},{"name":"PostMessageW","features":[303,365]},{"name":"PostQuitMessage","features":[365]},{"name":"PostThreadMessageA","features":[303,365]},{"name":"PostThreadMessageW","features":[303,365]},{"name":"PrivateExtractIconsA","features":[365]},{"name":"PrivateExtractIconsW","features":[365]},{"name":"QS_ALLEVENTS","features":[365]},{"name":"QS_ALLINPUT","features":[365]},{"name":"QS_ALLPOSTMESSAGE","features":[365]},{"name":"QS_HOTKEY","features":[365]},{"name":"QS_INPUT","features":[365]},{"name":"QS_KEY","features":[365]},{"name":"QS_MOUSE","features":[365]},{"name":"QS_MOUSEBUTTON","features":[365]},{"name":"QS_MOUSEMOVE","features":[365]},{"name":"QS_PAINT","features":[365]},{"name":"QS_POINTER","features":[365]},{"name":"QS_POSTMESSAGE","features":[365]},{"name":"QS_RAWINPUT","features":[365]},{"name":"QS_SENDMESSAGE","features":[365]},{"name":"QS_TIMER","features":[365]},{"name":"QS_TOUCH","features":[365]},{"name":"QUEUE_STATUS_FLAGS","features":[365]},{"name":"REGISTER_NOTIFICATION_FLAGS","features":[365]},{"name":"RES_CURSOR","features":[365]},{"name":"RES_ICON","features":[365]},{"name":"RIDEV_EXMODEMASK","features":[365]},{"name":"RIM_INPUT","features":[365]},{"name":"RIM_INPUTSINK","features":[365]},{"name":"RIM_TYPEMAX","features":[365]},{"name":"RI_KEY_BREAK","features":[365]},{"name":"RI_KEY_E0","features":[365]},{"name":"RI_KEY_E1","features":[365]},{"name":"RI_KEY_MAKE","features":[365]},{"name":"RI_KEY_TERMSRV_SET_LED","features":[365]},{"name":"RI_KEY_TERMSRV_SHADOW","features":[365]},{"name":"RI_MOUSE_BUTTON_1_DOWN","features":[365]},{"name":"RI_MOUSE_BUTTON_1_UP","features":[365]},{"name":"RI_MOUSE_BUTTON_2_DOWN","features":[365]},{"name":"RI_MOUSE_BUTTON_2_UP","features":[365]},{"name":"RI_MOUSE_BUTTON_3_DOWN","features":[365]},{"name":"RI_MOUSE_BUTTON_3_UP","features":[365]},{"name":"RI_MOUSE_BUTTON_4_DOWN","features":[365]},{"name":"RI_MOUSE_BUTTON_4_UP","features":[365]},{"name":"RI_MOUSE_BUTTON_5_DOWN","features":[365]},{"name":"RI_MOUSE_BUTTON_5_UP","features":[365]},{"name":"RI_MOUSE_HWHEEL","features":[365]},{"name":"RI_MOUSE_LEFT_BUTTON_DOWN","features":[365]},{"name":"RI_MOUSE_LEFT_BUTTON_UP","features":[365]},{"name":"RI_MOUSE_MIDDLE_BUTTON_DOWN","features":[365]},{"name":"RI_MOUSE_MIDDLE_BUTTON_UP","features":[365]},{"name":"RI_MOUSE_RIGHT_BUTTON_DOWN","features":[365]},{"name":"RI_MOUSE_RIGHT_BUTTON_UP","features":[365]},{"name":"RI_MOUSE_WHEEL","features":[365]},{"name":"RT_ACCELERATOR","features":[365]},{"name":"RT_ANICURSOR","features":[365]},{"name":"RT_ANIICON","features":[365]},{"name":"RT_BITMAP","features":[365]},{"name":"RT_CURSOR","features":[365]},{"name":"RT_DIALOG","features":[365]},{"name":"RT_DLGINCLUDE","features":[365]},{"name":"RT_FONT","features":[365]},{"name":"RT_FONTDIR","features":[365]},{"name":"RT_HTML","features":[365]},{"name":"RT_ICON","features":[365]},{"name":"RT_MANIFEST","features":[365]},{"name":"RT_MENU","features":[365]},{"name":"RT_MESSAGETABLE","features":[365]},{"name":"RT_PLUGPLAY","features":[365]},{"name":"RT_VERSION","features":[365]},{"name":"RT_VXD","features":[365]},{"name":"RealChildWindowFromPoint","features":[303,365]},{"name":"RealGetWindowClassA","features":[303,365]},{"name":"RealGetWindowClassW","features":[303,365]},{"name":"RegisterClassA","features":[303,314,365]},{"name":"RegisterClassExA","features":[303,314,365]},{"name":"RegisterClassExW","features":[303,314,365]},{"name":"RegisterClassW","features":[303,314,365]},{"name":"RegisterDeviceNotificationA","features":[303,365]},{"name":"RegisterDeviceNotificationW","features":[303,365]},{"name":"RegisterForTooltipDismissNotification","features":[303,365]},{"name":"RegisterShellHookWindow","features":[303,365]},{"name":"RegisterWindowMessageA","features":[365]},{"name":"RegisterWindowMessageW","features":[365]},{"name":"RemoveMenu","features":[303,365]},{"name":"RemovePropA","features":[303,365]},{"name":"RemovePropW","features":[303,365]},{"name":"ReplyMessage","features":[303,365]},{"name":"SBM_ENABLE_ARROWS","features":[365]},{"name":"SBM_GETPOS","features":[365]},{"name":"SBM_GETRANGE","features":[365]},{"name":"SBM_GETSCROLLBARINFO","features":[365]},{"name":"SBM_GETSCROLLINFO","features":[365]},{"name":"SBM_SETPOS","features":[365]},{"name":"SBM_SETRANGE","features":[365]},{"name":"SBM_SETRANGEREDRAW","features":[365]},{"name":"SBM_SETSCROLLINFO","features":[365]},{"name":"SBS_BOTTOMALIGN","features":[365]},{"name":"SBS_HORZ","features":[365]},{"name":"SBS_LEFTALIGN","features":[365]},{"name":"SBS_RIGHTALIGN","features":[365]},{"name":"SBS_SIZEBOX","features":[365]},{"name":"SBS_SIZEBOXBOTTOMRIGHTALIGN","features":[365]},{"name":"SBS_SIZEBOXTOPLEFTALIGN","features":[365]},{"name":"SBS_SIZEGRIP","features":[365]},{"name":"SBS_TOPALIGN","features":[365]},{"name":"SBS_VERT","features":[365]},{"name":"SB_BOTH","features":[365]},{"name":"SB_BOTTOM","features":[365]},{"name":"SB_CTL","features":[365]},{"name":"SB_ENDSCROLL","features":[365]},{"name":"SB_HORZ","features":[365]},{"name":"SB_LEFT","features":[365]},{"name":"SB_LINEDOWN","features":[365]},{"name":"SB_LINELEFT","features":[365]},{"name":"SB_LINERIGHT","features":[365]},{"name":"SB_LINEUP","features":[365]},{"name":"SB_PAGEDOWN","features":[365]},{"name":"SB_PAGELEFT","features":[365]},{"name":"SB_PAGERIGHT","features":[365]},{"name":"SB_PAGEUP","features":[365]},{"name":"SB_RIGHT","features":[365]},{"name":"SB_THUMBPOSITION","features":[365]},{"name":"SB_THUMBTRACK","features":[365]},{"name":"SB_TOP","features":[365]},{"name":"SB_VERT","features":[365]},{"name":"SCF_ISSECURE","features":[365]},{"name":"SCROLLBARINFO","features":[303,365]},{"name":"SCROLLBAR_COMMAND","features":[365]},{"name":"SCROLLBAR_CONSTANTS","features":[365]},{"name":"SCROLLINFO","features":[365]},{"name":"SCROLLINFO_MASK","features":[365]},{"name":"SCROLL_WINDOW_FLAGS","features":[365]},{"name":"SC_ARRANGE","features":[365]},{"name":"SC_CLOSE","features":[365]},{"name":"SC_CONTEXTHELP","features":[365]},{"name":"SC_DEFAULT","features":[365]},{"name":"SC_HOTKEY","features":[365]},{"name":"SC_HSCROLL","features":[365]},{"name":"SC_ICON","features":[365]},{"name":"SC_KEYMENU","features":[365]},{"name":"SC_MAXIMIZE","features":[365]},{"name":"SC_MINIMIZE","features":[365]},{"name":"SC_MONITORPOWER","features":[365]},{"name":"SC_MOUSEMENU","features":[365]},{"name":"SC_MOVE","features":[365]},{"name":"SC_NEXTWINDOW","features":[365]},{"name":"SC_PREVWINDOW","features":[365]},{"name":"SC_RESTORE","features":[365]},{"name":"SC_SEPARATOR","features":[365]},{"name":"SC_SIZE","features":[365]},{"name":"SC_TASKLIST","features":[365]},{"name":"SC_VSCROLL","features":[365]},{"name":"SC_ZOOM","features":[365]},{"name":"SENDASYNCPROC","features":[303,365]},{"name":"SEND_MESSAGE_TIMEOUT_FLAGS","features":[365]},{"name":"SET_WINDOW_POS_FLAGS","features":[365]},{"name":"SHELLHOOKINFO","features":[303,365]},{"name":"SHOW_FULLSCREEN","features":[365]},{"name":"SHOW_ICONWINDOW","features":[365]},{"name":"SHOW_OPENNOACTIVATE","features":[365]},{"name":"SHOW_OPENWINDOW","features":[365]},{"name":"SHOW_WINDOW_CMD","features":[365]},{"name":"SHOW_WINDOW_STATUS","features":[365]},{"name":"SIF_ALL","features":[365]},{"name":"SIF_DISABLENOSCROLL","features":[365]},{"name":"SIF_PAGE","features":[365]},{"name":"SIF_POS","features":[365]},{"name":"SIF_RANGE","features":[365]},{"name":"SIF_TRACKPOS","features":[365]},{"name":"SIZEFULLSCREEN","features":[365]},{"name":"SIZEICONIC","features":[365]},{"name":"SIZENORMAL","features":[365]},{"name":"SIZEZOOMHIDE","features":[365]},{"name":"SIZEZOOMSHOW","features":[365]},{"name":"SIZE_MAXHIDE","features":[365]},{"name":"SIZE_MAXIMIZED","features":[365]},{"name":"SIZE_MAXSHOW","features":[365]},{"name":"SIZE_MINIMIZED","features":[365]},{"name":"SIZE_RESTORED","features":[365]},{"name":"SMTO_ABORTIFHUNG","features":[365]},{"name":"SMTO_BLOCK","features":[365]},{"name":"SMTO_ERRORONEXIT","features":[365]},{"name":"SMTO_NORMAL","features":[365]},{"name":"SMTO_NOTIMEOUTIFNOTHUNG","features":[365]},{"name":"SM_ARRANGE","features":[365]},{"name":"SM_CARETBLINKINGENABLED","features":[365]},{"name":"SM_CLEANBOOT","features":[365]},{"name":"SM_CMETRICS","features":[365]},{"name":"SM_CMONITORS","features":[365]},{"name":"SM_CMOUSEBUTTONS","features":[365]},{"name":"SM_CONVERTIBLESLATEMODE","features":[365]},{"name":"SM_CXBORDER","features":[365]},{"name":"SM_CXCURSOR","features":[365]},{"name":"SM_CXDLGFRAME","features":[365]},{"name":"SM_CXDOUBLECLK","features":[365]},{"name":"SM_CXDRAG","features":[365]},{"name":"SM_CXEDGE","features":[365]},{"name":"SM_CXFIXEDFRAME","features":[365]},{"name":"SM_CXFOCUSBORDER","features":[365]},{"name":"SM_CXFRAME","features":[365]},{"name":"SM_CXFULLSCREEN","features":[365]},{"name":"SM_CXHSCROLL","features":[365]},{"name":"SM_CXHTHUMB","features":[365]},{"name":"SM_CXICON","features":[365]},{"name":"SM_CXICONSPACING","features":[365]},{"name":"SM_CXMAXIMIZED","features":[365]},{"name":"SM_CXMAXTRACK","features":[365]},{"name":"SM_CXMENUCHECK","features":[365]},{"name":"SM_CXMENUSIZE","features":[365]},{"name":"SM_CXMIN","features":[365]},{"name":"SM_CXMINIMIZED","features":[365]},{"name":"SM_CXMINSPACING","features":[365]},{"name":"SM_CXMINTRACK","features":[365]},{"name":"SM_CXPADDEDBORDER","features":[365]},{"name":"SM_CXSCREEN","features":[365]},{"name":"SM_CXSIZE","features":[365]},{"name":"SM_CXSIZEFRAME","features":[365]},{"name":"SM_CXSMICON","features":[365]},{"name":"SM_CXSMSIZE","features":[365]},{"name":"SM_CXVIRTUALSCREEN","features":[365]},{"name":"SM_CXVSCROLL","features":[365]},{"name":"SM_CYBORDER","features":[365]},{"name":"SM_CYCAPTION","features":[365]},{"name":"SM_CYCURSOR","features":[365]},{"name":"SM_CYDLGFRAME","features":[365]},{"name":"SM_CYDOUBLECLK","features":[365]},{"name":"SM_CYDRAG","features":[365]},{"name":"SM_CYEDGE","features":[365]},{"name":"SM_CYFIXEDFRAME","features":[365]},{"name":"SM_CYFOCUSBORDER","features":[365]},{"name":"SM_CYFRAME","features":[365]},{"name":"SM_CYFULLSCREEN","features":[365]},{"name":"SM_CYHSCROLL","features":[365]},{"name":"SM_CYICON","features":[365]},{"name":"SM_CYICONSPACING","features":[365]},{"name":"SM_CYKANJIWINDOW","features":[365]},{"name":"SM_CYMAXIMIZED","features":[365]},{"name":"SM_CYMAXTRACK","features":[365]},{"name":"SM_CYMENU","features":[365]},{"name":"SM_CYMENUCHECK","features":[365]},{"name":"SM_CYMENUSIZE","features":[365]},{"name":"SM_CYMIN","features":[365]},{"name":"SM_CYMINIMIZED","features":[365]},{"name":"SM_CYMINSPACING","features":[365]},{"name":"SM_CYMINTRACK","features":[365]},{"name":"SM_CYSCREEN","features":[365]},{"name":"SM_CYSIZE","features":[365]},{"name":"SM_CYSIZEFRAME","features":[365]},{"name":"SM_CYSMCAPTION","features":[365]},{"name":"SM_CYSMICON","features":[365]},{"name":"SM_CYSMSIZE","features":[365]},{"name":"SM_CYVIRTUALSCREEN","features":[365]},{"name":"SM_CYVSCROLL","features":[365]},{"name":"SM_CYVTHUMB","features":[365]},{"name":"SM_DBCSENABLED","features":[365]},{"name":"SM_DEBUG","features":[365]},{"name":"SM_DIGITIZER","features":[365]},{"name":"SM_IMMENABLED","features":[365]},{"name":"SM_MAXIMUMTOUCHES","features":[365]},{"name":"SM_MEDIACENTER","features":[365]},{"name":"SM_MENUDROPALIGNMENT","features":[365]},{"name":"SM_MIDEASTENABLED","features":[365]},{"name":"SM_MOUSEHORIZONTALWHEELPRESENT","features":[365]},{"name":"SM_MOUSEPRESENT","features":[365]},{"name":"SM_MOUSEWHEELPRESENT","features":[365]},{"name":"SM_NETWORK","features":[365]},{"name":"SM_PENWINDOWS","features":[365]},{"name":"SM_REMOTECONTROL","features":[365]},{"name":"SM_REMOTESESSION","features":[365]},{"name":"SM_RESERVED1","features":[365]},{"name":"SM_RESERVED2","features":[365]},{"name":"SM_RESERVED3","features":[365]},{"name":"SM_RESERVED4","features":[365]},{"name":"SM_SAMEDISPLAYFORMAT","features":[365]},{"name":"SM_SECURE","features":[365]},{"name":"SM_SERVERR2","features":[365]},{"name":"SM_SHOWSOUNDS","features":[365]},{"name":"SM_SHUTTINGDOWN","features":[365]},{"name":"SM_SLOWMACHINE","features":[365]},{"name":"SM_STARTER","features":[365]},{"name":"SM_SWAPBUTTON","features":[365]},{"name":"SM_SYSTEMDOCKED","features":[365]},{"name":"SM_TABLETPC","features":[365]},{"name":"SM_XVIRTUALSCREEN","features":[365]},{"name":"SM_YVIRTUALSCREEN","features":[365]},{"name":"SOUND_SYSTEM_APPEND","features":[365]},{"name":"SOUND_SYSTEM_APPSTART","features":[365]},{"name":"SOUND_SYSTEM_BEEP","features":[365]},{"name":"SOUND_SYSTEM_ERROR","features":[365]},{"name":"SOUND_SYSTEM_FAULT","features":[365]},{"name":"SOUND_SYSTEM_INFORMATION","features":[365]},{"name":"SOUND_SYSTEM_MAXIMIZE","features":[365]},{"name":"SOUND_SYSTEM_MENUCOMMAND","features":[365]},{"name":"SOUND_SYSTEM_MENUPOPUP","features":[365]},{"name":"SOUND_SYSTEM_MINIMIZE","features":[365]},{"name":"SOUND_SYSTEM_QUESTION","features":[365]},{"name":"SOUND_SYSTEM_RESTOREDOWN","features":[365]},{"name":"SOUND_SYSTEM_RESTOREUP","features":[365]},{"name":"SOUND_SYSTEM_SHUTDOWN","features":[365]},{"name":"SOUND_SYSTEM_STARTUP","features":[365]},{"name":"SOUND_SYSTEM_WARNING","features":[365]},{"name":"SPIF_SENDCHANGE","features":[365]},{"name":"SPIF_SENDWININICHANGE","features":[365]},{"name":"SPIF_UPDATEINIFILE","features":[365]},{"name":"SPI_GETACCESSTIMEOUT","features":[365]},{"name":"SPI_GETACTIVEWINDOWTRACKING","features":[365]},{"name":"SPI_GETACTIVEWNDTRKTIMEOUT","features":[365]},{"name":"SPI_GETACTIVEWNDTRKZORDER","features":[365]},{"name":"SPI_GETANIMATION","features":[365]},{"name":"SPI_GETAUDIODESCRIPTION","features":[365]},{"name":"SPI_GETBEEP","features":[365]},{"name":"SPI_GETBLOCKSENDINPUTRESETS","features":[365]},{"name":"SPI_GETBORDER","features":[365]},{"name":"SPI_GETCARETBROWSING","features":[365]},{"name":"SPI_GETCARETTIMEOUT","features":[365]},{"name":"SPI_GETCARETWIDTH","features":[365]},{"name":"SPI_GETCLEARTYPE","features":[365]},{"name":"SPI_GETCLIENTAREAANIMATION","features":[365]},{"name":"SPI_GETCOMBOBOXANIMATION","features":[365]},{"name":"SPI_GETCONTACTVISUALIZATION","features":[365]},{"name":"SPI_GETCURSORSHADOW","features":[365]},{"name":"SPI_GETDEFAULTINPUTLANG","features":[365]},{"name":"SPI_GETDESKWALLPAPER","features":[365]},{"name":"SPI_GETDISABLEOVERLAPPEDCONTENT","features":[365]},{"name":"SPI_GETDOCKMOVING","features":[365]},{"name":"SPI_GETDRAGFROMMAXIMIZE","features":[365]},{"name":"SPI_GETDRAGFULLWINDOWS","features":[365]},{"name":"SPI_GETDROPSHADOW","features":[365]},{"name":"SPI_GETFASTTASKSWITCH","features":[365]},{"name":"SPI_GETFILTERKEYS","features":[365]},{"name":"SPI_GETFLATMENU","features":[365]},{"name":"SPI_GETFOCUSBORDERHEIGHT","features":[365]},{"name":"SPI_GETFOCUSBORDERWIDTH","features":[365]},{"name":"SPI_GETFONTSMOOTHING","features":[365]},{"name":"SPI_GETFONTSMOOTHINGCONTRAST","features":[365]},{"name":"SPI_GETFONTSMOOTHINGORIENTATION","features":[365]},{"name":"SPI_GETFONTSMOOTHINGTYPE","features":[365]},{"name":"SPI_GETFOREGROUNDFLASHCOUNT","features":[365]},{"name":"SPI_GETFOREGROUNDLOCKTIMEOUT","features":[365]},{"name":"SPI_GETGESTUREVISUALIZATION","features":[365]},{"name":"SPI_GETGRADIENTCAPTIONS","features":[365]},{"name":"SPI_GETGRIDGRANULARITY","features":[365]},{"name":"SPI_GETHANDEDNESS","features":[365]},{"name":"SPI_GETHIGHCONTRAST","features":[365]},{"name":"SPI_GETHOTTRACKING","features":[365]},{"name":"SPI_GETHUNGAPPTIMEOUT","features":[365]},{"name":"SPI_GETICONMETRICS","features":[365]},{"name":"SPI_GETICONTITLELOGFONT","features":[365]},{"name":"SPI_GETICONTITLEWRAP","features":[365]},{"name":"SPI_GETKEYBOARDCUES","features":[365]},{"name":"SPI_GETKEYBOARDDELAY","features":[365]},{"name":"SPI_GETKEYBOARDPREF","features":[365]},{"name":"SPI_GETKEYBOARDSPEED","features":[365]},{"name":"SPI_GETLISTBOXSMOOTHSCROLLING","features":[365]},{"name":"SPI_GETLOGICALDPIOVERRIDE","features":[365]},{"name":"SPI_GETLOWPOWERACTIVE","features":[365]},{"name":"SPI_GETLOWPOWERTIMEOUT","features":[365]},{"name":"SPI_GETMENUANIMATION","features":[365]},{"name":"SPI_GETMENUDROPALIGNMENT","features":[365]},{"name":"SPI_GETMENUFADE","features":[365]},{"name":"SPI_GETMENURECT","features":[365]},{"name":"SPI_GETMENUSHOWDELAY","features":[365]},{"name":"SPI_GETMENUUNDERLINES","features":[365]},{"name":"SPI_GETMESSAGEDURATION","features":[365]},{"name":"SPI_GETMINIMIZEDMETRICS","features":[365]},{"name":"SPI_GETMINIMUMHITRADIUS","features":[365]},{"name":"SPI_GETMOUSE","features":[365]},{"name":"SPI_GETMOUSECLICKLOCK","features":[365]},{"name":"SPI_GETMOUSECLICKLOCKTIME","features":[365]},{"name":"SPI_GETMOUSEDOCKTHRESHOLD","features":[365]},{"name":"SPI_GETMOUSEDRAGOUTTHRESHOLD","features":[365]},{"name":"SPI_GETMOUSEHOVERHEIGHT","features":[365]},{"name":"SPI_GETMOUSEHOVERTIME","features":[365]},{"name":"SPI_GETMOUSEHOVERWIDTH","features":[365]},{"name":"SPI_GETMOUSEKEYS","features":[365]},{"name":"SPI_GETMOUSESIDEMOVETHRESHOLD","features":[365]},{"name":"SPI_GETMOUSESONAR","features":[365]},{"name":"SPI_GETMOUSESPEED","features":[365]},{"name":"SPI_GETMOUSETRAILS","features":[365]},{"name":"SPI_GETMOUSEVANISH","features":[365]},{"name":"SPI_GETMOUSEWHEELROUTING","features":[365]},{"name":"SPI_GETNONCLIENTMETRICS","features":[365]},{"name":"SPI_GETPENARBITRATIONTYPE","features":[365]},{"name":"SPI_GETPENDOCKTHRESHOLD","features":[365]},{"name":"SPI_GETPENDRAGOUTTHRESHOLD","features":[365]},{"name":"SPI_GETPENSIDEMOVETHRESHOLD","features":[365]},{"name":"SPI_GETPENVISUALIZATION","features":[365]},{"name":"SPI_GETPOWEROFFACTIVE","features":[365]},{"name":"SPI_GETPOWEROFFTIMEOUT","features":[365]},{"name":"SPI_GETSCREENREADER","features":[365]},{"name":"SPI_GETSCREENSAVEACTIVE","features":[365]},{"name":"SPI_GETSCREENSAVERRUNNING","features":[365]},{"name":"SPI_GETSCREENSAVESECURE","features":[365]},{"name":"SPI_GETSCREENSAVETIMEOUT","features":[365]},{"name":"SPI_GETSELECTIONFADE","features":[365]},{"name":"SPI_GETSERIALKEYS","features":[365]},{"name":"SPI_GETSHOWIMEUI","features":[365]},{"name":"SPI_GETSHOWSOUNDS","features":[365]},{"name":"SPI_GETSNAPSIZING","features":[365]},{"name":"SPI_GETSNAPTODEFBUTTON","features":[365]},{"name":"SPI_GETSOUNDSENTRY","features":[365]},{"name":"SPI_GETSPEECHRECOGNITION","features":[365]},{"name":"SPI_GETSTICKYKEYS","features":[365]},{"name":"SPI_GETSYSTEMLANGUAGEBAR","features":[365]},{"name":"SPI_GETTHREADLOCALINPUTSETTINGS","features":[365]},{"name":"SPI_GETTOGGLEKEYS","features":[365]},{"name":"SPI_GETTOOLTIPANIMATION","features":[365]},{"name":"SPI_GETTOOLTIPFADE","features":[365]},{"name":"SPI_GETTOUCHPREDICTIONPARAMETERS","features":[365]},{"name":"SPI_GETUIEFFECTS","features":[365]},{"name":"SPI_GETWAITTOKILLSERVICETIMEOUT","features":[365]},{"name":"SPI_GETWAITTOKILLTIMEOUT","features":[365]},{"name":"SPI_GETWHEELSCROLLCHARS","features":[365]},{"name":"SPI_GETWHEELSCROLLLINES","features":[365]},{"name":"SPI_GETWINARRANGING","features":[365]},{"name":"SPI_GETWINDOWSEXTENSION","features":[365]},{"name":"SPI_GETWORKAREA","features":[365]},{"name":"SPI_ICONHORIZONTALSPACING","features":[365]},{"name":"SPI_ICONVERTICALSPACING","features":[365]},{"name":"SPI_LANGDRIVER","features":[365]},{"name":"SPI_SCREENSAVERRUNNING","features":[365]},{"name":"SPI_SETACCESSTIMEOUT","features":[365]},{"name":"SPI_SETACTIVEWINDOWTRACKING","features":[365]},{"name":"SPI_SETACTIVEWNDTRKTIMEOUT","features":[365]},{"name":"SPI_SETACTIVEWNDTRKZORDER","features":[365]},{"name":"SPI_SETANIMATION","features":[365]},{"name":"SPI_SETAUDIODESCRIPTION","features":[365]},{"name":"SPI_SETBEEP","features":[365]},{"name":"SPI_SETBLOCKSENDINPUTRESETS","features":[365]},{"name":"SPI_SETBORDER","features":[365]},{"name":"SPI_SETCARETBROWSING","features":[365]},{"name":"SPI_SETCARETTIMEOUT","features":[365]},{"name":"SPI_SETCARETWIDTH","features":[365]},{"name":"SPI_SETCLEARTYPE","features":[365]},{"name":"SPI_SETCLIENTAREAANIMATION","features":[365]},{"name":"SPI_SETCOMBOBOXANIMATION","features":[365]},{"name":"SPI_SETCONTACTVISUALIZATION","features":[365]},{"name":"SPI_SETCURSORS","features":[365]},{"name":"SPI_SETCURSORSHADOW","features":[365]},{"name":"SPI_SETDEFAULTINPUTLANG","features":[365]},{"name":"SPI_SETDESKPATTERN","features":[365]},{"name":"SPI_SETDESKWALLPAPER","features":[365]},{"name":"SPI_SETDISABLEOVERLAPPEDCONTENT","features":[365]},{"name":"SPI_SETDOCKMOVING","features":[365]},{"name":"SPI_SETDOUBLECLICKTIME","features":[365]},{"name":"SPI_SETDOUBLECLKHEIGHT","features":[365]},{"name":"SPI_SETDOUBLECLKWIDTH","features":[365]},{"name":"SPI_SETDRAGFROMMAXIMIZE","features":[365]},{"name":"SPI_SETDRAGFULLWINDOWS","features":[365]},{"name":"SPI_SETDRAGHEIGHT","features":[365]},{"name":"SPI_SETDRAGWIDTH","features":[365]},{"name":"SPI_SETDROPSHADOW","features":[365]},{"name":"SPI_SETFASTTASKSWITCH","features":[365]},{"name":"SPI_SETFILTERKEYS","features":[365]},{"name":"SPI_SETFLATMENU","features":[365]},{"name":"SPI_SETFOCUSBORDERHEIGHT","features":[365]},{"name":"SPI_SETFOCUSBORDERWIDTH","features":[365]},{"name":"SPI_SETFONTSMOOTHING","features":[365]},{"name":"SPI_SETFONTSMOOTHINGCONTRAST","features":[365]},{"name":"SPI_SETFONTSMOOTHINGORIENTATION","features":[365]},{"name":"SPI_SETFONTSMOOTHINGTYPE","features":[365]},{"name":"SPI_SETFOREGROUNDFLASHCOUNT","features":[365]},{"name":"SPI_SETFOREGROUNDLOCKTIMEOUT","features":[365]},{"name":"SPI_SETGESTUREVISUALIZATION","features":[365]},{"name":"SPI_SETGRADIENTCAPTIONS","features":[365]},{"name":"SPI_SETGRIDGRANULARITY","features":[365]},{"name":"SPI_SETHANDEDNESS","features":[365]},{"name":"SPI_SETHANDHELD","features":[365]},{"name":"SPI_SETHIGHCONTRAST","features":[365]},{"name":"SPI_SETHOTTRACKING","features":[365]},{"name":"SPI_SETHUNGAPPTIMEOUT","features":[365]},{"name":"SPI_SETICONMETRICS","features":[365]},{"name":"SPI_SETICONS","features":[365]},{"name":"SPI_SETICONTITLELOGFONT","features":[365]},{"name":"SPI_SETICONTITLEWRAP","features":[365]},{"name":"SPI_SETKEYBOARDCUES","features":[365]},{"name":"SPI_SETKEYBOARDDELAY","features":[365]},{"name":"SPI_SETKEYBOARDPREF","features":[365]},{"name":"SPI_SETKEYBOARDSPEED","features":[365]},{"name":"SPI_SETLANGTOGGLE","features":[365]},{"name":"SPI_SETLISTBOXSMOOTHSCROLLING","features":[365]},{"name":"SPI_SETLOGICALDPIOVERRIDE","features":[365]},{"name":"SPI_SETLOWPOWERACTIVE","features":[365]},{"name":"SPI_SETLOWPOWERTIMEOUT","features":[365]},{"name":"SPI_SETMENUANIMATION","features":[365]},{"name":"SPI_SETMENUDROPALIGNMENT","features":[365]},{"name":"SPI_SETMENUFADE","features":[365]},{"name":"SPI_SETMENURECT","features":[365]},{"name":"SPI_SETMENUSHOWDELAY","features":[365]},{"name":"SPI_SETMENUUNDERLINES","features":[365]},{"name":"SPI_SETMESSAGEDURATION","features":[365]},{"name":"SPI_SETMINIMIZEDMETRICS","features":[365]},{"name":"SPI_SETMINIMUMHITRADIUS","features":[365]},{"name":"SPI_SETMOUSE","features":[365]},{"name":"SPI_SETMOUSEBUTTONSWAP","features":[365]},{"name":"SPI_SETMOUSECLICKLOCK","features":[365]},{"name":"SPI_SETMOUSECLICKLOCKTIME","features":[365]},{"name":"SPI_SETMOUSEDOCKTHRESHOLD","features":[365]},{"name":"SPI_SETMOUSEDRAGOUTTHRESHOLD","features":[365]},{"name":"SPI_SETMOUSEHOVERHEIGHT","features":[365]},{"name":"SPI_SETMOUSEHOVERTIME","features":[365]},{"name":"SPI_SETMOUSEHOVERWIDTH","features":[365]},{"name":"SPI_SETMOUSEKEYS","features":[365]},{"name":"SPI_SETMOUSESIDEMOVETHRESHOLD","features":[365]},{"name":"SPI_SETMOUSESONAR","features":[365]},{"name":"SPI_SETMOUSESPEED","features":[365]},{"name":"SPI_SETMOUSETRAILS","features":[365]},{"name":"SPI_SETMOUSEVANISH","features":[365]},{"name":"SPI_SETMOUSEWHEELROUTING","features":[365]},{"name":"SPI_SETNONCLIENTMETRICS","features":[365]},{"name":"SPI_SETPENARBITRATIONTYPE","features":[365]},{"name":"SPI_SETPENDOCKTHRESHOLD","features":[365]},{"name":"SPI_SETPENDRAGOUTTHRESHOLD","features":[365]},{"name":"SPI_SETPENSIDEMOVETHRESHOLD","features":[365]},{"name":"SPI_SETPENVISUALIZATION","features":[365]},{"name":"SPI_SETPENWINDOWS","features":[365]},{"name":"SPI_SETPOWEROFFACTIVE","features":[365]},{"name":"SPI_SETPOWEROFFTIMEOUT","features":[365]},{"name":"SPI_SETSCREENREADER","features":[365]},{"name":"SPI_SETSCREENSAVEACTIVE","features":[365]},{"name":"SPI_SETSCREENSAVERRUNNING","features":[365]},{"name":"SPI_SETSCREENSAVESECURE","features":[365]},{"name":"SPI_SETSCREENSAVETIMEOUT","features":[365]},{"name":"SPI_SETSELECTIONFADE","features":[365]},{"name":"SPI_SETSERIALKEYS","features":[365]},{"name":"SPI_SETSHOWIMEUI","features":[365]},{"name":"SPI_SETSHOWSOUNDS","features":[365]},{"name":"SPI_SETSNAPSIZING","features":[365]},{"name":"SPI_SETSNAPTODEFBUTTON","features":[365]},{"name":"SPI_SETSOUNDSENTRY","features":[365]},{"name":"SPI_SETSPEECHRECOGNITION","features":[365]},{"name":"SPI_SETSTICKYKEYS","features":[365]},{"name":"SPI_SETSYSTEMLANGUAGEBAR","features":[365]},{"name":"SPI_SETTHREADLOCALINPUTSETTINGS","features":[365]},{"name":"SPI_SETTOGGLEKEYS","features":[365]},{"name":"SPI_SETTOOLTIPANIMATION","features":[365]},{"name":"SPI_SETTOOLTIPFADE","features":[365]},{"name":"SPI_SETTOUCHPREDICTIONPARAMETERS","features":[365]},{"name":"SPI_SETUIEFFECTS","features":[365]},{"name":"SPI_SETWAITTOKILLSERVICETIMEOUT","features":[365]},{"name":"SPI_SETWAITTOKILLTIMEOUT","features":[365]},{"name":"SPI_SETWHEELSCROLLCHARS","features":[365]},{"name":"SPI_SETWHEELSCROLLLINES","features":[365]},{"name":"SPI_SETWINARRANGING","features":[365]},{"name":"SPI_SETWORKAREA","features":[365]},{"name":"STATE_SYSTEM_ALERT_HIGH","features":[365]},{"name":"STATE_SYSTEM_ALERT_LOW","features":[365]},{"name":"STATE_SYSTEM_ALERT_MEDIUM","features":[365]},{"name":"STATE_SYSTEM_ANIMATED","features":[365]},{"name":"STATE_SYSTEM_BUSY","features":[365]},{"name":"STATE_SYSTEM_CHECKED","features":[365]},{"name":"STATE_SYSTEM_COLLAPSED","features":[365]},{"name":"STATE_SYSTEM_DEFAULT","features":[365]},{"name":"STATE_SYSTEM_EXPANDED","features":[365]},{"name":"STATE_SYSTEM_EXTSELECTABLE","features":[365]},{"name":"STATE_SYSTEM_FLOATING","features":[365]},{"name":"STATE_SYSTEM_FOCUSED","features":[365]},{"name":"STATE_SYSTEM_HOTTRACKED","features":[365]},{"name":"STATE_SYSTEM_INDETERMINATE","features":[365]},{"name":"STATE_SYSTEM_LINKED","features":[365]},{"name":"STATE_SYSTEM_MARQUEED","features":[365]},{"name":"STATE_SYSTEM_MIXED","features":[365]},{"name":"STATE_SYSTEM_MOVEABLE","features":[365]},{"name":"STATE_SYSTEM_MULTISELECTABLE","features":[365]},{"name":"STATE_SYSTEM_PROTECTED","features":[365]},{"name":"STATE_SYSTEM_READONLY","features":[365]},{"name":"STATE_SYSTEM_SELECTABLE","features":[365]},{"name":"STATE_SYSTEM_SELECTED","features":[365]},{"name":"STATE_SYSTEM_SELFVOICING","features":[365]},{"name":"STATE_SYSTEM_SIZEABLE","features":[365]},{"name":"STATE_SYSTEM_TRAVERSED","features":[365]},{"name":"STATE_SYSTEM_VALID","features":[365]},{"name":"STM_GETICON","features":[365]},{"name":"STM_GETIMAGE","features":[365]},{"name":"STM_MSGMAX","features":[365]},{"name":"STM_SETICON","features":[365]},{"name":"STM_SETIMAGE","features":[365]},{"name":"STN_CLICKED","features":[365]},{"name":"STN_DBLCLK","features":[365]},{"name":"STN_DISABLE","features":[365]},{"name":"STN_ENABLE","features":[365]},{"name":"STRSAFE_E_END_OF_FILE","features":[365]},{"name":"STRSAFE_E_INSUFFICIENT_BUFFER","features":[365]},{"name":"STRSAFE_E_INVALID_PARAMETER","features":[365]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[365]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[365]},{"name":"STRSAFE_IGNORE_NULLS","features":[365]},{"name":"STRSAFE_MAX_CCH","features":[365]},{"name":"STRSAFE_MAX_LENGTH","features":[365]},{"name":"STRSAFE_NO_TRUNCATION","features":[365]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[365]},{"name":"STRSAFE_USE_SECURE_CRT","features":[365]},{"name":"STYLESTRUCT","features":[365]},{"name":"SWP_ASYNCWINDOWPOS","features":[365]},{"name":"SWP_DEFERERASE","features":[365]},{"name":"SWP_DRAWFRAME","features":[365]},{"name":"SWP_FRAMECHANGED","features":[365]},{"name":"SWP_HIDEWINDOW","features":[365]},{"name":"SWP_NOACTIVATE","features":[365]},{"name":"SWP_NOCOPYBITS","features":[365]},{"name":"SWP_NOMOVE","features":[365]},{"name":"SWP_NOOWNERZORDER","features":[365]},{"name":"SWP_NOREDRAW","features":[365]},{"name":"SWP_NOREPOSITION","features":[365]},{"name":"SWP_NOSENDCHANGING","features":[365]},{"name":"SWP_NOSIZE","features":[365]},{"name":"SWP_NOZORDER","features":[365]},{"name":"SWP_SHOWWINDOW","features":[365]},{"name":"SW_ERASE","features":[365]},{"name":"SW_FORCEMINIMIZE","features":[365]},{"name":"SW_HIDE","features":[365]},{"name":"SW_INVALIDATE","features":[365]},{"name":"SW_MAX","features":[365]},{"name":"SW_MAXIMIZE","features":[365]},{"name":"SW_MINIMIZE","features":[365]},{"name":"SW_NORMAL","features":[365]},{"name":"SW_OTHERUNZOOM","features":[365]},{"name":"SW_OTHERZOOM","features":[365]},{"name":"SW_PARENTCLOSING","features":[365]},{"name":"SW_PARENTOPENING","features":[365]},{"name":"SW_RESTORE","features":[365]},{"name":"SW_SCROLLCHILDREN","features":[365]},{"name":"SW_SHOW","features":[365]},{"name":"SW_SHOWDEFAULT","features":[365]},{"name":"SW_SHOWMAXIMIZED","features":[365]},{"name":"SW_SHOWMINIMIZED","features":[365]},{"name":"SW_SHOWMINNOACTIVE","features":[365]},{"name":"SW_SHOWNA","features":[365]},{"name":"SW_SHOWNOACTIVATE","features":[365]},{"name":"SW_SHOWNORMAL","features":[365]},{"name":"SW_SMOOTHSCROLL","features":[365]},{"name":"SYSTEM_CURSOR_ID","features":[365]},{"name":"SYSTEM_METRICS_INDEX","features":[365]},{"name":"SYSTEM_PARAMETERS_INFO_ACTION","features":[365]},{"name":"SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS","features":[365]},{"name":"ScrollDC","features":[303,314,365]},{"name":"ScrollWindow","features":[303,365]},{"name":"ScrollWindowEx","features":[303,314,365]},{"name":"SendDlgItemMessageA","features":[303,365]},{"name":"SendDlgItemMessageW","features":[303,365]},{"name":"SendMessageA","features":[303,365]},{"name":"SendMessageCallbackA","features":[303,365]},{"name":"SendMessageCallbackW","features":[303,365]},{"name":"SendMessageTimeoutA","features":[303,365]},{"name":"SendMessageTimeoutW","features":[303,365]},{"name":"SendMessageW","features":[303,365]},{"name":"SendNotifyMessageA","features":[303,365]},{"name":"SendNotifyMessageW","features":[303,365]},{"name":"SetAdditionalForegroundBoostProcesses","features":[303,365]},{"name":"SetCaretBlinkTime","features":[303,365]},{"name":"SetCaretPos","features":[303,365]},{"name":"SetClassLongA","features":[303,365]},{"name":"SetClassLongPtrA","features":[303,365]},{"name":"SetClassLongPtrW","features":[303,365]},{"name":"SetClassLongW","features":[303,365]},{"name":"SetClassWord","features":[303,365]},{"name":"SetCoalescableTimer","features":[303,365]},{"name":"SetCursor","features":[365]},{"name":"SetCursorPos","features":[303,365]},{"name":"SetDebugErrorLevel","features":[365]},{"name":"SetDlgItemInt","features":[303,365]},{"name":"SetDlgItemTextA","features":[303,365]},{"name":"SetDlgItemTextW","features":[303,365]},{"name":"SetForegroundWindow","features":[303,365]},{"name":"SetLayeredWindowAttributes","features":[303,365]},{"name":"SetMenu","features":[303,365]},{"name":"SetMenuDefaultItem","features":[303,365]},{"name":"SetMenuInfo","features":[303,314,365]},{"name":"SetMenuItemBitmaps","features":[303,314,365]},{"name":"SetMenuItemInfoA","features":[303,314,365]},{"name":"SetMenuItemInfoW","features":[303,314,365]},{"name":"SetMessageExtraInfo","features":[303,365]},{"name":"SetMessageQueue","features":[303,365]},{"name":"SetParent","features":[303,365]},{"name":"SetPhysicalCursorPos","features":[303,365]},{"name":"SetProcessDPIAware","features":[303,365]},{"name":"SetProcessDefaultLayout","features":[303,365]},{"name":"SetPropA","features":[303,365]},{"name":"SetPropW","features":[303,365]},{"name":"SetSystemCursor","features":[303,365]},{"name":"SetTimer","features":[303,365]},{"name":"SetWindowDisplayAffinity","features":[303,365]},{"name":"SetWindowLongA","features":[303,365]},{"name":"SetWindowLongPtrA","features":[303,365]},{"name":"SetWindowLongPtrW","features":[303,365]},{"name":"SetWindowLongW","features":[303,365]},{"name":"SetWindowPlacement","features":[303,365]},{"name":"SetWindowPos","features":[303,365]},{"name":"SetWindowTextA","features":[303,365]},{"name":"SetWindowTextW","features":[303,365]},{"name":"SetWindowWord","features":[303,365]},{"name":"SetWindowsHookA","features":[303,365]},{"name":"SetWindowsHookExA","features":[303,365]},{"name":"SetWindowsHookExW","features":[303,365]},{"name":"SetWindowsHookW","features":[303,365]},{"name":"ShowCaret","features":[303,365]},{"name":"ShowCursor","features":[303,365]},{"name":"ShowOwnedPopups","features":[303,365]},{"name":"ShowWindow","features":[303,365]},{"name":"ShowWindowAsync","features":[303,365]},{"name":"SoundSentry","features":[303,365]},{"name":"SwitchToThisWindow","features":[303,365]},{"name":"SystemParametersInfoA","features":[303,365]},{"name":"SystemParametersInfoW","features":[303,365]},{"name":"TDF_REGISTER","features":[365]},{"name":"TDF_UNREGISTER","features":[365]},{"name":"TILE_WINDOWS_HOW","features":[365]},{"name":"TIMERPROC","features":[303,365]},{"name":"TIMERV_COALESCING_MAX","features":[365]},{"name":"TIMERV_COALESCING_MIN","features":[365]},{"name":"TIMERV_DEFAULT_COALESCING","features":[365]},{"name":"TIMERV_NO_COALESCING","features":[365]},{"name":"TITLEBARINFO","features":[303,365]},{"name":"TITLEBARINFOEX","features":[303,365]},{"name":"TKF_AVAILABLE","features":[365]},{"name":"TKF_CONFIRMHOTKEY","features":[365]},{"name":"TKF_HOTKEYACTIVE","features":[365]},{"name":"TKF_HOTKEYSOUND","features":[365]},{"name":"TKF_INDICATOR","features":[365]},{"name":"TKF_TOGGLEKEYSON","features":[365]},{"name":"TOOLTIP_DISMISS_FLAGS","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_LATENCY","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_DELTA","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_EXPO_SMOOTH_ALPHA","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_LEARNING_RATE","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MAX","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MIN","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_SAMPLETIME","features":[365]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_USE_HW_TIMESTAMP","features":[365]},{"name":"TOUCH_FLAG_NONE","features":[365]},{"name":"TOUCH_HIT_TESTING_CLIENT","features":[365]},{"name":"TOUCH_HIT_TESTING_DEFAULT","features":[365]},{"name":"TOUCH_HIT_TESTING_NONE","features":[365]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_CLOSEST","features":[365]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_FARTHEST","features":[365]},{"name":"TOUCH_MASK_CONTACTAREA","features":[365]},{"name":"TOUCH_MASK_NONE","features":[365]},{"name":"TOUCH_MASK_ORIENTATION","features":[365]},{"name":"TOUCH_MASK_PRESSURE","features":[365]},{"name":"TPMPARAMS","features":[303,365]},{"name":"TPM_BOTTOMALIGN","features":[365]},{"name":"TPM_CENTERALIGN","features":[365]},{"name":"TPM_HORIZONTAL","features":[365]},{"name":"TPM_HORNEGANIMATION","features":[365]},{"name":"TPM_HORPOSANIMATION","features":[365]},{"name":"TPM_LAYOUTRTL","features":[365]},{"name":"TPM_LEFTALIGN","features":[365]},{"name":"TPM_LEFTBUTTON","features":[365]},{"name":"TPM_NOANIMATION","features":[365]},{"name":"TPM_NONOTIFY","features":[365]},{"name":"TPM_RECURSE","features":[365]},{"name":"TPM_RETURNCMD","features":[365]},{"name":"TPM_RIGHTALIGN","features":[365]},{"name":"TPM_RIGHTBUTTON","features":[365]},{"name":"TPM_TOPALIGN","features":[365]},{"name":"TPM_VCENTERALIGN","features":[365]},{"name":"TPM_VERNEGANIMATION","features":[365]},{"name":"TPM_VERPOSANIMATION","features":[365]},{"name":"TPM_VERTICAL","features":[365]},{"name":"TPM_WORKAREA","features":[365]},{"name":"TRACK_POPUP_MENU_FLAGS","features":[365]},{"name":"TileWindows","features":[303,365]},{"name":"TrackPopupMenu","features":[303,365]},{"name":"TrackPopupMenuEx","features":[303,365]},{"name":"TranslateAcceleratorA","features":[303,365]},{"name":"TranslateAcceleratorW","features":[303,365]},{"name":"TranslateMDISysAccel","features":[303,365]},{"name":"TranslateMessage","features":[303,365]},{"name":"UISF_ACTIVE","features":[365]},{"name":"UISF_HIDEACCEL","features":[365]},{"name":"UISF_HIDEFOCUS","features":[365]},{"name":"UIS_CLEAR","features":[365]},{"name":"UIS_INITIALIZE","features":[365]},{"name":"UIS_SET","features":[365]},{"name":"ULW_ALPHA","features":[365]},{"name":"ULW_COLORKEY","features":[365]},{"name":"ULW_EX_NORESIZE","features":[365]},{"name":"ULW_OPAQUE","features":[365]},{"name":"UNICODE_NOCHAR","features":[365]},{"name":"UOI_TIMERPROC_EXCEPTION_SUPPRESSION","features":[365]},{"name":"UPDATELAYEREDWINDOWINFO","features":[303,314,365]},{"name":"UPDATE_LAYERED_WINDOW_FLAGS","features":[365]},{"name":"USER_DEFAULT_SCREEN_DPI","features":[365]},{"name":"USER_TIMER_MAXIMUM","features":[365]},{"name":"USER_TIMER_MINIMUM","features":[365]},{"name":"UnhookWindowsHook","features":[303,365]},{"name":"UnhookWindowsHookEx","features":[303,365]},{"name":"UnregisterClassA","features":[303,365]},{"name":"UnregisterClassW","features":[303,365]},{"name":"UnregisterDeviceNotification","features":[303,365]},{"name":"UpdateLayeredWindow","features":[303,314,365]},{"name":"UpdateLayeredWindowIndirect","features":[303,314,365]},{"name":"VolLockBroadcast","features":[365]},{"name":"WA_ACTIVE","features":[365]},{"name":"WA_CLICKACTIVE","features":[365]},{"name":"WA_INACTIVE","features":[365]},{"name":"WDA_EXCLUDEFROMCAPTURE","features":[365]},{"name":"WDA_MONITOR","features":[365]},{"name":"WDA_NONE","features":[365]},{"name":"WHEEL_DELTA","features":[365]},{"name":"WH_CALLWNDPROC","features":[365]},{"name":"WH_CALLWNDPROCRET","features":[365]},{"name":"WH_CBT","features":[365]},{"name":"WH_DEBUG","features":[365]},{"name":"WH_FOREGROUNDIDLE","features":[365]},{"name":"WH_GETMESSAGE","features":[365]},{"name":"WH_HARDWARE","features":[365]},{"name":"WH_JOURNALPLAYBACK","features":[365]},{"name":"WH_JOURNALRECORD","features":[365]},{"name":"WH_KEYBOARD","features":[365]},{"name":"WH_KEYBOARD_LL","features":[365]},{"name":"WH_MAX","features":[365]},{"name":"WH_MAXHOOK","features":[365]},{"name":"WH_MIN","features":[365]},{"name":"WH_MINHOOK","features":[365]},{"name":"WH_MOUSE","features":[365]},{"name":"WH_MOUSE_LL","features":[365]},{"name":"WH_MSGFILTER","features":[365]},{"name":"WH_SHELL","features":[365]},{"name":"WH_SYSMSGFILTER","features":[365]},{"name":"WINDOWINFO","features":[303,365]},{"name":"WINDOWPLACEMENT","features":[303,365]},{"name":"WINDOWPLACEMENT_FLAGS","features":[365]},{"name":"WINDOWPOS","features":[303,365]},{"name":"WINDOWS_HOOK_ID","features":[365]},{"name":"WINDOW_DISPLAY_AFFINITY","features":[365]},{"name":"WINDOW_EX_STYLE","features":[365]},{"name":"WINDOW_LONG_PTR_INDEX","features":[365]},{"name":"WINDOW_MESSAGE_FILTER_ACTION","features":[365]},{"name":"WINDOW_STYLE","features":[365]},{"name":"WINEVENT_INCONTEXT","features":[365]},{"name":"WINEVENT_OUTOFCONTEXT","features":[365]},{"name":"WINEVENT_SKIPOWNPROCESS","features":[365]},{"name":"WINEVENT_SKIPOWNTHREAD","features":[365]},{"name":"WINSTA_ACCESSCLIPBOARD","features":[365]},{"name":"WINSTA_ACCESSGLOBALATOMS","features":[365]},{"name":"WINSTA_CREATEDESKTOP","features":[365]},{"name":"WINSTA_ENUMDESKTOPS","features":[365]},{"name":"WINSTA_ENUMERATE","features":[365]},{"name":"WINSTA_EXITWINDOWS","features":[365]},{"name":"WINSTA_READATTRIBUTES","features":[365]},{"name":"WINSTA_READSCREEN","features":[365]},{"name":"WINSTA_WRITEATTRIBUTES","features":[365]},{"name":"WMSZ_BOTTOM","features":[365]},{"name":"WMSZ_BOTTOMLEFT","features":[365]},{"name":"WMSZ_BOTTOMRIGHT","features":[365]},{"name":"WMSZ_LEFT","features":[365]},{"name":"WMSZ_RIGHT","features":[365]},{"name":"WMSZ_TOP","features":[365]},{"name":"WMSZ_TOPLEFT","features":[365]},{"name":"WMSZ_TOPRIGHT","features":[365]},{"name":"WM_ACTIVATE","features":[365]},{"name":"WM_ACTIVATEAPP","features":[365]},{"name":"WM_AFXFIRST","features":[365]},{"name":"WM_AFXLAST","features":[365]},{"name":"WM_APP","features":[365]},{"name":"WM_APPCOMMAND","features":[365]},{"name":"WM_ASKCBFORMATNAME","features":[365]},{"name":"WM_CANCELJOURNAL","features":[365]},{"name":"WM_CANCELMODE","features":[365]},{"name":"WM_CAPTURECHANGED","features":[365]},{"name":"WM_CHANGECBCHAIN","features":[365]},{"name":"WM_CHANGEUISTATE","features":[365]},{"name":"WM_CHAR","features":[365]},{"name":"WM_CHARTOITEM","features":[365]},{"name":"WM_CHILDACTIVATE","features":[365]},{"name":"WM_CLEAR","features":[365]},{"name":"WM_CLIPBOARDUPDATE","features":[365]},{"name":"WM_CLOSE","features":[365]},{"name":"WM_COMMAND","features":[365]},{"name":"WM_COMMNOTIFY","features":[365]},{"name":"WM_COMPACTING","features":[365]},{"name":"WM_COMPAREITEM","features":[365]},{"name":"WM_CONTEXTMENU","features":[365]},{"name":"WM_COPY","features":[365]},{"name":"WM_COPYDATA","features":[365]},{"name":"WM_CREATE","features":[365]},{"name":"WM_CTLCOLORBTN","features":[365]},{"name":"WM_CTLCOLORDLG","features":[365]},{"name":"WM_CTLCOLOREDIT","features":[365]},{"name":"WM_CTLCOLORLISTBOX","features":[365]},{"name":"WM_CTLCOLORMSGBOX","features":[365]},{"name":"WM_CTLCOLORSCROLLBAR","features":[365]},{"name":"WM_CTLCOLORSTATIC","features":[365]},{"name":"WM_CUT","features":[365]},{"name":"WM_DEADCHAR","features":[365]},{"name":"WM_DELETEITEM","features":[365]},{"name":"WM_DESTROY","features":[365]},{"name":"WM_DESTROYCLIPBOARD","features":[365]},{"name":"WM_DEVICECHANGE","features":[365]},{"name":"WM_DEVMODECHANGE","features":[365]},{"name":"WM_DISPLAYCHANGE","features":[365]},{"name":"WM_DPICHANGED","features":[365]},{"name":"WM_DPICHANGED_AFTERPARENT","features":[365]},{"name":"WM_DPICHANGED_BEFOREPARENT","features":[365]},{"name":"WM_DRAWCLIPBOARD","features":[365]},{"name":"WM_DRAWITEM","features":[365]},{"name":"WM_DROPFILES","features":[365]},{"name":"WM_DWMCOLORIZATIONCOLORCHANGED","features":[365]},{"name":"WM_DWMCOMPOSITIONCHANGED","features":[365]},{"name":"WM_DWMNCRENDERINGCHANGED","features":[365]},{"name":"WM_DWMSENDICONICLIVEPREVIEWBITMAP","features":[365]},{"name":"WM_DWMSENDICONICTHUMBNAIL","features":[365]},{"name":"WM_DWMWINDOWMAXIMIZEDCHANGE","features":[365]},{"name":"WM_ENABLE","features":[365]},{"name":"WM_ENDSESSION","features":[365]},{"name":"WM_ENTERIDLE","features":[365]},{"name":"WM_ENTERMENULOOP","features":[365]},{"name":"WM_ENTERSIZEMOVE","features":[365]},{"name":"WM_ERASEBKGND","features":[365]},{"name":"WM_EXITMENULOOP","features":[365]},{"name":"WM_EXITSIZEMOVE","features":[365]},{"name":"WM_FONTCHANGE","features":[365]},{"name":"WM_GESTURE","features":[365]},{"name":"WM_GESTURENOTIFY","features":[365]},{"name":"WM_GETDLGCODE","features":[365]},{"name":"WM_GETDPISCALEDSIZE","features":[365]},{"name":"WM_GETFONT","features":[365]},{"name":"WM_GETHOTKEY","features":[365]},{"name":"WM_GETICON","features":[365]},{"name":"WM_GETMINMAXINFO","features":[365]},{"name":"WM_GETOBJECT","features":[365]},{"name":"WM_GETTEXT","features":[365]},{"name":"WM_GETTEXTLENGTH","features":[365]},{"name":"WM_GETTITLEBARINFOEX","features":[365]},{"name":"WM_HANDHELDFIRST","features":[365]},{"name":"WM_HANDHELDLAST","features":[365]},{"name":"WM_HELP","features":[365]},{"name":"WM_HOTKEY","features":[365]},{"name":"WM_HSCROLL","features":[365]},{"name":"WM_HSCROLLCLIPBOARD","features":[365]},{"name":"WM_ICONERASEBKGND","features":[365]},{"name":"WM_IME_CHAR","features":[365]},{"name":"WM_IME_COMPOSITION","features":[365]},{"name":"WM_IME_COMPOSITIONFULL","features":[365]},{"name":"WM_IME_CONTROL","features":[365]},{"name":"WM_IME_ENDCOMPOSITION","features":[365]},{"name":"WM_IME_KEYDOWN","features":[365]},{"name":"WM_IME_KEYLAST","features":[365]},{"name":"WM_IME_KEYUP","features":[365]},{"name":"WM_IME_NOTIFY","features":[365]},{"name":"WM_IME_REQUEST","features":[365]},{"name":"WM_IME_SELECT","features":[365]},{"name":"WM_IME_SETCONTEXT","features":[365]},{"name":"WM_IME_STARTCOMPOSITION","features":[365]},{"name":"WM_INITDIALOG","features":[365]},{"name":"WM_INITMENU","features":[365]},{"name":"WM_INITMENUPOPUP","features":[365]},{"name":"WM_INPUT","features":[365]},{"name":"WM_INPUTLANGCHANGE","features":[365]},{"name":"WM_INPUTLANGCHANGEREQUEST","features":[365]},{"name":"WM_INPUT_DEVICE_CHANGE","features":[365]},{"name":"WM_KEYDOWN","features":[365]},{"name":"WM_KEYFIRST","features":[365]},{"name":"WM_KEYLAST","features":[365]},{"name":"WM_KEYUP","features":[365]},{"name":"WM_KILLFOCUS","features":[365]},{"name":"WM_LBUTTONDBLCLK","features":[365]},{"name":"WM_LBUTTONDOWN","features":[365]},{"name":"WM_LBUTTONUP","features":[365]},{"name":"WM_MBUTTONDBLCLK","features":[365]},{"name":"WM_MBUTTONDOWN","features":[365]},{"name":"WM_MBUTTONUP","features":[365]},{"name":"WM_MDIACTIVATE","features":[365]},{"name":"WM_MDICASCADE","features":[365]},{"name":"WM_MDICREATE","features":[365]},{"name":"WM_MDIDESTROY","features":[365]},{"name":"WM_MDIGETACTIVE","features":[365]},{"name":"WM_MDIICONARRANGE","features":[365]},{"name":"WM_MDIMAXIMIZE","features":[365]},{"name":"WM_MDINEXT","features":[365]},{"name":"WM_MDIREFRESHMENU","features":[365]},{"name":"WM_MDIRESTORE","features":[365]},{"name":"WM_MDISETMENU","features":[365]},{"name":"WM_MDITILE","features":[365]},{"name":"WM_MEASUREITEM","features":[365]},{"name":"WM_MENUCHAR","features":[365]},{"name":"WM_MENUCOMMAND","features":[365]},{"name":"WM_MENUDRAG","features":[365]},{"name":"WM_MENUGETOBJECT","features":[365]},{"name":"WM_MENURBUTTONUP","features":[365]},{"name":"WM_MENUSELECT","features":[365]},{"name":"WM_MOUSEACTIVATE","features":[365]},{"name":"WM_MOUSEFIRST","features":[365]},{"name":"WM_MOUSEHWHEEL","features":[365]},{"name":"WM_MOUSELAST","features":[365]},{"name":"WM_MOUSEMOVE","features":[365]},{"name":"WM_MOUSEWHEEL","features":[365]},{"name":"WM_MOVE","features":[365]},{"name":"WM_MOVING","features":[365]},{"name":"WM_NCACTIVATE","features":[365]},{"name":"WM_NCCALCSIZE","features":[365]},{"name":"WM_NCCREATE","features":[365]},{"name":"WM_NCDESTROY","features":[365]},{"name":"WM_NCHITTEST","features":[365]},{"name":"WM_NCLBUTTONDBLCLK","features":[365]},{"name":"WM_NCLBUTTONDOWN","features":[365]},{"name":"WM_NCLBUTTONUP","features":[365]},{"name":"WM_NCMBUTTONDBLCLK","features":[365]},{"name":"WM_NCMBUTTONDOWN","features":[365]},{"name":"WM_NCMBUTTONUP","features":[365]},{"name":"WM_NCMOUSEHOVER","features":[365]},{"name":"WM_NCMOUSELEAVE","features":[365]},{"name":"WM_NCMOUSEMOVE","features":[365]},{"name":"WM_NCPAINT","features":[365]},{"name":"WM_NCPOINTERDOWN","features":[365]},{"name":"WM_NCPOINTERUP","features":[365]},{"name":"WM_NCPOINTERUPDATE","features":[365]},{"name":"WM_NCRBUTTONDBLCLK","features":[365]},{"name":"WM_NCRBUTTONDOWN","features":[365]},{"name":"WM_NCRBUTTONUP","features":[365]},{"name":"WM_NCXBUTTONDBLCLK","features":[365]},{"name":"WM_NCXBUTTONDOWN","features":[365]},{"name":"WM_NCXBUTTONUP","features":[365]},{"name":"WM_NEXTDLGCTL","features":[365]},{"name":"WM_NEXTMENU","features":[365]},{"name":"WM_NOTIFY","features":[365]},{"name":"WM_NOTIFYFORMAT","features":[365]},{"name":"WM_NULL","features":[365]},{"name":"WM_PAINT","features":[365]},{"name":"WM_PAINTCLIPBOARD","features":[365]},{"name":"WM_PAINTICON","features":[365]},{"name":"WM_PALETTECHANGED","features":[365]},{"name":"WM_PALETTEISCHANGING","features":[365]},{"name":"WM_PARENTNOTIFY","features":[365]},{"name":"WM_PASTE","features":[365]},{"name":"WM_PENWINFIRST","features":[365]},{"name":"WM_PENWINLAST","features":[365]},{"name":"WM_POINTERACTIVATE","features":[365]},{"name":"WM_POINTERCAPTURECHANGED","features":[365]},{"name":"WM_POINTERDEVICECHANGE","features":[365]},{"name":"WM_POINTERDEVICEINRANGE","features":[365]},{"name":"WM_POINTERDEVICEOUTOFRANGE","features":[365]},{"name":"WM_POINTERDOWN","features":[365]},{"name":"WM_POINTERENTER","features":[365]},{"name":"WM_POINTERHWHEEL","features":[365]},{"name":"WM_POINTERLEAVE","features":[365]},{"name":"WM_POINTERROUTEDAWAY","features":[365]},{"name":"WM_POINTERROUTEDRELEASED","features":[365]},{"name":"WM_POINTERROUTEDTO","features":[365]},{"name":"WM_POINTERUP","features":[365]},{"name":"WM_POINTERUPDATE","features":[365]},{"name":"WM_POINTERWHEEL","features":[365]},{"name":"WM_POWER","features":[365]},{"name":"WM_POWERBROADCAST","features":[365]},{"name":"WM_PRINT","features":[365]},{"name":"WM_PRINTCLIENT","features":[365]},{"name":"WM_QUERYDRAGICON","features":[365]},{"name":"WM_QUERYENDSESSION","features":[365]},{"name":"WM_QUERYNEWPALETTE","features":[365]},{"name":"WM_QUERYOPEN","features":[365]},{"name":"WM_QUERYUISTATE","features":[365]},{"name":"WM_QUEUESYNC","features":[365]},{"name":"WM_QUIT","features":[365]},{"name":"WM_RBUTTONDBLCLK","features":[365]},{"name":"WM_RBUTTONDOWN","features":[365]},{"name":"WM_RBUTTONUP","features":[365]},{"name":"WM_RENDERALLFORMATS","features":[365]},{"name":"WM_RENDERFORMAT","features":[365]},{"name":"WM_SETCURSOR","features":[365]},{"name":"WM_SETFOCUS","features":[365]},{"name":"WM_SETFONT","features":[365]},{"name":"WM_SETHOTKEY","features":[365]},{"name":"WM_SETICON","features":[365]},{"name":"WM_SETREDRAW","features":[365]},{"name":"WM_SETTEXT","features":[365]},{"name":"WM_SETTINGCHANGE","features":[365]},{"name":"WM_SHOWWINDOW","features":[365]},{"name":"WM_SIZE","features":[365]},{"name":"WM_SIZECLIPBOARD","features":[365]},{"name":"WM_SIZING","features":[365]},{"name":"WM_SPOOLERSTATUS","features":[365]},{"name":"WM_STYLECHANGED","features":[365]},{"name":"WM_STYLECHANGING","features":[365]},{"name":"WM_SYNCPAINT","features":[365]},{"name":"WM_SYSCHAR","features":[365]},{"name":"WM_SYSCOLORCHANGE","features":[365]},{"name":"WM_SYSCOMMAND","features":[365]},{"name":"WM_SYSDEADCHAR","features":[365]},{"name":"WM_SYSKEYDOWN","features":[365]},{"name":"WM_SYSKEYUP","features":[365]},{"name":"WM_TABLET_FIRST","features":[365]},{"name":"WM_TABLET_LAST","features":[365]},{"name":"WM_TCARD","features":[365]},{"name":"WM_THEMECHANGED","features":[365]},{"name":"WM_TIMECHANGE","features":[365]},{"name":"WM_TIMER","features":[365]},{"name":"WM_TOOLTIPDISMISS","features":[365]},{"name":"WM_TOUCH","features":[365]},{"name":"WM_TOUCHHITTESTING","features":[365]},{"name":"WM_UNDO","features":[365]},{"name":"WM_UNICHAR","features":[365]},{"name":"WM_UNINITMENUPOPUP","features":[365]},{"name":"WM_UPDATEUISTATE","features":[365]},{"name":"WM_USER","features":[365]},{"name":"WM_USERCHANGED","features":[365]},{"name":"WM_VKEYTOITEM","features":[365]},{"name":"WM_VSCROLL","features":[365]},{"name":"WM_VSCROLLCLIPBOARD","features":[365]},{"name":"WM_WINDOWPOSCHANGED","features":[365]},{"name":"WM_WINDOWPOSCHANGING","features":[365]},{"name":"WM_WININICHANGE","features":[365]},{"name":"WM_WTSSESSION_CHANGE","features":[365]},{"name":"WM_XBUTTONDBLCLK","features":[365]},{"name":"WM_XBUTTONDOWN","features":[365]},{"name":"WM_XBUTTONUP","features":[365]},{"name":"WNDCLASSA","features":[303,314,365]},{"name":"WNDCLASSEXA","features":[303,314,365]},{"name":"WNDCLASSEXW","features":[303,314,365]},{"name":"WNDCLASSW","features":[303,314,365]},{"name":"WNDCLASS_STYLES","features":[365]},{"name":"WNDENUMPROC","features":[303,365]},{"name":"WNDPROC","features":[303,365]},{"name":"WPF_ASYNCWINDOWPLACEMENT","features":[365]},{"name":"WPF_RESTORETOMAXIMIZED","features":[365]},{"name":"WPF_SETMINPOSITION","features":[365]},{"name":"WSF_VISIBLE","features":[365]},{"name":"WS_ACTIVECAPTION","features":[365]},{"name":"WS_BORDER","features":[365]},{"name":"WS_CAPTION","features":[365]},{"name":"WS_CHILD","features":[365]},{"name":"WS_CHILDWINDOW","features":[365]},{"name":"WS_CLIPCHILDREN","features":[365]},{"name":"WS_CLIPSIBLINGS","features":[365]},{"name":"WS_DISABLED","features":[365]},{"name":"WS_DLGFRAME","features":[365]},{"name":"WS_EX_ACCEPTFILES","features":[365]},{"name":"WS_EX_APPWINDOW","features":[365]},{"name":"WS_EX_CLIENTEDGE","features":[365]},{"name":"WS_EX_COMPOSITED","features":[365]},{"name":"WS_EX_CONTEXTHELP","features":[365]},{"name":"WS_EX_CONTROLPARENT","features":[365]},{"name":"WS_EX_DLGMODALFRAME","features":[365]},{"name":"WS_EX_LAYERED","features":[365]},{"name":"WS_EX_LAYOUTRTL","features":[365]},{"name":"WS_EX_LEFT","features":[365]},{"name":"WS_EX_LEFTSCROLLBAR","features":[365]},{"name":"WS_EX_LTRREADING","features":[365]},{"name":"WS_EX_MDICHILD","features":[365]},{"name":"WS_EX_NOACTIVATE","features":[365]},{"name":"WS_EX_NOINHERITLAYOUT","features":[365]},{"name":"WS_EX_NOPARENTNOTIFY","features":[365]},{"name":"WS_EX_NOREDIRECTIONBITMAP","features":[365]},{"name":"WS_EX_OVERLAPPEDWINDOW","features":[365]},{"name":"WS_EX_PALETTEWINDOW","features":[365]},{"name":"WS_EX_RIGHT","features":[365]},{"name":"WS_EX_RIGHTSCROLLBAR","features":[365]},{"name":"WS_EX_RTLREADING","features":[365]},{"name":"WS_EX_STATICEDGE","features":[365]},{"name":"WS_EX_TOOLWINDOW","features":[365]},{"name":"WS_EX_TOPMOST","features":[365]},{"name":"WS_EX_TRANSPARENT","features":[365]},{"name":"WS_EX_WINDOWEDGE","features":[365]},{"name":"WS_GROUP","features":[365]},{"name":"WS_HSCROLL","features":[365]},{"name":"WS_ICONIC","features":[365]},{"name":"WS_MAXIMIZE","features":[365]},{"name":"WS_MAXIMIZEBOX","features":[365]},{"name":"WS_MINIMIZE","features":[365]},{"name":"WS_MINIMIZEBOX","features":[365]},{"name":"WS_OVERLAPPED","features":[365]},{"name":"WS_OVERLAPPEDWINDOW","features":[365]},{"name":"WS_POPUP","features":[365]},{"name":"WS_POPUPWINDOW","features":[365]},{"name":"WS_SIZEBOX","features":[365]},{"name":"WS_SYSMENU","features":[365]},{"name":"WS_TABSTOP","features":[365]},{"name":"WS_THICKFRAME","features":[365]},{"name":"WS_TILED","features":[365]},{"name":"WS_TILEDWINDOW","features":[365]},{"name":"WS_VISIBLE","features":[365]},{"name":"WS_VSCROLL","features":[365]},{"name":"WTS_CONSOLE_CONNECT","features":[365]},{"name":"WTS_CONSOLE_DISCONNECT","features":[365]},{"name":"WTS_REMOTE_CONNECT","features":[365]},{"name":"WTS_REMOTE_DISCONNECT","features":[365]},{"name":"WTS_SESSION_CREATE","features":[365]},{"name":"WTS_SESSION_LOCK","features":[365]},{"name":"WTS_SESSION_LOGOFF","features":[365]},{"name":"WTS_SESSION_LOGON","features":[365]},{"name":"WTS_SESSION_REMOTE_CONTROL","features":[365]},{"name":"WTS_SESSION_TERMINATE","features":[365]},{"name":"WTS_SESSION_UNLOCK","features":[365]},{"name":"WVR_ALIGNBOTTOM","features":[365]},{"name":"WVR_ALIGNLEFT","features":[365]},{"name":"WVR_ALIGNRIGHT","features":[365]},{"name":"WVR_ALIGNTOP","features":[365]},{"name":"WVR_HREDRAW","features":[365]},{"name":"WVR_VALIDRECTS","features":[365]},{"name":"WVR_VREDRAW","features":[365]},{"name":"WaitMessage","features":[303,365]},{"name":"WindowFromPhysicalPoint","features":[303,365]},{"name":"WindowFromPoint","features":[303,365]},{"name":"XBUTTON1","features":[365]},{"name":"XBUTTON2","features":[365]},{"name":"_DEV_BROADCAST_HEADER","features":[365]},{"name":"_DEV_BROADCAST_USERDEFINED","features":[365]},{"name":"__WARNING_BANNED_API_USAGE","features":[365]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[365]},{"name":"__WARNING_DEREF_NULL_PTR","features":[365]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[365]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[365]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[365]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[365]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[365]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[365]},{"name":"__WARNING_POST_EXPECTED","features":[365]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[365]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[365]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[365]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[365]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[365]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[365]},{"name":"__WARNING_USING_UNINIT_VAR","features":[365]},{"name":"wsprintfA","features":[365]},{"name":"wsprintfW","features":[365]},{"name":"wvsprintfA","features":[365]},{"name":"wvsprintfW","features":[365]}],"673":[{"name":"CLSID_MILBitmapEffectBevel","features":[633]},{"name":"CLSID_MILBitmapEffectBlur","features":[633]},{"name":"CLSID_MILBitmapEffectDropShadow","features":[633]},{"name":"CLSID_MILBitmapEffectEmboss","features":[633]},{"name":"CLSID_MILBitmapEffectGroup","features":[633]},{"name":"CLSID_MILBitmapEffectOuterGlow","features":[633]},{"name":"IMILBitmapEffect","features":[633]},{"name":"IMILBitmapEffectConnections","features":[633]},{"name":"IMILBitmapEffectConnectionsInfo","features":[633]},{"name":"IMILBitmapEffectConnector","features":[633]},{"name":"IMILBitmapEffectConnectorInfo","features":[633]},{"name":"IMILBitmapEffectEvents","features":[633]},{"name":"IMILBitmapEffectFactory","features":[633]},{"name":"IMILBitmapEffectGroup","features":[633]},{"name":"IMILBitmapEffectGroupImpl","features":[633]},{"name":"IMILBitmapEffectImpl","features":[633]},{"name":"IMILBitmapEffectInputConnector","features":[633]},{"name":"IMILBitmapEffectInteriorInputConnector","features":[633]},{"name":"IMILBitmapEffectInteriorOutputConnector","features":[633]},{"name":"IMILBitmapEffectOutputConnector","features":[633]},{"name":"IMILBitmapEffectOutputConnectorImpl","features":[633]},{"name":"IMILBitmapEffectPrimitive","features":[633]},{"name":"IMILBitmapEffectPrimitiveImpl","features":[633]},{"name":"IMILBitmapEffectRenderContext","features":[633]},{"name":"IMILBitmapEffectRenderContextImpl","features":[633]},{"name":"IMILBitmapEffects","features":[633]},{"name":"MILBITMAPEFFECT_SDK_VERSION","features":[633]},{"name":"MILMatrixF","features":[633]},{"name":"MilPoint2D","features":[633]},{"name":"MilRectD","features":[633]}],"675":[{"name":"ADDRESSBAND","features":[634]},{"name":"ADDURL_ADDTOCACHE","features":[634]},{"name":"ADDURL_ADDTOHISTORYANDCACHE","features":[634]},{"name":"ADDURL_FIRST","features":[634]},{"name":"ADDURL_FLAG","features":[634]},{"name":"ADDURL_Max","features":[634]},{"name":"ActivityContentCount","features":[634]},{"name":"ActivityContentDocument","features":[634]},{"name":"ActivityContentLink","features":[634]},{"name":"ActivityContentNone","features":[634]},{"name":"ActivityContentSelection","features":[634]},{"name":"AnchorClick","features":[634]},{"name":"CATID_MSOfficeAntiVirus","features":[634]},{"name":"CDeviceRect","features":[634]},{"name":"CDownloadBehavior","features":[634]},{"name":"CHeaderFooter","features":[634]},{"name":"CLayoutRect","features":[634]},{"name":"COLOR_NO_TRANSPARENT","features":[634]},{"name":"CPersistDataPeer","features":[634]},{"name":"CPersistHistory","features":[634]},{"name":"CPersistShortcut","features":[634]},{"name":"CPersistSnapshot","features":[634]},{"name":"CPersistUserData","features":[634]},{"name":"CoDitherToRGB8","features":[634]},{"name":"CoMapMIMEToCLSID","features":[634]},{"name":"CoSniffStream","features":[634]},{"name":"ComputeInvCMAP","features":[314,634]},{"name":"CreateDDrawSurfaceOnDIB","features":[313,314,634]},{"name":"CreateMIMEMap","features":[634]},{"name":"DISPID_ACTIVEXFILTERINGENABLED","features":[634]},{"name":"DISPID_ADDCHANNEL","features":[634]},{"name":"DISPID_ADDDESKTOPCOMPONENT","features":[634]},{"name":"DISPID_ADDFAVORITE","features":[634]},{"name":"DISPID_ADDSEARCHPROVIDER","features":[634]},{"name":"DISPID_ADDSERVICE","features":[634]},{"name":"DISPID_ADDSITEMODE","features":[634]},{"name":"DISPID_ADDTHUMBNAILBUTTONS","features":[634]},{"name":"DISPID_ADDTOFAVORITESBAR","features":[634]},{"name":"DISPID_ADDTRACKINGPROTECTIONLIST","features":[634]},{"name":"DISPID_ADVANCEERROR","features":[634]},{"name":"DISPID_AMBIENT_OFFLINEIFNOTCONNECTED","features":[634]},{"name":"DISPID_AMBIENT_SILENT","features":[634]},{"name":"DISPID_AUTOCOMPLETEATTACH","features":[634]},{"name":"DISPID_AUTOCOMPLETESAVEFORM","features":[634]},{"name":"DISPID_AUTOSCAN","features":[634]},{"name":"DISPID_BEFORENAVIGATE","features":[634]},{"name":"DISPID_BEFORENAVIGATE2","features":[634]},{"name":"DISPID_BEFORESCRIPTEXECUTE","features":[634]},{"name":"DISPID_BRANDIMAGEURI","features":[634]},{"name":"DISPID_BUILDNEWTABPAGE","features":[634]},{"name":"DISPID_CANADVANCEERROR","features":[634]},{"name":"DISPID_CANRETREATERROR","features":[634]},{"name":"DISPID_CHANGEDEFAULTBROWSER","features":[634]},{"name":"DISPID_CLEARNOTIFICATION","features":[634]},{"name":"DISPID_CLEARSITEMODEICONOVERLAY","features":[634]},{"name":"DISPID_CLIENTTOHOSTWINDOW","features":[634]},{"name":"DISPID_COMMANDSTATECHANGE","features":[634]},{"name":"DISPID_CONTENTDISCOVERYRESET","features":[634]},{"name":"DISPID_COUNTVIEWTYPES","features":[634]},{"name":"DISPID_CREATESUBSCRIPTION","features":[634]},{"name":"DISPID_CUSTOMIZECLEARTYPE","features":[634]},{"name":"DISPID_CUSTOMIZESETTINGS","features":[634]},{"name":"DISPID_DEFAULTSEARCHPROVIDER","features":[634]},{"name":"DISPID_DELETESUBSCRIPTION","features":[634]},{"name":"DISPID_DEPTH","features":[634]},{"name":"DISPID_DIAGNOSECONNECTION","features":[634]},{"name":"DISPID_DIAGNOSECONNECTIONUILESS","features":[634]},{"name":"DISPID_DOCUMENTCOMPLETE","features":[634]},{"name":"DISPID_DOUBLECLICK","features":[634]},{"name":"DISPID_DOWNLOADBEGIN","features":[634]},{"name":"DISPID_DOWNLOADCOMPLETE","features":[634]},{"name":"DISPID_ENABLENOTIFICATIONQUEUE","features":[634]},{"name":"DISPID_ENABLENOTIFICATIONQUEUELARGE","features":[634]},{"name":"DISPID_ENABLENOTIFICATIONQUEUESQUARE","features":[634]},{"name":"DISPID_ENABLENOTIFICATIONQUEUEWIDE","features":[634]},{"name":"DISPID_ENABLESUGGESTEDSITES","features":[634]},{"name":"DISPID_ENUMOPTIONS","features":[634]},{"name":"DISPID_EXPAND","features":[634]},{"name":"DISPID_EXPORT","features":[634]},{"name":"DISPID_FAVSELECTIONCHANGE","features":[634]},{"name":"DISPID_FILEDOWNLOAD","features":[634]},{"name":"DISPID_FLAGS","features":[634]},{"name":"DISPID_FRAMEBEFORENAVIGATE","features":[634]},{"name":"DISPID_FRAMENAVIGATECOMPLETE","features":[634]},{"name":"DISPID_FRAMENEWWINDOW","features":[634]},{"name":"DISPID_GETALWAYSSHOWLOCKSTATE","features":[634]},{"name":"DISPID_GETCVLISTDATA","features":[634]},{"name":"DISPID_GETCVLISTLOCALDATA","features":[634]},{"name":"DISPID_GETDETAILSSTATE","features":[634]},{"name":"DISPID_GETEMIELISTDATA","features":[634]},{"name":"DISPID_GETEMIELISTLOCALDATA","features":[634]},{"name":"DISPID_GETERRORCHAR","features":[634]},{"name":"DISPID_GETERRORCODE","features":[634]},{"name":"DISPID_GETERRORLINE","features":[634]},{"name":"DISPID_GETERRORMSG","features":[634]},{"name":"DISPID_GETERRORURL","features":[634]},{"name":"DISPID_GETEXPERIMENTALFLAG","features":[634]},{"name":"DISPID_GETEXPERIMENTALVALUE","features":[634]},{"name":"DISPID_GETNEEDHVSIAUTOLAUNCHFLAG","features":[634]},{"name":"DISPID_GETNEEDIEAUTOLAUNCHFLAG","features":[634]},{"name":"DISPID_GETOSSKU","features":[634]},{"name":"DISPID_GETPERERRSTATE","features":[634]},{"name":"DISPID_HASNEEDHVSIAUTOLAUNCHFLAG","features":[634]},{"name":"DISPID_HASNEEDIEAUTOLAUNCHFLAG","features":[634]},{"name":"DISPID_IMPORT","features":[634]},{"name":"DISPID_IMPORTEXPORTFAVORITES","features":[634]},{"name":"DISPID_INITIALIZED","features":[634]},{"name":"DISPID_INPRIVATEFILTERINGENABLED","features":[634]},{"name":"DISPID_INVOKECONTEXTMENU","features":[634]},{"name":"DISPID_ISMETAREFERRERAVAILABLE","features":[634]},{"name":"DISPID_ISSEARCHMIGRATED","features":[634]},{"name":"DISPID_ISSEARCHPROVIDERINSTALLED","features":[634]},{"name":"DISPID_ISSERVICEINSTALLED","features":[634]},{"name":"DISPID_ISSITEMODE","features":[634]},{"name":"DISPID_ISSITEMODEFIRSTRUN","features":[634]},{"name":"DISPID_ISSUBSCRIBED","features":[634]},{"name":"DISPID_LAUNCHIE","features":[634]},{"name":"DISPID_LAUNCHINHVSI","features":[634]},{"name":"DISPID_LAUNCHINTERNETOPTIONS","features":[634]},{"name":"DISPID_LAUNCHNETWORKCLIENTHELP","features":[634]},{"name":"DISPID_MODE","features":[634]},{"name":"DISPID_MOVESELECTIONDOWN","features":[634]},{"name":"DISPID_MOVESELECTIONTO","features":[634]},{"name":"DISPID_MOVESELECTIONUP","features":[634]},{"name":"DISPID_NAVIGATEANDFIND","features":[634]},{"name":"DISPID_NAVIGATECOMPLETE","features":[634]},{"name":"DISPID_NAVIGATECOMPLETE2","features":[634]},{"name":"DISPID_NAVIGATEERROR","features":[634]},{"name":"DISPID_NAVIGATETOSUGGESTEDSITES","features":[634]},{"name":"DISPID_NEWFOLDER","features":[634]},{"name":"DISPID_NEWPROCESS","features":[634]},{"name":"DISPID_NEWWINDOW","features":[634]},{"name":"DISPID_NEWWINDOW2","features":[634]},{"name":"DISPID_NEWWINDOW3","features":[634]},{"name":"DISPID_NSCOLUMNS","features":[634]},{"name":"DISPID_ONADDRESSBAR","features":[634]},{"name":"DISPID_ONFULLSCREEN","features":[634]},{"name":"DISPID_ONMENUBAR","features":[634]},{"name":"DISPID_ONQUIT","features":[634]},{"name":"DISPID_ONSTATUSBAR","features":[634]},{"name":"DISPID_ONTHEATERMODE","features":[634]},{"name":"DISPID_ONTOOLBAR","features":[634]},{"name":"DISPID_ONVISIBLE","features":[634]},{"name":"DISPID_OPENFAVORITESPANE","features":[634]},{"name":"DISPID_OPENFAVORITESSETTINGS","features":[634]},{"name":"DISPID_PHISHINGENABLED","features":[634]},{"name":"DISPID_PINNEDSITESTATE","features":[634]},{"name":"DISPID_PRINTTEMPLATEINSTANTIATION","features":[634]},{"name":"DISPID_PRINTTEMPLATETEARDOWN","features":[634]},{"name":"DISPID_PRIVACYIMPACTEDSTATECHANGE","features":[634]},{"name":"DISPID_PROGRESSCHANGE","features":[634]},{"name":"DISPID_PROPERTYCHANGE","features":[634]},{"name":"DISPID_PROVISIONNETWORKS","features":[634]},{"name":"DISPID_QUIT","features":[634]},{"name":"DISPID_REDIRECTXDOMAINBLOCKED","features":[634]},{"name":"DISPID_REFRESHOFFLINEDESKTOP","features":[634]},{"name":"DISPID_REMOVESCHEDULEDTILENOTIFICATION","features":[634]},{"name":"DISPID_REPORTSAFEURL","features":[634]},{"name":"DISPID_RESETEXPERIMENTALFLAGS","features":[634]},{"name":"DISPID_RESETFIRSTBOOTMODE","features":[634]},{"name":"DISPID_RESETSAFEMODE","features":[634]},{"name":"DISPID_RESETSORT","features":[634]},{"name":"DISPID_RETREATERROR","features":[634]},{"name":"DISPID_ROOT","features":[634]},{"name":"DISPID_RUNONCEHASSHOWN","features":[634]},{"name":"DISPID_RUNONCEREQUIREDSETTINGSCOMPLETE","features":[634]},{"name":"DISPID_RUNONCESHOWN","features":[634]},{"name":"DISPID_SCHEDULEDTILENOTIFICATION","features":[634]},{"name":"DISPID_SEARCHGUIDEURL","features":[634]},{"name":"DISPID_SELECTEDITEM","features":[634]},{"name":"DISPID_SELECTEDITEMS","features":[634]},{"name":"DISPID_SELECTIONCHANGE","features":[634]},{"name":"DISPID_SETACTIVITIESVISIBLE","features":[634]},{"name":"DISPID_SETDETAILSSTATE","features":[634]},{"name":"DISPID_SETEXPERIMENTALFLAG","features":[634]},{"name":"DISPID_SETEXPERIMENTALVALUE","features":[634]},{"name":"DISPID_SETMSDEFAULTS","features":[634]},{"name":"DISPID_SETNEEDHVSIAUTOLAUNCHFLAG","features":[634]},{"name":"DISPID_SETNEEDIEAUTOLAUNCHFLAG","features":[634]},{"name":"DISPID_SETPERERRSTATE","features":[634]},{"name":"DISPID_SETPHISHINGFILTERSTATUS","features":[634]},{"name":"DISPID_SETRECENTLYCLOSEDVISIBLE","features":[634]},{"name":"DISPID_SETROOT","features":[634]},{"name":"DISPID_SETSECURELOCKICON","features":[634]},{"name":"DISPID_SETSITEMODEICONOVERLAY","features":[634]},{"name":"DISPID_SETSITEMODEPROPERTIES","features":[634]},{"name":"DISPID_SETTHUMBNAILBUTTONS","features":[634]},{"name":"DISPID_SETVIEWTYPE","features":[634]},{"name":"DISPID_SHELLUIHELPERLAST","features":[634]},{"name":"DISPID_SHOWBROWSERUI","features":[634]},{"name":"DISPID_SHOWINPRIVATEHELP","features":[634]},{"name":"DISPID_SHOWTABSHELP","features":[634]},{"name":"DISPID_SITEMODEACTIVATE","features":[634]},{"name":"DISPID_SITEMODEADDBUTTONSTYLE","features":[634]},{"name":"DISPID_SITEMODEADDJUMPLISTITEM","features":[634]},{"name":"DISPID_SITEMODECLEARBADGE","features":[634]},{"name":"DISPID_SITEMODECLEARJUMPLIST","features":[634]},{"name":"DISPID_SITEMODECREATEJUMPLIST","features":[634]},{"name":"DISPID_SITEMODEREFRESHBADGE","features":[634]},{"name":"DISPID_SITEMODESHOWBUTTONSTYLE","features":[634]},{"name":"DISPID_SITEMODESHOWJUMPLIST","features":[634]},{"name":"DISPID_SKIPRUNONCE","features":[634]},{"name":"DISPID_SKIPTABSWELCOME","features":[634]},{"name":"DISPID_SQMENABLED","features":[634]},{"name":"DISPID_STARTBADGEUPDATE","features":[634]},{"name":"DISPID_STARTPERIODICUPDATE","features":[634]},{"name":"DISPID_STARTPERIODICUPDATEBATCH","features":[634]},{"name":"DISPID_STATUSTEXTCHANGE","features":[634]},{"name":"DISPID_STOPBADGEUPDATE","features":[634]},{"name":"DISPID_STOPPERIODICUPDATE","features":[634]},{"name":"DISPID_SUBSCRIPTIONSENABLED","features":[634]},{"name":"DISPID_SUGGESTEDSITESENABLED","features":[634]},{"name":"DISPID_SYNCHRONIZE","features":[634]},{"name":"DISPID_THIRDPARTYURLBLOCKED","features":[634]},{"name":"DISPID_TITLECHANGE","features":[634]},{"name":"DISPID_TITLEICONCHANGE","features":[634]},{"name":"DISPID_TRACKINGPROTECTIONENABLED","features":[634]},{"name":"DISPID_TVFLAGS","features":[634]},{"name":"DISPID_UNSELECTALL","features":[634]},{"name":"DISPID_UPDATEPAGESTATUS","features":[634]},{"name":"DISPID_UPDATETHUMBNAILBUTTON","features":[634]},{"name":"DISPID_VIEWUPDATE","features":[634]},{"name":"DISPID_WEBWORKERFINISHED","features":[634]},{"name":"DISPID_WEBWORKERSTARTED","features":[634]},{"name":"DISPID_WINDOWACTIVATE","features":[634]},{"name":"DISPID_WINDOWCLOSING","features":[634]},{"name":"DISPID_WINDOWMOVE","features":[634]},{"name":"DISPID_WINDOWREGISTERED","features":[634]},{"name":"DISPID_WINDOWRESIZE","features":[634]},{"name":"DISPID_WINDOWREVOKED","features":[634]},{"name":"DISPID_WINDOWSETHEIGHT","features":[634]},{"name":"DISPID_WINDOWSETLEFT","features":[634]},{"name":"DISPID_WINDOWSETRESIZABLE","features":[634]},{"name":"DISPID_WINDOWSETTOP","features":[634]},{"name":"DISPID_WINDOWSETWIDTH","features":[634]},{"name":"DISPID_WINDOWSTATECHANGED","features":[634]},{"name":"DecodeImage","features":[354,634]},{"name":"DecodeImageEx","features":[354,634]},{"name":"DitherTo8","features":[314,634]},{"name":"E_SURFACE_DISCARDED","features":[634]},{"name":"E_SURFACE_NODC","features":[634]},{"name":"E_SURFACE_NOSURFACE","features":[634]},{"name":"E_SURFACE_NOTMYDC","features":[634]},{"name":"E_SURFACE_NOTMYPOINTER","features":[634]},{"name":"E_SURFACE_UNKNOWN_FORMAT","features":[634]},{"name":"ExtensionValidationContextDynamic","features":[634]},{"name":"ExtensionValidationContextNone","features":[634]},{"name":"ExtensionValidationContextParsed","features":[634]},{"name":"ExtensionValidationContexts","features":[634]},{"name":"ExtensionValidationResultArrestPageLoad","features":[634]},{"name":"ExtensionValidationResultDoNotInstantiate","features":[634]},{"name":"ExtensionValidationResultNone","features":[634]},{"name":"ExtensionValidationResults","features":[634]},{"name":"FINDFRAME_FLAGS","features":[634]},{"name":"FINDFRAME_INTERNAL","features":[634]},{"name":"FINDFRAME_JUSTTESTEXISTENCE","features":[634]},{"name":"FINDFRAME_NONE","features":[634]},{"name":"FRAMEOPTIONS_BROWSERBAND","features":[634]},{"name":"FRAMEOPTIONS_DESKTOP","features":[634]},{"name":"FRAMEOPTIONS_FLAGS","features":[634]},{"name":"FRAMEOPTIONS_NO3DBORDER","features":[634]},{"name":"FRAMEOPTIONS_NORESIZE","features":[634]},{"name":"FRAMEOPTIONS_SCROLL_AUTO","features":[634]},{"name":"FRAMEOPTIONS_SCROLL_NO","features":[634]},{"name":"FRAMEOPTIONS_SCROLL_YES","features":[634]},{"name":"GetMaxMIMEIDBytes","features":[634]},{"name":"HomePage","features":[634]},{"name":"HomePageSetting","features":[634]},{"name":"IActiveXUIHandlerSite","features":[634]},{"name":"IActiveXUIHandlerSite2","features":[634]},{"name":"IActiveXUIHandlerSite3","features":[634]},{"name":"IAnchorClick","features":[354,634]},{"name":"IAudioSessionSite","features":[634]},{"name":"ICaretPositionProvider","features":[634]},{"name":"IDeviceRect","features":[354,634]},{"name":"IDithererImpl","features":[634]},{"name":"IDocObjectService","features":[634]},{"name":"IDownloadBehavior","features":[354,634]},{"name":"IDownloadManager","features":[634]},{"name":"IEAssociateThreadWithTab","features":[634]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL","features":[634]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL_BUT_PASSWORDS","features":[634]},{"name":"IECMDID_ARG_CLEAR_FORMS_PASSWORDS_ONLY","features":[634]},{"name":"IECMDID_BEFORENAVIGATE_DOEXTERNALBROWSE","features":[634]},{"name":"IECMDID_BEFORENAVIGATE_GETIDLIST","features":[634]},{"name":"IECMDID_BEFORENAVIGATE_GETSHELLBROWSE","features":[634]},{"name":"IECMDID_CLEAR_AUTOCOMPLETE_FOR_FORMS","features":[634]},{"name":"IECMDID_GET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[634]},{"name":"IECMDID_SETID_AUTOCOMPLETE_FOR_FORMS","features":[634]},{"name":"IECMDID_SET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[634]},{"name":"IECancelSaveFile","features":[303,634]},{"name":"IECreateDirectory","features":[303,306,634]},{"name":"IECreateFile","features":[303,306,634]},{"name":"IEDeleteFile","features":[303,634]},{"name":"IEDisassociateThreadWithTab","features":[634]},{"name":"IEFindFirstFile","features":[303,322,634]},{"name":"IEGetFileAttributesEx","features":[303,322,634]},{"name":"IEGetProcessModule_PROC_NAME","features":[634]},{"name":"IEGetProtectedModeCookie","features":[634]},{"name":"IEGetTabWindowExports_PROC_NAME","features":[634]},{"name":"IEGetWriteableFolderPath","features":[634]},{"name":"IEGetWriteableLowHKCU","features":[364,634]},{"name":"IEInPrivateFilteringEnabled","features":[303,634]},{"name":"IEIsInPrivateBrowsing","features":[303,634]},{"name":"IEIsProtectedModeProcess","features":[303,634]},{"name":"IEIsProtectedModeURL","features":[634]},{"name":"IELAUNCHOPTION_FLAGS","features":[634]},{"name":"IELAUNCHOPTION_FORCE_COMPAT","features":[634]},{"name":"IELAUNCHOPTION_FORCE_EDGE","features":[634]},{"name":"IELAUNCHOPTION_LOCK_ENGINE","features":[634]},{"name":"IELAUNCHOPTION_SCRIPTDEBUG","features":[634]},{"name":"IELAUNCHURLINFO","features":[634]},{"name":"IELaunchURL","features":[303,338,634]},{"name":"IEMoveFileEx","features":[303,634]},{"name":"IEPROCESS_MODULE_NAME","features":[634]},{"name":"IERefreshElevationPolicy","features":[634]},{"name":"IERegCreateKeyEx","features":[303,306,364,634]},{"name":"IERegSetValueEx","features":[634]},{"name":"IERegisterWritableRegistryKey","features":[303,634]},{"name":"IERegisterWritableRegistryValue","features":[634]},{"name":"IERemoveDirectory","features":[303,634]},{"name":"IESaveFile","features":[303,634]},{"name":"IESetProtectedModeCookie","features":[634]},{"name":"IEShowOpenFileDialog","features":[303,634]},{"name":"IEShowSaveFileDialog","features":[303,634]},{"name":"IETrackingProtectionEnabled","features":[303,634]},{"name":"IEUnregisterWritableRegistry","features":[634]},{"name":"IEWebDriverManager","features":[634]},{"name":"IE_USE_OE_MAIL_HKEY","features":[634]},{"name":"IE_USE_OE_MAIL_KEY","features":[634]},{"name":"IE_USE_OE_MAIL_VALUE","features":[634]},{"name":"IE_USE_OE_NEWS_HKEY","features":[634]},{"name":"IE_USE_OE_NEWS_KEY","features":[634]},{"name":"IE_USE_OE_NEWS_VALUE","features":[634]},{"name":"IE_USE_OE_PRESENT_HKEY","features":[634]},{"name":"IE_USE_OE_PRESENT_KEY","features":[634]},{"name":"IEnumManagerFrames","features":[634]},{"name":"IEnumOpenServiceActivity","features":[634]},{"name":"IEnumOpenServiceActivityCategory","features":[634]},{"name":"IEnumSTATURL","features":[634]},{"name":"IExtensionValidation","features":[634]},{"name":"IHTMLPersistData","features":[634]},{"name":"IHTMLPersistDataOM","features":[354,634]},{"name":"IHTMLUserDataOM","features":[354,634]},{"name":"IHeaderFooter","features":[354,634]},{"name":"IHeaderFooter2","features":[354,634]},{"name":"IHomePage","features":[354,634]},{"name":"IHomePageSetting","features":[634]},{"name":"IIEWebDriverManager","features":[354,634]},{"name":"IIEWebDriverSite","features":[354,634]},{"name":"IImageDecodeEventSink","features":[634]},{"name":"IImageDecodeEventSink2","features":[634]},{"name":"IImageDecodeFilter","features":[634]},{"name":"IIntelliForms","features":[354,634]},{"name":"IInternetExplorerManager","features":[634]},{"name":"IInternetExplorerManager2","features":[634]},{"name":"ILayoutRect","features":[354,634]},{"name":"IMGDECODE_EVENT_BEGINBITS","features":[634]},{"name":"IMGDECODE_EVENT_BITSCOMPLETE","features":[634]},{"name":"IMGDECODE_EVENT_PALETTE","features":[634]},{"name":"IMGDECODE_EVENT_PROGRESS","features":[634]},{"name":"IMGDECODE_EVENT_USEDDRAW","features":[634]},{"name":"IMGDECODE_HINT_BOTTOMUP","features":[634]},{"name":"IMGDECODE_HINT_FULLWIDTH","features":[634]},{"name":"IMGDECODE_HINT_TOPDOWN","features":[634]},{"name":"IMapMIMEToCLSID","features":[634]},{"name":"IMediaActivityNotifySite","features":[634]},{"name":"INTERNETEXPLORERCONFIGURATION","features":[634]},{"name":"INTERNETEXPLORERCONFIGURATION_HOST","features":[634]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER","features":[634]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER_EDGE","features":[634]},{"name":"IOpenService","features":[634]},{"name":"IOpenServiceActivity","features":[634]},{"name":"IOpenServiceActivityCategory","features":[634]},{"name":"IOpenServiceActivityInput","features":[634]},{"name":"IOpenServiceActivityManager","features":[634]},{"name":"IOpenServiceActivityOutputContext","features":[634]},{"name":"IOpenServiceManager","features":[634]},{"name":"IPeerFactory","features":[634]},{"name":"IPersistHistory","features":[354,634]},{"name":"IPrintTaskRequestFactory","features":[634]},{"name":"IPrintTaskRequestHandler","features":[634]},{"name":"IScrollableContextMenu","features":[634]},{"name":"IScrollableContextMenu2","features":[634]},{"name":"ISniffStream","features":[634]},{"name":"ISurfacePresenterFlip","features":[634]},{"name":"ISurfacePresenterFlip2","features":[634]},{"name":"ISurfacePresenterFlipBuffer","features":[634]},{"name":"ITargetContainer","features":[634]},{"name":"ITargetEmbedding","features":[634]},{"name":"ITargetFrame","features":[634]},{"name":"ITargetFrame2","features":[634]},{"name":"ITargetFramePriv","features":[634]},{"name":"ITargetFramePriv2","features":[634]},{"name":"ITargetNotify","features":[634]},{"name":"ITargetNotify2","features":[634]},{"name":"ITimer","features":[634]},{"name":"ITimerEx","features":[634]},{"name":"ITimerService","features":[634]},{"name":"ITimerSink","features":[634]},{"name":"ITridentTouchInput","features":[634]},{"name":"ITridentTouchInputSite","features":[634]},{"name":"IUrlHistoryNotify","features":[413,634]},{"name":"IUrlHistoryStg","features":[634]},{"name":"IUrlHistoryStg2","features":[634]},{"name":"IViewObjectPresentFlip","features":[634]},{"name":"IViewObjectPresentFlip2","features":[634]},{"name":"IViewObjectPresentFlipSite","features":[634]},{"name":"IViewObjectPresentFlipSite2","features":[634]},{"name":"IWebBrowserEventsService","features":[634]},{"name":"IWebBrowserEventsUrlService","features":[634]},{"name":"IdentifyMIMEType","features":[634]},{"name":"IntelliForms","features":[634]},{"name":"InternetExplorerManager","features":[634]},{"name":"Iwfolders","features":[354,634]},{"name":"LINKSBAND","features":[634]},{"name":"MAPMIME_CLSID","features":[634]},{"name":"MAPMIME_DEFAULT","features":[634]},{"name":"MAPMIME_DEFAULT_ALWAYS","features":[634]},{"name":"MAPMIME_DISABLE","features":[634]},{"name":"MAX_SEARCH_FORMAT_STRING","features":[634]},{"name":"MEDIA_ACTIVITY_NOTIFY_TYPE","features":[634]},{"name":"MediaCasting","features":[634]},{"name":"MediaPlayback","features":[634]},{"name":"MediaRecording","features":[634]},{"name":"NAVIGATEDATA","features":[634]},{"name":"NAVIGATEFRAME_FLAGS","features":[634]},{"name":"NAVIGATEFRAME_FL_AUTH_FAIL_CACHE_OK","features":[634]},{"name":"NAVIGATEFRAME_FL_NO_DOC_CACHE","features":[634]},{"name":"NAVIGATEFRAME_FL_NO_IMAGE_CACHE","features":[634]},{"name":"NAVIGATEFRAME_FL_POST","features":[634]},{"name":"NAVIGATEFRAME_FL_REALLY_SENDING_FROM_FORM","features":[634]},{"name":"NAVIGATEFRAME_FL_RECORD","features":[634]},{"name":"NAVIGATEFRAME_FL_SENDING_FROM_FORM","features":[634]},{"name":"OS_E_CANCELLED","features":[634]},{"name":"OS_E_GPDISABLED","features":[634]},{"name":"OS_E_NOTFOUND","features":[634]},{"name":"OS_E_NOTSUPPORTED","features":[634]},{"name":"OpenServiceActivityContentType","features":[634]},{"name":"OpenServiceActivityManager","features":[634]},{"name":"OpenServiceErrors","features":[634]},{"name":"OpenServiceManager","features":[634]},{"name":"PeerFactory","features":[634]},{"name":"REGSTRA_VAL_STARTPAGE","features":[634]},{"name":"REGSTR_PATH_CURRENT","features":[634]},{"name":"REGSTR_PATH_DEFAULT","features":[634]},{"name":"REGSTR_PATH_INETCPL_RESTRICTIONS","features":[634]},{"name":"REGSTR_PATH_MIME_DATABASE","features":[634]},{"name":"REGSTR_PATH_REMOTEACCESS","features":[634]},{"name":"REGSTR_PATH_REMOTEACESS","features":[634]},{"name":"REGSTR_SHIFTQUICKSUFFIX","features":[634]},{"name":"REGSTR_VAL_ACCEPT_LANGUAGE","features":[634]},{"name":"REGSTR_VAL_ACCESSMEDIUM","features":[634]},{"name":"REGSTR_VAL_ACCESSTYPE","features":[634]},{"name":"REGSTR_VAL_ALIASTO","features":[634]},{"name":"REGSTR_VAL_ANCHORCOLOR","features":[634]},{"name":"REGSTR_VAL_ANCHORCOLORHOVER","features":[634]},{"name":"REGSTR_VAL_ANCHORCOLORVISITED","features":[634]},{"name":"REGSTR_VAL_ANCHORUNDERLINE","features":[634]},{"name":"REGSTR_VAL_AUTODETECT","features":[634]},{"name":"REGSTR_VAL_AUTODIALDLLNAME","features":[634]},{"name":"REGSTR_VAL_AUTODIALFCNNAME","features":[634]},{"name":"REGSTR_VAL_AUTODIAL_MONITORCLASSNAME","features":[634]},{"name":"REGSTR_VAL_AUTODIAL_TRYONLYONCE","features":[634]},{"name":"REGSTR_VAL_AUTONAVIGATE","features":[634]},{"name":"REGSTR_VAL_AUTOSEARCH","features":[634]},{"name":"REGSTR_VAL_BACKBITMAP","features":[634]},{"name":"REGSTR_VAL_BACKGROUNDCOLOR","features":[634]},{"name":"REGSTR_VAL_BODYCHARSET","features":[634]},{"name":"REGSTR_VAL_BYPASSAUTOCONFIG","features":[634]},{"name":"REGSTR_VAL_CACHEPREFIX","features":[634]},{"name":"REGSTR_VAL_CHECKASSOC","features":[634]},{"name":"REGSTR_VAL_CODEDOWNLOAD","features":[634]},{"name":"REGSTR_VAL_CODEDOWNLOAD_DEF","features":[634]},{"name":"REGSTR_VAL_CODEPAGE","features":[634]},{"name":"REGSTR_VAL_COVEREXCLUDE","features":[634]},{"name":"REGSTR_VAL_DAYSTOKEEP","features":[634]},{"name":"REGSTR_VAL_DEFAULT_CODEPAGE","features":[634]},{"name":"REGSTR_VAL_DEFAULT_SCRIPT","features":[634]},{"name":"REGSTR_VAL_DEF_ENCODING","features":[634]},{"name":"REGSTR_VAL_DEF_INETENCODING","features":[634]},{"name":"REGSTR_VAL_DESCRIPTION","features":[634]},{"name":"REGSTR_VAL_DIRECTORY","features":[634]},{"name":"REGSTR_VAL_DISCONNECTIDLETIME","features":[634]},{"name":"REGSTR_VAL_ENABLEAUTODIAL","features":[634]},{"name":"REGSTR_VAL_ENABLEAUTODIALDISCONNECT","features":[634]},{"name":"REGSTR_VAL_ENABLEAUTODISCONNECT","features":[634]},{"name":"REGSTR_VAL_ENABLEEXITDISCONNECT","features":[634]},{"name":"REGSTR_VAL_ENABLESECURITYCHECK","features":[634]},{"name":"REGSTR_VAL_ENABLEUNATTENDED","features":[634]},{"name":"REGSTR_VAL_ENCODENAME","features":[634]},{"name":"REGSTR_VAL_FAMILY","features":[634]},{"name":"REGSTR_VAL_FIXEDWIDTHFONT","features":[634]},{"name":"REGSTR_VAL_FIXED_FONT","features":[634]},{"name":"REGSTR_VAL_FONT_SCRIPT","features":[634]},{"name":"REGSTR_VAL_FONT_SCRIPTS","features":[634]},{"name":"REGSTR_VAL_FONT_SCRIPT_NAME","features":[634]},{"name":"REGSTR_VAL_FONT_SIZE","features":[634]},{"name":"REGSTR_VAL_FONT_SIZE_DEF","features":[634]},{"name":"REGSTR_VAL_HEADERCHARSET","features":[634]},{"name":"REGSTR_VAL_HTTP_ERRORS","features":[634]},{"name":"REGSTR_VAL_IE_CUSTOMCOLORS","features":[634]},{"name":"REGSTR_VAL_INETCPL_ADVANCEDTAB","features":[634]},{"name":"REGSTR_VAL_INETCPL_CONNECTIONSTAB","features":[634]},{"name":"REGSTR_VAL_INETCPL_CONTENTTAB","features":[634]},{"name":"REGSTR_VAL_INETCPL_GENERALTAB","features":[634]},{"name":"REGSTR_VAL_INETCPL_IEAK","features":[634]},{"name":"REGSTR_VAL_INETCPL_PRIVACYTAB","features":[634]},{"name":"REGSTR_VAL_INETCPL_PROGRAMSTAB","features":[634]},{"name":"REGSTR_VAL_INETCPL_SECURITYTAB","features":[634]},{"name":"REGSTR_VAL_INETENCODING","features":[634]},{"name":"REGSTR_VAL_INTERNETENTRY","features":[634]},{"name":"REGSTR_VAL_INTERNETENTRYBKUP","features":[634]},{"name":"REGSTR_VAL_INTERNETPROFILE","features":[634]},{"name":"REGSTR_VAL_JAVAJIT","features":[634]},{"name":"REGSTR_VAL_JAVAJIT_DEF","features":[634]},{"name":"REGSTR_VAL_JAVALOGGING","features":[634]},{"name":"REGSTR_VAL_JAVALOGGING_DEF","features":[634]},{"name":"REGSTR_VAL_LEVEL","features":[634]},{"name":"REGSTR_VAL_LOADIMAGES","features":[634]},{"name":"REGSTR_VAL_LOCALPAGE","features":[634]},{"name":"REGSTR_VAL_MOSDISCONNECT","features":[634]},{"name":"REGSTR_VAL_NEWDIRECTORY","features":[634]},{"name":"REGSTR_VAL_NONETAUTODIAL","features":[634]},{"name":"REGSTR_VAL_PLAYSOUNDS","features":[634]},{"name":"REGSTR_VAL_PLAYVIDEOS","features":[634]},{"name":"REGSTR_VAL_PRIVCONVERTER","features":[634]},{"name":"REGSTR_VAL_PROPORTIONALFONT","features":[634]},{"name":"REGSTR_VAL_PROP_FONT","features":[634]},{"name":"REGSTR_VAL_PROXYENABLE","features":[634]},{"name":"REGSTR_VAL_PROXYOVERRIDE","features":[634]},{"name":"REGSTR_VAL_PROXYSERVER","features":[634]},{"name":"REGSTR_VAL_REDIALATTEMPTS","features":[634]},{"name":"REGSTR_VAL_REDIALINTERVAL","features":[634]},{"name":"REGSTR_VAL_RNAINSTALLED","features":[634]},{"name":"REGSTR_VAL_SAFETYWARNINGLEVEL","features":[634]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL","features":[634]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL_DEF","features":[634]},{"name":"REGSTR_VAL_SCRIPT_FIXED_FONT","features":[634]},{"name":"REGSTR_VAL_SCRIPT_PROP_FONT","features":[634]},{"name":"REGSTR_VAL_SEARCHPAGE","features":[634]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS","features":[634]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYACTIVEX","features":[634]},{"name":"REGSTR_VAL_SECURITYACTIVEX_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES","features":[634]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES","features":[634]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYJAVA","features":[634]},{"name":"REGSTR_VAL_SECURITYJAVA_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONSEND","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONSEND_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW_DEF","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING","features":[634]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING_DEF","features":[634]},{"name":"REGSTR_VAL_SHOWADDRESSBAR","features":[634]},{"name":"REGSTR_VAL_SHOWFOCUS","features":[634]},{"name":"REGSTR_VAL_SHOWFOCUS_DEF","features":[634]},{"name":"REGSTR_VAL_SHOWFULLURLS","features":[634]},{"name":"REGSTR_VAL_SHOWTOOLBAR","features":[634]},{"name":"REGSTR_VAL_SMOOTHSCROLL","features":[634]},{"name":"REGSTR_VAL_SMOOTHSCROLL_DEF","features":[634]},{"name":"REGSTR_VAL_STARTPAGE","features":[634]},{"name":"REGSTR_VAL_TEXTCOLOR","features":[634]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_HIGH","features":[634]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_LOW","features":[634]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_MED","features":[634]},{"name":"REGSTR_VAL_USEAUTOAPPEND","features":[634]},{"name":"REGSTR_VAL_USEAUTOCOMPLETE","features":[634]},{"name":"REGSTR_VAL_USEAUTOSUGGEST","features":[634]},{"name":"REGSTR_VAL_USEDLGCOLORS","features":[634]},{"name":"REGSTR_VAL_USEHOVERCOLOR","features":[634]},{"name":"REGSTR_VAL_USEIBAR","features":[634]},{"name":"REGSTR_VAL_USEICM","features":[634]},{"name":"REGSTR_VAL_USEICM_DEF","features":[634]},{"name":"REGSTR_VAL_USERAGENT","features":[634]},{"name":"REGSTR_VAL_USESTYLESHEETS","features":[634]},{"name":"REGSTR_VAL_USESTYLESHEETS_DEF","features":[634]},{"name":"REGSTR_VAL_VISIBLEBANDS","features":[634]},{"name":"REGSTR_VAL_VISIBLEBANDS_DEF","features":[634]},{"name":"REGSTR_VAL_WEBCHARSET","features":[634]},{"name":"RatingAccessDeniedDialog","features":[303,634]},{"name":"RatingAccessDeniedDialog2","features":[303,634]},{"name":"RatingAccessDeniedDialog2W","features":[303,634]},{"name":"RatingAccessDeniedDialogW","features":[303,634]},{"name":"RatingAddToApprovedSites","features":[303,634]},{"name":"RatingCheckUserAccess","features":[634]},{"name":"RatingCheckUserAccessW","features":[634]},{"name":"RatingClickedOnPRFInternal","features":[303,634]},{"name":"RatingClickedOnRATInternal","features":[303,634]},{"name":"RatingEnable","features":[303,634]},{"name":"RatingEnableW","features":[303,634]},{"name":"RatingEnabledQuery","features":[634]},{"name":"RatingFreeDetails","features":[634]},{"name":"RatingInit","features":[634]},{"name":"RatingObtainCancel","features":[303,634]},{"name":"RatingObtainQuery","features":[303,634]},{"name":"RatingObtainQueryW","features":[303,634]},{"name":"RatingSetupUI","features":[303,634]},{"name":"RatingSetupUIW","features":[303,634]},{"name":"SCMP_BOTTOM","features":[634]},{"name":"SCMP_FULL","features":[634]},{"name":"SCMP_LEFT","features":[634]},{"name":"SCMP_RIGHT","features":[634]},{"name":"SCMP_TOP","features":[634]},{"name":"SCROLLABLECONTEXTMENU_PLACEMENT","features":[634]},{"name":"STATURL","features":[303,634]},{"name":"STATURLFLAG_ISCACHED","features":[634]},{"name":"STATURLFLAG_ISTOPLEVEL","features":[634]},{"name":"STATURL_QUERYFLAG_ISCACHED","features":[634]},{"name":"STATURL_QUERYFLAG_NOTITLE","features":[634]},{"name":"STATURL_QUERYFLAG_NOURL","features":[634]},{"name":"STATURL_QUERYFLAG_TOPLEVEL","features":[634]},{"name":"SURFACE_LOCK_ALLOW_DISCARD","features":[634]},{"name":"SURFACE_LOCK_EXCLUSIVE","features":[634]},{"name":"SURFACE_LOCK_WAIT","features":[634]},{"name":"SZBACKBITMAP","features":[634]},{"name":"SZJAVAVMPATH","features":[634]},{"name":"SZNOTEXT","features":[634]},{"name":"SZTOOLBAR","features":[634]},{"name":"SZTRUSTWARNLEVEL","features":[634]},{"name":"SZVISIBLE","features":[634]},{"name":"SZ_IE_DEFAULT_HTML_EDITOR","features":[634]},{"name":"SZ_IE_IBAR","features":[634]},{"name":"SZ_IE_IBAR_BANDS","features":[634]},{"name":"SZ_IE_MAIN","features":[634]},{"name":"SZ_IE_SEARCHSTRINGS","features":[634]},{"name":"SZ_IE_SECURITY","features":[634]},{"name":"SZ_IE_SETTINGS","features":[634]},{"name":"SZ_IE_THRESHOLDS","features":[634]},{"name":"S_SURFACE_DISCARDED","features":[634]},{"name":"SniffStream","features":[354,634]},{"name":"TARGET_NOTIFY_OBJECT_NAME","features":[634]},{"name":"TF_NAVIGATE","features":[634]},{"name":"TIMERMODE_NORMAL","features":[634]},{"name":"TIMERMODE_VISIBILITYAWARE","features":[634]},{"name":"TOOLSBAND","features":[634]},{"name":"TSZCALENDARPROTOCOL","features":[634]},{"name":"TSZCALLTOPROTOCOL","features":[634]},{"name":"TSZINTERNETCLIENTSPATH","features":[634]},{"name":"TSZLDAPPROTOCOL","features":[634]},{"name":"TSZMAILTOPROTOCOL","features":[634]},{"name":"TSZMICROSOFTPATH","features":[634]},{"name":"TSZNEWSPROTOCOL","features":[634]},{"name":"TSZPROTOCOLSPATH","features":[634]},{"name":"TSZSCHANNELPATH","features":[634]},{"name":"TSZVSOURCEPROTOCOL","features":[634]},{"name":"msodsvFailed","features":[634]},{"name":"msodsvLowSecurityLevel","features":[634]},{"name":"msodsvNoMacros","features":[634]},{"name":"msodsvPassedTrusted","features":[634]},{"name":"msodsvPassedTrustedCert","features":[634]},{"name":"msodsvUnsigned","features":[634]},{"name":"msoedmDisable","features":[634]},{"name":"msoedmDontOpen","features":[634]},{"name":"msoedmEnable","features":[634]},{"name":"msoslHigh","features":[634]},{"name":"msoslMedium","features":[634]},{"name":"msoslNone","features":[634]},{"name":"msoslUndefined","features":[634]},{"name":"wfolders","features":[634]}]}} \ No newline at end of file +{"namespace_map":["Windows.AI.MachineLearning","Windows.AI.MachineLearning.Preview","Windows.ApplicationModel","Windows.ApplicationModel.Activation","Windows.ApplicationModel.AppExtensions","Windows.ApplicationModel.AppService","Windows.ApplicationModel.Appointments","Windows.ApplicationModel.Appointments.AppointmentsProvider","Windows.ApplicationModel.Appointments.DataProvider","Windows.ApplicationModel.Background","Windows.ApplicationModel.Calls","Windows.ApplicationModel.Calls.Background","Windows.ApplicationModel.Calls.Provider","Windows.ApplicationModel.Chat","Windows.ApplicationModel.CommunicationBlocking","Windows.ApplicationModel.Contacts","Windows.ApplicationModel.Contacts.DataProvider","Windows.ApplicationModel.Contacts.Provider","Windows.ApplicationModel.ConversationalAgent","Windows.ApplicationModel.Core","Windows.ApplicationModel.DataTransfer","Windows.ApplicationModel.DataTransfer.DragDrop","Windows.ApplicationModel.DataTransfer.DragDrop.Core","Windows.ApplicationModel.DataTransfer.ShareTarget","Windows.ApplicationModel.Email","Windows.ApplicationModel.Email.DataProvider","Windows.ApplicationModel.ExtendedExecution","Windows.ApplicationModel.ExtendedExecution.Foreground","Windows.ApplicationModel.Holographic","Windows.ApplicationModel.LockScreen","Windows.ApplicationModel.Payments","Windows.ApplicationModel.Payments.Provider","Windows.ApplicationModel.Preview.Holographic","Windows.ApplicationModel.Preview.InkWorkspace","Windows.ApplicationModel.Preview.Notes","Windows.ApplicationModel.Resources","Windows.ApplicationModel.Resources.Core","Windows.ApplicationModel.Resources.Management","Windows.ApplicationModel.Search","Windows.ApplicationModel.Search.Core","Windows.ApplicationModel.SocialInfo","Windows.ApplicationModel.SocialInfo.Provider","Windows.ApplicationModel.Store","Windows.ApplicationModel.Store.LicenseManagement","Windows.ApplicationModel.Store.Preview","Windows.ApplicationModel.Store.Preview.InstallControl","Windows.ApplicationModel.UserActivities","Windows.ApplicationModel.UserActivities.Core","Windows.ApplicationModel.UserDataAccounts","Windows.ApplicationModel.UserDataAccounts.Provider","Windows.ApplicationModel.UserDataAccounts.SystemAccess","Windows.ApplicationModel.UserDataTasks","Windows.ApplicationModel.UserDataTasks.DataProvider","Windows.ApplicationModel.VoiceCommands","Windows.ApplicationModel.Wallet","Windows.ApplicationModel.Wallet.System","Windows.Data.Html","Windows.Data.Json","Windows.Data.Pdf","Windows.Data.Text","Windows.Data.Xml.Dom","Windows.Data.Xml.Xsl","Windows.Devices","Windows.Devices.Adc","Windows.Devices.Adc.Provider","Windows.Devices.AllJoyn","Windows.Devices.Background","Windows.Devices.Bluetooth","Windows.Devices.Bluetooth.Advertisement","Windows.Devices.Bluetooth.Background","Windows.Devices.Bluetooth.GenericAttributeProfile","Windows.Devices.Bluetooth.Rfcomm","Windows.Devices.Custom","Windows.Devices.Display","Windows.Devices.Display.Core","Windows.Devices.Enumeration","Windows.Devices.Enumeration.Pnp","Windows.Devices.Geolocation","Windows.Devices.Geolocation.Geofencing","Windows.Devices.Geolocation.Provider","Windows.Devices.Gpio","Windows.Devices.Gpio.Provider","Windows.Devices.Haptics","Windows.Devices.HumanInterfaceDevice","Windows.Devices.I2c","Windows.Devices.I2c.Provider","Windows.Devices.Input","Windows.Devices.Input.Preview","Windows.Devices.Lights","Windows.Devices.Lights.Effects","Windows.Devices.Midi","Windows.Devices.Perception","Windows.Devices.Perception.Provider","Windows.Devices.PointOfService","Windows.Devices.PointOfService.Provider","Windows.Devices.Portable","Windows.Devices.Power","Windows.Devices.Printers","Windows.Devices.Printers.Extensions","Windows.Devices.Pwm","Windows.Devices.Pwm.Provider","Windows.Devices.Radios","Windows.Devices.Scanners","Windows.Devices.Sensors","Windows.Devices.Sensors.Custom","Windows.Devices.SerialCommunication","Windows.Devices.SmartCards","Windows.Devices.Sms","Windows.Devices.Spi","Windows.Devices.Spi.Provider","Windows.Devices.Usb","Windows.Devices.WiFi","Windows.Devices.WiFiDirect","Windows.Devices.WiFiDirect.Services","Windows.Embedded.DeviceLockdown","Windows.Foundation","Windows.Foundation.Collections","Windows.Foundation.Diagnostics","Windows.Foundation.Metadata","Windows.Foundation.Numerics","Windows.Gaming.Input","Windows.Gaming.Input.Custom","Windows.Gaming.Input.ForceFeedback","Windows.Gaming.Input.Preview","Windows.Gaming.Preview","Windows.Gaming.Preview.GamesEnumeration","Windows.Gaming.UI","Windows.Gaming.XboxLive","Windows.Gaming.XboxLive.Storage","Windows.Globalization","Windows.Globalization.Collation","Windows.Globalization.DateTimeFormatting","Windows.Globalization.Fonts","Windows.Globalization.NumberFormatting","Windows.Globalization.PhoneNumberFormatting","Windows.Graphics","Windows.Graphics.Capture","Windows.Graphics.DirectX","Windows.Graphics.DirectX.Direct3D11","Windows.Graphics.Display","Windows.Graphics.Display.Core","Windows.Graphics.Effects","Windows.Graphics.Holographic","Windows.Graphics.Imaging","Windows.Graphics.Printing","Windows.Graphics.Printing.OptionDetails","Windows.Graphics.Printing.PrintSupport","Windows.Graphics.Printing.PrintTicket","Windows.Graphics.Printing.Workflow","Windows.Graphics.Printing3D","Windows.Management","Windows.Management.Core","Windows.Management.Deployment","Windows.Management.Deployment.Preview","Windows.Management.Policies","Windows.Management.Update","Windows.Management.Workplace","Windows.Media","Windows.Media.AppBroadcasting","Windows.Media.AppRecording","Windows.Media.Audio","Windows.Media.Capture","Windows.Media.Capture.Core","Windows.Media.Capture.Frames","Windows.Media.Casting","Windows.Media.ClosedCaptioning","Windows.Media.ContentRestrictions","Windows.Media.Control","Windows.Media.Core","Windows.Media.Core.Preview","Windows.Media.Devices","Windows.Media.Devices.Core","Windows.Media.DialProtocol","Windows.Media.Editing","Windows.Media.Effects","Windows.Media.FaceAnalysis","Windows.Media.Import","Windows.Media.MediaProperties","Windows.Media.Miracast","Windows.Media.Ocr","Windows.Media.PlayTo","Windows.Media.Playback","Windows.Media.Playlists","Windows.Media.Protection","Windows.Media.Protection.PlayReady","Windows.Media.Render","Windows.Media.SpeechRecognition","Windows.Media.SpeechSynthesis","Windows.Media.Streaming.Adaptive","Windows.Media.Transcoding","Windows.Networking","Windows.Networking.BackgroundTransfer","Windows.Networking.Connectivity","Windows.Networking.NetworkOperators","Windows.Networking.Proximity","Windows.Networking.PushNotifications","Windows.Networking.ServiceDiscovery.Dnssd","Windows.Networking.Sockets","Windows.Networking.Vpn","Windows.Networking.XboxLive","Windows.Perception","Windows.Perception.Automation.Core","Windows.Perception.People","Windows.Perception.Spatial","Windows.Perception.Spatial.Preview","Windows.Perception.Spatial.Surfaces","Windows.Phone","Windows.Phone.ApplicationModel","Windows.Phone.Devices.Notification","Windows.Phone.Devices.Power","Windows.Phone.Management.Deployment","Windows.Phone.Media.Devices","Windows.Phone.Notification.Management","Windows.Phone.PersonalInformation","Windows.Phone.PersonalInformation.Provisioning","Windows.Phone.Speech.Recognition","Windows.Phone.StartScreen","Windows.Phone.System","Windows.Phone.System.Power","Windows.Phone.System.Profile","Windows.Phone.System.UserProfile.GameServices.Core","Windows.Phone.UI.Input","Windows.Security.Authentication.Identity","Windows.Security.Authentication.Identity.Core","Windows.Security.Authentication.Identity.Provider","Windows.Security.Authentication.OnlineId","Windows.Security.Authentication.Web","Windows.Security.Authentication.Web.Core","Windows.Security.Authentication.Web.Provider","Windows.Security.Authorization.AppCapabilityAccess","Windows.Security.Credentials","Windows.Security.Credentials.UI","Windows.Security.Cryptography","Windows.Security.Cryptography.Certificates","Windows.Security.Cryptography.Core","Windows.Security.Cryptography.DataProtection","Windows.Security.DataProtection","Windows.Security.EnterpriseData","Windows.Security.ExchangeActiveSyncProvisioning","Windows.Security.Isolation","Windows.Services.Cortana","Windows.Services.Maps","Windows.Services.Maps.Guidance","Windows.Services.Maps.LocalSearch","Windows.Services.Maps.OfflineMaps","Windows.Services.Store","Windows.Services.TargetedContent","Windows.Storage","Windows.Storage.AccessCache","Windows.Storage.BulkAccess","Windows.Storage.Compression","Windows.Storage.FileProperties","Windows.Storage.Pickers","Windows.Storage.Pickers.Provider","Windows.Storage.Provider","Windows.Storage.Search","Windows.Storage.Streams","Windows.System","Windows.System.Diagnostics","Windows.System.Diagnostics.DevicePortal","Windows.System.Diagnostics.Telemetry","Windows.System.Diagnostics.TraceReporting","Windows.System.Display","Windows.System.Implementation.FileExplorer","Windows.System.Inventory","Windows.System.Power","Windows.System.Power.Diagnostics","Windows.System.Preview","Windows.System.Profile","Windows.System.Profile.SystemManufacturers","Windows.System.RemoteDesktop","Windows.System.RemoteDesktop.Input","Windows.System.RemoteDesktop.Provider","Windows.System.RemoteSystems","Windows.System.Threading","Windows.System.Threading.Core","Windows.System.Update","Windows.System.UserProfile","Windows.UI","Windows.UI.Accessibility","Windows.UI.ApplicationSettings","Windows.UI.Composition","Windows.UI.Composition.Core","Windows.UI.Composition.Desktop","Windows.UI.Composition.Diagnostics","Windows.UI.Composition.Effects","Windows.UI.Composition.Interactions","Windows.UI.Composition.Scenes","Windows.UI.Core","Windows.UI.Core.AnimationMetrics","Windows.UI.Core.Preview","Windows.UI.Input","Windows.UI.Input.Core","Windows.UI.Input.Inking","Windows.UI.Input.Inking.Analysis","Windows.UI.Input.Inking.Core","Windows.UI.Input.Inking.Preview","Windows.UI.Input.Preview","Windows.UI.Input.Preview.Injection","Windows.UI.Input.Spatial","Windows.UI.Notifications","Windows.UI.Notifications.Management","Windows.UI.Notifications.Preview","Windows.UI.Popups","Windows.UI.Shell","Windows.UI.StartScreen","Windows.UI.Text","Windows.UI.Text.Core","Windows.UI.UIAutomation","Windows.UI.UIAutomation.Core","Windows.UI.ViewManagement","Windows.UI.ViewManagement.Core","Windows.UI.WebUI","Windows.UI.WebUI.Core","Windows.UI.WindowManagement","Windows.UI.WindowManagement.Preview","Windows.UI.Xaml","Windows.UI.Xaml.Automation","Windows.UI.Xaml.Automation.Peers","Windows.UI.Xaml.Automation.Provider","Windows.UI.Xaml.Automation.Text","Windows.UI.Xaml.Controls","Windows.UI.Xaml.Controls.Maps","Windows.UI.Xaml.Controls.Primitives","Windows.UI.Xaml.Core.Direct","Windows.UI.Xaml.Data","Windows.UI.Xaml.Documents","Windows.UI.Xaml.Hosting","Windows.UI.Xaml.Input","Windows.UI.Xaml.Interop","Windows.UI.Xaml.Markup","Windows.UI.Xaml.Media","Windows.UI.Xaml.Media.Animation","Windows.UI.Xaml.Media.Imaging","Windows.UI.Xaml.Media.Media3D","Windows.UI.Xaml.Navigation","Windows.UI.Xaml.Printing","Windows.UI.Xaml.Resources","Windows.UI.Xaml.Shapes","Windows.Wdk.Devices.Bluetooth","Windows.Wdk.Devices.HumanInterfaceDevice","Windows.Wdk.Foundation","Windows.Wdk.Graphics.Direct3D","Windows.Wdk.NetworkManagement.Ndis","Windows.Wdk.NetworkManagement.WindowsFilteringPlatform","Windows.Wdk.Storage.FileSystem","Windows.Wdk.Storage.FileSystem.Minifilters","Windows.Wdk.System.IO","Windows.Wdk.System.Memory","Windows.Wdk.System.OfflineRegistry","Windows.Wdk.System.Registry","Windows.Wdk.System.SystemInformation","Windows.Wdk.System.SystemServices","Windows.Wdk.System.Threading","Windows.Web","Windows.Web.AtomPub","Windows.Web.Http","Windows.Web.Http.Diagnostics","Windows.Web.Http.Filters","Windows.Web.Http.Headers","Windows.Web.Syndication","Windows.Web.UI","Windows.Web.UI.Interop","Windows.Win32.AI.MachineLearning.DirectML","Windows.Win32.AI.MachineLearning.WinML","Windows.Win32.Data.HtmlHelp","Windows.Win32.Data.RightsManagement","Windows.Win32.Data.Xml.MsXml","Windows.Win32.Data.Xml.XmlLite","Windows.Win32.Devices.AllJoyn","Windows.Win32.Devices.BiometricFramework","Windows.Win32.Devices.Bluetooth","Windows.Win32.Devices.Communication","Windows.Win32.Devices.DeviceAccess","Windows.Win32.Devices.DeviceAndDriverInstallation","Windows.Win32.Devices.DeviceQuery","Windows.Win32.Devices.Display","Windows.Win32.Devices.Enumeration.Pnp","Windows.Win32.Devices.Fax","Windows.Win32.Devices.FunctionDiscovery","Windows.Win32.Devices.Geolocation","Windows.Win32.Devices.HumanInterfaceDevice","Windows.Win32.Devices.ImageAcquisition","Windows.Win32.Devices.PortableDevices","Windows.Win32.Devices.Properties","Windows.Win32.Devices.Pwm","Windows.Win32.Devices.Sensors","Windows.Win32.Devices.SerialCommunication","Windows.Win32.Devices.Tapi","Windows.Win32.Devices.Usb","Windows.Win32.Devices.WebServicesOnDevices","Windows.Win32.Foundation","Windows.Win32.Foundation.Metadata","Windows.Win32.Gaming","Windows.Win32.Globalization","Windows.Win32.Graphics.CompositionSwapchain","Windows.Win32.Graphics.DXCore","Windows.Win32.Graphics.Direct2D","Windows.Win32.Graphics.Direct2D.Common","Windows.Win32.Graphics.Direct3D","Windows.Win32.Graphics.Direct3D.Dxc","Windows.Win32.Graphics.Direct3D.Fxc","Windows.Win32.Graphics.Direct3D10","Windows.Win32.Graphics.Direct3D11","Windows.Win32.Graphics.Direct3D11on12","Windows.Win32.Graphics.Direct3D12","Windows.Win32.Graphics.Direct3D9","Windows.Win32.Graphics.Direct3D9on12","Windows.Win32.Graphics.DirectComposition","Windows.Win32.Graphics.DirectDraw","Windows.Win32.Graphics.DirectManipulation","Windows.Win32.Graphics.DirectWrite","Windows.Win32.Graphics.Dwm","Windows.Win32.Graphics.Dxgi","Windows.Win32.Graphics.Dxgi.Common","Windows.Win32.Graphics.Gdi","Windows.Win32.Graphics.GdiPlus","Windows.Win32.Graphics.Hlsl","Windows.Win32.Graphics.Imaging","Windows.Win32.Graphics.Imaging.D2D","Windows.Win32.Graphics.OpenGL","Windows.Win32.Graphics.Printing","Windows.Win32.Graphics.Printing.PrintTicket","Windows.Win32.Management.MobileDeviceManagementRegistration","Windows.Win32.Media","Windows.Win32.Media.Audio","Windows.Win32.Media.Audio.Apo","Windows.Win32.Media.Audio.DirectMusic","Windows.Win32.Media.Audio.DirectSound","Windows.Win32.Media.Audio.Endpoints","Windows.Win32.Media.Audio.XAudio2","Windows.Win32.Media.DeviceManager","Windows.Win32.Media.DirectShow","Windows.Win32.Media.DirectShow.Tv","Windows.Win32.Media.DirectShow.Xml","Windows.Win32.Media.DxMediaObjects","Windows.Win32.Media.KernelStreaming","Windows.Win32.Media.LibrarySharingServices","Windows.Win32.Media.MediaFoundation","Windows.Win32.Media.MediaPlayer","Windows.Win32.Media.Multimedia","Windows.Win32.Media.PictureAcquisition","Windows.Win32.Media.Speech","Windows.Win32.Media.Streaming","Windows.Win32.Media.WindowsMediaFormat","Windows.Win32.NetworkManagement.Dhcp","Windows.Win32.NetworkManagement.Dns","Windows.Win32.NetworkManagement.InternetConnectionWizard","Windows.Win32.NetworkManagement.IpHelper","Windows.Win32.NetworkManagement.MobileBroadband","Windows.Win32.NetworkManagement.Multicast","Windows.Win32.NetworkManagement.Ndis","Windows.Win32.NetworkManagement.NetBios","Windows.Win32.NetworkManagement.NetManagement","Windows.Win32.NetworkManagement.NetShell","Windows.Win32.NetworkManagement.NetworkDiagnosticsFramework","Windows.Win32.NetworkManagement.NetworkPolicyServer","Windows.Win32.NetworkManagement.P2P","Windows.Win32.NetworkManagement.QoS","Windows.Win32.NetworkManagement.Rras","Windows.Win32.NetworkManagement.Snmp","Windows.Win32.NetworkManagement.WNet","Windows.Win32.NetworkManagement.WebDav","Windows.Win32.NetworkManagement.WiFi","Windows.Win32.NetworkManagement.WindowsConnectNow","Windows.Win32.NetworkManagement.WindowsConnectionManager","Windows.Win32.NetworkManagement.WindowsFilteringPlatform","Windows.Win32.NetworkManagement.WindowsFirewall","Windows.Win32.NetworkManagement.WindowsNetworkVirtualization","Windows.Win32.Networking.ActiveDirectory","Windows.Win32.Networking.BackgroundIntelligentTransferService","Windows.Win32.Networking.Clustering","Windows.Win32.Networking.HttpServer","Windows.Win32.Networking.Ldap","Windows.Win32.Networking.NetworkListManager","Windows.Win32.Networking.RemoteDifferentialCompression","Windows.Win32.Networking.WebSocket","Windows.Win32.Networking.WinHttp","Windows.Win32.Networking.WinInet","Windows.Win32.Networking.WinSock","Windows.Win32.Networking.WindowsWebServices","Windows.Win32.Security","Windows.Win32.Security.AppLocker","Windows.Win32.Security.Authentication.Identity","Windows.Win32.Security.Authentication.Identity.Provider","Windows.Win32.Security.Authorization","Windows.Win32.Security.Authorization.UI","Windows.Win32.Security.ConfigurationSnapin","Windows.Win32.Security.Credentials","Windows.Win32.Security.Cryptography","Windows.Win32.Security.Cryptography.Catalog","Windows.Win32.Security.Cryptography.Certificates","Windows.Win32.Security.Cryptography.Sip","Windows.Win32.Security.Cryptography.UI","Windows.Win32.Security.DiagnosticDataQuery","Windows.Win32.Security.DirectoryServices","Windows.Win32.Security.EnterpriseData","Windows.Win32.Security.ExtensibleAuthenticationProtocol","Windows.Win32.Security.Isolation","Windows.Win32.Security.LicenseProtection","Windows.Win32.Security.NetworkAccessProtection","Windows.Win32.Security.Tpm","Windows.Win32.Security.WinTrust","Windows.Win32.Security.WinWlx","Windows.Win32.Storage.Cabinets","Windows.Win32.Storage.CloudFilters","Windows.Win32.Storage.Compression","Windows.Win32.Storage.DataDeduplication","Windows.Win32.Storage.DistributedFileSystem","Windows.Win32.Storage.EnhancedStorage","Windows.Win32.Storage.FileHistory","Windows.Win32.Storage.FileServerResourceManager","Windows.Win32.Storage.FileSystem","Windows.Win32.Storage.Imapi","Windows.Win32.Storage.IndexServer","Windows.Win32.Storage.InstallableFileSystems","Windows.Win32.Storage.IscsiDisc","Windows.Win32.Storage.Jet","Windows.Win32.Storage.Nvme","Windows.Win32.Storage.OfflineFiles","Windows.Win32.Storage.OperationRecorder","Windows.Win32.Storage.Packaging.Appx","Windows.Win32.Storage.Packaging.Opc","Windows.Win32.Storage.ProjectedFileSystem","Windows.Win32.Storage.StructuredStorage","Windows.Win32.Storage.Vhd","Windows.Win32.Storage.VirtualDiskService","Windows.Win32.Storage.Vss","Windows.Win32.Storage.Xps","Windows.Win32.Storage.Xps.Printing","Windows.Win32.System.AddressBook","Windows.Win32.System.Antimalware","Windows.Win32.System.ApplicationInstallationAndServicing","Windows.Win32.System.ApplicationVerifier","Windows.Win32.System.AssessmentTool","Windows.Win32.System.ClrHosting","Windows.Win32.System.Com","Windows.Win32.System.Com.CallObj","Windows.Win32.System.Com.ChannelCredentials","Windows.Win32.System.Com.Events","Windows.Win32.System.Com.Marshal","Windows.Win32.System.Com.StructuredStorage","Windows.Win32.System.Com.UI","Windows.Win32.System.Com.Urlmon","Windows.Win32.System.ComponentServices","Windows.Win32.System.Console","Windows.Win32.System.Contacts","Windows.Win32.System.CorrelationVector","Windows.Win32.System.DataExchange","Windows.Win32.System.DeploymentServices","Windows.Win32.System.DesktopSharing","Windows.Win32.System.DeveloperLicensing","Windows.Win32.System.Diagnostics.Ceip","Windows.Win32.System.Diagnostics.ClrProfiling","Windows.Win32.System.Diagnostics.Debug","Windows.Win32.System.Diagnostics.Debug.ActiveScript","Windows.Win32.System.Diagnostics.Debug.Extensions","Windows.Win32.System.Diagnostics.Debug.WebApp","Windows.Win32.System.Diagnostics.Etw","Windows.Win32.System.Diagnostics.ProcessSnapshotting","Windows.Win32.System.Diagnostics.ToolHelp","Windows.Win32.System.Diagnostics.TraceLogging","Windows.Win32.System.DistributedTransactionCoordinator","Windows.Win32.System.Environment","Windows.Win32.System.ErrorReporting","Windows.Win32.System.EventCollector","Windows.Win32.System.EventLog","Windows.Win32.System.EventNotificationService","Windows.Win32.System.GroupPolicy","Windows.Win32.System.HostCompute","Windows.Win32.System.HostComputeNetwork","Windows.Win32.System.HostComputeSystem","Windows.Win32.System.Hypervisor","Windows.Win32.System.IO","Windows.Win32.System.Iis","Windows.Win32.System.Ioctl","Windows.Win32.System.JobObjects","Windows.Win32.System.Js","Windows.Win32.System.Kernel","Windows.Win32.System.LibraryLoader","Windows.Win32.System.Mailslots","Windows.Win32.System.Mapi","Windows.Win32.System.Memory","Windows.Win32.System.Memory.NonVolatile","Windows.Win32.System.MessageQueuing","Windows.Win32.System.MixedReality","Windows.Win32.System.Mmc","Windows.Win32.System.Ole","Windows.Win32.System.ParentalControls","Windows.Win32.System.PasswordManagement","Windows.Win32.System.Performance","Windows.Win32.System.Performance.HardwareCounterProfiling","Windows.Win32.System.Pipes","Windows.Win32.System.Power","Windows.Win32.System.ProcessStatus","Windows.Win32.System.RealTimeCommunications","Windows.Win32.System.Recovery","Windows.Win32.System.Registry","Windows.Win32.System.RemoteAssistance","Windows.Win32.System.RemoteDesktop","Windows.Win32.System.RemoteManagement","Windows.Win32.System.RestartManager","Windows.Win32.System.Restore","Windows.Win32.System.Rpc","Windows.Win32.System.Search","Windows.Win32.System.Search.Common","Windows.Win32.System.SecurityCenter","Windows.Win32.System.ServerBackup","Windows.Win32.System.Services","Windows.Win32.System.SettingsManagementInfrastructure","Windows.Win32.System.SetupAndMigration","Windows.Win32.System.Shutdown","Windows.Win32.System.SideShow","Windows.Win32.System.StationsAndDesktops","Windows.Win32.System.SubsystemForLinux","Windows.Win32.System.SystemInformation","Windows.Win32.System.SystemServices","Windows.Win32.System.TaskScheduler","Windows.Win32.System.Threading","Windows.Win32.System.Time","Windows.Win32.System.TpmBaseServices","Windows.Win32.System.TransactionServer","Windows.Win32.System.UpdateAgent","Windows.Win32.System.UpdateAssessment","Windows.Win32.System.UserAccessLogging","Windows.Win32.System.Variant","Windows.Win32.System.VirtualDosMachines","Windows.Win32.System.WinRT","Windows.Win32.System.WinRT.AllJoyn","Windows.Win32.System.WinRT.Composition","Windows.Win32.System.WinRT.CoreInputView","Windows.Win32.System.WinRT.Direct3D11","Windows.Win32.System.WinRT.Display","Windows.Win32.System.WinRT.Graphics.Capture","Windows.Win32.System.WinRT.Graphics.Direct2D","Windows.Win32.System.WinRT.Graphics.Imaging","Windows.Win32.System.WinRT.Holographic","Windows.Win32.System.WinRT.Isolation","Windows.Win32.System.WinRT.ML","Windows.Win32.System.WinRT.Media","Windows.Win32.System.WinRT.Metadata","Windows.Win32.System.WinRT.Pdf","Windows.Win32.System.WinRT.Printing","Windows.Win32.System.WinRT.Shell","Windows.Win32.System.WinRT.Storage","Windows.Win32.System.WinRT.Xaml","Windows.Win32.System.WindowsProgramming","Windows.Win32.System.WindowsSync","Windows.Win32.System.Wmi","Windows.Win32.UI.Accessibility","Windows.Win32.UI.Animation","Windows.Win32.UI.ColorSystem","Windows.Win32.UI.Controls","Windows.Win32.UI.Controls.Dialogs","Windows.Win32.UI.Controls.RichEdit","Windows.Win32.UI.HiDpi","Windows.Win32.UI.Input","Windows.Win32.UI.Input.Ime","Windows.Win32.UI.Input.Ink","Windows.Win32.UI.Input.KeyboardAndMouse","Windows.Win32.UI.Input.Pointer","Windows.Win32.UI.Input.Radial","Windows.Win32.UI.Input.Touch","Windows.Win32.UI.Input.XboxController","Windows.Win32.UI.InteractionContext","Windows.Win32.UI.LegacyWindowsEnvironmentFeatures","Windows.Win32.UI.Magnification","Windows.Win32.UI.Notifications","Windows.Win32.UI.Ribbon","Windows.Win32.UI.Shell","Windows.Win32.UI.Shell.Common","Windows.Win32.UI.Shell.PropertiesSystem","Windows.Win32.UI.TabletPC","Windows.Win32.UI.TextServices","Windows.Win32.UI.WindowsAndMessaging","Windows.Win32.UI.Wpf","Windows.Win32.UI.Xaml.Diagnostics","Windows.Win32.Web.InternetExplorer","Windows.Win32.Web.MsHtml"],"feature_map":["AI_MachineLearning","ApplicationModel","ApplicationModel_Activation","ApplicationModel_AppExtensions","ApplicationModel_AppService","ApplicationModel_Appointments","ApplicationModel_Appointments_AppointmentsProvider","ApplicationModel_Appointments_DataProvider","ApplicationModel_Background","ApplicationModel_Calls","ApplicationModel_Calls_Background","ApplicationModel_Calls_Provider","ApplicationModel_Chat","ApplicationModel_CommunicationBlocking","ApplicationModel_Contacts","ApplicationModel_Contacts_DataProvider","ApplicationModel_Contacts_Provider","ApplicationModel_ConversationalAgent","ApplicationModel_Core","ApplicationModel_DataTransfer","ApplicationModel_DataTransfer_DragDrop","ApplicationModel_DataTransfer_DragDrop_Core","ApplicationModel_DataTransfer_ShareTarget","ApplicationModel_Email","ApplicationModel_Email_DataProvider","ApplicationModel_ExtendedExecution","ApplicationModel_ExtendedExecution_Foreground","ApplicationModel_Holographic","ApplicationModel_LockScreen","ApplicationModel_Payments","ApplicationModel_Payments_Provider","ApplicationModel_Preview_Holographic","ApplicationModel_Preview_InkWorkspace","ApplicationModel_Preview_Notes","ApplicationModel_Resources","ApplicationModel_Resources_Core","Foundation_Collections","ApplicationModel_Resources_Management","ApplicationModel_Search","ApplicationModel_Search_Core","ApplicationModel_UserActivities","ApplicationModel_UserActivities_Core","ApplicationModel_UserDataAccounts","ApplicationModel_UserDataAccounts_Provider","ApplicationModel_UserDataAccounts_SystemAccess","ApplicationModel_UserDataTasks","ApplicationModel_UserDataTasks_DataProvider","ApplicationModel_VoiceCommands","ApplicationModel_Wallet","ApplicationModel_Wallet_System","Data_Html","Data_Json","Data_Pdf","Data_Text","Data_Xml_Dom","Data_Xml_Xsl","Devices","Devices_Adc","Devices_Adc_Provider","Devices_Background","Devices_Bluetooth","Devices_Bluetooth_Advertisement","Devices_Bluetooth_Background","Devices_Bluetooth_GenericAttributeProfile","Devices_Bluetooth_Rfcomm","Devices_Custom","Devices_Display","Devices_Display_Core","Foundation_Numerics","Devices_Enumeration","Storage_Streams","Devices_Enumeration_Pnp","Devices_Geolocation","Devices_Geolocation_Geofencing","Devices_Geolocation_Provider","Devices_Gpio","Foundation","Devices_Gpio_Provider","Devices_Haptics","Devices_HumanInterfaceDevice","Devices_I2c","Devices_I2c_Provider","Devices_Input","Devices_Input_Preview","Devices_Lights","Devices_Lights_Effects","Devices_Midi","Devices_PointOfService","Devices_PointOfService_Provider","Devices_Portable","Devices_Power","Devices_Printers","Devices_Printers_Extensions","Devices_Pwm","Devices_Pwm_Provider","Devices_Radios","Devices_Scanners","Devices_Sensors","Devices_Sensors_Custom","Devices_SerialCommunication","Devices_SmartCards","Devices_Sms","Devices_Spi","Devices_Spi_Provider","Devices_Usb","Devices_WiFi","Devices_WiFiDirect","Devices_WiFiDirect_Services","Embedded_DeviceLockdown","Foundation_Diagnostics","Foundation_Metadata","Gaming_Input","Gaming_Input_Custom","Gaming_Input_ForceFeedback","Gaming_Input_Preview","Gaming_Preview","Gaming_Preview_GamesEnumeration","Gaming_UI","Gaming_XboxLive","Gaming_XboxLive_Storage","Globalization","Globalization_Collation","Globalization_DateTimeFormatting","Globalization_Fonts","Globalization_NumberFormatting","Globalization_PhoneNumberFormatting","Graphics","Graphics_Capture","Graphics_DirectX","Graphics_DirectX_Direct3D11","Graphics_Display","Graphics_Display_Core","Graphics_Effects","Graphics_Holographic","Graphics_Imaging","Graphics_Printing","Graphics_Printing_OptionDetails","Graphics_Printing_PrintSupport","Graphics_Printing_PrintTicket","Graphics_Printing_Workflow","Graphics_Printing3D","Management","Management_Core","Management_Deployment","Management_Deployment_Preview","Management_Policies","Management_Update","Management_Workplace","Media","Media_AppBroadcasting","Media_AppRecording","Media_Audio","Media_Capture","Media_Capture_Core","Media_Capture_Frames","Media_Casting","Media_ClosedCaptioning","Media_ContentRestrictions","Media_Control","Media_Core","Media_Effects","Media_Core_Preview","Media_Devices","Media_Devices_Core","Media_DialProtocol","Media_Editing","Media_FaceAnalysis","Media_Import","Media_MediaProperties","Media_Miracast","Media_Ocr","Media_PlayTo","Media_Playback","Media_Playlists","Media_Protection","Media_Protection_PlayReady","Media_Render","Media_SpeechRecognition","Media_SpeechSynthesis","Media_Streaming_Adaptive","Media_Transcoding","Networking","Networking_BackgroundTransfer","Networking_Connectivity","Networking_NetworkOperators","Networking_Proximity","Networking_PushNotifications","Networking_ServiceDiscovery_Dnssd","Networking_Sockets","Networking_Vpn","Networking_XboxLive","Perception","Perception_Automation_Core","Perception_People","Perception_Spatial","Perception_Spatial_Preview","Perception_Spatial_Surfaces","Phone","Phone_ApplicationModel","Phone_Devices_Notification","Phone_Devices_Power","Phone_Management_Deployment","Phone_Media_Devices","Phone_Notification_Management","Phone_PersonalInformation","Phone_PersonalInformation_Provisioning","Phone_Speech_Recognition","Phone_StartScreen","Phone_System","Phone_System_Power","Phone_System_Profile","Phone_System_UserProfile_GameServices_Core","Phone_UI_Input","Security_Authentication_Identity","Security_Authentication_Identity_Core","Security_Authentication_OnlineId","Security_Authentication_Web","Security_Authentication_Web_Core","Security_Authentication_Web_Provider","Security_Authorization_AppCapabilityAccess","Security_Credentials","Security_Credentials_UI","Security_Cryptography","Security_Cryptography_Certificates","Security_Cryptography_Core","Security_Cryptography_DataProtection","Security_DataProtection","Security_EnterpriseData","Security_ExchangeActiveSyncProvisioning","Security_Isolation","Services_Maps","Services_Maps_Guidance","Services_Maps_LocalSearch","Services_Maps_OfflineMaps","Services_Store","Services_TargetedContent","Storage","Storage_AccessCache","Storage_BulkAccess","Storage_Compression","Storage_FileProperties","Storage_Pickers","Storage_Pickers_Provider","Storage_Provider","Storage_Search","System","System_Diagnostics","System_Diagnostics_DevicePortal","System_Diagnostics_Telemetry","System_Diagnostics_TraceReporting","System_Display","System_Implementation_FileExplorer","System_Inventory","System_Power","System_Profile","System_Profile_SystemManufacturers","System_RemoteDesktop","System_RemoteDesktop_Input","System_RemoteDesktop_Provider","System_RemoteSystems","System_Threading","System_Threading_Core","System_Update","System_UserProfile","UI","UI_Accessibility","UI_ApplicationSettings","UI_Popups","UI_Composition","UI_Composition_Core","UI_Composition_Desktop","UI_Composition_Diagnostics","UI_Composition_Effects","UI_Composition_Interactions","UI_Composition_Scenes","UI_Core","UI_Core_AnimationMetrics","UI_Core_Preview","UI_Input","UI_Input_Core","UI_Input_Inking","UI_Input_Inking_Analysis","UI_Input_Inking_Core","UI_Input_Inking_Preview","UI_Input_Preview","UI_Input_Preview_Injection","UI_Input_Spatial","UI_Notifications","UI_Notifications_Management","UI_Notifications_Preview","UI_Shell","UI_StartScreen","UI_Text","UI_Text_Core","UI_UIAutomation","UI_UIAutomation_Core","UI_ViewManagement","UI_ViewManagement_Core","UI_WebUI","UI_WebUI_Core","UI_WindowManagement","UI_WindowManagement_Preview","Wdk_Devices_Bluetooth","Win32_Devices_Properties","Wdk_Devices_HumanInterfaceDevice","Win32_Foundation","Wdk_Foundation","Wdk_System_SystemServices","Win32_Security","Wdk_Storage_FileSystem","Win32_System_IO","Win32_System_Kernel","Win32_System_Power","Wdk_Graphics_Direct3D","Win32_Graphics_Direct3D9","Win32_Graphics_DirectDraw","Win32_Graphics_Gdi","Wdk_NetworkManagement_Ndis","Win32_Networking_WinSock","Win32_NetworkManagement_Ndis","Wdk_NetworkManagement_WindowsFilteringPlatform","Win32_NetworkManagement_WindowsFilteringPlatform","Win32_System_Rpc","Win32_System_Memory","Win32_Storage_FileSystem","Win32_System_Ioctl","Win32_Security_Authentication_Identity","Wdk_Storage_FileSystem_Minifilters","Win32_Storage_InstallableFileSystems","Wdk_System_IO","Wdk_System_Memory","Wdk_System_OfflineRegistry","Wdk_System_Registry","Wdk_System_SystemInformation","Win32_System_Diagnostics_Debug","Win32_System_Diagnostics_Etw","Win32_System_SystemInformation","Win32_Storage_IscsiDisc","Win32_System_WindowsProgramming","Win32_System_SystemServices","Win32_System_Threading","Wdk_System_Threading","Web","Web_AtomPub","Web_Http","Web_Http_Diagnostics","Web_Http_Filters","Web_Http_Headers","Web_Syndication","Web_UI","Web_UI_Interop","Win32_AI_MachineLearning_DirectML","Win32_Graphics_Direct3D12","Win32_AI_MachineLearning_WinML","Win32_Data_HtmlHelp","Win32_UI_Controls","Win32_System_Com","Win32_Data_RightsManagement","Win32_Data_Xml_MsXml","Win32_Data_Xml_XmlLite","Win32_Devices_AllJoyn","Win32_Devices_BiometricFramework","Win32_Devices_Bluetooth","Win32_Devices_Communication","Win32_Devices_DeviceAccess","Win32_Devices_DeviceAndDriverInstallation","Win32_System_Registry","Win32_UI_WindowsAndMessaging","Win32_Devices_DeviceQuery","Win32_Devices_Display","Win32_System_Console","Win32_Graphics_OpenGL","Win32_UI_ColorSystem","Win32_Devices_Enumeration_Pnp","Win32_Devices_Fax","Win32_Devices_FunctionDiscovery","Win32_UI_Shell_PropertiesSystem","Win32_Devices_Geolocation","Win32_Devices_HumanInterfaceDevice","Win32_Devices_ImageAcquisition","Win32_System_Variant","Win32_Devices_PortableDevices","Win32_Devices_Pwm","Win32_Devices_Sensors","Win32_Devices_SerialCommunication","Win32_Devices_Tapi","Win32_System_AddressBook","Win32_Devices_Usb","Win32_Devices_WebServicesOnDevices","Win32_Security_Cryptography","Win32_Gaming","Win32_Globalization","Win32_Graphics_CompositionSwapchain","Win32_Graphics_Dxgi_Common","Win32_Graphics_DXCore","Win32_Graphics_Direct2D","Win32_Graphics_Direct2D_Common","Win32_Graphics_Dxgi","Win32_Graphics_Direct3D","Win32_Graphics_Direct3D_Dxc","Win32_Graphics_Direct3D_Fxc","Win32_Graphics_Direct3D11","Win32_Graphics_Direct3D10","Win32_Graphics_Direct3D11on12","Win32_Graphics_Direct3D9on12","Win32_Graphics_DirectComposition","Win32_Graphics_DirectManipulation","Win32_Graphics_DirectWrite","Win32_Graphics_Dwm","Win32_Graphics_GdiPlus","Win32_Graphics_Hlsl","Win32_Graphics_Imaging","Win32_Graphics_Imaging_D2D","Win32_Graphics_Printing","Win32_Storage_Xps","Win32_System_Ole","Win32_Graphics_Printing_PrintTicket","Win32_Management_MobileDeviceManagementRegistration","Win32_Media","Win32_Media_Multimedia","Win32_Media_Audio","Win32_Media_Audio_Apo","Win32_Media_Audio_DirectMusic","Win32_Media_Audio_DirectSound","Win32_Media_Audio_Endpoints","Win32_Media_Audio_XAudio2","Win32_Media_DeviceManager","Win32_Media_DirectShow","Win32_Media_MediaFoundation","Win32_System_Com_StructuredStorage","Win32_Media_DirectShow_Tv","Win32_Media_KernelStreaming","Win32_Media_DirectShow_Xml","Win32_Media_DxMediaObjects","Win32_Media_LibrarySharingServices","Win32_Media_MediaPlayer","Win32_UI_Controls_Dialogs","Win32_Media_PictureAcquisition","Win32_Media_Speech","Win32_Media_Streaming","Win32_Media_WindowsMediaFormat","Win32_NetworkManagement_Dhcp","Win32_NetworkManagement_Dns","Win32_NetworkManagement_InternetConnectionWizard","Win32_NetworkManagement_IpHelper","Win32_NetworkManagement_MobileBroadband","Win32_NetworkManagement_Multicast","Win32_NetworkManagement_NetBios","Win32_NetworkManagement_NetManagement","Win32_NetworkManagement_NetShell","Win32_NetworkManagement_NetworkDiagnosticsFramework","Win32_NetworkManagement_NetworkPolicyServer","Win32_NetworkManagement_P2P","Win32_NetworkManagement_QoS","Win32_NetworkManagement_Rras","Win32_NetworkManagement_Snmp","Win32_NetworkManagement_WNet","Win32_NetworkManagement_WebDav","Win32_NetworkManagement_WiFi","Win32_Security_ExtensibleAuthenticationProtocol","Win32_System_RemoteDesktop","Win32_NetworkManagement_WindowsConnectNow","Win32_NetworkManagement_WindowsConnectionManager","Win32_NetworkManagement_WindowsFirewall","Win32_NetworkManagement_WindowsNetworkVirtualization","Win32_Networking_ActiveDirectory","Win32_UI_Shell","Win32_Networking_BackgroundIntelligentTransferService","Win32_Networking_Clustering","Win32_System_Services","Win32_Networking_HttpServer","Win32_Networking_Ldap","Win32_Networking_NetworkListManager","Win32_Networking_RemoteDifferentialCompression","Win32_Networking_WebSocket","Win32_Networking_WinHttp","Win32_Networking_WinInet","Win32_Networking_WindowsWebServices","Win32_Security_AppLocker","Win32_Security_Credentials","Win32_System_PasswordManagement","Win32_Security_Authentication_Identity_Provider","Win32_Security_Authorization","Win32_Security_Authorization_UI","Win32_Security_ConfigurationSnapin","Win32_Security_Cryptography_Catalog","Win32_Security_Cryptography_Sip","Win32_Security_Cryptography_Certificates","Win32_Security_Cryptography_UI","Win32_Security_WinTrust","Win32_Security_DiagnosticDataQuery","Win32_Security_DirectoryServices","Win32_Security_EnterpriseData","Win32_Storage_Packaging_Appx","Win32_Security_Isolation","Win32_Security_LicenseProtection","Win32_Security_NetworkAccessProtection","Win32_Security_Tpm","Win32_Security_WinWlx","Win32_System_StationsAndDesktops","Win32_Storage_Cabinets","Win32_Storage_CloudFilters","Win32_System_CorrelationVector","Win32_Storage_Compression","Win32_Storage_DataDeduplication","Win32_Storage_DistributedFileSystem","Win32_Storage_EnhancedStorage","Win32_Storage_FileHistory","Win32_Storage_FileServerResourceManager","Win32_Storage_Imapi","Win32_Storage_IndexServer","Win32_Storage_Jet","Win32_Storage_StructuredStorage","Win32_Storage_Nvme","Win32_Storage_OfflineFiles","Win32_Storage_OperationRecorder","Win32_Storage_Packaging_Opc","Win32_Storage_ProjectedFileSystem","Win32_Storage_Vhd","Win32_Storage_VirtualDiskService","Win32_Storage_Vss","Win32_Storage_Xps_Printing","Win32_System_Antimalware","Win32_System_ApplicationInstallationAndServicing","Win32_System_ApplicationVerifier","Win32_System_AssessmentTool","Win32_UI_Accessibility","Win32_System_ClrHosting","Win32_System_Com_CallObj","Win32_System_Com_ChannelCredentials","Win32_System_Com_Events","Win32_System_Com_Marshal","Win32_System_Com_UI","Win32_System_Com_Urlmon","Win32_System_ComponentServices","Win32_System_Contacts","Win32_System_DataExchange","Win32_System_DeploymentServices","Win32_System_DesktopSharing","Win32_System_DeveloperLicensing","Win32_System_Diagnostics_Ceip","Win32_System_Diagnostics_ClrProfiling","Win32_System_WinRT_Metadata","Win32_System_Time","Win32_System_Diagnostics_Debug_ActiveScript","Win32_System_Diagnostics_Debug_Extensions","Win32_System_Diagnostics_ProcessSnapshotting","Win32_System_Diagnostics_ToolHelp","Win32_System_Diagnostics_TraceLogging","Win32_System_DistributedTransactionCoordinator","Win32_System_Environment","Win32_System_ErrorReporting","Win32_System_EventCollector","Win32_System_EventLog","Win32_System_EventNotificationService","Win32_System_GroupPolicy","Win32_System_Wmi","Win32_System_HostCompute","Win32_System_HostComputeNetwork","Win32_System_HostComputeSystem","Win32_System_Hypervisor","Win32_System_Iis","Win32_System_JobObjects","Win32_System_Js","Win32_System_LibraryLoader","Win32_System_Mailslots","Win32_System_Mapi","Win32_System_Memory_NonVolatile","Win32_System_MessageQueuing","Win32_System_MixedReality","Win32_System_Mmc","Win32_System_ParentalControls","Win32_System_Performance","Win32_System_Performance_HardwareCounterProfiling","Win32_System_Pipes","Win32_System_ProcessStatus","Win32_System_RealTimeCommunications","Win32_System_Recovery","Win32_System_RemoteAssistance","Win32_System_RemoteManagement","Win32_System_RestartManager","Win32_System_Restore","Win32_System_Search","Win32_System_Search_Common","Win32_System_SecurityCenter","Win32_System_ServerBackup","Win32_System_SettingsManagementInfrastructure","Win32_System_SetupAndMigration","Win32_System_Shutdown","Win32_System_SideShow","Win32_System_SubsystemForLinux","Win32_System_TaskScheduler","Win32_System_TpmBaseServices","Win32_System_TransactionServer","Win32_System_UpdateAgent","Win32_System_UpdateAssessment","Win32_System_UserAccessLogging","Win32_System_VirtualDosMachines","Win32_System_WinRT","Win32_System_WinRT_AllJoyn","Win32_System_WinRT_Composition","Win32_System_WinRT_CoreInputView","Win32_System_WinRT_Direct3D11","Win32_System_WinRT_Display","Win32_System_WinRT_Graphics_Capture","Win32_System_WinRT_Graphics_Direct2D","Win32_System_WinRT_Graphics_Imaging","Win32_System_WinRT_Holographic","Win32_System_WinRT_Isolation","Win32_System_WinRT_ML","Win32_System_WinRT_Media","Win32_System_WinRT_Pdf","Win32_System_WinRT_Printing","Win32_System_WinRT_Shell","Win32_System_WinRT_Storage","Win32_System_WindowsSync","Win32_UI_Animation","Win32_UI_Input_Pointer","Win32_UI_Controls_RichEdit","Win32_UI_HiDpi","Win32_UI_Input","Win32_UI_Input_Ime","Win32_UI_Input_KeyboardAndMouse","Win32_UI_Input_Ink","Win32_UI_Input_Radial","Win32_UI_Input_Touch","Win32_UI_Input_XboxController","Win32_UI_InteractionContext","Win32_UI_LegacyWindowsEnvironmentFeatures","Win32_UI_Magnification","Win32_UI_Notifications","Win32_UI_Ribbon","Win32_UI_Shell_Common","Win32_UI_TabletPC","Win32_UI_TextServices","Win32_UI_Wpf","Win32_Web_InternetExplorer"],"namespaces":{"0":[{"name":"IImageFeatureDescriptor","features":[0]},{"name":"IImageFeatureDescriptor2","features":[0]},{"name":"IImageFeatureValue","features":[0]},{"name":"IImageFeatureValueStatics","features":[0]},{"name":"ILearningModel","features":[0]},{"name":"ILearningModelBinding","features":[0]},{"name":"ILearningModelBindingFactory","features":[0]},{"name":"ILearningModelDevice","features":[0]},{"name":"ILearningModelDeviceFactory","features":[0]},{"name":"ILearningModelDeviceStatics","features":[0]},{"name":"ILearningModelEvaluationResult","features":[0]},{"name":"ILearningModelFeatureDescriptor","features":[0]},{"name":"ILearningModelFeatureValue","features":[0]},{"name":"ILearningModelOperatorProvider","features":[0]},{"name":"ILearningModelSession","features":[0]},{"name":"ILearningModelSessionFactory","features":[0]},{"name":"ILearningModelSessionFactory2","features":[0]},{"name":"ILearningModelSessionOptions","features":[0]},{"name":"ILearningModelSessionOptions2","features":[0]},{"name":"ILearningModelSessionOptions3","features":[0]},{"name":"ILearningModelStatics","features":[0]},{"name":"IMapFeatureDescriptor","features":[0]},{"name":"ISequenceFeatureDescriptor","features":[0]},{"name":"ITensor","features":[0]},{"name":"ITensorBoolean","features":[0]},{"name":"ITensorBooleanStatics","features":[0]},{"name":"ITensorBooleanStatics2","features":[0]},{"name":"ITensorDouble","features":[0]},{"name":"ITensorDoubleStatics","features":[0]},{"name":"ITensorDoubleStatics2","features":[0]},{"name":"ITensorFeatureDescriptor","features":[0]},{"name":"ITensorFloat","features":[0]},{"name":"ITensorFloat16Bit","features":[0]},{"name":"ITensorFloat16BitStatics","features":[0]},{"name":"ITensorFloat16BitStatics2","features":[0]},{"name":"ITensorFloatStatics","features":[0]},{"name":"ITensorFloatStatics2","features":[0]},{"name":"ITensorInt16Bit","features":[0]},{"name":"ITensorInt16BitStatics","features":[0]},{"name":"ITensorInt16BitStatics2","features":[0]},{"name":"ITensorInt32Bit","features":[0]},{"name":"ITensorInt32BitStatics","features":[0]},{"name":"ITensorInt32BitStatics2","features":[0]},{"name":"ITensorInt64Bit","features":[0]},{"name":"ITensorInt64BitStatics","features":[0]},{"name":"ITensorInt64BitStatics2","features":[0]},{"name":"ITensorInt8Bit","features":[0]},{"name":"ITensorInt8BitStatics","features":[0]},{"name":"ITensorInt8BitStatics2","features":[0]},{"name":"ITensorString","features":[0]},{"name":"ITensorStringStatics","features":[0]},{"name":"ITensorStringStatics2","features":[0]},{"name":"ITensorUInt16Bit","features":[0]},{"name":"ITensorUInt16BitStatics","features":[0]},{"name":"ITensorUInt16BitStatics2","features":[0]},{"name":"ITensorUInt32Bit","features":[0]},{"name":"ITensorUInt32BitStatics","features":[0]},{"name":"ITensorUInt32BitStatics2","features":[0]},{"name":"ITensorUInt64Bit","features":[0]},{"name":"ITensorUInt64BitStatics","features":[0]},{"name":"ITensorUInt64BitStatics2","features":[0]},{"name":"ITensorUInt8Bit","features":[0]},{"name":"ITensorUInt8BitStatics","features":[0]},{"name":"ITensorUInt8BitStatics2","features":[0]},{"name":"ImageFeatureDescriptor","features":[0]},{"name":"ImageFeatureValue","features":[0]},{"name":"LearningModel","features":[0]},{"name":"LearningModelBinding","features":[0]},{"name":"LearningModelDevice","features":[0]},{"name":"LearningModelDeviceKind","features":[0]},{"name":"LearningModelEvaluationResult","features":[0]},{"name":"LearningModelFeatureKind","features":[0]},{"name":"LearningModelPixelRange","features":[0]},{"name":"LearningModelSession","features":[0]},{"name":"LearningModelSessionOptions","features":[0]},{"name":"MachineLearningContract","features":[0]},{"name":"MapFeatureDescriptor","features":[0]},{"name":"SequenceFeatureDescriptor","features":[0]},{"name":"TensorBoolean","features":[0]},{"name":"TensorDouble","features":[0]},{"name":"TensorFeatureDescriptor","features":[0]},{"name":"TensorFloat","features":[0]},{"name":"TensorFloat16Bit","features":[0]},{"name":"TensorInt16Bit","features":[0]},{"name":"TensorInt32Bit","features":[0]},{"name":"TensorInt64Bit","features":[0]},{"name":"TensorInt8Bit","features":[0]},{"name":"TensorKind","features":[0]},{"name":"TensorString","features":[0]},{"name":"TensorUInt16Bit","features":[0]},{"name":"TensorUInt32Bit","features":[0]},{"name":"TensorUInt64Bit","features":[0]},{"name":"TensorUInt8Bit","features":[0]}],"2":[{"name":"AddResourcePackageOptions","features":[1]},{"name":"AppDisplayInfo","features":[1]},{"name":"AppExecutionContext","features":[1]},{"name":"AppInfo","features":[1]},{"name":"AppInstallerInfo","features":[1]},{"name":"AppInstallerPolicySource","features":[1]},{"name":"AppInstance","features":[1]},{"name":"CameraApplicationManager","features":[1]},{"name":"DesignMode","features":[1]},{"name":"EnteredBackgroundEventArgs","features":[1]},{"name":"FindRelatedPackagesOptions","features":[1]},{"name":"FullTrustAppContract","features":[1]},{"name":"FullTrustLaunchResult","features":[1]},{"name":"FullTrustProcessLaunchResult","features":[1]},{"name":"FullTrustProcessLauncher","features":[1]},{"name":"IAppDisplayInfo","features":[1]},{"name":"IAppInfo","features":[1]},{"name":"IAppInfo2","features":[1]},{"name":"IAppInfo3","features":[1]},{"name":"IAppInfo4","features":[1]},{"name":"IAppInfoStatics","features":[1]},{"name":"IAppInstallerInfo","features":[1]},{"name":"IAppInstallerInfo2","features":[1]},{"name":"IAppInstance","features":[1]},{"name":"IAppInstanceStatics","features":[1]},{"name":"ICameraApplicationManagerStatics","features":[1]},{"name":"IDesignModeStatics","features":[1]},{"name":"IDesignModeStatics2","features":[1]},{"name":"IEnteredBackgroundEventArgs","features":[1]},{"name":"IFindRelatedPackagesOptions","features":[1]},{"name":"IFindRelatedPackagesOptionsFactory","features":[1]},{"name":"IFullTrustProcessLaunchResult","features":[1]},{"name":"IFullTrustProcessLauncherStatics","features":[1]},{"name":"IFullTrustProcessLauncherStatics2","features":[1]},{"name":"ILeavingBackgroundEventArgs","features":[1]},{"name":"ILimitedAccessFeatureRequestResult","features":[1]},{"name":"ILimitedAccessFeaturesStatics","features":[1]},{"name":"IPackage","features":[1]},{"name":"IPackage2","features":[1]},{"name":"IPackage3","features":[1]},{"name":"IPackage4","features":[1]},{"name":"IPackage5","features":[1]},{"name":"IPackage6","features":[1]},{"name":"IPackage7","features":[1]},{"name":"IPackage8","features":[1]},{"name":"IPackage9","features":[1]},{"name":"IPackageCatalog","features":[1]},{"name":"IPackageCatalog2","features":[1]},{"name":"IPackageCatalog3","features":[1]},{"name":"IPackageCatalog4","features":[1]},{"name":"IPackageCatalogAddOptionalPackageResult","features":[1]},{"name":"IPackageCatalogAddResourcePackageResult","features":[1]},{"name":"IPackageCatalogRemoveOptionalPackagesResult","features":[1]},{"name":"IPackageCatalogRemoveResourcePackagesResult","features":[1]},{"name":"IPackageCatalogStatics","features":[1]},{"name":"IPackageCatalogStatics2","features":[1]},{"name":"IPackageContentGroup","features":[1]},{"name":"IPackageContentGroupStagingEventArgs","features":[1]},{"name":"IPackageContentGroupStatics","features":[1]},{"name":"IPackageId","features":[1]},{"name":"IPackageIdWithMetadata","features":[1]},{"name":"IPackageInstallingEventArgs","features":[1]},{"name":"IPackageStagingEventArgs","features":[1]},{"name":"IPackageStatics","features":[1]},{"name":"IPackageStatus","features":[1]},{"name":"IPackageStatus2","features":[1]},{"name":"IPackageStatusChangedEventArgs","features":[1]},{"name":"IPackageUninstallingEventArgs","features":[1]},{"name":"IPackageUpdateAvailabilityResult","features":[1]},{"name":"IPackageUpdatingEventArgs","features":[1]},{"name":"IPackageWithMetadata","features":[1]},{"name":"IStartupTask","features":[1]},{"name":"IStartupTaskStatics","features":[1]},{"name":"ISuspendingDeferral","features":[1]},{"name":"ISuspendingEventArgs","features":[1]},{"name":"ISuspendingOperation","features":[1]},{"name":"LeavingBackgroundEventArgs","features":[1]},{"name":"LimitedAccessFeatureRequestResult","features":[1]},{"name":"LimitedAccessFeatureStatus","features":[1]},{"name":"LimitedAccessFeatures","features":[1]},{"name":"Package","features":[1]},{"name":"PackageCatalog","features":[1]},{"name":"PackageCatalogAddOptionalPackageResult","features":[1]},{"name":"PackageCatalogAddResourcePackageResult","features":[1]},{"name":"PackageCatalogRemoveOptionalPackagesResult","features":[1]},{"name":"PackageCatalogRemoveResourcePackagesResult","features":[1]},{"name":"PackageContentGroup","features":[1]},{"name":"PackageContentGroupStagingEventArgs","features":[1]},{"name":"PackageContentGroupState","features":[1]},{"name":"PackageId","features":[1]},{"name":"PackageInstallProgress","features":[1]},{"name":"PackageInstallingEventArgs","features":[1]},{"name":"PackageRelationship","features":[1]},{"name":"PackageSignatureKind","features":[1]},{"name":"PackageStagingEventArgs","features":[1]},{"name":"PackageStatus","features":[1]},{"name":"PackageStatusChangedEventArgs","features":[1]},{"name":"PackageUninstallingEventArgs","features":[1]},{"name":"PackageUpdateAvailability","features":[1]},{"name":"PackageUpdateAvailabilityResult","features":[1]},{"name":"PackageUpdatingEventArgs","features":[1]},{"name":"PackageVersion","features":[1]},{"name":"StartupTask","features":[1]},{"name":"StartupTaskContract","features":[1]},{"name":"StartupTaskState","features":[1]},{"name":"SuspendingDeferral","features":[1]},{"name":"SuspendingEventArgs","features":[1]},{"name":"SuspendingOperation","features":[1]}],"3":[{"name":"ActivatedEventsContract","features":[2]},{"name":"ActivationCameraSettingsContract","features":[2]},{"name":"ActivationKind","features":[2]},{"name":"ApplicationExecutionState","features":[2]},{"name":"AppointmentsProviderAddAppointmentActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderRemoveAppointmentActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderReplaceAppointmentActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderShowAppointmentDetailsActivatedEventArgs","features":[2]},{"name":"AppointmentsProviderShowTimeFrameActivatedEventArgs","features":[2]},{"name":"BackgroundActivatedEventArgs","features":[2]},{"name":"BarcodeScannerPreviewActivatedEventArgs","features":[2]},{"name":"CachedFileUpdaterActivatedEventArgs","features":[2]},{"name":"CameraSettingsActivatedEventArgs","features":[2]},{"name":"CommandLineActivatedEventArgs","features":[2]},{"name":"CommandLineActivationOperation","features":[2]},{"name":"ContactActivatedEventsContract","features":[2]},{"name":"ContactCallActivatedEventArgs","features":[2]},{"name":"ContactMapActivatedEventArgs","features":[2]},{"name":"ContactMessageActivatedEventArgs","features":[2]},{"name":"ContactPanelActivatedEventArgs","features":[2]},{"name":"ContactPickerActivatedEventArgs","features":[2]},{"name":"ContactPostActivatedEventArgs","features":[2]},{"name":"ContactVideoCallActivatedEventArgs","features":[2]},{"name":"DeviceActivatedEventArgs","features":[2]},{"name":"DevicePairingActivatedEventArgs","features":[2]},{"name":"DialReceiverActivatedEventArgs","features":[2]},{"name":"FileActivatedEventArgs","features":[2]},{"name":"FileOpenPickerActivatedEventArgs","features":[2]},{"name":"FileOpenPickerContinuationEventArgs","features":[2]},{"name":"FileSavePickerActivatedEventArgs","features":[2]},{"name":"FileSavePickerContinuationEventArgs","features":[2]},{"name":"FolderPickerContinuationEventArgs","features":[2]},{"name":"IActivatedEventArgs","features":[2]},{"name":"IActivatedEventArgsWithUser","features":[2]},{"name":"IApplicationViewActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderAddAppointmentActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderRemoveAppointmentActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderReplaceAppointmentActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs","features":[2]},{"name":"IAppointmentsProviderShowTimeFrameActivatedEventArgs","features":[2]},{"name":"IBackgroundActivatedEventArgs","features":[2]},{"name":"IBarcodeScannerPreviewActivatedEventArgs","features":[2]},{"name":"ICachedFileUpdaterActivatedEventArgs","features":[2]},{"name":"ICameraSettingsActivatedEventArgs","features":[2]},{"name":"ICommandLineActivatedEventArgs","features":[2]},{"name":"ICommandLineActivationOperation","features":[2]},{"name":"IContactActivatedEventArgs","features":[2]},{"name":"IContactCallActivatedEventArgs","features":[2]},{"name":"IContactMapActivatedEventArgs","features":[2]},{"name":"IContactMessageActivatedEventArgs","features":[2]},{"name":"IContactPanelActivatedEventArgs","features":[2]},{"name":"IContactPickerActivatedEventArgs","features":[2]},{"name":"IContactPostActivatedEventArgs","features":[2]},{"name":"IContactVideoCallActivatedEventArgs","features":[2]},{"name":"IContactsProviderActivatedEventArgs","features":[2]},{"name":"IContinuationActivatedEventArgs","features":[2]},{"name":"IDeviceActivatedEventArgs","features":[2]},{"name":"IDevicePairingActivatedEventArgs","features":[2]},{"name":"IDialReceiverActivatedEventArgs","features":[2]},{"name":"IFileActivatedEventArgs","features":[2]},{"name":"IFileActivatedEventArgsWithCallerPackageFamilyName","features":[2]},{"name":"IFileActivatedEventArgsWithNeighboringFiles","features":[2]},{"name":"IFileOpenPickerActivatedEventArgs","features":[2]},{"name":"IFileOpenPickerActivatedEventArgs2","features":[2]},{"name":"IFileOpenPickerContinuationEventArgs","features":[2]},{"name":"IFileSavePickerActivatedEventArgs","features":[2]},{"name":"IFileSavePickerActivatedEventArgs2","features":[2]},{"name":"IFileSavePickerContinuationEventArgs","features":[2]},{"name":"IFolderPickerContinuationEventArgs","features":[2]},{"name":"ILaunchActivatedEventArgs","features":[2]},{"name":"ILaunchActivatedEventArgs2","features":[2]},{"name":"ILockScreenActivatedEventArgs","features":[2]},{"name":"ILockScreenCallActivatedEventArgs","features":[2]},{"name":"IPhoneCallActivatedEventArgs","features":[2]},{"name":"IPickerReturnedActivatedEventArgs","features":[2]},{"name":"IPrelaunchActivatedEventArgs","features":[2]},{"name":"IPrint3DWorkflowActivatedEventArgs","features":[2]},{"name":"IPrintTaskSettingsActivatedEventArgs","features":[2]},{"name":"IProtocolActivatedEventArgs","features":[2]},{"name":"IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData","features":[2]},{"name":"IProtocolForResultsActivatedEventArgs","features":[2]},{"name":"IRestrictedLaunchActivatedEventArgs","features":[2]},{"name":"ISearchActivatedEventArgs","features":[2]},{"name":"ISearchActivatedEventArgsWithLinguisticDetails","features":[2]},{"name":"IShareTargetActivatedEventArgs","features":[2]},{"name":"ISplashScreen","features":[2]},{"name":"IStartupTaskActivatedEventArgs","features":[2]},{"name":"ITileActivatedInfo","features":[2]},{"name":"IToastNotificationActivatedEventArgs","features":[2]},{"name":"IUserDataAccountProviderActivatedEventArgs","features":[2]},{"name":"IViewSwitcherProvider","features":[2]},{"name":"IVoiceCommandActivatedEventArgs","features":[2]},{"name":"IWalletActionActivatedEventArgs","features":[2]},{"name":"IWebAccountProviderActivatedEventArgs","features":[2]},{"name":"IWebAuthenticationBrokerContinuationEventArgs","features":[2]},{"name":"LaunchActivatedEventArgs","features":[2]},{"name":"LockScreenActivatedEventArgs","features":[2]},{"name":"LockScreenCallActivatedEventArgs","features":[2]},{"name":"LockScreenComponentActivatedEventArgs","features":[2]},{"name":"PhoneCallActivatedEventArgs","features":[2]},{"name":"PickerReturnedActivatedEventArgs","features":[2]},{"name":"Print3DWorkflowActivatedEventArgs","features":[2]},{"name":"PrintTaskSettingsActivatedEventArgs","features":[2]},{"name":"ProtocolActivatedEventArgs","features":[2]},{"name":"ProtocolForResultsActivatedEventArgs","features":[2]},{"name":"RestrictedLaunchActivatedEventArgs","features":[2]},{"name":"SearchActivatedEventArgs","features":[2]},{"name":"ShareTargetActivatedEventArgs","features":[2]},{"name":"SplashScreen","features":[2]},{"name":"StartupTaskActivatedEventArgs","features":[2]},{"name":"TileActivatedInfo","features":[2]},{"name":"ToastNotificationActivatedEventArgs","features":[2]},{"name":"UserDataAccountProviderActivatedEventArgs","features":[2]},{"name":"VoiceCommandActivatedEventArgs","features":[2]},{"name":"WalletActionActivatedEventArgs","features":[2]},{"name":"WebAccountProviderActivatedEventArgs","features":[2]},{"name":"WebAuthenticationBrokerContinuationEventArgs","features":[2]},{"name":"WebUISearchActivatedEventsContract","features":[2]}],"4":[{"name":"AppExtension","features":[3]},{"name":"AppExtensionCatalog","features":[3]},{"name":"AppExtensionPackageInstalledEventArgs","features":[3]},{"name":"AppExtensionPackageStatusChangedEventArgs","features":[3]},{"name":"AppExtensionPackageUninstallingEventArgs","features":[3]},{"name":"AppExtensionPackageUpdatedEventArgs","features":[3]},{"name":"AppExtensionPackageUpdatingEventArgs","features":[3]},{"name":"IAppExtension","features":[3]},{"name":"IAppExtension2","features":[3]},{"name":"IAppExtensionCatalog","features":[3]},{"name":"IAppExtensionCatalogStatics","features":[3]},{"name":"IAppExtensionPackageInstalledEventArgs","features":[3]},{"name":"IAppExtensionPackageStatusChangedEventArgs","features":[3]},{"name":"IAppExtensionPackageUninstallingEventArgs","features":[3]},{"name":"IAppExtensionPackageUpdatedEventArgs","features":[3]},{"name":"IAppExtensionPackageUpdatingEventArgs","features":[3]}],"5":[{"name":"AppServiceCatalog","features":[4]},{"name":"AppServiceClosedEventArgs","features":[4]},{"name":"AppServiceClosedStatus","features":[4]},{"name":"AppServiceConnection","features":[4]},{"name":"AppServiceConnectionStatus","features":[4]},{"name":"AppServiceDeferral","features":[4]},{"name":"AppServiceRequest","features":[4]},{"name":"AppServiceRequestReceivedEventArgs","features":[4]},{"name":"AppServiceResponse","features":[4]},{"name":"AppServiceResponseStatus","features":[4]},{"name":"AppServiceTriggerDetails","features":[4]},{"name":"IAppServiceCatalogStatics","features":[4]},{"name":"IAppServiceClosedEventArgs","features":[4]},{"name":"IAppServiceConnection","features":[4]},{"name":"IAppServiceConnection2","features":[4]},{"name":"IAppServiceConnectionStatics","features":[4]},{"name":"IAppServiceDeferral","features":[4]},{"name":"IAppServiceRequest","features":[4]},{"name":"IAppServiceRequestReceivedEventArgs","features":[4]},{"name":"IAppServiceResponse","features":[4]},{"name":"IAppServiceTriggerDetails","features":[4]},{"name":"IAppServiceTriggerDetails2","features":[4]},{"name":"IAppServiceTriggerDetails3","features":[4]},{"name":"IAppServiceTriggerDetails4","features":[4]},{"name":"IStatelessAppServiceResponse","features":[4]},{"name":"StatelessAppServiceResponse","features":[4]},{"name":"StatelessAppServiceResponseStatus","features":[4]}],"6":[{"name":"Appointment","features":[5]},{"name":"AppointmentBusyStatus","features":[5]},{"name":"AppointmentCalendar","features":[5]},{"name":"AppointmentCalendarOtherAppReadAccess","features":[5]},{"name":"AppointmentCalendarOtherAppWriteAccess","features":[5]},{"name":"AppointmentCalendarSyncManager","features":[5]},{"name":"AppointmentCalendarSyncStatus","features":[5]},{"name":"AppointmentConflictResult","features":[5]},{"name":"AppointmentConflictType","features":[5]},{"name":"AppointmentDaysOfWeek","features":[5]},{"name":"AppointmentDetailsKind","features":[5]},{"name":"AppointmentException","features":[5]},{"name":"AppointmentInvitee","features":[5]},{"name":"AppointmentManager","features":[5]},{"name":"AppointmentManagerForUser","features":[5]},{"name":"AppointmentOrganizer","features":[5]},{"name":"AppointmentParticipantResponse","features":[5]},{"name":"AppointmentParticipantRole","features":[5]},{"name":"AppointmentProperties","features":[5]},{"name":"AppointmentRecurrence","features":[5]},{"name":"AppointmentRecurrenceUnit","features":[5]},{"name":"AppointmentSensitivity","features":[5]},{"name":"AppointmentStore","features":[5]},{"name":"AppointmentStoreAccessType","features":[5]},{"name":"AppointmentStoreChange","features":[5]},{"name":"AppointmentStoreChangeReader","features":[5]},{"name":"AppointmentStoreChangeTracker","features":[5]},{"name":"AppointmentStoreChangeType","features":[5]},{"name":"AppointmentStoreChangedDeferral","features":[5]},{"name":"AppointmentStoreChangedEventArgs","features":[5]},{"name":"AppointmentStoreNotificationTriggerDetails","features":[5]},{"name":"AppointmentSummaryCardView","features":[5]},{"name":"AppointmentWeekOfMonth","features":[5]},{"name":"FindAppointmentCalendarsOptions","features":[5]},{"name":"FindAppointmentsOptions","features":[5]},{"name":"IAppointment","features":[5]},{"name":"IAppointment2","features":[5]},{"name":"IAppointment3","features":[5]},{"name":"IAppointmentCalendar","features":[5]},{"name":"IAppointmentCalendar2","features":[5]},{"name":"IAppointmentCalendar3","features":[5]},{"name":"IAppointmentCalendarSyncManager","features":[5]},{"name":"IAppointmentCalendarSyncManager2","features":[5]},{"name":"IAppointmentConflictResult","features":[5]},{"name":"IAppointmentException","features":[5]},{"name":"IAppointmentInvitee","features":[5]},{"name":"IAppointmentManagerForUser","features":[5]},{"name":"IAppointmentManagerStatics","features":[5]},{"name":"IAppointmentManagerStatics2","features":[5]},{"name":"IAppointmentManagerStatics3","features":[5]},{"name":"IAppointmentParticipant","features":[5]},{"name":"IAppointmentPropertiesStatics","features":[5]},{"name":"IAppointmentPropertiesStatics2","features":[5]},{"name":"IAppointmentRecurrence","features":[5]},{"name":"IAppointmentRecurrence2","features":[5]},{"name":"IAppointmentRecurrence3","features":[5]},{"name":"IAppointmentStore","features":[5]},{"name":"IAppointmentStore2","features":[5]},{"name":"IAppointmentStore3","features":[5]},{"name":"IAppointmentStoreChange","features":[5]},{"name":"IAppointmentStoreChange2","features":[5]},{"name":"IAppointmentStoreChangeReader","features":[5]},{"name":"IAppointmentStoreChangeTracker","features":[5]},{"name":"IAppointmentStoreChangeTracker2","features":[5]},{"name":"IAppointmentStoreChangedDeferral","features":[5]},{"name":"IAppointmentStoreChangedEventArgs","features":[5]},{"name":"IAppointmentStoreNotificationTriggerDetails","features":[5]},{"name":"IFindAppointmentsOptions","features":[5]},{"name":"RecurrenceType","features":[5]}],"7":[{"name":"AddAppointmentOperation","features":[6]},{"name":"AppointmentsProviderLaunchActionVerbs","features":[6]},{"name":"IAddAppointmentOperation","features":[6]},{"name":"IAppointmentsProviderLaunchActionVerbsStatics","features":[6]},{"name":"IAppointmentsProviderLaunchActionVerbsStatics2","features":[6]},{"name":"IRemoveAppointmentOperation","features":[6]},{"name":"IReplaceAppointmentOperation","features":[6]},{"name":"RemoveAppointmentOperation","features":[6]},{"name":"ReplaceAppointmentOperation","features":[6]}],"8":[{"name":"AppointmentCalendarCancelMeetingRequest","features":[7]},{"name":"AppointmentCalendarCancelMeetingRequestEventArgs","features":[7]},{"name":"AppointmentCalendarCreateOrUpdateAppointmentRequest","features":[7]},{"name":"AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs","features":[7]},{"name":"AppointmentCalendarForwardMeetingRequest","features":[7]},{"name":"AppointmentCalendarForwardMeetingRequestEventArgs","features":[7]},{"name":"AppointmentCalendarProposeNewTimeForMeetingRequest","features":[7]},{"name":"AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs","features":[7]},{"name":"AppointmentCalendarSyncManagerSyncRequest","features":[7]},{"name":"AppointmentCalendarSyncManagerSyncRequestEventArgs","features":[7]},{"name":"AppointmentCalendarUpdateMeetingResponseRequest","features":[7]},{"name":"AppointmentCalendarUpdateMeetingResponseRequestEventArgs","features":[7]},{"name":"AppointmentDataProviderConnection","features":[7]},{"name":"AppointmentDataProviderTriggerDetails","features":[7]},{"name":"IAppointmentCalendarCancelMeetingRequest","features":[7]},{"name":"IAppointmentCalendarCancelMeetingRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarCreateOrUpdateAppointmentRequest","features":[7]},{"name":"IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarForwardMeetingRequest","features":[7]},{"name":"IAppointmentCalendarForwardMeetingRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarProposeNewTimeForMeetingRequest","features":[7]},{"name":"IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarSyncManagerSyncRequest","features":[7]},{"name":"IAppointmentCalendarSyncManagerSyncRequestEventArgs","features":[7]},{"name":"IAppointmentCalendarUpdateMeetingResponseRequest","features":[7]},{"name":"IAppointmentCalendarUpdateMeetingResponseRequestEventArgs","features":[7]},{"name":"IAppointmentDataProviderConnection","features":[7]},{"name":"IAppointmentDataProviderTriggerDetails","features":[7]}],"9":[{"name":"ActivitySensorTrigger","features":[8]},{"name":"AlarmAccessStatus","features":[8]},{"name":"AlarmApplicationManager","features":[8]},{"name":"AppBroadcastTrigger","features":[8]},{"name":"AppBroadcastTriggerProviderInfo","features":[8]},{"name":"ApplicationTrigger","features":[8]},{"name":"ApplicationTriggerDetails","features":[8]},{"name":"ApplicationTriggerResult","features":[8]},{"name":"AppointmentStoreNotificationTrigger","features":[8]},{"name":"BackgroundAccessRequestKind","features":[8]},{"name":"BackgroundAccessStatus","features":[8]},{"name":"BackgroundAlarmApplicationContract","features":[8]},{"name":"BackgroundExecutionManager","features":[8]},{"name":"BackgroundTaskBuilder","features":[8]},{"name":"BackgroundTaskCanceledEventHandler","features":[8]},{"name":"BackgroundTaskCancellationReason","features":[8]},{"name":"BackgroundTaskCompletedEventArgs","features":[8]},{"name":"BackgroundTaskCompletedEventHandler","features":[8]},{"name":"BackgroundTaskDeferral","features":[8]},{"name":"BackgroundTaskProgressEventArgs","features":[8]},{"name":"BackgroundTaskProgressEventHandler","features":[8]},{"name":"BackgroundTaskRegistration","features":[8]},{"name":"BackgroundTaskRegistrationGroup","features":[8]},{"name":"BackgroundTaskThrottleCounter","features":[8]},{"name":"BackgroundWorkCost","features":[8]},{"name":"BackgroundWorkCostValue","features":[8]},{"name":"BluetoothLEAdvertisementPublisherTrigger","features":[8]},{"name":"BluetoothLEAdvertisementWatcherTrigger","features":[8]},{"name":"CachedFileUpdaterTrigger","features":[8]},{"name":"CachedFileUpdaterTriggerDetails","features":[8]},{"name":"ChatMessageNotificationTrigger","features":[8]},{"name":"ChatMessageReceivedNotificationTrigger","features":[8]},{"name":"CommunicationBlockingAppSetAsActiveTrigger","features":[8]},{"name":"ContactStoreNotificationTrigger","features":[8]},{"name":"ContentPrefetchTrigger","features":[8]},{"name":"ConversationalAgentTrigger","features":[8]},{"name":"CustomSystemEventTrigger","features":[8]},{"name":"CustomSystemEventTriggerRecurrence","features":[8]},{"name":"DeviceConnectionChangeTrigger","features":[8]},{"name":"DeviceManufacturerNotificationTrigger","features":[8]},{"name":"DeviceServicingTrigger","features":[8]},{"name":"DeviceTriggerResult","features":[8]},{"name":"DeviceUseTrigger","features":[8]},{"name":"DeviceWatcherTrigger","features":[8]},{"name":"EmailStoreNotificationTrigger","features":[8]},{"name":"GattCharacteristicNotificationTrigger","features":[8]},{"name":"GattServiceProviderTrigger","features":[8]},{"name":"GattServiceProviderTriggerResult","features":[8]},{"name":"GeovisitTrigger","features":[8]},{"name":"IActivitySensorTrigger","features":[8]},{"name":"IActivitySensorTriggerFactory","features":[8]},{"name":"IAlarmApplicationManagerStatics","features":[8]},{"name":"IAppBroadcastTrigger","features":[8]},{"name":"IAppBroadcastTriggerFactory","features":[8]},{"name":"IAppBroadcastTriggerProviderInfo","features":[8]},{"name":"IApplicationTrigger","features":[8]},{"name":"IApplicationTriggerDetails","features":[8]},{"name":"IAppointmentStoreNotificationTrigger","features":[8]},{"name":"IBackgroundCondition","features":[8]},{"name":"IBackgroundExecutionManagerStatics","features":[8]},{"name":"IBackgroundExecutionManagerStatics2","features":[8]},{"name":"IBackgroundExecutionManagerStatics3","features":[8]},{"name":"IBackgroundTask","features":[8]},{"name":"IBackgroundTaskBuilder","features":[8]},{"name":"IBackgroundTaskBuilder2","features":[8]},{"name":"IBackgroundTaskBuilder3","features":[8]},{"name":"IBackgroundTaskBuilder4","features":[8]},{"name":"IBackgroundTaskBuilder5","features":[8]},{"name":"IBackgroundTaskCompletedEventArgs","features":[8]},{"name":"IBackgroundTaskDeferral","features":[8]},{"name":"IBackgroundTaskInstance","features":[8]},{"name":"IBackgroundTaskInstance2","features":[8]},{"name":"IBackgroundTaskInstance4","features":[8]},{"name":"IBackgroundTaskProgressEventArgs","features":[8]},{"name":"IBackgroundTaskRegistration","features":[8]},{"name":"IBackgroundTaskRegistration2","features":[8]},{"name":"IBackgroundTaskRegistration3","features":[8]},{"name":"IBackgroundTaskRegistrationGroup","features":[8]},{"name":"IBackgroundTaskRegistrationGroupFactory","features":[8]},{"name":"IBackgroundTaskRegistrationStatics","features":[8]},{"name":"IBackgroundTaskRegistrationStatics2","features":[8]},{"name":"IBackgroundTrigger","features":[8]},{"name":"IBackgroundWorkCostStatics","features":[8]},{"name":"IBluetoothLEAdvertisementPublisherTrigger","features":[8]},{"name":"IBluetoothLEAdvertisementPublisherTrigger2","features":[8]},{"name":"IBluetoothLEAdvertisementWatcherTrigger","features":[8]},{"name":"IBluetoothLEAdvertisementWatcherTrigger2","features":[8]},{"name":"ICachedFileUpdaterTrigger","features":[8]},{"name":"ICachedFileUpdaterTriggerDetails","features":[8]},{"name":"IChatMessageNotificationTrigger","features":[8]},{"name":"IChatMessageReceivedNotificationTrigger","features":[8]},{"name":"ICommunicationBlockingAppSetAsActiveTrigger","features":[8]},{"name":"IContactStoreNotificationTrigger","features":[8]},{"name":"IContentPrefetchTrigger","features":[8]},{"name":"IContentPrefetchTriggerFactory","features":[8]},{"name":"ICustomSystemEventTrigger","features":[8]},{"name":"ICustomSystemEventTriggerFactory","features":[8]},{"name":"IDeviceConnectionChangeTrigger","features":[8]},{"name":"IDeviceConnectionChangeTriggerStatics","features":[8]},{"name":"IDeviceManufacturerNotificationTrigger","features":[8]},{"name":"IDeviceManufacturerNotificationTriggerFactory","features":[8]},{"name":"IDeviceServicingTrigger","features":[8]},{"name":"IDeviceUseTrigger","features":[8]},{"name":"IDeviceWatcherTrigger","features":[8]},{"name":"IEmailStoreNotificationTrigger","features":[8]},{"name":"IGattCharacteristicNotificationTrigger","features":[8]},{"name":"IGattCharacteristicNotificationTrigger2","features":[8]},{"name":"IGattCharacteristicNotificationTriggerFactory","features":[8]},{"name":"IGattCharacteristicNotificationTriggerFactory2","features":[8]},{"name":"IGattServiceProviderTrigger","features":[8]},{"name":"IGattServiceProviderTriggerResult","features":[8]},{"name":"IGattServiceProviderTriggerStatics","features":[8]},{"name":"IGeovisitTrigger","features":[8]},{"name":"ILocationTrigger","features":[8]},{"name":"ILocationTriggerFactory","features":[8]},{"name":"IMaintenanceTrigger","features":[8]},{"name":"IMaintenanceTriggerFactory","features":[8]},{"name":"IMediaProcessingTrigger","features":[8]},{"name":"INetworkOperatorHotspotAuthenticationTrigger","features":[8]},{"name":"INetworkOperatorNotificationTrigger","features":[8]},{"name":"INetworkOperatorNotificationTriggerFactory","features":[8]},{"name":"IPhoneTrigger","features":[8]},{"name":"IPhoneTriggerFactory","features":[8]},{"name":"IPushNotificationTriggerFactory","features":[8]},{"name":"IRcsEndUserMessageAvailableTrigger","features":[8]},{"name":"IRfcommConnectionTrigger","features":[8]},{"name":"ISecondaryAuthenticationFactorAuthenticationTrigger","features":[8]},{"name":"ISensorDataThresholdTrigger","features":[8]},{"name":"ISensorDataThresholdTriggerFactory","features":[8]},{"name":"ISmartCardTrigger","features":[8]},{"name":"ISmartCardTriggerFactory","features":[8]},{"name":"ISmsMessageReceivedTriggerFactory","features":[8]},{"name":"ISocketActivityTrigger","features":[8]},{"name":"IStorageLibraryChangeTrackerTriggerFactory","features":[8]},{"name":"IStorageLibraryContentChangedTrigger","features":[8]},{"name":"IStorageLibraryContentChangedTriggerStatics","features":[8]},{"name":"ISystemCondition","features":[8]},{"name":"ISystemConditionFactory","features":[8]},{"name":"ISystemTrigger","features":[8]},{"name":"ISystemTriggerFactory","features":[8]},{"name":"ITimeTrigger","features":[8]},{"name":"ITimeTriggerFactory","features":[8]},{"name":"IToastNotificationActionTriggerFactory","features":[8]},{"name":"IToastNotificationHistoryChangedTriggerFactory","features":[8]},{"name":"IUserNotificationChangedTriggerFactory","features":[8]},{"name":"LocationTrigger","features":[8]},{"name":"LocationTriggerType","features":[8]},{"name":"MaintenanceTrigger","features":[8]},{"name":"MediaProcessingTrigger","features":[8]},{"name":"MediaProcessingTriggerResult","features":[8]},{"name":"MobileBroadbandDeviceServiceNotificationTrigger","features":[8]},{"name":"MobileBroadbandPcoDataChangeTrigger","features":[8]},{"name":"MobileBroadbandPinLockStateChangeTrigger","features":[8]},{"name":"MobileBroadbandRadioStateChangeTrigger","features":[8]},{"name":"MobileBroadbandRegistrationStateChangeTrigger","features":[8]},{"name":"NetworkOperatorDataUsageTrigger","features":[8]},{"name":"NetworkOperatorHotspotAuthenticationTrigger","features":[8]},{"name":"NetworkOperatorNotificationTrigger","features":[8]},{"name":"PaymentAppCanMakePaymentTrigger","features":[8]},{"name":"PhoneTrigger","features":[8]},{"name":"PushNotificationTrigger","features":[8]},{"name":"RcsEndUserMessageAvailableTrigger","features":[8]},{"name":"RfcommConnectionTrigger","features":[8]},{"name":"SecondaryAuthenticationFactorAuthenticationTrigger","features":[8]},{"name":"SensorDataThresholdTrigger","features":[8]},{"name":"SmartCardTrigger","features":[8]},{"name":"SmsMessageReceivedTrigger","features":[8]},{"name":"SocketActivityTrigger","features":[8]},{"name":"StorageLibraryChangeTrackerTrigger","features":[8]},{"name":"StorageLibraryContentChangedTrigger","features":[8]},{"name":"SystemCondition","features":[8]},{"name":"SystemConditionType","features":[8]},{"name":"SystemTrigger","features":[8]},{"name":"SystemTriggerType","features":[8]},{"name":"TetheringEntitlementCheckTrigger","features":[8]},{"name":"TimeTrigger","features":[8]},{"name":"ToastNotificationActionTrigger","features":[8]},{"name":"ToastNotificationHistoryChangedTrigger","features":[8]},{"name":"UserNotificationChangedTrigger","features":[8]},{"name":"WiFiOnDemandHotspotConnectTrigger","features":[8]},{"name":"WiFiOnDemandHotspotUpdateMetadataTrigger","features":[8]}],"10":[{"name":"CallAnswerEventArgs","features":[9]},{"name":"CallRejectEventArgs","features":[9]},{"name":"CallStateChangeEventArgs","features":[9]},{"name":"CallsPhoneContract","features":[9]},{"name":"CallsVoipContract","features":[9]},{"name":"CellularDtmfMode","features":[9]},{"name":"DtmfKey","features":[9]},{"name":"DtmfToneAudioPlayback","features":[9]},{"name":"ICallAnswerEventArgs","features":[9]},{"name":"ICallRejectEventArgs","features":[9]},{"name":"ICallStateChangeEventArgs","features":[9]},{"name":"ILockScreenCallEndCallDeferral","features":[9]},{"name":"ILockScreenCallEndRequestedEventArgs","features":[9]},{"name":"ILockScreenCallUI","features":[9]},{"name":"IMuteChangeEventArgs","features":[9]},{"name":"IPhoneCall","features":[9]},{"name":"IPhoneCallBlockingStatics","features":[9]},{"name":"IPhoneCallHistoryEntry","features":[9]},{"name":"IPhoneCallHistoryEntryAddress","features":[9]},{"name":"IPhoneCallHistoryEntryAddressFactory","features":[9]},{"name":"IPhoneCallHistoryEntryQueryOptions","features":[9]},{"name":"IPhoneCallHistoryEntryReader","features":[9]},{"name":"IPhoneCallHistoryManagerForUser","features":[9]},{"name":"IPhoneCallHistoryManagerStatics","features":[9]},{"name":"IPhoneCallHistoryManagerStatics2","features":[9]},{"name":"IPhoneCallHistoryStore","features":[9]},{"name":"IPhoneCallInfo","features":[9]},{"name":"IPhoneCallManagerStatics","features":[9]},{"name":"IPhoneCallManagerStatics2","features":[9]},{"name":"IPhoneCallStatics","features":[9]},{"name":"IPhoneCallStore","features":[9]},{"name":"IPhoneCallVideoCapabilities","features":[9]},{"name":"IPhoneCallVideoCapabilitiesManagerStatics","features":[9]},{"name":"IPhoneCallsResult","features":[9]},{"name":"IPhoneDialOptions","features":[9]},{"name":"IPhoneLine","features":[9]},{"name":"IPhoneLine2","features":[9]},{"name":"IPhoneLine3","features":[9]},{"name":"IPhoneLineCellularDetails","features":[9]},{"name":"IPhoneLineConfiguration","features":[9]},{"name":"IPhoneLineDialResult","features":[9]},{"name":"IPhoneLineStatics","features":[9]},{"name":"IPhoneLineTransportDevice","features":[9]},{"name":"IPhoneLineTransportDevice2","features":[9]},{"name":"IPhoneLineTransportDeviceStatics","features":[9]},{"name":"IPhoneLineWatcher","features":[9]},{"name":"IPhoneLineWatcherEventArgs","features":[9]},{"name":"IPhoneVoicemail","features":[9]},{"name":"IVoipCallCoordinator","features":[9]},{"name":"IVoipCallCoordinator2","features":[9]},{"name":"IVoipCallCoordinator3","features":[9]},{"name":"IVoipCallCoordinator4","features":[9]},{"name":"IVoipCallCoordinatorStatics","features":[9]},{"name":"IVoipPhoneCall","features":[9]},{"name":"IVoipPhoneCall2","features":[9]},{"name":"IVoipPhoneCall3","features":[9]},{"name":"LockScreenCallContract","features":[9]},{"name":"LockScreenCallEndCallDeferral","features":[9]},{"name":"LockScreenCallEndRequestedEventArgs","features":[9]},{"name":"LockScreenCallUI","features":[9]},{"name":"MuteChangeEventArgs","features":[9]},{"name":"PhoneAudioRoutingEndpoint","features":[9]},{"name":"PhoneCall","features":[9]},{"name":"PhoneCallAudioDevice","features":[9]},{"name":"PhoneCallBlocking","features":[9]},{"name":"PhoneCallDirection","features":[9]},{"name":"PhoneCallHistoryEntry","features":[9]},{"name":"PhoneCallHistoryEntryAddress","features":[9]},{"name":"PhoneCallHistoryEntryMedia","features":[9]},{"name":"PhoneCallHistoryEntryOtherAppReadAccess","features":[9]},{"name":"PhoneCallHistoryEntryQueryDesiredMedia","features":[9]},{"name":"PhoneCallHistoryEntryQueryOptions","features":[9]},{"name":"PhoneCallHistoryEntryRawAddressKind","features":[9]},{"name":"PhoneCallHistoryEntryReader","features":[9]},{"name":"PhoneCallHistoryManager","features":[9]},{"name":"PhoneCallHistoryManagerForUser","features":[9]},{"name":"PhoneCallHistorySourceIdKind","features":[9]},{"name":"PhoneCallHistoryStore","features":[9]},{"name":"PhoneCallHistoryStoreAccessType","features":[9]},{"name":"PhoneCallInfo","features":[9]},{"name":"PhoneCallManager","features":[9]},{"name":"PhoneCallMedia","features":[9]},{"name":"PhoneCallOperationStatus","features":[9]},{"name":"PhoneCallStatus","features":[9]},{"name":"PhoneCallStore","features":[9]},{"name":"PhoneCallVideoCapabilities","features":[9]},{"name":"PhoneCallVideoCapabilitiesManager","features":[9]},{"name":"PhoneCallsResult","features":[9]},{"name":"PhoneDialOptions","features":[9]},{"name":"PhoneLine","features":[9]},{"name":"PhoneLineCellularDetails","features":[9]},{"name":"PhoneLineConfiguration","features":[9]},{"name":"PhoneLineDialResult","features":[9]},{"name":"PhoneLineNetworkOperatorDisplayTextLocation","features":[9]},{"name":"PhoneLineOperationStatus","features":[9]},{"name":"PhoneLineTransport","features":[9]},{"name":"PhoneLineTransportDevice","features":[9]},{"name":"PhoneLineWatcher","features":[9]},{"name":"PhoneLineWatcherEventArgs","features":[9]},{"name":"PhoneLineWatcherStatus","features":[9]},{"name":"PhoneNetworkState","features":[9]},{"name":"PhoneSimState","features":[9]},{"name":"PhoneVoicemail","features":[9]},{"name":"PhoneVoicemailType","features":[9]},{"name":"TransportDeviceAudioRoutingStatus","features":[9]},{"name":"VoipCallCoordinator","features":[9]},{"name":"VoipPhoneCall","features":[9]},{"name":"VoipPhoneCallMedia","features":[9]},{"name":"VoipPhoneCallRejectReason","features":[9]},{"name":"VoipPhoneCallResourceReservationStatus","features":[9]},{"name":"VoipPhoneCallState","features":[9]}],"11":[{"name":"CallsBackgroundContract","features":[10]},{"name":"IPhoneCallBlockedTriggerDetails","features":[10]},{"name":"IPhoneCallOriginDataRequestTriggerDetails","features":[10]},{"name":"IPhoneIncomingCallDismissedTriggerDetails","features":[10]},{"name":"IPhoneIncomingCallNotificationTriggerDetails","features":[10]},{"name":"IPhoneLineChangedTriggerDetails","features":[10]},{"name":"IPhoneNewVoicemailMessageTriggerDetails","features":[10]},{"name":"PhoneCallBlockedReason","features":[10]},{"name":"PhoneCallBlockedTriggerDetails","features":[10]},{"name":"PhoneCallOriginDataRequestTriggerDetails","features":[10]},{"name":"PhoneIncomingCallDismissedReason","features":[10]},{"name":"PhoneIncomingCallDismissedTriggerDetails","features":[10]},{"name":"PhoneIncomingCallNotificationTriggerDetails","features":[10]},{"name":"PhoneLineChangeKind","features":[10]},{"name":"PhoneLineChangedTriggerDetails","features":[10]},{"name":"PhoneLineProperties","features":[10]},{"name":"PhoneNewVoicemailMessageTriggerDetails","features":[10]},{"name":"PhoneTriggerType","features":[10]}],"12":[{"name":"IPhoneCallOrigin","features":[11]},{"name":"IPhoneCallOrigin2","features":[11]},{"name":"IPhoneCallOrigin3","features":[11]},{"name":"IPhoneCallOriginManagerStatics","features":[11]},{"name":"IPhoneCallOriginManagerStatics2","features":[11]},{"name":"IPhoneCallOriginManagerStatics3","features":[11]},{"name":"PhoneCallOrigin","features":[11]},{"name":"PhoneCallOriginManager","features":[11]}],"13":[{"name":"ChatCapabilities","features":[12]},{"name":"ChatCapabilitiesManager","features":[12]},{"name":"ChatConversation","features":[12]},{"name":"ChatConversationReader","features":[12]},{"name":"ChatConversationThreadingInfo","features":[12]},{"name":"ChatConversationThreadingKind","features":[12]},{"name":"ChatItemKind","features":[12]},{"name":"ChatMessage","features":[12]},{"name":"ChatMessageAttachment","features":[12]},{"name":"ChatMessageBlocking","features":[12]},{"name":"ChatMessageChange","features":[12]},{"name":"ChatMessageChangeReader","features":[12]},{"name":"ChatMessageChangeTracker","features":[12]},{"name":"ChatMessageChangeType","features":[12]},{"name":"ChatMessageChangedDeferral","features":[12]},{"name":"ChatMessageChangedEventArgs","features":[12]},{"name":"ChatMessageKind","features":[12]},{"name":"ChatMessageManager","features":[12]},{"name":"ChatMessageNotificationTriggerDetails","features":[12]},{"name":"ChatMessageOperatorKind","features":[12]},{"name":"ChatMessageReader","features":[12]},{"name":"ChatMessageStatus","features":[12]},{"name":"ChatMessageStore","features":[12]},{"name":"ChatMessageStoreChangedEventArgs","features":[12]},{"name":"ChatMessageTransport","features":[12]},{"name":"ChatMessageTransportConfiguration","features":[12]},{"name":"ChatMessageTransportKind","features":[12]},{"name":"ChatMessageValidationResult","features":[12]},{"name":"ChatMessageValidationStatus","features":[12]},{"name":"ChatQueryOptions","features":[12]},{"name":"ChatRecipientDeliveryInfo","features":[12]},{"name":"ChatRestoreHistorySpan","features":[12]},{"name":"ChatSearchReader","features":[12]},{"name":"ChatStoreChangedEventKind","features":[12]},{"name":"ChatSyncConfiguration","features":[12]},{"name":"ChatSyncManager","features":[12]},{"name":"ChatTransportErrorCodeCategory","features":[12]},{"name":"ChatTransportInterpretedErrorCode","features":[12]},{"name":"IChatCapabilities","features":[12]},{"name":"IChatCapabilitiesManagerStatics","features":[12]},{"name":"IChatCapabilitiesManagerStatics2","features":[12]},{"name":"IChatConversation","features":[12]},{"name":"IChatConversation2","features":[12]},{"name":"IChatConversationReader","features":[12]},{"name":"IChatConversationThreadingInfo","features":[12]},{"name":"IChatItem","features":[12]},{"name":"IChatMessage","features":[12]},{"name":"IChatMessage2","features":[12]},{"name":"IChatMessage3","features":[12]},{"name":"IChatMessage4","features":[12]},{"name":"IChatMessageAttachment","features":[12]},{"name":"IChatMessageAttachment2","features":[12]},{"name":"IChatMessageAttachmentFactory","features":[12]},{"name":"IChatMessageBlockingStatic","features":[12]},{"name":"IChatMessageChange","features":[12]},{"name":"IChatMessageChangeReader","features":[12]},{"name":"IChatMessageChangeTracker","features":[12]},{"name":"IChatMessageChangedDeferral","features":[12]},{"name":"IChatMessageChangedEventArgs","features":[12]},{"name":"IChatMessageManager2Statics","features":[12]},{"name":"IChatMessageManagerStatic","features":[12]},{"name":"IChatMessageManagerStatics3","features":[12]},{"name":"IChatMessageNotificationTriggerDetails","features":[12]},{"name":"IChatMessageNotificationTriggerDetails2","features":[12]},{"name":"IChatMessageReader","features":[12]},{"name":"IChatMessageReader2","features":[12]},{"name":"IChatMessageStore","features":[12]},{"name":"IChatMessageStore2","features":[12]},{"name":"IChatMessageStore3","features":[12]},{"name":"IChatMessageStoreChangedEventArgs","features":[12]},{"name":"IChatMessageTransport","features":[12]},{"name":"IChatMessageTransport2","features":[12]},{"name":"IChatMessageTransportConfiguration","features":[12]},{"name":"IChatMessageValidationResult","features":[12]},{"name":"IChatQueryOptions","features":[12]},{"name":"IChatRecipientDeliveryInfo","features":[12]},{"name":"IChatSearchReader","features":[12]},{"name":"IChatSyncConfiguration","features":[12]},{"name":"IChatSyncManager","features":[12]},{"name":"IRcsEndUserMessage","features":[12]},{"name":"IRcsEndUserMessageAction","features":[12]},{"name":"IRcsEndUserMessageAvailableEventArgs","features":[12]},{"name":"IRcsEndUserMessageAvailableTriggerDetails","features":[12]},{"name":"IRcsEndUserMessageManager","features":[12]},{"name":"IRcsManagerStatics","features":[12]},{"name":"IRcsManagerStatics2","features":[12]},{"name":"IRcsServiceKindSupportedChangedEventArgs","features":[12]},{"name":"IRcsTransport","features":[12]},{"name":"IRcsTransportConfiguration","features":[12]},{"name":"IRemoteParticipantComposingChangedEventArgs","features":[12]},{"name":"RcsEndUserMessage","features":[12]},{"name":"RcsEndUserMessageAction","features":[12]},{"name":"RcsEndUserMessageAvailableEventArgs","features":[12]},{"name":"RcsEndUserMessageAvailableTriggerDetails","features":[12]},{"name":"RcsEndUserMessageManager","features":[12]},{"name":"RcsManager","features":[12]},{"name":"RcsServiceKind","features":[12]},{"name":"RcsServiceKindSupportedChangedEventArgs","features":[12]},{"name":"RcsTransport","features":[12]},{"name":"RcsTransportConfiguration","features":[12]},{"name":"RemoteParticipantComposingChangedEventArgs","features":[12]}],"14":[{"name":"CommunicationBlockingAccessManager","features":[13]},{"name":"CommunicationBlockingAppManager","features":[13]},{"name":"CommunicationBlockingContract","features":[13]},{"name":"ICommunicationBlockingAccessManagerStatics","features":[13]},{"name":"ICommunicationBlockingAppManagerStatics","features":[13]},{"name":"ICommunicationBlockingAppManagerStatics2","features":[13]}],"15":[{"name":"AggregateContactManager","features":[14]},{"name":"Contact","features":[14]},{"name":"ContactAddress","features":[14]},{"name":"ContactAddressKind","features":[14]},{"name":"ContactAnnotation","features":[14]},{"name":"ContactAnnotationList","features":[14]},{"name":"ContactAnnotationOperations","features":[14]},{"name":"ContactAnnotationStore","features":[14]},{"name":"ContactAnnotationStoreAccessType","features":[14]},{"name":"ContactBatch","features":[14]},{"name":"ContactBatchStatus","features":[14]},{"name":"ContactCardDelayedDataLoader","features":[14]},{"name":"ContactCardHeaderKind","features":[14]},{"name":"ContactCardOptions","features":[14]},{"name":"ContactCardTabKind","features":[14]},{"name":"ContactChange","features":[14]},{"name":"ContactChangeReader","features":[14]},{"name":"ContactChangeTracker","features":[14]},{"name":"ContactChangeType","features":[14]},{"name":"ContactChangedDeferral","features":[14]},{"name":"ContactChangedEventArgs","features":[14]},{"name":"ContactConnectedServiceAccount","features":[14]},{"name":"ContactDate","features":[14]},{"name":"ContactDateKind","features":[14]},{"name":"ContactEmail","features":[14]},{"name":"ContactEmailKind","features":[14]},{"name":"ContactField","features":[14]},{"name":"ContactFieldCategory","features":[14]},{"name":"ContactFieldFactory","features":[14]},{"name":"ContactFieldType","features":[14]},{"name":"ContactGroup","features":[14]},{"name":"ContactInformation","features":[14]},{"name":"ContactInstantMessageField","features":[14]},{"name":"ContactJobInfo","features":[14]},{"name":"ContactLaunchActionVerbs","features":[14]},{"name":"ContactList","features":[14]},{"name":"ContactListLimitedWriteOperations","features":[14]},{"name":"ContactListOtherAppReadAccess","features":[14]},{"name":"ContactListOtherAppWriteAccess","features":[14]},{"name":"ContactListSyncConstraints","features":[14]},{"name":"ContactListSyncManager","features":[14]},{"name":"ContactListSyncStatus","features":[14]},{"name":"ContactLocationField","features":[14]},{"name":"ContactManager","features":[14]},{"name":"ContactManagerForUser","features":[14]},{"name":"ContactMatchReason","features":[14]},{"name":"ContactMatchReasonKind","features":[14]},{"name":"ContactNameOrder","features":[14]},{"name":"ContactPanel","features":[14]},{"name":"ContactPanelClosingEventArgs","features":[14]},{"name":"ContactPanelLaunchFullAppRequestedEventArgs","features":[14]},{"name":"ContactPhone","features":[14]},{"name":"ContactPhoneKind","features":[14]},{"name":"ContactPicker","features":[14]},{"name":"ContactQueryDesiredFields","features":[14]},{"name":"ContactQueryOptions","features":[14]},{"name":"ContactQuerySearchFields","features":[14]},{"name":"ContactQuerySearchScope","features":[14]},{"name":"ContactQueryTextSearch","features":[14]},{"name":"ContactReader","features":[14]},{"name":"ContactRelationship","features":[14]},{"name":"ContactSelectionMode","features":[14]},{"name":"ContactSignificantOther","features":[14]},{"name":"ContactStore","features":[14]},{"name":"ContactStoreAccessType","features":[14]},{"name":"ContactStoreNotificationTriggerDetails","features":[14]},{"name":"ContactWebsite","features":[14]},{"name":"FullContactCardOptions","features":[14]},{"name":"IAggregateContactManager","features":[14]},{"name":"IAggregateContactManager2","features":[14]},{"name":"IContact","features":[14]},{"name":"IContact2","features":[14]},{"name":"IContact3","features":[14]},{"name":"IContactAddress","features":[14]},{"name":"IContactAnnotation","features":[14]},{"name":"IContactAnnotation2","features":[14]},{"name":"IContactAnnotationList","features":[14]},{"name":"IContactAnnotationStore","features":[14]},{"name":"IContactAnnotationStore2","features":[14]},{"name":"IContactBatch","features":[14]},{"name":"IContactCardDelayedDataLoader","features":[14]},{"name":"IContactCardOptions","features":[14]},{"name":"IContactCardOptions2","features":[14]},{"name":"IContactChange","features":[14]},{"name":"IContactChangeReader","features":[14]},{"name":"IContactChangeTracker","features":[14]},{"name":"IContactChangeTracker2","features":[14]},{"name":"IContactChangedDeferral","features":[14]},{"name":"IContactChangedEventArgs","features":[14]},{"name":"IContactConnectedServiceAccount","features":[14]},{"name":"IContactDate","features":[14]},{"name":"IContactEmail","features":[14]},{"name":"IContactField","features":[14]},{"name":"IContactFieldFactory","features":[14]},{"name":"IContactGroup","features":[14]},{"name":"IContactInformation","features":[14]},{"name":"IContactInstantMessageField","features":[14]},{"name":"IContactInstantMessageFieldFactory","features":[14]},{"name":"IContactJobInfo","features":[14]},{"name":"IContactLaunchActionVerbsStatics","features":[14]},{"name":"IContactList","features":[14]},{"name":"IContactList2","features":[14]},{"name":"IContactList3","features":[14]},{"name":"IContactListLimitedWriteOperations","features":[14]},{"name":"IContactListSyncConstraints","features":[14]},{"name":"IContactListSyncManager","features":[14]},{"name":"IContactListSyncManager2","features":[14]},{"name":"IContactLocationField","features":[14]},{"name":"IContactLocationFieldFactory","features":[14]},{"name":"IContactManagerForUser","features":[14]},{"name":"IContactManagerForUser2","features":[14]},{"name":"IContactManagerStatics","features":[14]},{"name":"IContactManagerStatics2","features":[14]},{"name":"IContactManagerStatics3","features":[14]},{"name":"IContactManagerStatics4","features":[14]},{"name":"IContactManagerStatics5","features":[14]},{"name":"IContactMatchReason","features":[14]},{"name":"IContactName","features":[14]},{"name":"IContactPanel","features":[14]},{"name":"IContactPanelClosingEventArgs","features":[14]},{"name":"IContactPanelLaunchFullAppRequestedEventArgs","features":[14]},{"name":"IContactPhone","features":[14]},{"name":"IContactPicker","features":[14]},{"name":"IContactPicker2","features":[14]},{"name":"IContactPicker3","features":[14]},{"name":"IContactPickerStatics","features":[14]},{"name":"IContactQueryOptions","features":[14]},{"name":"IContactQueryOptionsFactory","features":[14]},{"name":"IContactQueryTextSearch","features":[14]},{"name":"IContactReader","features":[14]},{"name":"IContactSignificantOther","features":[14]},{"name":"IContactSignificantOther2","features":[14]},{"name":"IContactStore","features":[14]},{"name":"IContactStore2","features":[14]},{"name":"IContactStore3","features":[14]},{"name":"IContactStoreNotificationTriggerDetails","features":[14]},{"name":"IContactWebsite","features":[14]},{"name":"IContactWebsite2","features":[14]},{"name":"IFullContactCardOptions","features":[14]},{"name":"IKnownContactFieldStatics","features":[14]},{"name":"IPinnedContactIdsQueryResult","features":[14]},{"name":"IPinnedContactManager","features":[14]},{"name":"IPinnedContactManagerStatics","features":[14]},{"name":"KnownContactField","features":[14]},{"name":"PinnedContactIdsQueryResult","features":[14]},{"name":"PinnedContactManager","features":[14]},{"name":"PinnedContactSurface","features":[14]}],"16":[{"name":"ContactDataProviderConnection","features":[15]},{"name":"ContactDataProviderTriggerDetails","features":[15]},{"name":"ContactListCreateOrUpdateContactRequest","features":[15]},{"name":"ContactListCreateOrUpdateContactRequestEventArgs","features":[15]},{"name":"ContactListDeleteContactRequest","features":[15]},{"name":"ContactListDeleteContactRequestEventArgs","features":[15]},{"name":"ContactListServerSearchReadBatchRequest","features":[15]},{"name":"ContactListServerSearchReadBatchRequestEventArgs","features":[15]},{"name":"ContactListSyncManagerSyncRequest","features":[15]},{"name":"ContactListSyncManagerSyncRequestEventArgs","features":[15]},{"name":"IContactDataProviderConnection","features":[15]},{"name":"IContactDataProviderConnection2","features":[15]},{"name":"IContactDataProviderTriggerDetails","features":[15]},{"name":"IContactListCreateOrUpdateContactRequest","features":[15]},{"name":"IContactListCreateOrUpdateContactRequestEventArgs","features":[15]},{"name":"IContactListDeleteContactRequest","features":[15]},{"name":"IContactListDeleteContactRequestEventArgs","features":[15]},{"name":"IContactListServerSearchReadBatchRequest","features":[15]},{"name":"IContactListServerSearchReadBatchRequestEventArgs","features":[15]},{"name":"IContactListSyncManagerSyncRequest","features":[15]},{"name":"IContactListSyncManagerSyncRequestEventArgs","features":[15]}],"17":[{"name":"AddContactResult","features":[16]},{"name":"ContactPickerUI","features":[16]},{"name":"ContactRemovedEventArgs","features":[16]},{"name":"IContactPickerUI","features":[16]},{"name":"IContactPickerUI2","features":[16]},{"name":"IContactRemovedEventArgs","features":[16]}],"18":[{"name":"ActivationSignalDetectionConfiguration","features":[17]},{"name":"ActivationSignalDetectionConfigurationCreationResult","features":[17]},{"name":"ActivationSignalDetectionConfigurationCreationStatus","features":[17]},{"name":"ActivationSignalDetectionConfigurationRemovalResult","features":[17]},{"name":"ActivationSignalDetectionConfigurationSetModelDataResult","features":[17]},{"name":"ActivationSignalDetectionConfigurationStateChangeResult","features":[17]},{"name":"ActivationSignalDetectionTrainingDataFormat","features":[17]},{"name":"ActivationSignalDetector","features":[17]},{"name":"ActivationSignalDetectorKind","features":[17]},{"name":"ActivationSignalDetectorPowerState","features":[17]},{"name":"ConversationalAgentActivationKind","features":[17]},{"name":"ConversationalAgentActivationResult","features":[17]},{"name":"ConversationalAgentDetectorManager","features":[17]},{"name":"ConversationalAgentSession","features":[17]},{"name":"ConversationalAgentSessionInterruptedEventArgs","features":[17]},{"name":"ConversationalAgentSessionUpdateResponse","features":[17]},{"name":"ConversationalAgentSignal","features":[17]},{"name":"ConversationalAgentSignalDetectedEventArgs","features":[17]},{"name":"ConversationalAgentState","features":[17]},{"name":"ConversationalAgentSystemStateChangeType","features":[17]},{"name":"ConversationalAgentSystemStateChangedEventArgs","features":[17]},{"name":"ConversationalAgentVoiceActivationPrerequisiteKind","features":[17]},{"name":"DetectionConfigurationAvailabilityChangeKind","features":[17]},{"name":"DetectionConfigurationAvailabilityChangedEventArgs","features":[17]},{"name":"DetectionConfigurationAvailabilityInfo","features":[17]},{"name":"DetectionConfigurationTrainingStatus","features":[17]},{"name":"IActivationSignalDetectionConfiguration","features":[17]},{"name":"IActivationSignalDetectionConfiguration2","features":[17]},{"name":"IActivationSignalDetectionConfigurationCreationResult","features":[17]},{"name":"IActivationSignalDetector","features":[17]},{"name":"IActivationSignalDetector2","features":[17]},{"name":"IConversationalAgentDetectorManager","features":[17]},{"name":"IConversationalAgentDetectorManager2","features":[17]},{"name":"IConversationalAgentDetectorManagerStatics","features":[17]},{"name":"IConversationalAgentSession","features":[17]},{"name":"IConversationalAgentSession2","features":[17]},{"name":"IConversationalAgentSessionInterruptedEventArgs","features":[17]},{"name":"IConversationalAgentSessionStatics","features":[17]},{"name":"IConversationalAgentSignal","features":[17]},{"name":"IConversationalAgentSignal2","features":[17]},{"name":"IConversationalAgentSignalDetectedEventArgs","features":[17]},{"name":"IConversationalAgentSystemStateChangedEventArgs","features":[17]},{"name":"IDetectionConfigurationAvailabilityChangedEventArgs","features":[17]},{"name":"IDetectionConfigurationAvailabilityInfo","features":[17]},{"name":"IDetectionConfigurationAvailabilityInfo2","features":[17]},{"name":"SignalDetectorResourceKind","features":[17]}],"19":[{"name":"AppListEntry","features":[18]},{"name":"AppRestartFailureReason","features":[18]},{"name":"CoreApplication","features":[18]},{"name":"CoreApplicationView","features":[18]},{"name":"CoreApplicationViewTitleBar","features":[18]},{"name":"HostedViewClosingEventArgs","features":[18]},{"name":"IAppListEntry","features":[18]},{"name":"IAppListEntry2","features":[18]},{"name":"IAppListEntry3","features":[18]},{"name":"IAppListEntry4","features":[18]},{"name":"ICoreApplication","features":[18]},{"name":"ICoreApplication2","features":[18]},{"name":"ICoreApplication3","features":[18]},{"name":"ICoreApplicationExit","features":[18]},{"name":"ICoreApplicationUnhandledError","features":[18]},{"name":"ICoreApplicationUseCount","features":[18]},{"name":"ICoreApplicationView","features":[18]},{"name":"ICoreApplicationView2","features":[18]},{"name":"ICoreApplicationView3","features":[18]},{"name":"ICoreApplicationView5","features":[18]},{"name":"ICoreApplicationView6","features":[18]},{"name":"ICoreApplicationViewTitleBar","features":[18]},{"name":"ICoreImmersiveApplication","features":[18]},{"name":"ICoreImmersiveApplication2","features":[18]},{"name":"ICoreImmersiveApplication3","features":[18]},{"name":"IFrameworkView","features":[18]},{"name":"IFrameworkViewSource","features":[18]},{"name":"IHostedViewClosingEventArgs","features":[18]},{"name":"IUnhandledError","features":[18]},{"name":"IUnhandledErrorDetectedEventArgs","features":[18]},{"name":"UnhandledError","features":[18]},{"name":"UnhandledErrorDetectedEventArgs","features":[18]}],"20":[{"name":"Clipboard","features":[19]},{"name":"ClipboardContentOptions","features":[19]},{"name":"ClipboardHistoryChangedEventArgs","features":[19]},{"name":"ClipboardHistoryItem","features":[19]},{"name":"ClipboardHistoryItemsResult","features":[19]},{"name":"ClipboardHistoryItemsResultStatus","features":[19]},{"name":"DataPackage","features":[19]},{"name":"DataPackageOperation","features":[19]},{"name":"DataPackagePropertySet","features":[19]},{"name":"DataPackagePropertySetView","features":[19]},{"name":"DataPackageView","features":[19]},{"name":"DataProviderDeferral","features":[19]},{"name":"DataProviderHandler","features":[19]},{"name":"DataProviderRequest","features":[19]},{"name":"DataRequest","features":[19]},{"name":"DataRequestDeferral","features":[19]},{"name":"DataRequestedEventArgs","features":[19]},{"name":"DataTransferManager","features":[19]},{"name":"HtmlFormatHelper","features":[19]},{"name":"IClipboardContentOptions","features":[19]},{"name":"IClipboardHistoryChangedEventArgs","features":[19]},{"name":"IClipboardHistoryItem","features":[19]},{"name":"IClipboardHistoryItemsResult","features":[19]},{"name":"IClipboardStatics","features":[19]},{"name":"IClipboardStatics2","features":[19]},{"name":"IDataPackage","features":[19]},{"name":"IDataPackage2","features":[19]},{"name":"IDataPackage3","features":[19]},{"name":"IDataPackage4","features":[19]},{"name":"IDataPackagePropertySet","features":[19]},{"name":"IDataPackagePropertySet2","features":[19]},{"name":"IDataPackagePropertySet3","features":[19]},{"name":"IDataPackagePropertySet4","features":[19]},{"name":"IDataPackagePropertySetView","features":[19]},{"name":"IDataPackagePropertySetView2","features":[19]},{"name":"IDataPackagePropertySetView3","features":[19]},{"name":"IDataPackagePropertySetView4","features":[19]},{"name":"IDataPackagePropertySetView5","features":[19]},{"name":"IDataPackageView","features":[19]},{"name":"IDataPackageView2","features":[19]},{"name":"IDataPackageView3","features":[19]},{"name":"IDataPackageView4","features":[19]},{"name":"IDataProviderDeferral","features":[19]},{"name":"IDataProviderRequest","features":[19]},{"name":"IDataRequest","features":[19]},{"name":"IDataRequestDeferral","features":[19]},{"name":"IDataRequestedEventArgs","features":[19]},{"name":"IDataTransferManager","features":[19]},{"name":"IDataTransferManager2","features":[19]},{"name":"IDataTransferManagerStatics","features":[19]},{"name":"IDataTransferManagerStatics2","features":[19]},{"name":"IDataTransferManagerStatics3","features":[19]},{"name":"IHtmlFormatHelperStatics","features":[19]},{"name":"IOperationCompletedEventArgs","features":[19]},{"name":"IOperationCompletedEventArgs2","features":[19]},{"name":"IShareCompletedEventArgs","features":[19]},{"name":"IShareProvider","features":[19]},{"name":"IShareProviderFactory","features":[19]},{"name":"IShareProviderOperation","features":[19]},{"name":"IShareProvidersRequestedEventArgs","features":[19]},{"name":"IShareTargetInfo","features":[19]},{"name":"IShareUIOptions","features":[19]},{"name":"ISharedStorageAccessManagerStatics","features":[19]},{"name":"IStandardDataFormatsStatics","features":[19]},{"name":"IStandardDataFormatsStatics2","features":[19]},{"name":"IStandardDataFormatsStatics3","features":[19]},{"name":"ITargetApplicationChosenEventArgs","features":[19]},{"name":"OperationCompletedEventArgs","features":[19]},{"name":"SetHistoryItemAsContentStatus","features":[19]},{"name":"ShareCompletedEventArgs","features":[19]},{"name":"ShareProvider","features":[19]},{"name":"ShareProviderHandler","features":[19]},{"name":"ShareProviderOperation","features":[19]},{"name":"ShareProvidersRequestedEventArgs","features":[19]},{"name":"ShareTargetInfo","features":[19]},{"name":"ShareUIOptions","features":[19]},{"name":"ShareUITheme","features":[19]},{"name":"SharedStorageAccessManager","features":[19]},{"name":"StandardDataFormats","features":[19]},{"name":"TargetApplicationChosenEventArgs","features":[19]}],"21":[{"name":"DragDropModifiers","features":[20]}],"22":[{"name":"CoreDragDropManager","features":[21]},{"name":"CoreDragInfo","features":[21]},{"name":"CoreDragOperation","features":[21]},{"name":"CoreDragUIContentMode","features":[21]},{"name":"CoreDragUIOverride","features":[21]},{"name":"CoreDropOperationTargetRequestedEventArgs","features":[21]},{"name":"ICoreDragDropManager","features":[21]},{"name":"ICoreDragDropManagerStatics","features":[21]},{"name":"ICoreDragInfo","features":[21]},{"name":"ICoreDragInfo2","features":[21]},{"name":"ICoreDragOperation","features":[21]},{"name":"ICoreDragOperation2","features":[21]},{"name":"ICoreDragUIOverride","features":[21]},{"name":"ICoreDropOperationTarget","features":[21]},{"name":"ICoreDropOperationTargetRequestedEventArgs","features":[21]}],"23":[{"name":"IQuickLink","features":[22]},{"name":"IShareOperation","features":[22]},{"name":"IShareOperation2","features":[22]},{"name":"IShareOperation3","features":[22]},{"name":"QuickLink","features":[22]},{"name":"ShareOperation","features":[22]}],"24":[{"name":"EmailAttachment","features":[23]},{"name":"EmailAttachmentDownloadState","features":[23]},{"name":"EmailBatchStatus","features":[23]},{"name":"EmailCertificateValidationStatus","features":[23]},{"name":"EmailConversation","features":[23]},{"name":"EmailConversationBatch","features":[23]},{"name":"EmailConversationReader","features":[23]},{"name":"EmailFlagState","features":[23]},{"name":"EmailFolder","features":[23]},{"name":"EmailImportance","features":[23]},{"name":"EmailIrmInfo","features":[23]},{"name":"EmailIrmTemplate","features":[23]},{"name":"EmailItemCounts","features":[23]},{"name":"EmailMailbox","features":[23]},{"name":"EmailMailboxAction","features":[23]},{"name":"EmailMailboxActionKind","features":[23]},{"name":"EmailMailboxAllowedSmimeEncryptionAlgorithmNegotiation","features":[23]},{"name":"EmailMailboxAutoReply","features":[23]},{"name":"EmailMailboxAutoReplyMessageResponseKind","features":[23]},{"name":"EmailMailboxAutoReplySettings","features":[23]},{"name":"EmailMailboxCapabilities","features":[23]},{"name":"EmailMailboxChange","features":[23]},{"name":"EmailMailboxChangeReader","features":[23]},{"name":"EmailMailboxChangeTracker","features":[23]},{"name":"EmailMailboxChangeType","features":[23]},{"name":"EmailMailboxChangedDeferral","features":[23]},{"name":"EmailMailboxChangedEventArgs","features":[23]},{"name":"EmailMailboxCreateFolderResult","features":[23]},{"name":"EmailMailboxCreateFolderStatus","features":[23]},{"name":"EmailMailboxDeleteFolderStatus","features":[23]},{"name":"EmailMailboxEmptyFolderStatus","features":[23]},{"name":"EmailMailboxOtherAppReadAccess","features":[23]},{"name":"EmailMailboxOtherAppWriteAccess","features":[23]},{"name":"EmailMailboxPolicies","features":[23]},{"name":"EmailMailboxSmimeEncryptionAlgorithm","features":[23]},{"name":"EmailMailboxSmimeSigningAlgorithm","features":[23]},{"name":"EmailMailboxSyncManager","features":[23]},{"name":"EmailMailboxSyncStatus","features":[23]},{"name":"EmailManager","features":[23]},{"name":"EmailManagerForUser","features":[23]},{"name":"EmailMeetingInfo","features":[23]},{"name":"EmailMeetingResponseType","features":[23]},{"name":"EmailMessage","features":[23]},{"name":"EmailMessageBatch","features":[23]},{"name":"EmailMessageBodyKind","features":[23]},{"name":"EmailMessageDownloadState","features":[23]},{"name":"EmailMessageReader","features":[23]},{"name":"EmailMessageResponseKind","features":[23]},{"name":"EmailMessageSmimeKind","features":[23]},{"name":"EmailQueryKind","features":[23]},{"name":"EmailQueryOptions","features":[23]},{"name":"EmailQuerySearchFields","features":[23]},{"name":"EmailQuerySearchScope","features":[23]},{"name":"EmailQuerySortDirection","features":[23]},{"name":"EmailQuerySortProperty","features":[23]},{"name":"EmailQueryTextSearch","features":[23]},{"name":"EmailRecipient","features":[23]},{"name":"EmailRecipientResolutionResult","features":[23]},{"name":"EmailRecipientResolutionStatus","features":[23]},{"name":"EmailSpecialFolderKind","features":[23]},{"name":"EmailStore","features":[23]},{"name":"EmailStoreAccessType","features":[23]},{"name":"EmailStoreNotificationTriggerDetails","features":[23]},{"name":"IEmailAttachment","features":[23]},{"name":"IEmailAttachment2","features":[23]},{"name":"IEmailAttachmentFactory","features":[23]},{"name":"IEmailAttachmentFactory2","features":[23]},{"name":"IEmailConversation","features":[23]},{"name":"IEmailConversationBatch","features":[23]},{"name":"IEmailConversationReader","features":[23]},{"name":"IEmailFolder","features":[23]},{"name":"IEmailIrmInfo","features":[23]},{"name":"IEmailIrmInfoFactory","features":[23]},{"name":"IEmailIrmTemplate","features":[23]},{"name":"IEmailIrmTemplateFactory","features":[23]},{"name":"IEmailItemCounts","features":[23]},{"name":"IEmailMailbox","features":[23]},{"name":"IEmailMailbox2","features":[23]},{"name":"IEmailMailbox3","features":[23]},{"name":"IEmailMailbox4","features":[23]},{"name":"IEmailMailbox5","features":[23]},{"name":"IEmailMailboxAction","features":[23]},{"name":"IEmailMailboxAutoReply","features":[23]},{"name":"IEmailMailboxAutoReplySettings","features":[23]},{"name":"IEmailMailboxCapabilities","features":[23]},{"name":"IEmailMailboxCapabilities2","features":[23]},{"name":"IEmailMailboxCapabilities3","features":[23]},{"name":"IEmailMailboxChange","features":[23]},{"name":"IEmailMailboxChangeReader","features":[23]},{"name":"IEmailMailboxChangeTracker","features":[23]},{"name":"IEmailMailboxChangedDeferral","features":[23]},{"name":"IEmailMailboxChangedEventArgs","features":[23]},{"name":"IEmailMailboxCreateFolderResult","features":[23]},{"name":"IEmailMailboxPolicies","features":[23]},{"name":"IEmailMailboxPolicies2","features":[23]},{"name":"IEmailMailboxPolicies3","features":[23]},{"name":"IEmailMailboxSyncManager","features":[23]},{"name":"IEmailMailboxSyncManager2","features":[23]},{"name":"IEmailManagerForUser","features":[23]},{"name":"IEmailManagerStatics","features":[23]},{"name":"IEmailManagerStatics2","features":[23]},{"name":"IEmailManagerStatics3","features":[23]},{"name":"IEmailMeetingInfo","features":[23]},{"name":"IEmailMeetingInfo2","features":[23]},{"name":"IEmailMessage","features":[23]},{"name":"IEmailMessage2","features":[23]},{"name":"IEmailMessage3","features":[23]},{"name":"IEmailMessage4","features":[23]},{"name":"IEmailMessageBatch","features":[23]},{"name":"IEmailMessageReader","features":[23]},{"name":"IEmailQueryOptions","features":[23]},{"name":"IEmailQueryOptionsFactory","features":[23]},{"name":"IEmailQueryTextSearch","features":[23]},{"name":"IEmailRecipient","features":[23]},{"name":"IEmailRecipientFactory","features":[23]},{"name":"IEmailRecipientResolutionResult","features":[23]},{"name":"IEmailRecipientResolutionResult2","features":[23]},{"name":"IEmailStore","features":[23]},{"name":"IEmailStoreNotificationTriggerDetails","features":[23]}],"25":[{"name":"EmailDataProviderConnection","features":[24]},{"name":"EmailDataProviderTriggerDetails","features":[24]},{"name":"EmailMailboxCreateFolderRequest","features":[24]},{"name":"EmailMailboxCreateFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxDeleteFolderRequest","features":[24]},{"name":"EmailMailboxDeleteFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxDownloadAttachmentRequest","features":[24]},{"name":"EmailMailboxDownloadAttachmentRequestEventArgs","features":[24]},{"name":"EmailMailboxDownloadMessageRequest","features":[24]},{"name":"EmailMailboxDownloadMessageRequestEventArgs","features":[24]},{"name":"EmailMailboxEmptyFolderRequest","features":[24]},{"name":"EmailMailboxEmptyFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxForwardMeetingRequest","features":[24]},{"name":"EmailMailboxForwardMeetingRequestEventArgs","features":[24]},{"name":"EmailMailboxGetAutoReplySettingsRequest","features":[24]},{"name":"EmailMailboxGetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"EmailMailboxMoveFolderRequest","features":[24]},{"name":"EmailMailboxMoveFolderRequestEventArgs","features":[24]},{"name":"EmailMailboxProposeNewTimeForMeetingRequest","features":[24]},{"name":"EmailMailboxProposeNewTimeForMeetingRequestEventArgs","features":[24]},{"name":"EmailMailboxResolveRecipientsRequest","features":[24]},{"name":"EmailMailboxResolveRecipientsRequestEventArgs","features":[24]},{"name":"EmailMailboxServerSearchReadBatchRequest","features":[24]},{"name":"EmailMailboxServerSearchReadBatchRequestEventArgs","features":[24]},{"name":"EmailMailboxSetAutoReplySettingsRequest","features":[24]},{"name":"EmailMailboxSetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"EmailMailboxSyncManagerSyncRequest","features":[24]},{"name":"EmailMailboxSyncManagerSyncRequestEventArgs","features":[24]},{"name":"EmailMailboxUpdateMeetingResponseRequest","features":[24]},{"name":"EmailMailboxUpdateMeetingResponseRequestEventArgs","features":[24]},{"name":"EmailMailboxValidateCertificatesRequest","features":[24]},{"name":"EmailMailboxValidateCertificatesRequestEventArgs","features":[24]},{"name":"IEmailDataProviderConnection","features":[24]},{"name":"IEmailDataProviderTriggerDetails","features":[24]},{"name":"IEmailMailboxCreateFolderRequest","features":[24]},{"name":"IEmailMailboxCreateFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxDeleteFolderRequest","features":[24]},{"name":"IEmailMailboxDeleteFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxDownloadAttachmentRequest","features":[24]},{"name":"IEmailMailboxDownloadAttachmentRequestEventArgs","features":[24]},{"name":"IEmailMailboxDownloadMessageRequest","features":[24]},{"name":"IEmailMailboxDownloadMessageRequestEventArgs","features":[24]},{"name":"IEmailMailboxEmptyFolderRequest","features":[24]},{"name":"IEmailMailboxEmptyFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxForwardMeetingRequest","features":[24]},{"name":"IEmailMailboxForwardMeetingRequestEventArgs","features":[24]},{"name":"IEmailMailboxGetAutoReplySettingsRequest","features":[24]},{"name":"IEmailMailboxGetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"IEmailMailboxMoveFolderRequest","features":[24]},{"name":"IEmailMailboxMoveFolderRequestEventArgs","features":[24]},{"name":"IEmailMailboxProposeNewTimeForMeetingRequest","features":[24]},{"name":"IEmailMailboxProposeNewTimeForMeetingRequestEventArgs","features":[24]},{"name":"IEmailMailboxResolveRecipientsRequest","features":[24]},{"name":"IEmailMailboxResolveRecipientsRequestEventArgs","features":[24]},{"name":"IEmailMailboxServerSearchReadBatchRequest","features":[24]},{"name":"IEmailMailboxServerSearchReadBatchRequestEventArgs","features":[24]},{"name":"IEmailMailboxSetAutoReplySettingsRequest","features":[24]},{"name":"IEmailMailboxSetAutoReplySettingsRequestEventArgs","features":[24]},{"name":"IEmailMailboxSyncManagerSyncRequest","features":[24]},{"name":"IEmailMailboxSyncManagerSyncRequestEventArgs","features":[24]},{"name":"IEmailMailboxUpdateMeetingResponseRequest","features":[24]},{"name":"IEmailMailboxUpdateMeetingResponseRequestEventArgs","features":[24]},{"name":"IEmailMailboxValidateCertificatesRequest","features":[24]},{"name":"IEmailMailboxValidateCertificatesRequestEventArgs","features":[24]}],"26":[{"name":"ExtendedExecutionReason","features":[25]},{"name":"ExtendedExecutionResult","features":[25]},{"name":"ExtendedExecutionRevokedEventArgs","features":[25]},{"name":"ExtendedExecutionRevokedReason","features":[25]},{"name":"ExtendedExecutionSession","features":[25]},{"name":"IExtendedExecutionRevokedEventArgs","features":[25]},{"name":"IExtendedExecutionSession","features":[25]}],"27":[{"name":"ExtendedExecutionForegroundReason","features":[26]},{"name":"ExtendedExecutionForegroundResult","features":[26]},{"name":"ExtendedExecutionForegroundRevokedEventArgs","features":[26]},{"name":"ExtendedExecutionForegroundRevokedReason","features":[26]},{"name":"ExtendedExecutionForegroundSession","features":[26]},{"name":"IExtendedExecutionForegroundRevokedEventArgs","features":[26]},{"name":"IExtendedExecutionForegroundSession","features":[26]}],"28":[{"name":"HolographicKeyboard","features":[27]},{"name":"IHolographicKeyboard","features":[27]},{"name":"IHolographicKeyboardStatics","features":[27]}],"29":[{"name":"ILockApplicationHost","features":[28]},{"name":"ILockApplicationHostStatics","features":[28]},{"name":"ILockScreenBadge","features":[28]},{"name":"ILockScreenInfo","features":[28]},{"name":"ILockScreenUnlockingDeferral","features":[28]},{"name":"ILockScreenUnlockingEventArgs","features":[28]},{"name":"LockApplicationHost","features":[28]},{"name":"LockScreenBadge","features":[28]},{"name":"LockScreenInfo","features":[28]},{"name":"LockScreenUnlockingDeferral","features":[28]},{"name":"LockScreenUnlockingEventArgs","features":[28]}],"30":[{"name":"IPaymentAddress","features":[29]},{"name":"IPaymentCanMakePaymentResult","features":[29]},{"name":"IPaymentCanMakePaymentResultFactory","features":[29]},{"name":"IPaymentCurrencyAmount","features":[29]},{"name":"IPaymentCurrencyAmountFactory","features":[29]},{"name":"IPaymentDetails","features":[29]},{"name":"IPaymentDetailsFactory","features":[29]},{"name":"IPaymentDetailsModifier","features":[29]},{"name":"IPaymentDetailsModifierFactory","features":[29]},{"name":"IPaymentItem","features":[29]},{"name":"IPaymentItemFactory","features":[29]},{"name":"IPaymentMediator","features":[29]},{"name":"IPaymentMediator2","features":[29]},{"name":"IPaymentMerchantInfo","features":[29]},{"name":"IPaymentMerchantInfoFactory","features":[29]},{"name":"IPaymentMethodData","features":[29]},{"name":"IPaymentMethodDataFactory","features":[29]},{"name":"IPaymentOptions","features":[29]},{"name":"IPaymentRequest","features":[29]},{"name":"IPaymentRequest2","features":[29]},{"name":"IPaymentRequestChangedArgs","features":[29]},{"name":"IPaymentRequestChangedResult","features":[29]},{"name":"IPaymentRequestChangedResultFactory","features":[29]},{"name":"IPaymentRequestFactory","features":[29]},{"name":"IPaymentRequestFactory2","features":[29]},{"name":"IPaymentRequestSubmitResult","features":[29]},{"name":"IPaymentResponse","features":[29]},{"name":"IPaymentShippingOption","features":[29]},{"name":"IPaymentShippingOptionFactory","features":[29]},{"name":"IPaymentToken","features":[29]},{"name":"IPaymentTokenFactory","features":[29]},{"name":"PaymentAddress","features":[29]},{"name":"PaymentCanMakePaymentResult","features":[29]},{"name":"PaymentCanMakePaymentResultStatus","features":[29]},{"name":"PaymentCurrencyAmount","features":[29]},{"name":"PaymentDetails","features":[29]},{"name":"PaymentDetailsModifier","features":[29]},{"name":"PaymentItem","features":[29]},{"name":"PaymentMediator","features":[29]},{"name":"PaymentMerchantInfo","features":[29]},{"name":"PaymentMethodData","features":[29]},{"name":"PaymentOptionPresence","features":[29]},{"name":"PaymentOptions","features":[29]},{"name":"PaymentRequest","features":[29]},{"name":"PaymentRequestChangeKind","features":[29]},{"name":"PaymentRequestChangedArgs","features":[29]},{"name":"PaymentRequestChangedHandler","features":[29]},{"name":"PaymentRequestChangedResult","features":[29]},{"name":"PaymentRequestCompletionStatus","features":[29]},{"name":"PaymentRequestStatus","features":[29]},{"name":"PaymentRequestSubmitResult","features":[29]},{"name":"PaymentResponse","features":[29]},{"name":"PaymentShippingOption","features":[29]},{"name":"PaymentShippingType","features":[29]},{"name":"PaymentToken","features":[29]}],"31":[{"name":"IPaymentAppCanMakePaymentTriggerDetails","features":[30]},{"name":"IPaymentAppManager","features":[30]},{"name":"IPaymentAppManagerStatics","features":[30]},{"name":"IPaymentTransaction","features":[30]},{"name":"IPaymentTransactionAcceptResult","features":[30]},{"name":"IPaymentTransactionStatics","features":[30]},{"name":"PaymentAppCanMakePaymentTriggerDetails","features":[30]},{"name":"PaymentAppManager","features":[30]},{"name":"PaymentTransaction","features":[30]},{"name":"PaymentTransactionAcceptResult","features":[30]}],"32":[{"name":"HolographicApplicationPreview","features":[31]},{"name":"HolographicKeyboardPlacementOverridePreview","features":[31]},{"name":"IHolographicApplicationPreviewStatics","features":[31]},{"name":"IHolographicKeyboardPlacementOverridePreview","features":[31]},{"name":"IHolographicKeyboardPlacementOverridePreviewStatics","features":[31]}],"33":[{"name":"IInkWorkspaceHostedAppManager","features":[32]},{"name":"IInkWorkspaceHostedAppManagerStatics","features":[32]},{"name":"InkWorkspaceHostedAppManager","features":[32]},{"name":"PreviewInkWorkspaceContract","features":[32]}],"34":[{"name":"INotePlacementChangedPreviewEventArgs","features":[33]},{"name":"INoteVisibilityChangedPreviewEventArgs","features":[33]},{"name":"INotesWindowManagerPreview","features":[33]},{"name":"INotesWindowManagerPreview2","features":[33]},{"name":"INotesWindowManagerPreviewShowNoteOptions","features":[33]},{"name":"INotesWindowManagerPreviewStatics","features":[33]},{"name":"NotePlacementChangedPreviewEventArgs","features":[33]},{"name":"NoteVisibilityChangedPreviewEventArgs","features":[33]},{"name":"NotesWindowManagerPreview","features":[33]},{"name":"NotesWindowManagerPreviewShowNoteOptions","features":[33]},{"name":"PreviewNotesContract","features":[33]}],"35":[{"name":"IResourceLoader","features":[34]},{"name":"IResourceLoader2","features":[34]},{"name":"IResourceLoaderFactory","features":[34]},{"name":"IResourceLoaderStatics","features":[34]},{"name":"IResourceLoaderStatics2","features":[34]},{"name":"IResourceLoaderStatics3","features":[34]},{"name":"IResourceLoaderStatics4","features":[34]},{"name":"ResourceLoader","features":[34]}],"36":[{"name":"INamedResource","features":[35]},{"name":"IResourceCandidate","features":[35]},{"name":"IResourceCandidate2","features":[35]},{"name":"IResourceCandidate3","features":[35]},{"name":"IResourceContext","features":[35]},{"name":"IResourceContextStatics","features":[35]},{"name":"IResourceContextStatics2","features":[35]},{"name":"IResourceContextStatics3","features":[35]},{"name":"IResourceContextStatics4","features":[35]},{"name":"IResourceManager","features":[35]},{"name":"IResourceManager2","features":[35]},{"name":"IResourceManagerStatics","features":[35]},{"name":"IResourceMap","features":[35]},{"name":"IResourceQualifier","features":[35]},{"name":"NamedResource","features":[35]},{"name":"ResourceCandidate","features":[35]},{"name":"ResourceCandidateKind","features":[35]},{"name":"ResourceCandidateVectorView","features":[35,36]},{"name":"ResourceContext","features":[35]},{"name":"ResourceContextLanguagesVectorView","features":[35,36]},{"name":"ResourceLayoutInfo","features":[35]},{"name":"ResourceManager","features":[35]},{"name":"ResourceMap","features":[35]},{"name":"ResourceMapIterator","features":[35,36]},{"name":"ResourceMapMapView","features":[35,36]},{"name":"ResourceMapMapViewIterator","features":[35,36]},{"name":"ResourceQualifier","features":[35]},{"name":"ResourceQualifierMapView","features":[35,36]},{"name":"ResourceQualifierObservableMap","features":[35,36]},{"name":"ResourceQualifierPersistence","features":[35]},{"name":"ResourceQualifierVectorView","features":[35,36]}],"37":[{"name":"IIndexedResourceCandidate","features":[37]},{"name":"IIndexedResourceQualifier","features":[37]},{"name":"IResourceIndexer","features":[37]},{"name":"IResourceIndexerFactory","features":[37]},{"name":"IResourceIndexerFactory2","features":[37]},{"name":"IndexedResourceCandidate","features":[37]},{"name":"IndexedResourceQualifier","features":[37]},{"name":"IndexedResourceType","features":[37]},{"name":"ResourceIndexer","features":[37]},{"name":"ResourceIndexerContract","features":[37]}],"38":[{"name":"ILocalContentSuggestionSettings","features":[38]},{"name":"ISearchPane","features":[38]},{"name":"ISearchPaneQueryChangedEventArgs","features":[38]},{"name":"ISearchPaneQueryLinguisticDetails","features":[38]},{"name":"ISearchPaneQuerySubmittedEventArgs","features":[38]},{"name":"ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails","features":[38]},{"name":"ISearchPaneResultSuggestionChosenEventArgs","features":[38]},{"name":"ISearchPaneStatics","features":[38]},{"name":"ISearchPaneStaticsWithHideThisApplication","features":[38]},{"name":"ISearchPaneSuggestionsRequest","features":[38]},{"name":"ISearchPaneSuggestionsRequestDeferral","features":[38]},{"name":"ISearchPaneSuggestionsRequestedEventArgs","features":[38]},{"name":"ISearchPaneVisibilityChangedEventArgs","features":[38]},{"name":"ISearchQueryLinguisticDetails","features":[38]},{"name":"ISearchQueryLinguisticDetailsFactory","features":[38]},{"name":"ISearchSuggestionCollection","features":[38]},{"name":"ISearchSuggestionsRequest","features":[38]},{"name":"ISearchSuggestionsRequestDeferral","features":[38]},{"name":"LocalContentSuggestionSettings","features":[38]},{"name":"SearchContract","features":[38]},{"name":"SearchPane","features":[38]},{"name":"SearchPaneQueryChangedEventArgs","features":[38]},{"name":"SearchPaneQueryLinguisticDetails","features":[38]},{"name":"SearchPaneQuerySubmittedEventArgs","features":[38]},{"name":"SearchPaneResultSuggestionChosenEventArgs","features":[38]},{"name":"SearchPaneSuggestionsRequest","features":[38]},{"name":"SearchPaneSuggestionsRequestDeferral","features":[38]},{"name":"SearchPaneSuggestionsRequestedEventArgs","features":[38]},{"name":"SearchPaneVisibilityChangedEventArgs","features":[38]},{"name":"SearchQueryLinguisticDetails","features":[38]},{"name":"SearchSuggestionCollection","features":[38]},{"name":"SearchSuggestionsRequest","features":[38]},{"name":"SearchSuggestionsRequestDeferral","features":[38]}],"39":[{"name":"IRequestingFocusOnKeyboardInputEventArgs","features":[39]},{"name":"ISearchSuggestion","features":[39]},{"name":"ISearchSuggestionManager","features":[39]},{"name":"ISearchSuggestionsRequestedEventArgs","features":[39]},{"name":"RequestingFocusOnKeyboardInputEventArgs","features":[39]},{"name":"SearchCoreContract","features":[39]},{"name":"SearchSuggestion","features":[39]},{"name":"SearchSuggestionKind","features":[39]},{"name":"SearchSuggestionManager","features":[39]},{"name":"SearchSuggestionsRequestedEventArgs","features":[39]}],"46":[{"name":"IUserActivity","features":[40]},{"name":"IUserActivity2","features":[40]},{"name":"IUserActivity3","features":[40]},{"name":"IUserActivityAttribution","features":[40]},{"name":"IUserActivityAttributionFactory","features":[40]},{"name":"IUserActivityChannel","features":[40]},{"name":"IUserActivityChannel2","features":[40]},{"name":"IUserActivityChannelStatics","features":[40]},{"name":"IUserActivityChannelStatics2","features":[40]},{"name":"IUserActivityChannelStatics3","features":[40]},{"name":"IUserActivityContentInfo","features":[40]},{"name":"IUserActivityContentInfoStatics","features":[40]},{"name":"IUserActivityFactory","features":[40]},{"name":"IUserActivityRequest","features":[40]},{"name":"IUserActivityRequestManager","features":[40]},{"name":"IUserActivityRequestManagerStatics","features":[40]},{"name":"IUserActivityRequestedEventArgs","features":[40]},{"name":"IUserActivitySession","features":[40]},{"name":"IUserActivitySessionHistoryItem","features":[40]},{"name":"IUserActivityStatics","features":[40]},{"name":"IUserActivityVisualElements","features":[40]},{"name":"IUserActivityVisualElements2","features":[40]},{"name":"UserActivity","features":[40]},{"name":"UserActivityAttribution","features":[40]},{"name":"UserActivityChannel","features":[40]},{"name":"UserActivityContentInfo","features":[40]},{"name":"UserActivityRequest","features":[40]},{"name":"UserActivityRequestManager","features":[40]},{"name":"UserActivityRequestedEventArgs","features":[40]},{"name":"UserActivitySession","features":[40]},{"name":"UserActivitySessionHistoryItem","features":[40]},{"name":"UserActivityState","features":[40]},{"name":"UserActivityVisualElements","features":[40]}],"47":[{"name":"CoreUserActivityManager","features":[41]},{"name":"ICoreUserActivityManagerStatics","features":[41]}],"48":[{"name":"IUserDataAccount","features":[42]},{"name":"IUserDataAccount2","features":[42]},{"name":"IUserDataAccount3","features":[42]},{"name":"IUserDataAccount4","features":[42]},{"name":"IUserDataAccountManagerForUser","features":[42]},{"name":"IUserDataAccountManagerStatics","features":[42]},{"name":"IUserDataAccountManagerStatics2","features":[42]},{"name":"IUserDataAccountStore","features":[42]},{"name":"IUserDataAccountStore2","features":[42]},{"name":"IUserDataAccountStore3","features":[42]},{"name":"IUserDataAccountStoreChangedEventArgs","features":[42]},{"name":"UserDataAccount","features":[42]},{"name":"UserDataAccountContentKinds","features":[42]},{"name":"UserDataAccountManager","features":[42]},{"name":"UserDataAccountManagerForUser","features":[42]},{"name":"UserDataAccountOtherAppReadAccess","features":[42]},{"name":"UserDataAccountStore","features":[42]},{"name":"UserDataAccountStoreAccessType","features":[42]},{"name":"UserDataAccountStoreChangedEventArgs","features":[42]}],"49":[{"name":"IUserDataAccountPartnerAccountInfo","features":[43]},{"name":"IUserDataAccountProviderAddAccountOperation","features":[43]},{"name":"IUserDataAccountProviderOperation","features":[43]},{"name":"IUserDataAccountProviderResolveErrorsOperation","features":[43]},{"name":"IUserDataAccountProviderSettingsOperation","features":[43]},{"name":"UserDataAccountPartnerAccountInfo","features":[43]},{"name":"UserDataAccountProviderAddAccountOperation","features":[43]},{"name":"UserDataAccountProviderOperationKind","features":[43]},{"name":"UserDataAccountProviderPartnerAccountKind","features":[43]},{"name":"UserDataAccountProviderResolveErrorsOperation","features":[43]},{"name":"UserDataAccountProviderSettingsOperation","features":[43]}],"50":[{"name":"DeviceAccountAuthenticationType","features":[44]},{"name":"DeviceAccountConfiguration","features":[44]},{"name":"DeviceAccountIconId","features":[44]},{"name":"DeviceAccountMailAgeFilter","features":[44]},{"name":"DeviceAccountServerType","features":[44]},{"name":"DeviceAccountSyncScheduleKind","features":[44]},{"name":"IDeviceAccountConfiguration","features":[44]},{"name":"IDeviceAccountConfiguration2","features":[44]},{"name":"IUserDataAccountSystemAccessManagerStatics","features":[44]},{"name":"IUserDataAccountSystemAccessManagerStatics2","features":[44]},{"name":"UserDataAccountSystemAccessManager","features":[44]}],"51":[{"name":"IUserDataTask","features":[45]},{"name":"IUserDataTaskBatch","features":[45]},{"name":"IUserDataTaskList","features":[45]},{"name":"IUserDataTaskListLimitedWriteOperations","features":[45]},{"name":"IUserDataTaskListSyncManager","features":[45]},{"name":"IUserDataTaskManager","features":[45]},{"name":"IUserDataTaskManagerStatics","features":[45]},{"name":"IUserDataTaskQueryOptions","features":[45]},{"name":"IUserDataTaskReader","features":[45]},{"name":"IUserDataTaskRecurrenceProperties","features":[45]},{"name":"IUserDataTaskRegenerationProperties","features":[45]},{"name":"IUserDataTaskStore","features":[45]},{"name":"UserDataTask","features":[45]},{"name":"UserDataTaskBatch","features":[45]},{"name":"UserDataTaskDaysOfWeek","features":[45]},{"name":"UserDataTaskDetailsKind","features":[45]},{"name":"UserDataTaskKind","features":[45]},{"name":"UserDataTaskList","features":[45]},{"name":"UserDataTaskListLimitedWriteOperations","features":[45]},{"name":"UserDataTaskListOtherAppReadAccess","features":[45]},{"name":"UserDataTaskListOtherAppWriteAccess","features":[45]},{"name":"UserDataTaskListSyncManager","features":[45]},{"name":"UserDataTaskListSyncStatus","features":[45]},{"name":"UserDataTaskManager","features":[45]},{"name":"UserDataTaskPriority","features":[45]},{"name":"UserDataTaskQueryKind","features":[45]},{"name":"UserDataTaskQueryOptions","features":[45]},{"name":"UserDataTaskQuerySortProperty","features":[45]},{"name":"UserDataTaskReader","features":[45]},{"name":"UserDataTaskRecurrenceProperties","features":[45]},{"name":"UserDataTaskRecurrenceUnit","features":[45]},{"name":"UserDataTaskRegenerationProperties","features":[45]},{"name":"UserDataTaskRegenerationUnit","features":[45]},{"name":"UserDataTaskSensitivity","features":[45]},{"name":"UserDataTaskStore","features":[45]},{"name":"UserDataTaskStoreAccessType","features":[45]},{"name":"UserDataTaskWeekOfMonth","features":[45]}],"52":[{"name":"IUserDataTaskDataProviderConnection","features":[46]},{"name":"IUserDataTaskDataProviderTriggerDetails","features":[46]},{"name":"IUserDataTaskListCompleteTaskRequest","features":[46]},{"name":"IUserDataTaskListCompleteTaskRequestEventArgs","features":[46]},{"name":"IUserDataTaskListCreateOrUpdateTaskRequest","features":[46]},{"name":"IUserDataTaskListCreateOrUpdateTaskRequestEventArgs","features":[46]},{"name":"IUserDataTaskListDeleteTaskRequest","features":[46]},{"name":"IUserDataTaskListDeleteTaskRequestEventArgs","features":[46]},{"name":"IUserDataTaskListSkipOccurrenceRequest","features":[46]},{"name":"IUserDataTaskListSkipOccurrenceRequestEventArgs","features":[46]},{"name":"IUserDataTaskListSyncManagerSyncRequest","features":[46]},{"name":"IUserDataTaskListSyncManagerSyncRequestEventArgs","features":[46]},{"name":"UserDataTaskDataProviderConnection","features":[46]},{"name":"UserDataTaskDataProviderTriggerDetails","features":[46]},{"name":"UserDataTaskListCompleteTaskRequest","features":[46]},{"name":"UserDataTaskListCompleteTaskRequestEventArgs","features":[46]},{"name":"UserDataTaskListCreateOrUpdateTaskRequest","features":[46]},{"name":"UserDataTaskListCreateOrUpdateTaskRequestEventArgs","features":[46]},{"name":"UserDataTaskListDeleteTaskRequest","features":[46]},{"name":"UserDataTaskListDeleteTaskRequestEventArgs","features":[46]},{"name":"UserDataTaskListSkipOccurrenceRequest","features":[46]},{"name":"UserDataTaskListSkipOccurrenceRequestEventArgs","features":[46]},{"name":"UserDataTaskListSyncManagerSyncRequest","features":[46]},{"name":"UserDataTaskListSyncManagerSyncRequestEventArgs","features":[46]}],"53":[{"name":"IVoiceCommand","features":[47]},{"name":"IVoiceCommandCompletedEventArgs","features":[47]},{"name":"IVoiceCommandConfirmationResult","features":[47]},{"name":"IVoiceCommandContentTile","features":[47]},{"name":"IVoiceCommandDefinition","features":[47]},{"name":"IVoiceCommandDefinitionManagerStatics","features":[47]},{"name":"IVoiceCommandDisambiguationResult","features":[47]},{"name":"IVoiceCommandResponse","features":[47]},{"name":"IVoiceCommandResponseStatics","features":[47]},{"name":"IVoiceCommandServiceConnection","features":[47]},{"name":"IVoiceCommandServiceConnectionStatics","features":[47]},{"name":"IVoiceCommandUserMessage","features":[47]},{"name":"VoiceCommand","features":[47]},{"name":"VoiceCommandCompletedEventArgs","features":[47]},{"name":"VoiceCommandCompletionReason","features":[47]},{"name":"VoiceCommandConfirmationResult","features":[47]},{"name":"VoiceCommandContentTile","features":[47]},{"name":"VoiceCommandContentTileType","features":[47]},{"name":"VoiceCommandDefinition","features":[47]},{"name":"VoiceCommandDefinitionManager","features":[47]},{"name":"VoiceCommandDisambiguationResult","features":[47]},{"name":"VoiceCommandResponse","features":[47]},{"name":"VoiceCommandServiceConnection","features":[47]},{"name":"VoiceCommandUserMessage","features":[47]}],"54":[{"name":"IWalletBarcode","features":[48]},{"name":"IWalletBarcodeFactory","features":[48]},{"name":"IWalletItem","features":[48]},{"name":"IWalletItemCustomProperty","features":[48]},{"name":"IWalletItemCustomPropertyFactory","features":[48]},{"name":"IWalletItemFactory","features":[48]},{"name":"IWalletItemStore","features":[48]},{"name":"IWalletItemStore2","features":[48]},{"name":"IWalletManagerStatics","features":[48]},{"name":"IWalletRelevantLocation","features":[48]},{"name":"IWalletTransaction","features":[48]},{"name":"IWalletVerb","features":[48]},{"name":"IWalletVerbFactory","features":[48]},{"name":"WalletActionKind","features":[48]},{"name":"WalletBarcode","features":[48]},{"name":"WalletBarcodeSymbology","features":[48]},{"name":"WalletContract","features":[48]},{"name":"WalletDetailViewPosition","features":[48]},{"name":"WalletItem","features":[48]},{"name":"WalletItemCustomProperty","features":[48]},{"name":"WalletItemKind","features":[48]},{"name":"WalletItemStore","features":[48]},{"name":"WalletManager","features":[48]},{"name":"WalletRelevantLocation","features":[48]},{"name":"WalletSummaryViewPosition","features":[48]},{"name":"WalletTransaction","features":[48]},{"name":"WalletVerb","features":[48]}],"55":[{"name":"IWalletItemSystemStore","features":[49]},{"name":"IWalletItemSystemStore2","features":[49]},{"name":"IWalletManagerSystemStatics","features":[49]},{"name":"WalletItemAppAssociation","features":[49]},{"name":"WalletItemSystemStore","features":[49]},{"name":"WalletManagerSystem","features":[49]}],"56":[{"name":"HtmlUtilities","features":[50]},{"name":"IHtmlUtilities","features":[50]}],"57":[{"name":"IJsonArray","features":[51]},{"name":"IJsonArrayStatics","features":[51]},{"name":"IJsonErrorStatics2","features":[51]},{"name":"IJsonObject","features":[51]},{"name":"IJsonObjectStatics","features":[51]},{"name":"IJsonObjectWithDefaultValues","features":[51]},{"name":"IJsonValue","features":[51]},{"name":"IJsonValueStatics","features":[51]},{"name":"IJsonValueStatics2","features":[51]},{"name":"JsonArray","features":[51]},{"name":"JsonError","features":[51]},{"name":"JsonErrorStatus","features":[51]},{"name":"JsonObject","features":[51]},{"name":"JsonValue","features":[51]},{"name":"JsonValueType","features":[51]}],"58":[{"name":"IPdfDocument","features":[52]},{"name":"IPdfDocumentStatics","features":[52]},{"name":"IPdfPage","features":[52]},{"name":"IPdfPageDimensions","features":[52]},{"name":"IPdfPageRenderOptions","features":[52]},{"name":"PdfDocument","features":[52]},{"name":"PdfPage","features":[52]},{"name":"PdfPageDimensions","features":[52]},{"name":"PdfPageRenderOptions","features":[52]},{"name":"PdfPageRotation","features":[52]}],"59":[{"name":"AlternateNormalizationFormat","features":[53]},{"name":"AlternateWordForm","features":[53]},{"name":"IAlternateWordForm","features":[53]},{"name":"ISelectableWordSegment","features":[53]},{"name":"ISelectableWordsSegmenter","features":[53]},{"name":"ISelectableWordsSegmenterFactory","features":[53]},{"name":"ISemanticTextQuery","features":[53]},{"name":"ISemanticTextQueryFactory","features":[53]},{"name":"ITextConversionGenerator","features":[53]},{"name":"ITextConversionGeneratorFactory","features":[53]},{"name":"ITextPhoneme","features":[53]},{"name":"ITextPredictionGenerator","features":[53]},{"name":"ITextPredictionGenerator2","features":[53]},{"name":"ITextPredictionGeneratorFactory","features":[53]},{"name":"ITextReverseConversionGenerator","features":[53]},{"name":"ITextReverseConversionGenerator2","features":[53]},{"name":"ITextReverseConversionGeneratorFactory","features":[53]},{"name":"IUnicodeCharactersStatics","features":[53]},{"name":"IWordSegment","features":[53]},{"name":"IWordsSegmenter","features":[53]},{"name":"IWordsSegmenterFactory","features":[53]},{"name":"SelectableWordSegment","features":[53]},{"name":"SelectableWordSegmentsTokenizingHandler","features":[53,36]},{"name":"SelectableWordsSegmenter","features":[53]},{"name":"SemanticTextQuery","features":[53]},{"name":"TextConversionGenerator","features":[53]},{"name":"TextPhoneme","features":[53]},{"name":"TextPredictionGenerator","features":[53]},{"name":"TextPredictionOptions","features":[53]},{"name":"TextReverseConversionGenerator","features":[53]},{"name":"TextSegment","features":[53]},{"name":"UnicodeCharacters","features":[53]},{"name":"UnicodeGeneralCategory","features":[53]},{"name":"UnicodeNumericType","features":[53]},{"name":"WordSegment","features":[53]},{"name":"WordSegmentsTokenizingHandler","features":[53,36]},{"name":"WordsSegmenter","features":[53]}],"60":[{"name":"DtdEntity","features":[54]},{"name":"DtdNotation","features":[54]},{"name":"IDtdEntity","features":[54]},{"name":"IDtdNotation","features":[54]},{"name":"IXmlAttribute","features":[54]},{"name":"IXmlCDataSection","features":[54]},{"name":"IXmlCharacterData","features":[54]},{"name":"IXmlComment","features":[54]},{"name":"IXmlDocument","features":[54]},{"name":"IXmlDocumentFragment","features":[54]},{"name":"IXmlDocumentIO","features":[54]},{"name":"IXmlDocumentIO2","features":[54]},{"name":"IXmlDocumentStatics","features":[54]},{"name":"IXmlDocumentType","features":[54]},{"name":"IXmlDomImplementation","features":[54]},{"name":"IXmlElement","features":[54]},{"name":"IXmlEntityReference","features":[54]},{"name":"IXmlLoadSettings","features":[54]},{"name":"IXmlNamedNodeMap","features":[54]},{"name":"IXmlNode","features":[54]},{"name":"IXmlNodeList","features":[54]},{"name":"IXmlNodeSelector","features":[54]},{"name":"IXmlNodeSerializer","features":[54]},{"name":"IXmlProcessingInstruction","features":[54]},{"name":"IXmlText","features":[54]},{"name":"NodeType","features":[54]},{"name":"XmlAttribute","features":[54]},{"name":"XmlCDataSection","features":[54]},{"name":"XmlComment","features":[54]},{"name":"XmlDocument","features":[54]},{"name":"XmlDocumentFragment","features":[54]},{"name":"XmlDocumentType","features":[54]},{"name":"XmlDomImplementation","features":[54]},{"name":"XmlElement","features":[54]},{"name":"XmlEntityReference","features":[54]},{"name":"XmlLoadSettings","features":[54]},{"name":"XmlNamedNodeMap","features":[54]},{"name":"XmlNodeList","features":[54]},{"name":"XmlProcessingInstruction","features":[54]},{"name":"XmlText","features":[54]}],"61":[{"name":"IXsltProcessor","features":[55]},{"name":"IXsltProcessor2","features":[55]},{"name":"IXsltProcessorFactory","features":[55]},{"name":"XsltProcessor","features":[55]}],"62":[{"name":"DevicesLowLevelContract","features":[56]},{"name":"ILowLevelDevicesAggregateProvider","features":[56]},{"name":"ILowLevelDevicesAggregateProviderFactory","features":[56]},{"name":"ILowLevelDevicesController","features":[56]},{"name":"ILowLevelDevicesControllerStatics","features":[56]},{"name":"LowLevelDevicesAggregateProvider","features":[56]},{"name":"LowLevelDevicesController","features":[56]}],"63":[{"name":"AdcChannel","features":[57]},{"name":"AdcChannelMode","features":[57]},{"name":"AdcController","features":[57]},{"name":"IAdcChannel","features":[57]},{"name":"IAdcController","features":[57]},{"name":"IAdcControllerStatics","features":[57]},{"name":"IAdcControllerStatics2","features":[57]}],"64":[{"name":"IAdcControllerProvider","features":[58]},{"name":"IAdcProvider","features":[58]},{"name":"ProviderAdcChannelMode","features":[58]}],"66":[{"name":"DeviceServicingDetails","features":[59]},{"name":"DeviceUseDetails","features":[59]},{"name":"IDeviceServicingDetails","features":[59]},{"name":"IDeviceUseDetails","features":[59]}],"67":[{"name":"BluetoothAdapter","features":[60]},{"name":"BluetoothAddressType","features":[60]},{"name":"BluetoothCacheMode","features":[60]},{"name":"BluetoothClassOfDevice","features":[60]},{"name":"BluetoothConnectionStatus","features":[60]},{"name":"BluetoothDevice","features":[60]},{"name":"BluetoothDeviceId","features":[60]},{"name":"BluetoothError","features":[60]},{"name":"BluetoothLEAppearance","features":[60]},{"name":"BluetoothLEAppearanceCategories","features":[60]},{"name":"BluetoothLEAppearanceSubcategories","features":[60]},{"name":"BluetoothLEConnectionParameters","features":[60]},{"name":"BluetoothLEConnectionPhy","features":[60]},{"name":"BluetoothLEConnectionPhyInfo","features":[60]},{"name":"BluetoothLEDevice","features":[60]},{"name":"BluetoothLEPreferredConnectionParameters","features":[60]},{"name":"BluetoothLEPreferredConnectionParametersRequest","features":[60]},{"name":"BluetoothLEPreferredConnectionParametersRequestStatus","features":[60]},{"name":"BluetoothMajorClass","features":[60]},{"name":"BluetoothMinorClass","features":[60]},{"name":"BluetoothServiceCapabilities","features":[60]},{"name":"BluetoothSignalStrengthFilter","features":[60]},{"name":"BluetoothUuidHelper","features":[60]},{"name":"IBluetoothAdapter","features":[60]},{"name":"IBluetoothAdapter2","features":[60]},{"name":"IBluetoothAdapter3","features":[60]},{"name":"IBluetoothAdapterStatics","features":[60]},{"name":"IBluetoothClassOfDevice","features":[60]},{"name":"IBluetoothClassOfDeviceStatics","features":[60]},{"name":"IBluetoothDevice","features":[60]},{"name":"IBluetoothDevice2","features":[60]},{"name":"IBluetoothDevice3","features":[60]},{"name":"IBluetoothDevice4","features":[60]},{"name":"IBluetoothDevice5","features":[60]},{"name":"IBluetoothDeviceId","features":[60]},{"name":"IBluetoothDeviceIdStatics","features":[60]},{"name":"IBluetoothDeviceStatics","features":[60]},{"name":"IBluetoothDeviceStatics2","features":[60]},{"name":"IBluetoothLEAppearance","features":[60]},{"name":"IBluetoothLEAppearanceCategoriesStatics","features":[60]},{"name":"IBluetoothLEAppearanceStatics","features":[60]},{"name":"IBluetoothLEAppearanceSubcategoriesStatics","features":[60]},{"name":"IBluetoothLEConnectionParameters","features":[60]},{"name":"IBluetoothLEConnectionPhy","features":[60]},{"name":"IBluetoothLEConnectionPhyInfo","features":[60]},{"name":"IBluetoothLEDevice","features":[60]},{"name":"IBluetoothLEDevice2","features":[60]},{"name":"IBluetoothLEDevice3","features":[60]},{"name":"IBluetoothLEDevice4","features":[60]},{"name":"IBluetoothLEDevice5","features":[60]},{"name":"IBluetoothLEDevice6","features":[60]},{"name":"IBluetoothLEDeviceStatics","features":[60]},{"name":"IBluetoothLEDeviceStatics2","features":[60]},{"name":"IBluetoothLEPreferredConnectionParameters","features":[60]},{"name":"IBluetoothLEPreferredConnectionParametersRequest","features":[60]},{"name":"IBluetoothLEPreferredConnectionParametersStatics","features":[60]},{"name":"IBluetoothSignalStrengthFilter","features":[60]},{"name":"IBluetoothUuidHelperStatics","features":[60]}],"68":[{"name":"BluetoothLEAdvertisement","features":[61]},{"name":"BluetoothLEAdvertisementBytePattern","features":[61]},{"name":"BluetoothLEAdvertisementDataSection","features":[61]},{"name":"BluetoothLEAdvertisementDataTypes","features":[61]},{"name":"BluetoothLEAdvertisementFilter","features":[61]},{"name":"BluetoothLEAdvertisementFlags","features":[61]},{"name":"BluetoothLEAdvertisementPublisher","features":[61]},{"name":"BluetoothLEAdvertisementPublisherStatus","features":[61]},{"name":"BluetoothLEAdvertisementPublisherStatusChangedEventArgs","features":[61]},{"name":"BluetoothLEAdvertisementReceivedEventArgs","features":[61]},{"name":"BluetoothLEAdvertisementType","features":[61]},{"name":"BluetoothLEAdvertisementWatcher","features":[61]},{"name":"BluetoothLEAdvertisementWatcherStatus","features":[61]},{"name":"BluetoothLEAdvertisementWatcherStoppedEventArgs","features":[61]},{"name":"BluetoothLEManufacturerData","features":[61]},{"name":"BluetoothLEScanningMode","features":[61]},{"name":"IBluetoothLEAdvertisement","features":[61]},{"name":"IBluetoothLEAdvertisementBytePattern","features":[61]},{"name":"IBluetoothLEAdvertisementBytePatternFactory","features":[61]},{"name":"IBluetoothLEAdvertisementDataSection","features":[61]},{"name":"IBluetoothLEAdvertisementDataSectionFactory","features":[61]},{"name":"IBluetoothLEAdvertisementDataTypesStatics","features":[61]},{"name":"IBluetoothLEAdvertisementFilter","features":[61]},{"name":"IBluetoothLEAdvertisementPublisher","features":[61]},{"name":"IBluetoothLEAdvertisementPublisher2","features":[61]},{"name":"IBluetoothLEAdvertisementPublisherFactory","features":[61]},{"name":"IBluetoothLEAdvertisementPublisherStatusChangedEventArgs","features":[61]},{"name":"IBluetoothLEAdvertisementPublisherStatusChangedEventArgs2","features":[61]},{"name":"IBluetoothLEAdvertisementReceivedEventArgs","features":[61]},{"name":"IBluetoothLEAdvertisementReceivedEventArgs2","features":[61]},{"name":"IBluetoothLEAdvertisementWatcher","features":[61]},{"name":"IBluetoothLEAdvertisementWatcher2","features":[61]},{"name":"IBluetoothLEAdvertisementWatcherFactory","features":[61]},{"name":"IBluetoothLEAdvertisementWatcherStoppedEventArgs","features":[61]},{"name":"IBluetoothLEManufacturerData","features":[61]},{"name":"IBluetoothLEManufacturerDataFactory","features":[61]}],"69":[{"name":"BluetoothEventTriggeringMode","features":[62]},{"name":"BluetoothLEAdvertisementPublisherTriggerDetails","features":[62]},{"name":"BluetoothLEAdvertisementWatcherTriggerDetails","features":[62]},{"name":"GattCharacteristicNotificationTriggerDetails","features":[62]},{"name":"GattServiceProviderConnection","features":[62]},{"name":"GattServiceProviderTriggerDetails","features":[62]},{"name":"IBluetoothLEAdvertisementPublisherTriggerDetails","features":[62]},{"name":"IBluetoothLEAdvertisementPublisherTriggerDetails2","features":[62]},{"name":"IBluetoothLEAdvertisementWatcherTriggerDetails","features":[62]},{"name":"IGattCharacteristicNotificationTriggerDetails","features":[62]},{"name":"IGattCharacteristicNotificationTriggerDetails2","features":[62]},{"name":"IGattServiceProviderConnection","features":[62]},{"name":"IGattServiceProviderConnectionStatics","features":[62]},{"name":"IGattServiceProviderTriggerDetails","features":[62]},{"name":"IRfcommConnectionTriggerDetails","features":[62]},{"name":"IRfcommInboundConnectionInformation","features":[62]},{"name":"IRfcommOutboundConnectionInformation","features":[62]},{"name":"RfcommConnectionTriggerDetails","features":[62]},{"name":"RfcommInboundConnectionInformation","features":[62]},{"name":"RfcommOutboundConnectionInformation","features":[62]}],"70":[{"name":"GattCharacteristic","features":[63]},{"name":"GattCharacteristicProperties","features":[63]},{"name":"GattCharacteristicUuids","features":[63]},{"name":"GattCharacteristicsResult","features":[63]},{"name":"GattClientCharacteristicConfigurationDescriptorValue","features":[63]},{"name":"GattClientNotificationResult","features":[63]},{"name":"GattCommunicationStatus","features":[63]},{"name":"GattDescriptor","features":[63]},{"name":"GattDescriptorUuids","features":[63]},{"name":"GattDescriptorsResult","features":[63]},{"name":"GattDeviceService","features":[63]},{"name":"GattDeviceServicesResult","features":[63]},{"name":"GattLocalCharacteristic","features":[63]},{"name":"GattLocalCharacteristicParameters","features":[63]},{"name":"GattLocalCharacteristicResult","features":[63]},{"name":"GattLocalDescriptor","features":[63]},{"name":"GattLocalDescriptorParameters","features":[63]},{"name":"GattLocalDescriptorResult","features":[63]},{"name":"GattLocalService","features":[63]},{"name":"GattOpenStatus","features":[63]},{"name":"GattPresentationFormat","features":[63]},{"name":"GattPresentationFormatTypes","features":[63]},{"name":"GattProtectionLevel","features":[63]},{"name":"GattProtocolError","features":[63]},{"name":"GattReadClientCharacteristicConfigurationDescriptorResult","features":[63]},{"name":"GattReadRequest","features":[63]},{"name":"GattReadRequestedEventArgs","features":[63]},{"name":"GattReadResult","features":[63]},{"name":"GattReliableWriteTransaction","features":[63]},{"name":"GattRequestState","features":[63]},{"name":"GattRequestStateChangedEventArgs","features":[63]},{"name":"GattServiceProvider","features":[63]},{"name":"GattServiceProviderAdvertisementStatus","features":[63]},{"name":"GattServiceProviderAdvertisementStatusChangedEventArgs","features":[63]},{"name":"GattServiceProviderAdvertisingParameters","features":[63]},{"name":"GattServiceProviderResult","features":[63]},{"name":"GattServiceUuids","features":[63]},{"name":"GattSession","features":[63]},{"name":"GattSessionStatus","features":[63]},{"name":"GattSessionStatusChangedEventArgs","features":[63]},{"name":"GattSharingMode","features":[63]},{"name":"GattSubscribedClient","features":[63]},{"name":"GattValueChangedEventArgs","features":[63]},{"name":"GattWriteOption","features":[63]},{"name":"GattWriteRequest","features":[63]},{"name":"GattWriteRequestedEventArgs","features":[63]},{"name":"GattWriteResult","features":[63]},{"name":"IGattCharacteristic","features":[63]},{"name":"IGattCharacteristic2","features":[63]},{"name":"IGattCharacteristic3","features":[63]},{"name":"IGattCharacteristicStatics","features":[63]},{"name":"IGattCharacteristicUuidsStatics","features":[63]},{"name":"IGattCharacteristicUuidsStatics2","features":[63]},{"name":"IGattCharacteristicsResult","features":[63]},{"name":"IGattClientNotificationResult","features":[63]},{"name":"IGattClientNotificationResult2","features":[63]},{"name":"IGattDescriptor","features":[63]},{"name":"IGattDescriptor2","features":[63]},{"name":"IGattDescriptorStatics","features":[63]},{"name":"IGattDescriptorUuidsStatics","features":[63]},{"name":"IGattDescriptorsResult","features":[63]},{"name":"IGattDeviceService","features":[63]},{"name":"IGattDeviceService2","features":[63]},{"name":"IGattDeviceService3","features":[63]},{"name":"IGattDeviceServiceStatics","features":[63]},{"name":"IGattDeviceServiceStatics2","features":[63]},{"name":"IGattDeviceServicesResult","features":[63]},{"name":"IGattLocalCharacteristic","features":[63]},{"name":"IGattLocalCharacteristicParameters","features":[63]},{"name":"IGattLocalCharacteristicResult","features":[63]},{"name":"IGattLocalDescriptor","features":[63]},{"name":"IGattLocalDescriptorParameters","features":[63]},{"name":"IGattLocalDescriptorResult","features":[63]},{"name":"IGattLocalService","features":[63]},{"name":"IGattPresentationFormat","features":[63]},{"name":"IGattPresentationFormatStatics","features":[63]},{"name":"IGattPresentationFormatStatics2","features":[63]},{"name":"IGattPresentationFormatTypesStatics","features":[63]},{"name":"IGattProtocolErrorStatics","features":[63]},{"name":"IGattReadClientCharacteristicConfigurationDescriptorResult","features":[63]},{"name":"IGattReadClientCharacteristicConfigurationDescriptorResult2","features":[63]},{"name":"IGattReadRequest","features":[63]},{"name":"IGattReadRequestedEventArgs","features":[63]},{"name":"IGattReadResult","features":[63]},{"name":"IGattReadResult2","features":[63]},{"name":"IGattReliableWriteTransaction","features":[63]},{"name":"IGattReliableWriteTransaction2","features":[63]},{"name":"IGattRequestStateChangedEventArgs","features":[63]},{"name":"IGattServiceProvider","features":[63]},{"name":"IGattServiceProviderAdvertisementStatusChangedEventArgs","features":[63]},{"name":"IGattServiceProviderAdvertisingParameters","features":[63]},{"name":"IGattServiceProviderAdvertisingParameters2","features":[63]},{"name":"IGattServiceProviderResult","features":[63]},{"name":"IGattServiceProviderStatics","features":[63]},{"name":"IGattServiceUuidsStatics","features":[63]},{"name":"IGattServiceUuidsStatics2","features":[63]},{"name":"IGattSession","features":[63]},{"name":"IGattSessionStatics","features":[63]},{"name":"IGattSessionStatusChangedEventArgs","features":[63]},{"name":"IGattSubscribedClient","features":[63]},{"name":"IGattValueChangedEventArgs","features":[63]},{"name":"IGattWriteRequest","features":[63]},{"name":"IGattWriteRequestedEventArgs","features":[63]},{"name":"IGattWriteResult","features":[63]}],"71":[{"name":"IRfcommDeviceService","features":[64]},{"name":"IRfcommDeviceService2","features":[64]},{"name":"IRfcommDeviceService3","features":[64]},{"name":"IRfcommDeviceServiceStatics","features":[64]},{"name":"IRfcommDeviceServiceStatics2","features":[64]},{"name":"IRfcommDeviceServicesResult","features":[64]},{"name":"IRfcommServiceId","features":[64]},{"name":"IRfcommServiceIdStatics","features":[64]},{"name":"IRfcommServiceProvider","features":[64]},{"name":"IRfcommServiceProvider2","features":[64]},{"name":"IRfcommServiceProviderStatics","features":[64]},{"name":"RfcommDeviceService","features":[64]},{"name":"RfcommDeviceServicesResult","features":[64]},{"name":"RfcommServiceId","features":[64]},{"name":"RfcommServiceProvider","features":[64]}],"72":[{"name":"CustomDevice","features":[65]},{"name":"CustomDeviceContract","features":[65]},{"name":"DeviceAccessMode","features":[65]},{"name":"DeviceSharingMode","features":[65]},{"name":"ICustomDevice","features":[65]},{"name":"ICustomDeviceStatics","features":[65]},{"name":"IIOControlCode","features":[65]},{"name":"IIOControlCodeFactory","features":[65]},{"name":"IKnownDeviceTypesStatics","features":[65]},{"name":"IOControlAccessMode","features":[65]},{"name":"IOControlBufferingMethod","features":[65]},{"name":"IOControlCode","features":[65]},{"name":"KnownDeviceTypes","features":[65]}],"73":[{"name":"DisplayMonitor","features":[66]},{"name":"DisplayMonitorConnectionKind","features":[66]},{"name":"DisplayMonitorDescriptorKind","features":[66]},{"name":"DisplayMonitorPhysicalConnectorKind","features":[66]},{"name":"DisplayMonitorUsageKind","features":[66]},{"name":"IDisplayMonitor","features":[66]},{"name":"IDisplayMonitor2","features":[66]},{"name":"IDisplayMonitorStatics","features":[66]}],"74":[{"name":"DisplayAdapter","features":[67]},{"name":"DisplayBitsPerChannel","features":[67]},{"name":"DisplayDevice","features":[67]},{"name":"DisplayDeviceCapability","features":[67]},{"name":"DisplayFence","features":[67]},{"name":"DisplayManager","features":[67]},{"name":"DisplayManagerChangedEventArgs","features":[67]},{"name":"DisplayManagerDisabledEventArgs","features":[67]},{"name":"DisplayManagerEnabledEventArgs","features":[67]},{"name":"DisplayManagerOptions","features":[67]},{"name":"DisplayManagerPathsFailedOrInvalidatedEventArgs","features":[67]},{"name":"DisplayManagerResult","features":[67]},{"name":"DisplayManagerResultWithState","features":[67]},{"name":"DisplayModeInfo","features":[67]},{"name":"DisplayModeQueryOptions","features":[67]},{"name":"DisplayPath","features":[67]},{"name":"DisplayPathScaling","features":[67]},{"name":"DisplayPathStatus","features":[67]},{"name":"DisplayPresentStatus","features":[67]},{"name":"DisplayPresentationRate","features":[67,68]},{"name":"DisplayPrimaryDescription","features":[67]},{"name":"DisplayRotation","features":[67]},{"name":"DisplayScanout","features":[67]},{"name":"DisplayScanoutOptions","features":[67]},{"name":"DisplaySource","features":[67]},{"name":"DisplaySourceStatus","features":[67]},{"name":"DisplayState","features":[67]},{"name":"DisplayStateApplyOptions","features":[67]},{"name":"DisplayStateFunctionalizeOptions","features":[67]},{"name":"DisplayStateOperationResult","features":[67]},{"name":"DisplayStateOperationStatus","features":[67]},{"name":"DisplaySurface","features":[67]},{"name":"DisplayTarget","features":[67]},{"name":"DisplayTargetPersistence","features":[67]},{"name":"DisplayTask","features":[67]},{"name":"DisplayTaskPool","features":[67]},{"name":"DisplayTaskResult","features":[67]},{"name":"DisplayTaskSignalKind","features":[67]},{"name":"DisplayView","features":[67]},{"name":"DisplayWireFormat","features":[67]},{"name":"DisplayWireFormatColorSpace","features":[67]},{"name":"DisplayWireFormatEotf","features":[67]},{"name":"DisplayWireFormatHdrMetadata","features":[67]},{"name":"DisplayWireFormatPixelEncoding","features":[67]},{"name":"IDisplayAdapter","features":[67]},{"name":"IDisplayAdapterStatics","features":[67]},{"name":"IDisplayDevice","features":[67]},{"name":"IDisplayDevice2","features":[67]},{"name":"IDisplayFence","features":[67]},{"name":"IDisplayManager","features":[67]},{"name":"IDisplayManagerChangedEventArgs","features":[67]},{"name":"IDisplayManagerDisabledEventArgs","features":[67]},{"name":"IDisplayManagerEnabledEventArgs","features":[67]},{"name":"IDisplayManagerPathsFailedOrInvalidatedEventArgs","features":[67]},{"name":"IDisplayManagerResultWithState","features":[67]},{"name":"IDisplayManagerStatics","features":[67]},{"name":"IDisplayModeInfo","features":[67]},{"name":"IDisplayModeInfo2","features":[67]},{"name":"IDisplayPath","features":[67]},{"name":"IDisplayPath2","features":[67]},{"name":"IDisplayPrimaryDescription","features":[67]},{"name":"IDisplayPrimaryDescriptionFactory","features":[67]},{"name":"IDisplayPrimaryDescriptionStatics","features":[67]},{"name":"IDisplayScanout","features":[67]},{"name":"IDisplaySource","features":[67]},{"name":"IDisplaySource2","features":[67]},{"name":"IDisplayState","features":[67]},{"name":"IDisplayStateOperationResult","features":[67]},{"name":"IDisplaySurface","features":[67]},{"name":"IDisplayTarget","features":[67]},{"name":"IDisplayTask","features":[67]},{"name":"IDisplayTask2","features":[67]},{"name":"IDisplayTaskPool","features":[67]},{"name":"IDisplayTaskPool2","features":[67]},{"name":"IDisplayTaskResult","features":[67]},{"name":"IDisplayView","features":[67]},{"name":"IDisplayWireFormat","features":[67]},{"name":"IDisplayWireFormatFactory","features":[67]},{"name":"IDisplayWireFormatStatics","features":[67]}],"75":[{"name":"DeviceAccessChangedEventArgs","features":[69]},{"name":"DeviceAccessInformation","features":[69]},{"name":"DeviceAccessStatus","features":[69]},{"name":"DeviceClass","features":[69]},{"name":"DeviceConnectionChangeTriggerDetails","features":[69]},{"name":"DeviceDisconnectButtonClickedEventArgs","features":[69]},{"name":"DeviceInformation","features":[69]},{"name":"DeviceInformationCollection","features":[69,36]},{"name":"DeviceInformationCustomPairing","features":[69]},{"name":"DeviceInformationKind","features":[69]},{"name":"DeviceInformationPairing","features":[69]},{"name":"DeviceInformationUpdate","features":[69]},{"name":"DevicePairingKinds","features":[69]},{"name":"DevicePairingProtectionLevel","features":[69]},{"name":"DevicePairingRequestedEventArgs","features":[69]},{"name":"DevicePairingResult","features":[69]},{"name":"DevicePairingResultStatus","features":[69]},{"name":"DevicePicker","features":[69]},{"name":"DevicePickerAppearance","features":[69]},{"name":"DevicePickerDisplayStatusOptions","features":[69]},{"name":"DevicePickerFilter","features":[69]},{"name":"DeviceSelectedEventArgs","features":[69]},{"name":"DeviceThumbnail","features":[69,70]},{"name":"DeviceUnpairingResult","features":[69]},{"name":"DeviceUnpairingResultStatus","features":[69]},{"name":"DeviceWatcher","features":[69]},{"name":"DeviceWatcherEvent","features":[69]},{"name":"DeviceWatcherEventKind","features":[69]},{"name":"DeviceWatcherStatus","features":[69]},{"name":"DeviceWatcherTriggerDetails","features":[69]},{"name":"EnclosureLocation","features":[69]},{"name":"IDeviceAccessChangedEventArgs","features":[69]},{"name":"IDeviceAccessChangedEventArgs2","features":[69]},{"name":"IDeviceAccessInformation","features":[69]},{"name":"IDeviceAccessInformationStatics","features":[69]},{"name":"IDeviceConnectionChangeTriggerDetails","features":[69]},{"name":"IDeviceDisconnectButtonClickedEventArgs","features":[69]},{"name":"IDeviceInformation","features":[69]},{"name":"IDeviceInformation2","features":[69]},{"name":"IDeviceInformationCustomPairing","features":[69]},{"name":"IDeviceInformationPairing","features":[69]},{"name":"IDeviceInformationPairing2","features":[69]},{"name":"IDeviceInformationPairingStatics","features":[69]},{"name":"IDeviceInformationPairingStatics2","features":[69]},{"name":"IDeviceInformationStatics","features":[69]},{"name":"IDeviceInformationStatics2","features":[69]},{"name":"IDeviceInformationUpdate","features":[69]},{"name":"IDeviceInformationUpdate2","features":[69]},{"name":"IDevicePairingRequestedEventArgs","features":[69]},{"name":"IDevicePairingRequestedEventArgs2","features":[69]},{"name":"IDevicePairingResult","features":[69]},{"name":"IDevicePairingSettings","features":[69]},{"name":"IDevicePicker","features":[69]},{"name":"IDevicePickerAppearance","features":[69]},{"name":"IDevicePickerFilter","features":[69]},{"name":"IDeviceSelectedEventArgs","features":[69]},{"name":"IDeviceUnpairingResult","features":[69]},{"name":"IDeviceWatcher","features":[69]},{"name":"IDeviceWatcher2","features":[69]},{"name":"IDeviceWatcherEvent","features":[69]},{"name":"IDeviceWatcherTriggerDetails","features":[69]},{"name":"IEnclosureLocation","features":[69]},{"name":"IEnclosureLocation2","features":[69]},{"name":"Panel","features":[69]}],"76":[{"name":"IPnpObject","features":[71]},{"name":"IPnpObjectStatics","features":[71]},{"name":"IPnpObjectUpdate","features":[71]},{"name":"IPnpObjectWatcher","features":[71]},{"name":"PnpObject","features":[71]},{"name":"PnpObjectCollection","features":[71,36]},{"name":"PnpObjectType","features":[71]},{"name":"PnpObjectUpdate","features":[71]},{"name":"PnpObjectWatcher","features":[71]}],"77":[{"name":"AltitudeReferenceSystem","features":[72]},{"name":"BasicGeoposition","features":[72]},{"name":"CivicAddress","features":[72]},{"name":"GeoboundingBox","features":[72]},{"name":"Geocircle","features":[72]},{"name":"Geocoordinate","features":[72]},{"name":"GeocoordinateSatelliteData","features":[72]},{"name":"GeolocationAccessStatus","features":[72]},{"name":"Geolocator","features":[72]},{"name":"Geopath","features":[72]},{"name":"Geopoint","features":[72]},{"name":"Geoposition","features":[72]},{"name":"GeoshapeType","features":[72]},{"name":"Geovisit","features":[72]},{"name":"GeovisitMonitor","features":[72]},{"name":"GeovisitStateChangedEventArgs","features":[72]},{"name":"GeovisitTriggerDetails","features":[72]},{"name":"ICivicAddress","features":[72]},{"name":"IGeoboundingBox","features":[72]},{"name":"IGeoboundingBoxFactory","features":[72]},{"name":"IGeoboundingBoxStatics","features":[72]},{"name":"IGeocircle","features":[72]},{"name":"IGeocircleFactory","features":[72]},{"name":"IGeocoordinate","features":[72]},{"name":"IGeocoordinateSatelliteData","features":[72]},{"name":"IGeocoordinateSatelliteData2","features":[72]},{"name":"IGeocoordinateWithPoint","features":[72]},{"name":"IGeocoordinateWithPositionData","features":[72]},{"name":"IGeocoordinateWithPositionSourceTimestamp","features":[72]},{"name":"IGeocoordinateWithRemoteSource","features":[72]},{"name":"IGeolocator","features":[72]},{"name":"IGeolocator2","features":[72]},{"name":"IGeolocatorStatics","features":[72]},{"name":"IGeolocatorStatics2","features":[72]},{"name":"IGeolocatorWithScalarAccuracy","features":[72]},{"name":"IGeopath","features":[72]},{"name":"IGeopathFactory","features":[72]},{"name":"IGeopoint","features":[72]},{"name":"IGeopointFactory","features":[72]},{"name":"IGeoposition","features":[72]},{"name":"IGeoposition2","features":[72]},{"name":"IGeoshape","features":[72]},{"name":"IGeovisit","features":[72]},{"name":"IGeovisitMonitor","features":[72]},{"name":"IGeovisitMonitorStatics","features":[72]},{"name":"IGeovisitStateChangedEventArgs","features":[72]},{"name":"IGeovisitTriggerDetails","features":[72]},{"name":"IPositionChangedEventArgs","features":[72]},{"name":"IStatusChangedEventArgs","features":[72]},{"name":"IVenueData","features":[72]},{"name":"PositionAccuracy","features":[72]},{"name":"PositionChangedEventArgs","features":[72]},{"name":"PositionSource","features":[72]},{"name":"PositionStatus","features":[72]},{"name":"StatusChangedEventArgs","features":[72]},{"name":"VenueData","features":[72]},{"name":"VisitMonitoringScope","features":[72]},{"name":"VisitStateChange","features":[72]}],"78":[{"name":"Geofence","features":[73]},{"name":"GeofenceMonitor","features":[73]},{"name":"GeofenceMonitorStatus","features":[73]},{"name":"GeofenceRemovalReason","features":[73]},{"name":"GeofenceState","features":[73]},{"name":"GeofenceStateChangeReport","features":[73]},{"name":"IGeofence","features":[73]},{"name":"IGeofenceFactory","features":[73]},{"name":"IGeofenceMonitor","features":[73]},{"name":"IGeofenceMonitorStatics","features":[73]},{"name":"IGeofenceStateChangeReport","features":[73]},{"name":"MonitoredGeofenceStates","features":[73]}],"79":[{"name":"GeolocationProvider","features":[74]},{"name":"IGeolocationProvider","features":[74]},{"name":"LocationOverrideStatus","features":[74]}],"80":[{"name":"GpioChangeCount","features":[75,76]},{"name":"GpioChangeCounter","features":[75]},{"name":"GpioChangePolarity","features":[75]},{"name":"GpioChangeReader","features":[75]},{"name":"GpioChangeRecord","features":[75,76]},{"name":"GpioController","features":[75]},{"name":"GpioOpenStatus","features":[75]},{"name":"GpioPin","features":[75]},{"name":"GpioPinDriveMode","features":[75]},{"name":"GpioPinEdge","features":[75]},{"name":"GpioPinValue","features":[75]},{"name":"GpioPinValueChangedEventArgs","features":[75]},{"name":"GpioSharingMode","features":[75]},{"name":"IGpioChangeCounter","features":[75]},{"name":"IGpioChangeCounterFactory","features":[75]},{"name":"IGpioChangeReader","features":[75]},{"name":"IGpioChangeReaderFactory","features":[75]},{"name":"IGpioController","features":[75]},{"name":"IGpioControllerStatics","features":[75]},{"name":"IGpioControllerStatics2","features":[75]},{"name":"IGpioPin","features":[75]},{"name":"IGpioPinValueChangedEventArgs","features":[75]}],"81":[{"name":"GpioPinProviderValueChangedEventArgs","features":[77]},{"name":"IGpioControllerProvider","features":[77]},{"name":"IGpioPinProvider","features":[77]},{"name":"IGpioPinProviderValueChangedEventArgs","features":[77]},{"name":"IGpioPinProviderValueChangedEventArgsFactory","features":[77]},{"name":"IGpioProvider","features":[77]},{"name":"ProviderGpioPinDriveMode","features":[77]},{"name":"ProviderGpioPinEdge","features":[77]},{"name":"ProviderGpioPinValue","features":[77]},{"name":"ProviderGpioSharingMode","features":[77]}],"82":[{"name":"IKnownSimpleHapticsControllerWaveformsStatics","features":[78]},{"name":"IKnownSimpleHapticsControllerWaveformsStatics2","features":[78]},{"name":"ISimpleHapticsController","features":[78]},{"name":"ISimpleHapticsControllerFeedback","features":[78]},{"name":"IVibrationDevice","features":[78]},{"name":"IVibrationDeviceStatics","features":[78]},{"name":"KnownSimpleHapticsControllerWaveforms","features":[78]},{"name":"SimpleHapticsController","features":[78]},{"name":"SimpleHapticsControllerFeedback","features":[78]},{"name":"VibrationAccessStatus","features":[78]},{"name":"VibrationDevice","features":[78]}],"83":[{"name":"HidBooleanControl","features":[79]},{"name":"HidBooleanControlDescription","features":[79]},{"name":"HidCollection","features":[79]},{"name":"HidCollectionType","features":[79]},{"name":"HidDevice","features":[79]},{"name":"HidFeatureReport","features":[79]},{"name":"HidInputReport","features":[79]},{"name":"HidInputReportReceivedEventArgs","features":[79]},{"name":"HidNumericControl","features":[79]},{"name":"HidNumericControlDescription","features":[79]},{"name":"HidOutputReport","features":[79]},{"name":"HidReportType","features":[79]},{"name":"IHidBooleanControl","features":[79]},{"name":"IHidBooleanControlDescription","features":[79]},{"name":"IHidBooleanControlDescription2","features":[79]},{"name":"IHidCollection","features":[79]},{"name":"IHidDevice","features":[79]},{"name":"IHidDeviceStatics","features":[79]},{"name":"IHidFeatureReport","features":[79]},{"name":"IHidInputReport","features":[79]},{"name":"IHidInputReportReceivedEventArgs","features":[79]},{"name":"IHidNumericControl","features":[79]},{"name":"IHidNumericControlDescription","features":[79]},{"name":"IHidOutputReport","features":[79]}],"84":[{"name":"I2cBusSpeed","features":[80]},{"name":"I2cConnectionSettings","features":[80]},{"name":"I2cController","features":[80]},{"name":"I2cDevice","features":[80]},{"name":"I2cSharingMode","features":[80]},{"name":"I2cTransferResult","features":[80]},{"name":"I2cTransferStatus","features":[80]},{"name":"II2cConnectionSettings","features":[80]},{"name":"II2cConnectionSettingsFactory","features":[80]},{"name":"II2cController","features":[80]},{"name":"II2cControllerStatics","features":[80]},{"name":"II2cDevice","features":[80]},{"name":"II2cDeviceStatics","features":[80]}],"85":[{"name":"II2cControllerProvider","features":[81]},{"name":"II2cDeviceProvider","features":[81]},{"name":"II2cProvider","features":[81]},{"name":"IProviderI2cConnectionSettings","features":[81]},{"name":"ProviderI2cBusSpeed","features":[81]},{"name":"ProviderI2cConnectionSettings","features":[81]},{"name":"ProviderI2cSharingMode","features":[81]},{"name":"ProviderI2cTransferResult","features":[81]},{"name":"ProviderI2cTransferStatus","features":[81]}],"86":[{"name":"IKeyboardCapabilities","features":[82]},{"name":"IMouseCapabilities","features":[82]},{"name":"IMouseDevice","features":[82]},{"name":"IMouseDeviceStatics","features":[82]},{"name":"IMouseEventArgs","features":[82]},{"name":"IPenButtonListener","features":[82]},{"name":"IPenButtonListenerStatics","features":[82]},{"name":"IPenDevice","features":[82]},{"name":"IPenDevice2","features":[82]},{"name":"IPenDeviceStatics","features":[82]},{"name":"IPenDockListener","features":[82]},{"name":"IPenDockListenerStatics","features":[82]},{"name":"IPenDockedEventArgs","features":[82]},{"name":"IPenTailButtonClickedEventArgs","features":[82]},{"name":"IPenTailButtonDoubleClickedEventArgs","features":[82]},{"name":"IPenTailButtonLongPressedEventArgs","features":[82]},{"name":"IPenUndockedEventArgs","features":[82]},{"name":"IPointerDevice","features":[82]},{"name":"IPointerDevice2","features":[82]},{"name":"IPointerDeviceStatics","features":[82]},{"name":"ITouchCapabilities","features":[82]},{"name":"KeyboardCapabilities","features":[82]},{"name":"MouseCapabilities","features":[82]},{"name":"MouseDelta","features":[82]},{"name":"MouseDevice","features":[82]},{"name":"MouseEventArgs","features":[82]},{"name":"PenButtonListener","features":[82]},{"name":"PenDevice","features":[82]},{"name":"PenDockListener","features":[82]},{"name":"PenDockedEventArgs","features":[82]},{"name":"PenTailButtonClickedEventArgs","features":[82]},{"name":"PenTailButtonDoubleClickedEventArgs","features":[82]},{"name":"PenTailButtonLongPressedEventArgs","features":[82]},{"name":"PenUndockedEventArgs","features":[82]},{"name":"PointerDevice","features":[82]},{"name":"PointerDeviceType","features":[82]},{"name":"PointerDeviceUsage","features":[82]},{"name":"TouchCapabilities","features":[82]}],"87":[{"name":"GazeDeviceConfigurationStatePreview","features":[83]},{"name":"GazeDevicePreview","features":[83]},{"name":"GazeDeviceWatcherAddedPreviewEventArgs","features":[83]},{"name":"GazeDeviceWatcherPreview","features":[83]},{"name":"GazeDeviceWatcherRemovedPreviewEventArgs","features":[83]},{"name":"GazeDeviceWatcherUpdatedPreviewEventArgs","features":[83]},{"name":"GazeEnteredPreviewEventArgs","features":[83]},{"name":"GazeExitedPreviewEventArgs","features":[83]},{"name":"GazeInputSourcePreview","features":[83]},{"name":"GazeMovedPreviewEventArgs","features":[83]},{"name":"GazePointPreview","features":[83]},{"name":"IGazeDevicePreview","features":[83]},{"name":"IGazeDeviceWatcherAddedPreviewEventArgs","features":[83]},{"name":"IGazeDeviceWatcherPreview","features":[83]},{"name":"IGazeDeviceWatcherRemovedPreviewEventArgs","features":[83]},{"name":"IGazeDeviceWatcherUpdatedPreviewEventArgs","features":[83]},{"name":"IGazeEnteredPreviewEventArgs","features":[83]},{"name":"IGazeExitedPreviewEventArgs","features":[83]},{"name":"IGazeInputSourcePreview","features":[83]},{"name":"IGazeInputSourcePreviewStatics","features":[83]},{"name":"IGazeMovedPreviewEventArgs","features":[83]},{"name":"IGazePointPreview","features":[83]}],"88":[{"name":"ILamp","features":[84]},{"name":"ILampArray","features":[84]},{"name":"ILampArray2","features":[84]},{"name":"ILampArrayStatics","features":[84]},{"name":"ILampAvailabilityChangedEventArgs","features":[84]},{"name":"ILampInfo","features":[84]},{"name":"ILampStatics","features":[84]},{"name":"Lamp","features":[84]},{"name":"LampArray","features":[84]},{"name":"LampArrayKind","features":[84]},{"name":"LampAvailabilityChangedEventArgs","features":[84]},{"name":"LampInfo","features":[84]},{"name":"LampPurposes","features":[84]}],"89":[{"name":"ILampArrayBitmapEffect","features":[85]},{"name":"ILampArrayBitmapEffectFactory","features":[85]},{"name":"ILampArrayBitmapRequestedEventArgs","features":[85]},{"name":"ILampArrayBlinkEffect","features":[85]},{"name":"ILampArrayBlinkEffectFactory","features":[85]},{"name":"ILampArrayColorRampEffect","features":[85]},{"name":"ILampArrayColorRampEffectFactory","features":[85]},{"name":"ILampArrayCustomEffect","features":[85]},{"name":"ILampArrayCustomEffectFactory","features":[85]},{"name":"ILampArrayEffect","features":[85]},{"name":"ILampArrayEffectPlaylist","features":[85]},{"name":"ILampArrayEffectPlaylistStatics","features":[85]},{"name":"ILampArraySolidEffect","features":[85]},{"name":"ILampArraySolidEffectFactory","features":[85]},{"name":"ILampArrayUpdateRequestedEventArgs","features":[85]},{"name":"LampArrayBitmapEffect","features":[85]},{"name":"LampArrayBitmapRequestedEventArgs","features":[85]},{"name":"LampArrayBlinkEffect","features":[85]},{"name":"LampArrayColorRampEffect","features":[85]},{"name":"LampArrayCustomEffect","features":[85]},{"name":"LampArrayEffectCompletionBehavior","features":[85]},{"name":"LampArrayEffectPlaylist","features":[85]},{"name":"LampArrayEffectStartMode","features":[85]},{"name":"LampArrayRepetitionMode","features":[85]},{"name":"LampArraySolidEffect","features":[85]},{"name":"LampArrayUpdateRequestedEventArgs","features":[85]}],"90":[{"name":"IMidiChannelPressureMessage","features":[86]},{"name":"IMidiChannelPressureMessageFactory","features":[86]},{"name":"IMidiControlChangeMessage","features":[86]},{"name":"IMidiControlChangeMessageFactory","features":[86]},{"name":"IMidiInPort","features":[86]},{"name":"IMidiInPortStatics","features":[86]},{"name":"IMidiMessage","features":[86]},{"name":"IMidiMessageReceivedEventArgs","features":[86]},{"name":"IMidiNoteOffMessage","features":[86]},{"name":"IMidiNoteOffMessageFactory","features":[86]},{"name":"IMidiNoteOnMessage","features":[86]},{"name":"IMidiNoteOnMessageFactory","features":[86]},{"name":"IMidiOutPort","features":[86]},{"name":"IMidiOutPortStatics","features":[86]},{"name":"IMidiPitchBendChangeMessage","features":[86]},{"name":"IMidiPitchBendChangeMessageFactory","features":[86]},{"name":"IMidiPolyphonicKeyPressureMessage","features":[86]},{"name":"IMidiPolyphonicKeyPressureMessageFactory","features":[86]},{"name":"IMidiProgramChangeMessage","features":[86]},{"name":"IMidiProgramChangeMessageFactory","features":[86]},{"name":"IMidiSongPositionPointerMessage","features":[86]},{"name":"IMidiSongPositionPointerMessageFactory","features":[86]},{"name":"IMidiSongSelectMessage","features":[86]},{"name":"IMidiSongSelectMessageFactory","features":[86]},{"name":"IMidiSynthesizer","features":[86]},{"name":"IMidiSynthesizerStatics","features":[86]},{"name":"IMidiSystemExclusiveMessageFactory","features":[86]},{"name":"IMidiTimeCodeMessage","features":[86]},{"name":"IMidiTimeCodeMessageFactory","features":[86]},{"name":"MidiActiveSensingMessage","features":[86]},{"name":"MidiChannelPressureMessage","features":[86]},{"name":"MidiContinueMessage","features":[86]},{"name":"MidiControlChangeMessage","features":[86]},{"name":"MidiInPort","features":[86]},{"name":"MidiMessageReceivedEventArgs","features":[86]},{"name":"MidiMessageType","features":[86]},{"name":"MidiNoteOffMessage","features":[86]},{"name":"MidiNoteOnMessage","features":[86]},{"name":"MidiOutPort","features":[86]},{"name":"MidiPitchBendChangeMessage","features":[86]},{"name":"MidiPolyphonicKeyPressureMessage","features":[86]},{"name":"MidiProgramChangeMessage","features":[86]},{"name":"MidiSongPositionPointerMessage","features":[86]},{"name":"MidiSongSelectMessage","features":[86]},{"name":"MidiStartMessage","features":[86]},{"name":"MidiStopMessage","features":[86]},{"name":"MidiSynthesizer","features":[86]},{"name":"MidiSystemExclusiveMessage","features":[86]},{"name":"MidiSystemResetMessage","features":[86]},{"name":"MidiTimeCodeMessage","features":[86]},{"name":"MidiTimingClockMessage","features":[86]},{"name":"MidiTuneRequestMessage","features":[86]}],"93":[{"name":"BarcodeScanner","features":[87]},{"name":"BarcodeScannerCapabilities","features":[87]},{"name":"BarcodeScannerDataReceivedEventArgs","features":[87]},{"name":"BarcodeScannerErrorOccurredEventArgs","features":[87]},{"name":"BarcodeScannerImagePreviewReceivedEventArgs","features":[87]},{"name":"BarcodeScannerReport","features":[87]},{"name":"BarcodeScannerStatus","features":[87]},{"name":"BarcodeScannerStatusUpdatedEventArgs","features":[87]},{"name":"BarcodeSymbologies","features":[87]},{"name":"BarcodeSymbologyAttributes","features":[87]},{"name":"BarcodeSymbologyDecodeLengthKind","features":[87]},{"name":"CashDrawer","features":[87]},{"name":"CashDrawerCapabilities","features":[87]},{"name":"CashDrawerCloseAlarm","features":[87]},{"name":"CashDrawerClosedEventArgs","features":[87]},{"name":"CashDrawerEventSource","features":[87]},{"name":"CashDrawerOpenedEventArgs","features":[87]},{"name":"CashDrawerStatus","features":[87]},{"name":"CashDrawerStatusKind","features":[87]},{"name":"CashDrawerStatusUpdatedEventArgs","features":[87]},{"name":"ClaimedBarcodeScanner","features":[87]},{"name":"ClaimedBarcodeScannerClosedEventArgs","features":[87]},{"name":"ClaimedCashDrawer","features":[87]},{"name":"ClaimedCashDrawerClosedEventArgs","features":[87]},{"name":"ClaimedJournalPrinter","features":[87]},{"name":"ClaimedLineDisplay","features":[87]},{"name":"ClaimedLineDisplayClosedEventArgs","features":[87]},{"name":"ClaimedMagneticStripeReader","features":[87]},{"name":"ClaimedMagneticStripeReaderClosedEventArgs","features":[87]},{"name":"ClaimedPosPrinter","features":[87]},{"name":"ClaimedPosPrinterClosedEventArgs","features":[87]},{"name":"ClaimedReceiptPrinter","features":[87]},{"name":"ClaimedSlipPrinter","features":[87]},{"name":"IBarcodeScanner","features":[87]},{"name":"IBarcodeScanner2","features":[87]},{"name":"IBarcodeScannerCapabilities","features":[87]},{"name":"IBarcodeScannerCapabilities1","features":[87]},{"name":"IBarcodeScannerCapabilities2","features":[87]},{"name":"IBarcodeScannerDataReceivedEventArgs","features":[87]},{"name":"IBarcodeScannerErrorOccurredEventArgs","features":[87]},{"name":"IBarcodeScannerImagePreviewReceivedEventArgs","features":[87]},{"name":"IBarcodeScannerReport","features":[87]},{"name":"IBarcodeScannerReportFactory","features":[87]},{"name":"IBarcodeScannerStatics","features":[87]},{"name":"IBarcodeScannerStatics2","features":[87]},{"name":"IBarcodeScannerStatusUpdatedEventArgs","features":[87]},{"name":"IBarcodeSymbologiesStatics","features":[87]},{"name":"IBarcodeSymbologiesStatics2","features":[87]},{"name":"IBarcodeSymbologyAttributes","features":[87]},{"name":"ICashDrawer","features":[87]},{"name":"ICashDrawerCapabilities","features":[87]},{"name":"ICashDrawerCloseAlarm","features":[87]},{"name":"ICashDrawerEventSource","features":[87]},{"name":"ICashDrawerEventSourceEventArgs","features":[87]},{"name":"ICashDrawerStatics","features":[87]},{"name":"ICashDrawerStatics2","features":[87]},{"name":"ICashDrawerStatus","features":[87]},{"name":"ICashDrawerStatusUpdatedEventArgs","features":[87]},{"name":"IClaimedBarcodeScanner","features":[87]},{"name":"IClaimedBarcodeScanner1","features":[87]},{"name":"IClaimedBarcodeScanner2","features":[87]},{"name":"IClaimedBarcodeScanner3","features":[87]},{"name":"IClaimedBarcodeScanner4","features":[87]},{"name":"IClaimedBarcodeScannerClosedEventArgs","features":[87]},{"name":"IClaimedCashDrawer","features":[87]},{"name":"IClaimedCashDrawer2","features":[87]},{"name":"IClaimedCashDrawerClosedEventArgs","features":[87]},{"name":"IClaimedJournalPrinter","features":[87]},{"name":"IClaimedLineDisplay","features":[87]},{"name":"IClaimedLineDisplay2","features":[87]},{"name":"IClaimedLineDisplay3","features":[87]},{"name":"IClaimedLineDisplayClosedEventArgs","features":[87]},{"name":"IClaimedLineDisplayStatics","features":[87]},{"name":"IClaimedMagneticStripeReader","features":[87]},{"name":"IClaimedMagneticStripeReader2","features":[87]},{"name":"IClaimedMagneticStripeReaderClosedEventArgs","features":[87]},{"name":"IClaimedPosPrinter","features":[87]},{"name":"IClaimedPosPrinter2","features":[87]},{"name":"IClaimedPosPrinterClosedEventArgs","features":[87]},{"name":"IClaimedReceiptPrinter","features":[87]},{"name":"IClaimedSlipPrinter","features":[87]},{"name":"ICommonClaimedPosPrinterStation","features":[87]},{"name":"ICommonPosPrintStationCapabilities","features":[87]},{"name":"ICommonReceiptSlipCapabilities","features":[87]},{"name":"IJournalPrintJob","features":[87]},{"name":"IJournalPrinterCapabilities","features":[87]},{"name":"IJournalPrinterCapabilities2","features":[87]},{"name":"ILineDisplay","features":[87]},{"name":"ILineDisplay2","features":[87]},{"name":"ILineDisplayAttributes","features":[87]},{"name":"ILineDisplayCapabilities","features":[87]},{"name":"ILineDisplayCursor","features":[87]},{"name":"ILineDisplayCursorAttributes","features":[87]},{"name":"ILineDisplayCustomGlyphs","features":[87]},{"name":"ILineDisplayMarquee","features":[87]},{"name":"ILineDisplayStatics","features":[87]},{"name":"ILineDisplayStatics2","features":[87]},{"name":"ILineDisplayStatisticsCategorySelector","features":[87]},{"name":"ILineDisplayStatusUpdatedEventArgs","features":[87]},{"name":"ILineDisplayStoredBitmap","features":[87]},{"name":"ILineDisplayWindow","features":[87]},{"name":"ILineDisplayWindow2","features":[87]},{"name":"IMagneticStripeReader","features":[87]},{"name":"IMagneticStripeReaderAamvaCardDataReceivedEventArgs","features":[87]},{"name":"IMagneticStripeReaderBankCardDataReceivedEventArgs","features":[87]},{"name":"IMagneticStripeReaderCapabilities","features":[87]},{"name":"IMagneticStripeReaderCardTypesStatics","features":[87]},{"name":"IMagneticStripeReaderEncryptionAlgorithmsStatics","features":[87]},{"name":"IMagneticStripeReaderErrorOccurredEventArgs","features":[87]},{"name":"IMagneticStripeReaderReport","features":[87]},{"name":"IMagneticStripeReaderStatics","features":[87]},{"name":"IMagneticStripeReaderStatics2","features":[87]},{"name":"IMagneticStripeReaderStatusUpdatedEventArgs","features":[87]},{"name":"IMagneticStripeReaderTrackData","features":[87]},{"name":"IMagneticStripeReaderVendorSpecificCardDataReceivedEventArgs","features":[87]},{"name":"IPosPrinter","features":[87]},{"name":"IPosPrinter2","features":[87]},{"name":"IPosPrinterCapabilities","features":[87]},{"name":"IPosPrinterCharacterSetIdsStatics","features":[87]},{"name":"IPosPrinterFontProperty","features":[87]},{"name":"IPosPrinterJob","features":[87]},{"name":"IPosPrinterPrintOptions","features":[87]},{"name":"IPosPrinterReleaseDeviceRequestedEventArgs","features":[87]},{"name":"IPosPrinterStatics","features":[87]},{"name":"IPosPrinterStatics2","features":[87]},{"name":"IPosPrinterStatus","features":[87]},{"name":"IPosPrinterStatusUpdatedEventArgs","features":[87]},{"name":"IReceiptOrSlipJob","features":[87]},{"name":"IReceiptPrintJob","features":[87]},{"name":"IReceiptPrintJob2","features":[87]},{"name":"IReceiptPrinterCapabilities","features":[87]},{"name":"IReceiptPrinterCapabilities2","features":[87]},{"name":"ISlipPrintJob","features":[87]},{"name":"ISlipPrinterCapabilities","features":[87]},{"name":"ISlipPrinterCapabilities2","features":[87]},{"name":"IUnifiedPosErrorData","features":[87]},{"name":"IUnifiedPosErrorDataFactory","features":[87]},{"name":"JournalPrintJob","features":[87]},{"name":"JournalPrinterCapabilities","features":[87]},{"name":"LineDisplay","features":[87]},{"name":"LineDisplayAttributes","features":[87]},{"name":"LineDisplayCapabilities","features":[87]},{"name":"LineDisplayCursor","features":[87]},{"name":"LineDisplayCursorAttributes","features":[87]},{"name":"LineDisplayCursorType","features":[87]},{"name":"LineDisplayCustomGlyphs","features":[87]},{"name":"LineDisplayDescriptorState","features":[87]},{"name":"LineDisplayHorizontalAlignment","features":[87]},{"name":"LineDisplayMarquee","features":[87]},{"name":"LineDisplayMarqueeFormat","features":[87]},{"name":"LineDisplayPowerStatus","features":[87]},{"name":"LineDisplayScrollDirection","features":[87]},{"name":"LineDisplayStatisticsCategorySelector","features":[87]},{"name":"LineDisplayStatusUpdatedEventArgs","features":[87]},{"name":"LineDisplayStoredBitmap","features":[87]},{"name":"LineDisplayTextAttribute","features":[87]},{"name":"LineDisplayTextAttributeGranularity","features":[87]},{"name":"LineDisplayVerticalAlignment","features":[87]},{"name":"LineDisplayWindow","features":[87]},{"name":"MagneticStripeReader","features":[87]},{"name":"MagneticStripeReaderAamvaCardDataReceivedEventArgs","features":[87]},{"name":"MagneticStripeReaderAuthenticationLevel","features":[87]},{"name":"MagneticStripeReaderAuthenticationProtocol","features":[87]},{"name":"MagneticStripeReaderBankCardDataReceivedEventArgs","features":[87]},{"name":"MagneticStripeReaderCapabilities","features":[87]},{"name":"MagneticStripeReaderCardTypes","features":[87]},{"name":"MagneticStripeReaderEncryptionAlgorithms","features":[87]},{"name":"MagneticStripeReaderErrorOccurredEventArgs","features":[87]},{"name":"MagneticStripeReaderErrorReportingType","features":[87]},{"name":"MagneticStripeReaderReport","features":[87]},{"name":"MagneticStripeReaderStatus","features":[87]},{"name":"MagneticStripeReaderStatusUpdatedEventArgs","features":[87]},{"name":"MagneticStripeReaderTrackData","features":[87]},{"name":"MagneticStripeReaderTrackErrorType","features":[87]},{"name":"MagneticStripeReaderTrackIds","features":[87]},{"name":"MagneticStripeReaderVendorSpecificCardDataReceivedEventArgs","features":[87]},{"name":"PosConnectionTypes","features":[87]},{"name":"PosPrinter","features":[87]},{"name":"PosPrinterAlignment","features":[87]},{"name":"PosPrinterBarcodeTextPosition","features":[87]},{"name":"PosPrinterCapabilities","features":[87]},{"name":"PosPrinterCartridgeSensors","features":[87]},{"name":"PosPrinterCharacterSetIds","features":[87]},{"name":"PosPrinterColorCapabilities","features":[87]},{"name":"PosPrinterColorCartridge","features":[87]},{"name":"PosPrinterFontProperty","features":[87]},{"name":"PosPrinterLineDirection","features":[87]},{"name":"PosPrinterLineStyle","features":[87]},{"name":"PosPrinterMapMode","features":[87]},{"name":"PosPrinterMarkFeedCapabilities","features":[87]},{"name":"PosPrinterMarkFeedKind","features":[87]},{"name":"PosPrinterPrintOptions","features":[87]},{"name":"PosPrinterPrintSide","features":[87]},{"name":"PosPrinterReleaseDeviceRequestedEventArgs","features":[87]},{"name":"PosPrinterRotation","features":[87]},{"name":"PosPrinterRuledLineCapabilities","features":[87]},{"name":"PosPrinterStatus","features":[87]},{"name":"PosPrinterStatusKind","features":[87]},{"name":"PosPrinterStatusUpdatedEventArgs","features":[87]},{"name":"ReceiptPrintJob","features":[87]},{"name":"ReceiptPrinterCapabilities","features":[87]},{"name":"SizeUInt32","features":[87]},{"name":"SlipPrintJob","features":[87]},{"name":"SlipPrinterCapabilities","features":[87]},{"name":"UnifiedPosErrorData","features":[87]},{"name":"UnifiedPosErrorReason","features":[87]},{"name":"UnifiedPosErrorSeverity","features":[87]},{"name":"UnifiedPosHealthCheckLevel","features":[87]},{"name":"UnifiedPosPowerReportingType","features":[87]}],"94":[{"name":"BarcodeScannerDisableScannerRequest","features":[88]},{"name":"BarcodeScannerDisableScannerRequestEventArgs","features":[88]},{"name":"BarcodeScannerEnableScannerRequest","features":[88]},{"name":"BarcodeScannerEnableScannerRequestEventArgs","features":[88]},{"name":"BarcodeScannerFrameReader","features":[88]},{"name":"BarcodeScannerFrameReaderFrameArrivedEventArgs","features":[88]},{"name":"BarcodeScannerGetSymbologyAttributesRequest","features":[88]},{"name":"BarcodeScannerGetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"BarcodeScannerHideVideoPreviewRequest","features":[88]},{"name":"BarcodeScannerHideVideoPreviewRequestEventArgs","features":[88]},{"name":"BarcodeScannerProviderConnection","features":[88]},{"name":"BarcodeScannerProviderTriggerDetails","features":[88]},{"name":"BarcodeScannerSetActiveSymbologiesRequest","features":[88]},{"name":"BarcodeScannerSetActiveSymbologiesRequestEventArgs","features":[88]},{"name":"BarcodeScannerSetSymbologyAttributesRequest","features":[88]},{"name":"BarcodeScannerSetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"BarcodeScannerStartSoftwareTriggerRequest","features":[88]},{"name":"BarcodeScannerStartSoftwareTriggerRequestEventArgs","features":[88]},{"name":"BarcodeScannerStopSoftwareTriggerRequest","features":[88]},{"name":"BarcodeScannerStopSoftwareTriggerRequestEventArgs","features":[88]},{"name":"BarcodeScannerTriggerState","features":[88]},{"name":"BarcodeScannerVideoFrame","features":[88]},{"name":"BarcodeSymbologyAttributesBuilder","features":[88]},{"name":"IBarcodeScannerDisableScannerRequest","features":[88]},{"name":"IBarcodeScannerDisableScannerRequest2","features":[88]},{"name":"IBarcodeScannerDisableScannerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerEnableScannerRequest","features":[88]},{"name":"IBarcodeScannerEnableScannerRequest2","features":[88]},{"name":"IBarcodeScannerEnableScannerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerFrameReader","features":[88]},{"name":"IBarcodeScannerFrameReaderFrameArrivedEventArgs","features":[88]},{"name":"IBarcodeScannerGetSymbologyAttributesRequest","features":[88]},{"name":"IBarcodeScannerGetSymbologyAttributesRequest2","features":[88]},{"name":"IBarcodeScannerGetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"IBarcodeScannerHideVideoPreviewRequest","features":[88]},{"name":"IBarcodeScannerHideVideoPreviewRequest2","features":[88]},{"name":"IBarcodeScannerHideVideoPreviewRequestEventArgs","features":[88]},{"name":"IBarcodeScannerProviderConnection","features":[88]},{"name":"IBarcodeScannerProviderConnection2","features":[88]},{"name":"IBarcodeScannerProviderTriggerDetails","features":[88]},{"name":"IBarcodeScannerSetActiveSymbologiesRequest","features":[88]},{"name":"IBarcodeScannerSetActiveSymbologiesRequest2","features":[88]},{"name":"IBarcodeScannerSetActiveSymbologiesRequestEventArgs","features":[88]},{"name":"IBarcodeScannerSetSymbologyAttributesRequest","features":[88]},{"name":"IBarcodeScannerSetSymbologyAttributesRequest2","features":[88]},{"name":"IBarcodeScannerSetSymbologyAttributesRequestEventArgs","features":[88]},{"name":"IBarcodeScannerStartSoftwareTriggerRequest","features":[88]},{"name":"IBarcodeScannerStartSoftwareTriggerRequest2","features":[88]},{"name":"IBarcodeScannerStartSoftwareTriggerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerStopSoftwareTriggerRequest","features":[88]},{"name":"IBarcodeScannerStopSoftwareTriggerRequest2","features":[88]},{"name":"IBarcodeScannerStopSoftwareTriggerRequestEventArgs","features":[88]},{"name":"IBarcodeScannerVideoFrame","features":[88]},{"name":"IBarcodeSymbologyAttributesBuilder","features":[88]}],"95":[{"name":"IServiceDeviceStatics","features":[89]},{"name":"IStorageDeviceStatics","features":[89]},{"name":"PortableDeviceContract","features":[89]},{"name":"ServiceDevice","features":[89]},{"name":"ServiceDeviceType","features":[89]},{"name":"StorageDevice","features":[89]}],"96":[{"name":"Battery","features":[90]},{"name":"BatteryReport","features":[90]},{"name":"IBattery","features":[90]},{"name":"IBatteryReport","features":[90]},{"name":"IBatteryStatics","features":[90]}],"97":[{"name":"IIppAttributeError","features":[91]},{"name":"IIppAttributeValue","features":[91]},{"name":"IIppAttributeValueStatics","features":[91]},{"name":"IIppIntegerRange","features":[91]},{"name":"IIppIntegerRangeFactory","features":[91]},{"name":"IIppPrintDevice","features":[91]},{"name":"IIppPrintDevice2","features":[91]},{"name":"IIppPrintDeviceStatics","features":[91]},{"name":"IIppResolution","features":[91]},{"name":"IIppResolutionFactory","features":[91]},{"name":"IIppSetAttributesResult","features":[91]},{"name":"IIppTextWithLanguage","features":[91]},{"name":"IIppTextWithLanguageFactory","features":[91]},{"name":"IPageConfigurationSettings","features":[91]},{"name":"IPdlPassthroughProvider","features":[91]},{"name":"IPdlPassthroughTarget","features":[91]},{"name":"IPrint3DDevice","features":[91]},{"name":"IPrint3DDeviceStatics","features":[91]},{"name":"IPrintSchema","features":[91]},{"name":"IppAttributeError","features":[91]},{"name":"IppAttributeErrorReason","features":[91]},{"name":"IppAttributeValue","features":[91]},{"name":"IppAttributeValueKind","features":[91]},{"name":"IppIntegerRange","features":[91]},{"name":"IppPrintDevice","features":[91]},{"name":"IppResolution","features":[91]},{"name":"IppResolutionUnit","features":[91]},{"name":"IppSetAttributesResult","features":[91]},{"name":"IppTextWithLanguage","features":[91]},{"name":"PageConfigurationSettings","features":[91]},{"name":"PageConfigurationSource","features":[91]},{"name":"PdlPassthroughProvider","features":[91]},{"name":"PdlPassthroughTarget","features":[91]},{"name":"Print3DDevice","features":[91]},{"name":"PrintSchema","features":[91]},{"name":"PrintersContract","features":[91]}],"98":[{"name":"ExtensionsContract","features":[92]},{"name":"IPrint3DWorkflow","features":[92]},{"name":"IPrint3DWorkflow2","features":[92]},{"name":"IPrint3DWorkflowPrintRequestedEventArgs","features":[92]},{"name":"IPrint3DWorkflowPrinterChangedEventArgs","features":[92]},{"name":"IPrintExtensionContextStatic","features":[92]},{"name":"IPrintNotificationEventDetails","features":[92]},{"name":"IPrintTaskConfiguration","features":[92]},{"name":"IPrintTaskConfigurationSaveRequest","features":[92]},{"name":"IPrintTaskConfigurationSaveRequestedDeferral","features":[92]},{"name":"IPrintTaskConfigurationSaveRequestedEventArgs","features":[92]},{"name":"Print3DWorkflow","features":[92]},{"name":"Print3DWorkflowDetail","features":[92]},{"name":"Print3DWorkflowPrintRequestedEventArgs","features":[92]},{"name":"Print3DWorkflowPrinterChangedEventArgs","features":[92]},{"name":"Print3DWorkflowStatus","features":[92]},{"name":"PrintExtensionContext","features":[92]},{"name":"PrintNotificationEventDetails","features":[92]},{"name":"PrintTaskConfiguration","features":[92]},{"name":"PrintTaskConfigurationSaveRequest","features":[92]},{"name":"PrintTaskConfigurationSaveRequestedDeferral","features":[92]},{"name":"PrintTaskConfigurationSaveRequestedEventArgs","features":[92]}],"99":[{"name":"IPwmController","features":[93]},{"name":"IPwmControllerStatics","features":[93]},{"name":"IPwmControllerStatics2","features":[93]},{"name":"IPwmControllerStatics3","features":[93]},{"name":"IPwmPin","features":[93]},{"name":"PwmController","features":[93]},{"name":"PwmPin","features":[93]},{"name":"PwmPulsePolarity","features":[93]}],"100":[{"name":"IPwmControllerProvider","features":[94]},{"name":"IPwmProvider","features":[94]}],"101":[{"name":"IRadio","features":[95]},{"name":"IRadioStatics","features":[95]},{"name":"Radio","features":[95]},{"name":"RadioAccessStatus","features":[95]},{"name":"RadioKind","features":[95]},{"name":"RadioState","features":[95]}],"102":[{"name":"IImageScanner","features":[96]},{"name":"IImageScannerFeederConfiguration","features":[96]},{"name":"IImageScannerFormatConfiguration","features":[96]},{"name":"IImageScannerPreviewResult","features":[96]},{"name":"IImageScannerScanResult","features":[96]},{"name":"IImageScannerSourceConfiguration","features":[96]},{"name":"IImageScannerStatics","features":[96]},{"name":"ImageScanner","features":[96]},{"name":"ImageScannerAutoConfiguration","features":[96]},{"name":"ImageScannerAutoCroppingMode","features":[96]},{"name":"ImageScannerColorMode","features":[96]},{"name":"ImageScannerFeederConfiguration","features":[96]},{"name":"ImageScannerFlatbedConfiguration","features":[96]},{"name":"ImageScannerFormat","features":[96]},{"name":"ImageScannerPreviewResult","features":[96]},{"name":"ImageScannerResolution","features":[96]},{"name":"ImageScannerScanResult","features":[96]},{"name":"ImageScannerScanSource","features":[96]},{"name":"ScannerDeviceContract","features":[96]}],"103":[{"name":"Accelerometer","features":[97]},{"name":"AccelerometerDataThreshold","features":[97]},{"name":"AccelerometerReading","features":[97]},{"name":"AccelerometerReadingChangedEventArgs","features":[97]},{"name":"AccelerometerReadingType","features":[97]},{"name":"AccelerometerShakenEventArgs","features":[97]},{"name":"ActivitySensor","features":[97]},{"name":"ActivitySensorReading","features":[97]},{"name":"ActivitySensorReadingChangeReport","features":[97]},{"name":"ActivitySensorReadingChangedEventArgs","features":[97]},{"name":"ActivitySensorReadingConfidence","features":[97]},{"name":"ActivitySensorTriggerDetails","features":[97]},{"name":"ActivityType","features":[97]},{"name":"AdaptiveDimmingOptions","features":[97]},{"name":"Altimeter","features":[97]},{"name":"AltimeterReading","features":[97]},{"name":"AltimeterReadingChangedEventArgs","features":[97]},{"name":"Barometer","features":[97]},{"name":"BarometerDataThreshold","features":[97]},{"name":"BarometerReading","features":[97]},{"name":"BarometerReadingChangedEventArgs","features":[97]},{"name":"Compass","features":[97]},{"name":"CompassDataThreshold","features":[97]},{"name":"CompassReading","features":[97]},{"name":"CompassReadingChangedEventArgs","features":[97]},{"name":"Gyrometer","features":[97]},{"name":"GyrometerDataThreshold","features":[97]},{"name":"GyrometerReading","features":[97]},{"name":"GyrometerReadingChangedEventArgs","features":[97]},{"name":"HingeAngleReading","features":[97]},{"name":"HingeAngleSensor","features":[97]},{"name":"HingeAngleSensorReadingChangedEventArgs","features":[97]},{"name":"HumanEngagement","features":[97]},{"name":"HumanPresence","features":[97]},{"name":"HumanPresenceFeatures","features":[97]},{"name":"HumanPresenceSensor","features":[97]},{"name":"HumanPresenceSensorReading","features":[97]},{"name":"HumanPresenceSensorReadingChangedEventArgs","features":[97]},{"name":"HumanPresenceSensorReadingUpdate","features":[97]},{"name":"HumanPresenceSettings","features":[97]},{"name":"IAccelerometer","features":[97]},{"name":"IAccelerometer2","features":[97]},{"name":"IAccelerometer3","features":[97]},{"name":"IAccelerometer4","features":[97]},{"name":"IAccelerometer5","features":[97]},{"name":"IAccelerometerDataThreshold","features":[97]},{"name":"IAccelerometerDeviceId","features":[97]},{"name":"IAccelerometerReading","features":[97]},{"name":"IAccelerometerReading2","features":[97]},{"name":"IAccelerometerReadingChangedEventArgs","features":[97]},{"name":"IAccelerometerShakenEventArgs","features":[97]},{"name":"IAccelerometerStatics","features":[97]},{"name":"IAccelerometerStatics2","features":[97]},{"name":"IAccelerometerStatics3","features":[97]},{"name":"IActivitySensor","features":[97]},{"name":"IActivitySensorReading","features":[97]},{"name":"IActivitySensorReadingChangeReport","features":[97]},{"name":"IActivitySensorReadingChangedEventArgs","features":[97]},{"name":"IActivitySensorStatics","features":[97]},{"name":"IActivitySensorTriggerDetails","features":[97]},{"name":"IAdaptiveDimmingOptions","features":[97]},{"name":"IAltimeter","features":[97]},{"name":"IAltimeter2","features":[97]},{"name":"IAltimeterReading","features":[97]},{"name":"IAltimeterReading2","features":[97]},{"name":"IAltimeterReadingChangedEventArgs","features":[97]},{"name":"IAltimeterStatics","features":[97]},{"name":"IBarometer","features":[97]},{"name":"IBarometer2","features":[97]},{"name":"IBarometer3","features":[97]},{"name":"IBarometerDataThreshold","features":[97]},{"name":"IBarometerReading","features":[97]},{"name":"IBarometerReading2","features":[97]},{"name":"IBarometerReadingChangedEventArgs","features":[97]},{"name":"IBarometerStatics","features":[97]},{"name":"IBarometerStatics2","features":[97]},{"name":"ICompass","features":[97]},{"name":"ICompass2","features":[97]},{"name":"ICompass3","features":[97]},{"name":"ICompass4","features":[97]},{"name":"ICompassDataThreshold","features":[97]},{"name":"ICompassDeviceId","features":[97]},{"name":"ICompassReading","features":[97]},{"name":"ICompassReading2","features":[97]},{"name":"ICompassReadingChangedEventArgs","features":[97]},{"name":"ICompassReadingHeadingAccuracy","features":[97]},{"name":"ICompassStatics","features":[97]},{"name":"ICompassStatics2","features":[97]},{"name":"IGyrometer","features":[97]},{"name":"IGyrometer2","features":[97]},{"name":"IGyrometer3","features":[97]},{"name":"IGyrometer4","features":[97]},{"name":"IGyrometerDataThreshold","features":[97]},{"name":"IGyrometerDeviceId","features":[97]},{"name":"IGyrometerReading","features":[97]},{"name":"IGyrometerReading2","features":[97]},{"name":"IGyrometerReadingChangedEventArgs","features":[97]},{"name":"IGyrometerStatics","features":[97]},{"name":"IGyrometerStatics2","features":[97]},{"name":"IHingeAngleReading","features":[97]},{"name":"IHingeAngleSensor","features":[97]},{"name":"IHingeAngleSensorReadingChangedEventArgs","features":[97]},{"name":"IHingeAngleSensorStatics","features":[97]},{"name":"IHumanPresenceFeatures","features":[97]},{"name":"IHumanPresenceFeatures2","features":[97]},{"name":"IHumanPresenceSensor","features":[97]},{"name":"IHumanPresenceSensor2","features":[97]},{"name":"IHumanPresenceSensorExtension","features":[97]},{"name":"IHumanPresenceSensorReading","features":[97]},{"name":"IHumanPresenceSensorReading2","features":[97]},{"name":"IHumanPresenceSensorReadingChangedEventArgs","features":[97]},{"name":"IHumanPresenceSensorReadingUpdate","features":[97]},{"name":"IHumanPresenceSensorStatics","features":[97]},{"name":"IHumanPresenceSensorStatics2","features":[97]},{"name":"IHumanPresenceSettings","features":[97]},{"name":"IHumanPresenceSettings2","features":[97]},{"name":"IHumanPresenceSettingsStatics","features":[97]},{"name":"IInclinometer","features":[97]},{"name":"IInclinometer2","features":[97]},{"name":"IInclinometer3","features":[97]},{"name":"IInclinometer4","features":[97]},{"name":"IInclinometerDataThreshold","features":[97]},{"name":"IInclinometerDeviceId","features":[97]},{"name":"IInclinometerReading","features":[97]},{"name":"IInclinometerReading2","features":[97]},{"name":"IInclinometerReadingChangedEventArgs","features":[97]},{"name":"IInclinometerReadingYawAccuracy","features":[97]},{"name":"IInclinometerStatics","features":[97]},{"name":"IInclinometerStatics2","features":[97]},{"name":"IInclinometerStatics3","features":[97]},{"name":"IInclinometerStatics4","features":[97]},{"name":"ILightSensor","features":[97]},{"name":"ILightSensor2","features":[97]},{"name":"ILightSensor3","features":[97]},{"name":"ILightSensorDataThreshold","features":[97]},{"name":"ILightSensorDeviceId","features":[97]},{"name":"ILightSensorReading","features":[97]},{"name":"ILightSensorReading2","features":[97]},{"name":"ILightSensorReadingChangedEventArgs","features":[97]},{"name":"ILightSensorStatics","features":[97]},{"name":"ILightSensorStatics2","features":[97]},{"name":"ILockOnLeaveOptions","features":[97]},{"name":"IMagnetometer","features":[97]},{"name":"IMagnetometer2","features":[97]},{"name":"IMagnetometer3","features":[97]},{"name":"IMagnetometer4","features":[97]},{"name":"IMagnetometerDataThreshold","features":[97]},{"name":"IMagnetometerDeviceId","features":[97]},{"name":"IMagnetometerReading","features":[97]},{"name":"IMagnetometerReading2","features":[97]},{"name":"IMagnetometerReadingChangedEventArgs","features":[97]},{"name":"IMagnetometerStatics","features":[97]},{"name":"IMagnetometerStatics2","features":[97]},{"name":"IOrientationSensor","features":[97]},{"name":"IOrientationSensor2","features":[97]},{"name":"IOrientationSensor3","features":[97]},{"name":"IOrientationSensorDeviceId","features":[97]},{"name":"IOrientationSensorReading","features":[97]},{"name":"IOrientationSensorReading2","features":[97]},{"name":"IOrientationSensorReadingChangedEventArgs","features":[97]},{"name":"IOrientationSensorReadingYawAccuracy","features":[97]},{"name":"IOrientationSensorStatics","features":[97]},{"name":"IOrientationSensorStatics2","features":[97]},{"name":"IOrientationSensorStatics3","features":[97]},{"name":"IOrientationSensorStatics4","features":[97]},{"name":"IPedometer","features":[97]},{"name":"IPedometer2","features":[97]},{"name":"IPedometerDataThresholdFactory","features":[97]},{"name":"IPedometerReading","features":[97]},{"name":"IPedometerReadingChangedEventArgs","features":[97]},{"name":"IPedometerStatics","features":[97]},{"name":"IPedometerStatics2","features":[97]},{"name":"IProximitySensor","features":[97]},{"name":"IProximitySensorDataThresholdFactory","features":[97]},{"name":"IProximitySensorReading","features":[97]},{"name":"IProximitySensorReadingChangedEventArgs","features":[97]},{"name":"IProximitySensorStatics","features":[97]},{"name":"IProximitySensorStatics2","features":[97]},{"name":"ISensorDataThreshold","features":[97]},{"name":"ISensorDataThresholdTriggerDetails","features":[97]},{"name":"ISensorQuaternion","features":[97]},{"name":"ISensorRotationMatrix","features":[97]},{"name":"ISimpleOrientationSensor","features":[97]},{"name":"ISimpleOrientationSensor2","features":[97]},{"name":"ISimpleOrientationSensorDeviceId","features":[97]},{"name":"ISimpleOrientationSensorOrientationChangedEventArgs","features":[97]},{"name":"ISimpleOrientationSensorStatics","features":[97]},{"name":"ISimpleOrientationSensorStatics2","features":[97]},{"name":"IWakeOnApproachOptions","features":[97]},{"name":"Inclinometer","features":[97]},{"name":"InclinometerDataThreshold","features":[97]},{"name":"InclinometerReading","features":[97]},{"name":"InclinometerReadingChangedEventArgs","features":[97]},{"name":"LightSensor","features":[97]},{"name":"LightSensorDataThreshold","features":[97]},{"name":"LightSensorReading","features":[97]},{"name":"LightSensorReadingChangedEventArgs","features":[97]},{"name":"LockOnLeaveOptions","features":[97]},{"name":"Magnetometer","features":[97]},{"name":"MagnetometerAccuracy","features":[97]},{"name":"MagnetometerDataThreshold","features":[97]},{"name":"MagnetometerReading","features":[97]},{"name":"MagnetometerReadingChangedEventArgs","features":[97]},{"name":"OrientationSensor","features":[97]},{"name":"OrientationSensorReading","features":[97]},{"name":"OrientationSensorReadingChangedEventArgs","features":[97]},{"name":"Pedometer","features":[97]},{"name":"PedometerDataThreshold","features":[97]},{"name":"PedometerReading","features":[97]},{"name":"PedometerReadingChangedEventArgs","features":[97]},{"name":"PedometerStepKind","features":[97]},{"name":"ProximitySensor","features":[97]},{"name":"ProximitySensorDataThreshold","features":[97]},{"name":"ProximitySensorDisplayOnOffController","features":[97,76]},{"name":"ProximitySensorReading","features":[97]},{"name":"ProximitySensorReadingChangedEventArgs","features":[97]},{"name":"SensorDataThresholdTriggerDetails","features":[97]},{"name":"SensorOptimizationGoal","features":[97]},{"name":"SensorQuaternion","features":[97]},{"name":"SensorReadingType","features":[97]},{"name":"SensorRotationMatrix","features":[97]},{"name":"SensorType","features":[97]},{"name":"SimpleOrientation","features":[97]},{"name":"SimpleOrientationSensor","features":[97]},{"name":"SimpleOrientationSensorOrientationChangedEventArgs","features":[97]},{"name":"WakeOnApproachOptions","features":[97]}],"104":[{"name":"CustomSensor","features":[98]},{"name":"CustomSensorReading","features":[98]},{"name":"CustomSensorReadingChangedEventArgs","features":[98]},{"name":"ICustomSensor","features":[98]},{"name":"ICustomSensor2","features":[98]},{"name":"ICustomSensorReading","features":[98]},{"name":"ICustomSensorReading2","features":[98]},{"name":"ICustomSensorReadingChangedEventArgs","features":[98]},{"name":"ICustomSensorStatics","features":[98]}],"105":[{"name":"ErrorReceivedEventArgs","features":[99]},{"name":"IErrorReceivedEventArgs","features":[99]},{"name":"IPinChangedEventArgs","features":[99]},{"name":"ISerialDevice","features":[99]},{"name":"ISerialDeviceStatics","features":[99]},{"name":"PinChangedEventArgs","features":[99]},{"name":"SerialDevice","features":[99]},{"name":"SerialError","features":[99]},{"name":"SerialHandshake","features":[99]},{"name":"SerialParity","features":[99]},{"name":"SerialPinChange","features":[99]},{"name":"SerialStopBitCount","features":[99]}],"106":[{"name":"CardAddedEventArgs","features":[100]},{"name":"CardRemovedEventArgs","features":[100]},{"name":"ICardAddedEventArgs","features":[100]},{"name":"ICardRemovedEventArgs","features":[100]},{"name":"IKnownSmartCardAppletIds","features":[100]},{"name":"ISmartCard","features":[100]},{"name":"ISmartCardAppletIdGroup","features":[100]},{"name":"ISmartCardAppletIdGroup2","features":[100]},{"name":"ISmartCardAppletIdGroupFactory","features":[100]},{"name":"ISmartCardAppletIdGroupRegistration","features":[100]},{"name":"ISmartCardAppletIdGroupRegistration2","features":[100]},{"name":"ISmartCardAppletIdGroupStatics","features":[100]},{"name":"ISmartCardAutomaticResponseApdu","features":[100]},{"name":"ISmartCardAutomaticResponseApdu2","features":[100]},{"name":"ISmartCardAutomaticResponseApdu3","features":[100]},{"name":"ISmartCardAutomaticResponseApduFactory","features":[100]},{"name":"ISmartCardChallengeContext","features":[100]},{"name":"ISmartCardConnect","features":[100]},{"name":"ISmartCardConnection","features":[100]},{"name":"ISmartCardCryptogramGenerator","features":[100]},{"name":"ISmartCardCryptogramGenerator2","features":[100]},{"name":"ISmartCardCryptogramGeneratorStatics","features":[100]},{"name":"ISmartCardCryptogramGeneratorStatics2","features":[100]},{"name":"ISmartCardCryptogramGetAllCryptogramMaterialCharacteristicsResult","features":[100]},{"name":"ISmartCardCryptogramGetAllCryptogramMaterialPackageCharacteristicsResult","features":[100]},{"name":"ISmartCardCryptogramGetAllCryptogramStorageKeyCharacteristicsResult","features":[100]},{"name":"ISmartCardCryptogramMaterialCharacteristics","features":[100]},{"name":"ISmartCardCryptogramMaterialPackageCharacteristics","features":[100]},{"name":"ISmartCardCryptogramMaterialPossessionProof","features":[100]},{"name":"ISmartCardCryptogramPlacementStep","features":[100]},{"name":"ISmartCardCryptogramStorageKeyCharacteristics","features":[100]},{"name":"ISmartCardCryptogramStorageKeyInfo","features":[100]},{"name":"ISmartCardCryptogramStorageKeyInfo2","features":[100]},{"name":"ISmartCardEmulator","features":[100]},{"name":"ISmartCardEmulator2","features":[100]},{"name":"ISmartCardEmulatorApduReceivedEventArgs","features":[100]},{"name":"ISmartCardEmulatorApduReceivedEventArgs2","features":[100]},{"name":"ISmartCardEmulatorApduReceivedEventArgsWithCryptograms","features":[100]},{"name":"ISmartCardEmulatorConnectionDeactivatedEventArgs","features":[100]},{"name":"ISmartCardEmulatorConnectionProperties","features":[100]},{"name":"ISmartCardEmulatorStatics","features":[100]},{"name":"ISmartCardEmulatorStatics2","features":[100]},{"name":"ISmartCardEmulatorStatics3","features":[100]},{"name":"ISmartCardPinPolicy","features":[100]},{"name":"ISmartCardPinResetDeferral","features":[100]},{"name":"ISmartCardPinResetRequest","features":[100]},{"name":"ISmartCardProvisioning","features":[100]},{"name":"ISmartCardProvisioning2","features":[100]},{"name":"ISmartCardProvisioningStatics","features":[100]},{"name":"ISmartCardProvisioningStatics2","features":[100]},{"name":"ISmartCardReader","features":[100]},{"name":"ISmartCardReaderStatics","features":[100]},{"name":"ISmartCardTriggerDetails","features":[100]},{"name":"ISmartCardTriggerDetails2","features":[100]},{"name":"ISmartCardTriggerDetails3","features":[100]},{"name":"KnownSmartCardAppletIds","features":[100]},{"name":"SmartCard","features":[100]},{"name":"SmartCardActivationPolicyChangeResult","features":[100]},{"name":"SmartCardAppletIdGroup","features":[100]},{"name":"SmartCardAppletIdGroupActivationPolicy","features":[100]},{"name":"SmartCardAppletIdGroupRegistration","features":[100]},{"name":"SmartCardAutomaticResponseApdu","features":[100]},{"name":"SmartCardAutomaticResponseStatus","features":[100]},{"name":"SmartCardBackgroundTriggerContract","features":[100]},{"name":"SmartCardChallengeContext","features":[100]},{"name":"SmartCardConnection","features":[100]},{"name":"SmartCardCryptogramAlgorithm","features":[100]},{"name":"SmartCardCryptogramGenerator","features":[100]},{"name":"SmartCardCryptogramGeneratorOperationStatus","features":[100]},{"name":"SmartCardCryptogramGetAllCryptogramMaterialCharacteristicsResult","features":[100]},{"name":"SmartCardCryptogramGetAllCryptogramMaterialPackageCharacteristicsResult","features":[100]},{"name":"SmartCardCryptogramGetAllCryptogramStorageKeyCharacteristicsResult","features":[100]},{"name":"SmartCardCryptogramMaterialCharacteristics","features":[100]},{"name":"SmartCardCryptogramMaterialPackageCharacteristics","features":[100]},{"name":"SmartCardCryptogramMaterialPackageConfirmationResponseFormat","features":[100]},{"name":"SmartCardCryptogramMaterialPackageFormat","features":[100]},{"name":"SmartCardCryptogramMaterialPossessionProof","features":[100]},{"name":"SmartCardCryptogramMaterialProtectionMethod","features":[100]},{"name":"SmartCardCryptogramMaterialType","features":[100]},{"name":"SmartCardCryptogramPlacementOptions","features":[100]},{"name":"SmartCardCryptogramPlacementStep","features":[100]},{"name":"SmartCardCryptogramStorageKeyAlgorithm","features":[100]},{"name":"SmartCardCryptogramStorageKeyCapabilities","features":[100]},{"name":"SmartCardCryptogramStorageKeyCharacteristics","features":[100]},{"name":"SmartCardCryptogramStorageKeyInfo","features":[100]},{"name":"SmartCardCryptographicKeyAttestationStatus","features":[100]},{"name":"SmartCardEmulationCategory","features":[100]},{"name":"SmartCardEmulationType","features":[100]},{"name":"SmartCardEmulator","features":[100]},{"name":"SmartCardEmulatorApduReceivedEventArgs","features":[100]},{"name":"SmartCardEmulatorConnectionDeactivatedEventArgs","features":[100]},{"name":"SmartCardEmulatorConnectionDeactivatedReason","features":[100]},{"name":"SmartCardEmulatorConnectionProperties","features":[100]},{"name":"SmartCardEmulatorConnectionSource","features":[100]},{"name":"SmartCardEmulatorContract","features":[100]},{"name":"SmartCardEmulatorEnablementPolicy","features":[100]},{"name":"SmartCardLaunchBehavior","features":[100]},{"name":"SmartCardPinCharacterPolicyOption","features":[100]},{"name":"SmartCardPinPolicy","features":[100]},{"name":"SmartCardPinResetDeferral","features":[100]},{"name":"SmartCardPinResetHandler","features":[100]},{"name":"SmartCardPinResetRequest","features":[100]},{"name":"SmartCardProvisioning","features":[100]},{"name":"SmartCardReader","features":[100]},{"name":"SmartCardReaderKind","features":[100]},{"name":"SmartCardReaderStatus","features":[100]},{"name":"SmartCardStatus","features":[100]},{"name":"SmartCardTriggerDetails","features":[100]},{"name":"SmartCardTriggerType","features":[100]},{"name":"SmartCardUnlockPromptingBehavior","features":[100]}],"107":[{"name":"CellularClass","features":[101]},{"name":"DeleteSmsMessageOperation","features":[101,76]},{"name":"DeleteSmsMessagesOperation","features":[101,76]},{"name":"GetSmsDeviceOperation","features":[101,76]},{"name":"GetSmsMessageOperation","features":[101,76]},{"name":"GetSmsMessagesOperation","features":[101,36]},{"name":"ISmsAppMessage","features":[101]},{"name":"ISmsBinaryMessage","features":[101]},{"name":"ISmsBroadcastMessage","features":[101]},{"name":"ISmsDevice","features":[101]},{"name":"ISmsDevice2","features":[101]},{"name":"ISmsDevice2Statics","features":[101]},{"name":"ISmsDeviceMessageStore","features":[101]},{"name":"ISmsDeviceStatics","features":[101]},{"name":"ISmsDeviceStatics2","features":[101]},{"name":"ISmsFilterRule","features":[101]},{"name":"ISmsFilterRuleFactory","features":[101]},{"name":"ISmsFilterRules","features":[101]},{"name":"ISmsFilterRulesFactory","features":[101]},{"name":"ISmsMessage","features":[101]},{"name":"ISmsMessageBase","features":[101]},{"name":"ISmsMessageReceivedEventArgs","features":[101]},{"name":"ISmsMessageReceivedTriggerDetails","features":[101]},{"name":"ISmsMessageRegistration","features":[101]},{"name":"ISmsMessageRegistrationStatics","features":[101]},{"name":"ISmsReceivedEventDetails","features":[101]},{"name":"ISmsReceivedEventDetails2","features":[101]},{"name":"ISmsSendMessageResult","features":[101]},{"name":"ISmsStatusMessage","features":[101]},{"name":"ISmsTextMessage","features":[101]},{"name":"ISmsTextMessage2","features":[101]},{"name":"ISmsTextMessageStatics","features":[101]},{"name":"ISmsVoicemailMessage","features":[101]},{"name":"ISmsWapMessage","features":[101]},{"name":"LegacySmsApiContract","features":[101]},{"name":"SendSmsMessageOperation","features":[101,76]},{"name":"SmsAppMessage","features":[101]},{"name":"SmsBinaryMessage","features":[101]},{"name":"SmsBroadcastMessage","features":[101]},{"name":"SmsBroadcastType","features":[101]},{"name":"SmsDataFormat","features":[101]},{"name":"SmsDevice","features":[101]},{"name":"SmsDevice2","features":[101]},{"name":"SmsDeviceMessageStore","features":[101]},{"name":"SmsDeviceStatus","features":[101]},{"name":"SmsDeviceStatusChangedEventHandler","features":[101]},{"name":"SmsEncodedLength","features":[101]},{"name":"SmsEncoding","features":[101]},{"name":"SmsFilterActionType","features":[101]},{"name":"SmsFilterRule","features":[101]},{"name":"SmsFilterRules","features":[101]},{"name":"SmsGeographicalScope","features":[101]},{"name":"SmsMessageClass","features":[101]},{"name":"SmsMessageFilter","features":[101]},{"name":"SmsMessageReceivedEventArgs","features":[101]},{"name":"SmsMessageReceivedEventHandler","features":[101]},{"name":"SmsMessageReceivedTriggerDetails","features":[101]},{"name":"SmsMessageRegistration","features":[101]},{"name":"SmsMessageType","features":[101]},{"name":"SmsModemErrorCode","features":[101]},{"name":"SmsReceivedEventDetails","features":[101]},{"name":"SmsSendMessageResult","features":[101]},{"name":"SmsStatusMessage","features":[101]},{"name":"SmsTextMessage","features":[101]},{"name":"SmsTextMessage2","features":[101]},{"name":"SmsVoicemailMessage","features":[101]},{"name":"SmsWapMessage","features":[101]}],"108":[{"name":"ISpiBusInfo","features":[102]},{"name":"ISpiConnectionSettings","features":[102]},{"name":"ISpiConnectionSettingsFactory","features":[102]},{"name":"ISpiController","features":[102]},{"name":"ISpiControllerStatics","features":[102]},{"name":"ISpiDevice","features":[102]},{"name":"ISpiDeviceStatics","features":[102]},{"name":"SpiBusInfo","features":[102]},{"name":"SpiConnectionSettings","features":[102]},{"name":"SpiController","features":[102]},{"name":"SpiDevice","features":[102]},{"name":"SpiMode","features":[102]},{"name":"SpiSharingMode","features":[102]}],"109":[{"name":"IProviderSpiConnectionSettings","features":[103]},{"name":"IProviderSpiConnectionSettingsFactory","features":[103]},{"name":"ISpiControllerProvider","features":[103]},{"name":"ISpiDeviceProvider","features":[103]},{"name":"ISpiProvider","features":[103]},{"name":"ProviderSpiConnectionSettings","features":[103]},{"name":"ProviderSpiMode","features":[103]},{"name":"ProviderSpiSharingMode","features":[103]}],"110":[{"name":"IUsbBulkInEndpointDescriptor","features":[104]},{"name":"IUsbBulkInPipe","features":[104]},{"name":"IUsbBulkOutEndpointDescriptor","features":[104]},{"name":"IUsbBulkOutPipe","features":[104]},{"name":"IUsbConfiguration","features":[104]},{"name":"IUsbConfigurationDescriptor","features":[104]},{"name":"IUsbConfigurationDescriptorStatics","features":[104]},{"name":"IUsbControlRequestType","features":[104]},{"name":"IUsbDescriptor","features":[104]},{"name":"IUsbDevice","features":[104]},{"name":"IUsbDeviceClass","features":[104]},{"name":"IUsbDeviceClasses","features":[104]},{"name":"IUsbDeviceClassesStatics","features":[104]},{"name":"IUsbDeviceDescriptor","features":[104]},{"name":"IUsbDeviceStatics","features":[104]},{"name":"IUsbEndpointDescriptor","features":[104]},{"name":"IUsbEndpointDescriptorStatics","features":[104]},{"name":"IUsbInterface","features":[104]},{"name":"IUsbInterfaceDescriptor","features":[104]},{"name":"IUsbInterfaceDescriptorStatics","features":[104]},{"name":"IUsbInterfaceSetting","features":[104]},{"name":"IUsbInterruptInEndpointDescriptor","features":[104]},{"name":"IUsbInterruptInEventArgs","features":[104]},{"name":"IUsbInterruptInPipe","features":[104]},{"name":"IUsbInterruptOutEndpointDescriptor","features":[104]},{"name":"IUsbInterruptOutPipe","features":[104]},{"name":"IUsbSetupPacket","features":[104]},{"name":"IUsbSetupPacketFactory","features":[104]},{"name":"UsbBulkInEndpointDescriptor","features":[104]},{"name":"UsbBulkInPipe","features":[104]},{"name":"UsbBulkOutEndpointDescriptor","features":[104]},{"name":"UsbBulkOutPipe","features":[104]},{"name":"UsbConfiguration","features":[104]},{"name":"UsbConfigurationDescriptor","features":[104]},{"name":"UsbControlRecipient","features":[104]},{"name":"UsbControlRequestType","features":[104]},{"name":"UsbControlTransferType","features":[104]},{"name":"UsbDescriptor","features":[104]},{"name":"UsbDevice","features":[104]},{"name":"UsbDeviceClass","features":[104]},{"name":"UsbDeviceClasses","features":[104]},{"name":"UsbDeviceDescriptor","features":[104]},{"name":"UsbEndpointDescriptor","features":[104]},{"name":"UsbEndpointType","features":[104]},{"name":"UsbInterface","features":[104]},{"name":"UsbInterfaceDescriptor","features":[104]},{"name":"UsbInterfaceSetting","features":[104]},{"name":"UsbInterruptInEndpointDescriptor","features":[104]},{"name":"UsbInterruptInEventArgs","features":[104]},{"name":"UsbInterruptInPipe","features":[104]},{"name":"UsbInterruptOutEndpointDescriptor","features":[104]},{"name":"UsbInterruptOutPipe","features":[104]},{"name":"UsbReadOptions","features":[104]},{"name":"UsbSetupPacket","features":[104]},{"name":"UsbTransferDirection","features":[104]},{"name":"UsbWriteOptions","features":[104]}],"111":[{"name":"IWiFiAdapter","features":[105]},{"name":"IWiFiAdapter2","features":[105]},{"name":"IWiFiAdapterStatics","features":[105]},{"name":"IWiFiAvailableNetwork","features":[105]},{"name":"IWiFiConnectionResult","features":[105]},{"name":"IWiFiNetworkReport","features":[105]},{"name":"IWiFiOnDemandHotspotConnectTriggerDetails","features":[105]},{"name":"IWiFiOnDemandHotspotConnectionResult","features":[105]},{"name":"IWiFiOnDemandHotspotNetwork","features":[105]},{"name":"IWiFiOnDemandHotspotNetworkProperties","features":[105]},{"name":"IWiFiOnDemandHotspotNetworkStatics","features":[105]},{"name":"IWiFiWpsConfigurationResult","features":[105]},{"name":"WiFiAccessStatus","features":[105]},{"name":"WiFiAdapter","features":[105]},{"name":"WiFiAvailableNetwork","features":[105]},{"name":"WiFiConnectionMethod","features":[105]},{"name":"WiFiConnectionResult","features":[105]},{"name":"WiFiConnectionStatus","features":[105]},{"name":"WiFiNetworkKind","features":[105]},{"name":"WiFiNetworkReport","features":[105]},{"name":"WiFiOnDemandHotspotAvailability","features":[105]},{"name":"WiFiOnDemandHotspotCellularBars","features":[105]},{"name":"WiFiOnDemandHotspotConnectStatus","features":[105]},{"name":"WiFiOnDemandHotspotConnectTriggerDetails","features":[105]},{"name":"WiFiOnDemandHotspotConnectionResult","features":[105]},{"name":"WiFiOnDemandHotspotNetwork","features":[105]},{"name":"WiFiOnDemandHotspotNetworkProperties","features":[105]},{"name":"WiFiPhyKind","features":[105]},{"name":"WiFiReconnectionKind","features":[105]},{"name":"WiFiWpsConfigurationResult","features":[105]},{"name":"WiFiWpsConfigurationStatus","features":[105]},{"name":"WiFiWpsKind","features":[105]}],"112":[{"name":"IWiFiDirectAdvertisement","features":[106]},{"name":"IWiFiDirectAdvertisement2","features":[106]},{"name":"IWiFiDirectAdvertisementPublisher","features":[106]},{"name":"IWiFiDirectAdvertisementPublisherStatusChangedEventArgs","features":[106]},{"name":"IWiFiDirectConnectionListener","features":[106]},{"name":"IWiFiDirectConnectionParameters","features":[106]},{"name":"IWiFiDirectConnectionParameters2","features":[106]},{"name":"IWiFiDirectConnectionParametersStatics","features":[106]},{"name":"IWiFiDirectConnectionRequest","features":[106]},{"name":"IWiFiDirectConnectionRequestedEventArgs","features":[106]},{"name":"IWiFiDirectDevice","features":[106]},{"name":"IWiFiDirectDeviceStatics","features":[106]},{"name":"IWiFiDirectDeviceStatics2","features":[106]},{"name":"IWiFiDirectInformationElement","features":[106]},{"name":"IWiFiDirectInformationElementStatics","features":[106]},{"name":"IWiFiDirectLegacySettings","features":[106]},{"name":"WiFiDirectAdvertisement","features":[106]},{"name":"WiFiDirectAdvertisementListenStateDiscoverability","features":[106]},{"name":"WiFiDirectAdvertisementPublisher","features":[106]},{"name":"WiFiDirectAdvertisementPublisherStatus","features":[106]},{"name":"WiFiDirectAdvertisementPublisherStatusChangedEventArgs","features":[106]},{"name":"WiFiDirectConfigurationMethod","features":[106]},{"name":"WiFiDirectConnectionListener","features":[106]},{"name":"WiFiDirectConnectionParameters","features":[106]},{"name":"WiFiDirectConnectionRequest","features":[106]},{"name":"WiFiDirectConnectionRequestedEventArgs","features":[106]},{"name":"WiFiDirectConnectionStatus","features":[106]},{"name":"WiFiDirectDevice","features":[106]},{"name":"WiFiDirectDeviceSelectorType","features":[106]},{"name":"WiFiDirectError","features":[106]},{"name":"WiFiDirectInformationElement","features":[106]},{"name":"WiFiDirectLegacySettings","features":[106]},{"name":"WiFiDirectPairingProcedure","features":[106]}],"113":[{"name":"IWiFiDirectService","features":[107]},{"name":"IWiFiDirectServiceAdvertiser","features":[107]},{"name":"IWiFiDirectServiceAdvertiserFactory","features":[107]},{"name":"IWiFiDirectServiceAutoAcceptSessionConnectedEventArgs","features":[107]},{"name":"IWiFiDirectServiceProvisioningInfo","features":[107]},{"name":"IWiFiDirectServiceRemotePortAddedEventArgs","features":[107]},{"name":"IWiFiDirectServiceSession","features":[107]},{"name":"IWiFiDirectServiceSessionDeferredEventArgs","features":[107]},{"name":"IWiFiDirectServiceSessionRequest","features":[107]},{"name":"IWiFiDirectServiceSessionRequestedEventArgs","features":[107]},{"name":"IWiFiDirectServiceStatics","features":[107]},{"name":"WiFiDirectService","features":[107]},{"name":"WiFiDirectServiceAdvertisementStatus","features":[107]},{"name":"WiFiDirectServiceAdvertiser","features":[107]},{"name":"WiFiDirectServiceAutoAcceptSessionConnectedEventArgs","features":[107]},{"name":"WiFiDirectServiceConfigurationMethod","features":[107]},{"name":"WiFiDirectServiceError","features":[107]},{"name":"WiFiDirectServiceIPProtocol","features":[107]},{"name":"WiFiDirectServiceProvisioningInfo","features":[107]},{"name":"WiFiDirectServiceRemotePortAddedEventArgs","features":[107]},{"name":"WiFiDirectServiceSession","features":[107]},{"name":"WiFiDirectServiceSessionDeferredEventArgs","features":[107]},{"name":"WiFiDirectServiceSessionErrorStatus","features":[107]},{"name":"WiFiDirectServiceSessionRequest","features":[107]},{"name":"WiFiDirectServiceSessionRequestedEventArgs","features":[107]},{"name":"WiFiDirectServiceSessionStatus","features":[107]},{"name":"WiFiDirectServiceStatus","features":[107]}],"114":[{"name":"DeviceLockdownContract","features":[108]},{"name":"DeviceLockdownProfile","features":[108]},{"name":"DeviceLockdownProfileInformation","features":[108]},{"name":"IDeviceLockdownProfileInformation","features":[108]},{"name":"IDeviceLockdownProfileStatics","features":[108]}],"115":[{"name":"AsyncActionCompletedHandler","features":[76]},{"name":"AsyncActionProgressHandler","features":[76]},{"name":"AsyncActionWithProgressCompletedHandler","features":[76]},{"name":"AsyncOperationCompletedHandler","features":[76]},{"name":"AsyncOperationProgressHandler","features":[76]},{"name":"AsyncOperationWithProgressCompletedHandler","features":[76]},{"name":"AsyncStatus","features":[76]},{"name":"DateTime","features":[76]},{"name":"Deferral","features":[76]},{"name":"DeferralCompletedHandler","features":[76]},{"name":"EventHandler","features":[76]},{"name":"EventRegistrationToken","features":[76]},{"name":"FoundationContract","features":[76]},{"name":"GuidHelper","features":[76]},{"name":"HResult","features":[76]},{"name":"IAsyncAction","features":[76]},{"name":"IAsyncActionWithProgress","features":[76]},{"name":"IAsyncInfo","features":[76]},{"name":"IAsyncOperation","features":[76]},{"name":"IAsyncOperationWithProgress","features":[76]},{"name":"IClosable","features":[76]},{"name":"IDeferral","features":[76]},{"name":"IDeferralFactory","features":[76]},{"name":"IGetActivationFactory","features":[76]},{"name":"IGuidHelperStatics","features":[76]},{"name":"IMemoryBuffer","features":[76]},{"name":"IMemoryBufferFactory","features":[76]},{"name":"IMemoryBufferReference","features":[76]},{"name":"IPropertyValue","features":[76]},{"name":"IPropertyValueStatics","features":[76]},{"name":"IReference","features":[76]},{"name":"IReferenceArray","features":[76]},{"name":"IStringable","features":[76]},{"name":"IUriEscapeStatics","features":[76]},{"name":"IUriRuntimeClass","features":[76]},{"name":"IUriRuntimeClassFactory","features":[76]},{"name":"IUriRuntimeClassWithAbsoluteCanonicalUri","features":[76]},{"name":"IWwwFormUrlDecoderEntry","features":[76]},{"name":"IWwwFormUrlDecoderRuntimeClass","features":[76]},{"name":"IWwwFormUrlDecoderRuntimeClassFactory","features":[76]},{"name":"MemoryBuffer","features":[76]},{"name":"Point","features":[76]},{"name":"PropertyType","features":[76]},{"name":"PropertyValue","features":[76]},{"name":"Rect","features":[76]},{"name":"Size","features":[76]},{"name":"TimeSpan","features":[76]},{"name":"TypedEventHandler","features":[76]},{"name":"UniversalApiContract","features":[76]},{"name":"Uri","features":[76]},{"name":"WwwFormUrlDecoder","features":[76]},{"name":"WwwFormUrlDecoderEntry","features":[76]}],"116":[{"name":"CollectionChange","features":[36]},{"name":"IIterable","features":[36]},{"name":"IIterator","features":[36]},{"name":"IKeyValuePair","features":[36]},{"name":"IMap","features":[36]},{"name":"IMapChangedEventArgs","features":[36]},{"name":"IMapView","features":[36]},{"name":"IObservableMap","features":[36]},{"name":"IObservableVector","features":[36]},{"name":"IPropertySet","features":[36]},{"name":"IVector","features":[36]},{"name":"IVectorChangedEventArgs","features":[36]},{"name":"IVectorView","features":[36]},{"name":"MapChangedEventHandler","features":[36]},{"name":"PropertySet","features":[36]},{"name":"StringMap","features":[36]},{"name":"ValueSet","features":[36]},{"name":"VectorChangedEventHandler","features":[36]}],"117":[{"name":"AsyncCausalityTracer","features":[109]},{"name":"CausalityRelation","features":[109]},{"name":"CausalitySource","features":[109]},{"name":"CausalitySynchronousWork","features":[109]},{"name":"CausalityTraceLevel","features":[109]},{"name":"ErrorDetails","features":[109]},{"name":"ErrorOptions","features":[109]},{"name":"FileLoggingSession","features":[109]},{"name":"IAsyncCausalityTracerStatics","features":[109]},{"name":"IErrorDetails","features":[109]},{"name":"IErrorDetailsStatics","features":[109]},{"name":"IErrorReportingSettings","features":[109]},{"name":"IFileLoggingSession","features":[109]},{"name":"IFileLoggingSessionFactory","features":[109]},{"name":"ILogFileGeneratedEventArgs","features":[109]},{"name":"ILoggingActivity","features":[109]},{"name":"ILoggingActivity2","features":[109]},{"name":"ILoggingActivityFactory","features":[109]},{"name":"ILoggingChannel","features":[109]},{"name":"ILoggingChannel2","features":[109]},{"name":"ILoggingChannelFactory","features":[109]},{"name":"ILoggingChannelFactory2","features":[109]},{"name":"ILoggingChannelOptions","features":[109]},{"name":"ILoggingChannelOptionsFactory","features":[109]},{"name":"ILoggingFields","features":[109]},{"name":"ILoggingOptions","features":[109]},{"name":"ILoggingOptionsFactory","features":[109]},{"name":"ILoggingSession","features":[109]},{"name":"ILoggingSessionFactory","features":[109]},{"name":"ILoggingTarget","features":[109]},{"name":"ITracingStatusChangedEventArgs","features":[109]},{"name":"LogFileGeneratedEventArgs","features":[109]},{"name":"LoggingActivity","features":[109]},{"name":"LoggingChannel","features":[109]},{"name":"LoggingChannelOptions","features":[109]},{"name":"LoggingFieldFormat","features":[109]},{"name":"LoggingFields","features":[109]},{"name":"LoggingLevel","features":[109]},{"name":"LoggingOpcode","features":[109]},{"name":"LoggingOptions","features":[109]},{"name":"LoggingSession","features":[109]},{"name":"RuntimeBrokerErrorSettings","features":[109]},{"name":"TracingStatusChangedEventArgs","features":[109]}],"118":[{"name":"ActivatableAttribute","features":[110]},{"name":"AllowForWebAttribute","features":[110]},{"name":"AllowMultipleAttribute","features":[110]},{"name":"ApiContractAttribute","features":[110]},{"name":"ApiInformation","features":[110]},{"name":"AttributeNameAttribute","features":[110]},{"name":"AttributeTargets","features":[110]},{"name":"AttributeUsageAttribute","features":[110]},{"name":"ComposableAttribute","features":[110]},{"name":"CompositionType","features":[110]},{"name":"ContractVersionAttribute","features":[110]},{"name":"CreateFromStringAttribute","features":[110]},{"name":"DefaultAttribute","features":[110]},{"name":"DefaultOverloadAttribute","features":[110]},{"name":"DeprecatedAttribute","features":[110]},{"name":"DeprecationType","features":[110]},{"name":"DualApiPartitionAttribute","features":[110]},{"name":"ExclusiveToAttribute","features":[110]},{"name":"ExperimentalAttribute","features":[110]},{"name":"FastAbiAttribute","features":[110]},{"name":"FeatureAttribute","features":[110]},{"name":"FeatureStage","features":[110]},{"name":"GCPressureAmount","features":[110]},{"name":"GCPressureAttribute","features":[110]},{"name":"GuidAttribute","features":[110]},{"name":"HasVariantAttribute","features":[110]},{"name":"IApiInformationStatics","features":[110]},{"name":"InternalAttribute","features":[110]},{"name":"LengthIsAttribute","features":[110]},{"name":"MarshalingBehaviorAttribute","features":[110]},{"name":"MarshalingType","features":[110]},{"name":"MetadataMarshalAttribute","features":[110]},{"name":"MuseAttribute","features":[110]},{"name":"NoExceptionAttribute","features":[110]},{"name":"OverloadAttribute","features":[110]},{"name":"OverridableAttribute","features":[110]},{"name":"Platform","features":[110]},{"name":"PlatformAttribute","features":[110]},{"name":"PreviousContractVersionAttribute","features":[110]},{"name":"ProtectedAttribute","features":[110]},{"name":"RangeAttribute","features":[110]},{"name":"RemoteAsyncAttribute","features":[110]},{"name":"StaticAttribute","features":[110]},{"name":"ThreadingAttribute","features":[110]},{"name":"ThreadingModel","features":[110]},{"name":"VariantAttribute","features":[110]},{"name":"VersionAttribute","features":[110]},{"name":"WebHostHiddenAttribute","features":[110]}],"119":[{"name":"Matrix3x2","features":[68]},{"name":"Matrix4x4","features":[68]},{"name":"Plane","features":[68]},{"name":"Quaternion","features":[68]},{"name":"Rational","features":[68]},{"name":"Vector2","features":[68]},{"name":"Vector3","features":[68]},{"name":"Vector4","features":[68]}],"120":[{"name":"ArcadeStick","features":[111]},{"name":"ArcadeStickButtons","features":[111]},{"name":"ArcadeStickReading","features":[111]},{"name":"FlightStick","features":[111]},{"name":"FlightStickButtons","features":[111]},{"name":"FlightStickReading","features":[111]},{"name":"GameControllerButtonLabel","features":[111]},{"name":"GameControllerSwitchKind","features":[111]},{"name":"GameControllerSwitchPosition","features":[111]},{"name":"Gamepad","features":[111]},{"name":"GamepadButtons","features":[111]},{"name":"GamepadReading","features":[111]},{"name":"GamepadVibration","features":[111]},{"name":"GamingInputPreviewContract","features":[111]},{"name":"Headset","features":[111]},{"name":"IArcadeStick","features":[111]},{"name":"IArcadeStickStatics","features":[111]},{"name":"IArcadeStickStatics2","features":[111]},{"name":"IFlightStick","features":[111]},{"name":"IFlightStickStatics","features":[111]},{"name":"IGameController","features":[111]},{"name":"IGameControllerBatteryInfo","features":[111]},{"name":"IGamepad","features":[111]},{"name":"IGamepad2","features":[111]},{"name":"IGamepadStatics","features":[111]},{"name":"IGamepadStatics2","features":[111]},{"name":"IHeadset","features":[111]},{"name":"IRacingWheel","features":[111]},{"name":"IRacingWheelStatics","features":[111]},{"name":"IRacingWheelStatics2","features":[111]},{"name":"IRawGameController","features":[111]},{"name":"IRawGameController2","features":[111]},{"name":"IRawGameControllerStatics","features":[111]},{"name":"IUINavigationController","features":[111]},{"name":"IUINavigationControllerStatics","features":[111]},{"name":"IUINavigationControllerStatics2","features":[111]},{"name":"OptionalUINavigationButtons","features":[111]},{"name":"RacingWheel","features":[111]},{"name":"RacingWheelButtons","features":[111]},{"name":"RacingWheelReading","features":[111]},{"name":"RawGameController","features":[111]},{"name":"RequiredUINavigationButtons","features":[111]},{"name":"UINavigationController","features":[111]},{"name":"UINavigationReading","features":[111]}],"121":[{"name":"GameControllerFactoryManager","features":[112]},{"name":"GameControllerVersionInfo","features":[112]},{"name":"GipFirmwareUpdateProgress","features":[112]},{"name":"GipFirmwareUpdateResult","features":[112]},{"name":"GipFirmwareUpdateStatus","features":[112]},{"name":"GipGameControllerProvider","features":[112]},{"name":"GipMessageClass","features":[112]},{"name":"HidGameControllerProvider","features":[112]},{"name":"ICustomGameControllerFactory","features":[112]},{"name":"IGameControllerFactoryManagerStatics","features":[112]},{"name":"IGameControllerFactoryManagerStatics2","features":[112]},{"name":"IGameControllerInputSink","features":[112]},{"name":"IGameControllerProvider","features":[112]},{"name":"IGipFirmwareUpdateResult","features":[112]},{"name":"IGipGameControllerInputSink","features":[112]},{"name":"IGipGameControllerProvider","features":[112]},{"name":"IHidGameControllerInputSink","features":[112]},{"name":"IHidGameControllerProvider","features":[112]},{"name":"IXusbGameControllerInputSink","features":[112]},{"name":"IXusbGameControllerProvider","features":[112]},{"name":"XusbDeviceSubtype","features":[112]},{"name":"XusbDeviceType","features":[112]},{"name":"XusbGameControllerProvider","features":[112]}],"122":[{"name":"ConditionForceEffect","features":[113]},{"name":"ConditionForceEffectKind","features":[113]},{"name":"ConstantForceEffect","features":[113]},{"name":"ForceFeedbackEffectAxes","features":[113]},{"name":"ForceFeedbackEffectState","features":[113]},{"name":"ForceFeedbackLoadEffectResult","features":[113]},{"name":"ForceFeedbackMotor","features":[113]},{"name":"IConditionForceEffect","features":[113]},{"name":"IConditionForceEffectFactory","features":[113]},{"name":"IConstantForceEffect","features":[113]},{"name":"IForceFeedbackEffect","features":[113]},{"name":"IForceFeedbackMotor","features":[113]},{"name":"IPeriodicForceEffect","features":[113]},{"name":"IPeriodicForceEffectFactory","features":[113]},{"name":"IRampForceEffect","features":[113]},{"name":"PeriodicForceEffect","features":[113]},{"name":"PeriodicForceEffectKind","features":[113]},{"name":"RampForceEffect","features":[113]}],"123":[{"name":"GameControllerProviderInfo","features":[114]},{"name":"IGameControllerProviderInfoStatics","features":[114]}],"124":[{"name":"GamesEnumerationContract","features":[115]}],"125":[{"name":"GameList","features":[116]},{"name":"GameListCategory","features":[116]},{"name":"GameListChangedEventHandler","features":[116]},{"name":"GameListEntry","features":[116]},{"name":"GameListEntryLaunchableState","features":[116]},{"name":"GameListRemovedEventHandler","features":[116]},{"name":"GameModeConfiguration","features":[116]},{"name":"GameModeUserConfiguration","features":[116]},{"name":"IGameListEntry","features":[116]},{"name":"IGameListEntry2","features":[116]},{"name":"IGameListStatics","features":[116]},{"name":"IGameListStatics2","features":[116]},{"name":"IGameModeConfiguration","features":[116]},{"name":"IGameModeUserConfiguration","features":[116]},{"name":"IGameModeUserConfigurationStatics","features":[116]}],"126":[{"name":"GameBar","features":[117]},{"name":"GameChatMessageOrigin","features":[117]},{"name":"GameChatMessageReceivedEventArgs","features":[117]},{"name":"GameChatOverlay","features":[117]},{"name":"GameChatOverlayContract","features":[117]},{"name":"GameChatOverlayMessageSource","features":[117]},{"name":"GameChatOverlayPosition","features":[117]},{"name":"GameUIProviderActivatedEventArgs","features":[117]},{"name":"GamingUIProviderContract","features":[117]},{"name":"IGameBarStatics","features":[117]},{"name":"IGameChatMessageReceivedEventArgs","features":[117]},{"name":"IGameChatOverlay","features":[117]},{"name":"IGameChatOverlayMessageSource","features":[117]},{"name":"IGameChatOverlayStatics","features":[117]},{"name":"IGameUIProviderActivatedEventArgs","features":[117]}],"127":[{"name":"StorageApiContract","features":[118]}],"128":[{"name":"GameSaveBlobGetResult","features":[119]},{"name":"GameSaveBlobInfo","features":[119]},{"name":"GameSaveBlobInfoGetResult","features":[119]},{"name":"GameSaveBlobInfoQuery","features":[119]},{"name":"GameSaveContainer","features":[119]},{"name":"GameSaveContainerInfo","features":[119]},{"name":"GameSaveContainerInfoGetResult","features":[119]},{"name":"GameSaveContainerInfoQuery","features":[119]},{"name":"GameSaveErrorStatus","features":[119]},{"name":"GameSaveOperationResult","features":[119]},{"name":"GameSaveProvider","features":[119]},{"name":"GameSaveProviderGetResult","features":[119]},{"name":"IGameSaveBlobGetResult","features":[119]},{"name":"IGameSaveBlobInfo","features":[119]},{"name":"IGameSaveBlobInfoGetResult","features":[119]},{"name":"IGameSaveBlobInfoQuery","features":[119]},{"name":"IGameSaveContainer","features":[119]},{"name":"IGameSaveContainerInfo","features":[119]},{"name":"IGameSaveContainerInfoGetResult","features":[119]},{"name":"IGameSaveContainerInfoQuery","features":[119]},{"name":"IGameSaveOperationResult","features":[119]},{"name":"IGameSaveProvider","features":[119]},{"name":"IGameSaveProviderGetResult","features":[119]},{"name":"IGameSaveProviderStatics","features":[119]}],"129":[{"name":"ApplicationLanguages","features":[120]},{"name":"Calendar","features":[120]},{"name":"CalendarIdentifiers","features":[120]},{"name":"ClockIdentifiers","features":[120]},{"name":"CurrencyAmount","features":[120]},{"name":"CurrencyIdentifiers","features":[120]},{"name":"DayOfWeek","features":[120]},{"name":"GeographicRegion","features":[120]},{"name":"GlobalizationJapanesePhoneticAnalyzerContract","features":[120]},{"name":"IApplicationLanguagesStatics","features":[120]},{"name":"IApplicationLanguagesStatics2","features":[120]},{"name":"ICalendar","features":[120]},{"name":"ICalendarFactory","features":[120]},{"name":"ICalendarFactory2","features":[120]},{"name":"ICalendarIdentifiersStatics","features":[120]},{"name":"ICalendarIdentifiersStatics2","features":[120]},{"name":"ICalendarIdentifiersStatics3","features":[120]},{"name":"IClockIdentifiersStatics","features":[120]},{"name":"ICurrencyAmount","features":[120]},{"name":"ICurrencyAmountFactory","features":[120]},{"name":"ICurrencyIdentifiersStatics","features":[120]},{"name":"ICurrencyIdentifiersStatics2","features":[120]},{"name":"ICurrencyIdentifiersStatics3","features":[120]},{"name":"IGeographicRegion","features":[120]},{"name":"IGeographicRegionFactory","features":[120]},{"name":"IGeographicRegionStatics","features":[120]},{"name":"IJapanesePhoneme","features":[120]},{"name":"IJapanesePhoneticAnalyzerStatics","features":[120]},{"name":"ILanguage","features":[120]},{"name":"ILanguage2","features":[120]},{"name":"ILanguage3","features":[120]},{"name":"ILanguageExtensionSubtags","features":[120]},{"name":"ILanguageFactory","features":[120]},{"name":"ILanguageStatics","features":[120]},{"name":"ILanguageStatics2","features":[120]},{"name":"ILanguageStatics3","features":[120]},{"name":"INumeralSystemIdentifiersStatics","features":[120]},{"name":"INumeralSystemIdentifiersStatics2","features":[120]},{"name":"ITimeZoneOnCalendar","features":[120]},{"name":"JapanesePhoneme","features":[120]},{"name":"JapanesePhoneticAnalyzer","features":[120]},{"name":"Language","features":[120]},{"name":"LanguageLayoutDirection","features":[120]},{"name":"NumeralSystemIdentifiers","features":[120]}],"130":[{"name":"CharacterGrouping","features":[121]},{"name":"CharacterGroupings","features":[121]},{"name":"ICharacterGrouping","features":[121]},{"name":"ICharacterGroupings","features":[121]},{"name":"ICharacterGroupingsFactory","features":[121]}],"131":[{"name":"DateTimeFormatter","features":[122]},{"name":"DayFormat","features":[122]},{"name":"DayOfWeekFormat","features":[122]},{"name":"HourFormat","features":[122]},{"name":"IDateTimeFormatter","features":[122]},{"name":"IDateTimeFormatter2","features":[122]},{"name":"IDateTimeFormatterFactory","features":[122]},{"name":"IDateTimeFormatterStatics","features":[122]},{"name":"MinuteFormat","features":[122]},{"name":"MonthFormat","features":[122]},{"name":"SecondFormat","features":[122]},{"name":"YearFormat","features":[122]}],"132":[{"name":"ILanguageFont","features":[123]},{"name":"ILanguageFontGroup","features":[123]},{"name":"ILanguageFontGroupFactory","features":[123]},{"name":"LanguageFont","features":[123]},{"name":"LanguageFontGroup","features":[123]}],"133":[{"name":"CurrencyFormatter","features":[124]},{"name":"CurrencyFormatterMode","features":[124]},{"name":"DecimalFormatter","features":[124]},{"name":"ICurrencyFormatter","features":[124]},{"name":"ICurrencyFormatter2","features":[124]},{"name":"ICurrencyFormatterFactory","features":[124]},{"name":"IDecimalFormatterFactory","features":[124]},{"name":"IIncrementNumberRounder","features":[124]},{"name":"INumberFormatter","features":[124]},{"name":"INumberFormatter2","features":[124]},{"name":"INumberFormatterOptions","features":[124]},{"name":"INumberParser","features":[124]},{"name":"INumberRounder","features":[124]},{"name":"INumberRounderOption","features":[124]},{"name":"INumeralSystemTranslator","features":[124]},{"name":"INumeralSystemTranslatorFactory","features":[124]},{"name":"IPercentFormatterFactory","features":[124]},{"name":"IPermilleFormatterFactory","features":[124]},{"name":"ISignedZeroOption","features":[124]},{"name":"ISignificantDigitsNumberRounder","features":[124]},{"name":"ISignificantDigitsOption","features":[124]},{"name":"IncrementNumberRounder","features":[124]},{"name":"NumeralSystemTranslator","features":[124]},{"name":"PercentFormatter","features":[124]},{"name":"PermilleFormatter","features":[124]},{"name":"RoundingAlgorithm","features":[124]},{"name":"SignificantDigitsNumberRounder","features":[124]}],"134":[{"name":"IPhoneNumberFormatter","features":[125]},{"name":"IPhoneNumberFormatterStatics","features":[125]},{"name":"IPhoneNumberInfo","features":[125]},{"name":"IPhoneNumberInfoFactory","features":[125]},{"name":"IPhoneNumberInfoStatics","features":[125]},{"name":"PhoneNumberFormat","features":[125]},{"name":"PhoneNumberFormatter","features":[125]},{"name":"PhoneNumberInfo","features":[125]},{"name":"PhoneNumberMatchResult","features":[125]},{"name":"PhoneNumberParseResult","features":[125]},{"name":"PredictedPhoneNumberKind","features":[125]}],"135":[{"name":"DisplayAdapterId","features":[126]},{"name":"DisplayId","features":[126]},{"name":"IGeometrySource2D","features":[126]},{"name":"PointInt32","features":[126]},{"name":"RectInt32","features":[126]},{"name":"SizeInt32","features":[126]}],"136":[{"name":"Direct3D11CaptureFrame","features":[127]},{"name":"Direct3D11CaptureFramePool","features":[127]},{"name":"GraphicsCaptureAccess","features":[127]},{"name":"GraphicsCaptureAccessKind","features":[127]},{"name":"GraphicsCaptureItem","features":[127]},{"name":"GraphicsCapturePicker","features":[127]},{"name":"GraphicsCaptureSession","features":[127]},{"name":"IDirect3D11CaptureFrame","features":[127]},{"name":"IDirect3D11CaptureFramePool","features":[127]},{"name":"IDirect3D11CaptureFramePoolStatics","features":[127]},{"name":"IDirect3D11CaptureFramePoolStatics2","features":[127]},{"name":"IGraphicsCaptureAccessStatics","features":[127]},{"name":"IGraphicsCaptureItem","features":[127]},{"name":"IGraphicsCaptureItemStatics","features":[127]},{"name":"IGraphicsCaptureItemStatics2","features":[127]},{"name":"IGraphicsCapturePicker","features":[127]},{"name":"IGraphicsCaptureSession","features":[127]},{"name":"IGraphicsCaptureSession2","features":[127]},{"name":"IGraphicsCaptureSession3","features":[127]},{"name":"IGraphicsCaptureSessionStatics","features":[127]}],"137":[{"name":"DirectXAlphaMode","features":[128]},{"name":"DirectXColorSpace","features":[128]},{"name":"DirectXPixelFormat","features":[128]},{"name":"DirectXPrimitiveTopology","features":[128]}],"138":[{"name":"Direct3DBindings","features":[129]},{"name":"Direct3DMultisampleDescription","features":[129]},{"name":"Direct3DSurfaceDescription","features":[129]},{"name":"Direct3DUsage","features":[129]},{"name":"IDirect3DDevice","features":[129]},{"name":"IDirect3DSurface","features":[129]}],"139":[{"name":"AdvancedColorInfo","features":[130]},{"name":"AdvancedColorKind","features":[130]},{"name":"BrightnessOverride","features":[130]},{"name":"BrightnessOverrideSettings","features":[130]},{"name":"ColorOverrideSettings","features":[130]},{"name":"DisplayBrightnessOverrideOptions","features":[130]},{"name":"DisplayBrightnessOverrideScenario","features":[130]},{"name":"DisplayBrightnessScenario","features":[130]},{"name":"DisplayColorOverrideScenario","features":[130]},{"name":"DisplayEnhancementOverride","features":[130]},{"name":"DisplayEnhancementOverrideCapabilities","features":[130]},{"name":"DisplayEnhancementOverrideCapabilitiesChangedEventArgs","features":[130]},{"name":"DisplayInformation","features":[130]},{"name":"DisplayOrientations","features":[130]},{"name":"DisplayProperties","features":[130]},{"name":"DisplayPropertiesEventHandler","features":[130]},{"name":"DisplayServices","features":[130]},{"name":"HdrMetadataFormat","features":[130]},{"name":"IAdvancedColorInfo","features":[130]},{"name":"IBrightnessOverride","features":[130]},{"name":"IBrightnessOverrideSettings","features":[130]},{"name":"IBrightnessOverrideSettingsStatics","features":[130]},{"name":"IBrightnessOverrideStatics","features":[130]},{"name":"IColorOverrideSettings","features":[130]},{"name":"IColorOverrideSettingsStatics","features":[130]},{"name":"IDisplayEnhancementOverride","features":[130]},{"name":"IDisplayEnhancementOverrideCapabilities","features":[130]},{"name":"IDisplayEnhancementOverrideCapabilitiesChangedEventArgs","features":[130]},{"name":"IDisplayEnhancementOverrideStatics","features":[130]},{"name":"IDisplayInformation","features":[130]},{"name":"IDisplayInformation2","features":[130]},{"name":"IDisplayInformation3","features":[130]},{"name":"IDisplayInformation4","features":[130]},{"name":"IDisplayInformation5","features":[130]},{"name":"IDisplayInformationStatics","features":[130]},{"name":"IDisplayPropertiesStatics","features":[130]},{"name":"IDisplayServices","features":[130]},{"name":"IDisplayServicesStatics","features":[130]},{"name":"NitRange","features":[130]},{"name":"ResolutionScale","features":[130]}],"140":[{"name":"HdmiDisplayColorSpace","features":[131]},{"name":"HdmiDisplayHdr2086Metadata","features":[131]},{"name":"HdmiDisplayHdrOption","features":[131]},{"name":"HdmiDisplayInformation","features":[131]},{"name":"HdmiDisplayMode","features":[131]},{"name":"HdmiDisplayPixelEncoding","features":[131]},{"name":"IHdmiDisplayInformation","features":[131]},{"name":"IHdmiDisplayInformationStatics","features":[131]},{"name":"IHdmiDisplayMode","features":[131]},{"name":"IHdmiDisplayMode2","features":[131]}],"141":[{"name":"IGraphicsEffect","features":[132]},{"name":"IGraphicsEffectSource","features":[132]}],"142":[{"name":"HolographicAdapterId","features":[133]},{"name":"HolographicCamera","features":[133]},{"name":"HolographicCameraPose","features":[133]},{"name":"HolographicCameraRenderingParameters","features":[133]},{"name":"HolographicCameraViewportParameters","features":[133]},{"name":"HolographicDepthReprojectionMethod","features":[133]},{"name":"HolographicDisplay","features":[133]},{"name":"HolographicFrame","features":[133]},{"name":"HolographicFrameId","features":[133]},{"name":"HolographicFramePrediction","features":[133]},{"name":"HolographicFramePresentResult","features":[133]},{"name":"HolographicFramePresentWaitBehavior","features":[133]},{"name":"HolographicFramePresentationMonitor","features":[133]},{"name":"HolographicFramePresentationReport","features":[133]},{"name":"HolographicFrameRenderingReport","features":[133]},{"name":"HolographicFrameScanoutMonitor","features":[133]},{"name":"HolographicFrameScanoutReport","features":[133]},{"name":"HolographicQuadLayer","features":[133]},{"name":"HolographicQuadLayerUpdateParameters","features":[133]},{"name":"HolographicReprojectionMode","features":[133]},{"name":"HolographicSpace","features":[133]},{"name":"HolographicSpaceCameraAddedEventArgs","features":[133]},{"name":"HolographicSpaceCameraRemovedEventArgs","features":[133]},{"name":"HolographicSpaceUserPresence","features":[133]},{"name":"HolographicStereoTransform","features":[68,133]},{"name":"HolographicViewConfiguration","features":[133]},{"name":"HolographicViewConfigurationKind","features":[133]},{"name":"IHolographicCamera","features":[133]},{"name":"IHolographicCamera2","features":[133]},{"name":"IHolographicCamera3","features":[133]},{"name":"IHolographicCamera4","features":[133]},{"name":"IHolographicCamera5","features":[133]},{"name":"IHolographicCamera6","features":[133]},{"name":"IHolographicCameraPose","features":[133]},{"name":"IHolographicCameraPose2","features":[133]},{"name":"IHolographicCameraRenderingParameters","features":[133]},{"name":"IHolographicCameraRenderingParameters2","features":[133]},{"name":"IHolographicCameraRenderingParameters3","features":[133]},{"name":"IHolographicCameraRenderingParameters4","features":[133]},{"name":"IHolographicCameraViewportParameters","features":[133]},{"name":"IHolographicDisplay","features":[133]},{"name":"IHolographicDisplay2","features":[133]},{"name":"IHolographicDisplay3","features":[133]},{"name":"IHolographicDisplayStatics","features":[133]},{"name":"IHolographicFrame","features":[133]},{"name":"IHolographicFrame2","features":[133]},{"name":"IHolographicFrame3","features":[133]},{"name":"IHolographicFramePrediction","features":[133]},{"name":"IHolographicFramePresentationMonitor","features":[133]},{"name":"IHolographicFramePresentationReport","features":[133]},{"name":"IHolographicFrameRenderingReport","features":[133]},{"name":"IHolographicFrameScanoutMonitor","features":[133]},{"name":"IHolographicFrameScanoutReport","features":[133]},{"name":"IHolographicQuadLayer","features":[133]},{"name":"IHolographicQuadLayerFactory","features":[133]},{"name":"IHolographicQuadLayerUpdateParameters","features":[133]},{"name":"IHolographicQuadLayerUpdateParameters2","features":[133]},{"name":"IHolographicSpace","features":[133]},{"name":"IHolographicSpace2","features":[133]},{"name":"IHolographicSpace3","features":[133]},{"name":"IHolographicSpaceCameraAddedEventArgs","features":[133]},{"name":"IHolographicSpaceCameraRemovedEventArgs","features":[133]},{"name":"IHolographicSpaceStatics","features":[133]},{"name":"IHolographicSpaceStatics2","features":[133]},{"name":"IHolographicSpaceStatics3","features":[133]},{"name":"IHolographicViewConfiguration","features":[133]},{"name":"IHolographicViewConfiguration2","features":[133]}],"143":[{"name":"BitmapAlphaMode","features":[134]},{"name":"BitmapBounds","features":[134]},{"name":"BitmapBuffer","features":[134]},{"name":"BitmapBufferAccessMode","features":[134]},{"name":"BitmapCodecInformation","features":[134]},{"name":"BitmapDecoder","features":[134]},{"name":"BitmapEncoder","features":[134]},{"name":"BitmapFlip","features":[134]},{"name":"BitmapFrame","features":[134]},{"name":"BitmapInterpolationMode","features":[134]},{"name":"BitmapPixelFormat","features":[134]},{"name":"BitmapPlaneDescription","features":[134]},{"name":"BitmapProperties","features":[134]},{"name":"BitmapPropertiesView","features":[134]},{"name":"BitmapPropertySet","features":[36,134]},{"name":"BitmapRotation","features":[134]},{"name":"BitmapSize","features":[134]},{"name":"BitmapTransform","features":[134]},{"name":"BitmapTypedValue","features":[134]},{"name":"ColorManagementMode","features":[134]},{"name":"ExifOrientationMode","features":[134]},{"name":"IBitmapBuffer","features":[134]},{"name":"IBitmapCodecInformation","features":[134]},{"name":"IBitmapDecoder","features":[134]},{"name":"IBitmapDecoderStatics","features":[134]},{"name":"IBitmapDecoderStatics2","features":[134]},{"name":"IBitmapEncoder","features":[134]},{"name":"IBitmapEncoderStatics","features":[134]},{"name":"IBitmapEncoderStatics2","features":[134]},{"name":"IBitmapEncoderWithSoftwareBitmap","features":[134]},{"name":"IBitmapFrame","features":[134]},{"name":"IBitmapFrameWithSoftwareBitmap","features":[134]},{"name":"IBitmapProperties","features":[134]},{"name":"IBitmapPropertiesView","features":[134]},{"name":"IBitmapTransform","features":[134]},{"name":"IBitmapTypedValue","features":[134]},{"name":"IBitmapTypedValueFactory","features":[134]},{"name":"IPixelDataProvider","features":[134]},{"name":"ISoftwareBitmap","features":[134]},{"name":"ISoftwareBitmapFactory","features":[134]},{"name":"ISoftwareBitmapStatics","features":[134]},{"name":"ImageStream","features":[134,70]},{"name":"JpegSubsamplingMode","features":[134]},{"name":"PixelDataProvider","features":[134]},{"name":"PngFilterMode","features":[134]},{"name":"SoftwareBitmap","features":[134]},{"name":"TiffCompressionMode","features":[134]}],"144":[{"name":"IPrintDocumentSource","features":[135]},{"name":"IPrintManager","features":[135]},{"name":"IPrintManagerStatic","features":[135]},{"name":"IPrintManagerStatic2","features":[135]},{"name":"IPrintPageInfo","features":[135]},{"name":"IPrintPageRange","features":[135]},{"name":"IPrintPageRangeFactory","features":[135]},{"name":"IPrintPageRangeOptions","features":[135]},{"name":"IPrintTask","features":[135]},{"name":"IPrintTask2","features":[135]},{"name":"IPrintTaskCompletedEventArgs","features":[135]},{"name":"IPrintTaskOptions","features":[135]},{"name":"IPrintTaskOptions2","features":[135]},{"name":"IPrintTaskOptionsCore","features":[135]},{"name":"IPrintTaskOptionsCoreProperties","features":[135]},{"name":"IPrintTaskOptionsCoreUIConfiguration","features":[135]},{"name":"IPrintTaskProgressingEventArgs","features":[135]},{"name":"IPrintTaskRequest","features":[135]},{"name":"IPrintTaskRequestedDeferral","features":[135]},{"name":"IPrintTaskRequestedEventArgs","features":[135]},{"name":"IPrintTaskSourceRequestedArgs","features":[135]},{"name":"IPrintTaskSourceRequestedDeferral","features":[135]},{"name":"IPrintTaskTargetDeviceSupport","features":[135]},{"name":"IStandardPrintTaskOptionsStatic","features":[135]},{"name":"IStandardPrintTaskOptionsStatic2","features":[135]},{"name":"IStandardPrintTaskOptionsStatic3","features":[135]},{"name":"PrintBinding","features":[135]},{"name":"PrintBordering","features":[135]},{"name":"PrintCollation","features":[135]},{"name":"PrintColorMode","features":[135]},{"name":"PrintDuplex","features":[135]},{"name":"PrintHolePunch","features":[135]},{"name":"PrintManager","features":[135]},{"name":"PrintMediaSize","features":[135]},{"name":"PrintMediaType","features":[135]},{"name":"PrintOrientation","features":[135]},{"name":"PrintPageDescription","features":[76,135]},{"name":"PrintPageInfo","features":[135]},{"name":"PrintPageRange","features":[135]},{"name":"PrintPageRangeOptions","features":[135]},{"name":"PrintQuality","features":[135]},{"name":"PrintStaple","features":[135]},{"name":"PrintTask","features":[135]},{"name":"PrintTaskCompletedEventArgs","features":[135]},{"name":"PrintTaskCompletion","features":[135]},{"name":"PrintTaskOptions","features":[135]},{"name":"PrintTaskProgressingEventArgs","features":[135]},{"name":"PrintTaskRequest","features":[135]},{"name":"PrintTaskRequestedDeferral","features":[135]},{"name":"PrintTaskRequestedEventArgs","features":[135]},{"name":"PrintTaskSourceRequestedArgs","features":[135]},{"name":"PrintTaskSourceRequestedDeferral","features":[135]},{"name":"PrintTaskSourceRequestedHandler","features":[135]},{"name":"StandardPrintTaskOptions","features":[135]}],"145":[{"name":"IPrintBindingOptionDetails","features":[136]},{"name":"IPrintBorderingOptionDetails","features":[136]},{"name":"IPrintCollationOptionDetails","features":[136]},{"name":"IPrintColorModeOptionDetails","features":[136]},{"name":"IPrintCopiesOptionDetails","features":[136]},{"name":"IPrintCustomItemDetails","features":[136]},{"name":"IPrintCustomItemListOptionDetails","features":[136]},{"name":"IPrintCustomItemListOptionDetails2","features":[136]},{"name":"IPrintCustomItemListOptionDetails3","features":[136]},{"name":"IPrintCustomOptionDetails","features":[136]},{"name":"IPrintCustomTextOptionDetails","features":[136]},{"name":"IPrintCustomTextOptionDetails2","features":[136]},{"name":"IPrintCustomToggleOptionDetails","features":[136]},{"name":"IPrintDuplexOptionDetails","features":[136]},{"name":"IPrintHolePunchOptionDetails","features":[136]},{"name":"IPrintItemListOptionDetails","features":[136]},{"name":"IPrintMediaSizeOptionDetails","features":[136]},{"name":"IPrintMediaTypeOptionDetails","features":[136]},{"name":"IPrintNumberOptionDetails","features":[136]},{"name":"IPrintOptionDetails","features":[136]},{"name":"IPrintOrientationOptionDetails","features":[136]},{"name":"IPrintPageRangeOptionDetails","features":[136]},{"name":"IPrintQualityOptionDetails","features":[136]},{"name":"IPrintStapleOptionDetails","features":[136]},{"name":"IPrintTaskOptionChangedEventArgs","features":[136]},{"name":"IPrintTaskOptionDetails","features":[136]},{"name":"IPrintTaskOptionDetails2","features":[136]},{"name":"IPrintTaskOptionDetailsStatic","features":[136]},{"name":"IPrintTextOptionDetails","features":[136]},{"name":"PrintBindingOptionDetails","features":[136]},{"name":"PrintBorderingOptionDetails","features":[136]},{"name":"PrintCollationOptionDetails","features":[136]},{"name":"PrintColorModeOptionDetails","features":[136]},{"name":"PrintCopiesOptionDetails","features":[136]},{"name":"PrintCustomItemDetails","features":[136]},{"name":"PrintCustomItemListOptionDetails","features":[136]},{"name":"PrintCustomTextOptionDetails","features":[136]},{"name":"PrintCustomToggleOptionDetails","features":[136]},{"name":"PrintDuplexOptionDetails","features":[136]},{"name":"PrintHolePunchOptionDetails","features":[136]},{"name":"PrintMediaSizeOptionDetails","features":[136]},{"name":"PrintMediaTypeOptionDetails","features":[136]},{"name":"PrintOptionStates","features":[136]},{"name":"PrintOptionType","features":[136]},{"name":"PrintOrientationOptionDetails","features":[136]},{"name":"PrintPageRangeOptionDetails","features":[136]},{"name":"PrintQualityOptionDetails","features":[136]},{"name":"PrintStapleOptionDetails","features":[136]},{"name":"PrintTaskOptionChangedEventArgs","features":[136]},{"name":"PrintTaskOptionDetails","features":[136]}],"146":[{"name":"IPrintSupportExtensionSession","features":[137]},{"name":"IPrintSupportExtensionSession2","features":[137]},{"name":"IPrintSupportExtensionTriggerDetails","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesChangedEventArgs","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesChangedEventArgs2","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesUpdatePolicy","features":[137]},{"name":"IPrintSupportPrintDeviceCapabilitiesUpdatePolicyStatics","features":[137]},{"name":"IPrintSupportPrintTicketElement","features":[137]},{"name":"IPrintSupportPrintTicketValidationRequestedEventArgs","features":[137]},{"name":"IPrintSupportPrinterSelectedEventArgs","features":[137]},{"name":"IPrintSupportSessionInfo","features":[137]},{"name":"IPrintSupportSettingsActivatedEventArgs","features":[137]},{"name":"IPrintSupportSettingsUISession","features":[137]},{"name":"PrintSupportExtensionSession","features":[137]},{"name":"PrintSupportExtensionTriggerDetails","features":[137]},{"name":"PrintSupportPrintDeviceCapabilitiesChangedEventArgs","features":[137]},{"name":"PrintSupportPrintDeviceCapabilitiesUpdatePolicy","features":[137]},{"name":"PrintSupportPrintTicketElement","features":[137]},{"name":"PrintSupportPrintTicketValidationRequestedEventArgs","features":[137]},{"name":"PrintSupportPrinterSelectedEventArgs","features":[137]},{"name":"PrintSupportSessionInfo","features":[137]},{"name":"PrintSupportSettingsActivatedEventArgs","features":[137]},{"name":"PrintSupportSettingsUISession","features":[137]},{"name":"SettingsLaunchKind","features":[137]},{"name":"WorkflowPrintTicketValidationStatus","features":[137]}],"147":[{"name":"IPrintTicketCapabilities","features":[138]},{"name":"IPrintTicketFeature","features":[138]},{"name":"IPrintTicketOption","features":[138]},{"name":"IPrintTicketParameterDefinition","features":[138]},{"name":"IPrintTicketParameterInitializer","features":[138]},{"name":"IPrintTicketValue","features":[138]},{"name":"IWorkflowPrintTicket","features":[138]},{"name":"IWorkflowPrintTicketValidationResult","features":[138]},{"name":"PrintTicketCapabilities","features":[138]},{"name":"PrintTicketFeature","features":[138]},{"name":"PrintTicketFeatureSelectionType","features":[138]},{"name":"PrintTicketOption","features":[138]},{"name":"PrintTicketParameterDataType","features":[138]},{"name":"PrintTicketParameterDefinition","features":[138]},{"name":"PrintTicketParameterInitializer","features":[138]},{"name":"PrintTicketValue","features":[138]},{"name":"PrintTicketValueType","features":[138]},{"name":"WorkflowPrintTicket","features":[138]},{"name":"WorkflowPrintTicketValidationResult","features":[138]}],"148":[{"name":"IPrintWorkflowBackgroundSession","features":[139]},{"name":"IPrintWorkflowBackgroundSetupRequestedEventArgs","features":[139]},{"name":"IPrintWorkflowConfiguration","features":[139]},{"name":"IPrintWorkflowConfiguration2","features":[139]},{"name":"IPrintWorkflowForegroundSession","features":[139]},{"name":"IPrintWorkflowForegroundSetupRequestedEventArgs","features":[139]},{"name":"IPrintWorkflowJobActivatedEventArgs","features":[139]},{"name":"IPrintWorkflowJobBackgroundSession","features":[139]},{"name":"IPrintWorkflowJobNotificationEventArgs","features":[139]},{"name":"IPrintWorkflowJobStartingEventArgs","features":[139]},{"name":"IPrintWorkflowJobTriggerDetails","features":[139]},{"name":"IPrintWorkflowJobUISession","features":[139]},{"name":"IPrintWorkflowObjectModelSourceFileContent","features":[139]},{"name":"IPrintWorkflowObjectModelSourceFileContentFactory","features":[139]},{"name":"IPrintWorkflowObjectModelTargetPackage","features":[139]},{"name":"IPrintWorkflowPdlConverter","features":[139]},{"name":"IPrintWorkflowPdlConverter2","features":[139]},{"name":"IPrintWorkflowPdlDataAvailableEventArgs","features":[139]},{"name":"IPrintWorkflowPdlModificationRequestedEventArgs","features":[139]},{"name":"IPrintWorkflowPdlModificationRequestedEventArgs2","features":[139]},{"name":"IPrintWorkflowPdlSourceContent","features":[139]},{"name":"IPrintWorkflowPdlTargetStream","features":[139]},{"name":"IPrintWorkflowPrinterJob","features":[139]},{"name":"IPrintWorkflowSourceContent","features":[139]},{"name":"IPrintWorkflowSpoolStreamContent","features":[139]},{"name":"IPrintWorkflowStreamTarget","features":[139]},{"name":"IPrintWorkflowSubmittedEventArgs","features":[139]},{"name":"IPrintWorkflowSubmittedOperation","features":[139]},{"name":"IPrintWorkflowTarget","features":[139]},{"name":"IPrintWorkflowTriggerDetails","features":[139]},{"name":"IPrintWorkflowUIActivatedEventArgs","features":[139]},{"name":"IPrintWorkflowUILauncher","features":[139]},{"name":"IPrintWorkflowXpsDataAvailableEventArgs","features":[139]},{"name":"PdlConversionHostBasedProcessingOperations","features":[139]},{"name":"PrintWorkflowAttributesMergePolicy","features":[139]},{"name":"PrintWorkflowBackgroundSession","features":[139]},{"name":"PrintWorkflowBackgroundSetupRequestedEventArgs","features":[139]},{"name":"PrintWorkflowConfiguration","features":[139]},{"name":"PrintWorkflowForegroundSession","features":[139]},{"name":"PrintWorkflowForegroundSetupRequestedEventArgs","features":[139]},{"name":"PrintWorkflowJobAbortReason","features":[139]},{"name":"PrintWorkflowJobActivatedEventArgs","features":[139]},{"name":"PrintWorkflowJobBackgroundSession","features":[139]},{"name":"PrintWorkflowJobNotificationEventArgs","features":[139]},{"name":"PrintWorkflowJobStartingEventArgs","features":[139]},{"name":"PrintWorkflowJobTriggerDetails","features":[139]},{"name":"PrintWorkflowJobUISession","features":[139]},{"name":"PrintWorkflowObjectModelSourceFileContent","features":[139]},{"name":"PrintWorkflowObjectModelTargetPackage","features":[139]},{"name":"PrintWorkflowPdlConversionType","features":[139]},{"name":"PrintWorkflowPdlConverter","features":[139]},{"name":"PrintWorkflowPdlDataAvailableEventArgs","features":[139]},{"name":"PrintWorkflowPdlModificationRequestedEventArgs","features":[139]},{"name":"PrintWorkflowPdlSourceContent","features":[139]},{"name":"PrintWorkflowPdlTargetStream","features":[139]},{"name":"PrintWorkflowPrinterJob","features":[139]},{"name":"PrintWorkflowPrinterJobStatus","features":[139]},{"name":"PrintWorkflowSessionStatus","features":[139]},{"name":"PrintWorkflowSourceContent","features":[139]},{"name":"PrintWorkflowSpoolStreamContent","features":[139]},{"name":"PrintWorkflowStreamTarget","features":[139]},{"name":"PrintWorkflowSubmittedEventArgs","features":[139]},{"name":"PrintWorkflowSubmittedOperation","features":[139]},{"name":"PrintWorkflowSubmittedStatus","features":[139]},{"name":"PrintWorkflowTarget","features":[139]},{"name":"PrintWorkflowTriggerDetails","features":[139]},{"name":"PrintWorkflowUIActivatedEventArgs","features":[139]},{"name":"PrintWorkflowUICompletionStatus","features":[139]},{"name":"PrintWorkflowUILauncher","features":[139]},{"name":"PrintWorkflowXpsDataAvailableEventArgs","features":[139]}],"149":[{"name":"IPrint3DManager","features":[140]},{"name":"IPrint3DManagerStatics","features":[140]},{"name":"IPrint3DTask","features":[140]},{"name":"IPrint3DTaskCompletedEventArgs","features":[140]},{"name":"IPrint3DTaskRequest","features":[140]},{"name":"IPrint3DTaskRequestedEventArgs","features":[140]},{"name":"IPrint3DTaskSourceChangedEventArgs","features":[140]},{"name":"IPrint3DTaskSourceRequestedArgs","features":[140]},{"name":"IPrinting3D3MFPackage","features":[140]},{"name":"IPrinting3D3MFPackage2","features":[140]},{"name":"IPrinting3D3MFPackageStatics","features":[140]},{"name":"IPrinting3DBaseMaterial","features":[140]},{"name":"IPrinting3DBaseMaterialGroup","features":[140]},{"name":"IPrinting3DBaseMaterialGroupFactory","features":[140]},{"name":"IPrinting3DBaseMaterialStatics","features":[140]},{"name":"IPrinting3DColorMaterial","features":[140]},{"name":"IPrinting3DColorMaterial2","features":[140]},{"name":"IPrinting3DColorMaterialGroup","features":[140]},{"name":"IPrinting3DColorMaterialGroupFactory","features":[140]},{"name":"IPrinting3DComponent","features":[140]},{"name":"IPrinting3DComponentWithMatrix","features":[140]},{"name":"IPrinting3DCompositeMaterial","features":[140]},{"name":"IPrinting3DCompositeMaterialGroup","features":[140]},{"name":"IPrinting3DCompositeMaterialGroup2","features":[140]},{"name":"IPrinting3DCompositeMaterialGroupFactory","features":[140]},{"name":"IPrinting3DFaceReductionOptions","features":[140]},{"name":"IPrinting3DMaterial","features":[140]},{"name":"IPrinting3DMesh","features":[140]},{"name":"IPrinting3DMeshVerificationResult","features":[140]},{"name":"IPrinting3DModel","features":[140]},{"name":"IPrinting3DModel2","features":[140]},{"name":"IPrinting3DModelTexture","features":[140]},{"name":"IPrinting3DMultiplePropertyMaterial","features":[140]},{"name":"IPrinting3DMultiplePropertyMaterialGroup","features":[140]},{"name":"IPrinting3DMultiplePropertyMaterialGroupFactory","features":[140]},{"name":"IPrinting3DTexture2CoordMaterial","features":[140]},{"name":"IPrinting3DTexture2CoordMaterialGroup","features":[140]},{"name":"IPrinting3DTexture2CoordMaterialGroup2","features":[140]},{"name":"IPrinting3DTexture2CoordMaterialGroupFactory","features":[140]},{"name":"IPrinting3DTextureResource","features":[140]},{"name":"Print3DManager","features":[140]},{"name":"Print3DTask","features":[140]},{"name":"Print3DTaskCompletedEventArgs","features":[140]},{"name":"Print3DTaskCompletion","features":[140]},{"name":"Print3DTaskDetail","features":[140]},{"name":"Print3DTaskRequest","features":[140]},{"name":"Print3DTaskRequestedEventArgs","features":[140]},{"name":"Print3DTaskSourceChangedEventArgs","features":[140]},{"name":"Print3DTaskSourceRequestedArgs","features":[140]},{"name":"Print3DTaskSourceRequestedHandler","features":[140]},{"name":"Printing3D3MFPackage","features":[140]},{"name":"Printing3DBaseMaterial","features":[140]},{"name":"Printing3DBaseMaterialGroup","features":[140]},{"name":"Printing3DBufferDescription","features":[140]},{"name":"Printing3DBufferFormat","features":[140]},{"name":"Printing3DColorMaterial","features":[140]},{"name":"Printing3DColorMaterialGroup","features":[140]},{"name":"Printing3DComponent","features":[140]},{"name":"Printing3DComponentWithMatrix","features":[140]},{"name":"Printing3DCompositeMaterial","features":[140]},{"name":"Printing3DCompositeMaterialGroup","features":[140]},{"name":"Printing3DContract","features":[140]},{"name":"Printing3DFaceReductionOptions","features":[140]},{"name":"Printing3DMaterial","features":[140]},{"name":"Printing3DMesh","features":[140]},{"name":"Printing3DMeshVerificationMode","features":[140]},{"name":"Printing3DMeshVerificationResult","features":[140]},{"name":"Printing3DModel","features":[140]},{"name":"Printing3DModelTexture","features":[140]},{"name":"Printing3DModelUnit","features":[140]},{"name":"Printing3DMultiplePropertyMaterial","features":[140]},{"name":"Printing3DMultiplePropertyMaterialGroup","features":[140]},{"name":"Printing3DObjectType","features":[140]},{"name":"Printing3DPackageCompression","features":[140]},{"name":"Printing3DTexture2CoordMaterial","features":[140]},{"name":"Printing3DTexture2CoordMaterialGroup","features":[140]},{"name":"Printing3DTextureEdgeBehavior","features":[140]},{"name":"Printing3DTextureResource","features":[140]}],"150":[{"name":"IMdmAlert","features":[141]},{"name":"IMdmSession","features":[141]},{"name":"IMdmSessionManagerStatics","features":[141]},{"name":"MdmAlert","features":[141]},{"name":"MdmAlertDataType","features":[141]},{"name":"MdmAlertMark","features":[141]},{"name":"MdmSession","features":[141]},{"name":"MdmSessionManager","features":[141]},{"name":"MdmSessionState","features":[141]}],"151":[{"name":"ApplicationDataManager","features":[142]},{"name":"IApplicationDataManager","features":[142]},{"name":"IApplicationDataManagerStatics","features":[142]}],"152":[{"name":"AddPackageByAppInstallerOptions","features":[143]},{"name":"AddPackageOptions","features":[143]},{"name":"AppInstallerManager","features":[143]},{"name":"AutoUpdateSettingsOptions","features":[143]},{"name":"CreateSharedPackageContainerOptions","features":[143]},{"name":"CreateSharedPackageContainerResult","features":[143]},{"name":"DeleteSharedPackageContainerOptions","features":[143]},{"name":"DeleteSharedPackageContainerResult","features":[143]},{"name":"DeploymentOptions","features":[143]},{"name":"DeploymentProgress","features":[143]},{"name":"DeploymentProgressState","features":[143]},{"name":"DeploymentResult","features":[143]},{"name":"FindSharedPackageContainerOptions","features":[143]},{"name":"IAddPackageOptions","features":[143]},{"name":"IAddPackageOptions2","features":[143]},{"name":"IAppInstallerManager","features":[143]},{"name":"IAppInstallerManagerStatics","features":[143]},{"name":"IAutoUpdateSettingsOptions","features":[143]},{"name":"IAutoUpdateSettingsOptionsStatics","features":[143]},{"name":"ICreateSharedPackageContainerOptions","features":[143]},{"name":"ICreateSharedPackageContainerResult","features":[143]},{"name":"IDeleteSharedPackageContainerOptions","features":[143]},{"name":"IDeleteSharedPackageContainerResult","features":[143]},{"name":"IDeploymentResult","features":[143]},{"name":"IDeploymentResult2","features":[143]},{"name":"IFindSharedPackageContainerOptions","features":[143]},{"name":"IPackageAllUserProvisioningOptions","features":[143]},{"name":"IPackageManager","features":[143]},{"name":"IPackageManager10","features":[143]},{"name":"IPackageManager2","features":[143]},{"name":"IPackageManager3","features":[143]},{"name":"IPackageManager4","features":[143]},{"name":"IPackageManager5","features":[143]},{"name":"IPackageManager6","features":[143]},{"name":"IPackageManager7","features":[143]},{"name":"IPackageManager8","features":[143]},{"name":"IPackageManager9","features":[143]},{"name":"IPackageManagerDebugSettings","features":[143]},{"name":"IPackageUserInformation","features":[143]},{"name":"IPackageVolume","features":[143]},{"name":"IPackageVolume2","features":[143]},{"name":"IRegisterPackageOptions","features":[143]},{"name":"IRegisterPackageOptions2","features":[143]},{"name":"ISharedPackageContainer","features":[143]},{"name":"ISharedPackageContainerManager","features":[143]},{"name":"ISharedPackageContainerManagerStatics","features":[143]},{"name":"ISharedPackageContainerMember","features":[143]},{"name":"ISharedPackageContainerMemberFactory","features":[143]},{"name":"IStagePackageOptions","features":[143]},{"name":"IStagePackageOptions2","features":[143]},{"name":"IUpdateSharedPackageContainerOptions","features":[143]},{"name":"IUpdateSharedPackageContainerResult","features":[143]},{"name":"PackageAllUserProvisioningOptions","features":[143]},{"name":"PackageInstallState","features":[143]},{"name":"PackageManager","features":[143]},{"name":"PackageManagerDebugSettings","features":[143]},{"name":"PackageState","features":[143]},{"name":"PackageStatus","features":[143]},{"name":"PackageStubPreference","features":[143]},{"name":"PackageTypes","features":[143]},{"name":"PackageUserInformation","features":[143]},{"name":"PackageVolume","features":[143]},{"name":"RegisterPackageOptions","features":[143]},{"name":"RemovalOptions","features":[143]},{"name":"SharedPackageContainer","features":[143]},{"name":"SharedPackageContainerContract","features":[143]},{"name":"SharedPackageContainerCreationCollisionOptions","features":[143]},{"name":"SharedPackageContainerManager","features":[143]},{"name":"SharedPackageContainerMember","features":[143]},{"name":"SharedPackageContainerOperationStatus","features":[143]},{"name":"StagePackageOptions","features":[143]},{"name":"StubPackageOption","features":[143]},{"name":"UpdateSharedPackageContainerOptions","features":[143]},{"name":"UpdateSharedPackageContainerResult","features":[143]}],"153":[{"name":"ClassicAppManager","features":[144]},{"name":"DeploymentPreviewContract","features":[144]},{"name":"IClassicAppManagerStatics","features":[144]},{"name":"IInstalledClassicAppInfo","features":[144]},{"name":"InstalledClassicAppInfo","features":[144]}],"154":[{"name":"INamedPolicyData","features":[145]},{"name":"INamedPolicyStatics","features":[145]},{"name":"NamedPolicy","features":[145]},{"name":"NamedPolicyData","features":[145]},{"name":"NamedPolicyKind","features":[145]}],"155":[{"name":"IPreviewBuildsManager","features":[146]},{"name":"IPreviewBuildsManagerStatics","features":[146]},{"name":"IPreviewBuildsState","features":[146]},{"name":"IWindowsUpdate","features":[146]},{"name":"IWindowsUpdateActionCompletedEventArgs","features":[146]},{"name":"IWindowsUpdateActionProgress","features":[146]},{"name":"IWindowsUpdateActionResult","features":[146]},{"name":"IWindowsUpdateAdministrator","features":[146]},{"name":"IWindowsUpdateAdministratorStatics","features":[146]},{"name":"IWindowsUpdateApprovalData","features":[146]},{"name":"IWindowsUpdateAttentionRequiredInfo","features":[146]},{"name":"IWindowsUpdateAttentionRequiredReasonChangedEventArgs","features":[146]},{"name":"IWindowsUpdateGetAdministratorResult","features":[146]},{"name":"IWindowsUpdateItem","features":[146]},{"name":"IWindowsUpdateManager","features":[146]},{"name":"IWindowsUpdateManagerFactory","features":[146]},{"name":"IWindowsUpdateProgressChangedEventArgs","features":[146]},{"name":"IWindowsUpdateRestartRequestOptions","features":[146]},{"name":"IWindowsUpdateRestartRequestOptionsFactory","features":[146]},{"name":"IWindowsUpdateScanCompletedEventArgs","features":[146]},{"name":"PreviewBuildsManager","features":[146]},{"name":"PreviewBuildsState","features":[146]},{"name":"WindowsUpdate","features":[146]},{"name":"WindowsUpdateActionCompletedEventArgs","features":[146]},{"name":"WindowsUpdateActionProgress","features":[146]},{"name":"WindowsUpdateActionResult","features":[146]},{"name":"WindowsUpdateAdministrator","features":[146]},{"name":"WindowsUpdateAdministratorOptions","features":[146]},{"name":"WindowsUpdateAdministratorStatus","features":[146]},{"name":"WindowsUpdateApprovalData","features":[146]},{"name":"WindowsUpdateAttentionRequiredInfo","features":[146]},{"name":"WindowsUpdateAttentionRequiredReason","features":[146]},{"name":"WindowsUpdateAttentionRequiredReasonChangedEventArgs","features":[146]},{"name":"WindowsUpdateContract","features":[146]},{"name":"WindowsUpdateGetAdministratorResult","features":[146]},{"name":"WindowsUpdateItem","features":[146]},{"name":"WindowsUpdateManager","features":[146]},{"name":"WindowsUpdateProgressChangedEventArgs","features":[146]},{"name":"WindowsUpdateRestartRequestOptions","features":[146]},{"name":"WindowsUpdateScanCompletedEventArgs","features":[146]}],"156":[{"name":"IMdmAllowPolicyStatics","features":[147]},{"name":"IMdmPolicyStatics2","features":[147]},{"name":"IWorkplaceSettingsStatics","features":[147]},{"name":"MdmPolicy","features":[147]},{"name":"MessagingSyncPolicy","features":[147]},{"name":"WorkplaceSettings","features":[147]},{"name":"WorkplaceSettingsContract","features":[147]}],"157":[{"name":"AudioBuffer","features":[148]},{"name":"AudioBufferAccessMode","features":[148]},{"name":"AudioFrame","features":[148]},{"name":"AudioProcessing","features":[148]},{"name":"AutoRepeatModeChangeRequestedEventArgs","features":[148]},{"name":"IAudioBuffer","features":[148]},{"name":"IAudioFrame","features":[148]},{"name":"IAudioFrameFactory","features":[148]},{"name":"IAutoRepeatModeChangeRequestedEventArgs","features":[148]},{"name":"IImageDisplayProperties","features":[148]},{"name":"IMediaControl","features":[148]},{"name":"IMediaExtension","features":[148]},{"name":"IMediaExtensionManager","features":[148]},{"name":"IMediaExtensionManager2","features":[148]},{"name":"IMediaFrame","features":[148]},{"name":"IMediaMarker","features":[148]},{"name":"IMediaMarkerTypesStatics","features":[148]},{"name":"IMediaMarkers","features":[148]},{"name":"IMediaProcessingTriggerDetails","features":[148]},{"name":"IMediaTimelineController","features":[148]},{"name":"IMediaTimelineController2","features":[148]},{"name":"IMediaTimelineControllerFailedEventArgs","features":[148]},{"name":"IMusicDisplayProperties","features":[148]},{"name":"IMusicDisplayProperties2","features":[148]},{"name":"IMusicDisplayProperties3","features":[148]},{"name":"IPlaybackPositionChangeRequestedEventArgs","features":[148]},{"name":"IPlaybackRateChangeRequestedEventArgs","features":[148]},{"name":"IShuffleEnabledChangeRequestedEventArgs","features":[148]},{"name":"ISystemMediaTransportControls","features":[148]},{"name":"ISystemMediaTransportControls2","features":[148]},{"name":"ISystemMediaTransportControlsButtonPressedEventArgs","features":[148]},{"name":"ISystemMediaTransportControlsDisplayUpdater","features":[148]},{"name":"ISystemMediaTransportControlsPropertyChangedEventArgs","features":[148]},{"name":"ISystemMediaTransportControlsStatics","features":[148]},{"name":"ISystemMediaTransportControlsTimelineProperties","features":[148]},{"name":"IVideoDisplayProperties","features":[148]},{"name":"IVideoDisplayProperties2","features":[148]},{"name":"IVideoEffectsStatics","features":[148]},{"name":"IVideoFrame","features":[148]},{"name":"IVideoFrame2","features":[148]},{"name":"IVideoFrameFactory","features":[148]},{"name":"IVideoFrameStatics","features":[148]},{"name":"ImageDisplayProperties","features":[148]},{"name":"MediaControl","features":[148]},{"name":"MediaControlContract","features":[148]},{"name":"MediaExtensionManager","features":[148]},{"name":"MediaMarkerTypes","features":[148]},{"name":"MediaPlaybackAutoRepeatMode","features":[148]},{"name":"MediaPlaybackStatus","features":[148]},{"name":"MediaPlaybackType","features":[148]},{"name":"MediaProcessingTriggerDetails","features":[148]},{"name":"MediaTimeRange","features":[76,148]},{"name":"MediaTimelineController","features":[148]},{"name":"MediaTimelineControllerFailedEventArgs","features":[148]},{"name":"MediaTimelineControllerState","features":[148]},{"name":"MusicDisplayProperties","features":[148]},{"name":"PlaybackPositionChangeRequestedEventArgs","features":[148]},{"name":"PlaybackRateChangeRequestedEventArgs","features":[148]},{"name":"ShuffleEnabledChangeRequestedEventArgs","features":[148]},{"name":"SoundLevel","features":[148]},{"name":"SystemMediaTransportControls","features":[148]},{"name":"SystemMediaTransportControlsButton","features":[148]},{"name":"SystemMediaTransportControlsButtonPressedEventArgs","features":[148]},{"name":"SystemMediaTransportControlsDisplayUpdater","features":[148]},{"name":"SystemMediaTransportControlsProperty","features":[148]},{"name":"SystemMediaTransportControlsPropertyChangedEventArgs","features":[148]},{"name":"SystemMediaTransportControlsTimelineProperties","features":[148]},{"name":"VideoDisplayProperties","features":[148]},{"name":"VideoEffects","features":[148]},{"name":"VideoFrame","features":[148]}],"158":[{"name":"AppBroadcastingContract","features":[149]},{"name":"AppBroadcastingMonitor","features":[149]},{"name":"AppBroadcastingStatus","features":[149]},{"name":"AppBroadcastingStatusDetails","features":[149]},{"name":"AppBroadcastingUI","features":[149]},{"name":"IAppBroadcastingMonitor","features":[149]},{"name":"IAppBroadcastingStatus","features":[149]},{"name":"IAppBroadcastingStatusDetails","features":[149]},{"name":"IAppBroadcastingUI","features":[149]},{"name":"IAppBroadcastingUIStatics","features":[149]}],"159":[{"name":"AppRecordingContract","features":[150]},{"name":"AppRecordingManager","features":[150]},{"name":"AppRecordingResult","features":[150]},{"name":"AppRecordingSaveScreenshotOption","features":[150]},{"name":"AppRecordingSaveScreenshotResult","features":[150]},{"name":"AppRecordingSavedScreenshotInfo","features":[150]},{"name":"AppRecordingStatus","features":[150]},{"name":"AppRecordingStatusDetails","features":[150]},{"name":"IAppRecordingManager","features":[150]},{"name":"IAppRecordingManagerStatics","features":[150]},{"name":"IAppRecordingResult","features":[150]},{"name":"IAppRecordingSaveScreenshotResult","features":[150]},{"name":"IAppRecordingSavedScreenshotInfo","features":[150]},{"name":"IAppRecordingStatus","features":[150]},{"name":"IAppRecordingStatusDetails","features":[150]}],"160":[{"name":"AudioDeviceInputNode","features":[151]},{"name":"AudioDeviceNodeCreationStatus","features":[151]},{"name":"AudioDeviceOutputNode","features":[151]},{"name":"AudioFileInputNode","features":[151]},{"name":"AudioFileNodeCreationStatus","features":[151]},{"name":"AudioFileOutputNode","features":[151]},{"name":"AudioFrameCompletedEventArgs","features":[151]},{"name":"AudioFrameInputNode","features":[151]},{"name":"AudioFrameOutputNode","features":[151]},{"name":"AudioGraph","features":[151]},{"name":"AudioGraphBatchUpdater","features":[76,151]},{"name":"AudioGraphConnection","features":[151]},{"name":"AudioGraphCreationStatus","features":[151]},{"name":"AudioGraphSettings","features":[151]},{"name":"AudioGraphUnrecoverableError","features":[151]},{"name":"AudioGraphUnrecoverableErrorOccurredEventArgs","features":[151]},{"name":"AudioNodeEmitter","features":[151]},{"name":"AudioNodeEmitterConeProperties","features":[151]},{"name":"AudioNodeEmitterDecayKind","features":[151]},{"name":"AudioNodeEmitterDecayModel","features":[151]},{"name":"AudioNodeEmitterNaturalDecayModelProperties","features":[151]},{"name":"AudioNodeEmitterSettings","features":[151]},{"name":"AudioNodeEmitterShape","features":[151]},{"name":"AudioNodeEmitterShapeKind","features":[151]},{"name":"AudioNodeListener","features":[151]},{"name":"AudioPlaybackConnection","features":[151]},{"name":"AudioPlaybackConnectionOpenResult","features":[151]},{"name":"AudioPlaybackConnectionOpenResultStatus","features":[151]},{"name":"AudioPlaybackConnectionState","features":[151]},{"name":"AudioStateMonitor","features":[151]},{"name":"AudioSubmixNode","features":[151]},{"name":"CreateAudioDeviceInputNodeResult","features":[151]},{"name":"CreateAudioDeviceOutputNodeResult","features":[151]},{"name":"CreateAudioFileInputNodeResult","features":[151]},{"name":"CreateAudioFileOutputNodeResult","features":[151]},{"name":"CreateAudioGraphResult","features":[151]},{"name":"CreateMediaSourceAudioInputNodeResult","features":[151]},{"name":"EchoEffectDefinition","features":[151]},{"name":"EqualizerBand","features":[151]},{"name":"EqualizerEffectDefinition","features":[151]},{"name":"FrameInputNodeQuantumStartedEventArgs","features":[151]},{"name":"IAudioDeviceInputNode","features":[151]},{"name":"IAudioDeviceOutputNode","features":[151]},{"name":"IAudioFileInputNode","features":[151]},{"name":"IAudioFileOutputNode","features":[151]},{"name":"IAudioFrameCompletedEventArgs","features":[151]},{"name":"IAudioFrameInputNode","features":[151]},{"name":"IAudioFrameOutputNode","features":[151]},{"name":"IAudioGraph","features":[151]},{"name":"IAudioGraph2","features":[151]},{"name":"IAudioGraph3","features":[151]},{"name":"IAudioGraphConnection","features":[151]},{"name":"IAudioGraphSettings","features":[151]},{"name":"IAudioGraphSettings2","features":[151]},{"name":"IAudioGraphSettingsFactory","features":[151]},{"name":"IAudioGraphStatics","features":[151]},{"name":"IAudioGraphUnrecoverableErrorOccurredEventArgs","features":[151]},{"name":"IAudioInputNode","features":[151]},{"name":"IAudioInputNode2","features":[151]},{"name":"IAudioNode","features":[151]},{"name":"IAudioNodeEmitter","features":[151]},{"name":"IAudioNodeEmitter2","features":[151]},{"name":"IAudioNodeEmitterConeProperties","features":[151]},{"name":"IAudioNodeEmitterDecayModel","features":[151]},{"name":"IAudioNodeEmitterDecayModelStatics","features":[151]},{"name":"IAudioNodeEmitterFactory","features":[151]},{"name":"IAudioNodeEmitterNaturalDecayModelProperties","features":[151]},{"name":"IAudioNodeEmitterShape","features":[151]},{"name":"IAudioNodeEmitterShapeStatics","features":[151]},{"name":"IAudioNodeListener","features":[151]},{"name":"IAudioNodeWithListener","features":[151]},{"name":"IAudioPlaybackConnection","features":[151]},{"name":"IAudioPlaybackConnectionOpenResult","features":[151]},{"name":"IAudioPlaybackConnectionStatics","features":[151]},{"name":"IAudioStateMonitor","features":[151]},{"name":"IAudioStateMonitorStatics","features":[151]},{"name":"ICreateAudioDeviceInputNodeResult","features":[151]},{"name":"ICreateAudioDeviceInputNodeResult2","features":[151]},{"name":"ICreateAudioDeviceOutputNodeResult","features":[151]},{"name":"ICreateAudioDeviceOutputNodeResult2","features":[151]},{"name":"ICreateAudioFileInputNodeResult","features":[151]},{"name":"ICreateAudioFileInputNodeResult2","features":[151]},{"name":"ICreateAudioFileOutputNodeResult","features":[151]},{"name":"ICreateAudioFileOutputNodeResult2","features":[151]},{"name":"ICreateAudioGraphResult","features":[151]},{"name":"ICreateAudioGraphResult2","features":[151]},{"name":"ICreateMediaSourceAudioInputNodeResult","features":[151]},{"name":"ICreateMediaSourceAudioInputNodeResult2","features":[151]},{"name":"IEchoEffectDefinition","features":[151]},{"name":"IEchoEffectDefinitionFactory","features":[151]},{"name":"IEqualizerBand","features":[151]},{"name":"IEqualizerEffectDefinition","features":[151]},{"name":"IEqualizerEffectDefinitionFactory","features":[151]},{"name":"IFrameInputNodeQuantumStartedEventArgs","features":[151]},{"name":"ILimiterEffectDefinition","features":[151]},{"name":"ILimiterEffectDefinitionFactory","features":[151]},{"name":"IMediaSourceAudioInputNode","features":[151]},{"name":"IReverbEffectDefinition","features":[151]},{"name":"IReverbEffectDefinitionFactory","features":[151]},{"name":"ISetDefaultSpatialAudioFormatResult","features":[151]},{"name":"ISpatialAudioDeviceConfiguration","features":[151]},{"name":"ISpatialAudioDeviceConfigurationStatics","features":[151]},{"name":"ISpatialAudioFormatConfiguration","features":[151]},{"name":"ISpatialAudioFormatConfigurationStatics","features":[151]},{"name":"ISpatialAudioFormatSubtypeStatics","features":[151]},{"name":"ISpatialAudioFormatSubtypeStatics2","features":[151]},{"name":"LimiterEffectDefinition","features":[151]},{"name":"MediaSourceAudioInputNode","features":[151]},{"name":"MediaSourceAudioInputNodeCreationStatus","features":[151]},{"name":"MixedRealitySpatialAudioFormatPolicy","features":[151]},{"name":"QuantumSizeSelectionMode","features":[151]},{"name":"ReverbEffectDefinition","features":[151]},{"name":"SetDefaultSpatialAudioFormatResult","features":[151]},{"name":"SetDefaultSpatialAudioFormatStatus","features":[151]},{"name":"SpatialAudioDeviceConfiguration","features":[151]},{"name":"SpatialAudioFormatConfiguration","features":[151]},{"name":"SpatialAudioFormatSubtype","features":[151]},{"name":"SpatialAudioModel","features":[151]}],"161":[{"name":"AdvancedCapturedPhoto","features":[152]},{"name":"AdvancedPhotoCapture","features":[152]},{"name":"AppBroadcastBackgroundService","features":[152]},{"name":"AppBroadcastBackgroundServiceSignInInfo","features":[152]},{"name":"AppBroadcastBackgroundServiceStreamInfo","features":[152]},{"name":"AppBroadcastCameraCaptureState","features":[152]},{"name":"AppBroadcastCameraCaptureStateChangedEventArgs","features":[152]},{"name":"AppBroadcastCameraOverlayLocation","features":[152]},{"name":"AppBroadcastCameraOverlaySize","features":[152]},{"name":"AppBroadcastCaptureTargetType","features":[152]},{"name":"AppBroadcastContract","features":[152]},{"name":"AppBroadcastExitBroadcastModeReason","features":[152]},{"name":"AppBroadcastGlobalSettings","features":[152]},{"name":"AppBroadcastHeartbeatRequestedEventArgs","features":[152]},{"name":"AppBroadcastManager","features":[152]},{"name":"AppBroadcastMicrophoneCaptureState","features":[152]},{"name":"AppBroadcastMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"AppBroadcastPlugIn","features":[152]},{"name":"AppBroadcastPlugInManager","features":[152]},{"name":"AppBroadcastPlugInState","features":[152]},{"name":"AppBroadcastPlugInStateChangedEventArgs","features":[152]},{"name":"AppBroadcastPreview","features":[152]},{"name":"AppBroadcastPreviewState","features":[152]},{"name":"AppBroadcastPreviewStateChangedEventArgs","features":[152]},{"name":"AppBroadcastPreviewStreamReader","features":[152]},{"name":"AppBroadcastPreviewStreamVideoFrame","features":[152]},{"name":"AppBroadcastPreviewStreamVideoHeader","features":[152]},{"name":"AppBroadcastProviderSettings","features":[152]},{"name":"AppBroadcastServices","features":[152]},{"name":"AppBroadcastSignInResult","features":[152]},{"name":"AppBroadcastSignInState","features":[152]},{"name":"AppBroadcastSignInStateChangedEventArgs","features":[152]},{"name":"AppBroadcastState","features":[152]},{"name":"AppBroadcastStreamAudioFrame","features":[152]},{"name":"AppBroadcastStreamAudioHeader","features":[152]},{"name":"AppBroadcastStreamReader","features":[152]},{"name":"AppBroadcastStreamState","features":[152]},{"name":"AppBroadcastStreamStateChangedEventArgs","features":[152]},{"name":"AppBroadcastStreamVideoFrame","features":[152]},{"name":"AppBroadcastStreamVideoHeader","features":[152]},{"name":"AppBroadcastTerminationReason","features":[152]},{"name":"AppBroadcastTriggerDetails","features":[152]},{"name":"AppBroadcastVideoEncodingBitrateMode","features":[152]},{"name":"AppBroadcastVideoEncodingResolutionMode","features":[152]},{"name":"AppBroadcastViewerCountChangedEventArgs","features":[152]},{"name":"AppCapture","features":[152]},{"name":"AppCaptureAlternateShortcutKeys","features":[152]},{"name":"AppCaptureContract","features":[152]},{"name":"AppCaptureDurationGeneratedEventArgs","features":[152]},{"name":"AppCaptureFileGeneratedEventArgs","features":[152]},{"name":"AppCaptureHistoricalBufferLengthUnit","features":[152]},{"name":"AppCaptureManager","features":[152]},{"name":"AppCaptureMetadataContract","features":[152]},{"name":"AppCaptureMetadataPriority","features":[152]},{"name":"AppCaptureMetadataWriter","features":[152]},{"name":"AppCaptureMicrophoneCaptureState","features":[152]},{"name":"AppCaptureMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"AppCaptureRecordOperation","features":[152]},{"name":"AppCaptureRecordingState","features":[152]},{"name":"AppCaptureRecordingStateChangedEventArgs","features":[152]},{"name":"AppCaptureServices","features":[152]},{"name":"AppCaptureSettings","features":[152]},{"name":"AppCaptureState","features":[152]},{"name":"AppCaptureVideoEncodingBitrateMode","features":[152]},{"name":"AppCaptureVideoEncodingFrameRateMode","features":[152]},{"name":"AppCaptureVideoEncodingResolutionMode","features":[152]},{"name":"CameraCaptureUI","features":[152]},{"name":"CameraCaptureUIContract","features":[152]},{"name":"CameraCaptureUIMaxPhotoResolution","features":[152]},{"name":"CameraCaptureUIMaxVideoResolution","features":[152]},{"name":"CameraCaptureUIMode","features":[152]},{"name":"CameraCaptureUIPhotoCaptureSettings","features":[152]},{"name":"CameraCaptureUIPhotoFormat","features":[152]},{"name":"CameraCaptureUIVideoCaptureSettings","features":[152]},{"name":"CameraCaptureUIVideoFormat","features":[152]},{"name":"CameraOptionsUI","features":[152]},{"name":"CapturedFrame","features":[152]},{"name":"CapturedFrameControlValues","features":[152]},{"name":"CapturedPhoto","features":[152]},{"name":"ForegroundActivationArgument","features":[152]},{"name":"GameBarCommand","features":[152]},{"name":"GameBarCommandOrigin","features":[152]},{"name":"GameBarContract","features":[152]},{"name":"GameBarServices","features":[152]},{"name":"GameBarServicesCommandEventArgs","features":[152]},{"name":"GameBarServicesDisplayMode","features":[152]},{"name":"GameBarServicesManager","features":[152]},{"name":"GameBarServicesManagerGameBarServicesCreatedEventArgs","features":[152]},{"name":"GameBarServicesTargetInfo","features":[152]},{"name":"GameBarTargetCapturePolicy","features":[152]},{"name":"IAdvancedCapturedPhoto","features":[152]},{"name":"IAdvancedCapturedPhoto2","features":[152]},{"name":"IAdvancedPhotoCapture","features":[152]},{"name":"IAppBroadcastBackgroundService","features":[152]},{"name":"IAppBroadcastBackgroundService2","features":[152]},{"name":"IAppBroadcastBackgroundServiceSignInInfo","features":[152]},{"name":"IAppBroadcastBackgroundServiceSignInInfo2","features":[152]},{"name":"IAppBroadcastBackgroundServiceStreamInfo","features":[152]},{"name":"IAppBroadcastBackgroundServiceStreamInfo2","features":[152]},{"name":"IAppBroadcastCameraCaptureStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastGlobalSettings","features":[152]},{"name":"IAppBroadcastHeartbeatRequestedEventArgs","features":[152]},{"name":"IAppBroadcastManagerStatics","features":[152]},{"name":"IAppBroadcastMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastPlugIn","features":[152]},{"name":"IAppBroadcastPlugInManager","features":[152]},{"name":"IAppBroadcastPlugInManagerStatics","features":[152]},{"name":"IAppBroadcastPlugInStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastPreview","features":[152]},{"name":"IAppBroadcastPreviewStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastPreviewStreamReader","features":[152]},{"name":"IAppBroadcastPreviewStreamVideoFrame","features":[152]},{"name":"IAppBroadcastPreviewStreamVideoHeader","features":[152]},{"name":"IAppBroadcastProviderSettings","features":[152]},{"name":"IAppBroadcastServices","features":[152]},{"name":"IAppBroadcastSignInStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastState","features":[152]},{"name":"IAppBroadcastStreamAudioFrame","features":[152]},{"name":"IAppBroadcastStreamAudioHeader","features":[152]},{"name":"IAppBroadcastStreamReader","features":[152]},{"name":"IAppBroadcastStreamStateChangedEventArgs","features":[152]},{"name":"IAppBroadcastStreamVideoFrame","features":[152]},{"name":"IAppBroadcastStreamVideoHeader","features":[152]},{"name":"IAppBroadcastTriggerDetails","features":[152]},{"name":"IAppBroadcastViewerCountChangedEventArgs","features":[152]},{"name":"IAppCapture","features":[152]},{"name":"IAppCaptureAlternateShortcutKeys","features":[152]},{"name":"IAppCaptureAlternateShortcutKeys2","features":[152]},{"name":"IAppCaptureAlternateShortcutKeys3","features":[152]},{"name":"IAppCaptureDurationGeneratedEventArgs","features":[152]},{"name":"IAppCaptureFileGeneratedEventArgs","features":[152]},{"name":"IAppCaptureManagerStatics","features":[152]},{"name":"IAppCaptureMetadataWriter","features":[152]},{"name":"IAppCaptureMicrophoneCaptureStateChangedEventArgs","features":[152]},{"name":"IAppCaptureRecordOperation","features":[152]},{"name":"IAppCaptureRecordingStateChangedEventArgs","features":[152]},{"name":"IAppCaptureServices","features":[152]},{"name":"IAppCaptureSettings","features":[152]},{"name":"IAppCaptureSettings2","features":[152]},{"name":"IAppCaptureSettings3","features":[152]},{"name":"IAppCaptureSettings4","features":[152]},{"name":"IAppCaptureSettings5","features":[152]},{"name":"IAppCaptureState","features":[152]},{"name":"IAppCaptureStatics","features":[152]},{"name":"IAppCaptureStatics2","features":[152]},{"name":"ICameraCaptureUI","features":[152]},{"name":"ICameraCaptureUIPhotoCaptureSettings","features":[152]},{"name":"ICameraCaptureUIVideoCaptureSettings","features":[152]},{"name":"ICameraOptionsUIStatics","features":[152]},{"name":"ICapturedFrame","features":[152]},{"name":"ICapturedFrame2","features":[152]},{"name":"ICapturedFrameControlValues","features":[152]},{"name":"ICapturedFrameControlValues2","features":[152]},{"name":"ICapturedFrameWithSoftwareBitmap","features":[152]},{"name":"ICapturedPhoto","features":[152]},{"name":"IGameBarServices","features":[152]},{"name":"IGameBarServicesCommandEventArgs","features":[152]},{"name":"IGameBarServicesManager","features":[152]},{"name":"IGameBarServicesManagerGameBarServicesCreatedEventArgs","features":[152]},{"name":"IGameBarServicesManagerStatics","features":[152]},{"name":"IGameBarServicesTargetInfo","features":[152]},{"name":"ILowLagMediaRecording","features":[152]},{"name":"ILowLagMediaRecording2","features":[152]},{"name":"ILowLagMediaRecording3","features":[152]},{"name":"ILowLagPhotoCapture","features":[152]},{"name":"ILowLagPhotoSequenceCapture","features":[152]},{"name":"IMediaCapture","features":[152]},{"name":"IMediaCapture2","features":[152]},{"name":"IMediaCapture3","features":[152]},{"name":"IMediaCapture4","features":[152]},{"name":"IMediaCapture5","features":[152]},{"name":"IMediaCapture6","features":[152]},{"name":"IMediaCapture7","features":[152]},{"name":"IMediaCaptureDeviceExclusiveControlStatusChangedEventArgs","features":[152]},{"name":"IMediaCaptureFailedEventArgs","features":[152]},{"name":"IMediaCaptureFocusChangedEventArgs","features":[152]},{"name":"IMediaCaptureInitializationSettings","features":[152]},{"name":"IMediaCaptureInitializationSettings2","features":[152]},{"name":"IMediaCaptureInitializationSettings3","features":[152]},{"name":"IMediaCaptureInitializationSettings4","features":[152]},{"name":"IMediaCaptureInitializationSettings5","features":[152]},{"name":"IMediaCaptureInitializationSettings6","features":[152]},{"name":"IMediaCaptureInitializationSettings7","features":[152]},{"name":"IMediaCapturePauseResult","features":[152]},{"name":"IMediaCaptureRelativePanelWatcher","features":[152]},{"name":"IMediaCaptureSettings","features":[152]},{"name":"IMediaCaptureSettings2","features":[152]},{"name":"IMediaCaptureSettings3","features":[152]},{"name":"IMediaCaptureStatics","features":[152]},{"name":"IMediaCaptureStopResult","features":[152]},{"name":"IMediaCaptureVideoPreview","features":[152]},{"name":"IMediaCaptureVideoProfile","features":[152]},{"name":"IMediaCaptureVideoProfile2","features":[152]},{"name":"IMediaCaptureVideoProfileMediaDescription","features":[152]},{"name":"IMediaCaptureVideoProfileMediaDescription2","features":[152]},{"name":"IOptionalReferencePhotoCapturedEventArgs","features":[152]},{"name":"IPhotoCapturedEventArgs","features":[152]},{"name":"IPhotoConfirmationCapturedEventArgs","features":[152]},{"name":"IScreenCapture","features":[152]},{"name":"IScreenCaptureStatics","features":[152]},{"name":"ISourceSuspensionChangedEventArgs","features":[152]},{"name":"IVideoStreamConfiguration","features":[152]},{"name":"KnownVideoProfile","features":[152]},{"name":"LowLagMediaRecording","features":[152]},{"name":"LowLagPhotoCapture","features":[152]},{"name":"LowLagPhotoSequenceCapture","features":[152]},{"name":"MediaCapture","features":[152]},{"name":"MediaCaptureDeviceExclusiveControlReleaseMode","features":[152]},{"name":"MediaCaptureDeviceExclusiveControlStatus","features":[152]},{"name":"MediaCaptureDeviceExclusiveControlStatusChangedEventArgs","features":[152]},{"name":"MediaCaptureFailedEventArgs","features":[152]},{"name":"MediaCaptureFailedEventHandler","features":[152]},{"name":"MediaCaptureFocusChangedEventArgs","features":[152]},{"name":"MediaCaptureInitializationSettings","features":[152]},{"name":"MediaCaptureMemoryPreference","features":[152]},{"name":"MediaCapturePauseResult","features":[152]},{"name":"MediaCaptureRelativePanelWatcher","features":[152]},{"name":"MediaCaptureSettings","features":[152]},{"name":"MediaCaptureSharingMode","features":[152]},{"name":"MediaCaptureStopResult","features":[152]},{"name":"MediaCaptureThermalStatus","features":[152]},{"name":"MediaCaptureVideoProfile","features":[152]},{"name":"MediaCaptureVideoProfileMediaDescription","features":[152]},{"name":"MediaCategory","features":[152]},{"name":"MediaStreamType","features":[152]},{"name":"OptionalReferencePhotoCapturedEventArgs","features":[152]},{"name":"PhotoCaptureSource","features":[152]},{"name":"PhotoCapturedEventArgs","features":[152]},{"name":"PhotoConfirmationCapturedEventArgs","features":[152]},{"name":"PowerlineFrequency","features":[152]},{"name":"RecordLimitationExceededEventHandler","features":[152]},{"name":"ScreenCapture","features":[152]},{"name":"SourceSuspensionChangedEventArgs","features":[152]},{"name":"StreamingCaptureMode","features":[152]},{"name":"VideoDeviceCharacteristic","features":[152]},{"name":"VideoRotation","features":[152]},{"name":"VideoStreamConfiguration","features":[152]},{"name":"WhiteBalanceGain","features":[152]}],"162":[{"name":"IVariablePhotoCapturedEventArgs","features":[153]},{"name":"IVariablePhotoSequenceCapture","features":[153]},{"name":"IVariablePhotoSequenceCapture2","features":[153]},{"name":"VariablePhotoCapturedEventArgs","features":[153]},{"name":"VariablePhotoSequenceCapture","features":[153]}],"163":[{"name":"AudioMediaFrame","features":[154]},{"name":"BufferMediaFrame","features":[154]},{"name":"DepthMediaFrame","features":[154]},{"name":"DepthMediaFrameFormat","features":[154]},{"name":"IAudioMediaFrame","features":[154]},{"name":"IBufferMediaFrame","features":[154]},{"name":"IDepthMediaFrame","features":[154]},{"name":"IDepthMediaFrame2","features":[154]},{"name":"IDepthMediaFrameFormat","features":[154]},{"name":"IInfraredMediaFrame","features":[154]},{"name":"IMediaFrameArrivedEventArgs","features":[154]},{"name":"IMediaFrameFormat","features":[154]},{"name":"IMediaFrameFormat2","features":[154]},{"name":"IMediaFrameReader","features":[154]},{"name":"IMediaFrameReader2","features":[154]},{"name":"IMediaFrameReference","features":[154]},{"name":"IMediaFrameReference2","features":[154]},{"name":"IMediaFrameSource","features":[154]},{"name":"IMediaFrameSourceController","features":[154]},{"name":"IMediaFrameSourceController2","features":[154]},{"name":"IMediaFrameSourceController3","features":[154]},{"name":"IMediaFrameSourceGetPropertyResult","features":[154]},{"name":"IMediaFrameSourceGroup","features":[154]},{"name":"IMediaFrameSourceGroupStatics","features":[154]},{"name":"IMediaFrameSourceInfo","features":[154]},{"name":"IMediaFrameSourceInfo2","features":[154]},{"name":"IMediaFrameSourceInfo3","features":[154]},{"name":"IMediaFrameSourceInfo4","features":[154]},{"name":"IMultiSourceMediaFrameArrivedEventArgs","features":[154]},{"name":"IMultiSourceMediaFrameReader","features":[154]},{"name":"IMultiSourceMediaFrameReader2","features":[154]},{"name":"IMultiSourceMediaFrameReference","features":[154]},{"name":"IVideoMediaFrame","features":[154]},{"name":"IVideoMediaFrameFormat","features":[154]},{"name":"InfraredMediaFrame","features":[154]},{"name":"MediaFrameArrivedEventArgs","features":[154]},{"name":"MediaFrameFormat","features":[154]},{"name":"MediaFrameReader","features":[154]},{"name":"MediaFrameReaderAcquisitionMode","features":[154]},{"name":"MediaFrameReaderStartStatus","features":[154]},{"name":"MediaFrameReference","features":[154]},{"name":"MediaFrameSource","features":[154]},{"name":"MediaFrameSourceController","features":[154]},{"name":"MediaFrameSourceGetPropertyResult","features":[154]},{"name":"MediaFrameSourceGetPropertyStatus","features":[154]},{"name":"MediaFrameSourceGroup","features":[154]},{"name":"MediaFrameSourceInfo","features":[154]},{"name":"MediaFrameSourceKind","features":[154]},{"name":"MediaFrameSourceSetPropertyStatus","features":[154]},{"name":"MultiSourceMediaFrameArrivedEventArgs","features":[154]},{"name":"MultiSourceMediaFrameReader","features":[154]},{"name":"MultiSourceMediaFrameReaderStartStatus","features":[154]},{"name":"MultiSourceMediaFrameReference","features":[154]},{"name":"VideoMediaFrame","features":[154]},{"name":"VideoMediaFrameFormat","features":[154]}],"164":[{"name":"CastingConnection","features":[155]},{"name":"CastingConnectionErrorOccurredEventArgs","features":[155]},{"name":"CastingConnectionErrorStatus","features":[155]},{"name":"CastingConnectionState","features":[155]},{"name":"CastingDevice","features":[155]},{"name":"CastingDevicePicker","features":[155]},{"name":"CastingDevicePickerFilter","features":[155]},{"name":"CastingDeviceSelectedEventArgs","features":[155]},{"name":"CastingPlaybackTypes","features":[155]},{"name":"CastingSource","features":[155]},{"name":"ICastingConnection","features":[155]},{"name":"ICastingConnectionErrorOccurredEventArgs","features":[155]},{"name":"ICastingDevice","features":[155]},{"name":"ICastingDevicePicker","features":[155]},{"name":"ICastingDevicePickerFilter","features":[155]},{"name":"ICastingDeviceSelectedEventArgs","features":[155]},{"name":"ICastingDeviceStatics","features":[155]},{"name":"ICastingSource","features":[155]}],"165":[{"name":"ClosedCaptionColor","features":[156]},{"name":"ClosedCaptionEdgeEffect","features":[156]},{"name":"ClosedCaptionOpacity","features":[156]},{"name":"ClosedCaptionProperties","features":[156]},{"name":"ClosedCaptionSize","features":[156]},{"name":"ClosedCaptionStyle","features":[156]},{"name":"IClosedCaptionPropertiesStatics","features":[156]},{"name":"IClosedCaptionPropertiesStatics2","features":[156]}],"166":[{"name":"ContentAccessRestrictionLevel","features":[157]},{"name":"ContentRestrictionsBrowsePolicy","features":[157]},{"name":"IContentRestrictionsBrowsePolicy","features":[157]},{"name":"IRatedContentDescription","features":[157]},{"name":"IRatedContentDescriptionFactory","features":[157]},{"name":"IRatedContentRestrictions","features":[157]},{"name":"IRatedContentRestrictionsFactory","features":[157]},{"name":"RatedContentCategory","features":[157]},{"name":"RatedContentDescription","features":[157]},{"name":"RatedContentRestrictions","features":[157]}],"167":[{"name":"CurrentSessionChangedEventArgs","features":[158]},{"name":"GlobalSystemMediaTransportControlsSession","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionManager","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionMediaProperties","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionPlaybackControls","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionPlaybackInfo","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionPlaybackStatus","features":[158]},{"name":"GlobalSystemMediaTransportControlsSessionTimelineProperties","features":[158]},{"name":"ICurrentSessionChangedEventArgs","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSession","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionManager","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionManagerStatics","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionMediaProperties","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionPlaybackControls","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionPlaybackInfo","features":[158]},{"name":"IGlobalSystemMediaTransportControlsSessionTimelineProperties","features":[158]},{"name":"IMediaPropertiesChangedEventArgs","features":[158]},{"name":"IPlaybackInfoChangedEventArgs","features":[158]},{"name":"ISessionsChangedEventArgs","features":[158]},{"name":"ITimelinePropertiesChangedEventArgs","features":[158]},{"name":"MediaPropertiesChangedEventArgs","features":[158]},{"name":"PlaybackInfoChangedEventArgs","features":[158]},{"name":"SessionsChangedEventArgs","features":[158]},{"name":"TimelinePropertiesChangedEventArgs","features":[158]}],"168":[{"name":"AudioDecoderDegradation","features":[159]},{"name":"AudioDecoderDegradationReason","features":[159]},{"name":"AudioStreamDescriptor","features":[159]},{"name":"AudioTrack","features":[159]},{"name":"AudioTrackOpenFailedEventArgs","features":[159]},{"name":"AudioTrackSupportInfo","features":[159]},{"name":"ChapterCue","features":[159]},{"name":"CodecCategory","features":[159]},{"name":"CodecInfo","features":[159]},{"name":"CodecKind","features":[159]},{"name":"CodecQuery","features":[159]},{"name":"CodecSubtypes","features":[159]},{"name":"DataCue","features":[159]},{"name":"FaceDetectedEventArgs","features":[159]},{"name":"FaceDetectionEffect","features":[159]},{"name":"FaceDetectionEffectDefinition","features":[159,160]},{"name":"FaceDetectionEffectFrame","features":[159]},{"name":"FaceDetectionMode","features":[159]},{"name":"HighDynamicRangeControl","features":[159]},{"name":"HighDynamicRangeOutput","features":[159]},{"name":"IAudioStreamDescriptor","features":[159]},{"name":"IAudioStreamDescriptor2","features":[159]},{"name":"IAudioStreamDescriptor3","features":[159]},{"name":"IAudioStreamDescriptorFactory","features":[159]},{"name":"IAudioTrack","features":[159]},{"name":"IAudioTrackOpenFailedEventArgs","features":[159]},{"name":"IAudioTrackSupportInfo","features":[159]},{"name":"IChapterCue","features":[159]},{"name":"ICodecInfo","features":[159]},{"name":"ICodecQuery","features":[159]},{"name":"ICodecSubtypesStatics","features":[159]},{"name":"IDataCue","features":[159]},{"name":"IDataCue2","features":[159]},{"name":"IFaceDetectedEventArgs","features":[159]},{"name":"IFaceDetectionEffect","features":[159]},{"name":"IFaceDetectionEffectDefinition","features":[159]},{"name":"IFaceDetectionEffectFrame","features":[159]},{"name":"IHighDynamicRangeControl","features":[159]},{"name":"IHighDynamicRangeOutput","features":[159]},{"name":"IImageCue","features":[159]},{"name":"IInitializeMediaStreamSourceRequestedEventArgs","features":[159]},{"name":"ILowLightFusionResult","features":[159]},{"name":"ILowLightFusionStatics","features":[159]},{"name":"IMediaBinder","features":[159]},{"name":"IMediaBindingEventArgs","features":[159]},{"name":"IMediaBindingEventArgs2","features":[159]},{"name":"IMediaBindingEventArgs3","features":[159]},{"name":"IMediaCue","features":[159]},{"name":"IMediaCueEventArgs","features":[159]},{"name":"IMediaSource","features":[159]},{"name":"IMediaSource2","features":[159]},{"name":"IMediaSource3","features":[159]},{"name":"IMediaSource4","features":[159]},{"name":"IMediaSource5","features":[159]},{"name":"IMediaSourceAppServiceConnection","features":[159]},{"name":"IMediaSourceAppServiceConnectionFactory","features":[159]},{"name":"IMediaSourceError","features":[159]},{"name":"IMediaSourceOpenOperationCompletedEventArgs","features":[159]},{"name":"IMediaSourceStateChangedEventArgs","features":[159]},{"name":"IMediaSourceStatics","features":[159]},{"name":"IMediaSourceStatics2","features":[159]},{"name":"IMediaSourceStatics3","features":[159]},{"name":"IMediaSourceStatics4","features":[159]},{"name":"IMediaStreamDescriptor","features":[159]},{"name":"IMediaStreamDescriptor2","features":[159]},{"name":"IMediaStreamSample","features":[159]},{"name":"IMediaStreamSample2","features":[159]},{"name":"IMediaStreamSampleProtectionProperties","features":[159]},{"name":"IMediaStreamSampleStatics","features":[159]},{"name":"IMediaStreamSampleStatics2","features":[159]},{"name":"IMediaStreamSource","features":[159]},{"name":"IMediaStreamSource2","features":[159]},{"name":"IMediaStreamSource3","features":[159]},{"name":"IMediaStreamSource4","features":[159]},{"name":"IMediaStreamSourceClosedEventArgs","features":[159]},{"name":"IMediaStreamSourceClosedRequest","features":[159]},{"name":"IMediaStreamSourceFactory","features":[159]},{"name":"IMediaStreamSourceSampleRenderedEventArgs","features":[159]},{"name":"IMediaStreamSourceSampleRequest","features":[159]},{"name":"IMediaStreamSourceSampleRequestDeferral","features":[159]},{"name":"IMediaStreamSourceSampleRequestedEventArgs","features":[159]},{"name":"IMediaStreamSourceStartingEventArgs","features":[159]},{"name":"IMediaStreamSourceStartingRequest","features":[159]},{"name":"IMediaStreamSourceStartingRequestDeferral","features":[159]},{"name":"IMediaStreamSourceSwitchStreamsRequest","features":[159]},{"name":"IMediaStreamSourceSwitchStreamsRequestDeferral","features":[159]},{"name":"IMediaStreamSourceSwitchStreamsRequestedEventArgs","features":[159]},{"name":"IMediaTrack","features":[159]},{"name":"IMseSourceBuffer","features":[159]},{"name":"IMseSourceBufferList","features":[159]},{"name":"IMseStreamSource","features":[159]},{"name":"IMseStreamSource2","features":[159]},{"name":"IMseStreamSourceStatics","features":[159]},{"name":"ISceneAnalysisEffect","features":[159]},{"name":"ISceneAnalysisEffectFrame","features":[159]},{"name":"ISceneAnalysisEffectFrame2","features":[159]},{"name":"ISceneAnalyzedEventArgs","features":[159]},{"name":"ISingleSelectMediaTrackList","features":[159]},{"name":"ISpeechCue","features":[159]},{"name":"ITimedMetadataStreamDescriptor","features":[159]},{"name":"ITimedMetadataStreamDescriptorFactory","features":[159]},{"name":"ITimedMetadataTrack","features":[159]},{"name":"ITimedMetadataTrack2","features":[159]},{"name":"ITimedMetadataTrackError","features":[159]},{"name":"ITimedMetadataTrackFactory","features":[159]},{"name":"ITimedMetadataTrackFailedEventArgs","features":[159]},{"name":"ITimedMetadataTrackProvider","features":[159]},{"name":"ITimedTextBouten","features":[159]},{"name":"ITimedTextCue","features":[159]},{"name":"ITimedTextLine","features":[159]},{"name":"ITimedTextRegion","features":[159]},{"name":"ITimedTextRuby","features":[159]},{"name":"ITimedTextSource","features":[159]},{"name":"ITimedTextSourceResolveResultEventArgs","features":[159]},{"name":"ITimedTextSourceStatics","features":[159]},{"name":"ITimedTextSourceStatics2","features":[159]},{"name":"ITimedTextStyle","features":[159]},{"name":"ITimedTextStyle2","features":[159]},{"name":"ITimedTextStyle3","features":[159]},{"name":"ITimedTextSubformat","features":[159]},{"name":"IVideoStabilizationEffect","features":[159]},{"name":"IVideoStabilizationEffectEnabledChangedEventArgs","features":[159]},{"name":"IVideoStreamDescriptor","features":[159]},{"name":"IVideoStreamDescriptor2","features":[159]},{"name":"IVideoStreamDescriptorFactory","features":[159]},{"name":"IVideoTrack","features":[159]},{"name":"IVideoTrackOpenFailedEventArgs","features":[159]},{"name":"IVideoTrackSupportInfo","features":[159]},{"name":"ImageCue","features":[159]},{"name":"InitializeMediaStreamSourceRequestedEventArgs","features":[159]},{"name":"LowLightFusion","features":[159]},{"name":"LowLightFusionResult","features":[159]},{"name":"MediaBinder","features":[159]},{"name":"MediaBindingEventArgs","features":[159]},{"name":"MediaCueEventArgs","features":[159]},{"name":"MediaDecoderStatus","features":[159]},{"name":"MediaSource","features":[159]},{"name":"MediaSourceAppServiceConnection","features":[159]},{"name":"MediaSourceError","features":[159]},{"name":"MediaSourceOpenOperationCompletedEventArgs","features":[159]},{"name":"MediaSourceState","features":[159]},{"name":"MediaSourceStateChangedEventArgs","features":[159]},{"name":"MediaSourceStatus","features":[159]},{"name":"MediaStreamSample","features":[159]},{"name":"MediaStreamSamplePropertySet","features":[36,159]},{"name":"MediaStreamSampleProtectionProperties","features":[159]},{"name":"MediaStreamSource","features":[159]},{"name":"MediaStreamSourceClosedEventArgs","features":[159]},{"name":"MediaStreamSourceClosedReason","features":[159]},{"name":"MediaStreamSourceClosedRequest","features":[159]},{"name":"MediaStreamSourceErrorStatus","features":[159]},{"name":"MediaStreamSourceSampleRenderedEventArgs","features":[159]},{"name":"MediaStreamSourceSampleRequest","features":[159]},{"name":"MediaStreamSourceSampleRequestDeferral","features":[159]},{"name":"MediaStreamSourceSampleRequestedEventArgs","features":[159]},{"name":"MediaStreamSourceStartingEventArgs","features":[159]},{"name":"MediaStreamSourceStartingRequest","features":[159]},{"name":"MediaStreamSourceStartingRequestDeferral","features":[159]},{"name":"MediaStreamSourceSwitchStreamsRequest","features":[159]},{"name":"MediaStreamSourceSwitchStreamsRequestDeferral","features":[159]},{"name":"MediaStreamSourceSwitchStreamsRequestedEventArgs","features":[159]},{"name":"MediaTrackKind","features":[159]},{"name":"MseAppendMode","features":[159]},{"name":"MseEndOfStreamStatus","features":[159]},{"name":"MseReadyState","features":[159]},{"name":"MseSourceBuffer","features":[159]},{"name":"MseSourceBufferList","features":[159]},{"name":"MseStreamSource","features":[159]},{"name":"MseTimeRange","features":[76,159]},{"name":"SceneAnalysisEffect","features":[159]},{"name":"SceneAnalysisEffectDefinition","features":[159,160]},{"name":"SceneAnalysisEffectFrame","features":[159]},{"name":"SceneAnalysisRecommendation","features":[159]},{"name":"SceneAnalyzedEventArgs","features":[159]},{"name":"SpeechCue","features":[159]},{"name":"TimedMetadataKind","features":[159]},{"name":"TimedMetadataStreamDescriptor","features":[159]},{"name":"TimedMetadataTrack","features":[159]},{"name":"TimedMetadataTrackError","features":[159]},{"name":"TimedMetadataTrackErrorCode","features":[159]},{"name":"TimedMetadataTrackFailedEventArgs","features":[159]},{"name":"TimedTextBouten","features":[159]},{"name":"TimedTextBoutenPosition","features":[159]},{"name":"TimedTextBoutenType","features":[159]},{"name":"TimedTextCue","features":[159]},{"name":"TimedTextDisplayAlignment","features":[159]},{"name":"TimedTextDouble","features":[159]},{"name":"TimedTextFlowDirection","features":[159]},{"name":"TimedTextFontStyle","features":[159]},{"name":"TimedTextLine","features":[159]},{"name":"TimedTextLineAlignment","features":[159]},{"name":"TimedTextPadding","features":[159]},{"name":"TimedTextPoint","features":[159]},{"name":"TimedTextRegion","features":[159]},{"name":"TimedTextRuby","features":[159]},{"name":"TimedTextRubyAlign","features":[159]},{"name":"TimedTextRubyPosition","features":[159]},{"name":"TimedTextRubyReserve","features":[159]},{"name":"TimedTextScrollMode","features":[159]},{"name":"TimedTextSize","features":[159]},{"name":"TimedTextSource","features":[159]},{"name":"TimedTextSourceResolveResultEventArgs","features":[159]},{"name":"TimedTextStyle","features":[159]},{"name":"TimedTextSubformat","features":[159]},{"name":"TimedTextUnit","features":[159]},{"name":"TimedTextWeight","features":[159]},{"name":"TimedTextWrapping","features":[159]},{"name":"TimedTextWritingMode","features":[159]},{"name":"VideoStabilizationEffect","features":[159]},{"name":"VideoStabilizationEffectDefinition","features":[159,160]},{"name":"VideoStabilizationEffectEnabledChangedEventArgs","features":[159]},{"name":"VideoStabilizationEffectEnabledChangedReason","features":[159]},{"name":"VideoStreamDescriptor","features":[159]},{"name":"VideoTrack","features":[159]},{"name":"VideoTrackOpenFailedEventArgs","features":[159]},{"name":"VideoTrackSupportInfo","features":[159]}],"169":[{"name":"ISoundLevelBrokerStatics","features":[161]},{"name":"SoundLevelBroker","features":[161]}],"170":[{"name":"AdvancedPhotoCaptureSettings","features":[162]},{"name":"AdvancedPhotoControl","features":[162]},{"name":"AdvancedPhotoMode","features":[162]},{"name":"AudioDeviceController","features":[162]},{"name":"AudioDeviceModule","features":[162]},{"name":"AudioDeviceModuleNotificationEventArgs","features":[162]},{"name":"AudioDeviceModulesManager","features":[162]},{"name":"AudioDeviceRole","features":[162]},{"name":"AutoFocusRange","features":[162]},{"name":"CallControl","features":[162]},{"name":"CallControlContract","features":[162]},{"name":"CallControlEventHandler","features":[162]},{"name":"CameraOcclusionInfo","features":[162]},{"name":"CameraOcclusionKind","features":[162]},{"name":"CameraOcclusionState","features":[162]},{"name":"CameraOcclusionStateChangedEventArgs","features":[162]},{"name":"CameraStreamState","features":[162]},{"name":"CaptureSceneMode","features":[162]},{"name":"CaptureUse","features":[162]},{"name":"ColorTemperaturePreset","features":[162]},{"name":"DefaultAudioCaptureDeviceChangedEventArgs","features":[162]},{"name":"DefaultAudioRenderDeviceChangedEventArgs","features":[162]},{"name":"DialRequestedEventArgs","features":[162]},{"name":"DialRequestedEventHandler","features":[162]},{"name":"DigitalWindowBounds","features":[162]},{"name":"DigitalWindowCapability","features":[162]},{"name":"DigitalWindowControl","features":[162]},{"name":"DigitalWindowMode","features":[162]},{"name":"ExposureCompensationControl","features":[162]},{"name":"ExposureControl","features":[162]},{"name":"ExposurePriorityVideoControl","features":[162]},{"name":"FlashControl","features":[162]},{"name":"FocusControl","features":[162]},{"name":"FocusMode","features":[162]},{"name":"FocusPreset","features":[162]},{"name":"FocusSettings","features":[162]},{"name":"HdrVideoControl","features":[162]},{"name":"HdrVideoMode","features":[162]},{"name":"IAdvancedPhotoCaptureSettings","features":[162]},{"name":"IAdvancedPhotoControl","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController10","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController11","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController2","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController3","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController4","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController5","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController6","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController7","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController8","features":[162]},{"name":"IAdvancedVideoCaptureDeviceController9","features":[162]},{"name":"IAudioDeviceController","features":[162]},{"name":"IAudioDeviceModule","features":[162]},{"name":"IAudioDeviceModuleNotificationEventArgs","features":[162]},{"name":"IAudioDeviceModulesManager","features":[162]},{"name":"IAudioDeviceModulesManagerFactory","features":[162]},{"name":"ICallControl","features":[162]},{"name":"ICallControlStatics","features":[162]},{"name":"ICameraOcclusionInfo","features":[162]},{"name":"ICameraOcclusionState","features":[162]},{"name":"ICameraOcclusionStateChangedEventArgs","features":[162]},{"name":"IDefaultAudioDeviceChangedEventArgs","features":[162]},{"name":"IDialRequestedEventArgs","features":[162]},{"name":"IDigitalWindowBounds","features":[162]},{"name":"IDigitalWindowCapability","features":[162]},{"name":"IDigitalWindowControl","features":[162]},{"name":"IExposureCompensationControl","features":[162]},{"name":"IExposureControl","features":[162]},{"name":"IExposurePriorityVideoControl","features":[162]},{"name":"IFlashControl","features":[162]},{"name":"IFlashControl2","features":[162]},{"name":"IFocusControl","features":[162]},{"name":"IFocusControl2","features":[162]},{"name":"IFocusSettings","features":[162]},{"name":"IHdrVideoControl","features":[162]},{"name":"IInfraredTorchControl","features":[162]},{"name":"IIsoSpeedControl","features":[162]},{"name":"IIsoSpeedControl2","features":[162]},{"name":"IKeypadPressedEventArgs","features":[162]},{"name":"ILowLagPhotoControl","features":[162]},{"name":"ILowLagPhotoSequenceControl","features":[162]},{"name":"IMediaDeviceControl","features":[162]},{"name":"IMediaDeviceControlCapabilities","features":[162]},{"name":"IMediaDeviceController","features":[162]},{"name":"IMediaDeviceStatics","features":[162]},{"name":"IModuleCommandResult","features":[162]},{"name":"IOpticalImageStabilizationControl","features":[162]},{"name":"IPanelBasedOptimizationControl","features":[162]},{"name":"IPhotoConfirmationControl","features":[162]},{"name":"IRedialRequestedEventArgs","features":[162]},{"name":"IRegionOfInterest","features":[162]},{"name":"IRegionOfInterest2","features":[162]},{"name":"IRegionsOfInterestControl","features":[162]},{"name":"ISceneModeControl","features":[162]},{"name":"ITorchControl","features":[162]},{"name":"IVideoDeviceController","features":[162]},{"name":"IVideoDeviceControllerGetDevicePropertyResult","features":[162]},{"name":"IVideoTemporalDenoisingControl","features":[162]},{"name":"IWhiteBalanceControl","features":[162]},{"name":"IZoomControl","features":[162]},{"name":"IZoomControl2","features":[162]},{"name":"IZoomSettings","features":[162]},{"name":"InfraredTorchControl","features":[162]},{"name":"InfraredTorchMode","features":[162]},{"name":"IsoSpeedControl","features":[162]},{"name":"IsoSpeedPreset","features":[162]},{"name":"KeypadPressedEventArgs","features":[162]},{"name":"KeypadPressedEventHandler","features":[162]},{"name":"LowLagPhotoControl","features":[162]},{"name":"LowLagPhotoSequenceControl","features":[162]},{"name":"ManualFocusDistance","features":[162]},{"name":"MediaCaptureFocusState","features":[162]},{"name":"MediaCaptureOptimization","features":[162]},{"name":"MediaCapturePauseBehavior","features":[162]},{"name":"MediaDevice","features":[162]},{"name":"MediaDeviceControl","features":[162]},{"name":"MediaDeviceControlCapabilities","features":[162]},{"name":"ModuleCommandResult","features":[162]},{"name":"OpticalImageStabilizationControl","features":[162]},{"name":"OpticalImageStabilizationMode","features":[162]},{"name":"PanelBasedOptimizationControl","features":[162]},{"name":"PhotoConfirmationControl","features":[162]},{"name":"RedialRequestedEventArgs","features":[162]},{"name":"RedialRequestedEventHandler","features":[162]},{"name":"RegionOfInterest","features":[162]},{"name":"RegionOfInterestType","features":[162]},{"name":"RegionsOfInterestControl","features":[162]},{"name":"SceneModeControl","features":[162]},{"name":"SendCommandStatus","features":[162]},{"name":"TelephonyKey","features":[162]},{"name":"TorchControl","features":[162]},{"name":"VideoDeviceController","features":[162]},{"name":"VideoDeviceControllerGetDevicePropertyResult","features":[162]},{"name":"VideoDeviceControllerGetDevicePropertyStatus","features":[162]},{"name":"VideoDeviceControllerSetDevicePropertyStatus","features":[162]},{"name":"VideoTemporalDenoisingControl","features":[162]},{"name":"VideoTemporalDenoisingMode","features":[162]},{"name":"WhiteBalanceControl","features":[162]},{"name":"ZoomControl","features":[162]},{"name":"ZoomSettings","features":[162]},{"name":"ZoomTransitionMode","features":[162]}],"171":[{"name":"CameraIntrinsics","features":[163]},{"name":"DepthCorrelatedCoordinateMapper","features":[163]},{"name":"FrameControlCapabilities","features":[163]},{"name":"FrameController","features":[163]},{"name":"FrameExposureCapabilities","features":[163]},{"name":"FrameExposureCompensationCapabilities","features":[163]},{"name":"FrameExposureCompensationControl","features":[163]},{"name":"FrameExposureControl","features":[163]},{"name":"FrameFlashCapabilities","features":[163]},{"name":"FrameFlashControl","features":[163]},{"name":"FrameFlashMode","features":[163]},{"name":"FrameFocusCapabilities","features":[163]},{"name":"FrameFocusControl","features":[163]},{"name":"FrameIsoSpeedCapabilities","features":[163]},{"name":"FrameIsoSpeedControl","features":[163]},{"name":"ICameraIntrinsics","features":[163]},{"name":"ICameraIntrinsics2","features":[163]},{"name":"ICameraIntrinsicsFactory","features":[163]},{"name":"IDepthCorrelatedCoordinateMapper","features":[163]},{"name":"IFrameControlCapabilities","features":[163]},{"name":"IFrameControlCapabilities2","features":[163]},{"name":"IFrameController","features":[163]},{"name":"IFrameController2","features":[163]},{"name":"IFrameExposureCapabilities","features":[163]},{"name":"IFrameExposureCompensationCapabilities","features":[163]},{"name":"IFrameExposureCompensationControl","features":[163]},{"name":"IFrameExposureControl","features":[163]},{"name":"IFrameFlashCapabilities","features":[163]},{"name":"IFrameFlashControl","features":[163]},{"name":"IFrameFocusCapabilities","features":[163]},{"name":"IFrameFocusControl","features":[163]},{"name":"IFrameIsoSpeedCapabilities","features":[163]},{"name":"IFrameIsoSpeedControl","features":[163]},{"name":"IVariablePhotoSequenceController","features":[163]},{"name":"VariablePhotoSequenceController","features":[163]}],"172":[{"name":"DialApp","features":[164]},{"name":"DialAppLaunchResult","features":[164]},{"name":"DialAppState","features":[164]},{"name":"DialAppStateDetails","features":[164]},{"name":"DialAppStopResult","features":[164]},{"name":"DialDevice","features":[164]},{"name":"DialDeviceDisplayStatus","features":[164]},{"name":"DialDevicePicker","features":[164]},{"name":"DialDevicePickerFilter","features":[164]},{"name":"DialDeviceSelectedEventArgs","features":[164]},{"name":"DialDisconnectButtonClickedEventArgs","features":[164]},{"name":"DialReceiverApp","features":[164]},{"name":"IDialApp","features":[164]},{"name":"IDialAppStateDetails","features":[164]},{"name":"IDialDevice","features":[164]},{"name":"IDialDevice2","features":[164]},{"name":"IDialDevicePicker","features":[164]},{"name":"IDialDevicePickerFilter","features":[164]},{"name":"IDialDeviceSelectedEventArgs","features":[164]},{"name":"IDialDeviceStatics","features":[164]},{"name":"IDialDisconnectButtonClickedEventArgs","features":[164]},{"name":"IDialReceiverApp","features":[164]},{"name":"IDialReceiverApp2","features":[164]},{"name":"IDialReceiverAppStatics","features":[164]}],"173":[{"name":"BackgroundAudioTrack","features":[165]},{"name":"EmbeddedAudioTrack","features":[165]},{"name":"IBackgroundAudioTrack","features":[165]},{"name":"IBackgroundAudioTrackStatics","features":[165]},{"name":"IEmbeddedAudioTrack","features":[165]},{"name":"IMediaClip","features":[165]},{"name":"IMediaClipStatics","features":[165]},{"name":"IMediaClipStatics2","features":[165]},{"name":"IMediaComposition","features":[165]},{"name":"IMediaComposition2","features":[165]},{"name":"IMediaCompositionStatics","features":[165]},{"name":"IMediaOverlay","features":[165]},{"name":"IMediaOverlayFactory","features":[165]},{"name":"IMediaOverlayLayer","features":[165]},{"name":"IMediaOverlayLayerFactory","features":[165]},{"name":"MediaClip","features":[165]},{"name":"MediaComposition","features":[165]},{"name":"MediaOverlay","features":[165]},{"name":"MediaOverlayLayer","features":[165]},{"name":"MediaTrimmingPreference","features":[165]},{"name":"VideoFramePrecision","features":[165]}],"174":[{"name":"AudioCaptureEffectsManager","features":[160]},{"name":"AudioEffect","features":[160]},{"name":"AudioEffectDefinition","features":[160]},{"name":"AudioEffectType","features":[160]},{"name":"AudioEffectsManager","features":[160]},{"name":"AudioRenderEffectsManager","features":[160]},{"name":"CompositeVideoFrameContext","features":[160]},{"name":"IAudioCaptureEffectsManager","features":[160]},{"name":"IAudioEffect","features":[160]},{"name":"IAudioEffectDefinition","features":[160]},{"name":"IAudioEffectDefinitionFactory","features":[160]},{"name":"IAudioEffectsManagerStatics","features":[160]},{"name":"IAudioRenderEffectsManager","features":[160]},{"name":"IAudioRenderEffectsManager2","features":[160]},{"name":"IBasicAudioEffect","features":[160]},{"name":"IBasicVideoEffect","features":[160]},{"name":"ICompositeVideoFrameContext","features":[160]},{"name":"IProcessAudioFrameContext","features":[160]},{"name":"IProcessVideoFrameContext","features":[160]},{"name":"ISlowMotionEffectDefinition","features":[160]},{"name":"IVideoCompositor","features":[160]},{"name":"IVideoCompositorDefinition","features":[160]},{"name":"IVideoCompositorDefinitionFactory","features":[160]},{"name":"IVideoEffectDefinition","features":[160]},{"name":"IVideoEffectDefinitionFactory","features":[160]},{"name":"IVideoTransformEffectDefinition","features":[160]},{"name":"IVideoTransformEffectDefinition2","features":[160]},{"name":"IVideoTransformSphericalProjection","features":[160]},{"name":"MediaEffectClosedReason","features":[160]},{"name":"MediaMemoryTypes","features":[160]},{"name":"ProcessAudioFrameContext","features":[160]},{"name":"ProcessVideoFrameContext","features":[160]},{"name":"SlowMotionEffectDefinition","features":[160]},{"name":"VideoCompositorDefinition","features":[160]},{"name":"VideoEffectDefinition","features":[160]},{"name":"VideoTransformEffectDefinition","features":[160]},{"name":"VideoTransformSphericalProjection","features":[160]}],"175":[{"name":"DetectedFace","features":[166]},{"name":"FaceDetector","features":[166]},{"name":"FaceTracker","features":[166]},{"name":"IDetectedFace","features":[166]},{"name":"IFaceDetector","features":[166]},{"name":"IFaceDetectorStatics","features":[166]},{"name":"IFaceTracker","features":[166]},{"name":"IFaceTrackerStatics","features":[166]}],"176":[{"name":"IPhotoImportDeleteImportedItemsFromSourceResult","features":[167]},{"name":"IPhotoImportFindItemsResult","features":[167]},{"name":"IPhotoImportFindItemsResult2","features":[167]},{"name":"IPhotoImportImportItemsResult","features":[167]},{"name":"IPhotoImportItem","features":[167]},{"name":"IPhotoImportItem2","features":[167]},{"name":"IPhotoImportItemImportedEventArgs","features":[167]},{"name":"IPhotoImportManagerStatics","features":[167]},{"name":"IPhotoImportOperation","features":[167]},{"name":"IPhotoImportSelectionChangedEventArgs","features":[167]},{"name":"IPhotoImportSession","features":[167]},{"name":"IPhotoImportSession2","features":[167]},{"name":"IPhotoImportSidecar","features":[167]},{"name":"IPhotoImportSource","features":[167]},{"name":"IPhotoImportSourceStatics","features":[167]},{"name":"IPhotoImportStorageMedium","features":[167]},{"name":"IPhotoImportVideoSegment","features":[167]},{"name":"PhotoImportAccessMode","features":[167]},{"name":"PhotoImportConnectionTransport","features":[167]},{"name":"PhotoImportContentType","features":[167]},{"name":"PhotoImportContentTypeFilter","features":[167]},{"name":"PhotoImportDeleteImportedItemsFromSourceResult","features":[167]},{"name":"PhotoImportFindItemsResult","features":[167]},{"name":"PhotoImportImportItemsResult","features":[167]},{"name":"PhotoImportImportMode","features":[167]},{"name":"PhotoImportItem","features":[167]},{"name":"PhotoImportItemImportedEventArgs","features":[167]},{"name":"PhotoImportItemSelectionMode","features":[167]},{"name":"PhotoImportManager","features":[167]},{"name":"PhotoImportOperation","features":[167]},{"name":"PhotoImportPowerSource","features":[167]},{"name":"PhotoImportProgress","features":[167]},{"name":"PhotoImportSelectionChangedEventArgs","features":[167]},{"name":"PhotoImportSession","features":[167]},{"name":"PhotoImportSidecar","features":[167]},{"name":"PhotoImportSource","features":[167]},{"name":"PhotoImportSourceType","features":[167]},{"name":"PhotoImportStage","features":[167]},{"name":"PhotoImportStorageMedium","features":[167]},{"name":"PhotoImportStorageMediumType","features":[167]},{"name":"PhotoImportSubfolderCreationMode","features":[167]},{"name":"PhotoImportSubfolderDateFormat","features":[167]},{"name":"PhotoImportVideoSegment","features":[167]}],"177":[{"name":"AudioEncodingProperties","features":[168]},{"name":"AudioEncodingQuality","features":[168]},{"name":"Av1ProfileIds","features":[168]},{"name":"ContainerEncodingProperties","features":[168]},{"name":"H264ProfileIds","features":[168]},{"name":"HevcProfileIds","features":[168]},{"name":"IAudioEncodingProperties","features":[168]},{"name":"IAudioEncodingProperties2","features":[168]},{"name":"IAudioEncodingProperties3","features":[168]},{"name":"IAudioEncodingPropertiesStatics","features":[168]},{"name":"IAudioEncodingPropertiesStatics2","features":[168]},{"name":"IAudioEncodingPropertiesWithFormatUserData","features":[168]},{"name":"IAv1ProfileIdsStatics","features":[168]},{"name":"IContainerEncodingProperties","features":[168]},{"name":"IContainerEncodingProperties2","features":[168]},{"name":"IH264ProfileIdsStatics","features":[168]},{"name":"IHevcProfileIdsStatics","features":[168]},{"name":"IImageEncodingProperties","features":[168]},{"name":"IImageEncodingProperties2","features":[168]},{"name":"IImageEncodingPropertiesStatics","features":[168]},{"name":"IImageEncodingPropertiesStatics2","features":[168]},{"name":"IImageEncodingPropertiesStatics3","features":[168]},{"name":"IMediaEncodingProfile","features":[168]},{"name":"IMediaEncodingProfile2","features":[168]},{"name":"IMediaEncodingProfile3","features":[168]},{"name":"IMediaEncodingProfileStatics","features":[168]},{"name":"IMediaEncodingProfileStatics2","features":[168]},{"name":"IMediaEncodingProfileStatics3","features":[168]},{"name":"IMediaEncodingProfileStatics4","features":[168]},{"name":"IMediaEncodingProperties","features":[168]},{"name":"IMediaEncodingSubtypesStatics","features":[168]},{"name":"IMediaEncodingSubtypesStatics2","features":[168]},{"name":"IMediaEncodingSubtypesStatics3","features":[168]},{"name":"IMediaEncodingSubtypesStatics4","features":[168]},{"name":"IMediaEncodingSubtypesStatics5","features":[168]},{"name":"IMediaEncodingSubtypesStatics6","features":[168]},{"name":"IMediaEncodingSubtypesStatics7","features":[168]},{"name":"IMediaRatio","features":[168]},{"name":"IMpeg2ProfileIdsStatics","features":[168]},{"name":"ITimedMetadataEncodingProperties","features":[168]},{"name":"ITimedMetadataEncodingPropertiesStatics","features":[168]},{"name":"IVideoEncodingProperties","features":[168]},{"name":"IVideoEncodingProperties2","features":[168]},{"name":"IVideoEncodingProperties3","features":[168]},{"name":"IVideoEncodingProperties4","features":[168]},{"name":"IVideoEncodingProperties5","features":[168]},{"name":"IVideoEncodingPropertiesStatics","features":[168]},{"name":"IVideoEncodingPropertiesStatics2","features":[168]},{"name":"IVideoEncodingPropertiesStatics3","features":[168]},{"name":"IVp9ProfileIdsStatics","features":[168]},{"name":"ImageEncodingProperties","features":[168]},{"name":"MediaEncodingProfile","features":[168]},{"name":"MediaEncodingSubtypes","features":[168]},{"name":"MediaMirroringOptions","features":[168]},{"name":"MediaPixelFormat","features":[168]},{"name":"MediaPropertySet","features":[36,168]},{"name":"MediaRatio","features":[168]},{"name":"MediaRotation","features":[168]},{"name":"MediaThumbnailFormat","features":[168]},{"name":"Mpeg2ProfileIds","features":[168]},{"name":"SphericalVideoFrameFormat","features":[168]},{"name":"StereoscopicVideoPackingMode","features":[168]},{"name":"TimedMetadataEncodingProperties","features":[168]},{"name":"VideoEncodingProperties","features":[168]},{"name":"VideoEncodingQuality","features":[168]},{"name":"Vp9ProfileIds","features":[168]}],"178":[{"name":"IMiracastReceiver","features":[169]},{"name":"IMiracastReceiverApplySettingsResult","features":[169]},{"name":"IMiracastReceiverConnection","features":[169]},{"name":"IMiracastReceiverConnectionCreatedEventArgs","features":[169]},{"name":"IMiracastReceiverCursorImageChannel","features":[169]},{"name":"IMiracastReceiverCursorImageChannelSettings","features":[169]},{"name":"IMiracastReceiverDisconnectedEventArgs","features":[169]},{"name":"IMiracastReceiverGameControllerDevice","features":[169]},{"name":"IMiracastReceiverInputDevices","features":[169]},{"name":"IMiracastReceiverKeyboardDevice","features":[169]},{"name":"IMiracastReceiverMediaSourceCreatedEventArgs","features":[169]},{"name":"IMiracastReceiverSession","features":[169]},{"name":"IMiracastReceiverSessionStartResult","features":[169]},{"name":"IMiracastReceiverSettings","features":[169]},{"name":"IMiracastReceiverStatus","features":[169]},{"name":"IMiracastReceiverStreamControl","features":[169]},{"name":"IMiracastReceiverVideoStreamSettings","features":[169]},{"name":"IMiracastTransmitter","features":[169]},{"name":"MiracastReceiver","features":[169]},{"name":"MiracastReceiverApplySettingsResult","features":[169]},{"name":"MiracastReceiverApplySettingsStatus","features":[169]},{"name":"MiracastReceiverAuthorizationMethod","features":[169]},{"name":"MiracastReceiverConnection","features":[169]},{"name":"MiracastReceiverConnectionCreatedEventArgs","features":[169]},{"name":"MiracastReceiverCursorImageChannel","features":[169]},{"name":"MiracastReceiverCursorImageChannelSettings","features":[169]},{"name":"MiracastReceiverDisconnectReason","features":[169]},{"name":"MiracastReceiverDisconnectedEventArgs","features":[169]},{"name":"MiracastReceiverGameControllerDevice","features":[169]},{"name":"MiracastReceiverGameControllerDeviceUsageMode","features":[169]},{"name":"MiracastReceiverInputDevices","features":[169]},{"name":"MiracastReceiverKeyboardDevice","features":[169]},{"name":"MiracastReceiverListeningStatus","features":[169]},{"name":"MiracastReceiverMediaSourceCreatedEventArgs","features":[169]},{"name":"MiracastReceiverSession","features":[169]},{"name":"MiracastReceiverSessionStartResult","features":[169]},{"name":"MiracastReceiverSessionStartStatus","features":[169]},{"name":"MiracastReceiverSettings","features":[169]},{"name":"MiracastReceiverStatus","features":[169]},{"name":"MiracastReceiverStreamControl","features":[169]},{"name":"MiracastReceiverVideoStreamSettings","features":[169]},{"name":"MiracastReceiverWiFiStatus","features":[169]},{"name":"MiracastTransmitter","features":[169]},{"name":"MiracastTransmitterAuthorizationStatus","features":[169]}],"179":[{"name":"IOcrEngine","features":[170]},{"name":"IOcrEngineStatics","features":[170]},{"name":"IOcrLine","features":[170]},{"name":"IOcrResult","features":[170]},{"name":"IOcrWord","features":[170]},{"name":"OcrEngine","features":[170]},{"name":"OcrLine","features":[170]},{"name":"OcrResult","features":[170]},{"name":"OcrWord","features":[170]}],"180":[{"name":"CurrentTimeChangeRequestedEventArgs","features":[171]},{"name":"ICurrentTimeChangeRequestedEventArgs","features":[171]},{"name":"IMuteChangeRequestedEventArgs","features":[171]},{"name":"IPlayToConnection","features":[171]},{"name":"IPlayToConnectionErrorEventArgs","features":[171]},{"name":"IPlayToConnectionStateChangedEventArgs","features":[171]},{"name":"IPlayToConnectionTransferredEventArgs","features":[171]},{"name":"IPlayToManager","features":[171]},{"name":"IPlayToManagerStatics","features":[171]},{"name":"IPlayToReceiver","features":[171]},{"name":"IPlayToSource","features":[171]},{"name":"IPlayToSourceDeferral","features":[171]},{"name":"IPlayToSourceRequest","features":[171]},{"name":"IPlayToSourceRequestedEventArgs","features":[171]},{"name":"IPlayToSourceSelectedEventArgs","features":[171]},{"name":"IPlayToSourceWithPreferredSourceUri","features":[171]},{"name":"IPlaybackRateChangeRequestedEventArgs","features":[171]},{"name":"ISourceChangeRequestedEventArgs","features":[171]},{"name":"IVolumeChangeRequestedEventArgs","features":[171]},{"name":"MuteChangeRequestedEventArgs","features":[171]},{"name":"PlayToConnection","features":[171]},{"name":"PlayToConnectionError","features":[171]},{"name":"PlayToConnectionErrorEventArgs","features":[171]},{"name":"PlayToConnectionState","features":[171]},{"name":"PlayToConnectionStateChangedEventArgs","features":[171]},{"name":"PlayToConnectionTransferredEventArgs","features":[171]},{"name":"PlayToManager","features":[171]},{"name":"PlayToReceiver","features":[171]},{"name":"PlayToSource","features":[171]},{"name":"PlayToSourceDeferral","features":[171]},{"name":"PlayToSourceRequest","features":[171]},{"name":"PlayToSourceRequestedEventArgs","features":[171]},{"name":"PlayToSourceSelectedEventArgs","features":[171]},{"name":"PlaybackRateChangeRequestedEventArgs","features":[171]},{"name":"SourceChangeRequestedEventArgs","features":[171]},{"name":"VolumeChangeRequestedEventArgs","features":[171]}],"181":[{"name":"AutoLoadedDisplayPropertyKind","features":[172]},{"name":"BackgroundMediaPlayer","features":[172]},{"name":"CurrentMediaPlaybackItemChangedEventArgs","features":[172]},{"name":"FailedMediaStreamKind","features":[172]},{"name":"IBackgroundMediaPlayerStatics","features":[172]},{"name":"ICurrentMediaPlaybackItemChangedEventArgs","features":[172]},{"name":"ICurrentMediaPlaybackItemChangedEventArgs2","features":[172]},{"name":"IMediaBreak","features":[172]},{"name":"IMediaBreakEndedEventArgs","features":[172]},{"name":"IMediaBreakFactory","features":[172]},{"name":"IMediaBreakManager","features":[172]},{"name":"IMediaBreakSchedule","features":[172]},{"name":"IMediaBreakSeekedOverEventArgs","features":[172]},{"name":"IMediaBreakSkippedEventArgs","features":[172]},{"name":"IMediaBreakStartedEventArgs","features":[172]},{"name":"IMediaEnginePlaybackSource","features":[172]},{"name":"IMediaItemDisplayProperties","features":[172]},{"name":"IMediaPlaybackCommandManager","features":[172]},{"name":"IMediaPlaybackCommandManagerAutoRepeatModeReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerCommandBehavior","features":[172]},{"name":"IMediaPlaybackCommandManagerFastForwardReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerNextReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPauseReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPlayReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPositionReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerPreviousReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerRateReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerRewindReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackCommandManagerShuffleReceivedEventArgs","features":[172]},{"name":"IMediaPlaybackItem","features":[172]},{"name":"IMediaPlaybackItem2","features":[172]},{"name":"IMediaPlaybackItem3","features":[172]},{"name":"IMediaPlaybackItemError","features":[172]},{"name":"IMediaPlaybackItemFactory","features":[172]},{"name":"IMediaPlaybackItemFactory2","features":[172]},{"name":"IMediaPlaybackItemFailedEventArgs","features":[172]},{"name":"IMediaPlaybackItemOpenedEventArgs","features":[172]},{"name":"IMediaPlaybackItemStatics","features":[172]},{"name":"IMediaPlaybackList","features":[172]},{"name":"IMediaPlaybackList2","features":[172]},{"name":"IMediaPlaybackList3","features":[172]},{"name":"IMediaPlaybackSession","features":[172]},{"name":"IMediaPlaybackSession2","features":[172]},{"name":"IMediaPlaybackSession3","features":[172]},{"name":"IMediaPlaybackSessionBufferingStartedEventArgs","features":[172]},{"name":"IMediaPlaybackSessionOutputDegradationPolicyState","features":[172]},{"name":"IMediaPlaybackSource","features":[172]},{"name":"IMediaPlaybackSphericalVideoProjection","features":[172]},{"name":"IMediaPlaybackTimedMetadataTrackList","features":[172]},{"name":"IMediaPlayer","features":[172]},{"name":"IMediaPlayer2","features":[172]},{"name":"IMediaPlayer3","features":[172]},{"name":"IMediaPlayer4","features":[172]},{"name":"IMediaPlayer5","features":[172]},{"name":"IMediaPlayer6","features":[172]},{"name":"IMediaPlayer7","features":[172]},{"name":"IMediaPlayerDataReceivedEventArgs","features":[172]},{"name":"IMediaPlayerEffects","features":[172]},{"name":"IMediaPlayerEffects2","features":[172]},{"name":"IMediaPlayerFailedEventArgs","features":[172]},{"name":"IMediaPlayerRateChangedEventArgs","features":[172]},{"name":"IMediaPlayerSource","features":[172]},{"name":"IMediaPlayerSource2","features":[172]},{"name":"IMediaPlayerSurface","features":[172]},{"name":"IPlaybackMediaMarker","features":[172]},{"name":"IPlaybackMediaMarkerFactory","features":[172]},{"name":"IPlaybackMediaMarkerReachedEventArgs","features":[172]},{"name":"IPlaybackMediaMarkerSequence","features":[172]},{"name":"ITimedMetadataPresentationModeChangedEventArgs","features":[172]},{"name":"MediaBreak","features":[172]},{"name":"MediaBreakEndedEventArgs","features":[172]},{"name":"MediaBreakInsertionMethod","features":[172]},{"name":"MediaBreakManager","features":[172]},{"name":"MediaBreakSchedule","features":[172]},{"name":"MediaBreakSeekedOverEventArgs","features":[172]},{"name":"MediaBreakSkippedEventArgs","features":[172]},{"name":"MediaBreakStartedEventArgs","features":[172]},{"name":"MediaCommandEnablingRule","features":[172]},{"name":"MediaItemDisplayProperties","features":[172]},{"name":"MediaPlaybackAudioTrackList","features":[36,159,172]},{"name":"MediaPlaybackCommandManager","features":[172]},{"name":"MediaPlaybackCommandManagerAutoRepeatModeReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerCommandBehavior","features":[172]},{"name":"MediaPlaybackCommandManagerFastForwardReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerNextReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPauseReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPlayReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPositionReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerPreviousReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerRateReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerRewindReceivedEventArgs","features":[172]},{"name":"MediaPlaybackCommandManagerShuffleReceivedEventArgs","features":[172]},{"name":"MediaPlaybackItem","features":[172]},{"name":"MediaPlaybackItemChangedReason","features":[172]},{"name":"MediaPlaybackItemError","features":[172]},{"name":"MediaPlaybackItemErrorCode","features":[172]},{"name":"MediaPlaybackItemFailedEventArgs","features":[172]},{"name":"MediaPlaybackItemOpenedEventArgs","features":[172]},{"name":"MediaPlaybackList","features":[172]},{"name":"MediaPlaybackSession","features":[172]},{"name":"MediaPlaybackSessionBufferingStartedEventArgs","features":[172]},{"name":"MediaPlaybackSessionOutputDegradationPolicyState","features":[172]},{"name":"MediaPlaybackSessionVideoConstrictionReason","features":[172]},{"name":"MediaPlaybackSphericalVideoProjection","features":[172]},{"name":"MediaPlaybackState","features":[172]},{"name":"MediaPlaybackTimedMetadataTrackList","features":[36,159,172]},{"name":"MediaPlaybackVideoTrackList","features":[36,159,172]},{"name":"MediaPlayer","features":[172]},{"name":"MediaPlayerAudioCategory","features":[172]},{"name":"MediaPlayerAudioDeviceType","features":[172]},{"name":"MediaPlayerDataReceivedEventArgs","features":[172]},{"name":"MediaPlayerError","features":[172]},{"name":"MediaPlayerFailedEventArgs","features":[172]},{"name":"MediaPlayerRateChangedEventArgs","features":[172]},{"name":"MediaPlayerState","features":[172]},{"name":"MediaPlayerSurface","features":[172]},{"name":"PlaybackMediaMarker","features":[172]},{"name":"PlaybackMediaMarkerReachedEventArgs","features":[172]},{"name":"PlaybackMediaMarkerSequence","features":[172]},{"name":"SphericalVideoProjectionMode","features":[172]},{"name":"StereoscopicVideoRenderMode","features":[172]},{"name":"TimedMetadataPresentationModeChangedEventArgs","features":[172]},{"name":"TimedMetadataTrackPresentationMode","features":[172]}],"182":[{"name":"IPlaylist","features":[173]},{"name":"IPlaylistStatics","features":[173]},{"name":"Playlist","features":[173]},{"name":"PlaylistFormat","features":[173]},{"name":"PlaylistsContract","features":[173]}],"183":[{"name":"ComponentLoadFailedEventArgs","features":[174]},{"name":"ComponentLoadFailedEventHandler","features":[174]},{"name":"ComponentRenewal","features":[174]},{"name":"GraphicsTrustStatus","features":[174]},{"name":"HdcpProtection","features":[174]},{"name":"HdcpSession","features":[174]},{"name":"HdcpSetProtectionResult","features":[174]},{"name":"IComponentLoadFailedEventArgs","features":[174]},{"name":"IComponentRenewalStatics","features":[174]},{"name":"IHdcpSession","features":[174]},{"name":"IMediaProtectionManager","features":[174]},{"name":"IMediaProtectionPMPServer","features":[174]},{"name":"IMediaProtectionPMPServerFactory","features":[174]},{"name":"IMediaProtectionServiceCompletion","features":[174]},{"name":"IMediaProtectionServiceRequest","features":[174]},{"name":"IProtectionCapabilities","features":[174]},{"name":"IRevocationAndRenewalInformation","features":[174]},{"name":"IRevocationAndRenewalItem","features":[174]},{"name":"IServiceRequestedEventArgs","features":[174]},{"name":"IServiceRequestedEventArgs2","features":[174]},{"name":"MediaProtectionManager","features":[174]},{"name":"MediaProtectionPMPServer","features":[174]},{"name":"MediaProtectionServiceCompletion","features":[174]},{"name":"ProtectionCapabilities","features":[174]},{"name":"ProtectionCapabilityResult","features":[174]},{"name":"ProtectionRenewalContract","features":[174]},{"name":"RebootNeededEventHandler","features":[174]},{"name":"RenewalStatus","features":[174]},{"name":"RevocationAndRenewalInformation","features":[174]},{"name":"RevocationAndRenewalItem","features":[174]},{"name":"RevocationAndRenewalReasons","features":[174]},{"name":"ServiceRequestedEventArgs","features":[174]},{"name":"ServiceRequestedEventHandler","features":[174]}],"184":[{"name":"INDClient","features":[175]},{"name":"INDClientFactory","features":[175]},{"name":"INDClosedCaptionDataReceivedEventArgs","features":[175]},{"name":"INDCustomData","features":[175]},{"name":"INDCustomDataFactory","features":[175]},{"name":"INDDownloadEngine","features":[175]},{"name":"INDDownloadEngineNotifier","features":[175]},{"name":"INDLicenseFetchCompletedEventArgs","features":[175]},{"name":"INDLicenseFetchDescriptor","features":[175]},{"name":"INDLicenseFetchDescriptorFactory","features":[175]},{"name":"INDLicenseFetchResult","features":[175]},{"name":"INDMessenger","features":[175]},{"name":"INDProximityDetectionCompletedEventArgs","features":[175]},{"name":"INDRegistrationCompletedEventArgs","features":[175]},{"name":"INDSendResult","features":[175]},{"name":"INDStartResult","features":[175]},{"name":"INDStorageFileHelper","features":[175]},{"name":"INDStreamParser","features":[175]},{"name":"INDStreamParserNotifier","features":[175]},{"name":"INDTCPMessengerFactory","features":[175]},{"name":"INDTransmitterProperties","features":[175]},{"name":"IPlayReadyContentHeader","features":[175]},{"name":"IPlayReadyContentHeader2","features":[175]},{"name":"IPlayReadyContentHeaderFactory","features":[175]},{"name":"IPlayReadyContentHeaderFactory2","features":[175]},{"name":"IPlayReadyContentResolver","features":[175]},{"name":"IPlayReadyDomain","features":[175]},{"name":"IPlayReadyDomainIterableFactory","features":[175]},{"name":"IPlayReadyDomainJoinServiceRequest","features":[175]},{"name":"IPlayReadyDomainLeaveServiceRequest","features":[175]},{"name":"IPlayReadyITADataGenerator","features":[175]},{"name":"IPlayReadyIndividualizationServiceRequest","features":[175]},{"name":"IPlayReadyLicense","features":[175]},{"name":"IPlayReadyLicense2","features":[175]},{"name":"IPlayReadyLicenseAcquisitionServiceRequest","features":[175]},{"name":"IPlayReadyLicenseAcquisitionServiceRequest2","features":[175]},{"name":"IPlayReadyLicenseAcquisitionServiceRequest3","features":[175]},{"name":"IPlayReadyLicenseIterableFactory","features":[175]},{"name":"IPlayReadyLicenseManagement","features":[175]},{"name":"IPlayReadyLicenseSession","features":[175]},{"name":"IPlayReadyLicenseSession2","features":[175]},{"name":"IPlayReadyLicenseSessionFactory","features":[175]},{"name":"IPlayReadyMeteringReportServiceRequest","features":[175]},{"name":"IPlayReadyRevocationServiceRequest","features":[175]},{"name":"IPlayReadySecureStopIterableFactory","features":[175]},{"name":"IPlayReadySecureStopServiceRequest","features":[175]},{"name":"IPlayReadySecureStopServiceRequestFactory","features":[175]},{"name":"IPlayReadyServiceRequest","features":[175]},{"name":"IPlayReadySoapMessage","features":[175]},{"name":"IPlayReadyStatics","features":[175]},{"name":"IPlayReadyStatics2","features":[175]},{"name":"IPlayReadyStatics3","features":[175]},{"name":"IPlayReadyStatics4","features":[175]},{"name":"IPlayReadyStatics5","features":[175]},{"name":"NDCertificateFeature","features":[175]},{"name":"NDCertificatePlatformID","features":[175]},{"name":"NDCertificateType","features":[175]},{"name":"NDClient","features":[175]},{"name":"NDClosedCaptionFormat","features":[175]},{"name":"NDContentIDType","features":[175]},{"name":"NDCustomData","features":[175]},{"name":"NDDownloadEngineNotifier","features":[175]},{"name":"NDLicenseFetchDescriptor","features":[175]},{"name":"NDMediaStreamType","features":[175]},{"name":"NDProximityDetectionType","features":[175]},{"name":"NDStartAsyncOptions","features":[175]},{"name":"NDStorageFileHelper","features":[175]},{"name":"NDStreamParserNotifier","features":[175]},{"name":"NDTCPMessenger","features":[175]},{"name":"PlayReadyContentHeader","features":[175]},{"name":"PlayReadyContentResolver","features":[175]},{"name":"PlayReadyDecryptorSetup","features":[175]},{"name":"PlayReadyDomain","features":[175]},{"name":"PlayReadyDomainIterable","features":[36,175]},{"name":"PlayReadyDomainIterator","features":[36,175]},{"name":"PlayReadyDomainJoinServiceRequest","features":[175]},{"name":"PlayReadyDomainLeaveServiceRequest","features":[175]},{"name":"PlayReadyEncryptionAlgorithm","features":[175]},{"name":"PlayReadyHardwareDRMFeatures","features":[175]},{"name":"PlayReadyITADataFormat","features":[175]},{"name":"PlayReadyITADataGenerator","features":[175]},{"name":"PlayReadyIndividualizationServiceRequest","features":[175]},{"name":"PlayReadyLicense","features":[175]},{"name":"PlayReadyLicenseAcquisitionServiceRequest","features":[175]},{"name":"PlayReadyLicenseIterable","features":[36,175]},{"name":"PlayReadyLicenseIterator","features":[36,175]},{"name":"PlayReadyLicenseManagement","features":[175]},{"name":"PlayReadyLicenseSession","features":[175]},{"name":"PlayReadyMeteringReportServiceRequest","features":[175]},{"name":"PlayReadyRevocationServiceRequest","features":[175]},{"name":"PlayReadySecureStopIterable","features":[36,175]},{"name":"PlayReadySecureStopIterator","features":[36,175]},{"name":"PlayReadySecureStopServiceRequest","features":[175]},{"name":"PlayReadySoapMessage","features":[175]},{"name":"PlayReadyStatics","features":[175]}],"185":[{"name":"AudioRenderCategory","features":[176]}],"186":[{"name":"ISpeechContinuousRecognitionCompletedEventArgs","features":[177]},{"name":"ISpeechContinuousRecognitionResultGeneratedEventArgs","features":[177]},{"name":"ISpeechContinuousRecognitionSession","features":[177]},{"name":"ISpeechRecognitionCompilationResult","features":[177]},{"name":"ISpeechRecognitionConstraint","features":[177]},{"name":"ISpeechRecognitionGrammarFileConstraint","features":[177]},{"name":"ISpeechRecognitionGrammarFileConstraintFactory","features":[177]},{"name":"ISpeechRecognitionHypothesis","features":[177]},{"name":"ISpeechRecognitionHypothesisGeneratedEventArgs","features":[177]},{"name":"ISpeechRecognitionListConstraint","features":[177]},{"name":"ISpeechRecognitionListConstraintFactory","features":[177]},{"name":"ISpeechRecognitionQualityDegradingEventArgs","features":[177]},{"name":"ISpeechRecognitionResult","features":[177]},{"name":"ISpeechRecognitionResult2","features":[177]},{"name":"ISpeechRecognitionSemanticInterpretation","features":[177]},{"name":"ISpeechRecognitionTopicConstraint","features":[177]},{"name":"ISpeechRecognitionTopicConstraintFactory","features":[177]},{"name":"ISpeechRecognitionVoiceCommandDefinitionConstraint","features":[177]},{"name":"ISpeechRecognizer","features":[177]},{"name":"ISpeechRecognizer2","features":[177]},{"name":"ISpeechRecognizerFactory","features":[177]},{"name":"ISpeechRecognizerStateChangedEventArgs","features":[177]},{"name":"ISpeechRecognizerStatics","features":[177]},{"name":"ISpeechRecognizerStatics2","features":[177]},{"name":"ISpeechRecognizerTimeouts","features":[177]},{"name":"ISpeechRecognizerUIOptions","features":[177]},{"name":"IVoiceCommandManager","features":[177]},{"name":"IVoiceCommandSet","features":[177]},{"name":"SpeechContinuousRecognitionCompletedEventArgs","features":[177]},{"name":"SpeechContinuousRecognitionMode","features":[177]},{"name":"SpeechContinuousRecognitionResultGeneratedEventArgs","features":[177]},{"name":"SpeechContinuousRecognitionSession","features":[177]},{"name":"SpeechRecognitionAudioProblem","features":[177]},{"name":"SpeechRecognitionCompilationResult","features":[177]},{"name":"SpeechRecognitionConfidence","features":[177]},{"name":"SpeechRecognitionConstraintProbability","features":[177]},{"name":"SpeechRecognitionConstraintType","features":[177]},{"name":"SpeechRecognitionGrammarFileConstraint","features":[177]},{"name":"SpeechRecognitionHypothesis","features":[177]},{"name":"SpeechRecognitionHypothesisGeneratedEventArgs","features":[177]},{"name":"SpeechRecognitionListConstraint","features":[177]},{"name":"SpeechRecognitionQualityDegradingEventArgs","features":[177]},{"name":"SpeechRecognitionResult","features":[177]},{"name":"SpeechRecognitionResultStatus","features":[177]},{"name":"SpeechRecognitionScenario","features":[177]},{"name":"SpeechRecognitionSemanticInterpretation","features":[177]},{"name":"SpeechRecognitionTopicConstraint","features":[177]},{"name":"SpeechRecognitionVoiceCommandDefinitionConstraint","features":[177]},{"name":"SpeechRecognizer","features":[177]},{"name":"SpeechRecognizerState","features":[177]},{"name":"SpeechRecognizerStateChangedEventArgs","features":[177]},{"name":"SpeechRecognizerTimeouts","features":[177]},{"name":"SpeechRecognizerUIOptions","features":[177]},{"name":"VoiceCommandManager","features":[177]},{"name":"VoiceCommandSet","features":[177]}],"187":[{"name":"IInstalledVoicesStatic","features":[178]},{"name":"IInstalledVoicesStatic2","features":[178]},{"name":"ISpeechSynthesisStream","features":[178]},{"name":"ISpeechSynthesizer","features":[178]},{"name":"ISpeechSynthesizer2","features":[178]},{"name":"ISpeechSynthesizerOptions","features":[178]},{"name":"ISpeechSynthesizerOptions2","features":[178]},{"name":"ISpeechSynthesizerOptions3","features":[178]},{"name":"IVoiceInformation","features":[178]},{"name":"SpeechAppendedSilence","features":[178]},{"name":"SpeechPunctuationSilence","features":[178]},{"name":"SpeechSynthesisStream","features":[178]},{"name":"SpeechSynthesizer","features":[178]},{"name":"SpeechSynthesizerOptions","features":[178]},{"name":"VoiceGender","features":[178]},{"name":"VoiceInformation","features":[178]}],"188":[{"name":"AdaptiveMediaSource","features":[179]},{"name":"AdaptiveMediaSourceAdvancedSettings","features":[179]},{"name":"AdaptiveMediaSourceCorrelatedTimes","features":[179]},{"name":"AdaptiveMediaSourceCreationResult","features":[179]},{"name":"AdaptiveMediaSourceCreationStatus","features":[179]},{"name":"AdaptiveMediaSourceDiagnosticAvailableEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDiagnosticType","features":[179]},{"name":"AdaptiveMediaSourceDiagnostics","features":[179]},{"name":"AdaptiveMediaSourceDownloadBitrateChangedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadBitrateChangedReason","features":[179]},{"name":"AdaptiveMediaSourceDownloadCompletedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadFailedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadRequestedDeferral","features":[179]},{"name":"AdaptiveMediaSourceDownloadRequestedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceDownloadResult","features":[179]},{"name":"AdaptiveMediaSourceDownloadStatistics","features":[179]},{"name":"AdaptiveMediaSourcePlaybackBitrateChangedEventArgs","features":[179]},{"name":"AdaptiveMediaSourceResourceType","features":[179]},{"name":"IAdaptiveMediaSource","features":[179]},{"name":"IAdaptiveMediaSource2","features":[179]},{"name":"IAdaptiveMediaSource3","features":[179]},{"name":"IAdaptiveMediaSourceAdvancedSettings","features":[179]},{"name":"IAdaptiveMediaSourceCorrelatedTimes","features":[179]},{"name":"IAdaptiveMediaSourceCreationResult","features":[179]},{"name":"IAdaptiveMediaSourceCreationResult2","features":[179]},{"name":"IAdaptiveMediaSourceDiagnosticAvailableEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDiagnosticAvailableEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDiagnosticAvailableEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDiagnostics","features":[179]},{"name":"IAdaptiveMediaSourceDownloadBitrateChangedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadBitrateChangedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadCompletedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadCompletedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadCompletedEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDownloadFailedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadFailedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadFailedEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedDeferral","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedEventArgs2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadRequestedEventArgs3","features":[179]},{"name":"IAdaptiveMediaSourceDownloadResult","features":[179]},{"name":"IAdaptiveMediaSourceDownloadResult2","features":[179]},{"name":"IAdaptiveMediaSourceDownloadStatistics","features":[179]},{"name":"IAdaptiveMediaSourcePlaybackBitrateChangedEventArgs","features":[179]},{"name":"IAdaptiveMediaSourceStatics","features":[179]}],"189":[{"name":"IMediaTranscoder","features":[180]},{"name":"IMediaTranscoder2","features":[180]},{"name":"IPrepareTranscodeResult","features":[180]},{"name":"MediaTranscoder","features":[180]},{"name":"MediaVideoProcessingAlgorithm","features":[180]},{"name":"PrepareTranscodeResult","features":[180]},{"name":"TranscodeFailureReason","features":[180]}],"190":[{"name":"DomainNameType","features":[181]},{"name":"EndpointPair","features":[181]},{"name":"HostName","features":[181]},{"name":"HostNameSortOptions","features":[181]},{"name":"HostNameType","features":[181]},{"name":"IEndpointPair","features":[181]},{"name":"IEndpointPairFactory","features":[181]},{"name":"IHostName","features":[181]},{"name":"IHostNameFactory","features":[181]},{"name":"IHostNameStatics","features":[181]}],"191":[{"name":"BackgroundDownloadProgress","features":[182]},{"name":"BackgroundDownloader","features":[182]},{"name":"BackgroundTransferBehavior","features":[182]},{"name":"BackgroundTransferCompletionGroup","features":[182]},{"name":"BackgroundTransferCompletionGroupTriggerDetails","features":[182]},{"name":"BackgroundTransferContentPart","features":[182]},{"name":"BackgroundTransferCostPolicy","features":[182]},{"name":"BackgroundTransferError","features":[182]},{"name":"BackgroundTransferFileRange","features":[182]},{"name":"BackgroundTransferGroup","features":[182]},{"name":"BackgroundTransferPriority","features":[182]},{"name":"BackgroundTransferRangesDownloadedEventArgs","features":[182]},{"name":"BackgroundTransferStatus","features":[182]},{"name":"BackgroundUploadProgress","features":[182]},{"name":"BackgroundUploader","features":[182]},{"name":"ContentPrefetcher","features":[182]},{"name":"DownloadOperation","features":[182]},{"name":"IBackgroundDownloader","features":[182]},{"name":"IBackgroundDownloader2","features":[182]},{"name":"IBackgroundDownloader3","features":[182]},{"name":"IBackgroundDownloaderFactory","features":[182]},{"name":"IBackgroundDownloaderStaticMethods","features":[182]},{"name":"IBackgroundDownloaderStaticMethods2","features":[182]},{"name":"IBackgroundDownloaderUserConsent","features":[182]},{"name":"IBackgroundTransferBase","features":[182]},{"name":"IBackgroundTransferCompletionGroup","features":[182]},{"name":"IBackgroundTransferCompletionGroupTriggerDetails","features":[182]},{"name":"IBackgroundTransferContentPart","features":[182]},{"name":"IBackgroundTransferContentPartFactory","features":[182]},{"name":"IBackgroundTransferErrorStaticMethods","features":[182]},{"name":"IBackgroundTransferGroup","features":[182]},{"name":"IBackgroundTransferGroupStatics","features":[182]},{"name":"IBackgroundTransferOperation","features":[182]},{"name":"IBackgroundTransferOperationPriority","features":[182]},{"name":"IBackgroundTransferRangesDownloadedEventArgs","features":[182]},{"name":"IBackgroundUploader","features":[182]},{"name":"IBackgroundUploader2","features":[182]},{"name":"IBackgroundUploader3","features":[182]},{"name":"IBackgroundUploaderFactory","features":[182]},{"name":"IBackgroundUploaderStaticMethods","features":[182]},{"name":"IBackgroundUploaderStaticMethods2","features":[182]},{"name":"IBackgroundUploaderUserConsent","features":[182]},{"name":"IContentPrefetcher","features":[182]},{"name":"IContentPrefetcherTime","features":[182]},{"name":"IDownloadOperation","features":[182]},{"name":"IDownloadOperation2","features":[182]},{"name":"IDownloadOperation3","features":[182]},{"name":"IDownloadOperation4","features":[182]},{"name":"IDownloadOperation5","features":[182]},{"name":"IResponseInformation","features":[182]},{"name":"IUnconstrainedTransferRequestResult","features":[182]},{"name":"IUploadOperation","features":[182]},{"name":"IUploadOperation2","features":[182]},{"name":"IUploadOperation3","features":[182]},{"name":"IUploadOperation4","features":[182]},{"name":"ResponseInformation","features":[182]},{"name":"UnconstrainedTransferRequestResult","features":[182]},{"name":"UploadOperation","features":[182]}],"192":[{"name":"AttributedNetworkUsage","features":[183]},{"name":"CellularApnAuthenticationType","features":[183]},{"name":"CellularApnContext","features":[183]},{"name":"ConnectionCost","features":[183]},{"name":"ConnectionProfile","features":[183]},{"name":"ConnectionProfileDeleteStatus","features":[183]},{"name":"ConnectionProfileFilter","features":[183]},{"name":"ConnectionSession","features":[183]},{"name":"ConnectivityInterval","features":[183]},{"name":"ConnectivityManager","features":[183]},{"name":"DataPlanStatus","features":[183]},{"name":"DataPlanUsage","features":[183]},{"name":"DataUsage","features":[183]},{"name":"DataUsageGranularity","features":[183]},{"name":"DomainAuthenticationKind","features":[183]},{"name":"DomainConnectivityLevel","features":[183]},{"name":"IAttributedNetworkUsage","features":[183]},{"name":"ICellularApnContext","features":[183]},{"name":"ICellularApnContext2","features":[183]},{"name":"IConnectionCost","features":[183]},{"name":"IConnectionCost2","features":[183]},{"name":"IConnectionProfile","features":[183]},{"name":"IConnectionProfile2","features":[183]},{"name":"IConnectionProfile3","features":[183]},{"name":"IConnectionProfile4","features":[183]},{"name":"IConnectionProfile5","features":[183]},{"name":"IConnectionProfile6","features":[183]},{"name":"IConnectionProfileFilter","features":[183]},{"name":"IConnectionProfileFilter2","features":[183]},{"name":"IConnectionProfileFilter3","features":[183]},{"name":"IConnectionSession","features":[183]},{"name":"IConnectivityInterval","features":[183]},{"name":"IConnectivityManagerStatics","features":[183]},{"name":"IDataPlanStatus","features":[183]},{"name":"IDataPlanUsage","features":[183]},{"name":"IDataUsage","features":[183]},{"name":"IIPInformation","features":[183]},{"name":"ILanIdentifier","features":[183]},{"name":"ILanIdentifierData","features":[183]},{"name":"INetworkAdapter","features":[183]},{"name":"INetworkInformationStatics","features":[183]},{"name":"INetworkInformationStatics2","features":[183]},{"name":"INetworkItem","features":[183]},{"name":"INetworkSecuritySettings","features":[183]},{"name":"INetworkStateChangeEventDetails","features":[183]},{"name":"INetworkStateChangeEventDetails2","features":[183]},{"name":"INetworkUsage","features":[183]},{"name":"IPInformation","features":[183]},{"name":"IProviderNetworkUsage","features":[183]},{"name":"IProxyConfiguration","features":[183]},{"name":"IRoutePolicy","features":[183]},{"name":"IRoutePolicyFactory","features":[183]},{"name":"IWlanConnectionProfileDetails","features":[183]},{"name":"IWwanConnectionProfileDetails","features":[183]},{"name":"IWwanConnectionProfileDetails2","features":[183]},{"name":"LanIdentifier","features":[183]},{"name":"LanIdentifierData","features":[183]},{"name":"NetworkAdapter","features":[183]},{"name":"NetworkAuthenticationType","features":[183]},{"name":"NetworkConnectivityLevel","features":[183]},{"name":"NetworkCostType","features":[183]},{"name":"NetworkEncryptionType","features":[183]},{"name":"NetworkInformation","features":[183]},{"name":"NetworkItem","features":[183]},{"name":"NetworkSecuritySettings","features":[183]},{"name":"NetworkStateChangeEventDetails","features":[183]},{"name":"NetworkStatusChangedEventHandler","features":[183]},{"name":"NetworkTypes","features":[183]},{"name":"NetworkUsage","features":[183]},{"name":"NetworkUsageStates","features":[183]},{"name":"ProviderNetworkUsage","features":[183]},{"name":"ProxyConfiguration","features":[183]},{"name":"RoamingStates","features":[183]},{"name":"RoutePolicy","features":[183]},{"name":"TriStates","features":[183]},{"name":"WlanConnectionProfileDetails","features":[183]},{"name":"WwanConnectionProfileDetails","features":[183]},{"name":"WwanContract","features":[183]},{"name":"WwanDataClass","features":[183]},{"name":"WwanNetworkIPKind","features":[183]},{"name":"WwanNetworkRegistrationState","features":[183]}],"193":[{"name":"DataClasses","features":[184]},{"name":"ESim","features":[184]},{"name":"ESimAddedEventArgs","features":[184]},{"name":"ESimAuthenticationPreference","features":[184]},{"name":"ESimDiscoverEvent","features":[184]},{"name":"ESimDiscoverResult","features":[184]},{"name":"ESimDiscoverResultKind","features":[184]},{"name":"ESimDownloadProfileMetadataResult","features":[184]},{"name":"ESimManager","features":[184]},{"name":"ESimOperationResult","features":[184]},{"name":"ESimOperationStatus","features":[184]},{"name":"ESimPolicy","features":[184]},{"name":"ESimProfile","features":[184]},{"name":"ESimProfileClass","features":[184]},{"name":"ESimProfileInstallProgress","features":[184]},{"name":"ESimProfileMetadata","features":[184]},{"name":"ESimProfileMetadataState","features":[184]},{"name":"ESimProfilePolicy","features":[184]},{"name":"ESimProfileState","features":[184]},{"name":"ESimRemovedEventArgs","features":[184]},{"name":"ESimServiceInfo","features":[184]},{"name":"ESimState","features":[184]},{"name":"ESimUpdatedEventArgs","features":[184]},{"name":"ESimWatcher","features":[184]},{"name":"ESimWatcherStatus","features":[184]},{"name":"FdnAccessManager","features":[184]},{"name":"HotspotAuthenticationContext","features":[184]},{"name":"HotspotAuthenticationEventDetails","features":[184]},{"name":"HotspotAuthenticationResponseCode","features":[184]},{"name":"HotspotCredentialsAuthenticationResult","features":[184]},{"name":"IESim","features":[184]},{"name":"IESim2","features":[184]},{"name":"IESim3","features":[184]},{"name":"IESimAddedEventArgs","features":[184]},{"name":"IESimDiscoverEvent","features":[184]},{"name":"IESimDiscoverResult","features":[184]},{"name":"IESimDownloadProfileMetadataResult","features":[184]},{"name":"IESimManagerStatics","features":[184]},{"name":"IESimOperationResult","features":[184]},{"name":"IESimPolicy","features":[184]},{"name":"IESimProfile","features":[184]},{"name":"IESimProfileMetadata","features":[184]},{"name":"IESimProfilePolicy","features":[184]},{"name":"IESimRemovedEventArgs","features":[184]},{"name":"IESimServiceInfo","features":[184]},{"name":"IESimUpdatedEventArgs","features":[184]},{"name":"IESimWatcher","features":[184]},{"name":"IFdnAccessManagerStatics","features":[184]},{"name":"IHotspotAuthenticationContext","features":[184]},{"name":"IHotspotAuthenticationContext2","features":[184]},{"name":"IHotspotAuthenticationContextStatics","features":[184]},{"name":"IHotspotAuthenticationEventDetails","features":[184]},{"name":"IHotspotCredentialsAuthenticationResult","features":[184]},{"name":"IKnownCSimFilePathsStatics","features":[184]},{"name":"IKnownRuimFilePathsStatics","features":[184]},{"name":"IKnownSimFilePathsStatics","features":[184]},{"name":"IKnownUSimFilePathsStatics","features":[184]},{"name":"IMobileBroadbandAccount","features":[184]},{"name":"IMobileBroadbandAccount2","features":[184]},{"name":"IMobileBroadbandAccount3","features":[184]},{"name":"IMobileBroadbandAccountEventArgs","features":[184]},{"name":"IMobileBroadbandAccountStatics","features":[184]},{"name":"IMobileBroadbandAccountUpdatedEventArgs","features":[184]},{"name":"IMobileBroadbandAccountWatcher","features":[184]},{"name":"IMobileBroadbandAntennaSar","features":[184]},{"name":"IMobileBroadbandAntennaSarFactory","features":[184]},{"name":"IMobileBroadbandCellCdma","features":[184]},{"name":"IMobileBroadbandCellGsm","features":[184]},{"name":"IMobileBroadbandCellLte","features":[184]},{"name":"IMobileBroadbandCellNR","features":[184]},{"name":"IMobileBroadbandCellTdscdma","features":[184]},{"name":"IMobileBroadbandCellUmts","features":[184]},{"name":"IMobileBroadbandCellsInfo","features":[184]},{"name":"IMobileBroadbandCellsInfo2","features":[184]},{"name":"IMobileBroadbandCurrentSlotIndexChangedEventArgs","features":[184]},{"name":"IMobileBroadbandDeviceInformation","features":[184]},{"name":"IMobileBroadbandDeviceInformation2","features":[184]},{"name":"IMobileBroadbandDeviceInformation3","features":[184]},{"name":"IMobileBroadbandDeviceInformation4","features":[184]},{"name":"IMobileBroadbandDeviceService","features":[184]},{"name":"IMobileBroadbandDeviceServiceCommandResult","features":[184]},{"name":"IMobileBroadbandDeviceServiceCommandSession","features":[184]},{"name":"IMobileBroadbandDeviceServiceDataReceivedEventArgs","features":[184]},{"name":"IMobileBroadbandDeviceServiceDataSession","features":[184]},{"name":"IMobileBroadbandDeviceServiceInformation","features":[184]},{"name":"IMobileBroadbandDeviceServiceTriggerDetails","features":[184]},{"name":"IMobileBroadbandDeviceServiceTriggerDetails2","features":[184]},{"name":"IMobileBroadbandModem","features":[184]},{"name":"IMobileBroadbandModem2","features":[184]},{"name":"IMobileBroadbandModem3","features":[184]},{"name":"IMobileBroadbandModem4","features":[184]},{"name":"IMobileBroadbandModemConfiguration","features":[184]},{"name":"IMobileBroadbandModemConfiguration2","features":[184]},{"name":"IMobileBroadbandModemIsolation","features":[184]},{"name":"IMobileBroadbandModemIsolationFactory","features":[184]},{"name":"IMobileBroadbandModemStatics","features":[184]},{"name":"IMobileBroadbandNetwork","features":[184]},{"name":"IMobileBroadbandNetwork2","features":[184]},{"name":"IMobileBroadbandNetwork3","features":[184]},{"name":"IMobileBroadbandNetworkRegistrationStateChange","features":[184]},{"name":"IMobileBroadbandNetworkRegistrationStateChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandPco","features":[184]},{"name":"IMobileBroadbandPcoDataChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandPin","features":[184]},{"name":"IMobileBroadbandPinLockStateChange","features":[184]},{"name":"IMobileBroadbandPinLockStateChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandPinManager","features":[184]},{"name":"IMobileBroadbandPinOperationResult","features":[184]},{"name":"IMobileBroadbandRadioStateChange","features":[184]},{"name":"IMobileBroadbandRadioStateChangeTriggerDetails","features":[184]},{"name":"IMobileBroadbandSarManager","features":[184]},{"name":"IMobileBroadbandSlotInfo","features":[184]},{"name":"IMobileBroadbandSlotInfo2","features":[184]},{"name":"IMobileBroadbandSlotInfoChangedEventArgs","features":[184]},{"name":"IMobileBroadbandSlotManager","features":[184]},{"name":"IMobileBroadbandTransmissionStateChangedEventArgs","features":[184]},{"name":"IMobileBroadbandUicc","features":[184]},{"name":"IMobileBroadbandUiccApp","features":[184]},{"name":"IMobileBroadbandUiccAppReadRecordResult","features":[184]},{"name":"IMobileBroadbandUiccAppRecordDetailsResult","features":[184]},{"name":"IMobileBroadbandUiccAppsResult","features":[184]},{"name":"INetworkOperatorDataUsageTriggerDetails","features":[184]},{"name":"INetworkOperatorNotificationEventDetails","features":[184]},{"name":"INetworkOperatorTetheringAccessPointConfiguration","features":[184]},{"name":"INetworkOperatorTetheringAccessPointConfiguration2","features":[184]},{"name":"INetworkOperatorTetheringClient","features":[184]},{"name":"INetworkOperatorTetheringClientManager","features":[184]},{"name":"INetworkOperatorTetheringEntitlementCheck","features":[184]},{"name":"INetworkOperatorTetheringManager","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics2","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics3","features":[184]},{"name":"INetworkOperatorTetheringManagerStatics4","features":[184]},{"name":"INetworkOperatorTetheringOperationResult","features":[184]},{"name":"IProvisionFromXmlDocumentResults","features":[184]},{"name":"IProvisionedProfile","features":[184]},{"name":"IProvisioningAgent","features":[184]},{"name":"IProvisioningAgentStaticMethods","features":[184]},{"name":"ITetheringEntitlementCheckTriggerDetails","features":[184]},{"name":"IUssdMessage","features":[184]},{"name":"IUssdMessageFactory","features":[184]},{"name":"IUssdReply","features":[184]},{"name":"IUssdSession","features":[184]},{"name":"IUssdSessionStatics","features":[184]},{"name":"KnownCSimFilePaths","features":[184]},{"name":"KnownRuimFilePaths","features":[184]},{"name":"KnownSimFilePaths","features":[184]},{"name":"KnownUSimFilePaths","features":[184]},{"name":"LegacyNetworkOperatorsContract","features":[184]},{"name":"MobileBroadbandAccount","features":[184]},{"name":"MobileBroadbandAccountEventArgs","features":[184]},{"name":"MobileBroadbandAccountUpdatedEventArgs","features":[184]},{"name":"MobileBroadbandAccountWatcher","features":[184]},{"name":"MobileBroadbandAccountWatcherStatus","features":[184]},{"name":"MobileBroadbandAntennaSar","features":[184]},{"name":"MobileBroadbandCellCdma","features":[184]},{"name":"MobileBroadbandCellGsm","features":[184]},{"name":"MobileBroadbandCellLte","features":[184]},{"name":"MobileBroadbandCellNR","features":[184]},{"name":"MobileBroadbandCellTdscdma","features":[184]},{"name":"MobileBroadbandCellUmts","features":[184]},{"name":"MobileBroadbandCellsInfo","features":[184]},{"name":"MobileBroadbandCurrentSlotIndexChangedEventArgs","features":[184]},{"name":"MobileBroadbandDeviceInformation","features":[184]},{"name":"MobileBroadbandDeviceService","features":[184]},{"name":"MobileBroadbandDeviceServiceCommandResult","features":[184]},{"name":"MobileBroadbandDeviceServiceCommandSession","features":[184]},{"name":"MobileBroadbandDeviceServiceDataReceivedEventArgs","features":[184]},{"name":"MobileBroadbandDeviceServiceDataSession","features":[184]},{"name":"MobileBroadbandDeviceServiceInformation","features":[184]},{"name":"MobileBroadbandDeviceServiceTriggerDetails","features":[184]},{"name":"MobileBroadbandDeviceType","features":[184]},{"name":"MobileBroadbandModem","features":[184]},{"name":"MobileBroadbandModemConfiguration","features":[184]},{"name":"MobileBroadbandModemIsolation","features":[184]},{"name":"MobileBroadbandModemStatus","features":[184]},{"name":"MobileBroadbandNetwork","features":[184]},{"name":"MobileBroadbandNetworkRegistrationStateChange","features":[184]},{"name":"MobileBroadbandNetworkRegistrationStateChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandPco","features":[184]},{"name":"MobileBroadbandPcoDataChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandPin","features":[184]},{"name":"MobileBroadbandPinFormat","features":[184]},{"name":"MobileBroadbandPinLockState","features":[184]},{"name":"MobileBroadbandPinLockStateChange","features":[184]},{"name":"MobileBroadbandPinLockStateChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandPinManager","features":[184]},{"name":"MobileBroadbandPinOperationResult","features":[184]},{"name":"MobileBroadbandPinType","features":[184]},{"name":"MobileBroadbandRadioState","features":[184]},{"name":"MobileBroadbandRadioStateChange","features":[184]},{"name":"MobileBroadbandRadioStateChangeTriggerDetails","features":[184]},{"name":"MobileBroadbandSarManager","features":[184]},{"name":"MobileBroadbandSlotInfo","features":[184]},{"name":"MobileBroadbandSlotInfoChangedEventArgs","features":[184]},{"name":"MobileBroadbandSlotManager","features":[184]},{"name":"MobileBroadbandSlotState","features":[184]},{"name":"MobileBroadbandTransmissionStateChangedEventArgs","features":[184]},{"name":"MobileBroadbandUicc","features":[184]},{"name":"MobileBroadbandUiccApp","features":[184]},{"name":"MobileBroadbandUiccAppOperationStatus","features":[184]},{"name":"MobileBroadbandUiccAppReadRecordResult","features":[184]},{"name":"MobileBroadbandUiccAppRecordDetailsResult","features":[184]},{"name":"MobileBroadbandUiccAppsResult","features":[184]},{"name":"NetworkDeviceStatus","features":[184]},{"name":"NetworkOperatorDataUsageNotificationKind","features":[184]},{"name":"NetworkOperatorDataUsageTriggerDetails","features":[184]},{"name":"NetworkOperatorEventMessageType","features":[184]},{"name":"NetworkOperatorNotificationEventDetails","features":[184]},{"name":"NetworkOperatorTetheringAccessPointConfiguration","features":[184]},{"name":"NetworkOperatorTetheringClient","features":[184]},{"name":"NetworkOperatorTetheringManager","features":[184]},{"name":"NetworkOperatorTetheringOperationResult","features":[184]},{"name":"NetworkOperatorsFdnContract","features":[184]},{"name":"NetworkRegistrationState","features":[184]},{"name":"ProfileMediaType","features":[184]},{"name":"ProfileUsage","features":[76,184]},{"name":"ProvisionFromXmlDocumentResults","features":[184]},{"name":"ProvisionedProfile","features":[184]},{"name":"ProvisioningAgent","features":[184]},{"name":"TetheringCapability","features":[184]},{"name":"TetheringEntitlementCheckTriggerDetails","features":[184]},{"name":"TetheringOperationStatus","features":[184]},{"name":"TetheringOperationalState","features":[184]},{"name":"TetheringWiFiBand","features":[184]},{"name":"UiccAccessCondition","features":[184]},{"name":"UiccAppKind","features":[184]},{"name":"UiccAppRecordKind","features":[184]},{"name":"UssdMessage","features":[184]},{"name":"UssdReply","features":[184]},{"name":"UssdResultCode","features":[184]},{"name":"UssdSession","features":[184]}],"194":[{"name":"ConnectionRequestedEventArgs","features":[185]},{"name":"DeviceArrivedEventHandler","features":[185]},{"name":"DeviceDepartedEventHandler","features":[185]},{"name":"IConnectionRequestedEventArgs","features":[185]},{"name":"IPeerFinderStatics","features":[185]},{"name":"IPeerFinderStatics2","features":[185]},{"name":"IPeerInformation","features":[185]},{"name":"IPeerInformation3","features":[185]},{"name":"IPeerInformationWithHostAndService","features":[185]},{"name":"IPeerWatcher","features":[185]},{"name":"IProximityDevice","features":[185]},{"name":"IProximityDeviceStatics","features":[185]},{"name":"IProximityMessage","features":[185]},{"name":"ITriggeredConnectionStateChangedEventArgs","features":[185]},{"name":"MessageReceivedHandler","features":[185]},{"name":"MessageTransmittedHandler","features":[185]},{"name":"PeerDiscoveryTypes","features":[185]},{"name":"PeerFinder","features":[185]},{"name":"PeerInformation","features":[185]},{"name":"PeerRole","features":[185]},{"name":"PeerWatcher","features":[185]},{"name":"PeerWatcherStatus","features":[185]},{"name":"ProximityDevice","features":[185]},{"name":"ProximityMessage","features":[185]},{"name":"TriggeredConnectState","features":[185]},{"name":"TriggeredConnectionStateChangedEventArgs","features":[185]}],"195":[{"name":"IPushNotificationChannel","features":[186]},{"name":"IPushNotificationChannelManagerForUser","features":[186]},{"name":"IPushNotificationChannelManagerForUser2","features":[186]},{"name":"IPushNotificationChannelManagerStatics","features":[186]},{"name":"IPushNotificationChannelManagerStatics2","features":[186]},{"name":"IPushNotificationChannelManagerStatics3","features":[186]},{"name":"IPushNotificationChannelManagerStatics4","features":[186]},{"name":"IPushNotificationChannelsRevokedEventArgs","features":[186]},{"name":"IPushNotificationReceivedEventArgs","features":[186]},{"name":"IRawNotification","features":[186]},{"name":"IRawNotification2","features":[186]},{"name":"IRawNotification3","features":[186]},{"name":"PushNotificationChannel","features":[186]},{"name":"PushNotificationChannelManager","features":[186]},{"name":"PushNotificationChannelManagerForUser","features":[186]},{"name":"PushNotificationChannelsRevokedEventArgs","features":[186]},{"name":"PushNotificationReceivedEventArgs","features":[186]},{"name":"PushNotificationType","features":[186]},{"name":"RawNotification","features":[186]}],"196":[{"name":"DnssdRegistrationResult","features":[187]},{"name":"DnssdRegistrationStatus","features":[187]},{"name":"DnssdServiceInstance","features":[187]},{"name":"DnssdServiceInstanceCollection","features":[36,187]},{"name":"DnssdServiceWatcher","features":[187]},{"name":"DnssdServiceWatcherStatus","features":[187]},{"name":"IDnssdRegistrationResult","features":[187]},{"name":"IDnssdServiceInstance","features":[187]},{"name":"IDnssdServiceInstanceFactory","features":[187]},{"name":"IDnssdServiceWatcher","features":[187]}],"197":[{"name":"BandwidthStatistics","features":[188]},{"name":"ControlChannelTrigger","features":[188]},{"name":"ControlChannelTriggerContract","features":[188]},{"name":"ControlChannelTriggerResetReason","features":[188]},{"name":"ControlChannelTriggerResourceType","features":[188]},{"name":"ControlChannelTriggerStatus","features":[188]},{"name":"DatagramSocket","features":[188]},{"name":"DatagramSocketControl","features":[188]},{"name":"DatagramSocketInformation","features":[188]},{"name":"DatagramSocketMessageReceivedEventArgs","features":[188]},{"name":"IControlChannelTrigger","features":[188]},{"name":"IControlChannelTrigger2","features":[188]},{"name":"IControlChannelTriggerEventDetails","features":[188]},{"name":"IControlChannelTriggerFactory","features":[188]},{"name":"IControlChannelTriggerResetEventDetails","features":[188]},{"name":"IDatagramSocket","features":[188]},{"name":"IDatagramSocket2","features":[188]},{"name":"IDatagramSocket3","features":[188]},{"name":"IDatagramSocketControl","features":[188]},{"name":"IDatagramSocketControl2","features":[188]},{"name":"IDatagramSocketControl3","features":[188]},{"name":"IDatagramSocketInformation","features":[188]},{"name":"IDatagramSocketMessageReceivedEventArgs","features":[188]},{"name":"IDatagramSocketStatics","features":[188]},{"name":"IMessageWebSocket","features":[188]},{"name":"IMessageWebSocket2","features":[188]},{"name":"IMessageWebSocket3","features":[188]},{"name":"IMessageWebSocketControl","features":[188]},{"name":"IMessageWebSocketControl2","features":[188]},{"name":"IMessageWebSocketMessageReceivedEventArgs","features":[188]},{"name":"IMessageWebSocketMessageReceivedEventArgs2","features":[188]},{"name":"IServerMessageWebSocket","features":[188]},{"name":"IServerMessageWebSocketControl","features":[188]},{"name":"IServerMessageWebSocketInformation","features":[188]},{"name":"IServerStreamWebSocket","features":[188]},{"name":"IServerStreamWebSocketInformation","features":[188]},{"name":"ISocketActivityContext","features":[188]},{"name":"ISocketActivityContextFactory","features":[188]},{"name":"ISocketActivityInformation","features":[188]},{"name":"ISocketActivityInformationStatics","features":[188]},{"name":"ISocketActivityTriggerDetails","features":[188]},{"name":"ISocketErrorStatics","features":[188]},{"name":"IStreamSocket","features":[188]},{"name":"IStreamSocket2","features":[188]},{"name":"IStreamSocket3","features":[188]},{"name":"IStreamSocketControl","features":[188]},{"name":"IStreamSocketControl2","features":[188]},{"name":"IStreamSocketControl3","features":[188]},{"name":"IStreamSocketControl4","features":[188]},{"name":"IStreamSocketInformation","features":[188]},{"name":"IStreamSocketInformation2","features":[188]},{"name":"IStreamSocketListener","features":[188]},{"name":"IStreamSocketListener2","features":[188]},{"name":"IStreamSocketListener3","features":[188]},{"name":"IStreamSocketListenerConnectionReceivedEventArgs","features":[188]},{"name":"IStreamSocketListenerControl","features":[188]},{"name":"IStreamSocketListenerControl2","features":[188]},{"name":"IStreamSocketListenerInformation","features":[188]},{"name":"IStreamSocketStatics","features":[188]},{"name":"IStreamWebSocket","features":[188]},{"name":"IStreamWebSocket2","features":[188]},{"name":"IStreamWebSocketControl","features":[188]},{"name":"IStreamWebSocketControl2","features":[188]},{"name":"IWebSocket","features":[188]},{"name":"IWebSocketClosedEventArgs","features":[188]},{"name":"IWebSocketControl","features":[188]},{"name":"IWebSocketControl2","features":[188]},{"name":"IWebSocketErrorStatics","features":[188]},{"name":"IWebSocketInformation","features":[188]},{"name":"IWebSocketInformation2","features":[188]},{"name":"IWebSocketServerCustomValidationRequestedEventArgs","features":[188]},{"name":"MessageWebSocket","features":[188]},{"name":"MessageWebSocketControl","features":[188]},{"name":"MessageWebSocketInformation","features":[188]},{"name":"MessageWebSocketMessageReceivedEventArgs","features":[188]},{"name":"MessageWebSocketReceiveMode","features":[188]},{"name":"RoundTripTimeStatistics","features":[188]},{"name":"ServerMessageWebSocket","features":[188]},{"name":"ServerMessageWebSocketControl","features":[188]},{"name":"ServerMessageWebSocketInformation","features":[188]},{"name":"ServerStreamWebSocket","features":[188]},{"name":"ServerStreamWebSocketInformation","features":[188]},{"name":"SocketActivityConnectedStandbyAction","features":[188]},{"name":"SocketActivityContext","features":[188]},{"name":"SocketActivityInformation","features":[188]},{"name":"SocketActivityKind","features":[188]},{"name":"SocketActivityTriggerDetails","features":[188]},{"name":"SocketActivityTriggerReason","features":[188]},{"name":"SocketError","features":[188]},{"name":"SocketErrorStatus","features":[188]},{"name":"SocketMessageType","features":[188]},{"name":"SocketProtectionLevel","features":[188]},{"name":"SocketQualityOfService","features":[188]},{"name":"SocketSslErrorSeverity","features":[188]},{"name":"StreamSocket","features":[188]},{"name":"StreamSocketControl","features":[188]},{"name":"StreamSocketInformation","features":[188]},{"name":"StreamSocketListener","features":[188]},{"name":"StreamSocketListenerConnectionReceivedEventArgs","features":[188]},{"name":"StreamSocketListenerControl","features":[188]},{"name":"StreamSocketListenerInformation","features":[188]},{"name":"StreamWebSocket","features":[188]},{"name":"StreamWebSocketControl","features":[188]},{"name":"StreamWebSocketInformation","features":[188]},{"name":"WebSocketClosedEventArgs","features":[188]},{"name":"WebSocketError","features":[188]},{"name":"WebSocketKeepAlive","features":[8,188]},{"name":"WebSocketServerCustomValidationRequestedEventArgs","features":[188]}],"198":[{"name":"IVpnAppId","features":[189]},{"name":"IVpnAppIdFactory","features":[189]},{"name":"IVpnChannel","features":[189]},{"name":"IVpnChannel2","features":[189]},{"name":"IVpnChannel4","features":[189]},{"name":"IVpnChannel5","features":[189]},{"name":"IVpnChannel6","features":[189]},{"name":"IVpnChannelActivityEventArgs","features":[189]},{"name":"IVpnChannelActivityStateChangedArgs","features":[189]},{"name":"IVpnChannelConfiguration","features":[189]},{"name":"IVpnChannelConfiguration2","features":[189]},{"name":"IVpnChannelStatics","features":[189]},{"name":"IVpnCredential","features":[189]},{"name":"IVpnCustomCheckBox","features":[189]},{"name":"IVpnCustomComboBox","features":[189]},{"name":"IVpnCustomEditBox","features":[189]},{"name":"IVpnCustomErrorBox","features":[189]},{"name":"IVpnCustomPrompt","features":[189]},{"name":"IVpnCustomPromptBooleanInput","features":[189]},{"name":"IVpnCustomPromptElement","features":[189]},{"name":"IVpnCustomPromptOptionSelector","features":[189]},{"name":"IVpnCustomPromptText","features":[189]},{"name":"IVpnCustomPromptTextInput","features":[189]},{"name":"IVpnCustomTextBox","features":[189]},{"name":"IVpnDomainNameAssignment","features":[189]},{"name":"IVpnDomainNameInfo","features":[189]},{"name":"IVpnDomainNameInfo2","features":[189]},{"name":"IVpnDomainNameInfoFactory","features":[189]},{"name":"IVpnForegroundActivatedEventArgs","features":[189]},{"name":"IVpnForegroundActivationOperation","features":[189]},{"name":"IVpnInterfaceId","features":[189]},{"name":"IVpnInterfaceIdFactory","features":[189]},{"name":"IVpnManagementAgent","features":[189]},{"name":"IVpnNamespaceAssignment","features":[189]},{"name":"IVpnNamespaceInfo","features":[189]},{"name":"IVpnNamespaceInfoFactory","features":[189]},{"name":"IVpnNativeProfile","features":[189]},{"name":"IVpnNativeProfile2","features":[189]},{"name":"IVpnPacketBuffer","features":[189]},{"name":"IVpnPacketBuffer2","features":[189]},{"name":"IVpnPacketBuffer3","features":[189]},{"name":"IVpnPacketBufferFactory","features":[189]},{"name":"IVpnPacketBufferList","features":[189]},{"name":"IVpnPacketBufferList2","features":[189]},{"name":"IVpnPickedCredential","features":[189]},{"name":"IVpnPlugIn","features":[189]},{"name":"IVpnPlugInProfile","features":[189]},{"name":"IVpnPlugInProfile2","features":[189]},{"name":"IVpnProfile","features":[189]},{"name":"IVpnRoute","features":[189]},{"name":"IVpnRouteAssignment","features":[189]},{"name":"IVpnRouteFactory","features":[189]},{"name":"IVpnSystemHealth","features":[189]},{"name":"IVpnTrafficFilter","features":[189]},{"name":"IVpnTrafficFilterAssignment","features":[189]},{"name":"IVpnTrafficFilterFactory","features":[189]},{"name":"VpnAppId","features":[189]},{"name":"VpnAppIdType","features":[189]},{"name":"VpnAuthenticationMethod","features":[189]},{"name":"VpnChannel","features":[189]},{"name":"VpnChannelActivityEventArgs","features":[189]},{"name":"VpnChannelActivityEventType","features":[189]},{"name":"VpnChannelActivityStateChangedArgs","features":[189]},{"name":"VpnChannelConfiguration","features":[189]},{"name":"VpnChannelRequestCredentialsOptions","features":[189]},{"name":"VpnCredential","features":[189]},{"name":"VpnCredentialType","features":[189]},{"name":"VpnCustomCheckBox","features":[189]},{"name":"VpnCustomComboBox","features":[189]},{"name":"VpnCustomEditBox","features":[189]},{"name":"VpnCustomErrorBox","features":[189]},{"name":"VpnCustomPromptBooleanInput","features":[189]},{"name":"VpnCustomPromptOptionSelector","features":[189]},{"name":"VpnCustomPromptText","features":[189]},{"name":"VpnCustomPromptTextInput","features":[189]},{"name":"VpnCustomTextBox","features":[189]},{"name":"VpnDataPathType","features":[189]},{"name":"VpnDomainNameAssignment","features":[189]},{"name":"VpnDomainNameInfo","features":[189]},{"name":"VpnDomainNameType","features":[189]},{"name":"VpnForegroundActivatedEventArgs","features":[189]},{"name":"VpnForegroundActivationOperation","features":[189]},{"name":"VpnIPProtocol","features":[189]},{"name":"VpnInterfaceId","features":[189]},{"name":"VpnManagementAgent","features":[189]},{"name":"VpnManagementConnectionStatus","features":[189]},{"name":"VpnManagementErrorStatus","features":[189]},{"name":"VpnNamespaceAssignment","features":[189]},{"name":"VpnNamespaceInfo","features":[189]},{"name":"VpnNativeProfile","features":[189]},{"name":"VpnNativeProtocolType","features":[189]},{"name":"VpnPacketBuffer","features":[189]},{"name":"VpnPacketBufferList","features":[189]},{"name":"VpnPacketBufferStatus","features":[189]},{"name":"VpnPickedCredential","features":[189]},{"name":"VpnPlugInProfile","features":[189]},{"name":"VpnRoute","features":[189]},{"name":"VpnRouteAssignment","features":[189]},{"name":"VpnRoutingPolicyType","features":[189]},{"name":"VpnSystemHealth","features":[189]},{"name":"VpnTrafficFilter","features":[189]},{"name":"VpnTrafficFilterAssignment","features":[189]}],"199":[{"name":"IXboxLiveDeviceAddress","features":[190]},{"name":"IXboxLiveDeviceAddressStatics","features":[190]},{"name":"IXboxLiveEndpointPair","features":[190]},{"name":"IXboxLiveEndpointPairCreationResult","features":[190]},{"name":"IXboxLiveEndpointPairStateChangedEventArgs","features":[190]},{"name":"IXboxLiveEndpointPairStatics","features":[190]},{"name":"IXboxLiveEndpointPairTemplate","features":[190]},{"name":"IXboxLiveEndpointPairTemplateStatics","features":[190]},{"name":"IXboxLiveInboundEndpointPairCreatedEventArgs","features":[190]},{"name":"IXboxLiveQualityOfServiceMeasurement","features":[190]},{"name":"IXboxLiveQualityOfServiceMeasurementStatics","features":[190]},{"name":"IXboxLiveQualityOfServiceMetricResult","features":[190]},{"name":"IXboxLiveQualityOfServicePrivatePayloadResult","features":[190]},{"name":"XboxLiveDeviceAddress","features":[190]},{"name":"XboxLiveEndpointPair","features":[190]},{"name":"XboxLiveEndpointPairCreationBehaviors","features":[190]},{"name":"XboxLiveEndpointPairCreationResult","features":[190]},{"name":"XboxLiveEndpointPairCreationStatus","features":[190]},{"name":"XboxLiveEndpointPairState","features":[190]},{"name":"XboxLiveEndpointPairStateChangedEventArgs","features":[190]},{"name":"XboxLiveEndpointPairTemplate","features":[190]},{"name":"XboxLiveInboundEndpointPairCreatedEventArgs","features":[190]},{"name":"XboxLiveNetworkAccessKind","features":[190]},{"name":"XboxLiveQualityOfServiceMeasurement","features":[190]},{"name":"XboxLiveQualityOfServiceMeasurementStatus","features":[190]},{"name":"XboxLiveQualityOfServiceMetric","features":[190]},{"name":"XboxLiveQualityOfServiceMetricResult","features":[190]},{"name":"XboxLiveQualityOfServicePrivatePayloadResult","features":[190]},{"name":"XboxLiveSecureSocketsContract","features":[190]},{"name":"XboxLiveSocketKind","features":[190]}],"200":[{"name":"IPerceptionTimestamp","features":[191]},{"name":"IPerceptionTimestamp2","features":[191]},{"name":"IPerceptionTimestampHelperStatics","features":[191]},{"name":"IPerceptionTimestampHelperStatics2","features":[191]},{"name":"PerceptionTimestamp","features":[191]},{"name":"PerceptionTimestampHelper","features":[191]}],"201":[{"name":"CorePerceptionAutomation","features":[192]},{"name":"ICorePerceptionAutomationStatics","features":[192]},{"name":"PerceptionAutomationCoreContract","features":[192]}],"202":[{"name":"EyesPose","features":[193]},{"name":"HandJointKind","features":[193]},{"name":"HandMeshObserver","features":[193]},{"name":"HandMeshVertex","features":[68,193]},{"name":"HandMeshVertexState","features":[193]},{"name":"HandPose","features":[193]},{"name":"HeadPose","features":[193]},{"name":"IEyesPose","features":[193]},{"name":"IEyesPoseStatics","features":[193]},{"name":"IHandMeshObserver","features":[193]},{"name":"IHandMeshVertexState","features":[193]},{"name":"IHandPose","features":[193]},{"name":"IHeadPose","features":[193]},{"name":"JointPose","features":[68,193]},{"name":"JointPoseAccuracy","features":[193]}],"203":[{"name":"ISpatialAnchor","features":[194]},{"name":"ISpatialAnchor2","features":[194]},{"name":"ISpatialAnchorExportSufficiency","features":[194]},{"name":"ISpatialAnchorExporter","features":[194]},{"name":"ISpatialAnchorExporterStatics","features":[194]},{"name":"ISpatialAnchorManagerStatics","features":[194]},{"name":"ISpatialAnchorRawCoordinateSystemAdjustedEventArgs","features":[194]},{"name":"ISpatialAnchorStatics","features":[194]},{"name":"ISpatialAnchorStore","features":[194]},{"name":"ISpatialAnchorTransferManagerStatics","features":[194]},{"name":"ISpatialBoundingVolume","features":[194]},{"name":"ISpatialBoundingVolumeStatics","features":[194]},{"name":"ISpatialCoordinateSystem","features":[194]},{"name":"ISpatialEntity","features":[194]},{"name":"ISpatialEntityAddedEventArgs","features":[194]},{"name":"ISpatialEntityFactory","features":[194]},{"name":"ISpatialEntityRemovedEventArgs","features":[194]},{"name":"ISpatialEntityStore","features":[194]},{"name":"ISpatialEntityStoreStatics","features":[194]},{"name":"ISpatialEntityUpdatedEventArgs","features":[194]},{"name":"ISpatialEntityWatcher","features":[194]},{"name":"ISpatialLocation","features":[194]},{"name":"ISpatialLocation2","features":[194]},{"name":"ISpatialLocator","features":[194]},{"name":"ISpatialLocatorAttachedFrameOfReference","features":[194]},{"name":"ISpatialLocatorPositionalTrackingDeactivatingEventArgs","features":[194]},{"name":"ISpatialLocatorStatics","features":[194]},{"name":"ISpatialStageFrameOfReference","features":[194]},{"name":"ISpatialStageFrameOfReferenceStatics","features":[194]},{"name":"ISpatialStationaryFrameOfReference","features":[194]},{"name":"SpatialAnchor","features":[194]},{"name":"SpatialAnchorExportPurpose","features":[194]},{"name":"SpatialAnchorExportSufficiency","features":[194]},{"name":"SpatialAnchorExporter","features":[194]},{"name":"SpatialAnchorManager","features":[194]},{"name":"SpatialAnchorRawCoordinateSystemAdjustedEventArgs","features":[194]},{"name":"SpatialAnchorStore","features":[194]},{"name":"SpatialAnchorTransferManager","features":[194]},{"name":"SpatialBoundingBox","features":[68,194]},{"name":"SpatialBoundingFrustum","features":[68,194]},{"name":"SpatialBoundingOrientedBox","features":[68,194]},{"name":"SpatialBoundingSphere","features":[68,194]},{"name":"SpatialBoundingVolume","features":[194]},{"name":"SpatialCoordinateSystem","features":[194]},{"name":"SpatialEntity","features":[194]},{"name":"SpatialEntityAddedEventArgs","features":[194]},{"name":"SpatialEntityRemovedEventArgs","features":[194]},{"name":"SpatialEntityStore","features":[194]},{"name":"SpatialEntityUpdatedEventArgs","features":[194]},{"name":"SpatialEntityWatcher","features":[194]},{"name":"SpatialEntityWatcherStatus","features":[194]},{"name":"SpatialLocatability","features":[194]},{"name":"SpatialLocation","features":[194]},{"name":"SpatialLocator","features":[194]},{"name":"SpatialLocatorAttachedFrameOfReference","features":[194]},{"name":"SpatialLocatorPositionalTrackingDeactivatingEventArgs","features":[194]},{"name":"SpatialLookDirectionRange","features":[194]},{"name":"SpatialMovementRange","features":[194]},{"name":"SpatialPerceptionAccessStatus","features":[194]},{"name":"SpatialRay","features":[68,194]},{"name":"SpatialStageFrameOfReference","features":[194]},{"name":"SpatialStationaryFrameOfReference","features":[194]}],"204":[{"name":"ISpatialGraphInteropFrameOfReferencePreview","features":[195]},{"name":"ISpatialGraphInteropPreviewStatics","features":[195]},{"name":"ISpatialGraphInteropPreviewStatics2","features":[195]},{"name":"SpatialGraphInteropFrameOfReferencePreview","features":[195]},{"name":"SpatialGraphInteropPreview","features":[195]}],"205":[{"name":"ISpatialSurfaceInfo","features":[196]},{"name":"ISpatialSurfaceMesh","features":[196]},{"name":"ISpatialSurfaceMeshBuffer","features":[196]},{"name":"ISpatialSurfaceMeshOptions","features":[196]},{"name":"ISpatialSurfaceMeshOptionsStatics","features":[196]},{"name":"ISpatialSurfaceObserver","features":[196]},{"name":"ISpatialSurfaceObserverStatics","features":[196]},{"name":"ISpatialSurfaceObserverStatics2","features":[196]},{"name":"SpatialSurfaceInfo","features":[196]},{"name":"SpatialSurfaceMesh","features":[196]},{"name":"SpatialSurfaceMeshBuffer","features":[196]},{"name":"SpatialSurfaceMeshOptions","features":[196]},{"name":"SpatialSurfaceObserver","features":[196]}],"206":[{"name":"PhoneContract","features":[197]}],"207":[{"name":"ApplicationProfile","features":[198]},{"name":"ApplicationProfileModes","features":[198]},{"name":"IApplicationProfileStatics","features":[198]}],"208":[{"name":"IVibrationDevice","features":[199]},{"name":"IVibrationDeviceStatics","features":[199]},{"name":"VibrationDevice","features":[199]}],"209":[{"name":"Battery","features":[200]},{"name":"IBattery","features":[200]},{"name":"IBatteryStatics","features":[200]}],"210":[{"name":"Enterprise","features":[201]},{"name":"EnterpriseEnrollmentManager","features":[201]},{"name":"EnterpriseEnrollmentResult","features":[201]},{"name":"EnterpriseEnrollmentStatus","features":[201]},{"name":"EnterpriseStatus","features":[201]},{"name":"IEnterprise","features":[201]},{"name":"IEnterpriseEnrollmentManager","features":[201]},{"name":"IEnterpriseEnrollmentResult","features":[201]},{"name":"IInstallationManagerStatics","features":[201]},{"name":"IInstallationManagerStatics2","features":[201]},{"name":"IPackageInstallResult","features":[201]},{"name":"IPackageInstallResult2","features":[201]},{"name":"InstallationManager","features":[201]},{"name":"PackageInstallResult","features":[201]}],"211":[{"name":"AudioRoutingEndpoint","features":[202]},{"name":"AudioRoutingManager","features":[202]},{"name":"AvailableAudioRoutingEndpoints","features":[202]},{"name":"IAudioRoutingManager","features":[202]},{"name":"IAudioRoutingManagerStatics","features":[202]}],"212":[{"name":"AccessoryManager","features":[203]},{"name":"AccessoryNotificationType","features":[203]},{"name":"AlarmNotificationTriggerDetails","features":[203]},{"name":"AppNotificationInfo","features":[203]},{"name":"BinaryId","features":[203]},{"name":"CalendarChangedEvent","features":[203]},{"name":"CalendarChangedNotificationTriggerDetails","features":[203]},{"name":"CortanaTileNotificationTriggerDetails","features":[203]},{"name":"EmailAccountInfo","features":[203]},{"name":"EmailFolderInfo","features":[203]},{"name":"EmailNotificationTriggerDetails","features":[203]},{"name":"EmailReadNotificationTriggerDetails","features":[203]},{"name":"IAccessoryManager","features":[203]},{"name":"IAccessoryManager2","features":[203]},{"name":"IAccessoryManager3","features":[203]},{"name":"IAccessoryNotificationTriggerDetails","features":[203]},{"name":"IAlarmNotificationTriggerDetails","features":[203]},{"name":"IAlarmNotificationTriggerDetails2","features":[203]},{"name":"IAppNotificationInfo","features":[203]},{"name":"IBinaryId","features":[203]},{"name":"ICalendarChangedNotificationTriggerDetails","features":[203]},{"name":"ICortanaTileNotificationTriggerDetails","features":[203]},{"name":"IEmailAccountInfo","features":[203]},{"name":"IEmailFolderInfo","features":[203]},{"name":"IEmailNotificationTriggerDetails","features":[203]},{"name":"IEmailNotificationTriggerDetails2","features":[203]},{"name":"IEmailReadNotificationTriggerDetails","features":[203]},{"name":"IMediaControlsTriggerDetails","features":[203]},{"name":"IMediaMetadata","features":[203]},{"name":"IPhoneCallDetails","features":[203]},{"name":"IPhoneLineDetails","features":[203]},{"name":"IPhoneLineDetails2","features":[203]},{"name":"IPhoneNotificationTriggerDetails","features":[203]},{"name":"IReminderNotificationTriggerDetails","features":[203]},{"name":"IReminderNotificationTriggerDetails2","features":[203]},{"name":"ISpeedDialEntry","features":[203]},{"name":"ITextResponse","features":[203]},{"name":"IToastNotificationTriggerDetails","features":[203]},{"name":"IToastNotificationTriggerDetails2","features":[203]},{"name":"IVolumeInfo","features":[203]},{"name":"MediaControlsTriggerDetails","features":[203]},{"name":"MediaMetadata","features":[203]},{"name":"PhoneCallAudioEndpoint","features":[203]},{"name":"PhoneCallDetails","features":[203]},{"name":"PhoneCallDirection","features":[203]},{"name":"PhoneCallState","features":[203]},{"name":"PhoneCallTransport","features":[203]},{"name":"PhoneLineDetails","features":[203]},{"name":"PhoneLineRegistrationState","features":[203]},{"name":"PhoneMediaType","features":[203]},{"name":"PhoneNotificationTriggerDetails","features":[203]},{"name":"PhoneNotificationType","features":[203]},{"name":"PlaybackCapability","features":[203]},{"name":"PlaybackCommand","features":[203]},{"name":"PlaybackStatus","features":[203]},{"name":"ReminderNotificationTriggerDetails","features":[203]},{"name":"ReminderState","features":[203]},{"name":"SpeedDialEntry","features":[203]},{"name":"TextResponse","features":[203]},{"name":"ToastNotificationTriggerDetails","features":[203]},{"name":"VibrateState","features":[203]},{"name":"VolumeInfo","features":[203]}],"213":[{"name":"ContactAddress","features":[204]},{"name":"ContactChangeRecord","features":[204]},{"name":"ContactChangeType","features":[204]},{"name":"ContactInformation","features":[204]},{"name":"ContactQueryOptions","features":[204]},{"name":"ContactQueryResult","features":[204]},{"name":"ContactQueryResultOrdering","features":[204]},{"name":"ContactStore","features":[204]},{"name":"ContactStoreApplicationAccessMode","features":[204]},{"name":"ContactStoreSystemAccessMode","features":[204]},{"name":"IContactAddress","features":[204]},{"name":"IContactChangeRecord","features":[204]},{"name":"IContactInformation","features":[204]},{"name":"IContactInformation2","features":[204]},{"name":"IContactInformationStatics","features":[204]},{"name":"IContactQueryOptions","features":[204]},{"name":"IContactQueryResult","features":[204]},{"name":"IContactStore","features":[204]},{"name":"IContactStore2","features":[204]},{"name":"IContactStoreStatics","features":[204]},{"name":"IKnownContactPropertiesStatics","features":[204]},{"name":"IStoredContact","features":[204]},{"name":"IStoredContactFactory","features":[204]},{"name":"KnownContactProperties","features":[204]},{"name":"StoredContact","features":[204]},{"name":"VCardFormat","features":[204]}],"214":[{"name":"ContactPartnerProvisioningManager","features":[205]},{"name":"IContactPartnerProvisioningManagerStatics","features":[205]},{"name":"IContactPartnerProvisioningManagerStatics2","features":[205]},{"name":"IMessagePartnerProvisioningManagerStatics","features":[205]},{"name":"MessagePartnerProvisioningManager","features":[205]}],"215":[{"name":"SpeechRecognitionUIStatus","features":[206]}],"216":[{"name":"DualSimTile","features":[207]},{"name":"DualSimTileContract","features":[207]},{"name":"IDualSimTile","features":[207]},{"name":"IDualSimTileStatics","features":[207]},{"name":"IToastNotificationManagerStatics3","features":[207]}],"217":[{"name":"ISystemProtectionStatics","features":[208]},{"name":"ISystemProtectionUnlockStatics","features":[208]},{"name":"SystemProtection","features":[208]}],"218":[{"name":"IPowerManagerStatics","features":[209]},{"name":"IPowerManagerStatics2","features":[209]},{"name":"PowerManager","features":[209]},{"name":"PowerSavingMode","features":[209]}],"219":[{"name":"IRetailModeStatics","features":[210]},{"name":"RetailMode","features":[210]}],"220":[{"name":"GameService","features":[211]},{"name":"GameServiceGameOutcome","features":[211]},{"name":"GameServicePropertyCollection","features":[211]},{"name":"GameServiceScoreKind","features":[211]},{"name":"IGameService","features":[211]},{"name":"IGameService2","features":[211]},{"name":"IGameServicePropertyCollection","features":[211]}],"221":[{"name":"BackPressedEventArgs","features":[212]},{"name":"CameraEventArgs","features":[212]},{"name":"HardwareButtons","features":[212]},{"name":"IBackPressedEventArgs","features":[212]},{"name":"ICameraEventArgs","features":[212]},{"name":"IHardwareButtonsStatics","features":[212]},{"name":"IHardwareButtonsStatics2","features":[212]}],"222":[{"name":"EnterpriseKeyCredentialRegistrationInfo","features":[213]},{"name":"EnterpriseKeyCredentialRegistrationManager","features":[213]},{"name":"IEnterpriseKeyCredentialRegistrationInfo","features":[213]},{"name":"IEnterpriseKeyCredentialRegistrationManager","features":[213]},{"name":"IEnterpriseKeyCredentialRegistrationManagerStatics","features":[213]}],"223":[{"name":"IMicrosoftAccountMultiFactorAuthenticationManager","features":[214]},{"name":"IMicrosoftAccountMultiFactorAuthenticatorStatics","features":[214]},{"name":"IMicrosoftAccountMultiFactorGetSessionsResult","features":[214]},{"name":"IMicrosoftAccountMultiFactorOneTimeCodedInfo","features":[214]},{"name":"IMicrosoftAccountMultiFactorSessionInfo","features":[214]},{"name":"IMicrosoftAccountMultiFactorUnregisteredAccountsAndSessionInfo","features":[214]},{"name":"MicrosoftAccountMultiFactorAuthenticationManager","features":[214]},{"name":"MicrosoftAccountMultiFactorAuthenticationType","features":[214]},{"name":"MicrosoftAccountMultiFactorGetSessionsResult","features":[214]},{"name":"MicrosoftAccountMultiFactorOneTimeCodedInfo","features":[214]},{"name":"MicrosoftAccountMultiFactorServiceResponse","features":[214]},{"name":"MicrosoftAccountMultiFactorSessionApprovalStatus","features":[214]},{"name":"MicrosoftAccountMultiFactorSessionAuthenticationStatus","features":[214]},{"name":"MicrosoftAccountMultiFactorSessionInfo","features":[214]},{"name":"MicrosoftAccountMultiFactorUnregisteredAccountsAndSessionInfo","features":[214]}],"225":[{"name":"CredentialPromptType","features":[215]},{"name":"IOnlineIdAuthenticator","features":[215]},{"name":"IOnlineIdServiceTicket","features":[215]},{"name":"IOnlineIdServiceTicketRequest","features":[215]},{"name":"IOnlineIdServiceTicketRequestFactory","features":[215]},{"name":"IOnlineIdSystemAuthenticatorForUser","features":[215]},{"name":"IOnlineIdSystemAuthenticatorStatics","features":[215]},{"name":"IOnlineIdSystemIdentity","features":[215]},{"name":"IOnlineIdSystemTicketResult","features":[215]},{"name":"IUserIdentity","features":[215]},{"name":"OnlineIdAuthenticator","features":[215]},{"name":"OnlineIdServiceTicket","features":[215]},{"name":"OnlineIdServiceTicketRequest","features":[215]},{"name":"OnlineIdSystemAuthenticator","features":[215]},{"name":"OnlineIdSystemAuthenticatorForUser","features":[215]},{"name":"OnlineIdSystemIdentity","features":[215]},{"name":"OnlineIdSystemTicketResult","features":[215]},{"name":"OnlineIdSystemTicketStatus","features":[215]},{"name":"SignOutUserOperation","features":[76,215]},{"name":"UserAuthenticationOperation","features":[76,215]},{"name":"UserIdentity","features":[215]}],"226":[{"name":"IWebAuthenticationBrokerStatics","features":[216]},{"name":"IWebAuthenticationBrokerStatics2","features":[216]},{"name":"IWebAuthenticationResult","features":[216]},{"name":"TokenBindingKeyType","features":[216]},{"name":"WebAuthenticationBroker","features":[216]},{"name":"WebAuthenticationOptions","features":[216]},{"name":"WebAuthenticationResult","features":[216]},{"name":"WebAuthenticationStatus","features":[216]}],"227":[{"name":"FindAllAccountsResult","features":[217]},{"name":"FindAllWebAccountsStatus","features":[217]},{"name":"IFindAllAccountsResult","features":[217]},{"name":"IWebAccountEventArgs","features":[217]},{"name":"IWebAccountMonitor","features":[217]},{"name":"IWebAccountMonitor2","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics2","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics3","features":[217]},{"name":"IWebAuthenticationCoreManagerStatics4","features":[217]},{"name":"IWebProviderError","features":[217]},{"name":"IWebProviderErrorFactory","features":[217]},{"name":"IWebTokenRequest","features":[217]},{"name":"IWebTokenRequest2","features":[217]},{"name":"IWebTokenRequest3","features":[217]},{"name":"IWebTokenRequestFactory","features":[217]},{"name":"IWebTokenRequestResult","features":[217]},{"name":"IWebTokenResponse","features":[217]},{"name":"IWebTokenResponseFactory","features":[217]},{"name":"WebAccountEventArgs","features":[217]},{"name":"WebAccountMonitor","features":[217]},{"name":"WebAuthenticationCoreManager","features":[217]},{"name":"WebProviderError","features":[217]},{"name":"WebTokenRequest","features":[217]},{"name":"WebTokenRequestPromptType","features":[217]},{"name":"WebTokenRequestResult","features":[217]},{"name":"WebTokenRequestStatus","features":[217]},{"name":"WebTokenResponse","features":[217]}],"228":[{"name":"IWebAccountClientView","features":[218]},{"name":"IWebAccountClientViewFactory","features":[218]},{"name":"IWebAccountManagerStatics","features":[218]},{"name":"IWebAccountManagerStatics2","features":[218]},{"name":"IWebAccountManagerStatics3","features":[218]},{"name":"IWebAccountManagerStatics4","features":[218]},{"name":"IWebAccountMapManagerStatics","features":[218]},{"name":"IWebAccountProviderAddAccountOperation","features":[218]},{"name":"IWebAccountProviderBaseReportOperation","features":[218]},{"name":"IWebAccountProviderDeleteAccountOperation","features":[218]},{"name":"IWebAccountProviderManageAccountOperation","features":[218]},{"name":"IWebAccountProviderOperation","features":[218]},{"name":"IWebAccountProviderRetrieveCookiesOperation","features":[218]},{"name":"IWebAccountProviderSignOutAccountOperation","features":[218]},{"name":"IWebAccountProviderSilentReportOperation","features":[218]},{"name":"IWebAccountProviderTokenObjects","features":[218]},{"name":"IWebAccountProviderTokenObjects2","features":[218]},{"name":"IWebAccountProviderTokenOperation","features":[218]},{"name":"IWebAccountProviderUIReportOperation","features":[218]},{"name":"IWebAccountScopeManagerStatics","features":[218]},{"name":"IWebProviderTokenRequest","features":[218]},{"name":"IWebProviderTokenRequest2","features":[218]},{"name":"IWebProviderTokenRequest3","features":[218]},{"name":"IWebProviderTokenResponse","features":[218]},{"name":"IWebProviderTokenResponseFactory","features":[218]},{"name":"WebAccountClientView","features":[218]},{"name":"WebAccountClientViewType","features":[218]},{"name":"WebAccountManager","features":[218]},{"name":"WebAccountProviderAddAccountOperation","features":[218]},{"name":"WebAccountProviderDeleteAccountOperation","features":[218]},{"name":"WebAccountProviderGetTokenSilentOperation","features":[218]},{"name":"WebAccountProviderManageAccountOperation","features":[218]},{"name":"WebAccountProviderOperationKind","features":[218]},{"name":"WebAccountProviderRequestTokenOperation","features":[218]},{"name":"WebAccountProviderRetrieveCookiesOperation","features":[218]},{"name":"WebAccountProviderSignOutAccountOperation","features":[218]},{"name":"WebAccountProviderTriggerDetails","features":[218]},{"name":"WebAccountScope","features":[218]},{"name":"WebAccountSelectionOptions","features":[218]},{"name":"WebProviderTokenRequest","features":[218]},{"name":"WebProviderTokenResponse","features":[218]}],"229":[{"name":"AppCapability","features":[219]},{"name":"AppCapabilityAccessChangedEventArgs","features":[219]},{"name":"AppCapabilityAccessStatus","features":[219]},{"name":"IAppCapability","features":[219]},{"name":"IAppCapability2","features":[219]},{"name":"IAppCapabilityAccessChangedEventArgs","features":[219]},{"name":"IAppCapabilityStatics","features":[219]}],"230":[{"name":"ICredentialFactory","features":[220]},{"name":"IKeyCredential","features":[220]},{"name":"IKeyCredentialAttestationResult","features":[220]},{"name":"IKeyCredentialManagerStatics","features":[220]},{"name":"IKeyCredentialOperationResult","features":[220]},{"name":"IKeyCredentialRetrievalResult","features":[220]},{"name":"IPasswordCredential","features":[220]},{"name":"IPasswordVault","features":[220]},{"name":"IWebAccount","features":[220]},{"name":"IWebAccount2","features":[220]},{"name":"IWebAccountFactory","features":[220]},{"name":"IWebAccountProvider","features":[220]},{"name":"IWebAccountProvider2","features":[220]},{"name":"IWebAccountProvider3","features":[220]},{"name":"IWebAccountProvider4","features":[220]},{"name":"IWebAccountProviderFactory","features":[220]},{"name":"KeyCredential","features":[220]},{"name":"KeyCredentialAttestationResult","features":[220]},{"name":"KeyCredentialAttestationStatus","features":[220]},{"name":"KeyCredentialCreationOption","features":[220]},{"name":"KeyCredentialManager","features":[220]},{"name":"KeyCredentialOperationResult","features":[220]},{"name":"KeyCredentialRetrievalResult","features":[220]},{"name":"KeyCredentialStatus","features":[220]},{"name":"PasswordCredential","features":[220]},{"name":"PasswordCredentialPropertyStore","features":[36,220]},{"name":"PasswordVault","features":[220]},{"name":"WebAccount","features":[220]},{"name":"WebAccountPictureSize","features":[220]},{"name":"WebAccountProvider","features":[220]},{"name":"WebAccountState","features":[220]}],"231":[{"name":"AuthenticationProtocol","features":[221]},{"name":"CredentialPicker","features":[221]},{"name":"CredentialPickerOptions","features":[221]},{"name":"CredentialPickerResults","features":[221]},{"name":"CredentialSaveOption","features":[221]},{"name":"ICredentialPickerOptions","features":[221]},{"name":"ICredentialPickerResults","features":[221]},{"name":"ICredentialPickerStatics","features":[221]},{"name":"IUserConsentVerifierStatics","features":[221]},{"name":"UserConsentVerificationResult","features":[221]},{"name":"UserConsentVerifier","features":[221]},{"name":"UserConsentVerifierAvailability","features":[221]}],"232":[{"name":"BinaryStringEncoding","features":[222]},{"name":"CryptographicBuffer","features":[222]},{"name":"ICryptographicBufferStatics","features":[222]}],"233":[{"name":"Certificate","features":[223]},{"name":"CertificateChain","features":[223]},{"name":"CertificateChainPolicy","features":[223]},{"name":"CertificateEnrollmentManager","features":[223]},{"name":"CertificateExtension","features":[223]},{"name":"CertificateKeyUsages","features":[223]},{"name":"CertificateQuery","features":[223]},{"name":"CertificateRequestProperties","features":[223]},{"name":"CertificateStore","features":[223]},{"name":"CertificateStores","features":[223]},{"name":"ChainBuildingParameters","features":[223]},{"name":"ChainValidationParameters","features":[223]},{"name":"ChainValidationResult","features":[223]},{"name":"CmsAttachedSignature","features":[223]},{"name":"CmsDetachedSignature","features":[223]},{"name":"CmsSignerInfo","features":[223]},{"name":"CmsTimestampInfo","features":[223]},{"name":"EnrollKeyUsages","features":[223]},{"name":"ExportOption","features":[223]},{"name":"ICertificate","features":[223]},{"name":"ICertificate2","features":[223]},{"name":"ICertificate3","features":[223]},{"name":"ICertificateChain","features":[223]},{"name":"ICertificateEnrollmentManagerStatics","features":[223]},{"name":"ICertificateEnrollmentManagerStatics2","features":[223]},{"name":"ICertificateEnrollmentManagerStatics3","features":[223]},{"name":"ICertificateExtension","features":[223]},{"name":"ICertificateFactory","features":[223]},{"name":"ICertificateKeyUsages","features":[223]},{"name":"ICertificateQuery","features":[223]},{"name":"ICertificateQuery2","features":[223]},{"name":"ICertificateRequestProperties","features":[223]},{"name":"ICertificateRequestProperties2","features":[223]},{"name":"ICertificateRequestProperties3","features":[223]},{"name":"ICertificateRequestProperties4","features":[223]},{"name":"ICertificateStore","features":[223]},{"name":"ICertificateStore2","features":[223]},{"name":"ICertificateStoresStatics","features":[223]},{"name":"ICertificateStoresStatics2","features":[223]},{"name":"IChainBuildingParameters","features":[223]},{"name":"IChainValidationParameters","features":[223]},{"name":"ICmsAttachedSignature","features":[223]},{"name":"ICmsAttachedSignatureFactory","features":[223]},{"name":"ICmsAttachedSignatureStatics","features":[223]},{"name":"ICmsDetachedSignature","features":[223]},{"name":"ICmsDetachedSignatureFactory","features":[223]},{"name":"ICmsDetachedSignatureStatics","features":[223]},{"name":"ICmsSignerInfo","features":[223]},{"name":"ICmsTimestampInfo","features":[223]},{"name":"IKeyAlgorithmNamesStatics","features":[223]},{"name":"IKeyAlgorithmNamesStatics2","features":[223]},{"name":"IKeyAttestationHelperStatics","features":[223]},{"name":"IKeyAttestationHelperStatics2","features":[223]},{"name":"IKeyStorageProviderNamesStatics","features":[223]},{"name":"IKeyStorageProviderNamesStatics2","features":[223]},{"name":"IPfxImportParameters","features":[223]},{"name":"IStandardCertificateStoreNamesStatics","features":[223]},{"name":"ISubjectAlternativeNameInfo","features":[223]},{"name":"ISubjectAlternativeNameInfo2","features":[223]},{"name":"IUserCertificateEnrollmentManager","features":[223]},{"name":"IUserCertificateEnrollmentManager2","features":[223]},{"name":"IUserCertificateStore","features":[223]},{"name":"InstallOptions","features":[223]},{"name":"KeyAlgorithmNames","features":[223]},{"name":"KeyAttestationHelper","features":[223]},{"name":"KeyProtectionLevel","features":[223]},{"name":"KeySize","features":[223]},{"name":"KeyStorageProviderNames","features":[223]},{"name":"PfxImportParameters","features":[223]},{"name":"SignatureValidationResult","features":[223]},{"name":"StandardCertificateStoreNames","features":[223]},{"name":"SubjectAlternativeNameInfo","features":[223]},{"name":"UserCertificateEnrollmentManager","features":[223]},{"name":"UserCertificateStore","features":[223]}],"234":[{"name":"AsymmetricAlgorithmNames","features":[224]},{"name":"AsymmetricKeyAlgorithmProvider","features":[224]},{"name":"Capi1KdfTargetAlgorithm","features":[224]},{"name":"CryptographicEngine","features":[224]},{"name":"CryptographicHash","features":[224]},{"name":"CryptographicKey","features":[224]},{"name":"CryptographicPadding","features":[224]},{"name":"CryptographicPrivateKeyBlobType","features":[224]},{"name":"CryptographicPublicKeyBlobType","features":[224]},{"name":"EccCurveNames","features":[224]},{"name":"EncryptedAndAuthenticatedData","features":[224]},{"name":"HashAlgorithmNames","features":[224]},{"name":"HashAlgorithmProvider","features":[224]},{"name":"IAsymmetricAlgorithmNamesStatics","features":[224]},{"name":"IAsymmetricAlgorithmNamesStatics2","features":[224]},{"name":"IAsymmetricKeyAlgorithmProvider","features":[224]},{"name":"IAsymmetricKeyAlgorithmProvider2","features":[224]},{"name":"IAsymmetricKeyAlgorithmProviderStatics","features":[224]},{"name":"ICryptographicEngineStatics","features":[224]},{"name":"ICryptographicEngineStatics2","features":[224]},{"name":"ICryptographicKey","features":[224]},{"name":"IEccCurveNamesStatics","features":[224]},{"name":"IEncryptedAndAuthenticatedData","features":[224]},{"name":"IHashAlgorithmNamesStatics","features":[224]},{"name":"IHashAlgorithmProvider","features":[224]},{"name":"IHashAlgorithmProviderStatics","features":[224]},{"name":"IHashComputation","features":[224]},{"name":"IKeyDerivationAlgorithmNamesStatics","features":[224]},{"name":"IKeyDerivationAlgorithmNamesStatics2","features":[224]},{"name":"IKeyDerivationAlgorithmProvider","features":[224]},{"name":"IKeyDerivationAlgorithmProviderStatics","features":[224]},{"name":"IKeyDerivationParameters","features":[224]},{"name":"IKeyDerivationParameters2","features":[224]},{"name":"IKeyDerivationParametersStatics","features":[224]},{"name":"IKeyDerivationParametersStatics2","features":[224]},{"name":"IMacAlgorithmNamesStatics","features":[224]},{"name":"IMacAlgorithmProvider","features":[224]},{"name":"IMacAlgorithmProvider2","features":[224]},{"name":"IMacAlgorithmProviderStatics","features":[224]},{"name":"IPersistedKeyProviderStatics","features":[224]},{"name":"ISymmetricAlgorithmNamesStatics","features":[224]},{"name":"ISymmetricKeyAlgorithmProvider","features":[224]},{"name":"ISymmetricKeyAlgorithmProviderStatics","features":[224]},{"name":"KeyDerivationAlgorithmNames","features":[224]},{"name":"KeyDerivationAlgorithmProvider","features":[224]},{"name":"KeyDerivationParameters","features":[224]},{"name":"MacAlgorithmNames","features":[224]},{"name":"MacAlgorithmProvider","features":[224]},{"name":"PersistedKeyProvider","features":[224]},{"name":"SymmetricAlgorithmNames","features":[224]},{"name":"SymmetricKeyAlgorithmProvider","features":[224]}],"235":[{"name":"DataProtectionProvider","features":[225]},{"name":"IDataProtectionProvider","features":[225]},{"name":"IDataProtectionProviderFactory","features":[225]}],"236":[{"name":"IUserDataAvailabilityStateChangedEventArgs","features":[226]},{"name":"IUserDataBufferUnprotectResult","features":[226]},{"name":"IUserDataProtectionManager","features":[226]},{"name":"IUserDataProtectionManagerStatics","features":[226]},{"name":"IUserDataStorageItemProtectionInfo","features":[226]},{"name":"UserDataAvailability","features":[226]},{"name":"UserDataAvailabilityStateChangedEventArgs","features":[226]},{"name":"UserDataBufferUnprotectResult","features":[226]},{"name":"UserDataBufferUnprotectStatus","features":[226]},{"name":"UserDataProtectionManager","features":[226]},{"name":"UserDataStorageItemProtectionInfo","features":[226]},{"name":"UserDataStorageItemProtectionStatus","features":[226]}],"237":[{"name":"BufferProtectUnprotectResult","features":[227]},{"name":"DataProtectionInfo","features":[227]},{"name":"DataProtectionManager","features":[227]},{"name":"DataProtectionStatus","features":[227]},{"name":"EnforcementLevel","features":[227]},{"name":"EnterpriseDataContract","features":[227]},{"name":"FileProtectionInfo","features":[227]},{"name":"FileProtectionManager","features":[227]},{"name":"FileProtectionStatus","features":[227]},{"name":"FileRevocationManager","features":[227]},{"name":"FileUnprotectOptions","features":[227]},{"name":"IBufferProtectUnprotectResult","features":[227]},{"name":"IDataProtectionInfo","features":[227]},{"name":"IDataProtectionManagerStatics","features":[227]},{"name":"IFileProtectionInfo","features":[227]},{"name":"IFileProtectionInfo2","features":[227]},{"name":"IFileProtectionManagerStatics","features":[227]},{"name":"IFileProtectionManagerStatics2","features":[227]},{"name":"IFileProtectionManagerStatics3","features":[227]},{"name":"IFileRevocationManagerStatics","features":[227]},{"name":"IFileUnprotectOptions","features":[227]},{"name":"IFileUnprotectOptionsFactory","features":[227]},{"name":"IProtectedAccessResumedEventArgs","features":[227]},{"name":"IProtectedAccessSuspendingEventArgs","features":[227]},{"name":"IProtectedContainerExportResult","features":[227]},{"name":"IProtectedContainerImportResult","features":[227]},{"name":"IProtectedContentRevokedEventArgs","features":[227]},{"name":"IProtectedFileCreateResult","features":[227]},{"name":"IProtectionPolicyAuditInfo","features":[227]},{"name":"IProtectionPolicyAuditInfoFactory","features":[227]},{"name":"IProtectionPolicyManager","features":[227]},{"name":"IProtectionPolicyManager2","features":[227]},{"name":"IProtectionPolicyManagerStatics","features":[227]},{"name":"IProtectionPolicyManagerStatics2","features":[227]},{"name":"IProtectionPolicyManagerStatics3","features":[227]},{"name":"IProtectionPolicyManagerStatics4","features":[227]},{"name":"IThreadNetworkContext","features":[227]},{"name":"ProtectedAccessResumedEventArgs","features":[227]},{"name":"ProtectedAccessSuspendingEventArgs","features":[227]},{"name":"ProtectedContainerExportResult","features":[227]},{"name":"ProtectedContainerImportResult","features":[227]},{"name":"ProtectedContentRevokedEventArgs","features":[227]},{"name":"ProtectedFileCreateResult","features":[227]},{"name":"ProtectedImportExportStatus","features":[227]},{"name":"ProtectionPolicyAuditAction","features":[227]},{"name":"ProtectionPolicyAuditInfo","features":[227]},{"name":"ProtectionPolicyEvaluationResult","features":[227]},{"name":"ProtectionPolicyManager","features":[227]},{"name":"ProtectionPolicyRequestAccessBehavior","features":[227]},{"name":"ThreadNetworkContext","features":[227]}],"238":[{"name":"EasClientDeviceInformation","features":[228]},{"name":"EasClientSecurityPolicy","features":[228]},{"name":"EasComplianceResults","features":[228]},{"name":"EasContract","features":[228]},{"name":"EasDisallowConvenienceLogonResult","features":[228]},{"name":"EasEncryptionProviderType","features":[228]},{"name":"EasMaxInactivityTimeLockResult","features":[228]},{"name":"EasMaxPasswordFailedAttemptsResult","features":[228]},{"name":"EasMinPasswordComplexCharactersResult","features":[228]},{"name":"EasMinPasswordLengthResult","features":[228]},{"name":"EasPasswordExpirationResult","features":[228]},{"name":"EasPasswordHistoryResult","features":[228]},{"name":"EasRequireEncryptionResult","features":[228]},{"name":"IEasClientDeviceInformation","features":[228]},{"name":"IEasClientDeviceInformation2","features":[228]},{"name":"IEasClientSecurityPolicy","features":[228]},{"name":"IEasComplianceResults","features":[228]},{"name":"IEasComplianceResults2","features":[228]}],"239":[{"name":"HostMessageReceivedCallback","features":[36,229]},{"name":"IIsolatedWindowsEnvironment","features":[229]},{"name":"IIsolatedWindowsEnvironment2","features":[229]},{"name":"IIsolatedWindowsEnvironment3","features":[229]},{"name":"IIsolatedWindowsEnvironment4","features":[229]},{"name":"IIsolatedWindowsEnvironmentCreateResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentCreateResult2","features":[229]},{"name":"IIsolatedWindowsEnvironmentFactory","features":[229]},{"name":"IIsolatedWindowsEnvironmentFile","features":[229]},{"name":"IIsolatedWindowsEnvironmentFile2","features":[229]},{"name":"IIsolatedWindowsEnvironmentHostStatics","features":[229]},{"name":"IIsolatedWindowsEnvironmentLaunchFileResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentOptions","features":[229]},{"name":"IIsolatedWindowsEnvironmentOptions2","features":[229]},{"name":"IIsolatedWindowsEnvironmentOptions3","features":[229]},{"name":"IIsolatedWindowsEnvironmentOwnerRegistrationData","features":[229]},{"name":"IIsolatedWindowsEnvironmentOwnerRegistrationResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentOwnerRegistrationStatics","features":[229]},{"name":"IIsolatedWindowsEnvironmentPostMessageResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentProcess","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFileRequestOptions","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFileResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFolderRequestOptions","features":[229]},{"name":"IIsolatedWindowsEnvironmentShareFolderResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentStartProcessResult","features":[229]},{"name":"IIsolatedWindowsEnvironmentTelemetryParameters","features":[229]},{"name":"IIsolatedWindowsEnvironmentUserInfo","features":[229]},{"name":"IIsolatedWindowsEnvironmentUserInfo2","features":[229]},{"name":"IIsolatedWindowsHostMessengerStatics","features":[229]},{"name":"IIsolatedWindowsHostMessengerStatics2","features":[229]},{"name":"IsolatedWindowsEnvironment","features":[229]},{"name":"IsolatedWindowsEnvironmentActivator","features":[229]},{"name":"IsolatedWindowsEnvironmentAllowedClipboardFormats","features":[229]},{"name":"IsolatedWindowsEnvironmentAvailablePrinters","features":[229]},{"name":"IsolatedWindowsEnvironmentClipboardCopyPasteDirections","features":[229]},{"name":"IsolatedWindowsEnvironmentContract","features":[229]},{"name":"IsolatedWindowsEnvironmentCreateProgress","features":[229]},{"name":"IsolatedWindowsEnvironmentCreateResult","features":[229]},{"name":"IsolatedWindowsEnvironmentCreateStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentCreationPriority","features":[229]},{"name":"IsolatedWindowsEnvironmentFile","features":[229]},{"name":"IsolatedWindowsEnvironmentHost","features":[229]},{"name":"IsolatedWindowsEnvironmentHostError","features":[229]},{"name":"IsolatedWindowsEnvironmentLaunchFileResult","features":[229]},{"name":"IsolatedWindowsEnvironmentLaunchFileStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentOptions","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistration","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistrationData","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistrationResult","features":[229]},{"name":"IsolatedWindowsEnvironmentOwnerRegistrationStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentPostMessageResult","features":[229]},{"name":"IsolatedWindowsEnvironmentPostMessageStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentProcess","features":[229]},{"name":"IsolatedWindowsEnvironmentProcessState","features":[229]},{"name":"IsolatedWindowsEnvironmentProgressState","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFileRequestOptions","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFileResult","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFileStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFolderRequestOptions","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFolderResult","features":[229]},{"name":"IsolatedWindowsEnvironmentShareFolderStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentSignInProgress","features":[229]},{"name":"IsolatedWindowsEnvironmentStartProcessResult","features":[229]},{"name":"IsolatedWindowsEnvironmentStartProcessStatus","features":[229]},{"name":"IsolatedWindowsEnvironmentTelemetryParameters","features":[229]},{"name":"IsolatedWindowsEnvironmentUserInfo","features":[229]},{"name":"IsolatedWindowsHostMessenger","features":[229]},{"name":"MessageReceivedCallback","features":[36,229]}],"241":[{"name":"EnhancedWaypoint","features":[230]},{"name":"GuidanceContract","features":[230]},{"name":"IEnhancedWaypoint","features":[230]},{"name":"IEnhancedWaypointFactory","features":[230]},{"name":"IManeuverWarning","features":[230]},{"name":"IMapAddress","features":[230]},{"name":"IMapAddress2","features":[230]},{"name":"IMapLocation","features":[230]},{"name":"IMapLocationFinderResult","features":[230]},{"name":"IMapLocationFinderStatics","features":[230]},{"name":"IMapLocationFinderStatics2","features":[230]},{"name":"IMapManagerStatics","features":[230]},{"name":"IMapRoute","features":[230]},{"name":"IMapRoute2","features":[230]},{"name":"IMapRoute3","features":[230]},{"name":"IMapRoute4","features":[230]},{"name":"IMapRouteDrivingOptions","features":[230]},{"name":"IMapRouteDrivingOptions2","features":[230]},{"name":"IMapRouteFinderResult","features":[230]},{"name":"IMapRouteFinderResult2","features":[230]},{"name":"IMapRouteFinderStatics","features":[230]},{"name":"IMapRouteFinderStatics2","features":[230]},{"name":"IMapRouteFinderStatics3","features":[230]},{"name":"IMapRouteLeg","features":[230]},{"name":"IMapRouteLeg2","features":[230]},{"name":"IMapRouteManeuver","features":[230]},{"name":"IMapRouteManeuver2","features":[230]},{"name":"IMapRouteManeuver3","features":[230]},{"name":"IMapServiceStatics","features":[230]},{"name":"IMapServiceStatics2","features":[230]},{"name":"IMapServiceStatics3","features":[230]},{"name":"IMapServiceStatics4","features":[230]},{"name":"IPlaceInfo","features":[230]},{"name":"IPlaceInfoCreateOptions","features":[230]},{"name":"IPlaceInfoStatics","features":[230]},{"name":"IPlaceInfoStatics2","features":[230]},{"name":"LocalSearchContract","features":[230]},{"name":"ManeuverWarning","features":[230]},{"name":"ManeuverWarningKind","features":[230]},{"name":"ManeuverWarningSeverity","features":[230]},{"name":"MapAddress","features":[230]},{"name":"MapLocation","features":[230]},{"name":"MapLocationDesiredAccuracy","features":[230]},{"name":"MapLocationFinder","features":[230]},{"name":"MapLocationFinderResult","features":[230]},{"name":"MapLocationFinderStatus","features":[230]},{"name":"MapManager","features":[230]},{"name":"MapManeuverNotices","features":[230]},{"name":"MapRoute","features":[230]},{"name":"MapRouteDrivingOptions","features":[230]},{"name":"MapRouteFinder","features":[230]},{"name":"MapRouteFinderResult","features":[230]},{"name":"MapRouteFinderStatus","features":[230]},{"name":"MapRouteLeg","features":[230]},{"name":"MapRouteManeuver","features":[230]},{"name":"MapRouteManeuverKind","features":[230]},{"name":"MapRouteOptimization","features":[230]},{"name":"MapRouteRestrictions","features":[230]},{"name":"MapService","features":[230]},{"name":"MapServiceDataUsagePreference","features":[230]},{"name":"PlaceInfo","features":[230]},{"name":"PlaceInfoCreateOptions","features":[230]},{"name":"TrafficCongestion","features":[230]},{"name":"WaypointKind","features":[230]}],"242":[{"name":"GuidanceAudioMeasurementSystem","features":[231]},{"name":"GuidanceAudioNotificationKind","features":[231]},{"name":"GuidanceAudioNotificationRequestedEventArgs","features":[231]},{"name":"GuidanceAudioNotifications","features":[231]},{"name":"GuidanceLaneInfo","features":[231]},{"name":"GuidanceLaneMarkers","features":[231]},{"name":"GuidanceManeuver","features":[231]},{"name":"GuidanceManeuverKind","features":[231]},{"name":"GuidanceMapMatchedCoordinate","features":[231]},{"name":"GuidanceMode","features":[231]},{"name":"GuidanceNavigator","features":[231]},{"name":"GuidanceReroutedEventArgs","features":[231]},{"name":"GuidanceRoadSegment","features":[231]},{"name":"GuidanceRoadSignpost","features":[231]},{"name":"GuidanceRoute","features":[231]},{"name":"GuidanceTelemetryCollector","features":[231]},{"name":"GuidanceUpdatedEventArgs","features":[231]},{"name":"IGuidanceAudioNotificationRequestedEventArgs","features":[231]},{"name":"IGuidanceLaneInfo","features":[231]},{"name":"IGuidanceManeuver","features":[231]},{"name":"IGuidanceMapMatchedCoordinate","features":[231]},{"name":"IGuidanceNavigator","features":[231]},{"name":"IGuidanceNavigator2","features":[231]},{"name":"IGuidanceNavigatorStatics","features":[231]},{"name":"IGuidanceNavigatorStatics2","features":[231]},{"name":"IGuidanceReroutedEventArgs","features":[231]},{"name":"IGuidanceRoadSegment","features":[231]},{"name":"IGuidanceRoadSegment2","features":[231]},{"name":"IGuidanceRoadSignpost","features":[231]},{"name":"IGuidanceRoute","features":[231]},{"name":"IGuidanceRouteStatics","features":[231]},{"name":"IGuidanceTelemetryCollector","features":[231]},{"name":"IGuidanceTelemetryCollectorStatics","features":[231]},{"name":"IGuidanceUpdatedEventArgs","features":[231]}],"243":[{"name":"ILocalCategoriesStatics","features":[232]},{"name":"ILocalLocation","features":[232]},{"name":"ILocalLocation2","features":[232]},{"name":"ILocalLocationFinderResult","features":[232]},{"name":"ILocalLocationFinderStatics","features":[232]},{"name":"ILocalLocationHoursOfOperationItem","features":[232]},{"name":"ILocalLocationRatingInfo","features":[232]},{"name":"IPlaceInfoHelperStatics","features":[232]},{"name":"LocalCategories","features":[232]},{"name":"LocalLocation","features":[232]},{"name":"LocalLocationFinder","features":[232]},{"name":"LocalLocationFinderResult","features":[232]},{"name":"LocalLocationFinderStatus","features":[232]},{"name":"LocalLocationHoursOfOperationItem","features":[232]},{"name":"LocalLocationRatingInfo","features":[232]},{"name":"PlaceInfoHelper","features":[232]}],"244":[{"name":"IOfflineMapPackage","features":[233]},{"name":"IOfflineMapPackageQueryResult","features":[233]},{"name":"IOfflineMapPackageStartDownloadResult","features":[233]},{"name":"IOfflineMapPackageStatics","features":[233]},{"name":"OfflineMapPackage","features":[233]},{"name":"OfflineMapPackageQueryResult","features":[233]},{"name":"OfflineMapPackageQueryStatus","features":[233]},{"name":"OfflineMapPackageStartDownloadResult","features":[233]},{"name":"OfflineMapPackageStartDownloadStatus","features":[233]},{"name":"OfflineMapPackageStatus","features":[233]}],"245":[{"name":"IStoreAcquireLicenseResult","features":[234]},{"name":"IStoreAppLicense","features":[234]},{"name":"IStoreAppLicense2","features":[234]},{"name":"IStoreAvailability","features":[234]},{"name":"IStoreCanAcquireLicenseResult","features":[234]},{"name":"IStoreCollectionData","features":[234]},{"name":"IStoreConsumableResult","features":[234]},{"name":"IStoreContext","features":[234]},{"name":"IStoreContext2","features":[234]},{"name":"IStoreContext3","features":[234]},{"name":"IStoreContext4","features":[234]},{"name":"IStoreContext5","features":[234]},{"name":"IStoreContextStatics","features":[234]},{"name":"IStoreImage","features":[234]},{"name":"IStoreLicense","features":[234]},{"name":"IStorePackageInstallOptions","features":[234]},{"name":"IStorePackageLicense","features":[234]},{"name":"IStorePackageUpdate","features":[234]},{"name":"IStorePackageUpdateResult","features":[234]},{"name":"IStorePackageUpdateResult2","features":[234]},{"name":"IStorePrice","features":[234]},{"name":"IStorePrice2","features":[234]},{"name":"IStoreProduct","features":[234]},{"name":"IStoreProductOptions","features":[234]},{"name":"IStoreProductPagedQueryResult","features":[234]},{"name":"IStoreProductQueryResult","features":[234]},{"name":"IStoreProductResult","features":[234]},{"name":"IStorePurchaseProperties","features":[234]},{"name":"IStorePurchasePropertiesFactory","features":[234]},{"name":"IStorePurchaseResult","features":[234]},{"name":"IStoreQueueItem","features":[234]},{"name":"IStoreQueueItem2","features":[234]},{"name":"IStoreQueueItemCompletedEventArgs","features":[234]},{"name":"IStoreQueueItemStatus","features":[234]},{"name":"IStoreRateAndReviewResult","features":[234]},{"name":"IStoreRequestHelperStatics","features":[234]},{"name":"IStoreSendRequestResult","features":[234]},{"name":"IStoreSendRequestResult2","features":[234]},{"name":"IStoreSku","features":[234]},{"name":"IStoreSubscriptionInfo","features":[234]},{"name":"IStoreUninstallStorePackageResult","features":[234]},{"name":"IStoreVideo","features":[234]},{"name":"StoreAcquireLicenseResult","features":[234]},{"name":"StoreAppLicense","features":[234]},{"name":"StoreAvailability","features":[234]},{"name":"StoreCanAcquireLicenseResult","features":[234]},{"name":"StoreCanLicenseStatus","features":[234]},{"name":"StoreCollectionData","features":[234]},{"name":"StoreConsumableResult","features":[234]},{"name":"StoreConsumableStatus","features":[234]},{"name":"StoreContext","features":[234]},{"name":"StoreContract","features":[234]},{"name":"StoreDurationUnit","features":[234]},{"name":"StoreImage","features":[234]},{"name":"StoreLicense","features":[234]},{"name":"StorePackageInstallOptions","features":[234]},{"name":"StorePackageLicense","features":[234]},{"name":"StorePackageUpdate","features":[234]},{"name":"StorePackageUpdateResult","features":[234]},{"name":"StorePackageUpdateState","features":[234]},{"name":"StorePackageUpdateStatus","features":[234]},{"name":"StorePrice","features":[234]},{"name":"StoreProduct","features":[234]},{"name":"StoreProductOptions","features":[234]},{"name":"StoreProductPagedQueryResult","features":[234]},{"name":"StoreProductQueryResult","features":[234]},{"name":"StoreProductResult","features":[234]},{"name":"StorePurchaseProperties","features":[234]},{"name":"StorePurchaseResult","features":[234]},{"name":"StorePurchaseStatus","features":[234]},{"name":"StoreQueueItem","features":[234]},{"name":"StoreQueueItemCompletedEventArgs","features":[234]},{"name":"StoreQueueItemExtendedState","features":[234]},{"name":"StoreQueueItemKind","features":[234]},{"name":"StoreQueueItemState","features":[234]},{"name":"StoreQueueItemStatus","features":[234]},{"name":"StoreRateAndReviewResult","features":[234]},{"name":"StoreRateAndReviewStatus","features":[234]},{"name":"StoreRequestHelper","features":[234]},{"name":"StoreSendRequestResult","features":[234]},{"name":"StoreSku","features":[234]},{"name":"StoreSubscriptionInfo","features":[234]},{"name":"StoreUninstallStorePackageResult","features":[234]},{"name":"StoreUninstallStorePackageStatus","features":[234]},{"name":"StoreVideo","features":[234]}],"246":[{"name":"ITargetedContentAction","features":[235]},{"name":"ITargetedContentAvailabilityChangedEventArgs","features":[235]},{"name":"ITargetedContentChangedEventArgs","features":[235]},{"name":"ITargetedContentCollection","features":[235]},{"name":"ITargetedContentContainer","features":[235]},{"name":"ITargetedContentContainerStatics","features":[235]},{"name":"ITargetedContentImage","features":[235]},{"name":"ITargetedContentItem","features":[235]},{"name":"ITargetedContentItemState","features":[235]},{"name":"ITargetedContentObject","features":[235]},{"name":"ITargetedContentStateChangedEventArgs","features":[235]},{"name":"ITargetedContentSubscription","features":[235]},{"name":"ITargetedContentSubscriptionOptions","features":[235]},{"name":"ITargetedContentSubscriptionStatics","features":[235]},{"name":"ITargetedContentValue","features":[235]},{"name":"TargetedContentAction","features":[235]},{"name":"TargetedContentAppInstallationState","features":[235]},{"name":"TargetedContentAvailability","features":[235]},{"name":"TargetedContentAvailabilityChangedEventArgs","features":[235]},{"name":"TargetedContentChangedEventArgs","features":[235]},{"name":"TargetedContentCollection","features":[235]},{"name":"TargetedContentContainer","features":[235]},{"name":"TargetedContentContract","features":[235]},{"name":"TargetedContentFile","features":[235,70]},{"name":"TargetedContentImage","features":[235]},{"name":"TargetedContentInteraction","features":[235]},{"name":"TargetedContentItem","features":[235]},{"name":"TargetedContentItemState","features":[235]},{"name":"TargetedContentObject","features":[235]},{"name":"TargetedContentObjectKind","features":[235]},{"name":"TargetedContentStateChangedEventArgs","features":[235]},{"name":"TargetedContentSubscription","features":[235]},{"name":"TargetedContentSubscriptionOptions","features":[235]},{"name":"TargetedContentValue","features":[235]},{"name":"TargetedContentValueKind","features":[235]}],"247":[{"name":"AppDataPaths","features":[236]},{"name":"ApplicationData","features":[236]},{"name":"ApplicationDataCompositeValue","features":[36,236]},{"name":"ApplicationDataContainer","features":[236]},{"name":"ApplicationDataContainerSettings","features":[36,236]},{"name":"ApplicationDataCreateDisposition","features":[236]},{"name":"ApplicationDataLocality","features":[236]},{"name":"ApplicationDataSetVersionHandler","features":[236]},{"name":"CachedFileManager","features":[236]},{"name":"CreationCollisionOption","features":[236]},{"name":"DownloadsFolder","features":[236]},{"name":"FileAccessMode","features":[236]},{"name":"FileAttributes","features":[236]},{"name":"FileIO","features":[236]},{"name":"IAppDataPaths","features":[236]},{"name":"IAppDataPathsStatics","features":[236]},{"name":"IApplicationData","features":[236]},{"name":"IApplicationData2","features":[236]},{"name":"IApplicationData3","features":[236]},{"name":"IApplicationDataContainer","features":[236]},{"name":"IApplicationDataStatics","features":[236]},{"name":"IApplicationDataStatics2","features":[236]},{"name":"ICachedFileManagerStatics","features":[236]},{"name":"IDownloadsFolderStatics","features":[236]},{"name":"IDownloadsFolderStatics2","features":[236]},{"name":"IFileIOStatics","features":[236]},{"name":"IKnownFoldersCameraRollStatics","features":[236]},{"name":"IKnownFoldersPlaylistsStatics","features":[236]},{"name":"IKnownFoldersSavedPicturesStatics","features":[236]},{"name":"IKnownFoldersStatics","features":[236]},{"name":"IKnownFoldersStatics2","features":[236]},{"name":"IKnownFoldersStatics3","features":[236]},{"name":"IKnownFoldersStatics4","features":[236]},{"name":"IPathIOStatics","features":[236]},{"name":"ISetVersionDeferral","features":[236]},{"name":"ISetVersionRequest","features":[236]},{"name":"IStorageFile","features":[236]},{"name":"IStorageFile2","features":[236]},{"name":"IStorageFilePropertiesWithAvailability","features":[236]},{"name":"IStorageFileStatics","features":[236]},{"name":"IStorageFileStatics2","features":[236]},{"name":"IStorageFolder","features":[236]},{"name":"IStorageFolder2","features":[236]},{"name":"IStorageFolder3","features":[236]},{"name":"IStorageFolderStatics","features":[236]},{"name":"IStorageFolderStatics2","features":[236]},{"name":"IStorageItem","features":[236]},{"name":"IStorageItem2","features":[236]},{"name":"IStorageItemProperties","features":[236]},{"name":"IStorageItemProperties2","features":[236]},{"name":"IStorageItemPropertiesWithProvider","features":[236]},{"name":"IStorageLibrary","features":[236]},{"name":"IStorageLibrary2","features":[236]},{"name":"IStorageLibrary3","features":[236]},{"name":"IStorageLibraryChange","features":[236]},{"name":"IStorageLibraryChangeReader","features":[236]},{"name":"IStorageLibraryChangeReader2","features":[236]},{"name":"IStorageLibraryChangeTracker","features":[236]},{"name":"IStorageLibraryChangeTracker2","features":[236]},{"name":"IStorageLibraryChangeTrackerOptions","features":[236]},{"name":"IStorageLibraryLastChangeId","features":[236]},{"name":"IStorageLibraryLastChangeIdStatics","features":[236]},{"name":"IStorageLibraryStatics","features":[236]},{"name":"IStorageLibraryStatics2","features":[236]},{"name":"IStorageProvider","features":[236]},{"name":"IStorageProvider2","features":[236]},{"name":"IStorageStreamTransaction","features":[236]},{"name":"IStreamedFileDataRequest","features":[236]},{"name":"ISystemAudioProperties","features":[236]},{"name":"ISystemDataPaths","features":[236]},{"name":"ISystemDataPathsStatics","features":[236]},{"name":"ISystemGPSProperties","features":[236]},{"name":"ISystemImageProperties","features":[236]},{"name":"ISystemMediaProperties","features":[236]},{"name":"ISystemMusicProperties","features":[236]},{"name":"ISystemPhotoProperties","features":[236]},{"name":"ISystemProperties","features":[236]},{"name":"ISystemVideoProperties","features":[236]},{"name":"IUserDataPaths","features":[236]},{"name":"IUserDataPathsStatics","features":[236]},{"name":"KnownFolderId","features":[236]},{"name":"KnownFolders","features":[236]},{"name":"KnownFoldersAccessStatus","features":[236]},{"name":"KnownLibraryId","features":[236]},{"name":"NameCollisionOption","features":[236]},{"name":"PathIO","features":[236]},{"name":"SetVersionDeferral","features":[236]},{"name":"SetVersionRequest","features":[236]},{"name":"StorageDeleteOption","features":[236]},{"name":"StorageFile","features":[236]},{"name":"StorageFolder","features":[236]},{"name":"StorageItemTypes","features":[236]},{"name":"StorageLibrary","features":[236]},{"name":"StorageLibraryChange","features":[236]},{"name":"StorageLibraryChangeReader","features":[236]},{"name":"StorageLibraryChangeTracker","features":[236]},{"name":"StorageLibraryChangeTrackerOptions","features":[236]},{"name":"StorageLibraryChangeType","features":[236]},{"name":"StorageLibraryLastChangeId","features":[236]},{"name":"StorageOpenOptions","features":[236]},{"name":"StorageProvider","features":[236]},{"name":"StorageStreamTransaction","features":[236]},{"name":"StreamedFileDataRequest","features":[70]},{"name":"StreamedFileDataRequestedHandler","features":[70]},{"name":"StreamedFileFailureMode","features":[236]},{"name":"SystemAudioProperties","features":[236]},{"name":"SystemDataPaths","features":[236]},{"name":"SystemGPSProperties","features":[236]},{"name":"SystemImageProperties","features":[236]},{"name":"SystemMediaProperties","features":[236]},{"name":"SystemMusicProperties","features":[236]},{"name":"SystemPhotoProperties","features":[236]},{"name":"SystemProperties","features":[236]},{"name":"SystemVideoProperties","features":[236]},{"name":"UserDataPaths","features":[236]}],"248":[{"name":"AccessCacheOptions","features":[237]},{"name":"AccessListEntry","features":[237]},{"name":"AccessListEntryView","features":[36,237]},{"name":"IItemRemovedEventArgs","features":[237]},{"name":"IStorageApplicationPermissionsStatics","features":[237]},{"name":"IStorageApplicationPermissionsStatics2","features":[237]},{"name":"IStorageItemAccessList","features":[237]},{"name":"IStorageItemMostRecentlyUsedList","features":[237]},{"name":"IStorageItemMostRecentlyUsedList2","features":[237]},{"name":"ItemRemovedEventArgs","features":[237]},{"name":"RecentStorageItemVisibility","features":[237]},{"name":"StorageApplicationPermissions","features":[237]},{"name":"StorageItemAccessList","features":[237]},{"name":"StorageItemMostRecentlyUsedList","features":[237]}],"249":[{"name":"FileInformation","features":[238]},{"name":"FileInformationFactory","features":[238]},{"name":"FolderInformation","features":[238]},{"name":"IFileInformationFactory","features":[238]},{"name":"IFileInformationFactoryFactory","features":[238]},{"name":"IStorageItemInformation","features":[238]}],"250":[{"name":"CompressAlgorithm","features":[239]},{"name":"Compressor","features":[239]},{"name":"Decompressor","features":[239]},{"name":"ICompressor","features":[239]},{"name":"ICompressorFactory","features":[239]},{"name":"IDecompressor","features":[239]},{"name":"IDecompressorFactory","features":[239]}],"251":[{"name":"BasicProperties","features":[240]},{"name":"DocumentProperties","features":[240]},{"name":"GeotagHelper","features":[240]},{"name":"IBasicProperties","features":[240]},{"name":"IDocumentProperties","features":[240]},{"name":"IGeotagHelperStatics","features":[240]},{"name":"IImageProperties","features":[240]},{"name":"IMusicProperties","features":[240]},{"name":"IStorageItemContentProperties","features":[240]},{"name":"IStorageItemExtraProperties","features":[240]},{"name":"IThumbnailProperties","features":[240]},{"name":"IVideoProperties","features":[240]},{"name":"ImageProperties","features":[240]},{"name":"MusicProperties","features":[240]},{"name":"PhotoOrientation","features":[240]},{"name":"PropertyPrefetchOptions","features":[240]},{"name":"StorageItemContentProperties","features":[240]},{"name":"StorageItemThumbnail","features":[240,70]},{"name":"ThumbnailMode","features":[240]},{"name":"ThumbnailOptions","features":[240]},{"name":"ThumbnailType","features":[240]},{"name":"VideoOrientation","features":[240]},{"name":"VideoProperties","features":[240]}],"252":[{"name":"FileExtensionVector","features":[36,241]},{"name":"FileOpenPicker","features":[241]},{"name":"FilePickerFileTypesOrderedMap","features":[36,241]},{"name":"FilePickerSelectedFilesArray","features":[36,241]},{"name":"FileSavePicker","features":[241]},{"name":"FolderPicker","features":[241]},{"name":"IFileOpenPicker","features":[241]},{"name":"IFileOpenPicker2","features":[241]},{"name":"IFileOpenPicker3","features":[241]},{"name":"IFileOpenPickerStatics","features":[241]},{"name":"IFileOpenPickerStatics2","features":[241]},{"name":"IFileOpenPickerWithOperationId","features":[241]},{"name":"IFileSavePicker","features":[241]},{"name":"IFileSavePicker2","features":[241]},{"name":"IFileSavePicker3","features":[241]},{"name":"IFileSavePicker4","features":[241]},{"name":"IFileSavePickerStatics","features":[241]},{"name":"IFolderPicker","features":[241]},{"name":"IFolderPicker2","features":[241]},{"name":"IFolderPicker3","features":[241]},{"name":"IFolderPickerStatics","features":[241]},{"name":"PickerLocationId","features":[241]},{"name":"PickerViewMode","features":[241]}],"253":[{"name":"AddFileResult","features":[242]},{"name":"FileOpenPickerUI","features":[242]},{"name":"FileRemovedEventArgs","features":[242]},{"name":"FileSavePickerUI","features":[242]},{"name":"FileSelectionMode","features":[242]},{"name":"IFileOpenPickerUI","features":[242]},{"name":"IFileRemovedEventArgs","features":[242]},{"name":"IFileSavePickerUI","features":[242]},{"name":"IPickerClosingDeferral","features":[242]},{"name":"IPickerClosingEventArgs","features":[242]},{"name":"IPickerClosingOperation","features":[242]},{"name":"ITargetFileRequest","features":[242]},{"name":"ITargetFileRequestDeferral","features":[242]},{"name":"ITargetFileRequestedEventArgs","features":[242]},{"name":"PickerClosingDeferral","features":[242]},{"name":"PickerClosingEventArgs","features":[242]},{"name":"PickerClosingOperation","features":[242]},{"name":"SetFileNameResult","features":[242]},{"name":"TargetFileRequest","features":[242]},{"name":"TargetFileRequestDeferral","features":[242]},{"name":"TargetFileRequestedEventArgs","features":[242]}],"254":[{"name":"CachedFileOptions","features":[243]},{"name":"CachedFileTarget","features":[243]},{"name":"CachedFileUpdater","features":[243]},{"name":"CachedFileUpdaterUI","features":[243]},{"name":"CloudFilesContract","features":[243]},{"name":"FileUpdateRequest","features":[243]},{"name":"FileUpdateRequestDeferral","features":[243]},{"name":"FileUpdateRequestedEventArgs","features":[243]},{"name":"FileUpdateStatus","features":[243]},{"name":"ICachedFileUpdaterStatics","features":[243]},{"name":"ICachedFileUpdaterUI","features":[243]},{"name":"ICachedFileUpdaterUI2","features":[243]},{"name":"IFileUpdateRequest","features":[243]},{"name":"IFileUpdateRequest2","features":[243]},{"name":"IFileUpdateRequestDeferral","features":[243]},{"name":"IFileUpdateRequestedEventArgs","features":[243]},{"name":"IStorageProviderFileTypeInfo","features":[243]},{"name":"IStorageProviderFileTypeInfoFactory","features":[243]},{"name":"IStorageProviderGetContentInfoForPathResult","features":[243]},{"name":"IStorageProviderGetPathForContentUriResult","features":[243]},{"name":"IStorageProviderItemPropertiesStatics","features":[243]},{"name":"IStorageProviderItemProperty","features":[243]},{"name":"IStorageProviderItemPropertyDefinition","features":[243]},{"name":"IStorageProviderItemPropertySource","features":[243]},{"name":"IStorageProviderKnownFolderEntry","features":[243]},{"name":"IStorageProviderKnownFolderSyncInfo","features":[243]},{"name":"IStorageProviderKnownFolderSyncInfoSource","features":[243]},{"name":"IStorageProviderKnownFolderSyncInfoSourceFactory","features":[243]},{"name":"IStorageProviderKnownFolderSyncRequestArgs","features":[243]},{"name":"IStorageProviderMoreInfoUI","features":[243]},{"name":"IStorageProviderPropertyCapabilities","features":[243]},{"name":"IStorageProviderQuotaUI","features":[243]},{"name":"IStorageProviderStatusUI","features":[243]},{"name":"IStorageProviderStatusUISource","features":[243]},{"name":"IStorageProviderStatusUISourceFactory","features":[243]},{"name":"IStorageProviderSyncRootInfo","features":[243]},{"name":"IStorageProviderSyncRootInfo2","features":[243]},{"name":"IStorageProviderSyncRootInfo3","features":[243]},{"name":"IStorageProviderSyncRootManagerStatics","features":[243]},{"name":"IStorageProviderSyncRootManagerStatics2","features":[243]},{"name":"IStorageProviderUICommand","features":[243]},{"name":"IStorageProviderUriSource","features":[243]},{"name":"ReadActivationMode","features":[243]},{"name":"StorageProviderFileTypeInfo","features":[243]},{"name":"StorageProviderGetContentInfoForPathResult","features":[243]},{"name":"StorageProviderGetPathForContentUriResult","features":[243]},{"name":"StorageProviderHardlinkPolicy","features":[243]},{"name":"StorageProviderHydrationPolicy","features":[243]},{"name":"StorageProviderHydrationPolicyModifier","features":[243]},{"name":"StorageProviderInSyncPolicy","features":[243]},{"name":"StorageProviderItemProperties","features":[243]},{"name":"StorageProviderItemProperty","features":[243]},{"name":"StorageProviderItemPropertyDefinition","features":[243]},{"name":"StorageProviderKnownFolderEntry","features":[243]},{"name":"StorageProviderKnownFolderSyncInfo","features":[243]},{"name":"StorageProviderKnownFolderSyncRequestArgs","features":[243]},{"name":"StorageProviderKnownFolderSyncRequestedHandler","features":[243]},{"name":"StorageProviderKnownFolderSyncStatus","features":[243]},{"name":"StorageProviderMoreInfoUI","features":[243]},{"name":"StorageProviderPopulationPolicy","features":[243]},{"name":"StorageProviderProtectionMode","features":[243]},{"name":"StorageProviderQuotaUI","features":[243]},{"name":"StorageProviderState","features":[243]},{"name":"StorageProviderStatusUI","features":[243]},{"name":"StorageProviderSyncRootInfo","features":[243]},{"name":"StorageProviderSyncRootManager","features":[243]},{"name":"StorageProviderUICommandState","features":[243]},{"name":"StorageProviderUriSourceStatus","features":[243]},{"name":"UIStatus","features":[243]},{"name":"WriteActivationMode","features":[243]}],"255":[{"name":"CommonFileQuery","features":[244]},{"name":"CommonFolderQuery","features":[244]},{"name":"ContentIndexer","features":[244]},{"name":"ContentIndexerQuery","features":[244]},{"name":"DateStackOption","features":[244]},{"name":"FolderDepth","features":[244]},{"name":"IContentIndexer","features":[244]},{"name":"IContentIndexerQuery","features":[244]},{"name":"IContentIndexerQueryOperations","features":[244]},{"name":"IContentIndexerStatics","features":[244]},{"name":"IIndexableContent","features":[244]},{"name":"IQueryOptions","features":[244]},{"name":"IQueryOptionsFactory","features":[244]},{"name":"IQueryOptionsWithProviderFilter","features":[244]},{"name":"IStorageFileQueryResult","features":[244]},{"name":"IStorageFileQueryResult2","features":[244]},{"name":"IStorageFolderQueryOperations","features":[244]},{"name":"IStorageFolderQueryResult","features":[244]},{"name":"IStorageItemQueryResult","features":[244]},{"name":"IStorageLibraryChangeTrackerTriggerDetails","features":[244]},{"name":"IStorageLibraryContentChangedTriggerDetails","features":[244]},{"name":"IStorageQueryResultBase","features":[244]},{"name":"IValueAndLanguage","features":[244]},{"name":"IndexableContent","features":[244]},{"name":"IndexedState","features":[244]},{"name":"IndexerOption","features":[244]},{"name":"QueryOptions","features":[244]},{"name":"SortEntry","features":[244]},{"name":"SortEntryVector","features":[36,244]},{"name":"StorageFileQueryResult","features":[244]},{"name":"StorageFolderQueryResult","features":[244]},{"name":"StorageItemQueryResult","features":[244]},{"name":"StorageLibraryChangeTrackerTriggerDetails","features":[244]},{"name":"StorageLibraryContentChangedTriggerDetails","features":[244]},{"name":"ValueAndLanguage","features":[244]}],"256":[{"name":"Buffer","features":[70]},{"name":"ByteOrder","features":[70]},{"name":"DataReader","features":[70]},{"name":"DataReaderLoadOperation","features":[76,70]},{"name":"DataWriter","features":[70]},{"name":"DataWriterStoreOperation","features":[76,70]},{"name":"FileInputStream","features":[70]},{"name":"FileOpenDisposition","features":[70]},{"name":"FileOutputStream","features":[70]},{"name":"FileRandomAccessStream","features":[70]},{"name":"IBuffer","features":[70]},{"name":"IBufferFactory","features":[70]},{"name":"IBufferStatics","features":[70]},{"name":"IContentTypeProvider","features":[70]},{"name":"IDataReader","features":[70]},{"name":"IDataReaderFactory","features":[70]},{"name":"IDataReaderStatics","features":[70]},{"name":"IDataWriter","features":[70]},{"name":"IDataWriterFactory","features":[70]},{"name":"IFileRandomAccessStreamStatics","features":[70]},{"name":"IInputStream","features":[70]},{"name":"IInputStreamReference","features":[70]},{"name":"IOutputStream","features":[70]},{"name":"IPropertySetSerializer","features":[70]},{"name":"IRandomAccessStream","features":[70]},{"name":"IRandomAccessStreamReference","features":[70]},{"name":"IRandomAccessStreamReferenceStatics","features":[70]},{"name":"IRandomAccessStreamStatics","features":[70]},{"name":"IRandomAccessStreamWithContentType","features":[70]},{"name":"InMemoryRandomAccessStream","features":[70]},{"name":"InputStreamOptions","features":[70]},{"name":"InputStreamOverStream","features":[70]},{"name":"OutputStreamOverStream","features":[70]},{"name":"RandomAccessStream","features":[70]},{"name":"RandomAccessStreamOverStream","features":[70]},{"name":"RandomAccessStreamReference","features":[70]},{"name":"UnicodeEncoding","features":[70]}],"257":[{"name":"AppActivationResult","features":[245]},{"name":"AppDiagnosticInfo","features":[245]},{"name":"AppDiagnosticInfoWatcher","features":[245]},{"name":"AppDiagnosticInfoWatcherEventArgs","features":[245]},{"name":"AppDiagnosticInfoWatcherStatus","features":[245]},{"name":"AppExecutionStateChangeResult","features":[245]},{"name":"AppMemoryReport","features":[245]},{"name":"AppMemoryUsageLevel","features":[245]},{"name":"AppMemoryUsageLimitChangingEventArgs","features":[245]},{"name":"AppResourceGroupBackgroundTaskReport","features":[245]},{"name":"AppResourceGroupEnergyQuotaState","features":[245]},{"name":"AppResourceGroupExecutionState","features":[245]},{"name":"AppResourceGroupInfo","features":[245]},{"name":"AppResourceGroupInfoWatcher","features":[245]},{"name":"AppResourceGroupInfoWatcherEventArgs","features":[245]},{"name":"AppResourceGroupInfoWatcherExecutionStateChangedEventArgs","features":[245]},{"name":"AppResourceGroupInfoWatcherStatus","features":[245]},{"name":"AppResourceGroupMemoryReport","features":[245]},{"name":"AppResourceGroupStateReport","features":[245]},{"name":"AppUriHandlerHost","features":[245]},{"name":"AppUriHandlerRegistration","features":[245]},{"name":"AppUriHandlerRegistrationManager","features":[245]},{"name":"AutoUpdateTimeZoneStatus","features":[245]},{"name":"DateTimeSettings","features":[245]},{"name":"DiagnosticAccessStatus","features":[245]},{"name":"DispatcherQueue","features":[245]},{"name":"DispatcherQueueController","features":[245]},{"name":"DispatcherQueueHandler","features":[245]},{"name":"DispatcherQueuePriority","features":[245]},{"name":"DispatcherQueueShutdownStartingEventArgs","features":[245]},{"name":"DispatcherQueueTimer","features":[245]},{"name":"FolderLauncherOptions","features":[245]},{"name":"IAppActivationResult","features":[245]},{"name":"IAppDiagnosticInfo","features":[245]},{"name":"IAppDiagnosticInfo2","features":[245]},{"name":"IAppDiagnosticInfo3","features":[245]},{"name":"IAppDiagnosticInfoStatics","features":[245]},{"name":"IAppDiagnosticInfoStatics2","features":[245]},{"name":"IAppDiagnosticInfoWatcher","features":[245]},{"name":"IAppDiagnosticInfoWatcherEventArgs","features":[245]},{"name":"IAppExecutionStateChangeResult","features":[245]},{"name":"IAppMemoryReport","features":[245]},{"name":"IAppMemoryReport2","features":[245]},{"name":"IAppMemoryUsageLimitChangingEventArgs","features":[245]},{"name":"IAppResourceGroupBackgroundTaskReport","features":[245]},{"name":"IAppResourceGroupInfo","features":[245]},{"name":"IAppResourceGroupInfo2","features":[245]},{"name":"IAppResourceGroupInfoWatcher","features":[245]},{"name":"IAppResourceGroupInfoWatcherEventArgs","features":[245]},{"name":"IAppResourceGroupInfoWatcherExecutionStateChangedEventArgs","features":[245]},{"name":"IAppResourceGroupMemoryReport","features":[245]},{"name":"IAppResourceGroupStateReport","features":[245]},{"name":"IAppUriHandlerHost","features":[245]},{"name":"IAppUriHandlerHost2","features":[245]},{"name":"IAppUriHandlerHostFactory","features":[245]},{"name":"IAppUriHandlerRegistration","features":[245]},{"name":"IAppUriHandlerRegistration2","features":[245]},{"name":"IAppUriHandlerRegistrationManager","features":[245]},{"name":"IAppUriHandlerRegistrationManager2","features":[245]},{"name":"IAppUriHandlerRegistrationManagerStatics","features":[245]},{"name":"IAppUriHandlerRegistrationManagerStatics2","features":[245]},{"name":"IDateTimeSettingsStatics","features":[245]},{"name":"IDispatcherQueue","features":[245]},{"name":"IDispatcherQueue2","features":[245]},{"name":"IDispatcherQueueController","features":[245]},{"name":"IDispatcherQueueControllerStatics","features":[245]},{"name":"IDispatcherQueueShutdownStartingEventArgs","features":[245]},{"name":"IDispatcherQueueStatics","features":[245]},{"name":"IDispatcherQueueTimer","features":[245]},{"name":"IFolderLauncherOptions","features":[245]},{"name":"IKnownUserPropertiesStatics","features":[245]},{"name":"IKnownUserPropertiesStatics2","features":[245]},{"name":"ILaunchUriResult","features":[245]},{"name":"ILauncherOptions","features":[245]},{"name":"ILauncherOptions2","features":[245]},{"name":"ILauncherOptions3","features":[245]},{"name":"ILauncherOptions4","features":[245]},{"name":"ILauncherStatics","features":[245]},{"name":"ILauncherStatics2","features":[245]},{"name":"ILauncherStatics3","features":[245]},{"name":"ILauncherStatics4","features":[245]},{"name":"ILauncherStatics5","features":[245]},{"name":"ILauncherUIOptions","features":[245]},{"name":"ILauncherViewOptions","features":[245]},{"name":"IMemoryManagerStatics","features":[245]},{"name":"IMemoryManagerStatics2","features":[245]},{"name":"IMemoryManagerStatics3","features":[245]},{"name":"IMemoryManagerStatics4","features":[245]},{"name":"IProcessLauncherOptions","features":[245]},{"name":"IProcessLauncherResult","features":[245]},{"name":"IProcessLauncherStatics","features":[245]},{"name":"IProcessMemoryReport","features":[245]},{"name":"IProtocolForResultsOperation","features":[245]},{"name":"IRemoteLauncherOptions","features":[245]},{"name":"IRemoteLauncherStatics","features":[245]},{"name":"IShutdownManagerStatics","features":[245]},{"name":"IShutdownManagerStatics2","features":[245]},{"name":"ITimeZoneSettingsStatics","features":[245]},{"name":"ITimeZoneSettingsStatics2","features":[245]},{"name":"IUser","features":[245]},{"name":"IUser2","features":[245]},{"name":"IUserAuthenticationStatusChangeDeferral","features":[245]},{"name":"IUserAuthenticationStatusChangingEventArgs","features":[245]},{"name":"IUserChangedEventArgs","features":[245]},{"name":"IUserChangedEventArgs2","features":[245]},{"name":"IUserDeviceAssociationChangedEventArgs","features":[245]},{"name":"IUserDeviceAssociationStatics","features":[245]},{"name":"IUserPicker","features":[245]},{"name":"IUserPickerStatics","features":[245]},{"name":"IUserStatics","features":[245]},{"name":"IUserStatics2","features":[245]},{"name":"IUserWatcher","features":[245]},{"name":"KnownUserProperties","features":[245]},{"name":"LaunchFileStatus","features":[245]},{"name":"LaunchQuerySupportStatus","features":[245]},{"name":"LaunchQuerySupportType","features":[245]},{"name":"LaunchUriResult","features":[245]},{"name":"LaunchUriStatus","features":[245]},{"name":"Launcher","features":[245]},{"name":"LauncherOptions","features":[245]},{"name":"LauncherUIOptions","features":[245]},{"name":"MemoryManager","features":[245]},{"name":"PowerState","features":[245]},{"name":"ProcessLauncher","features":[245]},{"name":"ProcessLauncherOptions","features":[245]},{"name":"ProcessLauncherResult","features":[245]},{"name":"ProcessMemoryReport","features":[245]},{"name":"ProcessorArchitecture","features":[245]},{"name":"ProtocolForResultsOperation","features":[245]},{"name":"RemoteLaunchUriStatus","features":[245]},{"name":"RemoteLauncher","features":[245]},{"name":"RemoteLauncherOptions","features":[245]},{"name":"ShutdownKind","features":[245]},{"name":"ShutdownManager","features":[245]},{"name":"SystemManagementContract","features":[245]},{"name":"TimeZoneSettings","features":[245]},{"name":"User","features":[245]},{"name":"UserAgeConsentGroup","features":[245]},{"name":"UserAgeConsentResult","features":[245]},{"name":"UserAuthenticationStatus","features":[245]},{"name":"UserAuthenticationStatusChangeDeferral","features":[245]},{"name":"UserAuthenticationStatusChangingEventArgs","features":[245]},{"name":"UserChangedEventArgs","features":[245]},{"name":"UserDeviceAssociation","features":[245]},{"name":"UserDeviceAssociationChangedEventArgs","features":[245]},{"name":"UserPicker","features":[245]},{"name":"UserPictureSize","features":[245]},{"name":"UserType","features":[245]},{"name":"UserWatcher","features":[245]},{"name":"UserWatcherStatus","features":[245]},{"name":"UserWatcherUpdateKind","features":[245]},{"name":"VirtualKey","features":[245]},{"name":"VirtualKeyModifiers","features":[245]}],"258":[{"name":"DiagnosticActionResult","features":[246]},{"name":"DiagnosticActionState","features":[246]},{"name":"DiagnosticInvoker","features":[246]},{"name":"IDiagnosticActionResult","features":[246]},{"name":"IDiagnosticInvoker","features":[246]},{"name":"IDiagnosticInvoker2","features":[246]},{"name":"IDiagnosticInvokerStatics","features":[246]},{"name":"IProcessCpuUsage","features":[246]},{"name":"IProcessCpuUsageReport","features":[246]},{"name":"IProcessDiagnosticInfo","features":[246]},{"name":"IProcessDiagnosticInfo2","features":[246]},{"name":"IProcessDiagnosticInfoStatics","features":[246]},{"name":"IProcessDiagnosticInfoStatics2","features":[246]},{"name":"IProcessDiskUsage","features":[246]},{"name":"IProcessDiskUsageReport","features":[246]},{"name":"IProcessMemoryUsage","features":[246]},{"name":"IProcessMemoryUsageReport","features":[246]},{"name":"ISystemCpuUsage","features":[246]},{"name":"ISystemCpuUsageReport","features":[246]},{"name":"ISystemDiagnosticInfo","features":[246]},{"name":"ISystemDiagnosticInfoStatics","features":[246]},{"name":"ISystemDiagnosticInfoStatics2","features":[246]},{"name":"ISystemMemoryUsage","features":[246]},{"name":"ISystemMemoryUsageReport","features":[246]},{"name":"ProcessCpuUsage","features":[246]},{"name":"ProcessCpuUsageReport","features":[246]},{"name":"ProcessDiagnosticInfo","features":[246]},{"name":"ProcessDiskUsage","features":[246]},{"name":"ProcessDiskUsageReport","features":[246]},{"name":"ProcessMemoryUsage","features":[246]},{"name":"ProcessMemoryUsageReport","features":[246]},{"name":"SystemCpuUsage","features":[246]},{"name":"SystemCpuUsageReport","features":[246]},{"name":"SystemDiagnosticInfo","features":[246]},{"name":"SystemMemoryUsage","features":[246]},{"name":"SystemMemoryUsageReport","features":[246]}],"259":[{"name":"DevicePortalConnection","features":[247]},{"name":"DevicePortalConnectionClosedEventArgs","features":[247]},{"name":"DevicePortalConnectionClosedReason","features":[247]},{"name":"DevicePortalConnectionRequestReceivedEventArgs","features":[247]},{"name":"IDevicePortalConnection","features":[247]},{"name":"IDevicePortalConnectionClosedEventArgs","features":[247]},{"name":"IDevicePortalConnectionRequestReceivedEventArgs","features":[247]},{"name":"IDevicePortalConnectionStatics","features":[247]},{"name":"IDevicePortalWebSocketConnection","features":[247]},{"name":"IDevicePortalWebSocketConnectionRequestReceivedEventArgs","features":[247]}],"260":[{"name":"IPlatformTelemetryClientStatics","features":[248]},{"name":"IPlatformTelemetryRegistrationResult","features":[248]},{"name":"IPlatformTelemetryRegistrationSettings","features":[248]},{"name":"PlatformTelemetryClient","features":[248]},{"name":"PlatformTelemetryRegistrationResult","features":[248]},{"name":"PlatformTelemetryRegistrationSettings","features":[248]},{"name":"PlatformTelemetryRegistrationStatus","features":[248]}],"261":[{"name":"IPlatformDiagnosticActionsStatics","features":[249]},{"name":"IPlatformDiagnosticTraceInfo","features":[249]},{"name":"IPlatformDiagnosticTraceRuntimeInfo","features":[249]},{"name":"PlatformDiagnosticActionState","features":[249]},{"name":"PlatformDiagnosticActions","features":[249]},{"name":"PlatformDiagnosticEscalationType","features":[249]},{"name":"PlatformDiagnosticEventBufferLatencies","features":[249]},{"name":"PlatformDiagnosticTraceInfo","features":[249]},{"name":"PlatformDiagnosticTracePriority","features":[249]},{"name":"PlatformDiagnosticTraceRuntimeInfo","features":[249]},{"name":"PlatformDiagnosticTraceSlotState","features":[249]},{"name":"PlatformDiagnosticTraceSlotType","features":[249]}],"262":[{"name":"DisplayRequest","features":[250]},{"name":"IDisplayRequest","features":[250]}],"263":[{"name":"ISysStorageProviderEventReceivedEventArgs","features":[251]},{"name":"ISysStorageProviderEventReceivedEventArgsFactory","features":[251]},{"name":"ISysStorageProviderEventSource","features":[251]},{"name":"ISysStorageProviderHandlerFactory","features":[251]},{"name":"ISysStorageProviderHttpRequestProvider","features":[251]},{"name":"SysStorageProviderEventReceivedEventArgs","features":[251]}],"264":[{"name":"IInstalledDesktopApp","features":[252]},{"name":"IInstalledDesktopAppStatics","features":[252]},{"name":"InstalledDesktopApp","features":[252]}],"265":[{"name":"BackgroundEnergyManager","features":[253]},{"name":"BatteryStatus","features":[253]},{"name":"EnergySaverStatus","features":[253]},{"name":"ForegroundEnergyManager","features":[253]},{"name":"IBackgroundEnergyManagerStatics","features":[253]},{"name":"IForegroundEnergyManagerStatics","features":[253]},{"name":"IPowerManagerStatics","features":[253]},{"name":"PowerManager","features":[253]},{"name":"PowerSupplyStatus","features":[253]}],"268":[{"name":"AnalyticsInfo","features":[254]},{"name":"AnalyticsVersionInfo","features":[254]},{"name":"AppApplicability","features":[254]},{"name":"EducationSettings","features":[254]},{"name":"HardwareIdentification","features":[254]},{"name":"HardwareToken","features":[254]},{"name":"IAnalyticsInfoStatics","features":[254]},{"name":"IAnalyticsInfoStatics2","features":[254]},{"name":"IAnalyticsVersionInfo","features":[254]},{"name":"IAnalyticsVersionInfo2","features":[254]},{"name":"IAppApplicabilityStatics","features":[254]},{"name":"IEducationSettingsStatics","features":[254]},{"name":"IHardwareIdentificationStatics","features":[254]},{"name":"IHardwareToken","features":[254]},{"name":"IKnownRetailInfoPropertiesStatics","features":[254]},{"name":"IPlatformDiagnosticsAndUsageDataSettingsStatics","features":[254]},{"name":"IRetailInfoStatics","features":[254]},{"name":"ISharedModeSettingsStatics","features":[254]},{"name":"ISharedModeSettingsStatics2","features":[254]},{"name":"ISmartAppControlPolicyStatics","features":[254]},{"name":"ISystemIdentificationInfo","features":[254]},{"name":"ISystemIdentificationStatics","features":[254]},{"name":"ISystemSetupInfoStatics","features":[254]},{"name":"IUnsupportedAppRequirement","features":[254]},{"name":"IWindowsIntegrityPolicyStatics","features":[254]},{"name":"KnownRetailInfoProperties","features":[254]},{"name":"PlatformDataCollectionLevel","features":[254]},{"name":"PlatformDiagnosticsAndUsageDataSettings","features":[254]},{"name":"ProfileHardwareTokenContract","features":[254]},{"name":"ProfileRetailInfoContract","features":[254]},{"name":"ProfileSharedModeContract","features":[254]},{"name":"RetailInfo","features":[254]},{"name":"SharedModeSettings","features":[254]},{"name":"SmartAppControlPolicy","features":[254]},{"name":"SystemIdentification","features":[254]},{"name":"SystemIdentificationInfo","features":[254]},{"name":"SystemIdentificationSource","features":[254]},{"name":"SystemOutOfBoxExperienceState","features":[254]},{"name":"SystemSetupInfo","features":[254]},{"name":"UnsupportedAppRequirement","features":[254]},{"name":"UnsupportedAppRequirementReasons","features":[254]},{"name":"WindowsIntegrityPolicy","features":[254]}],"269":[{"name":"IOemSupportInfo","features":[255]},{"name":"ISmbiosInformationStatics","features":[255]},{"name":"ISystemSupportDeviceInfo","features":[255]},{"name":"ISystemSupportInfoStatics","features":[255]},{"name":"ISystemSupportInfoStatics2","features":[255]},{"name":"OemSupportInfo","features":[255]},{"name":"SmbiosInformation","features":[255]},{"name":"SystemManufacturersContract","features":[255]},{"name":"SystemSupportDeviceInfo","features":[255]},{"name":"SystemSupportInfo","features":[255]}],"270":[{"name":"IInteractiveSessionStatics","features":[256]},{"name":"InteractiveSession","features":[256]}],"271":[{"name":"IRemoteTextConnection","features":[257]},{"name":"IRemoteTextConnectionFactory","features":[257]},{"name":"RemoteTextConnection","features":[257]},{"name":"RemoteTextConnectionDataHandler","features":[257]}],"272":[{"name":"IPerformLocalActionRequestedEventArgs","features":[258]},{"name":"IRemoteDesktopConnectionInfo","features":[258]},{"name":"IRemoteDesktopConnectionInfoStatics","features":[258]},{"name":"IRemoteDesktopConnectionRemoteInfo","features":[258]},{"name":"IRemoteDesktopConnectionRemoteInfoStatics","features":[258]},{"name":"IRemoteDesktopInfo","features":[258]},{"name":"IRemoteDesktopInfoFactory","features":[258]},{"name":"IRemoteDesktopRegistrarStatics","features":[258]},{"name":"PerformLocalActionRequestedEventArgs","features":[258]},{"name":"RemoteDesktopConnectionInfo","features":[258]},{"name":"RemoteDesktopConnectionRemoteInfo","features":[258]},{"name":"RemoteDesktopConnectionStatus","features":[258]},{"name":"RemoteDesktopInfo","features":[258]},{"name":"RemoteDesktopLocalAction","features":[258]},{"name":"RemoteDesktopRegistrar","features":[258]}],"273":[{"name":"IKnownRemoteSystemCapabilitiesStatics","features":[259]},{"name":"IRemoteSystem","features":[259]},{"name":"IRemoteSystem2","features":[259]},{"name":"IRemoteSystem3","features":[259]},{"name":"IRemoteSystem4","features":[259]},{"name":"IRemoteSystem5","features":[259]},{"name":"IRemoteSystem6","features":[259]},{"name":"IRemoteSystemAddedEventArgs","features":[259]},{"name":"IRemoteSystemApp","features":[259]},{"name":"IRemoteSystemApp2","features":[259]},{"name":"IRemoteSystemAppRegistration","features":[259]},{"name":"IRemoteSystemAppRegistrationStatics","features":[259]},{"name":"IRemoteSystemAuthorizationKindFilter","features":[259]},{"name":"IRemoteSystemAuthorizationKindFilterFactory","features":[259]},{"name":"IRemoteSystemConnectionInfo","features":[259]},{"name":"IRemoteSystemConnectionInfoStatics","features":[259]},{"name":"IRemoteSystemConnectionRequest","features":[259]},{"name":"IRemoteSystemConnectionRequest2","features":[259]},{"name":"IRemoteSystemConnectionRequest3","features":[259]},{"name":"IRemoteSystemConnectionRequestFactory","features":[259]},{"name":"IRemoteSystemConnectionRequestStatics","features":[259]},{"name":"IRemoteSystemConnectionRequestStatics2","features":[259]},{"name":"IRemoteSystemDiscoveryTypeFilter","features":[259]},{"name":"IRemoteSystemDiscoveryTypeFilterFactory","features":[259]},{"name":"IRemoteSystemEnumerationCompletedEventArgs","features":[259]},{"name":"IRemoteSystemFilter","features":[259]},{"name":"IRemoteSystemKindFilter","features":[259]},{"name":"IRemoteSystemKindFilterFactory","features":[259]},{"name":"IRemoteSystemKindStatics","features":[259]},{"name":"IRemoteSystemKindStatics2","features":[259]},{"name":"IRemoteSystemRemovedEventArgs","features":[259]},{"name":"IRemoteSystemSession","features":[259]},{"name":"IRemoteSystemSessionAddedEventArgs","features":[259]},{"name":"IRemoteSystemSessionController","features":[259]},{"name":"IRemoteSystemSessionControllerFactory","features":[259]},{"name":"IRemoteSystemSessionCreationResult","features":[259]},{"name":"IRemoteSystemSessionDisconnectedEventArgs","features":[259]},{"name":"IRemoteSystemSessionInfo","features":[259]},{"name":"IRemoteSystemSessionInvitation","features":[259]},{"name":"IRemoteSystemSessionInvitationListener","features":[259]},{"name":"IRemoteSystemSessionInvitationReceivedEventArgs","features":[259]},{"name":"IRemoteSystemSessionJoinRequest","features":[259]},{"name":"IRemoteSystemSessionJoinRequestedEventArgs","features":[259]},{"name":"IRemoteSystemSessionJoinResult","features":[259]},{"name":"IRemoteSystemSessionMessageChannel","features":[259]},{"name":"IRemoteSystemSessionMessageChannelFactory","features":[259]},{"name":"IRemoteSystemSessionOptions","features":[259]},{"name":"IRemoteSystemSessionParticipant","features":[259]},{"name":"IRemoteSystemSessionParticipantAddedEventArgs","features":[259]},{"name":"IRemoteSystemSessionParticipantRemovedEventArgs","features":[259]},{"name":"IRemoteSystemSessionParticipantWatcher","features":[259]},{"name":"IRemoteSystemSessionRemovedEventArgs","features":[259]},{"name":"IRemoteSystemSessionStatics","features":[259]},{"name":"IRemoteSystemSessionUpdatedEventArgs","features":[259]},{"name":"IRemoteSystemSessionValueSetReceivedEventArgs","features":[259]},{"name":"IRemoteSystemSessionWatcher","features":[259]},{"name":"IRemoteSystemStatics","features":[259]},{"name":"IRemoteSystemStatics2","features":[259]},{"name":"IRemoteSystemStatics3","features":[259]},{"name":"IRemoteSystemStatusTypeFilter","features":[259]},{"name":"IRemoteSystemStatusTypeFilterFactory","features":[259]},{"name":"IRemoteSystemUpdatedEventArgs","features":[259]},{"name":"IRemoteSystemWatcher","features":[259]},{"name":"IRemoteSystemWatcher2","features":[259]},{"name":"IRemoteSystemWatcher3","features":[259]},{"name":"IRemoteSystemWatcherErrorOccurredEventArgs","features":[259]},{"name":"IRemoteSystemWebAccountFilter","features":[259]},{"name":"IRemoteSystemWebAccountFilterFactory","features":[259]},{"name":"KnownRemoteSystemCapabilities","features":[259]},{"name":"RemoteSystem","features":[259]},{"name":"RemoteSystemAccessStatus","features":[259]},{"name":"RemoteSystemAddedEventArgs","features":[259]},{"name":"RemoteSystemApp","features":[259]},{"name":"RemoteSystemAppRegistration","features":[259]},{"name":"RemoteSystemAuthorizationKind","features":[259]},{"name":"RemoteSystemAuthorizationKindFilter","features":[259]},{"name":"RemoteSystemConnectionInfo","features":[259]},{"name":"RemoteSystemConnectionRequest","features":[259]},{"name":"RemoteSystemDiscoveryType","features":[259]},{"name":"RemoteSystemDiscoveryTypeFilter","features":[259]},{"name":"RemoteSystemEnumerationCompletedEventArgs","features":[259]},{"name":"RemoteSystemKindFilter","features":[259]},{"name":"RemoteSystemKinds","features":[259]},{"name":"RemoteSystemPlatform","features":[259]},{"name":"RemoteSystemRemovedEventArgs","features":[259]},{"name":"RemoteSystemSession","features":[259]},{"name":"RemoteSystemSessionAddedEventArgs","features":[259]},{"name":"RemoteSystemSessionController","features":[259]},{"name":"RemoteSystemSessionCreationResult","features":[259]},{"name":"RemoteSystemSessionCreationStatus","features":[259]},{"name":"RemoteSystemSessionDisconnectedEventArgs","features":[259]},{"name":"RemoteSystemSessionDisconnectedReason","features":[259]},{"name":"RemoteSystemSessionInfo","features":[259]},{"name":"RemoteSystemSessionInvitation","features":[259]},{"name":"RemoteSystemSessionInvitationListener","features":[259]},{"name":"RemoteSystemSessionInvitationReceivedEventArgs","features":[259]},{"name":"RemoteSystemSessionJoinRequest","features":[259]},{"name":"RemoteSystemSessionJoinRequestedEventArgs","features":[259]},{"name":"RemoteSystemSessionJoinResult","features":[259]},{"name":"RemoteSystemSessionJoinStatus","features":[259]},{"name":"RemoteSystemSessionMessageChannel","features":[259]},{"name":"RemoteSystemSessionMessageChannelReliability","features":[259]},{"name":"RemoteSystemSessionOptions","features":[259]},{"name":"RemoteSystemSessionParticipant","features":[259]},{"name":"RemoteSystemSessionParticipantAddedEventArgs","features":[259]},{"name":"RemoteSystemSessionParticipantRemovedEventArgs","features":[259]},{"name":"RemoteSystemSessionParticipantWatcher","features":[259]},{"name":"RemoteSystemSessionParticipantWatcherStatus","features":[259]},{"name":"RemoteSystemSessionRemovedEventArgs","features":[259]},{"name":"RemoteSystemSessionUpdatedEventArgs","features":[259]},{"name":"RemoteSystemSessionValueSetReceivedEventArgs","features":[259]},{"name":"RemoteSystemSessionWatcher","features":[259]},{"name":"RemoteSystemSessionWatcherStatus","features":[259]},{"name":"RemoteSystemStatus","features":[259]},{"name":"RemoteSystemStatusType","features":[259]},{"name":"RemoteSystemStatusTypeFilter","features":[259]},{"name":"RemoteSystemUpdatedEventArgs","features":[259]},{"name":"RemoteSystemWatcher","features":[259]},{"name":"RemoteSystemWatcherError","features":[259]},{"name":"RemoteSystemWatcherErrorOccurredEventArgs","features":[259]},{"name":"RemoteSystemWebAccountFilter","features":[259]}],"274":[{"name":"IThreadPoolStatics","features":[260]},{"name":"IThreadPoolTimer","features":[260]},{"name":"IThreadPoolTimerStatics","features":[260]},{"name":"ThreadPool","features":[260]},{"name":"ThreadPoolTimer","features":[260]},{"name":"TimerDestroyedHandler","features":[260]},{"name":"TimerElapsedHandler","features":[260]},{"name":"WorkItemHandler","features":[76,260]},{"name":"WorkItemOptions","features":[260]},{"name":"WorkItemPriority","features":[260]}],"275":[{"name":"IPreallocatedWorkItem","features":[261]},{"name":"IPreallocatedWorkItemFactory","features":[261]},{"name":"ISignalNotifier","features":[261]},{"name":"ISignalNotifierStatics","features":[261]},{"name":"PreallocatedWorkItem","features":[261]},{"name":"SignalHandler","features":[261]},{"name":"SignalNotifier","features":[261]}],"276":[{"name":"ISystemUpdateItem","features":[262]},{"name":"ISystemUpdateLastErrorInfo","features":[262]},{"name":"ISystemUpdateManagerStatics","features":[262]},{"name":"SystemUpdateAttentionRequiredReason","features":[262]},{"name":"SystemUpdateItem","features":[262]},{"name":"SystemUpdateItemState","features":[262]},{"name":"SystemUpdateLastErrorInfo","features":[262]},{"name":"SystemUpdateManager","features":[262]},{"name":"SystemUpdateManagerState","features":[262]},{"name":"SystemUpdateStartInstallAction","features":[262]}],"277":[{"name":"AccountPictureKind","features":[263]},{"name":"AdvertisingManager","features":[263]},{"name":"AdvertisingManagerForUser","features":[263]},{"name":"AssignedAccessSettings","features":[263]},{"name":"DiagnosticsSettings","features":[263]},{"name":"FirstSignInSettings","features":[263]},{"name":"GlobalizationPreferences","features":[263]},{"name":"GlobalizationPreferencesForUser","features":[263]},{"name":"IAdvertisingManagerForUser","features":[263]},{"name":"IAdvertisingManagerStatics","features":[263]},{"name":"IAdvertisingManagerStatics2","features":[263]},{"name":"IAssignedAccessSettings","features":[263]},{"name":"IAssignedAccessSettingsStatics","features":[263]},{"name":"IDiagnosticsSettings","features":[263]},{"name":"IDiagnosticsSettingsStatics","features":[263]},{"name":"IFirstSignInSettings","features":[263]},{"name":"IFirstSignInSettingsStatics","features":[263]},{"name":"IGlobalizationPreferencesForUser","features":[263]},{"name":"IGlobalizationPreferencesStatics","features":[263]},{"name":"IGlobalizationPreferencesStatics2","features":[263]},{"name":"IGlobalizationPreferencesStatics3","features":[263]},{"name":"ILockScreenImageFeedStatics","features":[263]},{"name":"ILockScreenStatics","features":[263]},{"name":"IUserInformationStatics","features":[263]},{"name":"IUserProfilePersonalizationSettings","features":[263]},{"name":"IUserProfilePersonalizationSettingsStatics","features":[263]},{"name":"LockScreen","features":[263]},{"name":"SetAccountPictureResult","features":[263]},{"name":"SetImageFeedResult","features":[263]},{"name":"UserInformation","features":[263]},{"name":"UserProfileContract","features":[263]},{"name":"UserProfileLockScreenContract","features":[263]},{"name":"UserProfilePersonalizationSettings","features":[263]}],"278":[{"name":"Color","features":[264]},{"name":"ColorHelper","features":[264]},{"name":"Colors","features":[264]},{"name":"IColorHelper","features":[264]},{"name":"IColorHelperStatics","features":[264]},{"name":"IColorHelperStatics2","features":[264]},{"name":"IColors","features":[264]},{"name":"IColorsStatics","features":[264]},{"name":"IUIContentRoot","features":[264]},{"name":"IUIContext","features":[264]},{"name":"UIContentRoot","features":[264]},{"name":"UIContext","features":[264]},{"name":"WindowId","features":[264]}],"279":[{"name":"IScreenReaderPositionChangedEventArgs","features":[265]},{"name":"IScreenReaderService","features":[265]},{"name":"ScreenReaderPositionChangedEventArgs","features":[265]},{"name":"ScreenReaderService","features":[265]}],"280":[{"name":"AccountsSettingsPane","features":[266]},{"name":"AccountsSettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"AccountsSettingsPaneEventDeferral","features":[266]},{"name":"ApplicationsSettingsContract","features":[266]},{"name":"CredentialCommand","features":[266]},{"name":"CredentialCommandCredentialDeletedHandler","features":[266]},{"name":"IAccountsSettingsPane","features":[266]},{"name":"IAccountsSettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"IAccountsSettingsPaneCommandsRequestedEventArgs2","features":[266]},{"name":"IAccountsSettingsPaneEventDeferral","features":[266]},{"name":"IAccountsSettingsPaneStatics","features":[266]},{"name":"IAccountsSettingsPaneStatics2","features":[266]},{"name":"IAccountsSettingsPaneStatics3","features":[266]},{"name":"ICredentialCommand","features":[266]},{"name":"ICredentialCommandFactory","features":[266]},{"name":"ISettingsCommandFactory","features":[266]},{"name":"ISettingsCommandStatics","features":[266]},{"name":"ISettingsPane","features":[266]},{"name":"ISettingsPaneCommandsRequest","features":[266]},{"name":"ISettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"ISettingsPaneStatics","features":[266]},{"name":"IWebAccountCommand","features":[266]},{"name":"IWebAccountCommandFactory","features":[266]},{"name":"IWebAccountInvokedArgs","features":[266]},{"name":"IWebAccountProviderCommand","features":[266]},{"name":"IWebAccountProviderCommandFactory","features":[266]},{"name":"SettingsCommand","features":[266,267]},{"name":"SettingsEdgeLocation","features":[266]},{"name":"SettingsPane","features":[266]},{"name":"SettingsPaneCommandsRequest","features":[266]},{"name":"SettingsPaneCommandsRequestedEventArgs","features":[266]},{"name":"SupportedWebAccountActions","features":[266]},{"name":"WebAccountAction","features":[266]},{"name":"WebAccountCommand","features":[266]},{"name":"WebAccountCommandInvokedHandler","features":[266]},{"name":"WebAccountInvokedArgs","features":[266]},{"name":"WebAccountProviderCommand","features":[266]},{"name":"WebAccountProviderCommandInvokedHandler","features":[266]}],"281":[{"name":"AmbientLight","features":[268]},{"name":"AnimationController","features":[268]},{"name":"AnimationControllerProgressBehavior","features":[268]},{"name":"AnimationDelayBehavior","features":[268]},{"name":"AnimationDirection","features":[268]},{"name":"AnimationIterationBehavior","features":[268]},{"name":"AnimationPropertyAccessMode","features":[268]},{"name":"AnimationPropertyInfo","features":[268]},{"name":"AnimationStopBehavior","features":[268]},{"name":"BackEasingFunction","features":[268]},{"name":"BooleanKeyFrameAnimation","features":[268]},{"name":"BounceEasingFunction","features":[268]},{"name":"BounceScalarNaturalMotionAnimation","features":[268]},{"name":"BounceVector2NaturalMotionAnimation","features":[268]},{"name":"BounceVector3NaturalMotionAnimation","features":[268]},{"name":"CircleEasingFunction","features":[268]},{"name":"ColorKeyFrameAnimation","features":[268]},{"name":"CompositionAnimation","features":[268]},{"name":"CompositionAnimationGroup","features":[268]},{"name":"CompositionBackdropBrush","features":[268]},{"name":"CompositionBackfaceVisibility","features":[268]},{"name":"CompositionBatchCompletedEventArgs","features":[268]},{"name":"CompositionBatchTypes","features":[268]},{"name":"CompositionBitmapInterpolationMode","features":[268]},{"name":"CompositionBorderMode","features":[268]},{"name":"CompositionBrush","features":[268]},{"name":"CompositionCapabilities","features":[268]},{"name":"CompositionClip","features":[268]},{"name":"CompositionColorBrush","features":[268]},{"name":"CompositionColorGradientStop","features":[268]},{"name":"CompositionColorGradientStopCollection","features":[268]},{"name":"CompositionColorSpace","features":[268]},{"name":"CompositionCommitBatch","features":[268]},{"name":"CompositionCompositeMode","features":[268]},{"name":"CompositionContainerShape","features":[268]},{"name":"CompositionDrawingSurface","features":[268]},{"name":"CompositionDropShadowSourcePolicy","features":[268]},{"name":"CompositionEasingFunction","features":[268]},{"name":"CompositionEasingFunctionMode","features":[268]},{"name":"CompositionEffectBrush","features":[268]},{"name":"CompositionEffectFactory","features":[268]},{"name":"CompositionEffectFactoryLoadStatus","features":[268]},{"name":"CompositionEffectSourceParameter","features":[268]},{"name":"CompositionEllipseGeometry","features":[268]},{"name":"CompositionGeometricClip","features":[268]},{"name":"CompositionGeometry","features":[268]},{"name":"CompositionGetValueStatus","features":[268]},{"name":"CompositionGradientBrush","features":[268]},{"name":"CompositionGradientExtendMode","features":[268]},{"name":"CompositionGraphicsDevice","features":[268]},{"name":"CompositionLight","features":[268]},{"name":"CompositionLineGeometry","features":[268]},{"name":"CompositionLinearGradientBrush","features":[268]},{"name":"CompositionMappingMode","features":[268]},{"name":"CompositionMaskBrush","features":[268]},{"name":"CompositionMipmapSurface","features":[268]},{"name":"CompositionNineGridBrush","features":[268]},{"name":"CompositionObject","features":[268]},{"name":"CompositionPath","features":[268]},{"name":"CompositionPathGeometry","features":[268]},{"name":"CompositionProjectedShadow","features":[268]},{"name":"CompositionProjectedShadowCaster","features":[268]},{"name":"CompositionProjectedShadowCasterCollection","features":[268]},{"name":"CompositionProjectedShadowReceiver","features":[268]},{"name":"CompositionProjectedShadowReceiverUnorderedCollection","features":[268]},{"name":"CompositionPropertySet","features":[268]},{"name":"CompositionRadialGradientBrush","features":[268]},{"name":"CompositionRectangleGeometry","features":[268]},{"name":"CompositionRoundedRectangleGeometry","features":[268]},{"name":"CompositionScopedBatch","features":[268]},{"name":"CompositionShadow","features":[268]},{"name":"CompositionShape","features":[268]},{"name":"CompositionShapeCollection","features":[36,268]},{"name":"CompositionSpriteShape","features":[268]},{"name":"CompositionStretch","features":[268]},{"name":"CompositionStrokeCap","features":[268]},{"name":"CompositionStrokeDashArray","features":[36,268]},{"name":"CompositionStrokeLineJoin","features":[268]},{"name":"CompositionSurfaceBrush","features":[268]},{"name":"CompositionTarget","features":[268]},{"name":"CompositionTexture","features":[268]},{"name":"CompositionTransform","features":[268]},{"name":"CompositionViewBox","features":[268]},{"name":"CompositionVirtualDrawingSurface","features":[268]},{"name":"CompositionVisualSurface","features":[268]},{"name":"Compositor","features":[268]},{"name":"ContainerVisual","features":[268]},{"name":"CubicBezierEasingFunction","features":[268]},{"name":"DelegatedInkTrailVisual","features":[268]},{"name":"DistantLight","features":[268]},{"name":"DropShadow","features":[268]},{"name":"ElasticEasingFunction","features":[268]},{"name":"ExponentialEasingFunction","features":[268]},{"name":"ExpressionAnimation","features":[268]},{"name":"IAmbientLight","features":[268]},{"name":"IAmbientLight2","features":[268]},{"name":"IAnimationController","features":[268]},{"name":"IAnimationControllerStatics","features":[268]},{"name":"IAnimationObject","features":[268]},{"name":"IAnimationPropertyInfo","features":[268]},{"name":"IAnimationPropertyInfo2","features":[268]},{"name":"IBackEasingFunction","features":[268]},{"name":"IBooleanKeyFrameAnimation","features":[268]},{"name":"IBounceEasingFunction","features":[268]},{"name":"IBounceScalarNaturalMotionAnimation","features":[268]},{"name":"IBounceVector2NaturalMotionAnimation","features":[268]},{"name":"IBounceVector3NaturalMotionAnimation","features":[268]},{"name":"ICircleEasingFunction","features":[268]},{"name":"IColorKeyFrameAnimation","features":[268]},{"name":"ICompositionAnimation","features":[268]},{"name":"ICompositionAnimation2","features":[268]},{"name":"ICompositionAnimation3","features":[268]},{"name":"ICompositionAnimation4","features":[268]},{"name":"ICompositionAnimationBase","features":[268]},{"name":"ICompositionAnimationFactory","features":[268]},{"name":"ICompositionAnimationGroup","features":[268]},{"name":"ICompositionBackdropBrush","features":[268]},{"name":"ICompositionBatchCompletedEventArgs","features":[268]},{"name":"ICompositionBrush","features":[268]},{"name":"ICompositionBrushFactory","features":[268]},{"name":"ICompositionCapabilities","features":[268]},{"name":"ICompositionCapabilitiesStatics","features":[268]},{"name":"ICompositionClip","features":[268]},{"name":"ICompositionClip2","features":[268]},{"name":"ICompositionClipFactory","features":[268]},{"name":"ICompositionColorBrush","features":[268]},{"name":"ICompositionColorGradientStop","features":[268]},{"name":"ICompositionColorGradientStopCollection","features":[268]},{"name":"ICompositionCommitBatch","features":[268]},{"name":"ICompositionContainerShape","features":[268]},{"name":"ICompositionDrawingSurface","features":[268]},{"name":"ICompositionDrawingSurface2","features":[268]},{"name":"ICompositionDrawingSurfaceFactory","features":[268]},{"name":"ICompositionEasingFunction","features":[268]},{"name":"ICompositionEasingFunctionFactory","features":[268]},{"name":"ICompositionEasingFunctionStatics","features":[268]},{"name":"ICompositionEffectBrush","features":[268]},{"name":"ICompositionEffectFactory","features":[268]},{"name":"ICompositionEffectSourceParameter","features":[268]},{"name":"ICompositionEffectSourceParameterFactory","features":[268]},{"name":"ICompositionEllipseGeometry","features":[268]},{"name":"ICompositionGeometricClip","features":[268]},{"name":"ICompositionGeometry","features":[268]},{"name":"ICompositionGeometryFactory","features":[268]},{"name":"ICompositionGradientBrush","features":[268]},{"name":"ICompositionGradientBrush2","features":[268]},{"name":"ICompositionGradientBrushFactory","features":[268]},{"name":"ICompositionGraphicsDevice","features":[268]},{"name":"ICompositionGraphicsDevice2","features":[268]},{"name":"ICompositionGraphicsDevice3","features":[268]},{"name":"ICompositionGraphicsDevice4","features":[268]},{"name":"ICompositionLight","features":[268]},{"name":"ICompositionLight2","features":[268]},{"name":"ICompositionLight3","features":[268]},{"name":"ICompositionLightFactory","features":[268]},{"name":"ICompositionLineGeometry","features":[268]},{"name":"ICompositionLinearGradientBrush","features":[268]},{"name":"ICompositionMaskBrush","features":[268]},{"name":"ICompositionMipmapSurface","features":[268]},{"name":"ICompositionNineGridBrush","features":[268]},{"name":"ICompositionObject","features":[268]},{"name":"ICompositionObject2","features":[268]},{"name":"ICompositionObject3","features":[268]},{"name":"ICompositionObject4","features":[268]},{"name":"ICompositionObject5","features":[268]},{"name":"ICompositionObjectFactory","features":[268]},{"name":"ICompositionObjectStatics","features":[268]},{"name":"ICompositionPath","features":[268]},{"name":"ICompositionPathFactory","features":[268]},{"name":"ICompositionPathGeometry","features":[268]},{"name":"ICompositionProjectedShadow","features":[268]},{"name":"ICompositionProjectedShadowCaster","features":[268]},{"name":"ICompositionProjectedShadowCasterCollection","features":[268]},{"name":"ICompositionProjectedShadowCasterCollectionStatics","features":[268]},{"name":"ICompositionProjectedShadowReceiver","features":[268]},{"name":"ICompositionProjectedShadowReceiverUnorderedCollection","features":[268]},{"name":"ICompositionPropertySet","features":[268]},{"name":"ICompositionPropertySet2","features":[268]},{"name":"ICompositionRadialGradientBrush","features":[268]},{"name":"ICompositionRectangleGeometry","features":[268]},{"name":"ICompositionRoundedRectangleGeometry","features":[268]},{"name":"ICompositionScopedBatch","features":[268]},{"name":"ICompositionShadow","features":[268]},{"name":"ICompositionShadowFactory","features":[268]},{"name":"ICompositionShape","features":[268]},{"name":"ICompositionShapeFactory","features":[268]},{"name":"ICompositionSpriteShape","features":[268]},{"name":"ICompositionSupportsSystemBackdrop","features":[268]},{"name":"ICompositionSurface","features":[268]},{"name":"ICompositionSurfaceBrush","features":[268]},{"name":"ICompositionSurfaceBrush2","features":[268]},{"name":"ICompositionSurfaceBrush3","features":[268]},{"name":"ICompositionSurfaceFacade","features":[268]},{"name":"ICompositionTarget","features":[268]},{"name":"ICompositionTargetFactory","features":[268]},{"name":"ICompositionTexture","features":[268]},{"name":"ICompositionTextureFactory","features":[268]},{"name":"ICompositionTransform","features":[268]},{"name":"ICompositionTransformFactory","features":[268]},{"name":"ICompositionViewBox","features":[268]},{"name":"ICompositionVirtualDrawingSurface","features":[268]},{"name":"ICompositionVirtualDrawingSurfaceFactory","features":[268]},{"name":"ICompositionVisualSurface","features":[268]},{"name":"ICompositor","features":[268]},{"name":"ICompositor2","features":[268]},{"name":"ICompositor3","features":[268]},{"name":"ICompositor4","features":[268]},{"name":"ICompositor5","features":[268]},{"name":"ICompositor6","features":[268]},{"name":"ICompositor7","features":[268]},{"name":"ICompositor8","features":[268]},{"name":"ICompositorStatics","features":[268]},{"name":"ICompositorWithBlurredWallpaperBackdropBrush","features":[268]},{"name":"ICompositorWithProjectedShadow","features":[268]},{"name":"ICompositorWithRadialGradient","features":[268]},{"name":"ICompositorWithVisualSurface","features":[268]},{"name":"IContainerVisual","features":[268]},{"name":"IContainerVisualFactory","features":[268]},{"name":"ICubicBezierEasingFunction","features":[268]},{"name":"IDelegatedInkTrailVisual","features":[268]},{"name":"IDelegatedInkTrailVisualStatics","features":[268]},{"name":"IDistantLight","features":[268]},{"name":"IDistantLight2","features":[268]},{"name":"IDropShadow","features":[268]},{"name":"IDropShadow2","features":[268]},{"name":"IElasticEasingFunction","features":[268]},{"name":"IExponentialEasingFunction","features":[268]},{"name":"IExpressionAnimation","features":[268]},{"name":"IImplicitAnimationCollection","features":[268]},{"name":"IInsetClip","features":[268]},{"name":"IKeyFrameAnimation","features":[268]},{"name":"IKeyFrameAnimation2","features":[268]},{"name":"IKeyFrameAnimation3","features":[268]},{"name":"IKeyFrameAnimationFactory","features":[268]},{"name":"ILayerVisual","features":[268]},{"name":"ILayerVisual2","features":[268]},{"name":"ILinearEasingFunction","features":[268]},{"name":"INaturalMotionAnimation","features":[268]},{"name":"INaturalMotionAnimationFactory","features":[268]},{"name":"IPathKeyFrameAnimation","features":[268]},{"name":"IPointLight","features":[268]},{"name":"IPointLight2","features":[268]},{"name":"IPointLight3","features":[268]},{"name":"IPowerEasingFunction","features":[268]},{"name":"IQuaternionKeyFrameAnimation","features":[268]},{"name":"IRectangleClip","features":[268]},{"name":"IRedirectVisual","features":[268]},{"name":"IRenderingDeviceReplacedEventArgs","features":[268]},{"name":"IScalarKeyFrameAnimation","features":[268]},{"name":"IScalarNaturalMotionAnimation","features":[268]},{"name":"IScalarNaturalMotionAnimationFactory","features":[268]},{"name":"IShapeVisual","features":[268]},{"name":"ISineEasingFunction","features":[268]},{"name":"ISpotLight","features":[268]},{"name":"ISpotLight2","features":[268]},{"name":"ISpotLight3","features":[268]},{"name":"ISpringScalarNaturalMotionAnimation","features":[268]},{"name":"ISpringVector2NaturalMotionAnimation","features":[268]},{"name":"ISpringVector3NaturalMotionAnimation","features":[268]},{"name":"ISpriteVisual","features":[268]},{"name":"ISpriteVisual2","features":[268]},{"name":"IStepEasingFunction","features":[268]},{"name":"IVector2KeyFrameAnimation","features":[268]},{"name":"IVector2NaturalMotionAnimation","features":[268]},{"name":"IVector2NaturalMotionAnimationFactory","features":[268]},{"name":"IVector3KeyFrameAnimation","features":[268]},{"name":"IVector3NaturalMotionAnimation","features":[268]},{"name":"IVector3NaturalMotionAnimationFactory","features":[268]},{"name":"IVector4KeyFrameAnimation","features":[268]},{"name":"IVisual","features":[268]},{"name":"IVisual2","features":[268]},{"name":"IVisual3","features":[268]},{"name":"IVisual4","features":[268]},{"name":"IVisualCollection","features":[268]},{"name":"IVisualElement","features":[268]},{"name":"IVisualElement2","features":[268]},{"name":"IVisualFactory","features":[268]},{"name":"IVisualUnorderedCollection","features":[268]},{"name":"ImplicitAnimationCollection","features":[268]},{"name":"InitialValueExpressionCollection","features":[36,268]},{"name":"InkTrailPoint","features":[76,268]},{"name":"InsetClip","features":[268]},{"name":"KeyFrameAnimation","features":[268]},{"name":"LayerVisual","features":[268]},{"name":"LinearEasingFunction","features":[268]},{"name":"NaturalMotionAnimation","features":[268]},{"name":"PathKeyFrameAnimation","features":[268]},{"name":"PointLight","features":[268]},{"name":"PowerEasingFunction","features":[268]},{"name":"QuaternionKeyFrameAnimation","features":[268]},{"name":"RectangleClip","features":[268]},{"name":"RedirectVisual","features":[268]},{"name":"RenderingDeviceReplacedEventArgs","features":[268]},{"name":"ScalarKeyFrameAnimation","features":[268]},{"name":"ScalarNaturalMotionAnimation","features":[268]},{"name":"ShapeVisual","features":[268]},{"name":"SineEasingFunction","features":[268]},{"name":"SpotLight","features":[268]},{"name":"SpringScalarNaturalMotionAnimation","features":[268]},{"name":"SpringVector2NaturalMotionAnimation","features":[268]},{"name":"SpringVector3NaturalMotionAnimation","features":[268]},{"name":"SpriteVisual","features":[268]},{"name":"StepEasingFunction","features":[268]},{"name":"Vector2KeyFrameAnimation","features":[268]},{"name":"Vector2NaturalMotionAnimation","features":[268]},{"name":"Vector3KeyFrameAnimation","features":[268]},{"name":"Vector3NaturalMotionAnimation","features":[268]},{"name":"Vector4KeyFrameAnimation","features":[268]},{"name":"Visual","features":[268]},{"name":"VisualCollection","features":[268]},{"name":"VisualUnorderedCollection","features":[268]}],"282":[{"name":"CompositorController","features":[269]},{"name":"ICompositorController","features":[269]}],"283":[{"name":"DesktopWindowTarget","features":[270]},{"name":"IDesktopWindowTarget","features":[270]}],"284":[{"name":"CompositionDebugHeatMaps","features":[271]},{"name":"CompositionDebugOverdrawContentKinds","features":[271]},{"name":"CompositionDebugSettings","features":[271]},{"name":"ICompositionDebugHeatMaps","features":[271]},{"name":"ICompositionDebugSettings","features":[271]},{"name":"ICompositionDebugSettingsStatics","features":[271]}],"285":[{"name":"ISceneLightingEffect","features":[272]},{"name":"ISceneLightingEffect2","features":[272]},{"name":"SceneLightingEffect","features":[272]},{"name":"SceneLightingEffectReflectanceModel","features":[272]}],"286":[{"name":"CompositionConditionalValue","features":[273]},{"name":"CompositionInteractionSourceCollection","features":[273]},{"name":"ICompositionConditionalValue","features":[273]},{"name":"ICompositionConditionalValueStatics","features":[273]},{"name":"ICompositionInteractionSource","features":[273]},{"name":"ICompositionInteractionSourceCollection","features":[273]},{"name":"IInteractionSourceConfiguration","features":[273]},{"name":"IInteractionTracker","features":[273]},{"name":"IInteractionTracker2","features":[273]},{"name":"IInteractionTracker3","features":[273]},{"name":"IInteractionTracker4","features":[273]},{"name":"IInteractionTracker5","features":[273]},{"name":"IInteractionTrackerCustomAnimationStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerCustomAnimationStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerIdleStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerIdleStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerInertiaModifier","features":[273]},{"name":"IInteractionTrackerInertiaModifierFactory","features":[273]},{"name":"IInteractionTrackerInertiaMotion","features":[273]},{"name":"IInteractionTrackerInertiaMotionStatics","features":[273]},{"name":"IInteractionTrackerInertiaNaturalMotion","features":[273]},{"name":"IInteractionTrackerInertiaNaturalMotionStatics","features":[273]},{"name":"IInteractionTrackerInertiaRestingValue","features":[273]},{"name":"IInteractionTrackerInertiaRestingValueStatics","features":[273]},{"name":"IInteractionTrackerInertiaStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerInertiaStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerInertiaStateEnteredArgs3","features":[273]},{"name":"IInteractionTrackerInteractingStateEnteredArgs","features":[273]},{"name":"IInteractionTrackerInteractingStateEnteredArgs2","features":[273]},{"name":"IInteractionTrackerOwner","features":[273]},{"name":"IInteractionTrackerRequestIgnoredArgs","features":[273]},{"name":"IInteractionTrackerStatics","features":[273]},{"name":"IInteractionTrackerStatics2","features":[273]},{"name":"IInteractionTrackerValuesChangedArgs","features":[273]},{"name":"IInteractionTrackerVector2InertiaModifier","features":[273]},{"name":"IInteractionTrackerVector2InertiaModifierFactory","features":[273]},{"name":"IInteractionTrackerVector2InertiaNaturalMotion","features":[273]},{"name":"IInteractionTrackerVector2InertiaNaturalMotionStatics","features":[273]},{"name":"IVisualInteractionSource","features":[273]},{"name":"IVisualInteractionSource2","features":[273]},{"name":"IVisualInteractionSource3","features":[273]},{"name":"IVisualInteractionSourceObjectFactory","features":[273]},{"name":"IVisualInteractionSourceStatics","features":[273]},{"name":"IVisualInteractionSourceStatics2","features":[273]},{"name":"InteractionBindingAxisModes","features":[273]},{"name":"InteractionChainingMode","features":[273]},{"name":"InteractionSourceConfiguration","features":[273]},{"name":"InteractionSourceMode","features":[273]},{"name":"InteractionSourceRedirectionMode","features":[273]},{"name":"InteractionTracker","features":[273]},{"name":"InteractionTrackerClampingOption","features":[273]},{"name":"InteractionTrackerCustomAnimationStateEnteredArgs","features":[273]},{"name":"InteractionTrackerIdleStateEnteredArgs","features":[273]},{"name":"InteractionTrackerInertiaModifier","features":[273]},{"name":"InteractionTrackerInertiaMotion","features":[273]},{"name":"InteractionTrackerInertiaNaturalMotion","features":[273]},{"name":"InteractionTrackerInertiaRestingValue","features":[273]},{"name":"InteractionTrackerInertiaStateEnteredArgs","features":[273]},{"name":"InteractionTrackerInteractingStateEnteredArgs","features":[273]},{"name":"InteractionTrackerPositionUpdateOption","features":[273]},{"name":"InteractionTrackerRequestIgnoredArgs","features":[273]},{"name":"InteractionTrackerValuesChangedArgs","features":[273]},{"name":"InteractionTrackerVector2InertiaModifier","features":[273]},{"name":"InteractionTrackerVector2InertiaNaturalMotion","features":[273]},{"name":"VisualInteractionSource","features":[273]},{"name":"VisualInteractionSourceRedirectionMode","features":[273]}],"287":[{"name":"ISceneBoundingBox","features":[274]},{"name":"ISceneComponent","features":[274]},{"name":"ISceneComponentCollection","features":[274]},{"name":"ISceneComponentFactory","features":[274]},{"name":"ISceneMaterial","features":[274]},{"name":"ISceneMaterialFactory","features":[274]},{"name":"ISceneMaterialInput","features":[274]},{"name":"ISceneMaterialInputFactory","features":[274]},{"name":"ISceneMesh","features":[274]},{"name":"ISceneMeshMaterialAttributeMap","features":[274]},{"name":"ISceneMeshRendererComponent","features":[274]},{"name":"ISceneMeshRendererComponentStatics","features":[274]},{"name":"ISceneMeshStatics","features":[274]},{"name":"ISceneMetallicRoughnessMaterial","features":[274]},{"name":"ISceneMetallicRoughnessMaterialStatics","features":[274]},{"name":"ISceneModelTransform","features":[274]},{"name":"ISceneNode","features":[274]},{"name":"ISceneNodeCollection","features":[274]},{"name":"ISceneNodeStatics","features":[274]},{"name":"ISceneObject","features":[274]},{"name":"ISceneObjectFactory","features":[274]},{"name":"IScenePbrMaterial","features":[274]},{"name":"IScenePbrMaterialFactory","features":[274]},{"name":"ISceneRendererComponent","features":[274]},{"name":"ISceneRendererComponentFactory","features":[274]},{"name":"ISceneSurfaceMaterialInput","features":[274]},{"name":"ISceneSurfaceMaterialInputStatics","features":[274]},{"name":"ISceneVisual","features":[274]},{"name":"ISceneVisualStatics","features":[274]},{"name":"SceneAlphaMode","features":[274]},{"name":"SceneAttributeSemantic","features":[274]},{"name":"SceneBoundingBox","features":[274]},{"name":"SceneComponent","features":[274]},{"name":"SceneComponentCollection","features":[36,274]},{"name":"SceneComponentType","features":[274]},{"name":"SceneMaterial","features":[274]},{"name":"SceneMaterialInput","features":[274]},{"name":"SceneMesh","features":[274]},{"name":"SceneMeshMaterialAttributeMap","features":[274]},{"name":"SceneMeshRendererComponent","features":[274]},{"name":"SceneMetallicRoughnessMaterial","features":[274]},{"name":"SceneModelTransform","features":[274]},{"name":"SceneNode","features":[274]},{"name":"SceneNodeCollection","features":[36,274]},{"name":"SceneObject","features":[274]},{"name":"ScenePbrMaterial","features":[274]},{"name":"SceneRendererComponent","features":[274]},{"name":"SceneSurfaceMaterialInput","features":[274]},{"name":"SceneVisual","features":[274]},{"name":"SceneWrappingMode","features":[274]}],"288":[{"name":"AcceleratorKeyEventArgs","features":[275]},{"name":"AppViewBackButtonVisibility","features":[275]},{"name":"AutomationProviderRequestedEventArgs","features":[275]},{"name":"BackRequestedEventArgs","features":[275]},{"name":"CharacterReceivedEventArgs","features":[275]},{"name":"ClosestInteractiveBoundsRequestedEventArgs","features":[275]},{"name":"CoreAcceleratorKeyEventType","features":[275]},{"name":"CoreAcceleratorKeys","features":[275]},{"name":"CoreComponentInputSource","features":[275]},{"name":"CoreCursor","features":[275]},{"name":"CoreCursorType","features":[275]},{"name":"CoreDispatcher","features":[275]},{"name":"CoreDispatcherPriority","features":[275]},{"name":"CoreIndependentInputFilters","features":[275]},{"name":"CoreIndependentInputSource","features":[275]},{"name":"CoreIndependentInputSourceController","features":[275]},{"name":"CoreInputDeviceTypes","features":[275]},{"name":"CorePhysicalKeyStatus","features":[275]},{"name":"CoreProcessEventsOption","features":[275]},{"name":"CoreProximityEvaluation","features":[76,275]},{"name":"CoreProximityEvaluationScore","features":[275]},{"name":"CoreVirtualKeyStates","features":[275]},{"name":"CoreWindow","features":[275]},{"name":"CoreWindowActivationMode","features":[275]},{"name":"CoreWindowActivationState","features":[275]},{"name":"CoreWindowDialog","features":[275]},{"name":"CoreWindowDialogsContract","features":[275]},{"name":"CoreWindowEventArgs","features":[275]},{"name":"CoreWindowFlowDirection","features":[275]},{"name":"CoreWindowFlyout","features":[275]},{"name":"CoreWindowPopupShowingEventArgs","features":[275]},{"name":"CoreWindowResizeManager","features":[275]},{"name":"DispatchedHandler","features":[275]},{"name":"IAcceleratorKeyEventArgs","features":[275]},{"name":"IAcceleratorKeyEventArgs2","features":[275]},{"name":"IAutomationProviderRequestedEventArgs","features":[275]},{"name":"IBackRequestedEventArgs","features":[275]},{"name":"ICharacterReceivedEventArgs","features":[275]},{"name":"IClosestInteractiveBoundsRequestedEventArgs","features":[275]},{"name":"ICoreAcceleratorKeys","features":[275]},{"name":"ICoreClosestInteractiveBoundsRequested","features":[275]},{"name":"ICoreComponentFocusable","features":[275]},{"name":"ICoreCursor","features":[275]},{"name":"ICoreCursorFactory","features":[275]},{"name":"ICoreDispatcher","features":[275]},{"name":"ICoreDispatcher2","features":[275]},{"name":"ICoreDispatcherWithTaskPriority","features":[275]},{"name":"ICoreIndependentInputSourceController","features":[275]},{"name":"ICoreIndependentInputSourceControllerStatics","features":[275]},{"name":"ICoreInputSourceBase","features":[275]},{"name":"ICoreKeyboardInputSource","features":[275]},{"name":"ICoreKeyboardInputSource2","features":[275]},{"name":"ICorePointerInputSource","features":[275]},{"name":"ICorePointerInputSource2","features":[275]},{"name":"ICorePointerRedirector","features":[275]},{"name":"ICoreTouchHitTesting","features":[275]},{"name":"ICoreWindow","features":[275]},{"name":"ICoreWindow2","features":[275]},{"name":"ICoreWindow3","features":[275]},{"name":"ICoreWindow4","features":[275]},{"name":"ICoreWindow5","features":[275]},{"name":"ICoreWindowDialog","features":[275]},{"name":"ICoreWindowDialogFactory","features":[275]},{"name":"ICoreWindowEventArgs","features":[275]},{"name":"ICoreWindowFlyout","features":[275]},{"name":"ICoreWindowFlyoutFactory","features":[275]},{"name":"ICoreWindowPopupShowingEventArgs","features":[275]},{"name":"ICoreWindowResizeManager","features":[275]},{"name":"ICoreWindowResizeManagerLayoutCapability","features":[275]},{"name":"ICoreWindowResizeManagerStatics","features":[275]},{"name":"ICoreWindowStatic","features":[275]},{"name":"ICoreWindowWithContext","features":[275]},{"name":"IIdleDispatchedHandlerArgs","features":[275]},{"name":"IInitializeWithCoreWindow","features":[275]},{"name":"IInputEnabledEventArgs","features":[275]},{"name":"IKeyEventArgs","features":[275]},{"name":"IKeyEventArgs2","features":[275]},{"name":"IPointerEventArgs","features":[275]},{"name":"ISystemNavigationManager","features":[275]},{"name":"ISystemNavigationManager2","features":[275]},{"name":"ISystemNavigationManagerStatics","features":[275]},{"name":"ITouchHitTestingEventArgs","features":[275]},{"name":"IVisibilityChangedEventArgs","features":[275]},{"name":"IWindowActivatedEventArgs","features":[275]},{"name":"IWindowSizeChangedEventArgs","features":[275]},{"name":"IdleDispatchedHandler","features":[275]},{"name":"IdleDispatchedHandlerArgs","features":[275]},{"name":"InputEnabledEventArgs","features":[275]},{"name":"KeyEventArgs","features":[275]},{"name":"PointerEventArgs","features":[275]},{"name":"SystemNavigationManager","features":[275]},{"name":"TouchHitTestingEventArgs","features":[275]},{"name":"VisibilityChangedEventArgs","features":[275]},{"name":"WindowActivatedEventArgs","features":[275]},{"name":"WindowSizeChangedEventArgs","features":[275]}],"289":[{"name":"AnimationDescription","features":[276]},{"name":"AnimationEffect","features":[276]},{"name":"AnimationEffectTarget","features":[276]},{"name":"AnimationMetricsContract","features":[276]},{"name":"IAnimationDescription","features":[276]},{"name":"IAnimationDescriptionFactory","features":[276]},{"name":"IOpacityAnimation","features":[276]},{"name":"IPropertyAnimation","features":[276]},{"name":"IScaleAnimation","features":[276]},{"name":"OpacityAnimation","features":[276]},{"name":"PropertyAnimation","features":[276]},{"name":"PropertyAnimationType","features":[276]},{"name":"ScaleAnimation","features":[276]},{"name":"TranslationAnimation","features":[276]}],"290":[{"name":"CoreAppWindowPreview","features":[277]},{"name":"ICoreAppWindowPreview","features":[277]},{"name":"ICoreAppWindowPreviewStatics","features":[277]},{"name":"ISystemNavigationCloseRequestedPreviewEventArgs","features":[277]},{"name":"ISystemNavigationManagerPreview","features":[277]},{"name":"ISystemNavigationManagerPreviewStatics","features":[277]},{"name":"SystemNavigationCloseRequestedPreviewEventArgs","features":[277]},{"name":"SystemNavigationManagerPreview","features":[277]}],"291":[{"name":"AttachableInputObject","features":[278]},{"name":"CrossSlideThresholds","features":[278]},{"name":"CrossSlidingEventArgs","features":[278]},{"name":"CrossSlidingState","features":[278]},{"name":"DraggingEventArgs","features":[278]},{"name":"DraggingState","features":[278]},{"name":"EdgeGesture","features":[278]},{"name":"EdgeGestureEventArgs","features":[278]},{"name":"EdgeGestureKind","features":[278]},{"name":"GazeInputAccessStatus","features":[278]},{"name":"GestureRecognizer","features":[278]},{"name":"GestureSettings","features":[278]},{"name":"HoldingEventArgs","features":[278]},{"name":"HoldingState","features":[278]},{"name":"IAttachableInputObject","features":[278]},{"name":"IAttachableInputObjectFactory","features":[278]},{"name":"ICrossSlidingEventArgs","features":[278]},{"name":"ICrossSlidingEventArgs2","features":[278]},{"name":"IDraggingEventArgs","features":[278]},{"name":"IDraggingEventArgs2","features":[278]},{"name":"IEdgeGesture","features":[278]},{"name":"IEdgeGestureEventArgs","features":[278]},{"name":"IEdgeGestureStatics","features":[278]},{"name":"IGestureRecognizer","features":[278]},{"name":"IGestureRecognizer2","features":[278]},{"name":"IHoldingEventArgs","features":[278]},{"name":"IHoldingEventArgs2","features":[278]},{"name":"IInputActivationListener","features":[278]},{"name":"IInputActivationListenerActivationChangedEventArgs","features":[278]},{"name":"IKeyboardDeliveryInterceptor","features":[278]},{"name":"IKeyboardDeliveryInterceptorStatics","features":[278]},{"name":"IManipulationCompletedEventArgs","features":[278]},{"name":"IManipulationCompletedEventArgs2","features":[278]},{"name":"IManipulationInertiaStartingEventArgs","features":[278]},{"name":"IManipulationInertiaStartingEventArgs2","features":[278]},{"name":"IManipulationStartedEventArgs","features":[278]},{"name":"IManipulationStartedEventArgs2","features":[278]},{"name":"IManipulationUpdatedEventArgs","features":[278]},{"name":"IManipulationUpdatedEventArgs2","features":[278]},{"name":"IMouseWheelParameters","features":[278]},{"name":"IPointerPoint","features":[278]},{"name":"IPointerPointProperties","features":[278]},{"name":"IPointerPointProperties2","features":[278]},{"name":"IPointerPointStatics","features":[278]},{"name":"IPointerPointTransform","features":[278]},{"name":"IPointerVisualizationSettings","features":[278]},{"name":"IPointerVisualizationSettingsStatics","features":[278]},{"name":"IRadialController","features":[278]},{"name":"IRadialController2","features":[278]},{"name":"IRadialControllerButtonClickedEventArgs","features":[278]},{"name":"IRadialControllerButtonClickedEventArgs2","features":[278]},{"name":"IRadialControllerButtonHoldingEventArgs","features":[278]},{"name":"IRadialControllerButtonPressedEventArgs","features":[278]},{"name":"IRadialControllerButtonReleasedEventArgs","features":[278]},{"name":"IRadialControllerConfiguration","features":[278]},{"name":"IRadialControllerConfiguration2","features":[278]},{"name":"IRadialControllerConfigurationStatics","features":[278]},{"name":"IRadialControllerConfigurationStatics2","features":[278]},{"name":"IRadialControllerControlAcquiredEventArgs","features":[278]},{"name":"IRadialControllerControlAcquiredEventArgs2","features":[278]},{"name":"IRadialControllerMenu","features":[278]},{"name":"IRadialControllerMenuItem","features":[278]},{"name":"IRadialControllerMenuItemStatics","features":[278]},{"name":"IRadialControllerMenuItemStatics2","features":[278]},{"name":"IRadialControllerRotationChangedEventArgs","features":[278]},{"name":"IRadialControllerRotationChangedEventArgs2","features":[278]},{"name":"IRadialControllerScreenContact","features":[278]},{"name":"IRadialControllerScreenContactContinuedEventArgs","features":[278]},{"name":"IRadialControllerScreenContactContinuedEventArgs2","features":[278]},{"name":"IRadialControllerScreenContactEndedEventArgs","features":[278]},{"name":"IRadialControllerScreenContactStartedEventArgs","features":[278]},{"name":"IRadialControllerScreenContactStartedEventArgs2","features":[278]},{"name":"IRadialControllerStatics","features":[278]},{"name":"IRightTappedEventArgs","features":[278]},{"name":"IRightTappedEventArgs2","features":[278]},{"name":"ISystemButtonEventController","features":[278]},{"name":"ISystemButtonEventControllerStatics","features":[278]},{"name":"ISystemFunctionButtonEventArgs","features":[278]},{"name":"ISystemFunctionLockChangedEventArgs","features":[278]},{"name":"ISystemFunctionLockIndicatorChangedEventArgs","features":[278]},{"name":"ITappedEventArgs","features":[278]},{"name":"ITappedEventArgs2","features":[278]},{"name":"InputActivationListener","features":[278]},{"name":"InputActivationListenerActivationChangedEventArgs","features":[278]},{"name":"InputActivationState","features":[278]},{"name":"KeyboardDeliveryInterceptor","features":[278]},{"name":"ManipulationCompletedEventArgs","features":[278]},{"name":"ManipulationDelta","features":[76,278]},{"name":"ManipulationInertiaStartingEventArgs","features":[278]},{"name":"ManipulationStartedEventArgs","features":[278]},{"name":"ManipulationUpdatedEventArgs","features":[278]},{"name":"ManipulationVelocities","features":[76,278]},{"name":"MouseWheelParameters","features":[278]},{"name":"PointerPoint","features":[278]},{"name":"PointerPointProperties","features":[278]},{"name":"PointerUpdateKind","features":[278]},{"name":"PointerVisualizationSettings","features":[278]},{"name":"RadialController","features":[278]},{"name":"RadialControllerButtonClickedEventArgs","features":[278]},{"name":"RadialControllerButtonHoldingEventArgs","features":[278]},{"name":"RadialControllerButtonPressedEventArgs","features":[278]},{"name":"RadialControllerButtonReleasedEventArgs","features":[278]},{"name":"RadialControllerConfiguration","features":[278]},{"name":"RadialControllerControlAcquiredEventArgs","features":[278]},{"name":"RadialControllerMenu","features":[278]},{"name":"RadialControllerMenuItem","features":[278]},{"name":"RadialControllerMenuKnownIcon","features":[278]},{"name":"RadialControllerRotationChangedEventArgs","features":[278]},{"name":"RadialControllerScreenContact","features":[278]},{"name":"RadialControllerScreenContactContinuedEventArgs","features":[278]},{"name":"RadialControllerScreenContactEndedEventArgs","features":[278]},{"name":"RadialControllerScreenContactStartedEventArgs","features":[278]},{"name":"RadialControllerSystemMenuItemKind","features":[278]},{"name":"RightTappedEventArgs","features":[278]},{"name":"SystemButtonEventController","features":[278]},{"name":"SystemFunctionButtonEventArgs","features":[278]},{"name":"SystemFunctionLockChangedEventArgs","features":[278]},{"name":"SystemFunctionLockIndicatorChangedEventArgs","features":[278]},{"name":"TappedEventArgs","features":[278]}],"292":[{"name":"IRadialControllerIndependentInputSource","features":[279]},{"name":"IRadialControllerIndependentInputSource2","features":[279]},{"name":"IRadialControllerIndependentInputSourceStatics","features":[279]},{"name":"RadialControllerIndependentInputSource","features":[279]}],"293":[{"name":"HandwritingLineHeight","features":[280]},{"name":"IInkDrawingAttributes","features":[280]},{"name":"IInkDrawingAttributes2","features":[280]},{"name":"IInkDrawingAttributes3","features":[280]},{"name":"IInkDrawingAttributes4","features":[280]},{"name":"IInkDrawingAttributes5","features":[280]},{"name":"IInkDrawingAttributesPencilProperties","features":[280]},{"name":"IInkDrawingAttributesStatics","features":[280]},{"name":"IInkInputConfiguration","features":[280]},{"name":"IInkInputConfiguration2","features":[280]},{"name":"IInkInputProcessingConfiguration","features":[280]},{"name":"IInkManager","features":[280]},{"name":"IInkModelerAttributes","features":[280]},{"name":"IInkModelerAttributes2","features":[280]},{"name":"IInkPoint","features":[280]},{"name":"IInkPoint2","features":[280]},{"name":"IInkPointFactory","features":[280]},{"name":"IInkPointFactory2","features":[280]},{"name":"IInkPresenter","features":[280]},{"name":"IInkPresenter2","features":[280]},{"name":"IInkPresenter3","features":[280]},{"name":"IInkPresenterProtractor","features":[280]},{"name":"IInkPresenterProtractorFactory","features":[280]},{"name":"IInkPresenterRuler","features":[280]},{"name":"IInkPresenterRuler2","features":[280]},{"name":"IInkPresenterRulerFactory","features":[280]},{"name":"IInkPresenterStencil","features":[280]},{"name":"IInkRecognitionResult","features":[280]},{"name":"IInkRecognizer","features":[280]},{"name":"IInkRecognizerContainer","features":[280]},{"name":"IInkStroke","features":[280]},{"name":"IInkStroke2","features":[280]},{"name":"IInkStroke3","features":[280]},{"name":"IInkStroke4","features":[280]},{"name":"IInkStrokeBuilder","features":[280]},{"name":"IInkStrokeBuilder2","features":[280]},{"name":"IInkStrokeBuilder3","features":[280]},{"name":"IInkStrokeContainer","features":[280]},{"name":"IInkStrokeContainer2","features":[280]},{"name":"IInkStrokeContainer3","features":[280]},{"name":"IInkStrokeInput","features":[280]},{"name":"IInkStrokeRenderingSegment","features":[280]},{"name":"IInkStrokesCollectedEventArgs","features":[280]},{"name":"IInkStrokesErasedEventArgs","features":[280]},{"name":"IInkSynchronizer","features":[280]},{"name":"IInkUnprocessedInput","features":[280]},{"name":"IPenAndInkSettings","features":[280]},{"name":"IPenAndInkSettings2","features":[280]},{"name":"IPenAndInkSettingsStatics","features":[280]},{"name":"InkDrawingAttributes","features":[280]},{"name":"InkDrawingAttributesKind","features":[280]},{"name":"InkDrawingAttributesPencilProperties","features":[280]},{"name":"InkHighContrastAdjustment","features":[280]},{"name":"InkInputConfiguration","features":[280]},{"name":"InkInputProcessingConfiguration","features":[280]},{"name":"InkInputProcessingMode","features":[280]},{"name":"InkInputRightDragAction","features":[280]},{"name":"InkManager","features":[280]},{"name":"InkManipulationMode","features":[280]},{"name":"InkModelerAttributes","features":[280]},{"name":"InkPersistenceFormat","features":[280]},{"name":"InkPoint","features":[280]},{"name":"InkPresenter","features":[280]},{"name":"InkPresenterPredefinedConfiguration","features":[280]},{"name":"InkPresenterProtractor","features":[280]},{"name":"InkPresenterRuler","features":[280]},{"name":"InkPresenterStencilKind","features":[280]},{"name":"InkRecognitionResult","features":[280]},{"name":"InkRecognitionTarget","features":[280]},{"name":"InkRecognizer","features":[280]},{"name":"InkRecognizerContainer","features":[280]},{"name":"InkStroke","features":[280]},{"name":"InkStrokeBuilder","features":[280]},{"name":"InkStrokeContainer","features":[280]},{"name":"InkStrokeInput","features":[280]},{"name":"InkStrokeRenderingSegment","features":[280]},{"name":"InkStrokesCollectedEventArgs","features":[280]},{"name":"InkStrokesErasedEventArgs","features":[280]},{"name":"InkSynchronizer","features":[280]},{"name":"InkUnprocessedInput","features":[280]},{"name":"PenAndInkSettings","features":[280]},{"name":"PenHandedness","features":[280]},{"name":"PenTipShape","features":[280]}],"294":[{"name":"IInkAnalysisInkBullet","features":[281]},{"name":"IInkAnalysisInkDrawing","features":[281]},{"name":"IInkAnalysisInkWord","features":[281]},{"name":"IInkAnalysisLine","features":[281]},{"name":"IInkAnalysisListItem","features":[281]},{"name":"IInkAnalysisNode","features":[281]},{"name":"IInkAnalysisParagraph","features":[281]},{"name":"IInkAnalysisResult","features":[281]},{"name":"IInkAnalysisRoot","features":[281]},{"name":"IInkAnalysisWritingRegion","features":[281]},{"name":"IInkAnalyzer","features":[281]},{"name":"IInkAnalyzerFactory","features":[281]},{"name":"InkAnalysisDrawingKind","features":[281]},{"name":"InkAnalysisInkBullet","features":[281]},{"name":"InkAnalysisInkDrawing","features":[281]},{"name":"InkAnalysisInkWord","features":[281]},{"name":"InkAnalysisLine","features":[281]},{"name":"InkAnalysisListItem","features":[281]},{"name":"InkAnalysisNode","features":[281]},{"name":"InkAnalysisNodeKind","features":[281]},{"name":"InkAnalysisParagraph","features":[281]},{"name":"InkAnalysisResult","features":[281]},{"name":"InkAnalysisRoot","features":[281]},{"name":"InkAnalysisStatus","features":[281]},{"name":"InkAnalysisStrokeKind","features":[281]},{"name":"InkAnalysisWritingRegion","features":[281]},{"name":"InkAnalyzer","features":[281]}],"295":[{"name":"CoreIncrementalInkStroke","features":[282]},{"name":"CoreInkIndependentInputSource","features":[282]},{"name":"CoreInkPresenterHost","features":[282]},{"name":"CoreWetStrokeDisposition","features":[282]},{"name":"CoreWetStrokeUpdateEventArgs","features":[282]},{"name":"CoreWetStrokeUpdateSource","features":[282]},{"name":"ICoreIncrementalInkStroke","features":[282]},{"name":"ICoreIncrementalInkStrokeFactory","features":[282]},{"name":"ICoreInkIndependentInputSource","features":[282]},{"name":"ICoreInkIndependentInputSource2","features":[282]},{"name":"ICoreInkIndependentInputSourceStatics","features":[282]},{"name":"ICoreInkPresenterHost","features":[282]},{"name":"ICoreWetStrokeUpdateEventArgs","features":[282]},{"name":"ICoreWetStrokeUpdateSource","features":[282]},{"name":"ICoreWetStrokeUpdateSourceStatics","features":[282]}],"296":[{"name":"IPalmRejectionDelayZonePreview","features":[283]},{"name":"IPalmRejectionDelayZonePreviewStatics","features":[283]},{"name":"PalmRejectionDelayZonePreview","features":[283]}],"297":[{"name":"IInputActivationListenerPreviewStatics","features":[284]},{"name":"InputActivationListenerPreview","features":[284]}],"298":[{"name":"IInjectedInputGamepadInfo","features":[285]},{"name":"IInjectedInputGamepadInfoFactory","features":[285]},{"name":"IInjectedInputKeyboardInfo","features":[285]},{"name":"IInjectedInputMouseInfo","features":[285]},{"name":"IInjectedInputPenInfo","features":[285]},{"name":"IInjectedInputTouchInfo","features":[285]},{"name":"IInputInjector","features":[285]},{"name":"IInputInjector2","features":[285]},{"name":"IInputInjectorStatics","features":[285]},{"name":"IInputInjectorStatics2","features":[285]},{"name":"InjectedInputButtonChangeKind","features":[285]},{"name":"InjectedInputGamepadInfo","features":[285]},{"name":"InjectedInputKeyOptions","features":[285]},{"name":"InjectedInputKeyboardInfo","features":[285]},{"name":"InjectedInputMouseInfo","features":[285]},{"name":"InjectedInputMouseOptions","features":[285]},{"name":"InjectedInputPenButtons","features":[285]},{"name":"InjectedInputPenInfo","features":[285]},{"name":"InjectedInputPenParameters","features":[285]},{"name":"InjectedInputPoint","features":[285]},{"name":"InjectedInputPointerInfo","features":[285]},{"name":"InjectedInputPointerOptions","features":[285]},{"name":"InjectedInputRectangle","features":[285]},{"name":"InjectedInputShortcut","features":[285]},{"name":"InjectedInputTouchInfo","features":[285]},{"name":"InjectedInputTouchParameters","features":[285]},{"name":"InjectedInputVisualizationMode","features":[285]},{"name":"InputInjector","features":[285]}],"299":[{"name":"ISpatialGestureRecognizer","features":[286]},{"name":"ISpatialGestureRecognizerFactory","features":[286]},{"name":"ISpatialHoldCanceledEventArgs","features":[286]},{"name":"ISpatialHoldCompletedEventArgs","features":[286]},{"name":"ISpatialHoldStartedEventArgs","features":[286]},{"name":"ISpatialInteraction","features":[286]},{"name":"ISpatialInteractionController","features":[286]},{"name":"ISpatialInteractionController2","features":[286]},{"name":"ISpatialInteractionController3","features":[286]},{"name":"ISpatialInteractionControllerProperties","features":[286]},{"name":"ISpatialInteractionDetectedEventArgs","features":[286]},{"name":"ISpatialInteractionDetectedEventArgs2","features":[286]},{"name":"ISpatialInteractionManager","features":[286]},{"name":"ISpatialInteractionManagerStatics","features":[286]},{"name":"ISpatialInteractionManagerStatics2","features":[286]},{"name":"ISpatialInteractionSource","features":[286]},{"name":"ISpatialInteractionSource2","features":[286]},{"name":"ISpatialInteractionSource3","features":[286]},{"name":"ISpatialInteractionSource4","features":[286]},{"name":"ISpatialInteractionSourceEventArgs","features":[286]},{"name":"ISpatialInteractionSourceEventArgs2","features":[286]},{"name":"ISpatialInteractionSourceLocation","features":[286]},{"name":"ISpatialInteractionSourceLocation2","features":[286]},{"name":"ISpatialInteractionSourceLocation3","features":[286]},{"name":"ISpatialInteractionSourceProperties","features":[286]},{"name":"ISpatialInteractionSourceState","features":[286]},{"name":"ISpatialInteractionSourceState2","features":[286]},{"name":"ISpatialInteractionSourceState3","features":[286]},{"name":"ISpatialManipulationCanceledEventArgs","features":[286]},{"name":"ISpatialManipulationCompletedEventArgs","features":[286]},{"name":"ISpatialManipulationDelta","features":[286]},{"name":"ISpatialManipulationStartedEventArgs","features":[286]},{"name":"ISpatialManipulationUpdatedEventArgs","features":[286]},{"name":"ISpatialNavigationCanceledEventArgs","features":[286]},{"name":"ISpatialNavigationCompletedEventArgs","features":[286]},{"name":"ISpatialNavigationStartedEventArgs","features":[286]},{"name":"ISpatialNavigationUpdatedEventArgs","features":[286]},{"name":"ISpatialPointerInteractionSourcePose","features":[286]},{"name":"ISpatialPointerInteractionSourcePose2","features":[286]},{"name":"ISpatialPointerPose","features":[286]},{"name":"ISpatialPointerPose2","features":[286]},{"name":"ISpatialPointerPose3","features":[286]},{"name":"ISpatialPointerPoseStatics","features":[286]},{"name":"ISpatialRecognitionEndedEventArgs","features":[286]},{"name":"ISpatialRecognitionStartedEventArgs","features":[286]},{"name":"ISpatialTappedEventArgs","features":[286]},{"name":"SpatialGestureRecognizer","features":[286]},{"name":"SpatialGestureSettings","features":[286]},{"name":"SpatialHoldCanceledEventArgs","features":[286]},{"name":"SpatialHoldCompletedEventArgs","features":[286]},{"name":"SpatialHoldStartedEventArgs","features":[286]},{"name":"SpatialInteraction","features":[286]},{"name":"SpatialInteractionController","features":[286]},{"name":"SpatialInteractionControllerProperties","features":[286]},{"name":"SpatialInteractionDetectedEventArgs","features":[286]},{"name":"SpatialInteractionManager","features":[286]},{"name":"SpatialInteractionPressKind","features":[286]},{"name":"SpatialInteractionSource","features":[286]},{"name":"SpatialInteractionSourceEventArgs","features":[286]},{"name":"SpatialInteractionSourceHandedness","features":[286]},{"name":"SpatialInteractionSourceKind","features":[286]},{"name":"SpatialInteractionSourceLocation","features":[286]},{"name":"SpatialInteractionSourcePositionAccuracy","features":[286]},{"name":"SpatialInteractionSourceProperties","features":[286]},{"name":"SpatialInteractionSourceState","features":[286]},{"name":"SpatialManipulationCanceledEventArgs","features":[286]},{"name":"SpatialManipulationCompletedEventArgs","features":[286]},{"name":"SpatialManipulationDelta","features":[286]},{"name":"SpatialManipulationStartedEventArgs","features":[286]},{"name":"SpatialManipulationUpdatedEventArgs","features":[286]},{"name":"SpatialNavigationCanceledEventArgs","features":[286]},{"name":"SpatialNavigationCompletedEventArgs","features":[286]},{"name":"SpatialNavigationStartedEventArgs","features":[286]},{"name":"SpatialNavigationUpdatedEventArgs","features":[286]},{"name":"SpatialPointerInteractionSourcePose","features":[286]},{"name":"SpatialPointerPose","features":[286]},{"name":"SpatialRecognitionEndedEventArgs","features":[286]},{"name":"SpatialRecognitionStartedEventArgs","features":[286]},{"name":"SpatialTappedEventArgs","features":[286]}],"300":[{"name":"AdaptiveNotificationContentKind","features":[287]},{"name":"AdaptiveNotificationText","features":[287]},{"name":"BadgeNotification","features":[287]},{"name":"BadgeTemplateType","features":[287]},{"name":"BadgeUpdateManager","features":[287]},{"name":"BadgeUpdateManagerForUser","features":[287]},{"name":"BadgeUpdater","features":[287]},{"name":"IAdaptiveNotificationContent","features":[287]},{"name":"IAdaptiveNotificationText","features":[287]},{"name":"IBadgeNotification","features":[287]},{"name":"IBadgeNotificationFactory","features":[287]},{"name":"IBadgeUpdateManagerForUser","features":[287]},{"name":"IBadgeUpdateManagerStatics","features":[287]},{"name":"IBadgeUpdateManagerStatics2","features":[287]},{"name":"IBadgeUpdater","features":[287]},{"name":"IKnownAdaptiveNotificationHintsStatics","features":[287]},{"name":"IKnownAdaptiveNotificationTextStylesStatics","features":[287]},{"name":"IKnownNotificationBindingsStatics","features":[287]},{"name":"INotification","features":[287]},{"name":"INotificationBinding","features":[287]},{"name":"INotificationData","features":[287]},{"name":"INotificationDataFactory","features":[287]},{"name":"INotificationVisual","features":[287]},{"name":"IScheduledTileNotification","features":[287]},{"name":"IScheduledTileNotificationFactory","features":[287]},{"name":"IScheduledToastNotification","features":[287]},{"name":"IScheduledToastNotification2","features":[287]},{"name":"IScheduledToastNotification3","features":[287]},{"name":"IScheduledToastNotification4","features":[287]},{"name":"IScheduledToastNotificationFactory","features":[287]},{"name":"IScheduledToastNotificationShowingEventArgs","features":[287]},{"name":"IShownTileNotification","features":[287]},{"name":"ITileFlyoutNotification","features":[287]},{"name":"ITileFlyoutNotificationFactory","features":[287]},{"name":"ITileFlyoutUpdateManagerStatics","features":[287]},{"name":"ITileFlyoutUpdater","features":[287]},{"name":"ITileNotification","features":[287]},{"name":"ITileNotificationFactory","features":[287]},{"name":"ITileUpdateManagerForUser","features":[287]},{"name":"ITileUpdateManagerStatics","features":[287]},{"name":"ITileUpdateManagerStatics2","features":[287]},{"name":"ITileUpdater","features":[287]},{"name":"ITileUpdater2","features":[287]},{"name":"IToastActivatedEventArgs","features":[287]},{"name":"IToastActivatedEventArgs2","features":[287]},{"name":"IToastCollection","features":[287]},{"name":"IToastCollectionFactory","features":[287]},{"name":"IToastCollectionManager","features":[287]},{"name":"IToastDismissedEventArgs","features":[287]},{"name":"IToastFailedEventArgs","features":[287]},{"name":"IToastNotification","features":[287]},{"name":"IToastNotification2","features":[287]},{"name":"IToastNotification3","features":[287]},{"name":"IToastNotification4","features":[287]},{"name":"IToastNotification6","features":[287]},{"name":"IToastNotificationActionTriggerDetail","features":[287]},{"name":"IToastNotificationFactory","features":[287]},{"name":"IToastNotificationHistory","features":[287]},{"name":"IToastNotificationHistory2","features":[287]},{"name":"IToastNotificationHistoryChangedTriggerDetail","features":[287]},{"name":"IToastNotificationHistoryChangedTriggerDetail2","features":[287]},{"name":"IToastNotificationManagerForUser","features":[287]},{"name":"IToastNotificationManagerForUser2","features":[287]},{"name":"IToastNotificationManagerForUser3","features":[287]},{"name":"IToastNotificationManagerStatics","features":[287]},{"name":"IToastNotificationManagerStatics2","features":[287]},{"name":"IToastNotificationManagerStatics4","features":[287]},{"name":"IToastNotificationManagerStatics5","features":[287]},{"name":"IToastNotifier","features":[287]},{"name":"IToastNotifier2","features":[287]},{"name":"IToastNotifier3","features":[287]},{"name":"IUserNotification","features":[287]},{"name":"IUserNotificationChangedEventArgs","features":[287]},{"name":"KnownAdaptiveNotificationHints","features":[287]},{"name":"KnownAdaptiveNotificationTextStyles","features":[287]},{"name":"KnownNotificationBindings","features":[287]},{"name":"Notification","features":[287]},{"name":"NotificationBinding","features":[287]},{"name":"NotificationData","features":[287]},{"name":"NotificationKinds","features":[287]},{"name":"NotificationMirroring","features":[287]},{"name":"NotificationSetting","features":[287]},{"name":"NotificationUpdateResult","features":[287]},{"name":"NotificationVisual","features":[287]},{"name":"PeriodicUpdateRecurrence","features":[287]},{"name":"ScheduledTileNotification","features":[287]},{"name":"ScheduledToastNotification","features":[287]},{"name":"ScheduledToastNotificationShowingEventArgs","features":[287]},{"name":"ShownTileNotification","features":[287]},{"name":"TileFlyoutNotification","features":[287]},{"name":"TileFlyoutTemplateType","features":[287]},{"name":"TileFlyoutUpdateManager","features":[287]},{"name":"TileFlyoutUpdater","features":[287]},{"name":"TileNotification","features":[287]},{"name":"TileTemplateType","features":[287]},{"name":"TileUpdateManager","features":[287]},{"name":"TileUpdateManagerForUser","features":[287]},{"name":"TileUpdater","features":[287]},{"name":"ToastActivatedEventArgs","features":[287]},{"name":"ToastCollection","features":[287]},{"name":"ToastCollectionManager","features":[287]},{"name":"ToastDismissalReason","features":[287]},{"name":"ToastDismissedEventArgs","features":[287]},{"name":"ToastFailedEventArgs","features":[287]},{"name":"ToastHistoryChangedType","features":[287]},{"name":"ToastNotification","features":[287]},{"name":"ToastNotificationActionTriggerDetail","features":[287]},{"name":"ToastNotificationHistory","features":[287]},{"name":"ToastNotificationHistoryChangedTriggerDetail","features":[287]},{"name":"ToastNotificationManager","features":[287]},{"name":"ToastNotificationManagerForUser","features":[287]},{"name":"ToastNotificationMode","features":[287]},{"name":"ToastNotificationPriority","features":[287]},{"name":"ToastNotifier","features":[287]},{"name":"ToastTemplateType","features":[287]},{"name":"UserNotification","features":[287]},{"name":"UserNotificationChangedEventArgs","features":[287]},{"name":"UserNotificationChangedKind","features":[287]}],"301":[{"name":"IUserNotificationListener","features":[288]},{"name":"IUserNotificationListenerStatics","features":[288]},{"name":"UserNotificationListener","features":[288]},{"name":"UserNotificationListenerAccessStatus","features":[288]}],"302":[{"name":"IToastOcclusionManagerPreviewStatics","features":[289]},{"name":"ToastOcclusionManagerPreview","features":[289]}],"303":[{"name":"IMessageDialog","features":[267]},{"name":"IMessageDialogFactory","features":[267]},{"name":"IPopupMenu","features":[267]},{"name":"IUICommand","features":[267]},{"name":"IUICommandFactory","features":[267]},{"name":"MessageDialog","features":[267]},{"name":"MessageDialogOptions","features":[267]},{"name":"Placement","features":[267]},{"name":"PopupMenu","features":[267]},{"name":"UICommand","features":[267]},{"name":"UICommandInvokedHandler","features":[267]},{"name":"UICommandSeparator","features":[267]}],"304":[{"name":"AdaptiveCardBuilder","features":[290]},{"name":"FocusSession","features":[290]},{"name":"FocusSessionManager","features":[290]},{"name":"IAdaptiveCard","features":[290]},{"name":"IAdaptiveCardBuilderStatics","features":[290]},{"name":"IFocusSession","features":[290]},{"name":"IFocusSessionManager","features":[290]},{"name":"IFocusSessionManagerStatics","features":[290]},{"name":"ISecurityAppManager","features":[290]},{"name":"IShareWindowCommandEventArgs","features":[290]},{"name":"IShareWindowCommandSource","features":[290]},{"name":"IShareWindowCommandSourceStatics","features":[290]},{"name":"ITaskbarManager","features":[290]},{"name":"ITaskbarManager2","features":[290]},{"name":"ITaskbarManagerDesktopAppSupportStatics","features":[290]},{"name":"ITaskbarManagerStatics","features":[290]},{"name":"IWindowTab","features":[290]},{"name":"IWindowTabCloseRequestedEventArgs","features":[290]},{"name":"IWindowTabCollection","features":[290]},{"name":"IWindowTabGroup","features":[290]},{"name":"IWindowTabIcon","features":[290]},{"name":"IWindowTabIconStatics","features":[290]},{"name":"IWindowTabManager","features":[290]},{"name":"IWindowTabManagerStatics","features":[290]},{"name":"IWindowTabSwitchRequestedEventArgs","features":[290]},{"name":"IWindowTabTearOutRequestedEventArgs","features":[290]},{"name":"IWindowTabThumbnailRequestedEventArgs","features":[290]},{"name":"SecurityAppKind","features":[290]},{"name":"SecurityAppManager","features":[290]},{"name":"SecurityAppManagerContract","features":[290]},{"name":"SecurityAppState","features":[290]},{"name":"SecurityAppSubstatus","features":[290]},{"name":"ShareWindowCommand","features":[290]},{"name":"ShareWindowCommandEventArgs","features":[290]},{"name":"ShareWindowCommandSource","features":[290]},{"name":"TaskbarManager","features":[290]},{"name":"WindowTab","features":[290]},{"name":"WindowTabCloseRequestedEventArgs","features":[290]},{"name":"WindowTabCollection","features":[290]},{"name":"WindowTabGroup","features":[290]},{"name":"WindowTabIcon","features":[290]},{"name":"WindowTabManager","features":[290]},{"name":"WindowTabManagerContract","features":[290]},{"name":"WindowTabSwitchRequestedEventArgs","features":[290]},{"name":"WindowTabTearOutRequestedEventArgs","features":[290]},{"name":"WindowTabThumbnailRequestedEventArgs","features":[290]}],"305":[{"name":"ForegroundText","features":[291]},{"name":"IJumpList","features":[291]},{"name":"IJumpListItem","features":[291]},{"name":"IJumpListItemStatics","features":[291]},{"name":"IJumpListStatics","features":[291]},{"name":"ISecondaryTile","features":[291]},{"name":"ISecondaryTile2","features":[291]},{"name":"ISecondaryTileFactory","features":[291]},{"name":"ISecondaryTileFactory2","features":[291]},{"name":"ISecondaryTileStatics","features":[291]},{"name":"ISecondaryTileVisualElements","features":[291]},{"name":"ISecondaryTileVisualElements2","features":[291]},{"name":"ISecondaryTileVisualElements3","features":[291]},{"name":"ISecondaryTileVisualElements4","features":[291]},{"name":"IStartScreenManager","features":[291]},{"name":"IStartScreenManager2","features":[291]},{"name":"IStartScreenManagerStatics","features":[291]},{"name":"ITileMixedRealityModel","features":[291]},{"name":"ITileMixedRealityModel2","features":[291]},{"name":"IVisualElementsRequest","features":[291]},{"name":"IVisualElementsRequestDeferral","features":[291]},{"name":"IVisualElementsRequestedEventArgs","features":[291]},{"name":"JumpList","features":[291]},{"name":"JumpListItem","features":[291]},{"name":"JumpListItemKind","features":[291]},{"name":"JumpListSystemGroupKind","features":[291]},{"name":"SecondaryTile","features":[291]},{"name":"SecondaryTileVisualElements","features":[291]},{"name":"StartScreenManager","features":[291]},{"name":"TileMixedRealityModel","features":[291]},{"name":"TileMixedRealityModelActivationBehavior","features":[291]},{"name":"TileOptions","features":[291]},{"name":"TileSize","features":[291]},{"name":"VisualElementsRequest","features":[291]},{"name":"VisualElementsRequestDeferral","features":[291]},{"name":"VisualElementsRequestedEventArgs","features":[291]}],"306":[{"name":"CaretType","features":[292]},{"name":"ContentLinkInfo","features":[292]},{"name":"FindOptions","features":[292]},{"name":"FontStretch","features":[292]},{"name":"FontStyle","features":[292]},{"name":"FontWeight","features":[292]},{"name":"FontWeights","features":[292]},{"name":"FormatEffect","features":[292]},{"name":"HorizontalCharacterAlignment","features":[292]},{"name":"IContentLinkInfo","features":[292]},{"name":"IFontWeights","features":[292]},{"name":"IFontWeightsStatics","features":[292]},{"name":"IRichEditTextRange","features":[292]},{"name":"ITextCharacterFormat","features":[292]},{"name":"ITextConstantsStatics","features":[292]},{"name":"ITextDocument","features":[292]},{"name":"ITextDocument2","features":[292]},{"name":"ITextDocument3","features":[292]},{"name":"ITextDocument4","features":[292]},{"name":"ITextParagraphFormat","features":[292]},{"name":"ITextRange","features":[292]},{"name":"ITextSelection","features":[292]},{"name":"LetterCase","features":[292]},{"name":"LineSpacingRule","features":[292]},{"name":"LinkType","features":[292]},{"name":"MarkerAlignment","features":[292]},{"name":"MarkerStyle","features":[292]},{"name":"MarkerType","features":[292]},{"name":"ParagraphAlignment","features":[292]},{"name":"ParagraphStyle","features":[292]},{"name":"PointOptions","features":[292]},{"name":"RangeGravity","features":[292]},{"name":"RichEditMathMode","features":[292]},{"name":"RichEditTextDocument","features":[292]},{"name":"RichEditTextRange","features":[292]},{"name":"SelectionOptions","features":[292]},{"name":"SelectionType","features":[292]},{"name":"TabAlignment","features":[292]},{"name":"TabLeader","features":[292]},{"name":"TextConstants","features":[292]},{"name":"TextDecorations","features":[292]},{"name":"TextGetOptions","features":[292]},{"name":"TextRangeUnit","features":[292]},{"name":"TextScript","features":[292]},{"name":"TextSetOptions","features":[292]},{"name":"UnderlineType","features":[292]},{"name":"VerticalCharacterAlignment","features":[292]}],"307":[{"name":"CoreTextCompositionCompletedEventArgs","features":[293]},{"name":"CoreTextCompositionSegment","features":[293]},{"name":"CoreTextCompositionStartedEventArgs","features":[293]},{"name":"CoreTextEditContext","features":[293]},{"name":"CoreTextFormatUpdatingEventArgs","features":[293]},{"name":"CoreTextFormatUpdatingReason","features":[293]},{"name":"CoreTextFormatUpdatingResult","features":[293]},{"name":"CoreTextInputPaneDisplayPolicy","features":[293]},{"name":"CoreTextInputScope","features":[293]},{"name":"CoreTextLayoutBounds","features":[293]},{"name":"CoreTextLayoutRequest","features":[293]},{"name":"CoreTextLayoutRequestedEventArgs","features":[293]},{"name":"CoreTextRange","features":[293]},{"name":"CoreTextSelectionRequest","features":[293]},{"name":"CoreTextSelectionRequestedEventArgs","features":[293]},{"name":"CoreTextSelectionUpdatingEventArgs","features":[293]},{"name":"CoreTextSelectionUpdatingResult","features":[293]},{"name":"CoreTextServicesConstants","features":[293]},{"name":"CoreTextServicesManager","features":[293]},{"name":"CoreTextTextRequest","features":[293]},{"name":"CoreTextTextRequestedEventArgs","features":[293]},{"name":"CoreTextTextUpdatingEventArgs","features":[293]},{"name":"CoreTextTextUpdatingResult","features":[293]},{"name":"ICoreTextCompositionCompletedEventArgs","features":[293]},{"name":"ICoreTextCompositionSegment","features":[293]},{"name":"ICoreTextCompositionStartedEventArgs","features":[293]},{"name":"ICoreTextEditContext","features":[293]},{"name":"ICoreTextEditContext2","features":[293]},{"name":"ICoreTextFormatUpdatingEventArgs","features":[293]},{"name":"ICoreTextLayoutBounds","features":[293]},{"name":"ICoreTextLayoutRequest","features":[293]},{"name":"ICoreTextLayoutRequest2","features":[293]},{"name":"ICoreTextLayoutRequestedEventArgs","features":[293]},{"name":"ICoreTextSelectionRequest","features":[293]},{"name":"ICoreTextSelectionRequestedEventArgs","features":[293]},{"name":"ICoreTextSelectionUpdatingEventArgs","features":[293]},{"name":"ICoreTextServicesManager","features":[293]},{"name":"ICoreTextServicesManagerStatics","features":[293]},{"name":"ICoreTextServicesStatics","features":[293]},{"name":"ICoreTextTextRequest","features":[293]},{"name":"ICoreTextTextRequestedEventArgs","features":[293]},{"name":"ICoreTextTextUpdatingEventArgs","features":[293]}],"308":[{"name":"AutomationConnection","features":[294]},{"name":"AutomationConnectionBoundObject","features":[294]},{"name":"AutomationElement","features":[294]},{"name":"AutomationTextRange","features":[294]},{"name":"IAutomationConnection","features":[294]},{"name":"IAutomationConnectionBoundObject","features":[294]},{"name":"IAutomationElement","features":[294]},{"name":"IAutomationTextRange","features":[294]},{"name":"UIAutomationContract","features":[294]}],"309":[{"name":"AutomationAnnotationTypeRegistration","features":[295]},{"name":"AutomationRemoteOperationOperandId","features":[295]},{"name":"AutomationRemoteOperationResult","features":[295]},{"name":"AutomationRemoteOperationStatus","features":[295]},{"name":"CoreAutomationRegistrar","features":[295]},{"name":"CoreAutomationRemoteOperation","features":[295]},{"name":"CoreAutomationRemoteOperationContext","features":[295]},{"name":"IAutomationRemoteOperationResult","features":[295]},{"name":"ICoreAutomationConnectionBoundObjectProvider","features":[295]},{"name":"ICoreAutomationRegistrarStatics","features":[295]},{"name":"ICoreAutomationRemoteOperation","features":[295]},{"name":"ICoreAutomationRemoteOperation2","features":[295]},{"name":"ICoreAutomationRemoteOperationContext","features":[295]},{"name":"ICoreAutomationRemoteOperationExtensionProvider","features":[295]},{"name":"IRemoteAutomationClientSession","features":[295]},{"name":"IRemoteAutomationClientSessionFactory","features":[295]},{"name":"IRemoteAutomationConnectionRequestedEventArgs","features":[295]},{"name":"IRemoteAutomationDisconnectedEventArgs","features":[295]},{"name":"IRemoteAutomationServerStatics","features":[295]},{"name":"IRemoteAutomationWindow","features":[295]},{"name":"RemoteAutomationClientSession","features":[295]},{"name":"RemoteAutomationConnectionRequestedEventArgs","features":[295]},{"name":"RemoteAutomationDisconnectedEventArgs","features":[295]},{"name":"RemoteAutomationServer","features":[295]},{"name":"RemoteAutomationWindow","features":[295]}],"310":[{"name":"AccessibilitySettings","features":[296]},{"name":"ActivationViewSwitcher","features":[296]},{"name":"ApplicationView","features":[296]},{"name":"ApplicationViewBoundsMode","features":[296]},{"name":"ApplicationViewConsolidatedEventArgs","features":[296]},{"name":"ApplicationViewMode","features":[296]},{"name":"ApplicationViewOrientation","features":[296]},{"name":"ApplicationViewScaling","features":[296]},{"name":"ApplicationViewState","features":[296]},{"name":"ApplicationViewSwitcher","features":[296]},{"name":"ApplicationViewSwitchingOptions","features":[296]},{"name":"ApplicationViewTitleBar","features":[296]},{"name":"ApplicationViewTransferContext","features":[296]},{"name":"ApplicationViewWindowingMode","features":[296]},{"name":"FullScreenSystemOverlayMode","features":[296]},{"name":"HandPreference","features":[296]},{"name":"IAccessibilitySettings","features":[296]},{"name":"IActivationViewSwitcher","features":[296]},{"name":"IApplicationView","features":[296]},{"name":"IApplicationView2","features":[296]},{"name":"IApplicationView3","features":[296]},{"name":"IApplicationView4","features":[296]},{"name":"IApplicationView7","features":[296]},{"name":"IApplicationView9","features":[296]},{"name":"IApplicationViewConsolidatedEventArgs","features":[296]},{"name":"IApplicationViewConsolidatedEventArgs2","features":[296]},{"name":"IApplicationViewFullscreenStatics","features":[296]},{"name":"IApplicationViewInteropStatics","features":[296]},{"name":"IApplicationViewScaling","features":[296]},{"name":"IApplicationViewScalingStatics","features":[296]},{"name":"IApplicationViewStatics","features":[296]},{"name":"IApplicationViewStatics2","features":[296]},{"name":"IApplicationViewStatics3","features":[296]},{"name":"IApplicationViewStatics4","features":[296]},{"name":"IApplicationViewSwitcherStatics","features":[296]},{"name":"IApplicationViewSwitcherStatics2","features":[296]},{"name":"IApplicationViewSwitcherStatics3","features":[296]},{"name":"IApplicationViewTitleBar","features":[296]},{"name":"IApplicationViewTransferContext","features":[296]},{"name":"IApplicationViewTransferContextStatics","features":[296]},{"name":"IApplicationViewWithContext","features":[296]},{"name":"IInputPane","features":[296]},{"name":"IInputPane2","features":[296]},{"name":"IInputPaneControl","features":[296]},{"name":"IInputPaneStatics","features":[296]},{"name":"IInputPaneStatics2","features":[296]},{"name":"IInputPaneVisibilityEventArgs","features":[296]},{"name":"IProjectionManagerStatics","features":[296]},{"name":"IProjectionManagerStatics2","features":[296]},{"name":"IStatusBar","features":[296]},{"name":"IStatusBarProgressIndicator","features":[296]},{"name":"IStatusBarStatics","features":[296]},{"name":"IUISettings","features":[296]},{"name":"IUISettings2","features":[296]},{"name":"IUISettings3","features":[296]},{"name":"IUISettings4","features":[296]},{"name":"IUISettings5","features":[296]},{"name":"IUISettings6","features":[296]},{"name":"IUISettingsAnimationsEnabledChangedEventArgs","features":[296]},{"name":"IUISettingsAutoHideScrollBarsChangedEventArgs","features":[296]},{"name":"IUISettingsMessageDurationChangedEventArgs","features":[296]},{"name":"IUIViewSettings","features":[296]},{"name":"IUIViewSettingsStatics","features":[296]},{"name":"IViewModePreferences","features":[296]},{"name":"IViewModePreferencesStatics","features":[296]},{"name":"InputPane","features":[296]},{"name":"InputPaneVisibilityEventArgs","features":[296]},{"name":"ProjectionManager","features":[296]},{"name":"ScreenCaptureDisabledBehavior","features":[296]},{"name":"StatusBar","features":[296]},{"name":"StatusBarProgressIndicator","features":[296]},{"name":"UIColorType","features":[296]},{"name":"UIElementType","features":[296]},{"name":"UISettings","features":[296]},{"name":"UISettingsAnimationsEnabledChangedEventArgs","features":[296]},{"name":"UISettingsAutoHideScrollBarsChangedEventArgs","features":[296]},{"name":"UISettingsMessageDurationChangedEventArgs","features":[296]},{"name":"UIViewSettings","features":[296]},{"name":"UserInteractionMode","features":[296]},{"name":"ViewManagementViewScalingContract","features":[296]},{"name":"ViewModePreferences","features":[296]},{"name":"ViewSizePreference","features":[296]}],"311":[{"name":"CoreFrameworkInputView","features":[297]},{"name":"CoreFrameworkInputViewAnimationStartingEventArgs","features":[297]},{"name":"CoreFrameworkInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"CoreInputView","features":[297]},{"name":"CoreInputViewAnimationStartingEventArgs","features":[297]},{"name":"CoreInputViewHidingEventArgs","features":[297]},{"name":"CoreInputViewKind","features":[297]},{"name":"CoreInputViewOcclusion","features":[297]},{"name":"CoreInputViewOcclusionKind","features":[297]},{"name":"CoreInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"CoreInputViewShowingEventArgs","features":[297]},{"name":"CoreInputViewTransferringXYFocusEventArgs","features":[297]},{"name":"CoreInputViewXYFocusTransferDirection","features":[297]},{"name":"ICoreFrameworkInputView","features":[297]},{"name":"ICoreFrameworkInputViewAnimationStartingEventArgs","features":[297]},{"name":"ICoreFrameworkInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"ICoreFrameworkInputViewStatics","features":[297]},{"name":"ICoreInputView","features":[297]},{"name":"ICoreInputView2","features":[297]},{"name":"ICoreInputView3","features":[297]},{"name":"ICoreInputView4","features":[297]},{"name":"ICoreInputView5","features":[297]},{"name":"ICoreInputViewAnimationStartingEventArgs","features":[297]},{"name":"ICoreInputViewHidingEventArgs","features":[297]},{"name":"ICoreInputViewOcclusion","features":[297]},{"name":"ICoreInputViewOcclusionsChangedEventArgs","features":[297]},{"name":"ICoreInputViewShowingEventArgs","features":[297]},{"name":"ICoreInputViewStatics","features":[297]},{"name":"ICoreInputViewStatics2","features":[297]},{"name":"ICoreInputViewTransferringXYFocusEventArgs","features":[297]},{"name":"IUISettingsController","features":[297]},{"name":"IUISettingsControllerStatics","features":[297]},{"name":"UISettingsController","features":[297]}],"312":[{"name":"ActivatedDeferral","features":[298]},{"name":"ActivatedEventHandler","features":[2,298]},{"name":"ActivatedOperation","features":[298]},{"name":"BackgroundActivatedEventArgs","features":[2,298]},{"name":"BackgroundActivatedEventHandler","features":[2,298]},{"name":"EnteredBackgroundEventArgs","features":[1,298]},{"name":"EnteredBackgroundEventHandler","features":[1,298]},{"name":"HtmlPrintDocumentSource","features":[298]},{"name":"IActivatedDeferral","features":[298]},{"name":"IActivatedEventArgsDeferral","features":[298]},{"name":"IActivatedOperation","features":[298]},{"name":"IHtmlPrintDocumentSource","features":[298]},{"name":"INewWebUIViewCreatedEventArgs","features":[298]},{"name":"IWebUIActivationStatics","features":[298]},{"name":"IWebUIActivationStatics2","features":[298]},{"name":"IWebUIActivationStatics3","features":[298]},{"name":"IWebUIActivationStatics4","features":[298]},{"name":"IWebUIBackgroundTaskInstance","features":[298]},{"name":"IWebUIBackgroundTaskInstanceStatics","features":[298]},{"name":"IWebUINavigatedDeferral","features":[298]},{"name":"IWebUINavigatedEventArgs","features":[298]},{"name":"IWebUINavigatedOperation","features":[298]},{"name":"IWebUIView","features":[298]},{"name":"IWebUIViewStatics","features":[298]},{"name":"LeavingBackgroundEventArgs","features":[1,298]},{"name":"LeavingBackgroundEventHandler","features":[1,298]},{"name":"NavigatedEventHandler","features":[298]},{"name":"NewWebUIViewCreatedEventArgs","features":[298]},{"name":"PrintContent","features":[298]},{"name":"ResumingEventHandler","features":[298]},{"name":"SuspendingDeferral","features":[1,298]},{"name":"SuspendingEventArgs","features":[1,298]},{"name":"SuspendingEventHandler","features":[1,298]},{"name":"SuspendingOperation","features":[1,298]},{"name":"WebUIApplication","features":[298]},{"name":"WebUIAppointmentsProviderAddAppointmentActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderRemoveAppointmentActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderReplaceAppointmentActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderShowAppointmentDetailsActivatedEventArgs","features":[2,298]},{"name":"WebUIAppointmentsProviderShowTimeFrameActivatedEventArgs","features":[2,298]},{"name":"WebUIBackgroundTaskInstance","features":[298]},{"name":"WebUIBackgroundTaskInstanceRuntimeClass","features":[298]},{"name":"WebUIBarcodeScannerPreviewActivatedEventArgs","features":[2,298]},{"name":"WebUICachedFileUpdaterActivatedEventArgs","features":[2,298]},{"name":"WebUICameraSettingsActivatedEventArgs","features":[2,298]},{"name":"WebUICommandLineActivatedEventArgs","features":[2,298]},{"name":"WebUIContactCallActivatedEventArgs","features":[2,298]},{"name":"WebUIContactMapActivatedEventArgs","features":[2,298]},{"name":"WebUIContactMessageActivatedEventArgs","features":[2,298]},{"name":"WebUIContactPanelActivatedEventArgs","features":[2,298]},{"name":"WebUIContactPickerActivatedEventArgs","features":[2,298]},{"name":"WebUIContactPostActivatedEventArgs","features":[2,298]},{"name":"WebUIContactVideoCallActivatedEventArgs","features":[2,298]},{"name":"WebUIDeviceActivatedEventArgs","features":[2,298]},{"name":"WebUIDevicePairingActivatedEventArgs","features":[2,298]},{"name":"WebUIDialReceiverActivatedEventArgs","features":[2,298]},{"name":"WebUIFileActivatedEventArgs","features":[2,298]},{"name":"WebUIFileOpenPickerActivatedEventArgs","features":[2,298]},{"name":"WebUIFileOpenPickerContinuationEventArgs","features":[2,298]},{"name":"WebUIFileSavePickerActivatedEventArgs","features":[2,298]},{"name":"WebUIFileSavePickerContinuationEventArgs","features":[2,298]},{"name":"WebUIFolderPickerContinuationEventArgs","features":[2,298]},{"name":"WebUILaunchActivatedEventArgs","features":[2,298]},{"name":"WebUILockScreenActivatedEventArgs","features":[2,298]},{"name":"WebUILockScreenCallActivatedEventArgs","features":[2,298]},{"name":"WebUILockScreenComponentActivatedEventArgs","features":[2,298]},{"name":"WebUINavigatedDeferral","features":[298]},{"name":"WebUINavigatedEventArgs","features":[298]},{"name":"WebUINavigatedOperation","features":[298]},{"name":"WebUIPhoneCallActivatedEventArgs","features":[2,298]},{"name":"WebUIPrint3DWorkflowActivatedEventArgs","features":[2,298]},{"name":"WebUIPrintTaskSettingsActivatedEventArgs","features":[2,298]},{"name":"WebUIPrintWorkflowForegroundTaskActivatedEventArgs","features":[2,298]},{"name":"WebUIProtocolActivatedEventArgs","features":[2,298]},{"name":"WebUIProtocolForResultsActivatedEventArgs","features":[2,298]},{"name":"WebUIRestrictedLaunchActivatedEventArgs","features":[2,298]},{"name":"WebUISearchActivatedEventArgs","features":[2,298]},{"name":"WebUIShareTargetActivatedEventArgs","features":[2,298]},{"name":"WebUIStartupTaskActivatedEventArgs","features":[2,298]},{"name":"WebUIToastNotificationActivatedEventArgs","features":[2,298]},{"name":"WebUIUserDataAccountProviderActivatedEventArgs","features":[2,298]},{"name":"WebUIView","features":[298]},{"name":"WebUIVoiceCommandActivatedEventArgs","features":[2,298]},{"name":"WebUIWalletActionActivatedEventArgs","features":[2,298]},{"name":"WebUIWebAccountProviderActivatedEventArgs","features":[2,298]},{"name":"WebUIWebAuthenticationBrokerContinuationEventArgs","features":[2,298]}],"313":[{"name":"IWebUICommandBar","features":[299]},{"name":"IWebUICommandBarBitmapIcon","features":[299]},{"name":"IWebUICommandBarBitmapIconFactory","features":[299]},{"name":"IWebUICommandBarConfirmationButton","features":[299]},{"name":"IWebUICommandBarElement","features":[299]},{"name":"IWebUICommandBarIcon","features":[299]},{"name":"IWebUICommandBarIconButton","features":[299]},{"name":"IWebUICommandBarItemInvokedEventArgs","features":[299]},{"name":"IWebUICommandBarSizeChangedEventArgs","features":[299]},{"name":"IWebUICommandBarStatics","features":[299]},{"name":"IWebUICommandBarSymbolIcon","features":[299]},{"name":"IWebUICommandBarSymbolIconFactory","features":[299]},{"name":"MenuClosedEventHandler","features":[299]},{"name":"MenuOpenedEventHandler","features":[299]},{"name":"SizeChangedEventHandler","features":[299]},{"name":"WebUICommandBar","features":[299]},{"name":"WebUICommandBarBitmapIcon","features":[299]},{"name":"WebUICommandBarClosedDisplayMode","features":[299]},{"name":"WebUICommandBarConfirmationButton","features":[299]},{"name":"WebUICommandBarContract","features":[299]},{"name":"WebUICommandBarIconButton","features":[299]},{"name":"WebUICommandBarItemInvokedEventArgs","features":[299]},{"name":"WebUICommandBarSizeChangedEventArgs","features":[299]},{"name":"WebUICommandBarSymbolIcon","features":[299]}],"314":[{"name":"AppWindow","features":[300]},{"name":"AppWindowChangedEventArgs","features":[300]},{"name":"AppWindowCloseRequestedEventArgs","features":[300]},{"name":"AppWindowClosedEventArgs","features":[300]},{"name":"AppWindowClosedReason","features":[300]},{"name":"AppWindowFrame","features":[300]},{"name":"AppWindowFrameStyle","features":[300]},{"name":"AppWindowPlacement","features":[300]},{"name":"AppWindowPresentationConfiguration","features":[300]},{"name":"AppWindowPresentationKind","features":[300]},{"name":"AppWindowPresenter","features":[300]},{"name":"AppWindowTitleBar","features":[300]},{"name":"AppWindowTitleBarOcclusion","features":[300]},{"name":"AppWindowTitleBarVisibility","features":[300]},{"name":"CompactOverlayPresentationConfiguration","features":[300]},{"name":"DefaultPresentationConfiguration","features":[300]},{"name":"DisplayRegion","features":[300]},{"name":"FullScreenPresentationConfiguration","features":[300]},{"name":"IAppWindow","features":[300]},{"name":"IAppWindowChangedEventArgs","features":[300]},{"name":"IAppWindowCloseRequestedEventArgs","features":[300]},{"name":"IAppWindowClosedEventArgs","features":[300]},{"name":"IAppWindowFrame","features":[300]},{"name":"IAppWindowFrameStyle","features":[300]},{"name":"IAppWindowPlacement","features":[300]},{"name":"IAppWindowPresentationConfiguration","features":[300]},{"name":"IAppWindowPresentationConfigurationFactory","features":[300]},{"name":"IAppWindowPresenter","features":[300]},{"name":"IAppWindowStatics","features":[300]},{"name":"IAppWindowTitleBar","features":[300]},{"name":"IAppWindowTitleBarOcclusion","features":[300]},{"name":"IAppWindowTitleBarVisibility","features":[300]},{"name":"ICompactOverlayPresentationConfiguration","features":[300]},{"name":"IDefaultPresentationConfiguration","features":[300]},{"name":"IDisplayRegion","features":[300]},{"name":"IFullScreenPresentationConfiguration","features":[300]},{"name":"IWindowServicesStatics","features":[300]},{"name":"IWindowingEnvironment","features":[300]},{"name":"IWindowingEnvironmentAddedEventArgs","features":[300]},{"name":"IWindowingEnvironmentChangedEventArgs","features":[300]},{"name":"IWindowingEnvironmentRemovedEventArgs","features":[300]},{"name":"IWindowingEnvironmentStatics","features":[300]},{"name":"WindowServices","features":[300]},{"name":"WindowingEnvironment","features":[300]},{"name":"WindowingEnvironmentAddedEventArgs","features":[300]},{"name":"WindowingEnvironmentChangedEventArgs","features":[300]},{"name":"WindowingEnvironmentKind","features":[300]},{"name":"WindowingEnvironmentRemovedEventArgs","features":[300]}],"315":[{"name":"IWindowManagementPreview","features":[301]},{"name":"IWindowManagementPreviewStatics","features":[301]},{"name":"WindowManagementPreview","features":[301]}],"339":[{"name":"DEVPKEY_Bluetooth_ClassOfDevice","features":[302,303]},{"name":"DEVPKEY_Bluetooth_ClassOfDevice_Deprecated","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DeviceAddress","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DeviceFlags","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DeviceManufacturer","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DeviceModelNumber","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DevicePID","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DeviceProductVersion","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DeviceVID","features":[302,303]},{"name":"DEVPKEY_Bluetooth_DeviceVIDSource","features":[302,303]},{"name":"DEVPKEY_Bluetooth_LastConnectedTime","features":[302,303]},{"name":"DEVPKEY_Bluetooth_LastConnectedTime_Deprecated","features":[302,303]},{"name":"DEVPKEY_Bluetooth_LastSeenTime","features":[302,303]},{"name":"DEVPKEY_Bluetooth_ServiceGUID","features":[302,303]},{"name":"GUID_BTHDDI_PROFILE_DRIVER_INTERFACE","features":[302]},{"name":"GUID_BTHDDI_SDP_NODE_INTERFACE","features":[302]},{"name":"GUID_BTHDDI_SDP_PARSE_INTERFACE","features":[302]},{"name":"GUID_BTH_DEVICE_INTERFACE","features":[302]}],"340":[{"name":"EVT_VHF_ASYNC_OPERATION","features":[304]},{"name":"EVT_VHF_CLEANUP","features":[304]},{"name":"EVT_VHF_READY_FOR_NEXT_READ_REPORT","features":[304]},{"name":"HID_XFER_PACKET","features":[304]},{"name":"VHF_CONFIG","features":[304,305]},{"name":"VhfAsyncOperationComplete","features":[304,305]},{"name":"VhfCreate","features":[304,305]},{"name":"VhfDelete","features":[304,305]},{"name":"VhfReadReportSubmit","features":[304,305]},{"name":"VhfStart","features":[304,305]}],"341":[{"name":"ACCESS_STATE","features":[306,307,305,308]},{"name":"DEVICE_OBJECT","features":[306,309,307,305,308,310,311,312]},{"name":"DEVOBJ_EXTENSION","features":[306,309,307,305,308,310,311,312]},{"name":"DISPATCHER_HEADER","features":[306,305,311]},{"name":"DMA_COMMON_BUFFER_VECTOR","features":[306]},{"name":"DRIVER_ADD_DEVICE","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_CANCEL","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_CONTROL","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_DISPATCH","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_DISPATCH_PAGED","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_EXTENSION","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_FS_NOTIFICATION","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_INITIALIZE","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_NOTIFICATION_CALLBACK_ROUTINE","features":[306,305]},{"name":"DRIVER_OBJECT","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_REINITIALIZE","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_STARTIO","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_UNLOAD","features":[306,309,307,305,308,310,311,312]},{"name":"DontUseThisType","features":[306]},{"name":"DontUseThisTypeSession","features":[306]},{"name":"ECP_HEADER","features":[306]},{"name":"ECP_LIST","features":[306]},{"name":"ERESOURCE","features":[306,311]},{"name":"FAST_IO_ACQUIRE_FILE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_ACQUIRE_FOR_CCFLUSH","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_ACQUIRE_FOR_MOD_WRITE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_CHECK_IF_POSSIBLE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_DETACH_DEVICE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_DEVICE_CONTROL","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_DISPATCH","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_LOCK","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_MDL_READ","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_MDL_READ_COMPLETE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_MDL_READ_COMPLETE_COMPRESSED","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_MDL_WRITE_COMPLETE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_PREPARE_MDL_WRITE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_QUERY_BASIC_INFO","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_QUERY_NETWORK_OPEN_INFO","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_QUERY_OPEN","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_QUERY_STANDARD_INFO","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_READ","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_READ_COMPRESSED","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_RELEASE_FILE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_RELEASE_FOR_CCFLUSH","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_RELEASE_FOR_MOD_WRITE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_UNLOCK_ALL","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_UNLOCK_ALL_BY_KEY","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_UNLOCK_SINGLE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_WRITE","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_IO_WRITE_COMPRESSED","features":[306,309,307,305,308,310,311,312]},{"name":"FAST_MUTEX","features":[306,305,311]},{"name":"FILE_OBJECT","features":[306,309,307,305,308,310,311,312]},{"name":"IOMMU_DMA_DEVICE","features":[306]},{"name":"IOMMU_DMA_DOMAIN","features":[306]},{"name":"IO_COMPLETION_CONTEXT","features":[306]},{"name":"IO_PRIORITY_HINT","features":[306]},{"name":"IO_SECURITY_CONTEXT","features":[306,307,305,308]},{"name":"IO_STACK_LOCATION","features":[306,309,307,305,308,310,311,312]},{"name":"IRP","features":[306,309,307,305,308,310,311,312]},{"name":"IoPriorityCritical","features":[306]},{"name":"IoPriorityHigh","features":[306]},{"name":"IoPriorityLow","features":[306]},{"name":"IoPriorityNormal","features":[306]},{"name":"IoPriorityVeryLow","features":[306]},{"name":"KDEVICE_QUEUE","features":[306,305,311]},{"name":"KDPC","features":[306,311]},{"name":"KENLISTMENT","features":[306]},{"name":"KEVENT","features":[306,305,311]},{"name":"KGDT","features":[306]},{"name":"KIDT","features":[306]},{"name":"KMUTANT","features":[306,305,311]},{"name":"KPCR","features":[306]},{"name":"KPRCB","features":[306]},{"name":"KQUEUE","features":[306,305,311]},{"name":"KRESOURCEMANAGER","features":[306]},{"name":"KSPIN_LOCK_QUEUE_NUMBER","features":[306]},{"name":"KTM","features":[306]},{"name":"KTRANSACTION","features":[306]},{"name":"KTSS","features":[306]},{"name":"KWAIT_BLOCK","features":[306,305,311]},{"name":"LOADER_PARAMETER_BLOCK","features":[306]},{"name":"LockQueueAfdWorkQueueLock","features":[306]},{"name":"LockQueueBcbLock","features":[306]},{"name":"LockQueueIoCancelLock","features":[306]},{"name":"LockQueueIoCompletionLock","features":[306]},{"name":"LockQueueIoDatabaseLock","features":[306]},{"name":"LockQueueIoVpbLock","features":[306]},{"name":"LockQueueMasterLock","features":[306]},{"name":"LockQueueMaximumLock","features":[306]},{"name":"LockQueueNonPagedPoolLock","features":[306]},{"name":"LockQueueNtfsStructLock","features":[306]},{"name":"LockQueueUnusedSpare0","features":[306]},{"name":"LockQueueUnusedSpare1","features":[306]},{"name":"LockQueueUnusedSpare15","features":[306]},{"name":"LockQueueUnusedSpare16","features":[306]},{"name":"LockQueueUnusedSpare2","features":[306]},{"name":"LockQueueUnusedSpare3","features":[306]},{"name":"LockQueueUnusedSpare8","features":[306]},{"name":"LockQueueVacbLock","features":[306]},{"name":"MDL","features":[306]},{"name":"MaxIoPriorityTypes","features":[306]},{"name":"MaxPoolType","features":[306]},{"name":"NTSTRSAFE_MAX_CCH","features":[306]},{"name":"NTSTRSAFE_MAX_LENGTH","features":[306]},{"name":"NTSTRSAFE_UNICODE_STRING_MAX_CCH","features":[306]},{"name":"NTSTRSAFE_USE_SECURE_CRT","features":[306]},{"name":"NonPagedPool","features":[306]},{"name":"NonPagedPoolBase","features":[306]},{"name":"NonPagedPoolBaseCacheAligned","features":[306]},{"name":"NonPagedPoolBaseCacheAlignedMustS","features":[306]},{"name":"NonPagedPoolBaseMustSucceed","features":[306]},{"name":"NonPagedPoolCacheAligned","features":[306]},{"name":"NonPagedPoolCacheAlignedMustS","features":[306]},{"name":"NonPagedPoolCacheAlignedMustSSession","features":[306]},{"name":"NonPagedPoolCacheAlignedSession","features":[306]},{"name":"NonPagedPoolExecute","features":[306]},{"name":"NonPagedPoolMustSucceed","features":[306]},{"name":"NonPagedPoolMustSucceedSession","features":[306]},{"name":"NonPagedPoolNx","features":[306]},{"name":"NonPagedPoolNxCacheAligned","features":[306]},{"name":"NonPagedPoolSession","features":[306]},{"name":"NonPagedPoolSessionNx","features":[306]},{"name":"NtClose","features":[306,305]},{"name":"NtQueryObject","features":[306,305]},{"name":"OBJECT_ATTRIBUTES","features":[306,305]},{"name":"OBJECT_ATTRIBUTES32","features":[306]},{"name":"OBJECT_ATTRIBUTES64","features":[306]},{"name":"OBJECT_INFORMATION_CLASS","features":[306]},{"name":"OBJECT_NAME_INFORMATION","features":[306,305]},{"name":"OWNER_ENTRY","features":[306]},{"name":"ObjectBasicInformation","features":[306]},{"name":"ObjectTypeInformation","features":[306]},{"name":"PAFFINITY_TOKEN","features":[306]},{"name":"PBUS_HANDLER","features":[306]},{"name":"PCALLBACK_OBJECT","features":[306]},{"name":"PDEVICE_HANDLER_OBJECT","features":[306]},{"name":"PEJOB","features":[306]},{"name":"PEPROCESS","features":[306]},{"name":"PESILO","features":[306]},{"name":"PETHREAD","features":[306]},{"name":"PEX_RUNDOWN_REF_CACHE_AWARE","features":[306]},{"name":"PEX_TIMER","features":[306]},{"name":"PFREE_FUNCTION","features":[306]},{"name":"PIO_COMPLETION_ROUTINE","features":[306,305]},{"name":"PIO_REMOVE_LOCK_TRACKING_BLOCK","features":[306]},{"name":"PIO_TIMER","features":[306]},{"name":"PIO_WORKITEM","features":[306]},{"name":"PKDEFERRED_ROUTINE","features":[306]},{"name":"PKINTERRUPT","features":[306]},{"name":"PKPROCESS","features":[306]},{"name":"PKTHREAD","features":[306]},{"name":"PNOTIFY_SYNC","features":[306]},{"name":"POBJECT_TYPE","features":[306]},{"name":"POHANDLE","features":[306]},{"name":"POOL_TYPE","features":[306]},{"name":"PPCW_BUFFER","features":[306]},{"name":"PPCW_INSTANCE","features":[306]},{"name":"PPCW_REGISTRATION","features":[306]},{"name":"PRKPROCESS","features":[306]},{"name":"PRKTHREAD","features":[306]},{"name":"PSILO_MONITOR","features":[306]},{"name":"PWORKER_THREAD_ROUTINE","features":[306]},{"name":"PagedPool","features":[306]},{"name":"PagedPoolCacheAligned","features":[306]},{"name":"PagedPoolCacheAlignedSession","features":[306]},{"name":"PagedPoolSession","features":[306]},{"name":"RTL_SPLAY_LINKS","features":[306]},{"name":"SECTION_OBJECT_POINTERS","features":[306]},{"name":"SECURITY_SUBJECT_CONTEXT","features":[306,308]},{"name":"STRSAFE_FILL_BEHIND","features":[306]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[306]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[306]},{"name":"STRSAFE_IGNORE_NULLS","features":[306]},{"name":"STRSAFE_NO_TRUNCATION","features":[306]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[306]},{"name":"STRSAFE_ZERO_LENGTH_ON_FAILURE","features":[306]},{"name":"SspiAsyncContext","features":[306]},{"name":"TARGET_DEVICE_CUSTOM_NOTIFICATION","features":[306,309,307,305,308,310,311,312]},{"name":"VPB","features":[306,309,307,305,308,310,311,312]},{"name":"WORK_QUEUE_ITEM","features":[306,311]},{"name":"_DEVICE_OBJECT_POWER_EXTENSION","features":[306]},{"name":"_IORING_OBJECT","features":[306]},{"name":"_SCSI_REQUEST_BLOCK","features":[306]},{"name":"__WARNING_BANNED_API_USAGE","features":[306]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[306]},{"name":"__WARNING_DEREF_NULL_PTR","features":[306]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[306]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[306]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[306]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[306]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[306]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[306]},{"name":"__WARNING_POST_EXPECTED","features":[306]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[306]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[306]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[306]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[306]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[306]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[306]},{"name":"__WARNING_USING_UNINIT_VAR","features":[306]}],"342":[{"name":"D3DCAPS8","features":[313,314]},{"name":"D3DCLEAR_COMPUTERECTS","features":[313]},{"name":"D3DDDIARG_CREATERESOURCE","features":[313,305]},{"name":"D3DDDIARG_CREATERESOURCE2","features":[313,305]},{"name":"D3DDDICB_DESTROYALLOCATION2FLAGS","features":[313]},{"name":"D3DDDICB_LOCK2FLAGS","features":[313]},{"name":"D3DDDICB_LOCKFLAGS","features":[313]},{"name":"D3DDDICB_SIGNALFLAGS","features":[313]},{"name":"D3DDDIFMT_A1","features":[313]},{"name":"D3DDDIFMT_A16B16G16R16","features":[313]},{"name":"D3DDDIFMT_A16B16G16R16F","features":[313]},{"name":"D3DDDIFMT_A1R5G5B5","features":[313]},{"name":"D3DDDIFMT_A2B10G10R10","features":[313]},{"name":"D3DDDIFMT_A2B10G10R10_XR_BIAS","features":[313]},{"name":"D3DDDIFMT_A2R10G10B10","features":[313]},{"name":"D3DDDIFMT_A2W10V10U10","features":[313]},{"name":"D3DDDIFMT_A32B32G32R32F","features":[313]},{"name":"D3DDDIFMT_A4L4","features":[313]},{"name":"D3DDDIFMT_A4R4G4B4","features":[313]},{"name":"D3DDDIFMT_A8","features":[313]},{"name":"D3DDDIFMT_A8B8G8R8","features":[313]},{"name":"D3DDDIFMT_A8L8","features":[313]},{"name":"D3DDDIFMT_A8P8","features":[313]},{"name":"D3DDDIFMT_A8R3G3B2","features":[313]},{"name":"D3DDDIFMT_A8R8G8B8","features":[313]},{"name":"D3DDDIFMT_BINARYBUFFER","features":[313]},{"name":"D3DDDIFMT_BITSTREAMDATA","features":[313]},{"name":"D3DDDIFMT_CxV8U8","features":[313]},{"name":"D3DDDIFMT_D15S1","features":[313]},{"name":"D3DDDIFMT_D16","features":[313]},{"name":"D3DDDIFMT_D16_LOCKABLE","features":[313]},{"name":"D3DDDIFMT_D24FS8","features":[313]},{"name":"D3DDDIFMT_D24S8","features":[313]},{"name":"D3DDDIFMT_D24X4S4","features":[313]},{"name":"D3DDDIFMT_D24X8","features":[313]},{"name":"D3DDDIFMT_D32","features":[313]},{"name":"D3DDDIFMT_D32F_LOCKABLE","features":[313]},{"name":"D3DDDIFMT_D32_LOCKABLE","features":[313]},{"name":"D3DDDIFMT_DEBLOCKINGDATA","features":[313]},{"name":"D3DDDIFMT_DXT1","features":[313]},{"name":"D3DDDIFMT_DXT2","features":[313]},{"name":"D3DDDIFMT_DXT3","features":[313]},{"name":"D3DDDIFMT_DXT4","features":[313]},{"name":"D3DDDIFMT_DXT5","features":[313]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_BASE","features":[313]},{"name":"D3DDDIFMT_DXVACOMPBUFFER_MAX","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED10","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED11","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED12","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED13","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED14","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED15","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED16","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED17","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED18","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED19","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED20","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED21","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED22","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED23","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED24","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED25","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED26","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED27","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED28","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED29","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED30","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED31","features":[313]},{"name":"D3DDDIFMT_DXVA_RESERVED9","features":[313]},{"name":"D3DDDIFMT_FILMGRAINBUFFER","features":[313]},{"name":"D3DDDIFMT_G16R16","features":[313]},{"name":"D3DDDIFMT_G16R16F","features":[313]},{"name":"D3DDDIFMT_G32R32F","features":[313]},{"name":"D3DDDIFMT_G8R8","features":[313]},{"name":"D3DDDIFMT_G8R8_G8B8","features":[313]},{"name":"D3DDDIFMT_INDEX16","features":[313]},{"name":"D3DDDIFMT_INDEX32","features":[313]},{"name":"D3DDDIFMT_INVERSEQUANTIZATIONDATA","features":[313]},{"name":"D3DDDIFMT_L16","features":[313]},{"name":"D3DDDIFMT_L6V5U5","features":[313]},{"name":"D3DDDIFMT_L8","features":[313]},{"name":"D3DDDIFMT_MACROBLOCKDATA","features":[313]},{"name":"D3DDDIFMT_MOTIONVECTORBUFFER","features":[313]},{"name":"D3DDDIFMT_MULTI2_ARGB8","features":[313]},{"name":"D3DDDIFMT_P8","features":[313]},{"name":"D3DDDIFMT_PICTUREPARAMSDATA","features":[313]},{"name":"D3DDDIFMT_Q16W16V16U16","features":[313]},{"name":"D3DDDIFMT_Q8W8V8U8","features":[313]},{"name":"D3DDDIFMT_R16F","features":[313]},{"name":"D3DDDIFMT_R32F","features":[313]},{"name":"D3DDDIFMT_R3G3B2","features":[313]},{"name":"D3DDDIFMT_R5G6B5","features":[313]},{"name":"D3DDDIFMT_R8","features":[313]},{"name":"D3DDDIFMT_R8G8B8","features":[313]},{"name":"D3DDDIFMT_R8G8_B8G8","features":[313]},{"name":"D3DDDIFMT_RESIDUALDIFFERENCEDATA","features":[313]},{"name":"D3DDDIFMT_S1D15","features":[313]},{"name":"D3DDDIFMT_S8D24","features":[313]},{"name":"D3DDDIFMT_S8_LOCKABLE","features":[313]},{"name":"D3DDDIFMT_SLICECONTROLDATA","features":[313]},{"name":"D3DDDIFMT_UNKNOWN","features":[313]},{"name":"D3DDDIFMT_UYVY","features":[313]},{"name":"D3DDDIFMT_V16U16","features":[313]},{"name":"D3DDDIFMT_V8U8","features":[313]},{"name":"D3DDDIFMT_VERTEXDATA","features":[313]},{"name":"D3DDDIFMT_W11V11U10","features":[313]},{"name":"D3DDDIFMT_X1R5G5B5","features":[313]},{"name":"D3DDDIFMT_X4R4G4B4","features":[313]},{"name":"D3DDDIFMT_X4S4D24","features":[313]},{"name":"D3DDDIFMT_X8B8G8R8","features":[313]},{"name":"D3DDDIFMT_X8D24","features":[313]},{"name":"D3DDDIFMT_X8L8V8U8","features":[313]},{"name":"D3DDDIFMT_X8R8G8B8","features":[313]},{"name":"D3DDDIFMT_YUY2","features":[313]},{"name":"D3DDDIFORMAT","features":[313]},{"name":"D3DDDIGPUVIRTUALADDRESS_PROTECTION_TYPE","features":[313]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVATION_TYPE","features":[313]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_ACCESS","features":[313]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_NO_COMMIT","features":[313]},{"name":"D3DDDIGPUVIRTUALADDRESS_RESERVE_ZERO","features":[313]},{"name":"D3DDDIMULTISAMPLE_10_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_11_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_12_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_13_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_14_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_15_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_16_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_2_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_3_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_4_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_5_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_6_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_7_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_8_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_9_SAMPLES","features":[313]},{"name":"D3DDDIMULTISAMPLE_NONE","features":[313]},{"name":"D3DDDIMULTISAMPLE_NONMASKABLE","features":[313]},{"name":"D3DDDIMULTISAMPLE_TYPE","features":[313]},{"name":"D3DDDIPOOL_LOCALVIDMEM","features":[313]},{"name":"D3DDDIPOOL_NONLOCALVIDMEM","features":[313]},{"name":"D3DDDIPOOL_STAGINGMEM","features":[313]},{"name":"D3DDDIPOOL_SYSTEMMEM","features":[313]},{"name":"D3DDDIPOOL_VIDEOMEMORY","features":[313]},{"name":"D3DDDIRECT","features":[313]},{"name":"D3DDDI_ALLOCATIONINFO","features":[313]},{"name":"D3DDDI_ALLOCATIONINFO2","features":[313,305]},{"name":"D3DDDI_ALLOCATIONLIST","features":[313]},{"name":"D3DDDI_ALLOCATIONPRIORITY_HIGH","features":[313]},{"name":"D3DDDI_ALLOCATIONPRIORITY_LOW","features":[313]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MAXIMUM","features":[313]},{"name":"D3DDDI_ALLOCATIONPRIORITY_MINIMUM","features":[313]},{"name":"D3DDDI_ALLOCATIONPRIORITY_NORMAL","features":[313]},{"name":"D3DDDI_COLOR_SPACE_CUSTOM","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RESERVED","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G10_NONE_P709","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_FULL_G22_NONE_P709","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G2084_NONE_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P709","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P709","features":[313]},{"name":"D3DDDI_COLOR_SPACE_TYPE","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P601","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P709","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_FULL_GHLG_TOPLEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_LEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G2084_TOPLEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G22_TOPLEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P709","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_G24_TOPLEFT_P2020","features":[313]},{"name":"D3DDDI_COLOR_SPACE_YCBCR_STUDIO_GHLG_TOPLEFT_P2020","features":[313]},{"name":"D3DDDI_CPU_NOTIFICATION","features":[313]},{"name":"D3DDDI_CREATECONTEXTFLAGS","features":[313]},{"name":"D3DDDI_CREATEHWCONTEXTFLAGS","features":[313]},{"name":"D3DDDI_CREATEHWQUEUEFLAGS","features":[313]},{"name":"D3DDDI_CREATENATIVEFENCEINFO","features":[313]},{"name":"D3DDDI_DESTROYPAGINGQUEUE","features":[313]},{"name":"D3DDDI_DOORBELLSTATUS","features":[313]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED","features":[313]},{"name":"D3DDDI_DOORBELLSTATUS_CONNECTED_NOTIFY_KMD","features":[313]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_ABORT","features":[313]},{"name":"D3DDDI_DOORBELLSTATUS_DISCONNECTED_RETRY","features":[313]},{"name":"D3DDDI_DOORBELL_PRIVATEDATA_MAX_BYTES_WDDM3_1","features":[313]},{"name":"D3DDDI_DRIVERESCAPETYPE","features":[313]},{"name":"D3DDDI_DRIVERESCAPETYPE_CPUEVENTUSAGE","features":[313]},{"name":"D3DDDI_DRIVERESCAPETYPE_MAX","features":[313]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATEALLOCATIONHANDLE","features":[313]},{"name":"D3DDDI_DRIVERESCAPETYPE_TRANSLATERESOURCEHANDLE","features":[313]},{"name":"D3DDDI_DRIVERESCAPE_CPUEVENTUSAGE","features":[313]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATEALLOCATIONEHANDLE","features":[313]},{"name":"D3DDDI_DRIVERESCAPE_TRANSLATERESOURCEHANDLE","features":[313]},{"name":"D3DDDI_DXGI_RGB","features":[313]},{"name":"D3DDDI_ESCAPEFLAGS","features":[313]},{"name":"D3DDDI_EVICT_FLAGS","features":[313]},{"name":"D3DDDI_FENCE","features":[313]},{"name":"D3DDDI_FLIPINTERVAL_FOUR","features":[313]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE","features":[313]},{"name":"D3DDDI_FLIPINTERVAL_IMMEDIATE_ALLOW_TEARING","features":[313]},{"name":"D3DDDI_FLIPINTERVAL_ONE","features":[313]},{"name":"D3DDDI_FLIPINTERVAL_THREE","features":[313]},{"name":"D3DDDI_FLIPINTERVAL_TWO","features":[313]},{"name":"D3DDDI_FLIPINTERVAL_TYPE","features":[313]},{"name":"D3DDDI_GAMMARAMP_DEFAULT","features":[313]},{"name":"D3DDDI_GAMMARAMP_DXGI_1","features":[313]},{"name":"D3DDDI_GAMMARAMP_MATRIX_3x4","features":[313]},{"name":"D3DDDI_GAMMARAMP_MATRIX_V2","features":[313]},{"name":"D3DDDI_GAMMARAMP_RGB256x3x16","features":[313]},{"name":"D3DDDI_GAMMARAMP_TYPE","features":[313]},{"name":"D3DDDI_GAMMARAMP_UNINITIALIZED","features":[313]},{"name":"D3DDDI_GAMMA_RAMP_DXGI_1","features":[313]},{"name":"D3DDDI_GAMMA_RAMP_RGB256x3x16","features":[313]},{"name":"D3DDDI_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[313]},{"name":"D3DDDI_HDR_METADATA_HDR10","features":[313]},{"name":"D3DDDI_HDR_METADATA_HDR10PLUS","features":[313]},{"name":"D3DDDI_HDR_METADATA_TYPE","features":[313]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10","features":[313]},{"name":"D3DDDI_HDR_METADATA_TYPE_HDR10PLUS","features":[313]},{"name":"D3DDDI_HDR_METADATA_TYPE_NONE","features":[313]},{"name":"D3DDDI_KERNELOVERLAYINFO","features":[313]},{"name":"D3DDDI_MAKERESIDENT","features":[313]},{"name":"D3DDDI_MAKERESIDENT_FLAGS","features":[313]},{"name":"D3DDDI_MAPGPUVIRTUALADDRESS","features":[313]},{"name":"D3DDDI_MAX_BROADCAST_CONTEXT","features":[313]},{"name":"D3DDDI_MAX_MPO_PRESENT_DIRTY_RECTS","features":[313]},{"name":"D3DDDI_MAX_OBJECT_SIGNALED","features":[313]},{"name":"D3DDDI_MAX_OBJECT_WAITED_ON","features":[313]},{"name":"D3DDDI_MAX_WRITTEN_PRIMARIES","features":[313]},{"name":"D3DDDI_MONITORED_FENCE","features":[313]},{"name":"D3DDDI_MULTISAMPLINGMETHOD","features":[313]},{"name":"D3DDDI_NATIVEFENCEMAPPING","features":[313]},{"name":"D3DDDI_OFFER_FLAGS","features":[313]},{"name":"D3DDDI_OFFER_PRIORITY","features":[313]},{"name":"D3DDDI_OFFER_PRIORITY_AUTO","features":[313]},{"name":"D3DDDI_OFFER_PRIORITY_HIGH","features":[313]},{"name":"D3DDDI_OFFER_PRIORITY_LOW","features":[313]},{"name":"D3DDDI_OFFER_PRIORITY_NONE","features":[313]},{"name":"D3DDDI_OFFER_PRIORITY_NORMAL","features":[313]},{"name":"D3DDDI_OPENALLOCATIONINFO","features":[313]},{"name":"D3DDDI_OPENALLOCATIONINFO2","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[313]},{"name":"D3DDDI_OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[313]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY","features":[313]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_ABOVE_NORMAL","features":[313]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_BELOW_NORMAL","features":[313]},{"name":"D3DDDI_PAGINGQUEUE_PRIORITY_NORMAL","features":[313]},{"name":"D3DDDI_PATCHLOCATIONLIST","features":[313]},{"name":"D3DDDI_PERIODIC_MONITORED_FENCE","features":[313]},{"name":"D3DDDI_POOL","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_ADAPTERKEY","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERIMAGEPATH","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_DRIVERSTOREPATH","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_FLAGS","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_INFO","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_MAX","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_SERVICEKEY","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_STATUS","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_BUFFER_OVERFLOW","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_FAIL","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_MAX","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_STATUS_SUCCESS","features":[313]},{"name":"D3DDDI_QUERYREGISTRY_TYPE","features":[313]},{"name":"D3DDDI_RATIONAL","features":[313]},{"name":"D3DDDI_RECLAIM_RESULT","features":[313]},{"name":"D3DDDI_RECLAIM_RESULT_DISCARDED","features":[313]},{"name":"D3DDDI_RECLAIM_RESULT_NOT_COMMITTED","features":[313]},{"name":"D3DDDI_RECLAIM_RESULT_OK","features":[313]},{"name":"D3DDDI_RESERVEGPUVIRTUALADDRESS","features":[313]},{"name":"D3DDDI_RESOURCEFLAGS","features":[313]},{"name":"D3DDDI_RESOURCEFLAGS2","features":[313]},{"name":"D3DDDI_ROTATION","features":[313]},{"name":"D3DDDI_ROTATION_180","features":[313]},{"name":"D3DDDI_ROTATION_270","features":[313]},{"name":"D3DDDI_ROTATION_90","features":[313]},{"name":"D3DDDI_ROTATION_IDENTITY","features":[313]},{"name":"D3DDDI_SCANLINEORDERING","features":[313]},{"name":"D3DDDI_SCANLINEORDERING_INTERLACED","features":[313]},{"name":"D3DDDI_SCANLINEORDERING_PROGRESSIVE","features":[313]},{"name":"D3DDDI_SCANLINEORDERING_UNKNOWN","features":[313]},{"name":"D3DDDI_SEGMENTPREFERENCE","features":[313]},{"name":"D3DDDI_SEMAPHORE","features":[313]},{"name":"D3DDDI_SURFACEINFO","features":[313]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO","features":[313,305]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECTINFO2","features":[313,305]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_FLAGS","features":[313]},{"name":"D3DDDI_SYNCHRONIZATIONOBJECT_TYPE","features":[313]},{"name":"D3DDDI_SYNCHRONIZATION_MUTEX","features":[313]},{"name":"D3DDDI_SYNCHRONIZATION_TYPE_LIMIT","features":[313]},{"name":"D3DDDI_SYNC_OBJECT_SIGNAL","features":[313]},{"name":"D3DDDI_SYNC_OBJECT_WAIT","features":[313]},{"name":"D3DDDI_TRIMRESIDENCYSET_FLAGS","features":[313]},{"name":"D3DDDI_UPDATEALLOCPROPERTY","features":[313]},{"name":"D3DDDI_UPDATEALLOCPROPERTY_FLAGS","features":[313]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_COPY","features":[313]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP","features":[313]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_MAP_PROTECT","features":[313]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION","features":[313]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_OPERATION_TYPE","features":[313]},{"name":"D3DDDI_UPDATEGPUVIRTUALADDRESS_UNMAP","features":[313]},{"name":"D3DDDI_VIDEO_SIGNAL_SCANLINE_ORDERING","features":[313]},{"name":"D3DDDI_VSSLO_INTERLACED_LOWERFIELDFIRST","features":[313]},{"name":"D3DDDI_VSSLO_INTERLACED_UPPERFIELDFIRST","features":[313]},{"name":"D3DDDI_VSSLO_OTHER","features":[313]},{"name":"D3DDDI_VSSLO_PROGRESSIVE","features":[313]},{"name":"D3DDDI_VSSLO_UNINITIALIZED","features":[313]},{"name":"D3DDDI_WAITFORSYNCHRONIZATIONOBJECTFROMCPU_FLAGS","features":[313]},{"name":"D3DDEVCAPS_HWINDEXBUFFER","features":[313]},{"name":"D3DDEVCAPS_HWVERTEXBUFFER","features":[313]},{"name":"D3DDEVCAPS_SUBVOLUMELOCK","features":[313]},{"name":"D3DDEVICEDESC_V1","features":[313,305,314]},{"name":"D3DDEVICEDESC_V2","features":[313,305,314]},{"name":"D3DDEVICEDESC_V3","features":[313,305,314]},{"name":"D3DDEVINFOID_VCACHE","features":[313]},{"name":"D3DDP2OP_ADDDIRTYBOX","features":[313]},{"name":"D3DDP2OP_ADDDIRTYRECT","features":[313]},{"name":"D3DDP2OP_BLT","features":[313]},{"name":"D3DDP2OP_BUFFERBLT","features":[313]},{"name":"D3DDP2OP_CLEAR","features":[313]},{"name":"D3DDP2OP_CLIPPEDTRIANGLEFAN","features":[313]},{"name":"D3DDP2OP_COLORFILL","features":[313]},{"name":"D3DDP2OP_COMPOSERECTS","features":[313]},{"name":"D3DDP2OP_CREATELIGHT","features":[313]},{"name":"D3DDP2OP_CREATEPIXELSHADER","features":[313]},{"name":"D3DDP2OP_CREATEQUERY","features":[313]},{"name":"D3DDP2OP_CREATEVERTEXSHADER","features":[313]},{"name":"D3DDP2OP_CREATEVERTEXSHADERDECL","features":[313]},{"name":"D3DDP2OP_CREATEVERTEXSHADERFUNC","features":[313]},{"name":"D3DDP2OP_DELETEPIXELSHADER","features":[313]},{"name":"D3DDP2OP_DELETEQUERY","features":[313]},{"name":"D3DDP2OP_DELETEVERTEXSHADER","features":[313]},{"name":"D3DDP2OP_DELETEVERTEXSHADERDECL","features":[313]},{"name":"D3DDP2OP_DELETEVERTEXSHADERFUNC","features":[313]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE","features":[313]},{"name":"D3DDP2OP_DRAWINDEXEDPRIMITIVE2","features":[313]},{"name":"D3DDP2OP_DRAWPRIMITIVE","features":[313]},{"name":"D3DDP2OP_DRAWPRIMITIVE2","features":[313]},{"name":"D3DDP2OP_DRAWRECTPATCH","features":[313]},{"name":"D3DDP2OP_DRAWTRIPATCH","features":[313]},{"name":"D3DDP2OP_GENERATEMIPSUBLEVELS","features":[313]},{"name":"D3DDP2OP_INDEXEDLINELIST","features":[313]},{"name":"D3DDP2OP_INDEXEDLINELIST2","features":[313]},{"name":"D3DDP2OP_INDEXEDLINESTRIP","features":[313]},{"name":"D3DDP2OP_INDEXEDTRIANGLEFAN","features":[313]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST","features":[313]},{"name":"D3DDP2OP_INDEXEDTRIANGLELIST2","features":[313]},{"name":"D3DDP2OP_INDEXEDTRIANGLESTRIP","features":[313]},{"name":"D3DDP2OP_ISSUEQUERY","features":[313]},{"name":"D3DDP2OP_LINELIST","features":[313]},{"name":"D3DDP2OP_LINELIST_IMM","features":[313]},{"name":"D3DDP2OP_LINESTRIP","features":[313]},{"name":"D3DDP2OP_MULTIPLYTRANSFORM","features":[313]},{"name":"D3DDP2OP_POINTS","features":[313]},{"name":"D3DDP2OP_RENDERSTATE","features":[313]},{"name":"D3DDP2OP_RESPONSECONTINUE","features":[313]},{"name":"D3DDP2OP_RESPONSEQUERY","features":[313]},{"name":"D3DDP2OP_SETCLIPPLANE","features":[313]},{"name":"D3DDP2OP_SETCONVOLUTIONKERNELMONO","features":[313]},{"name":"D3DDP2OP_SETDEPTHSTENCIL","features":[313]},{"name":"D3DDP2OP_SETINDICES","features":[313]},{"name":"D3DDP2OP_SETLIGHT","features":[313]},{"name":"D3DDP2OP_SETMATERIAL","features":[313]},{"name":"D3DDP2OP_SETPALETTE","features":[313]},{"name":"D3DDP2OP_SETPIXELSHADER","features":[313]},{"name":"D3DDP2OP_SETPIXELSHADERCONST","features":[313]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTB","features":[313]},{"name":"D3DDP2OP_SETPIXELSHADERCONSTI","features":[313]},{"name":"D3DDP2OP_SETPRIORITY","features":[313]},{"name":"D3DDP2OP_SETRENDERTARGET","features":[313]},{"name":"D3DDP2OP_SETRENDERTARGET2","features":[313]},{"name":"D3DDP2OP_SETSCISSORRECT","features":[313]},{"name":"D3DDP2OP_SETSTREAMSOURCE","features":[313]},{"name":"D3DDP2OP_SETSTREAMSOURCE2","features":[313]},{"name":"D3DDP2OP_SETSTREAMSOURCEFREQ","features":[313]},{"name":"D3DDP2OP_SETSTREAMSOURCEUM","features":[313]},{"name":"D3DDP2OP_SETTEXLOD","features":[313]},{"name":"D3DDP2OP_SETTRANSFORM","features":[313]},{"name":"D3DDP2OP_SETVERTEXSHADER","features":[313]},{"name":"D3DDP2OP_SETVERTEXSHADERCONST","features":[313]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTB","features":[313]},{"name":"D3DDP2OP_SETVERTEXSHADERCONSTI","features":[313]},{"name":"D3DDP2OP_SETVERTEXSHADERDECL","features":[313]},{"name":"D3DDP2OP_SETVERTEXSHADERFUNC","features":[313]},{"name":"D3DDP2OP_STATESET","features":[313]},{"name":"D3DDP2OP_SURFACEBLT","features":[313]},{"name":"D3DDP2OP_TEXBLT","features":[313]},{"name":"D3DDP2OP_TEXTURESTAGESTATE","features":[313]},{"name":"D3DDP2OP_TRIANGLEFAN","features":[313]},{"name":"D3DDP2OP_TRIANGLEFAN_IMM","features":[313]},{"name":"D3DDP2OP_TRIANGLELIST","features":[313]},{"name":"D3DDP2OP_TRIANGLESTRIP","features":[313]},{"name":"D3DDP2OP_UPDATEPALETTE","features":[313]},{"name":"D3DDP2OP_VIEWPORTINFO","features":[313]},{"name":"D3DDP2OP_VOLUMEBLT","features":[313]},{"name":"D3DDP2OP_WINFO","features":[313]},{"name":"D3DDP2OP_ZRANGE","features":[313]},{"name":"D3DFVF_FOG","features":[313]},{"name":"D3DGDI2_MAGIC","features":[313]},{"name":"D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[313]},{"name":"D3DGDI2_TYPE_DEFER_AGP_FREES","features":[313]},{"name":"D3DGDI2_TYPE_DXVERSION","features":[313]},{"name":"D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[313]},{"name":"D3DGDI2_TYPE_GETADAPTERGROUP","features":[313]},{"name":"D3DGDI2_TYPE_GETD3DCAPS8","features":[313]},{"name":"D3DGDI2_TYPE_GETD3DCAPS9","features":[313]},{"name":"D3DGDI2_TYPE_GETD3DQUERY","features":[313]},{"name":"D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[313]},{"name":"D3DGDI2_TYPE_GETDDIVERSION","features":[313]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODE","features":[313]},{"name":"D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[313]},{"name":"D3DGDI2_TYPE_GETFORMAT","features":[313]},{"name":"D3DGDI2_TYPE_GETFORMATCOUNT","features":[313]},{"name":"D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[313]},{"name":"D3DGPU_NULL","features":[313]},{"name":"D3DGPU_PHYSICAL_ADDRESS","features":[313]},{"name":"D3DHAL2_CB32_CLEAR","features":[313]},{"name":"D3DHAL2_CB32_DRAWONEINDEXEDPRIMITIVE","features":[313]},{"name":"D3DHAL2_CB32_DRAWONEPRIMITIVE","features":[313]},{"name":"D3DHAL2_CB32_DRAWPRIMITIVES","features":[313]},{"name":"D3DHAL2_CB32_SETRENDERTARGET","features":[313]},{"name":"D3DHAL3_CB32_CLEAR2","features":[313]},{"name":"D3DHAL3_CB32_DRAWPRIMITIVES2","features":[313]},{"name":"D3DHAL3_CB32_RESERVED","features":[313]},{"name":"D3DHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[313]},{"name":"D3DHALDP2_EXECUTEBUFFER","features":[313]},{"name":"D3DHALDP2_REQCOMMANDBUFSIZE","features":[313]},{"name":"D3DHALDP2_REQVERTEXBUFSIZE","features":[313]},{"name":"D3DHALDP2_SWAPCOMMANDBUFFER","features":[313]},{"name":"D3DHALDP2_SWAPVERTEXBUFFER","features":[313]},{"name":"D3DHALDP2_USERMEMVERTICES","features":[313]},{"name":"D3DHALDP2_VIDMEMCOMMANDBUF","features":[313]},{"name":"D3DHALDP2_VIDMEMVERTEXBUF","features":[313]},{"name":"D3DHALSTATE_GET_LIGHT","features":[313]},{"name":"D3DHALSTATE_GET_RENDER","features":[313]},{"name":"D3DHALSTATE_GET_TRANSFORM","features":[313]},{"name":"D3DHAL_CALLBACKS","features":[313,305,314,315,316]},{"name":"D3DHAL_CALLBACKS2","features":[313,305,314,315,316]},{"name":"D3DHAL_CALLBACKS3","features":[313,305,314,315,316]},{"name":"D3DHAL_CLEAR2DATA","features":[313,314]},{"name":"D3DHAL_CLEARDATA","features":[313,314]},{"name":"D3DHAL_CLIPPEDTRIANGLEFAN","features":[313]},{"name":"D3DHAL_COL_WEIGHTS","features":[313]},{"name":"D3DHAL_CONTEXTCREATEDATA","features":[313,305,315,316]},{"name":"D3DHAL_CONTEXTDESTROYALLDATA","features":[313]},{"name":"D3DHAL_CONTEXTDESTROYDATA","features":[313]},{"name":"D3DHAL_CONTEXT_BAD","features":[313]},{"name":"D3DHAL_D3DDX6EXTENDEDCAPS","features":[313]},{"name":"D3DHAL_D3DEXTENDEDCAPS","features":[313]},{"name":"D3DHAL_DP2ADDDIRTYBOX","features":[313,314]},{"name":"D3DHAL_DP2ADDDIRTYRECT","features":[313,305]},{"name":"D3DHAL_DP2BLT","features":[313,305]},{"name":"D3DHAL_DP2BUFFERBLT","features":[313,314]},{"name":"D3DHAL_DP2CLEAR","features":[313,305]},{"name":"D3DHAL_DP2COLORFILL","features":[313,305]},{"name":"D3DHAL_DP2COMMAND","features":[313]},{"name":"D3DHAL_DP2COMPOSERECTS","features":[313,314]},{"name":"D3DHAL_DP2CREATELIGHT","features":[313]},{"name":"D3DHAL_DP2CREATEPIXELSHADER","features":[313]},{"name":"D3DHAL_DP2CREATEQUERY","features":[313,314]},{"name":"D3DHAL_DP2CREATEVERTEXSHADER","features":[313]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERDECL","features":[313]},{"name":"D3DHAL_DP2CREATEVERTEXSHADERFUNC","features":[313]},{"name":"D3DHAL_DP2DELETEQUERY","features":[313]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE","features":[313,314]},{"name":"D3DHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[313,314]},{"name":"D3DHAL_DP2DRAWPRIMITIVE","features":[313,314]},{"name":"D3DHAL_DP2DRAWPRIMITIVE2","features":[313,314]},{"name":"D3DHAL_DP2DRAWRECTPATCH","features":[313]},{"name":"D3DHAL_DP2DRAWTRIPATCH","features":[313]},{"name":"D3DHAL_DP2EXT","features":[313]},{"name":"D3DHAL_DP2GENERATEMIPSUBLEVELS","features":[313,314]},{"name":"D3DHAL_DP2INDEXEDLINELIST","features":[313]},{"name":"D3DHAL_DP2INDEXEDLINESTRIP","features":[313]},{"name":"D3DHAL_DP2INDEXEDTRIANGLEFAN","features":[313]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST","features":[313]},{"name":"D3DHAL_DP2INDEXEDTRIANGLELIST2","features":[313]},{"name":"D3DHAL_DP2INDEXEDTRIANGLESTRIP","features":[313]},{"name":"D3DHAL_DP2ISSUEQUERY","features":[313]},{"name":"D3DHAL_DP2LINELIST","features":[313]},{"name":"D3DHAL_DP2LINESTRIP","features":[313]},{"name":"D3DHAL_DP2MULTIPLYTRANSFORM","features":[68,313,314]},{"name":"D3DHAL_DP2OPERATION","features":[313]},{"name":"D3DHAL_DP2PIXELSHADER","features":[313]},{"name":"D3DHAL_DP2POINTS","features":[313]},{"name":"D3DHAL_DP2RENDERSTATE","features":[313,314]},{"name":"D3DHAL_DP2RESPONSE","features":[313]},{"name":"D3DHAL_DP2RESPONSEQUERY","features":[313]},{"name":"D3DHAL_DP2SETCLIPPLANE","features":[313]},{"name":"D3DHAL_DP2SETCONVOLUTIONKERNELMONO","features":[313]},{"name":"D3DHAL_DP2SETDEPTHSTENCIL","features":[313]},{"name":"D3DHAL_DP2SETINDICES","features":[313]},{"name":"D3DHAL_DP2SETLIGHT","features":[313]},{"name":"D3DHAL_DP2SETPALETTE","features":[313]},{"name":"D3DHAL_DP2SETPIXELSHADERCONST","features":[313]},{"name":"D3DHAL_DP2SETPRIORITY","features":[313]},{"name":"D3DHAL_DP2SETRENDERTARGET","features":[313]},{"name":"D3DHAL_DP2SETRENDERTARGET2","features":[313]},{"name":"D3DHAL_DP2SETSTREAMSOURCE","features":[313]},{"name":"D3DHAL_DP2SETSTREAMSOURCE2","features":[313]},{"name":"D3DHAL_DP2SETSTREAMSOURCEFREQ","features":[313]},{"name":"D3DHAL_DP2SETSTREAMSOURCEUM","features":[313]},{"name":"D3DHAL_DP2SETTEXLOD","features":[313]},{"name":"D3DHAL_DP2SETTRANSFORM","features":[68,313,314]},{"name":"D3DHAL_DP2SETVERTEXSHADERCONST","features":[313]},{"name":"D3DHAL_DP2STARTVERTEX","features":[313]},{"name":"D3DHAL_DP2STATESET","features":[313,314]},{"name":"D3DHAL_DP2SURFACEBLT","features":[313,305]},{"name":"D3DHAL_DP2TEXBLT","features":[313,305]},{"name":"D3DHAL_DP2TEXTURESTAGESTATE","features":[313]},{"name":"D3DHAL_DP2TRIANGLEFAN","features":[313]},{"name":"D3DHAL_DP2TRIANGLEFAN_IMM","features":[313]},{"name":"D3DHAL_DP2TRIANGLELIST","features":[313]},{"name":"D3DHAL_DP2TRIANGLESTRIP","features":[313]},{"name":"D3DHAL_DP2UPDATEPALETTE","features":[313]},{"name":"D3DHAL_DP2VERTEXSHADER","features":[313]},{"name":"D3DHAL_DP2VIEWPORTINFO","features":[313]},{"name":"D3DHAL_DP2VOLUMEBLT","features":[313,314]},{"name":"D3DHAL_DP2WINFO","features":[313]},{"name":"D3DHAL_DP2ZRANGE","features":[313]},{"name":"D3DHAL_DRAWONEINDEXEDPRIMITIVEDATA","features":[313,314]},{"name":"D3DHAL_DRAWONEPRIMITIVEDATA","features":[313,314]},{"name":"D3DHAL_DRAWPRIMCOUNTS","features":[313]},{"name":"D3DHAL_DRAWPRIMITIVES2DATA","features":[313,305,315,316]},{"name":"D3DHAL_DRAWPRIMITIVESDATA","features":[313]},{"name":"D3DHAL_EXECUTE_ABORT","features":[313]},{"name":"D3DHAL_EXECUTE_NORMAL","features":[313]},{"name":"D3DHAL_EXECUTE_OVERRIDE","features":[313]},{"name":"D3DHAL_EXECUTE_UNHANDLED","features":[313]},{"name":"D3DHAL_GETSTATEDATA","features":[313,314]},{"name":"D3DHAL_GLOBALDRIVERDATA","features":[313,305,314,315]},{"name":"D3DHAL_MAX_RSTATES","features":[313]},{"name":"D3DHAL_MAX_RSTATES_DX6","features":[313]},{"name":"D3DHAL_MAX_RSTATES_DX7","features":[313]},{"name":"D3DHAL_MAX_RSTATES_DX8","features":[313]},{"name":"D3DHAL_MAX_RSTATES_DX9","features":[313]},{"name":"D3DHAL_MAX_TEXTURESTATES","features":[313]},{"name":"D3DHAL_NUMCLIPVERTICES","features":[313]},{"name":"D3DHAL_OUTOFCONTEXTS","features":[313]},{"name":"D3DHAL_RENDERPRIMITIVEDATA","features":[313,314,315]},{"name":"D3DHAL_RENDERSTATEDATA","features":[313,315]},{"name":"D3DHAL_ROW_WEIGHTS","features":[313]},{"name":"D3DHAL_SAMPLER_MAXSAMP","features":[313]},{"name":"D3DHAL_SAMPLER_MAXVERTEXSAMP","features":[313]},{"name":"D3DHAL_SCENECAPTUREDATA","features":[313]},{"name":"D3DHAL_SCENE_CAPTURE_END","features":[313]},{"name":"D3DHAL_SCENE_CAPTURE_START","features":[313]},{"name":"D3DHAL_SETLIGHT_DATA","features":[313]},{"name":"D3DHAL_SETLIGHT_DISABLE","features":[313]},{"name":"D3DHAL_SETLIGHT_ENABLE","features":[313]},{"name":"D3DHAL_SETRENDERTARGETDATA","features":[313,305,315,316]},{"name":"D3DHAL_STATESETBEGIN","features":[313]},{"name":"D3DHAL_STATESETCAPTURE","features":[313]},{"name":"D3DHAL_STATESETCREATE","features":[313]},{"name":"D3DHAL_STATESETDELETE","features":[313]},{"name":"D3DHAL_STATESETEND","features":[313]},{"name":"D3DHAL_STATESETEXECUTE","features":[313]},{"name":"D3DHAL_TEXTURECREATEDATA","features":[313,315]},{"name":"D3DHAL_TEXTUREDESTROYDATA","features":[313]},{"name":"D3DHAL_TEXTUREGETSURFDATA","features":[313]},{"name":"D3DHAL_TEXTURESTATEBUF_SIZE","features":[313]},{"name":"D3DHAL_TEXTURESWAPDATA","features":[313]},{"name":"D3DHAL_TSS_MAXSTAGES","features":[313]},{"name":"D3DHAL_TSS_RENDERSTATEBASE","features":[313]},{"name":"D3DHAL_TSS_STATESPERSTAGE","features":[313]},{"name":"D3DHAL_VALIDATETEXTURESTAGESTATEDATA","features":[313]},{"name":"D3DINFINITEINSTRUCTIONS","features":[313]},{"name":"D3DKMDT_2DREGION","features":[313]},{"name":"D3DKMDT_3x4_COLORSPACE_TRANSFORM","features":[313]},{"name":"D3DKMDT_BITS_PER_COMPONENT_06","features":[313]},{"name":"D3DKMDT_BITS_PER_COMPONENT_08","features":[313]},{"name":"D3DKMDT_BITS_PER_COMPONENT_10","features":[313]},{"name":"D3DKMDT_BITS_PER_COMPONENT_12","features":[313]},{"name":"D3DKMDT_BITS_PER_COMPONENT_14","features":[313]},{"name":"D3DKMDT_BITS_PER_COMPONENT_16","features":[313]},{"name":"D3DKMDT_CB_INTENSITY","features":[313]},{"name":"D3DKMDT_CB_SCRGB","features":[313]},{"name":"D3DKMDT_CB_SRGB","features":[313]},{"name":"D3DKMDT_CB_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_CB_YCBCR","features":[313]},{"name":"D3DKMDT_CB_YPBPR","features":[313]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_MATRIX_V2","features":[313]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[313]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_BYPASS","features":[313]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_ENABLE","features":[313]},{"name":"D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL_NO_CHANGE","features":[313]},{"name":"D3DKMDT_COLOR_BASIS","features":[313]},{"name":"D3DKMDT_COLOR_COEFF_DYNAMIC_RANGES","features":[313]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DISPATCH_BOUNDARY","features":[313]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[313]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_GRANULARITY","features":[313]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_NONE","features":[313]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_SHADER_BOUNDARY","features":[313]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_BOUNDARY","features":[313]},{"name":"D3DKMDT_COMPUTE_PREEMPTION_THREAD_GROUP_BOUNDARY","features":[313]},{"name":"D3DKMDT_DISPLAYMODE_FLAGS","features":[313]},{"name":"D3DKMDT_ENUMCOFUNCMODALITY_PIVOT_TYPE","features":[313]},{"name":"D3DKMDT_EPT_NOPIVOT","features":[313]},{"name":"D3DKMDT_EPT_ROTATION","features":[313]},{"name":"D3DKMDT_EPT_SCALING","features":[313]},{"name":"D3DKMDT_EPT_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_EPT_VIDPNSOURCE","features":[313]},{"name":"D3DKMDT_EPT_VIDPNTARGET","features":[313]},{"name":"D3DKMDT_FREQUENCY_RANGE","features":[313]},{"name":"D3DKMDT_GAMMA_RAMP","features":[313]},{"name":"D3DKMDT_GDISURFACEDATA","features":[313]},{"name":"D3DKMDT_GDISURFACEFLAGS","features":[313]},{"name":"D3DKMDT_GDISURFACETYPE","features":[313]},{"name":"D3DKMDT_GDISURFACE_EXISTINGSYSMEM","features":[313]},{"name":"D3DKMDT_GDISURFACE_INVALID","features":[313]},{"name":"D3DKMDT_GDISURFACE_LOOKUPTABLE","features":[313]},{"name":"D3DKMDT_GDISURFACE_STAGING","features":[313]},{"name":"D3DKMDT_GDISURFACE_STAGING_CPUVISIBLE","features":[313]},{"name":"D3DKMDT_GDISURFACE_TEXTURE","features":[313]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE","features":[313]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CPUVISIBLE_CROSSADAPTER","features":[313]},{"name":"D3DKMDT_GDISURFACE_TEXTURE_CROSSADAPTER","features":[313]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[313]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_GRANULARITY","features":[313]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_NONE","features":[313]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PIXEL_BOUNDARY","features":[313]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_PRIMITIVE_BOUNDARY","features":[313]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_SHADER_BOUNDARY","features":[313]},{"name":"D3DKMDT_GRAPHICS_PREEMPTION_TRIANGLE_BOUNDARY","features":[313]},{"name":"D3DKMDT_GRAPHICS_RENDERING_FORMAT","features":[313]},{"name":"D3DKMDT_GTFCOMPLIANCE","features":[313]},{"name":"D3DKMDT_GTF_COMPLIANT","features":[313]},{"name":"D3DKMDT_GTF_NOTCOMPLIANT","features":[313]},{"name":"D3DKMDT_GTF_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MACROVISION_OEMCOPYPROTECTION_SIZE","features":[313]},{"name":"D3DKMDT_MAX_OVERLAYS_BITCOUNT","features":[313]},{"name":"D3DKMDT_MAX_VIDPN_SOURCES_BITCOUNT","features":[313]},{"name":"D3DKMDT_MCC_ENFORCE","features":[313]},{"name":"D3DKMDT_MCC_IGNORE","features":[313]},{"name":"D3DKMDT_MCC_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MCO_DEFAULTMONITORPROFILE","features":[313]},{"name":"D3DKMDT_MCO_DRIVER","features":[313]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR","features":[313]},{"name":"D3DKMDT_MCO_MONITORDESCRIPTOR_REGISTRYOVERRIDE","features":[313]},{"name":"D3DKMDT_MCO_SPECIFICCAP_REGISTRYOVERRIDE","features":[313]},{"name":"D3DKMDT_MCO_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MDT_OTHER","features":[313]},{"name":"D3DKMDT_MDT_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BASEBLOCK","features":[313]},{"name":"D3DKMDT_MDT_VESA_EDID_V1_BLOCKMAP","features":[313]},{"name":"D3DKMDT_MFRC_ACTIVESIZE","features":[313]},{"name":"D3DKMDT_MFRC_MAXPIXELRATE","features":[313]},{"name":"D3DKMDT_MFRC_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MOA_INTERRUPTIBLE","features":[313]},{"name":"D3DKMDT_MOA_NONE","features":[313]},{"name":"D3DKMDT_MOA_POLLED","features":[313]},{"name":"D3DKMDT_MOA_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MODE_PREFERENCE","features":[313]},{"name":"D3DKMDT_MODE_PRUNING_REASON","features":[313]},{"name":"D3DKMDT_MONITOR_CAPABILITIES_ORIGIN","features":[313]},{"name":"D3DKMDT_MONITOR_CONNECTIVITY_CHECKS","features":[313]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR","features":[313]},{"name":"D3DKMDT_MONITOR_DESCRIPTOR_TYPE","features":[313]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE","features":[313]},{"name":"D3DKMDT_MONITOR_FREQUENCY_RANGE_CONSTRAINT","features":[313]},{"name":"D3DKMDT_MONITOR_ORIENTATION","features":[313]},{"name":"D3DKMDT_MONITOR_ORIENTATION_AWARENESS","features":[313]},{"name":"D3DKMDT_MONITOR_SOURCE_MODE","features":[313]},{"name":"D3DKMDT_MONITOR_TIMING_TYPE","features":[313]},{"name":"D3DKMDT_MO_0DEG","features":[313]},{"name":"D3DKMDT_MO_180DEG","features":[313]},{"name":"D3DKMDT_MO_270DEG","features":[313]},{"name":"D3DKMDT_MO_90DEG","features":[313]},{"name":"D3DKMDT_MO_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MPR_ALLCAPS","features":[313]},{"name":"D3DKMDT_MPR_CLONE_PATH_PRUNED","features":[313]},{"name":"D3DKMDT_MPR_DEFAULT_PROFILE_MONITOR_SOURCE_MODE","features":[313]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_FREQUENCY_RANGE","features":[313]},{"name":"D3DKMDT_MPR_DESCRIPTOR_MONITOR_SOURCE_MODE","features":[313]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_FREQUENCY_RANGE","features":[313]},{"name":"D3DKMDT_MPR_DESCRIPTOR_OVERRIDE_MONITOR_SOURCE_MODE","features":[313]},{"name":"D3DKMDT_MPR_DRIVER_RECOMMENDED_MONITOR_SOURCE_MODE","features":[313]},{"name":"D3DKMDT_MPR_MAXVALID","features":[313]},{"name":"D3DKMDT_MPR_MONITOR_FREQUENCY_RANGE_OVERRIDE","features":[313]},{"name":"D3DKMDT_MPR_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MP_NOTPREFERRED","features":[313]},{"name":"D3DKMDT_MP_PREFERRED","features":[313]},{"name":"D3DKMDT_MP_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_MTT_DEFAULTMONITORPROFILE","features":[313]},{"name":"D3DKMDT_MTT_DETAILED","features":[313]},{"name":"D3DKMDT_MTT_DRIVER","features":[313]},{"name":"D3DKMDT_MTT_ESTABLISHED","features":[313]},{"name":"D3DKMDT_MTT_EXTRASTANDARD","features":[313]},{"name":"D3DKMDT_MTT_STANDARD","features":[313]},{"name":"D3DKMDT_MTT_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_PALETTEDATA","features":[313]},{"name":"D3DKMDT_PIXEL_VALUE_ACCESS_MODE","features":[313]},{"name":"D3DKMDT_PREEMPTION_CAPS","features":[313]},{"name":"D3DKMDT_PVAM_DIRECT","features":[313]},{"name":"D3DKMDT_PVAM_PRESETPALETTE","features":[313]},{"name":"D3DKMDT_PVAM_SETTABLEPALETTE","features":[313]},{"name":"D3DKMDT_PVAM_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_RMT_GRAPHICS","features":[313]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO","features":[313]},{"name":"D3DKMDT_RMT_GRAPHICS_STEREO_ADVANCED_SCAN","features":[313]},{"name":"D3DKMDT_RMT_TEXT","features":[313]},{"name":"D3DKMDT_RMT_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_SHADOWSURFACEDATA","features":[313]},{"name":"D3DKMDT_SHAREDPRIMARYSURFACEDATA","features":[313]},{"name":"D3DKMDT_STAGINGSURFACEDATA","features":[313]},{"name":"D3DKMDT_STANDARDALLOCATION_GDISURFACE","features":[313]},{"name":"D3DKMDT_STANDARDALLOCATION_SHADOWSURFACE","features":[313]},{"name":"D3DKMDT_STANDARDALLOCATION_SHAREDPRIMARYSURFACE","features":[313]},{"name":"D3DKMDT_STANDARDALLOCATION_STAGINGSURFACE","features":[313]},{"name":"D3DKMDT_STANDARDALLOCATION_TYPE","features":[313]},{"name":"D3DKMDT_STANDARDALLOCATION_VGPU","features":[313]},{"name":"D3DKMDT_TEXT_RENDERING_FORMAT","features":[313]},{"name":"D3DKMDT_TRF_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VIDEO_OUTPUT_TECHNOLOGY","features":[313]},{"name":"D3DKMDT_VIDEO_PRESENT_SOURCE","features":[313]},{"name":"D3DKMDT_VIDEO_PRESENT_TARGET","features":[313,305]},{"name":"D3DKMDT_VIDEO_SIGNAL_INFO","features":[313]},{"name":"D3DKMDT_VIDEO_SIGNAL_STANDARD","features":[313]},{"name":"D3DKMDT_VIDPN_HW_CAPABILITY","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_CONTENT","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_SUPPORT","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_COPYPROTECTION_TYPE","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_IMPORTANCE","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_ROTATION_SUPPORT","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_SCALING_SUPPORT","features":[313]},{"name":"D3DKMDT_VIDPN_PRESENT_PATH_TRANSFORMATION","features":[313]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE","features":[313]},{"name":"D3DKMDT_VIDPN_SOURCE_MODE_TYPE","features":[313]},{"name":"D3DKMDT_VIDPN_TARGET_MODE","features":[313]},{"name":"D3DKMDT_VIRTUALGPUSURFACEDATA","features":[313]},{"name":"D3DKMDT_VOT_BNC","features":[313]},{"name":"D3DKMDT_VOT_COMPONENT_VIDEO","features":[313]},{"name":"D3DKMDT_VOT_COMPOSITE_VIDEO","features":[313]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EMBEDDED","features":[313]},{"name":"D3DKMDT_VOT_DISPLAYPORT_EXTERNAL","features":[313]},{"name":"D3DKMDT_VOT_DVI","features":[313]},{"name":"D3DKMDT_VOT_D_JPN","features":[313]},{"name":"D3DKMDT_VOT_HD15","features":[313]},{"name":"D3DKMDT_VOT_HDMI","features":[313]},{"name":"D3DKMDT_VOT_INDIRECT_WIRED","features":[313]},{"name":"D3DKMDT_VOT_INTERNAL","features":[313]},{"name":"D3DKMDT_VOT_LVDS","features":[313]},{"name":"D3DKMDT_VOT_MIRACAST","features":[313]},{"name":"D3DKMDT_VOT_OTHER","features":[313]},{"name":"D3DKMDT_VOT_RCA_3COMPONENT","features":[313]},{"name":"D3DKMDT_VOT_RF","features":[313]},{"name":"D3DKMDT_VOT_SDI","features":[313]},{"name":"D3DKMDT_VOT_SDTVDONGLE","features":[313]},{"name":"D3DKMDT_VOT_SVIDEO","features":[313]},{"name":"D3DKMDT_VOT_SVIDEO_4PIN","features":[313]},{"name":"D3DKMDT_VOT_SVIDEO_7PIN","features":[313]},{"name":"D3DKMDT_VOT_UDI_EMBEDDED","features":[313]},{"name":"D3DKMDT_VOT_UDI_EXTERNAL","features":[313]},{"name":"D3DKMDT_VOT_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VPPC_GRAPHICS","features":[313]},{"name":"D3DKMDT_VPPC_NOTSPECIFIED","features":[313]},{"name":"D3DKMDT_VPPC_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VPPC_VIDEO","features":[313]},{"name":"D3DKMDT_VPPI_DENARY","features":[313]},{"name":"D3DKMDT_VPPI_NONARY","features":[313]},{"name":"D3DKMDT_VPPI_OCTONARY","features":[313]},{"name":"D3DKMDT_VPPI_PRIMARY","features":[313]},{"name":"D3DKMDT_VPPI_QUATERNARY","features":[313]},{"name":"D3DKMDT_VPPI_QUINARY","features":[313]},{"name":"D3DKMDT_VPPI_SECONDARY","features":[313]},{"name":"D3DKMDT_VPPI_SENARY","features":[313]},{"name":"D3DKMDT_VPPI_SEPTENARY","features":[313]},{"name":"D3DKMDT_VPPI_TERTIARY","features":[313]},{"name":"D3DKMDT_VPPI_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VPPMT_MACROVISION_APSTRIGGER","features":[313]},{"name":"D3DKMDT_VPPMT_MACROVISION_FULLSUPPORT","features":[313]},{"name":"D3DKMDT_VPPMT_NOPROTECTION","features":[313]},{"name":"D3DKMDT_VPPMT_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VPPR_IDENTITY","features":[313]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET180","features":[313]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET270","features":[313]},{"name":"D3DKMDT_VPPR_IDENTITY_OFFSET90","features":[313]},{"name":"D3DKMDT_VPPR_NOTSPECIFIED","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE180","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET180","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET270","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE180_OFFSET90","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE270","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET180","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET270","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE270_OFFSET90","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE90","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET180","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET270","features":[313]},{"name":"D3DKMDT_VPPR_ROTATE90_OFFSET90","features":[313]},{"name":"D3DKMDT_VPPR_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VPPR_UNPINNED","features":[313]},{"name":"D3DKMDT_VPPS_ASPECTRATIOCENTEREDMAX","features":[313]},{"name":"D3DKMDT_VPPS_CENTERED","features":[313]},{"name":"D3DKMDT_VPPS_CUSTOM","features":[313]},{"name":"D3DKMDT_VPPS_IDENTITY","features":[313]},{"name":"D3DKMDT_VPPS_NOTSPECIFIED","features":[313]},{"name":"D3DKMDT_VPPS_RESERVED1","features":[313]},{"name":"D3DKMDT_VPPS_STRETCHED","features":[313]},{"name":"D3DKMDT_VPPS_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VPPS_UNPINNED","features":[313]},{"name":"D3DKMDT_VSS_APPLE","features":[313]},{"name":"D3DKMDT_VSS_EIA_861","features":[313]},{"name":"D3DKMDT_VSS_EIA_861A","features":[313]},{"name":"D3DKMDT_VSS_EIA_861B","features":[313]},{"name":"D3DKMDT_VSS_IBM","features":[313]},{"name":"D3DKMDT_VSS_NTSC_443","features":[313]},{"name":"D3DKMDT_VSS_NTSC_J","features":[313]},{"name":"D3DKMDT_VSS_NTSC_M","features":[313]},{"name":"D3DKMDT_VSS_OTHER","features":[313]},{"name":"D3DKMDT_VSS_PAL_B","features":[313]},{"name":"D3DKMDT_VSS_PAL_B1","features":[313]},{"name":"D3DKMDT_VSS_PAL_D","features":[313]},{"name":"D3DKMDT_VSS_PAL_G","features":[313]},{"name":"D3DKMDT_VSS_PAL_H","features":[313]},{"name":"D3DKMDT_VSS_PAL_I","features":[313]},{"name":"D3DKMDT_VSS_PAL_K","features":[313]},{"name":"D3DKMDT_VSS_PAL_K1","features":[313]},{"name":"D3DKMDT_VSS_PAL_L","features":[313]},{"name":"D3DKMDT_VSS_PAL_M","features":[313]},{"name":"D3DKMDT_VSS_PAL_N","features":[313]},{"name":"D3DKMDT_VSS_PAL_NC","features":[313]},{"name":"D3DKMDT_VSS_SECAM_B","features":[313]},{"name":"D3DKMDT_VSS_SECAM_D","features":[313]},{"name":"D3DKMDT_VSS_SECAM_G","features":[313]},{"name":"D3DKMDT_VSS_SECAM_H","features":[313]},{"name":"D3DKMDT_VSS_SECAM_K","features":[313]},{"name":"D3DKMDT_VSS_SECAM_K1","features":[313]},{"name":"D3DKMDT_VSS_SECAM_L","features":[313]},{"name":"D3DKMDT_VSS_SECAM_L1","features":[313]},{"name":"D3DKMDT_VSS_UNINITIALIZED","features":[313]},{"name":"D3DKMDT_VSS_VESA_CVT","features":[313]},{"name":"D3DKMDT_VSS_VESA_DMT","features":[313]},{"name":"D3DKMDT_VSS_VESA_GTF","features":[313]},{"name":"D3DKMDT_WIRE_FORMAT_AND_PREFERENCE","features":[313]},{"name":"D3DKMTAcquireKeyedMutex","features":[313,305]},{"name":"D3DKMTAcquireKeyedMutex2","features":[313,305]},{"name":"D3DKMTAdjustFullscreenGamma","features":[313,305]},{"name":"D3DKMTCancelPresents","features":[313,305]},{"name":"D3DKMTChangeSurfacePointer","features":[313,305,316]},{"name":"D3DKMTChangeVideoMemoryReservation","features":[313,305]},{"name":"D3DKMTCheckExclusiveOwnership","features":[313,305]},{"name":"D3DKMTCheckMonitorPowerState","features":[313,305]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport","features":[313,305]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport2","features":[313,305]},{"name":"D3DKMTCheckMultiPlaneOverlaySupport3","features":[313,305]},{"name":"D3DKMTCheckOcclusion","features":[313,305]},{"name":"D3DKMTCheckSharedResourceAccess","features":[313,305]},{"name":"D3DKMTCheckVidPnExclusiveOwnership","features":[313,305]},{"name":"D3DKMTCloseAdapter","features":[313,305]},{"name":"D3DKMTConfigureSharedResource","features":[313,305]},{"name":"D3DKMTCreateAllocation","features":[313,305]},{"name":"D3DKMTCreateAllocation2","features":[313,305]},{"name":"D3DKMTCreateContext","features":[313,305]},{"name":"D3DKMTCreateContextVirtual","features":[313,305]},{"name":"D3DKMTCreateDCFromMemory","features":[313,305,316]},{"name":"D3DKMTCreateDevice","features":[313,305]},{"name":"D3DKMTCreateHwContext","features":[313,305]},{"name":"D3DKMTCreateHwQueue","features":[313,305]},{"name":"D3DKMTCreateKeyedMutex","features":[313,305]},{"name":"D3DKMTCreateKeyedMutex2","features":[313,305]},{"name":"D3DKMTCreateOutputDupl","features":[313,305]},{"name":"D3DKMTCreateOverlay","features":[313,305]},{"name":"D3DKMTCreatePagingQueue","features":[313,305]},{"name":"D3DKMTCreateProtectedSession","features":[313,305]},{"name":"D3DKMTCreateSynchronizationObject","features":[313,305]},{"name":"D3DKMTCreateSynchronizationObject2","features":[313,305]},{"name":"D3DKMTDestroyAllocation","features":[313,305]},{"name":"D3DKMTDestroyAllocation2","features":[313,305]},{"name":"D3DKMTDestroyContext","features":[313,305]},{"name":"D3DKMTDestroyDCFromMemory","features":[313,305,316]},{"name":"D3DKMTDestroyDevice","features":[313,305]},{"name":"D3DKMTDestroyHwContext","features":[313,305]},{"name":"D3DKMTDestroyHwQueue","features":[313,305]},{"name":"D3DKMTDestroyKeyedMutex","features":[313,305]},{"name":"D3DKMTDestroyOutputDupl","features":[313,305]},{"name":"D3DKMTDestroyOverlay","features":[313,305]},{"name":"D3DKMTDestroyPagingQueue","features":[313,305]},{"name":"D3DKMTDestroyProtectedSession","features":[313,305]},{"name":"D3DKMTDestroySynchronizationObject","features":[313,305]},{"name":"D3DKMTEnumAdapters","features":[313,305]},{"name":"D3DKMTEnumAdapters2","features":[313,305]},{"name":"D3DKMTEnumAdapters3","features":[313,305]},{"name":"D3DKMTEscape","features":[313,305]},{"name":"D3DKMTEvict","features":[313,305]},{"name":"D3DKMTFlipOverlay","features":[313,305]},{"name":"D3DKMTFlushHeapTransitions","features":[313,305]},{"name":"D3DKMTFreeGpuVirtualAddress","features":[313,305]},{"name":"D3DKMTGetAllocationPriority","features":[313,305]},{"name":"D3DKMTGetContextInProcessSchedulingPriority","features":[313,305]},{"name":"D3DKMTGetContextSchedulingPriority","features":[313,305]},{"name":"D3DKMTGetDWMVerticalBlankEvent","features":[313,305]},{"name":"D3DKMTGetDeviceState","features":[313,305]},{"name":"D3DKMTGetDisplayModeList","features":[313,305]},{"name":"D3DKMTGetMultiPlaneOverlayCaps","features":[313,305]},{"name":"D3DKMTGetMultisampleMethodList","features":[313,305]},{"name":"D3DKMTGetOverlayState","features":[313,305]},{"name":"D3DKMTGetPostCompositionCaps","features":[313,305]},{"name":"D3DKMTGetPresentHistory","features":[313,305]},{"name":"D3DKMTGetPresentQueueEvent","features":[313,305]},{"name":"D3DKMTGetProcessDeviceRemovalSupport","features":[313,305]},{"name":"D3DKMTGetProcessSchedulingPriorityClass","features":[313,305]},{"name":"D3DKMTGetResourcePresentPrivateDriverData","features":[313,305]},{"name":"D3DKMTGetRuntimeData","features":[313,305]},{"name":"D3DKMTGetScanLine","features":[313,305]},{"name":"D3DKMTGetSharedPrimaryHandle","features":[313,305]},{"name":"D3DKMTGetSharedResourceAdapterLuid","features":[313,305]},{"name":"D3DKMTInvalidateActiveVidPn","features":[313,305]},{"name":"D3DKMTInvalidateCache","features":[313,305]},{"name":"D3DKMTLock","features":[313,305]},{"name":"D3DKMTLock2","features":[313,305]},{"name":"D3DKMTMakeResident","features":[313,305]},{"name":"D3DKMTMapGpuVirtualAddress","features":[313,305]},{"name":"D3DKMTMarkDeviceAsError","features":[313,305]},{"name":"D3DKMTOfferAllocations","features":[313,305]},{"name":"D3DKMTOpenAdapterFromDeviceName","features":[313,305]},{"name":"D3DKMTOpenAdapterFromGdiDisplayName","features":[313,305]},{"name":"D3DKMTOpenAdapterFromHdc","features":[313,305,316]},{"name":"D3DKMTOpenAdapterFromLuid","features":[313,305]},{"name":"D3DKMTOpenKeyedMutex","features":[313,305]},{"name":"D3DKMTOpenKeyedMutex2","features":[313,305]},{"name":"D3DKMTOpenKeyedMutexFromNtHandle","features":[313,305]},{"name":"D3DKMTOpenNtHandleFromName","features":[306,313,305]},{"name":"D3DKMTOpenProtectedSessionFromNtHandle","features":[313,305]},{"name":"D3DKMTOpenResource","features":[313,305]},{"name":"D3DKMTOpenResource2","features":[313,305]},{"name":"D3DKMTOpenResourceFromNtHandle","features":[313,305]},{"name":"D3DKMTOpenSyncObjectFromNtHandle","features":[313,305]},{"name":"D3DKMTOpenSyncObjectFromNtHandle2","features":[313,305]},{"name":"D3DKMTOpenSyncObjectNtHandleFromName","features":[306,313,305]},{"name":"D3DKMTOpenSynchronizationObject","features":[313,305]},{"name":"D3DKMTOutputDuplGetFrameInfo","features":[313,305]},{"name":"D3DKMTOutputDuplGetMetaData","features":[313,305]},{"name":"D3DKMTOutputDuplGetPointerShapeData","features":[313,305]},{"name":"D3DKMTOutputDuplPresent","features":[313,305]},{"name":"D3DKMTOutputDuplPresentToHwQueue","features":[313,305]},{"name":"D3DKMTOutputDuplReleaseFrame","features":[313,305]},{"name":"D3DKMTPollDisplayChildren","features":[313,305]},{"name":"D3DKMTPresent","features":[313,305]},{"name":"D3DKMTPresentMultiPlaneOverlay","features":[313,305]},{"name":"D3DKMTPresentMultiPlaneOverlay2","features":[313,305]},{"name":"D3DKMTPresentMultiPlaneOverlay3","features":[313,305]},{"name":"D3DKMTPresentRedirected","features":[313,305]},{"name":"D3DKMTQueryAdapterInfo","features":[313,305]},{"name":"D3DKMTQueryAllocationResidency","features":[313,305]},{"name":"D3DKMTQueryClockCalibration","features":[313,305]},{"name":"D3DKMTQueryFSEBlock","features":[313,305]},{"name":"D3DKMTQueryProcessOfferInfo","features":[313,305]},{"name":"D3DKMTQueryProtectedSessionInfoFromNtHandle","features":[313,305]},{"name":"D3DKMTQueryProtectedSessionStatus","features":[313,305]},{"name":"D3DKMTQueryRemoteVidPnSourceFromGdiDisplayName","features":[313,305]},{"name":"D3DKMTQueryResourceInfo","features":[313,305]},{"name":"D3DKMTQueryResourceInfoFromNtHandle","features":[313,305]},{"name":"D3DKMTQueryStatistics","features":[313,305]},{"name":"D3DKMTQueryVidPnExclusiveOwnership","features":[313,305]},{"name":"D3DKMTQueryVideoMemoryInfo","features":[313,305]},{"name":"D3DKMTReclaimAllocations","features":[313,305]},{"name":"D3DKMTReclaimAllocations2","features":[313,305]},{"name":"D3DKMTRegisterTrimNotification","features":[313,305]},{"name":"D3DKMTRegisterVailProcess","features":[313,305]},{"name":"D3DKMTReleaseKeyedMutex","features":[313,305]},{"name":"D3DKMTReleaseKeyedMutex2","features":[313,305]},{"name":"D3DKMTReleaseProcessVidPnSourceOwners","features":[313,305]},{"name":"D3DKMTRender","features":[313,305]},{"name":"D3DKMTReserveGpuVirtualAddress","features":[313,305]},{"name":"D3DKMTSetAllocationPriority","features":[313,305]},{"name":"D3DKMTSetContextInProcessSchedulingPriority","features":[313,305]},{"name":"D3DKMTSetContextSchedulingPriority","features":[313,305]},{"name":"D3DKMTSetDisplayMode","features":[313,305]},{"name":"D3DKMTSetDisplayPrivateDriverFormat","features":[313,305]},{"name":"D3DKMTSetFSEBlock","features":[313,305]},{"name":"D3DKMTSetGammaRamp","features":[313,305]},{"name":"D3DKMTSetHwProtectionTeardownRecovery","features":[313,305]},{"name":"D3DKMTSetMonitorColorSpaceTransform","features":[313,305]},{"name":"D3DKMTSetProcessSchedulingPriorityClass","features":[313,305]},{"name":"D3DKMTSetQueuedLimit","features":[313,305]},{"name":"D3DKMTSetStablePowerState","features":[313,305]},{"name":"D3DKMTSetSyncRefreshCountWaitTarget","features":[313,305]},{"name":"D3DKMTSetVidPnSourceHwProtection","features":[313,305]},{"name":"D3DKMTSetVidPnSourceOwner","features":[313,305]},{"name":"D3DKMTSetVidPnSourceOwner1","features":[313,305]},{"name":"D3DKMTSetVidPnSourceOwner2","features":[313,305]},{"name":"D3DKMTShareObjects","features":[306,313,305]},{"name":"D3DKMTSharedPrimaryLockNotification","features":[313,305]},{"name":"D3DKMTSharedPrimaryUnLockNotification","features":[313,305]},{"name":"D3DKMTSignalSynchronizationObject","features":[313,305]},{"name":"D3DKMTSignalSynchronizationObject2","features":[313,305]},{"name":"D3DKMTSignalSynchronizationObjectFromCpu","features":[313,305]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu","features":[313,305]},{"name":"D3DKMTSignalSynchronizationObjectFromGpu2","features":[313,305]},{"name":"D3DKMTSubmitCommand","features":[313,305]},{"name":"D3DKMTSubmitCommandToHwQueue","features":[313,305]},{"name":"D3DKMTSubmitPresentBltToHwQueue","features":[313,305]},{"name":"D3DKMTSubmitPresentToHwQueue","features":[313,305]},{"name":"D3DKMTSubmitSignalSyncObjectsToHwQueue","features":[313,305]},{"name":"D3DKMTSubmitWaitForSyncObjectsToHwQueue","features":[313,305]},{"name":"D3DKMTTrimProcessCommitment","features":[313,305]},{"name":"D3DKMTUnlock","features":[313,305]},{"name":"D3DKMTUnlock2","features":[313,305]},{"name":"D3DKMTUnregisterTrimNotification","features":[313,305]},{"name":"D3DKMTUpdateAllocationProperty","features":[313,305]},{"name":"D3DKMTUpdateGpuVirtualAddress","features":[313,305]},{"name":"D3DKMTUpdateOverlay","features":[313,305]},{"name":"D3DKMTWaitForIdle","features":[313,305]},{"name":"D3DKMTWaitForSynchronizationObject","features":[313,305]},{"name":"D3DKMTWaitForSynchronizationObject2","features":[313,305]},{"name":"D3DKMTWaitForSynchronizationObjectFromCpu","features":[313,305]},{"name":"D3DKMTWaitForSynchronizationObjectFromGpu","features":[313,305]},{"name":"D3DKMTWaitForVerticalBlankEvent","features":[313,305]},{"name":"D3DKMTWaitForVerticalBlankEvent2","features":[313,305]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX","features":[313]},{"name":"D3DKMT_ACQUIREKEYEDMUTEX2","features":[313]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_ESCAPE","features":[313,305]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE","features":[313]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_EXTRA_CCD_DATABASE_INFO","features":[313]},{"name":"D3DKMT_ACTIVATE_SPECIFIC_DIAG_TYPE_MODES_PRUNED","features":[313]},{"name":"D3DKMT_ADAPTERADDRESS","features":[313]},{"name":"D3DKMT_ADAPTERINFO","features":[313,305]},{"name":"D3DKMT_ADAPTERREGISTRYINFO","features":[313]},{"name":"D3DKMT_ADAPTERTYPE","features":[313]},{"name":"D3DKMT_ADAPTER_PERFDATA","features":[313]},{"name":"D3DKMT_ADAPTER_PERFDATACAPS","features":[313]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION","features":[313]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_DATA","features":[313]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_TYPE","features":[313]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_FLAGS","features":[313]},{"name":"D3DKMT_ADAPTER_VERIFIER_OPTION_VIDMM_TRIM_INTERVAL","features":[313]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_FLAGS","features":[313]},{"name":"D3DKMT_ADAPTER_VERIFIER_VIDMM_TRIM_INTERVAL","features":[313]},{"name":"D3DKMT_ADJUSTFULLSCREENGAMMA","features":[313]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS","features":[313]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_NOTRESIDENT","features":[313]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINGPUMEMORY","features":[313]},{"name":"D3DKMT_ALLOCATIONRESIDENCYSTATUS_RESIDENTINSHAREDMEMORY","features":[313]},{"name":"D3DKMT_AUXILIARYPRESENTINFO","features":[313]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE","features":[313]},{"name":"D3DKMT_AUXILIARYPRESENTINFO_TYPE_FLIPMANAGER","features":[313]},{"name":"D3DKMT_AllocationPriorityClassHigh","features":[313]},{"name":"D3DKMT_AllocationPriorityClassLow","features":[313]},{"name":"D3DKMT_AllocationPriorityClassMaximum","features":[313]},{"name":"D3DKMT_AllocationPriorityClassMinimum","features":[313]},{"name":"D3DKMT_AllocationPriorityClassNormal","features":[313]},{"name":"D3DKMT_BDDFALLBACK_CTL","features":[313,305]},{"name":"D3DKMT_BLOCKLIST_INFO","features":[313]},{"name":"D3DKMT_BLTMODEL_PRESENTHISTORYTOKEN","features":[313,305]},{"name":"D3DKMT_BRIGHTNESS_INFO","features":[313,305]},{"name":"D3DKMT_BRIGHTNESS_INFO_BEGIN_MANUAL_MODE","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_END_MANUAL_MODE","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_CAPS","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_NIT_RANGES","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_POSSIBLE_LEVELS","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_GET_REDUCTION","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_OPTIMIZATION","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_SET_STATE","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_TOGGLE_LOGGING","features":[313]},{"name":"D3DKMT_BRIGHTNESS_INFO_TYPE","features":[313]},{"name":"D3DKMT_BRIGHTNESS_POSSIBLE_LEVELS","features":[313]},{"name":"D3DKMT_BUDGETCHANGENOTIFICATION","features":[313]},{"name":"D3DKMT_CANCEL_PRESENTS","features":[313,305]},{"name":"D3DKMT_CANCEL_PRESENTS_FLAGS","features":[313]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION","features":[313]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_CANCEL_FROM","features":[313]},{"name":"D3DKMT_CANCEL_PRESENTS_OPERATION_REPROGRAM_INTERRUPT","features":[313]},{"name":"D3DKMT_CHANGESURFACEPOINTER","features":[313,305,316]},{"name":"D3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[313,305]},{"name":"D3DKMT_CHECKMONITORPOWERSTATE","features":[313]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[313,305]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[313,305]},{"name":"D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[313,305]},{"name":"D3DKMT_CHECKOCCLUSION","features":[313,305]},{"name":"D3DKMT_CHECKSHAREDRESOURCEACCESS","features":[313]},{"name":"D3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[313]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE","features":[313,305]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE2","features":[313,305]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_PLANE3","features":[313,305]},{"name":"D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO","features":[313]},{"name":"D3DKMT_CLIENTHINT","features":[313]},{"name":"D3DKMT_CLIENTHINT_11ON12","features":[313]},{"name":"D3DKMT_CLIENTHINT_9ON12","features":[313]},{"name":"D3DKMT_CLIENTHINT_CDD","features":[313]},{"name":"D3DKMT_CLIENTHINT_CLON12","features":[313]},{"name":"D3DKMT_CLIENTHINT_CUDA","features":[313]},{"name":"D3DKMT_CLIENTHINT_DML_PYTORCH","features":[313]},{"name":"D3DKMT_CLIENTHINT_DML_TENSORFLOW","features":[313]},{"name":"D3DKMT_CLIENTHINT_DX10","features":[313]},{"name":"D3DKMT_CLIENTHINT_DX11","features":[313]},{"name":"D3DKMT_CLIENTHINT_DX12","features":[313]},{"name":"D3DKMT_CLIENTHINT_DX7","features":[313]},{"name":"D3DKMT_CLIENTHINT_DX8","features":[313]},{"name":"D3DKMT_CLIENTHINT_DX9","features":[313]},{"name":"D3DKMT_CLIENTHINT_GLON12","features":[313]},{"name":"D3DKMT_CLIENTHINT_MAX","features":[313]},{"name":"D3DKMT_CLIENTHINT_MFT_ENCODE","features":[313]},{"name":"D3DKMT_CLIENTHINT_ONEAPI_LEVEL0","features":[313]},{"name":"D3DKMT_CLIENTHINT_OPENCL","features":[313]},{"name":"D3DKMT_CLIENTHINT_OPENGL","features":[313]},{"name":"D3DKMT_CLIENTHINT_RESERVED","features":[313]},{"name":"D3DKMT_CLIENTHINT_UNKNOWN","features":[313]},{"name":"D3DKMT_CLIENTHINT_VULKAN","features":[313]},{"name":"D3DKMT_CLOSEADAPTER","features":[313]},{"name":"D3DKMT_COMPOSITION_PRESENTHISTORYTOKEN","features":[313]},{"name":"D3DKMT_CONFIGURESHAREDRESOURCE","features":[313,305]},{"name":"D3DKMT_CONNECT_DOORBELL","features":[313]},{"name":"D3DKMT_CONNECT_DOORBELL_FLAGS","features":[313]},{"name":"D3DKMT_CPDRIVERNAME","features":[313]},{"name":"D3DKMT_CREATEALLOCATION","features":[313,305]},{"name":"D3DKMT_CREATEALLOCATIONFLAGS","features":[313]},{"name":"D3DKMT_CREATECONTEXT","features":[313]},{"name":"D3DKMT_CREATECONTEXTVIRTUAL","features":[313]},{"name":"D3DKMT_CREATEDCFROMMEMORY","features":[313,305,316]},{"name":"D3DKMT_CREATEDEVICE","features":[313]},{"name":"D3DKMT_CREATEDEVICEFLAGS","features":[313]},{"name":"D3DKMT_CREATEHWCONTEXT","features":[313]},{"name":"D3DKMT_CREATEHWQUEUE","features":[313]},{"name":"D3DKMT_CREATEKEYEDMUTEX","features":[313]},{"name":"D3DKMT_CREATEKEYEDMUTEX2","features":[313]},{"name":"D3DKMT_CREATEKEYEDMUTEX2_FLAGS","features":[313]},{"name":"D3DKMT_CREATENATIVEFENCE","features":[313]},{"name":"D3DKMT_CREATEOVERLAY","features":[313]},{"name":"D3DKMT_CREATEPAGINGQUEUE","features":[313]},{"name":"D3DKMT_CREATEPROTECTEDSESSION","features":[313]},{"name":"D3DKMT_CREATESTANDARDALLOCATION","features":[313]},{"name":"D3DKMT_CREATESTANDARDALLOCATIONFLAGS","features":[313]},{"name":"D3DKMT_CREATESYNCFILE","features":[313]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[313,305]},{"name":"D3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[313,305]},{"name":"D3DKMT_CREATE_DOORBELL","features":[313]},{"name":"D3DKMT_CREATE_DOORBELL_FLAGS","features":[313]},{"name":"D3DKMT_CREATE_OUTPUTDUPL","features":[313,305]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT","features":[313]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER","features":[313]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_COPY","features":[313]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_NONE","features":[313]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_SCANOUT","features":[313]},{"name":"D3DKMT_CROSSADAPTERRESOURCE_SUPPORT_TIER_TEXTURE","features":[313]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_HEIGHT_ALIGNMENT","features":[313]},{"name":"D3DKMT_CROSS_ADAPTER_RESOURCE_PITCH_ALIGNMENT","features":[313]},{"name":"D3DKMT_CURRENTDISPLAYMODE","features":[313]},{"name":"D3DKMT_ClientPagingBuffer","features":[313]},{"name":"D3DKMT_ClientRenderBuffer","features":[313]},{"name":"D3DKMT_DEBUG_SNAPSHOT_ESCAPE","features":[313]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_DOWNWARD","features":[313]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_PASS","features":[313]},{"name":"D3DKMT_DEFRAG_ESCAPE_DEFRAG_UPWARD","features":[313]},{"name":"D3DKMT_DEFRAG_ESCAPE_GET_FRAGMENTATION_STATS","features":[313]},{"name":"D3DKMT_DEFRAG_ESCAPE_OPERATION","features":[313]},{"name":"D3DKMT_DEFRAG_ESCAPE_VERIFY_TRANSFER","features":[313]},{"name":"D3DKMT_DESTROYALLOCATION","features":[313]},{"name":"D3DKMT_DESTROYALLOCATION2","features":[313]},{"name":"D3DKMT_DESTROYCONTEXT","features":[313]},{"name":"D3DKMT_DESTROYDCFROMMEMORY","features":[313,305,316]},{"name":"D3DKMT_DESTROYDEVICE","features":[313]},{"name":"D3DKMT_DESTROYHWCONTEXT","features":[313]},{"name":"D3DKMT_DESTROYHWQUEUE","features":[313]},{"name":"D3DKMT_DESTROYKEYEDMUTEX","features":[313]},{"name":"D3DKMT_DESTROYOVERLAY","features":[313]},{"name":"D3DKMT_DESTROYPROTECTEDSESSION","features":[313]},{"name":"D3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[313]},{"name":"D3DKMT_DESTROY_DOORBELL","features":[313]},{"name":"D3DKMT_DESTROY_OUTPUTDUPL","features":[313,305]},{"name":"D3DKMT_DEVICEESCAPE_RESTOREGAMMA","features":[313]},{"name":"D3DKMT_DEVICEESCAPE_TYPE","features":[313]},{"name":"D3DKMT_DEVICEESCAPE_VIDPNFROMALLOCATION","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_ACTIVE","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAFAULT","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_DMAPAGEFAULT","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_ERROR_OUTOFMEMORY","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_HUNG","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_RESET","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_STATE","features":[313]},{"name":"D3DKMT_DEVICEEXECUTION_STOPPED","features":[313]},{"name":"D3DKMT_DEVICEPAGEFAULT_STATE","features":[313]},{"name":"D3DKMT_DEVICEPRESENT_QUEUE_STATE","features":[313,305]},{"name":"D3DKMT_DEVICEPRESENT_STATE","features":[313]},{"name":"D3DKMT_DEVICEPRESENT_STATE_DWM","features":[313]},{"name":"D3DKMT_DEVICERESET_STATE","features":[313]},{"name":"D3DKMT_DEVICESTATE_EXECUTION","features":[313]},{"name":"D3DKMT_DEVICESTATE_PAGE_FAULT","features":[313]},{"name":"D3DKMT_DEVICESTATE_PRESENT","features":[313]},{"name":"D3DKMT_DEVICESTATE_PRESENT_DWM","features":[313]},{"name":"D3DKMT_DEVICESTATE_PRESENT_QUEUE","features":[313]},{"name":"D3DKMT_DEVICESTATE_RESET","features":[313]},{"name":"D3DKMT_DEVICESTATE_TYPE","features":[313]},{"name":"D3DKMT_DEVICE_ERROR_REASON","features":[313]},{"name":"D3DKMT_DEVICE_ERROR_REASON_DRIVER_ERROR","features":[313]},{"name":"D3DKMT_DEVICE_ERROR_REASON_GENERIC","features":[313]},{"name":"D3DKMT_DEVICE_ESCAPE","features":[313]},{"name":"D3DKMT_DEVICE_IDS","features":[313]},{"name":"D3DKMT_DIRECTFLIP_SUPPORT","features":[313,305]},{"name":"D3DKMT_DIRTYREGIONS","features":[313,305]},{"name":"D3DKMT_DISPLAYMODE","features":[313]},{"name":"D3DKMT_DISPLAYMODELIST","features":[313]},{"name":"D3DKMT_DISPLAY_CAPS","features":[313]},{"name":"D3DKMT_DISPLAY_UMD_FILENAMEINFO","features":[313]},{"name":"D3DKMT_DLIST_DRIVER_NAME","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_COFUNCPATHMODALITY_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_ACTIVEVIDPN_SOURCEMODESET_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_GET_ACTIVEVIDPN_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_GET_LASTCLIENTCOMMITTEDVIDPN_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_GET_MONITORS_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_GET_SUMMARY_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VERSION_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_SOURCES_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_GET_VIDEO_PRESENT_TARGETS_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_COMMITTED_VIDPNS_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_RECENTLY_RECOMMENDED_VIDPNS_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MODECHANGE_REQUESTS_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_RECENT_MONITOR_PRESENCE_EVENTS_INFO","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_UNINITIALIZED","features":[313]},{"name":"D3DKMT_DMMESCAPETYPE_VIDPN_MGR_DIAGNOSTICS","features":[313]},{"name":"D3DKMT_DMM_ESCAPE","features":[313]},{"name":"D3DKMT_DOD_SET_DIRTYRECT_MODE","features":[313,305]},{"name":"D3DKMT_DRIVERCAPS_EXT","features":[313]},{"name":"D3DKMT_DRIVERVERSION","features":[313]},{"name":"D3DKMT_DRIVER_DESCRIPTION","features":[313]},{"name":"D3DKMT_DeferredCommandBuffer","features":[313]},{"name":"D3DKMT_DeviceCommandBuffer","features":[313]},{"name":"D3DKMT_DmaPacketTypeMax","features":[313]},{"name":"D3DKMT_ENUMADAPTERS","features":[313,305]},{"name":"D3DKMT_ENUMADAPTERS2","features":[313,305]},{"name":"D3DKMT_ENUMADAPTERS3","features":[313,305]},{"name":"D3DKMT_ENUMADAPTERS_FILTER","features":[313]},{"name":"D3DKMT_ESCAPE","features":[313]},{"name":"D3DKMT_ESCAPETYPE","features":[313]},{"name":"D3DKMT_ESCAPE_ACTIVATE_SPECIFIC_DIAG","features":[313]},{"name":"D3DKMT_ESCAPE_ADAPTER_VERIFIER_OPTION","features":[313]},{"name":"D3DKMT_ESCAPE_BDD_FALLBACK","features":[313]},{"name":"D3DKMT_ESCAPE_BDD_PNP","features":[313]},{"name":"D3DKMT_ESCAPE_BRIGHTNESS","features":[313]},{"name":"D3DKMT_ESCAPE_CCD_DATABASE","features":[313]},{"name":"D3DKMT_ESCAPE_DEBUG_SNAPSHOT","features":[313]},{"name":"D3DKMT_ESCAPE_DEVICE","features":[313]},{"name":"D3DKMT_ESCAPE_DIAGNOSTICS","features":[313]},{"name":"D3DKMT_ESCAPE_DMM","features":[313]},{"name":"D3DKMT_ESCAPE_DOD_SET_DIRTYRECT_MODE","features":[313]},{"name":"D3DKMT_ESCAPE_DRIVERPRIVATE","features":[313]},{"name":"D3DKMT_ESCAPE_DRT_TEST","features":[313]},{"name":"D3DKMT_ESCAPE_EDID_CACHE","features":[313]},{"name":"D3DKMT_ESCAPE_FORCE_BDDFALLBACK_HEADLESS","features":[313]},{"name":"D3DKMT_ESCAPE_GET_DISPLAY_CONFIGURATIONS","features":[313]},{"name":"D3DKMT_ESCAPE_GET_EXTERNAL_DIAGNOSTICS","features":[313]},{"name":"D3DKMT_ESCAPE_HISTORY_BUFFER_STATUS","features":[313]},{"name":"D3DKMT_ESCAPE_IDD_REQUEST","features":[313]},{"name":"D3DKMT_ESCAPE_LOG_CODEPOINT_PACKET","features":[313]},{"name":"D3DKMT_ESCAPE_LOG_USERMODE_DAIG_PACKET","features":[313]},{"name":"D3DKMT_ESCAPE_MIRACAST_ADAPTER_DIAG_INFO","features":[313]},{"name":"D3DKMT_ESCAPE_MIRACAST_DISPLAY_REQUEST","features":[313]},{"name":"D3DKMT_ESCAPE_MODES_PRUNED_OUT","features":[313]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_DIAGNOSTICS","features":[313]},{"name":"D3DKMT_ESCAPE_OUTPUTDUPL_SNAPSHOT","features":[313]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_COMMAND","features":[313]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_DEFAULT","features":[313]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_CPU","features":[313]},{"name":"D3DKMT_ESCAPE_PFN_CONTROL_FORCE_GPU","features":[313]},{"name":"D3DKMT_ESCAPE_PROCESS_VERIFIER_OPTION","features":[313]},{"name":"D3DKMT_ESCAPE_QUERY_DMA_REMAPPING_STATUS","features":[313]},{"name":"D3DKMT_ESCAPE_QUERY_IOMMU_STATUS","features":[313]},{"name":"D3DKMT_ESCAPE_REQUEST_MACHINE_CRASH","features":[313]},{"name":"D3DKMT_ESCAPE_SOFTGPU_ENABLE_DISABLE_HMD","features":[313]},{"name":"D3DKMT_ESCAPE_TDRDBGCTRL","features":[313]},{"name":"D3DKMT_ESCAPE_VIDMM","features":[313]},{"name":"D3DKMT_ESCAPE_VIDSCH","features":[313]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE","features":[313,305]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE","features":[313]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_BASE_DESKTOP_DURATION","features":[313]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_PROCESS_BOOST_ELIGIBLE","features":[313]},{"name":"D3DKMT_ESCAPE_VIRTUAL_REFRESH_RATE_TYPE_SET_VSYNC_MULTIPLIER","features":[313]},{"name":"D3DKMT_ESCAPE_WHQL_INFO","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_BDD_FALLBACK","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_COLOR_PROFILE_INFO","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_DDA_TEST_CTL","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_DISPBROKER_TEST","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_DPI_INFO","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_HIP_DEVICE_INFO","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_PRESENTER_VIEW_INFO","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_QUERY_CD_ROTATION_BLOCK","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_SET_DIMMED_STATE","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_SPECIALIZED_DISPLAY_TEST","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_START","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_SYSTEM_DPI","features":[313]},{"name":"D3DKMT_ESCAPE_WIN32K_USER_DETECTED_BLACK_SCREEN","features":[313]},{"name":"D3DKMT_EVICT","features":[313]},{"name":"D3DKMT_EVICTION_CRITERIA","features":[313]},{"name":"D3DKMT_FENCE_PRESENTHISTORYTOKEN","features":[313]},{"name":"D3DKMT_FLIPINFOFLAGS","features":[313]},{"name":"D3DKMT_FLIPMANAGER_AUXILIARYPRESENTINFO","features":[313,305]},{"name":"D3DKMT_FLIPMANAGER_PRESENTHISTORYTOKEN","features":[313]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE","features":[313]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_COMPLETE","features":[313]},{"name":"D3DKMT_FLIPMODEL_INDEPENDENT_FLIP_STAGE_FLIP_SUBMITTED","features":[313]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKEN","features":[313,305]},{"name":"D3DKMT_FLIPMODEL_PRESENTHISTORYTOKENFLAGS","features":[313]},{"name":"D3DKMT_FLIPOVERLAY","features":[313]},{"name":"D3DKMT_FLIPQUEUEINFO","features":[313]},{"name":"D3DKMT_FLUSHHEAPTRANSITIONS","features":[313]},{"name":"D3DKMT_FREEGPUVIRTUALADDRESS","features":[313]},{"name":"D3DKMT_GDIMODEL_PRESENTHISTORYTOKEN","features":[313,305]},{"name":"D3DKMT_GDIMODEL_SYSMEM_PRESENTHISTORYTOKEN","features":[313]},{"name":"D3DKMT_GDI_STYLE_HANDLE_DECORATION","features":[313]},{"name":"D3DKMT_GETALLOCATIONPRIORITY","features":[313]},{"name":"D3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[313]},{"name":"D3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[313]},{"name":"D3DKMT_GETDEVICESTATE","features":[313,305]},{"name":"D3DKMT_GETDISPLAYMODELIST","features":[313]},{"name":"D3DKMT_GETMULTISAMPLEMETHODLIST","features":[313]},{"name":"D3DKMT_GETOVERLAYSTATE","features":[313,305]},{"name":"D3DKMT_GETPRESENTHISTORY","features":[313,305]},{"name":"D3DKMT_GETPRESENTHISTORY_MAXTOKENS","features":[313]},{"name":"D3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[313,305]},{"name":"D3DKMT_GETRUNTIMEDATA","features":[313]},{"name":"D3DKMT_GETSCANLINE","features":[313,305]},{"name":"D3DKMT_GETSHAREDPRIMARYHANDLE","features":[313]},{"name":"D3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[313,305]},{"name":"D3DKMT_GETVERTICALBLANKEVENT","features":[313]},{"name":"D3DKMT_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[313,305]},{"name":"D3DKMT_GET_GPUMMU_CAPS","features":[313,305]},{"name":"D3DKMT_GET_MULTIPLANE_OVERLAY_CAPS","features":[313]},{"name":"D3DKMT_GET_POST_COMPOSITION_CAPS","features":[313]},{"name":"D3DKMT_GET_PTE","features":[313,305]},{"name":"D3DKMT_GET_PTE_MAX","features":[313]},{"name":"D3DKMT_GET_QUEUEDLIMIT_PRESENT","features":[313]},{"name":"D3DKMT_GET_SEGMENT_CAPS","features":[313,305]},{"name":"D3DKMT_GPUMMU_CAPS","features":[313]},{"name":"D3DKMT_GPUVERSION","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_STATE","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_QUERY_TYPE","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_HIGH_PERFORMANCE","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_MINIMUM_POWER","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_NOT_FOUND","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNINITIALIZED","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_UNSPECIFIED","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_STATE_USER_SPECIFIED_GPU","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_DX_DATABASE","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_IHV_DLIST","features":[313]},{"name":"D3DKMT_GPU_PREFERENCE_TYPE_USER_PREFERENCE","features":[313]},{"name":"D3DKMT_HISTORY_BUFFER_STATUS","features":[313,305]},{"name":"D3DKMT_HWDRM_SUPPORT","features":[313,305]},{"name":"D3DKMT_HYBRID_DLIST_DLL_SUPPORT","features":[313,305]},{"name":"D3DKMT_HYBRID_LIST","features":[313,305]},{"name":"D3DKMT_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[313,305]},{"name":"D3DKMT_INDEPENDENTFLIP_SUPPORT","features":[313,305]},{"name":"D3DKMT_INVALIDATEACTIVEVIDPN","features":[313]},{"name":"D3DKMT_INVALIDATECACHE","features":[313]},{"name":"D3DKMT_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[313,305]},{"name":"D3DKMT_KMD_DRIVER_VERSION","features":[313]},{"name":"D3DKMT_LOCK","features":[313]},{"name":"D3DKMT_LOCK2","features":[313]},{"name":"D3DKMT_MARKDEVICEASERROR","features":[313]},{"name":"D3DKMT_MAX_BUNDLE_OBJECTS_PER_HANDLE","features":[313]},{"name":"D3DKMT_MAX_DMM_ESCAPE_DATASIZE","features":[313]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_ALLOCATIONS_PER_PLANE","features":[313]},{"name":"D3DKMT_MAX_MULTIPLANE_OVERLAY_PLANES","features":[313]},{"name":"D3DKMT_MAX_OBJECTS_PER_HANDLE","features":[313]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_RECTS","features":[313]},{"name":"D3DKMT_MAX_PRESENT_HISTORY_SCATTERBLTS","features":[313]},{"name":"D3DKMT_MAX_SEGMENT_COUNT","features":[313]},{"name":"D3DKMT_MAX_WAITFORVERTICALBLANK_OBJECTS","features":[313]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP","features":[313]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_LOCAL","features":[313]},{"name":"D3DKMT_MEMORY_SEGMENT_GROUP_NON_LOCAL","features":[313]},{"name":"D3DKMT_MIRACASTCOMPANIONDRIVERNAME","features":[313]},{"name":"D3DKMT_MIRACAST_CHUNK_DATA","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_CANCELLED","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_ERROR","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_FOUND","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_DEVICE_NOT_STARTED","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_GPU_RESOURCE_IN_USE","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_BANDWIDTH","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INSUFFICIENT_MEMORY","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_INVALID_PARAMETER","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_PENDING","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_REMOTE_SESSION","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_SUCCESS_NO_MONITOR","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_ERROR","features":[313]},{"name":"D3DKMT_MIRACAST_DEVICE_STATUS_UNKOWN_PAIRING","features":[313]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_CAPS","features":[313,305]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATE","features":[313]},{"name":"D3DKMT_MIRACAST_DISPLAY_DEVICE_STATUS","features":[313]},{"name":"D3DKMT_MIRACAST_DISPLAY_STOP_SESSIONS","features":[313,305]},{"name":"D3DKMT_MIRACAST_DRIVER_IHV","features":[313]},{"name":"D3DKMT_MIRACAST_DRIVER_MS","features":[313]},{"name":"D3DKMT_MIRACAST_DRIVER_NOT_SUPPORTED","features":[313]},{"name":"D3DKMT_MIRACAST_DRIVER_TYPE","features":[313]},{"name":"D3DKMT_MOVE_RECT","features":[313,305]},{"name":"D3DKMT_MPO3DDI_SUPPORT","features":[313,305]},{"name":"D3DKMT_MPOKERNELCAPS_SUPPORT","features":[313,305]},{"name":"D3DKMT_MULIIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_PROGRESSIVE","features":[313]},{"name":"D3DKMT_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[313,305]},{"name":"D3DKMT_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[313,305]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[313,305]},{"name":"D3DKMT_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[313,305]},{"name":"D3DKMT_MULTIPLANEOVERLAY_SUPPORT","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY2","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY3","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES2","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_ATTRIBUTES3","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_ALPHABLEND","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_BLEND_OPAQUE","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_CAPS","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAGS","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_HORIZONTAL_FLIP","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_STATIC_CHECK","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_FLAG_VERTICAL_FLIP","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_WITH_SOURCE","features":[313,305]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_HORIZONTAL","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_VERTICAL","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAGS","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE","features":[313]},{"name":"D3DKMT_MULTIPLANE_OVERLAY_YCbCr_FLAG_xvYCC","features":[313]},{"name":"D3DKMT_MULTISAMPLEMETHOD","features":[313]},{"name":"D3DKMT_MaxAllocationPriorityClass","features":[313]},{"name":"D3DKMT_MmIoFlipCommandBuffer","features":[313]},{"name":"D3DKMT_NODEMETADATA","features":[313,305]},{"name":"D3DKMT_NODE_PERFDATA","features":[313]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION","features":[313]},{"name":"D3DKMT_NOTIFY_WORK_SUBMISSION_FLAGS","features":[313]},{"name":"D3DKMT_OFFERALLOCATIONS","features":[313]},{"name":"D3DKMT_OFFER_FLAGS","features":[313]},{"name":"D3DKMT_OFFER_PRIORITY","features":[313]},{"name":"D3DKMT_OFFER_PRIORITY_AUTO","features":[313]},{"name":"D3DKMT_OFFER_PRIORITY_HIGH","features":[313]},{"name":"D3DKMT_OFFER_PRIORITY_LOW","features":[313]},{"name":"D3DKMT_OFFER_PRIORITY_NORMAL","features":[313]},{"name":"D3DKMT_OPENADAPTERFROMDEVICENAME","features":[313,305]},{"name":"D3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[313,305]},{"name":"D3DKMT_OPENADAPTERFROMHDC","features":[313,305,316]},{"name":"D3DKMT_OPENADAPTERFROMLUID","features":[313,305]},{"name":"D3DKMT_OPENGLINFO","features":[313]},{"name":"D3DKMT_OPENKEYEDMUTEX","features":[313]},{"name":"D3DKMT_OPENKEYEDMUTEX2","features":[313]},{"name":"D3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[313,305]},{"name":"D3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[313,305]},{"name":"D3DKMT_OPENNTHANDLEFROMNAME","features":[306,313,305]},{"name":"D3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[313,305]},{"name":"D3DKMT_OPENRESOURCE","features":[313]},{"name":"D3DKMT_OPENRESOURCEFROMNTHANDLE","features":[313,305]},{"name":"D3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[313]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[313,305]},{"name":"D3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[313,305]},{"name":"D3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[306,313,305]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_INFO","features":[313,305]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE","features":[313]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_COLOR","features":[313]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR","features":[313]},{"name":"D3DKMT_OUTDUPL_POINTER_SHAPE_TYPE_MONOCHROME","features":[313]},{"name":"D3DKMT_OUTPUTDUPLCONTEXTSCOUNT","features":[313]},{"name":"D3DKMT_OUTPUTDUPLCREATIONFLAGS","features":[313]},{"name":"D3DKMT_OUTPUTDUPLPRESENT","features":[313,305]},{"name":"D3DKMT_OUTPUTDUPLPRESENTFLAGS","features":[313]},{"name":"D3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[313,305]},{"name":"D3DKMT_OUTPUTDUPL_FRAMEINFO","features":[313,305]},{"name":"D3DKMT_OUTPUTDUPL_GET_FRAMEINFO","features":[313,305]},{"name":"D3DKMT_OUTPUTDUPL_GET_POINTER_SHAPE_DATA","features":[313,305]},{"name":"D3DKMT_OUTPUTDUPL_KEYEDMUTEX","features":[313,305]},{"name":"D3DKMT_OUTPUTDUPL_METADATA","features":[313]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE","features":[313]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_DIRTY_RECTS","features":[313]},{"name":"D3DKMT_OUTPUTDUPL_METADATATYPE_MOVE_RECTS","features":[313]},{"name":"D3DKMT_OUTPUTDUPL_POINTER_POSITION","features":[313,305]},{"name":"D3DKMT_OUTPUTDUPL_RELEASE_FRAME","features":[313]},{"name":"D3DKMT_OUTPUTDUPL_SNAPSHOT","features":[313,305]},{"name":"D3DKMT_PAGE_TABLE_LEVEL_DESC","features":[313]},{"name":"D3DKMT_PANELFITTER_SUPPORT","features":[313,305]},{"name":"D3DKMT_PARAVIRTUALIZATION","features":[313,305]},{"name":"D3DKMT_PHYSICAL_ADAPTER_COUNT","features":[313]},{"name":"D3DKMT_PINDIRECTFLIPRESOURCES","features":[313]},{"name":"D3DKMT_PLANE_SPECIFIC_INPUT_FLAGS","features":[313]},{"name":"D3DKMT_PLANE_SPECIFIC_OUTPUT_FLAGS","features":[313]},{"name":"D3DKMT_PM_FLIPMANAGER","features":[313]},{"name":"D3DKMT_PM_REDIRECTED_BLT","features":[313]},{"name":"D3DKMT_PM_REDIRECTED_COMPOSITION","features":[313]},{"name":"D3DKMT_PM_REDIRECTED_FLIP","features":[313]},{"name":"D3DKMT_PM_REDIRECTED_GDI","features":[313]},{"name":"D3DKMT_PM_REDIRECTED_GDI_SYSMEM","features":[313]},{"name":"D3DKMT_PM_REDIRECTED_VISTABLT","features":[313]},{"name":"D3DKMT_PM_SCREENCAPTUREFENCE","features":[313]},{"name":"D3DKMT_PM_SURFACECOMPLETE","features":[313]},{"name":"D3DKMT_PM_UNINITIALIZED","features":[313]},{"name":"D3DKMT_PNP_KEY_HARDWARE","features":[313]},{"name":"D3DKMT_PNP_KEY_SOFTWARE","features":[313]},{"name":"D3DKMT_PNP_KEY_TYPE","features":[313]},{"name":"D3DKMT_POLLDISPLAYCHILDREN","features":[313]},{"name":"D3DKMT_PRESENT","features":[313,305]},{"name":"D3DKMT_PRESENTFLAGS","features":[313]},{"name":"D3DKMT_PRESENTHISTORYTOKEN","features":[313,305]},{"name":"D3DKMT_PRESENT_MODEL","features":[313]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY","features":[313,305]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY2","features":[313,305]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY3","features":[313,305]},{"name":"D3DKMT_PRESENT_MULTIPLANE_OVERLAY_FLAGS","features":[313]},{"name":"D3DKMT_PRESENT_REDIRECTED","features":[313,305]},{"name":"D3DKMT_PRESENT_REDIRECTED_FLAGS","features":[313]},{"name":"D3DKMT_PRESENT_RGNS","features":[313,305]},{"name":"D3DKMT_PRESENT_STATS","features":[313]},{"name":"D3DKMT_PRESENT_STATS_DWM","features":[313]},{"name":"D3DKMT_PRESENT_STATS_DWM2","features":[313]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION","features":[313,305]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_DATA","features":[313]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_TYPE","features":[313]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_FLAGS","features":[313]},{"name":"D3DKMT_PROCESS_VERIFIER_OPTION_VIDMM_RESTRICT_BUDGET","features":[313]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_FLAGS","features":[313]},{"name":"D3DKMT_PROCESS_VERIFIER_VIDMM_RESTRICT_BUDGET","features":[313]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS","features":[313]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_INVALID","features":[313]},{"name":"D3DKMT_PROTECTED_SESSION_STATUS_OK","features":[313]},{"name":"D3DKMT_PreemptionAttempt","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyPreempting","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissAlreadyRunning","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissFenceCommand","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissGlobalBlock","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissLessPriority","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissNextFence","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissNoCommand","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissNotEnabled","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissNotMakingProgress","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissPagingCommand","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissRemainingPreemptionQuantum","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissRemainingQuantum","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissRenderPendingFlip","features":[313]},{"name":"D3DKMT_PreemptionAttemptMissSplittedCommand","features":[313]},{"name":"D3DKMT_PreemptionAttemptStatisticsMax","features":[313]},{"name":"D3DKMT_PreemptionAttemptSuccess","features":[313]},{"name":"D3DKMT_QUERYADAPTERINFO","features":[313]},{"name":"D3DKMT_QUERYALLOCATIONRESIDENCY","features":[313]},{"name":"D3DKMT_QUERYCLOCKCALIBRATION","features":[313]},{"name":"D3DKMT_QUERYFSEBLOCK","features":[313,305]},{"name":"D3DKMT_QUERYFSEBLOCKFLAGS","features":[313]},{"name":"D3DKMT_QUERYPROCESSOFFERINFO","features":[313,305]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[313,305]},{"name":"D3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[313]},{"name":"D3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[313]},{"name":"D3DKMT_QUERYRESOURCEINFO","features":[313]},{"name":"D3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[313,305]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT","features":[313]},{"name":"D3DKMT_QUERYRESULT_PREEMPTION_ATTEMPT_RESULT_MAX","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS","features":[313,305]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_ADAPTER_INFORMATION_FLAGS","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_ALLOCATION_PRIORITY_CLASS_MAX","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_COMMITMENT_DATA","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_COUNTER","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_BUFFER","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_DMA_PACKET_TYPE_MAX","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_MEMORY_USAGE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_NODE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_NODE2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_NODE_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PACKET_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PHYSICAL_ADAPTER_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_POLICY","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PREEMPTION_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_ADAPTER_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_BUCKET_COUNT","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_INTERFERENCE_COUNTERS","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_NODE_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_GROUP_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_SEGMENT_POLICY","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_PROCESS_VIDPNSOURCE_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_ADAPTER_INFORMATION2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_NODE2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PHYSICAL_ADAPTER","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_PROCESS_SEGMENT_GROUP2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_GROUP_USAGE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_SEGMENT_USAGE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUERY_VIDPNSOURCE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_QUEUE_PACKET_TYPE_MAX","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_RESULT","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT2","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_GROUP_USAGE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_PREFERENCE_MAX","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_APERTURE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_MEMORY","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_TYPE_SYSMEM","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SEGMENT_USAGE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_SYSTEM_MEMORY","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_TYPE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_VIDEO_MEMORY","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE","features":[313]},{"name":"D3DKMT_QUERYSTATISTICS_VIDPNSOURCE_INFORMATION","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_ALLOCATIONS","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_LOCKS","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_FAULT","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_PAGING_TRANSFER","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_PREPRATION","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_REFERENCE_DMA_BUFFER","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_RENAMING","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_SWIZZLING_RANGE","features":[313]},{"name":"D3DKMT_QUERYSTATSTICS_TERMINATIONS","features":[313]},{"name":"D3DKMT_QUERYVIDEOMEMORYINFO","features":[313,305]},{"name":"D3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[313,305]},{"name":"D3DKMT_QUERY_ADAPTER_UNIQUE_GUID","features":[313]},{"name":"D3DKMT_QUERY_DEVICE_IDS","features":[313]},{"name":"D3DKMT_QUERY_GPUMMU_CAPS","features":[313]},{"name":"D3DKMT_QUERY_MIRACAST_DRIVER_TYPE","features":[313]},{"name":"D3DKMT_QUERY_PHYSICAL_ADAPTER_PNP_KEY","features":[313]},{"name":"D3DKMT_QUERY_SCANOUT_CAPS","features":[313]},{"name":"D3DKMT_QUEUEDLIMIT_TYPE","features":[313]},{"name":"D3DKMT_QueuePacketTypeMax","features":[313]},{"name":"D3DKMT_RECLAIMALLOCATIONS","features":[313,305]},{"name":"D3DKMT_RECLAIMALLOCATIONS2","features":[313,305]},{"name":"D3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[313]},{"name":"D3DKMT_REGISTERTRIMNOTIFICATION","features":[313,305]},{"name":"D3DKMT_RELEASEKEYEDMUTEX","features":[313]},{"name":"D3DKMT_RELEASEKEYEDMUTEX2","features":[313]},{"name":"D3DKMT_RENDER","features":[313]},{"name":"D3DKMT_RENDERFLAGS","features":[313]},{"name":"D3DKMT_REQUEST_MACHINE_CRASH_ESCAPE","features":[313]},{"name":"D3DKMT_RenderCommandBuffer","features":[313]},{"name":"D3DKMT_SCATTERBLT","features":[313,305]},{"name":"D3DKMT_SCATTERBLTS","features":[313,305]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS","features":[313]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_ABOVE_NORMAL","features":[313]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_BELOW_NORMAL","features":[313]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_HIGH","features":[313]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_IDLE","features":[313]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_NORMAL","features":[313]},{"name":"D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME","features":[313]},{"name":"D3DKMT_SEGMENTGROUPSIZEINFO","features":[313]},{"name":"D3DKMT_SEGMENTSIZEINFO","features":[313]},{"name":"D3DKMT_SEGMENT_CAPS","features":[313,305]},{"name":"D3DKMT_SETALLOCATIONPRIORITY","features":[313]},{"name":"D3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[313]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[313]},{"name":"D3DKMT_SETCONTEXTSCHEDULINGPRIORITY_ABSOLUTE","features":[313]},{"name":"D3DKMT_SETDISPLAYMODE","features":[313]},{"name":"D3DKMT_SETDISPLAYMODE_FLAGS","features":[313]},{"name":"D3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[313]},{"name":"D3DKMT_SETFSEBLOCK","features":[313,305]},{"name":"D3DKMT_SETFSEBLOCKFLAGS","features":[313]},{"name":"D3DKMT_SETGAMMARAMP","features":[313]},{"name":"D3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[313,305]},{"name":"D3DKMT_SETQUEUEDLIMIT","features":[313]},{"name":"D3DKMT_SETSTABLEPOWERSTATE","features":[313,305]},{"name":"D3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[313]},{"name":"D3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[313,305]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER","features":[313]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER1","features":[313]},{"name":"D3DKMT_SETVIDPNSOURCEOWNER2","features":[313]},{"name":"D3DKMT_SET_COLORSPACE_TRANSFORM","features":[313,305]},{"name":"D3DKMT_SET_QUEUEDLIMIT_PRESENT","features":[313]},{"name":"D3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[313,305]},{"name":"D3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[313,305]},{"name":"D3DKMT_SHAREOBJECTWITHHOST","features":[313]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[313]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[313,305]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[313]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[313]},{"name":"D3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[313,305]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE","features":[313]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_EXISTINGHEAP","features":[313]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_INTERNALBACKINGSTORE","features":[313]},{"name":"D3DKMT_STANDARDALLOCATIONTYPE_MAX","features":[313]},{"name":"D3DKMT_STANDARDALLOCATION_EXISTINGHEAP","features":[313]},{"name":"D3DKMT_SUBKEY_DX9","features":[313]},{"name":"D3DKMT_SUBKEY_OPENGL","features":[313]},{"name":"D3DKMT_SUBMITCOMMAND","features":[313]},{"name":"D3DKMT_SUBMITCOMMANDFLAGS","features":[313]},{"name":"D3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[313]},{"name":"D3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[313,305]},{"name":"D3DKMT_SUBMITPRESENTTOHWQUEUE","features":[313,305]},{"name":"D3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[313]},{"name":"D3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[313]},{"name":"D3DKMT_SURFACECOMPLETE_PRESENTHISTORYTOKEN","features":[313]},{"name":"D3DKMT_SignalCommandBuffer","features":[313]},{"name":"D3DKMT_SoftwareCommandBuffer","features":[313]},{"name":"D3DKMT_SystemCommandBuffer","features":[313]},{"name":"D3DKMT_SystemPagingBuffer","features":[313]},{"name":"D3DKMT_SystemPreemptionBuffer","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_DISABLEBREAK","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENABLEBREAK","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_ENGINETDR","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODTDR","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCEDODVSYNCTDR","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_FORCETDR","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_GPUTDR","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_UNCONDITIONAL","features":[313]},{"name":"D3DKMT_TDRDBGCTRLTYPE_VSYNCTDR","features":[313]},{"name":"D3DKMT_TDRDBGCTRL_ESCAPE","features":[313]},{"name":"D3DKMT_TRACKEDWORKLOAD_SUPPORT","features":[313,305]},{"name":"D3DKMT_TRIMNOTIFICATION","features":[313]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT","features":[313,305]},{"name":"D3DKMT_TRIMPROCESSCOMMITMENT_FLAGS","features":[313]},{"name":"D3DKMT_UMDFILENAMEINFO","features":[313]},{"name":"D3DKMT_UMD_DRIVER_VERSION","features":[313]},{"name":"D3DKMT_UNLOCK","features":[313]},{"name":"D3DKMT_UNLOCK2","features":[313]},{"name":"D3DKMT_UNPINDIRECTFLIPRESOURCES","features":[313]},{"name":"D3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[313]},{"name":"D3DKMT_UNREGISTERTRIMNOTIFICATION","features":[313]},{"name":"D3DKMT_UPDATEGPUVIRTUALADDRESS","features":[313]},{"name":"D3DKMT_UPDATEOVERLAY","features":[313]},{"name":"D3DKMT_VAD_DESC","features":[313]},{"name":"D3DKMT_VAD_ESCAPE_COMMAND","features":[313]},{"name":"D3DKMT_VAD_ESCAPE_GETNUMVADS","features":[313]},{"name":"D3DKMT_VAD_ESCAPE_GETVAD","features":[313]},{"name":"D3DKMT_VAD_ESCAPE_GETVADRANGE","features":[313]},{"name":"D3DKMT_VAD_ESCAPE_GET_GPUMMU_CAPS","features":[313]},{"name":"D3DKMT_VAD_ESCAPE_GET_PTE","features":[313]},{"name":"D3DKMT_VAD_ESCAPE_GET_SEGMENT_CAPS","features":[313]},{"name":"D3DKMT_VA_RANGE_DESC","features":[313]},{"name":"D3DKMT_VERIFIER_OPTION_MODE","features":[313]},{"name":"D3DKMT_VERIFIER_OPTION_QUERY","features":[313]},{"name":"D3DKMT_VERIFIER_OPTION_SET","features":[313]},{"name":"D3DKMT_VGPUINTERFACEID","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_APERTURE_CORRUPTION_CHECK","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_DEFRAG","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_DELAYEXECUTION","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_CRITERIA","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_EVICT_BY_NT_HANDLE","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_BUDGET","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_GET_VAD_INFO","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_RESUME_PROCESS","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_COHERENCY_TEST","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_RUN_UNMAP_TO_DUMMY_PAGE_TEST","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_SETFAULT","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_BUDGET","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_EVICTION_CONFIG","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_SET_TRIM_INTERVALS","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_CPU_ACCESS_TEST","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_SUSPEND_PROCESS","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_VALIDATE_INTEGRITY","features":[313]},{"name":"D3DKMT_VIDMMESCAPETYPE_WAKE","features":[313]},{"name":"D3DKMT_VIDMM_ESCAPE","features":[313,305]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EMULATED","features":[313]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE","features":[313]},{"name":"D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVEGDI","features":[313]},{"name":"D3DKMT_VIDPNSOURCEOWNER_FLAGS","features":[313]},{"name":"D3DKMT_VIDPNSOURCEOWNER_SHARED","features":[313]},{"name":"D3DKMT_VIDPNSOURCEOWNER_TYPE","features":[313]},{"name":"D3DKMT_VIDPNSOURCEOWNER_UNOWNED","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_CONFIGURE_TDR_LIMIT","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_ENABLECONTEXTDELAY","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PFN_CONTROL","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_PREEMPTIONCONTROL","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDRESUME","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_SUSPENDSCHEDULER","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_TDRCONTROL","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VGPU_RESET","features":[313]},{"name":"D3DKMT_VIDSCHESCAPETYPE_VIRTUAL_REFRESH_RATE","features":[313]},{"name":"D3DKMT_VIDSCH_ESCAPE","features":[313,305]},{"name":"D3DKMT_VIRTUALADDRESSFLAGS","features":[313]},{"name":"D3DKMT_VIRTUALADDRESSINFO","features":[313]},{"name":"D3DKMT_WAITFORIDLE","features":[313]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[313]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[313]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[313,305]},{"name":"D3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[313]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT","features":[313]},{"name":"D3DKMT_WAITFORVERTICALBLANKEVENT2","features":[313]},{"name":"D3DKMT_WDDM_1_2_CAPS","features":[313]},{"name":"D3DKMT_WDDM_1_3_CAPS","features":[313]},{"name":"D3DKMT_WDDM_2_0_CAPS","features":[313]},{"name":"D3DKMT_WDDM_2_7_CAPS","features":[313]},{"name":"D3DKMT_WDDM_2_9_CAPS","features":[313]},{"name":"D3DKMT_WDDM_3_0_CAPS","features":[313]},{"name":"D3DKMT_WDDM_3_1_CAPS","features":[313]},{"name":"D3DKMT_WORKINGSETFLAGS","features":[313]},{"name":"D3DKMT_WORKINGSETINFO","features":[313]},{"name":"D3DKMT_WSAUMDIMAGENAME","features":[313]},{"name":"D3DKMT_WaitCommandBuffer","features":[313]},{"name":"D3DKMT_XBOX","features":[313,305]},{"name":"D3DLINEPATTERN","features":[313]},{"name":"D3DNTCLEAR_COMPUTERECTS","features":[313]},{"name":"D3DNTDEVICEDESC_V3","features":[313,305,314]},{"name":"D3DNTDP2OP_ADDDIRTYBOX","features":[313]},{"name":"D3DNTDP2OP_ADDDIRTYRECT","features":[313]},{"name":"D3DNTDP2OP_BLT","features":[313]},{"name":"D3DNTDP2OP_BUFFERBLT","features":[313]},{"name":"D3DNTDP2OP_CLEAR","features":[313]},{"name":"D3DNTDP2OP_CLIPPEDTRIANGLEFAN","features":[313]},{"name":"D3DNTDP2OP_COLORFILL","features":[313]},{"name":"D3DNTDP2OP_COMPOSERECTS","features":[313]},{"name":"D3DNTDP2OP_CREATELIGHT","features":[313]},{"name":"D3DNTDP2OP_CREATEPIXELSHADER","features":[313]},{"name":"D3DNTDP2OP_CREATEQUERY","features":[313]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADER","features":[313]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERDECL","features":[313]},{"name":"D3DNTDP2OP_CREATEVERTEXSHADERFUNC","features":[313]},{"name":"D3DNTDP2OP_DELETEPIXELSHADER","features":[313]},{"name":"D3DNTDP2OP_DELETEQUERY","features":[313]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADER","features":[313]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERDECL","features":[313]},{"name":"D3DNTDP2OP_DELETEVERTEXSHADERFUNC","features":[313]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE","features":[313]},{"name":"D3DNTDP2OP_DRAWINDEXEDPRIMITIVE2","features":[313]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE","features":[313]},{"name":"D3DNTDP2OP_DRAWPRIMITIVE2","features":[313]},{"name":"D3DNTDP2OP_DRAWRECTPATCH","features":[313]},{"name":"D3DNTDP2OP_DRAWTRIPATCH","features":[313]},{"name":"D3DNTDP2OP_GENERATEMIPSUBLEVELS","features":[313]},{"name":"D3DNTDP2OP_INDEXEDLINELIST","features":[313]},{"name":"D3DNTDP2OP_INDEXEDLINELIST2","features":[313]},{"name":"D3DNTDP2OP_INDEXEDLINESTRIP","features":[313]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLEFAN","features":[313]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST","features":[313]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLELIST2","features":[313]},{"name":"D3DNTDP2OP_INDEXEDTRIANGLESTRIP","features":[313]},{"name":"D3DNTDP2OP_ISSUEQUERY","features":[313]},{"name":"D3DNTDP2OP_LINELIST","features":[313]},{"name":"D3DNTDP2OP_LINELIST_IMM","features":[313]},{"name":"D3DNTDP2OP_LINESTRIP","features":[313]},{"name":"D3DNTDP2OP_MULTIPLYTRANSFORM","features":[313]},{"name":"D3DNTDP2OP_POINTS","features":[313]},{"name":"D3DNTDP2OP_RENDERSTATE","features":[313]},{"name":"D3DNTDP2OP_RESPONSECONTINUE","features":[313]},{"name":"D3DNTDP2OP_RESPONSEQUERY","features":[313]},{"name":"D3DNTDP2OP_SETCLIPPLANE","features":[313]},{"name":"D3DNTDP2OP_SETCONVOLUTIONKERNELMONO","features":[313]},{"name":"D3DNTDP2OP_SETDEPTHSTENCIL","features":[313]},{"name":"D3DNTDP2OP_SETINDICES","features":[313]},{"name":"D3DNTDP2OP_SETLIGHT","features":[313]},{"name":"D3DNTDP2OP_SETMATERIAL","features":[313]},{"name":"D3DNTDP2OP_SETPALETTE","features":[313]},{"name":"D3DNTDP2OP_SETPIXELSHADER","features":[313]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONST","features":[313]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTB","features":[313]},{"name":"D3DNTDP2OP_SETPIXELSHADERCONSTI","features":[313]},{"name":"D3DNTDP2OP_SETPRIORITY","features":[313]},{"name":"D3DNTDP2OP_SETRENDERTARGET","features":[313]},{"name":"D3DNTDP2OP_SETRENDERTARGET2","features":[313]},{"name":"D3DNTDP2OP_SETSCISSORRECT","features":[313]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE","features":[313]},{"name":"D3DNTDP2OP_SETSTREAMSOURCE2","features":[313]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEFREQ","features":[313]},{"name":"D3DNTDP2OP_SETSTREAMSOURCEUM","features":[313]},{"name":"D3DNTDP2OP_SETTEXLOD","features":[313]},{"name":"D3DNTDP2OP_SETTRANSFORM","features":[313]},{"name":"D3DNTDP2OP_SETVERTEXSHADER","features":[313]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONST","features":[313]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTB","features":[313]},{"name":"D3DNTDP2OP_SETVERTEXSHADERCONSTI","features":[313]},{"name":"D3DNTDP2OP_SETVERTEXSHADERDECL","features":[313]},{"name":"D3DNTDP2OP_SETVERTEXSHADERFUNC","features":[313]},{"name":"D3DNTDP2OP_STATESET","features":[313]},{"name":"D3DNTDP2OP_SURFACEBLT","features":[313]},{"name":"D3DNTDP2OP_TEXBLT","features":[313]},{"name":"D3DNTDP2OP_TEXTURESTAGESTATE","features":[313]},{"name":"D3DNTDP2OP_TRIANGLEFAN","features":[313]},{"name":"D3DNTDP2OP_TRIANGLEFAN_IMM","features":[313]},{"name":"D3DNTDP2OP_TRIANGLELIST","features":[313]},{"name":"D3DNTDP2OP_TRIANGLESTRIP","features":[313]},{"name":"D3DNTDP2OP_UPDATEPALETTE","features":[313]},{"name":"D3DNTDP2OP_VIEWPORTINFO","features":[313]},{"name":"D3DNTDP2OP_VOLUMEBLT","features":[313]},{"name":"D3DNTDP2OP_WINFO","features":[313]},{"name":"D3DNTDP2OP_ZRANGE","features":[313]},{"name":"D3DNTHAL2_CB32_SETRENDERTARGET","features":[313]},{"name":"D3DNTHAL3_CB32_CLEAR2","features":[313]},{"name":"D3DNTHAL3_CB32_DRAWPRIMITIVES2","features":[313]},{"name":"D3DNTHAL3_CB32_RESERVED","features":[313]},{"name":"D3DNTHAL3_CB32_VALIDATETEXTURESTAGESTATE","features":[313]},{"name":"D3DNTHALDEVICEDESC_V1","features":[313,305,314]},{"name":"D3DNTHALDEVICEDESC_V2","features":[313,305,314]},{"name":"D3DNTHALDP2_EXECUTEBUFFER","features":[313]},{"name":"D3DNTHALDP2_REQCOMMANDBUFSIZE","features":[313]},{"name":"D3DNTHALDP2_REQVERTEXBUFSIZE","features":[313]},{"name":"D3DNTHALDP2_SWAPCOMMANDBUFFER","features":[313]},{"name":"D3DNTHALDP2_SWAPVERTEXBUFFER","features":[313]},{"name":"D3DNTHALDP2_USERMEMVERTICES","features":[313]},{"name":"D3DNTHALDP2_VIDMEMCOMMANDBUF","features":[313]},{"name":"D3DNTHALDP2_VIDMEMVERTEXBUF","features":[313]},{"name":"D3DNTHAL_CALLBACKS","features":[313,305,315]},{"name":"D3DNTHAL_CALLBACKS2","features":[313,305,315]},{"name":"D3DNTHAL_CALLBACKS3","features":[313,305,314,315]},{"name":"D3DNTHAL_CLEAR2DATA","features":[313,314]},{"name":"D3DNTHAL_CLIPPEDTRIANGLEFAN","features":[313]},{"name":"D3DNTHAL_COL_WEIGHTS","features":[313]},{"name":"D3DNTHAL_CONTEXTCREATEDATA","features":[313,305,315]},{"name":"D3DNTHAL_CONTEXTDESTROYALLDATA","features":[313]},{"name":"D3DNTHAL_CONTEXTDESTROYDATA","features":[313]},{"name":"D3DNTHAL_CONTEXT_BAD","features":[313]},{"name":"D3DNTHAL_D3DDX6EXTENDEDCAPS","features":[313]},{"name":"D3DNTHAL_D3DEXTENDEDCAPS","features":[313]},{"name":"D3DNTHAL_DP2ADDDIRTYBOX","features":[313,314]},{"name":"D3DNTHAL_DP2ADDDIRTYRECT","features":[313,305]},{"name":"D3DNTHAL_DP2BLT","features":[313,305]},{"name":"D3DNTHAL_DP2BUFFERBLT","features":[313,314]},{"name":"D3DNTHAL_DP2CLEAR","features":[313,305]},{"name":"D3DNTHAL_DP2COLORFILL","features":[313,305]},{"name":"D3DNTHAL_DP2COMMAND","features":[313]},{"name":"D3DNTHAL_DP2COMPOSERECTS","features":[313,314]},{"name":"D3DNTHAL_DP2CREATELIGHT","features":[313]},{"name":"D3DNTHAL_DP2CREATEPIXELSHADER","features":[313]},{"name":"D3DNTHAL_DP2CREATEQUERY","features":[313,314]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADER","features":[313]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERDECL","features":[313]},{"name":"D3DNTHAL_DP2CREATEVERTEXSHADERFUNC","features":[313]},{"name":"D3DNTHAL_DP2DELETEQUERY","features":[313]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE","features":[313,314]},{"name":"D3DNTHAL_DP2DRAWINDEXEDPRIMITIVE2","features":[313,314]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE","features":[313,314]},{"name":"D3DNTHAL_DP2DRAWPRIMITIVE2","features":[313,314]},{"name":"D3DNTHAL_DP2DRAWRECTPATCH","features":[313]},{"name":"D3DNTHAL_DP2DRAWTRIPATCH","features":[313]},{"name":"D3DNTHAL_DP2EXT","features":[313]},{"name":"D3DNTHAL_DP2GENERATEMIPSUBLEVELS","features":[313,314]},{"name":"D3DNTHAL_DP2INDEXEDLINELIST","features":[313]},{"name":"D3DNTHAL_DP2INDEXEDLINESTRIP","features":[313]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLEFAN","features":[313]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST","features":[313]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLELIST2","features":[313]},{"name":"D3DNTHAL_DP2INDEXEDTRIANGLESTRIP","features":[313]},{"name":"D3DNTHAL_DP2ISSUEQUERY","features":[313]},{"name":"D3DNTHAL_DP2LINELIST","features":[313]},{"name":"D3DNTHAL_DP2LINESTRIP","features":[313]},{"name":"D3DNTHAL_DP2MULTIPLYTRANSFORM","features":[68,313,314]},{"name":"D3DNTHAL_DP2OPERATION","features":[313]},{"name":"D3DNTHAL_DP2PIXELSHADER","features":[313]},{"name":"D3DNTHAL_DP2POINTS","features":[313]},{"name":"D3DNTHAL_DP2RENDERSTATE","features":[313,314]},{"name":"D3DNTHAL_DP2RESPONSE","features":[313]},{"name":"D3DNTHAL_DP2RESPONSEQUERY","features":[313]},{"name":"D3DNTHAL_DP2SETCLIPPLANE","features":[313]},{"name":"D3DNTHAL_DP2SETCONVOLUTIONKERNELMONO","features":[313]},{"name":"D3DNTHAL_DP2SETDEPTHSTENCIL","features":[313]},{"name":"D3DNTHAL_DP2SETINDICES","features":[313]},{"name":"D3DNTHAL_DP2SETLIGHT","features":[313]},{"name":"D3DNTHAL_DP2SETPALETTE","features":[313]},{"name":"D3DNTHAL_DP2SETPIXELSHADERCONST","features":[313]},{"name":"D3DNTHAL_DP2SETPRIORITY","features":[313]},{"name":"D3DNTHAL_DP2SETRENDERTARGET","features":[313]},{"name":"D3DNTHAL_DP2SETRENDERTARGET2","features":[313]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE","features":[313]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCE2","features":[313]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEFREQ","features":[313]},{"name":"D3DNTHAL_DP2SETSTREAMSOURCEUM","features":[313]},{"name":"D3DNTHAL_DP2SETTEXLOD","features":[313]},{"name":"D3DNTHAL_DP2SETTRANSFORM","features":[68,313,314]},{"name":"D3DNTHAL_DP2SETVERTEXSHADERCONST","features":[313]},{"name":"D3DNTHAL_DP2STARTVERTEX","features":[313]},{"name":"D3DNTHAL_DP2STATESET","features":[313,314]},{"name":"D3DNTHAL_DP2SURFACEBLT","features":[313,305]},{"name":"D3DNTHAL_DP2TEXBLT","features":[313,305]},{"name":"D3DNTHAL_DP2TEXTURESTAGESTATE","features":[313]},{"name":"D3DNTHAL_DP2TRIANGLEFAN","features":[313]},{"name":"D3DNTHAL_DP2TRIANGLEFAN_IMM","features":[313]},{"name":"D3DNTHAL_DP2TRIANGLELIST","features":[313]},{"name":"D3DNTHAL_DP2TRIANGLESTRIP","features":[313]},{"name":"D3DNTHAL_DP2UPDATEPALETTE","features":[313]},{"name":"D3DNTHAL_DP2VERTEXSHADER","features":[313]},{"name":"D3DNTHAL_DP2VIEWPORTINFO","features":[313]},{"name":"D3DNTHAL_DP2VOLUMEBLT","features":[313,314]},{"name":"D3DNTHAL_DP2WINFO","features":[313]},{"name":"D3DNTHAL_DP2ZRANGE","features":[313]},{"name":"D3DNTHAL_DRAWPRIMITIVES2DATA","features":[313,305,315]},{"name":"D3DNTHAL_GLOBALDRIVERDATA","features":[313,305,314,315]},{"name":"D3DNTHAL_NUMCLIPVERTICES","features":[313]},{"name":"D3DNTHAL_OUTOFCONTEXTS","features":[313]},{"name":"D3DNTHAL_ROW_WEIGHTS","features":[313]},{"name":"D3DNTHAL_SCENECAPTUREDATA","features":[313]},{"name":"D3DNTHAL_SCENE_CAPTURE_END","features":[313]},{"name":"D3DNTHAL_SCENE_CAPTURE_START","features":[313]},{"name":"D3DNTHAL_SETRENDERTARGETDATA","features":[313,305,315]},{"name":"D3DNTHAL_STATESETCREATE","features":[313]},{"name":"D3DNTHAL_TEXTURECREATEDATA","features":[313,305]},{"name":"D3DNTHAL_TEXTUREDESTROYDATA","features":[313]},{"name":"D3DNTHAL_TEXTUREGETSURFDATA","features":[313,305]},{"name":"D3DNTHAL_TEXTURESWAPDATA","features":[313]},{"name":"D3DNTHAL_TSS_MAXSTAGES","features":[313]},{"name":"D3DNTHAL_TSS_RENDERSTATEBASE","features":[313]},{"name":"D3DNTHAL_TSS_STATESPERSTAGE","features":[313]},{"name":"D3DNTHAL_VALIDATETEXTURESTAGESTATEDATA","features":[313]},{"name":"D3DPMISCCAPS_FOGINFVF","features":[313]},{"name":"D3DPMISCCAPS_LINEPATTERNREP","features":[313]},{"name":"D3DPRASTERCAPS_PAT","features":[313]},{"name":"D3DPRASTERCAPS_STRETCHBLTMULTISAMPLE","features":[313]},{"name":"D3DPS_COLOROUT_MAX_V2_0","features":[313]},{"name":"D3DPS_COLOROUT_MAX_V2_1","features":[313]},{"name":"D3DPS_COLOROUT_MAX_V3_0","features":[313]},{"name":"D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[313]},{"name":"D3DPS_CONSTBOOLREG_MAX_V2_1","features":[313]},{"name":"D3DPS_CONSTBOOLREG_MAX_V3_0","features":[313]},{"name":"D3DPS_CONSTINTREG_MAX_SW_DX9","features":[313]},{"name":"D3DPS_CONSTINTREG_MAX_V2_1","features":[313]},{"name":"D3DPS_CONSTINTREG_MAX_V3_0","features":[313]},{"name":"D3DPS_CONSTREG_MAX_DX8","features":[313]},{"name":"D3DPS_CONSTREG_MAX_SW_DX9","features":[313]},{"name":"D3DPS_CONSTREG_MAX_V1_1","features":[313]},{"name":"D3DPS_CONSTREG_MAX_V1_2","features":[313]},{"name":"D3DPS_CONSTREG_MAX_V1_3","features":[313]},{"name":"D3DPS_CONSTREG_MAX_V1_4","features":[313]},{"name":"D3DPS_CONSTREG_MAX_V2_0","features":[313]},{"name":"D3DPS_CONSTREG_MAX_V2_1","features":[313]},{"name":"D3DPS_CONSTREG_MAX_V3_0","features":[313]},{"name":"D3DPS_INPUTREG_MAX_DX8","features":[313]},{"name":"D3DPS_INPUTREG_MAX_SW_DX9","features":[313]},{"name":"D3DPS_INPUTREG_MAX_V1_1","features":[313]},{"name":"D3DPS_INPUTREG_MAX_V1_2","features":[313]},{"name":"D3DPS_INPUTREG_MAX_V1_3","features":[313]},{"name":"D3DPS_INPUTREG_MAX_V1_4","features":[313]},{"name":"D3DPS_INPUTREG_MAX_V2_0","features":[313]},{"name":"D3DPS_INPUTREG_MAX_V2_1","features":[313]},{"name":"D3DPS_INPUTREG_MAX_V3_0","features":[313]},{"name":"D3DPS_MAXLOOPINITVALUE_V2_1","features":[313]},{"name":"D3DPS_MAXLOOPINITVALUE_V3_0","features":[313]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[313]},{"name":"D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[313]},{"name":"D3DPS_MAXLOOPSTEP_V2_1","features":[313]},{"name":"D3DPS_MAXLOOPSTEP_V3_0","features":[313]},{"name":"D3DPS_PREDICATE_MAX_V2_1","features":[313]},{"name":"D3DPS_PREDICATE_MAX_V3_0","features":[313]},{"name":"D3DPS_TEMPREG_MAX_DX8","features":[313]},{"name":"D3DPS_TEMPREG_MAX_V1_1","features":[313]},{"name":"D3DPS_TEMPREG_MAX_V1_2","features":[313]},{"name":"D3DPS_TEMPREG_MAX_V1_3","features":[313]},{"name":"D3DPS_TEMPREG_MAX_V1_4","features":[313]},{"name":"D3DPS_TEMPREG_MAX_V2_0","features":[313]},{"name":"D3DPS_TEMPREG_MAX_V2_1","features":[313]},{"name":"D3DPS_TEMPREG_MAX_V3_0","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_DX8","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_V1_1","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_V1_2","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_V1_3","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_V1_4","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_V2_0","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_V2_1","features":[313]},{"name":"D3DPS_TEXTUREREG_MAX_V3_0","features":[313]},{"name":"D3DRENDERSTATE_EVICTMANAGEDTEXTURES","features":[313]},{"name":"D3DRENDERSTATE_SCENECAPTURE","features":[313]},{"name":"D3DRS_DELETERTPATCH","features":[313]},{"name":"D3DRS_MAXPIXELSHADERINST","features":[313]},{"name":"D3DRS_MAXVERTEXSHADERINST","features":[313]},{"name":"D3DTEXF_FLATCUBIC","features":[313]},{"name":"D3DTEXF_GAUSSIANCUBIC","features":[313]},{"name":"D3DTRANSFORMSTATE_WORLD1_DX7","features":[313]},{"name":"D3DTRANSFORMSTATE_WORLD2_DX7","features":[313]},{"name":"D3DTRANSFORMSTATE_WORLD3_DX7","features":[313]},{"name":"D3DTRANSFORMSTATE_WORLD_DX7","features":[313]},{"name":"D3DTSS_TEXTUREMAP","features":[313]},{"name":"D3DVSDE_BLENDINDICES","features":[313]},{"name":"D3DVSDE_BLENDWEIGHT","features":[313]},{"name":"D3DVSDE_DIFFUSE","features":[313]},{"name":"D3DVSDE_NORMAL","features":[313]},{"name":"D3DVSDE_NORMAL2","features":[313]},{"name":"D3DVSDE_POSITION","features":[313]},{"name":"D3DVSDE_POSITION2","features":[313]},{"name":"D3DVSDE_PSIZE","features":[313]},{"name":"D3DVSDE_SPECULAR","features":[313]},{"name":"D3DVSDE_TEXCOORD0","features":[313]},{"name":"D3DVSDE_TEXCOORD1","features":[313]},{"name":"D3DVSDE_TEXCOORD2","features":[313]},{"name":"D3DVSDE_TEXCOORD3","features":[313]},{"name":"D3DVSDE_TEXCOORD4","features":[313]},{"name":"D3DVSDE_TEXCOORD5","features":[313]},{"name":"D3DVSDE_TEXCOORD6","features":[313]},{"name":"D3DVSDE_TEXCOORD7","features":[313]},{"name":"D3DVSDT_D3DCOLOR","features":[313]},{"name":"D3DVSDT_FLOAT1","features":[313]},{"name":"D3DVSDT_FLOAT2","features":[313]},{"name":"D3DVSDT_FLOAT3","features":[313]},{"name":"D3DVSDT_FLOAT4","features":[313]},{"name":"D3DVSDT_SHORT2","features":[313]},{"name":"D3DVSDT_SHORT4","features":[313]},{"name":"D3DVSDT_UBYTE4","features":[313]},{"name":"D3DVSD_CONSTADDRESSSHIFT","features":[313]},{"name":"D3DVSD_CONSTCOUNTSHIFT","features":[313]},{"name":"D3DVSD_CONSTRSSHIFT","features":[313]},{"name":"D3DVSD_DATALOADTYPESHIFT","features":[313]},{"name":"D3DVSD_DATATYPESHIFT","features":[313]},{"name":"D3DVSD_EXTCOUNTSHIFT","features":[313]},{"name":"D3DVSD_EXTINFOSHIFT","features":[313]},{"name":"D3DVSD_SKIPCOUNTSHIFT","features":[313]},{"name":"D3DVSD_STREAMNUMBERSHIFT","features":[313]},{"name":"D3DVSD_STREAMTESSSHIFT","features":[313]},{"name":"D3DVSD_TOKENTYPE","features":[313]},{"name":"D3DVSD_TOKENTYPESHIFT","features":[313]},{"name":"D3DVSD_TOKEN_CONSTMEM","features":[313]},{"name":"D3DVSD_TOKEN_END","features":[313]},{"name":"D3DVSD_TOKEN_EXT","features":[313]},{"name":"D3DVSD_TOKEN_NOP","features":[313]},{"name":"D3DVSD_TOKEN_STREAM","features":[313]},{"name":"D3DVSD_TOKEN_STREAMDATA","features":[313]},{"name":"D3DVSD_TOKEN_TESSELLATOR","features":[313]},{"name":"D3DVSD_VERTEXREGINSHIFT","features":[313]},{"name":"D3DVSD_VERTEXREGSHIFT","features":[313]},{"name":"D3DVS_ADDRREG_MAX_V1_1","features":[313]},{"name":"D3DVS_ADDRREG_MAX_V2_0","features":[313]},{"name":"D3DVS_ADDRREG_MAX_V2_1","features":[313]},{"name":"D3DVS_ADDRREG_MAX_V3_0","features":[313]},{"name":"D3DVS_ATTROUTREG_MAX_V1_1","features":[313]},{"name":"D3DVS_ATTROUTREG_MAX_V2_0","features":[313]},{"name":"D3DVS_ATTROUTREG_MAX_V2_1","features":[313]},{"name":"D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[313]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_0","features":[313]},{"name":"D3DVS_CONSTBOOLREG_MAX_V2_1","features":[313]},{"name":"D3DVS_CONSTBOOLREG_MAX_V3_0","features":[313]},{"name":"D3DVS_CONSTINTREG_MAX_SW_DX9","features":[313]},{"name":"D3DVS_CONSTINTREG_MAX_V2_0","features":[313]},{"name":"D3DVS_CONSTINTREG_MAX_V2_1","features":[313]},{"name":"D3DVS_CONSTINTREG_MAX_V3_0","features":[313]},{"name":"D3DVS_CONSTREG_MAX_V1_1","features":[313]},{"name":"D3DVS_CONSTREG_MAX_V2_0","features":[313]},{"name":"D3DVS_CONSTREG_MAX_V2_1","features":[313]},{"name":"D3DVS_CONSTREG_MAX_V3_0","features":[313]},{"name":"D3DVS_INPUTREG_MAX_V1_1","features":[313]},{"name":"D3DVS_INPUTREG_MAX_V2_0","features":[313]},{"name":"D3DVS_INPUTREG_MAX_V2_1","features":[313]},{"name":"D3DVS_INPUTREG_MAX_V3_0","features":[313]},{"name":"D3DVS_LABEL_MAX_V3_0","features":[313]},{"name":"D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[313]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_0","features":[313]},{"name":"D3DVS_MAXLOOPINITVALUE_V2_1","features":[313]},{"name":"D3DVS_MAXLOOPINITVALUE_V3_0","features":[313]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[313]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[313]},{"name":"D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[313]},{"name":"D3DVS_MAXLOOPSTEP_V2_0","features":[313]},{"name":"D3DVS_MAXLOOPSTEP_V2_1","features":[313]},{"name":"D3DVS_MAXLOOPSTEP_V3_0","features":[313]},{"name":"D3DVS_OUTPUTREG_MAX_SW_DX9","features":[313]},{"name":"D3DVS_OUTPUTREG_MAX_V3_0","features":[313]},{"name":"D3DVS_PREDICATE_MAX_V2_1","features":[313]},{"name":"D3DVS_PREDICATE_MAX_V3_0","features":[313]},{"name":"D3DVS_TCRDOUTREG_MAX_V1_1","features":[313]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_0","features":[313]},{"name":"D3DVS_TCRDOUTREG_MAX_V2_1","features":[313]},{"name":"D3DVS_TEMPREG_MAX_V1_1","features":[313]},{"name":"D3DVS_TEMPREG_MAX_V2_0","features":[313]},{"name":"D3DVS_TEMPREG_MAX_V2_1","features":[313]},{"name":"D3DVS_TEMPREG_MAX_V3_0","features":[313]},{"name":"D3DVTXPCAPS_NO_VSDT_UBYTE4","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_VISTA","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM1_3","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M1_3","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_0_M2_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_3","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_1_4","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_2_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_3_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_4_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_5_3","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_3","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_6_4","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_7_2","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_8_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM2_9_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_0_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WDDM3_1_1","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN7","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_CP","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_M3","features":[313]},{"name":"D3D_UMD_INTERFACE_VERSION_WIN8_RC","features":[313]},{"name":"DDBLT_EXTENDED_PRESENTATION_STRETCHFACTOR","features":[313]},{"name":"DDNT_DEFERRED_AGP_AWARE_DATA","features":[313]},{"name":"DDNT_DXVERSION","features":[313]},{"name":"DDNT_FREE_DEFERRED_AGP_DATA","features":[313]},{"name":"DDNT_GETADAPTERGROUPDATA","features":[313]},{"name":"DDNT_GETD3DQUERYCOUNTDATA","features":[313]},{"name":"DDNT_GETD3DQUERYDATA","features":[313,314]},{"name":"DDNT_GETDDIVERSIONDATA","features":[313]},{"name":"DDNT_GETDRIVERINFO2DATA","features":[313]},{"name":"DDNT_GETEXTENDEDMODECOUNTDATA","features":[313]},{"name":"DDNT_GETEXTENDEDMODEDATA","features":[313,314]},{"name":"DDNT_GETFORMATCOUNTDATA","features":[313]},{"name":"DDNT_GETFORMATDATA","features":[313,315]},{"name":"DDNT_MULTISAMPLEQUALITYLEVELSDATA","features":[313,314]},{"name":"DD_DEFERRED_AGP_AWARE_DATA","features":[313]},{"name":"DD_DXVERSION","features":[313]},{"name":"DD_FREE_DEFERRED_AGP_DATA","features":[313]},{"name":"DD_GETADAPTERGROUPDATA","features":[313]},{"name":"DD_GETD3DQUERYCOUNTDATA","features":[313]},{"name":"DD_GETD3DQUERYDATA","features":[313,314]},{"name":"DD_GETDDIVERSIONDATA","features":[313]},{"name":"DD_GETDRIVERINFO2DATA","features":[313]},{"name":"DD_GETEXTENDEDMODECOUNTDATA","features":[313]},{"name":"DD_GETEXTENDEDMODEDATA","features":[313,314]},{"name":"DD_GETFORMATCOUNTDATA","features":[313]},{"name":"DD_GETFORMATDATA","features":[313,315]},{"name":"DD_MULTISAMPLEQUALITYLEVELSDATA","features":[313,314]},{"name":"DIDDT1_AspectRatio_15x9","features":[313]},{"name":"DIDDT1_AspectRatio_16x10","features":[313]},{"name":"DIDDT1_AspectRatio_16x9","features":[313]},{"name":"DIDDT1_AspectRatio_1x1","features":[313]},{"name":"DIDDT1_AspectRatio_4x3","features":[313]},{"name":"DIDDT1_AspectRatio_5x4","features":[313]},{"name":"DIDDT1_Dependent","features":[313]},{"name":"DIDDT1_Interlaced","features":[313]},{"name":"DIDDT1_Monoscopic","features":[313]},{"name":"DIDDT1_Progressive","features":[313]},{"name":"DIDDT1_Stereo","features":[313]},{"name":"DIDDT1_Sync_Negative","features":[313]},{"name":"DIDDT1_Sync_Positive","features":[313]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I","features":[313]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_ASPECT_RATIO","features":[313]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SCANNING_MODE","features":[313]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SIZE","features":[313]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_STEREO_MODE","features":[313]},{"name":"DISPLAYID_DETAILED_TIMING_TYPE_I_SYNC_POLARITY","features":[313]},{"name":"DP2BLT_LINEAR","features":[313]},{"name":"DP2BLT_POINT","features":[313]},{"name":"DX9_DDI_VERSION","features":[313]},{"name":"DXGKARG_SETPALETTE","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_VISTA_SP1","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM1_3_PATH_INDEPENDENT_ROTATION","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_0","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_5","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_1_6","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_2","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_3","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_4","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_5","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_6","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_7","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_8","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM2_9","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_0","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WDDM3_1","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN7","features":[313]},{"name":"DXGKDDI_INTERFACE_VERSION_WIN8","features":[313]},{"name":"DXGKDT_OPM_DVI_CHARACTERISTICS","features":[313]},{"name":"DXGKMDT_CERTIFICATE_TYPE","features":[313]},{"name":"DXGKMDT_COPP_CERTIFICATE","features":[313]},{"name":"DXGKMDT_I2C_DEVICE_TRANSMITS_DATA_LENGTH","features":[313]},{"name":"DXGKMDT_I2C_NO_FLAGS","features":[313]},{"name":"DXGKMDT_INDIRECT_DISPLAY_CERTIFICATE","features":[313]},{"name":"DXGKMDT_OPM_128_BIT_RANDOM_NUMBER_SIZE","features":[313]},{"name":"DXGKMDT_OPM_ACP_AND_CGMSA_SIGNALING","features":[313]},{"name":"DXGKMDT_OPM_ACP_LEVEL_ONE","features":[313]},{"name":"DXGKMDT_OPM_ACP_LEVEL_THREE","features":[313]},{"name":"DXGKMDT_OPM_ACP_LEVEL_TWO","features":[313]},{"name":"DXGKMDT_OPM_ACP_OFF","features":[313]},{"name":"DXGKMDT_OPM_ACP_PROTECTION_LEVEL","features":[313]},{"name":"DXGKMDT_OPM_ACTUAL_OUTPUT_FORMAT","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_CENTER","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_TOP","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_CENTER","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_TOP","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_BOX_GT_16_BY_9_CENTER","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_16_BY_9_ANAMORPHIC","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3","features":[313]},{"name":"DXGKMDT_OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3_PROTECTED_CENTER","features":[313]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[313]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[313]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_INSIDE_OF_CHIPSET","features":[313]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_NON_STANDARD","features":[313]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[313]},{"name":"DXGKMDT_OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[313]},{"name":"DXGKMDT_OPM_BUS_TYPE_AGP","features":[313]},{"name":"DXGKMDT_OPM_BUS_TYPE_AND_IMPLEMENTATION","features":[313]},{"name":"DXGKMDT_OPM_BUS_TYPE_OTHER","features":[313]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCI","features":[313]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIEXPRESS","features":[313]},{"name":"DXGKMDT_OPM_BUS_TYPE_PCIX","features":[313]},{"name":"DXGKMDT_OPM_CERTIFICATE","features":[313]},{"name":"DXGKMDT_OPM_CGMSA","features":[313]},{"name":"DXGKMDT_OPM_CGMSA_COPY_FREELY","features":[313]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NEVER","features":[313]},{"name":"DXGKMDT_OPM_CGMSA_COPY_NO_MORE","features":[313]},{"name":"DXGKMDT_OPM_CGMSA_COPY_ONE_GENERATION","features":[313]},{"name":"DXGKMDT_OPM_CGMSA_OFF","features":[313]},{"name":"DXGKMDT_OPM_CONFIGURE_PARAMETERS","features":[313]},{"name":"DXGKMDT_OPM_CONFIGURE_SETTING_DATA_SIZE","features":[313]},{"name":"DXGKMDT_OPM_CONNECTED_HDCP_DEVICE_INFORMATION","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPONENT_VIDEO","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_COMPOSITE_VIDEO","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EMBEDDED","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DISPLAYPORT_EXTERNAL","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_DVI","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_D_JPN","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HD15","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_HDMI","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_LVDS","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_MIRACAST","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_OTHER","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_RESERVED","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SDI","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_SVIDEO","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EMBEDDED","features":[313]},{"name":"DXGKMDT_OPM_CONNECTOR_TYPE_UDI_EXTERNAL","features":[313]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_BUS_TYPE_INTEGRATED","features":[313]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_CONNECTOR_TYPE_INTERNAL","features":[313]},{"name":"DXGKMDT_OPM_COPP_COMPATIBLE_GET_INFO_PARAMETERS","features":[313]},{"name":"DXGKMDT_OPM_CREATE_VIDEO_OUTPUT_FOR_TARGET_PARAMETERS","features":[313,305]},{"name":"DXGKMDT_OPM_DPCP_OFF","features":[313]},{"name":"DXGKMDT_OPM_DPCP_ON","features":[313]},{"name":"DXGKMDT_OPM_DPCP_PROTECTION_LEVEL","features":[313]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_0","features":[313]},{"name":"DXGKMDT_OPM_DVI_CHARACTERISTIC_1_1_OR_ABOVE","features":[313]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS","features":[313]},{"name":"DXGKMDT_OPM_ENCRYPTED_PARAMETERS_SIZE","features":[313]},{"name":"DXGKMDT_OPM_GET_ACP_AND_CGMSA_SIGNALING","features":[313]},{"name":"DXGKMDT_OPM_GET_ACTUAL_OUTPUT_FORMAT","features":[313]},{"name":"DXGKMDT_OPM_GET_ACTUAL_PROTECTION_LEVEL","features":[313]},{"name":"DXGKMDT_OPM_GET_ADAPTER_BUS_TYPE","features":[313]},{"name":"DXGKMDT_OPM_GET_CODEC_INFO","features":[313]},{"name":"DXGKMDT_OPM_GET_CONNECTED_HDCP_DEVICE_INFORMATION","features":[313]},{"name":"DXGKMDT_OPM_GET_CONNECTOR_TYPE","features":[313]},{"name":"DXGKMDT_OPM_GET_CURRENT_HDCP_SRM_VERSION","features":[313]},{"name":"DXGKMDT_OPM_GET_DVI_CHARACTERISTICS","features":[313]},{"name":"DXGKMDT_OPM_GET_INFORMATION_PARAMETERS_SIZE","features":[313]},{"name":"DXGKMDT_OPM_GET_INFO_PARAMETERS","features":[313]},{"name":"DXGKMDT_OPM_GET_OUTPUT_HARDWARE_PROTECTION_SUPPORT","features":[313]},{"name":"DXGKMDT_OPM_GET_OUTPUT_ID","features":[313]},{"name":"DXGKMDT_OPM_GET_SUPPORTED_PROTECTION_TYPES","features":[313]},{"name":"DXGKMDT_OPM_GET_VIRTUAL_PROTECTION_LEVEL","features":[313]},{"name":"DXGKMDT_OPM_HDCP_FLAG","features":[313]},{"name":"DXGKMDT_OPM_HDCP_FLAG_NONE","features":[313]},{"name":"DXGKMDT_OPM_HDCP_FLAG_REPEATER","features":[313]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR","features":[313]},{"name":"DXGKMDT_OPM_HDCP_KEY_SELECTION_VECTOR_SIZE","features":[313]},{"name":"DXGKMDT_OPM_HDCP_OFF","features":[313]},{"name":"DXGKMDT_OPM_HDCP_ON","features":[313]},{"name":"DXGKMDT_OPM_HDCP_PROTECTION_LEVEL","features":[313]},{"name":"DXGKMDT_OPM_IMAGE_ASPECT_RATIO_EN300294","features":[313]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT","features":[313]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_EVEN_FIRST","features":[313]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_INTERLEAVED_ODD_FIRST","features":[313]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_OTHER","features":[313]},{"name":"DXGKMDT_OPM_INTERLEAVE_FORMAT_PROGRESSIVE","features":[313]},{"name":"DXGKMDT_OPM_OMAC","features":[313]},{"name":"DXGKMDT_OPM_OMAC_SIZE","features":[313]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION","features":[313]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_NOT_SUPPORTED","features":[313]},{"name":"DXGKMDT_OPM_OUTPUT_HARDWARE_PROTECTION_SUPPORTED","features":[313]},{"name":"DXGKMDT_OPM_OUTPUT_ID","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_1125I","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525I","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_525P","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_ARIBTRB15_750P","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_1125I","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_525P","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEA_750P","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_1125I","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_525P","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_CEA805A_TYPEB_750P","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EIA608B_525","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_EN300294_625I","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_2_525I","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC61880_525I","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_IEC62375_625P","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_NONE","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_STANDARD_OTHER","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_ACP","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_CGMSA","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_COPP_COMPATIBLE_HDCP","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_DPCP","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_HDCP","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_MASK","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_NONE","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_OTHER","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_SIZE","features":[313]},{"name":"DXGKMDT_OPM_PROTECTION_TYPE_TYPE_ENFORCEMENT_HDCP","features":[313]},{"name":"DXGKMDT_OPM_RANDOM_NUMBER","features":[313]},{"name":"DXGKMDT_OPM_REDISTRIBUTION_CONTROL_REQUIRED","features":[313]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION","features":[313]},{"name":"DXGKMDT_OPM_REQUESTED_INFORMATION_SIZE","features":[313]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING","features":[313]},{"name":"DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING_PARAMETERS","features":[313]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM","features":[313]},{"name":"DXGKMDT_OPM_SET_HDCP_SRM_PARAMETERS","features":[313]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL","features":[313]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_ACCORDING_TO_CSS_DVD","features":[313]},{"name":"DXGKMDT_OPM_SET_PROTECTION_LEVEL_PARAMETERS","features":[313]},{"name":"DXGKMDT_OPM_STANDARD_INFORMATION","features":[313]},{"name":"DXGKMDT_OPM_STATUS","features":[313]},{"name":"DXGKMDT_OPM_STATUS_LINK_LOST","features":[313]},{"name":"DXGKMDT_OPM_STATUS_NORMAL","features":[313]},{"name":"DXGKMDT_OPM_STATUS_RENEGOTIATION_REQUIRED","features":[313]},{"name":"DXGKMDT_OPM_STATUS_REVOKED_HDCP_DEVICE_ATTACHED","features":[313]},{"name":"DXGKMDT_OPM_STATUS_TAMPERING_DETECTED","features":[313]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_OFF","features":[313]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_NO_TYPE_RESTRICTION","features":[313]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_TYPE1_RESTRICTION","features":[313]},{"name":"DXGKMDT_OPM_TYPE_ENFORCEMENT_HDCP_PROTECTION_LEVEL","features":[313]},{"name":"DXGKMDT_OPM_VIDEO_OUTPUT_SEMANTICS","features":[313]},{"name":"DXGKMDT_OPM_VOS_COPP_SEMANTICS","features":[313]},{"name":"DXGKMDT_OPM_VOS_OPM_INDIRECT_DISPLAY","features":[313]},{"name":"DXGKMDT_OPM_VOS_OPM_SEMANTICS","features":[313]},{"name":"DXGKMDT_UAB_CERTIFICATE","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME0","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_FRAME1","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_MODE","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FLIP_NONE","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_CHECKERBOARD","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_COLUMN_INTERLEAVED","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_MONO_OFFSET","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_ROW_INTERLEAVED","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STEREO_FORMAT_SEPARATE","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_BILINEAR","features":[313]},{"name":"DXGKMT_MULTIPLANE_OVERLAY_STRETCH_QUALITY_HIGH","features":[313]},{"name":"DXGKMT_POWER_SHARED_TYPE","features":[313]},{"name":"DXGKMT_POWER_SHARED_TYPE_AUDIO","features":[313]},{"name":"DXGKVGPU_ESCAPE_HEAD","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_INITIALIZE","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_PAUSE","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_POWERTRANSITIONCOMPLETE","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_READ_PCI_CONFIG","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_READ_VGPU_TYPE","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_RELEASE","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_RESUME","features":[313,305]},{"name":"DXGKVGPU_ESCAPE_TYPE","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_GET_VGPU_TYPE","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_INITIALIZE","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_PAUSE","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_POWERTRANSITIONCOMPLETE","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_READ_PCI_CONFIG","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_RELEASE","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_RESUME","features":[313]},{"name":"DXGKVGPU_ESCAPE_TYPE_WRITE_PCI_CONFIG","features":[313]},{"name":"DXGKVGPU_ESCAPE_WRITE_PCI_CONFIG","features":[313,305]},{"name":"DXGK_ADAPTER_PERFDATA","features":[313]},{"name":"DXGK_ADAPTER_PERFDATACAPS","features":[313]},{"name":"DXGK_BACKLIGHT_INFO","features":[313]},{"name":"DXGK_BACKLIGHT_OPTIMIZATION_LEVEL","features":[313]},{"name":"DXGK_BRIGHTNESS_CAPS","features":[313]},{"name":"DXGK_BRIGHTNESS_GET_NIT_RANGES_OUT","features":[313]},{"name":"DXGK_BRIGHTNESS_GET_OUT","features":[313]},{"name":"DXGK_BRIGHTNESS_MAXIMUM_NIT_RANGE_COUNT","features":[313]},{"name":"DXGK_BRIGHTNESS_NIT_RANGE","features":[313]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA","features":[313]},{"name":"DXGK_BRIGHTNESS_SENSOR_DATA_CHROMATICITY","features":[313]},{"name":"DXGK_BRIGHTNESS_SET_IN","features":[313]},{"name":"DXGK_BRIGHTNESS_STATE","features":[313]},{"name":"DXGK_CHILD_DEVICE_HPD_AWARENESS","features":[313]},{"name":"DXGK_DDT_DISPLAYID","features":[313]},{"name":"DXGK_DDT_EDID","features":[313]},{"name":"DXGK_DDT_INVALID","features":[313]},{"name":"DXGK_DIAG_PROCESS_NAME_LENGTH","features":[313]},{"name":"DXGK_DISPLAY_DESCRIPTOR_TYPE","features":[313]},{"name":"DXGK_DISPLAY_INFORMATION","features":[313]},{"name":"DXGK_DISPLAY_TECHNOLOGY","features":[313]},{"name":"DXGK_DISPLAY_USAGE","features":[313]},{"name":"DXGK_DT_INVALID","features":[313]},{"name":"DXGK_DT_LCD","features":[313]},{"name":"DXGK_DT_MAX","features":[313]},{"name":"DXGK_DT_OLED","features":[313]},{"name":"DXGK_DT_OTHER","features":[313]},{"name":"DXGK_DT_PROJECTOR","features":[313]},{"name":"DXGK_DU_ACCESSORY","features":[313]},{"name":"DXGK_DU_AR","features":[313]},{"name":"DXGK_DU_GENERIC","features":[313]},{"name":"DXGK_DU_INVALID","features":[313]},{"name":"DXGK_DU_MAX","features":[313]},{"name":"DXGK_DU_MEDICAL_IMAGING","features":[313]},{"name":"DXGK_DU_VR","features":[313]},{"name":"DXGK_ENGINE_TYPE","features":[313]},{"name":"DXGK_ENGINE_TYPE_3D","features":[313]},{"name":"DXGK_ENGINE_TYPE_COPY","features":[313]},{"name":"DXGK_ENGINE_TYPE_CRYPTO","features":[313]},{"name":"DXGK_ENGINE_TYPE_MAX","features":[313]},{"name":"DXGK_ENGINE_TYPE_OTHER","features":[313]},{"name":"DXGK_ENGINE_TYPE_OVERLAY","features":[313]},{"name":"DXGK_ENGINE_TYPE_SCENE_ASSEMBLY","features":[313]},{"name":"DXGK_ENGINE_TYPE_VIDEO_DECODE","features":[313]},{"name":"DXGK_ENGINE_TYPE_VIDEO_ENCODE","features":[313]},{"name":"DXGK_ENGINE_TYPE_VIDEO_PROCESSING","features":[313]},{"name":"DXGK_ESCAPE_GPUMMUCAPS","features":[313,305]},{"name":"DXGK_FAULT_ERROR_CODE","features":[313]},{"name":"DXGK_GENERAL_ERROR_CODE","features":[313]},{"name":"DXGK_GENERAL_ERROR_INVALID_INSTRUCTION","features":[313]},{"name":"DXGK_GENERAL_ERROR_PAGE_FAULT","features":[313]},{"name":"DXGK_GPUCLOCKDATA","features":[313]},{"name":"DXGK_GPUCLOCKDATA_FLAGS","features":[313]},{"name":"DXGK_GPUVERSION","features":[313]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_INPUT_V_1_2","features":[313,305,312]},{"name":"DXGK_GRAPHICSPOWER_REGISTER_OUTPUT","features":[313,305,312]},{"name":"DXGK_GRAPHICSPOWER_VERSION","features":[313]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_0","features":[313]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_1","features":[313]},{"name":"DXGK_GRAPHICSPOWER_VERSION_1_2","features":[313]},{"name":"DXGK_MAX_GPUVERSION_NAME_LENGTH","features":[313]},{"name":"DXGK_MAX_METADATA_NAME_LENGTH","features":[313]},{"name":"DXGK_MAX_PAGE_TABLE_LEVEL_COUNT","features":[313]},{"name":"DXGK_MIN_PAGE_TABLE_LEVEL_COUNT","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_ID","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_INFO","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_COLOR_CONVERT_COMPLETE","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_COMPLETE","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_1","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_2","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_DROPPED","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_FRAME_START","features":[313]},{"name":"DXGK_MIRACAST_CHUNK_TYPE_UNKNOWN","features":[313]},{"name":"DXGK_MONITORLINKINFO_CAPABILITIES","features":[313]},{"name":"DXGK_MONITORLINKINFO_USAGEHINTS","features":[313]},{"name":"DXGK_NODEMETADATA","features":[313,305]},{"name":"DXGK_NODEMETADATA_FLAGS","features":[313]},{"name":"DXGK_NODE_PERFDATA","features":[313]},{"name":"DXGK_PAGE_FAULT_ADAPTER_RESET_REQUIRED","features":[313]},{"name":"DXGK_PAGE_FAULT_ENGINE_RESET_REQUIRED","features":[313]},{"name":"DXGK_PAGE_FAULT_FATAL_HARDWARE_ERROR","features":[313]},{"name":"DXGK_PAGE_FAULT_FENCE_INVALID","features":[313]},{"name":"DXGK_PAGE_FAULT_FLAGS","features":[313]},{"name":"DXGK_PAGE_FAULT_HW_CONTEXT_VALID","features":[313]},{"name":"DXGK_PAGE_FAULT_IOMMU","features":[313]},{"name":"DXGK_PAGE_FAULT_PROCESS_HANDLE_VALID","features":[313]},{"name":"DXGK_PAGE_FAULT_WRITE","features":[313]},{"name":"DXGK_PTE","features":[313]},{"name":"DXGK_PTE_PAGE_SIZE","features":[313]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_4KB","features":[313]},{"name":"DXGK_PTE_PAGE_TABLE_PAGE_64KB","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_GEOMETRY_SHADER","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_INPUT_ASSEMBLER","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_OUTPUT_MERGER","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_PIXEL_SHADER","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_RASTERIZER","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_STREAM_OUTPUT","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_UNKNOWN","features":[313]},{"name":"DXGK_RENDER_PIPELINE_STAGE_VERTEX_SHADER","features":[313]},{"name":"DXGK_TARGETMODE_DETAIL_TIMING","features":[313]},{"name":"DxgkBacklightOptimizationDesktop","features":[313]},{"name":"DxgkBacklightOptimizationDimmed","features":[313]},{"name":"DxgkBacklightOptimizationDisable","features":[313]},{"name":"DxgkBacklightOptimizationDynamic","features":[313]},{"name":"DxgkBacklightOptimizationEDR","features":[313]},{"name":"FLIPEX_TIMEOUT_USER","features":[313]},{"name":"GPUP_DRIVER_ESCAPE_INPUT","features":[313,305]},{"name":"GUID_DEVINTERFACE_GRAPHICSPOWER","features":[313]},{"name":"HpdAwarenessAlwaysConnected","features":[313]},{"name":"HpdAwarenessInterruptible","features":[313]},{"name":"HpdAwarenessNone","features":[313]},{"name":"HpdAwarenessPolled","features":[313]},{"name":"HpdAwarenessUninitialized","features":[313]},{"name":"IOCTL_GPUP_DRIVER_ESCAPE","features":[313]},{"name":"IOCTL_INTERNAL_GRAPHICSPOWER_REGISTER","features":[313]},{"name":"KMTQAITYPE_ADAPTERADDRESS","features":[313]},{"name":"KMTQAITYPE_ADAPTERADDRESS_RENDER","features":[313]},{"name":"KMTQAITYPE_ADAPTERGUID","features":[313]},{"name":"KMTQAITYPE_ADAPTERGUID_RENDER","features":[313]},{"name":"KMTQAITYPE_ADAPTERPERFDATA","features":[313]},{"name":"KMTQAITYPE_ADAPTERPERFDATA_CAPS","features":[313]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO","features":[313]},{"name":"KMTQAITYPE_ADAPTERREGISTRYINFO_RENDER","features":[313]},{"name":"KMTQAITYPE_ADAPTERTYPE","features":[313]},{"name":"KMTQAITYPE_ADAPTERTYPE_RENDER","features":[313]},{"name":"KMTQAITYPE_BLOCKLIST_KERNEL","features":[313]},{"name":"KMTQAITYPE_BLOCKLIST_RUNTIME","features":[313]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS","features":[313]},{"name":"KMTQAITYPE_CHECKDRIVERUPDATESTATUS_RENDER","features":[313]},{"name":"KMTQAITYPE_CPDRIVERNAME","features":[313]},{"name":"KMTQAITYPE_CROSSADAPTERRESOURCE_SUPPORT","features":[313]},{"name":"KMTQAITYPE_CURRENTDISPLAYMODE","features":[313]},{"name":"KMTQAITYPE_DIRECTFLIP_SUPPORT","features":[313]},{"name":"KMTQAITYPE_DISPLAY_CAPS","features":[313]},{"name":"KMTQAITYPE_DISPLAY_UMDRIVERNAME","features":[313]},{"name":"KMTQAITYPE_DLIST_DRIVER_NAME","features":[313]},{"name":"KMTQAITYPE_DRIVERCAPS_EXT","features":[313]},{"name":"KMTQAITYPE_DRIVERVERSION","features":[313]},{"name":"KMTQAITYPE_DRIVERVERSION_RENDER","features":[313]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION","features":[313]},{"name":"KMTQAITYPE_DRIVER_DESCRIPTION_RENDER","features":[313]},{"name":"KMTQAITYPE_FLIPQUEUEINFO","features":[313]},{"name":"KMTQAITYPE_GETSEGMENTGROUPSIZE","features":[313]},{"name":"KMTQAITYPE_GETSEGMENTSIZE","features":[313]},{"name":"KMTQAITYPE_GET_DEVICE_VIDPN_OWNERSHIP_INFO","features":[313]},{"name":"KMTQAITYPE_HWDRM_SUPPORT","features":[313]},{"name":"KMTQAITYPE_HYBRID_DLIST_DLL_SUPPORT","features":[313]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SECONDARY_SUPPORT","features":[313]},{"name":"KMTQAITYPE_INDEPENDENTFLIP_SUPPORT","features":[313]},{"name":"KMTQAITYPE_KMD_DRIVER_VERSION","features":[313]},{"name":"KMTQAITYPE_MIRACASTCOMPANIONDRIVERNAME","features":[313]},{"name":"KMTQAITYPE_MODELIST","features":[313]},{"name":"KMTQAITYPE_MPO3DDI_SUPPORT","features":[313]},{"name":"KMTQAITYPE_MPOKERNELCAPS_SUPPORT","features":[313]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_HUD_SUPPORT","features":[313]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SECONDARY_SUPPORT","features":[313]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_STRETCH_SUPPORT","features":[313]},{"name":"KMTQAITYPE_MULTIPLANEOVERLAY_SUPPORT","features":[313]},{"name":"KMTQAITYPE_NODEMETADATA","features":[313]},{"name":"KMTQAITYPE_NODEPERFDATA","features":[313]},{"name":"KMTQAITYPE_OUTPUTDUPLCONTEXTSCOUNT","features":[313]},{"name":"KMTQAITYPE_PANELFITTER_SUPPORT","features":[313]},{"name":"KMTQAITYPE_PARAVIRTUALIZATION_RENDER","features":[313]},{"name":"KMTQAITYPE_PHYSICALADAPTERCOUNT","features":[313]},{"name":"KMTQAITYPE_PHYSICALADAPTERDEVICEIDS","features":[313]},{"name":"KMTQAITYPE_PHYSICALADAPTERPNPKEY","features":[313]},{"name":"KMTQAITYPE_QUERYREGISTRY","features":[313]},{"name":"KMTQAITYPE_QUERY_ADAPTER_UNIQUE_GUID","features":[313]},{"name":"KMTQAITYPE_QUERY_GPUMMU_CAPS","features":[313]},{"name":"KMTQAITYPE_QUERY_HW_PROTECTION_TEARDOWN_COUNT","features":[313]},{"name":"KMTQAITYPE_QUERY_ISBADDRIVERFORHWPROTECTIONDISABLED","features":[313]},{"name":"KMTQAITYPE_QUERY_MIRACAST_DRIVER_TYPE","features":[313]},{"name":"KMTQAITYPE_QUERY_MULTIPLANEOVERLAY_DECODE_SUPPORT","features":[313]},{"name":"KMTQAITYPE_SCANOUT_CAPS","features":[313]},{"name":"KMTQAITYPE_SERVICENAME","features":[313]},{"name":"KMTQAITYPE_SETWORKINGSETINFO","features":[313]},{"name":"KMTQAITYPE_TRACKEDWORKLOAD_SUPPORT","features":[313]},{"name":"KMTQAITYPE_UMDRIVERNAME","features":[313]},{"name":"KMTQAITYPE_UMDRIVERPRIVATE","features":[313]},{"name":"KMTQAITYPE_UMD_DRIVER_VERSION","features":[313]},{"name":"KMTQAITYPE_UMOPENGLINFO","features":[313]},{"name":"KMTQAITYPE_VGPUINTERFACEID","features":[313]},{"name":"KMTQAITYPE_VIRTUALADDRESSINFO","features":[313]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS","features":[313]},{"name":"KMTQAITYPE_WDDM_1_2_CAPS_RENDER","features":[313]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS","features":[313]},{"name":"KMTQAITYPE_WDDM_1_3_CAPS_RENDER","features":[313]},{"name":"KMTQAITYPE_WDDM_2_0_CAPS","features":[313]},{"name":"KMTQAITYPE_WDDM_2_7_CAPS","features":[313]},{"name":"KMTQAITYPE_WDDM_2_9_CAPS","features":[313]},{"name":"KMTQAITYPE_WDDM_3_0_CAPS","features":[313]},{"name":"KMTQAITYPE_WDDM_3_1_CAPS","features":[313]},{"name":"KMTQAITYPE_WSAUMDIMAGENAME","features":[313]},{"name":"KMTQAITYPE_XBOX","features":[313]},{"name":"KMTQUERYADAPTERINFOTYPE","features":[313]},{"name":"KMTQUITYPE_GPUVERSION","features":[313]},{"name":"KMTUMDVERSION","features":[313]},{"name":"KMTUMDVERSION_DX10","features":[313]},{"name":"KMTUMDVERSION_DX11","features":[313]},{"name":"KMTUMDVERSION_DX12","features":[313]},{"name":"KMTUMDVERSION_DX12_WSA32","features":[313]},{"name":"KMTUMDVERSION_DX12_WSA64","features":[313]},{"name":"KMTUMDVERSION_DX9","features":[313]},{"name":"KMT_DISPLAY_UMDVERSION_1","features":[313]},{"name":"KMT_DISPLAY_UMD_VERSION","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_1_0","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_1_1","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_1_1_PRERELEASE","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_1_2","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_1_3","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_0","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_1","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_2","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_3","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_4","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_5","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_6","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_7","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_8","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_2_9","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_3_0","features":[313]},{"name":"KMT_DRIVERVERSION_WDDM_3_1","features":[313]},{"name":"LPD3DHAL_CLEAR2CB","features":[313,314]},{"name":"LPD3DHAL_CLEARCB","features":[313,314]},{"name":"LPD3DHAL_CONTEXTCREATECB","features":[313,305,315,316]},{"name":"LPD3DHAL_CONTEXTDESTROYALLCB","features":[313]},{"name":"LPD3DHAL_CONTEXTDESTROYCB","features":[313]},{"name":"LPD3DHAL_DRAWONEINDEXEDPRIMITIVECB","features":[313,314]},{"name":"LPD3DHAL_DRAWONEPRIMITIVECB","features":[313,314]},{"name":"LPD3DHAL_DRAWPRIMITIVES2CB","features":[313,305,315,316]},{"name":"LPD3DHAL_DRAWPRIMITIVESCB","features":[313]},{"name":"LPD3DHAL_GETSTATECB","features":[313,314]},{"name":"LPD3DHAL_RENDERPRIMITIVECB","features":[313,314,315]},{"name":"LPD3DHAL_RENDERSTATECB","features":[313,315]},{"name":"LPD3DHAL_SCENECAPTURECB","features":[313]},{"name":"LPD3DHAL_SETRENDERTARGETCB","features":[313,305,315,316]},{"name":"LPD3DHAL_TEXTURECREATECB","features":[313,315]},{"name":"LPD3DHAL_TEXTUREDESTROYCB","features":[313]},{"name":"LPD3DHAL_TEXTUREGETSURFCB","features":[313]},{"name":"LPD3DHAL_TEXTURESWAPCB","features":[313]},{"name":"LPD3DHAL_VALIDATETEXTURESTAGESTATECB","features":[313]},{"name":"LPD3DNTHAL_CLEAR2CB","features":[313,314]},{"name":"LPD3DNTHAL_CONTEXTCREATECB","features":[313,305,315]},{"name":"LPD3DNTHAL_CONTEXTDESTROYALLCB","features":[313]},{"name":"LPD3DNTHAL_CONTEXTDESTROYCB","features":[313]},{"name":"LPD3DNTHAL_DRAWPRIMITIVES2CB","features":[313,305,315]},{"name":"LPD3DNTHAL_SCENECAPTURECB","features":[313]},{"name":"LPD3DNTHAL_SETRENDERTARGETCB","features":[313,305,315]},{"name":"LPD3DNTHAL_TEXTURECREATECB","features":[313,305]},{"name":"LPD3DNTHAL_TEXTUREDESTROYCB","features":[313]},{"name":"LPD3DNTHAL_TEXTUREGETSURFCB","features":[313,305]},{"name":"LPD3DNTHAL_TEXTURESWAPCB","features":[313]},{"name":"LPD3DNTHAL_VALIDATETEXTURESTAGESTATECB","features":[313]},{"name":"MAX_ENUM_ADAPTERS","features":[313]},{"name":"MiracastStartPending","features":[313]},{"name":"MiracastStarted","features":[313]},{"name":"MiracastStopPending","features":[313]},{"name":"MiracastStopped","features":[313]},{"name":"NUM_KMTUMDVERSIONS","features":[313]},{"name":"NUM_KMT_DISPLAY_UMDVERSIONS","features":[313]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_INFO","features":[313,305]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS","features":[313]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_ACTIVE","features":[313]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_INACTIVE","features":[313]},{"name":"OUTPUTDUPL_CONTEXT_DEBUG_STATUS_PENDING_DESTROY","features":[313]},{"name":"OUTPUTDUPL_CREATE_MAX_KEYEDMUTXES","features":[313]},{"name":"PDXGK_FSTATE_NOTIFICATION","features":[313,305]},{"name":"PDXGK_GRAPHICSPOWER_UNREGISTER","features":[313,305]},{"name":"PDXGK_INITIAL_COMPONENT_STATE","features":[313,305]},{"name":"PDXGK_POWER_NOTIFICATION","features":[313,305,312]},{"name":"PDXGK_REMOVAL_NOTIFICATION","features":[313]},{"name":"PDXGK_SET_SHARED_POWER_COMPONENT_STATE","features":[313,305]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX","features":[313,305]},{"name":"PFND3DKMT_ACQUIREKEYEDMUTEX2","features":[313,305]},{"name":"PFND3DKMT_ADJUSTFULLSCREENGAMMA","features":[313,305]},{"name":"PFND3DKMT_BUDGETCHANGENOTIFICATIONCALLBACK","features":[313]},{"name":"PFND3DKMT_CANCELPRESENTS","features":[313,305]},{"name":"PFND3DKMT_CHANGESURFACEPOINTER","features":[313,305,316]},{"name":"PFND3DKMT_CHANGEVIDEOMEMORYRESERVATION","features":[313,305]},{"name":"PFND3DKMT_CHECKEXCLUSIVEOWNERSHIP","features":[313,305]},{"name":"PFND3DKMT_CHECKMONITORPOWERSTATE","features":[313,305]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT","features":[313,305]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2","features":[313,305]},{"name":"PFND3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3","features":[313,305]},{"name":"PFND3DKMT_CHECKOCCLUSION","features":[313,305]},{"name":"PFND3DKMT_CHECKSHAREDRESOURCEACCESS","features":[313,305]},{"name":"PFND3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP","features":[313,305]},{"name":"PFND3DKMT_CLOSEADAPTER","features":[313,305]},{"name":"PFND3DKMT_CONFIGURESHAREDRESOURCE","features":[313,305]},{"name":"PFND3DKMT_CONNECTDOORBELL","features":[313,305]},{"name":"PFND3DKMT_CREATEALLOCATION","features":[313,305]},{"name":"PFND3DKMT_CREATEALLOCATION2","features":[313,305]},{"name":"PFND3DKMT_CREATECONTEXT","features":[313,305]},{"name":"PFND3DKMT_CREATECONTEXTVIRTUAL","features":[313,305]},{"name":"PFND3DKMT_CREATEDCFROMMEMORY","features":[313,305,316]},{"name":"PFND3DKMT_CREATEDEVICE","features":[313,305]},{"name":"PFND3DKMT_CREATEDOORBELL","features":[313,305]},{"name":"PFND3DKMT_CREATEHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX","features":[313,305]},{"name":"PFND3DKMT_CREATEKEYEDMUTEX2","features":[313,305]},{"name":"PFND3DKMT_CREATENATIVEFENCE","features":[313,305]},{"name":"PFND3DKMT_CREATEOUTPUTDUPL","features":[313,305]},{"name":"PFND3DKMT_CREATEOVERLAY","features":[313,305]},{"name":"PFND3DKMT_CREATEPAGINGQUEUE","features":[313,305]},{"name":"PFND3DKMT_CREATEPROTECTEDSESSION","features":[313,305]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT","features":[313,305]},{"name":"PFND3DKMT_CREATESYNCHRONIZATIONOBJECT2","features":[313,305]},{"name":"PFND3DKMT_DESTROYALLOCATION","features":[313,305]},{"name":"PFND3DKMT_DESTROYALLOCATION2","features":[313,305]},{"name":"PFND3DKMT_DESTROYCONTEXT","features":[313,305]},{"name":"PFND3DKMT_DESTROYDCFROMMEMORY","features":[313,305,316]},{"name":"PFND3DKMT_DESTROYDEVICE","features":[313,305]},{"name":"PFND3DKMT_DESTROYDOORBELL","features":[313,305]},{"name":"PFND3DKMT_DESTROYHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_DESTROYKEYEDMUTEX","features":[313,305]},{"name":"PFND3DKMT_DESTROYOUTPUTDUPL","features":[313,305]},{"name":"PFND3DKMT_DESTROYOVERLAY","features":[313,305]},{"name":"PFND3DKMT_DESTROYPAGINGQUEUE","features":[313,305]},{"name":"PFND3DKMT_DESTROYPROTECTEDSESSION","features":[313,305]},{"name":"PFND3DKMT_DESTROYSYNCHRONIZATIONOBJECT","features":[313,305]},{"name":"PFND3DKMT_ENUMADAPTERS","features":[313,305]},{"name":"PFND3DKMT_ENUMADAPTERS2","features":[313,305]},{"name":"PFND3DKMT_ENUMADAPTERS3","features":[313,305]},{"name":"PFND3DKMT_ESCAPE","features":[313,305]},{"name":"PFND3DKMT_EVICT","features":[313,305]},{"name":"PFND3DKMT_FLIPOVERLAY","features":[313,305]},{"name":"PFND3DKMT_FLUSHHEAPTRANSITIONS","features":[313,305]},{"name":"PFND3DKMT_FREEGPUVIRTUALADDRESS","features":[313,305]},{"name":"PFND3DKMT_GETALLOCATIONPRIORITY","features":[313,305]},{"name":"PFND3DKMT_GETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[313,305]},{"name":"PFND3DKMT_GETCONTEXTSCHEDULINGPRIORITY","features":[313,305]},{"name":"PFND3DKMT_GETDEVICESTATE","features":[313,305]},{"name":"PFND3DKMT_GETDISPLAYMODELIST","features":[313,305]},{"name":"PFND3DKMT_GETDWMVERTICALBLANKEVENT","features":[313,305]},{"name":"PFND3DKMT_GETMULTIPLANEOVERLAYCAPS","features":[313,305]},{"name":"PFND3DKMT_GETMULTISAMPLEMETHODLIST","features":[313,305]},{"name":"PFND3DKMT_GETOVERLAYSTATE","features":[313,305]},{"name":"PFND3DKMT_GETPOSTCOMPOSITIONCAPS","features":[313,305]},{"name":"PFND3DKMT_GETPRESENTHISTORY","features":[313,305]},{"name":"PFND3DKMT_GETPROCESSDEVICEREMOVALSUPPORT","features":[313,305]},{"name":"PFND3DKMT_GETPROCESSSCHEDULINGPRIORITYCLASS","features":[313,305]},{"name":"PFND3DKMT_GETRESOURCEPRESENTPRIVATEDRIVERDATA","features":[313,305]},{"name":"PFND3DKMT_GETRUNTIMEDATA","features":[313,305]},{"name":"PFND3DKMT_GETSCANLINE","features":[313,305]},{"name":"PFND3DKMT_GETSHAREDPRIMARYHANDLE","features":[313,305]},{"name":"PFND3DKMT_GETSHAREDRESOURCEADAPTERLUID","features":[313,305]},{"name":"PFND3DKMT_INVALIDATEACTIVEVIDPN","features":[313,305]},{"name":"PFND3DKMT_INVALIDATECACHE","features":[313,305]},{"name":"PFND3DKMT_LOCK","features":[313,305]},{"name":"PFND3DKMT_LOCK2","features":[313,305]},{"name":"PFND3DKMT_MAKERESIDENT","features":[313,305]},{"name":"PFND3DKMT_MAPGPUVIRTUALADDRESS","features":[313,305]},{"name":"PFND3DKMT_MARKDEVICEASERROR","features":[313,305]},{"name":"PFND3DKMT_NOTIFYWORKSUBMISSION","features":[313,305]},{"name":"PFND3DKMT_OFFERALLOCATIONS","features":[313,305]},{"name":"PFND3DKMT_OPENADAPTERFROMDEVICENAME","features":[313,305]},{"name":"PFND3DKMT_OPENADAPTERFROMGDIDISPLAYNAME","features":[313,305]},{"name":"PFND3DKMT_OPENADAPTERFROMHDC","features":[313,305,316]},{"name":"PFND3DKMT_OPENADAPTERFROMLUID","features":[313,305]},{"name":"PFND3DKMT_OPENKEYEDMUTEX","features":[313,305]},{"name":"PFND3DKMT_OPENKEYEDMUTEX2","features":[313,305]},{"name":"PFND3DKMT_OPENKEYEDMUTEXFROMNTHANDLE","features":[313,305]},{"name":"PFND3DKMT_OPENNATIVEFENCEFROMNTHANDLE","features":[313,305]},{"name":"PFND3DKMT_OPENNTHANDLEFROMNAME","features":[306,313,305]},{"name":"PFND3DKMT_OPENPROTECTEDSESSIONFROMNTHANDLE","features":[313,305]},{"name":"PFND3DKMT_OPENRESOURCE","features":[313,305]},{"name":"PFND3DKMT_OPENRESOURCE2","features":[313,305]},{"name":"PFND3DKMT_OPENRESOURCEFROMNTHANDLE","features":[313,305]},{"name":"PFND3DKMT_OPENSYNCHRONIZATIONOBJECT","features":[313,305]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE","features":[313,305]},{"name":"PFND3DKMT_OPENSYNCOBJECTFROMNTHANDLE2","features":[313,305]},{"name":"PFND3DKMT_OPENSYNCOBJECTNTHANDLEFROMNAME","features":[306,313,305]},{"name":"PFND3DKMT_OUTPUTDUPLGETFRAMEINFO","features":[313,305]},{"name":"PFND3DKMT_OUTPUTDUPLGETMETADATA","features":[313,305]},{"name":"PFND3DKMT_OUTPUTDUPLGETPOINTERSHAPEDATA","features":[313,305]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENT","features":[313,305]},{"name":"PFND3DKMT_OUTPUTDUPLPRESENTTOHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_OUTPUTDUPLRELEASEFRAME","features":[313,305]},{"name":"PFND3DKMT_PINDIRECTFLIPRESOURCES","features":[313,305]},{"name":"PFND3DKMT_POLLDISPLAYCHILDREN","features":[313,305]},{"name":"PFND3DKMT_PRESENT","features":[313,305]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY","features":[313,305]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY2","features":[313,305]},{"name":"PFND3DKMT_PRESENTMULTIPLANEOVERLAY3","features":[313,305]},{"name":"PFND3DKMT_QUERYADAPTERINFO","features":[313,305]},{"name":"PFND3DKMT_QUERYALLOCATIONRESIDENCY","features":[313,305]},{"name":"PFND3DKMT_QUERYCLOCKCALIBRATION","features":[313,305]},{"name":"PFND3DKMT_QUERYFSEBLOCK","features":[313,305]},{"name":"PFND3DKMT_QUERYHYBRIDLISTVALUE","features":[313,305]},{"name":"PFND3DKMT_QUERYPROCESSOFFERINFO","features":[313,305]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONINFOFROMNTHANDLE","features":[313,305]},{"name":"PFND3DKMT_QUERYPROTECTEDSESSIONSTATUS","features":[313,305]},{"name":"PFND3DKMT_QUERYREMOTEVIDPNSOURCEFROMGDIDISPLAYNAME","features":[313,305]},{"name":"PFND3DKMT_QUERYRESOURCEINFO","features":[313,305]},{"name":"PFND3DKMT_QUERYRESOURCEINFOFROMNTHANDLE","features":[313,305]},{"name":"PFND3DKMT_QUERYSTATISTICS","features":[313,305]},{"name":"PFND3DKMT_QUERYVIDEOMEMORYINFO","features":[313,305]},{"name":"PFND3DKMT_QUERYVIDPNEXCLUSIVEOWNERSHIP","features":[313,305]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS","features":[313,305]},{"name":"PFND3DKMT_RECLAIMALLOCATIONS2","features":[313,305]},{"name":"PFND3DKMT_REGISTERBUDGETCHANGENOTIFICATION","features":[313,305]},{"name":"PFND3DKMT_REGISTERTRIMNOTIFICATION","features":[313,305]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX","features":[313,305]},{"name":"PFND3DKMT_RELEASEKEYEDMUTEX2","features":[313,305]},{"name":"PFND3DKMT_RELEASEPROCESSVIDPNSOURCEOWNERS","features":[313,305]},{"name":"PFND3DKMT_RENDER","features":[313,305]},{"name":"PFND3DKMT_RESERVEGPUVIRTUALADDRESS","features":[313,305]},{"name":"PFND3DKMT_SETALLOCATIONPRIORITY","features":[313,305]},{"name":"PFND3DKMT_SETCONTEXTINPROCESSSCHEDULINGPRIORITY","features":[313,305]},{"name":"PFND3DKMT_SETCONTEXTSCHEDULINGPRIORITY","features":[313,305]},{"name":"PFND3DKMT_SETDISPLAYMODE","features":[313,305]},{"name":"PFND3DKMT_SETDISPLAYPRIVATEDRIVERFORMAT","features":[313,305]},{"name":"PFND3DKMT_SETFSEBLOCK","features":[313,305]},{"name":"PFND3DKMT_SETGAMMARAMP","features":[313,305]},{"name":"PFND3DKMT_SETHWPROTECTIONTEARDOWNRECOVERY","features":[313,305]},{"name":"PFND3DKMT_SETHYBRIDLISTVVALUE","features":[313,305]},{"name":"PFND3DKMT_SETPROCESSSCHEDULINGPRIORITYCLASS","features":[313,305]},{"name":"PFND3DKMT_SETQUEUEDLIMIT","features":[313,305]},{"name":"PFND3DKMT_SETSTABLEPOWERSTATE","features":[313,305]},{"name":"PFND3DKMT_SETSTEREOENABLED","features":[313,305]},{"name":"PFND3DKMT_SETSYNCREFRESHCOUNTWAITTARGET","features":[313,305]},{"name":"PFND3DKMT_SETVIDPNSOURCEHWPROTECTION","features":[313,305]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER","features":[313,305]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER1","features":[313,305]},{"name":"PFND3DKMT_SETVIDPNSOURCEOWNER2","features":[313,305]},{"name":"PFND3DKMT_SHAREDPRIMARYLOCKNOTIFICATION","features":[313,305]},{"name":"PFND3DKMT_SHAREDPRIMARYUNLOCKNOTIFICATION","features":[313,305]},{"name":"PFND3DKMT_SHAREOBJECTS","features":[306,313,305]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT","features":[313,305]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECT2","features":[313,305]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMCPU","features":[313,305]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU","features":[313,305]},{"name":"PFND3DKMT_SIGNALSYNCHRONIZATIONOBJECTFROMGPU2","features":[313,305]},{"name":"PFND3DKMT_SUBMITCOMMAND","features":[313,305]},{"name":"PFND3DKMT_SUBMITCOMMANDTOHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_SUBMITPRESENTBLTTOHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_SUBMITPRESENTTOHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_SUBMITSIGNALSYNCOBJECTSTOHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_SUBMITWAITFORSYNCOBJECTSTOHWQUEUE","features":[313,305]},{"name":"PFND3DKMT_TRIMNOTIFICATIONCALLBACK","features":[313]},{"name":"PFND3DKMT_TRIMPROCESSCOMMITMENT","features":[313,305]},{"name":"PFND3DKMT_UNLOCK","features":[313,305]},{"name":"PFND3DKMT_UNLOCK2","features":[313,305]},{"name":"PFND3DKMT_UNPINDIRECTFLIPRESOURCES","features":[313,305]},{"name":"PFND3DKMT_UNREGISTERBUDGETCHANGENOTIFICATION","features":[313,305]},{"name":"PFND3DKMT_UNREGISTERTRIMNOTIFICATION","features":[313,305]},{"name":"PFND3DKMT_UPDATEALLOCATIONPROPERTY","features":[313,305]},{"name":"PFND3DKMT_UPDATEGPUVIRTUALADDRESS","features":[313,305]},{"name":"PFND3DKMT_UPDATEOVERLAY","features":[313,305]},{"name":"PFND3DKMT_WAITFORIDLE","features":[313,305]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT","features":[313,305]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECT2","features":[313,305]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMCPU","features":[313,305]},{"name":"PFND3DKMT_WAITFORSYNCHRONIZATIONOBJECTFROMGPU","features":[313,305]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT","features":[313,305]},{"name":"PFND3DKMT_WAITFORVERTICALBLANKEVENT2","features":[313,305]},{"name":"PFND3DNTPARSEUNKNOWNCOMMAND","features":[313]},{"name":"PFND3DPARSEUNKNOWNCOMMAND","features":[313]},{"name":"RTPATCHFLAG_HASINFO","features":[313]},{"name":"RTPATCHFLAG_HASSEGS","features":[313]},{"name":"SHARED_ALLOCATION_WRITE","features":[313]},{"name":"_NT_D3DDEVCAPS_HWINDEXBUFFER","features":[313]},{"name":"_NT_D3DDEVCAPS_HWVERTEXBUFFER","features":[313]},{"name":"_NT_D3DDEVCAPS_SUBVOLUMELOCK","features":[313]},{"name":"_NT_D3DFVF_FOG","features":[313]},{"name":"_NT_D3DGDI2_MAGIC","features":[313]},{"name":"_NT_D3DGDI2_TYPE_DEFERRED_AGP_AWARE","features":[313]},{"name":"_NT_D3DGDI2_TYPE_DEFER_AGP_FREES","features":[313]},{"name":"_NT_D3DGDI2_TYPE_DXVERSION","features":[313]},{"name":"_NT_D3DGDI2_TYPE_FREE_DEFERRED_AGP","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETADAPTERGROUP","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS8","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETD3DCAPS9","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERY","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETD3DQUERYCOUNT","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETDDIVERSION","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODE","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETEXTENDEDMODECOUNT","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETFORMAT","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETFORMATCOUNT","features":[313]},{"name":"_NT_D3DGDI2_TYPE_GETMULTISAMPLEQUALITYLEVELS","features":[313]},{"name":"_NT_D3DLINEPATTERN","features":[313]},{"name":"_NT_D3DPMISCCAPS_FOGINFVF","features":[313]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_0","features":[313]},{"name":"_NT_D3DPS_COLOROUT_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_COLOROUT_MAX_V3_0","features":[313]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_SW_DX9","features":[313]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_CONSTBOOLREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_SW_DX9","features":[313]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_CONSTINTREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_DX8","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_SW_DX9","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_2","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_3","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_V1_4","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_CONSTREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_DX8","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_2","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_3","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_V1_4","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_INPUTREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V2_1","features":[313]},{"name":"_NT_D3DPS_MAXLOOPINITVALUE_V3_0","features":[313]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V2_1","features":[313]},{"name":"_NT_D3DPS_MAXLOOPITERATIONCOUNT_V3_0","features":[313]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V2_1","features":[313]},{"name":"_NT_D3DPS_MAXLOOPSTEP_V3_0","features":[313]},{"name":"_NT_D3DPS_PREDICATE_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_PREDICATE_MAX_V3_0","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_DX8","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_2","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_3","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_V1_4","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_TEMPREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_DX8","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_2","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_3","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V1_4","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DPS_TEXTUREREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DRS_DELETERTPATCH","features":[313]},{"name":"_NT_D3DVS_ADDRREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_ADDRREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_ADDRREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_ATTROUTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_SW_DX9","features":[313]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_CONSTBOOLREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_SW_DX9","features":[313]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_CONSTINTREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_CONSTREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_CONSTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_CONSTREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_INPUTREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_INPUTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_INPUTREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_LABEL_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_MAXINSTRUCTIONCOUNT_V1_1","features":[313]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_0","features":[313]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V2_1","features":[313]},{"name":"_NT_D3DVS_MAXLOOPINITVALUE_V3_0","features":[313]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_0","features":[313]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V2_1","features":[313]},{"name":"_NT_D3DVS_MAXLOOPITERATIONCOUNT_V3_0","features":[313]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_0","features":[313]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V2_1","features":[313]},{"name":"_NT_D3DVS_MAXLOOPSTEP_V3_0","features":[313]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_SW_DX9","features":[313]},{"name":"_NT_D3DVS_OUTPUTREG_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_PREDICATE_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_PREDICATE_MAX_V3_0","features":[313]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_TCRDOUTREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_TEMPREG_MAX_V1_1","features":[313]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_0","features":[313]},{"name":"_NT_D3DVS_TEMPREG_MAX_V2_1","features":[313]},{"name":"_NT_D3DVS_TEMPREG_MAX_V3_0","features":[313]},{"name":"_NT_RTPATCHFLAG_HASINFO","features":[313]},{"name":"_NT_RTPATCHFLAG_HASSEGS","features":[313]}],"343":[{"name":"AUTHENTICATE","features":[317]},{"name":"BINARY_COMPATIBLE","features":[317]},{"name":"BINARY_DATA","features":[317]},{"name":"BROADCAST_VC","features":[317]},{"name":"BSSID_INFO","features":[317]},{"name":"CALL_PARAMETERS_CHANGED","features":[317]},{"name":"CLOCK_NETWORK_DERIVED","features":[317]},{"name":"CLOCK_PRECISION","features":[317]},{"name":"CL_ADD_PARTY_COMPLETE_HANDLER","features":[317]},{"name":"CL_CALL_CONNECTED_HANDLER","features":[317]},{"name":"CL_CLOSE_AF_COMPLETE_HANDLER","features":[317]},{"name":"CL_CLOSE_CALL_COMPLETE_HANDLER","features":[317]},{"name":"CL_DEREG_SAP_COMPLETE_HANDLER","features":[317]},{"name":"CL_DROP_PARTY_COMPLETE_HANDLER","features":[317]},{"name":"CL_INCOMING_CALL_HANDLER","features":[317]},{"name":"CL_INCOMING_CALL_QOS_CHANGE_HANDLER","features":[317]},{"name":"CL_INCOMING_CLOSE_CALL_HANDLER","features":[317]},{"name":"CL_INCOMING_DROP_PARTY_HANDLER","features":[317]},{"name":"CL_MAKE_CALL_COMPLETE_HANDLER","features":[317]},{"name":"CL_MODIFY_CALL_QOS_COMPLETE_HANDLER","features":[317]},{"name":"CL_OPEN_AF_COMPLETE_HANDLER","features":[317]},{"name":"CL_REG_SAP_COMPLETE_HANDLER","features":[317]},{"name":"CM_ACTIVATE_VC_COMPLETE_HANDLER","features":[317]},{"name":"CM_ADD_PARTY_HANDLER","features":[317]},{"name":"CM_CLOSE_AF_HANDLER","features":[317]},{"name":"CM_CLOSE_CALL_HANDLER","features":[317]},{"name":"CM_DEACTIVATE_VC_COMPLETE_HANDLER","features":[317]},{"name":"CM_DEREG_SAP_HANDLER","features":[317]},{"name":"CM_DROP_PARTY_HANDLER","features":[317]},{"name":"CM_INCOMING_CALL_COMPLETE_HANDLER","features":[317]},{"name":"CM_MAKE_CALL_HANDLER","features":[317]},{"name":"CM_MODIFY_CALL_QOS_HANDLER","features":[317]},{"name":"CM_OPEN_AF_HANDLER","features":[317]},{"name":"CM_REG_SAP_HANDLER","features":[317]},{"name":"CO_ADDRESS","features":[317]},{"name":"CO_ADDRESS_FAMILY","features":[317]},{"name":"CO_ADDRESS_FAMILY_PROXY","features":[317]},{"name":"CO_ADDRESS_LIST","features":[317]},{"name":"CO_AF_REGISTER_NOTIFY_HANDLER","features":[317]},{"name":"CO_CALL_MANAGER_PARAMETERS","features":[317,318]},{"name":"CO_CALL_PARAMETERS","features":[317]},{"name":"CO_CREATE_VC_HANDLER","features":[317]},{"name":"CO_DELETE_VC_HANDLER","features":[317]},{"name":"CO_MEDIA_PARAMETERS","features":[317]},{"name":"CO_PVC","features":[317]},{"name":"CO_SAP","features":[317]},{"name":"CO_SEND_FLAG_SET_DISCARD_ELIBILITY","features":[317]},{"name":"CO_SPECIFIC_PARAMETERS","features":[317]},{"name":"CRYPTO_GENERIC_ERROR","features":[317]},{"name":"CRYPTO_INVALID_PACKET_SYNTAX","features":[317]},{"name":"CRYPTO_INVALID_PROTOCOL","features":[317]},{"name":"CRYPTO_SUCCESS","features":[317]},{"name":"CRYPTO_TRANSPORT_AH_AUTH_FAILED","features":[317]},{"name":"CRYPTO_TRANSPORT_ESP_AUTH_FAILED","features":[317]},{"name":"CRYPTO_TUNNEL_AH_AUTH_FAILED","features":[317]},{"name":"CRYPTO_TUNNEL_ESP_AUTH_FAILED","features":[317]},{"name":"CachedNetBufferList","features":[317]},{"name":"ClassificationHandlePacketInfo","features":[317]},{"name":"DD_NDIS_DEVICE_NAME","features":[317]},{"name":"DOT11_RSN_KCK_LENGTH","features":[317]},{"name":"DOT11_RSN_KEK_LENGTH","features":[317]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[317]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[317]},{"name":"ENCRYPT","features":[317]},{"name":"ERRED_PACKET_INDICATION","features":[317]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[317]},{"name":"ETH_FILTER","features":[317]},{"name":"FILTERDBS","features":[317]},{"name":"GEN_GET_NETCARD_TIME","features":[317]},{"name":"GEN_GET_TIME_CAPS","features":[317]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[317]},{"name":"GUID_NDIS_NDK_STATE","features":[317]},{"name":"INDICATE_END_OF_TX","features":[317]},{"name":"INDICATE_ERRED_PACKETS","features":[317]},{"name":"IOCTL_NDIS_RESERVED5","features":[317]},{"name":"IOCTL_NDIS_RESERVED6","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[317]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[317]},{"name":"IPSEC_OFFLOAD_V2_ESN_SA","features":[317]},{"name":"IPSEC_OFFLOAD_V2_INBOUND","features":[317]},{"name":"IPSEC_OFFLOAD_V2_IPv6","features":[317]},{"name":"IPSEC_OFFLOAD_V2_MAX_EXTENSION_HEADERS","features":[317]},{"name":"IPSEC_OFFLOAD_V2_TRANSPORT_OVER_UDP_ESP_ENCAPSULATION_TUNNEL","features":[317]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_NONE","features":[317]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT","features":[317]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TRANSPORT_OVER_TUNNEL","features":[317]},{"name":"IPSEC_OFFLOAD_V2_UDP_ESP_ENCAPSULATION_TUNNEL","features":[317]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_IKE","features":[317]},{"name":"IPSEC_TPTOVERTUN_UDPESP_ENCAPTYPE_OTHER","features":[317]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_IKE","features":[317]},{"name":"IPSEC_TPT_UDPESP_ENCAPTYPE_OTHER","features":[317]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_IKE","features":[317]},{"name":"IPSEC_TPT_UDPESP_OVER_PURE_TUN_ENCAPTYPE_OTHER","features":[317]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_IKE","features":[317]},{"name":"IPSEC_TUN_UDPESP_ENCAPTYPE_OTHER","features":[317]},{"name":"Ieee8021QInfo","features":[317]},{"name":"IpSecPacketInfo","features":[317]},{"name":"LOCK_STATE","features":[317]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[317]},{"name":"MAX_HASHES","features":[317]},{"name":"MEDIA_SPECIFIC_INFORMATION","features":[317]},{"name":"MINIPORT_CO_ACTIVATE_VC","features":[317]},{"name":"MINIPORT_CO_CREATE_VC","features":[317]},{"name":"MINIPORT_CO_DEACTIVATE_VC","features":[317]},{"name":"MINIPORT_CO_DELETE_VC","features":[317]},{"name":"MULTIPOINT_VC","features":[317]},{"name":"MaxPerPacketInfo","features":[317]},{"name":"NBL_FLAGS_MINIPORT_RESERVED","features":[317]},{"name":"NBL_FLAGS_NDIS_RESERVED","features":[317]},{"name":"NBL_FLAGS_PROTOCOL_RESERVED","features":[317]},{"name":"NBL_FLAGS_SCRATCH","features":[317]},{"name":"NBL_PROT_RSVD_FLAGS","features":[317]},{"name":"NDIS630_MINIPORT","features":[317]},{"name":"NDIS685_MINIPORT","features":[317]},{"name":"NDIS_802_11_AI_REQFI","features":[317]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[317]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[317]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[317]},{"name":"NDIS_802_11_AI_RESFI","features":[317]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[317]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[317]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[317]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[317]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[317]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[317]},{"name":"NDIS_802_11_BSSID_LIST","features":[317]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[317]},{"name":"NDIS_802_11_CAPABILITY","features":[317]},{"name":"NDIS_802_11_CONFIGURATION","features":[317]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[317]},{"name":"NDIS_802_11_FIXED_IEs","features":[317]},{"name":"NDIS_802_11_KEY","features":[317]},{"name":"NDIS_802_11_LENGTH_RATES","features":[317]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[317]},{"name":"NDIS_802_11_LENGTH_SSID","features":[317]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[317]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[317]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[317]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[317]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[317]},{"name":"NDIS_802_11_PMKID","features":[317]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[317]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[317]},{"name":"NDIS_802_11_POWER_MODE","features":[317]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[317]},{"name":"NDIS_802_11_RADIO_STATUS","features":[317]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[317]},{"name":"NDIS_802_11_REMOVE_KEY","features":[317]},{"name":"NDIS_802_11_SSID","features":[317]},{"name":"NDIS_802_11_STATISTICS","features":[317]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[317]},{"name":"NDIS_802_11_STATUS_TYPE","features":[317]},{"name":"NDIS_802_11_TEST","features":[317]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[317]},{"name":"NDIS_802_11_WEP","features":[317]},{"name":"NDIS_802_11_WEP_STATUS","features":[317]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[317]},{"name":"NDIS_802_5_RING_STATE","features":[317]},{"name":"NDIS_AF_LIST","features":[317]},{"name":"NDIS_ANY_NUMBER_OF_NBLS","features":[317]},{"name":"NDIS_ATTRIBUTE_BUS_MASTER","features":[317]},{"name":"NDIS_ATTRIBUTE_DESERIALIZE","features":[317]},{"name":"NDIS_ATTRIBUTE_DO_NOT_BIND_TO_ALL_CO","features":[317]},{"name":"NDIS_ATTRIBUTE_IGNORE_PACKET_TIMEOUT","features":[317]},{"name":"NDIS_ATTRIBUTE_IGNORE_REQUEST_TIMEOUT","features":[317]},{"name":"NDIS_ATTRIBUTE_IGNORE_TOKEN_RING_ERRORS","features":[317]},{"name":"NDIS_ATTRIBUTE_INTERMEDIATE_DRIVER","features":[317]},{"name":"NDIS_ATTRIBUTE_MINIPORT_PADS_SHORT_PACKETS","features":[317]},{"name":"NDIS_ATTRIBUTE_NOT_CO_NDIS","features":[317]},{"name":"NDIS_ATTRIBUTE_NO_HALT_ON_SUSPEND","features":[317]},{"name":"NDIS_ATTRIBUTE_SURPRISE_REMOVE_OK","features":[317]},{"name":"NDIS_ATTRIBUTE_USES_SAFE_BUFFER_APIS","features":[317]},{"name":"NDIS_BIND_FAILED_NOTIFICATION_REVISION_1","features":[317]},{"name":"NDIS_BIND_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_BIND_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_BIND_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_BIND_PARAMETERS_REVISION_4","features":[317]},{"name":"NDIS_CALL_MANAGER_CHARACTERISTICS","features":[317]},{"name":"NDIS_CLASS_ID","features":[317]},{"name":"NDIS_CLONE_FLAGS_RESERVED","features":[317]},{"name":"NDIS_CLONE_FLAGS_USE_ORIGINAL_MDLS","features":[317]},{"name":"NDIS_CONFIGURATION_OBJECT_REVISION_1","features":[317]},{"name":"NDIS_CONFIGURATION_PARAMETER","features":[317,305]},{"name":"NDIS_CONFIG_FLAG_FILTER_INSTANCE_CONFIGURATION","features":[317]},{"name":"NDIS_CO_CALL_MANAGER_OPTIONAL_HANDLERS_REVISION_1","features":[317]},{"name":"NDIS_CO_CLIENT_OPTIONAL_HANDLERS_REVISION_1","features":[317]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[317]},{"name":"NDIS_CO_LINK_SPEED","features":[317]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[317]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[317]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[317]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[317]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[317]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[317]},{"name":"NDIS_DEVICE_OBJECT_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_DEVICE_PNP_EVENT","features":[317]},{"name":"NDIS_DEVICE_POWER_STATE","features":[317]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[317]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[317]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[317]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[317]},{"name":"NDIS_DMA_BLOCK","features":[306,317,305,311]},{"name":"NDIS_DMA_DESCRIPTION","features":[317,307,305]},{"name":"NDIS_DRIVER_FLAGS_RESERVED","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[317]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[317]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[317]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[317]},{"name":"NDIS_ENCAPSULATION_NULL","features":[317]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[317]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[317]},{"name":"NDIS_ENUM_FILTERS_REVISION_1","features":[317]},{"name":"NDIS_ENVIRONMENT_TYPE","features":[317]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[317]},{"name":"NDIS_ETH_TYPE_802_1X","features":[317]},{"name":"NDIS_ETH_TYPE_ARP","features":[317]},{"name":"NDIS_ETH_TYPE_IPV4","features":[317]},{"name":"NDIS_ETH_TYPE_IPV6","features":[317]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[317]},{"name":"NDIS_EVENT","features":[306,317,305,311]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[317]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[317]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[317]},{"name":"NDIS_FILTER_ATTACH_FLAGS_IGNORE_MANDATORY","features":[317]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_FILTER_ATTACH_PARAMETERS_REVISION_4","features":[317]},{"name":"NDIS_FILTER_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_2","features":[317]},{"name":"NDIS_FILTER_CHARACTERISTICS_REVISION_3","features":[317]},{"name":"NDIS_FILTER_DRIVER_MANDATORY","features":[317]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[317]},{"name":"NDIS_FILTER_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[317]},{"name":"NDIS_FILTER_INTERFACE_IM_FILTER","features":[317]},{"name":"NDIS_FILTER_INTERFACE_LW_FILTER","features":[317]},{"name":"NDIS_FILTER_INTERFACE_RECEIVE_BYPASS","features":[317]},{"name":"NDIS_FILTER_INTERFACE_REVISION_1","features":[317]},{"name":"NDIS_FILTER_INTERFACE_REVISION_2","features":[317]},{"name":"NDIS_FILTER_INTERFACE_SEND_BYPASS","features":[317]},{"name":"NDIS_FILTER_MAJOR_VERSION","features":[317]},{"name":"NDIS_FILTER_MINIMUM_MAJOR_VERSION","features":[317]},{"name":"NDIS_FILTER_MINIMUM_MINOR_VERSION","features":[317]},{"name":"NDIS_FILTER_MINOR_VERSION","features":[317]},{"name":"NDIS_FILTER_PARTIAL_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_FILTER_PAUSE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_FILTER_RESTART_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_FLAGS_DONT_LOOPBACK","features":[317]},{"name":"NDIS_FLAGS_DOUBLE_BUFFERED","features":[317]},{"name":"NDIS_FLAGS_IS_LOOPBACK_PACKET","features":[317]},{"name":"NDIS_FLAGS_LOOPBACK_ONLY","features":[317]},{"name":"NDIS_FLAGS_MULTICAST_PACKET","features":[317]},{"name":"NDIS_FLAGS_PADDED","features":[317]},{"name":"NDIS_FLAGS_PROTOCOL_ID_MASK","features":[317]},{"name":"NDIS_FLAGS_RESERVED2","features":[317]},{"name":"NDIS_FLAGS_RESERVED3","features":[317]},{"name":"NDIS_FLAGS_RESERVED4","features":[317]},{"name":"NDIS_FLAGS_SENT_AT_DPC","features":[317]},{"name":"NDIS_FLAGS_USES_ORIGINAL_PACKET","features":[317]},{"name":"NDIS_FLAGS_USES_SG_BUFFER_LIST","features":[317]},{"name":"NDIS_FLAGS_XLATE_AT_TOP","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[317]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[317]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[317]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[317]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[317]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[317]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[317]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[317]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[317]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[317]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[317]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[317]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[317]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[317]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[317]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[317]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[317]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[317]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[317]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[317]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[317]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[317]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[317]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[317]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[317]},{"name":"NDIS_GFT_OFFLOAD_INFO_COPY_PACKET","features":[317]},{"name":"NDIS_GFT_OFFLOAD_INFO_DIRECTION_INGRESS","features":[317]},{"name":"NDIS_GFT_OFFLOAD_INFO_EXCEPTION_PACKET","features":[317]},{"name":"NDIS_GFT_OFFLOAD_INFO_SAMPLE_PACKET","features":[317]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[317]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[317]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[317]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[317]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[317]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[317]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[317]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[317]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[317]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[317]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[317]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[317]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[317]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[317]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[317]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[317]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[317]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[317]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[317]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[317]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[317]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[317]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[317]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[317]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[317]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[317]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[317]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[317]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_GUID","features":[317]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[317]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[317]},{"name":"NDIS_HARDWARE_STATUS","features":[317]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[317]},{"name":"NDIS_HASH_IPV4","features":[317]},{"name":"NDIS_HASH_IPV6","features":[317]},{"name":"NDIS_HASH_IPV6_EX","features":[317]},{"name":"NDIS_HASH_TCP_IPV4","features":[317]},{"name":"NDIS_HASH_TCP_IPV6","features":[317]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[317]},{"name":"NDIS_HASH_TYPE_MASK","features":[317]},{"name":"NDIS_HASH_UDP_IPV4","features":[317]},{"name":"NDIS_HASH_UDP_IPV6","features":[317]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[317]},{"name":"NDIS_HD_SPLIT_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[317]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[317]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[317]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[317]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[317]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[317]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[317]},{"name":"NDIS_INTERFACE_TYPE","features":[317]},{"name":"NDIS_INTERMEDIATE_DRIVER","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[317]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[317]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_EX_REVISION_1","features":[317]},{"name":"NDIS_IPSEC_OFFLOAD_V2_ADD_SA_REVISION_1","features":[317]},{"name":"NDIS_IPSEC_OFFLOAD_V2_DELETE_SA_REVISION_1","features":[317]},{"name":"NDIS_IPSEC_OFFLOAD_V2_UPDATE_SA_REVISION_1","features":[317]},{"name":"NDIS_IP_OPER_STATE","features":[317,319]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[317]},{"name":"NDIS_IP_OPER_STATUS","features":[317,319]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[317,319]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[317]},{"name":"NDIS_IRDA_PACKET_INFO","features":[317]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[317]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_KDNET_ADD_PF_REVISION_1","features":[317]},{"name":"NDIS_KDNET_ENUMERATE_PFS_REVISION_1","features":[317]},{"name":"NDIS_KDNET_PF_ENUM_ELEMENT_REVISION_1","features":[317]},{"name":"NDIS_KDNET_QUERY_PF_INFORMATION_REVISION_1","features":[317]},{"name":"NDIS_KDNET_REMOVE_PF_REVISION_1","features":[317]},{"name":"NDIS_LARGE_SEND_OFFLOAD_MAX_HEADER_LENGTH","features":[317]},{"name":"NDIS_LEGACY_DRIVER","features":[317]},{"name":"NDIS_LEGACY_MINIPORT","features":[317]},{"name":"NDIS_LEGACY_PROTOCOL","features":[317]},{"name":"NDIS_LINK_PARAMETERS","features":[317,319]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_LINK_SPEED","features":[317]},{"name":"NDIS_LINK_STATE","features":[317,319]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[317]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[317]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[317]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[317]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[317]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[317]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[317]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[317]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[317]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[317]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[317]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[317]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[317]},{"name":"NDIS_MAXIMUM_PORTS","features":[317]},{"name":"NDIS_MAX_LOOKAHEAD_SIZE_ACCESSED_UNDEFINED","features":[317]},{"name":"NDIS_MAX_PROCESSOR_COUNT","features":[317]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[317]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[317]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_EAPOL","features":[317]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_FCOE","features":[317]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_LLDP","features":[317]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TIMESYNC","features":[317]},{"name":"NDIS_MEDIA_SPECIFIC_INFO_TUNDL","features":[317]},{"name":"NDIS_MEDIA_STATE","features":[317]},{"name":"NDIS_MEDIUM","features":[317]},{"name":"NDIS_MEMORY_CONTIGUOUS","features":[317]},{"name":"NDIS_MEMORY_NONCACHED","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_2","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_802_11_ATTRIBUTES_REVISION_3","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES_REVISION_2","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_2","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_3","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES_REVISION_4","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_NDK_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES_REVISION_2","features":[317]},{"name":"NDIS_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_BUS_MASTER","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_CONTROLS_DEFAULT_PORT","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_DO_NOT_BIND_TO_ALL_CO","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_HARDWARE_DEVICE","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NDIS_WDM","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NOT_CO_NDIS","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_HALT_ON_SUSPEND","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_OID_INTERCEPT_ON_NONDEFAULT_PORTS","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_NO_PAUSE_ON_SUSPEND","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_REGISTER_BUGCHECK_CALLBACK","features":[317]},{"name":"NDIS_MINIPORT_ATTRIBUTES_SURPRISE_REMOVE_OK","features":[317]},{"name":"NDIS_MINIPORT_BLOCK","features":[317]},{"name":"NDIS_MINIPORT_CO_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_DRIVER","features":[317]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_2","features":[317]},{"name":"NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_3","features":[317]},{"name":"NDIS_MINIPORT_INIT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_INTERRUPT_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_MAJOR_VERSION","features":[317]},{"name":"NDIS_MINIPORT_MINIMUM_MAJOR_VERSION","features":[317]},{"name":"NDIS_MINIPORT_MINIMUM_MINOR_VERSION","features":[317]},{"name":"NDIS_MINIPORT_MINOR_VERSION","features":[317]},{"name":"NDIS_MINIPORT_PAUSE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_PNP_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_RESTART_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_SS_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_MINIPORT_TIMER","features":[306,317,307,305,311]},{"name":"NDIS_MIN_API","features":[317]},{"name":"NDIS_MONITOR_CONFIG_REVISION_1","features":[317]},{"name":"NDIS_MSIX_CONFIG_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_M_DRIVER_BLOCK","features":[317]},{"name":"NDIS_M_MAX_LOOKAHEAD","features":[317]},{"name":"NDIS_NBL_FLAGS_CAPTURE_TIMESTAMP_ON_TRANSMIT","features":[317]},{"name":"NDIS_NBL_FLAGS_HD_SPLIT","features":[317]},{"name":"NDIS_NBL_FLAGS_IS_IPV4","features":[317]},{"name":"NDIS_NBL_FLAGS_IS_IPV6","features":[317]},{"name":"NDIS_NBL_FLAGS_IS_LOOPBACK_PACKET","features":[317]},{"name":"NDIS_NBL_FLAGS_IS_TCP","features":[317]},{"name":"NDIS_NBL_FLAGS_IS_UDP","features":[317]},{"name":"NDIS_NBL_FLAGS_RECV_READ_ONLY","features":[317]},{"name":"NDIS_NBL_FLAGS_SEND_READ_ONLY","features":[317]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_HEADER","features":[317]},{"name":"NDIS_NBL_FLAGS_SPLIT_AT_UPPER_LAYER_PROTOCOL_PAYLOAD","features":[317]},{"name":"NDIS_NBL_MEDIA_SPECIFIC_INFO_REVISION_1","features":[317]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[317]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[317]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[317]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[317]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[317]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[317]},{"name":"NDIS_NT","features":[317]},{"name":"NDIS_OBJECT_HEADER","features":[317]},{"name":"NDIS_OBJECT_REVISION_1","features":[317]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[317]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[317]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_REVISION_1","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[317]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[317]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[317]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[317]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[317]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[317]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[317]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[317]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[317]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[317]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[317]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[317]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[317]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[317]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[317]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[317]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[317]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[317]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[317]},{"name":"NDIS_OFFLOAD","features":[317]},{"name":"NDIS_OFFLOAD_ENCAPSULATION_REVISION_1","features":[317]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[317]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[317]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[317]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[317]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[317]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[317]},{"name":"NDIS_OFFLOAD_SET_ON","features":[317]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[317]},{"name":"NDIS_OID_REQUEST_FLAGS_VPORT_ID_VALID","features":[317]},{"name":"NDIS_OID_REQUEST_NDIS_RESERVED_SIZE","features":[317]},{"name":"NDIS_OID_REQUEST_REVISION_1","features":[317]},{"name":"NDIS_OID_REQUEST_REVISION_2","features":[317]},{"name":"NDIS_OID_REQUEST_TIMEOUT_INFINITE","features":[317]},{"name":"NDIS_OPEN_BLOCK","features":[317]},{"name":"NDIS_OPEN_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_OPEN_RECEIVE_NOT_REENTRANT","features":[317]},{"name":"NDIS_OPER_STATE","features":[317,319]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[317]},{"name":"NDIS_PACKET_8021Q_INFO","features":[317]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[317]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[317]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[317]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[317]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[317]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[317]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[317]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[317]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[317]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[317]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[317]},{"name":"NDIS_PACKET_TYPE_SMT","features":[317]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[317]},{"name":"NDIS_PARAMETER_TYPE","features":[317]},{"name":"NDIS_PAUSE_ATTACH_FILTER","features":[317]},{"name":"NDIS_PAUSE_BIND_PROTOCOL","features":[317]},{"name":"NDIS_PAUSE_DETACH_FILTER","features":[317]},{"name":"NDIS_PAUSE_FILTER_RESTART_STACK","features":[317]},{"name":"NDIS_PAUSE_LOW_POWER","features":[317]},{"name":"NDIS_PAUSE_MINIPORT_DEVICE_REMOVE","features":[317]},{"name":"NDIS_PAUSE_NDIS_INTERNAL","features":[317]},{"name":"NDIS_PAUSE_UNBIND_PROTOCOL","features":[317]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[317]},{"name":"NDIS_PD_ACQUIRE_QUEUES_FLAG_DRAIN_NOTIFICATION","features":[317]},{"name":"NDIS_PD_ACQUIRE_QUEUES_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[317]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[317]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[317]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[317]},{"name":"NDIS_PD_CLOSE_PROVIDER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[317]},{"name":"NDIS_PD_COUNTER_HANDLE","features":[317]},{"name":"NDIS_PD_COUNTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PD_FILTER_HANDLE","features":[317]},{"name":"NDIS_PD_FILTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PD_OPEN_PROVIDER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PD_PROVIDER_DISPATCH_REVISION_1","features":[317]},{"name":"NDIS_PD_PROVIDER_HANDLE","features":[317]},{"name":"NDIS_PD_QUEUE_DISPATCH_REVISION_1","features":[317]},{"name":"NDIS_PD_QUEUE_FLAG_DRAIN_NOTIFICATION","features":[317]},{"name":"NDIS_PD_QUEUE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PD_QUEUE_REVISION_1","features":[317]},{"name":"NDIS_PER_PACKET_INFO","features":[317]},{"name":"NDIS_PHYSICAL_ADDRESS_UNIT","features":[317]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[317]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[317]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[317]},{"name":"NDIS_PM_PACKET_PATTERN","features":[317]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[317]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[317]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[317]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[317]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[317]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[317]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[317]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[317]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[317]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[317]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[317]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[317]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[317]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[317]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[317]},{"name":"NDIS_PNP_CAPABILITIES","features":[317]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[317]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[317]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[317]},{"name":"NDIS_POLL_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_POLL_DATA_REVISION_1","features":[317]},{"name":"NDIS_POLL_HANDLE","features":[317]},{"name":"NDIS_POLL_NOTIFICATION_REVISION_1","features":[317]},{"name":"NDIS_PORT","features":[317,319]},{"name":"NDIS_PORT_ARRAY","features":[317,319]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[317]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[317]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[317,319]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[317]},{"name":"NDIS_PORT_CONTROL_STATE","features":[317]},{"name":"NDIS_PORT_STATE","features":[317,319]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[317]},{"name":"NDIS_PORT_TYPE","features":[317]},{"name":"NDIS_POWER_PROFILE","features":[317]},{"name":"NDIS_PROC","features":[317]},{"name":"NDIS_PROCESSOR_TYPE","features":[317]},{"name":"NDIS_PROCESSOR_VENDOR","features":[317]},{"name":"NDIS_PROC_CALLBACK","features":[317]},{"name":"NDIS_PROTOCOL_BLOCK","features":[317]},{"name":"NDIS_PROTOCOL_CO_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_PROTOCOL_DRIVER_CHARACTERISTICS_REVISION_2","features":[317]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_CURRENT_MAC_ADDRESS_CHANGE","features":[317]},{"name":"NDIS_PROTOCOL_DRIVER_SUPPORTS_L2_MTU_SIZE_CHANGE","features":[317]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[317]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[317]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[317]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[317]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[317]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[317]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[317]},{"name":"NDIS_PROTOCOL_MAJOR_VERSION","features":[317]},{"name":"NDIS_PROTOCOL_MINIMUM_MAJOR_VERSION","features":[317]},{"name":"NDIS_PROTOCOL_MINIMUM_MINOR_VERSION","features":[317]},{"name":"NDIS_PROTOCOL_MINOR_VERSION","features":[317]},{"name":"NDIS_PROTOCOL_PAUSE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PROTOCOL_RESTART_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[317]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[317]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[317]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[317]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[317]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[317]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[317]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[317]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[317]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[317]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[317]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[317]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[317]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[317]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[317]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[317]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[317]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[317]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[317]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[317]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[317]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[317]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[317]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[317]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[317]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[317]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[317]},{"name":"NDIS_QOS_TSA_CBS","features":[317]},{"name":"NDIS_QOS_TSA_ETS","features":[317]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[317]},{"name":"NDIS_QOS_TSA_STRICT","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_FILTER_QUEUE_STATE_CHANGE_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[317]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_DISPATCH_LEVEL","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_MORE_NBLS","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_PERFECT_FILTERED","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_RESOURCES","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_SHARED_MEMORY_INFO_VALID","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_ETHER_TYPE","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_QUEUE","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_SINGLE_VLAN","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_DESTINATION_GROUP","features":[317]},{"name":"NDIS_RECEIVE_FLAGS_SWITCH_SINGLE_SOURCE","features":[317]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[317]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[317]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[317]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[317]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_QUEUE_STATE_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[317]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[317]},{"name":"NDIS_REQUEST_TYPE","features":[317]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_MAX_LOOKAHEAD_ACCESSED_DEFINED","features":[317]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_1","features":[317]},{"name":"NDIS_RESTART_GENERAL_ATTRIBUTES_REVISION_2","features":[317]},{"name":"NDIS_RETURN_FLAGS_DISPATCH_LEVEL","features":[317]},{"name":"NDIS_RETURN_FLAGS_SINGLE_QUEUE","features":[317]},{"name":"NDIS_RETURN_FLAGS_SWITCH_SINGLE_SOURCE","features":[317]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[317]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[317]},{"name":"NDIS_RING_HARD_ERROR","features":[317]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[317]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[317]},{"name":"NDIS_RING_RING_RECOVERY","features":[317]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[317]},{"name":"NDIS_RING_SINGLE_STATION","features":[317]},{"name":"NDIS_RING_SOFT_ERROR","features":[317]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[317]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[317]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[317]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[317]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[317]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[317]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[317]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[317]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[317]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[317]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[317]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[317]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[317]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[317]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[317]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[317]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[317]},{"name":"NDIS_RUNTIME_VERSION_60","features":[317]},{"name":"NDIS_RWL_AT_DISPATCH_LEVEL","features":[317]},{"name":"NDIS_RW_LOCK","features":[317,305]},{"name":"NDIS_RW_LOCK_REFCOUNT","features":[317]},{"name":"NDIS_SCATTER_GATHER_LIST_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SEND_COMPLETE_FLAGS_DISPATCH_LEVEL","features":[317]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SINGLE_QUEUE","features":[317]},{"name":"NDIS_SEND_COMPLETE_FLAGS_SWITCH_SINGLE_SOURCE","features":[317]},{"name":"NDIS_SEND_FLAGS_CHECK_FOR_LOOPBACK","features":[317]},{"name":"NDIS_SEND_FLAGS_DISPATCH_LEVEL","features":[317]},{"name":"NDIS_SEND_FLAGS_SINGLE_QUEUE","features":[317]},{"name":"NDIS_SEND_FLAGS_SWITCH_DESTINATION_GROUP","features":[317]},{"name":"NDIS_SEND_FLAGS_SWITCH_SINGLE_SOURCE","features":[317]},{"name":"NDIS_SG_DMA_64_BIT_ADDRESS","features":[317]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_1","features":[317]},{"name":"NDIS_SG_DMA_DESCRIPTION_REVISION_2","features":[317]},{"name":"NDIS_SG_DMA_HYBRID_DMA","features":[317]},{"name":"NDIS_SG_DMA_V3_HAL_API","features":[317]},{"name":"NDIS_SG_LIST_WRITE_TO_DEVICE","features":[317]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SHARED_MEMORY_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_SHARED_MEMORY_PROVIDER_CHAR_SUPPORTS_PF_VPORTS","features":[317]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGOUS","features":[317]},{"name":"NDIS_SHARED_MEM_PARAMETERS_CONTIGUOUS","features":[317]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_SPIN_LOCK","features":[317]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[317]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[317]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[317]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[317]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_RCV_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_BROADCAST_BYTES_XMIT_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_RCV_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_BROADCAST_FRAMES_XMIT_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_BYTES_RCV_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_BYTES_XMIT_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_RCV_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_DIRECTED_BYTES_XMIT_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_RCV_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_DIRECTED_FRAMES_XMIT_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[317]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[317]},{"name":"NDIS_STATISTICS_GEN_STATISTICS_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_INFO","features":[317]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[317]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_RCV_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_MULTICAST_BYTES_XMIT_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_RCV_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_MULTICAST_FRAMES_XMIT_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_RCV_CRC_ERROR_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_RCV_DISCARDS_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_RCV_ERROR_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_RCV_NO_BUFFER_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_RCV_OK_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_TRANSMIT_QUEUE_LENGTH_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_VALUE","features":[317]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[317]},{"name":"NDIS_STATISTICS_XMIT_DISCARDS_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_XMIT_ERROR_SUPPORTED","features":[317]},{"name":"NDIS_STATISTICS_XMIT_OK_SUPPORTED","features":[317]},{"name":"NDIS_STATUS_INDICATION_FLAGS_MEDIA_CONNECT_TO_CONNECT","features":[317]},{"name":"NDIS_STATUS_INDICATION_FLAGS_NDIS_RESERVED","features":[317]},{"name":"NDIS_STATUS_INDICATION_REVISION_1","features":[317]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[317]},{"name":"NDIS_SUPPORT_60_COMPATIBLE_API","features":[317]},{"name":"NDIS_SUPPORT_NDIS6","features":[317]},{"name":"NDIS_SUPPORT_NDIS61","features":[317]},{"name":"NDIS_SUPPORT_NDIS620","features":[317]},{"name":"NDIS_SUPPORT_NDIS630","features":[317]},{"name":"NDIS_SUPPORT_NDIS640","features":[317]},{"name":"NDIS_SUPPORT_NDIS650","features":[317]},{"name":"NDIS_SUPPORT_NDIS651","features":[317]},{"name":"NDIS_SUPPORT_NDIS660","features":[317]},{"name":"NDIS_SUPPORT_NDIS670","features":[317]},{"name":"NDIS_SUPPORT_NDIS680","features":[317]},{"name":"NDIS_SUPPORT_NDIS681","features":[317]},{"name":"NDIS_SUPPORT_NDIS682","features":[317]},{"name":"NDIS_SUPPORT_NDIS683","features":[317]},{"name":"NDIS_SUPPORT_NDIS684","features":[317]},{"name":"NDIS_SUPPORT_NDIS685","features":[317]},{"name":"NDIS_SUPPORT_NDIS686","features":[317]},{"name":"NDIS_SUPPORT_NDIS687","features":[317]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_DESTINATIONS","features":[317]},{"name":"NDIS_SWITCH_COPY_NBL_INFO_FLAGS_PRESERVE_SWITCH_INFO_ONLY","features":[317]},{"name":"NDIS_SWITCH_DEFAULT_NIC_INDEX","features":[317]},{"name":"NDIS_SWITCH_DEFAULT_PORT_ID","features":[317]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_FORWARDING_DESTINATION_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NET_BUFFER_LIST_CONTEXT_TYPE_INFO_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[317]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[317]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[317]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[317]},{"name":"NDIS_SWITCH_NIC_STATUS_INDICATION_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[317]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_PD_RESERVED_SIZE","features":[317]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_OPTIONAL_HANDLERS_REVISION_2","features":[317]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[317]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[317]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[317]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_SWITCH_REPORT_FILTERED_NBL_FLAGS_IS_INCOMING","features":[317]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[317]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_REVISION_1","features":[317]},{"name":"NDIS_TASK_OFFLOAD_VERSION","features":[317]},{"name":"NDIS_TASK_TCP_LARGE_SEND_V0","features":[317]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[317]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[317]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[317]},{"name":"NDIS_TCP_IP_CHECKSUM_PACKET_INFO","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv4","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_IPv6","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1_TYPE","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[317]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2_TYPE","features":[317]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[317]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[317]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_TIMER","features":[306,317,307,305,311]},{"name":"NDIS_TIMER_CHARACTERISTICS_REVISION_1","features":[317]},{"name":"NDIS_TIMER_FUNCTION","features":[317]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[317,305]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[317,305]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV4","features":[317]},{"name":"NDIS_UDP_SEGMENTATION_OFFLOAD_IPV6","features":[317]},{"name":"NDIS_VAR_DATA_DESC","features":[317]},{"name":"NDIS_WAN_FRAGMENT","features":[317]},{"name":"NDIS_WAN_GET_STATS","features":[317]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[317]},{"name":"NDIS_WAN_LINE_DOWN","features":[317]},{"name":"NDIS_WAN_LINE_UP","features":[317,305]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[317]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[317]},{"name":"NDIS_WAN_QUALITY","features":[317]},{"name":"NDIS_WDF","features":[317]},{"name":"NDIS_WDM","features":[317]},{"name":"NDIS_WDM_DRIVER","features":[317]},{"name":"NDIS_WLAN_BSSID","features":[317]},{"name":"NDIS_WLAN_BSSID_EX","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[317]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[317]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[317]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[317,319]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[317]},{"name":"NDIS_WMI_EVENT_HEADER","features":[317,319]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[317]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[317]},{"name":"NDIS_WMI_METHOD_HEADER","features":[317,319]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[317]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[317]},{"name":"NDIS_WMI_OFFLOAD","features":[317]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[317]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[317]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[317]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[317]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[317]},{"name":"NDIS_WMI_SET_HEADER","features":[317,319]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[317]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[317]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[317]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[317]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[317]},{"name":"NDIS_WORK_ITEM","features":[317]},{"name":"NDIS_WRAPPER_HANDLE","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[317]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[317]},{"name":"NETWORK_ADDRESS","features":[317]},{"name":"NETWORK_ADDRESS_IP","features":[317]},{"name":"NETWORK_ADDRESS_IP6","features":[317]},{"name":"NETWORK_ADDRESS_IPX","features":[317]},{"name":"NETWORK_ADDRESS_LIST","features":[317]},{"name":"NET_BUFFER_LIST_POOL_FLAG_VERIFY","features":[317]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_1","features":[317]},{"name":"NET_BUFFER_LIST_POOL_PARAMETERS_REVISION_2","features":[317]},{"name":"NET_BUFFER_POOL_FLAG_VERIFY","features":[317]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_1","features":[317]},{"name":"NET_BUFFER_POOL_PARAMETERS_REVISION_2","features":[317]},{"name":"NET_DEVICE_PNP_EVENT_REVISION_1","features":[317]},{"name":"NET_EVENT_FLAGS_VPORT_ID_VALID","features":[317]},{"name":"NET_EVENT_HALT_MINIPORT_ON_LOW_POWER","features":[317]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_1","features":[317]},{"name":"NET_PNP_EVENT_NOTIFICATION_REVISION_2","features":[317]},{"name":"NULL_FILTER","features":[317]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[317]},{"name":"Ndis802_11AuthModeMax","features":[317]},{"name":"Ndis802_11AuthModeOpen","features":[317]},{"name":"Ndis802_11AuthModeShared","features":[317]},{"name":"Ndis802_11AuthModeWPA","features":[317]},{"name":"Ndis802_11AuthModeWPA2","features":[317]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[317]},{"name":"Ndis802_11AuthModeWPA3","features":[317]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[317]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[317]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[317]},{"name":"Ndis802_11AuthModeWPANone","features":[317]},{"name":"Ndis802_11AuthModeWPAPSK","features":[317]},{"name":"Ndis802_11AutoUnknown","features":[317]},{"name":"Ndis802_11Automode","features":[317]},{"name":"Ndis802_11DS","features":[317]},{"name":"Ndis802_11Encryption1Enabled","features":[317]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[317]},{"name":"Ndis802_11Encryption2Enabled","features":[317]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[317]},{"name":"Ndis802_11Encryption3Enabled","features":[317]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[317]},{"name":"Ndis802_11EncryptionDisabled","features":[317]},{"name":"Ndis802_11EncryptionNotSupported","features":[317]},{"name":"Ndis802_11FH","features":[317]},{"name":"Ndis802_11IBSS","features":[317]},{"name":"Ndis802_11Infrastructure","features":[317]},{"name":"Ndis802_11InfrastructureMax","features":[317]},{"name":"Ndis802_11MediaStreamOff","features":[317]},{"name":"Ndis802_11MediaStreamOn","features":[317]},{"name":"Ndis802_11NetworkTypeMax","features":[317]},{"name":"Ndis802_11OFDM24","features":[317]},{"name":"Ndis802_11OFDM5","features":[317]},{"name":"Ndis802_11PowerModeCAM","features":[317]},{"name":"Ndis802_11PowerModeFast_PSP","features":[317]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[317]},{"name":"Ndis802_11PowerModeMax","features":[317]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[317]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[317]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[317]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[317]},{"name":"Ndis802_11RadioStatusMax","features":[317]},{"name":"Ndis802_11RadioStatusOn","features":[317]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[317]},{"name":"Ndis802_11ReloadWEPKeys","features":[317]},{"name":"Ndis802_11StatusTypeMax","features":[317]},{"name":"Ndis802_11StatusType_Authentication","features":[317]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[317]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[317]},{"name":"Ndis802_11WEPDisabled","features":[317]},{"name":"Ndis802_11WEPEnabled","features":[317]},{"name":"Ndis802_11WEPKeyAbsent","features":[317]},{"name":"Ndis802_11WEPNotSupported","features":[317]},{"name":"NdisAcquireReadWriteLock","features":[317,305]},{"name":"NdisAllocateMemoryWithTag","features":[317]},{"name":"NdisCancelTimer","features":[306,317,307,305,311]},{"name":"NdisClAddParty","features":[317]},{"name":"NdisClCloseAddressFamily","features":[317]},{"name":"NdisClCloseCall","features":[317]},{"name":"NdisClDeregisterSap","features":[317]},{"name":"NdisClDropParty","features":[317]},{"name":"NdisClGetProtocolVcContextFromTapiCallId","features":[317,305]},{"name":"NdisClIncomingCallComplete","features":[317]},{"name":"NdisClMakeCall","features":[317]},{"name":"NdisClModifyCallQoS","features":[317]},{"name":"NdisClRegisterSap","features":[317]},{"name":"NdisClass802_3Priority","features":[317]},{"name":"NdisClassAtmAALInfo","features":[317]},{"name":"NdisClassIrdaPacketInfo","features":[317]},{"name":"NdisClassWirelessWanMbxMailbox","features":[317]},{"name":"NdisCloseConfiguration","features":[317]},{"name":"NdisCloseFile","features":[317]},{"name":"NdisCmActivateVc","features":[317]},{"name":"NdisCmAddPartyComplete","features":[317]},{"name":"NdisCmCloseAddressFamilyComplete","features":[317]},{"name":"NdisCmCloseCallComplete","features":[317]},{"name":"NdisCmDeactivateVc","features":[317]},{"name":"NdisCmDeregisterSapComplete","features":[317]},{"name":"NdisCmDispatchCallConnected","features":[317]},{"name":"NdisCmDispatchIncomingCall","features":[317]},{"name":"NdisCmDispatchIncomingCallQoSChange","features":[317]},{"name":"NdisCmDispatchIncomingCloseCall","features":[317]},{"name":"NdisCmDispatchIncomingDropParty","features":[317]},{"name":"NdisCmDropPartyComplete","features":[317]},{"name":"NdisCmMakeCallComplete","features":[317]},{"name":"NdisCmModifyCallQoSComplete","features":[317]},{"name":"NdisCmOpenAddressFamilyComplete","features":[317]},{"name":"NdisCmRegisterSapComplete","features":[317]},{"name":"NdisCoAssignInstanceName","features":[317,305]},{"name":"NdisCoCreateVc","features":[317]},{"name":"NdisCoDeleteVc","features":[317]},{"name":"NdisCoGetTapiCallId","features":[317]},{"name":"NdisCompleteDmaTransfer","features":[306,317,305]},{"name":"NdisCopyBuffer","features":[306,317]},{"name":"NdisDefinitelyNetworkChange","features":[317]},{"name":"NdisDeregisterTdiCallBack","features":[317]},{"name":"NdisDevicePnPEventMaximum","features":[317]},{"name":"NdisDevicePnPEventPowerProfileChanged","features":[317]},{"name":"NdisDevicePnPEventQueryRemoved","features":[317]},{"name":"NdisDevicePnPEventQueryStopped","features":[317]},{"name":"NdisDevicePnPEventRemoved","features":[317]},{"name":"NdisDevicePnPEventStopped","features":[317]},{"name":"NdisDevicePnPEventSurpriseRemoved","features":[317]},{"name":"NdisDeviceStateD0","features":[317]},{"name":"NdisDeviceStateD1","features":[317]},{"name":"NdisDeviceStateD2","features":[317]},{"name":"NdisDeviceStateD3","features":[317]},{"name":"NdisDeviceStateMaximum","features":[317]},{"name":"NdisDeviceStateUnspecified","features":[317]},{"name":"NdisEnvironmentWindows","features":[317]},{"name":"NdisEnvironmentWindowsNt","features":[317]},{"name":"NdisFddiRingDetect","features":[317]},{"name":"NdisFddiRingDirected","features":[317]},{"name":"NdisFddiRingIsolated","features":[317]},{"name":"NdisFddiRingNonOperational","features":[317]},{"name":"NdisFddiRingNonOperationalDup","features":[317]},{"name":"NdisFddiRingOperational","features":[317]},{"name":"NdisFddiRingOperationalDup","features":[317]},{"name":"NdisFddiRingTrace","features":[317]},{"name":"NdisFddiStateActive","features":[317]},{"name":"NdisFddiStateBreak","features":[317]},{"name":"NdisFddiStateConnect","features":[317]},{"name":"NdisFddiStateJoin","features":[317]},{"name":"NdisFddiStateMaintenance","features":[317]},{"name":"NdisFddiStateNext","features":[317]},{"name":"NdisFddiStateOff","features":[317]},{"name":"NdisFddiStateSignal","features":[317]},{"name":"NdisFddiStateTrace","features":[317]},{"name":"NdisFddiStateVerify","features":[317]},{"name":"NdisFddiTypeCWrapA","features":[317]},{"name":"NdisFddiTypeCWrapB","features":[317]},{"name":"NdisFddiTypeCWrapS","features":[317]},{"name":"NdisFddiTypeIsolated","features":[317]},{"name":"NdisFddiTypeLocalA","features":[317]},{"name":"NdisFddiTypeLocalAB","features":[317]},{"name":"NdisFddiTypeLocalB","features":[317]},{"name":"NdisFddiTypeLocalS","features":[317]},{"name":"NdisFddiTypeThrough","features":[317]},{"name":"NdisFddiTypeWrapA","features":[317]},{"name":"NdisFddiTypeWrapAB","features":[317]},{"name":"NdisFddiTypeWrapB","features":[317]},{"name":"NdisFddiTypeWrapS","features":[317]},{"name":"NdisFreeMemory","features":[317]},{"name":"NdisGeneratePartialCancelId","features":[317]},{"name":"NdisGetCurrentProcessorCounts","features":[317]},{"name":"NdisGetCurrentProcessorCpuUsage","features":[317]},{"name":"NdisGetRoutineAddress","features":[317,305]},{"name":"NdisGetSharedDataAlignment","features":[317]},{"name":"NdisGetVersion","features":[317]},{"name":"NdisHardwareStatusClosing","features":[317]},{"name":"NdisHardwareStatusInitializing","features":[317]},{"name":"NdisHardwareStatusNotReady","features":[317]},{"name":"NdisHardwareStatusReady","features":[317]},{"name":"NdisHardwareStatusReset","features":[317]},{"name":"NdisHashFunctionReserved1","features":[317]},{"name":"NdisHashFunctionReserved2","features":[317]},{"name":"NdisHashFunctionReserved3","features":[317]},{"name":"NdisHashFunctionToeplitz","features":[317]},{"name":"NdisIMAssociateMiniport","features":[317]},{"name":"NdisIMCancelInitializeDeviceInstance","features":[317,305]},{"name":"NdisIMDeInitializeDeviceInstance","features":[317]},{"name":"NdisIMGetBindingContext","features":[317]},{"name":"NdisIMInitializeDeviceInstanceEx","features":[317,305]},{"name":"NdisInitializeEvent","features":[306,317,305,311]},{"name":"NdisInitializeReadWriteLock","features":[317,305]},{"name":"NdisInitializeString","features":[317,305]},{"name":"NdisInitializeTimer","features":[306,317,307,305,311]},{"name":"NdisInterface1394","features":[317]},{"name":"NdisInterfaceCBus","features":[317]},{"name":"NdisInterfaceEisa","features":[317]},{"name":"NdisInterfaceInternal","features":[317]},{"name":"NdisInterfaceInternalPowerBus","features":[317]},{"name":"NdisInterfaceIrda","features":[317]},{"name":"NdisInterfaceIsa","features":[317]},{"name":"NdisInterfaceMPIBus","features":[317]},{"name":"NdisInterfaceMPSABus","features":[317]},{"name":"NdisInterfaceMca","features":[317]},{"name":"NdisInterfacePNPBus","features":[317]},{"name":"NdisInterfacePNPISABus","features":[317]},{"name":"NdisInterfacePcMcia","features":[317]},{"name":"NdisInterfacePci","features":[317]},{"name":"NdisInterfaceProcessorInternal","features":[317]},{"name":"NdisInterfaceTurboChannel","features":[317]},{"name":"NdisInterfaceUSB","features":[317]},{"name":"NdisInterruptModerationDisabled","features":[317]},{"name":"NdisInterruptModerationEnabled","features":[317]},{"name":"NdisInterruptModerationNotSupported","features":[317]},{"name":"NdisInterruptModerationUnknown","features":[317]},{"name":"NdisMAllocateSharedMemory","features":[317,305]},{"name":"NdisMAllocateSharedMemoryAsync","features":[317,305]},{"name":"NdisMCancelTimer","features":[306,317,307,305,311]},{"name":"NdisMCloseLog","features":[317]},{"name":"NdisMCmActivateVc","features":[317]},{"name":"NdisMCmCreateVc","features":[317]},{"name":"NdisMCmDeactivateVc","features":[317]},{"name":"NdisMCmDeleteVc","features":[317]},{"name":"NdisMCmRegisterAddressFamily","features":[317]},{"name":"NdisMCoActivateVcComplete","features":[317]},{"name":"NdisMCoDeactivateVcComplete","features":[317]},{"name":"NdisMCreateLog","features":[317]},{"name":"NdisMDeregisterDmaChannel","features":[317]},{"name":"NdisMDeregisterIoPortRange","features":[317]},{"name":"NdisMFlushLog","features":[317]},{"name":"NdisMFreeSharedMemory","features":[317,305]},{"name":"NdisMGetDeviceProperty","features":[306,317,309,307,305,308,310,311,312]},{"name":"NdisMGetDmaAlignment","features":[317]},{"name":"NdisMInitializeTimer","features":[306,317,307,305,311]},{"name":"NdisMMapIoSpace","features":[317]},{"name":"NdisMQueryAdapterInstanceName","features":[317,305]},{"name":"NdisMReadDmaCounter","features":[317]},{"name":"NdisMRegisterDmaChannel","features":[317,307,305]},{"name":"NdisMRegisterIoPortRange","features":[317]},{"name":"NdisMRemoveMiniport","features":[317]},{"name":"NdisMSetPeriodicTimer","features":[306,317,307,305,311]},{"name":"NdisMSleep","features":[317]},{"name":"NdisMUnmapIoSpace","features":[317]},{"name":"NdisMWriteLogData","features":[317]},{"name":"NdisMapFile","features":[317]},{"name":"NdisMaximumInterfaceType","features":[317]},{"name":"NdisMediaStateConnected","features":[317]},{"name":"NdisMediaStateDisconnected","features":[317]},{"name":"NdisMedium1394","features":[317]},{"name":"NdisMedium802_3","features":[317]},{"name":"NdisMedium802_5","features":[317]},{"name":"NdisMediumArcnet878_2","features":[317]},{"name":"NdisMediumArcnetRaw","features":[317]},{"name":"NdisMediumAtm","features":[317]},{"name":"NdisMediumBpc","features":[317]},{"name":"NdisMediumCoWan","features":[317]},{"name":"NdisMediumDix","features":[317]},{"name":"NdisMediumFddi","features":[317]},{"name":"NdisMediumIP","features":[317]},{"name":"NdisMediumInfiniBand","features":[317]},{"name":"NdisMediumIrda","features":[317]},{"name":"NdisMediumLocalTalk","features":[317]},{"name":"NdisMediumLoopback","features":[317]},{"name":"NdisMediumMax","features":[317]},{"name":"NdisMediumNative802_11","features":[317]},{"name":"NdisMediumTunnel","features":[317]},{"name":"NdisMediumWan","features":[317]},{"name":"NdisMediumWiMAX","features":[317]},{"name":"NdisMediumWirelessWan","features":[317]},{"name":"NdisNetworkChangeFromMediaConnect","features":[317]},{"name":"NdisNetworkChangeMax","features":[317]},{"name":"NdisOpenConfigurationKeyByIndex","features":[317,305]},{"name":"NdisOpenConfigurationKeyByName","features":[317,305]},{"name":"NdisOpenFile","features":[317,305]},{"name":"NdisParameterBinary","features":[317]},{"name":"NdisParameterHexInteger","features":[317]},{"name":"NdisParameterInteger","features":[317]},{"name":"NdisParameterMultiString","features":[317]},{"name":"NdisParameterString","features":[317]},{"name":"NdisPauseFunctionsReceiveOnly","features":[317]},{"name":"NdisPauseFunctionsSendAndReceive","features":[317]},{"name":"NdisPauseFunctionsSendOnly","features":[317]},{"name":"NdisPauseFunctionsUnknown","features":[317]},{"name":"NdisPauseFunctionsUnsupported","features":[317]},{"name":"NdisPhysicalMedium1394","features":[317]},{"name":"NdisPhysicalMedium802_3","features":[317]},{"name":"NdisPhysicalMedium802_5","features":[317]},{"name":"NdisPhysicalMediumBluetooth","features":[317]},{"name":"NdisPhysicalMediumCableModem","features":[317]},{"name":"NdisPhysicalMediumDSL","features":[317]},{"name":"NdisPhysicalMediumFibreChannel","features":[317]},{"name":"NdisPhysicalMediumInfiniband","features":[317]},{"name":"NdisPhysicalMediumIrda","features":[317]},{"name":"NdisPhysicalMediumMax","features":[317]},{"name":"NdisPhysicalMediumNative802_11","features":[317]},{"name":"NdisPhysicalMediumNative802_15_4","features":[317]},{"name":"NdisPhysicalMediumOther","features":[317]},{"name":"NdisPhysicalMediumPhoneLine","features":[317]},{"name":"NdisPhysicalMediumPowerLine","features":[317]},{"name":"NdisPhysicalMediumUWB","features":[317]},{"name":"NdisPhysicalMediumUnspecified","features":[317]},{"name":"NdisPhysicalMediumWiMax","features":[317]},{"name":"NdisPhysicalMediumWiredCoWan","features":[317]},{"name":"NdisPhysicalMediumWiredWAN","features":[317]},{"name":"NdisPhysicalMediumWirelessLan","features":[317]},{"name":"NdisPhysicalMediumWirelessWan","features":[317]},{"name":"NdisPortAuthorizationUnknown","features":[317]},{"name":"NdisPortAuthorized","features":[317]},{"name":"NdisPortControlStateControlled","features":[317]},{"name":"NdisPortControlStateUncontrolled","features":[317]},{"name":"NdisPortControlStateUnknown","features":[317]},{"name":"NdisPortReauthorizing","features":[317]},{"name":"NdisPortType8021xSupplicant","features":[317]},{"name":"NdisPortTypeBridge","features":[317]},{"name":"NdisPortTypeMax","features":[317]},{"name":"NdisPortTypeRasConnection","features":[317]},{"name":"NdisPortTypeUndefined","features":[317]},{"name":"NdisPortUnauthorized","features":[317]},{"name":"NdisPossibleNetworkChange","features":[317]},{"name":"NdisPowerProfileAcOnLine","features":[317]},{"name":"NdisPowerProfileBattery","features":[317]},{"name":"NdisProcessorAlpha","features":[317]},{"name":"NdisProcessorAmd64","features":[317]},{"name":"NdisProcessorArm","features":[317]},{"name":"NdisProcessorArm64","features":[317]},{"name":"NdisProcessorIA64","features":[317]},{"name":"NdisProcessorMips","features":[317]},{"name":"NdisProcessorPpc","features":[317]},{"name":"NdisProcessorVendorAuthenticAMD","features":[317]},{"name":"NdisProcessorVendorGenuinIntel","features":[317]},{"name":"NdisProcessorVendorGenuineIntel","features":[317]},{"name":"NdisProcessorVendorUnknown","features":[317]},{"name":"NdisProcessorX86","features":[317]},{"name":"NdisQueryAdapterInstanceName","features":[317,305]},{"name":"NdisQueryBindInstanceName","features":[317,305]},{"name":"NdisReEnumerateProtocolBindings","features":[317]},{"name":"NdisReadConfiguration","features":[317,305]},{"name":"NdisReadNetworkAddress","features":[317]},{"name":"NdisRegisterTdiCallBack","features":[317,305]},{"name":"NdisReleaseReadWriteLock","features":[317,305]},{"name":"NdisRequestClose","features":[317]},{"name":"NdisRequestGeneric1","features":[317]},{"name":"NdisRequestGeneric2","features":[317]},{"name":"NdisRequestGeneric3","features":[317]},{"name":"NdisRequestGeneric4","features":[317]},{"name":"NdisRequestOpen","features":[317]},{"name":"NdisRequestQueryInformation","features":[317]},{"name":"NdisRequestQueryStatistics","features":[317]},{"name":"NdisRequestReset","features":[317]},{"name":"NdisRequestSend","features":[317]},{"name":"NdisRequestSetInformation","features":[317]},{"name":"NdisRequestTransferData","features":[317]},{"name":"NdisReserved","features":[317]},{"name":"NdisResetEvent","features":[306,317,305,311]},{"name":"NdisRingStateClosed","features":[317]},{"name":"NdisRingStateClosing","features":[317]},{"name":"NdisRingStateOpenFailure","features":[317]},{"name":"NdisRingStateOpened","features":[317]},{"name":"NdisRingStateOpening","features":[317]},{"name":"NdisRingStateRingFailure","features":[317]},{"name":"NdisSetEvent","features":[306,317,305,311]},{"name":"NdisSetPeriodicTimer","features":[306,317,307,305,311]},{"name":"NdisSetTimer","features":[306,317,307,305,311]},{"name":"NdisSetTimerEx","features":[306,317,307,305,311]},{"name":"NdisSetupDmaTransfer","features":[306,317,305]},{"name":"NdisSystemProcessorCount","features":[317]},{"name":"NdisUnmapFile","features":[317]},{"name":"NdisUpdateSharedMemory","features":[317]},{"name":"NdisWaitEvent","features":[306,317,305,311]},{"name":"NdisWanErrorControl","features":[317]},{"name":"NdisWanHeaderEthernet","features":[317]},{"name":"NdisWanHeaderNative","features":[317]},{"name":"NdisWanMediumAgileVPN","features":[317]},{"name":"NdisWanMediumAtm","features":[317]},{"name":"NdisWanMediumFrameRelay","features":[317]},{"name":"NdisWanMediumGre","features":[317]},{"name":"NdisWanMediumHub","features":[317]},{"name":"NdisWanMediumIrda","features":[317]},{"name":"NdisWanMediumIsdn","features":[317]},{"name":"NdisWanMediumL2TP","features":[317]},{"name":"NdisWanMediumPPTP","features":[317]},{"name":"NdisWanMediumParallel","features":[317]},{"name":"NdisWanMediumPppoe","features":[317]},{"name":"NdisWanMediumSSTP","features":[317]},{"name":"NdisWanMediumSW56K","features":[317]},{"name":"NdisWanMediumSerial","features":[317]},{"name":"NdisWanMediumSonet","features":[317]},{"name":"NdisWanMediumSubTypeMax","features":[317]},{"name":"NdisWanMediumX_25","features":[317]},{"name":"NdisWanRaw","features":[317]},{"name":"NdisWanReliable","features":[317]},{"name":"NdisWriteConfiguration","features":[317,305]},{"name":"NdisWriteErrorLogEntry","features":[317]},{"name":"NdisWriteEventLogEntry","features":[317]},{"name":"OFFLOAD_ALGO_INFO","features":[317]},{"name":"OFFLOAD_CONF_ALGO","features":[317]},{"name":"OFFLOAD_INBOUND_SA","features":[317]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[317]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[317,305]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[317,305]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[317]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[317]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[317,305]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[317,305]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[317]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[317]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[317]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[317]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[317]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[317]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[317]},{"name":"OFFLOAD_MAX_SAS","features":[317]},{"name":"OFFLOAD_OPERATION_E","features":[317]},{"name":"OFFLOAD_OUTBOUND_SA","features":[317]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[317]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[317]},{"name":"OID_1394_VC_INFO","features":[317]},{"name":"OID_802_11_ADD_KEY","features":[317]},{"name":"OID_802_11_ADD_WEP","features":[317]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[317]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[317]},{"name":"OID_802_11_BSSID","features":[317]},{"name":"OID_802_11_BSSID_LIST","features":[317]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[317]},{"name":"OID_802_11_CAPABILITY","features":[317]},{"name":"OID_802_11_CONFIGURATION","features":[317]},{"name":"OID_802_11_DESIRED_RATES","features":[317]},{"name":"OID_802_11_DISASSOCIATE","features":[317]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[317]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[317]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[317]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[317]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[317]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[317]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[317]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[317]},{"name":"OID_802_11_PMKID","features":[317]},{"name":"OID_802_11_POWER_MODE","features":[317]},{"name":"OID_802_11_PRIVACY_FILTER","features":[317]},{"name":"OID_802_11_RADIO_STATUS","features":[317]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[317]},{"name":"OID_802_11_REMOVE_KEY","features":[317]},{"name":"OID_802_11_REMOVE_WEP","features":[317]},{"name":"OID_802_11_RSSI","features":[317]},{"name":"OID_802_11_RSSI_TRIGGER","features":[317]},{"name":"OID_802_11_RTS_THRESHOLD","features":[317]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[317]},{"name":"OID_802_11_SSID","features":[317]},{"name":"OID_802_11_STATISTICS","features":[317]},{"name":"OID_802_11_SUPPORTED_RATES","features":[317]},{"name":"OID_802_11_TEST","features":[317]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[317]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[317]},{"name":"OID_802_11_WEP_STATUS","features":[317]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[317]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[317]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[317]},{"name":"OID_802_3_MAC_OPTIONS","features":[317]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[317]},{"name":"OID_802_3_MULTICAST_LIST","features":[317]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[317]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[317]},{"name":"OID_802_3_RCV_OVERRUN","features":[317]},{"name":"OID_802_3_XMIT_DEFERRED","features":[317]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[317]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[317]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[317]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[317]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[317]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[317]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[317]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[317]},{"name":"OID_802_5_AC_ERRORS","features":[317]},{"name":"OID_802_5_BURST_ERRORS","features":[317]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[317]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[317]},{"name":"OID_802_5_CURRENT_GROUP","features":[317]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[317]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[317]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[317]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[317]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[317]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[317]},{"name":"OID_802_5_LINE_ERRORS","features":[317]},{"name":"OID_802_5_LOST_FRAMES","features":[317]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[317]},{"name":"OID_802_5_TOKEN_ERRORS","features":[317]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[317]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[317]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[317]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[317]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[317]},{"name":"OID_ATM_ASSIGNED_VPI","features":[317]},{"name":"OID_ATM_CALL_ALERTING","features":[317]},{"name":"OID_ATM_CALL_NOTIFY","features":[317]},{"name":"OID_ATM_CALL_PROCEEDING","features":[317]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[317]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[317]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[317]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[317]},{"name":"OID_ATM_ILMI_VPIVCI","features":[317]},{"name":"OID_ATM_LECS_ADDRESS","features":[317]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[317]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[317]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[317]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[317]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[317]},{"name":"OID_ATM_PARTY_ALERTING","features":[317]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[317]},{"name":"OID_ATM_RCV_CELLS_OK","features":[317]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[317]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[317]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[317]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[317]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[317]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[317]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[317]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[317]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[317]},{"name":"OID_CO_ADDRESS_CHANGE","features":[317]},{"name":"OID_CO_ADD_ADDRESS","features":[317]},{"name":"OID_CO_ADD_PVC","features":[317]},{"name":"OID_CO_AF_CLOSE","features":[317]},{"name":"OID_CO_DELETE_ADDRESS","features":[317]},{"name":"OID_CO_DELETE_PVC","features":[317]},{"name":"OID_CO_GET_ADDRESSES","features":[317]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[317]},{"name":"OID_CO_SIGNALING_DISABLED","features":[317]},{"name":"OID_CO_SIGNALING_ENABLED","features":[317]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[317]},{"name":"OID_CO_TAPI_CM_CAPS","features":[317]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[317]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[317]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[317]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[317]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[317]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[317]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[317]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[317]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[317]},{"name":"OID_FDDI_FRAMES_LOST","features":[317]},{"name":"OID_FDDI_FRAME_ERRORS","features":[317]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[317]},{"name":"OID_FDDI_IF_DESCR","features":[317]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[317]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[317]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[317]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[317]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[317]},{"name":"OID_FDDI_IF_MTU","features":[317]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[317]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[317]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[317]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[317]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[317]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[317]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[317]},{"name":"OID_FDDI_IF_SPECIFIC","features":[317]},{"name":"OID_FDDI_IF_SPEED","features":[317]},{"name":"OID_FDDI_IF_TYPE","features":[317]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[317]},{"name":"OID_FDDI_LCT_FAILURES","features":[317]},{"name":"OID_FDDI_LEM_REJECTS","features":[317]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[317]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[317]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[317]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[317]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[317]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[317]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[317]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[317]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[317]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[317]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[317]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[317]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[317]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[317]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[317]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[317]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[317]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[317]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[317]},{"name":"OID_FDDI_MAC_INDEX","features":[317]},{"name":"OID_FDDI_MAC_LATE_CT","features":[317]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[317]},{"name":"OID_FDDI_MAC_LOST_CT","features":[317]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[317]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[317]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[317]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[317]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[317]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[317]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[317]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[317]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[317]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[317]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[317]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[317]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[317]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[317]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[317]},{"name":"OID_FDDI_MAC_T_MAX","features":[317]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[317]},{"name":"OID_FDDI_MAC_T_NEG","features":[317]},{"name":"OID_FDDI_MAC_T_PRI0","features":[317]},{"name":"OID_FDDI_MAC_T_PRI1","features":[317]},{"name":"OID_FDDI_MAC_T_PRI2","features":[317]},{"name":"OID_FDDI_MAC_T_PRI3","features":[317]},{"name":"OID_FDDI_MAC_T_PRI4","features":[317]},{"name":"OID_FDDI_MAC_T_PRI5","features":[317]},{"name":"OID_FDDI_MAC_T_PRI6","features":[317]},{"name":"OID_FDDI_MAC_T_REQ","features":[317]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[317]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[317]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[317]},{"name":"OID_FDDI_PATH_INDEX","features":[317]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[317]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[317]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[317]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[317]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[317]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[317]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[317]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[317]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[317]},{"name":"OID_FDDI_PORT_ACTION","features":[317]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[317]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[317]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[317]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[317]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[317]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[317]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[317]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[317]},{"name":"OID_FDDI_PORT_INDEX","features":[317]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[317]},{"name":"OID_FDDI_PORT_LEM_CT","features":[317]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[317]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[317]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[317]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[317]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[317]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[317]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[317]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[317]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[317]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[317]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[317]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[317]},{"name":"OID_FDDI_PORT_PC_LS","features":[317]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[317]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[317]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[317]},{"name":"OID_FDDI_RING_MGT_STATE","features":[317]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[317]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[317]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[317]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[317]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[317]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[317]},{"name":"OID_FDDI_SMT_CF_STATE","features":[317]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[317]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[317]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[317]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[317]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[317]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[317]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_MAC_CT","features":[317]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[317]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[317]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[317]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[317]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[317]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[317]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[317]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[317]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[317]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[317]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[317]},{"name":"OID_FDDI_SMT_STATION_ID","features":[317]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[317]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[317]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[317]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[317]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[317]},{"name":"OID_FDDI_SMT_USER_DATA","features":[317]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[317]},{"name":"OID_FFP_ADAPTER_STATS","features":[317]},{"name":"OID_FFP_CONTROL","features":[317]},{"name":"OID_FFP_DATA","features":[317]},{"name":"OID_FFP_DRIVER_STATS","features":[317]},{"name":"OID_FFP_FLUSH","features":[317]},{"name":"OID_FFP_PARAMS","features":[317]},{"name":"OID_FFP_SUPPORT","features":[317]},{"name":"OID_GEN_ADMIN_STATUS","features":[317]},{"name":"OID_GEN_ALIAS","features":[317]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[317]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[317]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[317]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[317]},{"name":"OID_GEN_BYTES_RCV","features":[317]},{"name":"OID_GEN_BYTES_XMIT","features":[317]},{"name":"OID_GEN_CO_BYTES_RCV","features":[317]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[317]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[317]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[317]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[317]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[317]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[317]},{"name":"OID_GEN_CO_LINK_SPEED","features":[317]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[317]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[317]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[317]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[317]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[317]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[317]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[317]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[317]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[317]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[317]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[317]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[317]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[317]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[317]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[317]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_CO_VENDOR_ID","features":[317]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[317]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[317]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[317]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[317]},{"name":"OID_GEN_DEVICE_PROFILE","features":[317]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[317]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[317]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[317]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[317]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[317]},{"name":"OID_GEN_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[317]},{"name":"OID_GEN_FRIENDLY_NAME","features":[317]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[317]},{"name":"OID_GEN_GET_TIME_CAPS","features":[317]},{"name":"OID_GEN_HARDWARE_STATUS","features":[317]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[317]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[317]},{"name":"OID_GEN_INIT_TIME_MS","features":[317]},{"name":"OID_GEN_INTERFACE_INFO","features":[317]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[317]},{"name":"OID_GEN_IP_OPER_STATUS","features":[317]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[317]},{"name":"OID_GEN_LAST_CHANGE","features":[317]},{"name":"OID_GEN_LINK_PARAMETERS","features":[317]},{"name":"OID_GEN_LINK_SPEED","features":[317]},{"name":"OID_GEN_LINK_SPEED_EX","features":[317]},{"name":"OID_GEN_LINK_STATE","features":[317]},{"name":"OID_GEN_MACHINE_NAME","features":[317]},{"name":"OID_GEN_MAC_ADDRESS","features":[317]},{"name":"OID_GEN_MAC_OPTIONS","features":[317]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[317]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[317]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[317]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[317]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[317]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[317]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[317]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[317]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[317]},{"name":"OID_GEN_MEDIA_IN_USE","features":[317]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[317]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[317]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[317]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[317]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[317]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[317]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[317]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[317]},{"name":"OID_GEN_NETCARD_LOAD","features":[317]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[317]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[317]},{"name":"OID_GEN_PACKET_MONITOR","features":[317]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[317]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[317]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[317]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[317]},{"name":"OID_GEN_PORT_STATE","features":[317]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[317]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[317]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[317]},{"name":"OID_GEN_RCV_DISCARDS","features":[317]},{"name":"OID_GEN_RCV_ERROR","features":[317]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[317]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[317]},{"name":"OID_GEN_RCV_OK","features":[317]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[317]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[317]},{"name":"OID_GEN_RECEIVE_HASH","features":[317]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[317]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[317]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[317]},{"name":"OID_GEN_RESET_COUNTS","features":[317]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[317]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[317]},{"name":"OID_GEN_STATISTICS","features":[317]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[317]},{"name":"OID_GEN_SUPPORTED_LIST","features":[317]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[317]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[317]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[317]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[317]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[317]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[317]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[317]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[317]},{"name":"OID_GEN_VENDOR_ID","features":[317]},{"name":"OID_GEN_VLAN_ID","features":[317]},{"name":"OID_GEN_XMIT_DISCARDS","features":[317]},{"name":"OID_GEN_XMIT_ERROR","features":[317]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[317]},{"name":"OID_GEN_XMIT_OK","features":[317]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[317]},{"name":"OID_GFT_COUNTER_VALUES","features":[317]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[317]},{"name":"OID_GFT_CREATE_TABLE","features":[317]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[317]},{"name":"OID_GFT_DELETE_PROFILE","features":[317]},{"name":"OID_GFT_DELETE_TABLE","features":[317]},{"name":"OID_GFT_ENUM_COUNTERS","features":[317]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[317]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[317]},{"name":"OID_GFT_ENUM_PROFILES","features":[317]},{"name":"OID_GFT_ENUM_TABLES","features":[317]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[317]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[317]},{"name":"OID_GFT_FREE_COUNTERS","features":[317]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[317]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[317]},{"name":"OID_GFT_STATISTICS","features":[317]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[317]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[317]},{"name":"OID_IP4_OFFLOAD_STATS","features":[317]},{"name":"OID_IP6_OFFLOAD_STATS","features":[317]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[317]},{"name":"OID_IRDA_LINK_SPEED","features":[317]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[317]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[317]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[317]},{"name":"OID_IRDA_MEDIA_BUSY","features":[317]},{"name":"OID_IRDA_RATE_SNIFF","features":[317]},{"name":"OID_IRDA_RECEIVING","features":[317]},{"name":"OID_IRDA_RESERVED1","features":[317]},{"name":"OID_IRDA_RESERVED2","features":[317]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[317]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[317]},{"name":"OID_IRDA_UNICAST_LIST","features":[317]},{"name":"OID_KDNET_ADD_PF","features":[317]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[317]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[317]},{"name":"OID_KDNET_REMOVE_PF","features":[317]},{"name":"OID_LTALK_COLLISIONS","features":[317]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[317]},{"name":"OID_LTALK_DEFERS","features":[317]},{"name":"OID_LTALK_FCS_ERRORS","features":[317]},{"name":"OID_LTALK_IN_BROADCASTS","features":[317]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[317]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[317]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[317]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[317]},{"name":"OID_NDK_CONNECTIONS","features":[317]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[317]},{"name":"OID_NDK_SET_STATE","features":[317]},{"name":"OID_NDK_STATISTICS","features":[317]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[317]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[317]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[317]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[317]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[317]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[317]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[317]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[317]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[317]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[317]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[317]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[317]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[317]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[317]},{"name":"OID_PD_CLOSE_PROVIDER","features":[317]},{"name":"OID_PD_OPEN_PROVIDER","features":[317]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[317]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[317]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[317]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[317]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_PM_PARAMETERS","features":[317]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[317]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[317]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[317]},{"name":"OID_PM_RESERVED_1","features":[317]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[317]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[317]},{"name":"OID_PNP_CAPABILITIES","features":[317]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[317]},{"name":"OID_PNP_QUERY_POWER","features":[317]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[317]},{"name":"OID_PNP_SET_POWER","features":[317]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[317]},{"name":"OID_PNP_WAKE_UP_OK","features":[317]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[317]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[317]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[317]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[317]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[317]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[317]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[317]},{"name":"OID_QOS_PARAMETERS","features":[317]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[317]},{"name":"OID_QOS_RESERVED1","features":[317]},{"name":"OID_QOS_RESERVED10","features":[317]},{"name":"OID_QOS_RESERVED11","features":[317]},{"name":"OID_QOS_RESERVED12","features":[317]},{"name":"OID_QOS_RESERVED13","features":[317]},{"name":"OID_QOS_RESERVED14","features":[317]},{"name":"OID_QOS_RESERVED15","features":[317]},{"name":"OID_QOS_RESERVED16","features":[317]},{"name":"OID_QOS_RESERVED17","features":[317]},{"name":"OID_QOS_RESERVED18","features":[317]},{"name":"OID_QOS_RESERVED19","features":[317]},{"name":"OID_QOS_RESERVED2","features":[317]},{"name":"OID_QOS_RESERVED20","features":[317]},{"name":"OID_QOS_RESERVED3","features":[317]},{"name":"OID_QOS_RESERVED4","features":[317]},{"name":"OID_QOS_RESERVED5","features":[317]},{"name":"OID_QOS_RESERVED6","features":[317]},{"name":"OID_QOS_RESERVED7","features":[317]},{"name":"OID_QOS_RESERVED8","features":[317]},{"name":"OID_QOS_RESERVED9","features":[317]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[317]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[317]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[317]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[317]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[317]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[317]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[317]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[317]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[317]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[317]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[317]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[317]},{"name":"OID_SRIOV_CONFIG_STATE","features":[317]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[317]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[317]},{"name":"OID_SRIOV_PF_LUID","features":[317]},{"name":"OID_SRIOV_PROBED_BARS","features":[317]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[317]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[317]},{"name":"OID_SRIOV_RESET_VF","features":[317]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[317]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[317]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[317]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[317]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[317]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[317]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[317]},{"name":"OID_SWITCH_NIC_ARRAY","features":[317]},{"name":"OID_SWITCH_NIC_CONNECT","features":[317]},{"name":"OID_SWITCH_NIC_CREATE","features":[317]},{"name":"OID_SWITCH_NIC_DELETE","features":[317]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[317]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[317]},{"name":"OID_SWITCH_NIC_REQUEST","features":[317]},{"name":"OID_SWITCH_NIC_RESTORE","features":[317]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[317]},{"name":"OID_SWITCH_NIC_RESUME","features":[317]},{"name":"OID_SWITCH_NIC_SAVE","features":[317]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[317]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[317]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[317]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[317]},{"name":"OID_SWITCH_NIC_UPDATED","features":[317]},{"name":"OID_SWITCH_PARAMETERS","features":[317]},{"name":"OID_SWITCH_PORT_ARRAY","features":[317]},{"name":"OID_SWITCH_PORT_CREATE","features":[317]},{"name":"OID_SWITCH_PORT_DELETE","features":[317]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[317]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[317]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[317]},{"name":"OID_SWITCH_PORT_UPDATED","features":[317]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[317]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[317]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[317]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[317]},{"name":"OID_TAPI_ACCEPT","features":[317]},{"name":"OID_TAPI_ANSWER","features":[317]},{"name":"OID_TAPI_CLOSE","features":[317]},{"name":"OID_TAPI_CLOSE_CALL","features":[317]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[317]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[317]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[317]},{"name":"OID_TAPI_DIAL","features":[317]},{"name":"OID_TAPI_DROP","features":[317]},{"name":"OID_TAPI_GATHER_DIGITS","features":[317]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[317]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[317]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[317]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[317]},{"name":"OID_TAPI_GET_CALL_INFO","features":[317]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[317]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[317]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[317]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[317]},{"name":"OID_TAPI_GET_ID","features":[317]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[317]},{"name":"OID_TAPI_MAKE_CALL","features":[317]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[317]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[317]},{"name":"OID_TAPI_OPEN","features":[317]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[317]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[317]},{"name":"OID_TAPI_SECURE_CALL","features":[317]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[317]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[317]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[317]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[317]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[317]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[317]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[317]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[317]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[317]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[317]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[317]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[317]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[317]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[317]},{"name":"OID_TCP_RSC_STATISTICS","features":[317]},{"name":"OID_TCP_SAN_SUPPORT","features":[317]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[317]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[317]},{"name":"OID_TCP_TASK_OFFLOAD","features":[317]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[317]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[317]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[317]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[317]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[317]},{"name":"OID_VLAN_RESERVED1","features":[317]},{"name":"OID_VLAN_RESERVED2","features":[317]},{"name":"OID_VLAN_RESERVED3","features":[317]},{"name":"OID_VLAN_RESERVED4","features":[317]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[317]},{"name":"OID_WAN_CO_GET_INFO","features":[317]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[317]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[317]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[317]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[317]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[317]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[317]},{"name":"OID_WAN_GET_COMP_INFO","features":[317]},{"name":"OID_WAN_GET_INFO","features":[317]},{"name":"OID_WAN_GET_LINK_INFO","features":[317]},{"name":"OID_WAN_GET_STATS_INFO","features":[317]},{"name":"OID_WAN_HEADER_FORMAT","features":[317]},{"name":"OID_WAN_LINE_COUNT","features":[317]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[317]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[317]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[317]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[317]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[317]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[317]},{"name":"OID_WAN_SET_COMP_INFO","features":[317]},{"name":"OID_WAN_SET_LINK_INFO","features":[317]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[317]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[317]},{"name":"OID_WWAN_CONNECT","features":[317]},{"name":"OID_WWAN_CREATE_MAC","features":[317]},{"name":"OID_WWAN_DELETE_MAC","features":[317]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[317]},{"name":"OID_WWAN_DEVICE_CAPS","features":[317]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[317]},{"name":"OID_WWAN_DEVICE_RESET","features":[317]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[317]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[317]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[317]},{"name":"OID_WWAN_DRIVER_CAPS","features":[317]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[317]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[317]},{"name":"OID_WWAN_HOME_PROVIDER","features":[317]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[317]},{"name":"OID_WWAN_LOCATION_STATE","features":[317]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[317]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[317]},{"name":"OID_WWAN_MBIM_VERSION","features":[317]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[317]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[317]},{"name":"OID_WWAN_MPDP","features":[317]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[317]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[317]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[317]},{"name":"OID_WWAN_NITZ","features":[317]},{"name":"OID_WWAN_PACKET_SERVICE","features":[317]},{"name":"OID_WWAN_PCO","features":[317]},{"name":"OID_WWAN_PIN","features":[317]},{"name":"OID_WWAN_PIN_EX","features":[317]},{"name":"OID_WWAN_PIN_EX2","features":[317]},{"name":"OID_WWAN_PIN_LIST","features":[317]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[317]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[317]},{"name":"OID_WWAN_PRESHUTDOWN","features":[317]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[317]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[317]},{"name":"OID_WWAN_RADIO_STATE","features":[317]},{"name":"OID_WWAN_READY_INFO","features":[317]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[317]},{"name":"OID_WWAN_REGISTER_STATE","features":[317]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[317]},{"name":"OID_WWAN_SAR_CONFIG","features":[317]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[317]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[317]},{"name":"OID_WWAN_SIGNAL_STATE","features":[317]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[317]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[317]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[317]},{"name":"OID_WWAN_SMS_DELETE","features":[317]},{"name":"OID_WWAN_SMS_READ","features":[317]},{"name":"OID_WWAN_SMS_SEND","features":[317]},{"name":"OID_WWAN_SMS_STATUS","features":[317]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[317]},{"name":"OID_WWAN_SYS_CAPS","features":[317]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[317]},{"name":"OID_WWAN_UE_POLICY","features":[317]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[317]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[317]},{"name":"OID_WWAN_UICC_APDU","features":[317]},{"name":"OID_WWAN_UICC_APP_LIST","features":[317]},{"name":"OID_WWAN_UICC_ATR","features":[317]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[317]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[317]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[317]},{"name":"OID_WWAN_UICC_RESET","features":[317]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[317]},{"name":"OID_WWAN_USSD","features":[317]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[317]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[317]},{"name":"OID_XBOX_ACC_RESERVED0","features":[317]},{"name":"OriginalNetBufferList","features":[317]},{"name":"OriginalPacketInfo","features":[317]},{"name":"PD_BUFFER_ATTR_BUILT_IN_DATA_BUFFER","features":[317]},{"name":"PD_BUFFER_FLAG_PARTIAL_PACKET_HEAD","features":[317]},{"name":"PD_BUFFER_MIN_RX_DATA_START_ALIGNMENT","features":[317]},{"name":"PD_BUFFER_MIN_RX_DATA_START_VALUE","features":[317]},{"name":"PD_BUFFER_MIN_TX_DATA_START_ALIGNMENT","features":[317]},{"name":"PERMANENT_VC","features":[317]},{"name":"PMKID_CANDIDATE","features":[317]},{"name":"PNDIS_TIMER_FUNCTION","features":[317]},{"name":"PROTCOL_CO_AF_REGISTER_NOTIFY","features":[317]},{"name":"PROTOCOL_CL_ADD_PARTY_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_CALL_CONNECTED","features":[317]},{"name":"PROTOCOL_CL_CLOSE_AF_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_CLOSE_CALL_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_DEREGISTER_SAP_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_DROP_PARTY_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_INCOMING_CALL","features":[317]},{"name":"PROTOCOL_CL_INCOMING_CALL_QOS_CHANGE","features":[317]},{"name":"PROTOCOL_CL_INCOMING_CLOSE_CALL","features":[317]},{"name":"PROTOCOL_CL_INCOMING_DROP_PARTY","features":[317]},{"name":"PROTOCOL_CL_MAKE_CALL_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_MODIFY_CALL_QOS_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_OPEN_AF_COMPLETE","features":[317]},{"name":"PROTOCOL_CL_REGISTER_SAP_COMPLETE","features":[317]},{"name":"PROTOCOL_CM_ACTIVATE_VC_COMPLETE","features":[317]},{"name":"PROTOCOL_CM_ADD_PARTY","features":[317]},{"name":"PROTOCOL_CM_CLOSE_AF","features":[317]},{"name":"PROTOCOL_CM_CLOSE_CALL","features":[317]},{"name":"PROTOCOL_CM_DEACTIVATE_VC_COMPLETE","features":[317]},{"name":"PROTOCOL_CM_DEREGISTER_SAP","features":[317]},{"name":"PROTOCOL_CM_DROP_PARTY","features":[317]},{"name":"PROTOCOL_CM_INCOMING_CALL_COMPLETE","features":[317]},{"name":"PROTOCOL_CM_MAKE_CALL","features":[317]},{"name":"PROTOCOL_CM_MODIFY_QOS_CALL","features":[317]},{"name":"PROTOCOL_CM_OPEN_AF","features":[317]},{"name":"PROTOCOL_CM_REG_SAP","features":[317]},{"name":"PROTOCOL_CO_AF_REGISTER_NOTIFY","features":[317]},{"name":"PROTOCOL_CO_CREATE_VC","features":[317]},{"name":"PROTOCOL_CO_DELETE_VC","features":[317]},{"name":"PacketCancelId","features":[317]},{"name":"QUERY_CALL_PARAMETERS","features":[317]},{"name":"READABLE_LOCAL_CLOCK","features":[317]},{"name":"RECEIVE_TIME_INDICATION","features":[317]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[317]},{"name":"RECEIVE_VC","features":[317]},{"name":"REFERENCE","features":[317,305]},{"name":"RESERVE_RESOURCES_VC","features":[317]},{"name":"ROUND_DOWN_FLOW","features":[317]},{"name":"ROUND_UP_FLOW","features":[317]},{"name":"STRINGFORMAT_ASCII","features":[317]},{"name":"STRINGFORMAT_BINARY","features":[317]},{"name":"STRINGFORMAT_DBCS","features":[317]},{"name":"STRINGFORMAT_UNICODE","features":[317]},{"name":"ScatterGatherListPacketInfo","features":[317]},{"name":"ShortPacketPaddingInfo","features":[317]},{"name":"TDI_PNP_HANDLER","features":[317,305]},{"name":"TDI_REGISTER_CALLBACK","features":[317,305]},{"name":"TIMED_SEND_CAPABLE","features":[317]},{"name":"TIME_STAMP_CAPABLE","features":[317]},{"name":"TRANSMIT_VC","features":[317]},{"name":"TRANSPORT_HEADER_OFFSET","features":[317]},{"name":"TRUNCATED_HASH_LEN","features":[317]},{"name":"TR_FILTER","features":[317]},{"name":"TcpIpChecksumPacketInfo","features":[317]},{"name":"TcpLargeSendPacketInfo","features":[317]},{"name":"UDP_ENCAP_TYPE","features":[317]},{"name":"USE_TIME_STAMPS","features":[317]},{"name":"VAR_STRING","features":[317]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[317]},{"name":"W_CO_ACTIVATE_VC_HANDLER","features":[317]},{"name":"W_CO_CREATE_VC_HANDLER","features":[317]},{"name":"W_CO_DEACTIVATE_VC_HANDLER","features":[317]},{"name":"W_CO_DELETE_VC_HANDLER","features":[317]},{"name":"fNDIS_GUID_ALLOW_READ","features":[317]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[317]},{"name":"fNDIS_GUID_ANSI_STRING","features":[317]},{"name":"fNDIS_GUID_ARRAY","features":[317]},{"name":"fNDIS_GUID_METHOD","features":[317]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[317]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[317]},{"name":"fNDIS_GUID_TO_OID","features":[317]},{"name":"fNDIS_GUID_TO_STATUS","features":[317]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[317]},{"name":"fPACKET_ALLOCATED_BY_NDIS","features":[317]},{"name":"fPACKET_CONTAINS_MEDIA_SPECIFIC_INFO","features":[317]},{"name":"fPACKET_WRAPPER_RESERVED","features":[317]}],"344":[{"name":"FWPM_SERVICE_STATE_CHANGE_CALLBACK0","features":[320,321]},{"name":"FwpmBfeStateGet0","features":[320,321]},{"name":"FwpmBfeStateSubscribeChanges0","features":[320,305,321]},{"name":"FwpmBfeStateUnsubscribeChanges0","features":[320,305]},{"name":"FwpmCalloutAdd0","features":[320,305,321,308]},{"name":"FwpmCalloutCreateEnumHandle0","features":[320,305,321]},{"name":"FwpmCalloutDeleteById0","features":[320,305]},{"name":"FwpmCalloutDeleteByKey0","features":[320,305]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[320,305]},{"name":"FwpmCalloutEnum0","features":[320,305,321]},{"name":"FwpmCalloutGetById0","features":[320,305,321]},{"name":"FwpmCalloutGetByKey0","features":[320,305,321]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmConnectionCreateEnumHandle0","features":[320,305,321]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[320,305]},{"name":"FwpmConnectionEnum0","features":[320,305,321]},{"name":"FwpmConnectionGetById0","features":[320,305,321]},{"name":"FwpmConnectionGetSecurityInfo0","features":[320,305,308]},{"name":"FwpmConnectionSetSecurityInfo0","features":[320,305,308]},{"name":"FwpmEngineClose0","features":[320,305]},{"name":"FwpmEngineGetOption0","features":[320,305,321,308]},{"name":"FwpmEngineGetSecurityInfo0","features":[320,305,308]},{"name":"FwpmEngineOpen0","features":[320,305,321,308,322]},{"name":"FwpmEngineSetOption0","features":[320,305,321,308]},{"name":"FwpmEngineSetSecurityInfo0","features":[320,305,308]},{"name":"FwpmFilterAdd0","features":[320,305,321,308]},{"name":"FwpmFilterCreateEnumHandle0","features":[320,305,321,308]},{"name":"FwpmFilterDeleteById0","features":[320,305]},{"name":"FwpmFilterDeleteByKey0","features":[320,305]},{"name":"FwpmFilterDestroyEnumHandle0","features":[320,305]},{"name":"FwpmFilterEnum0","features":[320,305,321,308]},{"name":"FwpmFilterGetById0","features":[320,305,321,308]},{"name":"FwpmFilterGetByKey0","features":[320,305,321,308]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmFreeMemory0","features":[320]},{"name":"FwpmIPsecTunnelAdd0","features":[320,305,321,308]},{"name":"FwpmIPsecTunnelAdd1","features":[320,305,321,308]},{"name":"FwpmIPsecTunnelAdd2","features":[320,305,321,308]},{"name":"FwpmIPsecTunnelAdd3","features":[320,305,321,308]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[320,305]},{"name":"FwpmLayerCreateEnumHandle0","features":[320,305,321]},{"name":"FwpmLayerDestroyEnumHandle0","features":[320,305]},{"name":"FwpmLayerEnum0","features":[320,305,321]},{"name":"FwpmLayerGetById0","features":[320,305,321]},{"name":"FwpmLayerGetByKey0","features":[320,305,321]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmNetEventCreateEnumHandle0","features":[320,305,321,308]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[320,305]},{"name":"FwpmNetEventEnum0","features":[320,305,321,308]},{"name":"FwpmNetEventEnum1","features":[320,305,321,308]},{"name":"FwpmNetEventEnum2","features":[320,305,321,308]},{"name":"FwpmNetEventEnum3","features":[320,305,321,308]},{"name":"FwpmNetEventEnum4","features":[320,305,321,308]},{"name":"FwpmNetEventEnum5","features":[320,305,321,308]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[320,305,308]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[320,305,308]},{"name":"FwpmProviderAdd0","features":[320,305,321,308]},{"name":"FwpmProviderContextAdd0","features":[320,305,321,308]},{"name":"FwpmProviderContextAdd1","features":[320,305,321,308]},{"name":"FwpmProviderContextAdd2","features":[320,305,321,308]},{"name":"FwpmProviderContextAdd3","features":[320,305,321,308]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[320,305,321]},{"name":"FwpmProviderContextDeleteById0","features":[320,305]},{"name":"FwpmProviderContextDeleteByKey0","features":[320,305]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[320,305]},{"name":"FwpmProviderContextEnum0","features":[320,305,321,308]},{"name":"FwpmProviderContextEnum1","features":[320,305,321,308]},{"name":"FwpmProviderContextEnum2","features":[320,305,321,308]},{"name":"FwpmProviderContextEnum3","features":[320,305,321,308]},{"name":"FwpmProviderContextGetById0","features":[320,305,321,308]},{"name":"FwpmProviderContextGetById1","features":[320,305,321,308]},{"name":"FwpmProviderContextGetById2","features":[320,305,321,308]},{"name":"FwpmProviderContextGetById3","features":[320,305,321,308]},{"name":"FwpmProviderContextGetByKey0","features":[320,305,321,308]},{"name":"FwpmProviderContextGetByKey1","features":[320,305,321,308]},{"name":"FwpmProviderContextGetByKey2","features":[320,305,321,308]},{"name":"FwpmProviderContextGetByKey3","features":[320,305,321,308]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmProviderCreateEnumHandle0","features":[320,305,321]},{"name":"FwpmProviderDeleteByKey0","features":[320,305]},{"name":"FwpmProviderDestroyEnumHandle0","features":[320,305]},{"name":"FwpmProviderEnum0","features":[320,305,321]},{"name":"FwpmProviderGetByKey0","features":[320,305,321]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmSessionCreateEnumHandle0","features":[320,305,321]},{"name":"FwpmSessionDestroyEnumHandle0","features":[320,305]},{"name":"FwpmSessionEnum0","features":[320,305,321,308]},{"name":"FwpmSubLayerAdd0","features":[320,305,321,308]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[320,305,321]},{"name":"FwpmSubLayerDeleteByKey0","features":[320,305]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[320,305]},{"name":"FwpmSubLayerEnum0","features":[320,305,321]},{"name":"FwpmSubLayerGetByKey0","features":[320,305,321]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[320,305,308]},{"name":"FwpmTransactionAbort0","features":[320,305]},{"name":"FwpmTransactionBegin0","features":[320,305]},{"name":"FwpmTransactionCommit0","features":[320,305]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[320,305,308]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[320,305,308]},{"name":"IPsecDospGetSecurityInfo0","features":[320,305,308]},{"name":"IPsecDospGetStatistics0","features":[320,305,321]},{"name":"IPsecDospSetSecurityInfo0","features":[320,305,308]},{"name":"IPsecDospStateCreateEnumHandle0","features":[320,305,321]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[320,305]},{"name":"IPsecDospStateEnum0","features":[320,305,321]},{"name":"IPsecGetStatistics0","features":[320,305,321]},{"name":"IPsecGetStatistics1","features":[320,305,321]},{"name":"IPsecSaContextAddInbound0","features":[320,305,321]},{"name":"IPsecSaContextAddInbound1","features":[320,305,321]},{"name":"IPsecSaContextAddOutbound0","features":[320,305,321]},{"name":"IPsecSaContextAddOutbound1","features":[320,305,321]},{"name":"IPsecSaContextCreate0","features":[320,305,321]},{"name":"IPsecSaContextCreate1","features":[320,305,321]},{"name":"IPsecSaContextCreateEnumHandle0","features":[320,305,321,308]},{"name":"IPsecSaContextDeleteById0","features":[320,305]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[320,305]},{"name":"IPsecSaContextEnum0","features":[320,305,321,308]},{"name":"IPsecSaContextEnum1","features":[320,305,321,308]},{"name":"IPsecSaContextExpire0","features":[320,305]},{"name":"IPsecSaContextGetById0","features":[320,305,321,308]},{"name":"IPsecSaContextGetById1","features":[320,305,321,308]},{"name":"IPsecSaContextGetSpi0","features":[320,305,321]},{"name":"IPsecSaContextGetSpi1","features":[320,305,321]},{"name":"IPsecSaContextSetSpi0","features":[320,305,321]},{"name":"IPsecSaContextUpdate0","features":[320,305,321,308]},{"name":"IPsecSaCreateEnumHandle0","features":[320,305,321]},{"name":"IPsecSaDbGetSecurityInfo0","features":[320,305,308]},{"name":"IPsecSaDbSetSecurityInfo0","features":[320,305,308]},{"name":"IPsecSaDestroyEnumHandle0","features":[320,305]},{"name":"IPsecSaEnum0","features":[320,305,321,308]},{"name":"IPsecSaEnum1","features":[320,305,321,308]},{"name":"IkeextGetStatistics0","features":[320,305,321]},{"name":"IkeextGetStatistics1","features":[320,305,321]},{"name":"IkeextSaCreateEnumHandle0","features":[320,305,321,308]},{"name":"IkeextSaDbGetSecurityInfo0","features":[320,305,308]},{"name":"IkeextSaDbSetSecurityInfo0","features":[320,305,308]},{"name":"IkeextSaDeleteById0","features":[320,305]},{"name":"IkeextSaDestroyEnumHandle0","features":[320,305]},{"name":"IkeextSaEnum0","features":[320,305,321]},{"name":"IkeextSaEnum1","features":[320,305,321]},{"name":"IkeextSaEnum2","features":[320,305,321]},{"name":"IkeextSaGetById0","features":[320,305,321]},{"name":"IkeextSaGetById1","features":[320,305,321]},{"name":"IkeextSaGetById2","features":[320,305,321]}],"345":[{"name":"ACE_HEADER","features":[309]},{"name":"ALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[309,305,323]},{"name":"ATOMIC_CREATE_ECP_CONTEXT","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_BEST_EFFORT","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_EOF_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_FILE_ATTRIBUTES_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_GEN_FLAGS_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_MARK_USN_SOURCE_INFO","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OPERATION_MASK","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_OP_FLAGS_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_REPARSE_POINT_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SPARSE_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_DIR_CHANGE_NOTIFY","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_FILE_ATTRIBUTE_INHERITANCE","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_SUPPRESS_PARENT_TIMESTAMPS_UPDATE","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_TIMESTAMPS_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_VDL_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_FLAG_WRITE_USN_CLOSE_RECORD","features":[309]},{"name":"ATOMIC_CREATE_ECP_IN_OP_FLAG_CASE_SENSITIVE_FLAGS_SPECIFIED","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_EOF_SET","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_RETURNED","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTES_SET","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_FILE_ATTRIBUTE_INHERITANCE_SUPPRESSED","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OPERATION_MASK","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_OP_FLAGS_HONORED","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_REPARSE_POINT_SET","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_SPARSE_SET","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_RETURNED","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_TIMESTAMPS_SET","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_CLOSE_RECORD_WRITTEN","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_RETURNED","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_USN_SOURCE_INFO_MARKED","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_FLAG_VDL_SET","features":[309]},{"name":"ATOMIC_CREATE_ECP_OUT_OP_FLAG_CASE_SENSITIVE_FLAGS_SET","features":[309]},{"name":"ApplyControlToken","features":[309]},{"name":"AuditAccessCheck","features":[309]},{"name":"AuditCloseNonObject","features":[309]},{"name":"AuditCloseObject","features":[309]},{"name":"AuditDeleteObject","features":[309]},{"name":"AuditHandleCreation","features":[309]},{"name":"AuditObjectReference","features":[309]},{"name":"AuditOpenNonObject","features":[309]},{"name":"AuditOpenObject","features":[309]},{"name":"AuditOpenObjectForDelete","features":[309]},{"name":"AuditOpenObjectForDeleteWithTransaction","features":[309]},{"name":"AuditOpenObjectWithTransaction","features":[309]},{"name":"AuditPrivilegeObject","features":[309]},{"name":"AuditPrivilegeService","features":[309]},{"name":"BASE_MCB","features":[309]},{"name":"BOOT_AREA_INFO","features":[309]},{"name":"CACHE_MANAGER_CALLBACKS","features":[309,305]},{"name":"CACHE_MANAGER_CALLBACKS_EX","features":[309,305]},{"name":"CACHE_MANAGER_CALLBACKS_EX_V1","features":[309]},{"name":"CACHE_MANAGER_CALLBACK_FUNCTIONS","features":[309,305]},{"name":"CACHE_UNINITIALIZE_EVENT","features":[306,309,305,311]},{"name":"CACHE_USE_DIRECT_ACCESS_MAPPING","features":[309]},{"name":"CACHE_VALID_FLAGS","features":[309]},{"name":"CC_ACQUIRE_DONT_WAIT","features":[309]},{"name":"CC_ACQUIRE_SUPPORTS_ASYNC_LAZYWRITE","features":[309]},{"name":"CC_AGGRESSIVE_UNMAP_BEHIND","features":[309]},{"name":"CC_ASYNC_READ_CONTEXT","features":[306,309,305]},{"name":"CC_DISABLE_DIRTY_PAGE_TRACKING","features":[309]},{"name":"CC_DISABLE_READ_AHEAD","features":[309]},{"name":"CC_DISABLE_UNMAP_BEHIND","features":[309]},{"name":"CC_DISABLE_WRITE_BEHIND","features":[309]},{"name":"CC_ENABLE_CPU_CACHE","features":[309]},{"name":"CC_ENABLE_DISK_IO_ACCOUNTING","features":[309]},{"name":"CC_ERROR_CALLBACK_CONTEXT","features":[309,305]},{"name":"CC_FILE_SIZES","features":[309]},{"name":"CC_FLUSH_AND_PURGE_GATHER_DIRTY_BITS","features":[309]},{"name":"CC_FLUSH_AND_PURGE_NO_PURGE","features":[309]},{"name":"CC_FLUSH_AND_PURGE_WRITEABLE_VIEWS_NOTSEEN","features":[309]},{"name":"COMPRESSED_DATA_INFO","features":[309]},{"name":"COMPRESSION_ENGINE_MASK","features":[309]},{"name":"COMPRESSION_ENGINE_MAX","features":[309]},{"name":"COMPRESSION_FORMAT_MASK","features":[309]},{"name":"COMPRESSION_FORMAT_MAX","features":[309]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[309]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[309]},{"name":"CONTAINER_VOLUME_STATE","features":[309]},{"name":"COPY_INFORMATION","features":[306,309,307,305,308,310,311,312]},{"name":"CPTABLEINFO","features":[309]},{"name":"CREATE_REDIRECTION_ECP_CONTEXT","features":[309,324]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_LAYER","features":[309]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REGISTERED_LAYER","features":[309]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_REMOTE_LAYER","features":[309]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_SCRATCH","features":[309]},{"name":"CREATE_REDIRECTION_FLAGS_SERVICED_FROM_USER_MODE","features":[309]},{"name":"CREATE_USN_JOURNAL_DATA","features":[309]},{"name":"CSV_DOWN_LEVEL_FILE_TYPE","features":[309]},{"name":"CSV_DOWN_LEVEL_OPEN_ECP_CONTEXT","features":[309,305]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT","features":[309]},{"name":"CSV_QUERY_FILE_REVISION_ECP_CONTEXT_FILE_ID_128","features":[309,324]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT","features":[309]},{"name":"CSV_SET_HANDLE_PROPERTIES_ECP_CONTEXT_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[309]},{"name":"CcAsyncCopyRead","features":[306,309,307,305,308,310,311,312]},{"name":"CcCanIWrite","features":[306,309,307,305,308,310,311,312]},{"name":"CcCoherencyFlushAndPurgeCache","features":[306,309,305,310]},{"name":"CcCopyRead","features":[306,309,307,305,308,310,311,312]},{"name":"CcCopyReadEx","features":[306,309,307,305,308,310,311,312]},{"name":"CcCopyWrite","features":[306,309,307,305,308,310,311,312]},{"name":"CcCopyWriteEx","features":[306,309,307,305,308,310,311,312]},{"name":"CcCopyWriteWontFlush","features":[306,309,307,305,308,310,311,312]},{"name":"CcDeferWrite","features":[306,309,307,305,308,310,311,312]},{"name":"CcErrorCallbackRoutine","features":[309,305]},{"name":"CcFastCopyRead","features":[306,309,307,305,308,310,311,312]},{"name":"CcFastCopyWrite","features":[306,309,307,305,308,310,311,312]},{"name":"CcFlushCache","features":[306,309,305,310]},{"name":"CcGetDirtyPages","features":[306,309,307,305,308,310,311,312]},{"name":"CcGetFileObjectFromBcb","features":[306,309,307,305,308,310,311,312]},{"name":"CcGetFileObjectFromSectionPtrs","features":[306,309,307,305,308,310,311,312]},{"name":"CcGetFileObjectFromSectionPtrsRef","features":[306,309,307,305,308,310,311,312]},{"name":"CcGetFlushedValidData","features":[306,309,305]},{"name":"CcInitializeCacheMap","features":[306,309,307,305,308,310,311,312]},{"name":"CcInitializeCacheMapEx","features":[306,309,307,305,308,310,311,312]},{"name":"CcIsCacheManagerCallbackNeeded","features":[309,305]},{"name":"CcIsThereDirtyData","features":[306,309,307,305,308,310,311,312]},{"name":"CcIsThereDirtyDataEx","features":[306,309,307,305,308,310,311,312]},{"name":"CcMapData","features":[306,309,307,305,308,310,311,312]},{"name":"CcMdlRead","features":[306,309,307,305,308,310,311,312]},{"name":"CcMdlReadComplete","features":[306,309,307,305,308,310,311,312]},{"name":"CcMdlWriteAbort","features":[306,309,307,305,308,310,311,312]},{"name":"CcMdlWriteComplete","features":[306,309,307,305,308,310,311,312]},{"name":"CcPinMappedData","features":[306,309,307,305,308,310,311,312]},{"name":"CcPinRead","features":[306,309,307,305,308,310,311,312]},{"name":"CcPrepareMdlWrite","features":[306,309,307,305,308,310,311,312]},{"name":"CcPreparePinWrite","features":[306,309,307,305,308,310,311,312]},{"name":"CcPurgeCacheSection","features":[306,309,305]},{"name":"CcRemapBcb","features":[309]},{"name":"CcRepinBcb","features":[309]},{"name":"CcScheduleReadAhead","features":[306,309,307,305,308,310,311,312]},{"name":"CcScheduleReadAheadEx","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetAdditionalCacheAttributes","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetAdditionalCacheAttributesEx","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetBcbOwnerPointer","features":[309]},{"name":"CcSetDirtyPageThreshold","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetDirtyPinnedData","features":[309]},{"name":"CcSetFileSizes","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetFileSizesEx","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetLogHandleForFile","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetParallelFlushFile","features":[306,309,307,305,308,310,311,312]},{"name":"CcSetReadAheadGranularity","features":[306,309,307,305,308,310,311,312]},{"name":"CcUninitializeCacheMap","features":[306,309,307,305,308,310,311,312]},{"name":"CcUnpinData","features":[309]},{"name":"CcUnpinDataForThread","features":[309]},{"name":"CcUnpinRepinnedBcb","features":[309,305,310]},{"name":"CcWaitForCurrentLazyWriterActivity","features":[309,305]},{"name":"CcZeroData","features":[306,309,307,305,308,310,311,312]},{"name":"ChangeDataControlArea","features":[309]},{"name":"ChangeImageControlArea","features":[309]},{"name":"ChangeSharedCacheMap","features":[309]},{"name":"CompleteAuthToken","features":[309]},{"name":"CsvCsvFsInternalFileObject","features":[309]},{"name":"CsvDownLevelFileObject","features":[309]},{"name":"DD_MUP_DEVICE_NAME","features":[309]},{"name":"DEVICE_RESET_KEEP_STACK","features":[309]},{"name":"DEVICE_RESET_RESERVED_0","features":[309]},{"name":"DEVICE_RESET_RESERVED_1","features":[309]},{"name":"DO_BOOT_CRITICAL","features":[309]},{"name":"DO_BUFFERED_IO","features":[309]},{"name":"DO_BUS_ENUMERATED_DEVICE","features":[309]},{"name":"DO_DAX_VOLUME","features":[309]},{"name":"DO_DEVICE_HAS_NAME","features":[309]},{"name":"DO_DEVICE_INITIALIZING","features":[309]},{"name":"DO_DEVICE_IRP_REQUIRES_EXTENSION","features":[309]},{"name":"DO_DEVICE_TO_BE_RESET","features":[309]},{"name":"DO_DIRECT_IO","features":[309]},{"name":"DO_DISALLOW_EXECUTE","features":[309]},{"name":"DO_EXCLUSIVE","features":[309]},{"name":"DO_FORCE_NEITHER_IO","features":[309]},{"name":"DO_LONG_TERM_REQUESTS","features":[309]},{"name":"DO_LOW_PRIORITY_FILESYSTEM","features":[309]},{"name":"DO_MAP_IO_BUFFER","features":[309]},{"name":"DO_NEVER_LAST_DEVICE","features":[309]},{"name":"DO_NOT_PURGE_DIRTY_PAGES","features":[309]},{"name":"DO_NOT_RETRY_PURGE","features":[309]},{"name":"DO_POWER_INRUSH","features":[309]},{"name":"DO_POWER_PAGABLE","features":[309]},{"name":"DO_SHUTDOWN_REGISTERED","features":[309]},{"name":"DO_SUPPORTS_PERSISTENT_ACLS","features":[309]},{"name":"DO_SUPPORTS_TRANSACTIONS","features":[309]},{"name":"DO_SYSTEM_BOOT_PARTITION","features":[309]},{"name":"DO_SYSTEM_CRITICAL_PARTITION","features":[309]},{"name":"DO_SYSTEM_SYSTEM_PARTITION","features":[309]},{"name":"DO_VERIFY_VOLUME","features":[309]},{"name":"DO_VOLUME_DEVICE_OBJECT","features":[309]},{"name":"DUAL_OPLOCK_KEY_ECP_CONTEXT","features":[309,305]},{"name":"DUPLICATE_CLUSTER_DATA","features":[309]},{"name":"DfsLinkTrackingInformation","features":[309]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY","features":[309]},{"name":"EA_NAME_NETWORK_OPEN_ECP_INTEGRITY_U","features":[309]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY","features":[309]},{"name":"EA_NAME_NETWORK_OPEN_ECP_PRIVACY_U","features":[309]},{"name":"ECP_OPEN_PARAMETERS","features":[309]},{"name":"ECP_OPEN_PARAMETERS_FLAG_FAIL_ON_CASE_SENSITIVE_DIR","features":[309]},{"name":"ECP_OPEN_PARAMETERS_FLAG_IGNORE_DIR_CASE_SENSITIVITY","features":[309]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_DELETE","features":[309]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_READ","features":[309]},{"name":"ECP_OPEN_PARAMETERS_FLAG_OPEN_FOR_WRITE","features":[309]},{"name":"ECP_TYPE_CLFS_CREATE_CONTAINER","features":[309]},{"name":"ECP_TYPE_IO_STOP_ON_SYMLINK_FILTER_GUID","features":[309]},{"name":"ECP_TYPE_OPEN_REPARSE_GUID","features":[309]},{"name":"EOF_WAIT_BLOCK","features":[306,309,305,311]},{"name":"EVENT_INCREMENT","features":[309]},{"name":"EXTENT_READ_CACHE_INFO_BUFFER","features":[309]},{"name":"EqualTo","features":[309]},{"name":"ExDisableResourceBoostLite","features":[306,309,311]},{"name":"ExQueryPoolBlockSize","features":[309,305]},{"name":"ExportSecurityContext","features":[309]},{"name":"FAST_IO_POSSIBLE","features":[309]},{"name":"FILE_ACCESS_INFORMATION","features":[309]},{"name":"FILE_ACTION_ADDED_STREAM","features":[309]},{"name":"FILE_ACTION_ID_NOT_TUNNELLED","features":[309]},{"name":"FILE_ACTION_MODIFIED_STREAM","features":[309]},{"name":"FILE_ACTION_REMOVED_BY_DELETE","features":[309]},{"name":"FILE_ACTION_REMOVED_STREAM","features":[309]},{"name":"FILE_ACTION_TUNNELLED_ID_COLLISION","features":[309]},{"name":"FILE_ALIGNMENT_INFORMATION","features":[309]},{"name":"FILE_ALLOCATION_INFORMATION","features":[309]},{"name":"FILE_ALL_INFORMATION","features":[309,305]},{"name":"FILE_BASIC_INFORMATION","features":[309]},{"name":"FILE_BOTH_DIR_INFORMATION","features":[309]},{"name":"FILE_CASE_SENSITIVE_INFORMATION","features":[309]},{"name":"FILE_CLEANUP_FILE_DELETED","features":[309]},{"name":"FILE_CLEANUP_FILE_REMAINS","features":[309]},{"name":"FILE_CLEANUP_LINK_DELETED","features":[309]},{"name":"FILE_CLEANUP_POSIX_STYLE_DELETE","features":[309]},{"name":"FILE_CLEANUP_STREAM_DELETED","features":[309]},{"name":"FILE_CLEANUP_UNKNOWN","features":[309]},{"name":"FILE_CLEANUP_WRONG_DEVICE","features":[309]},{"name":"FILE_COMPLETE_IF_OPLOCKED","features":[309]},{"name":"FILE_COMPLETION_INFORMATION","features":[309,305]},{"name":"FILE_COMPRESSION_INFORMATION","features":[309]},{"name":"FILE_CONTAINS_EXTENDED_CREATE_INFORMATION","features":[309]},{"name":"FILE_CREATE","features":[309]},{"name":"FILE_CREATE_TREE_CONNECTION","features":[309]},{"name":"FILE_DELETE_ON_CLOSE","features":[309]},{"name":"FILE_DIRECTORY_FILE","features":[309]},{"name":"FILE_DIRECTORY_INFORMATION","features":[309]},{"name":"FILE_DISALLOW_EXCLUSIVE","features":[309]},{"name":"FILE_DISPOSITION_DELETE","features":[309]},{"name":"FILE_DISPOSITION_DO_NOT_DELETE","features":[309]},{"name":"FILE_DISPOSITION_FORCE_IMAGE_SECTION_CHECK","features":[309]},{"name":"FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE","features":[309]},{"name":"FILE_DISPOSITION_INFORMATION","features":[309,305]},{"name":"FILE_DISPOSITION_INFORMATION_EX","features":[309]},{"name":"FILE_DISPOSITION_INFORMATION_EX_FLAGS","features":[309]},{"name":"FILE_DISPOSITION_ON_CLOSE","features":[309]},{"name":"FILE_DISPOSITION_POSIX_SEMANTICS","features":[309]},{"name":"FILE_EA_INFORMATION","features":[309]},{"name":"FILE_EA_TYPE_ASCII","features":[309]},{"name":"FILE_EA_TYPE_ASN1","features":[309]},{"name":"FILE_EA_TYPE_BINARY","features":[309]},{"name":"FILE_EA_TYPE_BITMAP","features":[309]},{"name":"FILE_EA_TYPE_EA","features":[309]},{"name":"FILE_EA_TYPE_FAMILY_IDS","features":[309]},{"name":"FILE_EA_TYPE_ICON","features":[309]},{"name":"FILE_EA_TYPE_METAFILE","features":[309]},{"name":"FILE_EA_TYPE_MVMT","features":[309]},{"name":"FILE_EA_TYPE_MVST","features":[309]},{"name":"FILE_END_OF_FILE_INFORMATION_EX","features":[309]},{"name":"FILE_FS_ATTRIBUTE_INFORMATION","features":[309]},{"name":"FILE_FS_CONTROL_INFORMATION","features":[309]},{"name":"FILE_FS_DATA_COPY_INFORMATION","features":[309]},{"name":"FILE_FS_DRIVER_PATH_INFORMATION","features":[309,305]},{"name":"FILE_FS_SECTOR_SIZE_INFORMATION","features":[309]},{"name":"FILE_FS_VOLUME_FLAGS_INFORMATION","features":[309]},{"name":"FILE_FULL_DIR_INFORMATION","features":[309]},{"name":"FILE_FULL_EA_INFORMATION","features":[309]},{"name":"FILE_GET_EA_INFORMATION","features":[309]},{"name":"FILE_GET_QUOTA_INFORMATION","features":[309,308]},{"name":"FILE_ID_BOTH_DIR_INFORMATION","features":[309]},{"name":"FILE_ID_EXTD_BOTH_DIR_INFORMATION","features":[309,324]},{"name":"FILE_ID_EXTD_DIR_INFORMATION","features":[309,324]},{"name":"FILE_ID_FULL_DIR_INFORMATION","features":[309]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFORMATION","features":[309]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_OUTSIDE_TX","features":[309]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_VISIBLE_TO_TX","features":[309]},{"name":"FILE_ID_GLOBAL_TX_DIR_INFO_FLAG_WRITELOCKED","features":[309]},{"name":"FILE_ID_INFORMATION","features":[309,324]},{"name":"FILE_INFORMATION_CLASS","features":[309]},{"name":"FILE_INFORMATION_DEFINITION","features":[309]},{"name":"FILE_INTERNAL_INFORMATION","features":[309]},{"name":"FILE_KNOWN_FOLDER_INFORMATION","features":[309]},{"name":"FILE_KNOWN_FOLDER_TYPE","features":[309]},{"name":"FILE_LINKS_FULL_ID_INFORMATION","features":[309,324]},{"name":"FILE_LINKS_INFORMATION","features":[309]},{"name":"FILE_LINK_ENTRY_FULL_ID_INFORMATION","features":[309,324]},{"name":"FILE_LINK_ENTRY_INFORMATION","features":[309]},{"name":"FILE_LINK_FORCE_RESIZE_SOURCE_SR","features":[309]},{"name":"FILE_LINK_FORCE_RESIZE_SR","features":[309]},{"name":"FILE_LINK_FORCE_RESIZE_TARGET_SR","features":[309]},{"name":"FILE_LINK_IGNORE_READONLY_ATTRIBUTE","features":[309]},{"name":"FILE_LINK_INFORMATION","features":[309,305]},{"name":"FILE_LINK_NO_DECREASE_AVAILABLE_SPACE","features":[309]},{"name":"FILE_LINK_NO_INCREASE_AVAILABLE_SPACE","features":[309]},{"name":"FILE_LINK_POSIX_SEMANTICS","features":[309]},{"name":"FILE_LINK_PRESERVE_AVAILABLE_SPACE","features":[309]},{"name":"FILE_LINK_REPLACE_IF_EXISTS","features":[309]},{"name":"FILE_LINK_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[309]},{"name":"FILE_LOCK","features":[306,309,307,305,308,310,311,312]},{"name":"FILE_LOCK_INFO","features":[306,309,307,305,308,310,311,312]},{"name":"FILE_MAILSLOT_QUERY_INFORMATION","features":[309]},{"name":"FILE_MAILSLOT_SET_INFORMATION","features":[309]},{"name":"FILE_MODE_INFORMATION","features":[309]},{"name":"FILE_MOVE_CLUSTER_INFORMATION","features":[309,305]},{"name":"FILE_NAMES_INFORMATION","features":[309]},{"name":"FILE_NAME_INFORMATION","features":[309]},{"name":"FILE_NEED_EA","features":[309]},{"name":"FILE_NETWORK_OPEN_INFORMATION","features":[309]},{"name":"FILE_NETWORK_PHYSICAL_NAME_INFORMATION","features":[309]},{"name":"FILE_NON_DIRECTORY_FILE","features":[309]},{"name":"FILE_NOTIFY_CHANGE_EA","features":[309]},{"name":"FILE_NOTIFY_CHANGE_NAME","features":[309]},{"name":"FILE_NOTIFY_CHANGE_STREAM_NAME","features":[309]},{"name":"FILE_NOTIFY_CHANGE_STREAM_SIZE","features":[309]},{"name":"FILE_NOTIFY_CHANGE_STREAM_WRITE","features":[309]},{"name":"FILE_NOTIFY_VALID_MASK","features":[309]},{"name":"FILE_NO_COMPRESSION","features":[309]},{"name":"FILE_NO_EA_KNOWLEDGE","features":[309]},{"name":"FILE_NO_INTERMEDIATE_BUFFERING","features":[309]},{"name":"FILE_OBJECTID_INFORMATION","features":[309]},{"name":"FILE_OPBATCH_BREAK_UNDERWAY","features":[309]},{"name":"FILE_OPEN","features":[309]},{"name":"FILE_OPEN_BY_FILE_ID","features":[309]},{"name":"FILE_OPEN_FOR_BACKUP_INTENT","features":[309]},{"name":"FILE_OPEN_FOR_FREE_SPACE_QUERY","features":[309]},{"name":"FILE_OPEN_IF","features":[309]},{"name":"FILE_OPEN_NO_RECALL","features":[309]},{"name":"FILE_OPEN_REPARSE_POINT","features":[309]},{"name":"FILE_OPEN_REQUIRING_OPLOCK","features":[309]},{"name":"FILE_OPLOCK_BROKEN_TO_LEVEL_2","features":[309]},{"name":"FILE_OPLOCK_BROKEN_TO_NONE","features":[309]},{"name":"FILE_OVERWRITE","features":[309]},{"name":"FILE_OVERWRITE_IF","features":[309]},{"name":"FILE_PIPE_ACCEPT_REMOTE_CLIENTS","features":[309]},{"name":"FILE_PIPE_ASSIGN_EVENT_BUFFER","features":[309,305]},{"name":"FILE_PIPE_BYTE_STREAM_MODE","features":[309]},{"name":"FILE_PIPE_BYTE_STREAM_TYPE","features":[309]},{"name":"FILE_PIPE_CLIENT_END","features":[309]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER","features":[309]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_EX","features":[309]},{"name":"FILE_PIPE_CLIENT_PROCESS_BUFFER_V2","features":[309]},{"name":"FILE_PIPE_CLOSING_STATE","features":[309]},{"name":"FILE_PIPE_COMPLETE_OPERATION","features":[309]},{"name":"FILE_PIPE_COMPUTER_NAME_LENGTH","features":[309]},{"name":"FILE_PIPE_CONNECTED_STATE","features":[309]},{"name":"FILE_PIPE_CREATE_SYMLINK_INPUT","features":[309]},{"name":"FILE_PIPE_DELETE_SYMLINK_INPUT","features":[309]},{"name":"FILE_PIPE_DISCONNECTED_STATE","features":[309]},{"name":"FILE_PIPE_EVENT_BUFFER","features":[309]},{"name":"FILE_PIPE_FULL_DUPLEX","features":[309]},{"name":"FILE_PIPE_INBOUND","features":[309]},{"name":"FILE_PIPE_INFORMATION","features":[309]},{"name":"FILE_PIPE_LISTENING_STATE","features":[309]},{"name":"FILE_PIPE_LOCAL_INFORMATION","features":[309]},{"name":"FILE_PIPE_MESSAGE_MODE","features":[309]},{"name":"FILE_PIPE_MESSAGE_TYPE","features":[309]},{"name":"FILE_PIPE_OUTBOUND","features":[309]},{"name":"FILE_PIPE_PEEK_BUFFER","features":[309]},{"name":"FILE_PIPE_QUEUE_OPERATION","features":[309]},{"name":"FILE_PIPE_READ_DATA","features":[309]},{"name":"FILE_PIPE_REJECT_REMOTE_CLIENTS","features":[309]},{"name":"FILE_PIPE_REMOTE_INFORMATION","features":[309]},{"name":"FILE_PIPE_SERVER_END","features":[309]},{"name":"FILE_PIPE_SILO_ARRIVAL_INPUT","features":[309,305]},{"name":"FILE_PIPE_SYMLINK_FLAG_GLOBAL","features":[309]},{"name":"FILE_PIPE_SYMLINK_FLAG_RELATIVE","features":[309]},{"name":"FILE_PIPE_TYPE_VALID_MASK","features":[309]},{"name":"FILE_PIPE_WAIT_FOR_BUFFER","features":[309,305]},{"name":"FILE_PIPE_WRITE_SPACE","features":[309]},{"name":"FILE_POSITION_INFORMATION","features":[309]},{"name":"FILE_QUOTA_INFORMATION","features":[309,308]},{"name":"FILE_RANDOM_ACCESS","features":[309]},{"name":"FILE_REMOTE_PROTOCOL_INFORMATION","features":[309]},{"name":"FILE_RENAME_FORCE_RESIZE_SOURCE_SR","features":[309]},{"name":"FILE_RENAME_FORCE_RESIZE_SR","features":[309]},{"name":"FILE_RENAME_FORCE_RESIZE_TARGET_SR","features":[309]},{"name":"FILE_RENAME_IGNORE_READONLY_ATTRIBUTE","features":[309]},{"name":"FILE_RENAME_INFORMATION","features":[309,305]},{"name":"FILE_RENAME_NO_DECREASE_AVAILABLE_SPACE","features":[309]},{"name":"FILE_RENAME_NO_INCREASE_AVAILABLE_SPACE","features":[309]},{"name":"FILE_RENAME_POSIX_SEMANTICS","features":[309]},{"name":"FILE_RENAME_PRESERVE_AVAILABLE_SPACE","features":[309]},{"name":"FILE_RENAME_REPLACE_IF_EXISTS","features":[309]},{"name":"FILE_RENAME_SUPPRESS_PIN_STATE_INHERITANCE","features":[309]},{"name":"FILE_RENAME_SUPPRESS_STORAGE_RESERVE_INHERITANCE","features":[309]},{"name":"FILE_REPARSE_POINT_INFORMATION","features":[309]},{"name":"FILE_RESERVE_OPFILTER","features":[309]},{"name":"FILE_SEQUENTIAL_ONLY","features":[309]},{"name":"FILE_SESSION_AWARE","features":[309]},{"name":"FILE_STANDARD_INFORMATION","features":[309,305]},{"name":"FILE_STANDARD_LINK_INFORMATION","features":[309,305]},{"name":"FILE_STAT_INFORMATION","features":[309]},{"name":"FILE_STAT_LX_INFORMATION","features":[309]},{"name":"FILE_STORAGE_RESERVE_ID_INFORMATION","features":[309,325]},{"name":"FILE_STREAM_INFORMATION","features":[309]},{"name":"FILE_SUPERSEDE","features":[309]},{"name":"FILE_SYNCHRONOUS_IO_ALERT","features":[309]},{"name":"FILE_SYNCHRONOUS_IO_NONALERT","features":[309]},{"name":"FILE_TIMESTAMPS","features":[309]},{"name":"FILE_TRACKING_INFORMATION","features":[309,305]},{"name":"FILE_VC_CONTENT_INDEX_DISABLED","features":[309]},{"name":"FILE_VC_LOG_QUOTA_LIMIT","features":[309]},{"name":"FILE_VC_LOG_QUOTA_THRESHOLD","features":[309]},{"name":"FILE_VC_LOG_VOLUME_LIMIT","features":[309]},{"name":"FILE_VC_LOG_VOLUME_THRESHOLD","features":[309]},{"name":"FILE_VC_QUOTAS_INCOMPLETE","features":[309]},{"name":"FILE_VC_QUOTAS_REBUILDING","features":[309]},{"name":"FILE_VC_QUOTA_ENFORCE","features":[309]},{"name":"FILE_VC_QUOTA_MASK","features":[309]},{"name":"FILE_VC_QUOTA_NONE","features":[309]},{"name":"FILE_VC_QUOTA_TRACK","features":[309]},{"name":"FILE_VC_VALID_MASK","features":[309]},{"name":"FILE_VOLUME_NAME_INFORMATION","features":[309]},{"name":"FILE_WRITE_THROUGH","features":[309]},{"name":"FLAGS_DELAY_REASONS_BITMAP_SCANNED","features":[309]},{"name":"FLAGS_DELAY_REASONS_LOG_FILE_FULL","features":[309]},{"name":"FLAGS_END_OF_FILE_INFO_EX_EXTEND_PAGING","features":[309]},{"name":"FLAGS_END_OF_FILE_INFO_EX_NO_EXTRA_PAGING_EXTEND","features":[309]},{"name":"FLAGS_END_OF_FILE_INFO_EX_TIME_CONSTRAINED","features":[309]},{"name":"FREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[309,305]},{"name":"FSCTL_GHOST_FILE_EXTENTS_INPUT_BUFFER","features":[309]},{"name":"FSCTL_LMR_GET_LINK_TRACKING_INFORMATION","features":[309]},{"name":"FSCTL_LMR_SET_LINK_TRACKING_INFORMATION","features":[309]},{"name":"FSCTL_MAILSLOT_PEEK","features":[309]},{"name":"FSCTL_PIPE_ASSIGN_EVENT","features":[309]},{"name":"FSCTL_PIPE_CREATE_SYMLINK","features":[309]},{"name":"FSCTL_PIPE_DELETE_SYMLINK","features":[309]},{"name":"FSCTL_PIPE_DISABLE_IMPERSONATE","features":[309]},{"name":"FSCTL_PIPE_DISCONNECT","features":[309]},{"name":"FSCTL_PIPE_FLUSH","features":[309]},{"name":"FSCTL_PIPE_GET_CONNECTION_ATTRIBUTE","features":[309]},{"name":"FSCTL_PIPE_GET_HANDLE_ATTRIBUTE","features":[309]},{"name":"FSCTL_PIPE_GET_PIPE_ATTRIBUTE","features":[309]},{"name":"FSCTL_PIPE_IMPERSONATE","features":[309]},{"name":"FSCTL_PIPE_INTERNAL_READ","features":[309]},{"name":"FSCTL_PIPE_INTERNAL_READ_OVFLOW","features":[309]},{"name":"FSCTL_PIPE_INTERNAL_TRANSCEIVE","features":[309]},{"name":"FSCTL_PIPE_INTERNAL_WRITE","features":[309]},{"name":"FSCTL_PIPE_LISTEN","features":[309]},{"name":"FSCTL_PIPE_PEEK","features":[309]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS","features":[309]},{"name":"FSCTL_PIPE_QUERY_CLIENT_PROCESS_V2","features":[309]},{"name":"FSCTL_PIPE_QUERY_EVENT","features":[309]},{"name":"FSCTL_PIPE_SET_CLIENT_PROCESS","features":[309]},{"name":"FSCTL_PIPE_SET_CONNECTION_ATTRIBUTE","features":[309]},{"name":"FSCTL_PIPE_SET_HANDLE_ATTRIBUTE","features":[309]},{"name":"FSCTL_PIPE_SET_PIPE_ATTRIBUTE","features":[309]},{"name":"FSCTL_PIPE_SILO_ARRIVAL","features":[309]},{"name":"FSCTL_PIPE_TRANSCEIVE","features":[309]},{"name":"FSCTL_PIPE_WAIT","features":[309]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_INPUT_RANGE","features":[309]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS_OUTPUT","features":[309]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO_OUTPUT","features":[309]},{"name":"FSCTL_UNMAP_SPACE_INPUT_BUFFER","features":[309]},{"name":"FSCTL_UNMAP_SPACE_OUTPUT","features":[309]},{"name":"FSRTL_ADD_TC_CASE_SENSITIVE","features":[309]},{"name":"FSRTL_ADD_TC_KEY_BY_SHORT_NAME","features":[309]},{"name":"FSRTL_ADVANCED_FCB_HEADER","features":[306,309,305,311]},{"name":"FSRTL_ALLOCATE_ECPLIST_FLAG_CHARGE_QUOTA","features":[309]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_CHARGE_QUOTA","features":[309]},{"name":"FSRTL_ALLOCATE_ECP_FLAG_NONPAGED_POOL","features":[309]},{"name":"FSRTL_AUXILIARY_BUFFER","features":[306,309]},{"name":"FSRTL_AUXILIARY_FLAG_DEALLOCATE","features":[309]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_HARD_ERROR","features":[309]},{"name":"FSRTL_CC_FLUSH_ERROR_FLAG_NO_LOG_ENTRY","features":[309]},{"name":"FSRTL_CHANGE_BACKING_TYPE","features":[309]},{"name":"FSRTL_COMMON_FCB_HEADER","features":[306,309,311]},{"name":"FSRTL_COMPARISON_RESULT","features":[309]},{"name":"FSRTL_DRIVER_BACKING_FLAG_USE_PAGE_FILE","features":[309]},{"name":"FSRTL_ECP_LOOKASIDE_FLAG_NONPAGED_POOL","features":[309]},{"name":"FSRTL_FAT_LEGAL","features":[309]},{"name":"FSRTL_FCB_HEADER_V0","features":[309]},{"name":"FSRTL_FCB_HEADER_V1","features":[309]},{"name":"FSRTL_FCB_HEADER_V2","features":[309]},{"name":"FSRTL_FCB_HEADER_V3","features":[309]},{"name":"FSRTL_FCB_HEADER_V4","features":[309]},{"name":"FSRTL_FIND_TC_CASE_SENSITIVE","features":[309]},{"name":"FSRTL_FLAG2_BYPASSIO_STREAM_PAUSED","features":[309]},{"name":"FSRTL_FLAG2_DO_MODIFIED_WRITE","features":[309]},{"name":"FSRTL_FLAG2_IS_PAGING_FILE","features":[309]},{"name":"FSRTL_FLAG2_PURGE_WHEN_MAPPED","features":[309]},{"name":"FSRTL_FLAG2_SUPPORTS_FILTER_CONTEXTS","features":[309]},{"name":"FSRTL_FLAG2_WRITABLE_USER_MAPPED_FILE","features":[309]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_EX","features":[309]},{"name":"FSRTL_FLAG_ACQUIRE_MAIN_RSRC_SH","features":[309]},{"name":"FSRTL_FLAG_ADVANCED_HEADER","features":[309]},{"name":"FSRTL_FLAG_EOF_ADVANCE_ACTIVE","features":[309]},{"name":"FSRTL_FLAG_FILE_LENGTH_CHANGED","features":[309]},{"name":"FSRTL_FLAG_FILE_MODIFIED","features":[309]},{"name":"FSRTL_FLAG_LIMIT_MODIFIED_PAGES","features":[309]},{"name":"FSRTL_FLAG_USER_MAPPED_FILE","features":[309]},{"name":"FSRTL_HPFS_LEGAL","features":[309]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_1","features":[309]},{"name":"FSRTL_MUP_PROVIDER_INFO_LEVEL_2","features":[309,305]},{"name":"FSRTL_NTFS_LEGAL","features":[309]},{"name":"FSRTL_OLE_LEGAL","features":[309]},{"name":"FSRTL_PER_FILEOBJECT_CONTEXT","features":[309,311]},{"name":"FSRTL_PER_FILE_CONTEXT","features":[306,309,311]},{"name":"FSRTL_PER_STREAM_CONTEXT","features":[306,309,311]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_INTEGRITY","features":[309]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_MUTUAL_AUTH","features":[309]},{"name":"FSRTL_UNC_HARDENING_CAPABILITIES_PRIVACY","features":[309]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CONTAINER_AWARE","features":[309]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_CSC_ENABLED","features":[309]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_DOMAIN_SVC_AWARE","features":[309]},{"name":"FSRTL_UNC_PROVIDER_FLAGS_MAILSLOTS_SUPPORTED","features":[309]},{"name":"FSRTL_UNC_PROVIDER_REGISTRATION","features":[309]},{"name":"FSRTL_UNC_REGISTRATION_CURRENT_VERSION","features":[309]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0200","features":[309]},{"name":"FSRTL_UNC_REGISTRATION_VERSION_0201","features":[309]},{"name":"FSRTL_VIRTDISK_FULLY_ALLOCATED","features":[309]},{"name":"FSRTL_VIRTDISK_NO_DRIVE_LETTER","features":[309]},{"name":"FSRTL_VOLUME_BACKGROUND_FORMAT","features":[309]},{"name":"FSRTL_VOLUME_CHANGE_SIZE","features":[309]},{"name":"FSRTL_VOLUME_DISMOUNT","features":[309]},{"name":"FSRTL_VOLUME_DISMOUNT_FAILED","features":[309]},{"name":"FSRTL_VOLUME_FORCED_CLOSED","features":[309]},{"name":"FSRTL_VOLUME_INFO_MAKE_COMPAT","features":[309]},{"name":"FSRTL_VOLUME_LOCK","features":[309]},{"name":"FSRTL_VOLUME_LOCK_FAILED","features":[309]},{"name":"FSRTL_VOLUME_MOUNT","features":[309]},{"name":"FSRTL_VOLUME_NEEDS_CHKDSK","features":[309]},{"name":"FSRTL_VOLUME_PREPARING_EJECT","features":[309]},{"name":"FSRTL_VOLUME_UNLOCK","features":[309]},{"name":"FSRTL_VOLUME_WEARING_OUT","features":[309]},{"name":"FSRTL_VOLUME_WORM_NEAR_FULL","features":[309]},{"name":"FSRTL_WILD_CHARACTER","features":[309]},{"name":"FS_BPIO_INFO","features":[309]},{"name":"FS_BPIO_INPUT","features":[309,325]},{"name":"FS_FILTER_ACQUIRE_FOR_CC_FLUSH","features":[309]},{"name":"FS_FILTER_ACQUIRE_FOR_MOD_WRITE","features":[309]},{"name":"FS_FILTER_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[309]},{"name":"FS_FILTER_CALLBACKS","features":[306,309,307,305,308,310,311,312]},{"name":"FS_FILTER_CALLBACK_DATA","features":[306,309,307,305,308,310,311,312]},{"name":"FS_FILTER_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"FS_FILTER_QUERY_OPEN","features":[309]},{"name":"FS_FILTER_RELEASE_FOR_CC_FLUSH","features":[309]},{"name":"FS_FILTER_RELEASE_FOR_MOD_WRITE","features":[309]},{"name":"FS_FILTER_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_IMAGE_EXTENTS_ARE_NOT_RVA","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_ACCESS","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_IN_FLAG_DONT_UPDATE_LAST_WRITE","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_OUTPUT","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_ASYNC_PARALLEL_IO","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_DATA","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_SUPPORTS_DIRECT_MAP_IMAGE","features":[309]},{"name":"FS_FILTER_SECTION_SYNC_TYPE","features":[309]},{"name":"FS_FILTER_STREAM_FO_NOTIFICATION_TYPE","features":[309]},{"name":"FS_INFORMATION_CLASS","features":[309]},{"name":"FastIoIsNotPossible","features":[309]},{"name":"FastIoIsPossible","features":[309]},{"name":"FastIoIsQuestionable","features":[309]},{"name":"FileAccessInformation","features":[309]},{"name":"FileAlignmentInformation","features":[309]},{"name":"FileAllInformation","features":[309]},{"name":"FileAllocationInformation","features":[309]},{"name":"FileAlternateNameInformation","features":[309]},{"name":"FileAttributeTagInformation","features":[309]},{"name":"FileBasicInformation","features":[309]},{"name":"FileBothDirectoryInformation","features":[309]},{"name":"FileCaseSensitiveInformation","features":[309]},{"name":"FileCaseSensitiveInformationForceAccessCheck","features":[309]},{"name":"FileCompletionInformation","features":[309]},{"name":"FileCompressionInformation","features":[309]},{"name":"FileDesiredStorageClassInformation","features":[309]},{"name":"FileDirectoryInformation","features":[309]},{"name":"FileDispositionInformation","features":[309]},{"name":"FileDispositionInformationEx","features":[309]},{"name":"FileEaInformation","features":[309]},{"name":"FileEndOfFileInformation","features":[309]},{"name":"FileFsAttributeInformation","features":[309]},{"name":"FileFsControlInformation","features":[309]},{"name":"FileFsDataCopyInformation","features":[309]},{"name":"FileFsDeviceInformation","features":[309]},{"name":"FileFsDriverPathInformation","features":[309]},{"name":"FileFsFullSizeInformation","features":[309]},{"name":"FileFsFullSizeInformationEx","features":[309]},{"name":"FileFsLabelInformation","features":[309]},{"name":"FileFsMaximumInformation","features":[309]},{"name":"FileFsMetadataSizeInformation","features":[309]},{"name":"FileFsObjectIdInformation","features":[309]},{"name":"FileFsSectorSizeInformation","features":[309]},{"name":"FileFsSizeInformation","features":[309]},{"name":"FileFsVolumeFlagsInformation","features":[309]},{"name":"FileFsVolumeInformation","features":[309]},{"name":"FileFullDirectoryInformation","features":[309]},{"name":"FileFullEaInformation","features":[309]},{"name":"FileHardLinkFullIdInformation","features":[309]},{"name":"FileHardLinkInformation","features":[309]},{"name":"FileIdBothDirectoryInformation","features":[309]},{"name":"FileIdExtdBothDirectoryInformation","features":[309]},{"name":"FileIdExtdDirectoryInformation","features":[309]},{"name":"FileIdFullDirectoryInformation","features":[309]},{"name":"FileIdGlobalTxDirectoryInformation","features":[309]},{"name":"FileIdInformation","features":[309]},{"name":"FileInternalInformation","features":[309]},{"name":"FileIoCompletionNotificationInformation","features":[309]},{"name":"FileIoPriorityHintInformation","features":[309]},{"name":"FileIoStatusBlockRangeInformation","features":[309]},{"name":"FileIsRemoteDeviceInformation","features":[309]},{"name":"FileKnownFolderInformation","features":[309]},{"name":"FileLinkInformation","features":[309]},{"name":"FileLinkInformationBypassAccessCheck","features":[309]},{"name":"FileLinkInformationEx","features":[309]},{"name":"FileLinkInformationExBypassAccessCheck","features":[309]},{"name":"FileMailslotQueryInformation","features":[309]},{"name":"FileMailslotSetInformation","features":[309]},{"name":"FileMaximumInformation","features":[309]},{"name":"FileMemoryPartitionInformation","features":[309]},{"name":"FileModeInformation","features":[309]},{"name":"FileMoveClusterInformation","features":[309]},{"name":"FileNameInformation","features":[309]},{"name":"FileNamesInformation","features":[309]},{"name":"FileNetworkOpenInformation","features":[309]},{"name":"FileNetworkPhysicalNameInformation","features":[309]},{"name":"FileNormalizedNameInformation","features":[309]},{"name":"FileNumaNodeInformation","features":[309]},{"name":"FileObjectIdInformation","features":[309]},{"name":"FilePipeInformation","features":[309]},{"name":"FilePipeLocalInformation","features":[309]},{"name":"FilePipeRemoteInformation","features":[309]},{"name":"FilePositionInformation","features":[309]},{"name":"FileProcessIdsUsingFileInformation","features":[309]},{"name":"FileQuotaInformation","features":[309]},{"name":"FileRemoteProtocolInformation","features":[309]},{"name":"FileRenameInformation","features":[309]},{"name":"FileRenameInformationBypassAccessCheck","features":[309]},{"name":"FileRenameInformationEx","features":[309]},{"name":"FileRenameInformationExBypassAccessCheck","features":[309]},{"name":"FileReparsePointInformation","features":[309]},{"name":"FileReplaceCompletionInformation","features":[309]},{"name":"FileSfioReserveInformation","features":[309]},{"name":"FileSfioVolumeInformation","features":[309]},{"name":"FileShortNameInformation","features":[309]},{"name":"FileStandardInformation","features":[309]},{"name":"FileStandardLinkInformation","features":[309]},{"name":"FileStatInformation","features":[309]},{"name":"FileStatLxInformation","features":[309]},{"name":"FileStorageReserveIdInformation","features":[309]},{"name":"FileStreamInformation","features":[309]},{"name":"FileTrackingInformation","features":[309]},{"name":"FileUnusedInformation","features":[309]},{"name":"FileValidDataLengthInformation","features":[309]},{"name":"FileVolumeNameInformation","features":[309]},{"name":"FsRtlAcknowledgeEcp","features":[309]},{"name":"FsRtlAcquireFileExclusive","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlAddBaseMcbEntry","features":[309,305]},{"name":"FsRtlAddBaseMcbEntryEx","features":[309,305]},{"name":"FsRtlAddLargeMcbEntry","features":[306,309,305,311]},{"name":"FsRtlAddMcbEntry","features":[306,309,305,311]},{"name":"FsRtlAddToTunnelCache","features":[306,309,305,311]},{"name":"FsRtlAddToTunnelCacheEx","features":[306,309,305,311]},{"name":"FsRtlAllocateAePushLock","features":[306,309]},{"name":"FsRtlAllocateExtraCreateParameter","features":[309,305]},{"name":"FsRtlAllocateExtraCreateParameterFromLookasideList","features":[309,305]},{"name":"FsRtlAllocateExtraCreateParameterList","features":[306,309,305]},{"name":"FsRtlAllocateFileLock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlAllocateResource","features":[306,309,311]},{"name":"FsRtlAreNamesEqual","features":[309,305]},{"name":"FsRtlAreThereCurrentOrInProgressFileLocks","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlAreThereWaitingFileLocks","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlAreVolumeStartupApplicationsComplete","features":[309,305]},{"name":"FsRtlBalanceReads","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCancellableWaitForMultipleObjects","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCancellableWaitForSingleObject","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlChangeBackingFileObject","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCheckLockForOplockRequest","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCheckLockForReadAccess","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCheckLockForWriteAccess","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCheckOplock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCheckOplockEx","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCheckOplockEx2","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCheckUpperOplock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCopyRead","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCopyWrite","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCreateSectionForDataScan","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlCurrentBatchOplock","features":[309,305]},{"name":"FsRtlCurrentOplock","features":[309,305]},{"name":"FsRtlCurrentOplockH","features":[309,305]},{"name":"FsRtlDeleteExtraCreateParameterLookasideList","features":[309]},{"name":"FsRtlDeleteKeyFromTunnelCache","features":[306,309,305,311]},{"name":"FsRtlDeleteTunnelCache","features":[306,309,305,311]},{"name":"FsRtlDeregisterUncProvider","features":[309,305]},{"name":"FsRtlDismountComplete","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlDissectDbcs","features":[309,311]},{"name":"FsRtlDissectName","features":[309,305]},{"name":"FsRtlDoesDbcsContainWildCards","features":[309,305,311]},{"name":"FsRtlDoesNameContainWildCards","features":[309,305]},{"name":"FsRtlFastCheckLockForRead","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlFastCheckLockForWrite","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlFastUnlockAll","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlFastUnlockAllByKey","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlFastUnlockSingle","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlFindExtraCreateParameter","features":[306,309,305]},{"name":"FsRtlFindInTunnelCache","features":[306,309,305,311]},{"name":"FsRtlFindInTunnelCacheEx","features":[306,309,305,311]},{"name":"FsRtlFreeAePushLock","features":[309]},{"name":"FsRtlFreeExtraCreateParameter","features":[309]},{"name":"FsRtlFreeExtraCreateParameterList","features":[306,309]},{"name":"FsRtlFreeFileLock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlGetCurrentProcessLoaderList","features":[309,311]},{"name":"FsRtlGetEcpListFromIrp","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlGetFileSize","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlGetNextBaseMcbEntry","features":[309,305]},{"name":"FsRtlGetNextExtraCreateParameter","features":[306,309,305]},{"name":"FsRtlGetNextFileLock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlGetNextLargeMcbEntry","features":[306,309,305,311]},{"name":"FsRtlGetNextMcbEntry","features":[306,309,305,311]},{"name":"FsRtlGetSectorSizeInformation","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlGetSupportedFeatures","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlGetVirtualDiskNestingLevel","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlIncrementCcFastMdlReadWait","features":[309]},{"name":"FsRtlIncrementCcFastReadNoWait","features":[309]},{"name":"FsRtlIncrementCcFastReadNotPossible","features":[309]},{"name":"FsRtlIncrementCcFastReadResourceMiss","features":[309]},{"name":"FsRtlIncrementCcFastReadWait","features":[309]},{"name":"FsRtlInitExtraCreateParameterLookasideList","features":[309]},{"name":"FsRtlInitializeBaseMcb","features":[306,309]},{"name":"FsRtlInitializeBaseMcbEx","features":[306,309,305]},{"name":"FsRtlInitializeExtraCreateParameter","features":[306,309]},{"name":"FsRtlInitializeExtraCreateParameterList","features":[306,309,305]},{"name":"FsRtlInitializeFileLock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlInitializeLargeMcb","features":[306,309,305,311]},{"name":"FsRtlInitializeMcb","features":[306,309,305,311]},{"name":"FsRtlInitializeOplock","features":[309]},{"name":"FsRtlInitializeTunnelCache","features":[306,309,305,311]},{"name":"FsRtlInsertExtraCreateParameter","features":[306,309,305]},{"name":"FsRtlInsertPerFileContext","features":[306,309,305,311]},{"name":"FsRtlInsertPerFileObjectContext","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlInsertPerStreamContext","features":[306,309,305,311]},{"name":"FsRtlIs32BitProcess","features":[306,309,305]},{"name":"FsRtlIsDaxVolume","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlIsDbcsInExpression","features":[309,305,311]},{"name":"FsRtlIsEcpAcknowledged","features":[309,305]},{"name":"FsRtlIsEcpFromUserMode","features":[309,305]},{"name":"FsRtlIsExtentDangling","features":[309]},{"name":"FsRtlIsFatDbcsLegal","features":[309,305,311]},{"name":"FsRtlIsHpfsDbcsLegal","features":[309,305,311]},{"name":"FsRtlIsMobileOS","features":[309,305]},{"name":"FsRtlIsNameInExpression","features":[309,305]},{"name":"FsRtlIsNameInUnUpcasedExpression","features":[309,305]},{"name":"FsRtlIsNonEmptyDirectoryReparsePointAllowed","features":[309,305]},{"name":"FsRtlIsNtstatusExpected","features":[309,305]},{"name":"FsRtlIsPagingFile","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlIsSystemPagingFile","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlIssueDeviceIoControl","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlKernelFsControlFile","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlLogCcFlushError","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlLookupBaseMcbEntry","features":[309,305]},{"name":"FsRtlLookupLargeMcbEntry","features":[306,309,305,311]},{"name":"FsRtlLookupLastBaseMcbEntry","features":[309,305]},{"name":"FsRtlLookupLastBaseMcbEntryAndIndex","features":[309,305]},{"name":"FsRtlLookupLastLargeMcbEntry","features":[306,309,305,311]},{"name":"FsRtlLookupLastLargeMcbEntryAndIndex","features":[306,309,305,311]},{"name":"FsRtlLookupLastMcbEntry","features":[306,309,305,311]},{"name":"FsRtlLookupMcbEntry","features":[306,309,305,311]},{"name":"FsRtlLookupPerFileContext","features":[306,309,311]},{"name":"FsRtlLookupPerFileObjectContext","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlLookupPerStreamContextInternal","features":[306,309,305,311]},{"name":"FsRtlMdlReadCompleteDev","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlMdlReadDev","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlMdlReadEx","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlMdlWriteCompleteDev","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlMupGetProviderIdFromName","features":[309,305]},{"name":"FsRtlMupGetProviderInfoFromFileObject","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlNormalizeNtstatus","features":[309,305]},{"name":"FsRtlNotifyCleanup","features":[306,309,311]},{"name":"FsRtlNotifyCleanupAll","features":[306,309,311]},{"name":"FsRtlNotifyFilterChangeDirectory","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlNotifyFilterReportChange","features":[306,309,311]},{"name":"FsRtlNotifyFullChangeDirectory","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlNotifyFullReportChange","features":[306,309,311]},{"name":"FsRtlNotifyInitializeSync","features":[306,309]},{"name":"FsRtlNotifyUninitializeSync","features":[306,309]},{"name":"FsRtlNotifyVolumeEvent","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlNotifyVolumeEventEx","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlNumberOfRunsInBaseMcb","features":[309]},{"name":"FsRtlNumberOfRunsInLargeMcb","features":[306,309,305,311]},{"name":"FsRtlNumberOfRunsInMcb","features":[306,309,305,311]},{"name":"FsRtlOplockBreakH","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlOplockBreakH2","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlOplockBreakToNone","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlOplockBreakToNoneEx","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlOplockFsctrl","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlOplockFsctrlEx","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlOplockGetAnyBreakOwnerProcess","features":[306,309]},{"name":"FsRtlOplockIsFastIoPossible","features":[309,305]},{"name":"FsRtlOplockIsSharedRequest","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlOplockKeysEqual","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlPostPagingFileStackOverflow","features":[306,309,305,311]},{"name":"FsRtlPostStackOverflow","features":[306,309,305,311]},{"name":"FsRtlPrepareMdlWriteDev","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlPrepareMdlWriteEx","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlPrepareToReuseEcp","features":[309]},{"name":"FsRtlPrivateLock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlProcessFileLock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlQueryCachedVdl","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlQueryInformationFile","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlQueryKernelEaFile","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlQueryMaximumVirtualDiskNestingLevel","features":[309]},{"name":"FsRtlRegisterFileSystemFilterCallbacks","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlRegisterUncProvider","features":[309,305]},{"name":"FsRtlRegisterUncProviderEx","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlRegisterUncProviderEx2","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlReleaseFile","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlRemoveBaseMcbEntry","features":[309,305]},{"name":"FsRtlRemoveDotsFromPath","features":[309,305]},{"name":"FsRtlRemoveExtraCreateParameter","features":[306,309,305]},{"name":"FsRtlRemoveLargeMcbEntry","features":[306,309,305,311]},{"name":"FsRtlRemoveMcbEntry","features":[306,309,305,311]},{"name":"FsRtlRemovePerFileContext","features":[306,309,311]},{"name":"FsRtlRemovePerFileObjectContext","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlRemovePerStreamContext","features":[306,309,305,311]},{"name":"FsRtlResetBaseMcb","features":[309]},{"name":"FsRtlResetLargeMcb","features":[306,309,305,311]},{"name":"FsRtlSetDriverBacking","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlSetEcpListIntoIrp","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlSetKernelEaFile","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlSplitBaseMcb","features":[309,305]},{"name":"FsRtlSplitLargeMcb","features":[306,309,305,311]},{"name":"FsRtlTeardownPerFileContexts","features":[309]},{"name":"FsRtlTeardownPerStreamContexts","features":[306,309,305,311]},{"name":"FsRtlTruncateBaseMcb","features":[309]},{"name":"FsRtlTruncateLargeMcb","features":[306,309,305,311]},{"name":"FsRtlTruncateMcb","features":[306,309,305,311]},{"name":"FsRtlUninitializeBaseMcb","features":[309]},{"name":"FsRtlUninitializeFileLock","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlUninitializeLargeMcb","features":[306,309,305,311]},{"name":"FsRtlUninitializeMcb","features":[306,309,305,311]},{"name":"FsRtlUninitializeOplock","features":[309]},{"name":"FsRtlUpdateDiskCounters","features":[309]},{"name":"FsRtlUpperOplockFsctrl","features":[306,309,307,305,308,310,311,312]},{"name":"FsRtlValidateReparsePointBuffer","features":[309,305]},{"name":"FsRtlVolumeDeviceToCorrelationId","features":[306,309,307,305,308,310,311,312]},{"name":"GCR_ALLOW_LM","features":[309]},{"name":"GCR_ALLOW_NO_TARGET","features":[309]},{"name":"GCR_ALLOW_NTLM","features":[309]},{"name":"GCR_MACHINE_CREDENTIAL","features":[309]},{"name":"GCR_NTLM3_PARMS","features":[309]},{"name":"GCR_TARGET_INFO","features":[309]},{"name":"GCR_USE_OEM_SET","features":[309]},{"name":"GCR_USE_OWF_PASSWORD","features":[309]},{"name":"GCR_VSM_PROTECTED_PASSWORD","features":[309]},{"name":"GENERATE_CLIENT_CHALLENGE","features":[309]},{"name":"GENERATE_NAME_CONTEXT","features":[309,305]},{"name":"GHOSTED_FILE_EXTENT","features":[309]},{"name":"GUID_ECP_ATOMIC_CREATE","features":[309]},{"name":"GUID_ECP_CLOUDFILES_ATTRIBUTION","features":[309]},{"name":"GUID_ECP_CREATE_REDIRECTION","features":[309]},{"name":"GUID_ECP_CSV_DOWN_LEVEL_OPEN","features":[309]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION","features":[309]},{"name":"GUID_ECP_CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[309]},{"name":"GUID_ECP_CSV_SET_HANDLE_PROPERTIES","features":[309]},{"name":"GUID_ECP_DUAL_OPLOCK_KEY","features":[309]},{"name":"GUID_ECP_IO_DEVICE_HINT","features":[309]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE","features":[309]},{"name":"GUID_ECP_NETWORK_APP_INSTANCE_VERSION","features":[309]},{"name":"GUID_ECP_NETWORK_OPEN_CONTEXT","features":[309]},{"name":"GUID_ECP_NFS_OPEN","features":[309]},{"name":"GUID_ECP_OPEN_PARAMETERS","features":[309]},{"name":"GUID_ECP_OPLOCK_KEY","features":[309]},{"name":"GUID_ECP_PREFETCH_OPEN","features":[309]},{"name":"GUID_ECP_QUERY_ON_CREATE","features":[309]},{"name":"GUID_ECP_RKF_BYPASS","features":[309]},{"name":"GUID_ECP_SRV_OPEN","features":[309]},{"name":"GetSecurityUserInfo","features":[309,305,326]},{"name":"GreaterThan","features":[309]},{"name":"HEAP_CLASS_0","features":[309]},{"name":"HEAP_CLASS_1","features":[309]},{"name":"HEAP_CLASS_2","features":[309]},{"name":"HEAP_CLASS_3","features":[309]},{"name":"HEAP_CLASS_4","features":[309]},{"name":"HEAP_CLASS_5","features":[309]},{"name":"HEAP_CLASS_6","features":[309]},{"name":"HEAP_CLASS_7","features":[309]},{"name":"HEAP_CLASS_8","features":[309]},{"name":"HEAP_CLASS_MASK","features":[309]},{"name":"HEAP_CREATE_ALIGN_16","features":[309]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[309]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[309]},{"name":"HEAP_CREATE_HARDENED","features":[309]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[309]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[309]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[309]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[309]},{"name":"HEAP_GLOBAL_TAG","features":[309]},{"name":"HEAP_GROWABLE","features":[309]},{"name":"HEAP_MAXIMUM_TAG","features":[309]},{"name":"HEAP_MEMORY_INFO_CLASS","features":[309]},{"name":"HEAP_NO_SERIALIZE","features":[309]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[309]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[309]},{"name":"HEAP_SETTABLE_USER_FLAG1","features":[309]},{"name":"HEAP_SETTABLE_USER_FLAG2","features":[309]},{"name":"HEAP_SETTABLE_USER_FLAG3","features":[309]},{"name":"HEAP_SETTABLE_USER_FLAGS","features":[309]},{"name":"HEAP_SETTABLE_USER_VALUE","features":[309]},{"name":"HEAP_TAG_SHIFT","features":[309]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[309]},{"name":"HEAP_ZERO_MEMORY","features":[309]},{"name":"HeapMemoryBasicInformation","features":[309]},{"name":"INVALID_PROCESSOR_INDEX","features":[309]},{"name":"IOCTL_LMR_ARE_FILE_OBJECTS_ON_SAME_SERVER","features":[309]},{"name":"IOCTL_REDIR_QUERY_PATH","features":[309]},{"name":"IOCTL_REDIR_QUERY_PATH_EX","features":[309]},{"name":"IOCTL_VOLSNAP_FLUSH_AND_HOLD_WRITES","features":[309]},{"name":"IO_CD_ROM_INCREMENT","features":[309]},{"name":"IO_CREATE_STREAM_FILE_LITE","features":[309]},{"name":"IO_CREATE_STREAM_FILE_OPTIONS","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CREATE_STREAM_FILE_RAISE_ON_ERROR","features":[309]},{"name":"IO_DEVICE_HINT_ECP_CONTEXT","features":[306,309,307,305,308,310,311,312]},{"name":"IO_DISK_INCREMENT","features":[309]},{"name":"IO_FILE_OBJECT_NON_PAGED_POOL_CHARGE","features":[309]},{"name":"IO_FILE_OBJECT_PAGED_POOL_CHARGE","features":[309]},{"name":"IO_IGNORE_READONLY_ATTRIBUTE","features":[309]},{"name":"IO_MAILSLOT_INCREMENT","features":[309]},{"name":"IO_MM_PAGING_FILE","features":[309]},{"name":"IO_NAMED_PIPE_INCREMENT","features":[309]},{"name":"IO_NETWORK_INCREMENT","features":[309]},{"name":"IO_NO_INCREMENT","features":[309]},{"name":"IO_OPEN_PAGING_FILE","features":[309]},{"name":"IO_OPEN_TARGET_DIRECTORY","features":[309]},{"name":"IO_PRIORITY_INFO","features":[306,309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_0","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_1","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_2","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_3","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_4","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_5","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_6","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_7","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_8","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_9","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_A","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_B","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_C","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_D","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_E","features":[309]},{"name":"IO_REPARSE_TAG_ACRONIS_HSM_F","features":[309]},{"name":"IO_REPARSE_TAG_ACTIVISION_HSM","features":[309]},{"name":"IO_REPARSE_TAG_ADA_HSM","features":[309]},{"name":"IO_REPARSE_TAG_ADOBE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_ALERTBOOT","features":[309]},{"name":"IO_REPARSE_TAG_ALTIRIS_HSM","features":[309]},{"name":"IO_REPARSE_TAG_APPXSTRM","features":[309]},{"name":"IO_REPARSE_TAG_ARCO_BACKUP","features":[309]},{"name":"IO_REPARSE_TAG_ARKIVIO","features":[309]},{"name":"IO_REPARSE_TAG_AURISTOR_FS","features":[309]},{"name":"IO_REPARSE_TAG_AUTN_HSM","features":[309]},{"name":"IO_REPARSE_TAG_BRIDGEHEAD_HSM","features":[309]},{"name":"IO_REPARSE_TAG_C2CSYSTEMS_HSM","features":[309]},{"name":"IO_REPARSE_TAG_CARINGO_HSM","features":[309]},{"name":"IO_REPARSE_TAG_CARROLL_HSM","features":[309]},{"name":"IO_REPARSE_TAG_CITRIX_PM","features":[309]},{"name":"IO_REPARSE_TAG_COMMVAULT","features":[309]},{"name":"IO_REPARSE_TAG_COMMVAULT_HSM","features":[309]},{"name":"IO_REPARSE_TAG_COMTRADE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_CTERA_HSM","features":[309]},{"name":"IO_REPARSE_TAG_DATAFIRST_HSM","features":[309]},{"name":"IO_REPARSE_TAG_DATAGLOBAL_HSM","features":[309]},{"name":"IO_REPARSE_TAG_DATASTOR_SIS","features":[309]},{"name":"IO_REPARSE_TAG_DFM","features":[309]},{"name":"IO_REPARSE_TAG_DOR_HSM","features":[309]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_DOUBLE_TAKE_SIS","features":[309]},{"name":"IO_REPARSE_TAG_DRIVE_EXTENDER","features":[309]},{"name":"IO_REPARSE_TAG_DROPBOX_HSM","features":[309]},{"name":"IO_REPARSE_TAG_EASEFILTER_HSM","features":[309]},{"name":"IO_REPARSE_TAG_EASEVAULT_HSM","features":[309]},{"name":"IO_REPARSE_TAG_EDSI_HSM","features":[309]},{"name":"IO_REPARSE_TAG_ELTAN_HSM","features":[309]},{"name":"IO_REPARSE_TAG_EMC_HSM","features":[309]},{"name":"IO_REPARSE_TAG_ENIGMA_HSM","features":[309]},{"name":"IO_REPARSE_TAG_FILTER_MANAGER","features":[309]},{"name":"IO_REPARSE_TAG_GLOBAL360_HSM","features":[309]},{"name":"IO_REPARSE_TAG_GOOGLE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_GRAU_DATASTORAGE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_HDS_HCP_HSM","features":[309]},{"name":"IO_REPARSE_TAG_HDS_HSM","features":[309]},{"name":"IO_REPARSE_TAG_HERMES_HSM","features":[309]},{"name":"IO_REPARSE_TAG_HP_BACKUP","features":[309]},{"name":"IO_REPARSE_TAG_HP_DATA_PROTECT","features":[309]},{"name":"IO_REPARSE_TAG_HP_HSM","features":[309]},{"name":"IO_REPARSE_TAG_HSAG_HSM","features":[309]},{"name":"IO_REPARSE_TAG_HUBSTOR_HSM","features":[309]},{"name":"IO_REPARSE_TAG_IFSTEST_CONGRUENT","features":[309]},{"name":"IO_REPARSE_TAG_IIS_CACHE","features":[309]},{"name":"IO_REPARSE_TAG_IMANAGE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_INTERCOPE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_ITSTATION","features":[309]},{"name":"IO_REPARSE_TAG_KOM_NETWORKS_HSM","features":[309]},{"name":"IO_REPARSE_TAG_LX_BLK","features":[309]},{"name":"IO_REPARSE_TAG_LX_CHR","features":[309]},{"name":"IO_REPARSE_TAG_LX_FIFO","features":[309]},{"name":"IO_REPARSE_TAG_LX_SYMLINK","features":[309]},{"name":"IO_REPARSE_TAG_MAGINATICS_RDR","features":[309]},{"name":"IO_REPARSE_TAG_MAXISCALE_HSM","features":[309]},{"name":"IO_REPARSE_TAG_MEMORY_TECH_HSM","features":[309]},{"name":"IO_REPARSE_TAG_MIMOSA_HSM","features":[309]},{"name":"IO_REPARSE_TAG_MOONWALK_HSM","features":[309]},{"name":"IO_REPARSE_TAG_MTALOS","features":[309]},{"name":"IO_REPARSE_TAG_NEUSHIELD","features":[309]},{"name":"IO_REPARSE_TAG_NEXSAN_HSM","features":[309]},{"name":"IO_REPARSE_TAG_NIPPON_HSM","features":[309]},{"name":"IO_REPARSE_TAG_NVIDIA_UNIONFS","features":[309]},{"name":"IO_REPARSE_TAG_OPENAFS_DFS","features":[309]},{"name":"IO_REPARSE_TAG_OSR_SAMPLE","features":[309]},{"name":"IO_REPARSE_TAG_OVERTONE","features":[309]},{"name":"IO_REPARSE_TAG_POINTSOFT_HSM","features":[309]},{"name":"IO_REPARSE_TAG_QI_TECH_HSM","features":[309]},{"name":"IO_REPARSE_TAG_QUADDRA_HSM","features":[309]},{"name":"IO_REPARSE_TAG_QUEST_HSM","features":[309]},{"name":"IO_REPARSE_TAG_REDSTOR_HSM","features":[309]},{"name":"IO_REPARSE_TAG_RIVERBED_HSM","features":[309]},{"name":"IO_REPARSE_TAG_SER_HSM","features":[309]},{"name":"IO_REPARSE_TAG_SHX_BACKUP","features":[309]},{"name":"IO_REPARSE_TAG_SOLUTIONSOFT","features":[309]},{"name":"IO_REPARSE_TAG_SONY_HSM","features":[309]},{"name":"IO_REPARSE_TAG_SPHARSOFT","features":[309]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM","features":[309]},{"name":"IO_REPARSE_TAG_SYMANTEC_HSM2","features":[309]},{"name":"IO_REPARSE_TAG_TSINGHUA_UNIVERSITY_RESEARCH","features":[309]},{"name":"IO_REPARSE_TAG_UTIXO_HSM","features":[309]},{"name":"IO_REPARSE_TAG_VALID_VALUES","features":[309]},{"name":"IO_REPARSE_TAG_VMWARE_PM","features":[309]},{"name":"IO_REPARSE_TAG_WATERFORD","features":[309]},{"name":"IO_REPARSE_TAG_WISDATA_HSM","features":[309]},{"name":"IO_REPARSE_TAG_ZLTI_HSM","features":[309]},{"name":"IO_STOP_ON_SYMLINK","features":[309]},{"name":"IO_STOP_ON_SYMLINK_FILTER_ECP_v0","features":[309]},{"name":"IoAcquireVpbSpinLock","features":[309]},{"name":"IoApplyPriorityInfoThread","features":[306,309,305]},{"name":"IoCheckDesiredAccess","features":[309,305]},{"name":"IoCheckEaBufferValidity","features":[309,305]},{"name":"IoCheckFunctionAccess","features":[309,305]},{"name":"IoCheckQuerySetFileInformation","features":[309,305]},{"name":"IoCheckQuerySetVolumeInformation","features":[309,305]},{"name":"IoCheckQuotaBufferValidity","features":[309,305,308]},{"name":"IoClearFsTrackOffsetState","features":[306,309,307,305,308,310,311,312]},{"name":"IoCreateStreamFileObject","features":[306,309,307,305,308,310,311,312]},{"name":"IoCreateStreamFileObjectEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoCreateStreamFileObjectEx2","features":[306,309,307,305,308,310,311,312]},{"name":"IoCreateStreamFileObjectLite","features":[306,309,307,305,308,310,311,312]},{"name":"IoEnumerateDeviceObjectList","features":[306,309,307,305,308,310,311,312]},{"name":"IoEnumerateRegisteredFiltersList","features":[306,309,307,305,308,310,311,312]},{"name":"IoFastQueryNetworkAttributes","features":[306,309,305,310]},{"name":"IoGetAttachedDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetBaseFileSystemDeviceObject","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDeviceAttachmentBaseRef","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDeviceToVerify","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDiskDeviceObject","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetFsTrackOffsetState","features":[306,309,307,305,308,310,325,311,312]},{"name":"IoGetLowerDeviceObject","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetOplockKeyContext","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetOplockKeyContextEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetRequestorProcess","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetRequestorProcessId","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetRequestorSessionId","features":[306,309,307,305,308,310,311,312]},{"name":"IoIrpHasFsTrackOffsetExtensionType","features":[306,309,307,305,308,310,311,312]},{"name":"IoIsOperationSynchronous","features":[306,309,307,305,308,310,311,312]},{"name":"IoIsSystemThread","features":[306,309,305]},{"name":"IoIsValidNameGraftingBuffer","features":[306,309,307,305,308,310,311,312]},{"name":"IoPageRead","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueryFileDosDeviceName","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueryFileInformation","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueryVolumeInformation","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueueThreadIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterFileSystem","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterFsRegistrationChange","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterFsRegistrationChangeMountAware","features":[306,309,307,305,308,310,311,312]},{"name":"IoReleaseVpbSpinLock","features":[309]},{"name":"IoReplaceFileObjectName","features":[306,309,307,305,308,310,311,312]},{"name":"IoRequestDeviceRemovalForReset","features":[306,309,307,305,308,310,311,312]},{"name":"IoRetrievePriorityInfo","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetDeviceToVerify","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetFsTrackOffsetState","features":[306,309,307,305,308,310,325,311,312]},{"name":"IoSetInformation","features":[306,309,307,305,308,310,311,312]},{"name":"IoSynchronousPageWrite","features":[306,309,307,305,308,310,311,312]},{"name":"IoThreadToProcess","features":[306,309]},{"name":"IoUnregisterFileSystem","features":[306,309,307,305,308,310,311,312]},{"name":"IoUnregisterFsRegistrationChange","features":[306,309,307,305,308,310,311,312]},{"name":"IoVerifyVolume","features":[306,309,307,305,308,310,311,312]},{"name":"KAPC_STATE","features":[309,305,311]},{"name":"KeAcquireQueuedSpinLock","features":[306,309]},{"name":"KeAcquireSpinLockRaiseToSynch","features":[309]},{"name":"KeAttachProcess","features":[306,309]},{"name":"KeDetachProcess","features":[309]},{"name":"KeInitializeMutant","features":[306,309,305,311]},{"name":"KeInitializeQueue","features":[306,309,305,311]},{"name":"KeInsertHeadQueue","features":[306,309,305,311]},{"name":"KeInsertQueue","features":[306,309,305,311]},{"name":"KeReadStateMutant","features":[306,309,305,311]},{"name":"KeReadStateQueue","features":[306,309,305,311]},{"name":"KeReleaseMutant","features":[306,309,305,311]},{"name":"KeReleaseQueuedSpinLock","features":[306,309]},{"name":"KeRemoveQueue","features":[306,309,305,311]},{"name":"KeRemoveQueueEx","features":[306,309,305,311]},{"name":"KeRundownQueue","features":[306,309,305,311]},{"name":"KeSetIdealProcessorThread","features":[306,309]},{"name":"KeSetKernelStackSwapEnable","features":[309,305]},{"name":"KeStackAttachProcess","features":[306,309,305,311]},{"name":"KeTryToAcquireQueuedSpinLock","features":[306,309]},{"name":"KeUnstackDetachProcess","features":[309,305,311]},{"name":"KnownFolderDesktop","features":[309]},{"name":"KnownFolderDocuments","features":[309]},{"name":"KnownFolderDownloads","features":[309]},{"name":"KnownFolderMax","features":[309]},{"name":"KnownFolderMusic","features":[309]},{"name":"KnownFolderNone","features":[309]},{"name":"KnownFolderOther","features":[309]},{"name":"KnownFolderPictures","features":[309]},{"name":"KnownFolderVideos","features":[309]},{"name":"LARGE_MCB","features":[306,309,305,311]},{"name":"LCN_CHECKSUM_VALID","features":[309]},{"name":"LCN_WEAK_REFERENCE_BUFFER","features":[309]},{"name":"LCN_WEAK_REFERENCE_CREATE_INPUT_BUFFER","features":[309]},{"name":"LCN_WEAK_REFERENCE_VALID","features":[309]},{"name":"LINK_TRACKING_INFORMATION","features":[309]},{"name":"LINK_TRACKING_INFORMATION_TYPE","features":[309]},{"name":"LX_FILE_CASE_SENSITIVE_DIR","features":[309]},{"name":"LX_FILE_METADATA_DEVICE_ID_EA_NAME","features":[309]},{"name":"LX_FILE_METADATA_GID_EA_NAME","features":[309]},{"name":"LX_FILE_METADATA_HAS_DEVICE_ID","features":[309]},{"name":"LX_FILE_METADATA_HAS_GID","features":[309]},{"name":"LX_FILE_METADATA_HAS_MODE","features":[309]},{"name":"LX_FILE_METADATA_HAS_UID","features":[309]},{"name":"LX_FILE_METADATA_MODE_EA_NAME","features":[309]},{"name":"LX_FILE_METADATA_UID_EA_NAME","features":[309]},{"name":"LessThan","features":[309]},{"name":"MAP_DISABLE_PAGEFAULT_CLUSTERING","features":[309]},{"name":"MAP_HIGH_PRIORITY","features":[309]},{"name":"MAP_NO_READ","features":[309]},{"name":"MAP_WAIT","features":[309]},{"name":"MAXIMUM_LEADBYTES","features":[309]},{"name":"MAX_UNICODE_STACK_BUFFER_LENGTH","features":[309]},{"name":"MCB","features":[306,309,305,311]},{"name":"MCB_FLAG_RAISE_ON_ALLOCATION_FAILURE","features":[309]},{"name":"MEMORY_INFORMATION_CLASS","features":[309]},{"name":"MEMORY_RANGE_ENTRY","features":[309]},{"name":"MFT_ENUM_DATA","features":[309]},{"name":"MMFLUSH_TYPE","features":[309]},{"name":"MM_FORCE_CLOSED_DATA","features":[309]},{"name":"MM_FORCE_CLOSED_IMAGE","features":[309]},{"name":"MM_FORCE_CLOSED_LATER_OK","features":[309]},{"name":"MM_IS_FILE_SECTION_ACTIVE_DATA","features":[309]},{"name":"MM_IS_FILE_SECTION_ACTIVE_IMAGE","features":[309]},{"name":"MM_IS_FILE_SECTION_ACTIVE_USER","features":[309]},{"name":"MM_PREFETCH_FLAGS","features":[309]},{"name":"MSV1_0_AVID","features":[309]},{"name":"MSV1_0_ENUMUSERS_REQUEST","features":[309,326]},{"name":"MSV1_0_ENUMUSERS_RESPONSE","features":[309,305,326]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST","features":[309,305,326]},{"name":"MSV1_0_GETCHALLENRESP_REQUEST_V1","features":[309,305,326]},{"name":"MSV1_0_GETCHALLENRESP_RESPONSE","features":[309,305,326,311]},{"name":"MSV1_0_GETUSERINFO_REQUEST","features":[309,305,326]},{"name":"MSV1_0_GETUSERINFO_RESPONSE","features":[309,305,326]},{"name":"MSV1_0_LM20_CHALLENGE_REQUEST","features":[309,326]},{"name":"MSV1_0_LM20_CHALLENGE_RESPONSE","features":[309,326]},{"name":"MakeSignature","features":[309]},{"name":"MapSecurityError","features":[309,305]},{"name":"MemoryBasicInformation","features":[309]},{"name":"MemoryType64KPage","features":[309]},{"name":"MemoryTypeCustom","features":[309]},{"name":"MemoryTypeHugePage","features":[309]},{"name":"MemoryTypeLargePage","features":[309]},{"name":"MemoryTypeMax","features":[309]},{"name":"MemoryTypeNonPaged","features":[309]},{"name":"MemoryTypePaged","features":[309]},{"name":"MmCanFileBeTruncated","features":[306,309,305]},{"name":"MmDoesFileHaveUserWritableReferences","features":[306,309]},{"name":"MmFlushForDelete","features":[309]},{"name":"MmFlushForWrite","features":[309]},{"name":"MmFlushImageSection","features":[306,309,305]},{"name":"MmForceSectionClosed","features":[306,309,305]},{"name":"MmForceSectionClosedEx","features":[306,309,305]},{"name":"MmGetMaximumFileSectionSize","features":[309]},{"name":"MmIsFileSectionActive","features":[306,309,305]},{"name":"MmIsRecursiveIoFault","features":[309,305]},{"name":"MmMdlPagesAreZero","features":[306,309]},{"name":"MmPrefetchPages","features":[306,309,307,305,308,324,310,311,312]},{"name":"MmSetAddressRangeModified","features":[309,305]},{"name":"MsvAvChannelBindings","features":[309]},{"name":"MsvAvDnsComputerName","features":[309]},{"name":"MsvAvDnsDomainName","features":[309]},{"name":"MsvAvDnsTreeName","features":[309]},{"name":"MsvAvEOL","features":[309]},{"name":"MsvAvFlags","features":[309]},{"name":"MsvAvNbComputerName","features":[309]},{"name":"MsvAvNbDomainName","features":[309]},{"name":"MsvAvRestrictions","features":[309]},{"name":"MsvAvTargetName","features":[309]},{"name":"MsvAvTimestamp","features":[309]},{"name":"NETWORK_APP_INSTANCE_ECP_CONTEXT","features":[309]},{"name":"NETWORK_APP_INSTANCE_VERSION_ECP_CONTEXT","features":[309]},{"name":"NETWORK_OPEN_ECP_CONTEXT","features":[309]},{"name":"NETWORK_OPEN_ECP_CONTEXT_V0","features":[309]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_COLLAPSING","features":[309]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_HANDLE_DURABILITY","features":[309]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_DISABLE_OPLOCKS","features":[309]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_BUFFERED_SYNCHRONOUS_IO_HACK","features":[309]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_FORCE_MAX_EOF_HACK","features":[309]},{"name":"NETWORK_OPEN_ECP_IN_FLAG_REQ_MUTUAL_AUTH","features":[309]},{"name":"NETWORK_OPEN_ECP_OUT_FLAG_RET_MUTUAL_AUTH","features":[309]},{"name":"NETWORK_OPEN_INTEGRITY_QUALIFIER","features":[309]},{"name":"NETWORK_OPEN_LOCATION_QUALIFIER","features":[309]},{"name":"NFS_OPEN_ECP_CONTEXT","features":[309,305,318]},{"name":"NLSTABLEINFO","features":[309]},{"name":"NO_8DOT3_NAME_PRESENT","features":[309]},{"name":"NTCREATEFILE_CREATE_DISPOSITION","features":[309]},{"name":"NTCREATEFILE_CREATE_OPTIONS","features":[309]},{"name":"NetworkOpenIntegrityAny","features":[309]},{"name":"NetworkOpenIntegrityEncrypted","features":[309]},{"name":"NetworkOpenIntegrityMaximum","features":[309]},{"name":"NetworkOpenIntegrityNone","features":[309]},{"name":"NetworkOpenIntegritySigned","features":[309]},{"name":"NetworkOpenLocationAny","features":[309]},{"name":"NetworkOpenLocationLoopback","features":[309]},{"name":"NetworkOpenLocationRemote","features":[309]},{"name":"NotifyTypeCreate","features":[309]},{"name":"NotifyTypeRetired","features":[309]},{"name":"NtAccessCheckAndAuditAlarm","features":[309,305,308]},{"name":"NtAccessCheckByTypeAndAuditAlarm","features":[309,305,308]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarm","features":[309,305,308]},{"name":"NtAccessCheckByTypeResultListAndAuditAlarmByHandle","features":[309,305,308]},{"name":"NtAdjustGroupsToken","features":[309,305,308]},{"name":"NtAdjustPrivilegesToken","features":[309,305,308]},{"name":"NtAllocateVirtualMemory","features":[309,305]},{"name":"NtAllocateVirtualMemoryEx","features":[309,305,323]},{"name":"NtCancelIoFileEx","features":[309,305,310]},{"name":"NtCloseObjectAuditAlarm","features":[309,305]},{"name":"NtCreateDirectoryObject","features":[306,309,305]},{"name":"NtCreateEvent","features":[306,309,305,311]},{"name":"NtCreateFile","features":[306,309,305,324,310]},{"name":"NtCreateSection","features":[306,309,305]},{"name":"NtCreateSectionEx","features":[306,309,305,323]},{"name":"NtDeleteFile","features":[306,309,305]},{"name":"NtDeleteObjectAuditAlarm","features":[309,305]},{"name":"NtDuplicateObject","features":[309,305]},{"name":"NtDuplicateToken","features":[306,309,305,308]},{"name":"NtFilterToken","features":[309,305,308]},{"name":"NtFlushBuffersFile","features":[309,305,310]},{"name":"NtFlushBuffersFileEx","features":[309,305,310]},{"name":"NtFlushVirtualMemory","features":[309,305,310]},{"name":"NtFreeVirtualMemory","features":[309,305]},{"name":"NtFsControlFile","features":[309,305,310]},{"name":"NtImpersonateAnonymousToken","features":[309,305]},{"name":"NtLockFile","features":[309,305,310]},{"name":"NtNotifyChangeKey","features":[309,305,310]},{"name":"NtOpenDirectoryObject","features":[306,309,305]},{"name":"NtOpenFile","features":[306,309,305,310]},{"name":"NtOpenObjectAuditAlarm","features":[309,305,308]},{"name":"NtOpenProcessToken","features":[309,305]},{"name":"NtOpenProcessTokenEx","features":[309,305]},{"name":"NtOpenSymbolicLinkObject","features":[306,309,305]},{"name":"NtOpenThreadToken","features":[309,305]},{"name":"NtOpenThreadTokenEx","features":[309,305]},{"name":"NtPrivilegeCheck","features":[309,305,308]},{"name":"NtPrivilegeObjectAuditAlarm","features":[309,305,308]},{"name":"NtPrivilegedServiceAuditAlarm","features":[309,305,308]},{"name":"NtQueryDirectoryFile","features":[309,305,310]},{"name":"NtQueryDirectoryFileEx","features":[309,305,310]},{"name":"NtQueryDirectoryObject","features":[309,305]},{"name":"NtQueryEaFile","features":[309,305,310]},{"name":"NtQueryFullAttributesFile","features":[306,309,305]},{"name":"NtQueryInformationByName","features":[306,309,305,310]},{"name":"NtQueryInformationFile","features":[309,305,310]},{"name":"NtQueryInformationToken","features":[309,305,308]},{"name":"NtQueryQuotaInformationFile","features":[309,305,308,310]},{"name":"NtQuerySecurityObject","features":[309,305,308]},{"name":"NtQuerySymbolicLinkObject","features":[309,305]},{"name":"NtQueryVirtualMemory","features":[309,305]},{"name":"NtQueryVolumeInformationFile","features":[309,305,310]},{"name":"NtReadFile","features":[309,305,310]},{"name":"NtSetEaFile","features":[309,305,310]},{"name":"NtSetEvent","features":[309,305]},{"name":"NtSetInformationFile","features":[309,305,310]},{"name":"NtSetInformationToken","features":[309,305,308]},{"name":"NtSetInformationVirtualMemory","features":[309,305]},{"name":"NtSetQuotaInformationFile","features":[309,305,310]},{"name":"NtSetSecurityObject","features":[309,305,308]},{"name":"NtSetVolumeInformationFile","features":[309,305,310]},{"name":"NtUnlockFile","features":[309,305,310]},{"name":"NtWriteFile","features":[309,305,310]},{"name":"NtfsLinkTrackingInformation","features":[309]},{"name":"OPEN_REPARSE_LIST","features":[309,311]},{"name":"OPEN_REPARSE_LIST_ENTRY","features":[309,311]},{"name":"OPEN_REPARSE_POINT_OVERRIDE_CREATE_OPTION","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_ALWAYS","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_EXISTS","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_CHILD_NOT_EXISTS","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_FINAL_COMPONENT_ALWAYS","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_FINAL_COMPONENT_ALWAYS","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_DIRECTORY_NON_FINAL_COMPONENT_ALWAYS","features":[309]},{"name":"OPEN_REPARSE_POINT_REPARSE_IF_NON_FINAL_COMPONENT","features":[309]},{"name":"OPEN_REPARSE_POINT_RETURN_REPARSE_DATA_BUFFER","features":[309]},{"name":"OPEN_REPARSE_POINT_TAG_ENCOUNTERED","features":[309]},{"name":"OPEN_REPARSE_POINT_VERSION_EX","features":[309]},{"name":"OPLOCK_FLAG_BACK_OUT_ATOMIC_OPLOCK","features":[309]},{"name":"OPLOCK_FLAG_BREAKING_FOR_SHARING_VIOLATION","features":[309]},{"name":"OPLOCK_FLAG_CLOSING_DELETE_ON_CLOSE","features":[309]},{"name":"OPLOCK_FLAG_COMPLETE_IF_OPLOCKED","features":[309]},{"name":"OPLOCK_FLAG_IGNORE_OPLOCK_KEYS","features":[309]},{"name":"OPLOCK_FLAG_OPLOCK_KEY_CHECK_ONLY","features":[309]},{"name":"OPLOCK_FLAG_PARENT_OBJECT","features":[309]},{"name":"OPLOCK_FLAG_REMOVING_FILE_OR_LINK","features":[309]},{"name":"OPLOCK_FSCTRL_FLAG_ALL_KEYS_MATCH","features":[309]},{"name":"OPLOCK_KEY_CONTEXT","features":[309]},{"name":"OPLOCK_KEY_ECP_CONTEXT","features":[309]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_INTERIM_TIMEOUT","features":[309]},{"name":"OPLOCK_NOTIFY_BREAK_WAIT_TERMINATED","features":[309]},{"name":"OPLOCK_NOTIFY_PARAMS","features":[306,309,307,305,308,310,311,312]},{"name":"OPLOCK_NOTIFY_REASON","features":[309]},{"name":"OPLOCK_UPPER_FLAG_CHECK_NO_BREAK","features":[309]},{"name":"OPLOCK_UPPER_FLAG_NOTIFY_REFRESH_READ","features":[309]},{"name":"ObInsertObject","features":[306,309,307,305,308]},{"name":"ObIsKernelHandle","features":[309,305]},{"name":"ObMakeTemporaryObject","features":[309]},{"name":"ObOpenObjectByPointer","features":[306,309,307,305,308]},{"name":"ObOpenObjectByPointerWithTag","features":[306,309,307,305,308]},{"name":"ObQueryNameString","features":[306,309,305]},{"name":"ObQueryObjectAuditingByHandle","features":[309,305]},{"name":"PACQUIRE_FOR_LAZY_WRITE","features":[309,305]},{"name":"PACQUIRE_FOR_LAZY_WRITE_EX","features":[309,305]},{"name":"PACQUIRE_FOR_READ_AHEAD","features":[309,305]},{"name":"PALLOCATE_VIRTUAL_MEMORY_EX_CALLBACK","features":[309,305]},{"name":"PASYNC_READ_COMPLETION_CALLBACK","features":[309,305]},{"name":"PCC_POST_DEFERRED_WRITE","features":[309]},{"name":"PCHECK_FOR_TRAVERSE_ACCESS","features":[306,309,305,308]},{"name":"PCOMPLETE_LOCK_IRP_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"PDIRTY_PAGE_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"PFILTER_REPORT_CHANGE","features":[309,305]},{"name":"PFLUSH_TO_LSN","features":[309]},{"name":"PFN_FSRTLTEARDOWNPERSTREAMCONTEXTS","features":[306,309,305,311]},{"name":"PFREE_VIRTUAL_MEMORY_EX_CALLBACK","features":[309,305]},{"name":"PFSRTL_EXTRA_CREATE_PARAMETER_CLEANUP_CALLBACK","features":[309]},{"name":"PFSRTL_STACK_OVERFLOW_ROUTINE","features":[306,309,305,311]},{"name":"PFS_FILTER_CALLBACK","features":[306,309,307,305,308,310,311,312]},{"name":"PFS_FILTER_COMPLETION_CALLBACK","features":[306,309,307,305,308,310,311,312]},{"name":"PHYSICAL_EXTENTS_DESCRIPTOR","features":[309]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR","features":[309]},{"name":"PHYSICAL_MEMORY_RUN","features":[309]},{"name":"PIN_CALLER_TRACKS_DIRTY_DATA","features":[309]},{"name":"PIN_EXCLUSIVE","features":[309]},{"name":"PIN_HIGH_PRIORITY","features":[309]},{"name":"PIN_IF_BCB","features":[309]},{"name":"PIN_NO_READ","features":[309]},{"name":"PIN_VERIFY_REQUIRED","features":[309]},{"name":"PIN_WAIT","features":[309]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[309]},{"name":"POPLOCK_FS_PREPOST_IRP","features":[306,309,307,305,308,310,311,312]},{"name":"POPLOCK_NOTIFY_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"POPLOCK_WAIT_COMPLETE_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"PO_CB_AC_STATUS","features":[309]},{"name":"PO_CB_BUTTON_COLLISION","features":[309]},{"name":"PO_CB_LID_SWITCH_STATE","features":[309]},{"name":"PO_CB_PROCESSOR_POWER_POLICY","features":[309]},{"name":"PO_CB_SYSTEM_POWER_POLICY","features":[309]},{"name":"PO_CB_SYSTEM_STATE_LOCK","features":[309]},{"name":"PQUERY_LOG_USAGE","features":[309]},{"name":"PQUERY_VIRTUAL_MEMORY_CALLBACK","features":[309,305]},{"name":"PREFETCH_OPEN_ECP_CONTEXT","features":[309]},{"name":"PREFIX_TABLE","features":[306,309,311]},{"name":"PREFIX_TABLE_ENTRY","features":[306,309,311]},{"name":"PRELEASE_FROM_LAZY_WRITE","features":[309]},{"name":"PRELEASE_FROM_READ_AHEAD","features":[309]},{"name":"PRTL_ALLOCATE_STRING_ROUTINE","features":[309]},{"name":"PRTL_FREE_STRING_ROUTINE","features":[309]},{"name":"PRTL_HEAP_COMMIT_ROUTINE","features":[309,305]},{"name":"PRTL_REALLOCATE_STRING_ROUTINE","features":[309]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE","features":[309,305]},{"name":"PSE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[309,305]},{"name":"PSMP_MAXIMUM_SYSAPP_CLAIM_VALUES","features":[309]},{"name":"PSMP_MINIMUM_SYSAPP_CLAIM_VALUES","features":[309]},{"name":"PUBLIC_BCB","features":[309]},{"name":"PUNLOCK_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"PURGE_WITH_ACTIVE_VIEWS","features":[309]},{"name":"PfxFindPrefix","features":[306,309,311]},{"name":"PfxInitialize","features":[306,309,311]},{"name":"PfxInsertPrefix","features":[306,309,305,311]},{"name":"PfxRemovePrefix","features":[306,309,311]},{"name":"PoQueueShutdownWorkItem","features":[306,309,305,311]},{"name":"PsAssignImpersonationToken","features":[306,309,305]},{"name":"PsChargePoolQuota","features":[306,309]},{"name":"PsChargeProcessPoolQuota","features":[306,309,305]},{"name":"PsDereferenceImpersonationToken","features":[309]},{"name":"PsDereferencePrimaryToken","features":[309]},{"name":"PsDisableImpersonation","features":[306,309,305,308]},{"name":"PsGetProcessExitTime","features":[309]},{"name":"PsGetThreadProcess","features":[306,309]},{"name":"PsImpersonateClient","features":[306,309,305,308]},{"name":"PsIsDiskCountersEnabled","features":[309,305]},{"name":"PsIsSystemThread","features":[306,309,305]},{"name":"PsIsThreadTerminating","features":[306,309,305]},{"name":"PsLookupProcessByProcessId","features":[306,309,305]},{"name":"PsLookupThreadByThreadId","features":[306,309,305]},{"name":"PsReferenceImpersonationToken","features":[306,309,305,308]},{"name":"PsReferencePrimaryToken","features":[306,309]},{"name":"PsRestoreImpersonation","features":[306,309,305,308]},{"name":"PsReturnPoolQuota","features":[306,309]},{"name":"PsRevertToSelf","features":[309]},{"name":"PsUpdateDiskCounters","features":[306,309]},{"name":"QUERY_BAD_RANGES_INPUT","features":[309,325]},{"name":"QUERY_DIRECT_ACCESS_DATA_EXTENTS","features":[309]},{"name":"QUERY_DIRECT_ACCESS_EXTENTS","features":[309]},{"name":"QUERY_DIRECT_ACCESS_IMAGE_EXTENTS","features":[309]},{"name":"QUERY_ON_CREATE_EA_INFORMATION","features":[309]},{"name":"QUERY_ON_CREATE_ECP_CONTEXT","features":[309]},{"name":"QUERY_ON_CREATE_FILE_LX_INFORMATION","features":[309]},{"name":"QUERY_ON_CREATE_FILE_STAT_INFORMATION","features":[309]},{"name":"QUERY_PATH_REQUEST","features":[306,309,307,305,308]},{"name":"QUERY_PATH_REQUEST_EX","features":[306,309,307,305,308]},{"name":"QUERY_PATH_RESPONSE","features":[309]},{"name":"QUERY_VIRTUAL_MEMORY_CALLBACK","features":[309,305]},{"name":"QoCFileEaInformation","features":[309]},{"name":"QoCFileLxInformation","features":[309]},{"name":"QoCFileStatInformation","features":[309]},{"name":"QuerySecurityContextToken","features":[309]},{"name":"READ_AHEAD_PARAMETERS","features":[309]},{"name":"READ_LIST","features":[306,309,307,305,308,324,310,311,312]},{"name":"READ_USN_JOURNAL_DATA","features":[309]},{"name":"REFS_COMPRESSION_FORMATS","features":[309]},{"name":"REFS_COMPRESSION_FORMAT_LZ4","features":[309]},{"name":"REFS_COMPRESSION_FORMAT_MAX","features":[309]},{"name":"REFS_COMPRESSION_FORMAT_UNCOMPRESSED","features":[309]},{"name":"REFS_COMPRESSION_FORMAT_ZSTD","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_CAA","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_MAA","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_NONE","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_ALLOCATOR_SAA","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_INPUT_BUFFER_EX","features":[309]},{"name":"REFS_DEALLOCATE_RANGES_RANGE","features":[309]},{"name":"REFS_QUERY_VOLUME_COMPRESSION_INFO_OUTPUT_BUFFER","features":[309]},{"name":"REFS_QUERY_VOLUME_DEDUP_INFO_OUTPUT_BUFFER","features":[309,305]},{"name":"REFS_REMOVE_HARDLINK_BACKPOINTER","features":[309]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAGS","features":[309]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_COMPRESS_SYNC","features":[309]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_FLAG_MAX","features":[309]},{"name":"REFS_SET_VOLUME_COMPRESSION_INFO_INPUT_BUFFER","features":[309]},{"name":"REFS_SET_VOLUME_DEDUP_INFO_INPUT_BUFFER","features":[309,305]},{"name":"REFS_STREAM_EXTENT","features":[309]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC32","features":[309]},{"name":"REFS_STREAM_EXTENT_PROPERTY_CRC64","features":[309]},{"name":"REFS_STREAM_EXTENT_PROPERTY_GHOSTED","features":[309]},{"name":"REFS_STREAM_EXTENT_PROPERTY_READONLY","features":[309]},{"name":"REFS_STREAM_EXTENT_PROPERTY_SPARSE","features":[309]},{"name":"REFS_STREAM_EXTENT_PROPERTY_STREAM_RESERVED","features":[309]},{"name":"REFS_STREAM_EXTENT_PROPERTY_VALID","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_LIST_OUTPUT_BUFFER_ENTRY","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_MANAGEMENT_INPUT_BUFFER","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CLEAR_SHADOW_BTREE","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_CREATE","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_INVALID","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_LIST","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_MAX","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_QUERY_DELTAS","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_REVERT","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_OPERATION_SET_SHADOW_BTREE","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_INPUT_BUFFER","features":[309]},{"name":"REFS_STREAM_SNAPSHOT_QUERY_DELTAS_OUTPUT_BUFFER","features":[309]},{"name":"REFS_VOLUME_COUNTER_INFO_INPUT_BUFFER","features":[309,305]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[309]},{"name":"REMOTE_LINK_TRACKING_INFORMATION","features":[309]},{"name":"REMOTE_PROTOCOL_FLAG_INTEGRITY","features":[309]},{"name":"REMOTE_PROTOCOL_FLAG_LOOPBACK","features":[309]},{"name":"REMOTE_PROTOCOL_FLAG_MUTUAL_AUTH","features":[309]},{"name":"REMOTE_PROTOCOL_FLAG_OFFLINE","features":[309]},{"name":"REMOTE_PROTOCOL_FLAG_PERSISTENT_HANDLE","features":[309]},{"name":"REMOTE_PROTOCOL_FLAG_PRIVACY","features":[309]},{"name":"REMOVED_8DOT3_NAME","features":[309]},{"name":"REPARSE_DATA_BUFFER","features":[309]},{"name":"REPARSE_DATA_BUFFER_EX","features":[309,324]},{"name":"REPARSE_DATA_EX_FLAG_GIVEN_TAG_OR_NONE","features":[309]},{"name":"REPARSE_INDEX_KEY","features":[309]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[309]},{"name":"RETURN_NON_NT_USER_SESSION_KEY","features":[309]},{"name":"RETURN_PRIMARY_LOGON_DOMAINNAME","features":[309]},{"name":"RETURN_PRIMARY_USERNAME","features":[309]},{"name":"RETURN_RESERVED_PARAMETER","features":[309]},{"name":"RKF_BYPASS_ECP_CONTEXT","features":[309]},{"name":"RPI_SMB2_SERVERCAP_DFS","features":[309]},{"name":"RPI_SMB2_SERVERCAP_DIRECTORY_LEASING","features":[309]},{"name":"RPI_SMB2_SERVERCAP_ENCRYPTION_AWARE","features":[309]},{"name":"RPI_SMB2_SERVERCAP_LARGEMTU","features":[309]},{"name":"RPI_SMB2_SERVERCAP_LEASING","features":[309]},{"name":"RPI_SMB2_SERVERCAP_MULTICHANNEL","features":[309]},{"name":"RPI_SMB2_SERVERCAP_PERSISTENT_HANDLES","features":[309]},{"name":"RPI_SMB2_SHARECAP_ACCESS_BASED_DIRECTORY_ENUM","features":[309]},{"name":"RPI_SMB2_SHARECAP_ASYMMETRIC_SCALEOUT","features":[309]},{"name":"RPI_SMB2_SHARECAP_CLUSTER","features":[309]},{"name":"RPI_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[309]},{"name":"RPI_SMB2_SHARECAP_DFS","features":[309]},{"name":"RPI_SMB2_SHARECAP_ENCRYPTED","features":[309]},{"name":"RPI_SMB2_SHARECAP_IDENTITY_REMOTING","features":[309]},{"name":"RPI_SMB2_SHARECAP_SCALEOUT","features":[309]},{"name":"RPI_SMB2_SHARECAP_TIMEWARP","features":[309]},{"name":"RPI_SMB2_SHARETYPE_DISK","features":[309]},{"name":"RPI_SMB2_SHARETYPE_PIPE","features":[309]},{"name":"RPI_SMB2_SHARETYPE_PRINT","features":[309]},{"name":"RTL_ALLOCATE_STRING_ROUTINE","features":[309]},{"name":"RTL_DUPLICATE_UNICODE_STRING_ALLOCATE_NULL_STRING","features":[309]},{"name":"RTL_DUPLICATE_UNICODE_STRING_NULL_TERMINATE","features":[309]},{"name":"RTL_FREE_STRING_ROUTINE","features":[309]},{"name":"RTL_HEAP_COMMIT_ROUTINE","features":[309,305]},{"name":"RTL_HEAP_MEMORY_LIMIT_CURRENT_VERSION","features":[309]},{"name":"RTL_HEAP_MEMORY_LIMIT_DATA","features":[309]},{"name":"RTL_HEAP_MEMORY_LIMIT_INFO","features":[309]},{"name":"RTL_HEAP_PARAMETERS","features":[309,305]},{"name":"RTL_MEMORY_TYPE","features":[309]},{"name":"RTL_NLS_STATE","features":[309]},{"name":"RTL_REALLOCATE_STRING_ROUTINE","features":[309]},{"name":"RTL_SEGMENT_HEAP_MEMORY_SOURCE","features":[309,305]},{"name":"RTL_SEGMENT_HEAP_PARAMETERS","features":[309,305]},{"name":"RTL_SEGMENT_HEAP_VA_CALLBACKS","features":[309,305]},{"name":"RTL_SYSTEM_VOLUME_INFORMATION_FOLDER","features":[309]},{"name":"RtlAbsoluteToSelfRelativeSD","features":[309,305,308]},{"name":"RtlAddAccessAllowedAce","features":[309,305,308]},{"name":"RtlAddAccessAllowedAceEx","features":[309,305,308]},{"name":"RtlAddAce","features":[309,305,308]},{"name":"RtlAllocateAndInitializeSid","features":[309,305,308]},{"name":"RtlAllocateAndInitializeSidEx","features":[309,305,308]},{"name":"RtlAllocateHeap","features":[309]},{"name":"RtlAppendStringToString","features":[309,305,311]},{"name":"RtlCompareAltitudes","features":[309,305]},{"name":"RtlCompareMemoryUlong","features":[309]},{"name":"RtlCompressBuffer","features":[309,305]},{"name":"RtlCompressChunks","features":[309,305]},{"name":"RtlCopyLuid","features":[309,305]},{"name":"RtlCopySid","features":[309,305,308]},{"name":"RtlCreateAcl","features":[309,305,308]},{"name":"RtlCreateHeap","features":[309,305]},{"name":"RtlCreateServiceSid","features":[309,305,308]},{"name":"RtlCreateSystemVolumeInformationFolder","features":[309,305]},{"name":"RtlCreateUnicodeString","features":[309,305]},{"name":"RtlCreateVirtualAccountSid","features":[309,305,308]},{"name":"RtlCustomCPToUnicodeN","features":[309,305]},{"name":"RtlDecompressBuffer","features":[309,305]},{"name":"RtlDecompressBufferEx","features":[309,305]},{"name":"RtlDecompressBufferEx2","features":[309,305]},{"name":"RtlDecompressChunks","features":[309,305]},{"name":"RtlDecompressFragment","features":[309,305]},{"name":"RtlDecompressFragmentEx","features":[309,305]},{"name":"RtlDeleteAce","features":[309,305,308]},{"name":"RtlDescribeChunk","features":[309,305]},{"name":"RtlDestroyHeap","features":[309]},{"name":"RtlDowncaseUnicodeString","features":[309,305]},{"name":"RtlDuplicateUnicodeString","features":[309,305]},{"name":"RtlEqualPrefixSid","features":[309,305,308]},{"name":"RtlEqualSid","features":[309,305,308]},{"name":"RtlFindUnicodePrefix","features":[306,309,305]},{"name":"RtlFreeHeap","features":[309]},{"name":"RtlFreeSid","features":[309,308]},{"name":"RtlGenerate8dot3Name","features":[309,305]},{"name":"RtlGetAce","features":[309,305,308]},{"name":"RtlGetCompressionWorkSpaceSize","features":[309,305]},{"name":"RtlGetDaclSecurityDescriptor","features":[309,305,308]},{"name":"RtlGetGroupSecurityDescriptor","features":[309,305,308]},{"name":"RtlGetOwnerSecurityDescriptor","features":[309,305,308]},{"name":"RtlGetSaclSecurityDescriptor","features":[309,305,308]},{"name":"RtlIdentifierAuthoritySid","features":[309,308]},{"name":"RtlIdnToAscii","features":[309,305]},{"name":"RtlIdnToNameprepUnicode","features":[309,305]},{"name":"RtlIdnToUnicode","features":[309,305]},{"name":"RtlInitCodePageTable","features":[309]},{"name":"RtlInitUnicodeStringEx","features":[309,305]},{"name":"RtlInitializeSid","features":[309,305,308]},{"name":"RtlInitializeSidEx","features":[309,305,308]},{"name":"RtlInitializeUnicodePrefix","features":[306,309,305]},{"name":"RtlInsertUnicodePrefix","features":[306,309,305]},{"name":"RtlIsCloudFilesPlaceholder","features":[309,305]},{"name":"RtlIsNonEmptyDirectoryReparsePointAllowed","features":[309,305]},{"name":"RtlIsNormalizedString","features":[309,305]},{"name":"RtlIsPartialPlaceholder","features":[309,305]},{"name":"RtlIsPartialPlaceholderFileHandle","features":[309,305]},{"name":"RtlIsPartialPlaceholderFileInfo","features":[309,305]},{"name":"RtlIsSandboxedToken","features":[306,309,305,308]},{"name":"RtlIsValidOemCharacter","features":[309,305]},{"name":"RtlLengthRequiredSid","features":[309]},{"name":"RtlLengthSid","features":[309,308]},{"name":"RtlMultiByteToUnicodeN","features":[309,305]},{"name":"RtlMultiByteToUnicodeSize","features":[309,305]},{"name":"RtlNextUnicodePrefix","features":[306,309,305]},{"name":"RtlNormalizeString","features":[309,305]},{"name":"RtlNtStatusToDosErrorNoTeb","features":[309,305]},{"name":"RtlOemStringToCountedUnicodeString","features":[309,305,311]},{"name":"RtlOemStringToUnicodeString","features":[309,305,311]},{"name":"RtlOemToUnicodeN","features":[309,305]},{"name":"RtlPrefixString","features":[309,305,311]},{"name":"RtlQueryPackageIdentity","features":[309,305]},{"name":"RtlQueryPackageIdentityEx","features":[309,305]},{"name":"RtlQueryProcessPlaceholderCompatibilityMode","features":[309]},{"name":"RtlQueryThreadPlaceholderCompatibilityMode","features":[309]},{"name":"RtlRandom","features":[309]},{"name":"RtlRandomEx","features":[309]},{"name":"RtlRemoveUnicodePrefix","features":[306,309,305]},{"name":"RtlReplaceSidInSd","features":[309,305,308]},{"name":"RtlReserveChunk","features":[309,305]},{"name":"RtlSecondsSince1970ToTime","features":[309]},{"name":"RtlSecondsSince1980ToTime","features":[309]},{"name":"RtlSelfRelativeToAbsoluteSD","features":[309,305,308]},{"name":"RtlSetGroupSecurityDescriptor","features":[309,305,308]},{"name":"RtlSetOwnerSecurityDescriptor","features":[309,305,308]},{"name":"RtlSetProcessPlaceholderCompatibilityMode","features":[309]},{"name":"RtlSetThreadPlaceholderCompatibilityMode","features":[309]},{"name":"RtlSubAuthorityCountSid","features":[309,308]},{"name":"RtlSubAuthoritySid","features":[309,308]},{"name":"RtlTimeToSecondsSince1980","features":[309,305]},{"name":"RtlUnicodeStringToCountedOemString","features":[309,305,311]},{"name":"RtlUnicodeToCustomCPN","features":[309,305]},{"name":"RtlUnicodeToMultiByteN","features":[309,305]},{"name":"RtlUnicodeToOemN","features":[309,305]},{"name":"RtlUpcaseUnicodeStringToCountedOemString","features":[309,305,311]},{"name":"RtlUpcaseUnicodeStringToOemString","features":[309,305,311]},{"name":"RtlUpcaseUnicodeToCustomCPN","features":[309,305]},{"name":"RtlUpcaseUnicodeToMultiByteN","features":[309,305]},{"name":"RtlUpcaseUnicodeToOemN","features":[309,305]},{"name":"RtlValidSid","features":[309,305,308]},{"name":"RtlValidateUnicodeString","features":[309,305]},{"name":"RtlxOemStringToUnicodeSize","features":[309,311]},{"name":"RtlxUnicodeStringToOemSize","features":[309,305]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[309]},{"name":"SECURITY_CLIENT_CONTEXT","features":[309,305,308]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[309,326]},{"name":"SEC_DTLS_MTU","features":[309]},{"name":"SEC_FLAGS","features":[309]},{"name":"SEC_NEGOTIATION_INFO","features":[309]},{"name":"SEC_PRESHAREDKEY","features":[309]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[309]},{"name":"SEGMENT_HEAP_FLG_USE_PAGE_HEAP","features":[309]},{"name":"SEGMENT_HEAP_PARAMETERS_VERSION","features":[309]},{"name":"SEGMENT_HEAP_PARAMS_VALID_FLAGS","features":[309]},{"name":"SEMAPHORE_INCREMENT","features":[309]},{"name":"SET_CACHED_RUNS_STATE_INPUT_BUFFER","features":[309,305]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[309]},{"name":"SE_AUDIT_INFO","features":[309,305,308]},{"name":"SE_AUDIT_OPERATION","features":[309]},{"name":"SE_BACKUP_PRIVILEGES_CHECKED","features":[309]},{"name":"SE_DACL_UNTRUSTED","features":[309]},{"name":"SE_EXPORTS","features":[309,305,308]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE","features":[309,305]},{"name":"SE_LOGON_SESSION_TERMINATED_ROUTINE_EX","features":[306,309,305]},{"name":"SE_SERVER_SECURITY","features":[309]},{"name":"SPECIAL_ENCRYPTED_OPEN","features":[309]},{"name":"SRV_INSTANCE_TYPE","features":[309]},{"name":"SRV_OPEN_ECP_CONTEXT","features":[309,305,318]},{"name":"SRV_OPEN_ECP_CONTEXT_VERSION_2","features":[309]},{"name":"SUPPORTED_FS_FEATURES_BYPASS_IO","features":[309]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_READ","features":[309]},{"name":"SUPPORTED_FS_FEATURES_OFFLOAD_WRITE","features":[309]},{"name":"SUPPORTED_FS_FEATURES_QUERY_OPEN","features":[309]},{"name":"SYMLINK_DIRECTORY","features":[309]},{"name":"SYMLINK_FILE","features":[309]},{"name":"SYMLINK_FLAG_RELATIVE","features":[309]},{"name":"SYMLINK_RESERVED_MASK","features":[309]},{"name":"SYSTEM_PAGE_PRIORITY_BITS","features":[309]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[309]},{"name":"SeAccessCheckFromState","features":[309,305,308]},{"name":"SeAccessCheckFromStateEx","features":[309,305,308]},{"name":"SeAdjustAccessStateForAccessConstraints","features":[306,309,307,305,308]},{"name":"SeAdjustAccessStateForTrustLabel","features":[306,309,307,305,308]},{"name":"SeAdjustObjectSecurity","features":[306,309,305,308]},{"name":"SeAppendPrivileges","features":[306,309,307,305,308]},{"name":"SeAuditFipsCryptoSelftests","features":[309,305]},{"name":"SeAuditHardLinkCreation","features":[309,305]},{"name":"SeAuditHardLinkCreationWithTransaction","features":[309,305]},{"name":"SeAuditTransactionStateChange","features":[309]},{"name":"SeAuditingAnyFileEventsWithContext","features":[306,309,305,308]},{"name":"SeAuditingAnyFileEventsWithContextEx","features":[306,309,305,308]},{"name":"SeAuditingFileEvents","features":[309,305,308]},{"name":"SeAuditingFileEventsWithContext","features":[306,309,305,308]},{"name":"SeAuditingFileEventsWithContextEx","features":[306,309,305,308]},{"name":"SeAuditingFileOrGlobalEvents","features":[306,309,305,308]},{"name":"SeAuditingHardLinkEvents","features":[309,305,308]},{"name":"SeAuditingHardLinkEventsWithContext","features":[306,309,305,308]},{"name":"SeCaptureSubjectContextEx","features":[306,309,308]},{"name":"SeCheckForCriticalAceRemoval","features":[306,309,305,308]},{"name":"SeCreateClientSecurity","features":[306,309,305,308]},{"name":"SeCreateClientSecurityFromSubjectContext","features":[306,309,305,308]},{"name":"SeDeleteClientSecurity","features":[309,305,308]},{"name":"SeDeleteObjectAuditAlarm","features":[309,305]},{"name":"SeDeleteObjectAuditAlarmWithTransaction","features":[309,305]},{"name":"SeExamineSacl","features":[309,305,308]},{"name":"SeFilterToken","features":[309,305,308]},{"name":"SeFreePrivileges","features":[309,305,308]},{"name":"SeImpersonateClient","features":[306,309,305,308]},{"name":"SeImpersonateClientEx","features":[306,309,305,308]},{"name":"SeLocateProcessImageName","features":[306,309,305]},{"name":"SeMarkLogonSessionForTerminationNotification","features":[309,305]},{"name":"SeMarkLogonSessionForTerminationNotificationEx","features":[306,309,305]},{"name":"SeOpenObjectAuditAlarm","features":[306,309,307,305,308]},{"name":"SeOpenObjectAuditAlarmWithTransaction","features":[306,309,307,305,308]},{"name":"SeOpenObjectForDeleteAuditAlarm","features":[306,309,307,305,308]},{"name":"SeOpenObjectForDeleteAuditAlarmWithTransaction","features":[306,309,307,305,308]},{"name":"SePrivilegeCheck","features":[306,309,305,308]},{"name":"SeQueryAuthenticationIdToken","features":[309,305]},{"name":"SeQueryInformationToken","features":[309,305,308]},{"name":"SeQuerySecurityDescriptorInfo","features":[309,305,308]},{"name":"SeQueryServerSiloToken","features":[306,309,305]},{"name":"SeQuerySessionIdToken","features":[309,305]},{"name":"SeQuerySessionIdTokenEx","features":[309,305]},{"name":"SeRegisterLogonSessionTerminatedRoutine","features":[309,305]},{"name":"SeRegisterLogonSessionTerminatedRoutineEx","features":[309,305]},{"name":"SeReportSecurityEventWithSubCategory","features":[309,305,326]},{"name":"SeSetAccessStateGenericMapping","features":[306,309,307,305,308]},{"name":"SeSetSecurityDescriptorInfo","features":[306,309,305,308]},{"name":"SeSetSecurityDescriptorInfoEx","features":[306,309,305,308]},{"name":"SeShouldCheckForAccessRightsFromParent","features":[306,309,307,305,308]},{"name":"SeTokenFromAccessInformation","features":[309,305,308]},{"name":"SeTokenIsAdmin","features":[309,305]},{"name":"SeTokenIsRestricted","features":[309,305]},{"name":"SeTokenIsWriteRestricted","features":[309,305]},{"name":"SeTokenType","features":[309,308]},{"name":"SeUnregisterLogonSessionTerminatedRoutine","features":[309,305]},{"name":"SeUnregisterLogonSessionTerminatedRoutineEx","features":[309,305]},{"name":"SecBuffer","features":[309]},{"name":"SecBufferDesc","features":[309]},{"name":"SecHandle","features":[309]},{"name":"SecLookupAccountName","features":[309,305,308]},{"name":"SecLookupAccountSid","features":[309,305,308]},{"name":"SecLookupWellKnownSid","features":[309,305,308]},{"name":"SecMakeSPN","features":[309,305]},{"name":"SecMakeSPNEx","features":[309,305]},{"name":"SecMakeSPNEx2","features":[309,305]},{"name":"SetContextAttributesW","features":[309]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[309]},{"name":"SharedVirtualDiskHandleState","features":[309]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[309]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[309]},{"name":"SharedVirtualDiskHandleStateNone","features":[309]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[309]},{"name":"SharedVirtualDiskSupportType","features":[309]},{"name":"SharedVirtualDisksSupported","features":[309]},{"name":"SharedVirtualDisksUnsupported","features":[309]},{"name":"SrvInstanceTypeCsv","features":[309]},{"name":"SrvInstanceTypePrimary","features":[309]},{"name":"SrvInstanceTypeSBL","features":[309]},{"name":"SrvInstanceTypeSR","features":[309]},{"name":"SrvInstanceTypeUndefined","features":[309]},{"name":"SrvInstanceTypeVSMB","features":[309]},{"name":"SspiAcceptSecurityContextAsync","features":[306,309]},{"name":"SspiAcquireCredentialsHandleAsyncA","features":[306,309,326]},{"name":"SspiAcquireCredentialsHandleAsyncW","features":[306,309,305,326]},{"name":"SspiAsyncNotifyCallback","features":[306,309]},{"name":"SspiCreateAsyncContext","features":[306,309]},{"name":"SspiDeleteSecurityContextAsync","features":[306,309]},{"name":"SspiFreeAsyncContext","features":[306,309]},{"name":"SspiFreeCredentialsHandleAsync","features":[306,309]},{"name":"SspiGetAsyncCallStatus","features":[306,309]},{"name":"SspiInitializeSecurityContextAsyncA","features":[306,309]},{"name":"SspiInitializeSecurityContextAsyncW","features":[306,309,305]},{"name":"SspiReinitAsyncContext","features":[306,309,305]},{"name":"SspiSetAsyncNotifyCallback","features":[306,309]},{"name":"SyncTypeCreateSection","features":[309]},{"name":"SyncTypeOther","features":[309]},{"name":"TOKEN_AUDIT_NO_CHILD_PROCESS","features":[309]},{"name":"TOKEN_AUDIT_REDIRECTION_TRUST","features":[309]},{"name":"TOKEN_DO_NOT_USE_GLOBAL_ATTRIBS_FOR_QUERY","features":[309]},{"name":"TOKEN_ENFORCE_REDIRECTION_TRUST","features":[309]},{"name":"TOKEN_HAS_BACKUP_PRIVILEGE","features":[309]},{"name":"TOKEN_HAS_IMPERSONATE_PRIVILEGE","features":[309]},{"name":"TOKEN_HAS_OWN_CLAIM_ATTRIBUTES","features":[309]},{"name":"TOKEN_HAS_RESTORE_PRIVILEGE","features":[309]},{"name":"TOKEN_HAS_TRAVERSE_PRIVILEGE","features":[309]},{"name":"TOKEN_IS_FILTERED","features":[309]},{"name":"TOKEN_IS_RESTRICTED","features":[309]},{"name":"TOKEN_LEARNING_MODE_LOGGING","features":[309]},{"name":"TOKEN_LOWBOX","features":[309]},{"name":"TOKEN_NOT_LOW","features":[309]},{"name":"TOKEN_NO_CHILD_PROCESS","features":[309]},{"name":"TOKEN_NO_CHILD_PROCESS_UNLESS_SECURE","features":[309]},{"name":"TOKEN_PERMISSIVE_LEARNING_MODE","features":[309]},{"name":"TOKEN_PRIVATE_NAMESPACE","features":[309]},{"name":"TOKEN_SANDBOX_INERT","features":[309]},{"name":"TOKEN_SESSION_NOT_REFERENCED","features":[309]},{"name":"TOKEN_UIACCESS","features":[309]},{"name":"TOKEN_VIRTUALIZE_ALLOWED","features":[309]},{"name":"TOKEN_VIRTUALIZE_ENABLED","features":[309]},{"name":"TOKEN_WRITE_RESTRICTED","features":[309]},{"name":"TUNNEL","features":[306,309,305,311]},{"name":"UNICODE_PREFIX_TABLE","features":[306,309,305]},{"name":"UNICODE_PREFIX_TABLE_ENTRY","features":[306,309,305]},{"name":"UNINITIALIZE_CACHE_MAPS","features":[309]},{"name":"USE_PRIMARY_PASSWORD","features":[309]},{"name":"USN_DELETE_FLAG_DELETE","features":[309]},{"name":"USN_JOURNAL_DATA","features":[309]},{"name":"USN_RECORD","features":[309]},{"name":"VACB_MAPPING_GRANULARITY","features":[309]},{"name":"VACB_OFFSET_SHIFT","features":[309]},{"name":"VALID_INHERIT_FLAGS","features":[309]},{"name":"VCN_RANGE_INPUT_BUFFER","features":[309]},{"name":"VIRTUAL_MEMORY_INFORMATION_CLASS","features":[309]},{"name":"VOLSNAPCONTROLTYPE","features":[309]},{"name":"VOLUME_REFS_INFO_BUFFER","features":[309]},{"name":"VerifySignature","features":[309]},{"name":"VmPrefetchInformation","features":[309]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_LAYER","features":[309]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REGISTERED_LAYER","features":[309]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_REMOTE_LAYER","features":[309]},{"name":"WCIFS_REDIRECTION_FLAGS_CREATE_SERVICED_FROM_SCRATCH","features":[309]},{"name":"ZwAccessCheckAndAuditAlarm","features":[309,305,308]},{"name":"ZwAccessCheckByTypeAndAuditAlarm","features":[309,305,308]},{"name":"ZwAccessCheckByTypeResultListAndAuditAlarm","features":[309,305,308]},{"name":"ZwAccessCheckByTypeResultListAndAuditAlarmByHandle","features":[309,305,308]},{"name":"ZwAdjustGroupsToken","features":[309,305,308]},{"name":"ZwAdjustPrivilegesToken","features":[309,305,308]},{"name":"ZwAllocateVirtualMemory","features":[309,305]},{"name":"ZwAllocateVirtualMemoryEx","features":[309,305,323]},{"name":"ZwCancelIoFileEx","features":[309,305,310]},{"name":"ZwCloseObjectAuditAlarm","features":[309,305]},{"name":"ZwCreateDirectoryObject","features":[306,309,305]},{"name":"ZwCreateEvent","features":[306,309,305,311]},{"name":"ZwCreateSectionEx","features":[306,309,305,323]},{"name":"ZwDeleteFile","features":[306,309,305]},{"name":"ZwDeleteObjectAuditAlarm","features":[309,305]},{"name":"ZwDuplicateObject","features":[309,305]},{"name":"ZwDuplicateToken","features":[306,309,305,308]},{"name":"ZwFilterToken","features":[309,305,308]},{"name":"ZwFlushBuffersFile","features":[309,305,310]},{"name":"ZwFlushBuffersFileEx","features":[309,305,310]},{"name":"ZwFlushVirtualMemory","features":[309,305,310]},{"name":"ZwFreeVirtualMemory","features":[309,305]},{"name":"ZwFsControlFile","features":[309,305,310]},{"name":"ZwImpersonateAnonymousToken","features":[309,305]},{"name":"ZwLockFile","features":[309,305,310]},{"name":"ZwNotifyChangeKey","features":[309,305,310]},{"name":"ZwOpenDirectoryObject","features":[306,309,305]},{"name":"ZwOpenObjectAuditAlarm","features":[309,305,308]},{"name":"ZwOpenProcessToken","features":[309,305]},{"name":"ZwOpenProcessTokenEx","features":[309,305]},{"name":"ZwOpenThreadToken","features":[309,305]},{"name":"ZwOpenThreadTokenEx","features":[309,305]},{"name":"ZwPrivilegeCheck","features":[309,305,308]},{"name":"ZwPrivilegeObjectAuditAlarm","features":[309,305,308]},{"name":"ZwPrivilegedServiceAuditAlarm","features":[309,305,308]},{"name":"ZwQueryDirectoryFile","features":[309,305,310]},{"name":"ZwQueryDirectoryFileEx","features":[309,305,310]},{"name":"ZwQueryDirectoryObject","features":[309,305]},{"name":"ZwQueryEaFile","features":[309,305,310]},{"name":"ZwQueryFullAttributesFile","features":[306,309,305]},{"name":"ZwQueryInformationToken","features":[309,305,308]},{"name":"ZwQueryObject","features":[306,309,305]},{"name":"ZwQueryQuotaInformationFile","features":[309,305,308,310]},{"name":"ZwQuerySecurityObject","features":[309,305,308]},{"name":"ZwQueryVirtualMemory","features":[309,305]},{"name":"ZwQueryVolumeInformationFile","features":[309,305,310]},{"name":"ZwSetEaFile","features":[309,305,310]},{"name":"ZwSetEvent","features":[309,305]},{"name":"ZwSetInformationToken","features":[309,305,308]},{"name":"ZwSetInformationVirtualMemory","features":[309,305]},{"name":"ZwSetQuotaInformationFile","features":[309,305,310]},{"name":"ZwSetSecurityObject","features":[309,305,308]},{"name":"ZwSetVolumeInformationFile","features":[309,305,310]},{"name":"ZwUnlockFile","features":[309,305,310]},{"name":"_LCN_WEAK_REFERENCE_STATE","features":[309]},{"name":"_REFS_STREAM_EXTENT_PROPERTIES","features":[309]}],"346":[{"name":"FLTFL_CALLBACK_DATA_DIRTY","features":[327]},{"name":"FLTFL_CALLBACK_DATA_DRAINING_IO","features":[327]},{"name":"FLTFL_CALLBACK_DATA_FAST_IO_OPERATION","features":[327]},{"name":"FLTFL_CALLBACK_DATA_FS_FILTER_OPERATION","features":[327]},{"name":"FLTFL_CALLBACK_DATA_GENERATED_IO","features":[327]},{"name":"FLTFL_CALLBACK_DATA_IRP_OPERATION","features":[327]},{"name":"FLTFL_CALLBACK_DATA_NEW_SYSTEM_BUFFER","features":[327]},{"name":"FLTFL_CALLBACK_DATA_POST_OPERATION","features":[327]},{"name":"FLTFL_CALLBACK_DATA_REISSUED_IO","features":[327]},{"name":"FLTFL_CALLBACK_DATA_REISSUE_MASK","features":[327]},{"name":"FLTFL_CALLBACK_DATA_SYSTEM_BUFFER","features":[327]},{"name":"FLTFL_CONTEXT_REGISTRATION_NO_EXACT_SIZE_MATCH","features":[327]},{"name":"FLTFL_FILE_NAME_PARSED_EXTENSION","features":[327]},{"name":"FLTFL_FILE_NAME_PARSED_FINAL_COMPONENT","features":[327]},{"name":"FLTFL_FILE_NAME_PARSED_PARENT_DIR","features":[327]},{"name":"FLTFL_FILE_NAME_PARSED_STREAM","features":[327]},{"name":"FLTFL_FILTER_UNLOAD_MANDATORY","features":[327]},{"name":"FLTFL_INSTANCE_SETUP_AUTOMATIC_ATTACHMENT","features":[327]},{"name":"FLTFL_INSTANCE_SETUP_DETACHED_VOLUME","features":[327]},{"name":"FLTFL_INSTANCE_SETUP_MANUAL_ATTACHMENT","features":[327]},{"name":"FLTFL_INSTANCE_SETUP_NEWLY_MOUNTED_VOLUME","features":[327]},{"name":"FLTFL_INSTANCE_TEARDOWN_FILTER_UNLOAD","features":[327]},{"name":"FLTFL_INSTANCE_TEARDOWN_INTERNAL_ERROR","features":[327]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANDATORY_FILTER_UNLOAD","features":[327]},{"name":"FLTFL_INSTANCE_TEARDOWN_MANUAL","features":[327]},{"name":"FLTFL_INSTANCE_TEARDOWN_VOLUME_DISMOUNT","features":[327]},{"name":"FLTFL_IO_OPERATION_DO_NOT_UPDATE_BYTE_OFFSET","features":[327]},{"name":"FLTFL_IO_OPERATION_NON_CACHED","features":[327]},{"name":"FLTFL_IO_OPERATION_PAGING","features":[327]},{"name":"FLTFL_IO_OPERATION_SYNCHRONOUS_PAGING","features":[327]},{"name":"FLTFL_NORMALIZE_NAME_CASE_SENSITIVE","features":[327]},{"name":"FLTFL_NORMALIZE_NAME_DESTINATION_FILE_NAME","features":[327]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_CACHED_IO","features":[327]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_CACHED_NON_PAGING_IO","features":[327]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_NON_DASD_IO","features":[327]},{"name":"FLTFL_OPERATION_REGISTRATION_SKIP_PAGING_IO","features":[327]},{"name":"FLTFL_POST_OPERATION_DRAINING","features":[327]},{"name":"FLTFL_REGISTRATION_DO_NOT_SUPPORT_SERVICE_STOP","features":[327]},{"name":"FLTFL_REGISTRATION_SUPPORT_DAX_VOLUME","features":[327]},{"name":"FLTFL_REGISTRATION_SUPPORT_NPFS_MSFS","features":[327]},{"name":"FLTFL_REGISTRATION_SUPPORT_WCOS","features":[327]},{"name":"FLTTCFL_AUTO_REPARSE","features":[327]},{"name":"FLT_ALLOCATE_CALLBACK_DATA_PREALLOCATE_ALL_MEMORY","features":[327]},{"name":"FLT_CALLBACK_DATA","features":[306,327,307,305,308,310,311,312]},{"name":"FLT_CALLBACK_DATA_QUEUE","features":[306,327,307,305,308,310,311,312]},{"name":"FLT_CALLBACK_DATA_QUEUE_FLAGS","features":[327]},{"name":"FLT_CONTEXT_END","features":[327]},{"name":"FLT_CONTEXT_REGISTRATION","features":[306,327]},{"name":"FLT_CREATEFILE_TARGET_ECP_CONTEXT","features":[327,305]},{"name":"FLT_FILE_CONTEXT","features":[327]},{"name":"FLT_FILE_NAME_ALLOW_QUERY_ON_REPARSE","features":[327]},{"name":"FLT_FILE_NAME_DO_NOT_CACHE","features":[327]},{"name":"FLT_FILE_NAME_INFORMATION","features":[327,305]},{"name":"FLT_FILE_NAME_NORMALIZED","features":[327]},{"name":"FLT_FILE_NAME_OPENED","features":[327]},{"name":"FLT_FILE_NAME_QUERY_ALWAYS_ALLOW_CACHE_LOOKUP","features":[327]},{"name":"FLT_FILE_NAME_QUERY_CACHE_ONLY","features":[327]},{"name":"FLT_FILE_NAME_QUERY_DEFAULT","features":[327]},{"name":"FLT_FILE_NAME_QUERY_FILESYSTEM_ONLY","features":[327]},{"name":"FLT_FILE_NAME_REQUEST_FROM_CURRENT_PROVIDER","features":[327]},{"name":"FLT_FILE_NAME_SHORT","features":[327]},{"name":"FLT_FLUSH_TYPE_DATA_SYNC_ONLY","features":[327]},{"name":"FLT_FLUSH_TYPE_FILE_DATA_ONLY","features":[327]},{"name":"FLT_FLUSH_TYPE_FLUSH_AND_PURGE","features":[327]},{"name":"FLT_FLUSH_TYPE_NO_SYNC","features":[327]},{"name":"FLT_INSTANCE_CONTEXT","features":[327]},{"name":"FLT_INTERNAL_OPERATION_COUNT","features":[327]},{"name":"FLT_IO_PARAMETER_BLOCK","features":[306,327,307,305,308,310,311,312]},{"name":"FLT_MAX_DEVICE_REPARSE_ATTEMPTS","features":[327]},{"name":"FLT_NAME_CONTROL","features":[327,305]},{"name":"FLT_OPERATION_REGISTRATION","features":[306,327,307,305,308,310,311,312]},{"name":"FLT_PARAMETERS","features":[306,327,307,305,308,310,311,312]},{"name":"FLT_PORT_CONNECT","features":[327]},{"name":"FLT_POSTOP_CALLBACK_STATUS","features":[327]},{"name":"FLT_POSTOP_DISALLOW_FSFILTER_IO","features":[327]},{"name":"FLT_POSTOP_FINISHED_PROCESSING","features":[327]},{"name":"FLT_POSTOP_MORE_PROCESSING_REQUIRED","features":[327]},{"name":"FLT_PREOP_CALLBACK_STATUS","features":[327]},{"name":"FLT_PREOP_COMPLETE","features":[327]},{"name":"FLT_PREOP_DISALLOW_FASTIO","features":[327]},{"name":"FLT_PREOP_DISALLOW_FSFILTER_IO","features":[327]},{"name":"FLT_PREOP_PENDING","features":[327]},{"name":"FLT_PREOP_SUCCESS_NO_CALLBACK","features":[327]},{"name":"FLT_PREOP_SUCCESS_WITH_CALLBACK","features":[327]},{"name":"FLT_PREOP_SYNCHRONIZE","features":[327]},{"name":"FLT_PUSH_LOCK_DISABLE_AUTO_BOOST","features":[327]},{"name":"FLT_PUSH_LOCK_ENABLE_AUTO_BOOST","features":[327]},{"name":"FLT_PUSH_LOCK_VALID_FLAGS","features":[327]},{"name":"FLT_REGISTRATION","features":[306,327,307,305,308,328,310,311,312]},{"name":"FLT_REGISTRATION_VERSION","features":[327]},{"name":"FLT_REGISTRATION_VERSION_0200","features":[327]},{"name":"FLT_REGISTRATION_VERSION_0201","features":[327]},{"name":"FLT_REGISTRATION_VERSION_0202","features":[327]},{"name":"FLT_REGISTRATION_VERSION_0203","features":[327]},{"name":"FLT_RELATED_CONTEXTS","features":[327]},{"name":"FLT_RELATED_CONTEXTS_EX","features":[327]},{"name":"FLT_RELATED_OBJECTS","features":[306,327,307,305,308,310,311,312]},{"name":"FLT_SECTION_CONTEXT","features":[327]},{"name":"FLT_SET_CONTEXT_KEEP_IF_EXISTS","features":[327]},{"name":"FLT_SET_CONTEXT_OPERATION","features":[327]},{"name":"FLT_SET_CONTEXT_REPLACE_IF_EXISTS","features":[327]},{"name":"FLT_STREAMHANDLE_CONTEXT","features":[327]},{"name":"FLT_STREAM_CONTEXT","features":[327]},{"name":"FLT_TAG_DATA_BUFFER","features":[327]},{"name":"FLT_TRANSACTION_CONTEXT","features":[327]},{"name":"FLT_VALID_FILE_NAME_FLAGS","features":[327]},{"name":"FLT_VALID_FILE_NAME_FORMATS","features":[327]},{"name":"FLT_VALID_FILE_NAME_QUERY_METHODS","features":[327]},{"name":"FLT_VOLUME_CONTEXT","features":[327]},{"name":"FLT_VOLUME_PROPERTIES","features":[327,305]},{"name":"FltAcknowledgeEcp","features":[327]},{"name":"FltAcquirePushLockExclusive","features":[327]},{"name":"FltAcquirePushLockExclusiveEx","features":[327]},{"name":"FltAcquirePushLockShared","features":[327]},{"name":"FltAcquirePushLockSharedEx","features":[327]},{"name":"FltAcquireResourceExclusive","features":[306,327,311]},{"name":"FltAcquireResourceShared","features":[306,327,311]},{"name":"FltAddOpenReparseEntry","features":[306,327,307,305,308,310,311,312]},{"name":"FltAdjustDeviceStackSizeForIoRedirection","features":[327,305]},{"name":"FltAllocateCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltAllocateCallbackDataEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltAllocateContext","features":[306,327,305]},{"name":"FltAllocateDeferredIoWorkItem","features":[327]},{"name":"FltAllocateExtraCreateParameter","features":[327,305]},{"name":"FltAllocateExtraCreateParameterFromLookasideList","features":[327,305]},{"name":"FltAllocateExtraCreateParameterList","features":[306,327,305]},{"name":"FltAllocateFileLock","features":[306,327,307,305,308,310,311,312]},{"name":"FltAllocateGenericWorkItem","features":[327]},{"name":"FltAllocatePoolAlignedWithTag","features":[306,327]},{"name":"FltApplyPriorityInfoThread","features":[306,327,305]},{"name":"FltAttachVolume","features":[327,305]},{"name":"FltAttachVolumeAtAltitude","features":[327,305]},{"name":"FltBuildDefaultSecurityDescriptor","features":[327,305,308]},{"name":"FltCancelFileOpen","features":[306,327,307,305,308,310,311,312]},{"name":"FltCancelIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltCancellableWaitForMultipleObjects","features":[306,327,307,305,308,310,311,312]},{"name":"FltCancellableWaitForSingleObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltCbdqDisable","features":[306,327,307,305,308,310,311,312]},{"name":"FltCbdqEnable","features":[306,327,307,305,308,310,311,312]},{"name":"FltCbdqInitialize","features":[306,327,307,305,308,310,311,312]},{"name":"FltCbdqInsertIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltCbdqRemoveIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltCbdqRemoveNextIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltCheckAndGrowNameControl","features":[327,305]},{"name":"FltCheckLockForReadAccess","features":[306,327,307,305,308,310,311,312]},{"name":"FltCheckLockForWriteAccess","features":[306,327,307,305,308,310,311,312]},{"name":"FltCheckOplock","features":[306,327,307,305,308,310,311,312]},{"name":"FltCheckOplockEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltClearCallbackDataDirty","features":[306,327,307,305,308,310,311,312]},{"name":"FltClearCancelCompletion","features":[306,327,307,305,308,310,311,312]},{"name":"FltClose","features":[327,305]},{"name":"FltCloseClientPort","features":[327]},{"name":"FltCloseCommunicationPort","features":[327]},{"name":"FltCloseSectionForDataScan","features":[327,305]},{"name":"FltCommitComplete","features":[306,327,305]},{"name":"FltCommitFinalizeComplete","features":[306,327,305]},{"name":"FltCompareInstanceAltitudes","features":[327]},{"name":"FltCompletePendedPostOperation","features":[306,327,307,305,308,310,311,312]},{"name":"FltCompletePendedPreOperation","features":[306,327,307,305,308,310,311,312]},{"name":"FltCopyOpenReparseList","features":[306,327,307,305,308,310,311,312]},{"name":"FltCreateCommunicationPort","features":[306,327,305]},{"name":"FltCreateFile","features":[306,327,305,310]},{"name":"FltCreateFileEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltCreateFileEx2","features":[306,327,307,305,308,310,311,312]},{"name":"FltCreateMailslotFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltCreateNamedPipeFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltCreateSectionForDataScan","features":[306,327,307,305,308,310,311,312]},{"name":"FltCreateSystemVolumeInformationFolder","features":[327,305]},{"name":"FltCurrentBatchOplock","features":[327,305]},{"name":"FltCurrentOplock","features":[327,305]},{"name":"FltCurrentOplockH","features":[327,305]},{"name":"FltDecodeParameters","features":[306,327,307,305,308,310,311,312]},{"name":"FltDeleteContext","features":[327]},{"name":"FltDeleteExtraCreateParameterLookasideList","features":[327]},{"name":"FltDeleteFileContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltDeleteInstanceContext","features":[327,305]},{"name":"FltDeletePushLock","features":[327]},{"name":"FltDeleteStreamContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltDeleteStreamHandleContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltDeleteTransactionContext","features":[306,327,305]},{"name":"FltDeleteVolumeContext","features":[327,305]},{"name":"FltDetachVolume","features":[327,305]},{"name":"FltDeviceIoControlFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltDoCompletionProcessingWhenSafe","features":[306,327,307,305,308,310,311,312]},{"name":"FltEnlistInTransaction","features":[306,327,305]},{"name":"FltEnumerateFilterInformation","features":[327,305,328]},{"name":"FltEnumerateFilters","features":[327,305]},{"name":"FltEnumerateInstanceInformationByDeviceObject","features":[306,327,307,305,308,328,310,311,312]},{"name":"FltEnumerateInstanceInformationByFilter","features":[327,305,328]},{"name":"FltEnumerateInstanceInformationByVolume","features":[327,305,328]},{"name":"FltEnumerateInstanceInformationByVolumeName","features":[327,305,328]},{"name":"FltEnumerateInstances","features":[327,305]},{"name":"FltEnumerateVolumeInformation","features":[327,305,328]},{"name":"FltEnumerateVolumes","features":[327,305]},{"name":"FltFastIoMdlRead","features":[306,327,307,305,308,310,311,312]},{"name":"FltFastIoMdlReadComplete","features":[306,327,307,305,308,310,311,312]},{"name":"FltFastIoMdlWriteComplete","features":[306,327,307,305,308,310,311,312]},{"name":"FltFastIoPrepareMdlWrite","features":[306,327,307,305,308,310,311,312]},{"name":"FltFindExtraCreateParameter","features":[306,327,305]},{"name":"FltFlushBuffers","features":[306,327,307,305,308,310,311,312]},{"name":"FltFlushBuffers2","features":[306,327,307,305,308,310,311,312]},{"name":"FltFreeCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltFreeDeferredIoWorkItem","features":[327]},{"name":"FltFreeExtraCreateParameter","features":[327]},{"name":"FltFreeExtraCreateParameterList","features":[306,327]},{"name":"FltFreeFileLock","features":[306,327,307,305,308,310,311,312]},{"name":"FltFreeGenericWorkItem","features":[327]},{"name":"FltFreeOpenReparseList","features":[306,327]},{"name":"FltFreePoolAlignedWithTag","features":[327]},{"name":"FltFreeSecurityDescriptor","features":[327,308]},{"name":"FltFsControlFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetActivityIdCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetBottomInstance","features":[327,305]},{"name":"FltGetContexts","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetContextsEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetDestinationFileNameInformation","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetDeviceObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetDiskDeviceObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetEcpListFromCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetFileContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetFileNameInformation","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetFileNameInformationUnsafe","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetFileSystemType","features":[327,305,328]},{"name":"FltGetFilterFromInstance","features":[327,305]},{"name":"FltGetFilterFromName","features":[327,305]},{"name":"FltGetFilterInformation","features":[327,305,328]},{"name":"FltGetFsZeroingOffset","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetInstanceContext","features":[327,305]},{"name":"FltGetInstanceInformation","features":[327,305,328]},{"name":"FltGetIoAttributionHandleFromCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetIoPriorityHint","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetIoPriorityHintFromCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetIoPriorityHintFromFileObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetIoPriorityHintFromThread","features":[306,327]},{"name":"FltGetIrpName","features":[327]},{"name":"FltGetLowerInstance","features":[327,305]},{"name":"FltGetNewSystemBufferAddress","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetNextExtraCreateParameter","features":[306,327,305]},{"name":"FltGetRequestorProcess","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetRequestorProcessId","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetRequestorProcessIdEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetRequestorSessionId","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetRoutineAddress","features":[327]},{"name":"FltGetSectionContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetStreamContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetStreamHandleContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetSwappedBufferMdlAddress","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetTopInstance","features":[327,305]},{"name":"FltGetTransactionContext","features":[306,327,305]},{"name":"FltGetTunneledName","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetUpperInstance","features":[327,305]},{"name":"FltGetVolumeContext","features":[327,305]},{"name":"FltGetVolumeFromDeviceObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetVolumeFromFileObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltGetVolumeFromInstance","features":[327,305]},{"name":"FltGetVolumeFromName","features":[327,305]},{"name":"FltGetVolumeGuidName","features":[327,305]},{"name":"FltGetVolumeInformation","features":[327,305,328]},{"name":"FltGetVolumeInstanceFromName","features":[327,305]},{"name":"FltGetVolumeName","features":[327,305]},{"name":"FltGetVolumeProperties","features":[327,305]},{"name":"FltInitExtraCreateParameterLookasideList","features":[327]},{"name":"FltInitializeFileLock","features":[306,327,307,305,308,310,311,312]},{"name":"FltInitializeOplock","features":[327]},{"name":"FltInitializePushLock","features":[327]},{"name":"FltInsertExtraCreateParameter","features":[306,327,305]},{"name":"FltIs32bitProcess","features":[306,327,307,305,308,310,311,312]},{"name":"FltIsCallbackDataDirty","features":[306,327,307,305,308,310,311,312]},{"name":"FltIsDirectory","features":[306,327,307,305,308,310,311,312]},{"name":"FltIsEcpAcknowledged","features":[327,305]},{"name":"FltIsEcpFromUserMode","features":[327,305]},{"name":"FltIsFltMgrVolumeDeviceObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltIsIoCanceled","features":[306,327,307,305,308,310,311,312]},{"name":"FltIsIoRedirectionAllowed","features":[327,305]},{"name":"FltIsIoRedirectionAllowedForOperation","features":[306,327,307,305,308,310,311,312]},{"name":"FltIsOperationSynchronous","features":[306,327,307,305,308,310,311,312]},{"name":"FltIsVolumeSnapshot","features":[327,305]},{"name":"FltIsVolumeWritable","features":[327,305]},{"name":"FltLoadFilter","features":[327,305]},{"name":"FltLockUserBuffer","features":[306,327,307,305,308,310,311,312]},{"name":"FltNotifyFilterChangeDirectory","features":[306,327,307,305,308,310,311,312]},{"name":"FltObjectDereference","features":[327]},{"name":"FltObjectReference","features":[327,305]},{"name":"FltOpenVolume","features":[306,327,307,305,308,310,311,312]},{"name":"FltOplockBreakH","features":[306,327,307,305,308,310,311,312]},{"name":"FltOplockBreakToNone","features":[306,327,307,305,308,310,311,312]},{"name":"FltOplockBreakToNoneEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltOplockFsctrl","features":[306,327,307,305,308,310,311,312]},{"name":"FltOplockFsctrlEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltOplockIsFastIoPossible","features":[327,305]},{"name":"FltOplockIsSharedRequest","features":[306,327,307,305,308,310,311,312]},{"name":"FltOplockKeysEqual","features":[306,327,307,305,308,310,311,312]},{"name":"FltParseFileName","features":[327,305]},{"name":"FltParseFileNameInformation","features":[327,305]},{"name":"FltPerformAsynchronousIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltPerformSynchronousIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltPrePrepareComplete","features":[306,327,305]},{"name":"FltPrepareComplete","features":[306,327,305]},{"name":"FltPrepareToReuseEcp","features":[327]},{"name":"FltProcessFileLock","features":[306,327,307,305,308,310,311,312]},{"name":"FltPropagateActivityIdToThread","features":[306,327,307,305,308,310,311,312]},{"name":"FltPropagateIrpExtension","features":[306,327,307,305,308,310,311,312]},{"name":"FltPurgeFileNameInformationCache","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueryDirectoryFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueryDirectoryFileEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueryEaFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueryInformationByName","features":[306,327,307,305,310]},{"name":"FltQueryInformationFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueryQuotaInformationFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltQuerySecurityObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueryVolumeInformation","features":[327,305,310]},{"name":"FltQueryVolumeInformationFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueueDeferredIoWorkItem","features":[306,327,307,305,308,310,311,312]},{"name":"FltQueueGenericWorkItem","features":[327,307,305]},{"name":"FltReadFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltReadFileEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltReferenceContext","features":[327]},{"name":"FltReferenceFileNameInformation","features":[327,305]},{"name":"FltRegisterFilter","features":[306,327,307,305,308,328,310,311,312]},{"name":"FltRegisterForDataScan","features":[327,305]},{"name":"FltReissueSynchronousIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltReleaseContext","features":[327]},{"name":"FltReleaseContexts","features":[327]},{"name":"FltReleaseContextsEx","features":[327]},{"name":"FltReleaseFileNameInformation","features":[327,305]},{"name":"FltReleasePushLock","features":[327]},{"name":"FltReleasePushLockEx","features":[327]},{"name":"FltReleaseResource","features":[306,327,311]},{"name":"FltRemoveExtraCreateParameter","features":[306,327,305]},{"name":"FltRemoveOpenReparseEntry","features":[306,327,307,305,308,310,311,312]},{"name":"FltRequestFileInfoOnCreateCompletion","features":[306,327,307,305,308,310,311,312]},{"name":"FltRequestOperationStatusCallback","features":[306,327,307,305,308,310,311,312]},{"name":"FltRetainSwappedBufferMdlAddress","features":[306,327,307,305,308,310,311,312]},{"name":"FltRetrieveFileInfoOnCreateCompletion","features":[306,327,307,305,308,310,311,312]},{"name":"FltRetrieveFileInfoOnCreateCompletionEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltRetrieveIoPriorityInfo","features":[306,327,307,305,308,310,311,312]},{"name":"FltReuseCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltRollbackComplete","features":[306,327,305]},{"name":"FltRollbackEnlistment","features":[306,327,305]},{"name":"FltSendMessage","features":[327,305]},{"name":"FltSetActivityIdCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetCallbackDataDirty","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetCancelCompletion","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetEaFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetEcpListIntoCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetFileContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetFsZeroingOffset","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetFsZeroingOffsetRequired","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetInformationFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetInstanceContext","features":[327,305]},{"name":"FltSetIoPriorityHintIntoCallbackData","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetIoPriorityHintIntoFileObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetIoPriorityHintIntoThread","features":[306,327,305]},{"name":"FltSetQuotaInformationFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetSecurityObject","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetStreamContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetStreamHandleContext","features":[306,327,307,305,308,310,311,312]},{"name":"FltSetTransactionContext","features":[306,327,305]},{"name":"FltSetVolumeContext","features":[327,305]},{"name":"FltSetVolumeInformation","features":[327,305,310]},{"name":"FltStartFiltering","features":[327,305]},{"name":"FltSupportsFileContexts","features":[306,327,307,305,308,310,311,312]},{"name":"FltSupportsFileContextsEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltSupportsStreamContexts","features":[306,327,307,305,308,310,311,312]},{"name":"FltSupportsStreamHandleContexts","features":[306,327,307,305,308,310,311,312]},{"name":"FltTagFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltTagFileEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltUninitializeFileLock","features":[306,327,307,305,308,310,311,312]},{"name":"FltUninitializeOplock","features":[327]},{"name":"FltUnloadFilter","features":[327,305]},{"name":"FltUnregisterFilter","features":[327]},{"name":"FltUntagFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltVetoBypassIo","features":[306,327,307,305,308,310,311,312]},{"name":"FltWriteFile","features":[306,327,307,305,308,310,311,312]},{"name":"FltWriteFileEx","features":[306,327,307,305,308,310,311,312]},{"name":"FltpTraceRedirectedFileIo","features":[306,327,307,305,308,310,311,312]},{"name":"GUID_ECP_FLT_CREATEFILE_TARGET","features":[327]},{"name":"IRP_MJ_ACQUIRE_FOR_CC_FLUSH","features":[327]},{"name":"IRP_MJ_ACQUIRE_FOR_MOD_WRITE","features":[327]},{"name":"IRP_MJ_ACQUIRE_FOR_SECTION_SYNCHRONIZATION","features":[327]},{"name":"IRP_MJ_FAST_IO_CHECK_IF_POSSIBLE","features":[327]},{"name":"IRP_MJ_MDL_READ","features":[327]},{"name":"IRP_MJ_MDL_READ_COMPLETE","features":[327]},{"name":"IRP_MJ_MDL_WRITE_COMPLETE","features":[327]},{"name":"IRP_MJ_NETWORK_QUERY_OPEN","features":[327]},{"name":"IRP_MJ_OPERATION_END","features":[327]},{"name":"IRP_MJ_PREPARE_MDL_WRITE","features":[327]},{"name":"IRP_MJ_QUERY_OPEN","features":[327]},{"name":"IRP_MJ_RELEASE_FOR_CC_FLUSH","features":[327]},{"name":"IRP_MJ_RELEASE_FOR_MOD_WRITE","features":[327]},{"name":"IRP_MJ_RELEASE_FOR_SECTION_SYNCHRONIZATION","features":[327]},{"name":"IRP_MJ_VOLUME_DISMOUNT","features":[327]},{"name":"IRP_MJ_VOLUME_MOUNT","features":[327]},{"name":"PFLTOPLOCK_PREPOST_CALLBACKDATA_ROUTINE","features":[306,327,307,305,308,310,311,312]},{"name":"PFLTOPLOCK_WAIT_COMPLETE_ROUTINE","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_CALLBACK_DATA_QUEUE_ACQUIRE","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_CALLBACK_DATA_QUEUE_COMPLETE_CANCELED_IO","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_CALLBACK_DATA_QUEUE_INSERT_IO","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_CALLBACK_DATA_QUEUE_PEEK_NEXT_IO","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_CALLBACK_DATA_QUEUE_RELEASE","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_CALLBACK_DATA_QUEUE_REMOVE_IO","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_COMPLETED_ASYNC_IO_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_COMPLETE_CANCELED_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_COMPLETE_LOCK_CALLBACK_DATA_ROUTINE","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_CONNECT_NOTIFY","features":[327,305]},{"name":"PFLT_CONTEXT","features":[327]},{"name":"PFLT_CONTEXT_ALLOCATE_CALLBACK","features":[306,327]},{"name":"PFLT_CONTEXT_CLEANUP_CALLBACK","features":[327]},{"name":"PFLT_CONTEXT_FREE_CALLBACK","features":[327]},{"name":"PFLT_DEFERRED_IO_WORKITEM","features":[327]},{"name":"PFLT_DEFERRED_IO_WORKITEM_ROUTINE","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_DISCONNECT_NOTIFY","features":[327]},{"name":"PFLT_FILTER","features":[327]},{"name":"PFLT_FILTER_UNLOAD_CALLBACK","features":[327,305]},{"name":"PFLT_GENERATE_FILE_NAME","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_GENERIC_WORKITEM","features":[327]},{"name":"PFLT_GENERIC_WORKITEM_ROUTINE","features":[327]},{"name":"PFLT_GET_OPERATION_STATUS_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_INSTANCE","features":[327]},{"name":"PFLT_INSTANCE_QUERY_TEARDOWN_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_INSTANCE_SETUP_CALLBACK","features":[306,327,307,305,308,328,310,311,312]},{"name":"PFLT_INSTANCE_TEARDOWN_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_MESSAGE_NOTIFY","features":[327,305]},{"name":"PFLT_NORMALIZE_CONTEXT_CLEANUP","features":[327]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT","features":[327,305]},{"name":"PFLT_NORMALIZE_NAME_COMPONENT_EX","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_PORT","features":[327]},{"name":"PFLT_POST_OPERATION_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_PRE_OPERATION_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_SECTION_CONFLICT_NOTIFICATION_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_TRANSACTION_NOTIFICATION_CALLBACK","features":[306,327,307,305,308,310,311,312]},{"name":"PFLT_VOLUME","features":[327]},{"name":"VOL_PROP_FL_DAX_VOLUME","features":[327]}],"347":[{"name":"NtDeviceIoControlFile","features":[329,305,310]}],"348":[{"name":"NtMapViewOfSection","features":[330,305]},{"name":"NtOpenSection","features":[306,330,305]},{"name":"NtUnmapViewOfSection","features":[330,305]},{"name":"SECTION_INHERIT","features":[330]},{"name":"ViewShare","features":[330]},{"name":"ViewUnmap","features":[330]},{"name":"ZwMapViewOfSection","features":[330,305]},{"name":"ZwOpenSection","features":[306,330,305]},{"name":"ZwUnmapViewOfSection","features":[330,305]}],"349":[{"name":"ORCloseHive","features":[331,305]},{"name":"ORCloseKey","features":[331,305]},{"name":"ORCreateHive","features":[331,305]},{"name":"ORCreateKey","features":[331,305,308]},{"name":"ORDeleteKey","features":[331,305]},{"name":"ORDeleteValue","features":[331,305]},{"name":"OREnumKey","features":[331,305]},{"name":"OREnumValue","features":[331,305]},{"name":"ORGetKeySecurity","features":[331,305,308]},{"name":"ORGetValue","features":[331,305]},{"name":"ORGetVersion","features":[331,305]},{"name":"ORGetVirtualFlags","features":[331,305]},{"name":"ORHKEY","features":[331]},{"name":"ORMergeHives","features":[331,305]},{"name":"OROpenHive","features":[331,305]},{"name":"OROpenHiveByHandle","features":[331,305]},{"name":"OROpenKey","features":[331,305]},{"name":"ORQueryInfoKey","features":[331,305]},{"name":"ORRenameKey","features":[331,305]},{"name":"ORSaveHive","features":[331,305]},{"name":"ORSetKeySecurity","features":[331,305,308]},{"name":"ORSetValue","features":[331,305]},{"name":"ORSetVirtualFlags","features":[331,305]},{"name":"ORShutdown","features":[331,305]},{"name":"ORStart","features":[331,305]}],"350":[{"name":"KEY_INFORMATION_CLASS","features":[332]},{"name":"KEY_SET_INFORMATION_CLASS","features":[332]},{"name":"KEY_VALUE_ENTRY","features":[332,305]},{"name":"KEY_VALUE_INFORMATION_CLASS","features":[332]},{"name":"KeyBasicInformation","features":[332]},{"name":"KeyCachedInformation","features":[332]},{"name":"KeyControlFlagsInformation","features":[332]},{"name":"KeyFlagsInformation","features":[332]},{"name":"KeyFullInformation","features":[332]},{"name":"KeyHandleTagsInformation","features":[332]},{"name":"KeyLayerInformation","features":[332]},{"name":"KeyNameInformation","features":[332]},{"name":"KeyNodeInformation","features":[332]},{"name":"KeySetDebugInformation","features":[332]},{"name":"KeySetHandleTagsInformation","features":[332]},{"name":"KeySetLayerInformation","features":[332]},{"name":"KeySetVirtualizationInformation","features":[332]},{"name":"KeyTrustInformation","features":[332]},{"name":"KeyValueBasicInformation","features":[332]},{"name":"KeyValueFullInformation","features":[332]},{"name":"KeyValueFullInformationAlign64","features":[332]},{"name":"KeyValueLayerInformation","features":[332]},{"name":"KeyValuePartialInformation","features":[332]},{"name":"KeyValuePartialInformationAlign64","features":[332]},{"name":"KeyVirtualizationInformation","features":[332]},{"name":"KeyWow64FlagsInformation","features":[332]},{"name":"KeyWriteTimeInformation","features":[332]},{"name":"MaxKeyInfoClass","features":[332]},{"name":"MaxKeySetInfoClass","features":[332]},{"name":"MaxKeyValueInfoClass","features":[332]},{"name":"NtCommitRegistryTransaction","features":[332,305]},{"name":"NtCreateKey","features":[306,332,305]},{"name":"NtCreateKeyTransacted","features":[306,332,305]},{"name":"NtCreateRegistryTransaction","features":[306,332,305]},{"name":"NtDeleteKey","features":[332,305]},{"name":"NtDeleteValueKey","features":[332,305]},{"name":"NtEnumerateKey","features":[332,305]},{"name":"NtEnumerateValueKey","features":[332,305]},{"name":"NtFlushKey","features":[332,305]},{"name":"NtNotifyChangeMultipleKeys","features":[306,332,305,310]},{"name":"NtOpenKey","features":[306,332,305]},{"name":"NtOpenKeyEx","features":[306,332,305]},{"name":"NtOpenKeyTransacted","features":[306,332,305]},{"name":"NtOpenKeyTransactedEx","features":[306,332,305]},{"name":"NtOpenRegistryTransaction","features":[306,332,305]},{"name":"NtQueryKey","features":[332,305]},{"name":"NtQueryMultipleValueKey","features":[332,305]},{"name":"NtQueryValueKey","features":[332,305]},{"name":"NtRenameKey","features":[332,305]},{"name":"NtRestoreKey","features":[332,305]},{"name":"NtRollbackRegistryTransaction","features":[332,305]},{"name":"NtSaveKey","features":[332,305]},{"name":"NtSaveKeyEx","features":[332,305]},{"name":"NtSetInformationKey","features":[332,305]},{"name":"NtSetValueKey","features":[332,305]},{"name":"REG_ENUMERATE_KEY_INFORMATION","features":[332]},{"name":"REG_ENUMERATE_VALUE_KEY_INFORMATION","features":[332]},{"name":"REG_QUERY_KEY_INFORMATION","features":[332]},{"name":"REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION","features":[332,305]},{"name":"REG_QUERY_VALUE_KEY_INFORMATION","features":[332,305]},{"name":"REG_SET_INFORMATION_KEY_INFORMATION","features":[332]},{"name":"ZwCommitRegistryTransaction","features":[332,305]},{"name":"ZwCreateKey","features":[306,332,305]},{"name":"ZwCreateKeyTransacted","features":[306,332,305]},{"name":"ZwCreateRegistryTransaction","features":[306,332,305]},{"name":"ZwDeleteKey","features":[332,305]},{"name":"ZwDeleteValueKey","features":[332,305]},{"name":"ZwEnumerateKey","features":[332,305]},{"name":"ZwEnumerateValueKey","features":[332,305]},{"name":"ZwFlushKey","features":[332,305]},{"name":"ZwNotifyChangeMultipleKeys","features":[306,332,305,310]},{"name":"ZwOpenKey","features":[306,332,305]},{"name":"ZwOpenKeyEx","features":[306,332,305]},{"name":"ZwOpenKeyTransacted","features":[306,332,305]},{"name":"ZwOpenKeyTransactedEx","features":[306,332,305]},{"name":"ZwOpenRegistryTransaction","features":[306,332,305]},{"name":"ZwQueryKey","features":[332,305]},{"name":"ZwQueryMultipleValueKey","features":[332,305]},{"name":"ZwQueryValueKey","features":[332,305]},{"name":"ZwRenameKey","features":[332,305]},{"name":"ZwRestoreKey","features":[332,305]},{"name":"ZwRollbackRegistryTransaction","features":[332,305]},{"name":"ZwSaveKey","features":[332,305]},{"name":"ZwSaveKeyEx","features":[332,305]},{"name":"ZwSetInformationKey","features":[332,305]},{"name":"ZwSetValueKey","features":[332,305]}],"351":[{"name":"NtQuerySystemInformation","features":[333,305]},{"name":"NtQuerySystemTime","features":[333,305]},{"name":"NtQueryTimerResolution","features":[333,305]},{"name":"SYSTEM_INFORMATION_CLASS","features":[333]},{"name":"SystemBasicInformation","features":[333]},{"name":"SystemCodeIntegrityInformation","features":[333]},{"name":"SystemExceptionInformation","features":[333]},{"name":"SystemInterruptInformation","features":[333]},{"name":"SystemLookasideInformation","features":[333]},{"name":"SystemPerformanceInformation","features":[333]},{"name":"SystemPolicyInformation","features":[333]},{"name":"SystemProcessInformation","features":[333]},{"name":"SystemProcessorPerformanceInformation","features":[333]},{"name":"SystemRegistryQuotaInformation","features":[333]},{"name":"SystemTimeOfDayInformation","features":[333]},{"name":"ZwQuerySystemInformation","features":[333,305]},{"name":"ZwQuerySystemTime","features":[333,305]},{"name":"ZwQueryTimerResolution","features":[333,305]}],"352":[{"name":"ACPIBus","features":[307]},{"name":"ACPI_DEBUGGING_DEVICE_IN_USE","features":[307]},{"name":"ACPI_INTERFACE_STANDARD","features":[306,309,307,305,308,310,311,312]},{"name":"ACPI_INTERFACE_STANDARD2","features":[307,305]},{"name":"ADAPTER_INFO_API_BYPASS","features":[307]},{"name":"ADAPTER_INFO_SYNCHRONOUS_CALLBACK","features":[307]},{"name":"AGP_TARGET_BUS_INTERFACE_STANDARD","features":[307]},{"name":"ALLOCATE_FUNCTION","features":[306,307]},{"name":"ALLOC_DATA_PRAGMA","features":[307]},{"name":"ALLOC_PRAGMA","features":[307]},{"name":"ALTERNATIVE_ARCHITECTURE_TYPE","features":[307]},{"name":"AMD_L1_CACHE_INFO","features":[307]},{"name":"AMD_L2_CACHE_INFO","features":[307]},{"name":"AMD_L3_CACHE_INFO","features":[307]},{"name":"ANY_SIZE","features":[307]},{"name":"APC_LEVEL","features":[307]},{"name":"ARBITER_ACTION","features":[307]},{"name":"ARBITER_ADD_RESERVED_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"ARBITER_BOOT_ALLOCATION_PARAMETERS","features":[307,311]},{"name":"ARBITER_CONFLICT_INFO","features":[306,309,307,305,308,310,311,312]},{"name":"ARBITER_FLAG_BOOT_CONFIG","features":[307]},{"name":"ARBITER_FLAG_OTHER_ENUM","features":[307]},{"name":"ARBITER_FLAG_ROOT_ENUM","features":[307]},{"name":"ARBITER_INTERFACE","features":[306,309,307,305,308,310,311,312]},{"name":"ARBITER_LIST_ENTRY","features":[306,309,307,305,308,310,311,312]},{"name":"ARBITER_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"ARBITER_PARTIAL","features":[307]},{"name":"ARBITER_QUERY_ALLOCATED_RESOURCES_PARAMETERS","features":[307]},{"name":"ARBITER_QUERY_ARBITRATE_PARAMETERS","features":[307,311]},{"name":"ARBITER_QUERY_CONFLICT_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"ARBITER_REQUEST_SOURCE","features":[307]},{"name":"ARBITER_RESULT","features":[307]},{"name":"ARBITER_RETEST_ALLOCATION_PARAMETERS","features":[307,311]},{"name":"ARBITER_TEST_ALLOCATION_PARAMETERS","features":[307,311]},{"name":"ARM64_NT_CONTEXT","features":[307,334]},{"name":"ARM64_PCR_RESERVED_MASK","features":[307]},{"name":"ARM_PROCESSOR_ERROR_SECTION_GUID","features":[307]},{"name":"ATS_DEVICE_SVM_OPTOUT","features":[307]},{"name":"AccessFlagFault","features":[307]},{"name":"AddressSizeFault","features":[307]},{"name":"AgpControl","features":[307]},{"name":"AllLoggerHandlesClass","features":[307]},{"name":"AperturePageSize","features":[307]},{"name":"ApertureSize","features":[307]},{"name":"ApicDestinationModeLogicalClustered","features":[307]},{"name":"ApicDestinationModeLogicalFlat","features":[307]},{"name":"ApicDestinationModePhysical","features":[307]},{"name":"ApicDestinationModeUnknown","features":[307]},{"name":"ArbiterActionAddReserved","features":[307]},{"name":"ArbiterActionBootAllocation","features":[307]},{"name":"ArbiterActionCommitAllocation","features":[307]},{"name":"ArbiterActionQueryAllocatedResources","features":[307]},{"name":"ArbiterActionQueryArbitrate","features":[307]},{"name":"ArbiterActionQueryConflict","features":[307]},{"name":"ArbiterActionRetestAllocation","features":[307]},{"name":"ArbiterActionRollbackAllocation","features":[307]},{"name":"ArbiterActionTestAllocation","features":[307]},{"name":"ArbiterActionWriteReservedResources","features":[307]},{"name":"ArbiterRequestHalReported","features":[307]},{"name":"ArbiterRequestLegacyAssigned","features":[307]},{"name":"ArbiterRequestLegacyReported","features":[307]},{"name":"ArbiterRequestPnpDetected","features":[307]},{"name":"ArbiterRequestPnpEnumerated","features":[307]},{"name":"ArbiterRequestUndefined","features":[307]},{"name":"ArbiterResultExternalConflict","features":[307]},{"name":"ArbiterResultNullRequest","features":[307]},{"name":"ArbiterResultSuccess","features":[307]},{"name":"ArbiterResultUndefined","features":[307]},{"name":"ArcSystem","features":[307]},{"name":"AssignSecurityDescriptor","features":[307]},{"name":"AudioController","features":[307]},{"name":"BDCB_CALLBACK_TYPE","features":[307]},{"name":"BDCB_CLASSIFICATION","features":[307]},{"name":"BDCB_IMAGE_INFORMATION","features":[307,305]},{"name":"BDCB_STATUS_UPDATE_CONTEXT","features":[307]},{"name":"BDCB_STATUS_UPDATE_TYPE","features":[307]},{"name":"BMC_NOTIFY_TYPE_GUID","features":[307]},{"name":"BOOTDISK_INFORMATION","features":[307]},{"name":"BOOTDISK_INFORMATION_EX","features":[307,305]},{"name":"BOOTDISK_INFORMATION_LITE","features":[307]},{"name":"BOOT_DRIVER_CALLBACK_FUNCTION","features":[307,305]},{"name":"BOOT_NOTIFY_TYPE_GUID","features":[307]},{"name":"BOUND_CALLBACK","features":[307]},{"name":"BOUND_CALLBACK_STATUS","features":[307]},{"name":"BUS_DATA_TYPE","features":[307]},{"name":"BUS_INTERFACE_STANDARD","features":[306,309,307,305,308,310,311,312]},{"name":"BUS_QUERY_ID_TYPE","features":[307]},{"name":"BUS_RESOURCE_UPDATE_INTERFACE","features":[307,305]},{"name":"BUS_SPECIFIC_RESET_FLAGS","features":[307]},{"name":"BackgroundWorkQueue","features":[307]},{"name":"BdCbClassificationEnd","features":[307]},{"name":"BdCbClassificationKnownBadImage","features":[307]},{"name":"BdCbClassificationKnownBadImageBootCritical","features":[307]},{"name":"BdCbClassificationKnownGoodImage","features":[307]},{"name":"BdCbClassificationUnknownImage","features":[307]},{"name":"BdCbInitializeImage","features":[307]},{"name":"BdCbStatusPrepareForDependencyLoad","features":[307]},{"name":"BdCbStatusPrepareForDriverLoad","features":[307]},{"name":"BdCbStatusPrepareForUnload","features":[307]},{"name":"BdCbStatusUpdate","features":[307]},{"name":"BoundExceptionContinueSearch","features":[307]},{"name":"BoundExceptionError","features":[307]},{"name":"BoundExceptionHandled","features":[307]},{"name":"BoundExceptionMaximum","features":[307]},{"name":"BufferEmpty","features":[307]},{"name":"BufferFinished","features":[307]},{"name":"BufferIncomplete","features":[307]},{"name":"BufferInserted","features":[307]},{"name":"BufferStarted","features":[307]},{"name":"BusQueryCompatibleIDs","features":[307]},{"name":"BusQueryContainerID","features":[307]},{"name":"BusQueryDeviceID","features":[307]},{"name":"BusQueryDeviceSerialNumber","features":[307]},{"name":"BusQueryHardwareIDs","features":[307]},{"name":"BusQueryInstanceID","features":[307]},{"name":"BusRelations","features":[307]},{"name":"BusWidth32Bits","features":[307]},{"name":"BusWidth64Bits","features":[307]},{"name":"CBus","features":[307]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[307]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION","features":[306,309,307,305,308,324,310,311,312]},{"name":"CLFS_SCAN_BACKWARD","features":[307]},{"name":"CLFS_SCAN_BUFFERED","features":[307]},{"name":"CLFS_SCAN_CLOSE","features":[307]},{"name":"CLFS_SCAN_FORWARD","features":[307]},{"name":"CLFS_SCAN_INIT","features":[307]},{"name":"CLFS_SCAN_INITIALIZED","features":[307]},{"name":"CLOCK1_LEVEL","features":[307]},{"name":"CLOCK2_LEVEL","features":[307]},{"name":"CLOCK_LEVEL","features":[307]},{"name":"CMCI_LEVEL","features":[307]},{"name":"CMCI_NOTIFY_TYPE_GUID","features":[307]},{"name":"CMC_DRIVER_INFO","features":[306,307]},{"name":"CMC_NOTIFY_TYPE_GUID","features":[307]},{"name":"CM_COMPONENT_INFORMATION","features":[307]},{"name":"CM_DISK_GEOMETRY_DEVICE_DATA","features":[307]},{"name":"CM_EISA_FUNCTION_INFORMATION","features":[307]},{"name":"CM_EISA_SLOT_INFORMATION","features":[307]},{"name":"CM_FLOPPY_DEVICE_DATA","features":[307]},{"name":"CM_FULL_RESOURCE_DESCRIPTOR","features":[307]},{"name":"CM_INT13_DRIVE_PARAMETER","features":[307]},{"name":"CM_KEYBOARD_DEVICE_DATA","features":[307]},{"name":"CM_MCA_POS_DATA","features":[307]},{"name":"CM_MONITOR_DEVICE_DATA","features":[307]},{"name":"CM_PARTIAL_RESOURCE_DESCRIPTOR","features":[307]},{"name":"CM_PARTIAL_RESOURCE_LIST","features":[307]},{"name":"CM_PCCARD_DEVICE_DATA","features":[307]},{"name":"CM_PNP_BIOS_DEVICE_NODE","features":[307]},{"name":"CM_PNP_BIOS_INSTALLATION_CHECK","features":[307]},{"name":"CM_POWER_DATA","features":[307,312]},{"name":"CM_RESOURCE_CONNECTION_CLASS_FUNCTION_CONFIG","features":[307]},{"name":"CM_RESOURCE_CONNECTION_CLASS_GPIO","features":[307]},{"name":"CM_RESOURCE_CONNECTION_CLASS_SERIAL","features":[307]},{"name":"CM_RESOURCE_CONNECTION_TYPE_FUNCTION_CONFIG","features":[307]},{"name":"CM_RESOURCE_CONNECTION_TYPE_GPIO_IO","features":[307]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_I2C","features":[307]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_SPI","features":[307]},{"name":"CM_RESOURCE_CONNECTION_TYPE_SERIAL_UART","features":[307]},{"name":"CM_RESOURCE_DMA_16","features":[307]},{"name":"CM_RESOURCE_DMA_32","features":[307]},{"name":"CM_RESOURCE_DMA_8","features":[307]},{"name":"CM_RESOURCE_DMA_8_AND_16","features":[307]},{"name":"CM_RESOURCE_DMA_BUS_MASTER","features":[307]},{"name":"CM_RESOURCE_DMA_TYPE_A","features":[307]},{"name":"CM_RESOURCE_DMA_TYPE_B","features":[307]},{"name":"CM_RESOURCE_DMA_TYPE_F","features":[307]},{"name":"CM_RESOURCE_DMA_V3","features":[307]},{"name":"CM_RESOURCE_INTERRUPT_LATCHED","features":[307]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_LATCHED_BITS","features":[307]},{"name":"CM_RESOURCE_INTERRUPT_LEVEL_SENSITIVE","features":[307]},{"name":"CM_RESOURCE_INTERRUPT_MESSAGE","features":[307]},{"name":"CM_RESOURCE_INTERRUPT_POLICY_INCLUDED","features":[307]},{"name":"CM_RESOURCE_INTERRUPT_SECONDARY_INTERRUPT","features":[307]},{"name":"CM_RESOURCE_INTERRUPT_WAKE_HINT","features":[307]},{"name":"CM_RESOURCE_LIST","features":[307]},{"name":"CM_RESOURCE_MEMORY_24","features":[307]},{"name":"CM_RESOURCE_MEMORY_BAR","features":[307]},{"name":"CM_RESOURCE_MEMORY_CACHEABLE","features":[307]},{"name":"CM_RESOURCE_MEMORY_COMBINEDWRITE","features":[307]},{"name":"CM_RESOURCE_MEMORY_COMPAT_FOR_INACCESSIBLE_RANGE","features":[307]},{"name":"CM_RESOURCE_MEMORY_LARGE","features":[307]},{"name":"CM_RESOURCE_MEMORY_LARGE_40","features":[307]},{"name":"CM_RESOURCE_MEMORY_LARGE_40_MAXLEN","features":[307]},{"name":"CM_RESOURCE_MEMORY_LARGE_48","features":[307]},{"name":"CM_RESOURCE_MEMORY_LARGE_48_MAXLEN","features":[307]},{"name":"CM_RESOURCE_MEMORY_LARGE_64","features":[307]},{"name":"CM_RESOURCE_MEMORY_LARGE_64_MAXLEN","features":[307]},{"name":"CM_RESOURCE_MEMORY_PREFETCHABLE","features":[307]},{"name":"CM_RESOURCE_MEMORY_READ_ONLY","features":[307]},{"name":"CM_RESOURCE_MEMORY_READ_WRITE","features":[307]},{"name":"CM_RESOURCE_MEMORY_WINDOW_DECODE","features":[307]},{"name":"CM_RESOURCE_MEMORY_WRITEABILITY_MASK","features":[307]},{"name":"CM_RESOURCE_MEMORY_WRITE_ONLY","features":[307]},{"name":"CM_RESOURCE_PORT_10_BIT_DECODE","features":[307]},{"name":"CM_RESOURCE_PORT_12_BIT_DECODE","features":[307]},{"name":"CM_RESOURCE_PORT_16_BIT_DECODE","features":[307]},{"name":"CM_RESOURCE_PORT_BAR","features":[307]},{"name":"CM_RESOURCE_PORT_IO","features":[307]},{"name":"CM_RESOURCE_PORT_MEMORY","features":[307]},{"name":"CM_RESOURCE_PORT_PASSIVE_DECODE","features":[307]},{"name":"CM_RESOURCE_PORT_POSITIVE_DECODE","features":[307]},{"name":"CM_RESOURCE_PORT_WINDOW_DECODE","features":[307]},{"name":"CM_ROM_BLOCK","features":[307]},{"name":"CM_SCSI_DEVICE_DATA","features":[307]},{"name":"CM_SERIAL_DEVICE_DATA","features":[307]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[307]},{"name":"CM_SHARE_DISPOSITION","features":[307]},{"name":"CM_SONIC_DEVICE_DATA","features":[307]},{"name":"CM_VIDEO_DEVICE_DATA","features":[307]},{"name":"CONFIGURATION_INFORMATION","features":[307,305]},{"name":"CONFIGURATION_TYPE","features":[307]},{"name":"CONNECT_CURRENT_VERSION","features":[307]},{"name":"CONNECT_FULLY_SPECIFIED","features":[307]},{"name":"CONNECT_FULLY_SPECIFIED_GROUP","features":[307]},{"name":"CONNECT_LINE_BASED","features":[307]},{"name":"CONNECT_MESSAGE_BASED","features":[307]},{"name":"CONNECT_MESSAGE_BASED_PASSIVE","features":[307]},{"name":"CONTROLLER_OBJECT","features":[306,307,305,311]},{"name":"COUNTED_REASON_CONTEXT","features":[307,305]},{"name":"CP15_PCR_RESERVED_MASK","features":[307]},{"name":"CPER_EMPTY_GUID","features":[307]},{"name":"CPE_DRIVER_INFO","features":[306,307]},{"name":"CPE_NOTIFY_TYPE_GUID","features":[307]},{"name":"CP_GET_ERROR","features":[307]},{"name":"CP_GET_NODATA","features":[307]},{"name":"CP_GET_SUCCESS","features":[307]},{"name":"CRASHDUMP_FUNCTIONS_INTERFACE","features":[307,305]},{"name":"CREATE_FILE_TYPE","features":[307]},{"name":"CREATE_USER_PROCESS_ECP_CONTEXT","features":[307]},{"name":"CardPresent","features":[307]},{"name":"CbusConfiguration","features":[307]},{"name":"CdromController","features":[307]},{"name":"CentralProcessor","features":[307]},{"name":"ClfsAddLogContainer","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsAddLogContainerSet","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsAdvanceLogBase","features":[307,305,324]},{"name":"ClfsAlignReservedLog","features":[307,305]},{"name":"ClfsAllocReservedLog","features":[307,305]},{"name":"ClfsClientRecord","features":[307]},{"name":"ClfsCloseAndResetLogFile","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsCloseLogFileObject","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsContainerActive","features":[307]},{"name":"ClfsContainerActivePendingDelete","features":[307]},{"name":"ClfsContainerInactive","features":[307]},{"name":"ClfsContainerInitializing","features":[307]},{"name":"ClfsContainerPendingArchive","features":[307]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[307]},{"name":"ClfsCreateLogFile","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsCreateMarshallingArea","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsCreateMarshallingAreaEx","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsCreateScanContext","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsDataRecord","features":[307]},{"name":"ClfsDeleteLogByPointer","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsDeleteLogFile","features":[307,305]},{"name":"ClfsDeleteMarshallingArea","features":[307,305]},{"name":"ClfsEarlierLsn","features":[307,324]},{"name":"ClfsFinalize","features":[307]},{"name":"ClfsFlushBuffers","features":[307,305]},{"name":"ClfsFlushToLsn","features":[307,305,324]},{"name":"ClfsFreeReservedLog","features":[307,305]},{"name":"ClfsGetContainerName","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsGetIoStatistics","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsGetLogFileInformation","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsInitialize","features":[307,305]},{"name":"ClfsLaterLsn","features":[307,324]},{"name":"ClfsLsnBlockOffset","features":[307,324]},{"name":"ClfsLsnContainer","features":[307,324]},{"name":"ClfsLsnCreate","features":[307,324]},{"name":"ClfsLsnDifference","features":[307,305,324]},{"name":"ClfsLsnEqual","features":[307,305,324]},{"name":"ClfsLsnGreater","features":[307,305,324]},{"name":"ClfsLsnInvalid","features":[307,305,324]},{"name":"ClfsLsnLess","features":[307,305,324]},{"name":"ClfsLsnNull","features":[307,305,324]},{"name":"ClfsLsnRecordSequence","features":[307,324]},{"name":"ClfsMgmtDeregisterManagedClient","features":[307,305]},{"name":"ClfsMgmtHandleLogFileFull","features":[307,305]},{"name":"ClfsMgmtInstallPolicy","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsMgmtQueryPolicy","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsMgmtRegisterManagedClient","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsMgmtRemovePolicy","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsMgmtSetLogFileSize","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsMgmtSetLogFileSizeAsClient","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsMgmtTailAdvanceFailure","features":[307,305]},{"name":"ClfsNullRecord","features":[307]},{"name":"ClfsQueryLogFileInformation","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsReadLogRecord","features":[307,305,324]},{"name":"ClfsReadNextLogRecord","features":[307,305,324]},{"name":"ClfsReadPreviousRestartArea","features":[307,305,324]},{"name":"ClfsReadRestartArea","features":[307,305,324]},{"name":"ClfsRemoveLogContainer","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsRemoveLogContainerSet","features":[306,309,307,305,308,310,311,312]},{"name":"ClfsReserveAndAppendLog","features":[307,305,324]},{"name":"ClfsReserveAndAppendLogAligned","features":[307,305,324]},{"name":"ClfsRestartRecord","features":[307]},{"name":"ClfsScanLogContainers","features":[307,305,324]},{"name":"ClfsSetArchiveTail","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsSetEndOfLog","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsSetLogFileInformation","features":[306,309,307,305,308,324,310,311,312]},{"name":"ClfsTerminateReadLog","features":[307,305]},{"name":"ClfsWriteRestartArea","features":[307,305,324]},{"name":"ClsContainerActive","features":[307]},{"name":"ClsContainerActivePendingDelete","features":[307]},{"name":"ClsContainerInactive","features":[307]},{"name":"ClsContainerInitializing","features":[307]},{"name":"ClsContainerPendingArchive","features":[307]},{"name":"ClsContainerPendingArchiveAndDelete","features":[307]},{"name":"CmCallbackGetKeyObjectID","features":[307,305]},{"name":"CmCallbackGetKeyObjectIDEx","features":[307,305]},{"name":"CmCallbackReleaseKeyObjectIDEx","features":[307,305]},{"name":"CmGetBoundTransaction","features":[307]},{"name":"CmGetCallbackVersion","features":[307]},{"name":"CmRegisterCallback","features":[307,305]},{"name":"CmRegisterCallbackEx","features":[307,305]},{"name":"CmResourceShareDeviceExclusive","features":[307]},{"name":"CmResourceShareDriverExclusive","features":[307]},{"name":"CmResourceShareShared","features":[307]},{"name":"CmResourceShareUndetermined","features":[307]},{"name":"CmResourceTypeBusNumber","features":[307]},{"name":"CmResourceTypeConfigData","features":[307]},{"name":"CmResourceTypeConnection","features":[307]},{"name":"CmResourceTypeDevicePrivate","features":[307]},{"name":"CmResourceTypeDeviceSpecific","features":[307]},{"name":"CmResourceTypeDma","features":[307]},{"name":"CmResourceTypeInterrupt","features":[307]},{"name":"CmResourceTypeMaximum","features":[307]},{"name":"CmResourceTypeMemory","features":[307]},{"name":"CmResourceTypeMemoryLarge","features":[307]},{"name":"CmResourceTypeMfCardConfig","features":[307]},{"name":"CmResourceTypeNonArbitrated","features":[307]},{"name":"CmResourceTypeNull","features":[307]},{"name":"CmResourceTypePcCardConfig","features":[307]},{"name":"CmResourceTypePort","features":[307]},{"name":"CmSetCallbackObjectContext","features":[307,305]},{"name":"CmUnRegisterCallback","features":[307,305]},{"name":"Cmos","features":[307]},{"name":"CommonBufferConfigTypeHardwareAccessPermissions","features":[307]},{"name":"CommonBufferConfigTypeLogicalAddressLimits","features":[307]},{"name":"CommonBufferConfigTypeMax","features":[307]},{"name":"CommonBufferConfigTypeSubSection","features":[307]},{"name":"CommonBufferHardwareAccessMax","features":[307]},{"name":"CommonBufferHardwareAccessReadOnly","features":[307]},{"name":"CommonBufferHardwareAccessReadWrite","features":[307]},{"name":"CommonBufferHardwareAccessWriteOnly","features":[307]},{"name":"Compatible","features":[307]},{"name":"ConfigurationSpaceUndefined","features":[307]},{"name":"ContinueCompletion","features":[307]},{"name":"CreateFileTypeMailslot","features":[307]},{"name":"CreateFileTypeNamedPipe","features":[307]},{"name":"CreateFileTypeNone","features":[307]},{"name":"CriticalWorkQueue","features":[307]},{"name":"CustomPriorityWorkQueue","features":[307]},{"name":"D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[307,305]},{"name":"D3COLD_LAST_TRANSITION_STATUS","features":[307]},{"name":"D3COLD_REQUEST_AUX_POWER","features":[307,305]},{"name":"D3COLD_REQUEST_CORE_POWER_RAIL","features":[307,305]},{"name":"D3COLD_REQUEST_PERST_DELAY","features":[307,305]},{"name":"D3COLD_SUPPORT_INTERFACE","features":[307,305]},{"name":"D3COLD_SUPPORT_INTERFACE_VERSION","features":[307]},{"name":"DBG_DEVICE_FLAG_BARS_MAPPED","features":[307]},{"name":"DBG_DEVICE_FLAG_HAL_SCRATCH_ALLOCATED","features":[307]},{"name":"DBG_DEVICE_FLAG_HOST_VISIBLE_ALLOCATED","features":[307]},{"name":"DBG_DEVICE_FLAG_SCRATCH_ALLOCATED","features":[307]},{"name":"DBG_DEVICE_FLAG_SYNTHETIC","features":[307]},{"name":"DBG_DEVICE_FLAG_UNCACHED_MEMORY","features":[307]},{"name":"DBG_STATUS_BUGCHECK_FIRST","features":[307]},{"name":"DBG_STATUS_BUGCHECK_SECOND","features":[307]},{"name":"DBG_STATUS_CONTROL_C","features":[307]},{"name":"DBG_STATUS_DEBUG_CONTROL","features":[307]},{"name":"DBG_STATUS_FATAL","features":[307]},{"name":"DBG_STATUS_SYSRQ","features":[307]},{"name":"DBG_STATUS_WORKER","features":[307]},{"name":"DEBUGGING_DEVICE_IN_USE","features":[307]},{"name":"DEBUGGING_DEVICE_IN_USE_INFORMATION","features":[307]},{"name":"DEBUG_DEVICE_ADDRESS","features":[307,305]},{"name":"DEBUG_DEVICE_DESCRIPTOR","features":[307,305]},{"name":"DEBUG_EFI_IOMMU_DATA","features":[307]},{"name":"DEBUG_MEMORY_REQUIREMENTS","features":[307,305]},{"name":"DEBUG_TRANSPORT_DATA","features":[307,305]},{"name":"DEFAULT_DEVICE_DRIVER_CREATOR_GUID","features":[307]},{"name":"DEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[307,305]},{"name":"DEVICE_BUS_SPECIFIC_RESET_INFO","features":[307]},{"name":"DEVICE_BUS_SPECIFIC_RESET_TYPE","features":[307]},{"name":"DEVICE_CAPABILITIES","features":[307,312]},{"name":"DEVICE_CHANGE_COMPLETE_CALLBACK","features":[307]},{"name":"DEVICE_DESCRIPTION","features":[307,305]},{"name":"DEVICE_DESCRIPTION_VERSION","features":[307]},{"name":"DEVICE_DESCRIPTION_VERSION1","features":[307]},{"name":"DEVICE_DESCRIPTION_VERSION2","features":[307]},{"name":"DEVICE_DESCRIPTION_VERSION3","features":[307]},{"name":"DEVICE_DIRECTORY_TYPE","features":[307]},{"name":"DEVICE_DRIVER_NOTIFY_TYPE_GUID","features":[307]},{"name":"DEVICE_FAULT_CONFIGURATION","features":[307]},{"name":"DEVICE_FLAGS","features":[307]},{"name":"DEVICE_INSTALL_STATE","features":[307]},{"name":"DEVICE_INTERFACE_CHANGE_NOTIFICATION","features":[307,305]},{"name":"DEVICE_INTERFACE_INCLUDE_NONACTIVE","features":[307]},{"name":"DEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[307,305]},{"name":"DEVICE_REGISTRY_PROPERTY","features":[307]},{"name":"DEVICE_RELATIONS","features":[306,309,307,305,308,310,311,312]},{"name":"DEVICE_RELATION_TYPE","features":[307]},{"name":"DEVICE_REMOVAL_POLICY","features":[307]},{"name":"DEVICE_RESET_COMPLETION","features":[307,305]},{"name":"DEVICE_RESET_HANDLER","features":[307,305]},{"name":"DEVICE_RESET_INTERFACE_STANDARD","features":[307,305]},{"name":"DEVICE_RESET_INTERFACE_VERSION","features":[307]},{"name":"DEVICE_RESET_INTERFACE_VERSION_1","features":[307]},{"name":"DEVICE_RESET_INTERFACE_VERSION_2","features":[307]},{"name":"DEVICE_RESET_INTERFACE_VERSION_3","features":[307]},{"name":"DEVICE_RESET_STATUS_FLAGS","features":[307]},{"name":"DEVICE_RESET_TYPE","features":[307]},{"name":"DEVICE_TEXT_TYPE","features":[307]},{"name":"DEVICE_USAGE_NOTIFICATION_TYPE","features":[307]},{"name":"DEVICE_WAKE_DEPTH","features":[307]},{"name":"DIRECTORY_CREATE_OBJECT","features":[307]},{"name":"DIRECTORY_CREATE_SUBDIRECTORY","features":[307]},{"name":"DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[307]},{"name":"DIRECTORY_QUERY","features":[307]},{"name":"DIRECTORY_TRAVERSE","features":[307]},{"name":"DISK_SIGNATURE","features":[307]},{"name":"DISPATCH_LEVEL","features":[307]},{"name":"DMAV3_TRANFER_WIDTH_128","features":[307]},{"name":"DMAV3_TRANFER_WIDTH_16","features":[307]},{"name":"DMAV3_TRANFER_WIDTH_256","features":[307]},{"name":"DMAV3_TRANFER_WIDTH_32","features":[307]},{"name":"DMAV3_TRANFER_WIDTH_64","features":[307]},{"name":"DMAV3_TRANFER_WIDTH_8","features":[307]},{"name":"DMA_ADAPTER","features":[306,309,307,305,308,310,311,312]},{"name":"DMA_ADAPTER_INFO","features":[307,305]},{"name":"DMA_ADAPTER_INFO_CRASHDUMP","features":[307,305]},{"name":"DMA_ADAPTER_INFO_V1","features":[307]},{"name":"DMA_ADAPTER_INFO_VERSION1","features":[307]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION","features":[307]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_ACCESS_TYPE","features":[307]},{"name":"DMA_COMMON_BUFFER_EXTENDED_CONFIGURATION_TYPE","features":[307]},{"name":"DMA_COMPLETION_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"DMA_COMPLETION_STATUS","features":[307]},{"name":"DMA_CONFIGURATION_BYTE0","features":[307]},{"name":"DMA_CONFIGURATION_BYTE1","features":[307]},{"name":"DMA_FAIL_ON_BOUNCE","features":[307]},{"name":"DMA_IOMMU_INTERFACE","features":[307,305]},{"name":"DMA_IOMMU_INTERFACE_EX","features":[307,305]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION","features":[307]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_1","features":[307]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_2","features":[307]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MAX","features":[307]},{"name":"DMA_IOMMU_INTERFACE_EX_VERSION_MIN","features":[307]},{"name":"DMA_IOMMU_INTERFACE_V1","features":[307,305]},{"name":"DMA_IOMMU_INTERFACE_V2","features":[307,305]},{"name":"DMA_IOMMU_INTERFACE_VERSION","features":[307]},{"name":"DMA_IOMMU_INTERFACE_VERSION_1","features":[307]},{"name":"DMA_OPERATIONS","features":[306,309,307,305,308,310,311,312]},{"name":"DMA_SPEED","features":[307]},{"name":"DMA_SYNCHRONOUS_CALLBACK","features":[307]},{"name":"DMA_TRANSFER_CONTEXT_SIZE_V1","features":[307]},{"name":"DMA_TRANSFER_CONTEXT_VERSION1","features":[307]},{"name":"DMA_TRANSFER_INFO","features":[307]},{"name":"DMA_TRANSFER_INFO_V1","features":[307]},{"name":"DMA_TRANSFER_INFO_V2","features":[307]},{"name":"DMA_TRANSFER_INFO_VERSION1","features":[307]},{"name":"DMA_TRANSFER_INFO_VERSION2","features":[307]},{"name":"DMA_WIDTH","features":[307]},{"name":"DMA_ZERO_BUFFERS","features":[307]},{"name":"DOMAIN_COMMON_BUFFER_LARGE_PAGE","features":[307]},{"name":"DOMAIN_CONFIGURATION","features":[307,305]},{"name":"DOMAIN_CONFIGURATION_ARCH","features":[307]},{"name":"DOMAIN_CONFIGURATION_ARM64","features":[307,305]},{"name":"DOMAIN_CONFIGURATION_X64","features":[307,305]},{"name":"DPC_NORMAL","features":[307]},{"name":"DPC_THREADED","features":[307]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK","features":[307]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_REVISION_1","features":[307]},{"name":"DPC_WATCHDOG_GLOBAL_TRIAGE_BLOCK_SIGNATURE","features":[307]},{"name":"DRIVER_DIRECTORY_TYPE","features":[307]},{"name":"DRIVER_LIST_CONTROL","features":[306,309,307,305,308,310,311,312]},{"name":"DRIVER_REGKEY_TYPE","features":[307]},{"name":"DRIVER_RUNTIME_INIT_FLAGS","features":[307]},{"name":"DRIVER_VERIFIER_FORCE_IRQL_CHECKING","features":[307]},{"name":"DRIVER_VERIFIER_INJECT_ALLOCATION_FAILURES","features":[307]},{"name":"DRIVER_VERIFIER_IO_CHECKING","features":[307]},{"name":"DRIVER_VERIFIER_SPECIAL_POOLING","features":[307]},{"name":"DRIVER_VERIFIER_THUNK_PAIRS","features":[307]},{"name":"DRIVER_VERIFIER_TRACK_POOL_ALLOCATIONS","features":[307]},{"name":"DRS_LEVEL","features":[307]},{"name":"DRVO_BOOTREINIT_REGISTERED","features":[307]},{"name":"DRVO_BUILTIN_DRIVER","features":[307]},{"name":"DRVO_INITIALIZED","features":[307]},{"name":"DRVO_LEGACY_DRIVER","features":[307]},{"name":"DRVO_LEGACY_RESOURCES","features":[307]},{"name":"DRVO_REINIT_REGISTERED","features":[307]},{"name":"DRVO_UNLOAD_INVOKED","features":[307]},{"name":"DUPLICATE_SAME_ATTRIBUTES","features":[307]},{"name":"DbgBreakPointWithStatus","features":[307]},{"name":"DbgPrint","features":[307]},{"name":"DbgPrintEx","features":[307]},{"name":"DbgPrintReturnControlC","features":[307]},{"name":"DbgPrompt","features":[307]},{"name":"DbgQueryDebugFilterState","features":[307,305]},{"name":"DbgSetDebugFilterState","features":[307,305]},{"name":"DbgSetDebugPrintCallback","features":[307,305,311]},{"name":"DeallocateObject","features":[307]},{"name":"DeallocateObjectKeepRegisters","features":[307]},{"name":"DelayExecution","features":[307]},{"name":"DelayedWorkQueue","features":[307]},{"name":"DeleteSecurityDescriptor","features":[307]},{"name":"DeviceDirectoryData","features":[307]},{"name":"DevicePowerState","features":[307]},{"name":"DevicePropertyAddress","features":[307]},{"name":"DevicePropertyAllocatedResources","features":[307]},{"name":"DevicePropertyBootConfiguration","features":[307]},{"name":"DevicePropertyBootConfigurationTranslated","features":[307]},{"name":"DevicePropertyBusNumber","features":[307]},{"name":"DevicePropertyBusTypeGuid","features":[307]},{"name":"DevicePropertyClassGuid","features":[307]},{"name":"DevicePropertyClassName","features":[307]},{"name":"DevicePropertyCompatibleIDs","features":[307]},{"name":"DevicePropertyContainerID","features":[307]},{"name":"DevicePropertyDeviceDescription","features":[307]},{"name":"DevicePropertyDriverKeyName","features":[307]},{"name":"DevicePropertyEnumeratorName","features":[307]},{"name":"DevicePropertyFriendlyName","features":[307]},{"name":"DevicePropertyHardwareID","features":[307]},{"name":"DevicePropertyInstallState","features":[307]},{"name":"DevicePropertyLegacyBusType","features":[307]},{"name":"DevicePropertyLocationInformation","features":[307]},{"name":"DevicePropertyManufacturer","features":[307]},{"name":"DevicePropertyPhysicalDeviceObjectName","features":[307]},{"name":"DevicePropertyRemovalPolicy","features":[307]},{"name":"DevicePropertyResourceRequirements","features":[307]},{"name":"DevicePropertyUINumber","features":[307]},{"name":"DeviceTextDescription","features":[307]},{"name":"DeviceTextLocationInformation","features":[307]},{"name":"DeviceUsageTypeBoot","features":[307]},{"name":"DeviceUsageTypeDumpFile","features":[307]},{"name":"DeviceUsageTypeGuestAssigned","features":[307]},{"name":"DeviceUsageTypeHibernation","features":[307]},{"name":"DeviceUsageTypePaging","features":[307]},{"name":"DeviceUsageTypePostDisplay","features":[307]},{"name":"DeviceUsageTypeUndefined","features":[307]},{"name":"DeviceWakeDepthD0","features":[307]},{"name":"DeviceWakeDepthD1","features":[307]},{"name":"DeviceWakeDepthD2","features":[307]},{"name":"DeviceWakeDepthD3cold","features":[307]},{"name":"DeviceWakeDepthD3hot","features":[307]},{"name":"DeviceWakeDepthMaximum","features":[307]},{"name":"DeviceWakeDepthNotWakeable","features":[307]},{"name":"DirectoryNotifyExtendedInformation","features":[307]},{"name":"DirectoryNotifyFullInformation","features":[307]},{"name":"DirectoryNotifyInformation","features":[307]},{"name":"DirectoryNotifyMaximumInformation","features":[307]},{"name":"DisabledControl","features":[307]},{"name":"DiskController","features":[307]},{"name":"DiskIoNotifyRoutinesClass","features":[307]},{"name":"DiskPeripheral","features":[307]},{"name":"DisplayController","features":[307]},{"name":"DmaAborted","features":[307]},{"name":"DmaCancelled","features":[307]},{"name":"DmaComplete","features":[307]},{"name":"DmaError","features":[307]},{"name":"DockingInformation","features":[307]},{"name":"DomainConfigurationArm64","features":[307]},{"name":"DomainConfigurationInvalid","features":[307]},{"name":"DomainConfigurationX64","features":[307]},{"name":"DomainTypeMax","features":[307]},{"name":"DomainTypePassThrough","features":[307]},{"name":"DomainTypeTranslate","features":[307]},{"name":"DomainTypeUnmanaged","features":[307]},{"name":"DriverDirectoryData","features":[307]},{"name":"DriverDirectoryImage","features":[307]},{"name":"DriverDirectorySharedData","features":[307]},{"name":"DriverRegKeyParameters","features":[307]},{"name":"DriverRegKeyPersistentState","features":[307]},{"name":"DriverRegKeySharedPersistentState","features":[307]},{"name":"DrvRtPoolNxOptIn","features":[307]},{"name":"DtiAdapter","features":[307]},{"name":"EFI_ACPI_RAS_SIGNAL_TABLE","features":[307]},{"name":"EFLAG_SIGN","features":[307]},{"name":"EFLAG_ZERO","features":[307]},{"name":"EISA_DMA_CONFIGURATION","features":[307]},{"name":"EISA_EMPTY_SLOT","features":[307]},{"name":"EISA_FREE_FORM_DATA","features":[307]},{"name":"EISA_FUNCTION_ENABLED","features":[307]},{"name":"EISA_HAS_DMA_ENTRY","features":[307]},{"name":"EISA_HAS_IRQ_ENTRY","features":[307]},{"name":"EISA_HAS_MEMORY_ENTRY","features":[307]},{"name":"EISA_HAS_PORT_INIT_ENTRY","features":[307]},{"name":"EISA_HAS_PORT_RANGE","features":[307]},{"name":"EISA_HAS_TYPE_ENTRY","features":[307]},{"name":"EISA_INVALID_BIOS_CALL","features":[307]},{"name":"EISA_INVALID_CONFIGURATION","features":[307]},{"name":"EISA_INVALID_FUNCTION","features":[307]},{"name":"EISA_INVALID_SLOT","features":[307]},{"name":"EISA_IRQ_CONFIGURATION","features":[307]},{"name":"EISA_IRQ_DESCRIPTOR","features":[307]},{"name":"EISA_MEMORY_CONFIGURATION","features":[307]},{"name":"EISA_MEMORY_TYPE","features":[307]},{"name":"EISA_MEMORY_TYPE_RAM","features":[307]},{"name":"EISA_MORE_ENTRIES","features":[307]},{"name":"EISA_PORT_CONFIGURATION","features":[307]},{"name":"EISA_PORT_DESCRIPTOR","features":[307]},{"name":"EISA_SYSTEM_MEMORY","features":[307]},{"name":"ENABLE_VIRTUALIZATION","features":[307,305]},{"name":"ERROR_LOG_LIMIT_SIZE","features":[307]},{"name":"ERROR_MAJOR_REVISION_SAL_03_00","features":[307]},{"name":"ERROR_MEMORY_GUID","features":[307]},{"name":"ERROR_MINOR_REVISION_SAL_03_00","features":[307]},{"name":"ERROR_PCI_BUS_GUID","features":[307]},{"name":"ERROR_PCI_COMPONENT_GUID","features":[307]},{"name":"ERROR_PLATFORM_BUS_GUID","features":[307]},{"name":"ERROR_PLATFORM_HOST_CONTROLLER_GUID","features":[307]},{"name":"ERROR_PLATFORM_SPECIFIC_GUID","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_MASK","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_BUS_CHECK_SHIFT","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_MASK","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_CACHE_CHECK_SHIFT","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_MASK","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_MICROARCH_CHECK_SHIFT","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_MASK","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_REG_CHECK_SHIFT","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_MASK","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_TLB_CHECK_SHIFT","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_MASK","features":[307]},{"name":"ERROR_PROCESSOR_STATE_PARAMETER_UNKNOWN_CHECK_SHIFT","features":[307]},{"name":"ERROR_SMBIOS_GUID","features":[307]},{"name":"ERROR_SYSTEM_EVENT_LOG_GUID","features":[307]},{"name":"ERRTYP_BUS","features":[307]},{"name":"ERRTYP_CACHE","features":[307]},{"name":"ERRTYP_FLOW","features":[307]},{"name":"ERRTYP_FUNCTION","features":[307]},{"name":"ERRTYP_IMPROPER","features":[307]},{"name":"ERRTYP_INTERNAL","features":[307]},{"name":"ERRTYP_LOSSOFLOCKSTEP","features":[307]},{"name":"ERRTYP_MAP","features":[307]},{"name":"ERRTYP_MEM","features":[307]},{"name":"ERRTYP_PARITY","features":[307]},{"name":"ERRTYP_PATHERROR","features":[307]},{"name":"ERRTYP_POISONED","features":[307]},{"name":"ERRTYP_PROTOCOL","features":[307]},{"name":"ERRTYP_RESPONSE","features":[307]},{"name":"ERRTYP_SELFTEST","features":[307]},{"name":"ERRTYP_TIMEOUT","features":[307]},{"name":"ERRTYP_TLB","features":[307]},{"name":"ERRTYP_UNIMPL","features":[307]},{"name":"ETWENABLECALLBACK","features":[307,335]},{"name":"ETW_TRACE_SESSION_SETTINGS","features":[307]},{"name":"EVENT_QUERY_STATE","features":[307]},{"name":"EXCEPTION_ALIGNMENT_CHECK","features":[307]},{"name":"EXCEPTION_BOUND_CHECK","features":[307]},{"name":"EXCEPTION_CP_FAULT","features":[307]},{"name":"EXCEPTION_DEBUG","features":[307]},{"name":"EXCEPTION_DIVIDED_BY_ZERO","features":[307]},{"name":"EXCEPTION_DOUBLE_FAULT","features":[307]},{"name":"EXCEPTION_GP_FAULT","features":[307]},{"name":"EXCEPTION_INT3","features":[307]},{"name":"EXCEPTION_INVALID_OPCODE","features":[307]},{"name":"EXCEPTION_INVALID_TSS","features":[307]},{"name":"EXCEPTION_NMI","features":[307]},{"name":"EXCEPTION_NPX_ERROR","features":[307]},{"name":"EXCEPTION_NPX_NOT_AVAILABLE","features":[307]},{"name":"EXCEPTION_NPX_OVERRUN","features":[307]},{"name":"EXCEPTION_RESERVED_TRAP","features":[307]},{"name":"EXCEPTION_SEGMENT_NOT_PRESENT","features":[307]},{"name":"EXCEPTION_SE_FAULT","features":[307]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[307]},{"name":"EXCEPTION_STACK_FAULT","features":[307]},{"name":"EXCEPTION_VIRTUALIZATION_FAULT","features":[307]},{"name":"EXPAND_STACK_CALLOUT","features":[307]},{"name":"EXTENDED_AGP_REGISTER","features":[307]},{"name":"EXTENDED_CREATE_INFORMATION","features":[307]},{"name":"EXTENDED_CREATE_INFORMATION_32","features":[307]},{"name":"EXTINT_NOTIFY_TYPE_GUID","features":[307]},{"name":"EXT_CALLBACK","features":[306,307]},{"name":"EXT_DELETE_CALLBACK","features":[307]},{"name":"EXT_DELETE_PARAMETERS","features":[307]},{"name":"EX_CALLBACK_FUNCTION","features":[307,305]},{"name":"EX_CARR_ALLOCATE_NONPAGED_POOL","features":[307]},{"name":"EX_CARR_ALLOCATE_PAGED_POOL","features":[307]},{"name":"EX_CARR_DISABLE_EXPANSION","features":[307]},{"name":"EX_CREATE_FLAG_FILE_DEST_OPEN_FOR_COPY","features":[307]},{"name":"EX_CREATE_FLAG_FILE_SOURCE_OPEN_FOR_COPY","features":[307]},{"name":"EX_DEFAULT_PUSH_LOCK_FLAGS","features":[307]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_FAIL_NO_RAISE","features":[307]},{"name":"EX_LOOKASIDE_LIST_EX_FLAGS_RAISE_ON_FAIL","features":[307]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_BASE","features":[307]},{"name":"EX_MAXIMUM_LOOKASIDE_DEPTH_LIMIT","features":[307]},{"name":"EX_POOL_PRIORITY","features":[307]},{"name":"EX_RUNDOWN_ACTIVE","features":[307]},{"name":"EX_RUNDOWN_COUNT_SHIFT","features":[307]},{"name":"EX_RUNDOWN_REF","features":[307]},{"name":"EX_TIMER_HIGH_RESOLUTION","features":[307]},{"name":"EX_TIMER_NO_WAKE","features":[307]},{"name":"Eisa","features":[307]},{"name":"EisaAdapter","features":[307]},{"name":"EisaConfiguration","features":[307]},{"name":"EjectionRelations","features":[307]},{"name":"EndAlternatives","features":[307]},{"name":"EtwActivityIdControl","features":[307,305]},{"name":"EtwEventEnabled","features":[307,305,335]},{"name":"EtwProviderEnabled","features":[307,305,335]},{"name":"EtwRegister","features":[307,305]},{"name":"EtwSetInformation","features":[307,305,335]},{"name":"EtwUnregister","features":[307,305,335]},{"name":"EtwWrite","features":[307,305,335]},{"name":"EtwWriteEx","features":[307,305,335]},{"name":"EtwWriteString","features":[307,305,335]},{"name":"EtwWriteTransfer","features":[307,305,335]},{"name":"EventCategoryDeviceInterfaceChange","features":[307]},{"name":"EventCategoryHardwareProfileChange","features":[307]},{"name":"EventCategoryKernelSoftRestart","features":[307]},{"name":"EventCategoryReserved","features":[307]},{"name":"EventCategoryTargetDeviceChange","features":[307]},{"name":"EventLoggerHandleClass","features":[307]},{"name":"ExAcquireFastMutex","features":[306,307,305,311]},{"name":"ExAcquireFastMutexUnsafe","features":[306,307,305,311]},{"name":"ExAcquirePushLockExclusiveEx","features":[307]},{"name":"ExAcquirePushLockSharedEx","features":[307]},{"name":"ExAcquireResourceExclusiveLite","features":[306,307,305,311]},{"name":"ExAcquireResourceSharedLite","features":[306,307,305,311]},{"name":"ExAcquireRundownProtection","features":[307,305]},{"name":"ExAcquireRundownProtectionCacheAware","features":[306,307,305]},{"name":"ExAcquireRundownProtectionCacheAwareEx","features":[306,307,305]},{"name":"ExAcquireRundownProtectionEx","features":[307,305]},{"name":"ExAcquireSharedStarveExclusive","features":[306,307,305,311]},{"name":"ExAcquireSharedWaitForExclusive","features":[306,307,305,311]},{"name":"ExAcquireSpinLockExclusive","features":[307]},{"name":"ExAcquireSpinLockExclusiveAtDpcLevel","features":[307]},{"name":"ExAcquireSpinLockShared","features":[307]},{"name":"ExAcquireSpinLockSharedAtDpcLevel","features":[307]},{"name":"ExAllocateCacheAwareRundownProtection","features":[306,307]},{"name":"ExAllocatePool","features":[306,307]},{"name":"ExAllocatePool2","features":[307]},{"name":"ExAllocatePool3","features":[307,305]},{"name":"ExAllocatePoolWithQuota","features":[306,307]},{"name":"ExAllocatePoolWithQuotaTag","features":[306,307]},{"name":"ExAllocatePoolWithTag","features":[306,307]},{"name":"ExAllocatePoolWithTagPriority","features":[306,307]},{"name":"ExAllocateTimer","features":[306,307]},{"name":"ExCancelTimer","features":[306,307,305]},{"name":"ExCleanupRundownProtectionCacheAware","features":[306,307]},{"name":"ExConvertExclusiveToSharedLite","features":[306,307,311]},{"name":"ExCreateCallback","features":[306,307,305]},{"name":"ExCreatePool","features":[307,305]},{"name":"ExDeleteResourceLite","features":[306,307,305,311]},{"name":"ExDeleteTimer","features":[306,307,305]},{"name":"ExDestroyPool","features":[307,305]},{"name":"ExEnterCriticalRegionAndAcquireResourceExclusive","features":[306,307,311]},{"name":"ExEnterCriticalRegionAndAcquireResourceShared","features":[306,307,311]},{"name":"ExEnterCriticalRegionAndAcquireSharedWaitForExclusive","features":[306,307,311]},{"name":"ExEnumerateSystemFirmwareTables","features":[307,305]},{"name":"ExExtendZone","features":[307,305,311]},{"name":"ExFreeCacheAwareRundownProtection","features":[306,307]},{"name":"ExFreePool","features":[307]},{"name":"ExFreePool2","features":[307,305]},{"name":"ExFreePoolWithTag","features":[307]},{"name":"ExGetExclusiveWaiterCount","features":[306,307,311]},{"name":"ExGetFirmwareEnvironmentVariable","features":[307,305]},{"name":"ExGetFirmwareType","features":[307,336]},{"name":"ExGetPreviousMode","features":[307]},{"name":"ExGetSharedWaiterCount","features":[306,307,311]},{"name":"ExGetSystemFirmwareTable","features":[307,305]},{"name":"ExInitializePushLock","features":[307]},{"name":"ExInitializeResourceLite","features":[306,307,305,311]},{"name":"ExInitializeRundownProtection","features":[307]},{"name":"ExInitializeRundownProtectionCacheAware","features":[306,307]},{"name":"ExInitializeRundownProtectionCacheAwareEx","features":[306,307]},{"name":"ExInitializeZone","features":[307,305,311]},{"name":"ExInterlockedAddLargeInteger","features":[307]},{"name":"ExInterlockedExtendZone","features":[307,305,311]},{"name":"ExIsManufacturingModeEnabled","features":[307,305]},{"name":"ExIsProcessorFeaturePresent","features":[307,305]},{"name":"ExIsResourceAcquiredExclusiveLite","features":[306,307,305,311]},{"name":"ExIsResourceAcquiredSharedLite","features":[306,307,311]},{"name":"ExIsSoftBoot","features":[307,305]},{"name":"ExLocalTimeToSystemTime","features":[307]},{"name":"ExNotifyCallback","features":[307]},{"name":"ExQueryTimerResolution","features":[307]},{"name":"ExQueueWorkItem","features":[306,307,311]},{"name":"ExRaiseAccessViolation","features":[307]},{"name":"ExRaiseDatatypeMisalignment","features":[307]},{"name":"ExRaiseStatus","features":[307,305]},{"name":"ExReInitializeRundownProtection","features":[307]},{"name":"ExReInitializeRundownProtectionCacheAware","features":[306,307]},{"name":"ExRegisterCallback","features":[306,307]},{"name":"ExReinitializeResourceLite","features":[306,307,305,311]},{"name":"ExReleaseFastMutex","features":[306,307,305,311]},{"name":"ExReleaseFastMutexUnsafe","features":[306,307,305,311]},{"name":"ExReleasePushLockExclusiveEx","features":[307]},{"name":"ExReleasePushLockSharedEx","features":[307]},{"name":"ExReleaseResourceAndLeaveCriticalRegion","features":[306,307,311]},{"name":"ExReleaseResourceForThreadLite","features":[306,307,311]},{"name":"ExReleaseResourceLite","features":[306,307,311]},{"name":"ExReleaseRundownProtection","features":[307]},{"name":"ExReleaseRundownProtectionCacheAware","features":[306,307]},{"name":"ExReleaseRundownProtectionCacheAwareEx","features":[306,307]},{"name":"ExReleaseRundownProtectionEx","features":[307]},{"name":"ExReleaseSpinLockExclusive","features":[307]},{"name":"ExReleaseSpinLockExclusiveFromDpcLevel","features":[307]},{"name":"ExReleaseSpinLockShared","features":[307]},{"name":"ExReleaseSpinLockSharedFromDpcLevel","features":[307]},{"name":"ExRundownCompleted","features":[307]},{"name":"ExRundownCompletedCacheAware","features":[306,307]},{"name":"ExSecurePoolUpdate","features":[307,305]},{"name":"ExSecurePoolValidate","features":[307,305]},{"name":"ExSetFirmwareEnvironmentVariable","features":[307,305]},{"name":"ExSetResourceOwnerPointer","features":[306,307,311]},{"name":"ExSetResourceOwnerPointerEx","features":[306,307,311]},{"name":"ExSetTimer","features":[306,307,305]},{"name":"ExSetTimerResolution","features":[307,305]},{"name":"ExSizeOfRundownProtectionCacheAware","features":[307]},{"name":"ExSystemTimeToLocalTime","features":[307]},{"name":"ExTryAcquireSpinLockExclusiveAtDpcLevel","features":[307]},{"name":"ExTryAcquireSpinLockSharedAtDpcLevel","features":[307]},{"name":"ExTryConvertSharedSpinLockExclusive","features":[307]},{"name":"ExTryToAcquireFastMutex","features":[306,307,305,311]},{"name":"ExUnregisterCallback","features":[307]},{"name":"ExUuidCreate","features":[307,305]},{"name":"ExVerifySuite","features":[307,305,311]},{"name":"ExWaitForRundownProtectionRelease","features":[307]},{"name":"ExWaitForRundownProtectionReleaseCacheAware","features":[306,307]},{"name":"Executive","features":[307]},{"name":"ExternalFault","features":[307]},{"name":"FAULT_INFORMATION","features":[306,309,307,305,308,310,311,312]},{"name":"FAULT_INFORMATION_ARCH","features":[307]},{"name":"FAULT_INFORMATION_ARM64","features":[306,309,307,305,308,310,311,312]},{"name":"FAULT_INFORMATION_ARM64_FLAGS","features":[307]},{"name":"FAULT_INFORMATION_ARM64_TYPE","features":[307]},{"name":"FAULT_INFORMATION_X64","features":[307]},{"name":"FAULT_INFORMATION_X64_FLAGS","features":[307]},{"name":"FILE_128_BYTE_ALIGNMENT","features":[307]},{"name":"FILE_256_BYTE_ALIGNMENT","features":[307]},{"name":"FILE_32_BYTE_ALIGNMENT","features":[307]},{"name":"FILE_512_BYTE_ALIGNMENT","features":[307]},{"name":"FILE_64_BYTE_ALIGNMENT","features":[307]},{"name":"FILE_ATTRIBUTE_TAG_INFORMATION","features":[307]},{"name":"FILE_ATTRIBUTE_VALID_FLAGS","features":[307]},{"name":"FILE_ATTRIBUTE_VALID_KERNEL_SET_FLAGS","features":[307]},{"name":"FILE_ATTRIBUTE_VALID_SET_FLAGS","features":[307]},{"name":"FILE_AUTOGENERATED_DEVICE_NAME","features":[307]},{"name":"FILE_BYTE_ALIGNMENT","features":[307]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL","features":[307]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_DEPRECATED","features":[307]},{"name":"FILE_CHARACTERISTICS_EXPECT_ORDERLY_REMOVAL_EX","features":[307]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL","features":[307]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_DEPRECATED","features":[307]},{"name":"FILE_CHARACTERISTICS_EXPECT_SURPRISE_REMOVAL_EX","features":[307]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK","features":[307]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_DEPRECATED","features":[307]},{"name":"FILE_CHARACTERISTICS_REMOVAL_POLICY_MASK_EX","features":[307]},{"name":"FILE_CHARACTERISTIC_CSV","features":[307]},{"name":"FILE_CHARACTERISTIC_PNP_DEVICE","features":[307]},{"name":"FILE_CHARACTERISTIC_TS_DEVICE","features":[307]},{"name":"FILE_CHARACTERISTIC_WEBDAV_DEVICE","features":[307]},{"name":"FILE_DEVICE_ALLOW_APPCONTAINER_TRAVERSAL","features":[307]},{"name":"FILE_DEVICE_IS_MOUNTED","features":[307]},{"name":"FILE_DEVICE_REQUIRE_SECURITY_CHECK","features":[307]},{"name":"FILE_DEVICE_SECURE_OPEN","features":[307]},{"name":"FILE_END_OF_FILE_INFORMATION","features":[307]},{"name":"FILE_FLOPPY_DISKETTE","features":[307]},{"name":"FILE_FS_DEVICE_INFORMATION","features":[307]},{"name":"FILE_FS_FULL_SIZE_INFORMATION","features":[307]},{"name":"FILE_FS_FULL_SIZE_INFORMATION_EX","features":[307]},{"name":"FILE_FS_LABEL_INFORMATION","features":[307]},{"name":"FILE_FS_METADATA_SIZE_INFORMATION","features":[307]},{"name":"FILE_FS_OBJECTID_INFORMATION","features":[307]},{"name":"FILE_FS_SIZE_INFORMATION","features":[307]},{"name":"FILE_FS_VOLUME_INFORMATION","features":[307,305]},{"name":"FILE_IOSTATUSBLOCK_RANGE_INFORMATION","features":[307]},{"name":"FILE_IO_COMPLETION_NOTIFICATION_INFORMATION","features":[307]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION","features":[306,307]},{"name":"FILE_IO_PRIORITY_HINT_INFORMATION_EX","features":[306,307,305]},{"name":"FILE_IS_REMOTE_DEVICE_INFORMATION","features":[307,305]},{"name":"FILE_LONG_ALIGNMENT","features":[307]},{"name":"FILE_MEMORY_PARTITION_INFORMATION","features":[307]},{"name":"FILE_NUMA_NODE_INFORMATION","features":[307]},{"name":"FILE_OCTA_ALIGNMENT","features":[307]},{"name":"FILE_PORTABLE_DEVICE","features":[307]},{"name":"FILE_PROCESS_IDS_USING_FILE_INFORMATION","features":[307]},{"name":"FILE_QUAD_ALIGNMENT","features":[307]},{"name":"FILE_QUERY_INDEX_SPECIFIED","features":[307]},{"name":"FILE_QUERY_NO_CURSOR_UPDATE","features":[307]},{"name":"FILE_QUERY_RESTART_SCAN","features":[307]},{"name":"FILE_QUERY_RETURN_ON_DISK_ENTRIES_ONLY","features":[307]},{"name":"FILE_QUERY_RETURN_SINGLE_ENTRY","features":[307]},{"name":"FILE_READ_ONLY_DEVICE","features":[307]},{"name":"FILE_REMOTE_DEVICE","features":[307]},{"name":"FILE_REMOTE_DEVICE_VSMB","features":[307]},{"name":"FILE_REMOVABLE_MEDIA","features":[307]},{"name":"FILE_SFIO_RESERVE_INFORMATION","features":[307,305]},{"name":"FILE_SFIO_VOLUME_INFORMATION","features":[307]},{"name":"FILE_SHARE_VALID_FLAGS","features":[307]},{"name":"FILE_SKIP_SET_USER_EVENT_ON_FAST_IO","features":[307]},{"name":"FILE_STANDARD_INFORMATION_EX","features":[307,305]},{"name":"FILE_USE_FILE_POINTER_POSITION","features":[307]},{"name":"FILE_VALID_DATA_LENGTH_INFORMATION","features":[307]},{"name":"FILE_VALID_EXTENDED_OPTION_FLAGS","features":[307]},{"name":"FILE_VIRTUAL_VOLUME","features":[307]},{"name":"FILE_WORD_ALIGNMENT","features":[307]},{"name":"FILE_WRITE_ONCE_MEDIA","features":[307]},{"name":"FILE_WRITE_TO_END_OF_FILE","features":[307]},{"name":"FIRMWARE_ERROR_RECORD_REFERENCE_GUID","features":[307]},{"name":"FLAG_OWNER_POINTER_IS_THREAD","features":[307]},{"name":"FLOATING_SAVE_AREA","features":[307]},{"name":"FLUSH_MULTIPLE_MAXIMUM","features":[307]},{"name":"FM_LOCK_BIT","features":[307]},{"name":"FM_LOCK_BIT_V","features":[307]},{"name":"FO_ALERTABLE_IO","features":[307]},{"name":"FO_BYPASS_IO_ENABLED","features":[307]},{"name":"FO_CACHE_SUPPORTED","features":[307]},{"name":"FO_CLEANUP_COMPLETE","features":[307]},{"name":"FO_DELETE_ON_CLOSE","features":[307]},{"name":"FO_DIRECT_DEVICE_OPEN","features":[307]},{"name":"FO_DISALLOW_EXCLUSIVE","features":[307]},{"name":"FO_FILE_FAST_IO_READ","features":[307]},{"name":"FO_FILE_MODIFIED","features":[307]},{"name":"FO_FILE_OPEN","features":[307]},{"name":"FO_FILE_OPEN_CANCELLED","features":[307]},{"name":"FO_FILE_SIZE_CHANGED","features":[307]},{"name":"FO_FLAGS_VALID_ONLY_DURING_CREATE","features":[307]},{"name":"FO_GENERATE_AUDIT_ON_CLOSE","features":[307]},{"name":"FO_HANDLE_CREATED","features":[307]},{"name":"FO_INDIRECT_WAIT_OBJECT","features":[307]},{"name":"FO_MAILSLOT","features":[307]},{"name":"FO_NAMED_PIPE","features":[307]},{"name":"FO_NO_INTERMEDIATE_BUFFERING","features":[307]},{"name":"FO_OPENED_CASE_SENSITIVE","features":[307]},{"name":"FO_QUEUE_IRP_TO_THREAD","features":[307]},{"name":"FO_RANDOM_ACCESS","features":[307]},{"name":"FO_REMOTE_ORIGIN","features":[307]},{"name":"FO_SECTION_MINSTORE_TREATMENT","features":[307]},{"name":"FO_SEQUENTIAL_ONLY","features":[307]},{"name":"FO_SKIP_COMPLETION_PORT","features":[307]},{"name":"FO_SKIP_SET_EVENT","features":[307]},{"name":"FO_SKIP_SET_FAST_IO","features":[307]},{"name":"FO_STREAM_FILE","features":[307]},{"name":"FO_SYNCHRONOUS_IO","features":[307]},{"name":"FO_TEMPORARY_FILE","features":[307]},{"name":"FO_VOLUME_OPEN","features":[307]},{"name":"FO_WRITE_THROUGH","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_16GB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1GB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_1MB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_256MB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_2GB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_32GB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_4GB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_512MB","features":[307]},{"name":"FPB_MEM_HIGH_VECTOR_GRANULARITY_8GB","features":[307]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_16MB","features":[307]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_1MB","features":[307]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_2MB","features":[307]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_4MB","features":[307]},{"name":"FPB_MEM_LOW_VECTOR_GRANULARITY_8MB","features":[307]},{"name":"FPB_MEM_VECTOR_GRANULARITY_1B","features":[307]},{"name":"FPB_RID_VECTOR_GRANULARITY_256RIDS","features":[307]},{"name":"FPB_RID_VECTOR_GRANULARITY_64RIDS","features":[307]},{"name":"FPB_RID_VECTOR_GRANULARITY_8RIDS","features":[307]},{"name":"FPB_VECTOR_SELECT_MEM_HIGH","features":[307]},{"name":"FPB_VECTOR_SELECT_MEM_LOW","features":[307]},{"name":"FPB_VECTOR_SELECT_RID","features":[307]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_1KBITS","features":[307]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_256BITS","features":[307]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_2KBITS","features":[307]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_4KBITS","features":[307]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_512BITS","features":[307]},{"name":"FPB_VECTOR_SIZE_SUPPORTED_8KBITS","features":[307]},{"name":"FPGA_BUS_SCAN","features":[307]},{"name":"FPGA_CONTROL_CONFIG_SPACE","features":[307,305]},{"name":"FPGA_CONTROL_ERROR_REPORTING","features":[307,305]},{"name":"FPGA_CONTROL_INTERFACE","features":[307,305]},{"name":"FPGA_CONTROL_LINK","features":[307,305]},{"name":"FREE_FUNCTION","features":[307]},{"name":"FUNCTION_LEVEL_DEVICE_RESET_PARAMETERS","features":[307]},{"name":"FWMI_NOTIFICATION_CALLBACK","features":[307]},{"name":"FailControl","features":[307]},{"name":"FaultInformationArm64","features":[307]},{"name":"FaultInformationInvalid","features":[307]},{"name":"FaultInformationX64","features":[307]},{"name":"FloatingPointProcessor","features":[307]},{"name":"FloppyDiskPeripheral","features":[307]},{"name":"FltIoNotifyRoutinesClass","features":[307]},{"name":"FreePage","features":[307]},{"name":"FsRtlIsTotalDeviceFailure","features":[307,305]},{"name":"FunctionLevelDeviceReset","features":[307]},{"name":"GENERIC_NOTIFY_TYPE_GUID","features":[307]},{"name":"GENERIC_SECTION_GUID","features":[307]},{"name":"GENPROC_FLAGS_CORRECTED","features":[307]},{"name":"GENPROC_FLAGS_OVERFLOW","features":[307]},{"name":"GENPROC_FLAGS_PRECISEIP","features":[307]},{"name":"GENPROC_FLAGS_RESTARTABLE","features":[307]},{"name":"GENPROC_OP_DATAREAD","features":[307]},{"name":"GENPROC_OP_DATAWRITE","features":[307]},{"name":"GENPROC_OP_GENERIC","features":[307]},{"name":"GENPROC_OP_INSTRUCTIONEXE","features":[307]},{"name":"GENPROC_PROCERRTYPE_BUS","features":[307]},{"name":"GENPROC_PROCERRTYPE_CACHE","features":[307]},{"name":"GENPROC_PROCERRTYPE_MAE","features":[307]},{"name":"GENPROC_PROCERRTYPE_TLB","features":[307]},{"name":"GENPROC_PROCERRTYPE_UNKNOWN","features":[307]},{"name":"GENPROC_PROCISA_ARM32","features":[307]},{"name":"GENPROC_PROCISA_ARM64","features":[307]},{"name":"GENPROC_PROCISA_IPF","features":[307]},{"name":"GENPROC_PROCISA_X64","features":[307]},{"name":"GENPROC_PROCISA_X86","features":[307]},{"name":"GENPROC_PROCTYPE_ARM","features":[307]},{"name":"GENPROC_PROCTYPE_IPF","features":[307]},{"name":"GENPROC_PROCTYPE_XPF","features":[307]},{"name":"GET_D3COLD_CAPABILITY","features":[307,305]},{"name":"GET_D3COLD_LAST_TRANSITION_STATUS","features":[307]},{"name":"GET_DEVICE_RESET_STATUS","features":[307,305]},{"name":"GET_DMA_ADAPTER","features":[306,309,307,305,308,310,311,312]},{"name":"GET_IDLE_WAKE_INFO","features":[307,305,312]},{"name":"GET_SDEV_IDENTIFIER","features":[307]},{"name":"GET_SET_DEVICE_DATA","features":[307]},{"name":"GET_UPDATED_BUS_RESOURCE","features":[307,305]},{"name":"GET_VIRTUAL_DEVICE_DATA","features":[307]},{"name":"GET_VIRTUAL_DEVICE_LOCATION","features":[307,305]},{"name":"GET_VIRTUAL_DEVICE_RESOURCES","features":[307]},{"name":"GET_VIRTUAL_FUNCTION_PROBED_BARS","features":[307,305]},{"name":"GUID_ECP_CREATE_USER_PROCESS","features":[307]},{"name":"GartHigh","features":[307]},{"name":"GartLow","features":[307]},{"name":"GenericEqual","features":[307]},{"name":"GenericGreaterThan","features":[307]},{"name":"GenericLessThan","features":[307]},{"name":"GlobalLoggerHandleClass","features":[307]},{"name":"GroupAffinityAllGroupZero","features":[307]},{"name":"GroupAffinityDontCare","features":[307]},{"name":"HAL_AMLI_BAD_IO_ADDRESS_LIST","features":[307,305]},{"name":"HAL_APIC_DESTINATION_MODE","features":[307]},{"name":"HAL_BUS_INFORMATION","features":[307]},{"name":"HAL_CALLBACKS","features":[306,307]},{"name":"HAL_DISPATCH","features":[306,309,307,305,308,310,325,311,312]},{"name":"HAL_DISPATCH_VERSION","features":[307]},{"name":"HAL_DISPLAY_BIOS_INFORMATION","features":[307]},{"name":"HAL_DMA_ADAPTER_VERSION_1","features":[307]},{"name":"HAL_DMA_CRASH_DUMP_REGISTER_TYPE","features":[307]},{"name":"HAL_ERROR_INFO","features":[307]},{"name":"HAL_MASK_UNMASK_FLAGS_NONE","features":[307]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_COMPLETE","features":[307]},{"name":"HAL_MASK_UNMASK_FLAGS_SERVICING_DEFERRED","features":[307]},{"name":"HAL_MCA_INTERFACE","features":[307,305]},{"name":"HAL_MCA_RECORD","features":[307]},{"name":"HAL_MCE_RECORD","features":[307]},{"name":"HAL_PLATFORM_ACPI_TABLES_CACHED","features":[307]},{"name":"HAL_PLATFORM_DISABLE_PTCG","features":[307]},{"name":"HAL_PLATFORM_DISABLE_UC_MAIN_MEMORY","features":[307]},{"name":"HAL_PLATFORM_DISABLE_WRITE_COMBINING","features":[307]},{"name":"HAL_PLATFORM_ENABLE_WRITE_COMBINING_MMIO","features":[307]},{"name":"HAL_PLATFORM_INFORMATION","features":[307]},{"name":"HAL_POWER_INFORMATION","features":[307]},{"name":"HAL_PROCESSOR_FEATURE","features":[307]},{"name":"HAL_PROCESSOR_SPEED_INFORMATION","features":[307]},{"name":"HAL_QUERY_INFORMATION_CLASS","features":[307]},{"name":"HAL_SET_INFORMATION_CLASS","features":[307]},{"name":"HARDWARE_COUNTER","features":[307]},{"name":"HARDWARE_COUNTER_TYPE","features":[307]},{"name":"HASH_STRING_ALGORITHM_DEFAULT","features":[307]},{"name":"HASH_STRING_ALGORITHM_INVALID","features":[307]},{"name":"HASH_STRING_ALGORITHM_X65599","features":[307]},{"name":"HIGH_LEVEL","features":[307]},{"name":"HIGH_PRIORITY","features":[307]},{"name":"HVL_WHEA_ERROR_NOTIFICATION","features":[307,305]},{"name":"HWPROFILE_CHANGE_NOTIFICATION","features":[307]},{"name":"HalAcpiAuditInformation","features":[307]},{"name":"HalAcquireDisplayOwnership","features":[307,305]},{"name":"HalAllocateAdapterChannel","features":[306,309,307,305,308,337,310,311,312]},{"name":"HalAllocateCommonBuffer","features":[307,305,337]},{"name":"HalAllocateCrashDumpRegisters","features":[307,337]},{"name":"HalAllocateHardwareCounters","features":[307,305,336]},{"name":"HalAssignSlotResources","features":[306,309,307,305,308,310,311,312]},{"name":"HalBugCheckSystem","features":[307,305,334]},{"name":"HalCallbackInformation","features":[307]},{"name":"HalChannelTopologyInformation","features":[307]},{"name":"HalCmcLog","features":[307]},{"name":"HalCmcLogInformation","features":[307]},{"name":"HalCmcRegisterDriver","features":[307]},{"name":"HalCpeLog","features":[307]},{"name":"HalCpeLogInformation","features":[307]},{"name":"HalCpeRegisterDriver","features":[307]},{"name":"HalDisplayBiosInformation","features":[307]},{"name":"HalDisplayEmulatedBios","features":[307]},{"name":"HalDisplayInt10Bios","features":[307]},{"name":"HalDisplayNoBios","features":[307]},{"name":"HalDmaAllocateCrashDumpRegistersEx","features":[307,305,337]},{"name":"HalDmaCrashDumpRegisterSet1","features":[307]},{"name":"HalDmaCrashDumpRegisterSet2","features":[307]},{"name":"HalDmaCrashDumpRegisterSetMax","features":[307]},{"name":"HalDmaFreeCrashDumpRegistersEx","features":[307,305,337]},{"name":"HalDmaRemappingInformation","features":[307]},{"name":"HalEnlightenment","features":[307]},{"name":"HalErrorInformation","features":[307]},{"name":"HalExamineMBR","features":[306,309,307,305,308,310,311,312]},{"name":"HalExternalCacheInformation","features":[307]},{"name":"HalFrameBufferCachingInformation","features":[307]},{"name":"HalFreeCommonBuffer","features":[307,305,337]},{"name":"HalFreeHardwareCounters","features":[307,305]},{"name":"HalFrequencyInformation","features":[307]},{"name":"HalFwBootPerformanceInformation","features":[307]},{"name":"HalFwS3PerformanceInformation","features":[307]},{"name":"HalGenerateCmcInterrupt","features":[307]},{"name":"HalGetAdapter","features":[307,305,337]},{"name":"HalGetBusData","features":[307]},{"name":"HalGetBusDataByOffset","features":[307]},{"name":"HalGetChannelPowerInformation","features":[307]},{"name":"HalGetInterruptVector","features":[307]},{"name":"HalHardwareWatchdogInformation","features":[307]},{"name":"HalHeterogeneousMemoryAttributesInterface","features":[307]},{"name":"HalHypervisorInformation","features":[307]},{"name":"HalI386ExceptionChainTerminatorInformation","features":[307]},{"name":"HalInformationClassUnused1","features":[307]},{"name":"HalInitLogInformation","features":[307]},{"name":"HalInstalledBusInformation","features":[307]},{"name":"HalInterruptControllerInformation","features":[307]},{"name":"HalIrtInformation","features":[307]},{"name":"HalKernelErrorHandler","features":[307]},{"name":"HalMakeBeep","features":[307,305]},{"name":"HalMapRegisterInformation","features":[307]},{"name":"HalMcaLog","features":[307]},{"name":"HalMcaLogInformation","features":[307]},{"name":"HalMcaRegisterDriver","features":[307]},{"name":"HalNumaRangeTableInformation","features":[307]},{"name":"HalNumaTopologyInterface","features":[307]},{"name":"HalParkingPageInformation","features":[307]},{"name":"HalPartitionIpiInterface","features":[307]},{"name":"HalPlatformInformation","features":[307]},{"name":"HalPlatformTimerInformation","features":[307]},{"name":"HalPowerInformation","features":[307]},{"name":"HalProcessorBrandString","features":[307]},{"name":"HalProcessorFeatureInformation","features":[307]},{"name":"HalProcessorSpeedInformation","features":[307]},{"name":"HalProfileDpgoSourceInterruptHandler","features":[307]},{"name":"HalProfileSourceAdd","features":[307]},{"name":"HalProfileSourceInformation","features":[307]},{"name":"HalProfileSourceInterruptHandler","features":[307]},{"name":"HalProfileSourceInterval","features":[307]},{"name":"HalProfileSourceRemove","features":[307]},{"name":"HalProfileSourceTimerHandler","features":[307]},{"name":"HalPsciInformation","features":[307]},{"name":"HalQueryAMLIIllegalIOPortAddresses","features":[307]},{"name":"HalQueryAcpiWakeAlarmSystemPowerStateInformation","features":[307]},{"name":"HalQueryArmErrataInformation","features":[307]},{"name":"HalQueryDebuggerInformation","features":[307]},{"name":"HalQueryHyperlaunchEntrypoint","features":[307]},{"name":"HalQueryIommuReservedRegionInformation","features":[307]},{"name":"HalQueryMaxHotPlugMemoryAddress","features":[307]},{"name":"HalQueryMcaInterface","features":[307]},{"name":"HalQueryPerDeviceMsiLimitInformation","features":[307]},{"name":"HalQueryProcessorEfficiencyInformation","features":[307]},{"name":"HalQueryProfileCorruptionStatus","features":[307]},{"name":"HalQueryProfileCounterOwnership","features":[307]},{"name":"HalQueryProfileNumberOfCounters","features":[307]},{"name":"HalQueryProfileSourceList","features":[307]},{"name":"HalQueryStateElementInformation","features":[307]},{"name":"HalQueryUnused0001","features":[307]},{"name":"HalReadDmaCounter","features":[307,337]},{"name":"HalRegisterSecondaryInterruptInterface","features":[307]},{"name":"HalSecondaryInterruptInformation","features":[307]},{"name":"HalSetBusData","features":[307]},{"name":"HalSetBusDataByOffset","features":[307]},{"name":"HalSetChannelPowerInformation","features":[307]},{"name":"HalSetClockTimerMinimumInterval","features":[307]},{"name":"HalSetHvciEnabled","features":[307]},{"name":"HalSetProcessorTraceInterruptHandler","features":[307]},{"name":"HalSetPsciSuspendMode","features":[307]},{"name":"HalSetResetParkDisposition","features":[307]},{"name":"HalSetSwInterruptHandler","features":[307]},{"name":"HalTranslateBusAddress","features":[307,305]},{"name":"HighImportance","features":[307]},{"name":"HighPagePriority","features":[307]},{"name":"HighPoolPriority","features":[307]},{"name":"HighPoolPrioritySpecialPoolOverrun","features":[307]},{"name":"HighPoolPrioritySpecialPoolUnderrun","features":[307]},{"name":"HotSpareControl","features":[307]},{"name":"HvlRegisterWheaErrorNotification","features":[307,305]},{"name":"HvlUnregisterWheaErrorNotification","features":[307,305]},{"name":"HyperCriticalWorkQueue","features":[307]},{"name":"IMAGE_ADDRESSING_MODE_32BIT","features":[307]},{"name":"IMAGE_INFO","features":[307]},{"name":"IMAGE_INFO_EX","features":[306,309,307,305,308,310,311,312]},{"name":"INITIAL_PRIVILEGE_COUNT","features":[307]},{"name":"INITIAL_PRIVILEGE_SET","features":[307,305,308]},{"name":"INIT_NOTIFY_TYPE_GUID","features":[307]},{"name":"INJECT_ERRTYPE_MEMORY_CORRECTABLE","features":[307]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLEFATAL","features":[307]},{"name":"INJECT_ERRTYPE_MEMORY_UNCORRECTABLENONFATAL","features":[307]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_CORRECTABLE","features":[307]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLEFATAL","features":[307]},{"name":"INJECT_ERRTYPE_PCIEXPRESS_UNCORRECTABLENONFATAL","features":[307]},{"name":"INJECT_ERRTYPE_PLATFORM_CORRECTABLE","features":[307]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLEFATAL","features":[307]},{"name":"INJECT_ERRTYPE_PLATFORM_UNCORRECTABLENONFATAL","features":[307]},{"name":"INJECT_ERRTYPE_PROCESSOR_CORRECTABLE","features":[307]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLEFATAL","features":[307]},{"name":"INJECT_ERRTYPE_PROCESSOR_UNCORRECTABLENONFATAL","features":[307]},{"name":"INPUT_MAPPING_ELEMENT","features":[307]},{"name":"INTEL_CACHE_INFO_EAX","features":[307]},{"name":"INTEL_CACHE_INFO_EBX","features":[307]},{"name":"INTEL_CACHE_TYPE","features":[307]},{"name":"INTERFACE","features":[307]},{"name":"INTERFACE_TYPE","features":[307]},{"name":"INTERLOCKED_RESULT","features":[307]},{"name":"IOCTL_CANCEL_DEVICE_WAKE","features":[307]},{"name":"IOCTL_QUERY_DEVICE_POWER_STATE","features":[307]},{"name":"IOCTL_SET_DEVICE_WAKE","features":[307]},{"name":"IOMMU_ACCESS_NONE","features":[307]},{"name":"IOMMU_ACCESS_READ","features":[307]},{"name":"IOMMU_ACCESS_WRITE","features":[307]},{"name":"IOMMU_DEVICE_CREATE","features":[306,309,307,305,308,310,311,312]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION","features":[307,311]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_ACPI","features":[307]},{"name":"IOMMU_DEVICE_CREATION_CONFIGURATION_TYPE","features":[307]},{"name":"IOMMU_DEVICE_DELETE","features":[306,307,305]},{"name":"IOMMU_DEVICE_FAULT_HANDLER","features":[306,309,307,305,308,310,311,312]},{"name":"IOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[306,307]},{"name":"IOMMU_DMA_DOMAIN_CREATION_FLAGS","features":[307]},{"name":"IOMMU_DMA_DOMAIN_TYPE","features":[307]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN","features":[307]},{"name":"IOMMU_DMA_LOGICAL_ADDRESS_TOKEN_MAPPED_SEGMENT","features":[307]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_CONFIG","features":[307]},{"name":"IOMMU_DMA_LOGICAL_ALLOCATOR_TYPE","features":[307]},{"name":"IOMMU_DMA_RESERVED_REGION","features":[307,305]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE","features":[306,309,307,305,308,310,311,312]},{"name":"IOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[306,307,305]},{"name":"IOMMU_DOMAIN_CONFIGURE","features":[306,307,305]},{"name":"IOMMU_DOMAIN_CREATE","features":[306,307,305]},{"name":"IOMMU_DOMAIN_CREATE_EX","features":[306,307,305]},{"name":"IOMMU_DOMAIN_DELETE","features":[306,307,305]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE","features":[306,309,307,305,308,310,311,312]},{"name":"IOMMU_DOMAIN_DETACH_DEVICE_EX","features":[306,307,305]},{"name":"IOMMU_FLUSH_DOMAIN","features":[306,307,305]},{"name":"IOMMU_FLUSH_DOMAIN_VA_LIST","features":[306,307,305]},{"name":"IOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[307,305]},{"name":"IOMMU_INTERFACE_STATE_CHANGE","features":[307]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[307]},{"name":"IOMMU_INTERFACE_STATE_CHANGE_FIELDS","features":[307]},{"name":"IOMMU_MAP_IDENTITY_RANGE","features":[306,307,305]},{"name":"IOMMU_MAP_IDENTITY_RANGE_EX","features":[306,307,305]},{"name":"IOMMU_MAP_LOGICAL_RANGE","features":[306,307,305]},{"name":"IOMMU_MAP_LOGICAL_RANGE_EX","features":[306,307,305]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS","features":[306,307]},{"name":"IOMMU_MAP_PHYSICAL_ADDRESS_TYPE","features":[307]},{"name":"IOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[306,307,305]},{"name":"IOMMU_QUERY_INPUT_MAPPINGS","features":[306,309,307,305,308,310,311,312]},{"name":"IOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[306,307,305]},{"name":"IOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[306,307,305]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING","features":[306,309,307,305,308,310,311,312]},{"name":"IOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[306,307,305]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE","features":[306,307,305]},{"name":"IOMMU_UNMAP_IDENTITY_RANGE_EX","features":[306,307,305]},{"name":"IOMMU_UNMAP_LOGICAL_RANGE","features":[306,307,305]},{"name":"IOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[307,305]},{"name":"IOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[306,307,305]},{"name":"IO_ACCESS_MODE","features":[307]},{"name":"IO_ACCESS_TYPE","features":[307]},{"name":"IO_ALLOCATION_ACTION","features":[307]},{"name":"IO_ATTACH_DEVICE","features":[307]},{"name":"IO_ATTRIBUTION_INFORMATION","features":[307]},{"name":"IO_ATTRIBUTION_INFO_V1","features":[307]},{"name":"IO_CHECK_CREATE_PARAMETERS","features":[307]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_DELETE","features":[307]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_READ","features":[307]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_CHECK_WRITE","features":[307]},{"name":"IO_CHECK_SHARE_ACCESS_DONT_UPDATE_FILE_OBJECT","features":[307]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_CHECK","features":[307]},{"name":"IO_CHECK_SHARE_ACCESS_FORCE_USING_SCB","features":[307]},{"name":"IO_CHECK_SHARE_ACCESS_UPDATE_SHARE_ACCESS","features":[307]},{"name":"IO_COMPLETION_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"IO_COMPLETION_ROUTINE_RESULT","features":[307]},{"name":"IO_CONNECT_INTERRUPT_FULLY_SPECIFIED_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CONNECT_INTERRUPT_LINE_BASED_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CONNECT_INTERRUPT_MESSAGE_BASED_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CONNECT_INTERRUPT_PARAMETERS","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CONTAINER_INFORMATION_CLASS","features":[307]},{"name":"IO_CONTAINER_NOTIFICATION_CLASS","features":[307]},{"name":"IO_CSQ","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_ACQUIRE_LOCK","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_COMPLETE_CANCELED_IRP","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_INSERT_IRP","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_INSERT_IRP_EX","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_IRP_CONTEXT","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_PEEK_NEXT_IRP","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_RELEASE_LOCK","features":[306,309,307,305,308,310,311,312]},{"name":"IO_CSQ_REMOVE_IRP","features":[306,309,307,305,308,310,311,312]},{"name":"IO_DISCONNECT_INTERRUPT_PARAMETERS","features":[306,307]},{"name":"IO_DPC_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"IO_DRIVER_CREATE_CONTEXT","features":[306,307]},{"name":"IO_ERROR_LOG_MESSAGE","features":[307,305]},{"name":"IO_ERROR_LOG_PACKET","features":[307,305]},{"name":"IO_FOEXT_SHADOW_FILE","features":[306,309,307,305,308,310,311,312]},{"name":"IO_FOEXT_SILO_PARAMETERS","features":[306,307]},{"name":"IO_FORCE_ACCESS_CHECK","features":[307]},{"name":"IO_IGNORE_SHARE_ACCESS_CHECK","features":[307]},{"name":"IO_INTERRUPT_MESSAGE_INFO","features":[306,307]},{"name":"IO_INTERRUPT_MESSAGE_INFO_ENTRY","features":[306,307]},{"name":"IO_KEYBOARD_INCREMENT","features":[307]},{"name":"IO_MOUSE_INCREMENT","features":[307]},{"name":"IO_NOTIFICATION_EVENT_CATEGORY","features":[307]},{"name":"IO_NO_PARAMETER_CHECKING","features":[307]},{"name":"IO_PAGING_PRIORITY","features":[307]},{"name":"IO_PARALLEL_INCREMENT","features":[307]},{"name":"IO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[306,309,307,305,308,310,311,312]},{"name":"IO_QUERY_DEVICE_DATA_FORMAT","features":[307]},{"name":"IO_REMOUNT","features":[307]},{"name":"IO_REMOVE_LOCK","features":[306,307,305,311]},{"name":"IO_REMOVE_LOCK_COMMON_BLOCK","features":[306,307,305,311]},{"name":"IO_REMOVE_LOCK_DBG_BLOCK","features":[306,307,311]},{"name":"IO_REPARSE","features":[307]},{"name":"IO_REPARSE_GLOBAL","features":[307]},{"name":"IO_REPORT_INTERRUPT_ACTIVE_STATE_PARAMETERS","features":[306,307]},{"name":"IO_RESOURCE_ALTERNATIVE","features":[307]},{"name":"IO_RESOURCE_DEFAULT","features":[307]},{"name":"IO_RESOURCE_DESCRIPTOR","features":[307]},{"name":"IO_RESOURCE_LIST","features":[307]},{"name":"IO_RESOURCE_PREFERRED","features":[307]},{"name":"IO_RESOURCE_REQUIREMENTS_LIST","features":[307]},{"name":"IO_SERIAL_INCREMENT","features":[307]},{"name":"IO_SESSION_CONNECT_INFO","features":[307,305]},{"name":"IO_SESSION_EVENT","features":[307]},{"name":"IO_SESSION_MAX_PAYLOAD_SIZE","features":[307]},{"name":"IO_SESSION_NOTIFICATION_FUNCTION","features":[307,305]},{"name":"IO_SESSION_STATE","features":[307]},{"name":"IO_SESSION_STATE_ALL_EVENTS","features":[307]},{"name":"IO_SESSION_STATE_CONNECT_EVENT","features":[307]},{"name":"IO_SESSION_STATE_CREATION_EVENT","features":[307]},{"name":"IO_SESSION_STATE_DISCONNECT_EVENT","features":[307]},{"name":"IO_SESSION_STATE_INFORMATION","features":[307,305]},{"name":"IO_SESSION_STATE_LOGOFF_EVENT","features":[307]},{"name":"IO_SESSION_STATE_LOGON_EVENT","features":[307]},{"name":"IO_SESSION_STATE_NOTIFICATION","features":[307]},{"name":"IO_SESSION_STATE_TERMINATION_EVENT","features":[307]},{"name":"IO_SESSION_STATE_VALID_EVENT_MASK","features":[307]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FLAGS_MASK","features":[307]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_PROCESS","features":[307]},{"name":"IO_SET_IRP_IO_ATTRIBUTION_FROM_THREAD","features":[307]},{"name":"IO_SHARE_ACCESS_NON_PRIMARY_STREAM","features":[307]},{"name":"IO_SHARE_ACCESS_NO_WRITE_PERMISSION","features":[307]},{"name":"IO_SOUND_INCREMENT","features":[307]},{"name":"IO_STATUS_BLOCK32","features":[307,305]},{"name":"IO_STATUS_BLOCK64","features":[307,305]},{"name":"IO_TIMER_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"IO_TYPE_ADAPTER","features":[307]},{"name":"IO_TYPE_CONTROLLER","features":[307]},{"name":"IO_TYPE_CSQ","features":[307]},{"name":"IO_TYPE_CSQ_EX","features":[307]},{"name":"IO_TYPE_CSQ_IRP_CONTEXT","features":[307]},{"name":"IO_TYPE_DEVICE","features":[307]},{"name":"IO_TYPE_DEVICE_OBJECT_EXTENSION","features":[307]},{"name":"IO_TYPE_DRIVER","features":[307]},{"name":"IO_TYPE_ERROR_LOG","features":[307]},{"name":"IO_TYPE_ERROR_MESSAGE","features":[307]},{"name":"IO_TYPE_FILE","features":[307]},{"name":"IO_TYPE_IORING","features":[307]},{"name":"IO_TYPE_IRP","features":[307]},{"name":"IO_TYPE_MASTER_ADAPTER","features":[307]},{"name":"IO_TYPE_OPEN_PACKET","features":[307]},{"name":"IO_TYPE_TIMER","features":[307]},{"name":"IO_TYPE_VPB","features":[307]},{"name":"IO_VIDEO_INCREMENT","features":[307]},{"name":"IO_WORKITEM_ROUTINE","features":[306,309,307,305,308,310,311,312]},{"name":"IO_WORKITEM_ROUTINE_EX","features":[306,307]},{"name":"IPF_SAL_RECORD_SECTION_GUID","features":[307]},{"name":"IPI_LEVEL","features":[307]},{"name":"IPMI_MSR_DUMP_SECTION_GUID","features":[307]},{"name":"IRP_ALLOCATED_FIXED_SIZE","features":[307]},{"name":"IRP_ALLOCATED_MUST_SUCCEED","features":[307]},{"name":"IRP_ASSOCIATED_IRP","features":[307]},{"name":"IRP_BUFFERED_IO","features":[307]},{"name":"IRP_CLOSE_OPERATION","features":[307]},{"name":"IRP_CREATE_OPERATION","features":[307]},{"name":"IRP_DEALLOCATE_BUFFER","features":[307]},{"name":"IRP_DEFER_IO_COMPLETION","features":[307]},{"name":"IRP_HOLD_DEVICE_QUEUE","features":[307]},{"name":"IRP_INPUT_OPERATION","features":[307]},{"name":"IRP_LOOKASIDE_ALLOCATION","features":[307]},{"name":"IRP_MJ_CLEANUP","features":[307]},{"name":"IRP_MJ_CLOSE","features":[307]},{"name":"IRP_MJ_CREATE","features":[307]},{"name":"IRP_MJ_CREATE_MAILSLOT","features":[307]},{"name":"IRP_MJ_CREATE_NAMED_PIPE","features":[307]},{"name":"IRP_MJ_DEVICE_CHANGE","features":[307]},{"name":"IRP_MJ_DEVICE_CONTROL","features":[307]},{"name":"IRP_MJ_DIRECTORY_CONTROL","features":[307]},{"name":"IRP_MJ_FILE_SYSTEM_CONTROL","features":[307]},{"name":"IRP_MJ_FLUSH_BUFFERS","features":[307]},{"name":"IRP_MJ_INTERNAL_DEVICE_CONTROL","features":[307]},{"name":"IRP_MJ_LOCK_CONTROL","features":[307]},{"name":"IRP_MJ_MAXIMUM_FUNCTION","features":[307]},{"name":"IRP_MJ_PNP","features":[307]},{"name":"IRP_MJ_PNP_POWER","features":[307]},{"name":"IRP_MJ_POWER","features":[307]},{"name":"IRP_MJ_QUERY_EA","features":[307]},{"name":"IRP_MJ_QUERY_INFORMATION","features":[307]},{"name":"IRP_MJ_QUERY_QUOTA","features":[307]},{"name":"IRP_MJ_QUERY_SECURITY","features":[307]},{"name":"IRP_MJ_QUERY_VOLUME_INFORMATION","features":[307]},{"name":"IRP_MJ_READ","features":[307]},{"name":"IRP_MJ_SCSI","features":[307]},{"name":"IRP_MJ_SET_EA","features":[307]},{"name":"IRP_MJ_SET_INFORMATION","features":[307]},{"name":"IRP_MJ_SET_QUOTA","features":[307]},{"name":"IRP_MJ_SET_SECURITY","features":[307]},{"name":"IRP_MJ_SET_VOLUME_INFORMATION","features":[307]},{"name":"IRP_MJ_SHUTDOWN","features":[307]},{"name":"IRP_MJ_SYSTEM_CONTROL","features":[307]},{"name":"IRP_MJ_WRITE","features":[307]},{"name":"IRP_MN_CANCEL_REMOVE_DEVICE","features":[307]},{"name":"IRP_MN_CANCEL_STOP_DEVICE","features":[307]},{"name":"IRP_MN_CHANGE_SINGLE_INSTANCE","features":[307]},{"name":"IRP_MN_CHANGE_SINGLE_ITEM","features":[307]},{"name":"IRP_MN_COMPLETE","features":[307]},{"name":"IRP_MN_COMPRESSED","features":[307]},{"name":"IRP_MN_DEVICE_ENUMERATED","features":[307]},{"name":"IRP_MN_DEVICE_USAGE_NOTIFICATION","features":[307]},{"name":"IRP_MN_DISABLE_COLLECTION","features":[307]},{"name":"IRP_MN_DISABLE_EVENTS","features":[307]},{"name":"IRP_MN_DPC","features":[307]},{"name":"IRP_MN_EJECT","features":[307]},{"name":"IRP_MN_ENABLE_COLLECTION","features":[307]},{"name":"IRP_MN_ENABLE_EVENTS","features":[307]},{"name":"IRP_MN_EXECUTE_METHOD","features":[307]},{"name":"IRP_MN_FILTER_RESOURCE_REQUIREMENTS","features":[307]},{"name":"IRP_MN_FLUSH_AND_PURGE","features":[307]},{"name":"IRP_MN_FLUSH_DATA_ONLY","features":[307]},{"name":"IRP_MN_FLUSH_DATA_SYNC_ONLY","features":[307]},{"name":"IRP_MN_FLUSH_NO_SYNC","features":[307]},{"name":"IRP_MN_KERNEL_CALL","features":[307]},{"name":"IRP_MN_LOAD_FILE_SYSTEM","features":[307]},{"name":"IRP_MN_LOCK","features":[307]},{"name":"IRP_MN_MDL","features":[307]},{"name":"IRP_MN_MOUNT_VOLUME","features":[307]},{"name":"IRP_MN_NORMAL","features":[307]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY","features":[307]},{"name":"IRP_MN_NOTIFY_CHANGE_DIRECTORY_EX","features":[307]},{"name":"IRP_MN_POWER_SEQUENCE","features":[307]},{"name":"IRP_MN_QUERY_ALL_DATA","features":[307]},{"name":"IRP_MN_QUERY_BUS_INFORMATION","features":[307]},{"name":"IRP_MN_QUERY_CAPABILITIES","features":[307]},{"name":"IRP_MN_QUERY_DEVICE_RELATIONS","features":[307]},{"name":"IRP_MN_QUERY_DEVICE_TEXT","features":[307]},{"name":"IRP_MN_QUERY_DIRECTORY","features":[307]},{"name":"IRP_MN_QUERY_ID","features":[307]},{"name":"IRP_MN_QUERY_INTERFACE","features":[307]},{"name":"IRP_MN_QUERY_LEGACY_BUS_INFORMATION","features":[307]},{"name":"IRP_MN_QUERY_PNP_DEVICE_STATE","features":[307]},{"name":"IRP_MN_QUERY_POWER","features":[307]},{"name":"IRP_MN_QUERY_REMOVE_DEVICE","features":[307]},{"name":"IRP_MN_QUERY_RESOURCES","features":[307]},{"name":"IRP_MN_QUERY_RESOURCE_REQUIREMENTS","features":[307]},{"name":"IRP_MN_QUERY_SINGLE_INSTANCE","features":[307]},{"name":"IRP_MN_QUERY_STOP_DEVICE","features":[307]},{"name":"IRP_MN_READ_CONFIG","features":[307]},{"name":"IRP_MN_REGINFO","features":[307]},{"name":"IRP_MN_REGINFO_EX","features":[307]},{"name":"IRP_MN_REMOVE_DEVICE","features":[307]},{"name":"IRP_MN_SCSI_CLASS","features":[307]},{"name":"IRP_MN_SET_LOCK","features":[307]},{"name":"IRP_MN_SET_POWER","features":[307]},{"name":"IRP_MN_START_DEVICE","features":[307]},{"name":"IRP_MN_STOP_DEVICE","features":[307]},{"name":"IRP_MN_SURPRISE_REMOVAL","features":[307]},{"name":"IRP_MN_TRACK_LINK","features":[307]},{"name":"IRP_MN_UNLOCK_ALL","features":[307]},{"name":"IRP_MN_UNLOCK_ALL_BY_KEY","features":[307]},{"name":"IRP_MN_UNLOCK_SINGLE","features":[307]},{"name":"IRP_MN_USER_FS_REQUEST","features":[307]},{"name":"IRP_MN_VERIFY_VOLUME","features":[307]},{"name":"IRP_MN_WAIT_WAKE","features":[307]},{"name":"IRP_MN_WRITE_CONFIG","features":[307]},{"name":"IRP_MOUNT_COMPLETION","features":[307]},{"name":"IRP_NOCACHE","features":[307]},{"name":"IRP_OB_QUERY_NAME","features":[307]},{"name":"IRP_PAGING_IO","features":[307]},{"name":"IRP_QUOTA_CHARGED","features":[307]},{"name":"IRP_READ_OPERATION","features":[307]},{"name":"IRP_SYNCHRONOUS_API","features":[307]},{"name":"IRP_SYNCHRONOUS_PAGING_IO","features":[307]},{"name":"IRP_UM_DRIVER_INITIATED_IO","features":[307]},{"name":"IRP_WRITE_OPERATION","features":[307]},{"name":"IRQ_DEVICE_POLICY","features":[307]},{"name":"IRQ_GROUP_POLICY","features":[307]},{"name":"IRQ_PRIORITY","features":[307]},{"name":"InACriticalArrayControl","features":[307]},{"name":"InAFailedArrayControl","features":[307]},{"name":"IndicatorBlink","features":[307]},{"name":"IndicatorOff","features":[307]},{"name":"IndicatorOn","features":[307]},{"name":"InitiateReset","features":[307]},{"name":"InstallStateFailedInstall","features":[307]},{"name":"InstallStateFinishInstall","features":[307]},{"name":"InstallStateInstalled","features":[307]},{"name":"InstallStateNeedsReinstall","features":[307]},{"name":"IntelCacheData","features":[307]},{"name":"IntelCacheInstruction","features":[307]},{"name":"IntelCacheNull","features":[307]},{"name":"IntelCacheRam","features":[307]},{"name":"IntelCacheTrace","features":[307]},{"name":"IntelCacheUnified","features":[307]},{"name":"InterfaceTypeUndefined","features":[307]},{"name":"Internal","features":[307]},{"name":"InternalPowerBus","features":[307]},{"name":"InterruptActiveBoth","features":[307]},{"name":"InterruptActiveBothTriggerHigh","features":[307]},{"name":"InterruptActiveBothTriggerLow","features":[307]},{"name":"InterruptActiveHigh","features":[307]},{"name":"InterruptActiveLow","features":[307]},{"name":"InterruptFallingEdge","features":[307]},{"name":"InterruptPolarityUnknown","features":[307]},{"name":"InterruptRisingEdge","features":[307]},{"name":"InvalidDeviceTypeControl","features":[307]},{"name":"IoAcquireCancelSpinLock","features":[307]},{"name":"IoAcquireKsrPersistentMemory","features":[306,309,307,305,308,310,311,312]},{"name":"IoAcquireKsrPersistentMemoryEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoAcquireRemoveLockEx","features":[306,307,305,311]},{"name":"IoAllocateAdapterChannel","features":[306,309,307,305,308,337,310,311,312]},{"name":"IoAllocateController","features":[306,309,307,305,308,310,311,312]},{"name":"IoAllocateDriverObjectExtension","features":[306,309,307,305,308,310,311,312]},{"name":"IoAllocateErrorLogEntry","features":[307]},{"name":"IoAllocateIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoAllocateIrpEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoAllocateMdl","features":[306,309,307,305,308,310,311,312]},{"name":"IoAllocateSfioStreamIdentifier","features":[306,309,307,305,308,310,311,312]},{"name":"IoAllocateWorkItem","features":[306,309,307,305,308,310,311,312]},{"name":"IoAssignResources","features":[306,309,307,305,308,310,311,312]},{"name":"IoAttachDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoAttachDeviceByPointer","features":[306,309,307,305,308,310,311,312]},{"name":"IoAttachDeviceToDeviceStack","features":[306,309,307,305,308,310,311,312]},{"name":"IoAttachDeviceToDeviceStackSafe","features":[306,309,307,305,308,310,311,312]},{"name":"IoBuildAsynchronousFsdRequest","features":[306,309,307,305,308,310,311,312]},{"name":"IoBuildDeviceIoControlRequest","features":[306,309,307,305,308,310,311,312]},{"name":"IoBuildPartialMdl","features":[306,307]},{"name":"IoBuildSynchronousFsdRequest","features":[306,309,307,305,308,310,311,312]},{"name":"IoCancelFileOpen","features":[306,309,307,305,308,310,311,312]},{"name":"IoCancelIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoCheckLinkShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoCheckShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoCheckShareAccessEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoCleanupIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoClearActivityIdThread","features":[307]},{"name":"IoClearIrpExtraCreateParameter","features":[306,309,307,305,308,310,311,312]},{"name":"IoConnectInterrupt","features":[306,307,305]},{"name":"IoConnectInterruptEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoCreateController","features":[306,307,305,311]},{"name":"IoCreateDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoCreateDisk","features":[306,309,307,305,308,310,325,311,312]},{"name":"IoCreateFile","features":[306,307,305,310]},{"name":"IoCreateFileEx","features":[306,307,305,310]},{"name":"IoCreateFileSpecifyDeviceObjectHint","features":[306,307,305,310]},{"name":"IoCreateNotificationEvent","features":[306,307,305,311]},{"name":"IoCreateSymbolicLink","features":[307,305]},{"name":"IoCreateSynchronizationEvent","features":[306,307,305,311]},{"name":"IoCreateSystemThread","features":[306,307,305,338]},{"name":"IoCreateUnprotectedSymbolicLink","features":[307,305]},{"name":"IoCsqInitialize","features":[306,309,307,305,308,310,311,312]},{"name":"IoCsqInitializeEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoCsqInsertIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoCsqInsertIrpEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoCsqRemoveIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoCsqRemoveNextIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoDecrementKeepAliveCount","features":[306,309,307,305,308,310,311,312]},{"name":"IoDeleteController","features":[306,307,305,311]},{"name":"IoDeleteDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoDeleteSymbolicLink","features":[307,305]},{"name":"IoDetachDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoDisconnectInterrupt","features":[306,307]},{"name":"IoDisconnectInterruptEx","features":[306,307]},{"name":"IoEnumerateKsrPersistentMemoryEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoFlushAdapterBuffers","features":[306,307,305,337]},{"name":"IoForwardIrpSynchronously","features":[306,309,307,305,308,310,311,312]},{"name":"IoFreeAdapterChannel","features":[307,337]},{"name":"IoFreeController","features":[306,307,305,311]},{"name":"IoFreeErrorLogEntry","features":[307]},{"name":"IoFreeIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoFreeKsrPersistentMemory","features":[307,305]},{"name":"IoFreeMapRegisters","features":[307,337]},{"name":"IoFreeMdl","features":[306,307]},{"name":"IoFreeSfioStreamIdentifier","features":[306,309,307,305,308,310,311,312]},{"name":"IoFreeWorkItem","features":[306,307]},{"name":"IoGetActivityIdIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetActivityIdThread","features":[307]},{"name":"IoGetAffinityInterrupt","features":[306,307,305,336]},{"name":"IoGetAttachedDeviceReference","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetBootDiskInformation","features":[307,305]},{"name":"IoGetBootDiskInformationLite","features":[307,305]},{"name":"IoGetConfigurationInformation","features":[307,305]},{"name":"IoGetContainerInformation","features":[307,305]},{"name":"IoGetCurrentProcess","features":[306,307]},{"name":"IoGetDeviceDirectory","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDeviceInterfaceAlias","features":[307,305]},{"name":"IoGetDeviceInterfacePropertyData","features":[307,303,305]},{"name":"IoGetDeviceInterfaces","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDeviceNumaNode","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDeviceObjectPointer","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDeviceProperty","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDevicePropertyData","features":[306,309,307,303,305,308,310,311,312]},{"name":"IoGetDmaAdapter","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDriverDirectory","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetDriverObjectExtension","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetFileObjectGenericMapping","features":[307,308]},{"name":"IoGetFsZeroingOffset","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetInitialStack","features":[307]},{"name":"IoGetInitiatorProcess","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetIoAttributionHandle","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetIoPriorityHint","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetIommuInterface","features":[307,305]},{"name":"IoGetIommuInterfaceEx","features":[307,305]},{"name":"IoGetIrpExtraCreateParameter","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetPagingIoPriority","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetRelatedDeviceObject","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetSfioStreamIdentifier","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetSilo","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetSiloParameters","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetStackLimits","features":[307]},{"name":"IoGetTopLevelIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoGetTransactionParameterBlock","features":[306,309,307,305,308,310,311,312]},{"name":"IoIncrementKeepAliveCount","features":[306,309,307,305,308,310,311,312]},{"name":"IoInitializeIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoInitializeIrpEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoInitializeRemoveLockEx","features":[306,307,305,311]},{"name":"IoInitializeTimer","features":[306,309,307,305,308,310,311,312]},{"name":"IoInitializeWorkItem","features":[306,307]},{"name":"IoInvalidateDeviceRelations","features":[306,309,307,305,308,310,311,312]},{"name":"IoInvalidateDeviceState","features":[306,309,307,305,308,310,311,312]},{"name":"IoIs32bitProcess","features":[306,309,307,305,308,310,311,312]},{"name":"IoIsFileObjectIgnoringSharing","features":[306,309,307,305,308,310,311,312]},{"name":"IoIsFileOriginRemote","features":[306,309,307,305,308,310,311,312]},{"name":"IoIsInitiator32bitProcess","features":[306,309,307,305,308,310,311,312]},{"name":"IoIsValidIrpStatus","features":[307,305]},{"name":"IoIsWdmVersionAvailable","features":[307,305]},{"name":"IoMakeAssociatedIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoMakeAssociatedIrpEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoMapTransfer","features":[306,307,305,337]},{"name":"IoMaxContainerInformationClass","features":[307]},{"name":"IoMaxContainerNotificationClass","features":[307]},{"name":"IoModifyAccess","features":[307]},{"name":"IoOpenDeviceInterfaceRegistryKey","features":[307,305]},{"name":"IoOpenDeviceRegistryKey","features":[306,309,307,305,308,310,311,312]},{"name":"IoOpenDriverRegistryKey","features":[306,309,307,305,308,310,311,312]},{"name":"IoPagingPriorityHigh","features":[307]},{"name":"IoPagingPriorityInvalid","features":[307]},{"name":"IoPagingPriorityNormal","features":[307]},{"name":"IoPagingPriorityReserved1","features":[307]},{"name":"IoPagingPriorityReserved2","features":[307]},{"name":"IoPropagateActivityIdToThread","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueryDeviceComponentInformation","features":[307]},{"name":"IoQueryDeviceConfigurationData","features":[307]},{"name":"IoQueryDeviceDescription","features":[307,305]},{"name":"IoQueryDeviceIdentifier","features":[307]},{"name":"IoQueryDeviceMaxData","features":[307]},{"name":"IoQueryFullDriverPath","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueryInformationByName","features":[306,309,307,305,310]},{"name":"IoQueryKsrPersistentMemorySize","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueryKsrPersistentMemorySizeEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoQueueWorkItem","features":[306,307]},{"name":"IoQueueWorkItemEx","features":[306,307]},{"name":"IoRaiseHardError","features":[306,309,307,305,308,310,311,312]},{"name":"IoRaiseInformationalHardError","features":[306,307,305]},{"name":"IoReadAccess","features":[307]},{"name":"IoReadDiskSignature","features":[306,309,307,305,308,310,311,312]},{"name":"IoReadPartitionTable","features":[306,309,307,305,308,310,325,311,312]},{"name":"IoReadPartitionTableEx","features":[306,309,307,305,308,310,325,311,312]},{"name":"IoRecordIoAttribution","features":[307,305]},{"name":"IoRegisterBootDriverCallback","features":[307]},{"name":"IoRegisterBootDriverReinitialization","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterContainerNotification","features":[307,305]},{"name":"IoRegisterDeviceInterface","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterDriverReinitialization","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterLastChanceShutdownNotification","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterPlugPlayNotification","features":[306,309,307,305,308,310,311,312]},{"name":"IoRegisterShutdownNotification","features":[306,309,307,305,308,310,311,312]},{"name":"IoReleaseCancelSpinLock","features":[307]},{"name":"IoReleaseRemoveLockAndWaitEx","features":[306,307,305,311]},{"name":"IoReleaseRemoveLockEx","features":[306,307,305,311]},{"name":"IoRemoveLinkShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoRemoveLinkShareAccessEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoRemoveShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoReplacePartitionUnit","features":[306,309,307,305,308,310,311,312]},{"name":"IoReportDetectedDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoReportInterruptActive","features":[306,307]},{"name":"IoReportInterruptInactive","features":[306,307]},{"name":"IoReportResourceForDetection","features":[306,309,307,305,308,310,311,312]},{"name":"IoReportResourceUsage","features":[306,309,307,305,308,310,311,312]},{"name":"IoReportRootDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoReportTargetDeviceChange","features":[306,309,307,305,308,310,311,312]},{"name":"IoReportTargetDeviceChangeAsynchronous","features":[306,309,307,305,308,310,311,312]},{"name":"IoRequestDeviceEject","features":[306,309,307,305,308,310,311,312]},{"name":"IoRequestDeviceEjectEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoReserveKsrPersistentMemory","features":[306,309,307,305,308,310,311,312]},{"name":"IoReserveKsrPersistentMemoryEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoReuseIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoSessionEventConnected","features":[307]},{"name":"IoSessionEventCreated","features":[307]},{"name":"IoSessionEventDisconnected","features":[307]},{"name":"IoSessionEventIgnore","features":[307]},{"name":"IoSessionEventLogoff","features":[307]},{"name":"IoSessionEventLogon","features":[307]},{"name":"IoSessionEventMax","features":[307]},{"name":"IoSessionEventTerminated","features":[307]},{"name":"IoSessionStateConnected","features":[307]},{"name":"IoSessionStateCreated","features":[307]},{"name":"IoSessionStateDisconnected","features":[307]},{"name":"IoSessionStateDisconnectedLoggedOn","features":[307]},{"name":"IoSessionStateInformation","features":[307]},{"name":"IoSessionStateInitialized","features":[307]},{"name":"IoSessionStateLoggedOff","features":[307]},{"name":"IoSessionStateLoggedOn","features":[307]},{"name":"IoSessionStateMax","features":[307]},{"name":"IoSessionStateNotification","features":[307]},{"name":"IoSessionStateTerminated","features":[307]},{"name":"IoSetActivityIdIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetActivityIdThread","features":[307]},{"name":"IoSetCompletionRoutineEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetDeviceInterfacePropertyData","features":[307,303,305]},{"name":"IoSetDeviceInterfaceState","features":[307,305]},{"name":"IoSetDevicePropertyData","features":[306,309,307,303,305,308,310,311,312]},{"name":"IoSetFileObjectIgnoreSharing","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetFileOrigin","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetFsZeroingOffset","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetFsZeroingOffsetRequired","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetHardErrorOrVerifyDevice","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetIoAttributionIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetIoPriorityHint","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetIrpExtraCreateParameter","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetLinkShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetMasterIrpStatus","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetPartitionInformation","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetPartitionInformationEx","features":[306,309,307,305,308,310,325,311,312]},{"name":"IoSetShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetShareAccessEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetStartIoAttributes","features":[306,309,307,305,308,310,311,312]},{"name":"IoSetSystemPartition","features":[307,305]},{"name":"IoSetThreadHardErrorMode","features":[307,305]},{"name":"IoSetTopLevelIrp","features":[306,309,307,305,308,310,311,312]},{"name":"IoSizeOfIrpEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoSizeofWorkItem","features":[307]},{"name":"IoStartNextPacket","features":[306,309,307,305,308,310,311,312]},{"name":"IoStartNextPacketByKey","features":[306,309,307,305,308,310,311,312]},{"name":"IoStartPacket","features":[306,309,307,305,308,310,311,312]},{"name":"IoStartTimer","features":[306,309,307,305,308,310,311,312]},{"name":"IoStopTimer","features":[306,309,307,305,308,310,311,312]},{"name":"IoSynchronousCallDriver","features":[306,309,307,305,308,310,311,312]},{"name":"IoTransferActivityId","features":[307]},{"name":"IoTranslateBusAddress","features":[307,305]},{"name":"IoTryQueueWorkItem","features":[306,307,305]},{"name":"IoUninitializeWorkItem","features":[306,307]},{"name":"IoUnregisterBootDriverCallback","features":[307]},{"name":"IoUnregisterContainerNotification","features":[307]},{"name":"IoUnregisterPlugPlayNotification","features":[307,305]},{"name":"IoUnregisterPlugPlayNotificationEx","features":[307,305]},{"name":"IoUnregisterShutdownNotification","features":[306,309,307,305,308,310,311,312]},{"name":"IoUpdateLinkShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoUpdateLinkShareAccessEx","features":[306,309,307,305,308,310,311,312]},{"name":"IoUpdateShareAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoValidateDeviceIoControlAccess","features":[306,309,307,305,308,310,311,312]},{"name":"IoVerifyPartitionTable","features":[306,309,307,305,308,310,311,312]},{"name":"IoVolumeDeviceNameToGuid","features":[307,305]},{"name":"IoVolumeDeviceNameToGuidPath","features":[307,305]},{"name":"IoVolumeDeviceToDosName","features":[307,305]},{"name":"IoVolumeDeviceToGuid","features":[307,305]},{"name":"IoVolumeDeviceToGuidPath","features":[307,305]},{"name":"IoWMIAllocateInstanceIds","features":[307,305]},{"name":"IoWMIDeviceObjectToInstanceName","features":[306,309,307,305,308,310,311,312]},{"name":"IoWMIExecuteMethod","features":[307,305]},{"name":"IoWMIHandleToInstanceName","features":[307,305]},{"name":"IoWMIOpenBlock","features":[307,305]},{"name":"IoWMIQueryAllData","features":[307,305]},{"name":"IoWMIQueryAllDataMultiple","features":[307,305]},{"name":"IoWMIQuerySingleInstance","features":[307,305]},{"name":"IoWMIQuerySingleInstanceMultiple","features":[307,305]},{"name":"IoWMIRegistrationControl","features":[306,309,307,305,308,310,311,312]},{"name":"IoWMISetNotificationCallback","features":[307,305]},{"name":"IoWMISetSingleInstance","features":[307,305]},{"name":"IoWMISetSingleItem","features":[307,305]},{"name":"IoWMISuggestInstanceName","features":[306,309,307,305,308,310,311,312]},{"name":"IoWMIWriteEvent","features":[307,305]},{"name":"IoWithinStackLimits","features":[307]},{"name":"IoWriteAccess","features":[307]},{"name":"IoWriteErrorLogEntry","features":[307]},{"name":"IoWriteKsrPersistentMemory","features":[307,305]},{"name":"IoWritePartitionTable","features":[306,309,307,305,308,310,325,311,312]},{"name":"IoWritePartitionTableEx","features":[306,309,307,305,308,310,325,311,312]},{"name":"IofCallDriver","features":[306,309,307,305,308,310,311,312]},{"name":"IofCompleteRequest","features":[306,309,307,305,308,310,311,312]},{"name":"IommuDeviceCreationConfigTypeAcpi","features":[307]},{"name":"IommuDeviceCreationConfigTypeDeviceId","features":[307]},{"name":"IommuDeviceCreationConfigTypeMax","features":[307]},{"name":"IommuDeviceCreationConfigTypeNone","features":[307]},{"name":"IommuDmaLogicalAllocatorBuddy","features":[307]},{"name":"IommuDmaLogicalAllocatorMax","features":[307]},{"name":"IommuDmaLogicalAllocatorNone","features":[307]},{"name":"IrqPolicyAllCloseProcessors","features":[307]},{"name":"IrqPolicyAllProcessorsInMachine","features":[307]},{"name":"IrqPolicyAllProcessorsInMachineWhenSteered","features":[307]},{"name":"IrqPolicyMachineDefault","features":[307]},{"name":"IrqPolicyOneCloseProcessor","features":[307]},{"name":"IrqPolicySpecifiedProcessors","features":[307]},{"name":"IrqPolicySpreadMessagesAcrossAllProcessors","features":[307]},{"name":"IrqPriorityHigh","features":[307]},{"name":"IrqPriorityLow","features":[307]},{"name":"IrqPriorityNormal","features":[307]},{"name":"IrqPriorityUndefined","features":[307]},{"name":"Isa","features":[307]},{"name":"IsochCommand","features":[307]},{"name":"IsochStatus","features":[307]},{"name":"KADDRESS_BASE","features":[307]},{"name":"KADDRESS_RANGE","features":[307]},{"name":"KADDRESS_RANGE_DESCRIPTOR","features":[307]},{"name":"KAPC","features":[307,305,311]},{"name":"KBUGCHECK_ADD_PAGES","features":[307]},{"name":"KBUGCHECK_BUFFER_DUMP_STATE","features":[307]},{"name":"KBUGCHECK_CALLBACK_REASON","features":[307]},{"name":"KBUGCHECK_CALLBACK_RECORD","features":[307,311]},{"name":"KBUGCHECK_CALLBACK_ROUTINE","features":[307]},{"name":"KBUGCHECK_DUMP_IO","features":[307]},{"name":"KBUGCHECK_DUMP_IO_TYPE","features":[307]},{"name":"KBUGCHECK_REASON_CALLBACK_RECORD","features":[307,311]},{"name":"KBUGCHECK_REASON_CALLBACK_ROUTINE","features":[307,311]},{"name":"KBUGCHECK_REMOVE_PAGES","features":[307]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA","features":[307]},{"name":"KBUGCHECK_SECONDARY_DUMP_DATA_EX","features":[307]},{"name":"KBUGCHECK_TRIAGE_DUMP_DATA","features":[307,311]},{"name":"KB_ADD_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[307]},{"name":"KB_ADD_PAGES_FLAG_PHYSICAL_ADDRESS","features":[307]},{"name":"KB_ADD_PAGES_FLAG_VIRTUAL_ADDRESS","features":[307]},{"name":"KB_REMOVE_PAGES_FLAG_ADDITIONAL_RANGES_EXIST","features":[307]},{"name":"KB_REMOVE_PAGES_FLAG_PHYSICAL_ADDRESS","features":[307]},{"name":"KB_REMOVE_PAGES_FLAG_VIRTUAL_ADDRESS","features":[307]},{"name":"KB_SECONDARY_DATA_FLAG_ADDITIONAL_DATA","features":[307]},{"name":"KB_SECONDARY_DATA_FLAG_NO_DEVICE_ACCESS","features":[307]},{"name":"KB_TRIAGE_DUMP_DATA_FLAG_BUGCHECK_ACTIVE","features":[307]},{"name":"KDEFERRED_ROUTINE","features":[306,307,311]},{"name":"KDEVICE_QUEUE_ENTRY","features":[307,305,311]},{"name":"KDPC_IMPORTANCE","features":[307]},{"name":"KDPC_WATCHDOG_INFORMATION","features":[307]},{"name":"KD_CALLBACK_ACTION","features":[307]},{"name":"KD_NAMESPACE_ENUM","features":[307]},{"name":"KD_OPTION","features":[307]},{"name":"KD_OPTION_SET_BLOCK_ENABLE","features":[307]},{"name":"KENCODED_TIMER_PROCESSOR","features":[307]},{"name":"KERNEL_LARGE_STACK_COMMIT","features":[307]},{"name":"KERNEL_LARGE_STACK_SIZE","features":[307]},{"name":"KERNEL_MCA_EXCEPTION_STACK_SIZE","features":[307]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION","features":[307]},{"name":"KERNEL_SOFT_RESTART_NOTIFICATION_VERSION","features":[307]},{"name":"KERNEL_STACK_SIZE","features":[307]},{"name":"KERNEL_USER_TIMES","features":[307]},{"name":"KEY_BASIC_INFORMATION","features":[307]},{"name":"KEY_CACHED_INFORMATION","features":[307]},{"name":"KEY_CONTROL_FLAGS_INFORMATION","features":[307]},{"name":"KEY_FULL_INFORMATION","features":[307]},{"name":"KEY_LAYER_INFORMATION","features":[307]},{"name":"KEY_NAME_INFORMATION","features":[307]},{"name":"KEY_NODE_INFORMATION","features":[307]},{"name":"KEY_SET_VIRTUALIZATION_INFORMATION","features":[307]},{"name":"KEY_TRUST_INFORMATION","features":[307]},{"name":"KEY_VALUE_BASIC_INFORMATION","features":[307]},{"name":"KEY_VALUE_FULL_INFORMATION","features":[307]},{"name":"KEY_VALUE_LAYER_INFORMATION","features":[307]},{"name":"KEY_VALUE_PARTIAL_INFORMATION","features":[307]},{"name":"KEY_VALUE_PARTIAL_INFORMATION_ALIGN64","features":[307]},{"name":"KEY_VIRTUALIZATION_INFORMATION","features":[307]},{"name":"KEY_WOW64_FLAGS_INFORMATION","features":[307]},{"name":"KEY_WRITE_TIME_INFORMATION","features":[307]},{"name":"KE_MAX_TRIAGE_DUMP_DATA_MEMORY_SIZE","features":[307]},{"name":"KE_PROCESSOR_CHANGE_ADD_EXISTING","features":[307]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_CONTEXT","features":[307,305,311]},{"name":"KE_PROCESSOR_CHANGE_NOTIFY_STATE","features":[307]},{"name":"KFLOATING_SAVE","features":[307]},{"name":"KGATE","features":[306,307,305,311]},{"name":"KINTERRUPT_MODE","features":[307]},{"name":"KINTERRUPT_POLARITY","features":[307]},{"name":"KIPI_BROADCAST_WORKER","features":[307]},{"name":"KI_USER_SHARED_DATA","features":[307]},{"name":"KLOCK_QUEUE_HANDLE","features":[307]},{"name":"KMESSAGE_SERVICE_ROUTINE","features":[307,305]},{"name":"KPROFILE_SOURCE","features":[307]},{"name":"KSEMAPHORE","features":[306,307,305,311]},{"name":"KSERVICE_ROUTINE","features":[307,305]},{"name":"KSPIN_LOCK_QUEUE","features":[307]},{"name":"KSTART_ROUTINE","features":[307]},{"name":"KSYNCHRONIZE_ROUTINE","features":[307,305]},{"name":"KSYSTEM_TIME","features":[307]},{"name":"KTIMER","features":[306,307,305,311]},{"name":"KTRIAGE_DUMP_DATA_ARRAY","features":[307,311]},{"name":"KUMS_UCH_VOLATILE_BIT","features":[307]},{"name":"KUSER_SHARED_DATA","features":[307,305,334,311]},{"name":"KWAIT_CHAIN","features":[307]},{"name":"KWAIT_REASON","features":[307]},{"name":"KbCallbackAddPages","features":[307]},{"name":"KbCallbackDumpIo","features":[307]},{"name":"KbCallbackInvalid","features":[307]},{"name":"KbCallbackRemovePages","features":[307]},{"name":"KbCallbackReserved1","features":[307]},{"name":"KbCallbackReserved2","features":[307]},{"name":"KbCallbackSecondaryDumpData","features":[307]},{"name":"KbCallbackSecondaryMultiPartDumpData","features":[307]},{"name":"KbCallbackTriageDumpData","features":[307]},{"name":"KbDumpIoBody","features":[307]},{"name":"KbDumpIoComplete","features":[307]},{"name":"KbDumpIoHeader","features":[307]},{"name":"KbDumpIoInvalid","features":[307]},{"name":"KbDumpIoSecondaryData","features":[307]},{"name":"KdChangeOption","features":[307,305]},{"name":"KdConfigureDeviceAndContinue","features":[307]},{"name":"KdConfigureDeviceAndStop","features":[307]},{"name":"KdDisableDebugger","features":[307,305]},{"name":"KdEnableDebugger","features":[307,305]},{"name":"KdNameSpaceACPI","features":[307]},{"name":"KdNameSpaceAny","features":[307]},{"name":"KdNameSpaceMax","features":[307]},{"name":"KdNameSpaceNone","features":[307]},{"name":"KdNameSpacePCI","features":[307]},{"name":"KdRefreshDebuggerNotPresent","features":[307,305]},{"name":"KdSkipDeviceAndContinue","features":[307]},{"name":"KdSkipDeviceAndStop","features":[307]},{"name":"KeAcquireGuardedMutex","features":[306,307,305,311]},{"name":"KeAcquireGuardedMutexUnsafe","features":[306,307,305,311]},{"name":"KeAcquireInStackQueuedSpinLock","features":[307]},{"name":"KeAcquireInStackQueuedSpinLockAtDpcLevel","features":[307]},{"name":"KeAcquireInStackQueuedSpinLockForDpc","features":[307]},{"name":"KeAcquireInterruptSpinLock","features":[306,307]},{"name":"KeAcquireSpinLockForDpc","features":[307]},{"name":"KeAddTriageDumpDataBlock","features":[307,305,311]},{"name":"KeAreAllApcsDisabled","features":[307,305]},{"name":"KeAreApcsDisabled","features":[307,305]},{"name":"KeBugCheck","features":[307,334]},{"name":"KeBugCheckEx","features":[307,334]},{"name":"KeCancelTimer","features":[306,307,305,311]},{"name":"KeClearEvent","features":[306,307,305,311]},{"name":"KeConvertAuxiliaryCounterToPerformanceCounter","features":[307,305]},{"name":"KeConvertPerformanceCounterToAuxiliaryCounter","features":[307,305]},{"name":"KeDelayExecutionThread","features":[307,305]},{"name":"KeDeregisterBoundCallback","features":[307,305]},{"name":"KeDeregisterBugCheckCallback","features":[307,305,311]},{"name":"KeDeregisterBugCheckReasonCallback","features":[307,305,311]},{"name":"KeDeregisterNmiCallback","features":[307,305]},{"name":"KeDeregisterProcessorChangeCallback","features":[307]},{"name":"KeEnterCriticalRegion","features":[307]},{"name":"KeEnterGuardedRegion","features":[307]},{"name":"KeExpandKernelStackAndCallout","features":[307,305]},{"name":"KeExpandKernelStackAndCalloutEx","features":[307,305]},{"name":"KeFlushIoBuffers","features":[306,307,305]},{"name":"KeFlushQueuedDpcs","features":[307]},{"name":"KeFlushWriteBuffer","features":[307]},{"name":"KeGetCurrentIrql","features":[307]},{"name":"KeGetCurrentNodeNumber","features":[307]},{"name":"KeGetCurrentProcessorNumberEx","features":[307,311]},{"name":"KeGetProcessorIndexFromNumber","features":[307,311]},{"name":"KeGetProcessorNumberFromIndex","features":[307,305,311]},{"name":"KeGetRecommendedSharedDataAlignment","features":[307]},{"name":"KeInitializeCrashDumpHeader","features":[307,305]},{"name":"KeInitializeDeviceQueue","features":[306,307,305,311]},{"name":"KeInitializeDpc","features":[306,307,311]},{"name":"KeInitializeEvent","features":[306,307,305,311]},{"name":"KeInitializeGuardedMutex","features":[306,307,305,311]},{"name":"KeInitializeMutex","features":[306,307,305,311]},{"name":"KeInitializeSemaphore","features":[306,307,305,311]},{"name":"KeInitializeSpinLock","features":[307]},{"name":"KeInitializeThreadedDpc","features":[306,307,311]},{"name":"KeInitializeTimer","features":[306,307,305,311]},{"name":"KeInitializeTimerEx","features":[306,307,305,311]},{"name":"KeInitializeTriageDumpDataArray","features":[307,305,311]},{"name":"KeInsertByKeyDeviceQueue","features":[306,307,305,311]},{"name":"KeInsertDeviceQueue","features":[306,307,305,311]},{"name":"KeInsertQueueDpc","features":[306,307,305,311]},{"name":"KeInvalidateAllCaches","features":[307,305]},{"name":"KeInvalidateRangeAllCaches","features":[307]},{"name":"KeIpiGenericCall","features":[307]},{"name":"KeIsExecutingDpc","features":[307]},{"name":"KeLeaveCriticalRegion","features":[307]},{"name":"KeLeaveGuardedRegion","features":[307]},{"name":"KeProcessorAddCompleteNotify","features":[307]},{"name":"KeProcessorAddFailureNotify","features":[307]},{"name":"KeProcessorAddStartNotify","features":[307]},{"name":"KePulseEvent","features":[306,307,305,311]},{"name":"KeQueryActiveGroupCount","features":[307]},{"name":"KeQueryActiveProcessorCount","features":[307]},{"name":"KeQueryActiveProcessorCountEx","features":[307]},{"name":"KeQueryActiveProcessors","features":[307]},{"name":"KeQueryAuxiliaryCounterFrequency","features":[307,305]},{"name":"KeQueryDpcWatchdogInformation","features":[307,305]},{"name":"KeQueryGroupAffinity","features":[307]},{"name":"KeQueryHardwareCounterConfiguration","features":[307,305]},{"name":"KeQueryHighestNodeNumber","features":[307]},{"name":"KeQueryInterruptTimePrecise","features":[307]},{"name":"KeQueryLogicalProcessorRelationship","features":[307,305,311,336]},{"name":"KeQueryMaximumGroupCount","features":[307]},{"name":"KeQueryMaximumProcessorCount","features":[307]},{"name":"KeQueryMaximumProcessorCountEx","features":[307]},{"name":"KeQueryNodeActiveAffinity","features":[307,336]},{"name":"KeQueryNodeActiveAffinity2","features":[307,305,336]},{"name":"KeQueryNodeActiveProcessorCount","features":[307]},{"name":"KeQueryNodeMaximumProcessorCount","features":[307]},{"name":"KeQueryPerformanceCounter","features":[307]},{"name":"KeQueryPriorityThread","features":[306,307]},{"name":"KeQueryRuntimeThread","features":[306,307]},{"name":"KeQuerySystemTimePrecise","features":[307]},{"name":"KeQueryTimeIncrement","features":[307]},{"name":"KeQueryTotalCycleTimeThread","features":[306,307]},{"name":"KeQueryUnbiasedInterruptTime","features":[307]},{"name":"KeQueryUnbiasedInterruptTimePrecise","features":[307]},{"name":"KeReadStateEvent","features":[306,307,305,311]},{"name":"KeReadStateMutex","features":[306,307,305,311]},{"name":"KeReadStateSemaphore","features":[306,307,305,311]},{"name":"KeReadStateTimer","features":[306,307,305,311]},{"name":"KeRegisterBoundCallback","features":[307]},{"name":"KeRegisterBugCheckCallback","features":[307,305,311]},{"name":"KeRegisterBugCheckReasonCallback","features":[307,305,311]},{"name":"KeRegisterNmiCallback","features":[307,305]},{"name":"KeRegisterProcessorChangeCallback","features":[307]},{"name":"KeReleaseGuardedMutex","features":[306,307,305,311]},{"name":"KeReleaseGuardedMutexUnsafe","features":[306,307,305,311]},{"name":"KeReleaseInStackQueuedSpinLock","features":[307]},{"name":"KeReleaseInStackQueuedSpinLockForDpc","features":[307]},{"name":"KeReleaseInStackQueuedSpinLockFromDpcLevel","features":[307]},{"name":"KeReleaseInterruptSpinLock","features":[306,307]},{"name":"KeReleaseMutex","features":[306,307,305,311]},{"name":"KeReleaseSemaphore","features":[306,307,305,311]},{"name":"KeReleaseSpinLockForDpc","features":[307]},{"name":"KeRemoveByKeyDeviceQueue","features":[306,307,305,311]},{"name":"KeRemoveByKeyDeviceQueueIfBusy","features":[306,307,305,311]},{"name":"KeRemoveDeviceQueue","features":[306,307,305,311]},{"name":"KeRemoveEntryDeviceQueue","features":[306,307,305,311]},{"name":"KeRemoveQueueDpc","features":[306,307,305,311]},{"name":"KeRemoveQueueDpcEx","features":[306,307,305,311]},{"name":"KeResetEvent","features":[306,307,305,311]},{"name":"KeRestoreExtendedProcessorState","features":[307,334]},{"name":"KeRevertToUserAffinityThread","features":[307]},{"name":"KeRevertToUserAffinityThreadEx","features":[307]},{"name":"KeRevertToUserGroupAffinityThread","features":[307,336]},{"name":"KeSaveExtendedProcessorState","features":[307,305,334]},{"name":"KeSetBasePriorityThread","features":[306,307]},{"name":"KeSetCoalescableTimer","features":[306,307,305,311]},{"name":"KeSetEvent","features":[306,307,305,311]},{"name":"KeSetHardwareCounterConfiguration","features":[307,305]},{"name":"KeSetImportanceDpc","features":[306,307,311]},{"name":"KeSetPriorityThread","features":[306,307]},{"name":"KeSetSystemAffinityThread","features":[307]},{"name":"KeSetSystemAffinityThreadEx","features":[307]},{"name":"KeSetSystemGroupAffinityThread","features":[307,336]},{"name":"KeSetTargetProcessorDpc","features":[306,307,311]},{"name":"KeSetTargetProcessorDpcEx","features":[306,307,305,311]},{"name":"KeSetTimer","features":[306,307,305,311]},{"name":"KeSetTimerEx","features":[306,307,305,311]},{"name":"KeShouldYieldProcessor","features":[307]},{"name":"KeStallExecutionProcessor","features":[307]},{"name":"KeSynchronizeExecution","features":[306,307,305]},{"name":"KeTestSpinLock","features":[307,305]},{"name":"KeTryToAcquireGuardedMutex","features":[306,307,305,311]},{"name":"KeTryToAcquireSpinLockAtDpcLevel","features":[307,305]},{"name":"KeWaitForMultipleObjects","features":[306,307,305,311]},{"name":"KeWaitForSingleObject","features":[307,305]},{"name":"KeepObject","features":[307]},{"name":"KernelMode","features":[307]},{"name":"KeyboardController","features":[307]},{"name":"KeyboardPeripheral","features":[307]},{"name":"KfRaiseIrql","features":[307]},{"name":"L0sAndL1EntryDisabled","features":[307]},{"name":"L0sAndL1EntryEnabled","features":[307]},{"name":"L0sAndL1EntrySupport","features":[307]},{"name":"L0sEntryEnabled","features":[307]},{"name":"L0sEntrySupport","features":[307]},{"name":"L0s_128ns_256ns","features":[307]},{"name":"L0s_1us_2us","features":[307]},{"name":"L0s_256ns_512ns","features":[307]},{"name":"L0s_2us_4us","features":[307]},{"name":"L0s_512ns_1us","features":[307]},{"name":"L0s_64ns_128ns","features":[307]},{"name":"L0s_Above4us","features":[307]},{"name":"L0s_Below64ns","features":[307]},{"name":"L1EntryEnabled","features":[307]},{"name":"L1EntrySupport","features":[307]},{"name":"L1_16us_32us","features":[307]},{"name":"L1_1us_2us","features":[307]},{"name":"L1_2us_4us","features":[307]},{"name":"L1_32us_64us","features":[307]},{"name":"L1_4us_8us","features":[307]},{"name":"L1_8us_16us","features":[307]},{"name":"L1_Above64us","features":[307]},{"name":"L1_Below1us","features":[307]},{"name":"LEGACY_BUS_INFORMATION","features":[307]},{"name":"LINK_SHARE_ACCESS","features":[307]},{"name":"LOADER_PARTITION_INFORMATION_EX","features":[307]},{"name":"LOCK_OPERATION","features":[307]},{"name":"LOCK_QUEUE_HALTED","features":[307]},{"name":"LOCK_QUEUE_HALTED_BIT","features":[307]},{"name":"LOCK_QUEUE_OWNER","features":[307]},{"name":"LOCK_QUEUE_OWNER_BIT","features":[307]},{"name":"LOCK_QUEUE_WAIT","features":[307]},{"name":"LOCK_QUEUE_WAIT_BIT","features":[307]},{"name":"LONG_2ND_MOST_SIGNIFICANT_BIT","features":[307]},{"name":"LONG_3RD_MOST_SIGNIFICANT_BIT","features":[307]},{"name":"LONG_LEAST_SIGNIFICANT_BIT","features":[307]},{"name":"LONG_MOST_SIGNIFICANT_BIT","features":[307]},{"name":"LOWBYTE_MASK","features":[307]},{"name":"LOW_LEVEL","features":[307]},{"name":"LOW_PRIORITY","features":[307]},{"name":"LOW_REALTIME_PRIORITY","features":[307]},{"name":"LastDStateTransitionD3cold","features":[307]},{"name":"LastDStateTransitionD3hot","features":[307]},{"name":"LastDStateTransitionStatusUnknown","features":[307]},{"name":"LastDrvRtFlag","features":[307]},{"name":"Latched","features":[307]},{"name":"LevelSensitive","features":[307]},{"name":"LinePeripheral","features":[307]},{"name":"LocateControl","features":[307]},{"name":"LocationTypeFileSystem","features":[307]},{"name":"LocationTypeMaximum","features":[307]},{"name":"LocationTypeRegistry","features":[307]},{"name":"LoggerEventsLoggedClass","features":[307]},{"name":"LoggerEventsLostClass","features":[307]},{"name":"LowImportance","features":[307]},{"name":"LowPagePriority","features":[307]},{"name":"LowPoolPriority","features":[307]},{"name":"LowPoolPrioritySpecialPoolOverrun","features":[307]},{"name":"LowPoolPrioritySpecialPoolUnderrun","features":[307]},{"name":"MAILSLOT_CREATE_PARAMETERS","features":[307,305]},{"name":"MAP_REGISTER_ENTRY","features":[307,305]},{"name":"MAXIMUM_DEBUG_BARS","features":[307]},{"name":"MAXIMUM_FILENAME_LENGTH","features":[307]},{"name":"MAXIMUM_PRIORITY","features":[307]},{"name":"MAX_EVENT_COUNTERS","features":[307]},{"name":"MCA_DRIVER_INFO","features":[306,307]},{"name":"MCA_EXCEPTION","features":[307]},{"name":"MCA_EXCEPTION_TYPE","features":[307]},{"name":"MCA_EXTREG_V2MAX","features":[307]},{"name":"MCE_NOTIFY_TYPE_GUID","features":[307]},{"name":"MCG_CAP","features":[307]},{"name":"MCG_STATUS","features":[307]},{"name":"MCI_ADDR","features":[307]},{"name":"MCI_STATS","features":[307]},{"name":"MCI_STATUS","features":[307]},{"name":"MCI_STATUS_AMD_BITS","features":[307]},{"name":"MCI_STATUS_BITS_COMMON","features":[307]},{"name":"MCI_STATUS_INTEL_BITS","features":[307]},{"name":"MDL_ALLOCATED_FIXED_SIZE","features":[307]},{"name":"MDL_DESCRIBES_AWE","features":[307]},{"name":"MDL_FREE_EXTRA_PTES","features":[307]},{"name":"MDL_INTERNAL","features":[307]},{"name":"MDL_LOCKED_PAGE_TABLES","features":[307]},{"name":"MDL_PAGE_CONTENTS_INVARIANT","features":[307]},{"name":"MEMORY_CACHING_TYPE","features":[307]},{"name":"MEMORY_CACHING_TYPE_ORIG","features":[307]},{"name":"MEMORY_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[307]},{"name":"MEMORY_ERROR_SECTION_GUID","features":[307]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_OPEN_INFORMATION","features":[307,305]},{"name":"MEM_COMMIT","features":[307]},{"name":"MEM_DECOMMIT","features":[307]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[307]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[307]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[307]},{"name":"MEM_LARGE_PAGES","features":[307]},{"name":"MEM_MAPPED","features":[307]},{"name":"MEM_PRIVATE","features":[307]},{"name":"MEM_RELEASE","features":[307]},{"name":"MEM_RESERVE","features":[307]},{"name":"MEM_RESET","features":[307]},{"name":"MEM_RESET_UNDO","features":[307]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[307]},{"name":"MEM_TOP_DOWN","features":[307]},{"name":"MM_ADD_PHYSICAL_MEMORY_ALREADY_ZEROED","features":[307]},{"name":"MM_ADD_PHYSICAL_MEMORY_HUGE_PAGES_ONLY","features":[307]},{"name":"MM_ADD_PHYSICAL_MEMORY_LARGE_PAGES_ONLY","features":[307]},{"name":"MM_ALLOCATE_AND_HOT_REMOVE","features":[307]},{"name":"MM_ALLOCATE_CONTIGUOUS_MEMORY_FAST_ONLY","features":[307]},{"name":"MM_ALLOCATE_FAST_LARGE_PAGES","features":[307]},{"name":"MM_ALLOCATE_FROM_LOCAL_NODE_ONLY","features":[307]},{"name":"MM_ALLOCATE_FULLY_REQUIRED","features":[307]},{"name":"MM_ALLOCATE_NO_WAIT","features":[307]},{"name":"MM_ALLOCATE_PREFER_CONTIGUOUS","features":[307]},{"name":"MM_ALLOCATE_REQUIRE_CONTIGUOUS_CHUNKS","features":[307]},{"name":"MM_ALLOCATE_TRIM_IF_NECESSARY","features":[307]},{"name":"MM_ANY_NODE_OK","features":[307]},{"name":"MM_COPY_ADDRESS","features":[307]},{"name":"MM_COPY_MEMORY_PHYSICAL","features":[307]},{"name":"MM_COPY_MEMORY_VIRTUAL","features":[307]},{"name":"MM_DONT_ZERO_ALLOCATION","features":[307]},{"name":"MM_DUMP_MAP_CACHED","features":[307]},{"name":"MM_DUMP_MAP_INVALIDATE","features":[307]},{"name":"MM_FREE_MDL_PAGES_ZERO","features":[307]},{"name":"MM_GET_CACHE_ATTRIBUTE_IO_SPACE","features":[307]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_ALL_PARTITIONS","features":[307]},{"name":"MM_GET_PHYSICAL_MEMORY_RANGES_INCLUDE_FILE_ONLY","features":[307]},{"name":"MM_MAPPING_ADDRESS_DIVISIBLE","features":[307]},{"name":"MM_MAXIMUM_DISK_IO_SIZE","features":[307]},{"name":"MM_MDL_PAGE_CONTENTS_STATE","features":[307]},{"name":"MM_MDL_ROUTINE","features":[307]},{"name":"MM_PAGE_PRIORITY","features":[307]},{"name":"MM_PERMANENT_ADDRESS_IS_IO_SPACE","features":[307]},{"name":"MM_PHYSICAL_ADDRESS_LIST","features":[307]},{"name":"MM_PROTECT_DRIVER_SECTION_ALLOW_UNLOAD","features":[307]},{"name":"MM_PROTECT_DRIVER_SECTION_VALID_FLAGS","features":[307]},{"name":"MM_REMOVE_PHYSICAL_MEMORY_BAD_ONLY","features":[307]},{"name":"MM_ROTATE_DIRECTION","features":[307]},{"name":"MM_SECURE_EXCLUSIVE","features":[307]},{"name":"MM_SECURE_NO_CHANGE","features":[307]},{"name":"MM_SECURE_NO_INHERIT","features":[307]},{"name":"MM_SECURE_USER_MODE_ONLY","features":[307]},{"name":"MM_SYSTEMSIZE","features":[307]},{"name":"MM_SYSTEM_SPACE_END","features":[307]},{"name":"MM_SYSTEM_VIEW_EXCEPTIONS_FOR_INPAGE_ERRORS","features":[307]},{"name":"MODE","features":[307]},{"name":"MPIBus","features":[307]},{"name":"MPIConfiguration","features":[307]},{"name":"MPSABus","features":[307]},{"name":"MPSAConfiguration","features":[307]},{"name":"MRLClosed","features":[307]},{"name":"MRLOpen","features":[307]},{"name":"MU_TELEMETRY_SECTION","features":[307]},{"name":"MU_TELEMETRY_SECTION_GUID","features":[307]},{"name":"MapPhysicalAddressTypeContiguousRange","features":[307]},{"name":"MapPhysicalAddressTypeMax","features":[307]},{"name":"MapPhysicalAddressTypeMdl","features":[307]},{"name":"MapPhysicalAddressTypePfn","features":[307]},{"name":"MaxFaultType","features":[307]},{"name":"MaxHardwareCounterType","features":[307]},{"name":"MaxPayload1024Bytes","features":[307]},{"name":"MaxPayload128Bytes","features":[307]},{"name":"MaxPayload2048Bytes","features":[307]},{"name":"MaxPayload256Bytes","features":[307]},{"name":"MaxPayload4096Bytes","features":[307]},{"name":"MaxPayload512Bytes","features":[307]},{"name":"MaxRegNtNotifyClass","features":[307]},{"name":"MaxSubsystemInformationType","features":[307]},{"name":"MaxTraceInformationClass","features":[307]},{"name":"MaximumBusDataType","features":[307]},{"name":"MaximumDmaSpeed","features":[307]},{"name":"MaximumDmaWidth","features":[307]},{"name":"MaximumInterfaceType","features":[307]},{"name":"MaximumMode","features":[307]},{"name":"MaximumType","features":[307]},{"name":"MaximumWaitReason","features":[307]},{"name":"MaximumWorkQueue","features":[307]},{"name":"MdlMappingNoExecute","features":[307]},{"name":"MdlMappingNoWrite","features":[307]},{"name":"MdlMappingWithGuardPtes","features":[307]},{"name":"MediumHighImportance","features":[307]},{"name":"MediumImportance","features":[307]},{"name":"MemDedicatedAttributeMax","features":[307]},{"name":"MemDedicatedAttributeReadBandwidth","features":[307]},{"name":"MemDedicatedAttributeReadLatency","features":[307]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[307]},{"name":"MemDedicatedAttributeWriteLatency","features":[307]},{"name":"MemSectionExtendedParameterInvalidType","features":[307]},{"name":"MemSectionExtendedParameterMax","features":[307]},{"name":"MemSectionExtendedParameterNumaNode","features":[307]},{"name":"MemSectionExtendedParameterSigningLevel","features":[307]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[307]},{"name":"MicroChannel","features":[307]},{"name":"MmAddPhysicalMemory","features":[307,305]},{"name":"MmAddVerifierSpecialThunks","features":[307,305]},{"name":"MmAddVerifierThunks","features":[307,305]},{"name":"MmAdvanceMdl","features":[306,307,305]},{"name":"MmAllocateContiguousMemory","features":[307]},{"name":"MmAllocateContiguousMemoryEx","features":[307,305]},{"name":"MmAllocateContiguousMemorySpecifyCache","features":[307]},{"name":"MmAllocateContiguousMemorySpecifyCacheNode","features":[307]},{"name":"MmAllocateContiguousNodeMemory","features":[307]},{"name":"MmAllocateMappingAddress","features":[307]},{"name":"MmAllocateMappingAddressEx","features":[307]},{"name":"MmAllocateMdlForIoSpace","features":[306,307,305]},{"name":"MmAllocateNodePagesForMdlEx","features":[306,307]},{"name":"MmAllocateNonCachedMemory","features":[307]},{"name":"MmAllocatePagesForMdl","features":[306,307]},{"name":"MmAllocatePagesForMdlEx","features":[306,307]},{"name":"MmAllocatePartitionNodePagesForMdlEx","features":[306,307]},{"name":"MmAreMdlPagesCached","features":[306,307]},{"name":"MmBuildMdlForNonPagedPool","features":[306,307]},{"name":"MmCached","features":[307]},{"name":"MmCopyMemory","features":[307,305]},{"name":"MmCreateMdl","features":[306,307]},{"name":"MmCreateMirror","features":[307,305]},{"name":"MmFrameBufferCached","features":[307]},{"name":"MmFreeContiguousMemory","features":[307]},{"name":"MmFreeContiguousMemorySpecifyCache","features":[307]},{"name":"MmFreeMappingAddress","features":[307]},{"name":"MmFreeNonCachedMemory","features":[307]},{"name":"MmFreePagesFromMdl","features":[306,307]},{"name":"MmFreePagesFromMdlEx","features":[306,307]},{"name":"MmGetCacheAttribute","features":[307,305]},{"name":"MmGetCacheAttributeEx","features":[307,305]},{"name":"MmGetPhysicalAddress","features":[307]},{"name":"MmGetPhysicalMemoryRanges","features":[307]},{"name":"MmGetPhysicalMemoryRangesEx","features":[307]},{"name":"MmGetPhysicalMemoryRangesEx2","features":[307]},{"name":"MmGetSystemRoutineAddress","features":[307,305]},{"name":"MmGetVirtualForPhysical","features":[307]},{"name":"MmHardwareCoherentCached","features":[307]},{"name":"MmIsAddressValid","features":[307,305]},{"name":"MmIsDriverSuspectForVerifier","features":[306,309,307,305,308,310,311,312]},{"name":"MmIsDriverVerifying","features":[306,309,307,305,308,310,311,312]},{"name":"MmIsDriverVerifyingByAddress","features":[307]},{"name":"MmIsIoSpaceActive","features":[307]},{"name":"MmIsNonPagedSystemAddressValid","features":[307,305]},{"name":"MmIsThisAnNtAsSystem","features":[307,305]},{"name":"MmIsVerifierEnabled","features":[307,305]},{"name":"MmLargeSystem","features":[307]},{"name":"MmLockPagableDataSection","features":[307]},{"name":"MmLockPagableSectionByHandle","features":[307]},{"name":"MmMapIoSpace","features":[307]},{"name":"MmMapIoSpaceEx","features":[307]},{"name":"MmMapLockedPages","features":[306,307]},{"name":"MmMapLockedPagesSpecifyCache","features":[306,307]},{"name":"MmMapLockedPagesWithReservedMapping","features":[306,307]},{"name":"MmMapMdl","features":[306,307,305]},{"name":"MmMapMemoryDumpMdlEx","features":[306,307,305]},{"name":"MmMapUserAddressesToPage","features":[307,305]},{"name":"MmMapVideoDisplay","features":[307]},{"name":"MmMapViewInSessionSpace","features":[307,305]},{"name":"MmMapViewInSessionSpaceEx","features":[307,305]},{"name":"MmMapViewInSystemSpace","features":[307,305]},{"name":"MmMapViewInSystemSpaceEx","features":[307,305]},{"name":"MmMaximumCacheType","features":[307]},{"name":"MmMaximumRotateDirection","features":[307]},{"name":"MmMdlPageContentsDynamic","features":[307]},{"name":"MmMdlPageContentsInvariant","features":[307]},{"name":"MmMdlPageContentsQuery","features":[307]},{"name":"MmMdlPageContentsState","features":[306,307]},{"name":"MmMediumSystem","features":[307]},{"name":"MmNonCached","features":[307]},{"name":"MmNonCachedUnordered","features":[307]},{"name":"MmNotMapped","features":[307]},{"name":"MmPageEntireDriver","features":[307]},{"name":"MmProbeAndLockPages","features":[306,307]},{"name":"MmProbeAndLockProcessPages","features":[306,307]},{"name":"MmProbeAndLockSelectedPages","features":[306,307,324]},{"name":"MmProtectDriverSection","features":[307,305]},{"name":"MmProtectMdlSystemAddress","features":[306,307,305]},{"name":"MmQuerySystemSize","features":[307]},{"name":"MmRemovePhysicalMemory","features":[307,305]},{"name":"MmResetDriverPaging","features":[307]},{"name":"MmRotatePhysicalView","features":[306,307,305]},{"name":"MmSecureVirtualMemory","features":[307,305]},{"name":"MmSecureVirtualMemoryEx","features":[307,305]},{"name":"MmSetPermanentCacheAttribute","features":[307,305]},{"name":"MmSizeOfMdl","features":[307]},{"name":"MmSmallSystem","features":[307]},{"name":"MmToFrameBuffer","features":[307]},{"name":"MmToFrameBufferNoCopy","features":[307]},{"name":"MmToRegularMemory","features":[307]},{"name":"MmToRegularMemoryNoCopy","features":[307]},{"name":"MmUSWCCached","features":[307]},{"name":"MmUnlockPagableImageSection","features":[307]},{"name":"MmUnlockPages","features":[306,307]},{"name":"MmUnmapIoSpace","features":[307]},{"name":"MmUnmapLockedPages","features":[306,307]},{"name":"MmUnmapReservedMapping","features":[306,307]},{"name":"MmUnmapVideoDisplay","features":[307]},{"name":"MmUnmapViewInSessionSpace","features":[307,305]},{"name":"MmUnmapViewInSystemSpace","features":[307,305]},{"name":"MmUnsecureVirtualMemory","features":[307,305]},{"name":"MmWriteCombined","features":[307]},{"name":"ModemPeripheral","features":[307]},{"name":"ModifyAccess","features":[307]},{"name":"MonitorPeripheral","features":[307]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[307]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[307]},{"name":"MonitorRequestReasonBatteryCountChange","features":[307]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[307]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[307]},{"name":"MonitorRequestReasonBuiltinPanel","features":[307]},{"name":"MonitorRequestReasonDP","features":[307]},{"name":"MonitorRequestReasonDim","features":[307]},{"name":"MonitorRequestReasonDirectedDrips","features":[307]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[307]},{"name":"MonitorRequestReasonFullWake","features":[307]},{"name":"MonitorRequestReasonGracePeriod","features":[307]},{"name":"MonitorRequestReasonIdleTimeout","features":[307]},{"name":"MonitorRequestReasonLid","features":[307]},{"name":"MonitorRequestReasonMax","features":[307]},{"name":"MonitorRequestReasonNearProximity","features":[307]},{"name":"MonitorRequestReasonPdcSignal","features":[307]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[307]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[307]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[307]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[307]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[307]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[307]},{"name":"MonitorRequestReasonPnP","features":[307]},{"name":"MonitorRequestReasonPoSetSystemState","features":[307]},{"name":"MonitorRequestReasonPolicyChange","features":[307]},{"name":"MonitorRequestReasonPowerButton","features":[307]},{"name":"MonitorRequestReasonRemoteConnection","features":[307]},{"name":"MonitorRequestReasonResumeModernStandby","features":[307]},{"name":"MonitorRequestReasonResumePdc","features":[307]},{"name":"MonitorRequestReasonResumeS4","features":[307]},{"name":"MonitorRequestReasonScMonitorpower","features":[307]},{"name":"MonitorRequestReasonScreenOffRequest","features":[307]},{"name":"MonitorRequestReasonSessionUnlock","features":[307]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[307]},{"name":"MonitorRequestReasonSleepButton","features":[307]},{"name":"MonitorRequestReasonSxTransition","features":[307]},{"name":"MonitorRequestReasonSystemIdle","features":[307]},{"name":"MonitorRequestReasonSystemStateEntered","features":[307]},{"name":"MonitorRequestReasonTerminal","features":[307]},{"name":"MonitorRequestReasonTerminalInit","features":[307]},{"name":"MonitorRequestReasonThermalStandby","features":[307]},{"name":"MonitorRequestReasonUnknown","features":[307]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[307]},{"name":"MonitorRequestReasonUserInput","features":[307]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[307]},{"name":"MonitorRequestReasonUserInputHid","features":[307]},{"name":"MonitorRequestReasonUserInputInitialization","features":[307]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[307]},{"name":"MonitorRequestReasonUserInputMouse","features":[307]},{"name":"MonitorRequestReasonUserInputPen","features":[307]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[307]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[307]},{"name":"MonitorRequestReasonUserInputTouch","features":[307]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[307]},{"name":"MonitorRequestReasonWinrt","features":[307]},{"name":"MonitorRequestTypeOff","features":[307]},{"name":"MonitorRequestTypeOnAndPresent","features":[307]},{"name":"MonitorRequestTypeToggleOn","features":[307]},{"name":"MultiFunctionAdapter","features":[307]},{"name":"NAMED_PIPE_CREATE_PARAMETERS","features":[307,305]},{"name":"NEC98x86","features":[307]},{"name":"NMI_CALLBACK","features":[307,305]},{"name":"NMI_NOTIFY_TYPE_GUID","features":[307]},{"name":"NMI_SECTION_GUID","features":[307]},{"name":"NPEM_CAPABILITY_STANDARD","features":[307]},{"name":"NPEM_CONTROL_ENABLE_DISABLE","features":[307,305]},{"name":"NPEM_CONTROL_INTERFACE","features":[307,305]},{"name":"NPEM_CONTROL_INTERFACE_CURRENT_VERSION","features":[307]},{"name":"NPEM_CONTROL_INTERFACE_VERSION1","features":[307]},{"name":"NPEM_CONTROL_INTERFACE_VERSION2","features":[307]},{"name":"NPEM_CONTROL_QUERY_CONTROL","features":[307]},{"name":"NPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[307,305]},{"name":"NPEM_CONTROL_SET_STANDARD_CONTROL","features":[307,305]},{"name":"NPEM_CONTROL_STANDARD_CONTROL_BIT","features":[307]},{"name":"NTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[307,308]},{"name":"NT_PAGING_LEVELS","features":[307]},{"name":"NT_TIB32","features":[307]},{"name":"NX_SUPPORT_POLICY_ALWAYSOFF","features":[307]},{"name":"NX_SUPPORT_POLICY_ALWAYSON","features":[307]},{"name":"NX_SUPPORT_POLICY_OPTIN","features":[307]},{"name":"NX_SUPPORT_POLICY_OPTOUT","features":[307]},{"name":"NetworkController","features":[307]},{"name":"NetworkPeripheral","features":[307]},{"name":"NoAspmSupport","features":[307]},{"name":"NormalPagePriority","features":[307]},{"name":"NormalPoolPriority","features":[307]},{"name":"NormalPoolPrioritySpecialPoolOverrun","features":[307]},{"name":"NormalPoolPrioritySpecialPoolUnderrun","features":[307]},{"name":"NormalWorkQueue","features":[307]},{"name":"NtAllocateLocallyUniqueId","features":[307,305]},{"name":"NtCommitComplete","features":[307,305]},{"name":"NtCommitEnlistment","features":[307,305]},{"name":"NtCommitTransaction","features":[307,305]},{"name":"NtCreateEnlistment","features":[306,307,305]},{"name":"NtCreateResourceManager","features":[306,307,305]},{"name":"NtCreateTransaction","features":[306,307,305]},{"name":"NtCreateTransactionManager","features":[306,307,305]},{"name":"NtDisplayString","features":[307,305]},{"name":"NtEnumerateTransactionObject","features":[307,305,339]},{"name":"NtGetNotificationResourceManager","features":[307,305,324]},{"name":"NtLoadDriver","features":[307,305]},{"name":"NtMakeTemporaryObject","features":[307,305]},{"name":"NtManagePartition","features":[307,305]},{"name":"NtOpenEnlistment","features":[306,307,305]},{"name":"NtOpenResourceManager","features":[306,307,305]},{"name":"NtOpenTransaction","features":[306,307,305]},{"name":"NtOpenTransactionManager","features":[306,307,305]},{"name":"NtPowerInformation","features":[307,305,312]},{"name":"NtPrePrepareComplete","features":[307,305]},{"name":"NtPrePrepareEnlistment","features":[307,305]},{"name":"NtPrepareComplete","features":[307,305]},{"name":"NtPrepareEnlistment","features":[307,305]},{"name":"NtPropagationComplete","features":[307,305]},{"name":"NtPropagationFailed","features":[307,305]},{"name":"NtQueryInformationEnlistment","features":[307,305,339]},{"name":"NtQueryInformationResourceManager","features":[307,305,339]},{"name":"NtQueryInformationTransaction","features":[307,305,339]},{"name":"NtQueryInformationTransactionManager","features":[307,305,339]},{"name":"NtReadOnlyEnlistment","features":[307,305]},{"name":"NtRecoverEnlistment","features":[307,305]},{"name":"NtRecoverResourceManager","features":[307,305]},{"name":"NtRecoverTransactionManager","features":[307,305]},{"name":"NtRegisterProtocolAddressInformation","features":[307,305]},{"name":"NtRenameTransactionManager","features":[307,305]},{"name":"NtRollbackComplete","features":[307,305]},{"name":"NtRollbackEnlistment","features":[307,305]},{"name":"NtRollbackTransaction","features":[307,305]},{"name":"NtRollforwardTransactionManager","features":[307,305]},{"name":"NtSetInformationEnlistment","features":[307,305,339]},{"name":"NtSetInformationResourceManager","features":[307,305,339]},{"name":"NtSetInformationTransaction","features":[307,305,339]},{"name":"NtSetInformationTransactionManager","features":[307,305,339]},{"name":"NtSinglePhaseReject","features":[307,305]},{"name":"NtUnloadDriver","features":[307,305]},{"name":"NuBus","features":[307]},{"name":"NuBusConfiguration","features":[307]},{"name":"OBJECT_HANDLE_INFORMATION","features":[307]},{"name":"OBJECT_TYPE_CREATE","features":[307]},{"name":"OB_CALLBACK_REGISTRATION","features":[306,307,305]},{"name":"OB_FLT_REGISTRATION_VERSION","features":[307]},{"name":"OB_FLT_REGISTRATION_VERSION_0100","features":[307]},{"name":"OB_OPERATION_HANDLE_CREATE","features":[307]},{"name":"OB_OPERATION_HANDLE_DUPLICATE","features":[307]},{"name":"OB_OPERATION_REGISTRATION","features":[306,307,305]},{"name":"OB_POST_CREATE_HANDLE_INFORMATION","features":[307]},{"name":"OB_POST_DUPLICATE_HANDLE_INFORMATION","features":[307]},{"name":"OB_POST_OPERATION_INFORMATION","features":[306,307,305]},{"name":"OB_POST_OPERATION_PARAMETERS","features":[307]},{"name":"OB_PREOP_CALLBACK_STATUS","features":[307]},{"name":"OB_PREOP_SUCCESS","features":[307]},{"name":"OB_PRE_CREATE_HANDLE_INFORMATION","features":[307]},{"name":"OB_PRE_DUPLICATE_HANDLE_INFORMATION","features":[307]},{"name":"OB_PRE_OPERATION_INFORMATION","features":[306,307]},{"name":"OB_PRE_OPERATION_PARAMETERS","features":[307]},{"name":"OPLOCK_KEY_FLAG_PARENT_KEY","features":[307]},{"name":"OPLOCK_KEY_FLAG_TARGET_KEY","features":[307]},{"name":"OPLOCK_KEY_VERSION_WIN7","features":[307]},{"name":"OPLOCK_KEY_VERSION_WIN8","features":[307]},{"name":"OSC_CAPABILITIES_MASKED","features":[307]},{"name":"OSC_FIRMWARE_FAILURE","features":[307]},{"name":"OSC_UNRECOGNIZED_REVISION","features":[307]},{"name":"OSC_UNRECOGNIZED_UUID","features":[307]},{"name":"ObCloseHandle","features":[307,305]},{"name":"ObDereferenceObjectDeferDelete","features":[307]},{"name":"ObDereferenceObjectDeferDeleteWithTag","features":[307]},{"name":"ObGetFilterVersion","features":[307]},{"name":"ObGetObjectSecurity","features":[307,305,308]},{"name":"ObReferenceObjectByHandle","features":[306,307,305]},{"name":"ObReferenceObjectByHandleWithTag","features":[306,307,305]},{"name":"ObReferenceObjectByPointer","features":[306,307,305]},{"name":"ObReferenceObjectByPointerWithTag","features":[306,307,305]},{"name":"ObReferenceObjectSafe","features":[307,305]},{"name":"ObReferenceObjectSafeWithTag","features":[307,305]},{"name":"ObRegisterCallbacks","features":[306,307,305]},{"name":"ObReleaseObjectSecurity","features":[307,305,308]},{"name":"ObUnRegisterCallbacks","features":[307]},{"name":"ObfDereferenceObject","features":[307]},{"name":"ObfDereferenceObjectWithTag","features":[307]},{"name":"ObfReferenceObject","features":[307]},{"name":"ObfReferenceObjectWithTag","features":[307]},{"name":"OkControl","features":[307]},{"name":"OtherController","features":[307]},{"name":"OtherPeripheral","features":[307]},{"name":"PAGE_ENCLAVE_NO_CHANGE","features":[307]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[307]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[307]},{"name":"PAGE_EXECUTE","features":[307]},{"name":"PAGE_EXECUTE_READ","features":[307]},{"name":"PAGE_EXECUTE_READWRITE","features":[307]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[307]},{"name":"PAGE_GRAPHICS_COHERENT","features":[307]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[307]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[307]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[307]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[307]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[307]},{"name":"PAGE_GRAPHICS_READONLY","features":[307]},{"name":"PAGE_GRAPHICS_READWRITE","features":[307]},{"name":"PAGE_GUARD","features":[307]},{"name":"PAGE_NOACCESS","features":[307]},{"name":"PAGE_NOCACHE","features":[307]},{"name":"PAGE_PRIORITY_INFORMATION","features":[307]},{"name":"PAGE_READONLY","features":[307]},{"name":"PAGE_READWRITE","features":[307]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[307]},{"name":"PAGE_SHIFT","features":[307]},{"name":"PAGE_SIZE","features":[307]},{"name":"PAGE_TARGETS_INVALID","features":[307]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[307]},{"name":"PAGE_WRITECOMBINE","features":[307]},{"name":"PAGE_WRITECOPY","features":[307]},{"name":"PALLOCATE_ADAPTER_CHANNEL","features":[306,309,307,305,308,310,311,312]},{"name":"PALLOCATE_ADAPTER_CHANNEL_EX","features":[306,309,307,305,308,310,311,312]},{"name":"PALLOCATE_COMMON_BUFFER","features":[306,309,307,305,308,310,311,312]},{"name":"PALLOCATE_COMMON_BUFFER_EX","features":[306,309,307,305,308,310,311,312]},{"name":"PALLOCATE_COMMON_BUFFER_VECTOR","features":[306,309,307,305,308,310,311,312]},{"name":"PALLOCATE_COMMON_BUFFER_WITH_BOUNDS","features":[306,309,307,305,308,310,311,312]},{"name":"PALLOCATE_DOMAIN_COMMON_BUFFER","features":[306,309,307,305,308,310,311,312]},{"name":"PALLOCATE_FUNCTION","features":[307]},{"name":"PALLOCATE_FUNCTION_EX","features":[307]},{"name":"PARBITER_HANDLER","features":[306,309,307,305,308,310,311,312]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[307]},{"name":"PARTITION_INFORMATION_CLASS","features":[307]},{"name":"PASSIVE_LEVEL","features":[307]},{"name":"PBOOT_DRIVER_CALLBACK_FUNCTION","features":[307]},{"name":"PBOUND_CALLBACK","features":[307]},{"name":"PBUILD_MDL_FROM_SCATTER_GATHER_LIST","features":[306,309,307,305,308,310,311,312]},{"name":"PBUILD_SCATTER_GATHER_LIST","features":[306,309,307,305,308,310,311,312]},{"name":"PBUILD_SCATTER_GATHER_LIST_EX","features":[306,309,307,305,308,310,311,312]},{"name":"PCALCULATE_SCATTER_GATHER_LIST_SIZE","features":[306,309,307,305,308,310,311,312]},{"name":"PCALLBACK_FUNCTION","features":[307]},{"name":"PCANCEL_ADAPTER_CHANNEL","features":[306,309,307,305,308,310,311,312]},{"name":"PCANCEL_MAPPED_TRANSFER","features":[306,309,307,305,308,310,311,312]},{"name":"PCCARD_DEVICE_PCI","features":[307]},{"name":"PCCARD_DUP_LEGACY_BASE","features":[307]},{"name":"PCCARD_MAP_ERROR","features":[307]},{"name":"PCCARD_MAP_ZERO","features":[307]},{"name":"PCCARD_NO_CONTROLLERS","features":[307]},{"name":"PCCARD_NO_LEGACY_BASE","features":[307]},{"name":"PCCARD_NO_PIC","features":[307]},{"name":"PCCARD_NO_TIMER","features":[307]},{"name":"PCCARD_SCAN_DISABLED","features":[307]},{"name":"PCIBUSDATA","features":[307]},{"name":"PCIBus","features":[307]},{"name":"PCIConfiguration","features":[307]},{"name":"PCIEXPRESS_ERROR_SECTION_GUID","features":[307]},{"name":"PCIE_CORRECTABLE_ERROR_SUMMARY_SECTION_GUID","features":[307]},{"name":"PCIXBUS_ERROR_SECTION_GUID","features":[307]},{"name":"PCIXBUS_ERRTYPE_ADDRESSPARITY","features":[307]},{"name":"PCIXBUS_ERRTYPE_BUSTIMEOUT","features":[307]},{"name":"PCIXBUS_ERRTYPE_COMMANDPARITY","features":[307]},{"name":"PCIXBUS_ERRTYPE_DATAPARITY","features":[307]},{"name":"PCIXBUS_ERRTYPE_MASTERABORT","features":[307]},{"name":"PCIXBUS_ERRTYPE_MASTERDATAPARITY","features":[307]},{"name":"PCIXBUS_ERRTYPE_SYSTEM","features":[307]},{"name":"PCIXBUS_ERRTYPE_UNKNOWN","features":[307]},{"name":"PCIXDEVICE_ERROR_SECTION_GUID","features":[307]},{"name":"PCIX_BRIDGE_CAPABILITY","features":[307]},{"name":"PCIX_MODE1_100MHZ","features":[307]},{"name":"PCIX_MODE1_133MHZ","features":[307]},{"name":"PCIX_MODE1_66MHZ","features":[307]},{"name":"PCIX_MODE2_266_100MHZ","features":[307]},{"name":"PCIX_MODE2_266_133MHZ","features":[307]},{"name":"PCIX_MODE2_266_66MHZ","features":[307]},{"name":"PCIX_MODE2_533_100MHZ","features":[307]},{"name":"PCIX_MODE2_533_133MHZ","features":[307]},{"name":"PCIX_MODE2_533_66MHZ","features":[307]},{"name":"PCIX_MODE_CONVENTIONAL_PCI","features":[307]},{"name":"PCIX_VERSION_DUAL_MODE_ECC","features":[307]},{"name":"PCIX_VERSION_MODE1_ONLY","features":[307]},{"name":"PCIX_VERSION_MODE2_ECC","features":[307]},{"name":"PCI_ACS_ALLOWED","features":[307]},{"name":"PCI_ACS_BIT","features":[307]},{"name":"PCI_ACS_BLOCKED","features":[307]},{"name":"PCI_ACS_REDIRECTED","features":[307]},{"name":"PCI_ADDRESS_IO_ADDRESS_MASK","features":[307]},{"name":"PCI_ADDRESS_IO_SPACE","features":[307]},{"name":"PCI_ADDRESS_MEMORY_ADDRESS_MASK","features":[307]},{"name":"PCI_ADDRESS_MEMORY_PREFETCHABLE","features":[307]},{"name":"PCI_ADDRESS_MEMORY_TYPE_MASK","features":[307]},{"name":"PCI_ADDRESS_ROM_ADDRESS_MASK","features":[307]},{"name":"PCI_ADVANCED_FEATURES_CAPABILITY","features":[307]},{"name":"PCI_AGP_APERTURE_PAGE_SIZE","features":[307]},{"name":"PCI_AGP_CAPABILITY","features":[307]},{"name":"PCI_AGP_CONTROL","features":[307]},{"name":"PCI_AGP_EXTENDED_CAPABILITY","features":[307]},{"name":"PCI_AGP_ISOCH_COMMAND","features":[307]},{"name":"PCI_AGP_ISOCH_STATUS","features":[307]},{"name":"PCI_AGP_RATE_1X","features":[307]},{"name":"PCI_AGP_RATE_2X","features":[307]},{"name":"PCI_AGP_RATE_4X","features":[307]},{"name":"PCI_ATS_INTERFACE","features":[307,305]},{"name":"PCI_ATS_INTERFACE_VERSION","features":[307]},{"name":"PCI_BRIDGE_TYPE","features":[307]},{"name":"PCI_BUS_INTERFACE_STANDARD","features":[307]},{"name":"PCI_BUS_INTERFACE_STANDARD_VERSION","features":[307]},{"name":"PCI_BUS_WIDTH","features":[307]},{"name":"PCI_CAPABILITIES_HEADER","features":[307]},{"name":"PCI_CAPABILITY_ID_ADVANCED_FEATURES","features":[307]},{"name":"PCI_CAPABILITY_ID_AGP","features":[307]},{"name":"PCI_CAPABILITY_ID_AGP_TARGET","features":[307]},{"name":"PCI_CAPABILITY_ID_CPCI_HOTSWAP","features":[307]},{"name":"PCI_CAPABILITY_ID_CPCI_RES_CTRL","features":[307]},{"name":"PCI_CAPABILITY_ID_DEBUG_PORT","features":[307]},{"name":"PCI_CAPABILITY_ID_FPB","features":[307]},{"name":"PCI_CAPABILITY_ID_HYPERTRANSPORT","features":[307]},{"name":"PCI_CAPABILITY_ID_MSI","features":[307]},{"name":"PCI_CAPABILITY_ID_MSIX","features":[307]},{"name":"PCI_CAPABILITY_ID_P2P_SSID","features":[307]},{"name":"PCI_CAPABILITY_ID_PCIX","features":[307]},{"name":"PCI_CAPABILITY_ID_PCI_EXPRESS","features":[307]},{"name":"PCI_CAPABILITY_ID_POWER_MANAGEMENT","features":[307]},{"name":"PCI_CAPABILITY_ID_SATA_CONFIG","features":[307]},{"name":"PCI_CAPABILITY_ID_SECURE","features":[307]},{"name":"PCI_CAPABILITY_ID_SHPC","features":[307]},{"name":"PCI_CAPABILITY_ID_SLOT_ID","features":[307]},{"name":"PCI_CAPABILITY_ID_VENDOR_SPECIFIC","features":[307]},{"name":"PCI_CAPABILITY_ID_VPD","features":[307]},{"name":"PCI_CARDBUS_BRIDGE_TYPE","features":[307]},{"name":"PCI_CLASS_BASE_SYSTEM_DEV","features":[307]},{"name":"PCI_CLASS_BRIDGE_DEV","features":[307]},{"name":"PCI_CLASS_DATA_ACQ_SIGNAL_PROC","features":[307]},{"name":"PCI_CLASS_DISPLAY_CTLR","features":[307]},{"name":"PCI_CLASS_DOCKING_STATION","features":[307]},{"name":"PCI_CLASS_ENCRYPTION_DECRYPTION","features":[307]},{"name":"PCI_CLASS_INPUT_DEV","features":[307]},{"name":"PCI_CLASS_INTELLIGENT_IO_CTLR","features":[307]},{"name":"PCI_CLASS_MASS_STORAGE_CTLR","features":[307]},{"name":"PCI_CLASS_MEMORY_CTLR","features":[307]},{"name":"PCI_CLASS_MULTIMEDIA_DEV","features":[307]},{"name":"PCI_CLASS_NETWORK_CTLR","features":[307]},{"name":"PCI_CLASS_NOT_DEFINED","features":[307]},{"name":"PCI_CLASS_PRE_20","features":[307]},{"name":"PCI_CLASS_PROCESSOR","features":[307]},{"name":"PCI_CLASS_SATELLITE_COMMS_CTLR","features":[307]},{"name":"PCI_CLASS_SERIAL_BUS_CTLR","features":[307]},{"name":"PCI_CLASS_SIMPLE_COMMS_CTLR","features":[307]},{"name":"PCI_CLASS_WIRELESS_CTLR","features":[307]},{"name":"PCI_COMMON_CONFIG","features":[307]},{"name":"PCI_COMMON_HEADER","features":[307]},{"name":"PCI_DATA_VERSION","features":[307]},{"name":"PCI_DEBUGGING_DEVICE_IN_USE","features":[307]},{"name":"PCI_DEVICE_D3COLD_STATE_REASON","features":[307]},{"name":"PCI_DEVICE_PRESENCE_PARAMETERS","features":[307]},{"name":"PCI_DEVICE_PRESENT_INTERFACE","features":[307,305]},{"name":"PCI_DEVICE_PRESENT_INTERFACE_VERSION","features":[307]},{"name":"PCI_DEVICE_TYPE","features":[307]},{"name":"PCI_DISABLE_LEVEL_INTERRUPT","features":[307]},{"name":"PCI_ENABLE_BUS_MASTER","features":[307]},{"name":"PCI_ENABLE_FAST_BACK_TO_BACK","features":[307]},{"name":"PCI_ENABLE_IO_SPACE","features":[307]},{"name":"PCI_ENABLE_MEMORY_SPACE","features":[307]},{"name":"PCI_ENABLE_PARITY","features":[307]},{"name":"PCI_ENABLE_SERR","features":[307]},{"name":"PCI_ENABLE_SPECIAL_CYCLES","features":[307]},{"name":"PCI_ENABLE_VGA_COMPATIBLE_PALETTE","features":[307]},{"name":"PCI_ENABLE_WAIT_CYCLE","features":[307]},{"name":"PCI_ENABLE_WRITE_AND_INVALIDATE","features":[307]},{"name":"PCI_ERROR_HANDLER_CALLBACK","features":[307]},{"name":"PCI_EXPRESS_ACCESS_CONTROL_SERVICES_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_ACS_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_ACS_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_ACS_CONTROL","features":[307]},{"name":"PCI_EXPRESS_ADVANCED_ERROR_REPORTING_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_AER_CAPABILITIES","features":[307]},{"name":"PCI_EXPRESS_AER_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_ARI_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_ARI_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_ARI_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_ARI_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_ASPM_CONTROL","features":[307]},{"name":"PCI_EXPRESS_ASPM_SUPPORT","features":[307]},{"name":"PCI_EXPRESS_ATS_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_ATS_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_ATS_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_ATS_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_BRIDGE_AER_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_CAPABILITIES_REGISTER","features":[307]},{"name":"PCI_EXPRESS_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_CARD_PRESENCE","features":[307]},{"name":"PCI_EXPRESS_CONFIGURATION_ACCESS_CORRELATION_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_MASK","features":[307]},{"name":"PCI_EXPRESS_CORRECTABLE_ERROR_STATUS","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_REGISTER_V11","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_CAPABILITY_V11","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_LOCK_REGISTER","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_HIGH_REGISTER","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_BASE_LOW_REGISTER","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_HIGH_REGISTER","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_RANGE_SIZE_LOW_REGISTER_V11","features":[307]},{"name":"PCI_EXPRESS_CXL_DVSEC_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_1","features":[307]},{"name":"PCI_EXPRESS_DESIGNATED_VENDOR_SPECIFIC_HEADER_2","features":[307]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_2_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DEVICE_CAPABILITIES_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_2_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DEVICE_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DEVICE_SERIAL_NUMBER_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_DEVICE_STATUS_2_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DEVICE_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DEVICE_TYPE","features":[307]},{"name":"PCI_EXPRESS_DPA_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_DPC_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_DPC_CAPS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_DPC_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_ERROR_SOURCE_ID","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_EXCEPTION_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_HEADERLOG_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_IMPSPECLOG_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_MASK_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SEVERITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_SYSERR_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_RP_PIO_TLPPREFIXLOG_REGISTER","features":[307]},{"name":"PCI_EXPRESS_DPC_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_ENHANCED_CAPABILITY_HEADER","features":[307]},{"name":"PCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[307,305]},{"name":"PCI_EXPRESS_ERROR_SOURCE_ID","features":[307]},{"name":"PCI_EXPRESS_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[307,305]},{"name":"PCI_EXPRESS_FRS_QUEUEING_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_INDICATOR_STATE","features":[307]},{"name":"PCI_EXPRESS_L0s_EXIT_LATENCY","features":[307]},{"name":"PCI_EXPRESS_L1_EXIT_LATENCY","features":[307]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITIES_REGISTER","features":[307]},{"name":"PCI_EXPRESS_L1_PM_SS_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_L1_PM_SS_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_1_REGISTER","features":[307]},{"name":"PCI_EXPRESS_L1_PM_SS_CONTROL_2_REGISTER","features":[307]},{"name":"PCI_EXPRESS_LANE_ERROR_STATUS","features":[307]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_2_REGISTER","features":[307]},{"name":"PCI_EXPRESS_LINK_CAPABILITIES_REGISTER","features":[307]},{"name":"PCI_EXPRESS_LINK_CONTROL3","features":[307]},{"name":"PCI_EXPRESS_LINK_CONTROL_2_REGISTER","features":[307]},{"name":"PCI_EXPRESS_LINK_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[307,305]},{"name":"PCI_EXPRESS_LINK_QUIESCENT_INTERFACE_VERSION","features":[307]},{"name":"PCI_EXPRESS_LINK_STATUS_2_REGISTER","features":[307]},{"name":"PCI_EXPRESS_LINK_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_LINK_SUBSTATE","features":[307]},{"name":"PCI_EXPRESS_LN_REQUESTER_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_LTR_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_LTR_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_LTR_MAX_LATENCY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_MAX_PAYLOAD_SIZE","features":[307]},{"name":"PCI_EXPRESS_MFVC_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_MPCIE_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_MRL_STATE","features":[307]},{"name":"PCI_EXPRESS_MULTICAST_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_MULTI_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_NPEM_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_NPEM_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_NPEM_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_NPEM_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_PAGE_REQUEST_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_PASID_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_PASID_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_PASID_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_PASID_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_PME_REQUESTOR_ID","features":[307]},{"name":"PCI_EXPRESS_PMUX_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_POWER_BUDGETING_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_POWER_STATE","features":[307]},{"name":"PCI_EXPRESS_PRI_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_PRI_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_PRI_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_PTM_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_PTM_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_PTM_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_PTM_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_RCB","features":[307]},{"name":"PCI_EXPRESS_RCRB_HEADER_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_RC_EVENT_COLLECTOR_ENDPOINT_ASSOCIATION_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_RC_INTERNAL_LINK_CONTROL_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_RC_LINK_DECLARATION_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_READINESS_TIME_REPORTING_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_RESERVED_FOR_AMD_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_RESIZABLE_BAR_ENTRY","features":[307]},{"name":"PCI_EXPRESS_ROOTPORT_AER_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_ROOT_CAPABILITIES_REGISTER","features":[307]},{"name":"PCI_EXPRESS_ROOT_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_ROOT_ERROR_COMMAND","features":[307]},{"name":"PCI_EXPRESS_ROOT_ERROR_STATUS","features":[307]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[307]},{"name":"PCI_EXPRESS_ROOT_PORT_INTERFACE_VERSION","features":[307]},{"name":"PCI_EXPRESS_ROOT_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_SECONDARY_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_SECONDARY_PCI_EXPRESS_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_SEC_AER_CAPABILITIES","features":[307]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_MASK","features":[307]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_SEVERITY","features":[307]},{"name":"PCI_EXPRESS_SEC_UNCORRECTABLE_ERROR_STATUS","features":[307]},{"name":"PCI_EXPRESS_SERIAL_NUMBER_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_SINGLE_ROOT_IO_VIRTUALIZATION_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_SLOT_CAPABILITIES_REGISTER","features":[307]},{"name":"PCI_EXPRESS_SLOT_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_SLOT_STATUS_REGISTER","features":[307]},{"name":"PCI_EXPRESS_SRIOV_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_SRIOV_CAPS","features":[307]},{"name":"PCI_EXPRESS_SRIOV_CONTROL","features":[307]},{"name":"PCI_EXPRESS_SRIOV_MIGRATION_STATE_ARRAY","features":[307]},{"name":"PCI_EXPRESS_SRIOV_STATUS","features":[307]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAPABILITY_REGISTER","features":[307]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_TPH_REQUESTER_CONTROL_REGISTER","features":[307]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_MSIX_TABLE","features":[307]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_NONE","features":[307]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_RESERVED","features":[307]},{"name":"PCI_EXPRESS_TPH_ST_LOCATION_TPH_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_TPH_ST_TABLE_ENTRY","features":[307]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_MASK","features":[307]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_SEVERITY","features":[307]},{"name":"PCI_EXPRESS_UNCORRECTABLE_ERROR_STATUS","features":[307]},{"name":"PCI_EXPRESS_VC_AND_MFVC_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_VENDOR_SPECIFIC_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAPABILITY","features":[307]},{"name":"PCI_EXPRESS_VIRTUAL_CHANNEL_CAP_ID","features":[307]},{"name":"PCI_EXPRESS_WAKE_CONTROL","features":[307,305]},{"name":"PCI_EXTENDED_CONFIG_LENGTH","features":[307]},{"name":"PCI_FIRMWARE_BUS_CAPS","features":[307]},{"name":"PCI_FIRMWARE_BUS_CAPS_RETURN_BUFFER","features":[307]},{"name":"PCI_FPB_CAPABILITIES_REGISTER","features":[307]},{"name":"PCI_FPB_CAPABILITY","features":[307]},{"name":"PCI_FPB_CAPABILITY_HEADER","features":[307]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL1_REGISTER","features":[307]},{"name":"PCI_FPB_MEM_HIGH_VECTOR_CONTROL2_REGISTER","features":[307]},{"name":"PCI_FPB_MEM_LOW_VECTOR_CONTROL_REGISTER","features":[307]},{"name":"PCI_FPB_RID_VECTOR_CONTROL1_REGISTER","features":[307]},{"name":"PCI_FPB_RID_VECTOR_CONTROL2_REGISTER","features":[307]},{"name":"PCI_FPB_VECTOR_ACCESS_CONTROL_REGISTER","features":[307]},{"name":"PCI_FPB_VECTOR_ACCESS_DATA_REGISTER","features":[307]},{"name":"PCI_HARDWARE_INTERFACE","features":[307]},{"name":"PCI_INVALID_ALTERNATE_FUNCTION_NUMBER","features":[307]},{"name":"PCI_INVALID_VENDORID","features":[307]},{"name":"PCI_IS_DEVICE_PRESENT","features":[307,305]},{"name":"PCI_IS_DEVICE_PRESENT_EX","features":[307,305]},{"name":"PCI_LINE_TO_PIN","features":[307]},{"name":"PCI_MAX_BRIDGE_NUMBER","features":[307]},{"name":"PCI_MAX_DEVICES","features":[307]},{"name":"PCI_MAX_FUNCTION","features":[307]},{"name":"PCI_MAX_SEGMENT_NUMBER","features":[307]},{"name":"PCI_MSIX_GET_ENTRY","features":[307,305]},{"name":"PCI_MSIX_GET_TABLE_SIZE","features":[307,305]},{"name":"PCI_MSIX_MASKUNMASK_ENTRY","features":[307,305]},{"name":"PCI_MSIX_SET_ENTRY","features":[307,305]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE","features":[307,305]},{"name":"PCI_MSIX_TABLE_CONFIG_INTERFACE_VERSION","features":[307]},{"name":"PCI_MULTIFUNCTION","features":[307]},{"name":"PCI_PIN_TO_LINE","features":[307]},{"name":"PCI_PMC","features":[307]},{"name":"PCI_PMCSR","features":[307]},{"name":"PCI_PMCSR_BSE","features":[307]},{"name":"PCI_PM_CAPABILITY","features":[307]},{"name":"PCI_PREPARE_MULTISTAGE_RESUME","features":[307]},{"name":"PCI_PROGRAMMING_INTERFACE_MSC_NVM_EXPRESS","features":[307]},{"name":"PCI_PTM_TIME_SOURCE_AUX","features":[307]},{"name":"PCI_READ_WRITE_CONFIG","features":[307]},{"name":"PCI_RECOVERY_SECTION_GUID","features":[307]},{"name":"PCI_ROMADDRESS_ENABLED","features":[307]},{"name":"PCI_ROOT_BUS_CAPABILITY","features":[307,305]},{"name":"PCI_ROOT_BUS_HARDWARE_CAPABILITY","features":[307,305]},{"name":"PCI_ROOT_BUS_OSC_CONTROL_FIELD","features":[307]},{"name":"PCI_ROOT_BUS_OSC_METHOD_CAPABILITY_REVISION","features":[307]},{"name":"PCI_ROOT_BUS_OSC_SUPPORT_FIELD","features":[307]},{"name":"PCI_SECURITY_DIRECT_TRANSLATED_P2P","features":[307]},{"name":"PCI_SECURITY_ENHANCED","features":[307]},{"name":"PCI_SECURITY_FULLY_SUPPORTED","features":[307]},{"name":"PCI_SECURITY_GUEST_ASSIGNED","features":[307]},{"name":"PCI_SECURITY_INTERFACE","features":[307,305]},{"name":"PCI_SECURITY_INTERFACE2","features":[307,305]},{"name":"PCI_SECURITY_INTERFACE_VERSION","features":[307]},{"name":"PCI_SECURITY_INTERFACE_VERSION2","features":[307]},{"name":"PCI_SECURITY_SRIOV_DIRECT_TRANSLATED_P2P","features":[307]},{"name":"PCI_SEGMENT_BUS_NUMBER","features":[307]},{"name":"PCI_SET_ACS","features":[307,305]},{"name":"PCI_SET_ACS2","features":[307,305]},{"name":"PCI_SET_ATS","features":[307,305]},{"name":"PCI_SLOT_NUMBER","features":[307]},{"name":"PCI_STATUS_66MHZ_CAPABLE","features":[307]},{"name":"PCI_STATUS_CAPABILITIES_LIST","features":[307]},{"name":"PCI_STATUS_DATA_PARITY_DETECTED","features":[307]},{"name":"PCI_STATUS_DETECTED_PARITY_ERROR","features":[307]},{"name":"PCI_STATUS_DEVSEL","features":[307]},{"name":"PCI_STATUS_FAST_BACK_TO_BACK","features":[307]},{"name":"PCI_STATUS_IMMEDIATE_READINESS","features":[307]},{"name":"PCI_STATUS_INTERRUPT_PENDING","features":[307]},{"name":"PCI_STATUS_RECEIVED_MASTER_ABORT","features":[307]},{"name":"PCI_STATUS_RECEIVED_TARGET_ABORT","features":[307]},{"name":"PCI_STATUS_SIGNALED_SYSTEM_ERROR","features":[307]},{"name":"PCI_STATUS_SIGNALED_TARGET_ABORT","features":[307]},{"name":"PCI_STATUS_UDF_SUPPORTED","features":[307]},{"name":"PCI_SUBCLASS_BR_CARDBUS","features":[307]},{"name":"PCI_SUBCLASS_BR_EISA","features":[307]},{"name":"PCI_SUBCLASS_BR_HOST","features":[307]},{"name":"PCI_SUBCLASS_BR_ISA","features":[307]},{"name":"PCI_SUBCLASS_BR_MCA","features":[307]},{"name":"PCI_SUBCLASS_BR_NUBUS","features":[307]},{"name":"PCI_SUBCLASS_BR_OTHER","features":[307]},{"name":"PCI_SUBCLASS_BR_PCI_TO_PCI","features":[307]},{"name":"PCI_SUBCLASS_BR_PCMCIA","features":[307]},{"name":"PCI_SUBCLASS_BR_RACEWAY","features":[307]},{"name":"PCI_SUBCLASS_COM_MODEM","features":[307]},{"name":"PCI_SUBCLASS_COM_MULTIPORT","features":[307]},{"name":"PCI_SUBCLASS_COM_OTHER","features":[307]},{"name":"PCI_SUBCLASS_COM_PARALLEL","features":[307]},{"name":"PCI_SUBCLASS_COM_SERIAL","features":[307]},{"name":"PCI_SUBCLASS_CRYPTO_ENTERTAINMENT","features":[307]},{"name":"PCI_SUBCLASS_CRYPTO_NET_COMP","features":[307]},{"name":"PCI_SUBCLASS_CRYPTO_OTHER","features":[307]},{"name":"PCI_SUBCLASS_DASP_DPIO","features":[307]},{"name":"PCI_SUBCLASS_DASP_OTHER","features":[307]},{"name":"PCI_SUBCLASS_DOC_GENERIC","features":[307]},{"name":"PCI_SUBCLASS_DOC_OTHER","features":[307]},{"name":"PCI_SUBCLASS_INP_DIGITIZER","features":[307]},{"name":"PCI_SUBCLASS_INP_GAMEPORT","features":[307]},{"name":"PCI_SUBCLASS_INP_KEYBOARD","features":[307]},{"name":"PCI_SUBCLASS_INP_MOUSE","features":[307]},{"name":"PCI_SUBCLASS_INP_OTHER","features":[307]},{"name":"PCI_SUBCLASS_INP_SCANNER","features":[307]},{"name":"PCI_SUBCLASS_INTIO_I2O","features":[307]},{"name":"PCI_SUBCLASS_MEM_FLASH","features":[307]},{"name":"PCI_SUBCLASS_MEM_OTHER","features":[307]},{"name":"PCI_SUBCLASS_MEM_RAM","features":[307]},{"name":"PCI_SUBCLASS_MM_AUDIO_DEV","features":[307]},{"name":"PCI_SUBCLASS_MM_OTHER","features":[307]},{"name":"PCI_SUBCLASS_MM_TELEPHONY_DEV","features":[307]},{"name":"PCI_SUBCLASS_MM_VIDEO_DEV","features":[307]},{"name":"PCI_SUBCLASS_MSC_AHCI_CTLR","features":[307]},{"name":"PCI_SUBCLASS_MSC_FLOPPY_CTLR","features":[307]},{"name":"PCI_SUBCLASS_MSC_IDE_CTLR","features":[307]},{"name":"PCI_SUBCLASS_MSC_IPI_CTLR","features":[307]},{"name":"PCI_SUBCLASS_MSC_NVM_CTLR","features":[307]},{"name":"PCI_SUBCLASS_MSC_OTHER","features":[307]},{"name":"PCI_SUBCLASS_MSC_RAID_CTLR","features":[307]},{"name":"PCI_SUBCLASS_MSC_SCSI_BUS_CTLR","features":[307]},{"name":"PCI_SUBCLASS_NET_ATM_CTLR","features":[307]},{"name":"PCI_SUBCLASS_NET_ETHERNET_CTLR","features":[307]},{"name":"PCI_SUBCLASS_NET_FDDI_CTLR","features":[307]},{"name":"PCI_SUBCLASS_NET_ISDN_CTLR","features":[307]},{"name":"PCI_SUBCLASS_NET_OTHER","features":[307]},{"name":"PCI_SUBCLASS_NET_TOKEN_RING_CTLR","features":[307]},{"name":"PCI_SUBCLASS_PRE_20_NON_VGA","features":[307]},{"name":"PCI_SUBCLASS_PRE_20_VGA","features":[307]},{"name":"PCI_SUBCLASS_PROC_386","features":[307]},{"name":"PCI_SUBCLASS_PROC_486","features":[307]},{"name":"PCI_SUBCLASS_PROC_ALPHA","features":[307]},{"name":"PCI_SUBCLASS_PROC_COPROCESSOR","features":[307]},{"name":"PCI_SUBCLASS_PROC_PENTIUM","features":[307]},{"name":"PCI_SUBCLASS_PROC_POWERPC","features":[307]},{"name":"PCI_SUBCLASS_SAT_AUDIO","features":[307]},{"name":"PCI_SUBCLASS_SAT_DATA","features":[307]},{"name":"PCI_SUBCLASS_SAT_TV","features":[307]},{"name":"PCI_SUBCLASS_SAT_VOICE","features":[307]},{"name":"PCI_SUBCLASS_SB_ACCESS","features":[307]},{"name":"PCI_SUBCLASS_SB_FIBRE_CHANNEL","features":[307]},{"name":"PCI_SUBCLASS_SB_IEEE1394","features":[307]},{"name":"PCI_SUBCLASS_SB_SMBUS","features":[307]},{"name":"PCI_SUBCLASS_SB_SSA","features":[307]},{"name":"PCI_SUBCLASS_SB_THUNDERBOLT","features":[307]},{"name":"PCI_SUBCLASS_SB_USB","features":[307]},{"name":"PCI_SUBCLASS_SYS_DMA_CTLR","features":[307]},{"name":"PCI_SUBCLASS_SYS_GEN_HOTPLUG_CTLR","features":[307]},{"name":"PCI_SUBCLASS_SYS_INTERRUPT_CTLR","features":[307]},{"name":"PCI_SUBCLASS_SYS_OTHER","features":[307]},{"name":"PCI_SUBCLASS_SYS_RCEC","features":[307]},{"name":"PCI_SUBCLASS_SYS_REAL_TIME_CLOCK","features":[307]},{"name":"PCI_SUBCLASS_SYS_SDIO_CTRL","features":[307]},{"name":"PCI_SUBCLASS_SYS_SYSTEM_TIMER","features":[307]},{"name":"PCI_SUBCLASS_VID_OTHER","features":[307]},{"name":"PCI_SUBCLASS_VID_VGA_CTLR","features":[307]},{"name":"PCI_SUBCLASS_VID_XGA_CTLR","features":[307]},{"name":"PCI_SUBCLASS_WIRELESS_CON_IR","features":[307]},{"name":"PCI_SUBCLASS_WIRELESS_IRDA","features":[307]},{"name":"PCI_SUBCLASS_WIRELESS_OTHER","features":[307]},{"name":"PCI_SUBCLASS_WIRELESS_RF","features":[307]},{"name":"PCI_SUBLCASS_VID_3D_CTLR","features":[307]},{"name":"PCI_SUBSYSTEM_IDS_CAPABILITY","features":[307]},{"name":"PCI_TYPE0_ADDRESSES","features":[307]},{"name":"PCI_TYPE1_ADDRESSES","features":[307]},{"name":"PCI_TYPE2_ADDRESSES","features":[307]},{"name":"PCI_TYPE_20BIT","features":[307]},{"name":"PCI_TYPE_32BIT","features":[307]},{"name":"PCI_TYPE_64BIT","features":[307]},{"name":"PCI_USE_CLASS_SUBCLASS","features":[307]},{"name":"PCI_USE_LOCAL_BUS","features":[307]},{"name":"PCI_USE_LOCAL_DEVICE","features":[307]},{"name":"PCI_USE_PROGIF","features":[307]},{"name":"PCI_USE_REVISION","features":[307]},{"name":"PCI_USE_SUBSYSTEM_IDS","features":[307]},{"name":"PCI_USE_VENDEV_IDS","features":[307]},{"name":"PCI_VENDOR_SPECIFIC_CAPABILITY","features":[307]},{"name":"PCI_VIRTUALIZATION_INTERFACE","features":[307,305]},{"name":"PCI_WHICHSPACE_CONFIG","features":[307]},{"name":"PCI_WHICHSPACE_ROM","features":[307]},{"name":"PCI_X_CAPABILITY","features":[307]},{"name":"PCIe_NOTIFY_TYPE_GUID","features":[307]},{"name":"PCLFS_CLIENT_ADVANCE_TAIL_CALLBACK","features":[306,309,307,305,308,324,310,311,312]},{"name":"PCLFS_CLIENT_LFF_HANDLER_COMPLETE_CALLBACK","features":[306,309,307,305,308,310,311,312]},{"name":"PCLFS_CLIENT_LOG_UNPINNED_CALLBACK","features":[306,309,307,305,308,310,311,312]},{"name":"PCLFS_SET_LOG_SIZE_COMPLETE_CALLBACK","features":[306,309,307,305,308,310,311,312]},{"name":"PCMCIABus","features":[307]},{"name":"PCMCIAConfiguration","features":[307]},{"name":"PCONFIGURE_ADAPTER_CHANNEL","features":[306,309,307,305,308,310,311,312]},{"name":"PCRASHDUMP_POWER_ON","features":[307,305]},{"name":"PCREATE_COMMON_BUFFER_FROM_MDL","features":[306,309,307,305,308,310,311,312]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE","features":[307,305]},{"name":"PCREATE_PROCESS_NOTIFY_ROUTINE_EX","features":[306,309,307,305,308,310,311,312,338]},{"name":"PCREATE_THREAD_NOTIFY_ROUTINE","features":[307,305]},{"name":"PCR_BTI_MITIGATION_CSWAP_HVC","features":[307]},{"name":"PCR_BTI_MITIGATION_CSWAP_SMC","features":[307]},{"name":"PCR_BTI_MITIGATION_NONE","features":[307]},{"name":"PCR_BTI_MITIGATION_VBAR_MASK","features":[307]},{"name":"PCR_MAJOR_VERSION","features":[307]},{"name":"PCR_MINOR_VERSION","features":[307]},{"name":"PCW_CALLBACK","features":[306,307,305,311]},{"name":"PCW_CALLBACK_INFORMATION","features":[306,307,305,311]},{"name":"PCW_CALLBACK_TYPE","features":[307]},{"name":"PCW_COUNTER_DESCRIPTOR","features":[307]},{"name":"PCW_COUNTER_INFORMATION","features":[307,305]},{"name":"PCW_CURRENT_VERSION","features":[307]},{"name":"PCW_DATA","features":[307]},{"name":"PCW_MASK_INFORMATION","features":[306,307,305,311]},{"name":"PCW_REGISTRATION_FLAGS","features":[307]},{"name":"PCW_REGISTRATION_INFORMATION","features":[307,305]},{"name":"PCW_VERSION_1","features":[307]},{"name":"PCW_VERSION_2","features":[307]},{"name":"PD3COLD_REQUEST_AUX_POWER","features":[307,305]},{"name":"PD3COLD_REQUEST_CORE_POWER_RAIL","features":[307]},{"name":"PD3COLD_REQUEST_PERST_DELAY","features":[307,305]},{"name":"PDEBUG_DEVICE_FOUND_FUNCTION","features":[307,305]},{"name":"PDEBUG_PRINT_CALLBACK","features":[307,311]},{"name":"PDEVICE_BUS_SPECIFIC_RESET_HANDLER","features":[307,305]},{"name":"PDEVICE_CHANGE_COMPLETE_CALLBACK","features":[307]},{"name":"PDEVICE_NOTIFY_CALLBACK","features":[307]},{"name":"PDEVICE_NOTIFY_CALLBACK2","features":[307]},{"name":"PDEVICE_QUERY_BUS_SPECIFIC_RESET_HANDLER","features":[307,305]},{"name":"PDEVICE_RESET_COMPLETION","features":[307]},{"name":"PDEVICE_RESET_HANDLER","features":[307,305]},{"name":"PDE_BASE","features":[307]},{"name":"PDE_PER_PAGE","features":[307]},{"name":"PDE_TOP","features":[307]},{"name":"PDI_SHIFT","features":[307]},{"name":"PDMA_COMPLETION_ROUTINE","features":[307]},{"name":"PDRIVER_CMC_EXCEPTION_CALLBACK","features":[307]},{"name":"PDRIVER_CPE_EXCEPTION_CALLBACK","features":[307]},{"name":"PDRIVER_EXCPTN_CALLBACK","features":[307]},{"name":"PDRIVER_VERIFIER_THUNK_ROUTINE","features":[307]},{"name":"PEI_NOTIFY_TYPE_GUID","features":[307]},{"name":"PENABLE_VIRTUALIZATION","features":[307,305]},{"name":"PETWENABLECALLBACK","features":[307]},{"name":"PEXPAND_STACK_CALLOUT","features":[307]},{"name":"PEXT_CALLBACK","features":[307]},{"name":"PEXT_DELETE_CALLBACK","features":[307]},{"name":"PEX_CALLBACK_FUNCTION","features":[307,305]},{"name":"PFAControl","features":[307]},{"name":"PFLUSH_ADAPTER_BUFFERS","features":[306,309,307,305,308,310,311,312]},{"name":"PFLUSH_ADAPTER_BUFFERS_EX","features":[306,309,307,305,308,310,311,312]},{"name":"PFLUSH_DMA_BUFFER","features":[306,309,307,305,308,310,311,312]},{"name":"PFNFTH","features":[307,305]},{"name":"PFN_IN_USE_PAGE_OFFLINE_NOTIFY","features":[307,305]},{"name":"PFN_NT_COMMIT_TRANSACTION","features":[307,305]},{"name":"PFN_NT_CREATE_TRANSACTION","features":[306,307,305]},{"name":"PFN_NT_OPEN_TRANSACTION","features":[306,307,305]},{"name":"PFN_NT_QUERY_INFORMATION_TRANSACTION","features":[307,305,339]},{"name":"PFN_NT_ROLLBACK_TRANSACTION","features":[307,305]},{"name":"PFN_NT_SET_INFORMATION_TRANSACTION","features":[307,305,339]},{"name":"PFN_RTL_IS_NTDDI_VERSION_AVAILABLE","features":[307,305]},{"name":"PFN_RTL_IS_SERVICE_PACK_VERSION_INSTALLED","features":[307,305]},{"name":"PFN_WHEA_HIGH_IRQL_LOG_SEL_EVENT_HANDLER","features":[307,305,334]},{"name":"PFPGA_BUS_SCAN","features":[307]},{"name":"PFPGA_CONTROL_CONFIG_SPACE","features":[307,305]},{"name":"PFPGA_CONTROL_ERROR_REPORTING","features":[307,305]},{"name":"PFPGA_CONTROL_LINK","features":[307,305]},{"name":"PFREE_ADAPTER_CHANNEL","features":[306,309,307,305,308,310,311,312]},{"name":"PFREE_ADAPTER_OBJECT","features":[306,309,307,305,308,310,311,312]},{"name":"PFREE_COMMON_BUFFER","features":[306,309,307,305,308,310,311,312]},{"name":"PFREE_COMMON_BUFFER_FROM_VECTOR","features":[306,309,307,305,308,310,311,312]},{"name":"PFREE_COMMON_BUFFER_VECTOR","features":[306,309,307,305,308,310,311,312]},{"name":"PFREE_FUNCTION_EX","features":[307]},{"name":"PFREE_MAP_REGISTERS","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_COMMON_BUFFER_FROM_VECTOR_BY_INDEX","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_D3COLD_CAPABILITY","features":[307,305]},{"name":"PGET_D3COLD_LAST_TRANSITION_STATUS","features":[307]},{"name":"PGET_DEVICE_RESET_STATUS","features":[307,305]},{"name":"PGET_DMA_ADAPTER","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_DMA_ADAPTER_INFO","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_DMA_ALIGNMENT","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_DMA_DOMAIN","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_DMA_TRANSFER_INFO","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_IDLE_WAKE_INFO","features":[307,305]},{"name":"PGET_LOCATION_STRING","features":[307,305]},{"name":"PGET_SCATTER_GATHER_LIST","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_SCATTER_GATHER_LIST_EX","features":[306,309,307,305,308,310,311,312]},{"name":"PGET_SDEV_IDENTIFIER","features":[307]},{"name":"PGET_SET_DEVICE_DATA","features":[307]},{"name":"PGET_UPDATED_BUS_RESOURCE","features":[307,305]},{"name":"PGET_VIRTUAL_DEVICE_DATA","features":[307]},{"name":"PGET_VIRTUAL_DEVICE_LOCATION","features":[307,305]},{"name":"PGET_VIRTUAL_DEVICE_RESOURCES","features":[307]},{"name":"PGET_VIRTUAL_FUNCTION_PROBED_BARS","features":[307,305]},{"name":"PGPE_CLEAR_STATUS","features":[306,309,307,305,308,310,311,312]},{"name":"PGPE_CLEAR_STATUS2","features":[307,305]},{"name":"PGPE_CONNECT_VECTOR","features":[306,309,307,305,308,310,311,312]},{"name":"PGPE_CONNECT_VECTOR2","features":[307,305]},{"name":"PGPE_DISABLE_EVENT","features":[306,309,307,305,308,310,311,312]},{"name":"PGPE_DISABLE_EVENT2","features":[307,305]},{"name":"PGPE_DISCONNECT_VECTOR","features":[307,305]},{"name":"PGPE_DISCONNECT_VECTOR2","features":[307,305]},{"name":"PGPE_ENABLE_EVENT","features":[306,309,307,305,308,310,311,312]},{"name":"PGPE_ENABLE_EVENT2","features":[307,305]},{"name":"PGPE_SERVICE_ROUTINE","features":[307,305]},{"name":"PGPE_SERVICE_ROUTINE2","features":[307,305]},{"name":"PHALIOREADWRITEHANDLER","features":[307,305]},{"name":"PHALMCAINTERFACELOCK","features":[307]},{"name":"PHALMCAINTERFACEREADREGISTER","features":[307,305]},{"name":"PHALMCAINTERFACEUNLOCK","features":[307]},{"name":"PHAL_RESET_DISPLAY_PARAMETERS","features":[307,305]},{"name":"PHVL_WHEA_ERROR_NOTIFICATION","features":[307,305]},{"name":"PHYSICAL_COUNTER_EVENT_BUFFER_CONFIGURATION","features":[307,305]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR","features":[307,305]},{"name":"PHYSICAL_COUNTER_RESOURCE_DESCRIPTOR_TYPE","features":[307]},{"name":"PHYSICAL_COUNTER_RESOURCE_LIST","features":[307,305]},{"name":"PHYSICAL_MEMORY_RANGE","features":[307]},{"name":"PINITIALIZE_DMA_TRANSFER_CONTEXT","features":[306,309,307,305,308,310,311,312]},{"name":"PINTERFACE_DEREFERENCE","features":[307]},{"name":"PINTERFACE_REFERENCE","features":[307]},{"name":"PIOMMU_DEVICE_CREATE","features":[307,305]},{"name":"PIOMMU_DEVICE_DELETE","features":[307,305]},{"name":"PIOMMU_DEVICE_FAULT_HANDLER","features":[307]},{"name":"PIOMMU_DEVICE_QUERY_DOMAIN_TYPES","features":[307]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE","features":[307,305]},{"name":"PIOMMU_DOMAIN_ATTACH_DEVICE_EX","features":[307,305]},{"name":"PIOMMU_DOMAIN_CONFIGURE","features":[307,305]},{"name":"PIOMMU_DOMAIN_CREATE","features":[307,305]},{"name":"PIOMMU_DOMAIN_CREATE_EX","features":[307,305]},{"name":"PIOMMU_DOMAIN_DELETE","features":[307,305]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE","features":[307,305]},{"name":"PIOMMU_DOMAIN_DETACH_DEVICE_EX","features":[307,305]},{"name":"PIOMMU_FLUSH_DOMAIN","features":[307,305]},{"name":"PIOMMU_FLUSH_DOMAIN_VA_LIST","features":[307,305]},{"name":"PIOMMU_FREE_RESERVED_LOGICAL_ADDRESS_RANGE","features":[307,305]},{"name":"PIOMMU_INTERFACE_STATE_CHANGE_CALLBACK","features":[307]},{"name":"PIOMMU_MAP_IDENTITY_RANGE","features":[307,305]},{"name":"PIOMMU_MAP_IDENTITY_RANGE_EX","features":[307,305]},{"name":"PIOMMU_MAP_LOGICAL_RANGE","features":[307,305]},{"name":"PIOMMU_MAP_LOGICAL_RANGE_EX","features":[307,305]},{"name":"PIOMMU_MAP_RESERVED_LOGICAL_RANGE","features":[307,305]},{"name":"PIOMMU_QUERY_INPUT_MAPPINGS","features":[307,305]},{"name":"PIOMMU_REGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[307,305]},{"name":"PIOMMU_RESERVE_LOGICAL_ADDRESS_RANGE","features":[307,305]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING","features":[307,305]},{"name":"PIOMMU_SET_DEVICE_FAULT_REPORTING_EX","features":[307,305]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE","features":[307,305]},{"name":"PIOMMU_UNMAP_IDENTITY_RANGE_EX","features":[307,305]},{"name":"PIOMMU_UNMAP_LOGICAL_RANGE","features":[307,305]},{"name":"PIOMMU_UNMAP_RESERVED_LOGICAL_RANGE","features":[307,305]},{"name":"PIOMMU_UNREGISTER_INTERFACE_STATE_CHANGE_CALLBACK","features":[307,305]},{"name":"PIO_CONTAINER_NOTIFICATION_FUNCTION","features":[307,305]},{"name":"PIO_CSQ_ACQUIRE_LOCK","features":[307]},{"name":"PIO_CSQ_COMPLETE_CANCELED_IRP","features":[307]},{"name":"PIO_CSQ_INSERT_IRP","features":[307]},{"name":"PIO_CSQ_INSERT_IRP_EX","features":[307,305]},{"name":"PIO_CSQ_PEEK_NEXT_IRP","features":[306,309,307,305,308,310,311,312]},{"name":"PIO_CSQ_RELEASE_LOCK","features":[307]},{"name":"PIO_CSQ_REMOVE_IRP","features":[307]},{"name":"PIO_DEVICE_EJECT_CALLBACK","features":[307,305]},{"name":"PIO_DPC_ROUTINE","features":[307]},{"name":"PIO_PERSISTED_MEMORY_ENUMERATION_CALLBACK","features":[307,305]},{"name":"PIO_QUERY_DEVICE_ROUTINE","features":[307,305]},{"name":"PIO_SESSION_NOTIFICATION_FUNCTION","features":[307,305]},{"name":"PIO_TIMER_ROUTINE","features":[307]},{"name":"PIO_WORKITEM_ROUTINE","features":[307]},{"name":"PIO_WORKITEM_ROUTINE_EX","features":[307]},{"name":"PJOIN_DMA_DOMAIN","features":[306,309,307,305,308,310,311,312]},{"name":"PKBUGCHECK_CALLBACK_ROUTINE","features":[307]},{"name":"PKBUGCHECK_REASON_CALLBACK_ROUTINE","features":[307]},{"name":"PKIPI_BROADCAST_WORKER","features":[307]},{"name":"PKMESSAGE_SERVICE_ROUTINE","features":[307,305]},{"name":"PKSERVICE_ROUTINE","features":[307,305]},{"name":"PKSTART_ROUTINE","features":[307]},{"name":"PKSYNCHRONIZE_ROUTINE","features":[307,305]},{"name":"PLEAVE_DMA_DOMAIN","features":[306,309,307,305,308,310,311,312]},{"name":"PLOAD_IMAGE_NOTIFY_ROUTINE","features":[307,305]},{"name":"PLUGPLAY_NOTIFICATION_HEADER","features":[307]},{"name":"PLUGPLAY_PROPERTY_PERSISTENT","features":[307]},{"name":"PLUGPLAY_REGKEY_CURRENT_HWPROFILE","features":[307]},{"name":"PLUGPLAY_REGKEY_DEVICE","features":[307]},{"name":"PLUGPLAY_REGKEY_DRIVER","features":[307]},{"name":"PMAP_TRANSFER","features":[306,309,307,305,308,310,311,312]},{"name":"PMAP_TRANSFER_EX","features":[306,309,307,305,308,310,311,312]},{"name":"PMCCounter","features":[307]},{"name":"PMEM_ERROR_SECTION_GUID","features":[307]},{"name":"PMM_DLL_INITIALIZE","features":[307,305]},{"name":"PMM_DLL_UNLOAD","features":[307,305]},{"name":"PMM_GET_SYSTEM_ROUTINE_ADDRESS_EX","features":[307,305]},{"name":"PMM_MDL_ROUTINE","features":[307]},{"name":"PMM_ROTATE_COPY_CALLBACK_FUNCTION","features":[306,307,305]},{"name":"PM_DISPATCH_TABLE","features":[307]},{"name":"PNMI_CALLBACK","features":[307,305]},{"name":"PNPBus","features":[307]},{"name":"PNPEM_CONTROL_ENABLE_DISABLE","features":[307,305]},{"name":"PNPEM_CONTROL_QUERY_CONTROL","features":[307]},{"name":"PNPEM_CONTROL_QUERY_STANDARD_CAPABILITIES","features":[307,305]},{"name":"PNPEM_CONTROL_SET_STANDARD_CONTROL","features":[307,305]},{"name":"PNPISABus","features":[307]},{"name":"PNPISAConfiguration","features":[307]},{"name":"PNPNOTIFY_DEVICE_INTERFACE_INCLUDE_EXISTING_INTERFACES","features":[307]},{"name":"PNP_BUS_INFORMATION","features":[307]},{"name":"PNP_DEVICE_ASSIGNED_TO_GUEST","features":[307]},{"name":"PNP_DEVICE_DISABLED","features":[307]},{"name":"PNP_DEVICE_DISCONNECTED","features":[307]},{"name":"PNP_DEVICE_DONT_DISPLAY_IN_UI","features":[307]},{"name":"PNP_DEVICE_FAILED","features":[307]},{"name":"PNP_DEVICE_NOT_DISABLEABLE","features":[307]},{"name":"PNP_DEVICE_REMOVED","features":[307]},{"name":"PNP_DEVICE_RESOURCE_REQUIREMENTS_CHANGED","features":[307]},{"name":"PNP_DEVICE_RESOURCE_UPDATED","features":[307]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE","features":[307]},{"name":"PNP_EXTENDED_ADDRESS_INTERFACE_VERSION","features":[307]},{"name":"PNP_LOCATION_INTERFACE","features":[307,305]},{"name":"PNP_REPLACE_DRIVER_INTERFACE","features":[307,305]},{"name":"PNP_REPLACE_DRIVER_INTERFACE_VERSION","features":[307]},{"name":"PNP_REPLACE_HARDWARE_MEMORY_MIRRORING","features":[307]},{"name":"PNP_REPLACE_HARDWARE_PAGE_COPY","features":[307]},{"name":"PNP_REPLACE_HARDWARE_QUIESCE","features":[307]},{"name":"PNP_REPLACE_MEMORY_LIST","features":[307]},{"name":"PNP_REPLACE_MEMORY_SUPPORTED","features":[307]},{"name":"PNP_REPLACE_PARAMETERS","features":[307,305]},{"name":"PNP_REPLACE_PARAMETERS_VERSION","features":[307]},{"name":"PNP_REPLACE_PROCESSOR_LIST","features":[307]},{"name":"PNP_REPLACE_PROCESSOR_LIST_V1","features":[307]},{"name":"PNP_REPLACE_PROCESSOR_SUPPORTED","features":[307]},{"name":"PNTFS_DEREF_EXPORTED_SECURITY_DESCRIPTOR","features":[307]},{"name":"POB_POST_OPERATION_CALLBACK","features":[306,307,305]},{"name":"POB_PRE_OPERATION_CALLBACK","features":[306,307]},{"name":"POOLED_USAGE_AND_LIMITS","features":[307]},{"name":"POOL_COLD_ALLOCATION","features":[307]},{"name":"POOL_CREATE_EXTENDED_PARAMS","features":[307]},{"name":"POOL_CREATE_FLG_SECURE_POOL","features":[307]},{"name":"POOL_CREATE_FLG_USE_GLOBAL_POOL","features":[307]},{"name":"POOL_CREATE_PARAMS_VERSION","features":[307]},{"name":"POOL_EXTENDED_PARAMETER","features":[307,305]},{"name":"POOL_EXTENDED_PARAMETER_REQUIRED_FIELD_BITS","features":[307]},{"name":"POOL_EXTENDED_PARAMETER_TYPE","features":[307]},{"name":"POOL_EXTENDED_PARAMETER_TYPE_BITS","features":[307]},{"name":"POOL_EXTENDED_PARAMS_SECURE_POOL","features":[307,305]},{"name":"POOL_NX_ALLOCATION","features":[307]},{"name":"POOL_NX_OPTIN_AUTO","features":[307]},{"name":"POOL_QUOTA_FAIL_INSTEAD_OF_RAISE","features":[307]},{"name":"POOL_RAISE_IF_ALLOCATION_FAILURE","features":[307]},{"name":"POOL_TAGGING","features":[307]},{"name":"POOL_ZEROING_INFORMATION","features":[307]},{"name":"POOL_ZERO_ALLOCATION","features":[307]},{"name":"PORT_MAXIMUM_MESSAGE_LENGTH","features":[307]},{"name":"POWER_LEVEL","features":[307]},{"name":"POWER_MONITOR_INVOCATION","features":[307,305]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[307]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[307]},{"name":"POWER_PLATFORM_INFORMATION","features":[307,305]},{"name":"POWER_PLATFORM_ROLE","features":[307]},{"name":"POWER_PLATFORM_ROLE_V1","features":[307]},{"name":"POWER_PLATFORM_ROLE_V2","features":[307]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[307]},{"name":"POWER_SEQUENCE","features":[307]},{"name":"POWER_SESSION_CONNECT","features":[307,305]},{"name":"POWER_SESSION_RIT_STATE","features":[307,305]},{"name":"POWER_SESSION_TIMEOUTS","features":[307]},{"name":"POWER_SESSION_WINLOGON","features":[307,305]},{"name":"POWER_SETTING_CALLBACK","features":[307,305]},{"name":"POWER_SETTING_VALUE_VERSION","features":[307]},{"name":"POWER_STATE","features":[307,312]},{"name":"POWER_STATE_TYPE","features":[307]},{"name":"POWER_THROTTLING_PROCESS_CURRENT_VERSION","features":[307]},{"name":"POWER_THROTTLING_PROCESS_DELAYTIMERS","features":[307]},{"name":"POWER_THROTTLING_PROCESS_EXECUTION_SPEED","features":[307]},{"name":"POWER_THROTTLING_PROCESS_IGNORE_TIMER_RESOLUTION","features":[307]},{"name":"POWER_THROTTLING_PROCESS_STATE","features":[307]},{"name":"POWER_THROTTLING_THREAD_CURRENT_VERSION","features":[307]},{"name":"POWER_THROTTLING_THREAD_EXECUTION_SPEED","features":[307]},{"name":"POWER_THROTTLING_THREAD_STATE","features":[307]},{"name":"POWER_THROTTLING_THREAD_VALID_FLAGS","features":[307]},{"name":"POWER_USER_PRESENCE_TYPE","features":[307]},{"name":"PO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[307]},{"name":"PO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[307,305]},{"name":"PO_FX_COMPONENT_FLAG_F0_ON_DX","features":[307]},{"name":"PO_FX_COMPONENT_FLAG_NO_DEBOUNCE","features":[307]},{"name":"PO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[307]},{"name":"PO_FX_COMPONENT_IDLE_STATE","features":[307]},{"name":"PO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[307]},{"name":"PO_FX_COMPONENT_PERF_INFO","features":[307,305]},{"name":"PO_FX_COMPONENT_PERF_SET","features":[307,305]},{"name":"PO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[307,305]},{"name":"PO_FX_COMPONENT_V1","features":[307]},{"name":"PO_FX_COMPONENT_V2","features":[307]},{"name":"PO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[307]},{"name":"PO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[307]},{"name":"PO_FX_DEVICE_V1","features":[307,305]},{"name":"PO_FX_DEVICE_V2","features":[307,305]},{"name":"PO_FX_DEVICE_V3","features":[307,305]},{"name":"PO_FX_DIRECTED_FX_DEFAULT_IDLE_TIMEOUT","features":[307]},{"name":"PO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[307]},{"name":"PO_FX_DIRECTED_POWER_UP_CALLBACK","features":[307]},{"name":"PO_FX_DRIPS_WATCHDOG_CALLBACK","features":[306,309,307,305,308,310,311,312]},{"name":"PO_FX_FLAG_ASYNC_ONLY","features":[307]},{"name":"PO_FX_FLAG_BLOCKING","features":[307]},{"name":"PO_FX_FLAG_PERF_PEP_OPTIONAL","features":[307]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_ALL_IDLE_STATES","features":[307]},{"name":"PO_FX_FLAG_PERF_QUERY_ON_F0","features":[307]},{"name":"PO_FX_PERF_STATE","features":[307]},{"name":"PO_FX_PERF_STATE_CHANGE","features":[307]},{"name":"PO_FX_PERF_STATE_TYPE","features":[307]},{"name":"PO_FX_PERF_STATE_UNIT","features":[307]},{"name":"PO_FX_POWER_CONTROL_CALLBACK","features":[307,305]},{"name":"PO_FX_UNKNOWN_POWER","features":[307]},{"name":"PO_FX_UNKNOWN_TIME","features":[307]},{"name":"PO_FX_VERSION","features":[307]},{"name":"PO_FX_VERSION_V1","features":[307]},{"name":"PO_FX_VERSION_V2","features":[307]},{"name":"PO_FX_VERSION_V3","features":[307]},{"name":"PO_MEM_BOOT_PHASE","features":[307]},{"name":"PO_MEM_CLONE","features":[307]},{"name":"PO_MEM_CL_OR_NCHK","features":[307]},{"name":"PO_MEM_DISCARD","features":[307]},{"name":"PO_MEM_PAGE_ADDRESS","features":[307]},{"name":"PO_MEM_PRESERVE","features":[307]},{"name":"PO_THERMAL_REQUEST_TYPE","features":[307]},{"name":"PPCI_EXPRESS_ENTER_LINK_QUIESCENT_MODE","features":[307,305]},{"name":"PPCI_EXPRESS_EXIT_LINK_QUIESCENT_MODE","features":[307,305]},{"name":"PPCI_EXPRESS_ROOT_PORT_READ_CONFIG_SPACE","features":[307]},{"name":"PPCI_EXPRESS_ROOT_PORT_WRITE_CONFIG_SPACE","features":[307]},{"name":"PPCI_EXPRESS_WAKE_CONTROL","features":[307]},{"name":"PPCI_IS_DEVICE_PRESENT","features":[307,305]},{"name":"PPCI_IS_DEVICE_PRESENT_EX","features":[307,305]},{"name":"PPCI_LINE_TO_PIN","features":[307]},{"name":"PPCI_MSIX_GET_ENTRY","features":[307,305]},{"name":"PPCI_MSIX_GET_TABLE_SIZE","features":[307,305]},{"name":"PPCI_MSIX_MASKUNMASK_ENTRY","features":[307,305]},{"name":"PPCI_MSIX_SET_ENTRY","features":[307,305]},{"name":"PPCI_PIN_TO_LINE","features":[307]},{"name":"PPCI_PREPARE_MULTISTAGE_RESUME","features":[307]},{"name":"PPCI_READ_WRITE_CONFIG","features":[307]},{"name":"PPCI_ROOT_BUS_CAPABILITY","features":[307]},{"name":"PPCI_SET_ACS","features":[307,305]},{"name":"PPCI_SET_ACS2","features":[307,305]},{"name":"PPCI_SET_ATS","features":[307,305]},{"name":"PPCW_CALLBACK","features":[307,305]},{"name":"PPHYSICAL_COUNTER_EVENT_BUFFER_OVERFLOW_HANDLER","features":[307,305]},{"name":"PPHYSICAL_COUNTER_OVERFLOW_HANDLER","features":[307,305]},{"name":"PPI_SHIFT","features":[307]},{"name":"PPOWER_SETTING_CALLBACK","features":[307,305]},{"name":"PPO_FX_COMPONENT_ACTIVE_CONDITION_CALLBACK","features":[307]},{"name":"PPO_FX_COMPONENT_CRITICAL_TRANSITION_CALLBACK","features":[307]},{"name":"PPO_FX_COMPONENT_IDLE_CONDITION_CALLBACK","features":[307]},{"name":"PPO_FX_COMPONENT_IDLE_STATE_CALLBACK","features":[307]},{"name":"PPO_FX_COMPONENT_PERF_STATE_CALLBACK","features":[307]},{"name":"PPO_FX_DEVICE_POWER_NOT_REQUIRED_CALLBACK","features":[307]},{"name":"PPO_FX_DEVICE_POWER_REQUIRED_CALLBACK","features":[307]},{"name":"PPO_FX_DIRECTED_POWER_DOWN_CALLBACK","features":[307]},{"name":"PPO_FX_DIRECTED_POWER_UP_CALLBACK","features":[307]},{"name":"PPO_FX_DRIPS_WATCHDOG_CALLBACK","features":[307]},{"name":"PPO_FX_POWER_CONTROL_CALLBACK","features":[307,305]},{"name":"PPROCESSOR_CALLBACK_FUNCTION","features":[307]},{"name":"PPROCESSOR_HALT_ROUTINE","features":[307,305]},{"name":"PPTM_DEVICE_DISABLE","features":[307,305]},{"name":"PPTM_DEVICE_ENABLE","features":[307,305]},{"name":"PPTM_DEVICE_QUERY_GRANULARITY","features":[307,305]},{"name":"PPTM_DEVICE_QUERY_TIME_SOURCE","features":[307,305]},{"name":"PPUT_DMA_ADAPTER","features":[306,309,307,305,308,310,311,312]},{"name":"PPUT_SCATTER_GATHER_LIST","features":[306,309,307,305,308,310,311,312]},{"name":"PQUERYEXTENDEDADDRESS","features":[307]},{"name":"PREAD_DMA_COUNTER","features":[306,309,307,305,308,310,311,312]},{"name":"PREENUMERATE_SELF","features":[307]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[306,309,307,305,308,310,311,312]},{"name":"PREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[307,305]},{"name":"PREPLACE_BEGIN","features":[307,305]},{"name":"PREPLACE_DRIVER_INIT","features":[307,305]},{"name":"PREPLACE_ENABLE_DISABLE_HARDWARE_QUIESCE","features":[307,305]},{"name":"PREPLACE_END","features":[307,305]},{"name":"PREPLACE_GET_MEMORY_DESTINATION","features":[307,305]},{"name":"PREPLACE_INITIATE_HARDWARE_MIRROR","features":[307,305]},{"name":"PREPLACE_MAP_MEMORY","features":[307,305]},{"name":"PREPLACE_MIRROR_PHYSICAL_MEMORY","features":[307,305]},{"name":"PREPLACE_MIRROR_PLATFORM_MEMORY","features":[307,305]},{"name":"PREPLACE_SET_PROCESSOR_ID","features":[307,305]},{"name":"PREPLACE_SWAP","features":[307,305]},{"name":"PREPLACE_UNLOAD","features":[307]},{"name":"PREQUEST_POWER_COMPLETE","features":[307]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[307]},{"name":"PROCESSOR_CALLBACK_FUNCTION","features":[307,305,311]},{"name":"PROCESSOR_FEATURE_MAX","features":[307]},{"name":"PROCESSOR_GENERIC_ERROR_SECTION_GUID","features":[307]},{"name":"PROCESSOR_HALT_ROUTINE","features":[307,305]},{"name":"PROCESS_ACCESS_TOKEN","features":[307,305]},{"name":"PROCESS_DEVICEMAP_INFORMATION","features":[307,305]},{"name":"PROCESS_DEVICEMAP_INFORMATION_EX","features":[307,305]},{"name":"PROCESS_EXCEPTION_PORT","features":[307,305]},{"name":"PROCESS_EXCEPTION_PORT_ALL_STATE_BITS","features":[307]},{"name":"PROCESS_EXTENDED_BASIC_INFORMATION","features":[307,305,311,340]},{"name":"PROCESS_HANDLE_EXCEPTIONS_ENABLED","features":[307]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_DISABLED","features":[307]},{"name":"PROCESS_HANDLE_RAISE_UM_EXCEPTION_ON_INVALID_HANDLE_CLOSE_ENABLED","features":[307]},{"name":"PROCESS_HANDLE_TRACING_ENABLE","features":[307]},{"name":"PROCESS_HANDLE_TRACING_ENABLE_EX","features":[307]},{"name":"PROCESS_HANDLE_TRACING_ENTRY","features":[307,305,338]},{"name":"PROCESS_HANDLE_TRACING_MAX_STACKS","features":[307]},{"name":"PROCESS_HANDLE_TRACING_QUERY","features":[307,305,338]},{"name":"PROCESS_KEEPALIVE_COUNT_INFORMATION","features":[307]},{"name":"PROCESS_LUID_DOSDEVICES_ONLY","features":[307]},{"name":"PROCESS_MEMBERSHIP_INFORMATION","features":[307]},{"name":"PROCESS_REVOKE_FILE_HANDLES_INFORMATION","features":[307,305]},{"name":"PROCESS_SESSION_INFORMATION","features":[307]},{"name":"PROCESS_SYSCALL_PROVIDER_INFORMATION","features":[307]},{"name":"PROCESS_WS_WATCH_INFORMATION","features":[307]},{"name":"PROFILE_LEVEL","features":[307]},{"name":"PROTECTED_POOL","features":[307]},{"name":"PRTL_AVL_ALLOCATE_ROUTINE","features":[307]},{"name":"PRTL_AVL_COMPARE_ROUTINE","features":[307]},{"name":"PRTL_AVL_FREE_ROUTINE","features":[307]},{"name":"PRTL_AVL_MATCH_FUNCTION","features":[307,305]},{"name":"PRTL_GENERIC_ALLOCATE_ROUTINE","features":[307]},{"name":"PRTL_GENERIC_COMPARE_ROUTINE","features":[307]},{"name":"PRTL_GENERIC_FREE_ROUTINE","features":[307]},{"name":"PRTL_QUERY_REGISTRY_ROUTINE","features":[307,305]},{"name":"PRTL_RUN_ONCE_INIT_FN","features":[307]},{"name":"PSCREATEPROCESSNOTIFYTYPE","features":[307]},{"name":"PSCREATETHREADNOTIFYTYPE","features":[307]},{"name":"PSECURE_DRIVER_PROCESS_DEREFERENCE","features":[307]},{"name":"PSECURE_DRIVER_PROCESS_REFERENCE","features":[306,307]},{"name":"PSET_D3COLD_SUPPORT","features":[307]},{"name":"PSET_VIRTUAL_DEVICE_DATA","features":[307]},{"name":"PSE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[307]},{"name":"PSHED_PI_ATTEMPT_ERROR_RECOVERY","features":[307,305]},{"name":"PSHED_PI_CLEAR_ERROR_RECORD","features":[307,305]},{"name":"PSHED_PI_CLEAR_ERROR_STATUS","features":[307,305,334]},{"name":"PSHED_PI_DISABLE_ERROR_SOURCE","features":[307,305,334]},{"name":"PSHED_PI_ENABLE_ERROR_SOURCE","features":[307,305,334]},{"name":"PSHED_PI_ERR_READING_PCIE_OVERRIDES","features":[307]},{"name":"PSHED_PI_FINALIZE_ERROR_RECORD","features":[307,305,334]},{"name":"PSHED_PI_GET_ALL_ERROR_SOURCES","features":[307,305,334]},{"name":"PSHED_PI_GET_ERROR_SOURCE_INFO","features":[307,305,334]},{"name":"PSHED_PI_GET_INJECTION_CAPABILITIES","features":[307,305]},{"name":"PSHED_PI_INJECT_ERROR","features":[307,305]},{"name":"PSHED_PI_READ_ERROR_RECORD","features":[307,305]},{"name":"PSHED_PI_RETRIEVE_ERROR_INFO","features":[307,305,334]},{"name":"PSHED_PI_SET_ERROR_SOURCE_INFO","features":[307,305,334]},{"name":"PSHED_PI_WRITE_ERROR_RECORD","features":[307,305]},{"name":"PS_CREATE_NOTIFY_INFO","features":[306,309,307,305,308,310,311,312,338]},{"name":"PS_IMAGE_NOTIFY_CONFLICTING_ARCHITECTURE","features":[307]},{"name":"PS_INVALID_SILO_CONTEXT_SLOT","features":[307]},{"name":"PTE_BASE","features":[307]},{"name":"PTE_PER_PAGE","features":[307]},{"name":"PTE_TOP","features":[307]},{"name":"PTIMER_APC_ROUTINE","features":[307]},{"name":"PTI_SHIFT","features":[307]},{"name":"PTM_CONTROL_INTERFACE","features":[307,305]},{"name":"PTM_DEVICE_DISABLE","features":[307,305]},{"name":"PTM_DEVICE_ENABLE","features":[307,305]},{"name":"PTM_DEVICE_QUERY_GRANULARITY","features":[307,305]},{"name":"PTM_DEVICE_QUERY_TIME_SOURCE","features":[307,305]},{"name":"PTM_PROPAGATE_ROUTINE","features":[307,305]},{"name":"PTM_RM_NOTIFICATION","features":[306,307,305]},{"name":"PTRANSLATE_BUS_ADDRESS","features":[307,305]},{"name":"PTRANSLATE_RESOURCE_HANDLER","features":[306,309,307,305,308,310,311,312]},{"name":"PTRANSLATE_RESOURCE_REQUIREMENTS_HANDLER","features":[306,309,307,305,308,310,311,312]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS","features":[306,309,307,305,308,310,311,312]},{"name":"PUNREGISTER_FOR_DEVICE_NOTIFICATIONS2","features":[307]},{"name":"PageIn","features":[307]},{"name":"ParallelController","features":[307]},{"name":"PciAcsBitDisable","features":[307]},{"name":"PciAcsBitDontCare","features":[307]},{"name":"PciAcsBitEnable","features":[307]},{"name":"PciAcsReserved","features":[307]},{"name":"PciAddressParityError","features":[307]},{"name":"PciBusDataParityError","features":[307]},{"name":"PciBusMasterAbort","features":[307]},{"name":"PciBusSystemError","features":[307]},{"name":"PciBusTimeOut","features":[307]},{"name":"PciBusUnknownError","features":[307]},{"name":"PciCommandParityError","features":[307]},{"name":"PciConventional","features":[307]},{"name":"PciDeviceD3Cold_Reason_Default_State_BitIndex","features":[307]},{"name":"PciDeviceD3Cold_Reason_INF_BitIndex","features":[307]},{"name":"PciDeviceD3Cold_Reason_Interface_Api_BitIndex","features":[307]},{"name":"PciDeviceD3Cold_State_Disabled_BitIndex","features":[307]},{"name":"PciDeviceD3Cold_State_Disabled_Bridge_HackFlags_BitIndex","features":[307]},{"name":"PciDeviceD3Cold_State_Enabled_BitIndex","features":[307]},{"name":"PciDeviceD3Cold_State_ParentRootPortS0WakeSupported_BitIndex","features":[307]},{"name":"PciExpress","features":[307]},{"name":"PciExpressASPMLinkSubState_L11_BitIndex","features":[307]},{"name":"PciExpressASPMLinkSubState_L12_BitIndex","features":[307]},{"name":"PciExpressDownstreamSwitchPort","features":[307]},{"name":"PciExpressEndpoint","features":[307]},{"name":"PciExpressLegacyEndpoint","features":[307]},{"name":"PciExpressPciPmLinkSubState_L11_BitIndex","features":[307]},{"name":"PciExpressPciPmLinkSubState_L12_BitIndex","features":[307]},{"name":"PciExpressRootComplexEventCollector","features":[307]},{"name":"PciExpressRootComplexIntegratedEndpoint","features":[307]},{"name":"PciExpressRootPort","features":[307]},{"name":"PciExpressToPciXBridge","features":[307]},{"name":"PciExpressUpstreamSwitchPort","features":[307]},{"name":"PciLine2Pin","features":[307]},{"name":"PciMasterDataParityError","features":[307]},{"name":"PciPin2Line","features":[307]},{"name":"PciReadWriteConfig","features":[307]},{"name":"PciXMode1","features":[307]},{"name":"PciXMode2","features":[307]},{"name":"PciXToExpressBridge","features":[307]},{"name":"PcwAddInstance","features":[306,307,305]},{"name":"PcwCallbackAddCounter","features":[307]},{"name":"PcwCallbackCollectData","features":[307]},{"name":"PcwCallbackEnumerateInstances","features":[307]},{"name":"PcwCallbackRemoveCounter","features":[307]},{"name":"PcwCloseInstance","features":[306,307]},{"name":"PcwCreateInstance","features":[306,307,305]},{"name":"PcwRegister","features":[306,307,305]},{"name":"PcwRegistrationNone","features":[307]},{"name":"PcwRegistrationSiloNeutral","features":[307]},{"name":"PcwUnregister","features":[306,307]},{"name":"PermissionFault","features":[307]},{"name":"PlatformLevelDeviceReset","features":[307]},{"name":"PlatformRoleAppliancePC","features":[307]},{"name":"PlatformRoleDesktop","features":[307]},{"name":"PlatformRoleEnterpriseServer","features":[307]},{"name":"PlatformRoleMaximum","features":[307]},{"name":"PlatformRoleMobile","features":[307]},{"name":"PlatformRolePerformanceServer","features":[307]},{"name":"PlatformRoleSOHOServer","features":[307]},{"name":"PlatformRoleSlate","features":[307]},{"name":"PlatformRoleUnspecified","features":[307]},{"name":"PlatformRoleWorkstation","features":[307]},{"name":"PoAc","features":[307]},{"name":"PoCallDriver","features":[306,309,307,305,308,310,311,312]},{"name":"PoClearPowerRequest","features":[307,305,312]},{"name":"PoConditionMaximum","features":[307]},{"name":"PoCreatePowerRequest","features":[306,309,307,305,308,310,311,312]},{"name":"PoCreateThermalRequest","features":[306,309,307,305,308,310,311,312]},{"name":"PoDc","features":[307]},{"name":"PoDeletePowerRequest","features":[307]},{"name":"PoDeleteThermalRequest","features":[307]},{"name":"PoEndDeviceBusy","features":[307]},{"name":"PoFxActivateComponent","features":[306,307]},{"name":"PoFxCompleteDevicePowerNotRequired","features":[306,307]},{"name":"PoFxCompleteDirectedPowerDown","features":[306,307]},{"name":"PoFxCompleteIdleCondition","features":[306,307]},{"name":"PoFxCompleteIdleState","features":[306,307]},{"name":"PoFxIdleComponent","features":[306,307]},{"name":"PoFxIssueComponentPerfStateChange","features":[306,307]},{"name":"PoFxIssueComponentPerfStateChangeMultiple","features":[306,307]},{"name":"PoFxNotifySurprisePowerOn","features":[306,309,307,305,308,310,311,312]},{"name":"PoFxPerfStateTypeDiscrete","features":[307]},{"name":"PoFxPerfStateTypeMaximum","features":[307]},{"name":"PoFxPerfStateTypeRange","features":[307]},{"name":"PoFxPerfStateUnitBandwidth","features":[307]},{"name":"PoFxPerfStateUnitFrequency","features":[307]},{"name":"PoFxPerfStateUnitMaximum","features":[307]},{"name":"PoFxPerfStateUnitOther","features":[307]},{"name":"PoFxPowerControl","features":[306,307,305]},{"name":"PoFxPowerOnCrashdumpDevice","features":[306,307,305]},{"name":"PoFxQueryCurrentComponentPerfState","features":[306,307,305]},{"name":"PoFxRegisterComponentPerfStates","features":[306,307,305]},{"name":"PoFxRegisterCrashdumpDevice","features":[306,307,305]},{"name":"PoFxRegisterDevice","features":[306,309,307,305,308,310,311,312]},{"name":"PoFxRegisterDripsWatchdogCallback","features":[306,309,307,305,308,310,311,312]},{"name":"PoFxReportDevicePoweredOn","features":[306,307]},{"name":"PoFxSetComponentLatency","features":[306,307]},{"name":"PoFxSetComponentResidency","features":[306,307]},{"name":"PoFxSetComponentWake","features":[306,307,305]},{"name":"PoFxSetDeviceIdleTimeout","features":[306,307]},{"name":"PoFxSetTargetDripsDevicePowerState","features":[306,307,305,312]},{"name":"PoFxStartDevicePowerManagement","features":[306,307]},{"name":"PoFxUnregisterDevice","features":[306,307]},{"name":"PoGetSystemWake","features":[306,309,307,305,308,310,311,312]},{"name":"PoGetThermalRequestSupport","features":[307,305]},{"name":"PoHot","features":[307]},{"name":"PoQueryWatchdogTime","features":[306,309,307,305,308,310,311,312]},{"name":"PoRegisterDeviceForIdleDetection","features":[306,309,307,305,308,310,311,312]},{"name":"PoRegisterPowerSettingCallback","features":[306,309,307,305,308,310,311,312]},{"name":"PoRegisterSystemState","features":[307]},{"name":"PoRequestPowerIrp","features":[306,309,307,305,308,310,311,312]},{"name":"PoSetDeviceBusyEx","features":[307]},{"name":"PoSetHiberRange","features":[307]},{"name":"PoSetPowerRequest","features":[307,305,312]},{"name":"PoSetPowerState","features":[306,309,307,305,308,310,311,312]},{"name":"PoSetSystemState","features":[307]},{"name":"PoSetSystemWake","features":[306,309,307,305,308,310,311,312]},{"name":"PoSetSystemWakeDevice","features":[306,309,307,305,308,310,311,312]},{"name":"PoSetThermalActiveCooling","features":[307,305]},{"name":"PoSetThermalPassiveCooling","features":[307,305]},{"name":"PoStartDeviceBusy","features":[307]},{"name":"PoStartNextPowerIrp","features":[306,309,307,305,308,310,311,312]},{"name":"PoThermalRequestActive","features":[307]},{"name":"PoThermalRequestPassive","features":[307]},{"name":"PoUnregisterPowerSettingCallback","features":[307,305]},{"name":"PoUnregisterSystemState","features":[307]},{"name":"PointerController","features":[307]},{"name":"PointerPeripheral","features":[307]},{"name":"PoolAllocation","features":[307]},{"name":"PoolExtendedParameterInvalidType","features":[307]},{"name":"PoolExtendedParameterMax","features":[307]},{"name":"PoolExtendedParameterNumaNode","features":[307]},{"name":"PoolExtendedParameterPriority","features":[307]},{"name":"PoolExtendedParameterSecurePool","features":[307]},{"name":"Pos","features":[307]},{"name":"PowerOff","features":[307]},{"name":"PowerOn","features":[307]},{"name":"PowerRelations","features":[307]},{"name":"PrimaryDcache","features":[307]},{"name":"PrimaryIcache","features":[307]},{"name":"PrinterPeripheral","features":[307]},{"name":"ProbeForRead","features":[307]},{"name":"ProbeForWrite","features":[307]},{"name":"ProcessorInternal","features":[307]},{"name":"Profile2Issue","features":[307]},{"name":"Profile3Issue","features":[307]},{"name":"Profile4Issue","features":[307]},{"name":"ProfileAlignmentFixup","features":[307]},{"name":"ProfileBranchInstructions","features":[307]},{"name":"ProfileBranchMispredictions","features":[307]},{"name":"ProfileCacheMisses","features":[307]},{"name":"ProfileDcacheAccesses","features":[307]},{"name":"ProfileDcacheMisses","features":[307]},{"name":"ProfileFpInstructions","features":[307]},{"name":"ProfileIcacheIssues","features":[307]},{"name":"ProfileIcacheMisses","features":[307]},{"name":"ProfileIntegerInstructions","features":[307]},{"name":"ProfileLoadInstructions","features":[307]},{"name":"ProfileLoadLinkedIssues","features":[307]},{"name":"ProfileMaximum","features":[307]},{"name":"ProfileMemoryBarrierCycles","features":[307]},{"name":"ProfilePipelineDry","features":[307]},{"name":"ProfilePipelineFrozen","features":[307]},{"name":"ProfileSpecialInstructions","features":[307]},{"name":"ProfileStoreInstructions","features":[307]},{"name":"ProfileTime","features":[307]},{"name":"ProfileTotalCycles","features":[307]},{"name":"ProfileTotalIssues","features":[307]},{"name":"ProfileTotalNonissues","features":[307]},{"name":"PsAcquireSiloHardReference","features":[306,307,305]},{"name":"PsAllocSiloContextSlot","features":[307,305]},{"name":"PsAllocateAffinityToken","features":[306,307,305]},{"name":"PsAttachSiloToCurrentThread","features":[306,307]},{"name":"PsCreateProcessNotifySubsystems","features":[307]},{"name":"PsCreateSiloContext","features":[306,307,305]},{"name":"PsCreateSystemThread","features":[306,307,305,338]},{"name":"PsCreateThreadNotifyNonSystem","features":[307]},{"name":"PsCreateThreadNotifySubsystems","features":[307]},{"name":"PsDereferenceSiloContext","features":[307]},{"name":"PsDetachSiloFromCurrentThread","features":[306,307]},{"name":"PsFreeAffinityToken","features":[306,307]},{"name":"PsFreeSiloContextSlot","features":[307,305]},{"name":"PsGetCurrentProcessId","features":[307,305]},{"name":"PsGetCurrentServerSilo","features":[306,307]},{"name":"PsGetCurrentServerSiloName","features":[307,305]},{"name":"PsGetCurrentSilo","features":[306,307]},{"name":"PsGetCurrentThreadId","features":[307,305]},{"name":"PsGetCurrentThreadTeb","features":[307]},{"name":"PsGetEffectiveServerSilo","features":[306,307]},{"name":"PsGetHostSilo","features":[306,307]},{"name":"PsGetJobServerSilo","features":[306,307,305]},{"name":"PsGetJobSilo","features":[306,307,305]},{"name":"PsGetParentSilo","features":[306,307]},{"name":"PsGetPermanentSiloContext","features":[306,307,305]},{"name":"PsGetProcessCreateTimeQuadPart","features":[306,307]},{"name":"PsGetProcessExitStatus","features":[306,307,305]},{"name":"PsGetProcessId","features":[306,307,305]},{"name":"PsGetProcessStartKey","features":[306,307]},{"name":"PsGetServerSiloServiceSessionId","features":[306,307]},{"name":"PsGetSiloContainerId","features":[306,307]},{"name":"PsGetSiloContext","features":[306,307,305]},{"name":"PsGetSiloMonitorContextSlot","features":[306,307]},{"name":"PsGetThreadCreateTime","features":[306,307]},{"name":"PsGetThreadExitStatus","features":[306,307,305]},{"name":"PsGetThreadId","features":[306,307,305]},{"name":"PsGetThreadProcessId","features":[306,307,305]},{"name":"PsGetThreadProperty","features":[306,307]},{"name":"PsGetThreadServerSilo","features":[306,307]},{"name":"PsGetVersion","features":[307,305]},{"name":"PsInsertPermanentSiloContext","features":[306,307,305]},{"name":"PsInsertSiloContext","features":[306,307,305]},{"name":"PsIsCurrentThreadInServerSilo","features":[307,305]},{"name":"PsIsCurrentThreadPrefetching","features":[307,305]},{"name":"PsIsHostSilo","features":[306,307,305]},{"name":"PsMakeSiloContextPermanent","features":[306,307,305]},{"name":"PsQueryTotalCycleTimeProcess","features":[306,307]},{"name":"PsReferenceSiloContext","features":[307]},{"name":"PsRegisterSiloMonitor","features":[306,307,305]},{"name":"PsReleaseSiloHardReference","features":[306,307]},{"name":"PsRemoveCreateThreadNotifyRoutine","features":[307,305]},{"name":"PsRemoveLoadImageNotifyRoutine","features":[307,305]},{"name":"PsRemoveSiloContext","features":[306,307,305]},{"name":"PsReplaceSiloContext","features":[306,307,305]},{"name":"PsRevertToUserMultipleGroupAffinityThread","features":[306,307]},{"name":"PsSetCreateProcessNotifyRoutine","features":[307,305]},{"name":"PsSetCreateProcessNotifyRoutineEx","features":[306,309,307,305,308,310,311,312,338]},{"name":"PsSetCreateProcessNotifyRoutineEx2","features":[307,305]},{"name":"PsSetCreateThreadNotifyRoutine","features":[307,305]},{"name":"PsSetCreateThreadNotifyRoutineEx","features":[307,305]},{"name":"PsSetCurrentThreadPrefetching","features":[307,305]},{"name":"PsSetLoadImageNotifyRoutine","features":[307,305]},{"name":"PsSetLoadImageNotifyRoutineEx","features":[307,305]},{"name":"PsSetSystemMultipleGroupAffinityThread","features":[306,307,305,336]},{"name":"PsStartSiloMonitor","features":[306,307,305]},{"name":"PsTerminateServerSilo","features":[306,307,305]},{"name":"PsTerminateSystemThread","features":[307,305]},{"name":"PsUnregisterSiloMonitor","features":[306,307]},{"name":"PsWrapApcWow64Thread","features":[307,305]},{"name":"PshedAllocateMemory","features":[307]},{"name":"PshedFADiscovery","features":[307]},{"name":"PshedFAErrorInfoRetrieval","features":[307]},{"name":"PshedFAErrorInjection","features":[307]},{"name":"PshedFAErrorRecordPersistence","features":[307]},{"name":"PshedFAErrorRecovery","features":[307]},{"name":"PshedFAErrorSourceControl","features":[307]},{"name":"PshedFreeMemory","features":[307]},{"name":"PshedIsSystemWheaEnabled","features":[307,305]},{"name":"PshedPiEnableNotifyErrorCreateNotifyEvent","features":[307]},{"name":"PshedPiEnableNotifyErrorCreateSystemThread","features":[307]},{"name":"PshedPiEnableNotifyErrorMax","features":[307]},{"name":"PshedPiErrReadingPcieOverridesBadSignature","features":[307]},{"name":"PshedPiErrReadingPcieOverridesBadSize","features":[307]},{"name":"PshedPiErrReadingPcieOverridesNoCapOffset","features":[307]},{"name":"PshedPiErrReadingPcieOverridesNoErr","features":[307]},{"name":"PshedPiErrReadingPcieOverridesNoMemory","features":[307]},{"name":"PshedPiErrReadingPcieOverridesNotBinary","features":[307]},{"name":"PshedPiErrReadingPcieOverridesQueryErr","features":[307]},{"name":"PshedRegisterPlugin","features":[307,305,334]},{"name":"PshedSynchronizeExecution","features":[307,305,334]},{"name":"PshedUnregisterPlugin","features":[307]},{"name":"QuerySecurityDescriptor","features":[307]},{"name":"RCB128Bytes","features":[307]},{"name":"RCB64Bytes","features":[307]},{"name":"RECOVERY_INFO_SECTION_GUID","features":[307]},{"name":"REENUMERATE_SELF_INTERFACE_STANDARD","features":[307]},{"name":"REG_CALLBACK_CONTEXT_CLEANUP_INFORMATION","features":[307]},{"name":"REG_CREATE_KEY_INFORMATION","features":[307,305]},{"name":"REG_CREATE_KEY_INFORMATION_V1","features":[307,305]},{"name":"REG_DELETE_KEY_INFORMATION","features":[307]},{"name":"REG_DELETE_VALUE_KEY_INFORMATION","features":[307,305]},{"name":"REG_KEY_HANDLE_CLOSE_INFORMATION","features":[307]},{"name":"REG_LOAD_KEY_INFORMATION","features":[307,305]},{"name":"REG_LOAD_KEY_INFORMATION_V2","features":[307,305]},{"name":"REG_NOTIFY_CLASS","features":[307]},{"name":"REG_POST_CREATE_KEY_INFORMATION","features":[307,305]},{"name":"REG_POST_OPERATION_INFORMATION","features":[307,305]},{"name":"REG_PRE_CREATE_KEY_INFORMATION","features":[307,305]},{"name":"REG_QUERY_KEY_NAME","features":[306,307,305]},{"name":"REG_QUERY_KEY_SECURITY_INFORMATION","features":[307,308]},{"name":"REG_RENAME_KEY_INFORMATION","features":[307,305]},{"name":"REG_REPLACE_KEY_INFORMATION","features":[307,305]},{"name":"REG_RESTORE_KEY_INFORMATION","features":[307,305]},{"name":"REG_SAVE_KEY_INFORMATION","features":[307,305]},{"name":"REG_SAVE_MERGED_KEY_INFORMATION","features":[307,305]},{"name":"REG_SET_KEY_SECURITY_INFORMATION","features":[307,308]},{"name":"REG_SET_VALUE_KEY_INFORMATION","features":[307,305]},{"name":"REG_UNLOAD_KEY_INFORMATION","features":[307]},{"name":"REQUEST_POWER_COMPLETE","features":[306,309,307,305,308,310,311,312]},{"name":"RESOURCE_HASH_ENTRY","features":[307,311]},{"name":"RESOURCE_HASH_TABLE_SIZE","features":[307]},{"name":"RESOURCE_PERFORMANCE_DATA","features":[307,311]},{"name":"RESOURCE_TRANSLATION_DIRECTION","features":[307]},{"name":"RESULT_NEGATIVE","features":[307]},{"name":"RESULT_POSITIVE","features":[307]},{"name":"RESULT_ZERO","features":[307]},{"name":"ROOT_CMD_ENABLE_CORRECTABLE_ERROR_REPORTING","features":[307]},{"name":"ROOT_CMD_ENABLE_FATAL_ERROR_REPORTING","features":[307]},{"name":"ROOT_CMD_ENABLE_NONFATAL_ERROR_REPORTING","features":[307]},{"name":"RTL_AVL_ALLOCATE_ROUTINE","features":[307]},{"name":"RTL_AVL_COMPARE_ROUTINE","features":[307]},{"name":"RTL_AVL_FREE_ROUTINE","features":[307]},{"name":"RTL_AVL_MATCH_FUNCTION","features":[307,305]},{"name":"RTL_AVL_TABLE","features":[307]},{"name":"RTL_BALANCED_LINKS","features":[307]},{"name":"RTL_BITMAP","features":[307]},{"name":"RTL_BITMAP_RUN","features":[307]},{"name":"RTL_DYNAMIC_HASH_TABLE","features":[307]},{"name":"RTL_DYNAMIC_HASH_TABLE_CONTEXT","features":[307,311]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENTRY","features":[307,311]},{"name":"RTL_DYNAMIC_HASH_TABLE_ENUMERATOR","features":[307,311]},{"name":"RTL_GENERIC_ALLOCATE_ROUTINE","features":[306,307,311]},{"name":"RTL_GENERIC_COMPARE_RESULTS","features":[307]},{"name":"RTL_GENERIC_COMPARE_ROUTINE","features":[306,307,311]},{"name":"RTL_GENERIC_FREE_ROUTINE","features":[306,307,311]},{"name":"RTL_GENERIC_TABLE","features":[306,307,311]},{"name":"RTL_GUID_STRING_SIZE","features":[307]},{"name":"RTL_HASH_ALLOCATED_HEADER","features":[307]},{"name":"RTL_HASH_RESERVED_SIGNATURE","features":[307]},{"name":"RTL_QUERY_REGISTRY_DELETE","features":[307]},{"name":"RTL_QUERY_REGISTRY_DIRECT","features":[307]},{"name":"RTL_QUERY_REGISTRY_NOEXPAND","features":[307]},{"name":"RTL_QUERY_REGISTRY_NOSTRING","features":[307]},{"name":"RTL_QUERY_REGISTRY_NOVALUE","features":[307]},{"name":"RTL_QUERY_REGISTRY_REQUIRED","features":[307]},{"name":"RTL_QUERY_REGISTRY_ROUTINE","features":[307,305]},{"name":"RTL_QUERY_REGISTRY_SUBKEY","features":[307]},{"name":"RTL_QUERY_REGISTRY_TABLE","features":[307,305]},{"name":"RTL_QUERY_REGISTRY_TOPKEY","features":[307]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK","features":[307]},{"name":"RTL_QUERY_REGISTRY_TYPECHECK_SHIFT","features":[307]},{"name":"RTL_REGISTRY_ABSOLUTE","features":[307]},{"name":"RTL_REGISTRY_CONTROL","features":[307]},{"name":"RTL_REGISTRY_DEVICEMAP","features":[307]},{"name":"RTL_REGISTRY_HANDLE","features":[307]},{"name":"RTL_REGISTRY_MAXIMUM","features":[307]},{"name":"RTL_REGISTRY_OPTIONAL","features":[307]},{"name":"RTL_REGISTRY_SERVICES","features":[307]},{"name":"RTL_REGISTRY_USER","features":[307]},{"name":"RTL_REGISTRY_WINDOWS_NT","features":[307]},{"name":"RTL_RUN_ONCE_INIT_FN","features":[307,340]},{"name":"RTL_STACK_WALKING_MODE_FRAMES_TO_SKIP_SHIFT","features":[307]},{"name":"RandomAccess","features":[307]},{"name":"ReadAccess","features":[307]},{"name":"RealModeIrqRoutingTable","features":[307]},{"name":"RealModePCIEnumeration","features":[307]},{"name":"RealTimeWorkQueue","features":[307]},{"name":"RebuildControl","features":[307]},{"name":"RegNtCallbackObjectContextCleanup","features":[307]},{"name":"RegNtDeleteKey","features":[307]},{"name":"RegNtDeleteValueKey","features":[307]},{"name":"RegNtEnumerateKey","features":[307]},{"name":"RegNtEnumerateValueKey","features":[307]},{"name":"RegNtKeyHandleClose","features":[307]},{"name":"RegNtPostCreateKey","features":[307]},{"name":"RegNtPostCreateKeyEx","features":[307]},{"name":"RegNtPostDeleteKey","features":[307]},{"name":"RegNtPostDeleteValueKey","features":[307]},{"name":"RegNtPostEnumerateKey","features":[307]},{"name":"RegNtPostEnumerateValueKey","features":[307]},{"name":"RegNtPostFlushKey","features":[307]},{"name":"RegNtPostKeyHandleClose","features":[307]},{"name":"RegNtPostLoadKey","features":[307]},{"name":"RegNtPostOpenKey","features":[307]},{"name":"RegNtPostOpenKeyEx","features":[307]},{"name":"RegNtPostQueryKey","features":[307]},{"name":"RegNtPostQueryKeyName","features":[307]},{"name":"RegNtPostQueryKeySecurity","features":[307]},{"name":"RegNtPostQueryMultipleValueKey","features":[307]},{"name":"RegNtPostQueryValueKey","features":[307]},{"name":"RegNtPostRenameKey","features":[307]},{"name":"RegNtPostReplaceKey","features":[307]},{"name":"RegNtPostRestoreKey","features":[307]},{"name":"RegNtPostSaveKey","features":[307]},{"name":"RegNtPostSaveMergedKey","features":[307]},{"name":"RegNtPostSetInformationKey","features":[307]},{"name":"RegNtPostSetKeySecurity","features":[307]},{"name":"RegNtPostSetValueKey","features":[307]},{"name":"RegNtPostUnLoadKey","features":[307]},{"name":"RegNtPreCreateKey","features":[307]},{"name":"RegNtPreCreateKeyEx","features":[307]},{"name":"RegNtPreDeleteKey","features":[307]},{"name":"RegNtPreDeleteValueKey","features":[307]},{"name":"RegNtPreEnumerateKey","features":[307]},{"name":"RegNtPreEnumerateValueKey","features":[307]},{"name":"RegNtPreFlushKey","features":[307]},{"name":"RegNtPreKeyHandleClose","features":[307]},{"name":"RegNtPreLoadKey","features":[307]},{"name":"RegNtPreOpenKey","features":[307]},{"name":"RegNtPreOpenKeyEx","features":[307]},{"name":"RegNtPreQueryKey","features":[307]},{"name":"RegNtPreQueryKeyName","features":[307]},{"name":"RegNtPreQueryKeySecurity","features":[307]},{"name":"RegNtPreQueryMultipleValueKey","features":[307]},{"name":"RegNtPreQueryValueKey","features":[307]},{"name":"RegNtPreRenameKey","features":[307]},{"name":"RegNtPreReplaceKey","features":[307]},{"name":"RegNtPreRestoreKey","features":[307]},{"name":"RegNtPreSaveKey","features":[307]},{"name":"RegNtPreSaveMergedKey","features":[307]},{"name":"RegNtPreSetInformationKey","features":[307]},{"name":"RegNtPreSetKeySecurity","features":[307]},{"name":"RegNtPreSetValueKey","features":[307]},{"name":"RegNtPreUnLoadKey","features":[307]},{"name":"RegNtQueryKey","features":[307]},{"name":"RegNtQueryMultipleValueKey","features":[307]},{"name":"RegNtQueryValueKey","features":[307]},{"name":"RegNtRenameKey","features":[307]},{"name":"RegNtSetInformationKey","features":[307]},{"name":"RegNtSetValueKey","features":[307]},{"name":"RemovalPolicyExpectNoRemoval","features":[307]},{"name":"RemovalPolicyExpectOrderlyRemoval","features":[307]},{"name":"RemovalPolicyExpectSurpriseRemoval","features":[307]},{"name":"RemovalRelations","features":[307]},{"name":"ResourceNeverExclusive","features":[307]},{"name":"ResourceOwnedExclusive","features":[307]},{"name":"ResourceReleaseByOtherThread","features":[307]},{"name":"ResourceTypeEventBuffer","features":[307]},{"name":"ResourceTypeExtendedCounterConfiguration","features":[307]},{"name":"ResourceTypeIdenitificationTag","features":[307]},{"name":"ResourceTypeMax","features":[307]},{"name":"ResourceTypeOverflow","features":[307]},{"name":"ResourceTypeRange","features":[307]},{"name":"ResourceTypeSingle","features":[307]},{"name":"ResultNegative","features":[307]},{"name":"ResultPositive","features":[307]},{"name":"ResultZero","features":[307]},{"name":"RtlAppendUnicodeStringToString","features":[307,305]},{"name":"RtlAppendUnicodeToString","features":[307,305]},{"name":"RtlAreBitsClear","features":[307,305]},{"name":"RtlAreBitsSet","features":[307,305]},{"name":"RtlAssert","features":[307]},{"name":"RtlCheckRegistryKey","features":[307,305]},{"name":"RtlClearAllBits","features":[307]},{"name":"RtlClearBit","features":[307]},{"name":"RtlClearBits","features":[307]},{"name":"RtlCmDecodeMemIoResource","features":[307]},{"name":"RtlCmEncodeMemIoResource","features":[307,305]},{"name":"RtlCompareString","features":[307,305,311]},{"name":"RtlCompareUnicodeString","features":[307,305]},{"name":"RtlCompareUnicodeStrings","features":[307,305]},{"name":"RtlContractHashTable","features":[307,305]},{"name":"RtlCopyBitMap","features":[307]},{"name":"RtlCopyString","features":[307,311]},{"name":"RtlCopyUnicodeString","features":[307,305]},{"name":"RtlCreateHashTable","features":[307,305]},{"name":"RtlCreateHashTableEx","features":[307,305]},{"name":"RtlCreateRegistryKey","features":[307,305]},{"name":"RtlCreateSecurityDescriptor","features":[307,305,308]},{"name":"RtlDelete","features":[306,307]},{"name":"RtlDeleteElementGenericTable","features":[306,307,305,311]},{"name":"RtlDeleteElementGenericTableAvl","features":[307,305]},{"name":"RtlDeleteElementGenericTableAvlEx","features":[307]},{"name":"RtlDeleteHashTable","features":[307]},{"name":"RtlDeleteNoSplay","features":[306,307]},{"name":"RtlDeleteRegistryValue","features":[307,305]},{"name":"RtlDowncaseUnicodeChar","features":[307]},{"name":"RtlEndEnumerationHashTable","features":[307,311]},{"name":"RtlEndStrongEnumerationHashTable","features":[307,311]},{"name":"RtlEndWeakEnumerationHashTable","features":[307,311]},{"name":"RtlEnumerateEntryHashTable","features":[307,311]},{"name":"RtlEnumerateGenericTable","features":[306,307,305,311]},{"name":"RtlEnumerateGenericTableAvl","features":[307,305]},{"name":"RtlEnumerateGenericTableLikeADirectory","features":[307,305]},{"name":"RtlEnumerateGenericTableWithoutSplaying","features":[306,307,311]},{"name":"RtlEnumerateGenericTableWithoutSplayingAvl","features":[307]},{"name":"RtlEqualString","features":[307,305,311]},{"name":"RtlEqualUnicodeString","features":[307,305]},{"name":"RtlExpandHashTable","features":[307,305]},{"name":"RtlExtractBitMap","features":[307]},{"name":"RtlFindClearBits","features":[307]},{"name":"RtlFindClearBitsAndSet","features":[307]},{"name":"RtlFindClearRuns","features":[307,305]},{"name":"RtlFindClosestEncodableLength","features":[307,305]},{"name":"RtlFindFirstRunClear","features":[307]},{"name":"RtlFindLastBackwardRunClear","features":[307]},{"name":"RtlFindLeastSignificantBit","features":[307]},{"name":"RtlFindLongestRunClear","features":[307]},{"name":"RtlFindMostSignificantBit","features":[307]},{"name":"RtlFindNextForwardRunClear","features":[307]},{"name":"RtlFindSetBits","features":[307]},{"name":"RtlFindSetBitsAndClear","features":[307]},{"name":"RtlFreeUTF8String","features":[307,311]},{"name":"RtlGUIDFromString","features":[307,305]},{"name":"RtlGenerateClass5Guid","features":[307,305]},{"name":"RtlGetActiveConsoleId","features":[307]},{"name":"RtlGetCallersAddress","features":[307]},{"name":"RtlGetConsoleSessionForegroundProcessId","features":[307]},{"name":"RtlGetElementGenericTable","features":[306,307,311]},{"name":"RtlGetElementGenericTableAvl","features":[307]},{"name":"RtlGetEnabledExtendedFeatures","features":[307]},{"name":"RtlGetNextEntryHashTable","features":[307,311]},{"name":"RtlGetNtProductType","features":[307,305,311]},{"name":"RtlGetNtSystemRoot","features":[307]},{"name":"RtlGetPersistedStateLocation","features":[307,305]},{"name":"RtlGetSuiteMask","features":[307]},{"name":"RtlGetVersion","features":[307,305,336]},{"name":"RtlHashUnicodeString","features":[307,305]},{"name":"RtlInitEnumerationHashTable","features":[307,305,311]},{"name":"RtlInitStrongEnumerationHashTable","features":[307,305,311]},{"name":"RtlInitUTF8String","features":[307,311]},{"name":"RtlInitUTF8StringEx","features":[307,305,311]},{"name":"RtlInitWeakEnumerationHashTable","features":[307,305,311]},{"name":"RtlInitializeBitMap","features":[307]},{"name":"RtlInitializeGenericTable","features":[306,307,311]},{"name":"RtlInitializeGenericTableAvl","features":[307]},{"name":"RtlInsertElementGenericTable","features":[306,307,305,311]},{"name":"RtlInsertElementGenericTableAvl","features":[307,305]},{"name":"RtlInsertElementGenericTableFull","features":[306,307,305,311]},{"name":"RtlInsertElementGenericTableFullAvl","features":[307,305]},{"name":"RtlInsertEntryHashTable","features":[307,305,311]},{"name":"RtlInt64ToUnicodeString","features":[307,305]},{"name":"RtlIntegerToUnicodeString","features":[307,305]},{"name":"RtlIoDecodeMemIoResource","features":[307]},{"name":"RtlIoEncodeMemIoResource","features":[307,305]},{"name":"RtlIsApiSetImplemented","features":[307,305]},{"name":"RtlIsGenericTableEmpty","features":[306,307,305,311]},{"name":"RtlIsGenericTableEmptyAvl","features":[307,305]},{"name":"RtlIsMultiSessionSku","features":[307,305]},{"name":"RtlIsMultiUsersInSessionSku","features":[307,305]},{"name":"RtlIsNtDdiVersionAvailable","features":[307,305]},{"name":"RtlIsServicePackVersionInstalled","features":[307,305]},{"name":"RtlIsStateSeparationEnabled","features":[307,305]},{"name":"RtlIsUntrustedObject","features":[307,305]},{"name":"RtlLengthSecurityDescriptor","features":[307,308]},{"name":"RtlLookupElementGenericTable","features":[306,307,311]},{"name":"RtlLookupElementGenericTableAvl","features":[307]},{"name":"RtlLookupElementGenericTableFull","features":[306,307,311]},{"name":"RtlLookupElementGenericTableFullAvl","features":[307]},{"name":"RtlLookupEntryHashTable","features":[307,311]},{"name":"RtlLookupFirstMatchingElementGenericTableAvl","features":[307]},{"name":"RtlMapGenericMask","features":[307,308]},{"name":"RtlNormalizeSecurityDescriptor","features":[307,305,308]},{"name":"RtlNumberGenericTableElements","features":[306,307,311]},{"name":"RtlNumberGenericTableElementsAvl","features":[307]},{"name":"RtlNumberOfClearBits","features":[307]},{"name":"RtlNumberOfClearBitsInRange","features":[307]},{"name":"RtlNumberOfSetBits","features":[307]},{"name":"RtlNumberOfSetBitsInRange","features":[307]},{"name":"RtlNumberOfSetBitsUlongPtr","features":[307]},{"name":"RtlPrefetchMemoryNonTemporal","features":[307]},{"name":"RtlPrefixUnicodeString","features":[307,305]},{"name":"RtlQueryRegistryValueWithFallback","features":[307,305]},{"name":"RtlQueryRegistryValues","features":[307,305]},{"name":"RtlQueryValidationRunlevel","features":[307,305]},{"name":"RtlRealPredecessor","features":[306,307]},{"name":"RtlRealSuccessor","features":[306,307]},{"name":"RtlRemoveEntryHashTable","features":[307,305,311]},{"name":"RtlRunOnceBeginInitialize","features":[307,305,340]},{"name":"RtlRunOnceComplete","features":[307,305,340]},{"name":"RtlRunOnceExecuteOnce","features":[307,305,340]},{"name":"RtlRunOnceInitialize","features":[307,340]},{"name":"RtlSetAllBits","features":[307]},{"name":"RtlSetBit","features":[307]},{"name":"RtlSetBits","features":[307]},{"name":"RtlSetDaclSecurityDescriptor","features":[307,305,308]},{"name":"RtlSetSystemGlobalData","features":[307,305,336]},{"name":"RtlSplay","features":[306,307]},{"name":"RtlStringFromGUID","features":[307,305]},{"name":"RtlStronglyEnumerateEntryHashTable","features":[307,311]},{"name":"RtlSubtreePredecessor","features":[306,307]},{"name":"RtlSubtreeSuccessor","features":[306,307]},{"name":"RtlSuffixUnicodeString","features":[307,305]},{"name":"RtlTestBit","features":[307,305]},{"name":"RtlTimeFieldsToTime","features":[307,305]},{"name":"RtlTimeToTimeFields","features":[307]},{"name":"RtlUTF8StringToUnicodeString","features":[307,305,311]},{"name":"RtlUTF8ToUnicodeN","features":[307,305]},{"name":"RtlUnicodeStringToInt64","features":[307,305]},{"name":"RtlUnicodeStringToInteger","features":[307,305]},{"name":"RtlUnicodeStringToUTF8String","features":[307,305,311]},{"name":"RtlUnicodeToUTF8N","features":[307,305]},{"name":"RtlUpcaseUnicodeChar","features":[307]},{"name":"RtlUpcaseUnicodeString","features":[307,305]},{"name":"RtlUpperChar","features":[307]},{"name":"RtlUpperString","features":[307,311]},{"name":"RtlValidRelativeSecurityDescriptor","features":[307,305,308]},{"name":"RtlValidSecurityDescriptor","features":[307,305,308]},{"name":"RtlVerifyVersionInfo","features":[307,305,336]},{"name":"RtlVolumeDeviceToDosName","features":[307,305]},{"name":"RtlWalkFrameChain","features":[307]},{"name":"RtlWeaklyEnumerateEntryHashTable","features":[307,311]},{"name":"RtlWriteRegistryValue","features":[307,305]},{"name":"RtlxAnsiStringToUnicodeSize","features":[307,311]},{"name":"RtlxUnicodeStringToAnsiSize","features":[307,305]},{"name":"SCATTER_GATHER_ELEMENT","features":[307]},{"name":"SCATTER_GATHER_LIST","features":[307]},{"name":"SCI_NOTIFY_TYPE_GUID","features":[307]},{"name":"SDEV_IDENTIFIER_INTERFACE","features":[307]},{"name":"SDEV_IDENTIFIER_INTERFACE_VERSION","features":[307]},{"name":"SEA_NOTIFY_TYPE_GUID","features":[307]},{"name":"SEA_SECTION_GUID","features":[307]},{"name":"SECTION_MAP_EXECUTE","features":[307]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[307]},{"name":"SECTION_MAP_READ","features":[307]},{"name":"SECTION_MAP_WRITE","features":[307]},{"name":"SECTION_QUERY","features":[307]},{"name":"SECURE_DRIVER_INTERFACE","features":[306,307]},{"name":"SECURE_DRIVER_INTERFACE_VERSION","features":[307]},{"name":"SECURE_DRIVER_PROCESS_DEREFERENCE","features":[306,307]},{"name":"SECURE_DRIVER_PROCESS_REFERENCE","features":[306,307]},{"name":"SECURE_POOL_FLAGS_FREEABLE","features":[307]},{"name":"SECURE_POOL_FLAGS_MODIFIABLE","features":[307]},{"name":"SECURE_POOL_FLAGS_NONE","features":[307]},{"name":"SECURE_SECTION_ALLOW_PARTIAL_MDL","features":[307]},{"name":"SECURITY_CONTEXT_TRACKING_MODE","features":[307]},{"name":"SECURITY_OPERATION_CODE","features":[307]},{"name":"SEC_LARGE_PAGES","features":[307]},{"name":"SEH_VALIDATION_POLICY_DEFER","features":[307]},{"name":"SEH_VALIDATION_POLICY_OFF","features":[307]},{"name":"SEH_VALIDATION_POLICY_ON","features":[307]},{"name":"SEH_VALIDATION_POLICY_TELEMETRY","features":[307]},{"name":"SEI_NOTIFY_TYPE_GUID","features":[307]},{"name":"SEI_SECTION_GUID","features":[307]},{"name":"SEMAPHORE_QUERY_STATE","features":[307]},{"name":"SET_D3COLD_SUPPORT","features":[307,305]},{"name":"SET_VIRTUAL_DEVICE_DATA","features":[307]},{"name":"SE_ASSIGNPRIMARYTOKEN_PRIVILEGE","features":[307]},{"name":"SE_AUDIT_PRIVILEGE","features":[307]},{"name":"SE_BACKUP_PRIVILEGE","features":[307]},{"name":"SE_CHANGE_NOTIFY_PRIVILEGE","features":[307]},{"name":"SE_CREATE_GLOBAL_PRIVILEGE","features":[307]},{"name":"SE_CREATE_PAGEFILE_PRIVILEGE","features":[307]},{"name":"SE_CREATE_PERMANENT_PRIVILEGE","features":[307]},{"name":"SE_CREATE_SYMBOLIC_LINK_PRIVILEGE","features":[307]},{"name":"SE_CREATE_TOKEN_PRIVILEGE","features":[307]},{"name":"SE_DEBUG_PRIVILEGE","features":[307]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_PRIVILEGE","features":[307]},{"name":"SE_ENABLE_DELEGATION_PRIVILEGE","features":[307]},{"name":"SE_IMAGE_TYPE","features":[307]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_FUNCTION","features":[307,305]},{"name":"SE_IMAGE_VERIFICATION_CALLBACK_TYPE","features":[307]},{"name":"SE_IMPERSONATE_PRIVILEGE","features":[307]},{"name":"SE_INCREASE_QUOTA_PRIVILEGE","features":[307]},{"name":"SE_INC_BASE_PRIORITY_PRIVILEGE","features":[307]},{"name":"SE_INC_WORKING_SET_PRIVILEGE","features":[307]},{"name":"SE_LOAD_DRIVER_PRIVILEGE","features":[307]},{"name":"SE_LOCK_MEMORY_PRIVILEGE","features":[307]},{"name":"SE_MACHINE_ACCOUNT_PRIVILEGE","features":[307]},{"name":"SE_MANAGE_VOLUME_PRIVILEGE","features":[307]},{"name":"SE_MAX_WELL_KNOWN_PRIVILEGE","features":[307]},{"name":"SE_MIN_WELL_KNOWN_PRIVILEGE","features":[307]},{"name":"SE_PROF_SINGLE_PROCESS_PRIVILEGE","features":[307]},{"name":"SE_RELABEL_PRIVILEGE","features":[307]},{"name":"SE_REMOTE_SHUTDOWN_PRIVILEGE","features":[307]},{"name":"SE_RESTORE_PRIVILEGE","features":[307]},{"name":"SE_SECURITY_PRIVILEGE","features":[307]},{"name":"SE_SHUTDOWN_PRIVILEGE","features":[307]},{"name":"SE_SYNC_AGENT_PRIVILEGE","features":[307]},{"name":"SE_SYSTEMTIME_PRIVILEGE","features":[307]},{"name":"SE_SYSTEM_ENVIRONMENT_PRIVILEGE","features":[307]},{"name":"SE_SYSTEM_PROFILE_PRIVILEGE","features":[307]},{"name":"SE_TAKE_OWNERSHIP_PRIVILEGE","features":[307]},{"name":"SE_TCB_PRIVILEGE","features":[307]},{"name":"SE_TIME_ZONE_PRIVILEGE","features":[307]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_PRIVILEGE","features":[307]},{"name":"SE_UNDOCK_PRIVILEGE","features":[307]},{"name":"SE_UNSOLICITED_INPUT_PRIVILEGE","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_CLEAR_GLOBAL_DATA_FLAG","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_CONSOLE_BROKER_ENABLED_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_DYNAMIC_PROC_ENABLED_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_ELEVATION_ENABLED_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_ERROR_PORT_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_INSTALLER_DETECT_ENABLED_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_LKG_ENABLED_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_MULTIUSERS_IN_SESSION_SKU_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_MULTI_SESSION_SKU_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_A73_ERRATA","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_DISABLE_32BIT","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_ENABLED","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_HV_PAGE","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_LFENCE","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_MFENCE","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_QPC_BYPASS_USE_RDTSCP","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_SECURE_BOOT_ENABLED_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_SET_GLOBAL_DATA_FLAG","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_STATE_SEPARATION_ENABLED_V","features":[307]},{"name":"SHARED_GLOBAL_FLAGS_VIRT_ENABLED_V","features":[307]},{"name":"SHARE_ACCESS","features":[307]},{"name":"SHORT_LEAST_SIGNIFICANT_BIT","features":[307]},{"name":"SHORT_MOST_SIGNIFICANT_BIT","features":[307]},{"name":"SIGNAL_REG_VALUE","features":[307]},{"name":"SILO_CONTEXT_CLEANUP_CALLBACK","features":[307]},{"name":"SILO_MONITOR_CREATE_CALLBACK","features":[306,307,305]},{"name":"SILO_MONITOR_REGISTRATION","features":[306,307,305]},{"name":"SILO_MONITOR_REGISTRATION_VERSION","features":[307]},{"name":"SILO_MONITOR_TERMINATE_CALLBACK","features":[306,307]},{"name":"SINGLE_GROUP_LEGACY_API","features":[307]},{"name":"SL_ALLOW_RAW_MOUNT","features":[307]},{"name":"SL_BYPASS_ACCESS_CHECK","features":[307]},{"name":"SL_BYPASS_IO","features":[307]},{"name":"SL_CASE_SENSITIVE","features":[307]},{"name":"SL_ERROR_RETURNED","features":[307]},{"name":"SL_EXCLUSIVE_LOCK","features":[307]},{"name":"SL_FAIL_IMMEDIATELY","features":[307]},{"name":"SL_FORCE_ACCESS_CHECK","features":[307]},{"name":"SL_FORCE_ASYNCHRONOUS","features":[307]},{"name":"SL_FORCE_DIRECT_WRITE","features":[307]},{"name":"SL_FT_SEQUENTIAL_WRITE","features":[307]},{"name":"SL_IGNORE_READONLY_ATTRIBUTE","features":[307]},{"name":"SL_INDEX_SPECIFIED","features":[307]},{"name":"SL_INFO_FORCE_ACCESS_CHECK","features":[307]},{"name":"SL_INFO_IGNORE_READONLY_ATTRIBUTE","features":[307]},{"name":"SL_INVOKE_ON_CANCEL","features":[307]},{"name":"SL_INVOKE_ON_ERROR","features":[307]},{"name":"SL_INVOKE_ON_SUCCESS","features":[307]},{"name":"SL_KEY_SPECIFIED","features":[307]},{"name":"SL_NO_CURSOR_UPDATE","features":[307]},{"name":"SL_OPEN_PAGING_FILE","features":[307]},{"name":"SL_OPEN_TARGET_DIRECTORY","features":[307]},{"name":"SL_OVERRIDE_VERIFY_VOLUME","features":[307]},{"name":"SL_PENDING_RETURNED","features":[307]},{"name":"SL_PERSISTENT_MEMORY_FIXED_MAPPING","features":[307]},{"name":"SL_QUERY_DIRECTORY_MASK","features":[307]},{"name":"SL_READ_ACCESS_GRANTED","features":[307]},{"name":"SL_REALTIME_STREAM","features":[307]},{"name":"SL_RESTART_SCAN","features":[307]},{"name":"SL_RETURN_ON_DISK_ENTRIES_ONLY","features":[307]},{"name":"SL_RETURN_SINGLE_ENTRY","features":[307]},{"name":"SL_STOP_ON_SYMLINK","features":[307]},{"name":"SL_WATCH_TREE","features":[307]},{"name":"SL_WRITE_ACCESS_GRANTED","features":[307]},{"name":"SL_WRITE_THROUGH","features":[307]},{"name":"SOC_SUBSYSTEM_FAILURE_DETAILS","features":[307]},{"name":"SOC_SUBSYSTEM_TYPE","features":[307]},{"name":"SOC_SUBSYS_AUDIO_DSP","features":[307]},{"name":"SOC_SUBSYS_COMPUTE_DSP","features":[307]},{"name":"SOC_SUBSYS_SECURE_PROC","features":[307]},{"name":"SOC_SUBSYS_SENSORS","features":[307]},{"name":"SOC_SUBSYS_VENDOR_DEFINED","features":[307]},{"name":"SOC_SUBSYS_WIRELESS_MODEM","features":[307]},{"name":"SOC_SUBSYS_WIRELSS_CONNECTIVITY","features":[307]},{"name":"SSINFO_FLAGS_ALIGNED_DEVICE","features":[307]},{"name":"SSINFO_FLAGS_BYTE_ADDRESSABLE","features":[307]},{"name":"SSINFO_FLAGS_NO_SEEK_PENALTY","features":[307]},{"name":"SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[307]},{"name":"SSINFO_FLAGS_TRIM_ENABLED","features":[307]},{"name":"SSINFO_OFFSET_UNKNOWN","features":[307]},{"name":"STATE_LOCATION_TYPE","features":[307]},{"name":"SUBSYSTEM_INFORMATION_TYPE","features":[307]},{"name":"SYMBOLIC_LINK_QUERY","features":[307]},{"name":"SYMBOLIC_LINK_SET","features":[307]},{"name":"SYSTEM_CALL_INT_2E","features":[307]},{"name":"SYSTEM_CALL_SYSCALL","features":[307]},{"name":"SYSTEM_FIRMWARE_TABLE_ACTION","features":[307]},{"name":"SYSTEM_FIRMWARE_TABLE_HANDLER","features":[307,305]},{"name":"SYSTEM_FIRMWARE_TABLE_INFORMATION","features":[307]},{"name":"SYSTEM_POWER_CONDITION","features":[307]},{"name":"SYSTEM_POWER_STATE_CONTEXT","features":[307]},{"name":"ScsiAdapter","features":[307]},{"name":"SeAccessCheck","features":[306,307,305,308]},{"name":"SeAssignSecurity","features":[306,307,305,308]},{"name":"SeAssignSecurityEx","features":[306,307,305,308]},{"name":"SeCaptureSubjectContext","features":[306,307,308]},{"name":"SeComputeAutoInheritByObjectType","features":[307,308]},{"name":"SeDeassignSecurity","features":[307,305,308]},{"name":"SeEtwWriteKMCveEvent","features":[307,305]},{"name":"SeImageTypeDriver","features":[307]},{"name":"SeImageTypeDynamicCodeFile","features":[307]},{"name":"SeImageTypeElamDriver","features":[307]},{"name":"SeImageTypeMax","features":[307]},{"name":"SeImageTypePlatformSecureFile","features":[307]},{"name":"SeImageVerificationCallbackInformational","features":[307]},{"name":"SeLockSubjectContext","features":[306,307,308]},{"name":"SeRegisterImageVerificationCallback","features":[307,305]},{"name":"SeReleaseSubjectContext","features":[306,307,308]},{"name":"SeReportSecurityEvent","features":[307,305,326]},{"name":"SeSetAuditParameter","features":[307,305,326]},{"name":"SeSinglePrivilegeCheck","features":[307,305]},{"name":"SeUnlockSubjectContext","features":[306,307,308]},{"name":"SeUnregisterImageVerificationCallback","features":[307]},{"name":"SeValidSecurityDescriptor","features":[307,305,308]},{"name":"SecondaryCache","features":[307]},{"name":"SecondaryDcache","features":[307]},{"name":"SecondaryIcache","features":[307]},{"name":"SequentialAccess","features":[307]},{"name":"SerialController","features":[307]},{"name":"SetSecurityDescriptor","features":[307]},{"name":"SgiInternalConfiguration","features":[307]},{"name":"SharedInterruptTime","features":[307]},{"name":"SharedSystemTime","features":[307]},{"name":"SharedTickCount","features":[307]},{"name":"SingleBusRelations","features":[307]},{"name":"SlotEmpty","features":[307]},{"name":"StandardDesign","features":[307]},{"name":"StopCompletion","features":[307]},{"name":"SubsystemInformationTypeWSL","features":[307]},{"name":"SubsystemInformationTypeWin32","features":[307]},{"name":"SuperCriticalWorkQueue","features":[307]},{"name":"Suspended","features":[307]},{"name":"SystemFirmwareTable_Enumerate","features":[307]},{"name":"SystemFirmwareTable_Get","features":[307]},{"name":"SystemMemory","features":[307]},{"name":"SystemMemoryPartitionDedicatedMemoryInformation","features":[307]},{"name":"SystemMemoryPartitionInformation","features":[307]},{"name":"SystemMemoryPartitionOpenDedicatedMemory","features":[307]},{"name":"SystemPowerState","features":[307]},{"name":"TABLE_SEARCH_RESULT","features":[307]},{"name":"TARGET_DEVICE_REMOVAL_NOTIFICATION","features":[306,309,307,305,308,310,311,312]},{"name":"THREAD_ALERT","features":[307]},{"name":"THREAD_CSWITCH_PMU_DISABLE","features":[307]},{"name":"THREAD_CSWITCH_PMU_ENABLE","features":[307]},{"name":"THREAD_GET_CONTEXT","features":[307]},{"name":"THREAD_WAIT_OBJECTS","features":[307]},{"name":"TIMER_EXPIRED_INDEX_BITS","features":[307]},{"name":"TIMER_PROCESSOR_INDEX_BITS","features":[307]},{"name":"TIMER_SET_COALESCABLE_TIMER_INFO","features":[307,305]},{"name":"TIMER_TOLERABLE_DELAY_BITS","features":[307]},{"name":"TIME_FIELDS","features":[307]},{"name":"TRACE_INFORMATION_CLASS","features":[307]},{"name":"TRANSLATE_BUS_ADDRESS","features":[307,305]},{"name":"TRANSLATOR_INTERFACE","features":[306,309,307,305,308,310,311,312]},{"name":"TREE_CONNECT_NO_CLIENT_BUFFERING","features":[307]},{"name":"TREE_CONNECT_WRITE_THROUGH","features":[307]},{"name":"TXF_MINIVERSION_DEFAULT_VIEW","features":[307]},{"name":"TXN_PARAMETER_BLOCK","features":[307]},{"name":"TableEmptyTree","features":[307]},{"name":"TableFoundNode","features":[307]},{"name":"TableInsertAsLeft","features":[307]},{"name":"TableInsertAsRight","features":[307]},{"name":"TapeController","features":[307]},{"name":"TapePeripheral","features":[307]},{"name":"TargetDeviceRelation","features":[307]},{"name":"TcAdapter","features":[307]},{"name":"TerminalPeripheral","features":[307]},{"name":"TlbMatchConflict","features":[307]},{"name":"TmCommitComplete","features":[306,307,305]},{"name":"TmCommitEnlistment","features":[306,307,305]},{"name":"TmCommitTransaction","features":[306,307,305]},{"name":"TmCreateEnlistment","features":[306,307,305]},{"name":"TmDereferenceEnlistmentKey","features":[306,307,305]},{"name":"TmEnableCallbacks","features":[306,307,305]},{"name":"TmGetTransactionId","features":[306,307]},{"name":"TmInitializeTransactionManager","features":[307,305]},{"name":"TmIsTransactionActive","features":[306,307,305]},{"name":"TmPrePrepareComplete","features":[306,307,305]},{"name":"TmPrePrepareEnlistment","features":[306,307,305]},{"name":"TmPrepareComplete","features":[306,307,305]},{"name":"TmPrepareEnlistment","features":[306,307,305]},{"name":"TmPropagationComplete","features":[306,307,305]},{"name":"TmPropagationFailed","features":[306,307,305]},{"name":"TmReadOnlyEnlistment","features":[306,307,305]},{"name":"TmRecoverEnlistment","features":[306,307,305]},{"name":"TmRecoverResourceManager","features":[306,307,305]},{"name":"TmRecoverTransactionManager","features":[306,307,305]},{"name":"TmReferenceEnlistmentKey","features":[306,307,305]},{"name":"TmRenameTransactionManager","features":[307,305]},{"name":"TmRequestOutcomeEnlistment","features":[306,307,305]},{"name":"TmRollbackComplete","features":[306,307,305]},{"name":"TmRollbackEnlistment","features":[306,307,305]},{"name":"TmRollbackTransaction","features":[306,307,305]},{"name":"TmSinglePhaseReject","features":[306,307,305]},{"name":"TraceEnableFlagsClass","features":[307]},{"name":"TraceEnableLevelClass","features":[307]},{"name":"TraceHandleByNameClass","features":[307]},{"name":"TraceHandleClass","features":[307]},{"name":"TraceIdClass","features":[307]},{"name":"TraceInformationClassReserved1","features":[307]},{"name":"TraceInformationClassReserved2","features":[307]},{"name":"TraceSessionSettingsClass","features":[307]},{"name":"TranslateChildToParent","features":[307]},{"name":"TranslateParentToChild","features":[307]},{"name":"TranslationFault","features":[307]},{"name":"TransportRelations","features":[307]},{"name":"TurboChannel","features":[307]},{"name":"TypeA","features":[307]},{"name":"TypeB","features":[307]},{"name":"TypeC","features":[307]},{"name":"TypeF","features":[307]},{"name":"UADDRESS_BASE","features":[307]},{"name":"UnsupportedUpstreamTransaction","features":[307]},{"name":"UserMode","features":[307]},{"name":"UserNotPresent","features":[307]},{"name":"UserPresent","features":[307]},{"name":"UserRequest","features":[307]},{"name":"UserUnknown","features":[307]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES1","features":[307]},{"name":"VIRTUAL_CHANNEL_CAPABILITIES2","features":[307]},{"name":"VIRTUAL_CHANNEL_CONTROL","features":[307]},{"name":"VIRTUAL_CHANNEL_STATUS","features":[307]},{"name":"VIRTUAL_RESOURCE","features":[307]},{"name":"VIRTUAL_RESOURCE_CAPABILITY","features":[307]},{"name":"VIRTUAL_RESOURCE_CONTROL","features":[307]},{"name":"VIRTUAL_RESOURCE_STATUS","features":[307]},{"name":"VMEBus","features":[307]},{"name":"VMEConfiguration","features":[307]},{"name":"VM_COUNTERS","features":[307]},{"name":"VM_COUNTERS_EX","features":[307]},{"name":"VM_COUNTERS_EX2","features":[307]},{"name":"VPB_DIRECT_WRITES_ALLOWED","features":[307]},{"name":"VPB_DISMOUNTING","features":[307]},{"name":"VPB_FLAGS_BYPASSIO_BLOCKED","features":[307]},{"name":"VPB_LOCKED","features":[307]},{"name":"VPB_MOUNTED","features":[307]},{"name":"VPB_PERSISTENT","features":[307]},{"name":"VPB_RAW_MOUNT","features":[307]},{"name":"VPB_REMOVE_PENDING","features":[307]},{"name":"Vmcs","features":[307]},{"name":"VslCreateSecureSection","features":[306,307,305]},{"name":"VslDeleteSecureSection","features":[307,305]},{"name":"WAIT_CONTEXT_BLOCK","features":[306,309,307,305,308,310,311,312]},{"name":"WCS_RAS_REGISTER_NAME_MAX_LENGTH","features":[307]},{"name":"WDM_MAJORVERSION","features":[307]},{"name":"WDM_MINORVERSION","features":[307]},{"name":"WHEA128A","features":[307]},{"name":"WHEAP_ACPI_TIMEOUT_EVENT","features":[307]},{"name":"WHEAP_ADD_REMOVE_ERROR_SOURCE_EVENT","features":[307,305,334]},{"name":"WHEAP_ATTEMPT_RECOVERY_EVENT","features":[307,305]},{"name":"WHEAP_BAD_HEST_NOTIFY_DATA_EVENT","features":[307,334]},{"name":"WHEAP_CLEARED_POISON_EVENT","features":[307]},{"name":"WHEAP_CMCI_IMPLEMENTED_EVENT","features":[307,305]},{"name":"WHEAP_CMCI_INITERR_EVENT","features":[307]},{"name":"WHEAP_CMCI_RESTART_EVENT","features":[307]},{"name":"WHEAP_CREATE_GENERIC_RECORD_EVENT","features":[307,305]},{"name":"WHEAP_DEFERRED_EVENT","features":[307,311]},{"name":"WHEAP_DEVICE_DRV_EVENT","features":[307]},{"name":"WHEAP_DPC_ERROR_EVENT","features":[307]},{"name":"WHEAP_DPC_ERROR_EVENT_TYPE","features":[307]},{"name":"WHEAP_DROPPED_CORRECTED_ERROR_EVENT","features":[307,334]},{"name":"WHEAP_EDPC_ENABLED_EVENT","features":[307,305]},{"name":"WHEAP_ERROR_CLEARED_EVENT","features":[307]},{"name":"WHEAP_ERROR_RECORD_EVENT","features":[307]},{"name":"WHEAP_ERR_SRC_ARRAY_INVALID_EVENT","features":[307]},{"name":"WHEAP_ERR_SRC_INVALID_EVENT","features":[307,305,334]},{"name":"WHEAP_FOUND_ERROR_IN_BANK_EVENT","features":[307]},{"name":"WHEAP_GENERIC_ERR_MEM_MAP_EVENT","features":[307]},{"name":"WHEAP_OSC_IMPLEMENTED","features":[307,305]},{"name":"WHEAP_PCIE_CONFIG_INFO","features":[307]},{"name":"WHEAP_PCIE_OVERRIDE_INFO","features":[307]},{"name":"WHEAP_PCIE_READ_OVERRIDES_ERR","features":[307,305]},{"name":"WHEAP_PFA_MEMORY_OFFLINED","features":[307,305]},{"name":"WHEAP_PFA_MEMORY_POLICY","features":[307,305]},{"name":"WHEAP_PFA_MEMORY_REMOVE_MONITOR","features":[307]},{"name":"WHEAP_PFA_OFFLINE_DECISION_TYPE","features":[307]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_CORRUPT","features":[307]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_FULL_EVENT","features":[307]},{"name":"WHEAP_PLUGIN_DEFECT_LIST_UEFI_VAR_FAILED","features":[307]},{"name":"WHEAP_PLUGIN_PFA_EVENT","features":[307,305]},{"name":"WHEAP_PROCESS_EINJ_EVENT","features":[307,305]},{"name":"WHEAP_PROCESS_HEST_EVENT","features":[307,305]},{"name":"WHEAP_PSHED_INJECT_ERROR","features":[307,305]},{"name":"WHEAP_PSHED_PLUGIN_REGISTER","features":[307,305]},{"name":"WHEAP_ROW_FAILURE_EVENT","features":[307]},{"name":"WHEAP_SPURIOUS_AER_EVENT","features":[307]},{"name":"WHEAP_STARTED_REPORT_HW_ERROR","features":[307,334]},{"name":"WHEAP_STUCK_ERROR_EVENT","features":[307]},{"name":"WHEA_ACPI_HEADER","features":[307]},{"name":"WHEA_AMD_EXTENDED_REGISTERS","features":[307]},{"name":"WHEA_AMD_EXT_REG_NUM","features":[307]},{"name":"WHEA_ARMV8_AARCH32_GPRS","features":[307]},{"name":"WHEA_ARMV8_AARCH64_EL3_CSR","features":[307]},{"name":"WHEA_ARMV8_AARCH64_GPRS","features":[307]},{"name":"WHEA_ARM_AARCH32_EL1_CSR","features":[307]},{"name":"WHEA_ARM_AARCH32_EL2_CSR","features":[307]},{"name":"WHEA_ARM_AARCH32_SECURE_CSR","features":[307]},{"name":"WHEA_ARM_AARCH64_EL1_CSR","features":[307]},{"name":"WHEA_ARM_AARCH64_EL2_CSR","features":[307]},{"name":"WHEA_ARM_BUS_ERROR","features":[307]},{"name":"WHEA_ARM_BUS_ERROR_VALID_BITS","features":[307]},{"name":"WHEA_ARM_CACHE_ERROR","features":[307]},{"name":"WHEA_ARM_CACHE_ERROR_VALID_BITS","features":[307]},{"name":"WHEA_ARM_MISC_CSR","features":[307]},{"name":"WHEA_ARM_PROCESSOR_ERROR","features":[307]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER","features":[307]},{"name":"WHEA_ARM_PROCESSOR_ERROR_CONTEXT_INFORMATION_HEADER_FLAGS","features":[307]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION","features":[307]},{"name":"WHEA_ARM_PROCESSOR_ERROR_INFORMATION_VALID_BITS","features":[307]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION","features":[307]},{"name":"WHEA_ARM_PROCESSOR_ERROR_SECTION_VALID_BITS","features":[307]},{"name":"WHEA_ARM_TLB_ERROR","features":[307]},{"name":"WHEA_ARM_TLB_ERROR_VALID_BITS","features":[307]},{"name":"WHEA_AZCC_ROOT_BUS_ERR_EVENT","features":[307,305]},{"name":"WHEA_AZCC_ROOT_BUS_LIST_EVENT","features":[307]},{"name":"WHEA_AZCC_SET_POISON_EVENT","features":[307,305]},{"name":"WHEA_BUGCHECK_RECOVERY_LOG_TYPE","features":[307]},{"name":"WHEA_BUSCHECK_GUID","features":[307]},{"name":"WHEA_CACHECHECK_GUID","features":[307]},{"name":"WHEA_CPU_VENDOR","features":[307]},{"name":"WHEA_DEVICE_ERROR_SUMMARY_GUID","features":[307]},{"name":"WHEA_DPC_CAPABILITY_SECTION_GUID","features":[307]},{"name":"WHEA_ERROR_INJECTION_CAPABILITIES","features":[307]},{"name":"WHEA_ERROR_LOG_ENTRY_VERSION","features":[307]},{"name":"WHEA_ERROR_PACKET_DATA_FORMAT","features":[307]},{"name":"WHEA_ERROR_PACKET_FLAGS","features":[307]},{"name":"WHEA_ERROR_PACKET_SECTION_GUID","features":[307]},{"name":"WHEA_ERROR_PACKET_V1","features":[307,334]},{"name":"WHEA_ERROR_PACKET_V1_VERSION","features":[307]},{"name":"WHEA_ERROR_PACKET_V2","features":[307,334]},{"name":"WHEA_ERROR_PACKET_V2_VERSION","features":[307]},{"name":"WHEA_ERROR_PACKET_VERSION","features":[307]},{"name":"WHEA_ERROR_PKT_VERSION","features":[307]},{"name":"WHEA_ERROR_RECORD","features":[307]},{"name":"WHEA_ERROR_RECORD_FLAGS_DEVICE_DRIVER","features":[307]},{"name":"WHEA_ERROR_RECORD_FLAGS_PREVIOUSERROR","features":[307]},{"name":"WHEA_ERROR_RECORD_FLAGS_RECOVERED","features":[307]},{"name":"WHEA_ERROR_RECORD_FLAGS_SIMULATED","features":[307]},{"name":"WHEA_ERROR_RECORD_HEADER","features":[307]},{"name":"WHEA_ERROR_RECORD_HEADER_FLAGS","features":[307]},{"name":"WHEA_ERROR_RECORD_HEADER_VALIDBITS","features":[307]},{"name":"WHEA_ERROR_RECORD_REVISION","features":[307]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR","features":[307]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_FLAGS","features":[307]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_REVISION","features":[307]},{"name":"WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS","features":[307]},{"name":"WHEA_ERROR_RECORD_SIGNATURE_END","features":[307]},{"name":"WHEA_ERROR_RECORD_VALID_PARTITIONID","features":[307]},{"name":"WHEA_ERROR_RECORD_VALID_PLATFORMID","features":[307]},{"name":"WHEA_ERROR_RECORD_VALID_TIMESTAMP","features":[307]},{"name":"WHEA_ERROR_RECOVERY_INFO_SECTION","features":[307,305]},{"name":"WHEA_ERROR_SEVERITY","features":[307]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION","features":[307,305]},{"name":"WHEA_ERROR_SOURCE_CORRECT","features":[307,305]},{"name":"WHEA_ERROR_SOURCE_CREATE_RECORD","features":[307,305]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE","features":[307,305]},{"name":"WHEA_ERROR_SOURCE_OVERRIDE_SETTINGS","features":[307,334]},{"name":"WHEA_ERROR_SOURCE_RECOVER","features":[307,305]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE","features":[307]},{"name":"WHEA_ERROR_STATUS","features":[307]},{"name":"WHEA_ERROR_TEXT_LEN","features":[307]},{"name":"WHEA_ERROR_TYPE","features":[307]},{"name":"WHEA_ERR_SRC_OVERRIDE_FLAG","features":[307]},{"name":"WHEA_ETW_OVERFLOW_EVENT","features":[307]},{"name":"WHEA_EVENT_LOG_ENTRY","features":[307]},{"name":"WHEA_EVENT_LOG_ENTRY_FLAGS","features":[307]},{"name":"WHEA_EVENT_LOG_ENTRY_HEADER","features":[307]},{"name":"WHEA_EVENT_LOG_ENTRY_ID","features":[307]},{"name":"WHEA_EVENT_LOG_ENTRY_TYPE","features":[307]},{"name":"WHEA_FAILED_ADD_DEFECT_LIST_EVENT","features":[307]},{"name":"WHEA_FIRMWARE_ERROR_RECORD_REFERENCE","features":[307]},{"name":"WHEA_FIRMWARE_RECORD_TYPE_IPFSAL","features":[307]},{"name":"WHEA_GENERIC_ENTRY_TEXT_LEN","features":[307]},{"name":"WHEA_GENERIC_ENTRY_V2_VERSION","features":[307]},{"name":"WHEA_GENERIC_ENTRY_VERSION","features":[307]},{"name":"WHEA_GENERIC_ERROR","features":[307]},{"name":"WHEA_GENERIC_ERROR_BLOCKSTATUS","features":[307]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V1","features":[307]},{"name":"WHEA_GENERIC_ERROR_DATA_ENTRY_V2","features":[307]},{"name":"WHEA_INVALID_ERR_SRC_ID","features":[307]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAGS","features":[307]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_NOTIFYALL","features":[307]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PAGEOFFLINED","features":[307]},{"name":"WHEA_IN_USE_PAGE_NOTIFY_FLAG_PLATFORMDIRECTED","features":[307]},{"name":"WHEA_MAX_LOG_DATA_LEN","features":[307]},{"name":"WHEA_MEMERRTYPE_INVALIDADDRESS","features":[307]},{"name":"WHEA_MEMERRTYPE_MASTERABORT","features":[307]},{"name":"WHEA_MEMERRTYPE_MEMORYSPARING","features":[307]},{"name":"WHEA_MEMERRTYPE_MIRRORBROKEN","features":[307]},{"name":"WHEA_MEMERRTYPE_MULTIBITECC","features":[307]},{"name":"WHEA_MEMERRTYPE_MULTISYMCHIPKILL","features":[307]},{"name":"WHEA_MEMERRTYPE_NOERROR","features":[307]},{"name":"WHEA_MEMERRTYPE_PARITYERROR","features":[307]},{"name":"WHEA_MEMERRTYPE_SINGLEBITECC","features":[307]},{"name":"WHEA_MEMERRTYPE_SINGLESYMCHIPKILL","features":[307]},{"name":"WHEA_MEMERRTYPE_TARGETABORT","features":[307]},{"name":"WHEA_MEMERRTYPE_UNKNOWN","features":[307]},{"name":"WHEA_MEMERRTYPE_WATCHDOGTIMEOUT","features":[307]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_DATA","features":[307]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_HEADER","features":[307]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION","features":[307]},{"name":"WHEA_MEMORY_CORRECTABLE_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_MEMORY_ERROR_SECTION","features":[307]},{"name":"WHEA_MEMORY_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_MEMORY_THROTTLE_SUMMARY_FAILED_EVENT","features":[307,305]},{"name":"WHEA_MSCHECK_GUID","features":[307]},{"name":"WHEA_MSR_DUMP_SECTION","features":[307]},{"name":"WHEA_NMI_ERROR_SECTION","features":[307]},{"name":"WHEA_NMI_ERROR_SECTION_FLAGS","features":[307]},{"name":"WHEA_OFFLINE_DONE_EVENT","features":[307]},{"name":"WHEA_PACKET_LOG_DATA","features":[307]},{"name":"WHEA_PCIEXPRESS_BRIDGE_CONTROL_STATUS","features":[307]},{"name":"WHEA_PCIEXPRESS_COMMAND_STATUS","features":[307]},{"name":"WHEA_PCIEXPRESS_DEVICE_ID","features":[307]},{"name":"WHEA_PCIEXPRESS_DEVICE_TYPE","features":[307]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION","features":[307]},{"name":"WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_PCIEXPRESS_VERSION","features":[307]},{"name":"WHEA_PCIE_ADDRESS","features":[307]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES","features":[307]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_DEVICES_VALIDBITS","features":[307]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION","features":[307]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_COUNT_SIZE","features":[307]},{"name":"WHEA_PCIE_CORRECTABLE_ERROR_SECTION_HEADER","features":[307]},{"name":"WHEA_PCIXBUS_COMMAND","features":[307]},{"name":"WHEA_PCIXBUS_ERROR_SECTION","features":[307]},{"name":"WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_PCIXBUS_ID","features":[307]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION","features":[307]},{"name":"WHEA_PCIXDEVICE_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_PCIXDEVICE_ID","features":[307]},{"name":"WHEA_PCIXDEVICE_REGISTER_PAIR","features":[307]},{"name":"WHEA_PCI_RECOVERY_SECTION","features":[307,305]},{"name":"WHEA_PCI_RECOVERY_SIGNAL","features":[307]},{"name":"WHEA_PCI_RECOVERY_STATUS","features":[307]},{"name":"WHEA_PERSISTENCE_INFO","features":[307]},{"name":"WHEA_PFA_REMOVE_TRIGGER","features":[307]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V1","features":[307]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_V2","features":[307]},{"name":"WHEA_PLUGIN_REGISTRATION_PACKET_VERSION","features":[307]},{"name":"WHEA_PMEM_ERROR_SECTION","features":[307]},{"name":"WHEA_PMEM_ERROR_SECTION_LOCATION_INFO_SIZE","features":[307]},{"name":"WHEA_PMEM_ERROR_SECTION_MAX_PAGES","features":[307]},{"name":"WHEA_PMEM_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_PMEM_PAGE_RANGE","features":[307]},{"name":"WHEA_PROCESSOR_FAMILY_INFO","features":[307]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION","features":[307]},{"name":"WHEA_PROCESSOR_GENERIC_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_PSHED_PI_CPU_BUSES_INIT_FAILED_EVENT","features":[307,305]},{"name":"WHEA_PSHED_PI_TRACE_EVENT","features":[307]},{"name":"WHEA_PSHED_PLUGIN_CALLBACKS","features":[307,305,334]},{"name":"WHEA_PSHED_PLUGIN_DIMM_MISMATCH","features":[307]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_ERRORS","features":[307]},{"name":"WHEA_PSHED_PLUGIN_ENABLE_NOTIFY_FAILED_EVENT","features":[307]},{"name":"WHEA_PSHED_PLUGIN_HEARTBEAT","features":[307]},{"name":"WHEA_PSHED_PLUGIN_INIT_FAILED_EVENT","features":[307,305]},{"name":"WHEA_PSHED_PLUGIN_LOAD_EVENT","features":[307]},{"name":"WHEA_PSHED_PLUGIN_PLATFORM_SUPPORT_EVENT","features":[307,305]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V1","features":[307,305,334]},{"name":"WHEA_PSHED_PLUGIN_REGISTRATION_PACKET_V2","features":[307,305,334]},{"name":"WHEA_PSHED_PLUGIN_UNLOAD_EVENT","features":[307]},{"name":"WHEA_RAW_DATA_FORMAT","features":[307]},{"name":"WHEA_RECORD_CREATOR_GUID","features":[307]},{"name":"WHEA_RECOVERY_ACTION","features":[307]},{"name":"WHEA_RECOVERY_CONTEXT","features":[307,305]},{"name":"WHEA_RECOVERY_CONTEXT_ERROR_TYPE","features":[307]},{"name":"WHEA_RECOVERY_FAILURE_REASON","features":[307]},{"name":"WHEA_RECOVERY_TYPE","features":[307]},{"name":"WHEA_REGISTER_KEY_NOTIFICATION_FAILED_EVENT","features":[307]},{"name":"WHEA_REPORT_HW_ERROR_DEVICE_DRIVER_FLAGS","features":[307]},{"name":"WHEA_REVISION","features":[307]},{"name":"WHEA_SEA_SECTION","features":[307,305]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_CONTAINMENTWRN","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_FRU_TEXT_BY_PLUGIN","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_LATENTERROR","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PRIMARY","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_PROPAGATED","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESET","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_RESOURCENA","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_FLAGS_THRESHOLDEXCEEDED","features":[307]},{"name":"WHEA_SECTION_DESCRIPTOR_REVISION","features":[307]},{"name":"WHEA_SEI_SECTION","features":[307]},{"name":"WHEA_SEL_BUGCHECK_PROGRESS","features":[307]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_MULTIPLE_BUGCHECK_EVENT","features":[307,305]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_EVENT","features":[307,305]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE1_VERSION","features":[307]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_PHASE2_EVENT","features":[307,305]},{"name":"WHEA_SEL_BUGCHECK_RECOVERY_STATUS_START_EVENT","features":[307]},{"name":"WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[307,305]},{"name":"WHEA_SRAR_DETAIL_EVENT","features":[307,305]},{"name":"WHEA_SRAS_TABLE_ENTRIES_EVENT","features":[307]},{"name":"WHEA_SRAS_TABLE_ERROR","features":[307]},{"name":"WHEA_SRAS_TABLE_NOT_FOUND","features":[307]},{"name":"WHEA_THROTTLE_ADD_ERR_SRC_FAILED_EVENT","features":[307]},{"name":"WHEA_THROTTLE_MEMORY_ADD_OR_REMOVE_EVENT","features":[307]},{"name":"WHEA_THROTTLE_PCIE_ADD_EVENT","features":[307,305]},{"name":"WHEA_THROTTLE_PCIE_REMOVE_EVENT","features":[307]},{"name":"WHEA_THROTTLE_REGISTRY_CORRUPT_EVENT","features":[307]},{"name":"WHEA_THROTTLE_REG_DATA_IGNORED_EVENT","features":[307]},{"name":"WHEA_THROTTLE_TYPE","features":[307]},{"name":"WHEA_TIMESTAMP","features":[307]},{"name":"WHEA_TLBCHECK_GUID","features":[307]},{"name":"WHEA_WRITE_FLAG_DUMMY","features":[307]},{"name":"WHEA_X64_REGISTER_STATE","features":[307]},{"name":"WHEA_X86_REGISTER_STATE","features":[307]},{"name":"WHEA_XPF_BUS_CHECK","features":[307]},{"name":"WHEA_XPF_CACHE_CHECK","features":[307]},{"name":"WHEA_XPF_CONTEXT_INFO","features":[307]},{"name":"WHEA_XPF_MCA_EXTREG_MAX_COUNT","features":[307]},{"name":"WHEA_XPF_MCA_SECTION","features":[307,305]},{"name":"WHEA_XPF_MCA_SECTION_VERSION","features":[307]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_2","features":[307]},{"name":"WHEA_XPF_MCA_SECTION_VERSION_3","features":[307]},{"name":"WHEA_XPF_MS_CHECK","features":[307]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION","features":[307]},{"name":"WHEA_XPF_PROCESSOR_ERROR_SECTION_VALIDBITS","features":[307]},{"name":"WHEA_XPF_PROCINFO","features":[307]},{"name":"WHEA_XPF_PROCINFO_VALIDBITS","features":[307]},{"name":"WHEA_XPF_TLB_CHECK","features":[307]},{"name":"WMIREGISTER","features":[307]},{"name":"WMIREG_ACTION_BLOCK_IRPS","features":[307]},{"name":"WMIREG_ACTION_DEREGISTER","features":[307]},{"name":"WMIREG_ACTION_REGISTER","features":[307]},{"name":"WMIREG_ACTION_REREGISTER","features":[307]},{"name":"WMIREG_ACTION_UPDATE_GUIDS","features":[307]},{"name":"WMIUPDATE","features":[307]},{"name":"WMI_NOTIFICATION_CALLBACK","features":[307]},{"name":"WORKER_THREAD_ROUTINE","features":[307]},{"name":"WORK_QUEUE_TYPE","features":[307]},{"name":"WdfNotifyRoutinesClass","features":[307]},{"name":"WheaAddErrorSource","features":[307,305,334]},{"name":"WheaAddErrorSourceDeviceDriver","features":[307,305,334]},{"name":"WheaAddErrorSourceDeviceDriverV1","features":[307,305,334]},{"name":"WheaAddHwErrorReportSectionDeviceDriver","features":[307,305,334]},{"name":"WheaConfigureErrorSource","features":[307,305,334]},{"name":"WheaCpuVendorAmd","features":[307]},{"name":"WheaCpuVendorIntel","features":[307]},{"name":"WheaCpuVendorOther","features":[307]},{"name":"WheaCreateHwErrorReportDeviceDriver","features":[306,309,307,305,308,310,311,312]},{"name":"WheaDataFormatGeneric","features":[307]},{"name":"WheaDataFormatIPFSalRecord","features":[307]},{"name":"WheaDataFormatMax","features":[307]},{"name":"WheaDataFormatMemory","features":[307]},{"name":"WheaDataFormatNMIPort","features":[307]},{"name":"WheaDataFormatPCIExpress","features":[307]},{"name":"WheaDataFormatPCIXBus","features":[307]},{"name":"WheaDataFormatPCIXDevice","features":[307]},{"name":"WheaDataFormatXPFMCA","features":[307]},{"name":"WheaErrSevCorrected","features":[307]},{"name":"WheaErrSevFatal","features":[307]},{"name":"WheaErrSevInformational","features":[307]},{"name":"WheaErrSevRecoverable","features":[307]},{"name":"WheaErrTypeGeneric","features":[307]},{"name":"WheaErrTypeMemory","features":[307]},{"name":"WheaErrTypeNMI","features":[307]},{"name":"WheaErrTypePCIExpress","features":[307]},{"name":"WheaErrTypePCIXBus","features":[307]},{"name":"WheaErrTypePCIXDevice","features":[307]},{"name":"WheaErrTypePmem","features":[307]},{"name":"WheaErrTypeProcessor","features":[307]},{"name":"WheaErrorSourceGetState","features":[307,334]},{"name":"WheaEventBugCheckRecoveryEntry","features":[307]},{"name":"WheaEventBugCheckRecoveryMax","features":[307]},{"name":"WheaEventBugCheckRecoveryReturn","features":[307]},{"name":"WheaEventLogAzccRootBusList","features":[307]},{"name":"WheaEventLogAzccRootBusPoisonSet","features":[307]},{"name":"WheaEventLogAzccRootBusSearchErr","features":[307]},{"name":"WheaEventLogCmciFinalRestart","features":[307]},{"name":"WheaEventLogCmciRestart","features":[307]},{"name":"WheaEventLogEntryEarlyError","features":[307]},{"name":"WheaEventLogEntryEtwOverFlow","features":[307]},{"name":"WheaEventLogEntryIdAcpiTimeOut","features":[307]},{"name":"WheaEventLogEntryIdAddRemoveErrorSource","features":[307]},{"name":"WheaEventLogEntryIdAerNotGrantedToOs","features":[307]},{"name":"WheaEventLogEntryIdAttemptErrorRecovery","features":[307]},{"name":"WheaEventLogEntryIdBadHestNotifyData","features":[307]},{"name":"WheaEventLogEntryIdBadPageLimitReached","features":[307]},{"name":"WheaEventLogEntryIdClearedPoison","features":[307]},{"name":"WheaEventLogEntryIdCmcPollingTimeout","features":[307]},{"name":"WheaEventLogEntryIdCmcSwitchToPolling","features":[307]},{"name":"WheaEventLogEntryIdCmciImplPresent","features":[307]},{"name":"WheaEventLogEntryIdCmciInitError","features":[307]},{"name":"WheaEventLogEntryIdCpuBusesInitFailed","features":[307]},{"name":"WheaEventLogEntryIdCpusFrozen","features":[307]},{"name":"WheaEventLogEntryIdCpusFrozenNoCrashDump","features":[307]},{"name":"WheaEventLogEntryIdCreateGenericRecord","features":[307]},{"name":"WheaEventLogEntryIdDefectListCorrupt","features":[307]},{"name":"WheaEventLogEntryIdDefectListFull","features":[307]},{"name":"WheaEventLogEntryIdDefectListUEFIVarFailed","features":[307]},{"name":"WheaEventLogEntryIdDeviceDriver","features":[307]},{"name":"WheaEventLogEntryIdDroppedCorrectedError","features":[307]},{"name":"WheaEventLogEntryIdDrvErrSrcInvalid","features":[307]},{"name":"WheaEventLogEntryIdDrvHandleBusy","features":[307]},{"name":"WheaEventLogEntryIdEnableKeyNotifFailed","features":[307]},{"name":"WheaEventLogEntryIdErrDimmInfoMismatch","features":[307]},{"name":"WheaEventLogEntryIdErrSrcArrayInvalid","features":[307]},{"name":"WheaEventLogEntryIdErrSrcInvalid","features":[307]},{"name":"WheaEventLogEntryIdErrorRecord","features":[307]},{"name":"WheaEventLogEntryIdErrorRecordLimit","features":[307]},{"name":"WheaEventLogEntryIdFailedAddToDefectList","features":[307]},{"name":"WheaEventLogEntryIdGenericErrMemMap","features":[307]},{"name":"WheaEventLogEntryIdKeyNotificationFailed","features":[307]},{"name":"WheaEventLogEntryIdMcaErrorCleared","features":[307]},{"name":"WheaEventLogEntryIdMcaFoundErrorInBank","features":[307]},{"name":"WheaEventLogEntryIdMcaStuckErrorCheck","features":[307]},{"name":"WheaEventLogEntryIdMemoryAddDevice","features":[307]},{"name":"WheaEventLogEntryIdMemoryRemoveDevice","features":[307]},{"name":"WheaEventLogEntryIdMemorySummaryFailed","features":[307]},{"name":"WheaEventLogEntryIdOscCapabilities","features":[307]},{"name":"WheaEventLogEntryIdPFAMemoryOfflined","features":[307]},{"name":"WheaEventLogEntryIdPFAMemoryPolicy","features":[307]},{"name":"WheaEventLogEntryIdPFAMemoryRemoveMonitor","features":[307]},{"name":"WheaEventLogEntryIdPcieAddDevice","features":[307]},{"name":"WheaEventLogEntryIdPcieConfigInfo","features":[307]},{"name":"WheaEventLogEntryIdPcieDpcError","features":[307]},{"name":"WheaEventLogEntryIdPcieOverrideInfo","features":[307]},{"name":"WheaEventLogEntryIdPcieRemoveDevice","features":[307]},{"name":"WheaEventLogEntryIdPcieSpuriousErrSource","features":[307]},{"name":"WheaEventLogEntryIdPcieSummaryFailed","features":[307]},{"name":"WheaEventLogEntryIdProcessEINJ","features":[307]},{"name":"WheaEventLogEntryIdProcessHEST","features":[307]},{"name":"WheaEventLogEntryIdPshedCallbackCollision","features":[307]},{"name":"WheaEventLogEntryIdPshedInjectError","features":[307]},{"name":"WheaEventLogEntryIdPshedPiTraceLog","features":[307]},{"name":"WheaEventLogEntryIdPshedPluginInitFailed","features":[307]},{"name":"WheaEventLogEntryIdPshedPluginLoad","features":[307]},{"name":"WheaEventLogEntryIdPshedPluginRegister","features":[307]},{"name":"WheaEventLogEntryIdPshedPluginSupported","features":[307]},{"name":"WheaEventLogEntryIdPshedPluginUnload","features":[307]},{"name":"WheaEventLogEntryIdReadPcieOverridesErr","features":[307]},{"name":"WheaEventLogEntryIdRowFailure","features":[307]},{"name":"WheaEventLogEntryIdSELBugCheckInfo","features":[307]},{"name":"WheaEventLogEntryIdSELBugCheckProgress","features":[307]},{"name":"WheaEventLogEntryIdSELBugCheckRecovery","features":[307]},{"name":"WheaEventLogEntryIdSrasTableEntries","features":[307]},{"name":"WheaEventLogEntryIdSrasTableError","features":[307]},{"name":"WheaEventLogEntryIdSrasTableNotFound","features":[307]},{"name":"WheaEventLogEntryIdStartedReportHwError","features":[307]},{"name":"WheaEventLogEntryIdThrottleAddErrSrcFailed","features":[307]},{"name":"WheaEventLogEntryIdThrottleRegCorrupt","features":[307]},{"name":"WheaEventLogEntryIdThrottleRegDataIgnored","features":[307]},{"name":"WheaEventLogEntryIdWheaHeartbeat","features":[307]},{"name":"WheaEventLogEntryIdWheaInit","features":[307]},{"name":"WheaEventLogEntryIdWorkQueueItem","features":[307]},{"name":"WheaEventLogEntryIdeDpcEnabled","features":[307]},{"name":"WheaEventLogEntryPageOfflineDone","features":[307]},{"name":"WheaEventLogEntryPageOfflinePendMax","features":[307]},{"name":"WheaEventLogEntrySrarDetail","features":[307]},{"name":"WheaEventLogEntryTypeError","features":[307]},{"name":"WheaEventLogEntryTypeInformational","features":[307]},{"name":"WheaEventLogEntryTypeWarning","features":[307]},{"name":"WheaGetNotifyAllOfflinesPolicy","features":[307,305]},{"name":"WheaHighIrqlLogSelEventHandlerRegister","features":[307,305,334]},{"name":"WheaHighIrqlLogSelEventHandlerUnregister","features":[307]},{"name":"WheaHwErrorReportAbandonDeviceDriver","features":[307,305]},{"name":"WheaHwErrorReportSetSectionNameDeviceDriver","features":[307,305,334]},{"name":"WheaHwErrorReportSetSeverityDeviceDriver","features":[307,305]},{"name":"WheaHwErrorReportSubmitDeviceDriver","features":[307,305]},{"name":"WheaInitializeRecordHeader","features":[307,305]},{"name":"WheaIsCriticalState","features":[307,305]},{"name":"WheaLogInternalEvent","features":[307]},{"name":"WheaMemoryThrottle","features":[307]},{"name":"WheaPciExpressDownstreamSwitchPort","features":[307]},{"name":"WheaPciExpressEndpoint","features":[307]},{"name":"WheaPciExpressLegacyEndpoint","features":[307]},{"name":"WheaPciExpressRootComplexEventCollector","features":[307]},{"name":"WheaPciExpressRootComplexIntegratedEndpoint","features":[307]},{"name":"WheaPciExpressRootPort","features":[307]},{"name":"WheaPciExpressToPciXBridge","features":[307]},{"name":"WheaPciExpressUpstreamSwitchPort","features":[307]},{"name":"WheaPciREcoveryStatusUnknown","features":[307]},{"name":"WheaPciRecoverySignalAer","features":[307]},{"name":"WheaPciRecoverySignalDpc","features":[307]},{"name":"WheaPciRecoverySignalUnknown","features":[307]},{"name":"WheaPciRecoveryStatusBusNotFound","features":[307]},{"name":"WheaPciRecoveryStatusComplexTree","features":[307]},{"name":"WheaPciRecoveryStatusLinkDisableTimeout","features":[307]},{"name":"WheaPciRecoveryStatusLinkEnableTimeout","features":[307]},{"name":"WheaPciRecoveryStatusNoError","features":[307]},{"name":"WheaPciRecoveryStatusRpBusyTimeout","features":[307]},{"name":"WheaPciXToExpressBridge","features":[307]},{"name":"WheaPcieThrottle","features":[307]},{"name":"WheaPfaRemoveCapacity","features":[307]},{"name":"WheaPfaRemoveErrorThreshold","features":[307]},{"name":"WheaPfaRemoveTimeout","features":[307]},{"name":"WheaRawDataFormatAMD64MCA","features":[307]},{"name":"WheaRawDataFormatGeneric","features":[307]},{"name":"WheaRawDataFormatIA32MCA","features":[307]},{"name":"WheaRawDataFormatIPFSalRecord","features":[307]},{"name":"WheaRawDataFormatIntel64MCA","features":[307]},{"name":"WheaRawDataFormatMax","features":[307]},{"name":"WheaRawDataFormatMemory","features":[307]},{"name":"WheaRawDataFormatNMIPort","features":[307]},{"name":"WheaRawDataFormatPCIExpress","features":[307]},{"name":"WheaRawDataFormatPCIXBus","features":[307]},{"name":"WheaRawDataFormatPCIXDevice","features":[307]},{"name":"WheaRecoveryContextErrorTypeMax","features":[307]},{"name":"WheaRecoveryContextErrorTypeMemory","features":[307]},{"name":"WheaRecoveryContextErrorTypePmem","features":[307]},{"name":"WheaRecoveryFailureReasonFarNotValid","features":[307]},{"name":"WheaRecoveryFailureReasonHighIrql","features":[307]},{"name":"WheaRecoveryFailureReasonInsufficientAltContextWrappers","features":[307]},{"name":"WheaRecoveryFailureReasonInterruptsDisabled","features":[307]},{"name":"WheaRecoveryFailureReasonInvalidAddressMode","features":[307]},{"name":"WheaRecoveryFailureReasonKernelCouldNotMarkMemoryBad","features":[307]},{"name":"WheaRecoveryFailureReasonKernelMarkMemoryBadTimedOut","features":[307]},{"name":"WheaRecoveryFailureReasonKernelWillPageFaultBCAtCurrentIrql","features":[307]},{"name":"WheaRecoveryFailureReasonMax","features":[307]},{"name":"WheaRecoveryFailureReasonMiscOrAddrNotValid","features":[307]},{"name":"WheaRecoveryFailureReasonNoRecoveryContext","features":[307]},{"name":"WheaRecoveryFailureReasonNotContinuable","features":[307]},{"name":"WheaRecoveryFailureReasonNotSupported","features":[307]},{"name":"WheaRecoveryFailureReasonOverflow","features":[307]},{"name":"WheaRecoveryFailureReasonPcc","features":[307]},{"name":"WheaRecoveryFailureReasonStackOverflow","features":[307]},{"name":"WheaRecoveryFailureReasonSwapBusy","features":[307]},{"name":"WheaRecoveryFailureReasonUnexpectedFailure","features":[307]},{"name":"WheaRecoveryTypeActionOptional","features":[307]},{"name":"WheaRecoveryTypeActionRequired","features":[307]},{"name":"WheaRecoveryTypeMax","features":[307]},{"name":"WheaRegisterInUsePageOfflineNotification","features":[307,305]},{"name":"WheaRemoveErrorSource","features":[307]},{"name":"WheaRemoveErrorSourceDeviceDriver","features":[307,305]},{"name":"WheaReportHwError","features":[307,305,334]},{"name":"WheaReportHwErrorDeviceDriver","features":[306,309,307,305,308,310,311,312]},{"name":"WheaUnconfigureErrorSource","features":[307,305,334]},{"name":"WheaUnregisterInUsePageOfflineNotification","features":[307,305]},{"name":"WheapDpcErrBusNotFound","features":[307]},{"name":"WheapDpcErrDeviceIdBad","features":[307]},{"name":"WheapDpcErrDpcedSubtree","features":[307]},{"name":"WheapDpcErrNoChildren","features":[307]},{"name":"WheapDpcErrNoErr","features":[307]},{"name":"WheapDpcErrResetFailed","features":[307]},{"name":"WheapPfaOfflinePredictiveFailure","features":[307]},{"name":"WheapPfaOfflineUncorrectedError","features":[307]},{"name":"Width16Bits","features":[307]},{"name":"Width32Bits","features":[307]},{"name":"Width64Bits","features":[307]},{"name":"Width8Bits","features":[307]},{"name":"WidthNoWrap","features":[307]},{"name":"WmiQueryTraceInformation","features":[307,305]},{"name":"WormController","features":[307]},{"name":"WrAlertByThreadId","features":[307]},{"name":"WrCalloutStack","features":[307]},{"name":"WrCpuRateControl","features":[307]},{"name":"WrDeferredPreempt","features":[307]},{"name":"WrDelayExecution","features":[307]},{"name":"WrDispatchInt","features":[307]},{"name":"WrExecutive","features":[307]},{"name":"WrFastMutex","features":[307]},{"name":"WrFreePage","features":[307]},{"name":"WrGuardedMutex","features":[307]},{"name":"WrIoRing","features":[307]},{"name":"WrKernel","features":[307]},{"name":"WrKeyedEvent","features":[307]},{"name":"WrLpcReceive","features":[307]},{"name":"WrLpcReply","features":[307]},{"name":"WrMdlCache","features":[307]},{"name":"WrMutex","features":[307]},{"name":"WrPageIn","features":[307]},{"name":"WrPageOut","features":[307]},{"name":"WrPhysicalFault","features":[307]},{"name":"WrPoolAllocation","features":[307]},{"name":"WrPreempted","features":[307]},{"name":"WrProcessInSwap","features":[307]},{"name":"WrPushLock","features":[307]},{"name":"WrQuantumEnd","features":[307]},{"name":"WrQueue","features":[307]},{"name":"WrRendezvous","features":[307]},{"name":"WrResource","features":[307]},{"name":"WrRundown","features":[307]},{"name":"WrSpare0","features":[307]},{"name":"WrSuspended","features":[307]},{"name":"WrTerminated","features":[307]},{"name":"WrUserRequest","features":[307]},{"name":"WrVirtualMemory","features":[307]},{"name":"WrYieldExecution","features":[307]},{"name":"WriteAccess","features":[307]},{"name":"XPF_BUS_CHECK_ADDRESS_IO","features":[307]},{"name":"XPF_BUS_CHECK_ADDRESS_MEMORY","features":[307]},{"name":"XPF_BUS_CHECK_ADDRESS_OTHER","features":[307]},{"name":"XPF_BUS_CHECK_ADDRESS_RESERVED","features":[307]},{"name":"XPF_BUS_CHECK_OPERATION_DATAREAD","features":[307]},{"name":"XPF_BUS_CHECK_OPERATION_DATAWRITE","features":[307]},{"name":"XPF_BUS_CHECK_OPERATION_GENERIC","features":[307]},{"name":"XPF_BUS_CHECK_OPERATION_GENREAD","features":[307]},{"name":"XPF_BUS_CHECK_OPERATION_GENWRITE","features":[307]},{"name":"XPF_BUS_CHECK_OPERATION_INSTRUCTIONFETCH","features":[307]},{"name":"XPF_BUS_CHECK_OPERATION_PREFETCH","features":[307]},{"name":"XPF_BUS_CHECK_PARTICIPATION_GENERIC","features":[307]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCOBSERVED","features":[307]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCORIGINATED","features":[307]},{"name":"XPF_BUS_CHECK_PARTICIPATION_PROCRESPONDED","features":[307]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[307]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_GENERIC","features":[307]},{"name":"XPF_BUS_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAREAD","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_DATAWRITE","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_EVICTION","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_GENERIC","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_GENREAD","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_GENWRITE","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_INSTRUCTIONFETCH","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_PREFETCH","features":[307]},{"name":"XPF_CACHE_CHECK_OPERATION_SNOOP","features":[307]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[307]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_GENERIC","features":[307]},{"name":"XPF_CACHE_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[307]},{"name":"XPF_CONTEXT_INFO_32BITCONTEXT","features":[307]},{"name":"XPF_CONTEXT_INFO_32BITDEBUGREGS","features":[307]},{"name":"XPF_CONTEXT_INFO_64BITCONTEXT","features":[307]},{"name":"XPF_CONTEXT_INFO_64BITDEBUGREGS","features":[307]},{"name":"XPF_CONTEXT_INFO_FXSAVE","features":[307]},{"name":"XPF_CONTEXT_INFO_MMREGISTERS","features":[307]},{"name":"XPF_CONTEXT_INFO_MSRREGISTERS","features":[307]},{"name":"XPF_CONTEXT_INFO_UNCLASSIFIEDDATA","features":[307]},{"name":"XPF_MCA_SECTION_GUID","features":[307]},{"name":"XPF_MS_CHECK_ERRORTYPE_EXTERNAL","features":[307]},{"name":"XPF_MS_CHECK_ERRORTYPE_FRC","features":[307]},{"name":"XPF_MS_CHECK_ERRORTYPE_INTERNALUNCLASSIFIED","features":[307]},{"name":"XPF_MS_CHECK_ERRORTYPE_MCROMPARITY","features":[307]},{"name":"XPF_MS_CHECK_ERRORTYPE_NOERROR","features":[307]},{"name":"XPF_MS_CHECK_ERRORTYPE_UNCLASSIFIED","features":[307]},{"name":"XPF_PROCESSOR_ERROR_SECTION_GUID","features":[307]},{"name":"XPF_RECOVERY_INFO","features":[307,305]},{"name":"XPF_TLB_CHECK_OPERATION_DATAREAD","features":[307]},{"name":"XPF_TLB_CHECK_OPERATION_DATAWRITE","features":[307]},{"name":"XPF_TLB_CHECK_OPERATION_GENERIC","features":[307]},{"name":"XPF_TLB_CHECK_OPERATION_GENREAD","features":[307]},{"name":"XPF_TLB_CHECK_OPERATION_GENWRITE","features":[307]},{"name":"XPF_TLB_CHECK_OPERATION_INSTRUCTIONFETCH","features":[307]},{"name":"XPF_TLB_CHECK_OPERATION_PREFETCH","features":[307]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_DATAACCESS","features":[307]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_GENERIC","features":[307]},{"name":"XPF_TLB_CHECK_TRANSACTIONTYPE_INSTRUCTION","features":[307]},{"name":"XSAVE_FORMAT","features":[307,334]},{"name":"XSTATE_CONTEXT","features":[307,334]},{"name":"XSTATE_SAVE","features":[307,334]},{"name":"ZONE_HEADER","features":[307,311]},{"name":"ZONE_SEGMENT_HEADER","features":[307,311]},{"name":"ZwAllocateLocallyUniqueId","features":[307,305]},{"name":"ZwClose","features":[307,305]},{"name":"ZwCommitComplete","features":[307,305]},{"name":"ZwCommitEnlistment","features":[307,305]},{"name":"ZwCommitTransaction","features":[307,305]},{"name":"ZwCreateEnlistment","features":[306,307,305]},{"name":"ZwCreateFile","features":[306,307,305,310]},{"name":"ZwCreateResourceManager","features":[306,307,305]},{"name":"ZwCreateSection","features":[306,307,305]},{"name":"ZwCreateTransaction","features":[306,307,305]},{"name":"ZwCreateTransactionManager","features":[306,307,305]},{"name":"ZwDeviceIoControlFile","features":[307,305,310]},{"name":"ZwDisplayString","features":[307,305]},{"name":"ZwEnumerateTransactionObject","features":[307,305,339]},{"name":"ZwGetNotificationResourceManager","features":[307,305,324]},{"name":"ZwLoadDriver","features":[307,305]},{"name":"ZwMakeTemporaryObject","features":[307,305]},{"name":"ZwManagePartition","features":[307,305]},{"name":"ZwOpenEnlistment","features":[306,307,305]},{"name":"ZwOpenFile","features":[306,307,305,310]},{"name":"ZwOpenResourceManager","features":[306,307,305]},{"name":"ZwOpenSymbolicLinkObject","features":[306,307,305]},{"name":"ZwOpenTransaction","features":[306,307,305]},{"name":"ZwOpenTransactionManager","features":[306,307,305]},{"name":"ZwPowerInformation","features":[307,305,312]},{"name":"ZwPrePrepareComplete","features":[307,305]},{"name":"ZwPrePrepareEnlistment","features":[307,305]},{"name":"ZwPrepareComplete","features":[307,305]},{"name":"ZwPrepareEnlistment","features":[307,305]},{"name":"ZwPropagationComplete","features":[307,305]},{"name":"ZwPropagationFailed","features":[307,305]},{"name":"ZwQueryInformationByName","features":[306,309,307,305,310]},{"name":"ZwQueryInformationEnlistment","features":[307,305,339]},{"name":"ZwQueryInformationFile","features":[309,307,305,310]},{"name":"ZwQueryInformationResourceManager","features":[307,305,339]},{"name":"ZwQueryInformationTransaction","features":[307,305,339]},{"name":"ZwQueryInformationTransactionManager","features":[307,305,339]},{"name":"ZwQuerySymbolicLinkObject","features":[307,305]},{"name":"ZwReadFile","features":[307,305,310]},{"name":"ZwReadOnlyEnlistment","features":[307,305]},{"name":"ZwRecoverEnlistment","features":[307,305]},{"name":"ZwRecoverResourceManager","features":[307,305]},{"name":"ZwRecoverTransactionManager","features":[307,305]},{"name":"ZwRegisterProtocolAddressInformation","features":[307,305]},{"name":"ZwRenameTransactionManager","features":[307,305]},{"name":"ZwRollbackComplete","features":[307,305]},{"name":"ZwRollbackEnlistment","features":[307,305]},{"name":"ZwRollbackTransaction","features":[307,305]},{"name":"ZwRollforwardTransactionManager","features":[307,305]},{"name":"ZwSetInformationEnlistment","features":[307,305,339]},{"name":"ZwSetInformationFile","features":[309,307,305,310]},{"name":"ZwSetInformationResourceManager","features":[307,305,339]},{"name":"ZwSetInformationTransaction","features":[307,305,339]},{"name":"ZwSetInformationTransactionManager","features":[307,305,339]},{"name":"ZwSinglePhaseReject","features":[307,305]},{"name":"ZwUnloadDriver","features":[307,305]},{"name":"ZwWriteFile","features":[307,305,310]},{"name":"_EXT_SET_PARAMETERS_V0","features":[307]},{"name":"_STRSAFE_USE_SECURE_CRT","features":[307]},{"name":"_WHEA_ERROR_SOURCE_CORRECT","features":[307,305,334]},{"name":"_WHEA_ERROR_SOURCE_CREATE_RECORD","features":[307,305,334]},{"name":"_WHEA_ERROR_SOURCE_INITIALIZE","features":[307,305,334]},{"name":"_WHEA_ERROR_SOURCE_RECOVER","features":[307,305]},{"name":"_WHEA_ERROR_SOURCE_UNINITIALIZE","features":[307]},{"name":"_WHEA_SIGNAL_HANDLER_OVERRIDE_CALLBACK","features":[307,305]},{"name":"__guid_type","features":[307]},{"name":"__multiString_type","features":[307]},{"name":"__string_type","features":[307]},{"name":"pHalAssignSlotResources","features":[306,309,307,305,308,310,311,312]},{"name":"pHalEndMirroring","features":[307,305]},{"name":"pHalEndOfBoot","features":[307]},{"name":"pHalExamineMBR","features":[306,309,307,305,308,310,311,312]},{"name":"pHalFindBusAddressTranslation","features":[307,305]},{"name":"pHalGetAcpiTable","features":[307]},{"name":"pHalGetDmaAdapter","features":[306,309,307,305,308,310,311,312]},{"name":"pHalGetInterruptTranslator","features":[306,309,307,305,308,310,311,312]},{"name":"pHalGetPrmCache","features":[307,311]},{"name":"pHalHaltSystem","features":[307]},{"name":"pHalHandlerForBus","features":[306,307]},{"name":"pHalInitPnpDriver","features":[307,305]},{"name":"pHalInitPowerManagement","features":[307,305]},{"name":"pHalIoReadPartitionTable","features":[306,309,307,305,308,310,325,311,312]},{"name":"pHalIoSetPartitionInformation","features":[306,309,307,305,308,310,311,312]},{"name":"pHalIoWritePartitionTable","features":[306,309,307,305,308,310,325,311,312]},{"name":"pHalMirrorPhysicalMemory","features":[307,305]},{"name":"pHalMirrorVerify","features":[307,305]},{"name":"pHalQueryBusSlots","features":[306,307,305]},{"name":"pHalQuerySystemInformation","features":[307,305]},{"name":"pHalReferenceBusHandler","features":[306,307]},{"name":"pHalResetDisplay","features":[307,305]},{"name":"pHalSetPciErrorHandlerCallback","features":[307]},{"name":"pHalSetSystemInformation","features":[307,305]},{"name":"pHalStartMirroring","features":[307,305]},{"name":"pHalTranslateBusAddress","features":[307,305]},{"name":"pHalVectorToIDTEntry","features":[307]},{"name":"pKdCheckPowerButton","features":[307]},{"name":"pKdEnumerateDebuggingDevices","features":[307,305]},{"name":"pKdGetAcpiTablePhase0","features":[307]},{"name":"pKdGetPciDataByOffset","features":[307]},{"name":"pKdMapPhysicalMemory64","features":[307,305]},{"name":"pKdReleaseIntegratedDeviceForDebugging","features":[307,305]},{"name":"pKdReleasePciDeviceForDebugging","features":[307,305]},{"name":"pKdSetPciDataByOffset","features":[307]},{"name":"pKdSetupIntegratedDeviceForDebugging","features":[307,305]},{"name":"pKdSetupPciDeviceForDebugging","features":[307,305]},{"name":"pKdUnmapVirtualAddress","features":[307,305]},{"name":"vDbgPrintEx","features":[307]},{"name":"vDbgPrintExWithPrefix","features":[307]}],"353":[{"name":"MaxProcessInfoClass","features":[341]},{"name":"MaxThreadInfoClass","features":[341]},{"name":"MaxTimerInfoClass","features":[341]},{"name":"NtCancelTimer","features":[341,305]},{"name":"NtCreateTimer","features":[306,341,305,311]},{"name":"NtOpenEvent","features":[306,341,305]},{"name":"NtOpenProcess","features":[306,341,305,338]},{"name":"NtOpenTimer","features":[306,341,305]},{"name":"NtQueryInformationProcess","features":[341,305]},{"name":"NtQueryInformationThread","features":[341,305]},{"name":"NtSetInformationThread","features":[341,305]},{"name":"NtSetTimer","features":[307,341,305]},{"name":"NtSetTimerEx","features":[341,305]},{"name":"NtTerminateProcess","features":[341,305]},{"name":"NtWaitForSingleObject","features":[341,305]},{"name":"PROCESSINFOCLASS","features":[341]},{"name":"ProcessAccessToken","features":[341]},{"name":"ProcessAffinityMask","features":[341]},{"name":"ProcessAffinityUpdateMode","features":[341]},{"name":"ProcessBasePriority","features":[341]},{"name":"ProcessBasicInformation","features":[341]},{"name":"ProcessBreakOnTermination","features":[341]},{"name":"ProcessCheckStackExtentsMode","features":[341]},{"name":"ProcessCommandLineInformation","features":[341]},{"name":"ProcessCommitReleaseInformation","features":[341]},{"name":"ProcessCookie","features":[341]},{"name":"ProcessCycleTime","features":[341]},{"name":"ProcessDebugFlags","features":[341]},{"name":"ProcessDebugObjectHandle","features":[341]},{"name":"ProcessDebugPort","features":[341]},{"name":"ProcessDefaultHardErrorMode","features":[341]},{"name":"ProcessDeviceMap","features":[341]},{"name":"ProcessDynamicFunctionTableInformation","features":[341]},{"name":"ProcessEnableAlignmentFaultFixup","features":[341]},{"name":"ProcessEnergyTrackingState","features":[341]},{"name":"ProcessExceptionPort","features":[341]},{"name":"ProcessExecuteFlags","features":[341]},{"name":"ProcessFaultInformation","features":[341]},{"name":"ProcessForegroundInformation","features":[341]},{"name":"ProcessGroupInformation","features":[341]},{"name":"ProcessHandleCheckingMode","features":[341]},{"name":"ProcessHandleCount","features":[341]},{"name":"ProcessHandleInformation","features":[341]},{"name":"ProcessHandleTable","features":[341]},{"name":"ProcessHandleTracing","features":[341]},{"name":"ProcessImageFileMapping","features":[341]},{"name":"ProcessImageFileName","features":[341]},{"name":"ProcessImageFileNameWin32","features":[341]},{"name":"ProcessImageInformation","features":[341]},{"name":"ProcessInPrivate","features":[341]},{"name":"ProcessInstrumentationCallback","features":[341]},{"name":"ProcessIoCounters","features":[341]},{"name":"ProcessIoPortHandlers","features":[341]},{"name":"ProcessIoPriority","features":[341]},{"name":"ProcessKeepAliveCount","features":[341]},{"name":"ProcessLUIDDeviceMapsEnabled","features":[341]},{"name":"ProcessLdtInformation","features":[341]},{"name":"ProcessLdtSize","features":[341]},{"name":"ProcessMemoryAllocationMode","features":[341]},{"name":"ProcessMemoryExhaustion","features":[341]},{"name":"ProcessMitigationPolicy","features":[341]},{"name":"ProcessOwnerInformation","features":[341]},{"name":"ProcessPagePriority","features":[341]},{"name":"ProcessPooledUsageAndLimits","features":[341]},{"name":"ProcessPriorityBoost","features":[341]},{"name":"ProcessPriorityClass","features":[341]},{"name":"ProcessProtectionInformation","features":[341]},{"name":"ProcessQuotaLimits","features":[341]},{"name":"ProcessRaisePriority","features":[341]},{"name":"ProcessRaiseUMExceptionOnInvalidHandleClose","features":[341]},{"name":"ProcessReserved1Information","features":[341]},{"name":"ProcessReserved2Information","features":[341]},{"name":"ProcessRevokeFileHandles","features":[341]},{"name":"ProcessSessionInformation","features":[341]},{"name":"ProcessSubsystemInformation","features":[341]},{"name":"ProcessSubsystemProcess","features":[341]},{"name":"ProcessTelemetryIdInformation","features":[341]},{"name":"ProcessThreadStackAllocation","features":[341]},{"name":"ProcessTimes","features":[341]},{"name":"ProcessTlsInformation","features":[341]},{"name":"ProcessTokenVirtualizationEnabled","features":[341]},{"name":"ProcessUserModeIOPL","features":[341]},{"name":"ProcessVmCounters","features":[341]},{"name":"ProcessWin32kSyscallFilterInformation","features":[341]},{"name":"ProcessWindowInformation","features":[341]},{"name":"ProcessWorkingSetControl","features":[341]},{"name":"ProcessWorkingSetWatch","features":[341]},{"name":"ProcessWorkingSetWatchEx","features":[341]},{"name":"ProcessWow64Information","features":[341]},{"name":"ProcessWx86Information","features":[341]},{"name":"THREADINFOCLASS","features":[341]},{"name":"TIMER_SET_INFORMATION_CLASS","features":[341]},{"name":"ThreadActualBasePriority","features":[341]},{"name":"ThreadActualGroupAffinity","features":[341]},{"name":"ThreadAffinityMask","features":[341]},{"name":"ThreadAmILastThread","features":[341]},{"name":"ThreadBasePriority","features":[341]},{"name":"ThreadBasicInformation","features":[341]},{"name":"ThreadBreakOnTermination","features":[341]},{"name":"ThreadCSwitchMon","features":[341]},{"name":"ThreadCSwitchPmu","features":[341]},{"name":"ThreadCounterProfiling","features":[341]},{"name":"ThreadCpuAccountingInformation","features":[341]},{"name":"ThreadCycleTime","features":[341]},{"name":"ThreadDescriptorTableEntry","features":[341]},{"name":"ThreadDynamicCodePolicyInfo","features":[341]},{"name":"ThreadEnableAlignmentFaultFixup","features":[341]},{"name":"ThreadEventPair_Reusable","features":[341]},{"name":"ThreadGroupInformation","features":[341]},{"name":"ThreadHideFromDebugger","features":[341]},{"name":"ThreadIdealProcessor","features":[341]},{"name":"ThreadIdealProcessorEx","features":[341]},{"name":"ThreadImpersonationToken","features":[341]},{"name":"ThreadIoPriority","features":[341]},{"name":"ThreadIsIoPending","features":[341]},{"name":"ThreadIsTerminated","features":[341]},{"name":"ThreadLastSystemCall","features":[341]},{"name":"ThreadNameInformation","features":[341]},{"name":"ThreadPagePriority","features":[341]},{"name":"ThreadPerformanceCount","features":[341]},{"name":"ThreadPriority","features":[341]},{"name":"ThreadPriorityBoost","features":[341]},{"name":"ThreadQuerySetWin32StartAddress","features":[341]},{"name":"ThreadSetTlsArrayAddress","features":[341]},{"name":"ThreadSubsystemInformation","features":[341]},{"name":"ThreadSuspendCount","features":[341]},{"name":"ThreadSwitchLegacyState","features":[341]},{"name":"ThreadTebInformation","features":[341]},{"name":"ThreadTimes","features":[341]},{"name":"ThreadUmsInformation","features":[341]},{"name":"ThreadWow64Context","features":[341]},{"name":"ThreadZeroTlsCell","features":[341]},{"name":"TimerSetCoalescableTimer","features":[341]},{"name":"ZwCancelTimer","features":[341,305]},{"name":"ZwCreateTimer","features":[306,341,305,311]},{"name":"ZwOpenEvent","features":[306,341,305]},{"name":"ZwOpenProcess","features":[306,341,305,338]},{"name":"ZwOpenTimer","features":[306,341,305]},{"name":"ZwQueryInformationProcess","features":[341,305]},{"name":"ZwQueryInformationThread","features":[341,305]},{"name":"ZwSetInformationThread","features":[341,305]},{"name":"ZwSetTimer","features":[307,341,305]},{"name":"ZwSetTimerEx","features":[341,305]},{"name":"ZwTerminateProcess","features":[341,305]},{"name":"ZwWaitForSingleObject","features":[341,305]}],"354":[{"name":"IUriToStreamResolver","features":[342]},{"name":"IWebErrorStatics","features":[342]},{"name":"WebError","features":[342]},{"name":"WebErrorStatus","features":[342]}],"355":[{"name":"AtomPubClient","features":[343]},{"name":"IAtomPubClient","features":[343]},{"name":"IAtomPubClientFactory","features":[343]},{"name":"IResourceCollection","features":[343]},{"name":"IServiceDocument","features":[343]},{"name":"IWorkspace","features":[343]},{"name":"ResourceCollection","features":[343]},{"name":"ServiceDocument","features":[343]},{"name":"Workspace","features":[343]}],"356":[{"name":"HttpBufferContent","features":[344]},{"name":"HttpClient","features":[344]},{"name":"HttpCompletionOption","features":[344]},{"name":"HttpCookie","features":[344]},{"name":"HttpCookieCollection","features":[36,344]},{"name":"HttpCookieManager","features":[344]},{"name":"HttpFormUrlEncodedContent","features":[344]},{"name":"HttpGetBufferResult","features":[344]},{"name":"HttpGetInputStreamResult","features":[344]},{"name":"HttpGetStringResult","features":[344]},{"name":"HttpMethod","features":[344]},{"name":"HttpMultipartContent","features":[344]},{"name":"HttpMultipartFormDataContent","features":[344]},{"name":"HttpProgress","features":[76,344]},{"name":"HttpProgressStage","features":[344]},{"name":"HttpRequestMessage","features":[344]},{"name":"HttpRequestResult","features":[344]},{"name":"HttpResponseMessage","features":[344]},{"name":"HttpResponseMessageSource","features":[344]},{"name":"HttpStatusCode","features":[344]},{"name":"HttpStreamContent","features":[344]},{"name":"HttpStringContent","features":[344]},{"name":"HttpTransportInformation","features":[344]},{"name":"HttpVersion","features":[344]},{"name":"IHttpBufferContentFactory","features":[344]},{"name":"IHttpClient","features":[344]},{"name":"IHttpClient2","features":[344]},{"name":"IHttpClient3","features":[344]},{"name":"IHttpClientFactory","features":[344]},{"name":"IHttpContent","features":[344]},{"name":"IHttpCookie","features":[344]},{"name":"IHttpCookieFactory","features":[344]},{"name":"IHttpCookieManager","features":[344]},{"name":"IHttpFormUrlEncodedContentFactory","features":[344]},{"name":"IHttpGetBufferResult","features":[344]},{"name":"IHttpGetInputStreamResult","features":[344]},{"name":"IHttpGetStringResult","features":[344]},{"name":"IHttpMethod","features":[344]},{"name":"IHttpMethodFactory","features":[344]},{"name":"IHttpMethodStatics","features":[344]},{"name":"IHttpMultipartContent","features":[344]},{"name":"IHttpMultipartContentFactory","features":[344]},{"name":"IHttpMultipartFormDataContent","features":[344]},{"name":"IHttpMultipartFormDataContentFactory","features":[344]},{"name":"IHttpRequestMessage","features":[344]},{"name":"IHttpRequestMessage2","features":[344]},{"name":"IHttpRequestMessageFactory","features":[344]},{"name":"IHttpRequestResult","features":[344]},{"name":"IHttpResponseMessage","features":[344]},{"name":"IHttpResponseMessageFactory","features":[344]},{"name":"IHttpStreamContentFactory","features":[344]},{"name":"IHttpStringContentFactory","features":[344]},{"name":"IHttpTransportInformation","features":[344]}],"357":[{"name":"HttpDiagnosticProvider","features":[345]},{"name":"HttpDiagnosticProviderRequestResponseCompletedEventArgs","features":[345]},{"name":"HttpDiagnosticProviderRequestResponseTimestamps","features":[345]},{"name":"HttpDiagnosticProviderRequestSentEventArgs","features":[345]},{"name":"HttpDiagnosticProviderResponseReceivedEventArgs","features":[345]},{"name":"HttpDiagnosticRequestInitiator","features":[345]},{"name":"HttpDiagnosticSourceLocation","features":[345]},{"name":"HttpDiagnosticsContract","features":[345]},{"name":"IHttpDiagnosticProvider","features":[345]},{"name":"IHttpDiagnosticProviderRequestResponseCompletedEventArgs","features":[345]},{"name":"IHttpDiagnosticProviderRequestResponseTimestamps","features":[345]},{"name":"IHttpDiagnosticProviderRequestSentEventArgs","features":[345]},{"name":"IHttpDiagnosticProviderResponseReceivedEventArgs","features":[345]},{"name":"IHttpDiagnosticProviderStatics","features":[345]},{"name":"IHttpDiagnosticSourceLocation","features":[345]}],"358":[{"name":"HttpBaseProtocolFilter","features":[346]},{"name":"HttpCacheControl","features":[346]},{"name":"HttpCacheReadBehavior","features":[346]},{"name":"HttpCacheWriteBehavior","features":[346]},{"name":"HttpCookieUsageBehavior","features":[346]},{"name":"HttpServerCustomValidationRequestedEventArgs","features":[346]},{"name":"IHttpBaseProtocolFilter","features":[346]},{"name":"IHttpBaseProtocolFilter2","features":[346]},{"name":"IHttpBaseProtocolFilter3","features":[346]},{"name":"IHttpBaseProtocolFilter4","features":[346]},{"name":"IHttpBaseProtocolFilter5","features":[346]},{"name":"IHttpBaseProtocolFilterStatics","features":[346]},{"name":"IHttpCacheControl","features":[346]},{"name":"IHttpFilter","features":[346]},{"name":"IHttpServerCustomValidationRequestedEventArgs","features":[346]}],"359":[{"name":"HttpCacheDirectiveHeaderValueCollection","features":[347]},{"name":"HttpChallengeHeaderValue","features":[347]},{"name":"HttpChallengeHeaderValueCollection","features":[347]},{"name":"HttpConnectionOptionHeaderValue","features":[347]},{"name":"HttpConnectionOptionHeaderValueCollection","features":[347]},{"name":"HttpContentCodingHeaderValue","features":[347]},{"name":"HttpContentCodingHeaderValueCollection","features":[347]},{"name":"HttpContentCodingWithQualityHeaderValue","features":[347]},{"name":"HttpContentCodingWithQualityHeaderValueCollection","features":[347]},{"name":"HttpContentDispositionHeaderValue","features":[347]},{"name":"HttpContentHeaderCollection","features":[347]},{"name":"HttpContentRangeHeaderValue","features":[347]},{"name":"HttpCookiePairHeaderValue","features":[347]},{"name":"HttpCookiePairHeaderValueCollection","features":[347]},{"name":"HttpCredentialsHeaderValue","features":[347]},{"name":"HttpDateOrDeltaHeaderValue","features":[347]},{"name":"HttpExpectationHeaderValue","features":[347]},{"name":"HttpExpectationHeaderValueCollection","features":[347]},{"name":"HttpLanguageHeaderValueCollection","features":[347]},{"name":"HttpLanguageRangeWithQualityHeaderValue","features":[347]},{"name":"HttpLanguageRangeWithQualityHeaderValueCollection","features":[347]},{"name":"HttpMediaTypeHeaderValue","features":[347]},{"name":"HttpMediaTypeWithQualityHeaderValue","features":[347]},{"name":"HttpMediaTypeWithQualityHeaderValueCollection","features":[347]},{"name":"HttpMethodHeaderValueCollection","features":[347]},{"name":"HttpNameValueHeaderValue","features":[347]},{"name":"HttpProductHeaderValue","features":[347]},{"name":"HttpProductInfoHeaderValue","features":[347]},{"name":"HttpProductInfoHeaderValueCollection","features":[347]},{"name":"HttpRequestHeaderCollection","features":[347]},{"name":"HttpResponseHeaderCollection","features":[347]},{"name":"HttpTransferCodingHeaderValue","features":[347]},{"name":"HttpTransferCodingHeaderValueCollection","features":[347]},{"name":"IHttpCacheDirectiveHeaderValueCollection","features":[347]},{"name":"IHttpChallengeHeaderValue","features":[347]},{"name":"IHttpChallengeHeaderValueCollection","features":[347]},{"name":"IHttpChallengeHeaderValueFactory","features":[347]},{"name":"IHttpChallengeHeaderValueStatics","features":[347]},{"name":"IHttpConnectionOptionHeaderValue","features":[347]},{"name":"IHttpConnectionOptionHeaderValueCollection","features":[347]},{"name":"IHttpConnectionOptionHeaderValueFactory","features":[347]},{"name":"IHttpConnectionOptionHeaderValueStatics","features":[347]},{"name":"IHttpContentCodingHeaderValue","features":[347]},{"name":"IHttpContentCodingHeaderValueCollection","features":[347]},{"name":"IHttpContentCodingHeaderValueFactory","features":[347]},{"name":"IHttpContentCodingHeaderValueStatics","features":[347]},{"name":"IHttpContentCodingWithQualityHeaderValue","features":[347]},{"name":"IHttpContentCodingWithQualityHeaderValueCollection","features":[347]},{"name":"IHttpContentCodingWithQualityHeaderValueFactory","features":[347]},{"name":"IHttpContentCodingWithQualityHeaderValueStatics","features":[347]},{"name":"IHttpContentDispositionHeaderValue","features":[347]},{"name":"IHttpContentDispositionHeaderValueFactory","features":[347]},{"name":"IHttpContentDispositionHeaderValueStatics","features":[347]},{"name":"IHttpContentHeaderCollection","features":[347]},{"name":"IHttpContentRangeHeaderValue","features":[347]},{"name":"IHttpContentRangeHeaderValueFactory","features":[347]},{"name":"IHttpContentRangeHeaderValueStatics","features":[347]},{"name":"IHttpCookiePairHeaderValue","features":[347]},{"name":"IHttpCookiePairHeaderValueCollection","features":[347]},{"name":"IHttpCookiePairHeaderValueFactory","features":[347]},{"name":"IHttpCookiePairHeaderValueStatics","features":[347]},{"name":"IHttpCredentialsHeaderValue","features":[347]},{"name":"IHttpCredentialsHeaderValueFactory","features":[347]},{"name":"IHttpCredentialsHeaderValueStatics","features":[347]},{"name":"IHttpDateOrDeltaHeaderValue","features":[347]},{"name":"IHttpDateOrDeltaHeaderValueStatics","features":[347]},{"name":"IHttpExpectationHeaderValue","features":[347]},{"name":"IHttpExpectationHeaderValueCollection","features":[347]},{"name":"IHttpExpectationHeaderValueFactory","features":[347]},{"name":"IHttpExpectationHeaderValueStatics","features":[347]},{"name":"IHttpLanguageHeaderValueCollection","features":[347]},{"name":"IHttpLanguageRangeWithQualityHeaderValue","features":[347]},{"name":"IHttpLanguageRangeWithQualityHeaderValueCollection","features":[347]},{"name":"IHttpLanguageRangeWithQualityHeaderValueFactory","features":[347]},{"name":"IHttpLanguageRangeWithQualityHeaderValueStatics","features":[347]},{"name":"IHttpMediaTypeHeaderValue","features":[347]},{"name":"IHttpMediaTypeHeaderValueFactory","features":[347]},{"name":"IHttpMediaTypeHeaderValueStatics","features":[347]},{"name":"IHttpMediaTypeWithQualityHeaderValue","features":[347]},{"name":"IHttpMediaTypeWithQualityHeaderValueCollection","features":[347]},{"name":"IHttpMediaTypeWithQualityHeaderValueFactory","features":[347]},{"name":"IHttpMediaTypeWithQualityHeaderValueStatics","features":[347]},{"name":"IHttpMethodHeaderValueCollection","features":[347]},{"name":"IHttpNameValueHeaderValue","features":[347]},{"name":"IHttpNameValueHeaderValueFactory","features":[347]},{"name":"IHttpNameValueHeaderValueStatics","features":[347]},{"name":"IHttpProductHeaderValue","features":[347]},{"name":"IHttpProductHeaderValueFactory","features":[347]},{"name":"IHttpProductHeaderValueStatics","features":[347]},{"name":"IHttpProductInfoHeaderValue","features":[347]},{"name":"IHttpProductInfoHeaderValueCollection","features":[347]},{"name":"IHttpProductInfoHeaderValueFactory","features":[347]},{"name":"IHttpProductInfoHeaderValueStatics","features":[347]},{"name":"IHttpRequestHeaderCollection","features":[347]},{"name":"IHttpResponseHeaderCollection","features":[347]},{"name":"IHttpTransferCodingHeaderValue","features":[347]},{"name":"IHttpTransferCodingHeaderValueCollection","features":[347]},{"name":"IHttpTransferCodingHeaderValueFactory","features":[347]},{"name":"IHttpTransferCodingHeaderValueStatics","features":[347]}],"360":[{"name":"ISyndicationAttribute","features":[348]},{"name":"ISyndicationAttributeFactory","features":[348]},{"name":"ISyndicationCategory","features":[348]},{"name":"ISyndicationCategoryFactory","features":[348]},{"name":"ISyndicationClient","features":[348]},{"name":"ISyndicationClientFactory","features":[348]},{"name":"ISyndicationContent","features":[348]},{"name":"ISyndicationContentFactory","features":[348]},{"name":"ISyndicationErrorStatics","features":[348]},{"name":"ISyndicationFeed","features":[348]},{"name":"ISyndicationFeedFactory","features":[348]},{"name":"ISyndicationGenerator","features":[348]},{"name":"ISyndicationGeneratorFactory","features":[348]},{"name":"ISyndicationItem","features":[348]},{"name":"ISyndicationItemFactory","features":[348]},{"name":"ISyndicationLink","features":[348]},{"name":"ISyndicationLinkFactory","features":[348]},{"name":"ISyndicationNode","features":[348]},{"name":"ISyndicationNodeFactory","features":[348]},{"name":"ISyndicationPerson","features":[348]},{"name":"ISyndicationPersonFactory","features":[348]},{"name":"ISyndicationText","features":[348]},{"name":"ISyndicationTextFactory","features":[348]},{"name":"RetrievalProgress","features":[348]},{"name":"SyndicationAttribute","features":[348]},{"name":"SyndicationCategory","features":[348]},{"name":"SyndicationClient","features":[348]},{"name":"SyndicationContent","features":[348]},{"name":"SyndicationError","features":[348]},{"name":"SyndicationErrorStatus","features":[348]},{"name":"SyndicationFeed","features":[348]},{"name":"SyndicationFormat","features":[348]},{"name":"SyndicationGenerator","features":[348]},{"name":"SyndicationItem","features":[348]},{"name":"SyndicationLink","features":[348]},{"name":"SyndicationNode","features":[348]},{"name":"SyndicationPerson","features":[348]},{"name":"SyndicationText","features":[348]},{"name":"SyndicationTextType","features":[348]},{"name":"TransferProgress","features":[348]}],"361":[{"name":"IWebViewControl","features":[349]},{"name":"IWebViewControl2","features":[349]},{"name":"IWebViewControlContentLoadingEventArgs","features":[349]},{"name":"IWebViewControlDOMContentLoadedEventArgs","features":[349]},{"name":"IWebViewControlDeferredPermissionRequest","features":[349]},{"name":"IWebViewControlLongRunningScriptDetectedEventArgs","features":[349]},{"name":"IWebViewControlNavigationCompletedEventArgs","features":[349]},{"name":"IWebViewControlNavigationStartingEventArgs","features":[349]},{"name":"IWebViewControlNewWindowRequestedEventArgs","features":[349]},{"name":"IWebViewControlNewWindowRequestedEventArgs2","features":[349]},{"name":"IWebViewControlPermissionRequest","features":[349]},{"name":"IWebViewControlPermissionRequestedEventArgs","features":[349]},{"name":"IWebViewControlScriptNotifyEventArgs","features":[349]},{"name":"IWebViewControlSettings","features":[349]},{"name":"IWebViewControlUnsupportedUriSchemeIdentifiedEventArgs","features":[349]},{"name":"IWebViewControlUnviewableContentIdentifiedEventArgs","features":[349]},{"name":"IWebViewControlWebResourceRequestedEventArgs","features":[349]},{"name":"WebViewControlContentLoadingEventArgs","features":[349]},{"name":"WebViewControlDOMContentLoadedEventArgs","features":[349]},{"name":"WebViewControlDeferredPermissionRequest","features":[349]},{"name":"WebViewControlLongRunningScriptDetectedEventArgs","features":[349]},{"name":"WebViewControlNavigationCompletedEventArgs","features":[349]},{"name":"WebViewControlNavigationStartingEventArgs","features":[349]},{"name":"WebViewControlNewWindowRequestedEventArgs","features":[349]},{"name":"WebViewControlPermissionRequest","features":[349]},{"name":"WebViewControlPermissionRequestedEventArgs","features":[349]},{"name":"WebViewControlPermissionState","features":[349]},{"name":"WebViewControlPermissionType","features":[349]},{"name":"WebViewControlScriptNotifyEventArgs","features":[349]},{"name":"WebViewControlSettings","features":[349]},{"name":"WebViewControlUnsupportedUriSchemeIdentifiedEventArgs","features":[349]},{"name":"WebViewControlUnviewableContentIdentifiedEventArgs","features":[349]},{"name":"WebViewControlWebResourceRequestedEventArgs","features":[349]}],"362":[{"name":"IWebViewControlAcceleratorKeyPressedEventArgs","features":[350]},{"name":"IWebViewControlMoveFocusRequestedEventArgs","features":[350]},{"name":"IWebViewControlProcess","features":[350]},{"name":"IWebViewControlProcessFactory","features":[350]},{"name":"IWebViewControlProcessOptions","features":[350]},{"name":"IWebViewControlSite","features":[350]},{"name":"IWebViewControlSite2","features":[350]},{"name":"WebViewControl","features":[350]},{"name":"WebViewControlAcceleratorKeyPressedEventArgs","features":[350]},{"name":"WebViewControlAcceleratorKeyRoutingStage","features":[350]},{"name":"WebViewControlMoveFocusReason","features":[350]},{"name":"WebViewControlMoveFocusRequestedEventArgs","features":[350]},{"name":"WebViewControlProcess","features":[350]},{"name":"WebViewControlProcessCapabilityState","features":[350]},{"name":"WebViewControlProcessOptions","features":[350]}],"363":[{"name":"DMLCreateDevice","features":[351,352]},{"name":"DMLCreateDevice1","features":[351,352]},{"name":"DML_ACTIVATION_CELU_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_ELU_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_HARDMAX_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_HARD_SIGMOID_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_IDENTITY_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_LEAKY_RELU_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_LINEAR_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_LOG_SOFTMAX_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_PARAMETERIZED_RELU_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_PARAMETRIC_SOFTPLUS_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_RELU_GRAD_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_RELU_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_SCALED_ELU_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_SCALED_TANH_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_SHRINK_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_SIGMOID_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_SOFTMAX_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_SOFTPLUS_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_SOFTSIGN_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_TANH_OPERATOR_DESC","features":[351]},{"name":"DML_ACTIVATION_THRESHOLDED_RELU_OPERATOR_DESC","features":[351]},{"name":"DML_ADAM_OPTIMIZER_OPERATOR_DESC","features":[351]},{"name":"DML_ARGMAX_OPERATOR_DESC","features":[351]},{"name":"DML_ARGMIN_OPERATOR_DESC","features":[351]},{"name":"DML_AVERAGE_POOLING_GRAD_OPERATOR_DESC","features":[351,305]},{"name":"DML_AVERAGE_POOLING_OPERATOR_DESC","features":[351,305]},{"name":"DML_AXIS_DIRECTION","features":[351]},{"name":"DML_AXIS_DIRECTION_DECREASING","features":[351]},{"name":"DML_AXIS_DIRECTION_INCREASING","features":[351]},{"name":"DML_BATCH_NORMALIZATION_GRAD_OPERATOR_DESC","features":[351]},{"name":"DML_BATCH_NORMALIZATION_OPERATOR_DESC","features":[351,305]},{"name":"DML_BINDING_DESC","features":[351]},{"name":"DML_BINDING_PROPERTIES","features":[351]},{"name":"DML_BINDING_TABLE_DESC","features":[351,352]},{"name":"DML_BINDING_TYPE","features":[351]},{"name":"DML_BINDING_TYPE_BUFFER","features":[351]},{"name":"DML_BINDING_TYPE_BUFFER_ARRAY","features":[351]},{"name":"DML_BINDING_TYPE_NONE","features":[351]},{"name":"DML_BUFFER_ARRAY_BINDING","features":[351,352]},{"name":"DML_BUFFER_BINDING","features":[351,352]},{"name":"DML_BUFFER_TENSOR_DESC","features":[351]},{"name":"DML_CAST_OPERATOR_DESC","features":[351]},{"name":"DML_CONVOLUTION_DIRECTION","features":[351]},{"name":"DML_CONVOLUTION_DIRECTION_BACKWARD","features":[351]},{"name":"DML_CONVOLUTION_DIRECTION_FORWARD","features":[351]},{"name":"DML_CONVOLUTION_INTEGER_OPERATOR_DESC","features":[351]},{"name":"DML_CONVOLUTION_MODE","features":[351]},{"name":"DML_CONVOLUTION_MODE_CONVOLUTION","features":[351]},{"name":"DML_CONVOLUTION_MODE_CROSS_CORRELATION","features":[351]},{"name":"DML_CONVOLUTION_OPERATOR_DESC","features":[351]},{"name":"DML_CREATE_DEVICE_FLAGS","features":[351]},{"name":"DML_CREATE_DEVICE_FLAG_DEBUG","features":[351]},{"name":"DML_CREATE_DEVICE_FLAG_NONE","features":[351]},{"name":"DML_CUMULATIVE_PRODUCT_OPERATOR_DESC","features":[351,305]},{"name":"DML_CUMULATIVE_SUMMATION_OPERATOR_DESC","features":[351,305]},{"name":"DML_DEPTH_SPACE_ORDER","features":[351]},{"name":"DML_DEPTH_SPACE_ORDER_COLUMN_ROW_DEPTH","features":[351]},{"name":"DML_DEPTH_SPACE_ORDER_DEPTH_COLUMN_ROW","features":[351]},{"name":"DML_DEPTH_TO_SPACE1_OPERATOR_DESC","features":[351]},{"name":"DML_DEPTH_TO_SPACE_OPERATOR_DESC","features":[351]},{"name":"DML_DIAGONAL_MATRIX_OPERATOR_DESC","features":[351]},{"name":"DML_DYNAMIC_QUANTIZE_LINEAR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ABS_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ACOSH_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ACOS_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ADD1_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ADD_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ASINH_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ASIN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ATANH_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ATAN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ATAN_YX_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_BIT_AND_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_BIT_COUNT_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_BIT_NOT_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_BIT_OR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_BIT_SHIFT_LEFT_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_BIT_SHIFT_RIGHT_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_BIT_XOR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_CEIL_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_CLIP_GRAD_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_CLIP_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_CONSTANT_POW_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_COSH_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_COS_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_DEQUANTIZE_LINEAR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_DIFFERENCE_SQUARE_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_DIVIDE_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ERF_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_EXP_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_FLOOR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_IDENTITY_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_IF_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_IS_INFINITY_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_IS_NAN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_AND_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_EQUALS_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_GREATER_THAN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_GREATER_THAN_OR_EQUAL_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_LESS_THAN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_LESS_THAN_OR_EQUAL_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_NOT_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_OR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOGICAL_XOR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_LOG_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_MAX_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_MEAN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_MIN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_MODULUS_FLOOR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_MODULUS_TRUNCATE_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_MULTIPLY_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_POW_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_QUANTIZED_LINEAR_ADD_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_QUANTIZE_LINEAR_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_RECIP_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_ROUND_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_SIGN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_SINH_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_SIN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_SQRT_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_SUBTRACT_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_TANH_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_TAN_OPERATOR_DESC","features":[351]},{"name":"DML_ELEMENT_WISE_THRESHOLD_OPERATOR_DESC","features":[351]},{"name":"DML_EXECUTION_FLAGS","features":[351]},{"name":"DML_EXECUTION_FLAG_ALLOW_HALF_PRECISION_COMPUTATION","features":[351]},{"name":"DML_EXECUTION_FLAG_DESCRIPTORS_VOLATILE","features":[351]},{"name":"DML_EXECUTION_FLAG_DISABLE_META_COMMANDS","features":[351]},{"name":"DML_EXECUTION_FLAG_NONE","features":[351]},{"name":"DML_FEATURE","features":[351]},{"name":"DML_FEATURE_DATA_FEATURE_LEVELS","features":[351]},{"name":"DML_FEATURE_DATA_TENSOR_DATA_TYPE_SUPPORT","features":[351,305]},{"name":"DML_FEATURE_FEATURE_LEVELS","features":[351]},{"name":"DML_FEATURE_LEVEL","features":[351]},{"name":"DML_FEATURE_LEVEL_1_0","features":[351]},{"name":"DML_FEATURE_LEVEL_2_0","features":[351]},{"name":"DML_FEATURE_LEVEL_2_1","features":[351]},{"name":"DML_FEATURE_LEVEL_3_0","features":[351]},{"name":"DML_FEATURE_LEVEL_3_1","features":[351]},{"name":"DML_FEATURE_LEVEL_4_0","features":[351]},{"name":"DML_FEATURE_LEVEL_4_1","features":[351]},{"name":"DML_FEATURE_LEVEL_5_0","features":[351]},{"name":"DML_FEATURE_QUERY_FEATURE_LEVELS","features":[351]},{"name":"DML_FEATURE_QUERY_TENSOR_DATA_TYPE_SUPPORT","features":[351]},{"name":"DML_FEATURE_TENSOR_DATA_TYPE_SUPPORT","features":[351]},{"name":"DML_FILL_VALUE_CONSTANT_OPERATOR_DESC","features":[351]},{"name":"DML_FILL_VALUE_SEQUENCE_OPERATOR_DESC","features":[351]},{"name":"DML_GATHER_ELEMENTS_OPERATOR_DESC","features":[351]},{"name":"DML_GATHER_ND1_OPERATOR_DESC","features":[351]},{"name":"DML_GATHER_ND_OPERATOR_DESC","features":[351]},{"name":"DML_GATHER_OPERATOR_DESC","features":[351]},{"name":"DML_GEMM_OPERATOR_DESC","features":[351]},{"name":"DML_GRAPH_DESC","features":[351]},{"name":"DML_GRAPH_EDGE_DESC","features":[351]},{"name":"DML_GRAPH_EDGE_TYPE","features":[351]},{"name":"DML_GRAPH_EDGE_TYPE_INPUT","features":[351]},{"name":"DML_GRAPH_EDGE_TYPE_INTERMEDIATE","features":[351]},{"name":"DML_GRAPH_EDGE_TYPE_INVALID","features":[351]},{"name":"DML_GRAPH_EDGE_TYPE_OUTPUT","features":[351]},{"name":"DML_GRAPH_NODE_DESC","features":[351]},{"name":"DML_GRAPH_NODE_TYPE","features":[351]},{"name":"DML_GRAPH_NODE_TYPE_INVALID","features":[351]},{"name":"DML_GRAPH_NODE_TYPE_OPERATOR","features":[351]},{"name":"DML_GRU_OPERATOR_DESC","features":[351,305]},{"name":"DML_INPUT_GRAPH_EDGE_DESC","features":[351]},{"name":"DML_INTERMEDIATE_GRAPH_EDGE_DESC","features":[351]},{"name":"DML_INTERPOLATION_MODE","features":[351]},{"name":"DML_INTERPOLATION_MODE_LINEAR","features":[351]},{"name":"DML_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[351]},{"name":"DML_IS_INFINITY_MODE","features":[351]},{"name":"DML_IS_INFINITY_MODE_EITHER","features":[351]},{"name":"DML_IS_INFINITY_MODE_NEGATIVE","features":[351]},{"name":"DML_IS_INFINITY_MODE_POSITIVE","features":[351]},{"name":"DML_JOIN_OPERATOR_DESC","features":[351]},{"name":"DML_LOCAL_RESPONSE_NORMALIZATION_GRAD_OPERATOR_DESC","features":[351,305]},{"name":"DML_LOCAL_RESPONSE_NORMALIZATION_OPERATOR_DESC","features":[351,305]},{"name":"DML_LP_NORMALIZATION_OPERATOR_DESC","features":[351]},{"name":"DML_LP_POOLING_OPERATOR_DESC","features":[351]},{"name":"DML_LSTM_OPERATOR_DESC","features":[351,305]},{"name":"DML_MATRIX_MULTIPLY_INTEGER_OPERATOR_DESC","features":[351]},{"name":"DML_MATRIX_TRANSFORM","features":[351]},{"name":"DML_MATRIX_TRANSFORM_NONE","features":[351]},{"name":"DML_MATRIX_TRANSFORM_TRANSPOSE","features":[351]},{"name":"DML_MAX_POOLING1_OPERATOR_DESC","features":[351]},{"name":"DML_MAX_POOLING2_OPERATOR_DESC","features":[351]},{"name":"DML_MAX_POOLING_GRAD_OPERATOR_DESC","features":[351]},{"name":"DML_MAX_POOLING_OPERATOR_DESC","features":[351]},{"name":"DML_MAX_UNPOOLING_OPERATOR_DESC","features":[351]},{"name":"DML_MEAN_VARIANCE_NORMALIZATION1_OPERATOR_DESC","features":[351,305]},{"name":"DML_MEAN_VARIANCE_NORMALIZATION_OPERATOR_DESC","features":[351,305]},{"name":"DML_MINIMUM_BUFFER_TENSOR_ALIGNMENT","features":[351]},{"name":"DML_NONZERO_COORDINATES_OPERATOR_DESC","features":[351]},{"name":"DML_ONE_HOT_OPERATOR_DESC","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_CELU","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_ELU","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_HARDMAX","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_HARD_SIGMOID","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_IDENTITY","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_LEAKY_RELU","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_LINEAR","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_LOG_SOFTMAX","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_PARAMETERIZED_RELU","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_PARAMETRIC_SOFTPLUS","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_RELU","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_RELU_GRAD","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_SCALED_ELU","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_SCALED_TANH","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_SHRINK","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_SIGMOID","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_SOFTMAX","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_SOFTPLUS","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_SOFTSIGN","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_TANH","features":[351]},{"name":"DML_OPERATOR_ACTIVATION_THRESHOLDED_RELU","features":[351]},{"name":"DML_OPERATOR_ADAM_OPTIMIZER","features":[351]},{"name":"DML_OPERATOR_ARGMAX","features":[351]},{"name":"DML_OPERATOR_ARGMIN","features":[351]},{"name":"DML_OPERATOR_AVERAGE_POOLING","features":[351]},{"name":"DML_OPERATOR_AVERAGE_POOLING_GRAD","features":[351]},{"name":"DML_OPERATOR_BATCH_NORMALIZATION","features":[351]},{"name":"DML_OPERATOR_BATCH_NORMALIZATION_GRAD","features":[351]},{"name":"DML_OPERATOR_CAST","features":[351]},{"name":"DML_OPERATOR_CONVOLUTION","features":[351]},{"name":"DML_OPERATOR_CONVOLUTION_INTEGER","features":[351]},{"name":"DML_OPERATOR_CUMULATIVE_PRODUCT","features":[351]},{"name":"DML_OPERATOR_CUMULATIVE_SUMMATION","features":[351]},{"name":"DML_OPERATOR_DEPTH_TO_SPACE","features":[351]},{"name":"DML_OPERATOR_DEPTH_TO_SPACE1","features":[351]},{"name":"DML_OPERATOR_DESC","features":[351]},{"name":"DML_OPERATOR_DIAGONAL_MATRIX","features":[351]},{"name":"DML_OPERATOR_DYNAMIC_QUANTIZE_LINEAR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ABS","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ACOS","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ACOSH","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ADD","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ADD1","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ASIN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ASINH","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ATAN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ATANH","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ATAN_YX","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_AND","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_COUNT","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_NOT","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_OR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_SHIFT_LEFT","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_SHIFT_RIGHT","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_BIT_XOR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_CEIL","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_CLIP","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_CLIP_GRAD","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_CONSTANT_POW","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_COS","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_COSH","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_DEQUANTIZE_LINEAR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_DIFFERENCE_SQUARE","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_DIVIDE","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ERF","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_EXP","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_FLOOR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_IDENTITY","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_IF","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_IS_INFINITY","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_IS_NAN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOG","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_AND","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_EQUALS","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_GREATER_THAN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_GREATER_THAN_OR_EQUAL","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_LESS_THAN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_LESS_THAN_OR_EQUAL","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_NOT","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_OR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_LOGICAL_XOR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_MAX","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_MEAN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_MIN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_MODULUS_FLOOR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_MODULUS_TRUNCATE","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_MULTIPLY","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_POW","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_QUANTIZED_LINEAR_ADD","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_QUANTIZE_LINEAR","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_RECIP","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_ROUND","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_SIGN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_SIN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_SINH","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_SQRT","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_SUBTRACT","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_TAN","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_TANH","features":[351]},{"name":"DML_OPERATOR_ELEMENT_WISE_THRESHOLD","features":[351]},{"name":"DML_OPERATOR_FILL_VALUE_CONSTANT","features":[351]},{"name":"DML_OPERATOR_FILL_VALUE_SEQUENCE","features":[351]},{"name":"DML_OPERATOR_GATHER","features":[351]},{"name":"DML_OPERATOR_GATHER_ELEMENTS","features":[351]},{"name":"DML_OPERATOR_GATHER_ND","features":[351]},{"name":"DML_OPERATOR_GATHER_ND1","features":[351]},{"name":"DML_OPERATOR_GEMM","features":[351]},{"name":"DML_OPERATOR_GRAPH_NODE_DESC","features":[351]},{"name":"DML_OPERATOR_GRU","features":[351]},{"name":"DML_OPERATOR_INVALID","features":[351]},{"name":"DML_OPERATOR_JOIN","features":[351]},{"name":"DML_OPERATOR_LOCAL_RESPONSE_NORMALIZATION","features":[351]},{"name":"DML_OPERATOR_LOCAL_RESPONSE_NORMALIZATION_GRAD","features":[351]},{"name":"DML_OPERATOR_LP_NORMALIZATION","features":[351]},{"name":"DML_OPERATOR_LP_POOLING","features":[351]},{"name":"DML_OPERATOR_LSTM","features":[351]},{"name":"DML_OPERATOR_MATRIX_MULTIPLY_INTEGER","features":[351]},{"name":"DML_OPERATOR_MAX_POOLING","features":[351]},{"name":"DML_OPERATOR_MAX_POOLING1","features":[351]},{"name":"DML_OPERATOR_MAX_POOLING2","features":[351]},{"name":"DML_OPERATOR_MAX_POOLING_GRAD","features":[351]},{"name":"DML_OPERATOR_MAX_UNPOOLING","features":[351]},{"name":"DML_OPERATOR_MEAN_VARIANCE_NORMALIZATION","features":[351]},{"name":"DML_OPERATOR_MEAN_VARIANCE_NORMALIZATION1","features":[351]},{"name":"DML_OPERATOR_NONZERO_COORDINATES","features":[351]},{"name":"DML_OPERATOR_ONE_HOT","features":[351]},{"name":"DML_OPERATOR_PADDING","features":[351]},{"name":"DML_OPERATOR_QUANTIZED_LINEAR_CONVOLUTION","features":[351]},{"name":"DML_OPERATOR_QUANTIZED_LINEAR_MATRIX_MULTIPLY","features":[351]},{"name":"DML_OPERATOR_RANDOM_GENERATOR","features":[351]},{"name":"DML_OPERATOR_REDUCE","features":[351]},{"name":"DML_OPERATOR_RESAMPLE","features":[351]},{"name":"DML_OPERATOR_RESAMPLE1","features":[351]},{"name":"DML_OPERATOR_RESAMPLE_GRAD","features":[351]},{"name":"DML_OPERATOR_REVERSE_SUBSEQUENCES","features":[351]},{"name":"DML_OPERATOR_RNN","features":[351]},{"name":"DML_OPERATOR_ROI_ALIGN","features":[351]},{"name":"DML_OPERATOR_ROI_ALIGN1","features":[351]},{"name":"DML_OPERATOR_ROI_POOLING","features":[351]},{"name":"DML_OPERATOR_SCATTER","features":[351]},{"name":"DML_OPERATOR_SCATTER_ELEMENTS","features":[351]},{"name":"DML_OPERATOR_SCATTER_ND","features":[351]},{"name":"DML_OPERATOR_SLICE","features":[351]},{"name":"DML_OPERATOR_SLICE1","features":[351]},{"name":"DML_OPERATOR_SLICE_GRAD","features":[351]},{"name":"DML_OPERATOR_SPACE_TO_DEPTH","features":[351]},{"name":"DML_OPERATOR_SPACE_TO_DEPTH1","features":[351]},{"name":"DML_OPERATOR_SPLIT","features":[351]},{"name":"DML_OPERATOR_TILE","features":[351]},{"name":"DML_OPERATOR_TOP_K","features":[351]},{"name":"DML_OPERATOR_TOP_K1","features":[351]},{"name":"DML_OPERATOR_TYPE","features":[351]},{"name":"DML_OPERATOR_UPSAMPLE_2D","features":[351]},{"name":"DML_OPERATOR_VALUE_SCALE_2D","features":[351]},{"name":"DML_OUTPUT_GRAPH_EDGE_DESC","features":[351]},{"name":"DML_PADDING_MODE","features":[351]},{"name":"DML_PADDING_MODE_CONSTANT","features":[351]},{"name":"DML_PADDING_MODE_EDGE","features":[351]},{"name":"DML_PADDING_MODE_REFLECTION","features":[351]},{"name":"DML_PADDING_MODE_SYMMETRIC","features":[351]},{"name":"DML_PADDING_OPERATOR_DESC","features":[351]},{"name":"DML_PERSISTENT_BUFFER_ALIGNMENT","features":[351]},{"name":"DML_QUANTIZED_LINEAR_CONVOLUTION_OPERATOR_DESC","features":[351]},{"name":"DML_QUANTIZED_LINEAR_MATRIX_MULTIPLY_OPERATOR_DESC","features":[351]},{"name":"DML_RANDOM_GENERATOR_OPERATOR_DESC","features":[351]},{"name":"DML_RANDOM_GENERATOR_TYPE","features":[351]},{"name":"DML_RANDOM_GENERATOR_TYPE_PHILOX_4X32_10","features":[351]},{"name":"DML_RECURRENT_NETWORK_DIRECTION","features":[351]},{"name":"DML_RECURRENT_NETWORK_DIRECTION_BACKWARD","features":[351]},{"name":"DML_RECURRENT_NETWORK_DIRECTION_BIDIRECTIONAL","features":[351]},{"name":"DML_RECURRENT_NETWORK_DIRECTION_FORWARD","features":[351]},{"name":"DML_REDUCE_FUNCTION","features":[351]},{"name":"DML_REDUCE_FUNCTION_ARGMAX","features":[351]},{"name":"DML_REDUCE_FUNCTION_ARGMIN","features":[351]},{"name":"DML_REDUCE_FUNCTION_AVERAGE","features":[351]},{"name":"DML_REDUCE_FUNCTION_L1","features":[351]},{"name":"DML_REDUCE_FUNCTION_L2","features":[351]},{"name":"DML_REDUCE_FUNCTION_LOG_SUM","features":[351]},{"name":"DML_REDUCE_FUNCTION_LOG_SUM_EXP","features":[351]},{"name":"DML_REDUCE_FUNCTION_MAX","features":[351]},{"name":"DML_REDUCE_FUNCTION_MIN","features":[351]},{"name":"DML_REDUCE_FUNCTION_MULTIPLY","features":[351]},{"name":"DML_REDUCE_FUNCTION_SUM","features":[351]},{"name":"DML_REDUCE_FUNCTION_SUM_SQUARE","features":[351]},{"name":"DML_REDUCE_OPERATOR_DESC","features":[351]},{"name":"DML_RESAMPLE1_OPERATOR_DESC","features":[351]},{"name":"DML_RESAMPLE_GRAD_OPERATOR_DESC","features":[351]},{"name":"DML_RESAMPLE_OPERATOR_DESC","features":[351]},{"name":"DML_REVERSE_SUBSEQUENCES_OPERATOR_DESC","features":[351]},{"name":"DML_RNN_OPERATOR_DESC","features":[351]},{"name":"DML_ROI_ALIGN1_OPERATOR_DESC","features":[351,305]},{"name":"DML_ROI_ALIGN_OPERATOR_DESC","features":[351]},{"name":"DML_ROI_POOLING_OPERATOR_DESC","features":[351]},{"name":"DML_ROUNDING_MODE","features":[351]},{"name":"DML_ROUNDING_MODE_HALVES_TO_NEAREST_EVEN","features":[351]},{"name":"DML_ROUNDING_MODE_TOWARD_INFINITY","features":[351]},{"name":"DML_ROUNDING_MODE_TOWARD_ZERO","features":[351]},{"name":"DML_SCALAR_UNION","features":[351]},{"name":"DML_SCALE_BIAS","features":[351]},{"name":"DML_SCATTER_ND_OPERATOR_DESC","features":[351]},{"name":"DML_SCATTER_OPERATOR_DESC","features":[351]},{"name":"DML_SIZE_2D","features":[351]},{"name":"DML_SLICE1_OPERATOR_DESC","features":[351]},{"name":"DML_SLICE_GRAD_OPERATOR_DESC","features":[351]},{"name":"DML_SLICE_OPERATOR_DESC","features":[351]},{"name":"DML_SPACE_TO_DEPTH1_OPERATOR_DESC","features":[351]},{"name":"DML_SPACE_TO_DEPTH_OPERATOR_DESC","features":[351]},{"name":"DML_SPLIT_OPERATOR_DESC","features":[351]},{"name":"DML_TARGET_VERSION","features":[351]},{"name":"DML_TEMPORARY_BUFFER_ALIGNMENT","features":[351]},{"name":"DML_TENSOR_DATA_TYPE","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_FLOAT16","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_FLOAT32","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_FLOAT64","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_INT16","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_INT32","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_INT64","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_INT8","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_UINT16","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_UINT32","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_UINT64","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_UINT8","features":[351]},{"name":"DML_TENSOR_DATA_TYPE_UNKNOWN","features":[351]},{"name":"DML_TENSOR_DESC","features":[351]},{"name":"DML_TENSOR_DIMENSION_COUNT_MAX","features":[351]},{"name":"DML_TENSOR_DIMENSION_COUNT_MAX1","features":[351]},{"name":"DML_TENSOR_FLAGS","features":[351]},{"name":"DML_TENSOR_FLAG_NONE","features":[351]},{"name":"DML_TENSOR_FLAG_OWNED_BY_DML","features":[351]},{"name":"DML_TENSOR_TYPE","features":[351]},{"name":"DML_TENSOR_TYPE_BUFFER","features":[351]},{"name":"DML_TENSOR_TYPE_INVALID","features":[351]},{"name":"DML_TILE_OPERATOR_DESC","features":[351]},{"name":"DML_TOP_K1_OPERATOR_DESC","features":[351]},{"name":"DML_TOP_K_OPERATOR_DESC","features":[351]},{"name":"DML_UPSAMPLE_2D_OPERATOR_DESC","features":[351]},{"name":"DML_VALUE_SCALE_2D_OPERATOR_DESC","features":[351]},{"name":"IDMLBindingTable","features":[351]},{"name":"IDMLCommandRecorder","features":[351]},{"name":"IDMLCompiledOperator","features":[351]},{"name":"IDMLDebugDevice","features":[351]},{"name":"IDMLDevice","features":[351]},{"name":"IDMLDevice1","features":[351]},{"name":"IDMLDeviceChild","features":[351]},{"name":"IDMLDispatchable","features":[351]},{"name":"IDMLObject","features":[351]},{"name":"IDMLOperator","features":[351]},{"name":"IDMLOperatorInitializer","features":[351]},{"name":"IDMLPageable","features":[351]}],"364":[{"name":"IMLOperatorAttributes","features":[353]},{"name":"IMLOperatorKernel","features":[353]},{"name":"IMLOperatorKernelContext","features":[353]},{"name":"IMLOperatorKernelCreationContext","features":[353]},{"name":"IMLOperatorKernelFactory","features":[353]},{"name":"IMLOperatorRegistry","features":[353]},{"name":"IMLOperatorShapeInferenceContext","features":[353]},{"name":"IMLOperatorShapeInferrer","features":[353]},{"name":"IMLOperatorTensor","features":[353]},{"name":"IMLOperatorTensorShapeDescription","features":[353]},{"name":"IMLOperatorTypeInferenceContext","features":[353]},{"name":"IMLOperatorTypeInferrer","features":[353]},{"name":"IWinMLEvaluationContext","features":[353]},{"name":"IWinMLModel","features":[353]},{"name":"IWinMLRuntime","features":[353]},{"name":"IWinMLRuntimeFactory","features":[353]},{"name":"MLCreateOperatorRegistry","features":[353]},{"name":"MLOperatorAttribute","features":[353]},{"name":"MLOperatorAttributeNameValue","features":[353]},{"name":"MLOperatorAttributeType","features":[353]},{"name":"MLOperatorEdgeDescription","features":[353]},{"name":"MLOperatorEdgeType","features":[353]},{"name":"MLOperatorEdgeTypeConstraint","features":[353]},{"name":"MLOperatorExecutionType","features":[353]},{"name":"MLOperatorKernelDescription","features":[353]},{"name":"MLOperatorKernelOptions","features":[353]},{"name":"MLOperatorParameterOptions","features":[353]},{"name":"MLOperatorSchemaDescription","features":[353]},{"name":"MLOperatorSchemaEdgeDescription","features":[353]},{"name":"MLOperatorSchemaEdgeTypeFormat","features":[353]},{"name":"MLOperatorSetId","features":[353]},{"name":"MLOperatorTensorDataType","features":[353]},{"name":"WINML_BINDING_DESC","features":[353,352]},{"name":"WINML_BINDING_IMAGE","features":[353]},{"name":"WINML_BINDING_MAP","features":[353]},{"name":"WINML_BINDING_RESOURCE","features":[353]},{"name":"WINML_BINDING_SEQUENCE","features":[353]},{"name":"WINML_BINDING_TENSOR","features":[353]},{"name":"WINML_BINDING_TYPE","features":[353]},{"name":"WINML_BINDING_UNDEFINED","features":[353]},{"name":"WINML_FEATURE_IMAGE","features":[353]},{"name":"WINML_FEATURE_MAP","features":[353]},{"name":"WINML_FEATURE_SEQUENCE","features":[353]},{"name":"WINML_FEATURE_TENSOR","features":[353]},{"name":"WINML_FEATURE_TYPE","features":[353]},{"name":"WINML_FEATURE_UNDEFINED","features":[353]},{"name":"WINML_IMAGE_BINDING_DESC","features":[353]},{"name":"WINML_IMAGE_VARIABLE_DESC","features":[353]},{"name":"WINML_MAP_BINDING_DESC","features":[353]},{"name":"WINML_MAP_VARIABLE_DESC","features":[353]},{"name":"WINML_MODEL_DESC","features":[353]},{"name":"WINML_RESOURCE_BINDING_DESC","features":[353,352]},{"name":"WINML_RUNTIME_CNTK","features":[353]},{"name":"WINML_RUNTIME_TYPE","features":[353]},{"name":"WINML_SEQUENCE_BINDING_DESC","features":[353]},{"name":"WINML_SEQUENCE_VARIABLE_DESC","features":[353]},{"name":"WINML_TENSOR_BINDING_DESC","features":[353]},{"name":"WINML_TENSOR_BOOLEAN","features":[353]},{"name":"WINML_TENSOR_COMPLEX128","features":[353]},{"name":"WINML_TENSOR_COMPLEX64","features":[353]},{"name":"WINML_TENSOR_DATA_TYPE","features":[353]},{"name":"WINML_TENSOR_DIMENSION_COUNT_MAX","features":[353]},{"name":"WINML_TENSOR_DOUBLE","features":[353]},{"name":"WINML_TENSOR_FLOAT","features":[353]},{"name":"WINML_TENSOR_FLOAT16","features":[353]},{"name":"WINML_TENSOR_INT16","features":[353]},{"name":"WINML_TENSOR_INT32","features":[353]},{"name":"WINML_TENSOR_INT64","features":[353]},{"name":"WINML_TENSOR_INT8","features":[353]},{"name":"WINML_TENSOR_STRING","features":[353]},{"name":"WINML_TENSOR_UINT16","features":[353]},{"name":"WINML_TENSOR_UINT32","features":[353]},{"name":"WINML_TENSOR_UINT64","features":[353]},{"name":"WINML_TENSOR_UINT8","features":[353]},{"name":"WINML_TENSOR_UNDEFINED","features":[353]},{"name":"WINML_TENSOR_VARIABLE_DESC","features":[353]},{"name":"WINML_VARIABLE_DESC","features":[353,305]},{"name":"WinMLCreateRuntime","features":[353]}],"365":[{"name":"CLSID_IITCmdInt","features":[354]},{"name":"CLSID_IITDatabase","features":[354]},{"name":"CLSID_IITDatabaseLocal","features":[354]},{"name":"CLSID_IITGroupUpdate","features":[354]},{"name":"CLSID_IITIndexBuild","features":[354]},{"name":"CLSID_IITPropList","features":[354]},{"name":"CLSID_IITResultSet","features":[354]},{"name":"CLSID_IITSvMgr","features":[354]},{"name":"CLSID_IITWWFilterBuild","features":[354]},{"name":"CLSID_IITWordWheel","features":[354]},{"name":"CLSID_IITWordWheelLocal","features":[354]},{"name":"CLSID_IITWordWheelUpdate","features":[354]},{"name":"CLSID_ITEngStemmer","features":[354]},{"name":"CLSID_ITStdBreaker","features":[354]},{"name":"COLUMNSTATUS","features":[354]},{"name":"CProperty","features":[354,305]},{"name":"E_ALL_WILD","features":[354]},{"name":"E_ALREADYINIT","features":[354]},{"name":"E_ALREADYOPEN","features":[354]},{"name":"E_ASSERT","features":[354]},{"name":"E_BADBREAKER","features":[354]},{"name":"E_BADFILE","features":[354]},{"name":"E_BADFILTERSIZE","features":[354]},{"name":"E_BADFORMAT","features":[354]},{"name":"E_BADINDEXFLAGS","features":[354]},{"name":"E_BADPARAM","features":[354]},{"name":"E_BADRANGEOP","features":[354]},{"name":"E_BADVALUE","features":[354]},{"name":"E_BADVERSION","features":[354]},{"name":"E_CANTFINDDLL","features":[354]},{"name":"E_DISKFULL","features":[354]},{"name":"E_DUPLICATE","features":[354]},{"name":"E_EXPECTEDTERM","features":[354]},{"name":"E_FILECLOSE","features":[354]},{"name":"E_FILECREATE","features":[354]},{"name":"E_FILEDELETE","features":[354]},{"name":"E_FILEINVALID","features":[354]},{"name":"E_FILENOTFOUND","features":[354]},{"name":"E_FILEREAD","features":[354]},{"name":"E_FILESEEK","features":[354]},{"name":"E_FILEWRITE","features":[354]},{"name":"E_GETLASTERROR","features":[354]},{"name":"E_GROUPIDTOOBIG","features":[354]},{"name":"E_INTERRUPT","features":[354]},{"name":"E_INVALIDSTATE","features":[354]},{"name":"E_MISSINGPROP","features":[354]},{"name":"E_MISSLPAREN","features":[354]},{"name":"E_MISSQUOTE","features":[354]},{"name":"E_MISSRPAREN","features":[354]},{"name":"E_NAMETOOLONG","features":[354]},{"name":"E_NOHANDLE","features":[354]},{"name":"E_NOKEYPROP","features":[354]},{"name":"E_NOMERGEDDATA","features":[354]},{"name":"E_NOPERMISSION","features":[354]},{"name":"E_NOSTEMMER","features":[354]},{"name":"E_NOTEXIST","features":[354]},{"name":"E_NOTFOUND","features":[354]},{"name":"E_NOTINIT","features":[354]},{"name":"E_NOTOPEN","features":[354]},{"name":"E_NOTSUPPORTED","features":[354]},{"name":"E_NULLQUERY","features":[354]},{"name":"E_OUTOFRANGE","features":[354]},{"name":"E_PROPLISTEMPTY","features":[354]},{"name":"E_PROPLISTNOTEMPTY","features":[354]},{"name":"E_RESULTSETEMPTY","features":[354]},{"name":"E_STOPWORD","features":[354]},{"name":"E_TOODEEP","features":[354]},{"name":"E_TOOMANYCOLUMNS","features":[354]},{"name":"E_TOOMANYDUPS","features":[354]},{"name":"E_TOOMANYOBJECTS","features":[354]},{"name":"E_TOOMANYTITLES","features":[354]},{"name":"E_TOOMANYTOPICS","features":[354]},{"name":"E_TREETOOBIG","features":[354]},{"name":"E_UNKNOWN_TRANSPORT","features":[354]},{"name":"E_UNMATCHEDTYPE","features":[354]},{"name":"E_UNSUPPORTED_TRANSPORT","features":[354]},{"name":"E_WILD_IN_DTYPE","features":[354]},{"name":"E_WORDTOOLONG","features":[354]},{"name":"HHACT_BACK","features":[354]},{"name":"HHACT_CONTRACT","features":[354]},{"name":"HHACT_CUSTOMIZE","features":[354]},{"name":"HHACT_EXPAND","features":[354]},{"name":"HHACT_FORWARD","features":[354]},{"name":"HHACT_HIGHLIGHT","features":[354]},{"name":"HHACT_HOME","features":[354]},{"name":"HHACT_JUMP1","features":[354]},{"name":"HHACT_JUMP2","features":[354]},{"name":"HHACT_LAST_ENUM","features":[354]},{"name":"HHACT_NOTES","features":[354]},{"name":"HHACT_OPTIONS","features":[354]},{"name":"HHACT_PRINT","features":[354]},{"name":"HHACT_REFRESH","features":[354]},{"name":"HHACT_STOP","features":[354]},{"name":"HHACT_SYNC","features":[354]},{"name":"HHACT_TAB_CONTENTS","features":[354]},{"name":"HHACT_TAB_FAVORITES","features":[354]},{"name":"HHACT_TAB_HISTORY","features":[354]},{"name":"HHACT_TAB_INDEX","features":[354]},{"name":"HHACT_TAB_SEARCH","features":[354]},{"name":"HHACT_TOC_NEXT","features":[354]},{"name":"HHACT_TOC_PREV","features":[354]},{"name":"HHACT_ZOOM","features":[354]},{"name":"HHNTRACK","features":[354,305,355]},{"name":"HHN_FIRST","features":[354]},{"name":"HHN_LAST","features":[354]},{"name":"HHN_NAVCOMPLETE","features":[354]},{"name":"HHN_NOTIFY","features":[354,305,355]},{"name":"HHN_TRACK","features":[354]},{"name":"HHN_WINDOW_CREATE","features":[354]},{"name":"HHWIN_BUTTON_BACK","features":[354]},{"name":"HHWIN_BUTTON_BROWSE_BCK","features":[354]},{"name":"HHWIN_BUTTON_BROWSE_FWD","features":[354]},{"name":"HHWIN_BUTTON_CONTENTS","features":[354]},{"name":"HHWIN_BUTTON_EXPAND","features":[354]},{"name":"HHWIN_BUTTON_FAVORITES","features":[354]},{"name":"HHWIN_BUTTON_FORWARD","features":[354]},{"name":"HHWIN_BUTTON_HISTORY","features":[354]},{"name":"HHWIN_BUTTON_HOME","features":[354]},{"name":"HHWIN_BUTTON_INDEX","features":[354]},{"name":"HHWIN_BUTTON_JUMP1","features":[354]},{"name":"HHWIN_BUTTON_JUMP2","features":[354]},{"name":"HHWIN_BUTTON_NOTES","features":[354]},{"name":"HHWIN_BUTTON_OPTIONS","features":[354]},{"name":"HHWIN_BUTTON_PRINT","features":[354]},{"name":"HHWIN_BUTTON_REFRESH","features":[354]},{"name":"HHWIN_BUTTON_SEARCH","features":[354]},{"name":"HHWIN_BUTTON_STOP","features":[354]},{"name":"HHWIN_BUTTON_SYNC","features":[354]},{"name":"HHWIN_BUTTON_TOC_NEXT","features":[354]},{"name":"HHWIN_BUTTON_TOC_PREV","features":[354]},{"name":"HHWIN_BUTTON_ZOOM","features":[354]},{"name":"HHWIN_NAVTAB_BOTTOM","features":[354]},{"name":"HHWIN_NAVTAB_LEFT","features":[354]},{"name":"HHWIN_NAVTAB_TOP","features":[354]},{"name":"HHWIN_NAVTYPE_AUTHOR","features":[354]},{"name":"HHWIN_NAVTYPE_CUSTOM_FIRST","features":[354]},{"name":"HHWIN_NAVTYPE_FAVORITES","features":[354]},{"name":"HHWIN_NAVTYPE_HISTORY","features":[354]},{"name":"HHWIN_NAVTYPE_INDEX","features":[354]},{"name":"HHWIN_NAVTYPE_SEARCH","features":[354]},{"name":"HHWIN_NAVTYPE_TOC","features":[354]},{"name":"HHWIN_PARAM_CUR_TAB","features":[354]},{"name":"HHWIN_PARAM_EXPANSION","features":[354]},{"name":"HHWIN_PARAM_EXSTYLES","features":[354]},{"name":"HHWIN_PARAM_HISTORY_COUNT","features":[354]},{"name":"HHWIN_PARAM_INFOTYPES","features":[354]},{"name":"HHWIN_PARAM_NAV_WIDTH","features":[354]},{"name":"HHWIN_PARAM_PROPERTIES","features":[354]},{"name":"HHWIN_PARAM_RECT","features":[354]},{"name":"HHWIN_PARAM_SHOWSTATE","features":[354]},{"name":"HHWIN_PARAM_STYLES","features":[354]},{"name":"HHWIN_PARAM_TABORDER","features":[354]},{"name":"HHWIN_PARAM_TABPOS","features":[354]},{"name":"HHWIN_PARAM_TB_FLAGS","features":[354]},{"name":"HHWIN_PROP_AUTO_SYNC","features":[354]},{"name":"HHWIN_PROP_CHANGE_TITLE","features":[354]},{"name":"HHWIN_PROP_MENU","features":[354]},{"name":"HHWIN_PROP_NAV_ONLY_WIN","features":[354]},{"name":"HHWIN_PROP_NODEF_EXSTYLES","features":[354]},{"name":"HHWIN_PROP_NODEF_STYLES","features":[354]},{"name":"HHWIN_PROP_NOTB_TEXT","features":[354]},{"name":"HHWIN_PROP_NOTITLEBAR","features":[354]},{"name":"HHWIN_PROP_NO_TOOLBAR","features":[354]},{"name":"HHWIN_PROP_ONTOP","features":[354]},{"name":"HHWIN_PROP_POST_QUIT","features":[354]},{"name":"HHWIN_PROP_TAB_ADVSEARCH","features":[354]},{"name":"HHWIN_PROP_TAB_AUTOHIDESHOW","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM1","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM2","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM3","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM4","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM5","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM6","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM7","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM8","features":[354]},{"name":"HHWIN_PROP_TAB_CUSTOM9","features":[354]},{"name":"HHWIN_PROP_TAB_FAVORITES","features":[354]},{"name":"HHWIN_PROP_TAB_HISTORY","features":[354]},{"name":"HHWIN_PROP_TAB_SEARCH","features":[354]},{"name":"HHWIN_PROP_TRACKING","features":[354]},{"name":"HHWIN_PROP_TRI_PANE","features":[354]},{"name":"HHWIN_PROP_USER_POS","features":[354]},{"name":"HHWIN_TB_MARGIN","features":[354]},{"name":"HH_AKLINK","features":[354,305]},{"name":"HH_ALINK_LOOKUP","features":[354]},{"name":"HH_CLOSE_ALL","features":[354]},{"name":"HH_DISPLAY_INDEX","features":[354]},{"name":"HH_DISPLAY_SEARCH","features":[354]},{"name":"HH_DISPLAY_TEXT_POPUP","features":[354]},{"name":"HH_DISPLAY_TOC","features":[354]},{"name":"HH_DISPLAY_TOPIC","features":[354]},{"name":"HH_ENUM_CAT","features":[354]},{"name":"HH_ENUM_CATEGORY","features":[354]},{"name":"HH_ENUM_CATEGORY_IT","features":[354]},{"name":"HH_ENUM_INFO_TYPE","features":[354]},{"name":"HH_ENUM_IT","features":[354]},{"name":"HH_FTS_DEFAULT_PROXIMITY","features":[354]},{"name":"HH_FTS_QUERY","features":[354,305]},{"name":"HH_GET_LAST_ERROR","features":[354]},{"name":"HH_GET_WIN_HANDLE","features":[354]},{"name":"HH_GET_WIN_TYPE","features":[354]},{"name":"HH_GLOBAL_PROPERTY","features":[354]},{"name":"HH_GPROPID","features":[354]},{"name":"HH_GPROPID_CONTENT_LANGUAGE","features":[354]},{"name":"HH_GPROPID_CURRENT_SUBSET","features":[354]},{"name":"HH_GPROPID_SINGLETHREAD","features":[354]},{"name":"HH_GPROPID_TOOLBAR_MARGIN","features":[354]},{"name":"HH_GPROPID_UI_LANGUAGE","features":[354]},{"name":"HH_HELP_CONTEXT","features":[354]},{"name":"HH_HELP_FINDER","features":[354]},{"name":"HH_INITIALIZE","features":[354]},{"name":"HH_KEYWORD_LOOKUP","features":[354]},{"name":"HH_MAX_TABS","features":[354]},{"name":"HH_MAX_TABS_CUSTOM","features":[354]},{"name":"HH_POPUP","features":[354,305]},{"name":"HH_PRETRANSLATEMESSAGE","features":[354]},{"name":"HH_RESERVED1","features":[354]},{"name":"HH_RESERVED2","features":[354]},{"name":"HH_RESERVED3","features":[354]},{"name":"HH_RESET_IT_FILTER","features":[354]},{"name":"HH_SAFE_DISPLAY_TOPIC","features":[354]},{"name":"HH_SET_EXCLUSIVE_FILTER","features":[354]},{"name":"HH_SET_GLOBAL_PROPERTY","features":[354]},{"name":"HH_SET_INCLUSIVE_FILTER","features":[354]},{"name":"HH_SET_INFOTYPE","features":[354]},{"name":"HH_SET_INFO_TYPE","features":[354]},{"name":"HH_SET_QUERYSERVICE","features":[354]},{"name":"HH_SET_WIN_TYPE","features":[354]},{"name":"HH_SYNC","features":[354]},{"name":"HH_TAB_AUTHOR","features":[354]},{"name":"HH_TAB_CONTENTS","features":[354]},{"name":"HH_TAB_CUSTOM_FIRST","features":[354]},{"name":"HH_TAB_CUSTOM_LAST","features":[354]},{"name":"HH_TAB_FAVORITES","features":[354]},{"name":"HH_TAB_HISTORY","features":[354]},{"name":"HH_TAB_INDEX","features":[354]},{"name":"HH_TAB_SEARCH","features":[354]},{"name":"HH_TP_HELP_CONTEXTMENU","features":[354]},{"name":"HH_TP_HELP_WM_HELP","features":[354]},{"name":"HH_UNINITIALIZE","features":[354]},{"name":"HH_WINTYPE","features":[354,305]},{"name":"HTML_HELP_COMMAND","features":[354]},{"name":"HtmlHelpA","features":[354,305]},{"name":"HtmlHelpW","features":[354,305]},{"name":"IDTB_BACK","features":[354]},{"name":"IDTB_BROWSE_BACK","features":[354]},{"name":"IDTB_BROWSE_FWD","features":[354]},{"name":"IDTB_CONTENTS","features":[354]},{"name":"IDTB_CONTRACT","features":[354]},{"name":"IDTB_CUSTOMIZE","features":[354]},{"name":"IDTB_EXPAND","features":[354]},{"name":"IDTB_FAVORITES","features":[354]},{"name":"IDTB_FORWARD","features":[354]},{"name":"IDTB_HISTORY","features":[354]},{"name":"IDTB_HOME","features":[354]},{"name":"IDTB_INDEX","features":[354]},{"name":"IDTB_JUMP1","features":[354]},{"name":"IDTB_JUMP2","features":[354]},{"name":"IDTB_NOTES","features":[354]},{"name":"IDTB_OPTIONS","features":[354]},{"name":"IDTB_PRINT","features":[354]},{"name":"IDTB_REFRESH","features":[354]},{"name":"IDTB_SEARCH","features":[354]},{"name":"IDTB_STOP","features":[354]},{"name":"IDTB_SYNC","features":[354]},{"name":"IDTB_TOC_NEXT","features":[354]},{"name":"IDTB_TOC_PREV","features":[354]},{"name":"IDTB_ZOOM","features":[354]},{"name":"IITDatabase","features":[354]},{"name":"IITPropList","features":[354,356]},{"name":"IITResultSet","features":[354]},{"name":"IITWBC_BREAK_ACCEPT_WILDCARDS","features":[354]},{"name":"IITWBC_BREAK_AND_STEM","features":[354]},{"name":"IStemSink","features":[354]},{"name":"IStemmerConfig","features":[354]},{"name":"ITWW_CBKEY_MAX","features":[354]},{"name":"ITWW_OPEN_NOCONNECT","features":[354]},{"name":"IT_EXCLUSIVE","features":[354]},{"name":"IT_HIDDEN","features":[354]},{"name":"IT_INCLUSIVE","features":[354]},{"name":"IWordBreakerConfig","features":[354]},{"name":"MAX_COLUMNS","features":[354]},{"name":"PFNCOLHEAPFREE","features":[354]},{"name":"PRIORITY","features":[354]},{"name":"PRIORITY_HIGH","features":[354]},{"name":"PRIORITY_LOW","features":[354]},{"name":"PRIORITY_NORMAL","features":[354]},{"name":"PROP_ADD","features":[354]},{"name":"PROP_DELETE","features":[354]},{"name":"PROP_UPDATE","features":[354]},{"name":"ROWSTATUS","features":[354]},{"name":"STDPROP_DISPLAYKEY","features":[354]},{"name":"STDPROP_INDEX_BREAK","features":[354]},{"name":"STDPROP_INDEX_DTYPE","features":[354]},{"name":"STDPROP_INDEX_LENGTH","features":[354]},{"name":"STDPROP_INDEX_TERM","features":[354]},{"name":"STDPROP_INDEX_TERM_RAW_LENGTH","features":[354]},{"name":"STDPROP_INDEX_TEXT","features":[354]},{"name":"STDPROP_INDEX_VFLD","features":[354]},{"name":"STDPROP_KEY","features":[354]},{"name":"STDPROP_SORTKEY","features":[354]},{"name":"STDPROP_SORTORDINAL","features":[354]},{"name":"STDPROP_TITLE","features":[354]},{"name":"STDPROP_UID","features":[354]},{"name":"STDPROP_USERDATA","features":[354]},{"name":"STDPROP_USERPROP_BASE","features":[354]},{"name":"STDPROP_USERPROP_MAX","features":[354]},{"name":"SZ_WWDEST_GLOBAL","features":[354]},{"name":"SZ_WWDEST_KEY","features":[354]},{"name":"SZ_WWDEST_OCC","features":[354]},{"name":"TYPE_POINTER","features":[354]},{"name":"TYPE_STRING","features":[354]},{"name":"TYPE_VALUE","features":[354]}],"366":[{"name":"DRMACTSERVINFOVERSION","features":[357]},{"name":"DRMATTESTTYPE","features":[357]},{"name":"DRMATTESTTYPE_FULLENVIRONMENT","features":[357]},{"name":"DRMATTESTTYPE_HASHONLY","features":[357]},{"name":"DRMAcquireAdvisories","features":[357]},{"name":"DRMAcquireIssuanceLicenseTemplate","features":[357]},{"name":"DRMAcquireLicense","features":[357]},{"name":"DRMActivate","features":[357,305]},{"name":"DRMAddLicense","features":[357]},{"name":"DRMAddRightWithUser","features":[357]},{"name":"DRMAttest","features":[357]},{"name":"DRMBINDINGFLAGS_IGNORE_VALIDITY_INTERVALS","features":[357]},{"name":"DRMBOUNDLICENSEPARAMS","features":[357]},{"name":"DRMBOUNDLICENSEPARAMSVERSION","features":[357]},{"name":"DRMCALLBACK","features":[357]},{"name":"DRMCALLBACKVERSION","features":[357]},{"name":"DRMCLIENTSTRUCTVERSION","features":[357]},{"name":"DRMCheckSecurity","features":[357]},{"name":"DRMClearAllRights","features":[357]},{"name":"DRMCloseEnvironmentHandle","features":[357]},{"name":"DRMCloseHandle","features":[357]},{"name":"DRMClosePubHandle","features":[357]},{"name":"DRMCloseQueryHandle","features":[357]},{"name":"DRMCloseSession","features":[357]},{"name":"DRMConstructCertificateChain","features":[357]},{"name":"DRMCreateBoundLicense","features":[357]},{"name":"DRMCreateClientSession","features":[357]},{"name":"DRMCreateEnablingBitsDecryptor","features":[357]},{"name":"DRMCreateEnablingBitsEncryptor","features":[357]},{"name":"DRMCreateEnablingPrincipal","features":[357]},{"name":"DRMCreateIssuanceLicense","features":[357,305]},{"name":"DRMCreateLicenseStorageSession","features":[357]},{"name":"DRMCreateRight","features":[357,305]},{"name":"DRMCreateUser","features":[357]},{"name":"DRMDecode","features":[357]},{"name":"DRMDeconstructCertificateChain","features":[357]},{"name":"DRMDecrypt","features":[357]},{"name":"DRMDeleteLicense","features":[357]},{"name":"DRMDuplicateEnvironmentHandle","features":[357]},{"name":"DRMDuplicateHandle","features":[357]},{"name":"DRMDuplicatePubHandle","features":[357]},{"name":"DRMDuplicateSession","features":[357]},{"name":"DRMENCODINGTYPE","features":[357]},{"name":"DRMENCODINGTYPE_BASE64","features":[357]},{"name":"DRMENCODINGTYPE_LONG","features":[357]},{"name":"DRMENCODINGTYPE_RAW","features":[357]},{"name":"DRMENCODINGTYPE_STRING","features":[357]},{"name":"DRMENCODINGTYPE_TIME","features":[357]},{"name":"DRMENCODINGTYPE_UINT","features":[357]},{"name":"DRMENVHANDLE_INVALID","features":[357]},{"name":"DRMEncode","features":[357]},{"name":"DRMEncrypt","features":[357]},{"name":"DRMEnumerateLicense","features":[357,305]},{"name":"DRMGLOBALOPTIONS","features":[357]},{"name":"DRMGLOBALOPTIONS_USE_SERVERSECURITYPROCESSOR","features":[357]},{"name":"DRMGLOBALOPTIONS_USE_WINHTTP","features":[357]},{"name":"DRMGetApplicationSpecificData","features":[357]},{"name":"DRMGetBoundLicenseAttribute","features":[357]},{"name":"DRMGetBoundLicenseAttributeCount","features":[357]},{"name":"DRMGetBoundLicenseObject","features":[357]},{"name":"DRMGetBoundLicenseObjectCount","features":[357]},{"name":"DRMGetCertificateChainCount","features":[357]},{"name":"DRMGetClientVersion","features":[357]},{"name":"DRMGetEnvironmentInfo","features":[357]},{"name":"DRMGetInfo","features":[357]},{"name":"DRMGetIntervalTime","features":[357]},{"name":"DRMGetIssuanceLicenseInfo","features":[357,305]},{"name":"DRMGetIssuanceLicenseTemplate","features":[357]},{"name":"DRMGetMetaData","features":[357]},{"name":"DRMGetNameAndDescription","features":[357]},{"name":"DRMGetOwnerLicense","features":[357]},{"name":"DRMGetProcAddress","features":[357,305]},{"name":"DRMGetRevocationPoint","features":[357,305]},{"name":"DRMGetRightExtendedInfo","features":[357]},{"name":"DRMGetRightInfo","features":[357,305]},{"name":"DRMGetSecurityProvider","features":[357]},{"name":"DRMGetServiceLocation","features":[357]},{"name":"DRMGetSignedIssuanceLicense","features":[357]},{"name":"DRMGetSignedIssuanceLicenseEx","features":[357]},{"name":"DRMGetTime","features":[357,305]},{"name":"DRMGetUnboundLicenseAttribute","features":[357]},{"name":"DRMGetUnboundLicenseAttributeCount","features":[357]},{"name":"DRMGetUnboundLicenseObject","features":[357]},{"name":"DRMGetUnboundLicenseObjectCount","features":[357]},{"name":"DRMGetUsagePolicy","features":[357,305]},{"name":"DRMGetUserInfo","features":[357]},{"name":"DRMGetUserRights","features":[357]},{"name":"DRMGetUsers","features":[357]},{"name":"DRMHANDLE_INVALID","features":[357]},{"name":"DRMHSESSION_INVALID","features":[357]},{"name":"DRMID","features":[357]},{"name":"DRMIDVERSION","features":[357]},{"name":"DRMInitEnvironment","features":[357]},{"name":"DRMIsActivated","features":[357]},{"name":"DRMIsWindowProtected","features":[357,305]},{"name":"DRMLICENSEACQDATAVERSION","features":[357]},{"name":"DRMLoadLibrary","features":[357]},{"name":"DRMPUBHANDLE_INVALID","features":[357]},{"name":"DRMParseUnboundLicense","features":[357]},{"name":"DRMQUERYHANDLE_INVALID","features":[357]},{"name":"DRMRegisterContent","features":[357,305]},{"name":"DRMRegisterProtectedWindow","features":[357,305]},{"name":"DRMRegisterRevocationList","features":[357]},{"name":"DRMRepair","features":[357]},{"name":"DRMSECURITYPROVIDERTYPE","features":[357]},{"name":"DRMSECURITYPROVIDERTYPE_SOFTWARESECREP","features":[357]},{"name":"DRMSPECTYPE","features":[357]},{"name":"DRMSPECTYPE_FILENAME","features":[357]},{"name":"DRMSPECTYPE_UNKNOWN","features":[357]},{"name":"DRMSetApplicationSpecificData","features":[357,305]},{"name":"DRMSetGlobalOptions","features":[357]},{"name":"DRMSetIntervalTime","features":[357]},{"name":"DRMSetMetaData","features":[357]},{"name":"DRMSetNameAndDescription","features":[357,305]},{"name":"DRMSetRevocationPoint","features":[357,305]},{"name":"DRMSetUsagePolicy","features":[357,305]},{"name":"DRMTIMETYPE","features":[357]},{"name":"DRMTIMETYPE_SYSTEMLOCAL","features":[357]},{"name":"DRMTIMETYPE_SYSTEMUTC","features":[357]},{"name":"DRMVerify","features":[357]},{"name":"DRM_ACTIVATE_CANCEL","features":[357]},{"name":"DRM_ACTIVATE_DELAYED","features":[357]},{"name":"DRM_ACTIVATE_GROUPIDENTITY","features":[357]},{"name":"DRM_ACTIVATE_MACHINE","features":[357]},{"name":"DRM_ACTIVATE_SHARED_GROUPIDENTITY","features":[357]},{"name":"DRM_ACTIVATE_SILENT","features":[357]},{"name":"DRM_ACTIVATE_TEMPORARY","features":[357]},{"name":"DRM_ACTSERV_INFO","features":[357]},{"name":"DRM_ADD_LICENSE_NOPERSIST","features":[357]},{"name":"DRM_ADD_LICENSE_PERSIST","features":[357]},{"name":"DRM_AILT_CANCEL","features":[357]},{"name":"DRM_AILT_NONSILENT","features":[357]},{"name":"DRM_AILT_OBTAIN_ALL","features":[357]},{"name":"DRM_AL_CANCEL","features":[357]},{"name":"DRM_AL_FETCHNOADVISORY","features":[357]},{"name":"DRM_AL_NONSILENT","features":[357]},{"name":"DRM_AL_NOPERSIST","features":[357]},{"name":"DRM_AL_NOUI","features":[357]},{"name":"DRM_AUTO_GENERATE_KEY","features":[357]},{"name":"DRM_CLIENT_VERSION_INFO","features":[357]},{"name":"DRM_DEFAULTGROUPIDTYPE_PASSPORT","features":[357]},{"name":"DRM_DEFAULTGROUPIDTYPE_WINDOWSAUTH","features":[357]},{"name":"DRM_DISTRIBUTION_POINT_INFO","features":[357]},{"name":"DRM_DISTRIBUTION_POINT_LICENSE_ACQUISITION","features":[357]},{"name":"DRM_DISTRIBUTION_POINT_PUBLISHING","features":[357]},{"name":"DRM_DISTRIBUTION_POINT_REFERRAL_INFO","features":[357]},{"name":"DRM_EL_CLIENTLICENSOR","features":[357]},{"name":"DRM_EL_CLIENTLICENSOR_LID","features":[357]},{"name":"DRM_EL_EUL","features":[357]},{"name":"DRM_EL_EUL_LID","features":[357]},{"name":"DRM_EL_EXPIRED","features":[357]},{"name":"DRM_EL_GROUPIDENTITY","features":[357]},{"name":"DRM_EL_GROUPIDENTITY_LID","features":[357]},{"name":"DRM_EL_GROUPIDENTITY_NAME","features":[357]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE","features":[357]},{"name":"DRM_EL_ISSUANCELICENSE_TEMPLATE_LID","features":[357]},{"name":"DRM_EL_ISSUERNAME","features":[357]},{"name":"DRM_EL_MACHINE","features":[357]},{"name":"DRM_EL_REVOCATIONLIST","features":[357]},{"name":"DRM_EL_REVOCATIONLIST_LID","features":[357]},{"name":"DRM_EL_SPECIFIED_CLIENTLICENSOR","features":[357]},{"name":"DRM_EL_SPECIFIED_GROUPIDENTITY","features":[357]},{"name":"DRM_LICENSE_ACQ_DATA","features":[357]},{"name":"DRM_LOCKBOXTYPE_BLACKBOX","features":[357]},{"name":"DRM_LOCKBOXTYPE_DEFAULT","features":[357]},{"name":"DRM_LOCKBOXTYPE_NONE","features":[357]},{"name":"DRM_LOCKBOXTYPE_WHITEBOX","features":[357]},{"name":"DRM_MSG_ACQUIRE_ADVISORY","features":[357]},{"name":"DRM_MSG_ACQUIRE_CLIENTLICENSOR","features":[357]},{"name":"DRM_MSG_ACQUIRE_ISSUANCE_LICENSE_TEMPLATE","features":[357]},{"name":"DRM_MSG_ACQUIRE_LICENSE","features":[357]},{"name":"DRM_MSG_ACTIVATE_GROUPIDENTITY","features":[357]},{"name":"DRM_MSG_ACTIVATE_MACHINE","features":[357]},{"name":"DRM_MSG_SIGN_ISSUANCE_LICENSE","features":[357]},{"name":"DRM_OWNER_LICENSE_NOPERSIST","features":[357]},{"name":"DRM_REUSE_KEY","features":[357]},{"name":"DRM_SERVER_ISSUANCELICENSE","features":[357]},{"name":"DRM_SERVICE_LOCATION_ENTERPRISE","features":[357]},{"name":"DRM_SERVICE_LOCATION_INTERNET","features":[357]},{"name":"DRM_SERVICE_TYPE_ACTIVATION","features":[357]},{"name":"DRM_SERVICE_TYPE_CERTIFICATION","features":[357]},{"name":"DRM_SERVICE_TYPE_CLIENTLICENSOR","features":[357]},{"name":"DRM_SERVICE_TYPE_PUBLISHING","features":[357]},{"name":"DRM_SERVICE_TYPE_SILENT","features":[357]},{"name":"DRM_SIGN_CANCEL","features":[357]},{"name":"DRM_SIGN_OFFLINE","features":[357]},{"name":"DRM_SIGN_ONLINE","features":[357]},{"name":"DRM_STATUS_MSG","features":[357]},{"name":"DRM_USAGEPOLICY_TYPE","features":[357]},{"name":"DRM_USAGEPOLICY_TYPE_BYDIGEST","features":[357]},{"name":"DRM_USAGEPOLICY_TYPE_BYNAME","features":[357]},{"name":"DRM_USAGEPOLICY_TYPE_BYPUBLICKEY","features":[357]},{"name":"DRM_USAGEPOLICY_TYPE_OSEXCLUSION","features":[357]},{"name":"MSDRM_CLIENT_ZONE","features":[357]},{"name":"MSDRM_POLICY_ZONE","features":[357]}],"367":[{"name":"DISPID_DOM_ATTRIBUTE","features":[358]},{"name":"DISPID_DOM_ATTRIBUTE_GETNAME","features":[358]},{"name":"DISPID_DOM_ATTRIBUTE_SPECIFIED","features":[358]},{"name":"DISPID_DOM_ATTRIBUTE_VALUE","features":[358]},{"name":"DISPID_DOM_ATTRIBUTE__TOP","features":[358]},{"name":"DISPID_DOM_BASE","features":[358]},{"name":"DISPID_DOM_COLLECTION_BASE","features":[358]},{"name":"DISPID_DOM_COLLECTION_MAX","features":[358]},{"name":"DISPID_DOM_DATA","features":[358]},{"name":"DISPID_DOM_DATA_APPEND","features":[358]},{"name":"DISPID_DOM_DATA_DATA","features":[358]},{"name":"DISPID_DOM_DATA_DELETE","features":[358]},{"name":"DISPID_DOM_DATA_INSERT","features":[358]},{"name":"DISPID_DOM_DATA_LENGTH","features":[358]},{"name":"DISPID_DOM_DATA_REPLACE","features":[358]},{"name":"DISPID_DOM_DATA_SUBSTRING","features":[358]},{"name":"DISPID_DOM_DATA__TOP","features":[358]},{"name":"DISPID_DOM_DOCUMENT","features":[358]},{"name":"DISPID_DOM_DOCUMENTFRAGMENT","features":[358]},{"name":"DISPID_DOM_DOCUMENTFRAGMENT__TOP","features":[358]},{"name":"DISPID_DOM_DOCUMENTTYPE","features":[358]},{"name":"DISPID_DOM_DOCUMENTTYPE_ENTITIES","features":[358]},{"name":"DISPID_DOM_DOCUMENTTYPE_NAME","features":[358]},{"name":"DISPID_DOM_DOCUMENTTYPE_NOTATIONS","features":[358]},{"name":"DISPID_DOM_DOCUMENTTYPE__TOP","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATEATTRIBUTE","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATECDATASECTION","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATECOMMENT","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATEDOCUMENTFRAGMENT","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATEELEMENT","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATEENTITY","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATEENTITYREFERENCE","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATEPROCESSINGINSTRUCTION","features":[358]},{"name":"DISPID_DOM_DOCUMENT_CREATETEXTNODE","features":[358]},{"name":"DISPID_DOM_DOCUMENT_DOCTYPE","features":[358]},{"name":"DISPID_DOM_DOCUMENT_DOCUMENTELEMENT","features":[358]},{"name":"DISPID_DOM_DOCUMENT_GETELEMENTSBYTAGNAME","features":[358]},{"name":"DISPID_DOM_DOCUMENT_IMPLEMENTATION","features":[358]},{"name":"DISPID_DOM_DOCUMENT_TOP","features":[358]},{"name":"DISPID_DOM_ELEMENT","features":[358]},{"name":"DISPID_DOM_ELEMENT_GETATTRIBUTE","features":[358]},{"name":"DISPID_DOM_ELEMENT_GETATTRIBUTENODE","features":[358]},{"name":"DISPID_DOM_ELEMENT_GETATTRIBUTES","features":[358]},{"name":"DISPID_DOM_ELEMENT_GETELEMENTSBYTAGNAME","features":[358]},{"name":"DISPID_DOM_ELEMENT_GETTAGNAME","features":[358]},{"name":"DISPID_DOM_ELEMENT_NORMALIZE","features":[358]},{"name":"DISPID_DOM_ELEMENT_REMOVEATTRIBUTE","features":[358]},{"name":"DISPID_DOM_ELEMENT_REMOVEATTRIBUTENODE","features":[358]},{"name":"DISPID_DOM_ELEMENT_SETATTRIBUTE","features":[358]},{"name":"DISPID_DOM_ELEMENT_SETATTRIBUTENODE","features":[358]},{"name":"DISPID_DOM_ELEMENT__TOP","features":[358]},{"name":"DISPID_DOM_ENTITY","features":[358]},{"name":"DISPID_DOM_ENTITY_NOTATIONNAME","features":[358]},{"name":"DISPID_DOM_ENTITY_PUBLICID","features":[358]},{"name":"DISPID_DOM_ENTITY_SYSTEMID","features":[358]},{"name":"DISPID_DOM_ENTITY__TOP","features":[358]},{"name":"DISPID_DOM_ERROR","features":[358]},{"name":"DISPID_DOM_ERROR2","features":[358]},{"name":"DISPID_DOM_ERROR2_ALLERRORS","features":[358]},{"name":"DISPID_DOM_ERROR2_ERRORPARAMETERS","features":[358]},{"name":"DISPID_DOM_ERROR2_ERRORPARAMETERSCOUNT","features":[358]},{"name":"DISPID_DOM_ERROR2_ERRORXPATH","features":[358]},{"name":"DISPID_DOM_ERROR2__TOP","features":[358]},{"name":"DISPID_DOM_ERRORCOLLECTION","features":[358]},{"name":"DISPID_DOM_ERRORCOLLECTION_LENGTH","features":[358]},{"name":"DISPID_DOM_ERRORCOLLECTION_NEXT","features":[358]},{"name":"DISPID_DOM_ERRORCOLLECTION_RESET","features":[358]},{"name":"DISPID_DOM_ERRORCOLLECTION__TOP","features":[358]},{"name":"DISPID_DOM_ERROR_ERRORCODE","features":[358]},{"name":"DISPID_DOM_ERROR_FILEPOS","features":[358]},{"name":"DISPID_DOM_ERROR_LINE","features":[358]},{"name":"DISPID_DOM_ERROR_LINEPOS","features":[358]},{"name":"DISPID_DOM_ERROR_REASON","features":[358]},{"name":"DISPID_DOM_ERROR_SRCTEXT","features":[358]},{"name":"DISPID_DOM_ERROR_URL","features":[358]},{"name":"DISPID_DOM_ERROR__TOP","features":[358]},{"name":"DISPID_DOM_IMPLEMENTATION","features":[358]},{"name":"DISPID_DOM_IMPLEMENTATION_HASFEATURE","features":[358]},{"name":"DISPID_DOM_IMPLEMENTATION__TOP","features":[358]},{"name":"DISPID_DOM_NAMEDNODEMAP","features":[358]},{"name":"DISPID_DOM_NAMEDNODEMAP_GETNAMEDITEM","features":[358]},{"name":"DISPID_DOM_NAMEDNODEMAP_REMOVENAMEDITEM","features":[358]},{"name":"DISPID_DOM_NAMEDNODEMAP_SETNAMEDITEM","features":[358]},{"name":"DISPID_DOM_NODE","features":[358]},{"name":"DISPID_DOM_NODELIST","features":[358]},{"name":"DISPID_DOM_NODELIST_ITEM","features":[358]},{"name":"DISPID_DOM_NODELIST_LENGTH","features":[358]},{"name":"DISPID_DOM_NODE_APPENDCHILD","features":[358]},{"name":"DISPID_DOM_NODE_ATTRIBUTES","features":[358]},{"name":"DISPID_DOM_NODE_CHILDNODES","features":[358]},{"name":"DISPID_DOM_NODE_CLONENODE","features":[358]},{"name":"DISPID_DOM_NODE_FIRSTCHILD","features":[358]},{"name":"DISPID_DOM_NODE_HASCHILDNODES","features":[358]},{"name":"DISPID_DOM_NODE_INSERTBEFORE","features":[358]},{"name":"DISPID_DOM_NODE_LASTCHILD","features":[358]},{"name":"DISPID_DOM_NODE_NEXTSIBLING","features":[358]},{"name":"DISPID_DOM_NODE_NODENAME","features":[358]},{"name":"DISPID_DOM_NODE_NODETYPE","features":[358]},{"name":"DISPID_DOM_NODE_NODETYPEENUM","features":[358]},{"name":"DISPID_DOM_NODE_NODEVALUE","features":[358]},{"name":"DISPID_DOM_NODE_OWNERDOC","features":[358]},{"name":"DISPID_DOM_NODE_PARENTNODE","features":[358]},{"name":"DISPID_DOM_NODE_PREVIOUSSIBLING","features":[358]},{"name":"DISPID_DOM_NODE_REMOVECHILD","features":[358]},{"name":"DISPID_DOM_NODE_REPLACECHILD","features":[358]},{"name":"DISPID_DOM_NOTATION","features":[358]},{"name":"DISPID_DOM_NOTATION_PUBLICID","features":[358]},{"name":"DISPID_DOM_NOTATION_SYSTEMID","features":[358]},{"name":"DISPID_DOM_NOTATION__TOP","features":[358]},{"name":"DISPID_DOM_PI","features":[358]},{"name":"DISPID_DOM_PI_DATA","features":[358]},{"name":"DISPID_DOM_PI_TARGET","features":[358]},{"name":"DISPID_DOM_PI__TOP","features":[358]},{"name":"DISPID_DOM_TEXT","features":[358]},{"name":"DISPID_DOM_TEXT_JOINTEXT","features":[358]},{"name":"DISPID_DOM_TEXT_SPLITTEXT","features":[358]},{"name":"DISPID_DOM_TEXT__TOP","features":[358]},{"name":"DISPID_DOM_W3CWRAPPERS","features":[358]},{"name":"DISPID_DOM_W3CWRAPPERS_TOP","features":[358]},{"name":"DISPID_DOM__TOP","features":[358]},{"name":"DISPID_MXXML_FILTER","features":[358]},{"name":"DISPID_MXXML_FILTER_CONTENTHANDLER","features":[358]},{"name":"DISPID_MXXML_FILTER_DTDHANDLER","features":[358]},{"name":"DISPID_MXXML_FILTER_ENTITYRESOLVER","features":[358]},{"name":"DISPID_MXXML_FILTER_ERRORHANDLER","features":[358]},{"name":"DISPID_MXXML_FILTER_GETFEATURE","features":[358]},{"name":"DISPID_MXXML_FILTER_GETPROPERTY","features":[358]},{"name":"DISPID_MXXML_FILTER_PUTFEATURE","features":[358]},{"name":"DISPID_MXXML_FILTER_PUTPROPERTY","features":[358]},{"name":"DISPID_MXXML_FILTER__BASE","features":[358]},{"name":"DISPID_MXXML_FILTER__TOP","features":[358]},{"name":"DISPID_MX_ATTRIBUTES","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_ADDATTRIBUTE","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_ADDATTRIBUTEFROMINDEX","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_CLEAR","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_REMOVEATTRIBUTE","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_SETATTRIBUTE","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_SETATTRIBUTES","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_SETLOCALNAME","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_SETQNAME","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_SETTYPE","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_SETURI","features":[358]},{"name":"DISPID_MX_ATTRIBUTES_SETVALUE","features":[358]},{"name":"DISPID_MX_ATTRIBUTES__BASE","features":[358]},{"name":"DISPID_MX_ATTRIBUTES__TOP","features":[358]},{"name":"DISPID_MX_NSMGR","features":[358]},{"name":"DISPID_MX_NSMGR_ALLOWOVERRIDE","features":[358]},{"name":"DISPID_MX_NSMGR_DECLAREPREFIX","features":[358]},{"name":"DISPID_MX_NSMGR_GETDECLAREDPREFIXES","features":[358]},{"name":"DISPID_MX_NSMGR_GETPREFIXES","features":[358]},{"name":"DISPID_MX_NSMGR_GETURI","features":[358]},{"name":"DISPID_MX_NSMGR_GETURIFROMNODE","features":[358]},{"name":"DISPID_MX_NSMGR_LENGTH","features":[358]},{"name":"DISPID_MX_NSMGR_POPCONTEXT","features":[358]},{"name":"DISPID_MX_NSMGR_PUSHCONTEXT","features":[358]},{"name":"DISPID_MX_NSMGR_PUSHNODECONTEXT","features":[358]},{"name":"DISPID_MX_NSMGR_RESET","features":[358]},{"name":"DISPID_MX_NSMGR__BASE","features":[358]},{"name":"DISPID_MX_NSMGR__TOP","features":[358]},{"name":"DISPID_MX_READER_CONTROL","features":[358]},{"name":"DISPID_MX_READER_CONTROL_ABORT","features":[358]},{"name":"DISPID_MX_READER_CONTROL_RESUME","features":[358]},{"name":"DISPID_MX_READER_CONTROL_SUSPEND","features":[358]},{"name":"DISPID_MX_READER_CONTROL__BASE","features":[358]},{"name":"DISPID_MX_READER_CONTROL__TOP","features":[358]},{"name":"DISPID_MX_SCHEMADECLHANDLER","features":[358]},{"name":"DISPID_MX_SCHEMADECLHANDLER_SCHEMAELEMENTDECL","features":[358]},{"name":"DISPID_MX_SCHEMADECLHANDLER__BASE","features":[358]},{"name":"DISPID_MX_SCHEMADECLHANDLER__TOP","features":[358]},{"name":"DISPID_MX_WRITER","features":[358]},{"name":"DISPID_MX_WRITER_BYTEORDERMARK","features":[358]},{"name":"DISPID_MX_WRITER_DESTINATION","features":[358]},{"name":"DISPID_MX_WRITER_DISABLEOUTPUTESCAPING","features":[358]},{"name":"DISPID_MX_WRITER_ENCODING","features":[358]},{"name":"DISPID_MX_WRITER_FLUSH","features":[358]},{"name":"DISPID_MX_WRITER_INDENT","features":[358]},{"name":"DISPID_MX_WRITER_OMITXMLDECLARATION","features":[358]},{"name":"DISPID_MX_WRITER_OUTPUT","features":[358]},{"name":"DISPID_MX_WRITER_RESET","features":[358]},{"name":"DISPID_MX_WRITER_STANDALONE","features":[358]},{"name":"DISPID_MX_WRITER_VERSION","features":[358]},{"name":"DISPID_MX_WRITER__BASE","features":[358]},{"name":"DISPID_MX_WRITER__TOP","features":[358]},{"name":"DISPID_NODE","features":[358]},{"name":"DISPID_NODELIST","features":[358]},{"name":"DISPID_NODELIST_CURRENT","features":[358]},{"name":"DISPID_NODELIST_ITEM","features":[358]},{"name":"DISPID_NODELIST_LENGTH","features":[358]},{"name":"DISPID_NODELIST_MOVE","features":[358]},{"name":"DISPID_NODELIST_MOVETONODE","features":[358]},{"name":"DISPID_NODELIST_NEWENUM","features":[358]},{"name":"DISPID_NODELIST_NEXT","features":[358]},{"name":"DISPID_NODE_ADD","features":[358]},{"name":"DISPID_NODE_ATTRIBUTES","features":[358]},{"name":"DISPID_NODE_CHILDREN","features":[358]},{"name":"DISPID_NODE_GETATTRIBUTE","features":[358]},{"name":"DISPID_NODE_NAME","features":[358]},{"name":"DISPID_NODE_PARENT","features":[358]},{"name":"DISPID_NODE_REMOVE","features":[358]},{"name":"DISPID_NODE_REMOVEATTRIBUTE","features":[358]},{"name":"DISPID_NODE_SETATTRIBUTE","features":[358]},{"name":"DISPID_NODE_TYPE","features":[358]},{"name":"DISPID_NODE_VALUE","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETINDEXFROMNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETINDEXFROMQNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETLOCALNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETQNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETTYPE","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETTYPEFROMNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETTYPEFROMQNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETURI","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETVALUE","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETVALUEFROMNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_GETVALUEFROMQNAME","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES_LENGTH","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES__BASE","features":[358]},{"name":"DISPID_SAX_ATTRIBUTES__TOP","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_CHARACTERS","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_DOCUMENTLOCATOR","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_ENDDOCUMENT","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_ENDELEMENT","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_ENDPREFIXMAPPING","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_IGNORABLEWHITESPACE","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_PROCESSINGINSTRUCTION","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_SKIPPEDENTITY","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_STARTDOCUMENT","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_STARTELEMENT","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER_STARTPREFIXMAPPING","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER__BASE","features":[358]},{"name":"DISPID_SAX_CONTENTHANDLER__TOP","features":[358]},{"name":"DISPID_SAX_DECLHANDLER","features":[358]},{"name":"DISPID_SAX_DECLHANDLER_ATTRIBUTEDECL","features":[358]},{"name":"DISPID_SAX_DECLHANDLER_ELEMENTDECL","features":[358]},{"name":"DISPID_SAX_DECLHANDLER_EXTERNALENTITYDECL","features":[358]},{"name":"DISPID_SAX_DECLHANDLER_INTERNALENTITYDECL","features":[358]},{"name":"DISPID_SAX_DECLHANDLER__BASE","features":[358]},{"name":"DISPID_SAX_DECLHANDLER__TOP","features":[358]},{"name":"DISPID_SAX_DTDHANDLER","features":[358]},{"name":"DISPID_SAX_DTDHANDLER_NOTATIONDECL","features":[358]},{"name":"DISPID_SAX_DTDHANDLER_UNPARSEDENTITYDECL","features":[358]},{"name":"DISPID_SAX_DTDHANDLER__BASE","features":[358]},{"name":"DISPID_SAX_DTDHANDLER__TOP","features":[358]},{"name":"DISPID_SAX_ENTITYRESOLVER","features":[358]},{"name":"DISPID_SAX_ENTITYRESOLVER_RESOLVEENTITY","features":[358]},{"name":"DISPID_SAX_ENTITYRESOLVER__BASE","features":[358]},{"name":"DISPID_SAX_ENTITYRESOLVER__TOP","features":[358]},{"name":"DISPID_SAX_ERRORHANDLER","features":[358]},{"name":"DISPID_SAX_ERRORHANDLER_ERROR","features":[358]},{"name":"DISPID_SAX_ERRORHANDLER_FATALERROR","features":[358]},{"name":"DISPID_SAX_ERRORHANDLER_IGNORABLEWARNING","features":[358]},{"name":"DISPID_SAX_ERRORHANDLER__BASE","features":[358]},{"name":"DISPID_SAX_ERRORHANDLER__TOP","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER_COMMENT","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER_ENDCDATA","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER_ENDDTD","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER_ENDENTITY","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER_STARTCDATA","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER_STARTDTD","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER_STARTENTITY","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER__BASE","features":[358]},{"name":"DISPID_SAX_LEXICALHANDLER__TOP","features":[358]},{"name":"DISPID_SAX_LOCATOR","features":[358]},{"name":"DISPID_SAX_LOCATOR_COLUMNNUMBER","features":[358]},{"name":"DISPID_SAX_LOCATOR_LINENUMBER","features":[358]},{"name":"DISPID_SAX_LOCATOR_PUBLICID","features":[358]},{"name":"DISPID_SAX_LOCATOR_SYSTEMID","features":[358]},{"name":"DISPID_SAX_LOCATOR__BASE","features":[358]},{"name":"DISPID_SAX_LOCATOR__TOP","features":[358]},{"name":"DISPID_SAX_XMLFILTER","features":[358]},{"name":"DISPID_SAX_XMLFILTER_BASEURL","features":[358]},{"name":"DISPID_SAX_XMLFILTER_CONTENTHANDLER","features":[358]},{"name":"DISPID_SAX_XMLFILTER_DTDHANDLER","features":[358]},{"name":"DISPID_SAX_XMLFILTER_ENTITYRESOLVER","features":[358]},{"name":"DISPID_SAX_XMLFILTER_ERRORHANDLER","features":[358]},{"name":"DISPID_SAX_XMLFILTER_GETFEATURE","features":[358]},{"name":"DISPID_SAX_XMLFILTER_GETPROPERTY","features":[358]},{"name":"DISPID_SAX_XMLFILTER_PARENT","features":[358]},{"name":"DISPID_SAX_XMLFILTER_PARSE","features":[358]},{"name":"DISPID_SAX_XMLFILTER_PARSEURL","features":[358]},{"name":"DISPID_SAX_XMLFILTER_PUTFEATURE","features":[358]},{"name":"DISPID_SAX_XMLFILTER_PUTPROPERTY","features":[358]},{"name":"DISPID_SAX_XMLFILTER_SECUREBASEURL","features":[358]},{"name":"DISPID_SAX_XMLFILTER__BASE","features":[358]},{"name":"DISPID_SAX_XMLFILTER__TOP","features":[358]},{"name":"DISPID_SAX_XMLREADER","features":[358]},{"name":"DISPID_SAX_XMLREADER_BASEURL","features":[358]},{"name":"DISPID_SAX_XMLREADER_CONTENTHANDLER","features":[358]},{"name":"DISPID_SAX_XMLREADER_DTDHANDLER","features":[358]},{"name":"DISPID_SAX_XMLREADER_ENTITYRESOLVER","features":[358]},{"name":"DISPID_SAX_XMLREADER_ERRORHANDLER","features":[358]},{"name":"DISPID_SAX_XMLREADER_GETFEATURE","features":[358]},{"name":"DISPID_SAX_XMLREADER_GETPROPERTY","features":[358]},{"name":"DISPID_SAX_XMLREADER_PARENT","features":[358]},{"name":"DISPID_SAX_XMLREADER_PARSE","features":[358]},{"name":"DISPID_SAX_XMLREADER_PARSEURL","features":[358]},{"name":"DISPID_SAX_XMLREADER_PUTFEATURE","features":[358]},{"name":"DISPID_SAX_XMLREADER_PUTPROPERTY","features":[358]},{"name":"DISPID_SAX_XMLREADER_SECUREBASEURL","features":[358]},{"name":"DISPID_SAX_XMLREADER__BASE","features":[358]},{"name":"DISPID_SAX_XMLREADER__MAX","features":[358]},{"name":"DISPID_SAX_XMLREADER__MIN","features":[358]},{"name":"DISPID_SAX_XMLREADER__TOP","features":[358]},{"name":"DISPID_SOM","features":[358]},{"name":"DISPID_SOM_ANYATTRIBUTE","features":[358]},{"name":"DISPID_SOM_ATTRIBUTEGROUPS","features":[358]},{"name":"DISPID_SOM_ATTRIBUTES","features":[358]},{"name":"DISPID_SOM_BASETYPES","features":[358]},{"name":"DISPID_SOM_CONTENTMODEL","features":[358]},{"name":"DISPID_SOM_CONTENTTYPE","features":[358]},{"name":"DISPID_SOM_DEFAULTVALUE","features":[358]},{"name":"DISPID_SOM_DERIVEDBY","features":[358]},{"name":"DISPID_SOM_DISALLOWED","features":[358]},{"name":"DISPID_SOM_ELEMENTS","features":[358]},{"name":"DISPID_SOM_ENUMERATION","features":[358]},{"name":"DISPID_SOM_EXCLUSIONS","features":[358]},{"name":"DISPID_SOM_FIELDS","features":[358]},{"name":"DISPID_SOM_FINAL","features":[358]},{"name":"DISPID_SOM_FIXEDVALUE","features":[358]},{"name":"DISPID_SOM_FRACTIONDIGITS","features":[358]},{"name":"DISPID_SOM_GETDECLARATION","features":[358]},{"name":"DISPID_SOM_GETSCHEMA","features":[358]},{"name":"DISPID_SOM_ID","features":[358]},{"name":"DISPID_SOM_IDCONSTRAINTS","features":[358]},{"name":"DISPID_SOM_ISABSTRACT","features":[358]},{"name":"DISPID_SOM_ISNILLABLE","features":[358]},{"name":"DISPID_SOM_ISREFERENCE","features":[358]},{"name":"DISPID_SOM_ISVALID","features":[358]},{"name":"DISPID_SOM_ITEMBYNAME","features":[358]},{"name":"DISPID_SOM_ITEMBYQNAME","features":[358]},{"name":"DISPID_SOM_ITEMTYPE","features":[358]},{"name":"DISPID_SOM_LENGTH","features":[358]},{"name":"DISPID_SOM_MAXEXCLUSIVE","features":[358]},{"name":"DISPID_SOM_MAXINCLUSIVE","features":[358]},{"name":"DISPID_SOM_MAXLENGTH","features":[358]},{"name":"DISPID_SOM_MAXOCCURS","features":[358]},{"name":"DISPID_SOM_MINEXCLUSIVE","features":[358]},{"name":"DISPID_SOM_MININCLUSIVE","features":[358]},{"name":"DISPID_SOM_MINLENGTH","features":[358]},{"name":"DISPID_SOM_MINOCCURS","features":[358]},{"name":"DISPID_SOM_MODELGROUPS","features":[358]},{"name":"DISPID_SOM_NAME","features":[358]},{"name":"DISPID_SOM_NAMESPACES","features":[358]},{"name":"DISPID_SOM_NAMESPACEURI","features":[358]},{"name":"DISPID_SOM_NOTATIONS","features":[358]},{"name":"DISPID_SOM_PARTICLES","features":[358]},{"name":"DISPID_SOM_PATTERNS","features":[358]},{"name":"DISPID_SOM_PROCESSCONTENTS","features":[358]},{"name":"DISPID_SOM_PROHIBITED","features":[358]},{"name":"DISPID_SOM_PUBLICIDENTIFIER","features":[358]},{"name":"DISPID_SOM_REFERENCEDKEY","features":[358]},{"name":"DISPID_SOM_SCHEMA","features":[358]},{"name":"DISPID_SOM_SCHEMALOCATIONS","features":[358]},{"name":"DISPID_SOM_SCOPE","features":[358]},{"name":"DISPID_SOM_SELECTOR","features":[358]},{"name":"DISPID_SOM_SUBSTITUTIONGROUP","features":[358]},{"name":"DISPID_SOM_SYSTEMIDENTIFIER","features":[358]},{"name":"DISPID_SOM_TARGETNAMESPACE","features":[358]},{"name":"DISPID_SOM_TOP","features":[358]},{"name":"DISPID_SOM_TOTALDIGITS","features":[358]},{"name":"DISPID_SOM_TYPE","features":[358]},{"name":"DISPID_SOM_TYPES","features":[358]},{"name":"DISPID_SOM_UNHANDLEDATTRS","features":[358]},{"name":"DISPID_SOM_USE","features":[358]},{"name":"DISPID_SOM_VALIDATE","features":[358]},{"name":"DISPID_SOM_VALIDATEONLOAD","features":[358]},{"name":"DISPID_SOM_VARIETY","features":[358]},{"name":"DISPID_SOM_VERSION","features":[358]},{"name":"DISPID_SOM_WHITESPACE","features":[358]},{"name":"DISPID_SOM_WRITEANNOTATION","features":[358]},{"name":"DISPID_XMLATTRIBUTE","features":[358]},{"name":"DISPID_XMLATTRIBUTE_NAME","features":[358]},{"name":"DISPID_XMLATTRIBUTE_VALUE","features":[358]},{"name":"DISPID_XMLDOCUMENT","features":[358]},{"name":"DISPID_XMLDOCUMENT_ASYNC","features":[358]},{"name":"DISPID_XMLDOCUMENT_BASEURL","features":[358]},{"name":"DISPID_XMLDOCUMENT_CASEINSENSITIVE","features":[358]},{"name":"DISPID_XMLDOCUMENT_CHARSET","features":[358]},{"name":"DISPID_XMLDOCUMENT_COMMIT","features":[358]},{"name":"DISPID_XMLDOCUMENT_CREATEELEMENT","features":[358]},{"name":"DISPID_XMLDOCUMENT_DOCTYPE","features":[358]},{"name":"DISPID_XMLDOCUMENT_DTDURL","features":[358]},{"name":"DISPID_XMLDOCUMENT_FILEMODIFIEDDATE","features":[358]},{"name":"DISPID_XMLDOCUMENT_FILESIZE","features":[358]},{"name":"DISPID_XMLDOCUMENT_FILEUPDATEDDATE","features":[358]},{"name":"DISPID_XMLDOCUMENT_LASTERROR","features":[358]},{"name":"DISPID_XMLDOCUMENT_MIMETYPE","features":[358]},{"name":"DISPID_XMLDOCUMENT_READYSTATE","features":[358]},{"name":"DISPID_XMLDOCUMENT_ROOT","features":[358]},{"name":"DISPID_XMLDOCUMENT_TRIMWHITESPACE","features":[358]},{"name":"DISPID_XMLDOCUMENT_URL","features":[358]},{"name":"DISPID_XMLDOCUMENT_VERSION","features":[358]},{"name":"DISPID_XMLDOCUMENT_XML","features":[358]},{"name":"DISPID_XMLDOMEVENT","features":[358]},{"name":"DISPID_XMLDOMEVENT_ONDATAAVAILABLE","features":[358]},{"name":"DISPID_XMLDOMEVENT_ONREADYSTATECHANGE","features":[358]},{"name":"DISPID_XMLDOMEVENT__TOP","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT2","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT2_GETPROPERTY","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT2_NAMESPACES","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT2_SCHEMAS","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT2_SETPROPERTY","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT2_VALIDATE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT2__TOP","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT3","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT3_IMPORTNODE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT3_VALIDATENODE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT3__TOP","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_ABORT","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_ASYNC","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_CREATENODE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_CREATENODEEX","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_DOCUMENTNAMESPACES","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_DOCUMENTNODE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_LOAD","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_LOADXML","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_NODEFROMID","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_ONDATAAVAILABLE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_ONREADYSTATECHANGE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_ONTRANSFORMNODE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_PARSEERROR","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_PRESERVEWHITESPACE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_RESOLVENAMESPACE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_SAVE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_URL","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT_VALIDATE","features":[358]},{"name":"DISPID_XMLDOM_DOCUMENT__TOP","features":[358]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP","features":[358]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_GETQUALIFIEDITEM","features":[358]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_NEWENUM","features":[358]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_NEXTNODE","features":[358]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_REMOVEQUALIFIEDITEM","features":[358]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP_RESET","features":[358]},{"name":"DISPID_XMLDOM_NAMEDNODEMAP__TOP","features":[358]},{"name":"DISPID_XMLDOM_NODE","features":[358]},{"name":"DISPID_XMLDOM_NODELIST","features":[358]},{"name":"DISPID_XMLDOM_NODELIST_NEWENUM","features":[358]},{"name":"DISPID_XMLDOM_NODELIST_NEXTNODE","features":[358]},{"name":"DISPID_XMLDOM_NODELIST_RESET","features":[358]},{"name":"DISPID_XMLDOM_NODELIST__TOP","features":[358]},{"name":"DISPID_XMLDOM_NODE_BASENAME","features":[358]},{"name":"DISPID_XMLDOM_NODE_DATATYPE","features":[358]},{"name":"DISPID_XMLDOM_NODE_DEFINITION","features":[358]},{"name":"DISPID_XMLDOM_NODE_NAMESPACE","features":[358]},{"name":"DISPID_XMLDOM_NODE_NODETYPEDVALUE","features":[358]},{"name":"DISPID_XMLDOM_NODE_PARSED","features":[358]},{"name":"DISPID_XMLDOM_NODE_PREFIX","features":[358]},{"name":"DISPID_XMLDOM_NODE_SELECTNODES","features":[358]},{"name":"DISPID_XMLDOM_NODE_SELECTSINGLENODE","features":[358]},{"name":"DISPID_XMLDOM_NODE_SPECIFIED","features":[358]},{"name":"DISPID_XMLDOM_NODE_STRINGTYPE","features":[358]},{"name":"DISPID_XMLDOM_NODE_TEXT","features":[358]},{"name":"DISPID_XMLDOM_NODE_TRANSFORMNODE","features":[358]},{"name":"DISPID_XMLDOM_NODE_TRANSFORMNODETOOBJECT","features":[358]},{"name":"DISPID_XMLDOM_NODE_XML","features":[358]},{"name":"DISPID_XMLDOM_NODE__TOP","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_ADDOBJECT","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_ADDPARAMETER","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_INPUT","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_OUTPUT","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_READYSTATE","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_RESET","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_SETSTARTMODE","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_STARTMODE","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_STARTMODEURI","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_STYLESHEET","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_TRANSFORM","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR_XSLTEMPLATE","features":[358]},{"name":"DISPID_XMLDOM_PROCESSOR__TOP","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_ADD","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_ADDCOLLECTION","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_GET","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_LENGTH","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_NAMESPACEURI","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION_REMOVE","features":[358]},{"name":"DISPID_XMLDOM_SCHEMACOLLECTION__TOP","features":[358]},{"name":"DISPID_XMLDOM_SELECTION","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_CLONE","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_CONTEXT","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_EXPR","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_GETPROPERTY","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_MATCHES","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_PEEKNODE","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_REMOVEALL","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_REMOVENEXT","features":[358]},{"name":"DISPID_XMLDOM_SELECTION_SETPROPERTY","features":[358]},{"name":"DISPID_XMLDOM_SELECTION__TOP","features":[358]},{"name":"DISPID_XMLDOM_TEMPLATE","features":[358]},{"name":"DISPID_XMLDOM_TEMPLATE_CREATEPROCESSOR","features":[358]},{"name":"DISPID_XMLDOM_TEMPLATE_STYLESHEET","features":[358]},{"name":"DISPID_XMLDOM_TEMPLATE__TOP","features":[358]},{"name":"DISPID_XMLDSIG","features":[358]},{"name":"DISPID_XMLDSIG_CREATEKEYFROMCSP","features":[358]},{"name":"DISPID_XMLDSIG_CREATEKEYFROMHMACSECRET","features":[358]},{"name":"DISPID_XMLDSIG_CREATEKEYFROMNODE","features":[358]},{"name":"DISPID_XMLDSIG_CREATESAXPROXY","features":[358]},{"name":"DISPID_XMLDSIG_GETVERIFYINGCERTIFICATE","features":[358]},{"name":"DISPID_XMLDSIG_SETREFERENCEDATA","features":[358]},{"name":"DISPID_XMLDSIG_SIGN","features":[358]},{"name":"DISPID_XMLDSIG_SIGNATURE","features":[358]},{"name":"DISPID_XMLDSIG_STORE","features":[358]},{"name":"DISPID_XMLDSIG_VERIFY","features":[358]},{"name":"DISPID_XMLDSO","features":[358]},{"name":"DISPID_XMLDSO_DOCUMENT","features":[358]},{"name":"DISPID_XMLDSO_JAVADSOCOMPATIBLE","features":[358]},{"name":"DISPID_XMLELEMENT","features":[358]},{"name":"DISPID_XMLELEMENTCOLLECTION","features":[358]},{"name":"DISPID_XMLELEMENTCOLLECTION_ITEM","features":[358]},{"name":"DISPID_XMLELEMENTCOLLECTION_LENGTH","features":[358]},{"name":"DISPID_XMLELEMENTCOLLECTION_NEWENUM","features":[358]},{"name":"DISPID_XMLELEMENT_ADDCHILD","features":[358]},{"name":"DISPID_XMLELEMENT_ATTRIBUTES","features":[358]},{"name":"DISPID_XMLELEMENT_CHILDREN","features":[358]},{"name":"DISPID_XMLELEMENT_GETATTRIBUTE","features":[358]},{"name":"DISPID_XMLELEMENT_PARENT","features":[358]},{"name":"DISPID_XMLELEMENT_REMOVEATTRIBUTE","features":[358]},{"name":"DISPID_XMLELEMENT_REMOVECHILD","features":[358]},{"name":"DISPID_XMLELEMENT_SETATTRIBUTE","features":[358]},{"name":"DISPID_XMLELEMENT_TAGNAME","features":[358]},{"name":"DISPID_XMLELEMENT_TEXT","features":[358]},{"name":"DISPID_XMLELEMENT_TYPE","features":[358]},{"name":"DISPID_XMLERROR","features":[358]},{"name":"DISPID_XMLERROR_LINE","features":[358]},{"name":"DISPID_XMLERROR_POS","features":[358]},{"name":"DISPID_XMLERROR_REASON","features":[358]},{"name":"DISPID_XMLNOTIFSINK","features":[358]},{"name":"DISPID_XMLNOTIFSINK_CHILDADDED","features":[358]},{"name":"DISPID_XOBJ_BASE","features":[358]},{"name":"DISPID_XOBJ_MAX","features":[358]},{"name":"DISPID_XOBJ_MIN","features":[358]},{"name":"DISPID_XTLRUNTIME","features":[358]},{"name":"DISPID_XTLRUNTIME_ABSOLUTECHILDNUMBER","features":[358]},{"name":"DISPID_XTLRUNTIME_ANCESTORCHILDNUMBER","features":[358]},{"name":"DISPID_XTLRUNTIME_CHILDNUMBER","features":[358]},{"name":"DISPID_XTLRUNTIME_DEPTH","features":[358]},{"name":"DISPID_XTLRUNTIME_FORMATDATE","features":[358]},{"name":"DISPID_XTLRUNTIME_FORMATINDEX","features":[358]},{"name":"DISPID_XTLRUNTIME_FORMATNUMBER","features":[358]},{"name":"DISPID_XTLRUNTIME_FORMATTIME","features":[358]},{"name":"DISPID_XTLRUNTIME_UNIQUEID","features":[358]},{"name":"DISPID_XTLRUNTIME__TOP","features":[358]},{"name":"DOMDocument","features":[358]},{"name":"DOMDocument60","features":[358]},{"name":"DOMFreeThreadedDocument","features":[358]},{"name":"DOMNodeType","features":[358]},{"name":"E_XML_BUFFERTOOSMALL","features":[358]},{"name":"E_XML_INVALID","features":[358]},{"name":"E_XML_NODTD","features":[358]},{"name":"E_XML_NOTWF","features":[358]},{"name":"FreeThreadedDOMDocument60","features":[358]},{"name":"FreeThreadedXMLHTTP60","features":[358]},{"name":"IMXAttributes","features":[358,356]},{"name":"IMXNamespaceManager","features":[358]},{"name":"IMXNamespacePrefixes","features":[358,356]},{"name":"IMXReaderControl","features":[358,356]},{"name":"IMXSchemaDeclHandler","features":[358,356]},{"name":"IMXWriter","features":[358,356]},{"name":"IMXXMLFilter","features":[358,356]},{"name":"ISAXAttributes","features":[358]},{"name":"ISAXContentHandler","features":[358]},{"name":"ISAXDTDHandler","features":[358]},{"name":"ISAXDeclHandler","features":[358]},{"name":"ISAXEntityResolver","features":[358]},{"name":"ISAXErrorHandler","features":[358]},{"name":"ISAXLexicalHandler","features":[358]},{"name":"ISAXLocator","features":[358]},{"name":"ISAXXMLFilter","features":[358]},{"name":"ISAXXMLReader","features":[358]},{"name":"ISchema","features":[358,356]},{"name":"ISchemaAny","features":[358,356]},{"name":"ISchemaAttribute","features":[358,356]},{"name":"ISchemaAttributeGroup","features":[358,356]},{"name":"ISchemaComplexType","features":[358,356]},{"name":"ISchemaElement","features":[358,356]},{"name":"ISchemaIdentityConstraint","features":[358,356]},{"name":"ISchemaItem","features":[358,356]},{"name":"ISchemaItemCollection","features":[358,356]},{"name":"ISchemaModelGroup","features":[358,356]},{"name":"ISchemaNotation","features":[358,356]},{"name":"ISchemaParticle","features":[358,356]},{"name":"ISchemaStringCollection","features":[358,356]},{"name":"ISchemaType","features":[358,356]},{"name":"IServerXMLHTTPRequest","features":[358,356]},{"name":"IServerXMLHTTPRequest2","features":[358,356]},{"name":"IVBMXNamespaceManager","features":[358,356]},{"name":"IVBSAXAttributes","features":[358,356]},{"name":"IVBSAXContentHandler","features":[358,356]},{"name":"IVBSAXDTDHandler","features":[358,356]},{"name":"IVBSAXDeclHandler","features":[358,356]},{"name":"IVBSAXEntityResolver","features":[358,356]},{"name":"IVBSAXErrorHandler","features":[358,356]},{"name":"IVBSAXLexicalHandler","features":[358,356]},{"name":"IVBSAXLocator","features":[358,356]},{"name":"IVBSAXXMLFilter","features":[358,356]},{"name":"IVBSAXXMLReader","features":[358,356]},{"name":"IXMLAttribute","features":[358,356]},{"name":"IXMLDOMAttribute","features":[358,356]},{"name":"IXMLDOMCDATASection","features":[358,356]},{"name":"IXMLDOMCharacterData","features":[358,356]},{"name":"IXMLDOMComment","features":[358,356]},{"name":"IXMLDOMDocument","features":[358,356]},{"name":"IXMLDOMDocument2","features":[358,356]},{"name":"IXMLDOMDocument3","features":[358,356]},{"name":"IXMLDOMDocumentFragment","features":[358,356]},{"name":"IXMLDOMDocumentType","features":[358,356]},{"name":"IXMLDOMElement","features":[358,356]},{"name":"IXMLDOMEntity","features":[358,356]},{"name":"IXMLDOMEntityReference","features":[358,356]},{"name":"IXMLDOMImplementation","features":[358,356]},{"name":"IXMLDOMNamedNodeMap","features":[358,356]},{"name":"IXMLDOMNode","features":[358,356]},{"name":"IXMLDOMNodeList","features":[358,356]},{"name":"IXMLDOMNotation","features":[358,356]},{"name":"IXMLDOMParseError","features":[358,356]},{"name":"IXMLDOMParseError2","features":[358,356]},{"name":"IXMLDOMParseErrorCollection","features":[358,356]},{"name":"IXMLDOMProcessingInstruction","features":[358,356]},{"name":"IXMLDOMSchemaCollection","features":[358,356]},{"name":"IXMLDOMSchemaCollection2","features":[358,356]},{"name":"IXMLDOMSelection","features":[358,356]},{"name":"IXMLDOMText","features":[358,356]},{"name":"IXMLDSOControl","features":[358,356]},{"name":"IXMLDocument","features":[358,356]},{"name":"IXMLDocument2","features":[358,356]},{"name":"IXMLElement","features":[358,356]},{"name":"IXMLElement2","features":[358,356]},{"name":"IXMLElementCollection","features":[358,356]},{"name":"IXMLError","features":[358]},{"name":"IXMLHTTPRequest","features":[358,356]},{"name":"IXMLHTTPRequest2","features":[358]},{"name":"IXMLHTTPRequest2Callback","features":[358]},{"name":"IXMLHTTPRequest3","features":[358]},{"name":"IXMLHTTPRequest3Callback","features":[358]},{"name":"IXSLProcessor","features":[358,356]},{"name":"IXSLTemplate","features":[358,356]},{"name":"IXTLRuntime","features":[358,356]},{"name":"MXHTMLWriter60","features":[358]},{"name":"MXNamespaceManager60","features":[358]},{"name":"MXXMLWriter60","features":[358]},{"name":"NODE_ATTRIBUTE","features":[358]},{"name":"NODE_CDATA_SECTION","features":[358]},{"name":"NODE_COMMENT","features":[358]},{"name":"NODE_DOCUMENT","features":[358]},{"name":"NODE_DOCUMENT_FRAGMENT","features":[358]},{"name":"NODE_DOCUMENT_TYPE","features":[358]},{"name":"NODE_ELEMENT","features":[358]},{"name":"NODE_ENTITY","features":[358]},{"name":"NODE_ENTITY_REFERENCE","features":[358]},{"name":"NODE_INVALID","features":[358]},{"name":"NODE_NOTATION","features":[358]},{"name":"NODE_PROCESSING_INSTRUCTION","features":[358]},{"name":"NODE_TEXT","features":[358]},{"name":"SAXAttributes60","features":[358]},{"name":"SAXXMLReader60","features":[358]},{"name":"SCHEMACONTENTTYPE","features":[358]},{"name":"SCHEMACONTENTTYPE_ELEMENTONLY","features":[358]},{"name":"SCHEMACONTENTTYPE_EMPTY","features":[358]},{"name":"SCHEMACONTENTTYPE_MIXED","features":[358]},{"name":"SCHEMACONTENTTYPE_TEXTONLY","features":[358]},{"name":"SCHEMADERIVATIONMETHOD","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_ALL","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_EMPTY","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_EXTENSION","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_LIST","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_NONE","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_RESTRICTION","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_SUBSTITUTION","features":[358]},{"name":"SCHEMADERIVATIONMETHOD_UNION","features":[358]},{"name":"SCHEMAPROCESSCONTENTS","features":[358]},{"name":"SCHEMAPROCESSCONTENTS_LAX","features":[358]},{"name":"SCHEMAPROCESSCONTENTS_NONE","features":[358]},{"name":"SCHEMAPROCESSCONTENTS_SKIP","features":[358]},{"name":"SCHEMAPROCESSCONTENTS_STRICT","features":[358]},{"name":"SCHEMATYPEVARIETY","features":[358]},{"name":"SCHEMATYPEVARIETY_ATOMIC","features":[358]},{"name":"SCHEMATYPEVARIETY_LIST","features":[358]},{"name":"SCHEMATYPEVARIETY_NONE","features":[358]},{"name":"SCHEMATYPEVARIETY_UNION","features":[358]},{"name":"SCHEMAUSE","features":[358]},{"name":"SCHEMAUSE_OPTIONAL","features":[358]},{"name":"SCHEMAUSE_PROHIBITED","features":[358]},{"name":"SCHEMAUSE_REQUIRED","features":[358]},{"name":"SCHEMAWHITESPACE","features":[358]},{"name":"SCHEMAWHITESPACE_COLLAPSE","features":[358]},{"name":"SCHEMAWHITESPACE_NONE","features":[358]},{"name":"SCHEMAWHITESPACE_PRESERVE","features":[358]},{"name":"SCHEMAWHITESPACE_REPLACE","features":[358]},{"name":"SERVERXMLHTTP_OPTION","features":[358]},{"name":"SOMITEMTYPE","features":[358]},{"name":"SOMITEM_ALL","features":[358]},{"name":"SOMITEM_ANNOTATION","features":[358]},{"name":"SOMITEM_ANY","features":[358]},{"name":"SOMITEM_ANYATTRIBUTE","features":[358]},{"name":"SOMITEM_ANYTYPE","features":[358]},{"name":"SOMITEM_ATTRIBUTE","features":[358]},{"name":"SOMITEM_ATTRIBUTEGROUP","features":[358]},{"name":"SOMITEM_CHOICE","features":[358]},{"name":"SOMITEM_COMPLEXTYPE","features":[358]},{"name":"SOMITEM_DATATYPE","features":[358]},{"name":"SOMITEM_DATATYPE_ANYSIMPLETYPE","features":[358]},{"name":"SOMITEM_DATATYPE_ANYTYPE","features":[358]},{"name":"SOMITEM_DATATYPE_ANYURI","features":[358]},{"name":"SOMITEM_DATATYPE_BASE64BINARY","features":[358]},{"name":"SOMITEM_DATATYPE_BOOLEAN","features":[358]},{"name":"SOMITEM_DATATYPE_BYTE","features":[358]},{"name":"SOMITEM_DATATYPE_DATE","features":[358]},{"name":"SOMITEM_DATATYPE_DATETIME","features":[358]},{"name":"SOMITEM_DATATYPE_DAY","features":[358]},{"name":"SOMITEM_DATATYPE_DECIMAL","features":[358]},{"name":"SOMITEM_DATATYPE_DOUBLE","features":[358]},{"name":"SOMITEM_DATATYPE_DURATION","features":[358]},{"name":"SOMITEM_DATATYPE_ENTITIES","features":[358]},{"name":"SOMITEM_DATATYPE_ENTITY","features":[358]},{"name":"SOMITEM_DATATYPE_FLOAT","features":[358]},{"name":"SOMITEM_DATATYPE_HEXBINARY","features":[358]},{"name":"SOMITEM_DATATYPE_ID","features":[358]},{"name":"SOMITEM_DATATYPE_IDREF","features":[358]},{"name":"SOMITEM_DATATYPE_IDREFS","features":[358]},{"name":"SOMITEM_DATATYPE_INT","features":[358]},{"name":"SOMITEM_DATATYPE_INTEGER","features":[358]},{"name":"SOMITEM_DATATYPE_LANGUAGE","features":[358]},{"name":"SOMITEM_DATATYPE_LONG","features":[358]},{"name":"SOMITEM_DATATYPE_MONTH","features":[358]},{"name":"SOMITEM_DATATYPE_MONTHDAY","features":[358]},{"name":"SOMITEM_DATATYPE_NAME","features":[358]},{"name":"SOMITEM_DATATYPE_NCNAME","features":[358]},{"name":"SOMITEM_DATATYPE_NEGATIVEINTEGER","features":[358]},{"name":"SOMITEM_DATATYPE_NMTOKEN","features":[358]},{"name":"SOMITEM_DATATYPE_NMTOKENS","features":[358]},{"name":"SOMITEM_DATATYPE_NONNEGATIVEINTEGER","features":[358]},{"name":"SOMITEM_DATATYPE_NONPOSITIVEINTEGER","features":[358]},{"name":"SOMITEM_DATATYPE_NORMALIZEDSTRING","features":[358]},{"name":"SOMITEM_DATATYPE_NOTATION","features":[358]},{"name":"SOMITEM_DATATYPE_POSITIVEINTEGER","features":[358]},{"name":"SOMITEM_DATATYPE_QNAME","features":[358]},{"name":"SOMITEM_DATATYPE_SHORT","features":[358]},{"name":"SOMITEM_DATATYPE_STRING","features":[358]},{"name":"SOMITEM_DATATYPE_TIME","features":[358]},{"name":"SOMITEM_DATATYPE_TOKEN","features":[358]},{"name":"SOMITEM_DATATYPE_UNSIGNEDBYTE","features":[358]},{"name":"SOMITEM_DATATYPE_UNSIGNEDINT","features":[358]},{"name":"SOMITEM_DATATYPE_UNSIGNEDLONG","features":[358]},{"name":"SOMITEM_DATATYPE_UNSIGNEDSHORT","features":[358]},{"name":"SOMITEM_DATATYPE_YEAR","features":[358]},{"name":"SOMITEM_DATATYPE_YEARMONTH","features":[358]},{"name":"SOMITEM_ELEMENT","features":[358]},{"name":"SOMITEM_EMPTYPARTICLE","features":[358]},{"name":"SOMITEM_GROUP","features":[358]},{"name":"SOMITEM_IDENTITYCONSTRAINT","features":[358]},{"name":"SOMITEM_KEY","features":[358]},{"name":"SOMITEM_KEYREF","features":[358]},{"name":"SOMITEM_NOTATION","features":[358]},{"name":"SOMITEM_NULL","features":[358]},{"name":"SOMITEM_NULL_ANY","features":[358]},{"name":"SOMITEM_NULL_ANYATTRIBUTE","features":[358]},{"name":"SOMITEM_NULL_ELEMENT","features":[358]},{"name":"SOMITEM_NULL_TYPE","features":[358]},{"name":"SOMITEM_PARTICLE","features":[358]},{"name":"SOMITEM_SCHEMA","features":[358]},{"name":"SOMITEM_SEQUENCE","features":[358]},{"name":"SOMITEM_SIMPLETYPE","features":[358]},{"name":"SOMITEM_UNIQUE","features":[358]},{"name":"SXH_OPTION_ESCAPE_PERCENT_IN_URL","features":[358]},{"name":"SXH_OPTION_IGNORE_SERVER_SSL_CERT_ERROR_FLAGS","features":[358]},{"name":"SXH_OPTION_SELECT_CLIENT_SSL_CERT","features":[358]},{"name":"SXH_OPTION_URL","features":[358]},{"name":"SXH_OPTION_URL_CODEPAGE","features":[358]},{"name":"SXH_PROXY_SETTING","features":[358]},{"name":"SXH_PROXY_SET_DEFAULT","features":[358]},{"name":"SXH_PROXY_SET_DIRECT","features":[358]},{"name":"SXH_PROXY_SET_PRECONFIG","features":[358]},{"name":"SXH_PROXY_SET_PROXY","features":[358]},{"name":"SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS","features":[358]},{"name":"SXH_SERVER_CERT_IGNORE_CERT_CN_INVALID","features":[358]},{"name":"SXH_SERVER_CERT_IGNORE_CERT_DATE_INVALID","features":[358]},{"name":"SXH_SERVER_CERT_IGNORE_UNKNOWN_CA","features":[358]},{"name":"SXH_SERVER_CERT_IGNORE_WRONG_USAGE","features":[358]},{"name":"SXH_SERVER_CERT_OPTION","features":[358]},{"name":"ServerXMLHTTP60","features":[358]},{"name":"XHR_AUTH","features":[358]},{"name":"XHR_AUTH_ALL","features":[358]},{"name":"XHR_AUTH_NONE","features":[358]},{"name":"XHR_AUTH_PROXY","features":[358]},{"name":"XHR_CERT","features":[358]},{"name":"XHR_CERT_ERROR_ALL_SERVER_ERRORS","features":[358]},{"name":"XHR_CERT_ERROR_CERT_CN_INVALID","features":[358]},{"name":"XHR_CERT_ERROR_CERT_DATE_INVALID","features":[358]},{"name":"XHR_CERT_ERROR_FLAG","features":[358]},{"name":"XHR_CERT_ERROR_REVOCATION_FAILED","features":[358]},{"name":"XHR_CERT_ERROR_UNKNOWN_CA","features":[358]},{"name":"XHR_CERT_IGNORE_ALL_SERVER_ERRORS","features":[358]},{"name":"XHR_CERT_IGNORE_CERT_CN_INVALID","features":[358]},{"name":"XHR_CERT_IGNORE_CERT_DATE_INVALID","features":[358]},{"name":"XHR_CERT_IGNORE_FLAG","features":[358]},{"name":"XHR_CERT_IGNORE_REVOCATION_FAILED","features":[358]},{"name":"XHR_CERT_IGNORE_UNKNOWN_CA","features":[358]},{"name":"XHR_COOKIE","features":[358,305]},{"name":"XHR_COOKIE_APPLY_P3P","features":[358]},{"name":"XHR_COOKIE_EVALUATE_P3P","features":[358]},{"name":"XHR_COOKIE_FLAG","features":[358]},{"name":"XHR_COOKIE_HTTPONLY","features":[358]},{"name":"XHR_COOKIE_IE6","features":[358]},{"name":"XHR_COOKIE_IS_LEGACY","features":[358]},{"name":"XHR_COOKIE_IS_RESTRICTED","features":[358]},{"name":"XHR_COOKIE_IS_SECURE","features":[358]},{"name":"XHR_COOKIE_IS_SESSION","features":[358]},{"name":"XHR_COOKIE_NON_SCRIPT","features":[358]},{"name":"XHR_COOKIE_P3P_ENABLED","features":[358]},{"name":"XHR_COOKIE_PROMPT_REQUIRED","features":[358]},{"name":"XHR_COOKIE_STATE","features":[358]},{"name":"XHR_COOKIE_STATE_ACCEPT","features":[358]},{"name":"XHR_COOKIE_STATE_DOWNGRADE","features":[358]},{"name":"XHR_COOKIE_STATE_LEASH","features":[358]},{"name":"XHR_COOKIE_STATE_PROMPT","features":[358]},{"name":"XHR_COOKIE_STATE_REJECT","features":[358]},{"name":"XHR_COOKIE_STATE_UNKNOWN","features":[358]},{"name":"XHR_COOKIE_THIRD_PARTY","features":[358]},{"name":"XHR_CRED_PROMPT","features":[358]},{"name":"XHR_CRED_PROMPT_ALL","features":[358]},{"name":"XHR_CRED_PROMPT_NONE","features":[358]},{"name":"XHR_CRED_PROMPT_PROXY","features":[358]},{"name":"XHR_PROPERTY","features":[358]},{"name":"XHR_PROP_EXTENDED_ERROR","features":[358]},{"name":"XHR_PROP_IGNORE_CERT_ERRORS","features":[358]},{"name":"XHR_PROP_MAX_CONNECTIONS","features":[358]},{"name":"XHR_PROP_NO_AUTH","features":[358]},{"name":"XHR_PROP_NO_CACHE","features":[358]},{"name":"XHR_PROP_NO_CRED_PROMPT","features":[358]},{"name":"XHR_PROP_NO_DEFAULT_HEADERS","features":[358]},{"name":"XHR_PROP_ONDATA_ALWAYS","features":[358]},{"name":"XHR_PROP_ONDATA_NEVER","features":[358]},{"name":"XHR_PROP_ONDATA_THRESHOLD","features":[358]},{"name":"XHR_PROP_QUERY_STRING_UTF8","features":[358]},{"name":"XHR_PROP_REPORT_REDIRECT_STATUS","features":[358]},{"name":"XHR_PROP_SET_ENTERPRISEID","features":[358]},{"name":"XHR_PROP_TIMEOUT","features":[358]},{"name":"XMLDOMDocumentEvents","features":[358,356]},{"name":"XMLDSOControl","features":[358]},{"name":"XMLDocument","features":[358]},{"name":"XMLELEMTYPE_COMMENT","features":[358]},{"name":"XMLELEMTYPE_DOCUMENT","features":[358]},{"name":"XMLELEMTYPE_DTD","features":[358]},{"name":"XMLELEMTYPE_ELEMENT","features":[358]},{"name":"XMLELEMTYPE_OTHER","features":[358]},{"name":"XMLELEMTYPE_PI","features":[358]},{"name":"XMLELEMTYPE_TEXT","features":[358]},{"name":"XMLELEM_TYPE","features":[358]},{"name":"XMLHTTP60","features":[358]},{"name":"XMLHTTPRequest","features":[358]},{"name":"XMLSchemaCache60","features":[358]},{"name":"XML_ERROR","features":[358]},{"name":"XSLTemplate60","features":[358]},{"name":"__msxml6_ReferenceRemainingTypes__","features":[358]}],"368":[{"name":"CreateXmlReader","features":[359,356]},{"name":"CreateXmlReaderInputWithEncodingCodePage","features":[359,305,356]},{"name":"CreateXmlReaderInputWithEncodingName","features":[359,305,356]},{"name":"CreateXmlWriter","features":[359,356]},{"name":"CreateXmlWriterOutputWithEncodingCodePage","features":[359,356]},{"name":"CreateXmlWriterOutputWithEncodingName","features":[359,356]},{"name":"DtdProcessing","features":[359]},{"name":"DtdProcessing_Parse","features":[359]},{"name":"DtdProcessing_Prohibit","features":[359]},{"name":"IXmlReader","features":[359]},{"name":"IXmlResolver","features":[359]},{"name":"IXmlWriter","features":[359]},{"name":"IXmlWriterLite","features":[359]},{"name":"MX_E_ENCODING","features":[359]},{"name":"MX_E_ENCODINGSIGNATURE","features":[359]},{"name":"MX_E_ENCODINGSWITCH","features":[359]},{"name":"MX_E_INPUTEND","features":[359]},{"name":"MX_E_MX","features":[359]},{"name":"NC_E_DECLAREDPREFIX","features":[359]},{"name":"NC_E_EMPTYURI","features":[359]},{"name":"NC_E_NAMECOLON","features":[359]},{"name":"NC_E_NC","features":[359]},{"name":"NC_E_QNAMECHARACTER","features":[359]},{"name":"NC_E_QNAMECOLON","features":[359]},{"name":"NC_E_UNDECLAREDPREFIX","features":[359]},{"name":"NC_E_XMLNSPREFIXRESERVED","features":[359]},{"name":"NC_E_XMLNSURIRESERVED","features":[359]},{"name":"NC_E_XMLPREFIXRESERVED","features":[359]},{"name":"NC_E_XMLURIRESERVED","features":[359]},{"name":"SC_E_MAXELEMENTDEPTH","features":[359]},{"name":"SC_E_MAXENTITYEXPANSION","features":[359]},{"name":"SC_E_SC","features":[359]},{"name":"WC_E_CDSECT","features":[359]},{"name":"WC_E_CDSECTEND","features":[359]},{"name":"WC_E_COMMENT","features":[359]},{"name":"WC_E_CONDSECT","features":[359]},{"name":"WC_E_DECLATTLIST","features":[359]},{"name":"WC_E_DECLDOCTYPE","features":[359]},{"name":"WC_E_DECLELEMENT","features":[359]},{"name":"WC_E_DECLENTITY","features":[359]},{"name":"WC_E_DECLNOTATION","features":[359]},{"name":"WC_E_DIGIT","features":[359]},{"name":"WC_E_DTDPROHIBITED","features":[359]},{"name":"WC_E_ELEMENTMATCH","features":[359]},{"name":"WC_E_ENCNAME","features":[359]},{"name":"WC_E_ENTITYCONTENT","features":[359]},{"name":"WC_E_EQUAL","features":[359]},{"name":"WC_E_GREATERTHAN","features":[359]},{"name":"WC_E_HEXDIGIT","features":[359]},{"name":"WC_E_INVALIDXMLSPACE","features":[359]},{"name":"WC_E_LEADINGXML","features":[359]},{"name":"WC_E_LEFTBRACKET","features":[359]},{"name":"WC_E_LEFTPAREN","features":[359]},{"name":"WC_E_LESSTHAN","features":[359]},{"name":"WC_E_MOREDATA","features":[359]},{"name":"WC_E_NAME","features":[359]},{"name":"WC_E_NAMECHARACTER","features":[359]},{"name":"WC_E_NDATA","features":[359]},{"name":"WC_E_NOEXTERNALENTITYREF","features":[359]},{"name":"WC_E_NORECURSION","features":[359]},{"name":"WC_E_PARSEDENTITY","features":[359]},{"name":"WC_E_PESBETWEENDECLS","features":[359]},{"name":"WC_E_PESINTERNALSUBSET","features":[359]},{"name":"WC_E_PI","features":[359]},{"name":"WC_E_PUBLIC","features":[359]},{"name":"WC_E_PUBLICID","features":[359]},{"name":"WC_E_QUESTIONMARK","features":[359]},{"name":"WC_E_QUOTE","features":[359]},{"name":"WC_E_ROOTELEMENT","features":[359]},{"name":"WC_E_SEMICOLON","features":[359]},{"name":"WC_E_SYNTAX","features":[359]},{"name":"WC_E_SYSTEM","features":[359]},{"name":"WC_E_SYSTEMID","features":[359]},{"name":"WC_E_TEXTDECL","features":[359]},{"name":"WC_E_TEXTXMLDECL","features":[359]},{"name":"WC_E_UNDECLAREDENTITY","features":[359]},{"name":"WC_E_UNIQUEATTRIBUTE","features":[359]},{"name":"WC_E_WC","features":[359]},{"name":"WC_E_WHITESPACE","features":[359]},{"name":"WC_E_XMLCHARACTER","features":[359]},{"name":"WC_E_XMLDECL","features":[359]},{"name":"WR_E_DUPLICATEATTRIBUTE","features":[359]},{"name":"WR_E_INVALIDACTION","features":[359]},{"name":"WR_E_INVALIDSURROGATEPAIR","features":[359]},{"name":"WR_E_INVALIDXMLSPACE","features":[359]},{"name":"WR_E_NAMESPACEUNDECLARED","features":[359]},{"name":"WR_E_NONWHITESPACE","features":[359]},{"name":"WR_E_NSPREFIXDECLARED","features":[359]},{"name":"WR_E_NSPREFIXWITHEMPTYNSURI","features":[359]},{"name":"WR_E_WR","features":[359]},{"name":"WR_E_XMLNSPREFIXDECLARATION","features":[359]},{"name":"WR_E_XMLNSURIDECLARATION","features":[359]},{"name":"WR_E_XMLPREFIXDECLARATION","features":[359]},{"name":"WR_E_XMLURIDECLARATION","features":[359]},{"name":"XML_E_INVALIDENCODING","features":[359]},{"name":"XML_E_INVALID_DECIMAL","features":[359]},{"name":"XML_E_INVALID_HEXIDECIMAL","features":[359]},{"name":"XML_E_INVALID_UNICODE","features":[359]},{"name":"XmlConformanceLevel","features":[359]},{"name":"XmlConformanceLevel_Auto","features":[359]},{"name":"XmlConformanceLevel_Document","features":[359]},{"name":"XmlConformanceLevel_Fragment","features":[359]},{"name":"XmlError","features":[359]},{"name":"XmlNodeType","features":[359]},{"name":"XmlNodeType_Attribute","features":[359]},{"name":"XmlNodeType_CDATA","features":[359]},{"name":"XmlNodeType_Comment","features":[359]},{"name":"XmlNodeType_DocumentType","features":[359]},{"name":"XmlNodeType_Element","features":[359]},{"name":"XmlNodeType_EndElement","features":[359]},{"name":"XmlNodeType_None","features":[359]},{"name":"XmlNodeType_ProcessingInstruction","features":[359]},{"name":"XmlNodeType_Text","features":[359]},{"name":"XmlNodeType_Whitespace","features":[359]},{"name":"XmlNodeType_XmlDeclaration","features":[359]},{"name":"XmlReadState","features":[359]},{"name":"XmlReadState_Closed","features":[359]},{"name":"XmlReadState_EndOfFile","features":[359]},{"name":"XmlReadState_Error","features":[359]},{"name":"XmlReadState_Initial","features":[359]},{"name":"XmlReadState_Interactive","features":[359]},{"name":"XmlReaderProperty","features":[359]},{"name":"XmlReaderProperty_ConformanceLevel","features":[359]},{"name":"XmlReaderProperty_DtdProcessing","features":[359]},{"name":"XmlReaderProperty_MaxElementDepth","features":[359]},{"name":"XmlReaderProperty_MaxEntityExpansion","features":[359]},{"name":"XmlReaderProperty_MultiLanguage","features":[359]},{"name":"XmlReaderProperty_RandomAccess","features":[359]},{"name":"XmlReaderProperty_ReadState","features":[359]},{"name":"XmlReaderProperty_XmlResolver","features":[359]},{"name":"XmlStandalone","features":[359]},{"name":"XmlStandalone_No","features":[359]},{"name":"XmlStandalone_Omit","features":[359]},{"name":"XmlStandalone_Yes","features":[359]},{"name":"XmlWriterProperty","features":[359]},{"name":"XmlWriterProperty_ByteOrderMark","features":[359]},{"name":"XmlWriterProperty_CompactEmptyElement","features":[359]},{"name":"XmlWriterProperty_ConformanceLevel","features":[359]},{"name":"XmlWriterProperty_Indent","features":[359]},{"name":"XmlWriterProperty_MultiLanguage","features":[359]},{"name":"XmlWriterProperty_OmitXmlDeclaration","features":[359]},{"name":"_DtdProcessing_Last","features":[359]},{"name":"_XmlConformanceLevel_Last","features":[359]},{"name":"_XmlNodeType_Last","features":[359]},{"name":"_XmlReaderProperty_Last","features":[359]},{"name":"_XmlStandalone_Last","features":[359]},{"name":"_XmlWriterProperty_Last","features":[359]}],"369":[{"name":"AJ_IFC_SECURITY_INHERIT","features":[360]},{"name":"AJ_IFC_SECURITY_OFF","features":[360]},{"name":"AJ_IFC_SECURITY_REQUIRED","features":[360]},{"name":"ALLJOYN_ARRAY","features":[360]},{"name":"ALLJOYN_BIG_ENDIAN","features":[360]},{"name":"ALLJOYN_BOOLEAN","features":[360]},{"name":"ALLJOYN_BOOLEAN_ARRAY","features":[360]},{"name":"ALLJOYN_BYTE","features":[360]},{"name":"ALLJOYN_BYTE_ARRAY","features":[360]},{"name":"ALLJOYN_CRED_CERT_CHAIN","features":[360]},{"name":"ALLJOYN_CRED_EXPIRATION","features":[360]},{"name":"ALLJOYN_CRED_LOGON_ENTRY","features":[360]},{"name":"ALLJOYN_CRED_NEW_PASSWORD","features":[360]},{"name":"ALLJOYN_CRED_ONE_TIME_PWD","features":[360]},{"name":"ALLJOYN_CRED_PASSWORD","features":[360]},{"name":"ALLJOYN_CRED_PRIVATE_KEY","features":[360]},{"name":"ALLJOYN_CRED_USER_NAME","features":[360]},{"name":"ALLJOYN_DICT_ENTRY","features":[360]},{"name":"ALLJOYN_DICT_ENTRY_CLOSE","features":[360]},{"name":"ALLJOYN_DICT_ENTRY_OPEN","features":[360]},{"name":"ALLJOYN_DISCONNECTED","features":[360]},{"name":"ALLJOYN_DOUBLE","features":[360]},{"name":"ALLJOYN_DOUBLE_ARRAY","features":[360]},{"name":"ALLJOYN_HANDLE","features":[360]},{"name":"ALLJOYN_INT16","features":[360]},{"name":"ALLJOYN_INT16_ARRAY","features":[360]},{"name":"ALLJOYN_INT32","features":[360]},{"name":"ALLJOYN_INT32_ARRAY","features":[360]},{"name":"ALLJOYN_INT64","features":[360]},{"name":"ALLJOYN_INT64_ARRAY","features":[360]},{"name":"ALLJOYN_INVALID","features":[360]},{"name":"ALLJOYN_LITTLE_ENDIAN","features":[360]},{"name":"ALLJOYN_MEMBER_ANNOTATE_DEPRECATED","features":[360]},{"name":"ALLJOYN_MEMBER_ANNOTATE_GLOBAL_BROADCAST","features":[360]},{"name":"ALLJOYN_MEMBER_ANNOTATE_NO_REPLY","features":[360]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONCAST","features":[360]},{"name":"ALLJOYN_MEMBER_ANNOTATE_SESSIONLESS","features":[360]},{"name":"ALLJOYN_MEMBER_ANNOTATE_UNICAST","features":[360]},{"name":"ALLJOYN_MESSAGE_DEFAULT_TIMEOUT","features":[360]},{"name":"ALLJOYN_MESSAGE_ERROR","features":[360]},{"name":"ALLJOYN_MESSAGE_FLAG_ALLOW_REMOTE_MSG","features":[360]},{"name":"ALLJOYN_MESSAGE_FLAG_AUTO_START","features":[360]},{"name":"ALLJOYN_MESSAGE_FLAG_ENCRYPTED","features":[360]},{"name":"ALLJOYN_MESSAGE_FLAG_GLOBAL_BROADCAST","features":[360]},{"name":"ALLJOYN_MESSAGE_FLAG_NO_REPLY_EXPECTED","features":[360]},{"name":"ALLJOYN_MESSAGE_FLAG_SESSIONLESS","features":[360]},{"name":"ALLJOYN_MESSAGE_INVALID","features":[360]},{"name":"ALLJOYN_MESSAGE_METHOD_CALL","features":[360]},{"name":"ALLJOYN_MESSAGE_METHOD_RET","features":[360]},{"name":"ALLJOYN_MESSAGE_SIGNAL","features":[360]},{"name":"ALLJOYN_NAMED_PIPE_CONNECT_SPEC","features":[360]},{"name":"ALLJOYN_OBJECT_PATH","features":[360]},{"name":"ALLJOYN_PROP_ACCESS_READ","features":[360]},{"name":"ALLJOYN_PROP_ACCESS_RW","features":[360]},{"name":"ALLJOYN_PROP_ACCESS_WRITE","features":[360]},{"name":"ALLJOYN_PROXIMITY_ANY","features":[360]},{"name":"ALLJOYN_PROXIMITY_NETWORK","features":[360]},{"name":"ALLJOYN_PROXIMITY_PHYSICAL","features":[360]},{"name":"ALLJOYN_READ_READY","features":[360]},{"name":"ALLJOYN_SESSIONLOST_INVALID","features":[360]},{"name":"ALLJOYN_SESSIONLOST_LINK_TIMEOUT","features":[360]},{"name":"ALLJOYN_SESSIONLOST_REASON_OTHER","features":[360]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_CLOSED_ABRUPTLY","features":[360]},{"name":"ALLJOYN_SESSIONLOST_REMOTE_END_LEFT_SESSION","features":[360]},{"name":"ALLJOYN_SESSIONLOST_REMOVED_BY_BINDER","features":[360]},{"name":"ALLJOYN_SIGNATURE","features":[360]},{"name":"ALLJOYN_STRING","features":[360]},{"name":"ALLJOYN_STRUCT","features":[360]},{"name":"ALLJOYN_STRUCT_CLOSE","features":[360]},{"name":"ALLJOYN_STRUCT_OPEN","features":[360]},{"name":"ALLJOYN_TRAFFIC_TYPE_MESSAGES","features":[360]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_RELIABLE","features":[360]},{"name":"ALLJOYN_TRAFFIC_TYPE_RAW_UNRELIABLE","features":[360]},{"name":"ALLJOYN_UINT16","features":[360]},{"name":"ALLJOYN_UINT16_ARRAY","features":[360]},{"name":"ALLJOYN_UINT32","features":[360]},{"name":"ALLJOYN_UINT32_ARRAY","features":[360]},{"name":"ALLJOYN_UINT64","features":[360]},{"name":"ALLJOYN_UINT64_ARRAY","features":[360]},{"name":"ALLJOYN_VARIANT","features":[360]},{"name":"ALLJOYN_WILDCARD","features":[360]},{"name":"ALLJOYN_WRITE_READY","features":[360]},{"name":"ANNOUNCED","features":[360]},{"name":"AllJoynAcceptBusConnection","features":[360,305]},{"name":"AllJoynCloseBusHandle","features":[360,305]},{"name":"AllJoynConnectToBus","features":[360,305]},{"name":"AllJoynCreateBus","features":[360,305,308]},{"name":"AllJoynEnumEvents","features":[360,305]},{"name":"AllJoynEventSelect","features":[360,305]},{"name":"AllJoynReceiveFromBus","features":[360,305]},{"name":"AllJoynSendToBus","features":[360,305]},{"name":"CAPABLE_ECDHE_ECDSA","features":[360]},{"name":"CAPABLE_ECDHE_NULL","features":[360]},{"name":"CAPABLE_ECDHE_SPEKE","features":[360]},{"name":"CLAIMABLE","features":[360]},{"name":"CLAIMED","features":[360]},{"name":"ER_ABOUT_ABOUTDATA_MISSING_REQUIRED_FIELD","features":[360]},{"name":"ER_ABOUT_DEFAULT_LANGUAGE_NOT_SPECIFIED","features":[360]},{"name":"ER_ABOUT_FIELD_ALREADY_SPECIFIED","features":[360]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_APPID_SIZE","features":[360]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_FIELD_VALUE","features":[360]},{"name":"ER_ABOUT_INVALID_ABOUTDATA_LISTENER","features":[360]},{"name":"ER_ABOUT_SESSIONPORT_NOT_BOUND","features":[360]},{"name":"ER_ALERTED_THREAD","features":[360]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_ERROR","features":[360]},{"name":"ER_ALLJOYN_ACCESS_PERMISSION_WARNING","features":[360]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_ALREADY_ADVERTISING","features":[360]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_ADVERTISENAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[360]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_ALREADY_EXISTS","features":[360]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_BINDSESSIONPORT_REPLY_INVALID_OPTS","features":[360]},{"name":"ER_ALLJOYN_CANCELADVERTISENAME_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_CANCELFINDADVERTISEDNAME_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_ALREADY_DISCOVERING","features":[360]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_FINDADVERTISEDNAME_REPLY_TRANSPORT_NOT_AVAILABLE","features":[360]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_ALREADY_JOINED","features":[360]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_BAD_SESSION_OPTS","features":[360]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_CONNECT_FAILED","features":[360]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_NO_SESSION","features":[360]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_REJECTED","features":[360]},{"name":"ER_ALLJOYN_JOINSESSION_REPLY_UNREACHABLE","features":[360]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_LEAVESESSION_REPLY_NO_SESSION","features":[360]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_ONAPPRESUME_REPLY_UNSUPPORTED","features":[360]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_ONAPPSUSPEND_REPLY_UNSUPPORTED","features":[360]},{"name":"ER_ALLJOYN_PING_FAILED","features":[360]},{"name":"ER_ALLJOYN_PING_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_PING_REPLY_INCOMPATIBLE_REMOTE_ROUTING_NODE","features":[360]},{"name":"ER_ALLJOYN_PING_REPLY_IN_PROGRESS","features":[360]},{"name":"ER_ALLJOYN_PING_REPLY_TIMEOUT","features":[360]},{"name":"ER_ALLJOYN_PING_REPLY_UNKNOWN_NAME","features":[360]},{"name":"ER_ALLJOYN_PING_REPLY_UNREACHABLE","features":[360]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_INCOMPATIBLE_REMOTE_DAEMON","features":[360]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_BINDER","features":[360]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_FOUND","features":[360]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_NOT_MULTIPOINT","features":[360]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_REMOVESESSIONMEMBER_REPLY_NO_SESSION","features":[360]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_FAILED","features":[360]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NOT_SUPPORTED","features":[360]},{"name":"ER_ALLJOYN_SETLINKTIMEOUT_REPLY_NO_DEST_SUPPORT","features":[360]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_BAD_PORT","features":[360]},{"name":"ER_ALLJOYN_UNBINDSESSIONPORT_REPLY_FAILED","features":[360]},{"name":"ER_APPLICATION_STATE_LISTENER_ALREADY_EXISTS","features":[360]},{"name":"ER_APPLICATION_STATE_LISTENER_NO_SUCH_LISTENER","features":[360]},{"name":"ER_ARDP_BACKPRESSURE","features":[360]},{"name":"ER_ARDP_DISCONNECTING","features":[360]},{"name":"ER_ARDP_INVALID_CONNECTION","features":[360]},{"name":"ER_ARDP_INVALID_RESPONSE","features":[360]},{"name":"ER_ARDP_INVALID_STATE","features":[360]},{"name":"ER_ARDP_PERSIST_TIMEOUT","features":[360]},{"name":"ER_ARDP_PROBE_TIMEOUT","features":[360]},{"name":"ER_ARDP_REMOTE_CONNECTION_RESET","features":[360]},{"name":"ER_ARDP_TTL_EXPIRED","features":[360]},{"name":"ER_ARDP_VERSION_NOT_SUPPORTED","features":[360]},{"name":"ER_ARDP_WRITE_BLOCKED","features":[360]},{"name":"ER_AUTH_FAIL","features":[360]},{"name":"ER_AUTH_USER_REJECT","features":[360]},{"name":"ER_BAD_ARG_1","features":[360]},{"name":"ER_BAD_ARG_2","features":[360]},{"name":"ER_BAD_ARG_3","features":[360]},{"name":"ER_BAD_ARG_4","features":[360]},{"name":"ER_BAD_ARG_5","features":[360]},{"name":"ER_BAD_ARG_6","features":[360]},{"name":"ER_BAD_ARG_7","features":[360]},{"name":"ER_BAD_ARG_8","features":[360]},{"name":"ER_BAD_ARG_COUNT","features":[360]},{"name":"ER_BAD_HOSTNAME","features":[360]},{"name":"ER_BAD_STRING_ENCODING","features":[360]},{"name":"ER_BAD_TRANSPORT_MASK","features":[360]},{"name":"ER_BUFFER_TOO_SMALL","features":[360]},{"name":"ER_BUS_ALREADY_CONNECTED","features":[360]},{"name":"ER_BUS_ALREADY_LISTENING","features":[360]},{"name":"ER_BUS_ANNOTATION_ALREADY_EXISTS","features":[360]},{"name":"ER_BUS_AUTHENTICATION_PENDING","features":[360]},{"name":"ER_BUS_BAD_BODY_LEN","features":[360]},{"name":"ER_BUS_BAD_BUS_NAME","features":[360]},{"name":"ER_BUS_BAD_CHILD_PATH","features":[360]},{"name":"ER_BUS_BAD_ERROR_NAME","features":[360]},{"name":"ER_BUS_BAD_HDR_FLAGS","features":[360]},{"name":"ER_BUS_BAD_HEADER_FIELD","features":[360]},{"name":"ER_BUS_BAD_HEADER_LEN","features":[360]},{"name":"ER_BUS_BAD_INTERFACE_NAME","features":[360]},{"name":"ER_BUS_BAD_LENGTH","features":[360]},{"name":"ER_BUS_BAD_MEMBER_NAME","features":[360]},{"name":"ER_BUS_BAD_OBJ_PATH","features":[360]},{"name":"ER_BUS_BAD_SENDER_ID","features":[360]},{"name":"ER_BUS_BAD_SEND_PARAMETER","features":[360]},{"name":"ER_BUS_BAD_SESSION_OPTS","features":[360]},{"name":"ER_BUS_BAD_SIGNATURE","features":[360]},{"name":"ER_BUS_BAD_TRANSPORT_ARGS","features":[360]},{"name":"ER_BUS_BAD_VALUE","features":[360]},{"name":"ER_BUS_BAD_VALUE_TYPE","features":[360]},{"name":"ER_BUS_BAD_XML","features":[360]},{"name":"ER_BUS_BLOCKING_CALL_NOT_ALLOWED","features":[360]},{"name":"ER_BUS_BUS_ALREADY_STARTED","features":[360]},{"name":"ER_BUS_BUS_NOT_STARTED","features":[360]},{"name":"ER_BUS_CANNOT_ADD_HANDLER","features":[360]},{"name":"ER_BUS_CANNOT_ADD_INTERFACE","features":[360]},{"name":"ER_BUS_CANNOT_EXPAND_MESSAGE","features":[360]},{"name":"ER_BUS_CONNECTION_REJECTED","features":[360]},{"name":"ER_BUS_CONNECT_FAILED","features":[360]},{"name":"ER_BUS_CORRUPT_KEYSTORE","features":[360]},{"name":"ER_BUS_DESCRIPTION_ALREADY_EXISTS","features":[360]},{"name":"ER_BUS_DESTINATION_NOT_AUTHENTICATED","features":[360]},{"name":"ER_BUS_ELEMENT_NOT_FOUND","features":[360]},{"name":"ER_BUS_EMPTY_MESSAGE","features":[360]},{"name":"ER_BUS_ENDPOINT_CLOSING","features":[360]},{"name":"ER_BUS_ENDPOINT_REDIRECTED","features":[360]},{"name":"ER_BUS_ERRORS","features":[360]},{"name":"ER_BUS_ERROR_NAME_MISSING","features":[360]},{"name":"ER_BUS_ERROR_RESPONSE","features":[360]},{"name":"ER_BUS_ESTABLISH_FAILED","features":[360]},{"name":"ER_BUS_HANDLES_MISMATCH","features":[360]},{"name":"ER_BUS_HANDLES_NOT_ENABLED","features":[360]},{"name":"ER_BUS_HDR_EXPANSION_INVALID","features":[360]},{"name":"ER_BUS_IFACE_ALREADY_EXISTS","features":[360]},{"name":"ER_BUS_INCOMPATIBLE_DAEMON","features":[360]},{"name":"ER_BUS_INTERFACE_ACTIVATED","features":[360]},{"name":"ER_BUS_INTERFACE_MISMATCH","features":[360]},{"name":"ER_BUS_INTERFACE_MISSING","features":[360]},{"name":"ER_BUS_INTERFACE_NO_SUCH_MEMBER","features":[360]},{"name":"ER_BUS_INVALID_AUTH_MECHANISM","features":[360]},{"name":"ER_BUS_INVALID_HEADER_CHECKSUM","features":[360]},{"name":"ER_BUS_INVALID_HEADER_SERIAL","features":[360]},{"name":"ER_BUS_KEYBLOB_OP_INVALID","features":[360]},{"name":"ER_BUS_KEYSTORE_NOT_LOADED","features":[360]},{"name":"ER_BUS_KEYSTORE_VERSION_MISMATCH","features":[360]},{"name":"ER_BUS_KEY_EXPIRED","features":[360]},{"name":"ER_BUS_KEY_STORE_NOT_LOADED","features":[360]},{"name":"ER_BUS_KEY_UNAVAILABLE","features":[360]},{"name":"ER_BUS_LISTENER_ALREADY_SET","features":[360]},{"name":"ER_BUS_MATCH_RULE_NOT_FOUND","features":[360]},{"name":"ER_BUS_MEMBER_ALREADY_EXISTS","features":[360]},{"name":"ER_BUS_MEMBER_MISSING","features":[360]},{"name":"ER_BUS_MEMBER_NO_SUCH_SIGNATURE","features":[360]},{"name":"ER_BUS_MESSAGE_DECRYPTION_FAILED","features":[360]},{"name":"ER_BUS_MESSAGE_NOT_ENCRYPTED","features":[360]},{"name":"ER_BUS_METHOD_CALL_ABORTED","features":[360]},{"name":"ER_BUS_MISSING_COMPRESSION_TOKEN","features":[360]},{"name":"ER_BUS_NAME_TOO_LONG","features":[360]},{"name":"ER_BUS_NOT_ALLOWED","features":[360]},{"name":"ER_BUS_NOT_AUTHENTICATING","features":[360]},{"name":"ER_BUS_NOT_AUTHORIZED","features":[360]},{"name":"ER_BUS_NOT_A_COMPLETE_TYPE","features":[360]},{"name":"ER_BUS_NOT_A_DICTIONARY","features":[360]},{"name":"ER_BUS_NOT_COMPRESSED","features":[360]},{"name":"ER_BUS_NOT_CONNECTED","features":[360]},{"name":"ER_BUS_NOT_NUL_TERMINATED","features":[360]},{"name":"ER_BUS_NOT_OWNER","features":[360]},{"name":"ER_BUS_NO_AUTHENTICATION_MECHANISM","features":[360]},{"name":"ER_BUS_NO_CALL_FOR_REPLY","features":[360]},{"name":"ER_BUS_NO_ENDPOINT","features":[360]},{"name":"ER_BUS_NO_LISTENER","features":[360]},{"name":"ER_BUS_NO_PEER_GUID","features":[360]},{"name":"ER_BUS_NO_ROUTE","features":[360]},{"name":"ER_BUS_NO_SESSION","features":[360]},{"name":"ER_BUS_NO_SUCH_ANNOTATION","features":[360]},{"name":"ER_BUS_NO_SUCH_HANDLE","features":[360]},{"name":"ER_BUS_NO_SUCH_INTERFACE","features":[360]},{"name":"ER_BUS_NO_SUCH_MESSAGE","features":[360]},{"name":"ER_BUS_NO_SUCH_OBJECT","features":[360]},{"name":"ER_BUS_NO_SUCH_PROPERTY","features":[360]},{"name":"ER_BUS_NO_SUCH_SERVICE","features":[360]},{"name":"ER_BUS_NO_TRANSPORTS","features":[360]},{"name":"ER_BUS_OBJECT_NOT_REGISTERED","features":[360]},{"name":"ER_BUS_OBJECT_NO_SUCH_INTERFACE","features":[360]},{"name":"ER_BUS_OBJECT_NO_SUCH_MEMBER","features":[360]},{"name":"ER_BUS_OBJ_ALREADY_EXISTS","features":[360]},{"name":"ER_BUS_OBJ_NOT_FOUND","features":[360]},{"name":"ER_BUS_PATH_MISSING","features":[360]},{"name":"ER_BUS_PEER_AUTH_VERSION_MISMATCH","features":[360]},{"name":"ER_BUS_PING_GROUP_NOT_FOUND","features":[360]},{"name":"ER_BUS_POLICY_VIOLATION","features":[360]},{"name":"ER_BUS_PROPERTY_ACCESS_DENIED","features":[360]},{"name":"ER_BUS_PROPERTY_ALREADY_EXISTS","features":[360]},{"name":"ER_BUS_PROPERTY_VALUE_NOT_SET","features":[360]},{"name":"ER_BUS_READ_ERROR","features":[360]},{"name":"ER_BUS_REMOVED_BY_BINDER","features":[360]},{"name":"ER_BUS_REMOVED_BY_BINDER_SELF","features":[360]},{"name":"ER_BUS_REPLY_IS_ERROR_MESSAGE","features":[360]},{"name":"ER_BUS_REPLY_SERIAL_MISSING","features":[360]},{"name":"ER_BUS_SECURITY_FATAL","features":[360]},{"name":"ER_BUS_SECURITY_NOT_ENABLED","features":[360]},{"name":"ER_BUS_SELF_CONNECT","features":[360]},{"name":"ER_BUS_SET_PROPERTY_REJECTED","features":[360]},{"name":"ER_BUS_SET_WRONG_SIGNATURE","features":[360]},{"name":"ER_BUS_SIGNATURE_MISMATCH","features":[360]},{"name":"ER_BUS_STOPPING","features":[360]},{"name":"ER_BUS_TIME_TO_LIVE_EXPIRED","features":[360]},{"name":"ER_BUS_TRANSPORT_ACCESS_DENIED","features":[360]},{"name":"ER_BUS_TRANSPORT_NOT_AVAILABLE","features":[360]},{"name":"ER_BUS_TRANSPORT_NOT_STARTED","features":[360]},{"name":"ER_BUS_TRUNCATED","features":[360]},{"name":"ER_BUS_UNEXPECTED_DISPOSITION","features":[360]},{"name":"ER_BUS_UNEXPECTED_SIGNATURE","features":[360]},{"name":"ER_BUS_UNKNOWN_INTERFACE","features":[360]},{"name":"ER_BUS_UNKNOWN_PATH","features":[360]},{"name":"ER_BUS_UNKNOWN_SERIAL","features":[360]},{"name":"ER_BUS_UNMATCHED_REPLY_SERIAL","features":[360]},{"name":"ER_BUS_WAIT_FAILED","features":[360]},{"name":"ER_BUS_WRITE_ERROR","features":[360]},{"name":"ER_BUS_WRITE_QUEUE_FULL","features":[360]},{"name":"ER_CERTIFICATE_NOT_FOUND","features":[360]},{"name":"ER_COMMON_ERRORS","features":[360]},{"name":"ER_CONNECTION_LIMIT_EXCEEDED","features":[360]},{"name":"ER_CONN_REFUSED","features":[360]},{"name":"ER_CORRUPT_KEYBLOB","features":[360]},{"name":"ER_CRYPTO_ERROR","features":[360]},{"name":"ER_CRYPTO_HASH_UNINITIALIZED","features":[360]},{"name":"ER_CRYPTO_ILLEGAL_PARAMETERS","features":[360]},{"name":"ER_CRYPTO_INSUFFICIENT_SECURITY","features":[360]},{"name":"ER_CRYPTO_KEY_UNAVAILABLE","features":[360]},{"name":"ER_CRYPTO_KEY_UNUSABLE","features":[360]},{"name":"ER_CRYPTO_TRUNCATED","features":[360]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NON_EXISTENT","features":[360]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_NOT_OWNER","features":[360]},{"name":"ER_DBUS_RELEASE_NAME_REPLY_RELEASED","features":[360]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER","features":[360]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_EXISTS","features":[360]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_IN_QUEUE","features":[360]},{"name":"ER_DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER","features":[360]},{"name":"ER_DBUS_START_REPLY_ALREADY_RUNNING","features":[360]},{"name":"ER_DEADLOCK","features":[360]},{"name":"ER_DEAD_THREAD","features":[360]},{"name":"ER_DIGEST_MISMATCH","features":[360]},{"name":"ER_DUPLICATE_CERTIFICATE","features":[360]},{"name":"ER_DUPLICATE_KEY","features":[360]},{"name":"ER_EMPTY_KEY_BLOB","features":[360]},{"name":"ER_END_OF_DATA","features":[360]},{"name":"ER_EOF","features":[360]},{"name":"ER_EXTERNAL_THREAD","features":[360]},{"name":"ER_FAIL","features":[360]},{"name":"ER_FEATURE_NOT_AVAILABLE","features":[360]},{"name":"ER_INIT_FAILED","features":[360]},{"name":"ER_INVALID_ADDRESS","features":[360]},{"name":"ER_INVALID_APPLICATION_STATE","features":[360]},{"name":"ER_INVALID_CERTIFICATE","features":[360]},{"name":"ER_INVALID_CERTIFICATE_USAGE","features":[360]},{"name":"ER_INVALID_CERT_CHAIN","features":[360]},{"name":"ER_INVALID_CONFIG","features":[360]},{"name":"ER_INVALID_DATA","features":[360]},{"name":"ER_INVALID_GUID","features":[360]},{"name":"ER_INVALID_HTTP_METHOD_USED_FOR_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[360]},{"name":"ER_INVALID_KEY_ENCODING","features":[360]},{"name":"ER_INVALID_ON_DEMAND_CONNECTION_MESSAGE_RESPONSE","features":[360]},{"name":"ER_INVALID_PERSISTENT_CONNECTION_MESSAGE_RESPONSE","features":[360]},{"name":"ER_INVALID_RENDEZVOUS_SERVER_INTERFACE_MESSAGE","features":[360]},{"name":"ER_INVALID_SIGNAL_EMISSION_TYPE","features":[360]},{"name":"ER_INVALID_STREAM","features":[360]},{"name":"ER_IODISPATCH_STOPPING","features":[360]},{"name":"ER_KEY_STORE_ALREADY_INITIALIZED","features":[360]},{"name":"ER_KEY_STORE_ID_NOT_YET_SET","features":[360]},{"name":"ER_LANGUAGE_NOT_SUPPORTED","features":[360]},{"name":"ER_MANAGEMENT_ALREADY_STARTED","features":[360]},{"name":"ER_MANAGEMENT_NOT_STARTED","features":[360]},{"name":"ER_MANIFEST_NOT_FOUND","features":[360]},{"name":"ER_MANIFEST_REJECTED","features":[360]},{"name":"ER_MISSING_DIGEST_IN_CERTIFICATE","features":[360]},{"name":"ER_NONE","features":[360]},{"name":"ER_NOT_CONN","features":[360]},{"name":"ER_NOT_CONNECTED_TO_RENDEZVOUS_SERVER","features":[360]},{"name":"ER_NOT_IMPLEMENTED","features":[360]},{"name":"ER_NO_COMMON_TRUST","features":[360]},{"name":"ER_NO_SUCH_ALARM","features":[360]},{"name":"ER_NO_SUCH_DEVICE","features":[360]},{"name":"ER_NO_TRUST_ANCHOR","features":[360]},{"name":"ER_OK","features":[360]},{"name":"ER_OPEN_FAILED","features":[360]},{"name":"ER_OS_ERROR","features":[360]},{"name":"ER_OUT_OF_MEMORY","features":[360]},{"name":"ER_P2P","features":[360]},{"name":"ER_P2P_BUSY","features":[360]},{"name":"ER_P2P_DISABLED","features":[360]},{"name":"ER_P2P_FORBIDDEN","features":[360]},{"name":"ER_P2P_NOT_CONNECTED","features":[360]},{"name":"ER_P2P_NO_GO","features":[360]},{"name":"ER_P2P_NO_STA","features":[360]},{"name":"ER_P2P_TIMEOUT","features":[360]},{"name":"ER_PACKET_BAD_CRC","features":[360]},{"name":"ER_PACKET_BAD_FORMAT","features":[360]},{"name":"ER_PACKET_BAD_PARAMETER","features":[360]},{"name":"ER_PACKET_BUS_NO_SUCH_CHANNEL","features":[360]},{"name":"ER_PACKET_CHANNEL_FAIL","features":[360]},{"name":"ER_PACKET_CONNECT_TIMEOUT","features":[360]},{"name":"ER_PACKET_TOO_LARGE","features":[360]},{"name":"ER_PARSE_ERROR","features":[360]},{"name":"ER_PERMISSION_DENIED","features":[360]},{"name":"ER_POLICY_NOT_NEWER","features":[360]},{"name":"ER_PROXIMITY_CONNECTION_ESTABLISH_FAIL","features":[360]},{"name":"ER_PROXIMITY_NO_PEERS_FOUND","features":[360]},{"name":"ER_READ_ERROR","features":[360]},{"name":"ER_RENDEZVOUS_SERVER_DEACTIVATED_USER","features":[360]},{"name":"ER_RENDEZVOUS_SERVER_ERR401_UNAUTHORIZED_REQUEST","features":[360]},{"name":"ER_RENDEZVOUS_SERVER_ERR500_INTERNAL_ERROR","features":[360]},{"name":"ER_RENDEZVOUS_SERVER_ERR503_STATUS_UNAVAILABLE","features":[360]},{"name":"ER_RENDEZVOUS_SERVER_ROOT_CERTIFICATE_UNINITIALIZED","features":[360]},{"name":"ER_RENDEZVOUS_SERVER_UNKNOWN_USER","features":[360]},{"name":"ER_RENDEZVOUS_SERVER_UNRECOVERABLE_ERROR","features":[360]},{"name":"ER_SLAP_CRC_ERROR","features":[360]},{"name":"ER_SLAP_ERROR","features":[360]},{"name":"ER_SLAP_HDR_CHECKSUM_ERROR","features":[360]},{"name":"ER_SLAP_INVALID_PACKET_LEN","features":[360]},{"name":"ER_SLAP_INVALID_PACKET_TYPE","features":[360]},{"name":"ER_SLAP_LEN_MISMATCH","features":[360]},{"name":"ER_SLAP_OTHER_END_CLOSED","features":[360]},{"name":"ER_SLAP_PACKET_TYPE_MISMATCH","features":[360]},{"name":"ER_SOCKET_BIND_ERROR","features":[360]},{"name":"ER_SOCK_CLOSING","features":[360]},{"name":"ER_SOCK_OTHER_END_CLOSED","features":[360]},{"name":"ER_SSL_CONNECT","features":[360]},{"name":"ER_SSL_ERRORS","features":[360]},{"name":"ER_SSL_INIT","features":[360]},{"name":"ER_SSL_VERIFY","features":[360]},{"name":"ER_STOPPING_THREAD","features":[360]},{"name":"ER_TCP_MAX_UNTRUSTED","features":[360]},{"name":"ER_THREADPOOL_EXHAUSTED","features":[360]},{"name":"ER_THREADPOOL_STOPPING","features":[360]},{"name":"ER_THREAD_NO_WAIT","features":[360]},{"name":"ER_THREAD_RUNNING","features":[360]},{"name":"ER_THREAD_STOPPING","features":[360]},{"name":"ER_TIMEOUT","features":[360]},{"name":"ER_TIMER_EXITING","features":[360]},{"name":"ER_TIMER_FALLBEHIND","features":[360]},{"name":"ER_TIMER_FULL","features":[360]},{"name":"ER_TIMER_NOT_ALLOWED","features":[360]},{"name":"ER_UDP_BACKPRESSURE","features":[360]},{"name":"ER_UDP_BUSHELLO","features":[360]},{"name":"ER_UDP_DEMUX_NO_ENDPOINT","features":[360]},{"name":"ER_UDP_DISCONNECT","features":[360]},{"name":"ER_UDP_EARLY_EXIT","features":[360]},{"name":"ER_UDP_ENDPOINT_NOT_STARTED","features":[360]},{"name":"ER_UDP_ENDPOINT_REMOVED","features":[360]},{"name":"ER_UDP_ENDPOINT_STALLED","features":[360]},{"name":"ER_UDP_INVALID","features":[360]},{"name":"ER_UDP_LOCAL_DISCONNECT","features":[360]},{"name":"ER_UDP_LOCAL_DISCONNECT_FAIL","features":[360]},{"name":"ER_UDP_MESSAGE","features":[360]},{"name":"ER_UDP_MSG_TOO_LONG","features":[360]},{"name":"ER_UDP_NOT_DISCONNECTED","features":[360]},{"name":"ER_UDP_NOT_IMPLEMENTED","features":[360]},{"name":"ER_UDP_NO_LISTENER","features":[360]},{"name":"ER_UDP_NO_NETWORK","features":[360]},{"name":"ER_UDP_STOPPING","features":[360]},{"name":"ER_UDP_UNEXPECTED_FLOW","features":[360]},{"name":"ER_UDP_UNEXPECTED_LENGTH","features":[360]},{"name":"ER_UDP_UNSUPPORTED","features":[360]},{"name":"ER_UNABLE_TO_CONNECT_TO_RENDEZVOUS_SERVER","features":[360]},{"name":"ER_UNABLE_TO_SEND_MESSAGE_TO_RENDEZVOUS_SERVER","features":[360]},{"name":"ER_UNKNOWN_CERTIFICATE","features":[360]},{"name":"ER_UTF_CONVERSION_FAILED","features":[360]},{"name":"ER_WARNING","features":[360]},{"name":"ER_WOULDBLOCK","features":[360]},{"name":"ER_WRITE_ERROR","features":[360]},{"name":"ER_XML_ACLS_MISSING","features":[360]},{"name":"ER_XML_ACL_ALL_TYPE_PEER_WITH_OTHERS","features":[360]},{"name":"ER_XML_ACL_PEERS_MISSING","features":[360]},{"name":"ER_XML_ACL_PEER_NOT_UNIQUE","features":[360]},{"name":"ER_XML_ACL_PEER_PUBLIC_KEY_SET","features":[360]},{"name":"ER_XML_ANNOTATION_NOT_UNIQUE","features":[360]},{"name":"ER_XML_CONVERTER_ERROR","features":[360]},{"name":"ER_XML_INTERFACE_MEMBERS_MISSING","features":[360]},{"name":"ER_XML_INTERFACE_NAME_NOT_UNIQUE","features":[360]},{"name":"ER_XML_INVALID_ACL_PEER_CHILDREN_COUNT","features":[360]},{"name":"ER_XML_INVALID_ACL_PEER_PUBLIC_KEY","features":[360]},{"name":"ER_XML_INVALID_ACL_PEER_TYPE","features":[360]},{"name":"ER_XML_INVALID_ANNOTATIONS_COUNT","features":[360]},{"name":"ER_XML_INVALID_ATTRIBUTE_VALUE","features":[360]},{"name":"ER_XML_INVALID_BASE64","features":[360]},{"name":"ER_XML_INVALID_ELEMENT_CHILDREN_COUNT","features":[360]},{"name":"ER_XML_INVALID_ELEMENT_NAME","features":[360]},{"name":"ER_XML_INVALID_INTERFACE_NAME","features":[360]},{"name":"ER_XML_INVALID_MANIFEST_VERSION","features":[360]},{"name":"ER_XML_INVALID_MEMBER_ACTION","features":[360]},{"name":"ER_XML_INVALID_MEMBER_NAME","features":[360]},{"name":"ER_XML_INVALID_MEMBER_TYPE","features":[360]},{"name":"ER_XML_INVALID_OBJECT_PATH","features":[360]},{"name":"ER_XML_INVALID_OID","features":[360]},{"name":"ER_XML_INVALID_POLICY_SERIAL_NUMBER","features":[360]},{"name":"ER_XML_INVALID_POLICY_VERSION","features":[360]},{"name":"ER_XML_INVALID_RULES_COUNT","features":[360]},{"name":"ER_XML_INVALID_SECURITY_LEVEL_ANNOTATION_VALUE","features":[360]},{"name":"ER_XML_MALFORMED","features":[360]},{"name":"ER_XML_MEMBER_DENY_ACTION_WITH_OTHER","features":[360]},{"name":"ER_XML_MEMBER_NAME_NOT_UNIQUE","features":[360]},{"name":"ER_XML_OBJECT_PATH_NOT_UNIQUE","features":[360]},{"name":"NEED_UPDATE","features":[360]},{"name":"NOT_CLAIMABLE","features":[360]},{"name":"PASSWORD_GENERATED_BY_APPLICATION","features":[360]},{"name":"PASSWORD_GENERATED_BY_SECURITY_MANAGER","features":[360]},{"name":"QCC_FALSE","features":[360]},{"name":"QCC_StatusText","features":[360]},{"name":"QCC_TRUE","features":[360]},{"name":"QStatus","features":[360]},{"name":"UNANNOUNCED","features":[360]},{"name":"alljoyn_about_announced_ptr","features":[360]},{"name":"alljoyn_about_announceflag","features":[360]},{"name":"alljoyn_aboutdata","features":[360]},{"name":"alljoyn_aboutdata_create","features":[360]},{"name":"alljoyn_aboutdata_create_empty","features":[360]},{"name":"alljoyn_aboutdata_create_full","features":[360]},{"name":"alljoyn_aboutdata_createfrommsgarg","features":[360]},{"name":"alljoyn_aboutdata_createfromxml","features":[360]},{"name":"alljoyn_aboutdata_destroy","features":[360]},{"name":"alljoyn_aboutdata_getaboutdata","features":[360]},{"name":"alljoyn_aboutdata_getajsoftwareversion","features":[360]},{"name":"alljoyn_aboutdata_getannouncedaboutdata","features":[360]},{"name":"alljoyn_aboutdata_getappid","features":[360]},{"name":"alljoyn_aboutdata_getappname","features":[360]},{"name":"alljoyn_aboutdata_getdateofmanufacture","features":[360]},{"name":"alljoyn_aboutdata_getdefaultlanguage","features":[360]},{"name":"alljoyn_aboutdata_getdescription","features":[360]},{"name":"alljoyn_aboutdata_getdeviceid","features":[360]},{"name":"alljoyn_aboutdata_getdevicename","features":[360]},{"name":"alljoyn_aboutdata_getfield","features":[360]},{"name":"alljoyn_aboutdata_getfields","features":[360]},{"name":"alljoyn_aboutdata_getfieldsignature","features":[360]},{"name":"alljoyn_aboutdata_gethardwareversion","features":[360]},{"name":"alljoyn_aboutdata_getmanufacturer","features":[360]},{"name":"alljoyn_aboutdata_getmodelnumber","features":[360]},{"name":"alljoyn_aboutdata_getsoftwareversion","features":[360]},{"name":"alljoyn_aboutdata_getsupportedlanguages","features":[360]},{"name":"alljoyn_aboutdata_getsupporturl","features":[360]},{"name":"alljoyn_aboutdata_isfieldannounced","features":[360]},{"name":"alljoyn_aboutdata_isfieldlocalized","features":[360]},{"name":"alljoyn_aboutdata_isfieldrequired","features":[360]},{"name":"alljoyn_aboutdata_isvalid","features":[360]},{"name":"alljoyn_aboutdata_setappid","features":[360]},{"name":"alljoyn_aboutdata_setappid_fromstring","features":[360]},{"name":"alljoyn_aboutdata_setappname","features":[360]},{"name":"alljoyn_aboutdata_setdateofmanufacture","features":[360]},{"name":"alljoyn_aboutdata_setdefaultlanguage","features":[360]},{"name":"alljoyn_aboutdata_setdescription","features":[360]},{"name":"alljoyn_aboutdata_setdeviceid","features":[360]},{"name":"alljoyn_aboutdata_setdevicename","features":[360]},{"name":"alljoyn_aboutdata_setfield","features":[360]},{"name":"alljoyn_aboutdata_sethardwareversion","features":[360]},{"name":"alljoyn_aboutdata_setmanufacturer","features":[360]},{"name":"alljoyn_aboutdata_setmodelnumber","features":[360]},{"name":"alljoyn_aboutdata_setsoftwareversion","features":[360]},{"name":"alljoyn_aboutdata_setsupportedlanguage","features":[360]},{"name":"alljoyn_aboutdata_setsupporturl","features":[360]},{"name":"alljoyn_aboutdatalistener","features":[360]},{"name":"alljoyn_aboutdatalistener_callbacks","features":[360]},{"name":"alljoyn_aboutdatalistener_create","features":[360]},{"name":"alljoyn_aboutdatalistener_destroy","features":[360]},{"name":"alljoyn_aboutdatalistener_getaboutdata_ptr","features":[360]},{"name":"alljoyn_aboutdatalistener_getannouncedaboutdata_ptr","features":[360]},{"name":"alljoyn_abouticon","features":[360]},{"name":"alljoyn_abouticon_clear","features":[360]},{"name":"alljoyn_abouticon_create","features":[360]},{"name":"alljoyn_abouticon_destroy","features":[360]},{"name":"alljoyn_abouticon_getcontent","features":[360]},{"name":"alljoyn_abouticon_geturl","features":[360]},{"name":"alljoyn_abouticon_setcontent","features":[360]},{"name":"alljoyn_abouticon_setcontent_frommsgarg","features":[360]},{"name":"alljoyn_abouticon_seturl","features":[360]},{"name":"alljoyn_abouticonobj","features":[360]},{"name":"alljoyn_abouticonobj_create","features":[360]},{"name":"alljoyn_abouticonobj_destroy","features":[360]},{"name":"alljoyn_abouticonproxy","features":[360]},{"name":"alljoyn_abouticonproxy_create","features":[360]},{"name":"alljoyn_abouticonproxy_destroy","features":[360]},{"name":"alljoyn_abouticonproxy_geticon","features":[360]},{"name":"alljoyn_abouticonproxy_getversion","features":[360]},{"name":"alljoyn_aboutlistener","features":[360]},{"name":"alljoyn_aboutlistener_callback","features":[360]},{"name":"alljoyn_aboutlistener_create","features":[360]},{"name":"alljoyn_aboutlistener_destroy","features":[360]},{"name":"alljoyn_aboutobj","features":[360]},{"name":"alljoyn_aboutobj_announce","features":[360]},{"name":"alljoyn_aboutobj_announce_using_datalistener","features":[360]},{"name":"alljoyn_aboutobj_create","features":[360]},{"name":"alljoyn_aboutobj_destroy","features":[360]},{"name":"alljoyn_aboutobj_unannounce","features":[360]},{"name":"alljoyn_aboutobjectdescription","features":[360]},{"name":"alljoyn_aboutobjectdescription_clear","features":[360]},{"name":"alljoyn_aboutobjectdescription_create","features":[360]},{"name":"alljoyn_aboutobjectdescription_create_full","features":[360]},{"name":"alljoyn_aboutobjectdescription_createfrommsgarg","features":[360]},{"name":"alljoyn_aboutobjectdescription_destroy","features":[360]},{"name":"alljoyn_aboutobjectdescription_getinterfacepaths","features":[360]},{"name":"alljoyn_aboutobjectdescription_getinterfaces","features":[360]},{"name":"alljoyn_aboutobjectdescription_getmsgarg","features":[360]},{"name":"alljoyn_aboutobjectdescription_getpaths","features":[360]},{"name":"alljoyn_aboutobjectdescription_hasinterface","features":[360]},{"name":"alljoyn_aboutobjectdescription_hasinterfaceatpath","features":[360]},{"name":"alljoyn_aboutobjectdescription_haspath","features":[360]},{"name":"alljoyn_aboutproxy","features":[360]},{"name":"alljoyn_aboutproxy_create","features":[360]},{"name":"alljoyn_aboutproxy_destroy","features":[360]},{"name":"alljoyn_aboutproxy_getaboutdata","features":[360]},{"name":"alljoyn_aboutproxy_getobjectdescription","features":[360]},{"name":"alljoyn_aboutproxy_getversion","features":[360]},{"name":"alljoyn_applicationstate","features":[360]},{"name":"alljoyn_applicationstatelistener","features":[360]},{"name":"alljoyn_applicationstatelistener_callbacks","features":[360]},{"name":"alljoyn_applicationstatelistener_create","features":[360]},{"name":"alljoyn_applicationstatelistener_destroy","features":[360]},{"name":"alljoyn_applicationstatelistener_state_ptr","features":[360]},{"name":"alljoyn_authlistener","features":[360]},{"name":"alljoyn_authlistener_authenticationcomplete_ptr","features":[360]},{"name":"alljoyn_authlistener_callbacks","features":[360]},{"name":"alljoyn_authlistener_create","features":[360]},{"name":"alljoyn_authlistener_destroy","features":[360]},{"name":"alljoyn_authlistener_requestcredentials_ptr","features":[360]},{"name":"alljoyn_authlistener_requestcredentialsasync_ptr","features":[360]},{"name":"alljoyn_authlistener_requestcredentialsresponse","features":[360]},{"name":"alljoyn_authlistener_securityviolation_ptr","features":[360]},{"name":"alljoyn_authlistener_setsharedsecret","features":[360]},{"name":"alljoyn_authlistener_verifycredentials_ptr","features":[360]},{"name":"alljoyn_authlistener_verifycredentialsasync_ptr","features":[360]},{"name":"alljoyn_authlistener_verifycredentialsresponse","features":[360]},{"name":"alljoyn_authlistenerasync_callbacks","features":[360]},{"name":"alljoyn_authlistenerasync_create","features":[360]},{"name":"alljoyn_authlistenerasync_destroy","features":[360]},{"name":"alljoyn_autopinger","features":[360]},{"name":"alljoyn_autopinger_adddestination","features":[360]},{"name":"alljoyn_autopinger_addpinggroup","features":[360]},{"name":"alljoyn_autopinger_create","features":[360]},{"name":"alljoyn_autopinger_destination_found_ptr","features":[360]},{"name":"alljoyn_autopinger_destination_lost_ptr","features":[360]},{"name":"alljoyn_autopinger_destroy","features":[360]},{"name":"alljoyn_autopinger_pause","features":[360]},{"name":"alljoyn_autopinger_removedestination","features":[360]},{"name":"alljoyn_autopinger_removepinggroup","features":[360]},{"name":"alljoyn_autopinger_resume","features":[360]},{"name":"alljoyn_autopinger_setpinginterval","features":[360]},{"name":"alljoyn_busattachment","features":[360]},{"name":"alljoyn_busattachment_addlogonentry","features":[360]},{"name":"alljoyn_busattachment_addmatch","features":[360]},{"name":"alljoyn_busattachment_advertisename","features":[360]},{"name":"alljoyn_busattachment_bindsessionport","features":[360]},{"name":"alljoyn_busattachment_canceladvertisename","features":[360]},{"name":"alljoyn_busattachment_cancelfindadvertisedname","features":[360]},{"name":"alljoyn_busattachment_cancelfindadvertisednamebytransport","features":[360]},{"name":"alljoyn_busattachment_cancelwhoimplements_interface","features":[360]},{"name":"alljoyn_busattachment_cancelwhoimplements_interfaces","features":[360]},{"name":"alljoyn_busattachment_clearkeys","features":[360]},{"name":"alljoyn_busattachment_clearkeystore","features":[360]},{"name":"alljoyn_busattachment_connect","features":[360]},{"name":"alljoyn_busattachment_create","features":[360]},{"name":"alljoyn_busattachment_create_concurrency","features":[360]},{"name":"alljoyn_busattachment_createinterface","features":[360]},{"name":"alljoyn_busattachment_createinterface_secure","features":[360]},{"name":"alljoyn_busattachment_createinterfacesfromxml","features":[360]},{"name":"alljoyn_busattachment_deletedefaultkeystore","features":[360]},{"name":"alljoyn_busattachment_deleteinterface","features":[360]},{"name":"alljoyn_busattachment_destroy","features":[360]},{"name":"alljoyn_busattachment_disconnect","features":[360]},{"name":"alljoyn_busattachment_enableconcurrentcallbacks","features":[360]},{"name":"alljoyn_busattachment_enablepeersecurity","features":[360]},{"name":"alljoyn_busattachment_enablepeersecuritywithpermissionconfigurationlistener","features":[360]},{"name":"alljoyn_busattachment_findadvertisedname","features":[360]},{"name":"alljoyn_busattachment_findadvertisednamebytransport","features":[360]},{"name":"alljoyn_busattachment_getalljoyndebugobj","features":[360]},{"name":"alljoyn_busattachment_getalljoynproxyobj","features":[360]},{"name":"alljoyn_busattachment_getconcurrency","features":[360]},{"name":"alljoyn_busattachment_getconnectspec","features":[360]},{"name":"alljoyn_busattachment_getdbusproxyobj","features":[360]},{"name":"alljoyn_busattachment_getglobalguidstring","features":[360]},{"name":"alljoyn_busattachment_getinterface","features":[360]},{"name":"alljoyn_busattachment_getinterfaces","features":[360]},{"name":"alljoyn_busattachment_getkeyexpiration","features":[360]},{"name":"alljoyn_busattachment_getpeerguid","features":[360]},{"name":"alljoyn_busattachment_getpermissionconfigurator","features":[360]},{"name":"alljoyn_busattachment_gettimestamp","features":[360]},{"name":"alljoyn_busattachment_getuniquename","features":[360]},{"name":"alljoyn_busattachment_isconnected","features":[360]},{"name":"alljoyn_busattachment_ispeersecurityenabled","features":[360]},{"name":"alljoyn_busattachment_isstarted","features":[360]},{"name":"alljoyn_busattachment_isstopping","features":[360]},{"name":"alljoyn_busattachment_join","features":[360]},{"name":"alljoyn_busattachment_joinsession","features":[360]},{"name":"alljoyn_busattachment_joinsessionasync","features":[360]},{"name":"alljoyn_busattachment_joinsessioncb_ptr","features":[360]},{"name":"alljoyn_busattachment_leavesession","features":[360]},{"name":"alljoyn_busattachment_namehasowner","features":[360]},{"name":"alljoyn_busattachment_ping","features":[360]},{"name":"alljoyn_busattachment_registeraboutlistener","features":[360]},{"name":"alljoyn_busattachment_registerapplicationstatelistener","features":[360]},{"name":"alljoyn_busattachment_registerbuslistener","features":[360]},{"name":"alljoyn_busattachment_registerbusobject","features":[360]},{"name":"alljoyn_busattachment_registerbusobject_secure","features":[360]},{"name":"alljoyn_busattachment_registerkeystorelistener","features":[360]},{"name":"alljoyn_busattachment_registersignalhandler","features":[360]},{"name":"alljoyn_busattachment_registersignalhandlerwithrule","features":[360]},{"name":"alljoyn_busattachment_releasename","features":[360]},{"name":"alljoyn_busattachment_reloadkeystore","features":[360]},{"name":"alljoyn_busattachment_removematch","features":[360]},{"name":"alljoyn_busattachment_removesessionmember","features":[360]},{"name":"alljoyn_busattachment_requestname","features":[360]},{"name":"alljoyn_busattachment_secureconnection","features":[360]},{"name":"alljoyn_busattachment_secureconnectionasync","features":[360]},{"name":"alljoyn_busattachment_setdaemondebug","features":[360]},{"name":"alljoyn_busattachment_setkeyexpiration","features":[360]},{"name":"alljoyn_busattachment_setlinktimeout","features":[360]},{"name":"alljoyn_busattachment_setlinktimeoutasync","features":[360]},{"name":"alljoyn_busattachment_setlinktimeoutcb_ptr","features":[360]},{"name":"alljoyn_busattachment_setsessionlistener","features":[360]},{"name":"alljoyn_busattachment_start","features":[360]},{"name":"alljoyn_busattachment_stop","features":[360]},{"name":"alljoyn_busattachment_unbindsessionport","features":[360]},{"name":"alljoyn_busattachment_unregisteraboutlistener","features":[360]},{"name":"alljoyn_busattachment_unregisterallaboutlisteners","features":[360]},{"name":"alljoyn_busattachment_unregisterallhandlers","features":[360]},{"name":"alljoyn_busattachment_unregisterapplicationstatelistener","features":[360]},{"name":"alljoyn_busattachment_unregisterbuslistener","features":[360]},{"name":"alljoyn_busattachment_unregisterbusobject","features":[360]},{"name":"alljoyn_busattachment_unregistersignalhandler","features":[360]},{"name":"alljoyn_busattachment_unregistersignalhandlerwithrule","features":[360]},{"name":"alljoyn_busattachment_whoimplements_interface","features":[360]},{"name":"alljoyn_busattachment_whoimplements_interfaces","features":[360]},{"name":"alljoyn_buslistener","features":[360]},{"name":"alljoyn_buslistener_bus_disconnected_ptr","features":[360]},{"name":"alljoyn_buslistener_bus_prop_changed_ptr","features":[360]},{"name":"alljoyn_buslistener_bus_stopping_ptr","features":[360]},{"name":"alljoyn_buslistener_callbacks","features":[360]},{"name":"alljoyn_buslistener_create","features":[360]},{"name":"alljoyn_buslistener_destroy","features":[360]},{"name":"alljoyn_buslistener_found_advertised_name_ptr","features":[360]},{"name":"alljoyn_buslistener_listener_registered_ptr","features":[360]},{"name":"alljoyn_buslistener_listener_unregistered_ptr","features":[360]},{"name":"alljoyn_buslistener_lost_advertised_name_ptr","features":[360]},{"name":"alljoyn_buslistener_name_owner_changed_ptr","features":[360]},{"name":"alljoyn_busobject","features":[360]},{"name":"alljoyn_busobject_addinterface","features":[360]},{"name":"alljoyn_busobject_addinterface_announced","features":[360]},{"name":"alljoyn_busobject_addmethodhandler","features":[360]},{"name":"alljoyn_busobject_addmethodhandlers","features":[360]},{"name":"alljoyn_busobject_callbacks","features":[360]},{"name":"alljoyn_busobject_cancelsessionlessmessage","features":[360]},{"name":"alljoyn_busobject_cancelsessionlessmessage_serial","features":[360]},{"name":"alljoyn_busobject_create","features":[360]},{"name":"alljoyn_busobject_destroy","features":[360]},{"name":"alljoyn_busobject_emitpropertieschanged","features":[360]},{"name":"alljoyn_busobject_emitpropertychanged","features":[360]},{"name":"alljoyn_busobject_getannouncedinterfacenames","features":[360]},{"name":"alljoyn_busobject_getbusattachment","features":[360]},{"name":"alljoyn_busobject_getname","features":[360]},{"name":"alljoyn_busobject_getpath","features":[360]},{"name":"alljoyn_busobject_issecure","features":[360]},{"name":"alljoyn_busobject_methodentry","features":[360]},{"name":"alljoyn_busobject_methodreply_args","features":[360]},{"name":"alljoyn_busobject_methodreply_err","features":[360]},{"name":"alljoyn_busobject_methodreply_status","features":[360]},{"name":"alljoyn_busobject_object_registration_ptr","features":[360]},{"name":"alljoyn_busobject_prop_get_ptr","features":[360]},{"name":"alljoyn_busobject_prop_set_ptr","features":[360]},{"name":"alljoyn_busobject_setannounceflag","features":[360]},{"name":"alljoyn_busobject_signal","features":[360]},{"name":"alljoyn_certificateid","features":[360]},{"name":"alljoyn_certificateidarray","features":[360]},{"name":"alljoyn_claimcapability_masks","features":[360]},{"name":"alljoyn_claimcapabilityadditionalinfo_masks","features":[360]},{"name":"alljoyn_credentials","features":[360]},{"name":"alljoyn_credentials_clear","features":[360]},{"name":"alljoyn_credentials_create","features":[360]},{"name":"alljoyn_credentials_destroy","features":[360]},{"name":"alljoyn_credentials_getcertchain","features":[360]},{"name":"alljoyn_credentials_getexpiration","features":[360]},{"name":"alljoyn_credentials_getlogonentry","features":[360]},{"name":"alljoyn_credentials_getpassword","features":[360]},{"name":"alljoyn_credentials_getprivateKey","features":[360]},{"name":"alljoyn_credentials_getusername","features":[360]},{"name":"alljoyn_credentials_isset","features":[360]},{"name":"alljoyn_credentials_setcertchain","features":[360]},{"name":"alljoyn_credentials_setexpiration","features":[360]},{"name":"alljoyn_credentials_setlogonentry","features":[360]},{"name":"alljoyn_credentials_setpassword","features":[360]},{"name":"alljoyn_credentials_setprivatekey","features":[360]},{"name":"alljoyn_credentials_setusername","features":[360]},{"name":"alljoyn_getbuildinfo","features":[360]},{"name":"alljoyn_getnumericversion","features":[360]},{"name":"alljoyn_getversion","features":[360]},{"name":"alljoyn_init","features":[360]},{"name":"alljoyn_interfacedescription","features":[360]},{"name":"alljoyn_interfacedescription_activate","features":[360]},{"name":"alljoyn_interfacedescription_addannotation","features":[360]},{"name":"alljoyn_interfacedescription_addargannotation","features":[360]},{"name":"alljoyn_interfacedescription_addmember","features":[360]},{"name":"alljoyn_interfacedescription_addmemberannotation","features":[360]},{"name":"alljoyn_interfacedescription_addmethod","features":[360]},{"name":"alljoyn_interfacedescription_addproperty","features":[360]},{"name":"alljoyn_interfacedescription_addpropertyannotation","features":[360]},{"name":"alljoyn_interfacedescription_addsignal","features":[360]},{"name":"alljoyn_interfacedescription_eql","features":[360]},{"name":"alljoyn_interfacedescription_getannotation","features":[360]},{"name":"alljoyn_interfacedescription_getannotationatindex","features":[360]},{"name":"alljoyn_interfacedescription_getannotationscount","features":[360]},{"name":"alljoyn_interfacedescription_getargdescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_getdescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages","features":[360]},{"name":"alljoyn_interfacedescription_getdescriptionlanguages2","features":[360]},{"name":"alljoyn_interfacedescription_getdescriptiontranslationcallback","features":[360]},{"name":"alljoyn_interfacedescription_getmember","features":[360]},{"name":"alljoyn_interfacedescription_getmemberannotation","features":[360]},{"name":"alljoyn_interfacedescription_getmemberargannotation","features":[360]},{"name":"alljoyn_interfacedescription_getmemberdescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_getmembers","features":[360]},{"name":"alljoyn_interfacedescription_getmethod","features":[360]},{"name":"alljoyn_interfacedescription_getname","features":[360]},{"name":"alljoyn_interfacedescription_getproperties","features":[360]},{"name":"alljoyn_interfacedescription_getproperty","features":[360]},{"name":"alljoyn_interfacedescription_getpropertyannotation","features":[360]},{"name":"alljoyn_interfacedescription_getpropertydescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_getsecuritypolicy","features":[360]},{"name":"alljoyn_interfacedescription_getsignal","features":[360]},{"name":"alljoyn_interfacedescription_hasdescription","features":[360]},{"name":"alljoyn_interfacedescription_hasmember","features":[360]},{"name":"alljoyn_interfacedescription_hasproperties","features":[360]},{"name":"alljoyn_interfacedescription_hasproperty","features":[360]},{"name":"alljoyn_interfacedescription_introspect","features":[360]},{"name":"alljoyn_interfacedescription_issecure","features":[360]},{"name":"alljoyn_interfacedescription_member","features":[360]},{"name":"alljoyn_interfacedescription_member_eql","features":[360]},{"name":"alljoyn_interfacedescription_member_getannotation","features":[360]},{"name":"alljoyn_interfacedescription_member_getannotationatindex","features":[360]},{"name":"alljoyn_interfacedescription_member_getannotationscount","features":[360]},{"name":"alljoyn_interfacedescription_member_getargannotation","features":[360]},{"name":"alljoyn_interfacedescription_member_getargannotationatindex","features":[360]},{"name":"alljoyn_interfacedescription_member_getargannotationscount","features":[360]},{"name":"alljoyn_interfacedescription_property","features":[360]},{"name":"alljoyn_interfacedescription_property_eql","features":[360]},{"name":"alljoyn_interfacedescription_property_getannotation","features":[360]},{"name":"alljoyn_interfacedescription_property_getannotationatindex","features":[360]},{"name":"alljoyn_interfacedescription_property_getannotationscount","features":[360]},{"name":"alljoyn_interfacedescription_securitypolicy","features":[360]},{"name":"alljoyn_interfacedescription_setargdescription","features":[360]},{"name":"alljoyn_interfacedescription_setargdescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_setdescription","features":[360]},{"name":"alljoyn_interfacedescription_setdescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_setdescriptionlanguage","features":[360]},{"name":"alljoyn_interfacedescription_setdescriptiontranslationcallback","features":[360]},{"name":"alljoyn_interfacedescription_setmemberdescription","features":[360]},{"name":"alljoyn_interfacedescription_setmemberdescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_setpropertydescription","features":[360]},{"name":"alljoyn_interfacedescription_setpropertydescriptionforlanguage","features":[360]},{"name":"alljoyn_interfacedescription_translation_callback_ptr","features":[360]},{"name":"alljoyn_keystore","features":[360]},{"name":"alljoyn_keystorelistener","features":[360]},{"name":"alljoyn_keystorelistener_acquireexclusivelock_ptr","features":[360]},{"name":"alljoyn_keystorelistener_callbacks","features":[360]},{"name":"alljoyn_keystorelistener_create","features":[360]},{"name":"alljoyn_keystorelistener_destroy","features":[360]},{"name":"alljoyn_keystorelistener_getkeys","features":[360]},{"name":"alljoyn_keystorelistener_loadrequest_ptr","features":[360]},{"name":"alljoyn_keystorelistener_putkeys","features":[360]},{"name":"alljoyn_keystorelistener_releaseexclusivelock_ptr","features":[360]},{"name":"alljoyn_keystorelistener_storerequest_ptr","features":[360]},{"name":"alljoyn_keystorelistener_with_synchronization_callbacks","features":[360]},{"name":"alljoyn_keystorelistener_with_synchronization_create","features":[360]},{"name":"alljoyn_manifestarray","features":[360]},{"name":"alljoyn_message","features":[360]},{"name":"alljoyn_message_create","features":[360]},{"name":"alljoyn_message_description","features":[360]},{"name":"alljoyn_message_destroy","features":[360]},{"name":"alljoyn_message_eql","features":[360]},{"name":"alljoyn_message_getarg","features":[360]},{"name":"alljoyn_message_getargs","features":[360]},{"name":"alljoyn_message_getauthmechanism","features":[360]},{"name":"alljoyn_message_getcallserial","features":[360]},{"name":"alljoyn_message_getcompressiontoken","features":[360]},{"name":"alljoyn_message_getdestination","features":[360]},{"name":"alljoyn_message_geterrorname","features":[360]},{"name":"alljoyn_message_getflags","features":[360]},{"name":"alljoyn_message_getinterface","features":[360]},{"name":"alljoyn_message_getmembername","features":[360]},{"name":"alljoyn_message_getobjectpath","features":[360]},{"name":"alljoyn_message_getreceiveendpointname","features":[360]},{"name":"alljoyn_message_getreplyserial","features":[360]},{"name":"alljoyn_message_getsender","features":[360]},{"name":"alljoyn_message_getsessionid","features":[360]},{"name":"alljoyn_message_getsignature","features":[360]},{"name":"alljoyn_message_gettimestamp","features":[360]},{"name":"alljoyn_message_gettype","features":[360]},{"name":"alljoyn_message_isbroadcastsignal","features":[360]},{"name":"alljoyn_message_isencrypted","features":[360]},{"name":"alljoyn_message_isexpired","features":[360]},{"name":"alljoyn_message_isglobalbroadcast","features":[360]},{"name":"alljoyn_message_issessionless","features":[360]},{"name":"alljoyn_message_isunreliable","features":[360]},{"name":"alljoyn_message_parseargs","features":[360]},{"name":"alljoyn_message_setendianess","features":[360]},{"name":"alljoyn_message_tostring","features":[360]},{"name":"alljoyn_messagereceiver_methodhandler_ptr","features":[360]},{"name":"alljoyn_messagereceiver_replyhandler_ptr","features":[360]},{"name":"alljoyn_messagereceiver_signalhandler_ptr","features":[360]},{"name":"alljoyn_messagetype","features":[360]},{"name":"alljoyn_msgarg","features":[360]},{"name":"alljoyn_msgarg_array_create","features":[360]},{"name":"alljoyn_msgarg_array_element","features":[360]},{"name":"alljoyn_msgarg_array_get","features":[360]},{"name":"alljoyn_msgarg_array_set","features":[360]},{"name":"alljoyn_msgarg_array_set_offset","features":[360]},{"name":"alljoyn_msgarg_array_signature","features":[360]},{"name":"alljoyn_msgarg_array_tostring","features":[360]},{"name":"alljoyn_msgarg_clear","features":[360]},{"name":"alljoyn_msgarg_clone","features":[360]},{"name":"alljoyn_msgarg_copy","features":[360]},{"name":"alljoyn_msgarg_create","features":[360]},{"name":"alljoyn_msgarg_create_and_set","features":[360]},{"name":"alljoyn_msgarg_destroy","features":[360]},{"name":"alljoyn_msgarg_equal","features":[360]},{"name":"alljoyn_msgarg_get","features":[360]},{"name":"alljoyn_msgarg_get_array_element","features":[360]},{"name":"alljoyn_msgarg_get_array_elementsignature","features":[360]},{"name":"alljoyn_msgarg_get_array_numberofelements","features":[360]},{"name":"alljoyn_msgarg_get_bool","features":[360]},{"name":"alljoyn_msgarg_get_bool_array","features":[360]},{"name":"alljoyn_msgarg_get_double","features":[360]},{"name":"alljoyn_msgarg_get_double_array","features":[360]},{"name":"alljoyn_msgarg_get_int16","features":[360]},{"name":"alljoyn_msgarg_get_int16_array","features":[360]},{"name":"alljoyn_msgarg_get_int32","features":[360]},{"name":"alljoyn_msgarg_get_int32_array","features":[360]},{"name":"alljoyn_msgarg_get_int64","features":[360]},{"name":"alljoyn_msgarg_get_int64_array","features":[360]},{"name":"alljoyn_msgarg_get_objectpath","features":[360]},{"name":"alljoyn_msgarg_get_signature","features":[360]},{"name":"alljoyn_msgarg_get_string","features":[360]},{"name":"alljoyn_msgarg_get_uint16","features":[360]},{"name":"alljoyn_msgarg_get_uint16_array","features":[360]},{"name":"alljoyn_msgarg_get_uint32","features":[360]},{"name":"alljoyn_msgarg_get_uint32_array","features":[360]},{"name":"alljoyn_msgarg_get_uint64","features":[360]},{"name":"alljoyn_msgarg_get_uint64_array","features":[360]},{"name":"alljoyn_msgarg_get_uint8","features":[360]},{"name":"alljoyn_msgarg_get_uint8_array","features":[360]},{"name":"alljoyn_msgarg_get_variant","features":[360]},{"name":"alljoyn_msgarg_get_variant_array","features":[360]},{"name":"alljoyn_msgarg_getdictelement","features":[360]},{"name":"alljoyn_msgarg_getkey","features":[360]},{"name":"alljoyn_msgarg_getmember","features":[360]},{"name":"alljoyn_msgarg_getnummembers","features":[360]},{"name":"alljoyn_msgarg_gettype","features":[360]},{"name":"alljoyn_msgarg_getvalue","features":[360]},{"name":"alljoyn_msgarg_hassignature","features":[360]},{"name":"alljoyn_msgarg_set","features":[360]},{"name":"alljoyn_msgarg_set_and_stabilize","features":[360]},{"name":"alljoyn_msgarg_set_bool","features":[360]},{"name":"alljoyn_msgarg_set_bool_array","features":[360]},{"name":"alljoyn_msgarg_set_double","features":[360]},{"name":"alljoyn_msgarg_set_double_array","features":[360]},{"name":"alljoyn_msgarg_set_int16","features":[360]},{"name":"alljoyn_msgarg_set_int16_array","features":[360]},{"name":"alljoyn_msgarg_set_int32","features":[360]},{"name":"alljoyn_msgarg_set_int32_array","features":[360]},{"name":"alljoyn_msgarg_set_int64","features":[360]},{"name":"alljoyn_msgarg_set_int64_array","features":[360]},{"name":"alljoyn_msgarg_set_objectpath","features":[360]},{"name":"alljoyn_msgarg_set_objectpath_array","features":[360]},{"name":"alljoyn_msgarg_set_signature","features":[360]},{"name":"alljoyn_msgarg_set_signature_array","features":[360]},{"name":"alljoyn_msgarg_set_string","features":[360]},{"name":"alljoyn_msgarg_set_string_array","features":[360]},{"name":"alljoyn_msgarg_set_uint16","features":[360]},{"name":"alljoyn_msgarg_set_uint16_array","features":[360]},{"name":"alljoyn_msgarg_set_uint32","features":[360]},{"name":"alljoyn_msgarg_set_uint32_array","features":[360]},{"name":"alljoyn_msgarg_set_uint64","features":[360]},{"name":"alljoyn_msgarg_set_uint64_array","features":[360]},{"name":"alljoyn_msgarg_set_uint8","features":[360]},{"name":"alljoyn_msgarg_set_uint8_array","features":[360]},{"name":"alljoyn_msgarg_setdictentry","features":[360]},{"name":"alljoyn_msgarg_setstruct","features":[360]},{"name":"alljoyn_msgarg_signature","features":[360]},{"name":"alljoyn_msgarg_stabilize","features":[360]},{"name":"alljoyn_msgarg_tostring","features":[360]},{"name":"alljoyn_observer","features":[360]},{"name":"alljoyn_observer_create","features":[360]},{"name":"alljoyn_observer_destroy","features":[360]},{"name":"alljoyn_observer_get","features":[360]},{"name":"alljoyn_observer_getfirst","features":[360]},{"name":"alljoyn_observer_getnext","features":[360]},{"name":"alljoyn_observer_object_discovered_ptr","features":[360]},{"name":"alljoyn_observer_object_lost_ptr","features":[360]},{"name":"alljoyn_observer_registerlistener","features":[360]},{"name":"alljoyn_observer_unregisteralllisteners","features":[360]},{"name":"alljoyn_observer_unregisterlistener","features":[360]},{"name":"alljoyn_observerlistener","features":[360]},{"name":"alljoyn_observerlistener_callback","features":[360]},{"name":"alljoyn_observerlistener_create","features":[360]},{"name":"alljoyn_observerlistener_destroy","features":[360]},{"name":"alljoyn_passwordmanager_setcredentials","features":[360]},{"name":"alljoyn_permissionconfigurationlistener","features":[360]},{"name":"alljoyn_permissionconfigurationlistener_callbacks","features":[360]},{"name":"alljoyn_permissionconfigurationlistener_create","features":[360]},{"name":"alljoyn_permissionconfigurationlistener_destroy","features":[360]},{"name":"alljoyn_permissionconfigurationlistener_endmanagement_ptr","features":[360]},{"name":"alljoyn_permissionconfigurationlistener_factoryreset_ptr","features":[360]},{"name":"alljoyn_permissionconfigurationlistener_policychanged_ptr","features":[360]},{"name":"alljoyn_permissionconfigurationlistener_startmanagement_ptr","features":[360]},{"name":"alljoyn_permissionconfigurator","features":[360]},{"name":"alljoyn_permissionconfigurator_certificatechain_destroy","features":[360]},{"name":"alljoyn_permissionconfigurator_certificateid_cleanup","features":[360]},{"name":"alljoyn_permissionconfigurator_certificateidarray_cleanup","features":[360]},{"name":"alljoyn_permissionconfigurator_claim","features":[360]},{"name":"alljoyn_permissionconfigurator_endmanagement","features":[360]},{"name":"alljoyn_permissionconfigurator_getapplicationstate","features":[360]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilities","features":[360]},{"name":"alljoyn_permissionconfigurator_getclaimcapabilitiesadditionalinfo","features":[360]},{"name":"alljoyn_permissionconfigurator_getdefaultclaimcapabilities","features":[360]},{"name":"alljoyn_permissionconfigurator_getdefaultpolicy","features":[360]},{"name":"alljoyn_permissionconfigurator_getidentity","features":[360]},{"name":"alljoyn_permissionconfigurator_getidentitycertificateid","features":[360]},{"name":"alljoyn_permissionconfigurator_getmanifests","features":[360]},{"name":"alljoyn_permissionconfigurator_getmanifesttemplate","features":[360]},{"name":"alljoyn_permissionconfigurator_getmembershipsummaries","features":[360]},{"name":"alljoyn_permissionconfigurator_getpolicy","features":[360]},{"name":"alljoyn_permissionconfigurator_getpublickey","features":[360]},{"name":"alljoyn_permissionconfigurator_installmanifests","features":[360]},{"name":"alljoyn_permissionconfigurator_installmembership","features":[360]},{"name":"alljoyn_permissionconfigurator_manifestarray_cleanup","features":[360]},{"name":"alljoyn_permissionconfigurator_manifesttemplate_destroy","features":[360]},{"name":"alljoyn_permissionconfigurator_policy_destroy","features":[360]},{"name":"alljoyn_permissionconfigurator_publickey_destroy","features":[360]},{"name":"alljoyn_permissionconfigurator_removemembership","features":[360]},{"name":"alljoyn_permissionconfigurator_reset","features":[360]},{"name":"alljoyn_permissionconfigurator_resetpolicy","features":[360]},{"name":"alljoyn_permissionconfigurator_setapplicationstate","features":[360]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilities","features":[360]},{"name":"alljoyn_permissionconfigurator_setclaimcapabilitiesadditionalinfo","features":[360]},{"name":"alljoyn_permissionconfigurator_setmanifesttemplatefromxml","features":[360]},{"name":"alljoyn_permissionconfigurator_startmanagement","features":[360]},{"name":"alljoyn_permissionconfigurator_updateidentity","features":[360]},{"name":"alljoyn_permissionconfigurator_updatepolicy","features":[360]},{"name":"alljoyn_pinglistener","features":[360]},{"name":"alljoyn_pinglistener_callback","features":[360]},{"name":"alljoyn_pinglistener_create","features":[360]},{"name":"alljoyn_pinglistener_destroy","features":[360]},{"name":"alljoyn_proxybusobject","features":[360]},{"name":"alljoyn_proxybusobject_addchild","features":[360]},{"name":"alljoyn_proxybusobject_addinterface","features":[360]},{"name":"alljoyn_proxybusobject_addinterface_by_name","features":[360]},{"name":"alljoyn_proxybusobject_copy","features":[360]},{"name":"alljoyn_proxybusobject_create","features":[360]},{"name":"alljoyn_proxybusobject_create_secure","features":[360]},{"name":"alljoyn_proxybusobject_destroy","features":[360]},{"name":"alljoyn_proxybusobject_enablepropertycaching","features":[360]},{"name":"alljoyn_proxybusobject_getallproperties","features":[360]},{"name":"alljoyn_proxybusobject_getallpropertiesasync","features":[360]},{"name":"alljoyn_proxybusobject_getchild","features":[360]},{"name":"alljoyn_proxybusobject_getchildren","features":[360]},{"name":"alljoyn_proxybusobject_getinterface","features":[360]},{"name":"alljoyn_proxybusobject_getinterfaces","features":[360]},{"name":"alljoyn_proxybusobject_getpath","features":[360]},{"name":"alljoyn_proxybusobject_getproperty","features":[360]},{"name":"alljoyn_proxybusobject_getpropertyasync","features":[360]},{"name":"alljoyn_proxybusobject_getservicename","features":[360]},{"name":"alljoyn_proxybusobject_getsessionid","features":[360]},{"name":"alljoyn_proxybusobject_getuniquename","features":[360]},{"name":"alljoyn_proxybusobject_implementsinterface","features":[360]},{"name":"alljoyn_proxybusobject_introspectremoteobject","features":[360]},{"name":"alljoyn_proxybusobject_introspectremoteobjectasync","features":[360]},{"name":"alljoyn_proxybusobject_issecure","features":[360]},{"name":"alljoyn_proxybusobject_isvalid","features":[360]},{"name":"alljoyn_proxybusobject_listener_getallpropertiescb_ptr","features":[360]},{"name":"alljoyn_proxybusobject_listener_getpropertycb_ptr","features":[360]},{"name":"alljoyn_proxybusobject_listener_introspectcb_ptr","features":[360]},{"name":"alljoyn_proxybusobject_listener_propertieschanged_ptr","features":[360]},{"name":"alljoyn_proxybusobject_listener_setpropertycb_ptr","features":[360]},{"name":"alljoyn_proxybusobject_methodcall","features":[360]},{"name":"alljoyn_proxybusobject_methodcall_member","features":[360]},{"name":"alljoyn_proxybusobject_methodcall_member_noreply","features":[360]},{"name":"alljoyn_proxybusobject_methodcall_noreply","features":[360]},{"name":"alljoyn_proxybusobject_methodcallasync","features":[360]},{"name":"alljoyn_proxybusobject_methodcallasync_member","features":[360]},{"name":"alljoyn_proxybusobject_parsexml","features":[360]},{"name":"alljoyn_proxybusobject_ref","features":[360]},{"name":"alljoyn_proxybusobject_ref_create","features":[360]},{"name":"alljoyn_proxybusobject_ref_decref","features":[360]},{"name":"alljoyn_proxybusobject_ref_get","features":[360]},{"name":"alljoyn_proxybusobject_ref_incref","features":[360]},{"name":"alljoyn_proxybusobject_registerpropertieschangedlistener","features":[360]},{"name":"alljoyn_proxybusobject_removechild","features":[360]},{"name":"alljoyn_proxybusobject_secureconnection","features":[360]},{"name":"alljoyn_proxybusobject_secureconnectionasync","features":[360]},{"name":"alljoyn_proxybusobject_setproperty","features":[360]},{"name":"alljoyn_proxybusobject_setpropertyasync","features":[360]},{"name":"alljoyn_proxybusobject_unregisterpropertieschangedlistener","features":[360]},{"name":"alljoyn_routerinit","features":[360]},{"name":"alljoyn_routerinitwithconfig","features":[360]},{"name":"alljoyn_routershutdown","features":[360]},{"name":"alljoyn_securityapplicationproxy","features":[360]},{"name":"alljoyn_securityapplicationproxy_claim","features":[360]},{"name":"alljoyn_securityapplicationproxy_computemanifestdigest","features":[360]},{"name":"alljoyn_securityapplicationproxy_create","features":[360]},{"name":"alljoyn_securityapplicationproxy_destroy","features":[360]},{"name":"alljoyn_securityapplicationproxy_digest_destroy","features":[360]},{"name":"alljoyn_securityapplicationproxy_eccpublickey_destroy","features":[360]},{"name":"alljoyn_securityapplicationproxy_endmanagement","features":[360]},{"name":"alljoyn_securityapplicationproxy_getapplicationstate","features":[360]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilities","features":[360]},{"name":"alljoyn_securityapplicationproxy_getclaimcapabilitiesadditionalinfo","features":[360]},{"name":"alljoyn_securityapplicationproxy_getdefaultpolicy","features":[360]},{"name":"alljoyn_securityapplicationproxy_geteccpublickey","features":[360]},{"name":"alljoyn_securityapplicationproxy_getmanifesttemplate","features":[360]},{"name":"alljoyn_securityapplicationproxy_getpermissionmanagementsessionport","features":[360]},{"name":"alljoyn_securityapplicationproxy_getpolicy","features":[360]},{"name":"alljoyn_securityapplicationproxy_installmembership","features":[360]},{"name":"alljoyn_securityapplicationproxy_manifest_destroy","features":[360]},{"name":"alljoyn_securityapplicationproxy_manifesttemplate_destroy","features":[360]},{"name":"alljoyn_securityapplicationproxy_policy_destroy","features":[360]},{"name":"alljoyn_securityapplicationproxy_reset","features":[360]},{"name":"alljoyn_securityapplicationproxy_resetpolicy","features":[360]},{"name":"alljoyn_securityapplicationproxy_setmanifestsignature","features":[360]},{"name":"alljoyn_securityapplicationproxy_signmanifest","features":[360]},{"name":"alljoyn_securityapplicationproxy_startmanagement","features":[360]},{"name":"alljoyn_securityapplicationproxy_updateidentity","features":[360]},{"name":"alljoyn_securityapplicationproxy_updatepolicy","features":[360]},{"name":"alljoyn_sessionlistener","features":[360]},{"name":"alljoyn_sessionlistener_callbacks","features":[360]},{"name":"alljoyn_sessionlistener_create","features":[360]},{"name":"alljoyn_sessionlistener_destroy","features":[360]},{"name":"alljoyn_sessionlistener_sessionlost_ptr","features":[360]},{"name":"alljoyn_sessionlistener_sessionmemberadded_ptr","features":[360]},{"name":"alljoyn_sessionlistener_sessionmemberremoved_ptr","features":[360]},{"name":"alljoyn_sessionlostreason","features":[360]},{"name":"alljoyn_sessionopts","features":[360]},{"name":"alljoyn_sessionopts_cmp","features":[360]},{"name":"alljoyn_sessionopts_create","features":[360]},{"name":"alljoyn_sessionopts_destroy","features":[360]},{"name":"alljoyn_sessionopts_get_multipoint","features":[360]},{"name":"alljoyn_sessionopts_get_proximity","features":[360]},{"name":"alljoyn_sessionopts_get_traffic","features":[360]},{"name":"alljoyn_sessionopts_get_transports","features":[360]},{"name":"alljoyn_sessionopts_iscompatible","features":[360]},{"name":"alljoyn_sessionopts_set_multipoint","features":[360]},{"name":"alljoyn_sessionopts_set_proximity","features":[360]},{"name":"alljoyn_sessionopts_set_traffic","features":[360]},{"name":"alljoyn_sessionopts_set_transports","features":[360]},{"name":"alljoyn_sessionportlistener","features":[360]},{"name":"alljoyn_sessionportlistener_acceptsessionjoiner_ptr","features":[360]},{"name":"alljoyn_sessionportlistener_callbacks","features":[360]},{"name":"alljoyn_sessionportlistener_create","features":[360]},{"name":"alljoyn_sessionportlistener_destroy","features":[360]},{"name":"alljoyn_sessionportlistener_sessionjoined_ptr","features":[360]},{"name":"alljoyn_shutdown","features":[360]},{"name":"alljoyn_typeid","features":[360]},{"name":"alljoyn_unity_deferred_callbacks_process","features":[360]},{"name":"alljoyn_unity_set_deferred_callback_mainthread_only","features":[360]}],"370":[{"name":"FACILITY_NONE","features":[361]},{"name":"FACILITY_WINBIO","features":[361]},{"name":"GUID_DEVINTERFACE_BIOMETRIC_READER","features":[361]},{"name":"IOCTL_BIOMETRIC_VENDOR","features":[361]},{"name":"PIBIO_ENGINE_ACCEPT_PRIVATE_SENSOR_TYPE_INFO_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_ACCEPT_SAMPLE_DATA_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_ACTIVATE_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_ATTACH_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_CHECK_FOR_DUPLICATE_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_CLEAR_CONTEXT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_COMMIT_ENROLLMENT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_CONTROL_UNIT_PRIVILEGED_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_AUTHENTICATED_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_CREATE_ENROLLMENT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_CREATE_KEY_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_DEACTIVATE_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_DETACH_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_DISCARD_ENROLLMENT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_EXPORT_ENGINE_DATA_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_HASH_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_GET_ENROLLMENT_STATUS_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_IDENTIFY_ALL_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_AUTHENTICATED_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_IDENTIFY_FEATURE_SET_SECURE_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_NOTIFY_POWER_CHANGE_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_PIPELINE_CLEANUP_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_PIPELINE_INIT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_QUERY_CALIBRATION_DATA_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_ENROLLMENT_STATUS_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_QUERY_EXTENDED_INFO_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_QUERY_HASH_ALGORITHMS_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_QUERY_INDEX_VECTOR_SIZE_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_QUERY_PREFERRED_FORMAT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_QUERY_SAMPLE_HINT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_REFRESH_CACHE_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_RESERVED_1_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_SELECT_CALIBRATION_FORMAT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_SET_ACCOUNT_POLICY_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_PARAMETERS_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_SET_ENROLLMENT_SELECTOR_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_SET_HASH_ALGORITHM_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_UPDATE_ENROLLMENT_FN","features":[361,305,310]},{"name":"PIBIO_ENGINE_VERIFY_FEATURE_SET_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_ALLOCATE_MEMORY_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_FREE_MEMORY_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_GET_PROPERTY_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_LOCK_AND_VALIDATE_SECURE_BUFFER_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_RELEASE_SECURE_BUFFER_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_SET_UNIT_STATUS_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_CLEAR_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_BEGIN_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_END_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_EXPORT_NEXT_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_BEGIN_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_END_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_CACHE_IMPORT_NEXT_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_DECRYPT_SAMPLE_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_QUERY_AUTHORIZED_ENROLLMENTS_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_1_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_2_FN","features":[361,305,310]},{"name":"PIBIO_FRAMEWORK_VSM_STORAGE_RESERVED_3_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_ACCEPT_CALIBRATION_DATA_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_ACTIVATE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_RAW_BUFFER_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_ASYNC_IMPORT_SECURE_BUFFER_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_ATTACH_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_CANCEL_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_CLEAR_CONTEXT_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_CONNECT_SECURE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_CONTROL_UNIT_PRIVILEGED_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_DEACTIVATE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_DETACH_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_EXPORT_SENSOR_DATA_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_FINISH_CAPTURE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_FINISH_NOTIFY_WAKE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_GET_INDICATOR_STATUS_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_NOTIFY_POWER_CHANGE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_PIPELINE_CLEANUP_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_PIPELINE_INIT_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_PUSH_DATA_TO_ENGINE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_QUERY_CALIBRATION_FORMATS_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_QUERY_EXTENDED_INFO_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_QUERY_PRIVATE_SENSOR_TYPE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_QUERY_STATUS_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_RESET_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_SET_CALIBRATION_FORMAT_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_SET_INDICATOR_STATUS_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_SET_MODE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_START_CAPTURE_EX_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_START_CAPTURE_FN","features":[361,305,310]},{"name":"PIBIO_SENSOR_START_NOTIFY_WAKE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_ACTIVATE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_ADD_RECORD_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_ATTACH_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_CLEAR_CONTEXT_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_CLOSE_DATABASE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_CONTROL_UNIT_PRIVILEGED_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_CREATE_DATABASE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_DEACTIVATE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_DELETE_RECORD_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_DETACH_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_ERASE_DATABASE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_FIRST_RECORD_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_GET_CURRENT_RECORD_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_GET_DATABASE_SIZE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_GET_DATA_FORMAT_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_GET_RECORD_COUNT_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_NEXT_RECORD_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_NOTIFY_DATABASE_CHANGE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_NOTIFY_POWER_CHANGE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_OPEN_DATABASE_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_PIPELINE_CLEANUP_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_PIPELINE_INIT_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_QUERY_BY_CONTENT_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_QUERY_BY_SUBJECT_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_QUERY_EXTENDED_INFO_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_RESERVED_1_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_RESERVED_2_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_BEGIN_FN","features":[361,305,310]},{"name":"PIBIO_STORAGE_UPDATE_RECORD_COMMIT_FN","features":[361,305,310]},{"name":"PWINBIO_ASYNC_COMPLETION_CALLBACK","features":[361,305]},{"name":"PWINBIO_CAPTURE_CALLBACK","features":[361]},{"name":"PWINBIO_ENROLL_CAPTURE_CALLBACK","features":[361]},{"name":"PWINBIO_EVENT_CALLBACK","features":[361]},{"name":"PWINBIO_IDENTIFY_CALLBACK","features":[361]},{"name":"PWINBIO_LOCATE_SENSOR_CALLBACK","features":[361]},{"name":"PWINBIO_QUERY_ENGINE_INTERFACE_FN","features":[361,305,310]},{"name":"PWINBIO_QUERY_SENSOR_INTERFACE_FN","features":[361,305,310]},{"name":"PWINBIO_QUERY_STORAGE_INTERFACE_FN","features":[361,305,310]},{"name":"PWINBIO_VERIFY_CALLBACK","features":[361,305]},{"name":"WINBIO_ACCOUNT_POLICY","features":[361]},{"name":"WINBIO_ADAPTER_INTERFACE_VERSION","features":[361]},{"name":"WINBIO_ANSI_381_IMG_BIT_PACKED","features":[361]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG","features":[361]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_JPEG2000","features":[361]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_PNG","features":[361]},{"name":"WINBIO_ANSI_381_IMG_COMPRESSED_WSQ","features":[361]},{"name":"WINBIO_ANSI_381_IMG_UNCOMPRESSED","features":[361]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LATENT","features":[361]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_CONTACTLESS","features":[361]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_PLAIN","features":[361]},{"name":"WINBIO_ANSI_381_IMP_TYPE_LIVE_SCAN_ROLLED","features":[361]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_PLAIN","features":[361]},{"name":"WINBIO_ANSI_381_IMP_TYPE_NONLIVE_SCAN_ROLLED","features":[361]},{"name":"WINBIO_ANSI_381_IMP_TYPE_SWIPE","features":[361]},{"name":"WINBIO_ANSI_381_PIXELS_PER_CM","features":[361]},{"name":"WINBIO_ANSI_381_PIXELS_PER_INCH","features":[361]},{"name":"WINBIO_ANTI_SPOOF_DISABLE","features":[361]},{"name":"WINBIO_ANTI_SPOOF_ENABLE","features":[361]},{"name":"WINBIO_ANTI_SPOOF_POLICY","features":[361]},{"name":"WINBIO_ANTI_SPOOF_POLICY_ACTION","features":[361]},{"name":"WINBIO_ANTI_SPOOF_REMOVE","features":[361]},{"name":"WINBIO_ASYNC_NOTIFICATION_METHOD","features":[361]},{"name":"WINBIO_ASYNC_NOTIFY_CALLBACK","features":[361]},{"name":"WINBIO_ASYNC_NOTIFY_MAXIMUM_VALUE","features":[361]},{"name":"WINBIO_ASYNC_NOTIFY_MESSAGE","features":[361]},{"name":"WINBIO_ASYNC_NOTIFY_NONE","features":[361]},{"name":"WINBIO_ASYNC_RESULT","features":[361,305]},{"name":"WINBIO_BDB_ANSI_381_HEADER","features":[361]},{"name":"WINBIO_BDB_ANSI_381_RECORD","features":[361]},{"name":"WINBIO_BIR","features":[361]},{"name":"WINBIO_BIR_ALGIN_SIZE","features":[361]},{"name":"WINBIO_BIR_ALIGN_SIZE","features":[361]},{"name":"WINBIO_BIR_DATA","features":[361]},{"name":"WINBIO_BIR_HEADER","features":[361]},{"name":"WINBIO_BLANK_PAYLOAD","features":[361]},{"name":"WINBIO_BSP_SCHEMA","features":[361]},{"name":"WINBIO_CALIBRATION_INFO","features":[361]},{"name":"WINBIO_CAPTURE_DATA","features":[361]},{"name":"WINBIO_CAPTURE_PARAMETERS","features":[361]},{"name":"WINBIO_COMPONENT","features":[361]},{"name":"WINBIO_COMPONENT_ENGINE","features":[361]},{"name":"WINBIO_COMPONENT_SENSOR","features":[361]},{"name":"WINBIO_COMPONENT_STORAGE","features":[361]},{"name":"WINBIO_CREDENTIAL_ALL","features":[361]},{"name":"WINBIO_CREDENTIAL_FORMAT","features":[361]},{"name":"WINBIO_CREDENTIAL_NOT_SET","features":[361]},{"name":"WINBIO_CREDENTIAL_PASSWORD","features":[361]},{"name":"WINBIO_CREDENTIAL_SET","features":[361]},{"name":"WINBIO_CREDENTIAL_STATE","features":[361]},{"name":"WINBIO_CREDENTIAL_TYPE","features":[361]},{"name":"WINBIO_DATA","features":[361]},{"name":"WINBIO_DATA_FLAG_INTEGRITY","features":[361]},{"name":"WINBIO_DATA_FLAG_INTERMEDIATE","features":[361]},{"name":"WINBIO_DATA_FLAG_OPTION_MASK_PRESENT","features":[361]},{"name":"WINBIO_DATA_FLAG_PRIVACY","features":[361]},{"name":"WINBIO_DATA_FLAG_PROCESSED","features":[361]},{"name":"WINBIO_DATA_FLAG_RAW","features":[361]},{"name":"WINBIO_DATA_FLAG_SIGNED","features":[361]},{"name":"WINBIO_DIAGNOSTICS","features":[361]},{"name":"WINBIO_ENCRYPTED_CAPTURE_PARAMS","features":[361]},{"name":"WINBIO_ENGINE_INTERFACE","features":[361,305,310]},{"name":"WINBIO_EVENT","features":[361]},{"name":"WINBIO_EXTENDED_ENGINE_INFO","features":[361]},{"name":"WINBIO_EXTENDED_ENROLLMENT_PARAMETERS","features":[361]},{"name":"WINBIO_EXTENDED_ENROLLMENT_STATUS","features":[361,305]},{"name":"WINBIO_EXTENDED_SENSOR_INFO","features":[361,305]},{"name":"WINBIO_EXTENDED_STORAGE_INFO","features":[361]},{"name":"WINBIO_EXTENDED_UNIT_STATUS","features":[361]},{"name":"WINBIO_E_ADAPTER_INTEGRITY_FAILURE","features":[361]},{"name":"WINBIO_E_AUTO_LOGON_DISABLED","features":[361]},{"name":"WINBIO_E_BAD_CAPTURE","features":[361]},{"name":"WINBIO_E_CALIBRATION_BUFFER_INVALID","features":[361]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_LARGE","features":[361]},{"name":"WINBIO_E_CALIBRATION_BUFFER_TOO_SMALL","features":[361]},{"name":"WINBIO_E_CANCELED","features":[361]},{"name":"WINBIO_E_CAPTURE_ABORTED","features":[361]},{"name":"WINBIO_E_CONFIGURATION_FAILURE","features":[361]},{"name":"WINBIO_E_CRED_PROV_DISABLED","features":[361]},{"name":"WINBIO_E_CRED_PROV_NO_CREDENTIAL","features":[361]},{"name":"WINBIO_E_CRED_PROV_SECURITY_LOCKOUT","features":[361]},{"name":"WINBIO_E_DATABASE_ALREADY_EXISTS","features":[361]},{"name":"WINBIO_E_DATABASE_BAD_INDEX_VECTOR","features":[361]},{"name":"WINBIO_E_DATABASE_CANT_CLOSE","features":[361]},{"name":"WINBIO_E_DATABASE_CANT_CREATE","features":[361]},{"name":"WINBIO_E_DATABASE_CANT_ERASE","features":[361]},{"name":"WINBIO_E_DATABASE_CANT_FIND","features":[361]},{"name":"WINBIO_E_DATABASE_CANT_OPEN","features":[361]},{"name":"WINBIO_E_DATABASE_CORRUPTED","features":[361]},{"name":"WINBIO_E_DATABASE_EOF","features":[361]},{"name":"WINBIO_E_DATABASE_FULL","features":[361]},{"name":"WINBIO_E_DATABASE_LOCKED","features":[361]},{"name":"WINBIO_E_DATABASE_NO_MORE_RECORDS","features":[361]},{"name":"WINBIO_E_DATABASE_NO_RESULTS","features":[361]},{"name":"WINBIO_E_DATABASE_NO_SUCH_RECORD","features":[361]},{"name":"WINBIO_E_DATABASE_READ_ERROR","features":[361]},{"name":"WINBIO_E_DATABASE_WRITE_ERROR","features":[361]},{"name":"WINBIO_E_DATA_COLLECTION_IN_PROGRESS","features":[361]},{"name":"WINBIO_E_DATA_PROTECTION_FAILURE","features":[361]},{"name":"WINBIO_E_DEADLOCK_DETECTED","features":[361]},{"name":"WINBIO_E_DEVICE_BUSY","features":[361]},{"name":"WINBIO_E_DEVICE_FAILURE","features":[361]},{"name":"WINBIO_E_DISABLED","features":[361]},{"name":"WINBIO_E_DUPLICATE_ENROLLMENT","features":[361]},{"name":"WINBIO_E_DUPLICATE_TEMPLATE","features":[361]},{"name":"WINBIO_E_ENROLLMENT_CANCELED_BY_SUSPEND","features":[361]},{"name":"WINBIO_E_ENROLLMENT_IN_PROGRESS","features":[361]},{"name":"WINBIO_E_EVENT_MONITOR_ACTIVE","features":[361]},{"name":"WINBIO_E_FAST_USER_SWITCH_DISABLED","features":[361]},{"name":"WINBIO_E_INCORRECT_BSP","features":[361]},{"name":"WINBIO_E_INCORRECT_SENSOR_POOL","features":[361]},{"name":"WINBIO_E_INCORRECT_SESSION_TYPE","features":[361]},{"name":"WINBIO_E_INSECURE_SENSOR","features":[361]},{"name":"WINBIO_E_INVALID_BUFFER","features":[361]},{"name":"WINBIO_E_INVALID_BUFFER_ID","features":[361]},{"name":"WINBIO_E_INVALID_CALIBRATION_FORMAT_ARRAY","features":[361]},{"name":"WINBIO_E_INVALID_CONTROL_CODE","features":[361]},{"name":"WINBIO_E_INVALID_DEVICE_STATE","features":[361]},{"name":"WINBIO_E_INVALID_KEY_IDENTIFIER","features":[361]},{"name":"WINBIO_E_INVALID_OPERATION","features":[361]},{"name":"WINBIO_E_INVALID_PROPERTY_ID","features":[361]},{"name":"WINBIO_E_INVALID_PROPERTY_TYPE","features":[361]},{"name":"WINBIO_E_INVALID_SENSOR_MODE","features":[361]},{"name":"WINBIO_E_INVALID_SUBFACTOR","features":[361]},{"name":"WINBIO_E_INVALID_TICKET","features":[361]},{"name":"WINBIO_E_INVALID_UNIT","features":[361]},{"name":"WINBIO_E_KEY_CREATION_FAILED","features":[361]},{"name":"WINBIO_E_KEY_IDENTIFIER_BUFFER_TOO_SMALL","features":[361]},{"name":"WINBIO_E_LOCK_VIOLATION","features":[361]},{"name":"WINBIO_E_MAX_ERROR_COUNT_EXCEEDED","features":[361]},{"name":"WINBIO_E_NOT_ACTIVE_CONSOLE","features":[361]},{"name":"WINBIO_E_NO_CAPTURE_DATA","features":[361]},{"name":"WINBIO_E_NO_MATCH","features":[361]},{"name":"WINBIO_E_NO_PREBOOT_IDENTITY","features":[361]},{"name":"WINBIO_E_NO_SUPPORTED_CALIBRATION_FORMAT","features":[361]},{"name":"WINBIO_E_POLICY_PROTECTION_UNAVAILABLE","features":[361]},{"name":"WINBIO_E_PRESENCE_MONITOR_ACTIVE","features":[361]},{"name":"WINBIO_E_PROPERTY_UNAVAILABLE","features":[361]},{"name":"WINBIO_E_SAS_ENABLED","features":[361]},{"name":"WINBIO_E_SELECTION_REQUIRED","features":[361]},{"name":"WINBIO_E_SENSOR_UNAVAILABLE","features":[361]},{"name":"WINBIO_E_SESSION_BUSY","features":[361]},{"name":"WINBIO_E_SESSION_HANDLE_CLOSED","features":[361]},{"name":"WINBIO_E_TICKET_QUOTA_EXCEEDED","features":[361]},{"name":"WINBIO_E_TRUSTLET_INTEGRITY_FAIL","features":[361]},{"name":"WINBIO_E_UNKNOWN_ID","features":[361]},{"name":"WINBIO_E_UNSUPPORTED_DATA_FORMAT","features":[361]},{"name":"WINBIO_E_UNSUPPORTED_DATA_TYPE","features":[361]},{"name":"WINBIO_E_UNSUPPORTED_FACTOR","features":[361]},{"name":"WINBIO_E_UNSUPPORTED_POOL_TYPE","features":[361]},{"name":"WINBIO_E_UNSUPPORTED_PROPERTY","features":[361]},{"name":"WINBIO_E_UNSUPPORTED_PURPOSE","features":[361]},{"name":"WINBIO_E_UNSUPPORTED_SENSOR_CALIBRATION_FORMAT","features":[361]},{"name":"WINBIO_FP_BU_STATE","features":[361,305]},{"name":"WINBIO_FRAMEWORK_INTERFACE","features":[361,305,310]},{"name":"WINBIO_GESTURE_METADATA","features":[361]},{"name":"WINBIO_GET_INDICATOR","features":[361]},{"name":"WINBIO_IDENTITY","features":[361]},{"name":"WINBIO_I_EXTENDED_STATUS_INFORMATION","features":[361]},{"name":"WINBIO_I_MORE_DATA","features":[361]},{"name":"WINBIO_MAX_STRING_LEN","features":[361]},{"name":"WINBIO_NOTIFY_WAKE","features":[361]},{"name":"WINBIO_PASSWORD_GENERIC","features":[361]},{"name":"WINBIO_PASSWORD_PACKED","features":[361]},{"name":"WINBIO_PASSWORD_PROTECTED","features":[361]},{"name":"WINBIO_PIPELINE","features":[361,305,310]},{"name":"WINBIO_POLICY_ADMIN","features":[361]},{"name":"WINBIO_POLICY_DEFAULT","features":[361]},{"name":"WINBIO_POLICY_LOCAL","features":[361]},{"name":"WINBIO_POLICY_SOURCE","features":[361]},{"name":"WINBIO_POLICY_UNKNOWN","features":[361]},{"name":"WINBIO_POOL","features":[361]},{"name":"WINBIO_POOL_PRIVATE","features":[361]},{"name":"WINBIO_POOL_SYSTEM","features":[361]},{"name":"WINBIO_PRESENCE","features":[361,305]},{"name":"WINBIO_PRESENCE_PROPERTIES","features":[361,305]},{"name":"WINBIO_PRIVATE_SENSOR_TYPE_INFO","features":[361]},{"name":"WINBIO_PROTECTION_POLICY","features":[361]},{"name":"WINBIO_REGISTERED_FORMAT","features":[361]},{"name":"WINBIO_SCP_CURVE_FIELD_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_DIGEST_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_ENCRYPTION_BLOCK_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_ENCRYPTION_KEY_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_PRIVATE_KEY_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_PUBLIC_KEY_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_RANDOM_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_SIGNATURE_SIZE_V1","features":[361]},{"name":"WINBIO_SCP_VERSION_1","features":[361]},{"name":"WINBIO_SECURE_BUFFER_HEADER_V1","features":[361]},{"name":"WINBIO_SECURE_CONNECTION_DATA","features":[361]},{"name":"WINBIO_SECURE_CONNECTION_PARAMS","features":[361]},{"name":"WINBIO_SENSOR_ATTRIBUTES","features":[361]},{"name":"WINBIO_SENSOR_INTERFACE","features":[361,305,310]},{"name":"WINBIO_SETTING_SOURCE","features":[361]},{"name":"WINBIO_SETTING_SOURCE_DEFAULT","features":[361]},{"name":"WINBIO_SETTING_SOURCE_INVALID","features":[361]},{"name":"WINBIO_SETTING_SOURCE_LOCAL","features":[361]},{"name":"WINBIO_SETTING_SOURCE_POLICY","features":[361]},{"name":"WINBIO_SET_INDICATOR","features":[361]},{"name":"WINBIO_STORAGE_INTERFACE","features":[361,305,310]},{"name":"WINBIO_STORAGE_RECORD","features":[361]},{"name":"WINBIO_STORAGE_SCHEMA","features":[361]},{"name":"WINBIO_SUPPORTED_ALGORITHMS","features":[361]},{"name":"WINBIO_UNIT_SCHEMA","features":[361]},{"name":"WINBIO_UPDATE_FIRMWARE","features":[361]},{"name":"WINBIO_VERSION","features":[361]},{"name":"WINBIO_WBDI_MAJOR_VERSION","features":[361]},{"name":"WINBIO_WBDI_MINOR_VERSION","features":[361]},{"name":"WINIBIO_ENGINE_CONTEXT","features":[361]},{"name":"WINIBIO_SENSOR_CONTEXT","features":[361]},{"name":"WINIBIO_STORAGE_CONTEXT","features":[361]},{"name":"WinBioAcquireFocus","features":[361]},{"name":"WinBioAsyncEnumBiometricUnits","features":[361]},{"name":"WinBioAsyncEnumDatabases","features":[361]},{"name":"WinBioAsyncEnumServiceProviders","features":[361]},{"name":"WinBioAsyncMonitorFrameworkChanges","features":[361]},{"name":"WinBioAsyncOpenFramework","features":[361,305]},{"name":"WinBioAsyncOpenSession","features":[361,305]},{"name":"WinBioCancel","features":[361]},{"name":"WinBioCaptureSample","features":[361]},{"name":"WinBioCaptureSampleWithCallback","features":[361]},{"name":"WinBioCloseFramework","features":[361]},{"name":"WinBioCloseSession","features":[361]},{"name":"WinBioControlUnit","features":[361]},{"name":"WinBioControlUnitPrivileged","features":[361]},{"name":"WinBioDeleteTemplate","features":[361]},{"name":"WinBioEnrollBegin","features":[361]},{"name":"WinBioEnrollCapture","features":[361]},{"name":"WinBioEnrollCaptureWithCallback","features":[361]},{"name":"WinBioEnrollCommit","features":[361]},{"name":"WinBioEnrollDiscard","features":[361]},{"name":"WinBioEnrollSelect","features":[361]},{"name":"WinBioEnumBiometricUnits","features":[361]},{"name":"WinBioEnumDatabases","features":[361]},{"name":"WinBioEnumEnrollments","features":[361]},{"name":"WinBioEnumServiceProviders","features":[361]},{"name":"WinBioFree","features":[361]},{"name":"WinBioGetCredentialState","features":[361]},{"name":"WinBioGetDomainLogonSetting","features":[361]},{"name":"WinBioGetEnabledSetting","features":[361]},{"name":"WinBioGetEnrolledFactors","features":[361]},{"name":"WinBioGetLogonSetting","features":[361]},{"name":"WinBioGetProperty","features":[361]},{"name":"WinBioIdentify","features":[361]},{"name":"WinBioIdentifyWithCallback","features":[361]},{"name":"WinBioImproveBegin","features":[361]},{"name":"WinBioImproveEnd","features":[361]},{"name":"WinBioLocateSensor","features":[361]},{"name":"WinBioLocateSensorWithCallback","features":[361]},{"name":"WinBioLockUnit","features":[361]},{"name":"WinBioLogonIdentifiedUser","features":[361]},{"name":"WinBioMonitorPresence","features":[361]},{"name":"WinBioOpenSession","features":[361]},{"name":"WinBioRegisterEventMonitor","features":[361]},{"name":"WinBioReleaseFocus","features":[361]},{"name":"WinBioRemoveAllCredentials","features":[361]},{"name":"WinBioRemoveAllDomainCredentials","features":[361]},{"name":"WinBioRemoveCredential","features":[361]},{"name":"WinBioSetCredential","features":[361]},{"name":"WinBioSetProperty","features":[361]},{"name":"WinBioUnlockUnit","features":[361]},{"name":"WinBioUnregisterEventMonitor","features":[361]},{"name":"WinBioVerify","features":[361]},{"name":"WinBioVerifyWithCallback","features":[361,305]},{"name":"WinBioWait","features":[361]}],"371":[{"name":"A2DP_SINK_SUPPORTED_FEATURES_AMPLIFIER","features":[362]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_HEADPHONE","features":[362]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_RECORDER","features":[362]},{"name":"A2DP_SINK_SUPPORTED_FEATURES_SPEAKER","features":[362]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MICROPHONE","features":[362]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_MIXER","features":[362]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_PLAYER","features":[362]},{"name":"A2DP_SOURCE_SUPPORTED_FEATURES_TUNER","features":[362]},{"name":"AF_BTH","features":[362]},{"name":"ATT_PROTOCOL_UUID16","features":[362]},{"name":"AUTHENTICATION_REQUIREMENTS","features":[362]},{"name":"AVCTP_PROTOCOL_UUID16","features":[362]},{"name":"AVDTP_PROTOCOL_UUID16","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_1","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_2","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_3","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CATEGORY_4","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_BROWSING","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_IMAGE_PROPERTIES","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_CT_COVER_ART_LINKED_THUMBNAIL","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_BROWSING","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_COVER_ART","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_GROUP_NAVIGATION","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_MULTIPLE_PLAYER_APPLICATIONS","features":[362]},{"name":"AVRCP_SUPPORTED_FEATURES_TG_PLAYER_APPLICATION_SETTINGS","features":[362]},{"name":"AVRemoteControlControllerServiceClass_UUID16","features":[362]},{"name":"AVRemoteControlServiceClassID_UUID16","features":[362]},{"name":"AVRemoteControlTargetServiceClassID_UUID16","features":[362]},{"name":"AdvancedAudioDistributionProfileID_UUID16","features":[362]},{"name":"AdvancedAudioDistributionServiceClassID_UUID16","features":[362]},{"name":"AudioSinkServiceClassID_UUID16","features":[362]},{"name":"AudioSinkSourceServiceClassID_UUID16","features":[362]},{"name":"AudioSourceServiceClassID_UUID16","features":[362]},{"name":"AudioVideoServiceClassID_UUID16","features":[362]},{"name":"AudioVideoServiceClass_UUID16","features":[362]},{"name":"BDIF_ADDRESS","features":[362]},{"name":"BDIF_BR","features":[362]},{"name":"BDIF_BR_SECURE_CONNECTION_PAIRED","features":[362]},{"name":"BDIF_COD","features":[362]},{"name":"BDIF_CONNECTED","features":[362]},{"name":"BDIF_DEBUGKEY","features":[362]},{"name":"BDIF_EIR","features":[362]},{"name":"BDIF_LE","features":[362]},{"name":"BDIF_LE_CONNECTABLE","features":[362]},{"name":"BDIF_LE_CONNECTED","features":[362]},{"name":"BDIF_LE_DEBUGKEY","features":[362]},{"name":"BDIF_LE_DISCOVERABLE","features":[362]},{"name":"BDIF_LE_MITM_PROTECTED","features":[362]},{"name":"BDIF_LE_NAME","features":[362]},{"name":"BDIF_LE_PAIRED","features":[362]},{"name":"BDIF_LE_PERSONAL","features":[362]},{"name":"BDIF_LE_PRIVACY_ENABLED","features":[362]},{"name":"BDIF_LE_RANDOM_ADDRESS_TYPE","features":[362]},{"name":"BDIF_LE_SECURE_CONNECTION_PAIRED","features":[362]},{"name":"BDIF_LE_VISIBLE","features":[362]},{"name":"BDIF_NAME","features":[362]},{"name":"BDIF_PAIRED","features":[362]},{"name":"BDIF_PERSONAL","features":[362]},{"name":"BDIF_RSSI","features":[362]},{"name":"BDIF_SHORT_NAME","features":[362]},{"name":"BDIF_SSP_MITM_PROTECTED","features":[362]},{"name":"BDIF_SSP_PAIRED","features":[362]},{"name":"BDIF_SSP_SUPPORTED","features":[362]},{"name":"BDIF_TX_POWER","features":[362]},{"name":"BDIF_VISIBLE","features":[362]},{"name":"BLUETOOTH_ADDRESS","features":[362]},{"name":"BLUETOOTH_AUTHENTICATE_RESPONSE","features":[362]},{"name":"BLUETOOTH_AUTHENTICATION_CALLBACK_PARAMS","features":[362,305]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD","features":[362]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_LEGACY","features":[362]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_NUMERIC_COMPARISON","features":[362]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_OOB","features":[362]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY","features":[362]},{"name":"BLUETOOTH_AUTHENTICATION_METHOD_PASSKEY_NOTIFICATION","features":[362]},{"name":"BLUETOOTH_AUTHENTICATION_REQUIREMENTS","features":[362]},{"name":"BLUETOOTH_COD_PAIRS","features":[362]},{"name":"BLUETOOTH_DEVICE_INFO","features":[362,305]},{"name":"BLUETOOTH_DEVICE_NAME_SIZE","features":[362]},{"name":"BLUETOOTH_DEVICE_SEARCH_PARAMS","features":[362,305]},{"name":"BLUETOOTH_FIND_RADIO_PARAMS","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_AUTHENTICATED","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_CONNECTION_ENCRYPTED","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_CACHE","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_FORCE_READ_FROM_DEVICE","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_NONE","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_RETURN_ALL","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_SIGNED_WRITE","features":[362]},{"name":"BLUETOOTH_GATT_FLAG_WRITE_WITHOUT_RESPONSE","features":[362]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT","features":[362]},{"name":"BLUETOOTH_GATT_VALUE_CHANGED_EVENT_REGISTRATION","features":[362,305]},{"name":"BLUETOOTH_IO_CAPABILITY","features":[362]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYONLY","features":[362]},{"name":"BLUETOOTH_IO_CAPABILITY_DISPLAYYESNO","features":[362]},{"name":"BLUETOOTH_IO_CAPABILITY_KEYBOARDONLY","features":[362]},{"name":"BLUETOOTH_IO_CAPABILITY_NOINPUTNOOUTPUT","features":[362]},{"name":"BLUETOOTH_IO_CAPABILITY_UNDEFINED","features":[362]},{"name":"BLUETOOTH_LOCAL_SERVICE_INFO","features":[362,305]},{"name":"BLUETOOTH_MAX_NAME_SIZE","features":[362]},{"name":"BLUETOOTH_MAX_PASSKEY_BUFFER_SIZE","features":[362]},{"name":"BLUETOOTH_MAX_PASSKEY_SIZE","features":[362]},{"name":"BLUETOOTH_MAX_SERVICE_NAME_SIZE","features":[362]},{"name":"BLUETOOTH_MITM_ProtectionNotDefined","features":[362]},{"name":"BLUETOOTH_MITM_ProtectionNotRequired","features":[362]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredBonding","features":[362]},{"name":"BLUETOOTH_MITM_ProtectionNotRequiredGeneralBonding","features":[362]},{"name":"BLUETOOTH_MITM_ProtectionRequired","features":[362]},{"name":"BLUETOOTH_MITM_ProtectionRequiredBonding","features":[362]},{"name":"BLUETOOTH_MITM_ProtectionRequiredGeneralBonding","features":[362]},{"name":"BLUETOOTH_NUMERIC_COMPARISON_INFO","features":[362]},{"name":"BLUETOOTH_OOB_DATA_INFO","features":[362]},{"name":"BLUETOOTH_PASSKEY_INFO","features":[362]},{"name":"BLUETOOTH_PIN_INFO","features":[362]},{"name":"BLUETOOTH_RADIO_INFO","features":[362]},{"name":"BLUETOOTH_SELECT_DEVICE_PARAMS","features":[362,305]},{"name":"BLUETOOTH_SERVICE_DISABLE","features":[362]},{"name":"BLUETOOTH_SERVICE_ENABLE","features":[362]},{"name":"BNEP_PROTOCOL_UUID16","features":[362]},{"name":"BTHLEENUM_ATT_MTU_DEFAULT","features":[362]},{"name":"BTHLEENUM_ATT_MTU_INITIAL_NEGOTIATION","features":[362]},{"name":"BTHLEENUM_ATT_MTU_MAX","features":[362]},{"name":"BTHLEENUM_ATT_MTU_MIN","features":[362]},{"name":"BTHNS_RESULT_DEVICE_AUTHENTICATED","features":[362]},{"name":"BTHNS_RESULT_DEVICE_CONNECTED","features":[362]},{"name":"BTHNS_RESULT_DEVICE_REMEMBERED","features":[362]},{"name":"BTHPROTO_L2CAP","features":[362]},{"name":"BTHPROTO_RFCOMM","features":[362]},{"name":"BTH_ADDR_GIAC","features":[362]},{"name":"BTH_ADDR_IAC_FIRST","features":[362]},{"name":"BTH_ADDR_IAC_LAST","features":[362]},{"name":"BTH_ADDR_LIAC","features":[362]},{"name":"BTH_ADDR_STRING_SIZE","features":[362]},{"name":"BTH_DEVICE_INFO","features":[362]},{"name":"BTH_EIR_128_UUIDS_COMPLETE_ID","features":[362]},{"name":"BTH_EIR_128_UUIDS_PARTIAL_ID","features":[362]},{"name":"BTH_EIR_16_UUIDS_COMPLETE_ID","features":[362]},{"name":"BTH_EIR_16_UUIDS_PARTIAL_ID","features":[362]},{"name":"BTH_EIR_32_UUIDS_COMPLETE_ID","features":[362]},{"name":"BTH_EIR_32_UUIDS_PARTIAL_ID","features":[362]},{"name":"BTH_EIR_FLAGS_ID","features":[362]},{"name":"BTH_EIR_LOCAL_NAME_COMPLETE_ID","features":[362]},{"name":"BTH_EIR_LOCAL_NAME_PARTIAL_ID","features":[362]},{"name":"BTH_EIR_MANUFACTURER_ID","features":[362]},{"name":"BTH_EIR_OOB_BD_ADDR_ID","features":[362]},{"name":"BTH_EIR_OOB_COD_ID","features":[362]},{"name":"BTH_EIR_OOB_OPT_DATA_LEN_ID","features":[362]},{"name":"BTH_EIR_OOB_SP_HASH_ID","features":[362]},{"name":"BTH_EIR_OOB_SP_RANDOMIZER_ID","features":[362]},{"name":"BTH_EIR_SIZE","features":[362]},{"name":"BTH_EIR_TX_POWER_LEVEL_ID","features":[362]},{"name":"BTH_ERROR_ACL_CONNECTION_ALREADY_EXISTS","features":[362]},{"name":"BTH_ERROR_AUTHENTICATION_FAILURE","features":[362]},{"name":"BTH_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED","features":[362]},{"name":"BTH_ERROR_COARSE_CLOCK_ADJUSTMENT_REJECTED","features":[362]},{"name":"BTH_ERROR_COMMAND_DISALLOWED","features":[362]},{"name":"BTH_ERROR_CONNECTION_FAILED_TO_BE_ESTABLISHED","features":[362]},{"name":"BTH_ERROR_CONNECTION_REJECTED_DUE_TO_NO_SUITABLE_CHANNEL_FOUND","features":[362]},{"name":"BTH_ERROR_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE","features":[362]},{"name":"BTH_ERROR_CONNECTION_TIMEOUT","features":[362]},{"name":"BTH_ERROR_CONTROLLER_BUSY","features":[362]},{"name":"BTH_ERROR_DIFFERENT_TRANSACTION_COLLISION","features":[362]},{"name":"BTH_ERROR_DIRECTED_ADVERTISING_TIMEOUT","features":[362]},{"name":"BTH_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE","features":[362]},{"name":"BTH_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE","features":[362]},{"name":"BTH_ERROR_HARDWARE_FAILURE","features":[362]},{"name":"BTH_ERROR_HOST_BUSY_PAIRING","features":[362]},{"name":"BTH_ERROR_HOST_REJECTED_LIMITED_RESOURCES","features":[362]},{"name":"BTH_ERROR_HOST_REJECTED_PERSONAL_DEVICE","features":[362]},{"name":"BTH_ERROR_HOST_REJECTED_SECURITY_REASONS","features":[362]},{"name":"BTH_ERROR_HOST_TIMEOUT","features":[362]},{"name":"BTH_ERROR_INSTANT_PASSED","features":[362]},{"name":"BTH_ERROR_INSUFFICIENT_SECURITY","features":[362]},{"name":"BTH_ERROR_INVALID_HCI_PARAMETER","features":[362]},{"name":"BTH_ERROR_INVALID_LMP_PARAMETERS","features":[362]},{"name":"BTH_ERROR_KEY_MISSING","features":[362]},{"name":"BTH_ERROR_LIMIT_REACHED","features":[362]},{"name":"BTH_ERROR_LMP_PDU_NOT_ALLOWED","features":[362]},{"name":"BTH_ERROR_LMP_RESPONSE_TIMEOUT","features":[362]},{"name":"BTH_ERROR_LMP_TRANSACTION_COLLISION","features":[362]},{"name":"BTH_ERROR_LOCAL_HOST_TERMINATED_CONNECTION","features":[362]},{"name":"BTH_ERROR_MAC_CONNECTION_FAILED","features":[362]},{"name":"BTH_ERROR_MAX_NUMBER_OF_CONNECTIONS","features":[362]},{"name":"BTH_ERROR_MAX_NUMBER_OF_SCO_CONNECTIONS","features":[362]},{"name":"BTH_ERROR_MEMORY_FULL","features":[362]},{"name":"BTH_ERROR_NO_CONNECTION","features":[362]},{"name":"BTH_ERROR_OPERATION_CANCELLED_BY_HOST","features":[362]},{"name":"BTH_ERROR_PACKET_TOO_LONG","features":[362]},{"name":"BTH_ERROR_PAGE_TIMEOUT","features":[362]},{"name":"BTH_ERROR_PAIRING_NOT_ALLOWED","features":[362]},{"name":"BTH_ERROR_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED","features":[362]},{"name":"BTH_ERROR_PARAMETER_OUT_OF_MANDATORY_RANGE","features":[362]},{"name":"BTH_ERROR_QOS_IS_NOT_SUPPORTED","features":[362]},{"name":"BTH_ERROR_QOS_REJECTED","features":[362]},{"name":"BTH_ERROR_QOS_UNACCEPTABLE_PARAMETER","features":[362]},{"name":"BTH_ERROR_REMOTE_LOW_RESOURCES","features":[362]},{"name":"BTH_ERROR_REMOTE_POWERING_OFF","features":[362]},{"name":"BTH_ERROR_REMOTE_USER_ENDED_CONNECTION","features":[362]},{"name":"BTH_ERROR_REPEATED_ATTEMPTS","features":[362]},{"name":"BTH_ERROR_RESERVED_SLOT_VIOLATION","features":[362]},{"name":"BTH_ERROR_ROLE_CHANGE_NOT_ALLOWED","features":[362]},{"name":"BTH_ERROR_ROLE_SWITCH_FAILED","features":[362]},{"name":"BTH_ERROR_ROLE_SWITCH_PENDING","features":[362]},{"name":"BTH_ERROR_SCO_AIRMODE_REJECTED","features":[362]},{"name":"BTH_ERROR_SCO_INTERVAL_REJECTED","features":[362]},{"name":"BTH_ERROR_SCO_OFFSET_REJECTED","features":[362]},{"name":"BTH_ERROR_SECURE_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST","features":[362]},{"name":"BTH_ERROR_SUCCESS","features":[362]},{"name":"BTH_ERROR_TYPE_0_SUBMAP_NOT_DEFINED","features":[362]},{"name":"BTH_ERROR_UKNOWN_LMP_PDU","features":[362]},{"name":"BTH_ERROR_UNACCEPTABLE_CONNECTION_INTERVAL","features":[362]},{"name":"BTH_ERROR_UNIT_KEY_NOT_USED","features":[362]},{"name":"BTH_ERROR_UNKNOWN_ADVERTISING_IDENTIFIER","features":[362]},{"name":"BTH_ERROR_UNKNOWN_HCI_COMMAND","features":[362]},{"name":"BTH_ERROR_UNSPECIFIED","features":[362]},{"name":"BTH_ERROR_UNSPECIFIED_ERROR","features":[362]},{"name":"BTH_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER","features":[362]},{"name":"BTH_ERROR_UNSUPPORTED_LMP_PARM_VALUE","features":[362]},{"name":"BTH_ERROR_UNSUPPORTED_REMOTE_FEATURE","features":[362]},{"name":"BTH_HCI_EVENT_INFO","features":[362]},{"name":"BTH_HOST_FEATURE_ENHANCED_RETRANSMISSION_MODE","features":[362]},{"name":"BTH_HOST_FEATURE_LOW_ENERGY","features":[362]},{"name":"BTH_HOST_FEATURE_SCO_HCI","features":[362]},{"name":"BTH_HOST_FEATURE_SCO_HCIBYPASS","features":[362]},{"name":"BTH_HOST_FEATURE_STREAMING_MODE","features":[362]},{"name":"BTH_INFO_REQ","features":[362]},{"name":"BTH_INFO_RSP","features":[362]},{"name":"BTH_IOCTL_BASE","features":[362]},{"name":"BTH_L2CAP_EVENT_INFO","features":[362]},{"name":"BTH_LE_ATT_BLUETOOTH_BASE_GUID","features":[362]},{"name":"BTH_LE_ATT_CID","features":[362]},{"name":"BTH_LE_ATT_MAX_VALUE_SIZE","features":[362]},{"name":"BTH_LE_ATT_TRANSACTION_TIMEOUT","features":[362]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_FOUND","features":[362]},{"name":"BTH_LE_ERROR_ATTRIBUTE_NOT_LONG","features":[362]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHENTICATION","features":[362]},{"name":"BTH_LE_ERROR_INSUFFICIENT_AUTHORIZATION","features":[362]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION","features":[362]},{"name":"BTH_LE_ERROR_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[362]},{"name":"BTH_LE_ERROR_INSUFFICIENT_RESOURCES","features":[362]},{"name":"BTH_LE_ERROR_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[362]},{"name":"BTH_LE_ERROR_INVALID_HANDLE","features":[362]},{"name":"BTH_LE_ERROR_INVALID_OFFSET","features":[362]},{"name":"BTH_LE_ERROR_INVALID_PDU","features":[362]},{"name":"BTH_LE_ERROR_PREPARE_QUEUE_FULL","features":[362]},{"name":"BTH_LE_ERROR_READ_NOT_PERMITTED","features":[362]},{"name":"BTH_LE_ERROR_REQUEST_NOT_SUPPORTED","features":[362]},{"name":"BTH_LE_ERROR_UNKNOWN","features":[362]},{"name":"BTH_LE_ERROR_UNLIKELY","features":[362]},{"name":"BTH_LE_ERROR_UNSUPPORTED_GROUP_TYPE","features":[362]},{"name":"BTH_LE_ERROR_WRITE_NOT_PERMITTED","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_BOOKSHELF_SPEAKER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SOUNDBAR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_SPEAKERPHONE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDALONE_SPEAKER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SINK_SUBCATEGORY_STANDMOUNTED_SPEAKER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_ALARM","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_AUDITORIUM","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BELL","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_BROADCASTING_ROOM","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_HORN","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_KIOSK","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_MICROPHONE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_AUDIO_SOURCE_SUBCATEGORY_SERVICE_DESK","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_ARM","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_BLOOD_PRESSURE_SUBCATEGORY_WRIST","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_ACCESS_CONTROL","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIRCRAFT","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AIR_CONDITIONING","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SINK","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AUDIO_SOURCE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_AV_EQUIPMENT","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BARCODE_SCANNER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_BLOOD_PRESSURE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CLOCK","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_COMPUTER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTINUOUS_GLUCOSE_MONITOR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CONTROL_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_CYCLING","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DISPLAY_EQUIPMENT","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_DOMESTIC_APPLIANCE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_EYE_GLASSES","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_FAN","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GAMING","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_GLUCOSE_METER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEARING_AID","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEART_RATE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HEATING","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HID","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HUMIDIFIER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_HVAC","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_INSULIN_PUMP","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_KEYRING","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_FIXTURES","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_LIGHT_SOURCE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MASK","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDIA_PLAYER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MEDICATION_DELIVERY","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_MOTORIZED_VEHICLE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_NETWORK_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OFFSET","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_OUTDOOR_SPORTS_ACTIVITY","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PERSONAL_MOBILITY_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PHONE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_PLUSE_OXIMETER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_POWER_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_REMOTE_CONTROL","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_RUNNING_WALKING_SENSOR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SENSOR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_SIGNAGE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_TAG","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_THERMOMETER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_UNCATEGORIZED","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WATCH","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEARABLE_AUDIO_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WEIGHT_SCALE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CATEGORY_WINDOW_COVERING","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CADENCE_SENSOR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_CYCLING_COMPUTER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_POWER_SENSOR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_AND_CADENCE_SENSOR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_CYCLING_SUBCATEGORY_SPEED_SENSOR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_BEHIND_EAR_HEARING_AID","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_COCHLEAR_IMPLANT","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HEARING_AID_SUBCATEGORY_IN_EAR_HEARING_AID","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HEART_RATE_SUBCATEGORY_HEART_RATE_BELT","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_BARCODE_SCANNER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_CARD_READER","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITAL_PEN","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_DIGITIZER_TABLET","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_GAMEPAD","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_JOYSTICK","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_KEYBOARD","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_HID_SUBCATEGORY_MOUSE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_DISPLAY_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_DISPLAY_DEVICE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_NAVIGATION_POD","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_OUTDOOR_SPORTS_ACTIVITY_SUBCATEGORY_LOCATION_POD","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_FINGERTIP","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_PULSE_OXIMETER_SUBCATEGORY_WRIST_WORN","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_IN_SHOE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_HIP","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_RUNNING_WALKING_SENSOR_SUBCATEGORY_ON_SHOE","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_SUBCATEGORY_GENERIC","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_SUB_CATEGORY_MASK","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_THERMOMETER_SUBCATEGORY_EAR","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_WATCH_SUBCATEGORY_SPORTS_WATCH","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_EARBUD","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADPHONES","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_HEADSET","features":[362]},{"name":"BTH_LE_GAP_APPEARANCE_WEARABLE_AUDIO_DEVICE_SUBCATEGORY_NECKBAND","features":[362]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_CHARACTERISTIC","features":[362]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_INCLUDE","features":[362]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_PRIMARY_SERVICE","features":[362]},{"name":"BTH_LE_GATT_ATTRIBUTE_TYPE_SECONDARY_SERVICE","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC","features":[362,305]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_AGGREGATE_FORMAT","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_CLIENT_CONFIGURATION","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_EXTENDED_PROPERTIES","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_FORMAT","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_SERVER_CONFIGURATION","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_DESCRIPTOR_USER_DESCRIPTION","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_APPEARANCE","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_DEVICE_NAME","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PREFERED_CONNECTION_PARAMETER","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_PERIPHERAL_PRIVACY_FLAG","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_RECONNECTION_ADDRESS","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_TYPE_SERVICE_CHANGED","features":[362]},{"name":"BTH_LE_GATT_CHARACTERISTIC_VALUE","features":[362]},{"name":"BTH_LE_GATT_DEFAULT_MAX_INCLUDED_SERVICES_DEPTH","features":[362]},{"name":"BTH_LE_GATT_DESCRIPTOR","features":[362,305]},{"name":"BTH_LE_GATT_DESCRIPTOR_TYPE","features":[362]},{"name":"BTH_LE_GATT_DESCRIPTOR_VALUE","features":[362,305]},{"name":"BTH_LE_GATT_EVENT_TYPE","features":[362]},{"name":"BTH_LE_GATT_SERVICE","features":[362,305]},{"name":"BTH_LE_SERVICE_GAP","features":[362]},{"name":"BTH_LE_SERVICE_GATT","features":[362]},{"name":"BTH_LE_UUID","features":[362,305]},{"name":"BTH_LINK_KEY_LENGTH","features":[362]},{"name":"BTH_MAJORVERSION","features":[362]},{"name":"BTH_MAX_NAME_SIZE","features":[362]},{"name":"BTH_MAX_PIN_SIZE","features":[362]},{"name":"BTH_MAX_SERVICE_NAME_SIZE","features":[362]},{"name":"BTH_MFG_3COM","features":[362]},{"name":"BTH_MFG_ALCATEL","features":[362]},{"name":"BTH_MFG_APPLE","features":[362]},{"name":"BTH_MFG_ARUBA_NETWORKS","features":[362]},{"name":"BTH_MFG_ATMEL","features":[362]},{"name":"BTH_MFG_AVM_BERLIN","features":[362]},{"name":"BTH_MFG_BANDSPEED","features":[362]},{"name":"BTH_MFG_BROADCOM","features":[362]},{"name":"BTH_MFG_CONEXANT","features":[362]},{"name":"BTH_MFG_CSR","features":[362]},{"name":"BTH_MFG_C_TECHNOLOGIES","features":[362]},{"name":"BTH_MFG_DIGIANSWER","features":[362]},{"name":"BTH_MFG_ERICSSON","features":[362]},{"name":"BTH_MFG_HITACHI","features":[362]},{"name":"BTH_MFG_IBM","features":[362]},{"name":"BTH_MFG_INFINEON","features":[362]},{"name":"BTH_MFG_INTEL","features":[362]},{"name":"BTH_MFG_INTERNAL_USE","features":[362]},{"name":"BTH_MFG_INVENTEL","features":[362]},{"name":"BTH_MFG_KC_TECHNOLOGY","features":[362]},{"name":"BTH_MFG_LUCENT","features":[362]},{"name":"BTH_MFG_MACRONIX_INTERNATIONAL","features":[362]},{"name":"BTH_MFG_MANSELLA","features":[362]},{"name":"BTH_MFG_MARVELL","features":[362]},{"name":"BTH_MFG_MICROSOFT","features":[362]},{"name":"BTH_MFG_MITEL","features":[362]},{"name":"BTH_MFG_MITSIBUSHI","features":[362]},{"name":"BTH_MFG_MOTOROLA","features":[362]},{"name":"BTH_MFG_NEC","features":[362]},{"name":"BTH_MFG_NEWLOGIC","features":[362]},{"name":"BTH_MFG_NOKIA","features":[362]},{"name":"BTH_MFG_NORDIC_SEMICONDUCTORS_ASA","features":[362]},{"name":"BTH_MFG_OPEN_INTERFACE","features":[362]},{"name":"BTH_MFG_PARTHUS","features":[362]},{"name":"BTH_MFG_PHILIPS_SEMICONDUCTOR","features":[362]},{"name":"BTH_MFG_QUALCOMM","features":[362]},{"name":"BTH_MFG_RF_MICRO_DEVICES","features":[362]},{"name":"BTH_MFG_ROHDE_SCHWARZ","features":[362]},{"name":"BTH_MFG_RTX_TELECOM","features":[362]},{"name":"BTH_MFG_SIGNIA","features":[362]},{"name":"BTH_MFG_SILICONWAVE","features":[362]},{"name":"BTH_MFG_SYMBOL_TECHNOLOGIES","features":[362]},{"name":"BTH_MFG_TENOVIS","features":[362]},{"name":"BTH_MFG_TI","features":[362]},{"name":"BTH_MFG_TOSHIBA","features":[362]},{"name":"BTH_MFG_TRANSILICA","features":[362]},{"name":"BTH_MFG_TTPCOM","features":[362]},{"name":"BTH_MFG_WAVEPLUS_TECHNOLOGY_CO","features":[362]},{"name":"BTH_MFG_WIDCOMM","features":[362]},{"name":"BTH_MFG_ZEEVO","features":[362]},{"name":"BTH_MINORVERSION","features":[362]},{"name":"BTH_PING_REQ","features":[362]},{"name":"BTH_PING_RSP","features":[362]},{"name":"BTH_QUERY_DEVICE","features":[362]},{"name":"BTH_QUERY_SERVICE","features":[362]},{"name":"BTH_RADIO_IN_RANGE","features":[362]},{"name":"BTH_SDP_VERSION","features":[362]},{"name":"BTH_SET_SERVICE","features":[362,305]},{"name":"BTH_VID_DEFAULT_VALUE","features":[362]},{"name":"BT_PORT_DYN_FIRST","features":[362]},{"name":"BT_PORT_MAX","features":[362]},{"name":"BT_PORT_MIN","features":[362]},{"name":"BasicPrintingProfileID_UUID16","features":[362]},{"name":"BasicPrintingServiceClassID_UUID16","features":[362]},{"name":"BluetoothAuthenticateDevice","features":[362,305]},{"name":"BluetoothAuthenticateDeviceEx","features":[362,305]},{"name":"BluetoothAuthenticateMultipleDevices","features":[362,305]},{"name":"BluetoothDisplayDeviceProperties","features":[362,305]},{"name":"BluetoothEnableDiscovery","features":[362,305]},{"name":"BluetoothEnableIncomingConnections","features":[362,305]},{"name":"BluetoothEnumerateInstalledServices","features":[362,305]},{"name":"BluetoothFindDeviceClose","features":[362,305]},{"name":"BluetoothFindFirstDevice","features":[362,305]},{"name":"BluetoothFindFirstRadio","features":[362,305]},{"name":"BluetoothFindNextDevice","features":[362,305]},{"name":"BluetoothFindNextRadio","features":[362,305]},{"name":"BluetoothFindRadioClose","features":[362,305]},{"name":"BluetoothGATTAbortReliableWrite","features":[362,305]},{"name":"BluetoothGATTBeginReliableWrite","features":[362,305]},{"name":"BluetoothGATTEndReliableWrite","features":[362,305]},{"name":"BluetoothGATTGetCharacteristicValue","features":[362,305]},{"name":"BluetoothGATTGetCharacteristics","features":[362,305]},{"name":"BluetoothGATTGetDescriptorValue","features":[362,305]},{"name":"BluetoothGATTGetDescriptors","features":[362,305]},{"name":"BluetoothGATTGetIncludedServices","features":[362,305]},{"name":"BluetoothGATTGetServices","features":[362,305]},{"name":"BluetoothGATTRegisterEvent","features":[362,305]},{"name":"BluetoothGATTSetCharacteristicValue","features":[362,305]},{"name":"BluetoothGATTSetDescriptorValue","features":[362,305]},{"name":"BluetoothGATTUnregisterEvent","features":[362]},{"name":"BluetoothGetDeviceInfo","features":[362,305]},{"name":"BluetoothGetRadioInfo","features":[362,305]},{"name":"BluetoothIsConnectable","features":[362,305]},{"name":"BluetoothIsDiscoverable","features":[362,305]},{"name":"BluetoothIsVersionAvailable","features":[362,305]},{"name":"BluetoothRegisterForAuthentication","features":[362,305]},{"name":"BluetoothRegisterForAuthenticationEx","features":[362,305]},{"name":"BluetoothRemoveDevice","features":[362]},{"name":"BluetoothSdpEnumAttributes","features":[362,305]},{"name":"BluetoothSdpGetAttributeValue","features":[362]},{"name":"BluetoothSdpGetContainerElementData","features":[362]},{"name":"BluetoothSdpGetElementData","features":[362]},{"name":"BluetoothSdpGetString","features":[362]},{"name":"BluetoothSelectDevices","features":[362,305]},{"name":"BluetoothSelectDevicesFree","features":[362,305]},{"name":"BluetoothSendAuthenticationResponse","features":[362,305]},{"name":"BluetoothSendAuthenticationResponseEx","features":[362,305]},{"name":"BluetoothSetLocalServiceInfo","features":[362,305]},{"name":"BluetoothSetServiceState","features":[362,305]},{"name":"BluetoothUnregisterAuthentication","features":[362,305]},{"name":"BluetoothUpdateDeviceRecord","features":[362,305]},{"name":"Bluetooth_Base_UUID","features":[362]},{"name":"BrowseGroupDescriptorServiceClassID_UUID16","features":[362]},{"name":"CMPT_PROTOCOL_UUID16","features":[362]},{"name":"COD_AUDIO_MINOR_CAMCORDER","features":[362]},{"name":"COD_AUDIO_MINOR_CAR_AUDIO","features":[362]},{"name":"COD_AUDIO_MINOR_GAMING_TOY","features":[362]},{"name":"COD_AUDIO_MINOR_HANDS_FREE","features":[362]},{"name":"COD_AUDIO_MINOR_HEADPHONES","features":[362]},{"name":"COD_AUDIO_MINOR_HEADSET","features":[362]},{"name":"COD_AUDIO_MINOR_HEADSET_HANDS_FREE","features":[362]},{"name":"COD_AUDIO_MINOR_HIFI_AUDIO","features":[362]},{"name":"COD_AUDIO_MINOR_LOUDSPEAKER","features":[362]},{"name":"COD_AUDIO_MINOR_MICROPHONE","features":[362]},{"name":"COD_AUDIO_MINOR_PORTABLE_AUDIO","features":[362]},{"name":"COD_AUDIO_MINOR_SET_TOP_BOX","features":[362]},{"name":"COD_AUDIO_MINOR_UNCLASSIFIED","features":[362]},{"name":"COD_AUDIO_MINOR_VCR","features":[362]},{"name":"COD_AUDIO_MINOR_VIDEO_CAMERA","features":[362]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_CONFERENCING","features":[362]},{"name":"COD_AUDIO_MINOR_VIDEO_DISPLAY_LOUDSPEAKER","features":[362]},{"name":"COD_AUDIO_MINOR_VIDEO_MONITOR","features":[362]},{"name":"COD_COMPUTER_MINOR_DESKTOP","features":[362]},{"name":"COD_COMPUTER_MINOR_HANDHELD","features":[362]},{"name":"COD_COMPUTER_MINOR_LAPTOP","features":[362]},{"name":"COD_COMPUTER_MINOR_PALM","features":[362]},{"name":"COD_COMPUTER_MINOR_SERVER","features":[362]},{"name":"COD_COMPUTER_MINOR_UNCLASSIFIED","features":[362]},{"name":"COD_COMPUTER_MINOR_WEARABLE","features":[362]},{"name":"COD_FORMAT_BIT_OFFSET","features":[362]},{"name":"COD_FORMAT_MASK","features":[362]},{"name":"COD_HEALTH_MINOR_BLOOD_PRESSURE_MONITOR","features":[362]},{"name":"COD_HEALTH_MINOR_GLUCOSE_METER","features":[362]},{"name":"COD_HEALTH_MINOR_HEALTH_DATA_DISPLAY","features":[362]},{"name":"COD_HEALTH_MINOR_HEART_PULSE_MONITOR","features":[362]},{"name":"COD_HEALTH_MINOR_PULSE_OXIMETER","features":[362]},{"name":"COD_HEALTH_MINOR_STEP_COUNTER","features":[362]},{"name":"COD_HEALTH_MINOR_THERMOMETER","features":[362]},{"name":"COD_HEALTH_MINOR_WEIGHING_SCALE","features":[362]},{"name":"COD_IMAGING_MINOR_CAMERA_MASK","features":[362]},{"name":"COD_IMAGING_MINOR_DISPLAY_MASK","features":[362]},{"name":"COD_IMAGING_MINOR_PRINTER_MASK","features":[362]},{"name":"COD_IMAGING_MINOR_SCANNER_MASK","features":[362]},{"name":"COD_LAN_ACCESS_0_USED","features":[362]},{"name":"COD_LAN_ACCESS_17_USED","features":[362]},{"name":"COD_LAN_ACCESS_33_USED","features":[362]},{"name":"COD_LAN_ACCESS_50_USED","features":[362]},{"name":"COD_LAN_ACCESS_67_USED","features":[362]},{"name":"COD_LAN_ACCESS_83_USED","features":[362]},{"name":"COD_LAN_ACCESS_99_USED","features":[362]},{"name":"COD_LAN_ACCESS_BIT_OFFSET","features":[362]},{"name":"COD_LAN_ACCESS_FULL","features":[362]},{"name":"COD_LAN_ACCESS_MASK","features":[362]},{"name":"COD_LAN_MINOR_MASK","features":[362]},{"name":"COD_LAN_MINOR_UNCLASSIFIED","features":[362]},{"name":"COD_MAJOR_AUDIO","features":[362]},{"name":"COD_MAJOR_COMPUTER","features":[362]},{"name":"COD_MAJOR_HEALTH","features":[362]},{"name":"COD_MAJOR_IMAGING","features":[362]},{"name":"COD_MAJOR_LAN_ACCESS","features":[362]},{"name":"COD_MAJOR_MASK","features":[362]},{"name":"COD_MAJOR_MISCELLANEOUS","features":[362]},{"name":"COD_MAJOR_PERIPHERAL","features":[362]},{"name":"COD_MAJOR_PHONE","features":[362]},{"name":"COD_MAJOR_TOY","features":[362]},{"name":"COD_MAJOR_UNCLASSIFIED","features":[362]},{"name":"COD_MAJOR_WEARABLE","features":[362]},{"name":"COD_MINOR_BIT_OFFSET","features":[362]},{"name":"COD_MINOR_MASK","features":[362]},{"name":"COD_PERIPHERAL_MINOR_GAMEPAD","features":[362]},{"name":"COD_PERIPHERAL_MINOR_JOYSTICK","features":[362]},{"name":"COD_PERIPHERAL_MINOR_KEYBOARD_MASK","features":[362]},{"name":"COD_PERIPHERAL_MINOR_NO_CATEGORY","features":[362]},{"name":"COD_PERIPHERAL_MINOR_POINTER_MASK","features":[362]},{"name":"COD_PERIPHERAL_MINOR_REMOTE_CONTROL","features":[362]},{"name":"COD_PERIPHERAL_MINOR_SENSING","features":[362]},{"name":"COD_PHONE_MINOR_CELLULAR","features":[362]},{"name":"COD_PHONE_MINOR_CORDLESS","features":[362]},{"name":"COD_PHONE_MINOR_SMART","features":[362]},{"name":"COD_PHONE_MINOR_UNCLASSIFIED","features":[362]},{"name":"COD_PHONE_MINOR_WIRED_MODEM","features":[362]},{"name":"COD_SERVICE_AUDIO","features":[362]},{"name":"COD_SERVICE_CAPTURING","features":[362]},{"name":"COD_SERVICE_INFORMATION","features":[362]},{"name":"COD_SERVICE_LE_AUDIO","features":[362]},{"name":"COD_SERVICE_LIMITED","features":[362]},{"name":"COD_SERVICE_MASK","features":[362]},{"name":"COD_SERVICE_MAX_COUNT","features":[362]},{"name":"COD_SERVICE_NETWORKING","features":[362]},{"name":"COD_SERVICE_OBJECT_XFER","features":[362]},{"name":"COD_SERVICE_POSITIONING","features":[362]},{"name":"COD_SERVICE_RENDERING","features":[362]},{"name":"COD_SERVICE_TELEPHONY","features":[362]},{"name":"COD_TOY_MINOR_CONTROLLER","features":[362]},{"name":"COD_TOY_MINOR_DOLL_ACTION_FIGURE","features":[362]},{"name":"COD_TOY_MINOR_GAME","features":[362]},{"name":"COD_TOY_MINOR_ROBOT","features":[362]},{"name":"COD_TOY_MINOR_VEHICLE","features":[362]},{"name":"COD_VERSION","features":[362]},{"name":"COD_WEARABLE_MINOR_GLASSES","features":[362]},{"name":"COD_WEARABLE_MINOR_HELMET","features":[362]},{"name":"COD_WEARABLE_MINOR_JACKET","features":[362]},{"name":"COD_WEARABLE_MINOR_PAGER","features":[362]},{"name":"COD_WEARABLE_MINOR_WRIST_WATCH","features":[362]},{"name":"CORDLESS_EXTERNAL_NETWORK_ANALOG_CELLULAR","features":[362]},{"name":"CORDLESS_EXTERNAL_NETWORK_CDMA","features":[362]},{"name":"CORDLESS_EXTERNAL_NETWORK_GSM","features":[362]},{"name":"CORDLESS_EXTERNAL_NETWORK_ISDN","features":[362]},{"name":"CORDLESS_EXTERNAL_NETWORK_OTHER","features":[362]},{"name":"CORDLESS_EXTERNAL_NETWORK_PACKET_SWITCHED","features":[362]},{"name":"CORDLESS_EXTERNAL_NETWORK_PSTN","features":[362]},{"name":"CTNAccessServiceClassID_UUID16","features":[362]},{"name":"CTNNotificationServiceClassID_UUID16","features":[362]},{"name":"CTNProfileID_UUID16","features":[362]},{"name":"CharacteristicAggregateFormat","features":[362]},{"name":"CharacteristicExtendedProperties","features":[362]},{"name":"CharacteristicFormat","features":[362]},{"name":"CharacteristicUserDescription","features":[362]},{"name":"CharacteristicValueChangedEvent","features":[362]},{"name":"ClientCharacteristicConfiguration","features":[362]},{"name":"CommonISDNAccessServiceClassID_UUID16","features":[362]},{"name":"CommonISDNAccessServiceClass_UUID16","features":[362]},{"name":"CordlessServiceClassID_UUID16","features":[362]},{"name":"CordlessTelephonyServiceClassID_UUID16","features":[362]},{"name":"CustomDescriptor","features":[362]},{"name":"DI_VENDOR_ID_SOURCE_BLUETOOTH_SIG","features":[362]},{"name":"DI_VENDOR_ID_SOURCE_USB_IF","features":[362]},{"name":"DialupNetworkingServiceClassID_UUID16","features":[362]},{"name":"DirectPrintingReferenceObjectsServiceClassID_UUID16","features":[362]},{"name":"DirectPrintingServiceClassID_UUID16","features":[362]},{"name":"ENCODING_UTF_8","features":[362]},{"name":"ESdpUpnpIpLapServiceClassID_UUID16","features":[362]},{"name":"ESdpUpnpIpPanServiceClassID_UUID16","features":[362]},{"name":"ESdpUpnpL2capServiceClassID_UUID16","features":[362]},{"name":"FTP_PROTOCOL_UUID16","features":[362]},{"name":"FaxServiceClassID_UUID16","features":[362]},{"name":"GNSSProfileID_UUID16","features":[362]},{"name":"GNSSServerServiceClassID_UUID16","features":[362]},{"name":"GNServiceClassID_UUID16","features":[362]},{"name":"GUID_BLUETOOTHLE_DEVICE_INTERFACE","features":[362]},{"name":"GUID_BLUETOOTH_AUTHENTICATION_REQUEST","features":[362]},{"name":"GUID_BLUETOOTH_GATT_SERVICE_DEVICE_INTERFACE","features":[362]},{"name":"GUID_BLUETOOTH_HCI_EVENT","features":[362]},{"name":"GUID_BLUETOOTH_HCI_VENDOR_EVENT","features":[362]},{"name":"GUID_BLUETOOTH_KEYPRESS_EVENT","features":[362]},{"name":"GUID_BLUETOOTH_L2CAP_EVENT","features":[362]},{"name":"GUID_BLUETOOTH_RADIO_IN_RANGE","features":[362]},{"name":"GUID_BLUETOOTH_RADIO_OUT_OF_RANGE","features":[362]},{"name":"GUID_BTHPORT_DEVICE_INTERFACE","features":[362]},{"name":"GUID_BTH_RFCOMM_SERVICE_DEVICE_INTERFACE","features":[362]},{"name":"GenericAudioServiceClassID_UUID16","features":[362]},{"name":"GenericFileTransferServiceClassID_UUID16","features":[362]},{"name":"GenericNetworkingServiceClassID_UUID16","features":[362]},{"name":"GenericTelephonyServiceClassID_UUID16","features":[362]},{"name":"HANDLE_SDP_TYPE","features":[362]},{"name":"HBLUETOOTH_DEVICE_FIND","features":[362]},{"name":"HBLUETOOTH_RADIO_FIND","features":[362]},{"name":"HCCC_PROTOCOL_UUID16","features":[362]},{"name":"HCDC_PROTOCOL_UUID16","features":[362]},{"name":"HCI_CONNECTION_TYPE_ACL","features":[362]},{"name":"HCI_CONNECTION_TYPE_LE","features":[362]},{"name":"HCI_CONNECTION_TYPE_SCO","features":[362]},{"name":"HCI_CONNNECTION_TYPE_ACL","features":[362]},{"name":"HCI_CONNNECTION_TYPE_SCO","features":[362]},{"name":"HCN_PROTOCOL_UUID16","features":[362]},{"name":"HCRPrintServiceClassID_UUID16","features":[362]},{"name":"HCRScanServiceClassID_UUID16","features":[362]},{"name":"HID_PROTOCOL_UUID16","features":[362]},{"name":"HTTP_PROTOCOL_UUID16","features":[362]},{"name":"HandsfreeAudioGatewayServiceClassID_UUID16","features":[362]},{"name":"HandsfreeServiceClassID_UUID16","features":[362]},{"name":"HardcopyCableReplacementProfileID_UUID16","features":[362]},{"name":"HardcopyCableReplacementServiceClassID_UUID16","features":[362]},{"name":"HeadsetAudioGatewayServiceClassID_UUID16","features":[362]},{"name":"HeadsetHSServiceClassID_UUID16","features":[362]},{"name":"HeadsetServiceClassID_UUID16","features":[362]},{"name":"HealthDeviceProfileID_UUID16","features":[362]},{"name":"HealthDeviceProfileSinkServiceClassID_UUID16","features":[362]},{"name":"HealthDeviceProfileSourceServiceClassID_UUID16","features":[362]},{"name":"HumanInterfaceDeviceServiceClassID_UUID16","features":[362]},{"name":"IO_CAPABILITY","features":[362]},{"name":"IP_PROTOCOL_UUID16","features":[362]},{"name":"ImagingAutomaticArchiveServiceClassID_UUID16","features":[362]},{"name":"ImagingReferenceObjectsServiceClassID_UUID16","features":[362]},{"name":"ImagingResponderServiceClassID_UUID16","features":[362]},{"name":"ImagingServiceClassID_UUID16","features":[362]},{"name":"ImagingServiceProfileID_UUID16","features":[362]},{"name":"IntercomServiceClassID_UUID16","features":[362]},{"name":"IoCaps_DisplayOnly","features":[362]},{"name":"IoCaps_DisplayYesNo","features":[362]},{"name":"IoCaps_KeyboardOnly","features":[362]},{"name":"IoCaps_NoInputNoOutput","features":[362]},{"name":"IoCaps_Undefined","features":[362]},{"name":"IrMCSyncServiceClassID_UUID16","features":[362]},{"name":"IrMcSyncCommandServiceClassID_UUID16","features":[362]},{"name":"L2CAP_DEFAULT_MTU","features":[362]},{"name":"L2CAP_MAX_MTU","features":[362]},{"name":"L2CAP_MIN_MTU","features":[362]},{"name":"L2CAP_PROTOCOL_UUID16","features":[362]},{"name":"LANAccessUsingPPPServiceClassID_UUID16","features":[362]},{"name":"LANGUAGE_EN_US","features":[362]},{"name":"LANG_BASE_ENCODING_INDEX","features":[362]},{"name":"LANG_BASE_LANGUAGE_INDEX","features":[362]},{"name":"LANG_BASE_OFFSET_INDEX","features":[362]},{"name":"LANG_DEFAULT_ID","features":[362]},{"name":"LAP_GIAC_VALUE","features":[362]},{"name":"LAP_LIAC_VALUE","features":[362]},{"name":"MAX_L2CAP_INFO_DATA_LENGTH","features":[362]},{"name":"MAX_L2CAP_PING_DATA_LENGTH","features":[362]},{"name":"MAX_UUIDS_IN_QUERY","features":[362]},{"name":"MITMProtectionNotDefined","features":[362]},{"name":"MITMProtectionNotRequired","features":[362]},{"name":"MITMProtectionNotRequiredBonding","features":[362]},{"name":"MITMProtectionNotRequiredGeneralBonding","features":[362]},{"name":"MITMProtectionRequired","features":[362]},{"name":"MITMProtectionRequiredBonding","features":[362]},{"name":"MITMProtectionRequiredGeneralBonding","features":[362]},{"name":"MPSProfileID_UUID16","features":[362]},{"name":"MPSServiceClassID_UUID16","features":[362]},{"name":"MessageAccessProfileID_UUID16","features":[362]},{"name":"MessageAccessServerServiceClassID_UUID16","features":[362]},{"name":"MessageNotificationServerServiceClassID_UUID16","features":[362]},{"name":"NAPServiceClassID_UUID16","features":[362]},{"name":"NS_BTH","features":[362]},{"name":"NodeContainerType","features":[362]},{"name":"NodeContainerTypeAlternative","features":[362]},{"name":"NodeContainerTypeSequence","features":[362]},{"name":"OBEXFileTransferServiceClassID_UUID16","features":[362]},{"name":"OBEXObjectPushServiceClassID_UUID16","features":[362]},{"name":"OBEX_PROTOCOL_UUID16","features":[362]},{"name":"OBJECT_PUSH_FORMAT_ANY","features":[362]},{"name":"OBJECT_PUSH_FORMAT_ICAL_2_0","features":[362]},{"name":"OBJECT_PUSH_FORMAT_VCAL_1_0","features":[362]},{"name":"OBJECT_PUSH_FORMAT_VCARD_2_1","features":[362]},{"name":"OBJECT_PUSH_FORMAT_VCARD_3_0","features":[362]},{"name":"OBJECT_PUSH_FORMAT_VMESSAGE","features":[362]},{"name":"OBJECT_PUSH_FORMAT_VNOTE","features":[362]},{"name":"PANUServiceClassID_UUID16","features":[362]},{"name":"PFNBLUETOOTH_GATT_EVENT_CALLBACK","features":[362]},{"name":"PFN_AUTHENTICATION_CALLBACK","features":[362,305]},{"name":"PFN_AUTHENTICATION_CALLBACK_EX","features":[362,305]},{"name":"PFN_BLUETOOTH_ENUM_ATTRIBUTES_CALLBACK","features":[362,305]},{"name":"PFN_DEVICE_CALLBACK","features":[362,305]},{"name":"PF_BTH","features":[362]},{"name":"PSM_3DSP","features":[362]},{"name":"PSM_ATT","features":[362]},{"name":"PSM_AVCTP","features":[362]},{"name":"PSM_AVCTP_BROWSE","features":[362]},{"name":"PSM_AVDTP","features":[362]},{"name":"PSM_BNEP","features":[362]},{"name":"PSM_HID_CONTROL","features":[362]},{"name":"PSM_HID_INTERRUPT","features":[362]},{"name":"PSM_LE_IPSP","features":[362]},{"name":"PSM_RFCOMM","features":[362]},{"name":"PSM_SDP","features":[362]},{"name":"PSM_TCS_BIN","features":[362]},{"name":"PSM_TCS_BIN_CORDLESS","features":[362]},{"name":"PSM_UDI_C_PLANE","features":[362]},{"name":"PSM_UPNP","features":[362]},{"name":"PhonebookAccessPceServiceClassID_UUID16","features":[362]},{"name":"PhonebookAccessProfileID_UUID16","features":[362]},{"name":"PhonebookAccessPseServiceClassID_UUID16","features":[362]},{"name":"PnPInformationServiceClassID_UUID16","features":[362]},{"name":"PrintingStatusServiceClassID_UUID16","features":[362]},{"name":"PublicBrowseGroupServiceClassID_UUID16","features":[362]},{"name":"RFCOMM_CMD_MSC","features":[362]},{"name":"RFCOMM_CMD_NONE","features":[362]},{"name":"RFCOMM_CMD_RLS","features":[362]},{"name":"RFCOMM_CMD_RPN","features":[362]},{"name":"RFCOMM_CMD_RPN_REQUEST","features":[362]},{"name":"RFCOMM_CMD_RPN_RESPONSE","features":[362]},{"name":"RFCOMM_COMMAND","features":[362]},{"name":"RFCOMM_MAX_MTU","features":[362]},{"name":"RFCOMM_MIN_MTU","features":[362]},{"name":"RFCOMM_MSC_DATA","features":[362]},{"name":"RFCOMM_PROTOCOL_UUID16","features":[362]},{"name":"RFCOMM_RLS_DATA","features":[362]},{"name":"RFCOMM_RPN_DATA","features":[362]},{"name":"RLS_ERROR","features":[362]},{"name":"RLS_FRAMING","features":[362]},{"name":"RLS_OVERRUN","features":[362]},{"name":"RLS_PARITY","features":[362]},{"name":"RPN_BAUD_115200","features":[362]},{"name":"RPN_BAUD_19200","features":[362]},{"name":"RPN_BAUD_230400","features":[362]},{"name":"RPN_BAUD_2400","features":[362]},{"name":"RPN_BAUD_38400","features":[362]},{"name":"RPN_BAUD_4800","features":[362]},{"name":"RPN_BAUD_57600","features":[362]},{"name":"RPN_BAUD_7200","features":[362]},{"name":"RPN_BAUD_9600","features":[362]},{"name":"RPN_DATA_5","features":[362]},{"name":"RPN_DATA_6","features":[362]},{"name":"RPN_DATA_7","features":[362]},{"name":"RPN_DATA_8","features":[362]},{"name":"RPN_FLOW_RTC_IN","features":[362]},{"name":"RPN_FLOW_RTC_OUT","features":[362]},{"name":"RPN_FLOW_RTR_IN","features":[362]},{"name":"RPN_FLOW_RTR_OUT","features":[362]},{"name":"RPN_FLOW_X_IN","features":[362]},{"name":"RPN_FLOW_X_OUT","features":[362]},{"name":"RPN_PARAM_BAUD","features":[362]},{"name":"RPN_PARAM_DATA","features":[362]},{"name":"RPN_PARAM_PARITY","features":[362]},{"name":"RPN_PARAM_P_TYPE","features":[362]},{"name":"RPN_PARAM_RTC_IN","features":[362]},{"name":"RPN_PARAM_RTC_OUT","features":[362]},{"name":"RPN_PARAM_RTR_IN","features":[362]},{"name":"RPN_PARAM_RTR_OUT","features":[362]},{"name":"RPN_PARAM_STOP","features":[362]},{"name":"RPN_PARAM_XOFF","features":[362]},{"name":"RPN_PARAM_XON","features":[362]},{"name":"RPN_PARAM_X_IN","features":[362]},{"name":"RPN_PARAM_X_OUT","features":[362]},{"name":"RPN_PARITY_EVEN","features":[362]},{"name":"RPN_PARITY_MARK","features":[362]},{"name":"RPN_PARITY_NONE","features":[362]},{"name":"RPN_PARITY_ODD","features":[362]},{"name":"RPN_PARITY_SPACE","features":[362]},{"name":"RPN_STOP_1","features":[362]},{"name":"RPN_STOP_1_5","features":[362]},{"name":"ReferencePrintingServiceClassID_UUID16","features":[362]},{"name":"ReflectsUIServiceClassID_UUID16","features":[362]},{"name":"SAP_BIT_OFFSET","features":[362]},{"name":"SDP_ATTRIB_A2DP_SUPPORTED_FEATURES","features":[362]},{"name":"SDP_ATTRIB_ADDITIONAL_PROTOCOL_DESCRIPTOR_LIST","features":[362]},{"name":"SDP_ATTRIB_AVAILABILITY","features":[362]},{"name":"SDP_ATTRIB_AVRCP_SUPPORTED_FEATURES","features":[362]},{"name":"SDP_ATTRIB_BROWSE_GROUP_ID","features":[362]},{"name":"SDP_ATTRIB_BROWSE_GROUP_LIST","features":[362]},{"name":"SDP_ATTRIB_CLASS_ID_LIST","features":[362]},{"name":"SDP_ATTRIB_CLIENT_EXECUTABLE_URL","features":[362]},{"name":"SDP_ATTRIB_CORDLESS_EXTERNAL_NETWORK","features":[362]},{"name":"SDP_ATTRIB_DI_PRIMARY_RECORD","features":[362]},{"name":"SDP_ATTRIB_DI_PRODUCT_ID","features":[362]},{"name":"SDP_ATTRIB_DI_SPECIFICATION_ID","features":[362]},{"name":"SDP_ATTRIB_DI_VENDOR_ID","features":[362]},{"name":"SDP_ATTRIB_DI_VENDOR_ID_SOURCE","features":[362]},{"name":"SDP_ATTRIB_DI_VERSION","features":[362]},{"name":"SDP_ATTRIB_DOCUMENTATION_URL","features":[362]},{"name":"SDP_ATTRIB_FAX_AUDIO_FEEDBACK_SUPPORT","features":[362]},{"name":"SDP_ATTRIB_FAX_CLASS_1_SUPPORT","features":[362]},{"name":"SDP_ATTRIB_FAX_CLASS_2_0_SUPPORT","features":[362]},{"name":"SDP_ATTRIB_FAX_CLASS_2_SUPPORT","features":[362]},{"name":"SDP_ATTRIB_HEADSET_REMOTE_AUDIO_VOLUME_CONTROL","features":[362]},{"name":"SDP_ATTRIB_HFP_SUPPORTED_FEATURES","features":[362]},{"name":"SDP_ATTRIB_HID_BATTERY_POWER","features":[362]},{"name":"SDP_ATTRIB_HID_BOOT_DEVICE","features":[362]},{"name":"SDP_ATTRIB_HID_COUNTRY_CODE","features":[362]},{"name":"SDP_ATTRIB_HID_DESCRIPTOR_LIST","features":[362]},{"name":"SDP_ATTRIB_HID_DEVICE_RELEASE_NUMBER","features":[362]},{"name":"SDP_ATTRIB_HID_DEVICE_SUBCLASS","features":[362]},{"name":"SDP_ATTRIB_HID_LANG_ID_BASE_LIST","features":[362]},{"name":"SDP_ATTRIB_HID_NORMALLY_CONNECTABLE","features":[362]},{"name":"SDP_ATTRIB_HID_PARSER_VERSION","features":[362]},{"name":"SDP_ATTRIB_HID_PROFILE_VERSION","features":[362]},{"name":"SDP_ATTRIB_HID_RECONNECT_INITIATE","features":[362]},{"name":"SDP_ATTRIB_HID_REMOTE_WAKE","features":[362]},{"name":"SDP_ATTRIB_HID_SDP_DISABLE","features":[362]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MAX_LATENCY","features":[362]},{"name":"SDP_ATTRIB_HID_SSR_HOST_MIN_TIMEOUT","features":[362]},{"name":"SDP_ATTRIB_HID_SUPERVISION_TIMEOUT","features":[362]},{"name":"SDP_ATTRIB_HID_VIRTUAL_CABLE","features":[362]},{"name":"SDP_ATTRIB_ICON_URL","features":[362]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_CAPABILITIES","features":[362]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FEATURES","features":[362]},{"name":"SDP_ATTRIB_IMAGING_SUPPORTED_FUNCTIONS","features":[362]},{"name":"SDP_ATTRIB_IMAGING_TOTAL_DATA_CAPACITY","features":[362]},{"name":"SDP_ATTRIB_INFO_TIME_TO_LIVE","features":[362]},{"name":"SDP_ATTRIB_LANG_BASE_ATTRIB_ID_LIST","features":[362]},{"name":"SDP_ATTRIB_LAN_LPSUBNET","features":[362]},{"name":"SDP_ATTRIB_OBJECT_PUSH_SUPPORTED_FORMATS_LIST","features":[362]},{"name":"SDP_ATTRIB_PAN_HOME_PAGE_URL","features":[362]},{"name":"SDP_ATTRIB_PAN_MAX_NET_ACCESS_RATE","features":[362]},{"name":"SDP_ATTRIB_PAN_NETWORK_ADDRESS","features":[362]},{"name":"SDP_ATTRIB_PAN_NET_ACCESS_TYPE","features":[362]},{"name":"SDP_ATTRIB_PAN_SECURITY_DESCRIPTION","features":[362]},{"name":"SDP_ATTRIB_PAN_WAP_GATEWAY","features":[362]},{"name":"SDP_ATTRIB_PAN_WAP_STACK_TYPE","features":[362]},{"name":"SDP_ATTRIB_PROFILE_DESCRIPTOR_LIST","features":[362]},{"name":"SDP_ATTRIB_PROFILE_SPECIFIC","features":[362]},{"name":"SDP_ATTRIB_PROTOCOL_DESCRIPTOR_LIST","features":[362]},{"name":"SDP_ATTRIB_RECORD_HANDLE","features":[362]},{"name":"SDP_ATTRIB_RECORD_STATE","features":[362]},{"name":"SDP_ATTRIB_SDP_DATABASE_STATE","features":[362]},{"name":"SDP_ATTRIB_SDP_VERSION_NUMBER_LIST","features":[362]},{"name":"SDP_ATTRIB_SERVICE_ID","features":[362]},{"name":"SDP_ATTRIB_SERVICE_VERSION","features":[362]},{"name":"SDP_ATTRIB_SYNCH_SUPPORTED_DATA_STORES_LIST","features":[362]},{"name":"SDP_CONNECT_ALLOW_PIN","features":[362]},{"name":"SDP_CONNECT_CACHE","features":[362]},{"name":"SDP_DEFAULT_INQUIRY_MAX_RESPONSES","features":[362]},{"name":"SDP_DEFAULT_INQUIRY_SECONDS","features":[362]},{"name":"SDP_ELEMENT_DATA","features":[362]},{"name":"SDP_ERROR_INSUFFICIENT_RESOURCES","features":[362]},{"name":"SDP_ERROR_INVALID_CONTINUATION_STATE","features":[362]},{"name":"SDP_ERROR_INVALID_PDU_SIZE","features":[362]},{"name":"SDP_ERROR_INVALID_RECORD_HANDLE","features":[362]},{"name":"SDP_ERROR_INVALID_REQUEST_SYNTAX","features":[362]},{"name":"SDP_ERROR_INVALID_SDP_VERSION","features":[362]},{"name":"SDP_LARGE_INTEGER_16","features":[362]},{"name":"SDP_MAX_INQUIRY_SECONDS","features":[362]},{"name":"SDP_PROTOCOL_UUID16","features":[362]},{"name":"SDP_REQUEST_TO_DEFAULT","features":[362]},{"name":"SDP_REQUEST_TO_MAX","features":[362]},{"name":"SDP_REQUEST_TO_MIN","features":[362]},{"name":"SDP_SEARCH_NO_FORMAT_CHECK","features":[362]},{"name":"SDP_SEARCH_NO_PARSE_CHECK","features":[362]},{"name":"SDP_SERVICE_ATTRIBUTE_REQUEST","features":[362]},{"name":"SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST","features":[362]},{"name":"SDP_SERVICE_SEARCH_REQUEST","features":[362]},{"name":"SDP_SPECIFICTYPE","features":[362]},{"name":"SDP_STRING_TYPE_DATA","features":[362]},{"name":"SDP_ST_INT128","features":[362]},{"name":"SDP_ST_INT16","features":[362]},{"name":"SDP_ST_INT32","features":[362]},{"name":"SDP_ST_INT64","features":[362]},{"name":"SDP_ST_INT8","features":[362]},{"name":"SDP_ST_NONE","features":[362]},{"name":"SDP_ST_UINT128","features":[362]},{"name":"SDP_ST_UINT16","features":[362]},{"name":"SDP_ST_UINT32","features":[362]},{"name":"SDP_ST_UINT64","features":[362]},{"name":"SDP_ST_UINT8","features":[362]},{"name":"SDP_ST_UUID128","features":[362]},{"name":"SDP_ST_UUID16","features":[362]},{"name":"SDP_ST_UUID32","features":[362]},{"name":"SDP_TYPE","features":[362]},{"name":"SDP_TYPE_ALTERNATIVE","features":[362]},{"name":"SDP_TYPE_BOOLEAN","features":[362]},{"name":"SDP_TYPE_CONTAINER","features":[362]},{"name":"SDP_TYPE_INT","features":[362]},{"name":"SDP_TYPE_NIL","features":[362]},{"name":"SDP_TYPE_SEQUENCE","features":[362]},{"name":"SDP_TYPE_STRING","features":[362]},{"name":"SDP_TYPE_UINT","features":[362]},{"name":"SDP_TYPE_URL","features":[362]},{"name":"SDP_TYPE_UUID","features":[362]},{"name":"SDP_ULARGE_INTEGER_16","features":[362]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH","features":[362]},{"name":"SERVICE_OPTION_DO_NOT_PUBLISH_EIR","features":[362]},{"name":"SERVICE_OPTION_NO_PUBLIC_BROWSE","features":[362]},{"name":"SERVICE_SECURITY_AUTHENTICATE","features":[362]},{"name":"SERVICE_SECURITY_AUTHORIZE","features":[362]},{"name":"SERVICE_SECURITY_DISABLED","features":[362]},{"name":"SERVICE_SECURITY_ENCRYPT_OPTIONAL","features":[362]},{"name":"SERVICE_SECURITY_ENCRYPT_REQUIRED","features":[362]},{"name":"SERVICE_SECURITY_NONE","features":[362]},{"name":"SERVICE_SECURITY_NO_ASK","features":[362]},{"name":"SERVICE_SECURITY_USE_DEFAULTS","features":[362]},{"name":"SOCKADDR_BTH","features":[362]},{"name":"SOL_L2CAP","features":[362]},{"name":"SOL_RFCOMM","features":[362]},{"name":"SOL_SDP","features":[362]},{"name":"SO_BTH_AUTHENTICATE","features":[362]},{"name":"SO_BTH_ENCRYPT","features":[362]},{"name":"SO_BTH_MTU","features":[362]},{"name":"SO_BTH_MTU_MAX","features":[362]},{"name":"SO_BTH_MTU_MIN","features":[362]},{"name":"STRING_DESCRIPTION_OFFSET","features":[362]},{"name":"STRING_NAME_OFFSET","features":[362]},{"name":"STRING_PROVIDER_NAME_OFFSET","features":[362]},{"name":"STR_ADDR_FMT","features":[362]},{"name":"STR_ADDR_FMTA","features":[362]},{"name":"STR_ADDR_FMTW","features":[362]},{"name":"STR_ADDR_SHORT_FMT","features":[362]},{"name":"STR_ADDR_SHORT_FMTA","features":[362]},{"name":"STR_ADDR_SHORT_FMTW","features":[362]},{"name":"STR_USBHCI_CLASS_HARDWAREID","features":[362]},{"name":"STR_USBHCI_CLASS_HARDWAREIDA","features":[362]},{"name":"STR_USBHCI_CLASS_HARDWAREIDW","features":[362]},{"name":"SVCID_BTH_PROVIDER","features":[362]},{"name":"SYNCH_DATA_STORE_CALENDAR","features":[362]},{"name":"SYNCH_DATA_STORE_MESSAGES","features":[362]},{"name":"SYNCH_DATA_STORE_NOTES","features":[362]},{"name":"SYNCH_DATA_STORE_PHONEBOOK","features":[362]},{"name":"SdpAttributeRange","features":[362]},{"name":"SdpQueryUuid","features":[362]},{"name":"SdpQueryUuidUnion","features":[362]},{"name":"SerialPortServiceClassID_UUID16","features":[362]},{"name":"ServerCharacteristicConfiguration","features":[362]},{"name":"ServiceDiscoveryServerServiceClassID_UUID16","features":[362]},{"name":"SimAccessServiceClassID_UUID16","features":[362]},{"name":"TCP_PROTOCOL_UUID16","features":[362]},{"name":"TCSAT_PROTOCOL_UUID16","features":[362]},{"name":"TCSBIN_PROTOCOL_UUID16","features":[362]},{"name":"ThreeDimensionalDisplayServiceClassID_UUID16","features":[362]},{"name":"ThreeDimensionalGlassesServiceClassID_UUID16","features":[362]},{"name":"ThreeDimensionalSynchronizationProfileID_UUID16","features":[362]},{"name":"UDIMTServiceClassID_UUID16","features":[362]},{"name":"UDIMTServiceClass_UUID16","features":[362]},{"name":"UDITAServiceClassID_UUID16","features":[362]},{"name":"UDITAServiceClass_UUID16","features":[362]},{"name":"UDI_C_PLANE_PROTOCOL_UUID16","features":[362]},{"name":"UDP_PROTOCOL_UUID16","features":[362]},{"name":"UPNP_PROTOCOL_UUID16","features":[362]},{"name":"UPnpIpServiceClassID_UUID16","features":[362]},{"name":"UPnpServiceClassID_UUID16","features":[362]},{"name":"VideoConferencingGWServiceClassID_UUID16","features":[362]},{"name":"VideoConferencingGWServiceClass_UUID16","features":[362]},{"name":"VideoConferencingServiceClassID_UUID16","features":[362]},{"name":"VideoDistributionProfileID_UUID16","features":[362]},{"name":"VideoSinkServiceClassID_UUID16","features":[362]},{"name":"VideoSourceServiceClassID_UUID16","features":[362]},{"name":"WAPClientServiceClassID_UUID16","features":[362]},{"name":"WAPServiceClassID_UUID16","features":[362]},{"name":"WSP_PROTOCOL_UUID16","features":[362]}],"372":[{"name":"BuildCommDCBA","features":[363,305]},{"name":"BuildCommDCBAndTimeoutsA","features":[363,305]},{"name":"BuildCommDCBAndTimeoutsW","features":[363,305]},{"name":"BuildCommDCBW","features":[363,305]},{"name":"CE_BREAK","features":[363]},{"name":"CE_FRAME","features":[363]},{"name":"CE_OVERRUN","features":[363]},{"name":"CE_RXOVER","features":[363]},{"name":"CE_RXPARITY","features":[363]},{"name":"CLEAR_COMM_ERROR_FLAGS","features":[363]},{"name":"CLRBREAK","features":[363]},{"name":"CLRDTR","features":[363]},{"name":"CLRRTS","features":[363]},{"name":"COMMCONFIG","features":[363]},{"name":"COMMPROP","features":[363]},{"name":"COMMPROP_STOP_PARITY","features":[363]},{"name":"COMMTIMEOUTS","features":[363]},{"name":"COMM_EVENT_MASK","features":[363]},{"name":"COMSTAT","features":[363]},{"name":"ClearCommBreak","features":[363,305]},{"name":"ClearCommError","features":[363,305]},{"name":"CommConfigDialogA","features":[363,305]},{"name":"CommConfigDialogW","features":[363,305]},{"name":"DCB","features":[363]},{"name":"DCB_PARITY","features":[363]},{"name":"DCB_STOP_BITS","features":[363]},{"name":"DIALOPTION_BILLING","features":[363]},{"name":"DIALOPTION_DIALTONE","features":[363]},{"name":"DIALOPTION_QUIET","features":[363]},{"name":"ESCAPE_COMM_FUNCTION","features":[363]},{"name":"EVENPARITY","features":[363]},{"name":"EV_BREAK","features":[363]},{"name":"EV_CTS","features":[363]},{"name":"EV_DSR","features":[363]},{"name":"EV_ERR","features":[363]},{"name":"EV_EVENT1","features":[363]},{"name":"EV_EVENT2","features":[363]},{"name":"EV_PERR","features":[363]},{"name":"EV_RING","features":[363]},{"name":"EV_RLSD","features":[363]},{"name":"EV_RX80FULL","features":[363]},{"name":"EV_RXCHAR","features":[363]},{"name":"EV_RXFLAG","features":[363]},{"name":"EV_TXEMPTY","features":[363]},{"name":"EscapeCommFunction","features":[363,305]},{"name":"GetCommConfig","features":[363,305]},{"name":"GetCommMask","features":[363,305]},{"name":"GetCommModemStatus","features":[363,305]},{"name":"GetCommPorts","features":[363]},{"name":"GetCommProperties","features":[363,305]},{"name":"GetCommState","features":[363,305]},{"name":"GetCommTimeouts","features":[363,305]},{"name":"GetDefaultCommConfigA","features":[363,305]},{"name":"GetDefaultCommConfigW","features":[363,305]},{"name":"MARKPARITY","features":[363]},{"name":"MAXLENGTH_NAI","features":[363]},{"name":"MAXLENGTH_UICCDATASTORE","features":[363]},{"name":"MDMSPKRFLAG_CALLSETUP","features":[363]},{"name":"MDMSPKRFLAG_DIAL","features":[363]},{"name":"MDMSPKRFLAG_OFF","features":[363]},{"name":"MDMSPKRFLAG_ON","features":[363]},{"name":"MDMSPKR_CALLSETUP","features":[363]},{"name":"MDMSPKR_DIAL","features":[363]},{"name":"MDMSPKR_OFF","features":[363]},{"name":"MDMSPKR_ON","features":[363]},{"name":"MDMVOLFLAG_HIGH","features":[363]},{"name":"MDMVOLFLAG_LOW","features":[363]},{"name":"MDMVOLFLAG_MEDIUM","features":[363]},{"name":"MDMVOL_HIGH","features":[363]},{"name":"MDMVOL_LOW","features":[363]},{"name":"MDMVOL_MEDIUM","features":[363]},{"name":"MDM_ANALOG_RLP_OFF","features":[363]},{"name":"MDM_ANALOG_RLP_ON","features":[363]},{"name":"MDM_ANALOG_V34","features":[363]},{"name":"MDM_AUTO_ML_2","features":[363]},{"name":"MDM_AUTO_ML_DEFAULT","features":[363]},{"name":"MDM_AUTO_ML_NONE","features":[363]},{"name":"MDM_AUTO_SPEED_DEFAULT","features":[363]},{"name":"MDM_BEARERMODE_ANALOG","features":[363]},{"name":"MDM_BEARERMODE_GSM","features":[363]},{"name":"MDM_BEARERMODE_ISDN","features":[363]},{"name":"MDM_BLIND_DIAL","features":[363]},{"name":"MDM_CCITT_OVERRIDE","features":[363]},{"name":"MDM_CELLULAR","features":[363]},{"name":"MDM_COMPRESSION","features":[363]},{"name":"MDM_DIAGNOSTICS","features":[363]},{"name":"MDM_ERROR_CONTROL","features":[363]},{"name":"MDM_FLOWCONTROL_HARD","features":[363]},{"name":"MDM_FLOWCONTROL_SOFT","features":[363]},{"name":"MDM_FORCED_EC","features":[363]},{"name":"MDM_HDLCPPP_AUTH_CHAP","features":[363]},{"name":"MDM_HDLCPPP_AUTH_DEFAULT","features":[363]},{"name":"MDM_HDLCPPP_AUTH_MSCHAP","features":[363]},{"name":"MDM_HDLCPPP_AUTH_NONE","features":[363]},{"name":"MDM_HDLCPPP_AUTH_PAP","features":[363]},{"name":"MDM_HDLCPPP_ML_2","features":[363]},{"name":"MDM_HDLCPPP_ML_DEFAULT","features":[363]},{"name":"MDM_HDLCPPP_ML_NONE","features":[363]},{"name":"MDM_HDLCPPP_SPEED_56K","features":[363]},{"name":"MDM_HDLCPPP_SPEED_64K","features":[363]},{"name":"MDM_HDLCPPP_SPEED_DEFAULT","features":[363]},{"name":"MDM_MASK_AUTO_SPEED","features":[363]},{"name":"MDM_MASK_BEARERMODE","features":[363]},{"name":"MDM_MASK_HDLCPPP_SPEED","features":[363]},{"name":"MDM_MASK_PROTOCOLDATA","features":[363]},{"name":"MDM_MASK_PROTOCOLID","features":[363]},{"name":"MDM_MASK_V110_SPEED","features":[363]},{"name":"MDM_MASK_V120_SPEED","features":[363]},{"name":"MDM_MASK_X75_DATA","features":[363]},{"name":"MDM_PIAFS_INCOMING","features":[363]},{"name":"MDM_PIAFS_OUTGOING","features":[363]},{"name":"MDM_PROTOCOLID_ANALOG","features":[363]},{"name":"MDM_PROTOCOLID_AUTO","features":[363]},{"name":"MDM_PROTOCOLID_DEFAULT","features":[363]},{"name":"MDM_PROTOCOLID_GPRS","features":[363]},{"name":"MDM_PROTOCOLID_HDLCPPP","features":[363]},{"name":"MDM_PROTOCOLID_PIAFS","features":[363]},{"name":"MDM_PROTOCOLID_V110","features":[363]},{"name":"MDM_PROTOCOLID_V120","features":[363]},{"name":"MDM_PROTOCOLID_V128","features":[363]},{"name":"MDM_PROTOCOLID_X75","features":[363]},{"name":"MDM_SHIFT_AUTO_ML","features":[363]},{"name":"MDM_SHIFT_AUTO_SPEED","features":[363]},{"name":"MDM_SHIFT_BEARERMODE","features":[363]},{"name":"MDM_SHIFT_EXTENDEDINFO","features":[363]},{"name":"MDM_SHIFT_HDLCPPP_AUTH","features":[363]},{"name":"MDM_SHIFT_HDLCPPP_ML","features":[363]},{"name":"MDM_SHIFT_HDLCPPP_SPEED","features":[363]},{"name":"MDM_SHIFT_PROTOCOLDATA","features":[363]},{"name":"MDM_SHIFT_PROTOCOLID","features":[363]},{"name":"MDM_SHIFT_PROTOCOLINFO","features":[363]},{"name":"MDM_SHIFT_V110_SPEED","features":[363]},{"name":"MDM_SHIFT_V120_ML","features":[363]},{"name":"MDM_SHIFT_V120_SPEED","features":[363]},{"name":"MDM_SHIFT_X75_DATA","features":[363]},{"name":"MDM_SPEED_ADJUST","features":[363]},{"name":"MDM_TONE_DIAL","features":[363]},{"name":"MDM_V110_SPEED_12DOT0K","features":[363]},{"name":"MDM_V110_SPEED_14DOT4K","features":[363]},{"name":"MDM_V110_SPEED_19DOT2K","features":[363]},{"name":"MDM_V110_SPEED_1DOT2K","features":[363]},{"name":"MDM_V110_SPEED_28DOT8K","features":[363]},{"name":"MDM_V110_SPEED_2DOT4K","features":[363]},{"name":"MDM_V110_SPEED_38DOT4K","features":[363]},{"name":"MDM_V110_SPEED_4DOT8K","features":[363]},{"name":"MDM_V110_SPEED_57DOT6K","features":[363]},{"name":"MDM_V110_SPEED_9DOT6K","features":[363]},{"name":"MDM_V110_SPEED_DEFAULT","features":[363]},{"name":"MDM_V120_ML_2","features":[363]},{"name":"MDM_V120_ML_DEFAULT","features":[363]},{"name":"MDM_V120_ML_NONE","features":[363]},{"name":"MDM_V120_SPEED_56K","features":[363]},{"name":"MDM_V120_SPEED_64K","features":[363]},{"name":"MDM_V120_SPEED_DEFAULT","features":[363]},{"name":"MDM_V23_OVERRIDE","features":[363]},{"name":"MDM_X75_DATA_128K","features":[363]},{"name":"MDM_X75_DATA_64K","features":[363]},{"name":"MDM_X75_DATA_BTX","features":[363]},{"name":"MDM_X75_DATA_DEFAULT","features":[363]},{"name":"MDM_X75_DATA_T_70","features":[363]},{"name":"MODEMDEVCAPS","features":[363]},{"name":"MODEMDEVCAPS_DIAL_OPTIONS","features":[363]},{"name":"MODEMDEVCAPS_SPEAKER_MODE","features":[363]},{"name":"MODEMDEVCAPS_SPEAKER_VOLUME","features":[363]},{"name":"MODEMSETTINGS","features":[363]},{"name":"MODEMSETTINGS_SPEAKER_MODE","features":[363]},{"name":"MODEM_SPEAKER_VOLUME","features":[363]},{"name":"MODEM_STATUS_FLAGS","features":[363]},{"name":"MS_CTS_ON","features":[363]},{"name":"MS_DSR_ON","features":[363]},{"name":"MS_RING_ON","features":[363]},{"name":"MS_RLSD_ON","features":[363]},{"name":"NOPARITY","features":[363]},{"name":"ODDPARITY","features":[363]},{"name":"ONE5STOPBITS","features":[363]},{"name":"ONESTOPBIT","features":[363]},{"name":"OpenCommPort","features":[363,305]},{"name":"PARITY_EVEN","features":[363]},{"name":"PARITY_MARK","features":[363]},{"name":"PARITY_NONE","features":[363]},{"name":"PARITY_ODD","features":[363]},{"name":"PARITY_SPACE","features":[363]},{"name":"PURGE_COMM_FLAGS","features":[363]},{"name":"PURGE_RXABORT","features":[363]},{"name":"PURGE_RXCLEAR","features":[363]},{"name":"PURGE_TXABORT","features":[363]},{"name":"PURGE_TXCLEAR","features":[363]},{"name":"PurgeComm","features":[363,305]},{"name":"SETBREAK","features":[363]},{"name":"SETDTR","features":[363]},{"name":"SETRTS","features":[363]},{"name":"SETXOFF","features":[363]},{"name":"SETXON","features":[363]},{"name":"SID_3GPP_SUPSVCMODEL","features":[363]},{"name":"SPACEPARITY","features":[363]},{"name":"STOPBITS_10","features":[363]},{"name":"STOPBITS_15","features":[363]},{"name":"STOPBITS_20","features":[363]},{"name":"SetCommBreak","features":[363,305]},{"name":"SetCommConfig","features":[363,305]},{"name":"SetCommMask","features":[363,305]},{"name":"SetCommState","features":[363,305]},{"name":"SetCommTimeouts","features":[363,305]},{"name":"SetDefaultCommConfigA","features":[363,305]},{"name":"SetDefaultCommConfigW","features":[363,305]},{"name":"SetupComm","features":[363,305]},{"name":"TWOSTOPBITS","features":[363]},{"name":"TransmitCommChar","features":[363,305]},{"name":"WaitCommEvent","features":[363,305,310]}],"373":[{"name":"CLSID_DeviceIoControl","features":[364]},{"name":"CreateDeviceAccessInstance","features":[364]},{"name":"DEV_PORT_1394","features":[364]},{"name":"DEV_PORT_ARTI","features":[364]},{"name":"DEV_PORT_COM1","features":[364]},{"name":"DEV_PORT_COM2","features":[364]},{"name":"DEV_PORT_COM3","features":[364]},{"name":"DEV_PORT_COM4","features":[364]},{"name":"DEV_PORT_DIAQ","features":[364]},{"name":"DEV_PORT_MAX","features":[364]},{"name":"DEV_PORT_MIN","features":[364]},{"name":"DEV_PORT_SIM","features":[364]},{"name":"DEV_PORT_USB","features":[364]},{"name":"ED_AUDIO_1","features":[364]},{"name":"ED_AUDIO_10","features":[364]},{"name":"ED_AUDIO_11","features":[364]},{"name":"ED_AUDIO_12","features":[364]},{"name":"ED_AUDIO_13","features":[364]},{"name":"ED_AUDIO_14","features":[364]},{"name":"ED_AUDIO_15","features":[364]},{"name":"ED_AUDIO_16","features":[364]},{"name":"ED_AUDIO_17","features":[364]},{"name":"ED_AUDIO_18","features":[364]},{"name":"ED_AUDIO_19","features":[364]},{"name":"ED_AUDIO_2","features":[364]},{"name":"ED_AUDIO_20","features":[364]},{"name":"ED_AUDIO_21","features":[364]},{"name":"ED_AUDIO_22","features":[364]},{"name":"ED_AUDIO_23","features":[364]},{"name":"ED_AUDIO_24","features":[364]},{"name":"ED_AUDIO_3","features":[364]},{"name":"ED_AUDIO_4","features":[364]},{"name":"ED_AUDIO_5","features":[364]},{"name":"ED_AUDIO_6","features":[364]},{"name":"ED_AUDIO_7","features":[364]},{"name":"ED_AUDIO_8","features":[364]},{"name":"ED_AUDIO_9","features":[364]},{"name":"ED_AUDIO_ALL","features":[364]},{"name":"ED_BASE","features":[364]},{"name":"ED_BOTTOM","features":[364]},{"name":"ED_CENTER","features":[364]},{"name":"ED_LEFT","features":[364]},{"name":"ED_MIDDLE","features":[364]},{"name":"ED_RIGHT","features":[364]},{"name":"ED_TOP","features":[364]},{"name":"ED_VIDEO","features":[364]},{"name":"ICreateDeviceAccessAsync","features":[364]},{"name":"IDeviceIoControl","features":[364]},{"name":"IDeviceRequestCompletionCallback","features":[364]}],"374":[{"name":"ALLOC_LOG_CONF","features":[365]},{"name":"BASIC_LOG_CONF","features":[365]},{"name":"BOOT_LOG_CONF","features":[365]},{"name":"BUSNUMBER_DES","features":[365]},{"name":"BUSNUMBER_RANGE","features":[365]},{"name":"BUSNUMBER_RESOURCE","features":[365]},{"name":"CABINET_INFO_A","features":[365]},{"name":"CABINET_INFO_A","features":[365]},{"name":"CABINET_INFO_W","features":[365]},{"name":"CABINET_INFO_W","features":[365]},{"name":"CMP_WaitNoPendingInstallEvents","features":[365]},{"name":"CM_ADD_ID_BITS","features":[365]},{"name":"CM_ADD_ID_COMPATIBLE","features":[365]},{"name":"CM_ADD_ID_HARDWARE","features":[365]},{"name":"CM_ADD_RANGE_ADDIFCONFLICT","features":[365]},{"name":"CM_ADD_RANGE_BITS","features":[365]},{"name":"CM_ADD_RANGE_DONOTADDIFCONFLICT","features":[365]},{"name":"CM_Add_Empty_Log_Conf","features":[354,365]},{"name":"CM_Add_Empty_Log_Conf_Ex","features":[354,365]},{"name":"CM_Add_IDA","features":[365]},{"name":"CM_Add_IDW","features":[365]},{"name":"CM_Add_ID_ExA","features":[365]},{"name":"CM_Add_ID_ExW","features":[365]},{"name":"CM_Add_Range","features":[365]},{"name":"CM_Add_Res_Des","features":[365]},{"name":"CM_Add_Res_Des_Ex","features":[365]},{"name":"CM_CDFLAGS","features":[365]},{"name":"CM_CDFLAGS_DRIVER","features":[365]},{"name":"CM_CDFLAGS_RESERVED","features":[365]},{"name":"CM_CDFLAGS_ROOT_OWNED","features":[365]},{"name":"CM_CDMASK","features":[365]},{"name":"CM_CDMASK_DESCRIPTION","features":[365]},{"name":"CM_CDMASK_DEVINST","features":[365]},{"name":"CM_CDMASK_FLAGS","features":[365]},{"name":"CM_CDMASK_RESDES","features":[365]},{"name":"CM_CDMASK_VALID","features":[365]},{"name":"CM_CLASS_PROPERTY_BITS","features":[365]},{"name":"CM_CLASS_PROPERTY_INSTALLER","features":[365]},{"name":"CM_CLASS_PROPERTY_INTERFACE","features":[365]},{"name":"CM_CREATE_DEVINST_BITS","features":[365]},{"name":"CM_CREATE_DEVINST_DO_NOT_INSTALL","features":[365]},{"name":"CM_CREATE_DEVINST_GENERATE_ID","features":[365]},{"name":"CM_CREATE_DEVINST_NORMAL","features":[365]},{"name":"CM_CREATE_DEVINST_NO_WAIT_INSTALL","features":[365]},{"name":"CM_CREATE_DEVINST_PHANTOM","features":[365]},{"name":"CM_CREATE_DEVNODE_BITS","features":[365]},{"name":"CM_CREATE_DEVNODE_DO_NOT_INSTALL","features":[365]},{"name":"CM_CREATE_DEVNODE_GENERATE_ID","features":[365]},{"name":"CM_CREATE_DEVNODE_NORMAL","features":[365]},{"name":"CM_CREATE_DEVNODE_NO_WAIT_INSTALL","features":[365]},{"name":"CM_CREATE_DEVNODE_PHANTOM","features":[365]},{"name":"CM_CRP_CHARACTERISTICS","features":[365]},{"name":"CM_CRP_DEVTYPE","features":[365]},{"name":"CM_CRP_EXCLUSIVE","features":[365]},{"name":"CM_CRP_LOWERFILTERS","features":[365]},{"name":"CM_CRP_MAX","features":[365]},{"name":"CM_CRP_MIN","features":[365]},{"name":"CM_CRP_SECURITY","features":[365]},{"name":"CM_CRP_SECURITY_SDS","features":[365]},{"name":"CM_CRP_UPPERFILTERS","features":[365]},{"name":"CM_CUSTOMDEVPROP_BITS","features":[365]},{"name":"CM_CUSTOMDEVPROP_MERGE_MULTISZ","features":[365]},{"name":"CM_Connect_MachineA","features":[365]},{"name":"CM_Connect_MachineW","features":[365]},{"name":"CM_Create_DevNodeA","features":[365]},{"name":"CM_Create_DevNodeW","features":[365]},{"name":"CM_Create_DevNode_ExA","features":[365]},{"name":"CM_Create_DevNode_ExW","features":[365]},{"name":"CM_Create_Range_List","features":[365]},{"name":"CM_DELETE_CLASS_BITS","features":[365]},{"name":"CM_DELETE_CLASS_INTERFACE","features":[365]},{"name":"CM_DELETE_CLASS_ONLY","features":[365]},{"name":"CM_DELETE_CLASS_SUBKEYS","features":[365]},{"name":"CM_DETECT_BITS","features":[365]},{"name":"CM_DETECT_CRASHED","features":[365]},{"name":"CM_DETECT_HWPROF_FIRST_BOOT","features":[365]},{"name":"CM_DETECT_NEW_PROFILE","features":[365]},{"name":"CM_DETECT_RUN","features":[365]},{"name":"CM_DEVCAP","features":[365]},{"name":"CM_DEVCAP_DOCKDEVICE","features":[365]},{"name":"CM_DEVCAP_EJECTSUPPORTED","features":[365]},{"name":"CM_DEVCAP_HARDWAREDISABLED","features":[365]},{"name":"CM_DEVCAP_LOCKSUPPORTED","features":[365]},{"name":"CM_DEVCAP_NONDYNAMIC","features":[365]},{"name":"CM_DEVCAP_RAWDEVICEOK","features":[365]},{"name":"CM_DEVCAP_REMOVABLE","features":[365]},{"name":"CM_DEVCAP_SECUREDEVICE","features":[365]},{"name":"CM_DEVCAP_SILENTINSTALL","features":[365]},{"name":"CM_DEVCAP_SURPRISEREMOVALOK","features":[365]},{"name":"CM_DEVCAP_UNIQUEID","features":[365]},{"name":"CM_DEVICE_PANEL_EDGE_BOTTOM","features":[365]},{"name":"CM_DEVICE_PANEL_EDGE_LEFT","features":[365]},{"name":"CM_DEVICE_PANEL_EDGE_RIGHT","features":[365]},{"name":"CM_DEVICE_PANEL_EDGE_TOP","features":[365]},{"name":"CM_DEVICE_PANEL_EDGE_UNKNOWN","features":[365]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_HINGE","features":[365]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PIVOT","features":[365]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_PLANAR","features":[365]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_SWIVEL","features":[365]},{"name":"CM_DEVICE_PANEL_JOINT_TYPE_UNKNOWN","features":[365]},{"name":"CM_DEVICE_PANEL_ORIENTATION_HORIZONTAL","features":[365]},{"name":"CM_DEVICE_PANEL_ORIENTATION_VERTICAL","features":[365]},{"name":"CM_DEVICE_PANEL_SHAPE_OVAL","features":[365]},{"name":"CM_DEVICE_PANEL_SHAPE_RECTANGLE","features":[365]},{"name":"CM_DEVICE_PANEL_SHAPE_UNKNOWN","features":[365]},{"name":"CM_DEVICE_PANEL_SIDE_BACK","features":[365]},{"name":"CM_DEVICE_PANEL_SIDE_BOTTOM","features":[365]},{"name":"CM_DEVICE_PANEL_SIDE_FRONT","features":[365]},{"name":"CM_DEVICE_PANEL_SIDE_LEFT","features":[365]},{"name":"CM_DEVICE_PANEL_SIDE_RIGHT","features":[365]},{"name":"CM_DEVICE_PANEL_SIDE_TOP","features":[365]},{"name":"CM_DEVICE_PANEL_SIDE_UNKNOWN","features":[365]},{"name":"CM_DEVNODE_STATUS_FLAGS","features":[365]},{"name":"CM_DISABLE_ABSOLUTE","features":[365]},{"name":"CM_DISABLE_BITS","features":[365]},{"name":"CM_DISABLE_HARDWARE","features":[365]},{"name":"CM_DISABLE_PERSIST","features":[365]},{"name":"CM_DISABLE_POLITE","features":[365]},{"name":"CM_DISABLE_UI_NOT_OK","features":[365]},{"name":"CM_DRP_ADDRESS","features":[365]},{"name":"CM_DRP_BASE_CONTAINERID","features":[365]},{"name":"CM_DRP_BUSNUMBER","features":[365]},{"name":"CM_DRP_BUSTYPEGUID","features":[365]},{"name":"CM_DRP_CAPABILITIES","features":[365]},{"name":"CM_DRP_CHARACTERISTICS","features":[365]},{"name":"CM_DRP_CLASS","features":[365]},{"name":"CM_DRP_CLASSGUID","features":[365]},{"name":"CM_DRP_COMPATIBLEIDS","features":[365]},{"name":"CM_DRP_CONFIGFLAGS","features":[365]},{"name":"CM_DRP_DEVICEDESC","features":[365]},{"name":"CM_DRP_DEVICE_POWER_DATA","features":[365]},{"name":"CM_DRP_DEVTYPE","features":[365]},{"name":"CM_DRP_DRIVER","features":[365]},{"name":"CM_DRP_ENUMERATOR_NAME","features":[365]},{"name":"CM_DRP_EXCLUSIVE","features":[365]},{"name":"CM_DRP_FRIENDLYNAME","features":[365]},{"name":"CM_DRP_HARDWAREID","features":[365]},{"name":"CM_DRP_INSTALL_STATE","features":[365]},{"name":"CM_DRP_LEGACYBUSTYPE","features":[365]},{"name":"CM_DRP_LOCATION_INFORMATION","features":[365]},{"name":"CM_DRP_LOCATION_PATHS","features":[365]},{"name":"CM_DRP_LOWERFILTERS","features":[365]},{"name":"CM_DRP_MAX","features":[365]},{"name":"CM_DRP_MFG","features":[365]},{"name":"CM_DRP_MIN","features":[365]},{"name":"CM_DRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[365]},{"name":"CM_DRP_REMOVAL_POLICY","features":[365]},{"name":"CM_DRP_REMOVAL_POLICY_HW_DEFAULT","features":[365]},{"name":"CM_DRP_REMOVAL_POLICY_OVERRIDE","features":[365]},{"name":"CM_DRP_SECURITY","features":[365]},{"name":"CM_DRP_SECURITY_SDS","features":[365]},{"name":"CM_DRP_SERVICE","features":[365]},{"name":"CM_DRP_UI_NUMBER","features":[365]},{"name":"CM_DRP_UI_NUMBER_DESC_FORMAT","features":[365]},{"name":"CM_DRP_UNUSED0","features":[365]},{"name":"CM_DRP_UNUSED1","features":[365]},{"name":"CM_DRP_UNUSED2","features":[365]},{"name":"CM_DRP_UPPERFILTERS","features":[365]},{"name":"CM_Delete_Class_Key","features":[365]},{"name":"CM_Delete_Class_Key_Ex","features":[365]},{"name":"CM_Delete_DevNode_Key","features":[365]},{"name":"CM_Delete_DevNode_Key_Ex","features":[365]},{"name":"CM_Delete_Device_Interface_KeyA","features":[365]},{"name":"CM_Delete_Device_Interface_KeyW","features":[365]},{"name":"CM_Delete_Device_Interface_Key_ExA","features":[365]},{"name":"CM_Delete_Device_Interface_Key_ExW","features":[365]},{"name":"CM_Delete_Range","features":[365]},{"name":"CM_Detect_Resource_Conflict","features":[365,305]},{"name":"CM_Detect_Resource_Conflict_Ex","features":[365,305]},{"name":"CM_Disable_DevNode","features":[365]},{"name":"CM_Disable_DevNode_Ex","features":[365]},{"name":"CM_Disconnect_Machine","features":[365]},{"name":"CM_Dup_Range_List","features":[365]},{"name":"CM_ENUMERATE_CLASSES_BITS","features":[365]},{"name":"CM_ENUMERATE_CLASSES_INSTALLER","features":[365]},{"name":"CM_ENUMERATE_CLASSES_INTERFACE","features":[365]},{"name":"CM_ENUMERATE_FLAGS","features":[365]},{"name":"CM_Enable_DevNode","features":[365]},{"name":"CM_Enable_DevNode_Ex","features":[365]},{"name":"CM_Enumerate_Classes","features":[365]},{"name":"CM_Enumerate_Classes_Ex","features":[365]},{"name":"CM_Enumerate_EnumeratorsA","features":[365]},{"name":"CM_Enumerate_EnumeratorsW","features":[365]},{"name":"CM_Enumerate_Enumerators_ExA","features":[365]},{"name":"CM_Enumerate_Enumerators_ExW","features":[365]},{"name":"CM_Find_Range","features":[365]},{"name":"CM_First_Range","features":[365]},{"name":"CM_Free_Log_Conf","features":[365]},{"name":"CM_Free_Log_Conf_Ex","features":[365]},{"name":"CM_Free_Log_Conf_Handle","features":[365]},{"name":"CM_Free_Range_List","features":[365]},{"name":"CM_Free_Res_Des","features":[365]},{"name":"CM_Free_Res_Des_Ex","features":[365]},{"name":"CM_Free_Res_Des_Handle","features":[365]},{"name":"CM_Free_Resource_Conflict_Handle","features":[365]},{"name":"CM_GETIDLIST_DONOTGENERATE","features":[365]},{"name":"CM_GETIDLIST_FILTER_BITS","features":[365]},{"name":"CM_GETIDLIST_FILTER_BUSRELATIONS","features":[365]},{"name":"CM_GETIDLIST_FILTER_CLASS","features":[365]},{"name":"CM_GETIDLIST_FILTER_EJECTRELATIONS","features":[365]},{"name":"CM_GETIDLIST_FILTER_ENUMERATOR","features":[365]},{"name":"CM_GETIDLIST_FILTER_NONE","features":[365]},{"name":"CM_GETIDLIST_FILTER_POWERRELATIONS","features":[365]},{"name":"CM_GETIDLIST_FILTER_PRESENT","features":[365]},{"name":"CM_GETIDLIST_FILTER_REMOVALRELATIONS","features":[365]},{"name":"CM_GETIDLIST_FILTER_SERVICE","features":[365]},{"name":"CM_GETIDLIST_FILTER_TRANSPORTRELATIONS","features":[365]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_ALL_DEVICES","features":[365]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_BITS","features":[365]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_FLAGS","features":[365]},{"name":"CM_GET_DEVICE_INTERFACE_LIST_PRESENT","features":[365]},{"name":"CM_GLOBAL_STATE_CAN_DO_UI","features":[365]},{"name":"CM_GLOBAL_STATE_DETECTION_PENDING","features":[365]},{"name":"CM_GLOBAL_STATE_ON_BIG_STACK","features":[365]},{"name":"CM_GLOBAL_STATE_REBOOT_REQUIRED","features":[365]},{"name":"CM_GLOBAL_STATE_SERVICES_AVAILABLE","features":[365]},{"name":"CM_GLOBAL_STATE_SHUTTING_DOWN","features":[365]},{"name":"CM_Get_Child","features":[365]},{"name":"CM_Get_Child_Ex","features":[365]},{"name":"CM_Get_Class_Key_NameA","features":[365]},{"name":"CM_Get_Class_Key_NameW","features":[365]},{"name":"CM_Get_Class_Key_Name_ExA","features":[365]},{"name":"CM_Get_Class_Key_Name_ExW","features":[365]},{"name":"CM_Get_Class_NameA","features":[365]},{"name":"CM_Get_Class_NameW","features":[365]},{"name":"CM_Get_Class_Name_ExA","features":[365]},{"name":"CM_Get_Class_Name_ExW","features":[365]},{"name":"CM_Get_Class_PropertyW","features":[365,303]},{"name":"CM_Get_Class_Property_ExW","features":[365,303]},{"name":"CM_Get_Class_Property_Keys","features":[365,303]},{"name":"CM_Get_Class_Property_Keys_Ex","features":[365,303]},{"name":"CM_Get_Class_Registry_PropertyA","features":[365]},{"name":"CM_Get_Class_Registry_PropertyW","features":[365]},{"name":"CM_Get_Depth","features":[365]},{"name":"CM_Get_Depth_Ex","features":[365]},{"name":"CM_Get_DevNode_Custom_PropertyA","features":[365]},{"name":"CM_Get_DevNode_Custom_PropertyW","features":[365]},{"name":"CM_Get_DevNode_Custom_Property_ExA","features":[365]},{"name":"CM_Get_DevNode_Custom_Property_ExW","features":[365]},{"name":"CM_Get_DevNode_PropertyW","features":[365,303]},{"name":"CM_Get_DevNode_Property_ExW","features":[365,303]},{"name":"CM_Get_DevNode_Property_Keys","features":[365,303]},{"name":"CM_Get_DevNode_Property_Keys_Ex","features":[365,303]},{"name":"CM_Get_DevNode_Registry_PropertyA","features":[365]},{"name":"CM_Get_DevNode_Registry_PropertyW","features":[365]},{"name":"CM_Get_DevNode_Registry_Property_ExA","features":[365]},{"name":"CM_Get_DevNode_Registry_Property_ExW","features":[365]},{"name":"CM_Get_DevNode_Status","features":[365]},{"name":"CM_Get_DevNode_Status_Ex","features":[365]},{"name":"CM_Get_Device_IDA","features":[365]},{"name":"CM_Get_Device_IDW","features":[365]},{"name":"CM_Get_Device_ID_ExA","features":[365]},{"name":"CM_Get_Device_ID_ExW","features":[365]},{"name":"CM_Get_Device_ID_ListA","features":[365]},{"name":"CM_Get_Device_ID_ListW","features":[365]},{"name":"CM_Get_Device_ID_List_ExA","features":[365]},{"name":"CM_Get_Device_ID_List_ExW","features":[365]},{"name":"CM_Get_Device_ID_List_SizeA","features":[365]},{"name":"CM_Get_Device_ID_List_SizeW","features":[365]},{"name":"CM_Get_Device_ID_List_Size_ExA","features":[365]},{"name":"CM_Get_Device_ID_List_Size_ExW","features":[365]},{"name":"CM_Get_Device_ID_Size","features":[365]},{"name":"CM_Get_Device_ID_Size_Ex","features":[365]},{"name":"CM_Get_Device_Interface_AliasA","features":[365]},{"name":"CM_Get_Device_Interface_AliasW","features":[365]},{"name":"CM_Get_Device_Interface_Alias_ExA","features":[365]},{"name":"CM_Get_Device_Interface_Alias_ExW","features":[365]},{"name":"CM_Get_Device_Interface_ListA","features":[365]},{"name":"CM_Get_Device_Interface_ListW","features":[365]},{"name":"CM_Get_Device_Interface_List_ExA","features":[365]},{"name":"CM_Get_Device_Interface_List_ExW","features":[365]},{"name":"CM_Get_Device_Interface_List_SizeA","features":[365]},{"name":"CM_Get_Device_Interface_List_SizeW","features":[365]},{"name":"CM_Get_Device_Interface_List_Size_ExA","features":[365]},{"name":"CM_Get_Device_Interface_List_Size_ExW","features":[365]},{"name":"CM_Get_Device_Interface_PropertyW","features":[365,303]},{"name":"CM_Get_Device_Interface_Property_ExW","features":[365,303]},{"name":"CM_Get_Device_Interface_Property_KeysW","features":[365,303]},{"name":"CM_Get_Device_Interface_Property_Keys_ExW","features":[365,303]},{"name":"CM_Get_First_Log_Conf","features":[365]},{"name":"CM_Get_First_Log_Conf_Ex","features":[365]},{"name":"CM_Get_Global_State","features":[365]},{"name":"CM_Get_Global_State_Ex","features":[365]},{"name":"CM_Get_HW_Prof_FlagsA","features":[365]},{"name":"CM_Get_HW_Prof_FlagsW","features":[365]},{"name":"CM_Get_HW_Prof_Flags_ExA","features":[365]},{"name":"CM_Get_HW_Prof_Flags_ExW","features":[365]},{"name":"CM_Get_Hardware_Profile_InfoA","features":[365]},{"name":"CM_Get_Hardware_Profile_InfoW","features":[365]},{"name":"CM_Get_Hardware_Profile_Info_ExA","features":[365]},{"name":"CM_Get_Hardware_Profile_Info_ExW","features":[365]},{"name":"CM_Get_Log_Conf_Priority","features":[365]},{"name":"CM_Get_Log_Conf_Priority_Ex","features":[365]},{"name":"CM_Get_Next_Log_Conf","features":[365]},{"name":"CM_Get_Next_Log_Conf_Ex","features":[365]},{"name":"CM_Get_Next_Res_Des","features":[365]},{"name":"CM_Get_Next_Res_Des_Ex","features":[365]},{"name":"CM_Get_Parent","features":[365]},{"name":"CM_Get_Parent_Ex","features":[365]},{"name":"CM_Get_Res_Des_Data","features":[365]},{"name":"CM_Get_Res_Des_Data_Ex","features":[365]},{"name":"CM_Get_Res_Des_Data_Size","features":[365]},{"name":"CM_Get_Res_Des_Data_Size_Ex","features":[365]},{"name":"CM_Get_Resource_Conflict_Count","features":[365]},{"name":"CM_Get_Resource_Conflict_DetailsA","features":[365]},{"name":"CM_Get_Resource_Conflict_DetailsW","features":[365]},{"name":"CM_Get_Sibling","features":[365]},{"name":"CM_Get_Sibling_Ex","features":[365]},{"name":"CM_Get_Version","features":[365]},{"name":"CM_Get_Version_Ex","features":[365]},{"name":"CM_HWPI_DOCKED","features":[365]},{"name":"CM_HWPI_NOT_DOCKABLE","features":[365]},{"name":"CM_HWPI_UNDOCKED","features":[365]},{"name":"CM_INSTALL_STATE","features":[365]},{"name":"CM_INSTALL_STATE_FAILED_INSTALL","features":[365]},{"name":"CM_INSTALL_STATE_FINISH_INSTALL","features":[365]},{"name":"CM_INSTALL_STATE_INSTALLED","features":[365]},{"name":"CM_INSTALL_STATE_NEEDS_REINSTALL","features":[365]},{"name":"CM_Intersect_Range_List","features":[365]},{"name":"CM_Invert_Range_List","features":[365]},{"name":"CM_Is_Dock_Station_Present","features":[365,305]},{"name":"CM_Is_Dock_Station_Present_Ex","features":[365,305]},{"name":"CM_Is_Version_Available","features":[365,305]},{"name":"CM_Is_Version_Available_Ex","features":[365,305]},{"name":"CM_LOCATE_DEVNODE_BITS","features":[365]},{"name":"CM_LOCATE_DEVNODE_CANCELREMOVE","features":[365]},{"name":"CM_LOCATE_DEVNODE_FLAGS","features":[365]},{"name":"CM_LOCATE_DEVNODE_NORMAL","features":[365]},{"name":"CM_LOCATE_DEVNODE_NOVALIDATION","features":[365]},{"name":"CM_LOCATE_DEVNODE_PHANTOM","features":[365]},{"name":"CM_LOG_CONF","features":[365]},{"name":"CM_Locate_DevNodeA","features":[365]},{"name":"CM_Locate_DevNodeW","features":[365]},{"name":"CM_Locate_DevNode_ExA","features":[365]},{"name":"CM_Locate_DevNode_ExW","features":[365]},{"name":"CM_MapCrToWin32Err","features":[365]},{"name":"CM_Merge_Range_List","features":[365]},{"name":"CM_Modify_Res_Des","features":[365]},{"name":"CM_Modify_Res_Des_Ex","features":[365]},{"name":"CM_Move_DevNode","features":[365]},{"name":"CM_Move_DevNode_Ex","features":[365]},{"name":"CM_NAME_ATTRIBUTE_NAME_RETRIEVED_FROM_DEVICE","features":[365]},{"name":"CM_NAME_ATTRIBUTE_USER_ASSIGNED_NAME","features":[365]},{"name":"CM_NOTIFY_ACTION","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICECUSTOMEVENT","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEENUMERATED","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCEREMOVED","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEINSTANCESTARTED","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEARRIVAL","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEINTERFACEREMOVAL","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVE","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEQUERYREMOVEFAILED","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVECOMPLETE","features":[365]},{"name":"CM_NOTIFY_ACTION_DEVICEREMOVEPENDING","features":[365]},{"name":"CM_NOTIFY_ACTION_MAX","features":[365]},{"name":"CM_NOTIFY_EVENT_DATA","features":[365]},{"name":"CM_NOTIFY_FILTER","features":[365,305]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_DEVICE_INSTANCES","features":[365]},{"name":"CM_NOTIFY_FILTER_FLAG_ALL_INTERFACE_CLASSES","features":[365]},{"name":"CM_NOTIFY_FILTER_TYPE","features":[365]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEHANDLE","features":[365]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINSTANCE","features":[365]},{"name":"CM_NOTIFY_FILTER_TYPE_DEVICEINTERFACE","features":[365]},{"name":"CM_NOTIFY_FILTER_TYPE_MAX","features":[365]},{"name":"CM_Next_Range","features":[365]},{"name":"CM_OPEN_CLASS_KEY_BITS","features":[365]},{"name":"CM_OPEN_CLASS_KEY_INSTALLER","features":[365]},{"name":"CM_OPEN_CLASS_KEY_INTERFACE","features":[365]},{"name":"CM_Open_Class_KeyA","features":[365,366]},{"name":"CM_Open_Class_KeyW","features":[365,366]},{"name":"CM_Open_Class_Key_ExA","features":[365,366]},{"name":"CM_Open_Class_Key_ExW","features":[365,366]},{"name":"CM_Open_DevNode_Key","features":[365,366]},{"name":"CM_Open_DevNode_Key_Ex","features":[365,366]},{"name":"CM_Open_Device_Interface_KeyA","features":[365,366]},{"name":"CM_Open_Device_Interface_KeyW","features":[365,366]},{"name":"CM_Open_Device_Interface_Key_ExA","features":[365,366]},{"name":"CM_Open_Device_Interface_Key_ExW","features":[365,366]},{"name":"CM_PROB","features":[365]},{"name":"CM_PROB_BIOS_TABLE","features":[365]},{"name":"CM_PROB_BOOT_CONFIG_CONFLICT","features":[365]},{"name":"CM_PROB_CANT_SHARE_IRQ","features":[365]},{"name":"CM_PROB_CONSOLE_LOCKED","features":[365]},{"name":"CM_PROB_DEVICE_NOT_THERE","features":[365]},{"name":"CM_PROB_DEVICE_RESET","features":[365]},{"name":"CM_PROB_DEVLOADER_FAILED","features":[365]},{"name":"CM_PROB_DEVLOADER_NOT_FOUND","features":[365]},{"name":"CM_PROB_DEVLOADER_NOT_READY","features":[365]},{"name":"CM_PROB_DISABLED","features":[365]},{"name":"CM_PROB_DISABLED_SERVICE","features":[365]},{"name":"CM_PROB_DRIVER_BLOCKED","features":[365]},{"name":"CM_PROB_DRIVER_FAILED_LOAD","features":[365]},{"name":"CM_PROB_DRIVER_FAILED_PRIOR_UNLOAD","features":[365]},{"name":"CM_PROB_DRIVER_SERVICE_KEY_INVALID","features":[365]},{"name":"CM_PROB_DUPLICATE_DEVICE","features":[365]},{"name":"CM_PROB_ENTRY_IS_WRONG_TYPE","features":[365]},{"name":"CM_PROB_FAILED_ADD","features":[365]},{"name":"CM_PROB_FAILED_DRIVER_ENTRY","features":[365]},{"name":"CM_PROB_FAILED_FILTER","features":[365]},{"name":"CM_PROB_FAILED_INSTALL","features":[365]},{"name":"CM_PROB_FAILED_POST_START","features":[365]},{"name":"CM_PROB_FAILED_START","features":[365]},{"name":"CM_PROB_GUEST_ASSIGNMENT_FAILED","features":[365]},{"name":"CM_PROB_HALTED","features":[365]},{"name":"CM_PROB_HARDWARE_DISABLED","features":[365]},{"name":"CM_PROB_HELD_FOR_EJECT","features":[365]},{"name":"CM_PROB_INVALID_DATA","features":[365]},{"name":"CM_PROB_IRQ_TRANSLATION_FAILED","features":[365]},{"name":"CM_PROB_LACKED_ARBITRATOR","features":[365]},{"name":"CM_PROB_LEGACY_SERVICE_NO_DEVICES","features":[365]},{"name":"CM_PROB_LIAR","features":[365]},{"name":"CM_PROB_MOVED","features":[365]},{"name":"CM_PROB_NEED_CLASS_CONFIG","features":[365]},{"name":"CM_PROB_NEED_RESTART","features":[365]},{"name":"CM_PROB_NORMAL_CONFLICT","features":[365]},{"name":"CM_PROB_NOT_CONFIGURED","features":[365]},{"name":"CM_PROB_NOT_VERIFIED","features":[365]},{"name":"CM_PROB_NO_SOFTCONFIG","features":[365]},{"name":"CM_PROB_NO_VALID_LOG_CONF","features":[365]},{"name":"CM_PROB_OUT_OF_MEMORY","features":[365]},{"name":"CM_PROB_PARTIAL_LOG_CONF","features":[365]},{"name":"CM_PROB_PHANTOM","features":[365]},{"name":"CM_PROB_REENUMERATION","features":[365]},{"name":"CM_PROB_REGISTRY","features":[365]},{"name":"CM_PROB_REGISTRY_TOO_LARGE","features":[365]},{"name":"CM_PROB_REINSTALL","features":[365]},{"name":"CM_PROB_SETPROPERTIES_FAILED","features":[365]},{"name":"CM_PROB_SYSTEM_SHUTDOWN","features":[365]},{"name":"CM_PROB_TOO_EARLY","features":[365]},{"name":"CM_PROB_TRANSLATION_FAILED","features":[365]},{"name":"CM_PROB_UNKNOWN_RESOURCE","features":[365]},{"name":"CM_PROB_UNSIGNED_DRIVER","features":[365]},{"name":"CM_PROB_USED_BY_DEBUGGER","features":[365]},{"name":"CM_PROB_VXDLDR","features":[365]},{"name":"CM_PROB_WAITING_ON_DEPENDENCY","features":[365]},{"name":"CM_PROB_WILL_BE_REMOVED","features":[365]},{"name":"CM_QUERY_ARBITRATOR_BITS","features":[365]},{"name":"CM_QUERY_ARBITRATOR_RAW","features":[365]},{"name":"CM_QUERY_ARBITRATOR_TRANSLATED","features":[365]},{"name":"CM_QUERY_REMOVE_UI_NOT_OK","features":[365]},{"name":"CM_QUERY_REMOVE_UI_OK","features":[365]},{"name":"CM_Query_And_Remove_SubTreeA","features":[365]},{"name":"CM_Query_And_Remove_SubTreeW","features":[365]},{"name":"CM_Query_And_Remove_SubTree_ExA","features":[365]},{"name":"CM_Query_And_Remove_SubTree_ExW","features":[365]},{"name":"CM_Query_Arbitrator_Free_Data","features":[365]},{"name":"CM_Query_Arbitrator_Free_Data_Ex","features":[365]},{"name":"CM_Query_Arbitrator_Free_Size","features":[365]},{"name":"CM_Query_Arbitrator_Free_Size_Ex","features":[365]},{"name":"CM_Query_Remove_SubTree","features":[365]},{"name":"CM_Query_Remove_SubTree_Ex","features":[365]},{"name":"CM_Query_Resource_Conflict_List","features":[365]},{"name":"CM_REENUMERATE_ASYNCHRONOUS","features":[365]},{"name":"CM_REENUMERATE_BITS","features":[365]},{"name":"CM_REENUMERATE_FLAGS","features":[365]},{"name":"CM_REENUMERATE_NORMAL","features":[365]},{"name":"CM_REENUMERATE_RETRY_INSTALLATION","features":[365]},{"name":"CM_REENUMERATE_SYNCHRONOUS","features":[365]},{"name":"CM_REGISTER_DEVICE_DRIVER_BITS","features":[365]},{"name":"CM_REGISTER_DEVICE_DRIVER_DISABLEABLE","features":[365]},{"name":"CM_REGISTER_DEVICE_DRIVER_REMOVABLE","features":[365]},{"name":"CM_REGISTER_DEVICE_DRIVER_STATIC","features":[365]},{"name":"CM_REGISTRY_BITS","features":[365]},{"name":"CM_REGISTRY_CONFIG","features":[365]},{"name":"CM_REGISTRY_HARDWARE","features":[365]},{"name":"CM_REGISTRY_SOFTWARE","features":[365]},{"name":"CM_REGISTRY_USER","features":[365]},{"name":"CM_REMOVAL_POLICY","features":[365]},{"name":"CM_REMOVAL_POLICY_EXPECT_NO_REMOVAL","features":[365]},{"name":"CM_REMOVAL_POLICY_EXPECT_ORDERLY_REMOVAL","features":[365]},{"name":"CM_REMOVAL_POLICY_EXPECT_SURPRISE_REMOVAL","features":[365]},{"name":"CM_REMOVE_BITS","features":[365]},{"name":"CM_REMOVE_DISABLE","features":[365]},{"name":"CM_REMOVE_NO_RESTART","features":[365]},{"name":"CM_REMOVE_UI_NOT_OK","features":[365]},{"name":"CM_REMOVE_UI_OK","features":[365]},{"name":"CM_RESDES_WIDTH_32","features":[365]},{"name":"CM_RESDES_WIDTH_64","features":[365]},{"name":"CM_RESDES_WIDTH_BITS","features":[365]},{"name":"CM_RESDES_WIDTH_DEFAULT","features":[365]},{"name":"CM_RESTYPE","features":[365]},{"name":"CM_Reenumerate_DevNode","features":[365]},{"name":"CM_Reenumerate_DevNode_Ex","features":[365]},{"name":"CM_Register_Device_Driver","features":[365]},{"name":"CM_Register_Device_Driver_Ex","features":[365]},{"name":"CM_Register_Device_InterfaceA","features":[365]},{"name":"CM_Register_Device_InterfaceW","features":[365]},{"name":"CM_Register_Device_Interface_ExA","features":[365]},{"name":"CM_Register_Device_Interface_ExW","features":[365]},{"name":"CM_Register_Notification","features":[365,305]},{"name":"CM_Remove_SubTree","features":[365]},{"name":"CM_Remove_SubTree_Ex","features":[365]},{"name":"CM_Request_Device_EjectA","features":[365]},{"name":"CM_Request_Device_EjectW","features":[365]},{"name":"CM_Request_Device_Eject_ExA","features":[365]},{"name":"CM_Request_Device_Eject_ExW","features":[365]},{"name":"CM_Request_Eject_PC","features":[365]},{"name":"CM_Request_Eject_PC_Ex","features":[365]},{"name":"CM_Run_Detection","features":[365]},{"name":"CM_Run_Detection_Ex","features":[365]},{"name":"CM_SETUP_BITS","features":[365]},{"name":"CM_SETUP_DEVINST_CONFIG","features":[365]},{"name":"CM_SETUP_DEVINST_CONFIG_CLASS","features":[365]},{"name":"CM_SETUP_DEVINST_CONFIG_EXTENSIONS","features":[365]},{"name":"CM_SETUP_DEVINST_CONFIG_RESET","features":[365]},{"name":"CM_SETUP_DEVINST_READY","features":[365]},{"name":"CM_SETUP_DEVINST_RESET","features":[365]},{"name":"CM_SETUP_DEVNODE_CONFIG","features":[365]},{"name":"CM_SETUP_DEVNODE_CONFIG_CLASS","features":[365]},{"name":"CM_SETUP_DEVNODE_CONFIG_EXTENSIONS","features":[365]},{"name":"CM_SETUP_DEVNODE_CONFIG_RESET","features":[365]},{"name":"CM_SETUP_DEVNODE_READY","features":[365]},{"name":"CM_SETUP_DEVNODE_RESET","features":[365]},{"name":"CM_SETUP_DOWNLOAD","features":[365]},{"name":"CM_SETUP_PROP_CHANGE","features":[365]},{"name":"CM_SETUP_WRITE_LOG_CONFS","features":[365]},{"name":"CM_SET_DEVINST_PROBLEM_BITS","features":[365]},{"name":"CM_SET_DEVINST_PROBLEM_NORMAL","features":[365]},{"name":"CM_SET_DEVINST_PROBLEM_OVERRIDE","features":[365]},{"name":"CM_SET_DEVNODE_PROBLEM_BITS","features":[365]},{"name":"CM_SET_DEVNODE_PROBLEM_NORMAL","features":[365]},{"name":"CM_SET_DEVNODE_PROBLEM_OVERRIDE","features":[365]},{"name":"CM_SET_HW_PROF_FLAGS_BITS","features":[365]},{"name":"CM_SET_HW_PROF_FLAGS_UI_NOT_OK","features":[365]},{"name":"CM_Set_Class_PropertyW","features":[365,303]},{"name":"CM_Set_Class_Property_ExW","features":[365,303]},{"name":"CM_Set_Class_Registry_PropertyA","features":[365]},{"name":"CM_Set_Class_Registry_PropertyW","features":[365]},{"name":"CM_Set_DevNode_Problem","features":[365]},{"name":"CM_Set_DevNode_Problem_Ex","features":[365]},{"name":"CM_Set_DevNode_PropertyW","features":[365,303]},{"name":"CM_Set_DevNode_Property_ExW","features":[365,303]},{"name":"CM_Set_DevNode_Registry_PropertyA","features":[365]},{"name":"CM_Set_DevNode_Registry_PropertyW","features":[365]},{"name":"CM_Set_DevNode_Registry_Property_ExA","features":[365]},{"name":"CM_Set_DevNode_Registry_Property_ExW","features":[365]},{"name":"CM_Set_Device_Interface_PropertyW","features":[365,303]},{"name":"CM_Set_Device_Interface_Property_ExW","features":[365,303]},{"name":"CM_Set_HW_Prof","features":[365]},{"name":"CM_Set_HW_Prof_Ex","features":[365]},{"name":"CM_Set_HW_Prof_FlagsA","features":[365]},{"name":"CM_Set_HW_Prof_FlagsW","features":[365]},{"name":"CM_Set_HW_Prof_Flags_ExA","features":[365]},{"name":"CM_Set_HW_Prof_Flags_ExW","features":[365]},{"name":"CM_Setup_DevNode","features":[365]},{"name":"CM_Setup_DevNode_Ex","features":[365]},{"name":"CM_Test_Range_Available","features":[365]},{"name":"CM_Uninstall_DevNode","features":[365]},{"name":"CM_Uninstall_DevNode_Ex","features":[365]},{"name":"CM_Unregister_Device_InterfaceA","features":[365]},{"name":"CM_Unregister_Device_InterfaceW","features":[365]},{"name":"CM_Unregister_Device_Interface_ExA","features":[365]},{"name":"CM_Unregister_Device_Interface_ExW","features":[365]},{"name":"CM_Unregister_Notification","features":[365]},{"name":"COINSTALLER_CONTEXT_DATA","features":[365,305]},{"name":"COINSTALLER_CONTEXT_DATA","features":[365,305]},{"name":"CONFIGFLAG_BOOT_DEVICE","features":[365]},{"name":"CONFIGFLAG_CANTSTOPACHILD","features":[365]},{"name":"CONFIGFLAG_DISABLED","features":[365]},{"name":"CONFIGFLAG_FAILEDINSTALL","features":[365]},{"name":"CONFIGFLAG_FINISHINSTALL_ACTION","features":[365]},{"name":"CONFIGFLAG_FINISHINSTALL_UI","features":[365]},{"name":"CONFIGFLAG_FINISH_INSTALL","features":[365]},{"name":"CONFIGFLAG_IGNORE_BOOT_LC","features":[365]},{"name":"CONFIGFLAG_MANUAL_INSTALL","features":[365]},{"name":"CONFIGFLAG_NEEDS_CLASS_CONFIG","features":[365]},{"name":"CONFIGFLAG_NEEDS_FORCED_CONFIG","features":[365]},{"name":"CONFIGFLAG_NETBOOT_CARD","features":[365]},{"name":"CONFIGFLAG_NET_BOOT","features":[365]},{"name":"CONFIGFLAG_NOREMOVEEXIT","features":[365]},{"name":"CONFIGFLAG_OKREMOVEROM","features":[365]},{"name":"CONFIGFLAG_PARTIAL_LOG_CONF","features":[365]},{"name":"CONFIGFLAG_REINSTALL","features":[365]},{"name":"CONFIGFLAG_REMOVED","features":[365]},{"name":"CONFIGFLAG_SUPPRESS_SURPRISE","features":[365]},{"name":"CONFIGFLAG_VERIFY_HARDWARE","features":[365]},{"name":"CONFIGMG_VERSION","features":[365]},{"name":"CONFIGRET","features":[365]},{"name":"CONFLICT_DETAILS_A","features":[365]},{"name":"CONFLICT_DETAILS_W","features":[365]},{"name":"CONNECTION_DES","features":[365]},{"name":"CONNECTION_RESOURCE","features":[365]},{"name":"COPYFLG_FORCE_FILE_IN_USE","features":[365]},{"name":"COPYFLG_IN_USE_TRY_RENAME","features":[365]},{"name":"COPYFLG_NODECOMP","features":[365]},{"name":"COPYFLG_NOPRUNE","features":[365]},{"name":"COPYFLG_NOSKIP","features":[365]},{"name":"COPYFLG_NOVERSIONCHECK","features":[365]},{"name":"COPYFLG_NO_OVERWRITE","features":[365]},{"name":"COPYFLG_NO_VERSION_DIALOG","features":[365]},{"name":"COPYFLG_OVERWRITE_OLDER_ONLY","features":[365]},{"name":"COPYFLG_PROTECTED_WINDOWS_DRIVER_FILE","features":[365]},{"name":"COPYFLG_REPLACEONLY","features":[365]},{"name":"COPYFLG_REPLACE_BOOT_FILE","features":[365]},{"name":"COPYFLG_WARN_IF_SKIP","features":[365]},{"name":"CR_ACCESS_DENIED","features":[365]},{"name":"CR_ALREADY_SUCH_DEVINST","features":[365]},{"name":"CR_ALREADY_SUCH_DEVNODE","features":[365]},{"name":"CR_APM_VETOED","features":[365]},{"name":"CR_BUFFER_SMALL","features":[365]},{"name":"CR_CALL_NOT_IMPLEMENTED","features":[365]},{"name":"CR_CANT_SHARE_IRQ","features":[365]},{"name":"CR_CREATE_BLOCKED","features":[365]},{"name":"CR_DEFAULT","features":[365]},{"name":"CR_DEVICE_INTERFACE_ACTIVE","features":[365]},{"name":"CR_DEVICE_NOT_THERE","features":[365]},{"name":"CR_DEVINST_HAS_REQS","features":[365]},{"name":"CR_DEVLOADER_NOT_READY","features":[365]},{"name":"CR_DEVNODE_HAS_REQS","features":[365]},{"name":"CR_DLVXD_NOT_FOUND","features":[365]},{"name":"CR_FAILURE","features":[365]},{"name":"CR_FREE_RESOURCES","features":[365]},{"name":"CR_INVALID_API","features":[365]},{"name":"CR_INVALID_ARBITRATOR","features":[365]},{"name":"CR_INVALID_CONFLICT_LIST","features":[365]},{"name":"CR_INVALID_DATA","features":[365]},{"name":"CR_INVALID_DEVICE_ID","features":[365]},{"name":"CR_INVALID_DEVINST","features":[365]},{"name":"CR_INVALID_DEVNODE","features":[365]},{"name":"CR_INVALID_FLAG","features":[365]},{"name":"CR_INVALID_INDEX","features":[365]},{"name":"CR_INVALID_LOAD_TYPE","features":[365]},{"name":"CR_INVALID_LOG_CONF","features":[365]},{"name":"CR_INVALID_MACHINENAME","features":[365]},{"name":"CR_INVALID_NODELIST","features":[365]},{"name":"CR_INVALID_POINTER","features":[365]},{"name":"CR_INVALID_PRIORITY","features":[365]},{"name":"CR_INVALID_PROPERTY","features":[365]},{"name":"CR_INVALID_RANGE","features":[365]},{"name":"CR_INVALID_RANGE_LIST","features":[365]},{"name":"CR_INVALID_REFERENCE_STRING","features":[365]},{"name":"CR_INVALID_RESOURCEID","features":[365]},{"name":"CR_INVALID_RES_DES","features":[365]},{"name":"CR_INVALID_STRUCTURE_SIZE","features":[365]},{"name":"CR_MACHINE_UNAVAILABLE","features":[365]},{"name":"CR_NEED_RESTART","features":[365]},{"name":"CR_NOT_DISABLEABLE","features":[365]},{"name":"CR_NOT_SYSTEM_VM","features":[365]},{"name":"CR_NO_ARBITRATOR","features":[365]},{"name":"CR_NO_CM_SERVICES","features":[365]},{"name":"CR_NO_DEPENDENT","features":[365]},{"name":"CR_NO_MORE_HW_PROFILES","features":[365]},{"name":"CR_NO_MORE_LOG_CONF","features":[365]},{"name":"CR_NO_MORE_RES_DES","features":[365]},{"name":"CR_NO_REGISTRY_HANDLE","features":[365]},{"name":"CR_NO_SUCH_DEVICE_INTERFACE","features":[365]},{"name":"CR_NO_SUCH_DEVINST","features":[365]},{"name":"CR_NO_SUCH_DEVNODE","features":[365]},{"name":"CR_NO_SUCH_LOGICAL_DEV","features":[365]},{"name":"CR_NO_SUCH_REGISTRY_KEY","features":[365]},{"name":"CR_NO_SUCH_VALUE","features":[365]},{"name":"CR_OUT_OF_MEMORY","features":[365]},{"name":"CR_QUERY_VETOED","features":[365]},{"name":"CR_REGISTRY_ERROR","features":[365]},{"name":"CR_REMOTE_COMM_FAILURE","features":[365]},{"name":"CR_REMOVE_VETOED","features":[365]},{"name":"CR_SAME_RESOURCES","features":[365]},{"name":"CR_SUCCESS","features":[365]},{"name":"CR_WRONG_TYPE","features":[365]},{"name":"CS_DES","features":[365]},{"name":"CS_RESOURCE","features":[365]},{"name":"DD_FLAGS","features":[365]},{"name":"DELFLG_IN_USE","features":[365]},{"name":"DELFLG_IN_USE1","features":[365]},{"name":"DEVPRIVATE_DES","features":[365]},{"name":"DEVPRIVATE_RANGE","features":[365]},{"name":"DEVPRIVATE_RESOURCE","features":[365]},{"name":"DIBCI_NODISPLAYCLASS","features":[365]},{"name":"DIBCI_NOINSTALLCLASS","features":[365]},{"name":"DICD_GENERATE_ID","features":[365]},{"name":"DICD_INHERIT_CLASSDRVS","features":[365]},{"name":"DICLASSPROP_INSTALLER","features":[365]},{"name":"DICLASSPROP_INTERFACE","features":[365]},{"name":"DICS_DISABLE","features":[365]},{"name":"DICS_ENABLE","features":[365]},{"name":"DICS_FLAG_CONFIGGENERAL","features":[365]},{"name":"DICS_FLAG_CONFIGSPECIFIC","features":[365]},{"name":"DICS_FLAG_GLOBAL","features":[365]},{"name":"DICS_PROPCHANGE","features":[365]},{"name":"DICS_START","features":[365]},{"name":"DICS_STOP","features":[365]},{"name":"DICUSTOMDEVPROP_MERGE_MULTISZ","features":[365]},{"name":"DIF_ADDPROPERTYPAGE_ADVANCED","features":[365]},{"name":"DIF_ADDPROPERTYPAGE_BASIC","features":[365]},{"name":"DIF_ADDREMOTEPROPERTYPAGE_ADVANCED","features":[365]},{"name":"DIF_ALLOW_INSTALL","features":[365]},{"name":"DIF_ASSIGNRESOURCES","features":[365]},{"name":"DIF_CALCDISKSPACE","features":[365]},{"name":"DIF_DESTROYPRIVATEDATA","features":[365]},{"name":"DIF_DESTROYWIZARDDATA","features":[365]},{"name":"DIF_DETECT","features":[365]},{"name":"DIF_DETECTCANCEL","features":[365]},{"name":"DIF_DETECTVERIFY","features":[365]},{"name":"DIF_ENABLECLASS","features":[365]},{"name":"DIF_FINISHINSTALL_ACTION","features":[365]},{"name":"DIF_FIRSTTIMESETUP","features":[365]},{"name":"DIF_FOUNDDEVICE","features":[365]},{"name":"DIF_INSTALLCLASSDRIVERS","features":[365]},{"name":"DIF_INSTALLDEVICE","features":[365]},{"name":"DIF_INSTALLDEVICEFILES","features":[365]},{"name":"DIF_INSTALLINTERFACES","features":[365]},{"name":"DIF_INSTALLWIZARD","features":[365]},{"name":"DIF_MOVEDEVICE","features":[365]},{"name":"DIF_NEWDEVICEWIZARD_FINISHINSTALL","features":[365]},{"name":"DIF_NEWDEVICEWIZARD_POSTANALYZE","features":[365]},{"name":"DIF_NEWDEVICEWIZARD_PREANALYZE","features":[365]},{"name":"DIF_NEWDEVICEWIZARD_PRESELECT","features":[365]},{"name":"DIF_NEWDEVICEWIZARD_SELECT","features":[365]},{"name":"DIF_POWERMESSAGEWAKE","features":[365]},{"name":"DIF_PROPERTIES","features":[365]},{"name":"DIF_PROPERTYCHANGE","features":[365]},{"name":"DIF_REGISTERDEVICE","features":[365]},{"name":"DIF_REGISTER_COINSTALLERS","features":[365]},{"name":"DIF_REMOVE","features":[365]},{"name":"DIF_RESERVED1","features":[365]},{"name":"DIF_RESERVED2","features":[365]},{"name":"DIF_SELECTBESTCOMPATDRV","features":[365]},{"name":"DIF_SELECTCLASSDRIVERS","features":[365]},{"name":"DIF_SELECTDEVICE","features":[365]},{"name":"DIF_TROUBLESHOOTER","features":[365]},{"name":"DIF_UNREMOVE","features":[365]},{"name":"DIF_UNUSED1","features":[365]},{"name":"DIF_UPDATEDRIVER_UI","features":[365]},{"name":"DIF_VALIDATECLASSDRIVERS","features":[365]},{"name":"DIF_VALIDATEDRIVER","features":[365]},{"name":"DIGCDP_FLAG_ADVANCED","features":[365]},{"name":"DIGCDP_FLAG_BASIC","features":[365]},{"name":"DIGCDP_FLAG_REMOTE_ADVANCED","features":[365]},{"name":"DIGCDP_FLAG_REMOTE_BASIC","features":[365]},{"name":"DIGCF_ALLCLASSES","features":[365]},{"name":"DIGCF_DEFAULT","features":[365]},{"name":"DIGCF_DEVICEINTERFACE","features":[365]},{"name":"DIGCF_INTERFACEDEVICE","features":[365]},{"name":"DIGCF_PRESENT","features":[365]},{"name":"DIGCF_PROFILE","features":[365]},{"name":"DIIDFLAG_BITS","features":[365]},{"name":"DIIDFLAG_INSTALLCOPYINFDRIVERS","features":[365]},{"name":"DIIDFLAG_INSTALLNULLDRIVER","features":[365]},{"name":"DIIDFLAG_NOFINISHINSTALLUI","features":[365]},{"name":"DIIDFLAG_SHOWSEARCHUI","features":[365]},{"name":"DIINSTALLDEVICE_FLAGS","features":[365]},{"name":"DIINSTALLDRIVER_FLAGS","features":[365]},{"name":"DIIRFLAG_BITS","features":[365]},{"name":"DIIRFLAG_FORCE_INF","features":[365]},{"name":"DIIRFLAG_HOTPATCH","features":[365]},{"name":"DIIRFLAG_HW_USING_THE_INF","features":[365]},{"name":"DIIRFLAG_INF_ALREADY_COPIED","features":[365]},{"name":"DIIRFLAG_INSTALL_AS_SET","features":[365]},{"name":"DIIRFLAG_NOBACKUP","features":[365]},{"name":"DIIRFLAG_PRE_CONFIGURE_INF","features":[365]},{"name":"DIIRFLAG_SYSTEM_BITS","features":[365]},{"name":"DIOCR_INSTALLER","features":[365]},{"name":"DIOCR_INTERFACE","features":[365]},{"name":"DIODI_NO_ADD","features":[365]},{"name":"DIOD_CANCEL_REMOVE","features":[365]},{"name":"DIOD_INHERIT_CLASSDRVS","features":[365]},{"name":"DIREG_BOTH","features":[365]},{"name":"DIREG_DEV","features":[365]},{"name":"DIREG_DRV","features":[365]},{"name":"DIRID_ABSOLUTE","features":[365]},{"name":"DIRID_ABSOLUTE_16BIT","features":[365]},{"name":"DIRID_APPS","features":[365]},{"name":"DIRID_BOOT","features":[365]},{"name":"DIRID_COLOR","features":[365]},{"name":"DIRID_COMMON_APPDATA","features":[365]},{"name":"DIRID_COMMON_DESKTOPDIRECTORY","features":[365]},{"name":"DIRID_COMMON_DOCUMENTS","features":[365]},{"name":"DIRID_COMMON_FAVORITES","features":[365]},{"name":"DIRID_COMMON_PROGRAMS","features":[365]},{"name":"DIRID_COMMON_STARTMENU","features":[365]},{"name":"DIRID_COMMON_STARTUP","features":[365]},{"name":"DIRID_COMMON_TEMPLATES","features":[365]},{"name":"DIRID_DEFAULT","features":[365]},{"name":"DIRID_DRIVERS","features":[365]},{"name":"DIRID_DRIVER_STORE","features":[365]},{"name":"DIRID_FONTS","features":[365]},{"name":"DIRID_HELP","features":[365]},{"name":"DIRID_INF","features":[365]},{"name":"DIRID_IOSUBSYS","features":[365]},{"name":"DIRID_LOADER","features":[365]},{"name":"DIRID_NULL","features":[365]},{"name":"DIRID_PRINTPROCESSOR","features":[365]},{"name":"DIRID_PROGRAM_FILES","features":[365]},{"name":"DIRID_PROGRAM_FILES_COMMON","features":[365]},{"name":"DIRID_PROGRAM_FILES_COMMONX86","features":[365]},{"name":"DIRID_PROGRAM_FILES_X86","features":[365]},{"name":"DIRID_SHARED","features":[365]},{"name":"DIRID_SPOOL","features":[365]},{"name":"DIRID_SPOOLDRIVERS","features":[365]},{"name":"DIRID_SRCPATH","features":[365]},{"name":"DIRID_SYSTEM","features":[365]},{"name":"DIRID_SYSTEM16","features":[365]},{"name":"DIRID_SYSTEM_X86","features":[365]},{"name":"DIRID_USER","features":[365]},{"name":"DIRID_USERPROFILE","features":[365]},{"name":"DIRID_VIEWERS","features":[365]},{"name":"DIRID_WINDOWS","features":[365]},{"name":"DIROLLBACKDRIVER_FLAGS","features":[365]},{"name":"DIUNINSTALLDRIVER_FLAGS","features":[365]},{"name":"DIURFLAG_NO_REMOVE_INF","features":[365]},{"name":"DIURFLAG_RESERVED","features":[365]},{"name":"DIURFLAG_VALID","features":[365]},{"name":"DI_AUTOASSIGNRES","features":[365]},{"name":"DI_CLASSINSTALLPARAMS","features":[365]},{"name":"DI_COMPAT_FROM_CLASS","features":[365]},{"name":"DI_DIDCLASS","features":[365]},{"name":"DI_DIDCOMPAT","features":[365]},{"name":"DI_DISABLED","features":[365]},{"name":"DI_DONOTCALLCONFIGMG","features":[365]},{"name":"DI_DRIVERPAGE_ADDED","features":[365]},{"name":"DI_ENUMSINGLEINF","features":[365]},{"name":"DI_FLAGSEX_ALLOWEXCLUDEDDRVS","features":[365]},{"name":"DI_FLAGSEX_ALTPLATFORM_DRVSEARCH","features":[365]},{"name":"DI_FLAGSEX_ALWAYSWRITEIDS","features":[365]},{"name":"DI_FLAGSEX_APPENDDRIVERLIST","features":[365]},{"name":"DI_FLAGSEX_BACKUPONREPLACE","features":[365]},{"name":"DI_FLAGSEX_CI_FAILED","features":[365]},{"name":"DI_FLAGSEX_DEVICECHANGE","features":[365]},{"name":"DI_FLAGSEX_DIDCOMPATINFO","features":[365]},{"name":"DI_FLAGSEX_DIDINFOLIST","features":[365]},{"name":"DI_FLAGSEX_DRIVERLIST_FROM_URL","features":[365]},{"name":"DI_FLAGSEX_EXCLUDE_OLD_INET_DRIVERS","features":[365]},{"name":"DI_FLAGSEX_FILTERCLASSES","features":[365]},{"name":"DI_FLAGSEX_FILTERSIMILARDRIVERS","features":[365]},{"name":"DI_FLAGSEX_FINISHINSTALL_ACTION","features":[365]},{"name":"DI_FLAGSEX_INET_DRIVER","features":[365]},{"name":"DI_FLAGSEX_INSTALLEDDRIVER","features":[365]},{"name":"DI_FLAGSEX_IN_SYSTEM_SETUP","features":[365]},{"name":"DI_FLAGSEX_NOUIONQUERYREMOVE","features":[365]},{"name":"DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE","features":[365]},{"name":"DI_FLAGSEX_NO_DRVREG_MODIFY","features":[365]},{"name":"DI_FLAGSEX_POWERPAGE_ADDED","features":[365]},{"name":"DI_FLAGSEX_PREINSTALLBACKUP","features":[365]},{"name":"DI_FLAGSEX_PROPCHANGE_PENDING","features":[365]},{"name":"DI_FLAGSEX_RECURSIVESEARCH","features":[365]},{"name":"DI_FLAGSEX_RESERVED1","features":[365]},{"name":"DI_FLAGSEX_RESERVED2","features":[365]},{"name":"DI_FLAGSEX_RESERVED3","features":[365]},{"name":"DI_FLAGSEX_RESERVED4","features":[365]},{"name":"DI_FLAGSEX_RESTART_DEVICE_ONLY","features":[365]},{"name":"DI_FLAGSEX_SEARCH_PUBLISHED_INFS","features":[365]},{"name":"DI_FLAGSEX_SETFAILEDINSTALL","features":[365]},{"name":"DI_FLAGSEX_USECLASSFORCOMPAT","features":[365]},{"name":"DI_FORCECOPY","features":[365]},{"name":"DI_FUNCTION","features":[365]},{"name":"DI_GENERALPAGE_ADDED","features":[365]},{"name":"DI_INF_IS_SORTED","features":[365]},{"name":"DI_INSTALLDISABLED","features":[365]},{"name":"DI_MULTMFGS","features":[365]},{"name":"DI_NEEDREBOOT","features":[365]},{"name":"DI_NEEDRESTART","features":[365]},{"name":"DI_NOBROWSE","features":[365]},{"name":"DI_NODI_DEFAULTACTION","features":[365]},{"name":"DI_NOFILECOPY","features":[365]},{"name":"DI_NOSELECTICONS","features":[365]},{"name":"DI_NOVCP","features":[365]},{"name":"DI_NOWRITE_IDS","features":[365]},{"name":"DI_OVERRIDE_INFFLAGS","features":[365]},{"name":"DI_PROPERTIES_CHANGE","features":[365]},{"name":"DI_PROPS_NOCHANGEUSAGE","features":[365]},{"name":"DI_QUIETINSTALL","features":[365]},{"name":"DI_REMOVEDEVICE_CONFIGSPECIFIC","features":[365]},{"name":"DI_REMOVEDEVICE_GLOBAL","features":[365]},{"name":"DI_RESOURCEPAGE_ADDED","features":[365]},{"name":"DI_SHOWALL","features":[365]},{"name":"DI_SHOWCLASS","features":[365]},{"name":"DI_SHOWCOMPAT","features":[365]},{"name":"DI_SHOWOEM","features":[365]},{"name":"DI_UNREMOVEDEVICE_CONFIGSPECIFIC","features":[365]},{"name":"DI_USECI_SELECTSTRINGS","features":[365]},{"name":"DMA_DES","features":[365]},{"name":"DMA_RANGE","features":[365]},{"name":"DMA_RESOURCE","features":[365]},{"name":"DMI_BKCOLOR","features":[365]},{"name":"DMI_MASK","features":[365]},{"name":"DMI_USERECT","features":[365]},{"name":"DNF_ALWAYSEXCLUDEFROMLIST","features":[365]},{"name":"DNF_AUTHENTICODE_SIGNED","features":[365]},{"name":"DNF_BAD_DRIVER","features":[365]},{"name":"DNF_BASIC_DRIVER","features":[365]},{"name":"DNF_CLASS_DRIVER","features":[365]},{"name":"DNF_COMPATIBLE_DRIVER","features":[365]},{"name":"DNF_DUPDESC","features":[365]},{"name":"DNF_DUPDRIVERVER","features":[365]},{"name":"DNF_DUPPROVIDER","features":[365]},{"name":"DNF_EXCLUDEFROMLIST","features":[365]},{"name":"DNF_INBOX_DRIVER","features":[365]},{"name":"DNF_INET_DRIVER","features":[365]},{"name":"DNF_INF_IS_SIGNED","features":[365]},{"name":"DNF_INSTALLEDDRIVER","features":[365]},{"name":"DNF_LEGACYINF","features":[365]},{"name":"DNF_NODRIVER","features":[365]},{"name":"DNF_OEM_F6_INF","features":[365]},{"name":"DNF_OLDDRIVER","features":[365]},{"name":"DNF_OLD_INET_DRIVER","features":[365]},{"name":"DNF_REQUESTADDITIONALSOFTWARE","features":[365]},{"name":"DNF_UNUSED1","features":[365]},{"name":"DNF_UNUSED2","features":[365]},{"name":"DNF_UNUSED_22","features":[365]},{"name":"DNF_UNUSED_23","features":[365]},{"name":"DNF_UNUSED_24","features":[365]},{"name":"DNF_UNUSED_25","features":[365]},{"name":"DNF_UNUSED_26","features":[365]},{"name":"DNF_UNUSED_27","features":[365]},{"name":"DNF_UNUSED_28","features":[365]},{"name":"DNF_UNUSED_29","features":[365]},{"name":"DNF_UNUSED_30","features":[365]},{"name":"DNF_UNUSED_31","features":[365]},{"name":"DN_APM_DRIVER","features":[365]},{"name":"DN_APM_ENUMERATOR","features":[365]},{"name":"DN_ARM_WAKEUP","features":[365]},{"name":"DN_BAD_PARTIAL","features":[365]},{"name":"DN_BOOT_LOG_PROB","features":[365]},{"name":"DN_CHANGEABLE_FLAGS","features":[365]},{"name":"DN_CHILD_WITH_INVALID_ID","features":[365]},{"name":"DN_DEVICE_DISCONNECTED","features":[365]},{"name":"DN_DISABLEABLE","features":[365]},{"name":"DN_DRIVER_BLOCKED","features":[365]},{"name":"DN_DRIVER_LOADED","features":[365]},{"name":"DN_ENUM_LOADED","features":[365]},{"name":"DN_FILTERED","features":[365]},{"name":"DN_HARDWARE_ENUM","features":[365]},{"name":"DN_HAS_MARK","features":[365]},{"name":"DN_HAS_PROBLEM","features":[365]},{"name":"DN_LEGACY_DRIVER","features":[365]},{"name":"DN_LIAR","features":[365]},{"name":"DN_MANUAL","features":[365]},{"name":"DN_MF_CHILD","features":[365]},{"name":"DN_MF_PARENT","features":[365]},{"name":"DN_MOVED","features":[365]},{"name":"DN_NEEDS_LOCKING","features":[365]},{"name":"DN_NEED_RESTART","features":[365]},{"name":"DN_NEED_TO_ENUM","features":[365]},{"name":"DN_NOT_FIRST_TIME","features":[365]},{"name":"DN_NOT_FIRST_TIMEE","features":[365]},{"name":"DN_NO_SHOW_IN_DM","features":[365]},{"name":"DN_NT_DRIVER","features":[365]},{"name":"DN_NT_ENUMERATOR","features":[365]},{"name":"DN_PRIVATE_PROBLEM","features":[365]},{"name":"DN_QUERY_REMOVE_ACTIVE","features":[365]},{"name":"DN_QUERY_REMOVE_PENDING","features":[365]},{"name":"DN_REBAL_CANDIDATE","features":[365]},{"name":"DN_REMOVABLE","features":[365]},{"name":"DN_ROOT_ENUMERATED","features":[365]},{"name":"DN_SILENT_INSTALL","features":[365]},{"name":"DN_STARTED","features":[365]},{"name":"DN_STOP_FREE_RES","features":[365]},{"name":"DN_WILL_BE_REMOVED","features":[365]},{"name":"DPROMPT_BUFFERTOOSMALL","features":[365]},{"name":"DPROMPT_CANCEL","features":[365]},{"name":"DPROMPT_OUTOFMEMORY","features":[365]},{"name":"DPROMPT_SKIPFILE","features":[365]},{"name":"DPROMPT_SUCCESS","features":[365]},{"name":"DRIVER_COMPATID_RANK","features":[365]},{"name":"DRIVER_HARDWAREID_MASK","features":[365]},{"name":"DRIVER_HARDWAREID_RANK","features":[365]},{"name":"DRIVER_UNTRUSTED_COMPATID_RANK","features":[365]},{"name":"DRIVER_UNTRUSTED_HARDWAREID_RANK","features":[365]},{"name":"DRIVER_UNTRUSTED_RANK","features":[365]},{"name":"DRIVER_W9X_SUSPECT_COMPATID_RANK","features":[365]},{"name":"DRIVER_W9X_SUSPECT_HARDWAREID_RANK","features":[365]},{"name":"DRIVER_W9X_SUSPECT_RANK","features":[365]},{"name":"DWORD_MAX","features":[365]},{"name":"DYNAWIZ_FLAG_ANALYZE_HANDLECONFLICT","features":[365]},{"name":"DYNAWIZ_FLAG_INSTALLDET_NEXT","features":[365]},{"name":"DYNAWIZ_FLAG_INSTALLDET_PREV","features":[365]},{"name":"DYNAWIZ_FLAG_PAGESADDED","features":[365]},{"name":"DiInstallDevice","features":[365,305]},{"name":"DiInstallDriverA","features":[365,305]},{"name":"DiInstallDriverW","features":[365,305]},{"name":"DiRollbackDriver","features":[365,305]},{"name":"DiShowUpdateDevice","features":[365,305]},{"name":"DiShowUpdateDriver","features":[365,305]},{"name":"DiUninstallDevice","features":[365,305]},{"name":"DiUninstallDriverA","features":[365,305]},{"name":"DiUninstallDriverW","features":[365,305]},{"name":"ENABLECLASS_FAILURE","features":[365]},{"name":"ENABLECLASS_QUERY","features":[365]},{"name":"ENABLECLASS_SUCCESS","features":[365]},{"name":"FILEOP_ABORT","features":[365]},{"name":"FILEOP_BACKUP","features":[365]},{"name":"FILEOP_COPY","features":[365]},{"name":"FILEOP_DELETE","features":[365]},{"name":"FILEOP_DOIT","features":[365]},{"name":"FILEOP_NEWPATH","features":[365]},{"name":"FILEOP_RENAME","features":[365]},{"name":"FILEOP_RETRY","features":[365]},{"name":"FILEOP_SKIP","features":[365]},{"name":"FILEPATHS_A","features":[365]},{"name":"FILEPATHS_A","features":[365]},{"name":"FILEPATHS_SIGNERINFO_A","features":[365]},{"name":"FILEPATHS_SIGNERINFO_A","features":[365]},{"name":"FILEPATHS_SIGNERINFO_W","features":[365]},{"name":"FILEPATHS_SIGNERINFO_W","features":[365]},{"name":"FILEPATHS_W","features":[365]},{"name":"FILEPATHS_W","features":[365]},{"name":"FILE_COMPRESSION_MSZIP","features":[365]},{"name":"FILE_COMPRESSION_NONE","features":[365]},{"name":"FILE_COMPRESSION_NTCAB","features":[365]},{"name":"FILE_COMPRESSION_TYPE","features":[365]},{"name":"FILE_COMPRESSION_WINLZA","features":[365]},{"name":"FILE_IN_CABINET_INFO_A","features":[365]},{"name":"FILE_IN_CABINET_INFO_A","features":[365]},{"name":"FILE_IN_CABINET_INFO_W","features":[365]},{"name":"FILE_IN_CABINET_INFO_W","features":[365]},{"name":"FILTERED_LOG_CONF","features":[365]},{"name":"FLG_ADDPROPERTY_AND","features":[365]},{"name":"FLG_ADDPROPERTY_APPEND","features":[365]},{"name":"FLG_ADDPROPERTY_NOCLOBBER","features":[365]},{"name":"FLG_ADDPROPERTY_OR","features":[365]},{"name":"FLG_ADDPROPERTY_OVERWRITEONLY","features":[365]},{"name":"FLG_ADDREG_32BITKEY","features":[365]},{"name":"FLG_ADDREG_64BITKEY","features":[365]},{"name":"FLG_ADDREG_APPEND","features":[365]},{"name":"FLG_ADDREG_BINVALUETYPE","features":[365]},{"name":"FLG_ADDREG_DELREG_BIT","features":[365]},{"name":"FLG_ADDREG_DELVAL","features":[365]},{"name":"FLG_ADDREG_KEYONLY","features":[365]},{"name":"FLG_ADDREG_KEYONLY_COMMON","features":[365]},{"name":"FLG_ADDREG_NOCLOBBER","features":[365]},{"name":"FLG_ADDREG_OVERWRITEONLY","features":[365]},{"name":"FLG_ADDREG_TYPE_EXPAND_SZ","features":[365]},{"name":"FLG_ADDREG_TYPE_MULTI_SZ","features":[365]},{"name":"FLG_ADDREG_TYPE_SZ","features":[365]},{"name":"FLG_BITREG_32BITKEY","features":[365]},{"name":"FLG_BITREG_64BITKEY","features":[365]},{"name":"FLG_BITREG_CLEARBITS","features":[365]},{"name":"FLG_BITREG_SETBITS","features":[365]},{"name":"FLG_DELPROPERTY_MULTI_SZ_DELSTRING","features":[365]},{"name":"FLG_DELREG_32BITKEY","features":[365]},{"name":"FLG_DELREG_64BITKEY","features":[365]},{"name":"FLG_DELREG_KEYONLY_COMMON","features":[365]},{"name":"FLG_DELREG_OPERATION_MASK","features":[365]},{"name":"FLG_DELREG_TYPE_EXPAND_SZ","features":[365]},{"name":"FLG_DELREG_TYPE_MULTI_SZ","features":[365]},{"name":"FLG_DELREG_TYPE_SZ","features":[365]},{"name":"FLG_DELREG_VALUE","features":[365]},{"name":"FLG_INI2REG_32BITKEY","features":[365]},{"name":"FLG_INI2REG_64BITKEY","features":[365]},{"name":"FLG_PROFITEM_CSIDL","features":[365]},{"name":"FLG_PROFITEM_CURRENTUSER","features":[365]},{"name":"FLG_PROFITEM_DELETE","features":[365]},{"name":"FLG_PROFITEM_GROUP","features":[365]},{"name":"FLG_REGSVR_DLLINSTALL","features":[365]},{"name":"FLG_REGSVR_DLLREGISTER","features":[365]},{"name":"FORCED_LOG_CONF","features":[365]},{"name":"GUID_ACPI_CMOS_INTERFACE_STANDARD","features":[365]},{"name":"GUID_ACPI_INTERFACE_STANDARD","features":[365]},{"name":"GUID_ACPI_INTERFACE_STANDARD2","features":[365]},{"name":"GUID_ACPI_PORT_RANGES_INTERFACE_STANDARD","features":[365]},{"name":"GUID_ACPI_REGS_INTERFACE_STANDARD","features":[365]},{"name":"GUID_AGP_TARGET_BUS_INTERFACE_STANDARD","features":[365]},{"name":"GUID_ARBITER_INTERFACE_STANDARD","features":[365]},{"name":"GUID_BUS_INTERFACE_STANDARD","features":[365]},{"name":"GUID_BUS_RESOURCE_UPDATE_INTERFACE","features":[365]},{"name":"GUID_BUS_TYPE_1394","features":[365]},{"name":"GUID_BUS_TYPE_ACPI","features":[365]},{"name":"GUID_BUS_TYPE_AVC","features":[365]},{"name":"GUID_BUS_TYPE_DOT4PRT","features":[365]},{"name":"GUID_BUS_TYPE_EISA","features":[365]},{"name":"GUID_BUS_TYPE_HID","features":[365]},{"name":"GUID_BUS_TYPE_INTERNAL","features":[365]},{"name":"GUID_BUS_TYPE_IRDA","features":[365]},{"name":"GUID_BUS_TYPE_ISAPNP","features":[365]},{"name":"GUID_BUS_TYPE_LPTENUM","features":[365]},{"name":"GUID_BUS_TYPE_MCA","features":[365]},{"name":"GUID_BUS_TYPE_PCI","features":[365]},{"name":"GUID_BUS_TYPE_PCMCIA","features":[365]},{"name":"GUID_BUS_TYPE_SCM","features":[365]},{"name":"GUID_BUS_TYPE_SD","features":[365]},{"name":"GUID_BUS_TYPE_SERENUM","features":[365]},{"name":"GUID_BUS_TYPE_SW_DEVICE","features":[365]},{"name":"GUID_BUS_TYPE_USB","features":[365]},{"name":"GUID_BUS_TYPE_USBPRINT","features":[365]},{"name":"GUID_D3COLD_AUX_POWER_AND_TIMING_INTERFACE","features":[365]},{"name":"GUID_D3COLD_SUPPORT_INTERFACE","features":[365]},{"name":"GUID_DEVCLASS_1394","features":[365]},{"name":"GUID_DEVCLASS_1394DEBUG","features":[365]},{"name":"GUID_DEVCLASS_61883","features":[365]},{"name":"GUID_DEVCLASS_ADAPTER","features":[365]},{"name":"GUID_DEVCLASS_APMSUPPORT","features":[365]},{"name":"GUID_DEVCLASS_AVC","features":[365]},{"name":"GUID_DEVCLASS_BATTERY","features":[365]},{"name":"GUID_DEVCLASS_BIOMETRIC","features":[365]},{"name":"GUID_DEVCLASS_BLUETOOTH","features":[365]},{"name":"GUID_DEVCLASS_CAMERA","features":[365]},{"name":"GUID_DEVCLASS_CDROM","features":[365]},{"name":"GUID_DEVCLASS_COMPUTEACCELERATOR","features":[365]},{"name":"GUID_DEVCLASS_COMPUTER","features":[365]},{"name":"GUID_DEVCLASS_DECODER","features":[365]},{"name":"GUID_DEVCLASS_DISKDRIVE","features":[365]},{"name":"GUID_DEVCLASS_DISPLAY","features":[365]},{"name":"GUID_DEVCLASS_DOT4","features":[365]},{"name":"GUID_DEVCLASS_DOT4PRINT","features":[365]},{"name":"GUID_DEVCLASS_EHSTORAGESILO","features":[365]},{"name":"GUID_DEVCLASS_ENUM1394","features":[365]},{"name":"GUID_DEVCLASS_EXTENSION","features":[365]},{"name":"GUID_DEVCLASS_FDC","features":[365]},{"name":"GUID_DEVCLASS_FIRMWARE","features":[365]},{"name":"GUID_DEVCLASS_FLOPPYDISK","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_ACTIVITYMONITOR","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_ANTIVIRUS","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_BOTTOM","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_CFSMETADATASERVER","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_COMPRESSION","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_CONTENTSCREENER","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_CONTINUOUSBACKUP","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_COPYPROTECTION","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_ENCRYPTION","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_HSM","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_INFRASTRUCTURE","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_OPENFILEBACKUP","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_PHYSICALQUOTAMANAGEMENT","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_QUOTAMANAGEMENT","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_REPLICATION","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_SECURITYENHANCER","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEM","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_SYSTEMRECOVERY","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_TOP","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_UNDELETE","features":[365]},{"name":"GUID_DEVCLASS_FSFILTER_VIRTUALIZATION","features":[365]},{"name":"GUID_DEVCLASS_GENERIC","features":[365]},{"name":"GUID_DEVCLASS_GPS","features":[365]},{"name":"GUID_DEVCLASS_HDC","features":[365]},{"name":"GUID_DEVCLASS_HIDCLASS","features":[365]},{"name":"GUID_DEVCLASS_HOLOGRAPHIC","features":[365]},{"name":"GUID_DEVCLASS_IMAGE","features":[365]},{"name":"GUID_DEVCLASS_INFINIBAND","features":[365]},{"name":"GUID_DEVCLASS_INFRARED","features":[365]},{"name":"GUID_DEVCLASS_KEYBOARD","features":[365]},{"name":"GUID_DEVCLASS_LEGACYDRIVER","features":[365]},{"name":"GUID_DEVCLASS_MEDIA","features":[365]},{"name":"GUID_DEVCLASS_MEDIUM_CHANGER","features":[365]},{"name":"GUID_DEVCLASS_MEMORY","features":[365]},{"name":"GUID_DEVCLASS_MODEM","features":[365]},{"name":"GUID_DEVCLASS_MONITOR","features":[365]},{"name":"GUID_DEVCLASS_MOUSE","features":[365]},{"name":"GUID_DEVCLASS_MTD","features":[365]},{"name":"GUID_DEVCLASS_MULTIFUNCTION","features":[365]},{"name":"GUID_DEVCLASS_MULTIPORTSERIAL","features":[365]},{"name":"GUID_DEVCLASS_NET","features":[365]},{"name":"GUID_DEVCLASS_NETCLIENT","features":[365]},{"name":"GUID_DEVCLASS_NETDRIVER","features":[365]},{"name":"GUID_DEVCLASS_NETSERVICE","features":[365]},{"name":"GUID_DEVCLASS_NETTRANS","features":[365]},{"name":"GUID_DEVCLASS_NETUIO","features":[365]},{"name":"GUID_DEVCLASS_NODRIVER","features":[365]},{"name":"GUID_DEVCLASS_PCMCIA","features":[365]},{"name":"GUID_DEVCLASS_PNPPRINTERS","features":[365]},{"name":"GUID_DEVCLASS_PORTS","features":[365]},{"name":"GUID_DEVCLASS_PRIMITIVE","features":[365]},{"name":"GUID_DEVCLASS_PRINTER","features":[365]},{"name":"GUID_DEVCLASS_PRINTERUPGRADE","features":[365]},{"name":"GUID_DEVCLASS_PRINTQUEUE","features":[365]},{"name":"GUID_DEVCLASS_PROCESSOR","features":[365]},{"name":"GUID_DEVCLASS_SBP2","features":[365]},{"name":"GUID_DEVCLASS_SCMDISK","features":[365]},{"name":"GUID_DEVCLASS_SCMVOLUME","features":[365]},{"name":"GUID_DEVCLASS_SCSIADAPTER","features":[365]},{"name":"GUID_DEVCLASS_SECURITYACCELERATOR","features":[365]},{"name":"GUID_DEVCLASS_SENSOR","features":[365]},{"name":"GUID_DEVCLASS_SIDESHOW","features":[365]},{"name":"GUID_DEVCLASS_SMARTCARDREADER","features":[365]},{"name":"GUID_DEVCLASS_SMRDISK","features":[365]},{"name":"GUID_DEVCLASS_SMRVOLUME","features":[365]},{"name":"GUID_DEVCLASS_SOFTWARECOMPONENT","features":[365]},{"name":"GUID_DEVCLASS_SOUND","features":[365]},{"name":"GUID_DEVCLASS_SYSTEM","features":[365]},{"name":"GUID_DEVCLASS_TAPEDRIVE","features":[365]},{"name":"GUID_DEVCLASS_UCM","features":[365]},{"name":"GUID_DEVCLASS_UNKNOWN","features":[365]},{"name":"GUID_DEVCLASS_USB","features":[365]},{"name":"GUID_DEVCLASS_VOLUME","features":[365]},{"name":"GUID_DEVCLASS_VOLUMESNAPSHOT","features":[365]},{"name":"GUID_DEVCLASS_WCEUSBS","features":[365]},{"name":"GUID_DEVCLASS_WPD","features":[365]},{"name":"GUID_DEVICE_INTERFACE_ARRIVAL","features":[365]},{"name":"GUID_DEVICE_INTERFACE_REMOVAL","features":[365]},{"name":"GUID_DEVICE_RESET_INTERFACE_STANDARD","features":[365]},{"name":"GUID_DMA_CACHE_COHERENCY_INTERFACE","features":[365]},{"name":"GUID_HWPROFILE_CHANGE_CANCELLED","features":[365]},{"name":"GUID_HWPROFILE_CHANGE_COMPLETE","features":[365]},{"name":"GUID_HWPROFILE_QUERY_CHANGE","features":[365]},{"name":"GUID_INT_ROUTE_INTERFACE_STANDARD","features":[365]},{"name":"GUID_IOMMU_BUS_INTERFACE","features":[365]},{"name":"GUID_KERNEL_SOFT_RESTART_CANCEL","features":[365]},{"name":"GUID_KERNEL_SOFT_RESTART_FINALIZE","features":[365]},{"name":"GUID_KERNEL_SOFT_RESTART_PREPARE","features":[365]},{"name":"GUID_LEGACY_DEVICE_DETECTION_STANDARD","features":[365]},{"name":"GUID_MF_ENUMERATION_INTERFACE","features":[365]},{"name":"GUID_MSIX_TABLE_CONFIG_INTERFACE","features":[365]},{"name":"GUID_NPEM_CONTROL_INTERFACE","features":[365]},{"name":"GUID_PARTITION_UNIT_INTERFACE_STANDARD","features":[365]},{"name":"GUID_PCC_INTERFACE_INTERNAL","features":[365]},{"name":"GUID_PCC_INTERFACE_STANDARD","features":[365]},{"name":"GUID_PCI_ATS_INTERFACE","features":[365]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD","features":[365]},{"name":"GUID_PCI_BUS_INTERFACE_STANDARD2","features":[365]},{"name":"GUID_PCI_DEVICE_PRESENT_INTERFACE","features":[365]},{"name":"GUID_PCI_EXPRESS_LINK_QUIESCENT_INTERFACE","features":[365]},{"name":"GUID_PCI_EXPRESS_ROOT_PORT_INTERFACE","features":[365]},{"name":"GUID_PCI_FPGA_CONTROL_INTERFACE","features":[365]},{"name":"GUID_PCI_PTM_CONTROL_INTERFACE","features":[365]},{"name":"GUID_PCI_SECURITY_INTERFACE","features":[365]},{"name":"GUID_PCI_VIRTUALIZATION_INTERFACE","features":[365]},{"name":"GUID_PCMCIA_BUS_INTERFACE_STANDARD","features":[365]},{"name":"GUID_PNP_CUSTOM_NOTIFICATION","features":[365]},{"name":"GUID_PNP_EXTENDED_ADDRESS_INTERFACE","features":[365]},{"name":"GUID_PNP_LOCATION_INTERFACE","features":[365]},{"name":"GUID_PNP_POWER_NOTIFICATION","features":[365]},{"name":"GUID_PNP_POWER_SETTING_CHANGE","features":[365]},{"name":"GUID_POWER_DEVICE_ENABLE","features":[365]},{"name":"GUID_POWER_DEVICE_TIMEOUTS","features":[365]},{"name":"GUID_POWER_DEVICE_WAKE_ENABLE","features":[365]},{"name":"GUID_PROCESSOR_PCC_INTERFACE_STANDARD","features":[365]},{"name":"GUID_QUERY_CRASHDUMP_FUNCTIONS","features":[365]},{"name":"GUID_RECOVERY_NVMED_PREPARE_SHUTDOWN","features":[365]},{"name":"GUID_RECOVERY_PCI_PREPARE_SHUTDOWN","features":[365]},{"name":"GUID_REENUMERATE_SELF_INTERFACE_STANDARD","features":[365]},{"name":"GUID_SCM_BUS_INTERFACE","features":[365]},{"name":"GUID_SCM_BUS_LD_INTERFACE","features":[365]},{"name":"GUID_SCM_BUS_NVD_INTERFACE","features":[365]},{"name":"GUID_SCM_PHYSICAL_NVDIMM_INTERFACE","features":[365]},{"name":"GUID_SDEV_IDENTIFIER_INTERFACE","features":[365]},{"name":"GUID_SECURE_DRIVER_INTERFACE","features":[365]},{"name":"GUID_TARGET_DEVICE_QUERY_REMOVE","features":[365]},{"name":"GUID_TARGET_DEVICE_REMOVE_CANCELLED","features":[365]},{"name":"GUID_TARGET_DEVICE_REMOVE_COMPLETE","features":[365]},{"name":"GUID_TARGET_DEVICE_TRANSPORT_RELATIONS_CHANGED","features":[365]},{"name":"GUID_THERMAL_COOLING_INTERFACE","features":[365]},{"name":"GUID_TRANSLATOR_INTERFACE_STANDARD","features":[365]},{"name":"GUID_WUDF_DEVICE_HOST_PROBLEM","features":[365]},{"name":"HCMNOTIFICATION","features":[365]},{"name":"HDEVINFO","features":[365]},{"name":"HWPROFILEINFO_A","features":[365]},{"name":"HWPROFILEINFO_W","features":[365]},{"name":"IDD_DYNAWIZ_ANALYZEDEV_PAGE","features":[365]},{"name":"IDD_DYNAWIZ_ANALYZE_NEXTPAGE","features":[365]},{"name":"IDD_DYNAWIZ_ANALYZE_PREVPAGE","features":[365]},{"name":"IDD_DYNAWIZ_FIRSTPAGE","features":[365]},{"name":"IDD_DYNAWIZ_INSTALLDETECTEDDEVS_PAGE","features":[365]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NEXTPAGE","features":[365]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_NODEVS","features":[365]},{"name":"IDD_DYNAWIZ_INSTALLDETECTED_PREVPAGE","features":[365]},{"name":"IDD_DYNAWIZ_SELECTCLASS_PAGE","features":[365]},{"name":"IDD_DYNAWIZ_SELECTDEV_PAGE","features":[365]},{"name":"IDD_DYNAWIZ_SELECT_NEXTPAGE","features":[365]},{"name":"IDD_DYNAWIZ_SELECT_PREVPAGE","features":[365]},{"name":"IDF_CHECKFIRST","features":[365]},{"name":"IDF_NOBEEP","features":[365]},{"name":"IDF_NOBROWSE","features":[365]},{"name":"IDF_NOCOMPRESSED","features":[365]},{"name":"IDF_NODETAILS","features":[365]},{"name":"IDF_NOFOREGROUND","features":[365]},{"name":"IDF_NOREMOVABLEMEDIAPROMPT","features":[365]},{"name":"IDF_NOSKIP","features":[365]},{"name":"IDF_OEMDISK","features":[365]},{"name":"IDF_USEDISKNAMEASPROMPT","features":[365]},{"name":"IDF_WARNIFSKIP","features":[365]},{"name":"IDI_CLASSICON_OVERLAYFIRST","features":[365]},{"name":"IDI_CLASSICON_OVERLAYLAST","features":[365]},{"name":"IDI_CONFLICT","features":[365]},{"name":"IDI_DISABLED_OVL","features":[365]},{"name":"IDI_FORCED_OVL","features":[365]},{"name":"IDI_PROBLEM_OVL","features":[365]},{"name":"IDI_RESOURCE","features":[365]},{"name":"IDI_RESOURCEFIRST","features":[365]},{"name":"IDI_RESOURCELAST","features":[365]},{"name":"IDI_RESOURCEOVERLAYFIRST","features":[365]},{"name":"IDI_RESOURCEOVERLAYLAST","features":[365]},{"name":"INFCONTEXT","features":[365]},{"name":"INFCONTEXT","features":[365]},{"name":"INFINFO_DEFAULT_SEARCH","features":[365]},{"name":"INFINFO_INF_NAME_IS_ABSOLUTE","features":[365]},{"name":"INFINFO_INF_PATH_LIST_SEARCH","features":[365]},{"name":"INFINFO_INF_SPEC_IS_HINF","features":[365]},{"name":"INFINFO_REVERSE_DEFAULT_SEARCH","features":[365]},{"name":"INFSTR_BUS_ALL","features":[365]},{"name":"INFSTR_BUS_EISA","features":[365]},{"name":"INFSTR_BUS_ISA","features":[365]},{"name":"INFSTR_BUS_MCA","features":[365]},{"name":"INFSTR_CFGPRI_DESIRED","features":[365]},{"name":"INFSTR_CFGPRI_DISABLED","features":[365]},{"name":"INFSTR_CFGPRI_FORCECONFIG","features":[365]},{"name":"INFSTR_CFGPRI_HARDRECONFIG","features":[365]},{"name":"INFSTR_CFGPRI_HARDWIRED","features":[365]},{"name":"INFSTR_CFGPRI_NORMAL","features":[365]},{"name":"INFSTR_CFGPRI_POWEROFF","features":[365]},{"name":"INFSTR_CFGPRI_REBOOT","features":[365]},{"name":"INFSTR_CFGPRI_RESTART","features":[365]},{"name":"INFSTR_CFGPRI_SUBOPTIMAL","features":[365]},{"name":"INFSTR_CFGTYPE_BASIC","features":[365]},{"name":"INFSTR_CFGTYPE_FORCED","features":[365]},{"name":"INFSTR_CFGTYPE_OVERRIDE","features":[365]},{"name":"INFSTR_CLASS_SAFEEXCL","features":[365]},{"name":"INFSTR_CONTROLFLAGS_SECTION","features":[365]},{"name":"INFSTR_DRIVERSELECT_FUNCTIONS","features":[365]},{"name":"INFSTR_DRIVERSELECT_SECTION","features":[365]},{"name":"INFSTR_DRIVERVERSION_SECTION","features":[365]},{"name":"INFSTR_KEY_ACTION","features":[365]},{"name":"INFSTR_KEY_ALWAYSEXCLUDEFROMSELECT","features":[365]},{"name":"INFSTR_KEY_BUFFER_SIZE","features":[365]},{"name":"INFSTR_KEY_CATALOGFILE","features":[365]},{"name":"INFSTR_KEY_CHANNEL_ACCESS","features":[365]},{"name":"INFSTR_KEY_CHANNEL_ENABLED","features":[365]},{"name":"INFSTR_KEY_CHANNEL_ISOLATION","features":[365]},{"name":"INFSTR_KEY_CHANNEL_VALUE","features":[365]},{"name":"INFSTR_KEY_CLASS","features":[365]},{"name":"INFSTR_KEY_CLASSGUID","features":[365]},{"name":"INFSTR_KEY_CLOCK_TYPE","features":[365]},{"name":"INFSTR_KEY_CONFIGPRIORITY","features":[365]},{"name":"INFSTR_KEY_COPYFILESONLY","features":[365]},{"name":"INFSTR_KEY_DATA_ITEM","features":[365]},{"name":"INFSTR_KEY_DELAYEDAUTOSTART","features":[365]},{"name":"INFSTR_KEY_DEPENDENCIES","features":[365]},{"name":"INFSTR_KEY_DESCRIPTION","features":[365]},{"name":"INFSTR_KEY_DETECTLIST","features":[365]},{"name":"INFSTR_KEY_DETPARAMS","features":[365]},{"name":"INFSTR_KEY_DISABLE_REALTIME_PERSISTENCE","features":[365]},{"name":"INFSTR_KEY_DISPLAYNAME","features":[365]},{"name":"INFSTR_KEY_DMA","features":[365]},{"name":"INFSTR_KEY_DMACONFIG","features":[365]},{"name":"INFSTR_KEY_DRIVERSET","features":[365]},{"name":"INFSTR_KEY_ENABLED","features":[365]},{"name":"INFSTR_KEY_ENABLE_FLAGS","features":[365]},{"name":"INFSTR_KEY_ENABLE_LEVEL","features":[365]},{"name":"INFSTR_KEY_ENABLE_PROPERTY","features":[365]},{"name":"INFSTR_KEY_ERRORCONTROL","features":[365]},{"name":"INFSTR_KEY_EXCLUDEFROMSELECT","features":[365]},{"name":"INFSTR_KEY_EXCLUDERES","features":[365]},{"name":"INFSTR_KEY_EXTENSIONID","features":[365]},{"name":"INFSTR_KEY_FAILURE_ACTION","features":[365]},{"name":"INFSTR_KEY_FILE_MAX","features":[365]},{"name":"INFSTR_KEY_FILE_NAME","features":[365]},{"name":"INFSTR_KEY_FLUSH_TIMER","features":[365]},{"name":"INFSTR_KEY_FROMINET","features":[365]},{"name":"INFSTR_KEY_HARDWARE_CLASS","features":[365]},{"name":"INFSTR_KEY_HARDWARE_CLASSGUID","features":[365]},{"name":"INFSTR_KEY_INTERACTIVEINSTALL","features":[365]},{"name":"INFSTR_KEY_IO","features":[365]},{"name":"INFSTR_KEY_IOCONFIG","features":[365]},{"name":"INFSTR_KEY_IRQ","features":[365]},{"name":"INFSTR_KEY_IRQCONFIG","features":[365]},{"name":"INFSTR_KEY_LOADORDERGROUP","features":[365]},{"name":"INFSTR_KEY_LOGGING_AUTOBACKUP","features":[365]},{"name":"INFSTR_KEY_LOGGING_MAXSIZE","features":[365]},{"name":"INFSTR_KEY_LOGGING_RETENTION","features":[365]},{"name":"INFSTR_KEY_LOG_FILE_MODE","features":[365]},{"name":"INFSTR_KEY_MATCH_ALL_KEYWORD","features":[365]},{"name":"INFSTR_KEY_MATCH_ANY_KEYWORD","features":[365]},{"name":"INFSTR_KEY_MAXIMUM_BUFFERS","features":[365]},{"name":"INFSTR_KEY_MAX_FILE_SIZE","features":[365]},{"name":"INFSTR_KEY_MEM","features":[365]},{"name":"INFSTR_KEY_MEMCONFIG","features":[365]},{"name":"INFSTR_KEY_MEMLARGECONFIG","features":[365]},{"name":"INFSTR_KEY_MESSAGE_FILE","features":[365]},{"name":"INFSTR_KEY_MFCARDCONFIG","features":[365]},{"name":"INFSTR_KEY_MINIMUM_BUFFERS","features":[365]},{"name":"INFSTR_KEY_NAME","features":[365]},{"name":"INFSTR_KEY_NON_CRASH_FAILURES","features":[365]},{"name":"INFSTR_KEY_NOSETUPINF","features":[365]},{"name":"INFSTR_KEY_PARAMETER_FILE","features":[365]},{"name":"INFSTR_KEY_PATH","features":[365]},{"name":"INFSTR_KEY_PCCARDCONFIG","features":[365]},{"name":"INFSTR_KEY_PNPLOCKDOWN","features":[365]},{"name":"INFSTR_KEY_PROVIDER","features":[365]},{"name":"INFSTR_KEY_PROVIDER_NAME","features":[365]},{"name":"INFSTR_KEY_REQUESTADDITIONALSOFTWARE","features":[365]},{"name":"INFSTR_KEY_REQUIREDPRIVILEGES","features":[365]},{"name":"INFSTR_KEY_RESET_PERIOD","features":[365]},{"name":"INFSTR_KEY_RESOURCE_FILE","features":[365]},{"name":"INFSTR_KEY_SECURITY","features":[365]},{"name":"INFSTR_KEY_SERVICEBINARY","features":[365]},{"name":"INFSTR_KEY_SERVICESIDTYPE","features":[365]},{"name":"INFSTR_KEY_SERVICETYPE","features":[365]},{"name":"INFSTR_KEY_SIGNATURE","features":[365]},{"name":"INFSTR_KEY_SKIPLIST","features":[365]},{"name":"INFSTR_KEY_START","features":[365]},{"name":"INFSTR_KEY_STARTNAME","features":[365]},{"name":"INFSTR_KEY_STARTTYPE","features":[365]},{"name":"INFSTR_KEY_SUB_TYPE","features":[365]},{"name":"INFSTR_KEY_TRIGGER_TYPE","features":[365]},{"name":"INFSTR_PLATFORM_NT","features":[365]},{"name":"INFSTR_PLATFORM_NTALPHA","features":[365]},{"name":"INFSTR_PLATFORM_NTAMD64","features":[365]},{"name":"INFSTR_PLATFORM_NTARM","features":[365]},{"name":"INFSTR_PLATFORM_NTARM64","features":[365]},{"name":"INFSTR_PLATFORM_NTAXP64","features":[365]},{"name":"INFSTR_PLATFORM_NTIA64","features":[365]},{"name":"INFSTR_PLATFORM_NTMIPS","features":[365]},{"name":"INFSTR_PLATFORM_NTPPC","features":[365]},{"name":"INFSTR_PLATFORM_NTX86","features":[365]},{"name":"INFSTR_PLATFORM_WIN","features":[365]},{"name":"INFSTR_REBOOT","features":[365]},{"name":"INFSTR_RESTART","features":[365]},{"name":"INFSTR_RISK_BIOSROMRD","features":[365]},{"name":"INFSTR_RISK_DELICATE","features":[365]},{"name":"INFSTR_RISK_IORD","features":[365]},{"name":"INFSTR_RISK_IOWR","features":[365]},{"name":"INFSTR_RISK_LOW","features":[365]},{"name":"INFSTR_RISK_MEMRD","features":[365]},{"name":"INFSTR_RISK_MEMWR","features":[365]},{"name":"INFSTR_RISK_NONE","features":[365]},{"name":"INFSTR_RISK_QUERYDRV","features":[365]},{"name":"INFSTR_RISK_SWINT","features":[365]},{"name":"INFSTR_RISK_UNRELIABLE","features":[365]},{"name":"INFSTR_RISK_VERYHIGH","features":[365]},{"name":"INFSTR_RISK_VERYLOW","features":[365]},{"name":"INFSTR_SECT_AUTOEXECBAT","features":[365]},{"name":"INFSTR_SECT_AVOIDCFGSYSDEV","features":[365]},{"name":"INFSTR_SECT_AVOIDENVDEV","features":[365]},{"name":"INFSTR_SECT_AVOIDINIDEV","features":[365]},{"name":"INFSTR_SECT_BADACPIBIOS","features":[365]},{"name":"INFSTR_SECT_BADDISKBIOS","features":[365]},{"name":"INFSTR_SECT_BADDSBIOS","features":[365]},{"name":"INFSTR_SECT_BADPMCALLBIOS","features":[365]},{"name":"INFSTR_SECT_BADPNPBIOS","features":[365]},{"name":"INFSTR_SECT_BADRMCALLBIOS","features":[365]},{"name":"INFSTR_SECT_BADROUTINGTABLEBIOS","features":[365]},{"name":"INFSTR_SECT_CFGSYS","features":[365]},{"name":"INFSTR_SECT_CLASS_INSTALL","features":[365]},{"name":"INFSTR_SECT_CLASS_INSTALL_32","features":[365]},{"name":"INFSTR_SECT_DEFAULT_INSTALL","features":[365]},{"name":"INFSTR_SECT_DEFAULT_UNINSTALL","features":[365]},{"name":"INFSTR_SECT_DETCLASSINFO","features":[365]},{"name":"INFSTR_SECT_DETMODULES","features":[365]},{"name":"INFSTR_SECT_DETOPTIONS","features":[365]},{"name":"INFSTR_SECT_DEVINFS","features":[365]},{"name":"INFSTR_SECT_DISPLAY_CLEANUP","features":[365]},{"name":"INFSTR_SECT_EXTENSIONCONTRACTS","features":[365]},{"name":"INFSTR_SECT_FORCEHWVERIFY","features":[365]},{"name":"INFSTR_SECT_GOODACPIBIOS","features":[365]},{"name":"INFSTR_SECT_HPOMNIBOOK","features":[365]},{"name":"INFSTR_SECT_INTERFACE_INSTALL_32","features":[365]},{"name":"INFSTR_SECT_MACHINEIDBIOS","features":[365]},{"name":"INFSTR_SECT_MANUALDEV","features":[365]},{"name":"INFSTR_SECT_MFG","features":[365]},{"name":"INFSTR_SECT_REGCFGSYSDEV","features":[365]},{"name":"INFSTR_SECT_REGENVDEV","features":[365]},{"name":"INFSTR_SECT_REGINIDEV","features":[365]},{"name":"INFSTR_SECT_SYSINI","features":[365]},{"name":"INFSTR_SECT_SYSINIDRV","features":[365]},{"name":"INFSTR_SECT_TARGETCOMPUTERS","features":[365]},{"name":"INFSTR_SECT_VERSION","features":[365]},{"name":"INFSTR_SECT_WININIRUN","features":[365]},{"name":"INFSTR_SOFTWAREVERSION_SECTION","features":[365]},{"name":"INFSTR_STRKEY_DRVDESC","features":[365]},{"name":"INFSTR_SUBKEY_COINSTALLERS","features":[365]},{"name":"INFSTR_SUBKEY_CTL","features":[365]},{"name":"INFSTR_SUBKEY_DET","features":[365]},{"name":"INFSTR_SUBKEY_EVENTS","features":[365]},{"name":"INFSTR_SUBKEY_FACTDEF","features":[365]},{"name":"INFSTR_SUBKEY_FILTERS","features":[365]},{"name":"INFSTR_SUBKEY_HW","features":[365]},{"name":"INFSTR_SUBKEY_INTERFACES","features":[365]},{"name":"INFSTR_SUBKEY_LOGCONFIG","features":[365]},{"name":"INFSTR_SUBKEY_LOGCONFIGOVERRIDE","features":[365]},{"name":"INFSTR_SUBKEY_NORESOURCEDUPS","features":[365]},{"name":"INFSTR_SUBKEY_POSSIBLEDUPS","features":[365]},{"name":"INFSTR_SUBKEY_SERVICES","features":[365]},{"name":"INFSTR_SUBKEY_SOFTWARE","features":[365]},{"name":"INFSTR_SUBKEY_WMI","features":[365]},{"name":"INF_STYLE","features":[365]},{"name":"INF_STYLE_CACHE_DISABLE","features":[365]},{"name":"INF_STYLE_CACHE_ENABLE","features":[365]},{"name":"INF_STYLE_CACHE_IGNORE","features":[365]},{"name":"INF_STYLE_NONE","features":[365]},{"name":"INF_STYLE_OLDNT","features":[365]},{"name":"INF_STYLE_WIN4","features":[365]},{"name":"INSTALLFLAG_BITS","features":[365]},{"name":"INSTALLFLAG_FORCE","features":[365]},{"name":"INSTALLFLAG_NONINTERACTIVE","features":[365]},{"name":"INSTALLFLAG_READONLY","features":[365]},{"name":"IOA_Local","features":[365]},{"name":"IOD_DESFLAGS","features":[365]},{"name":"IO_ALIAS_10_BIT_DECODE","features":[365]},{"name":"IO_ALIAS_12_BIT_DECODE","features":[365]},{"name":"IO_ALIAS_16_BIT_DECODE","features":[365]},{"name":"IO_ALIAS_POSITIVE_DECODE","features":[365]},{"name":"IO_DES","features":[365]},{"name":"IO_RANGE","features":[365]},{"name":"IO_RESOURCE","features":[365]},{"name":"IRQD_FLAGS","features":[365]},{"name":"IRQ_DES_32","features":[365]},{"name":"IRQ_DES_64","features":[365]},{"name":"IRQ_RANGE","features":[365]},{"name":"IRQ_RESOURCE_32","features":[365]},{"name":"IRQ_RESOURCE_64","features":[365]},{"name":"InstallHinfSectionA","features":[365,305]},{"name":"InstallHinfSectionW","features":[365,305]},{"name":"LCPRI_BOOTCONFIG","features":[365]},{"name":"LCPRI_DESIRED","features":[365]},{"name":"LCPRI_DISABLED","features":[365]},{"name":"LCPRI_FORCECONFIG","features":[365]},{"name":"LCPRI_HARDRECONFIG","features":[365]},{"name":"LCPRI_HARDWIRED","features":[365]},{"name":"LCPRI_IMPOSSIBLE","features":[365]},{"name":"LCPRI_LASTBESTCONFIG","features":[365]},{"name":"LCPRI_LASTSOFTCONFIG","features":[365]},{"name":"LCPRI_NORMAL","features":[365]},{"name":"LCPRI_POWEROFF","features":[365]},{"name":"LCPRI_REBOOT","features":[365]},{"name":"LCPRI_RESTART","features":[365]},{"name":"LCPRI_SUBOPTIMAL","features":[365]},{"name":"LINE_LEN","features":[365]},{"name":"LOG_CONF_BITS","features":[365]},{"name":"LogSevError","features":[365]},{"name":"LogSevFatalError","features":[365]},{"name":"LogSevInformation","features":[365]},{"name":"LogSevMaximum","features":[365]},{"name":"LogSevWarning","features":[365]},{"name":"MAX_CLASS_NAME_LEN","features":[365]},{"name":"MAX_CONFIG_VALUE","features":[365]},{"name":"MAX_DEVICE_ID_LEN","features":[365]},{"name":"MAX_DEVNODE_ID_LEN","features":[365]},{"name":"MAX_DMA_CHANNELS","features":[365]},{"name":"MAX_GUID_STRING_LEN","features":[365]},{"name":"MAX_IDD_DYNAWIZ_RESOURCE_ID","features":[365]},{"name":"MAX_INFSTR_STRKEY_LEN","features":[365]},{"name":"MAX_INF_FLAG","features":[365]},{"name":"MAX_INF_SECTION_NAME_LENGTH","features":[365]},{"name":"MAX_INF_STRING_LENGTH","features":[365]},{"name":"MAX_INSTALLWIZARD_DYNAPAGES","features":[365]},{"name":"MAX_INSTANCE_VALUE","features":[365]},{"name":"MAX_INSTRUCTION_LEN","features":[365]},{"name":"MAX_IO_PORTS","features":[365]},{"name":"MAX_IRQS","features":[365]},{"name":"MAX_KEY_LEN","features":[365]},{"name":"MAX_LABEL_LEN","features":[365]},{"name":"MAX_LCPRI","features":[365]},{"name":"MAX_MEM_REGISTERS","features":[365]},{"name":"MAX_PRIORITYSTR_LEN","features":[365]},{"name":"MAX_PROFILE_LEN","features":[365]},{"name":"MAX_SERVICE_NAME_LEN","features":[365]},{"name":"MAX_SUBTITLE_LEN","features":[365]},{"name":"MAX_TITLE_LEN","features":[365]},{"name":"MD_FLAGS","features":[365]},{"name":"MEM_DES","features":[365]},{"name":"MEM_LARGE_DES","features":[365]},{"name":"MEM_LARGE_RANGE","features":[365]},{"name":"MEM_LARGE_RESOURCE","features":[365]},{"name":"MEM_RANGE","features":[365]},{"name":"MEM_RESOURCE","features":[365]},{"name":"MFCARD_DES","features":[365]},{"name":"MFCARD_RESOURCE","features":[365]},{"name":"MIN_IDD_DYNAWIZ_RESOURCE_ID","features":[365]},{"name":"NDW_INSTALLFLAG_CI_PICKED_OEM","features":[365]},{"name":"NDW_INSTALLFLAG_DIDFACTDEFS","features":[365]},{"name":"NDW_INSTALLFLAG_EXPRESSINTRO","features":[365]},{"name":"NDW_INSTALLFLAG_HARDWAREALLREADYIN","features":[365]},{"name":"NDW_INSTALLFLAG_INSTALLSPECIFIC","features":[365]},{"name":"NDW_INSTALLFLAG_KNOWNCLASS","features":[365]},{"name":"NDW_INSTALLFLAG_NEEDSHUTDOWN","features":[365]},{"name":"NDW_INSTALLFLAG_NODETECTEDDEVS","features":[365]},{"name":"NDW_INSTALLFLAG_PCMCIADEVICE","features":[365]},{"name":"NDW_INSTALLFLAG_PCMCIAMODE","features":[365]},{"name":"NDW_INSTALLFLAG_SKIPCLASSLIST","features":[365]},{"name":"NDW_INSTALLFLAG_SKIPISDEVINSTALLED","features":[365]},{"name":"NDW_INSTALLFLAG_USERCANCEL","features":[365]},{"name":"NUM_CM_PROB","features":[365]},{"name":"NUM_CM_PROB_V1","features":[365]},{"name":"NUM_CM_PROB_V2","features":[365]},{"name":"NUM_CM_PROB_V3","features":[365]},{"name":"NUM_CM_PROB_V4","features":[365]},{"name":"NUM_CM_PROB_V5","features":[365]},{"name":"NUM_CM_PROB_V6","features":[365]},{"name":"NUM_CM_PROB_V7","features":[365]},{"name":"NUM_CM_PROB_V8","features":[365]},{"name":"NUM_CM_PROB_V9","features":[365]},{"name":"NUM_CR_RESULTS","features":[365]},{"name":"NUM_LOG_CONF","features":[365]},{"name":"OEM_SOURCE_MEDIA_TYPE","features":[365]},{"name":"OVERRIDE_LOG_CONF","features":[365]},{"name":"PCCARD_DES","features":[365]},{"name":"PCCARD_RESOURCE","features":[365]},{"name":"PCD_FLAGS","features":[365]},{"name":"PCD_MAX_IO","features":[365]},{"name":"PCD_MAX_MEMORY","features":[365]},{"name":"PCM_NOTIFY_CALLBACK","features":[365]},{"name":"PDETECT_PROGRESS_NOTIFY","features":[365,305]},{"name":"PMF_FLAGS","features":[365]},{"name":"PNP_VETO_TYPE","features":[365]},{"name":"PNP_VetoAlreadyRemoved","features":[365]},{"name":"PNP_VetoDevice","features":[365]},{"name":"PNP_VetoDriver","features":[365]},{"name":"PNP_VetoIllegalDeviceRequest","features":[365]},{"name":"PNP_VetoInsufficientPower","features":[365]},{"name":"PNP_VetoInsufficientRights","features":[365]},{"name":"PNP_VetoLegacyDevice","features":[365]},{"name":"PNP_VetoLegacyDriver","features":[365]},{"name":"PNP_VetoNonDisableable","features":[365]},{"name":"PNP_VetoOutstandingOpen","features":[365]},{"name":"PNP_VetoPendingClose","features":[365]},{"name":"PNP_VetoTypeUnknown","features":[365]},{"name":"PNP_VetoWindowsApp","features":[365]},{"name":"PNP_VetoWindowsService","features":[365]},{"name":"PRIORITY_BIT","features":[365]},{"name":"PRIORITY_EQUAL_FIRST","features":[365]},{"name":"PRIORITY_EQUAL_LAST","features":[365]},{"name":"PSP_DETSIG_CMPPROC","features":[365]},{"name":"PSP_FILE_CALLBACK_A","features":[365]},{"name":"PSP_FILE_CALLBACK_W","features":[365]},{"name":"ROLLBACK_BITS","features":[365]},{"name":"ROLLBACK_FLAG_NO_UI","features":[365]},{"name":"RegDisposition_Bits","features":[365]},{"name":"RegDisposition_OpenAlways","features":[365]},{"name":"RegDisposition_OpenExisting","features":[365]},{"name":"ResType_All","features":[365]},{"name":"ResType_BusNumber","features":[365]},{"name":"ResType_ClassSpecific","features":[365]},{"name":"ResType_Connection","features":[365]},{"name":"ResType_DMA","features":[365]},{"name":"ResType_DevicePrivate","features":[365]},{"name":"ResType_DoNotUse","features":[365]},{"name":"ResType_IO","features":[365]},{"name":"ResType_IRQ","features":[365]},{"name":"ResType_Ignored_Bit","features":[365]},{"name":"ResType_MAX","features":[365]},{"name":"ResType_Mem","features":[365]},{"name":"ResType_MemLarge","features":[365]},{"name":"ResType_MfCardConfig","features":[365]},{"name":"ResType_None","features":[365]},{"name":"ResType_PcCardConfig","features":[365]},{"name":"ResType_Reserved","features":[365]},{"name":"SCWMI_CLOBBER_SECURITY","features":[365]},{"name":"SETDIRID_NOT_FULL_PATH","features":[365]},{"name":"SETUPSCANFILEQUEUE_FLAGS","features":[365]},{"name":"SETUP_DI_DEVICE_CONFIGURATION_FLAGS","features":[365]},{"name":"SETUP_DI_DEVICE_CREATION_FLAGS","features":[365]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS","features":[365]},{"name":"SETUP_DI_DEVICE_INSTALL_FLAGS_EX","features":[365]},{"name":"SETUP_DI_DRIVER_INSTALL_FLAGS","features":[365]},{"name":"SETUP_DI_DRIVER_TYPE","features":[365]},{"name":"SETUP_DI_GET_CLASS_DEVS_FLAGS","features":[365]},{"name":"SETUP_DI_PROPERTY_CHANGE_SCOPE","features":[365]},{"name":"SETUP_DI_REGISTRY_PROPERTY","features":[365]},{"name":"SETUP_DI_REMOVE_DEVICE_SCOPE","features":[365]},{"name":"SETUP_DI_STATE_CHANGE","features":[365]},{"name":"SETUP_FILE_OPERATION","features":[365]},{"name":"SIGNERSCORE_AUTHENTICODE","features":[365]},{"name":"SIGNERSCORE_INBOX","features":[365]},{"name":"SIGNERSCORE_LOGO_PREMIUM","features":[365]},{"name":"SIGNERSCORE_LOGO_STANDARD","features":[365]},{"name":"SIGNERSCORE_MASK","features":[365]},{"name":"SIGNERSCORE_SIGNED_MASK","features":[365]},{"name":"SIGNERSCORE_UNCLASSIFIED","features":[365]},{"name":"SIGNERSCORE_UNKNOWN","features":[365]},{"name":"SIGNERSCORE_UNSIGNED","features":[365]},{"name":"SIGNERSCORE_W9X_SUSPECT","features":[365]},{"name":"SIGNERSCORE_WHQL","features":[365]},{"name":"SOURCE_MEDIA_A","features":[365]},{"name":"SOURCE_MEDIA_A","features":[365]},{"name":"SOURCE_MEDIA_W","features":[365]},{"name":"SOURCE_MEDIA_W","features":[365]},{"name":"SPCRP_CHARACTERISTICS","features":[365]},{"name":"SPCRP_DEVTYPE","features":[365]},{"name":"SPCRP_EXCLUSIVE","features":[365]},{"name":"SPCRP_LOWERFILTERS","features":[365]},{"name":"SPCRP_MAXIMUM_PROPERTY","features":[365]},{"name":"SPCRP_SECURITY","features":[365]},{"name":"SPCRP_SECURITY_SDS","features":[365]},{"name":"SPCRP_UPPERFILTERS","features":[365]},{"name":"SPDIT_CLASSDRIVER","features":[365]},{"name":"SPDIT_COMPATDRIVER","features":[365]},{"name":"SPDIT_NODRIVER","features":[365]},{"name":"SPDRP_ADDRESS","features":[365]},{"name":"SPDRP_BASE_CONTAINERID","features":[365]},{"name":"SPDRP_BUSNUMBER","features":[365]},{"name":"SPDRP_BUSTYPEGUID","features":[365]},{"name":"SPDRP_CAPABILITIES","features":[365]},{"name":"SPDRP_CHARACTERISTICS","features":[365]},{"name":"SPDRP_CLASS","features":[365]},{"name":"SPDRP_CLASSGUID","features":[365]},{"name":"SPDRP_COMPATIBLEIDS","features":[365]},{"name":"SPDRP_CONFIGFLAGS","features":[365]},{"name":"SPDRP_DEVICEDESC","features":[365]},{"name":"SPDRP_DEVICE_POWER_DATA","features":[365]},{"name":"SPDRP_DEVTYPE","features":[365]},{"name":"SPDRP_DRIVER","features":[365]},{"name":"SPDRP_ENUMERATOR_NAME","features":[365]},{"name":"SPDRP_EXCLUSIVE","features":[365]},{"name":"SPDRP_FRIENDLYNAME","features":[365]},{"name":"SPDRP_HARDWAREID","features":[365]},{"name":"SPDRP_INSTALL_STATE","features":[365]},{"name":"SPDRP_LEGACYBUSTYPE","features":[365]},{"name":"SPDRP_LOCATION_INFORMATION","features":[365]},{"name":"SPDRP_LOCATION_PATHS","features":[365]},{"name":"SPDRP_LOWERFILTERS","features":[365]},{"name":"SPDRP_MAXIMUM_PROPERTY","features":[365]},{"name":"SPDRP_MFG","features":[365]},{"name":"SPDRP_PHYSICAL_DEVICE_OBJECT_NAME","features":[365]},{"name":"SPDRP_REMOVAL_POLICY","features":[365]},{"name":"SPDRP_REMOVAL_POLICY_HW_DEFAULT","features":[365]},{"name":"SPDRP_REMOVAL_POLICY_OVERRIDE","features":[365]},{"name":"SPDRP_SECURITY","features":[365]},{"name":"SPDRP_SECURITY_SDS","features":[365]},{"name":"SPDRP_SERVICE","features":[365]},{"name":"SPDRP_UI_NUMBER","features":[365]},{"name":"SPDRP_UI_NUMBER_DESC_FORMAT","features":[365]},{"name":"SPDRP_UNUSED0","features":[365]},{"name":"SPDRP_UNUSED1","features":[365]},{"name":"SPDRP_UNUSED2","features":[365]},{"name":"SPDRP_UPPERFILTERS","features":[365]},{"name":"SPDSL_DISALLOW_NEGATIVE_ADJUST","features":[365]},{"name":"SPDSL_IGNORE_DISK","features":[365]},{"name":"SPFILELOG_FORCENEW","features":[365]},{"name":"SPFILELOG_OEMFILE","features":[365]},{"name":"SPFILELOG_QUERYONLY","features":[365]},{"name":"SPFILELOG_SYSTEMLOG","features":[365]},{"name":"SPFILENOTIFY_BACKUPERROR","features":[365]},{"name":"SPFILENOTIFY_CABINETINFO","features":[365]},{"name":"SPFILENOTIFY_COPYERROR","features":[365]},{"name":"SPFILENOTIFY_DELETEERROR","features":[365]},{"name":"SPFILENOTIFY_ENDBACKUP","features":[365]},{"name":"SPFILENOTIFY_ENDCOPY","features":[365]},{"name":"SPFILENOTIFY_ENDDELETE","features":[365]},{"name":"SPFILENOTIFY_ENDQUEUE","features":[365]},{"name":"SPFILENOTIFY_ENDREGISTRATION","features":[365]},{"name":"SPFILENOTIFY_ENDRENAME","features":[365]},{"name":"SPFILENOTIFY_ENDSUBQUEUE","features":[365]},{"name":"SPFILENOTIFY_FILEEXTRACTED","features":[365]},{"name":"SPFILENOTIFY_FILEINCABINET","features":[365]},{"name":"SPFILENOTIFY_FILEOPDELAYED","features":[365]},{"name":"SPFILENOTIFY_LANGMISMATCH","features":[365]},{"name":"SPFILENOTIFY_NEEDMEDIA","features":[365]},{"name":"SPFILENOTIFY_NEEDNEWCABINET","features":[365]},{"name":"SPFILENOTIFY_QUEUESCAN","features":[365]},{"name":"SPFILENOTIFY_QUEUESCAN_EX","features":[365]},{"name":"SPFILENOTIFY_QUEUESCAN_SIGNERINFO","features":[365]},{"name":"SPFILENOTIFY_RENAMEERROR","features":[365]},{"name":"SPFILENOTIFY_STARTBACKUP","features":[365]},{"name":"SPFILENOTIFY_STARTCOPY","features":[365]},{"name":"SPFILENOTIFY_STARTDELETE","features":[365]},{"name":"SPFILENOTIFY_STARTQUEUE","features":[365]},{"name":"SPFILENOTIFY_STARTREGISTRATION","features":[365]},{"name":"SPFILENOTIFY_STARTRENAME","features":[365]},{"name":"SPFILENOTIFY_STARTSUBQUEUE","features":[365]},{"name":"SPFILENOTIFY_TARGETEXISTS","features":[365]},{"name":"SPFILENOTIFY_TARGETNEWER","features":[365]},{"name":"SPFILEQ_FILE_IN_USE","features":[365]},{"name":"SPFILEQ_REBOOT_IN_PROGRESS","features":[365]},{"name":"SPFILEQ_REBOOT_RECOMMENDED","features":[365]},{"name":"SPID_ACTIVE","features":[365]},{"name":"SPID_DEFAULT","features":[365]},{"name":"SPID_REMOVED","features":[365]},{"name":"SPINST_ALL","features":[365]},{"name":"SPINST_BITREG","features":[365]},{"name":"SPINST_COPYINF","features":[365]},{"name":"SPINST_DEVICEINSTALL","features":[365]},{"name":"SPINST_FILES","features":[365]},{"name":"SPINST_INI2REG","features":[365]},{"name":"SPINST_INIFILES","features":[365]},{"name":"SPINST_LOGCONFIG","features":[365]},{"name":"SPINST_LOGCONFIGS_ARE_OVERRIDES","features":[365]},{"name":"SPINST_LOGCONFIG_IS_FORCED","features":[365]},{"name":"SPINST_PROFILEITEMS","features":[365]},{"name":"SPINST_PROPERTIES","features":[365]},{"name":"SPINST_REGISTERCALLBACKAWARE","features":[365]},{"name":"SPINST_REGISTRY","features":[365]},{"name":"SPINST_REGSVR","features":[365]},{"name":"SPINST_SINGLESECTION","features":[365]},{"name":"SPINST_UNREGSVR","features":[365]},{"name":"SPINT_ACTIVE","features":[365]},{"name":"SPINT_DEFAULT","features":[365]},{"name":"SPINT_REMOVED","features":[365]},{"name":"SPOST_MAX","features":[365]},{"name":"SPOST_NONE","features":[365]},{"name":"SPOST_PATH","features":[365]},{"name":"SPOST_URL","features":[365]},{"name":"SPPSR_ENUM_ADV_DEVICE_PROPERTIES","features":[365]},{"name":"SPPSR_ENUM_BASIC_DEVICE_PROPERTIES","features":[365]},{"name":"SPPSR_SELECT_DEVICE_RESOURCES","features":[365]},{"name":"SPQ_DELAYED_COPY","features":[365]},{"name":"SPQ_FLAG_ABORT_IF_UNSIGNED","features":[365]},{"name":"SPQ_FLAG_BACKUP_AWARE","features":[365]},{"name":"SPQ_FLAG_DO_SHUFFLEMOVE","features":[365]},{"name":"SPQ_FLAG_FILES_MODIFIED","features":[365]},{"name":"SPQ_FLAG_VALID","features":[365]},{"name":"SPQ_SCAN_ACTIVATE_DRP","features":[365]},{"name":"SPQ_SCAN_FILE_COMPARISON","features":[365]},{"name":"SPQ_SCAN_FILE_PRESENCE","features":[365]},{"name":"SPQ_SCAN_FILE_PRESENCE_WITHOUT_SOURCE","features":[365]},{"name":"SPQ_SCAN_FILE_VALIDITY","features":[365]},{"name":"SPQ_SCAN_INFORM_USER","features":[365]},{"name":"SPQ_SCAN_PRUNE_COPY_QUEUE","features":[365]},{"name":"SPQ_SCAN_PRUNE_DELREN","features":[365]},{"name":"SPQ_SCAN_USE_CALLBACK","features":[365]},{"name":"SPQ_SCAN_USE_CALLBACKEX","features":[365]},{"name":"SPQ_SCAN_USE_CALLBACK_SIGNERINFO","features":[365]},{"name":"SPRDI_FIND_DUPS","features":[365]},{"name":"SPREG_DLLINSTALL","features":[365]},{"name":"SPREG_GETPROCADDR","features":[365]},{"name":"SPREG_LOADLIBRARY","features":[365]},{"name":"SPREG_REGSVR","features":[365]},{"name":"SPREG_SUCCESS","features":[365]},{"name":"SPREG_TIMEOUT","features":[365]},{"name":"SPREG_UNKNOWN","features":[365]},{"name":"SPSVCINST_ASSOCSERVICE","features":[365]},{"name":"SPSVCINST_CLOBBER_SECURITY","features":[365]},{"name":"SPSVCINST_DELETEEVENTLOGENTRY","features":[365]},{"name":"SPSVCINST_FLAGS","features":[365]},{"name":"SPSVCINST_NOCLOBBER_DELAYEDAUTOSTART","features":[365]},{"name":"SPSVCINST_NOCLOBBER_DEPENDENCIES","features":[365]},{"name":"SPSVCINST_NOCLOBBER_DESCRIPTION","features":[365]},{"name":"SPSVCINST_NOCLOBBER_DISPLAYNAME","features":[365]},{"name":"SPSVCINST_NOCLOBBER_ERRORCONTROL","features":[365]},{"name":"SPSVCINST_NOCLOBBER_FAILUREACTIONS","features":[365]},{"name":"SPSVCINST_NOCLOBBER_LOADORDERGROUP","features":[365]},{"name":"SPSVCINST_NOCLOBBER_REQUIREDPRIVILEGES","features":[365]},{"name":"SPSVCINST_NOCLOBBER_SERVICESIDTYPE","features":[365]},{"name":"SPSVCINST_NOCLOBBER_STARTTYPE","features":[365]},{"name":"SPSVCINST_NOCLOBBER_TRIGGERS","features":[365]},{"name":"SPSVCINST_STARTSERVICE","features":[365]},{"name":"SPSVCINST_STOPSERVICE","features":[365]},{"name":"SPSVCINST_TAGTOFRONT","features":[365]},{"name":"SPSVCINST_UNIQUE_NAME","features":[365]},{"name":"SPWPT_SELECTDEVICE","features":[365]},{"name":"SPWP_USE_DEVINFO_DATA","features":[365]},{"name":"SP_ALTPLATFORM_FLAGS_SUITE_MASK","features":[365]},{"name":"SP_ALTPLATFORM_FLAGS_VERSION_RANGE","features":[365]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[365,334]},{"name":"SP_ALTPLATFORM_INFO_V1","features":[365,334]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[365,334,336]},{"name":"SP_ALTPLATFORM_INFO_V2","features":[365,334,336]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[365]},{"name":"SP_ALTPLATFORM_INFO_V3","features":[365]},{"name":"SP_BACKUP_BACKUPPASS","features":[365]},{"name":"SP_BACKUP_BOOTFILE","features":[365]},{"name":"SP_BACKUP_DEMANDPASS","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_A","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V1_W","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_A","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[365]},{"name":"SP_BACKUP_QUEUE_PARAMS_V2_W","features":[365]},{"name":"SP_BACKUP_SPECIAL","features":[365]},{"name":"SP_CLASSIMAGELIST_DATA","features":[365,355]},{"name":"SP_CLASSIMAGELIST_DATA","features":[365,355]},{"name":"SP_CLASSINSTALL_HEADER","features":[365]},{"name":"SP_CLASSINSTALL_HEADER","features":[365]},{"name":"SP_COPY_ALREADYDECOMP","features":[365]},{"name":"SP_COPY_DELETESOURCE","features":[365]},{"name":"SP_COPY_FORCE_IN_USE","features":[365]},{"name":"SP_COPY_FORCE_NEWER","features":[365]},{"name":"SP_COPY_FORCE_NOOVERWRITE","features":[365]},{"name":"SP_COPY_HARDLINK","features":[365]},{"name":"SP_COPY_INBOX_INF","features":[365]},{"name":"SP_COPY_IN_USE_NEEDS_REBOOT","features":[365]},{"name":"SP_COPY_IN_USE_TRY_RENAME","features":[365]},{"name":"SP_COPY_LANGUAGEAWARE","features":[365]},{"name":"SP_COPY_NEWER","features":[365]},{"name":"SP_COPY_NEWER_ONLY","features":[365]},{"name":"SP_COPY_NEWER_OR_SAME","features":[365]},{"name":"SP_COPY_NOBROWSE","features":[365]},{"name":"SP_COPY_NODECOMP","features":[365]},{"name":"SP_COPY_NOOVERWRITE","features":[365]},{"name":"SP_COPY_NOPRUNE","features":[365]},{"name":"SP_COPY_NOSKIP","features":[365]},{"name":"SP_COPY_OEMINF_CATALOG_ONLY","features":[365]},{"name":"SP_COPY_OEM_F6_INF","features":[365]},{"name":"SP_COPY_PNPLOCKED","features":[365]},{"name":"SP_COPY_REPLACEONLY","features":[365]},{"name":"SP_COPY_REPLACE_BOOT_FILE","features":[365]},{"name":"SP_COPY_RESERVED","features":[365]},{"name":"SP_COPY_SOURCEPATH_ABSOLUTE","features":[365]},{"name":"SP_COPY_SOURCE_ABSOLUTE","features":[365]},{"name":"SP_COPY_STYLE","features":[365]},{"name":"SP_COPY_WARNIFSKIP","features":[365]},{"name":"SP_COPY_WINDOWS_SIGNED","features":[365]},{"name":"SP_DETECTDEVICE_PARAMS","features":[365,305]},{"name":"SP_DETECTDEVICE_PARAMS","features":[365,305]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[365]},{"name":"SP_DEVICE_INTERFACE_DATA","features":[365]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[365]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_A","features":[365]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[365]},{"name":"SP_DEVICE_INTERFACE_DETAIL_DATA_W","features":[365]},{"name":"SP_DEVINFO_DATA","features":[365]},{"name":"SP_DEVINFO_DATA","features":[365]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[365,305]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_A","features":[365,305]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[365,305]},{"name":"SP_DEVINFO_LIST_DETAIL_DATA_W","features":[365,305]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[365,305]},{"name":"SP_DEVINSTALL_PARAMS_A","features":[365,305]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[365,305]},{"name":"SP_DEVINSTALL_PARAMS_W","features":[365,305]},{"name":"SP_DRVINFO_DATA_V1_A","features":[365]},{"name":"SP_DRVINFO_DATA_V1_A","features":[365]},{"name":"SP_DRVINFO_DATA_V1_W","features":[365]},{"name":"SP_DRVINFO_DATA_V1_W","features":[365]},{"name":"SP_DRVINFO_DATA_V2_A","features":[365,305]},{"name":"SP_DRVINFO_DATA_V2_A","features":[365,305]},{"name":"SP_DRVINFO_DATA_V2_W","features":[365,305]},{"name":"SP_DRVINFO_DATA_V2_W","features":[365,305]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[365,305]},{"name":"SP_DRVINFO_DETAIL_DATA_A","features":[365,305]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[365,305]},{"name":"SP_DRVINFO_DETAIL_DATA_W","features":[365,305]},{"name":"SP_DRVINSTALL_PARAMS","features":[365]},{"name":"SP_DRVINSTALL_PARAMS","features":[365]},{"name":"SP_ENABLECLASS_PARAMS","features":[365]},{"name":"SP_ENABLECLASS_PARAMS","features":[365]},{"name":"SP_FILE_COPY_PARAMS_A","features":[365]},{"name":"SP_FILE_COPY_PARAMS_A","features":[365]},{"name":"SP_FILE_COPY_PARAMS_W","features":[365]},{"name":"SP_FILE_COPY_PARAMS_W","features":[365]},{"name":"SP_FLAG_CABINETCONTINUATION","features":[365]},{"name":"SP_INF_INFORMATION","features":[365]},{"name":"SP_INF_INFORMATION","features":[365]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[365]},{"name":"SP_INF_SIGNER_INFO_V1_A","features":[365]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[365]},{"name":"SP_INF_SIGNER_INFO_V1_W","features":[365]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[365]},{"name":"SP_INF_SIGNER_INFO_V2_A","features":[365]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[365]},{"name":"SP_INF_SIGNER_INFO_V2_W","features":[365]},{"name":"SP_INSTALLWIZARD_DATA","features":[365,305,355]},{"name":"SP_INSTALLWIZARD_DATA","features":[365,305,355]},{"name":"SP_MAX_MACHINENAME_LENGTH","features":[365]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[365,305,355]},{"name":"SP_NEWDEVICEWIZARD_DATA","features":[365,305,355]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[365]},{"name":"SP_ORIGINAL_FILE_INFO_A","features":[365]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[365]},{"name":"SP_ORIGINAL_FILE_INFO_W","features":[365]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_A","features":[365]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[365]},{"name":"SP_POWERMESSAGEWAKE_PARAMS_W","features":[365]},{"name":"SP_PROPCHANGE_PARAMS","features":[365]},{"name":"SP_PROPCHANGE_PARAMS","features":[365]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[365]},{"name":"SP_PROPSHEETPAGE_REQUEST","features":[365]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[365]},{"name":"SP_REGISTER_CONTROL_STATUSA","features":[365]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[365]},{"name":"SP_REGISTER_CONTROL_STATUSW","features":[365]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[365]},{"name":"SP_REMOVEDEVICE_PARAMS","features":[365]},{"name":"SP_SELECTDEVICE_PARAMS_A","features":[365]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[365]},{"name":"SP_SELECTDEVICE_PARAMS_W","features":[365]},{"name":"SP_TROUBLESHOOTER_PARAMS_A","features":[365]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[365]},{"name":"SP_TROUBLESHOOTER_PARAMS_W","features":[365]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[365]},{"name":"SP_UNREMOVEDEVICE_PARAMS","features":[365]},{"name":"SRCINFO_DESCRIPTION","features":[365]},{"name":"SRCINFO_FLAGS","features":[365]},{"name":"SRCINFO_PATH","features":[365]},{"name":"SRCINFO_TAGFILE","features":[365]},{"name":"SRCINFO_TAGFILE2","features":[365]},{"name":"SRCLIST_APPEND","features":[365]},{"name":"SRCLIST_NOBROWSE","features":[365]},{"name":"SRCLIST_NOSTRIPPLATFORM","features":[365]},{"name":"SRCLIST_SUBDIRS","features":[365]},{"name":"SRCLIST_SYSIFADMIN","features":[365]},{"name":"SRCLIST_SYSTEM","features":[365]},{"name":"SRCLIST_TEMPORARY","features":[365]},{"name":"SRCLIST_USER","features":[365]},{"name":"SRC_FLAGS_CABFILE","features":[365]},{"name":"SUOI_FORCEDELETE","features":[365]},{"name":"SUOI_INTERNAL1","features":[365]},{"name":"SZ_KEY_ADDAUTOLOGGER","features":[365]},{"name":"SZ_KEY_ADDAUTOLOGGERPROVIDER","features":[365]},{"name":"SZ_KEY_ADDCHANNEL","features":[365]},{"name":"SZ_KEY_ADDEVENTPROVIDER","features":[365]},{"name":"SZ_KEY_ADDFILTER","features":[365]},{"name":"SZ_KEY_ADDIME","features":[365]},{"name":"SZ_KEY_ADDINTERFACE","features":[365]},{"name":"SZ_KEY_ADDPOWERSETTING","features":[365]},{"name":"SZ_KEY_ADDPROP","features":[365]},{"name":"SZ_KEY_ADDREG","features":[365]},{"name":"SZ_KEY_ADDREGNOCLOBBER","features":[365]},{"name":"SZ_KEY_ADDSERVICE","features":[365]},{"name":"SZ_KEY_ADDTRIGGER","features":[365]},{"name":"SZ_KEY_BITREG","features":[365]},{"name":"SZ_KEY_CLEANONLY","features":[365]},{"name":"SZ_KEY_COPYFILES","features":[365]},{"name":"SZ_KEY_COPYINF","features":[365]},{"name":"SZ_KEY_DEFAULTOPTION","features":[365]},{"name":"SZ_KEY_DEFDESTDIR","features":[365]},{"name":"SZ_KEY_DELFILES","features":[365]},{"name":"SZ_KEY_DELIME","features":[365]},{"name":"SZ_KEY_DELPROP","features":[365]},{"name":"SZ_KEY_DELREG","features":[365]},{"name":"SZ_KEY_DELSERVICE","features":[365]},{"name":"SZ_KEY_DESTDIRS","features":[365]},{"name":"SZ_KEY_EXCLUDEID","features":[365]},{"name":"SZ_KEY_FAILUREACTIONS","features":[365]},{"name":"SZ_KEY_FEATURESCORE","features":[365]},{"name":"SZ_KEY_FILTERLEVEL","features":[365]},{"name":"SZ_KEY_FILTERPOSITION","features":[365]},{"name":"SZ_KEY_HARDWARE","features":[365]},{"name":"SZ_KEY_IMPORTCHANNEL","features":[365]},{"name":"SZ_KEY_INI2REG","features":[365]},{"name":"SZ_KEY_LAYOUT_FILE","features":[365]},{"name":"SZ_KEY_LDIDOEM","features":[365]},{"name":"SZ_KEY_LFN_SECTION","features":[365]},{"name":"SZ_KEY_LISTOPTIONS","features":[365]},{"name":"SZ_KEY_LOGCONFIG","features":[365]},{"name":"SZ_KEY_MODULES","features":[365]},{"name":"SZ_KEY_OPTIONDESC","features":[365]},{"name":"SZ_KEY_PHASE1","features":[365]},{"name":"SZ_KEY_PROFILEITEMS","features":[365]},{"name":"SZ_KEY_REGSVR","features":[365]},{"name":"SZ_KEY_RENFILES","features":[365]},{"name":"SZ_KEY_SFN_SECTION","features":[365]},{"name":"SZ_KEY_SRCDISKFILES","features":[365]},{"name":"SZ_KEY_SRCDISKNAMES","features":[365]},{"name":"SZ_KEY_STRINGS","features":[365]},{"name":"SZ_KEY_UNREGSVR","features":[365]},{"name":"SZ_KEY_UPDATEAUTOLOGGER","features":[365]},{"name":"SZ_KEY_UPDATEINIFIELDS","features":[365]},{"name":"SZ_KEY_UPDATEINIS","features":[365]},{"name":"SZ_KEY_UPGRADEONLY","features":[365]},{"name":"SetupAddInstallSectionToDiskSpaceListA","features":[365,305]},{"name":"SetupAddInstallSectionToDiskSpaceListW","features":[365,305]},{"name":"SetupAddSectionToDiskSpaceListA","features":[365,305]},{"name":"SetupAddSectionToDiskSpaceListW","features":[365,305]},{"name":"SetupAddToDiskSpaceListA","features":[365,305]},{"name":"SetupAddToDiskSpaceListW","features":[365,305]},{"name":"SetupAddToSourceListA","features":[365,305]},{"name":"SetupAddToSourceListW","features":[365,305]},{"name":"SetupAdjustDiskSpaceListA","features":[365,305]},{"name":"SetupAdjustDiskSpaceListW","features":[365,305]},{"name":"SetupBackupErrorA","features":[365,305]},{"name":"SetupBackupErrorW","features":[365,305]},{"name":"SetupCancelTemporarySourceList","features":[365,305]},{"name":"SetupCloseFileQueue","features":[365,305]},{"name":"SetupCloseInfFile","features":[365]},{"name":"SetupCloseLog","features":[365]},{"name":"SetupCommitFileQueueA","features":[365,305]},{"name":"SetupCommitFileQueueW","features":[365,305]},{"name":"SetupConfigureWmiFromInfSectionA","features":[365,305]},{"name":"SetupConfigureWmiFromInfSectionW","features":[365,305]},{"name":"SetupCopyErrorA","features":[365,305]},{"name":"SetupCopyErrorW","features":[365,305]},{"name":"SetupCopyOEMInfA","features":[365,305]},{"name":"SetupCopyOEMInfW","features":[365,305]},{"name":"SetupCreateDiskSpaceListA","features":[365]},{"name":"SetupCreateDiskSpaceListW","features":[365]},{"name":"SetupDecompressOrCopyFileA","features":[365]},{"name":"SetupDecompressOrCopyFileW","features":[365]},{"name":"SetupDefaultQueueCallbackA","features":[365]},{"name":"SetupDefaultQueueCallbackW","features":[365]},{"name":"SetupDeleteErrorA","features":[365,305]},{"name":"SetupDeleteErrorW","features":[365,305]},{"name":"SetupDestroyDiskSpaceList","features":[365,305]},{"name":"SetupDiAskForOEMDisk","features":[365,305]},{"name":"SetupDiBuildClassInfoList","features":[365,305]},{"name":"SetupDiBuildClassInfoListExA","features":[365,305]},{"name":"SetupDiBuildClassInfoListExW","features":[365,305]},{"name":"SetupDiBuildDriverInfoList","features":[365,305]},{"name":"SetupDiCallClassInstaller","features":[365,305]},{"name":"SetupDiCancelDriverInfoSearch","features":[365,305]},{"name":"SetupDiChangeState","features":[365,305]},{"name":"SetupDiClassGuidsFromNameA","features":[365,305]},{"name":"SetupDiClassGuidsFromNameExA","features":[365,305]},{"name":"SetupDiClassGuidsFromNameExW","features":[365,305]},{"name":"SetupDiClassGuidsFromNameW","features":[365,305]},{"name":"SetupDiClassNameFromGuidA","features":[365,305]},{"name":"SetupDiClassNameFromGuidExA","features":[365,305]},{"name":"SetupDiClassNameFromGuidExW","features":[365,305]},{"name":"SetupDiClassNameFromGuidW","features":[365,305]},{"name":"SetupDiCreateDevRegKeyA","features":[365,366]},{"name":"SetupDiCreateDevRegKeyW","features":[365,366]},{"name":"SetupDiCreateDeviceInfoA","features":[365,305]},{"name":"SetupDiCreateDeviceInfoList","features":[365,305]},{"name":"SetupDiCreateDeviceInfoListExA","features":[365,305]},{"name":"SetupDiCreateDeviceInfoListExW","features":[365,305]},{"name":"SetupDiCreateDeviceInfoW","features":[365,305]},{"name":"SetupDiCreateDeviceInterfaceA","features":[365,305]},{"name":"SetupDiCreateDeviceInterfaceRegKeyA","features":[365,366]},{"name":"SetupDiCreateDeviceInterfaceRegKeyW","features":[365,366]},{"name":"SetupDiCreateDeviceInterfaceW","features":[365,305]},{"name":"SetupDiDeleteDevRegKey","features":[365,305]},{"name":"SetupDiDeleteDeviceInfo","features":[365,305]},{"name":"SetupDiDeleteDeviceInterfaceData","features":[365,305]},{"name":"SetupDiDeleteDeviceInterfaceRegKey","features":[365,305]},{"name":"SetupDiDestroyClassImageList","features":[365,305,355]},{"name":"SetupDiDestroyDeviceInfoList","features":[365,305]},{"name":"SetupDiDestroyDriverInfoList","features":[365,305]},{"name":"SetupDiDrawMiniIcon","features":[365,305,316]},{"name":"SetupDiEnumDeviceInfo","features":[365,305]},{"name":"SetupDiEnumDeviceInterfaces","features":[365,305]},{"name":"SetupDiEnumDriverInfoA","features":[365,305]},{"name":"SetupDiEnumDriverInfoW","features":[365,305]},{"name":"SetupDiGetActualModelsSectionA","features":[365,305,334,336]},{"name":"SetupDiGetActualModelsSectionW","features":[365,305,334,336]},{"name":"SetupDiGetActualSectionToInstallA","features":[365,305]},{"name":"SetupDiGetActualSectionToInstallExA","features":[365,305,334,336]},{"name":"SetupDiGetActualSectionToInstallExW","features":[365,305,334,336]},{"name":"SetupDiGetActualSectionToInstallW","features":[365,305]},{"name":"SetupDiGetClassBitmapIndex","features":[365,305]},{"name":"SetupDiGetClassDescriptionA","features":[365,305]},{"name":"SetupDiGetClassDescriptionExA","features":[365,305]},{"name":"SetupDiGetClassDescriptionExW","features":[365,305]},{"name":"SetupDiGetClassDescriptionW","features":[365,305]},{"name":"SetupDiGetClassDevPropertySheetsA","features":[365,305,316,355,367]},{"name":"SetupDiGetClassDevPropertySheetsW","features":[365,305,316,355,367]},{"name":"SetupDiGetClassDevsA","features":[365,305]},{"name":"SetupDiGetClassDevsExA","features":[365,305]},{"name":"SetupDiGetClassDevsExW","features":[365,305]},{"name":"SetupDiGetClassDevsW","features":[365,305]},{"name":"SetupDiGetClassImageIndex","features":[365,305,355]},{"name":"SetupDiGetClassImageList","features":[365,305,355]},{"name":"SetupDiGetClassImageListExA","features":[365,305,355]},{"name":"SetupDiGetClassImageListExW","features":[365,305,355]},{"name":"SetupDiGetClassInstallParamsA","features":[365,305]},{"name":"SetupDiGetClassInstallParamsW","features":[365,305]},{"name":"SetupDiGetClassPropertyExW","features":[365,303,305]},{"name":"SetupDiGetClassPropertyKeys","features":[365,303,305]},{"name":"SetupDiGetClassPropertyKeysExW","features":[365,303,305]},{"name":"SetupDiGetClassPropertyW","features":[365,303,305]},{"name":"SetupDiGetClassRegistryPropertyA","features":[365,305]},{"name":"SetupDiGetClassRegistryPropertyW","features":[365,305]},{"name":"SetupDiGetCustomDevicePropertyA","features":[365,305]},{"name":"SetupDiGetCustomDevicePropertyW","features":[365,305]},{"name":"SetupDiGetDeviceInfoListClass","features":[365,305]},{"name":"SetupDiGetDeviceInfoListDetailA","features":[365,305]},{"name":"SetupDiGetDeviceInfoListDetailW","features":[365,305]},{"name":"SetupDiGetDeviceInstallParamsA","features":[365,305]},{"name":"SetupDiGetDeviceInstallParamsW","features":[365,305]},{"name":"SetupDiGetDeviceInstanceIdA","features":[365,305]},{"name":"SetupDiGetDeviceInstanceIdW","features":[365,305]},{"name":"SetupDiGetDeviceInterfaceAlias","features":[365,305]},{"name":"SetupDiGetDeviceInterfaceDetailA","features":[365,305]},{"name":"SetupDiGetDeviceInterfaceDetailW","features":[365,305]},{"name":"SetupDiGetDeviceInterfacePropertyKeys","features":[365,303,305]},{"name":"SetupDiGetDeviceInterfacePropertyW","features":[365,303,305]},{"name":"SetupDiGetDevicePropertyKeys","features":[365,303,305]},{"name":"SetupDiGetDevicePropertyW","features":[365,303,305]},{"name":"SetupDiGetDeviceRegistryPropertyA","features":[365,305]},{"name":"SetupDiGetDeviceRegistryPropertyW","features":[365,305]},{"name":"SetupDiGetDriverInfoDetailA","features":[365,305]},{"name":"SetupDiGetDriverInfoDetailW","features":[365,305]},{"name":"SetupDiGetDriverInstallParamsA","features":[365,305]},{"name":"SetupDiGetDriverInstallParamsW","features":[365,305]},{"name":"SetupDiGetHwProfileFriendlyNameA","features":[365,305]},{"name":"SetupDiGetHwProfileFriendlyNameExA","features":[365,305]},{"name":"SetupDiGetHwProfileFriendlyNameExW","features":[365,305]},{"name":"SetupDiGetHwProfileFriendlyNameW","features":[365,305]},{"name":"SetupDiGetHwProfileList","features":[365,305]},{"name":"SetupDiGetHwProfileListExA","features":[365,305]},{"name":"SetupDiGetHwProfileListExW","features":[365,305]},{"name":"SetupDiGetINFClassA","features":[365,305]},{"name":"SetupDiGetINFClassW","features":[365,305]},{"name":"SetupDiGetSelectedDevice","features":[365,305]},{"name":"SetupDiGetSelectedDriverA","features":[365,305]},{"name":"SetupDiGetSelectedDriverW","features":[365,305]},{"name":"SetupDiGetWizardPage","features":[365,305,355]},{"name":"SetupDiInstallClassA","features":[365,305]},{"name":"SetupDiInstallClassExA","features":[365,305]},{"name":"SetupDiInstallClassExW","features":[365,305]},{"name":"SetupDiInstallClassW","features":[365,305]},{"name":"SetupDiInstallDevice","features":[365,305]},{"name":"SetupDiInstallDeviceInterfaces","features":[365,305]},{"name":"SetupDiInstallDriverFiles","features":[365,305]},{"name":"SetupDiLoadClassIcon","features":[365,305,367]},{"name":"SetupDiLoadDeviceIcon","features":[365,305,367]},{"name":"SetupDiOpenClassRegKey","features":[365,366]},{"name":"SetupDiOpenClassRegKeyExA","features":[365,366]},{"name":"SetupDiOpenClassRegKeyExW","features":[365,366]},{"name":"SetupDiOpenDevRegKey","features":[365,366]},{"name":"SetupDiOpenDeviceInfoA","features":[365,305]},{"name":"SetupDiOpenDeviceInfoW","features":[365,305]},{"name":"SetupDiOpenDeviceInterfaceA","features":[365,305]},{"name":"SetupDiOpenDeviceInterfaceRegKey","features":[365,366]},{"name":"SetupDiOpenDeviceInterfaceW","features":[365,305]},{"name":"SetupDiRegisterCoDeviceInstallers","features":[365,305]},{"name":"SetupDiRegisterDeviceInfo","features":[365,305]},{"name":"SetupDiRemoveDevice","features":[365,305]},{"name":"SetupDiRemoveDeviceInterface","features":[365,305]},{"name":"SetupDiRestartDevices","features":[365,305]},{"name":"SetupDiSelectBestCompatDrv","features":[365,305]},{"name":"SetupDiSelectDevice","features":[365,305]},{"name":"SetupDiSelectOEMDrv","features":[365,305]},{"name":"SetupDiSetClassInstallParamsA","features":[365,305]},{"name":"SetupDiSetClassInstallParamsW","features":[365,305]},{"name":"SetupDiSetClassPropertyExW","features":[365,303,305]},{"name":"SetupDiSetClassPropertyW","features":[365,303,305]},{"name":"SetupDiSetClassRegistryPropertyA","features":[365,305]},{"name":"SetupDiSetClassRegistryPropertyW","features":[365,305]},{"name":"SetupDiSetDeviceInstallParamsA","features":[365,305]},{"name":"SetupDiSetDeviceInstallParamsW","features":[365,305]},{"name":"SetupDiSetDeviceInterfaceDefault","features":[365,305]},{"name":"SetupDiSetDeviceInterfacePropertyW","features":[365,303,305]},{"name":"SetupDiSetDevicePropertyW","features":[365,303,305]},{"name":"SetupDiSetDeviceRegistryPropertyA","features":[365,305]},{"name":"SetupDiSetDeviceRegistryPropertyW","features":[365,305]},{"name":"SetupDiSetDriverInstallParamsA","features":[365,305]},{"name":"SetupDiSetDriverInstallParamsW","features":[365,305]},{"name":"SetupDiSetSelectedDevice","features":[365,305]},{"name":"SetupDiSetSelectedDriverA","features":[365,305]},{"name":"SetupDiSetSelectedDriverW","features":[365,305]},{"name":"SetupDiUnremoveDevice","features":[365,305]},{"name":"SetupDuplicateDiskSpaceListA","features":[365]},{"name":"SetupDuplicateDiskSpaceListW","features":[365]},{"name":"SetupEnumInfSectionsA","features":[365,305]},{"name":"SetupEnumInfSectionsW","features":[365,305]},{"name":"SetupFileLogChecksum","features":[365]},{"name":"SetupFileLogDiskDescription","features":[365]},{"name":"SetupFileLogDiskTagfile","features":[365]},{"name":"SetupFileLogInfo","features":[365]},{"name":"SetupFileLogMax","features":[365]},{"name":"SetupFileLogOtherInfo","features":[365]},{"name":"SetupFileLogSourceFilename","features":[365]},{"name":"SetupFindFirstLineA","features":[365,305]},{"name":"SetupFindFirstLineW","features":[365,305]},{"name":"SetupFindNextLine","features":[365,305]},{"name":"SetupFindNextMatchLineA","features":[365,305]},{"name":"SetupFindNextMatchLineW","features":[365,305]},{"name":"SetupFreeSourceListA","features":[365,305]},{"name":"SetupFreeSourceListW","features":[365,305]},{"name":"SetupGetBackupInformationA","features":[365,305]},{"name":"SetupGetBackupInformationW","features":[365,305]},{"name":"SetupGetBinaryField","features":[365,305]},{"name":"SetupGetFieldCount","features":[365]},{"name":"SetupGetFileCompressionInfoA","features":[365]},{"name":"SetupGetFileCompressionInfoExA","features":[365,305]},{"name":"SetupGetFileCompressionInfoExW","features":[365,305]},{"name":"SetupGetFileCompressionInfoW","features":[365]},{"name":"SetupGetFileQueueCount","features":[365,305]},{"name":"SetupGetFileQueueFlags","features":[365,305]},{"name":"SetupGetInfDriverStoreLocationA","features":[365,305,334,336]},{"name":"SetupGetInfDriverStoreLocationW","features":[365,305,334,336]},{"name":"SetupGetInfFileListA","features":[365,305]},{"name":"SetupGetInfFileListW","features":[365,305]},{"name":"SetupGetInfInformationA","features":[365,305]},{"name":"SetupGetInfInformationW","features":[365,305]},{"name":"SetupGetInfPublishedNameA","features":[365,305]},{"name":"SetupGetInfPublishedNameW","features":[365,305]},{"name":"SetupGetIntField","features":[365,305]},{"name":"SetupGetLineByIndexA","features":[365,305]},{"name":"SetupGetLineByIndexW","features":[365,305]},{"name":"SetupGetLineCountA","features":[365]},{"name":"SetupGetLineCountW","features":[365]},{"name":"SetupGetLineTextA","features":[365,305]},{"name":"SetupGetLineTextW","features":[365,305]},{"name":"SetupGetMultiSzFieldA","features":[365,305]},{"name":"SetupGetMultiSzFieldW","features":[365,305]},{"name":"SetupGetNonInteractiveMode","features":[365,305]},{"name":"SetupGetSourceFileLocationA","features":[365,305]},{"name":"SetupGetSourceFileLocationW","features":[365,305]},{"name":"SetupGetSourceFileSizeA","features":[365,305]},{"name":"SetupGetSourceFileSizeW","features":[365,305]},{"name":"SetupGetSourceInfoA","features":[365,305]},{"name":"SetupGetSourceInfoW","features":[365,305]},{"name":"SetupGetStringFieldA","features":[365,305]},{"name":"SetupGetStringFieldW","features":[365,305]},{"name":"SetupGetTargetPathA","features":[365,305]},{"name":"SetupGetTargetPathW","features":[365,305]},{"name":"SetupGetThreadLogToken","features":[365]},{"name":"SetupInitDefaultQueueCallback","features":[365,305]},{"name":"SetupInitDefaultQueueCallbackEx","features":[365,305]},{"name":"SetupInitializeFileLogA","features":[365]},{"name":"SetupInitializeFileLogW","features":[365]},{"name":"SetupInstallFileA","features":[365,305]},{"name":"SetupInstallFileExA","features":[365,305]},{"name":"SetupInstallFileExW","features":[365,305]},{"name":"SetupInstallFileW","features":[365,305]},{"name":"SetupInstallFilesFromInfSectionA","features":[365,305]},{"name":"SetupInstallFilesFromInfSectionW","features":[365,305]},{"name":"SetupInstallFromInfSectionA","features":[365,305,366]},{"name":"SetupInstallFromInfSectionW","features":[365,305,366]},{"name":"SetupInstallServicesFromInfSectionA","features":[365,305]},{"name":"SetupInstallServicesFromInfSectionExA","features":[365,305]},{"name":"SetupInstallServicesFromInfSectionExW","features":[365,305]},{"name":"SetupInstallServicesFromInfSectionW","features":[365,305]},{"name":"SetupIterateCabinetA","features":[365,305]},{"name":"SetupIterateCabinetW","features":[365,305]},{"name":"SetupLogErrorA","features":[365,305]},{"name":"SetupLogErrorW","features":[365,305]},{"name":"SetupLogFileA","features":[365,305]},{"name":"SetupLogFileW","features":[365,305]},{"name":"SetupOpenAppendInfFileA","features":[365,305]},{"name":"SetupOpenAppendInfFileW","features":[365,305]},{"name":"SetupOpenFileQueue","features":[365]},{"name":"SetupOpenInfFileA","features":[365]},{"name":"SetupOpenInfFileW","features":[365]},{"name":"SetupOpenLog","features":[365,305]},{"name":"SetupOpenMasterInf","features":[365]},{"name":"SetupPrepareQueueForRestoreA","features":[365,305]},{"name":"SetupPrepareQueueForRestoreW","features":[365,305]},{"name":"SetupPromptForDiskA","features":[365,305]},{"name":"SetupPromptForDiskW","features":[365,305]},{"name":"SetupPromptReboot","features":[365,305]},{"name":"SetupQueryDrivesInDiskSpaceListA","features":[365,305]},{"name":"SetupQueryDrivesInDiskSpaceListW","features":[365,305]},{"name":"SetupQueryFileLogA","features":[365,305]},{"name":"SetupQueryFileLogW","features":[365,305]},{"name":"SetupQueryInfFileInformationA","features":[365,305]},{"name":"SetupQueryInfFileInformationW","features":[365,305]},{"name":"SetupQueryInfOriginalFileInformationA","features":[365,305,334,336]},{"name":"SetupQueryInfOriginalFileInformationW","features":[365,305,334,336]},{"name":"SetupQueryInfVersionInformationA","features":[365,305]},{"name":"SetupQueryInfVersionInformationW","features":[365,305]},{"name":"SetupQuerySourceListA","features":[365,305]},{"name":"SetupQuerySourceListW","features":[365,305]},{"name":"SetupQuerySpaceRequiredOnDriveA","features":[365,305]},{"name":"SetupQuerySpaceRequiredOnDriveW","features":[365,305]},{"name":"SetupQueueCopyA","features":[365,305]},{"name":"SetupQueueCopyIndirectA","features":[365,305]},{"name":"SetupQueueCopyIndirectW","features":[365,305]},{"name":"SetupQueueCopySectionA","features":[365,305]},{"name":"SetupQueueCopySectionW","features":[365,305]},{"name":"SetupQueueCopyW","features":[365,305]},{"name":"SetupQueueDefaultCopyA","features":[365,305]},{"name":"SetupQueueDefaultCopyW","features":[365,305]},{"name":"SetupQueueDeleteA","features":[365,305]},{"name":"SetupQueueDeleteSectionA","features":[365,305]},{"name":"SetupQueueDeleteSectionW","features":[365,305]},{"name":"SetupQueueDeleteW","features":[365,305]},{"name":"SetupQueueRenameA","features":[365,305]},{"name":"SetupQueueRenameSectionA","features":[365,305]},{"name":"SetupQueueRenameSectionW","features":[365,305]},{"name":"SetupQueueRenameW","features":[365,305]},{"name":"SetupRemoveFileLogEntryA","features":[365,305]},{"name":"SetupRemoveFileLogEntryW","features":[365,305]},{"name":"SetupRemoveFromDiskSpaceListA","features":[365,305]},{"name":"SetupRemoveFromDiskSpaceListW","features":[365,305]},{"name":"SetupRemoveFromSourceListA","features":[365,305]},{"name":"SetupRemoveFromSourceListW","features":[365,305]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListA","features":[365,305]},{"name":"SetupRemoveInstallSectionFromDiskSpaceListW","features":[365,305]},{"name":"SetupRemoveSectionFromDiskSpaceListA","features":[365,305]},{"name":"SetupRemoveSectionFromDiskSpaceListW","features":[365,305]},{"name":"SetupRenameErrorA","features":[365,305]},{"name":"SetupRenameErrorW","features":[365,305]},{"name":"SetupScanFileQueueA","features":[365,305]},{"name":"SetupScanFileQueueW","features":[365,305]},{"name":"SetupSetDirectoryIdA","features":[365,305]},{"name":"SetupSetDirectoryIdExA","features":[365,305]},{"name":"SetupSetDirectoryIdExW","features":[365,305]},{"name":"SetupSetDirectoryIdW","features":[365,305]},{"name":"SetupSetFileQueueAlternatePlatformA","features":[365,305,334,336]},{"name":"SetupSetFileQueueAlternatePlatformW","features":[365,305,334,336]},{"name":"SetupSetFileQueueFlags","features":[365,305]},{"name":"SetupSetNonInteractiveMode","features":[365,305]},{"name":"SetupSetPlatformPathOverrideA","features":[365,305]},{"name":"SetupSetPlatformPathOverrideW","features":[365,305]},{"name":"SetupSetSourceListA","features":[365,305]},{"name":"SetupSetSourceListW","features":[365,305]},{"name":"SetupSetThreadLogToken","features":[365]},{"name":"SetupTermDefaultQueueCallback","features":[365]},{"name":"SetupTerminateFileLog","features":[365,305]},{"name":"SetupUninstallNewlyCopiedInfs","features":[365,305]},{"name":"SetupUninstallOEMInfA","features":[365,305]},{"name":"SetupUninstallOEMInfW","features":[365,305]},{"name":"SetupVerifyInfFileA","features":[365,305,334,336]},{"name":"SetupVerifyInfFileW","features":[365,305,334,336]},{"name":"SetupWriteTextLog","features":[365]},{"name":"SetupWriteTextLogError","features":[365]},{"name":"SetupWriteTextLogInfLine","features":[365]},{"name":"UPDATEDRIVERFORPLUGANDPLAYDEVICES_FLAGS","features":[365]},{"name":"UpdateDriverForPlugAndPlayDevicesA","features":[365,305]},{"name":"UpdateDriverForPlugAndPlayDevicesW","features":[365,305]},{"name":"fDD_BYTE","features":[365]},{"name":"fDD_BYTE_AND_WORD","features":[365]},{"name":"fDD_BusMaster","features":[365]},{"name":"fDD_DWORD","features":[365]},{"name":"fDD_NoBusMaster","features":[365]},{"name":"fDD_TypeA","features":[365]},{"name":"fDD_TypeB","features":[365]},{"name":"fDD_TypeF","features":[365]},{"name":"fDD_TypeStandard","features":[365]},{"name":"fDD_WORD","features":[365]},{"name":"fIOD_10_BIT_DECODE","features":[365]},{"name":"fIOD_12_BIT_DECODE","features":[365]},{"name":"fIOD_16_BIT_DECODE","features":[365]},{"name":"fIOD_DECODE","features":[365]},{"name":"fIOD_IO","features":[365]},{"name":"fIOD_Memory","features":[365]},{"name":"fIOD_PASSIVE_DECODE","features":[365]},{"name":"fIOD_PORT_BAR","features":[365]},{"name":"fIOD_POSITIVE_DECODE","features":[365]},{"name":"fIOD_PortType","features":[365]},{"name":"fIOD_WINDOW_DECODE","features":[365]},{"name":"fIRQD_Edge","features":[365]},{"name":"fIRQD_Exclusive","features":[365]},{"name":"fIRQD_Level","features":[365]},{"name":"fIRQD_Level_Bit","features":[365]},{"name":"fIRQD_Share","features":[365]},{"name":"fIRQD_Share_Bit","features":[365]},{"name":"fMD_24","features":[365]},{"name":"fMD_32","features":[365]},{"name":"fMD_32_24","features":[365]},{"name":"fMD_Cacheable","features":[365]},{"name":"fMD_CombinedWrite","features":[365]},{"name":"fMD_CombinedWriteAllowed","features":[365]},{"name":"fMD_CombinedWriteDisallowed","features":[365]},{"name":"fMD_MEMORY_BAR","features":[365]},{"name":"fMD_MemoryType","features":[365]},{"name":"fMD_NonCacheable","features":[365]},{"name":"fMD_Pref","features":[365]},{"name":"fMD_PrefetchAllowed","features":[365]},{"name":"fMD_PrefetchDisallowed","features":[365]},{"name":"fMD_Prefetchable","features":[365]},{"name":"fMD_RAM","features":[365]},{"name":"fMD_ROM","features":[365]},{"name":"fMD_ReadAllowed","features":[365]},{"name":"fMD_ReadDisallowed","features":[365]},{"name":"fMD_Readable","features":[365]},{"name":"fMD_WINDOW_DECODE","features":[365]},{"name":"fPCD_ATTRIBUTES_PER_WINDOW","features":[365]},{"name":"fPCD_IO1_16","features":[365]},{"name":"fPCD_IO1_SRC_16","features":[365]},{"name":"fPCD_IO1_WS_16","features":[365]},{"name":"fPCD_IO1_ZW_8","features":[365]},{"name":"fPCD_IO2_16","features":[365]},{"name":"fPCD_IO2_SRC_16","features":[365]},{"name":"fPCD_IO2_WS_16","features":[365]},{"name":"fPCD_IO2_ZW_8","features":[365]},{"name":"fPCD_IO_16","features":[365]},{"name":"fPCD_IO_8","features":[365]},{"name":"fPCD_IO_SRC_16","features":[365]},{"name":"fPCD_IO_WS_16","features":[365]},{"name":"fPCD_IO_ZW_8","features":[365]},{"name":"fPCD_MEM1_16","features":[365]},{"name":"fPCD_MEM1_A","features":[365]},{"name":"fPCD_MEM1_WS_ONE","features":[365]},{"name":"fPCD_MEM1_WS_THREE","features":[365]},{"name":"fPCD_MEM1_WS_TWO","features":[365]},{"name":"fPCD_MEM2_16","features":[365]},{"name":"fPCD_MEM2_A","features":[365]},{"name":"fPCD_MEM2_WS_ONE","features":[365]},{"name":"fPCD_MEM2_WS_THREE","features":[365]},{"name":"fPCD_MEM2_WS_TWO","features":[365]},{"name":"fPCD_MEM_16","features":[365]},{"name":"fPCD_MEM_8","features":[365]},{"name":"fPCD_MEM_A","features":[365]},{"name":"fPCD_MEM_WS_ONE","features":[365]},{"name":"fPCD_MEM_WS_THREE","features":[365]},{"name":"fPCD_MEM_WS_TWO","features":[365]},{"name":"fPMF_AUDIO_ENABLE","features":[365]},{"name":"mDD_BusMaster","features":[365]},{"name":"mDD_Type","features":[365]},{"name":"mDD_Width","features":[365]},{"name":"mIRQD_Edge_Level","features":[365]},{"name":"mIRQD_Share","features":[365]},{"name":"mMD_32_24","features":[365]},{"name":"mMD_Cacheable","features":[365]},{"name":"mMD_CombinedWrite","features":[365]},{"name":"mMD_MemoryType","features":[365]},{"name":"mMD_Prefetchable","features":[365]},{"name":"mMD_Readable","features":[365]},{"name":"mPCD_IO_8_16","features":[365]},{"name":"mPCD_MEM1_WS","features":[365]},{"name":"mPCD_MEM2_WS","features":[365]},{"name":"mPCD_MEM_8_16","features":[365]},{"name":"mPCD_MEM_A_C","features":[365]},{"name":"mPCD_MEM_WS","features":[365]},{"name":"mPMF_AUDIO_ENABLE","features":[365]}],"375":[{"name":"DEVPROP_FILTER_EXPRESSION","features":[368,303]},{"name":"DEVPROP_OPERATOR","features":[368]},{"name":"DEVPROP_OPERATOR_AND_CLOSE","features":[368]},{"name":"DEVPROP_OPERATOR_AND_OPEN","features":[368]},{"name":"DEVPROP_OPERATOR_ARRAY_CONTAINS","features":[368]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH","features":[368]},{"name":"DEVPROP_OPERATOR_BEGINS_WITH_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_BITWISE_AND","features":[368]},{"name":"DEVPROP_OPERATOR_BITWISE_OR","features":[368]},{"name":"DEVPROP_OPERATOR_CONTAINS","features":[368]},{"name":"DEVPROP_OPERATOR_CONTAINS_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_ENDS_WITH","features":[368]},{"name":"DEVPROP_OPERATOR_ENDS_WITH_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_EQUALS","features":[368]},{"name":"DEVPROP_OPERATOR_EQUALS_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_EXISTS","features":[368]},{"name":"DEVPROP_OPERATOR_GREATER_THAN","features":[368]},{"name":"DEVPROP_OPERATOR_GREATER_THAN_EQUALS","features":[368]},{"name":"DEVPROP_OPERATOR_LESS_THAN","features":[368]},{"name":"DEVPROP_OPERATOR_LESS_THAN_EQUALS","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_CONTAINS_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_BEGINS_WITH_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_CONTAINS_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH","features":[368]},{"name":"DEVPROP_OPERATOR_LIST_ELEMENT_ENDS_WITH_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_MASK_ARRAY","features":[368]},{"name":"DEVPROP_OPERATOR_MASK_EVAL","features":[368]},{"name":"DEVPROP_OPERATOR_MASK_LIST","features":[368]},{"name":"DEVPROP_OPERATOR_MASK_LOGICAL","features":[368]},{"name":"DEVPROP_OPERATOR_MASK_MODIFIER","features":[368]},{"name":"DEVPROP_OPERATOR_MASK_NOT_LOGICAL","features":[368]},{"name":"DEVPROP_OPERATOR_MODIFIER_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_MODIFIER_NOT","features":[368]},{"name":"DEVPROP_OPERATOR_NONE","features":[368]},{"name":"DEVPROP_OPERATOR_NOT_CLOSE","features":[368]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS","features":[368]},{"name":"DEVPROP_OPERATOR_NOT_EQUALS_IGNORE_CASE","features":[368]},{"name":"DEVPROP_OPERATOR_NOT_EXISTS","features":[368]},{"name":"DEVPROP_OPERATOR_NOT_OPEN","features":[368]},{"name":"DEVPROP_OPERATOR_OR_CLOSE","features":[368]},{"name":"DEVPROP_OPERATOR_OR_OPEN","features":[368]},{"name":"DEV_OBJECT","features":[368,303]},{"name":"DEV_OBJECT_TYPE","features":[368]},{"name":"DEV_QUERY_FLAGS","features":[368]},{"name":"DEV_QUERY_PARAMETER","features":[368,303]},{"name":"DEV_QUERY_RESULT_ACTION","features":[368]},{"name":"DEV_QUERY_RESULT_ACTION_DATA","features":[368,303]},{"name":"DEV_QUERY_STATE","features":[368]},{"name":"DevCloseObjectQuery","features":[368]},{"name":"DevCreateObjectQuery","features":[368,303]},{"name":"DevCreateObjectQueryEx","features":[368,303]},{"name":"DevCreateObjectQueryFromId","features":[368,303]},{"name":"DevCreateObjectQueryFromIdEx","features":[368,303]},{"name":"DevCreateObjectQueryFromIds","features":[368,303]},{"name":"DevCreateObjectQueryFromIdsEx","features":[368,303]},{"name":"DevFindProperty","features":[368,303]},{"name":"DevFreeObjectProperties","features":[368,303]},{"name":"DevFreeObjects","features":[368,303]},{"name":"DevGetObjectProperties","features":[368,303]},{"name":"DevGetObjectPropertiesEx","features":[368,303]},{"name":"DevGetObjects","features":[368,303]},{"name":"DevGetObjectsEx","features":[368,303]},{"name":"DevObjectTypeAEP","features":[368]},{"name":"DevObjectTypeAEPContainer","features":[368]},{"name":"DevObjectTypeAEPService","features":[368]},{"name":"DevObjectTypeDevice","features":[368]},{"name":"DevObjectTypeDeviceContainer","features":[368]},{"name":"DevObjectTypeDeviceContainerDisplay","features":[368]},{"name":"DevObjectTypeDeviceInstallerClass","features":[368]},{"name":"DevObjectTypeDeviceInterface","features":[368]},{"name":"DevObjectTypeDeviceInterfaceClass","features":[368]},{"name":"DevObjectTypeDeviceInterfaceDisplay","features":[368]},{"name":"DevObjectTypeDevicePanel","features":[368]},{"name":"DevObjectTypeUnknown","features":[368]},{"name":"DevQueryFlagAllProperties","features":[368]},{"name":"DevQueryFlagAsyncClose","features":[368]},{"name":"DevQueryFlagLocalize","features":[368]},{"name":"DevQueryFlagNone","features":[368]},{"name":"DevQueryFlagUpdateResults","features":[368]},{"name":"DevQueryResultAdd","features":[368]},{"name":"DevQueryResultRemove","features":[368]},{"name":"DevQueryResultStateChange","features":[368]},{"name":"DevQueryResultUpdate","features":[368]},{"name":"DevQueryStateAborted","features":[368]},{"name":"DevQueryStateClosed","features":[368]},{"name":"DevQueryStateEnumCompleted","features":[368]},{"name":"DevQueryStateInitialized","features":[368]},{"name":"HDEVQUERY","features":[368]},{"name":"PDEV_QUERY_RESULT_CALLBACK","features":[368,303]}],"376":[{"name":"AR_DISABLED","features":[369]},{"name":"AR_DOCKED","features":[369]},{"name":"AR_ENABLED","features":[369]},{"name":"AR_LAPTOP","features":[369]},{"name":"AR_MULTIMON","features":[369]},{"name":"AR_NOSENSOR","features":[369]},{"name":"AR_NOT_SUPPORTED","features":[369]},{"name":"AR_REMOTESESSION","features":[369]},{"name":"AR_STATE","features":[369]},{"name":"AR_SUPPRESSED","features":[369]},{"name":"Adapter","features":[369]},{"name":"Adapters","features":[369]},{"name":"BACKLIGHT_OPTIMIZATION_LEVEL","features":[369]},{"name":"BACKLIGHT_REDUCTION_GAMMA_RAMP","features":[369]},{"name":"BANK_POSITION","features":[369]},{"name":"BITMAP_ARRAY_BYTE","features":[369]},{"name":"BITMAP_BITS_BYTE_ALIGN","features":[369]},{"name":"BITMAP_BITS_PIXEL","features":[369]},{"name":"BITMAP_BITS_WORD_ALIGN","features":[369]},{"name":"BITMAP_PLANES","features":[369]},{"name":"BLENDOBJ","features":[369,316]},{"name":"BMF_16BPP","features":[369]},{"name":"BMF_1BPP","features":[369]},{"name":"BMF_24BPP","features":[369]},{"name":"BMF_32BPP","features":[369]},{"name":"BMF_4BPP","features":[369]},{"name":"BMF_4RLE","features":[369]},{"name":"BMF_8BPP","features":[369]},{"name":"BMF_8RLE","features":[369]},{"name":"BMF_ACC_NOTIFY","features":[369]},{"name":"BMF_DONTCACHE","features":[369]},{"name":"BMF_JPEG","features":[369]},{"name":"BMF_KMSECTION","features":[369]},{"name":"BMF_NOTSYSMEM","features":[369]},{"name":"BMF_NOZEROINIT","features":[369]},{"name":"BMF_PNG","features":[369]},{"name":"BMF_RESERVED","features":[369]},{"name":"BMF_RMT_ENTER","features":[369]},{"name":"BMF_TEMP_ALPHA","features":[369]},{"name":"BMF_TOPDOWN","features":[369]},{"name":"BMF_UMPDMEM","features":[369]},{"name":"BMF_USERMEM","features":[369]},{"name":"BMF_WINDOW_BLT","features":[369]},{"name":"BRIGHTNESS_INTERFACE_VERSION","features":[369]},{"name":"BRIGHTNESS_INTERFACE_VERSION_1","features":[369]},{"name":"BRIGHTNESS_INTERFACE_VERSION_2","features":[369]},{"name":"BRIGHTNESS_INTERFACE_VERSION_3","features":[369]},{"name":"BRIGHTNESS_LEVEL","features":[369]},{"name":"BRIGHTNESS_MAX_LEVEL_COUNT","features":[369]},{"name":"BRIGHTNESS_MAX_NIT_RANGE_COUNT","features":[369]},{"name":"BRIGHTNESS_NIT_RANGE","features":[369]},{"name":"BRIGHTNESS_NIT_RANGES","features":[369]},{"name":"BRUSHOBJ","features":[369]},{"name":"BRUSHOBJ_hGetColorTransform","features":[369,305]},{"name":"BRUSHOBJ_pvAllocRbrush","features":[369]},{"name":"BRUSHOBJ_pvGetRbrush","features":[369]},{"name":"BRUSHOBJ_ulGetBrushColor","features":[369]},{"name":"BR_CMYKCOLOR","features":[369]},{"name":"BR_DEVICE_ICM","features":[369]},{"name":"BR_HOST_ICM","features":[369]},{"name":"BR_ORIGCOLOR","features":[369]},{"name":"BacklightOptimizationDesktop","features":[369]},{"name":"BacklightOptimizationDimmed","features":[369]},{"name":"BacklightOptimizationDisable","features":[369]},{"name":"BacklightOptimizationDynamic","features":[369]},{"name":"BacklightOptimizationEDR","features":[369]},{"name":"BlackScreenDiagnosticsCalloutParam","features":[369]},{"name":"BlackScreenDiagnosticsData","features":[369]},{"name":"BlackScreenDisplayRecovery","features":[369]},{"name":"CDBEX_CROSSADAPTER","features":[369]},{"name":"CDBEX_DXINTEROP","features":[369]},{"name":"CDBEX_NTSHAREDSURFACEHANDLE","features":[369]},{"name":"CDBEX_REDIRECTION","features":[369]},{"name":"CDBEX_REUSE","features":[369]},{"name":"CDDDXGK_REDIRBITMAPPRESENTINFO","features":[369,305]},{"name":"CD_ANY","features":[369]},{"name":"CD_LEFTDOWN","features":[369]},{"name":"CD_LEFTUP","features":[369]},{"name":"CD_LEFTWARDS","features":[369]},{"name":"CD_RIGHTDOWN","features":[369]},{"name":"CD_RIGHTUP","features":[369]},{"name":"CD_UPWARDS","features":[369]},{"name":"CHAR_IMAGE_INFO","features":[369,370]},{"name":"CHAR_TYPE_LEADING","features":[369]},{"name":"CHAR_TYPE_SBCS","features":[369]},{"name":"CHAR_TYPE_TRAILING","features":[369]},{"name":"CHROMATICITY_COORDINATE","features":[369]},{"name":"CIECHROMA","features":[369]},{"name":"CLIPLINE","features":[369]},{"name":"CLIPOBJ","features":[369,305]},{"name":"CLIPOBJ_bEnum","features":[369,305]},{"name":"CLIPOBJ_cEnumStart","features":[369,305]},{"name":"CLIPOBJ_ppoGetPath","features":[369,305]},{"name":"COLORINFO","features":[369]},{"name":"COLORSPACE_TRANSFORM","features":[369]},{"name":"COLORSPACE_TRANSFORM_1DLUT_CAP","features":[369]},{"name":"COLORSPACE_TRANSFORM_3x4","features":[369]},{"name":"COLORSPACE_TRANSFORM_DATA_CAP","features":[369]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE","features":[369]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FIXED_POINT","features":[369]},{"name":"COLORSPACE_TRANSFORM_DATA_TYPE_FLOAT","features":[369]},{"name":"COLORSPACE_TRANSFORM_MATRIX_CAP","features":[369]},{"name":"COLORSPACE_TRANSFORM_MATRIX_V2","features":[369]},{"name":"COLORSPACE_TRANSFORM_SET_INPUT","features":[369]},{"name":"COLORSPACE_TRANSFORM_STAGE_CONTROL","features":[369]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS","features":[369]},{"name":"COLORSPACE_TRANSFORM_TARGET_CAPS_VERSION","features":[369]},{"name":"COLORSPACE_TRANSFORM_TYPE","features":[369]},{"name":"COLORSPACE_TRANSFORM_TYPE_DEFAULT","features":[369]},{"name":"COLORSPACE_TRANSFORM_TYPE_DXGI_1","features":[369]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_3x4","features":[369]},{"name":"COLORSPACE_TRANSFORM_TYPE_MATRIX_V2","features":[369]},{"name":"COLORSPACE_TRANSFORM_TYPE_RGB256x3x16","features":[369]},{"name":"COLORSPACE_TRANSFORM_TYPE_UNINITIALIZED","features":[369]},{"name":"COLORSPACE_TRANSFORM_VERSION_1","features":[369]},{"name":"COLORSPACE_TRANSFORM_VERSION_DEFAULT","features":[369]},{"name":"COLORSPACE_TRANSFORM_VERSION_NOT_SUPPORTED","features":[369]},{"name":"CT_RECTANGLES","features":[369]},{"name":"CapabilitiesRequestAndCapabilitiesReply","features":[369,305]},{"name":"ColorSpaceTransformStageControl_Bypass","features":[369]},{"name":"ColorSpaceTransformStageControl_Enable","features":[369]},{"name":"ColorSpaceTransformStageControl_No_Change","features":[369]},{"name":"DCR_DRIVER","features":[369]},{"name":"DCR_HALFTONE","features":[369]},{"name":"DCR_SOLID","features":[369]},{"name":"DCT_DEFAULT","features":[369]},{"name":"DCT_FORCE_HIGH_PERFORMANCE","features":[369]},{"name":"DCT_FORCE_LOW_POWER","features":[369]},{"name":"DC_COMPLEX","features":[369]},{"name":"DC_RECT","features":[369]},{"name":"DC_TRIVIAL","features":[369]},{"name":"DDI_DRIVER_VERSION_NT4","features":[369]},{"name":"DDI_DRIVER_VERSION_NT5","features":[369]},{"name":"DDI_DRIVER_VERSION_NT5_01","features":[369]},{"name":"DDI_DRIVER_VERSION_NT5_01_SP1","features":[369]},{"name":"DDI_DRIVER_VERSION_SP3","features":[369]},{"name":"DDI_ERROR","features":[369]},{"name":"DD_FULLSCREEN_VIDEO_DEVICE_NAME","features":[369]},{"name":"DEVHTADJDATA","features":[369]},{"name":"DEVHTADJF_ADDITIVE_DEVICE","features":[369]},{"name":"DEVHTADJF_COLOR_DEVICE","features":[369]},{"name":"DEVHTINFO","features":[369]},{"name":"DEVINFO","features":[369,316]},{"name":"DEVPKEY_Device_ActivityId","features":[369,303]},{"name":"DEVPKEY_Device_AdapterLuid","features":[369,303]},{"name":"DEVPKEY_Device_TerminalLuid","features":[369,303]},{"name":"DEVPKEY_IndirectDisplay","features":[369,303]},{"name":"DHPDEV","features":[369]},{"name":"DHSURF","features":[369]},{"name":"DISPLAYCONFIG_2DREGION","features":[369]},{"name":"DISPLAYCONFIG_ADAPTER_NAME","features":[369,305]},{"name":"DISPLAYCONFIG_DESKTOP_IMAGE_INFO","features":[369,305]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADAPTER_NAME","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_ADVANCED_COLOR_INFO","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_MONITOR_SPECIALIZATION","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SDR_WHITE_LEVEL","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SOURCE_NAME","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_SUPPORT_VIRTUAL_RESOLUTION","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_BASE_TYPE","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_NAME","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_GET_TARGET_PREFERRED_MODE","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_HEADER","features":[369,305]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_ADVANCED_COLOR_STATE","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_MONITOR_SPECIALIZATION","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_SUPPORT_VIRTUAL_RESOLUTION","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_SET_TARGET_PERSISTENCE","features":[369]},{"name":"DISPLAYCONFIG_DEVICE_INFO_TYPE","features":[369]},{"name":"DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO","features":[369,305,316]},{"name":"DISPLAYCONFIG_GET_MONITOR_SPECIALIZATION","features":[369,305]},{"name":"DISPLAYCONFIG_MODE_INFO","features":[369,305]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE","features":[369]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_DESKTOP_IMAGE","features":[369]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_SOURCE","features":[369]},{"name":"DISPLAYCONFIG_MODE_INFO_TYPE_TARGET","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPONENT_VIDEO","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_COMPOSITE_VIDEO","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EMBEDDED","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_EXTERNAL","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DISPLAYPORT_USB_TUNNEL","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_DVI","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_D_JPN","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HD15","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_HDMI","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_VIRTUAL","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INDIRECT_WIRED","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_INTERNAL","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_LVDS","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_MIRACAST","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_OTHER","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDI","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SDTVDONGLE","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_SVIDEO","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EMBEDDED","features":[369]},{"name":"DISPLAYCONFIG_OUTPUT_TECHNOLOGY_UDI_EXTERNAL","features":[369]},{"name":"DISPLAYCONFIG_PATH_INFO","features":[369,305]},{"name":"DISPLAYCONFIG_PATH_SOURCE_INFO","features":[369,305]},{"name":"DISPLAYCONFIG_PATH_TARGET_INFO","features":[369,305]},{"name":"DISPLAYCONFIG_PIXELFORMAT","features":[369]},{"name":"DISPLAYCONFIG_PIXELFORMAT_16BPP","features":[369]},{"name":"DISPLAYCONFIG_PIXELFORMAT_24BPP","features":[369]},{"name":"DISPLAYCONFIG_PIXELFORMAT_32BPP","features":[369]},{"name":"DISPLAYCONFIG_PIXELFORMAT_8BPP","features":[369]},{"name":"DISPLAYCONFIG_PIXELFORMAT_NONGDI","features":[369]},{"name":"DISPLAYCONFIG_RATIONAL","features":[369]},{"name":"DISPLAYCONFIG_ROTATION","features":[369]},{"name":"DISPLAYCONFIG_ROTATION_IDENTITY","features":[369]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE180","features":[369]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE270","features":[369]},{"name":"DISPLAYCONFIG_ROTATION_ROTATE90","features":[369]},{"name":"DISPLAYCONFIG_SCALING","features":[369]},{"name":"DISPLAYCONFIG_SCALING_ASPECTRATIOCENTEREDMAX","features":[369]},{"name":"DISPLAYCONFIG_SCALING_CENTERED","features":[369]},{"name":"DISPLAYCONFIG_SCALING_CUSTOM","features":[369]},{"name":"DISPLAYCONFIG_SCALING_IDENTITY","features":[369]},{"name":"DISPLAYCONFIG_SCALING_PREFERRED","features":[369]},{"name":"DISPLAYCONFIG_SCALING_STRETCHED","features":[369]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING","features":[369]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED","features":[369]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_LOWERFIELDFIRST","features":[369]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_INTERLACED_UPPERFIELDFIRST","features":[369]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_PROGRESSIVE","features":[369]},{"name":"DISPLAYCONFIG_SCANLINE_ORDERING_UNSPECIFIED","features":[369]},{"name":"DISPLAYCONFIG_SDR_WHITE_LEVEL","features":[369,305]},{"name":"DISPLAYCONFIG_SET_ADVANCED_COLOR_STATE","features":[369,305]},{"name":"DISPLAYCONFIG_SET_MONITOR_SPECIALIZATION","features":[369,305]},{"name":"DISPLAYCONFIG_SET_TARGET_PERSISTENCE","features":[369,305]},{"name":"DISPLAYCONFIG_SOURCE_DEVICE_NAME","features":[369,305]},{"name":"DISPLAYCONFIG_SOURCE_MODE","features":[369,305]},{"name":"DISPLAYCONFIG_SUPPORT_VIRTUAL_RESOLUTION","features":[369,305]},{"name":"DISPLAYCONFIG_TARGET_BASE_TYPE","features":[369,305]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME","features":[369,305]},{"name":"DISPLAYCONFIG_TARGET_DEVICE_NAME_FLAGS","features":[369]},{"name":"DISPLAYCONFIG_TARGET_MODE","features":[369]},{"name":"DISPLAYCONFIG_TARGET_PREFERRED_MODE","features":[369,305]},{"name":"DISPLAYCONFIG_TOPOLOGY_CLONE","features":[369]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTEND","features":[369]},{"name":"DISPLAYCONFIG_TOPOLOGY_EXTERNAL","features":[369]},{"name":"DISPLAYCONFIG_TOPOLOGY_ID","features":[369]},{"name":"DISPLAYCONFIG_TOPOLOGY_INTERNAL","features":[369]},{"name":"DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY","features":[369]},{"name":"DISPLAYCONFIG_VIDEO_SIGNAL_INFO","features":[369]},{"name":"DISPLAYPOLICY_AC","features":[369]},{"name":"DISPLAYPOLICY_DC","features":[369]},{"name":"DISPLAY_BRIGHTNESS","features":[369]},{"name":"DM_DEFAULT","features":[369]},{"name":"DM_MONOCHROME","features":[369]},{"name":"DN_ACCELERATION_LEVEL","features":[369]},{"name":"DN_ASSOCIATE_WINDOW","features":[369]},{"name":"DN_COMPOSITION_CHANGED","features":[369]},{"name":"DN_DEVICE_ORIGIN","features":[369]},{"name":"DN_DRAWING_BEGIN","features":[369]},{"name":"DN_DRAWING_BEGIN_APIBITMAP","features":[369]},{"name":"DN_SLEEP_MODE","features":[369]},{"name":"DN_SURFOBJ_DESTRUCTION","features":[369]},{"name":"DRD_ERROR","features":[369]},{"name":"DRD_SUCCESS","features":[369]},{"name":"DRH_APIBITMAP","features":[369]},{"name":"DRH_APIBITMAPDATA","features":[369,305]},{"name":"DRIVEROBJ","features":[369,305]},{"name":"DRVENABLEDATA","features":[369]},{"name":"DRVFN","features":[369]},{"name":"DRVQUERY_USERMODE","features":[369]},{"name":"DSI_CHECKSUM_ERROR_CORRECTED","features":[369]},{"name":"DSI_CHECKSUM_ERROR_NOT_CORRECTED","features":[369]},{"name":"DSI_CONTENTION_DETECTED","features":[369]},{"name":"DSI_CONTROL_TRANSMISSION_MODE","features":[369]},{"name":"DSI_DSI_DATA_TYPE_NOT_RECOGNIZED","features":[369]},{"name":"DSI_DSI_PROTOCOL_VIOLATION","features":[369]},{"name":"DSI_DSI_VC_ID_INVALID","features":[369]},{"name":"DSI_EOT_SYNC_ERROR","features":[369]},{"name":"DSI_ESCAPE_MODE_ENTRY_COMMAND_ERROR","features":[369]},{"name":"DSI_FALSE_CONTROL_ERROR","features":[369]},{"name":"DSI_INVALID_PACKET_INDEX","features":[369]},{"name":"DSI_INVALID_TRANSMISSION_LENGTH","features":[369]},{"name":"DSI_LONG_PACKET_PAYLOAD_CHECKSUM_ERROR","features":[369]},{"name":"DSI_LOW_POWER_TRANSMIT_SYNC_ERROR","features":[369]},{"name":"DSI_PACKET_EMBEDDED_PAYLOAD_SIZE","features":[369]},{"name":"DSI_PERIPHERAL_TIMEOUT_ERROR","features":[369]},{"name":"DSI_SOT_ERROR","features":[369]},{"name":"DSI_SOT_SYNC_ERROR","features":[369]},{"name":"DSS_FLUSH_EVENT","features":[369]},{"name":"DSS_RESERVED","features":[369]},{"name":"DSS_RESERVED1","features":[369]},{"name":"DSS_RESERVED2","features":[369]},{"name":"DSS_TIMER_EVENT","features":[369]},{"name":"DXGK_WIN32K_PARAM_DATA","features":[369]},{"name":"DXGK_WIN32K_PARAM_FLAG_DISABLEVIEW","features":[369]},{"name":"DXGK_WIN32K_PARAM_FLAG_MODESWITCH","features":[369]},{"name":"DXGK_WIN32K_PARAM_FLAG_UPDATEREGISTRY","features":[369]},{"name":"DegaussMonitor","features":[369,305]},{"name":"DestroyPhysicalMonitor","features":[369,305]},{"name":"DestroyPhysicalMonitors","features":[369,305]},{"name":"DisplayConfigGetDeviceInfo","features":[369,305]},{"name":"DisplayConfigSetDeviceInfo","features":[369,305]},{"name":"DisplayMode","features":[369,305,316]},{"name":"DisplayModes","features":[369,305,316]},{"name":"ECS_REDRAW","features":[369]},{"name":"ECS_TEARDOWN","features":[369]},{"name":"ED_ABORTDOC","features":[369]},{"name":"EHN_ERROR","features":[369]},{"name":"EHN_RESTORED","features":[369]},{"name":"EMFINFO","features":[369,316]},{"name":"ENDCAP_BUTT","features":[369]},{"name":"ENDCAP_ROUND","features":[369]},{"name":"ENDCAP_SQUARE","features":[369]},{"name":"ENGSAFESEMAPHORE","features":[369]},{"name":"ENG_DEVICE_ATTRIBUTE","features":[369]},{"name":"ENG_EVENT","features":[369]},{"name":"ENG_FNT_CACHE_READ_FAULT","features":[369]},{"name":"ENG_FNT_CACHE_WRITE_FAULT","features":[369]},{"name":"ENG_SYSTEM_ATTRIBUTE","features":[369]},{"name":"ENG_TIME_FIELDS","features":[369]},{"name":"ENUMRECTS","features":[369,305]},{"name":"EngAcquireSemaphore","features":[369]},{"name":"EngAlphaBlend","features":[369,305,316]},{"name":"EngAssociateSurface","features":[369,305]},{"name":"EngBitBlt","features":[369,305]},{"name":"EngCheckAbort","features":[369,305]},{"name":"EngComputeGlyphSet","features":[369]},{"name":"EngCopyBits","features":[369,305]},{"name":"EngCreateBitmap","features":[369,305,316]},{"name":"EngCreateClip","features":[369,305]},{"name":"EngCreateDeviceBitmap","features":[369,305,316]},{"name":"EngCreateDeviceSurface","features":[369,305]},{"name":"EngCreatePalette","features":[369,316]},{"name":"EngCreateSemaphore","features":[369]},{"name":"EngDeleteClip","features":[369,305]},{"name":"EngDeletePalette","features":[369,305,316]},{"name":"EngDeletePath","features":[369]},{"name":"EngDeleteSemaphore","features":[369]},{"name":"EngDeleteSurface","features":[369,305]},{"name":"EngEraseSurface","features":[369,305]},{"name":"EngFillPath","features":[369,305]},{"name":"EngFindResource","features":[369,305]},{"name":"EngFreeModule","features":[369,305]},{"name":"EngGetCurrentCodePage","features":[369]},{"name":"EngGetDriverName","features":[369]},{"name":"EngGetPrinterDataFileName","features":[369]},{"name":"EngGradientFill","features":[369,305,316]},{"name":"EngLineTo","features":[369,305]},{"name":"EngLoadModule","features":[369,305]},{"name":"EngLockSurface","features":[369,305]},{"name":"EngMarkBandingSurface","features":[369,305]},{"name":"EngMultiByteToUnicodeN","features":[369]},{"name":"EngMultiByteToWideChar","features":[369]},{"name":"EngNumberOfProcessors","features":[369]},{"name":"EngOptimumAvailableSystemMemory","features":[369]},{"name":"EngOptimumAvailableUserMemory","features":[369]},{"name":"EngPaint","features":[369,305]},{"name":"EngPlgBlt","features":[369,305,316]},{"name":"EngProcessorFeature","features":[369]},{"name":"EngQueryEMFInfo","features":[369,305,316]},{"name":"EngQueryLocalTime","features":[369]},{"name":"EngReleaseSemaphore","features":[369]},{"name":"EngStretchBlt","features":[369,305,316]},{"name":"EngStretchBltROP","features":[369,305,316]},{"name":"EngStrokeAndFillPath","features":[369,305]},{"name":"EngStrokePath","features":[369,305]},{"name":"EngTextOut","features":[369,305]},{"name":"EngTransparentBlt","features":[369,305]},{"name":"EngUnicodeToMultiByteN","features":[369]},{"name":"EngUnlockSurface","features":[369,305]},{"name":"EngWideCharToMultiByte","features":[369]},{"name":"FC_COMPLEX","features":[369]},{"name":"FC_RECT","features":[369]},{"name":"FC_RECT4","features":[369]},{"name":"FDM_TYPE_BM_SIDE_CONST","features":[369]},{"name":"FDM_TYPE_CHAR_INC_EQUAL_BM_BASE","features":[369]},{"name":"FDM_TYPE_CONST_BEARINGS","features":[369]},{"name":"FDM_TYPE_MAXEXT_EQUAL_BM_SIDE","features":[369]},{"name":"FDM_TYPE_ZERO_BEARINGS","features":[369]},{"name":"FD_DEVICEMETRICS","features":[369,305]},{"name":"FD_ERROR","features":[369]},{"name":"FD_GLYPHATTR","features":[369]},{"name":"FD_GLYPHSET","features":[369]},{"name":"FD_KERNINGPAIR","features":[369]},{"name":"FD_LIGATURE","features":[369]},{"name":"FD_NEGATIVE_FONT","features":[369]},{"name":"FD_XFORM","features":[369]},{"name":"FD_XFORM","features":[369]},{"name":"FF_IGNORED_SIGNATURE","features":[369]},{"name":"FF_SIGNATURE_VERIFIED","features":[369]},{"name":"FLOATOBJ","features":[369]},{"name":"FLOATOBJ_XFORM","features":[369]},{"name":"FLOATOBJ_XFORM","features":[369]},{"name":"FLOAT_LONG","features":[369]},{"name":"FLOAT_LONG","features":[369]},{"name":"FL_NONPAGED_MEMORY","features":[369]},{"name":"FL_NON_SESSION","features":[369]},{"name":"FL_ZERO_MEMORY","features":[369]},{"name":"FM_EDITABLE_EMBED","features":[369]},{"name":"FM_INFO_16BPP","features":[369]},{"name":"FM_INFO_1BPP","features":[369]},{"name":"FM_INFO_24BPP","features":[369]},{"name":"FM_INFO_32BPP","features":[369]},{"name":"FM_INFO_4BPP","features":[369]},{"name":"FM_INFO_8BPP","features":[369]},{"name":"FM_INFO_90DEGREE_ROTATIONS","features":[369]},{"name":"FM_INFO_ANISOTROPIC_SCALING_ONLY","features":[369]},{"name":"FM_INFO_ARB_XFORMS","features":[369]},{"name":"FM_INFO_CONSTANT_WIDTH","features":[369]},{"name":"FM_INFO_DBCS_FIXED_PITCH","features":[369]},{"name":"FM_INFO_DO_NOT_ENUMERATE","features":[369]},{"name":"FM_INFO_DSIG","features":[369]},{"name":"FM_INFO_FAMILY_EQUIV","features":[369]},{"name":"FM_INFO_IGNORE_TC_RA_ABLE","features":[369]},{"name":"FM_INFO_INTEGER_WIDTH","features":[369]},{"name":"FM_INFO_INTEGRAL_SCALING","features":[369]},{"name":"FM_INFO_ISOTROPIC_SCALING_ONLY","features":[369]},{"name":"FM_INFO_NONNEGATIVE_AC","features":[369]},{"name":"FM_INFO_NOT_CONTIGUOUS","features":[369]},{"name":"FM_INFO_OPTICALLY_FIXED_PITCH","features":[369]},{"name":"FM_INFO_RETURNS_BITMAPS","features":[369]},{"name":"FM_INFO_RETURNS_OUTLINES","features":[369]},{"name":"FM_INFO_RETURNS_STROKES","features":[369]},{"name":"FM_INFO_RIGHT_HANDED","features":[369]},{"name":"FM_INFO_TECH_BITMAP","features":[369]},{"name":"FM_INFO_TECH_CFF","features":[369]},{"name":"FM_INFO_TECH_MM","features":[369]},{"name":"FM_INFO_TECH_OUTLINE_NOT_TRUETYPE","features":[369]},{"name":"FM_INFO_TECH_STROKE","features":[369]},{"name":"FM_INFO_TECH_TRUETYPE","features":[369]},{"name":"FM_INFO_TECH_TYPE1","features":[369]},{"name":"FM_NO_EMBEDDING","features":[369]},{"name":"FM_PANOSE_CULTURE_LATIN","features":[369]},{"name":"FM_READONLY_EMBED","features":[369]},{"name":"FM_SEL_BOLD","features":[369]},{"name":"FM_SEL_ITALIC","features":[369]},{"name":"FM_SEL_NEGATIVE","features":[369]},{"name":"FM_SEL_OUTLINED","features":[369]},{"name":"FM_SEL_REGULAR","features":[369]},{"name":"FM_SEL_STRIKEOUT","features":[369]},{"name":"FM_SEL_UNDERSCORE","features":[369]},{"name":"FM_TYPE_LICENSED","features":[369]},{"name":"FM_VERSION_NUMBER","features":[369]},{"name":"FONTDIFF","features":[369,305]},{"name":"FONTINFO","features":[369]},{"name":"FONTOBJ","features":[369,305]},{"name":"FONTOBJ_cGetAllGlyphHandles","features":[369,305]},{"name":"FONTOBJ_cGetGlyphs","features":[369,305]},{"name":"FONTOBJ_pQueryGlyphAttrs","features":[369,305]},{"name":"FONTOBJ_pfdg","features":[369,305]},{"name":"FONTOBJ_pifi","features":[369,305,316]},{"name":"FONTOBJ_pvTrueTypeFontFile","features":[369,305]},{"name":"FONTOBJ_pxoGetXform","features":[369,305]},{"name":"FONTOBJ_vGetInfo","features":[369,305]},{"name":"FONTSIM","features":[369]},{"name":"FONT_IMAGE_INFO","features":[369,370]},{"name":"FO_ATTR_MODE_ROTATE","features":[369]},{"name":"FO_CFF","features":[369]},{"name":"FO_CLEARTYPENATURAL_X","features":[369]},{"name":"FO_CLEARTYPE_X","features":[369]},{"name":"FO_CLEARTYPE_Y","features":[369]},{"name":"FO_DBCS_FONT","features":[369]},{"name":"FO_DEVICE_FONT","features":[369]},{"name":"FO_EM_HEIGHT","features":[369]},{"name":"FO_GLYPHBITS","features":[369]},{"name":"FO_GRAY16","features":[369]},{"name":"FO_HGLYPHS","features":[369]},{"name":"FO_MULTIPLEMASTER","features":[369]},{"name":"FO_NOCLEARTYPE","features":[369]},{"name":"FO_NOGRAY16","features":[369]},{"name":"FO_NOHINTS","features":[369]},{"name":"FO_NO_CHOICE","features":[369]},{"name":"FO_OUTLINE_CAPABLE","features":[369]},{"name":"FO_PATHOBJ","features":[369]},{"name":"FO_POSTSCRIPT","features":[369]},{"name":"FO_SIM_BOLD","features":[369]},{"name":"FO_SIM_ITALIC","features":[369]},{"name":"FO_VERT_FACE","features":[369]},{"name":"FP_ALTERNATEMODE","features":[369]},{"name":"FP_WINDINGMODE","features":[369]},{"name":"FREEOBJPROC","features":[369,305]},{"name":"FSCNTL_SCREEN_INFO","features":[369,370]},{"name":"FSVIDEO_COPY_FRAME_BUFFER","features":[369,370]},{"name":"FSVIDEO_CURSOR_POSITION","features":[369]},{"name":"FSVIDEO_MODE_INFORMATION","features":[369]},{"name":"FSVIDEO_REVERSE_MOUSE_POINTER","features":[369,370]},{"name":"FSVIDEO_SCREEN_INFORMATION","features":[369,370]},{"name":"FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[369,370]},{"name":"GAMMARAMP","features":[369]},{"name":"GAMMA_RAMP_DXGI_1","features":[369]},{"name":"GAMMA_RAMP_RGB","features":[369]},{"name":"GAMMA_RAMP_RGB256x3x16","features":[369]},{"name":"GCAPS2_ACC_DRIVER","features":[369]},{"name":"GCAPS2_ALPHACURSOR","features":[369]},{"name":"GCAPS2_BITMAPEXREUSE","features":[369]},{"name":"GCAPS2_CHANGEGAMMARAMP","features":[369]},{"name":"GCAPS2_CLEARTYPE","features":[369]},{"name":"GCAPS2_EXCLUDELAYERED","features":[369]},{"name":"GCAPS2_ICD_MULTIMON","features":[369]},{"name":"GCAPS2_INCLUDEAPIBITMAPS","features":[369]},{"name":"GCAPS2_JPEGSRC","features":[369]},{"name":"GCAPS2_MOUSETRAILS","features":[369]},{"name":"GCAPS2_PNGSRC","features":[369]},{"name":"GCAPS2_REMOTEDRIVER","features":[369]},{"name":"GCAPS2_RESERVED1","features":[369]},{"name":"GCAPS2_SHOWHIDDENPOINTER","features":[369]},{"name":"GCAPS2_SYNCFLUSH","features":[369]},{"name":"GCAPS2_SYNCTIMER","features":[369]},{"name":"GCAPS2_xxxx","features":[369]},{"name":"GCAPS_ALTERNATEFILL","features":[369]},{"name":"GCAPS_ARBRUSHOPAQUE","features":[369]},{"name":"GCAPS_ARBRUSHTEXT","features":[369]},{"name":"GCAPS_ASYNCCHANGE","features":[369]},{"name":"GCAPS_ASYNCMOVE","features":[369]},{"name":"GCAPS_BEZIERS","features":[369]},{"name":"GCAPS_CMYKCOLOR","features":[369]},{"name":"GCAPS_COLOR_DITHER","features":[369]},{"name":"GCAPS_DIRECTDRAW","features":[369]},{"name":"GCAPS_DITHERONREALIZE","features":[369]},{"name":"GCAPS_DONTJOURNAL","features":[369]},{"name":"GCAPS_FONT_RASTERIZER","features":[369]},{"name":"GCAPS_FORCEDITHER","features":[369]},{"name":"GCAPS_GEOMETRICWIDE","features":[369]},{"name":"GCAPS_GRAY16","features":[369]},{"name":"GCAPS_HALFTONE","features":[369]},{"name":"GCAPS_HIGHRESTEXT","features":[369]},{"name":"GCAPS_HORIZSTRIKE","features":[369]},{"name":"GCAPS_ICM","features":[369]},{"name":"GCAPS_LAYERED","features":[369]},{"name":"GCAPS_MONO_DITHER","features":[369]},{"name":"GCAPS_NO64BITMEMACCESS","features":[369]},{"name":"GCAPS_NUP","features":[369]},{"name":"GCAPS_OPAQUERECT","features":[369]},{"name":"GCAPS_PALMANAGED","features":[369]},{"name":"GCAPS_PANNING","features":[369]},{"name":"GCAPS_SCREENPRECISION","features":[369]},{"name":"GCAPS_VECTORFONT","features":[369]},{"name":"GCAPS_VERTSTRIKE","features":[369]},{"name":"GCAPS_WINDINGFILL","features":[369]},{"name":"GDIINFO","features":[369,305]},{"name":"GDI_DRIVER_VERSION","features":[369]},{"name":"GETCONNECTEDIDS_SOURCE","features":[369]},{"name":"GETCONNECTEDIDS_TARGET","features":[369]},{"name":"GLYPHBITS","features":[369,305]},{"name":"GLYPHDATA","features":[369,305]},{"name":"GLYPHDEF","features":[369,305]},{"name":"GLYPHPOS","features":[369,305]},{"name":"GS_16BIT_HANDLES","features":[369]},{"name":"GS_8BIT_HANDLES","features":[369]},{"name":"GS_UNICODE_HANDLES","features":[369]},{"name":"GUID_DEVINTERFACE_DISPLAY_ADAPTER","features":[369]},{"name":"GUID_DEVINTERFACE_MONITOR","features":[369]},{"name":"GUID_DEVINTERFACE_VIDEO_OUTPUT_ARRIVAL","features":[369]},{"name":"GUID_DISPLAY_DEVICE_ARRIVAL","features":[369]},{"name":"GUID_MONITOR_OVERRIDE_PSEUDO_SPECIALIZED","features":[369]},{"name":"GX_GENERAL","features":[369]},{"name":"GX_IDENTITY","features":[369]},{"name":"GX_OFFSET","features":[369]},{"name":"GX_SCALE","features":[369]},{"name":"GetAutoRotationState","features":[369,305]},{"name":"GetCapabilitiesStringLength","features":[369,305]},{"name":"GetDisplayAutoRotationPreferences","features":[369,305]},{"name":"GetDisplayConfigBufferSizes","features":[369,305]},{"name":"GetMonitorBrightness","features":[369,305]},{"name":"GetMonitorCapabilities","features":[369,305]},{"name":"GetMonitorColorTemperature","features":[369,305]},{"name":"GetMonitorContrast","features":[369,305]},{"name":"GetMonitorDisplayAreaPosition","features":[369,305]},{"name":"GetMonitorDisplayAreaSize","features":[369,305]},{"name":"GetMonitorRedGreenOrBlueDrive","features":[369,305]},{"name":"GetMonitorRedGreenOrBlueGain","features":[369,305]},{"name":"GetMonitorTechnologyType","features":[369,305]},{"name":"GetNumberOfPhysicalMonitorsFromHMONITOR","features":[369,305,316]},{"name":"GetNumberOfPhysicalMonitorsFromIDirect3DDevice9","features":[369,314]},{"name":"GetPhysicalMonitorsFromHMONITOR","features":[369,305,316]},{"name":"GetPhysicalMonitorsFromIDirect3DDevice9","features":[369,305,314]},{"name":"GetTimingReport","features":[369,305]},{"name":"GetVCPFeatureAndVCPFeatureReply","features":[369,305]},{"name":"HBM","features":[369]},{"name":"HDEV","features":[369]},{"name":"HDRVOBJ","features":[369]},{"name":"HFASTMUTEX","features":[369]},{"name":"HOOK_ALPHABLEND","features":[369]},{"name":"HOOK_BITBLT","features":[369]},{"name":"HOOK_COPYBITS","features":[369]},{"name":"HOOK_FILLPATH","features":[369]},{"name":"HOOK_FLAGS","features":[369]},{"name":"HOOK_GRADIENTFILL","features":[369]},{"name":"HOOK_LINETO","features":[369]},{"name":"HOOK_MOVEPANNING","features":[369]},{"name":"HOOK_PAINT","features":[369]},{"name":"HOOK_PLGBLT","features":[369]},{"name":"HOOK_STRETCHBLT","features":[369]},{"name":"HOOK_STRETCHBLTROP","features":[369]},{"name":"HOOK_STROKEANDFILLPATH","features":[369]},{"name":"HOOK_STROKEPATH","features":[369]},{"name":"HOOK_SYNCHRONIZE","features":[369]},{"name":"HOOK_SYNCHRONIZEACCESS","features":[369]},{"name":"HOOK_TEXTOUT","features":[369]},{"name":"HOOK_TRANSPARENTBLT","features":[369]},{"name":"HOST_DSI_BAD_TRANSMISSION_MODE","features":[369]},{"name":"HOST_DSI_DEVICE_NOT_READY","features":[369]},{"name":"HOST_DSI_DEVICE_RESET","features":[369]},{"name":"HOST_DSI_DRIVER_REJECTED_PACKET","features":[369]},{"name":"HOST_DSI_INTERFACE_RESET","features":[369]},{"name":"HOST_DSI_INVALID_TRANSMISSION","features":[369]},{"name":"HOST_DSI_OS_REJECTED_PACKET","features":[369]},{"name":"HOST_DSI_TRANSMISSION_CANCELLED","features":[369]},{"name":"HOST_DSI_TRANSMISSION_DROPPED","features":[369]},{"name":"HOST_DSI_TRANSMISSION_TIMEOUT","features":[369]},{"name":"HSEMAPHORE","features":[369]},{"name":"HSURF","features":[369]},{"name":"HS_DDI_MAX","features":[369]},{"name":"HT_FLAG_8BPP_CMY332_MASK","features":[369]},{"name":"HT_FLAG_ADDITIVE_PRIMS","features":[369]},{"name":"HT_FLAG_DO_DEVCLR_XFORM","features":[369]},{"name":"HT_FLAG_HAS_BLACK_DYE","features":[369]},{"name":"HT_FLAG_INK_ABSORPTION_IDX0","features":[369]},{"name":"HT_FLAG_INK_ABSORPTION_IDX1","features":[369]},{"name":"HT_FLAG_INK_ABSORPTION_IDX2","features":[369]},{"name":"HT_FLAG_INK_ABSORPTION_IDX3","features":[369]},{"name":"HT_FLAG_INK_ABSORPTION_INDICES","features":[369]},{"name":"HT_FLAG_INK_HIGH_ABSORPTION","features":[369]},{"name":"HT_FLAG_INVERT_8BPP_BITMASK_IDX","features":[369]},{"name":"HT_FLAG_LOWER_INK_ABSORPTION","features":[369]},{"name":"HT_FLAG_LOWEST_INK_ABSORPTION","features":[369]},{"name":"HT_FLAG_LOW_INK_ABSORPTION","features":[369]},{"name":"HT_FLAG_NORMAL_INK_ABSORPTION","features":[369]},{"name":"HT_FLAG_OUTPUT_CMY","features":[369]},{"name":"HT_FLAG_PRINT_DRAFT_MODE","features":[369]},{"name":"HT_FLAG_SQUARE_DEVICE_PEL","features":[369]},{"name":"HT_FLAG_USE_8BPP_BITMASK","features":[369]},{"name":"HT_FORMAT_16BPP","features":[369]},{"name":"HT_FORMAT_1BPP","features":[369]},{"name":"HT_FORMAT_24BPP","features":[369]},{"name":"HT_FORMAT_32BPP","features":[369]},{"name":"HT_FORMAT_4BPP","features":[369]},{"name":"HT_FORMAT_4BPP_IRGB","features":[369]},{"name":"HT_FORMAT_8BPP","features":[369]},{"name":"HT_Get8BPPFormatPalette","features":[369,316]},{"name":"HT_Get8BPPMaskPalette","features":[369,305,316]},{"name":"HT_PATSIZE_10x10","features":[369]},{"name":"HT_PATSIZE_10x10_M","features":[369]},{"name":"HT_PATSIZE_12x12","features":[369]},{"name":"HT_PATSIZE_12x12_M","features":[369]},{"name":"HT_PATSIZE_14x14","features":[369]},{"name":"HT_PATSIZE_14x14_M","features":[369]},{"name":"HT_PATSIZE_16x16","features":[369]},{"name":"HT_PATSIZE_16x16_M","features":[369]},{"name":"HT_PATSIZE_2x2","features":[369]},{"name":"HT_PATSIZE_2x2_M","features":[369]},{"name":"HT_PATSIZE_4x4","features":[369]},{"name":"HT_PATSIZE_4x4_M","features":[369]},{"name":"HT_PATSIZE_6x6","features":[369]},{"name":"HT_PATSIZE_6x6_M","features":[369]},{"name":"HT_PATSIZE_8x8","features":[369]},{"name":"HT_PATSIZE_8x8_M","features":[369]},{"name":"HT_PATSIZE_DEFAULT","features":[369]},{"name":"HT_PATSIZE_MAX_INDEX","features":[369]},{"name":"HT_PATSIZE_SUPERCELL","features":[369]},{"name":"HT_PATSIZE_SUPERCELL_M","features":[369]},{"name":"HT_PATSIZE_USER","features":[369]},{"name":"HT_USERPAT_CX_MAX","features":[369]},{"name":"HT_USERPAT_CX_MIN","features":[369]},{"name":"HT_USERPAT_CY_MAX","features":[369]},{"name":"HT_USERPAT_CY_MIN","features":[369]},{"name":"ICloneViewHelper","features":[369]},{"name":"IFIEXTRA","features":[369]},{"name":"IFIMETRICS","features":[369,305,316]},{"name":"IFIMETRICS","features":[369,305,316]},{"name":"IGRF_RGB_256BYTES","features":[369]},{"name":"IGRF_RGB_256WORDS","features":[369]},{"name":"INDEX_DrvAccumulateD3DDirtyRect","features":[369]},{"name":"INDEX_DrvAlphaBlend","features":[369]},{"name":"INDEX_DrvAssertMode","features":[369]},{"name":"INDEX_DrvAssociateSharedSurface","features":[369]},{"name":"INDEX_DrvBitBlt","features":[369]},{"name":"INDEX_DrvCompletePDEV","features":[369]},{"name":"INDEX_DrvCopyBits","features":[369]},{"name":"INDEX_DrvCreateDeviceBitmap","features":[369]},{"name":"INDEX_DrvCreateDeviceBitmapEx","features":[369]},{"name":"INDEX_DrvDeleteDeviceBitmap","features":[369]},{"name":"INDEX_DrvDeleteDeviceBitmapEx","features":[369]},{"name":"INDEX_DrvDeriveSurface","features":[369]},{"name":"INDEX_DrvDescribePixelFormat","features":[369]},{"name":"INDEX_DrvDestroyFont","features":[369]},{"name":"INDEX_DrvDisableDirectDraw","features":[369]},{"name":"INDEX_DrvDisableDriver","features":[369]},{"name":"INDEX_DrvDisablePDEV","features":[369]},{"name":"INDEX_DrvDisableSurface","features":[369]},{"name":"INDEX_DrvDitherColor","features":[369]},{"name":"INDEX_DrvDrawEscape","features":[369]},{"name":"INDEX_DrvEnableDirectDraw","features":[369]},{"name":"INDEX_DrvEnablePDEV","features":[369]},{"name":"INDEX_DrvEnableSurface","features":[369]},{"name":"INDEX_DrvEndDoc","features":[369]},{"name":"INDEX_DrvEndDxInterop","features":[369]},{"name":"INDEX_DrvEscape","features":[369]},{"name":"INDEX_DrvFillPath","features":[369]},{"name":"INDEX_DrvFontManagement","features":[369]},{"name":"INDEX_DrvFree","features":[369]},{"name":"INDEX_DrvGetDirectDrawInfo","features":[369]},{"name":"INDEX_DrvGetGlyphMode","features":[369]},{"name":"INDEX_DrvGetModes","features":[369]},{"name":"INDEX_DrvGetSynthesizedFontFiles","features":[369]},{"name":"INDEX_DrvGetTrueTypeFile","features":[369]},{"name":"INDEX_DrvGradientFill","features":[369]},{"name":"INDEX_DrvIcmCheckBitmapBits","features":[369]},{"name":"INDEX_DrvIcmCreateColorTransform","features":[369]},{"name":"INDEX_DrvIcmDeleteColorTransform","features":[369]},{"name":"INDEX_DrvIcmSetDeviceGammaRamp","features":[369]},{"name":"INDEX_DrvLineTo","features":[369]},{"name":"INDEX_DrvLoadFontFile","features":[369]},{"name":"INDEX_DrvLockDisplayArea","features":[369]},{"name":"INDEX_DrvMovePanning","features":[369]},{"name":"INDEX_DrvMovePointer","features":[369]},{"name":"INDEX_DrvNextBand","features":[369]},{"name":"INDEX_DrvNotify","features":[369]},{"name":"INDEX_DrvOffset","features":[369]},{"name":"INDEX_DrvPaint","features":[369]},{"name":"INDEX_DrvPlgBlt","features":[369]},{"name":"INDEX_DrvQueryAdvanceWidths","features":[369]},{"name":"INDEX_DrvQueryDeviceSupport","features":[369]},{"name":"INDEX_DrvQueryFont","features":[369]},{"name":"INDEX_DrvQueryFontCaps","features":[369]},{"name":"INDEX_DrvQueryFontData","features":[369]},{"name":"INDEX_DrvQueryFontFile","features":[369]},{"name":"INDEX_DrvQueryFontTree","features":[369]},{"name":"INDEX_DrvQueryGlyphAttrs","features":[369]},{"name":"INDEX_DrvQueryPerBandInfo","features":[369]},{"name":"INDEX_DrvQuerySpoolType","features":[369]},{"name":"INDEX_DrvQueryTrueTypeOutline","features":[369]},{"name":"INDEX_DrvQueryTrueTypeTable","features":[369]},{"name":"INDEX_DrvRealizeBrush","features":[369]},{"name":"INDEX_DrvRenderHint","features":[369]},{"name":"INDEX_DrvReserved1","features":[369]},{"name":"INDEX_DrvReserved10","features":[369]},{"name":"INDEX_DrvReserved11","features":[369]},{"name":"INDEX_DrvReserved2","features":[369]},{"name":"INDEX_DrvReserved3","features":[369]},{"name":"INDEX_DrvReserved4","features":[369]},{"name":"INDEX_DrvReserved5","features":[369]},{"name":"INDEX_DrvReserved6","features":[369]},{"name":"INDEX_DrvReserved7","features":[369]},{"name":"INDEX_DrvReserved8","features":[369]},{"name":"INDEX_DrvReserved9","features":[369]},{"name":"INDEX_DrvResetDevice","features":[369]},{"name":"INDEX_DrvResetPDEV","features":[369]},{"name":"INDEX_DrvSaveScreenBits","features":[369]},{"name":"INDEX_DrvSendPage","features":[369]},{"name":"INDEX_DrvSetPalette","features":[369]},{"name":"INDEX_DrvSetPixelFormat","features":[369]},{"name":"INDEX_DrvSetPointerShape","features":[369]},{"name":"INDEX_DrvStartBanding","features":[369]},{"name":"INDEX_DrvStartDoc","features":[369]},{"name":"INDEX_DrvStartDxInterop","features":[369]},{"name":"INDEX_DrvStartPage","features":[369]},{"name":"INDEX_DrvStretchBlt","features":[369]},{"name":"INDEX_DrvStretchBltROP","features":[369]},{"name":"INDEX_DrvStrokeAndFillPath","features":[369]},{"name":"INDEX_DrvStrokePath","features":[369]},{"name":"INDEX_DrvSurfaceComplete","features":[369]},{"name":"INDEX_DrvSwapBuffers","features":[369]},{"name":"INDEX_DrvSynchronize","features":[369]},{"name":"INDEX_DrvSynchronizeRedirectionBitmaps","features":[369]},{"name":"INDEX_DrvSynchronizeSurface","features":[369]},{"name":"INDEX_DrvSynthesizeFont","features":[369]},{"name":"INDEX_DrvTextOut","features":[369]},{"name":"INDEX_DrvTransparentBlt","features":[369]},{"name":"INDEX_DrvUnloadFontFile","features":[369]},{"name":"INDEX_DrvUnlockDisplayArea","features":[369]},{"name":"INDEX_LAST","features":[369]},{"name":"INDIRECT_DISPLAY_INFO","features":[369,305]},{"name":"INDIRECT_DISPLAY_INFO_FLAGS_CREATED_IDDCX_ADAPTER","features":[369]},{"name":"IOCTL_COLORSPACE_TRANSFORM_QUERY_TARGET_CAPS","features":[369]},{"name":"IOCTL_COLORSPACE_TRANSFORM_SET","features":[369]},{"name":"IOCTL_FSVIDEO_COPY_FRAME_BUFFER","features":[369]},{"name":"IOCTL_FSVIDEO_REVERSE_MOUSE_POINTER","features":[369]},{"name":"IOCTL_FSVIDEO_SET_CURRENT_MODE","features":[369]},{"name":"IOCTL_FSVIDEO_SET_CURSOR_POSITION","features":[369]},{"name":"IOCTL_FSVIDEO_SET_SCREEN_INFORMATION","features":[369]},{"name":"IOCTL_FSVIDEO_WRITE_TO_FRAME_BUFFER","features":[369]},{"name":"IOCTL_MIPI_DSI_QUERY_CAPS","features":[369]},{"name":"IOCTL_MIPI_DSI_RESET","features":[369]},{"name":"IOCTL_MIPI_DSI_TRANSMISSION","features":[369]},{"name":"IOCTL_PANEL_GET_BACKLIGHT_REDUCTION","features":[369]},{"name":"IOCTL_PANEL_GET_BRIGHTNESS","features":[369]},{"name":"IOCTL_PANEL_GET_MANUFACTURING_MODE","features":[369]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_CAPS","features":[369]},{"name":"IOCTL_PANEL_QUERY_BRIGHTNESS_RANGES","features":[369]},{"name":"IOCTL_PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[369]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS","features":[369]},{"name":"IOCTL_PANEL_SET_BRIGHTNESS_STATE","features":[369]},{"name":"IOCTL_SET_ACTIVE_COLOR_PROFILE_NAME","features":[369]},{"name":"IOCTL_VIDEO_DISABLE_CURSOR","features":[369]},{"name":"IOCTL_VIDEO_DISABLE_POINTER","features":[369]},{"name":"IOCTL_VIDEO_DISABLE_VDM","features":[369]},{"name":"IOCTL_VIDEO_ENABLE_CURSOR","features":[369]},{"name":"IOCTL_VIDEO_ENABLE_POINTER","features":[369]},{"name":"IOCTL_VIDEO_ENABLE_VDM","features":[369]},{"name":"IOCTL_VIDEO_ENUM_MONITOR_PDO","features":[369]},{"name":"IOCTL_VIDEO_FREE_PUBLIC_ACCESS_RANGES","features":[369]},{"name":"IOCTL_VIDEO_GET_BANK_SELECT_CODE","features":[369]},{"name":"IOCTL_VIDEO_GET_CHILD_STATE","features":[369]},{"name":"IOCTL_VIDEO_GET_OUTPUT_DEVICE_POWER_STATE","features":[369]},{"name":"IOCTL_VIDEO_GET_POWER_MANAGEMENT","features":[369]},{"name":"IOCTL_VIDEO_HANDLE_VIDEOPARAMETERS","features":[369]},{"name":"IOCTL_VIDEO_INIT_WIN32K_CALLBACKS","features":[369]},{"name":"IOCTL_VIDEO_IS_VGA_DEVICE","features":[369]},{"name":"IOCTL_VIDEO_LOAD_AND_SET_FONT","features":[369]},{"name":"IOCTL_VIDEO_MAP_VIDEO_MEMORY","features":[369]},{"name":"IOCTL_VIDEO_MONITOR_DEVICE","features":[369]},{"name":"IOCTL_VIDEO_PREPARE_FOR_EARECOVERY","features":[369]},{"name":"IOCTL_VIDEO_QUERY_AVAIL_MODES","features":[369]},{"name":"IOCTL_VIDEO_QUERY_COLOR_CAPABILITIES","features":[369]},{"name":"IOCTL_VIDEO_QUERY_CURRENT_MODE","features":[369]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_ATTR","features":[369]},{"name":"IOCTL_VIDEO_QUERY_CURSOR_POSITION","features":[369]},{"name":"IOCTL_VIDEO_QUERY_DISPLAY_BRIGHTNESS","features":[369]},{"name":"IOCTL_VIDEO_QUERY_NUM_AVAIL_MODES","features":[369]},{"name":"IOCTL_VIDEO_QUERY_POINTER_ATTR","features":[369]},{"name":"IOCTL_VIDEO_QUERY_POINTER_CAPABILITIES","features":[369]},{"name":"IOCTL_VIDEO_QUERY_POINTER_POSITION","features":[369]},{"name":"IOCTL_VIDEO_QUERY_PUBLIC_ACCESS_RANGES","features":[369]},{"name":"IOCTL_VIDEO_QUERY_SUPPORTED_BRIGHTNESS","features":[369]},{"name":"IOCTL_VIDEO_REGISTER_VDM","features":[369]},{"name":"IOCTL_VIDEO_RESET_DEVICE","features":[369]},{"name":"IOCTL_VIDEO_RESTORE_HARDWARE_STATE","features":[369]},{"name":"IOCTL_VIDEO_SAVE_HARDWARE_STATE","features":[369]},{"name":"IOCTL_VIDEO_SET_BANK_POSITION","features":[369]},{"name":"IOCTL_VIDEO_SET_CHILD_STATE_CONFIGURATION","features":[369]},{"name":"IOCTL_VIDEO_SET_COLOR_LUT_DATA","features":[369]},{"name":"IOCTL_VIDEO_SET_COLOR_REGISTERS","features":[369]},{"name":"IOCTL_VIDEO_SET_CURRENT_MODE","features":[369]},{"name":"IOCTL_VIDEO_SET_CURSOR_ATTR","features":[369]},{"name":"IOCTL_VIDEO_SET_CURSOR_POSITION","features":[369]},{"name":"IOCTL_VIDEO_SET_DISPLAY_BRIGHTNESS","features":[369]},{"name":"IOCTL_VIDEO_SET_OUTPUT_DEVICE_POWER_STATE","features":[369]},{"name":"IOCTL_VIDEO_SET_PALETTE_REGISTERS","features":[369]},{"name":"IOCTL_VIDEO_SET_POINTER_ATTR","features":[369]},{"name":"IOCTL_VIDEO_SET_POINTER_POSITION","features":[369]},{"name":"IOCTL_VIDEO_SET_POWER_MANAGEMENT","features":[369]},{"name":"IOCTL_VIDEO_SHARE_VIDEO_MEMORY","features":[369]},{"name":"IOCTL_VIDEO_SWITCH_DUALVIEW","features":[369]},{"name":"IOCTL_VIDEO_UNMAP_VIDEO_MEMORY","features":[369]},{"name":"IOCTL_VIDEO_UNSHARE_VIDEO_MEMORY","features":[369]},{"name":"IOCTL_VIDEO_USE_DEVICE_IN_SESSION","features":[369]},{"name":"IOCTL_VIDEO_VALIDATE_CHILD_STATE_CONFIGURATION","features":[369]},{"name":"IViewHelper","features":[369]},{"name":"JOIN_BEVEL","features":[369]},{"name":"JOIN_MITER","features":[369]},{"name":"JOIN_ROUND","features":[369]},{"name":"LA_ALTERNATE","features":[369]},{"name":"LA_GEOMETRIC","features":[369]},{"name":"LA_STARTGAP","features":[369]},{"name":"LA_STYLED","features":[369]},{"name":"LIGATURE","features":[369]},{"name":"LINEATTRS","features":[369]},{"name":"LINEATTRS","features":[369]},{"name":"MAXCHARSETS","features":[369]},{"name":"MAX_PACKET_COUNT","features":[369]},{"name":"MC_APERTURE_GRILL_CATHODE_RAY_TUBE","features":[369]},{"name":"MC_BLUE_DRIVE","features":[369]},{"name":"MC_BLUE_GAIN","features":[369]},{"name":"MC_CAPS_BRIGHTNESS","features":[369]},{"name":"MC_CAPS_COLOR_TEMPERATURE","features":[369]},{"name":"MC_CAPS_CONTRAST","features":[369]},{"name":"MC_CAPS_DEGAUSS","features":[369]},{"name":"MC_CAPS_DISPLAY_AREA_POSITION","features":[369]},{"name":"MC_CAPS_DISPLAY_AREA_SIZE","features":[369]},{"name":"MC_CAPS_MONITOR_TECHNOLOGY_TYPE","features":[369]},{"name":"MC_CAPS_NONE","features":[369]},{"name":"MC_CAPS_RED_GREEN_BLUE_DRIVE","features":[369]},{"name":"MC_CAPS_RED_GREEN_BLUE_GAIN","features":[369]},{"name":"MC_CAPS_RESTORE_FACTORY_COLOR_DEFAULTS","features":[369]},{"name":"MC_CAPS_RESTORE_FACTORY_DEFAULTS","features":[369]},{"name":"MC_COLOR_TEMPERATURE","features":[369]},{"name":"MC_COLOR_TEMPERATURE_10000K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_11500K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_4000K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_5000K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_6500K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_7500K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_8200K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_9300K","features":[369]},{"name":"MC_COLOR_TEMPERATURE_UNKNOWN","features":[369]},{"name":"MC_DISPLAY_TECHNOLOGY_TYPE","features":[369]},{"name":"MC_DRIVE_TYPE","features":[369]},{"name":"MC_ELECTROLUMINESCENT","features":[369]},{"name":"MC_FIELD_EMISSION_DEVICE","features":[369]},{"name":"MC_GAIN_TYPE","features":[369]},{"name":"MC_GREEN_DRIVE","features":[369]},{"name":"MC_GREEN_GAIN","features":[369]},{"name":"MC_HEIGHT","features":[369]},{"name":"MC_HORIZONTAL_POSITION","features":[369]},{"name":"MC_LIQUID_CRYSTAL_ON_SILICON","features":[369]},{"name":"MC_MICROELECTROMECHANICAL","features":[369]},{"name":"MC_MOMENTARY","features":[369]},{"name":"MC_ORGANIC_LIGHT_EMITTING_DIODE","features":[369]},{"name":"MC_PLASMA","features":[369]},{"name":"MC_POSITION_TYPE","features":[369]},{"name":"MC_RED_DRIVE","features":[369]},{"name":"MC_RED_GAIN","features":[369]},{"name":"MC_RESTORE_FACTORY_DEFAULTS_ENABLES_MONITOR_SETTINGS","features":[369]},{"name":"MC_SET_PARAMETER","features":[369]},{"name":"MC_SHADOW_MASK_CATHODE_RAY_TUBE","features":[369]},{"name":"MC_SIZE_TYPE","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_10000K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_11500K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_4000K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_5000K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_6500K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_7500K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_8200K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_9300K","features":[369]},{"name":"MC_SUPPORTED_COLOR_TEMPERATURE_NONE","features":[369]},{"name":"MC_THIN_FILM_TRANSISTOR","features":[369]},{"name":"MC_TIMING_REPORT","features":[369]},{"name":"MC_VCP_CODE_TYPE","features":[369]},{"name":"MC_VERTICAL_POSITION","features":[369]},{"name":"MC_WIDTH","features":[369]},{"name":"MIPI_DSI_CAPS","features":[369]},{"name":"MIPI_DSI_PACKET","features":[369]},{"name":"MIPI_DSI_RESET","features":[369]},{"name":"MIPI_DSI_TRANSMISSION","features":[369]},{"name":"MS_CDDDEVICEBITMAP","features":[369]},{"name":"MS_NOTSYSTEMMEMORY","features":[369]},{"name":"MS_REUSEDDEVICEBITMAP","features":[369]},{"name":"MS_SHAREDACCESS","features":[369]},{"name":"NumVideoBankTypes","features":[369]},{"name":"OC_BANK_CLIP","features":[369]},{"name":"OPENGL_CMD","features":[369]},{"name":"OPENGL_GETINFO","features":[369]},{"name":"ORIENTATION_PREFERENCE","features":[369]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE","features":[369]},{"name":"ORIENTATION_PREFERENCE_LANDSCAPE_FLIPPED","features":[369]},{"name":"ORIENTATION_PREFERENCE_NONE","features":[369]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT","features":[369]},{"name":"ORIENTATION_PREFERENCE_PORTRAIT_FLIPPED","features":[369]},{"name":"OUTPUT_COLOR_ENCODING","features":[369]},{"name":"OUTPUT_COLOR_ENCODING_INTENSITY","features":[369]},{"name":"OUTPUT_COLOR_ENCODING_RGB","features":[369]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR420","features":[369]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR422","features":[369]},{"name":"OUTPUT_COLOR_ENCODING_YCBCR444","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_DVLL","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G2084_P2020_HDR10PLUS","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P2020","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_G22_P709_WCG","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_RESERVED","features":[369]},{"name":"OUTPUT_WIRE_COLOR_SPACE_TYPE","features":[369]},{"name":"OUTPUT_WIRE_FORMAT","features":[369]},{"name":"PALOBJ","features":[369]},{"name":"PAL_BGR","features":[369]},{"name":"PAL_BITFIELDS","features":[369]},{"name":"PAL_CMYK","features":[369]},{"name":"PAL_INDEXED","features":[369]},{"name":"PAL_RGB","features":[369]},{"name":"PANEL_BRIGHTNESS_SENSOR_DATA","features":[369]},{"name":"PANEL_GET_BACKLIGHT_REDUCTION","features":[369]},{"name":"PANEL_GET_BRIGHTNESS","features":[369]},{"name":"PANEL_QUERY_BRIGHTNESS_CAPS","features":[369]},{"name":"PANEL_QUERY_BRIGHTNESS_RANGES","features":[369]},{"name":"PANEL_SET_BACKLIGHT_OPTIMIZATION","features":[369]},{"name":"PANEL_SET_BRIGHTNESS","features":[369]},{"name":"PANEL_SET_BRIGHTNESS_STATE","features":[369]},{"name":"PATHDATA","features":[369]},{"name":"PATHOBJ","features":[369]},{"name":"PATHOBJ_bEnum","features":[369,305]},{"name":"PATHOBJ_bEnumClipLines","features":[369,305]},{"name":"PATHOBJ_vEnumStart","features":[369]},{"name":"PATHOBJ_vEnumStartClipLines","features":[369,305]},{"name":"PATHOBJ_vGetBounds","features":[369]},{"name":"PD_BEGINSUBPATH","features":[369]},{"name":"PD_BEZIERS","features":[369]},{"name":"PD_CLOSEFIGURE","features":[369]},{"name":"PD_ENDSUBPATH","features":[369]},{"name":"PD_RESETSTYLE","features":[369]},{"name":"PERBANDINFO","features":[369,305]},{"name":"PFN","features":[369]},{"name":"PFN_DrvAccumulateD3DDirtyRect","features":[369,305]},{"name":"PFN_DrvAlphaBlend","features":[369,305,316]},{"name":"PFN_DrvAssertMode","features":[369,305]},{"name":"PFN_DrvAssociateSharedSurface","features":[369,305]},{"name":"PFN_DrvBitBlt","features":[369,305]},{"name":"PFN_DrvCompletePDEV","features":[369]},{"name":"PFN_DrvCopyBits","features":[369,305]},{"name":"PFN_DrvCreateDeviceBitmap","features":[369,305,316]},{"name":"PFN_DrvCreateDeviceBitmapEx","features":[369,305,316]},{"name":"PFN_DrvDeleteDeviceBitmap","features":[369]},{"name":"PFN_DrvDeleteDeviceBitmapEx","features":[369]},{"name":"PFN_DrvDeriveSurface","features":[369,305,315,316]},{"name":"PFN_DrvDescribePixelFormat","features":[369,371]},{"name":"PFN_DrvDestroyFont","features":[369,305]},{"name":"PFN_DrvDisableDirectDraw","features":[369]},{"name":"PFN_DrvDisableDriver","features":[369]},{"name":"PFN_DrvDisablePDEV","features":[369]},{"name":"PFN_DrvDisableSurface","features":[369]},{"name":"PFN_DrvDitherColor","features":[369]},{"name":"PFN_DrvDrawEscape","features":[369,305]},{"name":"PFN_DrvEnableDirectDraw","features":[369,305,315,316]},{"name":"PFN_DrvEnableDriver","features":[369,305]},{"name":"PFN_DrvEnablePDEV","features":[369,305,316]},{"name":"PFN_DrvEnableSurface","features":[369]},{"name":"PFN_DrvEndDoc","features":[369,305]},{"name":"PFN_DrvEndDxInterop","features":[369,305]},{"name":"PFN_DrvEscape","features":[369,305]},{"name":"PFN_DrvFillPath","features":[369,305]},{"name":"PFN_DrvFontManagement","features":[369,305]},{"name":"PFN_DrvFree","features":[369]},{"name":"PFN_DrvGetDirectDrawInfo","features":[369,305,315]},{"name":"PFN_DrvGetGlyphMode","features":[369,305]},{"name":"PFN_DrvGetModes","features":[369,305,316]},{"name":"PFN_DrvGetTrueTypeFile","features":[369]},{"name":"PFN_DrvGradientFill","features":[369,305,316]},{"name":"PFN_DrvIcmCheckBitmapBits","features":[369,305]},{"name":"PFN_DrvIcmCreateColorTransform","features":[369,305,316,372]},{"name":"PFN_DrvIcmDeleteColorTransform","features":[369,305]},{"name":"PFN_DrvIcmSetDeviceGammaRamp","features":[369,305]},{"name":"PFN_DrvLineTo","features":[369,305]},{"name":"PFN_DrvLoadFontFile","features":[369,316]},{"name":"PFN_DrvLockDisplayArea","features":[369,305]},{"name":"PFN_DrvMovePointer","features":[369,305]},{"name":"PFN_DrvNextBand","features":[369,305]},{"name":"PFN_DrvNotify","features":[369,305]},{"name":"PFN_DrvPaint","features":[369,305]},{"name":"PFN_DrvPlgBlt","features":[369,305,316]},{"name":"PFN_DrvQueryAdvanceWidths","features":[369,305]},{"name":"PFN_DrvQueryDeviceSupport","features":[369,305]},{"name":"PFN_DrvQueryFont","features":[369,305,316]},{"name":"PFN_DrvQueryFontCaps","features":[369]},{"name":"PFN_DrvQueryFontData","features":[369,305]},{"name":"PFN_DrvQueryFontFile","features":[369]},{"name":"PFN_DrvQueryFontTree","features":[369]},{"name":"PFN_DrvQueryGlyphAttrs","features":[369,305]},{"name":"PFN_DrvQueryPerBandInfo","features":[369,305]},{"name":"PFN_DrvQuerySpoolType","features":[369,305]},{"name":"PFN_DrvQueryTrueTypeOutline","features":[369,305,316]},{"name":"PFN_DrvQueryTrueTypeSection","features":[369,305]},{"name":"PFN_DrvQueryTrueTypeTable","features":[369]},{"name":"PFN_DrvRealizeBrush","features":[369,305]},{"name":"PFN_DrvRenderHint","features":[369]},{"name":"PFN_DrvResetDevice","features":[369]},{"name":"PFN_DrvResetPDEV","features":[369,305]},{"name":"PFN_DrvSaveScreenBits","features":[369,305]},{"name":"PFN_DrvSendPage","features":[369,305]},{"name":"PFN_DrvSetPalette","features":[369,305]},{"name":"PFN_DrvSetPixelFormat","features":[369,305]},{"name":"PFN_DrvSetPointerShape","features":[369,305]},{"name":"PFN_DrvStartBanding","features":[369,305]},{"name":"PFN_DrvStartDoc","features":[369,305]},{"name":"PFN_DrvStartDxInterop","features":[369,305]},{"name":"PFN_DrvStartPage","features":[369,305]},{"name":"PFN_DrvStretchBlt","features":[369,305,316]},{"name":"PFN_DrvStretchBltROP","features":[369,305,316]},{"name":"PFN_DrvStrokeAndFillPath","features":[369,305]},{"name":"PFN_DrvStrokePath","features":[369,305]},{"name":"PFN_DrvSurfaceComplete","features":[369,305]},{"name":"PFN_DrvSwapBuffers","features":[369,305]},{"name":"PFN_DrvSynchronize","features":[369,305]},{"name":"PFN_DrvSynchronizeRedirectionBitmaps","features":[369,305]},{"name":"PFN_DrvSynchronizeSurface","features":[369,305]},{"name":"PFN_DrvTextOut","features":[369,305]},{"name":"PFN_DrvTransparentBlt","features":[369,305]},{"name":"PFN_DrvUnloadFontFile","features":[369,305]},{"name":"PFN_DrvUnlockDisplayArea","features":[369,305]},{"name":"PFN_EngCombineRgn","features":[369,305]},{"name":"PFN_EngCopyRgn","features":[369,305]},{"name":"PFN_EngCreateRectRgn","features":[369,305]},{"name":"PFN_EngDeleteRgn","features":[369,305]},{"name":"PFN_EngIntersectRgn","features":[369,305]},{"name":"PFN_EngSubtractRgn","features":[369,305]},{"name":"PFN_EngUnionRgn","features":[369,305]},{"name":"PFN_EngXorRgn","features":[369,305]},{"name":"PHYSICAL_MONITOR","features":[369,305]},{"name":"PHYSICAL_MONITOR_DESCRIPTION_SIZE","features":[369]},{"name":"PLANAR_HC","features":[369]},{"name":"POINTE","features":[369]},{"name":"POINTE","features":[369]},{"name":"POINTFIX","features":[369]},{"name":"POINTQF","features":[369]},{"name":"PO_ALL_INTEGERS","features":[369]},{"name":"PO_BEZIERS","features":[369]},{"name":"PO_ELLIPSE","features":[369]},{"name":"PO_ENUM_AS_INTEGERS","features":[369]},{"name":"PO_WIDENED","features":[369]},{"name":"PPC_BGR_ORDER_HORIZONTAL_STRIPES","features":[369]},{"name":"PPC_BGR_ORDER_VERTICAL_STRIPES","features":[369]},{"name":"PPC_DEFAULT","features":[369]},{"name":"PPC_RGB_ORDER_HORIZONTAL_STRIPES","features":[369]},{"name":"PPC_RGB_ORDER_VERTICAL_STRIPES","features":[369]},{"name":"PPC_UNDEFINED","features":[369]},{"name":"PPG_DEFAULT","features":[369]},{"name":"PPG_SRGB","features":[369]},{"name":"PRIMARY_ORDER_ABC","features":[369]},{"name":"PRIMARY_ORDER_ACB","features":[369]},{"name":"PRIMARY_ORDER_BAC","features":[369]},{"name":"PRIMARY_ORDER_BCA","features":[369]},{"name":"PRIMARY_ORDER_CAB","features":[369]},{"name":"PRIMARY_ORDER_CBA","features":[369]},{"name":"PVIDEO_WIN32K_CALLOUT","features":[369]},{"name":"QAW_GETEASYWIDTHS","features":[369]},{"name":"QAW_GETWIDTHS","features":[369]},{"name":"QC_1BIT","features":[369]},{"name":"QC_4BIT","features":[369]},{"name":"QC_OUTLINES","features":[369]},{"name":"QDA_ACCELERATION_LEVEL","features":[369]},{"name":"QDA_RESERVED","features":[369]},{"name":"QDC_ALL_PATHS","features":[369]},{"name":"QDC_DATABASE_CURRENT","features":[369]},{"name":"QDC_INCLUDE_HMD","features":[369]},{"name":"QDC_ONLY_ACTIVE_PATHS","features":[369]},{"name":"QDC_VIRTUAL_MODE_AWARE","features":[369]},{"name":"QDC_VIRTUAL_REFRESH_RATE_AWARE","features":[369]},{"name":"QDS_CHECKJPEGFORMAT","features":[369]},{"name":"QDS_CHECKPNGFORMAT","features":[369]},{"name":"QFD_GLYPHANDBITMAP","features":[369]},{"name":"QFD_GLYPHANDOUTLINE","features":[369]},{"name":"QFD_MAXEXTENTS","features":[369]},{"name":"QFD_TT_GLYPHANDBITMAP","features":[369]},{"name":"QFD_TT_GRAY1_BITMAP","features":[369]},{"name":"QFD_TT_GRAY2_BITMAP","features":[369]},{"name":"QFD_TT_GRAY4_BITMAP","features":[369]},{"name":"QFD_TT_GRAY8_BITMAP","features":[369]},{"name":"QFD_TT_MONO_BITMAP","features":[369]},{"name":"QFF_DESCRIPTION","features":[369]},{"name":"QFF_NUMFACES","features":[369]},{"name":"QFT_GLYPHSET","features":[369]},{"name":"QFT_KERNPAIRS","features":[369]},{"name":"QFT_LIGATURES","features":[369]},{"name":"QSA_3DNOW","features":[369]},{"name":"QSA_MMX","features":[369]},{"name":"QSA_SSE","features":[369]},{"name":"QSA_SSE1","features":[369]},{"name":"QSA_SSE2","features":[369]},{"name":"QSA_SSE3","features":[369]},{"name":"QUERY_DISPLAY_CONFIG_FLAGS","features":[369]},{"name":"QueryDisplayConfig","features":[369,305]},{"name":"RB_DITHERCOLOR","features":[369]},{"name":"RECTFX","features":[369]},{"name":"RUN","features":[369]},{"name":"RestoreMonitorFactoryColorDefaults","features":[369,305]},{"name":"RestoreMonitorFactoryDefaults","features":[369,305]},{"name":"SDC_ALLOW_CHANGES","features":[369]},{"name":"SDC_ALLOW_PATH_ORDER_CHANGES","features":[369]},{"name":"SDC_APPLY","features":[369]},{"name":"SDC_FORCE_MODE_ENUMERATION","features":[369]},{"name":"SDC_NO_OPTIMIZATION","features":[369]},{"name":"SDC_PATH_PERSIST_IF_REQUIRED","features":[369]},{"name":"SDC_SAVE_TO_DATABASE","features":[369]},{"name":"SDC_TOPOLOGY_CLONE","features":[369]},{"name":"SDC_TOPOLOGY_EXTEND","features":[369]},{"name":"SDC_TOPOLOGY_EXTERNAL","features":[369]},{"name":"SDC_TOPOLOGY_INTERNAL","features":[369]},{"name":"SDC_TOPOLOGY_SUPPLIED","features":[369]},{"name":"SDC_USE_DATABASE_CURRENT","features":[369]},{"name":"SDC_USE_SUPPLIED_DISPLAY_CONFIG","features":[369]},{"name":"SDC_VALIDATE","features":[369]},{"name":"SDC_VIRTUAL_MODE_AWARE","features":[369]},{"name":"SDC_VIRTUAL_REFRESH_RATE_AWARE","features":[369]},{"name":"SETCONFIGURATION_STATUS_ADDITIONAL","features":[369]},{"name":"SETCONFIGURATION_STATUS_APPLIED","features":[369]},{"name":"SETCONFIGURATION_STATUS_OVERRIDDEN","features":[369]},{"name":"SET_ACTIVE_COLOR_PROFILE_NAME","features":[369]},{"name":"SET_DISPLAY_CONFIG_FLAGS","features":[369]},{"name":"SGI_EXTRASPACE","features":[369]},{"name":"SORTCOMP","features":[369]},{"name":"SO_BREAK_EXTRA","features":[369]},{"name":"SO_CHARACTER_EXTRA","features":[369]},{"name":"SO_CHAR_INC_EQUAL_BM_BASE","features":[369]},{"name":"SO_DO_NOT_SUBSTITUTE_DEVICE_FONT","features":[369]},{"name":"SO_DXDY","features":[369]},{"name":"SO_ESC_NOT_ORIENT","features":[369]},{"name":"SO_FLAG_DEFAULT_PLACEMENT","features":[369]},{"name":"SO_GLYPHINDEX_TEXTOUT","features":[369]},{"name":"SO_HORIZONTAL","features":[369]},{"name":"SO_MAXEXT_EQUAL_BM_SIDE","features":[369]},{"name":"SO_REVERSED","features":[369]},{"name":"SO_VERTICAL","features":[369]},{"name":"SO_ZERO_BEARINGS","features":[369]},{"name":"SPS_ACCEPT_EXCLUDE","features":[369]},{"name":"SPS_ACCEPT_NOEXCLUDE","features":[369]},{"name":"SPS_ACCEPT_SYNCHRONOUS","features":[369]},{"name":"SPS_ALPHA","features":[369]},{"name":"SPS_ANIMATESTART","features":[369]},{"name":"SPS_ANIMATEUPDATE","features":[369]},{"name":"SPS_ASYNCCHANGE","features":[369]},{"name":"SPS_CHANGE","features":[369]},{"name":"SPS_DECLINE","features":[369]},{"name":"SPS_ERROR","features":[369]},{"name":"SPS_FLAGSMASK","features":[369]},{"name":"SPS_FREQMASK","features":[369]},{"name":"SPS_LENGTHMASK","features":[369]},{"name":"SPS_RESERVED","features":[369]},{"name":"SPS_RESERVED1","features":[369]},{"name":"SS_FREE","features":[369]},{"name":"SS_RESTORE","features":[369]},{"name":"SS_SAVE","features":[369]},{"name":"STROBJ","features":[369,305]},{"name":"STROBJ_bEnum","features":[369,305]},{"name":"STROBJ_bEnumPositionsOnly","features":[369,305]},{"name":"STROBJ_bGetAdvanceWidths","features":[369,305]},{"name":"STROBJ_dwGetCodePage","features":[369,305]},{"name":"STROBJ_vEnumStart","features":[369,305]},{"name":"STYPE_BITMAP","features":[369]},{"name":"STYPE_DEVBITMAP","features":[369]},{"name":"SURFOBJ","features":[369,305]},{"name":"S_INIT","features":[369]},{"name":"SaveCurrentMonitorSettings","features":[369,305]},{"name":"SaveCurrentSettings","features":[369,305]},{"name":"SetDisplayAutoRotationPreferences","features":[369,305]},{"name":"SetDisplayConfig","features":[369,305]},{"name":"SetMonitorBrightness","features":[369,305]},{"name":"SetMonitorColorTemperature","features":[369,305]},{"name":"SetMonitorContrast","features":[369,305]},{"name":"SetMonitorDisplayAreaPosition","features":[369,305]},{"name":"SetMonitorDisplayAreaSize","features":[369,305]},{"name":"SetMonitorRedGreenOrBlueDrive","features":[369,305]},{"name":"SetMonitorRedGreenOrBlueGain","features":[369,305]},{"name":"SetVCPFeature","features":[369,305]},{"name":"Sources","features":[369]},{"name":"TC_PATHOBJ","features":[369]},{"name":"TC_RECTANGLES","features":[369]},{"name":"TTO_METRICS_ONLY","features":[369]},{"name":"TTO_QUBICS","features":[369]},{"name":"TTO_UNHINTED","features":[369]},{"name":"TYPE1_FONT","features":[369,305]},{"name":"VGA_CHAR","features":[369]},{"name":"VIDEOPARAMETERS","features":[369]},{"name":"VIDEO_BANK_SELECT","features":[369]},{"name":"VIDEO_BANK_TYPE","features":[369]},{"name":"VIDEO_BRIGHTNESS_POLICY","features":[369,305]},{"name":"VIDEO_CLUT","features":[369]},{"name":"VIDEO_CLUTDATA","features":[369]},{"name":"VIDEO_COLOR_CAPABILITIES","features":[369]},{"name":"VIDEO_COLOR_LUT_DATA","features":[369]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_PRIVATEFORMAT","features":[369]},{"name":"VIDEO_COLOR_LUT_DATA_FORMAT_RGB256WORDS","features":[369]},{"name":"VIDEO_CURSOR_ATTRIBUTES","features":[369]},{"name":"VIDEO_CURSOR_POSITION","features":[369]},{"name":"VIDEO_DEVICE_COLOR","features":[369]},{"name":"VIDEO_DEVICE_NAME","features":[369]},{"name":"VIDEO_DEVICE_SESSION_STATUS","features":[369]},{"name":"VIDEO_DUALVIEW_PRIMARY","features":[369]},{"name":"VIDEO_DUALVIEW_REMOVABLE","features":[369]},{"name":"VIDEO_DUALVIEW_SECONDARY","features":[369]},{"name":"VIDEO_DUALVIEW_WDDM_VGA","features":[369]},{"name":"VIDEO_HARDWARE_STATE","features":[369]},{"name":"VIDEO_HARDWARE_STATE_HEADER","features":[369]},{"name":"VIDEO_LOAD_FONT_INFORMATION","features":[369]},{"name":"VIDEO_LUT_RGB256WORDS","features":[369]},{"name":"VIDEO_MAX_REASON","features":[369]},{"name":"VIDEO_MEMORY","features":[369]},{"name":"VIDEO_MEMORY_INFORMATION","features":[369]},{"name":"VIDEO_MODE","features":[369]},{"name":"VIDEO_MODE_ANIMATE_START","features":[369]},{"name":"VIDEO_MODE_ANIMATE_UPDATE","features":[369]},{"name":"VIDEO_MODE_ASYNC_POINTER","features":[369]},{"name":"VIDEO_MODE_BANKED","features":[369]},{"name":"VIDEO_MODE_COLOR","features":[369]},{"name":"VIDEO_MODE_COLOR_POINTER","features":[369]},{"name":"VIDEO_MODE_GRAPHICS","features":[369]},{"name":"VIDEO_MODE_INFORMATION","features":[369]},{"name":"VIDEO_MODE_INTERLACED","features":[369]},{"name":"VIDEO_MODE_LINEAR","features":[369]},{"name":"VIDEO_MODE_MANAGED_PALETTE","features":[369]},{"name":"VIDEO_MODE_MAP_MEM_LINEAR","features":[369]},{"name":"VIDEO_MODE_MONO_POINTER","features":[369]},{"name":"VIDEO_MODE_NO_64_BIT_ACCESS","features":[369]},{"name":"VIDEO_MODE_NO_OFF_SCREEN","features":[369]},{"name":"VIDEO_MODE_NO_ZERO_MEMORY","features":[369]},{"name":"VIDEO_MODE_PALETTE_DRIVEN","features":[369]},{"name":"VIDEO_MONITOR_DESCRIPTOR","features":[369]},{"name":"VIDEO_NUM_MODES","features":[369]},{"name":"VIDEO_OPTIONAL_GAMMET_TABLE","features":[369]},{"name":"VIDEO_PALETTE_DATA","features":[369]},{"name":"VIDEO_PERFORMANCE_COUNTER","features":[369]},{"name":"VIDEO_POINTER_ATTRIBUTES","features":[369]},{"name":"VIDEO_POINTER_CAPABILITIES","features":[369]},{"name":"VIDEO_POINTER_POSITION","features":[369]},{"name":"VIDEO_POWER_MANAGEMENT","features":[369]},{"name":"VIDEO_POWER_STATE","features":[369]},{"name":"VIDEO_PUBLIC_ACCESS_RANGES","features":[369]},{"name":"VIDEO_QUERY_PERFORMANCE_COUNTER","features":[369]},{"name":"VIDEO_REASON_ALLOCATION","features":[369]},{"name":"VIDEO_REASON_CONFIGURATION","features":[369]},{"name":"VIDEO_REASON_FAILED_ROTATION","features":[369]},{"name":"VIDEO_REASON_LOCK","features":[369]},{"name":"VIDEO_REASON_NONE","features":[369]},{"name":"VIDEO_REASON_POLICY1","features":[369]},{"name":"VIDEO_REASON_POLICY2","features":[369]},{"name":"VIDEO_REASON_POLICY3","features":[369]},{"name":"VIDEO_REASON_POLICY4","features":[369]},{"name":"VIDEO_REASON_SCRATCH","features":[369]},{"name":"VIDEO_REGISTER_VDM","features":[369]},{"name":"VIDEO_SHARE_MEMORY","features":[369,305]},{"name":"VIDEO_SHARE_MEMORY_INFORMATION","features":[369]},{"name":"VIDEO_STATE_NON_STANDARD_VGA","features":[369]},{"name":"VIDEO_STATE_PACKED_CHAIN4_MODE","features":[369]},{"name":"VIDEO_STATE_UNEMULATED_VGA_STATE","features":[369]},{"name":"VIDEO_VDM","features":[369,305]},{"name":"VIDEO_WIN32K_CALLBACKS","features":[369,305]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS","features":[369,305]},{"name":"VIDEO_WIN32K_CALLBACKS_PARAMS_TYPE","features":[369]},{"name":"VideoBanked1R1W","features":[369]},{"name":"VideoBanked1RW","features":[369]},{"name":"VideoBanked2RW","features":[369]},{"name":"VideoBlackScreenDiagnostics","features":[369]},{"name":"VideoDesktopDuplicationChange","features":[369]},{"name":"VideoDisableMultiPlaneOverlay","features":[369]},{"name":"VideoDxgkDisplaySwitchCallout","features":[369]},{"name":"VideoDxgkFindAdapterTdrCallout","features":[369]},{"name":"VideoDxgkHardwareProtectionTeardown","features":[369]},{"name":"VideoEnumChildPdoNotifyCallout","features":[369]},{"name":"VideoFindAdapterCallout","features":[369]},{"name":"VideoNotBanked","features":[369]},{"name":"VideoPnpNotifyCallout","features":[369]},{"name":"VideoPowerHibernate","features":[369]},{"name":"VideoPowerMaximum","features":[369]},{"name":"VideoPowerNotifyCallout","features":[369]},{"name":"VideoPowerOff","features":[369]},{"name":"VideoPowerOn","features":[369]},{"name":"VideoPowerShutdown","features":[369]},{"name":"VideoPowerStandBy","features":[369]},{"name":"VideoPowerSuspend","features":[369]},{"name":"VideoPowerUnspecified","features":[369]},{"name":"VideoRepaintDesktop","features":[369]},{"name":"VideoUpdateCursor","features":[369]},{"name":"WCRUN","features":[369]},{"name":"WINDDI_MAXSETPALETTECOLORINDEX","features":[369]},{"name":"WINDDI_MAXSETPALETTECOLORS","features":[369]},{"name":"WINDDI_MAX_BROADCAST_CONTEXT","features":[369]},{"name":"WNDOBJ","features":[369,305]},{"name":"WNDOBJCHANGEPROC","features":[369,305]},{"name":"WNDOBJ_SETUP","features":[369]},{"name":"WOC_CHANGED","features":[369]},{"name":"WOC_DELETE","features":[369]},{"name":"WOC_DRAWN","features":[369]},{"name":"WOC_RGN_CLIENT","features":[369]},{"name":"WOC_RGN_CLIENT_DELTA","features":[369]},{"name":"WOC_RGN_SPRITE","features":[369]},{"name":"WOC_RGN_SURFACE","features":[369]},{"name":"WOC_RGN_SURFACE_DELTA","features":[369]},{"name":"WOC_SPRITE_NO_OVERLAP","features":[369]},{"name":"WOC_SPRITE_OVERLAP","features":[369]},{"name":"WO_DRAW_NOTIFY","features":[369]},{"name":"WO_RGN_CLIENT","features":[369]},{"name":"WO_RGN_CLIENT_DELTA","features":[369]},{"name":"WO_RGN_DESKTOP_COORD","features":[369]},{"name":"WO_RGN_SPRITE","features":[369]},{"name":"WO_RGN_SURFACE","features":[369]},{"name":"WO_RGN_SURFACE_DELTA","features":[369]},{"name":"WO_RGN_UPDATE_ALL","features":[369]},{"name":"WO_RGN_WINDOW","features":[369]},{"name":"WO_SPRITE_NOTIFY","features":[369]},{"name":"WVIDEO_DEVICE_NAME","features":[369]},{"name":"XFORML","features":[369]},{"name":"XFORML","features":[369]},{"name":"XFORMOBJ","features":[369]},{"name":"XFORMOBJ_bApplyXform","features":[369,305]},{"name":"XFORMOBJ_iGetXform","features":[369]},{"name":"XF_INV_FXTOL","features":[369]},{"name":"XF_INV_LTOL","features":[369]},{"name":"XF_LTOFX","features":[369]},{"name":"XF_LTOL","features":[369]},{"name":"XLATEOBJ","features":[369]},{"name":"XLATEOBJ_cGetPalette","features":[369]},{"name":"XLATEOBJ_hGetColorTransform","features":[369,305]},{"name":"XLATEOBJ_iXlate","features":[369]},{"name":"XLATEOBJ_piVector","features":[369]},{"name":"XO_DESTBITFIELDS","features":[369]},{"name":"XO_DESTDCPALETTE","features":[369]},{"name":"XO_DESTPALETTE","features":[369]},{"name":"XO_DEVICE_ICM","features":[369]},{"name":"XO_FROM_CMYK","features":[369]},{"name":"XO_HOST_ICM","features":[369]},{"name":"XO_SRCBITFIELDS","features":[369]},{"name":"XO_SRCPALETTE","features":[369]},{"name":"XO_TABLE","features":[369]},{"name":"XO_TO_MONO","features":[369]},{"name":"XO_TRIVIAL","features":[369]}],"377":[{"name":"ADDRESS_FAMILY_VALUE_NAME","features":[373]},{"name":"FAULT_ACTION_SPECIFIC_BASE","features":[373]},{"name":"FAULT_ACTION_SPECIFIC_MAX","features":[373]},{"name":"FAULT_DEVICE_INTERNAL_ERROR","features":[373]},{"name":"FAULT_INVALID_ACTION","features":[373]},{"name":"FAULT_INVALID_ARG","features":[373]},{"name":"FAULT_INVALID_SEQUENCE_NUMBER","features":[373]},{"name":"FAULT_INVALID_VARIABLE","features":[373]},{"name":"HSWDEVICE","features":[373]},{"name":"IUPnPAddressFamilyControl","features":[373]},{"name":"IUPnPAsyncResult","features":[373]},{"name":"IUPnPDescriptionDocument","features":[373,356]},{"name":"IUPnPDescriptionDocumentCallback","features":[373]},{"name":"IUPnPDevice","features":[373,356]},{"name":"IUPnPDeviceControl","features":[373]},{"name":"IUPnPDeviceControlHttpHeaders","features":[373]},{"name":"IUPnPDeviceDocumentAccess","features":[373]},{"name":"IUPnPDeviceDocumentAccessEx","features":[373]},{"name":"IUPnPDeviceFinder","features":[373,356]},{"name":"IUPnPDeviceFinderAddCallbackWithInterface","features":[373]},{"name":"IUPnPDeviceFinderCallback","features":[373]},{"name":"IUPnPDeviceProvider","features":[373]},{"name":"IUPnPDevices","features":[373,356]},{"name":"IUPnPEventSink","features":[373]},{"name":"IUPnPEventSource","features":[373]},{"name":"IUPnPHttpHeaderControl","features":[373]},{"name":"IUPnPRegistrar","features":[373]},{"name":"IUPnPRemoteEndpointInfo","features":[373]},{"name":"IUPnPReregistrar","features":[373]},{"name":"IUPnPService","features":[373,356]},{"name":"IUPnPServiceAsync","features":[373]},{"name":"IUPnPServiceCallback","features":[373]},{"name":"IUPnPServiceDocumentAccess","features":[373]},{"name":"IUPnPServiceEnumProperty","features":[373]},{"name":"IUPnPServices","features":[373,356]},{"name":"REMOTE_ADDRESS_VALUE_NAME","features":[373]},{"name":"SWDeviceCapabilitiesDriverRequired","features":[373]},{"name":"SWDeviceCapabilitiesNoDisplayInUI","features":[373]},{"name":"SWDeviceCapabilitiesNone","features":[373]},{"name":"SWDeviceCapabilitiesRemovable","features":[373]},{"name":"SWDeviceCapabilitiesSilentInstall","features":[373]},{"name":"SWDeviceLifetimeHandle","features":[373]},{"name":"SWDeviceLifetimeMax","features":[373]},{"name":"SWDeviceLifetimeParentPresent","features":[373]},{"name":"SW_DEVICE_CAPABILITIES","features":[373]},{"name":"SW_DEVICE_CREATE_CALLBACK","features":[373]},{"name":"SW_DEVICE_CREATE_INFO","features":[373,308]},{"name":"SW_DEVICE_LIFETIME","features":[373]},{"name":"SwDeviceClose","features":[373]},{"name":"SwDeviceCreate","features":[373,303,308]},{"name":"SwDeviceGetLifetime","features":[373]},{"name":"SwDeviceInterfacePropertySet","features":[373,303]},{"name":"SwDeviceInterfaceRegister","features":[373,303,305]},{"name":"SwDeviceInterfaceSetState","features":[373,305]},{"name":"SwDevicePropertySet","features":[373,303]},{"name":"SwDeviceSetLifetime","features":[373]},{"name":"SwMemFree","features":[373]},{"name":"UPNP_ADDRESSFAMILY_BOTH","features":[373]},{"name":"UPNP_ADDRESSFAMILY_IPv4","features":[373]},{"name":"UPNP_ADDRESSFAMILY_IPv6","features":[373]},{"name":"UPNP_E_ACTION_REQUEST_FAILED","features":[373]},{"name":"UPNP_E_ACTION_SPECIFIC_BASE","features":[373]},{"name":"UPNP_E_DEVICE_ELEMENT_EXPECTED","features":[373]},{"name":"UPNP_E_DEVICE_ERROR","features":[373]},{"name":"UPNP_E_DEVICE_NODE_INCOMPLETE","features":[373]},{"name":"UPNP_E_DEVICE_NOTREGISTERED","features":[373]},{"name":"UPNP_E_DEVICE_RUNNING","features":[373]},{"name":"UPNP_E_DEVICE_TIMEOUT","features":[373]},{"name":"UPNP_E_DUPLICATE_NOT_ALLOWED","features":[373]},{"name":"UPNP_E_DUPLICATE_SERVICE_ID","features":[373]},{"name":"UPNP_E_ERROR_PROCESSING_RESPONSE","features":[373]},{"name":"UPNP_E_EVENT_SUBSCRIPTION_FAILED","features":[373]},{"name":"UPNP_E_ICON_ELEMENT_EXPECTED","features":[373]},{"name":"UPNP_E_ICON_NODE_INCOMPLETE","features":[373]},{"name":"UPNP_E_INVALID_ACTION","features":[373]},{"name":"UPNP_E_INVALID_ARGUMENTS","features":[373]},{"name":"UPNP_E_INVALID_DESCRIPTION","features":[373]},{"name":"UPNP_E_INVALID_DOCUMENT","features":[373]},{"name":"UPNP_E_INVALID_ICON","features":[373]},{"name":"UPNP_E_INVALID_ROOT_NAMESPACE","features":[373]},{"name":"UPNP_E_INVALID_SERVICE","features":[373]},{"name":"UPNP_E_INVALID_VARIABLE","features":[373]},{"name":"UPNP_E_INVALID_XML","features":[373]},{"name":"UPNP_E_OUT_OF_SYNC","features":[373]},{"name":"UPNP_E_PROTOCOL_ERROR","features":[373]},{"name":"UPNP_E_REQUIRED_ELEMENT_ERROR","features":[373]},{"name":"UPNP_E_ROOT_ELEMENT_EXPECTED","features":[373]},{"name":"UPNP_E_SERVICE_ELEMENT_EXPECTED","features":[373]},{"name":"UPNP_E_SERVICE_NODE_INCOMPLETE","features":[373]},{"name":"UPNP_E_SUFFIX_TOO_LONG","features":[373]},{"name":"UPNP_E_TRANSPORT_ERROR","features":[373]},{"name":"UPNP_E_URLBASE_PRESENT","features":[373]},{"name":"UPNP_E_VALUE_TOO_LONG","features":[373]},{"name":"UPNP_E_VARIABLE_VALUE_UNKNOWN","features":[373]},{"name":"UPNP_SERVICE_DELAY_SCPD_AND_SUBSCRIPTION","features":[373]},{"name":"UPnPDescriptionDocument","features":[373]},{"name":"UPnPDescriptionDocumentEx","features":[373]},{"name":"UPnPDevice","features":[373]},{"name":"UPnPDeviceFinder","features":[373]},{"name":"UPnPDeviceFinderEx","features":[373]},{"name":"UPnPDevices","features":[373]},{"name":"UPnPRegistrar","features":[373]},{"name":"UPnPRemoteEndpointInfo","features":[373]},{"name":"UPnPService","features":[373]},{"name":"UPnPServices","features":[373]}],"378":[{"name":"CF_MSFAXSRV_DEVICE_ID","features":[374]},{"name":"CF_MSFAXSRV_FSP_GUID","features":[374]},{"name":"CF_MSFAXSRV_ROUTEEXT_NAME","features":[374]},{"name":"CF_MSFAXSRV_ROUTING_METHOD_GUID","features":[374]},{"name":"CF_MSFAXSRV_SERVER_NAME","features":[374]},{"name":"CLSID_Sti","features":[374]},{"name":"CanSendToFaxRecipient","features":[374,305]},{"name":"DEVPKEY_WIA_DeviceType","features":[374,303]},{"name":"DEVPKEY_WIA_USDClassId","features":[374,303]},{"name":"DEV_ID_SRC_FAX","features":[374]},{"name":"DEV_ID_SRC_TAPI","features":[374]},{"name":"DRT_EMAIL","features":[374]},{"name":"DRT_INBOX","features":[374]},{"name":"DRT_NONE","features":[374]},{"name":"FAXDEVRECEIVE_SIZE","features":[374]},{"name":"FAXDEVREPORTSTATUS_SIZE","features":[374]},{"name":"FAXLOG_CATEGORY_INBOUND","features":[374]},{"name":"FAXLOG_CATEGORY_INIT","features":[374]},{"name":"FAXLOG_CATEGORY_OUTBOUND","features":[374]},{"name":"FAXLOG_CATEGORY_UNKNOWN","features":[374]},{"name":"FAXLOG_LEVEL_MAX","features":[374]},{"name":"FAXLOG_LEVEL_MED","features":[374]},{"name":"FAXLOG_LEVEL_MIN","features":[374]},{"name":"FAXLOG_LEVEL_NONE","features":[374]},{"name":"FAXROUTE_ENABLE","features":[374]},{"name":"FAXSRV_DEVICE_NODETYPE_GUID","features":[374]},{"name":"FAXSRV_DEVICE_PROVIDER_NODETYPE_GUID","features":[374]},{"name":"FAXSRV_ROUTING_METHOD_NODETYPE_GUID","features":[374]},{"name":"FAX_ACCESS_RIGHTS_ENUM","features":[374]},{"name":"FAX_ACCESS_RIGHTS_ENUM_2","features":[374]},{"name":"FAX_ACCOUNT_EVENTS_TYPE_ENUM","features":[374]},{"name":"FAX_CONFIGURATIONA","features":[374,305]},{"name":"FAX_CONFIGURATIONW","features":[374,305]},{"name":"FAX_CONFIG_QUERY","features":[374]},{"name":"FAX_CONFIG_SET","features":[374]},{"name":"FAX_CONTEXT_INFOA","features":[374,316]},{"name":"FAX_CONTEXT_INFOW","features":[374,316]},{"name":"FAX_COVERPAGE_INFOA","features":[374,305]},{"name":"FAX_COVERPAGE_INFOW","features":[374,305]},{"name":"FAX_COVERPAGE_TYPE_ENUM","features":[374]},{"name":"FAX_DEVICE_RECEIVE_MODE_ENUM","features":[374]},{"name":"FAX_DEVICE_STATUSA","features":[374,305]},{"name":"FAX_DEVICE_STATUSW","features":[374,305]},{"name":"FAX_DEV_STATUS","features":[374]},{"name":"FAX_ENUM_DELIVERY_REPORT_TYPES","features":[374]},{"name":"FAX_ENUM_DEVICE_ID_SOURCE","features":[374]},{"name":"FAX_ENUM_JOB_COMMANDS","features":[374]},{"name":"FAX_ENUM_JOB_SEND_ATTRIBUTES","features":[374]},{"name":"FAX_ENUM_LOG_CATEGORIES","features":[374]},{"name":"FAX_ENUM_LOG_LEVELS","features":[374]},{"name":"FAX_ENUM_PORT_OPEN_TYPE","features":[374]},{"name":"FAX_ERR_BAD_GROUP_CONFIGURATION","features":[374]},{"name":"FAX_ERR_DEVICE_NUM_LIMIT_EXCEEDED","features":[374]},{"name":"FAX_ERR_DIRECTORY_IN_USE","features":[374]},{"name":"FAX_ERR_END","features":[374]},{"name":"FAX_ERR_FILE_ACCESS_DENIED","features":[374]},{"name":"FAX_ERR_GROUP_IN_USE","features":[374]},{"name":"FAX_ERR_GROUP_NOT_FOUND","features":[374]},{"name":"FAX_ERR_MESSAGE_NOT_FOUND","features":[374]},{"name":"FAX_ERR_NOT_NTFS","features":[374]},{"name":"FAX_ERR_NOT_SUPPORTED_ON_THIS_SKU","features":[374]},{"name":"FAX_ERR_RECIPIENTS_LIMIT","features":[374]},{"name":"FAX_ERR_RULE_NOT_FOUND","features":[374]},{"name":"FAX_ERR_SRV_OUTOFMEMORY","features":[374]},{"name":"FAX_ERR_START","features":[374]},{"name":"FAX_ERR_VERSION_MISMATCH","features":[374]},{"name":"FAX_EVENTA","features":[374,305]},{"name":"FAX_EVENTW","features":[374,305]},{"name":"FAX_E_BAD_GROUP_CONFIGURATION","features":[374]},{"name":"FAX_E_DEVICE_NUM_LIMIT_EXCEEDED","features":[374]},{"name":"FAX_E_DIRECTORY_IN_USE","features":[374]},{"name":"FAX_E_FILE_ACCESS_DENIED","features":[374]},{"name":"FAX_E_GROUP_IN_USE","features":[374]},{"name":"FAX_E_GROUP_NOT_FOUND","features":[374]},{"name":"FAX_E_MESSAGE_NOT_FOUND","features":[374]},{"name":"FAX_E_NOT_NTFS","features":[374]},{"name":"FAX_E_NOT_SUPPORTED_ON_THIS_SKU","features":[374]},{"name":"FAX_E_RECIPIENTS_LIMIT","features":[374]},{"name":"FAX_E_RULE_NOT_FOUND","features":[374]},{"name":"FAX_E_SRV_OUTOFMEMORY","features":[374]},{"name":"FAX_E_VERSION_MISMATCH","features":[374]},{"name":"FAX_GLOBAL_ROUTING_INFOA","features":[374]},{"name":"FAX_GLOBAL_ROUTING_INFOW","features":[374]},{"name":"FAX_GROUP_STATUS_ENUM","features":[374]},{"name":"FAX_JOB_ENTRYA","features":[374,305]},{"name":"FAX_JOB_ENTRYW","features":[374,305]},{"name":"FAX_JOB_EXTENDED_STATUS_ENUM","features":[374]},{"name":"FAX_JOB_MANAGE","features":[374]},{"name":"FAX_JOB_OPERATIONS_ENUM","features":[374]},{"name":"FAX_JOB_PARAMA","features":[374,305]},{"name":"FAX_JOB_PARAMW","features":[374,305]},{"name":"FAX_JOB_QUERY","features":[374]},{"name":"FAX_JOB_STATUS_ENUM","features":[374]},{"name":"FAX_JOB_SUBMIT","features":[374]},{"name":"FAX_JOB_TYPE_ENUM","features":[374]},{"name":"FAX_LOG_CATEGORYA","features":[374]},{"name":"FAX_LOG_CATEGORYW","features":[374]},{"name":"FAX_LOG_LEVEL_ENUM","features":[374]},{"name":"FAX_PORT_INFOA","features":[374]},{"name":"FAX_PORT_INFOW","features":[374]},{"name":"FAX_PORT_QUERY","features":[374]},{"name":"FAX_PORT_SET","features":[374]},{"name":"FAX_PRINT_INFOA","features":[374]},{"name":"FAX_PRINT_INFOW","features":[374]},{"name":"FAX_PRIORITY_TYPE_ENUM","features":[374]},{"name":"FAX_PROVIDER_STATUS_ENUM","features":[374]},{"name":"FAX_RECEIPT_TYPE_ENUM","features":[374]},{"name":"FAX_RECEIVE","features":[374]},{"name":"FAX_ROUTE","features":[374]},{"name":"FAX_ROUTE_CALLBACKROUTINES","features":[374,305]},{"name":"FAX_ROUTING_METHODA","features":[374,305]},{"name":"FAX_ROUTING_METHODW","features":[374,305]},{"name":"FAX_ROUTING_RULE_CODE_ENUM","features":[374]},{"name":"FAX_RULE_STATUS_ENUM","features":[374]},{"name":"FAX_SCHEDULE_TYPE_ENUM","features":[374]},{"name":"FAX_SEND","features":[374,305]},{"name":"FAX_SERVER_APIVERSION_ENUM","features":[374]},{"name":"FAX_SERVER_EVENTS_TYPE_ENUM","features":[374]},{"name":"FAX_SMTP_AUTHENTICATION_TYPE_ENUM","features":[374]},{"name":"FAX_TIME","features":[374]},{"name":"FEI_ABORTING","features":[374]},{"name":"FEI_ANSWERED","features":[374]},{"name":"FEI_BAD_ADDRESS","features":[374]},{"name":"FEI_BUSY","features":[374]},{"name":"FEI_CALL_BLACKLISTED","features":[374]},{"name":"FEI_CALL_DELAYED","features":[374]},{"name":"FEI_COMPLETED","features":[374]},{"name":"FEI_DELETED","features":[374]},{"name":"FEI_DIALING","features":[374]},{"name":"FEI_DISCONNECTED","features":[374]},{"name":"FEI_FATAL_ERROR","features":[374]},{"name":"FEI_FAXSVC_ENDED","features":[374]},{"name":"FEI_FAXSVC_STARTED","features":[374]},{"name":"FEI_HANDLED","features":[374]},{"name":"FEI_IDLE","features":[374]},{"name":"FEI_INITIALIZING","features":[374]},{"name":"FEI_JOB_QUEUED","features":[374]},{"name":"FEI_LINE_UNAVAILABLE","features":[374]},{"name":"FEI_MODEM_POWERED_OFF","features":[374]},{"name":"FEI_MODEM_POWERED_ON","features":[374]},{"name":"FEI_NEVENTS","features":[374]},{"name":"FEI_NOT_FAX_CALL","features":[374]},{"name":"FEI_NO_ANSWER","features":[374]},{"name":"FEI_NO_DIAL_TONE","features":[374]},{"name":"FEI_RECEIVING","features":[374]},{"name":"FEI_RINGING","features":[374]},{"name":"FEI_ROUTING","features":[374]},{"name":"FEI_SENDING","features":[374]},{"name":"FPF_RECEIVE","features":[374]},{"name":"FPF_SEND","features":[374]},{"name":"FPF_VIRTUAL","features":[374]},{"name":"FPS_ABORTING","features":[374]},{"name":"FPS_ANSWERED","features":[374]},{"name":"FPS_AVAILABLE","features":[374]},{"name":"FPS_BAD_ADDRESS","features":[374]},{"name":"FPS_BUSY","features":[374]},{"name":"FPS_CALL_BLACKLISTED","features":[374]},{"name":"FPS_CALL_DELAYED","features":[374]},{"name":"FPS_COMPLETED","features":[374]},{"name":"FPS_DIALING","features":[374]},{"name":"FPS_DISCONNECTED","features":[374]},{"name":"FPS_FATAL_ERROR","features":[374]},{"name":"FPS_HANDLED","features":[374]},{"name":"FPS_INITIALIZING","features":[374]},{"name":"FPS_NOT_FAX_CALL","features":[374]},{"name":"FPS_NO_ANSWER","features":[374]},{"name":"FPS_NO_DIAL_TONE","features":[374]},{"name":"FPS_OFFLINE","features":[374]},{"name":"FPS_RECEIVING","features":[374]},{"name":"FPS_RINGING","features":[374]},{"name":"FPS_ROUTING","features":[374]},{"name":"FPS_SENDING","features":[374]},{"name":"FPS_UNAVAILABLE","features":[374]},{"name":"FS_ANSWERED","features":[374]},{"name":"FS_BAD_ADDRESS","features":[374]},{"name":"FS_BUSY","features":[374]},{"name":"FS_CALL_BLACKLISTED","features":[374]},{"name":"FS_CALL_DELAYED","features":[374]},{"name":"FS_COMPLETED","features":[374]},{"name":"FS_DIALING","features":[374]},{"name":"FS_DISCONNECTED","features":[374]},{"name":"FS_FATAL_ERROR","features":[374]},{"name":"FS_HANDLED","features":[374]},{"name":"FS_INITIALIZING","features":[374]},{"name":"FS_LINE_UNAVAILABLE","features":[374]},{"name":"FS_NOT_FAX_CALL","features":[374]},{"name":"FS_NO_ANSWER","features":[374]},{"name":"FS_NO_DIAL_TONE","features":[374]},{"name":"FS_RECEIVING","features":[374]},{"name":"FS_TRANSMITTING","features":[374]},{"name":"FS_USER_ABORT","features":[374]},{"name":"FaxAbort","features":[374,305]},{"name":"FaxAccessCheck","features":[374,305]},{"name":"FaxAccount","features":[374]},{"name":"FaxAccountFolders","features":[374]},{"name":"FaxAccountIncomingArchive","features":[374]},{"name":"FaxAccountIncomingQueue","features":[374]},{"name":"FaxAccountOutgoingArchive","features":[374]},{"name":"FaxAccountOutgoingQueue","features":[374]},{"name":"FaxAccountSet","features":[374]},{"name":"FaxAccounts","features":[374]},{"name":"FaxActivity","features":[374]},{"name":"FaxActivityLogging","features":[374]},{"name":"FaxClose","features":[374,305]},{"name":"FaxCompleteJobParamsA","features":[374,305]},{"name":"FaxCompleteJobParamsW","features":[374,305]},{"name":"FaxConfiguration","features":[374]},{"name":"FaxConnectFaxServerA","features":[374,305]},{"name":"FaxConnectFaxServerW","features":[374,305]},{"name":"FaxDevice","features":[374]},{"name":"FaxDeviceIds","features":[374]},{"name":"FaxDeviceProvider","features":[374]},{"name":"FaxDeviceProviders","features":[374]},{"name":"FaxDevices","features":[374]},{"name":"FaxDocument","features":[374]},{"name":"FaxEnableRoutingMethodA","features":[374,305]},{"name":"FaxEnableRoutingMethodW","features":[374,305]},{"name":"FaxEnumGlobalRoutingInfoA","features":[374,305]},{"name":"FaxEnumGlobalRoutingInfoW","features":[374,305]},{"name":"FaxEnumJobsA","features":[374,305]},{"name":"FaxEnumJobsW","features":[374,305]},{"name":"FaxEnumPortsA","features":[374,305]},{"name":"FaxEnumPortsW","features":[374,305]},{"name":"FaxEnumRoutingMethodsA","features":[374,305]},{"name":"FaxEnumRoutingMethodsW","features":[374,305]},{"name":"FaxEventLogging","features":[374]},{"name":"FaxFolders","features":[374]},{"name":"FaxFreeBuffer","features":[374]},{"name":"FaxGetConfigurationA","features":[374,305]},{"name":"FaxGetConfigurationW","features":[374,305]},{"name":"FaxGetDeviceStatusA","features":[374,305]},{"name":"FaxGetDeviceStatusW","features":[374,305]},{"name":"FaxGetJobA","features":[374,305]},{"name":"FaxGetJobW","features":[374,305]},{"name":"FaxGetLoggingCategoriesA","features":[374,305]},{"name":"FaxGetLoggingCategoriesW","features":[374,305]},{"name":"FaxGetPageData","features":[374,305]},{"name":"FaxGetPortA","features":[374,305]},{"name":"FaxGetPortW","features":[374,305]},{"name":"FaxGetRoutingInfoA","features":[374,305]},{"name":"FaxGetRoutingInfoW","features":[374,305]},{"name":"FaxInboundRouting","features":[374]},{"name":"FaxInboundRoutingExtension","features":[374]},{"name":"FaxInboundRoutingExtensions","features":[374]},{"name":"FaxInboundRoutingMethod","features":[374]},{"name":"FaxInboundRoutingMethods","features":[374]},{"name":"FaxIncomingArchive","features":[374]},{"name":"FaxIncomingJob","features":[374]},{"name":"FaxIncomingJobs","features":[374]},{"name":"FaxIncomingMessage","features":[374]},{"name":"FaxIncomingMessageIterator","features":[374]},{"name":"FaxIncomingQueue","features":[374]},{"name":"FaxInitializeEventQueue","features":[374,305]},{"name":"FaxJobStatus","features":[374]},{"name":"FaxLoggingOptions","features":[374]},{"name":"FaxOpenPort","features":[374,305]},{"name":"FaxOutboundRouting","features":[374]},{"name":"FaxOutboundRoutingGroup","features":[374]},{"name":"FaxOutboundRoutingGroups","features":[374]},{"name":"FaxOutboundRoutingRule","features":[374]},{"name":"FaxOutboundRoutingRules","features":[374]},{"name":"FaxOutgoingArchive","features":[374]},{"name":"FaxOutgoingJob","features":[374]},{"name":"FaxOutgoingJobs","features":[374]},{"name":"FaxOutgoingMessage","features":[374]},{"name":"FaxOutgoingMessageIterator","features":[374]},{"name":"FaxOutgoingQueue","features":[374]},{"name":"FaxPrintCoverPageA","features":[374,305,316]},{"name":"FaxPrintCoverPageW","features":[374,305,316]},{"name":"FaxReceiptOptions","features":[374]},{"name":"FaxRecipient","features":[374]},{"name":"FaxRecipients","features":[374]},{"name":"FaxRegisterRoutingExtensionW","features":[374,305]},{"name":"FaxRegisterServiceProviderW","features":[374,305]},{"name":"FaxSecurity","features":[374]},{"name":"FaxSecurity2","features":[374]},{"name":"FaxSendDocumentA","features":[374,305]},{"name":"FaxSendDocumentForBroadcastA","features":[374,305]},{"name":"FaxSendDocumentForBroadcastW","features":[374,305]},{"name":"FaxSendDocumentW","features":[374,305]},{"name":"FaxSender","features":[374]},{"name":"FaxServer","features":[374]},{"name":"FaxSetConfigurationA","features":[374,305]},{"name":"FaxSetConfigurationW","features":[374,305]},{"name":"FaxSetGlobalRoutingInfoA","features":[374,305]},{"name":"FaxSetGlobalRoutingInfoW","features":[374,305]},{"name":"FaxSetJobA","features":[374,305]},{"name":"FaxSetJobW","features":[374,305]},{"name":"FaxSetLoggingCategoriesA","features":[374,305]},{"name":"FaxSetLoggingCategoriesW","features":[374,305]},{"name":"FaxSetPortA","features":[374,305]},{"name":"FaxSetPortW","features":[374,305]},{"name":"FaxSetRoutingInfoA","features":[374,305]},{"name":"FaxSetRoutingInfoW","features":[374,305]},{"name":"FaxStartPrintJobA","features":[374,305,316]},{"name":"FaxStartPrintJobW","features":[374,305,316]},{"name":"FaxUnregisterServiceProviderW","features":[374,305]},{"name":"GUID_DeviceArrivedLaunch","features":[374]},{"name":"GUID_STIUserDefined1","features":[374]},{"name":"GUID_STIUserDefined2","features":[374]},{"name":"GUID_STIUserDefined3","features":[374]},{"name":"GUID_ScanFaxImage","features":[374]},{"name":"GUID_ScanImage","features":[374]},{"name":"GUID_ScanPrintImage","features":[374]},{"name":"IFaxAccount","features":[374,356]},{"name":"IFaxAccountFolders","features":[374,356]},{"name":"IFaxAccountIncomingArchive","features":[374,356]},{"name":"IFaxAccountIncomingQueue","features":[374,356]},{"name":"IFaxAccountNotify","features":[374,356]},{"name":"IFaxAccountOutgoingArchive","features":[374,356]},{"name":"IFaxAccountOutgoingQueue","features":[374,356]},{"name":"IFaxAccountSet","features":[374,356]},{"name":"IFaxAccounts","features":[374,356]},{"name":"IFaxActivity","features":[374,356]},{"name":"IFaxActivityLogging","features":[374,356]},{"name":"IFaxConfiguration","features":[374,356]},{"name":"IFaxDevice","features":[374,356]},{"name":"IFaxDeviceIds","features":[374,356]},{"name":"IFaxDeviceProvider","features":[374,356]},{"name":"IFaxDeviceProviders","features":[374,356]},{"name":"IFaxDevices","features":[374,356]},{"name":"IFaxDocument","features":[374,356]},{"name":"IFaxDocument2","features":[374,356]},{"name":"IFaxEventLogging","features":[374,356]},{"name":"IFaxFolders","features":[374,356]},{"name":"IFaxInboundRouting","features":[374,356]},{"name":"IFaxInboundRoutingExtension","features":[374,356]},{"name":"IFaxInboundRoutingExtensions","features":[374,356]},{"name":"IFaxInboundRoutingMethod","features":[374,356]},{"name":"IFaxInboundRoutingMethods","features":[374,356]},{"name":"IFaxIncomingArchive","features":[374,356]},{"name":"IFaxIncomingJob","features":[374,356]},{"name":"IFaxIncomingJobs","features":[374,356]},{"name":"IFaxIncomingMessage","features":[374,356]},{"name":"IFaxIncomingMessage2","features":[374,356]},{"name":"IFaxIncomingMessageIterator","features":[374,356]},{"name":"IFaxIncomingQueue","features":[374,356]},{"name":"IFaxJobStatus","features":[374,356]},{"name":"IFaxLoggingOptions","features":[374,356]},{"name":"IFaxOutboundRouting","features":[374,356]},{"name":"IFaxOutboundRoutingGroup","features":[374,356]},{"name":"IFaxOutboundRoutingGroups","features":[374,356]},{"name":"IFaxOutboundRoutingRule","features":[374,356]},{"name":"IFaxOutboundRoutingRules","features":[374,356]},{"name":"IFaxOutgoingArchive","features":[374,356]},{"name":"IFaxOutgoingJob","features":[374,356]},{"name":"IFaxOutgoingJob2","features":[374,356]},{"name":"IFaxOutgoingJobs","features":[374,356]},{"name":"IFaxOutgoingMessage","features":[374,356]},{"name":"IFaxOutgoingMessage2","features":[374,356]},{"name":"IFaxOutgoingMessageIterator","features":[374,356]},{"name":"IFaxOutgoingQueue","features":[374,356]},{"name":"IFaxReceiptOptions","features":[374,356]},{"name":"IFaxRecipient","features":[374,356]},{"name":"IFaxRecipients","features":[374,356]},{"name":"IFaxSecurity","features":[374,356]},{"name":"IFaxSecurity2","features":[374,356]},{"name":"IFaxSender","features":[374,356]},{"name":"IFaxServer","features":[374,356]},{"name":"IFaxServer2","features":[374,356]},{"name":"IFaxServerNotify","features":[374,356]},{"name":"IFaxServerNotify2","features":[374,356]},{"name":"IS_DIGITAL_CAMERA_STR","features":[374]},{"name":"IS_DIGITAL_CAMERA_VAL","features":[374]},{"name":"IStiDevice","features":[374]},{"name":"IStiDeviceControl","features":[374]},{"name":"IStiUSD","features":[374]},{"name":"IStillImageW","features":[374]},{"name":"JC_DELETE","features":[374]},{"name":"JC_PAUSE","features":[374]},{"name":"JC_RESUME","features":[374]},{"name":"JC_UNKNOWN","features":[374]},{"name":"JSA_DISCOUNT_PERIOD","features":[374]},{"name":"JSA_NOW","features":[374]},{"name":"JSA_SPECIFIC_TIME","features":[374]},{"name":"JS_DELETING","features":[374]},{"name":"JS_FAILED","features":[374]},{"name":"JS_INPROGRESS","features":[374]},{"name":"JS_NOLINE","features":[374]},{"name":"JS_PAUSED","features":[374]},{"name":"JS_PENDING","features":[374]},{"name":"JS_RETRIES_EXCEEDED","features":[374]},{"name":"JS_RETRYING","features":[374]},{"name":"JT_FAIL_RECEIVE","features":[374]},{"name":"JT_RECEIVE","features":[374]},{"name":"JT_ROUTING","features":[374]},{"name":"JT_SEND","features":[374]},{"name":"JT_UNKNOWN","features":[374]},{"name":"MAX_NOTIFICATION_DATA","features":[374]},{"name":"MS_FAXROUTE_EMAIL_GUID","features":[374]},{"name":"MS_FAXROUTE_FOLDER_GUID","features":[374]},{"name":"MS_FAXROUTE_PRINTING_GUID","features":[374]},{"name":"PFAXABORT","features":[374,305]},{"name":"PFAXACCESSCHECK","features":[374,305]},{"name":"PFAXCLOSE","features":[374,305]},{"name":"PFAXCOMPLETEJOBPARAMSA","features":[374,305]},{"name":"PFAXCOMPLETEJOBPARAMSW","features":[374,305]},{"name":"PFAXCONNECTFAXSERVERA","features":[374,305]},{"name":"PFAXCONNECTFAXSERVERW","features":[374,305]},{"name":"PFAXDEVABORTOPERATION","features":[374,305]},{"name":"PFAXDEVCONFIGURE","features":[374,305,355]},{"name":"PFAXDEVENDJOB","features":[374,305]},{"name":"PFAXDEVINITIALIZE","features":[374,305]},{"name":"PFAXDEVRECEIVE","features":[374,305]},{"name":"PFAXDEVREPORTSTATUS","features":[374,305]},{"name":"PFAXDEVSEND","features":[374,305]},{"name":"PFAXDEVSHUTDOWN","features":[374]},{"name":"PFAXDEVSTARTJOB","features":[374,305]},{"name":"PFAXDEVVIRTUALDEVICECREATION","features":[374,305]},{"name":"PFAXENABLEROUTINGMETHODA","features":[374,305]},{"name":"PFAXENABLEROUTINGMETHODW","features":[374,305]},{"name":"PFAXENUMGLOBALROUTINGINFOA","features":[374,305]},{"name":"PFAXENUMGLOBALROUTINGINFOW","features":[374,305]},{"name":"PFAXENUMJOBSA","features":[374,305]},{"name":"PFAXENUMJOBSW","features":[374,305]},{"name":"PFAXENUMPORTSA","features":[374,305]},{"name":"PFAXENUMPORTSW","features":[374,305]},{"name":"PFAXENUMROUTINGMETHODSA","features":[374,305]},{"name":"PFAXENUMROUTINGMETHODSW","features":[374,305]},{"name":"PFAXFREEBUFFER","features":[374]},{"name":"PFAXGETCONFIGURATIONA","features":[374,305]},{"name":"PFAXGETCONFIGURATIONW","features":[374,305]},{"name":"PFAXGETDEVICESTATUSA","features":[374,305]},{"name":"PFAXGETDEVICESTATUSW","features":[374,305]},{"name":"PFAXGETJOBA","features":[374,305]},{"name":"PFAXGETJOBW","features":[374,305]},{"name":"PFAXGETLOGGINGCATEGORIESA","features":[374,305]},{"name":"PFAXGETLOGGINGCATEGORIESW","features":[374,305]},{"name":"PFAXGETPAGEDATA","features":[374,305]},{"name":"PFAXGETPORTA","features":[374,305]},{"name":"PFAXGETPORTW","features":[374,305]},{"name":"PFAXGETROUTINGINFOA","features":[374,305]},{"name":"PFAXGETROUTINGINFOW","features":[374,305]},{"name":"PFAXINITIALIZEEVENTQUEUE","features":[374,305]},{"name":"PFAXOPENPORT","features":[374,305]},{"name":"PFAXPRINTCOVERPAGEA","features":[374,305,316]},{"name":"PFAXPRINTCOVERPAGEW","features":[374,305,316]},{"name":"PFAXREGISTERROUTINGEXTENSIONW","features":[374,305]},{"name":"PFAXREGISTERSERVICEPROVIDERW","features":[374,305]},{"name":"PFAXROUTEADDFILE","features":[374]},{"name":"PFAXROUTEDELETEFILE","features":[374]},{"name":"PFAXROUTEDEVICECHANGENOTIFICATION","features":[374,305]},{"name":"PFAXROUTEDEVICEENABLE","features":[374,305]},{"name":"PFAXROUTEENUMFILE","features":[374,305]},{"name":"PFAXROUTEENUMFILES","features":[374,305]},{"name":"PFAXROUTEGETFILE","features":[374,305]},{"name":"PFAXROUTEGETROUTINGINFO","features":[374,305]},{"name":"PFAXROUTEINITIALIZE","features":[374,305]},{"name":"PFAXROUTEMETHOD","features":[374,305]},{"name":"PFAXROUTEMODIFYROUTINGDATA","features":[374,305]},{"name":"PFAXROUTESETROUTINGINFO","features":[374,305]},{"name":"PFAXSENDDOCUMENTA","features":[374,305]},{"name":"PFAXSENDDOCUMENTFORBROADCASTA","features":[374,305]},{"name":"PFAXSENDDOCUMENTFORBROADCASTW","features":[374,305]},{"name":"PFAXSENDDOCUMENTW","features":[374,305]},{"name":"PFAXSETCONFIGURATIONA","features":[374,305]},{"name":"PFAXSETCONFIGURATIONW","features":[374,305]},{"name":"PFAXSETGLOBALROUTINGINFOA","features":[374,305]},{"name":"PFAXSETGLOBALROUTINGINFOW","features":[374,305]},{"name":"PFAXSETJOBA","features":[374,305]},{"name":"PFAXSETJOBW","features":[374,305]},{"name":"PFAXSETLOGGINGCATEGORIESA","features":[374,305]},{"name":"PFAXSETLOGGINGCATEGORIESW","features":[374,305]},{"name":"PFAXSETPORTA","features":[374,305]},{"name":"PFAXSETPORTW","features":[374,305]},{"name":"PFAXSETROUTINGINFOA","features":[374,305]},{"name":"PFAXSETROUTINGINFOW","features":[374,305]},{"name":"PFAXSTARTPRINTJOBA","features":[374,305,316]},{"name":"PFAXSTARTPRINTJOBW","features":[374,305,316]},{"name":"PFAXUNREGISTERSERVICEPROVIDERW","features":[374,305]},{"name":"PFAX_EXT_CONFIG_CHANGE","features":[374]},{"name":"PFAX_EXT_FREE_BUFFER","features":[374]},{"name":"PFAX_EXT_GET_DATA","features":[374]},{"name":"PFAX_EXT_INITIALIZE_CONFIG","features":[374,305]},{"name":"PFAX_EXT_REGISTER_FOR_EVENTS","features":[374,305]},{"name":"PFAX_EXT_SET_DATA","features":[374,305]},{"name":"PFAX_EXT_UNREGISTER_FOR_EVENTS","features":[374,305]},{"name":"PFAX_LINECALLBACK","features":[374,305]},{"name":"PFAX_RECIPIENT_CALLBACKA","features":[374,305]},{"name":"PFAX_RECIPIENT_CALLBACKW","features":[374,305]},{"name":"PFAX_ROUTING_INSTALLATION_CALLBACKW","features":[374,305]},{"name":"PFAX_SEND_CALLBACK","features":[374,305]},{"name":"PFAX_SERVICE_CALLBACK","features":[374,305]},{"name":"PORT_OPEN_MODIFY","features":[374]},{"name":"PORT_OPEN_QUERY","features":[374]},{"name":"QUERY_STATUS","features":[374]},{"name":"REGSTR_VAL_BAUDRATE","features":[374]},{"name":"REGSTR_VAL_BAUDRATE_A","features":[374]},{"name":"REGSTR_VAL_DATA_W","features":[374]},{"name":"REGSTR_VAL_DEVICESUBTYPE_W","features":[374]},{"name":"REGSTR_VAL_DEVICETYPE_W","features":[374]},{"name":"REGSTR_VAL_DEVICE_NAME_W","features":[374]},{"name":"REGSTR_VAL_DEV_NAME_W","features":[374]},{"name":"REGSTR_VAL_DRIVER_DESC_W","features":[374]},{"name":"REGSTR_VAL_FRIENDLY_NAME_W","features":[374]},{"name":"REGSTR_VAL_GENERIC_CAPS_W","features":[374]},{"name":"REGSTR_VAL_GUID","features":[374]},{"name":"REGSTR_VAL_GUID_W","features":[374]},{"name":"REGSTR_VAL_HARDWARE","features":[374]},{"name":"REGSTR_VAL_HARDWARE_W","features":[374]},{"name":"REGSTR_VAL_LAUNCHABLE","features":[374]},{"name":"REGSTR_VAL_LAUNCHABLE_W","features":[374]},{"name":"REGSTR_VAL_LAUNCH_APPS","features":[374]},{"name":"REGSTR_VAL_LAUNCH_APPS_W","features":[374]},{"name":"REGSTR_VAL_SHUTDOWNDELAY","features":[374]},{"name":"REGSTR_VAL_SHUTDOWNDELAY_W","features":[374]},{"name":"REGSTR_VAL_TYPE_W","features":[374]},{"name":"REGSTR_VAL_VENDOR_NAME_W","features":[374]},{"name":"SEND_TO_FAX_RECIPIENT_ATTACHMENT","features":[374]},{"name":"STATUS_DISABLE","features":[374]},{"name":"STATUS_ENABLE","features":[374]},{"name":"STIEDFL_ALLDEVICES","features":[374]},{"name":"STIEDFL_ATTACHEDONLY","features":[374]},{"name":"STIERR_ALREADY_INITIALIZED","features":[374]},{"name":"STIERR_BADDRIVER","features":[374]},{"name":"STIERR_BETA_VERSION","features":[374]},{"name":"STIERR_DEVICENOTREG","features":[374]},{"name":"STIERR_DEVICE_LOCKED","features":[374]},{"name":"STIERR_DEVICE_NOTREADY","features":[374]},{"name":"STIERR_GENERIC","features":[374]},{"name":"STIERR_HANDLEEXISTS","features":[374]},{"name":"STIERR_INVALID_DEVICE_NAME","features":[374]},{"name":"STIERR_INVALID_HW_TYPE","features":[374]},{"name":"STIERR_INVALID_PARAM","features":[374]},{"name":"STIERR_NEEDS_LOCK","features":[374]},{"name":"STIERR_NOEVENTS","features":[374]},{"name":"STIERR_NOINTERFACE","features":[374]},{"name":"STIERR_NOTINITIALIZED","features":[374]},{"name":"STIERR_NOT_INITIALIZED","features":[374]},{"name":"STIERR_OBJECTNOTFOUND","features":[374]},{"name":"STIERR_OLD_VERSION","features":[374]},{"name":"STIERR_OUTOFMEMORY","features":[374]},{"name":"STIERR_READONLY","features":[374]},{"name":"STIERR_SHARING_VIOLATION","features":[374]},{"name":"STIERR_UNSUPPORTED","features":[374]},{"name":"STINOTIFY","features":[374]},{"name":"STISUBSCRIBE","features":[374,305]},{"name":"STI_ADD_DEVICE_BROADCAST_ACTION","features":[374]},{"name":"STI_ADD_DEVICE_BROADCAST_STRING","features":[374]},{"name":"STI_CHANGENOEFFECT","features":[374]},{"name":"STI_DEVICE_CREATE_BOTH","features":[374]},{"name":"STI_DEVICE_CREATE_DATA","features":[374]},{"name":"STI_DEVICE_CREATE_FOR_MONITOR","features":[374]},{"name":"STI_DEVICE_CREATE_MASK","features":[374]},{"name":"STI_DEVICE_CREATE_STATUS","features":[374]},{"name":"STI_DEVICE_INFORMATIONW","features":[374]},{"name":"STI_DEVICE_MJ_TYPE","features":[374]},{"name":"STI_DEVICE_STATUS","features":[374]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP","features":[374]},{"name":"STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP_A","features":[374]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS","features":[374]},{"name":"STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS_A","features":[374]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE","features":[374]},{"name":"STI_DEVICE_VALUE_ICM_PROFILE_A","features":[374]},{"name":"STI_DEVICE_VALUE_ISIS_NAME","features":[374]},{"name":"STI_DEVICE_VALUE_ISIS_NAME_A","features":[374]},{"name":"STI_DEVICE_VALUE_TIMEOUT","features":[374]},{"name":"STI_DEVICE_VALUE_TIMEOUT_A","features":[374]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME","features":[374]},{"name":"STI_DEVICE_VALUE_TWAIN_NAME_A","features":[374]},{"name":"STI_DEVSTATUS_EVENTS_STATE","features":[374]},{"name":"STI_DEVSTATUS_ONLINE_STATE","features":[374]},{"name":"STI_DEV_CAPS","features":[374]},{"name":"STI_DIAG","features":[374]},{"name":"STI_DIAGCODE_HWPRESENCE","features":[374]},{"name":"STI_ERROR_NO_ERROR","features":[374]},{"name":"STI_EVENTHANDLING_ENABLED","features":[374]},{"name":"STI_EVENTHANDLING_PENDING","features":[374]},{"name":"STI_EVENTHANDLING_POLLING","features":[374]},{"name":"STI_GENCAP_AUTO_PORTSELECT","features":[374]},{"name":"STI_GENCAP_COMMON_MASK","features":[374]},{"name":"STI_GENCAP_GENERATE_ARRIVALEVENT","features":[374]},{"name":"STI_GENCAP_NOTIFICATIONS","features":[374]},{"name":"STI_GENCAP_POLLING_NEEDED","features":[374]},{"name":"STI_GENCAP_SUBSET","features":[374]},{"name":"STI_GENCAP_WIA","features":[374]},{"name":"STI_HW_CONFIG_PARALLEL","features":[374]},{"name":"STI_HW_CONFIG_SCSI","features":[374]},{"name":"STI_HW_CONFIG_SERIAL","features":[374]},{"name":"STI_HW_CONFIG_UNKNOWN","features":[374]},{"name":"STI_HW_CONFIG_USB","features":[374]},{"name":"STI_MAX_INTERNAL_NAME_LENGTH","features":[374]},{"name":"STI_NOTCONNECTED","features":[374]},{"name":"STI_OK","features":[374]},{"name":"STI_ONLINESTATE_BUSY","features":[374]},{"name":"STI_ONLINESTATE_ERROR","features":[374]},{"name":"STI_ONLINESTATE_INITIALIZING","features":[374]},{"name":"STI_ONLINESTATE_IO_ACTIVE","features":[374]},{"name":"STI_ONLINESTATE_OFFLINE","features":[374]},{"name":"STI_ONLINESTATE_OPERATIONAL","features":[374]},{"name":"STI_ONLINESTATE_PAPER_JAM","features":[374]},{"name":"STI_ONLINESTATE_PAPER_PROBLEM","features":[374]},{"name":"STI_ONLINESTATE_PAUSED","features":[374]},{"name":"STI_ONLINESTATE_PENDING","features":[374]},{"name":"STI_ONLINESTATE_POWER_SAVE","features":[374]},{"name":"STI_ONLINESTATE_TRANSFERRING","features":[374]},{"name":"STI_ONLINESTATE_USER_INTERVENTION","features":[374]},{"name":"STI_ONLINESTATE_WARMING_UP","features":[374]},{"name":"STI_RAW_RESERVED","features":[374]},{"name":"STI_REMOVE_DEVICE_BROADCAST_ACTION","features":[374]},{"name":"STI_REMOVE_DEVICE_BROADCAST_STRING","features":[374]},{"name":"STI_SUBSCRIBE_FLAG_EVENT","features":[374]},{"name":"STI_SUBSCRIBE_FLAG_WINDOW","features":[374]},{"name":"STI_TRACE_ERROR","features":[374]},{"name":"STI_TRACE_INFORMATION","features":[374]},{"name":"STI_TRACE_WARNING","features":[374]},{"name":"STI_UNICODE","features":[374]},{"name":"STI_USD_CAPS","features":[374]},{"name":"STI_USD_GENCAP_NATIVE_PUSHSUPPORT","features":[374]},{"name":"STI_VERSION","features":[374]},{"name":"STI_VERSION_FLAG_MASK","features":[374]},{"name":"STI_VERSION_FLAG_UNICODE","features":[374]},{"name":"STI_VERSION_MIN_ALLOWED","features":[374]},{"name":"STI_VERSION_REAL","features":[374]},{"name":"STI_WIA_DEVICE_INFORMATIONW","features":[374]},{"name":"SUPPORTS_MSCPLUS_STR","features":[374]},{"name":"SUPPORTS_MSCPLUS_VAL","features":[374]},{"name":"SendToFaxRecipient","features":[374]},{"name":"SendToMode","features":[374]},{"name":"StiCreateInstanceW","features":[374,305]},{"name":"StiDeviceTypeDefault","features":[374]},{"name":"StiDeviceTypeDigitalCamera","features":[374]},{"name":"StiDeviceTypeScanner","features":[374]},{"name":"StiDeviceTypeStreamingVideo","features":[374]},{"name":"WIA_INCOMPAT_XP","features":[374]},{"name":"_ERROR_INFOW","features":[374]},{"name":"faetFXSSVC_ENDED","features":[374]},{"name":"faetIN_ARCHIVE","features":[374]},{"name":"faetIN_QUEUE","features":[374]},{"name":"faetNONE","features":[374]},{"name":"faetOUT_ARCHIVE","features":[374]},{"name":"faetOUT_QUEUE","features":[374]},{"name":"far2MANAGE_ARCHIVES","features":[374]},{"name":"far2MANAGE_CONFIG","features":[374]},{"name":"far2MANAGE_OUT_JOBS","features":[374]},{"name":"far2MANAGE_RECEIVE_FOLDER","features":[374]},{"name":"far2QUERY_ARCHIVES","features":[374]},{"name":"far2QUERY_CONFIG","features":[374]},{"name":"far2QUERY_OUT_JOBS","features":[374]},{"name":"far2SUBMIT_HIGH","features":[374]},{"name":"far2SUBMIT_LOW","features":[374]},{"name":"far2SUBMIT_NORMAL","features":[374]},{"name":"farMANAGE_CONFIG","features":[374]},{"name":"farMANAGE_IN_ARCHIVE","features":[374]},{"name":"farMANAGE_JOBS","features":[374]},{"name":"farMANAGE_OUT_ARCHIVE","features":[374]},{"name":"farQUERY_CONFIG","features":[374]},{"name":"farQUERY_IN_ARCHIVE","features":[374]},{"name":"farQUERY_JOBS","features":[374]},{"name":"farQUERY_OUT_ARCHIVE","features":[374]},{"name":"farSUBMIT_HIGH","features":[374]},{"name":"farSUBMIT_LOW","features":[374]},{"name":"farSUBMIT_NORMAL","features":[374]},{"name":"fcptLOCAL","features":[374]},{"name":"fcptNONE","features":[374]},{"name":"fcptSERVER","features":[374]},{"name":"fdrmAUTO_ANSWER","features":[374]},{"name":"fdrmMANUAL_ANSWER","features":[374]},{"name":"fdrmNO_ANSWER","features":[374]},{"name":"fgsALL_DEV_NOT_VALID","features":[374]},{"name":"fgsALL_DEV_VALID","features":[374]},{"name":"fgsEMPTY","features":[374]},{"name":"fgsSOME_DEV_NOT_VALID","features":[374]},{"name":"fjesANSWERED","features":[374]},{"name":"fjesBAD_ADDRESS","features":[374]},{"name":"fjesBUSY","features":[374]},{"name":"fjesCALL_ABORTED","features":[374]},{"name":"fjesCALL_BLACKLISTED","features":[374]},{"name":"fjesCALL_COMPLETED","features":[374]},{"name":"fjesCALL_DELAYED","features":[374]},{"name":"fjesDIALING","features":[374]},{"name":"fjesDISCONNECTED","features":[374]},{"name":"fjesFATAL_ERROR","features":[374]},{"name":"fjesHANDLED","features":[374]},{"name":"fjesINITIALIZING","features":[374]},{"name":"fjesLINE_UNAVAILABLE","features":[374]},{"name":"fjesNONE","features":[374]},{"name":"fjesNOT_FAX_CALL","features":[374]},{"name":"fjesNO_ANSWER","features":[374]},{"name":"fjesNO_DIAL_TONE","features":[374]},{"name":"fjesPARTIALLY_RECEIVED","features":[374]},{"name":"fjesPROPRIETARY","features":[374]},{"name":"fjesRECEIVING","features":[374]},{"name":"fjesTRANSMITTING","features":[374]},{"name":"fjoDELETE","features":[374]},{"name":"fjoPAUSE","features":[374]},{"name":"fjoRECIPIENT_INFO","features":[374]},{"name":"fjoRESTART","features":[374]},{"name":"fjoRESUME","features":[374]},{"name":"fjoSENDER_INFO","features":[374]},{"name":"fjoVIEW","features":[374]},{"name":"fjsCANCELED","features":[374]},{"name":"fjsCANCELING","features":[374]},{"name":"fjsCOMPLETED","features":[374]},{"name":"fjsFAILED","features":[374]},{"name":"fjsINPROGRESS","features":[374]},{"name":"fjsNOLINE","features":[374]},{"name":"fjsPAUSED","features":[374]},{"name":"fjsPENDING","features":[374]},{"name":"fjsRETRIES_EXCEEDED","features":[374]},{"name":"fjsRETRYING","features":[374]},{"name":"fjsROUTING","features":[374]},{"name":"fjtRECEIVE","features":[374]},{"name":"fjtROUTING","features":[374]},{"name":"fjtSEND","features":[374]},{"name":"fllMAX","features":[374]},{"name":"fllMED","features":[374]},{"name":"fllMIN","features":[374]},{"name":"fllNONE","features":[374]},{"name":"fpsBAD_GUID","features":[374]},{"name":"fpsBAD_VERSION","features":[374]},{"name":"fpsCANT_INIT","features":[374]},{"name":"fpsCANT_LINK","features":[374]},{"name":"fpsCANT_LOAD","features":[374]},{"name":"fpsSERVER_ERROR","features":[374]},{"name":"fpsSUCCESS","features":[374]},{"name":"fptHIGH","features":[374]},{"name":"fptLOW","features":[374]},{"name":"fptNORMAL","features":[374]},{"name":"frrcANY_CODE","features":[374]},{"name":"frsALL_GROUP_DEV_NOT_VALID","features":[374]},{"name":"frsBAD_DEVICE","features":[374]},{"name":"frsEMPTY_GROUP","features":[374]},{"name":"frsSOME_GROUP_DEV_NOT_VALID","features":[374]},{"name":"frsVALID","features":[374]},{"name":"frtMAIL","features":[374]},{"name":"frtMSGBOX","features":[374]},{"name":"frtNONE","features":[374]},{"name":"fsAPI_VERSION_0","features":[374]},{"name":"fsAPI_VERSION_1","features":[374]},{"name":"fsAPI_VERSION_2","features":[374]},{"name":"fsAPI_VERSION_3","features":[374]},{"name":"fsatANONYMOUS","features":[374]},{"name":"fsatBASIC","features":[374]},{"name":"fsatNTLM","features":[374]},{"name":"fsetACTIVITY","features":[374]},{"name":"fsetCONFIG","features":[374]},{"name":"fsetDEVICE_STATUS","features":[374]},{"name":"fsetFXSSVC_ENDED","features":[374]},{"name":"fsetINCOMING_CALL","features":[374]},{"name":"fsetIN_ARCHIVE","features":[374]},{"name":"fsetIN_QUEUE","features":[374]},{"name":"fsetNONE","features":[374]},{"name":"fsetOUT_ARCHIVE","features":[374]},{"name":"fsetOUT_QUEUE","features":[374]},{"name":"fsetQUEUE_STATE","features":[374]},{"name":"fstDISCOUNT_PERIOD","features":[374]},{"name":"fstNOW","features":[374]},{"name":"fstSPECIFIC_TIME","features":[374]},{"name":"lDEFAULT_PREFETCH_SIZE","features":[374]},{"name":"prv_DEFAULT_PREFETCH_SIZE","features":[374]},{"name":"wcharREASSIGN_RECIPIENTS_DELIMITER","features":[374]}],"379":[{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_AD_PRINTER","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_ASP_INFRA","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_BLUETOOTH","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_BLUETOOTH_LE","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_NETBIOS","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_PNP","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_UPNP","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_WFD","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_WSD","features":[375]},{"name":"DEVICEDISPLAY_DISCOVERYMETHOD_WUSB","features":[375]},{"name":"E_FDPAIRING_AUTHFAILURE","features":[375]},{"name":"E_FDPAIRING_AUTHNOTALLOWED","features":[375]},{"name":"E_FDPAIRING_CONNECTTIMEOUT","features":[375]},{"name":"E_FDPAIRING_HWFAILURE","features":[375]},{"name":"E_FDPAIRING_IPBUSDISABLED","features":[375]},{"name":"E_FDPAIRING_NOCONNECTION","features":[375]},{"name":"E_FDPAIRING_NOPROFILES","features":[375]},{"name":"E_FDPAIRING_TOOMANYCONNECTIONS","features":[375]},{"name":"FCTN_CATEGORY_BT","features":[375]},{"name":"FCTN_CATEGORY_DEVICEDISPLAYOBJECTS","features":[375]},{"name":"FCTN_CATEGORY_DEVICEFUNCTIONENUMERATORS","features":[375]},{"name":"FCTN_CATEGORY_DEVICEPAIRING","features":[375]},{"name":"FCTN_CATEGORY_DEVICES","features":[375]},{"name":"FCTN_CATEGORY_DEVQUERYOBJECTS","features":[375]},{"name":"FCTN_CATEGORY_NETBIOS","features":[375]},{"name":"FCTN_CATEGORY_NETWORKDEVICES","features":[375]},{"name":"FCTN_CATEGORY_PNP","features":[375]},{"name":"FCTN_CATEGORY_PNPXASSOCIATION","features":[375]},{"name":"FCTN_CATEGORY_PUBLICATION","features":[375]},{"name":"FCTN_CATEGORY_REGISTRY","features":[375]},{"name":"FCTN_CATEGORY_SSDP","features":[375]},{"name":"FCTN_CATEGORY_WCN","features":[375]},{"name":"FCTN_CATEGORY_WSDISCOVERY","features":[375]},{"name":"FCTN_CATEGORY_WUSB","features":[375]},{"name":"FCTN_SUBCAT_DEVICES_WSDPRINTERS","features":[375]},{"name":"FCTN_SUBCAT_NETWORKDEVICES_SSDP","features":[375]},{"name":"FCTN_SUBCAT_NETWORKDEVICES_WSD","features":[375]},{"name":"FCTN_SUBCAT_REG_DIRECTED","features":[375]},{"name":"FCTN_SUBCAT_REG_PUBLICATION","features":[375]},{"name":"FD_CONSTRAINTVALUE_ALL","features":[375]},{"name":"FD_CONSTRAINTVALUE_COMCLSCONTEXT_INPROC_SERVER","features":[375]},{"name":"FD_CONSTRAINTVALUE_COMCLSCONTEXT_LOCAL_SERVER","features":[375]},{"name":"FD_CONSTRAINTVALUE_FALSE","features":[375]},{"name":"FD_CONSTRAINTVALUE_PAIRED","features":[375]},{"name":"FD_CONSTRAINTVALUE_RECURSESUBCATEGORY_TRUE","features":[375]},{"name":"FD_CONSTRAINTVALUE_ROUTINGSCOPE_ALL","features":[375]},{"name":"FD_CONSTRAINTVALUE_ROUTINGSCOPE_DIRECT","features":[375]},{"name":"FD_CONSTRAINTVALUE_TRUE","features":[375]},{"name":"FD_CONSTRAINTVALUE_UNPAIRED","features":[375]},{"name":"FD_CONSTRAINTVALUE_VISIBILITY_ALL","features":[375]},{"name":"FD_CONSTRAINTVALUE_VISIBILITY_DEFAULT","features":[375]},{"name":"FD_EVENTID","features":[375]},{"name":"FD_EVENTID_ASYNCTHREADEXIT","features":[375]},{"name":"FD_EVENTID_IPADDRESSCHANGE","features":[375]},{"name":"FD_EVENTID_PRIVATE","features":[375]},{"name":"FD_EVENTID_QUERYREFRESH","features":[375]},{"name":"FD_EVENTID_SEARCHCOMPLETE","features":[375]},{"name":"FD_EVENTID_SEARCHSTART","features":[375]},{"name":"FD_LONGHORN","features":[375]},{"name":"FD_QUERYCONSTRAINT_COMCLSCONTEXT","features":[375]},{"name":"FD_QUERYCONSTRAINT_INQUIRY_TIMEOUT","features":[375]},{"name":"FD_QUERYCONSTRAINT_PAIRING_STATE","features":[375]},{"name":"FD_QUERYCONSTRAINT_PROVIDERINSTANCEID","features":[375]},{"name":"FD_QUERYCONSTRAINT_RECURSESUBCATEGORY","features":[375]},{"name":"FD_QUERYCONSTRAINT_ROUTINGSCOPE","features":[375]},{"name":"FD_QUERYCONSTRAINT_SUBCATEGORY","features":[375]},{"name":"FD_QUERYCONSTRAINT_VISIBILITY","features":[375]},{"name":"FD_SUBKEY","features":[375]},{"name":"FD_Visibility_Default","features":[375]},{"name":"FD_Visibility_Hidden","features":[375]},{"name":"FMTID_Device","features":[375]},{"name":"FMTID_DeviceInterface","features":[375]},{"name":"FMTID_FD","features":[375]},{"name":"FMTID_PNPX","features":[375]},{"name":"FMTID_PNPXDynamicProperty","features":[375]},{"name":"FMTID_Pairing","features":[375]},{"name":"FMTID_WSD","features":[375]},{"name":"FunctionDiscovery","features":[375]},{"name":"FunctionInstanceCollection","features":[375]},{"name":"IFunctionDiscovery","features":[375]},{"name":"IFunctionDiscoveryNotification","features":[375]},{"name":"IFunctionDiscoveryProvider","features":[375]},{"name":"IFunctionDiscoveryProviderFactory","features":[375]},{"name":"IFunctionDiscoveryProviderQuery","features":[375]},{"name":"IFunctionDiscoveryServiceProvider","features":[375]},{"name":"IFunctionInstance","features":[375,356]},{"name":"IFunctionInstanceCollection","features":[375]},{"name":"IFunctionInstanceCollectionQuery","features":[375]},{"name":"IFunctionInstanceQuery","features":[375]},{"name":"IPNPXAssociation","features":[375]},{"name":"IPNPXDeviceAssociation","features":[375]},{"name":"IPropertyStoreCollection","features":[375]},{"name":"IProviderProperties","features":[375]},{"name":"IProviderPropertyConstraintCollection","features":[375]},{"name":"IProviderPublishing","features":[375]},{"name":"IProviderQueryConstraintCollection","features":[375]},{"name":"MAX_FDCONSTRAINTNAME_LENGTH","features":[375]},{"name":"MAX_FDCONSTRAINTVALUE_LENGTH","features":[375]},{"name":"ONLINE_PROVIDER_DEVICES_QUERYCONSTRAINT_OWNERNAME","features":[375]},{"name":"PKEY_DeviceClass_Characteristics","features":[375,376]},{"name":"PKEY_DeviceClass_ClassCoInstallers","features":[375,376]},{"name":"PKEY_DeviceClass_ClassInstaller","features":[375,376]},{"name":"PKEY_DeviceClass_ClassName","features":[375,376]},{"name":"PKEY_DeviceClass_DefaultService","features":[375,376]},{"name":"PKEY_DeviceClass_DevType","features":[375,376]},{"name":"PKEY_DeviceClass_Exclusive","features":[375,376]},{"name":"PKEY_DeviceClass_Icon","features":[375,376]},{"name":"PKEY_DeviceClass_IconPath","features":[375,376]},{"name":"PKEY_DeviceClass_LowerFilters","features":[375,376]},{"name":"PKEY_DeviceClass_Name","features":[375,376]},{"name":"PKEY_DeviceClass_NoDisplayClass","features":[375,376]},{"name":"PKEY_DeviceClass_NoInstallClass","features":[375,376]},{"name":"PKEY_DeviceClass_NoUseClass","features":[375,376]},{"name":"PKEY_DeviceClass_PropPageProvider","features":[375,376]},{"name":"PKEY_DeviceClass_Security","features":[375,376]},{"name":"PKEY_DeviceClass_SecuritySDS","features":[375,376]},{"name":"PKEY_DeviceClass_SilentInstall","features":[375,376]},{"name":"PKEY_DeviceClass_UpperFilters","features":[375,376]},{"name":"PKEY_DeviceDisplay_Address","features":[375,376]},{"name":"PKEY_DeviceDisplay_AlwaysShowDeviceAsConnected","features":[375,376]},{"name":"PKEY_DeviceDisplay_AssociationArray","features":[375,376]},{"name":"PKEY_DeviceDisplay_BaselineExperienceId","features":[375,376]},{"name":"PKEY_DeviceDisplay_Category","features":[375,376]},{"name":"PKEY_DeviceDisplay_CategoryGroup_Desc","features":[375,376]},{"name":"PKEY_DeviceDisplay_CategoryGroup_Icon","features":[375,376]},{"name":"PKEY_DeviceDisplay_Category_Desc_Plural","features":[375,376]},{"name":"PKEY_DeviceDisplay_Category_Desc_Singular","features":[375,376]},{"name":"PKEY_DeviceDisplay_Category_Icon","features":[375,376]},{"name":"PKEY_DeviceDisplay_DeviceDescription1","features":[375,376]},{"name":"PKEY_DeviceDisplay_DeviceDescription2","features":[375,376]},{"name":"PKEY_DeviceDisplay_DeviceFunctionSubRank","features":[375,376]},{"name":"PKEY_DeviceDisplay_DiscoveryMethod","features":[375,376]},{"name":"PKEY_DeviceDisplay_ExperienceId","features":[375,376]},{"name":"PKEY_DeviceDisplay_FriendlyName","features":[375,376]},{"name":"PKEY_DeviceDisplay_Icon","features":[375,376]},{"name":"PKEY_DeviceDisplay_InstallInProgress","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsAuthenticated","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsConnected","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsDefaultDevice","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsDeviceUniquelyIdentifiable","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsEncrypted","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsLocalMachine","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsMetadataSearchInProgress","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsNetworkDevice","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsNotInterestingForDisplay","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsNotWorkingProperly","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsPaired","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsSharedDevice","features":[375,376]},{"name":"PKEY_DeviceDisplay_IsShowInDisconnectedState","features":[375,376]},{"name":"PKEY_DeviceDisplay_Last_Connected","features":[375,376]},{"name":"PKEY_DeviceDisplay_Last_Seen","features":[375,376]},{"name":"PKEY_DeviceDisplay_LaunchDeviceStageFromExplorer","features":[375,376]},{"name":"PKEY_DeviceDisplay_LaunchDeviceStageOnDeviceConnect","features":[375,376]},{"name":"PKEY_DeviceDisplay_Manufacturer","features":[375,376]},{"name":"PKEY_DeviceDisplay_MetadataCabinet","features":[375,376]},{"name":"PKEY_DeviceDisplay_MetadataChecksum","features":[375,376]},{"name":"PKEY_DeviceDisplay_MetadataPath","features":[375,376]},{"name":"PKEY_DeviceDisplay_ModelName","features":[375,376]},{"name":"PKEY_DeviceDisplay_ModelNumber","features":[375,376]},{"name":"PKEY_DeviceDisplay_PrimaryCategory","features":[375,376]},{"name":"PKEY_DeviceDisplay_RequiresPairingElevation","features":[375,376]},{"name":"PKEY_DeviceDisplay_RequiresUninstallElevation","features":[375,376]},{"name":"PKEY_DeviceDisplay_UnpairUninstall","features":[375,376]},{"name":"PKEY_DeviceDisplay_Version","features":[375,376]},{"name":"PKEY_DeviceInterfaceClass_DefaultInterface","features":[375,376]},{"name":"PKEY_DeviceInterface_ClassGuid","features":[375,376]},{"name":"PKEY_DeviceInterface_Enabled","features":[375,376]},{"name":"PKEY_DeviceInterface_FriendlyName","features":[375,376]},{"name":"PKEY_Device_AdditionalSoftwareRequested","features":[375,376]},{"name":"PKEY_Device_Address","features":[375,376]},{"name":"PKEY_Device_BIOSVersion","features":[375,376]},{"name":"PKEY_Device_BaseContainerId","features":[375,376]},{"name":"PKEY_Device_BusNumber","features":[375,376]},{"name":"PKEY_Device_BusRelations","features":[375,376]},{"name":"PKEY_Device_BusReportedDeviceDesc","features":[375,376]},{"name":"PKEY_Device_BusTypeGuid","features":[375,376]},{"name":"PKEY_Device_Capabilities","features":[375,376]},{"name":"PKEY_Device_Characteristics","features":[375,376]},{"name":"PKEY_Device_Children","features":[375,376]},{"name":"PKEY_Device_Class","features":[375,376]},{"name":"PKEY_Device_ClassGuid","features":[375,376]},{"name":"PKEY_Device_CompatibleIds","features":[375,376]},{"name":"PKEY_Device_ConfigFlags","features":[375,376]},{"name":"PKEY_Device_ContainerId","features":[375,376]},{"name":"PKEY_Device_DHP_Rebalance_Policy","features":[375,376]},{"name":"PKEY_Device_DevNodeStatus","features":[375,376]},{"name":"PKEY_Device_DevType","features":[375,376]},{"name":"PKEY_Device_DeviceDesc","features":[375,376]},{"name":"PKEY_Device_Driver","features":[375,376]},{"name":"PKEY_Device_DriverCoInstallers","features":[375,376]},{"name":"PKEY_Device_DriverDate","features":[375,376]},{"name":"PKEY_Device_DriverDesc","features":[375,376]},{"name":"PKEY_Device_DriverInfPath","features":[375,376]},{"name":"PKEY_Device_DriverInfSection","features":[375,376]},{"name":"PKEY_Device_DriverInfSectionExt","features":[375,376]},{"name":"PKEY_Device_DriverLogoLevel","features":[375,376]},{"name":"PKEY_Device_DriverPropPageProvider","features":[375,376]},{"name":"PKEY_Device_DriverProvider","features":[375,376]},{"name":"PKEY_Device_DriverRank","features":[375,376]},{"name":"PKEY_Device_DriverVersion","features":[375,376]},{"name":"PKEY_Device_EjectionRelations","features":[375,376]},{"name":"PKEY_Device_EnumeratorName","features":[375,376]},{"name":"PKEY_Device_Exclusive","features":[375,376]},{"name":"PKEY_Device_FriendlyName","features":[375,376]},{"name":"PKEY_Device_FriendlyNameAttributes","features":[375,376]},{"name":"PKEY_Device_GenericDriverInstalled","features":[375,376]},{"name":"PKEY_Device_HardwareIds","features":[375,376]},{"name":"PKEY_Device_InstallInProgress","features":[375,376]},{"name":"PKEY_Device_InstallState","features":[375,376]},{"name":"PKEY_Device_InstanceId","features":[375,376]},{"name":"PKEY_Device_IsAssociateableByUserAction","features":[375,376]},{"name":"PKEY_Device_Legacy","features":[375,376]},{"name":"PKEY_Device_LegacyBusType","features":[375,376]},{"name":"PKEY_Device_LocationInfo","features":[375,376]},{"name":"PKEY_Device_LocationPaths","features":[375,376]},{"name":"PKEY_Device_LowerFilters","features":[375,376]},{"name":"PKEY_Device_Manufacturer","features":[375,376]},{"name":"PKEY_Device_ManufacturerAttributes","features":[375,376]},{"name":"PKEY_Device_MatchingDeviceId","features":[375,376]},{"name":"PKEY_Device_ModelId","features":[375,376]},{"name":"PKEY_Device_NoConnectSound","features":[375,376]},{"name":"PKEY_Device_Numa_Node","features":[375,376]},{"name":"PKEY_Device_PDOName","features":[375,376]},{"name":"PKEY_Device_Parent","features":[375,376]},{"name":"PKEY_Device_PowerData","features":[375,376]},{"name":"PKEY_Device_PowerRelations","features":[375,376]},{"name":"PKEY_Device_PresenceNotForDevice","features":[375,376]},{"name":"PKEY_Device_ProblemCode","features":[375,376]},{"name":"PKEY_Device_RemovalPolicy","features":[375,376]},{"name":"PKEY_Device_RemovalPolicyDefault","features":[375,376]},{"name":"PKEY_Device_RemovalPolicyOverride","features":[375,376]},{"name":"PKEY_Device_RemovalRelations","features":[375,376]},{"name":"PKEY_Device_Reported","features":[375,376]},{"name":"PKEY_Device_ResourcePickerExceptions","features":[375,376]},{"name":"PKEY_Device_ResourcePickerTags","features":[375,376]},{"name":"PKEY_Device_SafeRemovalRequired","features":[375,376]},{"name":"PKEY_Device_SafeRemovalRequiredOverride","features":[375,376]},{"name":"PKEY_Device_Security","features":[375,376]},{"name":"PKEY_Device_SecuritySDS","features":[375,376]},{"name":"PKEY_Device_Service","features":[375,376]},{"name":"PKEY_Device_Siblings","features":[375,376]},{"name":"PKEY_Device_SignalStrength","features":[375,376]},{"name":"PKEY_Device_TransportRelations","features":[375,376]},{"name":"PKEY_Device_UINumber","features":[375,376]},{"name":"PKEY_Device_UINumberDescFormat","features":[375,376]},{"name":"PKEY_Device_UpperFilters","features":[375,376]},{"name":"PKEY_DrvPkg_BrandingIcon","features":[375,376]},{"name":"PKEY_DrvPkg_DetailedDescription","features":[375,376]},{"name":"PKEY_DrvPkg_DocumentationLink","features":[375,376]},{"name":"PKEY_DrvPkg_Icon","features":[375,376]},{"name":"PKEY_DrvPkg_Model","features":[375,376]},{"name":"PKEY_DrvPkg_VendorWebSite","features":[375,376]},{"name":"PKEY_FunctionInstance","features":[375,376]},{"name":"PKEY_Hardware_Devinst","features":[375,376]},{"name":"PKEY_Hardware_DisplayAttribute","features":[375,376]},{"name":"PKEY_Hardware_DriverDate","features":[375,376]},{"name":"PKEY_Hardware_DriverProvider","features":[375,376]},{"name":"PKEY_Hardware_DriverVersion","features":[375,376]},{"name":"PKEY_Hardware_Function","features":[375,376]},{"name":"PKEY_Hardware_Icon","features":[375,376]},{"name":"PKEY_Hardware_Image","features":[375,376]},{"name":"PKEY_Hardware_Manufacturer","features":[375,376]},{"name":"PKEY_Hardware_Model","features":[375,376]},{"name":"PKEY_Hardware_Name","features":[375,376]},{"name":"PKEY_Hardware_SerialNumber","features":[375,376]},{"name":"PKEY_Hardware_ShellAttributes","features":[375,376]},{"name":"PKEY_Hardware_Status","features":[375,376]},{"name":"PKEY_NAME","features":[375,376]},{"name":"PKEY_Numa_Proximity_Domain","features":[375,376]},{"name":"PKEY_PNPX_Associated","features":[375,376]},{"name":"PKEY_PNPX_Category_Desc_NonPlural","features":[375,376]},{"name":"PKEY_PNPX_CompactSignature","features":[375,376]},{"name":"PKEY_PNPX_CompatibleTypes","features":[375,376]},{"name":"PKEY_PNPX_DeviceCategory","features":[375,376]},{"name":"PKEY_PNPX_DeviceCategory_Desc","features":[375,376]},{"name":"PKEY_PNPX_DeviceCertHash","features":[375,376]},{"name":"PKEY_PNPX_DomainName","features":[375,376]},{"name":"PKEY_PNPX_FirmwareVersion","features":[375,376]},{"name":"PKEY_PNPX_GlobalIdentity","features":[375,376]},{"name":"PKEY_PNPX_ID","features":[375,376]},{"name":"PKEY_PNPX_IPBusEnumerated","features":[375,376]},{"name":"PKEY_PNPX_InstallState","features":[375,376]},{"name":"PKEY_PNPX_Installable","features":[375,376]},{"name":"PKEY_PNPX_IpAddress","features":[375,376]},{"name":"PKEY_PNPX_ManufacturerUrl","features":[375,376]},{"name":"PKEY_PNPX_MetadataVersion","features":[375,376]},{"name":"PKEY_PNPX_ModelUrl","features":[375,376]},{"name":"PKEY_PNPX_NetworkInterfaceGuid","features":[375,376]},{"name":"PKEY_PNPX_NetworkInterfaceLuid","features":[375,376]},{"name":"PKEY_PNPX_PhysicalAddress","features":[375,376]},{"name":"PKEY_PNPX_PresentationUrl","features":[375,376]},{"name":"PKEY_PNPX_RemoteAddress","features":[375,376]},{"name":"PKEY_PNPX_Removable","features":[375,376]},{"name":"PKEY_PNPX_RootProxy","features":[375,376]},{"name":"PKEY_PNPX_Scopes","features":[375,376]},{"name":"PKEY_PNPX_SecureChannel","features":[375,376]},{"name":"PKEY_PNPX_SerialNumber","features":[375,376]},{"name":"PKEY_PNPX_ServiceAddress","features":[375,376]},{"name":"PKEY_PNPX_ServiceControlUrl","features":[375,376]},{"name":"PKEY_PNPX_ServiceDescUrl","features":[375,376]},{"name":"PKEY_PNPX_ServiceEventSubUrl","features":[375,376]},{"name":"PKEY_PNPX_ServiceId","features":[375,376]},{"name":"PKEY_PNPX_ServiceTypes","features":[375,376]},{"name":"PKEY_PNPX_ShareName","features":[375,376]},{"name":"PKEY_PNPX_Types","features":[375,376]},{"name":"PKEY_PNPX_Upc","features":[375,376]},{"name":"PKEY_PNPX_XAddrs","features":[375,376]},{"name":"PKEY_Pairing_IsWifiOnlyDevice","features":[375,376]},{"name":"PKEY_Pairing_ListItemDefault","features":[375,376]},{"name":"PKEY_Pairing_ListItemDescription","features":[375,376]},{"name":"PKEY_Pairing_ListItemIcon","features":[375,376]},{"name":"PKEY_Pairing_ListItemText","features":[375,376]},{"name":"PKEY_SSDP_AltLocationInfo","features":[375,376]},{"name":"PKEY_SSDP_DevLifeTime","features":[375,376]},{"name":"PKEY_SSDP_NetworkInterface","features":[375,376]},{"name":"PKEY_WCN_AssocState","features":[375,376]},{"name":"PKEY_WCN_AuthType","features":[375,376]},{"name":"PKEY_WCN_ConfigError","features":[375,376]},{"name":"PKEY_WCN_ConfigMethods","features":[375,376]},{"name":"PKEY_WCN_ConfigState","features":[375,376]},{"name":"PKEY_WCN_ConnType","features":[375,376]},{"name":"PKEY_WCN_DevicePasswordId","features":[375,376]},{"name":"PKEY_WCN_EncryptType","features":[375,376]},{"name":"PKEY_WCN_OSVersion","features":[375,376]},{"name":"PKEY_WCN_RegistrarType","features":[375,376]},{"name":"PKEY_WCN_RequestType","features":[375,376]},{"name":"PKEY_WCN_RfBand","features":[375,376]},{"name":"PKEY_WCN_VendorExtension","features":[375,376]},{"name":"PKEY_WCN_Version","features":[375,376]},{"name":"PKEY_WNET_Comment","features":[375,376]},{"name":"PKEY_WNET_DisplayType","features":[375,376]},{"name":"PKEY_WNET_LocalName","features":[375,376]},{"name":"PKEY_WNET_Provider","features":[375,376]},{"name":"PKEY_WNET_RemoteName","features":[375,376]},{"name":"PKEY_WNET_Scope","features":[375,376]},{"name":"PKEY_WNET_Type","features":[375,376]},{"name":"PKEY_WNET_Usage","features":[375,376]},{"name":"PNPXAssociation","features":[375]},{"name":"PNPXPairingHandler","features":[375]},{"name":"PNPX_DEVICECATEGORY_CAMERA","features":[375]},{"name":"PNPX_DEVICECATEGORY_COMPUTER","features":[375]},{"name":"PNPX_DEVICECATEGORY_DISPLAYS","features":[375]},{"name":"PNPX_DEVICECATEGORY_FAX","features":[375]},{"name":"PNPX_DEVICECATEGORY_GAMING_DEVICE","features":[375]},{"name":"PNPX_DEVICECATEGORY_HOME_AUTOMATION_SYSTEM","features":[375]},{"name":"PNPX_DEVICECATEGORY_HOME_SECURITY_SYSTEM","features":[375]},{"name":"PNPX_DEVICECATEGORY_INPUTDEVICE","features":[375]},{"name":"PNPX_DEVICECATEGORY_MFP","features":[375]},{"name":"PNPX_DEVICECATEGORY_MULTIMEDIA_DEVICE","features":[375]},{"name":"PNPX_DEVICECATEGORY_NETWORK_INFRASTRUCTURE","features":[375]},{"name":"PNPX_DEVICECATEGORY_OTHER","features":[375]},{"name":"PNPX_DEVICECATEGORY_PRINTER","features":[375]},{"name":"PNPX_DEVICECATEGORY_SCANNER","features":[375]},{"name":"PNPX_DEVICECATEGORY_STORAGE","features":[375]},{"name":"PNPX_DEVICECATEGORY_TELEPHONE","features":[375]},{"name":"PNPX_INSTALLSTATE_FAILED","features":[375]},{"name":"PNPX_INSTALLSTATE_INSTALLED","features":[375]},{"name":"PNPX_INSTALLSTATE_INSTALLING","features":[375]},{"name":"PNPX_INSTALLSTATE_NOTINSTALLED","features":[375]},{"name":"PNP_CONSTRAINTVALUE_NOTIFICATIONSONLY","features":[375]},{"name":"PNP_CONSTRAINTVALUE_NOTPRESENT","features":[375]},{"name":"PROVIDERDDO_QUERYCONSTRAINT_DEVICEFUNCTIONDISPLAYOBJECTS","features":[375]},{"name":"PROVIDERDDO_QUERYCONSTRAINT_DEVICEINTERFACES","features":[375]},{"name":"PROVIDERDDO_QUERYCONSTRAINT_ONLYCONNECTEDDEVICES","features":[375]},{"name":"PROVIDERPNP_QUERYCONSTRAINT_INTERFACECLASS","features":[375]},{"name":"PROVIDERPNP_QUERYCONSTRAINT_NOTIFICATIONSONLY","features":[375]},{"name":"PROVIDERPNP_QUERYCONSTRAINT_NOTPRESENT","features":[375]},{"name":"PROVIDERSSDP_QUERYCONSTRAINT_CUSTOMXMLPROPERTY","features":[375]},{"name":"PROVIDERSSDP_QUERYCONSTRAINT_TYPE","features":[375]},{"name":"PROVIDERWNET_QUERYCONSTRAINT_PROPERTIES","features":[375]},{"name":"PROVIDERWNET_QUERYCONSTRAINT_RESOURCETYPE","features":[375]},{"name":"PROVIDERWNET_QUERYCONSTRAINT_TYPE","features":[375]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_DIRECTEDADDRESS","features":[375]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SCOPE","features":[375]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SECURITY_REQUIREMENTS","features":[375]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SSL_CERTHASH_FOR_SERVER_AUTH","features":[375]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_SSL_CERT_FOR_CLIENT_AUTH","features":[375]},{"name":"PROVIDERWSD_QUERYCONSTRAINT_TYPE","features":[375]},{"name":"PropertyConstraint","features":[375]},{"name":"PropertyStore","features":[375]},{"name":"PropertyStoreCollection","features":[375]},{"name":"QCT_LAYERED","features":[375]},{"name":"QCT_PROVIDER","features":[375]},{"name":"QC_CONTAINS","features":[375]},{"name":"QC_DOESNOTEXIST","features":[375]},{"name":"QC_EQUALS","features":[375]},{"name":"QC_EXISTS","features":[375]},{"name":"QC_GREATERTHAN","features":[375]},{"name":"QC_GREATERTHANOREQUAL","features":[375]},{"name":"QC_LESSTHAN","features":[375]},{"name":"QC_LESSTHANOREQUAL","features":[375]},{"name":"QC_NOTEQUAL","features":[375]},{"name":"QC_STARTSWITH","features":[375]},{"name":"QUA_ADD","features":[375]},{"name":"QUA_CHANGE","features":[375]},{"name":"QUA_REMOVE","features":[375]},{"name":"QueryCategoryType","features":[375]},{"name":"QueryUpdateAction","features":[375]},{"name":"SID_DeviceDisplayStatusManager","features":[375]},{"name":"SID_EnumDeviceFunction","features":[375]},{"name":"SID_EnumInterface","features":[375]},{"name":"SID_FDPairingHandler","features":[375]},{"name":"SID_FunctionDiscoveryProviderRefresh","features":[375]},{"name":"SID_PNPXAssociation","features":[375]},{"name":"SID_PNPXPropertyStore","features":[375]},{"name":"SID_PNPXServiceCollection","features":[375]},{"name":"SID_PnpProvider","features":[375]},{"name":"SID_UPnPActivator","features":[375]},{"name":"SID_UninstallDeviceFunction","features":[375]},{"name":"SID_UnpairProvider","features":[375]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_ALL","features":[375]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_DEVICE_PREFIX","features":[375]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_ROOT","features":[375]},{"name":"SSDP_CONSTRAINTVALUE_TYPE_SVC_PREFIX","features":[375]},{"name":"SVF_SYSTEM","features":[375]},{"name":"SVF_USER","features":[375]},{"name":"SystemVisibilityFlags","features":[375]},{"name":"WNET_CONSTRAINTVALUE_PROPERTIES_ALL","features":[375]},{"name":"WNET_CONSTRAINTVALUE_PROPERTIES_LIMITED","features":[375]},{"name":"WNET_CONSTRAINTVALUE_RESOURCETYPE_DISK","features":[375]},{"name":"WNET_CONSTRAINTVALUE_RESOURCETYPE_DISKORPRINTER","features":[375]},{"name":"WNET_CONSTRAINTVALUE_RESOURCETYPE_PRINTER","features":[375]},{"name":"WNET_CONSTRAINTVALUE_TYPE_ALL","features":[375]},{"name":"WNET_CONSTRAINTVALUE_TYPE_DOMAIN","features":[375]},{"name":"WNET_CONSTRAINTVALUE_TYPE_SERVER","features":[375]},{"name":"WSD_CONSTRAINTVALUE_NO_TRUST_VERIFICATION","features":[375]},{"name":"WSD_CONSTRAINTVALUE_REQUIRE_SECURECHANNEL","features":[375]},{"name":"WSD_CONSTRAINTVALUE_REQUIRE_SECURECHANNEL_AND_COMPACTSIGNATURE","features":[375]}],"380":[{"name":"BREADCRUMBING_UNSUPPORTED","features":[377]},{"name":"BREADCRUMBING_VERSION_1","features":[377]},{"name":"CivicAddressReport","features":[377]},{"name":"CivicAddressReportFactory","features":[377]},{"name":"DefaultLocation","features":[377]},{"name":"DispCivicAddressReport","features":[377]},{"name":"DispLatLongReport","features":[377]},{"name":"GNSS_AGNSSFORMAT_LTO","features":[377]},{"name":"GNSS_AGNSSFORMAT_XTRA1","features":[377]},{"name":"GNSS_AGNSSFORMAT_XTRA2","features":[377]},{"name":"GNSS_AGNSSFORMAT_XTRA3","features":[377]},{"name":"GNSS_AGNSSFORMAT_XTRA3_1","features":[377]},{"name":"GNSS_AGNSSFORMAT_XTRA3_2","features":[377]},{"name":"GNSS_AGNSSFORMAT_XTRA_INT","features":[377]},{"name":"GNSS_AGNSS_BlobInjection","features":[377]},{"name":"GNSS_AGNSS_INJECT","features":[377,305]},{"name":"GNSS_AGNSS_INJECTBLOB","features":[377]},{"name":"GNSS_AGNSS_INJECTPOSITION","features":[377]},{"name":"GNSS_AGNSS_INJECTTIME","features":[377,305]},{"name":"GNSS_AGNSS_PositionInjection","features":[377]},{"name":"GNSS_AGNSS_REQUEST_PARAM","features":[377]},{"name":"GNSS_AGNSS_REQUEST_TYPE","features":[377]},{"name":"GNSS_AGNSS_TimeInjection","features":[377]},{"name":"GNSS_BREADCRUMBING_ALERT_DATA","features":[377]},{"name":"GNSS_BREADCRUMBING_PARAM","features":[377]},{"name":"GNSS_BREADCRUMB_LIST","features":[377,305]},{"name":"GNSS_BREADCRUMB_V1","features":[377,305]},{"name":"GNSS_CHIPSETINFO","features":[377]},{"name":"GNSS_CONTINUOUSTRACKING_PARAM","features":[377]},{"name":"GNSS_CP_NI_INFO","features":[377]},{"name":"GNSS_CWTESTDATA","features":[377,305]},{"name":"GNSS_ClearAgnssData","features":[377]},{"name":"GNSS_CustomCommand","features":[377]},{"name":"GNSS_DEVICE_CAPABILITY","features":[377,305]},{"name":"GNSS_DISTANCETRACKING_PARAM","features":[377]},{"name":"GNSS_DRIVERCOMMAND_PARAM","features":[377]},{"name":"GNSS_DRIVERCOMMAND_TYPE","features":[377]},{"name":"GNSS_DRIVER_REQUEST","features":[377]},{"name":"GNSS_DRIVER_REQUEST_DATA","features":[377]},{"name":"GNSS_DRIVER_VERSION_1","features":[377]},{"name":"GNSS_DRIVER_VERSION_2","features":[377]},{"name":"GNSS_DRIVER_VERSION_3","features":[377]},{"name":"GNSS_DRIVER_VERSION_4","features":[377]},{"name":"GNSS_DRIVER_VERSION_5","features":[377]},{"name":"GNSS_DRIVER_VERSION_6","features":[377]},{"name":"GNSS_ERRORINFO","features":[377,305]},{"name":"GNSS_EVENT","features":[377,305]},{"name":"GNSS_EVENT_2","features":[377,305]},{"name":"GNSS_EVENT_TYPE","features":[377]},{"name":"GNSS_Event_BreadcrumbAlertEvent","features":[377]},{"name":"GNSS_Event_Custom","features":[377]},{"name":"GNSS_Event_DriverRequest","features":[377]},{"name":"GNSS_Event_Error","features":[377]},{"name":"GNSS_Event_FixAvailable","features":[377]},{"name":"GNSS_Event_FixAvailable_2","features":[377]},{"name":"GNSS_Event_GeofenceAlertData","features":[377]},{"name":"GNSS_Event_GeofencesTrackingStatus","features":[377]},{"name":"GNSS_Event_NiRequest","features":[377]},{"name":"GNSS_Event_NmeaData","features":[377]},{"name":"GNSS_Event_RequireAgnss","features":[377]},{"name":"GNSS_FIXDATA","features":[377,305]},{"name":"GNSS_FIXDATA_2","features":[377,305]},{"name":"GNSS_FIXDATA_ACCURACY","features":[377]},{"name":"GNSS_FIXDATA_ACCURACY_2","features":[377]},{"name":"GNSS_FIXDATA_BASIC","features":[377]},{"name":"GNSS_FIXDATA_BASIC_2","features":[377]},{"name":"GNSS_FIXDATA_SATELLITE","features":[377,305]},{"name":"GNSS_FIXDETAIL_ACCURACY","features":[377]},{"name":"GNSS_FIXDETAIL_BASIC","features":[377]},{"name":"GNSS_FIXDETAIL_SATELLITE","features":[377]},{"name":"GNSS_FIXSESSIONTYPE","features":[377]},{"name":"GNSS_FIXSESSION_PARAM","features":[377]},{"name":"GNSS_FixSession_ContinuousTracking","features":[377]},{"name":"GNSS_FixSession_DistanceTracking","features":[377]},{"name":"GNSS_FixSession_LKG","features":[377]},{"name":"GNSS_FixSession_SingleShot","features":[377]},{"name":"GNSS_ForceOperationMode","features":[377]},{"name":"GNSS_ForceSatelliteSystem","features":[377]},{"name":"GNSS_GEOFENCESUPPORT_CIRCLE","features":[377]},{"name":"GNSS_GEOFENCESUPPORT_SUPPORTED","features":[377]},{"name":"GNSS_GEOFENCES_TRACKINGSTATUS_DATA","features":[377,305]},{"name":"GNSS_GEOFENCE_ALERT_DATA","features":[377]},{"name":"GNSS_GEOFENCE_CREATE_PARAM","features":[377]},{"name":"GNSS_GEOFENCE_CREATE_RESPONSE","features":[377,305]},{"name":"GNSS_GEOFENCE_DELETE_PARAM","features":[377]},{"name":"GNSS_GEOFENCE_STATE","features":[377]},{"name":"GNSS_GEOREGION","features":[377]},{"name":"GNSS_GEOREGIONTYPE","features":[377]},{"name":"GNSS_GEOREGION_CIRCLE","features":[377]},{"name":"GNSS_GeoRegion_Circle","features":[377]},{"name":"GNSS_GeofenceState_Entered","features":[377]},{"name":"GNSS_GeofenceState_Exited","features":[377]},{"name":"GNSS_GeofenceState_Unknown","features":[377]},{"name":"GNSS_LKGFIX_PARAM","features":[377]},{"name":"GNSS_MAXSATELLITE","features":[377]},{"name":"GNSS_NI_CP","features":[377]},{"name":"GNSS_NI_NOTIFICATION_TYPE","features":[377]},{"name":"GNSS_NI_NoNotifyNoVerify","features":[377]},{"name":"GNSS_NI_NotifyOnly","features":[377]},{"name":"GNSS_NI_NotifyVerifyDefaultAllow","features":[377]},{"name":"GNSS_NI_NotifyVerifyDefaultNotAllow","features":[377]},{"name":"GNSS_NI_PLANE_TYPE","features":[377]},{"name":"GNSS_NI_PrivacyOverride","features":[377]},{"name":"GNSS_NI_REQUEST_PARAM","features":[377,305]},{"name":"GNSS_NI_REQUEST_TYPE","features":[377]},{"name":"GNSS_NI_RESPONSE","features":[377]},{"name":"GNSS_NI_Request_AreaTrigger","features":[377]},{"name":"GNSS_NI_Request_SingleShot","features":[377]},{"name":"GNSS_NI_SUPL","features":[377]},{"name":"GNSS_NI_USER_RESPONSE","features":[377]},{"name":"GNSS_NI_V2UPL","features":[377]},{"name":"GNSS_NMEALOGGING_ALL","features":[377]},{"name":"GNSS_NMEALOGGING_NONE","features":[377]},{"name":"GNSS_NMEA_DATA","features":[377]},{"name":"GNSS_Ni_UserResponseAccept","features":[377]},{"name":"GNSS_Ni_UserResponseDeny","features":[377]},{"name":"GNSS_Ni_UserResponseTimeout","features":[377]},{"name":"GNSS_OPERMODE_AFLT","features":[377]},{"name":"GNSS_OPERMODE_ANY","features":[377]},{"name":"GNSS_OPERMODE_CELLID","features":[377]},{"name":"GNSS_OPERMODE_MSA","features":[377]},{"name":"GNSS_OPERMODE_MSB","features":[377]},{"name":"GNSS_OPERMODE_MSS","features":[377]},{"name":"GNSS_OPERMODE_OTDOA","features":[377]},{"name":"GNSS_PLATFORM_CAPABILITY","features":[377,305]},{"name":"GNSS_ResetEngine","features":[377]},{"name":"GNSS_ResetGeofencesTracking","features":[377]},{"name":"GNSS_SATELLITEINFO","features":[377,305]},{"name":"GNSS_SATELLITE_ANY","features":[377]},{"name":"GNSS_SATELLITE_BEIDOU","features":[377]},{"name":"GNSS_SATELLITE_GALILEO","features":[377]},{"name":"GNSS_SATELLITE_GLONASS","features":[377]},{"name":"GNSS_SATELLITE_GPS","features":[377]},{"name":"GNSS_SELFTESTCONFIG","features":[377]},{"name":"GNSS_SELFTESTRESULT","features":[377,305]},{"name":"GNSS_SINGLESHOT_PARAM","features":[377]},{"name":"GNSS_STOPFIXSESSION_PARAM","features":[377]},{"name":"GNSS_SUPL_CERT_ACTION","features":[377]},{"name":"GNSS_SUPL_CERT_CONFIG","features":[377]},{"name":"GNSS_SUPL_HSLP_CONFIG","features":[377]},{"name":"GNSS_SUPL_NI_INFO","features":[377]},{"name":"GNSS_SUPL_VERSION","features":[377]},{"name":"GNSS_SUPL_VERSION_2","features":[377]},{"name":"GNSS_SetLocationNIRequestAllowed","features":[377]},{"name":"GNSS_SetLocationServiceEnabled","features":[377]},{"name":"GNSS_SetNMEALogging","features":[377]},{"name":"GNSS_SetNiTimeoutInterval","features":[377]},{"name":"GNSS_SetSuplVersion","features":[377]},{"name":"GNSS_SetSuplVersion2","features":[377]},{"name":"GNSS_SetUplServerAccessInterval","features":[377]},{"name":"GNSS_Supl_Cert_Delete","features":[377]},{"name":"GNSS_Supl_Cert_Inject","features":[377]},{"name":"GNSS_Supl_Cert_Purge","features":[377]},{"name":"GNSS_V2UPL_CONFIG","features":[377]},{"name":"GNSS_V2UPL_NI_INFO","features":[377]},{"name":"GUID_DEVINTERFACE_GNSS","features":[377]},{"name":"ICivicAddressReport","features":[377]},{"name":"ICivicAddressReportFactory","features":[377,356]},{"name":"IDefaultLocation","features":[377]},{"name":"IDispCivicAddressReport","features":[377,356]},{"name":"IDispLatLongReport","features":[377,356]},{"name":"ILatLongReport","features":[377]},{"name":"ILatLongReportFactory","features":[377,356]},{"name":"ILocation","features":[377]},{"name":"ILocationEvents","features":[377]},{"name":"ILocationPower","features":[377]},{"name":"ILocationReport","features":[377]},{"name":"ILocationReportFactory","features":[377,356]},{"name":"IOCTL_GNSS_CONFIG_SUPL_CERT","features":[377]},{"name":"IOCTL_GNSS_CREATE_GEOFENCE","features":[377]},{"name":"IOCTL_GNSS_DELETE_GEOFENCE","features":[377]},{"name":"IOCTL_GNSS_EXECUTE_CWTEST","features":[377]},{"name":"IOCTL_GNSS_EXECUTE_SELFTEST","features":[377]},{"name":"IOCTL_GNSS_GET_CHIPSETINFO","features":[377]},{"name":"IOCTL_GNSS_GET_DEVICE_CAPABILITY","features":[377]},{"name":"IOCTL_GNSS_GET_FIXDATA","features":[377]},{"name":"IOCTL_GNSS_INJECT_AGNSS","features":[377]},{"name":"IOCTL_GNSS_LISTEN_AGNSS","features":[377]},{"name":"IOCTL_GNSS_LISTEN_BREADCRUMBING_ALERT","features":[377]},{"name":"IOCTL_GNSS_LISTEN_DRIVER_REQUEST","features":[377]},{"name":"IOCTL_GNSS_LISTEN_ERROR","features":[377]},{"name":"IOCTL_GNSS_LISTEN_GEOFENCES_TRACKINGSTATUS","features":[377]},{"name":"IOCTL_GNSS_LISTEN_GEOFENCE_ALERT","features":[377]},{"name":"IOCTL_GNSS_LISTEN_NI","features":[377]},{"name":"IOCTL_GNSS_LISTEN_NMEA","features":[377]},{"name":"IOCTL_GNSS_MODIFY_FIXSESSION","features":[377]},{"name":"IOCTL_GNSS_POP_BREADCRUMBS","features":[377]},{"name":"IOCTL_GNSS_RESPOND_NI","features":[377]},{"name":"IOCTL_GNSS_SEND_DRIVERCOMMAND","features":[377]},{"name":"IOCTL_GNSS_SEND_PLATFORM_CAPABILITY","features":[377]},{"name":"IOCTL_GNSS_SET_SUPL_HSLP","features":[377]},{"name":"IOCTL_GNSS_SET_V2UPL_CONFIG","features":[377]},{"name":"IOCTL_GNSS_START_BREADCRUMBING","features":[377]},{"name":"IOCTL_GNSS_START_FIXSESSION","features":[377]},{"name":"IOCTL_GNSS_STOP_BREADCRUMBING","features":[377]},{"name":"IOCTL_GNSS_STOP_FIXSESSION","features":[377]},{"name":"LOCATION_API_VERSION","features":[377]},{"name":"LOCATION_REPORT_STATUS","features":[377]},{"name":"LatLongReport","features":[377]},{"name":"LatLongReportFactory","features":[377]},{"name":"Location","features":[377]},{"name":"MAX_SERVER_URL_NAME","features":[377]},{"name":"MIN_BREADCRUMBS_SUPPORTED","features":[377]},{"name":"MIN_GEOFENCES_REQUIRED","features":[377]},{"name":"REPORT_ACCESS_DENIED","features":[377]},{"name":"REPORT_ERROR","features":[377]},{"name":"REPORT_INITIALIZING","features":[377]},{"name":"REPORT_NOT_SUPPORTED","features":[377]},{"name":"REPORT_RUNNING","features":[377]},{"name":"SUPL_CONFIG_DATA","features":[377]},{"name":"_ICivicAddressReportFactoryEvents","features":[377,356]},{"name":"_ILatLongReportFactoryEvents","features":[377,356]}],"381":[{"name":"BALLPOINT_I8042_HARDWARE","features":[378]},{"name":"BALLPOINT_SERIAL_HARDWARE","features":[378]},{"name":"BUTTON_BIT_ALLBUTTONSMASK","features":[378]},{"name":"BUTTON_BIT_BACK","features":[378]},{"name":"BUTTON_BIT_CAMERAFOCUS","features":[378]},{"name":"BUTTON_BIT_CAMERALENS","features":[378]},{"name":"BUTTON_BIT_CAMERASHUTTER","features":[378]},{"name":"BUTTON_BIT_HEADSET","features":[378]},{"name":"BUTTON_BIT_HWKBDEPLOY","features":[378]},{"name":"BUTTON_BIT_OEMCUSTOM","features":[378]},{"name":"BUTTON_BIT_OEMCUSTOM2","features":[378]},{"name":"BUTTON_BIT_OEMCUSTOM3","features":[378]},{"name":"BUTTON_BIT_POWER","features":[378]},{"name":"BUTTON_BIT_RINGERTOGGLE","features":[378]},{"name":"BUTTON_BIT_ROTATION_LOCK","features":[378]},{"name":"BUTTON_BIT_SEARCH","features":[378]},{"name":"BUTTON_BIT_VOLUMEDOWN","features":[378]},{"name":"BUTTON_BIT_VOLUMEUP","features":[378]},{"name":"BUTTON_BIT_WINDOWS","features":[378]},{"name":"CLSID_DirectInput","features":[378]},{"name":"CLSID_DirectInput8","features":[378]},{"name":"CLSID_DirectInputDevice","features":[378]},{"name":"CLSID_DirectInputDevice8","features":[378]},{"name":"CPOINT","features":[378]},{"name":"DD_KEYBOARD_DEVICE_NAME","features":[378]},{"name":"DD_KEYBOARD_DEVICE_NAME_U","features":[378]},{"name":"DD_MOUSE_DEVICE_NAME","features":[378]},{"name":"DD_MOUSE_DEVICE_NAME_U","features":[378]},{"name":"DEVPKEY_DeviceInterface_HID_BackgroundAccess","features":[378,303]},{"name":"DEVPKEY_DeviceInterface_HID_IsReadOnly","features":[378,303]},{"name":"DEVPKEY_DeviceInterface_HID_ProductId","features":[378,303]},{"name":"DEVPKEY_DeviceInterface_HID_UsageId","features":[378,303]},{"name":"DEVPKEY_DeviceInterface_HID_UsagePage","features":[378,303]},{"name":"DEVPKEY_DeviceInterface_HID_VendorId","features":[378,303]},{"name":"DEVPKEY_DeviceInterface_HID_VersionNumber","features":[378,303]},{"name":"DEVPKEY_DeviceInterface_HID_WakeScreenOnInputCapable","features":[378,303]},{"name":"DI8DEVCLASS_ALL","features":[378]},{"name":"DI8DEVCLASS_DEVICE","features":[378]},{"name":"DI8DEVCLASS_GAMECTRL","features":[378]},{"name":"DI8DEVCLASS_KEYBOARD","features":[378]},{"name":"DI8DEVCLASS_POINTER","features":[378]},{"name":"DI8DEVTYPE1STPERSON_LIMITED","features":[378]},{"name":"DI8DEVTYPE1STPERSON_SHOOTER","features":[378]},{"name":"DI8DEVTYPE1STPERSON_SIXDOF","features":[378]},{"name":"DI8DEVTYPE1STPERSON_UNKNOWN","features":[378]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION","features":[378]},{"name":"DI8DEVTYPEDEVICECTRL_COMMSSELECTION_HARDWIRED","features":[378]},{"name":"DI8DEVTYPEDEVICECTRL_UNKNOWN","features":[378]},{"name":"DI8DEVTYPEDRIVING_COMBINEDPEDALS","features":[378]},{"name":"DI8DEVTYPEDRIVING_DUALPEDALS","features":[378]},{"name":"DI8DEVTYPEDRIVING_HANDHELD","features":[378]},{"name":"DI8DEVTYPEDRIVING_LIMITED","features":[378]},{"name":"DI8DEVTYPEDRIVING_THREEPEDALS","features":[378]},{"name":"DI8DEVTYPEFLIGHT_LIMITED","features":[378]},{"name":"DI8DEVTYPEFLIGHT_RC","features":[378]},{"name":"DI8DEVTYPEFLIGHT_STICK","features":[378]},{"name":"DI8DEVTYPEFLIGHT_YOKE","features":[378]},{"name":"DI8DEVTYPEGAMEPAD_LIMITED","features":[378]},{"name":"DI8DEVTYPEGAMEPAD_STANDARD","features":[378]},{"name":"DI8DEVTYPEGAMEPAD_TILT","features":[378]},{"name":"DI8DEVTYPEJOYSTICK_LIMITED","features":[378]},{"name":"DI8DEVTYPEJOYSTICK_STANDARD","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_J3100","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_JAPAN106","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_JAPANAX","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_NEC98","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_NEC98106","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_NEC98LAPTOP","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA1050","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_NOKIA9140","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_OLIVETTI","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_PCAT","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_PCENH","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_PCXT","features":[378]},{"name":"DI8DEVTYPEKEYBOARD_UNKNOWN","features":[378]},{"name":"DI8DEVTYPEMOUSE_ABSOLUTE","features":[378]},{"name":"DI8DEVTYPEMOUSE_FINGERSTICK","features":[378]},{"name":"DI8DEVTYPEMOUSE_TOUCHPAD","features":[378]},{"name":"DI8DEVTYPEMOUSE_TRACKBALL","features":[378]},{"name":"DI8DEVTYPEMOUSE_TRADITIONAL","features":[378]},{"name":"DI8DEVTYPEMOUSE_UNKNOWN","features":[378]},{"name":"DI8DEVTYPEREMOTE_UNKNOWN","features":[378]},{"name":"DI8DEVTYPESCREENPTR_LIGHTGUN","features":[378]},{"name":"DI8DEVTYPESCREENPTR_LIGHTPEN","features":[378]},{"name":"DI8DEVTYPESCREENPTR_TOUCH","features":[378]},{"name":"DI8DEVTYPESCREENPTR_UNKNOWN","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_2NDHANDCONTROLLER","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_COMBINEDPEDALS","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_DUALPEDALS","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_HANDTRACKER","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_HEADTRACKER","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_RUDDERPEDALS","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTER","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_SHIFTSTICKGATE","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_SPLITTHROTTLE","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_THREEPEDALS","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_THROTTLE","features":[378]},{"name":"DI8DEVTYPESUPPLEMENTAL_UNKNOWN","features":[378]},{"name":"DI8DEVTYPE_1STPERSON","features":[378]},{"name":"DI8DEVTYPE_DEVICE","features":[378]},{"name":"DI8DEVTYPE_DEVICECTRL","features":[378]},{"name":"DI8DEVTYPE_DRIVING","features":[378]},{"name":"DI8DEVTYPE_FLIGHT","features":[378]},{"name":"DI8DEVTYPE_GAMEPAD","features":[378]},{"name":"DI8DEVTYPE_JOYSTICK","features":[378]},{"name":"DI8DEVTYPE_KEYBOARD","features":[378]},{"name":"DI8DEVTYPE_LIMITEDGAMESUBTYPE","features":[378]},{"name":"DI8DEVTYPE_MOUSE","features":[378]},{"name":"DI8DEVTYPE_REMOTE","features":[378]},{"name":"DI8DEVTYPE_SCREENPOINTER","features":[378]},{"name":"DI8DEVTYPE_SUPPLEMENTAL","features":[378]},{"name":"DIACTIONA","features":[378]},{"name":"DIACTIONFORMATA","features":[378,305]},{"name":"DIACTIONFORMATW","features":[378,305]},{"name":"DIACTIONW","features":[378]},{"name":"DIAFTS_NEWDEVICEHIGH","features":[378]},{"name":"DIAFTS_NEWDEVICELOW","features":[378]},{"name":"DIAFTS_UNUSEDDEVICEHIGH","features":[378]},{"name":"DIAFTS_UNUSEDDEVICELOW","features":[378]},{"name":"DIAH_APPREQUESTED","features":[378]},{"name":"DIAH_DEFAULT","features":[378]},{"name":"DIAH_ERROR","features":[378]},{"name":"DIAH_HWAPP","features":[378]},{"name":"DIAH_HWDEFAULT","features":[378]},{"name":"DIAH_UNMAPPED","features":[378]},{"name":"DIAH_USERCONFIG","features":[378]},{"name":"DIAPPIDFLAG_NOSIZE","features":[378]},{"name":"DIAPPIDFLAG_NOTIME","features":[378]},{"name":"DIAXIS_2DCONTROL_INOUT","features":[378]},{"name":"DIAXIS_2DCONTROL_LATERAL","features":[378]},{"name":"DIAXIS_2DCONTROL_MOVE","features":[378]},{"name":"DIAXIS_2DCONTROL_ROTATEZ","features":[378]},{"name":"DIAXIS_3DCONTROL_INOUT","features":[378]},{"name":"DIAXIS_3DCONTROL_LATERAL","features":[378]},{"name":"DIAXIS_3DCONTROL_MOVE","features":[378]},{"name":"DIAXIS_3DCONTROL_ROTATEX","features":[378]},{"name":"DIAXIS_3DCONTROL_ROTATEY","features":[378]},{"name":"DIAXIS_3DCONTROL_ROTATEZ","features":[378]},{"name":"DIAXIS_ANY_1","features":[378]},{"name":"DIAXIS_ANY_2","features":[378]},{"name":"DIAXIS_ANY_3","features":[378]},{"name":"DIAXIS_ANY_4","features":[378]},{"name":"DIAXIS_ANY_A_1","features":[378]},{"name":"DIAXIS_ANY_A_2","features":[378]},{"name":"DIAXIS_ANY_B_1","features":[378]},{"name":"DIAXIS_ANY_B_2","features":[378]},{"name":"DIAXIS_ANY_C_1","features":[378]},{"name":"DIAXIS_ANY_C_2","features":[378]},{"name":"DIAXIS_ANY_R_1","features":[378]},{"name":"DIAXIS_ANY_R_2","features":[378]},{"name":"DIAXIS_ANY_S_1","features":[378]},{"name":"DIAXIS_ANY_S_2","features":[378]},{"name":"DIAXIS_ANY_U_1","features":[378]},{"name":"DIAXIS_ANY_U_2","features":[378]},{"name":"DIAXIS_ANY_V_1","features":[378]},{"name":"DIAXIS_ANY_V_2","features":[378]},{"name":"DIAXIS_ANY_X_1","features":[378]},{"name":"DIAXIS_ANY_X_2","features":[378]},{"name":"DIAXIS_ANY_Y_1","features":[378]},{"name":"DIAXIS_ANY_Y_2","features":[378]},{"name":"DIAXIS_ANY_Z_1","features":[378]},{"name":"DIAXIS_ANY_Z_2","features":[378]},{"name":"DIAXIS_ARCADEP_LATERAL","features":[378]},{"name":"DIAXIS_ARCADEP_MOVE","features":[378]},{"name":"DIAXIS_ARCADES_LATERAL","features":[378]},{"name":"DIAXIS_ARCADES_MOVE","features":[378]},{"name":"DIAXIS_BASEBALLB_LATERAL","features":[378]},{"name":"DIAXIS_BASEBALLB_MOVE","features":[378]},{"name":"DIAXIS_BASEBALLF_LATERAL","features":[378]},{"name":"DIAXIS_BASEBALLF_MOVE","features":[378]},{"name":"DIAXIS_BASEBALLP_LATERAL","features":[378]},{"name":"DIAXIS_BASEBALLP_MOVE","features":[378]},{"name":"DIAXIS_BBALLD_LATERAL","features":[378]},{"name":"DIAXIS_BBALLD_MOVE","features":[378]},{"name":"DIAXIS_BBALLO_LATERAL","features":[378]},{"name":"DIAXIS_BBALLO_MOVE","features":[378]},{"name":"DIAXIS_BIKINGM_BRAKE","features":[378]},{"name":"DIAXIS_BIKINGM_PEDAL","features":[378]},{"name":"DIAXIS_BIKINGM_TURN","features":[378]},{"name":"DIAXIS_BROWSER_LATERAL","features":[378]},{"name":"DIAXIS_BROWSER_MOVE","features":[378]},{"name":"DIAXIS_BROWSER_VIEW","features":[378]},{"name":"DIAXIS_CADF_INOUT","features":[378]},{"name":"DIAXIS_CADF_LATERAL","features":[378]},{"name":"DIAXIS_CADF_MOVE","features":[378]},{"name":"DIAXIS_CADF_ROTATEX","features":[378]},{"name":"DIAXIS_CADF_ROTATEY","features":[378]},{"name":"DIAXIS_CADF_ROTATEZ","features":[378]},{"name":"DIAXIS_CADM_INOUT","features":[378]},{"name":"DIAXIS_CADM_LATERAL","features":[378]},{"name":"DIAXIS_CADM_MOVE","features":[378]},{"name":"DIAXIS_CADM_ROTATEX","features":[378]},{"name":"DIAXIS_CADM_ROTATEY","features":[378]},{"name":"DIAXIS_CADM_ROTATEZ","features":[378]},{"name":"DIAXIS_DRIVINGC_ACCELERATE","features":[378]},{"name":"DIAXIS_DRIVINGC_ACCEL_AND_BRAKE","features":[378]},{"name":"DIAXIS_DRIVINGC_BRAKE","features":[378]},{"name":"DIAXIS_DRIVINGC_STEER","features":[378]},{"name":"DIAXIS_DRIVINGR_ACCELERATE","features":[378]},{"name":"DIAXIS_DRIVINGR_ACCEL_AND_BRAKE","features":[378]},{"name":"DIAXIS_DRIVINGR_BRAKE","features":[378]},{"name":"DIAXIS_DRIVINGR_STEER","features":[378]},{"name":"DIAXIS_DRIVINGT_ACCELERATE","features":[378]},{"name":"DIAXIS_DRIVINGT_ACCEL_AND_BRAKE","features":[378]},{"name":"DIAXIS_DRIVINGT_BARREL","features":[378]},{"name":"DIAXIS_DRIVINGT_BRAKE","features":[378]},{"name":"DIAXIS_DRIVINGT_ROTATE","features":[378]},{"name":"DIAXIS_DRIVINGT_STEER","features":[378]},{"name":"DIAXIS_FIGHTINGH_LATERAL","features":[378]},{"name":"DIAXIS_FIGHTINGH_MOVE","features":[378]},{"name":"DIAXIS_FIGHTINGH_ROTATE","features":[378]},{"name":"DIAXIS_FISHING_LATERAL","features":[378]},{"name":"DIAXIS_FISHING_MOVE","features":[378]},{"name":"DIAXIS_FISHING_ROTATE","features":[378]},{"name":"DIAXIS_FLYINGC_BANK","features":[378]},{"name":"DIAXIS_FLYINGC_BRAKE","features":[378]},{"name":"DIAXIS_FLYINGC_FLAPS","features":[378]},{"name":"DIAXIS_FLYINGC_PITCH","features":[378]},{"name":"DIAXIS_FLYINGC_RUDDER","features":[378]},{"name":"DIAXIS_FLYINGC_THROTTLE","features":[378]},{"name":"DIAXIS_FLYINGH_BANK","features":[378]},{"name":"DIAXIS_FLYINGH_COLLECTIVE","features":[378]},{"name":"DIAXIS_FLYINGH_PITCH","features":[378]},{"name":"DIAXIS_FLYINGH_THROTTLE","features":[378]},{"name":"DIAXIS_FLYINGH_TORQUE","features":[378]},{"name":"DIAXIS_FLYINGM_BANK","features":[378]},{"name":"DIAXIS_FLYINGM_BRAKE","features":[378]},{"name":"DIAXIS_FLYINGM_FLAPS","features":[378]},{"name":"DIAXIS_FLYINGM_PITCH","features":[378]},{"name":"DIAXIS_FLYINGM_RUDDER","features":[378]},{"name":"DIAXIS_FLYINGM_THROTTLE","features":[378]},{"name":"DIAXIS_FOOTBALLD_LATERAL","features":[378]},{"name":"DIAXIS_FOOTBALLD_MOVE","features":[378]},{"name":"DIAXIS_FOOTBALLO_LATERAL","features":[378]},{"name":"DIAXIS_FOOTBALLO_MOVE","features":[378]},{"name":"DIAXIS_FOOTBALLQ_LATERAL","features":[378]},{"name":"DIAXIS_FOOTBALLQ_MOVE","features":[378]},{"name":"DIAXIS_FPS_LOOKUPDOWN","features":[378]},{"name":"DIAXIS_FPS_MOVE","features":[378]},{"name":"DIAXIS_FPS_ROTATE","features":[378]},{"name":"DIAXIS_FPS_SIDESTEP","features":[378]},{"name":"DIAXIS_GOLF_LATERAL","features":[378]},{"name":"DIAXIS_GOLF_MOVE","features":[378]},{"name":"DIAXIS_HOCKEYD_LATERAL","features":[378]},{"name":"DIAXIS_HOCKEYD_MOVE","features":[378]},{"name":"DIAXIS_HOCKEYG_LATERAL","features":[378]},{"name":"DIAXIS_HOCKEYG_MOVE","features":[378]},{"name":"DIAXIS_HOCKEYO_LATERAL","features":[378]},{"name":"DIAXIS_HOCKEYO_MOVE","features":[378]},{"name":"DIAXIS_HUNTING_LATERAL","features":[378]},{"name":"DIAXIS_HUNTING_MOVE","features":[378]},{"name":"DIAXIS_HUNTING_ROTATE","features":[378]},{"name":"DIAXIS_MECHA_ROTATE","features":[378]},{"name":"DIAXIS_MECHA_STEER","features":[378]},{"name":"DIAXIS_MECHA_THROTTLE","features":[378]},{"name":"DIAXIS_MECHA_TORSO","features":[378]},{"name":"DIAXIS_RACQUET_LATERAL","features":[378]},{"name":"DIAXIS_RACQUET_MOVE","features":[378]},{"name":"DIAXIS_REMOTE_SLIDER","features":[378]},{"name":"DIAXIS_REMOTE_SLIDER2","features":[378]},{"name":"DIAXIS_SKIING_SPEED","features":[378]},{"name":"DIAXIS_SKIING_TURN","features":[378]},{"name":"DIAXIS_SOCCERD_LATERAL","features":[378]},{"name":"DIAXIS_SOCCERD_MOVE","features":[378]},{"name":"DIAXIS_SOCCERO_BEND","features":[378]},{"name":"DIAXIS_SOCCERO_LATERAL","features":[378]},{"name":"DIAXIS_SOCCERO_MOVE","features":[378]},{"name":"DIAXIS_SPACESIM_CLIMB","features":[378]},{"name":"DIAXIS_SPACESIM_LATERAL","features":[378]},{"name":"DIAXIS_SPACESIM_MOVE","features":[378]},{"name":"DIAXIS_SPACESIM_ROTATE","features":[378]},{"name":"DIAXIS_SPACESIM_THROTTLE","features":[378]},{"name":"DIAXIS_STRATEGYR_LATERAL","features":[378]},{"name":"DIAXIS_STRATEGYR_MOVE","features":[378]},{"name":"DIAXIS_STRATEGYR_ROTATE","features":[378]},{"name":"DIAXIS_STRATEGYT_LATERAL","features":[378]},{"name":"DIAXIS_STRATEGYT_MOVE","features":[378]},{"name":"DIAXIS_TPS_MOVE","features":[378]},{"name":"DIAXIS_TPS_STEP","features":[378]},{"name":"DIAXIS_TPS_TURN","features":[378]},{"name":"DIA_APPFIXED","features":[378]},{"name":"DIA_APPMAPPED","features":[378]},{"name":"DIA_APPNOMAP","features":[378]},{"name":"DIA_FORCEFEEDBACK","features":[378]},{"name":"DIA_NORANGE","features":[378]},{"name":"DIBUTTON_2DCONTROL_DEVICE","features":[378]},{"name":"DIBUTTON_2DCONTROL_DISPLAY","features":[378]},{"name":"DIBUTTON_2DCONTROL_MENU","features":[378]},{"name":"DIBUTTON_2DCONTROL_PAUSE","features":[378]},{"name":"DIBUTTON_2DCONTROL_SELECT","features":[378]},{"name":"DIBUTTON_2DCONTROL_SPECIAL","features":[378]},{"name":"DIBUTTON_2DCONTROL_SPECIAL1","features":[378]},{"name":"DIBUTTON_2DCONTROL_SPECIAL2","features":[378]},{"name":"DIBUTTON_3DCONTROL_DEVICE","features":[378]},{"name":"DIBUTTON_3DCONTROL_DISPLAY","features":[378]},{"name":"DIBUTTON_3DCONTROL_MENU","features":[378]},{"name":"DIBUTTON_3DCONTROL_PAUSE","features":[378]},{"name":"DIBUTTON_3DCONTROL_SELECT","features":[378]},{"name":"DIBUTTON_3DCONTROL_SPECIAL","features":[378]},{"name":"DIBUTTON_3DCONTROL_SPECIAL1","features":[378]},{"name":"DIBUTTON_3DCONTROL_SPECIAL2","features":[378]},{"name":"DIBUTTON_ARCADEP_BACK_LINK","features":[378]},{"name":"DIBUTTON_ARCADEP_CROUCH","features":[378]},{"name":"DIBUTTON_ARCADEP_DEVICE","features":[378]},{"name":"DIBUTTON_ARCADEP_FIRE","features":[378]},{"name":"DIBUTTON_ARCADEP_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_ARCADEP_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_ARCADEP_JUMP","features":[378]},{"name":"DIBUTTON_ARCADEP_LEFT_LINK","features":[378]},{"name":"DIBUTTON_ARCADEP_MENU","features":[378]},{"name":"DIBUTTON_ARCADEP_PAUSE","features":[378]},{"name":"DIBUTTON_ARCADEP_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_ARCADEP_SELECT","features":[378]},{"name":"DIBUTTON_ARCADEP_SPECIAL","features":[378]},{"name":"DIBUTTON_ARCADEP_VIEW_DOWN_LINK","features":[378]},{"name":"DIBUTTON_ARCADEP_VIEW_LEFT_LINK","features":[378]},{"name":"DIBUTTON_ARCADEP_VIEW_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_ARCADEP_VIEW_UP_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_ATTACK","features":[378]},{"name":"DIBUTTON_ARCADES_BACK_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_CARRY","features":[378]},{"name":"DIBUTTON_ARCADES_DEVICE","features":[378]},{"name":"DIBUTTON_ARCADES_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_LEFT_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_MENU","features":[378]},{"name":"DIBUTTON_ARCADES_PAUSE","features":[378]},{"name":"DIBUTTON_ARCADES_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_SELECT","features":[378]},{"name":"DIBUTTON_ARCADES_SPECIAL","features":[378]},{"name":"DIBUTTON_ARCADES_THROW","features":[378]},{"name":"DIBUTTON_ARCADES_VIEW_DOWN_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_VIEW_LEFT_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_VIEW_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_ARCADES_VIEW_UP_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLB_BACK_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLB_BOX","features":[378]},{"name":"DIBUTTON_BASEBALLB_BUNT","features":[378]},{"name":"DIBUTTON_BASEBALLB_BURST","features":[378]},{"name":"DIBUTTON_BASEBALLB_CONTACT","features":[378]},{"name":"DIBUTTON_BASEBALLB_DEVICE","features":[378]},{"name":"DIBUTTON_BASEBALLB_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLB_LEFT_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLB_MENU","features":[378]},{"name":"DIBUTTON_BASEBALLB_NORMAL","features":[378]},{"name":"DIBUTTON_BASEBALLB_NOSTEAL","features":[378]},{"name":"DIBUTTON_BASEBALLB_PAUSE","features":[378]},{"name":"DIBUTTON_BASEBALLB_POWER","features":[378]},{"name":"DIBUTTON_BASEBALLB_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLB_SELECT","features":[378]},{"name":"DIBUTTON_BASEBALLB_SLIDE","features":[378]},{"name":"DIBUTTON_BASEBALLB_STEAL","features":[378]},{"name":"DIBUTTON_BASEBALLF_AIM_LEFT_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLF_AIM_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLF_BACK_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLF_BURST","features":[378]},{"name":"DIBUTTON_BASEBALLF_DEVICE","features":[378]},{"name":"DIBUTTON_BASEBALLF_DIVE","features":[378]},{"name":"DIBUTTON_BASEBALLF_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLF_JUMP","features":[378]},{"name":"DIBUTTON_BASEBALLF_MENU","features":[378]},{"name":"DIBUTTON_BASEBALLF_NEAREST","features":[378]},{"name":"DIBUTTON_BASEBALLF_PAUSE","features":[378]},{"name":"DIBUTTON_BASEBALLF_SHIFTIN","features":[378]},{"name":"DIBUTTON_BASEBALLF_SHIFTOUT","features":[378]},{"name":"DIBUTTON_BASEBALLF_THROW1","features":[378]},{"name":"DIBUTTON_BASEBALLF_THROW2","features":[378]},{"name":"DIBUTTON_BASEBALLP_BACK_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLP_BASE","features":[378]},{"name":"DIBUTTON_BASEBALLP_DEVICE","features":[378]},{"name":"DIBUTTON_BASEBALLP_FAKE","features":[378]},{"name":"DIBUTTON_BASEBALLP_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLP_LEFT_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLP_LOOK","features":[378]},{"name":"DIBUTTON_BASEBALLP_MENU","features":[378]},{"name":"DIBUTTON_BASEBALLP_PAUSE","features":[378]},{"name":"DIBUTTON_BASEBALLP_PITCH","features":[378]},{"name":"DIBUTTON_BASEBALLP_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_BASEBALLP_SELECT","features":[378]},{"name":"DIBUTTON_BASEBALLP_THROW","features":[378]},{"name":"DIBUTTON_BASEBALLP_WALK","features":[378]},{"name":"DIBUTTON_BBALLD_BACK_LINK","features":[378]},{"name":"DIBUTTON_BBALLD_BURST","features":[378]},{"name":"DIBUTTON_BBALLD_DEVICE","features":[378]},{"name":"DIBUTTON_BBALLD_FAKE","features":[378]},{"name":"DIBUTTON_BBALLD_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_BBALLD_JUMP","features":[378]},{"name":"DIBUTTON_BBALLD_LEFT_LINK","features":[378]},{"name":"DIBUTTON_BBALLD_MENU","features":[378]},{"name":"DIBUTTON_BBALLD_PAUSE","features":[378]},{"name":"DIBUTTON_BBALLD_PLAY","features":[378]},{"name":"DIBUTTON_BBALLD_PLAYER","features":[378]},{"name":"DIBUTTON_BBALLD_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_BBALLD_SPECIAL","features":[378]},{"name":"DIBUTTON_BBALLD_STEAL","features":[378]},{"name":"DIBUTTON_BBALLD_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_BBALLD_TIMEOUT","features":[378]},{"name":"DIBUTTON_BBALLO_BACK_LINK","features":[378]},{"name":"DIBUTTON_BBALLO_BURST","features":[378]},{"name":"DIBUTTON_BBALLO_CALL","features":[378]},{"name":"DIBUTTON_BBALLO_DEVICE","features":[378]},{"name":"DIBUTTON_BBALLO_DUNK","features":[378]},{"name":"DIBUTTON_BBALLO_FAKE","features":[378]},{"name":"DIBUTTON_BBALLO_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_BBALLO_JAB","features":[378]},{"name":"DIBUTTON_BBALLO_LEFT_LINK","features":[378]},{"name":"DIBUTTON_BBALLO_MENU","features":[378]},{"name":"DIBUTTON_BBALLO_PASS","features":[378]},{"name":"DIBUTTON_BBALLO_PAUSE","features":[378]},{"name":"DIBUTTON_BBALLO_PLAY","features":[378]},{"name":"DIBUTTON_BBALLO_PLAYER","features":[378]},{"name":"DIBUTTON_BBALLO_POST","features":[378]},{"name":"DIBUTTON_BBALLO_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_BBALLO_SCREEN","features":[378]},{"name":"DIBUTTON_BBALLO_SHOOT","features":[378]},{"name":"DIBUTTON_BBALLO_SPECIAL","features":[378]},{"name":"DIBUTTON_BBALLO_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_BBALLO_TIMEOUT","features":[378]},{"name":"DIBUTTON_BIKINGM_BRAKE_BUTTON_LINK","features":[378]},{"name":"DIBUTTON_BIKINGM_CAMERA","features":[378]},{"name":"DIBUTTON_BIKINGM_DEVICE","features":[378]},{"name":"DIBUTTON_BIKINGM_FASTER_LINK","features":[378]},{"name":"DIBUTTON_BIKINGM_JUMP","features":[378]},{"name":"DIBUTTON_BIKINGM_LEFT_LINK","features":[378]},{"name":"DIBUTTON_BIKINGM_MENU","features":[378]},{"name":"DIBUTTON_BIKINGM_PAUSE","features":[378]},{"name":"DIBUTTON_BIKINGM_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_BIKINGM_SELECT","features":[378]},{"name":"DIBUTTON_BIKINGM_SLOWER_LINK","features":[378]},{"name":"DIBUTTON_BIKINGM_SPECIAL1","features":[378]},{"name":"DIBUTTON_BIKINGM_SPECIAL2","features":[378]},{"name":"DIBUTTON_BIKINGM_ZOOM","features":[378]},{"name":"DIBUTTON_BROWSER_DEVICE","features":[378]},{"name":"DIBUTTON_BROWSER_FAVORITES","features":[378]},{"name":"DIBUTTON_BROWSER_HISTORY","features":[378]},{"name":"DIBUTTON_BROWSER_HOME","features":[378]},{"name":"DIBUTTON_BROWSER_MENU","features":[378]},{"name":"DIBUTTON_BROWSER_NEXT","features":[378]},{"name":"DIBUTTON_BROWSER_PAUSE","features":[378]},{"name":"DIBUTTON_BROWSER_PREVIOUS","features":[378]},{"name":"DIBUTTON_BROWSER_PRINT","features":[378]},{"name":"DIBUTTON_BROWSER_REFRESH","features":[378]},{"name":"DIBUTTON_BROWSER_SEARCH","features":[378]},{"name":"DIBUTTON_BROWSER_SELECT","features":[378]},{"name":"DIBUTTON_BROWSER_STOP","features":[378]},{"name":"DIBUTTON_CADF_DEVICE","features":[378]},{"name":"DIBUTTON_CADF_DISPLAY","features":[378]},{"name":"DIBUTTON_CADF_MENU","features":[378]},{"name":"DIBUTTON_CADF_PAUSE","features":[378]},{"name":"DIBUTTON_CADF_SELECT","features":[378]},{"name":"DIBUTTON_CADF_SPECIAL","features":[378]},{"name":"DIBUTTON_CADF_SPECIAL1","features":[378]},{"name":"DIBUTTON_CADF_SPECIAL2","features":[378]},{"name":"DIBUTTON_CADM_DEVICE","features":[378]},{"name":"DIBUTTON_CADM_DISPLAY","features":[378]},{"name":"DIBUTTON_CADM_MENU","features":[378]},{"name":"DIBUTTON_CADM_PAUSE","features":[378]},{"name":"DIBUTTON_CADM_SELECT","features":[378]},{"name":"DIBUTTON_CADM_SPECIAL","features":[378]},{"name":"DIBUTTON_CADM_SPECIAL1","features":[378]},{"name":"DIBUTTON_CADM_SPECIAL2","features":[378]},{"name":"DIBUTTON_DRIVINGC_ACCELERATE_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGC_AIDS","features":[378]},{"name":"DIBUTTON_DRIVINGC_BRAKE","features":[378]},{"name":"DIBUTTON_DRIVINGC_DASHBOARD","features":[378]},{"name":"DIBUTTON_DRIVINGC_DEVICE","features":[378]},{"name":"DIBUTTON_DRIVINGC_FIRE","features":[378]},{"name":"DIBUTTON_DRIVINGC_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_DRIVINGC_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGC_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGC_MENU","features":[378]},{"name":"DIBUTTON_DRIVINGC_PAUSE","features":[378]},{"name":"DIBUTTON_DRIVINGC_SHIFTDOWN","features":[378]},{"name":"DIBUTTON_DRIVINGC_SHIFTUP","features":[378]},{"name":"DIBUTTON_DRIVINGC_STEER_LEFT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGC_STEER_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGC_TARGET","features":[378]},{"name":"DIBUTTON_DRIVINGC_WEAPONS","features":[378]},{"name":"DIBUTTON_DRIVINGR_ACCELERATE_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGR_AIDS","features":[378]},{"name":"DIBUTTON_DRIVINGR_BOOST","features":[378]},{"name":"DIBUTTON_DRIVINGR_BRAKE","features":[378]},{"name":"DIBUTTON_DRIVINGR_DASHBOARD","features":[378]},{"name":"DIBUTTON_DRIVINGR_DEVICE","features":[378]},{"name":"DIBUTTON_DRIVINGR_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGR_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGR_MAP","features":[378]},{"name":"DIBUTTON_DRIVINGR_MENU","features":[378]},{"name":"DIBUTTON_DRIVINGR_PAUSE","features":[378]},{"name":"DIBUTTON_DRIVINGR_PIT","features":[378]},{"name":"DIBUTTON_DRIVINGR_SHIFTDOWN","features":[378]},{"name":"DIBUTTON_DRIVINGR_SHIFTUP","features":[378]},{"name":"DIBUTTON_DRIVINGR_STEER_LEFT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGR_STEER_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGR_VIEW","features":[378]},{"name":"DIBUTTON_DRIVINGT_ACCELERATE_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_BARREL_DOWN_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_BARREL_UP_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_BRAKE","features":[378]},{"name":"DIBUTTON_DRIVINGT_DASHBOARD","features":[378]},{"name":"DIBUTTON_DRIVINGT_DEVICE","features":[378]},{"name":"DIBUTTON_DRIVINGT_FIRE","features":[378]},{"name":"DIBUTTON_DRIVINGT_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_DRIVINGT_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_MENU","features":[378]},{"name":"DIBUTTON_DRIVINGT_PAUSE","features":[378]},{"name":"DIBUTTON_DRIVINGT_ROTATE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_ROTATE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_STEER_LEFT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_STEER_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_DRIVINGT_TARGET","features":[378]},{"name":"DIBUTTON_DRIVINGT_VIEW","features":[378]},{"name":"DIBUTTON_DRIVINGT_WEAPONS","features":[378]},{"name":"DIBUTTON_FIGHTINGH_BACKWARD_LINK","features":[378]},{"name":"DIBUTTON_FIGHTINGH_BLOCK","features":[378]},{"name":"DIBUTTON_FIGHTINGH_CROUCH","features":[378]},{"name":"DIBUTTON_FIGHTINGH_DEVICE","features":[378]},{"name":"DIBUTTON_FIGHTINGH_DISPLAY","features":[378]},{"name":"DIBUTTON_FIGHTINGH_DODGE","features":[378]},{"name":"DIBUTTON_FIGHTINGH_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_FIGHTINGH_JUMP","features":[378]},{"name":"DIBUTTON_FIGHTINGH_KICK","features":[378]},{"name":"DIBUTTON_FIGHTINGH_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FIGHTINGH_MENU","features":[378]},{"name":"DIBUTTON_FIGHTINGH_PAUSE","features":[378]},{"name":"DIBUTTON_FIGHTINGH_PUNCH","features":[378]},{"name":"DIBUTTON_FIGHTINGH_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FIGHTINGH_SELECT","features":[378]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL1","features":[378]},{"name":"DIBUTTON_FIGHTINGH_SPECIAL2","features":[378]},{"name":"DIBUTTON_FISHING_BACK_LINK","features":[378]},{"name":"DIBUTTON_FISHING_BAIT","features":[378]},{"name":"DIBUTTON_FISHING_BINOCULAR","features":[378]},{"name":"DIBUTTON_FISHING_CAST","features":[378]},{"name":"DIBUTTON_FISHING_CROUCH","features":[378]},{"name":"DIBUTTON_FISHING_DEVICE","features":[378]},{"name":"DIBUTTON_FISHING_DISPLAY","features":[378]},{"name":"DIBUTTON_FISHING_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_FISHING_JUMP","features":[378]},{"name":"DIBUTTON_FISHING_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FISHING_MAP","features":[378]},{"name":"DIBUTTON_FISHING_MENU","features":[378]},{"name":"DIBUTTON_FISHING_PAUSE","features":[378]},{"name":"DIBUTTON_FISHING_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FISHING_ROTATE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FISHING_ROTATE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FISHING_TYPE","features":[378]},{"name":"DIBUTTON_FLYINGC_BRAKE_LINK","features":[378]},{"name":"DIBUTTON_FLYINGC_DEVICE","features":[378]},{"name":"DIBUTTON_FLYINGC_DISPLAY","features":[378]},{"name":"DIBUTTON_FLYINGC_FASTER_LINK","features":[378]},{"name":"DIBUTTON_FLYINGC_FLAPSDOWN","features":[378]},{"name":"DIBUTTON_FLYINGC_FLAPSUP","features":[378]},{"name":"DIBUTTON_FLYINGC_GEAR","features":[378]},{"name":"DIBUTTON_FLYINGC_GLANCE_DOWN_LINK","features":[378]},{"name":"DIBUTTON_FLYINGC_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FLYINGC_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FLYINGC_GLANCE_UP_LINK","features":[378]},{"name":"DIBUTTON_FLYINGC_MENU","features":[378]},{"name":"DIBUTTON_FLYINGC_PAUSE","features":[378]},{"name":"DIBUTTON_FLYINGC_SLOWER_LINK","features":[378]},{"name":"DIBUTTON_FLYINGC_VIEW","features":[378]},{"name":"DIBUTTON_FLYINGH_COUNTER","features":[378]},{"name":"DIBUTTON_FLYINGH_DEVICE","features":[378]},{"name":"DIBUTTON_FLYINGH_FASTER_LINK","features":[378]},{"name":"DIBUTTON_FLYINGH_FIRE","features":[378]},{"name":"DIBUTTON_FLYINGH_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_FLYINGH_GEAR","features":[378]},{"name":"DIBUTTON_FLYINGH_GLANCE_DOWN_LINK","features":[378]},{"name":"DIBUTTON_FLYINGH_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FLYINGH_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FLYINGH_GLANCE_UP_LINK","features":[378]},{"name":"DIBUTTON_FLYINGH_MENU","features":[378]},{"name":"DIBUTTON_FLYINGH_PAUSE","features":[378]},{"name":"DIBUTTON_FLYINGH_SLOWER_LINK","features":[378]},{"name":"DIBUTTON_FLYINGH_TARGET","features":[378]},{"name":"DIBUTTON_FLYINGH_VIEW","features":[378]},{"name":"DIBUTTON_FLYINGH_WEAPONS","features":[378]},{"name":"DIBUTTON_FLYINGM_BRAKE_LINK","features":[378]},{"name":"DIBUTTON_FLYINGM_COUNTER","features":[378]},{"name":"DIBUTTON_FLYINGM_DEVICE","features":[378]},{"name":"DIBUTTON_FLYINGM_DISPLAY","features":[378]},{"name":"DIBUTTON_FLYINGM_FASTER_LINK","features":[378]},{"name":"DIBUTTON_FLYINGM_FIRE","features":[378]},{"name":"DIBUTTON_FLYINGM_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_FLYINGM_FLAPSDOWN","features":[378]},{"name":"DIBUTTON_FLYINGM_FLAPSUP","features":[378]},{"name":"DIBUTTON_FLYINGM_GEAR","features":[378]},{"name":"DIBUTTON_FLYINGM_GLANCE_DOWN_LINK","features":[378]},{"name":"DIBUTTON_FLYINGM_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FLYINGM_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FLYINGM_GLANCE_UP_LINK","features":[378]},{"name":"DIBUTTON_FLYINGM_MENU","features":[378]},{"name":"DIBUTTON_FLYINGM_PAUSE","features":[378]},{"name":"DIBUTTON_FLYINGM_SLOWER_LINK","features":[378]},{"name":"DIBUTTON_FLYINGM_TARGET","features":[378]},{"name":"DIBUTTON_FLYINGM_VIEW","features":[378]},{"name":"DIBUTTON_FLYINGM_WEAPONS","features":[378]},{"name":"DIBUTTON_FOOTBALLD_AUDIBLE","features":[378]},{"name":"DIBUTTON_FOOTBALLD_BACK_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLD_BULLRUSH","features":[378]},{"name":"DIBUTTON_FOOTBALLD_DEVICE","features":[378]},{"name":"DIBUTTON_FOOTBALLD_FAKE","features":[378]},{"name":"DIBUTTON_FOOTBALLD_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLD_JUMP","features":[378]},{"name":"DIBUTTON_FOOTBALLD_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLD_MENU","features":[378]},{"name":"DIBUTTON_FOOTBALLD_PAUSE","features":[378]},{"name":"DIBUTTON_FOOTBALLD_PLAY","features":[378]},{"name":"DIBUTTON_FOOTBALLD_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLD_RIP","features":[378]},{"name":"DIBUTTON_FOOTBALLD_SELECT","features":[378]},{"name":"DIBUTTON_FOOTBALLD_SPIN","features":[378]},{"name":"DIBUTTON_FOOTBALLD_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_FOOTBALLD_SUPERTACKLE","features":[378]},{"name":"DIBUTTON_FOOTBALLD_SWIM","features":[378]},{"name":"DIBUTTON_FOOTBALLD_TACKLE","features":[378]},{"name":"DIBUTTON_FOOTBALLD_ZOOM","features":[378]},{"name":"DIBUTTON_FOOTBALLO_BACK_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLO_DEVICE","features":[378]},{"name":"DIBUTTON_FOOTBALLO_DIVE","features":[378]},{"name":"DIBUTTON_FOOTBALLO_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLO_JUKE","features":[378]},{"name":"DIBUTTON_FOOTBALLO_JUMP","features":[378]},{"name":"DIBUTTON_FOOTBALLO_LEFTARM","features":[378]},{"name":"DIBUTTON_FOOTBALLO_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLO_MENU","features":[378]},{"name":"DIBUTTON_FOOTBALLO_PAUSE","features":[378]},{"name":"DIBUTTON_FOOTBALLO_RIGHTARM","features":[378]},{"name":"DIBUTTON_FOOTBALLO_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLO_SHOULDER","features":[378]},{"name":"DIBUTTON_FOOTBALLO_SPIN","features":[378]},{"name":"DIBUTTON_FOOTBALLO_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_FOOTBALLO_THROW","features":[378]},{"name":"DIBUTTON_FOOTBALLO_TURBO","features":[378]},{"name":"DIBUTTON_FOOTBALLO_ZOOM","features":[378]},{"name":"DIBUTTON_FOOTBALLP_DEVICE","features":[378]},{"name":"DIBUTTON_FOOTBALLP_HELP","features":[378]},{"name":"DIBUTTON_FOOTBALLP_MENU","features":[378]},{"name":"DIBUTTON_FOOTBALLP_PAUSE","features":[378]},{"name":"DIBUTTON_FOOTBALLP_PLAY","features":[378]},{"name":"DIBUTTON_FOOTBALLP_SELECT","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_AUDIBLE","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_BACK_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_DEVICE","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_FAKE","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_FAKESNAP","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_JUMP","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_MENU","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_MOTION","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_PASS","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_PAUSE","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_SELECT","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_SLIDE","features":[378]},{"name":"DIBUTTON_FOOTBALLQ_SNAP","features":[378]},{"name":"DIBUTTON_FPS_APPLY","features":[378]},{"name":"DIBUTTON_FPS_BACKWARD_LINK","features":[378]},{"name":"DIBUTTON_FPS_CROUCH","features":[378]},{"name":"DIBUTTON_FPS_DEVICE","features":[378]},{"name":"DIBUTTON_FPS_DISPLAY","features":[378]},{"name":"DIBUTTON_FPS_DODGE","features":[378]},{"name":"DIBUTTON_FPS_FIRE","features":[378]},{"name":"DIBUTTON_FPS_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_FPS_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_FPS_GLANCEL","features":[378]},{"name":"DIBUTTON_FPS_GLANCER","features":[378]},{"name":"DIBUTTON_FPS_GLANCE_DOWN_LINK","features":[378]},{"name":"DIBUTTON_FPS_GLANCE_UP_LINK","features":[378]},{"name":"DIBUTTON_FPS_JUMP","features":[378]},{"name":"DIBUTTON_FPS_MENU","features":[378]},{"name":"DIBUTTON_FPS_PAUSE","features":[378]},{"name":"DIBUTTON_FPS_ROTATE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FPS_ROTATE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FPS_SELECT","features":[378]},{"name":"DIBUTTON_FPS_STEP_LEFT_LINK","features":[378]},{"name":"DIBUTTON_FPS_STEP_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_FPS_STRAFE","features":[378]},{"name":"DIBUTTON_FPS_WEAPONS","features":[378]},{"name":"DIBUTTON_GOLF_BACK_LINK","features":[378]},{"name":"DIBUTTON_GOLF_DEVICE","features":[378]},{"name":"DIBUTTON_GOLF_DOWN","features":[378]},{"name":"DIBUTTON_GOLF_FLYBY","features":[378]},{"name":"DIBUTTON_GOLF_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_GOLF_LEFT_LINK","features":[378]},{"name":"DIBUTTON_GOLF_MENU","features":[378]},{"name":"DIBUTTON_GOLF_PAUSE","features":[378]},{"name":"DIBUTTON_GOLF_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_GOLF_SELECT","features":[378]},{"name":"DIBUTTON_GOLF_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_GOLF_SWING","features":[378]},{"name":"DIBUTTON_GOLF_TERRAIN","features":[378]},{"name":"DIBUTTON_GOLF_TIMEOUT","features":[378]},{"name":"DIBUTTON_GOLF_UP","features":[378]},{"name":"DIBUTTON_GOLF_ZOOM","features":[378]},{"name":"DIBUTTON_HOCKEYD_BACK_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYD_BLOCK","features":[378]},{"name":"DIBUTTON_HOCKEYD_BURST","features":[378]},{"name":"DIBUTTON_HOCKEYD_DEVICE","features":[378]},{"name":"DIBUTTON_HOCKEYD_FAKE","features":[378]},{"name":"DIBUTTON_HOCKEYD_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYD_LEFT_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYD_MENU","features":[378]},{"name":"DIBUTTON_HOCKEYD_PAUSE","features":[378]},{"name":"DIBUTTON_HOCKEYD_PLAYER","features":[378]},{"name":"DIBUTTON_HOCKEYD_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYD_STEAL","features":[378]},{"name":"DIBUTTON_HOCKEYD_STRATEGY","features":[378]},{"name":"DIBUTTON_HOCKEYD_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_HOCKEYD_TIMEOUT","features":[378]},{"name":"DIBUTTON_HOCKEYD_ZOOM","features":[378]},{"name":"DIBUTTON_HOCKEYG_BACK_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYG_BLOCK","features":[378]},{"name":"DIBUTTON_HOCKEYG_DEVICE","features":[378]},{"name":"DIBUTTON_HOCKEYG_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYG_LEFT_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYG_MENU","features":[378]},{"name":"DIBUTTON_HOCKEYG_PASS","features":[378]},{"name":"DIBUTTON_HOCKEYG_PAUSE","features":[378]},{"name":"DIBUTTON_HOCKEYG_POKE","features":[378]},{"name":"DIBUTTON_HOCKEYG_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYG_STEAL","features":[378]},{"name":"DIBUTTON_HOCKEYG_STRATEGY","features":[378]},{"name":"DIBUTTON_HOCKEYG_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_HOCKEYG_TIMEOUT","features":[378]},{"name":"DIBUTTON_HOCKEYG_ZOOM","features":[378]},{"name":"DIBUTTON_HOCKEYO_BACK_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYO_BURST","features":[378]},{"name":"DIBUTTON_HOCKEYO_DEVICE","features":[378]},{"name":"DIBUTTON_HOCKEYO_FAKE","features":[378]},{"name":"DIBUTTON_HOCKEYO_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYO_LEFT_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYO_MENU","features":[378]},{"name":"DIBUTTON_HOCKEYO_PASS","features":[378]},{"name":"DIBUTTON_HOCKEYO_PAUSE","features":[378]},{"name":"DIBUTTON_HOCKEYO_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_HOCKEYO_SHOOT","features":[378]},{"name":"DIBUTTON_HOCKEYO_SPECIAL","features":[378]},{"name":"DIBUTTON_HOCKEYO_STRATEGY","features":[378]},{"name":"DIBUTTON_HOCKEYO_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_HOCKEYO_TIMEOUT","features":[378]},{"name":"DIBUTTON_HOCKEYO_ZOOM","features":[378]},{"name":"DIBUTTON_HUNTING_AIM","features":[378]},{"name":"DIBUTTON_HUNTING_BACK_LINK","features":[378]},{"name":"DIBUTTON_HUNTING_BINOCULAR","features":[378]},{"name":"DIBUTTON_HUNTING_CALL","features":[378]},{"name":"DIBUTTON_HUNTING_CROUCH","features":[378]},{"name":"DIBUTTON_HUNTING_DEVICE","features":[378]},{"name":"DIBUTTON_HUNTING_DISPLAY","features":[378]},{"name":"DIBUTTON_HUNTING_FIRE","features":[378]},{"name":"DIBUTTON_HUNTING_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_HUNTING_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_HUNTING_JUMP","features":[378]},{"name":"DIBUTTON_HUNTING_LEFT_LINK","features":[378]},{"name":"DIBUTTON_HUNTING_MAP","features":[378]},{"name":"DIBUTTON_HUNTING_MENU","features":[378]},{"name":"DIBUTTON_HUNTING_PAUSE","features":[378]},{"name":"DIBUTTON_HUNTING_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_HUNTING_ROTATE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_HUNTING_ROTATE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_HUNTING_SPECIAL","features":[378]},{"name":"DIBUTTON_HUNTING_WEAPON","features":[378]},{"name":"DIBUTTON_MECHA_BACK_LINK","features":[378]},{"name":"DIBUTTON_MECHA_CENTER","features":[378]},{"name":"DIBUTTON_MECHA_DEVICE","features":[378]},{"name":"DIBUTTON_MECHA_FASTER_LINK","features":[378]},{"name":"DIBUTTON_MECHA_FIRE","features":[378]},{"name":"DIBUTTON_MECHA_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_MECHA_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_MECHA_JUMP","features":[378]},{"name":"DIBUTTON_MECHA_LEFT_LINK","features":[378]},{"name":"DIBUTTON_MECHA_MENU","features":[378]},{"name":"DIBUTTON_MECHA_PAUSE","features":[378]},{"name":"DIBUTTON_MECHA_REVERSE","features":[378]},{"name":"DIBUTTON_MECHA_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_MECHA_ROTATE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_MECHA_ROTATE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_MECHA_SLOWER_LINK","features":[378]},{"name":"DIBUTTON_MECHA_TARGET","features":[378]},{"name":"DIBUTTON_MECHA_VIEW","features":[378]},{"name":"DIBUTTON_MECHA_WEAPONS","features":[378]},{"name":"DIBUTTON_MECHA_ZOOM","features":[378]},{"name":"DIBUTTON_RACQUET_BACKSWING","features":[378]},{"name":"DIBUTTON_RACQUET_BACK_LINK","features":[378]},{"name":"DIBUTTON_RACQUET_DEVICE","features":[378]},{"name":"DIBUTTON_RACQUET_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_RACQUET_LEFT_LINK","features":[378]},{"name":"DIBUTTON_RACQUET_MENU","features":[378]},{"name":"DIBUTTON_RACQUET_PAUSE","features":[378]},{"name":"DIBUTTON_RACQUET_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_RACQUET_SELECT","features":[378]},{"name":"DIBUTTON_RACQUET_SMASH","features":[378]},{"name":"DIBUTTON_RACQUET_SPECIAL","features":[378]},{"name":"DIBUTTON_RACQUET_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_RACQUET_SWING","features":[378]},{"name":"DIBUTTON_RACQUET_TIMEOUT","features":[378]},{"name":"DIBUTTON_REMOTE_ADJUST","features":[378]},{"name":"DIBUTTON_REMOTE_CABLE","features":[378]},{"name":"DIBUTTON_REMOTE_CD","features":[378]},{"name":"DIBUTTON_REMOTE_CHANGE","features":[378]},{"name":"DIBUTTON_REMOTE_CUE","features":[378]},{"name":"DIBUTTON_REMOTE_DEVICE","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT0","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT1","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT2","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT3","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT4","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT5","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT6","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT7","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT8","features":[378]},{"name":"DIBUTTON_REMOTE_DIGIT9","features":[378]},{"name":"DIBUTTON_REMOTE_DVD","features":[378]},{"name":"DIBUTTON_REMOTE_MENU","features":[378]},{"name":"DIBUTTON_REMOTE_MUTE","features":[378]},{"name":"DIBUTTON_REMOTE_PAUSE","features":[378]},{"name":"DIBUTTON_REMOTE_PLAY","features":[378]},{"name":"DIBUTTON_REMOTE_RECORD","features":[378]},{"name":"DIBUTTON_REMOTE_REVIEW","features":[378]},{"name":"DIBUTTON_REMOTE_SELECT","features":[378]},{"name":"DIBUTTON_REMOTE_TUNER","features":[378]},{"name":"DIBUTTON_REMOTE_TV","features":[378]},{"name":"DIBUTTON_REMOTE_VCR","features":[378]},{"name":"DIBUTTON_SKIING_CAMERA","features":[378]},{"name":"DIBUTTON_SKIING_CROUCH","features":[378]},{"name":"DIBUTTON_SKIING_DEVICE","features":[378]},{"name":"DIBUTTON_SKIING_FASTER_LINK","features":[378]},{"name":"DIBUTTON_SKIING_JUMP","features":[378]},{"name":"DIBUTTON_SKIING_LEFT_LINK","features":[378]},{"name":"DIBUTTON_SKIING_MENU","features":[378]},{"name":"DIBUTTON_SKIING_PAUSE","features":[378]},{"name":"DIBUTTON_SKIING_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_SKIING_SELECT","features":[378]},{"name":"DIBUTTON_SKIING_SLOWER_LINK","features":[378]},{"name":"DIBUTTON_SKIING_SPECIAL1","features":[378]},{"name":"DIBUTTON_SKIING_SPECIAL2","features":[378]},{"name":"DIBUTTON_SKIING_ZOOM","features":[378]},{"name":"DIBUTTON_SOCCERD_BACK_LINK","features":[378]},{"name":"DIBUTTON_SOCCERD_BLOCK","features":[378]},{"name":"DIBUTTON_SOCCERD_CLEAR","features":[378]},{"name":"DIBUTTON_SOCCERD_DEVICE","features":[378]},{"name":"DIBUTTON_SOCCERD_FAKE","features":[378]},{"name":"DIBUTTON_SOCCERD_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_SOCCERD_FOUL","features":[378]},{"name":"DIBUTTON_SOCCERD_GOALIECHARGE","features":[378]},{"name":"DIBUTTON_SOCCERD_HEAD","features":[378]},{"name":"DIBUTTON_SOCCERD_LEFT_LINK","features":[378]},{"name":"DIBUTTON_SOCCERD_MENU","features":[378]},{"name":"DIBUTTON_SOCCERD_PAUSE","features":[378]},{"name":"DIBUTTON_SOCCERD_PLAYER","features":[378]},{"name":"DIBUTTON_SOCCERD_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_SOCCERD_SELECT","features":[378]},{"name":"DIBUTTON_SOCCERD_SLIDE","features":[378]},{"name":"DIBUTTON_SOCCERD_SPECIAL","features":[378]},{"name":"DIBUTTON_SOCCERD_STEAL","features":[378]},{"name":"DIBUTTON_SOCCERD_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_SOCCERO_BACK_LINK","features":[378]},{"name":"DIBUTTON_SOCCERO_CONTROL","features":[378]},{"name":"DIBUTTON_SOCCERO_DEVICE","features":[378]},{"name":"DIBUTTON_SOCCERO_FAKE","features":[378]},{"name":"DIBUTTON_SOCCERO_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_SOCCERO_HEAD","features":[378]},{"name":"DIBUTTON_SOCCERO_LEFT_LINK","features":[378]},{"name":"DIBUTTON_SOCCERO_MENU","features":[378]},{"name":"DIBUTTON_SOCCERO_PASS","features":[378]},{"name":"DIBUTTON_SOCCERO_PASSTHRU","features":[378]},{"name":"DIBUTTON_SOCCERO_PAUSE","features":[378]},{"name":"DIBUTTON_SOCCERO_PLAYER","features":[378]},{"name":"DIBUTTON_SOCCERO_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_SOCCERO_SELECT","features":[378]},{"name":"DIBUTTON_SOCCERO_SHOOT","features":[378]},{"name":"DIBUTTON_SOCCERO_SHOOTHIGH","features":[378]},{"name":"DIBUTTON_SOCCERO_SHOOTLOW","features":[378]},{"name":"DIBUTTON_SOCCERO_SPECIAL1","features":[378]},{"name":"DIBUTTON_SOCCERO_SPRINT","features":[378]},{"name":"DIBUTTON_SOCCERO_SUBSTITUTE","features":[378]},{"name":"DIBUTTON_SPACESIM_BACKWARD_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_DEVICE","features":[378]},{"name":"DIBUTTON_SPACESIM_DISPLAY","features":[378]},{"name":"DIBUTTON_SPACESIM_FASTER_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_FIRE","features":[378]},{"name":"DIBUTTON_SPACESIM_FIRESECONDARY","features":[378]},{"name":"DIBUTTON_SPACESIM_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_GEAR","features":[378]},{"name":"DIBUTTON_SPACESIM_GLANCE_DOWN_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_GLANCE_UP_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_LEFT_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_LOWER","features":[378]},{"name":"DIBUTTON_SPACESIM_MENU","features":[378]},{"name":"DIBUTTON_SPACESIM_PAUSE","features":[378]},{"name":"DIBUTTON_SPACESIM_RAISE","features":[378]},{"name":"DIBUTTON_SPACESIM_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_SLOWER_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_TARGET","features":[378]},{"name":"DIBUTTON_SPACESIM_TURN_LEFT_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_TURN_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_SPACESIM_VIEW","features":[378]},{"name":"DIBUTTON_SPACESIM_WEAPONS","features":[378]},{"name":"DIBUTTON_STRATEGYR_APPLY","features":[378]},{"name":"DIBUTTON_STRATEGYR_ATTACK","features":[378]},{"name":"DIBUTTON_STRATEGYR_BACK_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYR_CAST","features":[378]},{"name":"DIBUTTON_STRATEGYR_CROUCH","features":[378]},{"name":"DIBUTTON_STRATEGYR_DEVICE","features":[378]},{"name":"DIBUTTON_STRATEGYR_DISPLAY","features":[378]},{"name":"DIBUTTON_STRATEGYR_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYR_GET","features":[378]},{"name":"DIBUTTON_STRATEGYR_JUMP","features":[378]},{"name":"DIBUTTON_STRATEGYR_LEFT_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYR_MAP","features":[378]},{"name":"DIBUTTON_STRATEGYR_MENU","features":[378]},{"name":"DIBUTTON_STRATEGYR_PAUSE","features":[378]},{"name":"DIBUTTON_STRATEGYR_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYR_ROTATE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYR_ROTATE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYR_SELECT","features":[378]},{"name":"DIBUTTON_STRATEGYT_APPLY","features":[378]},{"name":"DIBUTTON_STRATEGYT_BACK_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYT_DEVICE","features":[378]},{"name":"DIBUTTON_STRATEGYT_DISPLAY","features":[378]},{"name":"DIBUTTON_STRATEGYT_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYT_INSTRUCT","features":[378]},{"name":"DIBUTTON_STRATEGYT_LEFT_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYT_MAP","features":[378]},{"name":"DIBUTTON_STRATEGYT_MENU","features":[378]},{"name":"DIBUTTON_STRATEGYT_PAUSE","features":[378]},{"name":"DIBUTTON_STRATEGYT_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_STRATEGYT_SELECT","features":[378]},{"name":"DIBUTTON_STRATEGYT_TEAM","features":[378]},{"name":"DIBUTTON_STRATEGYT_TURN","features":[378]},{"name":"DIBUTTON_STRATEGYT_ZOOM","features":[378]},{"name":"DIBUTTON_TPS_ACTION","features":[378]},{"name":"DIBUTTON_TPS_BACKWARD_LINK","features":[378]},{"name":"DIBUTTON_TPS_DEVICE","features":[378]},{"name":"DIBUTTON_TPS_DODGE","features":[378]},{"name":"DIBUTTON_TPS_FORWARD_LINK","features":[378]},{"name":"DIBUTTON_TPS_GLANCE_DOWN_LINK","features":[378]},{"name":"DIBUTTON_TPS_GLANCE_LEFT_LINK","features":[378]},{"name":"DIBUTTON_TPS_GLANCE_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_TPS_GLANCE_UP_LINK","features":[378]},{"name":"DIBUTTON_TPS_INVENTORY","features":[378]},{"name":"DIBUTTON_TPS_JUMP","features":[378]},{"name":"DIBUTTON_TPS_MENU","features":[378]},{"name":"DIBUTTON_TPS_PAUSE","features":[378]},{"name":"DIBUTTON_TPS_RUN","features":[378]},{"name":"DIBUTTON_TPS_SELECT","features":[378]},{"name":"DIBUTTON_TPS_STEPLEFT","features":[378]},{"name":"DIBUTTON_TPS_STEPRIGHT","features":[378]},{"name":"DIBUTTON_TPS_TURN_LEFT_LINK","features":[378]},{"name":"DIBUTTON_TPS_TURN_RIGHT_LINK","features":[378]},{"name":"DIBUTTON_TPS_USE","features":[378]},{"name":"DIBUTTON_TPS_VIEW","features":[378]},{"name":"DICD_DEFAULT","features":[378]},{"name":"DICD_EDIT","features":[378]},{"name":"DICOLORSET","features":[378]},{"name":"DICONDITION","features":[378]},{"name":"DICONFIGUREDEVICESPARAMSA","features":[378,305]},{"name":"DICONFIGUREDEVICESPARAMSW","features":[378,305]},{"name":"DICONSTANTFORCE","features":[378]},{"name":"DICUSTOMFORCE","features":[378]},{"name":"DIDAL_BOTTOMALIGNED","features":[378]},{"name":"DIDAL_CENTERED","features":[378]},{"name":"DIDAL_LEFTALIGNED","features":[378]},{"name":"DIDAL_MIDDLE","features":[378]},{"name":"DIDAL_RIGHTALIGNED","features":[378]},{"name":"DIDAL_TOPALIGNED","features":[378]},{"name":"DIDATAFORMAT","features":[378]},{"name":"DIDBAM_DEFAULT","features":[378]},{"name":"DIDBAM_HWDEFAULTS","features":[378]},{"name":"DIDBAM_INITIALIZE","features":[378]},{"name":"DIDBAM_PRESERVE","features":[378]},{"name":"DIDC_ALIAS","features":[378]},{"name":"DIDC_ATTACHED","features":[378]},{"name":"DIDC_DEADBAND","features":[378]},{"name":"DIDC_EMULATED","features":[378]},{"name":"DIDC_FFATTACK","features":[378]},{"name":"DIDC_FFFADE","features":[378]},{"name":"DIDC_FORCEFEEDBACK","features":[378]},{"name":"DIDC_HIDDEN","features":[378]},{"name":"DIDC_PHANTOM","features":[378]},{"name":"DIDC_POLLEDDATAFORMAT","features":[378]},{"name":"DIDC_POLLEDDEVICE","features":[378]},{"name":"DIDC_POSNEGCOEFFICIENTS","features":[378]},{"name":"DIDC_POSNEGSATURATION","features":[378]},{"name":"DIDC_SATURATION","features":[378]},{"name":"DIDC_STARTDELAY","features":[378]},{"name":"DIDEVCAPS","features":[378]},{"name":"DIDEVCAPS_DX3","features":[378]},{"name":"DIDEVICEIMAGEINFOA","features":[378,305]},{"name":"DIDEVICEIMAGEINFOHEADERA","features":[378,305]},{"name":"DIDEVICEIMAGEINFOHEADERW","features":[378,305]},{"name":"DIDEVICEIMAGEINFOW","features":[378,305]},{"name":"DIDEVICEINSTANCEA","features":[378]},{"name":"DIDEVICEINSTANCEW","features":[378]},{"name":"DIDEVICEINSTANCE_DX3A","features":[378]},{"name":"DIDEVICEINSTANCE_DX3W","features":[378]},{"name":"DIDEVICEOBJECTDATA","features":[378]},{"name":"DIDEVICEOBJECTDATA_DX3","features":[378]},{"name":"DIDEVICEOBJECTINSTANCEA","features":[378]},{"name":"DIDEVICEOBJECTINSTANCEW","features":[378]},{"name":"DIDEVICEOBJECTINSTANCE_DX3A","features":[378]},{"name":"DIDEVICEOBJECTINSTANCE_DX3W","features":[378]},{"name":"DIDEVICESTATE","features":[378]},{"name":"DIDEVTYPEJOYSTICK_FLIGHTSTICK","features":[378]},{"name":"DIDEVTYPEJOYSTICK_GAMEPAD","features":[378]},{"name":"DIDEVTYPEJOYSTICK_HEADTRACKER","features":[378]},{"name":"DIDEVTYPEJOYSTICK_RUDDER","features":[378]},{"name":"DIDEVTYPEJOYSTICK_TRADITIONAL","features":[378]},{"name":"DIDEVTYPEJOYSTICK_UNKNOWN","features":[378]},{"name":"DIDEVTYPEJOYSTICK_WHEEL","features":[378]},{"name":"DIDEVTYPEKEYBOARD_J3100","features":[378]},{"name":"DIDEVTYPEKEYBOARD_JAPAN106","features":[378]},{"name":"DIDEVTYPEKEYBOARD_JAPANAX","features":[378]},{"name":"DIDEVTYPEKEYBOARD_NEC98","features":[378]},{"name":"DIDEVTYPEKEYBOARD_NEC98106","features":[378]},{"name":"DIDEVTYPEKEYBOARD_NEC98LAPTOP","features":[378]},{"name":"DIDEVTYPEKEYBOARD_NOKIA1050","features":[378]},{"name":"DIDEVTYPEKEYBOARD_NOKIA9140","features":[378]},{"name":"DIDEVTYPEKEYBOARD_OLIVETTI","features":[378]},{"name":"DIDEVTYPEKEYBOARD_PCAT","features":[378]},{"name":"DIDEVTYPEKEYBOARD_PCENH","features":[378]},{"name":"DIDEVTYPEKEYBOARD_PCXT","features":[378]},{"name":"DIDEVTYPEKEYBOARD_UNKNOWN","features":[378]},{"name":"DIDEVTYPEMOUSE_FINGERSTICK","features":[378]},{"name":"DIDEVTYPEMOUSE_TOUCHPAD","features":[378]},{"name":"DIDEVTYPEMOUSE_TRACKBALL","features":[378]},{"name":"DIDEVTYPEMOUSE_TRADITIONAL","features":[378]},{"name":"DIDEVTYPEMOUSE_UNKNOWN","features":[378]},{"name":"DIDEVTYPE_DEVICE","features":[378]},{"name":"DIDEVTYPE_HID","features":[378]},{"name":"DIDEVTYPE_JOYSTICK","features":[378]},{"name":"DIDEVTYPE_KEYBOARD","features":[378]},{"name":"DIDEVTYPE_MOUSE","features":[378]},{"name":"DIDFT_ABSAXIS","features":[378]},{"name":"DIDFT_ALIAS","features":[378]},{"name":"DIDFT_ALL","features":[378]},{"name":"DIDFT_ANYINSTANCE","features":[378]},{"name":"DIDFT_AXIS","features":[378]},{"name":"DIDFT_BUTTON","features":[378]},{"name":"DIDFT_COLLECTION","features":[378]},{"name":"DIDFT_FFACTUATOR","features":[378]},{"name":"DIDFT_FFEFFECTTRIGGER","features":[378]},{"name":"DIDFT_INSTANCEMASK","features":[378]},{"name":"DIDFT_NOCOLLECTION","features":[378]},{"name":"DIDFT_NODATA","features":[378]},{"name":"DIDFT_OUTPUT","features":[378]},{"name":"DIDFT_POV","features":[378]},{"name":"DIDFT_PSHBUTTON","features":[378]},{"name":"DIDFT_RELAXIS","features":[378]},{"name":"DIDFT_TGLBUTTON","features":[378]},{"name":"DIDFT_VENDORDEFINED","features":[378]},{"name":"DIDF_ABSAXIS","features":[378]},{"name":"DIDF_RELAXIS","features":[378]},{"name":"DIDIFT_CONFIGURATION","features":[378]},{"name":"DIDIFT_DELETE","features":[378]},{"name":"DIDIFT_OVERLAY","features":[378]},{"name":"DIDOI_ASPECTACCEL","features":[378]},{"name":"DIDOI_ASPECTFORCE","features":[378]},{"name":"DIDOI_ASPECTMASK","features":[378]},{"name":"DIDOI_ASPECTPOSITION","features":[378]},{"name":"DIDOI_ASPECTVELOCITY","features":[378]},{"name":"DIDOI_FFACTUATOR","features":[378]},{"name":"DIDOI_FFEFFECTTRIGGER","features":[378]},{"name":"DIDOI_GUIDISUSAGE","features":[378]},{"name":"DIDOI_POLLED","features":[378]},{"name":"DIDRIVERVERSIONS","features":[378]},{"name":"DIDSAM_DEFAULT","features":[378]},{"name":"DIDSAM_FORCESAVE","features":[378]},{"name":"DIDSAM_NOUSER","features":[378]},{"name":"DIEB_NOTRIGGER","features":[378]},{"name":"DIEDBSFL_ATTACHEDONLY","features":[378]},{"name":"DIEDBSFL_AVAILABLEDEVICES","features":[378]},{"name":"DIEDBSFL_FORCEFEEDBACK","features":[378]},{"name":"DIEDBSFL_MULTIMICEKEYBOARDS","features":[378]},{"name":"DIEDBSFL_NONGAMINGDEVICES","features":[378]},{"name":"DIEDBSFL_THISUSER","features":[378]},{"name":"DIEDBSFL_VALID","features":[378]},{"name":"DIEDBS_MAPPEDPRI1","features":[378]},{"name":"DIEDBS_MAPPEDPRI2","features":[378]},{"name":"DIEDBS_NEWDEVICE","features":[378]},{"name":"DIEDBS_RECENTDEVICE","features":[378]},{"name":"DIEDFL_ALLDEVICES","features":[378]},{"name":"DIEDFL_ATTACHEDONLY","features":[378]},{"name":"DIEDFL_FORCEFEEDBACK","features":[378]},{"name":"DIEDFL_INCLUDEALIASES","features":[378]},{"name":"DIEDFL_INCLUDEHIDDEN","features":[378]},{"name":"DIEDFL_INCLUDEPHANTOMS","features":[378]},{"name":"DIEFFECT","features":[378]},{"name":"DIEFFECTATTRIBUTES","features":[378]},{"name":"DIEFFECTINFOA","features":[378]},{"name":"DIEFFECTINFOW","features":[378]},{"name":"DIEFFECT_DX5","features":[378]},{"name":"DIEFFESCAPE","features":[378]},{"name":"DIEFF_CARTESIAN","features":[378]},{"name":"DIEFF_OBJECTIDS","features":[378]},{"name":"DIEFF_OBJECTOFFSETS","features":[378]},{"name":"DIEFF_POLAR","features":[378]},{"name":"DIEFF_SPHERICAL","features":[378]},{"name":"DIEFT_ALL","features":[378]},{"name":"DIEFT_CONDITION","features":[378]},{"name":"DIEFT_CONSTANTFORCE","features":[378]},{"name":"DIEFT_CUSTOMFORCE","features":[378]},{"name":"DIEFT_DEADBAND","features":[378]},{"name":"DIEFT_FFATTACK","features":[378]},{"name":"DIEFT_FFFADE","features":[378]},{"name":"DIEFT_HARDWARE","features":[378]},{"name":"DIEFT_PERIODIC","features":[378]},{"name":"DIEFT_POSNEGCOEFFICIENTS","features":[378]},{"name":"DIEFT_POSNEGSATURATION","features":[378]},{"name":"DIEFT_RAMPFORCE","features":[378]},{"name":"DIEFT_SATURATION","features":[378]},{"name":"DIEFT_STARTDELAY","features":[378]},{"name":"DIEGES_EMULATED","features":[378]},{"name":"DIEGES_PLAYING","features":[378]},{"name":"DIENUM_CONTINUE","features":[378]},{"name":"DIENUM_STOP","features":[378]},{"name":"DIENVELOPE","features":[378]},{"name":"DIEP_ALLPARAMS","features":[378]},{"name":"DIEP_ALLPARAMS_DX5","features":[378]},{"name":"DIEP_AXES","features":[378]},{"name":"DIEP_DIRECTION","features":[378]},{"name":"DIEP_DURATION","features":[378]},{"name":"DIEP_ENVELOPE","features":[378]},{"name":"DIEP_GAIN","features":[378]},{"name":"DIEP_NODOWNLOAD","features":[378]},{"name":"DIEP_NORESTART","features":[378]},{"name":"DIEP_SAMPLEPERIOD","features":[378]},{"name":"DIEP_START","features":[378]},{"name":"DIEP_STARTDELAY","features":[378]},{"name":"DIEP_TRIGGERBUTTON","features":[378]},{"name":"DIEP_TRIGGERREPEATINTERVAL","features":[378]},{"name":"DIEP_TYPESPECIFICPARAMS","features":[378]},{"name":"DIERR_ACQUIRED","features":[378]},{"name":"DIERR_ALREADYINITIALIZED","features":[378]},{"name":"DIERR_BADDRIVERVER","features":[378]},{"name":"DIERR_BADINF","features":[378]},{"name":"DIERR_BETADIRECTINPUTVERSION","features":[378]},{"name":"DIERR_CANCELLED","features":[378]},{"name":"DIERR_DEVICEFULL","features":[378]},{"name":"DIERR_DEVICENOTREG","features":[378]},{"name":"DIERR_DRIVERFIRST","features":[378]},{"name":"DIERR_DRIVERLAST","features":[378]},{"name":"DIERR_EFFECTPLAYING","features":[378]},{"name":"DIERR_GENERIC","features":[378]},{"name":"DIERR_HANDLEEXISTS","features":[378]},{"name":"DIERR_HASEFFECTS","features":[378]},{"name":"DIERR_INCOMPLETEEFFECT","features":[378]},{"name":"DIERR_INPUTLOST","features":[378]},{"name":"DIERR_INSUFFICIENTPRIVS","features":[378]},{"name":"DIERR_INVALIDCLASSINSTALLER","features":[378]},{"name":"DIERR_INVALIDPARAM","features":[378]},{"name":"DIERR_MAPFILEFAIL","features":[378]},{"name":"DIERR_MOREDATA","features":[378]},{"name":"DIERR_NOAGGREGATION","features":[378]},{"name":"DIERR_NOINTERFACE","features":[378]},{"name":"DIERR_NOMOREITEMS","features":[378]},{"name":"DIERR_NOTACQUIRED","features":[378]},{"name":"DIERR_NOTBUFFERED","features":[378]},{"name":"DIERR_NOTDOWNLOADED","features":[378]},{"name":"DIERR_NOTEXCLUSIVEACQUIRED","features":[378]},{"name":"DIERR_NOTFOUND","features":[378]},{"name":"DIERR_NOTINITIALIZED","features":[378]},{"name":"DIERR_OBJECTNOTFOUND","features":[378]},{"name":"DIERR_OLDDIRECTINPUTVERSION","features":[378]},{"name":"DIERR_OTHERAPPHASPRIO","features":[378]},{"name":"DIERR_OUTOFMEMORY","features":[378]},{"name":"DIERR_READONLY","features":[378]},{"name":"DIERR_REPORTFULL","features":[378]},{"name":"DIERR_UNPLUGGED","features":[378]},{"name":"DIERR_UNSUPPORTED","features":[378]},{"name":"DIES_NODOWNLOAD","features":[378]},{"name":"DIES_SOLO","features":[378]},{"name":"DIFEF_DEFAULT","features":[378]},{"name":"DIFEF_INCLUDENONSTANDARD","features":[378]},{"name":"DIFEF_MODIFYIFNEEDED","features":[378]},{"name":"DIFFDEVICEATTRIBUTES","features":[378]},{"name":"DIFFOBJECTATTRIBUTES","features":[378]},{"name":"DIFILEEFFECT","features":[378]},{"name":"DIGDD_PEEK","features":[378]},{"name":"DIGFFS_ACTUATORSOFF","features":[378]},{"name":"DIGFFS_ACTUATORSON","features":[378]},{"name":"DIGFFS_DEVICELOST","features":[378]},{"name":"DIGFFS_EMPTY","features":[378]},{"name":"DIGFFS_PAUSED","features":[378]},{"name":"DIGFFS_POWEROFF","features":[378]},{"name":"DIGFFS_POWERON","features":[378]},{"name":"DIGFFS_SAFETYSWITCHOFF","features":[378]},{"name":"DIGFFS_SAFETYSWITCHON","features":[378]},{"name":"DIGFFS_STOPPED","features":[378]},{"name":"DIGFFS_USERFFSWITCHOFF","features":[378]},{"name":"DIGFFS_USERFFSWITCHON","features":[378]},{"name":"DIHATSWITCH_2DCONTROL_HATSWITCH","features":[378]},{"name":"DIHATSWITCH_3DCONTROL_HATSWITCH","features":[378]},{"name":"DIHATSWITCH_ARCADEP_VIEW","features":[378]},{"name":"DIHATSWITCH_ARCADES_VIEW","features":[378]},{"name":"DIHATSWITCH_BBALLD_GLANCE","features":[378]},{"name":"DIHATSWITCH_BBALLO_GLANCE","features":[378]},{"name":"DIHATSWITCH_BIKINGM_SCROLL","features":[378]},{"name":"DIHATSWITCH_CADF_HATSWITCH","features":[378]},{"name":"DIHATSWITCH_CADM_HATSWITCH","features":[378]},{"name":"DIHATSWITCH_DRIVINGC_GLANCE","features":[378]},{"name":"DIHATSWITCH_DRIVINGR_GLANCE","features":[378]},{"name":"DIHATSWITCH_DRIVINGT_GLANCE","features":[378]},{"name":"DIHATSWITCH_FIGHTINGH_SLIDE","features":[378]},{"name":"DIHATSWITCH_FISHING_GLANCE","features":[378]},{"name":"DIHATSWITCH_FLYINGC_GLANCE","features":[378]},{"name":"DIHATSWITCH_FLYINGH_GLANCE","features":[378]},{"name":"DIHATSWITCH_FLYINGM_GLANCE","features":[378]},{"name":"DIHATSWITCH_FPS_GLANCE","features":[378]},{"name":"DIHATSWITCH_GOLF_SCROLL","features":[378]},{"name":"DIHATSWITCH_HOCKEYD_SCROLL","features":[378]},{"name":"DIHATSWITCH_HOCKEYG_SCROLL","features":[378]},{"name":"DIHATSWITCH_HOCKEYO_SCROLL","features":[378]},{"name":"DIHATSWITCH_HUNTING_GLANCE","features":[378]},{"name":"DIHATSWITCH_MECHA_GLANCE","features":[378]},{"name":"DIHATSWITCH_RACQUET_GLANCE","features":[378]},{"name":"DIHATSWITCH_SKIING_GLANCE","features":[378]},{"name":"DIHATSWITCH_SOCCERD_GLANCE","features":[378]},{"name":"DIHATSWITCH_SOCCERO_GLANCE","features":[378]},{"name":"DIHATSWITCH_SPACESIM_GLANCE","features":[378]},{"name":"DIHATSWITCH_STRATEGYR_GLANCE","features":[378]},{"name":"DIHATSWITCH_TPS_GLANCE","features":[378]},{"name":"DIHIDFFINITINFO","features":[378]},{"name":"DIJC_CALLOUT","features":[378]},{"name":"DIJC_GAIN","features":[378]},{"name":"DIJC_GUIDINSTANCE","features":[378]},{"name":"DIJC_REGHWCONFIGTYPE","features":[378]},{"name":"DIJC_WDMGAMEPORT","features":[378]},{"name":"DIJOYCONFIG","features":[378]},{"name":"DIJOYCONFIG_DX5","features":[378]},{"name":"DIJOYSTATE","features":[378]},{"name":"DIJOYSTATE2","features":[378]},{"name":"DIJOYTYPEINFO","features":[378]},{"name":"DIJOYTYPEINFO_DX5","features":[378]},{"name":"DIJOYTYPEINFO_DX6","features":[378]},{"name":"DIJOYUSERVALUES","features":[378]},{"name":"DIJU_GAMEPORTEMULATOR","features":[378]},{"name":"DIJU_GLOBALDRIVER","features":[378]},{"name":"DIJU_USERVALUES","features":[378]},{"name":"DIKEYBOARD_0","features":[378]},{"name":"DIKEYBOARD_1","features":[378]},{"name":"DIKEYBOARD_2","features":[378]},{"name":"DIKEYBOARD_3","features":[378]},{"name":"DIKEYBOARD_4","features":[378]},{"name":"DIKEYBOARD_5","features":[378]},{"name":"DIKEYBOARD_6","features":[378]},{"name":"DIKEYBOARD_7","features":[378]},{"name":"DIKEYBOARD_8","features":[378]},{"name":"DIKEYBOARD_9","features":[378]},{"name":"DIKEYBOARD_A","features":[378]},{"name":"DIKEYBOARD_ABNT_C1","features":[378]},{"name":"DIKEYBOARD_ABNT_C2","features":[378]},{"name":"DIKEYBOARD_ADD","features":[378]},{"name":"DIKEYBOARD_APOSTROPHE","features":[378]},{"name":"DIKEYBOARD_APPS","features":[378]},{"name":"DIKEYBOARD_AT","features":[378]},{"name":"DIKEYBOARD_AX","features":[378]},{"name":"DIKEYBOARD_B","features":[378]},{"name":"DIKEYBOARD_BACK","features":[378]},{"name":"DIKEYBOARD_BACKSLASH","features":[378]},{"name":"DIKEYBOARD_C","features":[378]},{"name":"DIKEYBOARD_CALCULATOR","features":[378]},{"name":"DIKEYBOARD_CAPITAL","features":[378]},{"name":"DIKEYBOARD_COLON","features":[378]},{"name":"DIKEYBOARD_COMMA","features":[378]},{"name":"DIKEYBOARD_CONVERT","features":[378]},{"name":"DIKEYBOARD_D","features":[378]},{"name":"DIKEYBOARD_DECIMAL","features":[378]},{"name":"DIKEYBOARD_DELETE","features":[378]},{"name":"DIKEYBOARD_DIVIDE","features":[378]},{"name":"DIKEYBOARD_DOWN","features":[378]},{"name":"DIKEYBOARD_E","features":[378]},{"name":"DIKEYBOARD_END","features":[378]},{"name":"DIKEYBOARD_EQUALS","features":[378]},{"name":"DIKEYBOARD_ESCAPE","features":[378]},{"name":"DIKEYBOARD_F","features":[378]},{"name":"DIKEYBOARD_F1","features":[378]},{"name":"DIKEYBOARD_F10","features":[378]},{"name":"DIKEYBOARD_F11","features":[378]},{"name":"DIKEYBOARD_F12","features":[378]},{"name":"DIKEYBOARD_F13","features":[378]},{"name":"DIKEYBOARD_F14","features":[378]},{"name":"DIKEYBOARD_F15","features":[378]},{"name":"DIKEYBOARD_F2","features":[378]},{"name":"DIKEYBOARD_F3","features":[378]},{"name":"DIKEYBOARD_F4","features":[378]},{"name":"DIKEYBOARD_F5","features":[378]},{"name":"DIKEYBOARD_F6","features":[378]},{"name":"DIKEYBOARD_F7","features":[378]},{"name":"DIKEYBOARD_F8","features":[378]},{"name":"DIKEYBOARD_F9","features":[378]},{"name":"DIKEYBOARD_G","features":[378]},{"name":"DIKEYBOARD_GRAVE","features":[378]},{"name":"DIKEYBOARD_H","features":[378]},{"name":"DIKEYBOARD_HOME","features":[378]},{"name":"DIKEYBOARD_I","features":[378]},{"name":"DIKEYBOARD_INSERT","features":[378]},{"name":"DIKEYBOARD_J","features":[378]},{"name":"DIKEYBOARD_K","features":[378]},{"name":"DIKEYBOARD_KANA","features":[378]},{"name":"DIKEYBOARD_KANJI","features":[378]},{"name":"DIKEYBOARD_L","features":[378]},{"name":"DIKEYBOARD_LBRACKET","features":[378]},{"name":"DIKEYBOARD_LCONTROL","features":[378]},{"name":"DIKEYBOARD_LEFT","features":[378]},{"name":"DIKEYBOARD_LMENU","features":[378]},{"name":"DIKEYBOARD_LSHIFT","features":[378]},{"name":"DIKEYBOARD_LWIN","features":[378]},{"name":"DIKEYBOARD_M","features":[378]},{"name":"DIKEYBOARD_MAIL","features":[378]},{"name":"DIKEYBOARD_MEDIASELECT","features":[378]},{"name":"DIKEYBOARD_MEDIASTOP","features":[378]},{"name":"DIKEYBOARD_MINUS","features":[378]},{"name":"DIKEYBOARD_MULTIPLY","features":[378]},{"name":"DIKEYBOARD_MUTE","features":[378]},{"name":"DIKEYBOARD_MYCOMPUTER","features":[378]},{"name":"DIKEYBOARD_N","features":[378]},{"name":"DIKEYBOARD_NEXT","features":[378]},{"name":"DIKEYBOARD_NEXTTRACK","features":[378]},{"name":"DIKEYBOARD_NOCONVERT","features":[378]},{"name":"DIKEYBOARD_NUMLOCK","features":[378]},{"name":"DIKEYBOARD_NUMPAD0","features":[378]},{"name":"DIKEYBOARD_NUMPAD1","features":[378]},{"name":"DIKEYBOARD_NUMPAD2","features":[378]},{"name":"DIKEYBOARD_NUMPAD3","features":[378]},{"name":"DIKEYBOARD_NUMPAD4","features":[378]},{"name":"DIKEYBOARD_NUMPAD5","features":[378]},{"name":"DIKEYBOARD_NUMPAD6","features":[378]},{"name":"DIKEYBOARD_NUMPAD7","features":[378]},{"name":"DIKEYBOARD_NUMPAD8","features":[378]},{"name":"DIKEYBOARD_NUMPAD9","features":[378]},{"name":"DIKEYBOARD_NUMPADCOMMA","features":[378]},{"name":"DIKEYBOARD_NUMPADENTER","features":[378]},{"name":"DIKEYBOARD_NUMPADEQUALS","features":[378]},{"name":"DIKEYBOARD_O","features":[378]},{"name":"DIKEYBOARD_OEM_102","features":[378]},{"name":"DIKEYBOARD_P","features":[378]},{"name":"DIKEYBOARD_PAUSE","features":[378]},{"name":"DIKEYBOARD_PERIOD","features":[378]},{"name":"DIKEYBOARD_PLAYPAUSE","features":[378]},{"name":"DIKEYBOARD_POWER","features":[378]},{"name":"DIKEYBOARD_PREVTRACK","features":[378]},{"name":"DIKEYBOARD_PRIOR","features":[378]},{"name":"DIKEYBOARD_Q","features":[378]},{"name":"DIKEYBOARD_R","features":[378]},{"name":"DIKEYBOARD_RBRACKET","features":[378]},{"name":"DIKEYBOARD_RCONTROL","features":[378]},{"name":"DIKEYBOARD_RETURN","features":[378]},{"name":"DIKEYBOARD_RIGHT","features":[378]},{"name":"DIKEYBOARD_RMENU","features":[378]},{"name":"DIKEYBOARD_RSHIFT","features":[378]},{"name":"DIKEYBOARD_RWIN","features":[378]},{"name":"DIKEYBOARD_S","features":[378]},{"name":"DIKEYBOARD_SCROLL","features":[378]},{"name":"DIKEYBOARD_SEMICOLON","features":[378]},{"name":"DIKEYBOARD_SLASH","features":[378]},{"name":"DIKEYBOARD_SLEEP","features":[378]},{"name":"DIKEYBOARD_SPACE","features":[378]},{"name":"DIKEYBOARD_STOP","features":[378]},{"name":"DIKEYBOARD_SUBTRACT","features":[378]},{"name":"DIKEYBOARD_SYSRQ","features":[378]},{"name":"DIKEYBOARD_T","features":[378]},{"name":"DIKEYBOARD_TAB","features":[378]},{"name":"DIKEYBOARD_U","features":[378]},{"name":"DIKEYBOARD_UNDERLINE","features":[378]},{"name":"DIKEYBOARD_UNLABELED","features":[378]},{"name":"DIKEYBOARD_UP","features":[378]},{"name":"DIKEYBOARD_V","features":[378]},{"name":"DIKEYBOARD_VOLUMEDOWN","features":[378]},{"name":"DIKEYBOARD_VOLUMEUP","features":[378]},{"name":"DIKEYBOARD_W","features":[378]},{"name":"DIKEYBOARD_WAKE","features":[378]},{"name":"DIKEYBOARD_WEBBACK","features":[378]},{"name":"DIKEYBOARD_WEBFAVORITES","features":[378]},{"name":"DIKEYBOARD_WEBFORWARD","features":[378]},{"name":"DIKEYBOARD_WEBHOME","features":[378]},{"name":"DIKEYBOARD_WEBREFRESH","features":[378]},{"name":"DIKEYBOARD_WEBSEARCH","features":[378]},{"name":"DIKEYBOARD_WEBSTOP","features":[378]},{"name":"DIKEYBOARD_X","features":[378]},{"name":"DIKEYBOARD_Y","features":[378]},{"name":"DIKEYBOARD_YEN","features":[378]},{"name":"DIKEYBOARD_Z","features":[378]},{"name":"DIK_0","features":[378]},{"name":"DIK_1","features":[378]},{"name":"DIK_2","features":[378]},{"name":"DIK_3","features":[378]},{"name":"DIK_4","features":[378]},{"name":"DIK_5","features":[378]},{"name":"DIK_6","features":[378]},{"name":"DIK_7","features":[378]},{"name":"DIK_8","features":[378]},{"name":"DIK_9","features":[378]},{"name":"DIK_A","features":[378]},{"name":"DIK_ABNT_C1","features":[378]},{"name":"DIK_ABNT_C2","features":[378]},{"name":"DIK_ADD","features":[378]},{"name":"DIK_APOSTROPHE","features":[378]},{"name":"DIK_APPS","features":[378]},{"name":"DIK_AT","features":[378]},{"name":"DIK_AX","features":[378]},{"name":"DIK_B","features":[378]},{"name":"DIK_BACK","features":[378]},{"name":"DIK_BACKSLASH","features":[378]},{"name":"DIK_BACKSPACE","features":[378]},{"name":"DIK_C","features":[378]},{"name":"DIK_CALCULATOR","features":[378]},{"name":"DIK_CAPITAL","features":[378]},{"name":"DIK_CAPSLOCK","features":[378]},{"name":"DIK_CIRCUMFLEX","features":[378]},{"name":"DIK_COLON","features":[378]},{"name":"DIK_COMMA","features":[378]},{"name":"DIK_CONVERT","features":[378]},{"name":"DIK_D","features":[378]},{"name":"DIK_DECIMAL","features":[378]},{"name":"DIK_DELETE","features":[378]},{"name":"DIK_DIVIDE","features":[378]},{"name":"DIK_DOWN","features":[378]},{"name":"DIK_DOWNARROW","features":[378]},{"name":"DIK_E","features":[378]},{"name":"DIK_END","features":[378]},{"name":"DIK_EQUALS","features":[378]},{"name":"DIK_ESCAPE","features":[378]},{"name":"DIK_F","features":[378]},{"name":"DIK_F1","features":[378]},{"name":"DIK_F10","features":[378]},{"name":"DIK_F11","features":[378]},{"name":"DIK_F12","features":[378]},{"name":"DIK_F13","features":[378]},{"name":"DIK_F14","features":[378]},{"name":"DIK_F15","features":[378]},{"name":"DIK_F2","features":[378]},{"name":"DIK_F3","features":[378]},{"name":"DIK_F4","features":[378]},{"name":"DIK_F5","features":[378]},{"name":"DIK_F6","features":[378]},{"name":"DIK_F7","features":[378]},{"name":"DIK_F8","features":[378]},{"name":"DIK_F9","features":[378]},{"name":"DIK_G","features":[378]},{"name":"DIK_GRAVE","features":[378]},{"name":"DIK_H","features":[378]},{"name":"DIK_HOME","features":[378]},{"name":"DIK_I","features":[378]},{"name":"DIK_INSERT","features":[378]},{"name":"DIK_J","features":[378]},{"name":"DIK_K","features":[378]},{"name":"DIK_KANA","features":[378]},{"name":"DIK_KANJI","features":[378]},{"name":"DIK_L","features":[378]},{"name":"DIK_LALT","features":[378]},{"name":"DIK_LBRACKET","features":[378]},{"name":"DIK_LCONTROL","features":[378]},{"name":"DIK_LEFT","features":[378]},{"name":"DIK_LEFTARROW","features":[378]},{"name":"DIK_LMENU","features":[378]},{"name":"DIK_LSHIFT","features":[378]},{"name":"DIK_LWIN","features":[378]},{"name":"DIK_M","features":[378]},{"name":"DIK_MAIL","features":[378]},{"name":"DIK_MEDIASELECT","features":[378]},{"name":"DIK_MEDIASTOP","features":[378]},{"name":"DIK_MINUS","features":[378]},{"name":"DIK_MULTIPLY","features":[378]},{"name":"DIK_MUTE","features":[378]},{"name":"DIK_MYCOMPUTER","features":[378]},{"name":"DIK_N","features":[378]},{"name":"DIK_NEXT","features":[378]},{"name":"DIK_NEXTTRACK","features":[378]},{"name":"DIK_NOCONVERT","features":[378]},{"name":"DIK_NUMLOCK","features":[378]},{"name":"DIK_NUMPAD0","features":[378]},{"name":"DIK_NUMPAD1","features":[378]},{"name":"DIK_NUMPAD2","features":[378]},{"name":"DIK_NUMPAD3","features":[378]},{"name":"DIK_NUMPAD4","features":[378]},{"name":"DIK_NUMPAD5","features":[378]},{"name":"DIK_NUMPAD6","features":[378]},{"name":"DIK_NUMPAD7","features":[378]},{"name":"DIK_NUMPAD8","features":[378]},{"name":"DIK_NUMPAD9","features":[378]},{"name":"DIK_NUMPADCOMMA","features":[378]},{"name":"DIK_NUMPADENTER","features":[378]},{"name":"DIK_NUMPADEQUALS","features":[378]},{"name":"DIK_NUMPADMINUS","features":[378]},{"name":"DIK_NUMPADPERIOD","features":[378]},{"name":"DIK_NUMPADPLUS","features":[378]},{"name":"DIK_NUMPADSLASH","features":[378]},{"name":"DIK_NUMPADSTAR","features":[378]},{"name":"DIK_O","features":[378]},{"name":"DIK_OEM_102","features":[378]},{"name":"DIK_P","features":[378]},{"name":"DIK_PAUSE","features":[378]},{"name":"DIK_PERIOD","features":[378]},{"name":"DIK_PGDN","features":[378]},{"name":"DIK_PGUP","features":[378]},{"name":"DIK_PLAYPAUSE","features":[378]},{"name":"DIK_POWER","features":[378]},{"name":"DIK_PREVTRACK","features":[378]},{"name":"DIK_PRIOR","features":[378]},{"name":"DIK_Q","features":[378]},{"name":"DIK_R","features":[378]},{"name":"DIK_RALT","features":[378]},{"name":"DIK_RBRACKET","features":[378]},{"name":"DIK_RCONTROL","features":[378]},{"name":"DIK_RETURN","features":[378]},{"name":"DIK_RIGHT","features":[378]},{"name":"DIK_RIGHTARROW","features":[378]},{"name":"DIK_RMENU","features":[378]},{"name":"DIK_RSHIFT","features":[378]},{"name":"DIK_RWIN","features":[378]},{"name":"DIK_S","features":[378]},{"name":"DIK_SCROLL","features":[378]},{"name":"DIK_SEMICOLON","features":[378]},{"name":"DIK_SLASH","features":[378]},{"name":"DIK_SLEEP","features":[378]},{"name":"DIK_SPACE","features":[378]},{"name":"DIK_STOP","features":[378]},{"name":"DIK_SUBTRACT","features":[378]},{"name":"DIK_SYSRQ","features":[378]},{"name":"DIK_T","features":[378]},{"name":"DIK_TAB","features":[378]},{"name":"DIK_U","features":[378]},{"name":"DIK_UNDERLINE","features":[378]},{"name":"DIK_UNLABELED","features":[378]},{"name":"DIK_UP","features":[378]},{"name":"DIK_UPARROW","features":[378]},{"name":"DIK_V","features":[378]},{"name":"DIK_VOLUMEDOWN","features":[378]},{"name":"DIK_VOLUMEUP","features":[378]},{"name":"DIK_W","features":[378]},{"name":"DIK_WAKE","features":[378]},{"name":"DIK_WEBBACK","features":[378]},{"name":"DIK_WEBFAVORITES","features":[378]},{"name":"DIK_WEBFORWARD","features":[378]},{"name":"DIK_WEBHOME","features":[378]},{"name":"DIK_WEBREFRESH","features":[378]},{"name":"DIK_WEBSEARCH","features":[378]},{"name":"DIK_WEBSTOP","features":[378]},{"name":"DIK_X","features":[378]},{"name":"DIK_Y","features":[378]},{"name":"DIK_YEN","features":[378]},{"name":"DIK_Z","features":[378]},{"name":"DIMOUSESTATE","features":[378]},{"name":"DIMOUSESTATE2","features":[378]},{"name":"DIMSGWP_DX8APPSTART","features":[378]},{"name":"DIMSGWP_DX8MAPPERAPPSTART","features":[378]},{"name":"DIMSGWP_NEWAPPSTART","features":[378]},{"name":"DIOBJECTATTRIBUTES","features":[378]},{"name":"DIOBJECTCALIBRATION","features":[378]},{"name":"DIOBJECTDATAFORMAT","features":[378]},{"name":"DIPERIODIC","features":[378]},{"name":"DIPH_BYID","features":[378]},{"name":"DIPH_BYOFFSET","features":[378]},{"name":"DIPH_BYUSAGE","features":[378]},{"name":"DIPH_DEVICE","features":[378]},{"name":"DIPOVCALIBRATION","features":[378]},{"name":"DIPOV_ANY_1","features":[378]},{"name":"DIPOV_ANY_2","features":[378]},{"name":"DIPOV_ANY_3","features":[378]},{"name":"DIPOV_ANY_4","features":[378]},{"name":"DIPROPAUTOCENTER_OFF","features":[378]},{"name":"DIPROPAUTOCENTER_ON","features":[378]},{"name":"DIPROPAXISMODE_ABS","features":[378]},{"name":"DIPROPAXISMODE_REL","features":[378]},{"name":"DIPROPCAL","features":[378]},{"name":"DIPROPCALIBRATIONMODE_COOKED","features":[378]},{"name":"DIPROPCALIBRATIONMODE_RAW","features":[378]},{"name":"DIPROPCALPOV","features":[378]},{"name":"DIPROPCPOINTS","features":[378]},{"name":"DIPROPDWORD","features":[378]},{"name":"DIPROPGUIDANDPATH","features":[378]},{"name":"DIPROPHEADER","features":[378]},{"name":"DIPROPPOINTER","features":[378]},{"name":"DIPROPRANGE","features":[378]},{"name":"DIPROPSTRING","features":[378]},{"name":"DIPROP_APPDATA","features":[378]},{"name":"DIPROP_AUTOCENTER","features":[378]},{"name":"DIPROP_AXISMODE","features":[378]},{"name":"DIPROP_BUFFERSIZE","features":[378]},{"name":"DIPROP_CALIBRATION","features":[378]},{"name":"DIPROP_CALIBRATIONMODE","features":[378]},{"name":"DIPROP_CPOINTS","features":[378]},{"name":"DIPROP_DEADZONE","features":[378]},{"name":"DIPROP_FFGAIN","features":[378]},{"name":"DIPROP_FFLOAD","features":[378]},{"name":"DIPROP_GETPORTDISPLAYNAME","features":[378]},{"name":"DIPROP_GRANULARITY","features":[378]},{"name":"DIPROP_GUIDANDPATH","features":[378]},{"name":"DIPROP_INSTANCENAME","features":[378]},{"name":"DIPROP_JOYSTICKID","features":[378]},{"name":"DIPROP_KEYNAME","features":[378]},{"name":"DIPROP_LOGICALRANGE","features":[378]},{"name":"DIPROP_PHYSICALRANGE","features":[378]},{"name":"DIPROP_PRODUCTNAME","features":[378]},{"name":"DIPROP_RANGE","features":[378]},{"name":"DIPROP_SATURATION","features":[378]},{"name":"DIPROP_SCANCODE","features":[378]},{"name":"DIPROP_TYPENAME","features":[378]},{"name":"DIPROP_USERNAME","features":[378]},{"name":"DIPROP_VIDPID","features":[378]},{"name":"DIRAMPFORCE","features":[378]},{"name":"DIRECTINPUT_HEADER_VERSION","features":[378]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRING","features":[378]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGA","features":[378]},{"name":"DIRECTINPUT_NOTIFICATION_MSGSTRINGW","features":[378]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPP","features":[378]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPA","features":[378]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTAPPW","features":[378]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPP","features":[378]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA","features":[378]},{"name":"DIRECTINPUT_REGSTR_KEY_LASTMAPAPPW","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAG","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGA","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_APPIDFLAGW","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_ID","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_IDA","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_IDW","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTART","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTA","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_LASTSTARTW","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPER","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERA","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_MAPPERW","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_NAME","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEA","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_NAMEW","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSION","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONA","features":[378]},{"name":"DIRECTINPUT_REGSTR_VAL_VERSIONW","features":[378]},{"name":"DIRECTINPUT_VERSION","features":[378]},{"name":"DISCL_BACKGROUND","features":[378]},{"name":"DISCL_EXCLUSIVE","features":[378]},{"name":"DISCL_FOREGROUND","features":[378]},{"name":"DISCL_NONEXCLUSIVE","features":[378]},{"name":"DISCL_NOWINKEY","features":[378]},{"name":"DISDD_CONTINUE","features":[378]},{"name":"DISFFC_CONTINUE","features":[378]},{"name":"DISFFC_PAUSE","features":[378]},{"name":"DISFFC_RESET","features":[378]},{"name":"DISFFC_SETACTUATORSOFF","features":[378]},{"name":"DISFFC_SETACTUATORSON","features":[378]},{"name":"DISFFC_STOPALL","features":[378]},{"name":"DITC_CALLOUT","features":[378]},{"name":"DITC_CLSIDCONFIG","features":[378]},{"name":"DITC_DISPLAYNAME","features":[378]},{"name":"DITC_FLAGS1","features":[378]},{"name":"DITC_FLAGS2","features":[378]},{"name":"DITC_HARDWAREID","features":[378]},{"name":"DITC_MAPFILE","features":[378]},{"name":"DITC_REGHWSETTINGS","features":[378]},{"name":"DIVIRTUAL_ARCADE_PLATFORM","features":[378]},{"name":"DIVIRTUAL_ARCADE_SIDE2SIDE","features":[378]},{"name":"DIVIRTUAL_BROWSER_CONTROL","features":[378]},{"name":"DIVIRTUAL_CAD_2DCONTROL","features":[378]},{"name":"DIVIRTUAL_CAD_3DCONTROL","features":[378]},{"name":"DIVIRTUAL_CAD_FLYBY","features":[378]},{"name":"DIVIRTUAL_CAD_MODEL","features":[378]},{"name":"DIVIRTUAL_DRIVING_COMBAT","features":[378]},{"name":"DIVIRTUAL_DRIVING_MECHA","features":[378]},{"name":"DIVIRTUAL_DRIVING_RACE","features":[378]},{"name":"DIVIRTUAL_DRIVING_TANK","features":[378]},{"name":"DIVIRTUAL_FIGHTING_FPS","features":[378]},{"name":"DIVIRTUAL_FIGHTING_HAND2HAND","features":[378]},{"name":"DIVIRTUAL_FIGHTING_THIRDPERSON","features":[378]},{"name":"DIVIRTUAL_FLYING_CIVILIAN","features":[378]},{"name":"DIVIRTUAL_FLYING_HELICOPTER","features":[378]},{"name":"DIVIRTUAL_FLYING_MILITARY","features":[378]},{"name":"DIVIRTUAL_REMOTE_CONTROL","features":[378]},{"name":"DIVIRTUAL_SPACESIM","features":[378]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_BAT","features":[378]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_FIELD","features":[378]},{"name":"DIVIRTUAL_SPORTS_BASEBALL_PITCH","features":[378]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_DEFENSE","features":[378]},{"name":"DIVIRTUAL_SPORTS_BASKETBALL_OFFENSE","features":[378]},{"name":"DIVIRTUAL_SPORTS_BIKING_MOUNTAIN","features":[378]},{"name":"DIVIRTUAL_SPORTS_FISHING","features":[378]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_DEFENSE","features":[378]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_FIELD","features":[378]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_OFFENSE","features":[378]},{"name":"DIVIRTUAL_SPORTS_FOOTBALL_QBCK","features":[378]},{"name":"DIVIRTUAL_SPORTS_GOLF","features":[378]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_DEFENSE","features":[378]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_GOALIE","features":[378]},{"name":"DIVIRTUAL_SPORTS_HOCKEY_OFFENSE","features":[378]},{"name":"DIVIRTUAL_SPORTS_HUNTING","features":[378]},{"name":"DIVIRTUAL_SPORTS_RACQUET","features":[378]},{"name":"DIVIRTUAL_SPORTS_SKIING","features":[378]},{"name":"DIVIRTUAL_SPORTS_SOCCER_DEFENSE","features":[378]},{"name":"DIVIRTUAL_SPORTS_SOCCER_OFFENSE","features":[378]},{"name":"DIVIRTUAL_STRATEGY_ROLEPLAYING","features":[378]},{"name":"DIVIRTUAL_STRATEGY_TURN","features":[378]},{"name":"DIVOICE_ALL","features":[378]},{"name":"DIVOICE_CHANNEL1","features":[378]},{"name":"DIVOICE_CHANNEL2","features":[378]},{"name":"DIVOICE_CHANNEL3","features":[378]},{"name":"DIVOICE_CHANNEL4","features":[378]},{"name":"DIVOICE_CHANNEL5","features":[378]},{"name":"DIVOICE_CHANNEL6","features":[378]},{"name":"DIVOICE_CHANNEL7","features":[378]},{"name":"DIVOICE_CHANNEL8","features":[378]},{"name":"DIVOICE_PLAYBACKMUTE","features":[378]},{"name":"DIVOICE_RECORDMUTE","features":[378]},{"name":"DIVOICE_TEAM","features":[378]},{"name":"DIVOICE_TRANSMIT","features":[378]},{"name":"DIVOICE_VOICECOMMAND","features":[378]},{"name":"DI_BUFFEROVERFLOW","features":[378]},{"name":"DI_DEGREES","features":[378]},{"name":"DI_DOWNLOADSKIPPED","features":[378]},{"name":"DI_EFFECTRESTARTED","features":[378]},{"name":"DI_FFNOMINALMAX","features":[378]},{"name":"DI_NOEFFECT","features":[378]},{"name":"DI_NOTATTACHED","features":[378]},{"name":"DI_OK","features":[378]},{"name":"DI_POLLEDDEVICE","features":[378]},{"name":"DI_PROPNOEFFECT","features":[378]},{"name":"DI_SECONDS","features":[378]},{"name":"DI_SETTINGSNOTSAVED","features":[378]},{"name":"DI_TRUNCATED","features":[378]},{"name":"DI_TRUNCATEDANDRESTARTED","features":[378]},{"name":"DI_WRITEPROTECT","features":[378]},{"name":"DirectInput8Create","features":[378,305]},{"name":"GPIOBUTTONS_BUTTON_TYPE","features":[378]},{"name":"GPIO_BUTTON_BACK","features":[378]},{"name":"GPIO_BUTTON_CAMERA_FOCUS","features":[378]},{"name":"GPIO_BUTTON_CAMERA_LENS","features":[378]},{"name":"GPIO_BUTTON_CAMERA_SHUTTER","features":[378]},{"name":"GPIO_BUTTON_COUNT","features":[378]},{"name":"GPIO_BUTTON_COUNT_MIN","features":[378]},{"name":"GPIO_BUTTON_HEADSET","features":[378]},{"name":"GPIO_BUTTON_HWKB_DEPLOY","features":[378]},{"name":"GPIO_BUTTON_OEM_CUSTOM","features":[378]},{"name":"GPIO_BUTTON_OEM_CUSTOM2","features":[378]},{"name":"GPIO_BUTTON_OEM_CUSTOM3","features":[378]},{"name":"GPIO_BUTTON_POWER","features":[378]},{"name":"GPIO_BUTTON_RINGER_TOGGLE","features":[378]},{"name":"GPIO_BUTTON_ROTATION_LOCK","features":[378]},{"name":"GPIO_BUTTON_SEARCH","features":[378]},{"name":"GPIO_BUTTON_VOLUME_DOWN","features":[378]},{"name":"GPIO_BUTTON_VOLUME_UP","features":[378]},{"name":"GPIO_BUTTON_WINDOWS","features":[378]},{"name":"GUID_Button","features":[378]},{"name":"GUID_ConstantForce","features":[378]},{"name":"GUID_CustomForce","features":[378]},{"name":"GUID_DEVINTERFACE_HID","features":[378]},{"name":"GUID_DEVINTERFACE_KEYBOARD","features":[378]},{"name":"GUID_DEVINTERFACE_MOUSE","features":[378]},{"name":"GUID_Damper","features":[378]},{"name":"GUID_Friction","features":[378]},{"name":"GUID_HIDClass","features":[378]},{"name":"GUID_HID_INTERFACE_HIDPARSE","features":[378]},{"name":"GUID_HID_INTERFACE_NOTIFY","features":[378]},{"name":"GUID_Inertia","features":[378]},{"name":"GUID_Joystick","features":[378]},{"name":"GUID_Key","features":[378]},{"name":"GUID_KeyboardClass","features":[378]},{"name":"GUID_MediaClass","features":[378]},{"name":"GUID_MouseClass","features":[378]},{"name":"GUID_POV","features":[378]},{"name":"GUID_RampForce","features":[378]},{"name":"GUID_RxAxis","features":[378]},{"name":"GUID_RyAxis","features":[378]},{"name":"GUID_RzAxis","features":[378]},{"name":"GUID_SawtoothDown","features":[378]},{"name":"GUID_SawtoothUp","features":[378]},{"name":"GUID_Sine","features":[378]},{"name":"GUID_Slider","features":[378]},{"name":"GUID_Spring","features":[378]},{"name":"GUID_Square","features":[378]},{"name":"GUID_SysKeyboard","features":[378]},{"name":"GUID_SysKeyboardEm","features":[378]},{"name":"GUID_SysKeyboardEm2","features":[378]},{"name":"GUID_SysMouse","features":[378]},{"name":"GUID_SysMouseEm","features":[378]},{"name":"GUID_SysMouseEm2","features":[378]},{"name":"GUID_Triangle","features":[378]},{"name":"GUID_Unknown","features":[378]},{"name":"GUID_XAxis","features":[378]},{"name":"GUID_YAxis","features":[378]},{"name":"GUID_ZAxis","features":[378]},{"name":"HIDD_ATTRIBUTES","features":[378]},{"name":"HIDD_CONFIGURATION","features":[378]},{"name":"HIDP_BUTTON_ARRAY_DATA","features":[378,305]},{"name":"HIDP_BUTTON_CAPS","features":[378,305]},{"name":"HIDP_CAPS","features":[378]},{"name":"HIDP_DATA","features":[378,305]},{"name":"HIDP_EXTENDED_ATTRIBUTES","features":[378]},{"name":"HIDP_KEYBOARD_DIRECTION","features":[378]},{"name":"HIDP_KEYBOARD_MODIFIER_STATE","features":[378]},{"name":"HIDP_LINK_COLLECTION_NODE","features":[378]},{"name":"HIDP_REPORT_TYPE","features":[378]},{"name":"HIDP_STATUS_BAD_LOG_PHY_VALUES","features":[378,305]},{"name":"HIDP_STATUS_BUFFER_TOO_SMALL","features":[378,305]},{"name":"HIDP_STATUS_BUTTON_NOT_PRESSED","features":[378,305]},{"name":"HIDP_STATUS_DATA_INDEX_NOT_FOUND","features":[378,305]},{"name":"HIDP_STATUS_DATA_INDEX_OUT_OF_RANGE","features":[378,305]},{"name":"HIDP_STATUS_I8042_TRANS_UNKNOWN","features":[378,305]},{"name":"HIDP_STATUS_I8242_TRANS_UNKNOWN","features":[378,305]},{"name":"HIDP_STATUS_INCOMPATIBLE_REPORT_ID","features":[378,305]},{"name":"HIDP_STATUS_INTERNAL_ERROR","features":[378,305]},{"name":"HIDP_STATUS_INVALID_PREPARSED_DATA","features":[378,305]},{"name":"HIDP_STATUS_INVALID_REPORT_LENGTH","features":[378,305]},{"name":"HIDP_STATUS_INVALID_REPORT_TYPE","features":[378,305]},{"name":"HIDP_STATUS_IS_VALUE_ARRAY","features":[378,305]},{"name":"HIDP_STATUS_NOT_BUTTON_ARRAY","features":[378,305]},{"name":"HIDP_STATUS_NOT_IMPLEMENTED","features":[378,305]},{"name":"HIDP_STATUS_NOT_VALUE_ARRAY","features":[378,305]},{"name":"HIDP_STATUS_NULL","features":[378,305]},{"name":"HIDP_STATUS_REPORT_DOES_NOT_EXIST","features":[378,305]},{"name":"HIDP_STATUS_SUCCESS","features":[378,305]},{"name":"HIDP_STATUS_USAGE_NOT_FOUND","features":[378,305]},{"name":"HIDP_STATUS_VALUE_OUT_OF_RANGE","features":[378,305]},{"name":"HIDP_UNKNOWN_TOKEN","features":[378]},{"name":"HIDP_VALUE_CAPS","features":[378,305]},{"name":"HID_COLLECTION_INFORMATION","features":[378,305]},{"name":"HID_DRIVER_CONFIG","features":[378]},{"name":"HID_REVISION","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_14_SEGMENT_DIRECT_MAP","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_7_SEGMENT_DIRECT_MAP","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ALPHANUMERIC_DISPLAY","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ASCII_CHARACTER_SET","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_DATA","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ATTRIBUTE_READBACK","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAPPED_DISPLAY","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_X","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BITMAP_SIZE_Y","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BIT_DEPTH_FORMAT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_DATA","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X1","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_X2","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y1","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_RECTANGLE_Y2","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_BLIT_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_ATTRIBUTE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHARACTER_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_BLINK","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_ENHANCE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_ATTR_UNDERLINE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_HEIGHT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_HORIZONTAL","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_SPACING_VERTICAL","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CHAR_WIDTH","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CLEAR_DISPLAY","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMN","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_COLUMNS","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_BLINK","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_ENABLE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_MODE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_PIXEL_POSITIONING","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_CURSOR_POSITION_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DATA_READ_BACK","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ATTRIBUTES_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_BRIGHTNESS","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTRAST","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_CONTROL_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_DATA","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ENABLE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_ORIENTATION","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_DISPLAY_STATUS","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_FONT_DATA_CANNOT_BE_READ","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ERR_NOT_A_LOADABLE_CHARACTER","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_14_SEGMENT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_7_SEGMENT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_DATA","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_READ_BACK","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_FONT_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_HORIZONTAL_SCROLL","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_OFFSET","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_DATA_SIZE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_PALETTE_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ROW","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_ROWS","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_DELAY","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SCREEN_SAVER_ENABLE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_ID","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET1","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_OFFSET2","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_REPORT","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_SOFT_BUTTON_SIDE","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_NOT_READY","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_STATUS_READY","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_UNICODE_CHAR_SET","features":[378]},{"name":"HID_USAGE_ALPHANUMERIC_VERTICAL_SCROLL","features":[378]},{"name":"HID_USAGE_CAMERA_AUTO_FOCUS","features":[378]},{"name":"HID_USAGE_CAMERA_SHUTTER","features":[378]},{"name":"HID_USAGE_CONSUMERCTRL","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_BACK","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_BOOKMARKS","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_FORWARD","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_GOTO","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_HOME","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_NEXT","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_PAN","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_PREVIOUS","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_REFRESH","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_SEARCH","features":[378]},{"name":"HID_USAGE_CONSUMER_AC_STOP","features":[378]},{"name":"HID_USAGE_CONSUMER_AL_BROWSER","features":[378]},{"name":"HID_USAGE_CONSUMER_AL_CALCULATOR","features":[378]},{"name":"HID_USAGE_CONSUMER_AL_CONFIGURATION","features":[378]},{"name":"HID_USAGE_CONSUMER_AL_EMAIL","features":[378]},{"name":"HID_USAGE_CONSUMER_AL_SEARCH","features":[378]},{"name":"HID_USAGE_CONSUMER_BALANCE","features":[378]},{"name":"HID_USAGE_CONSUMER_BASS","features":[378]},{"name":"HID_USAGE_CONSUMER_BASS_BOOST","features":[378]},{"name":"HID_USAGE_CONSUMER_BASS_DECREMENT","features":[378]},{"name":"HID_USAGE_CONSUMER_BASS_INCREMENT","features":[378]},{"name":"HID_USAGE_CONSUMER_CHANNEL_DECREMENT","features":[378]},{"name":"HID_USAGE_CONSUMER_CHANNEL_INCREMENT","features":[378]},{"name":"HID_USAGE_CONSUMER_EXTENDED_KEYBOARD_ATTRIBUTES_COLLECTION","features":[378]},{"name":"HID_USAGE_CONSUMER_FAST_FORWARD","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_OPEN_GAMEBAR","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_RECORD_CLIP","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_SCREENSHOT","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_BROADCAST","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_CAMERA","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_INDICATOR","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_MICROPHONE","features":[378]},{"name":"HID_USAGE_CONSUMER_GAMEDVR_TOGGLE_RECORD","features":[378]},{"name":"HID_USAGE_CONSUMER_IMPLEMENTED_KEYBOARD_INPUT_ASSIST_CONTROLS","features":[378]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_FORM_FACTOR","features":[378]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_IETF_LANGUAGE_TAG_INDEX","features":[378]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_KEY_TYPE","features":[378]},{"name":"HID_USAGE_CONSUMER_KEYBOARD_PHYSICAL_LAYOUT","features":[378]},{"name":"HID_USAGE_CONSUMER_LOUDNESS","features":[378]},{"name":"HID_USAGE_CONSUMER_MPX","features":[378]},{"name":"HID_USAGE_CONSUMER_MUTE","features":[378]},{"name":"HID_USAGE_CONSUMER_PAUSE","features":[378]},{"name":"HID_USAGE_CONSUMER_PLAY","features":[378]},{"name":"HID_USAGE_CONSUMER_PLAY_PAUSE","features":[378]},{"name":"HID_USAGE_CONSUMER_RECORD","features":[378]},{"name":"HID_USAGE_CONSUMER_REWIND","features":[378]},{"name":"HID_USAGE_CONSUMER_SCAN_NEXT_TRACK","features":[378]},{"name":"HID_USAGE_CONSUMER_SCAN_PREV_TRACK","features":[378]},{"name":"HID_USAGE_CONSUMER_STOP","features":[378]},{"name":"HID_USAGE_CONSUMER_SURROUND_MODE","features":[378]},{"name":"HID_USAGE_CONSUMER_TREBLE","features":[378]},{"name":"HID_USAGE_CONSUMER_TREBLE_DECREMENT","features":[378]},{"name":"HID_USAGE_CONSUMER_TREBLE_INCREMENT","features":[378]},{"name":"HID_USAGE_CONSUMER_VENDOR_SPECIFIC_KEYBOARD_PHYSICAL_LAYOUT","features":[378]},{"name":"HID_USAGE_CONSUMER_VOLUME","features":[378]},{"name":"HID_USAGE_CONSUMER_VOLUME_DECREMENT","features":[378]},{"name":"HID_USAGE_CONSUMER_VOLUME_INCREMENT","features":[378]},{"name":"HID_USAGE_DIGITIZER_3D_DIGITIZER","features":[378]},{"name":"HID_USAGE_DIGITIZER_ALTITUDE","features":[378]},{"name":"HID_USAGE_DIGITIZER_ARMATURE","features":[378]},{"name":"HID_USAGE_DIGITIZER_ARTICULATED_ARM","features":[378]},{"name":"HID_USAGE_DIGITIZER_AZIMUTH","features":[378]},{"name":"HID_USAGE_DIGITIZER_BARREL_PRESSURE","features":[378]},{"name":"HID_USAGE_DIGITIZER_BARREL_SWITCH","features":[378]},{"name":"HID_USAGE_DIGITIZER_BATTERY_STRENGTH","features":[378]},{"name":"HID_USAGE_DIGITIZER_COORD_MEASURING","features":[378]},{"name":"HID_USAGE_DIGITIZER_DATA_VALID","features":[378]},{"name":"HID_USAGE_DIGITIZER_DIGITIZER","features":[378]},{"name":"HID_USAGE_DIGITIZER_ERASER","features":[378]},{"name":"HID_USAGE_DIGITIZER_FINGER","features":[378]},{"name":"HID_USAGE_DIGITIZER_FREE_SPACE_WAND","features":[378]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP","features":[378]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_FRAME_DATA","features":[378]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VENDOR_ID","features":[378]},{"name":"HID_USAGE_DIGITIZER_HEAT_MAP_PROTOCOL_VERSION","features":[378]},{"name":"HID_USAGE_DIGITIZER_INVERT","features":[378]},{"name":"HID_USAGE_DIGITIZER_IN_RANGE","features":[378]},{"name":"HID_USAGE_DIGITIZER_LIGHT_PEN","features":[378]},{"name":"HID_USAGE_DIGITIZER_MULTI_POINT","features":[378]},{"name":"HID_USAGE_DIGITIZER_PEN","features":[378]},{"name":"HID_USAGE_DIGITIZER_PROG_CHANGE_KEYS","features":[378]},{"name":"HID_USAGE_DIGITIZER_PUCK","features":[378]},{"name":"HID_USAGE_DIGITIZER_QUALITY","features":[378]},{"name":"HID_USAGE_DIGITIZER_SECONDARY_TIP_SWITCH","features":[378]},{"name":"HID_USAGE_DIGITIZER_STEREO_PLOTTER","features":[378]},{"name":"HID_USAGE_DIGITIZER_STYLUS","features":[378]},{"name":"HID_USAGE_DIGITIZER_TABLET_FUNC_KEYS","features":[378]},{"name":"HID_USAGE_DIGITIZER_TABLET_PICK","features":[378]},{"name":"HID_USAGE_DIGITIZER_TAP","features":[378]},{"name":"HID_USAGE_DIGITIZER_TIP_PRESSURE","features":[378]},{"name":"HID_USAGE_DIGITIZER_TIP_SWITCH","features":[378]},{"name":"HID_USAGE_DIGITIZER_TOUCH","features":[378]},{"name":"HID_USAGE_DIGITIZER_TOUCH_PAD","features":[378]},{"name":"HID_USAGE_DIGITIZER_TOUCH_SCREEN","features":[378]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_CONNECTED","features":[378]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_INDEX","features":[378]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_PRODUCT","features":[378]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL","features":[378]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_SERIAL_PART2","features":[378]},{"name":"HID_USAGE_DIGITIZER_TRANSDUCER_VENDOR","features":[378]},{"name":"HID_USAGE_DIGITIZER_TWIST","features":[378]},{"name":"HID_USAGE_DIGITIZER_UNTOUCH","features":[378]},{"name":"HID_USAGE_DIGITIZER_WHITE_BOARD","features":[378]},{"name":"HID_USAGE_DIGITIZER_X_TILT","features":[378]},{"name":"HID_USAGE_DIGITIZER_Y_TILT","features":[378]},{"name":"HID_USAGE_GAME_3D_GAME_CONTROLLER","features":[378]},{"name":"HID_USAGE_GAME_BUMP","features":[378]},{"name":"HID_USAGE_GAME_FLIPPER","features":[378]},{"name":"HID_USAGE_GAME_GAMEPAD_FIRE_JUMP","features":[378]},{"name":"HID_USAGE_GAME_GAMEPAD_TRIGGER","features":[378]},{"name":"HID_USAGE_GAME_GUN_AUTOMATIC","features":[378]},{"name":"HID_USAGE_GAME_GUN_BOLT","features":[378]},{"name":"HID_USAGE_GAME_GUN_BURST","features":[378]},{"name":"HID_USAGE_GAME_GUN_CLIP","features":[378]},{"name":"HID_USAGE_GAME_GUN_DEVICE","features":[378]},{"name":"HID_USAGE_GAME_GUN_SAFETY","features":[378]},{"name":"HID_USAGE_GAME_GUN_SELECTOR","features":[378]},{"name":"HID_USAGE_GAME_GUN_SINGLE_SHOT","features":[378]},{"name":"HID_USAGE_GAME_LEAN_FORWARD_BACK","features":[378]},{"name":"HID_USAGE_GAME_LEAN_RIGHT_LEFT","features":[378]},{"name":"HID_USAGE_GAME_MOVE_FORWARD_BACK","features":[378]},{"name":"HID_USAGE_GAME_MOVE_RIGHT_LEFT","features":[378]},{"name":"HID_USAGE_GAME_MOVE_UP_DOWN","features":[378]},{"name":"HID_USAGE_GAME_NEW_GAME","features":[378]},{"name":"HID_USAGE_GAME_PINBALL_DEVICE","features":[378]},{"name":"HID_USAGE_GAME_PITCH_FORWARD_BACK","features":[378]},{"name":"HID_USAGE_GAME_PLAYER","features":[378]},{"name":"HID_USAGE_GAME_POINT_OF_VIEW","features":[378]},{"name":"HID_USAGE_GAME_POV_HEIGHT","features":[378]},{"name":"HID_USAGE_GAME_ROLL_RIGHT_LEFT","features":[378]},{"name":"HID_USAGE_GAME_SECONDARY_FLIPPER","features":[378]},{"name":"HID_USAGE_GAME_SHOOT_BALL","features":[378]},{"name":"HID_USAGE_GAME_TURN_RIGHT_LEFT","features":[378]},{"name":"HID_USAGE_GENERIC_BYTE_COUNT","features":[378]},{"name":"HID_USAGE_GENERIC_CONTROL_ENABLE","features":[378]},{"name":"HID_USAGE_GENERIC_COUNTED_BUFFER","features":[378]},{"name":"HID_USAGE_GENERIC_DEVICE_BATTERY_STRENGTH","features":[378]},{"name":"HID_USAGE_GENERIC_DEVICE_DISCOVER_WIRELESS_CONTROL","features":[378]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ENTERED","features":[378]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CHAR_ERASED","features":[378]},{"name":"HID_USAGE_GENERIC_DEVICE_SECURITY_CODE_CLEARED","features":[378]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_CHANNEL","features":[378]},{"name":"HID_USAGE_GENERIC_DEVICE_WIRELESS_ID","features":[378]},{"name":"HID_USAGE_GENERIC_DIAL","features":[378]},{"name":"HID_USAGE_GENERIC_DPAD_DOWN","features":[378]},{"name":"HID_USAGE_GENERIC_DPAD_LEFT","features":[378]},{"name":"HID_USAGE_GENERIC_DPAD_RIGHT","features":[378]},{"name":"HID_USAGE_GENERIC_DPAD_UP","features":[378]},{"name":"HID_USAGE_GENERIC_FEATURE_NOTIFICATION","features":[378]},{"name":"HID_USAGE_GENERIC_GAMEPAD","features":[378]},{"name":"HID_USAGE_GENERIC_HATSWITCH","features":[378]},{"name":"HID_USAGE_GENERIC_INTERACTIVE_CONTROL","features":[378]},{"name":"HID_USAGE_GENERIC_JOYSTICK","features":[378]},{"name":"HID_USAGE_GENERIC_KEYBOARD","features":[378]},{"name":"HID_USAGE_GENERIC_KEYPAD","features":[378]},{"name":"HID_USAGE_GENERIC_MOTION_WAKEUP","features":[378]},{"name":"HID_USAGE_GENERIC_MOUSE","features":[378]},{"name":"HID_USAGE_GENERIC_MULTI_AXIS_CONTROLLER","features":[378]},{"name":"HID_USAGE_GENERIC_POINTER","features":[378]},{"name":"HID_USAGE_GENERIC_PORTABLE_DEVICE_CONTROL","features":[378]},{"name":"HID_USAGE_GENERIC_RESOLUTION_MULTIPLIER","features":[378]},{"name":"HID_USAGE_GENERIC_RX","features":[378]},{"name":"HID_USAGE_GENERIC_RY","features":[378]},{"name":"HID_USAGE_GENERIC_RZ","features":[378]},{"name":"HID_USAGE_GENERIC_SELECT","features":[378]},{"name":"HID_USAGE_GENERIC_SLIDER","features":[378]},{"name":"HID_USAGE_GENERIC_START","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_BREAK","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_DBG_BREAK","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_APP_MENU","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_COLD_RESTART","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_CONTEXT_MENU","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISMISS_NOTIFICATION","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_AUTOSCALE","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_BOTH","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_DUAL","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_EXTERNAL","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INTERNAL","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_INVERT","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_SWAP","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DISP_TOGGLE","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_DOCK","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_FN_LOCK_INDICATOR","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_HELP_MENU","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_HIBERNATE","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MAIN_MENU","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_DOWN","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_EXIT","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_LEFT","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_RIGHT","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_SELECT","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MENU_UP","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_MUTE","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_POWER","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_SETUP","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_SLEEP","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_BREAK","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_SYS_DBG_BREAK","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_UNDOCK","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_WAKE","features":[378]},{"name":"HID_USAGE_GENERIC_SYSCTL_WARM_RESTART","features":[378]},{"name":"HID_USAGE_GENERIC_SYSTEM_CTL","features":[378]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_BUTTON","features":[378]},{"name":"HID_USAGE_GENERIC_SYSTEM_DISPLAY_ROTATION_LOCK_SLIDER_SWITCH","features":[378]},{"name":"HID_USAGE_GENERIC_TABLET_PC_SYSTEM_CTL","features":[378]},{"name":"HID_USAGE_GENERIC_VBRX","features":[378]},{"name":"HID_USAGE_GENERIC_VBRY","features":[378]},{"name":"HID_USAGE_GENERIC_VBRZ","features":[378]},{"name":"HID_USAGE_GENERIC_VNO","features":[378]},{"name":"HID_USAGE_GENERIC_VX","features":[378]},{"name":"HID_USAGE_GENERIC_VY","features":[378]},{"name":"HID_USAGE_GENERIC_VZ","features":[378]},{"name":"HID_USAGE_GENERIC_WHEEL","features":[378]},{"name":"HID_USAGE_GENERIC_X","features":[378]},{"name":"HID_USAGE_GENERIC_Y","features":[378]},{"name":"HID_USAGE_GENERIC_Z","features":[378]},{"name":"HID_USAGE_HAPTICS_AUTO_ASSOCIATED_CONTROL","features":[378]},{"name":"HID_USAGE_HAPTICS_AUTO_TRIGGER","features":[378]},{"name":"HID_USAGE_HAPTICS_DURATION_LIST","features":[378]},{"name":"HID_USAGE_HAPTICS_INTENSITY","features":[378]},{"name":"HID_USAGE_HAPTICS_MANUAL_TRIGGER","features":[378]},{"name":"HID_USAGE_HAPTICS_REPEAT_COUNT","features":[378]},{"name":"HID_USAGE_HAPTICS_RETRIGGER_PERIOD","features":[378]},{"name":"HID_USAGE_HAPTICS_SIMPLE_CONTROLLER","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BEGIN","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_BUZZ","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CLICK","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_CUTOFF_TIME","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_END","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_LIST","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_NULL","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_PRESS","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RELEASE","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_RUMBLE","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_STOP","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_BEGIN","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_END","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_ID","features":[378]},{"name":"HID_USAGE_HAPTICS_WAVEFORM_VENDOR_PAGE","features":[378]},{"name":"HID_USAGE_KEYBOARD_CAPS_LOCK","features":[378]},{"name":"HID_USAGE_KEYBOARD_DELETE","features":[378]},{"name":"HID_USAGE_KEYBOARD_DELETE_FORWARD","features":[378]},{"name":"HID_USAGE_KEYBOARD_ESCAPE","features":[378]},{"name":"HID_USAGE_KEYBOARD_F1","features":[378]},{"name":"HID_USAGE_KEYBOARD_F10","features":[378]},{"name":"HID_USAGE_KEYBOARD_F11","features":[378]},{"name":"HID_USAGE_KEYBOARD_F12","features":[378]},{"name":"HID_USAGE_KEYBOARD_F13","features":[378]},{"name":"HID_USAGE_KEYBOARD_F14","features":[378]},{"name":"HID_USAGE_KEYBOARD_F15","features":[378]},{"name":"HID_USAGE_KEYBOARD_F16","features":[378]},{"name":"HID_USAGE_KEYBOARD_F17","features":[378]},{"name":"HID_USAGE_KEYBOARD_F18","features":[378]},{"name":"HID_USAGE_KEYBOARD_F19","features":[378]},{"name":"HID_USAGE_KEYBOARD_F2","features":[378]},{"name":"HID_USAGE_KEYBOARD_F20","features":[378]},{"name":"HID_USAGE_KEYBOARD_F21","features":[378]},{"name":"HID_USAGE_KEYBOARD_F22","features":[378]},{"name":"HID_USAGE_KEYBOARD_F23","features":[378]},{"name":"HID_USAGE_KEYBOARD_F24","features":[378]},{"name":"HID_USAGE_KEYBOARD_F3","features":[378]},{"name":"HID_USAGE_KEYBOARD_F4","features":[378]},{"name":"HID_USAGE_KEYBOARD_F5","features":[378]},{"name":"HID_USAGE_KEYBOARD_F6","features":[378]},{"name":"HID_USAGE_KEYBOARD_F7","features":[378]},{"name":"HID_USAGE_KEYBOARD_F8","features":[378]},{"name":"HID_USAGE_KEYBOARD_F9","features":[378]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_0_AND_INSERT","features":[378]},{"name":"HID_USAGE_KEYBOARD_KEYPAD_1_AND_END","features":[378]},{"name":"HID_USAGE_KEYBOARD_LALT","features":[378]},{"name":"HID_USAGE_KEYBOARD_LCTRL","features":[378]},{"name":"HID_USAGE_KEYBOARD_LGUI","features":[378]},{"name":"HID_USAGE_KEYBOARD_LSHFT","features":[378]},{"name":"HID_USAGE_KEYBOARD_NOEVENT","features":[378]},{"name":"HID_USAGE_KEYBOARD_NUM_LOCK","features":[378]},{"name":"HID_USAGE_KEYBOARD_ONE","features":[378]},{"name":"HID_USAGE_KEYBOARD_POSTFAIL","features":[378]},{"name":"HID_USAGE_KEYBOARD_PRINT_SCREEN","features":[378]},{"name":"HID_USAGE_KEYBOARD_RALT","features":[378]},{"name":"HID_USAGE_KEYBOARD_RCTRL","features":[378]},{"name":"HID_USAGE_KEYBOARD_RETURN","features":[378]},{"name":"HID_USAGE_KEYBOARD_RGUI","features":[378]},{"name":"HID_USAGE_KEYBOARD_ROLLOVER","features":[378]},{"name":"HID_USAGE_KEYBOARD_RSHFT","features":[378]},{"name":"HID_USAGE_KEYBOARD_SCROLL_LOCK","features":[378]},{"name":"HID_USAGE_KEYBOARD_UNDEFINED","features":[378]},{"name":"HID_USAGE_KEYBOARD_ZERO","features":[378]},{"name":"HID_USAGE_KEYBOARD_aA","features":[378]},{"name":"HID_USAGE_KEYBOARD_zZ","features":[378]},{"name":"HID_USAGE_LAMPARRAY","features":[378]},{"name":"HID_USAGE_LAMPARRAY_ATTRBIUTES_REPORT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_AUTONOMOUS_MODE","features":[378]},{"name":"HID_USAGE_LAMPARRAY_BLUE_LEVEL_COUNT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_DEPTH_IN_MICROMETERS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_HEIGHT_IN_MICROMETERS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_BOUNDING_BOX_WIDTH_IN_MICROMETERS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_CONTROL_REPORT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_GREEN_LEVEL_COUNT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_INPUT_BINDING","features":[378]},{"name":"HID_USAGE_LAMPARRAY_INTENSITY_LEVEL_COUNT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_IS_PROGRAMMABLE","features":[378]},{"name":"HID_USAGE_LAMPARRAY_KIND","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_REQUEST_REPORT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ATTRIBUTES_RESPONSE_REPORT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_BLUE_UPDATE_CHANNEL","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_COUNT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_GREEN_UPDATE_CHANNEL","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_END","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_ID_START","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_INTENSITY_UPDATE_CHANNEL","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_MULTI_UPDATE_REPORT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_PURPOSES","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RANGE_UPDATE_REPORT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_RED_UPDATE_CHANNEL","features":[378]},{"name":"HID_USAGE_LAMPARRAY_LAMP_UPDATE_FLAGS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_MIN_UPDATE_INTERVAL_IN_MICROSECONDS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_POSITION_X_IN_MICROMETERS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Y_IN_MICROMETERS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_POSITION_Z_IN_MICROMETERS","features":[378]},{"name":"HID_USAGE_LAMPARRAY_RED_LEVEL_COUNT","features":[378]},{"name":"HID_USAGE_LAMPARRAY_UPDATE_LATENCY_IN_MICROSECONDS","features":[378]},{"name":"HID_USAGE_LED_AMBER","features":[378]},{"name":"HID_USAGE_LED_BATTERY_LOW","features":[378]},{"name":"HID_USAGE_LED_BATTERY_OK","features":[378]},{"name":"HID_USAGE_LED_BATTERY_OPERATION","features":[378]},{"name":"HID_USAGE_LED_BUSY","features":[378]},{"name":"HID_USAGE_LED_CALL_PICKUP","features":[378]},{"name":"HID_USAGE_LED_CAMERA_OFF","features":[378]},{"name":"HID_USAGE_LED_CAMERA_ON","features":[378]},{"name":"HID_USAGE_LED_CAPS_LOCK","features":[378]},{"name":"HID_USAGE_LED_CAV","features":[378]},{"name":"HID_USAGE_LED_CLV","features":[378]},{"name":"HID_USAGE_LED_COMPOSE","features":[378]},{"name":"HID_USAGE_LED_CONFERENCE","features":[378]},{"name":"HID_USAGE_LED_COVERAGE","features":[378]},{"name":"HID_USAGE_LED_DATA_MODE","features":[378]},{"name":"HID_USAGE_LED_DO_NOT_DISTURB","features":[378]},{"name":"HID_USAGE_LED_EQUALIZER_ENABLE","features":[378]},{"name":"HID_USAGE_LED_ERROR","features":[378]},{"name":"HID_USAGE_LED_EXTERNAL_POWER","features":[378]},{"name":"HID_USAGE_LED_FAST_BLINK_OFF_TIME","features":[378]},{"name":"HID_USAGE_LED_FAST_BLINK_ON_TIME","features":[378]},{"name":"HID_USAGE_LED_FAST_FORWARD","features":[378]},{"name":"HID_USAGE_LED_FLASH_ON_TIME","features":[378]},{"name":"HID_USAGE_LED_FORWARD","features":[378]},{"name":"HID_USAGE_LED_GENERIC_INDICATOR","features":[378]},{"name":"HID_USAGE_LED_GREEN","features":[378]},{"name":"HID_USAGE_LED_HEAD_SET","features":[378]},{"name":"HID_USAGE_LED_HIGH_CUT_FILTER","features":[378]},{"name":"HID_USAGE_LED_HOLD","features":[378]},{"name":"HID_USAGE_LED_INDICATOR_COLOR","features":[378]},{"name":"HID_USAGE_LED_INDICATOR_FAST_BLINK","features":[378]},{"name":"HID_USAGE_LED_INDICATOR_FLASH","features":[378]},{"name":"HID_USAGE_LED_INDICATOR_OFF","features":[378]},{"name":"HID_USAGE_LED_INDICATOR_ON","features":[378]},{"name":"HID_USAGE_LED_INDICATOR_SLOW_BLINK","features":[378]},{"name":"HID_USAGE_LED_IN_USE_INDICATOR","features":[378]},{"name":"HID_USAGE_LED_KANA","features":[378]},{"name":"HID_USAGE_LED_LOW_CUT_FILTER","features":[378]},{"name":"HID_USAGE_LED_MESSAGE_WAITING","features":[378]},{"name":"HID_USAGE_LED_MICROPHONE","features":[378]},{"name":"HID_USAGE_LED_MULTI_MODE_INDICATOR","features":[378]},{"name":"HID_USAGE_LED_MUTE","features":[378]},{"name":"HID_USAGE_LED_NIGHT_MODE","features":[378]},{"name":"HID_USAGE_LED_NUM_LOCK","features":[378]},{"name":"HID_USAGE_LED_OFF_HOOK","features":[378]},{"name":"HID_USAGE_LED_OFF_LINE","features":[378]},{"name":"HID_USAGE_LED_ON_LINE","features":[378]},{"name":"HID_USAGE_LED_PAPER_JAM","features":[378]},{"name":"HID_USAGE_LED_PAPER_OUT","features":[378]},{"name":"HID_USAGE_LED_PAUSE","features":[378]},{"name":"HID_USAGE_LED_PLAY","features":[378]},{"name":"HID_USAGE_LED_POWER","features":[378]},{"name":"HID_USAGE_LED_READY","features":[378]},{"name":"HID_USAGE_LED_RECORD","features":[378]},{"name":"HID_USAGE_LED_RECORDING_FORMAT_DET","features":[378]},{"name":"HID_USAGE_LED_RED","features":[378]},{"name":"HID_USAGE_LED_REMOTE","features":[378]},{"name":"HID_USAGE_LED_REPEAT","features":[378]},{"name":"HID_USAGE_LED_REVERSE","features":[378]},{"name":"HID_USAGE_LED_REWIND","features":[378]},{"name":"HID_USAGE_LED_RING","features":[378]},{"name":"HID_USAGE_LED_SAMPLING_RATE_DETECT","features":[378]},{"name":"HID_USAGE_LED_SCROLL_LOCK","features":[378]},{"name":"HID_USAGE_LED_SELECTED_INDICATOR","features":[378]},{"name":"HID_USAGE_LED_SEND_CALLS","features":[378]},{"name":"HID_USAGE_LED_SHIFT","features":[378]},{"name":"HID_USAGE_LED_SLOW_BLINK_OFF_TIME","features":[378]},{"name":"HID_USAGE_LED_SLOW_BLINK_ON_TIME","features":[378]},{"name":"HID_USAGE_LED_SOUND_FIELD_ON","features":[378]},{"name":"HID_USAGE_LED_SPEAKER","features":[378]},{"name":"HID_USAGE_LED_SPINNING","features":[378]},{"name":"HID_USAGE_LED_STAND_BY","features":[378]},{"name":"HID_USAGE_LED_STEREO","features":[378]},{"name":"HID_USAGE_LED_STOP","features":[378]},{"name":"HID_USAGE_LED_SURROUND_FIELD_ON","features":[378]},{"name":"HID_USAGE_LED_SYSTEM_SUSPEND","features":[378]},{"name":"HID_USAGE_LED_TONE_ENABLE","features":[378]},{"name":"HID_USAGE_MS_BTH_HF_DIALMEMORY","features":[378]},{"name":"HID_USAGE_MS_BTH_HF_DIALNUMBER","features":[378]},{"name":"HID_USAGE_PAGE_ALPHANUMERIC","features":[378]},{"name":"HID_USAGE_PAGE_ARCADE","features":[378]},{"name":"HID_USAGE_PAGE_BARCODE_SCANNER","features":[378]},{"name":"HID_USAGE_PAGE_BUTTON","features":[378]},{"name":"HID_USAGE_PAGE_CAMERA_CONTROL","features":[378]},{"name":"HID_USAGE_PAGE_CONSUMER","features":[378]},{"name":"HID_USAGE_PAGE_DIGITIZER","features":[378]},{"name":"HID_USAGE_PAGE_GAME","features":[378]},{"name":"HID_USAGE_PAGE_GENERIC","features":[378]},{"name":"HID_USAGE_PAGE_GENERIC_DEVICE","features":[378]},{"name":"HID_USAGE_PAGE_HAPTICS","features":[378]},{"name":"HID_USAGE_PAGE_KEYBOARD","features":[378]},{"name":"HID_USAGE_PAGE_LED","features":[378]},{"name":"HID_USAGE_PAGE_LIGHTING_ILLUMINATION","features":[378]},{"name":"HID_USAGE_PAGE_MAGNETIC_STRIPE_READER","features":[378]},{"name":"HID_USAGE_PAGE_MICROSOFT_BLUETOOTH_HANDSFREE","features":[378]},{"name":"HID_USAGE_PAGE_ORDINAL","features":[378]},{"name":"HID_USAGE_PAGE_PID","features":[378]},{"name":"HID_USAGE_PAGE_SENSOR","features":[378]},{"name":"HID_USAGE_PAGE_SIMULATION","features":[378]},{"name":"HID_USAGE_PAGE_SPORT","features":[378]},{"name":"HID_USAGE_PAGE_TELEPHONY","features":[378]},{"name":"HID_USAGE_PAGE_UNDEFINED","features":[378]},{"name":"HID_USAGE_PAGE_UNICODE","features":[378]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_BEGIN","features":[378]},{"name":"HID_USAGE_PAGE_VENDOR_DEFINED_END","features":[378]},{"name":"HID_USAGE_PAGE_VR","features":[378]},{"name":"HID_USAGE_PAGE_WEIGHING_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_ACCELLERATOR","features":[378]},{"name":"HID_USAGE_SIMULATION_AILERON","features":[378]},{"name":"HID_USAGE_SIMULATION_AILERON_TRIM","features":[378]},{"name":"HID_USAGE_SIMULATION_AIRPLANE_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_ANTI_TORQUE_CONTROL","features":[378]},{"name":"HID_USAGE_SIMULATION_AUTOMOBILE_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_AUTOPIOLOT_ENABLE","features":[378]},{"name":"HID_USAGE_SIMULATION_BALLAST","features":[378]},{"name":"HID_USAGE_SIMULATION_BARREL_ELEVATION","features":[378]},{"name":"HID_USAGE_SIMULATION_BICYCLE_CRANK","features":[378]},{"name":"HID_USAGE_SIMULATION_BICYCLE_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_BRAKE","features":[378]},{"name":"HID_USAGE_SIMULATION_CHAFF_RELEASE","features":[378]},{"name":"HID_USAGE_SIMULATION_CLUTCH","features":[378]},{"name":"HID_USAGE_SIMULATION_COLLECTIVE_CONTROL","features":[378]},{"name":"HID_USAGE_SIMULATION_CYCLIC_CONTROL","features":[378]},{"name":"HID_USAGE_SIMULATION_CYCLIC_TRIM","features":[378]},{"name":"HID_USAGE_SIMULATION_DIVE_BRAKE","features":[378]},{"name":"HID_USAGE_SIMULATION_DIVE_PLANE","features":[378]},{"name":"HID_USAGE_SIMULATION_ELECTRONIC_COUNTERMEASURES","features":[378]},{"name":"HID_USAGE_SIMULATION_ELEVATOR","features":[378]},{"name":"HID_USAGE_SIMULATION_ELEVATOR_TRIM","features":[378]},{"name":"HID_USAGE_SIMULATION_FLARE_RELEASE","features":[378]},{"name":"HID_USAGE_SIMULATION_FLIGHT_COMMUNICATIONS","features":[378]},{"name":"HID_USAGE_SIMULATION_FLIGHT_CONTROL_STICK","features":[378]},{"name":"HID_USAGE_SIMULATION_FLIGHT_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_FLIGHT_STICK","features":[378]},{"name":"HID_USAGE_SIMULATION_FLIGHT_YOKE","features":[378]},{"name":"HID_USAGE_SIMULATION_FRONT_BRAKE","features":[378]},{"name":"HID_USAGE_SIMULATION_HANDLE_BARS","features":[378]},{"name":"HID_USAGE_SIMULATION_HELICOPTER_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_LANDING_GEAR","features":[378]},{"name":"HID_USAGE_SIMULATION_MAGIC_CARPET_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_MOTORCYCLE_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_REAR_BRAKE","features":[378]},{"name":"HID_USAGE_SIMULATION_RUDDER","features":[378]},{"name":"HID_USAGE_SIMULATION_SAILING_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_SHIFTER","features":[378]},{"name":"HID_USAGE_SIMULATION_SPACESHIP_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_SPORTS_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_STEERING","features":[378]},{"name":"HID_USAGE_SIMULATION_SUBMARINE_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_TANK_SIMULATION_DEVICE","features":[378]},{"name":"HID_USAGE_SIMULATION_THROTTLE","features":[378]},{"name":"HID_USAGE_SIMULATION_TOE_BRAKE","features":[378]},{"name":"HID_USAGE_SIMULATION_TRACK_CONTROL","features":[378]},{"name":"HID_USAGE_SIMULATION_TRIGGER","features":[378]},{"name":"HID_USAGE_SIMULATION_TURRET_DIRECTION","features":[378]},{"name":"HID_USAGE_SIMULATION_WEAPONS_ARM","features":[378]},{"name":"HID_USAGE_SIMULATION_WEAPONS_SELECT","features":[378]},{"name":"HID_USAGE_SIMULATION_WING_FLAPS","features":[378]},{"name":"HID_USAGE_SPORT_10_IRON","features":[378]},{"name":"HID_USAGE_SPORT_11_IRON","features":[378]},{"name":"HID_USAGE_SPORT_1_IRON","features":[378]},{"name":"HID_USAGE_SPORT_1_WOOD","features":[378]},{"name":"HID_USAGE_SPORT_2_IRON","features":[378]},{"name":"HID_USAGE_SPORT_3_IRON","features":[378]},{"name":"HID_USAGE_SPORT_3_WOOD","features":[378]},{"name":"HID_USAGE_SPORT_4_IRON","features":[378]},{"name":"HID_USAGE_SPORT_5_IRON","features":[378]},{"name":"HID_USAGE_SPORT_5_WOOD","features":[378]},{"name":"HID_USAGE_SPORT_6_IRON","features":[378]},{"name":"HID_USAGE_SPORT_7_IRON","features":[378]},{"name":"HID_USAGE_SPORT_7_WOOD","features":[378]},{"name":"HID_USAGE_SPORT_8_IRON","features":[378]},{"name":"HID_USAGE_SPORT_9_IRON","features":[378]},{"name":"HID_USAGE_SPORT_9_WOOD","features":[378]},{"name":"HID_USAGE_SPORT_BASEBALL_BAT","features":[378]},{"name":"HID_USAGE_SPORT_FOLLOW_THROUGH","features":[378]},{"name":"HID_USAGE_SPORT_GOLF_CLUB","features":[378]},{"name":"HID_USAGE_SPORT_HEEL_TOE","features":[378]},{"name":"HID_USAGE_SPORT_HEIGHT","features":[378]},{"name":"HID_USAGE_SPORT_LOFT_WEDGE","features":[378]},{"name":"HID_USAGE_SPORT_OAR","features":[378]},{"name":"HID_USAGE_SPORT_POWER_WEDGE","features":[378]},{"name":"HID_USAGE_SPORT_PUTTER","features":[378]},{"name":"HID_USAGE_SPORT_RATE","features":[378]},{"name":"HID_USAGE_SPORT_ROWING_MACHINE","features":[378]},{"name":"HID_USAGE_SPORT_SAND_WEDGE","features":[378]},{"name":"HID_USAGE_SPORT_SLOPE","features":[378]},{"name":"HID_USAGE_SPORT_STICK_FACE_ANGLE","features":[378]},{"name":"HID_USAGE_SPORT_STICK_SPEED","features":[378]},{"name":"HID_USAGE_SPORT_STICK_TYPE","features":[378]},{"name":"HID_USAGE_SPORT_TEMPO","features":[378]},{"name":"HID_USAGE_SPORT_TREADMILL","features":[378]},{"name":"HID_USAGE_TELEPHONY_ANSWERING_MACHINE","features":[378]},{"name":"HID_USAGE_TELEPHONY_DROP","features":[378]},{"name":"HID_USAGE_TELEPHONY_HANDSET","features":[378]},{"name":"HID_USAGE_TELEPHONY_HEADSET","features":[378]},{"name":"HID_USAGE_TELEPHONY_HOST_AVAILABLE","features":[378]},{"name":"HID_USAGE_TELEPHONY_KEYPAD","features":[378]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_0","features":[378]},{"name":"HID_USAGE_TELEPHONY_KEYPAD_D","features":[378]},{"name":"HID_USAGE_TELEPHONY_LINE","features":[378]},{"name":"HID_USAGE_TELEPHONY_MESSAGE_CONTROLS","features":[378]},{"name":"HID_USAGE_TELEPHONY_PHONE","features":[378]},{"name":"HID_USAGE_TELEPHONY_PROGRAMMABLE_BUTTON","features":[378]},{"name":"HID_USAGE_TELEPHONY_REDIAL","features":[378]},{"name":"HID_USAGE_TELEPHONY_RING_ENABLE","features":[378]},{"name":"HID_USAGE_TELEPHONY_SEND","features":[378]},{"name":"HID_USAGE_TELEPHONY_TRANSFER","features":[378]},{"name":"HID_USAGE_VR_ANIMATRONIC_DEVICE","features":[378]},{"name":"HID_USAGE_VR_BELT","features":[378]},{"name":"HID_USAGE_VR_BODY_SUIT","features":[378]},{"name":"HID_USAGE_VR_DISPLAY_ENABLE","features":[378]},{"name":"HID_USAGE_VR_FLEXOR","features":[378]},{"name":"HID_USAGE_VR_GLOVE","features":[378]},{"name":"HID_USAGE_VR_HAND_TRACKER","features":[378]},{"name":"HID_USAGE_VR_HEAD_MOUNTED_DISPLAY","features":[378]},{"name":"HID_USAGE_VR_HEAD_TRACKER","features":[378]},{"name":"HID_USAGE_VR_OCULOMETER","features":[378]},{"name":"HID_USAGE_VR_STEREO_ENABLE","features":[378]},{"name":"HID_USAGE_VR_VEST","features":[378]},{"name":"HID_XFER_PACKET","features":[378]},{"name":"HORIZONTAL_WHEEL_PRESENT","features":[378]},{"name":"HidD_FlushQueue","features":[378,305]},{"name":"HidD_FreePreparsedData","features":[378,305]},{"name":"HidD_GetAttributes","features":[378,305]},{"name":"HidD_GetConfiguration","features":[378,305]},{"name":"HidD_GetFeature","features":[378,305]},{"name":"HidD_GetHidGuid","features":[378]},{"name":"HidD_GetIndexedString","features":[378,305]},{"name":"HidD_GetInputReport","features":[378,305]},{"name":"HidD_GetManufacturerString","features":[378,305]},{"name":"HidD_GetMsGenreDescriptor","features":[378,305]},{"name":"HidD_GetNumInputBuffers","features":[378,305]},{"name":"HidD_GetPhysicalDescriptor","features":[378,305]},{"name":"HidD_GetPreparsedData","features":[378,305]},{"name":"HidD_GetProductString","features":[378,305]},{"name":"HidD_GetSerialNumberString","features":[378,305]},{"name":"HidD_SetConfiguration","features":[378,305]},{"name":"HidD_SetFeature","features":[378,305]},{"name":"HidD_SetNumInputBuffers","features":[378,305]},{"name":"HidD_SetOutputReport","features":[378,305]},{"name":"HidP_Feature","features":[378]},{"name":"HidP_GetButtonArray","features":[378,305]},{"name":"HidP_GetButtonCaps","features":[378,305]},{"name":"HidP_GetCaps","features":[378,305]},{"name":"HidP_GetData","features":[378,305]},{"name":"HidP_GetExtendedAttributes","features":[378,305]},{"name":"HidP_GetLinkCollectionNodes","features":[378,305]},{"name":"HidP_GetScaledUsageValue","features":[378,305]},{"name":"HidP_GetSpecificButtonCaps","features":[378,305]},{"name":"HidP_GetSpecificValueCaps","features":[378,305]},{"name":"HidP_GetUsageValue","features":[378,305]},{"name":"HidP_GetUsageValueArray","features":[378,305]},{"name":"HidP_GetUsages","features":[378,305]},{"name":"HidP_GetUsagesEx","features":[378,305]},{"name":"HidP_GetValueCaps","features":[378,305]},{"name":"HidP_InitializeReportForID","features":[378,305]},{"name":"HidP_Input","features":[378]},{"name":"HidP_Keyboard_Break","features":[378]},{"name":"HidP_Keyboard_Make","features":[378]},{"name":"HidP_MaxDataListLength","features":[378]},{"name":"HidP_MaxUsageListLength","features":[378]},{"name":"HidP_Output","features":[378]},{"name":"HidP_SetButtonArray","features":[378,305]},{"name":"HidP_SetData","features":[378,305]},{"name":"HidP_SetScaledUsageValue","features":[378,305]},{"name":"HidP_SetUsageValue","features":[378,305]},{"name":"HidP_SetUsageValueArray","features":[378,305]},{"name":"HidP_SetUsages","features":[378,305]},{"name":"HidP_TranslateUsagesToI8042ScanCodes","features":[378,305]},{"name":"HidP_UnsetUsages","features":[378,305]},{"name":"HidP_UsageListDifference","features":[378,305]},{"name":"IDirectInput2A","features":[378]},{"name":"IDirectInput2W","features":[378]},{"name":"IDirectInput7A","features":[378]},{"name":"IDirectInput7W","features":[378]},{"name":"IDirectInput8A","features":[378]},{"name":"IDirectInput8W","features":[378]},{"name":"IDirectInputA","features":[378]},{"name":"IDirectInputDevice2A","features":[378]},{"name":"IDirectInputDevice2W","features":[378]},{"name":"IDirectInputDevice7A","features":[378]},{"name":"IDirectInputDevice7W","features":[378]},{"name":"IDirectInputDevice8A","features":[378]},{"name":"IDirectInputDevice8W","features":[378]},{"name":"IDirectInputDeviceA","features":[378]},{"name":"IDirectInputDeviceW","features":[378]},{"name":"IDirectInputEffect","features":[378]},{"name":"IDirectInputEffectDriver","features":[378]},{"name":"IDirectInputJoyConfig","features":[378]},{"name":"IDirectInputJoyConfig8","features":[378]},{"name":"IDirectInputW","features":[378]},{"name":"INDICATOR_LIST","features":[378]},{"name":"INPUT_BUTTON_ENABLE_INFO","features":[378,305]},{"name":"IOCTL_BUTTON_GET_ENABLED_ON_IDLE","features":[378]},{"name":"IOCTL_BUTTON_SET_ENABLED_ON_IDLE","features":[378]},{"name":"IOCTL_KEYBOARD_INSERT_DATA","features":[378]},{"name":"IOCTL_KEYBOARD_QUERY_ATTRIBUTES","features":[378]},{"name":"IOCTL_KEYBOARD_QUERY_EXTENDED_ATTRIBUTES","features":[378]},{"name":"IOCTL_KEYBOARD_QUERY_IME_STATUS","features":[378]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATORS","features":[378]},{"name":"IOCTL_KEYBOARD_QUERY_INDICATOR_TRANSLATION","features":[378]},{"name":"IOCTL_KEYBOARD_QUERY_TYPEMATIC","features":[378]},{"name":"IOCTL_KEYBOARD_SET_IME_STATUS","features":[378]},{"name":"IOCTL_KEYBOARD_SET_INDICATORS","features":[378]},{"name":"IOCTL_KEYBOARD_SET_TYPEMATIC","features":[378]},{"name":"IOCTL_MOUSE_INSERT_DATA","features":[378]},{"name":"IOCTL_MOUSE_QUERY_ATTRIBUTES","features":[378]},{"name":"JOYCALIBRATE","features":[378]},{"name":"JOYPOS","features":[378]},{"name":"JOYRANGE","features":[378]},{"name":"JOYREGHWCONFIG","features":[378]},{"name":"JOYREGHWSETTINGS","features":[378]},{"name":"JOYREGHWVALUES","features":[378]},{"name":"JOYREGUSERVALUES","features":[378]},{"name":"JOYTYPE_ANALOGCOMPAT","features":[378]},{"name":"JOYTYPE_DEFAULTPROPSHEET","features":[378]},{"name":"JOYTYPE_DEVICEHIDE","features":[378]},{"name":"JOYTYPE_ENABLEINPUTREPORT","features":[378]},{"name":"JOYTYPE_GAMEHIDE","features":[378]},{"name":"JOYTYPE_HIDEACTIVE","features":[378]},{"name":"JOYTYPE_INFODEFAULT","features":[378]},{"name":"JOYTYPE_INFOMASK","features":[378]},{"name":"JOYTYPE_INFOYRPEDALS","features":[378]},{"name":"JOYTYPE_INFOYYPEDALS","features":[378]},{"name":"JOYTYPE_INFOZISSLIDER","features":[378]},{"name":"JOYTYPE_INFOZISZ","features":[378]},{"name":"JOYTYPE_INFOZRPEDALS","features":[378]},{"name":"JOYTYPE_INFOZYPEDALS","features":[378]},{"name":"JOYTYPE_KEYBHIDE","features":[378]},{"name":"JOYTYPE_MOUSEHIDE","features":[378]},{"name":"JOYTYPE_NOAUTODETECTGAMEPORT","features":[378]},{"name":"JOYTYPE_NOHIDDIRECT","features":[378]},{"name":"JOYTYPE_ZEROGAMEENUMOEMDATA","features":[378]},{"name":"JOY_HWS_AUTOLOAD","features":[378]},{"name":"JOY_HWS_GAMEPORTBUSBUSY","features":[378]},{"name":"JOY_HWS_HASPOV","features":[378]},{"name":"JOY_HWS_HASR","features":[378]},{"name":"JOY_HWS_HASU","features":[378]},{"name":"JOY_HWS_HASV","features":[378]},{"name":"JOY_HWS_HASZ","features":[378]},{"name":"JOY_HWS_ISANALOGPORTDRIVER","features":[378]},{"name":"JOY_HWS_ISCARCTRL","features":[378]},{"name":"JOY_HWS_ISGAMEPAD","features":[378]},{"name":"JOY_HWS_ISGAMEPORTBUS","features":[378]},{"name":"JOY_HWS_ISGAMEPORTDRIVER","features":[378]},{"name":"JOY_HWS_ISHEADTRACKER","features":[378]},{"name":"JOY_HWS_ISYOKE","features":[378]},{"name":"JOY_HWS_NODEVNODE","features":[378]},{"name":"JOY_HWS_POVISBUTTONCOMBOS","features":[378]},{"name":"JOY_HWS_POVISJ1X","features":[378]},{"name":"JOY_HWS_POVISJ1Y","features":[378]},{"name":"JOY_HWS_POVISJ2X","features":[378]},{"name":"JOY_HWS_POVISPOLL","features":[378]},{"name":"JOY_HWS_RISJ1X","features":[378]},{"name":"JOY_HWS_RISJ1Y","features":[378]},{"name":"JOY_HWS_RISJ2Y","features":[378]},{"name":"JOY_HWS_XISJ1Y","features":[378]},{"name":"JOY_HWS_XISJ2X","features":[378]},{"name":"JOY_HWS_XISJ2Y","features":[378]},{"name":"JOY_HWS_YISJ1X","features":[378]},{"name":"JOY_HWS_YISJ2X","features":[378]},{"name":"JOY_HWS_YISJ2Y","features":[378]},{"name":"JOY_HWS_ZISJ1X","features":[378]},{"name":"JOY_HWS_ZISJ1Y","features":[378]},{"name":"JOY_HWS_ZISJ2X","features":[378]},{"name":"JOY_HW_2A_2B_GENERIC","features":[378]},{"name":"JOY_HW_2A_4B_GENERIC","features":[378]},{"name":"JOY_HW_2B_FLIGHTYOKE","features":[378]},{"name":"JOY_HW_2B_FLIGHTYOKETHROTTLE","features":[378]},{"name":"JOY_HW_2B_GAMEPAD","features":[378]},{"name":"JOY_HW_3A_2B_GENERIC","features":[378]},{"name":"JOY_HW_3A_4B_GENERIC","features":[378]},{"name":"JOY_HW_4B_FLIGHTYOKE","features":[378]},{"name":"JOY_HW_4B_FLIGHTYOKETHROTTLE","features":[378]},{"name":"JOY_HW_4B_GAMEPAD","features":[378]},{"name":"JOY_HW_CUSTOM","features":[378]},{"name":"JOY_HW_LASTENTRY","features":[378]},{"name":"JOY_HW_NONE","features":[378]},{"name":"JOY_HW_TWO_2A_2B_WITH_Y","features":[378]},{"name":"JOY_ISCAL_POV","features":[378]},{"name":"JOY_ISCAL_R","features":[378]},{"name":"JOY_ISCAL_U","features":[378]},{"name":"JOY_ISCAL_V","features":[378]},{"name":"JOY_ISCAL_XY","features":[378]},{"name":"JOY_ISCAL_Z","features":[378]},{"name":"JOY_OEMPOLL_PASSDRIVERDATA","features":[378]},{"name":"JOY_PASSDRIVERDATA","features":[378]},{"name":"JOY_POVVAL_BACKWARD","features":[378]},{"name":"JOY_POVVAL_FORWARD","features":[378]},{"name":"JOY_POVVAL_LEFT","features":[378]},{"name":"JOY_POVVAL_RIGHT","features":[378]},{"name":"JOY_POV_NUMDIRS","features":[378]},{"name":"JOY_US_HASRUDDER","features":[378]},{"name":"JOY_US_ISOEM","features":[378]},{"name":"JOY_US_PRESENT","features":[378]},{"name":"JOY_US_RESERVED","features":[378]},{"name":"JOY_US_VOLATILE","features":[378]},{"name":"KEYBOARD_ATTRIBUTES","features":[378]},{"name":"KEYBOARD_CAPS_LOCK_ON","features":[378]},{"name":"KEYBOARD_ERROR_VALUE_BASE","features":[378]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES","features":[378]},{"name":"KEYBOARD_EXTENDED_ATTRIBUTES_STRUCT_VERSION_1","features":[378]},{"name":"KEYBOARD_ID","features":[378]},{"name":"KEYBOARD_IME_STATUS","features":[378]},{"name":"KEYBOARD_INDICATOR_PARAMETERS","features":[378]},{"name":"KEYBOARD_INDICATOR_TRANSLATION","features":[378]},{"name":"KEYBOARD_INPUT_DATA","features":[378]},{"name":"KEYBOARD_KANA_LOCK_ON","features":[378]},{"name":"KEYBOARD_LED_INJECTED","features":[378]},{"name":"KEYBOARD_NUM_LOCK_ON","features":[378]},{"name":"KEYBOARD_OVERRUN_MAKE_CODE","features":[378]},{"name":"KEYBOARD_SCROLL_LOCK_ON","features":[378]},{"name":"KEYBOARD_SHADOW","features":[378]},{"name":"KEYBOARD_TYPEMATIC_PARAMETERS","features":[378]},{"name":"KEYBOARD_UNIT_ID_PARAMETER","features":[378]},{"name":"KEY_BREAK","features":[378]},{"name":"KEY_E0","features":[378]},{"name":"KEY_E1","features":[378]},{"name":"KEY_FROM_KEYBOARD_OVERRIDER","features":[378]},{"name":"KEY_MAKE","features":[378]},{"name":"KEY_RIM_VKEY","features":[378]},{"name":"KEY_TERMSRV_SET_LED","features":[378]},{"name":"KEY_TERMSRV_SHADOW","features":[378]},{"name":"KEY_TERMSRV_VKPACKET","features":[378]},{"name":"KEY_UNICODE_SEQUENCE_END","features":[378]},{"name":"KEY_UNICODE_SEQUENCE_ITEM","features":[378]},{"name":"LPDICONFIGUREDEVICESCALLBACK","features":[378,305]},{"name":"LPDIENUMCREATEDEFFECTOBJECTSCALLBACK","features":[378,305]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKA","features":[378,305]},{"name":"LPDIENUMDEVICEOBJECTSCALLBACKW","features":[378,305]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBA","features":[378,305]},{"name":"LPDIENUMDEVICESBYSEMANTICSCBW","features":[378,305]},{"name":"LPDIENUMDEVICESCALLBACKA","features":[378,305]},{"name":"LPDIENUMDEVICESCALLBACKW","features":[378,305]},{"name":"LPDIENUMEFFECTSCALLBACKA","features":[378,305]},{"name":"LPDIENUMEFFECTSCALLBACKW","features":[378,305]},{"name":"LPDIENUMEFFECTSINFILECALLBACK","features":[378,305]},{"name":"LPDIJOYTYPECALLBACK","features":[378,305]},{"name":"LPFNSHOWJOYCPL","features":[378,305]},{"name":"MAXCPOINTSNUM","features":[378]},{"name":"MAX_JOYSTICKOEMVXDNAME","features":[378]},{"name":"MAX_JOYSTRING","features":[378]},{"name":"MOUSE_ATTRIBUTES","features":[378]},{"name":"MOUSE_BUTTON_1_DOWN","features":[378]},{"name":"MOUSE_BUTTON_1_UP","features":[378]},{"name":"MOUSE_BUTTON_2_DOWN","features":[378]},{"name":"MOUSE_BUTTON_2_UP","features":[378]},{"name":"MOUSE_BUTTON_3_DOWN","features":[378]},{"name":"MOUSE_BUTTON_3_UP","features":[378]},{"name":"MOUSE_BUTTON_4_DOWN","features":[378]},{"name":"MOUSE_BUTTON_4_UP","features":[378]},{"name":"MOUSE_BUTTON_5_DOWN","features":[378]},{"name":"MOUSE_BUTTON_5_UP","features":[378]},{"name":"MOUSE_ERROR_VALUE_BASE","features":[378]},{"name":"MOUSE_HID_HARDWARE","features":[378]},{"name":"MOUSE_HWHEEL","features":[378]},{"name":"MOUSE_I8042_HARDWARE","features":[378]},{"name":"MOUSE_INPORT_HARDWARE","features":[378]},{"name":"MOUSE_INPUT_DATA","features":[378]},{"name":"MOUSE_LEFT_BUTTON_DOWN","features":[378]},{"name":"MOUSE_LEFT_BUTTON_UP","features":[378]},{"name":"MOUSE_MIDDLE_BUTTON_DOWN","features":[378]},{"name":"MOUSE_MIDDLE_BUTTON_UP","features":[378]},{"name":"MOUSE_RIGHT_BUTTON_DOWN","features":[378]},{"name":"MOUSE_RIGHT_BUTTON_UP","features":[378]},{"name":"MOUSE_SERIAL_HARDWARE","features":[378]},{"name":"MOUSE_TERMSRV_SRC_SHADOW","features":[378]},{"name":"MOUSE_UNIT_ID_PARAMETER","features":[378]},{"name":"MOUSE_WHEEL","features":[378]},{"name":"PFN_HidP_GetVersionInternal","features":[378,305]},{"name":"PHIDP_INSERT_SCANCODES","features":[378,305]},{"name":"PHIDP_PREPARSED_DATA","features":[378]},{"name":"USAGE_AND_PAGE","features":[378]},{"name":"WHEELMOUSE_HID_HARDWARE","features":[378]},{"name":"WHEELMOUSE_I8042_HARDWARE","features":[378]},{"name":"WHEELMOUSE_SERIAL_HARDWARE","features":[378]},{"name":"joyConfigChanged","features":[378]}],"382":[{"name":"ADVANCED_DUP","features":[379]},{"name":"ADVANCED_DUPLEX","features":[379]},{"name":"ALL_PAGES","features":[379]},{"name":"AUTO_ADVANCE","features":[379]},{"name":"AUTO_SOURCE","features":[379]},{"name":"BACK_FIRST","features":[379]},{"name":"BACK_ONLY","features":[379]},{"name":"BARCODE_READER","features":[379]},{"name":"BARCODE_READER_READY","features":[379]},{"name":"BASE_VAL_WIA_ERROR","features":[379]},{"name":"BASE_VAL_WIA_SUCCESS","features":[379]},{"name":"BOTTOM_JUSTIFIED","features":[379]},{"name":"BUS_TYPE_FIREWIRE","features":[379]},{"name":"BUS_TYPE_PARALLEL","features":[379]},{"name":"BUS_TYPE_SCSI","features":[379]},{"name":"BUS_TYPE_USB","features":[379]},{"name":"CAPTUREMODE_BURST","features":[379]},{"name":"CAPTUREMODE_NORMAL","features":[379]},{"name":"CAPTUREMODE_TIMELAPSE","features":[379]},{"name":"CENTERED","features":[379]},{"name":"CFSTR_WIAITEMNAMES","features":[379]},{"name":"CFSTR_WIAITEMPTR","features":[379]},{"name":"CLSID_WiaDefaultSegFilter","features":[379]},{"name":"CMD_GETADFAVAILABLE","features":[379]},{"name":"CMD_GETADFHASPAPER","features":[379]},{"name":"CMD_GETADFOPEN","features":[379]},{"name":"CMD_GETADFREADY","features":[379]},{"name":"CMD_GETADFSTATUS","features":[379]},{"name":"CMD_GETADFUNLOADREADY","features":[379]},{"name":"CMD_GETCAPABILITIES","features":[379]},{"name":"CMD_GETSUPPORTEDFILEFORMATS","features":[379]},{"name":"CMD_GETSUPPORTEDMEMORYFORMATS","features":[379]},{"name":"CMD_GETTPAAVAILABLE","features":[379]},{"name":"CMD_GETTPAOPENED","features":[379]},{"name":"CMD_GET_INTERRUPT_EVENT","features":[379]},{"name":"CMD_INITIALIZE","features":[379]},{"name":"CMD_LOAD_ADF","features":[379]},{"name":"CMD_RESETSCANNER","features":[379]},{"name":"CMD_SENDSCSICOMMAND","features":[379]},{"name":"CMD_SETCOLORDITHER","features":[379]},{"name":"CMD_SETCONTRAST","features":[379]},{"name":"CMD_SETDATATYPE","features":[379]},{"name":"CMD_SETDITHER","features":[379]},{"name":"CMD_SETFILTER","features":[379]},{"name":"CMD_SETFORMAT","features":[379]},{"name":"CMD_SETGSDNAME","features":[379]},{"name":"CMD_SETINTENSITY","features":[379]},{"name":"CMD_SETLAMP","features":[379]},{"name":"CMD_SETMATRIX","features":[379]},{"name":"CMD_SETMIRROR","features":[379]},{"name":"CMD_SETNEGATIVE","features":[379]},{"name":"CMD_SETSCANMODE","features":[379]},{"name":"CMD_SETSPEED","features":[379]},{"name":"CMD_SETSTIDEVICEHKEY","features":[379]},{"name":"CMD_SETTONEMAP","features":[379]},{"name":"CMD_SETXRESOLUTION","features":[379]},{"name":"CMD_SETYRESOLUTION","features":[379]},{"name":"CMD_STI_DEVICERESET","features":[379]},{"name":"CMD_STI_DIAGNOSTIC","features":[379]},{"name":"CMD_STI_GETSTATUS","features":[379]},{"name":"CMD_TPAREADY","features":[379]},{"name":"CMD_UNINITIALIZE","features":[379]},{"name":"CMD_UNLOAD_ADF","features":[379]},{"name":"COPY_PARENT_PROPERTY_VALUES","features":[379]},{"name":"DETECT_DUP","features":[379]},{"name":"DETECT_DUP_AVAIL","features":[379]},{"name":"DETECT_FEED","features":[379]},{"name":"DETECT_FEED_AVAIL","features":[379]},{"name":"DETECT_FILM_TPA","features":[379]},{"name":"DETECT_FLAT","features":[379]},{"name":"DETECT_SCAN","features":[379]},{"name":"DETECT_STOR","features":[379]},{"name":"DEVICEDIALOGDATA","features":[379,305]},{"name":"DEVICEDIALOGDATA2","features":[379,305]},{"name":"DEVICE_ATTENTION","features":[379]},{"name":"DUP","features":[379]},{"name":"DUPLEX","features":[379]},{"name":"DUP_READY","features":[379]},{"name":"DeviceDialogFunction","features":[379,305]},{"name":"EFFECTMODE_BW","features":[379]},{"name":"EFFECTMODE_SEPIA","features":[379]},{"name":"EFFECTMODE_STANDARD","features":[379]},{"name":"ENDORSER","features":[379]},{"name":"ENDORSER_READY","features":[379]},{"name":"ESC_TWAIN_CAPABILITY","features":[379]},{"name":"ESC_TWAIN_PRIVATE_SUPPORTED_CAPS","features":[379]},{"name":"EXPOSUREMETERING_AVERAGE","features":[379]},{"name":"EXPOSUREMETERING_CENTERSPOT","features":[379]},{"name":"EXPOSUREMETERING_CENTERWEIGHT","features":[379]},{"name":"EXPOSUREMETERING_MULTISPOT","features":[379]},{"name":"EXPOSUREMODE_APERTURE_PRIORITY","features":[379]},{"name":"EXPOSUREMODE_AUTO","features":[379]},{"name":"EXPOSUREMODE_MANUAL","features":[379]},{"name":"EXPOSUREMODE_PORTRAIT","features":[379]},{"name":"EXPOSUREMODE_PROGRAM_ACTION","features":[379]},{"name":"EXPOSUREMODE_PROGRAM_CREATIVE","features":[379]},{"name":"EXPOSUREMODE_SHUTTER_PRIORITY","features":[379]},{"name":"FEED","features":[379]},{"name":"FEEDER","features":[379]},{"name":"FEED_READY","features":[379]},{"name":"FILM_TPA","features":[379]},{"name":"FILM_TPA_READY","features":[379]},{"name":"FLASHMODE_AUTO","features":[379]},{"name":"FLASHMODE_EXTERNALSYNC","features":[379]},{"name":"FLASHMODE_FILL","features":[379]},{"name":"FLASHMODE_OFF","features":[379]},{"name":"FLASHMODE_REDEYE_AUTO","features":[379]},{"name":"FLASHMODE_REDEYE_FILL","features":[379]},{"name":"FLAT","features":[379]},{"name":"FLATBED","features":[379]},{"name":"FLAT_COVER_UP","features":[379]},{"name":"FLAT_READY","features":[379]},{"name":"FOCUSMETERING_CENTERSPOT","features":[379]},{"name":"FOCUSMETERING_MULTISPOT","features":[379]},{"name":"FOCUSMODE_AUTO","features":[379]},{"name":"FOCUSMODE_MACROAUTO","features":[379]},{"name":"FOCUSMODE_MANUAL","features":[379]},{"name":"FRONT_FIRST","features":[379]},{"name":"FRONT_ONLY","features":[379]},{"name":"GUID_DEVINTERFACE_IMAGE","features":[379]},{"name":"IEnumWIA_DEV_CAPS","features":[379]},{"name":"IEnumWIA_DEV_INFO","features":[379]},{"name":"IEnumWIA_FORMAT_INFO","features":[379]},{"name":"IEnumWiaItem","features":[379]},{"name":"IEnumWiaItem2","features":[379]},{"name":"IMPRINTER","features":[379]},{"name":"IMPRINTER_READY","features":[379]},{"name":"IT_MSG_DATA","features":[379]},{"name":"IT_MSG_DATA_HEADER","features":[379]},{"name":"IT_MSG_FILE_PREVIEW_DATA","features":[379]},{"name":"IT_MSG_FILE_PREVIEW_DATA_HEADER","features":[379]},{"name":"IT_MSG_NEW_PAGE","features":[379]},{"name":"IT_MSG_STATUS","features":[379]},{"name":"IT_MSG_TERMINATION","features":[379]},{"name":"IT_STATUS_MASK","features":[379]},{"name":"IT_STATUS_PROCESSING_DATA","features":[379]},{"name":"IT_STATUS_TRANSFER_FROM_DEVICE","features":[379]},{"name":"IT_STATUS_TRANSFER_TO_CLIENT","features":[379]},{"name":"IWiaAppErrorHandler","features":[379]},{"name":"IWiaDataCallback","features":[379]},{"name":"IWiaDataTransfer","features":[379]},{"name":"IWiaDevMgr","features":[379]},{"name":"IWiaDevMgr2","features":[379]},{"name":"IWiaDrvItem","features":[379]},{"name":"IWiaErrorHandler","features":[379]},{"name":"IWiaEventCallback","features":[379]},{"name":"IWiaImageFilter","features":[379]},{"name":"IWiaItem","features":[379]},{"name":"IWiaItem2","features":[379]},{"name":"IWiaItemExtras","features":[379]},{"name":"IWiaLog","features":[379]},{"name":"IWiaLogEx","features":[379]},{"name":"IWiaMiniDrv","features":[379]},{"name":"IWiaMiniDrvCallBack","features":[379]},{"name":"IWiaMiniDrvTransferCallback","features":[379]},{"name":"IWiaNotifyDevMgr","features":[379]},{"name":"IWiaPreview","features":[379]},{"name":"IWiaPropertyStorage","features":[379]},{"name":"IWiaSegmentationFilter","features":[379]},{"name":"IWiaTransfer","features":[379]},{"name":"IWiaTransferCallback","features":[379]},{"name":"IWiaUIExtension","features":[379]},{"name":"IWiaUIExtension2","features":[379]},{"name":"IWiaVideo","features":[379]},{"name":"LAMP_ERR","features":[379]},{"name":"LANDSCAPE","features":[379]},{"name":"LANSCAPE","features":[379]},{"name":"LEFT_JUSTIFIED","features":[379]},{"name":"LIGHT_SOURCE_DETECT_READY","features":[379]},{"name":"LIGHT_SOURCE_NEGATIVE","features":[379]},{"name":"LIGHT_SOURCE_POSITIVE","features":[379]},{"name":"LIGHT_SOURCE_PRESENT","features":[379]},{"name":"LIGHT_SOURCE_PRESENT_DETECT","features":[379]},{"name":"LIGHT_SOURCE_READY","features":[379]},{"name":"LIGHT_SOURCE_SELECT","features":[379]},{"name":"MAX_ANSI_CHAR","features":[379]},{"name":"MAX_IO_HANDLES","features":[379]},{"name":"MAX_RESERVED","features":[379]},{"name":"MCRO_ERROR_GENERAL_ERROR","features":[379]},{"name":"MCRO_ERROR_OFFLINE","features":[379]},{"name":"MCRO_ERROR_PAPER_EMPTY","features":[379]},{"name":"MCRO_ERROR_PAPER_JAM","features":[379]},{"name":"MCRO_ERROR_PAPER_PROBLEM","features":[379]},{"name":"MCRO_ERROR_USER_INTERVENTION","features":[379]},{"name":"MCRO_STATUS_OK","features":[379]},{"name":"MICR_READER","features":[379]},{"name":"MICR_READER_READY","features":[379]},{"name":"MINIDRV_TRANSFER_CONTEXT","features":[379,305]},{"name":"MIRRORED","features":[379]},{"name":"MULTIPLE_FEED","features":[379]},{"name":"NEXT_PAGE","features":[379]},{"name":"PAPER_JAM","features":[379]},{"name":"PATCH_CODE_READER","features":[379]},{"name":"PATCH_CODE_READER_READY","features":[379]},{"name":"PATH_COVER_UP","features":[379]},{"name":"PORTRAIT","features":[379]},{"name":"POWERMODE_BATTERY","features":[379]},{"name":"POWERMODE_LINE","features":[379]},{"name":"PREFEED","features":[379]},{"name":"RANGEVALUE","features":[379]},{"name":"RIGHT_JUSTIFIED","features":[379]},{"name":"ROT180","features":[379]},{"name":"ROT270","features":[379]},{"name":"SCANINFO","features":[379,305]},{"name":"SCANMODE_FINALSCAN","features":[379]},{"name":"SCANMODE_PREVIEWSCAN","features":[379]},{"name":"SCANWINDOW","features":[379]},{"name":"SCAN_FINISHED","features":[379]},{"name":"SCAN_FIRST","features":[379]},{"name":"SCAN_NEXT","features":[379]},{"name":"SHELLEX_WIAUIEXTENSION_NAME","features":[379]},{"name":"STOR","features":[379]},{"name":"STORAGE_FULL","features":[379]},{"name":"STORAGE_READY","features":[379]},{"name":"SUPPORT_BW","features":[379]},{"name":"SUPPORT_COLOR","features":[379]},{"name":"SUPPORT_GRAYSCALE","features":[379]},{"name":"TOP_JUSTIFIED","features":[379]},{"name":"TRANSPARENCY_DYNAMIC_FRAME_SUPPORT","features":[379]},{"name":"TRANSPARENCY_STATIC_FRAME_SUPPORT","features":[379]},{"name":"TWAIN_CAPABILITY","features":[379]},{"name":"TYMED_CALLBACK","features":[379]},{"name":"TYMED_MULTIPAGE_CALLBACK","features":[379]},{"name":"TYMED_MULTIPAGE_FILE","features":[379]},{"name":"VAL","features":[379,305]},{"name":"WHITEBALANCE_AUTO","features":[379]},{"name":"WHITEBALANCE_DAYLIGHT","features":[379]},{"name":"WHITEBALANCE_FLASH","features":[379]},{"name":"WHITEBALANCE_FLORESCENT","features":[379]},{"name":"WHITEBALANCE_MANUAL","features":[379]},{"name":"WHITEBALANCE_ONEPUSH_AUTO","features":[379]},{"name":"WHITEBALANCE_TUNGSTEN","features":[379]},{"name":"WIAS_CHANGED_VALUE_INFO","features":[379,305]},{"name":"WIAS_DOWN_SAMPLE_INFO","features":[379]},{"name":"WIAS_ENDORSER_INFO","features":[379]},{"name":"WIAS_ENDORSER_VALUE","features":[379]},{"name":"WIAU_DEBUG_TSTR","features":[379]},{"name":"WIAVIDEO_CREATING_VIDEO","features":[379]},{"name":"WIAVIDEO_DESTROYING_VIDEO","features":[379]},{"name":"WIAVIDEO_NO_VIDEO","features":[379]},{"name":"WIAVIDEO_STATE","features":[379]},{"name":"WIAVIDEO_VIDEO_CREATED","features":[379]},{"name":"WIAVIDEO_VIDEO_PAUSED","features":[379]},{"name":"WIAVIDEO_VIDEO_PLAYING","features":[379]},{"name":"WIA_ACTION_EVENT","features":[379]},{"name":"WIA_ADVANCED_PREVIEW","features":[379]},{"name":"WIA_ALARM_BEEP1","features":[379]},{"name":"WIA_ALARM_BEEP10","features":[379]},{"name":"WIA_ALARM_BEEP2","features":[379]},{"name":"WIA_ALARM_BEEP3","features":[379]},{"name":"WIA_ALARM_BEEP4","features":[379]},{"name":"WIA_ALARM_BEEP5","features":[379]},{"name":"WIA_ALARM_BEEP6","features":[379]},{"name":"WIA_ALARM_BEEP7","features":[379]},{"name":"WIA_ALARM_BEEP8","features":[379]},{"name":"WIA_ALARM_BEEP9","features":[379]},{"name":"WIA_ALARM_NONE","features":[379]},{"name":"WIA_AUTO_CROP_DISABLED","features":[379]},{"name":"WIA_AUTO_CROP_MULTI","features":[379]},{"name":"WIA_AUTO_CROP_SINGLE","features":[379]},{"name":"WIA_AUTO_DESKEW_OFF","features":[379]},{"name":"WIA_AUTO_DESKEW_ON","features":[379]},{"name":"WIA_BARCODES","features":[379]},{"name":"WIA_BARCODE_AUTO_SEARCH","features":[379]},{"name":"WIA_BARCODE_AZTEC","features":[379]},{"name":"WIA_BARCODE_CODABAR","features":[379]},{"name":"WIA_BARCODE_CODE128","features":[379]},{"name":"WIA_BARCODE_CODE128A","features":[379]},{"name":"WIA_BARCODE_CODE128B","features":[379]},{"name":"WIA_BARCODE_CODE128C","features":[379]},{"name":"WIA_BARCODE_CODE39","features":[379]},{"name":"WIA_BARCODE_CODE39_FULLASCII","features":[379]},{"name":"WIA_BARCODE_CODE39_MOD43","features":[379]},{"name":"WIA_BARCODE_CODE93","features":[379]},{"name":"WIA_BARCODE_CPCBINARY","features":[379]},{"name":"WIA_BARCODE_CUSTOMBASE","features":[379]},{"name":"WIA_BARCODE_DATAMATRIX","features":[379]},{"name":"WIA_BARCODE_DATASTRIP","features":[379]},{"name":"WIA_BARCODE_EAN13","features":[379]},{"name":"WIA_BARCODE_EAN8","features":[379]},{"name":"WIA_BARCODE_EZCODE","features":[379]},{"name":"WIA_BARCODE_FIM","features":[379]},{"name":"WIA_BARCODE_GS1128","features":[379]},{"name":"WIA_BARCODE_GS1DATABAR","features":[379]},{"name":"WIA_BARCODE_HIGH_CAPACITY_COLOR","features":[379]},{"name":"WIA_BARCODE_HORIZONTAL_SEARCH","features":[379]},{"name":"WIA_BARCODE_HORIZONTAL_VERTICAL_SEARCH","features":[379]},{"name":"WIA_BARCODE_INFO","features":[379]},{"name":"WIA_BARCODE_INTELLIGENT_MAIL","features":[379]},{"name":"WIA_BARCODE_INTERLEAVED_2OF5","features":[379]},{"name":"WIA_BARCODE_ITF14","features":[379]},{"name":"WIA_BARCODE_JAN","features":[379]},{"name":"WIA_BARCODE_MAXICODE","features":[379]},{"name":"WIA_BARCODE_MSI","features":[379]},{"name":"WIA_BARCODE_NONINTERLEAVED_2OF5","features":[379]},{"name":"WIA_BARCODE_PDF417","features":[379]},{"name":"WIA_BARCODE_PHARMACODE","features":[379]},{"name":"WIA_BARCODE_PLANET","features":[379]},{"name":"WIA_BARCODE_PLESSEY","features":[379]},{"name":"WIA_BARCODE_POSTBAR","features":[379]},{"name":"WIA_BARCODE_POSTNETA","features":[379]},{"name":"WIA_BARCODE_POSTNETB","features":[379]},{"name":"WIA_BARCODE_POSTNETC","features":[379]},{"name":"WIA_BARCODE_POSTNET_DPBC","features":[379]},{"name":"WIA_BARCODE_QRCODE","features":[379]},{"name":"WIA_BARCODE_READER_AUTO","features":[379]},{"name":"WIA_BARCODE_READER_DISABLED","features":[379]},{"name":"WIA_BARCODE_READER_FEEDER_BACK","features":[379]},{"name":"WIA_BARCODE_READER_FEEDER_DUPLEX","features":[379]},{"name":"WIA_BARCODE_READER_FEEDER_FRONT","features":[379]},{"name":"WIA_BARCODE_READER_FLATBED","features":[379]},{"name":"WIA_BARCODE_RM4SCC","features":[379]},{"name":"WIA_BARCODE_SHOTCODE","features":[379]},{"name":"WIA_BARCODE_SMALLAZTEC","features":[379]},{"name":"WIA_BARCODE_SPARQCODE","features":[379]},{"name":"WIA_BARCODE_TELEPEN","features":[379]},{"name":"WIA_BARCODE_UPCA","features":[379]},{"name":"WIA_BARCODE_UPCE","features":[379]},{"name":"WIA_BARCODE_VERTICAL_HORIZONTAL_SEARCH","features":[379]},{"name":"WIA_BARCODE_VERTICAL_SEARCH","features":[379]},{"name":"WIA_BASIC_PREVIEW","features":[379]},{"name":"WIA_BLANK_PAGE_DETECTION_DISABLED","features":[379]},{"name":"WIA_BLANK_PAGE_DISCARD","features":[379]},{"name":"WIA_BLANK_PAGE_JOB_SEPARATOR","features":[379]},{"name":"WIA_CATEGORY_AUTO","features":[379]},{"name":"WIA_CATEGORY_BARCODE_READER","features":[379]},{"name":"WIA_CATEGORY_ENDORSER","features":[379]},{"name":"WIA_CATEGORY_FEEDER","features":[379]},{"name":"WIA_CATEGORY_FEEDER_BACK","features":[379]},{"name":"WIA_CATEGORY_FEEDER_FRONT","features":[379]},{"name":"WIA_CATEGORY_FILM","features":[379]},{"name":"WIA_CATEGORY_FINISHED_FILE","features":[379]},{"name":"WIA_CATEGORY_FLATBED","features":[379]},{"name":"WIA_CATEGORY_FOLDER","features":[379]},{"name":"WIA_CATEGORY_IMPRINTER","features":[379]},{"name":"WIA_CATEGORY_MICR_READER","features":[379]},{"name":"WIA_CATEGORY_PATCH_CODE_READER","features":[379]},{"name":"WIA_CATEGORY_ROOT","features":[379]},{"name":"WIA_CMD_BUILD_DEVICE_TREE","features":[379]},{"name":"WIA_CMD_CHANGE_DOCUMENT","features":[379]},{"name":"WIA_CMD_DELETE_ALL_ITEMS","features":[379]},{"name":"WIA_CMD_DELETE_DEVICE_TREE","features":[379]},{"name":"WIA_CMD_DIAGNOSTIC","features":[379]},{"name":"WIA_CMD_FORMAT","features":[379]},{"name":"WIA_CMD_PAUSE_FEEDER","features":[379]},{"name":"WIA_CMD_START_FEEDER","features":[379]},{"name":"WIA_CMD_STOP_FEEDER","features":[379]},{"name":"WIA_CMD_SYNCHRONIZE","features":[379]},{"name":"WIA_CMD_TAKE_PICTURE","features":[379]},{"name":"WIA_CMD_UNLOAD_DOCUMENT","features":[379]},{"name":"WIA_COLOR_DROP_BLUE","features":[379]},{"name":"WIA_COLOR_DROP_DISABLED","features":[379]},{"name":"WIA_COLOR_DROP_GREEN","features":[379]},{"name":"WIA_COLOR_DROP_RED","features":[379]},{"name":"WIA_COLOR_DROP_RGB","features":[379]},{"name":"WIA_COMPRESSION_AUTO","features":[379]},{"name":"WIA_COMPRESSION_BI_RLE4","features":[379]},{"name":"WIA_COMPRESSION_BI_RLE8","features":[379]},{"name":"WIA_COMPRESSION_G3","features":[379]},{"name":"WIA_COMPRESSION_G4","features":[379]},{"name":"WIA_COMPRESSION_JBIG","features":[379]},{"name":"WIA_COMPRESSION_JPEG","features":[379]},{"name":"WIA_COMPRESSION_JPEG2K","features":[379]},{"name":"WIA_COMPRESSION_NONE","features":[379]},{"name":"WIA_COMPRESSION_PNG","features":[379]},{"name":"WIA_DATA_AUTO","features":[379]},{"name":"WIA_DATA_CALLBACK_HEADER","features":[379]},{"name":"WIA_DATA_COLOR","features":[379]},{"name":"WIA_DATA_COLOR_DITHER","features":[379]},{"name":"WIA_DATA_COLOR_THRESHOLD","features":[379]},{"name":"WIA_DATA_DITHER","features":[379]},{"name":"WIA_DATA_GRAYSCALE","features":[379]},{"name":"WIA_DATA_RAW_BGR","features":[379]},{"name":"WIA_DATA_RAW_CMY","features":[379]},{"name":"WIA_DATA_RAW_CMYK","features":[379]},{"name":"WIA_DATA_RAW_RGB","features":[379]},{"name":"WIA_DATA_RAW_YUV","features":[379]},{"name":"WIA_DATA_RAW_YUVK","features":[379]},{"name":"WIA_DATA_THRESHOLD","features":[379]},{"name":"WIA_DATA_TRANSFER_INFO","features":[379,305]},{"name":"WIA_DEPTH_AUTO","features":[379]},{"name":"WIA_DEVICE_COMMANDS","features":[379]},{"name":"WIA_DEVICE_CONNECTED","features":[379]},{"name":"WIA_DEVICE_DIALOG_SINGLE_IMAGE","features":[379]},{"name":"WIA_DEVICE_DIALOG_USE_COMMON_UI","features":[379]},{"name":"WIA_DEVICE_EVENTS","features":[379]},{"name":"WIA_DEVICE_NOT_CONNECTED","features":[379]},{"name":"WIA_DEVINFO_ENUM_ALL","features":[379]},{"name":"WIA_DEVINFO_ENUM_LOCAL","features":[379]},{"name":"WIA_DEV_CAP","features":[379]},{"name":"WIA_DEV_CAP_DRV","features":[379]},{"name":"WIA_DIP_BAUDRATE","features":[379]},{"name":"WIA_DIP_BAUDRATE_STR","features":[379]},{"name":"WIA_DIP_DEV_DESC","features":[379]},{"name":"WIA_DIP_DEV_DESC_STR","features":[379]},{"name":"WIA_DIP_DEV_ID","features":[379]},{"name":"WIA_DIP_DEV_ID_STR","features":[379]},{"name":"WIA_DIP_DEV_NAME","features":[379]},{"name":"WIA_DIP_DEV_NAME_STR","features":[379]},{"name":"WIA_DIP_DEV_TYPE","features":[379]},{"name":"WIA_DIP_DEV_TYPE_STR","features":[379]},{"name":"WIA_DIP_DRIVER_VERSION","features":[379]},{"name":"WIA_DIP_DRIVER_VERSION_STR","features":[379]},{"name":"WIA_DIP_FIRST","features":[379]},{"name":"WIA_DIP_HW_CONFIG","features":[379]},{"name":"WIA_DIP_HW_CONFIG_STR","features":[379]},{"name":"WIA_DIP_PNP_ID","features":[379]},{"name":"WIA_DIP_PNP_ID_STR","features":[379]},{"name":"WIA_DIP_PORT_NAME","features":[379]},{"name":"WIA_DIP_PORT_NAME_STR","features":[379]},{"name":"WIA_DIP_REMOTE_DEV_ID","features":[379]},{"name":"WIA_DIP_REMOTE_DEV_ID_STR","features":[379]},{"name":"WIA_DIP_SERVER_NAME","features":[379]},{"name":"WIA_DIP_SERVER_NAME_STR","features":[379]},{"name":"WIA_DIP_STI_DRIVER_VERSION","features":[379]},{"name":"WIA_DIP_STI_DRIVER_VERSION_STR","features":[379]},{"name":"WIA_DIP_STI_GEN_CAPABILITIES","features":[379]},{"name":"WIA_DIP_STI_GEN_CAPABILITIES_STR","features":[379]},{"name":"WIA_DIP_UI_CLSID","features":[379]},{"name":"WIA_DIP_UI_CLSID_STR","features":[379]},{"name":"WIA_DIP_VEND_DESC","features":[379]},{"name":"WIA_DIP_VEND_DESC_STR","features":[379]},{"name":"WIA_DIP_WIA_VERSION","features":[379]},{"name":"WIA_DIP_WIA_VERSION_STR","features":[379]},{"name":"WIA_DITHER_PATTERN_DATA","features":[379]},{"name":"WIA_DONT_SHOW_PREVIEW_CONTROL","features":[379]},{"name":"WIA_DONT_USE_SEGMENTATION_FILTER","features":[379]},{"name":"WIA_DPA_CONNECT_STATUS","features":[379]},{"name":"WIA_DPA_CONNECT_STATUS_STR","features":[379]},{"name":"WIA_DPA_DEVICE_TIME","features":[379]},{"name":"WIA_DPA_DEVICE_TIME_STR","features":[379]},{"name":"WIA_DPA_FIRMWARE_VERSION","features":[379]},{"name":"WIA_DPA_FIRMWARE_VERSION_STR","features":[379]},{"name":"WIA_DPC_ARTIST","features":[379]},{"name":"WIA_DPC_ARTIST_STR","features":[379]},{"name":"WIA_DPC_BATTERY_STATUS","features":[379]},{"name":"WIA_DPC_BATTERY_STATUS_STR","features":[379]},{"name":"WIA_DPC_BURST_INTERVAL","features":[379]},{"name":"WIA_DPC_BURST_INTERVAL_STR","features":[379]},{"name":"WIA_DPC_BURST_NUMBER","features":[379]},{"name":"WIA_DPC_BURST_NUMBER_STR","features":[379]},{"name":"WIA_DPC_CAPTURE_DELAY","features":[379]},{"name":"WIA_DPC_CAPTURE_DELAY_STR","features":[379]},{"name":"WIA_DPC_CAPTURE_MODE","features":[379]},{"name":"WIA_DPC_CAPTURE_MODE_STR","features":[379]},{"name":"WIA_DPC_COMPRESSION_SETTING","features":[379]},{"name":"WIA_DPC_COMPRESSION_SETTING_STR","features":[379]},{"name":"WIA_DPC_CONTRAST","features":[379]},{"name":"WIA_DPC_CONTRAST_STR","features":[379]},{"name":"WIA_DPC_COPYRIGHT_INFO","features":[379]},{"name":"WIA_DPC_COPYRIGHT_INFO_STR","features":[379]},{"name":"WIA_DPC_DIGITAL_ZOOM","features":[379]},{"name":"WIA_DPC_DIGITAL_ZOOM_STR","features":[379]},{"name":"WIA_DPC_DIMENSION","features":[379]},{"name":"WIA_DPC_DIMENSION_STR","features":[379]},{"name":"WIA_DPC_EFFECT_MODE","features":[379]},{"name":"WIA_DPC_EFFECT_MODE_STR","features":[379]},{"name":"WIA_DPC_EXPOSURE_COMP","features":[379]},{"name":"WIA_DPC_EXPOSURE_COMP_STR","features":[379]},{"name":"WIA_DPC_EXPOSURE_INDEX","features":[379]},{"name":"WIA_DPC_EXPOSURE_INDEX_STR","features":[379]},{"name":"WIA_DPC_EXPOSURE_METERING_MODE","features":[379]},{"name":"WIA_DPC_EXPOSURE_METERING_MODE_STR","features":[379]},{"name":"WIA_DPC_EXPOSURE_MODE","features":[379]},{"name":"WIA_DPC_EXPOSURE_MODE_STR","features":[379]},{"name":"WIA_DPC_EXPOSURE_TIME","features":[379]},{"name":"WIA_DPC_EXPOSURE_TIME_STR","features":[379]},{"name":"WIA_DPC_FLASH_MODE","features":[379]},{"name":"WIA_DPC_FLASH_MODE_STR","features":[379]},{"name":"WIA_DPC_FNUMBER","features":[379]},{"name":"WIA_DPC_FNUMBER_STR","features":[379]},{"name":"WIA_DPC_FOCAL_LENGTH","features":[379]},{"name":"WIA_DPC_FOCAL_LENGTH_STR","features":[379]},{"name":"WIA_DPC_FOCUS_DISTANCE","features":[379]},{"name":"WIA_DPC_FOCUS_DISTANCE_STR","features":[379]},{"name":"WIA_DPC_FOCUS_MANUAL_DIST","features":[379]},{"name":"WIA_DPC_FOCUS_MANUAL_DIST_STR","features":[379]},{"name":"WIA_DPC_FOCUS_METERING","features":[379]},{"name":"WIA_DPC_FOCUS_METERING_MODE","features":[379]},{"name":"WIA_DPC_FOCUS_METERING_MODE_STR","features":[379]},{"name":"WIA_DPC_FOCUS_METERING_STR","features":[379]},{"name":"WIA_DPC_FOCUS_MODE","features":[379]},{"name":"WIA_DPC_FOCUS_MODE_STR","features":[379]},{"name":"WIA_DPC_PAN_POSITION","features":[379]},{"name":"WIA_DPC_PAN_POSITION_STR","features":[379]},{"name":"WIA_DPC_PICTURES_REMAINING","features":[379]},{"name":"WIA_DPC_PICTURES_REMAINING_STR","features":[379]},{"name":"WIA_DPC_PICTURES_TAKEN","features":[379]},{"name":"WIA_DPC_PICTURES_TAKEN_STR","features":[379]},{"name":"WIA_DPC_PICT_HEIGHT","features":[379]},{"name":"WIA_DPC_PICT_HEIGHT_STR","features":[379]},{"name":"WIA_DPC_PICT_WIDTH","features":[379]},{"name":"WIA_DPC_PICT_WIDTH_STR","features":[379]},{"name":"WIA_DPC_POWER_MODE","features":[379]},{"name":"WIA_DPC_POWER_MODE_STR","features":[379]},{"name":"WIA_DPC_RGB_GAIN","features":[379]},{"name":"WIA_DPC_RGB_GAIN_STR","features":[379]},{"name":"WIA_DPC_SHARPNESS","features":[379]},{"name":"WIA_DPC_SHARPNESS_STR","features":[379]},{"name":"WIA_DPC_THUMB_HEIGHT","features":[379]},{"name":"WIA_DPC_THUMB_HEIGHT_STR","features":[379]},{"name":"WIA_DPC_THUMB_WIDTH","features":[379]},{"name":"WIA_DPC_THUMB_WIDTH_STR","features":[379]},{"name":"WIA_DPC_TILT_POSITION","features":[379]},{"name":"WIA_DPC_TILT_POSITION_STR","features":[379]},{"name":"WIA_DPC_TIMELAPSE_INTERVAL","features":[379]},{"name":"WIA_DPC_TIMELAPSE_INTERVAL_STR","features":[379]},{"name":"WIA_DPC_TIMELAPSE_NUMBER","features":[379]},{"name":"WIA_DPC_TIMELAPSE_NUMBER_STR","features":[379]},{"name":"WIA_DPC_TIMER_MODE","features":[379]},{"name":"WIA_DPC_TIMER_MODE_STR","features":[379]},{"name":"WIA_DPC_TIMER_VALUE","features":[379]},{"name":"WIA_DPC_TIMER_VALUE_STR","features":[379]},{"name":"WIA_DPC_UPLOAD_URL","features":[379]},{"name":"WIA_DPC_UPLOAD_URL_STR","features":[379]},{"name":"WIA_DPC_WHITE_BALANCE","features":[379]},{"name":"WIA_DPC_WHITE_BALANCE_STR","features":[379]},{"name":"WIA_DPC_ZOOM_POSITION","features":[379]},{"name":"WIA_DPC_ZOOM_POSITION_STR","features":[379]},{"name":"WIA_DPF_FIRST","features":[379]},{"name":"WIA_DPF_MOUNT_POINT","features":[379]},{"name":"WIA_DPF_MOUNT_POINT_STR","features":[379]},{"name":"WIA_DPS_DEVICE_ID","features":[379]},{"name":"WIA_DPS_DEVICE_ID_STR","features":[379]},{"name":"WIA_DPS_DITHER_PATTERN_DATA","features":[379]},{"name":"WIA_DPS_DITHER_PATTERN_DATA_STR","features":[379]},{"name":"WIA_DPS_DITHER_SELECT","features":[379]},{"name":"WIA_DPS_DITHER_SELECT_STR","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPABILITIES","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPABILITIES_STR","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPACITY","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_CAPACITY_STR","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_SELECT","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_SELECT_STR","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_STATUS","features":[379]},{"name":"WIA_DPS_DOCUMENT_HANDLING_STATUS_STR","features":[379]},{"name":"WIA_DPS_ENDORSER_CHARACTERS","features":[379]},{"name":"WIA_DPS_ENDORSER_CHARACTERS_STR","features":[379]},{"name":"WIA_DPS_ENDORSER_STRING","features":[379]},{"name":"WIA_DPS_ENDORSER_STRING_STR","features":[379]},{"name":"WIA_DPS_FILTER_SELECT","features":[379]},{"name":"WIA_DPS_FILTER_SELECT_STR","features":[379]},{"name":"WIA_DPS_FIRST","features":[379]},{"name":"WIA_DPS_GLOBAL_IDENTITY","features":[379]},{"name":"WIA_DPS_GLOBAL_IDENTITY_STR","features":[379]},{"name":"WIA_DPS_HORIZONTAL_BED_REGISTRATION","features":[379]},{"name":"WIA_DPS_HORIZONTAL_BED_REGISTRATION_STR","features":[379]},{"name":"WIA_DPS_HORIZONTAL_BED_SIZE","features":[379]},{"name":"WIA_DPS_HORIZONTAL_BED_SIZE_STR","features":[379]},{"name":"WIA_DPS_HORIZONTAL_SHEET_FEED_SIZE","features":[379]},{"name":"WIA_DPS_HORIZONTAL_SHEET_FEED_SIZE_STR","features":[379]},{"name":"WIA_DPS_MAX_SCAN_TIME","features":[379]},{"name":"WIA_DPS_MAX_SCAN_TIME_STR","features":[379]},{"name":"WIA_DPS_MIN_HORIZONTAL_SHEET_FEED_SIZE","features":[379]},{"name":"WIA_DPS_MIN_HORIZONTAL_SHEET_FEED_SIZE_STR","features":[379]},{"name":"WIA_DPS_MIN_VERTICAL_SHEET_FEED_SIZE","features":[379]},{"name":"WIA_DPS_MIN_VERTICAL_SHEET_FEED_SIZE_STR","features":[379]},{"name":"WIA_DPS_OPTICAL_XRES","features":[379]},{"name":"WIA_DPS_OPTICAL_XRES_STR","features":[379]},{"name":"WIA_DPS_OPTICAL_YRES","features":[379]},{"name":"WIA_DPS_OPTICAL_YRES_STR","features":[379]},{"name":"WIA_DPS_PAD_COLOR","features":[379]},{"name":"WIA_DPS_PAD_COLOR_STR","features":[379]},{"name":"WIA_DPS_PAGES","features":[379]},{"name":"WIA_DPS_PAGES_STR","features":[379]},{"name":"WIA_DPS_PAGE_HEIGHT","features":[379]},{"name":"WIA_DPS_PAGE_HEIGHT_STR","features":[379]},{"name":"WIA_DPS_PAGE_SIZE","features":[379]},{"name":"WIA_DPS_PAGE_SIZE_STR","features":[379]},{"name":"WIA_DPS_PAGE_WIDTH","features":[379]},{"name":"WIA_DPS_PAGE_WIDTH_STR","features":[379]},{"name":"WIA_DPS_PLATEN_COLOR","features":[379]},{"name":"WIA_DPS_PLATEN_COLOR_STR","features":[379]},{"name":"WIA_DPS_PREVIEW","features":[379]},{"name":"WIA_DPS_PREVIEW_STR","features":[379]},{"name":"WIA_DPS_SCAN_AHEAD_PAGES","features":[379]},{"name":"WIA_DPS_SCAN_AHEAD_PAGES_STR","features":[379]},{"name":"WIA_DPS_SCAN_AVAILABLE_ITEM","features":[379]},{"name":"WIA_DPS_SCAN_AVAILABLE_ITEM_STR","features":[379]},{"name":"WIA_DPS_SERVICE_ID","features":[379]},{"name":"WIA_DPS_SERVICE_ID_STR","features":[379]},{"name":"WIA_DPS_SHEET_FEEDER_REGISTRATION","features":[379]},{"name":"WIA_DPS_SHEET_FEEDER_REGISTRATION_STR","features":[379]},{"name":"WIA_DPS_SHOW_PREVIEW_CONTROL","features":[379]},{"name":"WIA_DPS_SHOW_PREVIEW_CONTROL_STR","features":[379]},{"name":"WIA_DPS_TRANSPARENCY","features":[379]},{"name":"WIA_DPS_TRANSPARENCY_CAPABILITIES","features":[379]},{"name":"WIA_DPS_TRANSPARENCY_CAPABILITIES_STR","features":[379]},{"name":"WIA_DPS_TRANSPARENCY_SELECT","features":[379]},{"name":"WIA_DPS_TRANSPARENCY_SELECT_STR","features":[379]},{"name":"WIA_DPS_TRANSPARENCY_STATUS","features":[379]},{"name":"WIA_DPS_TRANSPARENCY_STATUS_STR","features":[379]},{"name":"WIA_DPS_TRANSPARENCY_STR","features":[379]},{"name":"WIA_DPS_USER_NAME","features":[379]},{"name":"WIA_DPS_USER_NAME_STR","features":[379]},{"name":"WIA_DPS_VERTICAL_BED_REGISTRATION","features":[379]},{"name":"WIA_DPS_VERTICAL_BED_REGISTRATION_STR","features":[379]},{"name":"WIA_DPS_VERTICAL_BED_SIZE","features":[379]},{"name":"WIA_DPS_VERTICAL_BED_SIZE_STR","features":[379]},{"name":"WIA_DPS_VERTICAL_SHEET_FEED_SIZE","features":[379]},{"name":"WIA_DPS_VERTICAL_SHEET_FEED_SIZE_STR","features":[379]},{"name":"WIA_DPV_DSHOW_DEVICE_PATH","features":[379]},{"name":"WIA_DPV_DSHOW_DEVICE_PATH_STR","features":[379]},{"name":"WIA_DPV_IMAGES_DIRECTORY","features":[379]},{"name":"WIA_DPV_IMAGES_DIRECTORY_STR","features":[379]},{"name":"WIA_DPV_LAST_PICTURE_TAKEN","features":[379]},{"name":"WIA_DPV_LAST_PICTURE_TAKEN_STR","features":[379]},{"name":"WIA_ENDORSER_TOK_DATE","features":[379]},{"name":"WIA_ENDORSER_TOK_DAY","features":[379]},{"name":"WIA_ENDORSER_TOK_MONTH","features":[379]},{"name":"WIA_ENDORSER_TOK_PAGE_COUNT","features":[379]},{"name":"WIA_ENDORSER_TOK_TIME","features":[379]},{"name":"WIA_ENDORSER_TOK_YEAR","features":[379]},{"name":"WIA_ERROR_BUSY","features":[379]},{"name":"WIA_ERROR_COVER_OPEN","features":[379]},{"name":"WIA_ERROR_DESTINATION","features":[379]},{"name":"WIA_ERROR_DEVICE_COMMUNICATION","features":[379]},{"name":"WIA_ERROR_DEVICE_LOCKED","features":[379]},{"name":"WIA_ERROR_EXCEPTION_IN_DRIVER","features":[379]},{"name":"WIA_ERROR_GENERAL_ERROR","features":[379]},{"name":"WIA_ERROR_INCORRECT_HARDWARE_SETTING","features":[379]},{"name":"WIA_ERROR_INVALID_COMMAND","features":[379]},{"name":"WIA_ERROR_INVALID_DRIVER_RESPONSE","features":[379]},{"name":"WIA_ERROR_ITEM_DELETED","features":[379]},{"name":"WIA_ERROR_LAMP_OFF","features":[379]},{"name":"WIA_ERROR_MAXIMUM_PRINTER_ENDORSER_COUNTER","features":[379]},{"name":"WIA_ERROR_MULTI_FEED","features":[379]},{"name":"WIA_ERROR_NETWORK_RESERVATION_FAILED","features":[379]},{"name":"WIA_ERROR_OFFLINE","features":[379]},{"name":"WIA_ERROR_PAPER_EMPTY","features":[379]},{"name":"WIA_ERROR_PAPER_JAM","features":[379]},{"name":"WIA_ERROR_PAPER_PROBLEM","features":[379]},{"name":"WIA_ERROR_USER_INTERVENTION","features":[379]},{"name":"WIA_ERROR_WARMING_UP","features":[379]},{"name":"WIA_EVENT_CANCEL_IO","features":[379]},{"name":"WIA_EVENT_COVER_CLOSED","features":[379]},{"name":"WIA_EVENT_COVER_OPEN","features":[379]},{"name":"WIA_EVENT_DEVICE_CONNECTED","features":[379]},{"name":"WIA_EVENT_DEVICE_CONNECTED_STR","features":[379]},{"name":"WIA_EVENT_DEVICE_DISCONNECTED","features":[379]},{"name":"WIA_EVENT_DEVICE_DISCONNECTED_STR","features":[379]},{"name":"WIA_EVENT_DEVICE_NOT_READY","features":[379]},{"name":"WIA_EVENT_DEVICE_READY","features":[379]},{"name":"WIA_EVENT_FEEDER_EMPTIED","features":[379]},{"name":"WIA_EVENT_FEEDER_LOADED","features":[379]},{"name":"WIA_EVENT_FLATBED_LID_CLOSED","features":[379]},{"name":"WIA_EVENT_FLATBED_LID_OPEN","features":[379]},{"name":"WIA_EVENT_HANDLER_NO_ACTION","features":[379]},{"name":"WIA_EVENT_HANDLER_PROMPT","features":[379]},{"name":"WIA_EVENT_ITEM_CREATED","features":[379]},{"name":"WIA_EVENT_ITEM_DELETED","features":[379]},{"name":"WIA_EVENT_POWER_RESUME","features":[379]},{"name":"WIA_EVENT_POWER_SUSPEND","features":[379]},{"name":"WIA_EVENT_SCAN_EMAIL_IMAGE","features":[379]},{"name":"WIA_EVENT_SCAN_FAX_IMAGE","features":[379]},{"name":"WIA_EVENT_SCAN_FILM_IMAGE","features":[379]},{"name":"WIA_EVENT_SCAN_IMAGE","features":[379]},{"name":"WIA_EVENT_SCAN_IMAGE2","features":[379]},{"name":"WIA_EVENT_SCAN_IMAGE3","features":[379]},{"name":"WIA_EVENT_SCAN_IMAGE4","features":[379]},{"name":"WIA_EVENT_SCAN_OCR_IMAGE","features":[379]},{"name":"WIA_EVENT_SCAN_PRINT_IMAGE","features":[379]},{"name":"WIA_EVENT_STI_PROXY","features":[379]},{"name":"WIA_EVENT_STORAGE_CREATED","features":[379]},{"name":"WIA_EVENT_STORAGE_DELETED","features":[379]},{"name":"WIA_EVENT_TREE_UPDATED","features":[379]},{"name":"WIA_EVENT_VOLUME_INSERT","features":[379]},{"name":"WIA_EXTENDED_TRANSFER_INFO","features":[379]},{"name":"WIA_FEEDER_CONTROL_AUTO","features":[379]},{"name":"WIA_FEEDER_CONTROL_MANUAL","features":[379]},{"name":"WIA_FILM_BW_NEGATIVE","features":[379]},{"name":"WIA_FILM_COLOR_NEGATIVE","features":[379]},{"name":"WIA_FILM_COLOR_SLIDE","features":[379]},{"name":"WIA_FINAL_SCAN","features":[379]},{"name":"WIA_FLAG_NOM","features":[379]},{"name":"WIA_FLAG_NUM_ELEMS","features":[379]},{"name":"WIA_FLAG_VALUES","features":[379]},{"name":"WIA_FORMAT_INFO","features":[379]},{"name":"WIA_IMAGEPROC_FILTER_STR","features":[379]},{"name":"WIA_INTENT_BEST_PREVIEW","features":[379]},{"name":"WIA_INTENT_IMAGE_TYPE_COLOR","features":[379]},{"name":"WIA_INTENT_IMAGE_TYPE_GRAYSCALE","features":[379]},{"name":"WIA_INTENT_IMAGE_TYPE_MASK","features":[379]},{"name":"WIA_INTENT_IMAGE_TYPE_TEXT","features":[379]},{"name":"WIA_INTENT_MAXIMIZE_QUALITY","features":[379]},{"name":"WIA_INTENT_MINIMIZE_SIZE","features":[379]},{"name":"WIA_INTENT_NONE","features":[379]},{"name":"WIA_INTENT_SIZE_MASK","features":[379]},{"name":"WIA_IPA_ACCESS_RIGHTS","features":[379]},{"name":"WIA_IPA_ACCESS_RIGHTS_STR","features":[379]},{"name":"WIA_IPA_APP_COLOR_MAPPING","features":[379]},{"name":"WIA_IPA_APP_COLOR_MAPPING_STR","features":[379]},{"name":"WIA_IPA_BITS_PER_CHANNEL","features":[379]},{"name":"WIA_IPA_BITS_PER_CHANNEL_STR","features":[379]},{"name":"WIA_IPA_BUFFER_SIZE","features":[379]},{"name":"WIA_IPA_BUFFER_SIZE_STR","features":[379]},{"name":"WIA_IPA_BYTES_PER_LINE","features":[379]},{"name":"WIA_IPA_BYTES_PER_LINE_STR","features":[379]},{"name":"WIA_IPA_CHANNELS_PER_PIXEL","features":[379]},{"name":"WIA_IPA_CHANNELS_PER_PIXEL_STR","features":[379]},{"name":"WIA_IPA_COLOR_PROFILE","features":[379]},{"name":"WIA_IPA_COLOR_PROFILE_STR","features":[379]},{"name":"WIA_IPA_COMPRESSION","features":[379]},{"name":"WIA_IPA_COMPRESSION_STR","features":[379]},{"name":"WIA_IPA_DATATYPE","features":[379]},{"name":"WIA_IPA_DATATYPE_STR","features":[379]},{"name":"WIA_IPA_DEPTH","features":[379]},{"name":"WIA_IPA_DEPTH_STR","features":[379]},{"name":"WIA_IPA_FILENAME_EXTENSION","features":[379]},{"name":"WIA_IPA_FILENAME_EXTENSION_STR","features":[379]},{"name":"WIA_IPA_FIRST","features":[379]},{"name":"WIA_IPA_FORMAT","features":[379]},{"name":"WIA_IPA_FORMAT_STR","features":[379]},{"name":"WIA_IPA_FULL_ITEM_NAME","features":[379]},{"name":"WIA_IPA_FULL_ITEM_NAME_STR","features":[379]},{"name":"WIA_IPA_GAMMA_CURVES","features":[379]},{"name":"WIA_IPA_GAMMA_CURVES_STR","features":[379]},{"name":"WIA_IPA_ICM_PROFILE_NAME","features":[379]},{"name":"WIA_IPA_ICM_PROFILE_NAME_STR","features":[379]},{"name":"WIA_IPA_ITEMS_STORED","features":[379]},{"name":"WIA_IPA_ITEMS_STORED_STR","features":[379]},{"name":"WIA_IPA_ITEM_CATEGORY","features":[379]},{"name":"WIA_IPA_ITEM_CATEGORY_STR","features":[379]},{"name":"WIA_IPA_ITEM_FLAGS","features":[379]},{"name":"WIA_IPA_ITEM_FLAGS_STR","features":[379]},{"name":"WIA_IPA_ITEM_NAME","features":[379]},{"name":"WIA_IPA_ITEM_NAME_STR","features":[379]},{"name":"WIA_IPA_ITEM_SIZE","features":[379]},{"name":"WIA_IPA_ITEM_SIZE_STR","features":[379]},{"name":"WIA_IPA_ITEM_TIME","features":[379]},{"name":"WIA_IPA_ITEM_TIME_STR","features":[379]},{"name":"WIA_IPA_MIN_BUFFER_SIZE","features":[379]},{"name":"WIA_IPA_MIN_BUFFER_SIZE_STR","features":[379]},{"name":"WIA_IPA_NUMBER_OF_LINES","features":[379]},{"name":"WIA_IPA_NUMBER_OF_LINES_STR","features":[379]},{"name":"WIA_IPA_PIXELS_PER_LINE","features":[379]},{"name":"WIA_IPA_PIXELS_PER_LINE_STR","features":[379]},{"name":"WIA_IPA_PLANAR","features":[379]},{"name":"WIA_IPA_PLANAR_STR","features":[379]},{"name":"WIA_IPA_PREFERRED_FORMAT","features":[379]},{"name":"WIA_IPA_PREFERRED_FORMAT_STR","features":[379]},{"name":"WIA_IPA_PROP_STREAM_COMPAT_ID","features":[379]},{"name":"WIA_IPA_PROP_STREAM_COMPAT_ID_STR","features":[379]},{"name":"WIA_IPA_RAW_BITS_PER_CHANNEL","features":[379]},{"name":"WIA_IPA_RAW_BITS_PER_CHANNEL_STR","features":[379]},{"name":"WIA_IPA_REGION_TYPE","features":[379]},{"name":"WIA_IPA_REGION_TYPE_STR","features":[379]},{"name":"WIA_IPA_SUPPRESS_PROPERTY_PAGE","features":[379]},{"name":"WIA_IPA_SUPPRESS_PROPERTY_PAGE_STR","features":[379]},{"name":"WIA_IPA_TYMED","features":[379]},{"name":"WIA_IPA_TYMED_STR","features":[379]},{"name":"WIA_IPA_UPLOAD_ITEM_SIZE","features":[379]},{"name":"WIA_IPA_UPLOAD_ITEM_SIZE_STR","features":[379]},{"name":"WIA_IPC_AUDIO_AVAILABLE","features":[379]},{"name":"WIA_IPC_AUDIO_AVAILABLE_STR","features":[379]},{"name":"WIA_IPC_AUDIO_DATA","features":[379]},{"name":"WIA_IPC_AUDIO_DATA_FORMAT","features":[379]},{"name":"WIA_IPC_AUDIO_DATA_FORMAT_STR","features":[379]},{"name":"WIA_IPC_AUDIO_DATA_STR","features":[379]},{"name":"WIA_IPC_FIRST","features":[379]},{"name":"WIA_IPC_NUM_PICT_PER_ROW","features":[379]},{"name":"WIA_IPC_NUM_PICT_PER_ROW_STR","features":[379]},{"name":"WIA_IPC_SEQUENCE","features":[379]},{"name":"WIA_IPC_SEQUENCE_STR","features":[379]},{"name":"WIA_IPC_THUMBNAIL","features":[379]},{"name":"WIA_IPC_THUMBNAIL_STR","features":[379]},{"name":"WIA_IPC_THUMB_HEIGHT","features":[379]},{"name":"WIA_IPC_THUMB_HEIGHT_STR","features":[379]},{"name":"WIA_IPC_THUMB_WIDTH","features":[379]},{"name":"WIA_IPC_THUMB_WIDTH_STR","features":[379]},{"name":"WIA_IPC_TIMEDELAY","features":[379]},{"name":"WIA_IPC_TIMEDELAY_STR","features":[379]},{"name":"WIA_IPS_ALARM","features":[379]},{"name":"WIA_IPS_ALARM_STR","features":[379]},{"name":"WIA_IPS_AUTO_CROP","features":[379]},{"name":"WIA_IPS_AUTO_CROP_STR","features":[379]},{"name":"WIA_IPS_AUTO_DESKEW","features":[379]},{"name":"WIA_IPS_AUTO_DESKEW_STR","features":[379]},{"name":"WIA_IPS_BARCODE_READER","features":[379]},{"name":"WIA_IPS_BARCODE_READER_STR","features":[379]},{"name":"WIA_IPS_BARCODE_SEARCH_DIRECTION","features":[379]},{"name":"WIA_IPS_BARCODE_SEARCH_DIRECTION_STR","features":[379]},{"name":"WIA_IPS_BARCODE_SEARCH_TIMEOUT","features":[379]},{"name":"WIA_IPS_BARCODE_SEARCH_TIMEOUT_STR","features":[379]},{"name":"WIA_IPS_BLANK_PAGES","features":[379]},{"name":"WIA_IPS_BLANK_PAGES_SENSITIVITY","features":[379]},{"name":"WIA_IPS_BLANK_PAGES_SENSITIVITY_STR","features":[379]},{"name":"WIA_IPS_BLANK_PAGES_STR","features":[379]},{"name":"WIA_IPS_BRIGHTNESS","features":[379]},{"name":"WIA_IPS_BRIGHTNESS_STR","features":[379]},{"name":"WIA_IPS_COLOR_DROP","features":[379]},{"name":"WIA_IPS_COLOR_DROP_BLUE","features":[379]},{"name":"WIA_IPS_COLOR_DROP_BLUE_STR","features":[379]},{"name":"WIA_IPS_COLOR_DROP_GREEN","features":[379]},{"name":"WIA_IPS_COLOR_DROP_GREEN_STR","features":[379]},{"name":"WIA_IPS_COLOR_DROP_MULTI","features":[379]},{"name":"WIA_IPS_COLOR_DROP_MULTI_STR","features":[379]},{"name":"WIA_IPS_COLOR_DROP_RED","features":[379]},{"name":"WIA_IPS_COLOR_DROP_RED_STR","features":[379]},{"name":"WIA_IPS_COLOR_DROP_STR","features":[379]},{"name":"WIA_IPS_CONTRAST","features":[379]},{"name":"WIA_IPS_CONTRAST_STR","features":[379]},{"name":"WIA_IPS_CUR_INTENT","features":[379]},{"name":"WIA_IPS_CUR_INTENT_STR","features":[379]},{"name":"WIA_IPS_DESKEW_X","features":[379]},{"name":"WIA_IPS_DESKEW_X_STR","features":[379]},{"name":"WIA_IPS_DESKEW_Y","features":[379]},{"name":"WIA_IPS_DESKEW_Y_STR","features":[379]},{"name":"WIA_IPS_DOCUMENT_HANDLING_SELECT","features":[379]},{"name":"WIA_IPS_DOCUMENT_HANDLING_SELECT_STR","features":[379]},{"name":"WIA_IPS_ENABLED_BARCODE_TYPES","features":[379]},{"name":"WIA_IPS_ENABLED_BARCODE_TYPES_STR","features":[379]},{"name":"WIA_IPS_ENABLED_PATCH_CODE_TYPES","features":[379]},{"name":"WIA_IPS_ENABLED_PATCH_CODE_TYPES_STR","features":[379]},{"name":"WIA_IPS_FEEDER_CONTROL","features":[379]},{"name":"WIA_IPS_FEEDER_CONTROL_STR","features":[379]},{"name":"WIA_IPS_FILM_NODE_NAME","features":[379]},{"name":"WIA_IPS_FILM_NODE_NAME_STR","features":[379]},{"name":"WIA_IPS_FILM_SCAN_MODE","features":[379]},{"name":"WIA_IPS_FILM_SCAN_MODE_STR","features":[379]},{"name":"WIA_IPS_FIRST","features":[379]},{"name":"WIA_IPS_INVERT","features":[379]},{"name":"WIA_IPS_INVERT_STR","features":[379]},{"name":"WIA_IPS_JOB_SEPARATORS","features":[379]},{"name":"WIA_IPS_JOB_SEPARATORS_STR","features":[379]},{"name":"WIA_IPS_LAMP","features":[379]},{"name":"WIA_IPS_LAMP_AUTO_OFF","features":[379]},{"name":"WIA_IPS_LAMP_AUTO_OFF_STR","features":[379]},{"name":"WIA_IPS_LAMP_STR","features":[379]},{"name":"WIA_IPS_LONG_DOCUMENT","features":[379]},{"name":"WIA_IPS_LONG_DOCUMENT_STR","features":[379]},{"name":"WIA_IPS_MAXIMUM_BARCODES_PER_PAGE","features":[379]},{"name":"WIA_IPS_MAXIMUM_BARCODES_PER_PAGE_STR","features":[379]},{"name":"WIA_IPS_MAXIMUM_BARCODE_SEARCH_RETRIES","features":[379]},{"name":"WIA_IPS_MAXIMUM_BARCODE_SEARCH_RETRIES_STR","features":[379]},{"name":"WIA_IPS_MAX_HORIZONTAL_SIZE","features":[379]},{"name":"WIA_IPS_MAX_HORIZONTAL_SIZE_STR","features":[379]},{"name":"WIA_IPS_MAX_VERTICAL_SIZE","features":[379]},{"name":"WIA_IPS_MAX_VERTICAL_SIZE_STR","features":[379]},{"name":"WIA_IPS_MICR_READER","features":[379]},{"name":"WIA_IPS_MICR_READER_STR","features":[379]},{"name":"WIA_IPS_MIN_HORIZONTAL_SIZE","features":[379]},{"name":"WIA_IPS_MIN_HORIZONTAL_SIZE_STR","features":[379]},{"name":"WIA_IPS_MIN_VERTICAL_SIZE","features":[379]},{"name":"WIA_IPS_MIN_VERTICAL_SIZE_STR","features":[379]},{"name":"WIA_IPS_MIRROR","features":[379]},{"name":"WIA_IPS_MIRROR_STR","features":[379]},{"name":"WIA_IPS_MULTI_FEED","features":[379]},{"name":"WIA_IPS_MULTI_FEED_DETECT_METHOD","features":[379]},{"name":"WIA_IPS_MULTI_FEED_DETECT_METHOD_STR","features":[379]},{"name":"WIA_IPS_MULTI_FEED_SENSITIVITY","features":[379]},{"name":"WIA_IPS_MULTI_FEED_SENSITIVITY_STR","features":[379]},{"name":"WIA_IPS_MULTI_FEED_STR","features":[379]},{"name":"WIA_IPS_OPTICAL_XRES","features":[379]},{"name":"WIA_IPS_OPTICAL_XRES_STR","features":[379]},{"name":"WIA_IPS_OPTICAL_YRES","features":[379]},{"name":"WIA_IPS_OPTICAL_YRES_STR","features":[379]},{"name":"WIA_IPS_ORIENTATION","features":[379]},{"name":"WIA_IPS_ORIENTATION_STR","features":[379]},{"name":"WIA_IPS_OVER_SCAN","features":[379]},{"name":"WIA_IPS_OVER_SCAN_BOTTOM","features":[379]},{"name":"WIA_IPS_OVER_SCAN_BOTTOM_STR","features":[379]},{"name":"WIA_IPS_OVER_SCAN_LEFT","features":[379]},{"name":"WIA_IPS_OVER_SCAN_LEFT_STR","features":[379]},{"name":"WIA_IPS_OVER_SCAN_RIGHT","features":[379]},{"name":"WIA_IPS_OVER_SCAN_RIGHT_STR","features":[379]},{"name":"WIA_IPS_OVER_SCAN_STR","features":[379]},{"name":"WIA_IPS_OVER_SCAN_TOP","features":[379]},{"name":"WIA_IPS_OVER_SCAN_TOP_STR","features":[379]},{"name":"WIA_IPS_PAGES","features":[379]},{"name":"WIA_IPS_PAGES_STR","features":[379]},{"name":"WIA_IPS_PAGE_HEIGHT","features":[379]},{"name":"WIA_IPS_PAGE_HEIGHT_STR","features":[379]},{"name":"WIA_IPS_PAGE_SIZE","features":[379]},{"name":"WIA_IPS_PAGE_SIZE_STR","features":[379]},{"name":"WIA_IPS_PAGE_WIDTH","features":[379]},{"name":"WIA_IPS_PAGE_WIDTH_STR","features":[379]},{"name":"WIA_IPS_PATCH_CODE_READER","features":[379]},{"name":"WIA_IPS_PATCH_CODE_READER_STR","features":[379]},{"name":"WIA_IPS_PHOTOMETRIC_INTERP","features":[379]},{"name":"WIA_IPS_PHOTOMETRIC_INTERP_STR","features":[379]},{"name":"WIA_IPS_PREVIEW","features":[379]},{"name":"WIA_IPS_PREVIEW_STR","features":[379]},{"name":"WIA_IPS_PREVIEW_TYPE","features":[379]},{"name":"WIA_IPS_PREVIEW_TYPE_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_CHARACTER_ROTATION","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_CHARACTER_ROTATION_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER_DIGITS","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER_DIGITS_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_COUNTER_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_FONT_TYPE","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_FONT_TYPE_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_DOWNLOAD","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_DOWNLOAD_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_HEIGHT","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_HEIGHT_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_WIDTH","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MAX_WIDTH_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_HEIGHT","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_HEIGHT_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_WIDTH","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_MIN_WIDTH_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_POSITION","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_POSITION_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_UPLOAD","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_GRAPHICS_UPLOAD_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_INK","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_INK_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_CHARACTERS","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_CHARACTERS_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_GRAPHICS","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_MAX_GRAPHICS_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_NUM_LINES","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_NUM_LINES_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_ORDER","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_ORDER_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_PADDING","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_PADDING_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_STEP","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_STEP_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_STRING","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_STRING_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_DOWNLOAD","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_DOWNLOAD_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_UPLOAD","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_TEXT_UPLOAD_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_CHARACTERS","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_CHARACTERS_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_FORMAT_SPECIFIERS","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_VALID_FORMAT_SPECIFIERS_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_XOFFSET","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_XOFFSET_STR","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_YOFFSET","features":[379]},{"name":"WIA_IPS_PRINTER_ENDORSER_YOFFSET_STR","features":[379]},{"name":"WIA_IPS_ROTATION","features":[379]},{"name":"WIA_IPS_ROTATION_STR","features":[379]},{"name":"WIA_IPS_SCAN_AHEAD","features":[379]},{"name":"WIA_IPS_SCAN_AHEAD_CAPACITY","features":[379]},{"name":"WIA_IPS_SCAN_AHEAD_CAPACITY_STR","features":[379]},{"name":"WIA_IPS_SCAN_AHEAD_STR","features":[379]},{"name":"WIA_IPS_SEGMENTATION","features":[379]},{"name":"WIA_IPS_SEGMENTATION_STR","features":[379]},{"name":"WIA_IPS_SHEET_FEEDER_REGISTRATION","features":[379]},{"name":"WIA_IPS_SHEET_FEEDER_REGISTRATION_STR","features":[379]},{"name":"WIA_IPS_SHOW_PREVIEW_CONTROL","features":[379]},{"name":"WIA_IPS_SHOW_PREVIEW_CONTROL_STR","features":[379]},{"name":"WIA_IPS_SUPPORTED_BARCODE_TYPES","features":[379]},{"name":"WIA_IPS_SUPPORTED_BARCODE_TYPES_STR","features":[379]},{"name":"WIA_IPS_SUPPORTED_PATCH_CODE_TYPES","features":[379]},{"name":"WIA_IPS_SUPPORTED_PATCH_CODE_TYPES_STR","features":[379]},{"name":"WIA_IPS_SUPPORTS_CHILD_ITEM_CREATION","features":[379]},{"name":"WIA_IPS_SUPPORTS_CHILD_ITEM_CREATION_STR","features":[379]},{"name":"WIA_IPS_THRESHOLD","features":[379]},{"name":"WIA_IPS_THRESHOLD_STR","features":[379]},{"name":"WIA_IPS_TRANSFER_CAPABILITIES","features":[379]},{"name":"WIA_IPS_TRANSFER_CAPABILITIES_STR","features":[379]},{"name":"WIA_IPS_WARM_UP_TIME","features":[379]},{"name":"WIA_IPS_WARM_UP_TIME_STR","features":[379]},{"name":"WIA_IPS_XEXTENT","features":[379]},{"name":"WIA_IPS_XEXTENT_STR","features":[379]},{"name":"WIA_IPS_XPOS","features":[379]},{"name":"WIA_IPS_XPOS_STR","features":[379]},{"name":"WIA_IPS_XRES","features":[379]},{"name":"WIA_IPS_XRES_STR","features":[379]},{"name":"WIA_IPS_XSCALING","features":[379]},{"name":"WIA_IPS_XSCALING_STR","features":[379]},{"name":"WIA_IPS_YEXTENT","features":[379]},{"name":"WIA_IPS_YEXTENT_STR","features":[379]},{"name":"WIA_IPS_YPOS","features":[379]},{"name":"WIA_IPS_YPOS_STR","features":[379]},{"name":"WIA_IPS_YRES","features":[379]},{"name":"WIA_IPS_YRES_STR","features":[379]},{"name":"WIA_IPS_YSCALING","features":[379]},{"name":"WIA_IPS_YSCALING_STR","features":[379]},{"name":"WIA_IS_DEFAULT_HANDLER","features":[379]},{"name":"WIA_ITEM_CAN_BE_DELETED","features":[379]},{"name":"WIA_ITEM_READ","features":[379]},{"name":"WIA_ITEM_WRITE","features":[379]},{"name":"WIA_LAMP_OFF","features":[379]},{"name":"WIA_LAMP_ON","features":[379]},{"name":"WIA_LINE_ORDER_BOTTOM_TO_TOP","features":[379]},{"name":"WIA_LINE_ORDER_TOP_TO_BOTTOM","features":[379]},{"name":"WIA_LIST_COUNT","features":[379]},{"name":"WIA_LIST_NOM","features":[379]},{"name":"WIA_LIST_NUM_ELEMS","features":[379]},{"name":"WIA_LIST_VALUES","features":[379]},{"name":"WIA_LONG_DOCUMENT_DISABLED","features":[379]},{"name":"WIA_LONG_DOCUMENT_ENABLED","features":[379]},{"name":"WIA_LONG_DOCUMENT_SPLIT","features":[379]},{"name":"WIA_MAJOR_EVENT_DEVICE_CONNECT","features":[379]},{"name":"WIA_MAJOR_EVENT_DEVICE_DISCONNECT","features":[379]},{"name":"WIA_MAJOR_EVENT_PICTURE_DELETED","features":[379]},{"name":"WIA_MAJOR_EVENT_PICTURE_TAKEN","features":[379]},{"name":"WIA_MAX_CTX_SIZE","features":[379]},{"name":"WIA_MICR","features":[379]},{"name":"WIA_MICR_INFO","features":[379]},{"name":"WIA_MICR_READER_AUTO","features":[379]},{"name":"WIA_MICR_READER_DISABLED","features":[379]},{"name":"WIA_MICR_READER_FEEDER_BACK","features":[379]},{"name":"WIA_MICR_READER_FEEDER_DUPLEX","features":[379]},{"name":"WIA_MICR_READER_FEEDER_FRONT","features":[379]},{"name":"WIA_MICR_READER_FLATBED","features":[379]},{"name":"WIA_MULTI_FEED_DETECT_CONTINUE","features":[379]},{"name":"WIA_MULTI_FEED_DETECT_DISABLED","features":[379]},{"name":"WIA_MULTI_FEED_DETECT_METHOD_LENGTH","features":[379]},{"name":"WIA_MULTI_FEED_DETECT_METHOD_OVERLAP","features":[379]},{"name":"WIA_MULTI_FEED_DETECT_STOP_ERROR","features":[379]},{"name":"WIA_MULTI_FEED_DETECT_STOP_SUCCESS","features":[379]},{"name":"WIA_NOTIFICATION_EVENT","features":[379]},{"name":"WIA_NUM_DIP","features":[379]},{"name":"WIA_NUM_IPC","features":[379]},{"name":"WIA_ORDER_BGR","features":[379]},{"name":"WIA_ORDER_RGB","features":[379]},{"name":"WIA_OVER_SCAN_ALL","features":[379]},{"name":"WIA_OVER_SCAN_DISABLED","features":[379]},{"name":"WIA_OVER_SCAN_LEFT_RIGHT","features":[379]},{"name":"WIA_OVER_SCAN_TOP_BOTTOM","features":[379]},{"name":"WIA_PACKED_PIXEL","features":[379]},{"name":"WIA_PAGE_A4","features":[379]},{"name":"WIA_PAGE_AUTO","features":[379]},{"name":"WIA_PAGE_BUSINESSCARD","features":[379]},{"name":"WIA_PAGE_CUSTOM","features":[379]},{"name":"WIA_PAGE_CUSTOM_BASE","features":[379]},{"name":"WIA_PAGE_DIN_2B","features":[379]},{"name":"WIA_PAGE_DIN_4B","features":[379]},{"name":"WIA_PAGE_ISO_A0","features":[379]},{"name":"WIA_PAGE_ISO_A1","features":[379]},{"name":"WIA_PAGE_ISO_A10","features":[379]},{"name":"WIA_PAGE_ISO_A2","features":[379]},{"name":"WIA_PAGE_ISO_A3","features":[379]},{"name":"WIA_PAGE_ISO_A4","features":[379]},{"name":"WIA_PAGE_ISO_A5","features":[379]},{"name":"WIA_PAGE_ISO_A6","features":[379]},{"name":"WIA_PAGE_ISO_A7","features":[379]},{"name":"WIA_PAGE_ISO_A8","features":[379]},{"name":"WIA_PAGE_ISO_A9","features":[379]},{"name":"WIA_PAGE_ISO_B0","features":[379]},{"name":"WIA_PAGE_ISO_B1","features":[379]},{"name":"WIA_PAGE_ISO_B10","features":[379]},{"name":"WIA_PAGE_ISO_B2","features":[379]},{"name":"WIA_PAGE_ISO_B3","features":[379]},{"name":"WIA_PAGE_ISO_B4","features":[379]},{"name":"WIA_PAGE_ISO_B5","features":[379]},{"name":"WIA_PAGE_ISO_B6","features":[379]},{"name":"WIA_PAGE_ISO_B7","features":[379]},{"name":"WIA_PAGE_ISO_B8","features":[379]},{"name":"WIA_PAGE_ISO_B9","features":[379]},{"name":"WIA_PAGE_ISO_C0","features":[379]},{"name":"WIA_PAGE_ISO_C1","features":[379]},{"name":"WIA_PAGE_ISO_C10","features":[379]},{"name":"WIA_PAGE_ISO_C2","features":[379]},{"name":"WIA_PAGE_ISO_C3","features":[379]},{"name":"WIA_PAGE_ISO_C4","features":[379]},{"name":"WIA_PAGE_ISO_C5","features":[379]},{"name":"WIA_PAGE_ISO_C6","features":[379]},{"name":"WIA_PAGE_ISO_C7","features":[379]},{"name":"WIA_PAGE_ISO_C8","features":[379]},{"name":"WIA_PAGE_ISO_C9","features":[379]},{"name":"WIA_PAGE_JIS_2A","features":[379]},{"name":"WIA_PAGE_JIS_4A","features":[379]},{"name":"WIA_PAGE_JIS_B0","features":[379]},{"name":"WIA_PAGE_JIS_B1","features":[379]},{"name":"WIA_PAGE_JIS_B10","features":[379]},{"name":"WIA_PAGE_JIS_B2","features":[379]},{"name":"WIA_PAGE_JIS_B3","features":[379]},{"name":"WIA_PAGE_JIS_B4","features":[379]},{"name":"WIA_PAGE_JIS_B5","features":[379]},{"name":"WIA_PAGE_JIS_B6","features":[379]},{"name":"WIA_PAGE_JIS_B7","features":[379]},{"name":"WIA_PAGE_JIS_B8","features":[379]},{"name":"WIA_PAGE_JIS_B9","features":[379]},{"name":"WIA_PAGE_LETTER","features":[379]},{"name":"WIA_PAGE_USLEDGER","features":[379]},{"name":"WIA_PAGE_USLEGAL","features":[379]},{"name":"WIA_PAGE_USLETTER","features":[379]},{"name":"WIA_PAGE_USSTATEMENT","features":[379]},{"name":"WIA_PATCH_CODES","features":[379]},{"name":"WIA_PATCH_CODE_1","features":[379]},{"name":"WIA_PATCH_CODE_10","features":[379]},{"name":"WIA_PATCH_CODE_11","features":[379]},{"name":"WIA_PATCH_CODE_12","features":[379]},{"name":"WIA_PATCH_CODE_13","features":[379]},{"name":"WIA_PATCH_CODE_14","features":[379]},{"name":"WIA_PATCH_CODE_2","features":[379]},{"name":"WIA_PATCH_CODE_3","features":[379]},{"name":"WIA_PATCH_CODE_4","features":[379]},{"name":"WIA_PATCH_CODE_6","features":[379]},{"name":"WIA_PATCH_CODE_7","features":[379]},{"name":"WIA_PATCH_CODE_8","features":[379]},{"name":"WIA_PATCH_CODE_9","features":[379]},{"name":"WIA_PATCH_CODE_CUSTOM_BASE","features":[379]},{"name":"WIA_PATCH_CODE_INFO","features":[379]},{"name":"WIA_PATCH_CODE_READER_AUTO","features":[379]},{"name":"WIA_PATCH_CODE_READER_DISABLED","features":[379]},{"name":"WIA_PATCH_CODE_READER_FEEDER_BACK","features":[379]},{"name":"WIA_PATCH_CODE_READER_FEEDER_DUPLEX","features":[379]},{"name":"WIA_PATCH_CODE_READER_FEEDER_FRONT","features":[379]},{"name":"WIA_PATCH_CODE_READER_FLATBED","features":[379]},{"name":"WIA_PATCH_CODE_T","features":[379]},{"name":"WIA_PATCH_CODE_UNKNOWN","features":[379]},{"name":"WIA_PHOTO_WHITE_0","features":[379]},{"name":"WIA_PHOTO_WHITE_1","features":[379]},{"name":"WIA_PLANAR","features":[379]},{"name":"WIA_PREVIEW_SCAN","features":[379]},{"name":"WIA_PRINTER_ENDORSER_AFTER_SCAN","features":[379]},{"name":"WIA_PRINTER_ENDORSER_AUTO","features":[379]},{"name":"WIA_PRINTER_ENDORSER_BEFORE_SCAN","features":[379]},{"name":"WIA_PRINTER_ENDORSER_DIGITAL","features":[379]},{"name":"WIA_PRINTER_ENDORSER_DISABLED","features":[379]},{"name":"WIA_PRINTER_ENDORSER_FEEDER_BACK","features":[379]},{"name":"WIA_PRINTER_ENDORSER_FEEDER_DUPLEX","features":[379]},{"name":"WIA_PRINTER_ENDORSER_FEEDER_FRONT","features":[379]},{"name":"WIA_PRINTER_ENDORSER_FLATBED","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BACKGROUND","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BOTTOM","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BOTTOM_LEFT","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_BOTTOM_RIGHT","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_DEVICE_DEFAULT","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_LEFT","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_RIGHT","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_TOP","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_TOP_LEFT","features":[379]},{"name":"WIA_PRINTER_ENDORSER_GRAPHICS_TOP_RIGHT","features":[379]},{"name":"WIA_PRINT_AM_PM","features":[379]},{"name":"WIA_PRINT_DATE","features":[379]},{"name":"WIA_PRINT_DAY","features":[379]},{"name":"WIA_PRINT_FONT_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_EXTRA_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_ITALIC","features":[379]},{"name":"WIA_PRINT_FONT_ITALIC_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_ITALIC_EXTRA_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_LARGE","features":[379]},{"name":"WIA_PRINT_FONT_LARGE_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_LARGE_EXTRA_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_LARGE_ITALIC","features":[379]},{"name":"WIA_PRINT_FONT_LARGE_ITALIC_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_LARGE_ITALIC_EXTRA_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_NORMAL","features":[379]},{"name":"WIA_PRINT_FONT_SMALL","features":[379]},{"name":"WIA_PRINT_FONT_SMALL_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_SMALL_EXTRA_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_SMALL_ITALIC","features":[379]},{"name":"WIA_PRINT_FONT_SMALL_ITALIC_BOLD","features":[379]},{"name":"WIA_PRINT_FONT_SMALL_ITALIC_EXTRA_BOLD","features":[379]},{"name":"WIA_PRINT_HOUR_12H","features":[379]},{"name":"WIA_PRINT_HOUR_24H","features":[379]},{"name":"WIA_PRINT_IMAGE","features":[379]},{"name":"WIA_PRINT_MILLISECOND","features":[379]},{"name":"WIA_PRINT_MINUTE","features":[379]},{"name":"WIA_PRINT_MONTH","features":[379]},{"name":"WIA_PRINT_MONTH_NAME","features":[379]},{"name":"WIA_PRINT_MONTH_SHORT","features":[379]},{"name":"WIA_PRINT_PADDING_BLANK","features":[379]},{"name":"WIA_PRINT_PADDING_NONE","features":[379]},{"name":"WIA_PRINT_PADDING_ZERO","features":[379]},{"name":"WIA_PRINT_PAGE_COUNT","features":[379]},{"name":"WIA_PRINT_SECOND","features":[379]},{"name":"WIA_PRINT_TIME_12H","features":[379]},{"name":"WIA_PRINT_TIME_24H","features":[379]},{"name":"WIA_PRINT_WEEK_DAY","features":[379]},{"name":"WIA_PRINT_WEEK_DAY_SHORT","features":[379]},{"name":"WIA_PRINT_YEAR","features":[379]},{"name":"WIA_PRIVATE_DEVPROP","features":[379]},{"name":"WIA_PRIVATE_ITEMPROP","features":[379]},{"name":"WIA_PROPERTY_CONTEXT","features":[379,305]},{"name":"WIA_PROPERTY_INFO","features":[379,380]},{"name":"WIA_PROPID_TO_NAME","features":[379]},{"name":"WIA_PROPPAGE_CAMERA_ITEM_GENERAL","features":[379]},{"name":"WIA_PROPPAGE_DEVICE_GENERAL","features":[379]},{"name":"WIA_PROPPAGE_SCANNER_ITEM_GENERAL","features":[379]},{"name":"WIA_PROP_CACHEABLE","features":[379]},{"name":"WIA_PROP_FLAG","features":[379]},{"name":"WIA_PROP_LIST","features":[379]},{"name":"WIA_PROP_NONE","features":[379]},{"name":"WIA_PROP_RANGE","features":[379]},{"name":"WIA_PROP_READ","features":[379]},{"name":"WIA_PROP_SYNC_REQUIRED","features":[379]},{"name":"WIA_PROP_WRITE","features":[379]},{"name":"WIA_RANGE_MAX","features":[379]},{"name":"WIA_RANGE_MIN","features":[379]},{"name":"WIA_RANGE_NOM","features":[379]},{"name":"WIA_RANGE_NUM_ELEMS","features":[379]},{"name":"WIA_RANGE_STEP","features":[379]},{"name":"WIA_RAW_HEADER","features":[379]},{"name":"WIA_REGISTER_EVENT_CALLBACK","features":[379]},{"name":"WIA_RESERVED_FOR_NEW_PROPS","features":[379]},{"name":"WIA_SCAN_AHEAD_ALL","features":[379]},{"name":"WIA_SCAN_AHEAD_DISABLED","features":[379]},{"name":"WIA_SCAN_AHEAD_ENABLED","features":[379]},{"name":"WIA_SEGMENTATION_FILTER_STR","features":[379]},{"name":"WIA_SELECT_DEVICE_NODEFAULT","features":[379]},{"name":"WIA_SEPARATOR_DETECT_NOSCAN_CONTINUE","features":[379]},{"name":"WIA_SEPARATOR_DETECT_NOSCAN_STOP","features":[379]},{"name":"WIA_SEPARATOR_DETECT_SCAN_CONTINUE","features":[379]},{"name":"WIA_SEPARATOR_DETECT_SCAN_STOP","features":[379]},{"name":"WIA_SEPARATOR_DISABLED","features":[379]},{"name":"WIA_SET_DEFAULT_HANDLER","features":[379]},{"name":"WIA_SHOW_PREVIEW_CONTROL","features":[379]},{"name":"WIA_STATUS_CALIBRATING","features":[379]},{"name":"WIA_STATUS_CLEAR","features":[379]},{"name":"WIA_STATUS_END_OF_MEDIA","features":[379]},{"name":"WIA_STATUS_NETWORK_DEVICE_RESERVED","features":[379]},{"name":"WIA_STATUS_NOT_HANDLED","features":[379]},{"name":"WIA_STATUS_RESERVING_NETWORK_DEVICE","features":[379]},{"name":"WIA_STATUS_SKIP_ITEM","features":[379]},{"name":"WIA_STATUS_WARMING_UP","features":[379]},{"name":"WIA_S_CHANGE_DEVICE","features":[379]},{"name":"WIA_S_NO_DEVICE_AVAILABLE","features":[379]},{"name":"WIA_TRANSFER_ACQUIRE_CHILDREN","features":[379]},{"name":"WIA_TRANSFER_CHILDREN_SINGLE_SCAN","features":[379]},{"name":"WIA_TRANSFER_MSG_DEVICE_STATUS","features":[379]},{"name":"WIA_TRANSFER_MSG_END_OF_STREAM","features":[379]},{"name":"WIA_TRANSFER_MSG_END_OF_TRANSFER","features":[379]},{"name":"WIA_TRANSFER_MSG_NEW_PAGE","features":[379]},{"name":"WIA_TRANSFER_MSG_STATUS","features":[379]},{"name":"WIA_UNREGISTER_EVENT_CALLBACK","features":[379]},{"name":"WIA_USE_SEGMENTATION_FILTER","features":[379]},{"name":"WIA_WSD_FRIENDLY_NAME","features":[379]},{"name":"WIA_WSD_FRIENDLY_NAME_STR","features":[379]},{"name":"WIA_WSD_MANUFACTURER","features":[379]},{"name":"WIA_WSD_MANUFACTURER_STR","features":[379]},{"name":"WIA_WSD_MANUFACTURER_URL","features":[379]},{"name":"WIA_WSD_MANUFACTURER_URL_STR","features":[379]},{"name":"WIA_WSD_MODEL_NAME","features":[379]},{"name":"WIA_WSD_MODEL_NAME_STR","features":[379]},{"name":"WIA_WSD_MODEL_NUMBER","features":[379]},{"name":"WIA_WSD_MODEL_NUMBER_STR","features":[379]},{"name":"WIA_WSD_MODEL_URL","features":[379]},{"name":"WIA_WSD_MODEL_URL_STR","features":[379]},{"name":"WIA_WSD_PRESENTATION_URL","features":[379]},{"name":"WIA_WSD_PRESENTATION_URL_STR","features":[379]},{"name":"WIA_WSD_SCAN_AVAILABLE_ITEM","features":[379]},{"name":"WIA_WSD_SCAN_AVAILABLE_ITEM_STR","features":[379]},{"name":"WIA_WSD_SERIAL_NUMBER","features":[379]},{"name":"WIA_WSD_SERIAL_NUMBER_STR","features":[379]},{"name":"WiaAudFmt_AIFF","features":[379]},{"name":"WiaAudFmt_MP3","features":[379]},{"name":"WiaAudFmt_WAV","features":[379]},{"name":"WiaAudFmt_WMA","features":[379]},{"name":"WiaDevMgr","features":[379]},{"name":"WiaDevMgr2","features":[379]},{"name":"WiaImgFmt_ASF","features":[379]},{"name":"WiaImgFmt_AVI","features":[379]},{"name":"WiaImgFmt_BMP","features":[379]},{"name":"WiaImgFmt_CIFF","features":[379]},{"name":"WiaImgFmt_CSV","features":[379]},{"name":"WiaImgFmt_DPOF","features":[379]},{"name":"WiaImgFmt_EMF","features":[379]},{"name":"WiaImgFmt_EXEC","features":[379]},{"name":"WiaImgFmt_EXIF","features":[379]},{"name":"WiaImgFmt_FLASHPIX","features":[379]},{"name":"WiaImgFmt_GIF","features":[379]},{"name":"WiaImgFmt_HTML","features":[379]},{"name":"WiaImgFmt_ICO","features":[379]},{"name":"WiaImgFmt_JBIG","features":[379]},{"name":"WiaImgFmt_JBIG2","features":[379]},{"name":"WiaImgFmt_JPEG","features":[379]},{"name":"WiaImgFmt_JPEG2K","features":[379]},{"name":"WiaImgFmt_JPEG2KX","features":[379]},{"name":"WiaImgFmt_MEMORYBMP","features":[379]},{"name":"WiaImgFmt_MPG","features":[379]},{"name":"WiaImgFmt_OXPS","features":[379]},{"name":"WiaImgFmt_PDFA","features":[379]},{"name":"WiaImgFmt_PHOTOCD","features":[379]},{"name":"WiaImgFmt_PICT","features":[379]},{"name":"WiaImgFmt_PNG","features":[379]},{"name":"WiaImgFmt_RAW","features":[379]},{"name":"WiaImgFmt_RAWBAR","features":[379]},{"name":"WiaImgFmt_RAWMIC","features":[379]},{"name":"WiaImgFmt_RAWPAT","features":[379]},{"name":"WiaImgFmt_RAWRGB","features":[379]},{"name":"WiaImgFmt_RTF","features":[379]},{"name":"WiaImgFmt_SCRIPT","features":[379]},{"name":"WiaImgFmt_TIFF","features":[379]},{"name":"WiaImgFmt_TXT","features":[379]},{"name":"WiaImgFmt_UNDEFINED","features":[379]},{"name":"WiaImgFmt_UNICODE16","features":[379]},{"name":"WiaImgFmt_WMF","features":[379]},{"name":"WiaImgFmt_XML","features":[379]},{"name":"WiaImgFmt_XMLBAR","features":[379]},{"name":"WiaImgFmt_XMLMIC","features":[379]},{"name":"WiaImgFmt_XMLPAT","features":[379]},{"name":"WiaImgFmt_XPS","features":[379]},{"name":"WiaItemTypeAnalyze","features":[379]},{"name":"WiaItemTypeAudio","features":[379]},{"name":"WiaItemTypeBurst","features":[379]},{"name":"WiaItemTypeDeleted","features":[379]},{"name":"WiaItemTypeDevice","features":[379]},{"name":"WiaItemTypeDisconnected","features":[379]},{"name":"WiaItemTypeDocument","features":[379]},{"name":"WiaItemTypeFile","features":[379]},{"name":"WiaItemTypeFolder","features":[379]},{"name":"WiaItemTypeFree","features":[379]},{"name":"WiaItemTypeGenerated","features":[379]},{"name":"WiaItemTypeHPanorama","features":[379]},{"name":"WiaItemTypeHasAttachments","features":[379]},{"name":"WiaItemTypeImage","features":[379]},{"name":"WiaItemTypeMask","features":[379]},{"name":"WiaItemTypeProgrammableDataSource","features":[379]},{"name":"WiaItemTypeRemoved","features":[379]},{"name":"WiaItemTypeRoot","features":[379]},{"name":"WiaItemTypeStorage","features":[379]},{"name":"WiaItemTypeTransfer","features":[379]},{"name":"WiaItemTypeTwainCapabilityPassThrough","features":[379]},{"name":"WiaItemTypeVPanorama","features":[379]},{"name":"WiaItemTypeVideo","features":[379]},{"name":"WiaLog","features":[379]},{"name":"WiaTransferParams","features":[379]},{"name":"WiaVideo","features":[379]},{"name":"g_dwDebugFlags","features":[379]}],"383":[{"name":"CLSID_WPD_NAMESPACE_EXTENSION","features":[381]},{"name":"DELETE_OBJECT_OPTIONS","features":[381]},{"name":"DEVICE_RADIO_STATE","features":[381]},{"name":"DEVPKEY_MTPBTH_IsConnected","features":[381,303]},{"name":"DEVSVCTYPE_ABSTRACT","features":[381]},{"name":"DEVSVCTYPE_DEFAULT","features":[381]},{"name":"DEVSVC_SERVICEINFO_VERSION","features":[381]},{"name":"DMProcessConfigXMLFiltered","features":[381]},{"name":"DRS_HW_RADIO_OFF","features":[381]},{"name":"DRS_HW_RADIO_OFF_UNCONTROLLABLE","features":[381]},{"name":"DRS_HW_RADIO_ON_UNCONTROLLABLE","features":[381]},{"name":"DRS_RADIO_INVALID","features":[381]},{"name":"DRS_RADIO_MAX","features":[381]},{"name":"DRS_RADIO_ON","features":[381]},{"name":"DRS_SW_HW_RADIO_OFF","features":[381]},{"name":"DRS_SW_RADIO_OFF","features":[381]},{"name":"ENUM_AnchorResults_AnchorStateInvalid","features":[381]},{"name":"ENUM_AnchorResults_AnchorStateNormal","features":[381]},{"name":"ENUM_AnchorResults_AnchorStateOld","features":[381]},{"name":"ENUM_AnchorResults_ItemStateChanged","features":[381]},{"name":"ENUM_AnchorResults_ItemStateCreated","features":[381]},{"name":"ENUM_AnchorResults_ItemStateDeleted","features":[381]},{"name":"ENUM_AnchorResults_ItemStateInvalid","features":[381]},{"name":"ENUM_AnchorResults_ItemStateUpdated","features":[381]},{"name":"ENUM_CalendarObj_BusyStatusBusy","features":[381]},{"name":"ENUM_CalendarObj_BusyStatusFree","features":[381]},{"name":"ENUM_CalendarObj_BusyStatusOutOfOffice","features":[381]},{"name":"ENUM_CalendarObj_BusyStatusTentative","features":[381]},{"name":"ENUM_DeviceMetadataObj_DefaultCABFalse","features":[381]},{"name":"ENUM_DeviceMetadataObj_DefaultCABTrue","features":[381]},{"name":"ENUM_MessageObj_PatternInstanceFirst","features":[381]},{"name":"ENUM_MessageObj_PatternInstanceFourth","features":[381]},{"name":"ENUM_MessageObj_PatternInstanceLast","features":[381]},{"name":"ENUM_MessageObj_PatternInstanceNone","features":[381]},{"name":"ENUM_MessageObj_PatternInstanceSecond","features":[381]},{"name":"ENUM_MessageObj_PatternInstanceThird","features":[381]},{"name":"ENUM_MessageObj_PatternTypeDaily","features":[381]},{"name":"ENUM_MessageObj_PatternTypeMonthly","features":[381]},{"name":"ENUM_MessageObj_PatternTypeWeekly","features":[381]},{"name":"ENUM_MessageObj_PatternTypeYearly","features":[381]},{"name":"ENUM_MessageObj_PriorityHighest","features":[381]},{"name":"ENUM_MessageObj_PriorityLowest","features":[381]},{"name":"ENUM_MessageObj_PriorityNormal","features":[381]},{"name":"ENUM_MessageObj_ReadFalse","features":[381]},{"name":"ENUM_MessageObj_ReadTrue","features":[381]},{"name":"ENUM_StatusSvc_ChargingActive","features":[381]},{"name":"ENUM_StatusSvc_ChargingInactive","features":[381]},{"name":"ENUM_StatusSvc_ChargingUnknown","features":[381]},{"name":"ENUM_StatusSvc_RoamingActive","features":[381]},{"name":"ENUM_StatusSvc_RoamingInactive","features":[381]},{"name":"ENUM_StatusSvc_RoamingUnknown","features":[381]},{"name":"ENUM_SyncSvc_SyncObjectReferencesDisabled","features":[381]},{"name":"ENUM_SyncSvc_SyncObjectReferencesEnabled","features":[381]},{"name":"ENUM_TaskObj_CompleteFalse","features":[381]},{"name":"ENUM_TaskObj_CompleteTrue","features":[381]},{"name":"E_WPD_DEVICE_ALREADY_OPENED","features":[381]},{"name":"E_WPD_DEVICE_IS_HUNG","features":[381]},{"name":"E_WPD_DEVICE_NOT_OPEN","features":[381]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_DEVICE","features":[381]},{"name":"E_WPD_OBJECT_ALREADY_ATTACHED_TO_SERVICE","features":[381]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_DEVICE","features":[381]},{"name":"E_WPD_OBJECT_NOT_ATTACHED_TO_SERVICE","features":[381]},{"name":"E_WPD_OBJECT_NOT_COMMITED","features":[381]},{"name":"E_WPD_SERVICE_ALREADY_OPENED","features":[381]},{"name":"E_WPD_SERVICE_BAD_PARAMETER_ORDER","features":[381]},{"name":"E_WPD_SERVICE_NOT_OPEN","features":[381]},{"name":"E_WPD_SMS_INVALID_MESSAGE_BODY","features":[381]},{"name":"E_WPD_SMS_INVALID_RECIPIENT","features":[381]},{"name":"E_WPD_SMS_SERVICE_UNAVAILABLE","features":[381]},{"name":"EnumBthMtpConnectors","features":[381]},{"name":"FACILITY_WPD","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekFriday","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekMonday","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekNone","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekSaturday","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekSunday","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekThursday","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekTuesday","features":[381]},{"name":"FLAG_MessageObj_DayOfWeekWednesday","features":[381]},{"name":"GUID_DEVINTERFACE_WPD","features":[381]},{"name":"GUID_DEVINTERFACE_WPD_PRIVATE","features":[381]},{"name":"GUID_DEVINTERFACE_WPD_SERVICE","features":[381]},{"name":"IConnectionRequestCallback","features":[381]},{"name":"IEnumPortableDeviceConnectors","features":[381]},{"name":"IEnumPortableDeviceObjectIDs","features":[381]},{"name":"IMediaRadioManager","features":[381]},{"name":"IMediaRadioManagerNotifySink","features":[381]},{"name":"IOCTL_WPD_MESSAGE_READWRITE_ACCESS","features":[381]},{"name":"IOCTL_WPD_MESSAGE_READ_ACCESS","features":[381]},{"name":"IPortableDevice","features":[381]},{"name":"IPortableDeviceCapabilities","features":[381]},{"name":"IPortableDeviceConnector","features":[381]},{"name":"IPortableDeviceContent","features":[381]},{"name":"IPortableDeviceContent2","features":[381]},{"name":"IPortableDeviceDataStream","features":[381,356]},{"name":"IPortableDeviceDispatchFactory","features":[381]},{"name":"IPortableDeviceEventCallback","features":[381]},{"name":"IPortableDeviceKeyCollection","features":[381]},{"name":"IPortableDeviceManager","features":[381]},{"name":"IPortableDevicePropVariantCollection","features":[381]},{"name":"IPortableDeviceProperties","features":[381]},{"name":"IPortableDevicePropertiesBulk","features":[381]},{"name":"IPortableDevicePropertiesBulkCallback","features":[381]},{"name":"IPortableDeviceResources","features":[381]},{"name":"IPortableDeviceService","features":[381]},{"name":"IPortableDeviceServiceActivation","features":[381]},{"name":"IPortableDeviceServiceCapabilities","features":[381]},{"name":"IPortableDeviceServiceManager","features":[381]},{"name":"IPortableDeviceServiceMethodCallback","features":[381]},{"name":"IPortableDeviceServiceMethods","features":[381]},{"name":"IPortableDeviceServiceOpenCallback","features":[381]},{"name":"IPortableDeviceUnitsStream","features":[381]},{"name":"IPortableDeviceValues","features":[381]},{"name":"IPortableDeviceValuesCollection","features":[381]},{"name":"IPortableDeviceWebControl","features":[381,356]},{"name":"IRadioInstance","features":[381]},{"name":"IRadioInstanceCollection","features":[381]},{"name":"IWpdSerializer","features":[381]},{"name":"NAME_3GPP2File","features":[381]},{"name":"NAME_3GPPFile","features":[381]},{"name":"NAME_AACFile","features":[381]},{"name":"NAME_AIFFFile","features":[381]},{"name":"NAME_AMRFile","features":[381]},{"name":"NAME_ASFFile","features":[381]},{"name":"NAME_ASXPlaylist","features":[381]},{"name":"NAME_ATSCTSFile","features":[381]},{"name":"NAME_AVCHDFile","features":[381]},{"name":"NAME_AVIFile","features":[381]},{"name":"NAME_AbstractActivity","features":[381]},{"name":"NAME_AbstractActivityOccurrence","features":[381]},{"name":"NAME_AbstractAudioAlbum","features":[381]},{"name":"NAME_AbstractAudioPlaylist","features":[381]},{"name":"NAME_AbstractAudioVideoAlbum","features":[381]},{"name":"NAME_AbstractChapteredProduction","features":[381]},{"name":"NAME_AbstractContact","features":[381]},{"name":"NAME_AbstractContactGroup","features":[381]},{"name":"NAME_AbstractDocument","features":[381]},{"name":"NAME_AbstractImageAlbum","features":[381]},{"name":"NAME_AbstractMediacast","features":[381]},{"name":"NAME_AbstractMessage","features":[381]},{"name":"NAME_AbstractMessageFolder","features":[381]},{"name":"NAME_AbstractMultimediaAlbum","features":[381]},{"name":"NAME_AbstractNote","features":[381]},{"name":"NAME_AbstractTask","features":[381]},{"name":"NAME_AbstractVideoAlbum","features":[381]},{"name":"NAME_AbstractVideoPlaylist","features":[381]},{"name":"NAME_AnchorResults","features":[381]},{"name":"NAME_AnchorResults_Anchor","features":[381]},{"name":"NAME_AnchorResults_AnchorState","features":[381]},{"name":"NAME_AnchorResults_ResultObjectID","features":[381]},{"name":"NAME_AnchorSyncKnowledge","features":[381]},{"name":"NAME_AnchorSyncSvc","features":[381]},{"name":"NAME_AnchorSyncSvc_BeginSync","features":[381]},{"name":"NAME_AnchorSyncSvc_CurrentAnchor","features":[381]},{"name":"NAME_AnchorSyncSvc_EndSync","features":[381]},{"name":"NAME_AnchorSyncSvc_FilterType","features":[381]},{"name":"NAME_AnchorSyncSvc_GetChangesSinceAnchor","features":[381]},{"name":"NAME_AnchorSyncSvc_KnowledgeObjectID","features":[381]},{"name":"NAME_AnchorSyncSvc_LastSyncProxyID","features":[381]},{"name":"NAME_AnchorSyncSvc_LocalOnlyDelete","features":[381]},{"name":"NAME_AnchorSyncSvc_ProviderVersion","features":[381]},{"name":"NAME_AnchorSyncSvc_ReplicaID","features":[381]},{"name":"NAME_AnchorSyncSvc_SyncFormat","features":[381]},{"name":"NAME_AnchorSyncSvc_VersionProps","features":[381]},{"name":"NAME_Association","features":[381]},{"name":"NAME_AudibleFile","features":[381]},{"name":"NAME_AudioObj_AudioBitDepth","features":[381]},{"name":"NAME_AudioObj_AudioBitRate","features":[381]},{"name":"NAME_AudioObj_AudioBlockAlignment","features":[381]},{"name":"NAME_AudioObj_AudioFormatCode","features":[381]},{"name":"NAME_AudioObj_Channels","features":[381]},{"name":"NAME_AudioObj_Lyrics","features":[381]},{"name":"NAME_BMPImage","features":[381]},{"name":"NAME_CIFFImage","features":[381]},{"name":"NAME_CalendarObj_Accepted","features":[381]},{"name":"NAME_CalendarObj_BeginDateTime","features":[381]},{"name":"NAME_CalendarObj_BusyStatus","features":[381]},{"name":"NAME_CalendarObj_Declined","features":[381]},{"name":"NAME_CalendarObj_EndDateTime","features":[381]},{"name":"NAME_CalendarObj_Location","features":[381]},{"name":"NAME_CalendarObj_PatternDuration","features":[381]},{"name":"NAME_CalendarObj_PatternStartTime","features":[381]},{"name":"NAME_CalendarObj_ReminderOffset","features":[381]},{"name":"NAME_CalendarObj_Tentative","features":[381]},{"name":"NAME_CalendarObj_TimeZone","features":[381]},{"name":"NAME_CalendarSvc","features":[381]},{"name":"NAME_CalendarSvc_SyncWindowEnd","features":[381]},{"name":"NAME_CalendarSvc_SyncWindowStart","features":[381]},{"name":"NAME_ContactObj_AnniversaryDate","features":[381]},{"name":"NAME_ContactObj_Assistant","features":[381]},{"name":"NAME_ContactObj_Birthdate","features":[381]},{"name":"NAME_ContactObj_BusinessAddressCity","features":[381]},{"name":"NAME_ContactObj_BusinessAddressCountry","features":[381]},{"name":"NAME_ContactObj_BusinessAddressFull","features":[381]},{"name":"NAME_ContactObj_BusinessAddressLine2","features":[381]},{"name":"NAME_ContactObj_BusinessAddressPostalCode","features":[381]},{"name":"NAME_ContactObj_BusinessAddressRegion","features":[381]},{"name":"NAME_ContactObj_BusinessAddressStreet","features":[381]},{"name":"NAME_ContactObj_BusinessEmail","features":[381]},{"name":"NAME_ContactObj_BusinessEmail2","features":[381]},{"name":"NAME_ContactObj_BusinessFax","features":[381]},{"name":"NAME_ContactObj_BusinessPhone","features":[381]},{"name":"NAME_ContactObj_BusinessPhone2","features":[381]},{"name":"NAME_ContactObj_BusinessWebAddress","features":[381]},{"name":"NAME_ContactObj_Children","features":[381]},{"name":"NAME_ContactObj_Email","features":[381]},{"name":"NAME_ContactObj_FamilyName","features":[381]},{"name":"NAME_ContactObj_Fax","features":[381]},{"name":"NAME_ContactObj_GivenName","features":[381]},{"name":"NAME_ContactObj_IMAddress","features":[381]},{"name":"NAME_ContactObj_IMAddress2","features":[381]},{"name":"NAME_ContactObj_IMAddress3","features":[381]},{"name":"NAME_ContactObj_MiddleNames","features":[381]},{"name":"NAME_ContactObj_MobilePhone","features":[381]},{"name":"NAME_ContactObj_MobilePhone2","features":[381]},{"name":"NAME_ContactObj_Organization","features":[381]},{"name":"NAME_ContactObj_OtherAddressCity","features":[381]},{"name":"NAME_ContactObj_OtherAddressCountry","features":[381]},{"name":"NAME_ContactObj_OtherAddressFull","features":[381]},{"name":"NAME_ContactObj_OtherAddressLine2","features":[381]},{"name":"NAME_ContactObj_OtherAddressPostalCode","features":[381]},{"name":"NAME_ContactObj_OtherAddressRegion","features":[381]},{"name":"NAME_ContactObj_OtherAddressStreet","features":[381]},{"name":"NAME_ContactObj_OtherEmail","features":[381]},{"name":"NAME_ContactObj_OtherPhone","features":[381]},{"name":"NAME_ContactObj_Pager","features":[381]},{"name":"NAME_ContactObj_PersonalAddressCity","features":[381]},{"name":"NAME_ContactObj_PersonalAddressCountry","features":[381]},{"name":"NAME_ContactObj_PersonalAddressFull","features":[381]},{"name":"NAME_ContactObj_PersonalAddressLine2","features":[381]},{"name":"NAME_ContactObj_PersonalAddressPostalCode","features":[381]},{"name":"NAME_ContactObj_PersonalAddressRegion","features":[381]},{"name":"NAME_ContactObj_PersonalAddressStreet","features":[381]},{"name":"NAME_ContactObj_PersonalEmail","features":[381]},{"name":"NAME_ContactObj_PersonalEmail2","features":[381]},{"name":"NAME_ContactObj_PersonalFax","features":[381]},{"name":"NAME_ContactObj_PersonalPhone","features":[381]},{"name":"NAME_ContactObj_PersonalPhone2","features":[381]},{"name":"NAME_ContactObj_PersonalWebAddress","features":[381]},{"name":"NAME_ContactObj_Phone","features":[381]},{"name":"NAME_ContactObj_PhoneticFamilyName","features":[381]},{"name":"NAME_ContactObj_PhoneticGivenName","features":[381]},{"name":"NAME_ContactObj_PhoneticOrganization","features":[381]},{"name":"NAME_ContactObj_Ringtone","features":[381]},{"name":"NAME_ContactObj_Role","features":[381]},{"name":"NAME_ContactObj_Spouse","features":[381]},{"name":"NAME_ContactObj_Suffix","features":[381]},{"name":"NAME_ContactObj_Title","features":[381]},{"name":"NAME_ContactObj_WebAddress","features":[381]},{"name":"NAME_ContactSvc_SyncWithPhoneOnly","features":[381]},{"name":"NAME_ContactsSvc","features":[381]},{"name":"NAME_DPOFDocument","features":[381]},{"name":"NAME_DVBTSFile","features":[381]},{"name":"NAME_DeviceExecutable","features":[381]},{"name":"NAME_DeviceMetadataCAB","features":[381]},{"name":"NAME_DeviceMetadataObj_ContentID","features":[381]},{"name":"NAME_DeviceMetadataObj_DefaultCAB","features":[381]},{"name":"NAME_DeviceMetadataSvc","features":[381]},{"name":"NAME_DeviceScript","features":[381]},{"name":"NAME_EXIFImage","features":[381]},{"name":"NAME_ExcelDocument","features":[381]},{"name":"NAME_FLACFile","features":[381]},{"name":"NAME_FirmwareFile","features":[381]},{"name":"NAME_FlashPixImage","features":[381]},{"name":"NAME_FullEnumSyncKnowledge","features":[381]},{"name":"NAME_FullEnumSyncSvc","features":[381]},{"name":"NAME_FullEnumSyncSvc_BeginSync","features":[381]},{"name":"NAME_FullEnumSyncSvc_EndSync","features":[381]},{"name":"NAME_FullEnumSyncSvc_FilterType","features":[381]},{"name":"NAME_FullEnumSyncSvc_KnowledgeObjectID","features":[381]},{"name":"NAME_FullEnumSyncSvc_LastSyncProxyID","features":[381]},{"name":"NAME_FullEnumSyncSvc_LocalOnlyDelete","features":[381]},{"name":"NAME_FullEnumSyncSvc_ProviderVersion","features":[381]},{"name":"NAME_FullEnumSyncSvc_ReplicaID","features":[381]},{"name":"NAME_FullEnumSyncSvc_SyncFormat","features":[381]},{"name":"NAME_FullEnumSyncSvc_VersionProps","features":[381]},{"name":"NAME_GIFImage","features":[381]},{"name":"NAME_GenericObj_AllowedFolderContents","features":[381]},{"name":"NAME_GenericObj_AssociationDesc","features":[381]},{"name":"NAME_GenericObj_AssociationType","features":[381]},{"name":"NAME_GenericObj_Copyright","features":[381]},{"name":"NAME_GenericObj_Corrupt","features":[381]},{"name":"NAME_GenericObj_DRMStatus","features":[381]},{"name":"NAME_GenericObj_DateAccessed","features":[381]},{"name":"NAME_GenericObj_DateAdded","features":[381]},{"name":"NAME_GenericObj_DateAuthored","features":[381]},{"name":"NAME_GenericObj_DateCreated","features":[381]},{"name":"NAME_GenericObj_DateModified","features":[381]},{"name":"NAME_GenericObj_DateRevised","features":[381]},{"name":"NAME_GenericObj_Description","features":[381]},{"name":"NAME_GenericObj_Hidden","features":[381]},{"name":"NAME_GenericObj_Keywords","features":[381]},{"name":"NAME_GenericObj_LanguageLocale","features":[381]},{"name":"NAME_GenericObj_Name","features":[381]},{"name":"NAME_GenericObj_NonConsumable","features":[381]},{"name":"NAME_GenericObj_ObjectFileName","features":[381]},{"name":"NAME_GenericObj_ObjectFormat","features":[381]},{"name":"NAME_GenericObj_ObjectID","features":[381]},{"name":"NAME_GenericObj_ObjectSize","features":[381]},{"name":"NAME_GenericObj_ParentID","features":[381]},{"name":"NAME_GenericObj_PersistentUID","features":[381]},{"name":"NAME_GenericObj_PropertyBag","features":[381]},{"name":"NAME_GenericObj_ProtectionStatus","features":[381]},{"name":"NAME_GenericObj_ReferenceParentID","features":[381]},{"name":"NAME_GenericObj_StorageID","features":[381]},{"name":"NAME_GenericObj_SubDescription","features":[381]},{"name":"NAME_GenericObj_SyncID","features":[381]},{"name":"NAME_GenericObj_SystemObject","features":[381]},{"name":"NAME_GenericObj_TimeToLive","features":[381]},{"name":"NAME_HDPhotoImage","features":[381]},{"name":"NAME_HTMLDocument","features":[381]},{"name":"NAME_HintsSvc","features":[381]},{"name":"NAME_ICalendarActivity","features":[381]},{"name":"NAME_ImageObj_Aperature","features":[381]},{"name":"NAME_ImageObj_Exposure","features":[381]},{"name":"NAME_ImageObj_ISOSpeed","features":[381]},{"name":"NAME_ImageObj_ImageBitDepth","features":[381]},{"name":"NAME_ImageObj_IsColorCorrected","features":[381]},{"name":"NAME_ImageObj_IsCropped","features":[381]},{"name":"NAME_JFIFImage","features":[381]},{"name":"NAME_JP2Image","features":[381]},{"name":"NAME_JPEGXRImage","features":[381]},{"name":"NAME_JPXImage","features":[381]},{"name":"NAME_M3UPlaylist","features":[381]},{"name":"NAME_MHTDocument","features":[381]},{"name":"NAME_MP3File","features":[381]},{"name":"NAME_MPEG2File","features":[381]},{"name":"NAME_MPEG4File","features":[381]},{"name":"NAME_MPEGFile","features":[381]},{"name":"NAME_MPLPlaylist","features":[381]},{"name":"NAME_MediaObj_AlbumArtist","features":[381]},{"name":"NAME_MediaObj_AlbumName","features":[381]},{"name":"NAME_MediaObj_Artist","features":[381]},{"name":"NAME_MediaObj_AudioEncodingProfile","features":[381]},{"name":"NAME_MediaObj_BitRateType","features":[381]},{"name":"NAME_MediaObj_BookmarkByte","features":[381]},{"name":"NAME_MediaObj_BookmarkObject","features":[381]},{"name":"NAME_MediaObj_BookmarkTime","features":[381]},{"name":"NAME_MediaObj_BufferSize","features":[381]},{"name":"NAME_MediaObj_Composer","features":[381]},{"name":"NAME_MediaObj_Credits","features":[381]},{"name":"NAME_MediaObj_DateOriginalRelease","features":[381]},{"name":"NAME_MediaObj_Duration","features":[381]},{"name":"NAME_MediaObj_Editor","features":[381]},{"name":"NAME_MediaObj_EffectiveRating","features":[381]},{"name":"NAME_MediaObj_EncodingProfile","features":[381]},{"name":"NAME_MediaObj_EncodingQuality","features":[381]},{"name":"NAME_MediaObj_Genre","features":[381]},{"name":"NAME_MediaObj_GeographicOrigin","features":[381]},{"name":"NAME_MediaObj_Height","features":[381]},{"name":"NAME_MediaObj_MediaType","features":[381]},{"name":"NAME_MediaObj_MediaUID","features":[381]},{"name":"NAME_MediaObj_Mood","features":[381]},{"name":"NAME_MediaObj_Owner","features":[381]},{"name":"NAME_MediaObj_ParentalRating","features":[381]},{"name":"NAME_MediaObj_Producer","features":[381]},{"name":"NAME_MediaObj_SampleRate","features":[381]},{"name":"NAME_MediaObj_SkipCount","features":[381]},{"name":"NAME_MediaObj_SubscriptionContentID","features":[381]},{"name":"NAME_MediaObj_Subtitle","features":[381]},{"name":"NAME_MediaObj_TotalBitRate","features":[381]},{"name":"NAME_MediaObj_Track","features":[381]},{"name":"NAME_MediaObj_URLLink","features":[381]},{"name":"NAME_MediaObj_URLSource","features":[381]},{"name":"NAME_MediaObj_UseCount","features":[381]},{"name":"NAME_MediaObj_UserRating","features":[381]},{"name":"NAME_MediaObj_WebMaster","features":[381]},{"name":"NAME_MediaObj_Width","features":[381]},{"name":"NAME_MessageObj_BCC","features":[381]},{"name":"NAME_MessageObj_Body","features":[381]},{"name":"NAME_MessageObj_CC","features":[381]},{"name":"NAME_MessageObj_Category","features":[381]},{"name":"NAME_MessageObj_PatternDayOfMonth","features":[381]},{"name":"NAME_MessageObj_PatternDayOfWeek","features":[381]},{"name":"NAME_MessageObj_PatternDeleteDates","features":[381]},{"name":"NAME_MessageObj_PatternInstance","features":[381]},{"name":"NAME_MessageObj_PatternMonthOfYear","features":[381]},{"name":"NAME_MessageObj_PatternOriginalDateTime","features":[381]},{"name":"NAME_MessageObj_PatternPeriod","features":[381]},{"name":"NAME_MessageObj_PatternType","features":[381]},{"name":"NAME_MessageObj_PatternValidEndDate","features":[381]},{"name":"NAME_MessageObj_PatternValidStartDate","features":[381]},{"name":"NAME_MessageObj_Priority","features":[381]},{"name":"NAME_MessageObj_Read","features":[381]},{"name":"NAME_MessageObj_ReceivedTime","features":[381]},{"name":"NAME_MessageObj_Sender","features":[381]},{"name":"NAME_MessageObj_Subject","features":[381]},{"name":"NAME_MessageObj_To","features":[381]},{"name":"NAME_MessageSvc","features":[381]},{"name":"NAME_NotesSvc","features":[381]},{"name":"NAME_OGGFile","features":[381]},{"name":"NAME_PCDImage","features":[381]},{"name":"NAME_PICTImage","features":[381]},{"name":"NAME_PNGImage","features":[381]},{"name":"NAME_PSLPlaylist","features":[381]},{"name":"NAME_PowerPointDocument","features":[381]},{"name":"NAME_QCELPFile","features":[381]},{"name":"NAME_RingtonesSvc","features":[381]},{"name":"NAME_RingtonesSvc_DefaultRingtone","features":[381]},{"name":"NAME_Services_ServiceDisplayName","features":[381]},{"name":"NAME_Services_ServiceIcon","features":[381]},{"name":"NAME_Services_ServiceLocale","features":[381]},{"name":"NAME_StatusSvc","features":[381]},{"name":"NAME_StatusSvc_BatteryLife","features":[381]},{"name":"NAME_StatusSvc_ChargingState","features":[381]},{"name":"NAME_StatusSvc_MissedCalls","features":[381]},{"name":"NAME_StatusSvc_NetworkName","features":[381]},{"name":"NAME_StatusSvc_NetworkType","features":[381]},{"name":"NAME_StatusSvc_NewPictures","features":[381]},{"name":"NAME_StatusSvc_Roaming","features":[381]},{"name":"NAME_StatusSvc_SignalStrength","features":[381]},{"name":"NAME_StatusSvc_StorageCapacity","features":[381]},{"name":"NAME_StatusSvc_StorageFreeSpace","features":[381]},{"name":"NAME_StatusSvc_TextMessages","features":[381]},{"name":"NAME_StatusSvc_VoiceMail","features":[381]},{"name":"NAME_SyncObj_LastAuthorProxyID","features":[381]},{"name":"NAME_SyncSvc_BeginSync","features":[381]},{"name":"NAME_SyncSvc_EndSync","features":[381]},{"name":"NAME_SyncSvc_FilterType","features":[381]},{"name":"NAME_SyncSvc_LocalOnlyDelete","features":[381]},{"name":"NAME_SyncSvc_SyncFormat","features":[381]},{"name":"NAME_SyncSvc_SyncObjectReferences","features":[381]},{"name":"NAME_TIFFEPImage","features":[381]},{"name":"NAME_TIFFITImage","features":[381]},{"name":"NAME_TIFFImage","features":[381]},{"name":"NAME_TaskObj_BeginDate","features":[381]},{"name":"NAME_TaskObj_Complete","features":[381]},{"name":"NAME_TaskObj_EndDate","features":[381]},{"name":"NAME_TaskObj_ReminderDateTime","features":[381]},{"name":"NAME_TasksSvc","features":[381]},{"name":"NAME_TasksSvc_SyncActiveOnly","features":[381]},{"name":"NAME_TextDocument","features":[381]},{"name":"NAME_Undefined","features":[381]},{"name":"NAME_UndefinedAudio","features":[381]},{"name":"NAME_UndefinedCollection","features":[381]},{"name":"NAME_UndefinedDocument","features":[381]},{"name":"NAME_UndefinedVideo","features":[381]},{"name":"NAME_UnknownImage","features":[381]},{"name":"NAME_VCalendar1Activity","features":[381]},{"name":"NAME_VCard2Contact","features":[381]},{"name":"NAME_VCard3Contact","features":[381]},{"name":"NAME_VideoObj_KeyFrameDistance","features":[381]},{"name":"NAME_VideoObj_ScanType","features":[381]},{"name":"NAME_VideoObj_Source","features":[381]},{"name":"NAME_VideoObj_VideoBitRate","features":[381]},{"name":"NAME_VideoObj_VideoFormatCode","features":[381]},{"name":"NAME_VideoObj_VideoFrameRate","features":[381]},{"name":"NAME_WAVFile","features":[381]},{"name":"NAME_WBMPImage","features":[381]},{"name":"NAME_WMAFile","features":[381]},{"name":"NAME_WMVFile","features":[381]},{"name":"NAME_WPLPlaylist","features":[381]},{"name":"NAME_WordDocument","features":[381]},{"name":"NAME_XMLDocument","features":[381]},{"name":"PORTABLE_DEVICE_DELETE_NO_RECURSION","features":[381]},{"name":"PORTABLE_DEVICE_DELETE_WITH_RECURSION","features":[381]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_PDDRM","features":[381]},{"name":"PORTABLE_DEVICE_DRM_SCHEME_WMDRM10_PD","features":[381]},{"name":"PORTABLE_DEVICE_ICON","features":[381]},{"name":"PORTABLE_DEVICE_IS_MASS_STORAGE","features":[381]},{"name":"PORTABLE_DEVICE_NAMESPACE_EXCLUDE_FROM_SHELL","features":[381]},{"name":"PORTABLE_DEVICE_NAMESPACE_THUMBNAIL_CONTENT_TYPES","features":[381]},{"name":"PORTABLE_DEVICE_NAMESPACE_TIMEOUT","features":[381]},{"name":"PORTABLE_DEVICE_TYPE","features":[381]},{"name":"PortableDevice","features":[381]},{"name":"PortableDeviceDispatchFactory","features":[381]},{"name":"PortableDeviceFTM","features":[381]},{"name":"PortableDeviceKeyCollection","features":[381]},{"name":"PortableDeviceManager","features":[381]},{"name":"PortableDevicePropVariantCollection","features":[381]},{"name":"PortableDeviceService","features":[381]},{"name":"PortableDeviceServiceFTM","features":[381]},{"name":"PortableDeviceValues","features":[381]},{"name":"PortableDeviceValuesCollection","features":[381]},{"name":"PortableDeviceWebControl","features":[381]},{"name":"RANGEMAX_MessageObj_PatternDayOfMonth","features":[381]},{"name":"RANGEMAX_MessageObj_PatternMonthOfYear","features":[381]},{"name":"RANGEMAX_StatusSvc_BatteryLife","features":[381]},{"name":"RANGEMAX_StatusSvc_MissedCalls","features":[381]},{"name":"RANGEMAX_StatusSvc_NewPictures","features":[381]},{"name":"RANGEMAX_StatusSvc_SignalStrength","features":[381]},{"name":"RANGEMAX_StatusSvc_TextMessages","features":[381]},{"name":"RANGEMAX_StatusSvc_VoiceMail","features":[381]},{"name":"RANGEMIN_MessageObj_PatternDayOfMonth","features":[381]},{"name":"RANGEMIN_MessageObj_PatternMonthOfYear","features":[381]},{"name":"RANGEMIN_StatusSvc_BatteryLife","features":[381]},{"name":"RANGEMIN_StatusSvc_SignalStrength","features":[381]},{"name":"RANGESTEP_MessageObj_PatternDayOfMonth","features":[381]},{"name":"RANGESTEP_MessageObj_PatternMonthOfYear","features":[381]},{"name":"RANGESTEP_StatusSvc_BatteryLife","features":[381]},{"name":"RANGESTEP_StatusSvc_SignalStrength","features":[381]},{"name":"SMS_BINARY_MESSAGE","features":[381]},{"name":"SMS_ENCODING_7_BIT","features":[381]},{"name":"SMS_ENCODING_8_BIT","features":[381]},{"name":"SMS_ENCODING_UTF_16","features":[381]},{"name":"SMS_MESSAGE_TYPES","features":[381]},{"name":"SMS_TEXT_MESSAGE","features":[381]},{"name":"SRS_RADIO_DISABLED","features":[381]},{"name":"SRS_RADIO_ENABLED","features":[381]},{"name":"STR_WPDNSE_FAST_ENUM","features":[381]},{"name":"STR_WPDNSE_SIMPLE_ITEM","features":[381]},{"name":"SYNCSVC_FILTER_CALENDAR_WINDOW_WITH_RECURRENCE","features":[381]},{"name":"SYNCSVC_FILTER_CONTACTS_WITH_PHONE","features":[381]},{"name":"SYNCSVC_FILTER_NONE","features":[381]},{"name":"SYNCSVC_FILTER_TASK_ACTIVE","features":[381]},{"name":"SYSTEM_RADIO_STATE","features":[381]},{"name":"TYPE_AnchorSyncSvc","features":[381]},{"name":"TYPE_CalendarSvc","features":[381]},{"name":"TYPE_ContactsSvc","features":[381]},{"name":"TYPE_DeviceMetadataSvc","features":[381]},{"name":"TYPE_FullEnumSyncSvc","features":[381]},{"name":"TYPE_HintsSvc","features":[381]},{"name":"TYPE_MessageSvc","features":[381]},{"name":"TYPE_NotesSvc","features":[381]},{"name":"TYPE_RingtonesSvc","features":[381]},{"name":"TYPE_StatusSvc","features":[381]},{"name":"TYPE_TasksSvc","features":[381]},{"name":"WPDNSE_OBJECT_HAS_ALBUM_ART","features":[381,376]},{"name":"WPDNSE_OBJECT_HAS_AUDIO_CLIP","features":[381,376]},{"name":"WPDNSE_OBJECT_HAS_CONTACT_PHOTO","features":[381,376]},{"name":"WPDNSE_OBJECT_HAS_ICON","features":[381,376]},{"name":"WPDNSE_OBJECT_HAS_THUMBNAIL","features":[381,376]},{"name":"WPDNSE_OBJECT_OPTIMAL_READ_BLOCK_SIZE","features":[381,376]},{"name":"WPDNSE_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPDNSE_PROPSHEET_CONTENT_DETAILS","features":[381]},{"name":"WPDNSE_PROPSHEET_CONTENT_GENERAL","features":[381]},{"name":"WPDNSE_PROPSHEET_CONTENT_REFERENCES","features":[381]},{"name":"WPDNSE_PROPSHEET_CONTENT_RESOURCES","features":[381]},{"name":"WPDNSE_PROPSHEET_DEVICE_GENERAL","features":[381]},{"name":"WPDNSE_PROPSHEET_STORAGE_GENERAL","features":[381]},{"name":"WPD_API_OPTIONS_V1","features":[381]},{"name":"WPD_API_OPTION_IOCTL_ACCESS","features":[381,376]},{"name":"WPD_API_OPTION_USE_CLEAR_DATA_STREAM","features":[381,376]},{"name":"WPD_APPOINTMENT_ACCEPTED_ATTENDEES","features":[381,376]},{"name":"WPD_APPOINTMENT_DECLINED_ATTENDEES","features":[381,376]},{"name":"WPD_APPOINTMENT_LOCATION","features":[381,376]},{"name":"WPD_APPOINTMENT_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_APPOINTMENT_OPTIONAL_ATTENDEES","features":[381,376]},{"name":"WPD_APPOINTMENT_REQUIRED_ATTENDEES","features":[381,376]},{"name":"WPD_APPOINTMENT_RESOURCES","features":[381,376]},{"name":"WPD_APPOINTMENT_TENTATIVE_ATTENDEES","features":[381,376]},{"name":"WPD_APPOINTMENT_TYPE","features":[381,376]},{"name":"WPD_AUDIO_BITRATE","features":[381,376]},{"name":"WPD_AUDIO_BIT_DEPTH","features":[381,376]},{"name":"WPD_AUDIO_BLOCK_ALIGNMENT","features":[381,376]},{"name":"WPD_AUDIO_CHANNEL_COUNT","features":[381,376]},{"name":"WPD_AUDIO_FORMAT_CODE","features":[381,376]},{"name":"WPD_BITRATE_TYPES","features":[381]},{"name":"WPD_BITRATE_TYPE_DISCRETE","features":[381]},{"name":"WPD_BITRATE_TYPE_FREE","features":[381]},{"name":"WPD_BITRATE_TYPE_UNUSED","features":[381]},{"name":"WPD_BITRATE_TYPE_VARIABLE","features":[381]},{"name":"WPD_CAPTURE_MODES","features":[381]},{"name":"WPD_CAPTURE_MODE_BURST","features":[381]},{"name":"WPD_CAPTURE_MODE_NORMAL","features":[381]},{"name":"WPD_CAPTURE_MODE_TIMELAPSE","features":[381]},{"name":"WPD_CAPTURE_MODE_UNDEFINED","features":[381]},{"name":"WPD_CATEGORY_CAPABILITIES","features":[381]},{"name":"WPD_CATEGORY_COMMON","features":[381]},{"name":"WPD_CATEGORY_DEVICE_HINTS","features":[381]},{"name":"WPD_CATEGORY_MEDIA_CAPTURE","features":[381]},{"name":"WPD_CATEGORY_MTP_EXT_VENDOR_OPERATIONS","features":[381]},{"name":"WPD_CATEGORY_NETWORK_CONFIGURATION","features":[381]},{"name":"WPD_CATEGORY_NULL","features":[381]},{"name":"WPD_CATEGORY_OBJECT_ENUMERATION","features":[381]},{"name":"WPD_CATEGORY_OBJECT_MANAGEMENT","features":[381]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES","features":[381]},{"name":"WPD_CATEGORY_OBJECT_PROPERTIES_BULK","features":[381]},{"name":"WPD_CATEGORY_OBJECT_RESOURCES","features":[381]},{"name":"WPD_CATEGORY_SERVICE_CAPABILITIES","features":[381]},{"name":"WPD_CATEGORY_SERVICE_COMMON","features":[381]},{"name":"WPD_CATEGORY_SERVICE_METHODS","features":[381]},{"name":"WPD_CATEGORY_SMS","features":[381]},{"name":"WPD_CATEGORY_STILL_IMAGE_CAPTURE","features":[381]},{"name":"WPD_CATEGORY_STORAGE","features":[381]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DEVICE_IDENTIFICATION_VALUES","features":[381,376]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_DONT_REGISTER_WPD_DEVICE_INTERFACE","features":[381,376]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_MULTITRANSPORT_MODE","features":[381,376]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_REGISTER_WPD_PRIVATE_DEVICE_INTERFACE","features":[381,376]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SILENCE_AUTOPLAY","features":[381,376]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_SUPPORTED_CONTENT_TYPES","features":[381,376]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_TRANSPORT_BANDWIDTH","features":[381,376]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V1","features":[381]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V2","features":[381]},{"name":"WPD_CLASS_EXTENSION_OPTIONS_V3","features":[381]},{"name":"WPD_CLASS_EXTENSION_V1","features":[381]},{"name":"WPD_CLASS_EXTENSION_V2","features":[381]},{"name":"WPD_CLIENT_DESIRED_ACCESS","features":[381,376]},{"name":"WPD_CLIENT_EVENT_COOKIE","features":[381,376]},{"name":"WPD_CLIENT_INFORMATION_PROPERTIES_V1","features":[381]},{"name":"WPD_CLIENT_MAJOR_VERSION","features":[381,376]},{"name":"WPD_CLIENT_MANUAL_CLOSE_ON_DISCONNECT","features":[381,376]},{"name":"WPD_CLIENT_MINIMUM_RESULTS_BUFFER_SIZE","features":[381,376]},{"name":"WPD_CLIENT_MINOR_VERSION","features":[381,376]},{"name":"WPD_CLIENT_NAME","features":[381,376]},{"name":"WPD_CLIENT_REVISION","features":[381,376]},{"name":"WPD_CLIENT_SECURITY_QUALITY_OF_SERVICE","features":[381,376]},{"name":"WPD_CLIENT_SHARE_MODE","features":[381,376]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_CERTIFICATE","features":[381,376]},{"name":"WPD_CLIENT_WMDRM_APPLICATION_PRIVATE_KEY","features":[381,376]},{"name":"WPD_COLOR_CORRECTED_STATUS_CORRECTED","features":[381]},{"name":"WPD_COLOR_CORRECTED_STATUS_NOT_CORRECTED","features":[381]},{"name":"WPD_COLOR_CORRECTED_STATUS_SHOULD_NOT_BE_CORRECTED","features":[381]},{"name":"WPD_COLOR_CORRECTED_STATUS_VALUES","features":[381]},{"name":"WPD_COMMAND_ACCESS_FROM_ATTRIBUTE_WITH_METHOD_ACCESS","features":[381]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_FILE_ACCESS","features":[381]},{"name":"WPD_COMMAND_ACCESS_FROM_PROPERTY_WITH_STGM_ACCESS","features":[381]},{"name":"WPD_COMMAND_ACCESS_LOOKUP_ENTRY","features":[381,376]},{"name":"WPD_COMMAND_ACCESS_READ","features":[381]},{"name":"WPD_COMMAND_ACCESS_READWRITE","features":[381]},{"name":"WPD_COMMAND_ACCESS_TYPES","features":[381]},{"name":"WPD_COMMAND_CAPABILITIES_GET_COMMAND_OPTIONS","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_EVENT_OPTIONS","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FIXED_PROPERTY_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_FUNCTIONAL_OBJECTS","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_CONTENT_TYPES","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[381,376]},{"name":"WPD_COMMAND_CAPABILITIES_GET_SUPPORTED_FUNCTIONAL_CATEGORIES","features":[381,376]},{"name":"WPD_COMMAND_CLASS_EXTENSION_REGISTER_SERVICE_INTERFACES","features":[381,376]},{"name":"WPD_COMMAND_CLASS_EXTENSION_UNREGISTER_SERVICE_INTERFACES","features":[381,376]},{"name":"WPD_COMMAND_CLASS_EXTENSION_WRITE_DEVICE_INFORMATION","features":[381,376]},{"name":"WPD_COMMAND_COMMIT_KEYPAIR","features":[381,376]},{"name":"WPD_COMMAND_COMMON_GET_OBJECT_IDS_FROM_PERSISTENT_UNIQUE_IDS","features":[381,376]},{"name":"WPD_COMMAND_COMMON_RESET_DEVICE","features":[381,376]},{"name":"WPD_COMMAND_COMMON_SAVE_CLIENT_INFORMATION","features":[381,376]},{"name":"WPD_COMMAND_DEVICE_HINTS_GET_CONTENT_LOCATION","features":[381,376]},{"name":"WPD_COMMAND_GENERATE_KEYPAIR","features":[381,376]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_PAUSE","features":[381,376]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_START","features":[381,376]},{"name":"WPD_COMMAND_MEDIA_CAPTURE_STOP","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_END_DATA_TRANSFER","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITHOUT_DATA_PHASE","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_READ","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_EXECUTE_COMMAND_WITH_DATA_TO_WRITE","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_GET_SUPPORTED_VENDOR_OPCODES","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_GET_VENDOR_EXTENSION_DESCRIPTION","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_READ_DATA","features":[381,376]},{"name":"WPD_COMMAND_MTP_EXT_WRITE_DATA","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_END_FIND","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_FIND_NEXT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_ENUMERATION_START_FIND","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COMMIT_OBJECT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_COPY_OBJECTS","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_CREATE_OBJECT_WITH_PROPERTIES_ONLY","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_DELETE_OBJECTS","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_MOVE_OBJECTS","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_REVERT_OBJECT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_UPDATE_OBJECT_WITH_PROPERTIES_AND_DATA","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_MANAGEMENT_WRITE_OBJECT_DATA","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_END","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_NEXT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_FORMAT_START","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_END","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_NEXT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_GET_VALUES_BY_OBJECT_LIST_START","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_END","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_NEXT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_BULK_SET_VALUES_BY_OBJECT_LIST_START","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_DELETE","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ALL","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_GET_SUPPORTED","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_PROPERTIES_SET","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CLOSE","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_COMMIT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_CREATE_RESOURCE","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_DELETE","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_GET_SUPPORTED","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_OPEN","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_READ","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_REVERT","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_SEEK_IN_UNITS","features":[381,376]},{"name":"WPD_COMMAND_OBJECT_RESOURCES_WRITE","features":[381,376]},{"name":"WPD_COMMAND_PROCESS_WIRELESS_PROFILE","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_COMMAND_OPTIONS","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_EVENT_PARAMETER_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_PROPERTY_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_FORMAT_RENDERING_PROFILES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_INHERITED_SERVICES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_METHOD_PARAMETER_ATTRIBUTES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_COMMANDS","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_EVENTS","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMATS","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_FORMAT_PROPERTIES","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_CAPABILITIES_GET_SUPPORTED_METHODS_BY_FORMAT","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_COMMON_GET_SERVICE_OBJECT_ID","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_METHODS_CANCEL_INVOKE","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_METHODS_END_INVOKE","features":[381,376]},{"name":"WPD_COMMAND_SERVICE_METHODS_START_INVOKE","features":[381,376]},{"name":"WPD_COMMAND_SMS_SEND","features":[381,376]},{"name":"WPD_COMMAND_STILL_IMAGE_CAPTURE_INITIATE","features":[381,376]},{"name":"WPD_COMMAND_STORAGE_EJECT","features":[381,376]},{"name":"WPD_COMMAND_STORAGE_FORMAT","features":[381,376]},{"name":"WPD_COMMON_INFORMATION_BODY_TEXT","features":[381,376]},{"name":"WPD_COMMON_INFORMATION_END_DATETIME","features":[381,376]},{"name":"WPD_COMMON_INFORMATION_NOTES","features":[381,376]},{"name":"WPD_COMMON_INFORMATION_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_COMMON_INFORMATION_PRIORITY","features":[381,376]},{"name":"WPD_COMMON_INFORMATION_START_DATETIME","features":[381,376]},{"name":"WPD_COMMON_INFORMATION_SUBJECT","features":[381,376]},{"name":"WPD_CONTACT_ANNIVERSARY_DATE","features":[381,376]},{"name":"WPD_CONTACT_ASSISTANT","features":[381,376]},{"name":"WPD_CONTACT_BIRTHDATE","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_EMAIL","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_EMAIL2","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_FAX","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_FULL_POSTAL_ADDRESS","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_PHONE","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_PHONE2","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_CITY","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_COUNTRY","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE1","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_LINE2","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_POSTAL_CODE","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_POSTAL_ADDRESS_REGION","features":[381,376]},{"name":"WPD_CONTACT_BUSINESS_WEB_ADDRESS","features":[381,376]},{"name":"WPD_CONTACT_CHILDREN","features":[381,376]},{"name":"WPD_CONTACT_COMPANY_NAME","features":[381,376]},{"name":"WPD_CONTACT_DISPLAY_NAME","features":[381,376]},{"name":"WPD_CONTACT_FIRST_NAME","features":[381,376]},{"name":"WPD_CONTACT_INSTANT_MESSENGER","features":[381,376]},{"name":"WPD_CONTACT_INSTANT_MESSENGER2","features":[381,376]},{"name":"WPD_CONTACT_INSTANT_MESSENGER3","features":[381,376]},{"name":"WPD_CONTACT_LAST_NAME","features":[381,376]},{"name":"WPD_CONTACT_MIDDLE_NAMES","features":[381,376]},{"name":"WPD_CONTACT_MOBILE_PHONE","features":[381,376]},{"name":"WPD_CONTACT_MOBILE_PHONE2","features":[381,376]},{"name":"WPD_CONTACT_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_CONTACT_OTHER_EMAILS","features":[381,376]},{"name":"WPD_CONTACT_OTHER_FULL_POSTAL_ADDRESS","features":[381,376]},{"name":"WPD_CONTACT_OTHER_PHONES","features":[381,376]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_CITY","features":[381,376]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE1","features":[381,376]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_LINE2","features":[381,376]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_CODE","features":[381,376]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_POSTAL_COUNTRY","features":[381,376]},{"name":"WPD_CONTACT_OTHER_POSTAL_ADDRESS_REGION","features":[381,376]},{"name":"WPD_CONTACT_PAGER","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_EMAIL","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_EMAIL2","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_FAX","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_FULL_POSTAL_ADDRESS","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_PHONE","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_PHONE2","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_CITY","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_COUNTRY","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE1","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_LINE2","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_POSTAL_CODE","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_POSTAL_ADDRESS_REGION","features":[381,376]},{"name":"WPD_CONTACT_PERSONAL_WEB_ADDRESS","features":[381,376]},{"name":"WPD_CONTACT_PHONETIC_COMPANY_NAME","features":[381,376]},{"name":"WPD_CONTACT_PHONETIC_FIRST_NAME","features":[381,376]},{"name":"WPD_CONTACT_PHONETIC_LAST_NAME","features":[381,376]},{"name":"WPD_CONTACT_PREFIX","features":[381,376]},{"name":"WPD_CONTACT_PRIMARY_EMAIL_ADDRESS","features":[381,376]},{"name":"WPD_CONTACT_PRIMARY_FAX","features":[381,376]},{"name":"WPD_CONTACT_PRIMARY_PHONE","features":[381,376]},{"name":"WPD_CONTACT_PRIMARY_WEB_ADDRESS","features":[381,376]},{"name":"WPD_CONTACT_RINGTONE","features":[381,376]},{"name":"WPD_CONTACT_ROLE","features":[381,376]},{"name":"WPD_CONTACT_SPOUSE","features":[381,376]},{"name":"WPD_CONTACT_SUFFIX","features":[381,376]},{"name":"WPD_CONTENT_TYPE_ALL","features":[381]},{"name":"WPD_CONTENT_TYPE_APPOINTMENT","features":[381]},{"name":"WPD_CONTENT_TYPE_AUDIO","features":[381]},{"name":"WPD_CONTENT_TYPE_AUDIO_ALBUM","features":[381]},{"name":"WPD_CONTENT_TYPE_CALENDAR","features":[381]},{"name":"WPD_CONTENT_TYPE_CERTIFICATE","features":[381]},{"name":"WPD_CONTENT_TYPE_CONTACT","features":[381]},{"name":"WPD_CONTENT_TYPE_CONTACT_GROUP","features":[381]},{"name":"WPD_CONTENT_TYPE_DOCUMENT","features":[381]},{"name":"WPD_CONTENT_TYPE_EMAIL","features":[381]},{"name":"WPD_CONTENT_TYPE_FOLDER","features":[381]},{"name":"WPD_CONTENT_TYPE_FUNCTIONAL_OBJECT","features":[381]},{"name":"WPD_CONTENT_TYPE_GENERIC_FILE","features":[381]},{"name":"WPD_CONTENT_TYPE_GENERIC_MESSAGE","features":[381]},{"name":"WPD_CONTENT_TYPE_IMAGE","features":[381]},{"name":"WPD_CONTENT_TYPE_IMAGE_ALBUM","features":[381]},{"name":"WPD_CONTENT_TYPE_MEDIA_CAST","features":[381]},{"name":"WPD_CONTENT_TYPE_MEMO","features":[381]},{"name":"WPD_CONTENT_TYPE_MIXED_CONTENT_ALBUM","features":[381]},{"name":"WPD_CONTENT_TYPE_NETWORK_ASSOCIATION","features":[381]},{"name":"WPD_CONTENT_TYPE_PLAYLIST","features":[381]},{"name":"WPD_CONTENT_TYPE_PROGRAM","features":[381]},{"name":"WPD_CONTENT_TYPE_SECTION","features":[381]},{"name":"WPD_CONTENT_TYPE_TASK","features":[381]},{"name":"WPD_CONTENT_TYPE_TELEVISION","features":[381]},{"name":"WPD_CONTENT_TYPE_UNSPECIFIED","features":[381]},{"name":"WPD_CONTENT_TYPE_VIDEO","features":[381]},{"name":"WPD_CONTENT_TYPE_VIDEO_ALBUM","features":[381]},{"name":"WPD_CONTENT_TYPE_WIRELESS_PROFILE","features":[381]},{"name":"WPD_CONTROL_FUNCTION_GENERIC_MESSAGE","features":[381]},{"name":"WPD_CROPPED_STATUS_CROPPED","features":[381]},{"name":"WPD_CROPPED_STATUS_NOT_CROPPED","features":[381]},{"name":"WPD_CROPPED_STATUS_SHOULD_NOT_BE_CROPPED","features":[381]},{"name":"WPD_CROPPED_STATUS_VALUES","features":[381]},{"name":"WPD_DEVICE_DATETIME","features":[381,376]},{"name":"WPD_DEVICE_EDP_IDENTITY","features":[381,376]},{"name":"WPD_DEVICE_FIRMWARE_VERSION","features":[381,376]},{"name":"WPD_DEVICE_FRIENDLY_NAME","features":[381,376]},{"name":"WPD_DEVICE_FUNCTIONAL_UNIQUE_ID","features":[381,376]},{"name":"WPD_DEVICE_MANUFACTURER","features":[381,376]},{"name":"WPD_DEVICE_MODEL","features":[381,376]},{"name":"WPD_DEVICE_MODEL_UNIQUE_ID","features":[381,376]},{"name":"WPD_DEVICE_NETWORK_IDENTIFIER","features":[381,376]},{"name":"WPD_DEVICE_OBJECT_ID","features":[381]},{"name":"WPD_DEVICE_POWER_LEVEL","features":[381,376]},{"name":"WPD_DEVICE_POWER_SOURCE","features":[381,376]},{"name":"WPD_DEVICE_PROPERTIES_V1","features":[381]},{"name":"WPD_DEVICE_PROPERTIES_V2","features":[381]},{"name":"WPD_DEVICE_PROPERTIES_V3","features":[381]},{"name":"WPD_DEVICE_PROTOCOL","features":[381,376]},{"name":"WPD_DEVICE_SERIAL_NUMBER","features":[381,376]},{"name":"WPD_DEVICE_SUPPORTED_DRM_SCHEMES","features":[381,376]},{"name":"WPD_DEVICE_SUPPORTED_FORMATS_ARE_ORDERED","features":[381,376]},{"name":"WPD_DEVICE_SUPPORTS_NON_CONSUMABLE","features":[381,376]},{"name":"WPD_DEVICE_SYNC_PARTNER","features":[381,376]},{"name":"WPD_DEVICE_TRANSPORT","features":[381,376]},{"name":"WPD_DEVICE_TRANSPORTS","features":[381]},{"name":"WPD_DEVICE_TRANSPORT_BLUETOOTH","features":[381]},{"name":"WPD_DEVICE_TRANSPORT_IP","features":[381]},{"name":"WPD_DEVICE_TRANSPORT_UNSPECIFIED","features":[381]},{"name":"WPD_DEVICE_TRANSPORT_USB","features":[381]},{"name":"WPD_DEVICE_TYPE","features":[381,376]},{"name":"WPD_DEVICE_TYPES","features":[381]},{"name":"WPD_DEVICE_TYPE_AUDIO_RECORDER","features":[381]},{"name":"WPD_DEVICE_TYPE_CAMERA","features":[381]},{"name":"WPD_DEVICE_TYPE_GENERIC","features":[381]},{"name":"WPD_DEVICE_TYPE_MEDIA_PLAYER","features":[381]},{"name":"WPD_DEVICE_TYPE_PERSONAL_INFORMATION_MANAGER","features":[381]},{"name":"WPD_DEVICE_TYPE_PHONE","features":[381]},{"name":"WPD_DEVICE_TYPE_VIDEO","features":[381]},{"name":"WPD_DEVICE_USE_DEVICE_STAGE","features":[381,376]},{"name":"WPD_DOCUMENT_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_EFFECT_MODES","features":[381]},{"name":"WPD_EFFECT_MODE_BLACK_AND_WHITE","features":[381]},{"name":"WPD_EFFECT_MODE_COLOR","features":[381]},{"name":"WPD_EFFECT_MODE_SEPIA","features":[381]},{"name":"WPD_EFFECT_MODE_UNDEFINED","features":[381]},{"name":"WPD_EMAIL_BCC_LINE","features":[381,376]},{"name":"WPD_EMAIL_CC_LINE","features":[381,376]},{"name":"WPD_EMAIL_HAS_ATTACHMENTS","features":[381,376]},{"name":"WPD_EMAIL_HAS_BEEN_READ","features":[381,376]},{"name":"WPD_EMAIL_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_EMAIL_RECEIVED_TIME","features":[381,376]},{"name":"WPD_EMAIL_SENDER_ADDRESS","features":[381,376]},{"name":"WPD_EMAIL_TO_LINE","features":[381,376]},{"name":"WPD_EVENT_ATTRIBUTES_V1","features":[381]},{"name":"WPD_EVENT_ATTRIBUTE_NAME","features":[381,376]},{"name":"WPD_EVENT_ATTRIBUTE_OPTIONS","features":[381,376]},{"name":"WPD_EVENT_ATTRIBUTE_PARAMETERS","features":[381,376]},{"name":"WPD_EVENT_DEVICE_CAPABILITIES_UPDATED","features":[381]},{"name":"WPD_EVENT_DEVICE_REMOVED","features":[381]},{"name":"WPD_EVENT_DEVICE_RESET","features":[381]},{"name":"WPD_EVENT_MTP_VENDOR_EXTENDED_EVENTS","features":[381]},{"name":"WPD_EVENT_NOTIFICATION","features":[381]},{"name":"WPD_EVENT_OBJECT_ADDED","features":[381]},{"name":"WPD_EVENT_OBJECT_REMOVED","features":[381]},{"name":"WPD_EVENT_OBJECT_TRANSFER_REQUESTED","features":[381]},{"name":"WPD_EVENT_OBJECT_UPDATED","features":[381]},{"name":"WPD_EVENT_OPTIONS_V1","features":[381]},{"name":"WPD_EVENT_OPTION_IS_AUTOPLAY_EVENT","features":[381,376]},{"name":"WPD_EVENT_OPTION_IS_BROADCAST_EVENT","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_CHILD_HIERARCHY_CHANGED","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_EVENT_ID","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_OBJECT_CREATION_COOKIE","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_OBJECT_PARENT_PERSISTENT_UNIQUE_ID","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_OPERATION_PROGRESS","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_OPERATION_STATE","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_PNP_DEVICE_ID","features":[381,376]},{"name":"WPD_EVENT_PARAMETER_SERVICE_METHOD_CONTEXT","features":[381,376]},{"name":"WPD_EVENT_PROPERTIES_V1","features":[381]},{"name":"WPD_EVENT_PROPERTIES_V2","features":[381]},{"name":"WPD_EVENT_SERVICE_METHOD_COMPLETE","features":[381]},{"name":"WPD_EVENT_STORAGE_FORMAT","features":[381]},{"name":"WPD_EXPOSURE_METERING_MODES","features":[381]},{"name":"WPD_EXPOSURE_METERING_MODE_AVERAGE","features":[381]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_SPOT","features":[381]},{"name":"WPD_EXPOSURE_METERING_MODE_CENTER_WEIGHTED_AVERAGE","features":[381]},{"name":"WPD_EXPOSURE_METERING_MODE_MULTI_SPOT","features":[381]},{"name":"WPD_EXPOSURE_METERING_MODE_UNDEFINED","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODES","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_ACTION","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_APERTURE_PRIORITY","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_AUTO","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_CREATIVE","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_MANUAL","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_PORTRAIT","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_SHUTTER_PRIORITY","features":[381]},{"name":"WPD_EXPOSURE_PROGRAM_MODE_UNDEFINED","features":[381]},{"name":"WPD_FLASH_MODES","features":[381]},{"name":"WPD_FLASH_MODE_AUTO","features":[381]},{"name":"WPD_FLASH_MODE_EXTERNAL_SYNC","features":[381]},{"name":"WPD_FLASH_MODE_FILL","features":[381]},{"name":"WPD_FLASH_MODE_OFF","features":[381]},{"name":"WPD_FLASH_MODE_RED_EYE_AUTO","features":[381]},{"name":"WPD_FLASH_MODE_RED_EYE_FILL","features":[381]},{"name":"WPD_FLASH_MODE_UNDEFINED","features":[381]},{"name":"WPD_FOCUS_AUTOMATIC","features":[381]},{"name":"WPD_FOCUS_AUTOMATIC_MACRO","features":[381]},{"name":"WPD_FOCUS_MANUAL","features":[381]},{"name":"WPD_FOCUS_METERING_MODES","features":[381]},{"name":"WPD_FOCUS_METERING_MODE_CENTER_SPOT","features":[381]},{"name":"WPD_FOCUS_METERING_MODE_MULTI_SPOT","features":[381]},{"name":"WPD_FOCUS_METERING_MODE_UNDEFINED","features":[381]},{"name":"WPD_FOCUS_MODES","features":[381]},{"name":"WPD_FOCUS_UNDEFINED","features":[381]},{"name":"WPD_FOLDER_CONTENT_TYPES_ALLOWED","features":[381,376]},{"name":"WPD_FOLDER_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_FORMAT_ATTRIBUTES_V1","features":[381]},{"name":"WPD_FORMAT_ATTRIBUTE_MIMETYPE","features":[381,376]},{"name":"WPD_FORMAT_ATTRIBUTE_NAME","features":[381,376]},{"name":"WPD_FUNCTIONAL_CATEGORY_ALL","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_AUDIO_CAPTURE","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_DEVICE","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_NETWORK_CONFIGURATION","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_RENDERING_INFORMATION","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_SMS","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_STILL_IMAGE_CAPTURE","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_STORAGE","features":[381]},{"name":"WPD_FUNCTIONAL_CATEGORY_VIDEO_CAPTURE","features":[381]},{"name":"WPD_FUNCTIONAL_OBJECT_CATEGORY","features":[381,376]},{"name":"WPD_FUNCTIONAL_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_IMAGE_BITDEPTH","features":[381,376]},{"name":"WPD_IMAGE_COLOR_CORRECTED_STATUS","features":[381,376]},{"name":"WPD_IMAGE_CROPPED_STATUS","features":[381,376]},{"name":"WPD_IMAGE_EXPOSURE_INDEX","features":[381,376]},{"name":"WPD_IMAGE_EXPOSURE_TIME","features":[381,376]},{"name":"WPD_IMAGE_FNUMBER","features":[381,376]},{"name":"WPD_IMAGE_HORIZONTAL_RESOLUTION","features":[381,376]},{"name":"WPD_IMAGE_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_IMAGE_VERTICAL_RESOLUTION","features":[381,376]},{"name":"WPD_MEDIA_ALBUM_ARTIST","features":[381,376]},{"name":"WPD_MEDIA_ARTIST","features":[381,376]},{"name":"WPD_MEDIA_AUDIO_ENCODING_PROFILE","features":[381,376]},{"name":"WPD_MEDIA_BITRATE_TYPE","features":[381,376]},{"name":"WPD_MEDIA_BUY_NOW","features":[381,376]},{"name":"WPD_MEDIA_BYTE_BOOKMARK","features":[381,376]},{"name":"WPD_MEDIA_COMPOSER","features":[381,376]},{"name":"WPD_MEDIA_COPYRIGHT","features":[381,376]},{"name":"WPD_MEDIA_DESCRIPTION","features":[381,376]},{"name":"WPD_MEDIA_DESTINATION_URL","features":[381,376]},{"name":"WPD_MEDIA_DURATION","features":[381,376]},{"name":"WPD_MEDIA_EFFECTIVE_RATING","features":[381,376]},{"name":"WPD_MEDIA_ENCODING_PROFILE","features":[381,376]},{"name":"WPD_MEDIA_GENRE","features":[381,376]},{"name":"WPD_MEDIA_GUID","features":[381,376]},{"name":"WPD_MEDIA_HEIGHT","features":[381,376]},{"name":"WPD_MEDIA_LAST_ACCESSED_TIME","features":[381,376]},{"name":"WPD_MEDIA_LAST_BUILD_DATE","features":[381,376]},{"name":"WPD_MEDIA_MANAGING_EDITOR","features":[381,376]},{"name":"WPD_MEDIA_META_GENRE","features":[381,376]},{"name":"WPD_MEDIA_OBJECT_BOOKMARK","features":[381,376]},{"name":"WPD_MEDIA_OWNER","features":[381,376]},{"name":"WPD_MEDIA_PARENTAL_RATING","features":[381,376]},{"name":"WPD_MEDIA_PROPERTIES_V1","features":[381]},{"name":"WPD_MEDIA_RELEASE_DATE","features":[381,376]},{"name":"WPD_MEDIA_SAMPLE_RATE","features":[381,376]},{"name":"WPD_MEDIA_SKIP_COUNT","features":[381,376]},{"name":"WPD_MEDIA_SOURCE_URL","features":[381,376]},{"name":"WPD_MEDIA_STAR_RATING","features":[381,376]},{"name":"WPD_MEDIA_SUBSCRIPTION_CONTENT_ID","features":[381,376]},{"name":"WPD_MEDIA_SUB_DESCRIPTION","features":[381,376]},{"name":"WPD_MEDIA_SUB_TITLE","features":[381,376]},{"name":"WPD_MEDIA_TIME_BOOKMARK","features":[381,376]},{"name":"WPD_MEDIA_TIME_TO_LIVE","features":[381,376]},{"name":"WPD_MEDIA_TITLE","features":[381,376]},{"name":"WPD_MEDIA_TOTAL_BITRATE","features":[381,376]},{"name":"WPD_MEDIA_USER_EFFECTIVE_RATING","features":[381,376]},{"name":"WPD_MEDIA_USE_COUNT","features":[381,376]},{"name":"WPD_MEDIA_WEBMASTER","features":[381,376]},{"name":"WPD_MEDIA_WIDTH","features":[381,376]},{"name":"WPD_MEMO_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_META_GENRES","features":[381]},{"name":"WPD_META_GENRE_AUDIO_PODCAST","features":[381]},{"name":"WPD_META_GENRE_FEATURE_FILM_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_GENERIC_MUSIC_AUDIO_FILE","features":[381]},{"name":"WPD_META_GENRE_GENERIC_NON_AUDIO_NON_VIDEO","features":[381]},{"name":"WPD_META_GENRE_GENERIC_NON_MUSIC_AUDIO_FILE","features":[381]},{"name":"WPD_META_GENRE_GENERIC_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_HOME_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_MIXED_PODCAST","features":[381]},{"name":"WPD_META_GENRE_MUSIC_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_NEWS_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_PHOTO_MONTAGE_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_SPOKEN_WORD_AUDIO_BOOK_FILES","features":[381]},{"name":"WPD_META_GENRE_SPOKEN_WORD_FILES_NON_AUDIO_BOOK","features":[381]},{"name":"WPD_META_GENRE_SPOKEN_WORD_NEWS","features":[381]},{"name":"WPD_META_GENRE_SPOKEN_WORD_TALK_SHOWS","features":[381]},{"name":"WPD_META_GENRE_TELEVISION_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_TRAINING_EDUCATIONAL_VIDEO_FILE","features":[381]},{"name":"WPD_META_GENRE_UNUSED","features":[381]},{"name":"WPD_META_GENRE_VIDEO_PODCAST","features":[381]},{"name":"WPD_METHOD_ATTRIBUTES_V1","features":[381]},{"name":"WPD_METHOD_ATTRIBUTE_ACCESS","features":[381,376]},{"name":"WPD_METHOD_ATTRIBUTE_ASSOCIATED_FORMAT","features":[381,376]},{"name":"WPD_METHOD_ATTRIBUTE_NAME","features":[381,376]},{"name":"WPD_METHOD_ATTRIBUTE_PARAMETERS","features":[381,376]},{"name":"WPD_MUSIC_ALBUM","features":[381,376]},{"name":"WPD_MUSIC_LYRICS","features":[381,376]},{"name":"WPD_MUSIC_MOOD","features":[381,376]},{"name":"WPD_MUSIC_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_MUSIC_TRACK","features":[381,376]},{"name":"WPD_NETWORK_ASSOCIATION_HOST_NETWORK_IDENTIFIERS","features":[381,376]},{"name":"WPD_NETWORK_ASSOCIATION_PROPERTIES_V1","features":[381]},{"name":"WPD_NETWORK_ASSOCIATION_X509V3SEQUENCE","features":[381,376]},{"name":"WPD_OBJECT_BACK_REFERENCES","features":[381,376]},{"name":"WPD_OBJECT_CAN_DELETE","features":[381,376]},{"name":"WPD_OBJECT_CONTAINER_FUNCTIONAL_OBJECT_ID","features":[381,376]},{"name":"WPD_OBJECT_CONTENT_TYPE","features":[381,376]},{"name":"WPD_OBJECT_DATE_AUTHORED","features":[381,376]},{"name":"WPD_OBJECT_DATE_CREATED","features":[381,376]},{"name":"WPD_OBJECT_DATE_MODIFIED","features":[381,376]},{"name":"WPD_OBJECT_FORMAT","features":[381,376]},{"name":"WPD_OBJECT_FORMAT_3G2","features":[381]},{"name":"WPD_OBJECT_FORMAT_3G2A","features":[381]},{"name":"WPD_OBJECT_FORMAT_3GP","features":[381]},{"name":"WPD_OBJECT_FORMAT_3GPA","features":[381]},{"name":"WPD_OBJECT_FORMAT_AAC","features":[381]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT","features":[381]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_CONTACT_GROUP","features":[381]},{"name":"WPD_OBJECT_FORMAT_ABSTRACT_MEDIA_CAST","features":[381]},{"name":"WPD_OBJECT_FORMAT_AIFF","features":[381]},{"name":"WPD_OBJECT_FORMAT_ALL","features":[381]},{"name":"WPD_OBJECT_FORMAT_AMR","features":[381]},{"name":"WPD_OBJECT_FORMAT_ASF","features":[381]},{"name":"WPD_OBJECT_FORMAT_ASXPLAYLIST","features":[381]},{"name":"WPD_OBJECT_FORMAT_ATSCTS","features":[381]},{"name":"WPD_OBJECT_FORMAT_AUDIBLE","features":[381]},{"name":"WPD_OBJECT_FORMAT_AVCHD","features":[381]},{"name":"WPD_OBJECT_FORMAT_AVI","features":[381]},{"name":"WPD_OBJECT_FORMAT_BMP","features":[381]},{"name":"WPD_OBJECT_FORMAT_CIFF","features":[381]},{"name":"WPD_OBJECT_FORMAT_DPOF","features":[381]},{"name":"WPD_OBJECT_FORMAT_DVBTS","features":[381]},{"name":"WPD_OBJECT_FORMAT_EXECUTABLE","features":[381]},{"name":"WPD_OBJECT_FORMAT_EXIF","features":[381]},{"name":"WPD_OBJECT_FORMAT_FLAC","features":[381]},{"name":"WPD_OBJECT_FORMAT_FLASHPIX","features":[381]},{"name":"WPD_OBJECT_FORMAT_GIF","features":[381]},{"name":"WPD_OBJECT_FORMAT_HTML","features":[381]},{"name":"WPD_OBJECT_FORMAT_ICALENDAR","features":[381]},{"name":"WPD_OBJECT_FORMAT_ICON","features":[381]},{"name":"WPD_OBJECT_FORMAT_JFIF","features":[381]},{"name":"WPD_OBJECT_FORMAT_JP2","features":[381]},{"name":"WPD_OBJECT_FORMAT_JPEGXR","features":[381]},{"name":"WPD_OBJECT_FORMAT_JPX","features":[381]},{"name":"WPD_OBJECT_FORMAT_M3UPLAYLIST","features":[381]},{"name":"WPD_OBJECT_FORMAT_M4A","features":[381]},{"name":"WPD_OBJECT_FORMAT_MHT_COMPILED_HTML","features":[381]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_EXCEL","features":[381]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_POWERPOINT","features":[381]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WFC","features":[381]},{"name":"WPD_OBJECT_FORMAT_MICROSOFT_WORD","features":[381]},{"name":"WPD_OBJECT_FORMAT_MKV","features":[381]},{"name":"WPD_OBJECT_FORMAT_MP2","features":[381]},{"name":"WPD_OBJECT_FORMAT_MP3","features":[381]},{"name":"WPD_OBJECT_FORMAT_MP4","features":[381]},{"name":"WPD_OBJECT_FORMAT_MPEG","features":[381]},{"name":"WPD_OBJECT_FORMAT_MPLPLAYLIST","features":[381]},{"name":"WPD_OBJECT_FORMAT_NETWORK_ASSOCIATION","features":[381]},{"name":"WPD_OBJECT_FORMAT_OGG","features":[381]},{"name":"WPD_OBJECT_FORMAT_PCD","features":[381]},{"name":"WPD_OBJECT_FORMAT_PICT","features":[381]},{"name":"WPD_OBJECT_FORMAT_PLSPLAYLIST","features":[381]},{"name":"WPD_OBJECT_FORMAT_PNG","features":[381]},{"name":"WPD_OBJECT_FORMAT_PROPERTIES_ONLY","features":[381]},{"name":"WPD_OBJECT_FORMAT_QCELP","features":[381]},{"name":"WPD_OBJECT_FORMAT_SCRIPT","features":[381]},{"name":"WPD_OBJECT_FORMAT_TEXT","features":[381]},{"name":"WPD_OBJECT_FORMAT_TIFF","features":[381]},{"name":"WPD_OBJECT_FORMAT_TIFFEP","features":[381]},{"name":"WPD_OBJECT_FORMAT_TIFFIT","features":[381]},{"name":"WPD_OBJECT_FORMAT_UNSPECIFIED","features":[381]},{"name":"WPD_OBJECT_FORMAT_VCALENDAR1","features":[381]},{"name":"WPD_OBJECT_FORMAT_VCARD2","features":[381]},{"name":"WPD_OBJECT_FORMAT_VCARD3","features":[381]},{"name":"WPD_OBJECT_FORMAT_WAVE","features":[381]},{"name":"WPD_OBJECT_FORMAT_WBMP","features":[381]},{"name":"WPD_OBJECT_FORMAT_WINDOWSIMAGEFORMAT","features":[381]},{"name":"WPD_OBJECT_FORMAT_WMA","features":[381]},{"name":"WPD_OBJECT_FORMAT_WMV","features":[381]},{"name":"WPD_OBJECT_FORMAT_WPLPLAYLIST","features":[381]},{"name":"WPD_OBJECT_FORMAT_X509V3CERTIFICATE","features":[381]},{"name":"WPD_OBJECT_FORMAT_XML","features":[381]},{"name":"WPD_OBJECT_GENERATE_THUMBNAIL_FROM_RESOURCE","features":[381,376]},{"name":"WPD_OBJECT_HINT_LOCATION_DISPLAY_NAME","features":[381,376]},{"name":"WPD_OBJECT_ID","features":[381,376]},{"name":"WPD_OBJECT_ISHIDDEN","features":[381,376]},{"name":"WPD_OBJECT_ISSYSTEM","features":[381,376]},{"name":"WPD_OBJECT_IS_DRM_PROTECTED","features":[381,376]},{"name":"WPD_OBJECT_KEYWORDS","features":[381,376]},{"name":"WPD_OBJECT_LANGUAGE_LOCALE","features":[381,376]},{"name":"WPD_OBJECT_NAME","features":[381,376]},{"name":"WPD_OBJECT_NON_CONSUMABLE","features":[381,376]},{"name":"WPD_OBJECT_ORIGINAL_FILE_NAME","features":[381,376]},{"name":"WPD_OBJECT_PARENT_ID","features":[381,376]},{"name":"WPD_OBJECT_PERSISTENT_UNIQUE_ID","features":[381,376]},{"name":"WPD_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_OBJECT_PROPERTIES_V2","features":[381]},{"name":"WPD_OBJECT_REFERENCES","features":[381,376]},{"name":"WPD_OBJECT_SIZE","features":[381,376]},{"name":"WPD_OBJECT_SUPPORTED_UNITS","features":[381,376]},{"name":"WPD_OBJECT_SYNC_ID","features":[381,376]},{"name":"WPD_OPERATION_STATES","features":[381]},{"name":"WPD_OPERATION_STATE_ABORTED","features":[381]},{"name":"WPD_OPERATION_STATE_CANCELLED","features":[381]},{"name":"WPD_OPERATION_STATE_FINISHED","features":[381]},{"name":"WPD_OPERATION_STATE_PAUSED","features":[381]},{"name":"WPD_OPERATION_STATE_RUNNING","features":[381]},{"name":"WPD_OPERATION_STATE_STARTED","features":[381]},{"name":"WPD_OPERATION_STATE_UNSPECIFIED","features":[381]},{"name":"WPD_OPTION_OBJECT_MANAGEMENT_RECURSIVE_DELETE_SUPPORTED","features":[381,376]},{"name":"WPD_OPTION_OBJECT_RESOURCES_NO_INPUT_BUFFER_ON_READ","features":[381,376]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_READ_SUPPORTED","features":[381,376]},{"name":"WPD_OPTION_OBJECT_RESOURCES_SEEK_ON_WRITE_SUPPORTED","features":[381,376]},{"name":"WPD_OPTION_SMS_BINARY_MESSAGE_SUPPORTED","features":[381,376]},{"name":"WPD_OPTION_VALID_OBJECT_IDS","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTES_V1","features":[381]},{"name":"WPD_PARAMETER_ATTRIBUTE_DEFAULT_VALUE","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_ENUMERATION","features":[381]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[381]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_RANGE","features":[381]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[381]},{"name":"WPD_PARAMETER_ATTRIBUTE_FORM_UNSPECIFIED","features":[381]},{"name":"WPD_PARAMETER_ATTRIBUTE_MAX_SIZE","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_NAME","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_ORDER","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MAX","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_MIN","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_RANGE_STEP","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_REGULAR_EXPRESSION","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_USAGE","features":[381,376]},{"name":"WPD_PARAMETER_ATTRIBUTE_VARTYPE","features":[381,376]},{"name":"WPD_PARAMETER_USAGE_IN","features":[381]},{"name":"WPD_PARAMETER_USAGE_INOUT","features":[381]},{"name":"WPD_PARAMETER_USAGE_OUT","features":[381]},{"name":"WPD_PARAMETER_USAGE_RETURN","features":[381]},{"name":"WPD_PARAMETER_USAGE_TYPES","features":[381]},{"name":"WPD_POWER_SOURCES","features":[381]},{"name":"WPD_POWER_SOURCE_BATTERY","features":[381]},{"name":"WPD_POWER_SOURCE_EXTERNAL","features":[381]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_DEVICE_PROPS","features":[381]},{"name":"WPD_PROPERTIES_MTP_VENDOR_EXTENDED_OBJECT_PROPS","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTES_V1","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTES_V2","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_DELETE","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_READ","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_CAN_WRITE","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_DEFAULT_VALUE","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_ENUMERATION_ELEMENTS","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_FAST_PROPERTY","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_ENUMERATION","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_OBJECT_IDENTIFIER","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_RANGE","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_REGULAR_EXPRESSION","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTE_FORM_UNSPECIFIED","features":[381]},{"name":"WPD_PROPERTY_ATTRIBUTE_MAX_SIZE","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_NAME","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MAX","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_MIN","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_RANGE_STEP","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_REGULAR_EXPRESSION","features":[381,376]},{"name":"WPD_PROPERTY_ATTRIBUTE_VARTYPE","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_COMMAND_OPTIONS","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPE","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_CONTENT_TYPES","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_EVENT_OPTIONS","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMAT","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_FORMATS","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORIES","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_CATEGORY","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_FUNCTIONAL_OBJECTS","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_PROPERTY_KEYS","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_COMMANDS","features":[381,376]},{"name":"WPD_PROPERTY_CAPABILITIES_SUPPORTED_EVENTS","features":[381,376]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_VALUES","features":[381,376]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_DEVICE_INFORMATION_WRITE_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_INTERFACES","features":[381,376]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_CLASS_EXTENSION_SERVICE_REGISTRATION_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_ACTIVITY_ID","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_CLIENT_INFORMATION_CONTEXT","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_COMMAND_CATEGORY","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_COMMAND_ID","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_COMMAND_TARGET","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_DRIVER_ERROR_CODE","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_HRESULT","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_OBJECT_IDS","features":[381,376]},{"name":"WPD_PROPERTY_COMMON_PERSISTENT_UNIQUE_IDS","features":[381,376]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_LOCATIONS","features":[381,376]},{"name":"WPD_PROPERTY_DEVICE_HINTS_CONTENT_TYPE","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_EVENT_PARAMS","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_CODE","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_OPERATION_PARAMS","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_CODE","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_RESPONSE_PARAMS","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_CONTEXT","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_DATA","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_READ","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_READ","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_TO_WRITE","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_NUM_BYTES_WRITTEN","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_TRANSFER_TOTAL_DATA_SIZE","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_EXTENSION_DESCRIPTION","features":[381,376]},{"name":"WPD_PROPERTY_MTP_EXT_VENDOR_OPERATION_CODES","features":[381,376]},{"name":"WPD_PROPERTY_NULL","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_CONTEXT","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_FILTER","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_NUM_OBJECTS_REQUESTED","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_OBJECT_IDS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_ENUMERATION_PARENT_ID","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CONTEXT","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_COPY_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_CREATION_PROPERTIES","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DATA","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_OPTIONS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DELETE_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_DESTINATION_FOLDER_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_MOVE_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_TO_WRITE","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_NUM_BYTES_WRITTEN","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_FORMAT","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OBJECT_IDS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_PROPERTY_KEYS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_MANAGEMENT_UPDATE_PROPERTIES","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_CONTEXT","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_DEPTH","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_FORMAT","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_OBJECT_IDS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PARENT_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_PROPERTY_KEYS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_VALUES","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_BULK_WRITE_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_DELETE_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_KEYS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_VALUES","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_PROPERTIES_PROPERTY_WRITE_RESULTS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_ACCESS_MODE","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_CONTEXT","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_DATA","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_READ","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_READ","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_TO_WRITE","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_NUM_BYTES_WRITTEN","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_OPTIMAL_TRANSFER_BUFFER_SIZE","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_POSITION_FROM_START","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_RESOURCE_KEYS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_OFFSET","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SEEK_ORIGIN_FLAG","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_STREAM_UNITS","features":[381,376]},{"name":"WPD_PROPERTY_OBJECT_RESOURCES_SUPPORTS_UNITS","features":[381,376]},{"name":"WPD_PROPERTY_PUBLIC_KEY","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_COMMAND_OPTIONS","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_EVENT_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMATS","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_FORMAT_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITANCE_TYPE","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_INHERITED_SERVICES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_METHOD_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PARAMETER_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_ATTRIBUTES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_PROPERTY_KEYS","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_RENDERING_PROFILES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_COMMANDS","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_EVENTS","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_CAPABILITIES_SUPPORTED_METHODS","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_METHOD","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_METHOD_CONTEXT","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_METHOD_HRESULT","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_METHOD_PARAMETER_VALUES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_METHOD_RESULT_VALUES","features":[381,376]},{"name":"WPD_PROPERTY_SERVICE_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_SMS_BINARY_MESSAGE","features":[381,376]},{"name":"WPD_PROPERTY_SMS_MESSAGE_TYPE","features":[381,376]},{"name":"WPD_PROPERTY_SMS_RECIPIENT","features":[381,376]},{"name":"WPD_PROPERTY_SMS_TEXT_MESSAGE","features":[381,376]},{"name":"WPD_PROPERTY_STORAGE_DESTINATION_OBJECT_ID","features":[381,376]},{"name":"WPD_PROPERTY_STORAGE_OBJECT_ID","features":[381,376]},{"name":"WPD_RENDERING_INFORMATION_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_RENDERING_INFORMATION_PROFILES","features":[381,376]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_CREATABLE_RESOURCES","features":[381,376]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE","features":[381,376]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPES","features":[381]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_OBJECT","features":[381]},{"name":"WPD_RENDERING_INFORMATION_PROFILE_ENTRY_TYPE_RESOURCE","features":[381]},{"name":"WPD_RESOURCE_ALBUM_ART","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTES_V1","features":[381]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_DELETE","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_READ","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTE_CAN_WRITE","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTE_FORMAT","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_READ_BUFFER_SIZE","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTE_OPTIMAL_WRITE_BUFFER_SIZE","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTE_RESOURCE_KEY","features":[381,376]},{"name":"WPD_RESOURCE_ATTRIBUTE_TOTAL_SIZE","features":[381,376]},{"name":"WPD_RESOURCE_AUDIO_CLIP","features":[381,376]},{"name":"WPD_RESOURCE_BRANDING_ART","features":[381,376]},{"name":"WPD_RESOURCE_CONTACT_PHOTO","features":[381,376]},{"name":"WPD_RESOURCE_DEFAULT","features":[381,376]},{"name":"WPD_RESOURCE_GENERIC","features":[381,376]},{"name":"WPD_RESOURCE_ICON","features":[381,376]},{"name":"WPD_RESOURCE_THUMBNAIL","features":[381,376]},{"name":"WPD_RESOURCE_VIDEO_CLIP","features":[381,376]},{"name":"WPD_SECTION_DATA_LENGTH","features":[381,376]},{"name":"WPD_SECTION_DATA_OFFSET","features":[381,376]},{"name":"WPD_SECTION_DATA_REFERENCED_OBJECT_RESOURCE","features":[381,376]},{"name":"WPD_SECTION_DATA_UNITS","features":[381,376]},{"name":"WPD_SECTION_DATA_UNITS_BYTES","features":[381]},{"name":"WPD_SECTION_DATA_UNITS_MILLISECONDS","features":[381]},{"name":"WPD_SECTION_DATA_UNITS_VALUES","features":[381]},{"name":"WPD_SECTION_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_SERVICE_INHERITANCE_IMPLEMENTATION","features":[381]},{"name":"WPD_SERVICE_INHERITANCE_TYPES","features":[381]},{"name":"WPD_SERVICE_PROPERTIES_V1","features":[381]},{"name":"WPD_SERVICE_VERSION","features":[381,376]},{"name":"WPD_SMS_ENCODING","features":[381,376]},{"name":"WPD_SMS_ENCODING_TYPES","features":[381]},{"name":"WPD_SMS_MAX_PAYLOAD","features":[381,376]},{"name":"WPD_SMS_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_SMS_PROVIDER","features":[381,376]},{"name":"WPD_SMS_TIMEOUT","features":[381,376]},{"name":"WPD_STILL_IMAGE_ARTIST","features":[381,376]},{"name":"WPD_STILL_IMAGE_BURST_INTERVAL","features":[381,376]},{"name":"WPD_STILL_IMAGE_BURST_NUMBER","features":[381,376]},{"name":"WPD_STILL_IMAGE_CAMERA_MANUFACTURER","features":[381,376]},{"name":"WPD_STILL_IMAGE_CAMERA_MODEL","features":[381,376]},{"name":"WPD_STILL_IMAGE_CAPTURE_DELAY","features":[381,376]},{"name":"WPD_STILL_IMAGE_CAPTURE_FORMAT","features":[381,376]},{"name":"WPD_STILL_IMAGE_CAPTURE_MODE","features":[381,376]},{"name":"WPD_STILL_IMAGE_CAPTURE_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_STILL_IMAGE_CAPTURE_RESOLUTION","features":[381,376]},{"name":"WPD_STILL_IMAGE_COMPRESSION_SETTING","features":[381,376]},{"name":"WPD_STILL_IMAGE_CONTRAST","features":[381,376]},{"name":"WPD_STILL_IMAGE_DIGITAL_ZOOM","features":[381,376]},{"name":"WPD_STILL_IMAGE_EFFECT_MODE","features":[381,376]},{"name":"WPD_STILL_IMAGE_EXPOSURE_BIAS_COMPENSATION","features":[381,376]},{"name":"WPD_STILL_IMAGE_EXPOSURE_INDEX","features":[381,376]},{"name":"WPD_STILL_IMAGE_EXPOSURE_METERING_MODE","features":[381,376]},{"name":"WPD_STILL_IMAGE_EXPOSURE_PROGRAM_MODE","features":[381,376]},{"name":"WPD_STILL_IMAGE_EXPOSURE_TIME","features":[381,376]},{"name":"WPD_STILL_IMAGE_FLASH_MODE","features":[381,376]},{"name":"WPD_STILL_IMAGE_FNUMBER","features":[381,376]},{"name":"WPD_STILL_IMAGE_FOCAL_LENGTH","features":[381,376]},{"name":"WPD_STILL_IMAGE_FOCUS_DISTANCE","features":[381,376]},{"name":"WPD_STILL_IMAGE_FOCUS_METERING_MODE","features":[381,376]},{"name":"WPD_STILL_IMAGE_FOCUS_MODE","features":[381,376]},{"name":"WPD_STILL_IMAGE_RGB_GAIN","features":[381,376]},{"name":"WPD_STILL_IMAGE_SHARPNESS","features":[381,376]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_INTERVAL","features":[381,376]},{"name":"WPD_STILL_IMAGE_TIMELAPSE_NUMBER","features":[381,376]},{"name":"WPD_STILL_IMAGE_UPLOAD_URL","features":[381,376]},{"name":"WPD_STILL_IMAGE_WHITE_BALANCE","features":[381,376]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY","features":[381,376]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READWRITE","features":[381]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITHOUT_OBJECT_DELETION","features":[381]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_READ_ONLY_WITH_OBJECT_DELETION","features":[381]},{"name":"WPD_STORAGE_ACCESS_CAPABILITY_VALUES","features":[381]},{"name":"WPD_STORAGE_CAPACITY","features":[381,376]},{"name":"WPD_STORAGE_CAPACITY_IN_OBJECTS","features":[381,376]},{"name":"WPD_STORAGE_DESCRIPTION","features":[381,376]},{"name":"WPD_STORAGE_FILE_SYSTEM_TYPE","features":[381,376]},{"name":"WPD_STORAGE_FREE_SPACE_IN_BYTES","features":[381,376]},{"name":"WPD_STORAGE_FREE_SPACE_IN_OBJECTS","features":[381,376]},{"name":"WPD_STORAGE_MAX_OBJECT_SIZE","features":[381,376]},{"name":"WPD_STORAGE_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_STORAGE_SERIAL_NUMBER","features":[381,376]},{"name":"WPD_STORAGE_TYPE","features":[381,376]},{"name":"WPD_STORAGE_TYPE_FIXED_RAM","features":[381]},{"name":"WPD_STORAGE_TYPE_FIXED_ROM","features":[381]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_RAM","features":[381]},{"name":"WPD_STORAGE_TYPE_REMOVABLE_ROM","features":[381]},{"name":"WPD_STORAGE_TYPE_UNDEFINED","features":[381]},{"name":"WPD_STORAGE_TYPE_VALUES","features":[381]},{"name":"WPD_STREAM_UNITS","features":[381]},{"name":"WPD_STREAM_UNITS_BYTES","features":[381]},{"name":"WPD_STREAM_UNITS_FRAMES","features":[381]},{"name":"WPD_STREAM_UNITS_MICROSECONDS","features":[381]},{"name":"WPD_STREAM_UNITS_MILLISECONDS","features":[381]},{"name":"WPD_STREAM_UNITS_ROWS","features":[381]},{"name":"WPD_TASK_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_TASK_OWNER","features":[381,376]},{"name":"WPD_TASK_PERCENT_COMPLETE","features":[381,376]},{"name":"WPD_TASK_REMINDER_DATE","features":[381,376]},{"name":"WPD_TASK_STATUS","features":[381,376]},{"name":"WPD_VIDEO_AUTHOR","features":[381,376]},{"name":"WPD_VIDEO_BITRATE","features":[381,376]},{"name":"WPD_VIDEO_BUFFER_SIZE","features":[381,376]},{"name":"WPD_VIDEO_CREDITS","features":[381,376]},{"name":"WPD_VIDEO_FOURCC_CODE","features":[381,376]},{"name":"WPD_VIDEO_FRAMERATE","features":[381,376]},{"name":"WPD_VIDEO_KEY_FRAME_DISTANCE","features":[381,376]},{"name":"WPD_VIDEO_OBJECT_PROPERTIES_V1","features":[381]},{"name":"WPD_VIDEO_QUALITY_SETTING","features":[381,376]},{"name":"WPD_VIDEO_RECORDEDTV_CHANNEL_NUMBER","features":[381,376]},{"name":"WPD_VIDEO_RECORDEDTV_REPEAT","features":[381,376]},{"name":"WPD_VIDEO_RECORDEDTV_STATION_NAME","features":[381,376]},{"name":"WPD_VIDEO_SCAN_TYPE","features":[381,376]},{"name":"WPD_VIDEO_SCAN_TYPES","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_LOWER_FIRST","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_INTERLEAVED_UPPER_FIRST","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_LOWER_FIRST","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_FIELD_SINGLE_UPPER_FIRST","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_MIXED_INTERLACE_AND_PROGRESSIVE","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_PROGRESSIVE","features":[381]},{"name":"WPD_VIDEO_SCAN_TYPE_UNUSED","features":[381]},{"name":"WPD_WHITE_BALANCE_AUTOMATIC","features":[381]},{"name":"WPD_WHITE_BALANCE_DAYLIGHT","features":[381]},{"name":"WPD_WHITE_BALANCE_FLASH","features":[381]},{"name":"WPD_WHITE_BALANCE_FLORESCENT","features":[381]},{"name":"WPD_WHITE_BALANCE_MANUAL","features":[381]},{"name":"WPD_WHITE_BALANCE_ONE_PUSH_AUTOMATIC","features":[381]},{"name":"WPD_WHITE_BALANCE_SETTINGS","features":[381]},{"name":"WPD_WHITE_BALANCE_TUNGSTEN","features":[381]},{"name":"WPD_WHITE_BALANCE_UNDEFINED","features":[381]},{"name":"WpdAttributeForm","features":[381]},{"name":"WpdParameterAttributeForm","features":[381]},{"name":"WpdSerializer","features":[381]}],"384":[{"name":"DEVPKEY_DevQuery_ObjectType","features":[303]},{"name":"DEVPKEY_DeviceClass_Characteristics","features":[303]},{"name":"DEVPKEY_DeviceClass_ClassCoInstallers","features":[303]},{"name":"DEVPKEY_DeviceClass_ClassInstaller","features":[303]},{"name":"DEVPKEY_DeviceClass_ClassName","features":[303]},{"name":"DEVPKEY_DeviceClass_DHPRebalanceOptOut","features":[303]},{"name":"DEVPKEY_DeviceClass_DefaultService","features":[303]},{"name":"DEVPKEY_DeviceClass_DevType","features":[303]},{"name":"DEVPKEY_DeviceClass_Exclusive","features":[303]},{"name":"DEVPKEY_DeviceClass_Icon","features":[303]},{"name":"DEVPKEY_DeviceClass_IconPath","features":[303]},{"name":"DEVPKEY_DeviceClass_LowerFilters","features":[303]},{"name":"DEVPKEY_DeviceClass_Name","features":[303]},{"name":"DEVPKEY_DeviceClass_NoDisplayClass","features":[303]},{"name":"DEVPKEY_DeviceClass_NoInstallClass","features":[303]},{"name":"DEVPKEY_DeviceClass_NoUseClass","features":[303]},{"name":"DEVPKEY_DeviceClass_PropPageProvider","features":[303]},{"name":"DEVPKEY_DeviceClass_Security","features":[303]},{"name":"DEVPKEY_DeviceClass_SecuritySDS","features":[303]},{"name":"DEVPKEY_DeviceClass_SilentInstall","features":[303]},{"name":"DEVPKEY_DeviceClass_UpperFilters","features":[303]},{"name":"DEVPKEY_DeviceContainer_Address","features":[303]},{"name":"DEVPKEY_DeviceContainer_AlwaysShowDeviceAsConnected","features":[303]},{"name":"DEVPKEY_DeviceContainer_AssociationArray","features":[303]},{"name":"DEVPKEY_DeviceContainer_BaselineExperienceId","features":[303]},{"name":"DEVPKEY_DeviceContainer_Category","features":[303]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Desc","features":[303]},{"name":"DEVPKEY_DeviceContainer_CategoryGroup_Icon","features":[303]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Plural","features":[303]},{"name":"DEVPKEY_DeviceContainer_Category_Desc_Singular","features":[303]},{"name":"DEVPKEY_DeviceContainer_Category_Icon","features":[303]},{"name":"DEVPKEY_DeviceContainer_ConfigFlags","features":[303]},{"name":"DEVPKEY_DeviceContainer_CustomPrivilegedPackageFamilyNames","features":[303]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription1","features":[303]},{"name":"DEVPKEY_DeviceContainer_DeviceDescription2","features":[303]},{"name":"DEVPKEY_DeviceContainer_DeviceFunctionSubRank","features":[303]},{"name":"DEVPKEY_DeviceContainer_DiscoveryMethod","features":[303]},{"name":"DEVPKEY_DeviceContainer_ExperienceId","features":[303]},{"name":"DEVPKEY_DeviceContainer_FriendlyName","features":[303]},{"name":"DEVPKEY_DeviceContainer_HasProblem","features":[303]},{"name":"DEVPKEY_DeviceContainer_Icon","features":[303]},{"name":"DEVPKEY_DeviceContainer_InstallInProgress","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsAuthenticated","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsConnected","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsDefaultDevice","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsDeviceUniquelyIdentifiable","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsEncrypted","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsLocalMachine","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsMetadataSearchInProgress","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsNetworkDevice","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsNotInterestingForDisplay","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsPaired","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsRebootRequired","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsSharedDevice","features":[303]},{"name":"DEVPKEY_DeviceContainer_IsShowInDisconnectedState","features":[303]},{"name":"DEVPKEY_DeviceContainer_Last_Connected","features":[303]},{"name":"DEVPKEY_DeviceContainer_Last_Seen","features":[303]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageFromExplorer","features":[303]},{"name":"DEVPKEY_DeviceContainer_LaunchDeviceStageOnDeviceConnect","features":[303]},{"name":"DEVPKEY_DeviceContainer_Manufacturer","features":[303]},{"name":"DEVPKEY_DeviceContainer_MetadataCabinet","features":[303]},{"name":"DEVPKEY_DeviceContainer_MetadataChecksum","features":[303]},{"name":"DEVPKEY_DeviceContainer_MetadataPath","features":[303]},{"name":"DEVPKEY_DeviceContainer_ModelName","features":[303]},{"name":"DEVPKEY_DeviceContainer_ModelNumber","features":[303]},{"name":"DEVPKEY_DeviceContainer_PrimaryCategory","features":[303]},{"name":"DEVPKEY_DeviceContainer_PrivilegedPackageFamilyNames","features":[303]},{"name":"DEVPKEY_DeviceContainer_RequiresPairingElevation","features":[303]},{"name":"DEVPKEY_DeviceContainer_RequiresUninstallElevation","features":[303]},{"name":"DEVPKEY_DeviceContainer_UnpairUninstall","features":[303]},{"name":"DEVPKEY_DeviceContainer_Version","features":[303]},{"name":"DEVPKEY_DeviceInterfaceClass_DefaultInterface","features":[303]},{"name":"DEVPKEY_DeviceInterfaceClass_Name","features":[303]},{"name":"DEVPKEY_DeviceInterface_Autoplay_Silent","features":[303]},{"name":"DEVPKEY_DeviceInterface_ClassGuid","features":[303]},{"name":"DEVPKEY_DeviceInterface_Enabled","features":[303]},{"name":"DEVPKEY_DeviceInterface_FriendlyName","features":[303]},{"name":"DEVPKEY_DeviceInterface_ReferenceString","features":[303]},{"name":"DEVPKEY_DeviceInterface_Restricted","features":[303]},{"name":"DEVPKEY_DeviceInterface_SchematicName","features":[303]},{"name":"DEVPKEY_DeviceInterface_UnrestrictedAppCapabilities","features":[303]},{"name":"DEVPKEY_Device_AdditionalSoftwareRequested","features":[303]},{"name":"DEVPKEY_Device_Address","features":[303]},{"name":"DEVPKEY_Device_AssignedToGuest","features":[303]},{"name":"DEVPKEY_Device_BaseContainerId","features":[303]},{"name":"DEVPKEY_Device_BiosDeviceName","features":[303]},{"name":"DEVPKEY_Device_BusNumber","features":[303]},{"name":"DEVPKEY_Device_BusRelations","features":[303]},{"name":"DEVPKEY_Device_BusReportedDeviceDesc","features":[303]},{"name":"DEVPKEY_Device_BusTypeGuid","features":[303]},{"name":"DEVPKEY_Device_Capabilities","features":[303]},{"name":"DEVPKEY_Device_Characteristics","features":[303]},{"name":"DEVPKEY_Device_Children","features":[303]},{"name":"DEVPKEY_Device_Class","features":[303]},{"name":"DEVPKEY_Device_ClassGuid","features":[303]},{"name":"DEVPKEY_Device_CompanionApps","features":[303]},{"name":"DEVPKEY_Device_CompatibleIds","features":[303]},{"name":"DEVPKEY_Device_ConfigFlags","features":[303]},{"name":"DEVPKEY_Device_ConfigurationId","features":[303]},{"name":"DEVPKEY_Device_ContainerId","features":[303]},{"name":"DEVPKEY_Device_CreatorProcessId","features":[303]},{"name":"DEVPKEY_Device_DHP_Rebalance_Policy","features":[303]},{"name":"DEVPKEY_Device_DebuggerSafe","features":[303]},{"name":"DEVPKEY_Device_DependencyDependents","features":[303]},{"name":"DEVPKEY_Device_DependencyProviders","features":[303]},{"name":"DEVPKEY_Device_DevNodeStatus","features":[303]},{"name":"DEVPKEY_Device_DevType","features":[303]},{"name":"DEVPKEY_Device_DeviceDesc","features":[303]},{"name":"DEVPKEY_Device_Driver","features":[303]},{"name":"DEVPKEY_Device_DriverCoInstallers","features":[303]},{"name":"DEVPKEY_Device_DriverDate","features":[303]},{"name":"DEVPKEY_Device_DriverDesc","features":[303]},{"name":"DEVPKEY_Device_DriverInfPath","features":[303]},{"name":"DEVPKEY_Device_DriverInfSection","features":[303]},{"name":"DEVPKEY_Device_DriverInfSectionExt","features":[303]},{"name":"DEVPKEY_Device_DriverLogoLevel","features":[303]},{"name":"DEVPKEY_Device_DriverProblemDesc","features":[303]},{"name":"DEVPKEY_Device_DriverPropPageProvider","features":[303]},{"name":"DEVPKEY_Device_DriverProvider","features":[303]},{"name":"DEVPKEY_Device_DriverRank","features":[303]},{"name":"DEVPKEY_Device_DriverVersion","features":[303]},{"name":"DEVPKEY_Device_EjectionRelations","features":[303]},{"name":"DEVPKEY_Device_EnumeratorName","features":[303]},{"name":"DEVPKEY_Device_Exclusive","features":[303]},{"name":"DEVPKEY_Device_ExtendedAddress","features":[303]},{"name":"DEVPKEY_Device_ExtendedConfigurationIds","features":[303]},{"name":"DEVPKEY_Device_FirmwareDate","features":[303]},{"name":"DEVPKEY_Device_FirmwareRevision","features":[303]},{"name":"DEVPKEY_Device_FirmwareVendor","features":[303]},{"name":"DEVPKEY_Device_FirmwareVersion","features":[303]},{"name":"DEVPKEY_Device_FirstInstallDate","features":[303]},{"name":"DEVPKEY_Device_FriendlyName","features":[303]},{"name":"DEVPKEY_Device_FriendlyNameAttributes","features":[303]},{"name":"DEVPKEY_Device_GenericDriverInstalled","features":[303]},{"name":"DEVPKEY_Device_HardwareIds","features":[303]},{"name":"DEVPKEY_Device_HasProblem","features":[303]},{"name":"DEVPKEY_Device_InLocalMachineContainer","features":[303]},{"name":"DEVPKEY_Device_InstallDate","features":[303]},{"name":"DEVPKEY_Device_InstallState","features":[303]},{"name":"DEVPKEY_Device_InstanceId","features":[303]},{"name":"DEVPKEY_Device_IsAssociateableByUserAction","features":[303]},{"name":"DEVPKEY_Device_IsPresent","features":[303]},{"name":"DEVPKEY_Device_IsRebootRequired","features":[303]},{"name":"DEVPKEY_Device_LastArrivalDate","features":[303]},{"name":"DEVPKEY_Device_LastRemovalDate","features":[303]},{"name":"DEVPKEY_Device_Legacy","features":[303]},{"name":"DEVPKEY_Device_LegacyBusType","features":[303]},{"name":"DEVPKEY_Device_LocationInfo","features":[303]},{"name":"DEVPKEY_Device_LocationPaths","features":[303]},{"name":"DEVPKEY_Device_LowerFilters","features":[303]},{"name":"DEVPKEY_Device_Manufacturer","features":[303]},{"name":"DEVPKEY_Device_ManufacturerAttributes","features":[303]},{"name":"DEVPKEY_Device_MatchingDeviceId","features":[303]},{"name":"DEVPKEY_Device_Model","features":[303]},{"name":"DEVPKEY_Device_ModelId","features":[303]},{"name":"DEVPKEY_Device_NoConnectSound","features":[303]},{"name":"DEVPKEY_Device_Numa_Node","features":[303]},{"name":"DEVPKEY_Device_Numa_Proximity_Domain","features":[303]},{"name":"DEVPKEY_Device_PDOName","features":[303]},{"name":"DEVPKEY_Device_Parent","features":[303]},{"name":"DEVPKEY_Device_PhysicalDeviceLocation","features":[303]},{"name":"DEVPKEY_Device_PostInstallInProgress","features":[303]},{"name":"DEVPKEY_Device_PowerData","features":[303]},{"name":"DEVPKEY_Device_PowerRelations","features":[303]},{"name":"DEVPKEY_Device_PresenceNotForDevice","features":[303]},{"name":"DEVPKEY_Device_PrimaryCompanionApp","features":[303]},{"name":"DEVPKEY_Device_ProblemCode","features":[303]},{"name":"DEVPKEY_Device_ProblemStatus","features":[303]},{"name":"DEVPKEY_Device_RemovalPolicy","features":[303]},{"name":"DEVPKEY_Device_RemovalPolicyDefault","features":[303]},{"name":"DEVPKEY_Device_RemovalPolicyOverride","features":[303]},{"name":"DEVPKEY_Device_RemovalRelations","features":[303]},{"name":"DEVPKEY_Device_Reported","features":[303]},{"name":"DEVPKEY_Device_ReportedDeviceIdsHash","features":[303]},{"name":"DEVPKEY_Device_ResourcePickerExceptions","features":[303]},{"name":"DEVPKEY_Device_ResourcePickerTags","features":[303]},{"name":"DEVPKEY_Device_SafeRemovalRequired","features":[303]},{"name":"DEVPKEY_Device_SafeRemovalRequiredOverride","features":[303]},{"name":"DEVPKEY_Device_Security","features":[303]},{"name":"DEVPKEY_Device_SecuritySDS","features":[303]},{"name":"DEVPKEY_Device_Service","features":[303]},{"name":"DEVPKEY_Device_SessionId","features":[303]},{"name":"DEVPKEY_Device_ShowInUninstallUI","features":[303]},{"name":"DEVPKEY_Device_Siblings","features":[303]},{"name":"DEVPKEY_Device_SignalStrength","features":[303]},{"name":"DEVPKEY_Device_SoftRestartSupported","features":[303]},{"name":"DEVPKEY_Device_Stack","features":[303]},{"name":"DEVPKEY_Device_TransportRelations","features":[303]},{"name":"DEVPKEY_Device_UINumber","features":[303]},{"name":"DEVPKEY_Device_UINumberDescFormat","features":[303]},{"name":"DEVPKEY_Device_UpperFilters","features":[303]},{"name":"DEVPKEY_DrvPkg_BrandingIcon","features":[303]},{"name":"DEVPKEY_DrvPkg_DetailedDescription","features":[303]},{"name":"DEVPKEY_DrvPkg_DocumentationLink","features":[303]},{"name":"DEVPKEY_DrvPkg_Icon","features":[303]},{"name":"DEVPKEY_DrvPkg_Model","features":[303]},{"name":"DEVPKEY_DrvPkg_VendorWebSite","features":[303]},{"name":"DEVPKEY_NAME","features":[303]},{"name":"DEVPROPCOMPKEY","features":[303]},{"name":"DEVPROPERTY","features":[303]},{"name":"DEVPROPID_FIRST_USABLE","features":[303]},{"name":"DEVPROPKEY","features":[303]},{"name":"DEVPROPSTORE","features":[303]},{"name":"DEVPROPTYPE","features":[303]},{"name":"DEVPROP_BOOLEAN","features":[303]},{"name":"DEVPROP_FALSE","features":[303]},{"name":"DEVPROP_MASK_TYPE","features":[303]},{"name":"DEVPROP_MASK_TYPEMOD","features":[303]},{"name":"DEVPROP_STORE_SYSTEM","features":[303]},{"name":"DEVPROP_STORE_USER","features":[303]},{"name":"DEVPROP_TRUE","features":[303]},{"name":"DEVPROP_TYPEMOD_ARRAY","features":[303]},{"name":"DEVPROP_TYPEMOD_LIST","features":[303]},{"name":"DEVPROP_TYPE_BINARY","features":[303]},{"name":"DEVPROP_TYPE_BOOLEAN","features":[303]},{"name":"DEVPROP_TYPE_BYTE","features":[303]},{"name":"DEVPROP_TYPE_CURRENCY","features":[303]},{"name":"DEVPROP_TYPE_DATE","features":[303]},{"name":"DEVPROP_TYPE_DECIMAL","features":[303]},{"name":"DEVPROP_TYPE_DEVPROPKEY","features":[303]},{"name":"DEVPROP_TYPE_DEVPROPTYPE","features":[303]},{"name":"DEVPROP_TYPE_DOUBLE","features":[303]},{"name":"DEVPROP_TYPE_EMPTY","features":[303]},{"name":"DEVPROP_TYPE_ERROR","features":[303]},{"name":"DEVPROP_TYPE_FILETIME","features":[303]},{"name":"DEVPROP_TYPE_FLOAT","features":[303]},{"name":"DEVPROP_TYPE_GUID","features":[303]},{"name":"DEVPROP_TYPE_INT16","features":[303]},{"name":"DEVPROP_TYPE_INT32","features":[303]},{"name":"DEVPROP_TYPE_INT64","features":[303]},{"name":"DEVPROP_TYPE_NTSTATUS","features":[303]},{"name":"DEVPROP_TYPE_NULL","features":[303]},{"name":"DEVPROP_TYPE_SBYTE","features":[303]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR","features":[303]},{"name":"DEVPROP_TYPE_SECURITY_DESCRIPTOR_STRING","features":[303]},{"name":"DEVPROP_TYPE_STRING","features":[303]},{"name":"DEVPROP_TYPE_STRING_INDIRECT","features":[303]},{"name":"DEVPROP_TYPE_STRING_LIST","features":[303]},{"name":"DEVPROP_TYPE_UINT16","features":[303]},{"name":"DEVPROP_TYPE_UINT32","features":[303]},{"name":"DEVPROP_TYPE_UINT64","features":[303]},{"name":"MAX_DEVPROP_TYPE","features":[303]},{"name":"MAX_DEVPROP_TYPEMOD","features":[303]}],"385":[{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER","features":[382]},{"name":"GUID_DEVINTERFACE_PWM_CONTROLLER_WSZ","features":[382]},{"name":"IOCTL_PWM_CONTROLLER_GET_ACTUAL_PERIOD","features":[382]},{"name":"IOCTL_PWM_CONTROLLER_GET_INFO","features":[382]},{"name":"IOCTL_PWM_CONTROLLER_SET_DESIRED_PERIOD","features":[382]},{"name":"IOCTL_PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[382]},{"name":"IOCTL_PWM_PIN_GET_POLARITY","features":[382]},{"name":"IOCTL_PWM_PIN_IS_STARTED","features":[382]},{"name":"IOCTL_PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[382]},{"name":"IOCTL_PWM_PIN_SET_POLARITY","features":[382]},{"name":"IOCTL_PWM_PIN_START","features":[382]},{"name":"IOCTL_PWM_PIN_STOP","features":[382]},{"name":"PWM_ACTIVE_HIGH","features":[382]},{"name":"PWM_ACTIVE_LOW","features":[382]},{"name":"PWM_CONTROLLER_GET_ACTUAL_PERIOD_OUTPUT","features":[382]},{"name":"PWM_CONTROLLER_INFO","features":[382]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_INPUT","features":[382]},{"name":"PWM_CONTROLLER_SET_DESIRED_PERIOD_OUTPUT","features":[382]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_ACTUAL_PERIOD","features":[382]},{"name":"PWM_IOCTL_ID_CONTROLLER_GET_INFO","features":[382]},{"name":"PWM_IOCTL_ID_CONTROLLER_SET_DESIRED_PERIOD","features":[382]},{"name":"PWM_IOCTL_ID_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[382]},{"name":"PWM_IOCTL_ID_PIN_GET_POLARITY","features":[382]},{"name":"PWM_IOCTL_ID_PIN_IS_STARTED","features":[382]},{"name":"PWM_IOCTL_ID_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE","features":[382]},{"name":"PWM_IOCTL_ID_PIN_SET_POLARITY","features":[382]},{"name":"PWM_IOCTL_ID_PIN_START","features":[382]},{"name":"PWM_IOCTL_ID_PIN_STOP","features":[382]},{"name":"PWM_PIN_GET_ACTIVE_DUTY_CYCLE_PERCENTAGE_OUTPUT","features":[382]},{"name":"PWM_PIN_GET_POLARITY_OUTPUT","features":[382]},{"name":"PWM_PIN_IS_STARTED_OUTPUT","features":[382,305]},{"name":"PWM_PIN_SET_ACTIVE_DUTY_CYCLE_PERCENTAGE_INPUT","features":[382]},{"name":"PWM_PIN_SET_POLARITY_INPUT","features":[382]},{"name":"PWM_POLARITY","features":[382]}],"386":[{"name":"ACTIVITY_STATE","features":[383]},{"name":"ACTIVITY_STATE_COUNT","features":[383]},{"name":"AXIS","features":[383]},{"name":"AXIS_MAX","features":[383]},{"name":"AXIS_X","features":[383]},{"name":"AXIS_Y","features":[383]},{"name":"AXIS_Z","features":[383]},{"name":"ActivityStateCount","features":[383]},{"name":"ActivityState_Biking","features":[383]},{"name":"ActivityState_Fidgeting","features":[383]},{"name":"ActivityState_Force_Dword","features":[383]},{"name":"ActivityState_Idle","features":[383]},{"name":"ActivityState_InVehicle","features":[383]},{"name":"ActivityState_Max","features":[383]},{"name":"ActivityState_Running","features":[383]},{"name":"ActivityState_Stationary","features":[383]},{"name":"ActivityState_Unknown","features":[383]},{"name":"ActivityState_Walking","features":[383]},{"name":"CollectionsListAllocateBufferAndSerialize","features":[383,305,376]},{"name":"CollectionsListCopyAndMarshall","features":[383,305,376]},{"name":"CollectionsListDeserializeFromBuffer","features":[383,305,376]},{"name":"CollectionsListGetFillableCount","features":[383]},{"name":"CollectionsListGetMarshalledSize","features":[383,376]},{"name":"CollectionsListGetMarshalledSizeWithoutSerialization","features":[383,376]},{"name":"CollectionsListGetSerializedSize","features":[383,376]},{"name":"CollectionsListMarshall","features":[383,305,376]},{"name":"CollectionsListSerializeToBuffer","features":[383,305,376]},{"name":"CollectionsListSortSubscribedActivitiesByConfidence","features":[383,305,376]},{"name":"CollectionsListUpdateMarshalledPointer","features":[383,305,376]},{"name":"ELEVATION_CHANGE_MODE","features":[383]},{"name":"ElevationChangeMode_Elevator","features":[383]},{"name":"ElevationChangeMode_Force_Dword","features":[383]},{"name":"ElevationChangeMode_Max","features":[383]},{"name":"ElevationChangeMode_Stepping","features":[383]},{"name":"ElevationChangeMode_Unknown","features":[383]},{"name":"EvaluateActivityThresholds","features":[383,305,376]},{"name":"GNSS_CLEAR_ALL_ASSISTANCE_DATA","features":[383]},{"name":"GUID_DEVINTERFACE_SENSOR","features":[383]},{"name":"GUID_SensorCategory_All","features":[383]},{"name":"GUID_SensorCategory_Biometric","features":[383]},{"name":"GUID_SensorCategory_Electrical","features":[383]},{"name":"GUID_SensorCategory_Environmental","features":[383]},{"name":"GUID_SensorCategory_Light","features":[383]},{"name":"GUID_SensorCategory_Location","features":[383]},{"name":"GUID_SensorCategory_Mechanical","features":[383]},{"name":"GUID_SensorCategory_Motion","features":[383]},{"name":"GUID_SensorCategory_Orientation","features":[383]},{"name":"GUID_SensorCategory_Other","features":[383]},{"name":"GUID_SensorCategory_PersonalActivity","features":[383]},{"name":"GUID_SensorCategory_Scanner","features":[383]},{"name":"GUID_SensorCategory_Unsupported","features":[383]},{"name":"GUID_SensorType_Accelerometer3D","features":[383]},{"name":"GUID_SensorType_ActivityDetection","features":[383]},{"name":"GUID_SensorType_AmbientLight","features":[383]},{"name":"GUID_SensorType_Barometer","features":[383]},{"name":"GUID_SensorType_Custom","features":[383]},{"name":"GUID_SensorType_FloorElevation","features":[383]},{"name":"GUID_SensorType_GeomagneticOrientation","features":[383]},{"name":"GUID_SensorType_GravityVector","features":[383]},{"name":"GUID_SensorType_Gyrometer3D","features":[383]},{"name":"GUID_SensorType_HingeAngle","features":[383]},{"name":"GUID_SensorType_Humidity","features":[383]},{"name":"GUID_SensorType_LinearAccelerometer","features":[383]},{"name":"GUID_SensorType_Magnetometer3D","features":[383]},{"name":"GUID_SensorType_Orientation","features":[383]},{"name":"GUID_SensorType_Pedometer","features":[383]},{"name":"GUID_SensorType_Proximity","features":[383]},{"name":"GUID_SensorType_RelativeOrientation","features":[383]},{"name":"GUID_SensorType_SimpleDeviceOrientation","features":[383]},{"name":"GUID_SensorType_Temperature","features":[383]},{"name":"GetPerformanceTime","features":[383,305]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE","features":[383]},{"name":"HUMAN_PRESENCE_DETECTION_TYPE_COUNT","features":[383]},{"name":"HumanPresenceDetectionTypeCount","features":[383]},{"name":"HumanPresenceDetectionType_AudioBiometric","features":[383]},{"name":"HumanPresenceDetectionType_FacialBiometric","features":[383]},{"name":"HumanPresenceDetectionType_Force_Dword","features":[383]},{"name":"HumanPresenceDetectionType_Undefined","features":[383]},{"name":"HumanPresenceDetectionType_VendorDefinedBiometric","features":[383]},{"name":"HumanPresenceDetectionType_VendorDefinedNonBiometric","features":[383]},{"name":"ILocationPermissions","features":[383]},{"name":"ISensor","features":[383]},{"name":"ISensorCollection","features":[383]},{"name":"ISensorDataReport","features":[383]},{"name":"ISensorEvents","features":[383]},{"name":"ISensorManager","features":[383]},{"name":"ISensorManagerEvents","features":[383]},{"name":"InitPropVariantFromCLSIDArray","features":[383]},{"name":"InitPropVariantFromFloat","features":[383]},{"name":"IsCollectionListSame","features":[383,305,376]},{"name":"IsGUIDPresentInList","features":[383,305]},{"name":"IsKeyPresentInCollectionList","features":[383,305,376]},{"name":"IsKeyPresentInPropertyList","features":[383,305,376]},{"name":"IsSensorSubscribed","features":[383,305,376]},{"name":"LOCATION_DESIRED_ACCURACY","features":[383]},{"name":"LOCATION_DESIRED_ACCURACY_DEFAULT","features":[383]},{"name":"LOCATION_DESIRED_ACCURACY_HIGH","features":[383]},{"name":"LOCATION_POSITION_SOURCE","features":[383]},{"name":"LOCATION_POSITION_SOURCE_CELLULAR","features":[383]},{"name":"LOCATION_POSITION_SOURCE_IPADDRESS","features":[383]},{"name":"LOCATION_POSITION_SOURCE_SATELLITE","features":[383]},{"name":"LOCATION_POSITION_SOURCE_UNKNOWN","features":[383]},{"name":"LOCATION_POSITION_SOURCE_WIFI","features":[383]},{"name":"MAGNETOMETER_ACCURACY","features":[383]},{"name":"MAGNETOMETER_ACCURACY_APPROXIMATE","features":[383]},{"name":"MAGNETOMETER_ACCURACY_HIGH","features":[383]},{"name":"MAGNETOMETER_ACCURACY_UNKNOWN","features":[383]},{"name":"MAGNETOMETER_ACCURACY_UNRELIABLE","features":[383]},{"name":"MATRIX3X3","features":[383]},{"name":"MagnetometerAccuracy","features":[383]},{"name":"MagnetometerAccuracy_Approximate","features":[383]},{"name":"MagnetometerAccuracy_High","features":[383]},{"name":"MagnetometerAccuracy_Unknown","features":[383]},{"name":"MagnetometerAccuracy_Unreliable","features":[383]},{"name":"PEDOMETER_STEP_TYPE","features":[383]},{"name":"PEDOMETER_STEP_TYPE_COUNT","features":[383]},{"name":"PROXIMITY_SENSOR_CAPABILITIES","features":[383]},{"name":"PROXIMITY_TYPE","features":[383]},{"name":"PedometerStepTypeCount","features":[383]},{"name":"PedometerStepType_Force_Dword","features":[383]},{"name":"PedometerStepType_Max","features":[383]},{"name":"PedometerStepType_Running","features":[383]},{"name":"PedometerStepType_Unknown","features":[383]},{"name":"PedometerStepType_Walking","features":[383]},{"name":"PropKeyFindKeyGetBool","features":[383,305,376]},{"name":"PropKeyFindKeyGetDouble","features":[383,305,376]},{"name":"PropKeyFindKeyGetFileTime","features":[383,305,376]},{"name":"PropKeyFindKeyGetFloat","features":[383,305,376]},{"name":"PropKeyFindKeyGetGuid","features":[383,305,376]},{"name":"PropKeyFindKeyGetInt32","features":[383,305,376]},{"name":"PropKeyFindKeyGetInt64","features":[383,305,376]},{"name":"PropKeyFindKeyGetNthInt64","features":[383,305,376]},{"name":"PropKeyFindKeyGetNthUlong","features":[383,305,376]},{"name":"PropKeyFindKeyGetNthUshort","features":[383,305,376]},{"name":"PropKeyFindKeyGetPropVariant","features":[383,305,376]},{"name":"PropKeyFindKeyGetUlong","features":[383,305,376]},{"name":"PropKeyFindKeyGetUshort","features":[383,305,376]},{"name":"PropKeyFindKeySetPropVariant","features":[383,305,376]},{"name":"PropVariantGetInformation","features":[303,383,305]},{"name":"PropertiesListCopy","features":[383,305,376]},{"name":"PropertiesListGetFillableCount","features":[383]},{"name":"ProximityType_Force_Dword","features":[383]},{"name":"ProximityType_HumanProximity","features":[383]},{"name":"ProximityType_ObjectProximity","features":[383]},{"name":"Proximity_Sensor_Human_Engagement_Capable","features":[383]},{"name":"Proximity_Sensor_Human_Presence_Capable","features":[383]},{"name":"Proximity_Sensor_Supported_Capabilities","features":[383]},{"name":"QUATERNION","features":[383]},{"name":"SENSOR_CATEGORY_ALL","features":[383]},{"name":"SENSOR_CATEGORY_BIOMETRIC","features":[383]},{"name":"SENSOR_CATEGORY_ELECTRICAL","features":[383]},{"name":"SENSOR_CATEGORY_ENVIRONMENTAL","features":[383]},{"name":"SENSOR_CATEGORY_LIGHT","features":[383]},{"name":"SENSOR_CATEGORY_LOCATION","features":[383]},{"name":"SENSOR_CATEGORY_MECHANICAL","features":[383]},{"name":"SENSOR_CATEGORY_MOTION","features":[383]},{"name":"SENSOR_CATEGORY_ORIENTATION","features":[383]},{"name":"SENSOR_CATEGORY_OTHER","features":[383]},{"name":"SENSOR_CATEGORY_SCANNER","features":[383]},{"name":"SENSOR_CATEGORY_UNSUPPORTED","features":[383]},{"name":"SENSOR_COLLECTION_LIST","features":[383,376]},{"name":"SENSOR_CONNECTION_TYPES","features":[383]},{"name":"SENSOR_CONNECTION_TYPE_PC_ATTACHED","features":[383]},{"name":"SENSOR_CONNECTION_TYPE_PC_EXTERNAL","features":[383]},{"name":"SENSOR_CONNECTION_TYPE_PC_INTEGRATED","features":[383]},{"name":"SENSOR_DATA_TYPE_ABSOLUTE_PRESSURE_PASCAL","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_X_G","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Y_G","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ACCELERATION_Z_G","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ADDRESS1","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ADDRESS2","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ANTENNA_SEALEVEL_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_ERROR_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_ELLIPSOID_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_ERROR_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ALTITUDE_SEALEVEL_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_X_DEGREES_PER_SECOND_SQUARED","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Y_DEGREES_PER_SECOND_SQUARED","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ANGULAR_ACCELERATION_Z_DEGREES_PER_SECOND_SQUARED","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_X_DEGREES_PER_SECOND","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Y_DEGREES_PER_SECOND","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ANGULAR_VELOCITY_Z_DEGREES_PER_SECOND","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ATMOSPHERIC_PRESSURE_BAR","features":[383,376]},{"name":"SENSOR_DATA_TYPE_BIOMETRIC_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_ARRAY_STATES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_BOOLEAN_SWITCH_STATE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CAPACITANCE_FARAD","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CITY","features":[383,376]},{"name":"SENSOR_DATA_TYPE_COMMON_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_COUNTRY_REGION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CURRENT_AMPS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_BOOLEAN_ARRAY","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_CUSTOM_USAGE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE1","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE10","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE11","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE12","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE13","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE14","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE15","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE16","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE17","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE18","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE19","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE2","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE20","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE21","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE22","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE23","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE24","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE25","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE26","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE27","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE28","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE3","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE4","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE5","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE6","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE7","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE8","features":[383,376]},{"name":"SENSOR_DATA_TYPE_CUSTOM_VALUE9","features":[383,376]},{"name":"SENSOR_DATA_TYPE_DGPS_DATA_AGE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_DIFFERENTIAL_REFERENCE_STATION_ID","features":[383,376]},{"name":"SENSOR_DATA_TYPE_DISTANCE_X_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Y_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_DISTANCE_Z_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_FREQUENCY_HERTZ","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_PERCENT_OF_RANGE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ELECTRICAL_POWER_WATTS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ENVIRONMENTAL_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_ERROR_RADIUS_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_FIX_QUALITY","features":[383,376]},{"name":"SENSOR_DATA_TYPE_FIX_TYPE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_FORCE_NEWTONS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_GAUGE_PRESSURE_PASCAL","features":[383,376]},{"name":"SENSOR_DATA_TYPE_GEOIDAL_SEPARATION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_GPS_OPERATION_MODE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_GPS_SELECTION_MODE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_GPS_STATUS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_GUID_MECHANICAL_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_HORIZONAL_DILUTION_OF_PRECISION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_HUMAN_PRESENCE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_HUMAN_PROXIMITY_METERS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_INDUCTANCE_HENRY","features":[383,376]},{"name":"SENSOR_DATA_TYPE_LATITUDE_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_LIGHT_CHROMACITY","features":[383,376]},{"name":"SENSOR_DATA_TYPE_LIGHT_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_LIGHT_LEVEL_LUX","features":[383,376]},{"name":"SENSOR_DATA_TYPE_LIGHT_TEMPERATURE_KELVIN","features":[383,376]},{"name":"SENSOR_DATA_TYPE_LOCATION_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_LOCATION_SOURCE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_LONGITUDE_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_X_MILLIGAUSS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Y_MILLIGAUSS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_FIELD_STRENGTH_Z_MILLIGAUSS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_MAGNETIC_NORTH_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_COMPENSATED_TRUE_NORTH_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_MAGNETIC_NORTH_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_TRUE_NORTH_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_X_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Y_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_HEADING_Z_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETIC_VARIATION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MAGNETOMETER_ACCURACY","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MOTION_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_MOTION_STATE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_MULTIVALUE_SWITCH_STATE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_NMEA_SENTENCE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ORIENTATION_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_POSITION_DILUTION_OF_PRECISION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_POSTALCODE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_QUADRANT_ANGLE_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_QUATERNION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_RELATIVE_HUMIDITY_PERCENT","features":[383,376]},{"name":"SENSOR_DATA_TYPE_RESISTANCE_OHMS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_RFID_TAG_40_BIT","features":[383,376]},{"name":"SENSOR_DATA_TYPE_ROTATION_MATRIX","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_AZIMUTH","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ELEVATION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_ID","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_PRNS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_IN_VIEW_STN_RATIO","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_COUNT","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SATELLITES_USED_PRNS_AND_CONSTELLATIONS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SCANNER_GUID","features":[383]},{"name":"SENSOR_DATA_TYPE_SIMPLE_DEVICE_ORIENTATION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SPEED_KNOTS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_SPEED_METERS_PER_SECOND","features":[383,376]},{"name":"SENSOR_DATA_TYPE_STATE_PROVINCE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_STRAIN","features":[383,376]},{"name":"SENSOR_DATA_TYPE_TEMPERATURE_CELSIUS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_TILT_X_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_TILT_Y_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_TILT_Z_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_TIMESTAMP","features":[383,376]},{"name":"SENSOR_DATA_TYPE_TOUCH_STATE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_TRUE_HEADING_DEGREES","features":[383,376]},{"name":"SENSOR_DATA_TYPE_VERTICAL_DILUTION_OF_PRECISION","features":[383,376]},{"name":"SENSOR_DATA_TYPE_VOLTAGE_VOLTS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_WEIGHT_KILOGRAMS","features":[383,376]},{"name":"SENSOR_DATA_TYPE_WIND_DIRECTION_DEGREES_ANTICLOCKWISE","features":[383,376]},{"name":"SENSOR_DATA_TYPE_WIND_SPEED_METERS_PER_SECOND","features":[383,376]},{"name":"SENSOR_ERROR_PARAMETER_COMMON_GUID","features":[383]},{"name":"SENSOR_EVENT_ACCELEROMETER_SHAKE","features":[383]},{"name":"SENSOR_EVENT_DATA_UPDATED","features":[383]},{"name":"SENSOR_EVENT_PARAMETER_COMMON_GUID","features":[383]},{"name":"SENSOR_EVENT_PARAMETER_EVENT_ID","features":[383,376]},{"name":"SENSOR_EVENT_PARAMETER_STATE","features":[383,376]},{"name":"SENSOR_EVENT_PROPERTY_CHANGED","features":[383]},{"name":"SENSOR_EVENT_STATE_CHANGED","features":[383]},{"name":"SENSOR_PROPERTY_ACCURACY","features":[383,376]},{"name":"SENSOR_PROPERTY_CHANGE_SENSITIVITY","features":[383,376]},{"name":"SENSOR_PROPERTY_CLEAR_ASSISTANCE_DATA","features":[383,376]},{"name":"SENSOR_PROPERTY_COMMON_GUID","features":[383]},{"name":"SENSOR_PROPERTY_CONNECTION_TYPE","features":[383,376]},{"name":"SENSOR_PROPERTY_CURRENT_REPORT_INTERVAL","features":[383,376]},{"name":"SENSOR_PROPERTY_DESCRIPTION","features":[383,376]},{"name":"SENSOR_PROPERTY_DEVICE_PATH","features":[383,376]},{"name":"SENSOR_PROPERTY_FRIENDLY_NAME","features":[383,376]},{"name":"SENSOR_PROPERTY_HID_USAGE","features":[383,376]},{"name":"SENSOR_PROPERTY_LIGHT_RESPONSE_CURVE","features":[383,376]},{"name":"SENSOR_PROPERTY_LIST","features":[383,376]},{"name":"SENSOR_PROPERTY_LIST_HEADER_SIZE","features":[383]},{"name":"SENSOR_PROPERTY_LOCATION_DESIRED_ACCURACY","features":[383,376]},{"name":"SENSOR_PROPERTY_MANUFACTURER","features":[383,376]},{"name":"SENSOR_PROPERTY_MIN_REPORT_INTERVAL","features":[383,376]},{"name":"SENSOR_PROPERTY_MODEL","features":[383,376]},{"name":"SENSOR_PROPERTY_PERSISTENT_UNIQUE_ID","features":[383,376]},{"name":"SENSOR_PROPERTY_RADIO_STATE","features":[383,376]},{"name":"SENSOR_PROPERTY_RADIO_STATE_PREVIOUS","features":[383,376]},{"name":"SENSOR_PROPERTY_RANGE_MAXIMUM","features":[383,376]},{"name":"SENSOR_PROPERTY_RANGE_MINIMUM","features":[383,376]},{"name":"SENSOR_PROPERTY_RESOLUTION","features":[383,376]},{"name":"SENSOR_PROPERTY_SERIAL_NUMBER","features":[383,376]},{"name":"SENSOR_PROPERTY_STATE","features":[383,376]},{"name":"SENSOR_PROPERTY_TEST_GUID","features":[383]},{"name":"SENSOR_PROPERTY_TURN_ON_OFF_NMEA","features":[383,376]},{"name":"SENSOR_PROPERTY_TYPE","features":[383,376]},{"name":"SENSOR_STATE","features":[383]},{"name":"SENSOR_STATE_ACCESS_DENIED","features":[383]},{"name":"SENSOR_STATE_ERROR","features":[383]},{"name":"SENSOR_STATE_INITIALIZING","features":[383]},{"name":"SENSOR_STATE_MAX","features":[383]},{"name":"SENSOR_STATE_MIN","features":[383]},{"name":"SENSOR_STATE_NOT_AVAILABLE","features":[383]},{"name":"SENSOR_STATE_NO_DATA","features":[383]},{"name":"SENSOR_STATE_READY","features":[383]},{"name":"SENSOR_TYPE_ACCELEROMETER_1D","features":[383]},{"name":"SENSOR_TYPE_ACCELEROMETER_2D","features":[383]},{"name":"SENSOR_TYPE_ACCELEROMETER_3D","features":[383]},{"name":"SENSOR_TYPE_AGGREGATED_DEVICE_ORIENTATION","features":[383]},{"name":"SENSOR_TYPE_AGGREGATED_QUADRANT_ORIENTATION","features":[383]},{"name":"SENSOR_TYPE_AGGREGATED_SIMPLE_DEVICE_ORIENTATION","features":[383]},{"name":"SENSOR_TYPE_AMBIENT_LIGHT","features":[383]},{"name":"SENSOR_TYPE_BARCODE_SCANNER","features":[383]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH","features":[383]},{"name":"SENSOR_TYPE_BOOLEAN_SWITCH_ARRAY","features":[383]},{"name":"SENSOR_TYPE_CAPACITANCE","features":[383]},{"name":"SENSOR_TYPE_COMPASS_1D","features":[383]},{"name":"SENSOR_TYPE_COMPASS_2D","features":[383]},{"name":"SENSOR_TYPE_COMPASS_3D","features":[383]},{"name":"SENSOR_TYPE_CURRENT","features":[383]},{"name":"SENSOR_TYPE_CUSTOM","features":[383]},{"name":"SENSOR_TYPE_DISTANCE_1D","features":[383]},{"name":"SENSOR_TYPE_DISTANCE_2D","features":[383]},{"name":"SENSOR_TYPE_DISTANCE_3D","features":[383]},{"name":"SENSOR_TYPE_ELECTRICAL_POWER","features":[383]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_ATMOSPHERIC_PRESSURE","features":[383]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_HUMIDITY","features":[383]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_TEMPERATURE","features":[383]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_DIRECTION","features":[383]},{"name":"SENSOR_TYPE_ENVIRONMENTAL_WIND_SPEED","features":[383]},{"name":"SENSOR_TYPE_FORCE","features":[383]},{"name":"SENSOR_TYPE_FREQUENCY","features":[383]},{"name":"SENSOR_TYPE_GYROMETER_1D","features":[383]},{"name":"SENSOR_TYPE_GYROMETER_2D","features":[383]},{"name":"SENSOR_TYPE_GYROMETER_3D","features":[383]},{"name":"SENSOR_TYPE_HUMAN_PRESENCE","features":[383]},{"name":"SENSOR_TYPE_HUMAN_PROXIMITY","features":[383]},{"name":"SENSOR_TYPE_INCLINOMETER_1D","features":[383]},{"name":"SENSOR_TYPE_INCLINOMETER_2D","features":[383]},{"name":"SENSOR_TYPE_INCLINOMETER_3D","features":[383]},{"name":"SENSOR_TYPE_INDUCTANCE","features":[383]},{"name":"SENSOR_TYPE_LOCATION_BROADCAST","features":[383]},{"name":"SENSOR_TYPE_LOCATION_DEAD_RECKONING","features":[383]},{"name":"SENSOR_TYPE_LOCATION_GPS","features":[383]},{"name":"SENSOR_TYPE_LOCATION_LOOKUP","features":[383]},{"name":"SENSOR_TYPE_LOCATION_OTHER","features":[383]},{"name":"SENSOR_TYPE_LOCATION_STATIC","features":[383]},{"name":"SENSOR_TYPE_LOCATION_TRIANGULATION","features":[383]},{"name":"SENSOR_TYPE_MOTION_DETECTOR","features":[383]},{"name":"SENSOR_TYPE_MULTIVALUE_SWITCH","features":[383]},{"name":"SENSOR_TYPE_POTENTIOMETER","features":[383]},{"name":"SENSOR_TYPE_PRESSURE","features":[383]},{"name":"SENSOR_TYPE_RESISTANCE","features":[383]},{"name":"SENSOR_TYPE_RFID_SCANNER","features":[383]},{"name":"SENSOR_TYPE_SCALE","features":[383]},{"name":"SENSOR_TYPE_SPEEDOMETER","features":[383]},{"name":"SENSOR_TYPE_STRAIN","features":[383]},{"name":"SENSOR_TYPE_TOUCH","features":[383]},{"name":"SENSOR_TYPE_UNKNOWN","features":[383]},{"name":"SENSOR_TYPE_VOLTAGE","features":[383]},{"name":"SENSOR_VALUE_PAIR","features":[383,376]},{"name":"SIMPLE_DEVICE_ORIENTATION","features":[383]},{"name":"SIMPLE_DEVICE_ORIENTATION_NOT_ROTATED","features":[383]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_180","features":[383]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_270","features":[383]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_90","features":[383]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_DOWN","features":[383]},{"name":"SIMPLE_DEVICE_ORIENTATION_ROTATED_FACE_UP","features":[383]},{"name":"Sensor","features":[383]},{"name":"SensorCollection","features":[383]},{"name":"SensorCollectionGetAt","features":[383,305,376]},{"name":"SensorConnectionType","features":[383]},{"name":"SensorConnectionType_Attached","features":[383]},{"name":"SensorConnectionType_External","features":[383]},{"name":"SensorConnectionType_Integrated","features":[383]},{"name":"SensorDataReport","features":[383]},{"name":"SensorManager","features":[383]},{"name":"SensorState","features":[383]},{"name":"SensorState_Active","features":[383]},{"name":"SensorState_Error","features":[383]},{"name":"SensorState_Idle","features":[383]},{"name":"SensorState_Initializing","features":[383]},{"name":"SerializationBufferAllocate","features":[383,305]},{"name":"SerializationBufferFree","features":[383]},{"name":"SimpleDeviceOrientation","features":[383]},{"name":"SimpleDeviceOrientation_Facedown","features":[383]},{"name":"SimpleDeviceOrientation_Faceup","features":[383]},{"name":"SimpleDeviceOrientation_NotRotated","features":[383]},{"name":"SimpleDeviceOrientation_Rotated180DegreesCounterclockwise","features":[383]},{"name":"SimpleDeviceOrientation_Rotated270DegreesCounterclockwise","features":[383]},{"name":"SimpleDeviceOrientation_Rotated90DegreesCounterclockwise","features":[383]},{"name":"VEC3D","features":[383]}],"387":[{"name":"CDB_REPORT_BITS","features":[384]},{"name":"CDB_REPORT_BYTES","features":[384]},{"name":"COMDB_MAX_PORTS_ARBITRATED","features":[384]},{"name":"COMDB_MIN_PORTS_ARBITRATED","features":[384]},{"name":"ComDBClaimNextFreePort","features":[384]},{"name":"ComDBClaimPort","features":[384,305]},{"name":"ComDBClose","features":[384]},{"name":"ComDBGetCurrentPortUsage","features":[384]},{"name":"ComDBOpen","features":[384]},{"name":"ComDBReleasePort","features":[384]},{"name":"ComDBResizeDatabase","features":[384]},{"name":"DEVPKEY_DeviceInterface_Serial_PortName","features":[303,384]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbProductId","features":[303,384]},{"name":"DEVPKEY_DeviceInterface_Serial_UsbVendorId","features":[303,384]},{"name":"EVEN_PARITY","features":[384]},{"name":"HCOMDB","features":[384]},{"name":"IOCTL_INTERNAL_SERENUM_REMOVE_SELF","features":[384]},{"name":"IOCTL_SERIAL_APPLY_DEFAULT_CONFIGURATION","features":[384]},{"name":"IOCTL_SERIAL_CLEAR_STATS","features":[384]},{"name":"IOCTL_SERIAL_CLR_DTR","features":[384]},{"name":"IOCTL_SERIAL_CLR_RTS","features":[384]},{"name":"IOCTL_SERIAL_CONFIG_SIZE","features":[384]},{"name":"IOCTL_SERIAL_GET_BAUD_RATE","features":[384]},{"name":"IOCTL_SERIAL_GET_CHARS","features":[384]},{"name":"IOCTL_SERIAL_GET_COMMCONFIG","features":[384]},{"name":"IOCTL_SERIAL_GET_COMMSTATUS","features":[384]},{"name":"IOCTL_SERIAL_GET_DTRRTS","features":[384]},{"name":"IOCTL_SERIAL_GET_HANDFLOW","features":[384]},{"name":"IOCTL_SERIAL_GET_LINE_CONTROL","features":[384]},{"name":"IOCTL_SERIAL_GET_MODEMSTATUS","features":[384]},{"name":"IOCTL_SERIAL_GET_MODEM_CONTROL","features":[384]},{"name":"IOCTL_SERIAL_GET_PROPERTIES","features":[384]},{"name":"IOCTL_SERIAL_GET_STATS","features":[384]},{"name":"IOCTL_SERIAL_GET_TIMEOUTS","features":[384]},{"name":"IOCTL_SERIAL_GET_WAIT_MASK","features":[384]},{"name":"IOCTL_SERIAL_IMMEDIATE_CHAR","features":[384]},{"name":"IOCTL_SERIAL_INTERNAL_BASIC_SETTINGS","features":[384]},{"name":"IOCTL_SERIAL_INTERNAL_CANCEL_WAIT_WAKE","features":[384]},{"name":"IOCTL_SERIAL_INTERNAL_DO_WAIT_WAKE","features":[384]},{"name":"IOCTL_SERIAL_INTERNAL_RESTORE_SETTINGS","features":[384]},{"name":"IOCTL_SERIAL_PURGE","features":[384]},{"name":"IOCTL_SERIAL_RESET_DEVICE","features":[384]},{"name":"IOCTL_SERIAL_SET_BAUD_RATE","features":[384]},{"name":"IOCTL_SERIAL_SET_BREAK_OFF","features":[384]},{"name":"IOCTL_SERIAL_SET_BREAK_ON","features":[384]},{"name":"IOCTL_SERIAL_SET_CHARS","features":[384]},{"name":"IOCTL_SERIAL_SET_COMMCONFIG","features":[384]},{"name":"IOCTL_SERIAL_SET_DTR","features":[384]},{"name":"IOCTL_SERIAL_SET_FIFO_CONTROL","features":[384]},{"name":"IOCTL_SERIAL_SET_HANDFLOW","features":[384]},{"name":"IOCTL_SERIAL_SET_INTERVAL_TIMER_RESOLUTION","features":[384]},{"name":"IOCTL_SERIAL_SET_LINE_CONTROL","features":[384]},{"name":"IOCTL_SERIAL_SET_MODEM_CONTROL","features":[384]},{"name":"IOCTL_SERIAL_SET_QUEUE_SIZE","features":[384]},{"name":"IOCTL_SERIAL_SET_RTS","features":[384]},{"name":"IOCTL_SERIAL_SET_TIMEOUTS","features":[384]},{"name":"IOCTL_SERIAL_SET_WAIT_MASK","features":[384]},{"name":"IOCTL_SERIAL_SET_XOFF","features":[384]},{"name":"IOCTL_SERIAL_SET_XON","features":[384]},{"name":"IOCTL_SERIAL_WAIT_ON_MASK","features":[384]},{"name":"IOCTL_SERIAL_XOFF_COUNTER","features":[384]},{"name":"MARK_PARITY","features":[384]},{"name":"NO_PARITY","features":[384]},{"name":"ODD_PARITY","features":[384]},{"name":"PSERENUM_READPORT","features":[384]},{"name":"PSERENUM_WRITEPORT","features":[384]},{"name":"SERENUM_PORTION","features":[384]},{"name":"SERENUM_PORT_DESC","features":[384]},{"name":"SERENUM_PORT_PARAMETERS","features":[384]},{"name":"SERIALCONFIG","features":[384]},{"name":"SERIALPERF_STATS","features":[384]},{"name":"SERIAL_BASIC_SETTINGS","features":[384]},{"name":"SERIAL_BAUD_RATE","features":[384]},{"name":"SERIAL_CHARS","features":[384]},{"name":"SERIAL_COMMPROP","features":[384]},{"name":"SERIAL_EV_BREAK","features":[384]},{"name":"SERIAL_EV_CTS","features":[384]},{"name":"SERIAL_EV_DSR","features":[384]},{"name":"SERIAL_EV_ERR","features":[384]},{"name":"SERIAL_EV_EVENT1","features":[384]},{"name":"SERIAL_EV_EVENT2","features":[384]},{"name":"SERIAL_EV_PERR","features":[384]},{"name":"SERIAL_EV_RING","features":[384]},{"name":"SERIAL_EV_RLSD","features":[384]},{"name":"SERIAL_EV_RX80FULL","features":[384]},{"name":"SERIAL_EV_RXCHAR","features":[384]},{"name":"SERIAL_EV_RXFLAG","features":[384]},{"name":"SERIAL_EV_TXEMPTY","features":[384]},{"name":"SERIAL_HANDFLOW","features":[384]},{"name":"SERIAL_LINE_CONTROL","features":[384]},{"name":"SERIAL_LSRMST_ESCAPE","features":[384]},{"name":"SERIAL_LSRMST_LSR_DATA","features":[384]},{"name":"SERIAL_LSRMST_LSR_NODATA","features":[384]},{"name":"SERIAL_LSRMST_MST","features":[384]},{"name":"SERIAL_PURGE_RXABORT","features":[384]},{"name":"SERIAL_PURGE_RXCLEAR","features":[384]},{"name":"SERIAL_PURGE_TXABORT","features":[384]},{"name":"SERIAL_PURGE_TXCLEAR","features":[384]},{"name":"SERIAL_QUEUE_SIZE","features":[384]},{"name":"SERIAL_STATUS","features":[384,305]},{"name":"SERIAL_TIMEOUTS","features":[384]},{"name":"SERIAL_XOFF_COUNTER","features":[384]},{"name":"SPACE_PARITY","features":[384]},{"name":"STOP_BITS_1_5","features":[384]},{"name":"STOP_BITS_2","features":[384]},{"name":"STOP_BIT_1","features":[384]},{"name":"SerenumFirstHalf","features":[384]},{"name":"SerenumSecondHalf","features":[384]},{"name":"SerenumWhole","features":[384]}],"388":[{"name":"ACDGE_GROUP_REMOVED","features":[385]},{"name":"ACDGE_NEW_GROUP","features":[385]},{"name":"ACDGROUP_EVENT","features":[385]},{"name":"ACDQE_NEW_QUEUE","features":[385]},{"name":"ACDQE_QUEUE_REMOVED","features":[385]},{"name":"ACDQUEUE_EVENT","features":[385]},{"name":"ACS_ADDRESSDEVICESPECIFIC","features":[385]},{"name":"ACS_LINEDEVICESPECIFIC","features":[385]},{"name":"ACS_PERMANENTDEVICEGUID","features":[385]},{"name":"ACS_PROTOCOL","features":[385]},{"name":"ACS_PROVIDERSPECIFIC","features":[385]},{"name":"ACS_SWITCHSPECIFIC","features":[385]},{"name":"AC_ADDRESSCAPFLAGS","features":[385]},{"name":"AC_ADDRESSFEATURES","features":[385]},{"name":"AC_ADDRESSID","features":[385]},{"name":"AC_ADDRESSTYPES","features":[385]},{"name":"AC_ANSWERMODES","features":[385]},{"name":"AC_BEARERMODES","features":[385]},{"name":"AC_CALLCOMPLETIONCONDITIONS","features":[385]},{"name":"AC_CALLCOMPLETIONMODES","features":[385]},{"name":"AC_CALLEDIDSUPPORT","features":[385]},{"name":"AC_CALLERIDSUPPORT","features":[385]},{"name":"AC_CALLFEATURES1","features":[385]},{"name":"AC_CALLFEATURES2","features":[385]},{"name":"AC_CONNECTEDIDSUPPORT","features":[385]},{"name":"AC_DEVCAPFLAGS","features":[385]},{"name":"AC_FORWARDMODES","features":[385]},{"name":"AC_GATHERDIGITSMAXTIMEOUT","features":[385]},{"name":"AC_GATHERDIGITSMINTIMEOUT","features":[385]},{"name":"AC_GENERATEDIGITDEFAULTDURATION","features":[385]},{"name":"AC_GENERATEDIGITMAXDURATION","features":[385]},{"name":"AC_GENERATEDIGITMINDURATION","features":[385]},{"name":"AC_GENERATEDIGITSUPPORT","features":[385]},{"name":"AC_GENERATETONEMAXNUMFREQ","features":[385]},{"name":"AC_GENERATETONEMODES","features":[385]},{"name":"AC_LINEFEATURES","features":[385]},{"name":"AC_LINEID","features":[385]},{"name":"AC_MAXACTIVECALLS","features":[385]},{"name":"AC_MAXCALLCOMPLETIONS","features":[385]},{"name":"AC_MAXCALLDATASIZE","features":[385]},{"name":"AC_MAXFORWARDENTRIES","features":[385]},{"name":"AC_MAXFWDNUMRINGS","features":[385]},{"name":"AC_MAXNUMCONFERENCE","features":[385]},{"name":"AC_MAXNUMTRANSCONF","features":[385]},{"name":"AC_MAXONHOLDCALLS","features":[385]},{"name":"AC_MAXONHOLDPENDINGCALLS","features":[385]},{"name":"AC_MAXSPECIFICENTRIES","features":[385]},{"name":"AC_MINFWDNUMRINGS","features":[385]},{"name":"AC_MONITORDIGITSUPPORT","features":[385]},{"name":"AC_MONITORTONEMAXNUMENTRIES","features":[385]},{"name":"AC_MONITORTONEMAXNUMFREQ","features":[385]},{"name":"AC_PARKSUPPORT","features":[385]},{"name":"AC_PERMANENTDEVICEID","features":[385]},{"name":"AC_PREDICTIVEAUTOTRANSFERSTATES","features":[385]},{"name":"AC_REDIRECTINGIDSUPPORT","features":[385]},{"name":"AC_REDIRECTIONIDSUPPORT","features":[385]},{"name":"AC_REMOVEFROMCONFCAPS","features":[385]},{"name":"AC_REMOVEFROMCONFSTATE","features":[385]},{"name":"AC_SETTABLEDEVSTATUS","features":[385]},{"name":"AC_TRANSFERMODES","features":[385]},{"name":"ADDRALIAS","features":[385]},{"name":"ADDRESS_CAPABILITY","features":[385]},{"name":"ADDRESS_CAPABILITY_STRING","features":[385]},{"name":"ADDRESS_EVENT","features":[385]},{"name":"ADDRESS_STATE","features":[385]},{"name":"ADDRESS_TERMINAL_AVAILABLE","features":[385]},{"name":"ADDRESS_TERMINAL_UNAVAILABLE","features":[385]},{"name":"AE_BUSY_ACD","features":[385]},{"name":"AE_BUSY_INCOMING","features":[385]},{"name":"AE_BUSY_OUTGOING","features":[385]},{"name":"AE_CAPSCHANGE","features":[385]},{"name":"AE_CONFIGCHANGE","features":[385]},{"name":"AE_FORWARD","features":[385]},{"name":"AE_LASTITEM","features":[385]},{"name":"AE_MSGWAITOFF","features":[385]},{"name":"AE_MSGWAITON","features":[385]},{"name":"AE_NEWTERMINAL","features":[385]},{"name":"AE_NOT_READY","features":[385]},{"name":"AE_READY","features":[385]},{"name":"AE_REMOVETERMINAL","features":[385]},{"name":"AE_RINGING","features":[385]},{"name":"AE_STATE","features":[385]},{"name":"AE_UNKNOWN","features":[385]},{"name":"AGENTHANDLER_EVENT","features":[385]},{"name":"AGENT_EVENT","features":[385]},{"name":"AGENT_SESSION_EVENT","features":[385]},{"name":"AGENT_SESSION_STATE","features":[385]},{"name":"AGENT_STATE","features":[385]},{"name":"AHE_AGENTHANDLER_REMOVED","features":[385]},{"name":"AHE_NEW_AGENTHANDLER","features":[385]},{"name":"ASE_BUSY","features":[385]},{"name":"ASE_END","features":[385]},{"name":"ASE_NEW_SESSION","features":[385]},{"name":"ASE_NOT_READY","features":[385]},{"name":"ASE_READY","features":[385]},{"name":"ASE_WRAPUP","features":[385]},{"name":"ASST_BUSY_ON_CALL","features":[385]},{"name":"ASST_BUSY_WRAPUP","features":[385]},{"name":"ASST_NOT_READY","features":[385]},{"name":"ASST_READY","features":[385]},{"name":"ASST_SESSION_ENDED","features":[385]},{"name":"ASYNC_COMPLETION","features":[385]},{"name":"AS_BUSY_ACD","features":[385]},{"name":"AS_BUSY_INCOMING","features":[385]},{"name":"AS_BUSY_OUTGOING","features":[385]},{"name":"AS_INSERVICE","features":[385]},{"name":"AS_NOT_READY","features":[385]},{"name":"AS_OUTOFSERVICE","features":[385]},{"name":"AS_READY","features":[385]},{"name":"AS_UNKNOWN","features":[385]},{"name":"CALLHUB_EVENT","features":[385]},{"name":"CALLHUB_STATE","features":[385]},{"name":"CALLINFOCHANGE_CAUSE","features":[385]},{"name":"CALLINFO_BUFFER","features":[385]},{"name":"CALLINFO_LONG","features":[385]},{"name":"CALLINFO_STRING","features":[385]},{"name":"CALL_CAUSE_BAD_DEVICE","features":[385]},{"name":"CALL_CAUSE_CONNECT_FAIL","features":[385]},{"name":"CALL_CAUSE_LOCAL_REQUEST","features":[385]},{"name":"CALL_CAUSE_MEDIA_RECOVERED","features":[385]},{"name":"CALL_CAUSE_MEDIA_TIMEOUT","features":[385]},{"name":"CALL_CAUSE_QUALITY_OF_SERVICE","features":[385]},{"name":"CALL_CAUSE_REMOTE_REQUEST","features":[385]},{"name":"CALL_CAUSE_UNKNOWN","features":[385]},{"name":"CALL_MEDIA_EVENT","features":[385]},{"name":"CALL_MEDIA_EVENT_CAUSE","features":[385]},{"name":"CALL_NEW_STREAM","features":[385]},{"name":"CALL_NOTIFICATION_EVENT","features":[385]},{"name":"CALL_PRIVILEGE","features":[385]},{"name":"CALL_STATE","features":[385]},{"name":"CALL_STATE_EVENT_CAUSE","features":[385]},{"name":"CALL_STREAM_ACTIVE","features":[385]},{"name":"CALL_STREAM_FAIL","features":[385]},{"name":"CALL_STREAM_INACTIVE","features":[385]},{"name":"CALL_STREAM_NOT_USED","features":[385]},{"name":"CALL_TERMINAL_FAIL","features":[385]},{"name":"CEC_DISCONNECT_BADADDRESS","features":[385]},{"name":"CEC_DISCONNECT_BLOCKED","features":[385]},{"name":"CEC_DISCONNECT_BUSY","features":[385]},{"name":"CEC_DISCONNECT_CANCELLED","features":[385]},{"name":"CEC_DISCONNECT_FAILED","features":[385]},{"name":"CEC_DISCONNECT_NOANSWER","features":[385]},{"name":"CEC_DISCONNECT_NORMAL","features":[385]},{"name":"CEC_DISCONNECT_REJECTED","features":[385]},{"name":"CEC_NONE","features":[385]},{"name":"CHE_CALLHUBIDLE","features":[385]},{"name":"CHE_CALLHUBNEW","features":[385]},{"name":"CHE_CALLJOIN","features":[385]},{"name":"CHE_CALLLEAVE","features":[385]},{"name":"CHE_LASTITEM","features":[385]},{"name":"CHS_ACTIVE","features":[385]},{"name":"CHS_IDLE","features":[385]},{"name":"CIB_CALLDATABUFFER","features":[385]},{"name":"CIB_CHARGINGINFOBUFFER","features":[385]},{"name":"CIB_DEVSPECIFICBUFFER","features":[385]},{"name":"CIB_HIGHLEVELCOMPATIBILITYBUFFER","features":[385]},{"name":"CIB_LOWLEVELCOMPATIBILITYBUFFER","features":[385]},{"name":"CIB_USERUSERINFO","features":[385]},{"name":"CIC_APPSPECIFIC","features":[385]},{"name":"CIC_BEARERMODE","features":[385]},{"name":"CIC_CALLDATA","features":[385]},{"name":"CIC_CALLEDID","features":[385]},{"name":"CIC_CALLERID","features":[385]},{"name":"CIC_CALLID","features":[385]},{"name":"CIC_CHARGINGINFO","features":[385]},{"name":"CIC_COMPLETIONID","features":[385]},{"name":"CIC_CONNECTEDID","features":[385]},{"name":"CIC_DEVSPECIFIC","features":[385]},{"name":"CIC_HIGHLEVELCOMP","features":[385]},{"name":"CIC_LASTITEM","features":[385]},{"name":"CIC_LOWLEVELCOMP","features":[385]},{"name":"CIC_MEDIATYPE","features":[385]},{"name":"CIC_NUMMONITORS","features":[385]},{"name":"CIC_NUMOWNERDECR","features":[385]},{"name":"CIC_NUMOWNERINCR","features":[385]},{"name":"CIC_ORIGIN","features":[385]},{"name":"CIC_OTHER","features":[385]},{"name":"CIC_PRIVILEGE","features":[385]},{"name":"CIC_RATE","features":[385]},{"name":"CIC_REASON","features":[385]},{"name":"CIC_REDIRECTINGID","features":[385]},{"name":"CIC_REDIRECTIONID","features":[385]},{"name":"CIC_RELATEDCALLID","features":[385]},{"name":"CIC_TREATMENT","features":[385]},{"name":"CIC_TRUNK","features":[385]},{"name":"CIC_USERUSERINFO","features":[385]},{"name":"CIL_APPSPECIFIC","features":[385]},{"name":"CIL_BEARERMODE","features":[385]},{"name":"CIL_CALLEDIDADDRESSTYPE","features":[385]},{"name":"CIL_CALLERIDADDRESSTYPE","features":[385]},{"name":"CIL_CALLID","features":[385]},{"name":"CIL_CALLPARAMSFLAGS","features":[385]},{"name":"CIL_CALLTREATMENT","features":[385]},{"name":"CIL_COMPLETIONID","features":[385]},{"name":"CIL_CONNECTEDIDADDRESSTYPE","features":[385]},{"name":"CIL_COUNTRYCODE","features":[385]},{"name":"CIL_GENERATEDIGITDURATION","features":[385]},{"name":"CIL_MAXRATE","features":[385]},{"name":"CIL_MEDIATYPESAVAILABLE","features":[385]},{"name":"CIL_MINRATE","features":[385]},{"name":"CIL_MONITORDIGITMODES","features":[385]},{"name":"CIL_MONITORMEDIAMODES","features":[385]},{"name":"CIL_NUMBEROFMONITORS","features":[385]},{"name":"CIL_NUMBEROFOWNERS","features":[385]},{"name":"CIL_ORIGIN","features":[385]},{"name":"CIL_RATE","features":[385]},{"name":"CIL_REASON","features":[385]},{"name":"CIL_REDIRECTINGIDADDRESSTYPE","features":[385]},{"name":"CIL_REDIRECTIONIDADDRESSTYPE","features":[385]},{"name":"CIL_RELATEDCALLID","features":[385]},{"name":"CIL_TRUNK","features":[385]},{"name":"CIS_CALLEDIDNAME","features":[385]},{"name":"CIS_CALLEDIDNUMBER","features":[385]},{"name":"CIS_CALLEDPARTYFRIENDLYNAME","features":[385]},{"name":"CIS_CALLERIDNAME","features":[385]},{"name":"CIS_CALLERIDNUMBER","features":[385]},{"name":"CIS_CALLINGPARTYID","features":[385]},{"name":"CIS_COMMENT","features":[385]},{"name":"CIS_CONNECTEDIDNAME","features":[385]},{"name":"CIS_CONNECTEDIDNUMBER","features":[385]},{"name":"CIS_DISPLAYABLEADDRESS","features":[385]},{"name":"CIS_REDIRECTINGIDNAME","features":[385]},{"name":"CIS_REDIRECTINGIDNUMBER","features":[385]},{"name":"CIS_REDIRECTIONIDNAME","features":[385]},{"name":"CIS_REDIRECTIONIDNUMBER","features":[385]},{"name":"CMC_BAD_DEVICE","features":[385]},{"name":"CMC_CONNECT_FAIL","features":[385]},{"name":"CMC_LOCAL_REQUEST","features":[385]},{"name":"CMC_MEDIA_RECOVERED","features":[385]},{"name":"CMC_MEDIA_TIMEOUT","features":[385]},{"name":"CMC_QUALITY_OF_SERVICE","features":[385]},{"name":"CMC_REMOTE_REQUEST","features":[385]},{"name":"CMC_UNKNOWN","features":[385]},{"name":"CME_LASTITEM","features":[385]},{"name":"CME_NEW_STREAM","features":[385]},{"name":"CME_STREAM_ACTIVE","features":[385]},{"name":"CME_STREAM_FAIL","features":[385]},{"name":"CME_STREAM_INACTIVE","features":[385]},{"name":"CME_STREAM_NOT_USED","features":[385]},{"name":"CME_TERMINAL_FAIL","features":[385]},{"name":"CNE_LASTITEM","features":[385]},{"name":"CNE_MONITOR","features":[385]},{"name":"CNE_OWNER","features":[385]},{"name":"CP_MONITOR","features":[385]},{"name":"CP_OWNER","features":[385]},{"name":"CS_CONNECTED","features":[385]},{"name":"CS_DISCONNECTED","features":[385]},{"name":"CS_HOLD","features":[385]},{"name":"CS_IDLE","features":[385]},{"name":"CS_INPROGRESS","features":[385]},{"name":"CS_LASTITEM","features":[385]},{"name":"CS_OFFERING","features":[385]},{"name":"CS_QUEUED","features":[385]},{"name":"DC_NOANSWER","features":[385]},{"name":"DC_NORMAL","features":[385]},{"name":"DC_REJECTED","features":[385]},{"name":"DIRECTORY_OBJECT_TYPE","features":[385]},{"name":"DIRECTORY_TYPE","features":[385]},{"name":"DISCONNECT_CODE","features":[385]},{"name":"DISPIDMASK","features":[385]},{"name":"DTR","features":[385]},{"name":"DT_ILS","features":[385]},{"name":"DT_NTDS","features":[385]},{"name":"DispatchMapper","features":[385]},{"name":"FDS_NOTSUPPORTED","features":[385]},{"name":"FDS_SUPPORTED","features":[385]},{"name":"FDS_UNKNOWN","features":[385]},{"name":"FINISH_MODE","features":[385]},{"name":"FM_ASCONFERENCE","features":[385]},{"name":"FM_ASTRANSFER","features":[385]},{"name":"FTEC_END_OF_FILE","features":[385]},{"name":"FTEC_NORMAL","features":[385]},{"name":"FTEC_READ_ERROR","features":[385]},{"name":"FTEC_WRITE_ERROR","features":[385]},{"name":"FT_STATE_EVENT_CAUSE","features":[385]},{"name":"FULLDUPLEX_SUPPORT","features":[385]},{"name":"GETTNEFSTREAMCODEPAGE","features":[385]},{"name":"GetTnefStreamCodepage","features":[385,356]},{"name":"HDRVCALL","features":[385]},{"name":"HDRVDIALOGINSTANCE","features":[385]},{"name":"HDRVLINE","features":[385]},{"name":"HDRVMSPLINE","features":[385]},{"name":"HDRVPHONE","features":[385]},{"name":"HPROVIDER","features":[385]},{"name":"HTAPICALL","features":[385]},{"name":"HTAPILINE","features":[385]},{"name":"HTAPIPHONE","features":[385]},{"name":"IDISPADDRESS","features":[385]},{"name":"IDISPADDRESSCAPABILITIES","features":[385]},{"name":"IDISPADDRESSTRANSLATION","features":[385]},{"name":"IDISPAGGREGATEDMSPADDRESSOBJ","features":[385]},{"name":"IDISPAGGREGATEDMSPCALLOBJ","features":[385]},{"name":"IDISPAPC","features":[385]},{"name":"IDISPBASICCALLCONTROL","features":[385]},{"name":"IDISPCALLINFO","features":[385]},{"name":"IDISPDIRECTORY","features":[385]},{"name":"IDISPDIROBJCONFERENCE","features":[385]},{"name":"IDISPDIROBJECT","features":[385]},{"name":"IDISPDIROBJUSER","features":[385]},{"name":"IDISPFILETRACK","features":[385]},{"name":"IDISPILSCONFIG","features":[385]},{"name":"IDISPLEGACYADDRESSMEDIACONTROL","features":[385]},{"name":"IDISPLEGACYCALLMEDIACONTROL","features":[385]},{"name":"IDISPMEDIACONTROL","features":[385]},{"name":"IDISPMEDIAPLAYBACK","features":[385]},{"name":"IDISPMEDIARECORD","features":[385]},{"name":"IDISPMEDIASUPPORT","features":[385]},{"name":"IDISPMULTITRACK","features":[385]},{"name":"IDISPPHONE","features":[385]},{"name":"IDISPTAPI","features":[385]},{"name":"IDISPTAPICALLCENTER","features":[385]},{"name":"IEnumACDGroup","features":[385]},{"name":"IEnumAddress","features":[385]},{"name":"IEnumAgent","features":[385]},{"name":"IEnumAgentHandler","features":[385]},{"name":"IEnumAgentSession","features":[385]},{"name":"IEnumBstr","features":[385]},{"name":"IEnumCall","features":[385]},{"name":"IEnumCallHub","features":[385]},{"name":"IEnumCallingCard","features":[385]},{"name":"IEnumDialableAddrs","features":[385]},{"name":"IEnumDirectory","features":[385]},{"name":"IEnumDirectoryObject","features":[385]},{"name":"IEnumLocation","features":[385]},{"name":"IEnumMcastScope","features":[385]},{"name":"IEnumPhone","features":[385]},{"name":"IEnumPluggableSuperclassInfo","features":[385]},{"name":"IEnumPluggableTerminalClassInfo","features":[385]},{"name":"IEnumQueue","features":[385]},{"name":"IEnumStream","features":[385]},{"name":"IEnumSubStream","features":[385]},{"name":"IEnumTerminal","features":[385]},{"name":"IEnumTerminalClass","features":[385]},{"name":"IMcastAddressAllocation","features":[385,356]},{"name":"IMcastLeaseInfo","features":[385,356]},{"name":"IMcastScope","features":[385,356]},{"name":"INITIALIZE_NEGOTIATION","features":[385]},{"name":"INTERFACEMASK","features":[385]},{"name":"ITACDGroup","features":[385,356]},{"name":"ITACDGroupEvent","features":[385,356]},{"name":"ITAMMediaFormat","features":[385]},{"name":"ITASRTerminalEvent","features":[385,356]},{"name":"ITAddress","features":[385,356]},{"name":"ITAddress2","features":[385,356]},{"name":"ITAddressCapabilities","features":[385,356]},{"name":"ITAddressDeviceSpecificEvent","features":[385,356]},{"name":"ITAddressEvent","features":[385,356]},{"name":"ITAddressTranslation","features":[385,356]},{"name":"ITAddressTranslationInfo","features":[385,356]},{"name":"ITAgent","features":[385,356]},{"name":"ITAgentEvent","features":[385,356]},{"name":"ITAgentHandler","features":[385,356]},{"name":"ITAgentHandlerEvent","features":[385,356]},{"name":"ITAgentSession","features":[385,356]},{"name":"ITAgentSessionEvent","features":[385,356]},{"name":"ITAllocatorProperties","features":[385]},{"name":"ITAutomatedPhoneControl","features":[385,356]},{"name":"ITBasicAudioTerminal","features":[385,356]},{"name":"ITBasicCallControl","features":[385,356]},{"name":"ITBasicCallControl2","features":[385,356]},{"name":"ITCallHub","features":[385,356]},{"name":"ITCallHubEvent","features":[385,356]},{"name":"ITCallInfo","features":[385,356]},{"name":"ITCallInfo2","features":[385,356]},{"name":"ITCallInfoChangeEvent","features":[385,356]},{"name":"ITCallMediaEvent","features":[385,356]},{"name":"ITCallNotificationEvent","features":[385,356]},{"name":"ITCallStateEvent","features":[385,356]},{"name":"ITCallingCard","features":[385,356]},{"name":"ITCollection","features":[385,356]},{"name":"ITCollection2","features":[385,356]},{"name":"ITCustomTone","features":[385,356]},{"name":"ITDetectTone","features":[385,356]},{"name":"ITDigitDetectionEvent","features":[385,356]},{"name":"ITDigitGenerationEvent","features":[385,356]},{"name":"ITDigitsGatheredEvent","features":[385,356]},{"name":"ITDirectory","features":[385,356]},{"name":"ITDirectoryObject","features":[385,356]},{"name":"ITDirectoryObjectConference","features":[385,356]},{"name":"ITDirectoryObjectUser","features":[385,356]},{"name":"ITDispatchMapper","features":[385,356]},{"name":"ITFileTerminalEvent","features":[385,356]},{"name":"ITFileTrack","features":[385,356]},{"name":"ITForwardInformation","features":[385,356]},{"name":"ITForwardInformation2","features":[385,356]},{"name":"ITILSConfig","features":[385,356]},{"name":"ITLegacyAddressMediaControl","features":[385]},{"name":"ITLegacyAddressMediaControl2","features":[385]},{"name":"ITLegacyCallMediaControl","features":[385,356]},{"name":"ITLegacyCallMediaControl2","features":[385,356]},{"name":"ITLegacyWaveSupport","features":[385,356]},{"name":"ITLocationInfo","features":[385,356]},{"name":"ITMSPAddress","features":[385]},{"name":"ITMediaControl","features":[385,356]},{"name":"ITMediaPlayback","features":[385,356]},{"name":"ITMediaRecord","features":[385,356]},{"name":"ITMediaSupport","features":[385,356]},{"name":"ITMultiTrackTerminal","features":[385,356]},{"name":"ITPhone","features":[385,356]},{"name":"ITPhoneDeviceSpecificEvent","features":[385,356]},{"name":"ITPhoneEvent","features":[385,356]},{"name":"ITPluggableTerminalClassInfo","features":[385,356]},{"name":"ITPluggableTerminalEventSink","features":[385]},{"name":"ITPluggableTerminalEventSinkRegistration","features":[385]},{"name":"ITPluggableTerminalSuperclassInfo","features":[385,356]},{"name":"ITPrivateEvent","features":[385,356]},{"name":"ITQOSEvent","features":[385,356]},{"name":"ITQueue","features":[385,356]},{"name":"ITQueueEvent","features":[385,356]},{"name":"ITRendezvous","features":[385,356]},{"name":"ITRequest","features":[385,356]},{"name":"ITRequestEvent","features":[385,356]},{"name":"ITScriptableAudioFormat","features":[385,356]},{"name":"ITStaticAudioTerminal","features":[385,356]},{"name":"ITStream","features":[385,356]},{"name":"ITStreamControl","features":[385,356]},{"name":"ITSubStream","features":[385,356]},{"name":"ITSubStreamControl","features":[385,356]},{"name":"ITTAPI","features":[385,356]},{"name":"ITTAPI2","features":[385,356]},{"name":"ITTAPICallCenter","features":[385,356]},{"name":"ITTAPIDispatchEventNotification","features":[385,356]},{"name":"ITTAPIEventNotification","features":[385]},{"name":"ITTAPIObjectEvent","features":[385,356]},{"name":"ITTAPIObjectEvent2","features":[385,356]},{"name":"ITTTSTerminalEvent","features":[385,356]},{"name":"ITTerminal","features":[385,356]},{"name":"ITTerminalSupport","features":[385,356]},{"name":"ITTerminalSupport2","features":[385,356]},{"name":"ITToneDetectionEvent","features":[385,356]},{"name":"ITToneTerminalEvent","features":[385,356]},{"name":"ITnef","features":[385]},{"name":"LAST_LINEMEDIAMODE","features":[385]},{"name":"LAST_LINEREQUESTMODE","features":[385]},{"name":"LINEADDRCAPFLAGS_ACCEPTTOALERT","features":[385]},{"name":"LINEADDRCAPFLAGS_ACDGROUP","features":[385]},{"name":"LINEADDRCAPFLAGS_AUTORECONNECT","features":[385]},{"name":"LINEADDRCAPFLAGS_BLOCKIDDEFAULT","features":[385]},{"name":"LINEADDRCAPFLAGS_BLOCKIDOVERRIDE","features":[385]},{"name":"LINEADDRCAPFLAGS_COMPLETIONID","features":[385]},{"name":"LINEADDRCAPFLAGS_CONFDROP","features":[385]},{"name":"LINEADDRCAPFLAGS_CONFERENCEHELD","features":[385]},{"name":"LINEADDRCAPFLAGS_CONFERENCEMAKE","features":[385]},{"name":"LINEADDRCAPFLAGS_DESTOFFHOOK","features":[385]},{"name":"LINEADDRCAPFLAGS_DIALED","features":[385]},{"name":"LINEADDRCAPFLAGS_FWDBUSYNAADDR","features":[385]},{"name":"LINEADDRCAPFLAGS_FWDCONSULT","features":[385]},{"name":"LINEADDRCAPFLAGS_FWDINTEXTADDR","features":[385]},{"name":"LINEADDRCAPFLAGS_FWDNUMRINGS","features":[385]},{"name":"LINEADDRCAPFLAGS_FWDSTATUSVALID","features":[385]},{"name":"LINEADDRCAPFLAGS_HOLDMAKESNEW","features":[385]},{"name":"LINEADDRCAPFLAGS_NOEXTERNALCALLS","features":[385]},{"name":"LINEADDRCAPFLAGS_NOINTERNALCALLS","features":[385]},{"name":"LINEADDRCAPFLAGS_NOPSTNADDRESSTRANSLATION","features":[385]},{"name":"LINEADDRCAPFLAGS_ORIGOFFHOOK","features":[385]},{"name":"LINEADDRCAPFLAGS_PARTIALDIAL","features":[385]},{"name":"LINEADDRCAPFLAGS_PICKUPCALLWAIT","features":[385]},{"name":"LINEADDRCAPFLAGS_PICKUPGROUPID","features":[385]},{"name":"LINEADDRCAPFLAGS_PREDICTIVEDIALER","features":[385]},{"name":"LINEADDRCAPFLAGS_QUEUE","features":[385]},{"name":"LINEADDRCAPFLAGS_ROUTEPOINT","features":[385]},{"name":"LINEADDRCAPFLAGS_SECURE","features":[385]},{"name":"LINEADDRCAPFLAGS_SETCALLINGID","features":[385]},{"name":"LINEADDRCAPFLAGS_SETUPCONFNULL","features":[385]},{"name":"LINEADDRCAPFLAGS_TRANSFERHELD","features":[385]},{"name":"LINEADDRCAPFLAGS_TRANSFERMAKE","features":[385]},{"name":"LINEADDRESSCAPS","features":[385]},{"name":"LINEADDRESSMODE_ADDRESSID","features":[385]},{"name":"LINEADDRESSMODE_DIALABLEADDR","features":[385]},{"name":"LINEADDRESSSHARING_BRIDGEDEXCL","features":[385]},{"name":"LINEADDRESSSHARING_BRIDGEDNEW","features":[385]},{"name":"LINEADDRESSSHARING_BRIDGEDSHARED","features":[385]},{"name":"LINEADDRESSSHARING_MONITORED","features":[385]},{"name":"LINEADDRESSSHARING_PRIVATE","features":[385]},{"name":"LINEADDRESSSTATE_CAPSCHANGE","features":[385]},{"name":"LINEADDRESSSTATE_DEVSPECIFIC","features":[385]},{"name":"LINEADDRESSSTATE_FORWARD","features":[385]},{"name":"LINEADDRESSSTATE_INUSEMANY","features":[385]},{"name":"LINEADDRESSSTATE_INUSEONE","features":[385]},{"name":"LINEADDRESSSTATE_INUSEZERO","features":[385]},{"name":"LINEADDRESSSTATE_NUMCALLS","features":[385]},{"name":"LINEADDRESSSTATE_OTHER","features":[385]},{"name":"LINEADDRESSSTATE_TERMINALS","features":[385]},{"name":"LINEADDRESSSTATUS","features":[385]},{"name":"LINEADDRESSTYPE_DOMAINNAME","features":[385]},{"name":"LINEADDRESSTYPE_EMAILNAME","features":[385]},{"name":"LINEADDRESSTYPE_IPADDRESS","features":[385]},{"name":"LINEADDRESSTYPE_PHONENUMBER","features":[385]},{"name":"LINEADDRESSTYPE_SDP","features":[385]},{"name":"LINEADDRFEATURE_FORWARD","features":[385]},{"name":"LINEADDRFEATURE_FORWARDDND","features":[385]},{"name":"LINEADDRFEATURE_FORWARDFWD","features":[385]},{"name":"LINEADDRFEATURE_MAKECALL","features":[385]},{"name":"LINEADDRFEATURE_PICKUP","features":[385]},{"name":"LINEADDRFEATURE_PICKUPDIRECT","features":[385]},{"name":"LINEADDRFEATURE_PICKUPGROUP","features":[385]},{"name":"LINEADDRFEATURE_PICKUPHELD","features":[385]},{"name":"LINEADDRFEATURE_PICKUPWAITING","features":[385]},{"name":"LINEADDRFEATURE_SETMEDIACONTROL","features":[385]},{"name":"LINEADDRFEATURE_SETTERMINAL","features":[385]},{"name":"LINEADDRFEATURE_SETUPCONF","features":[385]},{"name":"LINEADDRFEATURE_UNCOMPLETECALL","features":[385]},{"name":"LINEADDRFEATURE_UNPARK","features":[385]},{"name":"LINEAGENTACTIVITYENTRY","features":[385]},{"name":"LINEAGENTACTIVITYLIST","features":[385]},{"name":"LINEAGENTCAPS","features":[385]},{"name":"LINEAGENTENTRY","features":[385]},{"name":"LINEAGENTFEATURE_AGENTSPECIFIC","features":[385]},{"name":"LINEAGENTFEATURE_GETAGENTACTIVITYLIST","features":[385]},{"name":"LINEAGENTFEATURE_GETAGENTGROUP","features":[385]},{"name":"LINEAGENTFEATURE_SETAGENTACTIVITY","features":[385]},{"name":"LINEAGENTFEATURE_SETAGENTGROUP","features":[385]},{"name":"LINEAGENTFEATURE_SETAGENTSTATE","features":[385]},{"name":"LINEAGENTGROUPENTRY","features":[385]},{"name":"LINEAGENTGROUPLIST","features":[385]},{"name":"LINEAGENTINFO","features":[385,356]},{"name":"LINEAGENTLIST","features":[385]},{"name":"LINEAGENTSESSIONENTRY","features":[385]},{"name":"LINEAGENTSESSIONINFO","features":[385,356]},{"name":"LINEAGENTSESSIONLIST","features":[385]},{"name":"LINEAGENTSESSIONSTATE_BUSYONCALL","features":[385]},{"name":"LINEAGENTSESSIONSTATE_BUSYWRAPUP","features":[385]},{"name":"LINEAGENTSESSIONSTATE_ENDED","features":[385]},{"name":"LINEAGENTSESSIONSTATE_NOTREADY","features":[385]},{"name":"LINEAGENTSESSIONSTATE_READY","features":[385]},{"name":"LINEAGENTSESSIONSTATE_RELEASED","features":[385]},{"name":"LINEAGENTSESSIONSTATUS_NEWSESSION","features":[385]},{"name":"LINEAGENTSESSIONSTATUS_STATE","features":[385]},{"name":"LINEAGENTSESSIONSTATUS_UPDATEINFO","features":[385]},{"name":"LINEAGENTSTATEEX_BUSYACD","features":[385]},{"name":"LINEAGENTSTATEEX_BUSYINCOMING","features":[385]},{"name":"LINEAGENTSTATEEX_BUSYOUTGOING","features":[385]},{"name":"LINEAGENTSTATEEX_NOTREADY","features":[385]},{"name":"LINEAGENTSTATEEX_READY","features":[385]},{"name":"LINEAGENTSTATEEX_RELEASED","features":[385]},{"name":"LINEAGENTSTATEEX_UNKNOWN","features":[385]},{"name":"LINEAGENTSTATE_BUSYACD","features":[385]},{"name":"LINEAGENTSTATE_BUSYINCOMING","features":[385]},{"name":"LINEAGENTSTATE_BUSYOTHER","features":[385]},{"name":"LINEAGENTSTATE_BUSYOUTBOUND","features":[385]},{"name":"LINEAGENTSTATE_LOGGEDOFF","features":[385]},{"name":"LINEAGENTSTATE_NOTREADY","features":[385]},{"name":"LINEAGENTSTATE_READY","features":[385]},{"name":"LINEAGENTSTATE_UNAVAIL","features":[385]},{"name":"LINEAGENTSTATE_UNKNOWN","features":[385]},{"name":"LINEAGENTSTATE_WORKINGAFTERCALL","features":[385]},{"name":"LINEAGENTSTATUS","features":[385]},{"name":"LINEAGENTSTATUSEX_NEWAGENT","features":[385]},{"name":"LINEAGENTSTATUSEX_STATE","features":[385]},{"name":"LINEAGENTSTATUSEX_UPDATEINFO","features":[385]},{"name":"LINEAGENTSTATUS_ACTIVITY","features":[385]},{"name":"LINEAGENTSTATUS_ACTIVITYLIST","features":[385]},{"name":"LINEAGENTSTATUS_CAPSCHANGE","features":[385]},{"name":"LINEAGENTSTATUS_GROUP","features":[385]},{"name":"LINEAGENTSTATUS_GROUPLIST","features":[385]},{"name":"LINEAGENTSTATUS_NEXTSTATE","features":[385]},{"name":"LINEAGENTSTATUS_STATE","features":[385]},{"name":"LINEAGENTSTATUS_VALIDNEXTSTATES","features":[385]},{"name":"LINEAGENTSTATUS_VALIDSTATES","features":[385]},{"name":"LINEANSWERMODE_DROP","features":[385]},{"name":"LINEANSWERMODE_HOLD","features":[385]},{"name":"LINEANSWERMODE_NONE","features":[385]},{"name":"LINEAPPINFO","features":[385]},{"name":"LINEBEARERMODE_ALTSPEECHDATA","features":[385]},{"name":"LINEBEARERMODE_DATA","features":[385]},{"name":"LINEBEARERMODE_MULTIUSE","features":[385]},{"name":"LINEBEARERMODE_NONCALLSIGNALING","features":[385]},{"name":"LINEBEARERMODE_PASSTHROUGH","features":[385]},{"name":"LINEBEARERMODE_RESTRICTEDDATA","features":[385]},{"name":"LINEBEARERMODE_SPEECH","features":[385]},{"name":"LINEBEARERMODE_VOICE","features":[385]},{"name":"LINEBUSYMODE_STATION","features":[385]},{"name":"LINEBUSYMODE_TRUNK","features":[385]},{"name":"LINEBUSYMODE_UNAVAIL","features":[385]},{"name":"LINEBUSYMODE_UNKNOWN","features":[385]},{"name":"LINECALLBACK","features":[385]},{"name":"LINECALLCOMPLCOND_BUSY","features":[385]},{"name":"LINECALLCOMPLCOND_NOANSWER","features":[385]},{"name":"LINECALLCOMPLMODE_CALLBACK","features":[385]},{"name":"LINECALLCOMPLMODE_CAMPON","features":[385]},{"name":"LINECALLCOMPLMODE_INTRUDE","features":[385]},{"name":"LINECALLCOMPLMODE_MESSAGE","features":[385]},{"name":"LINECALLFEATURE2_COMPLCALLBACK","features":[385]},{"name":"LINECALLFEATURE2_COMPLCAMPON","features":[385]},{"name":"LINECALLFEATURE2_COMPLINTRUDE","features":[385]},{"name":"LINECALLFEATURE2_COMPLMESSAGE","features":[385]},{"name":"LINECALLFEATURE2_NOHOLDCONFERENCE","features":[385]},{"name":"LINECALLFEATURE2_ONESTEPTRANSFER","features":[385]},{"name":"LINECALLFEATURE2_PARKDIRECT","features":[385]},{"name":"LINECALLFEATURE2_PARKNONDIRECT","features":[385]},{"name":"LINECALLFEATURE2_TRANSFERCONF","features":[385]},{"name":"LINECALLFEATURE2_TRANSFERNORM","features":[385]},{"name":"LINECALLFEATURE_ACCEPT","features":[385]},{"name":"LINECALLFEATURE_ADDTOCONF","features":[385]},{"name":"LINECALLFEATURE_ANSWER","features":[385]},{"name":"LINECALLFEATURE_BLINDTRANSFER","features":[385]},{"name":"LINECALLFEATURE_COMPLETECALL","features":[385]},{"name":"LINECALLFEATURE_COMPLETETRANSF","features":[385]},{"name":"LINECALLFEATURE_DIAL","features":[385]},{"name":"LINECALLFEATURE_DROP","features":[385]},{"name":"LINECALLFEATURE_GATHERDIGITS","features":[385]},{"name":"LINECALLFEATURE_GENERATEDIGITS","features":[385]},{"name":"LINECALLFEATURE_GENERATETONE","features":[385]},{"name":"LINECALLFEATURE_HOLD","features":[385]},{"name":"LINECALLFEATURE_MONITORDIGITS","features":[385]},{"name":"LINECALLFEATURE_MONITORMEDIA","features":[385]},{"name":"LINECALLFEATURE_MONITORTONES","features":[385]},{"name":"LINECALLFEATURE_PARK","features":[385]},{"name":"LINECALLFEATURE_PREPAREADDCONF","features":[385]},{"name":"LINECALLFEATURE_REDIRECT","features":[385]},{"name":"LINECALLFEATURE_RELEASEUSERUSERINFO","features":[385]},{"name":"LINECALLFEATURE_REMOVEFROMCONF","features":[385]},{"name":"LINECALLFEATURE_SECURECALL","features":[385]},{"name":"LINECALLFEATURE_SENDUSERUSER","features":[385]},{"name":"LINECALLFEATURE_SETCALLDATA","features":[385]},{"name":"LINECALLFEATURE_SETCALLPARAMS","features":[385]},{"name":"LINECALLFEATURE_SETMEDIACONTROL","features":[385]},{"name":"LINECALLFEATURE_SETQOS","features":[385]},{"name":"LINECALLFEATURE_SETTERMINAL","features":[385]},{"name":"LINECALLFEATURE_SETTREATMENT","features":[385]},{"name":"LINECALLFEATURE_SETUPCONF","features":[385]},{"name":"LINECALLFEATURE_SETUPTRANSFER","features":[385]},{"name":"LINECALLFEATURE_SWAPHOLD","features":[385]},{"name":"LINECALLFEATURE_UNHOLD","features":[385]},{"name":"LINECALLHUBTRACKING_ALLCALLS","features":[385]},{"name":"LINECALLHUBTRACKING_NONE","features":[385]},{"name":"LINECALLHUBTRACKING_PROVIDERLEVEL","features":[385]},{"name":"LINECALLINFO","features":[385]},{"name":"LINECALLINFOSTATE_APPSPECIFIC","features":[385]},{"name":"LINECALLINFOSTATE_BEARERMODE","features":[385]},{"name":"LINECALLINFOSTATE_CALLDATA","features":[385]},{"name":"LINECALLINFOSTATE_CALLEDID","features":[385]},{"name":"LINECALLINFOSTATE_CALLERID","features":[385]},{"name":"LINECALLINFOSTATE_CALLID","features":[385]},{"name":"LINECALLINFOSTATE_CHARGINGINFO","features":[385]},{"name":"LINECALLINFOSTATE_COMPLETIONID","features":[385]},{"name":"LINECALLINFOSTATE_CONNECTEDID","features":[385]},{"name":"LINECALLINFOSTATE_DEVSPECIFIC","features":[385]},{"name":"LINECALLINFOSTATE_DIALPARAMS","features":[385]},{"name":"LINECALLINFOSTATE_DISPLAY","features":[385]},{"name":"LINECALLINFOSTATE_HIGHLEVELCOMP","features":[385]},{"name":"LINECALLINFOSTATE_LOWLEVELCOMP","features":[385]},{"name":"LINECALLINFOSTATE_MEDIAMODE","features":[385]},{"name":"LINECALLINFOSTATE_MONITORMODES","features":[385]},{"name":"LINECALLINFOSTATE_NUMMONITORS","features":[385]},{"name":"LINECALLINFOSTATE_NUMOWNERDECR","features":[385]},{"name":"LINECALLINFOSTATE_NUMOWNERINCR","features":[385]},{"name":"LINECALLINFOSTATE_ORIGIN","features":[385]},{"name":"LINECALLINFOSTATE_OTHER","features":[385]},{"name":"LINECALLINFOSTATE_QOS","features":[385]},{"name":"LINECALLINFOSTATE_RATE","features":[385]},{"name":"LINECALLINFOSTATE_REASON","features":[385]},{"name":"LINECALLINFOSTATE_REDIRECTINGID","features":[385]},{"name":"LINECALLINFOSTATE_REDIRECTIONID","features":[385]},{"name":"LINECALLINFOSTATE_RELATEDCALLID","features":[385]},{"name":"LINECALLINFOSTATE_TERMINAL","features":[385]},{"name":"LINECALLINFOSTATE_TREATMENT","features":[385]},{"name":"LINECALLINFOSTATE_TRUNK","features":[385]},{"name":"LINECALLINFOSTATE_USERUSERINFO","features":[385]},{"name":"LINECALLLIST","features":[385]},{"name":"LINECALLORIGIN_CONFERENCE","features":[385]},{"name":"LINECALLORIGIN_EXTERNAL","features":[385]},{"name":"LINECALLORIGIN_INBOUND","features":[385]},{"name":"LINECALLORIGIN_INTERNAL","features":[385]},{"name":"LINECALLORIGIN_OUTBOUND","features":[385]},{"name":"LINECALLORIGIN_UNAVAIL","features":[385]},{"name":"LINECALLORIGIN_UNKNOWN","features":[385]},{"name":"LINECALLPARAMFLAGS_BLOCKID","features":[385]},{"name":"LINECALLPARAMFLAGS_DESTOFFHOOK","features":[385]},{"name":"LINECALLPARAMFLAGS_IDLE","features":[385]},{"name":"LINECALLPARAMFLAGS_NOHOLDCONFERENCE","features":[385]},{"name":"LINECALLPARAMFLAGS_ONESTEPTRANSFER","features":[385]},{"name":"LINECALLPARAMFLAGS_ORIGOFFHOOK","features":[385]},{"name":"LINECALLPARAMFLAGS_PREDICTIVEDIAL","features":[385]},{"name":"LINECALLPARAMFLAGS_SECURE","features":[385]},{"name":"LINECALLPARAMS","features":[385]},{"name":"LINECALLPARTYID_ADDRESS","features":[385]},{"name":"LINECALLPARTYID_BLOCKED","features":[385]},{"name":"LINECALLPARTYID_NAME","features":[385]},{"name":"LINECALLPARTYID_OUTOFAREA","features":[385]},{"name":"LINECALLPARTYID_PARTIAL","features":[385]},{"name":"LINECALLPARTYID_UNAVAIL","features":[385]},{"name":"LINECALLPARTYID_UNKNOWN","features":[385]},{"name":"LINECALLPRIVILEGE_MONITOR","features":[385]},{"name":"LINECALLPRIVILEGE_NONE","features":[385]},{"name":"LINECALLPRIVILEGE_OWNER","features":[385]},{"name":"LINECALLREASON_CALLCOMPLETION","features":[385]},{"name":"LINECALLREASON_CAMPEDON","features":[385]},{"name":"LINECALLREASON_DIRECT","features":[385]},{"name":"LINECALLREASON_FWDBUSY","features":[385]},{"name":"LINECALLREASON_FWDNOANSWER","features":[385]},{"name":"LINECALLREASON_FWDUNCOND","features":[385]},{"name":"LINECALLREASON_INTRUDE","features":[385]},{"name":"LINECALLREASON_PARKED","features":[385]},{"name":"LINECALLREASON_PICKUP","features":[385]},{"name":"LINECALLREASON_REDIRECT","features":[385]},{"name":"LINECALLREASON_REMINDER","features":[385]},{"name":"LINECALLREASON_ROUTEREQUEST","features":[385]},{"name":"LINECALLREASON_TRANSFER","features":[385]},{"name":"LINECALLREASON_UNAVAIL","features":[385]},{"name":"LINECALLREASON_UNKNOWN","features":[385]},{"name":"LINECALLREASON_UNPARK","features":[385]},{"name":"LINECALLSELECT_ADDRESS","features":[385]},{"name":"LINECALLSELECT_CALL","features":[385]},{"name":"LINECALLSELECT_CALLID","features":[385]},{"name":"LINECALLSELECT_DEVICEID","features":[385]},{"name":"LINECALLSELECT_LINE","features":[385]},{"name":"LINECALLSTATE_ACCEPTED","features":[385]},{"name":"LINECALLSTATE_BUSY","features":[385]},{"name":"LINECALLSTATE_CONFERENCED","features":[385]},{"name":"LINECALLSTATE_CONNECTED","features":[385]},{"name":"LINECALLSTATE_DIALING","features":[385]},{"name":"LINECALLSTATE_DIALTONE","features":[385]},{"name":"LINECALLSTATE_DISCONNECTED","features":[385]},{"name":"LINECALLSTATE_IDLE","features":[385]},{"name":"LINECALLSTATE_OFFERING","features":[385]},{"name":"LINECALLSTATE_ONHOLD","features":[385]},{"name":"LINECALLSTATE_ONHOLDPENDCONF","features":[385]},{"name":"LINECALLSTATE_ONHOLDPENDTRANSFER","features":[385]},{"name":"LINECALLSTATE_PROCEEDING","features":[385]},{"name":"LINECALLSTATE_RINGBACK","features":[385]},{"name":"LINECALLSTATE_SPECIALINFO","features":[385]},{"name":"LINECALLSTATE_UNKNOWN","features":[385]},{"name":"LINECALLSTATUS","features":[385,305]},{"name":"LINECALLTREATMENTENTRY","features":[385]},{"name":"LINECALLTREATMENT_BUSY","features":[385]},{"name":"LINECALLTREATMENT_MUSIC","features":[385]},{"name":"LINECALLTREATMENT_RINGBACK","features":[385]},{"name":"LINECALLTREATMENT_SILENCE","features":[385]},{"name":"LINECARDENTRY","features":[385]},{"name":"LINECARDOPTION_HIDDEN","features":[385]},{"name":"LINECARDOPTION_PREDEFINED","features":[385]},{"name":"LINECONNECTEDMODE_ACTIVE","features":[385]},{"name":"LINECONNECTEDMODE_ACTIVEHELD","features":[385]},{"name":"LINECONNECTEDMODE_CONFIRMED","features":[385]},{"name":"LINECONNECTEDMODE_INACTIVE","features":[385]},{"name":"LINECONNECTEDMODE_INACTIVEHELD","features":[385]},{"name":"LINECOUNTRYENTRY","features":[385]},{"name":"LINECOUNTRYLIST","features":[385]},{"name":"LINEDEVCAPFLAGS_CALLHUB","features":[385]},{"name":"LINEDEVCAPFLAGS_CALLHUBTRACKING","features":[385]},{"name":"LINEDEVCAPFLAGS_CLOSEDROP","features":[385]},{"name":"LINEDEVCAPFLAGS_CROSSADDRCONF","features":[385]},{"name":"LINEDEVCAPFLAGS_DIALBILLING","features":[385]},{"name":"LINEDEVCAPFLAGS_DIALDIALTONE","features":[385]},{"name":"LINEDEVCAPFLAGS_DIALQUIET","features":[385]},{"name":"LINEDEVCAPFLAGS_HIGHLEVCOMP","features":[385]},{"name":"LINEDEVCAPFLAGS_LOCAL","features":[385]},{"name":"LINEDEVCAPFLAGS_LOWLEVCOMP","features":[385]},{"name":"LINEDEVCAPFLAGS_MEDIACONTROL","features":[385]},{"name":"LINEDEVCAPFLAGS_MSP","features":[385]},{"name":"LINEDEVCAPFLAGS_MULTIPLEADDR","features":[385]},{"name":"LINEDEVCAPFLAGS_PRIVATEOBJECTS","features":[385]},{"name":"LINEDEVCAPS","features":[385]},{"name":"LINEDEVSTATE_BATTERY","features":[385]},{"name":"LINEDEVSTATE_CAPSCHANGE","features":[385]},{"name":"LINEDEVSTATE_CLOSE","features":[385]},{"name":"LINEDEVSTATE_COMPLCANCEL","features":[385]},{"name":"LINEDEVSTATE_CONFIGCHANGE","features":[385]},{"name":"LINEDEVSTATE_CONNECTED","features":[385]},{"name":"LINEDEVSTATE_DEVSPECIFIC","features":[385]},{"name":"LINEDEVSTATE_DISCONNECTED","features":[385]},{"name":"LINEDEVSTATE_INSERVICE","features":[385]},{"name":"LINEDEVSTATE_LOCK","features":[385]},{"name":"LINEDEVSTATE_MAINTENANCE","features":[385]},{"name":"LINEDEVSTATE_MSGWAITOFF","features":[385]},{"name":"LINEDEVSTATE_MSGWAITON","features":[385]},{"name":"LINEDEVSTATE_NUMCALLS","features":[385]},{"name":"LINEDEVSTATE_NUMCOMPLETIONS","features":[385]},{"name":"LINEDEVSTATE_OPEN","features":[385]},{"name":"LINEDEVSTATE_OTHER","features":[385]},{"name":"LINEDEVSTATE_OUTOFSERVICE","features":[385]},{"name":"LINEDEVSTATE_REINIT","features":[385]},{"name":"LINEDEVSTATE_REMOVED","features":[385]},{"name":"LINEDEVSTATE_RINGING","features":[385]},{"name":"LINEDEVSTATE_ROAMMODE","features":[385]},{"name":"LINEDEVSTATE_SIGNAL","features":[385]},{"name":"LINEDEVSTATE_TERMINALS","features":[385]},{"name":"LINEDEVSTATE_TRANSLATECHANGE","features":[385]},{"name":"LINEDEVSTATUS","features":[385]},{"name":"LINEDEVSTATUSFLAGS_CONNECTED","features":[385]},{"name":"LINEDEVSTATUSFLAGS_INSERVICE","features":[385]},{"name":"LINEDEVSTATUSFLAGS_LOCKED","features":[385]},{"name":"LINEDEVSTATUSFLAGS_MSGWAIT","features":[385]},{"name":"LINEDIALPARAMS","features":[385]},{"name":"LINEDIALTONEMODE_EXTERNAL","features":[385]},{"name":"LINEDIALTONEMODE_INTERNAL","features":[385]},{"name":"LINEDIALTONEMODE_NORMAL","features":[385]},{"name":"LINEDIALTONEMODE_SPECIAL","features":[385]},{"name":"LINEDIALTONEMODE_UNAVAIL","features":[385]},{"name":"LINEDIALTONEMODE_UNKNOWN","features":[385]},{"name":"LINEDIGITMODE_DTMF","features":[385]},{"name":"LINEDIGITMODE_DTMFEND","features":[385]},{"name":"LINEDIGITMODE_PULSE","features":[385]},{"name":"LINEDISCONNECTMODE_BADADDRESS","features":[385]},{"name":"LINEDISCONNECTMODE_BLOCKED","features":[385]},{"name":"LINEDISCONNECTMODE_BUSY","features":[385]},{"name":"LINEDISCONNECTMODE_CANCELLED","features":[385]},{"name":"LINEDISCONNECTMODE_CONGESTION","features":[385]},{"name":"LINEDISCONNECTMODE_DESTINATIONBARRED","features":[385]},{"name":"LINEDISCONNECTMODE_DONOTDISTURB","features":[385]},{"name":"LINEDISCONNECTMODE_FDNRESTRICT","features":[385]},{"name":"LINEDISCONNECTMODE_FORWARDED","features":[385]},{"name":"LINEDISCONNECTMODE_INCOMPATIBLE","features":[385]},{"name":"LINEDISCONNECTMODE_NOANSWER","features":[385]},{"name":"LINEDISCONNECTMODE_NODIALTONE","features":[385]},{"name":"LINEDISCONNECTMODE_NORMAL","features":[385]},{"name":"LINEDISCONNECTMODE_NUMBERCHANGED","features":[385]},{"name":"LINEDISCONNECTMODE_OUTOFORDER","features":[385]},{"name":"LINEDISCONNECTMODE_PICKUP","features":[385]},{"name":"LINEDISCONNECTMODE_QOSUNAVAIL","features":[385]},{"name":"LINEDISCONNECTMODE_REJECT","features":[385]},{"name":"LINEDISCONNECTMODE_TEMPFAILURE","features":[385]},{"name":"LINEDISCONNECTMODE_UNAVAIL","features":[385]},{"name":"LINEDISCONNECTMODE_UNKNOWN","features":[385]},{"name":"LINEDISCONNECTMODE_UNREACHABLE","features":[385]},{"name":"LINEEQOSINFO_ADMISSIONFAILURE","features":[385]},{"name":"LINEEQOSINFO_GENERICERROR","features":[385]},{"name":"LINEEQOSINFO_NOQOS","features":[385]},{"name":"LINEEQOSINFO_POLICYFAILURE","features":[385]},{"name":"LINEERR_ADDRESSBLOCKED","features":[385]},{"name":"LINEERR_ALLOCATED","features":[385]},{"name":"LINEERR_BADDEVICEID","features":[385]},{"name":"LINEERR_BEARERMODEUNAVAIL","features":[385]},{"name":"LINEERR_BILLINGREJECTED","features":[385]},{"name":"LINEERR_CALLUNAVAIL","features":[385]},{"name":"LINEERR_COMPLETIONOVERRUN","features":[385]},{"name":"LINEERR_CONFERENCEFULL","features":[385]},{"name":"LINEERR_DIALBILLING","features":[385]},{"name":"LINEERR_DIALDIALTONE","features":[385]},{"name":"LINEERR_DIALPROMPT","features":[385]},{"name":"LINEERR_DIALQUIET","features":[385]},{"name":"LINEERR_DIALVOICEDETECT","features":[385]},{"name":"LINEERR_DISCONNECTED","features":[385]},{"name":"LINEERR_INCOMPATIBLEAPIVERSION","features":[385]},{"name":"LINEERR_INCOMPATIBLEEXTVERSION","features":[385]},{"name":"LINEERR_INIFILECORRUPT","features":[385]},{"name":"LINEERR_INUSE","features":[385]},{"name":"LINEERR_INVALADDRESS","features":[385]},{"name":"LINEERR_INVALADDRESSID","features":[385]},{"name":"LINEERR_INVALADDRESSMODE","features":[385]},{"name":"LINEERR_INVALADDRESSSTATE","features":[385]},{"name":"LINEERR_INVALADDRESSTYPE","features":[385]},{"name":"LINEERR_INVALAGENTACTIVITY","features":[385]},{"name":"LINEERR_INVALAGENTGROUP","features":[385]},{"name":"LINEERR_INVALAGENTID","features":[385]},{"name":"LINEERR_INVALAGENTSESSIONSTATE","features":[385]},{"name":"LINEERR_INVALAGENTSTATE","features":[385]},{"name":"LINEERR_INVALAPPHANDLE","features":[385]},{"name":"LINEERR_INVALAPPNAME","features":[385]},{"name":"LINEERR_INVALBEARERMODE","features":[385]},{"name":"LINEERR_INVALCALLCOMPLMODE","features":[385]},{"name":"LINEERR_INVALCALLHANDLE","features":[385]},{"name":"LINEERR_INVALCALLPARAMS","features":[385]},{"name":"LINEERR_INVALCALLPRIVILEGE","features":[385]},{"name":"LINEERR_INVALCALLSELECT","features":[385]},{"name":"LINEERR_INVALCALLSTATE","features":[385]},{"name":"LINEERR_INVALCALLSTATELIST","features":[385]},{"name":"LINEERR_INVALCARD","features":[385]},{"name":"LINEERR_INVALCOMPLETIONID","features":[385]},{"name":"LINEERR_INVALCONFCALLHANDLE","features":[385]},{"name":"LINEERR_INVALCONSULTCALLHANDLE","features":[385]},{"name":"LINEERR_INVALCOUNTRYCODE","features":[385]},{"name":"LINEERR_INVALDEVICECLASS","features":[385]},{"name":"LINEERR_INVALDEVICEHANDLE","features":[385]},{"name":"LINEERR_INVALDIALPARAMS","features":[385]},{"name":"LINEERR_INVALDIGITLIST","features":[385]},{"name":"LINEERR_INVALDIGITMODE","features":[385]},{"name":"LINEERR_INVALDIGITS","features":[385]},{"name":"LINEERR_INVALEXTVERSION","features":[385]},{"name":"LINEERR_INVALFEATURE","features":[385]},{"name":"LINEERR_INVALGROUPID","features":[385]},{"name":"LINEERR_INVALLINEHANDLE","features":[385]},{"name":"LINEERR_INVALLINESTATE","features":[385]},{"name":"LINEERR_INVALLOCATION","features":[385]},{"name":"LINEERR_INVALMEDIALIST","features":[385]},{"name":"LINEERR_INVALMEDIAMODE","features":[385]},{"name":"LINEERR_INVALMESSAGEID","features":[385]},{"name":"LINEERR_INVALPARAM","features":[385]},{"name":"LINEERR_INVALPARKID","features":[385]},{"name":"LINEERR_INVALPARKMODE","features":[385]},{"name":"LINEERR_INVALPASSWORD","features":[385]},{"name":"LINEERR_INVALPOINTER","features":[385]},{"name":"LINEERR_INVALPRIVSELECT","features":[385]},{"name":"LINEERR_INVALRATE","features":[385]},{"name":"LINEERR_INVALREQUESTMODE","features":[385]},{"name":"LINEERR_INVALTERMINALID","features":[385]},{"name":"LINEERR_INVALTERMINALMODE","features":[385]},{"name":"LINEERR_INVALTIMEOUT","features":[385]},{"name":"LINEERR_INVALTONE","features":[385]},{"name":"LINEERR_INVALTONELIST","features":[385]},{"name":"LINEERR_INVALTONEMODE","features":[385]},{"name":"LINEERR_INVALTRANSFERMODE","features":[385]},{"name":"LINEERR_LINEMAPPERFAILED","features":[385]},{"name":"LINEERR_NOCONFERENCE","features":[385]},{"name":"LINEERR_NODEVICE","features":[385]},{"name":"LINEERR_NODRIVER","features":[385]},{"name":"LINEERR_NOMEM","features":[385]},{"name":"LINEERR_NOMULTIPLEINSTANCE","features":[385]},{"name":"LINEERR_NOREQUEST","features":[385]},{"name":"LINEERR_NOTOWNER","features":[385]},{"name":"LINEERR_NOTREGISTERED","features":[385]},{"name":"LINEERR_OPERATIONFAILED","features":[385]},{"name":"LINEERR_OPERATIONUNAVAIL","features":[385]},{"name":"LINEERR_RATEUNAVAIL","features":[385]},{"name":"LINEERR_REINIT","features":[385]},{"name":"LINEERR_REQUESTOVERRUN","features":[385]},{"name":"LINEERR_RESOURCEUNAVAIL","features":[385]},{"name":"LINEERR_SERVICE_NOT_RUNNING","features":[385]},{"name":"LINEERR_STRUCTURETOOSMALL","features":[385]},{"name":"LINEERR_TARGETNOTFOUND","features":[385]},{"name":"LINEERR_TARGETSELF","features":[385]},{"name":"LINEERR_UNINITIALIZED","features":[385]},{"name":"LINEERR_USERCANCELLED","features":[385]},{"name":"LINEERR_USERUSERINFOTOOBIG","features":[385]},{"name":"LINEEVENT","features":[385]},{"name":"LINEEXTENSIONID","features":[385]},{"name":"LINEFEATURE_DEVSPECIFIC","features":[385]},{"name":"LINEFEATURE_DEVSPECIFICFEAT","features":[385]},{"name":"LINEFEATURE_FORWARD","features":[385]},{"name":"LINEFEATURE_FORWARDDND","features":[385]},{"name":"LINEFEATURE_FORWARDFWD","features":[385]},{"name":"LINEFEATURE_MAKECALL","features":[385]},{"name":"LINEFEATURE_SETDEVSTATUS","features":[385]},{"name":"LINEFEATURE_SETMEDIACONTROL","features":[385]},{"name":"LINEFEATURE_SETTERMINAL","features":[385]},{"name":"LINEFORWARD","features":[385]},{"name":"LINEFORWARDLIST","features":[385]},{"name":"LINEFORWARDMODE_BUSY","features":[385]},{"name":"LINEFORWARDMODE_BUSYEXTERNAL","features":[385]},{"name":"LINEFORWARDMODE_BUSYINTERNAL","features":[385]},{"name":"LINEFORWARDMODE_BUSYNA","features":[385]},{"name":"LINEFORWARDMODE_BUSYNAEXTERNAL","features":[385]},{"name":"LINEFORWARDMODE_BUSYNAINTERNAL","features":[385]},{"name":"LINEFORWARDMODE_BUSYNASPECIFIC","features":[385]},{"name":"LINEFORWARDMODE_BUSYSPECIFIC","features":[385]},{"name":"LINEFORWARDMODE_NOANSW","features":[385]},{"name":"LINEFORWARDMODE_NOANSWEXTERNAL","features":[385]},{"name":"LINEFORWARDMODE_NOANSWINTERNAL","features":[385]},{"name":"LINEFORWARDMODE_NOANSWSPECIFIC","features":[385]},{"name":"LINEFORWARDMODE_UNAVAIL","features":[385]},{"name":"LINEFORWARDMODE_UNCOND","features":[385]},{"name":"LINEFORWARDMODE_UNCONDEXTERNAL","features":[385]},{"name":"LINEFORWARDMODE_UNCONDINTERNAL","features":[385]},{"name":"LINEFORWARDMODE_UNCONDSPECIFIC","features":[385]},{"name":"LINEFORWARDMODE_UNKNOWN","features":[385]},{"name":"LINEGATHERTERM_BUFFERFULL","features":[385]},{"name":"LINEGATHERTERM_CANCEL","features":[385]},{"name":"LINEGATHERTERM_FIRSTTIMEOUT","features":[385]},{"name":"LINEGATHERTERM_INTERTIMEOUT","features":[385]},{"name":"LINEGATHERTERM_TERMDIGIT","features":[385]},{"name":"LINEGENERATETERM_CANCEL","features":[385]},{"name":"LINEGENERATETERM_DONE","features":[385]},{"name":"LINEGENERATETONE","features":[385]},{"name":"LINEGROUPSTATUS_GROUPREMOVED","features":[385]},{"name":"LINEGROUPSTATUS_NEWGROUP","features":[385]},{"name":"LINEINITIALIZEEXOPTION_CALLHUBTRACKING","features":[385]},{"name":"LINEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[385]},{"name":"LINEINITIALIZEEXOPTION_USEEVENT","features":[385]},{"name":"LINEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[385]},{"name":"LINEINITIALIZEEXPARAMS","features":[385,305]},{"name":"LINELOCATIONENTRY","features":[385]},{"name":"LINELOCATIONOPTION_PULSEDIAL","features":[385]},{"name":"LINEMAPPER","features":[385]},{"name":"LINEMEDIACONTROLCALLSTATE","features":[385]},{"name":"LINEMEDIACONTROLDIGIT","features":[385]},{"name":"LINEMEDIACONTROLMEDIA","features":[385]},{"name":"LINEMEDIACONTROLTONE","features":[385]},{"name":"LINEMEDIACONTROL_NONE","features":[385]},{"name":"LINEMEDIACONTROL_PAUSE","features":[385]},{"name":"LINEMEDIACONTROL_RATEDOWN","features":[385]},{"name":"LINEMEDIACONTROL_RATENORMAL","features":[385]},{"name":"LINEMEDIACONTROL_RATEUP","features":[385]},{"name":"LINEMEDIACONTROL_RESET","features":[385]},{"name":"LINEMEDIACONTROL_RESUME","features":[385]},{"name":"LINEMEDIACONTROL_START","features":[385]},{"name":"LINEMEDIACONTROL_VOLUMEDOWN","features":[385]},{"name":"LINEMEDIACONTROL_VOLUMENORMAL","features":[385]},{"name":"LINEMEDIACONTROL_VOLUMEUP","features":[385]},{"name":"LINEMEDIAMODE_ADSI","features":[385]},{"name":"LINEMEDIAMODE_AUTOMATEDVOICE","features":[385]},{"name":"LINEMEDIAMODE_DATAMODEM","features":[385]},{"name":"LINEMEDIAMODE_DIGITALDATA","features":[385]},{"name":"LINEMEDIAMODE_G3FAX","features":[385]},{"name":"LINEMEDIAMODE_G4FAX","features":[385]},{"name":"LINEMEDIAMODE_INTERACTIVEVOICE","features":[385]},{"name":"LINEMEDIAMODE_MIXED","features":[385]},{"name":"LINEMEDIAMODE_TDD","features":[385]},{"name":"LINEMEDIAMODE_TELETEX","features":[385]},{"name":"LINEMEDIAMODE_TELEX","features":[385]},{"name":"LINEMEDIAMODE_UNKNOWN","features":[385]},{"name":"LINEMEDIAMODE_VIDEO","features":[385]},{"name":"LINEMEDIAMODE_VIDEOTEX","features":[385]},{"name":"LINEMEDIAMODE_VOICEVIEW","features":[385]},{"name":"LINEMESSAGE","features":[385]},{"name":"LINEMONITORTONE","features":[385]},{"name":"LINEOFFERINGMODE_ACTIVE","features":[385]},{"name":"LINEOFFERINGMODE_INACTIVE","features":[385]},{"name":"LINEOPENOPTION_PROXY","features":[385]},{"name":"LINEOPENOPTION_SINGLEADDRESS","features":[385]},{"name":"LINEPARKMODE_DIRECTED","features":[385]},{"name":"LINEPARKMODE_NONDIRECTED","features":[385]},{"name":"LINEPROVIDERENTRY","features":[385]},{"name":"LINEPROVIDERLIST","features":[385]},{"name":"LINEPROXYREQUEST","features":[385,356]},{"name":"LINEPROXYREQUESTLIST","features":[385]},{"name":"LINEPROXYREQUEST_AGENTSPECIFIC","features":[385]},{"name":"LINEPROXYREQUEST_CREATEAGENT","features":[385]},{"name":"LINEPROXYREQUEST_CREATEAGENTSESSION","features":[385]},{"name":"LINEPROXYREQUEST_GETAGENTACTIVITYLIST","features":[385]},{"name":"LINEPROXYREQUEST_GETAGENTCAPS","features":[385]},{"name":"LINEPROXYREQUEST_GETAGENTGROUPLIST","features":[385]},{"name":"LINEPROXYREQUEST_GETAGENTINFO","features":[385]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONINFO","features":[385]},{"name":"LINEPROXYREQUEST_GETAGENTSESSIONLIST","features":[385]},{"name":"LINEPROXYREQUEST_GETAGENTSTATUS","features":[385]},{"name":"LINEPROXYREQUEST_GETGROUPLIST","features":[385]},{"name":"LINEPROXYREQUEST_GETQUEUEINFO","features":[385]},{"name":"LINEPROXYREQUEST_GETQUEUELIST","features":[385]},{"name":"LINEPROXYREQUEST_SETAGENTACTIVITY","features":[385]},{"name":"LINEPROXYREQUEST_SETAGENTGROUP","features":[385]},{"name":"LINEPROXYREQUEST_SETAGENTMEASUREMENTPERIOD","features":[385]},{"name":"LINEPROXYREQUEST_SETAGENTSESSIONSTATE","features":[385]},{"name":"LINEPROXYREQUEST_SETAGENTSTATE","features":[385]},{"name":"LINEPROXYREQUEST_SETAGENTSTATEEX","features":[385]},{"name":"LINEPROXYREQUEST_SETQUEUEMEASUREMENTPERIOD","features":[385]},{"name":"LINEPROXYSTATUS_ALLOPENFORACD","features":[385]},{"name":"LINEPROXYSTATUS_CLOSE","features":[385]},{"name":"LINEPROXYSTATUS_OPEN","features":[385]},{"name":"LINEQOSREQUESTTYPE_SERVICELEVEL","features":[385]},{"name":"LINEQOSSERVICELEVEL_BESTEFFORT","features":[385]},{"name":"LINEQOSSERVICELEVEL_IFAVAILABLE","features":[385]},{"name":"LINEQOSSERVICELEVEL_NEEDED","features":[385]},{"name":"LINEQUEUEENTRY","features":[385]},{"name":"LINEQUEUEINFO","features":[385]},{"name":"LINEQUEUELIST","features":[385]},{"name":"LINEQUEUESTATUS_NEWQUEUE","features":[385]},{"name":"LINEQUEUESTATUS_QUEUEREMOVED","features":[385]},{"name":"LINEQUEUESTATUS_UPDATEINFO","features":[385]},{"name":"LINEREMOVEFROMCONF_ANY","features":[385]},{"name":"LINEREMOVEFROMCONF_LAST","features":[385]},{"name":"LINEREMOVEFROMCONF_NONE","features":[385]},{"name":"LINEREQMAKECALL","features":[385]},{"name":"LINEREQMAKECALLW","features":[385]},{"name":"LINEREQMEDIACALL","features":[385,305]},{"name":"LINEREQMEDIACALLW","features":[385,305]},{"name":"LINEREQUESTMODE_DROP","features":[385]},{"name":"LINEREQUESTMODE_MAKECALL","features":[385]},{"name":"LINEREQUESTMODE_MEDIACALL","features":[385]},{"name":"LINEROAMMODE_HOME","features":[385]},{"name":"LINEROAMMODE_ROAMA","features":[385]},{"name":"LINEROAMMODE_ROAMB","features":[385]},{"name":"LINEROAMMODE_UNAVAIL","features":[385]},{"name":"LINEROAMMODE_UNKNOWN","features":[385]},{"name":"LINESPECIALINFO_CUSTIRREG","features":[385]},{"name":"LINESPECIALINFO_NOCIRCUIT","features":[385]},{"name":"LINESPECIALINFO_REORDER","features":[385]},{"name":"LINESPECIALINFO_UNAVAIL","features":[385]},{"name":"LINESPECIALINFO_UNKNOWN","features":[385]},{"name":"LINETERMCAPS","features":[385]},{"name":"LINETERMDEV_HEADSET","features":[385]},{"name":"LINETERMDEV_PHONE","features":[385]},{"name":"LINETERMDEV_SPEAKER","features":[385]},{"name":"LINETERMMODE_BUTTONS","features":[385]},{"name":"LINETERMMODE_DISPLAY","features":[385]},{"name":"LINETERMMODE_HOOKSWITCH","features":[385]},{"name":"LINETERMMODE_LAMPS","features":[385]},{"name":"LINETERMMODE_MEDIABIDIRECT","features":[385]},{"name":"LINETERMMODE_MEDIAFROMLINE","features":[385]},{"name":"LINETERMMODE_MEDIATOLINE","features":[385]},{"name":"LINETERMMODE_RINGER","features":[385]},{"name":"LINETERMSHARING_PRIVATE","features":[385]},{"name":"LINETERMSHARING_SHAREDCONF","features":[385]},{"name":"LINETERMSHARING_SHAREDEXCL","features":[385]},{"name":"LINETOLLLISTOPTION_ADD","features":[385]},{"name":"LINETOLLLISTOPTION_REMOVE","features":[385]},{"name":"LINETONEMODE_BEEP","features":[385]},{"name":"LINETONEMODE_BILLING","features":[385]},{"name":"LINETONEMODE_BUSY","features":[385]},{"name":"LINETONEMODE_CUSTOM","features":[385]},{"name":"LINETONEMODE_RINGBACK","features":[385]},{"name":"LINETRANSFERMODE_CONFERENCE","features":[385]},{"name":"LINETRANSFERMODE_TRANSFER","features":[385]},{"name":"LINETRANSLATECAPS","features":[385]},{"name":"LINETRANSLATEOPTION_CANCELCALLWAITING","features":[385]},{"name":"LINETRANSLATEOPTION_CARDOVERRIDE","features":[385]},{"name":"LINETRANSLATEOPTION_FORCELD","features":[385]},{"name":"LINETRANSLATEOPTION_FORCELOCAL","features":[385]},{"name":"LINETRANSLATEOUTPUT","features":[385]},{"name":"LINETRANSLATERESULT_CANONICAL","features":[385]},{"name":"LINETRANSLATERESULT_DIALBILLING","features":[385]},{"name":"LINETRANSLATERESULT_DIALDIALTONE","features":[385]},{"name":"LINETRANSLATERESULT_DIALPROMPT","features":[385]},{"name":"LINETRANSLATERESULT_DIALQUIET","features":[385]},{"name":"LINETRANSLATERESULT_INTERNATIONAL","features":[385]},{"name":"LINETRANSLATERESULT_INTOLLLIST","features":[385]},{"name":"LINETRANSLATERESULT_LOCAL","features":[385]},{"name":"LINETRANSLATERESULT_LONGDISTANCE","features":[385]},{"name":"LINETRANSLATERESULT_NOTINTOLLLIST","features":[385]},{"name":"LINETRANSLATERESULT_NOTRANSLATION","features":[385]},{"name":"LINETRANSLATERESULT_VOICEDETECT","features":[385]},{"name":"LINETSPIOPTION_NONREENTRANT","features":[385]},{"name":"LINE_ADDRESSSTATE","features":[385]},{"name":"LINE_AGENTSESSIONSTATUS","features":[385]},{"name":"LINE_AGENTSPECIFIC","features":[385]},{"name":"LINE_AGENTSTATUS","features":[385]},{"name":"LINE_AGENTSTATUSEX","features":[385]},{"name":"LINE_APPNEWCALL","features":[385]},{"name":"LINE_APPNEWCALLHUB","features":[385]},{"name":"LINE_CALLHUBCLOSE","features":[385]},{"name":"LINE_CALLINFO","features":[385]},{"name":"LINE_CALLSTATE","features":[385]},{"name":"LINE_CLOSE","features":[385]},{"name":"LINE_CREATE","features":[385]},{"name":"LINE_DEVSPECIFIC","features":[385]},{"name":"LINE_DEVSPECIFICEX","features":[385]},{"name":"LINE_DEVSPECIFICFEATURE","features":[385]},{"name":"LINE_GATHERDIGITS","features":[385]},{"name":"LINE_GENERATE","features":[385]},{"name":"LINE_GROUPSTATUS","features":[385]},{"name":"LINE_LINEDEVSTATE","features":[385]},{"name":"LINE_MONITORDIGITS","features":[385]},{"name":"LINE_MONITORMEDIA","features":[385]},{"name":"LINE_MONITORTONE","features":[385]},{"name":"LINE_PROXYREQUEST","features":[385]},{"name":"LINE_PROXYSTATUS","features":[385]},{"name":"LINE_QUEUESTATUS","features":[385]},{"name":"LINE_REMOVE","features":[385]},{"name":"LINE_REPLY","features":[385]},{"name":"LINE_REQUEST","features":[385]},{"name":"LM_BROKENFLUTTER","features":[385]},{"name":"LM_DUMMY","features":[385]},{"name":"LM_FLASH","features":[385]},{"name":"LM_FLUTTER","features":[385]},{"name":"LM_OFF","features":[385]},{"name":"LM_STEADY","features":[385]},{"name":"LM_UNKNOWN","features":[385]},{"name":"LM_WINK","features":[385]},{"name":"LPGETTNEFSTREAMCODEPAGE","features":[385,356]},{"name":"LPOPENTNEFSTREAM","features":[385,386,356]},{"name":"LPOPENTNEFSTREAMEX","features":[385,386,356]},{"name":"ME_ADDRESS_EVENT","features":[385]},{"name":"ME_ASR_TERMINAL_EVENT","features":[385]},{"name":"ME_CALL_EVENT","features":[385]},{"name":"ME_FILE_TERMINAL_EVENT","features":[385]},{"name":"ME_PRIVATE_EVENT","features":[385]},{"name":"ME_TONE_TERMINAL_EVENT","features":[385]},{"name":"ME_TSP_DATA","features":[385]},{"name":"ME_TTS_TERMINAL_EVENT","features":[385]},{"name":"MSP_ADDRESS_EVENT","features":[385]},{"name":"MSP_CALL_EVENT","features":[385]},{"name":"MSP_CALL_EVENT_CAUSE","features":[385]},{"name":"MSP_EVENT","features":[385]},{"name":"MSP_EVENT_INFO","features":[385,356]},{"name":"McastAddressAllocation","features":[385]},{"name":"NSID","features":[385]},{"name":"OPENTNEFSTREAM","features":[385]},{"name":"OPENTNEFSTREAMEX","features":[385]},{"name":"OT_CONFERENCE","features":[385]},{"name":"OT_USER","features":[385]},{"name":"OpenTnefStream","features":[385,386,356]},{"name":"OpenTnefStreamEx","features":[385,386,356]},{"name":"PBF_ABBREVDIAL","features":[385]},{"name":"PBF_BRIDGEDAPP","features":[385]},{"name":"PBF_BUSY","features":[385]},{"name":"PBF_CALLAPP","features":[385]},{"name":"PBF_CALLID","features":[385]},{"name":"PBF_CAMPON","features":[385]},{"name":"PBF_CONFERENCE","features":[385]},{"name":"PBF_CONNECT","features":[385]},{"name":"PBF_COVER","features":[385]},{"name":"PBF_DATAOFF","features":[385]},{"name":"PBF_DATAON","features":[385]},{"name":"PBF_DATETIME","features":[385]},{"name":"PBF_DIRECTORY","features":[385]},{"name":"PBF_DISCONNECT","features":[385]},{"name":"PBF_DONOTDISTURB","features":[385]},{"name":"PBF_DROP","features":[385]},{"name":"PBF_FLASH","features":[385]},{"name":"PBF_FORWARD","features":[385]},{"name":"PBF_HOLD","features":[385]},{"name":"PBF_INTERCOM","features":[385]},{"name":"PBF_LASTNUM","features":[385]},{"name":"PBF_MSGINDICATOR","features":[385]},{"name":"PBF_MSGWAITOFF","features":[385]},{"name":"PBF_MSGWAITON","features":[385]},{"name":"PBF_MUTE","features":[385]},{"name":"PBF_NIGHTSRV","features":[385]},{"name":"PBF_NONE","features":[385]},{"name":"PBF_PARK","features":[385]},{"name":"PBF_PICKUP","features":[385]},{"name":"PBF_QUEUECALL","features":[385]},{"name":"PBF_RECALL","features":[385]},{"name":"PBF_REDIRECT","features":[385]},{"name":"PBF_REJECT","features":[385]},{"name":"PBF_REPDIAL","features":[385]},{"name":"PBF_RINGAGAIN","features":[385]},{"name":"PBF_SAVEREPEAT","features":[385]},{"name":"PBF_SELECTRING","features":[385]},{"name":"PBF_SEND","features":[385]},{"name":"PBF_SENDCALLS","features":[385]},{"name":"PBF_SETREPDIAL","features":[385]},{"name":"PBF_SPEAKEROFF","features":[385]},{"name":"PBF_SPEAKERON","features":[385]},{"name":"PBF_STATIONSPEED","features":[385]},{"name":"PBF_SYSTEMSPEED","features":[385]},{"name":"PBF_TRANSFER","features":[385]},{"name":"PBF_UNKNOWN","features":[385]},{"name":"PBF_VOLUMEDOWN","features":[385]},{"name":"PBF_VOLUMEUP","features":[385]},{"name":"PBM_CALL","features":[385]},{"name":"PBM_DISPLAY","features":[385]},{"name":"PBM_DUMMY","features":[385]},{"name":"PBM_FEATURE","features":[385]},{"name":"PBM_KEYPAD","features":[385]},{"name":"PBM_LOCAL","features":[385]},{"name":"PBS_DOWN","features":[385]},{"name":"PBS_UNAVAIL","features":[385]},{"name":"PBS_UNKNOWN","features":[385]},{"name":"PBS_UP","features":[385]},{"name":"PCB_DEVSPECIFICBUFFER","features":[385]},{"name":"PCL_DISPLAYNUMCOLUMNS","features":[385]},{"name":"PCL_DISPLAYNUMROWS","features":[385]},{"name":"PCL_GENERICPHONE","features":[385]},{"name":"PCL_HANDSETHOOKSWITCHMODES","features":[385]},{"name":"PCL_HEADSETHOOKSWITCHMODES","features":[385]},{"name":"PCL_HOOKSWITCHES","features":[385]},{"name":"PCL_NUMBUTTONLAMPS","features":[385]},{"name":"PCL_NUMRINGMODES","features":[385]},{"name":"PCL_SPEAKERPHONEHOOKSWITCHMODES","features":[385]},{"name":"PCS_PHONEINFO","features":[385]},{"name":"PCS_PHONENAME","features":[385]},{"name":"PCS_PROVIDERINFO","features":[385]},{"name":"PE_ANSWER","features":[385]},{"name":"PE_BUTTON","features":[385]},{"name":"PE_CAPSCHANGE","features":[385]},{"name":"PE_CLOSE","features":[385]},{"name":"PE_DIALING","features":[385]},{"name":"PE_DISCONNECT","features":[385]},{"name":"PE_DISPLAY","features":[385]},{"name":"PE_HOOKSWITCH","features":[385]},{"name":"PE_LAMPMODE","features":[385]},{"name":"PE_LASTITEM","features":[385]},{"name":"PE_NUMBERGATHERED","features":[385]},{"name":"PE_RINGMODE","features":[385]},{"name":"PE_RINGVOLUME","features":[385]},{"name":"PHONEBUTTONFUNCTION_ABBREVDIAL","features":[385]},{"name":"PHONEBUTTONFUNCTION_BRIDGEDAPP","features":[385]},{"name":"PHONEBUTTONFUNCTION_BUSY","features":[385]},{"name":"PHONEBUTTONFUNCTION_CALLAPP","features":[385]},{"name":"PHONEBUTTONFUNCTION_CALLID","features":[385]},{"name":"PHONEBUTTONFUNCTION_CAMPON","features":[385]},{"name":"PHONEBUTTONFUNCTION_CONFERENCE","features":[385]},{"name":"PHONEBUTTONFUNCTION_CONNECT","features":[385]},{"name":"PHONEBUTTONFUNCTION_COVER","features":[385]},{"name":"PHONEBUTTONFUNCTION_DATAOFF","features":[385]},{"name":"PHONEBUTTONFUNCTION_DATAON","features":[385]},{"name":"PHONEBUTTONFUNCTION_DATETIME","features":[385]},{"name":"PHONEBUTTONFUNCTION_DIRECTORY","features":[385]},{"name":"PHONEBUTTONFUNCTION_DISCONNECT","features":[385]},{"name":"PHONEBUTTONFUNCTION_DONOTDISTURB","features":[385]},{"name":"PHONEBUTTONFUNCTION_DROP","features":[385]},{"name":"PHONEBUTTONFUNCTION_FLASH","features":[385]},{"name":"PHONEBUTTONFUNCTION_FORWARD","features":[385]},{"name":"PHONEBUTTONFUNCTION_HOLD","features":[385]},{"name":"PHONEBUTTONFUNCTION_INTERCOM","features":[385]},{"name":"PHONEBUTTONFUNCTION_LASTNUM","features":[385]},{"name":"PHONEBUTTONFUNCTION_MSGINDICATOR","features":[385]},{"name":"PHONEBUTTONFUNCTION_MSGWAITOFF","features":[385]},{"name":"PHONEBUTTONFUNCTION_MSGWAITON","features":[385]},{"name":"PHONEBUTTONFUNCTION_MUTE","features":[385]},{"name":"PHONEBUTTONFUNCTION_NIGHTSRV","features":[385]},{"name":"PHONEBUTTONFUNCTION_NONE","features":[385]},{"name":"PHONEBUTTONFUNCTION_PARK","features":[385]},{"name":"PHONEBUTTONFUNCTION_PICKUP","features":[385]},{"name":"PHONEBUTTONFUNCTION_QUEUECALL","features":[385]},{"name":"PHONEBUTTONFUNCTION_RECALL","features":[385]},{"name":"PHONEBUTTONFUNCTION_REDIRECT","features":[385]},{"name":"PHONEBUTTONFUNCTION_REJECT","features":[385]},{"name":"PHONEBUTTONFUNCTION_REPDIAL","features":[385]},{"name":"PHONEBUTTONFUNCTION_RINGAGAIN","features":[385]},{"name":"PHONEBUTTONFUNCTION_SAVEREPEAT","features":[385]},{"name":"PHONEBUTTONFUNCTION_SELECTRING","features":[385]},{"name":"PHONEBUTTONFUNCTION_SEND","features":[385]},{"name":"PHONEBUTTONFUNCTION_SENDCALLS","features":[385]},{"name":"PHONEBUTTONFUNCTION_SETREPDIAL","features":[385]},{"name":"PHONEBUTTONFUNCTION_SPEAKEROFF","features":[385]},{"name":"PHONEBUTTONFUNCTION_SPEAKERON","features":[385]},{"name":"PHONEBUTTONFUNCTION_STATIONSPEED","features":[385]},{"name":"PHONEBUTTONFUNCTION_SYSTEMSPEED","features":[385]},{"name":"PHONEBUTTONFUNCTION_TRANSFER","features":[385]},{"name":"PHONEBUTTONFUNCTION_UNKNOWN","features":[385]},{"name":"PHONEBUTTONFUNCTION_VOLUMEDOWN","features":[385]},{"name":"PHONEBUTTONFUNCTION_VOLUMEUP","features":[385]},{"name":"PHONEBUTTONINFO","features":[385]},{"name":"PHONEBUTTONMODE_CALL","features":[385]},{"name":"PHONEBUTTONMODE_DISPLAY","features":[385]},{"name":"PHONEBUTTONMODE_DUMMY","features":[385]},{"name":"PHONEBUTTONMODE_FEATURE","features":[385]},{"name":"PHONEBUTTONMODE_KEYPAD","features":[385]},{"name":"PHONEBUTTONMODE_LOCAL","features":[385]},{"name":"PHONEBUTTONSTATE_DOWN","features":[385]},{"name":"PHONEBUTTONSTATE_UNAVAIL","features":[385]},{"name":"PHONEBUTTONSTATE_UNKNOWN","features":[385]},{"name":"PHONEBUTTONSTATE_UP","features":[385]},{"name":"PHONECALLBACK","features":[385]},{"name":"PHONECAPS","features":[385]},{"name":"PHONECAPS_BUFFER","features":[385]},{"name":"PHONECAPS_LONG","features":[385]},{"name":"PHONECAPS_STRING","features":[385]},{"name":"PHONEERR_ALLOCATED","features":[385]},{"name":"PHONEERR_BADDEVICEID","features":[385]},{"name":"PHONEERR_DISCONNECTED","features":[385]},{"name":"PHONEERR_INCOMPATIBLEAPIVERSION","features":[385]},{"name":"PHONEERR_INCOMPATIBLEEXTVERSION","features":[385]},{"name":"PHONEERR_INIFILECORRUPT","features":[385]},{"name":"PHONEERR_INUSE","features":[385]},{"name":"PHONEERR_INVALAPPHANDLE","features":[385]},{"name":"PHONEERR_INVALAPPNAME","features":[385]},{"name":"PHONEERR_INVALBUTTONLAMPID","features":[385]},{"name":"PHONEERR_INVALBUTTONMODE","features":[385]},{"name":"PHONEERR_INVALBUTTONSTATE","features":[385]},{"name":"PHONEERR_INVALDATAID","features":[385]},{"name":"PHONEERR_INVALDEVICECLASS","features":[385]},{"name":"PHONEERR_INVALEXTVERSION","features":[385]},{"name":"PHONEERR_INVALHOOKSWITCHDEV","features":[385]},{"name":"PHONEERR_INVALHOOKSWITCHMODE","features":[385]},{"name":"PHONEERR_INVALLAMPMODE","features":[385]},{"name":"PHONEERR_INVALPARAM","features":[385]},{"name":"PHONEERR_INVALPHONEHANDLE","features":[385]},{"name":"PHONEERR_INVALPHONESTATE","features":[385]},{"name":"PHONEERR_INVALPOINTER","features":[385]},{"name":"PHONEERR_INVALPRIVILEGE","features":[385]},{"name":"PHONEERR_INVALRINGMODE","features":[385]},{"name":"PHONEERR_NODEVICE","features":[385]},{"name":"PHONEERR_NODRIVER","features":[385]},{"name":"PHONEERR_NOMEM","features":[385]},{"name":"PHONEERR_NOTOWNER","features":[385]},{"name":"PHONEERR_OPERATIONFAILED","features":[385]},{"name":"PHONEERR_OPERATIONUNAVAIL","features":[385]},{"name":"PHONEERR_REINIT","features":[385]},{"name":"PHONEERR_REQUESTOVERRUN","features":[385]},{"name":"PHONEERR_RESOURCEUNAVAIL","features":[385]},{"name":"PHONEERR_SERVICE_NOT_RUNNING","features":[385]},{"name":"PHONEERR_STRUCTURETOOSMALL","features":[385]},{"name":"PHONEERR_UNINITIALIZED","features":[385]},{"name":"PHONEEVENT","features":[385]},{"name":"PHONEEXTENSIONID","features":[385]},{"name":"PHONEFEATURE_GENERICPHONE","features":[385]},{"name":"PHONEFEATURE_GETBUTTONINFO","features":[385]},{"name":"PHONEFEATURE_GETDATA","features":[385]},{"name":"PHONEFEATURE_GETDISPLAY","features":[385]},{"name":"PHONEFEATURE_GETGAINHANDSET","features":[385]},{"name":"PHONEFEATURE_GETGAINHEADSET","features":[385]},{"name":"PHONEFEATURE_GETGAINSPEAKER","features":[385]},{"name":"PHONEFEATURE_GETHOOKSWITCHHANDSET","features":[385]},{"name":"PHONEFEATURE_GETHOOKSWITCHHEADSET","features":[385]},{"name":"PHONEFEATURE_GETHOOKSWITCHSPEAKER","features":[385]},{"name":"PHONEFEATURE_GETLAMP","features":[385]},{"name":"PHONEFEATURE_GETRING","features":[385]},{"name":"PHONEFEATURE_GETVOLUMEHANDSET","features":[385]},{"name":"PHONEFEATURE_GETVOLUMEHEADSET","features":[385]},{"name":"PHONEFEATURE_GETVOLUMESPEAKER","features":[385]},{"name":"PHONEFEATURE_SETBUTTONINFO","features":[385]},{"name":"PHONEFEATURE_SETDATA","features":[385]},{"name":"PHONEFEATURE_SETDISPLAY","features":[385]},{"name":"PHONEFEATURE_SETGAINHANDSET","features":[385]},{"name":"PHONEFEATURE_SETGAINHEADSET","features":[385]},{"name":"PHONEFEATURE_SETGAINSPEAKER","features":[385]},{"name":"PHONEFEATURE_SETHOOKSWITCHHANDSET","features":[385]},{"name":"PHONEFEATURE_SETHOOKSWITCHHEADSET","features":[385]},{"name":"PHONEFEATURE_SETHOOKSWITCHSPEAKER","features":[385]},{"name":"PHONEFEATURE_SETLAMP","features":[385]},{"name":"PHONEFEATURE_SETRING","features":[385]},{"name":"PHONEFEATURE_SETVOLUMEHANDSET","features":[385]},{"name":"PHONEFEATURE_SETVOLUMEHEADSET","features":[385]},{"name":"PHONEFEATURE_SETVOLUMESPEAKER","features":[385]},{"name":"PHONEHOOKSWITCHDEV_HANDSET","features":[385]},{"name":"PHONEHOOKSWITCHDEV_HEADSET","features":[385]},{"name":"PHONEHOOKSWITCHDEV_SPEAKER","features":[385]},{"name":"PHONEHOOKSWITCHMODE_MIC","features":[385]},{"name":"PHONEHOOKSWITCHMODE_MICSPEAKER","features":[385]},{"name":"PHONEHOOKSWITCHMODE_ONHOOK","features":[385]},{"name":"PHONEHOOKSWITCHMODE_SPEAKER","features":[385]},{"name":"PHONEHOOKSWITCHMODE_UNKNOWN","features":[385]},{"name":"PHONEINITIALIZEEXOPTION_USECOMPLETIONPORT","features":[385]},{"name":"PHONEINITIALIZEEXOPTION_USEEVENT","features":[385]},{"name":"PHONEINITIALIZEEXOPTION_USEHIDDENWINDOW","features":[385]},{"name":"PHONEINITIALIZEEXPARAMS","features":[385,305]},{"name":"PHONELAMPMODE_BROKENFLUTTER","features":[385]},{"name":"PHONELAMPMODE_DUMMY","features":[385]},{"name":"PHONELAMPMODE_FLASH","features":[385]},{"name":"PHONELAMPMODE_FLUTTER","features":[385]},{"name":"PHONELAMPMODE_OFF","features":[385]},{"name":"PHONELAMPMODE_STEADY","features":[385]},{"name":"PHONELAMPMODE_UNKNOWN","features":[385]},{"name":"PHONELAMPMODE_WINK","features":[385]},{"name":"PHONEMESSAGE","features":[385]},{"name":"PHONEPRIVILEGE_MONITOR","features":[385]},{"name":"PHONEPRIVILEGE_OWNER","features":[385]},{"name":"PHONESTATE_CAPSCHANGE","features":[385]},{"name":"PHONESTATE_CONNECTED","features":[385]},{"name":"PHONESTATE_DEVSPECIFIC","features":[385]},{"name":"PHONESTATE_DISCONNECTED","features":[385]},{"name":"PHONESTATE_DISPLAY","features":[385]},{"name":"PHONESTATE_HANDSETGAIN","features":[385]},{"name":"PHONESTATE_HANDSETHOOKSWITCH","features":[385]},{"name":"PHONESTATE_HANDSETVOLUME","features":[385]},{"name":"PHONESTATE_HEADSETGAIN","features":[385]},{"name":"PHONESTATE_HEADSETHOOKSWITCH","features":[385]},{"name":"PHONESTATE_HEADSETVOLUME","features":[385]},{"name":"PHONESTATE_LAMP","features":[385]},{"name":"PHONESTATE_MONITORS","features":[385]},{"name":"PHONESTATE_OTHER","features":[385]},{"name":"PHONESTATE_OWNER","features":[385]},{"name":"PHONESTATE_REINIT","features":[385]},{"name":"PHONESTATE_REMOVED","features":[385]},{"name":"PHONESTATE_RESUME","features":[385]},{"name":"PHONESTATE_RINGMODE","features":[385]},{"name":"PHONESTATE_RINGVOLUME","features":[385]},{"name":"PHONESTATE_SPEAKERGAIN","features":[385]},{"name":"PHONESTATE_SPEAKERHOOKSWITCH","features":[385]},{"name":"PHONESTATE_SPEAKERVOLUME","features":[385]},{"name":"PHONESTATE_SUSPEND","features":[385]},{"name":"PHONESTATUS","features":[385]},{"name":"PHONESTATUSFLAGS_CONNECTED","features":[385]},{"name":"PHONESTATUSFLAGS_SUSPENDED","features":[385]},{"name":"PHONE_BUTTON","features":[385]},{"name":"PHONE_BUTTON_FUNCTION","features":[385]},{"name":"PHONE_BUTTON_MODE","features":[385]},{"name":"PHONE_BUTTON_STATE","features":[385]},{"name":"PHONE_CLOSE","features":[385]},{"name":"PHONE_CREATE","features":[385]},{"name":"PHONE_DEVSPECIFIC","features":[385]},{"name":"PHONE_EVENT","features":[385]},{"name":"PHONE_HOOK_SWITCH_DEVICE","features":[385]},{"name":"PHONE_HOOK_SWITCH_STATE","features":[385]},{"name":"PHONE_LAMP_MODE","features":[385]},{"name":"PHONE_PRIVILEGE","features":[385]},{"name":"PHONE_REMOVE","features":[385]},{"name":"PHONE_REPLY","features":[385]},{"name":"PHONE_STATE","features":[385]},{"name":"PHONE_TONE","features":[385]},{"name":"PHSD_HANDSET","features":[385]},{"name":"PHSD_HEADSET","features":[385]},{"name":"PHSD_SPEAKERPHONE","features":[385]},{"name":"PHSS_OFFHOOK","features":[385]},{"name":"PHSS_OFFHOOK_MIC_ONLY","features":[385]},{"name":"PHSS_OFFHOOK_SPEAKER_ONLY","features":[385]},{"name":"PHSS_ONHOOK","features":[385]},{"name":"PP_MONITOR","features":[385]},{"name":"PP_OWNER","features":[385]},{"name":"PRIVATEOBJECT_ADDRESS","features":[385]},{"name":"PRIVATEOBJECT_CALL","features":[385]},{"name":"PRIVATEOBJECT_CALLID","features":[385]},{"name":"PRIVATEOBJECT_LINE","features":[385]},{"name":"PRIVATEOBJECT_NONE","features":[385]},{"name":"PRIVATEOBJECT_PHONE","features":[385]},{"name":"PT_BUSY","features":[385]},{"name":"PT_ERRORTONE","features":[385]},{"name":"PT_EXTERNALDIALTONE","features":[385]},{"name":"PT_KEYPADA","features":[385]},{"name":"PT_KEYPADB","features":[385]},{"name":"PT_KEYPADC","features":[385]},{"name":"PT_KEYPADD","features":[385]},{"name":"PT_KEYPADEIGHT","features":[385]},{"name":"PT_KEYPADFIVE","features":[385]},{"name":"PT_KEYPADFOUR","features":[385]},{"name":"PT_KEYPADNINE","features":[385]},{"name":"PT_KEYPADONE","features":[385]},{"name":"PT_KEYPADPOUND","features":[385]},{"name":"PT_KEYPADSEVEN","features":[385]},{"name":"PT_KEYPADSIX","features":[385]},{"name":"PT_KEYPADSTAR","features":[385]},{"name":"PT_KEYPADTHREE","features":[385]},{"name":"PT_KEYPADTWO","features":[385]},{"name":"PT_KEYPADZERO","features":[385]},{"name":"PT_NORMALDIALTONE","features":[385]},{"name":"PT_RINGBACK","features":[385]},{"name":"PT_SILENCE","features":[385]},{"name":"QE_ADMISSIONFAILURE","features":[385]},{"name":"QE_GENERICERROR","features":[385]},{"name":"QE_LASTITEM","features":[385]},{"name":"QE_NOQOS","features":[385]},{"name":"QE_POLICYFAILURE","features":[385]},{"name":"QOS_EVENT","features":[385]},{"name":"QOS_SERVICE_LEVEL","features":[385]},{"name":"QSL_BEST_EFFORT","features":[385]},{"name":"QSL_IF_AVAILABLE","features":[385]},{"name":"QSL_NEEDED","features":[385]},{"name":"RAS_LOCAL","features":[385]},{"name":"RAS_REGION","features":[385]},{"name":"RAS_SITE","features":[385]},{"name":"RAS_WORLD","features":[385]},{"name":"RENDBIND_AUTHENTICATE","features":[385]},{"name":"RENDBIND_DEFAULTCREDENTIALS","features":[385]},{"name":"RENDBIND_DEFAULTDOMAINNAME","features":[385]},{"name":"RENDBIND_DEFAULTPASSWORD","features":[385]},{"name":"RENDBIND_DEFAULTUSERNAME","features":[385]},{"name":"RENDDATA","features":[385]},{"name":"RND_ADVERTISING_SCOPE","features":[385]},{"name":"Rendezvous","features":[385]},{"name":"RequestMakeCall","features":[385]},{"name":"STRINGFORMAT_ASCII","features":[385]},{"name":"STRINGFORMAT_BINARY","features":[385]},{"name":"STRINGFORMAT_DBCS","features":[385]},{"name":"STRINGFORMAT_UNICODE","features":[385]},{"name":"STRM_CONFIGURED","features":[385]},{"name":"STRM_INITIAL","features":[385]},{"name":"STRM_PAUSED","features":[385]},{"name":"STRM_RUNNING","features":[385]},{"name":"STRM_STOPPED","features":[385]},{"name":"STRM_TERMINALSELECTED","features":[385]},{"name":"STnefProblem","features":[385]},{"name":"STnefProblemArray","features":[385]},{"name":"TAPI","features":[385]},{"name":"TAPIERR_CONNECTED","features":[385]},{"name":"TAPIERR_DESTBUSY","features":[385]},{"name":"TAPIERR_DESTNOANSWER","features":[385]},{"name":"TAPIERR_DESTUNAVAIL","features":[385]},{"name":"TAPIERR_DEVICECLASSUNAVAIL","features":[385]},{"name":"TAPIERR_DEVICEIDUNAVAIL","features":[385]},{"name":"TAPIERR_DEVICEINUSE","features":[385]},{"name":"TAPIERR_DROPPED","features":[385]},{"name":"TAPIERR_INVALDESTADDRESS","features":[385]},{"name":"TAPIERR_INVALDEVICECLASS","features":[385]},{"name":"TAPIERR_INVALDEVICEID","features":[385]},{"name":"TAPIERR_INVALPOINTER","features":[385]},{"name":"TAPIERR_INVALWINDOWHANDLE","features":[385]},{"name":"TAPIERR_MMCWRITELOCKED","features":[385]},{"name":"TAPIERR_NOREQUESTRECIPIENT","features":[385]},{"name":"TAPIERR_NOTADMIN","features":[385]},{"name":"TAPIERR_PROVIDERALREADYINSTALLED","features":[385]},{"name":"TAPIERR_REQUESTCANCELLED","features":[385]},{"name":"TAPIERR_REQUESTFAILED","features":[385]},{"name":"TAPIERR_REQUESTQUEUEFULL","features":[385]},{"name":"TAPIERR_SCP_ALREADY_EXISTS","features":[385]},{"name":"TAPIERR_SCP_DOES_NOT_EXIST","features":[385]},{"name":"TAPIERR_UNKNOWNREQUESTID","features":[385]},{"name":"TAPIERR_UNKNOWNWINHANDLE","features":[385]},{"name":"TAPIMAXAPPNAMESIZE","features":[385]},{"name":"TAPIMAXCALLEDPARTYSIZE","features":[385]},{"name":"TAPIMAXCOMMENTSIZE","features":[385]},{"name":"TAPIMAXDESTADDRESSSIZE","features":[385]},{"name":"TAPIMAXDEVICECLASSSIZE","features":[385]},{"name":"TAPIMAXDEVICEIDSIZE","features":[385]},{"name":"TAPIMEDIATYPE_AUDIO","features":[385]},{"name":"TAPIMEDIATYPE_DATAMODEM","features":[385]},{"name":"TAPIMEDIATYPE_G3FAX","features":[385]},{"name":"TAPIMEDIATYPE_MULTITRACK","features":[385]},{"name":"TAPIMEDIATYPE_VIDEO","features":[385]},{"name":"TAPIOBJECT_EVENT","features":[385]},{"name":"TAPI_CURRENT_VERSION","features":[385]},{"name":"TAPI_CUSTOMTONE","features":[385]},{"name":"TAPI_DETECTTONE","features":[385]},{"name":"TAPI_EVENT","features":[385]},{"name":"TAPI_E_ADDRESSBLOCKED","features":[385]},{"name":"TAPI_E_ALLOCATED","features":[385]},{"name":"TAPI_E_BILLINGREJECTED","features":[385]},{"name":"TAPI_E_CALLCENTER_GROUP_REMOVED","features":[385]},{"name":"TAPI_E_CALLCENTER_INVALAGENTACTIVITY","features":[385]},{"name":"TAPI_E_CALLCENTER_INVALAGENTGROUP","features":[385]},{"name":"TAPI_E_CALLCENTER_INVALAGENTID","features":[385]},{"name":"TAPI_E_CALLCENTER_INVALAGENTSTATE","features":[385]},{"name":"TAPI_E_CALLCENTER_INVALPASSWORD","features":[385]},{"name":"TAPI_E_CALLCENTER_NO_AGENT_ID","features":[385]},{"name":"TAPI_E_CALLCENTER_QUEUE_REMOVED","features":[385]},{"name":"TAPI_E_CALLNOTSELECTED","features":[385]},{"name":"TAPI_E_CALLUNAVAIL","features":[385]},{"name":"TAPI_E_COMPLETIONOVERRUN","features":[385]},{"name":"TAPI_E_CONFERENCEFULL","features":[385]},{"name":"TAPI_E_DESTBUSY","features":[385]},{"name":"TAPI_E_DESTNOANSWER","features":[385]},{"name":"TAPI_E_DESTUNAVAIL","features":[385]},{"name":"TAPI_E_DIALMODIFIERNOTSUPPORTED","features":[385]},{"name":"TAPI_E_DROPPED","features":[385]},{"name":"TAPI_E_INUSE","features":[385]},{"name":"TAPI_E_INVALADDRESS","features":[385]},{"name":"TAPI_E_INVALADDRESSSTATE","features":[385]},{"name":"TAPI_E_INVALADDRESSTYPE","features":[385]},{"name":"TAPI_E_INVALBUTTONLAMPID","features":[385]},{"name":"TAPI_E_INVALBUTTONSTATE","features":[385]},{"name":"TAPI_E_INVALCALLPARAMS","features":[385]},{"name":"TAPI_E_INVALCALLPRIVILEGE","features":[385]},{"name":"TAPI_E_INVALCALLSTATE","features":[385]},{"name":"TAPI_E_INVALCARD","features":[385]},{"name":"TAPI_E_INVALCOMPLETIONID","features":[385]},{"name":"TAPI_E_INVALCOUNTRYCODE","features":[385]},{"name":"TAPI_E_INVALDATAID","features":[385]},{"name":"TAPI_E_INVALDEVICECLASS","features":[385]},{"name":"TAPI_E_INVALDIALPARAMS","features":[385]},{"name":"TAPI_E_INVALDIGITS","features":[385]},{"name":"TAPI_E_INVALFEATURE","features":[385]},{"name":"TAPI_E_INVALGROUPID","features":[385]},{"name":"TAPI_E_INVALHOOKSWITCHDEV","features":[385]},{"name":"TAPI_E_INVALIDDIRECTION","features":[385]},{"name":"TAPI_E_INVALIDMEDIATYPE","features":[385]},{"name":"TAPI_E_INVALIDSTREAM","features":[385]},{"name":"TAPI_E_INVALIDSTREAMSTATE","features":[385]},{"name":"TAPI_E_INVALIDTERMINAL","features":[385]},{"name":"TAPI_E_INVALIDTERMINALCLASS","features":[385]},{"name":"TAPI_E_INVALLIST","features":[385]},{"name":"TAPI_E_INVALLOCATION","features":[385]},{"name":"TAPI_E_INVALMESSAGEID","features":[385]},{"name":"TAPI_E_INVALMODE","features":[385]},{"name":"TAPI_E_INVALPARKID","features":[385]},{"name":"TAPI_E_INVALPRIVILEGE","features":[385]},{"name":"TAPI_E_INVALRATE","features":[385]},{"name":"TAPI_E_INVALTIMEOUT","features":[385]},{"name":"TAPI_E_INVALTONE","features":[385]},{"name":"TAPI_E_MAXSTREAMS","features":[385]},{"name":"TAPI_E_MAXTERMINALS","features":[385]},{"name":"TAPI_E_NOCONFERENCE","features":[385]},{"name":"TAPI_E_NODEVICE","features":[385]},{"name":"TAPI_E_NODRIVER","features":[385]},{"name":"TAPI_E_NOEVENT","features":[385]},{"name":"TAPI_E_NOFORMAT","features":[385]},{"name":"TAPI_E_NOITEMS","features":[385]},{"name":"TAPI_E_NOREQUEST","features":[385]},{"name":"TAPI_E_NOREQUESTRECIPIENT","features":[385]},{"name":"TAPI_E_NOTENOUGHMEMORY","features":[385]},{"name":"TAPI_E_NOTERMINALSELECTED","features":[385]},{"name":"TAPI_E_NOTOWNER","features":[385]},{"name":"TAPI_E_NOTREGISTERED","features":[385]},{"name":"TAPI_E_NOTSTOPPED","features":[385]},{"name":"TAPI_E_NOTSUPPORTED","features":[385]},{"name":"TAPI_E_NOT_INITIALIZED","features":[385]},{"name":"TAPI_E_OPERATIONFAILED","features":[385]},{"name":"TAPI_E_PEER_NOT_SET","features":[385]},{"name":"TAPI_E_PHONENOTOPEN","features":[385]},{"name":"TAPI_E_REGISTRY_SETTING_CORRUPT","features":[385]},{"name":"TAPI_E_REINIT","features":[385]},{"name":"TAPI_E_REQUESTCANCELLED","features":[385]},{"name":"TAPI_E_REQUESTFAILED","features":[385]},{"name":"TAPI_E_REQUESTOVERRUN","features":[385]},{"name":"TAPI_E_REQUESTQUEUEFULL","features":[385]},{"name":"TAPI_E_RESOURCEUNAVAIL","features":[385]},{"name":"TAPI_E_SERVICE_NOT_RUNNING","features":[385]},{"name":"TAPI_E_TARGETNOTFOUND","features":[385]},{"name":"TAPI_E_TARGETSELF","features":[385]},{"name":"TAPI_E_TERMINALINUSE","features":[385]},{"name":"TAPI_E_TERMINAL_PEER","features":[385]},{"name":"TAPI_E_TIMEOUT","features":[385]},{"name":"TAPI_E_USERUSERINFOTOOBIG","features":[385]},{"name":"TAPI_E_WRONGEVENT","features":[385]},{"name":"TAPI_E_WRONG_STATE","features":[385]},{"name":"TAPI_GATHERTERM","features":[385]},{"name":"TAPI_OBJECT_TYPE","features":[385]},{"name":"TAPI_REPLY","features":[385]},{"name":"TAPI_TONEMODE","features":[385]},{"name":"TD_BIDIRECTIONAL","features":[385]},{"name":"TD_CAPTURE","features":[385]},{"name":"TD_MULTITRACK_MIXED","features":[385]},{"name":"TD_NONE","features":[385]},{"name":"TD_RENDER","features":[385]},{"name":"TERMINAL_DIRECTION","features":[385]},{"name":"TERMINAL_MEDIA_STATE","features":[385]},{"name":"TERMINAL_STATE","features":[385]},{"name":"TERMINAL_TYPE","features":[385]},{"name":"TE_ACDGROUP","features":[385]},{"name":"TE_ADDRESS","features":[385]},{"name":"TE_ADDRESSCLOSE","features":[385]},{"name":"TE_ADDRESSCREATE","features":[385]},{"name":"TE_ADDRESSDEVSPECIFIC","features":[385]},{"name":"TE_ADDRESSREMOVE","features":[385]},{"name":"TE_AGENT","features":[385]},{"name":"TE_AGENTHANDLER","features":[385]},{"name":"TE_AGENTSESSION","features":[385]},{"name":"TE_ASRTERMINAL","features":[385]},{"name":"TE_CALLHUB","features":[385]},{"name":"TE_CALLINFOCHANGE","features":[385]},{"name":"TE_CALLMEDIA","features":[385]},{"name":"TE_CALLNOTIFICATION","features":[385]},{"name":"TE_CALLSTATE","features":[385]},{"name":"TE_DIGITEVENT","features":[385]},{"name":"TE_FILETERMINAL","features":[385]},{"name":"TE_GATHERDIGITS","features":[385]},{"name":"TE_GENERATEEVENT","features":[385]},{"name":"TE_PHONECREATE","features":[385]},{"name":"TE_PHONEDEVSPECIFIC","features":[385]},{"name":"TE_PHONEEVENT","features":[385]},{"name":"TE_PHONEREMOVE","features":[385]},{"name":"TE_PRIVATE","features":[385]},{"name":"TE_QOSEVENT","features":[385]},{"name":"TE_QUEUE","features":[385]},{"name":"TE_REINIT","features":[385]},{"name":"TE_REQUEST","features":[385]},{"name":"TE_TAPIOBJECT","features":[385]},{"name":"TE_TONEEVENT","features":[385]},{"name":"TE_TONETERMINAL","features":[385]},{"name":"TE_TRANSLATECHANGE","features":[385]},{"name":"TE_TTSTERMINAL","features":[385]},{"name":"TGT_BUFFERFULL","features":[385]},{"name":"TGT_CANCEL","features":[385]},{"name":"TGT_FIRSTTIMEOUT","features":[385]},{"name":"TGT_INTERTIMEOUT","features":[385]},{"name":"TGT_TERMDIGIT","features":[385]},{"name":"TMS_ACTIVE","features":[385]},{"name":"TMS_IDLE","features":[385]},{"name":"TMS_LASTITEM","features":[385]},{"name":"TMS_PAUSED","features":[385]},{"name":"TOT_ADDRESS","features":[385]},{"name":"TOT_CALL","features":[385]},{"name":"TOT_CALLHUB","features":[385]},{"name":"TOT_NONE","features":[385]},{"name":"TOT_PHONE","features":[385]},{"name":"TOT_TAPI","features":[385]},{"name":"TOT_TERMINAL","features":[385]},{"name":"TRP","features":[385]},{"name":"TSPI_LINEACCEPT","features":[385]},{"name":"TSPI_LINEADDTOCONFERENCE","features":[385]},{"name":"TSPI_LINEANSWER","features":[385]},{"name":"TSPI_LINEBLINDTRANSFER","features":[385]},{"name":"TSPI_LINECLOSE","features":[385]},{"name":"TSPI_LINECLOSECALL","features":[385]},{"name":"TSPI_LINECLOSEMSPINSTANCE","features":[385]},{"name":"TSPI_LINECOMPLETECALL","features":[385]},{"name":"TSPI_LINECOMPLETETRANSFER","features":[385]},{"name":"TSPI_LINECONDITIONALMEDIADETECTION","features":[385]},{"name":"TSPI_LINECONFIGDIALOG","features":[385]},{"name":"TSPI_LINECONFIGDIALOGEDIT","features":[385]},{"name":"TSPI_LINECREATEMSPINSTANCE","features":[385]},{"name":"TSPI_LINEDEVSPECIFIC","features":[385]},{"name":"TSPI_LINEDEVSPECIFICFEATURE","features":[385]},{"name":"TSPI_LINEDIAL","features":[385]},{"name":"TSPI_LINEDROP","features":[385]},{"name":"TSPI_LINEDROPNOOWNER","features":[385]},{"name":"TSPI_LINEDROPONCLOSE","features":[385]},{"name":"TSPI_LINEFORWARD","features":[385]},{"name":"TSPI_LINEGATHERDIGITS","features":[385]},{"name":"TSPI_LINEGENERATEDIGITS","features":[385]},{"name":"TSPI_LINEGENERATETONE","features":[385]},{"name":"TSPI_LINEGETADDRESSCAPS","features":[385]},{"name":"TSPI_LINEGETADDRESSID","features":[385]},{"name":"TSPI_LINEGETADDRESSSTATUS","features":[385]},{"name":"TSPI_LINEGETCALLADDRESSID","features":[385]},{"name":"TSPI_LINEGETCALLHUBTRACKING","features":[385]},{"name":"TSPI_LINEGETCALLID","features":[385]},{"name":"TSPI_LINEGETCALLINFO","features":[385]},{"name":"TSPI_LINEGETCALLSTATUS","features":[385]},{"name":"TSPI_LINEGETDEVCAPS","features":[385]},{"name":"TSPI_LINEGETDEVCONFIG","features":[385]},{"name":"TSPI_LINEGETEXTENSIONID","features":[385]},{"name":"TSPI_LINEGETICON","features":[385]},{"name":"TSPI_LINEGETID","features":[385]},{"name":"TSPI_LINEGETLINEDEVSTATUS","features":[385]},{"name":"TSPI_LINEGETNUMADDRESSIDS","features":[385]},{"name":"TSPI_LINEHOLD","features":[385]},{"name":"TSPI_LINEMAKECALL","features":[385]},{"name":"TSPI_LINEMONITORDIGITS","features":[385]},{"name":"TSPI_LINEMONITORMEDIA","features":[385]},{"name":"TSPI_LINEMONITORTONES","features":[385]},{"name":"TSPI_LINEMSPIDENTIFY","features":[385]},{"name":"TSPI_LINENEGOTIATEEXTVERSION","features":[385]},{"name":"TSPI_LINENEGOTIATETSPIVERSION","features":[385]},{"name":"TSPI_LINEOPEN","features":[385]},{"name":"TSPI_LINEPARK","features":[385]},{"name":"TSPI_LINEPICKUP","features":[385]},{"name":"TSPI_LINEPREPAREADDTOCONFERENCE","features":[385]},{"name":"TSPI_LINERECEIVEMSPDATA","features":[385]},{"name":"TSPI_LINEREDIRECT","features":[385]},{"name":"TSPI_LINERELEASEUSERUSERINFO","features":[385]},{"name":"TSPI_LINEREMOVEFROMCONFERENCE","features":[385]},{"name":"TSPI_LINESECURECALL","features":[385]},{"name":"TSPI_LINESELECTEXTVERSION","features":[385]},{"name":"TSPI_LINESENDUSERUSERINFO","features":[385]},{"name":"TSPI_LINESETAPPSPECIFIC","features":[385]},{"name":"TSPI_LINESETCALLHUBTRACKING","features":[385]},{"name":"TSPI_LINESETCALLPARAMS","features":[385]},{"name":"TSPI_LINESETCURRENTLOCATION","features":[385]},{"name":"TSPI_LINESETDEFAULTMEDIADETECTION","features":[385]},{"name":"TSPI_LINESETDEVCONFIG","features":[385]},{"name":"TSPI_LINESETMEDIACONTROL","features":[385]},{"name":"TSPI_LINESETMEDIAMODE","features":[385]},{"name":"TSPI_LINESETSTATUSMESSAGES","features":[385]},{"name":"TSPI_LINESETTERMINAL","features":[385]},{"name":"TSPI_LINESETUPCONFERENCE","features":[385]},{"name":"TSPI_LINESETUPTRANSFER","features":[385]},{"name":"TSPI_LINESWAPHOLD","features":[385]},{"name":"TSPI_LINEUNCOMPLETECALL","features":[385]},{"name":"TSPI_LINEUNHOLD","features":[385]},{"name":"TSPI_LINEUNPARK","features":[385]},{"name":"TSPI_MESSAGE_BASE","features":[385]},{"name":"TSPI_PHONECLOSE","features":[385]},{"name":"TSPI_PHONECONFIGDIALOG","features":[385]},{"name":"TSPI_PHONEDEVSPECIFIC","features":[385]},{"name":"TSPI_PHONEGETBUTTONINFO","features":[385]},{"name":"TSPI_PHONEGETDATA","features":[385]},{"name":"TSPI_PHONEGETDEVCAPS","features":[385]},{"name":"TSPI_PHONEGETDISPLAY","features":[385]},{"name":"TSPI_PHONEGETEXTENSIONID","features":[385]},{"name":"TSPI_PHONEGETGAIN","features":[385]},{"name":"TSPI_PHONEGETHOOKSWITCH","features":[385]},{"name":"TSPI_PHONEGETICON","features":[385]},{"name":"TSPI_PHONEGETID","features":[385]},{"name":"TSPI_PHONEGETLAMP","features":[385]},{"name":"TSPI_PHONEGETRING","features":[385]},{"name":"TSPI_PHONEGETSTATUS","features":[385]},{"name":"TSPI_PHONEGETVOLUME","features":[385]},{"name":"TSPI_PHONENEGOTIATEEXTVERSION","features":[385]},{"name":"TSPI_PHONENEGOTIATETSPIVERSION","features":[385]},{"name":"TSPI_PHONEOPEN","features":[385]},{"name":"TSPI_PHONESELECTEXTVERSION","features":[385]},{"name":"TSPI_PHONESETBUTTONINFO","features":[385]},{"name":"TSPI_PHONESETDATA","features":[385]},{"name":"TSPI_PHONESETDISPLAY","features":[385]},{"name":"TSPI_PHONESETGAIN","features":[385]},{"name":"TSPI_PHONESETHOOKSWITCH","features":[385]},{"name":"TSPI_PHONESETLAMP","features":[385]},{"name":"TSPI_PHONESETRING","features":[385]},{"name":"TSPI_PHONESETSTATUSMESSAGES","features":[385]},{"name":"TSPI_PHONESETVOLUME","features":[385]},{"name":"TSPI_PROC_BASE","features":[385]},{"name":"TSPI_PROVIDERCONFIG","features":[385]},{"name":"TSPI_PROVIDERCREATELINEDEVICE","features":[385]},{"name":"TSPI_PROVIDERCREATEPHONEDEVICE","features":[385]},{"name":"TSPI_PROVIDERENUMDEVICES","features":[385]},{"name":"TSPI_PROVIDERINIT","features":[385]},{"name":"TSPI_PROVIDERINSTALL","features":[385]},{"name":"TSPI_PROVIDERREMOVE","features":[385]},{"name":"TSPI_PROVIDERSHUTDOWN","features":[385]},{"name":"TS_INUSE","features":[385]},{"name":"TS_NOTINUSE","features":[385]},{"name":"TTM_BEEP","features":[385]},{"name":"TTM_BILLING","features":[385]},{"name":"TTM_BUSY","features":[385]},{"name":"TTM_RINGBACK","features":[385]},{"name":"TT_DYNAMIC","features":[385]},{"name":"TT_STATIC","features":[385]},{"name":"TUISPICREATEDIALOGINSTANCEPARAMS","features":[385]},{"name":"TUISPIDLLCALLBACK","features":[385]},{"name":"TUISPIDLL_OBJECT_DIALOGINSTANCE","features":[385]},{"name":"TUISPIDLL_OBJECT_LINEID","features":[385]},{"name":"TUISPIDLL_OBJECT_PHONEID","features":[385]},{"name":"TUISPIDLL_OBJECT_PROVIDERID","features":[385]},{"name":"VARSTRING","features":[385]},{"name":"atypFile","features":[385]},{"name":"atypMax","features":[385]},{"name":"atypNull","features":[385]},{"name":"atypOle","features":[385]},{"name":"atypPicture","features":[385]},{"name":"cbDisplayName","features":[385]},{"name":"cbEmailName","features":[385]},{"name":"cbMaxIdData","features":[385]},{"name":"cbSeverName","features":[385]},{"name":"cbTYPE","features":[385]},{"name":"lineAccept","features":[385]},{"name":"lineAddProvider","features":[385,305]},{"name":"lineAddProviderA","features":[385,305]},{"name":"lineAddProviderW","features":[385,305]},{"name":"lineAddToConference","features":[385]},{"name":"lineAgentSpecific","features":[385]},{"name":"lineAnswer","features":[385]},{"name":"lineBlindTransfer","features":[385]},{"name":"lineBlindTransferA","features":[385]},{"name":"lineBlindTransferW","features":[385]},{"name":"lineClose","features":[385]},{"name":"lineCompleteCall","features":[385]},{"name":"lineCompleteTransfer","features":[385]},{"name":"lineConfigDialog","features":[385,305]},{"name":"lineConfigDialogA","features":[385,305]},{"name":"lineConfigDialogEdit","features":[385,305]},{"name":"lineConfigDialogEditA","features":[385,305]},{"name":"lineConfigDialogEditW","features":[385,305]},{"name":"lineConfigDialogW","features":[385,305]},{"name":"lineConfigProvider","features":[385,305]},{"name":"lineCreateAgentA","features":[385]},{"name":"lineCreateAgentSessionA","features":[385]},{"name":"lineCreateAgentSessionW","features":[385]},{"name":"lineCreateAgentW","features":[385]},{"name":"lineDeallocateCall","features":[385]},{"name":"lineDevSpecific","features":[385]},{"name":"lineDevSpecificFeature","features":[385]},{"name":"lineDial","features":[385]},{"name":"lineDialA","features":[385]},{"name":"lineDialW","features":[385]},{"name":"lineDrop","features":[385]},{"name":"lineForward","features":[385]},{"name":"lineForwardA","features":[385]},{"name":"lineForwardW","features":[385]},{"name":"lineGatherDigits","features":[385]},{"name":"lineGatherDigitsA","features":[385]},{"name":"lineGatherDigitsW","features":[385]},{"name":"lineGenerateDigits","features":[385]},{"name":"lineGenerateDigitsA","features":[385]},{"name":"lineGenerateDigitsW","features":[385]},{"name":"lineGenerateTone","features":[385]},{"name":"lineGetAddressCaps","features":[385]},{"name":"lineGetAddressCapsA","features":[385]},{"name":"lineGetAddressCapsW","features":[385]},{"name":"lineGetAddressID","features":[385]},{"name":"lineGetAddressIDA","features":[385]},{"name":"lineGetAddressIDW","features":[385]},{"name":"lineGetAddressStatus","features":[385]},{"name":"lineGetAddressStatusA","features":[385]},{"name":"lineGetAddressStatusW","features":[385]},{"name":"lineGetAgentActivityListA","features":[385]},{"name":"lineGetAgentActivityListW","features":[385]},{"name":"lineGetAgentCapsA","features":[385]},{"name":"lineGetAgentCapsW","features":[385]},{"name":"lineGetAgentGroupListA","features":[385]},{"name":"lineGetAgentGroupListW","features":[385]},{"name":"lineGetAgentInfo","features":[385,356]},{"name":"lineGetAgentSessionInfo","features":[385,356]},{"name":"lineGetAgentSessionList","features":[385]},{"name":"lineGetAgentStatusA","features":[385]},{"name":"lineGetAgentStatusW","features":[385]},{"name":"lineGetAppPriority","features":[385]},{"name":"lineGetAppPriorityA","features":[385]},{"name":"lineGetAppPriorityW","features":[385]},{"name":"lineGetCallInfo","features":[385]},{"name":"lineGetCallInfoA","features":[385]},{"name":"lineGetCallInfoW","features":[385]},{"name":"lineGetCallStatus","features":[385,305]},{"name":"lineGetConfRelatedCalls","features":[385]},{"name":"lineGetCountry","features":[385]},{"name":"lineGetCountryA","features":[385]},{"name":"lineGetCountryW","features":[385]},{"name":"lineGetDevCaps","features":[385]},{"name":"lineGetDevCapsA","features":[385]},{"name":"lineGetDevCapsW","features":[385]},{"name":"lineGetDevConfig","features":[385]},{"name":"lineGetDevConfigA","features":[385]},{"name":"lineGetDevConfigW","features":[385]},{"name":"lineGetGroupListA","features":[385]},{"name":"lineGetGroupListW","features":[385]},{"name":"lineGetID","features":[385]},{"name":"lineGetIDA","features":[385]},{"name":"lineGetIDW","features":[385]},{"name":"lineGetIcon","features":[385,367]},{"name":"lineGetIconA","features":[385,367]},{"name":"lineGetIconW","features":[385,367]},{"name":"lineGetLineDevStatus","features":[385]},{"name":"lineGetLineDevStatusA","features":[385]},{"name":"lineGetLineDevStatusW","features":[385]},{"name":"lineGetMessage","features":[385]},{"name":"lineGetNewCalls","features":[385]},{"name":"lineGetNumRings","features":[385]},{"name":"lineGetProviderList","features":[385]},{"name":"lineGetProviderListA","features":[385]},{"name":"lineGetProviderListW","features":[385]},{"name":"lineGetProxyStatus","features":[385]},{"name":"lineGetQueueInfo","features":[385]},{"name":"lineGetQueueListA","features":[385]},{"name":"lineGetQueueListW","features":[385]},{"name":"lineGetRequest","features":[385]},{"name":"lineGetRequestA","features":[385]},{"name":"lineGetRequestW","features":[385]},{"name":"lineGetStatusMessages","features":[385]},{"name":"lineGetTranslateCaps","features":[385]},{"name":"lineGetTranslateCapsA","features":[385]},{"name":"lineGetTranslateCapsW","features":[385]},{"name":"lineHandoff","features":[385]},{"name":"lineHandoffA","features":[385]},{"name":"lineHandoffW","features":[385]},{"name":"lineHold","features":[385]},{"name":"lineInitialize","features":[385,305]},{"name":"lineInitializeExA","features":[385,305]},{"name":"lineInitializeExW","features":[385,305]},{"name":"lineMakeCall","features":[385]},{"name":"lineMakeCallA","features":[385]},{"name":"lineMakeCallW","features":[385]},{"name":"lineMonitorDigits","features":[385]},{"name":"lineMonitorMedia","features":[385]},{"name":"lineMonitorTones","features":[385]},{"name":"lineNegotiateAPIVersion","features":[385]},{"name":"lineNegotiateExtVersion","features":[385]},{"name":"lineOpen","features":[385]},{"name":"lineOpenA","features":[385]},{"name":"lineOpenW","features":[385]},{"name":"linePark","features":[385]},{"name":"lineParkA","features":[385]},{"name":"lineParkW","features":[385]},{"name":"linePickup","features":[385]},{"name":"linePickupA","features":[385]},{"name":"linePickupW","features":[385]},{"name":"linePrepareAddToConference","features":[385]},{"name":"linePrepareAddToConferenceA","features":[385]},{"name":"linePrepareAddToConferenceW","features":[385]},{"name":"lineProxyMessage","features":[385]},{"name":"lineProxyResponse","features":[385,356]},{"name":"lineRedirect","features":[385]},{"name":"lineRedirectA","features":[385]},{"name":"lineRedirectW","features":[385]},{"name":"lineRegisterRequestRecipient","features":[385]},{"name":"lineReleaseUserUserInfo","features":[385]},{"name":"lineRemoveFromConference","features":[385]},{"name":"lineRemoveProvider","features":[385,305]},{"name":"lineSecureCall","features":[385]},{"name":"lineSendUserUserInfo","features":[385]},{"name":"lineSetAgentActivity","features":[385]},{"name":"lineSetAgentGroup","features":[385]},{"name":"lineSetAgentMeasurementPeriod","features":[385]},{"name":"lineSetAgentSessionState","features":[385]},{"name":"lineSetAgentState","features":[385]},{"name":"lineSetAgentStateEx","features":[385]},{"name":"lineSetAppPriority","features":[385]},{"name":"lineSetAppPriorityA","features":[385]},{"name":"lineSetAppPriorityW","features":[385]},{"name":"lineSetAppSpecific","features":[385]},{"name":"lineSetCallData","features":[385]},{"name":"lineSetCallParams","features":[385]},{"name":"lineSetCallPrivilege","features":[385]},{"name":"lineSetCallQualityOfService","features":[385]},{"name":"lineSetCallTreatment","features":[385]},{"name":"lineSetCurrentLocation","features":[385]},{"name":"lineSetDevConfig","features":[385]},{"name":"lineSetDevConfigA","features":[385]},{"name":"lineSetDevConfigW","features":[385]},{"name":"lineSetLineDevStatus","features":[385]},{"name":"lineSetMediaControl","features":[385]},{"name":"lineSetMediaMode","features":[385]},{"name":"lineSetNumRings","features":[385]},{"name":"lineSetQueueMeasurementPeriod","features":[385]},{"name":"lineSetStatusMessages","features":[385]},{"name":"lineSetTerminal","features":[385]},{"name":"lineSetTollList","features":[385]},{"name":"lineSetTollListA","features":[385]},{"name":"lineSetTollListW","features":[385]},{"name":"lineSetupConference","features":[385]},{"name":"lineSetupConferenceA","features":[385]},{"name":"lineSetupConferenceW","features":[385]},{"name":"lineSetupTransfer","features":[385]},{"name":"lineSetupTransferA","features":[385]},{"name":"lineSetupTransferW","features":[385]},{"name":"lineShutdown","features":[385]},{"name":"lineSwapHold","features":[385]},{"name":"lineTranslateAddress","features":[385]},{"name":"lineTranslateAddressA","features":[385]},{"name":"lineTranslateAddressW","features":[385]},{"name":"lineTranslateDialog","features":[385,305]},{"name":"lineTranslateDialogA","features":[385,305]},{"name":"lineTranslateDialogW","features":[385,305]},{"name":"lineUncompleteCall","features":[385]},{"name":"lineUnhold","features":[385]},{"name":"lineUnpark","features":[385]},{"name":"lineUnparkA","features":[385]},{"name":"lineUnparkW","features":[385]},{"name":"phoneClose","features":[385]},{"name":"phoneConfigDialog","features":[385,305]},{"name":"phoneConfigDialogA","features":[385,305]},{"name":"phoneConfigDialogW","features":[385,305]},{"name":"phoneDevSpecific","features":[385]},{"name":"phoneGetButtonInfo","features":[385]},{"name":"phoneGetButtonInfoA","features":[385]},{"name":"phoneGetButtonInfoW","features":[385]},{"name":"phoneGetData","features":[385]},{"name":"phoneGetDevCaps","features":[385]},{"name":"phoneGetDevCapsA","features":[385]},{"name":"phoneGetDevCapsW","features":[385]},{"name":"phoneGetDisplay","features":[385]},{"name":"phoneGetGain","features":[385]},{"name":"phoneGetHookSwitch","features":[385]},{"name":"phoneGetID","features":[385]},{"name":"phoneGetIDA","features":[385]},{"name":"phoneGetIDW","features":[385]},{"name":"phoneGetIcon","features":[385,367]},{"name":"phoneGetIconA","features":[385,367]},{"name":"phoneGetIconW","features":[385,367]},{"name":"phoneGetLamp","features":[385]},{"name":"phoneGetMessage","features":[385]},{"name":"phoneGetRing","features":[385]},{"name":"phoneGetStatus","features":[385]},{"name":"phoneGetStatusA","features":[385]},{"name":"phoneGetStatusMessages","features":[385]},{"name":"phoneGetStatusW","features":[385]},{"name":"phoneGetVolume","features":[385]},{"name":"phoneInitialize","features":[385,305]},{"name":"phoneInitializeExA","features":[385,305]},{"name":"phoneInitializeExW","features":[385,305]},{"name":"phoneNegotiateAPIVersion","features":[385]},{"name":"phoneNegotiateExtVersion","features":[385]},{"name":"phoneOpen","features":[385]},{"name":"phoneSetButtonInfo","features":[385]},{"name":"phoneSetButtonInfoA","features":[385]},{"name":"phoneSetButtonInfoW","features":[385]},{"name":"phoneSetData","features":[385]},{"name":"phoneSetDisplay","features":[385]},{"name":"phoneSetGain","features":[385]},{"name":"phoneSetHookSwitch","features":[385]},{"name":"phoneSetLamp","features":[385]},{"name":"phoneSetRing","features":[385]},{"name":"phoneSetStatusMessages","features":[385]},{"name":"phoneSetVolume","features":[385]},{"name":"phoneShutdown","features":[385]},{"name":"prioHigh","features":[385]},{"name":"prioLow","features":[385]},{"name":"prioNorm","features":[385]},{"name":"tapiGetLocationInfo","features":[385]},{"name":"tapiGetLocationInfoA","features":[385]},{"name":"tapiGetLocationInfoW","features":[385]},{"name":"tapiRequestDrop","features":[385,305]},{"name":"tapiRequestMakeCall","features":[385]},{"name":"tapiRequestMakeCallA","features":[385]},{"name":"tapiRequestMakeCallW","features":[385]},{"name":"tapiRequestMediaCall","features":[385,305]},{"name":"tapiRequestMediaCallA","features":[385,305]},{"name":"tapiRequestMediaCallW","features":[385,305]}],"389":[{"name":"ALLOW_PARTIAL_READS","features":[387]},{"name":"ALL_PIPE","features":[387]},{"name":"ALTERNATE_INTERFACE","features":[387]},{"name":"AUTO_CLEAR_STALL","features":[387]},{"name":"AUTO_FLUSH","features":[387]},{"name":"AUTO_SUSPEND","features":[387]},{"name":"AcquireBusInfo","features":[387]},{"name":"AcquireControllerName","features":[387]},{"name":"AcquireHubName","features":[387]},{"name":"BMREQUEST_CLASS","features":[387]},{"name":"BMREQUEST_DEVICE_TO_HOST","features":[387]},{"name":"BMREQUEST_HOST_TO_DEVICE","features":[387]},{"name":"BMREQUEST_STANDARD","features":[387]},{"name":"BMREQUEST_TO_DEVICE","features":[387]},{"name":"BMREQUEST_TO_ENDPOINT","features":[387]},{"name":"BMREQUEST_TO_INTERFACE","features":[387]},{"name":"BMREQUEST_TO_OTHER","features":[387]},{"name":"BMREQUEST_VENDOR","features":[387]},{"name":"BM_REQUEST_TYPE","features":[387]},{"name":"BULKIN_FLAG","features":[387]},{"name":"CHANNEL_INFO","features":[387]},{"name":"CompositeDevice","features":[387]},{"name":"DEVICE_DESCRIPTOR","features":[387]},{"name":"DEVICE_SPEED","features":[387]},{"name":"DRV_VERSION","features":[387]},{"name":"DeviceCausedOvercurrent","features":[387]},{"name":"DeviceConnected","features":[387]},{"name":"DeviceEnumerating","features":[387]},{"name":"DeviceFailedEnumeration","features":[387]},{"name":"DeviceGeneralFailure","features":[387]},{"name":"DeviceHubNestedTooDeeply","features":[387]},{"name":"DeviceInLegacyHub","features":[387]},{"name":"DeviceNotEnoughBandwidth","features":[387]},{"name":"DeviceNotEnoughPower","features":[387]},{"name":"DeviceReset","features":[387]},{"name":"EHCI_Generic","features":[387]},{"name":"EHCI_Intel_Medfield","features":[387]},{"name":"EHCI_Lucent","features":[387]},{"name":"EHCI_NEC","features":[387]},{"name":"EHCI_NVIDIA_Tegra2","features":[387]},{"name":"EHCI_NVIDIA_Tegra3","features":[387]},{"name":"EVENT_PIPE","features":[387]},{"name":"EnumerationFailure","features":[387]},{"name":"FILE_DEVICE_USB","features":[387]},{"name":"FILE_DEVICE_USB_SCAN","features":[387]},{"name":"FullSpeed","features":[387]},{"name":"GUID_DEVINTERFACE_USB_BILLBOARD","features":[387]},{"name":"GUID_DEVINTERFACE_USB_DEVICE","features":[387]},{"name":"GUID_DEVINTERFACE_USB_HOST_CONTROLLER","features":[387]},{"name":"GUID_DEVINTERFACE_USB_HUB","features":[387]},{"name":"GUID_USB_MSOS20_PLATFORM_CAPABILITY_ID","features":[387]},{"name":"GUID_USB_PERFORMANCE_TRACING","features":[387]},{"name":"GUID_USB_TRANSFER_TRACING","features":[387]},{"name":"GUID_USB_WMI_DEVICE_PERF_INFO","features":[387]},{"name":"GUID_USB_WMI_NODE_INFO","features":[387]},{"name":"GUID_USB_WMI_STD_DATA","features":[387]},{"name":"GUID_USB_WMI_STD_NOTIFICATION","features":[387]},{"name":"GUID_USB_WMI_SURPRISE_REMOVAL_NOTIFICATION","features":[387]},{"name":"GUID_USB_WMI_TRACING","features":[387]},{"name":"HCD_DIAGNOSTIC_MODE_OFF","features":[387]},{"name":"HCD_DIAGNOSTIC_MODE_ON","features":[387]},{"name":"HCD_DISABLE_PORT","features":[387]},{"name":"HCD_ENABLE_PORT","features":[387]},{"name":"HCD_GET_DRIVERKEY_NAME","features":[387]},{"name":"HCD_GET_ROOT_HUB_NAME","features":[387]},{"name":"HCD_GET_STATS_1","features":[387]},{"name":"HCD_GET_STATS_2","features":[387]},{"name":"HCD_ISO_STAT_COUNTERS","features":[387]},{"name":"HCD_STAT_COUNTERS","features":[387]},{"name":"HCD_STAT_INFORMATION_1","features":[387]},{"name":"HCD_STAT_INFORMATION_2","features":[387]},{"name":"HCD_TRACE_READ_REQUEST","features":[387]},{"name":"HCD_USER_REQUEST","features":[387]},{"name":"HUB_DEVICE_CONFIG_INFO","features":[387]},{"name":"HighSpeed","features":[387]},{"name":"HubDevice","features":[387]},{"name":"HubNestedTooDeeply","features":[387]},{"name":"HubOvercurrent","features":[387]},{"name":"HubPowerChange","features":[387]},{"name":"IGNORE_SHORT_PACKETS","features":[387]},{"name":"IOCTL_ABORT_PIPE","features":[387]},{"name":"IOCTL_CANCEL_IO","features":[387]},{"name":"IOCTL_GENERICUSBFN_ACTIVATE_USB_BUS","features":[387]},{"name":"IOCTL_GENERICUSBFN_BUS_EVENT_NOTIFICATION","features":[387]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_IN","features":[387]},{"name":"IOCTL_GENERICUSBFN_CONTROL_STATUS_HANDSHAKE_OUT","features":[387]},{"name":"IOCTL_GENERICUSBFN_DEACTIVATE_USB_BUS","features":[387]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO","features":[387]},{"name":"IOCTL_GENERICUSBFN_GET_CLASS_INFO_EX","features":[387]},{"name":"IOCTL_GENERICUSBFN_GET_INTERFACE_DESCRIPTOR_SET","features":[387]},{"name":"IOCTL_GENERICUSBFN_GET_PIPE_STATE","features":[387]},{"name":"IOCTL_GENERICUSBFN_REGISTER_USB_STRING","features":[387]},{"name":"IOCTL_GENERICUSBFN_SET_PIPE_STATE","features":[387]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN","features":[387]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_IN_APPEND_ZERO_PKT","features":[387]},{"name":"IOCTL_GENERICUSBFN_TRANSFER_OUT","features":[387]},{"name":"IOCTL_GET_CHANNEL_ALIGN_RQST","features":[387]},{"name":"IOCTL_GET_DEVICE_DESCRIPTOR","features":[387]},{"name":"IOCTL_GET_HCD_DRIVERKEY_NAME","features":[387]},{"name":"IOCTL_GET_PIPE_CONFIGURATION","features":[387]},{"name":"IOCTL_GET_USB_DESCRIPTOR","features":[387]},{"name":"IOCTL_GET_VERSION","features":[387]},{"name":"IOCTL_INDEX","features":[387]},{"name":"IOCTL_INTERNAL_USB_CYCLE_PORT","features":[387]},{"name":"IOCTL_INTERNAL_USB_ENABLE_PORT","features":[387]},{"name":"IOCTL_INTERNAL_USB_FAIL_GET_STATUS_FROM_DEVICE","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_BUSGUID_INFO","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_BUS_INFO","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_CONTROLLER_NAME","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_CONFIG_INFO","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_DEVICE_HANDLE_EX","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_COUNT","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_HUB_NAME","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_PARENT_HUB_INFO","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_PORT_STATUS","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_ROOTHUB_PDO","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_TOPOLOGY_ADDRESS","features":[387]},{"name":"IOCTL_INTERNAL_USB_GET_TT_DEVICE_HANDLE","features":[387]},{"name":"IOCTL_INTERNAL_USB_NOTIFY_IDLE_READY","features":[387]},{"name":"IOCTL_INTERNAL_USB_RECORD_FAILURE","features":[387]},{"name":"IOCTL_INTERNAL_USB_REGISTER_COMPOSITE_DEVICE","features":[387]},{"name":"IOCTL_INTERNAL_USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[387]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_RESUME","features":[387]},{"name":"IOCTL_INTERNAL_USB_REQ_GLOBAL_SUSPEND","features":[387]},{"name":"IOCTL_INTERNAL_USB_RESET_PORT","features":[387]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_IDLE_NOTIFICATION","features":[387]},{"name":"IOCTL_INTERNAL_USB_SUBMIT_URB","features":[387]},{"name":"IOCTL_INTERNAL_USB_UNREGISTER_COMPOSITE_DEVICE","features":[387]},{"name":"IOCTL_READ_REGISTERS","features":[387]},{"name":"IOCTL_RESET_PIPE","features":[387]},{"name":"IOCTL_SEND_USB_REQUEST","features":[387]},{"name":"IOCTL_SET_TIMEOUT","features":[387]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_OFF","features":[387]},{"name":"IOCTL_USB_DIAGNOSTIC_MODE_ON","features":[387]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_OFF","features":[387]},{"name":"IOCTL_USB_DIAG_IGNORE_HUBS_ON","features":[387]},{"name":"IOCTL_USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[387]},{"name":"IOCTL_USB_GET_DEVICE_CHARACTERISTICS","features":[387]},{"name":"IOCTL_USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[387]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES","features":[387]},{"name":"IOCTL_USB_GET_HUB_CAPABILITIES_EX","features":[387]},{"name":"IOCTL_USB_GET_HUB_INFORMATION_EX","features":[387]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[387]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[387]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION","features":[387]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[387]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[387]},{"name":"IOCTL_USB_GET_NODE_CONNECTION_NAME","features":[387]},{"name":"IOCTL_USB_GET_NODE_INFORMATION","features":[387]},{"name":"IOCTL_USB_GET_PORT_CONNECTOR_PROPERTIES","features":[387]},{"name":"IOCTL_USB_GET_ROOT_HUB_NAME","features":[387]},{"name":"IOCTL_USB_GET_TRANSPORT_CHARACTERISTICS","features":[387]},{"name":"IOCTL_USB_HCD_DISABLE_PORT","features":[387]},{"name":"IOCTL_USB_HCD_ENABLE_PORT","features":[387]},{"name":"IOCTL_USB_HCD_GET_STATS_1","features":[387]},{"name":"IOCTL_USB_HCD_GET_STATS_2","features":[387]},{"name":"IOCTL_USB_HUB_CYCLE_PORT","features":[387]},{"name":"IOCTL_USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[387]},{"name":"IOCTL_USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[387]},{"name":"IOCTL_USB_RESET_HUB","features":[387]},{"name":"IOCTL_USB_START_TRACKING_FOR_TIME_SYNC","features":[387]},{"name":"IOCTL_USB_STOP_TRACKING_FOR_TIME_SYNC","features":[387]},{"name":"IOCTL_USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[387]},{"name":"IOCTL_WAIT_ON_DEVICE_EVENT","features":[387]},{"name":"IOCTL_WRITE_REGISTERS","features":[387]},{"name":"IO_BLOCK","features":[387]},{"name":"IO_BLOCK_EX","features":[387]},{"name":"InsufficentBandwidth","features":[387]},{"name":"InsufficentPower","features":[387]},{"name":"KREGMANUSBFNENUMPATH","features":[387]},{"name":"KREGUSBFNENUMPATH","features":[387]},{"name":"LowSpeed","features":[387]},{"name":"MAXIMUM_TRANSFER_SIZE","features":[387]},{"name":"MAXIMUM_USB_STRING_LENGTH","features":[387]},{"name":"MAX_ALTERNATE_NAME_LENGTH","features":[387]},{"name":"MAX_ASSOCIATION_NAME_LENGTH","features":[387]},{"name":"MAX_CONFIGURATION_NAME_LENGTH","features":[387]},{"name":"MAX_INTERFACE_NAME_LENGTH","features":[387]},{"name":"MAX_NUM_PIPES","features":[387]},{"name":"MAX_NUM_USBFN_ENDPOINTS","features":[387]},{"name":"MAX_SUPPORTED_CONFIGURATIONS","features":[387]},{"name":"MAX_USB_STRING_LENGTH","features":[387]},{"name":"MS_GENRE_DESCRIPTOR_INDEX","features":[387]},{"name":"MS_OS_FLAGS_CONTAINERID","features":[387]},{"name":"MS_OS_STRING_SIGNATURE","features":[387]},{"name":"MS_POWER_DESCRIPTOR_INDEX","features":[387]},{"name":"ModernDeviceInLegacyHub","features":[387]},{"name":"NoDeviceConnected","features":[387]},{"name":"OHCI_Generic","features":[387]},{"name":"OHCI_Hydra","features":[387]},{"name":"OHCI_NEC","features":[387]},{"name":"OS_STRING","features":[387]},{"name":"OS_STRING_DESCRIPTOR_INDEX","features":[387]},{"name":"OverCurrent","features":[387]},{"name":"PACKET_PARAMETERS","features":[387]},{"name":"PIPE_TRANSFER_TIMEOUT","features":[387]},{"name":"PIPE_TYPE","features":[387]},{"name":"PORT_LINK_STATE_COMPLIANCE_MODE","features":[387]},{"name":"PORT_LINK_STATE_DISABLED","features":[387]},{"name":"PORT_LINK_STATE_HOT_RESET","features":[387]},{"name":"PORT_LINK_STATE_INACTIVE","features":[387]},{"name":"PORT_LINK_STATE_LOOPBACK","features":[387]},{"name":"PORT_LINK_STATE_POLLING","features":[387]},{"name":"PORT_LINK_STATE_RECOVERY","features":[387]},{"name":"PORT_LINK_STATE_RX_DETECT","features":[387]},{"name":"PORT_LINK_STATE_TEST_MODE","features":[387]},{"name":"PORT_LINK_STATE_U0","features":[387]},{"name":"PORT_LINK_STATE_U1","features":[387]},{"name":"PORT_LINK_STATE_U2","features":[387]},{"name":"PORT_LINK_STATE_U3","features":[387]},{"name":"RAW_IO","features":[387]},{"name":"RAW_PIPE_TYPE","features":[387]},{"name":"RAW_RESET_PORT_PARAMETERS","features":[387]},{"name":"RAW_ROOTPORT_FEATURE","features":[387]},{"name":"RAW_ROOTPORT_PARAMETERS","features":[387]},{"name":"READ_DATA_PIPE","features":[387]},{"name":"RESET_PIPE_ON_RESUME","features":[387]},{"name":"ResetOvercurrent","features":[387]},{"name":"SHORT_PACKET_TERMINATE","features":[387]},{"name":"SUSPEND_DELAY","features":[387]},{"name":"UHCI_Generic","features":[387]},{"name":"UHCI_Ich1","features":[387]},{"name":"UHCI_Ich2","features":[387]},{"name":"UHCI_Ich3m","features":[387]},{"name":"UHCI_Ich4","features":[387]},{"name":"UHCI_Ich5","features":[387]},{"name":"UHCI_Ich6","features":[387]},{"name":"UHCI_Intel","features":[387]},{"name":"UHCI_Piix3","features":[387]},{"name":"UHCI_Piix4","features":[387]},{"name":"UHCI_Reserved204","features":[387]},{"name":"UHCI_VIA","features":[387]},{"name":"UHCI_VIA_x01","features":[387]},{"name":"UHCI_VIA_x02","features":[387]},{"name":"UHCI_VIA_x03","features":[387]},{"name":"UHCI_VIA_x04","features":[387]},{"name":"UHCI_VIA_x0E_FIFO","features":[387]},{"name":"URB","features":[387]},{"name":"URB_FUNCTION_ABORT_PIPE","features":[387]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER","features":[387]},{"name":"URB_FUNCTION_BULK_OR_INTERRUPT_TRANSFER_USING_CHAINED_MDL","features":[387]},{"name":"URB_FUNCTION_CLASS_DEVICE","features":[387]},{"name":"URB_FUNCTION_CLASS_ENDPOINT","features":[387]},{"name":"URB_FUNCTION_CLASS_INTERFACE","features":[387]},{"name":"URB_FUNCTION_CLASS_OTHER","features":[387]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_DEVICE","features":[387]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_ENDPOINT","features":[387]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_INTERFACE","features":[387]},{"name":"URB_FUNCTION_CLEAR_FEATURE_TO_OTHER","features":[387]},{"name":"URB_FUNCTION_CLOSE_STATIC_STREAMS","features":[387]},{"name":"URB_FUNCTION_CONTROL_TRANSFER","features":[387]},{"name":"URB_FUNCTION_CONTROL_TRANSFER_EX","features":[387]},{"name":"URB_FUNCTION_GET_CONFIGURATION","features":[387]},{"name":"URB_FUNCTION_GET_CURRENT_FRAME_NUMBER","features":[387]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE","features":[387]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_ENDPOINT","features":[387]},{"name":"URB_FUNCTION_GET_DESCRIPTOR_FROM_INTERFACE","features":[387]},{"name":"URB_FUNCTION_GET_FRAME_LENGTH","features":[387]},{"name":"URB_FUNCTION_GET_INTERFACE","features":[387]},{"name":"URB_FUNCTION_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[387]},{"name":"URB_FUNCTION_GET_MS_FEATURE_DESCRIPTOR","features":[387]},{"name":"URB_FUNCTION_GET_STATUS_FROM_DEVICE","features":[387]},{"name":"URB_FUNCTION_GET_STATUS_FROM_ENDPOINT","features":[387]},{"name":"URB_FUNCTION_GET_STATUS_FROM_INTERFACE","features":[387]},{"name":"URB_FUNCTION_GET_STATUS_FROM_OTHER","features":[387]},{"name":"URB_FUNCTION_ISOCH_TRANSFER","features":[387]},{"name":"URB_FUNCTION_ISOCH_TRANSFER_USING_CHAINED_MDL","features":[387]},{"name":"URB_FUNCTION_OPEN_STATIC_STREAMS","features":[387]},{"name":"URB_FUNCTION_RELEASE_FRAME_LENGTH_CONTROL","features":[387]},{"name":"URB_FUNCTION_RESERVED_0X0016","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X001D","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X002B","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X002C","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X002D","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X002E","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X002F","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X0033","features":[387]},{"name":"URB_FUNCTION_RESERVE_0X0034","features":[387]},{"name":"URB_FUNCTION_RESET_PIPE","features":[387]},{"name":"URB_FUNCTION_SELECT_CONFIGURATION","features":[387]},{"name":"URB_FUNCTION_SELECT_INTERFACE","features":[387]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_DEVICE","features":[387]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_ENDPOINT","features":[387]},{"name":"URB_FUNCTION_SET_DESCRIPTOR_TO_INTERFACE","features":[387]},{"name":"URB_FUNCTION_SET_FEATURE_TO_DEVICE","features":[387]},{"name":"URB_FUNCTION_SET_FEATURE_TO_ENDPOINT","features":[387]},{"name":"URB_FUNCTION_SET_FEATURE_TO_INTERFACE","features":[387]},{"name":"URB_FUNCTION_SET_FEATURE_TO_OTHER","features":[387]},{"name":"URB_FUNCTION_SET_FRAME_LENGTH","features":[387]},{"name":"URB_FUNCTION_SYNC_CLEAR_STALL","features":[387]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE","features":[387]},{"name":"URB_FUNCTION_SYNC_RESET_PIPE_AND_CLEAR_STALL","features":[387]},{"name":"URB_FUNCTION_TAKE_FRAME_LENGTH_CONTROL","features":[387]},{"name":"URB_FUNCTION_VENDOR_DEVICE","features":[387]},{"name":"URB_FUNCTION_VENDOR_ENDPOINT","features":[387]},{"name":"URB_FUNCTION_VENDOR_INTERFACE","features":[387]},{"name":"URB_FUNCTION_VENDOR_OTHER","features":[387]},{"name":"URB_OPEN_STATIC_STREAMS_VERSION_100","features":[387]},{"name":"UREGMANUSBFNENUMPATH","features":[387]},{"name":"UREGUSBFNENUMPATH","features":[387]},{"name":"USBDI_VERSION","features":[387]},{"name":"USBD_DEFAULT_MAXIMUM_TRANSFER_SIZE","features":[387]},{"name":"USBD_DEFAULT_PIPE_TRANSFER","features":[387]},{"name":"USBD_DEVICE_INFORMATION","features":[387]},{"name":"USBD_ENDPOINT_OFFLOAD_INFORMATION","features":[387]},{"name":"USBD_ENDPOINT_OFFLOAD_MODE","features":[387]},{"name":"USBD_INTERFACE_INFORMATION","features":[387]},{"name":"USBD_ISO_PACKET_DESCRIPTOR","features":[387]},{"name":"USBD_ISO_START_FRAME_RANGE","features":[387]},{"name":"USBD_PF_CHANGE_MAX_PACKET","features":[387]},{"name":"USBD_PF_ENABLE_RT_THREAD_ACCESS","features":[387]},{"name":"USBD_PF_HANDLES_SSP_HIGH_BANDWIDTH_ISOCH","features":[387]},{"name":"USBD_PF_INTERACTIVE_PRIORITY","features":[387]},{"name":"USBD_PF_MAP_ADD_TRANSFERS","features":[387]},{"name":"USBD_PF_PRIORITY_MASK","features":[387]},{"name":"USBD_PF_SHORT_PACKET_OPT","features":[387]},{"name":"USBD_PF_SSP_HIGH_BANDWIDTH_ISOCH","features":[387]},{"name":"USBD_PF_VIDEO_PRIORITY","features":[387]},{"name":"USBD_PF_VOICE_PRIORITY","features":[387]},{"name":"USBD_PIPE_INFORMATION","features":[387]},{"name":"USBD_PIPE_TYPE","features":[387]},{"name":"USBD_PORT_CONNECTED","features":[387]},{"name":"USBD_PORT_ENABLED","features":[387]},{"name":"USBD_SHORT_TRANSFER_OK","features":[387]},{"name":"USBD_START_ISO_TRANSFER_ASAP","features":[387]},{"name":"USBD_STREAM_INFORMATION","features":[387]},{"name":"USBD_TRANSFER_DIRECTION","features":[387]},{"name":"USBD_TRANSFER_DIRECTION_IN","features":[387]},{"name":"USBD_TRANSFER_DIRECTION_OUT","features":[387]},{"name":"USBD_VERSION_INFORMATION","features":[387]},{"name":"USBFN_BUS_CONFIGURATION_INFO","features":[387,305]},{"name":"USBFN_BUS_SPEED","features":[387]},{"name":"USBFN_CLASS_INFORMATION_PACKET","features":[387,305]},{"name":"USBFN_CLASS_INFORMATION_PACKET_EX","features":[387,305]},{"name":"USBFN_CLASS_INTERFACE","features":[387]},{"name":"USBFN_CLASS_INTERFACE_EX","features":[387]},{"name":"USBFN_DEVICE_STATE","features":[387]},{"name":"USBFN_DIRECTION","features":[387]},{"name":"USBFN_EVENT","features":[387]},{"name":"USBFN_INTERFACE_INFO","features":[387]},{"name":"USBFN_INTERRUPT_ENDPOINT_SIZE_NOT_UPDATEABLE_MASK","features":[387]},{"name":"USBFN_NOTIFICATION","features":[387]},{"name":"USBFN_PIPE_INFORMATION","features":[387]},{"name":"USBFN_PORT_TYPE","features":[387]},{"name":"USBFN_USB_STRING","features":[387]},{"name":"USBSCAN_GET_DESCRIPTOR","features":[387]},{"name":"USBSCAN_PIPE_BULK","features":[387]},{"name":"USBSCAN_PIPE_CONFIGURATION","features":[387]},{"name":"USBSCAN_PIPE_CONTROL","features":[387]},{"name":"USBSCAN_PIPE_INFORMATION","features":[387]},{"name":"USBSCAN_PIPE_INTERRUPT","features":[387]},{"name":"USBSCAN_PIPE_ISOCHRONOUS","features":[387]},{"name":"USBSCAN_TIMEOUT","features":[387]},{"name":"USBUSER_BANDWIDTH_INFO_REQUEST","features":[387]},{"name":"USBUSER_BUS_STATISTICS_0_REQUEST","features":[387,305]},{"name":"USBUSER_CLEAR_ROOTPORT_FEATURE","features":[387]},{"name":"USBUSER_CLOSE_RAW_DEVICE","features":[387]},{"name":"USBUSER_CONTROLLER_INFO_0","features":[387]},{"name":"USBUSER_CONTROLLER_UNICODE_NAME","features":[387]},{"name":"USBUSER_GET_BANDWIDTH_INFORMATION","features":[387]},{"name":"USBUSER_GET_BUS_STATISTICS_0","features":[387]},{"name":"USBUSER_GET_CONTROLLER_DRIVER_KEY","features":[387]},{"name":"USBUSER_GET_CONTROLLER_INFO_0","features":[387]},{"name":"USBUSER_GET_DRIVER_VERSION","features":[387,305]},{"name":"USBUSER_GET_POWER_STATE_MAP","features":[387]},{"name":"USBUSER_GET_ROOTHUB_SYMBOLIC_NAME","features":[387]},{"name":"USBUSER_GET_ROOTPORT_STATUS","features":[387]},{"name":"USBUSER_GET_USB2HW_VERSION","features":[387]},{"name":"USBUSER_GET_USB2_HW_VERSION","features":[387]},{"name":"USBUSER_GET_USB_DRIVER_VERSION","features":[387]},{"name":"USBUSER_INVALID_REQUEST","features":[387]},{"name":"USBUSER_OPEN_RAW_DEVICE","features":[387]},{"name":"USBUSER_OP_CLOSE_RAW_DEVICE","features":[387]},{"name":"USBUSER_OP_MASK_DEVONLY_API","features":[387]},{"name":"USBUSER_OP_MASK_HCTEST_API","features":[387]},{"name":"USBUSER_OP_OPEN_RAW_DEVICE","features":[387]},{"name":"USBUSER_OP_RAW_RESET_PORT","features":[387]},{"name":"USBUSER_OP_SEND_ONE_PACKET","features":[387]},{"name":"USBUSER_OP_SEND_RAW_COMMAND","features":[387]},{"name":"USBUSER_PASS_THRU","features":[387]},{"name":"USBUSER_PASS_THRU_REQUEST","features":[387]},{"name":"USBUSER_POWER_INFO_REQUEST","features":[387,305]},{"name":"USBUSER_RAW_RESET_ROOT_PORT","features":[387]},{"name":"USBUSER_REFRESH_HCT_REG","features":[387]},{"name":"USBUSER_REQUEST_HEADER","features":[387]},{"name":"USBUSER_ROOTPORT_FEATURE_REQUEST","features":[387]},{"name":"USBUSER_ROOTPORT_PARAMETERS","features":[387]},{"name":"USBUSER_SEND_ONE_PACKET","features":[387]},{"name":"USBUSER_SEND_RAW_COMMAND","features":[387]},{"name":"USBUSER_SET_ROOTPORT_FEATURE","features":[387]},{"name":"USBUSER_USB_REFRESH_HCT_REG","features":[387]},{"name":"USBUSER_VERSION","features":[387]},{"name":"USB_20_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[387]},{"name":"USB_20_HUB_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_20_PORT_CHANGE","features":[387]},{"name":"USB_20_PORT_STATUS","features":[387]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_RESERVED_MASK","features":[387]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_MASK","features":[387]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_NOTIFICATION","features":[387]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_PERIODIC","features":[387]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED10","features":[387]},{"name":"USB_30_ENDPOINT_TYPE_INTERRUPT_USAGE_RESERVED11","features":[387]},{"name":"USB_30_HUB_DESCRIPTOR","features":[387]},{"name":"USB_30_HUB_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_30_PORT_CHANGE","features":[387]},{"name":"USB_30_PORT_STATUS","features":[387]},{"name":"USB_ACQUIRE_INFO","features":[387]},{"name":"USB_ALLOW_FIRMWARE_UPDATE","features":[387]},{"name":"USB_BANDWIDTH_INFO","features":[387]},{"name":"USB_BOS_DESCRIPTOR","features":[387]},{"name":"USB_BOS_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_BUS_NOTIFICATION","features":[387]},{"name":"USB_BUS_STATISTICS_0","features":[387,305]},{"name":"USB_CHANGE_REGISTRATION_HANDLE","features":[387]},{"name":"USB_CHARGING_POLICY_DEFAULT","features":[387]},{"name":"USB_CHARGING_POLICY_ICCHPF","features":[387]},{"name":"USB_CHARGING_POLICY_ICCLPF","features":[387]},{"name":"USB_CHARGING_POLICY_NO_POWER","features":[387]},{"name":"USB_CLOSE_RAW_DEVICE_PARAMETERS","features":[387]},{"name":"USB_COMMON_DESCRIPTOR","features":[387]},{"name":"USB_COMPOSITE_DEVICE_INFO","features":[387,305]},{"name":"USB_COMPOSITE_FUNCTION_INFO","features":[387,305]},{"name":"USB_CONFIGURATION_DESCRIPTOR","features":[387]},{"name":"USB_CONFIGURATION_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_CONFIGURATION_POWER_DESCRIPTOR","features":[387]},{"name":"USB_CONFIG_BUS_POWERED","features":[387]},{"name":"USB_CONFIG_POWERED_MASK","features":[387]},{"name":"USB_CONFIG_POWER_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_CONFIG_REMOTE_WAKEUP","features":[387]},{"name":"USB_CONFIG_RESERVED","features":[387]},{"name":"USB_CONFIG_SELF_POWERED","features":[387]},{"name":"USB_CONNECTION_NOTIFICATION","features":[387]},{"name":"USB_CONNECTION_STATUS","features":[387]},{"name":"USB_CONTROLLER_DEVICE_INFO","features":[387]},{"name":"USB_CONTROLLER_FLAVOR","features":[387]},{"name":"USB_CONTROLLER_INFO_0","features":[387]},{"name":"USB_CYCLE_PORT","features":[387]},{"name":"USB_CYCLE_PORT_PARAMS","features":[387]},{"name":"USB_DEBUG_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_DEFAULT_DEVICE_ADDRESS","features":[387]},{"name":"USB_DEFAULT_ENDPOINT_ADDRESS","features":[387]},{"name":"USB_DEFAULT_MAX_PACKET","features":[387]},{"name":"USB_DEFAULT_PIPE_SETUP_PACKET","features":[387]},{"name":"USB_DESCRIPTOR_REQUEST","features":[387]},{"name":"USB_DEVICE_CAPABILITY_BATTERY_INFO","features":[387]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD","features":[387]},{"name":"USB_DEVICE_CAPABILITY_BILLBOARD_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID","features":[387]},{"name":"USB_DEVICE_CAPABILITY_CONTAINER_ID_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS","features":[387]},{"name":"USB_DEVICE_CAPABILITY_FIRMWARE_STATUS_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_MAX_U1_LATENCY","features":[387]},{"name":"USB_DEVICE_CAPABILITY_MAX_U2_LATENCY","features":[387]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT","features":[387]},{"name":"USB_DEVICE_CAPABILITY_PD_CONSUMER_PORT_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_PD_PROVIDER_PORT","features":[387]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM","features":[387]},{"name":"USB_DEVICE_CAPABILITY_PLATFORM_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY","features":[387]},{"name":"USB_DEVICE_CAPABILITY_POWER_DELIVERY_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_PRECISION_TIME_MEASUREMENT","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_RX","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_DIR_TX","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_BPS","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_GBPS","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_KBPS","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_LSE_MBPS","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_ASYMMETRIC","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_MODE_SYMMETRIC","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SS","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_SPEED_PROTOCOL_SSP","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEEDPLUS_USB_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_LTM_CAPABLE","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_BMATTRIBUTES_RESERVED_MASK","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_FULL","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_HIGH","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_LOW","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_RESERVED_MASK","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_SPEEDS_SUPPORTED_SUPER","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U1_DEVICE_EXIT_MAX_VALUE","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_U2_DEVICE_EXIT_MAX_VALUE","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB","features":[387]},{"name":"USB_DEVICE_CAPABILITY_SUPERSPEED_USB_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION","features":[387]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_BMATTRIBUTES_RESERVED_MASK","features":[387]},{"name":"USB_DEVICE_CAPABILITY_USB20_EXTENSION_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_CAPABILITY_WIRELESS_USB","features":[387]},{"name":"USB_DEVICE_CHARACTERISTICS","features":[387]},{"name":"USB_DEVICE_CHARACTERISTICS_MAXIMUM_PATH_DELAYS_AVAILABLE","features":[387]},{"name":"USB_DEVICE_CHARACTERISTICS_VERSION_1","features":[387]},{"name":"USB_DEVICE_CLASS_APPLICATION_SPECIFIC","features":[387]},{"name":"USB_DEVICE_CLASS_AUDIO","features":[387]},{"name":"USB_DEVICE_CLASS_AUDIO_VIDEO","features":[387]},{"name":"USB_DEVICE_CLASS_BILLBOARD","features":[387]},{"name":"USB_DEVICE_CLASS_CDC_DATA","features":[387]},{"name":"USB_DEVICE_CLASS_COMMUNICATIONS","features":[387]},{"name":"USB_DEVICE_CLASS_CONTENT_SECURITY","features":[387]},{"name":"USB_DEVICE_CLASS_DIAGNOSTIC_DEVICE","features":[387]},{"name":"USB_DEVICE_CLASS_HUB","features":[387]},{"name":"USB_DEVICE_CLASS_HUMAN_INTERFACE","features":[387]},{"name":"USB_DEVICE_CLASS_IMAGE","features":[387]},{"name":"USB_DEVICE_CLASS_MISCELLANEOUS","features":[387]},{"name":"USB_DEVICE_CLASS_MONITOR","features":[387]},{"name":"USB_DEVICE_CLASS_PERSONAL_HEALTHCARE","features":[387]},{"name":"USB_DEVICE_CLASS_PHYSICAL_INTERFACE","features":[387]},{"name":"USB_DEVICE_CLASS_POWER","features":[387]},{"name":"USB_DEVICE_CLASS_PRINTER","features":[387]},{"name":"USB_DEVICE_CLASS_RESERVED","features":[387]},{"name":"USB_DEVICE_CLASS_SMART_CARD","features":[387]},{"name":"USB_DEVICE_CLASS_STORAGE","features":[387]},{"name":"USB_DEVICE_CLASS_VENDOR_SPECIFIC","features":[387]},{"name":"USB_DEVICE_CLASS_VIDEO","features":[387]},{"name":"USB_DEVICE_CLASS_WIRELESS_CONTROLLER","features":[387]},{"name":"USB_DEVICE_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_DEVICE_FIRMWARE_HASH_LENGTH","features":[387]},{"name":"USB_DEVICE_INFO","features":[387]},{"name":"USB_DEVICE_NODE_INFO","features":[387,305]},{"name":"USB_DEVICE_PERFORMANCE_INFO","features":[387]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR","features":[387]},{"name":"USB_DEVICE_QUALIFIER_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_DEVICE_SPEED","features":[387]},{"name":"USB_DEVICE_STATE","features":[387]},{"name":"USB_DEVICE_STATUS","features":[387]},{"name":"USB_DEVICE_TYPE","features":[387]},{"name":"USB_DIAG_IGNORE_HUBS_OFF","features":[387]},{"name":"USB_DIAG_IGNORE_HUBS_ON","features":[387]},{"name":"USB_DISALLOW_FIRMWARE_UPDATE","features":[387]},{"name":"USB_DRIVER_VERSION_PARAMETERS","features":[387,305]},{"name":"USB_ENABLE_PORT","features":[387]},{"name":"USB_ENDPOINT_ADDRESS_MASK","features":[387]},{"name":"USB_ENDPOINT_DESCRIPTOR","features":[387]},{"name":"USB_ENDPOINT_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_ENDPOINT_DIRECTION_MASK","features":[387]},{"name":"USB_ENDPOINT_STATUS","features":[387]},{"name":"USB_ENDPOINT_SUPERSPEED_BULK_MAX_PACKET_SIZE","features":[387]},{"name":"USB_ENDPOINT_SUPERSPEED_CONTROL_MAX_PACKET_SIZE","features":[387]},{"name":"USB_ENDPOINT_SUPERSPEED_INTERRUPT_MAX_PACKET_SIZE","features":[387]},{"name":"USB_ENDPOINT_SUPERSPEED_ISO_MAX_PACKET_SIZE","features":[387]},{"name":"USB_ENDPOINT_TYPE_BULK","features":[387]},{"name":"USB_ENDPOINT_TYPE_BULK_RESERVED_MASK","features":[387]},{"name":"USB_ENDPOINT_TYPE_CONTROL","features":[387]},{"name":"USB_ENDPOINT_TYPE_CONTROL_RESERVED_MASK","features":[387]},{"name":"USB_ENDPOINT_TYPE_INTERRUPT","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_RESERVED_MASK","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ADAPTIVE","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_ASYNCHRONOUS","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_MASK","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_NO_SYNCHRONIZATION","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_SYNCHRONIZATION_SYNCHRONOUS","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_DATA_ENDOINT","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_FEEDBACK_ENDPOINT","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_IMPLICIT_FEEDBACK_DATA_ENDPOINT","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_MASK","features":[387]},{"name":"USB_ENDPOINT_TYPE_ISOCHRONOUS_USAGE_RESERVED","features":[387]},{"name":"USB_ENDPOINT_TYPE_MASK","features":[387]},{"name":"USB_FAIL_GET_STATUS","features":[387]},{"name":"USB_FEATURE_BATTERY_WAKE_MASK","features":[387]},{"name":"USB_FEATURE_CHARGING_POLICY","features":[387]},{"name":"USB_FEATURE_ENDPOINT_STALL","features":[387]},{"name":"USB_FEATURE_FUNCTION_SUSPEND","features":[387]},{"name":"USB_FEATURE_INTERFACE_POWER_D0","features":[387]},{"name":"USB_FEATURE_INTERFACE_POWER_D1","features":[387]},{"name":"USB_FEATURE_INTERFACE_POWER_D2","features":[387]},{"name":"USB_FEATURE_INTERFACE_POWER_D3","features":[387]},{"name":"USB_FEATURE_LDM_ENABLE","features":[387]},{"name":"USB_FEATURE_LTM_ENABLE","features":[387]},{"name":"USB_FEATURE_OS_IS_PD_AWARE","features":[387]},{"name":"USB_FEATURE_POLICY_MODE","features":[387]},{"name":"USB_FEATURE_REMOTE_WAKEUP","features":[387]},{"name":"USB_FEATURE_TEST_MODE","features":[387]},{"name":"USB_FEATURE_U1_ENABLE","features":[387]},{"name":"USB_FEATURE_U2_ENABLE","features":[387]},{"name":"USB_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC_INFORMATION","features":[387,305]},{"name":"USB_FUNCTION_SUSPEND_OPTIONS","features":[387]},{"name":"USB_GETSTATUS_LTM_ENABLE","features":[387]},{"name":"USB_GETSTATUS_REMOTE_WAKEUP_ENABLED","features":[387]},{"name":"USB_GETSTATUS_SELF_POWERED","features":[387]},{"name":"USB_GETSTATUS_U1_ENABLE","features":[387]},{"name":"USB_GETSTATUS_U2_ENABLE","features":[387]},{"name":"USB_GET_BUSGUID_INFO","features":[387]},{"name":"USB_GET_BUS_INFO","features":[387]},{"name":"USB_GET_CONTROLLER_NAME","features":[387]},{"name":"USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION","features":[387]},{"name":"USB_GET_DEVICE_CHARACTERISTICS","features":[387]},{"name":"USB_GET_DEVICE_HANDLE","features":[387]},{"name":"USB_GET_DEVICE_HANDLE_EX","features":[387]},{"name":"USB_GET_FIRMWARE_ALLOWED_OR_DISALLOWED_STATE","features":[387]},{"name":"USB_GET_FIRMWARE_HASH","features":[387]},{"name":"USB_GET_FRAME_NUMBER_AND_QPC_FOR_TIME_SYNC","features":[387]},{"name":"USB_GET_HUB_CAPABILITIES","features":[387]},{"name":"USB_GET_HUB_CAPABILITIES_EX","features":[387]},{"name":"USB_GET_HUB_CONFIG_INFO","features":[387]},{"name":"USB_GET_HUB_COUNT","features":[387]},{"name":"USB_GET_HUB_INFORMATION_EX","features":[387]},{"name":"USB_GET_HUB_NAME","features":[387]},{"name":"USB_GET_NODE_CONNECTION_ATTRIBUTES","features":[387]},{"name":"USB_GET_NODE_CONNECTION_DRIVERKEY_NAME","features":[387]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION","features":[387]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX","features":[387]},{"name":"USB_GET_NODE_CONNECTION_INFORMATION_EX_V2","features":[387]},{"name":"USB_GET_NODE_CONNECTION_NAME","features":[387]},{"name":"USB_GET_NODE_INFORMATION","features":[387]},{"name":"USB_GET_PARENT_HUB_INFO","features":[387]},{"name":"USB_GET_PORT_CONNECTOR_PROPERTIES","features":[387]},{"name":"USB_GET_PORT_STATUS","features":[387]},{"name":"USB_GET_ROOTHUB_PDO","features":[387]},{"name":"USB_GET_TOPOLOGY_ADDRESS","features":[387]},{"name":"USB_GET_TRANSPORT_CHARACTERISTICS","features":[387]},{"name":"USB_GET_TT_DEVICE_HANDLE","features":[387]},{"name":"USB_HCD_DRIVERKEY_NAME","features":[387]},{"name":"USB_HC_FEATURE_FLAG_PORT_POWER_SWITCHING","features":[387]},{"name":"USB_HC_FEATURE_FLAG_SEL_SUSPEND","features":[387]},{"name":"USB_HC_FEATURE_LEGACY_BIOS","features":[387]},{"name":"USB_HC_FEATURE_TIME_SYNC_API","features":[387]},{"name":"USB_HIGH_SPEED_MAXPACKET","features":[387]},{"name":"USB_HUB_30_PORT_REMOTE_WAKE_MASK","features":[387]},{"name":"USB_HUB_CAPABILITIES","features":[387]},{"name":"USB_HUB_CAPABILITIES_EX","features":[387]},{"name":"USB_HUB_CAP_FLAGS","features":[387]},{"name":"USB_HUB_CHANGE","features":[387]},{"name":"USB_HUB_CYCLE_PORT","features":[387]},{"name":"USB_HUB_DESCRIPTOR","features":[387]},{"name":"USB_HUB_DEVICE_INFO","features":[387,305]},{"name":"USB_HUB_DEVICE_UXD_SETTINGS","features":[387]},{"name":"USB_HUB_INFORMATION","features":[387,305]},{"name":"USB_HUB_INFORMATION_EX","features":[387]},{"name":"USB_HUB_NAME","features":[387]},{"name":"USB_HUB_NODE","features":[387]},{"name":"USB_HUB_PORT_INFORMATION","features":[387]},{"name":"USB_HUB_STATUS","features":[387]},{"name":"USB_HUB_STATUS_AND_CHANGE","features":[387]},{"name":"USB_HUB_TYPE","features":[387]},{"name":"USB_HcGeneric","features":[387]},{"name":"USB_IDLE_CALLBACK","features":[387]},{"name":"USB_IDLE_CALLBACK_INFO","features":[387]},{"name":"USB_IDLE_NOTIFICATION","features":[387]},{"name":"USB_IDLE_NOTIFICATION_EX","features":[387]},{"name":"USB_ID_STRING","features":[387]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR","features":[387]},{"name":"USB_INTERFACE_ASSOCIATION_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_INTERFACE_DESCRIPTOR","features":[387]},{"name":"USB_INTERFACE_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR","features":[387]},{"name":"USB_INTERFACE_POWER_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_INTERFACE_STATUS","features":[387]},{"name":"USB_MI_PARENT_INFORMATION","features":[387]},{"name":"USB_NODE_CONNECTION_ATTRIBUTES","features":[387]},{"name":"USB_NODE_CONNECTION_DRIVERKEY_NAME","features":[387]},{"name":"USB_NODE_CONNECTION_INFORMATION","features":[387,305]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX","features":[387,305]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2","features":[387]},{"name":"USB_NODE_CONNECTION_INFORMATION_EX_V2_FLAGS","features":[387]},{"name":"USB_NODE_CONNECTION_NAME","features":[387]},{"name":"USB_NODE_INFORMATION","features":[387,305]},{"name":"USB_NOTIFICATION","features":[387]},{"name":"USB_NOTIFICATION_TYPE","features":[387]},{"name":"USB_NOTIFY_ON_TRANSPORT_CHARACTERISTICS_CHANGE","features":[387]},{"name":"USB_OPEN_RAW_DEVICE_PARAMETERS","features":[387]},{"name":"USB_OTG_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_OTHER_SPEED_CONFIGURATION_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_PACKETFLAG_ASYNC_IN","features":[387]},{"name":"USB_PACKETFLAG_ASYNC_OUT","features":[387]},{"name":"USB_PACKETFLAG_FULL_SPEED","features":[387]},{"name":"USB_PACKETFLAG_HIGH_SPEED","features":[387]},{"name":"USB_PACKETFLAG_ISO_IN","features":[387]},{"name":"USB_PACKETFLAG_ISO_OUT","features":[387]},{"name":"USB_PACKETFLAG_LOW_SPEED","features":[387]},{"name":"USB_PACKETFLAG_SETUP","features":[387]},{"name":"USB_PACKETFLAG_TOGGLE0","features":[387]},{"name":"USB_PACKETFLAG_TOGGLE1","features":[387]},{"name":"USB_PASS_THRU_PARAMETERS","features":[387]},{"name":"USB_PIPE_INFO","features":[387]},{"name":"USB_PORTATTR_MINI_CONNECTOR","features":[387]},{"name":"USB_PORTATTR_NO_CONNECTOR","features":[387]},{"name":"USB_PORTATTR_NO_OVERCURRENT_UI","features":[387]},{"name":"USB_PORTATTR_OEM_CONNECTOR","features":[387]},{"name":"USB_PORTATTR_OWNED_BY_CC","features":[387]},{"name":"USB_PORTATTR_SHARED_USB2","features":[387]},{"name":"USB_PORT_CHANGE","features":[387]},{"name":"USB_PORT_CONNECTOR_PROPERTIES","features":[387]},{"name":"USB_PORT_EXT_STATUS","features":[387]},{"name":"USB_PORT_EXT_STATUS_AND_CHANGE","features":[387]},{"name":"USB_PORT_PROPERTIES","features":[387]},{"name":"USB_PORT_STATUS","features":[387]},{"name":"USB_PORT_STATUS_AND_CHANGE","features":[387]},{"name":"USB_PORT_STATUS_CONNECT","features":[387]},{"name":"USB_PORT_STATUS_ENABLE","features":[387]},{"name":"USB_PORT_STATUS_HIGH_SPEED","features":[387]},{"name":"USB_PORT_STATUS_LOW_SPEED","features":[387]},{"name":"USB_PORT_STATUS_OVER_CURRENT","features":[387]},{"name":"USB_PORT_STATUS_POWER","features":[387]},{"name":"USB_PORT_STATUS_RESET","features":[387]},{"name":"USB_PORT_STATUS_SUSPEND","features":[387]},{"name":"USB_POWER_INFO","features":[387,305]},{"name":"USB_PROTOCOLS","features":[387]},{"name":"USB_RECORD_FAILURE","features":[387]},{"name":"USB_REGISTER_COMPOSITE_DEVICE","features":[387]},{"name":"USB_REGISTER_FOR_TRANSPORT_BANDWIDTH_CHANGE","features":[387]},{"name":"USB_REGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[387]},{"name":"USB_REGISTER_FOR_TRANSPORT_LATENCY_CHANGE","features":[387]},{"name":"USB_REQUEST_CLEAR_FEATURE","features":[387]},{"name":"USB_REQUEST_CLEAR_TT_BUFFER","features":[387]},{"name":"USB_REQUEST_GET_CONFIGURATION","features":[387]},{"name":"USB_REQUEST_GET_DESCRIPTOR","features":[387]},{"name":"USB_REQUEST_GET_FIRMWARE_STATUS","features":[387]},{"name":"USB_REQUEST_GET_INTERFACE","features":[387]},{"name":"USB_REQUEST_GET_PORT_ERR_COUNT","features":[387]},{"name":"USB_REQUEST_GET_STATE","features":[387]},{"name":"USB_REQUEST_GET_STATUS","features":[387]},{"name":"USB_REQUEST_GET_TT_STATE","features":[387]},{"name":"USB_REQUEST_ISOCH_DELAY","features":[387]},{"name":"USB_REQUEST_REMOTE_WAKE_NOTIFICATION","features":[387]},{"name":"USB_REQUEST_RESET_TT","features":[387]},{"name":"USB_REQUEST_SET_ADDRESS","features":[387]},{"name":"USB_REQUEST_SET_CONFIGURATION","features":[387]},{"name":"USB_REQUEST_SET_DESCRIPTOR","features":[387]},{"name":"USB_REQUEST_SET_FEATURE","features":[387]},{"name":"USB_REQUEST_SET_FIRMWARE_STATUS","features":[387]},{"name":"USB_REQUEST_SET_HUB_DEPTH","features":[387]},{"name":"USB_REQUEST_SET_INTERFACE","features":[387]},{"name":"USB_REQUEST_SET_SEL","features":[387]},{"name":"USB_REQUEST_STOP_TT","features":[387]},{"name":"USB_REQUEST_SYNC_FRAME","features":[387]},{"name":"USB_REQ_GLOBAL_RESUME","features":[387]},{"name":"USB_REQ_GLOBAL_SUSPEND","features":[387]},{"name":"USB_RESERVED_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_RESERVED_USER_BASE","features":[387]},{"name":"USB_RESET_HUB","features":[387]},{"name":"USB_RESET_PORT","features":[387]},{"name":"USB_ROOT_HUB_NAME","features":[387]},{"name":"USB_SEND_RAW_COMMAND_PARAMETERS","features":[387]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC","features":[387]},{"name":"USB_START_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[387,305]},{"name":"USB_STATUS_EXT_PORT_STATUS","features":[387]},{"name":"USB_STATUS_PD_STATUS","features":[387]},{"name":"USB_STATUS_PORT_STATUS","features":[387]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC","features":[387]},{"name":"USB_STOP_TRACKING_FOR_TIME_SYNC_INFORMATION","features":[387,305]},{"name":"USB_STRING_DESCRIPTOR","features":[387]},{"name":"USB_STRING_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_SUBMIT_URB","features":[387]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MAX_BYTESPERINTERVAL","features":[387]},{"name":"USB_SUPERSPEEDPLUS_ISOCHRONOUS_MIN_BYTESPERINTERVAL","features":[387]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR","features":[387]},{"name":"USB_SUPERSPEEDPLUS_ISOCH_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR","features":[387]},{"name":"USB_SUPERSPEED_ENDPOINT_COMPANION_DESCRIPTOR_TYPE","features":[387]},{"name":"USB_SUPERSPEED_ISOCHRONOUS_MAX_MULTIPLIER","features":[387]},{"name":"USB_SUPPORT_D0_COMMAND","features":[387]},{"name":"USB_SUPPORT_D1_COMMAND","features":[387]},{"name":"USB_SUPPORT_D1_WAKEUP","features":[387]},{"name":"USB_SUPPORT_D2_COMMAND","features":[387]},{"name":"USB_SUPPORT_D2_WAKEUP","features":[387]},{"name":"USB_SUPPORT_D3_COMMAND","features":[387]},{"name":"USB_TEST_MODE_TEST_FORCE_ENABLE","features":[387]},{"name":"USB_TEST_MODE_TEST_J","features":[387]},{"name":"USB_TEST_MODE_TEST_K","features":[387]},{"name":"USB_TEST_MODE_TEST_PACKET","features":[387]},{"name":"USB_TEST_MODE_TEST_SE0_NAK","features":[387]},{"name":"USB_TOPOLOGY_ADDRESS","features":[387]},{"name":"USB_TRANSPORT_CHARACTERISTICS","features":[387]},{"name":"USB_TRANSPORT_CHARACTERISTICS_BANDWIDTH_AVAILABLE","features":[387]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_NOTIFICATION","features":[387]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_REGISTRATION","features":[387]},{"name":"USB_TRANSPORT_CHARACTERISTICS_CHANGE_UNREGISTRATION","features":[387]},{"name":"USB_TRANSPORT_CHARACTERISTICS_LATENCY_AVAILABLE","features":[387]},{"name":"USB_TRANSPORT_CHARACTERISTICS_VERSION_1","features":[387]},{"name":"USB_UNICODE_NAME","features":[387]},{"name":"USB_UNREGISTER_COMPOSITE_DEVICE","features":[387]},{"name":"USB_UNREGISTER_FOR_TRANSPORT_CHARACTERISTICS_CHANGE","features":[387]},{"name":"USB_USB2HW_VERSION_PARAMETERS","features":[387]},{"name":"USB_USER_ERROR_CODE","features":[387]},{"name":"USB_WMI_DEVICE_NODE_TYPE","features":[387]},{"name":"Usb11Device","features":[387]},{"name":"Usb20Device","features":[387]},{"name":"Usb20Hub","features":[387]},{"name":"Usb30Hub","features":[387]},{"name":"UsbController","features":[387]},{"name":"UsbDevice","features":[387]},{"name":"UsbFullSpeed","features":[387]},{"name":"UsbHighSpeed","features":[387]},{"name":"UsbHub","features":[387]},{"name":"UsbLowSpeed","features":[387]},{"name":"UsbMIParent","features":[387]},{"name":"UsbRootHub","features":[387]},{"name":"UsbSuperSpeed","features":[387]},{"name":"UsbUserBufferTooSmall","features":[387]},{"name":"UsbUserDeviceNotStarted","features":[387]},{"name":"UsbUserErrorNotMapped","features":[387]},{"name":"UsbUserFeatureDisabled","features":[387]},{"name":"UsbUserInvalidHeaderParameter","features":[387]},{"name":"UsbUserInvalidParameter","features":[387]},{"name":"UsbUserInvalidRequestCode","features":[387]},{"name":"UsbUserMiniportError","features":[387]},{"name":"UsbUserNoDeviceConnected","features":[387]},{"name":"UsbUserNotSupported","features":[387]},{"name":"UsbUserSuccess","features":[387]},{"name":"UsbdEndpointOffloadHardwareAssisted","features":[387]},{"name":"UsbdEndpointOffloadModeNotSupported","features":[387]},{"name":"UsbdEndpointOffloadSoftwareAssisted","features":[387]},{"name":"UsbdPipeTypeBulk","features":[387]},{"name":"UsbdPipeTypeControl","features":[387]},{"name":"UsbdPipeTypeInterrupt","features":[387]},{"name":"UsbdPipeTypeIsochronous","features":[387]},{"name":"UsbfnBusSpeedFull","features":[387]},{"name":"UsbfnBusSpeedHigh","features":[387]},{"name":"UsbfnBusSpeedLow","features":[387]},{"name":"UsbfnBusSpeedMaximum","features":[387]},{"name":"UsbfnBusSpeedSuper","features":[387]},{"name":"UsbfnChargingDownstreamPort","features":[387]},{"name":"UsbfnDedicatedChargingPort","features":[387]},{"name":"UsbfnDeviceStateAddressed","features":[387]},{"name":"UsbfnDeviceStateAttached","features":[387]},{"name":"UsbfnDeviceStateConfigured","features":[387]},{"name":"UsbfnDeviceStateDefault","features":[387]},{"name":"UsbfnDeviceStateDetached","features":[387]},{"name":"UsbfnDeviceStateMinimum","features":[387]},{"name":"UsbfnDeviceStateStateMaximum","features":[387]},{"name":"UsbfnDeviceStateSuspended","features":[387]},{"name":"UsbfnDirectionIn","features":[387]},{"name":"UsbfnDirectionMaximum","features":[387]},{"name":"UsbfnDirectionMinimum","features":[387]},{"name":"UsbfnDirectionOut","features":[387]},{"name":"UsbfnDirectionRx","features":[387]},{"name":"UsbfnDirectionTx","features":[387]},{"name":"UsbfnEventAttach","features":[387]},{"name":"UsbfnEventBusTearDown","features":[387]},{"name":"UsbfnEventConfigured","features":[387]},{"name":"UsbfnEventDetach","features":[387]},{"name":"UsbfnEventMaximum","features":[387]},{"name":"UsbfnEventMinimum","features":[387]},{"name":"UsbfnEventPortType","features":[387]},{"name":"UsbfnEventReset","features":[387]},{"name":"UsbfnEventResume","features":[387]},{"name":"UsbfnEventSetInterface","features":[387]},{"name":"UsbfnEventSetupPacket","features":[387]},{"name":"UsbfnEventSuspend","features":[387]},{"name":"UsbfnEventUnConfigured","features":[387]},{"name":"UsbfnInvalidDedicatedChargingPort","features":[387]},{"name":"UsbfnPortTypeMaximum","features":[387]},{"name":"UsbfnProprietaryDedicatedChargingPort","features":[387]},{"name":"UsbfnStandardDownstreamPort","features":[387]},{"name":"UsbfnUnknownPort","features":[387]},{"name":"WDMUSB_POWER_STATE","features":[387]},{"name":"WINUSB_INTERFACE_HANDLE","features":[387]},{"name":"WINUSB_PIPE_INFORMATION","features":[387]},{"name":"WINUSB_PIPE_INFORMATION_EX","features":[387]},{"name":"WINUSB_PIPE_POLICY","features":[387]},{"name":"WINUSB_POWER_POLICY","features":[387]},{"name":"WINUSB_SETUP_PACKET","features":[387]},{"name":"WMI_USB_DEVICE_NODE_INFORMATION","features":[387]},{"name":"WMI_USB_DRIVER_INFORMATION","features":[387]},{"name":"WMI_USB_DRIVER_NOTIFICATION","features":[387]},{"name":"WMI_USB_HUB_NODE_INFORMATION","features":[387]},{"name":"WMI_USB_PERFORMANCE_INFORMATION","features":[387]},{"name":"WMI_USB_POWER_DEVICE_ENABLE","features":[387]},{"name":"WRITE_DATA_PIPE","features":[387]},{"name":"WdmUsbPowerDeviceD0","features":[387]},{"name":"WdmUsbPowerDeviceD1","features":[387]},{"name":"WdmUsbPowerDeviceD2","features":[387]},{"name":"WdmUsbPowerDeviceD3","features":[387]},{"name":"WdmUsbPowerDeviceUnspecified","features":[387]},{"name":"WdmUsbPowerNotMapped","features":[387]},{"name":"WdmUsbPowerSystemHibernate","features":[387]},{"name":"WdmUsbPowerSystemShutdown","features":[387]},{"name":"WdmUsbPowerSystemSleeping1","features":[387]},{"name":"WdmUsbPowerSystemSleeping2","features":[387]},{"name":"WdmUsbPowerSystemSleeping3","features":[387]},{"name":"WdmUsbPowerSystemUnspecified","features":[387]},{"name":"WdmUsbPowerSystemWorking","features":[387]},{"name":"WinUSB_TestGuid","features":[387]},{"name":"WinUsb_AbortPipe","features":[387,305]},{"name":"WinUsb_ControlTransfer","features":[387,305,310]},{"name":"WinUsb_FlushPipe","features":[387,305]},{"name":"WinUsb_Free","features":[387,305]},{"name":"WinUsb_GetAdjustedFrameNumber","features":[387,305]},{"name":"WinUsb_GetAssociatedInterface","features":[387,305]},{"name":"WinUsb_GetCurrentAlternateSetting","features":[387,305]},{"name":"WinUsb_GetCurrentFrameNumber","features":[387,305]},{"name":"WinUsb_GetCurrentFrameNumberAndQpc","features":[387,305]},{"name":"WinUsb_GetDescriptor","features":[387,305]},{"name":"WinUsb_GetOverlappedResult","features":[387,305,310]},{"name":"WinUsb_GetPipePolicy","features":[387,305]},{"name":"WinUsb_GetPowerPolicy","features":[387,305]},{"name":"WinUsb_Initialize","features":[387,305]},{"name":"WinUsb_ParseConfigurationDescriptor","features":[387]},{"name":"WinUsb_ParseDescriptors","features":[387]},{"name":"WinUsb_QueryDeviceInformation","features":[387,305]},{"name":"WinUsb_QueryInterfaceSettings","features":[387,305]},{"name":"WinUsb_QueryPipe","features":[387,305]},{"name":"WinUsb_QueryPipeEx","features":[387,305]},{"name":"WinUsb_ReadIsochPipe","features":[387,305,310]},{"name":"WinUsb_ReadIsochPipeAsap","features":[387,305,310]},{"name":"WinUsb_ReadPipe","features":[387,305,310]},{"name":"WinUsb_RegisterIsochBuffer","features":[387,305]},{"name":"WinUsb_ResetPipe","features":[387,305]},{"name":"WinUsb_SetCurrentAlternateSetting","features":[387,305]},{"name":"WinUsb_SetPipePolicy","features":[387,305]},{"name":"WinUsb_SetPowerPolicy","features":[387,305]},{"name":"WinUsb_StartTrackingForTimeSync","features":[387,305]},{"name":"WinUsb_StopTrackingForTimeSync","features":[387,305]},{"name":"WinUsb_UnregisterIsochBuffer","features":[387,305]},{"name":"WinUsb_WriteIsochPipe","features":[387,305,310]},{"name":"WinUsb_WriteIsochPipeAsap","features":[387,305,310]},{"name":"WinUsb_WritePipe","features":[387,305,310]},{"name":"_URB_BULK_OR_INTERRUPT_TRANSFER","features":[387]},{"name":"_URB_CONTROL_DESCRIPTOR_REQUEST","features":[387]},{"name":"_URB_CONTROL_FEATURE_REQUEST","features":[387]},{"name":"_URB_CONTROL_GET_CONFIGURATION_REQUEST","features":[387]},{"name":"_URB_CONTROL_GET_INTERFACE_REQUEST","features":[387]},{"name":"_URB_CONTROL_GET_STATUS_REQUEST","features":[387]},{"name":"_URB_CONTROL_TRANSFER","features":[387]},{"name":"_URB_CONTROL_TRANSFER_EX","features":[387]},{"name":"_URB_CONTROL_VENDOR_OR_CLASS_REQUEST","features":[387]},{"name":"_URB_FRAME_LENGTH_CONTROL","features":[387]},{"name":"_URB_GET_CURRENT_FRAME_NUMBER","features":[387]},{"name":"_URB_GET_FRAME_LENGTH","features":[387]},{"name":"_URB_GET_ISOCH_PIPE_TRANSFER_PATH_DELAYS","features":[387]},{"name":"_URB_HCD_AREA","features":[387]},{"name":"_URB_HEADER","features":[387]},{"name":"_URB_ISOCH_TRANSFER","features":[387]},{"name":"_URB_OPEN_STATIC_STREAMS","features":[387]},{"name":"_URB_OS_FEATURE_DESCRIPTOR_REQUEST","features":[387]},{"name":"_URB_PIPE_REQUEST","features":[387]},{"name":"_URB_SELECT_CONFIGURATION","features":[387]},{"name":"_URB_SELECT_INTERFACE","features":[387]},{"name":"_URB_SET_FRAME_LENGTH","features":[387]}],"390":[{"name":"DeviceDiscoveryMechanism","features":[388]},{"name":"DirectedDiscovery","features":[388]},{"name":"IWSDAddress","features":[388]},{"name":"IWSDAsyncCallback","features":[388]},{"name":"IWSDAsyncResult","features":[388]},{"name":"IWSDAttachment","features":[388]},{"name":"IWSDDeviceHost","features":[388]},{"name":"IWSDDeviceHostNotify","features":[388]},{"name":"IWSDDeviceProxy","features":[388]},{"name":"IWSDEndpointProxy","features":[388]},{"name":"IWSDEventingStatus","features":[388]},{"name":"IWSDHttpAddress","features":[388]},{"name":"IWSDHttpAuthParameters","features":[388]},{"name":"IWSDHttpMessageParameters","features":[388]},{"name":"IWSDInboundAttachment","features":[388]},{"name":"IWSDMessageParameters","features":[388]},{"name":"IWSDMetadataExchange","features":[388]},{"name":"IWSDOutboundAttachment","features":[388]},{"name":"IWSDSSLClientCertificate","features":[388]},{"name":"IWSDScopeMatchingRule","features":[388]},{"name":"IWSDServiceMessaging","features":[388]},{"name":"IWSDServiceProxy","features":[388]},{"name":"IWSDServiceProxyEventing","features":[388]},{"name":"IWSDSignatureProperty","features":[388]},{"name":"IWSDTransportAddress","features":[388]},{"name":"IWSDUdpAddress","features":[388]},{"name":"IWSDUdpMessageParameters","features":[388]},{"name":"IWSDXMLContext","features":[388]},{"name":"IWSDiscoveredService","features":[388]},{"name":"IWSDiscoveryProvider","features":[388]},{"name":"IWSDiscoveryProviderNotify","features":[388]},{"name":"IWSDiscoveryPublisher","features":[388]},{"name":"IWSDiscoveryPublisherNotify","features":[388]},{"name":"MulticastDiscovery","features":[388]},{"name":"ONE_WAY","features":[388]},{"name":"OpAnyElement","features":[388]},{"name":"OpAnyElements","features":[388]},{"name":"OpAnyNumber","features":[388]},{"name":"OpAnyText","features":[388]},{"name":"OpAnything","features":[388]},{"name":"OpAttribute_","features":[388]},{"name":"OpBeginAll","features":[388]},{"name":"OpBeginAnyElement","features":[388]},{"name":"OpBeginChoice","features":[388]},{"name":"OpBeginElement_","features":[388]},{"name":"OpBeginSequence","features":[388]},{"name":"OpElement_","features":[388]},{"name":"OpEndAll","features":[388]},{"name":"OpEndChoice","features":[388]},{"name":"OpEndElement","features":[388]},{"name":"OpEndOfTable","features":[388]},{"name":"OpEndSequence","features":[388]},{"name":"OpFormatBool_","features":[388]},{"name":"OpFormatDateTime_","features":[388]},{"name":"OpFormatDom_","features":[388]},{"name":"OpFormatDouble_","features":[388]},{"name":"OpFormatDuration_","features":[388]},{"name":"OpFormatDynamicType_","features":[388]},{"name":"OpFormatFloat_","features":[388]},{"name":"OpFormatInt16_","features":[388]},{"name":"OpFormatInt32_","features":[388]},{"name":"OpFormatInt64_","features":[388]},{"name":"OpFormatInt8_","features":[388]},{"name":"OpFormatListInsertTail_","features":[388]},{"name":"OpFormatLookupType_","features":[388]},{"name":"OpFormatMax","features":[388]},{"name":"OpFormatName_","features":[388]},{"name":"OpFormatStruct_","features":[388]},{"name":"OpFormatType_","features":[388]},{"name":"OpFormatUInt16_","features":[388]},{"name":"OpFormatUInt32_","features":[388]},{"name":"OpFormatUInt64_","features":[388]},{"name":"OpFormatUInt8_","features":[388]},{"name":"OpFormatUnicodeString_","features":[388]},{"name":"OpFormatUri_","features":[388]},{"name":"OpFormatUuidUri_","features":[388]},{"name":"OpFormatXMLDeclaration_","features":[388]},{"name":"OpNone","features":[388]},{"name":"OpOneOrMore","features":[388]},{"name":"OpOptional","features":[388]},{"name":"OpProcess_","features":[388]},{"name":"OpQualifiedAttribute_","features":[388]},{"name":"PWSD_SOAP_MESSAGE_HANDLER","features":[388]},{"name":"REQUESTBODY_GetStatus","features":[388]},{"name":"REQUESTBODY_Renew","features":[388,305]},{"name":"REQUESTBODY_Subscribe","features":[388,305]},{"name":"REQUESTBODY_Unsubscribe","features":[388]},{"name":"RESPONSEBODY_GetMetadata","features":[388]},{"name":"RESPONSEBODY_GetStatus","features":[388,305]},{"name":"RESPONSEBODY_Renew","features":[388,305]},{"name":"RESPONSEBODY_Subscribe","features":[388,305]},{"name":"RESPONSEBODY_SubscriptionEnd","features":[388]},{"name":"SecureDirectedDiscovery","features":[388]},{"name":"TWO_WAY","features":[388]},{"name":"WSDAPI_ADDRESSFAMILY_IPV4","features":[388]},{"name":"WSDAPI_ADDRESSFAMILY_IPV6","features":[388]},{"name":"WSDAPI_COMPACTSIG_ACCEPT_ALL_MESSAGES","features":[388]},{"name":"WSDAPI_OPTION_MAX_INBOUND_MESSAGE_SIZE","features":[388]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_DEBUGGER","features":[388]},{"name":"WSDAPI_OPTION_TRACE_XML_TO_FILE","features":[388]},{"name":"WSDAPI_SSL_CERT_APPLY_DEFAULT_CHECKS","features":[388]},{"name":"WSDAPI_SSL_CERT_IGNORE_EXPIRY","features":[388]},{"name":"WSDAPI_SSL_CERT_IGNORE_INVALID_CN","features":[388]},{"name":"WSDAPI_SSL_CERT_IGNORE_REVOCATION","features":[388]},{"name":"WSDAPI_SSL_CERT_IGNORE_UNKNOWN_CA","features":[388]},{"name":"WSDAPI_SSL_CERT_IGNORE_WRONG_USAGE","features":[388]},{"name":"WSDAllocateLinkedMemory","features":[388]},{"name":"WSDAttachLinkedMemory","features":[388]},{"name":"WSDCreateDeviceHost","features":[388]},{"name":"WSDCreateDeviceHost2","features":[388]},{"name":"WSDCreateDeviceHostAdvanced","features":[388]},{"name":"WSDCreateDeviceProxy","features":[388]},{"name":"WSDCreateDeviceProxy2","features":[388]},{"name":"WSDCreateDeviceProxyAdvanced","features":[388]},{"name":"WSDCreateDiscoveryProvider","features":[388]},{"name":"WSDCreateDiscoveryProvider2","features":[388]},{"name":"WSDCreateDiscoveryPublisher","features":[388]},{"name":"WSDCreateDiscoveryPublisher2","features":[388]},{"name":"WSDCreateHttpAddress","features":[388]},{"name":"WSDCreateHttpMessageParameters","features":[388]},{"name":"WSDCreateOutboundAttachment","features":[388]},{"name":"WSDCreateUdpAddress","features":[388]},{"name":"WSDCreateUdpMessageParameters","features":[388]},{"name":"WSDDetachLinkedMemory","features":[388]},{"name":"WSDET_INCOMING_FAULT","features":[388]},{"name":"WSDET_INCOMING_MESSAGE","features":[388]},{"name":"WSDET_NONE","features":[388]},{"name":"WSDET_RESPONSE_TIMEOUT","features":[388]},{"name":"WSDET_TRANSMISSION_FAILURE","features":[388]},{"name":"WSDEventType","features":[388]},{"name":"WSDFreeLinkedMemory","features":[388]},{"name":"WSDGenerateFault","features":[388]},{"name":"WSDGenerateFaultEx","features":[388]},{"name":"WSDGetConfigurationOption","features":[388]},{"name":"WSDSetConfigurationOption","features":[388]},{"name":"WSDUdpMessageType","features":[388]},{"name":"WSDUdpRetransmitParams","features":[388]},{"name":"WSDUriDecode","features":[388]},{"name":"WSDUriEncode","features":[388]},{"name":"WSDXMLAddChild","features":[388]},{"name":"WSDXMLAddSibling","features":[388]},{"name":"WSDXMLBuildAnyForSingleElement","features":[388]},{"name":"WSDXMLCleanupElement","features":[388]},{"name":"WSDXMLCreateContext","features":[388]},{"name":"WSDXMLGetNameFromBuiltinNamespace","features":[388]},{"name":"WSDXMLGetValueFromAny","features":[388]},{"name":"WSDXML_ATTRIBUTE","features":[388]},{"name":"WSDXML_ELEMENT","features":[388]},{"name":"WSDXML_ELEMENT_LIST","features":[388]},{"name":"WSDXML_NAME","features":[388]},{"name":"WSDXML_NAMESPACE","features":[388]},{"name":"WSDXML_NODE","features":[388]},{"name":"WSDXML_OP","features":[388]},{"name":"WSDXML_PREFIX_MAPPING","features":[388]},{"name":"WSDXML_TEXT","features":[388]},{"name":"WSDXML_TYPE","features":[388]},{"name":"WSD_APP_SEQUENCE","features":[388]},{"name":"WSD_BYE","features":[388]},{"name":"WSD_CONFIG_ADDRESSES","features":[388]},{"name":"WSD_CONFIG_DEVICE_ADDRESSES","features":[388]},{"name":"WSD_CONFIG_HOSTING_ADDRESSES","features":[388]},{"name":"WSD_CONFIG_MAX_INBOUND_MESSAGE_SIZE","features":[388]},{"name":"WSD_CONFIG_MAX_OUTBOUND_MESSAGE_SIZE","features":[388]},{"name":"WSD_CONFIG_PARAM","features":[388]},{"name":"WSD_CONFIG_PARAM_TYPE","features":[388]},{"name":"WSD_DATETIME","features":[388,305]},{"name":"WSD_DEFAULT_EVENTING_ADDRESS","features":[388]},{"name":"WSD_DEFAULT_HOSTING_ADDRESS","features":[388]},{"name":"WSD_DEFAULT_SECURE_HOSTING_ADDRESS","features":[388]},{"name":"WSD_DURATION","features":[388,305]},{"name":"WSD_ENDPOINT_REFERENCE","features":[388]},{"name":"WSD_ENDPOINT_REFERENCE_LIST","features":[388]},{"name":"WSD_EVENT","features":[388]},{"name":"WSD_EVENTING_DELIVERY_MODE","features":[388]},{"name":"WSD_EVENTING_DELIVERY_MODE_PUSH","features":[388]},{"name":"WSD_EVENTING_EXPIRES","features":[388,305]},{"name":"WSD_EVENTING_FILTER","features":[388]},{"name":"WSD_EVENTING_FILTER_ACTION","features":[388]},{"name":"WSD_HANDLER_CONTEXT","features":[388]},{"name":"WSD_HEADER_RELATESTO","features":[388]},{"name":"WSD_HELLO","features":[388]},{"name":"WSD_HOST_METADATA","features":[388]},{"name":"WSD_LOCALIZED_STRING","features":[388]},{"name":"WSD_LOCALIZED_STRING_LIST","features":[388]},{"name":"WSD_METADATA_SECTION","features":[388]},{"name":"WSD_METADATA_SECTION_LIST","features":[388]},{"name":"WSD_NAME_LIST","features":[388]},{"name":"WSD_OPERATION","features":[388]},{"name":"WSD_PORT_TYPE","features":[388]},{"name":"WSD_PROBE","features":[388]},{"name":"WSD_PROBE_MATCH","features":[388]},{"name":"WSD_PROBE_MATCHES","features":[388]},{"name":"WSD_PROBE_MATCH_LIST","features":[388]},{"name":"WSD_PROTOCOL_TYPE","features":[388]},{"name":"WSD_PT_ALL","features":[388]},{"name":"WSD_PT_HTTP","features":[388]},{"name":"WSD_PT_HTTPS","features":[388]},{"name":"WSD_PT_NONE","features":[388]},{"name":"WSD_PT_UDP","features":[388]},{"name":"WSD_REFERENCE_PARAMETERS","features":[388]},{"name":"WSD_REFERENCE_PROPERTIES","features":[388]},{"name":"WSD_RELATIONSHIP_METADATA","features":[388]},{"name":"WSD_RESOLVE","features":[388]},{"name":"WSD_RESOLVE_MATCH","features":[388]},{"name":"WSD_RESOLVE_MATCHES","features":[388]},{"name":"WSD_SCOPES","features":[388]},{"name":"WSD_SECURITY_CERT_VALIDATION","features":[388,305,389]},{"name":"WSD_SECURITY_CERT_VALIDATION_V1","features":[388,305,389]},{"name":"WSD_SECURITY_COMPACTSIG_SIGNING_CERT","features":[388]},{"name":"WSD_SECURITY_COMPACTSIG_VALIDATION","features":[388]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NEGOTIATE","features":[388]},{"name":"WSD_SECURITY_HTTP_AUTH_SCHEME_NTLM","features":[388]},{"name":"WSD_SECURITY_REQUIRE_CLIENT_CERT_OR_HTTP_CLIENT_AUTH","features":[388]},{"name":"WSD_SECURITY_REQUIRE_HTTP_CLIENT_AUTH","features":[388]},{"name":"WSD_SECURITY_SIGNATURE_VALIDATION","features":[388,305,389]},{"name":"WSD_SECURITY_SSL_CERT_FOR_CLIENT_AUTH","features":[388]},{"name":"WSD_SECURITY_SSL_CLIENT_CERT_VALIDATION","features":[388]},{"name":"WSD_SECURITY_SSL_NEGOTIATE_CLIENT_CERT","features":[388]},{"name":"WSD_SECURITY_SSL_SERVER_CERT_VALIDATION","features":[388]},{"name":"WSD_SECURITY_USE_HTTP_CLIENT_AUTH","features":[388]},{"name":"WSD_SERVICE_METADATA","features":[388]},{"name":"WSD_SERVICE_METADATA_LIST","features":[388]},{"name":"WSD_SOAP_FAULT","features":[388]},{"name":"WSD_SOAP_FAULT_CODE","features":[388]},{"name":"WSD_SOAP_FAULT_REASON","features":[388]},{"name":"WSD_SOAP_FAULT_SUBCODE","features":[388]},{"name":"WSD_SOAP_HEADER","features":[388]},{"name":"WSD_SOAP_MESSAGE","features":[388]},{"name":"WSD_STUB_FUNCTION","features":[388]},{"name":"WSD_SYNCHRONOUS_RESPONSE_CONTEXT","features":[388,305]},{"name":"WSD_THIS_DEVICE_METADATA","features":[388]},{"name":"WSD_THIS_MODEL_METADATA","features":[388]},{"name":"WSD_UNKNOWN_LOOKUP","features":[388]},{"name":"WSD_URI_LIST","features":[388]}],"391":[{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_INVALID","features":[305]},{"name":"APPMODEL_ERROR_DYNAMIC_PROPERTY_READ_FAILED","features":[305]},{"name":"APPMODEL_ERROR_NO_APPLICATION","features":[305]},{"name":"APPMODEL_ERROR_NO_MUTABLE_DIRECTORY","features":[305]},{"name":"APPMODEL_ERROR_NO_PACKAGE","features":[305]},{"name":"APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT","features":[305]},{"name":"APPMODEL_ERROR_PACKAGE_NOT_AVAILABLE","features":[305]},{"name":"APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT","features":[305]},{"name":"APPX_E_BLOCK_HASH_INVALID","features":[305]},{"name":"APPX_E_CORRUPT_CONTENT","features":[305]},{"name":"APPX_E_DELTA_APPENDED_PACKAGE_NOT_ALLOWED","features":[305]},{"name":"APPX_E_DELTA_BASELINE_VERSION_MISMATCH","features":[305]},{"name":"APPX_E_DELTA_PACKAGE_MISSING_FILE","features":[305]},{"name":"APPX_E_DIGEST_MISMATCH","features":[305]},{"name":"APPX_E_FILE_COMPRESSION_MISMATCH","features":[305]},{"name":"APPX_E_INTERLEAVING_NOT_ALLOWED","features":[305]},{"name":"APPX_E_INVALID_APPINSTALLER","features":[305]},{"name":"APPX_E_INVALID_BLOCKMAP","features":[305]},{"name":"APPX_E_INVALID_CONTENTGROUPMAP","features":[305]},{"name":"APPX_E_INVALID_DELTA_PACKAGE","features":[305]},{"name":"APPX_E_INVALID_ENCRYPTION_EXCLUSION_FILE_LIST","features":[305]},{"name":"APPX_E_INVALID_KEY_INFO","features":[305]},{"name":"APPX_E_INVALID_MANIFEST","features":[305]},{"name":"APPX_E_INVALID_PACKAGESIGNCONFIG","features":[305]},{"name":"APPX_E_INVALID_PACKAGE_FOLDER_ACLS","features":[305]},{"name":"APPX_E_INVALID_PACKAGING_LAYOUT","features":[305]},{"name":"APPX_E_INVALID_PAYLOAD_PACKAGE_EXTENSION","features":[305]},{"name":"APPX_E_INVALID_PUBLISHER_BRIDGING","features":[305]},{"name":"APPX_E_INVALID_SIP_CLIENT_DATA","features":[305]},{"name":"APPX_E_MISSING_REQUIRED_FILE","features":[305]},{"name":"APPX_E_PACKAGING_INTERNAL","features":[305]},{"name":"APPX_E_RELATIONSHIPS_NOT_ALLOWED","features":[305]},{"name":"APPX_E_REQUESTED_RANGE_TOO_LARGE","features":[305]},{"name":"APPX_E_RESOURCESPRI_NOT_ALLOWED","features":[305]},{"name":"APP_LOCAL_DEVICE_ID","features":[305]},{"name":"APP_LOCAL_DEVICE_ID_SIZE","features":[305]},{"name":"BOOL","features":[305]},{"name":"BOOLEAN","features":[305]},{"name":"BSTR","features":[305]},{"name":"BT_E_SPURIOUS_ACTIVATION","features":[305]},{"name":"CACHE_E_FIRST","features":[305]},{"name":"CACHE_E_LAST","features":[305]},{"name":"CACHE_E_NOCACHE_UPDATED","features":[305]},{"name":"CACHE_S_FIRST","features":[305]},{"name":"CACHE_S_FORMATETC_NOTSUPPORTED","features":[305]},{"name":"CACHE_S_LAST","features":[305]},{"name":"CACHE_S_SAMECACHE","features":[305]},{"name":"CACHE_S_SOMECACHES_NOTUPDATED","features":[305]},{"name":"CAT_E_CATIDNOEXIST","features":[305]},{"name":"CAT_E_FIRST","features":[305]},{"name":"CAT_E_LAST","features":[305]},{"name":"CAT_E_NODESCRIPTION","features":[305]},{"name":"CERTSRV_E_ADMIN_DENIED_REQUEST","features":[305]},{"name":"CERTSRV_E_ALIGNMENT_FAULT","features":[305]},{"name":"CERTSRV_E_ARCHIVED_KEY_REQUIRED","features":[305]},{"name":"CERTSRV_E_ARCHIVED_KEY_UNEXPECTED","features":[305]},{"name":"CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE","features":[305]},{"name":"CERTSRV_E_BAD_RENEWAL_SUBJECT","features":[305]},{"name":"CERTSRV_E_BAD_REQUESTSTATUS","features":[305]},{"name":"CERTSRV_E_BAD_REQUESTSUBJECT","features":[305]},{"name":"CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL","features":[305]},{"name":"CERTSRV_E_BAD_TEMPLATE_VERSION","features":[305]},{"name":"CERTSRV_E_CERT_TYPE_OVERLAP","features":[305]},{"name":"CERTSRV_E_CORRUPT_KEY_ATTESTATION","features":[305]},{"name":"CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE","features":[305]},{"name":"CERTSRV_E_ENCODING_LENGTH","features":[305]},{"name":"CERTSRV_E_ENCRYPTION_CERT_REQUIRED","features":[305]},{"name":"CERTSRV_E_ENROLL_DENIED","features":[305]},{"name":"CERTSRV_E_EXPIRED_CHALLENGE","features":[305]},{"name":"CERTSRV_E_INVALID_ATTESTATION","features":[305]},{"name":"CERTSRV_E_INVALID_CA_CERTIFICATE","features":[305]},{"name":"CERTSRV_E_INVALID_EK","features":[305]},{"name":"CERTSRV_E_INVALID_IDBINDING","features":[305]},{"name":"CERTSRV_E_INVALID_REQUESTID","features":[305]},{"name":"CERTSRV_E_INVALID_RESPONSE","features":[305]},{"name":"CERTSRV_E_ISSUANCE_POLICY_REQUIRED","features":[305]},{"name":"CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED","features":[305]},{"name":"CERTSRV_E_KEY_ATTESTATION","features":[305]},{"name":"CERTSRV_E_KEY_ATTESTATION_NOT_SUPPORTED","features":[305]},{"name":"CERTSRV_E_KEY_LENGTH","features":[305]},{"name":"CERTSRV_E_NO_CAADMIN_DEFINED","features":[305]},{"name":"CERTSRV_E_NO_CERT_TYPE","features":[305]},{"name":"CERTSRV_E_NO_DB_SESSIONS","features":[305]},{"name":"CERTSRV_E_NO_POLICY_SERVER","features":[305]},{"name":"CERTSRV_E_NO_REQUEST","features":[305]},{"name":"CERTSRV_E_NO_VALID_KRA","features":[305]},{"name":"CERTSRV_E_PENDING_CLIENT_RESPONSE","features":[305]},{"name":"CERTSRV_E_PROPERTY_EMPTY","features":[305]},{"name":"CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY","features":[305]},{"name":"CERTSRV_E_REQUEST_PRECERTIFICATE_MISMATCH","features":[305]},{"name":"CERTSRV_E_RESTRICTEDOFFICER","features":[305]},{"name":"CERTSRV_E_ROLECONFLICT","features":[305]},{"name":"CERTSRV_E_SEC_EXT_DIRECTORY_SID_REQUIRED","features":[305]},{"name":"CERTSRV_E_SERVER_SUSPENDED","features":[305]},{"name":"CERTSRV_E_SIGNATURE_COUNT","features":[305]},{"name":"CERTSRV_E_SIGNATURE_POLICY_REQUIRED","features":[305]},{"name":"CERTSRV_E_SIGNATURE_REJECTED","features":[305]},{"name":"CERTSRV_E_SMIME_REQUIRED","features":[305]},{"name":"CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED","features":[305]},{"name":"CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED","features":[305]},{"name":"CERTSRV_E_SUBJECT_DNS_REQUIRED","features":[305]},{"name":"CERTSRV_E_SUBJECT_EMAIL_REQUIRED","features":[305]},{"name":"CERTSRV_E_SUBJECT_UPN_REQUIRED","features":[305]},{"name":"CERTSRV_E_TEMPLATE_CONFLICT","features":[305]},{"name":"CERTSRV_E_TEMPLATE_DENIED","features":[305]},{"name":"CERTSRV_E_TEMPLATE_POLICY_REQUIRED","features":[305]},{"name":"CERTSRV_E_TOO_MANY_SIGNATURES","features":[305]},{"name":"CERTSRV_E_UNKNOWN_CERT_TYPE","features":[305]},{"name":"CERTSRV_E_UNSUPPORTED_CERT_TYPE","features":[305]},{"name":"CERTSRV_E_WEAK_SIGNATURE_OR_KEY","features":[305]},{"name":"CERT_E_CHAINING","features":[305]},{"name":"CERT_E_CN_NO_MATCH","features":[305]},{"name":"CERT_E_CRITICAL","features":[305]},{"name":"CERT_E_EXPIRED","features":[305]},{"name":"CERT_E_INVALID_NAME","features":[305]},{"name":"CERT_E_INVALID_POLICY","features":[305]},{"name":"CERT_E_ISSUERCHAINING","features":[305]},{"name":"CERT_E_MALFORMED","features":[305]},{"name":"CERT_E_PATHLENCONST","features":[305]},{"name":"CERT_E_PURPOSE","features":[305]},{"name":"CERT_E_REVOCATION_FAILURE","features":[305]},{"name":"CERT_E_REVOKED","features":[305]},{"name":"CERT_E_ROLE","features":[305]},{"name":"CERT_E_UNTRUSTEDCA","features":[305]},{"name":"CERT_E_UNTRUSTEDROOT","features":[305]},{"name":"CERT_E_UNTRUSTEDTESTROOT","features":[305]},{"name":"CERT_E_VALIDITYPERIODNESTING","features":[305]},{"name":"CERT_E_WRONG_USAGE","features":[305]},{"name":"CHAR","features":[305]},{"name":"CI_CORRUPT_CATALOG","features":[305]},{"name":"CI_CORRUPT_DATABASE","features":[305]},{"name":"CI_CORRUPT_FILTER_BUFFER","features":[305]},{"name":"CI_E_ALREADY_INITIALIZED","features":[305]},{"name":"CI_E_BUFFERTOOSMALL","features":[305]},{"name":"CI_E_CARDINALITY_MISMATCH","features":[305]},{"name":"CI_E_CLIENT_FILTER_ABORT","features":[305]},{"name":"CI_E_CONFIG_DISK_FULL","features":[305]},{"name":"CI_E_DISK_FULL","features":[305]},{"name":"CI_E_DISTRIBUTED_GROUPBY_UNSUPPORTED","features":[305]},{"name":"CI_E_DUPLICATE_NOTIFICATION","features":[305]},{"name":"CI_E_ENUMERATION_STARTED","features":[305]},{"name":"CI_E_FILTERING_DISABLED","features":[305]},{"name":"CI_E_INVALID_FLAGS_COMBINATION","features":[305]},{"name":"CI_E_INVALID_STATE","features":[305]},{"name":"CI_E_LOGON_FAILURE","features":[305]},{"name":"CI_E_NOT_FOUND","features":[305]},{"name":"CI_E_NOT_INITIALIZED","features":[305]},{"name":"CI_E_NOT_RUNNING","features":[305]},{"name":"CI_E_NO_CATALOG","features":[305]},{"name":"CI_E_OUTOFSEQ_INCREMENT_DATA","features":[305]},{"name":"CI_E_PROPERTY_NOT_CACHED","features":[305]},{"name":"CI_E_PROPERTY_TOOLARGE","features":[305]},{"name":"CI_E_SHARING_VIOLATION","features":[305]},{"name":"CI_E_SHUTDOWN","features":[305]},{"name":"CI_E_STRANGE_PAGEORSECTOR_SIZE","features":[305]},{"name":"CI_E_TIMEOUT","features":[305]},{"name":"CI_E_UPDATES_DISABLED","features":[305]},{"name":"CI_E_USE_DEFAULT_PID","features":[305]},{"name":"CI_E_WORKID_NOTVALID","features":[305]},{"name":"CI_INCORRECT_VERSION","features":[305]},{"name":"CI_INVALID_INDEX","features":[305]},{"name":"CI_INVALID_PARTITION","features":[305]},{"name":"CI_INVALID_PRIORITY","features":[305]},{"name":"CI_NO_CATALOG","features":[305]},{"name":"CI_NO_STARTING_KEY","features":[305]},{"name":"CI_OUT_OF_INDEX_IDS","features":[305]},{"name":"CI_PROPSTORE_INCONSISTENCY","features":[305]},{"name":"CI_S_CAT_STOPPED","features":[305]},{"name":"CI_S_END_OF_ENUMERATION","features":[305]},{"name":"CI_S_NO_DOCSTORE","features":[305]},{"name":"CI_S_WORKID_DELETED","features":[305]},{"name":"CLASSFACTORY_E_FIRST","features":[305]},{"name":"CLASSFACTORY_E_LAST","features":[305]},{"name":"CLASSFACTORY_S_FIRST","features":[305]},{"name":"CLASSFACTORY_S_LAST","features":[305]},{"name":"CLASS_E_CLASSNOTAVAILABLE","features":[305]},{"name":"CLASS_E_NOAGGREGATION","features":[305]},{"name":"CLASS_E_NOTLICENSED","features":[305]},{"name":"CLIENTSITE_E_FIRST","features":[305]},{"name":"CLIENTSITE_E_LAST","features":[305]},{"name":"CLIENTSITE_S_FIRST","features":[305]},{"name":"CLIENTSITE_S_LAST","features":[305]},{"name":"CLIPBRD_E_BAD_DATA","features":[305]},{"name":"CLIPBRD_E_CANT_CLOSE","features":[305]},{"name":"CLIPBRD_E_CANT_EMPTY","features":[305]},{"name":"CLIPBRD_E_CANT_OPEN","features":[305]},{"name":"CLIPBRD_E_CANT_SET","features":[305]},{"name":"CLIPBRD_E_FIRST","features":[305]},{"name":"CLIPBRD_E_LAST","features":[305]},{"name":"CLIPBRD_S_FIRST","features":[305]},{"name":"CLIPBRD_S_LAST","features":[305]},{"name":"COLORREF","features":[305]},{"name":"COMADMIN_E_ALREADYINSTALLED","features":[305]},{"name":"COMADMIN_E_AMBIGUOUS_APPLICATION_NAME","features":[305]},{"name":"COMADMIN_E_AMBIGUOUS_PARTITION_NAME","features":[305]},{"name":"COMADMIN_E_APPDIRNOTFOUND","features":[305]},{"name":"COMADMIN_E_APPLICATIONEXISTS","features":[305]},{"name":"COMADMIN_E_APPLID_MATCHES_CLSID","features":[305]},{"name":"COMADMIN_E_APP_FILE_READFAIL","features":[305]},{"name":"COMADMIN_E_APP_FILE_VERSION","features":[305]},{"name":"COMADMIN_E_APP_FILE_WRITEFAIL","features":[305]},{"name":"COMADMIN_E_APP_NOT_RUNNING","features":[305]},{"name":"COMADMIN_E_AUTHENTICATIONLEVEL","features":[305]},{"name":"COMADMIN_E_BADPATH","features":[305]},{"name":"COMADMIN_E_BADREGISTRYLIBID","features":[305]},{"name":"COMADMIN_E_BADREGISTRYPROGID","features":[305]},{"name":"COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET","features":[305]},{"name":"COMADMIN_E_BASE_PARTITION_ONLY","features":[305]},{"name":"COMADMIN_E_CANNOT_ALIAS_EVENTCLASS","features":[305]},{"name":"COMADMIN_E_CANTCOPYFILE","features":[305]},{"name":"COMADMIN_E_CANTMAKEINPROCSERVICE","features":[305]},{"name":"COMADMIN_E_CANTRECYCLELIBRARYAPPS","features":[305]},{"name":"COMADMIN_E_CANTRECYCLESERVICEAPPS","features":[305]},{"name":"COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT","features":[305]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY","features":[305]},{"name":"COMADMIN_E_CAN_NOT_EXPORT_SYS_APP","features":[305]},{"name":"COMADMIN_E_CAN_NOT_START_APP","features":[305]},{"name":"COMADMIN_E_CAT_BITNESSMISMATCH","features":[305]},{"name":"COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME","features":[305]},{"name":"COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED","features":[305]},{"name":"COMADMIN_E_CAT_INVALID_PARTITION_NAME","features":[305]},{"name":"COMADMIN_E_CAT_PARTITION_IN_USE","features":[305]},{"name":"COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED","features":[305]},{"name":"COMADMIN_E_CAT_SERVERFAULT","features":[305]},{"name":"COMADMIN_E_CAT_UNACCEPTABLEBITNESS","features":[305]},{"name":"COMADMIN_E_CAT_WRONGAPPBITNESS","features":[305]},{"name":"COMADMIN_E_CLSIDORIIDMISMATCH","features":[305]},{"name":"COMADMIN_E_COMPFILE_BADTLB","features":[305]},{"name":"COMADMIN_E_COMPFILE_CLASSNOTAVAIL","features":[305]},{"name":"COMADMIN_E_COMPFILE_DOESNOTEXIST","features":[305]},{"name":"COMADMIN_E_COMPFILE_GETCLASSOBJ","features":[305]},{"name":"COMADMIN_E_COMPFILE_LOADDLLFAIL","features":[305]},{"name":"COMADMIN_E_COMPFILE_NOREGISTRAR","features":[305]},{"name":"COMADMIN_E_COMPFILE_NOTINSTALLABLE","features":[305]},{"name":"COMADMIN_E_COMPONENTEXISTS","features":[305]},{"name":"COMADMIN_E_COMP_MOVE_BAD_DEST","features":[305]},{"name":"COMADMIN_E_COMP_MOVE_DEST","features":[305]},{"name":"COMADMIN_E_COMP_MOVE_LOCKED","features":[305]},{"name":"COMADMIN_E_COMP_MOVE_PRIVATE","features":[305]},{"name":"COMADMIN_E_COMP_MOVE_SOURCE","features":[305]},{"name":"COMADMIN_E_COREQCOMPINSTALLED","features":[305]},{"name":"COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET","features":[305]},{"name":"COMADMIN_E_DLLLOADFAILED","features":[305]},{"name":"COMADMIN_E_DLLREGISTERSERVER","features":[305]},{"name":"COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER","features":[305]},{"name":"COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES","features":[305]},{"name":"COMADMIN_E_INVALIDUSERIDS","features":[305]},{"name":"COMADMIN_E_INVALID_PARTITION","features":[305]},{"name":"COMADMIN_E_KEYMISSING","features":[305]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT","features":[305]},{"name":"COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS","features":[305]},{"name":"COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE","features":[305]},{"name":"COMADMIN_E_MIG_SCHEMANOTFOUND","features":[305]},{"name":"COMADMIN_E_MIG_VERSIONNOTSUPPORTED","features":[305]},{"name":"COMADMIN_E_NOREGISTRYCLSID","features":[305]},{"name":"COMADMIN_E_NOSERVERSHARE","features":[305]},{"name":"COMADMIN_E_NOTCHANGEABLE","features":[305]},{"name":"COMADMIN_E_NOTDELETEABLE","features":[305]},{"name":"COMADMIN_E_NOTINREGISTRY","features":[305]},{"name":"COMADMIN_E_NOUSER","features":[305]},{"name":"COMADMIN_E_OBJECTERRORS","features":[305]},{"name":"COMADMIN_E_OBJECTEXISTS","features":[305]},{"name":"COMADMIN_E_OBJECTINVALID","features":[305]},{"name":"COMADMIN_E_OBJECTNOTPOOLABLE","features":[305]},{"name":"COMADMIN_E_OBJECT_DOES_NOT_EXIST","features":[305]},{"name":"COMADMIN_E_OBJECT_PARENT_MISSING","features":[305]},{"name":"COMADMIN_E_PARTITIONS_DISABLED","features":[305]},{"name":"COMADMIN_E_PARTITION_ACCESSDENIED","features":[305]},{"name":"COMADMIN_E_PARTITION_MSI_ONLY","features":[305]},{"name":"COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED","features":[305]},{"name":"COMADMIN_E_PRIVATE_ACCESSDENIED","features":[305]},{"name":"COMADMIN_E_PROCESSALREADYRECYCLED","features":[305]},{"name":"COMADMIN_E_PROGIDINUSEBYCLSID","features":[305]},{"name":"COMADMIN_E_PROPERTYSAVEFAILED","features":[305]},{"name":"COMADMIN_E_PROPERTY_OVERFLOW","features":[305]},{"name":"COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED","features":[305]},{"name":"COMADMIN_E_REGDB_ALREADYRUNNING","features":[305]},{"name":"COMADMIN_E_REGDB_NOTINITIALIZED","features":[305]},{"name":"COMADMIN_E_REGDB_NOTOPEN","features":[305]},{"name":"COMADMIN_E_REGDB_SYSTEMERR","features":[305]},{"name":"COMADMIN_E_REGFILE_CORRUPT","features":[305]},{"name":"COMADMIN_E_REGISTERTLB","features":[305]},{"name":"COMADMIN_E_REGISTRARFAILED","features":[305]},{"name":"COMADMIN_E_REGISTRY_ACCESSDENIED","features":[305]},{"name":"COMADMIN_E_REMOTEINTERFACE","features":[305]},{"name":"COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM","features":[305]},{"name":"COMADMIN_E_ROLEEXISTS","features":[305]},{"name":"COMADMIN_E_ROLE_DOES_NOT_EXIST","features":[305]},{"name":"COMADMIN_E_SAFERINVALID","features":[305]},{"name":"COMADMIN_E_SERVICENOTINSTALLED","features":[305]},{"name":"COMADMIN_E_SESSION","features":[305]},{"name":"COMADMIN_E_START_APP_DISABLED","features":[305]},{"name":"COMADMIN_E_START_APP_NEEDS_COMPONENTS","features":[305]},{"name":"COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE","features":[305]},{"name":"COMADMIN_E_SYSTEMAPP","features":[305]},{"name":"COMADMIN_E_USERPASSWDNOTVALID","features":[305]},{"name":"COMADMIN_E_USER_IN_SET","features":[305]},{"name":"COMQC_E_APPLICATION_NOT_QUEUED","features":[305]},{"name":"COMQC_E_BAD_MESSAGE","features":[305]},{"name":"COMQC_E_NO_IPERSISTSTREAM","features":[305]},{"name":"COMQC_E_NO_QUEUEABLE_INTERFACES","features":[305]},{"name":"COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE","features":[305]},{"name":"COMQC_E_UNAUTHENTICATED","features":[305]},{"name":"COMQC_E_UNTRUSTED_ENQUEUER","features":[305]},{"name":"CONTEXT_E_ABORTED","features":[305]},{"name":"CONTEXT_E_ABORTING","features":[305]},{"name":"CONTEXT_E_FIRST","features":[305]},{"name":"CONTEXT_E_LAST","features":[305]},{"name":"CONTEXT_E_NOCONTEXT","features":[305]},{"name":"CONTEXT_E_NOJIT","features":[305]},{"name":"CONTEXT_E_NOTRANSACTION","features":[305]},{"name":"CONTEXT_E_OLDREF","features":[305]},{"name":"CONTEXT_E_ROLENOTFOUND","features":[305]},{"name":"CONTEXT_E_SYNCH_TIMEOUT","features":[305]},{"name":"CONTEXT_E_TMNOTAVAILABLE","features":[305]},{"name":"CONTEXT_E_WOULD_DEADLOCK","features":[305]},{"name":"CONTEXT_S_FIRST","features":[305]},{"name":"CONTEXT_S_LAST","features":[305]},{"name":"CONTROL_C_EXIT","features":[305]},{"name":"CONVERT10_E_FIRST","features":[305]},{"name":"CONVERT10_E_LAST","features":[305]},{"name":"CONVERT10_E_OLELINK_DISABLED","features":[305]},{"name":"CONVERT10_E_OLESTREAM_BITMAP_TO_DIB","features":[305]},{"name":"CONVERT10_E_OLESTREAM_FMT","features":[305]},{"name":"CONVERT10_E_OLESTREAM_GET","features":[305]},{"name":"CONVERT10_E_OLESTREAM_PUT","features":[305]},{"name":"CONVERT10_E_STG_DIB_TO_BITMAP","features":[305]},{"name":"CONVERT10_E_STG_FMT","features":[305]},{"name":"CONVERT10_E_STG_NO_STD_STREAM","features":[305]},{"name":"CONVERT10_S_FIRST","features":[305]},{"name":"CONVERT10_S_LAST","features":[305]},{"name":"CONVERT10_S_NO_PRESENTATION","features":[305]},{"name":"CO_E_ACCESSCHECKFAILED","features":[305]},{"name":"CO_E_ACESINWRONGORDER","features":[305]},{"name":"CO_E_ACNOTINITIALIZED","features":[305]},{"name":"CO_E_ACTIVATIONFAILED","features":[305]},{"name":"CO_E_ACTIVATIONFAILED_CATALOGERROR","features":[305]},{"name":"CO_E_ACTIVATIONFAILED_EVENTLOGGED","features":[305]},{"name":"CO_E_ACTIVATIONFAILED_TIMEOUT","features":[305]},{"name":"CO_E_ALREADYINITIALIZED","features":[305]},{"name":"CO_E_APPDIDNTREG","features":[305]},{"name":"CO_E_APPNOTFOUND","features":[305]},{"name":"CO_E_APPSINGLEUSE","features":[305]},{"name":"CO_E_ASYNC_WORK_REJECTED","features":[305]},{"name":"CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT","features":[305]},{"name":"CO_E_BAD_PATH","features":[305]},{"name":"CO_E_BAD_SERVER_NAME","features":[305]},{"name":"CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED","features":[305]},{"name":"CO_E_CANCEL_DISABLED","features":[305]},{"name":"CO_E_CANTDETERMINECLASS","features":[305]},{"name":"CO_E_CANT_REMOTE","features":[305]},{"name":"CO_E_CLASSSTRING","features":[305]},{"name":"CO_E_CLASS_CREATE_FAILED","features":[305]},{"name":"CO_E_CLASS_DISABLED","features":[305]},{"name":"CO_E_CLRNOTAVAILABLE","features":[305]},{"name":"CO_E_CLSREG_INCONSISTENT","features":[305]},{"name":"CO_E_CONVERSIONFAILED","features":[305]},{"name":"CO_E_CREATEPROCESS_FAILURE","features":[305]},{"name":"CO_E_DBERROR","features":[305]},{"name":"CO_E_DECODEFAILED","features":[305]},{"name":"CO_E_DLLNOTFOUND","features":[305]},{"name":"CO_E_ELEVATION_DISABLED","features":[305]},{"name":"CO_E_ERRORINAPP","features":[305]},{"name":"CO_E_ERRORINDLL","features":[305]},{"name":"CO_E_EXCEEDSYSACLLIMIT","features":[305]},{"name":"CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED","features":[305]},{"name":"CO_E_FAILEDTOCLOSEHANDLE","features":[305]},{"name":"CO_E_FAILEDTOCREATEFILE","features":[305]},{"name":"CO_E_FAILEDTOGENUUID","features":[305]},{"name":"CO_E_FAILEDTOGETSECCTX","features":[305]},{"name":"CO_E_FAILEDTOGETTOKENINFO","features":[305]},{"name":"CO_E_FAILEDTOGETWINDIR","features":[305]},{"name":"CO_E_FAILEDTOIMPERSONATE","features":[305]},{"name":"CO_E_FAILEDTOOPENPROCESSTOKEN","features":[305]},{"name":"CO_E_FAILEDTOOPENTHREADTOKEN","features":[305]},{"name":"CO_E_FAILEDTOQUERYCLIENTBLANKET","features":[305]},{"name":"CO_E_FAILEDTOSETDACL","features":[305]},{"name":"CO_E_FIRST","features":[305]},{"name":"CO_E_IIDREG_INCONSISTENT","features":[305]},{"name":"CO_E_IIDSTRING","features":[305]},{"name":"CO_E_INCOMPATIBLESTREAMVERSION","features":[305]},{"name":"CO_E_INITIALIZATIONFAILED","features":[305]},{"name":"CO_E_INIT_CLASS_CACHE","features":[305]},{"name":"CO_E_INIT_MEMORY_ALLOCATOR","features":[305]},{"name":"CO_E_INIT_ONLY_SINGLE_THREADED","features":[305]},{"name":"CO_E_INIT_RPC_CHANNEL","features":[305]},{"name":"CO_E_INIT_SCM_EXEC_FAILURE","features":[305]},{"name":"CO_E_INIT_SCM_FILE_MAPPING_EXISTS","features":[305]},{"name":"CO_E_INIT_SCM_MAP_VIEW_OF_FILE","features":[305]},{"name":"CO_E_INIT_SCM_MUTEX_EXISTS","features":[305]},{"name":"CO_E_INIT_SHARED_ALLOCATOR","features":[305]},{"name":"CO_E_INIT_TLS","features":[305]},{"name":"CO_E_INIT_TLS_CHANNEL_CONTROL","features":[305]},{"name":"CO_E_INIT_TLS_SET_CHANNEL_CONTROL","features":[305]},{"name":"CO_E_INIT_UNACCEPTED_USER_ALLOCATOR","features":[305]},{"name":"CO_E_INVALIDSID","features":[305]},{"name":"CO_E_ISOLEVELMISMATCH","features":[305]},{"name":"CO_E_LAST","features":[305]},{"name":"CO_E_LAUNCH_PERMSSION_DENIED","features":[305]},{"name":"CO_E_LOOKUPACCNAMEFAILED","features":[305]},{"name":"CO_E_LOOKUPACCSIDFAILED","features":[305]},{"name":"CO_E_MALFORMED_SPN","features":[305]},{"name":"CO_E_MISSING_DISPLAYNAME","features":[305]},{"name":"CO_E_MSI_ERROR","features":[305]},{"name":"CO_E_NETACCESSAPIFAILED","features":[305]},{"name":"CO_E_NOCOOKIES","features":[305]},{"name":"CO_E_NOIISINTRINSICS","features":[305]},{"name":"CO_E_NOMATCHINGNAMEFOUND","features":[305]},{"name":"CO_E_NOMATCHINGSIDFOUND","features":[305]},{"name":"CO_E_NOSYNCHRONIZATION","features":[305]},{"name":"CO_E_NOTCONSTRUCTED","features":[305]},{"name":"CO_E_NOTINITIALIZED","features":[305]},{"name":"CO_E_NOTPOOLED","features":[305]},{"name":"CO_E_NOT_SUPPORTED","features":[305]},{"name":"CO_E_NO_SECCTX_IN_ACTIVATE","features":[305]},{"name":"CO_E_OBJISREG","features":[305]},{"name":"CO_E_OBJNOTCONNECTED","features":[305]},{"name":"CO_E_OBJNOTREG","features":[305]},{"name":"CO_E_OBJSRV_RPC_FAILURE","features":[305]},{"name":"CO_E_OLE1DDE_DISABLED","features":[305]},{"name":"CO_E_PATHTOOLONG","features":[305]},{"name":"CO_E_PREMATURE_STUB_RUNDOWN","features":[305]},{"name":"CO_E_RELEASED","features":[305]},{"name":"CO_E_RELOAD_DLL","features":[305]},{"name":"CO_E_REMOTE_COMMUNICATION_FAILURE","features":[305]},{"name":"CO_E_RUNAS_CREATEPROCESS_FAILURE","features":[305]},{"name":"CO_E_RUNAS_LOGON_FAILURE","features":[305]},{"name":"CO_E_RUNAS_SYNTAX","features":[305]},{"name":"CO_E_RUNAS_VALUE_MUST_BE_AAA","features":[305]},{"name":"CO_E_SCM_ERROR","features":[305]},{"name":"CO_E_SCM_RPC_FAILURE","features":[305]},{"name":"CO_E_SERVER_EXEC_FAILURE","features":[305]},{"name":"CO_E_SERVER_INIT_TIMEOUT","features":[305]},{"name":"CO_E_SERVER_NOT_PAUSED","features":[305]},{"name":"CO_E_SERVER_PAUSED","features":[305]},{"name":"CO_E_SERVER_START_TIMEOUT","features":[305]},{"name":"CO_E_SERVER_STOPPING","features":[305]},{"name":"CO_E_SETSERLHNDLFAILED","features":[305]},{"name":"CO_E_START_SERVICE_FAILURE","features":[305]},{"name":"CO_E_SXS_CONFIG","features":[305]},{"name":"CO_E_THREADINGMODEL_CHANGED","features":[305]},{"name":"CO_E_THREADPOOL_CONFIG","features":[305]},{"name":"CO_E_TRACKER_CONFIG","features":[305]},{"name":"CO_E_TRUSTEEDOESNTMATCHCLIENT","features":[305]},{"name":"CO_E_UNREVOKED_REGISTRATION_ON_APARTMENT_SHUTDOWN","features":[305]},{"name":"CO_E_WRONGOSFORAPP","features":[305]},{"name":"CO_E_WRONGTRUSTEENAMESYNTAX","features":[305]},{"name":"CO_E_WRONG_SERVER_IDENTITY","features":[305]},{"name":"CO_S_FIRST","features":[305]},{"name":"CO_S_LAST","features":[305]},{"name":"CO_S_MACHINENAMENOTFOUND","features":[305]},{"name":"CO_S_NOTALLINTERFACES","features":[305]},{"name":"CRYPT_E_ALREADY_DECRYPTED","features":[305]},{"name":"CRYPT_E_ASN1_BADARGS","features":[305]},{"name":"CRYPT_E_ASN1_BADPDU","features":[305]},{"name":"CRYPT_E_ASN1_BADREAL","features":[305]},{"name":"CRYPT_E_ASN1_BADTAG","features":[305]},{"name":"CRYPT_E_ASN1_CHOICE","features":[305]},{"name":"CRYPT_E_ASN1_CONSTRAINT","features":[305]},{"name":"CRYPT_E_ASN1_CORRUPT","features":[305]},{"name":"CRYPT_E_ASN1_EOD","features":[305]},{"name":"CRYPT_E_ASN1_ERROR","features":[305]},{"name":"CRYPT_E_ASN1_EXTENDED","features":[305]},{"name":"CRYPT_E_ASN1_INTERNAL","features":[305]},{"name":"CRYPT_E_ASN1_LARGE","features":[305]},{"name":"CRYPT_E_ASN1_MEMORY","features":[305]},{"name":"CRYPT_E_ASN1_NOEOD","features":[305]},{"name":"CRYPT_E_ASN1_NYI","features":[305]},{"name":"CRYPT_E_ASN1_OVERFLOW","features":[305]},{"name":"CRYPT_E_ASN1_PDU_TYPE","features":[305]},{"name":"CRYPT_E_ASN1_RULE","features":[305]},{"name":"CRYPT_E_ASN1_UTF8","features":[305]},{"name":"CRYPT_E_ATTRIBUTES_MISSING","features":[305]},{"name":"CRYPT_E_AUTH_ATTR_MISSING","features":[305]},{"name":"CRYPT_E_BAD_ENCODE","features":[305]},{"name":"CRYPT_E_BAD_LEN","features":[305]},{"name":"CRYPT_E_BAD_MSG","features":[305]},{"name":"CRYPT_E_CONTROL_TYPE","features":[305]},{"name":"CRYPT_E_DELETED_PREV","features":[305]},{"name":"CRYPT_E_EXISTS","features":[305]},{"name":"CRYPT_E_FILERESIZED","features":[305]},{"name":"CRYPT_E_FILE_ERROR","features":[305]},{"name":"CRYPT_E_HASH_VALUE","features":[305]},{"name":"CRYPT_E_INVALID_IA5_STRING","features":[305]},{"name":"CRYPT_E_INVALID_INDEX","features":[305]},{"name":"CRYPT_E_INVALID_MSG_TYPE","features":[305]},{"name":"CRYPT_E_INVALID_NUMERIC_STRING","features":[305]},{"name":"CRYPT_E_INVALID_PRINTABLE_STRING","features":[305]},{"name":"CRYPT_E_INVALID_X500_STRING","features":[305]},{"name":"CRYPT_E_ISSUER_SERIALNUMBER","features":[305]},{"name":"CRYPT_E_MISSING_PUBKEY_PARA","features":[305]},{"name":"CRYPT_E_MSG_ERROR","features":[305]},{"name":"CRYPT_E_NOT_CHAR_STRING","features":[305]},{"name":"CRYPT_E_NOT_DECRYPTED","features":[305]},{"name":"CRYPT_E_NOT_FOUND","features":[305]},{"name":"CRYPT_E_NOT_IN_CTL","features":[305]},{"name":"CRYPT_E_NOT_IN_REVOCATION_DATABASE","features":[305]},{"name":"CRYPT_E_NO_DECRYPT_CERT","features":[305]},{"name":"CRYPT_E_NO_KEY_PROPERTY","features":[305]},{"name":"CRYPT_E_NO_MATCH","features":[305]},{"name":"CRYPT_E_NO_PROVIDER","features":[305]},{"name":"CRYPT_E_NO_REVOCATION_CHECK","features":[305]},{"name":"CRYPT_E_NO_REVOCATION_DLL","features":[305]},{"name":"CRYPT_E_NO_SIGNER","features":[305]},{"name":"CRYPT_E_NO_TRUSTED_SIGNER","features":[305]},{"name":"CRYPT_E_NO_VERIFY_USAGE_CHECK","features":[305]},{"name":"CRYPT_E_NO_VERIFY_USAGE_DLL","features":[305]},{"name":"CRYPT_E_OBJECT_LOCATOR_OBJECT_NOT_FOUND","features":[305]},{"name":"CRYPT_E_OID_FORMAT","features":[305]},{"name":"CRYPT_E_OSS_ERROR","features":[305]},{"name":"CRYPT_E_PENDING_CLOSE","features":[305]},{"name":"CRYPT_E_RECIPIENT_NOT_FOUND","features":[305]},{"name":"CRYPT_E_REVOCATION_OFFLINE","features":[305]},{"name":"CRYPT_E_REVOKED","features":[305]},{"name":"CRYPT_E_SECURITY_SETTINGS","features":[305]},{"name":"CRYPT_E_SELF_SIGNED","features":[305]},{"name":"CRYPT_E_SIGNER_NOT_FOUND","features":[305]},{"name":"CRYPT_E_STREAM_INSUFFICIENT_DATA","features":[305]},{"name":"CRYPT_E_STREAM_MSG_NOT_READY","features":[305]},{"name":"CRYPT_E_UNEXPECTED_ENCODING","features":[305]},{"name":"CRYPT_E_UNEXPECTED_MSG_TYPE","features":[305]},{"name":"CRYPT_E_UNKNOWN_ALGO","features":[305]},{"name":"CRYPT_E_VERIFY_USAGE_OFFLINE","features":[305]},{"name":"CRYPT_I_NEW_PROTECTION_REQUIRED","features":[305]},{"name":"CS_E_ADMIN_LIMIT_EXCEEDED","features":[305]},{"name":"CS_E_CLASS_NOTFOUND","features":[305]},{"name":"CS_E_FIRST","features":[305]},{"name":"CS_E_INTERNAL_ERROR","features":[305]},{"name":"CS_E_INVALID_PATH","features":[305]},{"name":"CS_E_INVALID_VERSION","features":[305]},{"name":"CS_E_LAST","features":[305]},{"name":"CS_E_NETWORK_ERROR","features":[305]},{"name":"CS_E_NOT_DELETABLE","features":[305]},{"name":"CS_E_NO_CLASSSTORE","features":[305]},{"name":"CS_E_OBJECT_ALREADY_EXISTS","features":[305]},{"name":"CS_E_OBJECT_NOTFOUND","features":[305]},{"name":"CS_E_PACKAGE_NOTFOUND","features":[305]},{"name":"CS_E_SCHEMA_MISMATCH","features":[305]},{"name":"CloseHandle","features":[305]},{"name":"CompareObjectHandles","features":[305]},{"name":"D2DERR_BAD_NUMBER","features":[305]},{"name":"D2DERR_BITMAP_BOUND_AS_TARGET","features":[305]},{"name":"D2DERR_BITMAP_CANNOT_DRAW","features":[305]},{"name":"D2DERR_CYCLIC_GRAPH","features":[305]},{"name":"D2DERR_DISPLAY_FORMAT_NOT_SUPPORTED","features":[305]},{"name":"D2DERR_DISPLAY_STATE_INVALID","features":[305]},{"name":"D2DERR_EFFECT_IS_NOT_REGISTERED","features":[305]},{"name":"D2DERR_EXCEEDS_MAX_BITMAP_SIZE","features":[305]},{"name":"D2DERR_INCOMPATIBLE_BRUSH_TYPES","features":[305]},{"name":"D2DERR_INSUFFICIENT_DEVICE_CAPABILITIES","features":[305]},{"name":"D2DERR_INTERMEDIATE_TOO_LARGE","features":[305]},{"name":"D2DERR_INTERNAL_ERROR","features":[305]},{"name":"D2DERR_INVALID_CALL","features":[305]},{"name":"D2DERR_INVALID_GLYPH_IMAGE","features":[305]},{"name":"D2DERR_INVALID_GRAPH_CONFIGURATION","features":[305]},{"name":"D2DERR_INVALID_INTERNAL_GRAPH_CONFIGURATION","features":[305]},{"name":"D2DERR_INVALID_PROPERTY","features":[305]},{"name":"D2DERR_INVALID_TARGET","features":[305]},{"name":"D2DERR_LAYER_ALREADY_IN_USE","features":[305]},{"name":"D2DERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[305]},{"name":"D2DERR_NOT_INITIALIZED","features":[305]},{"name":"D2DERR_NO_HARDWARE_DEVICE","features":[305]},{"name":"D2DERR_NO_SUBPROPERTIES","features":[305]},{"name":"D2DERR_ORIGINAL_TARGET_NOT_BOUND","features":[305]},{"name":"D2DERR_OUTSTANDING_BITMAP_REFERENCES","features":[305]},{"name":"D2DERR_POP_CALL_DID_NOT_MATCH_PUSH","features":[305]},{"name":"D2DERR_PRINT_FORMAT_NOT_SUPPORTED","features":[305]},{"name":"D2DERR_PRINT_JOB_CLOSED","features":[305]},{"name":"D2DERR_PUSH_POP_UNBALANCED","features":[305]},{"name":"D2DERR_RECREATE_TARGET","features":[305]},{"name":"D2DERR_RENDER_TARGET_HAS_LAYER_OR_CLIPRECT","features":[305]},{"name":"D2DERR_SCANNER_FAILED","features":[305]},{"name":"D2DERR_SCREEN_ACCESS_DENIED","features":[305]},{"name":"D2DERR_SHADER_COMPILE_FAILED","features":[305]},{"name":"D2DERR_TARGET_NOT_GDI_COMPATIBLE","features":[305]},{"name":"D2DERR_TEXT_EFFECT_IS_WRONG_TYPE","features":[305]},{"name":"D2DERR_TEXT_RENDERER_NOT_RELEASED","features":[305]},{"name":"D2DERR_TOO_MANY_SHADER_ELEMENTS","features":[305]},{"name":"D2DERR_TOO_MANY_TRANSFORM_INPUTS","features":[305]},{"name":"D2DERR_UNSUPPORTED_OPERATION","features":[305]},{"name":"D2DERR_UNSUPPORTED_VERSION","features":[305]},{"name":"D2DERR_WIN32_ERROR","features":[305]},{"name":"D2DERR_WRONG_FACTORY","features":[305]},{"name":"D2DERR_WRONG_RESOURCE_DOMAIN","features":[305]},{"name":"D2DERR_WRONG_STATE","features":[305]},{"name":"D2DERR_ZERO_VECTOR","features":[305]},{"name":"D3D10_ERROR_FILE_NOT_FOUND","features":[305]},{"name":"D3D10_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[305]},{"name":"D3D11_ERROR_DEFERRED_CONTEXT_MAP_WITHOUT_INITIAL_DISCARD","features":[305]},{"name":"D3D11_ERROR_FILE_NOT_FOUND","features":[305]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_STATE_OBJECTS","features":[305]},{"name":"D3D11_ERROR_TOO_MANY_UNIQUE_VIEW_OBJECTS","features":[305]},{"name":"D3D12_ERROR_ADAPTER_NOT_FOUND","features":[305]},{"name":"D3D12_ERROR_DRIVER_VERSION_MISMATCH","features":[305]},{"name":"D3D12_ERROR_INVALID_REDIST","features":[305]},{"name":"DATA_E_FIRST","features":[305]},{"name":"DATA_E_LAST","features":[305]},{"name":"DATA_S_FIRST","features":[305]},{"name":"DATA_S_LAST","features":[305]},{"name":"DATA_S_SAMEFORMATETC","features":[305]},{"name":"DBG_APP_NOT_IDLE","features":[305]},{"name":"DBG_COMMAND_EXCEPTION","features":[305]},{"name":"DBG_CONTINUE","features":[305]},{"name":"DBG_CONTROL_BREAK","features":[305]},{"name":"DBG_CONTROL_C","features":[305]},{"name":"DBG_EXCEPTION_HANDLED","features":[305]},{"name":"DBG_EXCEPTION_NOT_HANDLED","features":[305]},{"name":"DBG_NO_STATE_CHANGE","features":[305]},{"name":"DBG_PRINTEXCEPTION_C","features":[305]},{"name":"DBG_PRINTEXCEPTION_WIDE_C","features":[305]},{"name":"DBG_REPLY_LATER","features":[305]},{"name":"DBG_RIPEXCEPTION","features":[305]},{"name":"DBG_TERMINATE_PROCESS","features":[305]},{"name":"DBG_TERMINATE_THREAD","features":[305]},{"name":"DBG_UNABLE_TO_PROVIDE_HANDLE","features":[305]},{"name":"DCOMPOSITION_ERROR_SURFACE_BEING_RENDERED","features":[305]},{"name":"DCOMPOSITION_ERROR_SURFACE_NOT_BEING_RENDERED","features":[305]},{"name":"DCOMPOSITION_ERROR_WINDOW_ALREADY_COMPOSED","features":[305]},{"name":"DECIMAL","features":[305]},{"name":"DIGSIG_E_CRYPTO","features":[305]},{"name":"DIGSIG_E_DECODE","features":[305]},{"name":"DIGSIG_E_ENCODE","features":[305]},{"name":"DIGSIG_E_EXTENSIBILITY","features":[305]},{"name":"DISP_E_ARRAYISLOCKED","features":[305]},{"name":"DISP_E_BADCALLEE","features":[305]},{"name":"DISP_E_BADINDEX","features":[305]},{"name":"DISP_E_BADPARAMCOUNT","features":[305]},{"name":"DISP_E_BADVARTYPE","features":[305]},{"name":"DISP_E_BUFFERTOOSMALL","features":[305]},{"name":"DISP_E_DIVBYZERO","features":[305]},{"name":"DISP_E_EXCEPTION","features":[305]},{"name":"DISP_E_MEMBERNOTFOUND","features":[305]},{"name":"DISP_E_NONAMEDARGS","features":[305]},{"name":"DISP_E_NOTACOLLECTION","features":[305]},{"name":"DISP_E_OVERFLOW","features":[305]},{"name":"DISP_E_PARAMNOTFOUND","features":[305]},{"name":"DISP_E_PARAMNOTOPTIONAL","features":[305]},{"name":"DISP_E_TYPEMISMATCH","features":[305]},{"name":"DISP_E_UNKNOWNINTERFACE","features":[305]},{"name":"DISP_E_UNKNOWNLCID","features":[305]},{"name":"DISP_E_UNKNOWNNAME","features":[305]},{"name":"DNS_ERROR_ADDRESS_REQUIRED","features":[305]},{"name":"DNS_ERROR_ALIAS_LOOP","features":[305]},{"name":"DNS_ERROR_AUTOZONE_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_AXFR","features":[305]},{"name":"DNS_ERROR_BACKGROUND_LOADING","features":[305]},{"name":"DNS_ERROR_BAD_KEYMASTER","features":[305]},{"name":"DNS_ERROR_BAD_PACKET","features":[305]},{"name":"DNS_ERROR_CANNOT_FIND_ROOT_HINTS","features":[305]},{"name":"DNS_ERROR_CLIENT_SUBNET_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_CLIENT_SUBNET_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_CLIENT_SUBNET_IS_ACCESSED","features":[305]},{"name":"DNS_ERROR_CNAME_COLLISION","features":[305]},{"name":"DNS_ERROR_CNAME_LOOP","features":[305]},{"name":"DNS_ERROR_DATABASE_BASE","features":[305]},{"name":"DNS_ERROR_DATAFILE_BASE","features":[305]},{"name":"DNS_ERROR_DATAFILE_OPEN_FAILURE","features":[305]},{"name":"DNS_ERROR_DATAFILE_PARSING","features":[305]},{"name":"DNS_ERROR_DEFAULT_SCOPE","features":[305]},{"name":"DNS_ERROR_DEFAULT_VIRTUALIZATION_INSTANCE","features":[305]},{"name":"DNS_ERROR_DEFAULT_ZONESCOPE","features":[305]},{"name":"DNS_ERROR_DELEGATION_REQUIRED","features":[305]},{"name":"DNS_ERROR_DNAME_COLLISION","features":[305]},{"name":"DNS_ERROR_DNSSEC_BASE","features":[305]},{"name":"DNS_ERROR_DNSSEC_IS_DISABLED","features":[305]},{"name":"DNS_ERROR_DP_ALREADY_ENLISTED","features":[305]},{"name":"DNS_ERROR_DP_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_DP_BASE","features":[305]},{"name":"DNS_ERROR_DP_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_DP_FSMO_ERROR","features":[305]},{"name":"DNS_ERROR_DP_NOT_AVAILABLE","features":[305]},{"name":"DNS_ERROR_DP_NOT_ENLISTED","features":[305]},{"name":"DNS_ERROR_DS_UNAVAILABLE","features":[305]},{"name":"DNS_ERROR_DS_ZONE_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_LARGE","features":[305]},{"name":"DNS_ERROR_DWORD_VALUE_TOO_SMALL","features":[305]},{"name":"DNS_ERROR_FILE_WRITEBACK_FAILED","features":[305]},{"name":"DNS_ERROR_FORWARDER_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_GENERAL_API_BASE","features":[305]},{"name":"DNS_ERROR_INCONSISTENT_ROOT_HINTS","features":[305]},{"name":"DNS_ERROR_INVAILD_VIRTUALIZATION_INSTANCE_NAME","features":[305]},{"name":"DNS_ERROR_INVALID_CLIENT_SUBNET_NAME","features":[305]},{"name":"DNS_ERROR_INVALID_DATA","features":[305]},{"name":"DNS_ERROR_INVALID_DATAFILE_NAME","features":[305]},{"name":"DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET","features":[305]},{"name":"DNS_ERROR_INVALID_IP_ADDRESS","features":[305]},{"name":"DNS_ERROR_INVALID_KEY_SIZE","features":[305]},{"name":"DNS_ERROR_INVALID_NAME","features":[305]},{"name":"DNS_ERROR_INVALID_NAME_CHAR","features":[305]},{"name":"DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT","features":[305]},{"name":"DNS_ERROR_INVALID_POLICY_TABLE","features":[305]},{"name":"DNS_ERROR_INVALID_PROPERTY","features":[305]},{"name":"DNS_ERROR_INVALID_ROLLOVER_PERIOD","features":[305]},{"name":"DNS_ERROR_INVALID_SCOPE_NAME","features":[305]},{"name":"DNS_ERROR_INVALID_SCOPE_OPERATION","features":[305]},{"name":"DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD","features":[305]},{"name":"DNS_ERROR_INVALID_TYPE","features":[305]},{"name":"DNS_ERROR_INVALID_XML","features":[305]},{"name":"DNS_ERROR_INVALID_ZONESCOPE_NAME","features":[305]},{"name":"DNS_ERROR_INVALID_ZONE_OPERATION","features":[305]},{"name":"DNS_ERROR_INVALID_ZONE_TYPE","features":[305]},{"name":"DNS_ERROR_KEYMASTER_REQUIRED","features":[305]},{"name":"DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION","features":[305]},{"name":"DNS_ERROR_KSP_NOT_ACCESSIBLE","features":[305]},{"name":"DNS_ERROR_LOAD_ZONESCOPE_FAILED","features":[305]},{"name":"DNS_ERROR_MASK","features":[305]},{"name":"DNS_ERROR_NAME_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_NAME_NOT_IN_ZONE","features":[305]},{"name":"DNS_ERROR_NBSTAT_INIT_FAILED","features":[305]},{"name":"DNS_ERROR_NEED_SECONDARY_ADDRESSES","features":[305]},{"name":"DNS_ERROR_NEED_WINS_SERVERS","features":[305]},{"name":"DNS_ERROR_NODE_CREATION_FAILED","features":[305]},{"name":"DNS_ERROR_NODE_IS_CNAME","features":[305]},{"name":"DNS_ERROR_NODE_IS_DNAME","features":[305]},{"name":"DNS_ERROR_NON_RFC_NAME","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_RODC","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_ON_ZSK","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_UNDER_DNAME","features":[305]},{"name":"DNS_ERROR_NOT_ALLOWED_WITH_ZONESCOPES","features":[305]},{"name":"DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS","features":[305]},{"name":"DNS_ERROR_NOT_UNIQUE","features":[305]},{"name":"DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE","features":[305]},{"name":"DNS_ERROR_NO_CREATE_CACHE_DATA","features":[305]},{"name":"DNS_ERROR_NO_DNS_SERVERS","features":[305]},{"name":"DNS_ERROR_NO_MEMORY","features":[305]},{"name":"DNS_ERROR_NO_PACKET","features":[305]},{"name":"DNS_ERROR_NO_TCPIP","features":[305]},{"name":"DNS_ERROR_NO_VALID_TRUST_ANCHORS","features":[305]},{"name":"DNS_ERROR_NO_ZONE_INFO","features":[305]},{"name":"DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1","features":[305]},{"name":"DNS_ERROR_NSEC3_NAME_COLLISION","features":[305]},{"name":"DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1","features":[305]},{"name":"DNS_ERROR_NUMERIC_NAME","features":[305]},{"name":"DNS_ERROR_OPERATION_BASE","features":[305]},{"name":"DNS_ERROR_PACKET_FMT_BASE","features":[305]},{"name":"DNS_ERROR_POLICY_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_POLICY_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_CLIENT_SUBNET","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_FQDN","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_INTERFACE","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_NETWORK_PROTOCOL","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_QUERY_TYPE","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TIME_OF_DAY","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_CRITERIA_TRANSPORT_PROTOCOL","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_NAME","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_SETTINGS","features":[305]},{"name":"DNS_ERROR_POLICY_INVALID_WEIGHT","features":[305]},{"name":"DNS_ERROR_POLICY_LOCKED","features":[305]},{"name":"DNS_ERROR_POLICY_MISSING_CRITERIA","features":[305]},{"name":"DNS_ERROR_POLICY_PROCESSING_ORDER_INVALID","features":[305]},{"name":"DNS_ERROR_POLICY_SCOPE_MISSING","features":[305]},{"name":"DNS_ERROR_POLICY_SCOPE_NOT_ALLOWED","features":[305]},{"name":"DNS_ERROR_PRIMARY_REQUIRES_DATAFILE","features":[305]},{"name":"DNS_ERROR_RCODE","features":[305]},{"name":"DNS_ERROR_RCODE_BADKEY","features":[305]},{"name":"DNS_ERROR_RCODE_BADSIG","features":[305]},{"name":"DNS_ERROR_RCODE_BADTIME","features":[305]},{"name":"DNS_ERROR_RCODE_FORMAT_ERROR","features":[305]},{"name":"DNS_ERROR_RCODE_LAST","features":[305]},{"name":"DNS_ERROR_RCODE_NAME_ERROR","features":[305]},{"name":"DNS_ERROR_RCODE_NOTAUTH","features":[305]},{"name":"DNS_ERROR_RCODE_NOTZONE","features":[305]},{"name":"DNS_ERROR_RCODE_NOT_IMPLEMENTED","features":[305]},{"name":"DNS_ERROR_RCODE_NO_ERROR","features":[305]},{"name":"DNS_ERROR_RCODE_NXRRSET","features":[305]},{"name":"DNS_ERROR_RCODE_REFUSED","features":[305]},{"name":"DNS_ERROR_RCODE_SERVER_FAILURE","features":[305]},{"name":"DNS_ERROR_RCODE_YXDOMAIN","features":[305]},{"name":"DNS_ERROR_RCODE_YXRRSET","features":[305]},{"name":"DNS_ERROR_RECORD_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_RECORD_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_RECORD_FORMAT","features":[305]},{"name":"DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT","features":[305]},{"name":"DNS_ERROR_RECORD_TIMED_OUT","features":[305]},{"name":"DNS_ERROR_RESPONSE_CODES_BASE","features":[305]},{"name":"DNS_ERROR_ROLLOVER_ALREADY_QUEUED","features":[305]},{"name":"DNS_ERROR_ROLLOVER_IN_PROGRESS","features":[305]},{"name":"DNS_ERROR_ROLLOVER_NOT_POKEABLE","features":[305]},{"name":"DNS_ERROR_RRL_INVALID_IPV4_PREFIX","features":[305]},{"name":"DNS_ERROR_RRL_INVALID_IPV6_PREFIX","features":[305]},{"name":"DNS_ERROR_RRL_INVALID_LEAK_RATE","features":[305]},{"name":"DNS_ERROR_RRL_INVALID_TC_RATE","features":[305]},{"name":"DNS_ERROR_RRL_INVALID_WINDOW_SIZE","features":[305]},{"name":"DNS_ERROR_RRL_LEAK_RATE_LESSTHAN_TC_RATE","features":[305]},{"name":"DNS_ERROR_RRL_NOT_ENABLED","features":[305]},{"name":"DNS_ERROR_SCOPE_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_SCOPE_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_SCOPE_LOCKED","features":[305]},{"name":"DNS_ERROR_SECONDARY_DATA","features":[305]},{"name":"DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP","features":[305]},{"name":"DNS_ERROR_SECURE_BASE","features":[305]},{"name":"DNS_ERROR_SERVERSCOPE_IS_REFERENCED","features":[305]},{"name":"DNS_ERROR_SETUP_BASE","features":[305]},{"name":"DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE","features":[305]},{"name":"DNS_ERROR_SOA_DELETE_INVALID","features":[305]},{"name":"DNS_ERROR_STANDBY_KEY_NOT_PRESENT","features":[305]},{"name":"DNS_ERROR_SUBNET_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_SUBNET_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_TOO_MANY_SKDS","features":[305]},{"name":"DNS_ERROR_TRY_AGAIN_LATER","features":[305]},{"name":"DNS_ERROR_UNEXPECTED_CNG_ERROR","features":[305]},{"name":"DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR","features":[305]},{"name":"DNS_ERROR_UNKNOWN_RECORD_TYPE","features":[305]},{"name":"DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION","features":[305]},{"name":"DNS_ERROR_UNSECURE_PACKET","features":[305]},{"name":"DNS_ERROR_UNSUPPORTED_ALGORITHM","features":[305]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_VIRTUALIZATION_INSTANCE_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_VIRTUALIZATION_TREE_LOCKED","features":[305]},{"name":"DNS_ERROR_WINS_INIT_FAILED","features":[305]},{"name":"DNS_ERROR_ZONESCOPE_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_ZONESCOPE_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_ZONESCOPE_FILE_WRITEBACK_FAILED","features":[305]},{"name":"DNS_ERROR_ZONESCOPE_IS_REFERENCED","features":[305]},{"name":"DNS_ERROR_ZONE_ALREADY_EXISTS","features":[305]},{"name":"DNS_ERROR_ZONE_BASE","features":[305]},{"name":"DNS_ERROR_ZONE_CONFIGURATION_ERROR","features":[305]},{"name":"DNS_ERROR_ZONE_CREATION_FAILED","features":[305]},{"name":"DNS_ERROR_ZONE_DOES_NOT_EXIST","features":[305]},{"name":"DNS_ERROR_ZONE_HAS_NO_NS_RECORDS","features":[305]},{"name":"DNS_ERROR_ZONE_HAS_NO_SOA_RECORD","features":[305]},{"name":"DNS_ERROR_ZONE_IS_SHUTDOWN","features":[305]},{"name":"DNS_ERROR_ZONE_LOCKED","features":[305]},{"name":"DNS_ERROR_ZONE_LOCKED_FOR_SIGNING","features":[305]},{"name":"DNS_ERROR_ZONE_NOT_SECONDARY","features":[305]},{"name":"DNS_ERROR_ZONE_REQUIRES_MASTER_IP","features":[305]},{"name":"DNS_INFO_ADDED_LOCAL_WINS","features":[305]},{"name":"DNS_INFO_AXFR_COMPLETE","features":[305]},{"name":"DNS_INFO_NO_RECORDS","features":[305]},{"name":"DNS_REQUEST_PENDING","features":[305]},{"name":"DNS_STATUS_CONTINUE_NEEDED","features":[305]},{"name":"DNS_STATUS_DOTTED_NAME","features":[305]},{"name":"DNS_STATUS_FQDN","features":[305]},{"name":"DNS_STATUS_SINGLE_PART_NAME","features":[305]},{"name":"DNS_WARNING_DOMAIN_UNDELETED","features":[305]},{"name":"DNS_WARNING_PTR_CREATE_FAILED","features":[305]},{"name":"DRAGDROP_E_ALREADYREGISTERED","features":[305]},{"name":"DRAGDROP_E_CONCURRENT_DRAG_ATTEMPTED","features":[305]},{"name":"DRAGDROP_E_FIRST","features":[305]},{"name":"DRAGDROP_E_INVALIDHWND","features":[305]},{"name":"DRAGDROP_E_LAST","features":[305]},{"name":"DRAGDROP_E_NOTREGISTERED","features":[305]},{"name":"DRAGDROP_S_CANCEL","features":[305]},{"name":"DRAGDROP_S_DROP","features":[305]},{"name":"DRAGDROP_S_FIRST","features":[305]},{"name":"DRAGDROP_S_LAST","features":[305]},{"name":"DRAGDROP_S_USEDEFAULTCURSORS","features":[305]},{"name":"DUPLICATE_CLOSE_SOURCE","features":[305]},{"name":"DUPLICATE_HANDLE_OPTIONS","features":[305]},{"name":"DUPLICATE_SAME_ACCESS","features":[305]},{"name":"DV_E_CLIPFORMAT","features":[305]},{"name":"DV_E_DVASPECT","features":[305]},{"name":"DV_E_DVTARGETDEVICE","features":[305]},{"name":"DV_E_DVTARGETDEVICE_SIZE","features":[305]},{"name":"DV_E_FORMATETC","features":[305]},{"name":"DV_E_LINDEX","features":[305]},{"name":"DV_E_NOIVIEWOBJECT","features":[305]},{"name":"DV_E_STATDATA","features":[305]},{"name":"DV_E_STGMEDIUM","features":[305]},{"name":"DV_E_TYMED","features":[305]},{"name":"DWMERR_CATASTROPHIC_FAILURE","features":[305]},{"name":"DWMERR_STATE_TRANSITION_FAILED","features":[305]},{"name":"DWMERR_THEME_FAILED","features":[305]},{"name":"DWM_E_ADAPTER_NOT_FOUND","features":[305]},{"name":"DWM_E_COMPOSITIONDISABLED","features":[305]},{"name":"DWM_E_NOT_QUEUING_PRESENTS","features":[305]},{"name":"DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE","features":[305]},{"name":"DWM_E_REMOTING_NOT_SUPPORTED","features":[305]},{"name":"DWM_E_TEXTURE_TOO_LARGE","features":[305]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE","features":[305]},{"name":"DWM_S_GDI_REDIRECTION_SURFACE_BLT_VIA_GDI","features":[305]},{"name":"DWRITE_E_ALREADYREGISTERED","features":[305]},{"name":"DWRITE_E_CACHEFORMAT","features":[305]},{"name":"DWRITE_E_CACHEVERSION","features":[305]},{"name":"DWRITE_E_FILEACCESS","features":[305]},{"name":"DWRITE_E_FILEFORMAT","features":[305]},{"name":"DWRITE_E_FILENOTFOUND","features":[305]},{"name":"DWRITE_E_FLOWDIRECTIONCONFLICTS","features":[305]},{"name":"DWRITE_E_FONTCOLLECTIONOBSOLETE","features":[305]},{"name":"DWRITE_E_NOCOLOR","features":[305]},{"name":"DWRITE_E_NOFONT","features":[305]},{"name":"DWRITE_E_TEXTRENDERERINCOMPATIBLE","features":[305]},{"name":"DWRITE_E_UNEXPECTED","features":[305]},{"name":"DWRITE_E_UNSUPPORTEDOPERATION","features":[305]},{"name":"DXCORE_ERROR_EVENT_NOT_UNREGISTERED","features":[305]},{"name":"DXGI_DDI_ERR_NONEXCLUSIVE","features":[305]},{"name":"DXGI_DDI_ERR_UNSUPPORTED","features":[305]},{"name":"DXGI_DDI_ERR_WASSTILLDRAWING","features":[305]},{"name":"DXGI_STATUS_CLIPPED","features":[305]},{"name":"DXGI_STATUS_DDA_WAS_STILL_DRAWING","features":[305]},{"name":"DXGI_STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[305]},{"name":"DXGI_STATUS_MODE_CHANGED","features":[305]},{"name":"DXGI_STATUS_MODE_CHANGE_IN_PROGRESS","features":[305]},{"name":"DXGI_STATUS_NO_DESKTOP_ACCESS","features":[305]},{"name":"DXGI_STATUS_NO_REDIRECTION","features":[305]},{"name":"DXGI_STATUS_OCCLUDED","features":[305]},{"name":"DXGI_STATUS_PRESENT_REQUIRED","features":[305]},{"name":"DXGI_STATUS_UNOCCLUDED","features":[305]},{"name":"DuplicateHandle","features":[305]},{"name":"EAS_E_ADMINS_CANNOT_CHANGE_PASSWORD","features":[305]},{"name":"EAS_E_ADMINS_HAVE_BLANK_PASSWORD","features":[305]},{"name":"EAS_E_CONNECTED_ADMINS_NEED_TO_CHANGE_PASSWORD","features":[305]},{"name":"EAS_E_CURRENT_CONNECTED_USER_NEED_TO_CHANGE_PASSWORD","features":[305]},{"name":"EAS_E_CURRENT_USER_HAS_BLANK_PASSWORD","features":[305]},{"name":"EAS_E_LOCAL_CONTROLLED_USERS_CANNOT_CHANGE_PASSWORD","features":[305]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CONNECTED_ADMINS","features":[305]},{"name":"EAS_E_PASSWORD_POLICY_NOT_ENFORCEABLE_FOR_CURRENT_CONNECTED_USER","features":[305]},{"name":"EAS_E_POLICY_COMPLIANT_WITH_ACTIONS","features":[305]},{"name":"EAS_E_POLICY_NOT_MANAGED_BY_OS","features":[305]},{"name":"EAS_E_REQUESTED_POLICY_NOT_ENFORCEABLE","features":[305]},{"name":"EAS_E_REQUESTED_POLICY_PASSWORD_EXPIRATION_INCOMPATIBLE","features":[305]},{"name":"EAS_E_USER_CANNOT_CHANGE_PASSWORD","features":[305]},{"name":"ENUM_E_FIRST","features":[305]},{"name":"ENUM_E_LAST","features":[305]},{"name":"ENUM_S_FIRST","features":[305]},{"name":"ENUM_S_LAST","features":[305]},{"name":"EPT_NT_CANT_CREATE","features":[305]},{"name":"EPT_NT_CANT_PERFORM_OP","features":[305]},{"name":"EPT_NT_INVALID_ENTRY","features":[305]},{"name":"EPT_NT_NOT_REGISTERED","features":[305]},{"name":"ERROR_ABANDONED_WAIT_0","features":[305]},{"name":"ERROR_ABANDONED_WAIT_63","features":[305]},{"name":"ERROR_ABANDON_HIBERFILE","features":[305]},{"name":"ERROR_ABIOS_ERROR","features":[305]},{"name":"ERROR_ACCESS_AUDIT_BY_POLICY","features":[305]},{"name":"ERROR_ACCESS_DENIED","features":[305]},{"name":"ERROR_ACCESS_DENIED_APPDATA","features":[305]},{"name":"ERROR_ACCESS_DISABLED_BY_POLICY","features":[305]},{"name":"ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[305]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE","features":[305]},{"name":"ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER","features":[305]},{"name":"ERROR_ACCOUNT_DISABLED","features":[305]},{"name":"ERROR_ACCOUNT_EXPIRED","features":[305]},{"name":"ERROR_ACCOUNT_LOCKED_OUT","features":[305]},{"name":"ERROR_ACCOUNT_RESTRICTION","features":[305]},{"name":"ERROR_ACPI_ERROR","features":[305]},{"name":"ERROR_ACTIVATION_COUNT_EXCEEDED","features":[305]},{"name":"ERROR_ACTIVE_CONNECTIONS","features":[305]},{"name":"ERROR_ADAP_HDW_ERR","features":[305]},{"name":"ERROR_ADDRESS_ALREADY_ASSOCIATED","features":[305]},{"name":"ERROR_ADDRESS_NOT_ASSOCIATED","features":[305]},{"name":"ERROR_ADVANCED_INSTALLER_FAILED","features":[305]},{"name":"ERROR_ALERTED","features":[305]},{"name":"ERROR_ALIAS_EXISTS","features":[305]},{"name":"ERROR_ALLOCATE_BUCKET","features":[305]},{"name":"ERROR_ALLOTTED_SPACE_EXCEEDED","features":[305]},{"name":"ERROR_ALLOWED_PORT_TYPE_RESTRICTION","features":[305]},{"name":"ERROR_ALL_NODES_NOT_AVAILABLE","features":[305]},{"name":"ERROR_ALL_SIDS_FILTERED","features":[305]},{"name":"ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_ALREADY_ASSIGNED","features":[305]},{"name":"ERROR_ALREADY_CONNECTED","features":[305]},{"name":"ERROR_ALREADY_CONNECTING","features":[305]},{"name":"ERROR_ALREADY_EXISTS","features":[305]},{"name":"ERROR_ALREADY_FIBER","features":[305]},{"name":"ERROR_ALREADY_HAS_STREAM_ID","features":[305]},{"name":"ERROR_ALREADY_INITIALIZED","features":[305]},{"name":"ERROR_ALREADY_REGISTERED","features":[305]},{"name":"ERROR_ALREADY_RUNNING_LKG","features":[305]},{"name":"ERROR_ALREADY_THREAD","features":[305]},{"name":"ERROR_ALREADY_WAITING","features":[305]},{"name":"ERROR_ALREADY_WIN32","features":[305]},{"name":"ERROR_AMBIGUOUS_SYSTEM_DEVICE","features":[305]},{"name":"ERROR_API_UNAVAILABLE","features":[305]},{"name":"ERROR_APPCONTAINER_REQUIRED","features":[305]},{"name":"ERROR_APPEXEC_APP_COMPAT_BLOCK","features":[305]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT","features":[305]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[305]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[305]},{"name":"ERROR_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[305]},{"name":"ERROR_APPEXEC_CONDITION_NOT_SATISFIED","features":[305]},{"name":"ERROR_APPEXEC_HANDLE_INVALIDATED","features":[305]},{"name":"ERROR_APPEXEC_HOST_ID_MISMATCH","features":[305]},{"name":"ERROR_APPEXEC_INVALID_HOST_GENERATION","features":[305]},{"name":"ERROR_APPEXEC_INVALID_HOST_STATE","features":[305]},{"name":"ERROR_APPEXEC_NO_DONOR","features":[305]},{"name":"ERROR_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[305]},{"name":"ERROR_APPEXEC_UNKNOWN_USER","features":[305]},{"name":"ERROR_APPHELP_BLOCK","features":[305]},{"name":"ERROR_APPINSTALLER_ACTIVATION_BLOCKED","features":[305]},{"name":"ERROR_APPINSTALLER_IS_MANAGED_BY_SYSTEM","features":[305]},{"name":"ERROR_APPINSTALLER_URI_IN_USE","features":[305]},{"name":"ERROR_APPX_FILE_NOT_ENCRYPTED","features":[305]},{"name":"ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[305]},{"name":"ERROR_APPX_RAW_DATA_WRITE_FAILED","features":[305]},{"name":"ERROR_APP_DATA_CORRUPT","features":[305]},{"name":"ERROR_APP_DATA_EXPIRED","features":[305]},{"name":"ERROR_APP_DATA_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_APP_DATA_NOT_FOUND","features":[305]},{"name":"ERROR_APP_DATA_REBOOT_REQUIRED","features":[305]},{"name":"ERROR_APP_HANG","features":[305]},{"name":"ERROR_APP_INIT_FAILURE","features":[305]},{"name":"ERROR_APP_WRONG_OS","features":[305]},{"name":"ERROR_ARBITRATION_UNHANDLED","features":[305]},{"name":"ERROR_ARENA_TRASHED","features":[305]},{"name":"ERROR_ARITHMETIC_OVERFLOW","features":[305]},{"name":"ERROR_ASSERTION_FAILURE","features":[305]},{"name":"ERROR_ATOMIC_LOCKS_NOT_SUPPORTED","features":[305]},{"name":"ERROR_ATTRIBUTE_NOT_PRESENT","features":[305]},{"name":"ERROR_AUDITING_DISABLED","features":[305]},{"name":"ERROR_AUDIT_FAILED","features":[305]},{"name":"ERROR_AUTHENTICATION_FIREWALL_FAILED","features":[305]},{"name":"ERROR_AUTHENTICATOR_MISMATCH","features":[305]},{"name":"ERROR_AUTHENTICODE_DISALLOWED","features":[305]},{"name":"ERROR_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[305]},{"name":"ERROR_AUTHENTICODE_TRUSTED_PUBLISHER","features":[305]},{"name":"ERROR_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[305]},{"name":"ERROR_AUTHIP_FAILURE","features":[305]},{"name":"ERROR_AUTH_PROTOCOL_REJECTED","features":[305]},{"name":"ERROR_AUTH_PROTOCOL_RESTRICTION","features":[305]},{"name":"ERROR_AUTH_SERVER_TIMEOUT","features":[305]},{"name":"ERROR_AUTODATASEG_EXCEEDS_64k","features":[305]},{"name":"ERROR_BACKUP_CONTROLLER","features":[305]},{"name":"ERROR_BADDB","features":[305]},{"name":"ERROR_BADKEY","features":[305]},{"name":"ERROR_BADSTARTPOSITION","features":[305]},{"name":"ERROR_BAD_ACCESSOR_FLAGS","features":[305]},{"name":"ERROR_BAD_ARGUMENTS","features":[305]},{"name":"ERROR_BAD_CLUSTERS","features":[305]},{"name":"ERROR_BAD_COMMAND","features":[305]},{"name":"ERROR_BAD_COMPRESSION_BUFFER","features":[305]},{"name":"ERROR_BAD_CONFIGURATION","features":[305]},{"name":"ERROR_BAD_CURRENT_DIRECTORY","features":[305]},{"name":"ERROR_BAD_DESCRIPTOR_FORMAT","features":[305]},{"name":"ERROR_BAD_DEVICE","features":[305]},{"name":"ERROR_BAD_DEVICE_PATH","features":[305]},{"name":"ERROR_BAD_DEV_TYPE","features":[305]},{"name":"ERROR_BAD_DLL_ENTRYPOINT","features":[305]},{"name":"ERROR_BAD_DRIVER","features":[305]},{"name":"ERROR_BAD_DRIVER_LEVEL","features":[305]},{"name":"ERROR_BAD_ENVIRONMENT","features":[305]},{"name":"ERROR_BAD_EXE_FORMAT","features":[305]},{"name":"ERROR_BAD_FILE_TYPE","features":[305]},{"name":"ERROR_BAD_FORMAT","features":[305]},{"name":"ERROR_BAD_FUNCTION_TABLE","features":[305]},{"name":"ERROR_BAD_IMPERSONATION_LEVEL","features":[305]},{"name":"ERROR_BAD_INHERITANCE_ACL","features":[305]},{"name":"ERROR_BAD_INTERFACE_INSTALLSECT","features":[305]},{"name":"ERROR_BAD_LENGTH","features":[305]},{"name":"ERROR_BAD_LOGON_SESSION_STATE","features":[305]},{"name":"ERROR_BAD_MCFG_TABLE","features":[305]},{"name":"ERROR_BAD_NETPATH","features":[305]},{"name":"ERROR_BAD_NET_NAME","features":[305]},{"name":"ERROR_BAD_NET_RESP","features":[305]},{"name":"ERROR_BAD_PATHNAME","features":[305]},{"name":"ERROR_BAD_PIPE","features":[305]},{"name":"ERROR_BAD_PROFILE","features":[305]},{"name":"ERROR_BAD_PROVIDER","features":[305]},{"name":"ERROR_BAD_QUERY_SYNTAX","features":[305]},{"name":"ERROR_BAD_RECOVERY_POLICY","features":[305]},{"name":"ERROR_BAD_REM_ADAP","features":[305]},{"name":"ERROR_BAD_SECTION_NAME_LINE","features":[305]},{"name":"ERROR_BAD_SERVICE_ENTRYPOINT","features":[305]},{"name":"ERROR_BAD_SERVICE_INSTALLSECT","features":[305]},{"name":"ERROR_BAD_STACK","features":[305]},{"name":"ERROR_BAD_THREADID_ADDR","features":[305]},{"name":"ERROR_BAD_TOKEN_TYPE","features":[305]},{"name":"ERROR_BAD_UNIT","features":[305]},{"name":"ERROR_BAD_USERNAME","features":[305]},{"name":"ERROR_BAD_USER_PROFILE","features":[305]},{"name":"ERROR_BAD_VALIDATION_CLASS","features":[305]},{"name":"ERROR_BAP_DISCONNECTED","features":[305]},{"name":"ERROR_BAP_REQUIRED","features":[305]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[305]},{"name":"ERROR_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[305]},{"name":"ERROR_BCD_TOO_MANY_ELEMENTS","features":[305]},{"name":"ERROR_BEGINNING_OF_MEDIA","features":[305]},{"name":"ERROR_BEYOND_VDL","features":[305]},{"name":"ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[305]},{"name":"ERROR_BIZRULES_NOT_ENABLED","features":[305]},{"name":"ERROR_BLOCKED_BY_PARENTAL_CONTROLS","features":[305]},{"name":"ERROR_BLOCK_SHARED","features":[305]},{"name":"ERROR_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[305]},{"name":"ERROR_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[305]},{"name":"ERROR_BLOCK_TOO_MANY_REFERENCES","features":[305]},{"name":"ERROR_BLOCK_WEAK_REFERENCE_INVALID","features":[305]},{"name":"ERROR_BOOT_ALREADY_ACCEPTED","features":[305]},{"name":"ERROR_BROKEN_PIPE","features":[305]},{"name":"ERROR_BUFFER_ALL_ZEROS","features":[305]},{"name":"ERROR_BUFFER_OVERFLOW","features":[305]},{"name":"ERROR_BUSY","features":[305]},{"name":"ERROR_BUSY_DRIVE","features":[305]},{"name":"ERROR_BUS_RESET","features":[305]},{"name":"ERROR_BYPASSIO_FLT_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CACHE_PAGE_LOCKED","features":[305]},{"name":"ERROR_CALLBACK_INVOKE_INLINE","features":[305]},{"name":"ERROR_CALLBACK_POP_STACK","features":[305]},{"name":"ERROR_CALLBACK_SUPPLIED_INVALID_DATA","features":[305]},{"name":"ERROR_CALL_NOT_IMPLEMENTED","features":[305]},{"name":"ERROR_CANCELLED","features":[305]},{"name":"ERROR_CANCEL_VIOLATION","features":[305]},{"name":"ERROR_CANNOT_ABORT_TRANSACTIONS","features":[305]},{"name":"ERROR_CANNOT_ACCEPT_TRANSACTED_WORK","features":[305]},{"name":"ERROR_CANNOT_BREAK_OPLOCK","features":[305]},{"name":"ERROR_CANNOT_COPY","features":[305]},{"name":"ERROR_CANNOT_DETECT_DRIVER_FAILURE","features":[305]},{"name":"ERROR_CANNOT_DETECT_PROCESS_ABORT","features":[305]},{"name":"ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[305]},{"name":"ERROR_CANNOT_FIND_WND_CLASS","features":[305]},{"name":"ERROR_CANNOT_GRANT_REQUESTED_OPLOCK","features":[305]},{"name":"ERROR_CANNOT_IMPERSONATE","features":[305]},{"name":"ERROR_CANNOT_LOAD_REGISTRY_FILE","features":[305]},{"name":"ERROR_CANNOT_MAKE","features":[305]},{"name":"ERROR_CANNOT_OPEN_PROFILE","features":[305]},{"name":"ERROR_CANNOT_SWITCH_RUNLEVEL","features":[305]},{"name":"ERROR_CANTFETCHBACKWARDS","features":[305]},{"name":"ERROR_CANTOPEN","features":[305]},{"name":"ERROR_CANTREAD","features":[305]},{"name":"ERROR_CANTSCROLLBACKWARDS","features":[305]},{"name":"ERROR_CANTWRITE","features":[305]},{"name":"ERROR_CANT_ACCESS_DOMAIN_INFO","features":[305]},{"name":"ERROR_CANT_ACCESS_FILE","features":[305]},{"name":"ERROR_CANT_ATTACH_TO_DEV_VOLUME","features":[305]},{"name":"ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[305]},{"name":"ERROR_CANT_CLEAR_ENCRYPTION_FLAG","features":[305]},{"name":"ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[305]},{"name":"ERROR_CANT_CROSS_RM_BOUNDARY","features":[305]},{"name":"ERROR_CANT_DELETE_LAST_ITEM","features":[305]},{"name":"ERROR_CANT_DISABLE_MANDATORY","features":[305]},{"name":"ERROR_CANT_ENABLE_DENY_ONLY","features":[305]},{"name":"ERROR_CANT_EVICT_ACTIVE_NODE","features":[305]},{"name":"ERROR_CANT_LOAD_CLASS_ICON","features":[305]},{"name":"ERROR_CANT_OPEN_ANONYMOUS","features":[305]},{"name":"ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[305]},{"name":"ERROR_CANT_RECOVER_WITH_HANDLE_OPEN","features":[305]},{"name":"ERROR_CANT_REMOVE_DEVINST","features":[305]},{"name":"ERROR_CANT_RESOLVE_FILENAME","features":[305]},{"name":"ERROR_CANT_TERMINATE_SELF","features":[305]},{"name":"ERROR_CANT_WAIT","features":[305]},{"name":"ERROR_CAN_NOT_COMPLETE","features":[305]},{"name":"ERROR_CAN_NOT_DEL_LOCAL_WINS","features":[305]},{"name":"ERROR_CAPAUTHZ_CHANGE_TYPE","features":[305]},{"name":"ERROR_CAPAUTHZ_DB_CORRUPTED","features":[305]},{"name":"ERROR_CAPAUTHZ_NOT_AUTHORIZED","features":[305]},{"name":"ERROR_CAPAUTHZ_NOT_DEVUNLOCKED","features":[305]},{"name":"ERROR_CAPAUTHZ_NOT_PROVISIONED","features":[305]},{"name":"ERROR_CAPAUTHZ_NO_POLICY","features":[305]},{"name":"ERROR_CAPAUTHZ_SCCD_DEV_MODE_REQUIRED","features":[305]},{"name":"ERROR_CAPAUTHZ_SCCD_INVALID_CATALOG","features":[305]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_AUTH_ENTITY","features":[305]},{"name":"ERROR_CAPAUTHZ_SCCD_NO_CAPABILITY_MATCH","features":[305]},{"name":"ERROR_CAPAUTHZ_SCCD_PARSE_ERROR","features":[305]},{"name":"ERROR_CARDBUS_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CASE_DIFFERING_NAMES_IN_DIR","features":[305]},{"name":"ERROR_CASE_SENSITIVE_PATH","features":[305]},{"name":"ERROR_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[305]},{"name":"ERROR_CHECKING_FILE_SYSTEM","features":[305]},{"name":"ERROR_CHECKOUT_REQUIRED","features":[305]},{"name":"ERROR_CHILD_MUST_BE_VOLATILE","features":[305]},{"name":"ERROR_CHILD_NOT_COMPLETE","features":[305]},{"name":"ERROR_CHILD_PROCESS_BLOCKED","features":[305]},{"name":"ERROR_CHILD_WINDOW_MENU","features":[305]},{"name":"ERROR_CIMFS_IMAGE_CORRUPT","features":[305]},{"name":"ERROR_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CIRCULAR_DEPENDENCY","features":[305]},{"name":"ERROR_CLASSIC_COMPAT_MODE_NOT_ALLOWED","features":[305]},{"name":"ERROR_CLASS_ALREADY_EXISTS","features":[305]},{"name":"ERROR_CLASS_DOES_NOT_EXIST","features":[305]},{"name":"ERROR_CLASS_HAS_WINDOWS","features":[305]},{"name":"ERROR_CLASS_MISMATCH","features":[305]},{"name":"ERROR_CLEANER_CARTRIDGE_INSTALLED","features":[305]},{"name":"ERROR_CLEANER_CARTRIDGE_SPENT","features":[305]},{"name":"ERROR_CLEANER_SLOT_NOT_SET","features":[305]},{"name":"ERROR_CLEANER_SLOT_SET","features":[305]},{"name":"ERROR_CLIENT_INTERFACE_ALREADY_EXISTS","features":[305]},{"name":"ERROR_CLIENT_SERVER_PARAMETERS_INVALID","features":[305]},{"name":"ERROR_CLIPBOARD_NOT_OPEN","features":[305]},{"name":"ERROR_CLIPPING_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CLIP_DEVICE_LICENSE_MISSING","features":[305]},{"name":"ERROR_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[305]},{"name":"ERROR_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[305]},{"name":"ERROR_CLIP_LICENSE_EXPIRED","features":[305]},{"name":"ERROR_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[305]},{"name":"ERROR_CLIP_LICENSE_INVALID_SIGNATURE","features":[305]},{"name":"ERROR_CLIP_LICENSE_NOT_FOUND","features":[305]},{"name":"ERROR_CLIP_LICENSE_NOT_SIGNED","features":[305]},{"name":"ERROR_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[305]},{"name":"ERROR_CLOUD_FILE_ACCESS_DENIED","features":[305]},{"name":"ERROR_CLOUD_FILE_ALREADY_CONNECTED","features":[305]},{"name":"ERROR_CLOUD_FILE_AUTHENTICATION_FAILED","features":[305]},{"name":"ERROR_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[305]},{"name":"ERROR_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[305]},{"name":"ERROR_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[305]},{"name":"ERROR_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[305]},{"name":"ERROR_CLOUD_FILE_INVALID_REQUEST","features":[305]},{"name":"ERROR_CLOUD_FILE_IN_USE","features":[305]},{"name":"ERROR_CLOUD_FILE_METADATA_CORRUPT","features":[305]},{"name":"ERROR_CLOUD_FILE_METADATA_TOO_LARGE","features":[305]},{"name":"ERROR_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[305]},{"name":"ERROR_CLOUD_FILE_NOT_IN_SYNC","features":[305]},{"name":"ERROR_CLOUD_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[305]},{"name":"ERROR_CLOUD_FILE_PINNED","features":[305]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[305]},{"name":"ERROR_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[305]},{"name":"ERROR_CLOUD_FILE_PROPERTY_CORRUPT","features":[305]},{"name":"ERROR_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[305]},{"name":"ERROR_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[305]},{"name":"ERROR_CLOUD_FILE_PROVIDER_TERMINATED","features":[305]},{"name":"ERROR_CLOUD_FILE_READ_ONLY_VOLUME","features":[305]},{"name":"ERROR_CLOUD_FILE_REQUEST_ABORTED","features":[305]},{"name":"ERROR_CLOUD_FILE_REQUEST_CANCELED","features":[305]},{"name":"ERROR_CLOUD_FILE_REQUEST_TIMEOUT","features":[305]},{"name":"ERROR_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[305]},{"name":"ERROR_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[305]},{"name":"ERROR_CLOUD_FILE_UNSUCCESSFUL","features":[305]},{"name":"ERROR_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[305]},{"name":"ERROR_CLOUD_FILE_VALIDATION_FAILED","features":[305]},{"name":"ERROR_CLUSCFG_ALREADY_COMMITTED","features":[305]},{"name":"ERROR_CLUSCFG_ROLLBACK_FAILED","features":[305]},{"name":"ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT","features":[305]},{"name":"ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTERLOG_CORRUPT","features":[305]},{"name":"ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE","features":[305]},{"name":"ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE","features":[305]},{"name":"ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE","features":[305]},{"name":"ERROR_CLUSTERSET_MANAGEMENT_CLUSTER_UNREACHABLE","features":[305]},{"name":"ERROR_CLUSTER_AFFINITY_CONFLICT","features":[305]},{"name":"ERROR_CLUSTER_BACKUP_IN_PROGRESS","features":[305]},{"name":"ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES","features":[305]},{"name":"ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME","features":[305]},{"name":"ERROR_CLUSTER_CANT_DESERIALIZE_DATA","features":[305]},{"name":"ERROR_CLUSTER_CSV_INVALID_HANDLE","features":[305]},{"name":"ERROR_CLUSTER_CSV_IO_PAUSE_TIMEOUT","features":[305]},{"name":"ERROR_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[305]},{"name":"ERROR_CLUSTER_DATABASE_SEQMISMATCH","features":[305]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS","features":[305]},{"name":"ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS","features":[305]},{"name":"ERROR_CLUSTER_DATABASE_UPDATE_CONDITION_FAILED","features":[305]},{"name":"ERROR_CLUSTER_DISK_NOT_CONNECTED","features":[305]},{"name":"ERROR_CLUSTER_EVICT_INVALID_REQUEST","features":[305]},{"name":"ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP","features":[305]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_FAILED_S2D_VALIDATION","features":[305]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_INVALID_HIERARCHY","features":[305]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_PARENT_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_FAULT_DOMAIN_S2D_CONNECTIVITY_LOSS","features":[305]},{"name":"ERROR_CLUSTER_GROUP_BUSY","features":[305]},{"name":"ERROR_CLUSTER_GROUP_MOVING","features":[305]},{"name":"ERROR_CLUSTER_GROUP_QUEUED","features":[305]},{"name":"ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE","features":[305]},{"name":"ERROR_CLUSTER_GUM_NOT_LOCKER","features":[305]},{"name":"ERROR_CLUSTER_INCOMPATIBLE_VERSIONS","features":[305]},{"name":"ERROR_CLUSTER_INSTANCE_ID_MISMATCH","features":[305]},{"name":"ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION","features":[305]},{"name":"ERROR_CLUSTER_INVALID_INFRASTRUCTURE_FILESERVER_NAME","features":[305]},{"name":"ERROR_CLUSTER_INVALID_IPV6_NETWORK","features":[305]},{"name":"ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK","features":[305]},{"name":"ERROR_CLUSTER_INVALID_NETWORK","features":[305]},{"name":"ERROR_CLUSTER_INVALID_NETWORK_PROVIDER","features":[305]},{"name":"ERROR_CLUSTER_INVALID_NODE","features":[305]},{"name":"ERROR_CLUSTER_INVALID_NODE_WEIGHT","features":[305]},{"name":"ERROR_CLUSTER_INVALID_REQUEST","features":[305]},{"name":"ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR","features":[305]},{"name":"ERROR_CLUSTER_INVALID_STRING_FORMAT","features":[305]},{"name":"ERROR_CLUSTER_INVALID_STRING_TERMINATION","features":[305]},{"name":"ERROR_CLUSTER_IPADDR_IN_USE","features":[305]},{"name":"ERROR_CLUSTER_JOIN_ABORTED","features":[305]},{"name":"ERROR_CLUSTER_JOIN_IN_PROGRESS","features":[305]},{"name":"ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[305]},{"name":"ERROR_CLUSTER_LAST_INTERNAL_NETWORK","features":[305]},{"name":"ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED","features":[305]},{"name":"ERROR_CLUSTER_MAX_NODES_IN_CLUSTER","features":[305]},{"name":"ERROR_CLUSTER_MEMBERSHIP_HALT","features":[305]},{"name":"ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE","features":[305]},{"name":"ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME","features":[305]},{"name":"ERROR_CLUSTER_NETINTERFACE_EXISTS","features":[305]},{"name":"ERROR_CLUSTER_NETINTERFACE_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[305]},{"name":"ERROR_CLUSTER_NETWORK_ALREADY_ONLINE","features":[305]},{"name":"ERROR_CLUSTER_NETWORK_EXISTS","features":[305]},{"name":"ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS","features":[305]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP","features":[305]},{"name":"ERROR_CLUSTER_NETWORK_NOT_INTERNAL","features":[305]},{"name":"ERROR_CLUSTER_NODE_ALREADY_DOWN","features":[305]},{"name":"ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT","features":[305]},{"name":"ERROR_CLUSTER_NODE_ALREADY_MEMBER","features":[305]},{"name":"ERROR_CLUSTER_NODE_ALREADY_UP","features":[305]},{"name":"ERROR_CLUSTER_NODE_DOWN","features":[305]},{"name":"ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS","features":[305]},{"name":"ERROR_CLUSTER_NODE_EXISTS","features":[305]},{"name":"ERROR_CLUSTER_NODE_IN_GRACE_PERIOD","features":[305]},{"name":"ERROR_CLUSTER_NODE_ISOLATED","features":[305]},{"name":"ERROR_CLUSTER_NODE_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_NODE_NOT_MEMBER","features":[305]},{"name":"ERROR_CLUSTER_NODE_NOT_PAUSED","features":[305]},{"name":"ERROR_CLUSTER_NODE_NOT_READY","features":[305]},{"name":"ERROR_CLUSTER_NODE_PAUSED","features":[305]},{"name":"ERROR_CLUSTER_NODE_QUARANTINED","features":[305]},{"name":"ERROR_CLUSTER_NODE_SHUTTING_DOWN","features":[305]},{"name":"ERROR_CLUSTER_NODE_UNREACHABLE","features":[305]},{"name":"ERROR_CLUSTER_NODE_UP","features":[305]},{"name":"ERROR_CLUSTER_NOT_INSTALLED","features":[305]},{"name":"ERROR_CLUSTER_NOT_SHARED_VOLUME","features":[305]},{"name":"ERROR_CLUSTER_NO_NET_ADAPTERS","features":[305]},{"name":"ERROR_CLUSTER_NO_QUORUM","features":[305]},{"name":"ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED","features":[305]},{"name":"ERROR_CLUSTER_NO_SECURITY_CONTEXT","features":[305]},{"name":"ERROR_CLUSTER_NULL_DATA","features":[305]},{"name":"ERROR_CLUSTER_OBJECT_ALREADY_USED","features":[305]},{"name":"ERROR_CLUSTER_OBJECT_IS_CLUSTER_SET_VM","features":[305]},{"name":"ERROR_CLUSTER_OLD_VERSION","features":[305]},{"name":"ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST","features":[305]},{"name":"ERROR_CLUSTER_PARAMETER_MISMATCH","features":[305]},{"name":"ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS","features":[305]},{"name":"ERROR_CLUSTER_PARTIAL_READ","features":[305]},{"name":"ERROR_CLUSTER_PARTIAL_SEND","features":[305]},{"name":"ERROR_CLUSTER_PARTIAL_WRITE","features":[305]},{"name":"ERROR_CLUSTER_POISONED","features":[305]},{"name":"ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH","features":[305]},{"name":"ERROR_CLUSTER_QUORUMLOG_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION","features":[305]},{"name":"ERROR_CLUSTER_RESNAME_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_DOES_NOT_SUPPORT_UNMONITORED","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICATED","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_LOCKED_STATUS","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_NOT_MONITORED","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_BUSY","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_CALL","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION","features":[305]},{"name":"ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE","features":[305]},{"name":"ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CLUSTER_RHS_FAILED_INITIALIZATION","features":[305]},{"name":"ERROR_CLUSTER_SHARED_VOLUMES_IN_USE","features":[305]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED","features":[305]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED","features":[305]},{"name":"ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED","features":[305]},{"name":"ERROR_CLUSTER_SHUTTING_DOWN","features":[305]},{"name":"ERROR_CLUSTER_SINGLETON_RESOURCE","features":[305]},{"name":"ERROR_CLUSTER_SPACE_DEGRADED","features":[305]},{"name":"ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED","features":[305]},{"name":"ERROR_CLUSTER_TOKEN_DELEGATION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CLUSTER_TOO_MANY_NODES","features":[305]},{"name":"ERROR_CLUSTER_UPGRADE_FIX_QUORUM_NOT_SUPPORTED","features":[305]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPATIBLE_VERSIONS","features":[305]},{"name":"ERROR_CLUSTER_UPGRADE_INCOMPLETE","features":[305]},{"name":"ERROR_CLUSTER_UPGRADE_IN_PROGRESS","features":[305]},{"name":"ERROR_CLUSTER_UPGRADE_RESTART_REQUIRED","features":[305]},{"name":"ERROR_CLUSTER_USE_SHARED_VOLUMES_API","features":[305]},{"name":"ERROR_CLUSTER_WATCHDOG_TERMINATING","features":[305]},{"name":"ERROR_CLUSTER_WRONG_OS_VERSION","features":[305]},{"name":"ERROR_COLORSPACE_MISMATCH","features":[305]},{"name":"ERROR_COMMITMENT_LIMIT","features":[305]},{"name":"ERROR_COMMITMENT_MINIMUM","features":[305]},{"name":"ERROR_COMPRESSED_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_COMPRESSION_DISABLED","features":[305]},{"name":"ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[305]},{"name":"ERROR_COMPRESSION_NOT_BENEFICIAL","features":[305]},{"name":"ERROR_COM_TASK_STOP_PENDING","features":[305]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD","features":[305]},{"name":"ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT","features":[305]},{"name":"ERROR_CONNECTION_ABORTED","features":[305]},{"name":"ERROR_CONNECTION_ACTIVE","features":[305]},{"name":"ERROR_CONNECTION_COUNT_LIMIT","features":[305]},{"name":"ERROR_CONNECTION_INVALID","features":[305]},{"name":"ERROR_CONNECTION_REFUSED","features":[305]},{"name":"ERROR_CONNECTION_UNAVAIL","features":[305]},{"name":"ERROR_CONTAINER_ASSIGNED","features":[305]},{"name":"ERROR_CONTENT_BLOCKED","features":[305]},{"name":"ERROR_CONTEXT_EXPIRED","features":[305]},{"name":"ERROR_CONTINUE","features":[305]},{"name":"ERROR_CONTROLLING_IEPORT","features":[305]},{"name":"ERROR_CONTROL_C_EXIT","features":[305]},{"name":"ERROR_CONTROL_ID_NOT_FOUND","features":[305]},{"name":"ERROR_CONVERT_TO_LARGE","features":[305]},{"name":"ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND","features":[305]},{"name":"ERROR_CORE_RESOURCE","features":[305]},{"name":"ERROR_CORRUPT_LOG_CLEARED","features":[305]},{"name":"ERROR_CORRUPT_LOG_CORRUPTED","features":[305]},{"name":"ERROR_CORRUPT_LOG_DELETED_FULL","features":[305]},{"name":"ERROR_CORRUPT_LOG_OVERFULL","features":[305]},{"name":"ERROR_CORRUPT_LOG_UNAVAILABLE","features":[305]},{"name":"ERROR_CORRUPT_SYSTEM_FILE","features":[305]},{"name":"ERROR_COULD_NOT_INTERPRET","features":[305]},{"name":"ERROR_COULD_NOT_RESIZE_LOG","features":[305]},{"name":"ERROR_COUNTER_TIMEOUT","features":[305]},{"name":"ERROR_CPU_SET_INVALID","features":[305]},{"name":"ERROR_CRASH_DUMP","features":[305]},{"name":"ERROR_CRC","features":[305]},{"name":"ERROR_CREATE_FAILED","features":[305]},{"name":"ERROR_CRED_REQUIRES_CONFIRMATION","features":[305]},{"name":"ERROR_CRM_PROTOCOL_ALREADY_EXISTS","features":[305]},{"name":"ERROR_CRM_PROTOCOL_NOT_FOUND","features":[305]},{"name":"ERROR_CROSS_PARTITION_VIOLATION","features":[305]},{"name":"ERROR_CSCSHARE_OFFLINE","features":[305]},{"name":"ERROR_CSV_VOLUME_NOT_LOCAL","features":[305]},{"name":"ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[305]},{"name":"ERROR_CS_ENCRYPTION_FILE_NOT_CSE","features":[305]},{"name":"ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[305]},{"name":"ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[305]},{"name":"ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[305]},{"name":"ERROR_CTLOG_INCONSISTENT_TRACKING_FILE","features":[305]},{"name":"ERROR_CTLOG_INVALID_TRACKING_STATE","features":[305]},{"name":"ERROR_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[305]},{"name":"ERROR_CTLOG_TRACKING_NOT_INITIALIZED","features":[305]},{"name":"ERROR_CTLOG_VHD_CHANGED_OFFLINE","features":[305]},{"name":"ERROR_CTX_ACCOUNT_RESTRICTION","features":[305]},{"name":"ERROR_CTX_BAD_VIDEO_MODE","features":[305]},{"name":"ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY","features":[305]},{"name":"ERROR_CTX_CDM_CONNECT","features":[305]},{"name":"ERROR_CTX_CDM_DISCONNECT","features":[305]},{"name":"ERROR_CTX_CLIENT_LICENSE_IN_USE","features":[305]},{"name":"ERROR_CTX_CLIENT_LICENSE_NOT_SET","features":[305]},{"name":"ERROR_CTX_CLIENT_QUERY_TIMEOUT","features":[305]},{"name":"ERROR_CTX_CLOSE_PENDING","features":[305]},{"name":"ERROR_CTX_CONSOLE_CONNECT","features":[305]},{"name":"ERROR_CTX_CONSOLE_DISCONNECT","features":[305]},{"name":"ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED","features":[305]},{"name":"ERROR_CTX_GRAPHICS_INVALID","features":[305]},{"name":"ERROR_CTX_INVALID_MODEMNAME","features":[305]},{"name":"ERROR_CTX_INVALID_PD","features":[305]},{"name":"ERROR_CTX_INVALID_WD","features":[305]},{"name":"ERROR_CTX_LICENSE_CLIENT_INVALID","features":[305]},{"name":"ERROR_CTX_LICENSE_EXPIRED","features":[305]},{"name":"ERROR_CTX_LICENSE_NOT_AVAILABLE","features":[305]},{"name":"ERROR_CTX_LOGON_DISABLED","features":[305]},{"name":"ERROR_CTX_MODEM_INF_NOT_FOUND","features":[305]},{"name":"ERROR_CTX_MODEM_RESPONSE_BUSY","features":[305]},{"name":"ERROR_CTX_MODEM_RESPONSE_ERROR","features":[305]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_CARRIER","features":[305]},{"name":"ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[305]},{"name":"ERROR_CTX_MODEM_RESPONSE_TIMEOUT","features":[305]},{"name":"ERROR_CTX_MODEM_RESPONSE_VOICE","features":[305]},{"name":"ERROR_CTX_NOT_CONSOLE","features":[305]},{"name":"ERROR_CTX_NO_FORCE_LOGOFF","features":[305]},{"name":"ERROR_CTX_NO_OUTBUF","features":[305]},{"name":"ERROR_CTX_PD_NOT_FOUND","features":[305]},{"name":"ERROR_CTX_SECURITY_LAYER_ERROR","features":[305]},{"name":"ERROR_CTX_SERVICE_NAME_COLLISION","features":[305]},{"name":"ERROR_CTX_SESSION_IN_USE","features":[305]},{"name":"ERROR_CTX_SHADOW_DENIED","features":[305]},{"name":"ERROR_CTX_SHADOW_DISABLED","features":[305]},{"name":"ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[305]},{"name":"ERROR_CTX_SHADOW_INVALID","features":[305]},{"name":"ERROR_CTX_SHADOW_NOT_RUNNING","features":[305]},{"name":"ERROR_CTX_TD_ERROR","features":[305]},{"name":"ERROR_CTX_WD_NOT_FOUND","features":[305]},{"name":"ERROR_CTX_WINSTATIONS_DISABLED","features":[305]},{"name":"ERROR_CTX_WINSTATION_ACCESS_DENIED","features":[305]},{"name":"ERROR_CTX_WINSTATION_ALREADY_EXISTS","features":[305]},{"name":"ERROR_CTX_WINSTATION_BUSY","features":[305]},{"name":"ERROR_CTX_WINSTATION_NAME_INVALID","features":[305]},{"name":"ERROR_CTX_WINSTATION_NOT_FOUND","features":[305]},{"name":"ERROR_CURRENT_DIRECTORY","features":[305]},{"name":"ERROR_CURRENT_DOMAIN_NOT_ALLOWED","features":[305]},{"name":"ERROR_CURRENT_TRANSACTION_NOT_VALID","features":[305]},{"name":"ERROR_DATABASE_BACKUP_CORRUPT","features":[305]},{"name":"ERROR_DATABASE_DOES_NOT_EXIST","features":[305]},{"name":"ERROR_DATABASE_FAILURE","features":[305]},{"name":"ERROR_DATABASE_FULL","features":[305]},{"name":"ERROR_DATATYPE_MISMATCH","features":[305]},{"name":"ERROR_DATA_CHECKSUM_ERROR","features":[305]},{"name":"ERROR_DATA_LOST_REPAIR","features":[305]},{"name":"ERROR_DATA_NOT_ACCEPTED","features":[305]},{"name":"ERROR_DAX_MAPPING_EXISTS","features":[305]},{"name":"ERROR_DBG_ATTACH_PROCESS_FAILURE_LOCKDOWN","features":[305]},{"name":"ERROR_DBG_COMMAND_EXCEPTION","features":[305]},{"name":"ERROR_DBG_CONNECT_SERVER_FAILURE_LOCKDOWN","features":[305]},{"name":"ERROR_DBG_CONTINUE","features":[305]},{"name":"ERROR_DBG_CONTROL_BREAK","features":[305]},{"name":"ERROR_DBG_CONTROL_C","features":[305]},{"name":"ERROR_DBG_CREATE_PROCESS_FAILURE_LOCKDOWN","features":[305]},{"name":"ERROR_DBG_EXCEPTION_HANDLED","features":[305]},{"name":"ERROR_DBG_EXCEPTION_NOT_HANDLED","features":[305]},{"name":"ERROR_DBG_PRINTEXCEPTION_C","features":[305]},{"name":"ERROR_DBG_REPLY_LATER","features":[305]},{"name":"ERROR_DBG_RIPEXCEPTION","features":[305]},{"name":"ERROR_DBG_START_SERVER_FAILURE_LOCKDOWN","features":[305]},{"name":"ERROR_DBG_TERMINATE_PROCESS","features":[305]},{"name":"ERROR_DBG_TERMINATE_THREAD","features":[305]},{"name":"ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE","features":[305]},{"name":"ERROR_DC_NOT_FOUND","features":[305]},{"name":"ERROR_DDE_FAIL","features":[305]},{"name":"ERROR_DDM_NOT_RUNNING","features":[305]},{"name":"ERROR_DEBUGGER_INACTIVE","features":[305]},{"name":"ERROR_DEBUG_ATTACH_FAILED","features":[305]},{"name":"ERROR_DECRYPTION_FAILED","features":[305]},{"name":"ERROR_DELAY_LOAD_FAILED","features":[305]},{"name":"ERROR_DELETE_PENDING","features":[305]},{"name":"ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED","features":[305]},{"name":"ERROR_DELETING_ICM_XFORM","features":[305]},{"name":"ERROR_DEPENDENCY_ALREADY_EXISTS","features":[305]},{"name":"ERROR_DEPENDENCY_NOT_ALLOWED","features":[305]},{"name":"ERROR_DEPENDENCY_NOT_FOUND","features":[305]},{"name":"ERROR_DEPENDENCY_TREE_TOO_COMPLEX","features":[305]},{"name":"ERROR_DEPENDENT_RESOURCE_EXISTS","features":[305]},{"name":"ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT","features":[305]},{"name":"ERROR_DEPENDENT_SERVICES_RUNNING","features":[305]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_POLICY","features":[305]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_PROFILE_POLICY","features":[305]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_USER_LOG_OFF","features":[305]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_MACHINE","features":[305]},{"name":"ERROR_DEPLOYMENT_BLOCKED_BY_VOLUME_POLICY_PACKAGE","features":[305]},{"name":"ERROR_DEPLOYMENT_FAILED_CONFLICTING_MUTABLE_PACKAGE_DIRECTORY","features":[305]},{"name":"ERROR_DEPLOYMENT_OPTION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_DESTINATION_ELEMENT_FULL","features":[305]},{"name":"ERROR_DESTROY_OBJECT_OF_OTHER_THREAD","features":[305]},{"name":"ERROR_DEVICE_ALREADY_ATTACHED","features":[305]},{"name":"ERROR_DEVICE_ALREADY_REMEMBERED","features":[305]},{"name":"ERROR_DEVICE_DOOR_OPEN","features":[305]},{"name":"ERROR_DEVICE_ENUMERATION_ERROR","features":[305]},{"name":"ERROR_DEVICE_FEATURE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_DEVICE_HARDWARE_ERROR","features":[305]},{"name":"ERROR_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[305]},{"name":"ERROR_DEVICE_INSTALLER_NOT_READY","features":[305]},{"name":"ERROR_DEVICE_INSTALL_BLOCKED","features":[305]},{"name":"ERROR_DEVICE_INTERFACE_ACTIVE","features":[305]},{"name":"ERROR_DEVICE_INTERFACE_REMOVED","features":[305]},{"name":"ERROR_DEVICE_IN_MAINTENANCE","features":[305]},{"name":"ERROR_DEVICE_IN_USE","features":[305]},{"name":"ERROR_DEVICE_NOT_AVAILABLE","features":[305]},{"name":"ERROR_DEVICE_NOT_CONNECTED","features":[305]},{"name":"ERROR_DEVICE_NOT_PARTITIONED","features":[305]},{"name":"ERROR_DEVICE_NO_RESOURCES","features":[305]},{"name":"ERROR_DEVICE_REINITIALIZATION_NEEDED","features":[305]},{"name":"ERROR_DEVICE_REMOVED","features":[305]},{"name":"ERROR_DEVICE_REQUIRES_CLEANING","features":[305]},{"name":"ERROR_DEVICE_RESET_REQUIRED","features":[305]},{"name":"ERROR_DEVICE_SUPPORT_IN_PROGRESS","features":[305]},{"name":"ERROR_DEVICE_UNREACHABLE","features":[305]},{"name":"ERROR_DEVINFO_DATA_LOCKED","features":[305]},{"name":"ERROR_DEVINFO_LIST_LOCKED","features":[305]},{"name":"ERROR_DEVINFO_NOT_REGISTERED","features":[305]},{"name":"ERROR_DEVINSTALL_QUEUE_NONNATIVE","features":[305]},{"name":"ERROR_DEVINST_ALREADY_EXISTS","features":[305]},{"name":"ERROR_DEV_NOT_EXIST","features":[305]},{"name":"ERROR_DEV_SIDELOAD_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DHCP_ADDRESS_CONFLICT","features":[305]},{"name":"ERROR_DIALIN_HOURS_RESTRICTION","features":[305]},{"name":"ERROR_DIALOUT_HOURS_RESTRICTION","features":[305]},{"name":"ERROR_DIFFERENT_PROFILE_RESOURCE_MANAGER_EXIST","features":[305]},{"name":"ERROR_DIFFERENT_SERVICE_ACCOUNT","features":[305]},{"name":"ERROR_DIFFERENT_VERSION_OF_PACKAGED_SERVICE_INSTALLED","features":[305]},{"name":"ERROR_DIF_BINDING_API_NOT_FOUND","features":[305]},{"name":"ERROR_DIF_IOCALLBACK_NOT_REPLACED","features":[305]},{"name":"ERROR_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[305]},{"name":"ERROR_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[305]},{"name":"ERROR_DIF_VOLATILE_INVALID_INFO","features":[305]},{"name":"ERROR_DIF_VOLATILE_NOT_ALLOWED","features":[305]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[305]},{"name":"ERROR_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[305]},{"name":"ERROR_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[305]},{"name":"ERROR_DIRECTORY","features":[305]},{"name":"ERROR_DIRECTORY_NOT_RM","features":[305]},{"name":"ERROR_DIRECTORY_NOT_SUPPORTED","features":[305]},{"name":"ERROR_DIRECT_ACCESS_HANDLE","features":[305]},{"name":"ERROR_DIR_EFS_DISALLOWED","features":[305]},{"name":"ERROR_DIR_NOT_EMPTY","features":[305]},{"name":"ERROR_DIR_NOT_ROOT","features":[305]},{"name":"ERROR_DISCARDED","features":[305]},{"name":"ERROR_DISK_CHANGE","features":[305]},{"name":"ERROR_DISK_CORRUPT","features":[305]},{"name":"ERROR_DISK_FULL","features":[305]},{"name":"ERROR_DISK_NOT_CSV_CAPABLE","features":[305]},{"name":"ERROR_DISK_OPERATION_FAILED","features":[305]},{"name":"ERROR_DISK_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_DISK_RECALIBRATE_FAILED","features":[305]},{"name":"ERROR_DISK_REPAIR_DISABLED","features":[305]},{"name":"ERROR_DISK_REPAIR_REDIRECTED","features":[305]},{"name":"ERROR_DISK_REPAIR_UNSUCCESSFUL","features":[305]},{"name":"ERROR_DISK_RESET_FAILED","features":[305]},{"name":"ERROR_DISK_RESOURCES_EXHAUSTED","features":[305]},{"name":"ERROR_DISK_TOO_FRAGMENTED","features":[305]},{"name":"ERROR_DI_BAD_PATH","features":[305]},{"name":"ERROR_DI_DONT_INSTALL","features":[305]},{"name":"ERROR_DI_DO_DEFAULT","features":[305]},{"name":"ERROR_DI_FUNCTION_OBSOLETE","features":[305]},{"name":"ERROR_DI_NOFILECOPY","features":[305]},{"name":"ERROR_DI_POSTPROCESSING_REQUIRED","features":[305]},{"name":"ERROR_DLL_INIT_FAILED","features":[305]},{"name":"ERROR_DLL_INIT_FAILED_LOGOFF","features":[305]},{"name":"ERROR_DLL_MIGHT_BE_INCOMPATIBLE","features":[305]},{"name":"ERROR_DLL_MIGHT_BE_INSECURE","features":[305]},{"name":"ERROR_DLL_NOT_FOUND","features":[305]},{"name":"ERROR_DLP_POLICY_DENIES_OPERATION","features":[305]},{"name":"ERROR_DLP_POLICY_SILENTLY_FAIL","features":[305]},{"name":"ERROR_DLP_POLICY_WARNS_AGAINST_OPERATION","features":[305]},{"name":"ERROR_DM_OPERATION_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DOMAIN_CONTROLLER_EXISTS","features":[305]},{"name":"ERROR_DOMAIN_CONTROLLER_NOT_FOUND","features":[305]},{"name":"ERROR_DOMAIN_CTRLR_CONFIG_ERROR","features":[305]},{"name":"ERROR_DOMAIN_EXISTS","features":[305]},{"name":"ERROR_DOMAIN_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION","features":[305]},{"name":"ERROR_DOMAIN_TRUST_INCONSISTENT","features":[305]},{"name":"ERROR_DOWNGRADE_DETECTED","features":[305]},{"name":"ERROR_DPL_NOT_SUPPORTED_FOR_USER","features":[305]},{"name":"ERROR_DRIVERS_LEAKING_LOCKED_PAGES","features":[305]},{"name":"ERROR_DRIVER_BLOCKED","features":[305]},{"name":"ERROR_DRIVER_CANCEL_TIMEOUT","features":[305]},{"name":"ERROR_DRIVER_DATABASE_ERROR","features":[305]},{"name":"ERROR_DRIVER_FAILED_PRIOR_UNLOAD","features":[305]},{"name":"ERROR_DRIVER_FAILED_SLEEP","features":[305]},{"name":"ERROR_DRIVER_INSTALL_BLOCKED","features":[305]},{"name":"ERROR_DRIVER_NONNATIVE","features":[305]},{"name":"ERROR_DRIVER_PROCESS_TERMINATED","features":[305]},{"name":"ERROR_DRIVER_STORE_ADD_FAILED","features":[305]},{"name":"ERROR_DRIVER_STORE_DELETE_FAILED","features":[305]},{"name":"ERROR_DRIVE_LOCKED","features":[305]},{"name":"ERROR_DRIVE_MEDIA_MISMATCH","features":[305]},{"name":"ERROR_DS_ADD_REPLICA_INHIBITED","features":[305]},{"name":"ERROR_DS_ADMIN_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DS_AFFECTS_MULTIPLE_DSAS","features":[305]},{"name":"ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[305]},{"name":"ERROR_DS_ALIASED_OBJ_MISSING","features":[305]},{"name":"ERROR_DS_ALIAS_DEREF_PROBLEM","features":[305]},{"name":"ERROR_DS_ALIAS_POINTS_TO_ALIAS","features":[305]},{"name":"ERROR_DS_ALIAS_PROBLEM","features":[305]},{"name":"ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[305]},{"name":"ERROR_DS_ATTRIBUTE_OWNED_BY_SAM","features":[305]},{"name":"ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[305]},{"name":"ERROR_DS_ATT_ALREADY_EXISTS","features":[305]},{"name":"ERROR_DS_ATT_IS_NOT_ON_OBJ","features":[305]},{"name":"ERROR_DS_ATT_NOT_DEF_FOR_CLASS","features":[305]},{"name":"ERROR_DS_ATT_NOT_DEF_IN_SCHEMA","features":[305]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_ID","features":[305]},{"name":"ERROR_DS_ATT_SCHEMA_REQ_SYNTAX","features":[305]},{"name":"ERROR_DS_ATT_VAL_ALREADY_EXISTS","features":[305]},{"name":"ERROR_DS_AUDIT_FAILURE","features":[305]},{"name":"ERROR_DS_AUTHORIZATION_FAILED","features":[305]},{"name":"ERROR_DS_AUTH_METHOD_NOT_SUPPORTED","features":[305]},{"name":"ERROR_DS_AUTH_UNKNOWN","features":[305]},{"name":"ERROR_DS_AUX_CLS_TEST_FAIL","features":[305]},{"name":"ERROR_DS_BACKLINK_WITHOUT_LINK","features":[305]},{"name":"ERROR_DS_BAD_ATT_SCHEMA_SYNTAX","features":[305]},{"name":"ERROR_DS_BAD_HIERARCHY_FILE","features":[305]},{"name":"ERROR_DS_BAD_INSTANCE_TYPE","features":[305]},{"name":"ERROR_DS_BAD_NAME_SYNTAX","features":[305]},{"name":"ERROR_DS_BAD_RDN_ATT_ID_SYNTAX","features":[305]},{"name":"ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED","features":[305]},{"name":"ERROR_DS_BUSY","features":[305]},{"name":"ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD","features":[305]},{"name":"ERROR_DS_CANT_ADD_ATT_VALUES","features":[305]},{"name":"ERROR_DS_CANT_ADD_SYSTEM_ONLY","features":[305]},{"name":"ERROR_DS_CANT_ADD_TO_GC","features":[305]},{"name":"ERROR_DS_CANT_CACHE_ATT","features":[305]},{"name":"ERROR_DS_CANT_CACHE_CLASS","features":[305]},{"name":"ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC","features":[305]},{"name":"ERROR_DS_CANT_CREATE_UNDER_SCHEMA","features":[305]},{"name":"ERROR_DS_CANT_DELETE","features":[305]},{"name":"ERROR_DS_CANT_DELETE_DSA_OBJ","features":[305]},{"name":"ERROR_DS_CANT_DEL_MASTER_CROSSREF","features":[305]},{"name":"ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC","features":[305]},{"name":"ERROR_DS_CANT_DEREF_ALIAS","features":[305]},{"name":"ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN","features":[305]},{"name":"ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF","features":[305]},{"name":"ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN","features":[305]},{"name":"ERROR_DS_CANT_FIND_DSA_OBJ","features":[305]},{"name":"ERROR_DS_CANT_FIND_EXPECTED_NC","features":[305]},{"name":"ERROR_DS_CANT_FIND_NC_IN_CACHE","features":[305]},{"name":"ERROR_DS_CANT_MIX_MASTER_AND_REPS","features":[305]},{"name":"ERROR_DS_CANT_MOD_OBJ_CLASS","features":[305]},{"name":"ERROR_DS_CANT_MOD_PRIMARYGROUPID","features":[305]},{"name":"ERROR_DS_CANT_MOD_SYSTEM_ONLY","features":[305]},{"name":"ERROR_DS_CANT_MOVE_ACCOUNT_GROUP","features":[305]},{"name":"ERROR_DS_CANT_MOVE_APP_BASIC_GROUP","features":[305]},{"name":"ERROR_DS_CANT_MOVE_APP_QUERY_GROUP","features":[305]},{"name":"ERROR_DS_CANT_MOVE_DELETED_OBJECT","features":[305]},{"name":"ERROR_DS_CANT_MOVE_RESOURCE_GROUP","features":[305]},{"name":"ERROR_DS_CANT_ON_NON_LEAF","features":[305]},{"name":"ERROR_DS_CANT_ON_RDN","features":[305]},{"name":"ERROR_DS_CANT_REMOVE_ATT_CACHE","features":[305]},{"name":"ERROR_DS_CANT_REMOVE_CLASS_CACHE","features":[305]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT","features":[305]},{"name":"ERROR_DS_CANT_REM_MISSING_ATT_VAL","features":[305]},{"name":"ERROR_DS_CANT_REPLACE_HIDDEN_REC","features":[305]},{"name":"ERROR_DS_CANT_RETRIEVE_ATTS","features":[305]},{"name":"ERROR_DS_CANT_RETRIEVE_CHILD","features":[305]},{"name":"ERROR_DS_CANT_RETRIEVE_DN","features":[305]},{"name":"ERROR_DS_CANT_RETRIEVE_INSTANCE","features":[305]},{"name":"ERROR_DS_CANT_RETRIEVE_SD","features":[305]},{"name":"ERROR_DS_CANT_START","features":[305]},{"name":"ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ","features":[305]},{"name":"ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS","features":[305]},{"name":"ERROR_DS_CHILDREN_EXIST","features":[305]},{"name":"ERROR_DS_CLASS_MUST_BE_CONCRETE","features":[305]},{"name":"ERROR_DS_CLASS_NOT_DSA","features":[305]},{"name":"ERROR_DS_CLIENT_LOOP","features":[305]},{"name":"ERROR_DS_CODE_INCONSISTENCY","features":[305]},{"name":"ERROR_DS_COMPARE_FALSE","features":[305]},{"name":"ERROR_DS_COMPARE_TRUE","features":[305]},{"name":"ERROR_DS_CONFIDENTIALITY_REQUIRED","features":[305]},{"name":"ERROR_DS_CONFIG_PARAM_MISSING","features":[305]},{"name":"ERROR_DS_CONSTRAINT_VIOLATION","features":[305]},{"name":"ERROR_DS_CONSTRUCTED_ATT_MOD","features":[305]},{"name":"ERROR_DS_CONTROL_NOT_FOUND","features":[305]},{"name":"ERROR_DS_COULDNT_CONTACT_FSMO","features":[305]},{"name":"ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE","features":[305]},{"name":"ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE","features":[305]},{"name":"ERROR_DS_COULDNT_UPDATE_SPNS","features":[305]},{"name":"ERROR_DS_COUNTING_AB_INDICES_FAILED","features":[305]},{"name":"ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD","features":[305]},{"name":"ERROR_DS_CROSS_DOM_MOVE_ERROR","features":[305]},{"name":"ERROR_DS_CROSS_NC_DN_RENAME","features":[305]},{"name":"ERROR_DS_CROSS_REF_BUSY","features":[305]},{"name":"ERROR_DS_CROSS_REF_EXISTS","features":[305]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE","features":[305]},{"name":"ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2","features":[305]},{"name":"ERROR_DS_DATABASE_ERROR","features":[305]},{"name":"ERROR_DS_DECODING_ERROR","features":[305]},{"name":"ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED","features":[305]},{"name":"ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST","features":[305]},{"name":"ERROR_DS_DIFFERENT_REPL_EPOCHS","features":[305]},{"name":"ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER","features":[305]},{"name":"ERROR_DS_DISALLOWED_NC_REDIRECT","features":[305]},{"name":"ERROR_DS_DNS_LOOKUP_FAILURE","features":[305]},{"name":"ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[305]},{"name":"ERROR_DS_DOMAIN_RENAME_IN_PROGRESS","features":[305]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_HIGH","features":[305]},{"name":"ERROR_DS_DOMAIN_VERSION_TOO_LOW","features":[305]},{"name":"ERROR_DS_DRA_ABANDON_SYNC","features":[305]},{"name":"ERROR_DS_DRA_ACCESS_DENIED","features":[305]},{"name":"ERROR_DS_DRA_BAD_DN","features":[305]},{"name":"ERROR_DS_DRA_BAD_INSTANCE_TYPE","features":[305]},{"name":"ERROR_DS_DRA_BAD_NC","features":[305]},{"name":"ERROR_DS_DRA_BUSY","features":[305]},{"name":"ERROR_DS_DRA_CONNECTION_FAILED","features":[305]},{"name":"ERROR_DS_DRA_CORRUPT_UTD_VECTOR","features":[305]},{"name":"ERROR_DS_DRA_DB_ERROR","features":[305]},{"name":"ERROR_DS_DRA_DN_EXISTS","features":[305]},{"name":"ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT","features":[305]},{"name":"ERROR_DS_DRA_EXTN_CONNECTION_FAILED","features":[305]},{"name":"ERROR_DS_DRA_GENERIC","features":[305]},{"name":"ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET","features":[305]},{"name":"ERROR_DS_DRA_INCONSISTENT_DIT","features":[305]},{"name":"ERROR_DS_DRA_INTERNAL_ERROR","features":[305]},{"name":"ERROR_DS_DRA_INVALID_PARAMETER","features":[305]},{"name":"ERROR_DS_DRA_MAIL_PROBLEM","features":[305]},{"name":"ERROR_DS_DRA_MISSING_KRBTGT_SECRET","features":[305]},{"name":"ERROR_DS_DRA_MISSING_PARENT","features":[305]},{"name":"ERROR_DS_DRA_NAME_COLLISION","features":[305]},{"name":"ERROR_DS_DRA_NOT_SUPPORTED","features":[305]},{"name":"ERROR_DS_DRA_NO_REPLICA","features":[305]},{"name":"ERROR_DS_DRA_OBJ_IS_REP_SOURCE","features":[305]},{"name":"ERROR_DS_DRA_OBJ_NC_MISMATCH","features":[305]},{"name":"ERROR_DS_DRA_OUT_OF_MEM","features":[305]},{"name":"ERROR_DS_DRA_OUT_SCHEDULE_WINDOW","features":[305]},{"name":"ERROR_DS_DRA_PREEMPTED","features":[305]},{"name":"ERROR_DS_DRA_RECYCLED_TARGET","features":[305]},{"name":"ERROR_DS_DRA_REF_ALREADY_EXISTS","features":[305]},{"name":"ERROR_DS_DRA_REF_NOT_FOUND","features":[305]},{"name":"ERROR_DS_DRA_REPL_PENDING","features":[305]},{"name":"ERROR_DS_DRA_RPC_CANCELLED","features":[305]},{"name":"ERROR_DS_DRA_SCHEMA_CONFLICT","features":[305]},{"name":"ERROR_DS_DRA_SCHEMA_INFO_SHIP","features":[305]},{"name":"ERROR_DS_DRA_SCHEMA_MISMATCH","features":[305]},{"name":"ERROR_DS_DRA_SECRETS_DENIED","features":[305]},{"name":"ERROR_DS_DRA_SHUTDOWN","features":[305]},{"name":"ERROR_DS_DRA_SINK_DISABLED","features":[305]},{"name":"ERROR_DS_DRA_SOURCE_DISABLED","features":[305]},{"name":"ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA","features":[305]},{"name":"ERROR_DS_DRA_SOURCE_REINSTALLED","features":[305]},{"name":"ERROR_DS_DRS_EXTENSIONS_CHANGED","features":[305]},{"name":"ERROR_DS_DSA_MUST_BE_INT_MASTER","features":[305]},{"name":"ERROR_DS_DST_DOMAIN_NOT_NATIVE","features":[305]},{"name":"ERROR_DS_DST_NC_MISMATCH","features":[305]},{"name":"ERROR_DS_DS_REQUIRED","features":[305]},{"name":"ERROR_DS_DUPLICATE_ID_FOUND","features":[305]},{"name":"ERROR_DS_DUP_LDAP_DISPLAY_NAME","features":[305]},{"name":"ERROR_DS_DUP_LINK_ID","features":[305]},{"name":"ERROR_DS_DUP_MAPI_ID","features":[305]},{"name":"ERROR_DS_DUP_MSDS_INTID","features":[305]},{"name":"ERROR_DS_DUP_OID","features":[305]},{"name":"ERROR_DS_DUP_RDN","features":[305]},{"name":"ERROR_DS_DUP_SCHEMA_ID_GUID","features":[305]},{"name":"ERROR_DS_ENCODING_ERROR","features":[305]},{"name":"ERROR_DS_EPOCH_MISMATCH","features":[305]},{"name":"ERROR_DS_EXISTING_AD_CHILD_NC","features":[305]},{"name":"ERROR_DS_EXISTS_IN_AUX_CLS","features":[305]},{"name":"ERROR_DS_EXISTS_IN_MAY_HAVE","features":[305]},{"name":"ERROR_DS_EXISTS_IN_MUST_HAVE","features":[305]},{"name":"ERROR_DS_EXISTS_IN_POSS_SUP","features":[305]},{"name":"ERROR_DS_EXISTS_IN_RDNATTID","features":[305]},{"name":"ERROR_DS_EXISTS_IN_SUB_CLS","features":[305]},{"name":"ERROR_DS_FILTER_UNKNOWN","features":[305]},{"name":"ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS","features":[305]},{"name":"ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[305]},{"name":"ERROR_DS_FOREST_VERSION_TOO_HIGH","features":[305]},{"name":"ERROR_DS_FOREST_VERSION_TOO_LOW","features":[305]},{"name":"ERROR_DS_GCVERIFY_ERROR","features":[305]},{"name":"ERROR_DS_GC_NOT_AVAILABLE","features":[305]},{"name":"ERROR_DS_GC_REQUIRED","features":[305]},{"name":"ERROR_DS_GENERIC_ERROR","features":[305]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[305]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[305]},{"name":"ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[305]},{"name":"ERROR_DS_GOVERNSID_MISSING","features":[305]},{"name":"ERROR_DS_GROUP_CONVERSION_ERROR","features":[305]},{"name":"ERROR_DS_HAVE_PRIMARY_MEMBERS","features":[305]},{"name":"ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED","features":[305]},{"name":"ERROR_DS_HIERARCHY_TABLE_TOO_DEEP","features":[305]},{"name":"ERROR_DS_HIGH_ADLDS_FFL","features":[305]},{"name":"ERROR_DS_HIGH_DSA_VERSION","features":[305]},{"name":"ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD","features":[305]},{"name":"ERROR_DS_ILLEGAL_MOD_OPERATION","features":[305]},{"name":"ERROR_DS_ILLEGAL_SUPERIOR","features":[305]},{"name":"ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION","features":[305]},{"name":"ERROR_DS_INAPPROPRIATE_AUTH","features":[305]},{"name":"ERROR_DS_INAPPROPRIATE_MATCHING","features":[305]},{"name":"ERROR_DS_INCOMPATIBLE_CONTROLS_USED","features":[305]},{"name":"ERROR_DS_INCOMPATIBLE_VERSION","features":[305]},{"name":"ERROR_DS_INCORRECT_ROLE_OWNER","features":[305]},{"name":"ERROR_DS_INIT_FAILURE","features":[305]},{"name":"ERROR_DS_INIT_FAILURE_CONSOLE","features":[305]},{"name":"ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE","features":[305]},{"name":"ERROR_DS_INSTALL_NO_SRC_SCH_VERSION","features":[305]},{"name":"ERROR_DS_INSTALL_SCHEMA_MISMATCH","features":[305]},{"name":"ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT","features":[305]},{"name":"ERROR_DS_INSUFF_ACCESS_RIGHTS","features":[305]},{"name":"ERROR_DS_INTERNAL_FAILURE","features":[305]},{"name":"ERROR_DS_INVALID_ATTRIBUTE_SYNTAX","features":[305]},{"name":"ERROR_DS_INVALID_DMD","features":[305]},{"name":"ERROR_DS_INVALID_DN_SYNTAX","features":[305]},{"name":"ERROR_DS_INVALID_GROUP_TYPE","features":[305]},{"name":"ERROR_DS_INVALID_LDAP_DISPLAY_NAME","features":[305]},{"name":"ERROR_DS_INVALID_NAME_FOR_SPN","features":[305]},{"name":"ERROR_DS_INVALID_ROLE_OWNER","features":[305]},{"name":"ERROR_DS_INVALID_SCRIPT","features":[305]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG","features":[305]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE","features":[305]},{"name":"ERROR_DS_INVALID_SEARCH_FLAG_TUPLE","features":[305]},{"name":"ERROR_DS_IS_LEAF","features":[305]},{"name":"ERROR_DS_KEY_NOT_UNIQUE","features":[305]},{"name":"ERROR_DS_LDAP_SEND_QUEUE_FULL","features":[305]},{"name":"ERROR_DS_LINK_ID_NOT_AVAILABLE","features":[305]},{"name":"ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[305]},{"name":"ERROR_DS_LOCAL_ERROR","features":[305]},{"name":"ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[305]},{"name":"ERROR_DS_LOOP_DETECT","features":[305]},{"name":"ERROR_DS_LOW_ADLDS_FFL","features":[305]},{"name":"ERROR_DS_LOW_DSA_VERSION","features":[305]},{"name":"ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4","features":[305]},{"name":"ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_DS_MAPI_ID_NOT_AVAILABLE","features":[305]},{"name":"ERROR_DS_MASTERDSA_REQUIRED","features":[305]},{"name":"ERROR_DS_MAX_OBJ_SIZE_EXCEEDED","features":[305]},{"name":"ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[305]},{"name":"ERROR_DS_MISSING_EXPECTED_ATT","features":[305]},{"name":"ERROR_DS_MISSING_FOREST_TRUST","features":[305]},{"name":"ERROR_DS_MISSING_FSMO_SETTINGS","features":[305]},{"name":"ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER","features":[305]},{"name":"ERROR_DS_MISSING_REQUIRED_ATT","features":[305]},{"name":"ERROR_DS_MISSING_SUPREF","features":[305]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG","features":[305]},{"name":"ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE","features":[305]},{"name":"ERROR_DS_MODIFYDN_WRONG_GRANDPARENT","features":[305]},{"name":"ERROR_DS_MUST_BE_RUN_ON_DST_DC","features":[305]},{"name":"ERROR_DS_NAME_ERROR_DOMAIN_ONLY","features":[305]},{"name":"ERROR_DS_NAME_ERROR_NOT_FOUND","features":[305]},{"name":"ERROR_DS_NAME_ERROR_NOT_UNIQUE","features":[305]},{"name":"ERROR_DS_NAME_ERROR_NO_MAPPING","features":[305]},{"name":"ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[305]},{"name":"ERROR_DS_NAME_ERROR_RESOLVING","features":[305]},{"name":"ERROR_DS_NAME_ERROR_TRUST_REFERRAL","features":[305]},{"name":"ERROR_DS_NAME_NOT_UNIQUE","features":[305]},{"name":"ERROR_DS_NAME_REFERENCE_INVALID","features":[305]},{"name":"ERROR_DS_NAME_TOO_LONG","features":[305]},{"name":"ERROR_DS_NAME_TOO_MANY_PARTS","features":[305]},{"name":"ERROR_DS_NAME_TYPE_UNKNOWN","features":[305]},{"name":"ERROR_DS_NAME_UNPARSEABLE","features":[305]},{"name":"ERROR_DS_NAME_VALUE_TOO_LONG","features":[305]},{"name":"ERROR_DS_NAMING_MASTER_GC","features":[305]},{"name":"ERROR_DS_NAMING_VIOLATION","features":[305]},{"name":"ERROR_DS_NCNAME_MISSING_CR_REF","features":[305]},{"name":"ERROR_DS_NCNAME_MUST_BE_NC","features":[305]},{"name":"ERROR_DS_NC_MUST_HAVE_NC_PARENT","features":[305]},{"name":"ERROR_DS_NC_STILL_HAS_DSAS","features":[305]},{"name":"ERROR_DS_NONEXISTENT_MAY_HAVE","features":[305]},{"name":"ERROR_DS_NONEXISTENT_MUST_HAVE","features":[305]},{"name":"ERROR_DS_NONEXISTENT_POSS_SUP","features":[305]},{"name":"ERROR_DS_NONSAFE_SCHEMA_CHANGE","features":[305]},{"name":"ERROR_DS_NON_ASQ_SEARCH","features":[305]},{"name":"ERROR_DS_NON_BASE_SEARCH","features":[305]},{"name":"ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX","features":[305]},{"name":"ERROR_DS_NOT_AN_OBJECT","features":[305]},{"name":"ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC","features":[305]},{"name":"ERROR_DS_NOT_CLOSEST","features":[305]},{"name":"ERROR_DS_NOT_INSTALLED","features":[305]},{"name":"ERROR_DS_NOT_ON_BACKLINK","features":[305]},{"name":"ERROR_DS_NOT_SUPPORTED","features":[305]},{"name":"ERROR_DS_NOT_SUPPORTED_SORT_ORDER","features":[305]},{"name":"ERROR_DS_NO_ATTRIBUTE_OR_VALUE","features":[305]},{"name":"ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN","features":[305]},{"name":"ERROR_DS_NO_CHAINED_EVAL","features":[305]},{"name":"ERROR_DS_NO_CHAINING","features":[305]},{"name":"ERROR_DS_NO_CHECKPOINT_WITH_PDC","features":[305]},{"name":"ERROR_DS_NO_CROSSREF_FOR_NC","features":[305]},{"name":"ERROR_DS_NO_DELETED_NAME","features":[305]},{"name":"ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[305]},{"name":"ERROR_DS_NO_MORE_RIDS","features":[305]},{"name":"ERROR_DS_NO_MSDS_INTID","features":[305]},{"name":"ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[305]},{"name":"ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[305]},{"name":"ERROR_DS_NO_NTDSA_OBJECT","features":[305]},{"name":"ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC","features":[305]},{"name":"ERROR_DS_NO_PARENT_OBJECT","features":[305]},{"name":"ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION","features":[305]},{"name":"ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA","features":[305]},{"name":"ERROR_DS_NO_REF_DOMAIN","features":[305]},{"name":"ERROR_DS_NO_REQUESTED_ATTS_FOUND","features":[305]},{"name":"ERROR_DS_NO_RESULTS_RETURNED","features":[305]},{"name":"ERROR_DS_NO_RIDS_ALLOCATED","features":[305]},{"name":"ERROR_DS_NO_SERVER_OBJECT","features":[305]},{"name":"ERROR_DS_NO_SUCH_OBJECT","features":[305]},{"name":"ERROR_DS_NO_TREE_DELETE_ABOVE_NC","features":[305]},{"name":"ERROR_DS_NTDSCRIPT_PROCESS_ERROR","features":[305]},{"name":"ERROR_DS_NTDSCRIPT_SYNTAX_ERROR","features":[305]},{"name":"ERROR_DS_OBJECT_BEING_REMOVED","features":[305]},{"name":"ERROR_DS_OBJECT_CLASS_REQUIRED","features":[305]},{"name":"ERROR_DS_OBJECT_RESULTS_TOO_LARGE","features":[305]},{"name":"ERROR_DS_OBJ_CLASS_NOT_DEFINED","features":[305]},{"name":"ERROR_DS_OBJ_CLASS_NOT_SUBCLASS","features":[305]},{"name":"ERROR_DS_OBJ_CLASS_VIOLATION","features":[305]},{"name":"ERROR_DS_OBJ_GUID_EXISTS","features":[305]},{"name":"ERROR_DS_OBJ_NOT_FOUND","features":[305]},{"name":"ERROR_DS_OBJ_STRING_NAME_EXISTS","features":[305]},{"name":"ERROR_DS_OBJ_TOO_LARGE","features":[305]},{"name":"ERROR_DS_OFFSET_RANGE_ERROR","features":[305]},{"name":"ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[305]},{"name":"ERROR_DS_OID_NOT_FOUND","features":[305]},{"name":"ERROR_DS_OPERATIONS_ERROR","features":[305]},{"name":"ERROR_DS_OUT_OF_SCOPE","features":[305]},{"name":"ERROR_DS_OUT_OF_VERSION_STORE","features":[305]},{"name":"ERROR_DS_PARAM_ERROR","features":[305]},{"name":"ERROR_DS_PARENT_IS_AN_ALIAS","features":[305]},{"name":"ERROR_DS_PDC_OPERATION_IN_PROGRESS","features":[305]},{"name":"ERROR_DS_PER_ATTRIBUTE_AUTHZ_FAILED_DURING_ADD","features":[305]},{"name":"ERROR_DS_POLICY_NOT_KNOWN","features":[305]},{"name":"ERROR_DS_PROTOCOL_ERROR","features":[305]},{"name":"ERROR_DS_RANGE_CONSTRAINT","features":[305]},{"name":"ERROR_DS_RDN_DOESNT_MATCH_SCHEMA","features":[305]},{"name":"ERROR_DS_RECALCSCHEMA_FAILED","features":[305]},{"name":"ERROR_DS_REFERRAL","features":[305]},{"name":"ERROR_DS_REFERRAL_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DS_REFUSING_FSMO_ROLES","features":[305]},{"name":"ERROR_DS_REMOTE_CROSSREF_OP_FAILED","features":[305]},{"name":"ERROR_DS_REPLICATOR_ONLY","features":[305]},{"name":"ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR","features":[305]},{"name":"ERROR_DS_REPL_LIFETIME_EXCEEDED","features":[305]},{"name":"ERROR_DS_RESERVED_LINK_ID","features":[305]},{"name":"ERROR_DS_RESERVED_MAPI_ID","features":[305]},{"name":"ERROR_DS_RIDMGR_DISABLED","features":[305]},{"name":"ERROR_DS_RIDMGR_INIT_ERROR","features":[305]},{"name":"ERROR_DS_ROLE_NOT_VERIFIED","features":[305]},{"name":"ERROR_DS_ROOT_CANT_BE_SUBREF","features":[305]},{"name":"ERROR_DS_ROOT_MUST_BE_NC","features":[305]},{"name":"ERROR_DS_ROOT_REQUIRES_CLASS_TOP","features":[305]},{"name":"ERROR_DS_SAM_INIT_FAILURE","features":[305]},{"name":"ERROR_DS_SAM_INIT_FAILURE_CONSOLE","features":[305]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY","features":[305]},{"name":"ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD","features":[305]},{"name":"ERROR_DS_SCHEMA_ALLOC_FAILED","features":[305]},{"name":"ERROR_DS_SCHEMA_NOT_LOADED","features":[305]},{"name":"ERROR_DS_SCHEMA_UPDATE_DISALLOWED","features":[305]},{"name":"ERROR_DS_SECURITY_CHECKING_ERROR","features":[305]},{"name":"ERROR_DS_SECURITY_ILLEGAL_MODIFY","features":[305]},{"name":"ERROR_DS_SEC_DESC_INVALID","features":[305]},{"name":"ERROR_DS_SEC_DESC_TOO_SHORT","features":[305]},{"name":"ERROR_DS_SEMANTIC_ATT_TEST","features":[305]},{"name":"ERROR_DS_SENSITIVE_GROUP_VIOLATION","features":[305]},{"name":"ERROR_DS_SERVER_DOWN","features":[305]},{"name":"ERROR_DS_SHUTTING_DOWN","features":[305]},{"name":"ERROR_DS_SINGLE_USER_MODE_FAILED","features":[305]},{"name":"ERROR_DS_SINGLE_VALUE_CONSTRAINT","features":[305]},{"name":"ERROR_DS_SIZELIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DS_SORT_CONTROL_MISSING","features":[305]},{"name":"ERROR_DS_SOURCE_AUDITING_NOT_ENABLED","features":[305]},{"name":"ERROR_DS_SOURCE_DOMAIN_IN_FOREST","features":[305]},{"name":"ERROR_DS_SPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[305]},{"name":"ERROR_DS_SRC_AND_DST_NC_IDENTICAL","features":[305]},{"name":"ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH","features":[305]},{"name":"ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER","features":[305]},{"name":"ERROR_DS_SRC_GUID_MISMATCH","features":[305]},{"name":"ERROR_DS_SRC_NAME_MISMATCH","features":[305]},{"name":"ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER","features":[305]},{"name":"ERROR_DS_SRC_SID_EXISTS_IN_FOREST","features":[305]},{"name":"ERROR_DS_STRING_SD_CONVERSION_FAILED","features":[305]},{"name":"ERROR_DS_STRONG_AUTH_REQUIRED","features":[305]},{"name":"ERROR_DS_SUBREF_MUST_HAVE_PARENT","features":[305]},{"name":"ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD","features":[305]},{"name":"ERROR_DS_SUB_CLS_TEST_FAIL","features":[305]},{"name":"ERROR_DS_SYNTAX_MISMATCH","features":[305]},{"name":"ERROR_DS_THREAD_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DS_TIMELIMIT_EXCEEDED","features":[305]},{"name":"ERROR_DS_TREE_DELETE_NOT_FINISHED","features":[305]},{"name":"ERROR_DS_UNABLE_TO_SURRENDER_ROLES","features":[305]},{"name":"ERROR_DS_UNAVAILABLE","features":[305]},{"name":"ERROR_DS_UNAVAILABLE_CRIT_EXTENSION","features":[305]},{"name":"ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED","features":[305]},{"name":"ERROR_DS_UNICODEPWD_NOT_IN_QUOTES","features":[305]},{"name":"ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[305]},{"name":"ERROR_DS_UNKNOWN_ERROR","features":[305]},{"name":"ERROR_DS_UNKNOWN_OPERATION","features":[305]},{"name":"ERROR_DS_UNWILLING_TO_PERFORM","features":[305]},{"name":"ERROR_DS_UPN_VALUE_NOT_UNIQUE_IN_FOREST","features":[305]},{"name":"ERROR_DS_USER_BUFFER_TO_SMALL","features":[305]},{"name":"ERROR_DS_VALUE_KEY_NOT_UNIQUE","features":[305]},{"name":"ERROR_DS_VERSION_CHECK_FAILURE","features":[305]},{"name":"ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL","features":[305]},{"name":"ERROR_DS_WRONG_LINKED_ATT_SYNTAX","features":[305]},{"name":"ERROR_DS_WRONG_OM_OBJ_CLASS","features":[305]},{"name":"ERROR_DUPLICATE_FOUND","features":[305]},{"name":"ERROR_DUPLICATE_PRIVILEGES","features":[305]},{"name":"ERROR_DUPLICATE_SERVICE_NAME","features":[305]},{"name":"ERROR_DUPLICATE_TAG","features":[305]},{"name":"ERROR_DUP_DOMAINNAME","features":[305]},{"name":"ERROR_DUP_NAME","features":[305]},{"name":"ERROR_DYNAMIC_CODE_BLOCKED","features":[305]},{"name":"ERROR_DYNLINK_FROM_INVALID_RING","features":[305]},{"name":"ERROR_EAS_DIDNT_FIT","features":[305]},{"name":"ERROR_EAS_NOT_SUPPORTED","features":[305]},{"name":"ERROR_EA_ACCESS_DENIED","features":[305]},{"name":"ERROR_EA_FILE_CORRUPT","features":[305]},{"name":"ERROR_EA_LIST_INCONSISTENT","features":[305]},{"name":"ERROR_EA_TABLE_FULL","features":[305]},{"name":"ERROR_EC_CIRCULAR_FORWARDING","features":[305]},{"name":"ERROR_EC_CREDSTORE_FULL","features":[305]},{"name":"ERROR_EC_CRED_NOT_FOUND","features":[305]},{"name":"ERROR_EC_LOG_DISABLED","features":[305]},{"name":"ERROR_EC_NO_ACTIVE_CHANNEL","features":[305]},{"name":"ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE","features":[305]},{"name":"ERROR_EDP_DPL_POLICY_CANT_BE_SATISFIED","features":[305]},{"name":"ERROR_EDP_POLICY_DENIES_OPERATION","features":[305]},{"name":"ERROR_EFS_ALG_BLOB_TOO_BIG","features":[305]},{"name":"ERROR_EFS_DISABLED","features":[305]},{"name":"ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[305]},{"name":"ERROR_EFS_SERVER_NOT_TRUSTED","features":[305]},{"name":"ERROR_EFS_VERSION_NOT_SUPPORT","features":[305]},{"name":"ERROR_ELEVATION_REQUIRED","features":[305]},{"name":"ERROR_EMPTY","features":[305]},{"name":"ERROR_ENCLAVE_FAILURE","features":[305]},{"name":"ERROR_ENCLAVE_NOT_TERMINATED","features":[305]},{"name":"ERROR_ENCLAVE_VIOLATION","features":[305]},{"name":"ERROR_ENCRYPTED_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_ENCRYPTED_IO_NOT_POSSIBLE","features":[305]},{"name":"ERROR_ENCRYPTING_METADATA_DISALLOWED","features":[305]},{"name":"ERROR_ENCRYPTION_DISABLED","features":[305]},{"name":"ERROR_ENCRYPTION_FAILED","features":[305]},{"name":"ERROR_ENCRYPTION_POLICY_DENIES_OPERATION","features":[305]},{"name":"ERROR_END_OF_MEDIA","features":[305]},{"name":"ERROR_ENLISTMENT_NOT_FOUND","features":[305]},{"name":"ERROR_ENLISTMENT_NOT_SUPERIOR","features":[305]},{"name":"ERROR_ENVVAR_NOT_FOUND","features":[305]},{"name":"ERROR_EOM_OVERFLOW","features":[305]},{"name":"ERROR_ERRORS_ENCOUNTERED","features":[305]},{"name":"ERROR_EVALUATION_EXPIRATION","features":[305]},{"name":"ERROR_EVENTLOG_CANT_START","features":[305]},{"name":"ERROR_EVENTLOG_FILE_CHANGED","features":[305]},{"name":"ERROR_EVENTLOG_FILE_CORRUPT","features":[305]},{"name":"ERROR_EVENT_DONE","features":[305]},{"name":"ERROR_EVENT_PENDING","features":[305]},{"name":"ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY","features":[305]},{"name":"ERROR_EVT_CHANNEL_CANNOT_ACTIVATE","features":[305]},{"name":"ERROR_EVT_CHANNEL_NOT_FOUND","features":[305]},{"name":"ERROR_EVT_CONFIGURATION_ERROR","features":[305]},{"name":"ERROR_EVT_EVENT_DEFINITION_NOT_FOUND","features":[305]},{"name":"ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND","features":[305]},{"name":"ERROR_EVT_FILTER_ALREADYSCOPED","features":[305]},{"name":"ERROR_EVT_FILTER_INVARG","features":[305]},{"name":"ERROR_EVT_FILTER_INVTEST","features":[305]},{"name":"ERROR_EVT_FILTER_INVTYPE","features":[305]},{"name":"ERROR_EVT_FILTER_NOTELTSET","features":[305]},{"name":"ERROR_EVT_FILTER_OUT_OF_RANGE","features":[305]},{"name":"ERROR_EVT_FILTER_PARSEERR","features":[305]},{"name":"ERROR_EVT_FILTER_TOO_COMPLEX","features":[305]},{"name":"ERROR_EVT_FILTER_UNEXPECTEDTOKEN","features":[305]},{"name":"ERROR_EVT_FILTER_UNSUPPORTEDOP","features":[305]},{"name":"ERROR_EVT_INVALID_CHANNEL_PATH","features":[305]},{"name":"ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE","features":[305]},{"name":"ERROR_EVT_INVALID_EVENT_DATA","features":[305]},{"name":"ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL","features":[305]},{"name":"ERROR_EVT_INVALID_PUBLISHER_NAME","features":[305]},{"name":"ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE","features":[305]},{"name":"ERROR_EVT_INVALID_QUERY","features":[305]},{"name":"ERROR_EVT_MALFORMED_XML_TEXT","features":[305]},{"name":"ERROR_EVT_MAX_INSERTS_REACHED","features":[305]},{"name":"ERROR_EVT_MESSAGE_ID_NOT_FOUND","features":[305]},{"name":"ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND","features":[305]},{"name":"ERROR_EVT_MESSAGE_NOT_FOUND","features":[305]},{"name":"ERROR_EVT_NON_VALIDATING_MSXML","features":[305]},{"name":"ERROR_EVT_PUBLISHER_DISABLED","features":[305]},{"name":"ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND","features":[305]},{"name":"ERROR_EVT_QUERY_RESULT_INVALID_POSITION","features":[305]},{"name":"ERROR_EVT_QUERY_RESULT_STALE","features":[305]},{"name":"ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL","features":[305]},{"name":"ERROR_EVT_UNRESOLVED_PARAMETER_INSERT","features":[305]},{"name":"ERROR_EVT_UNRESOLVED_VALUE_INSERT","features":[305]},{"name":"ERROR_EVT_VERSION_TOO_NEW","features":[305]},{"name":"ERROR_EVT_VERSION_TOO_OLD","features":[305]},{"name":"ERROR_EXCEPTION_IN_RESOURCE_CALL","features":[305]},{"name":"ERROR_EXCEPTION_IN_SERVICE","features":[305]},{"name":"ERROR_EXCL_SEM_ALREADY_OWNED","features":[305]},{"name":"ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY","features":[305]},{"name":"ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY","features":[305]},{"name":"ERROR_EXE_MACHINE_TYPE_MISMATCH","features":[305]},{"name":"ERROR_EXE_MARKED_INVALID","features":[305]},{"name":"ERROR_EXPECTED_SECTION_NAME","features":[305]},{"name":"ERROR_EXPIRED_HANDLE","features":[305]},{"name":"ERROR_EXTENDED_ERROR","features":[305]},{"name":"ERROR_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[305]},{"name":"ERROR_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[305]},{"name":"ERROR_EXTRANEOUS_INFORMATION","features":[305]},{"name":"ERROR_FAILED_DRIVER_ENTRY","features":[305]},{"name":"ERROR_FAILED_SERVICE_CONTROLLER_CONNECT","features":[305]},{"name":"ERROR_FAIL_FAST_EXCEPTION","features":[305]},{"name":"ERROR_FAIL_I24","features":[305]},{"name":"ERROR_FAIL_NOACTION_REBOOT","features":[305]},{"name":"ERROR_FAIL_REBOOT_INITIATED","features":[305]},{"name":"ERROR_FAIL_REBOOT_REQUIRED","features":[305]},{"name":"ERROR_FAIL_RESTART","features":[305]},{"name":"ERROR_FAIL_SHUTDOWN","features":[305]},{"name":"ERROR_FATAL_APP_EXIT","features":[305]},{"name":"ERROR_FILEMARK_DETECTED","features":[305]},{"name":"ERROR_FILENAME_EXCED_RANGE","features":[305]},{"name":"ERROR_FILEQUEUE_LOCKED","features":[305]},{"name":"ERROR_FILE_CHECKED_OUT","features":[305]},{"name":"ERROR_FILE_CORRUPT","features":[305]},{"name":"ERROR_FILE_ENCRYPTED","features":[305]},{"name":"ERROR_FILE_EXISTS","features":[305]},{"name":"ERROR_FILE_HANDLE_REVOKED","features":[305]},{"name":"ERROR_FILE_HASH_NOT_IN_CATALOG","features":[305]},{"name":"ERROR_FILE_IDENTITY_NOT_PERSISTENT","features":[305]},{"name":"ERROR_FILE_INVALID","features":[305]},{"name":"ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED","features":[305]},{"name":"ERROR_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[305]},{"name":"ERROR_FILE_NOT_ENCRYPTED","features":[305]},{"name":"ERROR_FILE_NOT_FOUND","features":[305]},{"name":"ERROR_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_FILE_OFFLINE","features":[305]},{"name":"ERROR_FILE_PROTECTED_UNDER_DPL","features":[305]},{"name":"ERROR_FILE_READ_ONLY","features":[305]},{"name":"ERROR_FILE_SHARE_RESOURCE_CONFLICT","features":[305]},{"name":"ERROR_FILE_SNAP_INVALID_PARAMETER","features":[305]},{"name":"ERROR_FILE_SNAP_IN_PROGRESS","features":[305]},{"name":"ERROR_FILE_SNAP_IO_NOT_COORDINATED","features":[305]},{"name":"ERROR_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[305]},{"name":"ERROR_FILE_SNAP_UNEXPECTED_ERROR","features":[305]},{"name":"ERROR_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_FILE_SYSTEM_LIMITATION","features":[305]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[305]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[305]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[305]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[305]},{"name":"ERROR_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[305]},{"name":"ERROR_FILE_TOO_LARGE","features":[305]},{"name":"ERROR_FIRMWARE_UPDATED","features":[305]},{"name":"ERROR_FLOATED_SECTION","features":[305]},{"name":"ERROR_FLOAT_MULTIPLE_FAULTS","features":[305]},{"name":"ERROR_FLOAT_MULTIPLE_TRAPS","features":[305]},{"name":"ERROR_FLOPPY_BAD_REGISTERS","features":[305]},{"name":"ERROR_FLOPPY_ID_MARK_NOT_FOUND","features":[305]},{"name":"ERROR_FLOPPY_UNKNOWN_ERROR","features":[305]},{"name":"ERROR_FLOPPY_VOLUME","features":[305]},{"name":"ERROR_FLOPPY_WRONG_CYLINDER","features":[305]},{"name":"ERROR_FLT_ALREADY_ENLISTED","features":[305]},{"name":"ERROR_FLT_CBDQ_DISABLED","features":[305]},{"name":"ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[305]},{"name":"ERROR_FLT_CONTEXT_ALREADY_DEFINED","features":[305]},{"name":"ERROR_FLT_CONTEXT_ALREADY_LINKED","features":[305]},{"name":"ERROR_FLT_DELETING_OBJECT","features":[305]},{"name":"ERROR_FLT_DISALLOW_FAST_IO","features":[305]},{"name":"ERROR_FLT_DO_NOT_ATTACH","features":[305]},{"name":"ERROR_FLT_DO_NOT_DETACH","features":[305]},{"name":"ERROR_FLT_DUPLICATE_ENTRY","features":[305]},{"name":"ERROR_FLT_FILTER_NOT_FOUND","features":[305]},{"name":"ERROR_FLT_FILTER_NOT_READY","features":[305]},{"name":"ERROR_FLT_INSTANCE_ALTITUDE_COLLISION","features":[305]},{"name":"ERROR_FLT_INSTANCE_NAME_COLLISION","features":[305]},{"name":"ERROR_FLT_INSTANCE_NOT_FOUND","features":[305]},{"name":"ERROR_FLT_INTERNAL_ERROR","features":[305]},{"name":"ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[305]},{"name":"ERROR_FLT_INVALID_CONTEXT_REGISTRATION","features":[305]},{"name":"ERROR_FLT_INVALID_NAME_REQUEST","features":[305]},{"name":"ERROR_FLT_IO_COMPLETE","features":[305]},{"name":"ERROR_FLT_MUST_BE_NONPAGED_POOL","features":[305]},{"name":"ERROR_FLT_NAME_CACHE_MISS","features":[305]},{"name":"ERROR_FLT_NOT_INITIALIZED","features":[305]},{"name":"ERROR_FLT_NOT_SAFE_TO_POST_OPERATION","features":[305]},{"name":"ERROR_FLT_NO_DEVICE_OBJECT","features":[305]},{"name":"ERROR_FLT_NO_HANDLER_DEFINED","features":[305]},{"name":"ERROR_FLT_NO_WAITER_FOR_REPLY","features":[305]},{"name":"ERROR_FLT_POST_OPERATION_CLEANUP","features":[305]},{"name":"ERROR_FLT_REGISTRATION_BUSY","features":[305]},{"name":"ERROR_FLT_VOLUME_ALREADY_MOUNTED","features":[305]},{"name":"ERROR_FLT_VOLUME_NOT_FOUND","features":[305]},{"name":"ERROR_FLT_WCOS_NOT_SUPPORTED","features":[305]},{"name":"ERROR_FORMS_AUTH_REQUIRED","features":[305]},{"name":"ERROR_FOUND_OUT_OF_SCOPE","features":[305]},{"name":"ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[305]},{"name":"ERROR_FS_DRIVER_REQUIRED","features":[305]},{"name":"ERROR_FS_GUID_MISMATCH","features":[305]},{"name":"ERROR_FS_METADATA_INCONSISTENT","features":[305]},{"name":"ERROR_FT_DI_SCAN_REQUIRED","features":[305]},{"name":"ERROR_FT_READ_FAILURE","features":[305]},{"name":"ERROR_FT_READ_FROM_COPY_FAILURE","features":[305]},{"name":"ERROR_FT_READ_RECOVERY_FROM_BACKUP","features":[305]},{"name":"ERROR_FT_WRITE_FAILURE","features":[305]},{"name":"ERROR_FT_WRITE_RECOVERY","features":[305]},{"name":"ERROR_FULLSCREEN_MODE","features":[305]},{"name":"ERROR_FULL_BACKUP","features":[305]},{"name":"ERROR_FUNCTION_FAILED","features":[305]},{"name":"ERROR_FUNCTION_NOT_CALLED","features":[305]},{"name":"ERROR_GDI_HANDLE_LEAK","features":[305]},{"name":"ERROR_GENERAL_SYNTAX","features":[305]},{"name":"ERROR_GENERIC_COMMAND_FAILED","features":[305]},{"name":"ERROR_GENERIC_NOT_MAPPED","features":[305]},{"name":"ERROR_GEN_FAILURE","features":[305]},{"name":"ERROR_GLOBAL_ONLY_HOOK","features":[305]},{"name":"ERROR_GPIO_CLIENT_INFORMATION_INVALID","features":[305]},{"name":"ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[305]},{"name":"ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[305]},{"name":"ERROR_GPIO_INVALID_REGISTRATION_PACKET","features":[305]},{"name":"ERROR_GPIO_OPERATION_DENIED","features":[305]},{"name":"ERROR_GPIO_VERSION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRACEFUL_DISCONNECT","features":[305]},{"name":"ERROR_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[305]},{"name":"ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[305]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[305]},{"name":"ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[305]},{"name":"ERROR_GRAPHICS_ADAPTER_WAS_RESET","features":[305]},{"name":"ERROR_GRAPHICS_ALLOCATION_BUSY","features":[305]},{"name":"ERROR_GRAPHICS_ALLOCATION_CLOSED","features":[305]},{"name":"ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[305]},{"name":"ERROR_GRAPHICS_ALLOCATION_INVALID","features":[305]},{"name":"ERROR_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[305]},{"name":"ERROR_GRAPHICS_CANNOTCOLORCONVERT","features":[305]},{"name":"ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[305]},{"name":"ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[305]},{"name":"ERROR_GRAPHICS_CANT_LOCK_MEMORY","features":[305]},{"name":"ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[305]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[305]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[305]},{"name":"ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[305]},{"name":"ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[305]},{"name":"ERROR_GRAPHICS_COPP_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_DATASET_IS_EMPTY","features":[305]},{"name":"ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE","features":[305]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_DATA","features":[305]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[305]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[305]},{"name":"ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[305]},{"name":"ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[305]},{"name":"ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[305]},{"name":"ERROR_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[305]},{"name":"ERROR_GRAPHICS_DRIVER_MISMATCH","features":[305]},{"name":"ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[305]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[305]},{"name":"ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[305]},{"name":"ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[305]},{"name":"ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[305]},{"name":"ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[305]},{"name":"ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[305]},{"name":"ERROR_GRAPHICS_I2C_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[305]},{"name":"ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[305]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[305]},{"name":"ERROR_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[305]},{"name":"ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[305]},{"name":"ERROR_GRAPHICS_INTERNAL_ERROR","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_ACTIVE_REGION","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_CLIENT_TYPE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_COLORBASIS","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_DRIVER_MODEL","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_FREQUENCY","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_GAMMA_RAMP","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_PIXELFORMAT","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_POINTER","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_STRIDE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_TOTAL_REGION","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[305]},{"name":"ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[305]},{"name":"ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[305]},{"name":"ERROR_GRAPHICS_LEADLINK_START_DEFERRED","features":[305]},{"name":"ERROR_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[305]},{"name":"ERROR_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[305]},{"name":"ERROR_GRAPHICS_MCA_INTERNAL_ERROR","features":[305]},{"name":"ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING","features":[305]},{"name":"ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[305]},{"name":"ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION","features":[305]},{"name":"ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH","features":[305]},{"name":"ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[305]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[305]},{"name":"ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION","features":[305]},{"name":"ERROR_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[305]},{"name":"ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[305]},{"name":"ERROR_GRAPHICS_MODE_NOT_IN_MODESET","features":[305]},{"name":"ERROR_GRAPHICS_MODE_NOT_PINNED","features":[305]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[305]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[305]},{"name":"ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[305]},{"name":"ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[305]},{"name":"ERROR_GRAPHICS_MONITOR_NOT_CONNECTED","features":[305]},{"name":"ERROR_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[305]},{"name":"ERROR_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[305]},{"name":"ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[305]},{"name":"ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[305]},{"name":"ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[305]},{"name":"ERROR_GRAPHICS_NO_ACTIVE_VIDPN","features":[305]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[305]},{"name":"ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[305]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[305]},{"name":"ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[305]},{"name":"ERROR_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[305]},{"name":"ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[305]},{"name":"ERROR_GRAPHICS_NO_PREFERRED_MODE","features":[305]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[305]},{"name":"ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[305]},{"name":"ERROR_GRAPHICS_NO_VIDEO_MEMORY","features":[305]},{"name":"ERROR_GRAPHICS_NO_VIDPNMGR","features":[305]},{"name":"ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[305]},{"name":"ERROR_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[305]},{"name":"ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[305]},{"name":"ERROR_GRAPHICS_OPM_INTERNAL_ERROR","features":[305]},{"name":"ERROR_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[305]},{"name":"ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[305]},{"name":"ERROR_GRAPHICS_OPM_INVALID_HANDLE","features":[305]},{"name":"ERROR_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[305]},{"name":"ERROR_GRAPHICS_OPM_INVALID_SRM","features":[305]},{"name":"ERROR_GRAPHICS_OPM_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST","features":[305]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[305]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[305]},{"name":"ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[305]},{"name":"ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[305]},{"name":"ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[305]},{"name":"ERROR_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[305]},{"name":"ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[305]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[305]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[305]},{"name":"ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS","features":[305]},{"name":"ERROR_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[305]},{"name":"ERROR_GRAPHICS_PARTIAL_DATA_POPULATED","features":[305]},{"name":"ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[305]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[305]},{"name":"ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[305]},{"name":"ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[305]},{"name":"ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[305]},{"name":"ERROR_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[305]},{"name":"ERROR_GRAPHICS_PRESENT_DENIED","features":[305]},{"name":"ERROR_GRAPHICS_PRESENT_INVALID_WINDOW","features":[305]},{"name":"ERROR_GRAPHICS_PRESENT_MODE_CHANGED","features":[305]},{"name":"ERROR_GRAPHICS_PRESENT_OCCLUDED","features":[305]},{"name":"ERROR_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[305]},{"name":"ERROR_GRAPHICS_PRESENT_UNOCCLUDED","features":[305]},{"name":"ERROR_GRAPHICS_PVP_HFS_FAILED","features":[305]},{"name":"ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[305]},{"name":"ERROR_GRAPHICS_RESOURCES_NOT_RELATED","features":[305]},{"name":"ERROR_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[305]},{"name":"ERROR_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[305]},{"name":"ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[305]},{"name":"ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[305]},{"name":"ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[305]},{"name":"ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[305]},{"name":"ERROR_GRAPHICS_STALE_MODESET","features":[305]},{"name":"ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[305]},{"name":"ERROR_GRAPHICS_START_DEFERRED","features":[305]},{"name":"ERROR_GRAPHICS_TARGET_ALREADY_IN_SET","features":[305]},{"name":"ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[305]},{"name":"ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[305]},{"name":"ERROR_GRAPHICS_TOO_MANY_REFERENCES","features":[305]},{"name":"ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[305]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_LATER","features":[305]},{"name":"ERROR_GRAPHICS_TRY_AGAIN_NOW","features":[305]},{"name":"ERROR_GRAPHICS_UAB_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[305]},{"name":"ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[305]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[305]},{"name":"ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_COMPOSITION_WINDOW_DPI_MESSAGE","features":[305]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_CREATE_SUPERWETINK_MESSAGE","features":[305]},{"name":"ERROR_GRAPHICS_VAIL_FAILED_TO_SEND_DESTROY_SUPERWETINK_MESSAGE","features":[305]},{"name":"ERROR_GRAPHICS_VAIL_STATE_CHANGED","features":[305]},{"name":"ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[305]},{"name":"ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[305]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[305]},{"name":"ERROR_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[305]},{"name":"ERROR_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[305]},{"name":"ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[305]},{"name":"ERROR_GROUPSET_CANT_PROVIDE","features":[305]},{"name":"ERROR_GROUPSET_NOT_AVAILABLE","features":[305]},{"name":"ERROR_GROUPSET_NOT_FOUND","features":[305]},{"name":"ERROR_GROUP_EXISTS","features":[305]},{"name":"ERROR_GROUP_NOT_AVAILABLE","features":[305]},{"name":"ERROR_GROUP_NOT_FOUND","features":[305]},{"name":"ERROR_GROUP_NOT_ONLINE","features":[305]},{"name":"ERROR_GUID_SUBSTITUTION_MADE","features":[305]},{"name":"ERROR_HANDLES_CLOSED","features":[305]},{"name":"ERROR_HANDLE_DISK_FULL","features":[305]},{"name":"ERROR_HANDLE_EOF","features":[305]},{"name":"ERROR_HANDLE_NO_LONGER_VALID","features":[305]},{"name":"ERROR_HANDLE_REVOKED","features":[305]},{"name":"ERROR_HASH_NOT_PRESENT","features":[305]},{"name":"ERROR_HASH_NOT_SUPPORTED","features":[305]},{"name":"ERROR_HAS_SYSTEM_CRITICAL_FILES","features":[305]},{"name":"ERROR_HEURISTIC_DAMAGE_POSSIBLE","features":[305]},{"name":"ERROR_HIBERNATED","features":[305]},{"name":"ERROR_HIBERNATION_FAILURE","features":[305]},{"name":"ERROR_HOOK_NEEDS_HMOD","features":[305]},{"name":"ERROR_HOOK_NOT_INSTALLED","features":[305]},{"name":"ERROR_HOOK_TYPE_NOT_ALLOWED","features":[305]},{"name":"ERROR_HOST_DOWN","features":[305]},{"name":"ERROR_HOST_NODE_NOT_AVAILABLE","features":[305]},{"name":"ERROR_HOST_NODE_NOT_GROUP_OWNER","features":[305]},{"name":"ERROR_HOST_NODE_NOT_RESOURCE_OWNER","features":[305]},{"name":"ERROR_HOST_UNREACHABLE","features":[305]},{"name":"ERROR_HOTKEY_ALREADY_REGISTERED","features":[305]},{"name":"ERROR_HOTKEY_NOT_REGISTERED","features":[305]},{"name":"ERROR_HUNG_DISPLAY_DRIVER_THREAD","features":[305]},{"name":"ERROR_HV_ACCESS_DENIED","features":[305]},{"name":"ERROR_HV_ACKNOWLEDGED","features":[305]},{"name":"ERROR_HV_CPUID_FEATURE_VALIDATION","features":[305]},{"name":"ERROR_HV_CPUID_XSAVE_FEATURE_VALIDATION","features":[305]},{"name":"ERROR_HV_DEVICE_NOT_IN_DOMAIN","features":[305]},{"name":"ERROR_HV_EVENT_BUFFER_ALREADY_FREED","features":[305]},{"name":"ERROR_HV_FEATURE_UNAVAILABLE","features":[305]},{"name":"ERROR_HV_INACTIVE","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_BUFFER","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_BUFFERS","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY","features":[305]},{"name":"ERROR_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[305]},{"name":"ERROR_HV_INVALID_ALIGNMENT","features":[305]},{"name":"ERROR_HV_INVALID_CONNECTION_ID","features":[305]},{"name":"ERROR_HV_INVALID_CPU_GROUP_ID","features":[305]},{"name":"ERROR_HV_INVALID_CPU_GROUP_STATE","features":[305]},{"name":"ERROR_HV_INVALID_DEVICE_ID","features":[305]},{"name":"ERROR_HV_INVALID_DEVICE_STATE","features":[305]},{"name":"ERROR_HV_INVALID_HYPERCALL_CODE","features":[305]},{"name":"ERROR_HV_INVALID_HYPERCALL_INPUT","features":[305]},{"name":"ERROR_HV_INVALID_LP_INDEX","features":[305]},{"name":"ERROR_HV_INVALID_PARAMETER","features":[305]},{"name":"ERROR_HV_INVALID_PARTITION_ID","features":[305]},{"name":"ERROR_HV_INVALID_PARTITION_STATE","features":[305]},{"name":"ERROR_HV_INVALID_PORT_ID","features":[305]},{"name":"ERROR_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[305]},{"name":"ERROR_HV_INVALID_REGISTER_VALUE","features":[305]},{"name":"ERROR_HV_INVALID_SAVE_RESTORE_STATE","features":[305]},{"name":"ERROR_HV_INVALID_SYNIC_STATE","features":[305]},{"name":"ERROR_HV_INVALID_VP_INDEX","features":[305]},{"name":"ERROR_HV_INVALID_VP_STATE","features":[305]},{"name":"ERROR_HV_INVALID_VTL_STATE","features":[305]},{"name":"ERROR_HV_MSR_ACCESS_FAILED","features":[305]},{"name":"ERROR_HV_NESTED_VM_EXIT","features":[305]},{"name":"ERROR_HV_NOT_ACKNOWLEDGED","features":[305]},{"name":"ERROR_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[305]},{"name":"ERROR_HV_NOT_PRESENT","features":[305]},{"name":"ERROR_HV_NO_DATA","features":[305]},{"name":"ERROR_HV_NO_RESOURCES","features":[305]},{"name":"ERROR_HV_NX_NOT_DETECTED","features":[305]},{"name":"ERROR_HV_OBJECT_IN_USE","features":[305]},{"name":"ERROR_HV_OPERATION_DENIED","features":[305]},{"name":"ERROR_HV_OPERATION_FAILED","features":[305]},{"name":"ERROR_HV_PAGE_REQUEST_INVALID","features":[305]},{"name":"ERROR_HV_PARTITION_TOO_DEEP","features":[305]},{"name":"ERROR_HV_PENDING_PAGE_REQUESTS","features":[305]},{"name":"ERROR_HV_PROCESSOR_STARTUP_TIMEOUT","features":[305]},{"name":"ERROR_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[305]},{"name":"ERROR_HV_SMX_ENABLED","features":[305]},{"name":"ERROR_HV_UNKNOWN_PROPERTY","features":[305]},{"name":"ERROR_HWNDS_HAVE_DIFF_PARENT","features":[305]},{"name":"ERROR_ICM_NOT_ENABLED","features":[305]},{"name":"ERROR_IDLE_DISCONNECTED","features":[305]},{"name":"ERROR_IEPORT_FULL","features":[305]},{"name":"ERROR_ILLEGAL_CHARACTER","features":[305]},{"name":"ERROR_ILLEGAL_DLL_RELOCATION","features":[305]},{"name":"ERROR_ILLEGAL_ELEMENT_ADDRESS","features":[305]},{"name":"ERROR_ILLEGAL_FLOAT_CONTEXT","features":[305]},{"name":"ERROR_ILL_FORMED_PASSWORD","features":[305]},{"name":"ERROR_IMAGE_AT_DIFFERENT_BASE","features":[305]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH","features":[305]},{"name":"ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[305]},{"name":"ERROR_IMAGE_NOT_AT_BASE","features":[305]},{"name":"ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[305]},{"name":"ERROR_IMPLEMENTATION_LIMIT","features":[305]},{"name":"ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE","features":[305]},{"name":"ERROR_INCOMPATIBLE_SERVICE_SID_TYPE","features":[305]},{"name":"ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[305]},{"name":"ERROR_INCORRECT_ACCOUNT_TYPE","features":[305]},{"name":"ERROR_INCORRECT_ADDRESS","features":[305]},{"name":"ERROR_INCORRECT_SIZE","features":[305]},{"name":"ERROR_INC_BACKUP","features":[305]},{"name":"ERROR_INDEX_ABSENT","features":[305]},{"name":"ERROR_INDEX_OUT_OF_BOUNDS","features":[305]},{"name":"ERROR_INDIGENOUS_TYPE","features":[305]},{"name":"ERROR_INDOUBT_TRANSACTIONS_EXIST","features":[305]},{"name":"ERROR_INFLOOP_IN_RELOC_CHAIN","features":[305]},{"name":"ERROR_INF_IN_USE_BY_DEVICES","features":[305]},{"name":"ERROR_INSTALL_ALREADY_RUNNING","features":[305]},{"name":"ERROR_INSTALL_CANCEL","features":[305]},{"name":"ERROR_INSTALL_DEREGISTRATION_FAILURE","features":[305]},{"name":"ERROR_INSTALL_FAILED","features":[305]},{"name":"ERROR_INSTALL_FAILURE","features":[305]},{"name":"ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING","features":[305]},{"name":"ERROR_INSTALL_FULLTRUST_HOSTRUNTIME_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[305]},{"name":"ERROR_INSTALL_INVALID_PACKAGE","features":[305]},{"name":"ERROR_INSTALL_INVALID_RELATED_SET_UPDATE","features":[305]},{"name":"ERROR_INSTALL_LANGUAGE_UNSUPPORTED","features":[305]},{"name":"ERROR_INSTALL_LOG_FAILURE","features":[305]},{"name":"ERROR_INSTALL_NETWORK_FAILURE","features":[305]},{"name":"ERROR_INSTALL_NOTUSED","features":[305]},{"name":"ERROR_INSTALL_OPEN_PACKAGE_FAILED","features":[305]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_APPLICATIONID_NOT_UNIQUE","features":[305]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE","features":[305]},{"name":"ERROR_INSTALL_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_FULLTRUST_CAPABILITY","features":[305]},{"name":"ERROR_INSTALL_OUT_OF_DISK_SPACE","features":[305]},{"name":"ERROR_INSTALL_PACKAGE_DOWNGRADE","features":[305]},{"name":"ERROR_INSTALL_PACKAGE_INVALID","features":[305]},{"name":"ERROR_INSTALL_PACKAGE_NOT_FOUND","features":[305]},{"name":"ERROR_INSTALL_PACKAGE_OPEN_FAILED","features":[305]},{"name":"ERROR_INSTALL_PACKAGE_REJECTED","features":[305]},{"name":"ERROR_INSTALL_PACKAGE_VERSION","features":[305]},{"name":"ERROR_INSTALL_PLATFORM_UNSUPPORTED","features":[305]},{"name":"ERROR_INSTALL_POLICY_FAILURE","features":[305]},{"name":"ERROR_INSTALL_PREREQUISITE_FAILED","features":[305]},{"name":"ERROR_INSTALL_REGISTRATION_FAILURE","features":[305]},{"name":"ERROR_INSTALL_REJECTED","features":[305]},{"name":"ERROR_INSTALL_REMOTE_DISALLOWED","features":[305]},{"name":"ERROR_INSTALL_REMOTE_PROHIBITED","features":[305]},{"name":"ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED","features":[305]},{"name":"ERROR_INSTALL_RESOLVE_HOSTRUNTIME_DEPENDENCY_FAILED","features":[305]},{"name":"ERROR_INSTALL_SERVICE_FAILURE","features":[305]},{"name":"ERROR_INSTALL_SERVICE_SAFEBOOT","features":[305]},{"name":"ERROR_INSTALL_SOURCE_ABSENT","features":[305]},{"name":"ERROR_INSTALL_SUSPEND","features":[305]},{"name":"ERROR_INSTALL_TEMP_UNWRITABLE","features":[305]},{"name":"ERROR_INSTALL_TRANSFORM_FAILURE","features":[305]},{"name":"ERROR_INSTALL_TRANSFORM_REJECTED","features":[305]},{"name":"ERROR_INSTALL_UI_FAILURE","features":[305]},{"name":"ERROR_INSTALL_USEREXIT","features":[305]},{"name":"ERROR_INSTALL_VOLUME_CORRUPT","features":[305]},{"name":"ERROR_INSTALL_VOLUME_NOT_EMPTY","features":[305]},{"name":"ERROR_INSTALL_VOLUME_OFFLINE","features":[305]},{"name":"ERROR_INSTALL_WRONG_PROCESSOR_ARCHITECTURE","features":[305]},{"name":"ERROR_INSTRUCTION_MISALIGNMENT","features":[305]},{"name":"ERROR_INSUFFICIENT_BUFFER","features":[305]},{"name":"ERROR_INSUFFICIENT_LOGON_INFO","features":[305]},{"name":"ERROR_INSUFFICIENT_POWER","features":[305]},{"name":"ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[305]},{"name":"ERROR_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[305]},{"name":"ERROR_INTERFACE_ALREADY_EXISTS","features":[305]},{"name":"ERROR_INTERFACE_CONFIGURATION","features":[305]},{"name":"ERROR_INTERFACE_CONNECTED","features":[305]},{"name":"ERROR_INTERFACE_DEVICE_ACTIVE","features":[305]},{"name":"ERROR_INTERFACE_DEVICE_REMOVED","features":[305]},{"name":"ERROR_INTERFACE_DISABLED","features":[305]},{"name":"ERROR_INTERFACE_DISCONNECTED","features":[305]},{"name":"ERROR_INTERFACE_HAS_NO_DEVICES","features":[305]},{"name":"ERROR_INTERFACE_NOT_CONNECTED","features":[305]},{"name":"ERROR_INTERFACE_UNREACHABLE","features":[305]},{"name":"ERROR_INTERMIXED_KERNEL_EA_OPERATION","features":[305]},{"name":"ERROR_INTERNAL_DB_CORRUPTION","features":[305]},{"name":"ERROR_INTERNAL_DB_ERROR","features":[305]},{"name":"ERROR_INTERNAL_ERROR","features":[305]},{"name":"ERROR_INTERRUPT_STILL_CONNECTED","features":[305]},{"name":"ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[305]},{"name":"ERROR_INVALID_ACCEL_HANDLE","features":[305]},{"name":"ERROR_INVALID_ACCESS","features":[305]},{"name":"ERROR_INVALID_ACCOUNT_NAME","features":[305]},{"name":"ERROR_INVALID_ACE_CONDITION","features":[305]},{"name":"ERROR_INVALID_ACL","features":[305]},{"name":"ERROR_INVALID_ADDRESS","features":[305]},{"name":"ERROR_INVALID_ATTRIBUTE_LENGTH","features":[305]},{"name":"ERROR_INVALID_AT_INTERRUPT_TIME","features":[305]},{"name":"ERROR_INVALID_BLOCK","features":[305]},{"name":"ERROR_INVALID_BLOCK_LENGTH","features":[305]},{"name":"ERROR_INVALID_CAP","features":[305]},{"name":"ERROR_INVALID_CATEGORY","features":[305]},{"name":"ERROR_INVALID_CLASS","features":[305]},{"name":"ERROR_INVALID_CLASS_INSTALLER","features":[305]},{"name":"ERROR_INVALID_CLEANER","features":[305]},{"name":"ERROR_INVALID_CLUSTER_IPV6_ADDRESS","features":[305]},{"name":"ERROR_INVALID_CMM","features":[305]},{"name":"ERROR_INVALID_COINSTALLER","features":[305]},{"name":"ERROR_INVALID_COLORINDEX","features":[305]},{"name":"ERROR_INVALID_COLORSPACE","features":[305]},{"name":"ERROR_INVALID_COMBOBOX_MESSAGE","features":[305]},{"name":"ERROR_INVALID_COMMAND_LINE","features":[305]},{"name":"ERROR_INVALID_COMPUTERNAME","features":[305]},{"name":"ERROR_INVALID_CONFIG_VALUE","features":[305]},{"name":"ERROR_INVALID_CRUNTIME_PARAMETER","features":[305]},{"name":"ERROR_INVALID_CURSOR_HANDLE","features":[305]},{"name":"ERROR_INVALID_DATA","features":[305]},{"name":"ERROR_INVALID_DATATYPE","features":[305]},{"name":"ERROR_INVALID_DEVICE_OBJECT_PARAMETER","features":[305]},{"name":"ERROR_INVALID_DEVINST_NAME","features":[305]},{"name":"ERROR_INVALID_DLL","features":[305]},{"name":"ERROR_INVALID_DOMAINNAME","features":[305]},{"name":"ERROR_INVALID_DOMAIN_ROLE","features":[305]},{"name":"ERROR_INVALID_DOMAIN_STATE","features":[305]},{"name":"ERROR_INVALID_DRIVE","features":[305]},{"name":"ERROR_INVALID_DRIVE_OBJECT","features":[305]},{"name":"ERROR_INVALID_DWP_HANDLE","features":[305]},{"name":"ERROR_INVALID_EA_HANDLE","features":[305]},{"name":"ERROR_INVALID_EA_NAME","features":[305]},{"name":"ERROR_INVALID_EDIT_HEIGHT","features":[305]},{"name":"ERROR_INVALID_ENVIRONMENT","features":[305]},{"name":"ERROR_INVALID_EVENTNAME","features":[305]},{"name":"ERROR_INVALID_EVENT_COUNT","features":[305]},{"name":"ERROR_INVALID_EXCEPTION_HANDLER","features":[305]},{"name":"ERROR_INVALID_EXE_SIGNATURE","features":[305]},{"name":"ERROR_INVALID_FIELD","features":[305]},{"name":"ERROR_INVALID_FIELD_IN_PARAMETER_LIST","features":[305]},{"name":"ERROR_INVALID_FILTER_DRIVER","features":[305]},{"name":"ERROR_INVALID_FILTER_PROC","features":[305]},{"name":"ERROR_INVALID_FLAGS","features":[305]},{"name":"ERROR_INVALID_FLAG_NUMBER","features":[305]},{"name":"ERROR_INVALID_FORM_NAME","features":[305]},{"name":"ERROR_INVALID_FORM_SIZE","features":[305]},{"name":"ERROR_INVALID_FUNCTION","features":[305]},{"name":"ERROR_INVALID_GROUPNAME","features":[305]},{"name":"ERROR_INVALID_GROUP_ATTRIBUTES","features":[305]},{"name":"ERROR_INVALID_GW_COMMAND","features":[305]},{"name":"ERROR_INVALID_HANDLE","features":[305]},{"name":"ERROR_INVALID_HANDLE_STATE","features":[305]},{"name":"ERROR_INVALID_HOOK_FILTER","features":[305]},{"name":"ERROR_INVALID_HOOK_HANDLE","features":[305]},{"name":"ERROR_INVALID_HWPROFILE","features":[305]},{"name":"ERROR_INVALID_HW_PROFILE","features":[305]},{"name":"ERROR_INVALID_ICON_HANDLE","features":[305]},{"name":"ERROR_INVALID_ID_AUTHORITY","features":[305]},{"name":"ERROR_INVALID_IMAGE_HASH","features":[305]},{"name":"ERROR_INVALID_IMPORT_OF_NON_DLL","features":[305]},{"name":"ERROR_INVALID_INDEX","features":[305]},{"name":"ERROR_INVALID_INF_LOGCONFIG","features":[305]},{"name":"ERROR_INVALID_KERNEL_INFO_VERSION","features":[305]},{"name":"ERROR_INVALID_KEYBOARD_HANDLE","features":[305]},{"name":"ERROR_INVALID_LABEL","features":[305]},{"name":"ERROR_INVALID_LB_MESSAGE","features":[305]},{"name":"ERROR_INVALID_LDT_DESCRIPTOR","features":[305]},{"name":"ERROR_INVALID_LDT_OFFSET","features":[305]},{"name":"ERROR_INVALID_LDT_SIZE","features":[305]},{"name":"ERROR_INVALID_LEVEL","features":[305]},{"name":"ERROR_INVALID_LIBRARY","features":[305]},{"name":"ERROR_INVALID_LIST_FORMAT","features":[305]},{"name":"ERROR_INVALID_LOCK_RANGE","features":[305]},{"name":"ERROR_INVALID_LOGON_HOURS","features":[305]},{"name":"ERROR_INVALID_LOGON_TYPE","features":[305]},{"name":"ERROR_INVALID_MACHINENAME","features":[305]},{"name":"ERROR_INVALID_MEDIA","features":[305]},{"name":"ERROR_INVALID_MEDIA_POOL","features":[305]},{"name":"ERROR_INVALID_MEMBER","features":[305]},{"name":"ERROR_INVALID_MENU_HANDLE","features":[305]},{"name":"ERROR_INVALID_MESSAGE","features":[305]},{"name":"ERROR_INVALID_MESSAGEDEST","features":[305]},{"name":"ERROR_INVALID_MESSAGENAME","features":[305]},{"name":"ERROR_INVALID_MINALLOCSIZE","features":[305]},{"name":"ERROR_INVALID_MODULETYPE","features":[305]},{"name":"ERROR_INVALID_MONITOR_HANDLE","features":[305]},{"name":"ERROR_INVALID_MSGBOX_STYLE","features":[305]},{"name":"ERROR_INVALID_NAME","features":[305]},{"name":"ERROR_INVALID_NETNAME","features":[305]},{"name":"ERROR_INVALID_OPERATION","features":[305]},{"name":"ERROR_INVALID_OPERATION_ON_QUORUM","features":[305]},{"name":"ERROR_INVALID_OPLOCK_PROTOCOL","features":[305]},{"name":"ERROR_INVALID_ORDINAL","features":[305]},{"name":"ERROR_INVALID_OWNER","features":[305]},{"name":"ERROR_INVALID_PACKAGE_SID_LENGTH","features":[305]},{"name":"ERROR_INVALID_PACKET","features":[305]},{"name":"ERROR_INVALID_PACKET_LENGTH_OR_ID","features":[305]},{"name":"ERROR_INVALID_PARAMETER","features":[305]},{"name":"ERROR_INVALID_PASSWORD","features":[305]},{"name":"ERROR_INVALID_PASSWORDNAME","features":[305]},{"name":"ERROR_INVALID_PATCH_XML","features":[305]},{"name":"ERROR_INVALID_PEP_INFO_VERSION","features":[305]},{"name":"ERROR_INVALID_PIXEL_FORMAT","features":[305]},{"name":"ERROR_INVALID_PLUGPLAY_DEVICE_PATH","features":[305]},{"name":"ERROR_INVALID_PORT_ATTRIBUTES","features":[305]},{"name":"ERROR_INVALID_PRIMARY_GROUP","features":[305]},{"name":"ERROR_INVALID_PRINTER_COMMAND","features":[305]},{"name":"ERROR_INVALID_PRINTER_DRIVER_MANIFEST","features":[305]},{"name":"ERROR_INVALID_PRINTER_NAME","features":[305]},{"name":"ERROR_INVALID_PRINTER_STATE","features":[305]},{"name":"ERROR_INVALID_PRINT_MONITOR","features":[305]},{"name":"ERROR_INVALID_PRIORITY","features":[305]},{"name":"ERROR_INVALID_PROFILE","features":[305]},{"name":"ERROR_INVALID_PROPPAGE_PROVIDER","features":[305]},{"name":"ERROR_INVALID_QUOTA_LOWER","features":[305]},{"name":"ERROR_INVALID_RADIUS_RESPONSE","features":[305]},{"name":"ERROR_INVALID_REFERENCE_STRING","features":[305]},{"name":"ERROR_INVALID_REG_PROPERTY","features":[305]},{"name":"ERROR_INVALID_REPARSE_DATA","features":[305]},{"name":"ERROR_INVALID_RUNLEVEL_SETTING","features":[305]},{"name":"ERROR_INVALID_SCROLLBAR_RANGE","features":[305]},{"name":"ERROR_INVALID_SECURITY_DESCR","features":[305]},{"name":"ERROR_INVALID_SEGDPL","features":[305]},{"name":"ERROR_INVALID_SEGMENT_NUMBER","features":[305]},{"name":"ERROR_INVALID_SEPARATOR_FILE","features":[305]},{"name":"ERROR_INVALID_SERVER_STATE","features":[305]},{"name":"ERROR_INVALID_SERVICENAME","features":[305]},{"name":"ERROR_INVALID_SERVICE_ACCOUNT","features":[305]},{"name":"ERROR_INVALID_SERVICE_CONTROL","features":[305]},{"name":"ERROR_INVALID_SERVICE_LOCK","features":[305]},{"name":"ERROR_INVALID_SHARENAME","features":[305]},{"name":"ERROR_INVALID_SHOWWIN_COMMAND","features":[305]},{"name":"ERROR_INVALID_SID","features":[305]},{"name":"ERROR_INVALID_SIGNAL_NUMBER","features":[305]},{"name":"ERROR_INVALID_SIGNATURE","features":[305]},{"name":"ERROR_INVALID_SIGNATURE_LENGTH","features":[305]},{"name":"ERROR_INVALID_SPI_VALUE","features":[305]},{"name":"ERROR_INVALID_STACKSEG","features":[305]},{"name":"ERROR_INVALID_STAGED_SIGNATURE","features":[305]},{"name":"ERROR_INVALID_STARTING_CODESEG","features":[305]},{"name":"ERROR_INVALID_STATE","features":[305]},{"name":"ERROR_INVALID_SUB_AUTHORITY","features":[305]},{"name":"ERROR_INVALID_TABLE","features":[305]},{"name":"ERROR_INVALID_TARGET","features":[305]},{"name":"ERROR_INVALID_TARGET_HANDLE","features":[305]},{"name":"ERROR_INVALID_TASK_INDEX","features":[305]},{"name":"ERROR_INVALID_TASK_NAME","features":[305]},{"name":"ERROR_INVALID_THREAD_ID","features":[305]},{"name":"ERROR_INVALID_TIME","features":[305]},{"name":"ERROR_INVALID_TOKEN","features":[305]},{"name":"ERROR_INVALID_TRANSACTION","features":[305]},{"name":"ERROR_INVALID_TRANSFORM","features":[305]},{"name":"ERROR_INVALID_UNWIND_TARGET","features":[305]},{"name":"ERROR_INVALID_USER_BUFFER","features":[305]},{"name":"ERROR_INVALID_USER_PRINCIPAL_NAME","features":[305]},{"name":"ERROR_INVALID_VARIANT","features":[305]},{"name":"ERROR_INVALID_VERIFY_SWITCH","features":[305]},{"name":"ERROR_INVALID_WINDOW_HANDLE","features":[305]},{"name":"ERROR_INVALID_WINDOW_STYLE","features":[305]},{"name":"ERROR_INVALID_WORKSTATION","features":[305]},{"name":"ERROR_IN_WOW64","features":[305]},{"name":"ERROR_IOPL_NOT_ENABLED","features":[305]},{"name":"ERROR_IO_DEVICE","features":[305]},{"name":"ERROR_IO_INCOMPLETE","features":[305]},{"name":"ERROR_IO_PENDING","features":[305]},{"name":"ERROR_IO_PREEMPTED","features":[305]},{"name":"ERROR_IO_PRIVILEGE_FAILED","features":[305]},{"name":"ERROR_IO_REISSUE_AS_CACHED","features":[305]},{"name":"ERROR_IPSEC_AUTH_FIREWALL_DROP","features":[305]},{"name":"ERROR_IPSEC_BAD_SPI","features":[305]},{"name":"ERROR_IPSEC_CLEAR_TEXT_DROP","features":[305]},{"name":"ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_DOSP_BLOCK","features":[305]},{"name":"ERROR_IPSEC_DOSP_INVALID_PACKET","features":[305]},{"name":"ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[305]},{"name":"ERROR_IPSEC_DOSP_MAX_ENTRIES","features":[305]},{"name":"ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[305]},{"name":"ERROR_IPSEC_DOSP_NOT_INSTALLED","features":[305]},{"name":"ERROR_IPSEC_DOSP_RECEIVED_MULTICAST","features":[305]},{"name":"ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[305]},{"name":"ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED","features":[305]},{"name":"ERROR_IPSEC_IKE_ATTRIB_FAIL","features":[305]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE","features":[305]},{"name":"ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY","features":[305]},{"name":"ERROR_IPSEC_IKE_AUTH_FAIL","features":[305]},{"name":"ERROR_IPSEC_IKE_BENIGN_REINIT","features":[305]},{"name":"ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH","features":[305]},{"name":"ERROR_IPSEC_IKE_CGA_AUTH_FAILED","features":[305]},{"name":"ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS","features":[305]},{"name":"ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED","features":[305]},{"name":"ERROR_IPSEC_IKE_CRL_FAILED","features":[305]},{"name":"ERROR_IPSEC_IKE_DECRYPT","features":[305]},{"name":"ERROR_IPSEC_IKE_DH_FAIL","features":[305]},{"name":"ERROR_IPSEC_IKE_DH_FAILURE","features":[305]},{"name":"ERROR_IPSEC_IKE_DOS_COOKIE_SENT","features":[305]},{"name":"ERROR_IPSEC_IKE_DROP_NO_RESPONSE","features":[305]},{"name":"ERROR_IPSEC_IKE_ENCRYPT","features":[305]},{"name":"ERROR_IPSEC_IKE_ERROR","features":[305]},{"name":"ERROR_IPSEC_IKE_FAILQUERYSSP","features":[305]},{"name":"ERROR_IPSEC_IKE_FAILSSPINIT","features":[305]},{"name":"ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR","features":[305]},{"name":"ERROR_IPSEC_IKE_GETSPIFAIL","features":[305]},{"name":"ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_ALG","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_CERT_TYPE","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_COOKIE","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_FILTER","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_GROUP","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_ALG","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_HASH_SIZE","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_HEADER","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_KEY_USAGE","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_MM_FOR_QM","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_PAYLOAD","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_POLICY","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_SIG","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_SIGNATURE","features":[305]},{"name":"ERROR_IPSEC_IKE_INVALID_SITUATION","features":[305]},{"name":"ERROR_IPSEC_IKE_KERBEROS_ERROR","features":[305]},{"name":"ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL","features":[305]},{"name":"ERROR_IPSEC_IKE_LOAD_FAILED","features":[305]},{"name":"ERROR_IPSEC_IKE_LOAD_SOFT_SA","features":[305]},{"name":"ERROR_IPSEC_IKE_MM_ACQUIRE_DROP","features":[305]},{"name":"ERROR_IPSEC_IKE_MM_DELAY_DROP","features":[305]},{"name":"ERROR_IPSEC_IKE_MM_EXPIRED","features":[305]},{"name":"ERROR_IPSEC_IKE_MM_LIMIT","features":[305]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_DISABLED","features":[305]},{"name":"ERROR_IPSEC_IKE_NEGOTIATION_PENDING","features":[305]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_BEGIN","features":[305]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_END","features":[305]},{"name":"ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END","features":[305]},{"name":"ERROR_IPSEC_IKE_NOTCBPRIV","features":[305]},{"name":"ERROR_IPSEC_IKE_NO_CERT","features":[305]},{"name":"ERROR_IPSEC_IKE_NO_MM_POLICY","features":[305]},{"name":"ERROR_IPSEC_IKE_NO_PEER_CERT","features":[305]},{"name":"ERROR_IPSEC_IKE_NO_POLICY","features":[305]},{"name":"ERROR_IPSEC_IKE_NO_PRIVATE_KEY","features":[305]},{"name":"ERROR_IPSEC_IKE_NO_PUBLIC_KEY","features":[305]},{"name":"ERROR_IPSEC_IKE_OUT_OF_MEMORY","features":[305]},{"name":"ERROR_IPSEC_IKE_PEER_CRL_FAILED","features":[305]},{"name":"ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE","features":[305]},{"name":"ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID","features":[305]},{"name":"ERROR_IPSEC_IKE_POLICY_CHANGE","features":[305]},{"name":"ERROR_IPSEC_IKE_POLICY_MATCH","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_DELETE","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_HASH","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_ID","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_KE","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NATOA","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NONCE","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_PROP","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SA","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_SIG","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_TRANS","features":[305]},{"name":"ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR","features":[305]},{"name":"ERROR_IPSEC_IKE_QM_ACQUIRE_DROP","features":[305]},{"name":"ERROR_IPSEC_IKE_QM_DELAY_DROP","features":[305]},{"name":"ERROR_IPSEC_IKE_QM_EXPIRED","features":[305]},{"name":"ERROR_IPSEC_IKE_QM_LIMIT","features":[305]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_MM","features":[305]},{"name":"ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM","features":[305]},{"name":"ERROR_IPSEC_IKE_RATELIMIT_DROP","features":[305]},{"name":"ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING","features":[305]},{"name":"ERROR_IPSEC_IKE_RPC_DELETE","features":[305]},{"name":"ERROR_IPSEC_IKE_SA_DELETED","features":[305]},{"name":"ERROR_IPSEC_IKE_SA_REAPED","features":[305]},{"name":"ERROR_IPSEC_IKE_SECLOADFAIL","features":[305]},{"name":"ERROR_IPSEC_IKE_SHUTTING_DOWN","features":[305]},{"name":"ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY","features":[305]},{"name":"ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN","features":[305]},{"name":"ERROR_IPSEC_IKE_SRVACQFAIL","features":[305]},{"name":"ERROR_IPSEC_IKE_SRVQUERYCRED","features":[305]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE","features":[305]},{"name":"ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE","features":[305]},{"name":"ERROR_IPSEC_IKE_TIMED_OUT","features":[305]},{"name":"ERROR_IPSEC_IKE_TOO_MANY_FILTERS","features":[305]},{"name":"ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID","features":[305]},{"name":"ERROR_IPSEC_IKE_UNKNOWN_DOI","features":[305]},{"name":"ERROR_IPSEC_IKE_UNSUPPORTED_ID","features":[305]},{"name":"ERROR_IPSEC_INTEGRITY_CHECK_FAILED","features":[305]},{"name":"ERROR_IPSEC_INVALID_PACKET","features":[305]},{"name":"ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING","features":[305]},{"name":"ERROR_IPSEC_MM_AUTH_EXISTS","features":[305]},{"name":"ERROR_IPSEC_MM_AUTH_IN_USE","features":[305]},{"name":"ERROR_IPSEC_MM_AUTH_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_MM_AUTH_PENDING_DELETION","features":[305]},{"name":"ERROR_IPSEC_MM_FILTER_EXISTS","features":[305]},{"name":"ERROR_IPSEC_MM_FILTER_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_MM_FILTER_PENDING_DELETION","features":[305]},{"name":"ERROR_IPSEC_MM_POLICY_EXISTS","features":[305]},{"name":"ERROR_IPSEC_MM_POLICY_IN_USE","features":[305]},{"name":"ERROR_IPSEC_MM_POLICY_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_MM_POLICY_PENDING_DELETION","features":[305]},{"name":"ERROR_IPSEC_QM_POLICY_EXISTS","features":[305]},{"name":"ERROR_IPSEC_QM_POLICY_IN_USE","features":[305]},{"name":"ERROR_IPSEC_QM_POLICY_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_QM_POLICY_PENDING_DELETION","features":[305]},{"name":"ERROR_IPSEC_REPLAY_CHECK_FAILED","features":[305]},{"name":"ERROR_IPSEC_SA_LIFETIME_EXPIRED","features":[305]},{"name":"ERROR_IPSEC_THROTTLE_DROP","features":[305]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_EXISTS","features":[305]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION","features":[305]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_EXISTS","features":[305]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND","features":[305]},{"name":"ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION","features":[305]},{"name":"ERROR_IPSEC_WRONG_SA","features":[305]},{"name":"ERROR_IP_ADDRESS_CONFLICT1","features":[305]},{"name":"ERROR_IP_ADDRESS_CONFLICT2","features":[305]},{"name":"ERROR_IRQ_BUSY","features":[305]},{"name":"ERROR_IS_JOINED","features":[305]},{"name":"ERROR_IS_JOIN_PATH","features":[305]},{"name":"ERROR_IS_JOIN_TARGET","features":[305]},{"name":"ERROR_IS_SUBSTED","features":[305]},{"name":"ERROR_IS_SUBST_PATH","features":[305]},{"name":"ERROR_IS_SUBST_TARGET","features":[305]},{"name":"ERROR_ITERATED_DATA_EXCEEDS_64k","features":[305]},{"name":"ERROR_JOB_NO_CONTAINER","features":[305]},{"name":"ERROR_JOIN_TO_JOIN","features":[305]},{"name":"ERROR_JOIN_TO_SUBST","features":[305]},{"name":"ERROR_JOURNAL_DELETE_IN_PROGRESS","features":[305]},{"name":"ERROR_JOURNAL_ENTRY_DELETED","features":[305]},{"name":"ERROR_JOURNAL_HOOK_SET","features":[305]},{"name":"ERROR_JOURNAL_NOT_ACTIVE","features":[305]},{"name":"ERROR_KERNEL_APC","features":[305]},{"name":"ERROR_KEY_DELETED","features":[305]},{"name":"ERROR_KEY_DOES_NOT_EXIST","features":[305]},{"name":"ERROR_KEY_HAS_CHILDREN","features":[305]},{"name":"ERROR_KM_DRIVER_BLOCKED","features":[305]},{"name":"ERROR_LABEL_TOO_LONG","features":[305]},{"name":"ERROR_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[305]},{"name":"ERROR_LAPS_LEGACY_SCHEMA_MISSING","features":[305]},{"name":"ERROR_LAPS_SCHEMA_MISSING","features":[305]},{"name":"ERROR_LAST_ADMIN","features":[305]},{"name":"ERROR_LB_WITHOUT_TABSTOPS","features":[305]},{"name":"ERROR_LIBRARY_FULL","features":[305]},{"name":"ERROR_LIBRARY_OFFLINE","features":[305]},{"name":"ERROR_LICENSE_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_LINE_NOT_FOUND","features":[305]},{"name":"ERROR_LINUX_SUBSYSTEM_NOT_PRESENT","features":[305]},{"name":"ERROR_LINUX_SUBSYSTEM_UPDATE_REQUIRED","features":[305]},{"name":"ERROR_LISTBOX_ID_NOT_FOUND","features":[305]},{"name":"ERROR_LM_CROSS_ENCRYPTION_REQUIRED","features":[305]},{"name":"ERROR_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[305]},{"name":"ERROR_LOCAL_USER_SESSION_KEY","features":[305]},{"name":"ERROR_LOCKED","features":[305]},{"name":"ERROR_LOCK_FAILED","features":[305]},{"name":"ERROR_LOCK_VIOLATION","features":[305]},{"name":"ERROR_LOGIN_TIME_RESTRICTION","features":[305]},{"name":"ERROR_LOGIN_WKSTA_RESTRICTION","features":[305]},{"name":"ERROR_LOGON_FAILURE","features":[305]},{"name":"ERROR_LOGON_NOT_GRANTED","features":[305]},{"name":"ERROR_LOGON_SERVER_CONFLICT","features":[305]},{"name":"ERROR_LOGON_SESSION_COLLISION","features":[305]},{"name":"ERROR_LOGON_SESSION_EXISTS","features":[305]},{"name":"ERROR_LOGON_TYPE_NOT_GRANTED","features":[305]},{"name":"ERROR_LOG_APPENDED_FLUSH_FAILED","features":[305]},{"name":"ERROR_LOG_ARCHIVE_IN_PROGRESS","features":[305]},{"name":"ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[305]},{"name":"ERROR_LOG_BLOCKS_EXHAUSTED","features":[305]},{"name":"ERROR_LOG_BLOCK_INCOMPLETE","features":[305]},{"name":"ERROR_LOG_BLOCK_INVALID","features":[305]},{"name":"ERROR_LOG_BLOCK_VERSION","features":[305]},{"name":"ERROR_LOG_CANT_DELETE","features":[305]},{"name":"ERROR_LOG_CLIENT_ALREADY_REGISTERED","features":[305]},{"name":"ERROR_LOG_CLIENT_NOT_REGISTERED","features":[305]},{"name":"ERROR_LOG_CONTAINER_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_LOG_CONTAINER_OPEN_FAILED","features":[305]},{"name":"ERROR_LOG_CONTAINER_READ_FAILED","features":[305]},{"name":"ERROR_LOG_CONTAINER_STATE_INVALID","features":[305]},{"name":"ERROR_LOG_CONTAINER_WRITE_FAILED","features":[305]},{"name":"ERROR_LOG_CORRUPTION_DETECTED","features":[305]},{"name":"ERROR_LOG_DEDICATED","features":[305]},{"name":"ERROR_LOG_EPHEMERAL","features":[305]},{"name":"ERROR_LOG_FILE_FULL","features":[305]},{"name":"ERROR_LOG_FULL","features":[305]},{"name":"ERROR_LOG_FULL_HANDLER_IN_PROGRESS","features":[305]},{"name":"ERROR_LOG_GROWTH_FAILED","features":[305]},{"name":"ERROR_LOG_HARD_ERROR","features":[305]},{"name":"ERROR_LOG_INCONSISTENT_SECURITY","features":[305]},{"name":"ERROR_LOG_INVALID_RANGE","features":[305]},{"name":"ERROR_LOG_METADATA_CORRUPT","features":[305]},{"name":"ERROR_LOG_METADATA_FLUSH_FAILED","features":[305]},{"name":"ERROR_LOG_METADATA_INCONSISTENT","features":[305]},{"name":"ERROR_LOG_METADATA_INVALID","features":[305]},{"name":"ERROR_LOG_MULTIPLEXED","features":[305]},{"name":"ERROR_LOG_NOT_ENOUGH_CONTAINERS","features":[305]},{"name":"ERROR_LOG_NO_RESTART","features":[305]},{"name":"ERROR_LOG_PINNED","features":[305]},{"name":"ERROR_LOG_PINNED_ARCHIVE_TAIL","features":[305]},{"name":"ERROR_LOG_PINNED_RESERVATION","features":[305]},{"name":"ERROR_LOG_POLICY_ALREADY_INSTALLED","features":[305]},{"name":"ERROR_LOG_POLICY_CONFLICT","features":[305]},{"name":"ERROR_LOG_POLICY_INVALID","features":[305]},{"name":"ERROR_LOG_POLICY_NOT_INSTALLED","features":[305]},{"name":"ERROR_LOG_READ_CONTEXT_INVALID","features":[305]},{"name":"ERROR_LOG_READ_MODE_INVALID","features":[305]},{"name":"ERROR_LOG_RECORDS_RESERVED_INVALID","features":[305]},{"name":"ERROR_LOG_RECORD_NONEXISTENT","features":[305]},{"name":"ERROR_LOG_RESERVATION_INVALID","features":[305]},{"name":"ERROR_LOG_RESIZE_INVALID_SIZE","features":[305]},{"name":"ERROR_LOG_RESTART_INVALID","features":[305]},{"name":"ERROR_LOG_SECTOR_INVALID","features":[305]},{"name":"ERROR_LOG_SECTOR_PARITY_INVALID","features":[305]},{"name":"ERROR_LOG_SECTOR_REMAPPED","features":[305]},{"name":"ERROR_LOG_SPACE_RESERVED_INVALID","features":[305]},{"name":"ERROR_LOG_START_OF_LOG","features":[305]},{"name":"ERROR_LOG_STATE_INVALID","features":[305]},{"name":"ERROR_LOG_TAIL_INVALID","features":[305]},{"name":"ERROR_LONGJUMP","features":[305]},{"name":"ERROR_LOST_MODE_LOGON_RESTRICTION","features":[305]},{"name":"ERROR_LOST_WRITEBEHIND_DATA","features":[305]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[305]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[305]},{"name":"ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[305]},{"name":"ERROR_LUIDS_EXHAUSTED","features":[305]},{"name":"ERROR_MACHINE_LOCKED","features":[305]},{"name":"ERROR_MACHINE_SCOPE_NOT_ALLOWED","features":[305]},{"name":"ERROR_MACHINE_UNAVAILABLE","features":[305]},{"name":"ERROR_MAGAZINE_NOT_PRESENT","features":[305]},{"name":"ERROR_MALFORMED_SUBSTITUTION_STRING","features":[305]},{"name":"ERROR_MAPPED_ALIGNMENT","features":[305]},{"name":"ERROR_MARKED_TO_DISALLOW_WRITES","features":[305]},{"name":"ERROR_MARSHALL_OVERFLOW","features":[305]},{"name":"ERROR_MAX_CLIENT_INTERFACE_LIMIT","features":[305]},{"name":"ERROR_MAX_LAN_INTERFACE_LIMIT","features":[305]},{"name":"ERROR_MAX_SESSIONS_REACHED","features":[305]},{"name":"ERROR_MAX_THRDS_REACHED","features":[305]},{"name":"ERROR_MAX_WAN_INTERFACE_LIMIT","features":[305]},{"name":"ERROR_MCA_EXCEPTION","features":[305]},{"name":"ERROR_MCA_INTERNAL_ERROR","features":[305]},{"name":"ERROR_MCA_INVALID_CAPABILITIES_STRING","features":[305]},{"name":"ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED","features":[305]},{"name":"ERROR_MCA_INVALID_VCP_VERSION","features":[305]},{"name":"ERROR_MCA_MCCS_VERSION_MISMATCH","features":[305]},{"name":"ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION","features":[305]},{"name":"ERROR_MCA_OCCURED","features":[305]},{"name":"ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE","features":[305]},{"name":"ERROR_MCA_UNSUPPORTED_MCCS_VERSION","features":[305]},{"name":"ERROR_MEDIA_CHANGED","features":[305]},{"name":"ERROR_MEDIA_CHECK","features":[305]},{"name":"ERROR_MEDIA_INCOMPATIBLE","features":[305]},{"name":"ERROR_MEDIA_NOT_AVAILABLE","features":[305]},{"name":"ERROR_MEDIA_OFFLINE","features":[305]},{"name":"ERROR_MEDIA_UNAVAILABLE","features":[305]},{"name":"ERROR_MEDIUM_NOT_ACCESSIBLE","features":[305]},{"name":"ERROR_MEMBERS_PRIMARY_GROUP","features":[305]},{"name":"ERROR_MEMBER_IN_ALIAS","features":[305]},{"name":"ERROR_MEMBER_IN_GROUP","features":[305]},{"name":"ERROR_MEMBER_NOT_IN_ALIAS","features":[305]},{"name":"ERROR_MEMBER_NOT_IN_GROUP","features":[305]},{"name":"ERROR_MEMORY_HARDWARE","features":[305]},{"name":"ERROR_MENU_ITEM_NOT_FOUND","features":[305]},{"name":"ERROR_MESSAGE_EXCEEDS_MAX_SIZE","features":[305]},{"name":"ERROR_MESSAGE_SYNC_ONLY","features":[305]},{"name":"ERROR_METAFILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_META_EXPANSION_TOO_LONG","features":[305]},{"name":"ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[305]},{"name":"ERROR_MISSING_SYSTEMFILE","features":[305]},{"name":"ERROR_MOD_NOT_FOUND","features":[305]},{"name":"ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[305]},{"name":"ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[305]},{"name":"ERROR_MONITOR_INVALID_MANUFACTURE_DATE","features":[305]},{"name":"ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[305]},{"name":"ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[305]},{"name":"ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[305]},{"name":"ERROR_MONITOR_NO_DESCRIPTOR","features":[305]},{"name":"ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[305]},{"name":"ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[305]},{"name":"ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[305]},{"name":"ERROR_MORE_DATA","features":[305]},{"name":"ERROR_MORE_WRITES","features":[305]},{"name":"ERROR_MOUNT_POINT_NOT_RESOLVED","features":[305]},{"name":"ERROR_MP_PROCESSOR_MISMATCH","features":[305]},{"name":"ERROR_MRM_AUTOMERGE_ENABLED","features":[305]},{"name":"ERROR_MRM_DIRECT_REF_TO_NON_DEFAULT_RESOURCE","features":[305]},{"name":"ERROR_MRM_DUPLICATE_ENTRY","features":[305]},{"name":"ERROR_MRM_DUPLICATE_MAP_NAME","features":[305]},{"name":"ERROR_MRM_FILEPATH_TOO_LONG","features":[305]},{"name":"ERROR_MRM_GENERATION_COUNT_MISMATCH","features":[305]},{"name":"ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE","features":[305]},{"name":"ERROR_MRM_INVALID_FILE_TYPE","features":[305]},{"name":"ERROR_MRM_INVALID_PRICONFIG","features":[305]},{"name":"ERROR_MRM_INVALID_PRI_FILE","features":[305]},{"name":"ERROR_MRM_INVALID_QUALIFIER_OPERATOR","features":[305]},{"name":"ERROR_MRM_INVALID_QUALIFIER_VALUE","features":[305]},{"name":"ERROR_MRM_INVALID_RESOURCE_IDENTIFIER","features":[305]},{"name":"ERROR_MRM_MAP_NOT_FOUND","features":[305]},{"name":"ERROR_MRM_MISSING_DEFAULT_LANGUAGE","features":[305]},{"name":"ERROR_MRM_NAMED_RESOURCE_NOT_FOUND","features":[305]},{"name":"ERROR_MRM_NO_CANDIDATE","features":[305]},{"name":"ERROR_MRM_NO_CURRENT_VIEW_ON_THREAD","features":[305]},{"name":"ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE","features":[305]},{"name":"ERROR_MRM_PACKAGE_NOT_FOUND","features":[305]},{"name":"ERROR_MRM_RESOURCE_TYPE_MISMATCH","features":[305]},{"name":"ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE","features":[305]},{"name":"ERROR_MRM_SCOPE_ITEM_CONFLICT","features":[305]},{"name":"ERROR_MRM_TOO_MANY_RESOURCES","features":[305]},{"name":"ERROR_MRM_UNKNOWN_QUALIFIER","features":[305]},{"name":"ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE","features":[305]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_LOAD_UNLOAD_PRI_FILE","features":[305]},{"name":"ERROR_MRM_UNSUPPORTED_FILE_TYPE_FOR_MERGE","features":[305]},{"name":"ERROR_MRM_UNSUPPORTED_PROFILE_TYPE","features":[305]},{"name":"ERROR_MR_MID_NOT_FOUND","features":[305]},{"name":"ERROR_MUI_FILE_NOT_FOUND","features":[305]},{"name":"ERROR_MUI_FILE_NOT_LOADED","features":[305]},{"name":"ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME","features":[305]},{"name":"ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED","features":[305]},{"name":"ERROR_MUI_INVALID_FILE","features":[305]},{"name":"ERROR_MUI_INVALID_LOCALE_NAME","features":[305]},{"name":"ERROR_MUI_INVALID_RC_CONFIG","features":[305]},{"name":"ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[305]},{"name":"ERROR_MULTIPLE_FAULT_VIOLATION","features":[305]},{"name":"ERROR_MUTANT_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_MUTUAL_AUTH_FAILED","features":[305]},{"name":"ERROR_NDIS_ADAPTER_NOT_FOUND","features":[305]},{"name":"ERROR_NDIS_ADAPTER_NOT_READY","features":[305]},{"name":"ERROR_NDIS_ADAPTER_REMOVED","features":[305]},{"name":"ERROR_NDIS_ALREADY_MAPPED","features":[305]},{"name":"ERROR_NDIS_BAD_CHARACTERISTICS","features":[305]},{"name":"ERROR_NDIS_BAD_VERSION","features":[305]},{"name":"ERROR_NDIS_BUFFER_TOO_SHORT","features":[305]},{"name":"ERROR_NDIS_DEVICE_FAILED","features":[305]},{"name":"ERROR_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[305]},{"name":"ERROR_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[305]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[305]},{"name":"ERROR_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[305]},{"name":"ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[305]},{"name":"ERROR_NDIS_DOT11_MEDIA_IN_USE","features":[305]},{"name":"ERROR_NDIS_DOT11_POWER_STATE_INVALID","features":[305]},{"name":"ERROR_NDIS_ERROR_READING_FILE","features":[305]},{"name":"ERROR_NDIS_FILE_NOT_FOUND","features":[305]},{"name":"ERROR_NDIS_GROUP_ADDRESS_IN_USE","features":[305]},{"name":"ERROR_NDIS_INDICATION_REQUIRED","features":[305]},{"name":"ERROR_NDIS_INTERFACE_CLOSING","features":[305]},{"name":"ERROR_NDIS_INTERFACE_NOT_FOUND","features":[305]},{"name":"ERROR_NDIS_INVALID_ADDRESS","features":[305]},{"name":"ERROR_NDIS_INVALID_DATA","features":[305]},{"name":"ERROR_NDIS_INVALID_DEVICE_REQUEST","features":[305]},{"name":"ERROR_NDIS_INVALID_LENGTH","features":[305]},{"name":"ERROR_NDIS_INVALID_OID","features":[305]},{"name":"ERROR_NDIS_INVALID_PACKET","features":[305]},{"name":"ERROR_NDIS_INVALID_PORT","features":[305]},{"name":"ERROR_NDIS_INVALID_PORT_STATE","features":[305]},{"name":"ERROR_NDIS_LOW_POWER_STATE","features":[305]},{"name":"ERROR_NDIS_MEDIA_DISCONNECTED","features":[305]},{"name":"ERROR_NDIS_MULTICAST_EXISTS","features":[305]},{"name":"ERROR_NDIS_MULTICAST_FULL","features":[305]},{"name":"ERROR_NDIS_MULTICAST_NOT_FOUND","features":[305]},{"name":"ERROR_NDIS_NOT_SUPPORTED","features":[305]},{"name":"ERROR_NDIS_NO_QUEUES","features":[305]},{"name":"ERROR_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[305]},{"name":"ERROR_NDIS_OFFLOAD_PATH_REJECTED","features":[305]},{"name":"ERROR_NDIS_OFFLOAD_POLICY","features":[305]},{"name":"ERROR_NDIS_OPEN_FAILED","features":[305]},{"name":"ERROR_NDIS_PAUSED","features":[305]},{"name":"ERROR_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[305]},{"name":"ERROR_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[305]},{"name":"ERROR_NDIS_REINIT_REQUIRED","features":[305]},{"name":"ERROR_NDIS_REQUEST_ABORTED","features":[305]},{"name":"ERROR_NDIS_RESET_IN_PROGRESS","features":[305]},{"name":"ERROR_NDIS_RESOURCE_CONFLICT","features":[305]},{"name":"ERROR_NDIS_UNSUPPORTED_MEDIA","features":[305]},{"name":"ERROR_NDIS_UNSUPPORTED_REVISION","features":[305]},{"name":"ERROR_NEEDS_REGISTRATION","features":[305]},{"name":"ERROR_NEEDS_REMEDIATION","features":[305]},{"name":"ERROR_NEGATIVE_SEEK","features":[305]},{"name":"ERROR_NESTING_NOT_ALLOWED","features":[305]},{"name":"ERROR_NETLOGON_NOT_STARTED","features":[305]},{"name":"ERROR_NETNAME_DELETED","features":[305]},{"name":"ERROR_NETWORK_ACCESS_DENIED","features":[305]},{"name":"ERROR_NETWORK_ACCESS_DENIED_EDP","features":[305]},{"name":"ERROR_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[305]},{"name":"ERROR_NETWORK_BUSY","features":[305]},{"name":"ERROR_NETWORK_NOT_AVAILABLE","features":[305]},{"name":"ERROR_NETWORK_UNREACHABLE","features":[305]},{"name":"ERROR_NET_OPEN_FAILED","features":[305]},{"name":"ERROR_NET_WRITE_FAULT","features":[305]},{"name":"ERROR_NOACCESS","features":[305]},{"name":"ERROR_NODE_CANNOT_BE_CLUSTERED","features":[305]},{"name":"ERROR_NODE_CANT_HOST_RESOURCE","features":[305]},{"name":"ERROR_NODE_NOT_ACTIVE_CLUSTER_MEMBER","features":[305]},{"name":"ERROR_NODE_NOT_AVAILABLE","features":[305]},{"name":"ERROR_NOINTERFACE","features":[305]},{"name":"ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[305]},{"name":"ERROR_NOLOGON_SERVER_TRUST_ACCOUNT","features":[305]},{"name":"ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[305]},{"name":"ERROR_NONCORE_GROUPS_FOUND","features":[305]},{"name":"ERROR_NONE_MAPPED","features":[305]},{"name":"ERROR_NONPAGED_SYSTEM_RESOURCES","features":[305]},{"name":"ERROR_NON_ACCOUNT_SID","features":[305]},{"name":"ERROR_NON_CSV_PATH","features":[305]},{"name":"ERROR_NON_DOMAIN_SID","features":[305]},{"name":"ERROR_NON_MDICHILD_WINDOW","features":[305]},{"name":"ERROR_NON_WINDOWS_DRIVER","features":[305]},{"name":"ERROR_NON_WINDOWS_NT_DRIVER","features":[305]},{"name":"ERROR_NOTHING_TO_TERMINATE","features":[305]},{"name":"ERROR_NOTIFICATION_GUID_ALREADY_DEFINED","features":[305]},{"name":"ERROR_NOTIFY_CLEANUP","features":[305]},{"name":"ERROR_NOTIFY_ENUM_DIR","features":[305]},{"name":"ERROR_NOT_ALLOWED_ON_SYSTEM_FILE","features":[305]},{"name":"ERROR_NOT_ALL_ASSIGNED","features":[305]},{"name":"ERROR_NOT_AN_INSTALLED_OEM_INF","features":[305]},{"name":"ERROR_NOT_APPCONTAINER","features":[305]},{"name":"ERROR_NOT_AUTHENTICATED","features":[305]},{"name":"ERROR_NOT_A_CLOUD_FILE","features":[305]},{"name":"ERROR_NOT_A_CLOUD_SYNC_ROOT","features":[305]},{"name":"ERROR_NOT_A_DAX_VOLUME","features":[305]},{"name":"ERROR_NOT_A_DEV_VOLUME","features":[305]},{"name":"ERROR_NOT_A_REPARSE_POINT","features":[305]},{"name":"ERROR_NOT_A_TIERED_VOLUME","features":[305]},{"name":"ERROR_NOT_CAPABLE","features":[305]},{"name":"ERROR_NOT_CHILD_WINDOW","features":[305]},{"name":"ERROR_NOT_CLIENT_PORT","features":[305]},{"name":"ERROR_NOT_CONNECTED","features":[305]},{"name":"ERROR_NOT_CONTAINER","features":[305]},{"name":"ERROR_NOT_DAX_MAPPABLE","features":[305]},{"name":"ERROR_NOT_DISABLEABLE","features":[305]},{"name":"ERROR_NOT_DOS_DISK","features":[305]},{"name":"ERROR_NOT_EMPTY","features":[305]},{"name":"ERROR_NOT_ENOUGH_MEMORY","features":[305]},{"name":"ERROR_NOT_ENOUGH_QUOTA","features":[305]},{"name":"ERROR_NOT_ENOUGH_SERVER_MEMORY","features":[305]},{"name":"ERROR_NOT_EXPORT_FORMAT","features":[305]},{"name":"ERROR_NOT_FOUND","features":[305]},{"name":"ERROR_NOT_GUI_PROCESS","features":[305]},{"name":"ERROR_NOT_INSTALLED","features":[305]},{"name":"ERROR_NOT_JOINED","features":[305]},{"name":"ERROR_NOT_LOCKED","features":[305]},{"name":"ERROR_NOT_LOGGED_ON","features":[305]},{"name":"ERROR_NOT_LOGON_PROCESS","features":[305]},{"name":"ERROR_NOT_OWNER","features":[305]},{"name":"ERROR_NOT_QUORUM_CAPABLE","features":[305]},{"name":"ERROR_NOT_QUORUM_CLASS","features":[305]},{"name":"ERROR_NOT_READY","features":[305]},{"name":"ERROR_NOT_READ_FROM_COPY","features":[305]},{"name":"ERROR_NOT_REDUNDANT_STORAGE","features":[305]},{"name":"ERROR_NOT_REGISTRY_FILE","features":[305]},{"name":"ERROR_NOT_ROUTER_PORT","features":[305]},{"name":"ERROR_NOT_SAFEBOOT_SERVICE","features":[305]},{"name":"ERROR_NOT_SAFE_MODE_DRIVER","features":[305]},{"name":"ERROR_NOT_SAME_DEVICE","features":[305]},{"name":"ERROR_NOT_SAME_OBJECT","features":[305]},{"name":"ERROR_NOT_SNAPSHOT_VOLUME","features":[305]},{"name":"ERROR_NOT_SUBSTED","features":[305]},{"name":"ERROR_NOT_SUPPORTED","features":[305]},{"name":"ERROR_NOT_SUPPORTED_IN_APPCONTAINER","features":[305]},{"name":"ERROR_NOT_SUPPORTED_ON_DAX","features":[305]},{"name":"ERROR_NOT_SUPPORTED_ON_SBS","features":[305]},{"name":"ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_AUDITING","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_BTT","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_BYPASSIO","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_COMPRESSION","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_ENCRYPTION","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_MONITORING","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_REPLICATION","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_SNAPSHOT","features":[305]},{"name":"ERROR_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[305]},{"name":"ERROR_NOT_TINY_STREAM","features":[305]},{"name":"ERROR_NO_ACE_CONDITION","features":[305]},{"name":"ERROR_NO_ADMIN_ACCESS_POINT","features":[305]},{"name":"ERROR_NO_APPLICABLE_APP_LICENSES_FOUND","features":[305]},{"name":"ERROR_NO_ASSOCIATED_CLASS","features":[305]},{"name":"ERROR_NO_ASSOCIATED_SERVICE","features":[305]},{"name":"ERROR_NO_ASSOCIATION","features":[305]},{"name":"ERROR_NO_AUTHENTICODE_CATALOG","features":[305]},{"name":"ERROR_NO_AUTH_PROTOCOL_AVAILABLE","features":[305]},{"name":"ERROR_NO_BACKUP","features":[305]},{"name":"ERROR_NO_BROWSER_SERVERS_FOUND","features":[305]},{"name":"ERROR_NO_BYPASSIO_DRIVER_SUPPORT","features":[305]},{"name":"ERROR_NO_CALLBACK_ACTIVE","features":[305]},{"name":"ERROR_NO_CATALOG_FOR_OEM_INF","features":[305]},{"name":"ERROR_NO_CLASSINSTALL_PARAMS","features":[305]},{"name":"ERROR_NO_CLASS_DRIVER_LIST","features":[305]},{"name":"ERROR_NO_COMPAT_DRIVERS","features":[305]},{"name":"ERROR_NO_CONFIGMGR_SERVICES","features":[305]},{"name":"ERROR_NO_DATA","features":[305]},{"name":"ERROR_NO_DATA_DETECTED","features":[305]},{"name":"ERROR_NO_DEFAULT_DEVICE_INTERFACE","features":[305]},{"name":"ERROR_NO_DEFAULT_INTERFACE_DEVICE","features":[305]},{"name":"ERROR_NO_DEVICE_ICON","features":[305]},{"name":"ERROR_NO_DEVICE_SELECTED","features":[305]},{"name":"ERROR_NO_DRIVER_SELECTED","features":[305]},{"name":"ERROR_NO_EFS","features":[305]},{"name":"ERROR_NO_EVENT_PAIR","features":[305]},{"name":"ERROR_NO_GUID_TRANSLATION","features":[305]},{"name":"ERROR_NO_IMPERSONATION_TOKEN","features":[305]},{"name":"ERROR_NO_INF","features":[305]},{"name":"ERROR_NO_INHERITANCE","features":[305]},{"name":"ERROR_NO_INTERFACE_CREDENTIALS_SET","features":[305]},{"name":"ERROR_NO_LINK_TRACKING_IN_TRANSACTION","features":[305]},{"name":"ERROR_NO_LOGON_SERVERS","features":[305]},{"name":"ERROR_NO_LOG_SPACE","features":[305]},{"name":"ERROR_NO_MATCH","features":[305]},{"name":"ERROR_NO_MEDIA_IN_DRIVE","features":[305]},{"name":"ERROR_NO_MORE_DEVICES","features":[305]},{"name":"ERROR_NO_MORE_FILES","features":[305]},{"name":"ERROR_NO_MORE_ITEMS","features":[305]},{"name":"ERROR_NO_MORE_MATCHES","features":[305]},{"name":"ERROR_NO_MORE_SEARCH_HANDLES","features":[305]},{"name":"ERROR_NO_MORE_USER_HANDLES","features":[305]},{"name":"ERROR_NO_NETWORK","features":[305]},{"name":"ERROR_NO_NET_OR_BAD_PATH","features":[305]},{"name":"ERROR_NO_NVRAM_RESOURCES","features":[305]},{"name":"ERROR_NO_PAGEFILE","features":[305]},{"name":"ERROR_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[305]},{"name":"ERROR_NO_PROC_SLOTS","features":[305]},{"name":"ERROR_NO_PROMOTION_ACTIVE","features":[305]},{"name":"ERROR_NO_QUOTAS_FOR_ACCOUNT","features":[305]},{"name":"ERROR_NO_RADIUS_SERVERS","features":[305]},{"name":"ERROR_NO_RANGES_PROCESSED","features":[305]},{"name":"ERROR_NO_RECOVERY_POLICY","features":[305]},{"name":"ERROR_NO_RECOVERY_PROGRAM","features":[305]},{"name":"ERROR_NO_SAVEPOINT_WITH_OPEN_FILES","features":[305]},{"name":"ERROR_NO_SCROLLBARS","features":[305]},{"name":"ERROR_NO_SECRETS","features":[305]},{"name":"ERROR_NO_SECURITY_ON_OBJECT","features":[305]},{"name":"ERROR_NO_SHUTDOWN_IN_PROGRESS","features":[305]},{"name":"ERROR_NO_SIGNAL_SENT","features":[305]},{"name":"ERROR_NO_SIGNATURE","features":[305]},{"name":"ERROR_NO_SITENAME","features":[305]},{"name":"ERROR_NO_SITE_SETTINGS_OBJECT","features":[305]},{"name":"ERROR_NO_SPOOL_SPACE","features":[305]},{"name":"ERROR_NO_SUCH_ALIAS","features":[305]},{"name":"ERROR_NO_SUCH_DEVICE","features":[305]},{"name":"ERROR_NO_SUCH_DEVICE_INTERFACE","features":[305]},{"name":"ERROR_NO_SUCH_DEVINST","features":[305]},{"name":"ERROR_NO_SUCH_DOMAIN","features":[305]},{"name":"ERROR_NO_SUCH_GROUP","features":[305]},{"name":"ERROR_NO_SUCH_INTERFACE","features":[305]},{"name":"ERROR_NO_SUCH_INTERFACE_CLASS","features":[305]},{"name":"ERROR_NO_SUCH_INTERFACE_DEVICE","features":[305]},{"name":"ERROR_NO_SUCH_LOGON_SESSION","features":[305]},{"name":"ERROR_NO_SUCH_MEMBER","features":[305]},{"name":"ERROR_NO_SUCH_PACKAGE","features":[305]},{"name":"ERROR_NO_SUCH_PRIVILEGE","features":[305]},{"name":"ERROR_NO_SUCH_SITE","features":[305]},{"name":"ERROR_NO_SUCH_USER","features":[305]},{"name":"ERROR_NO_SUPPORTING_DRIVES","features":[305]},{"name":"ERROR_NO_SYSTEM_MENU","features":[305]},{"name":"ERROR_NO_SYSTEM_RESOURCES","features":[305]},{"name":"ERROR_NO_TASK_QUEUE","features":[305]},{"name":"ERROR_NO_TOKEN","features":[305]},{"name":"ERROR_NO_TRACKING_SERVICE","features":[305]},{"name":"ERROR_NO_TRUST_LSA_SECRET","features":[305]},{"name":"ERROR_NO_TRUST_SAM_ACCOUNT","features":[305]},{"name":"ERROR_NO_TXF_METADATA","features":[305]},{"name":"ERROR_NO_UNICODE_TRANSLATION","features":[305]},{"name":"ERROR_NO_USER_KEYS","features":[305]},{"name":"ERROR_NO_USER_SESSION_KEY","features":[305]},{"name":"ERROR_NO_VOLUME_ID","features":[305]},{"name":"ERROR_NO_VOLUME_LABEL","features":[305]},{"name":"ERROR_NO_WILDCARD_CHARACTERS","features":[305]},{"name":"ERROR_NO_WORK_DONE","features":[305]},{"name":"ERROR_NO_WRITABLE_DC_FOUND","features":[305]},{"name":"ERROR_NO_YIELD_PERFORMED","features":[305]},{"name":"ERROR_NTLM_BLOCKED","features":[305]},{"name":"ERROR_NT_CROSS_ENCRYPTION_REQUIRED","features":[305]},{"name":"ERROR_NULL_LM_PASSWORD","features":[305]},{"name":"ERROR_OBJECT_ALREADY_EXISTS","features":[305]},{"name":"ERROR_OBJECT_IN_LIST","features":[305]},{"name":"ERROR_OBJECT_IS_IMMUTABLE","features":[305]},{"name":"ERROR_OBJECT_NAME_EXISTS","features":[305]},{"name":"ERROR_OBJECT_NOT_EXTERNALLY_BACKED","features":[305]},{"name":"ERROR_OBJECT_NOT_FOUND","features":[305]},{"name":"ERROR_OBJECT_NO_LONGER_EXISTS","features":[305]},{"name":"ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[305]},{"name":"ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[305]},{"name":"ERROR_OFFSET_ALIGNMENT_VIOLATION","features":[305]},{"name":"ERROR_OLD_WIN_VERSION","features":[305]},{"name":"ERROR_ONLY_IF_CONNECTED","features":[305]},{"name":"ERROR_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[305]},{"name":"ERROR_OPEN_FAILED","features":[305]},{"name":"ERROR_OPEN_FILES","features":[305]},{"name":"ERROR_OPERATION_ABORTED","features":[305]},{"name":"ERROR_OPERATION_IN_PROGRESS","features":[305]},{"name":"ERROR_OPERATION_NOT_ALLOWED_FROM_SYSTEM_COMPONENT","features":[305]},{"name":"ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[305]},{"name":"ERROR_OPLOCK_BREAK_IN_PROGRESS","features":[305]},{"name":"ERROR_OPLOCK_HANDLE_CLOSED","features":[305]},{"name":"ERROR_OPLOCK_NOT_GRANTED","features":[305]},{"name":"ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[305]},{"name":"ERROR_ORPHAN_NAME_EXHAUSTED","features":[305]},{"name":"ERROR_OUTOFMEMORY","features":[305]},{"name":"ERROR_OUT_OF_PAPER","features":[305]},{"name":"ERROR_OUT_OF_STRUCTURES","features":[305]},{"name":"ERROR_OVERRIDE_NOCHANGES","features":[305]},{"name":"ERROR_PACKAGED_SERVICE_REQUIRES_ADMIN_PRIVILEGES","features":[305]},{"name":"ERROR_PACKAGES_IN_USE","features":[305]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_FAILED","features":[305]},{"name":"ERROR_PACKAGES_REPUTATION_CHECK_TIMEDOUT","features":[305]},{"name":"ERROR_PACKAGE_ALREADY_EXISTS","features":[305]},{"name":"ERROR_PACKAGE_EXTERNAL_LOCATION_NOT_ALLOWED","features":[305]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_FOR_MANDATORY_STARTUPTASKS","features":[305]},{"name":"ERROR_PACKAGE_LACKS_CAPABILITY_TO_DEPLOY_ON_HOST","features":[305]},{"name":"ERROR_PACKAGE_MOVE_BLOCKED_BY_STREAMING","features":[305]},{"name":"ERROR_PACKAGE_MOVE_FAILED","features":[305]},{"name":"ERROR_PACKAGE_NAME_MISMATCH","features":[305]},{"name":"ERROR_PACKAGE_NOT_REGISTERED_FOR_USER","features":[305]},{"name":"ERROR_PACKAGE_NOT_SUPPORTED_ON_FILESYSTEM","features":[305]},{"name":"ERROR_PACKAGE_REPOSITORY_CORRUPTED","features":[305]},{"name":"ERROR_PACKAGE_STAGING_ONHOLD","features":[305]},{"name":"ERROR_PACKAGE_UPDATING","features":[305]},{"name":"ERROR_PAGED_SYSTEM_RESOURCES","features":[305]},{"name":"ERROR_PAGEFILE_CREATE_FAILED","features":[305]},{"name":"ERROR_PAGEFILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_PAGEFILE_QUOTA","features":[305]},{"name":"ERROR_PAGEFILE_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_PAGE_FAULT_COPY_ON_WRITE","features":[305]},{"name":"ERROR_PAGE_FAULT_DEMAND_ZERO","features":[305]},{"name":"ERROR_PAGE_FAULT_GUARD_PAGE","features":[305]},{"name":"ERROR_PAGE_FAULT_PAGING_FILE","features":[305]},{"name":"ERROR_PAGE_FAULT_TRANSITION","features":[305]},{"name":"ERROR_PARAMETER_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_PARTIAL_COPY","features":[305]},{"name":"ERROR_PARTITION_FAILURE","features":[305]},{"name":"ERROR_PARTITION_TERMINATING","features":[305]},{"name":"ERROR_PASSWORD_CHANGE_REQUIRED","features":[305]},{"name":"ERROR_PASSWORD_EXPIRED","features":[305]},{"name":"ERROR_PASSWORD_MUST_CHANGE","features":[305]},{"name":"ERROR_PASSWORD_RESTRICTION","features":[305]},{"name":"ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT","features":[305]},{"name":"ERROR_PATCH_NO_SEQUENCE","features":[305]},{"name":"ERROR_PATCH_PACKAGE_INVALID","features":[305]},{"name":"ERROR_PATCH_PACKAGE_OPEN_FAILED","features":[305]},{"name":"ERROR_PATCH_PACKAGE_REJECTED","features":[305]},{"name":"ERROR_PATCH_PACKAGE_UNSUPPORTED","features":[305]},{"name":"ERROR_PATCH_REMOVAL_DISALLOWED","features":[305]},{"name":"ERROR_PATCH_REMOVAL_UNSUPPORTED","features":[305]},{"name":"ERROR_PATCH_TARGET_NOT_FOUND","features":[305]},{"name":"ERROR_PATH_BUSY","features":[305]},{"name":"ERROR_PATH_NOT_FOUND","features":[305]},{"name":"ERROR_PEER_REFUSED_AUTH","features":[305]},{"name":"ERROR_PER_USER_TRUST_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_PIPE_BUSY","features":[305]},{"name":"ERROR_PIPE_CONNECTED","features":[305]},{"name":"ERROR_PIPE_LISTENING","features":[305]},{"name":"ERROR_PIPE_LOCAL","features":[305]},{"name":"ERROR_PIPE_NOT_CONNECTED","features":[305]},{"name":"ERROR_PKINIT_FAILURE","features":[305]},{"name":"ERROR_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[305]},{"name":"ERROR_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[305]},{"name":"ERROR_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[305]},{"name":"ERROR_PLATFORM_MANIFEST_INVALID","features":[305]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_ACTIVE","features":[305]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[305]},{"name":"ERROR_PLATFORM_MANIFEST_NOT_SIGNED","features":[305]},{"name":"ERROR_PLUGPLAY_QUERY_VETOED","features":[305]},{"name":"ERROR_PNP_BAD_MPS_TABLE","features":[305]},{"name":"ERROR_PNP_INVALID_ID","features":[305]},{"name":"ERROR_PNP_IRQ_TRANSLATION_FAILED","features":[305]},{"name":"ERROR_PNP_QUERY_REMOVE_DEVICE_TIMEOUT","features":[305]},{"name":"ERROR_PNP_QUERY_REMOVE_RELATED_DEVICE_TIMEOUT","features":[305]},{"name":"ERROR_PNP_QUERY_REMOVE_UNRELATED_DEVICE_TIMEOUT","features":[305]},{"name":"ERROR_PNP_REBOOT_REQUIRED","features":[305]},{"name":"ERROR_PNP_REGISTRY_ERROR","features":[305]},{"name":"ERROR_PNP_RESTART_ENUMERATION","features":[305]},{"name":"ERROR_PNP_TRANSLATION_FAILED","features":[305]},{"name":"ERROR_POINT_NOT_FOUND","features":[305]},{"name":"ERROR_POLICY_CONTROLLED_ACCOUNT","features":[305]},{"name":"ERROR_POLICY_OBJECT_NOT_FOUND","features":[305]},{"name":"ERROR_POLICY_ONLY_IN_DS","features":[305]},{"name":"ERROR_POPUP_ALREADY_ACTIVE","features":[305]},{"name":"ERROR_PORT_LIMIT_REACHED","features":[305]},{"name":"ERROR_PORT_MESSAGE_TOO_LONG","features":[305]},{"name":"ERROR_PORT_NOT_SET","features":[305]},{"name":"ERROR_PORT_UNREACHABLE","features":[305]},{"name":"ERROR_POSSIBLE_DEADLOCK","features":[305]},{"name":"ERROR_POTENTIAL_FILE_FOUND","features":[305]},{"name":"ERROR_PPP_SESSION_TIMEOUT","features":[305]},{"name":"ERROR_PREDEFINED_HANDLE","features":[305]},{"name":"ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[305]},{"name":"ERROR_PRINTER_ALREADY_EXISTS","features":[305]},{"name":"ERROR_PRINTER_DELETED","features":[305]},{"name":"ERROR_PRINTER_DRIVER_ALREADY_INSTALLED","features":[305]},{"name":"ERROR_PRINTER_DRIVER_BLOCKED","features":[305]},{"name":"ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED","features":[305]},{"name":"ERROR_PRINTER_DRIVER_IN_USE","features":[305]},{"name":"ERROR_PRINTER_DRIVER_PACKAGE_IN_USE","features":[305]},{"name":"ERROR_PRINTER_DRIVER_WARNED","features":[305]},{"name":"ERROR_PRINTER_HAS_JOBS_QUEUED","features":[305]},{"name":"ERROR_PRINTER_NOT_FOUND","features":[305]},{"name":"ERROR_PRINTER_NOT_SHAREABLE","features":[305]},{"name":"ERROR_PRINTQ_FULL","features":[305]},{"name":"ERROR_PRINT_CANCELLED","features":[305]},{"name":"ERROR_PRINT_JOB_RESTART_REQUIRED","features":[305]},{"name":"ERROR_PRINT_MONITOR_ALREADY_INSTALLED","features":[305]},{"name":"ERROR_PRINT_MONITOR_IN_USE","features":[305]},{"name":"ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED","features":[305]},{"name":"ERROR_PRIVATE_DIALOG_INDEX","features":[305]},{"name":"ERROR_PRIVILEGE_NOT_HELD","features":[305]},{"name":"ERROR_PRI_MERGE_ADD_FILE_FAILED","features":[305]},{"name":"ERROR_PRI_MERGE_BUNDLE_PACKAGES_NOT_ALLOWED","features":[305]},{"name":"ERROR_PRI_MERGE_INVALID_FILE_NAME","features":[305]},{"name":"ERROR_PRI_MERGE_LOAD_FILE_FAILED","features":[305]},{"name":"ERROR_PRI_MERGE_MAIN_PACKAGE_REQUIRED","features":[305]},{"name":"ERROR_PRI_MERGE_MISSING_SCHEMA","features":[305]},{"name":"ERROR_PRI_MERGE_MULTIPLE_MAIN_PACKAGES_NOT_ALLOWED","features":[305]},{"name":"ERROR_PRI_MERGE_MULTIPLE_PACKAGE_FAMILIES_NOT_ALLOWED","features":[305]},{"name":"ERROR_PRI_MERGE_RESOURCE_PACKAGE_REQUIRED","features":[305]},{"name":"ERROR_PRI_MERGE_VERSION_MISMATCH","features":[305]},{"name":"ERROR_PRI_MERGE_WRITE_FILE_FAILED","features":[305]},{"name":"ERROR_PROCESS_ABORTED","features":[305]},{"name":"ERROR_PROCESS_IN_JOB","features":[305]},{"name":"ERROR_PROCESS_IS_PROTECTED","features":[305]},{"name":"ERROR_PROCESS_MODE_ALREADY_BACKGROUND","features":[305]},{"name":"ERROR_PROCESS_MODE_NOT_BACKGROUND","features":[305]},{"name":"ERROR_PROCESS_NOT_IN_JOB","features":[305]},{"name":"ERROR_PROC_NOT_FOUND","features":[305]},{"name":"ERROR_PRODUCT_UNINSTALLED","features":[305]},{"name":"ERROR_PRODUCT_VERSION","features":[305]},{"name":"ERROR_PROFILE_DOES_NOT_MATCH_DEVICE","features":[305]},{"name":"ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE","features":[305]},{"name":"ERROR_PROFILE_NOT_FOUND","features":[305]},{"name":"ERROR_PROFILING_AT_LIMIT","features":[305]},{"name":"ERROR_PROFILING_NOT_STARTED","features":[305]},{"name":"ERROR_PROFILING_NOT_STOPPED","features":[305]},{"name":"ERROR_PROMOTION_ACTIVE","features":[305]},{"name":"ERROR_PROTOCOL_ALREADY_INSTALLED","features":[305]},{"name":"ERROR_PROTOCOL_STOP_PENDING","features":[305]},{"name":"ERROR_PROTOCOL_UNREACHABLE","features":[305]},{"name":"ERROR_PROVISION_OPTIONAL_PACKAGE_REQUIRES_MAIN_PACKAGE_PROVISIONED","features":[305]},{"name":"ERROR_PWD_HISTORY_CONFLICT","features":[305]},{"name":"ERROR_PWD_TOO_LONG","features":[305]},{"name":"ERROR_PWD_TOO_RECENT","features":[305]},{"name":"ERROR_PWD_TOO_SHORT","features":[305]},{"name":"ERROR_QUERY_STORAGE_ERROR","features":[305]},{"name":"ERROR_QUIC_ALPN_NEG_FAILURE","features":[305]},{"name":"ERROR_QUIC_CONNECTION_IDLE","features":[305]},{"name":"ERROR_QUIC_CONNECTION_TIMEOUT","features":[305]},{"name":"ERROR_QUIC_HANDSHAKE_FAILURE","features":[305]},{"name":"ERROR_QUIC_INTERNAL_ERROR","features":[305]},{"name":"ERROR_QUIC_PROTOCOL_VIOLATION","features":[305]},{"name":"ERROR_QUIC_USER_CANCELED","features":[305]},{"name":"ERROR_QUIC_VER_NEG_FAILURE","features":[305]},{"name":"ERROR_QUORUMLOG_OPEN_FAILED","features":[305]},{"name":"ERROR_QUORUM_DISK_NOT_FOUND","features":[305]},{"name":"ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP","features":[305]},{"name":"ERROR_QUORUM_OWNER_ALIVE","features":[305]},{"name":"ERROR_QUORUM_RESOURCE","features":[305]},{"name":"ERROR_QUORUM_RESOURCE_ONLINE_FAILED","features":[305]},{"name":"ERROR_QUOTA_ACTIVITY","features":[305]},{"name":"ERROR_QUOTA_LIST_INCONSISTENT","features":[305]},{"name":"ERROR_RANGE_LIST_CONFLICT","features":[305]},{"name":"ERROR_RANGE_NOT_FOUND","features":[305]},{"name":"ERROR_RDP_PROTOCOL_ERROR","features":[305]},{"name":"ERROR_READ_FAULT","features":[305]},{"name":"ERROR_RECEIVE_EXPEDITED","features":[305]},{"name":"ERROR_RECEIVE_PARTIAL","features":[305]},{"name":"ERROR_RECEIVE_PARTIAL_EXPEDITED","features":[305]},{"name":"ERROR_RECOVERY_FAILURE","features":[305]},{"name":"ERROR_RECOVERY_FILE_CORRUPT","features":[305]},{"name":"ERROR_RECOVERY_NOT_NEEDED","features":[305]},{"name":"ERROR_REC_NON_EXISTENT","features":[305]},{"name":"ERROR_REDIRECTION_TO_DEFAULT_ACCOUNT_NOT_ALLOWED","features":[305]},{"name":"ERROR_REDIRECTOR_HAS_OPEN_HANDLES","features":[305]},{"name":"ERROR_REDIR_PAUSED","features":[305]},{"name":"ERROR_REGISTRATION_FROM_REMOTE_DRIVE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_REGISTRY_CORRUPT","features":[305]},{"name":"ERROR_REGISTRY_HIVE_RECOVERED","features":[305]},{"name":"ERROR_REGISTRY_IO_FAILED","features":[305]},{"name":"ERROR_REGISTRY_QUOTA_LIMIT","features":[305]},{"name":"ERROR_REGISTRY_RECOVERED","features":[305]},{"name":"ERROR_REG_NAT_CONSUMPTION","features":[305]},{"name":"ERROR_RELOC_CHAIN_XEEDS_SEGLIM","features":[305]},{"name":"ERROR_REMOTEACCESS_NOT_CONFIGURED","features":[305]},{"name":"ERROR_REMOTE_ACCT_DISABLED","features":[305]},{"name":"ERROR_REMOTE_AUTHENTICATION_FAILURE","features":[305]},{"name":"ERROR_REMOTE_COMM_FAILURE","features":[305]},{"name":"ERROR_REMOTE_FILE_VERSION_MISMATCH","features":[305]},{"name":"ERROR_REMOTE_NO_DIALIN_PERMISSION","features":[305]},{"name":"ERROR_REMOTE_PASSWD_EXPIRED","features":[305]},{"name":"ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED","features":[305]},{"name":"ERROR_REMOTE_REQUEST_UNSUPPORTED","features":[305]},{"name":"ERROR_REMOTE_RESTRICTED_LOGON_HOURS","features":[305]},{"name":"ERROR_REMOTE_SESSION_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_REMOTE_STORAGE_MEDIA_ERROR","features":[305]},{"name":"ERROR_REMOTE_STORAGE_NOT_ACTIVE","features":[305]},{"name":"ERROR_REMOVE_FAILED","features":[305]},{"name":"ERROR_REM_NOT_LIST","features":[305]},{"name":"ERROR_REPARSE","features":[305]},{"name":"ERROR_REPARSE_ATTRIBUTE_CONFLICT","features":[305]},{"name":"ERROR_REPARSE_OBJECT","features":[305]},{"name":"ERROR_REPARSE_POINT_ENCOUNTERED","features":[305]},{"name":"ERROR_REPARSE_TAG_INVALID","features":[305]},{"name":"ERROR_REPARSE_TAG_MISMATCH","features":[305]},{"name":"ERROR_REPLY_MESSAGE_MISMATCH","features":[305]},{"name":"ERROR_REQUEST_ABORTED","features":[305]},{"name":"ERROR_REQUEST_OUT_OF_SEQUENCE","features":[305]},{"name":"ERROR_REQUEST_PAUSED","features":[305]},{"name":"ERROR_REQUEST_REFUSED","features":[305]},{"name":"ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION","features":[305]},{"name":"ERROR_REQ_NOT_ACCEP","features":[305]},{"name":"ERROR_RESIDENT_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_RESILIENCY_FILE_CORRUPT","features":[305]},{"name":"ERROR_RESMON_CREATE_FAILED","features":[305]},{"name":"ERROR_RESMON_INVALID_STATE","features":[305]},{"name":"ERROR_RESMON_ONLINE_FAILED","features":[305]},{"name":"ERROR_RESMON_SYSTEM_RESOURCES_LACKING","features":[305]},{"name":"ERROR_RESOURCEMANAGER_NOT_FOUND","features":[305]},{"name":"ERROR_RESOURCEMANAGER_READ_ONLY","features":[305]},{"name":"ERROR_RESOURCE_CALL_TIMED_OUT","features":[305]},{"name":"ERROR_RESOURCE_DATA_NOT_FOUND","features":[305]},{"name":"ERROR_RESOURCE_DISABLED","features":[305]},{"name":"ERROR_RESOURCE_ENUM_USER_STOP","features":[305]},{"name":"ERROR_RESOURCE_FAILED","features":[305]},{"name":"ERROR_RESOURCE_LANG_NOT_FOUND","features":[305]},{"name":"ERROR_RESOURCE_NAME_NOT_FOUND","features":[305]},{"name":"ERROR_RESOURCE_NOT_AVAILABLE","features":[305]},{"name":"ERROR_RESOURCE_NOT_FOUND","features":[305]},{"name":"ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE","features":[305]},{"name":"ERROR_RESOURCE_NOT_ONLINE","features":[305]},{"name":"ERROR_RESOURCE_NOT_PRESENT","features":[305]},{"name":"ERROR_RESOURCE_ONLINE","features":[305]},{"name":"ERROR_RESOURCE_PROPERTIES_STORED","features":[305]},{"name":"ERROR_RESOURCE_PROPERTY_UNCHANGEABLE","features":[305]},{"name":"ERROR_RESOURCE_REQUIREMENTS_CHANGED","features":[305]},{"name":"ERROR_RESOURCE_TYPE_NOT_FOUND","features":[305]},{"name":"ERROR_RESTART_APPLICATION","features":[305]},{"name":"ERROR_RESUME_HIBERNATION","features":[305]},{"name":"ERROR_RETRY","features":[305]},{"name":"ERROR_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[305]},{"name":"ERROR_REVISION_MISMATCH","features":[305]},{"name":"ERROR_RING2SEG_MUST_BE_MOVABLE","features":[305]},{"name":"ERROR_RING2_STACK_IN_USE","features":[305]},{"name":"ERROR_RMODE_APP","features":[305]},{"name":"ERROR_RM_ALREADY_STARTED","features":[305]},{"name":"ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[305]},{"name":"ERROR_RM_DISCONNECTED","features":[305]},{"name":"ERROR_RM_METADATA_CORRUPT","features":[305]},{"name":"ERROR_RM_NOT_ACTIVE","features":[305]},{"name":"ERROR_ROLLBACK_TIMER_EXPIRED","features":[305]},{"name":"ERROR_ROUTER_CONFIG_INCOMPATIBLE","features":[305]},{"name":"ERROR_ROUTER_STOPPED","features":[305]},{"name":"ERROR_ROWSNOTRELEASED","features":[305]},{"name":"ERROR_RPL_NOT_ALLOWED","features":[305]},{"name":"ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[305]},{"name":"ERROR_RUNLEVEL_SWITCH_IN_PROGRESS","features":[305]},{"name":"ERROR_RUNLEVEL_SWITCH_TIMEOUT","features":[305]},{"name":"ERROR_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[305]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[305]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[305]},{"name":"ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[305]},{"name":"ERROR_RXACT_COMMITTED","features":[305]},{"name":"ERROR_RXACT_COMMIT_FAILURE","features":[305]},{"name":"ERROR_RXACT_COMMIT_NECESSARY","features":[305]},{"name":"ERROR_RXACT_INVALID_STATE","features":[305]},{"name":"ERROR_RXACT_STATE_CREATED","features":[305]},{"name":"ERROR_SAME_DRIVE","features":[305]},{"name":"ERROR_SAM_INIT_FAILURE","features":[305]},{"name":"ERROR_SCE_DISABLED","features":[305]},{"name":"ERROR_SCOPE_NOT_FOUND","features":[305]},{"name":"ERROR_SCREEN_ALREADY_LOCKED","features":[305]},{"name":"ERROR_SCRUB_DATA_DISABLED","features":[305]},{"name":"ERROR_SECCORE_INVALID_COMMAND","features":[305]},{"name":"ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[305]},{"name":"ERROR_SECRET_TOO_LONG","features":[305]},{"name":"ERROR_SECTION_DIRECT_MAP_ONLY","features":[305]},{"name":"ERROR_SECTION_NAME_TOO_LONG","features":[305]},{"name":"ERROR_SECTION_NOT_FOUND","features":[305]},{"name":"ERROR_SECTOR_NOT_FOUND","features":[305]},{"name":"ERROR_SECUREBOOT_FILE_REPLACED","features":[305]},{"name":"ERROR_SECUREBOOT_INVALID_POLICY","features":[305]},{"name":"ERROR_SECUREBOOT_NOT_BASE_POLICY","features":[305]},{"name":"ERROR_SECUREBOOT_NOT_ENABLED","features":[305]},{"name":"ERROR_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[305]},{"name":"ERROR_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_NOT_SIGNED","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_UNKNOWN","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[305]},{"name":"ERROR_SECUREBOOT_POLICY_VIOLATION","features":[305]},{"name":"ERROR_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[305]},{"name":"ERROR_SECUREBOOT_ROLLBACK_DETECTED","features":[305]},{"name":"ERROR_SECURITY_DENIES_OPERATION","features":[305]},{"name":"ERROR_SECURITY_STREAM_IS_INCONSISTENT","features":[305]},{"name":"ERROR_SEEK","features":[305]},{"name":"ERROR_SEEK_ON_DEVICE","features":[305]},{"name":"ERROR_SEGMENT_NOTIFICATION","features":[305]},{"name":"ERROR_SEM_IS_SET","features":[305]},{"name":"ERROR_SEM_NOT_FOUND","features":[305]},{"name":"ERROR_SEM_OWNER_DIED","features":[305]},{"name":"ERROR_SEM_TIMEOUT","features":[305]},{"name":"ERROR_SEM_USER_LIMIT","features":[305]},{"name":"ERROR_SERIAL_NO_DEVICE","features":[305]},{"name":"ERROR_SERVER_DISABLED","features":[305]},{"name":"ERROR_SERVER_HAS_OPEN_HANDLES","features":[305]},{"name":"ERROR_SERVER_NOT_DISABLED","features":[305]},{"name":"ERROR_SERVER_SERVICE_CALL_REQUIRES_SMB1","features":[305]},{"name":"ERROR_SERVER_SHUTDOWN_IN_PROGRESS","features":[305]},{"name":"ERROR_SERVER_SID_MISMATCH","features":[305]},{"name":"ERROR_SERVER_TRANSPORT_CONFLICT","features":[305]},{"name":"ERROR_SERVICES_FAILED_AUTOSTART","features":[305]},{"name":"ERROR_SERVICE_ALREADY_RUNNING","features":[305]},{"name":"ERROR_SERVICE_CANNOT_ACCEPT_CTRL","features":[305]},{"name":"ERROR_SERVICE_DATABASE_LOCKED","features":[305]},{"name":"ERROR_SERVICE_DEPENDENCY_DELETED","features":[305]},{"name":"ERROR_SERVICE_DEPENDENCY_FAIL","features":[305]},{"name":"ERROR_SERVICE_DISABLED","features":[305]},{"name":"ERROR_SERVICE_DOES_NOT_EXIST","features":[305]},{"name":"ERROR_SERVICE_EXISTS","features":[305]},{"name":"ERROR_SERVICE_EXISTS_AS_NON_PACKAGED_SERVICE","features":[305]},{"name":"ERROR_SERVICE_IS_PAUSED","features":[305]},{"name":"ERROR_SERVICE_LOGON_FAILED","features":[305]},{"name":"ERROR_SERVICE_MARKED_FOR_DELETE","features":[305]},{"name":"ERROR_SERVICE_NEVER_STARTED","features":[305]},{"name":"ERROR_SERVICE_NOTIFICATION","features":[305]},{"name":"ERROR_SERVICE_NOTIFY_CLIENT_LAGGING","features":[305]},{"name":"ERROR_SERVICE_NOT_ACTIVE","features":[305]},{"name":"ERROR_SERVICE_NOT_FOUND","features":[305]},{"name":"ERROR_SERVICE_NOT_IN_EXE","features":[305]},{"name":"ERROR_SERVICE_NO_THREAD","features":[305]},{"name":"ERROR_SERVICE_REQUEST_TIMEOUT","features":[305]},{"name":"ERROR_SERVICE_SPECIFIC_ERROR","features":[305]},{"name":"ERROR_SERVICE_START_HANG","features":[305]},{"name":"ERROR_SESSION_CREDENTIAL_CONFLICT","features":[305]},{"name":"ERROR_SESSION_KEY_TOO_SHORT","features":[305]},{"name":"ERROR_SETCOUNT_ON_BAD_LB","features":[305]},{"name":"ERROR_SETMARK_DETECTED","features":[305]},{"name":"ERROR_SET_CONTEXT_DENIED","features":[305]},{"name":"ERROR_SET_NOT_FOUND","features":[305]},{"name":"ERROR_SET_POWER_STATE_FAILED","features":[305]},{"name":"ERROR_SET_POWER_STATE_VETOED","features":[305]},{"name":"ERROR_SET_SYSTEM_RESTORE_POINT","features":[305]},{"name":"ERROR_SHARED_POLICY","features":[305]},{"name":"ERROR_SHARING_BUFFER_EXCEEDED","features":[305]},{"name":"ERROR_SHARING_PAUSED","features":[305]},{"name":"ERROR_SHARING_VIOLATION","features":[305]},{"name":"ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[305]},{"name":"ERROR_SHUTDOWN_CLUSTER","features":[305]},{"name":"ERROR_SHUTDOWN_DISKS_NOT_IN_MAINTENANCE_MODE","features":[305]},{"name":"ERROR_SHUTDOWN_IN_PROGRESS","features":[305]},{"name":"ERROR_SHUTDOWN_IS_SCHEDULED","features":[305]},{"name":"ERROR_SHUTDOWN_USERS_LOGGED_ON","features":[305]},{"name":"ERROR_SIGNAL_PENDING","features":[305]},{"name":"ERROR_SIGNAL_REFUSED","features":[305]},{"name":"ERROR_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[305]},{"name":"ERROR_SIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[305]},{"name":"ERROR_SINGLETON_RESOURCE_INSTALLED_IN_ACTIVE_USER","features":[305]},{"name":"ERROR_SINGLE_INSTANCE_APP","features":[305]},{"name":"ERROR_SMARTCARD_SUBSYSTEM_FAILURE","features":[305]},{"name":"ERROR_SMB1_NOT_AVAILABLE","features":[305]},{"name":"ERROR_SMB_BAD_CLUSTER_DIALECT","features":[305]},{"name":"ERROR_SMB_GUEST_LOGON_BLOCKED","features":[305]},{"name":"ERROR_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[305]},{"name":"ERROR_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[305]},{"name":"ERROR_SMI_PRIMITIVE_INSTALLER_FAILED","features":[305]},{"name":"ERROR_SMR_GARBAGE_COLLECTION_REQUIRED","features":[305]},{"name":"ERROR_SOME_NOT_MAPPED","features":[305]},{"name":"ERROR_SOURCE_ELEMENT_EMPTY","features":[305]},{"name":"ERROR_SPACES_ALLOCATION_SIZE_INVALID","features":[305]},{"name":"ERROR_SPACES_CACHE_FULL","features":[305]},{"name":"ERROR_SPACES_CORRUPT_METADATA","features":[305]},{"name":"ERROR_SPACES_DRIVE_LOST_DATA","features":[305]},{"name":"ERROR_SPACES_DRIVE_NOT_READY","features":[305]},{"name":"ERROR_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[305]},{"name":"ERROR_SPACES_DRIVE_REDUNDANCY_INVALID","features":[305]},{"name":"ERROR_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[305]},{"name":"ERROR_SPACES_DRIVE_SPLIT","features":[305]},{"name":"ERROR_SPACES_DRT_FULL","features":[305]},{"name":"ERROR_SPACES_ENCLOSURE_AWARE_INVALID","features":[305]},{"name":"ERROR_SPACES_ENTRY_INCOMPLETE","features":[305]},{"name":"ERROR_SPACES_ENTRY_INVALID","features":[305]},{"name":"ERROR_SPACES_EXTENDED_ERROR","features":[305]},{"name":"ERROR_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[305]},{"name":"ERROR_SPACES_FLUSH_METADATA","features":[305]},{"name":"ERROR_SPACES_INCONSISTENCY","features":[305]},{"name":"ERROR_SPACES_INTERLEAVE_LENGTH_INVALID","features":[305]},{"name":"ERROR_SPACES_INTERNAL_ERROR","features":[305]},{"name":"ERROR_SPACES_LOG_NOT_READY","features":[305]},{"name":"ERROR_SPACES_MAP_REQUIRED","features":[305]},{"name":"ERROR_SPACES_MARK_DIRTY","features":[305]},{"name":"ERROR_SPACES_NOT_ENOUGH_DRIVES","features":[305]},{"name":"ERROR_SPACES_NO_REDUNDANCY","features":[305]},{"name":"ERROR_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[305]},{"name":"ERROR_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[305]},{"name":"ERROR_SPACES_NUMBER_OF_GROUPS_INVALID","features":[305]},{"name":"ERROR_SPACES_PARITY_LAYOUT_INVALID","features":[305]},{"name":"ERROR_SPACES_POOL_WAS_DELETED","features":[305]},{"name":"ERROR_SPACES_PROVISIONING_TYPE_INVALID","features":[305]},{"name":"ERROR_SPACES_REPAIR_IN_PROGRESS","features":[305]},{"name":"ERROR_SPACES_RESILIENCY_TYPE_INVALID","features":[305]},{"name":"ERROR_SPACES_UNSUPPORTED_VERSION","features":[305]},{"name":"ERROR_SPACES_UPDATE_COLUMN_STATE","features":[305]},{"name":"ERROR_SPACES_WRITE_CACHE_SIZE_INVALID","features":[305]},{"name":"ERROR_SPARSE_FILE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[305]},{"name":"ERROR_SPECIAL_ACCOUNT","features":[305]},{"name":"ERROR_SPECIAL_GROUP","features":[305]},{"name":"ERROR_SPECIAL_USER","features":[305]},{"name":"ERROR_SPL_NO_ADDJOB","features":[305]},{"name":"ERROR_SPL_NO_STARTDOC","features":[305]},{"name":"ERROR_SPOOL_FILE_NOT_FOUND","features":[305]},{"name":"ERROR_SRC_SRV_DLL_LOAD_FAILED","features":[305]},{"name":"ERROR_STACK_BUFFER_OVERRUN","features":[305]},{"name":"ERROR_STACK_OVERFLOW","features":[305]},{"name":"ERROR_STACK_OVERFLOW_READ","features":[305]},{"name":"ERROR_STAGEFROMUPDATEAGENT_PACKAGE_NOT_APPLICABLE","features":[305]},{"name":"ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_STATE_CREATE_CONTAINER_FAILED","features":[305]},{"name":"ERROR_STATE_DELETE_CONTAINER_FAILED","features":[305]},{"name":"ERROR_STATE_DELETE_SETTING_FAILED","features":[305]},{"name":"ERROR_STATE_ENUMERATE_CONTAINER_FAILED","features":[305]},{"name":"ERROR_STATE_ENUMERATE_SETTINGS_FAILED","features":[305]},{"name":"ERROR_STATE_GET_VERSION_FAILED","features":[305]},{"name":"ERROR_STATE_LOAD_STORE_FAILED","features":[305]},{"name":"ERROR_STATE_OPEN_CONTAINER_FAILED","features":[305]},{"name":"ERROR_STATE_QUERY_SETTING_FAILED","features":[305]},{"name":"ERROR_STATE_READ_COMPOSITE_SETTING_FAILED","features":[305]},{"name":"ERROR_STATE_READ_SETTING_FAILED","features":[305]},{"name":"ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_STATE_SET_VERSION_FAILED","features":[305]},{"name":"ERROR_STATE_STRUCTURED_RESET_FAILED","features":[305]},{"name":"ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED","features":[305]},{"name":"ERROR_STATE_WRITE_SETTING_FAILED","features":[305]},{"name":"ERROR_STATIC_INIT","features":[305]},{"name":"ERROR_STOPPED_ON_SYMLINK","features":[305]},{"name":"ERROR_STORAGE_LOST_DATA_PERSISTENCE","features":[305]},{"name":"ERROR_STORAGE_RESERVE_ALREADY_EXISTS","features":[305]},{"name":"ERROR_STORAGE_RESERVE_DOES_NOT_EXIST","features":[305]},{"name":"ERROR_STORAGE_RESERVE_ID_INVALID","features":[305]},{"name":"ERROR_STORAGE_RESERVE_NOT_EMPTY","features":[305]},{"name":"ERROR_STORAGE_STACK_ACCESS_DENIED","features":[305]},{"name":"ERROR_STORAGE_TOPOLOGY_ID_MISMATCH","features":[305]},{"name":"ERROR_STREAM_MINIVERSION_NOT_FOUND","features":[305]},{"name":"ERROR_STREAM_MINIVERSION_NOT_VALID","features":[305]},{"name":"ERROR_STRICT_CFG_VIOLATION","features":[305]},{"name":"ERROR_SUBST_TO_JOIN","features":[305]},{"name":"ERROR_SUBST_TO_SUBST","features":[305]},{"name":"ERROR_SUCCESS","features":[305]},{"name":"ERROR_SUCCESS_REBOOT_INITIATED","features":[305]},{"name":"ERROR_SUCCESS_REBOOT_REQUIRED","features":[305]},{"name":"ERROR_SUCCESS_RESTART_REQUIRED","features":[305]},{"name":"ERROR_SVHDX_ERROR_NOT_AVAILABLE","features":[305]},{"name":"ERROR_SVHDX_ERROR_STORED","features":[305]},{"name":"ERROR_SVHDX_NO_INITIATOR","features":[305]},{"name":"ERROR_SVHDX_RESERVATION_CONFLICT","features":[305]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[305]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[305]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[305]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[305]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[305]},{"name":"ERROR_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[305]},{"name":"ERROR_SVHDX_VERSION_MISMATCH","features":[305]},{"name":"ERROR_SVHDX_WRONG_FILE_TYPE","features":[305]},{"name":"ERROR_SWAPERROR","features":[305]},{"name":"ERROR_SXS_ACTIVATION_CONTEXT_DISABLED","features":[305]},{"name":"ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[305]},{"name":"ERROR_SXS_ASSEMBLY_MISSING","features":[305]},{"name":"ERROR_SXS_ASSEMBLY_NOT_FOUND","features":[305]},{"name":"ERROR_SXS_ASSEMBLY_NOT_LOCKED","features":[305]},{"name":"ERROR_SXS_CANT_GEN_ACTCTX","features":[305]},{"name":"ERROR_SXS_COMPONENT_STORE_CORRUPT","features":[305]},{"name":"ERROR_SXS_CORRUPTION","features":[305]},{"name":"ERROR_SXS_CORRUPT_ACTIVATION_STACK","features":[305]},{"name":"ERROR_SXS_DUPLICATE_ACTIVATABLE_CLASS","features":[305]},{"name":"ERROR_SXS_DUPLICATE_ASSEMBLY_NAME","features":[305]},{"name":"ERROR_SXS_DUPLICATE_CLSID","features":[305]},{"name":"ERROR_SXS_DUPLICATE_DLL_NAME","features":[305]},{"name":"ERROR_SXS_DUPLICATE_IID","features":[305]},{"name":"ERROR_SXS_DUPLICATE_PROGID","features":[305]},{"name":"ERROR_SXS_DUPLICATE_TLBID","features":[305]},{"name":"ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME","features":[305]},{"name":"ERROR_SXS_EARLY_DEACTIVATION","features":[305]},{"name":"ERROR_SXS_FILE_HASH_MISMATCH","features":[305]},{"name":"ERROR_SXS_FILE_HASH_MISSING","features":[305]},{"name":"ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[305]},{"name":"ERROR_SXS_IDENTITIES_DIFFERENT","features":[305]},{"name":"ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[305]},{"name":"ERROR_SXS_IDENTITY_PARSE_ERROR","features":[305]},{"name":"ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN","features":[305]},{"name":"ERROR_SXS_INVALID_ACTCTXDATA_FORMAT","features":[305]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[305]},{"name":"ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME","features":[305]},{"name":"ERROR_SXS_INVALID_DEACTIVATION","features":[305]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[305]},{"name":"ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[305]},{"name":"ERROR_SXS_INVALID_XML_NAMESPACE_URI","features":[305]},{"name":"ERROR_SXS_KEY_NOT_FOUND","features":[305]},{"name":"ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[305]},{"name":"ERROR_SXS_MANIFEST_FORMAT_ERROR","features":[305]},{"name":"ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[305]},{"name":"ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE","features":[305]},{"name":"ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE","features":[305]},{"name":"ERROR_SXS_MANIFEST_PARSE_ERROR","features":[305]},{"name":"ERROR_SXS_MANIFEST_TOO_BIG","features":[305]},{"name":"ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE","features":[305]},{"name":"ERROR_SXS_MULTIPLE_DEACTIVATION","features":[305]},{"name":"ERROR_SXS_POLICY_PARSE_ERROR","features":[305]},{"name":"ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT","features":[305]},{"name":"ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[305]},{"name":"ERROR_SXS_PROCESS_TERMINATION_REQUESTED","features":[305]},{"name":"ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING","features":[305]},{"name":"ERROR_SXS_PROTECTION_CATALOG_NOT_VALID","features":[305]},{"name":"ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT","features":[305]},{"name":"ERROR_SXS_PROTECTION_RECOVERY_FAILED","features":[305]},{"name":"ERROR_SXS_RELEASE_ACTIVATION_CONTEXT","features":[305]},{"name":"ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED","features":[305]},{"name":"ERROR_SXS_SECTION_NOT_FOUND","features":[305]},{"name":"ERROR_SXS_SETTING_NOT_REGISTERED","features":[305]},{"name":"ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[305]},{"name":"ERROR_SXS_THREAD_QUERIES_DISABLED","features":[305]},{"name":"ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[305]},{"name":"ERROR_SXS_UNKNOWN_ENCODING","features":[305]},{"name":"ERROR_SXS_UNKNOWN_ENCODING_GROUP","features":[305]},{"name":"ERROR_SXS_UNTRANSLATABLE_HRESULT","features":[305]},{"name":"ERROR_SXS_VERSION_CONFLICT","features":[305]},{"name":"ERROR_SXS_WRONG_SECTION_TYPE","features":[305]},{"name":"ERROR_SXS_XML_E_BADCHARDATA","features":[305]},{"name":"ERROR_SXS_XML_E_BADCHARINSTRING","features":[305]},{"name":"ERROR_SXS_XML_E_BADNAMECHAR","features":[305]},{"name":"ERROR_SXS_XML_E_BADPEREFINSUBSET","features":[305]},{"name":"ERROR_SXS_XML_E_BADSTARTNAMECHAR","features":[305]},{"name":"ERROR_SXS_XML_E_BADXMLCASE","features":[305]},{"name":"ERROR_SXS_XML_E_BADXMLDECL","features":[305]},{"name":"ERROR_SXS_XML_E_COMMENTSYNTAX","features":[305]},{"name":"ERROR_SXS_XML_E_DUPLICATEATTRIBUTE","features":[305]},{"name":"ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE","features":[305]},{"name":"ERROR_SXS_XML_E_EXPECTINGTAGEND","features":[305]},{"name":"ERROR_SXS_XML_E_INCOMPLETE_ENCODING","features":[305]},{"name":"ERROR_SXS_XML_E_INTERNALERROR","features":[305]},{"name":"ERROR_SXS_XML_E_INVALIDATROOTLEVEL","features":[305]},{"name":"ERROR_SXS_XML_E_INVALIDENCODING","features":[305]},{"name":"ERROR_SXS_XML_E_INVALIDSWITCH","features":[305]},{"name":"ERROR_SXS_XML_E_INVALID_DECIMAL","features":[305]},{"name":"ERROR_SXS_XML_E_INVALID_HEXIDECIMAL","features":[305]},{"name":"ERROR_SXS_XML_E_INVALID_STANDALONE","features":[305]},{"name":"ERROR_SXS_XML_E_INVALID_UNICODE","features":[305]},{"name":"ERROR_SXS_XML_E_INVALID_VERSION","features":[305]},{"name":"ERROR_SXS_XML_E_MISSINGEQUALS","features":[305]},{"name":"ERROR_SXS_XML_E_MISSINGQUOTE","features":[305]},{"name":"ERROR_SXS_XML_E_MISSINGROOT","features":[305]},{"name":"ERROR_SXS_XML_E_MISSINGSEMICOLON","features":[305]},{"name":"ERROR_SXS_XML_E_MISSINGWHITESPACE","features":[305]},{"name":"ERROR_SXS_XML_E_MISSING_PAREN","features":[305]},{"name":"ERROR_SXS_XML_E_MULTIPLEROOTS","features":[305]},{"name":"ERROR_SXS_XML_E_MULTIPLE_COLONS","features":[305]},{"name":"ERROR_SXS_XML_E_RESERVEDNAMESPACE","features":[305]},{"name":"ERROR_SXS_XML_E_UNBALANCEDPAREN","features":[305]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCDATA","features":[305]},{"name":"ERROR_SXS_XML_E_UNCLOSEDCOMMENT","features":[305]},{"name":"ERROR_SXS_XML_E_UNCLOSEDDECL","features":[305]},{"name":"ERROR_SXS_XML_E_UNCLOSEDENDTAG","features":[305]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTARTTAG","features":[305]},{"name":"ERROR_SXS_XML_E_UNCLOSEDSTRING","features":[305]},{"name":"ERROR_SXS_XML_E_UNCLOSEDTAG","features":[305]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDENDTAG","features":[305]},{"name":"ERROR_SXS_XML_E_UNEXPECTEDEOF","features":[305]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_STANDALONE","features":[305]},{"name":"ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE","features":[305]},{"name":"ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK","features":[305]},{"name":"ERROR_SXS_XML_E_XMLDECLSYNTAX","features":[305]},{"name":"ERROR_SYMLINK_CLASS_DISABLED","features":[305]},{"name":"ERROR_SYMLINK_NOT_SUPPORTED","features":[305]},{"name":"ERROR_SYNCHRONIZATION_REQUIRED","features":[305]},{"name":"ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED","features":[305]},{"name":"ERROR_SYSTEM_DEVICE_NOT_FOUND","features":[305]},{"name":"ERROR_SYSTEM_HIVE_TOO_LARGE","features":[305]},{"name":"ERROR_SYSTEM_IMAGE_BAD_SIGNATURE","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_INVALID_POLICY","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[305]},{"name":"ERROR_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[305]},{"name":"ERROR_SYSTEM_NEEDS_REMEDIATION","features":[305]},{"name":"ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[305]},{"name":"ERROR_SYSTEM_POWERSTATE_TRANSITION","features":[305]},{"name":"ERROR_SYSTEM_PROCESS_TERMINATED","features":[305]},{"name":"ERROR_SYSTEM_SHUTDOWN","features":[305]},{"name":"ERROR_SYSTEM_TRACE","features":[305]},{"name":"ERROR_TAG_NOT_FOUND","features":[305]},{"name":"ERROR_TAG_NOT_PRESENT","features":[305]},{"name":"ERROR_THREAD_1_INACTIVE","features":[305]},{"name":"ERROR_THREAD_ALREADY_IN_TASK","features":[305]},{"name":"ERROR_THREAD_MODE_ALREADY_BACKGROUND","features":[305]},{"name":"ERROR_THREAD_MODE_NOT_BACKGROUND","features":[305]},{"name":"ERROR_THREAD_NOT_IN_PROCESS","features":[305]},{"name":"ERROR_THREAD_WAS_SUSPENDED","features":[305]},{"name":"ERROR_TIERING_ALREADY_PROCESSING","features":[305]},{"name":"ERROR_TIERING_CANNOT_PIN_OBJECT","features":[305]},{"name":"ERROR_TIERING_FILE_IS_NOT_PINNED","features":[305]},{"name":"ERROR_TIERING_INVALID_FILE_ID","features":[305]},{"name":"ERROR_TIERING_NOT_SUPPORTED_ON_VOLUME","features":[305]},{"name":"ERROR_TIERING_STORAGE_TIER_NOT_FOUND","features":[305]},{"name":"ERROR_TIERING_VOLUME_DISMOUNT_IN_PROGRESS","features":[305]},{"name":"ERROR_TIERING_WRONG_CLUSTER_NODE","features":[305]},{"name":"ERROR_TIMEOUT","features":[305]},{"name":"ERROR_TIMER_NOT_CANCELED","features":[305]},{"name":"ERROR_TIMER_RESOLUTION_NOT_SET","features":[305]},{"name":"ERROR_TIMER_RESUME_IGNORED","features":[305]},{"name":"ERROR_TIME_SENSITIVE_THREAD","features":[305]},{"name":"ERROR_TIME_SKEW","features":[305]},{"name":"ERROR_TLW_WITH_WSCHILD","features":[305]},{"name":"ERROR_TM_IDENTITY_MISMATCH","features":[305]},{"name":"ERROR_TM_INITIALIZATION_FAILED","features":[305]},{"name":"ERROR_TM_VOLATILE","features":[305]},{"name":"ERROR_TOKEN_ALREADY_IN_USE","features":[305]},{"name":"ERROR_TOO_MANY_CMDS","features":[305]},{"name":"ERROR_TOO_MANY_CONTEXT_IDS","features":[305]},{"name":"ERROR_TOO_MANY_DESCRIPTORS","features":[305]},{"name":"ERROR_TOO_MANY_LINKS","features":[305]},{"name":"ERROR_TOO_MANY_LUIDS_REQUESTED","features":[305]},{"name":"ERROR_TOO_MANY_MODULES","features":[305]},{"name":"ERROR_TOO_MANY_MUXWAITERS","features":[305]},{"name":"ERROR_TOO_MANY_NAMES","features":[305]},{"name":"ERROR_TOO_MANY_OPEN_FILES","features":[305]},{"name":"ERROR_TOO_MANY_POSTS","features":[305]},{"name":"ERROR_TOO_MANY_SECRETS","features":[305]},{"name":"ERROR_TOO_MANY_SEMAPHORES","features":[305]},{"name":"ERROR_TOO_MANY_SEM_REQUESTS","features":[305]},{"name":"ERROR_TOO_MANY_SESS","features":[305]},{"name":"ERROR_TOO_MANY_SIDS","features":[305]},{"name":"ERROR_TOO_MANY_TCBS","features":[305]},{"name":"ERROR_TOO_MANY_THREADS","features":[305]},{"name":"ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[305]},{"name":"ERROR_TRANSACTIONAL_CONFLICT","features":[305]},{"name":"ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[305]},{"name":"ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[305]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_FOUND","features":[305]},{"name":"ERROR_TRANSACTIONMANAGER_NOT_ONLINE","features":[305]},{"name":"ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[305]},{"name":"ERROR_TRANSACTIONS_NOT_FROZEN","features":[305]},{"name":"ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[305]},{"name":"ERROR_TRANSACTION_ALREADY_ABORTED","features":[305]},{"name":"ERROR_TRANSACTION_ALREADY_COMMITTED","features":[305]},{"name":"ERROR_TRANSACTION_FREEZE_IN_PROGRESS","features":[305]},{"name":"ERROR_TRANSACTION_INTEGRITY_VIOLATED","features":[305]},{"name":"ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[305]},{"name":"ERROR_TRANSACTION_MUST_WRITETHROUGH","features":[305]},{"name":"ERROR_TRANSACTION_NOT_ACTIVE","features":[305]},{"name":"ERROR_TRANSACTION_NOT_ENLISTED","features":[305]},{"name":"ERROR_TRANSACTION_NOT_FOUND","features":[305]},{"name":"ERROR_TRANSACTION_NOT_JOINED","features":[305]},{"name":"ERROR_TRANSACTION_NOT_REQUESTED","features":[305]},{"name":"ERROR_TRANSACTION_NOT_ROOT","features":[305]},{"name":"ERROR_TRANSACTION_NO_SUPERIOR","features":[305]},{"name":"ERROR_TRANSACTION_OBJECT_EXPIRED","features":[305]},{"name":"ERROR_TRANSACTION_PROPAGATION_FAILED","features":[305]},{"name":"ERROR_TRANSACTION_RECORD_TOO_LONG","features":[305]},{"name":"ERROR_TRANSACTION_REQUEST_NOT_VALID","features":[305]},{"name":"ERROR_TRANSACTION_REQUIRED_PROMOTION","features":[305]},{"name":"ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[305]},{"name":"ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[305]},{"name":"ERROR_TRANSACTION_SUPERIOR_EXISTS","features":[305]},{"name":"ERROR_TRANSFORM_NOT_SUPPORTED","features":[305]},{"name":"ERROR_TRANSLATION_COMPLETE","features":[305]},{"name":"ERROR_TRANSPORT_FULL","features":[305]},{"name":"ERROR_TRUSTED_DOMAIN_FAILURE","features":[305]},{"name":"ERROR_TRUSTED_RELATIONSHIP_FAILURE","features":[305]},{"name":"ERROR_TRUST_FAILURE","features":[305]},{"name":"ERROR_TS_INCOMPATIBLE_SESSIONS","features":[305]},{"name":"ERROR_TS_VIDEO_SUBSYSTEM_ERROR","features":[305]},{"name":"ERROR_TXF_ATTRIBUTE_CORRUPT","features":[305]},{"name":"ERROR_TXF_DIR_NOT_EMPTY","features":[305]},{"name":"ERROR_TXF_METADATA_ALREADY_PRESENT","features":[305]},{"name":"ERROR_UNABLE_TO_CLEAN","features":[305]},{"name":"ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA","features":[305]},{"name":"ERROR_UNABLE_TO_INVENTORY_DRIVE","features":[305]},{"name":"ERROR_UNABLE_TO_INVENTORY_SLOT","features":[305]},{"name":"ERROR_UNABLE_TO_INVENTORY_TRANSPORT","features":[305]},{"name":"ERROR_UNABLE_TO_LOAD_MEDIUM","features":[305]},{"name":"ERROR_UNABLE_TO_LOCK_MEDIA","features":[305]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT","features":[305]},{"name":"ERROR_UNABLE_TO_MOVE_REPLACEMENT_2","features":[305]},{"name":"ERROR_UNABLE_TO_REMOVE_REPLACED","features":[305]},{"name":"ERROR_UNABLE_TO_UNLOAD_MEDIA","features":[305]},{"name":"ERROR_UNDEFINED_CHARACTER","features":[305]},{"name":"ERROR_UNDEFINED_SCOPE","features":[305]},{"name":"ERROR_UNEXPECTED_MM_CREATE_ERR","features":[305]},{"name":"ERROR_UNEXPECTED_MM_EXTEND_ERR","features":[305]},{"name":"ERROR_UNEXPECTED_MM_MAP_ERROR","features":[305]},{"name":"ERROR_UNEXPECTED_NTCACHEMANAGER_ERROR","features":[305]},{"name":"ERROR_UNEXPECTED_OMID","features":[305]},{"name":"ERROR_UNEXP_NET_ERR","features":[305]},{"name":"ERROR_UNHANDLED_EXCEPTION","features":[305]},{"name":"ERROR_UNIDENTIFIED_ERROR","features":[305]},{"name":"ERROR_UNKNOWN_COMPONENT","features":[305]},{"name":"ERROR_UNKNOWN_EXCEPTION","features":[305]},{"name":"ERROR_UNKNOWN_FEATURE","features":[305]},{"name":"ERROR_UNKNOWN_PATCH","features":[305]},{"name":"ERROR_UNKNOWN_PORT","features":[305]},{"name":"ERROR_UNKNOWN_PRINTER_DRIVER","features":[305]},{"name":"ERROR_UNKNOWN_PRINTPROCESSOR","features":[305]},{"name":"ERROR_UNKNOWN_PRINT_MONITOR","features":[305]},{"name":"ERROR_UNKNOWN_PRODUCT","features":[305]},{"name":"ERROR_UNKNOWN_PROPERTY","features":[305]},{"name":"ERROR_UNKNOWN_PROTOCOL_ID","features":[305]},{"name":"ERROR_UNKNOWN_REVISION","features":[305]},{"name":"ERROR_UNMAPPED_SUBSTITUTION_STRING","features":[305]},{"name":"ERROR_UNRECOGNIZED_MEDIA","features":[305]},{"name":"ERROR_UNRECOGNIZED_VOLUME","features":[305]},{"name":"ERROR_UNRECOVERABLE_STACK_OVERFLOW","features":[305]},{"name":"ERROR_UNSATISFIED_DEPENDENCIES","features":[305]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_CONTENT","features":[305]},{"name":"ERROR_UNSIGNED_PACKAGE_INVALID_PUBLISHER_NAMESPACE","features":[305]},{"name":"ERROR_UNSUPPORTED_COMPRESSION","features":[305]},{"name":"ERROR_UNSUPPORTED_TYPE","features":[305]},{"name":"ERROR_UNTRUSTED_MOUNT_POINT","features":[305]},{"name":"ERROR_UNWIND","features":[305]},{"name":"ERROR_UNWIND_CONSOLIDATE","features":[305]},{"name":"ERROR_UPDATE_IN_PROGRESS","features":[305]},{"name":"ERROR_USER_APC","features":[305]},{"name":"ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[305]},{"name":"ERROR_USER_EXISTS","features":[305]},{"name":"ERROR_USER_LIMIT","features":[305]},{"name":"ERROR_USER_MAPPED_FILE","features":[305]},{"name":"ERROR_USER_PROFILE_LOAD","features":[305]},{"name":"ERROR_VALIDATE_CONTINUE","features":[305]},{"name":"ERROR_VC_DISCONNECTED","features":[305]},{"name":"ERROR_VDM_DISALLOWED","features":[305]},{"name":"ERROR_VDM_HARD_ERROR","features":[305]},{"name":"ERROR_VERIFIER_STOP","features":[305]},{"name":"ERROR_VERSION_PARSE_ERROR","features":[305]},{"name":"ERROR_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[305]},{"name":"ERROR_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[305]},{"name":"ERROR_VHD_BITMAP_MISMATCH","features":[305]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_FAILURE","features":[305]},{"name":"ERROR_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[305]},{"name":"ERROR_VHD_CHANGE_TRACKING_DISABLED","features":[305]},{"name":"ERROR_VHD_CHILD_PARENT_ID_MISMATCH","features":[305]},{"name":"ERROR_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[305]},{"name":"ERROR_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[305]},{"name":"ERROR_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[305]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[305]},{"name":"ERROR_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[305]},{"name":"ERROR_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[305]},{"name":"ERROR_VHD_DRIVE_FOOTER_CORRUPT","features":[305]},{"name":"ERROR_VHD_DRIVE_FOOTER_MISSING","features":[305]},{"name":"ERROR_VHD_FORMAT_UNKNOWN","features":[305]},{"name":"ERROR_VHD_FORMAT_UNSUPPORTED_VERSION","features":[305]},{"name":"ERROR_VHD_INVALID_BLOCK_SIZE","features":[305]},{"name":"ERROR_VHD_INVALID_CHANGE_TRACKING_ID","features":[305]},{"name":"ERROR_VHD_INVALID_FILE_SIZE","features":[305]},{"name":"ERROR_VHD_INVALID_SIZE","features":[305]},{"name":"ERROR_VHD_INVALID_STATE","features":[305]},{"name":"ERROR_VHD_INVALID_TYPE","features":[305]},{"name":"ERROR_VHD_METADATA_FULL","features":[305]},{"name":"ERROR_VHD_METADATA_READ_FAILURE","features":[305]},{"name":"ERROR_VHD_METADATA_WRITE_FAILURE","features":[305]},{"name":"ERROR_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[305]},{"name":"ERROR_VHD_PARENT_VHD_ACCESS_DENIED","features":[305]},{"name":"ERROR_VHD_PARENT_VHD_NOT_FOUND","features":[305]},{"name":"ERROR_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[305]},{"name":"ERROR_VHD_SHARED","features":[305]},{"name":"ERROR_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[305]},{"name":"ERROR_VHD_SPARSE_HEADER_CORRUPT","features":[305]},{"name":"ERROR_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[305]},{"name":"ERROR_VHD_UNEXPECTED_ID","features":[305]},{"name":"ERROR_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[305]},{"name":"ERROR_VID_DUPLICATE_HANDLER","features":[305]},{"name":"ERROR_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[305]},{"name":"ERROR_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[305]},{"name":"ERROR_VID_HANDLER_NOT_PRESENT","features":[305]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[305]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[305]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[305]},{"name":"ERROR_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[305]},{"name":"ERROR_VID_INVALID_CHILD_GPA_PAGE_SET","features":[305]},{"name":"ERROR_VID_INVALID_GPA_RANGE_HANDLE","features":[305]},{"name":"ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[305]},{"name":"ERROR_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[305]},{"name":"ERROR_VID_INVALID_NUMA_NODE_INDEX","features":[305]},{"name":"ERROR_VID_INVALID_NUMA_SETTINGS","features":[305]},{"name":"ERROR_VID_INVALID_OBJECT_NAME","features":[305]},{"name":"ERROR_VID_INVALID_PPM_HANDLE","features":[305]},{"name":"ERROR_VID_INVALID_PROCESSOR_STATE","features":[305]},{"name":"ERROR_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[305]},{"name":"ERROR_VID_MBPS_ARE_LOCKED","features":[305]},{"name":"ERROR_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[305]},{"name":"ERROR_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[305]},{"name":"ERROR_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[305]},{"name":"ERROR_VID_MB_STILL_REFERENCED","features":[305]},{"name":"ERROR_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[305]},{"name":"ERROR_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[305]},{"name":"ERROR_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[305]},{"name":"ERROR_VID_MESSAGE_QUEUE_CLOSED","features":[305]},{"name":"ERROR_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[305]},{"name":"ERROR_VID_MMIO_RANGE_DESTROYED","features":[305]},{"name":"ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[305]},{"name":"ERROR_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[305]},{"name":"ERROR_VID_PAGE_RANGE_OVERFLOW","features":[305]},{"name":"ERROR_VID_PARTITION_ALREADY_EXISTS","features":[305]},{"name":"ERROR_VID_PARTITION_DOES_NOT_EXIST","features":[305]},{"name":"ERROR_VID_PARTITION_NAME_NOT_FOUND","features":[305]},{"name":"ERROR_VID_PARTITION_NAME_TOO_LONG","features":[305]},{"name":"ERROR_VID_PROCESS_ALREADY_SET","features":[305]},{"name":"ERROR_VID_QUEUE_FULL","features":[305]},{"name":"ERROR_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[305]},{"name":"ERROR_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[305]},{"name":"ERROR_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[305]},{"name":"ERROR_VID_SAVED_STATE_CORRUPT","features":[305]},{"name":"ERROR_VID_SAVED_STATE_INCOMPATIBLE","features":[305]},{"name":"ERROR_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[305]},{"name":"ERROR_VID_STOP_PENDING","features":[305]},{"name":"ERROR_VID_TOO_MANY_HANDLERS","features":[305]},{"name":"ERROR_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[305]},{"name":"ERROR_VID_VTL_ACCESS_DENIED","features":[305]},{"name":"ERROR_VIRTDISK_DISK_ALREADY_OWNED","features":[305]},{"name":"ERROR_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[305]},{"name":"ERROR_VIRTDISK_NOT_VIRTUAL_DISK","features":[305]},{"name":"ERROR_VIRTDISK_PROVIDER_NOT_FOUND","features":[305]},{"name":"ERROR_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[305]},{"name":"ERROR_VIRTUAL_DISK_LIMITATION","features":[305]},{"name":"ERROR_VIRUS_DELETED","features":[305]},{"name":"ERROR_VIRUS_INFECTED","features":[305]},{"name":"ERROR_VMCOMPUTE_CONNECTION_CLOSED","features":[305]},{"name":"ERROR_VMCOMPUTE_CONNECT_FAILED","features":[305]},{"name":"ERROR_VMCOMPUTE_HYPERV_NOT_INSTALLED","features":[305]},{"name":"ERROR_VMCOMPUTE_IMAGE_MISMATCH","features":[305]},{"name":"ERROR_VMCOMPUTE_INVALID_JSON","features":[305]},{"name":"ERROR_VMCOMPUTE_INVALID_LAYER","features":[305]},{"name":"ERROR_VMCOMPUTE_INVALID_STATE","features":[305]},{"name":"ERROR_VMCOMPUTE_OPERATION_PENDING","features":[305]},{"name":"ERROR_VMCOMPUTE_PROTOCOL_ERROR","features":[305]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_EXISTS","features":[305]},{"name":"ERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED","features":[305]},{"name":"ERROR_VMCOMPUTE_SYSTEM_NOT_FOUND","features":[305]},{"name":"ERROR_VMCOMPUTE_TERMINATED","features":[305]},{"name":"ERROR_VMCOMPUTE_TERMINATED_DURING_START","features":[305]},{"name":"ERROR_VMCOMPUTE_TIMEOUT","features":[305]},{"name":"ERROR_VMCOMPUTE_TOO_MANY_NOTIFICATIONS","features":[305]},{"name":"ERROR_VMCOMPUTE_UNEXPECTED_EXIT","features":[305]},{"name":"ERROR_VMCOMPUTE_UNKNOWN_MESSAGE","features":[305]},{"name":"ERROR_VMCOMPUTE_UNSUPPORTED_PROTOCOL_VERSION","features":[305]},{"name":"ERROR_VMCOMPUTE_WINDOWS_INSIDER_REQUIRED","features":[305]},{"name":"ERROR_VNET_VIRTUAL_SWITCH_NAME_NOT_FOUND","features":[305]},{"name":"ERROR_VOLMGR_ALL_DISKS_FAILED","features":[305]},{"name":"ERROR_VOLMGR_BAD_BOOT_DISK","features":[305]},{"name":"ERROR_VOLMGR_DATABASE_FULL","features":[305]},{"name":"ERROR_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[305]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[305]},{"name":"ERROR_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[305]},{"name":"ERROR_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[305]},{"name":"ERROR_VOLMGR_DISK_DUPLICATE","features":[305]},{"name":"ERROR_VOLMGR_DISK_DYNAMIC","features":[305]},{"name":"ERROR_VOLMGR_DISK_ID_INVALID","features":[305]},{"name":"ERROR_VOLMGR_DISK_INVALID","features":[305]},{"name":"ERROR_VOLMGR_DISK_LAST_VOTER","features":[305]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_INVALID","features":[305]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[305]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[305]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[305]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[305]},{"name":"ERROR_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[305]},{"name":"ERROR_VOLMGR_DISK_MISSING","features":[305]},{"name":"ERROR_VOLMGR_DISK_NOT_EMPTY","features":[305]},{"name":"ERROR_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[305]},{"name":"ERROR_VOLMGR_DISK_REVECTORING_FAILED","features":[305]},{"name":"ERROR_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[305]},{"name":"ERROR_VOLMGR_DISK_SET_NOT_CONTAINED","features":[305]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[305]},{"name":"ERROR_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[305]},{"name":"ERROR_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[305]},{"name":"ERROR_VOLMGR_EXTENT_ALREADY_USED","features":[305]},{"name":"ERROR_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[305]},{"name":"ERROR_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[305]},{"name":"ERROR_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[305]},{"name":"ERROR_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[305]},{"name":"ERROR_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[305]},{"name":"ERROR_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[305]},{"name":"ERROR_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[305]},{"name":"ERROR_VOLMGR_INCOMPLETE_REGENERATION","features":[305]},{"name":"ERROR_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[305]},{"name":"ERROR_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[305]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[305]},{"name":"ERROR_VOLMGR_MEMBER_INDEX_INVALID","features":[305]},{"name":"ERROR_VOLMGR_MEMBER_IN_SYNC","features":[305]},{"name":"ERROR_VOLMGR_MEMBER_MISSING","features":[305]},{"name":"ERROR_VOLMGR_MEMBER_NOT_DETACHED","features":[305]},{"name":"ERROR_VOLMGR_MEMBER_REGENERATING","features":[305]},{"name":"ERROR_VOLMGR_MIRROR_NOT_SUPPORTED","features":[305]},{"name":"ERROR_VOLMGR_NOTIFICATION_RESET","features":[305]},{"name":"ERROR_VOLMGR_NOT_PRIMARY_PACK","features":[305]},{"name":"ERROR_VOLMGR_NO_REGISTERED_USERS","features":[305]},{"name":"ERROR_VOLMGR_NO_SUCH_USER","features":[305]},{"name":"ERROR_VOLMGR_NO_VALID_LOG_COPIES","features":[305]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[305]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[305]},{"name":"ERROR_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[305]},{"name":"ERROR_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[305]},{"name":"ERROR_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[305]},{"name":"ERROR_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[305]},{"name":"ERROR_VOLMGR_PACK_CONFIG_OFFLINE","features":[305]},{"name":"ERROR_VOLMGR_PACK_CONFIG_ONLINE","features":[305]},{"name":"ERROR_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[305]},{"name":"ERROR_VOLMGR_PACK_DUPLICATE","features":[305]},{"name":"ERROR_VOLMGR_PACK_HAS_QUORUM","features":[305]},{"name":"ERROR_VOLMGR_PACK_ID_INVALID","features":[305]},{"name":"ERROR_VOLMGR_PACK_INVALID","features":[305]},{"name":"ERROR_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[305]},{"name":"ERROR_VOLMGR_PACK_NAME_INVALID","features":[305]},{"name":"ERROR_VOLMGR_PACK_OFFLINE","features":[305]},{"name":"ERROR_VOLMGR_PACK_WITHOUT_QUORUM","features":[305]},{"name":"ERROR_VOLMGR_PARTITION_STYLE_INVALID","features":[305]},{"name":"ERROR_VOLMGR_PARTITION_UPDATE_FAILED","features":[305]},{"name":"ERROR_VOLMGR_PLEX_INDEX_DUPLICATE","features":[305]},{"name":"ERROR_VOLMGR_PLEX_INDEX_INVALID","features":[305]},{"name":"ERROR_VOLMGR_PLEX_IN_SYNC","features":[305]},{"name":"ERROR_VOLMGR_PLEX_LAST_ACTIVE","features":[305]},{"name":"ERROR_VOLMGR_PLEX_MISSING","features":[305]},{"name":"ERROR_VOLMGR_PLEX_NOT_RAID5","features":[305]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE","features":[305]},{"name":"ERROR_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[305]},{"name":"ERROR_VOLMGR_PLEX_REGENERATING","features":[305]},{"name":"ERROR_VOLMGR_PLEX_TYPE_INVALID","features":[305]},{"name":"ERROR_VOLMGR_PRIMARY_PACK_PRESENT","features":[305]},{"name":"ERROR_VOLMGR_RAID5_NOT_SUPPORTED","features":[305]},{"name":"ERROR_VOLMGR_STRUCTURE_SIZE_INVALID","features":[305]},{"name":"ERROR_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[305]},{"name":"ERROR_VOLMGR_TRANSACTION_IN_PROGRESS","features":[305]},{"name":"ERROR_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_ID_INVALID","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_INVALID","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_MIRRORED","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_NOT_MIRRORED","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_NOT_RETAINED","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_OFFLINE","features":[305]},{"name":"ERROR_VOLMGR_VOLUME_RETAINED","features":[305]},{"name":"ERROR_VOLSNAP_ACTIVATION_TIMEOUT","features":[305]},{"name":"ERROR_VOLSNAP_BOOTFILE_NOT_VALID","features":[305]},{"name":"ERROR_VOLSNAP_HIBERNATE_READY","features":[305]},{"name":"ERROR_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[305]},{"name":"ERROR_VOLSNAP_PREPARE_HIBERNATE","features":[305]},{"name":"ERROR_VOLUME_CONTAINS_SYS_FILES","features":[305]},{"name":"ERROR_VOLUME_DIRTY","features":[305]},{"name":"ERROR_VOLUME_MOUNTED","features":[305]},{"name":"ERROR_VOLUME_NOT_CLUSTER_ALIGNED","features":[305]},{"name":"ERROR_VOLUME_NOT_SIS_ENABLED","features":[305]},{"name":"ERROR_VOLUME_NOT_SUPPORTED","features":[305]},{"name":"ERROR_VOLUME_NOT_SUPPORT_EFS","features":[305]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED","features":[305]},{"name":"ERROR_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[305]},{"name":"ERROR_VOLUME_UPGRADE_NOT_NEEDED","features":[305]},{"name":"ERROR_VOLUME_UPGRADE_PENDING","features":[305]},{"name":"ERROR_VOLUME_WRITE_ACCESS_DENIED","features":[305]},{"name":"ERROR_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[305]},{"name":"ERROR_VRF_VOLATILE_NMI_REGISTERED","features":[305]},{"name":"ERROR_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[305]},{"name":"ERROR_VRF_VOLATILE_NOT_STOPPABLE","features":[305]},{"name":"ERROR_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[305]},{"name":"ERROR_VRF_VOLATILE_PROTECTED_DRIVER","features":[305]},{"name":"ERROR_VRF_VOLATILE_SAFE_MODE","features":[305]},{"name":"ERROR_VRF_VOLATILE_SETTINGS_CONFLICT","features":[305]},{"name":"ERROR_VSMB_SAVED_STATE_CORRUPT","features":[305]},{"name":"ERROR_VSMB_SAVED_STATE_FILE_NOT_FOUND","features":[305]},{"name":"ERROR_VSM_DMA_PROTECTION_NOT_IN_USE","features":[305]},{"name":"ERROR_VSM_NOT_INITIALIZED","features":[305]},{"name":"ERROR_WAIT_1","features":[305]},{"name":"ERROR_WAIT_2","features":[305]},{"name":"ERROR_WAIT_3","features":[305]},{"name":"ERROR_WAIT_63","features":[305]},{"name":"ERROR_WAIT_FOR_OPLOCK","features":[305]},{"name":"ERROR_WAIT_NO_CHILDREN","features":[305]},{"name":"ERROR_WAKE_SYSTEM","features":[305]},{"name":"ERROR_WAKE_SYSTEM_DEBUGGER","features":[305]},{"name":"ERROR_WAS_LOCKED","features":[305]},{"name":"ERROR_WAS_UNLOCKED","features":[305]},{"name":"ERROR_WEAK_WHFBKEY_BLOCKED","features":[305]},{"name":"ERROR_WINDOW_NOT_COMBOBOX","features":[305]},{"name":"ERROR_WINDOW_NOT_DIALOG","features":[305]},{"name":"ERROR_WINDOW_OF_OTHER_THREAD","features":[305]},{"name":"ERROR_WINS_INTERNAL","features":[305]},{"name":"ERROR_WIP_ENCRYPTION_FAILED","features":[305]},{"name":"ERROR_WMI_ALREADY_DISABLED","features":[305]},{"name":"ERROR_WMI_ALREADY_ENABLED","features":[305]},{"name":"ERROR_WMI_DP_FAILED","features":[305]},{"name":"ERROR_WMI_DP_NOT_FOUND","features":[305]},{"name":"ERROR_WMI_GUID_DISCONNECTED","features":[305]},{"name":"ERROR_WMI_GUID_NOT_FOUND","features":[305]},{"name":"ERROR_WMI_INSTANCE_NOT_FOUND","features":[305]},{"name":"ERROR_WMI_INVALID_MOF","features":[305]},{"name":"ERROR_WMI_INVALID_REGINFO","features":[305]},{"name":"ERROR_WMI_ITEMID_NOT_FOUND","features":[305]},{"name":"ERROR_WMI_READ_ONLY","features":[305]},{"name":"ERROR_WMI_SERVER_UNAVAILABLE","features":[305]},{"name":"ERROR_WMI_SET_FAILURE","features":[305]},{"name":"ERROR_WMI_TRY_AGAIN","features":[305]},{"name":"ERROR_WMI_UNRESOLVED_INSTANCE_REF","features":[305]},{"name":"ERROR_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[305]},{"name":"ERROR_WOF_WIM_HEADER_CORRUPT","features":[305]},{"name":"ERROR_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[305]},{"name":"ERROR_WORKING_SET_QUOTA","features":[305]},{"name":"ERROR_WOW_ASSERTION","features":[305]},{"name":"ERROR_WRITE_FAULT","features":[305]},{"name":"ERROR_WRITE_PROTECT","features":[305]},{"name":"ERROR_WRONG_COMPARTMENT","features":[305]},{"name":"ERROR_WRONG_DISK","features":[305]},{"name":"ERROR_WRONG_EFS","features":[305]},{"name":"ERROR_WRONG_INF_STYLE","features":[305]},{"name":"ERROR_WRONG_INF_TYPE","features":[305]},{"name":"ERROR_WRONG_PASSWORD","features":[305]},{"name":"ERROR_WRONG_TARGET_NAME","features":[305]},{"name":"ERROR_WX86_ERROR","features":[305]},{"name":"ERROR_WX86_WARNING","features":[305]},{"name":"ERROR_XMLDSIG_ERROR","features":[305]},{"name":"ERROR_XML_ENCODING_MISMATCH","features":[305]},{"name":"ERROR_XML_PARSE_ERROR","features":[305]},{"name":"EVENT_E_ALL_SUBSCRIBERS_FAILED","features":[305]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT","features":[305]},{"name":"EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT","features":[305]},{"name":"EVENT_E_COMPLUS_NOT_INSTALLED","features":[305]},{"name":"EVENT_E_FIRST","features":[305]},{"name":"EVENT_E_INTERNALERROR","features":[305]},{"name":"EVENT_E_INTERNALEXCEPTION","features":[305]},{"name":"EVENT_E_INVALID_EVENT_CLASS_PARTITION","features":[305]},{"name":"EVENT_E_INVALID_PER_USER_SID","features":[305]},{"name":"EVENT_E_LAST","features":[305]},{"name":"EVENT_E_MISSING_EVENTCLASS","features":[305]},{"name":"EVENT_E_NOT_ALL_REMOVED","features":[305]},{"name":"EVENT_E_PER_USER_SID_NOT_LOGGED_ON","features":[305]},{"name":"EVENT_E_QUERYFIELD","features":[305]},{"name":"EVENT_E_QUERYSYNTAX","features":[305]},{"name":"EVENT_E_TOO_MANY_METHODS","features":[305]},{"name":"EVENT_E_USER_EXCEPTION","features":[305]},{"name":"EVENT_S_FIRST","features":[305]},{"name":"EVENT_S_LAST","features":[305]},{"name":"EVENT_S_NOSUBSCRIBERS","features":[305]},{"name":"EVENT_S_SOME_SUBSCRIBERS_FAILED","features":[305]},{"name":"EXCEPTION_ACCESS_VIOLATION","features":[305]},{"name":"EXCEPTION_ARRAY_BOUNDS_EXCEEDED","features":[305]},{"name":"EXCEPTION_BREAKPOINT","features":[305]},{"name":"EXCEPTION_DATATYPE_MISALIGNMENT","features":[305]},{"name":"EXCEPTION_FLT_DENORMAL_OPERAND","features":[305]},{"name":"EXCEPTION_FLT_DIVIDE_BY_ZERO","features":[305]},{"name":"EXCEPTION_FLT_INEXACT_RESULT","features":[305]},{"name":"EXCEPTION_FLT_INVALID_OPERATION","features":[305]},{"name":"EXCEPTION_FLT_OVERFLOW","features":[305]},{"name":"EXCEPTION_FLT_STACK_CHECK","features":[305]},{"name":"EXCEPTION_FLT_UNDERFLOW","features":[305]},{"name":"EXCEPTION_GUARD_PAGE","features":[305]},{"name":"EXCEPTION_ILLEGAL_INSTRUCTION","features":[305]},{"name":"EXCEPTION_INT_DIVIDE_BY_ZERO","features":[305]},{"name":"EXCEPTION_INT_OVERFLOW","features":[305]},{"name":"EXCEPTION_INVALID_DISPOSITION","features":[305]},{"name":"EXCEPTION_INVALID_HANDLE","features":[305]},{"name":"EXCEPTION_IN_PAGE_ERROR","features":[305]},{"name":"EXCEPTION_NONCONTINUABLE_EXCEPTION","features":[305]},{"name":"EXCEPTION_POSSIBLE_DEADLOCK","features":[305]},{"name":"EXCEPTION_PRIV_INSTRUCTION","features":[305]},{"name":"EXCEPTION_SINGLE_STEP","features":[305]},{"name":"EXCEPTION_SPAPI_UNRECOVERABLE_STACK_OVERFLOW","features":[305]},{"name":"EXCEPTION_STACK_OVERFLOW","features":[305]},{"name":"E_ABORT","features":[305]},{"name":"E_ACCESSDENIED","features":[305]},{"name":"E_APPLICATION_ACTIVATION_EXEC_FAILURE","features":[305]},{"name":"E_APPLICATION_ACTIVATION_TIMED_OUT","features":[305]},{"name":"E_APPLICATION_EXITING","features":[305]},{"name":"E_APPLICATION_MANAGER_NOT_RUNNING","features":[305]},{"name":"E_APPLICATION_NOT_REGISTERED","features":[305]},{"name":"E_APPLICATION_TEMPORARY_LICENSE_ERROR","features":[305]},{"name":"E_APPLICATION_TRIAL_LICENSE_EXPIRED","features":[305]},{"name":"E_APPLICATION_VIEW_EXITING","features":[305]},{"name":"E_ASYNC_OPERATION_NOT_STARTED","features":[305]},{"name":"E_AUDIO_ENGINE_NODE_NOT_FOUND","features":[305]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_FOUND","features":[305]},{"name":"E_BLUETOOTH_ATT_ATTRIBUTE_NOT_LONG","features":[305]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[305]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[305]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION","features":[305]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[305]},{"name":"E_BLUETOOTH_ATT_INSUFFICIENT_RESOURCES","features":[305]},{"name":"E_BLUETOOTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[305]},{"name":"E_BLUETOOTH_ATT_INVALID_HANDLE","features":[305]},{"name":"E_BLUETOOTH_ATT_INVALID_OFFSET","features":[305]},{"name":"E_BLUETOOTH_ATT_INVALID_PDU","features":[305]},{"name":"E_BLUETOOTH_ATT_PREPARE_QUEUE_FULL","features":[305]},{"name":"E_BLUETOOTH_ATT_READ_NOT_PERMITTED","features":[305]},{"name":"E_BLUETOOTH_ATT_REQUEST_NOT_SUPPORTED","features":[305]},{"name":"E_BLUETOOTH_ATT_UNKNOWN_ERROR","features":[305]},{"name":"E_BLUETOOTH_ATT_UNLIKELY","features":[305]},{"name":"E_BLUETOOTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[305]},{"name":"E_BLUETOOTH_ATT_WRITE_NOT_PERMITTED","features":[305]},{"name":"E_BOUNDS","features":[305]},{"name":"E_CHANGED_STATE","features":[305]},{"name":"E_ELEVATED_ACTIVATION_NOT_SUPPORTED","features":[305]},{"name":"E_FAIL","features":[305]},{"name":"E_FULL_ADMIN_NOT_SUPPORTED","features":[305]},{"name":"E_HANDLE","features":[305]},{"name":"E_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[305]},{"name":"E_HDAUDIO_EMPTY_CONNECTION_LIST","features":[305]},{"name":"E_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[305]},{"name":"E_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[305]},{"name":"E_ILLEGAL_DELEGATE_ASSIGNMENT","features":[305]},{"name":"E_ILLEGAL_METHOD_CALL","features":[305]},{"name":"E_ILLEGAL_STATE_CHANGE","features":[305]},{"name":"E_INVALIDARG","features":[305]},{"name":"E_INVALID_PROTOCOL_FORMAT","features":[305]},{"name":"E_INVALID_PROTOCOL_OPERATION","features":[305]},{"name":"E_MBN_BAD_SIM","features":[305]},{"name":"E_MBN_CONTEXT_NOT_ACTIVATED","features":[305]},{"name":"E_MBN_DATA_CLASS_NOT_AVAILABLE","features":[305]},{"name":"E_MBN_DEFAULT_PROFILE_EXIST","features":[305]},{"name":"E_MBN_FAILURE","features":[305]},{"name":"E_MBN_INVALID_ACCESS_STRING","features":[305]},{"name":"E_MBN_INVALID_CACHE","features":[305]},{"name":"E_MBN_INVALID_PROFILE","features":[305]},{"name":"E_MBN_MAX_ACTIVATED_CONTEXTS","features":[305]},{"name":"E_MBN_NOT_REGISTERED","features":[305]},{"name":"E_MBN_PACKET_SVC_DETACHED","features":[305]},{"name":"E_MBN_PIN_DISABLED","features":[305]},{"name":"E_MBN_PIN_NOT_SUPPORTED","features":[305]},{"name":"E_MBN_PIN_REQUIRED","features":[305]},{"name":"E_MBN_PROVIDERS_NOT_FOUND","features":[305]},{"name":"E_MBN_PROVIDER_NOT_VISIBLE","features":[305]},{"name":"E_MBN_RADIO_POWER_OFF","features":[305]},{"name":"E_MBN_SERVICE_NOT_ACTIVATED","features":[305]},{"name":"E_MBN_SIM_NOT_INSERTED","features":[305]},{"name":"E_MBN_SMS_ENCODING_NOT_SUPPORTED","features":[305]},{"name":"E_MBN_SMS_FILTER_NOT_SUPPORTED","features":[305]},{"name":"E_MBN_SMS_FORMAT_NOT_SUPPORTED","features":[305]},{"name":"E_MBN_SMS_INVALID_MEMORY_INDEX","features":[305]},{"name":"E_MBN_SMS_LANG_NOT_SUPPORTED","features":[305]},{"name":"E_MBN_SMS_MEMORY_FAILURE","features":[305]},{"name":"E_MBN_SMS_MEMORY_FULL","features":[305]},{"name":"E_MBN_SMS_NETWORK_TIMEOUT","features":[305]},{"name":"E_MBN_SMS_OPERATION_NOT_ALLOWED","features":[305]},{"name":"E_MBN_SMS_UNKNOWN_SMSC_ADDRESS","features":[305]},{"name":"E_MBN_VOICE_CALL_IN_PROGRESS","features":[305]},{"name":"E_MONITOR_RESOLUTION_TOO_LOW","features":[305]},{"name":"E_MULTIPLE_EXTENSIONS_FOR_APPLICATION","features":[305]},{"name":"E_MULTIPLE_PACKAGES_FOR_FAMILY","features":[305]},{"name":"E_NOINTERFACE","features":[305]},{"name":"E_NOTIMPL","features":[305]},{"name":"E_OUTOFMEMORY","features":[305]},{"name":"E_POINTER","features":[305]},{"name":"E_PROTOCOL_EXTENSIONS_NOT_SUPPORTED","features":[305]},{"name":"E_PROTOCOL_VERSION_NOT_SUPPORTED","features":[305]},{"name":"E_SKYDRIVE_FILE_NOT_UPLOADED","features":[305]},{"name":"E_SKYDRIVE_ROOT_TARGET_CANNOT_INDEX","features":[305]},{"name":"E_SKYDRIVE_ROOT_TARGET_FILE_SYSTEM_NOT_SUPPORTED","features":[305]},{"name":"E_SKYDRIVE_ROOT_TARGET_OVERLAP","features":[305]},{"name":"E_SKYDRIVE_ROOT_TARGET_VOLUME_ROOT_NOT_SUPPORTED","features":[305]},{"name":"E_SKYDRIVE_UPDATE_AVAILABILITY_FAIL","features":[305]},{"name":"E_STRING_NOT_NULL_TERMINATED","features":[305]},{"name":"E_SUBPROTOCOL_NOT_SUPPORTED","features":[305]},{"name":"E_SYNCENGINE_CLIENT_UPDATE_NEEDED","features":[305]},{"name":"E_SYNCENGINE_FILE_IDENTIFIER_UNKNOWN","features":[305]},{"name":"E_SYNCENGINE_FILE_SIZE_EXCEEDS_REMAINING_QUOTA","features":[305]},{"name":"E_SYNCENGINE_FILE_SIZE_OVER_LIMIT","features":[305]},{"name":"E_SYNCENGINE_FILE_SYNC_PARTNER_ERROR","features":[305]},{"name":"E_SYNCENGINE_FOLDER_INACCESSIBLE","features":[305]},{"name":"E_SYNCENGINE_FOLDER_IN_REDIRECTION","features":[305]},{"name":"E_SYNCENGINE_FOLDER_ITEM_COUNT_LIMIT_EXCEEDED","features":[305]},{"name":"E_SYNCENGINE_PATH_LENGTH_LIMIT_EXCEEDED","features":[305]},{"name":"E_SYNCENGINE_PROXY_AUTHENTICATION_REQUIRED","features":[305]},{"name":"E_SYNCENGINE_REMOTE_PATH_LENGTH_LIMIT_EXCEEDED","features":[305]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_BY_SERVICE","features":[305]},{"name":"E_SYNCENGINE_REQUEST_BLOCKED_DUE_TO_CLIENT_ERROR","features":[305]},{"name":"E_SYNCENGINE_SERVICE_AUTHENTICATION_FAILED","features":[305]},{"name":"E_SYNCENGINE_SERVICE_RETURNED_UNEXPECTED_SIZE","features":[305]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_BLOCKED","features":[305]},{"name":"E_SYNCENGINE_STORAGE_SERVICE_PROVISIONING_FAILED","features":[305]},{"name":"E_SYNCENGINE_SYNC_PAUSED_BY_SERVICE","features":[305]},{"name":"E_SYNCENGINE_UNKNOWN_SERVICE_ERROR","features":[305]},{"name":"E_SYNCENGINE_UNSUPPORTED_FILE_NAME","features":[305]},{"name":"E_SYNCENGINE_UNSUPPORTED_FOLDER_NAME","features":[305]},{"name":"E_SYNCENGINE_UNSUPPORTED_MARKET","features":[305]},{"name":"E_SYNCENGINE_UNSUPPORTED_REPARSE_POINT","features":[305]},{"name":"E_UAC_DISABLED","features":[305]},{"name":"E_UNEXPECTED","features":[305]},{"name":"FACILITY_ACPI_ERROR_CODE","features":[305]},{"name":"FACILITY_APP_EXEC","features":[305]},{"name":"FACILITY_AUDIO_KERNEL","features":[305]},{"name":"FACILITY_BCD_ERROR_CODE","features":[305]},{"name":"FACILITY_BTH_ATT","features":[305]},{"name":"FACILITY_CLUSTER_ERROR_CODE","features":[305]},{"name":"FACILITY_CODCLASS_ERROR_CODE","features":[305]},{"name":"FACILITY_COMMONLOG","features":[305]},{"name":"FACILITY_DEBUGGER","features":[305]},{"name":"FACILITY_DRIVER_FRAMEWORK","features":[305]},{"name":"FACILITY_FILTER_MANAGER","features":[305]},{"name":"FACILITY_FIREWIRE_ERROR_CODE","features":[305]},{"name":"FACILITY_FVE_ERROR_CODE","features":[305]},{"name":"FACILITY_FWP_ERROR_CODE","features":[305]},{"name":"FACILITY_GRAPHICS_KERNEL","features":[305]},{"name":"FACILITY_HID_ERROR_CODE","features":[305]},{"name":"FACILITY_HYPERVISOR","features":[305]},{"name":"FACILITY_INTERIX","features":[305]},{"name":"FACILITY_IO_ERROR_CODE","features":[305]},{"name":"FACILITY_IPSEC","features":[305]},{"name":"FACILITY_LICENSING","features":[305]},{"name":"FACILITY_MAXIMUM_VALUE","features":[305]},{"name":"FACILITY_MCA_ERROR_CODE","features":[305]},{"name":"FACILITY_MONITOR","features":[305]},{"name":"FACILITY_NDIS_ERROR_CODE","features":[305]},{"name":"FACILITY_NTCERT","features":[305]},{"name":"FACILITY_NTSSPI","features":[305]},{"name":"FACILITY_NTWIN32","features":[305]},{"name":"FACILITY_NT_IORING","features":[305]},{"name":"FACILITY_PLATFORM_MANIFEST","features":[305]},{"name":"FACILITY_QUIC_ERROR_CODE","features":[305]},{"name":"FACILITY_RDBSS","features":[305]},{"name":"FACILITY_RESUME_KEY_FILTER","features":[305]},{"name":"FACILITY_RPC_RUNTIME","features":[305]},{"name":"FACILITY_RPC_STUBS","features":[305]},{"name":"FACILITY_RTPM","features":[305]},{"name":"FACILITY_SDBUS","features":[305]},{"name":"FACILITY_SECUREBOOT","features":[305]},{"name":"FACILITY_SECURITY_CORE","features":[305]},{"name":"FACILITY_SHARED_VHDX","features":[305]},{"name":"FACILITY_SMB","features":[305]},{"name":"FACILITY_SPACES","features":[305]},{"name":"FACILITY_SXS_ERROR_CODE","features":[305]},{"name":"FACILITY_SYSTEM_INTEGRITY","features":[305]},{"name":"FACILITY_TERMINAL_SERVER","features":[305]},{"name":"FACILITY_TPM","features":[305]},{"name":"FACILITY_TRANSACTION","features":[305]},{"name":"FACILITY_USB_ERROR_CODE","features":[305]},{"name":"FACILITY_VIDEO","features":[305]},{"name":"FACILITY_VIRTUALIZATION","features":[305]},{"name":"FACILITY_VOLMGR","features":[305]},{"name":"FACILITY_VOLSNAP","features":[305]},{"name":"FACILITY_VSM","features":[305]},{"name":"FACILITY_WIN32K_NTGDI","features":[305]},{"name":"FACILITY_WIN32K_NTUSER","features":[305]},{"name":"FACILITY_XVS","features":[305]},{"name":"FACILTIY_MUI_ERROR_CODE","features":[305]},{"name":"FALSE","features":[305]},{"name":"FARPROC","features":[305]},{"name":"FA_E_HOMEGROUP_NOT_AVAILABLE","features":[305]},{"name":"FA_E_MAX_PERSISTED_ITEMS_REACHED","features":[305]},{"name":"FDAEMON_E_CHANGEUPDATEFAILED","features":[305]},{"name":"FDAEMON_E_FATALERROR","features":[305]},{"name":"FDAEMON_E_LOWRESOURCE","features":[305]},{"name":"FDAEMON_E_NOWORDLIST","features":[305]},{"name":"FDAEMON_E_PARTITIONDELETED","features":[305]},{"name":"FDAEMON_E_TOOMANYFILTEREDBLOCKS","features":[305]},{"name":"FDAEMON_E_WORDLISTCOMMITFAILED","features":[305]},{"name":"FDAEMON_W_EMPTYWORDLIST","features":[305]},{"name":"FDAEMON_W_WORDLISTFULL","features":[305]},{"name":"FILETIME","features":[305]},{"name":"FILTER_E_ALREADY_OPEN","features":[305]},{"name":"FILTER_E_CONTENTINDEXCORRUPT","features":[305]},{"name":"FILTER_E_IN_USE","features":[305]},{"name":"FILTER_E_NOT_OPEN","features":[305]},{"name":"FILTER_E_NO_SUCH_PROPERTY","features":[305]},{"name":"FILTER_E_OFFLINE","features":[305]},{"name":"FILTER_E_PARTIALLY_FILTERED","features":[305]},{"name":"FILTER_E_TOO_BIG","features":[305]},{"name":"FILTER_E_UNREACHABLE","features":[305]},{"name":"FILTER_S_CONTENTSCAN_DELAYED","features":[305]},{"name":"FILTER_S_DISK_FULL","features":[305]},{"name":"FILTER_S_FULL_CONTENTSCAN_IMMEDIATE","features":[305]},{"name":"FILTER_S_NO_PROPSETS","features":[305]},{"name":"FILTER_S_NO_SECURITY_DESCRIPTOR","features":[305]},{"name":"FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE","features":[305]},{"name":"FLOAT128","features":[305]},{"name":"FRS_ERR_AUTHENTICATION","features":[305]},{"name":"FRS_ERR_CHILD_TO_PARENT_COMM","features":[305]},{"name":"FRS_ERR_INSUFFICIENT_PRIV","features":[305]},{"name":"FRS_ERR_INTERNAL","features":[305]},{"name":"FRS_ERR_INTERNAL_API","features":[305]},{"name":"FRS_ERR_INVALID_API_SEQUENCE","features":[305]},{"name":"FRS_ERR_INVALID_SERVICE_PARAMETER","features":[305]},{"name":"FRS_ERR_PARENT_AUTHENTICATION","features":[305]},{"name":"FRS_ERR_PARENT_INSUFFICIENT_PRIV","features":[305]},{"name":"FRS_ERR_PARENT_TO_CHILD_COMM","features":[305]},{"name":"FRS_ERR_SERVICE_COMM","features":[305]},{"name":"FRS_ERR_STARTING_SERVICE","features":[305]},{"name":"FRS_ERR_STOPPING_SERVICE","features":[305]},{"name":"FRS_ERR_SYSVOL_DEMOTE","features":[305]},{"name":"FRS_ERR_SYSVOL_IS_BUSY","features":[305]},{"name":"FRS_ERR_SYSVOL_POPULATE","features":[305]},{"name":"FRS_ERR_SYSVOL_POPULATE_TIMEOUT","features":[305]},{"name":"FVE_E_AAD_ENDPOINT_BUSY","features":[305]},{"name":"FVE_E_AAD_SERVER_FAIL_BACKOFF","features":[305]},{"name":"FVE_E_AAD_SERVER_FAIL_RETRY_AFTER","features":[305]},{"name":"FVE_E_ACTION_NOT_ALLOWED","features":[305]},{"name":"FVE_E_ADBACKUP_NOT_ENABLED","features":[305]},{"name":"FVE_E_AD_ATTR_NOT_SET","features":[305]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_FIXED_DRIVE","features":[305]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_OS_DRIVE","features":[305]},{"name":"FVE_E_AD_BACKUP_REQUIRED_POLICY_NOT_SET_REMOVABLE_DRIVE","features":[305]},{"name":"FVE_E_AD_GUID_NOT_FOUND","features":[305]},{"name":"FVE_E_AD_INSUFFICIENT_BUFFER","features":[305]},{"name":"FVE_E_AD_INVALID_DATASIZE","features":[305]},{"name":"FVE_E_AD_INVALID_DATATYPE","features":[305]},{"name":"FVE_E_AD_NO_VALUES","features":[305]},{"name":"FVE_E_AD_SCHEMA_NOT_INSTALLED","features":[305]},{"name":"FVE_E_AUTH_INVALID_APPLICATION","features":[305]},{"name":"FVE_E_AUTH_INVALID_CONFIG","features":[305]},{"name":"FVE_E_AUTOUNLOCK_ENABLED","features":[305]},{"name":"FVE_E_BAD_DATA","features":[305]},{"name":"FVE_E_BAD_INFORMATION","features":[305]},{"name":"FVE_E_BAD_PARTITION_SIZE","features":[305]},{"name":"FVE_E_BCD_APPLICATIONS_PATH_INCORRECT","features":[305]},{"name":"FVE_E_BOOTABLE_CDDVD","features":[305]},{"name":"FVE_E_BUFFER_TOO_LARGE","features":[305]},{"name":"FVE_E_CANNOT_ENCRYPT_NO_KEY","features":[305]},{"name":"FVE_E_CANNOT_SET_FVEK_ENCRYPTED","features":[305]},{"name":"FVE_E_CANT_LOCK_AUTOUNLOCK_ENABLED_VOLUME","features":[305]},{"name":"FVE_E_CLUSTERING_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_CONV_READ","features":[305]},{"name":"FVE_E_CONV_RECOVERY_FAILED","features":[305]},{"name":"FVE_E_CONV_WRITE","features":[305]},{"name":"FVE_E_DATASET_FULL","features":[305]},{"name":"FVE_E_DEBUGGER_ENABLED","features":[305]},{"name":"FVE_E_DEVICELOCKOUT_COUNTER_MISMATCH","features":[305]},{"name":"FVE_E_DEVICE_LOCKOUT_COUNTER_UNAVAILABLE","features":[305]},{"name":"FVE_E_DEVICE_NOT_JOINED","features":[305]},{"name":"FVE_E_DE_DEVICE_LOCKEDOUT","features":[305]},{"name":"FVE_E_DE_FIXED_DATA_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_DE_HARDWARE_NOT_COMPLIANT","features":[305]},{"name":"FVE_E_DE_OS_VOLUME_NOT_PROTECTED","features":[305]},{"name":"FVE_E_DE_PREVENTED_FOR_OS","features":[305]},{"name":"FVE_E_DE_PROTECTION_NOT_YET_ENABLED","features":[305]},{"name":"FVE_E_DE_PROTECTION_SUSPENDED","features":[305]},{"name":"FVE_E_DE_VOLUME_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_DE_VOLUME_OPTED_OUT","features":[305]},{"name":"FVE_E_DE_WINRE_NOT_CONFIGURED","features":[305]},{"name":"FVE_E_DRY_RUN_FAILED","features":[305]},{"name":"FVE_E_DV_NOT_ALLOWED_BY_GP","features":[305]},{"name":"FVE_E_DV_NOT_SUPPORTED_ON_FS","features":[305]},{"name":"FVE_E_EDRIVE_BAND_ENUMERATION_FAILED","features":[305]},{"name":"FVE_E_EDRIVE_BAND_IN_USE","features":[305]},{"name":"FVE_E_EDRIVE_DISALLOWED_BY_GP","features":[305]},{"name":"FVE_E_EDRIVE_DRY_RUN_FAILED","features":[305]},{"name":"FVE_E_EDRIVE_DV_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_FIRMWARE","features":[305]},{"name":"FVE_E_EDRIVE_INCOMPATIBLE_VOLUME","features":[305]},{"name":"FVE_E_EDRIVE_NO_FAILOVER_TO_SW","features":[305]},{"name":"FVE_E_EFI_ONLY","features":[305]},{"name":"FVE_E_ENH_PIN_INVALID","features":[305]},{"name":"FVE_E_EOW_NOT_SUPPORTED_IN_VERSION","features":[305]},{"name":"FVE_E_EXECUTE_REQUEST_SENT_TOO_SOON","features":[305]},{"name":"FVE_E_FAILED_AUTHENTICATION","features":[305]},{"name":"FVE_E_FAILED_SECTOR_SIZE","features":[305]},{"name":"FVE_E_FAILED_WRONG_FS","features":[305]},{"name":"FVE_E_FIPS_DISABLE_PROTECTION_NOT_ALLOWED","features":[305]},{"name":"FVE_E_FIPS_HASH_KDF_NOT_ALLOWED","features":[305]},{"name":"FVE_E_FIPS_PREVENTS_EXTERNAL_KEY_EXPORT","features":[305]},{"name":"FVE_E_FIPS_PREVENTS_PASSPHRASE","features":[305]},{"name":"FVE_E_FIPS_PREVENTS_RECOVERY_PASSWORD","features":[305]},{"name":"FVE_E_FIPS_RNG_CHECK_FAILED","features":[305]},{"name":"FVE_E_FIRMWARE_TYPE_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_FOREIGN_VOLUME","features":[305]},{"name":"FVE_E_FS_MOUNTED","features":[305]},{"name":"FVE_E_FS_NOT_EXTENDED","features":[305]},{"name":"FVE_E_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[305]},{"name":"FVE_E_HIDDEN_VOLUME","features":[305]},{"name":"FVE_E_INVALID_BITLOCKER_OID","features":[305]},{"name":"FVE_E_INVALID_DATUM_TYPE","features":[305]},{"name":"FVE_E_INVALID_KEY_FORMAT","features":[305]},{"name":"FVE_E_INVALID_NBP_CERT","features":[305]},{"name":"FVE_E_INVALID_NKP_CERT","features":[305]},{"name":"FVE_E_INVALID_PASSWORD_FORMAT","features":[305]},{"name":"FVE_E_INVALID_PIN_CHARS","features":[305]},{"name":"FVE_E_INVALID_PIN_CHARS_DETAILED","features":[305]},{"name":"FVE_E_INVALID_PROTECTOR_TYPE","features":[305]},{"name":"FVE_E_INVALID_STARTUP_OPTIONS","features":[305]},{"name":"FVE_E_KEYFILE_INVALID","features":[305]},{"name":"FVE_E_KEYFILE_NOT_FOUND","features":[305]},{"name":"FVE_E_KEYFILE_NO_VMK","features":[305]},{"name":"FVE_E_KEY_LENGTH_NOT_SUPPORTED_BY_EDRIVE","features":[305]},{"name":"FVE_E_KEY_PROTECTOR_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_KEY_REQUIRED","features":[305]},{"name":"FVE_E_KEY_ROTATION_NOT_ENABLED","features":[305]},{"name":"FVE_E_KEY_ROTATION_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_LIVEID_ACCOUNT_BLOCKED","features":[305]},{"name":"FVE_E_LIVEID_ACCOUNT_SUSPENDED","features":[305]},{"name":"FVE_E_LOCKED_VOLUME","features":[305]},{"name":"FVE_E_METADATA_FULL","features":[305]},{"name":"FVE_E_MOR_FAILED","features":[305]},{"name":"FVE_E_MULTIPLE_NKP_CERTS","features":[305]},{"name":"FVE_E_NON_BITLOCKER_KU","features":[305]},{"name":"FVE_E_NON_BITLOCKER_OID","features":[305]},{"name":"FVE_E_NOT_ACTIVATED","features":[305]},{"name":"FVE_E_NOT_ALLOWED_IN_SAFE_MODE","features":[305]},{"name":"FVE_E_NOT_ALLOWED_IN_VERSION","features":[305]},{"name":"FVE_E_NOT_ALLOWED_ON_CLUSTER","features":[305]},{"name":"FVE_E_NOT_ALLOWED_ON_CSV_STACK","features":[305]},{"name":"FVE_E_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[305]},{"name":"FVE_E_NOT_DATA_VOLUME","features":[305]},{"name":"FVE_E_NOT_DECRYPTED","features":[305]},{"name":"FVE_E_NOT_DE_VOLUME","features":[305]},{"name":"FVE_E_NOT_ENCRYPTED","features":[305]},{"name":"FVE_E_NOT_ON_STACK","features":[305]},{"name":"FVE_E_NOT_OS_VOLUME","features":[305]},{"name":"FVE_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[305]},{"name":"FVE_E_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_NO_AUTOUNLOCK_MASTER_KEY","features":[305]},{"name":"FVE_E_NO_BOOTMGR_METRIC","features":[305]},{"name":"FVE_E_NO_BOOTSECTOR_METRIC","features":[305]},{"name":"FVE_E_NO_EXISTING_PASSPHRASE","features":[305]},{"name":"FVE_E_NO_EXISTING_PIN","features":[305]},{"name":"FVE_E_NO_FEATURE_LICENSE","features":[305]},{"name":"FVE_E_NO_LICENSE","features":[305]},{"name":"FVE_E_NO_MBR_METRIC","features":[305]},{"name":"FVE_E_NO_PASSPHRASE_WITH_TPM","features":[305]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_DETECTED","features":[305]},{"name":"FVE_E_NO_PREBOOT_KEYBOARD_OR_WINRE_DETECTED","features":[305]},{"name":"FVE_E_NO_PROTECTORS_TO_TEST","features":[305]},{"name":"FVE_E_NO_SUCH_CAPABILITY_ON_TARGET","features":[305]},{"name":"FVE_E_NO_TPM_BIOS","features":[305]},{"name":"FVE_E_NO_TPM_WITH_PASSPHRASE","features":[305]},{"name":"FVE_E_OPERATION_NOT_SUPPORTED_ON_VISTA_VOLUME","features":[305]},{"name":"FVE_E_OSV_KSR_NOT_ALLOWED","features":[305]},{"name":"FVE_E_OS_NOT_PROTECTED","features":[305]},{"name":"FVE_E_OS_VOLUME_PASSPHRASE_NOT_ALLOWED","features":[305]},{"name":"FVE_E_OVERLAPPED_UPDATE","features":[305]},{"name":"FVE_E_PASSPHRASE_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[305]},{"name":"FVE_E_PASSPHRASE_TOO_LONG","features":[305]},{"name":"FVE_E_PIN_INVALID","features":[305]},{"name":"FVE_E_PIN_PROTECTOR_CHANGE_BY_STD_USER_DISALLOWED","features":[305]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RK_OFF_AUK_ON","features":[305]},{"name":"FVE_E_POLICY_CONFLICT_FDV_RP_OFF_ADB_ON","features":[305]},{"name":"FVE_E_POLICY_CONFLICT_OSV_RP_OFF_ADB_ON","features":[305]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RK_OFF_AUK_ON","features":[305]},{"name":"FVE_E_POLICY_CONFLICT_RDV_RP_OFF_ADB_ON","features":[305]},{"name":"FVE_E_POLICY_CONFLICT_RO_AND_STARTUP_KEY_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_INVALID_ENHANCED_BCD_SETTINGS","features":[305]},{"name":"FVE_E_POLICY_INVALID_PASSPHRASE_LENGTH","features":[305]},{"name":"FVE_E_POLICY_INVALID_PIN_LENGTH","features":[305]},{"name":"FVE_E_POLICY_ON_RDV_EXCLUSION_LIST","features":[305]},{"name":"FVE_E_POLICY_PASSPHRASE_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_PASSPHRASE_REQUIRES_ASCII","features":[305]},{"name":"FVE_E_POLICY_PASSPHRASE_TOO_SIMPLE","features":[305]},{"name":"FVE_E_POLICY_PASSWORD_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_PROHIBITS_SELFSIGNED","features":[305]},{"name":"FVE_E_POLICY_RECOVERY_KEY_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_RECOVERY_KEY_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_RECOVERY_PASSWORD_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_REQUIRES_RECOVERY_PASSWORD_ON_TOUCH_DEVICE","features":[305]},{"name":"FVE_E_POLICY_REQUIRES_STARTUP_PIN_ON_TOUCH_DEVICE","features":[305]},{"name":"FVE_E_POLICY_STARTUP_KEY_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_STARTUP_KEY_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_STARTUP_PIN_KEY_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_STARTUP_PIN_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_STARTUP_PIN_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_STARTUP_TPM_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_STARTUP_TPM_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_USER_CERTIFICATE_REQUIRED","features":[305]},{"name":"FVE_E_POLICY_USER_CERT_MUST_BE_HW","features":[305]},{"name":"FVE_E_POLICY_USER_CONFIGURE_FDV_AUTOUNLOCK_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_AUTOUNLOCK_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_USER_CONFIGURE_RDV_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[305]},{"name":"FVE_E_POLICY_USER_ENABLE_RDV_NOT_ALLOWED","features":[305]},{"name":"FVE_E_PREDICTED_TPM_PROTECTOR_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_PRIVATEKEY_AUTH_FAILED","features":[305]},{"name":"FVE_E_PROTECTION_CANNOT_BE_DISABLED","features":[305]},{"name":"FVE_E_PROTECTION_DISABLED","features":[305]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PASSPHRASE_CHANGE_ATTEMPTS_REACHED","features":[305]},{"name":"FVE_E_PROTECTOR_CHANGE_MAX_PIN_CHANGE_ATTEMPTS_REACHED","features":[305]},{"name":"FVE_E_PROTECTOR_CHANGE_PASSPHRASE_MISMATCH","features":[305]},{"name":"FVE_E_PROTECTOR_CHANGE_PIN_MISMATCH","features":[305]},{"name":"FVE_E_PROTECTOR_EXISTS","features":[305]},{"name":"FVE_E_PROTECTOR_NOT_FOUND","features":[305]},{"name":"FVE_E_PUBKEY_NOT_ALLOWED","features":[305]},{"name":"FVE_E_RAW_ACCESS","features":[305]},{"name":"FVE_E_RAW_BLOCKED","features":[305]},{"name":"FVE_E_REBOOT_REQUIRED","features":[305]},{"name":"FVE_E_RECOVERY_KEY_REQUIRED","features":[305]},{"name":"FVE_E_RECOVERY_PARTITION","features":[305]},{"name":"FVE_E_RELATIVE_PATH","features":[305]},{"name":"FVE_E_REMOVAL_OF_DRA_FAILED","features":[305]},{"name":"FVE_E_REMOVAL_OF_NKP_FAILED","features":[305]},{"name":"FVE_E_SECUREBOOT_CONFIGURATION_INVALID","features":[305]},{"name":"FVE_E_SECUREBOOT_DISABLED","features":[305]},{"name":"FVE_E_SECURE_KEY_REQUIRED","features":[305]},{"name":"FVE_E_SETUP_TPM_CALLBACK_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_SHADOW_COPY_PRESENT","features":[305]},{"name":"FVE_E_SYSTEM_VOLUME","features":[305]},{"name":"FVE_E_TOKEN_NOT_IMPERSONATED","features":[305]},{"name":"FVE_E_TOO_SMALL","features":[305]},{"name":"FVE_E_TPM_CONTEXT_SETUP_NOT_SUPPORTED","features":[305]},{"name":"FVE_E_TPM_DISABLED","features":[305]},{"name":"FVE_E_TPM_INVALID_PCR","features":[305]},{"name":"FVE_E_TPM_NOT_OWNED","features":[305]},{"name":"FVE_E_TPM_NO_VMK","features":[305]},{"name":"FVE_E_TPM_SRK_AUTH_NOT_ZERO","features":[305]},{"name":"FVE_E_TRANSIENT_STATE","features":[305]},{"name":"FVE_E_UPDATE_INVALID_CONFIG","features":[305]},{"name":"FVE_E_VIRTUALIZED_SPACE_TOO_BIG","features":[305]},{"name":"FVE_E_VOLUME_BOUND_ALREADY","features":[305]},{"name":"FVE_E_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[305]},{"name":"FVE_E_VOLUME_HANDLE_OPEN","features":[305]},{"name":"FVE_E_VOLUME_NOT_BOUND","features":[305]},{"name":"FVE_E_VOLUME_TOO_SMALL","features":[305]},{"name":"FVE_E_WIPE_CANCEL_NOT_APPLICABLE","features":[305]},{"name":"FVE_E_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[305]},{"name":"FVE_E_WRONG_BOOTMGR","features":[305]},{"name":"FVE_E_WRONG_BOOTSECTOR","features":[305]},{"name":"FVE_E_WRONG_SYSTEM_FS","features":[305]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER","features":[305]},{"name":"FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[305]},{"name":"FWP_E_ALREADY_EXISTS","features":[305]},{"name":"FWP_E_BUILTIN_OBJECT","features":[305]},{"name":"FWP_E_CALLOUT_NOTIFICATION_FAILED","features":[305]},{"name":"FWP_E_CALLOUT_NOT_FOUND","features":[305]},{"name":"FWP_E_CONDITION_NOT_FOUND","features":[305]},{"name":"FWP_E_CONNECTIONS_DISABLED","features":[305]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[305]},{"name":"FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[305]},{"name":"FWP_E_DROP_NOICMP","features":[305]},{"name":"FWP_E_DUPLICATE_AUTH_METHOD","features":[305]},{"name":"FWP_E_DUPLICATE_CONDITION","features":[305]},{"name":"FWP_E_DUPLICATE_KEYMOD","features":[305]},{"name":"FWP_E_DYNAMIC_SESSION_IN_PROGRESS","features":[305]},{"name":"FWP_E_EM_NOT_SUPPORTED","features":[305]},{"name":"FWP_E_FILTER_NOT_FOUND","features":[305]},{"name":"FWP_E_IKEEXT_NOT_RUNNING","features":[305]},{"name":"FWP_E_INCOMPATIBLE_AUTH_METHOD","features":[305]},{"name":"FWP_E_INCOMPATIBLE_CIPHER_TRANSFORM","features":[305]},{"name":"FWP_E_INCOMPATIBLE_DH_GROUP","features":[305]},{"name":"FWP_E_INCOMPATIBLE_LAYER","features":[305]},{"name":"FWP_E_INCOMPATIBLE_SA_STATE","features":[305]},{"name":"FWP_E_INCOMPATIBLE_TXN","features":[305]},{"name":"FWP_E_INVALID_ACTION_TYPE","features":[305]},{"name":"FWP_E_INVALID_AUTH_TRANSFORM","features":[305]},{"name":"FWP_E_INVALID_CIPHER_TRANSFORM","features":[305]},{"name":"FWP_E_INVALID_DNS_NAME","features":[305]},{"name":"FWP_E_INVALID_ENUMERATOR","features":[305]},{"name":"FWP_E_INVALID_FLAGS","features":[305]},{"name":"FWP_E_INVALID_INTERVAL","features":[305]},{"name":"FWP_E_INVALID_NET_MASK","features":[305]},{"name":"FWP_E_INVALID_PARAMETER","features":[305]},{"name":"FWP_E_INVALID_RANGE","features":[305]},{"name":"FWP_E_INVALID_TRANSFORM_COMBINATION","features":[305]},{"name":"FWP_E_INVALID_TUNNEL_ENDPOINT","features":[305]},{"name":"FWP_E_INVALID_WEIGHT","features":[305]},{"name":"FWP_E_IN_USE","features":[305]},{"name":"FWP_E_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[305]},{"name":"FWP_E_KEY_DICTATOR_ALREADY_REGISTERED","features":[305]},{"name":"FWP_E_KM_CLIENTS_ONLY","features":[305]},{"name":"FWP_E_L2_DRIVER_NOT_READY","features":[305]},{"name":"FWP_E_LAYER_NOT_FOUND","features":[305]},{"name":"FWP_E_LIFETIME_MISMATCH","features":[305]},{"name":"FWP_E_MATCH_TYPE_MISMATCH","features":[305]},{"name":"FWP_E_NET_EVENTS_DISABLED","features":[305]},{"name":"FWP_E_NEVER_MATCH","features":[305]},{"name":"FWP_E_NOTIFICATION_DROPPED","features":[305]},{"name":"FWP_E_NOT_FOUND","features":[305]},{"name":"FWP_E_NO_TXN_IN_PROGRESS","features":[305]},{"name":"FWP_E_NULL_DISPLAY_NAME","features":[305]},{"name":"FWP_E_NULL_POINTER","features":[305]},{"name":"FWP_E_OUT_OF_BOUNDS","features":[305]},{"name":"FWP_E_PROVIDER_CONTEXT_MISMATCH","features":[305]},{"name":"FWP_E_PROVIDER_CONTEXT_NOT_FOUND","features":[305]},{"name":"FWP_E_PROVIDER_NOT_FOUND","features":[305]},{"name":"FWP_E_RESERVED","features":[305]},{"name":"FWP_E_SESSION_ABORTED","features":[305]},{"name":"FWP_E_STILL_ON","features":[305]},{"name":"FWP_E_SUBLAYER_NOT_FOUND","features":[305]},{"name":"FWP_E_TIMEOUT","features":[305]},{"name":"FWP_E_TOO_MANY_CALLOUTS","features":[305]},{"name":"FWP_E_TOO_MANY_SUBLAYERS","features":[305]},{"name":"FWP_E_TRAFFIC_MISMATCH","features":[305]},{"name":"FWP_E_TXN_ABORTED","features":[305]},{"name":"FWP_E_TXN_IN_PROGRESS","features":[305]},{"name":"FWP_E_TYPE_MISMATCH","features":[305]},{"name":"FWP_E_WRONG_SESSION","features":[305]},{"name":"FWP_E_ZERO_LENGTH_ARRAY","features":[305]},{"name":"FreeLibrary","features":[305]},{"name":"GCN_E_DEFAULTNAMESPACE_EXISTS","features":[305]},{"name":"GCN_E_MODULE_NOT_FOUND","features":[305]},{"name":"GCN_E_NETADAPTER_NOT_FOUND","features":[305]},{"name":"GCN_E_NETADAPTER_TIMEOUT","features":[305]},{"name":"GCN_E_NETCOMPARTMENT_NOT_FOUND","features":[305]},{"name":"GCN_E_NETINTERFACE_NOT_FOUND","features":[305]},{"name":"GCN_E_NO_REQUEST_HANDLERS","features":[305]},{"name":"GCN_E_REQUEST_UNSUPPORTED","features":[305]},{"name":"GCN_E_RUNTIMEKEYS_FAILED","features":[305]},{"name":"GENERIC_ACCESS_RIGHTS","features":[305]},{"name":"GENERIC_ALL","features":[305]},{"name":"GENERIC_EXECUTE","features":[305]},{"name":"GENERIC_READ","features":[305]},{"name":"GENERIC_WRITE","features":[305]},{"name":"GetHandleInformation","features":[305]},{"name":"GetLastError","features":[305]},{"name":"GlobalFree","features":[305]},{"name":"HANDLE","features":[305]},{"name":"HANDLE_FLAGS","features":[305]},{"name":"HANDLE_FLAG_INHERIT","features":[305]},{"name":"HANDLE_FLAG_PROTECT_FROM_CLOSE","features":[305]},{"name":"HANDLE_PTR","features":[305]},{"name":"HCN_E_ADAPTER_NOT_FOUND","features":[305]},{"name":"HCN_E_ADDR_INVALID_OR_RESERVED","features":[305]},{"name":"HCN_E_DEGRADED_OPERATION","features":[305]},{"name":"HCN_E_ENDPOINT_ALREADY_ATTACHED","features":[305]},{"name":"HCN_E_ENDPOINT_NAMESPACE_ALREADY_EXISTS","features":[305]},{"name":"HCN_E_ENDPOINT_NOT_ATTACHED","features":[305]},{"name":"HCN_E_ENDPOINT_NOT_FOUND","features":[305]},{"name":"HCN_E_ENDPOINT_NOT_LOCAL","features":[305]},{"name":"HCN_E_ENDPOINT_SHARING_DISABLED","features":[305]},{"name":"HCN_E_ENTITY_HAS_REFERENCES","features":[305]},{"name":"HCN_E_GUID_CONVERSION_FAILURE","features":[305]},{"name":"HCN_E_ICS_DISABLED","features":[305]},{"name":"HCN_E_INVALID_ENDPOINT","features":[305]},{"name":"HCN_E_INVALID_INTERNAL_PORT","features":[305]},{"name":"HCN_E_INVALID_IP","features":[305]},{"name":"HCN_E_INVALID_IP_SUBNET","features":[305]},{"name":"HCN_E_INVALID_JSON","features":[305]},{"name":"HCN_E_INVALID_JSON_REFERENCE","features":[305]},{"name":"HCN_E_INVALID_NETWORK","features":[305]},{"name":"HCN_E_INVALID_NETWORK_TYPE","features":[305]},{"name":"HCN_E_INVALID_POLICY","features":[305]},{"name":"HCN_E_INVALID_POLICY_TYPE","features":[305]},{"name":"HCN_E_INVALID_PREFIX","features":[305]},{"name":"HCN_E_INVALID_REMOTE_ENDPOINT_OPERATION","features":[305]},{"name":"HCN_E_INVALID_SUBNET","features":[305]},{"name":"HCN_E_LAYER_ALREADY_EXISTS","features":[305]},{"name":"HCN_E_LAYER_NOT_FOUND","features":[305]},{"name":"HCN_E_MANAGER_STOPPED","features":[305]},{"name":"HCN_E_MAPPING_NOT_SUPPORTED","features":[305]},{"name":"HCN_E_NAMESPACE_ATTACH_FAILED","features":[305]},{"name":"HCN_E_NETWORK_ALREADY_EXISTS","features":[305]},{"name":"HCN_E_NETWORK_NOT_FOUND","features":[305]},{"name":"HCN_E_OBJECT_USED_AFTER_UNLOAD","features":[305]},{"name":"HCN_E_POLICY_ALREADY_EXISTS","features":[305]},{"name":"HCN_E_POLICY_NOT_FOUND","features":[305]},{"name":"HCN_E_PORT_ALREADY_EXISTS","features":[305]},{"name":"HCN_E_PORT_NOT_FOUND","features":[305]},{"name":"HCN_E_REGKEY_FAILURE","features":[305]},{"name":"HCN_E_REQUEST_UNSUPPORTED","features":[305]},{"name":"HCN_E_SHARED_SWITCH_MODIFICATION","features":[305]},{"name":"HCN_E_SUBNET_NOT_FOUND","features":[305]},{"name":"HCN_E_SWITCH_EXTENSION_NOT_FOUND","features":[305]},{"name":"HCN_E_SWITCH_NOT_FOUND","features":[305]},{"name":"HCN_E_VFP_NOT_ALLOWED","features":[305]},{"name":"HCN_E_VFP_PORTSETTING_NOT_FOUND","features":[305]},{"name":"HCN_INTERFACEPARAMETERS_ALREADY_APPLIED","features":[305]},{"name":"HCS_E_ACCESS_DENIED","features":[305]},{"name":"HCS_E_CONNECTION_CLOSED","features":[305]},{"name":"HCS_E_CONNECTION_TIMEOUT","features":[305]},{"name":"HCS_E_CONNECT_FAILED","features":[305]},{"name":"HCS_E_GUEST_CRITICAL_ERROR","features":[305]},{"name":"HCS_E_HYPERV_NOT_INSTALLED","features":[305]},{"name":"HCS_E_IMAGE_MISMATCH","features":[305]},{"name":"HCS_E_INVALID_JSON","features":[305]},{"name":"HCS_E_INVALID_LAYER","features":[305]},{"name":"HCS_E_INVALID_STATE","features":[305]},{"name":"HCS_E_OPERATION_ALREADY_CANCELLED","features":[305]},{"name":"HCS_E_OPERATION_ALREADY_STARTED","features":[305]},{"name":"HCS_E_OPERATION_NOT_STARTED","features":[305]},{"name":"HCS_E_OPERATION_PENDING","features":[305]},{"name":"HCS_E_OPERATION_RESULT_ALLOCATION_FAILED","features":[305]},{"name":"HCS_E_OPERATION_SYSTEM_CALLBACK_ALREADY_SET","features":[305]},{"name":"HCS_E_OPERATION_TIMEOUT","features":[305]},{"name":"HCS_E_PROCESS_ALREADY_STOPPED","features":[305]},{"name":"HCS_E_PROCESS_INFO_NOT_AVAILABLE","features":[305]},{"name":"HCS_E_PROTOCOL_ERROR","features":[305]},{"name":"HCS_E_SERVICE_DISCONNECT","features":[305]},{"name":"HCS_E_SERVICE_NOT_AVAILABLE","features":[305]},{"name":"HCS_E_SYSTEM_ALREADY_EXISTS","features":[305]},{"name":"HCS_E_SYSTEM_ALREADY_STOPPED","features":[305]},{"name":"HCS_E_SYSTEM_NOT_CONFIGURED_FOR_OPERATION","features":[305]},{"name":"HCS_E_SYSTEM_NOT_FOUND","features":[305]},{"name":"HCS_E_TERMINATED","features":[305]},{"name":"HCS_E_TERMINATED_DURING_START","features":[305]},{"name":"HCS_E_UNEXPECTED_EXIT","features":[305]},{"name":"HCS_E_UNKNOWN_MESSAGE","features":[305]},{"name":"HCS_E_UNSUPPORTED_PROTOCOL_VERSION","features":[305]},{"name":"HCS_E_WINDOWS_INSIDER_REQUIRED","features":[305]},{"name":"HGLOBAL","features":[305]},{"name":"HINSTANCE","features":[305]},{"name":"HLOCAL","features":[305]},{"name":"HLSURF","features":[305]},{"name":"HMODULE","features":[305]},{"name":"HRESULT","features":[305]},{"name":"HRSRC","features":[305]},{"name":"HSPRITE","features":[305]},{"name":"HSP_BASE_ERROR_MASK","features":[305]},{"name":"HSP_BASE_INTERNAL_ERROR","features":[305]},{"name":"HSP_BS_ERROR_MASK","features":[305]},{"name":"HSP_BS_INTERNAL_ERROR","features":[305]},{"name":"HSP_DRV_ERROR_MASK","features":[305]},{"name":"HSP_DRV_INTERNAL_ERROR","features":[305]},{"name":"HSP_E_ERROR_MASK","features":[305]},{"name":"HSP_E_INTERNAL_ERROR","features":[305]},{"name":"HSP_KSP_ALGORITHM_NOT_SUPPORTED","features":[305]},{"name":"HSP_KSP_BUFFER_TOO_SMALL","features":[305]},{"name":"HSP_KSP_DEVICE_NOT_READY","features":[305]},{"name":"HSP_KSP_ERROR_MASK","features":[305]},{"name":"HSP_KSP_INTERNAL_ERROR","features":[305]},{"name":"HSP_KSP_INVALID_DATA","features":[305]},{"name":"HSP_KSP_INVALID_FLAGS","features":[305]},{"name":"HSP_KSP_INVALID_KEY_HANDLE","features":[305]},{"name":"HSP_KSP_INVALID_KEY_TYPE","features":[305]},{"name":"HSP_KSP_INVALID_PARAMETER","features":[305]},{"name":"HSP_KSP_INVALID_PROVIDER_HANDLE","features":[305]},{"name":"HSP_KSP_KEY_ALREADY_FINALIZED","features":[305]},{"name":"HSP_KSP_KEY_EXISTS","features":[305]},{"name":"HSP_KSP_KEY_LOAD_FAIL","features":[305]},{"name":"HSP_KSP_KEY_MISSING","features":[305]},{"name":"HSP_KSP_KEY_NOT_FINALIZED","features":[305]},{"name":"HSP_KSP_NOT_SUPPORTED","features":[305]},{"name":"HSP_KSP_NO_MEMORY","features":[305]},{"name":"HSP_KSP_NO_MORE_ITEMS","features":[305]},{"name":"HSP_KSP_PARAMETER_NOT_SET","features":[305]},{"name":"HSTR","features":[305]},{"name":"HTTP_E_STATUS_AMBIGUOUS","features":[305]},{"name":"HTTP_E_STATUS_BAD_GATEWAY","features":[305]},{"name":"HTTP_E_STATUS_BAD_METHOD","features":[305]},{"name":"HTTP_E_STATUS_BAD_REQUEST","features":[305]},{"name":"HTTP_E_STATUS_CONFLICT","features":[305]},{"name":"HTTP_E_STATUS_DENIED","features":[305]},{"name":"HTTP_E_STATUS_EXPECTATION_FAILED","features":[305]},{"name":"HTTP_E_STATUS_FORBIDDEN","features":[305]},{"name":"HTTP_E_STATUS_GATEWAY_TIMEOUT","features":[305]},{"name":"HTTP_E_STATUS_GONE","features":[305]},{"name":"HTTP_E_STATUS_LENGTH_REQUIRED","features":[305]},{"name":"HTTP_E_STATUS_MOVED","features":[305]},{"name":"HTTP_E_STATUS_NONE_ACCEPTABLE","features":[305]},{"name":"HTTP_E_STATUS_NOT_FOUND","features":[305]},{"name":"HTTP_E_STATUS_NOT_MODIFIED","features":[305]},{"name":"HTTP_E_STATUS_NOT_SUPPORTED","features":[305]},{"name":"HTTP_E_STATUS_PAYMENT_REQ","features":[305]},{"name":"HTTP_E_STATUS_PRECOND_FAILED","features":[305]},{"name":"HTTP_E_STATUS_PROXY_AUTH_REQ","features":[305]},{"name":"HTTP_E_STATUS_RANGE_NOT_SATISFIABLE","features":[305]},{"name":"HTTP_E_STATUS_REDIRECT","features":[305]},{"name":"HTTP_E_STATUS_REDIRECT_KEEP_VERB","features":[305]},{"name":"HTTP_E_STATUS_REDIRECT_METHOD","features":[305]},{"name":"HTTP_E_STATUS_REQUEST_TIMEOUT","features":[305]},{"name":"HTTP_E_STATUS_REQUEST_TOO_LARGE","features":[305]},{"name":"HTTP_E_STATUS_SERVER_ERROR","features":[305]},{"name":"HTTP_E_STATUS_SERVICE_UNAVAIL","features":[305]},{"name":"HTTP_E_STATUS_UNEXPECTED","features":[305]},{"name":"HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR","features":[305]},{"name":"HTTP_E_STATUS_UNEXPECTED_REDIRECTION","features":[305]},{"name":"HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR","features":[305]},{"name":"HTTP_E_STATUS_UNSUPPORTED_MEDIA","features":[305]},{"name":"HTTP_E_STATUS_URI_TOO_LONG","features":[305]},{"name":"HTTP_E_STATUS_USE_PROXY","features":[305]},{"name":"HTTP_E_STATUS_VERSION_NOT_SUP","features":[305]},{"name":"HUMPD","features":[305]},{"name":"HWND","features":[305]},{"name":"INPLACE_E_FIRST","features":[305]},{"name":"INPLACE_E_LAST","features":[305]},{"name":"INPLACE_E_NOTOOLSPACE","features":[305]},{"name":"INPLACE_E_NOTUNDOABLE","features":[305]},{"name":"INPLACE_S_FIRST","features":[305]},{"name":"INPLACE_S_LAST","features":[305]},{"name":"INPLACE_S_TRUNCATED","features":[305]},{"name":"INPUT_E_DEVICE_INFO","features":[305]},{"name":"INPUT_E_DEVICE_PROPERTY","features":[305]},{"name":"INPUT_E_FRAME","features":[305]},{"name":"INPUT_E_HISTORY","features":[305]},{"name":"INPUT_E_MULTIMODAL","features":[305]},{"name":"INPUT_E_OUT_OF_ORDER","features":[305]},{"name":"INPUT_E_PACKET","features":[305]},{"name":"INPUT_E_REENTRANCY","features":[305]},{"name":"INPUT_E_TRANSFORM","features":[305]},{"name":"INVALID_HANDLE_VALUE","features":[305]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_BIG","features":[305]},{"name":"IORING_E_COMPLETION_QUEUE_TOO_FULL","features":[305]},{"name":"IORING_E_CORRUPT","features":[305]},{"name":"IORING_E_REQUIRED_FLAG_NOT_SUPPORTED","features":[305]},{"name":"IORING_E_SUBMISSION_QUEUE_FULL","features":[305]},{"name":"IORING_E_SUBMISSION_QUEUE_TOO_BIG","features":[305]},{"name":"IORING_E_SUBMIT_IN_PROGRESS","features":[305]},{"name":"IORING_E_VERSION_NOT_SUPPORTED","features":[305]},{"name":"IO_BAD_BLOCK_WITH_NAME","features":[305]},{"name":"IO_CDROM_EXCLUSIVE_LOCK","features":[305]},{"name":"IO_DRIVER_CANCEL_TIMEOUT","features":[305]},{"name":"IO_DUMP_CALLBACK_EXCEPTION","features":[305]},{"name":"IO_DUMP_CREATION_SUCCESS","features":[305]},{"name":"IO_DUMP_DIRECT_CONFIG_FAILED","features":[305]},{"name":"IO_DUMP_DRIVER_LOAD_FAILURE","features":[305]},{"name":"IO_DUMP_DUMPFILE_CONFLICT","features":[305]},{"name":"IO_DUMP_INITIALIZATION_FAILURE","features":[305]},{"name":"IO_DUMP_INIT_DEDICATED_DUMP_FAILURE","features":[305]},{"name":"IO_DUMP_PAGE_CONFIG_FAILED","features":[305]},{"name":"IO_DUMP_POINTER_FAILURE","features":[305]},{"name":"IO_ERROR_DISK_RESOURCES_EXHAUSTED","features":[305]},{"name":"IO_ERROR_DUMP_CREATION_ERROR","features":[305]},{"name":"IO_ERROR_IO_HARDWARE_ERROR","features":[305]},{"name":"IO_ERR_BAD_BLOCK","features":[305]},{"name":"IO_ERR_BAD_FIRMWARE","features":[305]},{"name":"IO_ERR_CONFIGURATION_ERROR","features":[305]},{"name":"IO_ERR_CONTROLLER_ERROR","features":[305]},{"name":"IO_ERR_DMA_CONFLICT_DETECTED","features":[305]},{"name":"IO_ERR_DMA_RESOURCE_CONFLICT","features":[305]},{"name":"IO_ERR_DRIVER_ERROR","features":[305]},{"name":"IO_ERR_INCORRECT_IRQL","features":[305]},{"name":"IO_ERR_INSUFFICIENT_RESOURCES","features":[305]},{"name":"IO_ERR_INTERNAL_ERROR","features":[305]},{"name":"IO_ERR_INTERRUPT_RESOURCE_CONFLICT","features":[305]},{"name":"IO_ERR_INVALID_IOBASE","features":[305]},{"name":"IO_ERR_INVALID_REQUEST","features":[305]},{"name":"IO_ERR_IRQ_CONFLICT_DETECTED","features":[305]},{"name":"IO_ERR_LAYERED_FAILURE","features":[305]},{"name":"IO_ERR_MEMORY_CONFLICT_DETECTED","features":[305]},{"name":"IO_ERR_MEMORY_RESOURCE_CONFLICT","features":[305]},{"name":"IO_ERR_NOT_READY","features":[305]},{"name":"IO_ERR_OVERRUN_ERROR","features":[305]},{"name":"IO_ERR_PARITY","features":[305]},{"name":"IO_ERR_PORT_CONFLICT_DETECTED","features":[305]},{"name":"IO_ERR_PORT_RESOURCE_CONFLICT","features":[305]},{"name":"IO_ERR_PORT_TIMEOUT","features":[305]},{"name":"IO_ERR_PROTOCOL","features":[305]},{"name":"IO_ERR_RESET","features":[305]},{"name":"IO_ERR_RETRY_SUCCEEDED","features":[305]},{"name":"IO_ERR_SEEK_ERROR","features":[305]},{"name":"IO_ERR_SEQUENCE","features":[305]},{"name":"IO_ERR_THREAD_STUCK_IN_DEVICE_DRIVER","features":[305]},{"name":"IO_ERR_TIMEOUT","features":[305]},{"name":"IO_ERR_VERSION","features":[305]},{"name":"IO_FILE_QUOTA_CORRUPT","features":[305]},{"name":"IO_FILE_QUOTA_FAILED","features":[305]},{"name":"IO_FILE_QUOTA_LIMIT","features":[305]},{"name":"IO_FILE_QUOTA_STARTED","features":[305]},{"name":"IO_FILE_QUOTA_SUCCEEDED","features":[305]},{"name":"IO_FILE_QUOTA_THRESHOLD","features":[305]},{"name":"IO_FILE_SYSTEM_CORRUPT","features":[305]},{"name":"IO_FILE_SYSTEM_CORRUPT_WITH_NAME","features":[305]},{"name":"IO_INFO_THROTTLE_COMPLETE","features":[305]},{"name":"IO_LOST_DELAYED_WRITE","features":[305]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_DISCONNECTED","features":[305]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_LOCAL_DISK_ERROR","features":[305]},{"name":"IO_LOST_DELAYED_WRITE_NETWORK_SERVER_ERROR","features":[305]},{"name":"IO_RECOVERED_VIA_ECC","features":[305]},{"name":"IO_SYSTEM_SLEEP_FAILED","features":[305]},{"name":"IO_WARNING_ADAPTER_FIRMWARE_UPDATED","features":[305]},{"name":"IO_WARNING_ALLOCATION_FAILED","features":[305]},{"name":"IO_WARNING_BUS_RESET","features":[305]},{"name":"IO_WARNING_COMPLETION_TIME","features":[305]},{"name":"IO_WARNING_DEVICE_HAS_INTERNAL_DUMP","features":[305]},{"name":"IO_WARNING_DISK_CAPACITY_CHANGED","features":[305]},{"name":"IO_WARNING_DISK_FIRMWARE_UPDATED","features":[305]},{"name":"IO_WARNING_DISK_PROVISIONING_TYPE_CHANGED","features":[305]},{"name":"IO_WARNING_DISK_SURPRISE_REMOVED","features":[305]},{"name":"IO_WARNING_DUMP_DISABLED_DEVICE_GONE","features":[305]},{"name":"IO_WARNING_DUPLICATE_PATH","features":[305]},{"name":"IO_WARNING_DUPLICATE_SIGNATURE","features":[305]},{"name":"IO_WARNING_INTERRUPT_STILL_PENDING","features":[305]},{"name":"IO_WARNING_IO_OPERATION_RETRIED","features":[305]},{"name":"IO_WARNING_LOG_FLUSH_FAILED","features":[305]},{"name":"IO_WARNING_PAGING_FAILURE","features":[305]},{"name":"IO_WARNING_REPEATED_DISK_GUID","features":[305]},{"name":"IO_WARNING_RESET","features":[305]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED","features":[305]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX","features":[305]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_LUN","features":[305]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_LUN_POOL","features":[305]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_LUN","features":[305]},{"name":"IO_WARNING_SOFT_THRESHOLD_REACHED_EX_POOL_POOL","features":[305]},{"name":"IO_WARNING_VOLUME_LOST_DISK_EXTENT","features":[305]},{"name":"IO_WARNING_WRITE_FUA_PROBLEM","features":[305]},{"name":"IO_WRITE_CACHE_DISABLED","features":[305]},{"name":"IO_WRITE_CACHE_ENABLED","features":[305]},{"name":"IO_WRN_BAD_FIRMWARE","features":[305]},{"name":"IO_WRN_FAILURE_PREDICTED","features":[305]},{"name":"JSCRIPT_E_CANTEXECUTE","features":[305]},{"name":"LANGUAGE_E_DATABASE_NOT_FOUND","features":[305]},{"name":"LANGUAGE_S_LARGE_WORD","features":[305]},{"name":"LPARAM","features":[305]},{"name":"LRESULT","features":[305]},{"name":"LUID","features":[305]},{"name":"LocalFree","features":[305]},{"name":"MARSHAL_E_FIRST","features":[305]},{"name":"MARSHAL_E_LAST","features":[305]},{"name":"MARSHAL_S_FIRST","features":[305]},{"name":"MARSHAL_S_LAST","features":[305]},{"name":"MAX_PATH","features":[305]},{"name":"MCA_BUS_ERROR","features":[305]},{"name":"MCA_BUS_TIMEOUT_ERROR","features":[305]},{"name":"MCA_ERROR_CACHE","features":[305]},{"name":"MCA_ERROR_CPU","features":[305]},{"name":"MCA_ERROR_CPU_BUS","features":[305]},{"name":"MCA_ERROR_MAS","features":[305]},{"name":"MCA_ERROR_MEM_1_2","features":[305]},{"name":"MCA_ERROR_MEM_1_2_5","features":[305]},{"name":"MCA_ERROR_MEM_1_2_5_4","features":[305]},{"name":"MCA_ERROR_MEM_UNKNOWN","features":[305]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT","features":[305]},{"name":"MCA_ERROR_PCI_BUS_MASTER_ABORT_NO_INFO","features":[305]},{"name":"MCA_ERROR_PCI_BUS_PARITY","features":[305]},{"name":"MCA_ERROR_PCI_BUS_PARITY_NO_INFO","features":[305]},{"name":"MCA_ERROR_PCI_BUS_SERR","features":[305]},{"name":"MCA_ERROR_PCI_BUS_SERR_NO_INFO","features":[305]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT","features":[305]},{"name":"MCA_ERROR_PCI_BUS_TIMEOUT_NO_INFO","features":[305]},{"name":"MCA_ERROR_PCI_BUS_UNKNOWN","features":[305]},{"name":"MCA_ERROR_PCI_DEVICE","features":[305]},{"name":"MCA_ERROR_PLATFORM_SPECIFIC","features":[305]},{"name":"MCA_ERROR_REGISTER_FILE","features":[305]},{"name":"MCA_ERROR_SMBIOS","features":[305]},{"name":"MCA_ERROR_SYSTEM_EVENT","features":[305]},{"name":"MCA_ERROR_TLB","features":[305]},{"name":"MCA_ERROR_UNKNOWN","features":[305]},{"name":"MCA_ERROR_UNKNOWN_NO_CPU","features":[305]},{"name":"MCA_EXTERNAL_ERROR","features":[305]},{"name":"MCA_FRC_ERROR","features":[305]},{"name":"MCA_INFO_CPU_THERMAL_THROTTLING_REMOVED","features":[305]},{"name":"MCA_INFO_MEMORY_PAGE_MARKED_BAD","features":[305]},{"name":"MCA_INFO_NO_MORE_CORRECTED_ERROR_LOGS","features":[305]},{"name":"MCA_INTERNALTIMER_ERROR","features":[305]},{"name":"MCA_MEMORYHIERARCHY_ERROR","features":[305]},{"name":"MCA_MICROCODE_ROM_PARITY_ERROR","features":[305]},{"name":"MCA_TLB_ERROR","features":[305]},{"name":"MCA_WARNING_CACHE","features":[305]},{"name":"MCA_WARNING_CMC_THRESHOLD_EXCEEDED","features":[305]},{"name":"MCA_WARNING_CPE_THRESHOLD_EXCEEDED","features":[305]},{"name":"MCA_WARNING_CPU","features":[305]},{"name":"MCA_WARNING_CPU_BUS","features":[305]},{"name":"MCA_WARNING_CPU_THERMAL_THROTTLED","features":[305]},{"name":"MCA_WARNING_MAS","features":[305]},{"name":"MCA_WARNING_MEM_1_2","features":[305]},{"name":"MCA_WARNING_MEM_1_2_5","features":[305]},{"name":"MCA_WARNING_MEM_1_2_5_4","features":[305]},{"name":"MCA_WARNING_MEM_UNKNOWN","features":[305]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT","features":[305]},{"name":"MCA_WARNING_PCI_BUS_MASTER_ABORT_NO_INFO","features":[305]},{"name":"MCA_WARNING_PCI_BUS_PARITY","features":[305]},{"name":"MCA_WARNING_PCI_BUS_PARITY_NO_INFO","features":[305]},{"name":"MCA_WARNING_PCI_BUS_SERR","features":[305]},{"name":"MCA_WARNING_PCI_BUS_SERR_NO_INFO","features":[305]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT","features":[305]},{"name":"MCA_WARNING_PCI_BUS_TIMEOUT_NO_INFO","features":[305]},{"name":"MCA_WARNING_PCI_BUS_UNKNOWN","features":[305]},{"name":"MCA_WARNING_PCI_DEVICE","features":[305]},{"name":"MCA_WARNING_PLATFORM_SPECIFIC","features":[305]},{"name":"MCA_WARNING_REGISTER_FILE","features":[305]},{"name":"MCA_WARNING_SMBIOS","features":[305]},{"name":"MCA_WARNING_SYSTEM_EVENT","features":[305]},{"name":"MCA_WARNING_TLB","features":[305]},{"name":"MCA_WARNING_UNKNOWN","features":[305]},{"name":"MCA_WARNING_UNKNOWN_NO_CPU","features":[305]},{"name":"MEM_E_INVALID_LINK","features":[305]},{"name":"MEM_E_INVALID_ROOT","features":[305]},{"name":"MEM_E_INVALID_SIZE","features":[305]},{"name":"MENROLL_S_ENROLLMENT_SUSPENDED","features":[305]},{"name":"MILAVERR_INSUFFICIENTVIDEORESOURCES","features":[305]},{"name":"MILAVERR_INVALIDWMPVERSION","features":[305]},{"name":"MILAVERR_MEDIAPLAYERCLOSED","features":[305]},{"name":"MILAVERR_MODULENOTLOADED","features":[305]},{"name":"MILAVERR_NOCLOCK","features":[305]},{"name":"MILAVERR_NOMEDIATYPE","features":[305]},{"name":"MILAVERR_NOREADYFRAMES","features":[305]},{"name":"MILAVERR_NOVIDEOMIXER","features":[305]},{"name":"MILAVERR_NOVIDEOPRESENTER","features":[305]},{"name":"MILAVERR_REQUESTEDTEXTURETOOBIG","features":[305]},{"name":"MILAVERR_SEEKFAILED","features":[305]},{"name":"MILAVERR_UNEXPECTEDWMPFAILURE","features":[305]},{"name":"MILAVERR_UNKNOWNHARDWAREERROR","features":[305]},{"name":"MILAVERR_VIDEOACCELERATIONNOTAVAILABLE","features":[305]},{"name":"MILAVERR_WMPFACTORYNOTREGISTERED","features":[305]},{"name":"MILEFFECTSERR_ALREADYATTACHEDTOLISTENER","features":[305]},{"name":"MILEFFECTSERR_CONNECTORNOTASSOCIATEDWITHEFFECT","features":[305]},{"name":"MILEFFECTSERR_CONNECTORNOTCONNECTED","features":[305]},{"name":"MILEFFECTSERR_CYCLEDETECTED","features":[305]},{"name":"MILEFFECTSERR_EFFECTALREADYINAGRAPH","features":[305]},{"name":"MILEFFECTSERR_EFFECTHASNOCHILDREN","features":[305]},{"name":"MILEFFECTSERR_EFFECTINMORETHANONEGRAPH","features":[305]},{"name":"MILEFFECTSERR_EFFECTNOTPARTOFGROUP","features":[305]},{"name":"MILEFFECTSERR_EMPTYBOUNDS","features":[305]},{"name":"MILEFFECTSERR_NOINPUTSOURCEATTACHED","features":[305]},{"name":"MILEFFECTSERR_NOTAFFINETRANSFORM","features":[305]},{"name":"MILEFFECTSERR_OUTPUTSIZETOOLARGE","features":[305]},{"name":"MILEFFECTSERR_RESERVED","features":[305]},{"name":"MILEFFECTSERR_UNKNOWNPROPERTY","features":[305]},{"name":"MILERR_ADAPTER_NOT_FOUND","features":[305]},{"name":"MILERR_ALREADYLOCKED","features":[305]},{"name":"MILERR_ALREADY_INITIALIZED","features":[305]},{"name":"MILERR_BADNUMBER","features":[305]},{"name":"MILERR_COLORSPACE_NOT_SUPPORTED","features":[305]},{"name":"MILERR_DEVICECANNOTRENDERTEXT","features":[305]},{"name":"MILERR_DISPLAYFORMATNOTSUPPORTED","features":[305]},{"name":"MILERR_DISPLAYID_ACCESS_DENIED","features":[305]},{"name":"MILERR_DISPLAYSTATEINVALID","features":[305]},{"name":"MILERR_DXGI_ENUMERATION_OUT_OF_SYNC","features":[305]},{"name":"MILERR_GENERIC_IGNORE","features":[305]},{"name":"MILERR_GLYPHBITMAPMISSED","features":[305]},{"name":"MILERR_INSUFFICIENTBUFFER","features":[305]},{"name":"MILERR_INTERNALERROR","features":[305]},{"name":"MILERR_INVALIDCALL","features":[305]},{"name":"MILERR_MALFORMEDGLYPHCACHE","features":[305]},{"name":"MILERR_MALFORMED_GUIDELINE_DATA","features":[305]},{"name":"MILERR_MAX_TEXTURE_SIZE_EXCEEDED","features":[305]},{"name":"MILERR_MISMATCHED_SIZE","features":[305]},{"name":"MILERR_MROW_READLOCK_FAILED","features":[305]},{"name":"MILERR_MROW_UPDATE_FAILED","features":[305]},{"name":"MILERR_NEED_RECREATE_AND_PRESENT","features":[305]},{"name":"MILERR_NONINVERTIBLEMATRIX","features":[305]},{"name":"MILERR_NOTLOCKED","features":[305]},{"name":"MILERR_NOT_QUEUING_PRESENTS","features":[305]},{"name":"MILERR_NO_HARDWARE_DEVICE","features":[305]},{"name":"MILERR_NO_REDIRECTION_SURFACE_AVAILABLE","features":[305]},{"name":"MILERR_NO_REDIRECTION_SURFACE_RETRY_LATER","features":[305]},{"name":"MILERR_OBJECTBUSY","features":[305]},{"name":"MILERR_PREFILTER_NOT_SUPPORTED","features":[305]},{"name":"MILERR_QPC_TIME_WENT_BACKWARD","features":[305]},{"name":"MILERR_QUEUED_PRESENT_NOT_SUPPORTED","features":[305]},{"name":"MILERR_REMOTING_NOT_SUPPORTED","features":[305]},{"name":"MILERR_SCANNER_FAILED","features":[305]},{"name":"MILERR_SCREENACCESSDENIED","features":[305]},{"name":"MILERR_SHADER_COMPILE_FAILED","features":[305]},{"name":"MILERR_TERMINATED","features":[305]},{"name":"MILERR_TOOMANYSHADERELEMNTS","features":[305]},{"name":"MILERR_WIN32ERROR","features":[305]},{"name":"MILERR_ZEROVECTOR","features":[305]},{"name":"MK_E_CANTOPENFILE","features":[305]},{"name":"MK_E_CONNECTMANUALLY","features":[305]},{"name":"MK_E_ENUMERATION_FAILED","features":[305]},{"name":"MK_E_EXCEEDEDDEADLINE","features":[305]},{"name":"MK_E_FIRST","features":[305]},{"name":"MK_E_INTERMEDIATEINTERFACENOTSUPPORTED","features":[305]},{"name":"MK_E_INVALIDEXTENSION","features":[305]},{"name":"MK_E_LAST","features":[305]},{"name":"MK_E_MUSTBOTHERUSER","features":[305]},{"name":"MK_E_NEEDGENERIC","features":[305]},{"name":"MK_E_NOINVERSE","features":[305]},{"name":"MK_E_NOOBJECT","features":[305]},{"name":"MK_E_NOPREFIX","features":[305]},{"name":"MK_E_NOSTORAGE","features":[305]},{"name":"MK_E_NOTBINDABLE","features":[305]},{"name":"MK_E_NOTBOUND","features":[305]},{"name":"MK_E_NO_NORMALIZED","features":[305]},{"name":"MK_E_SYNTAX","features":[305]},{"name":"MK_E_UNAVAILABLE","features":[305]},{"name":"MK_S_FIRST","features":[305]},{"name":"MK_S_HIM","features":[305]},{"name":"MK_S_LAST","features":[305]},{"name":"MK_S_ME","features":[305]},{"name":"MK_S_MONIKERALREADYREGISTERED","features":[305]},{"name":"MK_S_REDUCED_TO_SELF","features":[305]},{"name":"MK_S_US","features":[305]},{"name":"MSDTC_E_DUPLICATE_RESOURCE","features":[305]},{"name":"MSSIPOTF_E_BADVERSION","features":[305]},{"name":"MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT","features":[305]},{"name":"MSSIPOTF_E_BAD_MAGICNUMBER","features":[305]},{"name":"MSSIPOTF_E_BAD_OFFSET_TABLE","features":[305]},{"name":"MSSIPOTF_E_CANTGETOBJECT","features":[305]},{"name":"MSSIPOTF_E_CRYPT","features":[305]},{"name":"MSSIPOTF_E_DSIG_STRUCTURE","features":[305]},{"name":"MSSIPOTF_E_FAILED_HINTS_CHECK","features":[305]},{"name":"MSSIPOTF_E_FAILED_POLICY","features":[305]},{"name":"MSSIPOTF_E_FILE","features":[305]},{"name":"MSSIPOTF_E_FILETOOSMALL","features":[305]},{"name":"MSSIPOTF_E_FILE_CHECKSUM","features":[305]},{"name":"MSSIPOTF_E_NOHEADTABLE","features":[305]},{"name":"MSSIPOTF_E_NOT_OPENTYPE","features":[305]},{"name":"MSSIPOTF_E_OUTOFMEMRANGE","features":[305]},{"name":"MSSIPOTF_E_PCONST_CHECK","features":[305]},{"name":"MSSIPOTF_E_STRUCTURE","features":[305]},{"name":"MSSIPOTF_E_TABLES_OVERLAP","features":[305]},{"name":"MSSIPOTF_E_TABLE_CHECKSUM","features":[305]},{"name":"MSSIPOTF_E_TABLE_LONGWORD","features":[305]},{"name":"MSSIPOTF_E_TABLE_PADBYTES","features":[305]},{"name":"MSSIPOTF_E_TABLE_TAGORDER","features":[305]},{"name":"NAP_E_CONFLICTING_ID","features":[305]},{"name":"NAP_E_ENTITY_DISABLED","features":[305]},{"name":"NAP_E_ID_NOT_FOUND","features":[305]},{"name":"NAP_E_INVALID_PACKET","features":[305]},{"name":"NAP_E_MAXSIZE_TOO_SMALL","features":[305]},{"name":"NAP_E_MISMATCHED_ID","features":[305]},{"name":"NAP_E_MISSING_SOH","features":[305]},{"name":"NAP_E_NETSH_GROUPPOLICY_ERROR","features":[305]},{"name":"NAP_E_NOT_INITIALIZED","features":[305]},{"name":"NAP_E_NOT_PENDING","features":[305]},{"name":"NAP_E_NOT_REGISTERED","features":[305]},{"name":"NAP_E_NO_CACHED_SOH","features":[305]},{"name":"NAP_E_SERVICE_NOT_RUNNING","features":[305]},{"name":"NAP_E_SHV_CONFIG_EXISTED","features":[305]},{"name":"NAP_E_SHV_CONFIG_NOT_FOUND","features":[305]},{"name":"NAP_E_SHV_TIMEOUT","features":[305]},{"name":"NAP_E_STILL_BOUND","features":[305]},{"name":"NAP_E_TOO_MANY_CALLS","features":[305]},{"name":"NAP_S_CERT_ALREADY_PRESENT","features":[305]},{"name":"NEARPROC","features":[305]},{"name":"NOERROR","features":[305]},{"name":"NOT_AN_ERROR1","features":[305]},{"name":"NO_ERROR","features":[305]},{"name":"NTDDI_MAXVER","features":[305]},{"name":"NTE_AUTHENTICATION_IGNORED","features":[305]},{"name":"NTE_BAD_ALGID","features":[305]},{"name":"NTE_BAD_DATA","features":[305]},{"name":"NTE_BAD_FLAGS","features":[305]},{"name":"NTE_BAD_HASH","features":[305]},{"name":"NTE_BAD_HASH_STATE","features":[305]},{"name":"NTE_BAD_KEY","features":[305]},{"name":"NTE_BAD_KEYSET","features":[305]},{"name":"NTE_BAD_KEYSET_PARAM","features":[305]},{"name":"NTE_BAD_KEY_STATE","features":[305]},{"name":"NTE_BAD_LEN","features":[305]},{"name":"NTE_BAD_PROVIDER","features":[305]},{"name":"NTE_BAD_PROV_TYPE","features":[305]},{"name":"NTE_BAD_PUBLIC_KEY","features":[305]},{"name":"NTE_BAD_SIGNATURE","features":[305]},{"name":"NTE_BAD_TYPE","features":[305]},{"name":"NTE_BAD_UID","features":[305]},{"name":"NTE_BAD_VER","features":[305]},{"name":"NTE_BUFFERS_OVERLAP","features":[305]},{"name":"NTE_BUFFER_TOO_SMALL","features":[305]},{"name":"NTE_DECRYPTION_FAILURE","features":[305]},{"name":"NTE_DEVICE_NOT_FOUND","features":[305]},{"name":"NTE_DEVICE_NOT_READY","features":[305]},{"name":"NTE_DOUBLE_ENCRYPT","features":[305]},{"name":"NTE_ENCRYPTION_FAILURE","features":[305]},{"name":"NTE_EXISTS","features":[305]},{"name":"NTE_FAIL","features":[305]},{"name":"NTE_FIXEDPARAMETER","features":[305]},{"name":"NTE_HMAC_NOT_SUPPORTED","features":[305]},{"name":"NTE_INCORRECT_PASSWORD","features":[305]},{"name":"NTE_INTERNAL_ERROR","features":[305]},{"name":"NTE_INVALID_HANDLE","features":[305]},{"name":"NTE_INVALID_PARAMETER","features":[305]},{"name":"NTE_KEYSET_ENTRY_BAD","features":[305]},{"name":"NTE_KEYSET_NOT_DEF","features":[305]},{"name":"NTE_NOT_ACTIVE_CONSOLE","features":[305]},{"name":"NTE_NOT_FOUND","features":[305]},{"name":"NTE_NOT_SUPPORTED","features":[305]},{"name":"NTE_NO_KEY","features":[305]},{"name":"NTE_NO_MEMORY","features":[305]},{"name":"NTE_NO_MORE_ITEMS","features":[305]},{"name":"NTE_OP_OK","features":[305]},{"name":"NTE_PASSWORD_CHANGE_REQUIRED","features":[305]},{"name":"NTE_PERM","features":[305]},{"name":"NTE_PROVIDER_DLL_FAIL","features":[305]},{"name":"NTE_PROV_DLL_NOT_FOUND","features":[305]},{"name":"NTE_PROV_TYPE_ENTRY_BAD","features":[305]},{"name":"NTE_PROV_TYPE_NOT_DEF","features":[305]},{"name":"NTE_PROV_TYPE_NO_MATCH","features":[305]},{"name":"NTE_SIGNATURE_FILE_BAD","features":[305]},{"name":"NTE_SILENT_CONTEXT","features":[305]},{"name":"NTE_SYS_ERR","features":[305]},{"name":"NTE_TEMPORARY_PROFILE","features":[305]},{"name":"NTE_TOKEN_KEYSET_STORAGE_FULL","features":[305]},{"name":"NTE_UI_REQUIRED","features":[305]},{"name":"NTE_USER_CANCELLED","features":[305]},{"name":"NTE_VALIDATION_FAILED","features":[305]},{"name":"NTSTATUS","features":[305]},{"name":"NTSTATUS_FACILITY_CODE","features":[305]},{"name":"NTSTATUS_SEVERITY_CODE","features":[305]},{"name":"OLEOBJ_E_FIRST","features":[305]},{"name":"OLEOBJ_E_INVALIDVERB","features":[305]},{"name":"OLEOBJ_E_LAST","features":[305]},{"name":"OLEOBJ_E_NOVERBS","features":[305]},{"name":"OLEOBJ_S_CANNOT_DOVERB_NOW","features":[305]},{"name":"OLEOBJ_S_FIRST","features":[305]},{"name":"OLEOBJ_S_INVALIDHWND","features":[305]},{"name":"OLEOBJ_S_INVALIDVERB","features":[305]},{"name":"OLEOBJ_S_LAST","features":[305]},{"name":"OLE_E_ADVF","features":[305]},{"name":"OLE_E_ADVISENOTSUPPORTED","features":[305]},{"name":"OLE_E_BLANK","features":[305]},{"name":"OLE_E_CANTCONVERT","features":[305]},{"name":"OLE_E_CANT_BINDTOSOURCE","features":[305]},{"name":"OLE_E_CANT_GETMONIKER","features":[305]},{"name":"OLE_E_CLASSDIFF","features":[305]},{"name":"OLE_E_ENUM_NOMORE","features":[305]},{"name":"OLE_E_FIRST","features":[305]},{"name":"OLE_E_INVALIDHWND","features":[305]},{"name":"OLE_E_INVALIDRECT","features":[305]},{"name":"OLE_E_LAST","features":[305]},{"name":"OLE_E_NOCACHE","features":[305]},{"name":"OLE_E_NOCONNECTION","features":[305]},{"name":"OLE_E_NOSTORAGE","features":[305]},{"name":"OLE_E_NOTRUNNING","features":[305]},{"name":"OLE_E_NOT_INPLACEACTIVE","features":[305]},{"name":"OLE_E_OLEVERB","features":[305]},{"name":"OLE_E_PROMPTSAVECANCELLED","features":[305]},{"name":"OLE_E_STATIC","features":[305]},{"name":"OLE_E_WRONGCOMPOBJ","features":[305]},{"name":"OLE_S_FIRST","features":[305]},{"name":"OLE_S_LAST","features":[305]},{"name":"OLE_S_MAC_CLIPFORMAT","features":[305]},{"name":"OLE_S_STATIC","features":[305]},{"name":"OLE_S_USEREG","features":[305]},{"name":"ONL_CONNECTION_COUNT_LIMIT","features":[305]},{"name":"ONL_E_ACCESS_DENIED_BY_TOU","features":[305]},{"name":"ONL_E_ACCOUNT_LOCKED","features":[305]},{"name":"ONL_E_ACCOUNT_SUSPENDED_ABUSE","features":[305]},{"name":"ONL_E_ACCOUNT_SUSPENDED_COMPROIMISE","features":[305]},{"name":"ONL_E_ACCOUNT_UPDATE_REQUIRED","features":[305]},{"name":"ONL_E_ACTION_REQUIRED","features":[305]},{"name":"ONL_E_CONNECTED_ACCOUNT_CAN_NOT_SIGNOUT","features":[305]},{"name":"ONL_E_EMAIL_VERIFICATION_REQUIRED","features":[305]},{"name":"ONL_E_FORCESIGNIN","features":[305]},{"name":"ONL_E_INVALID_APPLICATION","features":[305]},{"name":"ONL_E_INVALID_AUTHENTICATION_TARGET","features":[305]},{"name":"ONL_E_PARENTAL_CONSENT_REQUIRED","features":[305]},{"name":"ONL_E_PASSWORD_UPDATE_REQUIRED","features":[305]},{"name":"ONL_E_REQUEST_THROTTLED","features":[305]},{"name":"ONL_E_USER_AUTHENTICATION_REQUIRED","features":[305]},{"name":"OR_INVALID_OID","features":[305]},{"name":"OR_INVALID_OXID","features":[305]},{"name":"OR_INVALID_SET","features":[305]},{"name":"OSS_ACCESS_SERIALIZATION_ERROR","features":[305]},{"name":"OSS_API_DLL_NOT_LINKED","features":[305]},{"name":"OSS_BAD_ARG","features":[305]},{"name":"OSS_BAD_ENCRULES","features":[305]},{"name":"OSS_BAD_PTR","features":[305]},{"name":"OSS_BAD_TABLE","features":[305]},{"name":"OSS_BAD_TIME","features":[305]},{"name":"OSS_BAD_VERSION","features":[305]},{"name":"OSS_BERDER_DLL_NOT_LINKED","features":[305]},{"name":"OSS_CANT_CLOSE_TRACE_FILE","features":[305]},{"name":"OSS_CANT_OPEN_TRACE_FILE","features":[305]},{"name":"OSS_CANT_OPEN_TRACE_WINDOW","features":[305]},{"name":"OSS_COMPARATOR_CODE_NOT_LINKED","features":[305]},{"name":"OSS_COMPARATOR_DLL_NOT_LINKED","features":[305]},{"name":"OSS_CONSTRAINT_DLL_NOT_LINKED","features":[305]},{"name":"OSS_CONSTRAINT_VIOLATED","features":[305]},{"name":"OSS_COPIER_DLL_NOT_LINKED","features":[305]},{"name":"OSS_DATA_ERROR","features":[305]},{"name":"OSS_FATAL_ERROR","features":[305]},{"name":"OSS_INDEFINITE_NOT_SUPPORTED","features":[305]},{"name":"OSS_LIMITED","features":[305]},{"name":"OSS_MEM_ERROR","features":[305]},{"name":"OSS_MEM_MGR_DLL_NOT_LINKED","features":[305]},{"name":"OSS_MORE_BUF","features":[305]},{"name":"OSS_MORE_INPUT","features":[305]},{"name":"OSS_MUTEX_NOT_CREATED","features":[305]},{"name":"OSS_NEGATIVE_UINTEGER","features":[305]},{"name":"OSS_NULL_FCN","features":[305]},{"name":"OSS_NULL_TBL","features":[305]},{"name":"OSS_OID_DLL_NOT_LINKED","features":[305]},{"name":"OSS_OPEN_TYPE_ERROR","features":[305]},{"name":"OSS_OUT_MEMORY","features":[305]},{"name":"OSS_OUT_OF_RANGE","features":[305]},{"name":"OSS_PDU_MISMATCH","features":[305]},{"name":"OSS_PDU_RANGE","features":[305]},{"name":"OSS_PDV_CODE_NOT_LINKED","features":[305]},{"name":"OSS_PDV_DLL_NOT_LINKED","features":[305]},{"name":"OSS_PER_DLL_NOT_LINKED","features":[305]},{"name":"OSS_REAL_CODE_NOT_LINKED","features":[305]},{"name":"OSS_REAL_DLL_NOT_LINKED","features":[305]},{"name":"OSS_TABLE_MISMATCH","features":[305]},{"name":"OSS_TOO_LONG","features":[305]},{"name":"OSS_TRACE_FILE_ALREADY_OPEN","features":[305]},{"name":"OSS_TYPE_NOT_SUPPORTED","features":[305]},{"name":"OSS_UNAVAIL_ENCRULES","features":[305]},{"name":"OSS_UNIMPLEMENTED","features":[305]},{"name":"PAPCFUNC","features":[305]},{"name":"PEERDIST_ERROR_ALREADY_COMPLETED","features":[305]},{"name":"PEERDIST_ERROR_ALREADY_EXISTS","features":[305]},{"name":"PEERDIST_ERROR_ALREADY_INITIALIZED","features":[305]},{"name":"PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO","features":[305]},{"name":"PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED","features":[305]},{"name":"PEERDIST_ERROR_INVALIDATED","features":[305]},{"name":"PEERDIST_ERROR_INVALID_CONFIGURATION","features":[305]},{"name":"PEERDIST_ERROR_MISSING_DATA","features":[305]},{"name":"PEERDIST_ERROR_NOT_INITIALIZED","features":[305]},{"name":"PEERDIST_ERROR_NOT_LICENSED","features":[305]},{"name":"PEERDIST_ERROR_NO_MORE","features":[305]},{"name":"PEERDIST_ERROR_OPERATION_NOTFOUND","features":[305]},{"name":"PEERDIST_ERROR_OUT_OF_BOUNDS","features":[305]},{"name":"PEERDIST_ERROR_SERVICE_UNAVAILABLE","features":[305]},{"name":"PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS","features":[305]},{"name":"PEERDIST_ERROR_TRUST_FAILURE","features":[305]},{"name":"PEERDIST_ERROR_VERSION_UNSUPPORTED","features":[305]},{"name":"PEER_E_ALREADY_LISTENING","features":[305]},{"name":"PEER_E_CANNOT_CONVERT_PEER_NAME","features":[305]},{"name":"PEER_E_CANNOT_START_SERVICE","features":[305]},{"name":"PEER_E_CERT_STORE_CORRUPTED","features":[305]},{"name":"PEER_E_CHAIN_TOO_LONG","features":[305]},{"name":"PEER_E_CIRCULAR_CHAIN_DETECTED","features":[305]},{"name":"PEER_E_CLASSIFIER_TOO_LONG","features":[305]},{"name":"PEER_E_CLOUD_NAME_AMBIGUOUS","features":[305]},{"name":"PEER_E_CONNECTION_FAILED","features":[305]},{"name":"PEER_E_CONNECTION_NOT_AUTHENTICATED","features":[305]},{"name":"PEER_E_CONNECTION_NOT_FOUND","features":[305]},{"name":"PEER_E_CONNECTION_REFUSED","features":[305]},{"name":"PEER_E_CONNECT_SELF","features":[305]},{"name":"PEER_E_CONTACT_NOT_FOUND","features":[305]},{"name":"PEER_E_DATABASE_ACCESSDENIED","features":[305]},{"name":"PEER_E_DATABASE_ALREADY_PRESENT","features":[305]},{"name":"PEER_E_DATABASE_NOT_PRESENT","features":[305]},{"name":"PEER_E_DBINITIALIZATION_FAILED","features":[305]},{"name":"PEER_E_DBNAME_CHANGED","features":[305]},{"name":"PEER_E_DEFERRED_VALIDATION","features":[305]},{"name":"PEER_E_DUPLICATE_GRAPH","features":[305]},{"name":"PEER_E_EVENT_HANDLE_NOT_FOUND","features":[305]},{"name":"PEER_E_FW_BLOCKED_BY_POLICY","features":[305]},{"name":"PEER_E_FW_BLOCKED_BY_SHIELDS_UP","features":[305]},{"name":"PEER_E_FW_DECLINED","features":[305]},{"name":"PEER_E_FW_EXCEPTION_DISABLED","features":[305]},{"name":"PEER_E_GRAPH_IN_USE","features":[305]},{"name":"PEER_E_GRAPH_NOT_READY","features":[305]},{"name":"PEER_E_GRAPH_SHUTTING_DOWN","features":[305]},{"name":"PEER_E_GROUPS_EXIST","features":[305]},{"name":"PEER_E_GROUP_IN_USE","features":[305]},{"name":"PEER_E_GROUP_NOT_READY","features":[305]},{"name":"PEER_E_IDENTITY_DELETED","features":[305]},{"name":"PEER_E_IDENTITY_NOT_FOUND","features":[305]},{"name":"PEER_E_INVALID_ADDRESS","features":[305]},{"name":"PEER_E_INVALID_ATTRIBUTES","features":[305]},{"name":"PEER_E_INVALID_CLASSIFIER","features":[305]},{"name":"PEER_E_INVALID_CLASSIFIER_PROPERTY","features":[305]},{"name":"PEER_E_INVALID_CREDENTIAL","features":[305]},{"name":"PEER_E_INVALID_CREDENTIAL_INFO","features":[305]},{"name":"PEER_E_INVALID_DATABASE","features":[305]},{"name":"PEER_E_INVALID_FRIENDLY_NAME","features":[305]},{"name":"PEER_E_INVALID_GRAPH","features":[305]},{"name":"PEER_E_INVALID_GROUP","features":[305]},{"name":"PEER_E_INVALID_GROUP_PROPERTIES","features":[305]},{"name":"PEER_E_INVALID_PEER_HOST_NAME","features":[305]},{"name":"PEER_E_INVALID_PEER_NAME","features":[305]},{"name":"PEER_E_INVALID_RECORD","features":[305]},{"name":"PEER_E_INVALID_RECORD_EXPIRATION","features":[305]},{"name":"PEER_E_INVALID_RECORD_SIZE","features":[305]},{"name":"PEER_E_INVALID_ROLE_PROPERTY","features":[305]},{"name":"PEER_E_INVALID_SEARCH","features":[305]},{"name":"PEER_E_INVALID_TIME_PERIOD","features":[305]},{"name":"PEER_E_INVITATION_NOT_TRUSTED","features":[305]},{"name":"PEER_E_INVITE_CANCELLED","features":[305]},{"name":"PEER_E_INVITE_RESPONSE_NOT_AVAILABLE","features":[305]},{"name":"PEER_E_IPV6_NOT_INSTALLED","features":[305]},{"name":"PEER_E_MAX_RECORD_SIZE_EXCEEDED","features":[305]},{"name":"PEER_E_NODE_NOT_FOUND","features":[305]},{"name":"PEER_E_NOT_AUTHORIZED","features":[305]},{"name":"PEER_E_NOT_INITIALIZED","features":[305]},{"name":"PEER_E_NOT_LICENSED","features":[305]},{"name":"PEER_E_NOT_SIGNED_IN","features":[305]},{"name":"PEER_E_NO_CLOUD","features":[305]},{"name":"PEER_E_NO_KEY_ACCESS","features":[305]},{"name":"PEER_E_NO_MEMBERS_FOUND","features":[305]},{"name":"PEER_E_NO_MEMBER_CONNECTIONS","features":[305]},{"name":"PEER_E_NO_MORE","features":[305]},{"name":"PEER_E_PASSWORD_DOES_NOT_MEET_POLICY","features":[305]},{"name":"PEER_E_PNRP_DUPLICATE_PEER_NAME","features":[305]},{"name":"PEER_E_PRIVACY_DECLINED","features":[305]},{"name":"PEER_E_RECORD_NOT_FOUND","features":[305]},{"name":"PEER_E_SERVICE_NOT_AVAILABLE","features":[305]},{"name":"PEER_E_TIMEOUT","features":[305]},{"name":"PEER_E_TOO_MANY_ATTRIBUTES","features":[305]},{"name":"PEER_E_TOO_MANY_IDENTITIES","features":[305]},{"name":"PEER_E_UNABLE_TO_LISTEN","features":[305]},{"name":"PEER_E_UNSUPPORTED_VERSION","features":[305]},{"name":"PEER_S_ALREADY_A_MEMBER","features":[305]},{"name":"PEER_S_ALREADY_CONNECTED","features":[305]},{"name":"PEER_S_GRAPH_DATA_CREATED","features":[305]},{"name":"PEER_S_NO_CONNECTIVITY","features":[305]},{"name":"PEER_S_NO_EVENT_DATA","features":[305]},{"name":"PEER_S_SUBSCRIPTION_EXISTS","features":[305]},{"name":"PERSIST_E_NOTSELFSIZING","features":[305]},{"name":"PERSIST_E_SIZEDEFINITE","features":[305]},{"name":"PERSIST_E_SIZEINDEFINITE","features":[305]},{"name":"PLA_E_CABAPI_FAILURE","features":[305]},{"name":"PLA_E_CONFLICT_INCL_EXCL_API","features":[305]},{"name":"PLA_E_CREDENTIALS_REQUIRED","features":[305]},{"name":"PLA_E_DCS_ALREADY_EXISTS","features":[305]},{"name":"PLA_E_DCS_IN_USE","features":[305]},{"name":"PLA_E_DCS_NOT_FOUND","features":[305]},{"name":"PLA_E_DCS_NOT_RUNNING","features":[305]},{"name":"PLA_E_DCS_SINGLETON_REQUIRED","features":[305]},{"name":"PLA_E_DCS_START_WAIT_TIMEOUT","features":[305]},{"name":"PLA_E_DC_ALREADY_EXISTS","features":[305]},{"name":"PLA_E_DC_START_WAIT_TIMEOUT","features":[305]},{"name":"PLA_E_EXE_ALREADY_CONFIGURED","features":[305]},{"name":"PLA_E_EXE_FULL_PATH_REQUIRED","features":[305]},{"name":"PLA_E_EXE_PATH_NOT_VALID","features":[305]},{"name":"PLA_E_INVALID_SESSION_NAME","features":[305]},{"name":"PLA_E_NETWORK_EXE_NOT_VALID","features":[305]},{"name":"PLA_E_NO_DUPLICATES","features":[305]},{"name":"PLA_E_NO_MIN_DISK","features":[305]},{"name":"PLA_E_PLA_CHANNEL_NOT_ENABLED","features":[305]},{"name":"PLA_E_PROPERTY_CONFLICT","features":[305]},{"name":"PLA_E_REPORT_WAIT_TIMEOUT","features":[305]},{"name":"PLA_E_RULES_MANAGER_FAILED","features":[305]},{"name":"PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED","features":[305]},{"name":"PLA_E_TOO_MANY_FOLDERS","features":[305]},{"name":"PLA_S_PROPERTY_IGNORED","features":[305]},{"name":"POINT","features":[305]},{"name":"POINTL","features":[305]},{"name":"POINTS","features":[305]},{"name":"PRESENTATION_ERROR_LOST","features":[305]},{"name":"PROC","features":[305]},{"name":"PSINK_E_INDEX_ONLY","features":[305]},{"name":"PSINK_E_LARGE_ATTACHMENT","features":[305]},{"name":"PSINK_E_QUERY_ONLY","features":[305]},{"name":"PSINK_S_LARGE_WORD","features":[305]},{"name":"PSTR","features":[305]},{"name":"PWSTR","features":[305]},{"name":"QPARSE_E_EXPECTING_BRACE","features":[305]},{"name":"QPARSE_E_EXPECTING_COMMA","features":[305]},{"name":"QPARSE_E_EXPECTING_CURRENCY","features":[305]},{"name":"QPARSE_E_EXPECTING_DATE","features":[305]},{"name":"QPARSE_E_EXPECTING_EOS","features":[305]},{"name":"QPARSE_E_EXPECTING_GUID","features":[305]},{"name":"QPARSE_E_EXPECTING_INTEGER","features":[305]},{"name":"QPARSE_E_EXPECTING_PAREN","features":[305]},{"name":"QPARSE_E_EXPECTING_PHRASE","features":[305]},{"name":"QPARSE_E_EXPECTING_PROPERTY","features":[305]},{"name":"QPARSE_E_EXPECTING_REAL","features":[305]},{"name":"QPARSE_E_EXPECTING_REGEX","features":[305]},{"name":"QPARSE_E_EXPECTING_REGEX_PROPERTY","features":[305]},{"name":"QPARSE_E_INVALID_GROUPING","features":[305]},{"name":"QPARSE_E_INVALID_LITERAL","features":[305]},{"name":"QPARSE_E_INVALID_QUERY","features":[305]},{"name":"QPARSE_E_INVALID_RANKMETHOD","features":[305]},{"name":"QPARSE_E_INVALID_SORT_ORDER","features":[305]},{"name":"QPARSE_E_NOT_YET_IMPLEMENTED","features":[305]},{"name":"QPARSE_E_NO_SUCH_PROPERTY","features":[305]},{"name":"QPARSE_E_NO_SUCH_SORT_PROPERTY","features":[305]},{"name":"QPARSE_E_UNEXPECTED_EOS","features":[305]},{"name":"QPARSE_E_UNEXPECTED_NOT","features":[305]},{"name":"QPARSE_E_UNSUPPORTED_PROPERTY_TYPE","features":[305]},{"name":"QPARSE_E_WEIGHT_OUT_OF_RANGE","features":[305]},{"name":"QPLIST_E_BAD_GUID","features":[305]},{"name":"QPLIST_E_BYREF_USED_WITHOUT_PTRTYPE","features":[305]},{"name":"QPLIST_E_CANT_OPEN_FILE","features":[305]},{"name":"QPLIST_E_CANT_SET_PROPERTY","features":[305]},{"name":"QPLIST_E_DUPLICATE","features":[305]},{"name":"QPLIST_E_EXPECTING_CLOSE_PAREN","features":[305]},{"name":"QPLIST_E_EXPECTING_GUID","features":[305]},{"name":"QPLIST_E_EXPECTING_INTEGER","features":[305]},{"name":"QPLIST_E_EXPECTING_NAME","features":[305]},{"name":"QPLIST_E_EXPECTING_PROP_SPEC","features":[305]},{"name":"QPLIST_E_EXPECTING_TYPE","features":[305]},{"name":"QPLIST_E_READ_ERROR","features":[305]},{"name":"QPLIST_E_UNRECOGNIZED_TYPE","features":[305]},{"name":"QPLIST_E_VECTORBYREF_USED_ALONE","features":[305]},{"name":"QPLIST_S_DUPLICATE","features":[305]},{"name":"QUERY_E_ALLNOISE","features":[305]},{"name":"QUERY_E_DIR_ON_REMOVABLE_DRIVE","features":[305]},{"name":"QUERY_E_DUPLICATE_OUTPUT_COLUMN","features":[305]},{"name":"QUERY_E_FAILED","features":[305]},{"name":"QUERY_E_INVALIDCATEGORIZE","features":[305]},{"name":"QUERY_E_INVALIDQUERY","features":[305]},{"name":"QUERY_E_INVALIDRESTRICTION","features":[305]},{"name":"QUERY_E_INVALIDSORT","features":[305]},{"name":"QUERY_E_INVALID_DIRECTORY","features":[305]},{"name":"QUERY_E_INVALID_OUTPUT_COLUMN","features":[305]},{"name":"QUERY_E_TIMEDOUT","features":[305]},{"name":"QUERY_E_TOOCOMPLEX","features":[305]},{"name":"QUERY_S_NO_QUERY","features":[305]},{"name":"QUTIL_E_CANT_CONVERT_VROOT","features":[305]},{"name":"QUTIL_E_INVALID_CODEPAGE","features":[305]},{"name":"RECT","features":[305]},{"name":"RECTL","features":[305]},{"name":"REGDB_E_BADTHREADINGMODEL","features":[305]},{"name":"REGDB_E_CLASSNOTREG","features":[305]},{"name":"REGDB_E_FIRST","features":[305]},{"name":"REGDB_E_IIDNOTREG","features":[305]},{"name":"REGDB_E_INVALIDVALUE","features":[305]},{"name":"REGDB_E_KEYMISSING","features":[305]},{"name":"REGDB_E_LAST","features":[305]},{"name":"REGDB_E_PACKAGEPOLICYVIOLATION","features":[305]},{"name":"REGDB_E_READREGDB","features":[305]},{"name":"REGDB_E_WRITEREGDB","features":[305]},{"name":"REGDB_S_FIRST","features":[305]},{"name":"REGDB_S_LAST","features":[305]},{"name":"ROUTEBASE","features":[305]},{"name":"ROUTEBASEEND","features":[305]},{"name":"RO_E_BLOCKED_CROSS_ASTA_CALL","features":[305]},{"name":"RO_E_CANNOT_ACTIVATE_FULL_TRUST_SERVER","features":[305]},{"name":"RO_E_CANNOT_ACTIVATE_UNIVERSAL_APPLICATION_SERVER","features":[305]},{"name":"RO_E_CHANGE_NOTIFICATION_IN_PROGRESS","features":[305]},{"name":"RO_E_CLOSED","features":[305]},{"name":"RO_E_COMMITTED","features":[305]},{"name":"RO_E_ERROR_STRING_NOT_FOUND","features":[305]},{"name":"RO_E_EXCLUSIVE_WRITE","features":[305]},{"name":"RO_E_INVALID_METADATA_FILE","features":[305]},{"name":"RO_E_METADATA_INVALID_TYPE_FORMAT","features":[305]},{"name":"RO_E_METADATA_NAME_IS_NAMESPACE","features":[305]},{"name":"RO_E_METADATA_NAME_NOT_FOUND","features":[305]},{"name":"RO_E_MUST_BE_AGILE","features":[305]},{"name":"RO_E_UNSUPPORTED_FROM_MTA","features":[305]},{"name":"RPC_E_ACCESS_DENIED","features":[305]},{"name":"RPC_E_ATTEMPTED_MULTITHREAD","features":[305]},{"name":"RPC_E_CALL_CANCELED","features":[305]},{"name":"RPC_E_CALL_COMPLETE","features":[305]},{"name":"RPC_E_CALL_REJECTED","features":[305]},{"name":"RPC_E_CANTCALLOUT_AGAIN","features":[305]},{"name":"RPC_E_CANTCALLOUT_INASYNCCALL","features":[305]},{"name":"RPC_E_CANTCALLOUT_INEXTERNALCALL","features":[305]},{"name":"RPC_E_CANTCALLOUT_ININPUTSYNCCALL","features":[305]},{"name":"RPC_E_CANTPOST_INSENDCALL","features":[305]},{"name":"RPC_E_CANTTRANSMIT_CALL","features":[305]},{"name":"RPC_E_CHANGED_MODE","features":[305]},{"name":"RPC_E_CLIENT_CANTMARSHAL_DATA","features":[305]},{"name":"RPC_E_CLIENT_CANTUNMARSHAL_DATA","features":[305]},{"name":"RPC_E_CLIENT_DIED","features":[305]},{"name":"RPC_E_CONNECTION_TERMINATED","features":[305]},{"name":"RPC_E_DISCONNECTED","features":[305]},{"name":"RPC_E_FAULT","features":[305]},{"name":"RPC_E_FULLSIC_REQUIRED","features":[305]},{"name":"RPC_E_INVALIDMETHOD","features":[305]},{"name":"RPC_E_INVALID_CALLDATA","features":[305]},{"name":"RPC_E_INVALID_DATA","features":[305]},{"name":"RPC_E_INVALID_DATAPACKET","features":[305]},{"name":"RPC_E_INVALID_EXTENSION","features":[305]},{"name":"RPC_E_INVALID_HEADER","features":[305]},{"name":"RPC_E_INVALID_IPID","features":[305]},{"name":"RPC_E_INVALID_OBJECT","features":[305]},{"name":"RPC_E_INVALID_OBJREF","features":[305]},{"name":"RPC_E_INVALID_PARAMETER","features":[305]},{"name":"RPC_E_INVALID_STD_NAME","features":[305]},{"name":"RPC_E_NOT_REGISTERED","features":[305]},{"name":"RPC_E_NO_CONTEXT","features":[305]},{"name":"RPC_E_NO_GOOD_SECURITY_PACKAGES","features":[305]},{"name":"RPC_E_NO_SYNC","features":[305]},{"name":"RPC_E_OUT_OF_RESOURCES","features":[305]},{"name":"RPC_E_REMOTE_DISABLED","features":[305]},{"name":"RPC_E_RETRY","features":[305]},{"name":"RPC_E_SERVERCALL_REJECTED","features":[305]},{"name":"RPC_E_SERVERCALL_RETRYLATER","features":[305]},{"name":"RPC_E_SERVERFAULT","features":[305]},{"name":"RPC_E_SERVER_CANTMARSHAL_DATA","features":[305]},{"name":"RPC_E_SERVER_CANTUNMARSHAL_DATA","features":[305]},{"name":"RPC_E_SERVER_DIED","features":[305]},{"name":"RPC_E_SERVER_DIED_DNE","features":[305]},{"name":"RPC_E_SYS_CALL_FAILED","features":[305]},{"name":"RPC_E_THREAD_NOT_INIT","features":[305]},{"name":"RPC_E_TIMEOUT","features":[305]},{"name":"RPC_E_TOO_LATE","features":[305]},{"name":"RPC_E_UNEXPECTED","features":[305]},{"name":"RPC_E_UNSECURE_CALL","features":[305]},{"name":"RPC_E_VERSION_MISMATCH","features":[305]},{"name":"RPC_E_WRONG_THREAD","features":[305]},{"name":"RPC_NT_ADDRESS_ERROR","features":[305]},{"name":"RPC_NT_ALREADY_LISTENING","features":[305]},{"name":"RPC_NT_ALREADY_REGISTERED","features":[305]},{"name":"RPC_NT_BAD_STUB_DATA","features":[305]},{"name":"RPC_NT_BINDING_HAS_NO_AUTH","features":[305]},{"name":"RPC_NT_BINDING_INCOMPLETE","features":[305]},{"name":"RPC_NT_BYTE_COUNT_TOO_SMALL","features":[305]},{"name":"RPC_NT_CALL_CANCELLED","features":[305]},{"name":"RPC_NT_CALL_FAILED","features":[305]},{"name":"RPC_NT_CALL_FAILED_DNE","features":[305]},{"name":"RPC_NT_CALL_IN_PROGRESS","features":[305]},{"name":"RPC_NT_CANNOT_SUPPORT","features":[305]},{"name":"RPC_NT_CANT_CREATE_ENDPOINT","features":[305]},{"name":"RPC_NT_COMM_FAILURE","features":[305]},{"name":"RPC_NT_COOKIE_AUTH_FAILED","features":[305]},{"name":"RPC_NT_DUPLICATE_ENDPOINT","features":[305]},{"name":"RPC_NT_ENTRY_ALREADY_EXISTS","features":[305]},{"name":"RPC_NT_ENTRY_NOT_FOUND","features":[305]},{"name":"RPC_NT_ENUM_VALUE_OUT_OF_RANGE","features":[305]},{"name":"RPC_NT_FP_DIV_ZERO","features":[305]},{"name":"RPC_NT_FP_OVERFLOW","features":[305]},{"name":"RPC_NT_FP_UNDERFLOW","features":[305]},{"name":"RPC_NT_GROUP_MEMBER_NOT_FOUND","features":[305]},{"name":"RPC_NT_INCOMPLETE_NAME","features":[305]},{"name":"RPC_NT_INTERFACE_NOT_FOUND","features":[305]},{"name":"RPC_NT_INTERNAL_ERROR","features":[305]},{"name":"RPC_NT_INVALID_ASYNC_CALL","features":[305]},{"name":"RPC_NT_INVALID_ASYNC_HANDLE","features":[305]},{"name":"RPC_NT_INVALID_AUTH_IDENTITY","features":[305]},{"name":"RPC_NT_INVALID_BINDING","features":[305]},{"name":"RPC_NT_INVALID_BOUND","features":[305]},{"name":"RPC_NT_INVALID_ENDPOINT_FORMAT","features":[305]},{"name":"RPC_NT_INVALID_ES_ACTION","features":[305]},{"name":"RPC_NT_INVALID_NAF_ID","features":[305]},{"name":"RPC_NT_INVALID_NAME_SYNTAX","features":[305]},{"name":"RPC_NT_INVALID_NETWORK_OPTIONS","features":[305]},{"name":"RPC_NT_INVALID_NET_ADDR","features":[305]},{"name":"RPC_NT_INVALID_OBJECT","features":[305]},{"name":"RPC_NT_INVALID_PIPE_OBJECT","features":[305]},{"name":"RPC_NT_INVALID_PIPE_OPERATION","features":[305]},{"name":"RPC_NT_INVALID_RPC_PROTSEQ","features":[305]},{"name":"RPC_NT_INVALID_STRING_BINDING","features":[305]},{"name":"RPC_NT_INVALID_STRING_UUID","features":[305]},{"name":"RPC_NT_INVALID_TAG","features":[305]},{"name":"RPC_NT_INVALID_TIMEOUT","features":[305]},{"name":"RPC_NT_INVALID_VERS_OPTION","features":[305]},{"name":"RPC_NT_MAX_CALLS_TOO_SMALL","features":[305]},{"name":"RPC_NT_NAME_SERVICE_UNAVAILABLE","features":[305]},{"name":"RPC_NT_NOTHING_TO_EXPORT","features":[305]},{"name":"RPC_NT_NOT_ALL_OBJS_UNEXPORTED","features":[305]},{"name":"RPC_NT_NOT_CANCELLED","features":[305]},{"name":"RPC_NT_NOT_LISTENING","features":[305]},{"name":"RPC_NT_NOT_RPC_ERROR","features":[305]},{"name":"RPC_NT_NO_BINDINGS","features":[305]},{"name":"RPC_NT_NO_CALL_ACTIVE","features":[305]},{"name":"RPC_NT_NO_CONTEXT_AVAILABLE","features":[305]},{"name":"RPC_NT_NO_ENDPOINT_FOUND","features":[305]},{"name":"RPC_NT_NO_ENTRY_NAME","features":[305]},{"name":"RPC_NT_NO_INTERFACES","features":[305]},{"name":"RPC_NT_NO_MORE_BINDINGS","features":[305]},{"name":"RPC_NT_NO_MORE_ENTRIES","features":[305]},{"name":"RPC_NT_NO_MORE_MEMBERS","features":[305]},{"name":"RPC_NT_NO_PRINC_NAME","features":[305]},{"name":"RPC_NT_NO_PROTSEQS","features":[305]},{"name":"RPC_NT_NO_PROTSEQS_REGISTERED","features":[305]},{"name":"RPC_NT_NULL_REF_POINTER","features":[305]},{"name":"RPC_NT_OBJECT_NOT_FOUND","features":[305]},{"name":"RPC_NT_OUT_OF_RESOURCES","features":[305]},{"name":"RPC_NT_PIPE_CLOSED","features":[305]},{"name":"RPC_NT_PIPE_DISCIPLINE_ERROR","features":[305]},{"name":"RPC_NT_PIPE_EMPTY","features":[305]},{"name":"RPC_NT_PROCNUM_OUT_OF_RANGE","features":[305]},{"name":"RPC_NT_PROTOCOL_ERROR","features":[305]},{"name":"RPC_NT_PROTSEQ_NOT_FOUND","features":[305]},{"name":"RPC_NT_PROTSEQ_NOT_SUPPORTED","features":[305]},{"name":"RPC_NT_PROXY_ACCESS_DENIED","features":[305]},{"name":"RPC_NT_SEC_PKG_ERROR","features":[305]},{"name":"RPC_NT_SEND_INCOMPLETE","features":[305]},{"name":"RPC_NT_SERVER_TOO_BUSY","features":[305]},{"name":"RPC_NT_SERVER_UNAVAILABLE","features":[305]},{"name":"RPC_NT_SS_CANNOT_GET_CALL_HANDLE","features":[305]},{"name":"RPC_NT_SS_CHAR_TRANS_OPEN_FAIL","features":[305]},{"name":"RPC_NT_SS_CHAR_TRANS_SHORT_FILE","features":[305]},{"name":"RPC_NT_SS_CONTEXT_DAMAGED","features":[305]},{"name":"RPC_NT_SS_CONTEXT_MISMATCH","features":[305]},{"name":"RPC_NT_SS_HANDLES_MISMATCH","features":[305]},{"name":"RPC_NT_SS_IN_NULL_CONTEXT","features":[305]},{"name":"RPC_NT_STRING_TOO_LONG","features":[305]},{"name":"RPC_NT_TYPE_ALREADY_REGISTERED","features":[305]},{"name":"RPC_NT_UNKNOWN_AUTHN_LEVEL","features":[305]},{"name":"RPC_NT_UNKNOWN_AUTHN_SERVICE","features":[305]},{"name":"RPC_NT_UNKNOWN_AUTHN_TYPE","features":[305]},{"name":"RPC_NT_UNKNOWN_AUTHZ_SERVICE","features":[305]},{"name":"RPC_NT_UNKNOWN_IF","features":[305]},{"name":"RPC_NT_UNKNOWN_MGR_TYPE","features":[305]},{"name":"RPC_NT_UNSUPPORTED_AUTHN_LEVEL","features":[305]},{"name":"RPC_NT_UNSUPPORTED_NAME_SYNTAX","features":[305]},{"name":"RPC_NT_UNSUPPORTED_TRANS_SYN","features":[305]},{"name":"RPC_NT_UNSUPPORTED_TYPE","features":[305]},{"name":"RPC_NT_UUID_LOCAL_ONLY","features":[305]},{"name":"RPC_NT_UUID_NO_ADDRESS","features":[305]},{"name":"RPC_NT_WRONG_ES_VERSION","features":[305]},{"name":"RPC_NT_WRONG_KIND_OF_BINDING","features":[305]},{"name":"RPC_NT_WRONG_PIPE_VERSION","features":[305]},{"name":"RPC_NT_WRONG_STUB_VERSION","features":[305]},{"name":"RPC_NT_ZERO_DIVIDE","features":[305]},{"name":"RPC_S_CALLPENDING","features":[305]},{"name":"RPC_S_WAITONTIMER","features":[305]},{"name":"RPC_X_BAD_STUB_DATA","features":[305]},{"name":"RPC_X_BYTE_COUNT_TOO_SMALL","features":[305]},{"name":"RPC_X_ENUM_VALUE_OUT_OF_RANGE","features":[305]},{"name":"RPC_X_ENUM_VALUE_TOO_LARGE","features":[305]},{"name":"RPC_X_INVALID_BOUND","features":[305]},{"name":"RPC_X_INVALID_BUFFER","features":[305]},{"name":"RPC_X_INVALID_ES_ACTION","features":[305]},{"name":"RPC_X_INVALID_PIPE_OBJECT","features":[305]},{"name":"RPC_X_INVALID_PIPE_OPERATION","features":[305]},{"name":"RPC_X_INVALID_TAG","features":[305]},{"name":"RPC_X_NO_MEMORY","features":[305]},{"name":"RPC_X_NO_MORE_ENTRIES","features":[305]},{"name":"RPC_X_NULL_REF_POINTER","features":[305]},{"name":"RPC_X_PIPE_APP_MEMORY","features":[305]},{"name":"RPC_X_PIPE_CLOSED","features":[305]},{"name":"RPC_X_PIPE_DISCIPLINE_ERROR","features":[305]},{"name":"RPC_X_PIPE_EMPTY","features":[305]},{"name":"RPC_X_SS_CANNOT_GET_CALL_HANDLE","features":[305]},{"name":"RPC_X_SS_CHAR_TRANS_OPEN_FAIL","features":[305]},{"name":"RPC_X_SS_CHAR_TRANS_SHORT_FILE","features":[305]},{"name":"RPC_X_SS_CONTEXT_DAMAGED","features":[305]},{"name":"RPC_X_SS_CONTEXT_MISMATCH","features":[305]},{"name":"RPC_X_SS_HANDLES_MISMATCH","features":[305]},{"name":"RPC_X_SS_IN_NULL_CONTEXT","features":[305]},{"name":"RPC_X_WRONG_ES_VERSION","features":[305]},{"name":"RPC_X_WRONG_PIPE_ORDER","features":[305]},{"name":"RPC_X_WRONG_PIPE_VERSION","features":[305]},{"name":"RPC_X_WRONG_STUB_VERSION","features":[305]},{"name":"RtlNtStatusToDosError","features":[305]},{"name":"SCARD_E_BAD_SEEK","features":[305]},{"name":"SCARD_E_CANCELLED","features":[305]},{"name":"SCARD_E_CANT_DISPOSE","features":[305]},{"name":"SCARD_E_CARD_UNSUPPORTED","features":[305]},{"name":"SCARD_E_CERTIFICATE_UNAVAILABLE","features":[305]},{"name":"SCARD_E_COMM_DATA_LOST","features":[305]},{"name":"SCARD_E_DIR_NOT_FOUND","features":[305]},{"name":"SCARD_E_DUPLICATE_READER","features":[305]},{"name":"SCARD_E_FILE_NOT_FOUND","features":[305]},{"name":"SCARD_E_ICC_CREATEORDER","features":[305]},{"name":"SCARD_E_ICC_INSTALLATION","features":[305]},{"name":"SCARD_E_INSUFFICIENT_BUFFER","features":[305]},{"name":"SCARD_E_INVALID_ATR","features":[305]},{"name":"SCARD_E_INVALID_CHV","features":[305]},{"name":"SCARD_E_INVALID_HANDLE","features":[305]},{"name":"SCARD_E_INVALID_PARAMETER","features":[305]},{"name":"SCARD_E_INVALID_TARGET","features":[305]},{"name":"SCARD_E_INVALID_VALUE","features":[305]},{"name":"SCARD_E_NOT_READY","features":[305]},{"name":"SCARD_E_NOT_TRANSACTED","features":[305]},{"name":"SCARD_E_NO_ACCESS","features":[305]},{"name":"SCARD_E_NO_DIR","features":[305]},{"name":"SCARD_E_NO_FILE","features":[305]},{"name":"SCARD_E_NO_KEY_CONTAINER","features":[305]},{"name":"SCARD_E_NO_MEMORY","features":[305]},{"name":"SCARD_E_NO_PIN_CACHE","features":[305]},{"name":"SCARD_E_NO_READERS_AVAILABLE","features":[305]},{"name":"SCARD_E_NO_SERVICE","features":[305]},{"name":"SCARD_E_NO_SMARTCARD","features":[305]},{"name":"SCARD_E_NO_SUCH_CERTIFICATE","features":[305]},{"name":"SCARD_E_PCI_TOO_SMALL","features":[305]},{"name":"SCARD_E_PIN_CACHE_EXPIRED","features":[305]},{"name":"SCARD_E_PROTO_MISMATCH","features":[305]},{"name":"SCARD_E_READER_UNAVAILABLE","features":[305]},{"name":"SCARD_E_READER_UNSUPPORTED","features":[305]},{"name":"SCARD_E_READ_ONLY_CARD","features":[305]},{"name":"SCARD_E_SERVER_TOO_BUSY","features":[305]},{"name":"SCARD_E_SERVICE_STOPPED","features":[305]},{"name":"SCARD_E_SHARING_VIOLATION","features":[305]},{"name":"SCARD_E_SYSTEM_CANCELLED","features":[305]},{"name":"SCARD_E_TIMEOUT","features":[305]},{"name":"SCARD_E_UNEXPECTED","features":[305]},{"name":"SCARD_E_UNKNOWN_CARD","features":[305]},{"name":"SCARD_E_UNKNOWN_READER","features":[305]},{"name":"SCARD_E_UNKNOWN_RES_MNG","features":[305]},{"name":"SCARD_E_UNSUPPORTED_FEATURE","features":[305]},{"name":"SCARD_E_WRITE_TOO_MANY","features":[305]},{"name":"SCARD_F_COMM_ERROR","features":[305]},{"name":"SCARD_F_INTERNAL_ERROR","features":[305]},{"name":"SCARD_F_UNKNOWN_ERROR","features":[305]},{"name":"SCARD_F_WAITED_TOO_LONG","features":[305]},{"name":"SCARD_P_SHUTDOWN","features":[305]},{"name":"SCARD_W_CACHE_ITEM_NOT_FOUND","features":[305]},{"name":"SCARD_W_CACHE_ITEM_STALE","features":[305]},{"name":"SCARD_W_CACHE_ITEM_TOO_BIG","features":[305]},{"name":"SCARD_W_CANCELLED_BY_USER","features":[305]},{"name":"SCARD_W_CARD_NOT_AUTHENTICATED","features":[305]},{"name":"SCARD_W_CHV_BLOCKED","features":[305]},{"name":"SCARD_W_EOF","features":[305]},{"name":"SCARD_W_REMOVED_CARD","features":[305]},{"name":"SCARD_W_RESET_CARD","features":[305]},{"name":"SCARD_W_SECURITY_VIOLATION","features":[305]},{"name":"SCARD_W_UNPOWERED_CARD","features":[305]},{"name":"SCARD_W_UNRESPONSIVE_CARD","features":[305]},{"name":"SCARD_W_UNSUPPORTED_CARD","features":[305]},{"name":"SCARD_W_WRONG_CHV","features":[305]},{"name":"SCHED_E_ACCOUNT_DBASE_CORRUPT","features":[305]},{"name":"SCHED_E_ACCOUNT_INFORMATION_NOT_SET","features":[305]},{"name":"SCHED_E_ACCOUNT_NAME_NOT_FOUND","features":[305]},{"name":"SCHED_E_ALREADY_RUNNING","features":[305]},{"name":"SCHED_E_CANNOT_OPEN_TASK","features":[305]},{"name":"SCHED_E_DEPRECATED_FEATURE_USED","features":[305]},{"name":"SCHED_E_INVALIDVALUE","features":[305]},{"name":"SCHED_E_INVALID_TASK","features":[305]},{"name":"SCHED_E_INVALID_TASK_HASH","features":[305]},{"name":"SCHED_E_MALFORMEDXML","features":[305]},{"name":"SCHED_E_MISSINGNODE","features":[305]},{"name":"SCHED_E_NAMESPACE","features":[305]},{"name":"SCHED_E_NO_SECURITY_SERVICES","features":[305]},{"name":"SCHED_E_PAST_END_BOUNDARY","features":[305]},{"name":"SCHED_E_SERVICE_NOT_AVAILABLE","features":[305]},{"name":"SCHED_E_SERVICE_NOT_INSTALLED","features":[305]},{"name":"SCHED_E_SERVICE_NOT_LOCALSYSTEM","features":[305]},{"name":"SCHED_E_SERVICE_NOT_RUNNING","features":[305]},{"name":"SCHED_E_SERVICE_TOO_BUSY","features":[305]},{"name":"SCHED_E_START_ON_DEMAND","features":[305]},{"name":"SCHED_E_TASK_ATTEMPTED","features":[305]},{"name":"SCHED_E_TASK_DISABLED","features":[305]},{"name":"SCHED_E_TASK_NOT_READY","features":[305]},{"name":"SCHED_E_TASK_NOT_RUNNING","features":[305]},{"name":"SCHED_E_TASK_NOT_UBPM_COMPAT","features":[305]},{"name":"SCHED_E_TASK_NOT_V1_COMPAT","features":[305]},{"name":"SCHED_E_TOO_MANY_NODES","features":[305]},{"name":"SCHED_E_TRIGGER_NOT_FOUND","features":[305]},{"name":"SCHED_E_UNEXPECTEDNODE","features":[305]},{"name":"SCHED_E_UNKNOWN_OBJECT_VERSION","features":[305]},{"name":"SCHED_E_UNSUPPORTED_ACCOUNT_OPTION","features":[305]},{"name":"SCHED_E_USER_NOT_LOGGED_ON","features":[305]},{"name":"SCHED_S_BATCH_LOGON_PROBLEM","features":[305]},{"name":"SCHED_S_EVENT_TRIGGER","features":[305]},{"name":"SCHED_S_SOME_TRIGGERS_FAILED","features":[305]},{"name":"SCHED_S_TASK_DISABLED","features":[305]},{"name":"SCHED_S_TASK_HAS_NOT_RUN","features":[305]},{"name":"SCHED_S_TASK_NOT_SCHEDULED","features":[305]},{"name":"SCHED_S_TASK_NO_MORE_RUNS","features":[305]},{"name":"SCHED_S_TASK_NO_VALID_TRIGGERS","features":[305]},{"name":"SCHED_S_TASK_QUEUED","features":[305]},{"name":"SCHED_S_TASK_READY","features":[305]},{"name":"SCHED_S_TASK_RUNNING","features":[305]},{"name":"SCHED_S_TASK_TERMINATED","features":[305]},{"name":"SDIAG_E_CANCELLED","features":[305]},{"name":"SDIAG_E_CANNOTRUN","features":[305]},{"name":"SDIAG_E_DISABLED","features":[305]},{"name":"SDIAG_E_MANAGEDHOST","features":[305]},{"name":"SDIAG_E_NOVERIFIER","features":[305]},{"name":"SDIAG_E_POWERSHELL","features":[305]},{"name":"SDIAG_E_RESOURCE","features":[305]},{"name":"SDIAG_E_ROOTCAUSE","features":[305]},{"name":"SDIAG_E_SCRIPT","features":[305]},{"name":"SDIAG_E_TRUST","features":[305]},{"name":"SDIAG_E_VERSION","features":[305]},{"name":"SDIAG_S_CANNOTRUN","features":[305]},{"name":"SEARCH_E_NOMONIKER","features":[305]},{"name":"SEARCH_E_NOREGION","features":[305]},{"name":"SEARCH_S_NOMOREHITS","features":[305]},{"name":"SEC_E_ALGORITHM_MISMATCH","features":[305]},{"name":"SEC_E_APPLICATION_PROTOCOL_MISMATCH","features":[305]},{"name":"SEC_E_BAD_BINDINGS","features":[305]},{"name":"SEC_E_BAD_PKGID","features":[305]},{"name":"SEC_E_BUFFER_TOO_SMALL","features":[305]},{"name":"SEC_E_CANNOT_INSTALL","features":[305]},{"name":"SEC_E_CANNOT_PACK","features":[305]},{"name":"SEC_E_CERT_EXPIRED","features":[305]},{"name":"SEC_E_CERT_UNKNOWN","features":[305]},{"name":"SEC_E_CERT_WRONG_USAGE","features":[305]},{"name":"SEC_E_CONTEXT_EXPIRED","features":[305]},{"name":"SEC_E_CROSSREALM_DELEGATION_FAILURE","features":[305]},{"name":"SEC_E_CRYPTO_SYSTEM_INVALID","features":[305]},{"name":"SEC_E_DECRYPT_FAILURE","features":[305]},{"name":"SEC_E_DELEGATION_POLICY","features":[305]},{"name":"SEC_E_DELEGATION_REQUIRED","features":[305]},{"name":"SEC_E_DOWNGRADE_DETECTED","features":[305]},{"name":"SEC_E_ENCRYPT_FAILURE","features":[305]},{"name":"SEC_E_EXT_BUFFER_TOO_SMALL","features":[305]},{"name":"SEC_E_ILLEGAL_MESSAGE","features":[305]},{"name":"SEC_E_INCOMPLETE_CREDENTIALS","features":[305]},{"name":"SEC_E_INCOMPLETE_MESSAGE","features":[305]},{"name":"SEC_E_INSUFFICIENT_BUFFERS","features":[305]},{"name":"SEC_E_INSUFFICIENT_MEMORY","features":[305]},{"name":"SEC_E_INTERNAL_ERROR","features":[305]},{"name":"SEC_E_INVALID_HANDLE","features":[305]},{"name":"SEC_E_INVALID_PARAMETER","features":[305]},{"name":"SEC_E_INVALID_TOKEN","features":[305]},{"name":"SEC_E_INVALID_UPN_NAME","features":[305]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED","features":[305]},{"name":"SEC_E_ISSUING_CA_UNTRUSTED_KDC","features":[305]},{"name":"SEC_E_KDC_CERT_EXPIRED","features":[305]},{"name":"SEC_E_KDC_CERT_REVOKED","features":[305]},{"name":"SEC_E_KDC_INVALID_REQUEST","features":[305]},{"name":"SEC_E_KDC_UNABLE_TO_REFER","features":[305]},{"name":"SEC_E_KDC_UNKNOWN_ETYPE","features":[305]},{"name":"SEC_E_LOGON_DENIED","features":[305]},{"name":"SEC_E_MAX_REFERRALS_EXCEEDED","features":[305]},{"name":"SEC_E_MESSAGE_ALTERED","features":[305]},{"name":"SEC_E_MULTIPLE_ACCOUNTS","features":[305]},{"name":"SEC_E_MUST_BE_KDC","features":[305]},{"name":"SEC_E_MUTUAL_AUTH_FAILED","features":[305]},{"name":"SEC_E_NOT_OWNER","features":[305]},{"name":"SEC_E_NOT_SUPPORTED","features":[305]},{"name":"SEC_E_NO_AUTHENTICATING_AUTHORITY","features":[305]},{"name":"SEC_E_NO_CONTEXT","features":[305]},{"name":"SEC_E_NO_CREDENTIALS","features":[305]},{"name":"SEC_E_NO_IMPERSONATION","features":[305]},{"name":"SEC_E_NO_IP_ADDRESSES","features":[305]},{"name":"SEC_E_NO_KERB_KEY","features":[305]},{"name":"SEC_E_NO_PA_DATA","features":[305]},{"name":"SEC_E_NO_S4U_PROT_SUPPORT","features":[305]},{"name":"SEC_E_NO_SPM","features":[305]},{"name":"SEC_E_NO_TGT_REPLY","features":[305]},{"name":"SEC_E_OK","features":[305]},{"name":"SEC_E_ONLY_HTTPS_ALLOWED","features":[305]},{"name":"SEC_E_OUT_OF_SEQUENCE","features":[305]},{"name":"SEC_E_PKINIT_CLIENT_FAILURE","features":[305]},{"name":"SEC_E_PKINIT_NAME_MISMATCH","features":[305]},{"name":"SEC_E_PKU2U_CERT_FAILURE","features":[305]},{"name":"SEC_E_POLICY_NLTM_ONLY","features":[305]},{"name":"SEC_E_QOP_NOT_SUPPORTED","features":[305]},{"name":"SEC_E_REVOCATION_OFFLINE_C","features":[305]},{"name":"SEC_E_REVOCATION_OFFLINE_KDC","features":[305]},{"name":"SEC_E_SECPKG_NOT_FOUND","features":[305]},{"name":"SEC_E_SECURITY_QOS_FAILED","features":[305]},{"name":"SEC_E_SHUTDOWN_IN_PROGRESS","features":[305]},{"name":"SEC_E_SMARTCARD_CERT_EXPIRED","features":[305]},{"name":"SEC_E_SMARTCARD_CERT_REVOKED","features":[305]},{"name":"SEC_E_SMARTCARD_LOGON_REQUIRED","features":[305]},{"name":"SEC_E_STRONG_CRYPTO_NOT_SUPPORTED","features":[305]},{"name":"SEC_E_TARGET_UNKNOWN","features":[305]},{"name":"SEC_E_TIME_SKEW","features":[305]},{"name":"SEC_E_TOO_MANY_PRINCIPALS","features":[305]},{"name":"SEC_E_UNFINISHED_CONTEXT_DELETED","features":[305]},{"name":"SEC_E_UNKNOWN_CREDENTIALS","features":[305]},{"name":"SEC_E_UNSUPPORTED_FUNCTION","features":[305]},{"name":"SEC_E_UNSUPPORTED_PREAUTH","features":[305]},{"name":"SEC_E_UNTRUSTED_ROOT","features":[305]},{"name":"SEC_E_WRONG_CREDENTIAL_HANDLE","features":[305]},{"name":"SEC_E_WRONG_PRINCIPAL","features":[305]},{"name":"SEC_I_ASYNC_CALL_PENDING","features":[305]},{"name":"SEC_I_COMPLETE_AND_CONTINUE","features":[305]},{"name":"SEC_I_COMPLETE_NEEDED","features":[305]},{"name":"SEC_I_CONTEXT_EXPIRED","features":[305]},{"name":"SEC_I_CONTINUE_NEEDED","features":[305]},{"name":"SEC_I_CONTINUE_NEEDED_MESSAGE_OK","features":[305]},{"name":"SEC_I_GENERIC_EXTENSION_RECEIVED","features":[305]},{"name":"SEC_I_INCOMPLETE_CREDENTIALS","features":[305]},{"name":"SEC_I_LOCAL_LOGON","features":[305]},{"name":"SEC_I_MESSAGE_FRAGMENT","features":[305]},{"name":"SEC_I_NO_LSA_CONTEXT","features":[305]},{"name":"SEC_I_NO_RENEGOTIATION","features":[305]},{"name":"SEC_I_RENEGOTIATE","features":[305]},{"name":"SEC_I_SIGNATURE_NEEDED","features":[305]},{"name":"SEVERITY_ERROR","features":[305]},{"name":"SEVERITY_SUCCESS","features":[305]},{"name":"SHANDLE_PTR","features":[305]},{"name":"SIZE","features":[305]},{"name":"SPAPI_E_AUTHENTICODE_DISALLOWED","features":[305]},{"name":"SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED","features":[305]},{"name":"SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER","features":[305]},{"name":"SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED","features":[305]},{"name":"SPAPI_E_BAD_INTERFACE_INSTALLSECT","features":[305]},{"name":"SPAPI_E_BAD_SECTION_NAME_LINE","features":[305]},{"name":"SPAPI_E_BAD_SERVICE_INSTALLSECT","features":[305]},{"name":"SPAPI_E_CANT_LOAD_CLASS_ICON","features":[305]},{"name":"SPAPI_E_CANT_REMOVE_DEVINST","features":[305]},{"name":"SPAPI_E_CLASS_MISMATCH","features":[305]},{"name":"SPAPI_E_DEVICE_INSTALLER_NOT_READY","features":[305]},{"name":"SPAPI_E_DEVICE_INSTALL_BLOCKED","features":[305]},{"name":"SPAPI_E_DEVICE_INTERFACE_ACTIVE","features":[305]},{"name":"SPAPI_E_DEVICE_INTERFACE_REMOVED","features":[305]},{"name":"SPAPI_E_DEVINFO_DATA_LOCKED","features":[305]},{"name":"SPAPI_E_DEVINFO_LIST_LOCKED","features":[305]},{"name":"SPAPI_E_DEVINFO_NOT_REGISTERED","features":[305]},{"name":"SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE","features":[305]},{"name":"SPAPI_E_DEVINST_ALREADY_EXISTS","features":[305]},{"name":"SPAPI_E_DI_BAD_PATH","features":[305]},{"name":"SPAPI_E_DI_DONT_INSTALL","features":[305]},{"name":"SPAPI_E_DI_DO_DEFAULT","features":[305]},{"name":"SPAPI_E_DI_FUNCTION_OBSOLETE","features":[305]},{"name":"SPAPI_E_DI_NOFILECOPY","features":[305]},{"name":"SPAPI_E_DI_POSTPROCESSING_REQUIRED","features":[305]},{"name":"SPAPI_E_DRIVER_INSTALL_BLOCKED","features":[305]},{"name":"SPAPI_E_DRIVER_NONNATIVE","features":[305]},{"name":"SPAPI_E_DRIVER_STORE_ADD_FAILED","features":[305]},{"name":"SPAPI_E_DRIVER_STORE_DELETE_FAILED","features":[305]},{"name":"SPAPI_E_DUPLICATE_FOUND","features":[305]},{"name":"SPAPI_E_ERROR_NOT_INSTALLED","features":[305]},{"name":"SPAPI_E_EXPECTED_SECTION_NAME","features":[305]},{"name":"SPAPI_E_FILEQUEUE_LOCKED","features":[305]},{"name":"SPAPI_E_FILE_HASH_NOT_IN_CATALOG","features":[305]},{"name":"SPAPI_E_GENERAL_SYNTAX","features":[305]},{"name":"SPAPI_E_INCORRECTLY_COPIED_INF","features":[305]},{"name":"SPAPI_E_INF_IN_USE_BY_DEVICES","features":[305]},{"name":"SPAPI_E_INVALID_CLASS","features":[305]},{"name":"SPAPI_E_INVALID_CLASS_INSTALLER","features":[305]},{"name":"SPAPI_E_INVALID_COINSTALLER","features":[305]},{"name":"SPAPI_E_INVALID_DEVINST_NAME","features":[305]},{"name":"SPAPI_E_INVALID_FILTER_DRIVER","features":[305]},{"name":"SPAPI_E_INVALID_HWPROFILE","features":[305]},{"name":"SPAPI_E_INVALID_INF_LOGCONFIG","features":[305]},{"name":"SPAPI_E_INVALID_MACHINENAME","features":[305]},{"name":"SPAPI_E_INVALID_PROPPAGE_PROVIDER","features":[305]},{"name":"SPAPI_E_INVALID_REFERENCE_STRING","features":[305]},{"name":"SPAPI_E_INVALID_REG_PROPERTY","features":[305]},{"name":"SPAPI_E_INVALID_TARGET","features":[305]},{"name":"SPAPI_E_IN_WOW64","features":[305]},{"name":"SPAPI_E_KEY_DOES_NOT_EXIST","features":[305]},{"name":"SPAPI_E_LINE_NOT_FOUND","features":[305]},{"name":"SPAPI_E_MACHINE_UNAVAILABLE","features":[305]},{"name":"SPAPI_E_NON_WINDOWS_DRIVER","features":[305]},{"name":"SPAPI_E_NON_WINDOWS_NT_DRIVER","features":[305]},{"name":"SPAPI_E_NOT_AN_INSTALLED_OEM_INF","features":[305]},{"name":"SPAPI_E_NOT_DISABLEABLE","features":[305]},{"name":"SPAPI_E_NO_ASSOCIATED_CLASS","features":[305]},{"name":"SPAPI_E_NO_ASSOCIATED_SERVICE","features":[305]},{"name":"SPAPI_E_NO_AUTHENTICODE_CATALOG","features":[305]},{"name":"SPAPI_E_NO_BACKUP","features":[305]},{"name":"SPAPI_E_NO_CATALOG_FOR_OEM_INF","features":[305]},{"name":"SPAPI_E_NO_CLASSINSTALL_PARAMS","features":[305]},{"name":"SPAPI_E_NO_CLASS_DRIVER_LIST","features":[305]},{"name":"SPAPI_E_NO_COMPAT_DRIVERS","features":[305]},{"name":"SPAPI_E_NO_CONFIGMGR_SERVICES","features":[305]},{"name":"SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE","features":[305]},{"name":"SPAPI_E_NO_DEVICE_ICON","features":[305]},{"name":"SPAPI_E_NO_DEVICE_SELECTED","features":[305]},{"name":"SPAPI_E_NO_DRIVER_SELECTED","features":[305]},{"name":"SPAPI_E_NO_INF","features":[305]},{"name":"SPAPI_E_NO_SUCH_DEVICE_INTERFACE","features":[305]},{"name":"SPAPI_E_NO_SUCH_DEVINST","features":[305]},{"name":"SPAPI_E_NO_SUCH_INTERFACE_CLASS","features":[305]},{"name":"SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE","features":[305]},{"name":"SPAPI_E_PNP_REGISTRY_ERROR","features":[305]},{"name":"SPAPI_E_REMOTE_COMM_FAILURE","features":[305]},{"name":"SPAPI_E_REMOTE_REQUEST_UNSUPPORTED","features":[305]},{"name":"SPAPI_E_SCE_DISABLED","features":[305]},{"name":"SPAPI_E_SECTION_NAME_TOO_LONG","features":[305]},{"name":"SPAPI_E_SECTION_NOT_FOUND","features":[305]},{"name":"SPAPI_E_SET_SYSTEM_RESTORE_POINT","features":[305]},{"name":"SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH","features":[305]},{"name":"SPAPI_E_UNKNOWN_EXCEPTION","features":[305]},{"name":"SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW","features":[305]},{"name":"SPAPI_E_WRONG_INF_STYLE","features":[305]},{"name":"SPAPI_E_WRONG_INF_TYPE","features":[305]},{"name":"SQLITE_E_ABORT","features":[305]},{"name":"SQLITE_E_ABORT_ROLLBACK","features":[305]},{"name":"SQLITE_E_AUTH","features":[305]},{"name":"SQLITE_E_BUSY","features":[305]},{"name":"SQLITE_E_BUSY_RECOVERY","features":[305]},{"name":"SQLITE_E_BUSY_SNAPSHOT","features":[305]},{"name":"SQLITE_E_CANTOPEN","features":[305]},{"name":"SQLITE_E_CANTOPEN_CONVPATH","features":[305]},{"name":"SQLITE_E_CANTOPEN_FULLPATH","features":[305]},{"name":"SQLITE_E_CANTOPEN_ISDIR","features":[305]},{"name":"SQLITE_E_CANTOPEN_NOTEMPDIR","features":[305]},{"name":"SQLITE_E_CONSTRAINT","features":[305]},{"name":"SQLITE_E_CONSTRAINT_CHECK","features":[305]},{"name":"SQLITE_E_CONSTRAINT_COMMITHOOK","features":[305]},{"name":"SQLITE_E_CONSTRAINT_FOREIGNKEY","features":[305]},{"name":"SQLITE_E_CONSTRAINT_FUNCTION","features":[305]},{"name":"SQLITE_E_CONSTRAINT_NOTNULL","features":[305]},{"name":"SQLITE_E_CONSTRAINT_PRIMARYKEY","features":[305]},{"name":"SQLITE_E_CONSTRAINT_ROWID","features":[305]},{"name":"SQLITE_E_CONSTRAINT_TRIGGER","features":[305]},{"name":"SQLITE_E_CONSTRAINT_UNIQUE","features":[305]},{"name":"SQLITE_E_CONSTRAINT_VTAB","features":[305]},{"name":"SQLITE_E_CORRUPT","features":[305]},{"name":"SQLITE_E_CORRUPT_VTAB","features":[305]},{"name":"SQLITE_E_DONE","features":[305]},{"name":"SQLITE_E_EMPTY","features":[305]},{"name":"SQLITE_E_ERROR","features":[305]},{"name":"SQLITE_E_FORMAT","features":[305]},{"name":"SQLITE_E_FULL","features":[305]},{"name":"SQLITE_E_INTERNAL","features":[305]},{"name":"SQLITE_E_INTERRUPT","features":[305]},{"name":"SQLITE_E_IOERR","features":[305]},{"name":"SQLITE_E_IOERR_ACCESS","features":[305]},{"name":"SQLITE_E_IOERR_AUTH","features":[305]},{"name":"SQLITE_E_IOERR_BLOCKED","features":[305]},{"name":"SQLITE_E_IOERR_CHECKRESERVEDLOCK","features":[305]},{"name":"SQLITE_E_IOERR_CLOSE","features":[305]},{"name":"SQLITE_E_IOERR_CONVPATH","features":[305]},{"name":"SQLITE_E_IOERR_DELETE","features":[305]},{"name":"SQLITE_E_IOERR_DELETE_NOENT","features":[305]},{"name":"SQLITE_E_IOERR_DIR_CLOSE","features":[305]},{"name":"SQLITE_E_IOERR_DIR_FSYNC","features":[305]},{"name":"SQLITE_E_IOERR_FSTAT","features":[305]},{"name":"SQLITE_E_IOERR_FSYNC","features":[305]},{"name":"SQLITE_E_IOERR_GETTEMPPATH","features":[305]},{"name":"SQLITE_E_IOERR_LOCK","features":[305]},{"name":"SQLITE_E_IOERR_MMAP","features":[305]},{"name":"SQLITE_E_IOERR_NOMEM","features":[305]},{"name":"SQLITE_E_IOERR_RDLOCK","features":[305]},{"name":"SQLITE_E_IOERR_READ","features":[305]},{"name":"SQLITE_E_IOERR_SEEK","features":[305]},{"name":"SQLITE_E_IOERR_SHMLOCK","features":[305]},{"name":"SQLITE_E_IOERR_SHMMAP","features":[305]},{"name":"SQLITE_E_IOERR_SHMOPEN","features":[305]},{"name":"SQLITE_E_IOERR_SHMSIZE","features":[305]},{"name":"SQLITE_E_IOERR_SHORT_READ","features":[305]},{"name":"SQLITE_E_IOERR_TRUNCATE","features":[305]},{"name":"SQLITE_E_IOERR_UNLOCK","features":[305]},{"name":"SQLITE_E_IOERR_VNODE","features":[305]},{"name":"SQLITE_E_IOERR_WRITE","features":[305]},{"name":"SQLITE_E_LOCKED","features":[305]},{"name":"SQLITE_E_LOCKED_SHAREDCACHE","features":[305]},{"name":"SQLITE_E_MISMATCH","features":[305]},{"name":"SQLITE_E_MISUSE","features":[305]},{"name":"SQLITE_E_NOLFS","features":[305]},{"name":"SQLITE_E_NOMEM","features":[305]},{"name":"SQLITE_E_NOTADB","features":[305]},{"name":"SQLITE_E_NOTFOUND","features":[305]},{"name":"SQLITE_E_NOTICE","features":[305]},{"name":"SQLITE_E_NOTICE_RECOVER_ROLLBACK","features":[305]},{"name":"SQLITE_E_NOTICE_RECOVER_WAL","features":[305]},{"name":"SQLITE_E_PERM","features":[305]},{"name":"SQLITE_E_PROTOCOL","features":[305]},{"name":"SQLITE_E_RANGE","features":[305]},{"name":"SQLITE_E_READONLY","features":[305]},{"name":"SQLITE_E_READONLY_CANTLOCK","features":[305]},{"name":"SQLITE_E_READONLY_DBMOVED","features":[305]},{"name":"SQLITE_E_READONLY_RECOVERY","features":[305]},{"name":"SQLITE_E_READONLY_ROLLBACK","features":[305]},{"name":"SQLITE_E_ROW","features":[305]},{"name":"SQLITE_E_SCHEMA","features":[305]},{"name":"SQLITE_E_TOOBIG","features":[305]},{"name":"SQLITE_E_WARNING","features":[305]},{"name":"SQLITE_E_WARNING_AUTOINDEX","features":[305]},{"name":"STATEREPOSITORY_ERROR_CACHE_CORRUPTED","features":[305]},{"name":"STATEREPOSITORY_ERROR_DICTIONARY_CORRUPTED","features":[305]},{"name":"STATEREPOSITORY_E_BLOCKED","features":[305]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_RETRY","features":[305]},{"name":"STATEREPOSITORY_E_BUSY_RECOVERY_TIMEOUT_EXCEEDED","features":[305]},{"name":"STATEREPOSITORY_E_BUSY_RETRY","features":[305]},{"name":"STATEREPOSITORY_E_BUSY_TIMEOUT_EXCEEDED","features":[305]},{"name":"STATEREPOSITORY_E_CACHE_NOT_INIITALIZED","features":[305]},{"name":"STATEREPOSITORY_E_CONCURRENCY_LOCKING_FAILURE","features":[305]},{"name":"STATEREPOSITORY_E_CONFIGURATION_INVALID","features":[305]},{"name":"STATEREPOSITORY_E_DEPENDENCY_NOT_RESOLVED","features":[305]},{"name":"STATEREPOSITORY_E_LOCKED_RETRY","features":[305]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_RETRY","features":[305]},{"name":"STATEREPOSITORY_E_LOCKED_SHAREDCACHE_TIMEOUT_EXCEEDED","features":[305]},{"name":"STATEREPOSITORY_E_LOCKED_TIMEOUT_EXCEEDED","features":[305]},{"name":"STATEREPOSITORY_E_SERVICE_STOP_IN_PROGRESS","features":[305]},{"name":"STATEREPOSITORY_E_STATEMENT_INPROGRESS","features":[305]},{"name":"STATEREPOSITORY_E_TRANSACTION_REQUIRED","features":[305]},{"name":"STATEREPOSITORY_E_UNKNOWN_SCHEMA_VERSION","features":[305]},{"name":"STATEREPOSITORY_TRANSACTION_CALLER_ID_CHANGED","features":[305]},{"name":"STATEREPOSITORY_TRANSACTION_IN_PROGRESS","features":[305]},{"name":"STATEREPOSTORY_E_NESTED_TRANSACTION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_ABANDONED","features":[305]},{"name":"STATUS_ABANDONED_WAIT_0","features":[305]},{"name":"STATUS_ABANDONED_WAIT_63","features":[305]},{"name":"STATUS_ABANDON_HIBERFILE","features":[305]},{"name":"STATUS_ABIOS_INVALID_COMMAND","features":[305]},{"name":"STATUS_ABIOS_INVALID_LID","features":[305]},{"name":"STATUS_ABIOS_INVALID_SELECTOR","features":[305]},{"name":"STATUS_ABIOS_LID_ALREADY_OWNED","features":[305]},{"name":"STATUS_ABIOS_LID_NOT_EXIST","features":[305]},{"name":"STATUS_ABIOS_NOT_LID_OWNER","features":[305]},{"name":"STATUS_ABIOS_NOT_PRESENT","features":[305]},{"name":"STATUS_ABIOS_SELECTOR_NOT_AVAILABLE","features":[305]},{"name":"STATUS_ACCESS_AUDIT_BY_POLICY","features":[305]},{"name":"STATUS_ACCESS_DENIED","features":[305]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT","features":[305]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_OTHER","features":[305]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PATH","features":[305]},{"name":"STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER","features":[305]},{"name":"STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY","features":[305]},{"name":"STATUS_ACCESS_VIOLATION","features":[305]},{"name":"STATUS_ACPI_ACQUIRE_GLOBAL_LOCK","features":[305]},{"name":"STATUS_ACPI_ADDRESS_NOT_MAPPED","features":[305]},{"name":"STATUS_ACPI_ALREADY_INITIALIZED","features":[305]},{"name":"STATUS_ACPI_ASSERT_FAILED","features":[305]},{"name":"STATUS_ACPI_FATAL","features":[305]},{"name":"STATUS_ACPI_HANDLER_COLLISION","features":[305]},{"name":"STATUS_ACPI_INCORRECT_ARGUMENT_COUNT","features":[305]},{"name":"STATUS_ACPI_INVALID_ACCESS_SIZE","features":[305]},{"name":"STATUS_ACPI_INVALID_ARGTYPE","features":[305]},{"name":"STATUS_ACPI_INVALID_ARGUMENT","features":[305]},{"name":"STATUS_ACPI_INVALID_DATA","features":[305]},{"name":"STATUS_ACPI_INVALID_EVENTTYPE","features":[305]},{"name":"STATUS_ACPI_INVALID_INDEX","features":[305]},{"name":"STATUS_ACPI_INVALID_MUTEX_LEVEL","features":[305]},{"name":"STATUS_ACPI_INVALID_OBJTYPE","features":[305]},{"name":"STATUS_ACPI_INVALID_OPCODE","features":[305]},{"name":"STATUS_ACPI_INVALID_REGION","features":[305]},{"name":"STATUS_ACPI_INVALID_SUPERNAME","features":[305]},{"name":"STATUS_ACPI_INVALID_TABLE","features":[305]},{"name":"STATUS_ACPI_INVALID_TARGETTYPE","features":[305]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNED","features":[305]},{"name":"STATUS_ACPI_MUTEX_NOT_OWNER","features":[305]},{"name":"STATUS_ACPI_NOT_INITIALIZED","features":[305]},{"name":"STATUS_ACPI_POWER_REQUEST_FAILED","features":[305]},{"name":"STATUS_ACPI_REG_HANDLER_FAILED","features":[305]},{"name":"STATUS_ACPI_RS_ACCESS","features":[305]},{"name":"STATUS_ACPI_STACK_OVERFLOW","features":[305]},{"name":"STATUS_ADAPTER_HARDWARE_ERROR","features":[305]},{"name":"STATUS_ADDRESS_ALREADY_ASSOCIATED","features":[305]},{"name":"STATUS_ADDRESS_ALREADY_EXISTS","features":[305]},{"name":"STATUS_ADDRESS_CLOSED","features":[305]},{"name":"STATUS_ADDRESS_NOT_ASSOCIATED","features":[305]},{"name":"STATUS_ADMINLESS_ACCESS_DENIED","features":[305]},{"name":"STATUS_ADVANCED_INSTALLER_FAILED","features":[305]},{"name":"STATUS_AGENTS_EXHAUSTED","features":[305]},{"name":"STATUS_ALERTED","features":[305]},{"name":"STATUS_ALIAS_EXISTS","features":[305]},{"name":"STATUS_ALLOCATE_BUCKET","features":[305]},{"name":"STATUS_ALLOTTED_SPACE_EXCEEDED","features":[305]},{"name":"STATUS_ALL_SIDS_FILTERED","features":[305]},{"name":"STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_ALPC_CHECK_COMPLETION_LIST","features":[305]},{"name":"STATUS_ALREADY_COMMITTED","features":[305]},{"name":"STATUS_ALREADY_COMPLETE","features":[305]},{"name":"STATUS_ALREADY_DISCONNECTED","features":[305]},{"name":"STATUS_ALREADY_HAS_STREAM_ID","features":[305]},{"name":"STATUS_ALREADY_INITIALIZED","features":[305]},{"name":"STATUS_ALREADY_REGISTERED","features":[305]},{"name":"STATUS_ALREADY_WIN32","features":[305]},{"name":"STATUS_AMBIGUOUS_SYSTEM_DEVICE","features":[305]},{"name":"STATUS_APC_RETURNED_WHILE_IMPERSONATING","features":[305]},{"name":"STATUS_APISET_NOT_HOSTED","features":[305]},{"name":"STATUS_APISET_NOT_PRESENT","features":[305]},{"name":"STATUS_APPEXEC_APP_COMPAT_BLOCK","features":[305]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT","features":[305]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_LICENSING","features":[305]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_RESOURCES","features":[305]},{"name":"STATUS_APPEXEC_CALLER_WAIT_TIMEOUT_TERMINATION","features":[305]},{"name":"STATUS_APPEXEC_CONDITION_NOT_SATISFIED","features":[305]},{"name":"STATUS_APPEXEC_HANDLE_INVALIDATED","features":[305]},{"name":"STATUS_APPEXEC_HOST_ID_MISMATCH","features":[305]},{"name":"STATUS_APPEXEC_INVALID_HOST_GENERATION","features":[305]},{"name":"STATUS_APPEXEC_INVALID_HOST_STATE","features":[305]},{"name":"STATUS_APPEXEC_NO_DONOR","features":[305]},{"name":"STATUS_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION","features":[305]},{"name":"STATUS_APPEXEC_UNKNOWN_USER","features":[305]},{"name":"STATUS_APPHELP_BLOCK","features":[305]},{"name":"STATUS_APPX_FILE_NOT_ENCRYPTED","features":[305]},{"name":"STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN","features":[305]},{"name":"STATUS_APP_DATA_CORRUPT","features":[305]},{"name":"STATUS_APP_DATA_EXPIRED","features":[305]},{"name":"STATUS_APP_DATA_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_APP_DATA_NOT_FOUND","features":[305]},{"name":"STATUS_APP_DATA_REBOOT_REQUIRED","features":[305]},{"name":"STATUS_APP_INIT_FAILURE","features":[305]},{"name":"STATUS_ARBITRATION_UNHANDLED","features":[305]},{"name":"STATUS_ARRAY_BOUNDS_EXCEEDED","features":[305]},{"name":"STATUS_ASSERTION_FAILURE","features":[305]},{"name":"STATUS_ATTACHED_EXECUTABLE_MEMORY_WRITE","features":[305]},{"name":"STATUS_ATTRIBUTE_NOT_PRESENT","features":[305]},{"name":"STATUS_AUDIO_ENGINE_NODE_NOT_FOUND","features":[305]},{"name":"STATUS_AUDITING_DISABLED","features":[305]},{"name":"STATUS_AUDIT_FAILED","features":[305]},{"name":"STATUS_AUTHIP_FAILURE","features":[305]},{"name":"STATUS_AUTH_TAG_MISMATCH","features":[305]},{"name":"STATUS_BACKUP_CONTROLLER","features":[305]},{"name":"STATUS_BAD_BINDINGS","features":[305]},{"name":"STATUS_BAD_CLUSTERS","features":[305]},{"name":"STATUS_BAD_COMPRESSION_BUFFER","features":[305]},{"name":"STATUS_BAD_CURRENT_DIRECTORY","features":[305]},{"name":"STATUS_BAD_DATA","features":[305]},{"name":"STATUS_BAD_DESCRIPTOR_FORMAT","features":[305]},{"name":"STATUS_BAD_DEVICE_TYPE","features":[305]},{"name":"STATUS_BAD_DLL_ENTRYPOINT","features":[305]},{"name":"STATUS_BAD_FILE_TYPE","features":[305]},{"name":"STATUS_BAD_FUNCTION_TABLE","features":[305]},{"name":"STATUS_BAD_IMPERSONATION_LEVEL","features":[305]},{"name":"STATUS_BAD_INHERITANCE_ACL","features":[305]},{"name":"STATUS_BAD_INITIAL_PC","features":[305]},{"name":"STATUS_BAD_INITIAL_STACK","features":[305]},{"name":"STATUS_BAD_KEY","features":[305]},{"name":"STATUS_BAD_LOGON_SESSION_STATE","features":[305]},{"name":"STATUS_BAD_MASTER_BOOT_RECORD","features":[305]},{"name":"STATUS_BAD_MCFG_TABLE","features":[305]},{"name":"STATUS_BAD_NETWORK_NAME","features":[305]},{"name":"STATUS_BAD_NETWORK_PATH","features":[305]},{"name":"STATUS_BAD_REMOTE_ADAPTER","features":[305]},{"name":"STATUS_BAD_SERVICE_ENTRYPOINT","features":[305]},{"name":"STATUS_BAD_STACK","features":[305]},{"name":"STATUS_BAD_TOKEN_TYPE","features":[305]},{"name":"STATUS_BAD_VALIDATION_CLASS","features":[305]},{"name":"STATUS_BAD_WORKING_SET_LIMIT","features":[305]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_IMPORTED","features":[305]},{"name":"STATUS_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED","features":[305]},{"name":"STATUS_BCD_TOO_MANY_ELEMENTS","features":[305]},{"name":"STATUS_BEGINNING_OF_MEDIA","features":[305]},{"name":"STATUS_BEYOND_VDL","features":[305]},{"name":"STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT","features":[305]},{"name":"STATUS_BIZRULES_NOT_ENABLED","features":[305]},{"name":"STATUS_BLOCKED_BY_PARENTAL_CONTROLS","features":[305]},{"name":"STATUS_BLOCK_SHARED","features":[305]},{"name":"STATUS_BLOCK_SOURCE_WEAK_REFERENCE_INVALID","features":[305]},{"name":"STATUS_BLOCK_TARGET_WEAK_REFERENCE_INVALID","features":[305]},{"name":"STATUS_BLOCK_TOO_MANY_REFERENCES","features":[305]},{"name":"STATUS_BLOCK_WEAK_REFERENCE_INVALID","features":[305]},{"name":"STATUS_BREAKPOINT","features":[305]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND","features":[305]},{"name":"STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG","features":[305]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION","features":[305]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION","features":[305]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION","features":[305]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE","features":[305]},{"name":"STATUS_BTH_ATT_INSUFFICIENT_RESOURCES","features":[305]},{"name":"STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH","features":[305]},{"name":"STATUS_BTH_ATT_INVALID_HANDLE","features":[305]},{"name":"STATUS_BTH_ATT_INVALID_OFFSET","features":[305]},{"name":"STATUS_BTH_ATT_INVALID_PDU","features":[305]},{"name":"STATUS_BTH_ATT_PREPARE_QUEUE_FULL","features":[305]},{"name":"STATUS_BTH_ATT_READ_NOT_PERMITTED","features":[305]},{"name":"STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED","features":[305]},{"name":"STATUS_BTH_ATT_UNKNOWN_ERROR","features":[305]},{"name":"STATUS_BTH_ATT_UNLIKELY","features":[305]},{"name":"STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE","features":[305]},{"name":"STATUS_BTH_ATT_WRITE_NOT_PERMITTED","features":[305]},{"name":"STATUS_BUFFER_ALL_ZEROS","features":[305]},{"name":"STATUS_BUFFER_OVERFLOW","features":[305]},{"name":"STATUS_BUFFER_TOO_SMALL","features":[305]},{"name":"STATUS_BUS_RESET","features":[305]},{"name":"STATUS_BYPASSIO_FLT_NOT_SUPPORTED","features":[305]},{"name":"STATUS_CACHE_PAGE_LOCKED","features":[305]},{"name":"STATUS_CALLBACK_BYPASS","features":[305]},{"name":"STATUS_CALLBACK_INVOKE_INLINE","features":[305]},{"name":"STATUS_CALLBACK_POP_STACK","features":[305]},{"name":"STATUS_CALLBACK_RETURNED_LANG","features":[305]},{"name":"STATUS_CALLBACK_RETURNED_LDR_LOCK","features":[305]},{"name":"STATUS_CALLBACK_RETURNED_PRI_BACK","features":[305]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_AFFINITY","features":[305]},{"name":"STATUS_CALLBACK_RETURNED_THREAD_PRIORITY","features":[305]},{"name":"STATUS_CALLBACK_RETURNED_TRANSACTION","features":[305]},{"name":"STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING","features":[305]},{"name":"STATUS_CANCELLED","features":[305]},{"name":"STATUS_CANNOT_ABORT_TRANSACTIONS","features":[305]},{"name":"STATUS_CANNOT_ACCEPT_TRANSACTED_WORK","features":[305]},{"name":"STATUS_CANNOT_BREAK_OPLOCK","features":[305]},{"name":"STATUS_CANNOT_DELETE","features":[305]},{"name":"STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION","features":[305]},{"name":"STATUS_CANNOT_GRANT_REQUESTED_OPLOCK","features":[305]},{"name":"STATUS_CANNOT_IMPERSONATE","features":[305]},{"name":"STATUS_CANNOT_LOAD_REGISTRY_FILE","features":[305]},{"name":"STATUS_CANNOT_MAKE","features":[305]},{"name":"STATUS_CANNOT_SWITCH_RUNLEVEL","features":[305]},{"name":"STATUS_CANT_ACCESS_DOMAIN_INFO","features":[305]},{"name":"STATUS_CANT_ATTACH_TO_DEV_VOLUME","features":[305]},{"name":"STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY","features":[305]},{"name":"STATUS_CANT_CLEAR_ENCRYPTION_FLAG","features":[305]},{"name":"STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS","features":[305]},{"name":"STATUS_CANT_CROSS_RM_BOUNDARY","features":[305]},{"name":"STATUS_CANT_DISABLE_MANDATORY","features":[305]},{"name":"STATUS_CANT_ENABLE_DENY_ONLY","features":[305]},{"name":"STATUS_CANT_OPEN_ANONYMOUS","features":[305]},{"name":"STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT","features":[305]},{"name":"STATUS_CANT_RECOVER_WITH_HANDLE_OPEN","features":[305]},{"name":"STATUS_CANT_TERMINATE_SELF","features":[305]},{"name":"STATUS_CANT_WAIT","features":[305]},{"name":"STATUS_CARDBUS_NOT_SUPPORTED","features":[305]},{"name":"STATUS_CASE_DIFFERING_NAMES_IN_DIR","features":[305]},{"name":"STATUS_CASE_SENSITIVE_PATH","features":[305]},{"name":"STATUS_CC_NEEDS_CALLBACK_SECTION_DRAIN","features":[305]},{"name":"STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE","features":[305]},{"name":"STATUS_CERTIFICATE_VALIDATION_PREFERENCE_CONFLICT","features":[305]},{"name":"STATUS_CHECKING_FILE_SYSTEM","features":[305]},{"name":"STATUS_CHECKOUT_REQUIRED","features":[305]},{"name":"STATUS_CHILD_MUST_BE_VOLATILE","features":[305]},{"name":"STATUS_CHILD_PROCESS_BLOCKED","features":[305]},{"name":"STATUS_CIMFS_IMAGE_CORRUPT","features":[305]},{"name":"STATUS_CIMFS_IMAGE_VERSION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_CLEANER_CARTRIDGE_INSTALLED","features":[305]},{"name":"STATUS_CLIENT_SERVER_PARAMETERS_INVALID","features":[305]},{"name":"STATUS_CLIP_DEVICE_LICENSE_MISSING","features":[305]},{"name":"STATUS_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID","features":[305]},{"name":"STATUS_CLIP_LICENSE_DEVICE_ID_MISMATCH","features":[305]},{"name":"STATUS_CLIP_LICENSE_EXPIRED","features":[305]},{"name":"STATUS_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE","features":[305]},{"name":"STATUS_CLIP_LICENSE_INVALID_SIGNATURE","features":[305]},{"name":"STATUS_CLIP_LICENSE_NOT_FOUND","features":[305]},{"name":"STATUS_CLIP_LICENSE_NOT_SIGNED","features":[305]},{"name":"STATUS_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE","features":[305]},{"name":"STATUS_CLOUD_FILE_ACCESS_DENIED","features":[305]},{"name":"STATUS_CLOUD_FILE_ALREADY_CONNECTED","features":[305]},{"name":"STATUS_CLOUD_FILE_AUTHENTICATION_FAILED","features":[305]},{"name":"STATUS_CLOUD_FILE_CONNECTED_PROVIDER_ONLY","features":[305]},{"name":"STATUS_CLOUD_FILE_DEHYDRATION_DISALLOWED","features":[305]},{"name":"STATUS_CLOUD_FILE_INCOMPATIBLE_HARDLINKS","features":[305]},{"name":"STATUS_CLOUD_FILE_INSUFFICIENT_RESOURCES","features":[305]},{"name":"STATUS_CLOUD_FILE_INVALID_REQUEST","features":[305]},{"name":"STATUS_CLOUD_FILE_IN_USE","features":[305]},{"name":"STATUS_CLOUD_FILE_METADATA_CORRUPT","features":[305]},{"name":"STATUS_CLOUD_FILE_METADATA_TOO_LARGE","features":[305]},{"name":"STATUS_CLOUD_FILE_NETWORK_UNAVAILABLE","features":[305]},{"name":"STATUS_CLOUD_FILE_NOT_IN_SYNC","features":[305]},{"name":"STATUS_CLOUD_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_CLOUD_FILE_NOT_UNDER_SYNC_ROOT","features":[305]},{"name":"STATUS_CLOUD_FILE_PINNED","features":[305]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_CHECKSUM_MISMATCH","features":[305]},{"name":"STATUS_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE","features":[305]},{"name":"STATUS_CLOUD_FILE_PROPERTY_CORRUPT","features":[305]},{"name":"STATUS_CLOUD_FILE_PROPERTY_LOCK_CONFLICT","features":[305]},{"name":"STATUS_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_CLOUD_FILE_PROVIDER_NOT_RUNNING","features":[305]},{"name":"STATUS_CLOUD_FILE_PROVIDER_TERMINATED","features":[305]},{"name":"STATUS_CLOUD_FILE_READ_ONLY_VOLUME","features":[305]},{"name":"STATUS_CLOUD_FILE_REQUEST_ABORTED","features":[305]},{"name":"STATUS_CLOUD_FILE_REQUEST_CANCELED","features":[305]},{"name":"STATUS_CLOUD_FILE_REQUEST_TIMEOUT","features":[305]},{"name":"STATUS_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT","features":[305]},{"name":"STATUS_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS","features":[305]},{"name":"STATUS_CLOUD_FILE_UNSUCCESSFUL","features":[305]},{"name":"STATUS_CLOUD_FILE_US_MESSAGE_TIMEOUT","features":[305]},{"name":"STATUS_CLOUD_FILE_VALIDATION_FAILED","features":[305]},{"name":"STATUS_CLUSTER_CAM_TICKET_REPLAY_DETECTED","features":[305]},{"name":"STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR","features":[305]},{"name":"STATUS_CLUSTER_CSV_INVALID_HANDLE","features":[305]},{"name":"STATUS_CLUSTER_CSV_NOT_REDIRECTED","features":[305]},{"name":"STATUS_CLUSTER_CSV_NO_SNAPSHOTS","features":[305]},{"name":"STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS","features":[305]},{"name":"STATUS_CLUSTER_CSV_REDIRECTED","features":[305]},{"name":"STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS","features":[305]},{"name":"STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR","features":[305]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING","features":[305]},{"name":"STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL","features":[305]},{"name":"STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL","features":[305]},{"name":"STATUS_CLUSTER_INVALID_NETWORK","features":[305]},{"name":"STATUS_CLUSTER_INVALID_NETWORK_PROVIDER","features":[305]},{"name":"STATUS_CLUSTER_INVALID_NODE","features":[305]},{"name":"STATUS_CLUSTER_INVALID_REQUEST","features":[305]},{"name":"STATUS_CLUSTER_JOIN_IN_PROGRESS","features":[305]},{"name":"STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS","features":[305]},{"name":"STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND","features":[305]},{"name":"STATUS_CLUSTER_NETINTERFACE_EXISTS","features":[305]},{"name":"STATUS_CLUSTER_NETINTERFACE_NOT_FOUND","features":[305]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE","features":[305]},{"name":"STATUS_CLUSTER_NETWORK_ALREADY_ONLINE","features":[305]},{"name":"STATUS_CLUSTER_NETWORK_EXISTS","features":[305]},{"name":"STATUS_CLUSTER_NETWORK_NOT_FOUND","features":[305]},{"name":"STATUS_CLUSTER_NETWORK_NOT_INTERNAL","features":[305]},{"name":"STATUS_CLUSTER_NODE_ALREADY_DOWN","features":[305]},{"name":"STATUS_CLUSTER_NODE_ALREADY_MEMBER","features":[305]},{"name":"STATUS_CLUSTER_NODE_ALREADY_UP","features":[305]},{"name":"STATUS_CLUSTER_NODE_DOWN","features":[305]},{"name":"STATUS_CLUSTER_NODE_EXISTS","features":[305]},{"name":"STATUS_CLUSTER_NODE_NOT_FOUND","features":[305]},{"name":"STATUS_CLUSTER_NODE_NOT_MEMBER","features":[305]},{"name":"STATUS_CLUSTER_NODE_NOT_PAUSED","features":[305]},{"name":"STATUS_CLUSTER_NODE_PAUSED","features":[305]},{"name":"STATUS_CLUSTER_NODE_UNREACHABLE","features":[305]},{"name":"STATUS_CLUSTER_NODE_UP","features":[305]},{"name":"STATUS_CLUSTER_NON_CSV_PATH","features":[305]},{"name":"STATUS_CLUSTER_NO_NET_ADAPTERS","features":[305]},{"name":"STATUS_CLUSTER_NO_SECURITY_CONTEXT","features":[305]},{"name":"STATUS_CLUSTER_POISONED","features":[305]},{"name":"STATUS_COMMITMENT_LIMIT","features":[305]},{"name":"STATUS_COMMITMENT_MINIMUM","features":[305]},{"name":"STATUS_COMPRESSED_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_COMPRESSION_DISABLED","features":[305]},{"name":"STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION","features":[305]},{"name":"STATUS_COMPRESSION_NOT_BENEFICIAL","features":[305]},{"name":"STATUS_CONFLICTING_ADDRESSES","features":[305]},{"name":"STATUS_CONNECTION_ABORTED","features":[305]},{"name":"STATUS_CONNECTION_ACTIVE","features":[305]},{"name":"STATUS_CONNECTION_COUNT_LIMIT","features":[305]},{"name":"STATUS_CONNECTION_DISCONNECTED","features":[305]},{"name":"STATUS_CONNECTION_INVALID","features":[305]},{"name":"STATUS_CONNECTION_IN_USE","features":[305]},{"name":"STATUS_CONNECTION_REFUSED","features":[305]},{"name":"STATUS_CONNECTION_RESET","features":[305]},{"name":"STATUS_CONTAINER_ASSIGNED","features":[305]},{"name":"STATUS_CONTENT_BLOCKED","features":[305]},{"name":"STATUS_CONTEXT_MISMATCH","features":[305]},{"name":"STATUS_CONTEXT_STOWED_EXCEPTION","features":[305]},{"name":"STATUS_CONTROL_C_EXIT","features":[305]},{"name":"STATUS_CONTROL_STACK_VIOLATION","features":[305]},{"name":"STATUS_CONVERT_TO_LARGE","features":[305]},{"name":"STATUS_COPY_PROTECTION_FAILURE","features":[305]},{"name":"STATUS_CORRUPT_LOG_CLEARED","features":[305]},{"name":"STATUS_CORRUPT_LOG_CORRUPTED","features":[305]},{"name":"STATUS_CORRUPT_LOG_DELETED_FULL","features":[305]},{"name":"STATUS_CORRUPT_LOG_OVERFULL","features":[305]},{"name":"STATUS_CORRUPT_LOG_UNAVAILABLE","features":[305]},{"name":"STATUS_CORRUPT_LOG_UPLEVEL_RECORDS","features":[305]},{"name":"STATUS_CORRUPT_SYSTEM_FILE","features":[305]},{"name":"STATUS_COULD_NOT_INTERPRET","features":[305]},{"name":"STATUS_COULD_NOT_RESIZE_LOG","features":[305]},{"name":"STATUS_CPU_SET_INVALID","features":[305]},{"name":"STATUS_CRASH_DUMP","features":[305]},{"name":"STATUS_CRC_ERROR","features":[305]},{"name":"STATUS_CRED_REQUIRES_CONFIRMATION","features":[305]},{"name":"STATUS_CRM_PROTOCOL_ALREADY_EXISTS","features":[305]},{"name":"STATUS_CRM_PROTOCOL_NOT_FOUND","features":[305]},{"name":"STATUS_CROSSREALM_DELEGATION_FAILURE","features":[305]},{"name":"STATUS_CROSS_PARTITION_VIOLATION","features":[305]},{"name":"STATUS_CRYPTO_SYSTEM_INVALID","features":[305]},{"name":"STATUS_CSS_AUTHENTICATION_FAILURE","features":[305]},{"name":"STATUS_CSS_KEY_NOT_ESTABLISHED","features":[305]},{"name":"STATUS_CSS_KEY_NOT_PRESENT","features":[305]},{"name":"STATUS_CSS_REGION_MISMATCH","features":[305]},{"name":"STATUS_CSS_RESETS_EXHAUSTED","features":[305]},{"name":"STATUS_CSS_SCRAMBLED_SECTOR","features":[305]},{"name":"STATUS_CSV_IO_PAUSE_TIMEOUT","features":[305]},{"name":"STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE","features":[305]},{"name":"STATUS_CS_ENCRYPTION_FILE_NOT_CSE","features":[305]},{"name":"STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE","features":[305]},{"name":"STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE","features":[305]},{"name":"STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER","features":[305]},{"name":"STATUS_CTLOG_INCONSISTENT_TRACKING_FILE","features":[305]},{"name":"STATUS_CTLOG_INVALID_TRACKING_STATE","features":[305]},{"name":"STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE","features":[305]},{"name":"STATUS_CTLOG_TRACKING_NOT_INITIALIZED","features":[305]},{"name":"STATUS_CTLOG_VHD_CHANGED_OFFLINE","features":[305]},{"name":"STATUS_CTL_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_CTX_BAD_VIDEO_MODE","features":[305]},{"name":"STATUS_CTX_CDM_CONNECT","features":[305]},{"name":"STATUS_CTX_CDM_DISCONNECT","features":[305]},{"name":"STATUS_CTX_CLIENT_LICENSE_IN_USE","features":[305]},{"name":"STATUS_CTX_CLIENT_LICENSE_NOT_SET","features":[305]},{"name":"STATUS_CTX_CLIENT_QUERY_TIMEOUT","features":[305]},{"name":"STATUS_CTX_CLOSE_PENDING","features":[305]},{"name":"STATUS_CTX_CONSOLE_CONNECT","features":[305]},{"name":"STATUS_CTX_CONSOLE_DISCONNECT","features":[305]},{"name":"STATUS_CTX_GRAPHICS_INVALID","features":[305]},{"name":"STATUS_CTX_INVALID_MODEMNAME","features":[305]},{"name":"STATUS_CTX_INVALID_PD","features":[305]},{"name":"STATUS_CTX_INVALID_WD","features":[305]},{"name":"STATUS_CTX_LICENSE_CLIENT_INVALID","features":[305]},{"name":"STATUS_CTX_LICENSE_EXPIRED","features":[305]},{"name":"STATUS_CTX_LICENSE_NOT_AVAILABLE","features":[305]},{"name":"STATUS_CTX_LOGON_DISABLED","features":[305]},{"name":"STATUS_CTX_MODEM_INF_NOT_FOUND","features":[305]},{"name":"STATUS_CTX_MODEM_RESPONSE_BUSY","features":[305]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_CARRIER","features":[305]},{"name":"STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE","features":[305]},{"name":"STATUS_CTX_MODEM_RESPONSE_TIMEOUT","features":[305]},{"name":"STATUS_CTX_MODEM_RESPONSE_VOICE","features":[305]},{"name":"STATUS_CTX_NOT_CONSOLE","features":[305]},{"name":"STATUS_CTX_NO_OUTBUF","features":[305]},{"name":"STATUS_CTX_PD_NOT_FOUND","features":[305]},{"name":"STATUS_CTX_RESPONSE_ERROR","features":[305]},{"name":"STATUS_CTX_SECURITY_LAYER_ERROR","features":[305]},{"name":"STATUS_CTX_SHADOW_DENIED","features":[305]},{"name":"STATUS_CTX_SHADOW_DISABLED","features":[305]},{"name":"STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE","features":[305]},{"name":"STATUS_CTX_SHADOW_INVALID","features":[305]},{"name":"STATUS_CTX_SHADOW_NOT_RUNNING","features":[305]},{"name":"STATUS_CTX_TD_ERROR","features":[305]},{"name":"STATUS_CTX_WD_NOT_FOUND","features":[305]},{"name":"STATUS_CTX_WINSTATION_ACCESS_DENIED","features":[305]},{"name":"STATUS_CTX_WINSTATION_BUSY","features":[305]},{"name":"STATUS_CTX_WINSTATION_NAME_COLLISION","features":[305]},{"name":"STATUS_CTX_WINSTATION_NAME_INVALID","features":[305]},{"name":"STATUS_CTX_WINSTATION_NOT_FOUND","features":[305]},{"name":"STATUS_CURRENT_DOMAIN_NOT_ALLOWED","features":[305]},{"name":"STATUS_CURRENT_TRANSACTION_NOT_VALID","features":[305]},{"name":"STATUS_DATATYPE_MISALIGNMENT","features":[305]},{"name":"STATUS_DATATYPE_MISALIGNMENT_ERROR","features":[305]},{"name":"STATUS_DATA_CHECKSUM_ERROR","features":[305]},{"name":"STATUS_DATA_ERROR","features":[305]},{"name":"STATUS_DATA_LATE_ERROR","features":[305]},{"name":"STATUS_DATA_LOST_REPAIR","features":[305]},{"name":"STATUS_DATA_NOT_ACCEPTED","features":[305]},{"name":"STATUS_DATA_OVERRUN","features":[305]},{"name":"STATUS_DATA_OVERWRITTEN","features":[305]},{"name":"STATUS_DAX_MAPPING_EXISTS","features":[305]},{"name":"STATUS_DEBUGGER_INACTIVE","features":[305]},{"name":"STATUS_DEBUG_ATTACH_FAILED","features":[305]},{"name":"STATUS_DECRYPTION_FAILED","features":[305]},{"name":"STATUS_DELAY_LOAD_FAILED","features":[305]},{"name":"STATUS_DELETE_PENDING","features":[305]},{"name":"STATUS_DESTINATION_ELEMENT_FULL","features":[305]},{"name":"STATUS_DEVICE_ALREADY_ATTACHED","features":[305]},{"name":"STATUS_DEVICE_BUSY","features":[305]},{"name":"STATUS_DEVICE_CONFIGURATION_ERROR","features":[305]},{"name":"STATUS_DEVICE_DATA_ERROR","features":[305]},{"name":"STATUS_DEVICE_DOES_NOT_EXIST","features":[305]},{"name":"STATUS_DEVICE_DOOR_OPEN","features":[305]},{"name":"STATUS_DEVICE_ENUMERATION_ERROR","features":[305]},{"name":"STATUS_DEVICE_FEATURE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_DEVICE_HARDWARE_ERROR","features":[305]},{"name":"STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL","features":[305]},{"name":"STATUS_DEVICE_HUNG","features":[305]},{"name":"STATUS_DEVICE_INSUFFICIENT_RESOURCES","features":[305]},{"name":"STATUS_DEVICE_IN_MAINTENANCE","features":[305]},{"name":"STATUS_DEVICE_NOT_CONNECTED","features":[305]},{"name":"STATUS_DEVICE_NOT_PARTITIONED","features":[305]},{"name":"STATUS_DEVICE_NOT_READY","features":[305]},{"name":"STATUS_DEVICE_OFF_LINE","features":[305]},{"name":"STATUS_DEVICE_PAPER_EMPTY","features":[305]},{"name":"STATUS_DEVICE_POWERED_OFF","features":[305]},{"name":"STATUS_DEVICE_POWER_CYCLE_REQUIRED","features":[305]},{"name":"STATUS_DEVICE_POWER_FAILURE","features":[305]},{"name":"STATUS_DEVICE_PROTOCOL_ERROR","features":[305]},{"name":"STATUS_DEVICE_REMOVED","features":[305]},{"name":"STATUS_DEVICE_REQUIRES_CLEANING","features":[305]},{"name":"STATUS_DEVICE_RESET_REQUIRED","features":[305]},{"name":"STATUS_DEVICE_SUPPORT_IN_PROGRESS","features":[305]},{"name":"STATUS_DEVICE_UNREACHABLE","features":[305]},{"name":"STATUS_DEVICE_UNRESPONSIVE","features":[305]},{"name":"STATUS_DFS_EXIT_PATH_FOUND","features":[305]},{"name":"STATUS_DFS_UNAVAILABLE","features":[305]},{"name":"STATUS_DIF_BINDING_API_NOT_FOUND","features":[305]},{"name":"STATUS_DIF_IOCALLBACK_NOT_REPLACED","features":[305]},{"name":"STATUS_DIF_LIVEDUMP_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_DIF_VOLATILE_DRIVER_HOTPATCHED","features":[305]},{"name":"STATUS_DIF_VOLATILE_DRIVER_IS_NOT_RUNNING","features":[305]},{"name":"STATUS_DIF_VOLATILE_INVALID_INFO","features":[305]},{"name":"STATUS_DIF_VOLATILE_NOT_ALLOWED","features":[305]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_CHANGE_NOT_ALLOWED","features":[305]},{"name":"STATUS_DIF_VOLATILE_PLUGIN_IS_NOT_RUNNING","features":[305]},{"name":"STATUS_DIF_VOLATILE_SECTION_NOT_LOCKED","features":[305]},{"name":"STATUS_DIRECTORY_IS_A_REPARSE_POINT","features":[305]},{"name":"STATUS_DIRECTORY_NOT_EMPTY","features":[305]},{"name":"STATUS_DIRECTORY_NOT_RM","features":[305]},{"name":"STATUS_DIRECTORY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_DIRECTORY_SERVICE_REQUIRED","features":[305]},{"name":"STATUS_DISK_CORRUPT_ERROR","features":[305]},{"name":"STATUS_DISK_FULL","features":[305]},{"name":"STATUS_DISK_OPERATION_FAILED","features":[305]},{"name":"STATUS_DISK_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_DISK_RECALIBRATE_FAILED","features":[305]},{"name":"STATUS_DISK_REPAIR_DISABLED","features":[305]},{"name":"STATUS_DISK_REPAIR_REDIRECTED","features":[305]},{"name":"STATUS_DISK_REPAIR_UNSUCCESSFUL","features":[305]},{"name":"STATUS_DISK_RESET_FAILED","features":[305]},{"name":"STATUS_DISK_RESOURCES_EXHAUSTED","features":[305]},{"name":"STATUS_DLL_INIT_FAILED","features":[305]},{"name":"STATUS_DLL_INIT_FAILED_LOGOFF","features":[305]},{"name":"STATUS_DLL_MIGHT_BE_INCOMPATIBLE","features":[305]},{"name":"STATUS_DLL_MIGHT_BE_INSECURE","features":[305]},{"name":"STATUS_DLL_NOT_FOUND","features":[305]},{"name":"STATUS_DM_OPERATION_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_DOMAIN_CONTROLLER_NOT_FOUND","features":[305]},{"name":"STATUS_DOMAIN_CTRLR_CONFIG_ERROR","features":[305]},{"name":"STATUS_DOMAIN_EXISTS","features":[305]},{"name":"STATUS_DOMAIN_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_DOMAIN_TRUST_INCONSISTENT","features":[305]},{"name":"STATUS_DRIVERS_LEAKING_LOCKED_PAGES","features":[305]},{"name":"STATUS_DRIVER_BLOCKED","features":[305]},{"name":"STATUS_DRIVER_BLOCKED_CRITICAL","features":[305]},{"name":"STATUS_DRIVER_CANCEL_TIMEOUT","features":[305]},{"name":"STATUS_DRIVER_DATABASE_ERROR","features":[305]},{"name":"STATUS_DRIVER_ENTRYPOINT_NOT_FOUND","features":[305]},{"name":"STATUS_DRIVER_FAILED_PRIOR_UNLOAD","features":[305]},{"name":"STATUS_DRIVER_FAILED_SLEEP","features":[305]},{"name":"STATUS_DRIVER_INTERNAL_ERROR","features":[305]},{"name":"STATUS_DRIVER_ORDINAL_NOT_FOUND","features":[305]},{"name":"STATUS_DRIVER_PROCESS_TERMINATED","features":[305]},{"name":"STATUS_DRIVER_UNABLE_TO_LOAD","features":[305]},{"name":"STATUS_DS_ADMIN_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER","features":[305]},{"name":"STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS","features":[305]},{"name":"STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED","features":[305]},{"name":"STATUS_DS_BUSY","features":[305]},{"name":"STATUS_DS_CANT_MOD_OBJ_CLASS","features":[305]},{"name":"STATUS_DS_CANT_MOD_PRIMARYGROUPID","features":[305]},{"name":"STATUS_DS_CANT_ON_NON_LEAF","features":[305]},{"name":"STATUS_DS_CANT_ON_RDN","features":[305]},{"name":"STATUS_DS_CANT_START","features":[305]},{"name":"STATUS_DS_CROSS_DOM_MOVE_FAILED","features":[305]},{"name":"STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST","features":[305]},{"name":"STATUS_DS_DOMAIN_RENAME_IN_PROGRESS","features":[305]},{"name":"STATUS_DS_DUPLICATE_ID_FOUND","features":[305]},{"name":"STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST","features":[305]},{"name":"STATUS_DS_GC_NOT_AVAILABLE","features":[305]},{"name":"STATUS_DS_GC_REQUIRED","features":[305]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER","features":[305]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER","features":[305]},{"name":"STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER","features":[305]},{"name":"STATUS_DS_GROUP_CONVERSION_ERROR","features":[305]},{"name":"STATUS_DS_HAVE_PRIMARY_MEMBERS","features":[305]},{"name":"STATUS_DS_INCORRECT_ROLE_OWNER","features":[305]},{"name":"STATUS_DS_INIT_FAILURE","features":[305]},{"name":"STATUS_DS_INIT_FAILURE_CONSOLE","features":[305]},{"name":"STATUS_DS_INVALID_ATTRIBUTE_SYNTAX","features":[305]},{"name":"STATUS_DS_INVALID_GROUP_TYPE","features":[305]},{"name":"STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER","features":[305]},{"name":"STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY","features":[305]},{"name":"STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY","features":[305]},{"name":"STATUS_DS_NAME_NOT_UNIQUE","features":[305]},{"name":"STATUS_DS_NO_ATTRIBUTE_OR_VALUE","features":[305]},{"name":"STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS","features":[305]},{"name":"STATUS_DS_NO_MORE_RIDS","features":[305]},{"name":"STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN","features":[305]},{"name":"STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN","features":[305]},{"name":"STATUS_DS_NO_RIDS_ALLOCATED","features":[305]},{"name":"STATUS_DS_OBJ_CLASS_VIOLATION","features":[305]},{"name":"STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS","features":[305]},{"name":"STATUS_DS_OID_NOT_FOUND","features":[305]},{"name":"STATUS_DS_RIDMGR_DISABLED","features":[305]},{"name":"STATUS_DS_RIDMGR_INIT_ERROR","features":[305]},{"name":"STATUS_DS_SAM_INIT_FAILURE","features":[305]},{"name":"STATUS_DS_SAM_INIT_FAILURE_CONSOLE","features":[305]},{"name":"STATUS_DS_SENSITIVE_GROUP_VIOLATION","features":[305]},{"name":"STATUS_DS_SHUTTING_DOWN","features":[305]},{"name":"STATUS_DS_SRC_SID_EXISTS_IN_FOREST","features":[305]},{"name":"STATUS_DS_UNAVAILABLE","features":[305]},{"name":"STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER","features":[305]},{"name":"STATUS_DS_VERSION_CHECK_FAILURE","features":[305]},{"name":"STATUS_DUPLICATE_NAME","features":[305]},{"name":"STATUS_DUPLICATE_OBJECTID","features":[305]},{"name":"STATUS_DUPLICATE_PRIVILEGES","features":[305]},{"name":"STATUS_DYNAMIC_CODE_BLOCKED","features":[305]},{"name":"STATUS_EAS_NOT_SUPPORTED","features":[305]},{"name":"STATUS_EA_CORRUPT_ERROR","features":[305]},{"name":"STATUS_EA_LIST_INCONSISTENT","features":[305]},{"name":"STATUS_EA_TOO_LARGE","features":[305]},{"name":"STATUS_EFS_ALG_BLOB_TOO_BIG","features":[305]},{"name":"STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION","features":[305]},{"name":"STATUS_ELEVATION_REQUIRED","features":[305]},{"name":"STATUS_EMULATION_BREAKPOINT","features":[305]},{"name":"STATUS_EMULATION_SYSCALL","features":[305]},{"name":"STATUS_ENCLAVE_FAILURE","features":[305]},{"name":"STATUS_ENCLAVE_IS_TERMINATING","features":[305]},{"name":"STATUS_ENCLAVE_NOT_TERMINATED","features":[305]},{"name":"STATUS_ENCLAVE_VIOLATION","features":[305]},{"name":"STATUS_ENCOUNTERED_WRITE_IN_PROGRESS","features":[305]},{"name":"STATUS_ENCRYPTED_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_ENCRYPTED_IO_NOT_POSSIBLE","features":[305]},{"name":"STATUS_ENCRYPTING_METADATA_DISALLOWED","features":[305]},{"name":"STATUS_ENCRYPTION_DISABLED","features":[305]},{"name":"STATUS_ENCRYPTION_FAILED","features":[305]},{"name":"STATUS_END_OF_FILE","features":[305]},{"name":"STATUS_END_OF_MEDIA","features":[305]},{"name":"STATUS_ENLISTMENT_NOT_FOUND","features":[305]},{"name":"STATUS_ENLISTMENT_NOT_SUPERIOR","features":[305]},{"name":"STATUS_ENTRYPOINT_NOT_FOUND","features":[305]},{"name":"STATUS_EOF_ON_GHOSTED_RANGE","features":[305]},{"name":"STATUS_EOM_OVERFLOW","features":[305]},{"name":"STATUS_ERROR_PROCESS_NOT_IN_JOB","features":[305]},{"name":"STATUS_EVALUATION_EXPIRATION","features":[305]},{"name":"STATUS_EVENTLOG_CANT_START","features":[305]},{"name":"STATUS_EVENTLOG_FILE_CHANGED","features":[305]},{"name":"STATUS_EVENTLOG_FILE_CORRUPT","features":[305]},{"name":"STATUS_EVENT_DONE","features":[305]},{"name":"STATUS_EVENT_PENDING","features":[305]},{"name":"STATUS_EXECUTABLE_MEMORY_WRITE","features":[305]},{"name":"STATUS_EXPIRED_HANDLE","features":[305]},{"name":"STATUS_EXTERNAL_BACKING_PROVIDER_UNKNOWN","features":[305]},{"name":"STATUS_EXTERNAL_SYSKEY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_EXTRANEOUS_INFORMATION","features":[305]},{"name":"STATUS_FAILED_DRIVER_ENTRY","features":[305]},{"name":"STATUS_FAILED_STACK_SWITCH","features":[305]},{"name":"STATUS_FAIL_CHECK","features":[305]},{"name":"STATUS_FAIL_FAST_EXCEPTION","features":[305]},{"name":"STATUS_FASTPATH_REJECTED","features":[305]},{"name":"STATUS_FATAL_APP_EXIT","features":[305]},{"name":"STATUS_FATAL_MEMORY_EXHAUSTION","features":[305]},{"name":"STATUS_FATAL_USER_CALLBACK_EXCEPTION","features":[305]},{"name":"STATUS_FILEMARK_DETECTED","features":[305]},{"name":"STATUS_FILES_OPEN","features":[305]},{"name":"STATUS_FILE_CHECKED_OUT","features":[305]},{"name":"STATUS_FILE_CLOSED","features":[305]},{"name":"STATUS_FILE_CORRUPT_ERROR","features":[305]},{"name":"STATUS_FILE_DELETED","features":[305]},{"name":"STATUS_FILE_ENCRYPTED","features":[305]},{"name":"STATUS_FILE_FORCED_CLOSED","features":[305]},{"name":"STATUS_FILE_HANDLE_REVOKED","features":[305]},{"name":"STATUS_FILE_IDENTITY_NOT_PERSISTENT","features":[305]},{"name":"STATUS_FILE_INVALID","features":[305]},{"name":"STATUS_FILE_IS_A_DIRECTORY","features":[305]},{"name":"STATUS_FILE_IS_OFFLINE","features":[305]},{"name":"STATUS_FILE_LOCKED_WITH_ONLY_READERS","features":[305]},{"name":"STATUS_FILE_LOCKED_WITH_WRITERS","features":[305]},{"name":"STATUS_FILE_LOCK_CONFLICT","features":[305]},{"name":"STATUS_FILE_METADATA_OPTIMIZATION_IN_PROGRESS","features":[305]},{"name":"STATUS_FILE_NOT_AVAILABLE","features":[305]},{"name":"STATUS_FILE_NOT_ENCRYPTED","features":[305]},{"name":"STATUS_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_FILE_PROTECTED_UNDER_DPL","features":[305]},{"name":"STATUS_FILE_RENAMED","features":[305]},{"name":"STATUS_FILE_SNAP_INVALID_PARAMETER","features":[305]},{"name":"STATUS_FILE_SNAP_IN_PROGRESS","features":[305]},{"name":"STATUS_FILE_SNAP_IO_NOT_COORDINATED","features":[305]},{"name":"STATUS_FILE_SNAP_MODIFY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_FILE_SNAP_UNEXPECTED_ERROR","features":[305]},{"name":"STATUS_FILE_SNAP_USER_SECTION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_FILE_SYSTEM_LIMITATION","features":[305]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_BUSY","features":[305]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION","features":[305]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT","features":[305]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN","features":[305]},{"name":"STATUS_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE","features":[305]},{"name":"STATUS_FILE_TOO_LARGE","features":[305]},{"name":"STATUS_FIRMWARE_IMAGE_INVALID","features":[305]},{"name":"STATUS_FIRMWARE_SLOT_INVALID","features":[305]},{"name":"STATUS_FIRMWARE_UPDATED","features":[305]},{"name":"STATUS_FLOATED_SECTION","features":[305]},{"name":"STATUS_FLOAT_DENORMAL_OPERAND","features":[305]},{"name":"STATUS_FLOAT_DIVIDE_BY_ZERO","features":[305]},{"name":"STATUS_FLOAT_INEXACT_RESULT","features":[305]},{"name":"STATUS_FLOAT_INVALID_OPERATION","features":[305]},{"name":"STATUS_FLOAT_MULTIPLE_FAULTS","features":[305]},{"name":"STATUS_FLOAT_MULTIPLE_TRAPS","features":[305]},{"name":"STATUS_FLOAT_OVERFLOW","features":[305]},{"name":"STATUS_FLOAT_STACK_CHECK","features":[305]},{"name":"STATUS_FLOAT_UNDERFLOW","features":[305]},{"name":"STATUS_FLOPPY_BAD_REGISTERS","features":[305]},{"name":"STATUS_FLOPPY_ID_MARK_NOT_FOUND","features":[305]},{"name":"STATUS_FLOPPY_UNKNOWN_ERROR","features":[305]},{"name":"STATUS_FLOPPY_VOLUME","features":[305]},{"name":"STATUS_FLOPPY_WRONG_CYLINDER","features":[305]},{"name":"STATUS_FLT_ALREADY_ENLISTED","features":[305]},{"name":"STATUS_FLT_BUFFER_TOO_SMALL","features":[305]},{"name":"STATUS_FLT_CBDQ_DISABLED","features":[305]},{"name":"STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND","features":[305]},{"name":"STATUS_FLT_CONTEXT_ALREADY_DEFINED","features":[305]},{"name":"STATUS_FLT_CONTEXT_ALREADY_LINKED","features":[305]},{"name":"STATUS_FLT_DELETING_OBJECT","features":[305]},{"name":"STATUS_FLT_DISALLOW_FAST_IO","features":[305]},{"name":"STATUS_FLT_DISALLOW_FSFILTER_IO","features":[305]},{"name":"STATUS_FLT_DO_NOT_ATTACH","features":[305]},{"name":"STATUS_FLT_DO_NOT_DETACH","features":[305]},{"name":"STATUS_FLT_DUPLICATE_ENTRY","features":[305]},{"name":"STATUS_FLT_FILTER_NOT_FOUND","features":[305]},{"name":"STATUS_FLT_FILTER_NOT_READY","features":[305]},{"name":"STATUS_FLT_INSTANCE_ALTITUDE_COLLISION","features":[305]},{"name":"STATUS_FLT_INSTANCE_NAME_COLLISION","features":[305]},{"name":"STATUS_FLT_INSTANCE_NOT_FOUND","features":[305]},{"name":"STATUS_FLT_INTERNAL_ERROR","features":[305]},{"name":"STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST","features":[305]},{"name":"STATUS_FLT_INVALID_CONTEXT_REGISTRATION","features":[305]},{"name":"STATUS_FLT_INVALID_NAME_REQUEST","features":[305]},{"name":"STATUS_FLT_IO_COMPLETE","features":[305]},{"name":"STATUS_FLT_MUST_BE_NONPAGED_POOL","features":[305]},{"name":"STATUS_FLT_NAME_CACHE_MISS","features":[305]},{"name":"STATUS_FLT_NOT_INITIALIZED","features":[305]},{"name":"STATUS_FLT_NOT_SAFE_TO_POST_OPERATION","features":[305]},{"name":"STATUS_FLT_NO_DEVICE_OBJECT","features":[305]},{"name":"STATUS_FLT_NO_HANDLER_DEFINED","features":[305]},{"name":"STATUS_FLT_NO_WAITER_FOR_REPLY","features":[305]},{"name":"STATUS_FLT_POST_OPERATION_CLEANUP","features":[305]},{"name":"STATUS_FLT_REGISTRATION_BUSY","features":[305]},{"name":"STATUS_FLT_VOLUME_ALREADY_MOUNTED","features":[305]},{"name":"STATUS_FLT_VOLUME_NOT_FOUND","features":[305]},{"name":"STATUS_FLT_WCOS_NOT_SUPPORTED","features":[305]},{"name":"STATUS_FORMS_AUTH_REQUIRED","features":[305]},{"name":"STATUS_FOUND_OUT_OF_SCOPE","features":[305]},{"name":"STATUS_FREE_SPACE_TOO_FRAGMENTED","features":[305]},{"name":"STATUS_FREE_VM_NOT_AT_BASE","features":[305]},{"name":"STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY","features":[305]},{"name":"STATUS_FS_DRIVER_REQUIRED","features":[305]},{"name":"STATUS_FS_GUID_MISMATCH","features":[305]},{"name":"STATUS_FS_METADATA_INCONSISTENT","features":[305]},{"name":"STATUS_FT_DI_SCAN_REQUIRED","features":[305]},{"name":"STATUS_FT_MISSING_MEMBER","features":[305]},{"name":"STATUS_FT_ORPHANING","features":[305]},{"name":"STATUS_FT_READ_FAILURE","features":[305]},{"name":"STATUS_FT_READ_FROM_COPY","features":[305]},{"name":"STATUS_FT_READ_FROM_COPY_FAILURE","features":[305]},{"name":"STATUS_FT_READ_RECOVERY_FROM_BACKUP","features":[305]},{"name":"STATUS_FT_WRITE_FAILURE","features":[305]},{"name":"STATUS_FT_WRITE_RECOVERY","features":[305]},{"name":"STATUS_FULLSCREEN_MODE","features":[305]},{"name":"STATUS_FVE_ACTION_NOT_ALLOWED","features":[305]},{"name":"STATUS_FVE_AUTH_INVALID_APPLICATION","features":[305]},{"name":"STATUS_FVE_AUTH_INVALID_CONFIG","features":[305]},{"name":"STATUS_FVE_BAD_DATA","features":[305]},{"name":"STATUS_FVE_BAD_INFORMATION","features":[305]},{"name":"STATUS_FVE_BAD_METADATA_POINTER","features":[305]},{"name":"STATUS_FVE_BAD_PARTITION_SIZE","features":[305]},{"name":"STATUS_FVE_CONV_READ_ERROR","features":[305]},{"name":"STATUS_FVE_CONV_RECOVERY_FAILED","features":[305]},{"name":"STATUS_FVE_CONV_WRITE_ERROR","features":[305]},{"name":"STATUS_FVE_DATASET_FULL","features":[305]},{"name":"STATUS_FVE_DEBUGGER_ENABLED","features":[305]},{"name":"STATUS_FVE_DEVICE_LOCKEDOUT","features":[305]},{"name":"STATUS_FVE_DRY_RUN_FAILED","features":[305]},{"name":"STATUS_FVE_EDRIVE_BAND_ENUMERATION_FAILED","features":[305]},{"name":"STATUS_FVE_EDRIVE_DRY_RUN_FAILED","features":[305]},{"name":"STATUS_FVE_ENH_PIN_INVALID","features":[305]},{"name":"STATUS_FVE_FAILED_AUTHENTICATION","features":[305]},{"name":"STATUS_FVE_FAILED_SECTOR_SIZE","features":[305]},{"name":"STATUS_FVE_FAILED_WRONG_FS","features":[305]},{"name":"STATUS_FVE_FS_MOUNTED","features":[305]},{"name":"STATUS_FVE_FS_NOT_EXTENDED","features":[305]},{"name":"STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE","features":[305]},{"name":"STATUS_FVE_INVALID_DATUM_TYPE","features":[305]},{"name":"STATUS_FVE_KEYFILE_INVALID","features":[305]},{"name":"STATUS_FVE_KEYFILE_NOT_FOUND","features":[305]},{"name":"STATUS_FVE_KEYFILE_NO_VMK","features":[305]},{"name":"STATUS_FVE_LOCKED_VOLUME","features":[305]},{"name":"STATUS_FVE_METADATA_FULL","features":[305]},{"name":"STATUS_FVE_MOR_FAILED","features":[305]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CLUSTER","features":[305]},{"name":"STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK","features":[305]},{"name":"STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING","features":[305]},{"name":"STATUS_FVE_NOT_DATA_VOLUME","features":[305]},{"name":"STATUS_FVE_NOT_DE_VOLUME","features":[305]},{"name":"STATUS_FVE_NOT_ENCRYPTED","features":[305]},{"name":"STATUS_FVE_NOT_OS_VOLUME","features":[305]},{"name":"STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY","features":[305]},{"name":"STATUS_FVE_NO_FEATURE_LICENSE","features":[305]},{"name":"STATUS_FVE_NO_LICENSE","features":[305]},{"name":"STATUS_FVE_OLD_METADATA_COPY","features":[305]},{"name":"STATUS_FVE_OSV_KSR_NOT_ALLOWED","features":[305]},{"name":"STATUS_FVE_OVERLAPPED_UPDATE","features":[305]},{"name":"STATUS_FVE_PARTIAL_METADATA","features":[305]},{"name":"STATUS_FVE_PIN_INVALID","features":[305]},{"name":"STATUS_FVE_POLICY_ON_RDV_EXCLUSION_LIST","features":[305]},{"name":"STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED","features":[305]},{"name":"STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED","features":[305]},{"name":"STATUS_FVE_PROTECTION_DISABLED","features":[305]},{"name":"STATUS_FVE_RAW_ACCESS","features":[305]},{"name":"STATUS_FVE_RAW_BLOCKED","features":[305]},{"name":"STATUS_FVE_REBOOT_REQUIRED","features":[305]},{"name":"STATUS_FVE_SECUREBOOT_CONFIG_CHANGE","features":[305]},{"name":"STATUS_FVE_SECUREBOOT_DISABLED","features":[305]},{"name":"STATUS_FVE_TOO_SMALL","features":[305]},{"name":"STATUS_FVE_TPM_DISABLED","features":[305]},{"name":"STATUS_FVE_TPM_INVALID_PCR","features":[305]},{"name":"STATUS_FVE_TPM_NO_VMK","features":[305]},{"name":"STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO","features":[305]},{"name":"STATUS_FVE_TRANSIENT_STATE","features":[305]},{"name":"STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG","features":[305]},{"name":"STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT","features":[305]},{"name":"STATUS_FVE_VOLUME_NOT_BOUND","features":[305]},{"name":"STATUS_FVE_VOLUME_TOO_SMALL","features":[305]},{"name":"STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE","features":[305]},{"name":"STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE","features":[305]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER","features":[305]},{"name":"STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER","features":[305]},{"name":"STATUS_FWP_ALREADY_EXISTS","features":[305]},{"name":"STATUS_FWP_BUILTIN_OBJECT","features":[305]},{"name":"STATUS_FWP_CALLOUT_NOTIFICATION_FAILED","features":[305]},{"name":"STATUS_FWP_CALLOUT_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_CANNOT_PEND","features":[305]},{"name":"STATUS_FWP_CONDITION_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_CONNECTIONS_DISABLED","features":[305]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT","features":[305]},{"name":"STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER","features":[305]},{"name":"STATUS_FWP_DROP_NOICMP","features":[305]},{"name":"STATUS_FWP_DUPLICATE_AUTH_METHOD","features":[305]},{"name":"STATUS_FWP_DUPLICATE_CONDITION","features":[305]},{"name":"STATUS_FWP_DUPLICATE_KEYMOD","features":[305]},{"name":"STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS","features":[305]},{"name":"STATUS_FWP_EM_NOT_SUPPORTED","features":[305]},{"name":"STATUS_FWP_FILTER_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_IKEEXT_NOT_RUNNING","features":[305]},{"name":"STATUS_FWP_INCOMPATIBLE_AUTH_METHOD","features":[305]},{"name":"STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM","features":[305]},{"name":"STATUS_FWP_INCOMPATIBLE_DH_GROUP","features":[305]},{"name":"STATUS_FWP_INCOMPATIBLE_LAYER","features":[305]},{"name":"STATUS_FWP_INCOMPATIBLE_SA_STATE","features":[305]},{"name":"STATUS_FWP_INCOMPATIBLE_TXN","features":[305]},{"name":"STATUS_FWP_INJECT_HANDLE_CLOSING","features":[305]},{"name":"STATUS_FWP_INJECT_HANDLE_STALE","features":[305]},{"name":"STATUS_FWP_INVALID_ACTION_TYPE","features":[305]},{"name":"STATUS_FWP_INVALID_AUTH_TRANSFORM","features":[305]},{"name":"STATUS_FWP_INVALID_CIPHER_TRANSFORM","features":[305]},{"name":"STATUS_FWP_INVALID_DNS_NAME","features":[305]},{"name":"STATUS_FWP_INVALID_ENUMERATOR","features":[305]},{"name":"STATUS_FWP_INVALID_FLAGS","features":[305]},{"name":"STATUS_FWP_INVALID_INTERVAL","features":[305]},{"name":"STATUS_FWP_INVALID_NET_MASK","features":[305]},{"name":"STATUS_FWP_INVALID_PARAMETER","features":[305]},{"name":"STATUS_FWP_INVALID_RANGE","features":[305]},{"name":"STATUS_FWP_INVALID_TRANSFORM_COMBINATION","features":[305]},{"name":"STATUS_FWP_INVALID_TUNNEL_ENDPOINT","features":[305]},{"name":"STATUS_FWP_INVALID_WEIGHT","features":[305]},{"name":"STATUS_FWP_IN_USE","features":[305]},{"name":"STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL","features":[305]},{"name":"STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED","features":[305]},{"name":"STATUS_FWP_KM_CLIENTS_ONLY","features":[305]},{"name":"STATUS_FWP_L2_DRIVER_NOT_READY","features":[305]},{"name":"STATUS_FWP_LAYER_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_LIFETIME_MISMATCH","features":[305]},{"name":"STATUS_FWP_MATCH_TYPE_MISMATCH","features":[305]},{"name":"STATUS_FWP_NET_EVENTS_DISABLED","features":[305]},{"name":"STATUS_FWP_NEVER_MATCH","features":[305]},{"name":"STATUS_FWP_NOTIFICATION_DROPPED","features":[305]},{"name":"STATUS_FWP_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_NO_TXN_IN_PROGRESS","features":[305]},{"name":"STATUS_FWP_NULL_DISPLAY_NAME","features":[305]},{"name":"STATUS_FWP_NULL_POINTER","features":[305]},{"name":"STATUS_FWP_OUT_OF_BOUNDS","features":[305]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_MISMATCH","features":[305]},{"name":"STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_PROVIDER_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_RESERVED","features":[305]},{"name":"STATUS_FWP_SESSION_ABORTED","features":[305]},{"name":"STATUS_FWP_STILL_ON","features":[305]},{"name":"STATUS_FWP_SUBLAYER_NOT_FOUND","features":[305]},{"name":"STATUS_FWP_TCPIP_NOT_READY","features":[305]},{"name":"STATUS_FWP_TIMEOUT","features":[305]},{"name":"STATUS_FWP_TOO_MANY_CALLOUTS","features":[305]},{"name":"STATUS_FWP_TOO_MANY_SUBLAYERS","features":[305]},{"name":"STATUS_FWP_TRAFFIC_MISMATCH","features":[305]},{"name":"STATUS_FWP_TXN_ABORTED","features":[305]},{"name":"STATUS_FWP_TXN_IN_PROGRESS","features":[305]},{"name":"STATUS_FWP_TYPE_MISMATCH","features":[305]},{"name":"STATUS_FWP_WRONG_SESSION","features":[305]},{"name":"STATUS_FWP_ZERO_LENGTH_ARRAY","features":[305]},{"name":"STATUS_GDI_HANDLE_LEAK","features":[305]},{"name":"STATUS_GENERIC_COMMAND_FAILED","features":[305]},{"name":"STATUS_GENERIC_NOT_MAPPED","features":[305]},{"name":"STATUS_GHOSTED","features":[305]},{"name":"STATUS_GPIO_CLIENT_INFORMATION_INVALID","features":[305]},{"name":"STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE","features":[305]},{"name":"STATUS_GPIO_INTERRUPT_ALREADY_UNMASKED","features":[305]},{"name":"STATUS_GPIO_INVALID_REGISTRATION_PACKET","features":[305]},{"name":"STATUS_GPIO_OPERATION_DENIED","features":[305]},{"name":"STATUS_GPIO_VERSION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRACEFUL_DISCONNECT","features":[305]},{"name":"STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED","features":[305]},{"name":"STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY","features":[305]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE","features":[305]},{"name":"STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET","features":[305]},{"name":"STATUS_GRAPHICS_ADAPTER_WAS_RESET","features":[305]},{"name":"STATUS_GRAPHICS_ALLOCATION_BUSY","features":[305]},{"name":"STATUS_GRAPHICS_ALLOCATION_CLOSED","features":[305]},{"name":"STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST","features":[305]},{"name":"STATUS_GRAPHICS_ALLOCATION_INVALID","features":[305]},{"name":"STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION","features":[305]},{"name":"STATUS_GRAPHICS_CANNOTCOLORCONVERT","features":[305]},{"name":"STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN","features":[305]},{"name":"STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION","features":[305]},{"name":"STATUS_GRAPHICS_CANT_LOCK_MEMORY","features":[305]},{"name":"STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION","features":[305]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED","features":[305]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON","features":[305]},{"name":"STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED","features":[305]},{"name":"STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET","features":[305]},{"name":"STATUS_GRAPHICS_COPP_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_DATASET_IS_EMPTY","features":[305]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING","features":[305]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_DATA","features":[305]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM","features":[305]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND","features":[305]},{"name":"STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH","features":[305]},{"name":"STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE","features":[305]},{"name":"STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_DEPENDABLE_CHILD_STATUS","features":[305]},{"name":"STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP","features":[305]},{"name":"STATUS_GRAPHICS_DRIVER_MISMATCH","features":[305]},{"name":"STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION","features":[305]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET","features":[305]},{"name":"STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET","features":[305]},{"name":"STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE","features":[305]},{"name":"STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST","features":[305]},{"name":"STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA","features":[305]},{"name":"STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA","features":[305]},{"name":"STATUS_GRAPHICS_I2C_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT","features":[305]},{"name":"STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE","features":[305]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_ABANDON_SWAPCHAIN","features":[305]},{"name":"STATUS_GRAPHICS_INDIRECT_DISPLAY_DEVICE_STOPPED","features":[305]},{"name":"STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER","features":[305]},{"name":"STATUS_GRAPHICS_INTERNAL_ERROR","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_ACTIVE_REGION","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_CLIENT_TYPE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_COLORBASIS","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_DRIVER_MODEL","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_FREQUENCY","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_GAMMA_RAMP","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_PIXELFORMAT","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_POINTER","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_STRIDE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_TOTAL_REGION","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON","features":[305]},{"name":"STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE","features":[305]},{"name":"STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED","features":[305]},{"name":"STATUS_GRAPHICS_LEADLINK_START_DEFERRED","features":[305]},{"name":"STATUS_GRAPHICS_LINK_CONFIGURATION_IN_PROGRESS","features":[305]},{"name":"STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED","features":[305]},{"name":"STATUS_GRAPHICS_MCA_INTERNAL_ERROR","features":[305]},{"name":"STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET","features":[305]},{"name":"STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE","features":[305]},{"name":"STATUS_GRAPHICS_MODE_NOT_IN_MODESET","features":[305]},{"name":"STATUS_GRAPHICS_MODE_NOT_PINNED","features":[305]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET","features":[305]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE","features":[305]},{"name":"STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET","features":[305]},{"name":"STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER","features":[305]},{"name":"STATUS_GRAPHICS_MONITOR_NOT_CONNECTED","features":[305]},{"name":"STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS","features":[305]},{"name":"STATUS_GRAPHICS_MPO_ALLOCATION_UNPINNED","features":[305]},{"name":"STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER","features":[305]},{"name":"STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER","features":[305]},{"name":"STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER","features":[305]},{"name":"STATUS_GRAPHICS_NO_ACTIVE_VIDPN","features":[305]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS","features":[305]},{"name":"STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET","features":[305]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME","features":[305]},{"name":"STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT","features":[305]},{"name":"STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE","features":[305]},{"name":"STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET","features":[305]},{"name":"STATUS_GRAPHICS_NO_PREFERRED_MODE","features":[305]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN","features":[305]},{"name":"STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY","features":[305]},{"name":"STATUS_GRAPHICS_NO_VIDEO_MEMORY","features":[305]},{"name":"STATUS_GRAPHICS_NO_VIDPNMGR","features":[305]},{"name":"STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE","features":[305]},{"name":"STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR","features":[305]},{"name":"STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET","features":[305]},{"name":"STATUS_GRAPHICS_OPM_INTERNAL_ERROR","features":[305]},{"name":"STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST","features":[305]},{"name":"STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS","features":[305]},{"name":"STATUS_GRAPHICS_OPM_INVALID_HANDLE","features":[305]},{"name":"STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST","features":[305]},{"name":"STATUS_GRAPHICS_OPM_INVALID_SRM","features":[305]},{"name":"STATUS_GRAPHICS_OPM_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST","features":[305]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP","features":[305]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA","features":[305]},{"name":"STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP","features":[305]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS","features":[305]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS","features":[305]},{"name":"STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS","features":[305]},{"name":"STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH","features":[305]},{"name":"STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED","features":[305]},{"name":"STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED","features":[305]},{"name":"STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL","features":[305]},{"name":"STATUS_GRAPHICS_PARTIAL_DATA_POPULATED","features":[305]},{"name":"STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY","features":[305]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED","features":[305]},{"name":"STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY","features":[305]},{"name":"STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET","features":[305]},{"name":"STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY","features":[305]},{"name":"STATUS_GRAPHICS_PRESENT_BUFFER_NOT_BOUND","features":[305]},{"name":"STATUS_GRAPHICS_PRESENT_DENIED","features":[305]},{"name":"STATUS_GRAPHICS_PRESENT_INVALID_WINDOW","features":[305]},{"name":"STATUS_GRAPHICS_PRESENT_MODE_CHANGED","features":[305]},{"name":"STATUS_GRAPHICS_PRESENT_OCCLUDED","features":[305]},{"name":"STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED","features":[305]},{"name":"STATUS_GRAPHICS_PRESENT_UNOCCLUDED","features":[305]},{"name":"STATUS_GRAPHICS_PVP_HFS_FAILED","features":[305]},{"name":"STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH","features":[305]},{"name":"STATUS_GRAPHICS_RESOURCES_NOT_RELATED","features":[305]},{"name":"STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS","features":[305]},{"name":"STATUS_GRAPHICS_SKIP_ALLOCATION_PREPARATION","features":[305]},{"name":"STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET","features":[305]},{"name":"STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE","features":[305]},{"name":"STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY","features":[305]},{"name":"STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED","features":[305]},{"name":"STATUS_GRAPHICS_STALE_MODESET","features":[305]},{"name":"STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY","features":[305]},{"name":"STATUS_GRAPHICS_START_DEFERRED","features":[305]},{"name":"STATUS_GRAPHICS_TARGET_ALREADY_IN_SET","features":[305]},{"name":"STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE","features":[305]},{"name":"STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY","features":[305]},{"name":"STATUS_GRAPHICS_TOO_MANY_REFERENCES","features":[305]},{"name":"STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED","features":[305]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_LATER","features":[305]},{"name":"STATUS_GRAPHICS_TRY_AGAIN_NOW","features":[305]},{"name":"STATUS_GRAPHICS_UAB_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS","features":[305]},{"name":"STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS","features":[305]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE","features":[305]},{"name":"STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_VAIL_STATE_CHANGED","features":[305]},{"name":"STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES","features":[305]},{"name":"STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[305]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE","features":[305]},{"name":"STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED","features":[305]},{"name":"STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE","features":[305]},{"name":"STATUS_GROUP_EXISTS","features":[305]},{"name":"STATUS_GUARD_PAGE_VIOLATION","features":[305]},{"name":"STATUS_GUIDS_EXHAUSTED","features":[305]},{"name":"STATUS_GUID_SUBSTITUTION_MADE","features":[305]},{"name":"STATUS_HANDLES_CLOSED","features":[305]},{"name":"STATUS_HANDLE_NOT_CLOSABLE","features":[305]},{"name":"STATUS_HANDLE_NO_LONGER_VALID","features":[305]},{"name":"STATUS_HANDLE_REVOKED","features":[305]},{"name":"STATUS_HARDWARE_MEMORY_ERROR","features":[305]},{"name":"STATUS_HASH_NOT_PRESENT","features":[305]},{"name":"STATUS_HASH_NOT_SUPPORTED","features":[305]},{"name":"STATUS_HAS_SYSTEM_CRITICAL_FILES","features":[305]},{"name":"STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED","features":[305]},{"name":"STATUS_HDAUDIO_EMPTY_CONNECTION_LIST","features":[305]},{"name":"STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED","features":[305]},{"name":"STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY","features":[305]},{"name":"STATUS_HEAP_CORRUPTION","features":[305]},{"name":"STATUS_HEURISTIC_DAMAGE_POSSIBLE","features":[305]},{"name":"STATUS_HIBERNATED","features":[305]},{"name":"STATUS_HIBERNATION_FAILURE","features":[305]},{"name":"STATUS_HIVE_UNLOADED","features":[305]},{"name":"STATUS_HMAC_NOT_SUPPORTED","features":[305]},{"name":"STATUS_HOPLIMIT_EXCEEDED","features":[305]},{"name":"STATUS_HOST_DOWN","features":[305]},{"name":"STATUS_HOST_UNREACHABLE","features":[305]},{"name":"STATUS_HUNG_DISPLAY_DRIVER_THREAD","features":[305]},{"name":"STATUS_HV_ACCESS_DENIED","features":[305]},{"name":"STATUS_HV_ACKNOWLEDGED","features":[305]},{"name":"STATUS_HV_CALL_PENDING","features":[305]},{"name":"STATUS_HV_CPUID_FEATURE_VALIDATION_ERROR","features":[305]},{"name":"STATUS_HV_CPUID_XSAVE_FEATURE_VALIDATION_ERROR","features":[305]},{"name":"STATUS_HV_DEVICE_NOT_IN_DOMAIN","features":[305]},{"name":"STATUS_HV_EVENT_BUFFER_ALREADY_FREED","features":[305]},{"name":"STATUS_HV_FEATURE_UNAVAILABLE","features":[305]},{"name":"STATUS_HV_INACTIVE","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_BUFFER","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_BUFFERS","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_MEMORY_MIRRORING","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_CONTIGUOUS_ROOT_MEMORY_MIRRORING","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_MEMORY_MIRRORING","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY","features":[305]},{"name":"STATUS_HV_INSUFFICIENT_ROOT_MEMORY_MIRRORING","features":[305]},{"name":"STATUS_HV_INVALID_ALIGNMENT","features":[305]},{"name":"STATUS_HV_INVALID_CONNECTION_ID","features":[305]},{"name":"STATUS_HV_INVALID_CPU_GROUP_ID","features":[305]},{"name":"STATUS_HV_INVALID_CPU_GROUP_STATE","features":[305]},{"name":"STATUS_HV_INVALID_DEVICE_ID","features":[305]},{"name":"STATUS_HV_INVALID_DEVICE_STATE","features":[305]},{"name":"STATUS_HV_INVALID_HYPERCALL_CODE","features":[305]},{"name":"STATUS_HV_INVALID_HYPERCALL_INPUT","features":[305]},{"name":"STATUS_HV_INVALID_LP_INDEX","features":[305]},{"name":"STATUS_HV_INVALID_PARAMETER","features":[305]},{"name":"STATUS_HV_INVALID_PARTITION_ID","features":[305]},{"name":"STATUS_HV_INVALID_PARTITION_STATE","features":[305]},{"name":"STATUS_HV_INVALID_PORT_ID","features":[305]},{"name":"STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO","features":[305]},{"name":"STATUS_HV_INVALID_REGISTER_VALUE","features":[305]},{"name":"STATUS_HV_INVALID_SAVE_RESTORE_STATE","features":[305]},{"name":"STATUS_HV_INVALID_SYNIC_STATE","features":[305]},{"name":"STATUS_HV_INVALID_VP_INDEX","features":[305]},{"name":"STATUS_HV_INVALID_VP_STATE","features":[305]},{"name":"STATUS_HV_INVALID_VTL_STATE","features":[305]},{"name":"STATUS_HV_MSR_ACCESS_FAILED","features":[305]},{"name":"STATUS_HV_NESTED_VM_EXIT","features":[305]},{"name":"STATUS_HV_NOT_ACKNOWLEDGED","features":[305]},{"name":"STATUS_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE","features":[305]},{"name":"STATUS_HV_NOT_PRESENT","features":[305]},{"name":"STATUS_HV_NO_DATA","features":[305]},{"name":"STATUS_HV_NO_RESOURCES","features":[305]},{"name":"STATUS_HV_NX_NOT_DETECTED","features":[305]},{"name":"STATUS_HV_OBJECT_IN_USE","features":[305]},{"name":"STATUS_HV_OPERATION_DENIED","features":[305]},{"name":"STATUS_HV_OPERATION_FAILED","features":[305]},{"name":"STATUS_HV_PAGE_REQUEST_INVALID","features":[305]},{"name":"STATUS_HV_PARTITION_TOO_DEEP","features":[305]},{"name":"STATUS_HV_PENDING_PAGE_REQUESTS","features":[305]},{"name":"STATUS_HV_PROCESSOR_STARTUP_TIMEOUT","features":[305]},{"name":"STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE","features":[305]},{"name":"STATUS_HV_SMX_ENABLED","features":[305]},{"name":"STATUS_HV_UNKNOWN_PROPERTY","features":[305]},{"name":"STATUS_ILLEGAL_CHARACTER","features":[305]},{"name":"STATUS_ILLEGAL_DLL_RELOCATION","features":[305]},{"name":"STATUS_ILLEGAL_ELEMENT_ADDRESS","features":[305]},{"name":"STATUS_ILLEGAL_FLOAT_CONTEXT","features":[305]},{"name":"STATUS_ILLEGAL_FUNCTION","features":[305]},{"name":"STATUS_ILLEGAL_INSTRUCTION","features":[305]},{"name":"STATUS_ILL_FORMED_PASSWORD","features":[305]},{"name":"STATUS_ILL_FORMED_SERVICE_ENTRY","features":[305]},{"name":"STATUS_IMAGE_ALREADY_LOADED","features":[305]},{"name":"STATUS_IMAGE_ALREADY_LOADED_AS_DLL","features":[305]},{"name":"STATUS_IMAGE_AT_DIFFERENT_BASE","features":[305]},{"name":"STATUS_IMAGE_CERT_EXPIRED","features":[305]},{"name":"STATUS_IMAGE_CERT_REVOKED","features":[305]},{"name":"STATUS_IMAGE_CHECKSUM_MISMATCH","features":[305]},{"name":"STATUS_IMAGE_LOADED_AS_PATCH_IMAGE","features":[305]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH","features":[305]},{"name":"STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE","features":[305]},{"name":"STATUS_IMAGE_MP_UP_MISMATCH","features":[305]},{"name":"STATUS_IMAGE_NOT_AT_BASE","features":[305]},{"name":"STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT","features":[305]},{"name":"STATUS_IMPLEMENTATION_LIMIT","features":[305]},{"name":"STATUS_INCOMPATIBLE_DRIVER_BLOCKED","features":[305]},{"name":"STATUS_INCOMPATIBLE_FILE_MAP","features":[305]},{"name":"STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING","features":[305]},{"name":"STATUS_INCORRECT_ACCOUNT_TYPE","features":[305]},{"name":"STATUS_INDEX_OUT_OF_BOUNDS","features":[305]},{"name":"STATUS_INDOUBT_TRANSACTIONS_EXIST","features":[305]},{"name":"STATUS_INFO_LENGTH_MISMATCH","features":[305]},{"name":"STATUS_INSTANCE_NOT_AVAILABLE","features":[305]},{"name":"STATUS_INSTRUCTION_MISALIGNMENT","features":[305]},{"name":"STATUS_INSUFFICIENT_LOGON_INFO","features":[305]},{"name":"STATUS_INSUFFICIENT_NVRAM_RESOURCES","features":[305]},{"name":"STATUS_INSUFFICIENT_POWER","features":[305]},{"name":"STATUS_INSUFFICIENT_RESOURCES","features":[305]},{"name":"STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE","features":[305]},{"name":"STATUS_INSUFFICIENT_VIRTUAL_ADDR_RESOURCES","features":[305]},{"name":"STATUS_INSUFF_SERVER_RESOURCES","features":[305]},{"name":"STATUS_INTEGER_DIVIDE_BY_ZERO","features":[305]},{"name":"STATUS_INTEGER_OVERFLOW","features":[305]},{"name":"STATUS_INTERMIXED_KERNEL_EA_OPERATION","features":[305]},{"name":"STATUS_INTERNAL_DB_CORRUPTION","features":[305]},{"name":"STATUS_INTERNAL_DB_ERROR","features":[305]},{"name":"STATUS_INTERNAL_ERROR","features":[305]},{"name":"STATUS_INTERRUPTED","features":[305]},{"name":"STATUS_INTERRUPT_STILL_CONNECTED","features":[305]},{"name":"STATUS_INTERRUPT_VECTOR_ALREADY_CONNECTED","features":[305]},{"name":"STATUS_INVALID_ACCOUNT_NAME","features":[305]},{"name":"STATUS_INVALID_ACE_CONDITION","features":[305]},{"name":"STATUS_INVALID_ACL","features":[305]},{"name":"STATUS_INVALID_ADDRESS","features":[305]},{"name":"STATUS_INVALID_ADDRESS_COMPONENT","features":[305]},{"name":"STATUS_INVALID_ADDRESS_WILDCARD","features":[305]},{"name":"STATUS_INVALID_BLOCK_LENGTH","features":[305]},{"name":"STATUS_INVALID_BUFFER_SIZE","features":[305]},{"name":"STATUS_INVALID_CAP","features":[305]},{"name":"STATUS_INVALID_CID","features":[305]},{"name":"STATUS_INVALID_COMPUTER_NAME","features":[305]},{"name":"STATUS_INVALID_CONFIG_VALUE","features":[305]},{"name":"STATUS_INVALID_CONNECTION","features":[305]},{"name":"STATUS_INVALID_CRUNTIME_PARAMETER","features":[305]},{"name":"STATUS_INVALID_DEVICE_OBJECT_PARAMETER","features":[305]},{"name":"STATUS_INVALID_DEVICE_REQUEST","features":[305]},{"name":"STATUS_INVALID_DEVICE_STATE","features":[305]},{"name":"STATUS_INVALID_DISPOSITION","features":[305]},{"name":"STATUS_INVALID_DOMAIN_ROLE","features":[305]},{"name":"STATUS_INVALID_DOMAIN_STATE","features":[305]},{"name":"STATUS_INVALID_EA_FLAG","features":[305]},{"name":"STATUS_INVALID_EA_NAME","features":[305]},{"name":"STATUS_INVALID_EXCEPTION_HANDLER","features":[305]},{"name":"STATUS_INVALID_FIELD_IN_PARAMETER_LIST","features":[305]},{"name":"STATUS_INVALID_FILE_FOR_SECTION","features":[305]},{"name":"STATUS_INVALID_GROUP_ATTRIBUTES","features":[305]},{"name":"STATUS_INVALID_HANDLE","features":[305]},{"name":"STATUS_INVALID_HW_PROFILE","features":[305]},{"name":"STATUS_INVALID_IDN_NORMALIZATION","features":[305]},{"name":"STATUS_INVALID_ID_AUTHORITY","features":[305]},{"name":"STATUS_INVALID_IMAGE_FORMAT","features":[305]},{"name":"STATUS_INVALID_IMAGE_HASH","features":[305]},{"name":"STATUS_INVALID_IMAGE_LE_FORMAT","features":[305]},{"name":"STATUS_INVALID_IMAGE_NE_FORMAT","features":[305]},{"name":"STATUS_INVALID_IMAGE_NOT_MZ","features":[305]},{"name":"STATUS_INVALID_IMAGE_PROTECT","features":[305]},{"name":"STATUS_INVALID_IMAGE_WIN_16","features":[305]},{"name":"STATUS_INVALID_IMAGE_WIN_32","features":[305]},{"name":"STATUS_INVALID_IMAGE_WIN_64","features":[305]},{"name":"STATUS_INVALID_IMPORT_OF_NON_DLL","features":[305]},{"name":"STATUS_INVALID_INFO_CLASS","features":[305]},{"name":"STATUS_INVALID_INITIATOR_TARGET_PATH","features":[305]},{"name":"STATUS_INVALID_KERNEL_INFO_VERSION","features":[305]},{"name":"STATUS_INVALID_LABEL","features":[305]},{"name":"STATUS_INVALID_LDT_DESCRIPTOR","features":[305]},{"name":"STATUS_INVALID_LDT_OFFSET","features":[305]},{"name":"STATUS_INVALID_LDT_SIZE","features":[305]},{"name":"STATUS_INVALID_LEVEL","features":[305]},{"name":"STATUS_INVALID_LOCK_RANGE","features":[305]},{"name":"STATUS_INVALID_LOCK_SEQUENCE","features":[305]},{"name":"STATUS_INVALID_LOGON_HOURS","features":[305]},{"name":"STATUS_INVALID_LOGON_TYPE","features":[305]},{"name":"STATUS_INVALID_MEMBER","features":[305]},{"name":"STATUS_INVALID_MESSAGE","features":[305]},{"name":"STATUS_INVALID_NETWORK_RESPONSE","features":[305]},{"name":"STATUS_INVALID_OFFSET_ALIGNMENT","features":[305]},{"name":"STATUS_INVALID_OPLOCK_PROTOCOL","features":[305]},{"name":"STATUS_INVALID_OWNER","features":[305]},{"name":"STATUS_INVALID_PACKAGE_SID_LENGTH","features":[305]},{"name":"STATUS_INVALID_PAGE_PROTECTION","features":[305]},{"name":"STATUS_INVALID_PARAMETER","features":[305]},{"name":"STATUS_INVALID_PARAMETER_1","features":[305]},{"name":"STATUS_INVALID_PARAMETER_10","features":[305]},{"name":"STATUS_INVALID_PARAMETER_11","features":[305]},{"name":"STATUS_INVALID_PARAMETER_12","features":[305]},{"name":"STATUS_INVALID_PARAMETER_2","features":[305]},{"name":"STATUS_INVALID_PARAMETER_3","features":[305]},{"name":"STATUS_INVALID_PARAMETER_4","features":[305]},{"name":"STATUS_INVALID_PARAMETER_5","features":[305]},{"name":"STATUS_INVALID_PARAMETER_6","features":[305]},{"name":"STATUS_INVALID_PARAMETER_7","features":[305]},{"name":"STATUS_INVALID_PARAMETER_8","features":[305]},{"name":"STATUS_INVALID_PARAMETER_9","features":[305]},{"name":"STATUS_INVALID_PARAMETER_MIX","features":[305]},{"name":"STATUS_INVALID_PEP_INFO_VERSION","features":[305]},{"name":"STATUS_INVALID_PIPE_STATE","features":[305]},{"name":"STATUS_INVALID_PLUGPLAY_DEVICE_PATH","features":[305]},{"name":"STATUS_INVALID_PORT_ATTRIBUTES","features":[305]},{"name":"STATUS_INVALID_PORT_HANDLE","features":[305]},{"name":"STATUS_INVALID_PRIMARY_GROUP","features":[305]},{"name":"STATUS_INVALID_QUOTA_LOWER","features":[305]},{"name":"STATUS_INVALID_READ_MODE","features":[305]},{"name":"STATUS_INVALID_RUNLEVEL_SETTING","features":[305]},{"name":"STATUS_INVALID_SECURITY_DESCR","features":[305]},{"name":"STATUS_INVALID_SERVER_STATE","features":[305]},{"name":"STATUS_INVALID_SESSION","features":[305]},{"name":"STATUS_INVALID_SID","features":[305]},{"name":"STATUS_INVALID_SIGNATURE","features":[305]},{"name":"STATUS_INVALID_STATE_TRANSITION","features":[305]},{"name":"STATUS_INVALID_SUB_AUTHORITY","features":[305]},{"name":"STATUS_INVALID_SYSTEM_SERVICE","features":[305]},{"name":"STATUS_INVALID_TASK_INDEX","features":[305]},{"name":"STATUS_INVALID_TASK_NAME","features":[305]},{"name":"STATUS_INVALID_THREAD","features":[305]},{"name":"STATUS_INVALID_TOKEN","features":[305]},{"name":"STATUS_INVALID_TRANSACTION","features":[305]},{"name":"STATUS_INVALID_UNWIND_TARGET","features":[305]},{"name":"STATUS_INVALID_USER_BUFFER","features":[305]},{"name":"STATUS_INVALID_USER_PRINCIPAL_NAME","features":[305]},{"name":"STATUS_INVALID_VARIANT","features":[305]},{"name":"STATUS_INVALID_VIEW_SIZE","features":[305]},{"name":"STATUS_INVALID_VOLUME_LABEL","features":[305]},{"name":"STATUS_INVALID_WEIGHT","features":[305]},{"name":"STATUS_INVALID_WORKSTATION","features":[305]},{"name":"STATUS_IN_PAGE_ERROR","features":[305]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_BIG","features":[305]},{"name":"STATUS_IORING_COMPLETION_QUEUE_TOO_FULL","features":[305]},{"name":"STATUS_IORING_CORRUPT","features":[305]},{"name":"STATUS_IORING_REQUIRED_FLAG_NOT_SUPPORTED","features":[305]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_FULL","features":[305]},{"name":"STATUS_IORING_SUBMISSION_QUEUE_TOO_BIG","features":[305]},{"name":"STATUS_IORING_SUBMIT_IN_PROGRESS","features":[305]},{"name":"STATUS_IORING_VERSION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_IO_DEVICE_ERROR","features":[305]},{"name":"STATUS_IO_DEVICE_INVALID_DATA","features":[305]},{"name":"STATUS_IO_OPERATION_TIMEOUT","features":[305]},{"name":"STATUS_IO_PREEMPTED","features":[305]},{"name":"STATUS_IO_PRIVILEGE_FAILED","features":[305]},{"name":"STATUS_IO_REISSUE_AS_CACHED","features":[305]},{"name":"STATUS_IO_REPARSE_DATA_INVALID","features":[305]},{"name":"STATUS_IO_REPARSE_TAG_INVALID","features":[305]},{"name":"STATUS_IO_REPARSE_TAG_MISMATCH","features":[305]},{"name":"STATUS_IO_REPARSE_TAG_NOT_HANDLED","features":[305]},{"name":"STATUS_IO_TIMEOUT","features":[305]},{"name":"STATUS_IO_UNALIGNED_WRITE","features":[305]},{"name":"STATUS_IPSEC_AUTH_FIREWALL_DROP","features":[305]},{"name":"STATUS_IPSEC_BAD_SPI","features":[305]},{"name":"STATUS_IPSEC_CLEAR_TEXT_DROP","features":[305]},{"name":"STATUS_IPSEC_DOSP_BLOCK","features":[305]},{"name":"STATUS_IPSEC_DOSP_INVALID_PACKET","features":[305]},{"name":"STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED","features":[305]},{"name":"STATUS_IPSEC_DOSP_MAX_ENTRIES","features":[305]},{"name":"STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES","features":[305]},{"name":"STATUS_IPSEC_DOSP_RECEIVED_MULTICAST","features":[305]},{"name":"STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED","features":[305]},{"name":"STATUS_IPSEC_INTEGRITY_CHECK_FAILED","features":[305]},{"name":"STATUS_IPSEC_INVALID_PACKET","features":[305]},{"name":"STATUS_IPSEC_QUEUE_OVERFLOW","features":[305]},{"name":"STATUS_IPSEC_REPLAY_CHECK_FAILED","features":[305]},{"name":"STATUS_IPSEC_SA_LIFETIME_EXPIRED","features":[305]},{"name":"STATUS_IPSEC_THROTTLE_DROP","features":[305]},{"name":"STATUS_IPSEC_WRONG_SA","features":[305]},{"name":"STATUS_IP_ADDRESS_CONFLICT1","features":[305]},{"name":"STATUS_IP_ADDRESS_CONFLICT2","features":[305]},{"name":"STATUS_ISSUING_CA_UNTRUSTED","features":[305]},{"name":"STATUS_ISSUING_CA_UNTRUSTED_KDC","features":[305]},{"name":"STATUS_JOB_NOT_EMPTY","features":[305]},{"name":"STATUS_JOB_NO_CONTAINER","features":[305]},{"name":"STATUS_JOURNAL_DELETE_IN_PROGRESS","features":[305]},{"name":"STATUS_JOURNAL_ENTRY_DELETED","features":[305]},{"name":"STATUS_JOURNAL_NOT_ACTIVE","features":[305]},{"name":"STATUS_KDC_CERT_EXPIRED","features":[305]},{"name":"STATUS_KDC_CERT_REVOKED","features":[305]},{"name":"STATUS_KDC_INVALID_REQUEST","features":[305]},{"name":"STATUS_KDC_UNABLE_TO_REFER","features":[305]},{"name":"STATUS_KDC_UNKNOWN_ETYPE","features":[305]},{"name":"STATUS_KERNEL_APC","features":[305]},{"name":"STATUS_KERNEL_EXECUTABLE_MEMORY_WRITE","features":[305]},{"name":"STATUS_KEY_DELETED","features":[305]},{"name":"STATUS_KEY_HAS_CHILDREN","features":[305]},{"name":"STATUS_LAPS_ENCRYPTION_REQUIRES_2016_DFL","features":[305]},{"name":"STATUS_LAPS_LEGACY_SCHEMA_MISSING","features":[305]},{"name":"STATUS_LAPS_SCHEMA_MISSING","features":[305]},{"name":"STATUS_LAST_ADMIN","features":[305]},{"name":"STATUS_LICENSE_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_LICENSE_VIOLATION","features":[305]},{"name":"STATUS_LINK_FAILED","features":[305]},{"name":"STATUS_LINK_TIMEOUT","features":[305]},{"name":"STATUS_LM_CROSS_ENCRYPTION_REQUIRED","features":[305]},{"name":"STATUS_LOCAL_DISCONNECT","features":[305]},{"name":"STATUS_LOCAL_POLICY_MODIFICATION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_LOCAL_USER_SESSION_KEY","features":[305]},{"name":"STATUS_LOCK_NOT_GRANTED","features":[305]},{"name":"STATUS_LOGIN_TIME_RESTRICTION","features":[305]},{"name":"STATUS_LOGIN_WKSTA_RESTRICTION","features":[305]},{"name":"STATUS_LOGON_NOT_GRANTED","features":[305]},{"name":"STATUS_LOGON_SERVER_CONFLICT","features":[305]},{"name":"STATUS_LOGON_SESSION_COLLISION","features":[305]},{"name":"STATUS_LOGON_SESSION_EXISTS","features":[305]},{"name":"STATUS_LOG_APPENDED_FLUSH_FAILED","features":[305]},{"name":"STATUS_LOG_ARCHIVE_IN_PROGRESS","features":[305]},{"name":"STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS","features":[305]},{"name":"STATUS_LOG_BLOCKS_EXHAUSTED","features":[305]},{"name":"STATUS_LOG_BLOCK_INCOMPLETE","features":[305]},{"name":"STATUS_LOG_BLOCK_INVALID","features":[305]},{"name":"STATUS_LOG_BLOCK_VERSION","features":[305]},{"name":"STATUS_LOG_CANT_DELETE","features":[305]},{"name":"STATUS_LOG_CLIENT_ALREADY_REGISTERED","features":[305]},{"name":"STATUS_LOG_CLIENT_NOT_REGISTERED","features":[305]},{"name":"STATUS_LOG_CONTAINER_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_LOG_CONTAINER_OPEN_FAILED","features":[305]},{"name":"STATUS_LOG_CONTAINER_READ_FAILED","features":[305]},{"name":"STATUS_LOG_CONTAINER_STATE_INVALID","features":[305]},{"name":"STATUS_LOG_CONTAINER_WRITE_FAILED","features":[305]},{"name":"STATUS_LOG_CORRUPTION_DETECTED","features":[305]},{"name":"STATUS_LOG_DEDICATED","features":[305]},{"name":"STATUS_LOG_EPHEMERAL","features":[305]},{"name":"STATUS_LOG_FILE_FULL","features":[305]},{"name":"STATUS_LOG_FULL","features":[305]},{"name":"STATUS_LOG_FULL_HANDLER_IN_PROGRESS","features":[305]},{"name":"STATUS_LOG_GROWTH_FAILED","features":[305]},{"name":"STATUS_LOG_HARD_ERROR","features":[305]},{"name":"STATUS_LOG_INCONSISTENT_SECURITY","features":[305]},{"name":"STATUS_LOG_INVALID_RANGE","features":[305]},{"name":"STATUS_LOG_METADATA_CORRUPT","features":[305]},{"name":"STATUS_LOG_METADATA_FLUSH_FAILED","features":[305]},{"name":"STATUS_LOG_METADATA_INCONSISTENT","features":[305]},{"name":"STATUS_LOG_METADATA_INVALID","features":[305]},{"name":"STATUS_LOG_MULTIPLEXED","features":[305]},{"name":"STATUS_LOG_NOT_ENOUGH_CONTAINERS","features":[305]},{"name":"STATUS_LOG_NO_RESTART","features":[305]},{"name":"STATUS_LOG_PINNED","features":[305]},{"name":"STATUS_LOG_PINNED_ARCHIVE_TAIL","features":[305]},{"name":"STATUS_LOG_PINNED_RESERVATION","features":[305]},{"name":"STATUS_LOG_POLICY_ALREADY_INSTALLED","features":[305]},{"name":"STATUS_LOG_POLICY_CONFLICT","features":[305]},{"name":"STATUS_LOG_POLICY_INVALID","features":[305]},{"name":"STATUS_LOG_POLICY_NOT_INSTALLED","features":[305]},{"name":"STATUS_LOG_READ_CONTEXT_INVALID","features":[305]},{"name":"STATUS_LOG_READ_MODE_INVALID","features":[305]},{"name":"STATUS_LOG_RECORDS_RESERVED_INVALID","features":[305]},{"name":"STATUS_LOG_RECORD_NONEXISTENT","features":[305]},{"name":"STATUS_LOG_RESERVATION_INVALID","features":[305]},{"name":"STATUS_LOG_RESIZE_INVALID_SIZE","features":[305]},{"name":"STATUS_LOG_RESTART_INVALID","features":[305]},{"name":"STATUS_LOG_SECTOR_INVALID","features":[305]},{"name":"STATUS_LOG_SECTOR_PARITY_INVALID","features":[305]},{"name":"STATUS_LOG_SECTOR_REMAPPED","features":[305]},{"name":"STATUS_LOG_SPACE_RESERVED_INVALID","features":[305]},{"name":"STATUS_LOG_START_OF_LOG","features":[305]},{"name":"STATUS_LOG_STATE_INVALID","features":[305]},{"name":"STATUS_LOG_TAIL_INVALID","features":[305]},{"name":"STATUS_LONGJUMP","features":[305]},{"name":"STATUS_LOST_MODE_LOGON_RESTRICTION","features":[305]},{"name":"STATUS_LOST_WRITEBEHIND_DATA","features":[305]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR","features":[305]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED","features":[305]},{"name":"STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR","features":[305]},{"name":"STATUS_LPAC_ACCESS_DENIED","features":[305]},{"name":"STATUS_LPC_HANDLE_COUNT_EXCEEDED","features":[305]},{"name":"STATUS_LPC_INVALID_CONNECTION_USAGE","features":[305]},{"name":"STATUS_LPC_RECEIVE_BUFFER_EXPECTED","features":[305]},{"name":"STATUS_LPC_REPLY_LOST","features":[305]},{"name":"STATUS_LPC_REQUESTS_NOT_ALLOWED","features":[305]},{"name":"STATUS_LUIDS_EXHAUSTED","features":[305]},{"name":"STATUS_MAGAZINE_NOT_PRESENT","features":[305]},{"name":"STATUS_MAPPED_ALIGNMENT","features":[305]},{"name":"STATUS_MAPPED_FILE_SIZE_ZERO","features":[305]},{"name":"STATUS_MARKED_TO_DISALLOW_WRITES","features":[305]},{"name":"STATUS_MARSHALL_OVERFLOW","features":[305]},{"name":"STATUS_MAX_REFERRALS_EXCEEDED","features":[305]},{"name":"STATUS_MCA_EXCEPTION","features":[305]},{"name":"STATUS_MCA_OCCURED","features":[305]},{"name":"STATUS_MEDIA_CHANGED","features":[305]},{"name":"STATUS_MEDIA_CHECK","features":[305]},{"name":"STATUS_MEDIA_WRITE_PROTECTED","features":[305]},{"name":"STATUS_MEMBERS_PRIMARY_GROUP","features":[305]},{"name":"STATUS_MEMBER_IN_ALIAS","features":[305]},{"name":"STATUS_MEMBER_IN_GROUP","features":[305]},{"name":"STATUS_MEMBER_NOT_IN_ALIAS","features":[305]},{"name":"STATUS_MEMBER_NOT_IN_GROUP","features":[305]},{"name":"STATUS_MEMORY_NOT_ALLOCATED","features":[305]},{"name":"STATUS_MESSAGE_LOST","features":[305]},{"name":"STATUS_MESSAGE_NOT_FOUND","features":[305]},{"name":"STATUS_MESSAGE_RETRIEVED","features":[305]},{"name":"STATUS_MFT_TOO_FRAGMENTED","features":[305]},{"name":"STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION","features":[305]},{"name":"STATUS_MISSING_SYSTEMFILE","features":[305]},{"name":"STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM","features":[305]},{"name":"STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK","features":[305]},{"name":"STATUS_MONITOR_INVALID_MANUFACTURE_DATE","features":[305]},{"name":"STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK","features":[305]},{"name":"STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK","features":[305]},{"name":"STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK","features":[305]},{"name":"STATUS_MONITOR_NO_DESCRIPTOR","features":[305]},{"name":"STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA","features":[305]},{"name":"STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT","features":[305]},{"name":"STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED","features":[305]},{"name":"STATUS_MORE_ENTRIES","features":[305]},{"name":"STATUS_MORE_PROCESSING_REQUIRED","features":[305]},{"name":"STATUS_MOUNT_POINT_NOT_RESOLVED","features":[305]},{"name":"STATUS_MP_PROCESSOR_MISMATCH","features":[305]},{"name":"STATUS_MUI_FILE_NOT_FOUND","features":[305]},{"name":"STATUS_MUI_FILE_NOT_LOADED","features":[305]},{"name":"STATUS_MUI_INVALID_FILE","features":[305]},{"name":"STATUS_MUI_INVALID_LOCALE_NAME","features":[305]},{"name":"STATUS_MUI_INVALID_RC_CONFIG","features":[305]},{"name":"STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME","features":[305]},{"name":"STATUS_MULTIPLE_FAULT_VIOLATION","features":[305]},{"name":"STATUS_MUST_BE_KDC","features":[305]},{"name":"STATUS_MUTANT_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_MUTANT_NOT_OWNED","features":[305]},{"name":"STATUS_MUTUAL_AUTHENTICATION_FAILED","features":[305]},{"name":"STATUS_NAME_TOO_LONG","features":[305]},{"name":"STATUS_NDIS_ADAPTER_NOT_FOUND","features":[305]},{"name":"STATUS_NDIS_ADAPTER_NOT_READY","features":[305]},{"name":"STATUS_NDIS_ADAPTER_REMOVED","features":[305]},{"name":"STATUS_NDIS_ALREADY_MAPPED","features":[305]},{"name":"STATUS_NDIS_BAD_CHARACTERISTICS","features":[305]},{"name":"STATUS_NDIS_BAD_VERSION","features":[305]},{"name":"STATUS_NDIS_BUFFER_TOO_SHORT","features":[305]},{"name":"STATUS_NDIS_CLOSING","features":[305]},{"name":"STATUS_NDIS_DEVICE_FAILED","features":[305]},{"name":"STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE","features":[305]},{"name":"STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED","features":[305]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE","features":[305]},{"name":"STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED","features":[305]},{"name":"STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED","features":[305]},{"name":"STATUS_NDIS_DOT11_MEDIA_IN_USE","features":[305]},{"name":"STATUS_NDIS_DOT11_POWER_STATE_INVALID","features":[305]},{"name":"STATUS_NDIS_ERROR_READING_FILE","features":[305]},{"name":"STATUS_NDIS_FILE_NOT_FOUND","features":[305]},{"name":"STATUS_NDIS_GROUP_ADDRESS_IN_USE","features":[305]},{"name":"STATUS_NDIS_INDICATION_REQUIRED","features":[305]},{"name":"STATUS_NDIS_INTERFACE_NOT_FOUND","features":[305]},{"name":"STATUS_NDIS_INVALID_ADDRESS","features":[305]},{"name":"STATUS_NDIS_INVALID_DATA","features":[305]},{"name":"STATUS_NDIS_INVALID_DEVICE_REQUEST","features":[305]},{"name":"STATUS_NDIS_INVALID_LENGTH","features":[305]},{"name":"STATUS_NDIS_INVALID_OID","features":[305]},{"name":"STATUS_NDIS_INVALID_PACKET","features":[305]},{"name":"STATUS_NDIS_INVALID_PORT","features":[305]},{"name":"STATUS_NDIS_INVALID_PORT_STATE","features":[305]},{"name":"STATUS_NDIS_LOW_POWER_STATE","features":[305]},{"name":"STATUS_NDIS_MEDIA_DISCONNECTED","features":[305]},{"name":"STATUS_NDIS_MULTICAST_EXISTS","features":[305]},{"name":"STATUS_NDIS_MULTICAST_FULL","features":[305]},{"name":"STATUS_NDIS_MULTICAST_NOT_FOUND","features":[305]},{"name":"STATUS_NDIS_NOT_SUPPORTED","features":[305]},{"name":"STATUS_NDIS_NO_QUEUES","features":[305]},{"name":"STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED","features":[305]},{"name":"STATUS_NDIS_OFFLOAD_PATH_REJECTED","features":[305]},{"name":"STATUS_NDIS_OFFLOAD_POLICY","features":[305]},{"name":"STATUS_NDIS_OPEN_FAILED","features":[305]},{"name":"STATUS_NDIS_PAUSED","features":[305]},{"name":"STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL","features":[305]},{"name":"STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL","features":[305]},{"name":"STATUS_NDIS_REINIT_REQUIRED","features":[305]},{"name":"STATUS_NDIS_REQUEST_ABORTED","features":[305]},{"name":"STATUS_NDIS_RESET_IN_PROGRESS","features":[305]},{"name":"STATUS_NDIS_RESOURCE_CONFLICT","features":[305]},{"name":"STATUS_NDIS_UNSUPPORTED_MEDIA","features":[305]},{"name":"STATUS_NDIS_UNSUPPORTED_REVISION","features":[305]},{"name":"STATUS_ND_QUEUE_OVERFLOW","features":[305]},{"name":"STATUS_NEEDS_REGISTRATION","features":[305]},{"name":"STATUS_NEEDS_REMEDIATION","features":[305]},{"name":"STATUS_NETLOGON_NOT_STARTED","features":[305]},{"name":"STATUS_NETWORK_ACCESS_DENIED","features":[305]},{"name":"STATUS_NETWORK_ACCESS_DENIED_EDP","features":[305]},{"name":"STATUS_NETWORK_AUTHENTICATION_PROMPT_CANCELED","features":[305]},{"name":"STATUS_NETWORK_BUSY","features":[305]},{"name":"STATUS_NETWORK_CREDENTIAL_CONFLICT","features":[305]},{"name":"STATUS_NETWORK_NAME_DELETED","features":[305]},{"name":"STATUS_NETWORK_OPEN_RESTRICTION","features":[305]},{"name":"STATUS_NETWORK_SESSION_EXPIRED","features":[305]},{"name":"STATUS_NETWORK_UNREACHABLE","features":[305]},{"name":"STATUS_NET_WRITE_FAULT","features":[305]},{"name":"STATUS_NOINTERFACE","features":[305]},{"name":"STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT","features":[305]},{"name":"STATUS_NOLOGON_SERVER_TRUST_ACCOUNT","features":[305]},{"name":"STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT","features":[305]},{"name":"STATUS_NONCONTINUABLE_EXCEPTION","features":[305]},{"name":"STATUS_NONEXISTENT_EA_ENTRY","features":[305]},{"name":"STATUS_NONEXISTENT_SECTOR","features":[305]},{"name":"STATUS_NONE_MAPPED","features":[305]},{"name":"STATUS_NOTHING_TO_TERMINATE","features":[305]},{"name":"STATUS_NOTIFICATION_GUID_ALREADY_DEFINED","features":[305]},{"name":"STATUS_NOTIFY_CLEANUP","features":[305]},{"name":"STATUS_NOTIFY_ENUM_DIR","features":[305]},{"name":"STATUS_NOT_ALLOWED_ON_SYSTEM_FILE","features":[305]},{"name":"STATUS_NOT_ALL_ASSIGNED","features":[305]},{"name":"STATUS_NOT_APPCONTAINER","features":[305]},{"name":"STATUS_NOT_A_CLOUD_FILE","features":[305]},{"name":"STATUS_NOT_A_CLOUD_SYNC_ROOT","features":[305]},{"name":"STATUS_NOT_A_DAX_VOLUME","features":[305]},{"name":"STATUS_NOT_A_DEV_VOLUME","features":[305]},{"name":"STATUS_NOT_A_DIRECTORY","features":[305]},{"name":"STATUS_NOT_A_REPARSE_POINT","features":[305]},{"name":"STATUS_NOT_A_TIERED_VOLUME","features":[305]},{"name":"STATUS_NOT_CAPABLE","features":[305]},{"name":"STATUS_NOT_CLIENT_SESSION","features":[305]},{"name":"STATUS_NOT_COMMITTED","features":[305]},{"name":"STATUS_NOT_DAX_MAPPABLE","features":[305]},{"name":"STATUS_NOT_EXPORT_FORMAT","features":[305]},{"name":"STATUS_NOT_FOUND","features":[305]},{"name":"STATUS_NOT_GUI_PROCESS","features":[305]},{"name":"STATUS_NOT_IMPLEMENTED","features":[305]},{"name":"STATUS_NOT_LOCKED","features":[305]},{"name":"STATUS_NOT_LOGON_PROCESS","features":[305]},{"name":"STATUS_NOT_MAPPED_DATA","features":[305]},{"name":"STATUS_NOT_MAPPED_VIEW","features":[305]},{"name":"STATUS_NOT_READ_FROM_COPY","features":[305]},{"name":"STATUS_NOT_REDUNDANT_STORAGE","features":[305]},{"name":"STATUS_NOT_REGISTRY_FILE","features":[305]},{"name":"STATUS_NOT_SAFE_MODE_DRIVER","features":[305]},{"name":"STATUS_NOT_SAME_DEVICE","features":[305]},{"name":"STATUS_NOT_SAME_OBJECT","features":[305]},{"name":"STATUS_NOT_SERVER_SESSION","features":[305]},{"name":"STATUS_NOT_SNAPSHOT_VOLUME","features":[305]},{"name":"STATUS_NOT_SUPPORTED","features":[305]},{"name":"STATUS_NOT_SUPPORTED_IN_APPCONTAINER","features":[305]},{"name":"STATUS_NOT_SUPPORTED_ON_DAX","features":[305]},{"name":"STATUS_NOT_SUPPORTED_ON_SBS","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_AUDITING","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_BTT","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_BYPASSIO","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_CACHED_HANDLE","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_COMPRESSION","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_DEDUPLICATION","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_ENCRYPTION","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_MONITORING","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_REPLICATION","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_SNAPSHOT","features":[305]},{"name":"STATUS_NOT_SUPPORTED_WITH_VIRTUALIZATION","features":[305]},{"name":"STATUS_NOT_TINY_STREAM","features":[305]},{"name":"STATUS_NO_ACE_CONDITION","features":[305]},{"name":"STATUS_NO_APPLICABLE_APP_LICENSES_FOUND","features":[305]},{"name":"STATUS_NO_APPLICATION_PACKAGE","features":[305]},{"name":"STATUS_NO_BROWSER_SERVERS_FOUND","features":[305]},{"name":"STATUS_NO_BYPASSIO_DRIVER_SUPPORT","features":[305]},{"name":"STATUS_NO_CALLBACK_ACTIVE","features":[305]},{"name":"STATUS_NO_DATA_DETECTED","features":[305]},{"name":"STATUS_NO_EAS_ON_FILE","features":[305]},{"name":"STATUS_NO_EFS","features":[305]},{"name":"STATUS_NO_EVENT_PAIR","features":[305]},{"name":"STATUS_NO_GUID_TRANSLATION","features":[305]},{"name":"STATUS_NO_IMPERSONATION_TOKEN","features":[305]},{"name":"STATUS_NO_INHERITANCE","features":[305]},{"name":"STATUS_NO_IP_ADDRESSES","features":[305]},{"name":"STATUS_NO_KERB_KEY","features":[305]},{"name":"STATUS_NO_KEY","features":[305]},{"name":"STATUS_NO_LDT","features":[305]},{"name":"STATUS_NO_LINK_TRACKING_IN_TRANSACTION","features":[305]},{"name":"STATUS_NO_LOGON_SERVERS","features":[305]},{"name":"STATUS_NO_LOG_SPACE","features":[305]},{"name":"STATUS_NO_MATCH","features":[305]},{"name":"STATUS_NO_MEDIA","features":[305]},{"name":"STATUS_NO_MEDIA_IN_DEVICE","features":[305]},{"name":"STATUS_NO_MEMORY","features":[305]},{"name":"STATUS_NO_MORE_EAS","features":[305]},{"name":"STATUS_NO_MORE_ENTRIES","features":[305]},{"name":"STATUS_NO_MORE_FILES","features":[305]},{"name":"STATUS_NO_MORE_MATCHES","features":[305]},{"name":"STATUS_NO_PAGEFILE","features":[305]},{"name":"STATUS_NO_PA_DATA","features":[305]},{"name":"STATUS_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND","features":[305]},{"name":"STATUS_NO_QUOTAS_FOR_ACCOUNT","features":[305]},{"name":"STATUS_NO_RANGES_PROCESSED","features":[305]},{"name":"STATUS_NO_RECOVERY_POLICY","features":[305]},{"name":"STATUS_NO_S4U_PROT_SUPPORT","features":[305]},{"name":"STATUS_NO_SAVEPOINT_WITH_OPEN_FILES","features":[305]},{"name":"STATUS_NO_SECRETS","features":[305]},{"name":"STATUS_NO_SECURITY_CONTEXT","features":[305]},{"name":"STATUS_NO_SECURITY_ON_OBJECT","features":[305]},{"name":"STATUS_NO_SPOOL_SPACE","features":[305]},{"name":"STATUS_NO_SUCH_ALIAS","features":[305]},{"name":"STATUS_NO_SUCH_DEVICE","features":[305]},{"name":"STATUS_NO_SUCH_DOMAIN","features":[305]},{"name":"STATUS_NO_SUCH_FILE","features":[305]},{"name":"STATUS_NO_SUCH_GROUP","features":[305]},{"name":"STATUS_NO_SUCH_MEMBER","features":[305]},{"name":"STATUS_NO_SUCH_PACKAGE","features":[305]},{"name":"STATUS_NO_SUCH_PRIVILEGE","features":[305]},{"name":"STATUS_NO_TGT_REPLY","features":[305]},{"name":"STATUS_NO_TOKEN","features":[305]},{"name":"STATUS_NO_TRACKING_SERVICE","features":[305]},{"name":"STATUS_NO_TRUST_LSA_SECRET","features":[305]},{"name":"STATUS_NO_TRUST_SAM_ACCOUNT","features":[305]},{"name":"STATUS_NO_TXF_METADATA","features":[305]},{"name":"STATUS_NO_UNICODE_TRANSLATION","features":[305]},{"name":"STATUS_NO_USER_KEYS","features":[305]},{"name":"STATUS_NO_USER_SESSION_KEY","features":[305]},{"name":"STATUS_NO_WORK_DONE","features":[305]},{"name":"STATUS_NO_YIELD_PERFORMED","features":[305]},{"name":"STATUS_NTLM_BLOCKED","features":[305]},{"name":"STATUS_NT_CROSS_ENCRYPTION_REQUIRED","features":[305]},{"name":"STATUS_NULL_LM_PASSWORD","features":[305]},{"name":"STATUS_OBJECTID_EXISTS","features":[305]},{"name":"STATUS_OBJECTID_NOT_FOUND","features":[305]},{"name":"STATUS_OBJECT_IS_IMMUTABLE","features":[305]},{"name":"STATUS_OBJECT_NAME_COLLISION","features":[305]},{"name":"STATUS_OBJECT_NAME_EXISTS","features":[305]},{"name":"STATUS_OBJECT_NAME_INVALID","features":[305]},{"name":"STATUS_OBJECT_NAME_NOT_FOUND","features":[305]},{"name":"STATUS_OBJECT_NOT_EXTERNALLY_BACKED","features":[305]},{"name":"STATUS_OBJECT_NO_LONGER_EXISTS","features":[305]},{"name":"STATUS_OBJECT_PATH_INVALID","features":[305]},{"name":"STATUS_OBJECT_PATH_NOT_FOUND","features":[305]},{"name":"STATUS_OBJECT_PATH_SYNTAX_BAD","features":[305]},{"name":"STATUS_OBJECT_TYPE_MISMATCH","features":[305]},{"name":"STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED","features":[305]},{"name":"STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED","features":[305]},{"name":"STATUS_ONLY_IF_CONNECTED","features":[305]},{"name":"STATUS_OPEN_FAILED","features":[305]},{"name":"STATUS_OPERATION_IN_PROGRESS","features":[305]},{"name":"STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION","features":[305]},{"name":"STATUS_OPLOCK_BREAK_IN_PROGRESS","features":[305]},{"name":"STATUS_OPLOCK_HANDLE_CLOSED","features":[305]},{"name":"STATUS_OPLOCK_NOT_GRANTED","features":[305]},{"name":"STATUS_OPLOCK_SWITCHED_TO_NEW_HANDLE","features":[305]},{"name":"STATUS_ORDINAL_NOT_FOUND","features":[305]},{"name":"STATUS_ORPHAN_NAME_EXHAUSTED","features":[305]},{"name":"STATUS_PACKAGE_NOT_AVAILABLE","features":[305]},{"name":"STATUS_PACKAGE_UPDATING","features":[305]},{"name":"STATUS_PAGEFILE_CREATE_FAILED","features":[305]},{"name":"STATUS_PAGEFILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PAGEFILE_QUOTA","features":[305]},{"name":"STATUS_PAGEFILE_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_PAGE_FAULT_COPY_ON_WRITE","features":[305]},{"name":"STATUS_PAGE_FAULT_DEMAND_ZERO","features":[305]},{"name":"STATUS_PAGE_FAULT_GUARD_PAGE","features":[305]},{"name":"STATUS_PAGE_FAULT_PAGING_FILE","features":[305]},{"name":"STATUS_PAGE_FAULT_RETRY","features":[305]},{"name":"STATUS_PAGE_FAULT_TRANSITION","features":[305]},{"name":"STATUS_PARAMETER_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_PARITY_ERROR","features":[305]},{"name":"STATUS_PARTIAL_COPY","features":[305]},{"name":"STATUS_PARTITION_FAILURE","features":[305]},{"name":"STATUS_PARTITION_TERMINATING","features":[305]},{"name":"STATUS_PASSWORD_CHANGE_REQUIRED","features":[305]},{"name":"STATUS_PASSWORD_RESTRICTION","features":[305]},{"name":"STATUS_PATCH_CONFLICT","features":[305]},{"name":"STATUS_PATCH_DEFERRED","features":[305]},{"name":"STATUS_PATCH_NOT_REGISTERED","features":[305]},{"name":"STATUS_PATH_NOT_COVERED","features":[305]},{"name":"STATUS_PCP_ATTESTATION_CHALLENGE_NOT_SET","features":[305]},{"name":"STATUS_PCP_AUTHENTICATION_FAILED","features":[305]},{"name":"STATUS_PCP_AUTHENTICATION_IGNORED","features":[305]},{"name":"STATUS_PCP_BUFFER_LENGTH_MISMATCH","features":[305]},{"name":"STATUS_PCP_BUFFER_TOO_SMALL","features":[305]},{"name":"STATUS_PCP_CLAIM_TYPE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PCP_DEVICE_NOT_FOUND","features":[305]},{"name":"STATUS_PCP_DEVICE_NOT_READY","features":[305]},{"name":"STATUS_PCP_ERROR_MASK","features":[305]},{"name":"STATUS_PCP_FLAG_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[305]},{"name":"STATUS_PCP_INTERNAL_ERROR","features":[305]},{"name":"STATUS_PCP_INVALID_HANDLE","features":[305]},{"name":"STATUS_PCP_INVALID_PARAMETER","features":[305]},{"name":"STATUS_PCP_KEY_ALREADY_FINALIZED","features":[305]},{"name":"STATUS_PCP_KEY_HANDLE_INVALIDATED","features":[305]},{"name":"STATUS_PCP_KEY_NOT_AIK","features":[305]},{"name":"STATUS_PCP_KEY_NOT_AUTHENTICATED","features":[305]},{"name":"STATUS_PCP_KEY_NOT_FINALIZED","features":[305]},{"name":"STATUS_PCP_KEY_NOT_LOADED","features":[305]},{"name":"STATUS_PCP_KEY_NOT_SIGNING_KEY","features":[305]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_INVALID","features":[305]},{"name":"STATUS_PCP_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PCP_LOCKED_OUT","features":[305]},{"name":"STATUS_PCP_NOT_PCR_BOUND","features":[305]},{"name":"STATUS_PCP_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PCP_NO_KEY_CERTIFICATION","features":[305]},{"name":"STATUS_PCP_POLICY_NOT_FOUND","features":[305]},{"name":"STATUS_PCP_PROFILE_NOT_FOUND","features":[305]},{"name":"STATUS_PCP_RAW_POLICY_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PCP_SOFT_KEY_ERROR","features":[305]},{"name":"STATUS_PCP_TICKET_MISSING","features":[305]},{"name":"STATUS_PCP_TPM_VERSION_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PCP_UNSUPPORTED_PSS_SALT","features":[305]},{"name":"STATUS_PCP_VALIDATION_FAILED","features":[305]},{"name":"STATUS_PCP_WRONG_PARENT","features":[305]},{"name":"STATUS_PENDING","features":[305]},{"name":"STATUS_PER_USER_TRUST_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_PIPE_BROKEN","features":[305]},{"name":"STATUS_PIPE_BUSY","features":[305]},{"name":"STATUS_PIPE_CLOSING","features":[305]},{"name":"STATUS_PIPE_CONNECTED","features":[305]},{"name":"STATUS_PIPE_DISCONNECTED","features":[305]},{"name":"STATUS_PIPE_EMPTY","features":[305]},{"name":"STATUS_PIPE_LISTENING","features":[305]},{"name":"STATUS_PIPE_NOT_AVAILABLE","features":[305]},{"name":"STATUS_PKINIT_CLIENT_FAILURE","features":[305]},{"name":"STATUS_PKINIT_FAILURE","features":[305]},{"name":"STATUS_PKINIT_NAME_MISMATCH","features":[305]},{"name":"STATUS_PKU2U_CERT_FAILURE","features":[305]},{"name":"STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND","features":[305]},{"name":"STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED","features":[305]},{"name":"STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED","features":[305]},{"name":"STATUS_PLATFORM_MANIFEST_INVALID","features":[305]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_ACTIVE","features":[305]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED","features":[305]},{"name":"STATUS_PLATFORM_MANIFEST_NOT_SIGNED","features":[305]},{"name":"STATUS_PLUGPLAY_NO_DEVICE","features":[305]},{"name":"STATUS_PLUGPLAY_QUERY_VETOED","features":[305]},{"name":"STATUS_PNP_BAD_MPS_TABLE","features":[305]},{"name":"STATUS_PNP_DEVICE_CONFIGURATION_PENDING","features":[305]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE","features":[305]},{"name":"STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND","features":[305]},{"name":"STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND","features":[305]},{"name":"STATUS_PNP_FUNCTION_DRIVER_REQUIRED","features":[305]},{"name":"STATUS_PNP_INVALID_ID","features":[305]},{"name":"STATUS_PNP_IRQ_TRANSLATION_FAILED","features":[305]},{"name":"STATUS_PNP_NO_COMPAT_DRIVERS","features":[305]},{"name":"STATUS_PNP_REBOOT_REQUIRED","features":[305]},{"name":"STATUS_PNP_RESTART_ENUMERATION","features":[305]},{"name":"STATUS_PNP_TRANSLATION_FAILED","features":[305]},{"name":"STATUS_POLICY_CONTROLLED_ACCOUNT","features":[305]},{"name":"STATUS_POLICY_OBJECT_NOT_FOUND","features":[305]},{"name":"STATUS_POLICY_ONLY_IN_DS","features":[305]},{"name":"STATUS_PORT_ALREADY_HAS_COMPLETION_LIST","features":[305]},{"name":"STATUS_PORT_ALREADY_SET","features":[305]},{"name":"STATUS_PORT_CLOSED","features":[305]},{"name":"STATUS_PORT_CONNECTION_REFUSED","features":[305]},{"name":"STATUS_PORT_DISCONNECTED","features":[305]},{"name":"STATUS_PORT_DO_NOT_DISTURB","features":[305]},{"name":"STATUS_PORT_MESSAGE_TOO_LONG","features":[305]},{"name":"STATUS_PORT_NOT_SET","features":[305]},{"name":"STATUS_PORT_UNREACHABLE","features":[305]},{"name":"STATUS_POSSIBLE_DEADLOCK","features":[305]},{"name":"STATUS_POWER_STATE_INVALID","features":[305]},{"name":"STATUS_PREDEFINED_HANDLE","features":[305]},{"name":"STATUS_PRENT4_MACHINE_ACCOUNT","features":[305]},{"name":"STATUS_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[305]},{"name":"STATUS_PRINT_CANCELLED","features":[305]},{"name":"STATUS_PRINT_QUEUE_FULL","features":[305]},{"name":"STATUS_PRIVILEGED_INSTRUCTION","features":[305]},{"name":"STATUS_PRIVILEGE_NOT_HELD","features":[305]},{"name":"STATUS_PROACTIVE_SCAN_IN_PROGRESS","features":[305]},{"name":"STATUS_PROCEDURE_NOT_FOUND","features":[305]},{"name":"STATUS_PROCESS_CLONED","features":[305]},{"name":"STATUS_PROCESS_IN_JOB","features":[305]},{"name":"STATUS_PROCESS_IS_PROTECTED","features":[305]},{"name":"STATUS_PROCESS_IS_TERMINATING","features":[305]},{"name":"STATUS_PROCESS_NOT_IN_JOB","features":[305]},{"name":"STATUS_PROFILING_AT_LIMIT","features":[305]},{"name":"STATUS_PROFILING_NOT_STARTED","features":[305]},{"name":"STATUS_PROFILING_NOT_STOPPED","features":[305]},{"name":"STATUS_PROPSET_NOT_FOUND","features":[305]},{"name":"STATUS_PROTOCOL_NOT_SUPPORTED","features":[305]},{"name":"STATUS_PROTOCOL_UNREACHABLE","features":[305]},{"name":"STATUS_PTE_CHANGED","features":[305]},{"name":"STATUS_PURGE_FAILED","features":[305]},{"name":"STATUS_PWD_HISTORY_CONFLICT","features":[305]},{"name":"STATUS_PWD_TOO_LONG","features":[305]},{"name":"STATUS_PWD_TOO_RECENT","features":[305]},{"name":"STATUS_PWD_TOO_SHORT","features":[305]},{"name":"STATUS_QUERY_STORAGE_ERROR","features":[305]},{"name":"STATUS_QUIC_ALPN_NEG_FAILURE","features":[305]},{"name":"STATUS_QUIC_CONNECTION_IDLE","features":[305]},{"name":"STATUS_QUIC_CONNECTION_TIMEOUT","features":[305]},{"name":"STATUS_QUIC_HANDSHAKE_FAILURE","features":[305]},{"name":"STATUS_QUIC_INTERNAL_ERROR","features":[305]},{"name":"STATUS_QUIC_PROTOCOL_VIOLATION","features":[305]},{"name":"STATUS_QUIC_USER_CANCELED","features":[305]},{"name":"STATUS_QUIC_VER_NEG_FAILURE","features":[305]},{"name":"STATUS_QUOTA_ACTIVITY","features":[305]},{"name":"STATUS_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_QUOTA_LIST_INCONSISTENT","features":[305]},{"name":"STATUS_QUOTA_NOT_ENABLED","features":[305]},{"name":"STATUS_RANGE_LIST_CONFLICT","features":[305]},{"name":"STATUS_RANGE_NOT_FOUND","features":[305]},{"name":"STATUS_RANGE_NOT_LOCKED","features":[305]},{"name":"STATUS_RDBSS_CONTINUE_OPERATION","features":[305]},{"name":"STATUS_RDBSS_POST_OPERATION","features":[305]},{"name":"STATUS_RDBSS_RESTART_OPERATION","features":[305]},{"name":"STATUS_RDBSS_RETRY_LOOKUP","features":[305]},{"name":"STATUS_RDP_PROTOCOL_ERROR","features":[305]},{"name":"STATUS_RECEIVE_EXPEDITED","features":[305]},{"name":"STATUS_RECEIVE_PARTIAL","features":[305]},{"name":"STATUS_RECEIVE_PARTIAL_EXPEDITED","features":[305]},{"name":"STATUS_RECOVERABLE_BUGCHECK","features":[305]},{"name":"STATUS_RECOVERY_FAILURE","features":[305]},{"name":"STATUS_RECOVERY_NOT_NEEDED","features":[305]},{"name":"STATUS_RECURSIVE_DISPATCH","features":[305]},{"name":"STATUS_REDIRECTOR_HAS_OPEN_HANDLES","features":[305]},{"name":"STATUS_REDIRECTOR_NOT_STARTED","features":[305]},{"name":"STATUS_REDIRECTOR_PAUSED","features":[305]},{"name":"STATUS_REDIRECTOR_STARTED","features":[305]},{"name":"STATUS_REGISTRY_CORRUPT","features":[305]},{"name":"STATUS_REGISTRY_HIVE_RECOVERED","features":[305]},{"name":"STATUS_REGISTRY_IO_FAILED","features":[305]},{"name":"STATUS_REGISTRY_QUOTA_LIMIT","features":[305]},{"name":"STATUS_REGISTRY_RECOVERED","features":[305]},{"name":"STATUS_REG_NAT_CONSUMPTION","features":[305]},{"name":"STATUS_REINITIALIZATION_NEEDED","features":[305]},{"name":"STATUS_REMOTE_DISCONNECT","features":[305]},{"name":"STATUS_REMOTE_FILE_VERSION_MISMATCH","features":[305]},{"name":"STATUS_REMOTE_NOT_LISTENING","features":[305]},{"name":"STATUS_REMOTE_RESOURCES","features":[305]},{"name":"STATUS_REMOTE_SESSION_LIMIT","features":[305]},{"name":"STATUS_REMOTE_STORAGE_MEDIA_ERROR","features":[305]},{"name":"STATUS_REMOTE_STORAGE_NOT_ACTIVE","features":[305]},{"name":"STATUS_REPAIR_NEEDED","features":[305]},{"name":"STATUS_REPARSE","features":[305]},{"name":"STATUS_REPARSE_ATTRIBUTE_CONFLICT","features":[305]},{"name":"STATUS_REPARSE_GLOBAL","features":[305]},{"name":"STATUS_REPARSE_OBJECT","features":[305]},{"name":"STATUS_REPARSE_POINT_ENCOUNTERED","features":[305]},{"name":"STATUS_REPARSE_POINT_NOT_RESOLVED","features":[305]},{"name":"STATUS_REPLY_MESSAGE_MISMATCH","features":[305]},{"name":"STATUS_REQUEST_ABORTED","features":[305]},{"name":"STATUS_REQUEST_CANCELED","features":[305]},{"name":"STATUS_REQUEST_NOT_ACCEPTED","features":[305]},{"name":"STATUS_REQUEST_OUT_OF_SEQUENCE","features":[305]},{"name":"STATUS_REQUEST_PAUSED","features":[305]},{"name":"STATUS_RESIDENT_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_RESOURCEMANAGER_NOT_FOUND","features":[305]},{"name":"STATUS_RESOURCEMANAGER_READ_ONLY","features":[305]},{"name":"STATUS_RESOURCE_DATA_NOT_FOUND","features":[305]},{"name":"STATUS_RESOURCE_ENUM_USER_STOP","features":[305]},{"name":"STATUS_RESOURCE_IN_USE","features":[305]},{"name":"STATUS_RESOURCE_LANG_NOT_FOUND","features":[305]},{"name":"STATUS_RESOURCE_NAME_NOT_FOUND","features":[305]},{"name":"STATUS_RESOURCE_NOT_OWNED","features":[305]},{"name":"STATUS_RESOURCE_REQUIREMENTS_CHANGED","features":[305]},{"name":"STATUS_RESOURCE_TYPE_NOT_FOUND","features":[305]},{"name":"STATUS_RESTART_BOOT_APPLICATION","features":[305]},{"name":"STATUS_RESUME_HIBERNATION","features":[305]},{"name":"STATUS_RETRY","features":[305]},{"name":"STATUS_RETURN_ADDRESS_HIJACK_ATTEMPT","features":[305]},{"name":"STATUS_REVISION_MISMATCH","features":[305]},{"name":"STATUS_REVOCATION_OFFLINE_C","features":[305]},{"name":"STATUS_REVOCATION_OFFLINE_KDC","features":[305]},{"name":"STATUS_RING_NEWLY_EMPTY","features":[305]},{"name":"STATUS_RING_PREVIOUSLY_ABOVE_QUOTA","features":[305]},{"name":"STATUS_RING_PREVIOUSLY_EMPTY","features":[305]},{"name":"STATUS_RING_PREVIOUSLY_FULL","features":[305]},{"name":"STATUS_RING_SIGNAL_OPPOSITE_ENDPOINT","features":[305]},{"name":"STATUS_RKF_ACTIVE_KEY","features":[305]},{"name":"STATUS_RKF_BLOB_FULL","features":[305]},{"name":"STATUS_RKF_DUPLICATE_KEY","features":[305]},{"name":"STATUS_RKF_FILE_BLOCKED","features":[305]},{"name":"STATUS_RKF_KEY_NOT_FOUND","features":[305]},{"name":"STATUS_RKF_STORE_FULL","features":[305]},{"name":"STATUS_RM_ALREADY_STARTED","features":[305]},{"name":"STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT","features":[305]},{"name":"STATUS_RM_DISCONNECTED","features":[305]},{"name":"STATUS_RM_METADATA_CORRUPT","features":[305]},{"name":"STATUS_RM_NOT_ACTIVE","features":[305]},{"name":"STATUS_ROLLBACK_TIMER_EXPIRED","features":[305]},{"name":"STATUS_RTPM_CONTEXT_COMPLETE","features":[305]},{"name":"STATUS_RTPM_CONTEXT_CONTINUE","features":[305]},{"name":"STATUS_RTPM_INVALID_CONTEXT","features":[305]},{"name":"STATUS_RTPM_NO_RESULT","features":[305]},{"name":"STATUS_RTPM_PCR_READ_INCOMPLETE","features":[305]},{"name":"STATUS_RTPM_UNSUPPORTED_CMD","features":[305]},{"name":"STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT","features":[305]},{"name":"STATUS_RUNLEVEL_SWITCH_IN_PROGRESS","features":[305]},{"name":"STATUS_RUNLEVEL_SWITCH_TIMEOUT","features":[305]},{"name":"STATUS_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED","features":[305]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET","features":[305]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE","features":[305]},{"name":"STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER","features":[305]},{"name":"STATUS_RXACT_COMMITTED","features":[305]},{"name":"STATUS_RXACT_COMMIT_FAILURE","features":[305]},{"name":"STATUS_RXACT_COMMIT_NECESSARY","features":[305]},{"name":"STATUS_RXACT_INVALID_STATE","features":[305]},{"name":"STATUS_RXACT_STATE_CREATED","features":[305]},{"name":"STATUS_SAM_INIT_FAILURE","features":[305]},{"name":"STATUS_SAM_NEED_BOOTKEY_FLOPPY","features":[305]},{"name":"STATUS_SAM_NEED_BOOTKEY_PASSWORD","features":[305]},{"name":"STATUS_SCRUB_DATA_DISABLED","features":[305]},{"name":"STATUS_SECCORE_INVALID_COMMAND","features":[305]},{"name":"STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED","features":[305]},{"name":"STATUS_SECRET_TOO_LONG","features":[305]},{"name":"STATUS_SECTION_DIRECT_MAP_ONLY","features":[305]},{"name":"STATUS_SECTION_NOT_EXTENDED","features":[305]},{"name":"STATUS_SECTION_NOT_IMAGE","features":[305]},{"name":"STATUS_SECTION_PROTECTION","features":[305]},{"name":"STATUS_SECTION_TOO_BIG","features":[305]},{"name":"STATUS_SECUREBOOT_FILE_REPLACED","features":[305]},{"name":"STATUS_SECUREBOOT_INVALID_POLICY","features":[305]},{"name":"STATUS_SECUREBOOT_NOT_BASE_POLICY","features":[305]},{"name":"STATUS_SECUREBOOT_NOT_ENABLED","features":[305]},{"name":"STATUS_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY","features":[305]},{"name":"STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_NOT_SIGNED","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_UNKNOWN","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH","features":[305]},{"name":"STATUS_SECUREBOOT_POLICY_VIOLATION","features":[305]},{"name":"STATUS_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING","features":[305]},{"name":"STATUS_SECUREBOOT_ROLLBACK_DETECTED","features":[305]},{"name":"STATUS_SECURITY_STREAM_IS_INCONSISTENT","features":[305]},{"name":"STATUS_SEGMENT_NOTIFICATION","features":[305]},{"name":"STATUS_SEMAPHORE_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_SERIAL_COUNTER_TIMEOUT","features":[305]},{"name":"STATUS_SERIAL_MORE_WRITES","features":[305]},{"name":"STATUS_SERIAL_NO_DEVICE_INITED","features":[305]},{"name":"STATUS_SERVER_DISABLED","features":[305]},{"name":"STATUS_SERVER_HAS_OPEN_HANDLES","features":[305]},{"name":"STATUS_SERVER_NOT_DISABLED","features":[305]},{"name":"STATUS_SERVER_SHUTDOWN_IN_PROGRESS","features":[305]},{"name":"STATUS_SERVER_SID_MISMATCH","features":[305]},{"name":"STATUS_SERVER_TRANSPORT_CONFLICT","features":[305]},{"name":"STATUS_SERVER_UNAVAILABLE","features":[305]},{"name":"STATUS_SERVICES_FAILED_AUTOSTART","features":[305]},{"name":"STATUS_SERVICE_NOTIFICATION","features":[305]},{"name":"STATUS_SESSION_KEY_TOO_SHORT","features":[305]},{"name":"STATUS_SETMARK_DETECTED","features":[305]},{"name":"STATUS_SET_CONTEXT_DENIED","features":[305]},{"name":"STATUS_SEVERITY_COERROR","features":[305]},{"name":"STATUS_SEVERITY_COFAIL","features":[305]},{"name":"STATUS_SEVERITY_ERROR","features":[305]},{"name":"STATUS_SEVERITY_INFORMATIONAL","features":[305]},{"name":"STATUS_SEVERITY_SUCCESS","features":[305]},{"name":"STATUS_SEVERITY_WARNING","features":[305]},{"name":"STATUS_SHARED_IRQ_BUSY","features":[305]},{"name":"STATUS_SHARED_POLICY","features":[305]},{"name":"STATUS_SHARE_UNAVAILABLE","features":[305]},{"name":"STATUS_SHARING_PAUSED","features":[305]},{"name":"STATUS_SHARING_VIOLATION","features":[305]},{"name":"STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME","features":[305]},{"name":"STATUS_SHUTDOWN_IN_PROGRESS","features":[305]},{"name":"STATUS_SINGLE_STEP","features":[305]},{"name":"STATUS_SMARTCARD_CARD_BLOCKED","features":[305]},{"name":"STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED","features":[305]},{"name":"STATUS_SMARTCARD_CERT_EXPIRED","features":[305]},{"name":"STATUS_SMARTCARD_CERT_REVOKED","features":[305]},{"name":"STATUS_SMARTCARD_IO_ERROR","features":[305]},{"name":"STATUS_SMARTCARD_LOGON_REQUIRED","features":[305]},{"name":"STATUS_SMARTCARD_NO_CARD","features":[305]},{"name":"STATUS_SMARTCARD_NO_CERTIFICATE","features":[305]},{"name":"STATUS_SMARTCARD_NO_KEYSET","features":[305]},{"name":"STATUS_SMARTCARD_NO_KEY_CONTAINER","features":[305]},{"name":"STATUS_SMARTCARD_SILENT_CONTEXT","features":[305]},{"name":"STATUS_SMARTCARD_SUBSYSTEM_FAILURE","features":[305]},{"name":"STATUS_SMARTCARD_WRONG_PIN","features":[305]},{"name":"STATUS_SMB1_NOT_AVAILABLE","features":[305]},{"name":"STATUS_SMB_BAD_CLUSTER_DIALECT","features":[305]},{"name":"STATUS_SMB_GUEST_LOGON_BLOCKED","features":[305]},{"name":"STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP","features":[305]},{"name":"STATUS_SMB_NO_SIGNING_ALGORITHM_OVERLAP","features":[305]},{"name":"STATUS_SMI_PRIMITIVE_INSTALLER_FAILED","features":[305]},{"name":"STATUS_SMR_GARBAGE_COLLECTION_REQUIRED","features":[305]},{"name":"STATUS_SOME_NOT_MAPPED","features":[305]},{"name":"STATUS_SOURCE_ELEMENT_EMPTY","features":[305]},{"name":"STATUS_SPACES_ALLOCATION_SIZE_INVALID","features":[305]},{"name":"STATUS_SPACES_CACHE_FULL","features":[305]},{"name":"STATUS_SPACES_COMPLETE","features":[305]},{"name":"STATUS_SPACES_CORRUPT_METADATA","features":[305]},{"name":"STATUS_SPACES_DRIVE_LOST_DATA","features":[305]},{"name":"STATUS_SPACES_DRIVE_NOT_READY","features":[305]},{"name":"STATUS_SPACES_DRIVE_OPERATIONAL_STATE_INVALID","features":[305]},{"name":"STATUS_SPACES_DRIVE_REDUNDANCY_INVALID","features":[305]},{"name":"STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID","features":[305]},{"name":"STATUS_SPACES_DRIVE_SPLIT","features":[305]},{"name":"STATUS_SPACES_DRT_FULL","features":[305]},{"name":"STATUS_SPACES_ENCLOSURE_AWARE_INVALID","features":[305]},{"name":"STATUS_SPACES_ENTRY_INCOMPLETE","features":[305]},{"name":"STATUS_SPACES_ENTRY_INVALID","features":[305]},{"name":"STATUS_SPACES_EXTENDED_ERROR","features":[305]},{"name":"STATUS_SPACES_FAULT_DOMAIN_TYPE_INVALID","features":[305]},{"name":"STATUS_SPACES_FLUSH_METADATA","features":[305]},{"name":"STATUS_SPACES_INCONSISTENCY","features":[305]},{"name":"STATUS_SPACES_INTERLEAVE_LENGTH_INVALID","features":[305]},{"name":"STATUS_SPACES_LOG_NOT_READY","features":[305]},{"name":"STATUS_SPACES_MAP_REQUIRED","features":[305]},{"name":"STATUS_SPACES_MARK_DIRTY","features":[305]},{"name":"STATUS_SPACES_NOT_ENOUGH_DRIVES","features":[305]},{"name":"STATUS_SPACES_NO_REDUNDANCY","features":[305]},{"name":"STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID","features":[305]},{"name":"STATUS_SPACES_NUMBER_OF_DATA_COPIES_INVALID","features":[305]},{"name":"STATUS_SPACES_NUMBER_OF_GROUPS_INVALID","features":[305]},{"name":"STATUS_SPACES_PAUSE","features":[305]},{"name":"STATUS_SPACES_PD_INVALID_DATA","features":[305]},{"name":"STATUS_SPACES_PD_LENGTH_MISMATCH","features":[305]},{"name":"STATUS_SPACES_PD_NOT_FOUND","features":[305]},{"name":"STATUS_SPACES_PD_UNSUPPORTED_VERSION","features":[305]},{"name":"STATUS_SPACES_PROVISIONING_TYPE_INVALID","features":[305]},{"name":"STATUS_SPACES_REDIRECT","features":[305]},{"name":"STATUS_SPACES_REPAIRED","features":[305]},{"name":"STATUS_SPACES_REPAIR_IN_PROGRESS","features":[305]},{"name":"STATUS_SPACES_RESILIENCY_TYPE_INVALID","features":[305]},{"name":"STATUS_SPACES_UNSUPPORTED_VERSION","features":[305]},{"name":"STATUS_SPACES_UPDATE_COLUMN_STATE","features":[305]},{"name":"STATUS_SPACES_WRITE_CACHE_SIZE_INVALID","features":[305]},{"name":"STATUS_SPARSE_FILE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION","features":[305]},{"name":"STATUS_SPECIAL_ACCOUNT","features":[305]},{"name":"STATUS_SPECIAL_GROUP","features":[305]},{"name":"STATUS_SPECIAL_USER","features":[305]},{"name":"STATUS_STACK_BUFFER_OVERRUN","features":[305]},{"name":"STATUS_STACK_OVERFLOW","features":[305]},{"name":"STATUS_STACK_OVERFLOW_READ","features":[305]},{"name":"STATUS_STOPPED_ON_SYMLINK","features":[305]},{"name":"STATUS_STORAGE_LOST_DATA_PERSISTENCE","features":[305]},{"name":"STATUS_STORAGE_RESERVE_ALREADY_EXISTS","features":[305]},{"name":"STATUS_STORAGE_RESERVE_DOES_NOT_EXIST","features":[305]},{"name":"STATUS_STORAGE_RESERVE_ID_INVALID","features":[305]},{"name":"STATUS_STORAGE_RESERVE_NOT_EMPTY","features":[305]},{"name":"STATUS_STORAGE_STACK_ACCESS_DENIED","features":[305]},{"name":"STATUS_STORAGE_TOPOLOGY_ID_MISMATCH","features":[305]},{"name":"STATUS_STOWED_EXCEPTION","features":[305]},{"name":"STATUS_STREAM_MINIVERSION_NOT_FOUND","features":[305]},{"name":"STATUS_STREAM_MINIVERSION_NOT_VALID","features":[305]},{"name":"STATUS_STRICT_CFG_VIOLATION","features":[305]},{"name":"STATUS_STRONG_CRYPTO_NOT_SUPPORTED","features":[305]},{"name":"STATUS_SUCCESS","features":[305]},{"name":"STATUS_SUSPEND_COUNT_EXCEEDED","features":[305]},{"name":"STATUS_SVHDX_ERROR_NOT_AVAILABLE","features":[305]},{"name":"STATUS_SVHDX_ERROR_STORED","features":[305]},{"name":"STATUS_SVHDX_NO_INITIATOR","features":[305]},{"name":"STATUS_SVHDX_RESERVATION_CONFLICT","features":[305]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE","features":[305]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED","features":[305]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED","features":[305]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED","features":[305]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED","features":[305]},{"name":"STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED","features":[305]},{"name":"STATUS_SVHDX_VERSION_MISMATCH","features":[305]},{"name":"STATUS_SVHDX_WRONG_FILE_TYPE","features":[305]},{"name":"STATUS_SXS_ACTIVATION_CONTEXT_DISABLED","features":[305]},{"name":"STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT","features":[305]},{"name":"STATUS_SXS_ASSEMBLY_MISSING","features":[305]},{"name":"STATUS_SXS_ASSEMBLY_NOT_FOUND","features":[305]},{"name":"STATUS_SXS_CANT_GEN_ACTCTX","features":[305]},{"name":"STATUS_SXS_COMPONENT_STORE_CORRUPT","features":[305]},{"name":"STATUS_SXS_CORRUPTION","features":[305]},{"name":"STATUS_SXS_CORRUPT_ACTIVATION_STACK","features":[305]},{"name":"STATUS_SXS_EARLY_DEACTIVATION","features":[305]},{"name":"STATUS_SXS_FILE_HASH_MISMATCH","features":[305]},{"name":"STATUS_SXS_FILE_HASH_MISSING","features":[305]},{"name":"STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY","features":[305]},{"name":"STATUS_SXS_IDENTITIES_DIFFERENT","features":[305]},{"name":"STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE","features":[305]},{"name":"STATUS_SXS_IDENTITY_PARSE_ERROR","features":[305]},{"name":"STATUS_SXS_INVALID_ACTCTXDATA_FORMAT","features":[305]},{"name":"STATUS_SXS_INVALID_DEACTIVATION","features":[305]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME","features":[305]},{"name":"STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE","features":[305]},{"name":"STATUS_SXS_KEY_NOT_FOUND","features":[305]},{"name":"STATUS_SXS_MANIFEST_FORMAT_ERROR","features":[305]},{"name":"STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT","features":[305]},{"name":"STATUS_SXS_MANIFEST_PARSE_ERROR","features":[305]},{"name":"STATUS_SXS_MANIFEST_TOO_BIG","features":[305]},{"name":"STATUS_SXS_MULTIPLE_DEACTIVATION","features":[305]},{"name":"STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET","features":[305]},{"name":"STATUS_SXS_PROCESS_TERMINATION_REQUESTED","features":[305]},{"name":"STATUS_SXS_RELEASE_ACTIVATION_CONTEXT","features":[305]},{"name":"STATUS_SXS_SECTION_NOT_FOUND","features":[305]},{"name":"STATUS_SXS_SETTING_NOT_REGISTERED","features":[305]},{"name":"STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY","features":[305]},{"name":"STATUS_SXS_THREAD_QUERIES_DISABLED","features":[305]},{"name":"STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE","features":[305]},{"name":"STATUS_SXS_VERSION_CONFLICT","features":[305]},{"name":"STATUS_SXS_WRONG_SECTION_TYPE","features":[305]},{"name":"STATUS_SYMLINK_CLASS_DISABLED","features":[305]},{"name":"STATUS_SYNCHRONIZATION_REQUIRED","features":[305]},{"name":"STATUS_SYSTEM_DEVICE_NOT_FOUND","features":[305]},{"name":"STATUS_SYSTEM_HIVE_TOO_LARGE","features":[305]},{"name":"STATUS_SYSTEM_IMAGE_BAD_SIGNATURE","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_INVALID_POLICY","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_POLICY_VIOLATION","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_DANGEROUS_EXT","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_EXPLICIT_DENY_FILE","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_MALICIOUS","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_OFFLINE","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_PUA","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNATTAINABLE","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_REPUTATION_UNFRIENDLY_FILE","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_ROLLBACK_DETECTED","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_SUPPLEMENTAL_POLICY_NOT_AUTHORIZED","features":[305]},{"name":"STATUS_SYSTEM_INTEGRITY_TOO_MANY_POLICIES","features":[305]},{"name":"STATUS_SYSTEM_NEEDS_REMEDIATION","features":[305]},{"name":"STATUS_SYSTEM_POWERSTATE_COMPLEX_TRANSITION","features":[305]},{"name":"STATUS_SYSTEM_POWERSTATE_TRANSITION","features":[305]},{"name":"STATUS_SYSTEM_PROCESS_TERMINATED","features":[305]},{"name":"STATUS_SYSTEM_SHUTDOWN","features":[305]},{"name":"STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED","features":[305]},{"name":"STATUS_THREADPOOL_HANDLE_EXCEPTION","features":[305]},{"name":"STATUS_THREADPOOL_RELEASED_DURING_OPERATION","features":[305]},{"name":"STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED","features":[305]},{"name":"STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED","features":[305]},{"name":"STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED","features":[305]},{"name":"STATUS_THREAD_ALREADY_IN_SESSION","features":[305]},{"name":"STATUS_THREAD_ALREADY_IN_TASK","features":[305]},{"name":"STATUS_THREAD_IS_TERMINATING","features":[305]},{"name":"STATUS_THREAD_NOT_IN_PROCESS","features":[305]},{"name":"STATUS_THREAD_NOT_IN_SESSION","features":[305]},{"name":"STATUS_THREAD_NOT_RUNNING","features":[305]},{"name":"STATUS_THREAD_WAS_SUSPENDED","features":[305]},{"name":"STATUS_TIMEOUT","features":[305]},{"name":"STATUS_TIMER_NOT_CANCELED","features":[305]},{"name":"STATUS_TIMER_RESOLUTION_NOT_SET","features":[305]},{"name":"STATUS_TIMER_RESUME_IGNORED","features":[305]},{"name":"STATUS_TIME_DIFFERENCE_AT_DC","features":[305]},{"name":"STATUS_TM_IDENTITY_MISMATCH","features":[305]},{"name":"STATUS_TM_INITIALIZATION_FAILED","features":[305]},{"name":"STATUS_TM_VOLATILE","features":[305]},{"name":"STATUS_TOKEN_ALREADY_IN_USE","features":[305]},{"name":"STATUS_TOO_LATE","features":[305]},{"name":"STATUS_TOO_MANY_ADDRESSES","features":[305]},{"name":"STATUS_TOO_MANY_COMMANDS","features":[305]},{"name":"STATUS_TOO_MANY_CONTEXT_IDS","features":[305]},{"name":"STATUS_TOO_MANY_GUIDS_REQUESTED","features":[305]},{"name":"STATUS_TOO_MANY_LINKS","features":[305]},{"name":"STATUS_TOO_MANY_LUIDS_REQUESTED","features":[305]},{"name":"STATUS_TOO_MANY_NAMES","features":[305]},{"name":"STATUS_TOO_MANY_NODES","features":[305]},{"name":"STATUS_TOO_MANY_OPENED_FILES","features":[305]},{"name":"STATUS_TOO_MANY_PAGING_FILES","features":[305]},{"name":"STATUS_TOO_MANY_PRINCIPALS","features":[305]},{"name":"STATUS_TOO_MANY_SECRETS","features":[305]},{"name":"STATUS_TOO_MANY_SEGMENT_DESCRIPTORS","features":[305]},{"name":"STATUS_TOO_MANY_SESSIONS","features":[305]},{"name":"STATUS_TOO_MANY_SIDS","features":[305]},{"name":"STATUS_TOO_MANY_THREADS","features":[305]},{"name":"STATUS_TPM_20_E_ASYMMETRIC","features":[305]},{"name":"STATUS_TPM_20_E_ATTRIBUTES","features":[305]},{"name":"STATUS_TPM_20_E_AUTHSIZE","features":[305]},{"name":"STATUS_TPM_20_E_AUTH_CONTEXT","features":[305]},{"name":"STATUS_TPM_20_E_AUTH_FAIL","features":[305]},{"name":"STATUS_TPM_20_E_AUTH_MISSING","features":[305]},{"name":"STATUS_TPM_20_E_AUTH_TYPE","features":[305]},{"name":"STATUS_TPM_20_E_AUTH_UNAVAILABLE","features":[305]},{"name":"STATUS_TPM_20_E_BAD_AUTH","features":[305]},{"name":"STATUS_TPM_20_E_BAD_CONTEXT","features":[305]},{"name":"STATUS_TPM_20_E_BINDING","features":[305]},{"name":"STATUS_TPM_20_E_COMMAND_CODE","features":[305]},{"name":"STATUS_TPM_20_E_COMMAND_SIZE","features":[305]},{"name":"STATUS_TPM_20_E_CPHASH","features":[305]},{"name":"STATUS_TPM_20_E_CURVE","features":[305]},{"name":"STATUS_TPM_20_E_DISABLED","features":[305]},{"name":"STATUS_TPM_20_E_ECC_CURVE","features":[305]},{"name":"STATUS_TPM_20_E_ECC_POINT","features":[305]},{"name":"STATUS_TPM_20_E_EXCLUSIVE","features":[305]},{"name":"STATUS_TPM_20_E_EXPIRED","features":[305]},{"name":"STATUS_TPM_20_E_FAILURE","features":[305]},{"name":"STATUS_TPM_20_E_HANDLE","features":[305]},{"name":"STATUS_TPM_20_E_HASH","features":[305]},{"name":"STATUS_TPM_20_E_HIERARCHY","features":[305]},{"name":"STATUS_TPM_20_E_HMAC","features":[305]},{"name":"STATUS_TPM_20_E_INITIALIZE","features":[305]},{"name":"STATUS_TPM_20_E_INSUFFICIENT","features":[305]},{"name":"STATUS_TPM_20_E_INTEGRITY","features":[305]},{"name":"STATUS_TPM_20_E_KDF","features":[305]},{"name":"STATUS_TPM_20_E_KEY","features":[305]},{"name":"STATUS_TPM_20_E_KEY_SIZE","features":[305]},{"name":"STATUS_TPM_20_E_MGF","features":[305]},{"name":"STATUS_TPM_20_E_MODE","features":[305]},{"name":"STATUS_TPM_20_E_NEEDS_TEST","features":[305]},{"name":"STATUS_TPM_20_E_NONCE","features":[305]},{"name":"STATUS_TPM_20_E_NO_RESULT","features":[305]},{"name":"STATUS_TPM_20_E_NV_AUTHORIZATION","features":[305]},{"name":"STATUS_TPM_20_E_NV_DEFINED","features":[305]},{"name":"STATUS_TPM_20_E_NV_LOCKED","features":[305]},{"name":"STATUS_TPM_20_E_NV_RANGE","features":[305]},{"name":"STATUS_TPM_20_E_NV_SIZE","features":[305]},{"name":"STATUS_TPM_20_E_NV_SPACE","features":[305]},{"name":"STATUS_TPM_20_E_NV_UNINITIALIZED","features":[305]},{"name":"STATUS_TPM_20_E_PARENT","features":[305]},{"name":"STATUS_TPM_20_E_PCR","features":[305]},{"name":"STATUS_TPM_20_E_PCR_CHANGED","features":[305]},{"name":"STATUS_TPM_20_E_POLICY","features":[305]},{"name":"STATUS_TPM_20_E_POLICY_CC","features":[305]},{"name":"STATUS_TPM_20_E_POLICY_FAIL","features":[305]},{"name":"STATUS_TPM_20_E_PP","features":[305]},{"name":"STATUS_TPM_20_E_PRIVATE","features":[305]},{"name":"STATUS_TPM_20_E_RANGE","features":[305]},{"name":"STATUS_TPM_20_E_REBOOT","features":[305]},{"name":"STATUS_TPM_20_E_RESERVED_BITS","features":[305]},{"name":"STATUS_TPM_20_E_SCHEME","features":[305]},{"name":"STATUS_TPM_20_E_SELECTOR","features":[305]},{"name":"STATUS_TPM_20_E_SENSITIVE","features":[305]},{"name":"STATUS_TPM_20_E_SEQUENCE","features":[305]},{"name":"STATUS_TPM_20_E_SIGNATURE","features":[305]},{"name":"STATUS_TPM_20_E_SIZE","features":[305]},{"name":"STATUS_TPM_20_E_SYMMETRIC","features":[305]},{"name":"STATUS_TPM_20_E_TAG","features":[305]},{"name":"STATUS_TPM_20_E_TICKET","features":[305]},{"name":"STATUS_TPM_20_E_TOO_MANY_CONTEXTS","features":[305]},{"name":"STATUS_TPM_20_E_TYPE","features":[305]},{"name":"STATUS_TPM_20_E_UNBALANCED","features":[305]},{"name":"STATUS_TPM_20_E_UPGRADE","features":[305]},{"name":"STATUS_TPM_20_E_VALUE","features":[305]},{"name":"STATUS_TPM_ACCESS_DENIED","features":[305]},{"name":"STATUS_TPM_AREA_LOCKED","features":[305]},{"name":"STATUS_TPM_AUDITFAILURE","features":[305]},{"name":"STATUS_TPM_AUDITFAIL_SUCCESSFUL","features":[305]},{"name":"STATUS_TPM_AUDITFAIL_UNSUCCESSFUL","features":[305]},{"name":"STATUS_TPM_AUTH2FAIL","features":[305]},{"name":"STATUS_TPM_AUTHFAIL","features":[305]},{"name":"STATUS_TPM_AUTH_CONFLICT","features":[305]},{"name":"STATUS_TPM_BADCONTEXT","features":[305]},{"name":"STATUS_TPM_BADINDEX","features":[305]},{"name":"STATUS_TPM_BADTAG","features":[305]},{"name":"STATUS_TPM_BAD_ATTRIBUTES","features":[305]},{"name":"STATUS_TPM_BAD_COUNTER","features":[305]},{"name":"STATUS_TPM_BAD_DATASIZE","features":[305]},{"name":"STATUS_TPM_BAD_DELEGATE","features":[305]},{"name":"STATUS_TPM_BAD_HANDLE","features":[305]},{"name":"STATUS_TPM_BAD_KEY_PROPERTY","features":[305]},{"name":"STATUS_TPM_BAD_LOCALITY","features":[305]},{"name":"STATUS_TPM_BAD_MIGRATION","features":[305]},{"name":"STATUS_TPM_BAD_MODE","features":[305]},{"name":"STATUS_TPM_BAD_ORDINAL","features":[305]},{"name":"STATUS_TPM_BAD_PARAMETER","features":[305]},{"name":"STATUS_TPM_BAD_PARAM_SIZE","features":[305]},{"name":"STATUS_TPM_BAD_PRESENCE","features":[305]},{"name":"STATUS_TPM_BAD_SCHEME","features":[305]},{"name":"STATUS_TPM_BAD_SIGNATURE","features":[305]},{"name":"STATUS_TPM_BAD_TYPE","features":[305]},{"name":"STATUS_TPM_BAD_VERSION","features":[305]},{"name":"STATUS_TPM_CLEAR_DISABLED","features":[305]},{"name":"STATUS_TPM_COMMAND_BLOCKED","features":[305]},{"name":"STATUS_TPM_COMMAND_CANCELED","features":[305]},{"name":"STATUS_TPM_CONTEXT_GAP","features":[305]},{"name":"STATUS_TPM_DAA_INPUT_DATA0","features":[305]},{"name":"STATUS_TPM_DAA_INPUT_DATA1","features":[305]},{"name":"STATUS_TPM_DAA_ISSUER_SETTINGS","features":[305]},{"name":"STATUS_TPM_DAA_ISSUER_VALIDITY","features":[305]},{"name":"STATUS_TPM_DAA_RESOURCES","features":[305]},{"name":"STATUS_TPM_DAA_STAGE","features":[305]},{"name":"STATUS_TPM_DAA_TPM_SETTINGS","features":[305]},{"name":"STATUS_TPM_DAA_WRONG_W","features":[305]},{"name":"STATUS_TPM_DEACTIVATED","features":[305]},{"name":"STATUS_TPM_DECRYPT_ERROR","features":[305]},{"name":"STATUS_TPM_DEFEND_LOCK_RUNNING","features":[305]},{"name":"STATUS_TPM_DELEGATE_ADMIN","features":[305]},{"name":"STATUS_TPM_DELEGATE_FAMILY","features":[305]},{"name":"STATUS_TPM_DELEGATE_LOCK","features":[305]},{"name":"STATUS_TPM_DISABLED","features":[305]},{"name":"STATUS_TPM_DISABLED_CMD","features":[305]},{"name":"STATUS_TPM_DOING_SELFTEST","features":[305]},{"name":"STATUS_TPM_DUPLICATE_VHANDLE","features":[305]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_BLOCKED","features":[305]},{"name":"STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED","features":[305]},{"name":"STATUS_TPM_ENCRYPT_ERROR","features":[305]},{"name":"STATUS_TPM_ERROR_MASK","features":[305]},{"name":"STATUS_TPM_FAIL","features":[305]},{"name":"STATUS_TPM_FAILEDSELFTEST","features":[305]},{"name":"STATUS_TPM_FAMILYCOUNT","features":[305]},{"name":"STATUS_TPM_INAPPROPRIATE_ENC","features":[305]},{"name":"STATUS_TPM_INAPPROPRIATE_SIG","features":[305]},{"name":"STATUS_TPM_INSTALL_DISABLED","features":[305]},{"name":"STATUS_TPM_INSUFFICIENT_BUFFER","features":[305]},{"name":"STATUS_TPM_INVALID_AUTHHANDLE","features":[305]},{"name":"STATUS_TPM_INVALID_FAMILY","features":[305]},{"name":"STATUS_TPM_INVALID_HANDLE","features":[305]},{"name":"STATUS_TPM_INVALID_KEYHANDLE","features":[305]},{"name":"STATUS_TPM_INVALID_KEYUSAGE","features":[305]},{"name":"STATUS_TPM_INVALID_PCR_INFO","features":[305]},{"name":"STATUS_TPM_INVALID_POSTINIT","features":[305]},{"name":"STATUS_TPM_INVALID_RESOURCE","features":[305]},{"name":"STATUS_TPM_INVALID_STRUCTURE","features":[305]},{"name":"STATUS_TPM_IOERROR","features":[305]},{"name":"STATUS_TPM_KEYNOTFOUND","features":[305]},{"name":"STATUS_TPM_KEY_NOTSUPPORTED","features":[305]},{"name":"STATUS_TPM_KEY_OWNER_CONTROL","features":[305]},{"name":"STATUS_TPM_MAXNVWRITES","features":[305]},{"name":"STATUS_TPM_MA_AUTHORITY","features":[305]},{"name":"STATUS_TPM_MA_DESTINATION","features":[305]},{"name":"STATUS_TPM_MA_SOURCE","features":[305]},{"name":"STATUS_TPM_MA_TICKET_SIGNATURE","features":[305]},{"name":"STATUS_TPM_MIGRATEFAIL","features":[305]},{"name":"STATUS_TPM_NEEDS_SELFTEST","features":[305]},{"name":"STATUS_TPM_NOCONTEXTSPACE","features":[305]},{"name":"STATUS_TPM_NOOPERATOR","features":[305]},{"name":"STATUS_TPM_NOSPACE","features":[305]},{"name":"STATUS_TPM_NOSRK","features":[305]},{"name":"STATUS_TPM_NOTFIPS","features":[305]},{"name":"STATUS_TPM_NOTLOCAL","features":[305]},{"name":"STATUS_TPM_NOTRESETABLE","features":[305]},{"name":"STATUS_TPM_NOTSEALED_BLOB","features":[305]},{"name":"STATUS_TPM_NOT_FOUND","features":[305]},{"name":"STATUS_TPM_NOT_FULLWRITE","features":[305]},{"name":"STATUS_TPM_NO_ENDORSEMENT","features":[305]},{"name":"STATUS_TPM_NO_NV_PERMISSION","features":[305]},{"name":"STATUS_TPM_NO_WRAP_TRANSPORT","features":[305]},{"name":"STATUS_TPM_OWNER_CONTROL","features":[305]},{"name":"STATUS_TPM_OWNER_SET","features":[305]},{"name":"STATUS_TPM_PERMANENTEK","features":[305]},{"name":"STATUS_TPM_PER_NOWRITE","features":[305]},{"name":"STATUS_TPM_PPI_FUNCTION_UNSUPPORTED","features":[305]},{"name":"STATUS_TPM_READ_ONLY","features":[305]},{"name":"STATUS_TPM_REQUIRES_SIGN","features":[305]},{"name":"STATUS_TPM_RESOURCEMISSING","features":[305]},{"name":"STATUS_TPM_RESOURCES","features":[305]},{"name":"STATUS_TPM_RETRY","features":[305]},{"name":"STATUS_TPM_SHA_ERROR","features":[305]},{"name":"STATUS_TPM_SHA_THREAD","features":[305]},{"name":"STATUS_TPM_SHORTRANDOM","features":[305]},{"name":"STATUS_TPM_SIZE","features":[305]},{"name":"STATUS_TPM_TOOMANYCONTEXTS","features":[305]},{"name":"STATUS_TPM_TOO_MANY_CONTEXTS","features":[305]},{"name":"STATUS_TPM_TRANSPORT_NOTEXCLUSIVE","features":[305]},{"name":"STATUS_TPM_WRITE_LOCKED","features":[305]},{"name":"STATUS_TPM_WRONGPCRVAL","features":[305]},{"name":"STATUS_TPM_WRONG_ENTITYTYPE","features":[305]},{"name":"STATUS_TPM_ZERO_EXHAUST_ENABLED","features":[305]},{"name":"STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE","features":[305]},{"name":"STATUS_TRANSACTIONAL_CONFLICT","features":[305]},{"name":"STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED","features":[305]},{"name":"STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH","features":[305]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_FOUND","features":[305]},{"name":"STATUS_TRANSACTIONMANAGER_NOT_ONLINE","features":[305]},{"name":"STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION","features":[305]},{"name":"STATUS_TRANSACTIONS_NOT_FROZEN","features":[305]},{"name":"STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE","features":[305]},{"name":"STATUS_TRANSACTION_ABORTED","features":[305]},{"name":"STATUS_TRANSACTION_ALREADY_ABORTED","features":[305]},{"name":"STATUS_TRANSACTION_ALREADY_COMMITTED","features":[305]},{"name":"STATUS_TRANSACTION_FREEZE_IN_PROGRESS","features":[305]},{"name":"STATUS_TRANSACTION_INTEGRITY_VIOLATED","features":[305]},{"name":"STATUS_TRANSACTION_INVALID_ID","features":[305]},{"name":"STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER","features":[305]},{"name":"STATUS_TRANSACTION_INVALID_TYPE","features":[305]},{"name":"STATUS_TRANSACTION_MUST_WRITETHROUGH","features":[305]},{"name":"STATUS_TRANSACTION_NOT_ACTIVE","features":[305]},{"name":"STATUS_TRANSACTION_NOT_ENLISTED","features":[305]},{"name":"STATUS_TRANSACTION_NOT_FOUND","features":[305]},{"name":"STATUS_TRANSACTION_NOT_JOINED","features":[305]},{"name":"STATUS_TRANSACTION_NOT_REQUESTED","features":[305]},{"name":"STATUS_TRANSACTION_NOT_ROOT","features":[305]},{"name":"STATUS_TRANSACTION_NO_MATCH","features":[305]},{"name":"STATUS_TRANSACTION_NO_RELEASE","features":[305]},{"name":"STATUS_TRANSACTION_NO_SUPERIOR","features":[305]},{"name":"STATUS_TRANSACTION_OBJECT_EXPIRED","features":[305]},{"name":"STATUS_TRANSACTION_PROPAGATION_FAILED","features":[305]},{"name":"STATUS_TRANSACTION_RECORD_TOO_LONG","features":[305]},{"name":"STATUS_TRANSACTION_REQUEST_NOT_VALID","features":[305]},{"name":"STATUS_TRANSACTION_REQUIRED_PROMOTION","features":[305]},{"name":"STATUS_TRANSACTION_RESPONDED","features":[305]},{"name":"STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED","features":[305]},{"name":"STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET","features":[305]},{"name":"STATUS_TRANSACTION_SUPERIOR_EXISTS","features":[305]},{"name":"STATUS_TRANSACTION_TIMED_OUT","features":[305]},{"name":"STATUS_TRANSLATION_COMPLETE","features":[305]},{"name":"STATUS_TRANSPORT_FULL","features":[305]},{"name":"STATUS_TRIGGERED_EXECUTABLE_MEMORY_WRITE","features":[305]},{"name":"STATUS_TRIM_READ_ZERO_NOT_SUPPORTED","features":[305]},{"name":"STATUS_TRUSTED_DOMAIN_FAILURE","features":[305]},{"name":"STATUS_TRUSTED_RELATIONSHIP_FAILURE","features":[305]},{"name":"STATUS_TRUST_FAILURE","features":[305]},{"name":"STATUS_TS_INCOMPATIBLE_SESSIONS","features":[305]},{"name":"STATUS_TS_VIDEO_SUBSYSTEM_ERROR","features":[305]},{"name":"STATUS_TXF_ATTRIBUTE_CORRUPT","features":[305]},{"name":"STATUS_TXF_DIR_NOT_EMPTY","features":[305]},{"name":"STATUS_TXF_METADATA_ALREADY_PRESENT","features":[305]},{"name":"STATUS_UNABLE_TO_DECOMMIT_VM","features":[305]},{"name":"STATUS_UNABLE_TO_DELETE_SECTION","features":[305]},{"name":"STATUS_UNABLE_TO_FREE_VM","features":[305]},{"name":"STATUS_UNABLE_TO_LOCK_MEDIA","features":[305]},{"name":"STATUS_UNABLE_TO_UNLOAD_MEDIA","features":[305]},{"name":"STATUS_UNDEFINED_CHARACTER","features":[305]},{"name":"STATUS_UNDEFINED_SCOPE","features":[305]},{"name":"STATUS_UNEXPECTED_IO_ERROR","features":[305]},{"name":"STATUS_UNEXPECTED_MM_CREATE_ERR","features":[305]},{"name":"STATUS_UNEXPECTED_MM_EXTEND_ERR","features":[305]},{"name":"STATUS_UNEXPECTED_MM_MAP_ERROR","features":[305]},{"name":"STATUS_UNEXPECTED_NETWORK_ERROR","features":[305]},{"name":"STATUS_UNFINISHED_CONTEXT_DELETED","features":[305]},{"name":"STATUS_UNHANDLED_EXCEPTION","features":[305]},{"name":"STATUS_UNKNOWN_REVISION","features":[305]},{"name":"STATUS_UNMAPPABLE_CHARACTER","features":[305]},{"name":"STATUS_UNRECOGNIZED_MEDIA","features":[305]},{"name":"STATUS_UNRECOGNIZED_VOLUME","features":[305]},{"name":"STATUS_UNSATISFIED_DEPENDENCIES","features":[305]},{"name":"STATUS_UNSUCCESSFUL","features":[305]},{"name":"STATUS_UNSUPPORTED_COMPRESSION","features":[305]},{"name":"STATUS_UNSUPPORTED_PAGING_MODE","features":[305]},{"name":"STATUS_UNSUPPORTED_PREAUTH","features":[305]},{"name":"STATUS_UNTRUSTED_MOUNT_POINT","features":[305]},{"name":"STATUS_UNWIND","features":[305]},{"name":"STATUS_UNWIND_CONSOLIDATE","features":[305]},{"name":"STATUS_USER2USER_REQUIRED","features":[305]},{"name":"STATUS_USER_APC","features":[305]},{"name":"STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED","features":[305]},{"name":"STATUS_USER_EXISTS","features":[305]},{"name":"STATUS_USER_MAPPED_FILE","features":[305]},{"name":"STATUS_USER_SESSION_DELETED","features":[305]},{"name":"STATUS_VALIDATE_CONTINUE","features":[305]},{"name":"STATUS_VALID_CATALOG_HASH","features":[305]},{"name":"STATUS_VALID_IMAGE_HASH","features":[305]},{"name":"STATUS_VALID_STRONG_CODE_HASH","features":[305]},{"name":"STATUS_VARIABLE_NOT_FOUND","features":[305]},{"name":"STATUS_VDM_DISALLOWED","features":[305]},{"name":"STATUS_VDM_HARD_ERROR","features":[305]},{"name":"STATUS_VERIFIER_STOP","features":[305]},{"name":"STATUS_VERIFY_REQUIRED","features":[305]},{"name":"STATUS_VHDSET_BACKING_STORAGE_NOT_FOUND","features":[305]},{"name":"STATUS_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE","features":[305]},{"name":"STATUS_VHD_BITMAP_MISMATCH","features":[305]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_FAILURE","features":[305]},{"name":"STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT","features":[305]},{"name":"STATUS_VHD_CHANGE_TRACKING_DISABLED","features":[305]},{"name":"STATUS_VHD_CHILD_PARENT_ID_MISMATCH","features":[305]},{"name":"STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH","features":[305]},{"name":"STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH","features":[305]},{"name":"STATUS_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE","features":[305]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED","features":[305]},{"name":"STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT","features":[305]},{"name":"STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH","features":[305]},{"name":"STATUS_VHD_DRIVE_FOOTER_CORRUPT","features":[305]},{"name":"STATUS_VHD_DRIVE_FOOTER_MISSING","features":[305]},{"name":"STATUS_VHD_FORMAT_UNKNOWN","features":[305]},{"name":"STATUS_VHD_FORMAT_UNSUPPORTED_VERSION","features":[305]},{"name":"STATUS_VHD_INVALID_BLOCK_SIZE","features":[305]},{"name":"STATUS_VHD_INVALID_CHANGE_TRACKING_ID","features":[305]},{"name":"STATUS_VHD_INVALID_FILE_SIZE","features":[305]},{"name":"STATUS_VHD_INVALID_SIZE","features":[305]},{"name":"STATUS_VHD_INVALID_STATE","features":[305]},{"name":"STATUS_VHD_INVALID_TYPE","features":[305]},{"name":"STATUS_VHD_METADATA_FULL","features":[305]},{"name":"STATUS_VHD_METADATA_READ_FAILURE","features":[305]},{"name":"STATUS_VHD_METADATA_WRITE_FAILURE","features":[305]},{"name":"STATUS_VHD_MISSING_CHANGE_TRACKING_INFORMATION","features":[305]},{"name":"STATUS_VHD_PARENT_VHD_ACCESS_DENIED","features":[305]},{"name":"STATUS_VHD_PARENT_VHD_NOT_FOUND","features":[305]},{"name":"STATUS_VHD_RESIZE_WOULD_TRUNCATE_DATA","features":[305]},{"name":"STATUS_VHD_SHARED","features":[305]},{"name":"STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH","features":[305]},{"name":"STATUS_VHD_SPARSE_HEADER_CORRUPT","features":[305]},{"name":"STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION","features":[305]},{"name":"STATUS_VHD_UNEXPECTED_ID","features":[305]},{"name":"STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[305]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD","features":[305]},{"name":"STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED","features":[305]},{"name":"STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED","features":[305]},{"name":"STATUS_VID_DUPLICATE_HANDLER","features":[305]},{"name":"STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT","features":[305]},{"name":"STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT","features":[305]},{"name":"STATUS_VID_HANDLER_NOT_PRESENT","features":[305]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_HV_DEPOSIT","features":[305]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_PHYSICAL_BUFFER","features":[305]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_RESERVE","features":[305]},{"name":"STATUS_VID_INSUFFICIENT_RESOURCES_WITHDRAW","features":[305]},{"name":"STATUS_VID_INVALID_CHILD_GPA_PAGE_SET","features":[305]},{"name":"STATUS_VID_INVALID_GPA_RANGE_HANDLE","features":[305]},{"name":"STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE","features":[305]},{"name":"STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE","features":[305]},{"name":"STATUS_VID_INVALID_NUMA_NODE_INDEX","features":[305]},{"name":"STATUS_VID_INVALID_NUMA_SETTINGS","features":[305]},{"name":"STATUS_VID_INVALID_OBJECT_NAME","features":[305]},{"name":"STATUS_VID_INVALID_PPM_HANDLE","features":[305]},{"name":"STATUS_VID_INVALID_PROCESSOR_STATE","features":[305]},{"name":"STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED","features":[305]},{"name":"STATUS_VID_MBPS_ARE_LOCKED","features":[305]},{"name":"STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE","features":[305]},{"name":"STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT","features":[305]},{"name":"STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET","features":[305]},{"name":"STATUS_VID_MB_STILL_REFERENCED","features":[305]},{"name":"STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED","features":[305]},{"name":"STATUS_VID_MEMORY_TYPE_NOT_SUPPORTED","features":[305]},{"name":"STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS","features":[305]},{"name":"STATUS_VID_MESSAGE_QUEUE_CLOSED","features":[305]},{"name":"STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG","features":[305]},{"name":"STATUS_VID_MMIO_RANGE_DESTROYED","features":[305]},{"name":"STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED","features":[305]},{"name":"STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE","features":[305]},{"name":"STATUS_VID_PAGE_RANGE_OVERFLOW","features":[305]},{"name":"STATUS_VID_PARTITION_ALREADY_EXISTS","features":[305]},{"name":"STATUS_VID_PARTITION_DOES_NOT_EXIST","features":[305]},{"name":"STATUS_VID_PARTITION_NAME_NOT_FOUND","features":[305]},{"name":"STATUS_VID_PARTITION_NAME_TOO_LONG","features":[305]},{"name":"STATUS_VID_PROCESS_ALREADY_SET","features":[305]},{"name":"STATUS_VID_QUEUE_FULL","features":[305]},{"name":"STATUS_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED","features":[305]},{"name":"STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED","features":[305]},{"name":"STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL","features":[305]},{"name":"STATUS_VID_SAVED_STATE_CORRUPT","features":[305]},{"name":"STATUS_VID_SAVED_STATE_INCOMPATIBLE","features":[305]},{"name":"STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM","features":[305]},{"name":"STATUS_VID_STOP_PENDING","features":[305]},{"name":"STATUS_VID_TOO_MANY_HANDLERS","features":[305]},{"name":"STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED","features":[305]},{"name":"STATUS_VID_VTL_ACCESS_DENIED","features":[305]},{"name":"STATUS_VIRTDISK_DISK_ALREADY_OWNED","features":[305]},{"name":"STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE","features":[305]},{"name":"STATUS_VIRTDISK_NOT_VIRTUAL_DISK","features":[305]},{"name":"STATUS_VIRTDISK_PROVIDER_NOT_FOUND","features":[305]},{"name":"STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE","features":[305]},{"name":"STATUS_VIRTUAL_CIRCUIT_CLOSED","features":[305]},{"name":"STATUS_VIRTUAL_DISK_LIMITATION","features":[305]},{"name":"STATUS_VIRUS_DELETED","features":[305]},{"name":"STATUS_VIRUS_INFECTED","features":[305]},{"name":"STATUS_VOLMGR_ALL_DISKS_FAILED","features":[305]},{"name":"STATUS_VOLMGR_BAD_BOOT_DISK","features":[305]},{"name":"STATUS_VOLMGR_DATABASE_FULL","features":[305]},{"name":"STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE","features":[305]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED","features":[305]},{"name":"STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC","features":[305]},{"name":"STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME","features":[305]},{"name":"STATUS_VOLMGR_DISK_DUPLICATE","features":[305]},{"name":"STATUS_VOLMGR_DISK_DYNAMIC","features":[305]},{"name":"STATUS_VOLMGR_DISK_ID_INVALID","features":[305]},{"name":"STATUS_VOLMGR_DISK_INVALID","features":[305]},{"name":"STATUS_VOLMGR_DISK_LAST_VOTER","features":[305]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_INVALID","features":[305]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS","features":[305]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED","features":[305]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[305]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS","features":[305]},{"name":"STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS","features":[305]},{"name":"STATUS_VOLMGR_DISK_MISSING","features":[305]},{"name":"STATUS_VOLMGR_DISK_NOT_EMPTY","features":[305]},{"name":"STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE","features":[305]},{"name":"STATUS_VOLMGR_DISK_REVECTORING_FAILED","features":[305]},{"name":"STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID","features":[305]},{"name":"STATUS_VOLMGR_DISK_SET_NOT_CONTAINED","features":[305]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS","features":[305]},{"name":"STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES","features":[305]},{"name":"STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED","features":[305]},{"name":"STATUS_VOLMGR_EXTENT_ALREADY_USED","features":[305]},{"name":"STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS","features":[305]},{"name":"STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION","features":[305]},{"name":"STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED","features":[305]},{"name":"STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION","features":[305]},{"name":"STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH","features":[305]},{"name":"STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED","features":[305]},{"name":"STATUS_VOLMGR_INCOMPLETE_DISK_MIGRATION","features":[305]},{"name":"STATUS_VOLMGR_INCOMPLETE_REGENERATION","features":[305]},{"name":"STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID","features":[305]},{"name":"STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS","features":[305]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE","features":[305]},{"name":"STATUS_VOLMGR_MEMBER_INDEX_INVALID","features":[305]},{"name":"STATUS_VOLMGR_MEMBER_IN_SYNC","features":[305]},{"name":"STATUS_VOLMGR_MEMBER_MISSING","features":[305]},{"name":"STATUS_VOLMGR_MEMBER_NOT_DETACHED","features":[305]},{"name":"STATUS_VOLMGR_MEMBER_REGENERATING","features":[305]},{"name":"STATUS_VOLMGR_MIRROR_NOT_SUPPORTED","features":[305]},{"name":"STATUS_VOLMGR_NOTIFICATION_RESET","features":[305]},{"name":"STATUS_VOLMGR_NOT_PRIMARY_PACK","features":[305]},{"name":"STATUS_VOLMGR_NO_REGISTERED_USERS","features":[305]},{"name":"STATUS_VOLMGR_NO_SUCH_USER","features":[305]},{"name":"STATUS_VOLMGR_NO_VALID_LOG_COPIES","features":[305]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID","features":[305]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID","features":[305]},{"name":"STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID","features":[305]},{"name":"STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID","features":[305]},{"name":"STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID","features":[305]},{"name":"STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID","features":[305]},{"name":"STATUS_VOLMGR_PACK_CONFIG_OFFLINE","features":[305]},{"name":"STATUS_VOLMGR_PACK_CONFIG_ONLINE","features":[305]},{"name":"STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED","features":[305]},{"name":"STATUS_VOLMGR_PACK_DUPLICATE","features":[305]},{"name":"STATUS_VOLMGR_PACK_HAS_QUORUM","features":[305]},{"name":"STATUS_VOLMGR_PACK_ID_INVALID","features":[305]},{"name":"STATUS_VOLMGR_PACK_INVALID","features":[305]},{"name":"STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED","features":[305]},{"name":"STATUS_VOLMGR_PACK_NAME_INVALID","features":[305]},{"name":"STATUS_VOLMGR_PACK_OFFLINE","features":[305]},{"name":"STATUS_VOLMGR_PACK_WITHOUT_QUORUM","features":[305]},{"name":"STATUS_VOLMGR_PARTITION_STYLE_INVALID","features":[305]},{"name":"STATUS_VOLMGR_PARTITION_UPDATE_FAILED","features":[305]},{"name":"STATUS_VOLMGR_PLEX_INDEX_DUPLICATE","features":[305]},{"name":"STATUS_VOLMGR_PLEX_INDEX_INVALID","features":[305]},{"name":"STATUS_VOLMGR_PLEX_IN_SYNC","features":[305]},{"name":"STATUS_VOLMGR_PLEX_LAST_ACTIVE","features":[305]},{"name":"STATUS_VOLMGR_PLEX_MISSING","features":[305]},{"name":"STATUS_VOLMGR_PLEX_NOT_RAID5","features":[305]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE","features":[305]},{"name":"STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED","features":[305]},{"name":"STATUS_VOLMGR_PLEX_REGENERATING","features":[305]},{"name":"STATUS_VOLMGR_PLEX_TYPE_INVALID","features":[305]},{"name":"STATUS_VOLMGR_PRIMARY_PACK_PRESENT","features":[305]},{"name":"STATUS_VOLMGR_RAID5_NOT_SUPPORTED","features":[305]},{"name":"STATUS_VOLMGR_STRUCTURE_SIZE_INVALID","features":[305]},{"name":"STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS","features":[305]},{"name":"STATUS_VOLMGR_TRANSACTION_IN_PROGRESS","features":[305]},{"name":"STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_ID_INVALID","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_INVALID","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_MIRRORED","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_NOT_MIRRORED","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_NOT_RETAINED","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_OFFLINE","features":[305]},{"name":"STATUS_VOLMGR_VOLUME_RETAINED","features":[305]},{"name":"STATUS_VOLSNAP_ACTIVATION_TIMEOUT","features":[305]},{"name":"STATUS_VOLSNAP_BOOTFILE_NOT_VALID","features":[305]},{"name":"STATUS_VOLSNAP_HIBERNATE_READY","features":[305]},{"name":"STATUS_VOLSNAP_NO_BYPASSIO_WITH_SNAPSHOT","features":[305]},{"name":"STATUS_VOLSNAP_PREPARE_HIBERNATE","features":[305]},{"name":"STATUS_VOLUME_DIRTY","features":[305]},{"name":"STATUS_VOLUME_DISMOUNTED","features":[305]},{"name":"STATUS_VOLUME_MOUNTED","features":[305]},{"name":"STATUS_VOLUME_NOT_CLUSTER_ALIGNED","features":[305]},{"name":"STATUS_VOLUME_NOT_SUPPORTED","features":[305]},{"name":"STATUS_VOLUME_NOT_UPGRADED","features":[305]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED","features":[305]},{"name":"STATUS_VOLUME_UPGRADE_DISABLED_TILL_OS_DOWNGRADE_EXPIRED","features":[305]},{"name":"STATUS_VOLUME_UPGRADE_NOT_NEEDED","features":[305]},{"name":"STATUS_VOLUME_UPGRADE_PENDING","features":[305]},{"name":"STATUS_VOLUME_WRITE_ACCESS_DENIED","features":[305]},{"name":"STATUS_VRF_VOLATILE_CFG_AND_IO_ENABLED","features":[305]},{"name":"STATUS_VRF_VOLATILE_NMI_REGISTERED","features":[305]},{"name":"STATUS_VRF_VOLATILE_NOT_RUNNABLE_SYSTEM","features":[305]},{"name":"STATUS_VRF_VOLATILE_NOT_STOPPABLE","features":[305]},{"name":"STATUS_VRF_VOLATILE_NOT_SUPPORTED_RULECLASS","features":[305]},{"name":"STATUS_VRF_VOLATILE_PROTECTED_DRIVER","features":[305]},{"name":"STATUS_VRF_VOLATILE_SAFE_MODE","features":[305]},{"name":"STATUS_VRF_VOLATILE_SETTINGS_CONFLICT","features":[305]},{"name":"STATUS_VSM_DMA_PROTECTION_NOT_IN_USE","features":[305]},{"name":"STATUS_VSM_NOT_INITIALIZED","features":[305]},{"name":"STATUS_WAIT_0","features":[305]},{"name":"STATUS_WAIT_1","features":[305]},{"name":"STATUS_WAIT_2","features":[305]},{"name":"STATUS_WAIT_3","features":[305]},{"name":"STATUS_WAIT_63","features":[305]},{"name":"STATUS_WAIT_FOR_OPLOCK","features":[305]},{"name":"STATUS_WAKE_SYSTEM","features":[305]},{"name":"STATUS_WAKE_SYSTEM_DEBUGGER","features":[305]},{"name":"STATUS_WAS_LOCKED","features":[305]},{"name":"STATUS_WAS_UNLOCKED","features":[305]},{"name":"STATUS_WEAK_WHFBKEY_BLOCKED","features":[305]},{"name":"STATUS_WIM_NOT_BOOTABLE","features":[305]},{"name":"STATUS_WMI_ALREADY_DISABLED","features":[305]},{"name":"STATUS_WMI_ALREADY_ENABLED","features":[305]},{"name":"STATUS_WMI_GUID_DISCONNECTED","features":[305]},{"name":"STATUS_WMI_GUID_NOT_FOUND","features":[305]},{"name":"STATUS_WMI_INSTANCE_NOT_FOUND","features":[305]},{"name":"STATUS_WMI_ITEMID_NOT_FOUND","features":[305]},{"name":"STATUS_WMI_NOT_SUPPORTED","features":[305]},{"name":"STATUS_WMI_READ_ONLY","features":[305]},{"name":"STATUS_WMI_SET_FAILURE","features":[305]},{"name":"STATUS_WMI_TRY_AGAIN","features":[305]},{"name":"STATUS_WOF_FILE_RESOURCE_TABLE_CORRUPT","features":[305]},{"name":"STATUS_WOF_WIM_HEADER_CORRUPT","features":[305]},{"name":"STATUS_WOF_WIM_RESOURCE_TABLE_CORRUPT","features":[305]},{"name":"STATUS_WORKING_SET_LIMIT_RANGE","features":[305]},{"name":"STATUS_WORKING_SET_QUOTA","features":[305]},{"name":"STATUS_WOW_ASSERTION","features":[305]},{"name":"STATUS_WRONG_COMPARTMENT","features":[305]},{"name":"STATUS_WRONG_CREDENTIAL_HANDLE","features":[305]},{"name":"STATUS_WRONG_EFS","features":[305]},{"name":"STATUS_WRONG_PASSWORD_CORE","features":[305]},{"name":"STATUS_WRONG_VOLUME","features":[305]},{"name":"STATUS_WX86_BREAKPOINT","features":[305]},{"name":"STATUS_WX86_CONTINUE","features":[305]},{"name":"STATUS_WX86_CREATEWX86TIB","features":[305]},{"name":"STATUS_WX86_EXCEPTION_CHAIN","features":[305]},{"name":"STATUS_WX86_EXCEPTION_CONTINUE","features":[305]},{"name":"STATUS_WX86_EXCEPTION_LASTCHANCE","features":[305]},{"name":"STATUS_WX86_FLOAT_STACK_CHECK","features":[305]},{"name":"STATUS_WX86_INTERNAL_ERROR","features":[305]},{"name":"STATUS_WX86_SINGLE_STEP","features":[305]},{"name":"STATUS_WX86_UNSIMULATE","features":[305]},{"name":"STATUS_XMLDSIG_ERROR","features":[305]},{"name":"STATUS_XML_ENCODING_MISMATCH","features":[305]},{"name":"STATUS_XML_PARSE_ERROR","features":[305]},{"name":"STG_E_ABNORMALAPIEXIT","features":[305]},{"name":"STG_E_ACCESSDENIED","features":[305]},{"name":"STG_E_BADBASEADDRESS","features":[305]},{"name":"STG_E_CANTSAVE","features":[305]},{"name":"STG_E_CSS_AUTHENTICATION_FAILURE","features":[305]},{"name":"STG_E_CSS_KEY_NOT_ESTABLISHED","features":[305]},{"name":"STG_E_CSS_KEY_NOT_PRESENT","features":[305]},{"name":"STG_E_CSS_REGION_MISMATCH","features":[305]},{"name":"STG_E_CSS_SCRAMBLED_SECTOR","features":[305]},{"name":"STG_E_DEVICE_UNRESPONSIVE","features":[305]},{"name":"STG_E_DISKISWRITEPROTECTED","features":[305]},{"name":"STG_E_DOCFILECORRUPT","features":[305]},{"name":"STG_E_DOCFILETOOLARGE","features":[305]},{"name":"STG_E_EXTANTMARSHALLINGS","features":[305]},{"name":"STG_E_FILEALREADYEXISTS","features":[305]},{"name":"STG_E_FILENOTFOUND","features":[305]},{"name":"STG_E_FIRMWARE_IMAGE_INVALID","features":[305]},{"name":"STG_E_FIRMWARE_SLOT_INVALID","features":[305]},{"name":"STG_E_INCOMPLETE","features":[305]},{"name":"STG_E_INSUFFICIENTMEMORY","features":[305]},{"name":"STG_E_INUSE","features":[305]},{"name":"STG_E_INVALIDFLAG","features":[305]},{"name":"STG_E_INVALIDFUNCTION","features":[305]},{"name":"STG_E_INVALIDHANDLE","features":[305]},{"name":"STG_E_INVALIDHEADER","features":[305]},{"name":"STG_E_INVALIDNAME","features":[305]},{"name":"STG_E_INVALIDPARAMETER","features":[305]},{"name":"STG_E_INVALIDPOINTER","features":[305]},{"name":"STG_E_LOCKVIOLATION","features":[305]},{"name":"STG_E_MEDIUMFULL","features":[305]},{"name":"STG_E_NOMOREFILES","features":[305]},{"name":"STG_E_NOTCURRENT","features":[305]},{"name":"STG_E_NOTFILEBASEDSTORAGE","features":[305]},{"name":"STG_E_NOTSIMPLEFORMAT","features":[305]},{"name":"STG_E_OLDDLL","features":[305]},{"name":"STG_E_OLDFORMAT","features":[305]},{"name":"STG_E_PATHNOTFOUND","features":[305]},{"name":"STG_E_PROPSETMISMATCHED","features":[305]},{"name":"STG_E_READFAULT","features":[305]},{"name":"STG_E_RESETS_EXHAUSTED","features":[305]},{"name":"STG_E_REVERTED","features":[305]},{"name":"STG_E_SEEKERROR","features":[305]},{"name":"STG_E_SHAREREQUIRED","features":[305]},{"name":"STG_E_SHAREVIOLATION","features":[305]},{"name":"STG_E_STATUS_COPY_PROTECTION_FAILURE","features":[305]},{"name":"STG_E_TERMINATED","features":[305]},{"name":"STG_E_TOOMANYOPENFILES","features":[305]},{"name":"STG_E_UNIMPLEMENTEDFUNCTION","features":[305]},{"name":"STG_E_UNKNOWN","features":[305]},{"name":"STG_E_WRITEFAULT","features":[305]},{"name":"STG_S_BLOCK","features":[305]},{"name":"STG_S_CANNOTCONSOLIDATE","features":[305]},{"name":"STG_S_CONSOLIDATIONFAILED","features":[305]},{"name":"STG_S_CONVERTED","features":[305]},{"name":"STG_S_MONITORING","features":[305]},{"name":"STG_S_MULTIPLEOPENS","features":[305]},{"name":"STG_S_POWER_CYCLE_REQUIRED","features":[305]},{"name":"STG_S_RETRYNOW","features":[305]},{"name":"STILL_ACTIVE","features":[305]},{"name":"STORE_ERROR_LICENSE_REVOKED","features":[305]},{"name":"STORE_ERROR_PENDING_COM_TRANSACTION","features":[305]},{"name":"STORE_ERROR_UNLICENSED","features":[305]},{"name":"STORE_ERROR_UNLICENSED_USER","features":[305]},{"name":"STRICT","features":[305]},{"name":"SUCCESS","features":[305]},{"name":"SYSTEMTIME","features":[305]},{"name":"S_APPLICATION_ACTIVATION_ERROR_HANDLED_BY_DIALOG","features":[305]},{"name":"S_FALSE","features":[305]},{"name":"S_OK","features":[305]},{"name":"S_STORE_LAUNCHED_FOR_REMEDIATION","features":[305]},{"name":"SetHandleInformation","features":[305]},{"name":"SetLastError","features":[305]},{"name":"SetLastErrorEx","features":[305]},{"name":"SysAddRefString","features":[305]},{"name":"SysAllocString","features":[305]},{"name":"SysAllocStringByteLen","features":[305]},{"name":"SysAllocStringLen","features":[305]},{"name":"SysFreeString","features":[305]},{"name":"SysReAllocString","features":[305]},{"name":"SysReAllocStringLen","features":[305]},{"name":"SysReleaseString","features":[305]},{"name":"SysStringByteLen","features":[305]},{"name":"SysStringLen","features":[305]},{"name":"TBSIMP_E_BUFFER_TOO_SMALL","features":[305]},{"name":"TBSIMP_E_CLEANUP_FAILED","features":[305]},{"name":"TBSIMP_E_COMMAND_CANCELED","features":[305]},{"name":"TBSIMP_E_COMMAND_FAILED","features":[305]},{"name":"TBSIMP_E_DUPLICATE_VHANDLE","features":[305]},{"name":"TBSIMP_E_HASH_BAD_KEY","features":[305]},{"name":"TBSIMP_E_HASH_TABLE_FULL","features":[305]},{"name":"TBSIMP_E_INVALID_CONTEXT_HANDLE","features":[305]},{"name":"TBSIMP_E_INVALID_CONTEXT_PARAM","features":[305]},{"name":"TBSIMP_E_INVALID_OUTPUT_POINTER","features":[305]},{"name":"TBSIMP_E_INVALID_PARAMETER","features":[305]},{"name":"TBSIMP_E_INVALID_RESOURCE","features":[305]},{"name":"TBSIMP_E_LIST_NOT_FOUND","features":[305]},{"name":"TBSIMP_E_LIST_NO_MORE_ITEMS","features":[305]},{"name":"TBSIMP_E_NOTHING_TO_UNLOAD","features":[305]},{"name":"TBSIMP_E_NOT_ENOUGH_SPACE","features":[305]},{"name":"TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS","features":[305]},{"name":"TBSIMP_E_NO_EVENT_LOG","features":[305]},{"name":"TBSIMP_E_OUT_OF_MEMORY","features":[305]},{"name":"TBSIMP_E_PPI_NOT_SUPPORTED","features":[305]},{"name":"TBSIMP_E_RESOURCE_EXPIRED","features":[305]},{"name":"TBSIMP_E_RPC_INIT_FAILED","features":[305]},{"name":"TBSIMP_E_SCHEDULER_NOT_RUNNING","features":[305]},{"name":"TBSIMP_E_TOO_MANY_RESOURCES","features":[305]},{"name":"TBSIMP_E_TOO_MANY_TBS_CONTEXTS","features":[305]},{"name":"TBSIMP_E_TPM_ERROR","features":[305]},{"name":"TBSIMP_E_TPM_INCOMPATIBLE","features":[305]},{"name":"TBSIMP_E_UNKNOWN_ORDINAL","features":[305]},{"name":"TBS_E_ACCESS_DENIED","features":[305]},{"name":"TBS_E_BAD_PARAMETER","features":[305]},{"name":"TBS_E_BUFFER_TOO_LARGE","features":[305]},{"name":"TBS_E_COMMAND_CANCELED","features":[305]},{"name":"TBS_E_INSUFFICIENT_BUFFER","features":[305]},{"name":"TBS_E_INTERNAL_ERROR","features":[305]},{"name":"TBS_E_INVALID_CONTEXT","features":[305]},{"name":"TBS_E_INVALID_CONTEXT_PARAM","features":[305]},{"name":"TBS_E_INVALID_OUTPUT_POINTER","features":[305]},{"name":"TBS_E_IOERROR","features":[305]},{"name":"TBS_E_NO_EVENT_LOG","features":[305]},{"name":"TBS_E_OWNERAUTH_NOT_FOUND","features":[305]},{"name":"TBS_E_PPI_FUNCTION_UNSUPPORTED","features":[305]},{"name":"TBS_E_PPI_NOT_SUPPORTED","features":[305]},{"name":"TBS_E_PROVISIONING_INCOMPLETE","features":[305]},{"name":"TBS_E_PROVISIONING_NOT_ALLOWED","features":[305]},{"name":"TBS_E_SERVICE_DISABLED","features":[305]},{"name":"TBS_E_SERVICE_NOT_RUNNING","features":[305]},{"name":"TBS_E_SERVICE_START_PENDING","features":[305]},{"name":"TBS_E_TOO_MANY_RESOURCES","features":[305]},{"name":"TBS_E_TOO_MANY_TBS_CONTEXTS","features":[305]},{"name":"TBS_E_TPM_NOT_FOUND","features":[305]},{"name":"TPC_E_INITIALIZE_FAIL","features":[305]},{"name":"TPC_E_INVALID_CONFIGURATION","features":[305]},{"name":"TPC_E_INVALID_DATA_FROM_RECOGNIZER","features":[305]},{"name":"TPC_E_INVALID_INPUT_RECT","features":[305]},{"name":"TPC_E_INVALID_PACKET_DESCRIPTION","features":[305]},{"name":"TPC_E_INVALID_PROPERTY","features":[305]},{"name":"TPC_E_INVALID_RIGHTS","features":[305]},{"name":"TPC_E_INVALID_STROKE","features":[305]},{"name":"TPC_E_NOT_RELEVANT","features":[305]},{"name":"TPC_E_NO_DEFAULT_TABLET","features":[305]},{"name":"TPC_E_OUT_OF_ORDER_CALL","features":[305]},{"name":"TPC_E_QUEUE_FULL","features":[305]},{"name":"TPC_E_RECOGNIZER_NOT_REGISTERED","features":[305]},{"name":"TPC_E_UNKNOWN_PROPERTY","features":[305]},{"name":"TPC_S_INTERRUPTED","features":[305]},{"name":"TPC_S_NO_DATA_TO_PROCESS","features":[305]},{"name":"TPC_S_TRUNCATED","features":[305]},{"name":"TPMAPI_E_ACCESS_DENIED","features":[305]},{"name":"TPMAPI_E_AUTHORIZATION_FAILED","features":[305]},{"name":"TPMAPI_E_AUTHORIZATION_REVOKED","features":[305]},{"name":"TPMAPI_E_AUTHORIZING_KEY_NOT_SUPPORTED","features":[305]},{"name":"TPMAPI_E_BUFFER_TOO_SMALL","features":[305]},{"name":"TPMAPI_E_EMPTY_TCG_LOG","features":[305]},{"name":"TPMAPI_E_ENCRYPTION_FAILED","features":[305]},{"name":"TPMAPI_E_ENDORSEMENT_AUTH_NOT_NULL","features":[305]},{"name":"TPMAPI_E_FIPS_RNG_CHECK_FAILED","features":[305]},{"name":"TPMAPI_E_INTERNAL_ERROR","features":[305]},{"name":"TPMAPI_E_INVALID_AUTHORIZATION_SIGNATURE","features":[305]},{"name":"TPMAPI_E_INVALID_CONTEXT_HANDLE","features":[305]},{"name":"TPMAPI_E_INVALID_CONTEXT_PARAMS","features":[305]},{"name":"TPMAPI_E_INVALID_DELEGATE_BLOB","features":[305]},{"name":"TPMAPI_E_INVALID_ENCODING","features":[305]},{"name":"TPMAPI_E_INVALID_KEY_BLOB","features":[305]},{"name":"TPMAPI_E_INVALID_KEY_PARAMS","features":[305]},{"name":"TPMAPI_E_INVALID_KEY_SIZE","features":[305]},{"name":"TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB","features":[305]},{"name":"TPMAPI_E_INVALID_OUTPUT_POINTER","features":[305]},{"name":"TPMAPI_E_INVALID_OWNER_AUTH","features":[305]},{"name":"TPMAPI_E_INVALID_PARAMETER","features":[305]},{"name":"TPMAPI_E_INVALID_PCR_DATA","features":[305]},{"name":"TPMAPI_E_INVALID_PCR_INDEX","features":[305]},{"name":"TPMAPI_E_INVALID_POLICYAUTH_BLOB_TYPE","features":[305]},{"name":"TPMAPI_E_INVALID_STATE","features":[305]},{"name":"TPMAPI_E_INVALID_TCG_LOG_ENTRY","features":[305]},{"name":"TPMAPI_E_INVALID_TPM_VERSION","features":[305]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_KEY","features":[305]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_OTHER","features":[305]},{"name":"TPMAPI_E_MALFORMED_AUTHORIZATION_POLICY","features":[305]},{"name":"TPMAPI_E_MESSAGE_TOO_LARGE","features":[305]},{"name":"TPMAPI_E_NOT_ENOUGH_DATA","features":[305]},{"name":"TPMAPI_E_NO_AUTHORIZATION_CHAIN_FOUND","features":[305]},{"name":"TPMAPI_E_NV_BITS_NOT_DEFINED","features":[305]},{"name":"TPMAPI_E_NV_BITS_NOT_READY","features":[305]},{"name":"TPMAPI_E_OUT_OF_MEMORY","features":[305]},{"name":"TPMAPI_E_OWNER_AUTH_NOT_NULL","features":[305]},{"name":"TPMAPI_E_POLICY_DENIES_OPERATION","features":[305]},{"name":"TPMAPI_E_SEALING_KEY_CHANGED","features":[305]},{"name":"TPMAPI_E_SEALING_KEY_NOT_AVAILABLE","features":[305]},{"name":"TPMAPI_E_SVN_COUNTER_NOT_AVAILABLE","features":[305]},{"name":"TPMAPI_E_TBS_COMMUNICATION_ERROR","features":[305]},{"name":"TPMAPI_E_TCG_INVALID_DIGEST_ENTRY","features":[305]},{"name":"TPMAPI_E_TCG_SEPARATOR_ABSENT","features":[305]},{"name":"TPMAPI_E_TOO_MUCH_DATA","features":[305]},{"name":"TPMAPI_E_TPM_COMMAND_ERROR","features":[305]},{"name":"TPM_20_E_ASYMMETRIC","features":[305]},{"name":"TPM_20_E_ATTRIBUTES","features":[305]},{"name":"TPM_20_E_AUTHSIZE","features":[305]},{"name":"TPM_20_E_AUTH_CONTEXT","features":[305]},{"name":"TPM_20_E_AUTH_FAIL","features":[305]},{"name":"TPM_20_E_AUTH_MISSING","features":[305]},{"name":"TPM_20_E_AUTH_TYPE","features":[305]},{"name":"TPM_20_E_AUTH_UNAVAILABLE","features":[305]},{"name":"TPM_20_E_BAD_AUTH","features":[305]},{"name":"TPM_20_E_BAD_CONTEXT","features":[305]},{"name":"TPM_20_E_BINDING","features":[305]},{"name":"TPM_20_E_CANCELED","features":[305]},{"name":"TPM_20_E_COMMAND_CODE","features":[305]},{"name":"TPM_20_E_COMMAND_SIZE","features":[305]},{"name":"TPM_20_E_CONTEXT_GAP","features":[305]},{"name":"TPM_20_E_CPHASH","features":[305]},{"name":"TPM_20_E_CURVE","features":[305]},{"name":"TPM_20_E_DISABLED","features":[305]},{"name":"TPM_20_E_ECC_CURVE","features":[305]},{"name":"TPM_20_E_ECC_POINT","features":[305]},{"name":"TPM_20_E_EXCLUSIVE","features":[305]},{"name":"TPM_20_E_EXPIRED","features":[305]},{"name":"TPM_20_E_FAILURE","features":[305]},{"name":"TPM_20_E_HANDLE","features":[305]},{"name":"TPM_20_E_HASH","features":[305]},{"name":"TPM_20_E_HIERARCHY","features":[305]},{"name":"TPM_20_E_HMAC","features":[305]},{"name":"TPM_20_E_INITIALIZE","features":[305]},{"name":"TPM_20_E_INSUFFICIENT","features":[305]},{"name":"TPM_20_E_INTEGRITY","features":[305]},{"name":"TPM_20_E_KDF","features":[305]},{"name":"TPM_20_E_KEY","features":[305]},{"name":"TPM_20_E_KEY_SIZE","features":[305]},{"name":"TPM_20_E_LOCALITY","features":[305]},{"name":"TPM_20_E_LOCKOUT","features":[305]},{"name":"TPM_20_E_MEMORY","features":[305]},{"name":"TPM_20_E_MGF","features":[305]},{"name":"TPM_20_E_MODE","features":[305]},{"name":"TPM_20_E_NEEDS_TEST","features":[305]},{"name":"TPM_20_E_NONCE","features":[305]},{"name":"TPM_20_E_NO_RESULT","features":[305]},{"name":"TPM_20_E_NV_AUTHORIZATION","features":[305]},{"name":"TPM_20_E_NV_DEFINED","features":[305]},{"name":"TPM_20_E_NV_LOCKED","features":[305]},{"name":"TPM_20_E_NV_RANGE","features":[305]},{"name":"TPM_20_E_NV_RATE","features":[305]},{"name":"TPM_20_E_NV_SIZE","features":[305]},{"name":"TPM_20_E_NV_SPACE","features":[305]},{"name":"TPM_20_E_NV_UNAVAILABLE","features":[305]},{"name":"TPM_20_E_NV_UNINITIALIZED","features":[305]},{"name":"TPM_20_E_OBJECT_HANDLES","features":[305]},{"name":"TPM_20_E_OBJECT_MEMORY","features":[305]},{"name":"TPM_20_E_PARENT","features":[305]},{"name":"TPM_20_E_PCR","features":[305]},{"name":"TPM_20_E_PCR_CHANGED","features":[305]},{"name":"TPM_20_E_POLICY","features":[305]},{"name":"TPM_20_E_POLICY_CC","features":[305]},{"name":"TPM_20_E_POLICY_FAIL","features":[305]},{"name":"TPM_20_E_PP","features":[305]},{"name":"TPM_20_E_PRIVATE","features":[305]},{"name":"TPM_20_E_RANGE","features":[305]},{"name":"TPM_20_E_REBOOT","features":[305]},{"name":"TPM_20_E_RESERVED_BITS","features":[305]},{"name":"TPM_20_E_RETRY","features":[305]},{"name":"TPM_20_E_SCHEME","features":[305]},{"name":"TPM_20_E_SELECTOR","features":[305]},{"name":"TPM_20_E_SENSITIVE","features":[305]},{"name":"TPM_20_E_SEQUENCE","features":[305]},{"name":"TPM_20_E_SESSION_HANDLES","features":[305]},{"name":"TPM_20_E_SESSION_MEMORY","features":[305]},{"name":"TPM_20_E_SIGNATURE","features":[305]},{"name":"TPM_20_E_SIZE","features":[305]},{"name":"TPM_20_E_SYMMETRIC","features":[305]},{"name":"TPM_20_E_TAG","features":[305]},{"name":"TPM_20_E_TESTING","features":[305]},{"name":"TPM_20_E_TICKET","features":[305]},{"name":"TPM_20_E_TOO_MANY_CONTEXTS","features":[305]},{"name":"TPM_20_E_TYPE","features":[305]},{"name":"TPM_20_E_UNBALANCED","features":[305]},{"name":"TPM_20_E_UPGRADE","features":[305]},{"name":"TPM_20_E_VALUE","features":[305]},{"name":"TPM_20_E_YIELDED","features":[305]},{"name":"TPM_E_AREA_LOCKED","features":[305]},{"name":"TPM_E_ATTESTATION_CHALLENGE_NOT_SET","features":[305]},{"name":"TPM_E_AUDITFAILURE","features":[305]},{"name":"TPM_E_AUDITFAIL_SUCCESSFUL","features":[305]},{"name":"TPM_E_AUDITFAIL_UNSUCCESSFUL","features":[305]},{"name":"TPM_E_AUTH2FAIL","features":[305]},{"name":"TPM_E_AUTHFAIL","features":[305]},{"name":"TPM_E_AUTH_CONFLICT","features":[305]},{"name":"TPM_E_BADCONTEXT","features":[305]},{"name":"TPM_E_BADINDEX","features":[305]},{"name":"TPM_E_BADTAG","features":[305]},{"name":"TPM_E_BAD_ATTRIBUTES","features":[305]},{"name":"TPM_E_BAD_COUNTER","features":[305]},{"name":"TPM_E_BAD_DATASIZE","features":[305]},{"name":"TPM_E_BAD_DELEGATE","features":[305]},{"name":"TPM_E_BAD_HANDLE","features":[305]},{"name":"TPM_E_BAD_KEY_PROPERTY","features":[305]},{"name":"TPM_E_BAD_LOCALITY","features":[305]},{"name":"TPM_E_BAD_MIGRATION","features":[305]},{"name":"TPM_E_BAD_MODE","features":[305]},{"name":"TPM_E_BAD_ORDINAL","features":[305]},{"name":"TPM_E_BAD_PARAMETER","features":[305]},{"name":"TPM_E_BAD_PARAM_SIZE","features":[305]},{"name":"TPM_E_BAD_PRESENCE","features":[305]},{"name":"TPM_E_BAD_SCHEME","features":[305]},{"name":"TPM_E_BAD_SIGNATURE","features":[305]},{"name":"TPM_E_BAD_TYPE","features":[305]},{"name":"TPM_E_BAD_VERSION","features":[305]},{"name":"TPM_E_BUFFER_LENGTH_MISMATCH","features":[305]},{"name":"TPM_E_CLAIM_TYPE_NOT_SUPPORTED","features":[305]},{"name":"TPM_E_CLEAR_DISABLED","features":[305]},{"name":"TPM_E_COMMAND_BLOCKED","features":[305]},{"name":"TPM_E_CONTEXT_GAP","features":[305]},{"name":"TPM_E_DAA_INPUT_DATA0","features":[305]},{"name":"TPM_E_DAA_INPUT_DATA1","features":[305]},{"name":"TPM_E_DAA_ISSUER_SETTINGS","features":[305]},{"name":"TPM_E_DAA_ISSUER_VALIDITY","features":[305]},{"name":"TPM_E_DAA_RESOURCES","features":[305]},{"name":"TPM_E_DAA_STAGE","features":[305]},{"name":"TPM_E_DAA_TPM_SETTINGS","features":[305]},{"name":"TPM_E_DAA_WRONG_W","features":[305]},{"name":"TPM_E_DEACTIVATED","features":[305]},{"name":"TPM_E_DECRYPT_ERROR","features":[305]},{"name":"TPM_E_DEFEND_LOCK_RUNNING","features":[305]},{"name":"TPM_E_DELEGATE_ADMIN","features":[305]},{"name":"TPM_E_DELEGATE_FAMILY","features":[305]},{"name":"TPM_E_DELEGATE_LOCK","features":[305]},{"name":"TPM_E_DISABLED","features":[305]},{"name":"TPM_E_DISABLED_CMD","features":[305]},{"name":"TPM_E_DOING_SELFTEST","features":[305]},{"name":"TPM_E_DUPLICATE_VHANDLE","features":[305]},{"name":"TPM_E_EMBEDDED_COMMAND_BLOCKED","features":[305]},{"name":"TPM_E_EMBEDDED_COMMAND_UNSUPPORTED","features":[305]},{"name":"TPM_E_ENCRYPT_ERROR","features":[305]},{"name":"TPM_E_ERROR_MASK","features":[305]},{"name":"TPM_E_FAIL","features":[305]},{"name":"TPM_E_FAILEDSELFTEST","features":[305]},{"name":"TPM_E_FAMILYCOUNT","features":[305]},{"name":"TPM_E_INAPPROPRIATE_ENC","features":[305]},{"name":"TPM_E_INAPPROPRIATE_SIG","features":[305]},{"name":"TPM_E_INSTALL_DISABLED","features":[305]},{"name":"TPM_E_INVALID_AUTHHANDLE","features":[305]},{"name":"TPM_E_INVALID_FAMILY","features":[305]},{"name":"TPM_E_INVALID_HANDLE","features":[305]},{"name":"TPM_E_INVALID_KEYHANDLE","features":[305]},{"name":"TPM_E_INVALID_KEYUSAGE","features":[305]},{"name":"TPM_E_INVALID_OWNER_AUTH","features":[305]},{"name":"TPM_E_INVALID_PCR_INFO","features":[305]},{"name":"TPM_E_INVALID_POSTINIT","features":[305]},{"name":"TPM_E_INVALID_RESOURCE","features":[305]},{"name":"TPM_E_INVALID_STRUCTURE","features":[305]},{"name":"TPM_E_IOERROR","features":[305]},{"name":"TPM_E_KEYNOTFOUND","features":[305]},{"name":"TPM_E_KEY_ALREADY_FINALIZED","features":[305]},{"name":"TPM_E_KEY_NOTSUPPORTED","features":[305]},{"name":"TPM_E_KEY_NOT_AUTHENTICATED","features":[305]},{"name":"TPM_E_KEY_NOT_FINALIZED","features":[305]},{"name":"TPM_E_KEY_NOT_LOADED","features":[305]},{"name":"TPM_E_KEY_NOT_SIGNING_KEY","features":[305]},{"name":"TPM_E_KEY_OWNER_CONTROL","features":[305]},{"name":"TPM_E_KEY_USAGE_POLICY_INVALID","features":[305]},{"name":"TPM_E_KEY_USAGE_POLICY_NOT_SUPPORTED","features":[305]},{"name":"TPM_E_LOCKED_OUT","features":[305]},{"name":"TPM_E_MAXNVWRITES","features":[305]},{"name":"TPM_E_MA_AUTHORITY","features":[305]},{"name":"TPM_E_MA_DESTINATION","features":[305]},{"name":"TPM_E_MA_SOURCE","features":[305]},{"name":"TPM_E_MA_TICKET_SIGNATURE","features":[305]},{"name":"TPM_E_MIGRATEFAIL","features":[305]},{"name":"TPM_E_NEEDS_SELFTEST","features":[305]},{"name":"TPM_E_NOCONTEXTSPACE","features":[305]},{"name":"TPM_E_NOOPERATOR","features":[305]},{"name":"TPM_E_NOSPACE","features":[305]},{"name":"TPM_E_NOSRK","features":[305]},{"name":"TPM_E_NOTFIPS","features":[305]},{"name":"TPM_E_NOTLOCAL","features":[305]},{"name":"TPM_E_NOTRESETABLE","features":[305]},{"name":"TPM_E_NOTSEALED_BLOB","features":[305]},{"name":"TPM_E_NOT_FULLWRITE","features":[305]},{"name":"TPM_E_NOT_PCR_BOUND","features":[305]},{"name":"TPM_E_NO_ENDORSEMENT","features":[305]},{"name":"TPM_E_NO_KEY_CERTIFICATION","features":[305]},{"name":"TPM_E_NO_NV_PERMISSION","features":[305]},{"name":"TPM_E_NO_WRAP_TRANSPORT","features":[305]},{"name":"TPM_E_OWNER_CONTROL","features":[305]},{"name":"TPM_E_OWNER_SET","features":[305]},{"name":"TPM_E_PCP_AUTHENTICATION_FAILED","features":[305]},{"name":"TPM_E_PCP_AUTHENTICATION_IGNORED","features":[305]},{"name":"TPM_E_PCP_BUFFER_TOO_SMALL","features":[305]},{"name":"TPM_E_PCP_DEVICE_NOT_READY","features":[305]},{"name":"TPM_E_PCP_ERROR_MASK","features":[305]},{"name":"TPM_E_PCP_FLAG_NOT_SUPPORTED","features":[305]},{"name":"TPM_E_PCP_IFX_RSA_KEY_CREATION_BLOCKED","features":[305]},{"name":"TPM_E_PCP_INTERNAL_ERROR","features":[305]},{"name":"TPM_E_PCP_INVALID_HANDLE","features":[305]},{"name":"TPM_E_PCP_INVALID_PARAMETER","features":[305]},{"name":"TPM_E_PCP_KEY_HANDLE_INVALIDATED","features":[305]},{"name":"TPM_E_PCP_KEY_NOT_AIK","features":[305]},{"name":"TPM_E_PCP_NOT_SUPPORTED","features":[305]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_MAY_BE_OUTDATED","features":[305]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_OUTDATED","features":[305]},{"name":"TPM_E_PCP_PLATFORM_CLAIM_REBOOT","features":[305]},{"name":"TPM_E_PCP_POLICY_NOT_FOUND","features":[305]},{"name":"TPM_E_PCP_PROFILE_NOT_FOUND","features":[305]},{"name":"TPM_E_PCP_RAW_POLICY_NOT_SUPPORTED","features":[305]},{"name":"TPM_E_PCP_TICKET_MISSING","features":[305]},{"name":"TPM_E_PCP_UNSUPPORTED_PSS_SALT","features":[305]},{"name":"TPM_E_PCP_VALIDATION_FAILED","features":[305]},{"name":"TPM_E_PCP_WRONG_PARENT","features":[305]},{"name":"TPM_E_PERMANENTEK","features":[305]},{"name":"TPM_E_PER_NOWRITE","features":[305]},{"name":"TPM_E_PPI_ACPI_FAILURE","features":[305]},{"name":"TPM_E_PPI_BIOS_FAILURE","features":[305]},{"name":"TPM_E_PPI_BLOCKED_IN_BIOS","features":[305]},{"name":"TPM_E_PPI_NOT_SUPPORTED","features":[305]},{"name":"TPM_E_PPI_USER_ABORT","features":[305]},{"name":"TPM_E_PROVISIONING_INCOMPLETE","features":[305]},{"name":"TPM_E_READ_ONLY","features":[305]},{"name":"TPM_E_REQUIRES_SIGN","features":[305]},{"name":"TPM_E_RESOURCEMISSING","features":[305]},{"name":"TPM_E_RESOURCES","features":[305]},{"name":"TPM_E_RETRY","features":[305]},{"name":"TPM_E_SHA_ERROR","features":[305]},{"name":"TPM_E_SHA_THREAD","features":[305]},{"name":"TPM_E_SHORTRANDOM","features":[305]},{"name":"TPM_E_SIZE","features":[305]},{"name":"TPM_E_SOFT_KEY_ERROR","features":[305]},{"name":"TPM_E_TOOMANYCONTEXTS","features":[305]},{"name":"TPM_E_TOO_MUCH_DATA","features":[305]},{"name":"TPM_E_TPM_GENERATED_EPS","features":[305]},{"name":"TPM_E_TRANSPORT_NOTEXCLUSIVE","features":[305]},{"name":"TPM_E_VERSION_NOT_SUPPORTED","features":[305]},{"name":"TPM_E_WRITE_LOCKED","features":[305]},{"name":"TPM_E_WRONGPCRVAL","features":[305]},{"name":"TPM_E_WRONG_ENTITYTYPE","features":[305]},{"name":"TPM_E_ZERO_EXHAUST_ENABLED","features":[305]},{"name":"TRUE","features":[305]},{"name":"TRUST_E_ACTION_UNKNOWN","features":[305]},{"name":"TRUST_E_BAD_DIGEST","features":[305]},{"name":"TRUST_E_BASIC_CONSTRAINTS","features":[305]},{"name":"TRUST_E_CERT_SIGNATURE","features":[305]},{"name":"TRUST_E_COUNTER_SIGNER","features":[305]},{"name":"TRUST_E_EXPLICIT_DISTRUST","features":[305]},{"name":"TRUST_E_FAIL","features":[305]},{"name":"TRUST_E_FINANCIAL_CRITERIA","features":[305]},{"name":"TRUST_E_MALFORMED_SIGNATURE","features":[305]},{"name":"TRUST_E_NOSIGNATURE","features":[305]},{"name":"TRUST_E_NO_SIGNER_CERT","features":[305]},{"name":"TRUST_E_PROVIDER_UNKNOWN","features":[305]},{"name":"TRUST_E_SUBJECT_FORM_UNKNOWN","features":[305]},{"name":"TRUST_E_SUBJECT_NOT_TRUSTED","features":[305]},{"name":"TRUST_E_SYSTEM_ERROR","features":[305]},{"name":"TRUST_E_TIME_STAMP","features":[305]},{"name":"TYPE_E_AMBIGUOUSNAME","features":[305]},{"name":"TYPE_E_BADMODULEKIND","features":[305]},{"name":"TYPE_E_BUFFERTOOSMALL","features":[305]},{"name":"TYPE_E_CANTCREATETMPFILE","features":[305]},{"name":"TYPE_E_CANTLOADLIBRARY","features":[305]},{"name":"TYPE_E_CIRCULARTYPE","features":[305]},{"name":"TYPE_E_DLLFUNCTIONNOTFOUND","features":[305]},{"name":"TYPE_E_DUPLICATEID","features":[305]},{"name":"TYPE_E_ELEMENTNOTFOUND","features":[305]},{"name":"TYPE_E_FIELDNOTFOUND","features":[305]},{"name":"TYPE_E_INCONSISTENTPROPFUNCS","features":[305]},{"name":"TYPE_E_INVALIDID","features":[305]},{"name":"TYPE_E_INVALIDSTATE","features":[305]},{"name":"TYPE_E_INVDATAREAD","features":[305]},{"name":"TYPE_E_IOERROR","features":[305]},{"name":"TYPE_E_LIBNOTREGISTERED","features":[305]},{"name":"TYPE_E_NAMECONFLICT","features":[305]},{"name":"TYPE_E_OUTOFBOUNDS","features":[305]},{"name":"TYPE_E_QUALIFIEDNAMEDISALLOWED","features":[305]},{"name":"TYPE_E_REGISTRYACCESS","features":[305]},{"name":"TYPE_E_SIZETOOBIG","features":[305]},{"name":"TYPE_E_TYPEMISMATCH","features":[305]},{"name":"TYPE_E_UNDEFINEDTYPE","features":[305]},{"name":"TYPE_E_UNKNOWNLCID","features":[305]},{"name":"TYPE_E_UNSUPFORMAT","features":[305]},{"name":"TYPE_E_WRONGTYPEKIND","features":[305]},{"name":"UCEERR_BLOCKSFULL","features":[305]},{"name":"UCEERR_CHANNELSYNCABANDONED","features":[305]},{"name":"UCEERR_CHANNELSYNCTIMEDOUT","features":[305]},{"name":"UCEERR_COMMANDTRANSPORTDENIED","features":[305]},{"name":"UCEERR_CONNECTIONIDLOOKUPFAILED","features":[305]},{"name":"UCEERR_CTXSTACKFRSTTARGETNULL","features":[305]},{"name":"UCEERR_FEEDBACK_UNSUPPORTED","features":[305]},{"name":"UCEERR_GRAPHICSSTREAMALREADYOPEN","features":[305]},{"name":"UCEERR_GRAPHICSSTREAMUNAVAILABLE","features":[305]},{"name":"UCEERR_HANDLELOOKUPFAILED","features":[305]},{"name":"UCEERR_ILLEGALHANDLE","features":[305]},{"name":"UCEERR_ILLEGALPACKET","features":[305]},{"name":"UCEERR_ILLEGALRECORDTYPE","features":[305]},{"name":"UCEERR_INVALIDPACKETHEADER","features":[305]},{"name":"UCEERR_MALFORMEDPACKET","features":[305]},{"name":"UCEERR_MEMORYFAILURE","features":[305]},{"name":"UCEERR_MISSINGBEGINCOMMAND","features":[305]},{"name":"UCEERR_MISSINGENDCOMMAND","features":[305]},{"name":"UCEERR_NO_MULTIPLE_WORKER_THREADS","features":[305]},{"name":"UCEERR_OUTOFHANDLES","features":[305]},{"name":"UCEERR_PACKETRECORDOUTOFRANGE","features":[305]},{"name":"UCEERR_PARTITION_ZOMBIED","features":[305]},{"name":"UCEERR_REMOTINGNOTSUPPORTED","features":[305]},{"name":"UCEERR_RENDERTHREADFAILURE","features":[305]},{"name":"UCEERR_TRANSPORTDISCONNECTED","features":[305]},{"name":"UCEERR_TRANSPORTOVERLOADED","features":[305]},{"name":"UCEERR_TRANSPORTUNAVAILABLE","features":[305]},{"name":"UCEERR_UNCHANGABLE_UPDATE_ATTEMPTED","features":[305]},{"name":"UCEERR_UNKNOWNPACKET","features":[305]},{"name":"UCEERR_UNSUPPORTEDTRANSPORTVERSION","features":[305]},{"name":"UI_E_AMBIGUOUS_MATCH","features":[305]},{"name":"UI_E_BOOLEAN_EXPECTED","features":[305]},{"name":"UI_E_CREATE_FAILED","features":[305]},{"name":"UI_E_DIFFERENT_OWNER","features":[305]},{"name":"UI_E_END_KEYFRAME_NOT_DETERMINED","features":[305]},{"name":"UI_E_FP_OVERFLOW","features":[305]},{"name":"UI_E_ILLEGAL_REENTRANCY","features":[305]},{"name":"UI_E_INVALID_DIMENSION","features":[305]},{"name":"UI_E_INVALID_OUTPUT","features":[305]},{"name":"UI_E_LOOPS_OVERLAP","features":[305]},{"name":"UI_E_OBJECT_SEALED","features":[305]},{"name":"UI_E_PRIMITIVE_OUT_OF_BOUNDS","features":[305]},{"name":"UI_E_SHUTDOWN_CALLED","features":[305]},{"name":"UI_E_START_KEYFRAME_AFTER_END","features":[305]},{"name":"UI_E_STORYBOARD_ACTIVE","features":[305]},{"name":"UI_E_STORYBOARD_NOT_PLAYING","features":[305]},{"name":"UI_E_TIMER_CLIENT_ALREADY_CONNECTED","features":[305]},{"name":"UI_E_TIME_BEFORE_LAST_UPDATE","features":[305]},{"name":"UI_E_TRANSITION_ALREADY_USED","features":[305]},{"name":"UI_E_TRANSITION_ECLIPSED","features":[305]},{"name":"UI_E_TRANSITION_NOT_IN_STORYBOARD","features":[305]},{"name":"UI_E_VALUE_NOT_DETERMINED","features":[305]},{"name":"UI_E_VALUE_NOT_SET","features":[305]},{"name":"UI_E_WINDOW_CLOSED","features":[305]},{"name":"UI_E_WRONG_THREAD","features":[305]},{"name":"UNICODE_STRING","features":[305]},{"name":"UTC_E_ACTION_NOT_SUPPORTED_IN_DESTINATION","features":[305]},{"name":"UTC_E_AGENT_DIAGNOSTICS_TOO_LARGE","features":[305]},{"name":"UTC_E_ALTERNATIVE_TRACE_CANNOT_PREEMPT","features":[305]},{"name":"UTC_E_AOT_NOT_RUNNING","features":[305]},{"name":"UTC_E_API_BUSY","features":[305]},{"name":"UTC_E_API_NOT_SUPPORTED","features":[305]},{"name":"UTC_E_API_RESULT_UNAVAILABLE","features":[305]},{"name":"UTC_E_BINARY_MISSING","features":[305]},{"name":"UTC_E_CANNOT_LOAD_SCENARIO_EDITOR_XML","features":[305]},{"name":"UTC_E_CERT_REV_FAILED","features":[305]},{"name":"UTC_E_CHILD_PROCESS_FAILED","features":[305]},{"name":"UTC_E_COMMAND_LINE_NOT_AUTHORIZED","features":[305]},{"name":"UTC_E_DELAY_TERMINATED","features":[305]},{"name":"UTC_E_DEVICE_TICKET_ERROR","features":[305]},{"name":"UTC_E_DIAGRULES_SCHEMAVERSION_MISMATCH","features":[305]},{"name":"UTC_E_ESCALATION_ALREADY_RUNNING","features":[305]},{"name":"UTC_E_ESCALATION_CANCELLED_AT_SHUTDOWN","features":[305]},{"name":"UTC_E_ESCALATION_DIRECTORY_ALREADY_EXISTS","features":[305]},{"name":"UTC_E_ESCALATION_NOT_AUTHORIZED","features":[305]},{"name":"UTC_E_ESCALATION_TIMED_OUT","features":[305]},{"name":"UTC_E_EVENTLOG_ENTRY_MALFORMED","features":[305]},{"name":"UTC_E_EXCLUSIVITY_NOT_AVAILABLE","features":[305]},{"name":"UTC_E_EXE_TERMINATED","features":[305]},{"name":"UTC_E_FAILED_TO_RECEIVE_AGENT_DIAGNOSTICS","features":[305]},{"name":"UTC_E_FAILED_TO_RESOLVE_CONTAINER_ID","features":[305]},{"name":"UTC_E_FAILED_TO_START_NDISCAP","features":[305]},{"name":"UTC_E_FILTER_FUNCTION_RESTRICTED","features":[305]},{"name":"UTC_E_FILTER_ILLEGAL_EVAL","features":[305]},{"name":"UTC_E_FILTER_INVALID_COMMAND","features":[305]},{"name":"UTC_E_FILTER_INVALID_FUNCTION","features":[305]},{"name":"UTC_E_FILTER_INVALID_FUNCTION_PARAMS","features":[305]},{"name":"UTC_E_FILTER_INVALID_TYPE","features":[305]},{"name":"UTC_E_FILTER_MISSING_ATTRIBUTE","features":[305]},{"name":"UTC_E_FILTER_VARIABLE_NOT_FOUND","features":[305]},{"name":"UTC_E_FILTER_VERSION_MISMATCH","features":[305]},{"name":"UTC_E_FORWARDER_ALREADY_DISABLED","features":[305]},{"name":"UTC_E_FORWARDER_ALREADY_ENABLED","features":[305]},{"name":"UTC_E_FORWARDER_PRODUCER_MISMATCH","features":[305]},{"name":"UTC_E_GETFILEINFOACTION_FILE_NOT_APPROVED","features":[305]},{"name":"UTC_E_GETFILE_EXTERNAL_PATH_NOT_APPROVED","features":[305]},{"name":"UTC_E_GETFILE_FILE_PATH_NOT_APPROVED","features":[305]},{"name":"UTC_E_INSUFFICIENT_SPACE_TO_START_TRACE","features":[305]},{"name":"UTC_E_INTENTIONAL_SCRIPT_FAILURE","features":[305]},{"name":"UTC_E_INVALID_AGGREGATION_STRUCT","features":[305]},{"name":"UTC_E_INVALID_CUSTOM_FILTER","features":[305]},{"name":"UTC_E_INVALID_FILTER","features":[305]},{"name":"UTC_E_KERNELDUMP_LIMIT_REACHED","features":[305]},{"name":"UTC_E_MISSING_AGGREGATE_EVENT_TAG","features":[305]},{"name":"UTC_E_MULTIPLE_TIME_TRIGGER_ON_SINGLE_STATE","features":[305]},{"name":"UTC_E_NO_WER_LOGGER_SUPPORTED","features":[305]},{"name":"UTC_E_PERFTRACK_ALREADY_TRACING","features":[305]},{"name":"UTC_E_REACHED_MAX_ESCALATIONS","features":[305]},{"name":"UTC_E_REESCALATED_TOO_QUICKLY","features":[305]},{"name":"UTC_E_RPC_TIMEOUT","features":[305]},{"name":"UTC_E_RPC_WAIT_FAILED","features":[305]},{"name":"UTC_E_SCENARIODEF_NOT_FOUND","features":[305]},{"name":"UTC_E_SCENARIODEF_SCHEMAVERSION_MISMATCH","features":[305]},{"name":"UTC_E_SCENARIO_HAS_NO_ACTIONS","features":[305]},{"name":"UTC_E_SCENARIO_THROTTLED","features":[305]},{"name":"UTC_E_SCRIPT_MISSING","features":[305]},{"name":"UTC_E_SCRIPT_TERMINATED","features":[305]},{"name":"UTC_E_SCRIPT_TYPE_INVALID","features":[305]},{"name":"UTC_E_SETREGKEYACTION_TYPE_NOT_APPROVED","features":[305]},{"name":"UTC_E_SETUP_NOT_AUTHORIZED","features":[305]},{"name":"UTC_E_SETUP_TIMED_OUT","features":[305]},{"name":"UTC_E_SIF_NOT_SUPPORTED","features":[305]},{"name":"UTC_E_SQM_INIT_FAILED","features":[305]},{"name":"UTC_E_THROTTLED","features":[305]},{"name":"UTC_E_TIME_TRIGGER_INVALID_TIME_RANGE","features":[305]},{"name":"UTC_E_TIME_TRIGGER_ONLY_VALID_ON_SINGLE_TRANSITION","features":[305]},{"name":"UTC_E_TIME_TRIGGER_ON_START_INVALID","features":[305]},{"name":"UTC_E_TOGGLE_TRACE_STARTED","features":[305]},{"name":"UTC_E_TRACEPROFILE_NOT_FOUND","features":[305]},{"name":"UTC_E_TRACERS_DONT_EXIST","features":[305]},{"name":"UTC_E_TRACE_BUFFER_LIMIT_EXCEEDED","features":[305]},{"name":"UTC_E_TRACE_MIN_DURATION_REQUIREMENT_NOT_MET","features":[305]},{"name":"UTC_E_TRACE_NOT_RUNNING","features":[305]},{"name":"UTC_E_TRACE_THROTTLED","features":[305]},{"name":"UTC_E_TRIGGER_MISMATCH","features":[305]},{"name":"UTC_E_TRIGGER_NOT_FOUND","features":[305]},{"name":"UTC_E_TRY_GET_SCENARIO_TIMEOUT_EXCEEDED","features":[305]},{"name":"UTC_E_TTTRACER_RETURNED_ERROR","features":[305]},{"name":"UTC_E_TTTRACER_STORAGE_FULL","features":[305]},{"name":"UTC_E_UNABLE_TO_RESOLVE_SESSION","features":[305]},{"name":"UTC_E_UNAPPROVED_SCRIPT","features":[305]},{"name":"UTC_E_WINRT_INIT_FAILED","features":[305]},{"name":"VARIANT_BOOL","features":[305]},{"name":"VARIANT_FALSE","features":[305]},{"name":"VARIANT_TRUE","features":[305]},{"name":"VIEW_E_DRAW","features":[305]},{"name":"VIEW_E_FIRST","features":[305]},{"name":"VIEW_E_LAST","features":[305]},{"name":"VIEW_S_ALREADY_FROZEN","features":[305]},{"name":"VIEW_S_FIRST","features":[305]},{"name":"VIEW_S_LAST","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_GUEST_MEMORY_NOT_FOUND","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_INVALID_VP_STATE","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_NESTED_VIRTUALIZATION_NOT_SUPPORTED","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_NO_VP_FOUND_IN_PARTITION_STATE","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_PARTITION_STATE_NOT_FOUND","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_VA_NOT_MAPPED","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_VP_VTL_NOT_ENABLED","features":[305]},{"name":"VM_SAVED_STATE_DUMP_E_WINDOWS_KERNEL_IMAGE_NOT_FOUND","features":[305]},{"name":"VOLMGR_KSR_BYPASS","features":[305]},{"name":"VOLMGR_KSR_ERROR","features":[305]},{"name":"VOLMGR_KSR_READ_ERROR","features":[305]},{"name":"WAIT_ABANDONED","features":[305]},{"name":"WAIT_ABANDONED_0","features":[305]},{"name":"WAIT_EVENT","features":[305]},{"name":"WAIT_FAILED","features":[305]},{"name":"WAIT_IO_COMPLETION","features":[305]},{"name":"WAIT_OBJECT_0","features":[305]},{"name":"WAIT_TIMEOUT","features":[305]},{"name":"WARNING_IPSEC_MM_POLICY_PRUNED","features":[305]},{"name":"WARNING_IPSEC_QM_POLICY_PRUNED","features":[305]},{"name":"WARNING_NO_MD5_MIGRATION","features":[305]},{"name":"WBREAK_E_BUFFER_TOO_SMALL","features":[305]},{"name":"WBREAK_E_END_OF_TEXT","features":[305]},{"name":"WBREAK_E_INIT_FAILED","features":[305]},{"name":"WBREAK_E_QUERY_ONLY","features":[305]},{"name":"WEB_E_INVALID_JSON_NUMBER","features":[305]},{"name":"WEB_E_INVALID_JSON_STRING","features":[305]},{"name":"WEB_E_INVALID_XML","features":[305]},{"name":"WEB_E_JSON_VALUE_NOT_FOUND","features":[305]},{"name":"WEB_E_MISSING_REQUIRED_ATTRIBUTE","features":[305]},{"name":"WEB_E_MISSING_REQUIRED_ELEMENT","features":[305]},{"name":"WEB_E_RESOURCE_TOO_LARGE","features":[305]},{"name":"WEB_E_UNEXPECTED_CONTENT","features":[305]},{"name":"WEB_E_UNSUPPORTED_FORMAT","features":[305]},{"name":"WEP_E_BUFFER_TOO_LARGE","features":[305]},{"name":"WEP_E_FIXED_DATA_NOT_SUPPORTED","features":[305]},{"name":"WEP_E_HARDWARE_NOT_COMPLIANT","features":[305]},{"name":"WEP_E_LOCK_NOT_CONFIGURED","features":[305]},{"name":"WEP_E_NOT_PROVISIONED_ON_ALL_VOLUMES","features":[305]},{"name":"WEP_E_NO_LICENSE","features":[305]},{"name":"WEP_E_OS_NOT_PROTECTED","features":[305]},{"name":"WEP_E_PROTECTION_SUSPENDED","features":[305]},{"name":"WEP_E_UNEXPECTED_FAIL","features":[305]},{"name":"WER_E_ALREADY_REPORTING","features":[305]},{"name":"WER_E_CANCELED","features":[305]},{"name":"WER_E_CRASH_FAILURE","features":[305]},{"name":"WER_E_DUMP_THROTTLED","features":[305]},{"name":"WER_E_INSUFFICIENT_CONSENT","features":[305]},{"name":"WER_E_NETWORK_FAILURE","features":[305]},{"name":"WER_E_NOT_INITIALIZED","features":[305]},{"name":"WER_E_TOO_HEAVY","features":[305]},{"name":"WER_S_ASSERT_CONTINUE","features":[305]},{"name":"WER_S_DISABLED","features":[305]},{"name":"WER_S_DISABLED_ARCHIVE","features":[305]},{"name":"WER_S_DISABLED_QUEUE","features":[305]},{"name":"WER_S_IGNORE_ALL_ASSERTS","features":[305]},{"name":"WER_S_IGNORE_ASSERT_INSTANCE","features":[305]},{"name":"WER_S_REPORT_ASYNC","features":[305]},{"name":"WER_S_REPORT_DEBUG","features":[305]},{"name":"WER_S_REPORT_QUEUED","features":[305]},{"name":"WER_S_REPORT_UPLOADED","features":[305]},{"name":"WER_S_REPORT_UPLOADED_CAB","features":[305]},{"name":"WER_S_SUSPENDED_UPLOAD","features":[305]},{"name":"WER_S_THROTTLED","features":[305]},{"name":"WHV_E_GPA_RANGE_NOT_FOUND","features":[305]},{"name":"WHV_E_INSUFFICIENT_BUFFER","features":[305]},{"name":"WHV_E_INVALID_PARTITION_CONFIG","features":[305]},{"name":"WHV_E_INVALID_VP_REGISTER_NAME","features":[305]},{"name":"WHV_E_INVALID_VP_STATE","features":[305]},{"name":"WHV_E_UNKNOWN_CAPABILITY","features":[305]},{"name":"WHV_E_UNKNOWN_PROPERTY","features":[305]},{"name":"WHV_E_UNSUPPORTED_HYPERVISOR_CONFIG","features":[305]},{"name":"WHV_E_UNSUPPORTED_PROCESSOR_CONFIG","features":[305]},{"name":"WHV_E_VP_ALREADY_EXISTS","features":[305]},{"name":"WHV_E_VP_DOES_NOT_EXIST","features":[305]},{"name":"WIN32_ERROR","features":[305]},{"name":"WINCODEC_ERR_ALREADYLOCKED","features":[305]},{"name":"WINCODEC_ERR_BADHEADER","features":[305]},{"name":"WINCODEC_ERR_BADIMAGE","features":[305]},{"name":"WINCODEC_ERR_BADMETADATAHEADER","features":[305]},{"name":"WINCODEC_ERR_BADSTREAMDATA","features":[305]},{"name":"WINCODEC_ERR_CODECNOTHUMBNAIL","features":[305]},{"name":"WINCODEC_ERR_CODECPRESENT","features":[305]},{"name":"WINCODEC_ERR_CODECTOOMANYSCANLINES","features":[305]},{"name":"WINCODEC_ERR_COMPONENTINITIALIZEFAILURE","features":[305]},{"name":"WINCODEC_ERR_COMPONENTNOTFOUND","features":[305]},{"name":"WINCODEC_ERR_DUPLICATEMETADATAPRESENT","features":[305]},{"name":"WINCODEC_ERR_FRAMEMISSING","features":[305]},{"name":"WINCODEC_ERR_IMAGESIZEOUTOFRANGE","features":[305]},{"name":"WINCODEC_ERR_INSUFFICIENTBUFFER","features":[305]},{"name":"WINCODEC_ERR_INTERNALERROR","features":[305]},{"name":"WINCODEC_ERR_INVALIDJPEGSCANINDEX","features":[305]},{"name":"WINCODEC_ERR_INVALIDPROGRESSIVELEVEL","features":[305]},{"name":"WINCODEC_ERR_INVALIDQUERYCHARACTER","features":[305]},{"name":"WINCODEC_ERR_INVALIDQUERYREQUEST","features":[305]},{"name":"WINCODEC_ERR_INVALIDREGISTRATION","features":[305]},{"name":"WINCODEC_ERR_NOTINITIALIZED","features":[305]},{"name":"WINCODEC_ERR_PALETTEUNAVAILABLE","features":[305]},{"name":"WINCODEC_ERR_PROPERTYNOTFOUND","features":[305]},{"name":"WINCODEC_ERR_PROPERTYNOTSUPPORTED","features":[305]},{"name":"WINCODEC_ERR_PROPERTYSIZE","features":[305]},{"name":"WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE","features":[305]},{"name":"WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT","features":[305]},{"name":"WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS","features":[305]},{"name":"WINCODEC_ERR_STREAMNOTAVAILABLE","features":[305]},{"name":"WINCODEC_ERR_STREAMREAD","features":[305]},{"name":"WINCODEC_ERR_STREAMWRITE","features":[305]},{"name":"WINCODEC_ERR_TOOMUCHMETADATA","features":[305]},{"name":"WINCODEC_ERR_UNEXPECTEDMETADATATYPE","features":[305]},{"name":"WINCODEC_ERR_UNEXPECTEDSIZE","features":[305]},{"name":"WINCODEC_ERR_UNKNOWNIMAGEFORMAT","features":[305]},{"name":"WINCODEC_ERR_UNSUPPORTEDOPERATION","features":[305]},{"name":"WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT","features":[305]},{"name":"WINCODEC_ERR_UNSUPPORTEDVERSION","features":[305]},{"name":"WINCODEC_ERR_VALUEOUTOFRANGE","features":[305]},{"name":"WINCODEC_ERR_WIN32ERROR","features":[305]},{"name":"WINCODEC_ERR_WRONGSTATE","features":[305]},{"name":"WININET_E_ASYNC_THREAD_FAILED","features":[305]},{"name":"WININET_E_BAD_AUTO_PROXY_SCRIPT","features":[305]},{"name":"WININET_E_BAD_OPTION_LENGTH","features":[305]},{"name":"WININET_E_BAD_REGISTRY_PARAMETER","features":[305]},{"name":"WININET_E_CANNOT_CONNECT","features":[305]},{"name":"WININET_E_CHG_POST_IS_NON_SECURE","features":[305]},{"name":"WININET_E_CLIENT_AUTH_CERT_NEEDED","features":[305]},{"name":"WININET_E_CLIENT_AUTH_NOT_SETUP","features":[305]},{"name":"WININET_E_CONNECTION_ABORTED","features":[305]},{"name":"WININET_E_CONNECTION_RESET","features":[305]},{"name":"WININET_E_COOKIE_DECLINED","features":[305]},{"name":"WININET_E_COOKIE_NEEDS_CONFIRMATION","features":[305]},{"name":"WININET_E_DECODING_FAILED","features":[305]},{"name":"WININET_E_DIALOG_PENDING","features":[305]},{"name":"WININET_E_DISCONNECTED","features":[305]},{"name":"WININET_E_DOWNLEVEL_SERVER","features":[305]},{"name":"WININET_E_EXTENDED_ERROR","features":[305]},{"name":"WININET_E_FAILED_DUETOSECURITYCHECK","features":[305]},{"name":"WININET_E_FORCE_RETRY","features":[305]},{"name":"WININET_E_HANDLE_EXISTS","features":[305]},{"name":"WININET_E_HEADER_ALREADY_EXISTS","features":[305]},{"name":"WININET_E_HEADER_NOT_FOUND","features":[305]},{"name":"WININET_E_HTTPS_HTTP_SUBMIT_REDIR","features":[305]},{"name":"WININET_E_HTTPS_TO_HTTP_ON_REDIR","features":[305]},{"name":"WININET_E_HTTP_TO_HTTPS_ON_REDIR","features":[305]},{"name":"WININET_E_INCORRECT_FORMAT","features":[305]},{"name":"WININET_E_INCORRECT_HANDLE_STATE","features":[305]},{"name":"WININET_E_INCORRECT_HANDLE_TYPE","features":[305]},{"name":"WININET_E_INCORRECT_PASSWORD","features":[305]},{"name":"WININET_E_INCORRECT_USER_NAME","features":[305]},{"name":"WININET_E_INTERNAL_ERROR","features":[305]},{"name":"WININET_E_INVALID_CA","features":[305]},{"name":"WININET_E_INVALID_HEADER","features":[305]},{"name":"WININET_E_INVALID_OPERATION","features":[305]},{"name":"WININET_E_INVALID_OPTION","features":[305]},{"name":"WININET_E_INVALID_PROXY_REQUEST","features":[305]},{"name":"WININET_E_INVALID_QUERY_REQUEST","features":[305]},{"name":"WININET_E_INVALID_SERVER_RESPONSE","features":[305]},{"name":"WININET_E_INVALID_URL","features":[305]},{"name":"WININET_E_ITEM_NOT_FOUND","features":[305]},{"name":"WININET_E_LOGIN_FAILURE","features":[305]},{"name":"WININET_E_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[305]},{"name":"WININET_E_MIXED_SECURITY","features":[305]},{"name":"WININET_E_NAME_NOT_RESOLVED","features":[305]},{"name":"WININET_E_NEED_UI","features":[305]},{"name":"WININET_E_NOT_INITIALIZED","features":[305]},{"name":"WININET_E_NOT_PROXY_REQUEST","features":[305]},{"name":"WININET_E_NOT_REDIRECTED","features":[305]},{"name":"WININET_E_NO_CALLBACK","features":[305]},{"name":"WININET_E_NO_CONTEXT","features":[305]},{"name":"WININET_E_NO_DIRECT_ACCESS","features":[305]},{"name":"WININET_E_NO_NEW_CONTAINERS","features":[305]},{"name":"WININET_E_OPERATION_CANCELLED","features":[305]},{"name":"WININET_E_OPTION_NOT_SETTABLE","features":[305]},{"name":"WININET_E_OUT_OF_HANDLES","features":[305]},{"name":"WININET_E_POST_IS_NON_SECURE","features":[305]},{"name":"WININET_E_PROTOCOL_NOT_FOUND","features":[305]},{"name":"WININET_E_PROXY_SERVER_UNREACHABLE","features":[305]},{"name":"WININET_E_REDIRECT_FAILED","features":[305]},{"name":"WININET_E_REDIRECT_NEEDS_CONFIRMATION","features":[305]},{"name":"WININET_E_REDIRECT_SCHEME_CHANGE","features":[305]},{"name":"WININET_E_REGISTRY_VALUE_NOT_FOUND","features":[305]},{"name":"WININET_E_REQUEST_PENDING","features":[305]},{"name":"WININET_E_RETRY_DIALOG","features":[305]},{"name":"WININET_E_SECURITY_CHANNEL_ERROR","features":[305]},{"name":"WININET_E_SEC_CERT_CN_INVALID","features":[305]},{"name":"WININET_E_SEC_CERT_DATE_INVALID","features":[305]},{"name":"WININET_E_SEC_CERT_ERRORS","features":[305]},{"name":"WININET_E_SEC_CERT_REVOKED","features":[305]},{"name":"WININET_E_SEC_CERT_REV_FAILED","features":[305]},{"name":"WININET_E_SEC_INVALID_CERT","features":[305]},{"name":"WININET_E_SERVER_UNREACHABLE","features":[305]},{"name":"WININET_E_SHUTDOWN","features":[305]},{"name":"WININET_E_TCPIP_NOT_INSTALLED","features":[305]},{"name":"WININET_E_TIMEOUT","features":[305]},{"name":"WININET_E_UNABLE_TO_CACHE_FILE","features":[305]},{"name":"WININET_E_UNABLE_TO_DOWNLOAD_SCRIPT","features":[305]},{"name":"WININET_E_UNRECOGNIZED_SCHEME","features":[305]},{"name":"WINML_ERR_INVALID_BINDING","features":[305]},{"name":"WINML_ERR_INVALID_DEVICE","features":[305]},{"name":"WINML_ERR_SIZE_MISMATCH","features":[305]},{"name":"WINML_ERR_VALUE_NOTFOUND","features":[305]},{"name":"WINVER","features":[305]},{"name":"WINVER_MAXVER","features":[305]},{"name":"WPARAM","features":[305]},{"name":"WPN_E_ACCESS_DENIED","features":[305]},{"name":"WPN_E_ALL_URL_NOT_COMPLETED","features":[305]},{"name":"WPN_E_CALLBACK_ALREADY_REGISTERED","features":[305]},{"name":"WPN_E_CHANNEL_CLOSED","features":[305]},{"name":"WPN_E_CHANNEL_REQUEST_NOT_COMPLETE","features":[305]},{"name":"WPN_E_CLOUD_AUTH_UNAVAILABLE","features":[305]},{"name":"WPN_E_CLOUD_DISABLED","features":[305]},{"name":"WPN_E_CLOUD_DISABLED_FOR_APP","features":[305]},{"name":"WPN_E_CLOUD_INCAPABLE","features":[305]},{"name":"WPN_E_CLOUD_SERVICE_UNAVAILABLE","features":[305]},{"name":"WPN_E_DEV_ID_SIZE","features":[305]},{"name":"WPN_E_DUPLICATE_CHANNEL","features":[305]},{"name":"WPN_E_DUPLICATE_REGISTRATION","features":[305]},{"name":"WPN_E_FAILED_LOCK_SCREEN_UPDATE_INTIALIZATION","features":[305]},{"name":"WPN_E_GROUP_ALPHANUMERIC","features":[305]},{"name":"WPN_E_GROUP_SIZE","features":[305]},{"name":"WPN_E_IMAGE_NOT_FOUND_IN_CACHE","features":[305]},{"name":"WPN_E_INTERNET_INCAPABLE","features":[305]},{"name":"WPN_E_INVALID_APP","features":[305]},{"name":"WPN_E_INVALID_CLOUD_IMAGE","features":[305]},{"name":"WPN_E_INVALID_HTTP_STATUS_CODE","features":[305]},{"name":"WPN_E_NOTIFICATION_DISABLED","features":[305]},{"name":"WPN_E_NOTIFICATION_HIDDEN","features":[305]},{"name":"WPN_E_NOTIFICATION_ID_MATCHED","features":[305]},{"name":"WPN_E_NOTIFICATION_INCAPABLE","features":[305]},{"name":"WPN_E_NOTIFICATION_NOT_POSTED","features":[305]},{"name":"WPN_E_NOTIFICATION_POSTED","features":[305]},{"name":"WPN_E_NOTIFICATION_SIZE","features":[305]},{"name":"WPN_E_NOTIFICATION_TYPE_DISABLED","features":[305]},{"name":"WPN_E_OUTSTANDING_CHANNEL_REQUEST","features":[305]},{"name":"WPN_E_OUT_OF_SESSION","features":[305]},{"name":"WPN_E_PLATFORM_UNAVAILABLE","features":[305]},{"name":"WPN_E_POWER_SAVE","features":[305]},{"name":"WPN_E_PUSH_NOTIFICATION_INCAPABLE","features":[305]},{"name":"WPN_E_STORAGE_LOCKED","features":[305]},{"name":"WPN_E_TAG_ALPHANUMERIC","features":[305]},{"name":"WPN_E_TAG_SIZE","features":[305]},{"name":"WPN_E_TOAST_NOTIFICATION_DROPPED","features":[305]},{"name":"WS_E_ADDRESS_IN_USE","features":[305]},{"name":"WS_E_ADDRESS_NOT_AVAILABLE","features":[305]},{"name":"WS_E_ENDPOINT_ACCESS_DENIED","features":[305]},{"name":"WS_E_ENDPOINT_ACTION_NOT_SUPPORTED","features":[305]},{"name":"WS_E_ENDPOINT_DISCONNECTED","features":[305]},{"name":"WS_E_ENDPOINT_FAILURE","features":[305]},{"name":"WS_E_ENDPOINT_FAULT_RECEIVED","features":[305]},{"name":"WS_E_ENDPOINT_NOT_AVAILABLE","features":[305]},{"name":"WS_E_ENDPOINT_NOT_FOUND","features":[305]},{"name":"WS_E_ENDPOINT_TOO_BUSY","features":[305]},{"name":"WS_E_ENDPOINT_UNREACHABLE","features":[305]},{"name":"WS_E_INVALID_ENDPOINT_URL","features":[305]},{"name":"WS_E_INVALID_FORMAT","features":[305]},{"name":"WS_E_INVALID_OPERATION","features":[305]},{"name":"WS_E_NOT_SUPPORTED","features":[305]},{"name":"WS_E_NO_TRANSLATION_AVAILABLE","features":[305]},{"name":"WS_E_NUMERIC_OVERFLOW","features":[305]},{"name":"WS_E_OBJECT_FAULTED","features":[305]},{"name":"WS_E_OPERATION_ABANDONED","features":[305]},{"name":"WS_E_OPERATION_ABORTED","features":[305]},{"name":"WS_E_OPERATION_TIMED_OUT","features":[305]},{"name":"WS_E_OTHER","features":[305]},{"name":"WS_E_PROXY_ACCESS_DENIED","features":[305]},{"name":"WS_E_PROXY_FAILURE","features":[305]},{"name":"WS_E_PROXY_REQUIRES_BASIC_AUTH","features":[305]},{"name":"WS_E_PROXY_REQUIRES_DIGEST_AUTH","features":[305]},{"name":"WS_E_PROXY_REQUIRES_NEGOTIATE_AUTH","features":[305]},{"name":"WS_E_PROXY_REQUIRES_NTLM_AUTH","features":[305]},{"name":"WS_E_QUOTA_EXCEEDED","features":[305]},{"name":"WS_E_SECURITY_SYSTEM_FAILURE","features":[305]},{"name":"WS_E_SECURITY_TOKEN_EXPIRED","features":[305]},{"name":"WS_E_SECURITY_VERIFICATION_FAILURE","features":[305]},{"name":"WS_E_SERVER_REQUIRES_BASIC_AUTH","features":[305]},{"name":"WS_E_SERVER_REQUIRES_DIGEST_AUTH","features":[305]},{"name":"WS_E_SERVER_REQUIRES_NEGOTIATE_AUTH","features":[305]},{"name":"WS_E_SERVER_REQUIRES_NTLM_AUTH","features":[305]},{"name":"WS_S_ASYNC","features":[305]},{"name":"WS_S_END","features":[305]},{"name":"XACT_E_ABORTED","features":[305]},{"name":"XACT_E_ABORTING","features":[305]},{"name":"XACT_E_ALREADYINPROGRESS","features":[305]},{"name":"XACT_E_ALREADYOTHERSINGLEPHASE","features":[305]},{"name":"XACT_E_CANTRETAIN","features":[305]},{"name":"XACT_E_CLERKEXISTS","features":[305]},{"name":"XACT_E_CLERKNOTFOUND","features":[305]},{"name":"XACT_E_COMMITFAILED","features":[305]},{"name":"XACT_E_COMMITPREVENTED","features":[305]},{"name":"XACT_E_CONNECTION_DENIED","features":[305]},{"name":"XACT_E_CONNECTION_DOWN","features":[305]},{"name":"XACT_E_DEST_TMNOTAVAILABLE","features":[305]},{"name":"XACT_E_FIRST","features":[305]},{"name":"XACT_E_HEURISTICABORT","features":[305]},{"name":"XACT_E_HEURISTICCOMMIT","features":[305]},{"name":"XACT_E_HEURISTICDAMAGE","features":[305]},{"name":"XACT_E_HEURISTICDANGER","features":[305]},{"name":"XACT_E_INDOUBT","features":[305]},{"name":"XACT_E_INVALIDCOOKIE","features":[305]},{"name":"XACT_E_INVALIDLSN","features":[305]},{"name":"XACT_E_ISOLATIONLEVEL","features":[305]},{"name":"XACT_E_LAST","features":[305]},{"name":"XACT_E_LOGFULL","features":[305]},{"name":"XACT_E_LU_TX_DISABLED","features":[305]},{"name":"XACT_E_NETWORK_TX_DISABLED","features":[305]},{"name":"XACT_E_NOASYNC","features":[305]},{"name":"XACT_E_NOENLIST","features":[305]},{"name":"XACT_E_NOIMPORTOBJECT","features":[305]},{"name":"XACT_E_NOISORETAIN","features":[305]},{"name":"XACT_E_NORESOURCE","features":[305]},{"name":"XACT_E_NOTCURRENT","features":[305]},{"name":"XACT_E_NOTIMEOUT","features":[305]},{"name":"XACT_E_NOTRANSACTION","features":[305]},{"name":"XACT_E_NOTSUPPORTED","features":[305]},{"name":"XACT_E_PARTNER_NETWORK_TX_DISABLED","features":[305]},{"name":"XACT_E_PULL_COMM_FAILURE","features":[305]},{"name":"XACT_E_PUSH_COMM_FAILURE","features":[305]},{"name":"XACT_E_RECOVERYINPROGRESS","features":[305]},{"name":"XACT_E_REENLISTTIMEOUT","features":[305]},{"name":"XACT_E_REPLAYREQUEST","features":[305]},{"name":"XACT_E_TIP_CONNECT_FAILED","features":[305]},{"name":"XACT_E_TIP_DISABLED","features":[305]},{"name":"XACT_E_TIP_PROTOCOL_ERROR","features":[305]},{"name":"XACT_E_TIP_PULL_FAILED","features":[305]},{"name":"XACT_E_TMNOTAVAILABLE","features":[305]},{"name":"XACT_E_TRANSACTIONCLOSED","features":[305]},{"name":"XACT_E_UNABLE_TO_LOAD_DTC_PROXY","features":[305]},{"name":"XACT_E_UNABLE_TO_READ_DTC_CONFIG","features":[305]},{"name":"XACT_E_UNKNOWNRMGRID","features":[305]},{"name":"XACT_E_WRONGSTATE","features":[305]},{"name":"XACT_E_WRONGUOW","features":[305]},{"name":"XACT_E_XA_TX_DISABLED","features":[305]},{"name":"XACT_E_XTIONEXISTS","features":[305]},{"name":"XACT_S_ABORTING","features":[305]},{"name":"XACT_S_ALLNORETAIN","features":[305]},{"name":"XACT_S_ASYNC","features":[305]},{"name":"XACT_S_DEFECT","features":[305]},{"name":"XACT_S_FIRST","features":[305]},{"name":"XACT_S_LAST","features":[305]},{"name":"XACT_S_LASTRESOURCEMANAGER","features":[305]},{"name":"XACT_S_LOCALLY_OK","features":[305]},{"name":"XACT_S_MADECHANGESCONTENT","features":[305]},{"name":"XACT_S_MADECHANGESINFORM","features":[305]},{"name":"XACT_S_OKINFORM","features":[305]},{"name":"XACT_S_READONLY","features":[305]},{"name":"XACT_S_SINGLEPHASE","features":[305]},{"name":"XACT_S_SOMENORETAIN","features":[305]},{"name":"XENROLL_E_CANNOT_ADD_ROOT_CERT","features":[305]},{"name":"XENROLL_E_KEYSPEC_SMIME_MISMATCH","features":[305]},{"name":"XENROLL_E_KEY_NOT_EXPORTABLE","features":[305]},{"name":"XENROLL_E_RESPONSE_KA_HASH_MISMATCH","features":[305]},{"name":"XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND","features":[305]},{"name":"XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH","features":[305]},{"name":"_WIN32_IE_MAXVER","features":[305]},{"name":"_WIN32_MAXVER","features":[305]},{"name":"_WIN32_WINDOWS_MAXVER","features":[305]},{"name":"_WIN32_WINNT_MAXVER","features":[305]}],"393":[{"name":"CheckGamingPrivilegeSilently","features":[305,390]},{"name":"CheckGamingPrivilegeSilentlyForUser","features":[305,390]},{"name":"CheckGamingPrivilegeWithUI","features":[390]},{"name":"CheckGamingPrivilegeWithUIForUser","features":[390]},{"name":"GAMESTATS_OPEN_CREATED","features":[390]},{"name":"GAMESTATS_OPEN_OPENED","features":[390]},{"name":"GAMESTATS_OPEN_OPENONLY","features":[390]},{"name":"GAMESTATS_OPEN_OPENORCREATE","features":[390]},{"name":"GAMESTATS_OPEN_RESULT","features":[390]},{"name":"GAMESTATS_OPEN_TYPE","features":[390]},{"name":"GAME_INSTALL_SCOPE","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_NONE","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_S","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_ONE_X_DEVKIT","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_S","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X","features":[390]},{"name":"GAMING_DEVICE_DEVICE_ID_XBOX_SERIES_X_DEVKIT","features":[390]},{"name":"GAMING_DEVICE_MODEL_INFORMATION","features":[390]},{"name":"GAMING_DEVICE_VENDOR_ID","features":[390]},{"name":"GAMING_DEVICE_VENDOR_ID_MICROSOFT","features":[390]},{"name":"GAMING_DEVICE_VENDOR_ID_NONE","features":[390]},{"name":"GIS_ALL_USERS","features":[390]},{"name":"GIS_CURRENT_USER","features":[390]},{"name":"GIS_NOT_INSTALLED","features":[390]},{"name":"GameExplorer","features":[390]},{"name":"GameStatistics","features":[390]},{"name":"GameUICompletionRoutine","features":[390]},{"name":"GetExpandedResourceExclusiveCpuCount","features":[390]},{"name":"GetGamingDeviceModelInformation","features":[390]},{"name":"HasExpandedResources","features":[305,390]},{"name":"ID_GDF_THUMBNAIL_STR","features":[390]},{"name":"ID_GDF_XML_STR","features":[390]},{"name":"IGameExplorer","features":[390]},{"name":"IGameExplorer2","features":[390]},{"name":"IGameStatistics","features":[390]},{"name":"IGameStatisticsMgr","features":[390]},{"name":"IXblIdpAuthManager","features":[390]},{"name":"IXblIdpAuthManager2","features":[390]},{"name":"IXblIdpAuthTokenResult","features":[390]},{"name":"IXblIdpAuthTokenResult2","features":[390]},{"name":"KnownGamingPrivileges","features":[390]},{"name":"PlayerPickerUICompletionRoutine","features":[390]},{"name":"ProcessPendingGameUI","features":[305,390]},{"name":"ReleaseExclusiveCpuSets","features":[390]},{"name":"ShowChangeFriendRelationshipUI","features":[390]},{"name":"ShowChangeFriendRelationshipUIForUser","features":[390]},{"name":"ShowCustomizeUserProfileUI","features":[390]},{"name":"ShowCustomizeUserProfileUIForUser","features":[390]},{"name":"ShowFindFriendsUI","features":[390]},{"name":"ShowFindFriendsUIForUser","features":[390]},{"name":"ShowGameInfoUI","features":[390]},{"name":"ShowGameInfoUIForUser","features":[390]},{"name":"ShowGameInviteUI","features":[390]},{"name":"ShowGameInviteUIForUser","features":[390]},{"name":"ShowGameInviteUIWithContext","features":[390]},{"name":"ShowGameInviteUIWithContextForUser","features":[390]},{"name":"ShowPlayerPickerUI","features":[390]},{"name":"ShowPlayerPickerUIForUser","features":[390]},{"name":"ShowProfileCardUI","features":[390]},{"name":"ShowProfileCardUIForUser","features":[390]},{"name":"ShowTitleAchievementsUI","features":[390]},{"name":"ShowTitleAchievementsUIForUser","features":[390]},{"name":"ShowUserSettingsUI","features":[390]},{"name":"ShowUserSettingsUIForUser","features":[390]},{"name":"TryCancelPendingGameUI","features":[305,390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_LOAD_MSA_ACCOUNT_FAILED","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_MSA_INTERRUPT","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_NO_ACCOUNT_SET","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_NO_CONSENT","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_OFFLINE_SUCCESS","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_SUCCESS","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_UNKNOWN","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_VIEW_NOT_SET","features":[390]},{"name":"XBL_IDP_AUTH_TOKEN_STATUS_XBOX_VETO","features":[390]},{"name":"XPRIVILEGE_ADD_FRIEND","features":[390]},{"name":"XPRIVILEGE_BROADCAST","features":[390]},{"name":"XPRIVILEGE_CLOUD_GAMING_JOIN_SESSION","features":[390]},{"name":"XPRIVILEGE_CLOUD_GAMING_MANAGE_SESSION","features":[390]},{"name":"XPRIVILEGE_CLOUD_SAVED_GAMES","features":[390]},{"name":"XPRIVILEGE_COMMUNICATIONS","features":[390]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_INGAME","features":[390]},{"name":"XPRIVILEGE_COMMUNICATION_VOICE_SKYPE","features":[390]},{"name":"XPRIVILEGE_GAME_DVR","features":[390]},{"name":"XPRIVILEGE_MULTIPLAYER_PARTIES","features":[390]},{"name":"XPRIVILEGE_MULTIPLAYER_SESSIONS","features":[390]},{"name":"XPRIVILEGE_PREMIUM_CONTENT","features":[390]},{"name":"XPRIVILEGE_PREMIUM_VIDEO","features":[390]},{"name":"XPRIVILEGE_PROFILE_VIEWING","features":[390]},{"name":"XPRIVILEGE_PURCHASE_CONTENT","features":[390]},{"name":"XPRIVILEGE_SHARE_CONTENT","features":[390]},{"name":"XPRIVILEGE_SHARE_KINECT_CONTENT","features":[390]},{"name":"XPRIVILEGE_SOCIAL_NETWORK_SHARING","features":[390]},{"name":"XPRIVILEGE_SUBSCRIPTION_CONTENT","features":[390]},{"name":"XPRIVILEGE_USER_CREATED_CONTENT","features":[390]},{"name":"XPRIVILEGE_VIDEO_COMMUNICATIONS","features":[390]},{"name":"XPRIVILEGE_VIEW_FRIENDS_LIST","features":[390]},{"name":"XblIdpAuthManager","features":[390]},{"name":"XblIdpAuthTokenResult","features":[390]}],"394":[{"name":"ALL_SERVICES","features":[391]},{"name":"ALL_SERVICE_TYPES","features":[391]},{"name":"AdjustCalendarDate","features":[305,391]},{"name":"C1_ALPHA","features":[391]},{"name":"C1_BLANK","features":[391]},{"name":"C1_CNTRL","features":[391]},{"name":"C1_DEFINED","features":[391]},{"name":"C1_DIGIT","features":[391]},{"name":"C1_LOWER","features":[391]},{"name":"C1_PUNCT","features":[391]},{"name":"C1_SPACE","features":[391]},{"name":"C1_UPPER","features":[391]},{"name":"C1_XDIGIT","features":[391]},{"name":"C2_ARABICNUMBER","features":[391]},{"name":"C2_BLOCKSEPARATOR","features":[391]},{"name":"C2_COMMONSEPARATOR","features":[391]},{"name":"C2_EUROPENUMBER","features":[391]},{"name":"C2_EUROPESEPARATOR","features":[391]},{"name":"C2_EUROPETERMINATOR","features":[391]},{"name":"C2_LEFTTORIGHT","features":[391]},{"name":"C2_NOTAPPLICABLE","features":[391]},{"name":"C2_OTHERNEUTRAL","features":[391]},{"name":"C2_RIGHTTOLEFT","features":[391]},{"name":"C2_SEGMENTSEPARATOR","features":[391]},{"name":"C2_WHITESPACE","features":[391]},{"name":"C3_ALPHA","features":[391]},{"name":"C3_DIACRITIC","features":[391]},{"name":"C3_FULLWIDTH","features":[391]},{"name":"C3_HALFWIDTH","features":[391]},{"name":"C3_HIGHSURROGATE","features":[391]},{"name":"C3_HIRAGANA","features":[391]},{"name":"C3_IDEOGRAPH","features":[391]},{"name":"C3_KASHIDA","features":[391]},{"name":"C3_KATAKANA","features":[391]},{"name":"C3_LEXICAL","features":[391]},{"name":"C3_LOWSURROGATE","features":[391]},{"name":"C3_NONSPACING","features":[391]},{"name":"C3_NOTAPPLICABLE","features":[391]},{"name":"C3_SYMBOL","features":[391]},{"name":"C3_VOWELMARK","features":[391]},{"name":"CALDATETIME","features":[391]},{"name":"CALDATETIME_DATEUNIT","features":[391]},{"name":"CALINFO_ENUMPROCA","features":[305,391]},{"name":"CALINFO_ENUMPROCEXA","features":[305,391]},{"name":"CALINFO_ENUMPROCEXEX","features":[305,391]},{"name":"CALINFO_ENUMPROCEXW","features":[305,391]},{"name":"CALINFO_ENUMPROCW","features":[305,391]},{"name":"CAL_GREGORIAN","features":[391]},{"name":"CAL_GREGORIAN_ARABIC","features":[391]},{"name":"CAL_GREGORIAN_ME_FRENCH","features":[391]},{"name":"CAL_GREGORIAN_US","features":[391]},{"name":"CAL_GREGORIAN_XLIT_ENGLISH","features":[391]},{"name":"CAL_GREGORIAN_XLIT_FRENCH","features":[391]},{"name":"CAL_HEBREW","features":[391]},{"name":"CAL_HIJRI","features":[391]},{"name":"CAL_ICALINTVALUE","features":[391]},{"name":"CAL_ITWODIGITYEARMAX","features":[391]},{"name":"CAL_IYEAROFFSETRANGE","features":[391]},{"name":"CAL_JAPAN","features":[391]},{"name":"CAL_KOREA","features":[391]},{"name":"CAL_NOUSEROVERRIDE","features":[391]},{"name":"CAL_PERSIAN","features":[391]},{"name":"CAL_RETURN_GENITIVE_NAMES","features":[391]},{"name":"CAL_RETURN_NUMBER","features":[391]},{"name":"CAL_SABBREVDAYNAME1","features":[391]},{"name":"CAL_SABBREVDAYNAME2","features":[391]},{"name":"CAL_SABBREVDAYNAME3","features":[391]},{"name":"CAL_SABBREVDAYNAME4","features":[391]},{"name":"CAL_SABBREVDAYNAME5","features":[391]},{"name":"CAL_SABBREVDAYNAME6","features":[391]},{"name":"CAL_SABBREVDAYNAME7","features":[391]},{"name":"CAL_SABBREVERASTRING","features":[391]},{"name":"CAL_SABBREVMONTHNAME1","features":[391]},{"name":"CAL_SABBREVMONTHNAME10","features":[391]},{"name":"CAL_SABBREVMONTHNAME11","features":[391]},{"name":"CAL_SABBREVMONTHNAME12","features":[391]},{"name":"CAL_SABBREVMONTHNAME13","features":[391]},{"name":"CAL_SABBREVMONTHNAME2","features":[391]},{"name":"CAL_SABBREVMONTHNAME3","features":[391]},{"name":"CAL_SABBREVMONTHNAME4","features":[391]},{"name":"CAL_SABBREVMONTHNAME5","features":[391]},{"name":"CAL_SABBREVMONTHNAME6","features":[391]},{"name":"CAL_SABBREVMONTHNAME7","features":[391]},{"name":"CAL_SABBREVMONTHNAME8","features":[391]},{"name":"CAL_SABBREVMONTHNAME9","features":[391]},{"name":"CAL_SCALNAME","features":[391]},{"name":"CAL_SDAYNAME1","features":[391]},{"name":"CAL_SDAYNAME2","features":[391]},{"name":"CAL_SDAYNAME3","features":[391]},{"name":"CAL_SDAYNAME4","features":[391]},{"name":"CAL_SDAYNAME5","features":[391]},{"name":"CAL_SDAYNAME6","features":[391]},{"name":"CAL_SDAYNAME7","features":[391]},{"name":"CAL_SENGLISHABBREVERANAME","features":[391]},{"name":"CAL_SENGLISHERANAME","features":[391]},{"name":"CAL_SERASTRING","features":[391]},{"name":"CAL_SJAPANESEERAFIRSTYEAR","features":[391]},{"name":"CAL_SLONGDATE","features":[391]},{"name":"CAL_SMONTHDAY","features":[391]},{"name":"CAL_SMONTHNAME1","features":[391]},{"name":"CAL_SMONTHNAME10","features":[391]},{"name":"CAL_SMONTHNAME11","features":[391]},{"name":"CAL_SMONTHNAME12","features":[391]},{"name":"CAL_SMONTHNAME13","features":[391]},{"name":"CAL_SMONTHNAME2","features":[391]},{"name":"CAL_SMONTHNAME3","features":[391]},{"name":"CAL_SMONTHNAME4","features":[391]},{"name":"CAL_SMONTHNAME5","features":[391]},{"name":"CAL_SMONTHNAME6","features":[391]},{"name":"CAL_SMONTHNAME7","features":[391]},{"name":"CAL_SMONTHNAME8","features":[391]},{"name":"CAL_SMONTHNAME9","features":[391]},{"name":"CAL_SRELATIVELONGDATE","features":[391]},{"name":"CAL_SSHORTDATE","features":[391]},{"name":"CAL_SSHORTESTDAYNAME1","features":[391]},{"name":"CAL_SSHORTESTDAYNAME2","features":[391]},{"name":"CAL_SSHORTESTDAYNAME3","features":[391]},{"name":"CAL_SSHORTESTDAYNAME4","features":[391]},{"name":"CAL_SSHORTESTDAYNAME5","features":[391]},{"name":"CAL_SSHORTESTDAYNAME6","features":[391]},{"name":"CAL_SSHORTESTDAYNAME7","features":[391]},{"name":"CAL_SYEARMONTH","features":[391]},{"name":"CAL_TAIWAN","features":[391]},{"name":"CAL_THAI","features":[391]},{"name":"CAL_UMALQURA","features":[391]},{"name":"CAL_USE_CP_ACP","features":[391]},{"name":"CANITER_SKIP_ZEROES","features":[391]},{"name":"CHARSETINFO","features":[391]},{"name":"CMLangConvertCharset","features":[391]},{"name":"CMLangString","features":[391]},{"name":"CMultiLanguage","features":[391]},{"name":"CODEPAGE_ENUMPROCA","features":[305,391]},{"name":"CODEPAGE_ENUMPROCW","features":[305,391]},{"name":"COMPARESTRING_RESULT","features":[391]},{"name":"COMPARE_STRING","features":[391]},{"name":"COMPARE_STRING_FLAGS","features":[391]},{"name":"CORRECTIVE_ACTION","features":[391]},{"name":"CORRECTIVE_ACTION_DELETE","features":[391]},{"name":"CORRECTIVE_ACTION_GET_SUGGESTIONS","features":[391]},{"name":"CORRECTIVE_ACTION_NONE","features":[391]},{"name":"CORRECTIVE_ACTION_REPLACE","features":[391]},{"name":"CPINFO","features":[391]},{"name":"CPINFOEXA","features":[391]},{"name":"CPINFOEXW","features":[391]},{"name":"CPIOD_FORCE_PROMPT","features":[391]},{"name":"CPIOD_PEEK","features":[391]},{"name":"CP_ACP","features":[391]},{"name":"CP_INSTALLED","features":[391]},{"name":"CP_MACCP","features":[391]},{"name":"CP_OEMCP","features":[391]},{"name":"CP_SUPPORTED","features":[391]},{"name":"CP_SYMBOL","features":[391]},{"name":"CP_THREAD_ACP","features":[391]},{"name":"CP_UTF7","features":[391]},{"name":"CP_UTF8","features":[391]},{"name":"CSTR_EQUAL","features":[391]},{"name":"CSTR_GREATER_THAN","features":[391]},{"name":"CSTR_LESS_THAN","features":[391]},{"name":"CTRY_ALBANIA","features":[391]},{"name":"CTRY_ALGERIA","features":[391]},{"name":"CTRY_ARGENTINA","features":[391]},{"name":"CTRY_ARMENIA","features":[391]},{"name":"CTRY_AUSTRALIA","features":[391]},{"name":"CTRY_AUSTRIA","features":[391]},{"name":"CTRY_AZERBAIJAN","features":[391]},{"name":"CTRY_BAHRAIN","features":[391]},{"name":"CTRY_BELARUS","features":[391]},{"name":"CTRY_BELGIUM","features":[391]},{"name":"CTRY_BELIZE","features":[391]},{"name":"CTRY_BOLIVIA","features":[391]},{"name":"CTRY_BRAZIL","features":[391]},{"name":"CTRY_BRUNEI_DARUSSALAM","features":[391]},{"name":"CTRY_BULGARIA","features":[391]},{"name":"CTRY_CANADA","features":[391]},{"name":"CTRY_CARIBBEAN","features":[391]},{"name":"CTRY_CHILE","features":[391]},{"name":"CTRY_COLOMBIA","features":[391]},{"name":"CTRY_COSTA_RICA","features":[391]},{"name":"CTRY_CROATIA","features":[391]},{"name":"CTRY_CZECH","features":[391]},{"name":"CTRY_DEFAULT","features":[391]},{"name":"CTRY_DENMARK","features":[391]},{"name":"CTRY_DOMINICAN_REPUBLIC","features":[391]},{"name":"CTRY_ECUADOR","features":[391]},{"name":"CTRY_EGYPT","features":[391]},{"name":"CTRY_EL_SALVADOR","features":[391]},{"name":"CTRY_ESTONIA","features":[391]},{"name":"CTRY_FAEROE_ISLANDS","features":[391]},{"name":"CTRY_FINLAND","features":[391]},{"name":"CTRY_FRANCE","features":[391]},{"name":"CTRY_GEORGIA","features":[391]},{"name":"CTRY_GERMANY","features":[391]},{"name":"CTRY_GREECE","features":[391]},{"name":"CTRY_GUATEMALA","features":[391]},{"name":"CTRY_HONDURAS","features":[391]},{"name":"CTRY_HONG_KONG","features":[391]},{"name":"CTRY_HUNGARY","features":[391]},{"name":"CTRY_ICELAND","features":[391]},{"name":"CTRY_INDIA","features":[391]},{"name":"CTRY_INDONESIA","features":[391]},{"name":"CTRY_IRAN","features":[391]},{"name":"CTRY_IRAQ","features":[391]},{"name":"CTRY_IRELAND","features":[391]},{"name":"CTRY_ISRAEL","features":[391]},{"name":"CTRY_ITALY","features":[391]},{"name":"CTRY_JAMAICA","features":[391]},{"name":"CTRY_JAPAN","features":[391]},{"name":"CTRY_JORDAN","features":[391]},{"name":"CTRY_KAZAKSTAN","features":[391]},{"name":"CTRY_KENYA","features":[391]},{"name":"CTRY_KUWAIT","features":[391]},{"name":"CTRY_KYRGYZSTAN","features":[391]},{"name":"CTRY_LATVIA","features":[391]},{"name":"CTRY_LEBANON","features":[391]},{"name":"CTRY_LIBYA","features":[391]},{"name":"CTRY_LIECHTENSTEIN","features":[391]},{"name":"CTRY_LITHUANIA","features":[391]},{"name":"CTRY_LUXEMBOURG","features":[391]},{"name":"CTRY_MACAU","features":[391]},{"name":"CTRY_MACEDONIA","features":[391]},{"name":"CTRY_MALAYSIA","features":[391]},{"name":"CTRY_MALDIVES","features":[391]},{"name":"CTRY_MEXICO","features":[391]},{"name":"CTRY_MONACO","features":[391]},{"name":"CTRY_MONGOLIA","features":[391]},{"name":"CTRY_MOROCCO","features":[391]},{"name":"CTRY_NETHERLANDS","features":[391]},{"name":"CTRY_NEW_ZEALAND","features":[391]},{"name":"CTRY_NICARAGUA","features":[391]},{"name":"CTRY_NORWAY","features":[391]},{"name":"CTRY_OMAN","features":[391]},{"name":"CTRY_PAKISTAN","features":[391]},{"name":"CTRY_PANAMA","features":[391]},{"name":"CTRY_PARAGUAY","features":[391]},{"name":"CTRY_PERU","features":[391]},{"name":"CTRY_PHILIPPINES","features":[391]},{"name":"CTRY_POLAND","features":[391]},{"name":"CTRY_PORTUGAL","features":[391]},{"name":"CTRY_PRCHINA","features":[391]},{"name":"CTRY_PUERTO_RICO","features":[391]},{"name":"CTRY_QATAR","features":[391]},{"name":"CTRY_ROMANIA","features":[391]},{"name":"CTRY_RUSSIA","features":[391]},{"name":"CTRY_SAUDI_ARABIA","features":[391]},{"name":"CTRY_SERBIA","features":[391]},{"name":"CTRY_SINGAPORE","features":[391]},{"name":"CTRY_SLOVAK","features":[391]},{"name":"CTRY_SLOVENIA","features":[391]},{"name":"CTRY_SOUTH_AFRICA","features":[391]},{"name":"CTRY_SOUTH_KOREA","features":[391]},{"name":"CTRY_SPAIN","features":[391]},{"name":"CTRY_SWEDEN","features":[391]},{"name":"CTRY_SWITZERLAND","features":[391]},{"name":"CTRY_SYRIA","features":[391]},{"name":"CTRY_TAIWAN","features":[391]},{"name":"CTRY_TATARSTAN","features":[391]},{"name":"CTRY_THAILAND","features":[391]},{"name":"CTRY_TRINIDAD_Y_TOBAGO","features":[391]},{"name":"CTRY_TUNISIA","features":[391]},{"name":"CTRY_TURKEY","features":[391]},{"name":"CTRY_UAE","features":[391]},{"name":"CTRY_UKRAINE","features":[391]},{"name":"CTRY_UNITED_KINGDOM","features":[391]},{"name":"CTRY_UNITED_STATES","features":[391]},{"name":"CTRY_URUGUAY","features":[391]},{"name":"CTRY_UZBEKISTAN","features":[391]},{"name":"CTRY_VENEZUELA","features":[391]},{"name":"CTRY_VIET_NAM","features":[391]},{"name":"CTRY_YEMEN","features":[391]},{"name":"CTRY_ZIMBABWE","features":[391]},{"name":"CT_CTYPE1","features":[391]},{"name":"CT_CTYPE2","features":[391]},{"name":"CT_CTYPE3","features":[391]},{"name":"CURRENCYFMTA","features":[391]},{"name":"CURRENCYFMTW","features":[391]},{"name":"CompareStringA","features":[391]},{"name":"CompareStringEx","features":[305,391]},{"name":"CompareStringOrdinal","features":[305,391]},{"name":"CompareStringW","features":[391]},{"name":"ConvertCalDateTimeToSystemTime","features":[305,391]},{"name":"ConvertDefaultLocale","features":[391]},{"name":"ConvertSystemTimeToCalDateTime","features":[305,391]},{"name":"DATEFMT_ENUMPROCA","features":[305,391]},{"name":"DATEFMT_ENUMPROCEXA","features":[305,391]},{"name":"DATEFMT_ENUMPROCEXEX","features":[305,391]},{"name":"DATEFMT_ENUMPROCEXW","features":[305,391]},{"name":"DATEFMT_ENUMPROCW","features":[305,391]},{"name":"DATE_AUTOLAYOUT","features":[391]},{"name":"DATE_LONGDATE","features":[391]},{"name":"DATE_LTRREADING","features":[391]},{"name":"DATE_MONTHDAY","features":[391]},{"name":"DATE_RTLREADING","features":[391]},{"name":"DATE_SHORTDATE","features":[391]},{"name":"DATE_USE_ALT_CALENDAR","features":[391]},{"name":"DATE_YEARMONTH","features":[391]},{"name":"DayUnit","features":[391]},{"name":"DetectEncodingInfo","features":[391]},{"name":"ELS_GUID_LANGUAGE_DETECTION","features":[391]},{"name":"ELS_GUID_SCRIPT_DETECTION","features":[391]},{"name":"ELS_GUID_TRANSLITERATION_BENGALI_TO_LATIN","features":[391]},{"name":"ELS_GUID_TRANSLITERATION_CYRILLIC_TO_LATIN","features":[391]},{"name":"ELS_GUID_TRANSLITERATION_DEVANAGARI_TO_LATIN","features":[391]},{"name":"ELS_GUID_TRANSLITERATION_HANGUL_DECOMPOSITION","features":[391]},{"name":"ELS_GUID_TRANSLITERATION_HANS_TO_HANT","features":[391]},{"name":"ELS_GUID_TRANSLITERATION_HANT_TO_HANS","features":[391]},{"name":"ELS_GUID_TRANSLITERATION_MALAYALAM_TO_LATIN","features":[391]},{"name":"ENUMTEXTMETRICA","features":[391,316]},{"name":"ENUMTEXTMETRICW","features":[391,316]},{"name":"ENUM_ALL_CALENDARS","features":[391]},{"name":"ENUM_DATE_FORMATS_FLAGS","features":[391]},{"name":"ENUM_SYSTEM_CODE_PAGES_FLAGS","features":[391]},{"name":"ENUM_SYSTEM_LANGUAGE_GROUPS_FLAGS","features":[391]},{"name":"EnumCalendarInfoA","features":[305,391]},{"name":"EnumCalendarInfoExA","features":[305,391]},{"name":"EnumCalendarInfoExEx","features":[305,391]},{"name":"EnumCalendarInfoExW","features":[305,391]},{"name":"EnumCalendarInfoW","features":[305,391]},{"name":"EnumDateFormatsA","features":[305,391]},{"name":"EnumDateFormatsExA","features":[305,391]},{"name":"EnumDateFormatsExEx","features":[305,391]},{"name":"EnumDateFormatsExW","features":[305,391]},{"name":"EnumDateFormatsW","features":[305,391]},{"name":"EnumLanguageGroupLocalesA","features":[305,391]},{"name":"EnumLanguageGroupLocalesW","features":[305,391]},{"name":"EnumSystemCodePagesA","features":[305,391]},{"name":"EnumSystemCodePagesW","features":[305,391]},{"name":"EnumSystemGeoID","features":[305,391]},{"name":"EnumSystemGeoNames","features":[305,391]},{"name":"EnumSystemLanguageGroupsA","features":[305,391]},{"name":"EnumSystemLanguageGroupsW","features":[305,391]},{"name":"EnumSystemLocalesA","features":[305,391]},{"name":"EnumSystemLocalesEx","features":[305,391]},{"name":"EnumSystemLocalesW","features":[305,391]},{"name":"EnumTimeFormatsA","features":[305,391]},{"name":"EnumTimeFormatsEx","features":[305,391]},{"name":"EnumTimeFormatsW","features":[305,391]},{"name":"EnumUILanguagesA","features":[305,391]},{"name":"EnumUILanguagesW","features":[305,391]},{"name":"EraUnit","features":[391]},{"name":"FILEMUIINFO","features":[391]},{"name":"FIND_ENDSWITH","features":[391]},{"name":"FIND_FROMEND","features":[391]},{"name":"FIND_FROMSTART","features":[391]},{"name":"FIND_STARTSWITH","features":[391]},{"name":"FOLD_STRING_MAP_FLAGS","features":[391]},{"name":"FONTSIGNATURE","features":[391]},{"name":"FindNLSString","features":[391]},{"name":"FindNLSStringEx","features":[305,391]},{"name":"FindStringOrdinal","features":[305,391]},{"name":"FoldStringA","features":[391]},{"name":"FoldStringW","features":[391]},{"name":"GEOCLASS_ALL","features":[391]},{"name":"GEOCLASS_NATION","features":[391]},{"name":"GEOCLASS_REGION","features":[391]},{"name":"GEOID_NOT_AVAILABLE","features":[391]},{"name":"GEO_CURRENCYCODE","features":[391]},{"name":"GEO_CURRENCYSYMBOL","features":[391]},{"name":"GEO_DIALINGCODE","features":[391]},{"name":"GEO_ENUMNAMEPROC","features":[305,391]},{"name":"GEO_ENUMPROC","features":[305,391]},{"name":"GEO_FRIENDLYNAME","features":[391]},{"name":"GEO_ID","features":[391]},{"name":"GEO_ISO2","features":[391]},{"name":"GEO_ISO3","features":[391]},{"name":"GEO_ISO_UN_NUMBER","features":[391]},{"name":"GEO_LATITUDE","features":[391]},{"name":"GEO_LCID","features":[391]},{"name":"GEO_LONGITUDE","features":[391]},{"name":"GEO_NAME","features":[391]},{"name":"GEO_NATION","features":[391]},{"name":"GEO_OFFICIALLANGUAGES","features":[391]},{"name":"GEO_OFFICIALNAME","features":[391]},{"name":"GEO_PARENT","features":[391]},{"name":"GEO_RFC1766","features":[391]},{"name":"GEO_TIMEZONES","features":[391]},{"name":"GOFFSET","features":[391]},{"name":"GSS_ALLOW_INHERITED_COMMON","features":[391]},{"name":"GetACP","features":[391]},{"name":"GetCPInfo","features":[305,391]},{"name":"GetCPInfoExA","features":[305,391]},{"name":"GetCPInfoExW","features":[305,391]},{"name":"GetCalendarDateFormatEx","features":[305,391]},{"name":"GetCalendarInfoA","features":[391]},{"name":"GetCalendarInfoEx","features":[391]},{"name":"GetCalendarInfoW","features":[391]},{"name":"GetCalendarSupportedDateRange","features":[305,391]},{"name":"GetCurrencyFormatA","features":[391]},{"name":"GetCurrencyFormatEx","features":[391]},{"name":"GetCurrencyFormatW","features":[391]},{"name":"GetDateFormatA","features":[305,391]},{"name":"GetDateFormatEx","features":[305,391]},{"name":"GetDateFormatW","features":[305,391]},{"name":"GetDistanceOfClosestLanguageInList","features":[391]},{"name":"GetDurationFormat","features":[305,391]},{"name":"GetDurationFormatEx","features":[305,391]},{"name":"GetFileMUIInfo","features":[305,391]},{"name":"GetFileMUIPath","features":[305,391]},{"name":"GetGeoInfoA","features":[391]},{"name":"GetGeoInfoEx","features":[391]},{"name":"GetGeoInfoW","features":[391]},{"name":"GetLocaleInfoA","features":[391]},{"name":"GetLocaleInfoEx","features":[391]},{"name":"GetLocaleInfoW","features":[391]},{"name":"GetNLSVersion","features":[305,391]},{"name":"GetNLSVersionEx","features":[305,391]},{"name":"GetNumberFormatA","features":[391]},{"name":"GetNumberFormatEx","features":[391]},{"name":"GetNumberFormatW","features":[391]},{"name":"GetOEMCP","features":[391]},{"name":"GetProcessPreferredUILanguages","features":[305,391]},{"name":"GetStringScripts","features":[391]},{"name":"GetStringTypeA","features":[305,391]},{"name":"GetStringTypeExA","features":[305,391]},{"name":"GetStringTypeExW","features":[305,391]},{"name":"GetStringTypeW","features":[305,391]},{"name":"GetSystemDefaultLCID","features":[391]},{"name":"GetSystemDefaultLangID","features":[391]},{"name":"GetSystemDefaultLocaleName","features":[391]},{"name":"GetSystemDefaultUILanguage","features":[391]},{"name":"GetSystemPreferredUILanguages","features":[305,391]},{"name":"GetTextCharset","features":[391,316]},{"name":"GetTextCharsetInfo","features":[391,316]},{"name":"GetThreadLocale","features":[391]},{"name":"GetThreadPreferredUILanguages","features":[305,391]},{"name":"GetThreadUILanguage","features":[391]},{"name":"GetTimeFormatA","features":[305,391]},{"name":"GetTimeFormatEx","features":[305,391]},{"name":"GetTimeFormatW","features":[305,391]},{"name":"GetUILanguageInfo","features":[305,391]},{"name":"GetUserDefaultGeoName","features":[391]},{"name":"GetUserDefaultLCID","features":[391]},{"name":"GetUserDefaultLangID","features":[391]},{"name":"GetUserDefaultLocaleName","features":[391]},{"name":"GetUserDefaultUILanguage","features":[391]},{"name":"GetUserGeoID","features":[391]},{"name":"GetUserPreferredUILanguages","features":[305,391]},{"name":"HIGHLEVEL_SERVICE_TYPES","features":[391]},{"name":"HIGH_SURROGATE_END","features":[391]},{"name":"HIGH_SURROGATE_START","features":[391]},{"name":"HSAVEDUILANGUAGES","features":[391]},{"name":"HourUnit","features":[391]},{"name":"IComprehensiveSpellCheckProvider","features":[391]},{"name":"IDN_ALLOW_UNASSIGNED","features":[391]},{"name":"IDN_EMAIL_ADDRESS","features":[391]},{"name":"IDN_RAW_PUNYCODE","features":[391]},{"name":"IDN_USE_STD3_ASCII_RULES","features":[391]},{"name":"IEnumCodePage","features":[391]},{"name":"IEnumRfc1766","features":[391]},{"name":"IEnumScript","features":[391]},{"name":"IEnumSpellingError","features":[391]},{"name":"IMLangCodePages","features":[391]},{"name":"IMLangConvertCharset","features":[391]},{"name":"IMLangFontLink","features":[391]},{"name":"IMLangFontLink2","features":[391]},{"name":"IMLangLineBreakConsole","features":[391]},{"name":"IMLangString","features":[391]},{"name":"IMLangStringAStr","features":[391]},{"name":"IMLangStringBufA","features":[391]},{"name":"IMLangStringBufW","features":[391]},{"name":"IMLangStringWStr","features":[391]},{"name":"IMultiLanguage","features":[391]},{"name":"IMultiLanguage2","features":[391]},{"name":"IMultiLanguage3","features":[391]},{"name":"IOptionDescription","features":[391]},{"name":"IS_TEXT_UNICODE_ASCII16","features":[391]},{"name":"IS_TEXT_UNICODE_CONTROLS","features":[391]},{"name":"IS_TEXT_UNICODE_ILLEGAL_CHARS","features":[391]},{"name":"IS_TEXT_UNICODE_NOT_ASCII_MASK","features":[391]},{"name":"IS_TEXT_UNICODE_NOT_UNICODE_MASK","features":[391]},{"name":"IS_TEXT_UNICODE_NULL_BYTES","features":[391]},{"name":"IS_TEXT_UNICODE_ODD_LENGTH","features":[391]},{"name":"IS_TEXT_UNICODE_RESULT","features":[391]},{"name":"IS_TEXT_UNICODE_REVERSE_ASCII16","features":[391]},{"name":"IS_TEXT_UNICODE_REVERSE_CONTROLS","features":[391]},{"name":"IS_TEXT_UNICODE_REVERSE_MASK","features":[391]},{"name":"IS_TEXT_UNICODE_REVERSE_SIGNATURE","features":[391]},{"name":"IS_TEXT_UNICODE_REVERSE_STATISTICS","features":[391]},{"name":"IS_TEXT_UNICODE_SIGNATURE","features":[391]},{"name":"IS_TEXT_UNICODE_STATISTICS","features":[391]},{"name":"IS_TEXT_UNICODE_UNICODE_MASK","features":[391]},{"name":"IS_VALID_LOCALE_FLAGS","features":[391]},{"name":"ISpellCheckProvider","features":[391]},{"name":"ISpellCheckProviderFactory","features":[391]},{"name":"ISpellChecker","features":[391]},{"name":"ISpellChecker2","features":[391]},{"name":"ISpellCheckerChangedEventHandler","features":[391]},{"name":"ISpellCheckerFactory","features":[391]},{"name":"ISpellingError","features":[391]},{"name":"IUserDictionariesRegistrar","features":[391]},{"name":"IdnToAscii","features":[391]},{"name":"IdnToNameprepUnicode","features":[391]},{"name":"IdnToUnicode","features":[391]},{"name":"IsCalendarLeapYear","features":[305,391]},{"name":"IsDBCSLeadByte","features":[305,391]},{"name":"IsDBCSLeadByteEx","features":[305,391]},{"name":"IsNLSDefinedString","features":[305,391]},{"name":"IsNormalizedString","features":[305,391]},{"name":"IsTextUnicode","features":[305,391]},{"name":"IsValidCodePage","features":[305,391]},{"name":"IsValidLanguageGroup","features":[305,391]},{"name":"IsValidLocale","features":[305,391]},{"name":"IsValidLocaleName","features":[305,391]},{"name":"IsValidNLSVersion","features":[391]},{"name":"IsWellFormedTag","features":[391]},{"name":"LANGGROUPLOCALE_ENUMPROCA","features":[305,391]},{"name":"LANGGROUPLOCALE_ENUMPROCW","features":[305,391]},{"name":"LANGUAGEGROUP_ENUMPROCA","features":[305,391]},{"name":"LANGUAGEGROUP_ENUMPROCW","features":[305,391]},{"name":"LANG_SYSTEM_DEFAULT","features":[391]},{"name":"LANG_USER_DEFAULT","features":[391]},{"name":"LCIDToLocaleName","features":[391]},{"name":"LCID_ALTERNATE_SORTS","features":[391]},{"name":"LCID_INSTALLED","features":[391]},{"name":"LCID_SUPPORTED","features":[391]},{"name":"LCMAP_BYTEREV","features":[391]},{"name":"LCMAP_FULLWIDTH","features":[391]},{"name":"LCMAP_HALFWIDTH","features":[391]},{"name":"LCMAP_HASH","features":[391]},{"name":"LCMAP_HIRAGANA","features":[391]},{"name":"LCMAP_KATAKANA","features":[391]},{"name":"LCMAP_LINGUISTIC_CASING","features":[391]},{"name":"LCMAP_LOWERCASE","features":[391]},{"name":"LCMAP_SIMPLIFIED_CHINESE","features":[391]},{"name":"LCMAP_SORTHANDLE","features":[391]},{"name":"LCMAP_SORTKEY","features":[391]},{"name":"LCMAP_TITLECASE","features":[391]},{"name":"LCMAP_TRADITIONAL_CHINESE","features":[391]},{"name":"LCMAP_UPPERCASE","features":[391]},{"name":"LCMapStringA","features":[391]},{"name":"LCMapStringEx","features":[305,391]},{"name":"LCMapStringW","features":[391]},{"name":"LGRPID_ARABIC","features":[391]},{"name":"LGRPID_ARMENIAN","features":[391]},{"name":"LGRPID_BALTIC","features":[391]},{"name":"LGRPID_CENTRAL_EUROPE","features":[391]},{"name":"LGRPID_CYRILLIC","features":[391]},{"name":"LGRPID_GEORGIAN","features":[391]},{"name":"LGRPID_GREEK","features":[391]},{"name":"LGRPID_HEBREW","features":[391]},{"name":"LGRPID_INDIC","features":[391]},{"name":"LGRPID_INSTALLED","features":[391]},{"name":"LGRPID_JAPANESE","features":[391]},{"name":"LGRPID_KOREAN","features":[391]},{"name":"LGRPID_SIMPLIFIED_CHINESE","features":[391]},{"name":"LGRPID_SUPPORTED","features":[391]},{"name":"LGRPID_THAI","features":[391]},{"name":"LGRPID_TRADITIONAL_CHINESE","features":[391]},{"name":"LGRPID_TURKIC","features":[391]},{"name":"LGRPID_TURKISH","features":[391]},{"name":"LGRPID_VIETNAMESE","features":[391]},{"name":"LGRPID_WESTERN_EUROPE","features":[391]},{"name":"LINGUISTIC_IGNORECASE","features":[391]},{"name":"LINGUISTIC_IGNOREDIACRITIC","features":[391]},{"name":"LOCALESIGNATURE","features":[391]},{"name":"LOCALE_ALL","features":[391]},{"name":"LOCALE_ALLOW_NEUTRAL_NAMES","features":[391]},{"name":"LOCALE_ALTERNATE_SORTS","features":[391]},{"name":"LOCALE_ENUMPROCA","features":[305,391]},{"name":"LOCALE_ENUMPROCEX","features":[305,391]},{"name":"LOCALE_ENUMPROCW","features":[305,391]},{"name":"LOCALE_FONTSIGNATURE","features":[391]},{"name":"LOCALE_ICALENDARTYPE","features":[391]},{"name":"LOCALE_ICENTURY","features":[391]},{"name":"LOCALE_ICONSTRUCTEDLOCALE","features":[391]},{"name":"LOCALE_ICOUNTRY","features":[391]},{"name":"LOCALE_ICURRDIGITS","features":[391]},{"name":"LOCALE_ICURRENCY","features":[391]},{"name":"LOCALE_IDATE","features":[391]},{"name":"LOCALE_IDAYLZERO","features":[391]},{"name":"LOCALE_IDEFAULTANSICODEPAGE","features":[391]},{"name":"LOCALE_IDEFAULTCODEPAGE","features":[391]},{"name":"LOCALE_IDEFAULTCOUNTRY","features":[391]},{"name":"LOCALE_IDEFAULTEBCDICCODEPAGE","features":[391]},{"name":"LOCALE_IDEFAULTLANGUAGE","features":[391]},{"name":"LOCALE_IDEFAULTMACCODEPAGE","features":[391]},{"name":"LOCALE_IDIALINGCODE","features":[391]},{"name":"LOCALE_IDIGITS","features":[391]},{"name":"LOCALE_IDIGITSUBSTITUTION","features":[391]},{"name":"LOCALE_IFIRSTDAYOFWEEK","features":[391]},{"name":"LOCALE_IFIRSTWEEKOFYEAR","features":[391]},{"name":"LOCALE_IGEOID","features":[391]},{"name":"LOCALE_IINTLCURRDIGITS","features":[391]},{"name":"LOCALE_ILANGUAGE","features":[391]},{"name":"LOCALE_ILDATE","features":[391]},{"name":"LOCALE_ILZERO","features":[391]},{"name":"LOCALE_IMEASURE","features":[391]},{"name":"LOCALE_IMONLZERO","features":[391]},{"name":"LOCALE_INEGATIVEPERCENT","features":[391]},{"name":"LOCALE_INEGCURR","features":[391]},{"name":"LOCALE_INEGNUMBER","features":[391]},{"name":"LOCALE_INEGSEPBYSPACE","features":[391]},{"name":"LOCALE_INEGSIGNPOSN","features":[391]},{"name":"LOCALE_INEGSYMPRECEDES","features":[391]},{"name":"LOCALE_INEUTRAL","features":[391]},{"name":"LOCALE_IOPTIONALCALENDAR","features":[391]},{"name":"LOCALE_IPAPERSIZE","features":[391]},{"name":"LOCALE_IPOSITIVEPERCENT","features":[391]},{"name":"LOCALE_IPOSSEPBYSPACE","features":[391]},{"name":"LOCALE_IPOSSIGNPOSN","features":[391]},{"name":"LOCALE_IPOSSYMPRECEDES","features":[391]},{"name":"LOCALE_IREADINGLAYOUT","features":[391]},{"name":"LOCALE_ITIME","features":[391]},{"name":"LOCALE_ITIMEMARKPOSN","features":[391]},{"name":"LOCALE_ITLZERO","features":[391]},{"name":"LOCALE_IUSEUTF8LEGACYACP","features":[391]},{"name":"LOCALE_IUSEUTF8LEGACYOEMCP","features":[391]},{"name":"LOCALE_NAME_INVARIANT","features":[391]},{"name":"LOCALE_NAME_SYSTEM_DEFAULT","features":[391]},{"name":"LOCALE_NEUTRALDATA","features":[391]},{"name":"LOCALE_NOUSEROVERRIDE","features":[391]},{"name":"LOCALE_REPLACEMENT","features":[391]},{"name":"LOCALE_RETURN_GENITIVE_NAMES","features":[391]},{"name":"LOCALE_RETURN_NUMBER","features":[391]},{"name":"LOCALE_S1159","features":[391]},{"name":"LOCALE_S2359","features":[391]},{"name":"LOCALE_SABBREVCTRYNAME","features":[391]},{"name":"LOCALE_SABBREVDAYNAME1","features":[391]},{"name":"LOCALE_SABBREVDAYNAME2","features":[391]},{"name":"LOCALE_SABBREVDAYNAME3","features":[391]},{"name":"LOCALE_SABBREVDAYNAME4","features":[391]},{"name":"LOCALE_SABBREVDAYNAME5","features":[391]},{"name":"LOCALE_SABBREVDAYNAME6","features":[391]},{"name":"LOCALE_SABBREVDAYNAME7","features":[391]},{"name":"LOCALE_SABBREVLANGNAME","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME1","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME10","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME11","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME12","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME13","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME2","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME3","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME4","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME5","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME6","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME7","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME8","features":[391]},{"name":"LOCALE_SABBREVMONTHNAME9","features":[391]},{"name":"LOCALE_SAM","features":[391]},{"name":"LOCALE_SCONSOLEFALLBACKNAME","features":[391]},{"name":"LOCALE_SCOUNTRY","features":[391]},{"name":"LOCALE_SCURRENCY","features":[391]},{"name":"LOCALE_SDATE","features":[391]},{"name":"LOCALE_SDAYNAME1","features":[391]},{"name":"LOCALE_SDAYNAME2","features":[391]},{"name":"LOCALE_SDAYNAME3","features":[391]},{"name":"LOCALE_SDAYNAME4","features":[391]},{"name":"LOCALE_SDAYNAME5","features":[391]},{"name":"LOCALE_SDAYNAME6","features":[391]},{"name":"LOCALE_SDAYNAME7","features":[391]},{"name":"LOCALE_SDECIMAL","features":[391]},{"name":"LOCALE_SDURATION","features":[391]},{"name":"LOCALE_SENGCOUNTRY","features":[391]},{"name":"LOCALE_SENGCURRNAME","features":[391]},{"name":"LOCALE_SENGLANGUAGE","features":[391]},{"name":"LOCALE_SENGLISHCOUNTRYNAME","features":[391]},{"name":"LOCALE_SENGLISHDISPLAYNAME","features":[391]},{"name":"LOCALE_SENGLISHLANGUAGENAME","features":[391]},{"name":"LOCALE_SGROUPING","features":[391]},{"name":"LOCALE_SINTLSYMBOL","features":[391]},{"name":"LOCALE_SISO3166CTRYNAME","features":[391]},{"name":"LOCALE_SISO3166CTRYNAME2","features":[391]},{"name":"LOCALE_SISO639LANGNAME","features":[391]},{"name":"LOCALE_SISO639LANGNAME2","features":[391]},{"name":"LOCALE_SKEYBOARDSTOINSTALL","features":[391]},{"name":"LOCALE_SLANGDISPLAYNAME","features":[391]},{"name":"LOCALE_SLANGUAGE","features":[391]},{"name":"LOCALE_SLIST","features":[391]},{"name":"LOCALE_SLOCALIZEDCOUNTRYNAME","features":[391]},{"name":"LOCALE_SLOCALIZEDDISPLAYNAME","features":[391]},{"name":"LOCALE_SLOCALIZEDLANGUAGENAME","features":[391]},{"name":"LOCALE_SLONGDATE","features":[391]},{"name":"LOCALE_SMONDECIMALSEP","features":[391]},{"name":"LOCALE_SMONGROUPING","features":[391]},{"name":"LOCALE_SMONTHDAY","features":[391]},{"name":"LOCALE_SMONTHNAME1","features":[391]},{"name":"LOCALE_SMONTHNAME10","features":[391]},{"name":"LOCALE_SMONTHNAME11","features":[391]},{"name":"LOCALE_SMONTHNAME12","features":[391]},{"name":"LOCALE_SMONTHNAME13","features":[391]},{"name":"LOCALE_SMONTHNAME2","features":[391]},{"name":"LOCALE_SMONTHNAME3","features":[391]},{"name":"LOCALE_SMONTHNAME4","features":[391]},{"name":"LOCALE_SMONTHNAME5","features":[391]},{"name":"LOCALE_SMONTHNAME6","features":[391]},{"name":"LOCALE_SMONTHNAME7","features":[391]},{"name":"LOCALE_SMONTHNAME8","features":[391]},{"name":"LOCALE_SMONTHNAME9","features":[391]},{"name":"LOCALE_SMONTHOUSANDSEP","features":[391]},{"name":"LOCALE_SNAME","features":[391]},{"name":"LOCALE_SNAN","features":[391]},{"name":"LOCALE_SNATIVECOUNTRYNAME","features":[391]},{"name":"LOCALE_SNATIVECTRYNAME","features":[391]},{"name":"LOCALE_SNATIVECURRNAME","features":[391]},{"name":"LOCALE_SNATIVEDIGITS","features":[391]},{"name":"LOCALE_SNATIVEDISPLAYNAME","features":[391]},{"name":"LOCALE_SNATIVELANGNAME","features":[391]},{"name":"LOCALE_SNATIVELANGUAGENAME","features":[391]},{"name":"LOCALE_SNEGATIVESIGN","features":[391]},{"name":"LOCALE_SNEGINFINITY","features":[391]},{"name":"LOCALE_SOPENTYPELANGUAGETAG","features":[391]},{"name":"LOCALE_SPARENT","features":[391]},{"name":"LOCALE_SPECIFICDATA","features":[391]},{"name":"LOCALE_SPERCENT","features":[391]},{"name":"LOCALE_SPERMILLE","features":[391]},{"name":"LOCALE_SPM","features":[391]},{"name":"LOCALE_SPOSINFINITY","features":[391]},{"name":"LOCALE_SPOSITIVESIGN","features":[391]},{"name":"LOCALE_SRELATIVELONGDATE","features":[391]},{"name":"LOCALE_SSCRIPTS","features":[391]},{"name":"LOCALE_SSHORTDATE","features":[391]},{"name":"LOCALE_SSHORTESTAM","features":[391]},{"name":"LOCALE_SSHORTESTDAYNAME1","features":[391]},{"name":"LOCALE_SSHORTESTDAYNAME2","features":[391]},{"name":"LOCALE_SSHORTESTDAYNAME3","features":[391]},{"name":"LOCALE_SSHORTESTDAYNAME4","features":[391]},{"name":"LOCALE_SSHORTESTDAYNAME5","features":[391]},{"name":"LOCALE_SSHORTESTDAYNAME6","features":[391]},{"name":"LOCALE_SSHORTESTDAYNAME7","features":[391]},{"name":"LOCALE_SSHORTESTPM","features":[391]},{"name":"LOCALE_SSHORTTIME","features":[391]},{"name":"LOCALE_SSORTLOCALE","features":[391]},{"name":"LOCALE_SSORTNAME","features":[391]},{"name":"LOCALE_STHOUSAND","features":[391]},{"name":"LOCALE_STIME","features":[391]},{"name":"LOCALE_STIMEFORMAT","features":[391]},{"name":"LOCALE_SUPPLEMENTAL","features":[391]},{"name":"LOCALE_SYEARMONTH","features":[391]},{"name":"LOCALE_SYSTEM_DEFAULT","features":[391]},{"name":"LOCALE_USER_DEFAULT","features":[391]},{"name":"LOCALE_USE_CP_ACP","features":[391]},{"name":"LOCALE_WINDOWS","features":[391]},{"name":"LOWLEVEL_SERVICE_TYPES","features":[391]},{"name":"LOW_SURROGATE_END","features":[391]},{"name":"LOW_SURROGATE_START","features":[391]},{"name":"LocaleNameToLCID","features":[391]},{"name":"MAPPING_DATA_RANGE","features":[391]},{"name":"MAPPING_ENUM_OPTIONS","features":[391]},{"name":"MAPPING_OPTIONS","features":[391]},{"name":"MAPPING_PROPERTY_BAG","features":[391]},{"name":"MAPPING_SERVICE_INFO","features":[391]},{"name":"MAP_COMPOSITE","features":[391]},{"name":"MAP_EXPAND_LIGATURES","features":[391]},{"name":"MAP_FOLDCZONE","features":[391]},{"name":"MAP_FOLDDIGITS","features":[391]},{"name":"MAP_PRECOMPOSED","features":[391]},{"name":"MAX_DEFAULTCHAR","features":[391]},{"name":"MAX_LEADBYTES","features":[391]},{"name":"MAX_LOCALE_NAME","features":[391]},{"name":"MAX_MIMECP_NAME","features":[391]},{"name":"MAX_MIMECSET_NAME","features":[391]},{"name":"MAX_MIMEFACE_NAME","features":[391]},{"name":"MAX_RFC1766_NAME","features":[391]},{"name":"MAX_SCRIPT_NAME","features":[391]},{"name":"MB_COMPOSITE","features":[391]},{"name":"MB_ERR_INVALID_CHARS","features":[391]},{"name":"MB_PRECOMPOSED","features":[391]},{"name":"MB_USEGLYPHCHARS","features":[391]},{"name":"MIMECONTF","features":[391]},{"name":"MIMECONTF_BROWSER","features":[391]},{"name":"MIMECONTF_EXPORT","features":[391]},{"name":"MIMECONTF_IMPORT","features":[391]},{"name":"MIMECONTF_MAILNEWS","features":[391]},{"name":"MIMECONTF_MIME_IE4","features":[391]},{"name":"MIMECONTF_MIME_LATEST","features":[391]},{"name":"MIMECONTF_MIME_REGISTRY","features":[391]},{"name":"MIMECONTF_MINIMAL","features":[391]},{"name":"MIMECONTF_PRIVCONVERTER","features":[391]},{"name":"MIMECONTF_SAVABLE_BROWSER","features":[391]},{"name":"MIMECONTF_SAVABLE_MAILNEWS","features":[391]},{"name":"MIMECONTF_VALID","features":[391]},{"name":"MIMECONTF_VALID_NLS","features":[391]},{"name":"MIMECPINFO","features":[391]},{"name":"MIMECSETINFO","features":[391]},{"name":"MIN_SPELLING_NTDDI","features":[391]},{"name":"MLCONVCHAR","features":[391]},{"name":"MLCONVCHARF_AUTODETECT","features":[391]},{"name":"MLCONVCHARF_DETECTJPN","features":[391]},{"name":"MLCONVCHARF_ENTITIZE","features":[391]},{"name":"MLCONVCHARF_NAME_ENTITIZE","features":[391]},{"name":"MLCONVCHARF_NCR_ENTITIZE","features":[391]},{"name":"MLCONVCHARF_NOBESTFITCHARS","features":[391]},{"name":"MLCONVCHARF_USEDEFCHAR","features":[391]},{"name":"MLCP","features":[391]},{"name":"MLDETECTCP","features":[391]},{"name":"MLDETECTCP_7BIT","features":[391]},{"name":"MLDETECTCP_8BIT","features":[391]},{"name":"MLDETECTCP_DBCS","features":[391]},{"name":"MLDETECTCP_HTML","features":[391]},{"name":"MLDETECTCP_NONE","features":[391]},{"name":"MLDETECTCP_NUMBER","features":[391]},{"name":"MLDETECTF_BROWSER","features":[391]},{"name":"MLDETECTF_EURO_UTF8","features":[391]},{"name":"MLDETECTF_FILTER_SPECIALCHAR","features":[391]},{"name":"MLDETECTF_MAILNEWS","features":[391]},{"name":"MLDETECTF_PREFERRED_ONLY","features":[391]},{"name":"MLDETECTF_PRESERVE_ORDER","features":[391]},{"name":"MLDETECTF_VALID","features":[391]},{"name":"MLDETECTF_VALID_NLS","features":[391]},{"name":"MLSTR_FLAGS","features":[391]},{"name":"MLSTR_READ","features":[391]},{"name":"MLSTR_WRITE","features":[391]},{"name":"MUI_COMPLEX_SCRIPT_FILTER","features":[391]},{"name":"MUI_CONSOLE_FILTER","features":[391]},{"name":"MUI_FILEINFO_VERSION","features":[391]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MAIN","features":[391]},{"name":"MUI_FILETYPE_LANGUAGE_NEUTRAL_MUI","features":[391]},{"name":"MUI_FILETYPE_NOT_LANGUAGE_NEUTRAL","features":[391]},{"name":"MUI_FORMAT_INF_COMPAT","features":[391]},{"name":"MUI_FORMAT_REG_COMPAT","features":[391]},{"name":"MUI_FULL_LANGUAGE","features":[391]},{"name":"MUI_IMMUTABLE_LOOKUP","features":[391]},{"name":"MUI_LANGUAGE_EXACT","features":[391]},{"name":"MUI_LANGUAGE_ID","features":[391]},{"name":"MUI_LANGUAGE_INSTALLED","features":[391]},{"name":"MUI_LANGUAGE_LICENSED","features":[391]},{"name":"MUI_LANGUAGE_NAME","features":[391]},{"name":"MUI_LANG_NEUTRAL_PE_FILE","features":[391]},{"name":"MUI_LIP_LANGUAGE","features":[391]},{"name":"MUI_MACHINE_LANGUAGE_SETTINGS","features":[391]},{"name":"MUI_MERGE_SYSTEM_FALLBACK","features":[391]},{"name":"MUI_MERGE_USER_FALLBACK","features":[391]},{"name":"MUI_NON_LANG_NEUTRAL_FILE","features":[391]},{"name":"MUI_PARTIAL_LANGUAGE","features":[391]},{"name":"MUI_QUERY_CHECKSUM","features":[391]},{"name":"MUI_QUERY_LANGUAGE_NAME","features":[391]},{"name":"MUI_QUERY_RESOURCE_TYPES","features":[391]},{"name":"MUI_QUERY_TYPE","features":[391]},{"name":"MUI_RESET_FILTERS","features":[391]},{"name":"MUI_SKIP_STRING_CACHE","features":[391]},{"name":"MUI_THREAD_LANGUAGES","features":[391]},{"name":"MUI_USER_PREFERRED_UI_LANGUAGES","features":[391]},{"name":"MUI_USE_INSTALLED_LANGUAGES","features":[391]},{"name":"MUI_USE_SEARCH_ALL_LANGUAGES","features":[391]},{"name":"MUI_VERIFY_FILE_EXISTS","features":[391]},{"name":"MULTI_BYTE_TO_WIDE_CHAR_FLAGS","features":[391]},{"name":"MappingDoAction","features":[391]},{"name":"MappingFreePropertyBag","features":[391]},{"name":"MappingFreeServices","features":[391]},{"name":"MappingGetServices","features":[391]},{"name":"MappingRecognizeText","features":[391]},{"name":"MinuteUnit","features":[391]},{"name":"MonthUnit","features":[391]},{"name":"MultiByteToWideChar","features":[391]},{"name":"NEWTEXTMETRICEXA","features":[391,316]},{"name":"NEWTEXTMETRICEXW","features":[391,316]},{"name":"NLSVERSIONINFO","features":[391]},{"name":"NLSVERSIONINFOEX","features":[391]},{"name":"NLS_CP_CPINFO","features":[391]},{"name":"NLS_CP_MBTOWC","features":[391]},{"name":"NLS_CP_WCTOMB","features":[391]},{"name":"NORM_FORM","features":[391]},{"name":"NORM_IGNORECASE","features":[391]},{"name":"NORM_IGNOREKANATYPE","features":[391]},{"name":"NORM_IGNORENONSPACE","features":[391]},{"name":"NORM_IGNORESYMBOLS","features":[391]},{"name":"NORM_IGNOREWIDTH","features":[391]},{"name":"NORM_LINGUISTIC_CASING","features":[391]},{"name":"NUMBERFMTA","features":[391]},{"name":"NUMBERFMTW","features":[391]},{"name":"NUMSYS_NAME_CAPACITY","features":[391]},{"name":"NormalizationC","features":[391]},{"name":"NormalizationD","features":[391]},{"name":"NormalizationKC","features":[391]},{"name":"NormalizationKD","features":[391]},{"name":"NormalizationOther","features":[391]},{"name":"NormalizeString","features":[391]},{"name":"NotifyUILanguageChange","features":[305,391]},{"name":"OFFLINE_SERVICES","features":[391]},{"name":"ONLINE_SERVICES","features":[391]},{"name":"OPENTYPE_FEATURE_RECORD","features":[391]},{"name":"PFN_MAPPINGCALLBACKPROC","features":[391]},{"name":"RFC1766INFO","features":[391]},{"name":"ResolveLocaleName","features":[391]},{"name":"RestoreThreadPreferredUILanguages","features":[391]},{"name":"SCRIPTCONTF","features":[391]},{"name":"SCRIPTCONTF_FIXED_FONT","features":[391]},{"name":"SCRIPTCONTF_PROPORTIONAL_FONT","features":[391]},{"name":"SCRIPTCONTF_SCRIPT_HIDE","features":[391]},{"name":"SCRIPTCONTF_SCRIPT_SYSTEM","features":[391]},{"name":"SCRIPTCONTF_SCRIPT_USER","features":[391]},{"name":"SCRIPTFONTCONTF","features":[391]},{"name":"SCRIPTFONTINFO","features":[391]},{"name":"SCRIPTINFO","features":[391]},{"name":"SCRIPT_ANALYSIS","features":[391]},{"name":"SCRIPT_CHARPROP","features":[391]},{"name":"SCRIPT_CONTROL","features":[391]},{"name":"SCRIPT_DIGITSUBSTITUTE","features":[391]},{"name":"SCRIPT_DIGITSUBSTITUTE_CONTEXT","features":[391]},{"name":"SCRIPT_DIGITSUBSTITUTE_NATIONAL","features":[391]},{"name":"SCRIPT_DIGITSUBSTITUTE_NONE","features":[391]},{"name":"SCRIPT_DIGITSUBSTITUTE_TRADITIONAL","features":[391]},{"name":"SCRIPT_FONTPROPERTIES","features":[391]},{"name":"SCRIPT_GLYPHPROP","features":[391]},{"name":"SCRIPT_IS_COMPLEX_FLAGS","features":[391]},{"name":"SCRIPT_ITEM","features":[391]},{"name":"SCRIPT_JUSTIFY","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_ALEF","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_BA","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_BARA","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_BLANK","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_HA","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_KASHIDA","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_NORMAL","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_RA","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN","features":[391]},{"name":"SCRIPT_JUSTIFY_ARABIC_SEEN_M","features":[391]},{"name":"SCRIPT_JUSTIFY_BLANK","features":[391]},{"name":"SCRIPT_JUSTIFY_CHARACTER","features":[391]},{"name":"SCRIPT_JUSTIFY_NONE","features":[391]},{"name":"SCRIPT_JUSTIFY_RESERVED1","features":[391]},{"name":"SCRIPT_JUSTIFY_RESERVED2","features":[391]},{"name":"SCRIPT_JUSTIFY_RESERVED3","features":[391]},{"name":"SCRIPT_LOGATTR","features":[391]},{"name":"SCRIPT_PROPERTIES","features":[391]},{"name":"SCRIPT_STATE","features":[391]},{"name":"SCRIPT_TABDEF","features":[391]},{"name":"SCRIPT_TAG_UNKNOWN","features":[391]},{"name":"SCRIPT_UNDEFINED","features":[391]},{"name":"SCRIPT_VISATTR","features":[391]},{"name":"SGCM_RTL","features":[391]},{"name":"SIC_ASCIIDIGIT","features":[391]},{"name":"SIC_COMPLEX","features":[391]},{"name":"SIC_NEUTRAL","features":[391]},{"name":"SORTING_PARADIGM_ICU","features":[391]},{"name":"SORTING_PARADIGM_NLS","features":[391]},{"name":"SORT_DIGITSASNUMBERS","features":[391]},{"name":"SORT_STRINGSORT","features":[391]},{"name":"SSA_BREAK","features":[391]},{"name":"SSA_CLIP","features":[391]},{"name":"SSA_DONTGLYPH","features":[391]},{"name":"SSA_DZWG","features":[391]},{"name":"SSA_FALLBACK","features":[391]},{"name":"SSA_FIT","features":[391]},{"name":"SSA_FULLMEASURE","features":[391]},{"name":"SSA_GCP","features":[391]},{"name":"SSA_GLYPHS","features":[391]},{"name":"SSA_HIDEHOTKEY","features":[391]},{"name":"SSA_HOTKEY","features":[391]},{"name":"SSA_HOTKEYONLY","features":[391]},{"name":"SSA_LAYOUTRTL","features":[391]},{"name":"SSA_LINK","features":[391]},{"name":"SSA_LPKANSIFALLBACK","features":[391]},{"name":"SSA_METAFILE","features":[391]},{"name":"SSA_NOKASHIDA","features":[391]},{"name":"SSA_PASSWORD","features":[391]},{"name":"SSA_PIDX","features":[391]},{"name":"SSA_RTL","features":[391]},{"name":"SSA_TAB","features":[391]},{"name":"SYSGEOCLASS","features":[391]},{"name":"SYSGEOTYPE","features":[391]},{"name":"SYSNLS_FUNCTION","features":[391]},{"name":"ScriptApplyDigitSubstitution","features":[391]},{"name":"ScriptApplyLogicalWidth","features":[391,316]},{"name":"ScriptBreak","features":[391]},{"name":"ScriptCPtoX","features":[305,391]},{"name":"ScriptCacheGetHeight","features":[391,316]},{"name":"ScriptFreeCache","features":[391]},{"name":"ScriptGetCMap","features":[391,316]},{"name":"ScriptGetFontAlternateGlyphs","features":[391,316]},{"name":"ScriptGetFontFeatureTags","features":[391,316]},{"name":"ScriptGetFontLanguageTags","features":[391,316]},{"name":"ScriptGetFontProperties","features":[391,316]},{"name":"ScriptGetFontScriptTags","features":[391,316]},{"name":"ScriptGetGlyphABCWidth","features":[391,316]},{"name":"ScriptGetLogicalWidths","features":[391]},{"name":"ScriptGetProperties","features":[391]},{"name":"ScriptIsComplex","features":[391]},{"name":"ScriptItemize","features":[391]},{"name":"ScriptItemizeOpenType","features":[391]},{"name":"ScriptJustify","features":[391]},{"name":"ScriptLayout","features":[391]},{"name":"ScriptPlace","features":[391,316]},{"name":"ScriptPlaceOpenType","features":[391,316]},{"name":"ScriptPositionSingleGlyph","features":[391,316]},{"name":"ScriptRecordDigitSubstitution","features":[391]},{"name":"ScriptShape","features":[391,316]},{"name":"ScriptShapeOpenType","features":[391,316]},{"name":"ScriptStringAnalyse","features":[391,316]},{"name":"ScriptStringCPtoX","features":[305,391]},{"name":"ScriptStringFree","features":[391]},{"name":"ScriptStringGetLogicalWidths","features":[391]},{"name":"ScriptStringGetOrder","features":[391]},{"name":"ScriptStringOut","features":[305,391,316]},{"name":"ScriptStringValidate","features":[391]},{"name":"ScriptStringXtoCP","features":[391]},{"name":"ScriptString_pLogAttr","features":[391]},{"name":"ScriptString_pSize","features":[305,391]},{"name":"ScriptString_pcOutChars","features":[391]},{"name":"ScriptSubstituteSingleGlyph","features":[391,316]},{"name":"ScriptTextOut","features":[305,391,316]},{"name":"ScriptXtoCP","features":[391]},{"name":"SecondUnit","features":[391]},{"name":"SetCalendarInfoA","features":[305,391]},{"name":"SetCalendarInfoW","features":[305,391]},{"name":"SetLocaleInfoA","features":[305,391]},{"name":"SetLocaleInfoW","features":[305,391]},{"name":"SetProcessPreferredUILanguages","features":[305,391]},{"name":"SetThreadLocale","features":[305,391]},{"name":"SetThreadPreferredUILanguages","features":[305,391]},{"name":"SetThreadPreferredUILanguages2","features":[305,391]},{"name":"SetThreadUILanguage","features":[391]},{"name":"SetUserGeoID","features":[305,391]},{"name":"SetUserGeoName","features":[305,391]},{"name":"SpellCheckerFactory","features":[391]},{"name":"TCI_SRCCHARSET","features":[391]},{"name":"TCI_SRCCODEPAGE","features":[391]},{"name":"TCI_SRCFONTSIG","features":[391]},{"name":"TCI_SRCLOCALE","features":[391]},{"name":"TEXTRANGE_PROPERTIES","features":[391]},{"name":"TIMEFMT_ENUMPROCA","features":[305,391]},{"name":"TIMEFMT_ENUMPROCEX","features":[305,391]},{"name":"TIMEFMT_ENUMPROCW","features":[305,391]},{"name":"TIME_FORCE24HOURFORMAT","features":[391]},{"name":"TIME_FORMAT_FLAGS","features":[391]},{"name":"TIME_NOMINUTESORSECONDS","features":[391]},{"name":"TIME_NOSECONDS","features":[391]},{"name":"TIME_NOTIMEMARKER","features":[391]},{"name":"TRANSLATE_CHARSET_INFO_FLAGS","features":[391]},{"name":"TickUnit","features":[391]},{"name":"TranslateCharsetInfo","features":[305,391]},{"name":"U16_MAX_LENGTH","features":[391]},{"name":"U8_LEAD3_T1_BITS","features":[391]},{"name":"U8_LEAD4_T1_BITS","features":[391]},{"name":"U8_MAX_LENGTH","features":[391]},{"name":"UAcceptResult","features":[391]},{"name":"UAlphabeticIndexLabelType","features":[391]},{"name":"UBIDI_DEFAULT_LTR","features":[391]},{"name":"UBIDI_DEFAULT_RTL","features":[391]},{"name":"UBIDI_DO_MIRRORING","features":[391]},{"name":"UBIDI_INSERT_LRM_FOR_NUMERIC","features":[391]},{"name":"UBIDI_KEEP_BASE_COMBINING","features":[391]},{"name":"UBIDI_LEVEL_OVERRIDE","features":[391]},{"name":"UBIDI_LOGICAL","features":[391]},{"name":"UBIDI_LTR","features":[391]},{"name":"UBIDI_MAP_NOWHERE","features":[391]},{"name":"UBIDI_MAX_EXPLICIT_LEVEL","features":[391]},{"name":"UBIDI_MIRRORING_OFF","features":[391]},{"name":"UBIDI_MIRRORING_ON","features":[391]},{"name":"UBIDI_MIXED","features":[391]},{"name":"UBIDI_NEUTRAL","features":[391]},{"name":"UBIDI_OPTION_DEFAULT","features":[391]},{"name":"UBIDI_OPTION_INSERT_MARKS","features":[391]},{"name":"UBIDI_OPTION_REMOVE_CONTROLS","features":[391]},{"name":"UBIDI_OPTION_STREAMING","features":[391]},{"name":"UBIDI_OUTPUT_REVERSE","features":[391]},{"name":"UBIDI_REMOVE_BIDI_CONTROLS","features":[391]},{"name":"UBIDI_REORDER_DEFAULT","features":[391]},{"name":"UBIDI_REORDER_GROUP_NUMBERS_WITH_R","features":[391]},{"name":"UBIDI_REORDER_INVERSE_FOR_NUMBERS_SPECIAL","features":[391]},{"name":"UBIDI_REORDER_INVERSE_LIKE_DIRECT","features":[391]},{"name":"UBIDI_REORDER_INVERSE_NUMBERS_AS_L","features":[391]},{"name":"UBIDI_REORDER_NUMBERS_SPECIAL","features":[391]},{"name":"UBIDI_REORDER_RUNS_ONLY","features":[391]},{"name":"UBIDI_RTL","features":[391]},{"name":"UBIDI_VISUAL","features":[391]},{"name":"UBLOCK_ADLAM","features":[391]},{"name":"UBLOCK_AEGEAN_NUMBERS","features":[391]},{"name":"UBLOCK_AHOM","features":[391]},{"name":"UBLOCK_ALCHEMICAL_SYMBOLS","features":[391]},{"name":"UBLOCK_ALPHABETIC_PRESENTATION_FORMS","features":[391]},{"name":"UBLOCK_ANATOLIAN_HIEROGLYPHS","features":[391]},{"name":"UBLOCK_ANCIENT_GREEK_MUSICAL_NOTATION","features":[391]},{"name":"UBLOCK_ANCIENT_GREEK_NUMBERS","features":[391]},{"name":"UBLOCK_ANCIENT_SYMBOLS","features":[391]},{"name":"UBLOCK_ARABIC","features":[391]},{"name":"UBLOCK_ARABIC_EXTENDED_A","features":[391]},{"name":"UBLOCK_ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS","features":[391]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_A","features":[391]},{"name":"UBLOCK_ARABIC_PRESENTATION_FORMS_B","features":[391]},{"name":"UBLOCK_ARABIC_SUPPLEMENT","features":[391]},{"name":"UBLOCK_ARMENIAN","features":[391]},{"name":"UBLOCK_ARROWS","features":[391]},{"name":"UBLOCK_AVESTAN","features":[391]},{"name":"UBLOCK_BALINESE","features":[391]},{"name":"UBLOCK_BAMUM","features":[391]},{"name":"UBLOCK_BAMUM_SUPPLEMENT","features":[391]},{"name":"UBLOCK_BASIC_LATIN","features":[391]},{"name":"UBLOCK_BASSA_VAH","features":[391]},{"name":"UBLOCK_BATAK","features":[391]},{"name":"UBLOCK_BENGALI","features":[391]},{"name":"UBLOCK_BHAIKSUKI","features":[391]},{"name":"UBLOCK_BLOCK_ELEMENTS","features":[391]},{"name":"UBLOCK_BOPOMOFO","features":[391]},{"name":"UBLOCK_BOPOMOFO_EXTENDED","features":[391]},{"name":"UBLOCK_BOX_DRAWING","features":[391]},{"name":"UBLOCK_BRAHMI","features":[391]},{"name":"UBLOCK_BRAILLE_PATTERNS","features":[391]},{"name":"UBLOCK_BUGINESE","features":[391]},{"name":"UBLOCK_BUHID","features":[391]},{"name":"UBLOCK_BYZANTINE_MUSICAL_SYMBOLS","features":[391]},{"name":"UBLOCK_CARIAN","features":[391]},{"name":"UBLOCK_CAUCASIAN_ALBANIAN","features":[391]},{"name":"UBLOCK_CHAKMA","features":[391]},{"name":"UBLOCK_CHAM","features":[391]},{"name":"UBLOCK_CHEROKEE","features":[391]},{"name":"UBLOCK_CHEROKEE_SUPPLEMENT","features":[391]},{"name":"UBLOCK_CHESS_SYMBOLS","features":[391]},{"name":"UBLOCK_CHORASMIAN","features":[391]},{"name":"UBLOCK_CJK_COMPATIBILITY","features":[391]},{"name":"UBLOCK_CJK_COMPATIBILITY_FORMS","features":[391]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS","features":[391]},{"name":"UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT","features":[391]},{"name":"UBLOCK_CJK_RADICALS_SUPPLEMENT","features":[391]},{"name":"UBLOCK_CJK_STROKES","features":[391]},{"name":"UBLOCK_CJK_SYMBOLS_AND_PUNCTUATION","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_F","features":[391]},{"name":"UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_G","features":[391]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS","features":[391]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_EXTENDED","features":[391]},{"name":"UBLOCK_COMBINING_DIACRITICAL_MARKS_SUPPLEMENT","features":[391]},{"name":"UBLOCK_COMBINING_HALF_MARKS","features":[391]},{"name":"UBLOCK_COMBINING_MARKS_FOR_SYMBOLS","features":[391]},{"name":"UBLOCK_COMMON_INDIC_NUMBER_FORMS","features":[391]},{"name":"UBLOCK_CONTROL_PICTURES","features":[391]},{"name":"UBLOCK_COPTIC","features":[391]},{"name":"UBLOCK_COPTIC_EPACT_NUMBERS","features":[391]},{"name":"UBLOCK_COUNTING_ROD_NUMERALS","features":[391]},{"name":"UBLOCK_CUNEIFORM","features":[391]},{"name":"UBLOCK_CUNEIFORM_NUMBERS_AND_PUNCTUATION","features":[391]},{"name":"UBLOCK_CURRENCY_SYMBOLS","features":[391]},{"name":"UBLOCK_CYPRIOT_SYLLABARY","features":[391]},{"name":"UBLOCK_CYRILLIC","features":[391]},{"name":"UBLOCK_CYRILLIC_EXTENDED_A","features":[391]},{"name":"UBLOCK_CYRILLIC_EXTENDED_B","features":[391]},{"name":"UBLOCK_CYRILLIC_EXTENDED_C","features":[391]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENT","features":[391]},{"name":"UBLOCK_CYRILLIC_SUPPLEMENTARY","features":[391]},{"name":"UBLOCK_DESERET","features":[391]},{"name":"UBLOCK_DEVANAGARI","features":[391]},{"name":"UBLOCK_DEVANAGARI_EXTENDED","features":[391]},{"name":"UBLOCK_DINGBATS","features":[391]},{"name":"UBLOCK_DIVES_AKURU","features":[391]},{"name":"UBLOCK_DOGRA","features":[391]},{"name":"UBLOCK_DOMINO_TILES","features":[391]},{"name":"UBLOCK_DUPLOYAN","features":[391]},{"name":"UBLOCK_EARLY_DYNASTIC_CUNEIFORM","features":[391]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPHS","features":[391]},{"name":"UBLOCK_EGYPTIAN_HIEROGLYPH_FORMAT_CONTROLS","features":[391]},{"name":"UBLOCK_ELBASAN","features":[391]},{"name":"UBLOCK_ELYMAIC","features":[391]},{"name":"UBLOCK_EMOTICONS","features":[391]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERICS","features":[391]},{"name":"UBLOCK_ENCLOSED_ALPHANUMERIC_SUPPLEMENT","features":[391]},{"name":"UBLOCK_ENCLOSED_CJK_LETTERS_AND_MONTHS","features":[391]},{"name":"UBLOCK_ENCLOSED_IDEOGRAPHIC_SUPPLEMENT","features":[391]},{"name":"UBLOCK_ETHIOPIC","features":[391]},{"name":"UBLOCK_ETHIOPIC_EXTENDED","features":[391]},{"name":"UBLOCK_ETHIOPIC_EXTENDED_A","features":[391]},{"name":"UBLOCK_ETHIOPIC_SUPPLEMENT","features":[391]},{"name":"UBLOCK_GENERAL_PUNCTUATION","features":[391]},{"name":"UBLOCK_GEOMETRIC_SHAPES","features":[391]},{"name":"UBLOCK_GEOMETRIC_SHAPES_EXTENDED","features":[391]},{"name":"UBLOCK_GEORGIAN","features":[391]},{"name":"UBLOCK_GEORGIAN_EXTENDED","features":[391]},{"name":"UBLOCK_GEORGIAN_SUPPLEMENT","features":[391]},{"name":"UBLOCK_GLAGOLITIC","features":[391]},{"name":"UBLOCK_GLAGOLITIC_SUPPLEMENT","features":[391]},{"name":"UBLOCK_GOTHIC","features":[391]},{"name":"UBLOCK_GRANTHA","features":[391]},{"name":"UBLOCK_GREEK","features":[391]},{"name":"UBLOCK_GREEK_EXTENDED","features":[391]},{"name":"UBLOCK_GUJARATI","features":[391]},{"name":"UBLOCK_GUNJALA_GONDI","features":[391]},{"name":"UBLOCK_GURMUKHI","features":[391]},{"name":"UBLOCK_HALFWIDTH_AND_FULLWIDTH_FORMS","features":[391]},{"name":"UBLOCK_HANGUL_COMPATIBILITY_JAMO","features":[391]},{"name":"UBLOCK_HANGUL_JAMO","features":[391]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_A","features":[391]},{"name":"UBLOCK_HANGUL_JAMO_EXTENDED_B","features":[391]},{"name":"UBLOCK_HANGUL_SYLLABLES","features":[391]},{"name":"UBLOCK_HANIFI_ROHINGYA","features":[391]},{"name":"UBLOCK_HANUNOO","features":[391]},{"name":"UBLOCK_HATRAN","features":[391]},{"name":"UBLOCK_HEBREW","features":[391]},{"name":"UBLOCK_HIGH_PRIVATE_USE_SURROGATES","features":[391]},{"name":"UBLOCK_HIGH_SURROGATES","features":[391]},{"name":"UBLOCK_HIRAGANA","features":[391]},{"name":"UBLOCK_IDEOGRAPHIC_DESCRIPTION_CHARACTERS","features":[391]},{"name":"UBLOCK_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION","features":[391]},{"name":"UBLOCK_IMPERIAL_ARAMAIC","features":[391]},{"name":"UBLOCK_INDIC_SIYAQ_NUMBERS","features":[391]},{"name":"UBLOCK_INSCRIPTIONAL_PAHLAVI","features":[391]},{"name":"UBLOCK_INSCRIPTIONAL_PARTHIAN","features":[391]},{"name":"UBLOCK_INVALID_CODE","features":[391]},{"name":"UBLOCK_IPA_EXTENSIONS","features":[391]},{"name":"UBLOCK_JAVANESE","features":[391]},{"name":"UBLOCK_KAITHI","features":[391]},{"name":"UBLOCK_KANA_EXTENDED_A","features":[391]},{"name":"UBLOCK_KANA_SUPPLEMENT","features":[391]},{"name":"UBLOCK_KANBUN","features":[391]},{"name":"UBLOCK_KANGXI_RADICALS","features":[391]},{"name":"UBLOCK_KANNADA","features":[391]},{"name":"UBLOCK_KATAKANA","features":[391]},{"name":"UBLOCK_KATAKANA_PHONETIC_EXTENSIONS","features":[391]},{"name":"UBLOCK_KAYAH_LI","features":[391]},{"name":"UBLOCK_KHAROSHTHI","features":[391]},{"name":"UBLOCK_KHITAN_SMALL_SCRIPT","features":[391]},{"name":"UBLOCK_KHMER","features":[391]},{"name":"UBLOCK_KHMER_SYMBOLS","features":[391]},{"name":"UBLOCK_KHOJKI","features":[391]},{"name":"UBLOCK_KHUDAWADI","features":[391]},{"name":"UBLOCK_LAO","features":[391]},{"name":"UBLOCK_LATIN_1_SUPPLEMENT","features":[391]},{"name":"UBLOCK_LATIN_EXTENDED_A","features":[391]},{"name":"UBLOCK_LATIN_EXTENDED_ADDITIONAL","features":[391]},{"name":"UBLOCK_LATIN_EXTENDED_B","features":[391]},{"name":"UBLOCK_LATIN_EXTENDED_C","features":[391]},{"name":"UBLOCK_LATIN_EXTENDED_D","features":[391]},{"name":"UBLOCK_LATIN_EXTENDED_E","features":[391]},{"name":"UBLOCK_LEPCHA","features":[391]},{"name":"UBLOCK_LETTERLIKE_SYMBOLS","features":[391]},{"name":"UBLOCK_LIMBU","features":[391]},{"name":"UBLOCK_LINEAR_A","features":[391]},{"name":"UBLOCK_LINEAR_B_IDEOGRAMS","features":[391]},{"name":"UBLOCK_LINEAR_B_SYLLABARY","features":[391]},{"name":"UBLOCK_LISU","features":[391]},{"name":"UBLOCK_LISU_SUPPLEMENT","features":[391]},{"name":"UBLOCK_LOW_SURROGATES","features":[391]},{"name":"UBLOCK_LYCIAN","features":[391]},{"name":"UBLOCK_LYDIAN","features":[391]},{"name":"UBLOCK_MAHAJANI","features":[391]},{"name":"UBLOCK_MAHJONG_TILES","features":[391]},{"name":"UBLOCK_MAKASAR","features":[391]},{"name":"UBLOCK_MALAYALAM","features":[391]},{"name":"UBLOCK_MANDAIC","features":[391]},{"name":"UBLOCK_MANICHAEAN","features":[391]},{"name":"UBLOCK_MARCHEN","features":[391]},{"name":"UBLOCK_MASARAM_GONDI","features":[391]},{"name":"UBLOCK_MATHEMATICAL_ALPHANUMERIC_SYMBOLS","features":[391]},{"name":"UBLOCK_MATHEMATICAL_OPERATORS","features":[391]},{"name":"UBLOCK_MAYAN_NUMERALS","features":[391]},{"name":"UBLOCK_MEDEFAIDRIN","features":[391]},{"name":"UBLOCK_MEETEI_MAYEK","features":[391]},{"name":"UBLOCK_MEETEI_MAYEK_EXTENSIONS","features":[391]},{"name":"UBLOCK_MENDE_KIKAKUI","features":[391]},{"name":"UBLOCK_MEROITIC_CURSIVE","features":[391]},{"name":"UBLOCK_MEROITIC_HIEROGLYPHS","features":[391]},{"name":"UBLOCK_MIAO","features":[391]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A","features":[391]},{"name":"UBLOCK_MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B","features":[391]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS","features":[391]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_ARROWS","features":[391]},{"name":"UBLOCK_MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS","features":[391]},{"name":"UBLOCK_MISCELLANEOUS_TECHNICAL","features":[391]},{"name":"UBLOCK_MODI","features":[391]},{"name":"UBLOCK_MODIFIER_TONE_LETTERS","features":[391]},{"name":"UBLOCK_MONGOLIAN","features":[391]},{"name":"UBLOCK_MONGOLIAN_SUPPLEMENT","features":[391]},{"name":"UBLOCK_MRO","features":[391]},{"name":"UBLOCK_MULTANI","features":[391]},{"name":"UBLOCK_MUSICAL_SYMBOLS","features":[391]},{"name":"UBLOCK_MYANMAR","features":[391]},{"name":"UBLOCK_MYANMAR_EXTENDED_A","features":[391]},{"name":"UBLOCK_MYANMAR_EXTENDED_B","features":[391]},{"name":"UBLOCK_NABATAEAN","features":[391]},{"name":"UBLOCK_NANDINAGARI","features":[391]},{"name":"UBLOCK_NEWA","features":[391]},{"name":"UBLOCK_NEW_TAI_LUE","features":[391]},{"name":"UBLOCK_NKO","features":[391]},{"name":"UBLOCK_NO_BLOCK","features":[391]},{"name":"UBLOCK_NUMBER_FORMS","features":[391]},{"name":"UBLOCK_NUSHU","features":[391]},{"name":"UBLOCK_NYIAKENG_PUACHUE_HMONG","features":[391]},{"name":"UBLOCK_OGHAM","features":[391]},{"name":"UBLOCK_OLD_HUNGARIAN","features":[391]},{"name":"UBLOCK_OLD_ITALIC","features":[391]},{"name":"UBLOCK_OLD_NORTH_ARABIAN","features":[391]},{"name":"UBLOCK_OLD_PERMIC","features":[391]},{"name":"UBLOCK_OLD_PERSIAN","features":[391]},{"name":"UBLOCK_OLD_SOGDIAN","features":[391]},{"name":"UBLOCK_OLD_SOUTH_ARABIAN","features":[391]},{"name":"UBLOCK_OLD_TURKIC","features":[391]},{"name":"UBLOCK_OL_CHIKI","features":[391]},{"name":"UBLOCK_OPTICAL_CHARACTER_RECOGNITION","features":[391]},{"name":"UBLOCK_ORIYA","features":[391]},{"name":"UBLOCK_ORNAMENTAL_DINGBATS","features":[391]},{"name":"UBLOCK_OSAGE","features":[391]},{"name":"UBLOCK_OSMANYA","features":[391]},{"name":"UBLOCK_OTTOMAN_SIYAQ_NUMBERS","features":[391]},{"name":"UBLOCK_PAHAWH_HMONG","features":[391]},{"name":"UBLOCK_PALMYRENE","features":[391]},{"name":"UBLOCK_PAU_CIN_HAU","features":[391]},{"name":"UBLOCK_PHAGS_PA","features":[391]},{"name":"UBLOCK_PHAISTOS_DISC","features":[391]},{"name":"UBLOCK_PHOENICIAN","features":[391]},{"name":"UBLOCK_PHONETIC_EXTENSIONS","features":[391]},{"name":"UBLOCK_PHONETIC_EXTENSIONS_SUPPLEMENT","features":[391]},{"name":"UBLOCK_PLAYING_CARDS","features":[391]},{"name":"UBLOCK_PRIVATE_USE","features":[391]},{"name":"UBLOCK_PRIVATE_USE_AREA","features":[391]},{"name":"UBLOCK_PSALTER_PAHLAVI","features":[391]},{"name":"UBLOCK_REJANG","features":[391]},{"name":"UBLOCK_RUMI_NUMERAL_SYMBOLS","features":[391]},{"name":"UBLOCK_RUNIC","features":[391]},{"name":"UBLOCK_SAMARITAN","features":[391]},{"name":"UBLOCK_SAURASHTRA","features":[391]},{"name":"UBLOCK_SHARADA","features":[391]},{"name":"UBLOCK_SHAVIAN","features":[391]},{"name":"UBLOCK_SHORTHAND_FORMAT_CONTROLS","features":[391]},{"name":"UBLOCK_SIDDHAM","features":[391]},{"name":"UBLOCK_SINHALA","features":[391]},{"name":"UBLOCK_SINHALA_ARCHAIC_NUMBERS","features":[391]},{"name":"UBLOCK_SMALL_FORM_VARIANTS","features":[391]},{"name":"UBLOCK_SMALL_KANA_EXTENSION","features":[391]},{"name":"UBLOCK_SOGDIAN","features":[391]},{"name":"UBLOCK_SORA_SOMPENG","features":[391]},{"name":"UBLOCK_SOYOMBO","features":[391]},{"name":"UBLOCK_SPACING_MODIFIER_LETTERS","features":[391]},{"name":"UBLOCK_SPECIALS","features":[391]},{"name":"UBLOCK_SUNDANESE","features":[391]},{"name":"UBLOCK_SUNDANESE_SUPPLEMENT","features":[391]},{"name":"UBLOCK_SUPERSCRIPTS_AND_SUBSCRIPTS","features":[391]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_A","features":[391]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_B","features":[391]},{"name":"UBLOCK_SUPPLEMENTAL_ARROWS_C","features":[391]},{"name":"UBLOCK_SUPPLEMENTAL_MATHEMATICAL_OPERATORS","features":[391]},{"name":"UBLOCK_SUPPLEMENTAL_PUNCTUATION","features":[391]},{"name":"UBLOCK_SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS","features":[391]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_A","features":[391]},{"name":"UBLOCK_SUPPLEMENTARY_PRIVATE_USE_AREA_B","features":[391]},{"name":"UBLOCK_SUTTON_SIGNWRITING","features":[391]},{"name":"UBLOCK_SYLOTI_NAGRI","features":[391]},{"name":"UBLOCK_SYMBOLS_AND_PICTOGRAPHS_EXTENDED_A","features":[391]},{"name":"UBLOCK_SYMBOLS_FOR_LEGACY_COMPUTING","features":[391]},{"name":"UBLOCK_SYRIAC","features":[391]},{"name":"UBLOCK_SYRIAC_SUPPLEMENT","features":[391]},{"name":"UBLOCK_TAGALOG","features":[391]},{"name":"UBLOCK_TAGBANWA","features":[391]},{"name":"UBLOCK_TAGS","features":[391]},{"name":"UBLOCK_TAI_LE","features":[391]},{"name":"UBLOCK_TAI_THAM","features":[391]},{"name":"UBLOCK_TAI_VIET","features":[391]},{"name":"UBLOCK_TAI_XUAN_JING_SYMBOLS","features":[391]},{"name":"UBLOCK_TAKRI","features":[391]},{"name":"UBLOCK_TAMIL","features":[391]},{"name":"UBLOCK_TAMIL_SUPPLEMENT","features":[391]},{"name":"UBLOCK_TANGUT","features":[391]},{"name":"UBLOCK_TANGUT_COMPONENTS","features":[391]},{"name":"UBLOCK_TANGUT_SUPPLEMENT","features":[391]},{"name":"UBLOCK_TELUGU","features":[391]},{"name":"UBLOCK_THAANA","features":[391]},{"name":"UBLOCK_THAI","features":[391]},{"name":"UBLOCK_TIBETAN","features":[391]},{"name":"UBLOCK_TIFINAGH","features":[391]},{"name":"UBLOCK_TIRHUTA","features":[391]},{"name":"UBLOCK_TRANSPORT_AND_MAP_SYMBOLS","features":[391]},{"name":"UBLOCK_UGARITIC","features":[391]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS","features":[391]},{"name":"UBLOCK_UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED","features":[391]},{"name":"UBLOCK_VAI","features":[391]},{"name":"UBLOCK_VARIATION_SELECTORS","features":[391]},{"name":"UBLOCK_VARIATION_SELECTORS_SUPPLEMENT","features":[391]},{"name":"UBLOCK_VEDIC_EXTENSIONS","features":[391]},{"name":"UBLOCK_VERTICAL_FORMS","features":[391]},{"name":"UBLOCK_WANCHO","features":[391]},{"name":"UBLOCK_WARANG_CITI","features":[391]},{"name":"UBLOCK_YEZIDI","features":[391]},{"name":"UBLOCK_YIJING_HEXAGRAM_SYMBOLS","features":[391]},{"name":"UBLOCK_YI_RADICALS","features":[391]},{"name":"UBLOCK_YI_SYLLABLES","features":[391]},{"name":"UBLOCK_ZANABAZAR_SQUARE","features":[391]},{"name":"UBRK_CHARACTER","features":[391]},{"name":"UBRK_LINE","features":[391]},{"name":"UBRK_LINE_HARD","features":[391]},{"name":"UBRK_LINE_HARD_LIMIT","features":[391]},{"name":"UBRK_LINE_SOFT","features":[391]},{"name":"UBRK_LINE_SOFT_LIMIT","features":[391]},{"name":"UBRK_SENTENCE","features":[391]},{"name":"UBRK_SENTENCE_SEP","features":[391]},{"name":"UBRK_SENTENCE_SEP_LIMIT","features":[391]},{"name":"UBRK_SENTENCE_TERM","features":[391]},{"name":"UBRK_SENTENCE_TERM_LIMIT","features":[391]},{"name":"UBRK_WORD","features":[391]},{"name":"UBRK_WORD_IDEO","features":[391]},{"name":"UBRK_WORD_IDEO_LIMIT","features":[391]},{"name":"UBRK_WORD_KANA","features":[391]},{"name":"UBRK_WORD_KANA_LIMIT","features":[391]},{"name":"UBRK_WORD_LETTER","features":[391]},{"name":"UBRK_WORD_LETTER_LIMIT","features":[391]},{"name":"UBRK_WORD_NONE","features":[391]},{"name":"UBRK_WORD_NONE_LIMIT","features":[391]},{"name":"UBRK_WORD_NUMBER","features":[391]},{"name":"UBRK_WORD_NUMBER_LIMIT","features":[391]},{"name":"UBiDi","features":[391]},{"name":"UBiDiClassCallback","features":[391]},{"name":"UBiDiDirection","features":[391]},{"name":"UBiDiMirroring","features":[391]},{"name":"UBiDiOrder","features":[391]},{"name":"UBiDiReorderingMode","features":[391]},{"name":"UBiDiReorderingOption","features":[391]},{"name":"UBiDiTransform","features":[391]},{"name":"UBidiPairedBracketType","features":[391]},{"name":"UBlockCode","features":[391]},{"name":"UBreakIterator","features":[391]},{"name":"UBreakIteratorType","features":[391]},{"name":"UCAL_ACTUAL_MAXIMUM","features":[391]},{"name":"UCAL_ACTUAL_MINIMUM","features":[391]},{"name":"UCAL_AM","features":[391]},{"name":"UCAL_AM_PM","features":[391]},{"name":"UCAL_APRIL","features":[391]},{"name":"UCAL_AUGUST","features":[391]},{"name":"UCAL_DATE","features":[391]},{"name":"UCAL_DAY_OF_MONTH","features":[391]},{"name":"UCAL_DAY_OF_WEEK","features":[391]},{"name":"UCAL_DAY_OF_WEEK_IN_MONTH","features":[391]},{"name":"UCAL_DAY_OF_YEAR","features":[391]},{"name":"UCAL_DECEMBER","features":[391]},{"name":"UCAL_DEFAULT","features":[391]},{"name":"UCAL_DOW_LOCAL","features":[391]},{"name":"UCAL_DST","features":[391]},{"name":"UCAL_DST_OFFSET","features":[391]},{"name":"UCAL_ERA","features":[391]},{"name":"UCAL_EXTENDED_YEAR","features":[391]},{"name":"UCAL_FEBRUARY","features":[391]},{"name":"UCAL_FIELD_COUNT","features":[391]},{"name":"UCAL_FIRST_DAY_OF_WEEK","features":[391]},{"name":"UCAL_FRIDAY","features":[391]},{"name":"UCAL_GREATEST_MINIMUM","features":[391]},{"name":"UCAL_GREGORIAN","features":[391]},{"name":"UCAL_HOUR","features":[391]},{"name":"UCAL_HOUR_OF_DAY","features":[391]},{"name":"UCAL_IS_LEAP_MONTH","features":[391]},{"name":"UCAL_JANUARY","features":[391]},{"name":"UCAL_JULIAN_DAY","features":[391]},{"name":"UCAL_JULY","features":[391]},{"name":"UCAL_JUNE","features":[391]},{"name":"UCAL_LEAST_MAXIMUM","features":[391]},{"name":"UCAL_LENIENT","features":[391]},{"name":"UCAL_MARCH","features":[391]},{"name":"UCAL_MAXIMUM","features":[391]},{"name":"UCAL_MAY","features":[391]},{"name":"UCAL_MILLISECOND","features":[391]},{"name":"UCAL_MILLISECONDS_IN_DAY","features":[391]},{"name":"UCAL_MINIMAL_DAYS_IN_FIRST_WEEK","features":[391]},{"name":"UCAL_MINIMUM","features":[391]},{"name":"UCAL_MINUTE","features":[391]},{"name":"UCAL_MONDAY","features":[391]},{"name":"UCAL_MONTH","features":[391]},{"name":"UCAL_NOVEMBER","features":[391]},{"name":"UCAL_OCTOBER","features":[391]},{"name":"UCAL_PM","features":[391]},{"name":"UCAL_REPEATED_WALL_TIME","features":[391]},{"name":"UCAL_SATURDAY","features":[391]},{"name":"UCAL_SECOND","features":[391]},{"name":"UCAL_SEPTEMBER","features":[391]},{"name":"UCAL_SHORT_DST","features":[391]},{"name":"UCAL_SHORT_STANDARD","features":[391]},{"name":"UCAL_SKIPPED_WALL_TIME","features":[391]},{"name":"UCAL_STANDARD","features":[391]},{"name":"UCAL_SUNDAY","features":[391]},{"name":"UCAL_THURSDAY","features":[391]},{"name":"UCAL_TRADITIONAL","features":[391]},{"name":"UCAL_TUESDAY","features":[391]},{"name":"UCAL_TZ_TRANSITION_NEXT","features":[391]},{"name":"UCAL_TZ_TRANSITION_NEXT_INCLUSIVE","features":[391]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS","features":[391]},{"name":"UCAL_TZ_TRANSITION_PREVIOUS_INCLUSIVE","features":[391]},{"name":"UCAL_UNDECIMBER","features":[391]},{"name":"UCAL_UNKNOWN_ZONE_ID","features":[391]},{"name":"UCAL_WALLTIME_FIRST","features":[391]},{"name":"UCAL_WALLTIME_LAST","features":[391]},{"name":"UCAL_WALLTIME_NEXT_VALID","features":[391]},{"name":"UCAL_WEDNESDAY","features":[391]},{"name":"UCAL_WEEKDAY","features":[391]},{"name":"UCAL_WEEKEND","features":[391]},{"name":"UCAL_WEEKEND_CEASE","features":[391]},{"name":"UCAL_WEEKEND_ONSET","features":[391]},{"name":"UCAL_WEEK_OF_MONTH","features":[391]},{"name":"UCAL_WEEK_OF_YEAR","features":[391]},{"name":"UCAL_YEAR","features":[391]},{"name":"UCAL_YEAR_WOY","features":[391]},{"name":"UCAL_ZONE_OFFSET","features":[391]},{"name":"UCAL_ZONE_TYPE_ANY","features":[391]},{"name":"UCAL_ZONE_TYPE_CANONICAL","features":[391]},{"name":"UCAL_ZONE_TYPE_CANONICAL_LOCATION","features":[391]},{"name":"UCHAR_AGE","features":[391]},{"name":"UCHAR_ALPHABETIC","features":[391]},{"name":"UCHAR_ASCII_HEX_DIGIT","features":[391]},{"name":"UCHAR_BIDI_CLASS","features":[391]},{"name":"UCHAR_BIDI_CONTROL","features":[391]},{"name":"UCHAR_BIDI_MIRRORED","features":[391]},{"name":"UCHAR_BIDI_MIRRORING_GLYPH","features":[391]},{"name":"UCHAR_BIDI_PAIRED_BRACKET","features":[391]},{"name":"UCHAR_BIDI_PAIRED_BRACKET_TYPE","features":[391]},{"name":"UCHAR_BINARY_START","features":[391]},{"name":"UCHAR_BLOCK","features":[391]},{"name":"UCHAR_CANONICAL_COMBINING_CLASS","features":[391]},{"name":"UCHAR_CASED","features":[391]},{"name":"UCHAR_CASE_FOLDING","features":[391]},{"name":"UCHAR_CASE_IGNORABLE","features":[391]},{"name":"UCHAR_CASE_SENSITIVE","features":[391]},{"name":"UCHAR_CHANGES_WHEN_CASEFOLDED","features":[391]},{"name":"UCHAR_CHANGES_WHEN_CASEMAPPED","features":[391]},{"name":"UCHAR_CHANGES_WHEN_LOWERCASED","features":[391]},{"name":"UCHAR_CHANGES_WHEN_NFKC_CASEFOLDED","features":[391]},{"name":"UCHAR_CHANGES_WHEN_TITLECASED","features":[391]},{"name":"UCHAR_CHANGES_WHEN_UPPERCASED","features":[391]},{"name":"UCHAR_DASH","features":[391]},{"name":"UCHAR_DECOMPOSITION_TYPE","features":[391]},{"name":"UCHAR_DEFAULT_IGNORABLE_CODE_POINT","features":[391]},{"name":"UCHAR_DEPRECATED","features":[391]},{"name":"UCHAR_DIACRITIC","features":[391]},{"name":"UCHAR_DOUBLE_START","features":[391]},{"name":"UCHAR_EAST_ASIAN_WIDTH","features":[391]},{"name":"UCHAR_EMOJI","features":[391]},{"name":"UCHAR_EMOJI_COMPONENT","features":[391]},{"name":"UCHAR_EMOJI_MODIFIER","features":[391]},{"name":"UCHAR_EMOJI_MODIFIER_BASE","features":[391]},{"name":"UCHAR_EMOJI_PRESENTATION","features":[391]},{"name":"UCHAR_EXTENDED_PICTOGRAPHIC","features":[391]},{"name":"UCHAR_EXTENDER","features":[391]},{"name":"UCHAR_FULL_COMPOSITION_EXCLUSION","features":[391]},{"name":"UCHAR_GENERAL_CATEGORY","features":[391]},{"name":"UCHAR_GENERAL_CATEGORY_MASK","features":[391]},{"name":"UCHAR_GRAPHEME_BASE","features":[391]},{"name":"UCHAR_GRAPHEME_CLUSTER_BREAK","features":[391]},{"name":"UCHAR_GRAPHEME_EXTEND","features":[391]},{"name":"UCHAR_GRAPHEME_LINK","features":[391]},{"name":"UCHAR_HANGUL_SYLLABLE_TYPE","features":[391]},{"name":"UCHAR_HEX_DIGIT","features":[391]},{"name":"UCHAR_HYPHEN","features":[391]},{"name":"UCHAR_IDEOGRAPHIC","features":[391]},{"name":"UCHAR_IDS_BINARY_OPERATOR","features":[391]},{"name":"UCHAR_IDS_TRINARY_OPERATOR","features":[391]},{"name":"UCHAR_ID_CONTINUE","features":[391]},{"name":"UCHAR_ID_START","features":[391]},{"name":"UCHAR_INDIC_POSITIONAL_CATEGORY","features":[391]},{"name":"UCHAR_INDIC_SYLLABIC_CATEGORY","features":[391]},{"name":"UCHAR_INT_START","features":[391]},{"name":"UCHAR_INVALID_CODE","features":[391]},{"name":"UCHAR_JOINING_GROUP","features":[391]},{"name":"UCHAR_JOINING_TYPE","features":[391]},{"name":"UCHAR_JOIN_CONTROL","features":[391]},{"name":"UCHAR_LEAD_CANONICAL_COMBINING_CLASS","features":[391]},{"name":"UCHAR_LINE_BREAK","features":[391]},{"name":"UCHAR_LOGICAL_ORDER_EXCEPTION","features":[391]},{"name":"UCHAR_LOWERCASE","features":[391]},{"name":"UCHAR_LOWERCASE_MAPPING","features":[391]},{"name":"UCHAR_MASK_START","features":[391]},{"name":"UCHAR_MATH","features":[391]},{"name":"UCHAR_MAX_VALUE","features":[391]},{"name":"UCHAR_MIN_VALUE","features":[391]},{"name":"UCHAR_NAME","features":[391]},{"name":"UCHAR_NFC_INERT","features":[391]},{"name":"UCHAR_NFC_QUICK_CHECK","features":[391]},{"name":"UCHAR_NFD_INERT","features":[391]},{"name":"UCHAR_NFD_QUICK_CHECK","features":[391]},{"name":"UCHAR_NFKC_INERT","features":[391]},{"name":"UCHAR_NFKC_QUICK_CHECK","features":[391]},{"name":"UCHAR_NFKD_INERT","features":[391]},{"name":"UCHAR_NFKD_QUICK_CHECK","features":[391]},{"name":"UCHAR_NONCHARACTER_CODE_POINT","features":[391]},{"name":"UCHAR_NUMERIC_TYPE","features":[391]},{"name":"UCHAR_NUMERIC_VALUE","features":[391]},{"name":"UCHAR_OTHER_PROPERTY_START","features":[391]},{"name":"UCHAR_PATTERN_SYNTAX","features":[391]},{"name":"UCHAR_PATTERN_WHITE_SPACE","features":[391]},{"name":"UCHAR_POSIX_ALNUM","features":[391]},{"name":"UCHAR_POSIX_BLANK","features":[391]},{"name":"UCHAR_POSIX_GRAPH","features":[391]},{"name":"UCHAR_POSIX_PRINT","features":[391]},{"name":"UCHAR_POSIX_XDIGIT","features":[391]},{"name":"UCHAR_PREPENDED_CONCATENATION_MARK","features":[391]},{"name":"UCHAR_QUOTATION_MARK","features":[391]},{"name":"UCHAR_RADICAL","features":[391]},{"name":"UCHAR_REGIONAL_INDICATOR","features":[391]},{"name":"UCHAR_SCRIPT","features":[391]},{"name":"UCHAR_SCRIPT_EXTENSIONS","features":[391]},{"name":"UCHAR_SEGMENT_STARTER","features":[391]},{"name":"UCHAR_SENTENCE_BREAK","features":[391]},{"name":"UCHAR_SIMPLE_CASE_FOLDING","features":[391]},{"name":"UCHAR_SIMPLE_LOWERCASE_MAPPING","features":[391]},{"name":"UCHAR_SIMPLE_TITLECASE_MAPPING","features":[391]},{"name":"UCHAR_SIMPLE_UPPERCASE_MAPPING","features":[391]},{"name":"UCHAR_SOFT_DOTTED","features":[391]},{"name":"UCHAR_STRING_START","features":[391]},{"name":"UCHAR_S_TERM","features":[391]},{"name":"UCHAR_TERMINAL_PUNCTUATION","features":[391]},{"name":"UCHAR_TITLECASE_MAPPING","features":[391]},{"name":"UCHAR_TRAIL_CANONICAL_COMBINING_CLASS","features":[391]},{"name":"UCHAR_UNIFIED_IDEOGRAPH","features":[391]},{"name":"UCHAR_UPPERCASE","features":[391]},{"name":"UCHAR_UPPERCASE_MAPPING","features":[391]},{"name":"UCHAR_VARIATION_SELECTOR","features":[391]},{"name":"UCHAR_VERTICAL_ORIENTATION","features":[391]},{"name":"UCHAR_WHITE_SPACE","features":[391]},{"name":"UCHAR_WORD_BREAK","features":[391]},{"name":"UCHAR_XID_CONTINUE","features":[391]},{"name":"UCHAR_XID_START","features":[391]},{"name":"UCLN_NO_AUTO_CLEANUP","features":[391]},{"name":"UCNV_BOCU1","features":[391]},{"name":"UCNV_CESU8","features":[391]},{"name":"UCNV_CLONE","features":[391]},{"name":"UCNV_CLOSE","features":[391]},{"name":"UCNV_COMPOUND_TEXT","features":[391]},{"name":"UCNV_DBCS","features":[391]},{"name":"UCNV_EBCDIC_STATEFUL","features":[391]},{"name":"UCNV_ESCAPE_C","features":[391]},{"name":"UCNV_ESCAPE_CSS2","features":[391]},{"name":"UCNV_ESCAPE_JAVA","features":[391]},{"name":"UCNV_ESCAPE_UNICODE","features":[391]},{"name":"UCNV_ESCAPE_XML_DEC","features":[391]},{"name":"UCNV_ESCAPE_XML_HEX","features":[391]},{"name":"UCNV_FROM_U_CALLBACK_ESCAPE","features":[391]},{"name":"UCNV_FROM_U_CALLBACK_SKIP","features":[391]},{"name":"UCNV_FROM_U_CALLBACK_STOP","features":[391]},{"name":"UCNV_FROM_U_CALLBACK_SUBSTITUTE","features":[391]},{"name":"UCNV_HZ","features":[391]},{"name":"UCNV_IBM","features":[391]},{"name":"UCNV_ILLEGAL","features":[391]},{"name":"UCNV_IMAP_MAILBOX","features":[391]},{"name":"UCNV_IRREGULAR","features":[391]},{"name":"UCNV_ISCII","features":[391]},{"name":"UCNV_ISO_2022","features":[391]},{"name":"UCNV_LATIN_1","features":[391]},{"name":"UCNV_LMBCS_1","features":[391]},{"name":"UCNV_LMBCS_11","features":[391]},{"name":"UCNV_LMBCS_16","features":[391]},{"name":"UCNV_LMBCS_17","features":[391]},{"name":"UCNV_LMBCS_18","features":[391]},{"name":"UCNV_LMBCS_19","features":[391]},{"name":"UCNV_LMBCS_2","features":[391]},{"name":"UCNV_LMBCS_3","features":[391]},{"name":"UCNV_LMBCS_4","features":[391]},{"name":"UCNV_LMBCS_5","features":[391]},{"name":"UCNV_LMBCS_6","features":[391]},{"name":"UCNV_LMBCS_8","features":[391]},{"name":"UCNV_LMBCS_LAST","features":[391]},{"name":"UCNV_LOCALE_OPTION_STRING","features":[391]},{"name":"UCNV_MAX_CONVERTER_NAME_LENGTH","features":[391]},{"name":"UCNV_MBCS","features":[391]},{"name":"UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES","features":[391]},{"name":"UCNV_OPTION_SEP_STRING","features":[391]},{"name":"UCNV_RESET","features":[391]},{"name":"UCNV_ROUNDTRIP_AND_FALLBACK_SET","features":[391]},{"name":"UCNV_ROUNDTRIP_SET","features":[391]},{"name":"UCNV_SBCS","features":[391]},{"name":"UCNV_SCSU","features":[391]},{"name":"UCNV_SI","features":[391]},{"name":"UCNV_SKIP_STOP_ON_ILLEGAL","features":[391]},{"name":"UCNV_SO","features":[391]},{"name":"UCNV_SUB_STOP_ON_ILLEGAL","features":[391]},{"name":"UCNV_SWAP_LFNL_OPTION_STRING","features":[391]},{"name":"UCNV_TO_U_CALLBACK_ESCAPE","features":[391]},{"name":"UCNV_TO_U_CALLBACK_SKIP","features":[391]},{"name":"UCNV_TO_U_CALLBACK_STOP","features":[391]},{"name":"UCNV_TO_U_CALLBACK_SUBSTITUTE","features":[391]},{"name":"UCNV_UNASSIGNED","features":[391]},{"name":"UCNV_UNKNOWN","features":[391]},{"name":"UCNV_UNSUPPORTED_CONVERTER","features":[391]},{"name":"UCNV_US_ASCII","features":[391]},{"name":"UCNV_UTF16","features":[391]},{"name":"UCNV_UTF16_BigEndian","features":[391]},{"name":"UCNV_UTF16_LittleEndian","features":[391]},{"name":"UCNV_UTF32","features":[391]},{"name":"UCNV_UTF32_BigEndian","features":[391]},{"name":"UCNV_UTF32_LittleEndian","features":[391]},{"name":"UCNV_UTF7","features":[391]},{"name":"UCNV_UTF8","features":[391]},{"name":"UCNV_VALUE_SEP_STRING","features":[391]},{"name":"UCNV_VERSION_OPTION_STRING","features":[391]},{"name":"UCOL_ALTERNATE_HANDLING","features":[391]},{"name":"UCOL_ATTRIBUTE_COUNT","features":[391]},{"name":"UCOL_BOUND_LOWER","features":[391]},{"name":"UCOL_BOUND_UPPER","features":[391]},{"name":"UCOL_BOUND_UPPER_LONG","features":[391]},{"name":"UCOL_CASE_FIRST","features":[391]},{"name":"UCOL_CASE_LEVEL","features":[391]},{"name":"UCOL_CE_STRENGTH_LIMIT","features":[391]},{"name":"UCOL_DECOMPOSITION_MODE","features":[391]},{"name":"UCOL_DEFAULT","features":[391]},{"name":"UCOL_DEFAULT_STRENGTH","features":[391]},{"name":"UCOL_EQUAL","features":[391]},{"name":"UCOL_FRENCH_COLLATION","features":[391]},{"name":"UCOL_FULL_RULES","features":[391]},{"name":"UCOL_GREATER","features":[391]},{"name":"UCOL_IDENTICAL","features":[391]},{"name":"UCOL_LESS","features":[391]},{"name":"UCOL_LOWER_FIRST","features":[391]},{"name":"UCOL_NON_IGNORABLE","features":[391]},{"name":"UCOL_NORMALIZATION_MODE","features":[391]},{"name":"UCOL_NUMERIC_COLLATION","features":[391]},{"name":"UCOL_OFF","features":[391]},{"name":"UCOL_ON","features":[391]},{"name":"UCOL_PRIMARY","features":[391]},{"name":"UCOL_QUATERNARY","features":[391]},{"name":"UCOL_REORDER_CODE_CURRENCY","features":[391]},{"name":"UCOL_REORDER_CODE_DEFAULT","features":[391]},{"name":"UCOL_REORDER_CODE_DIGIT","features":[391]},{"name":"UCOL_REORDER_CODE_FIRST","features":[391]},{"name":"UCOL_REORDER_CODE_NONE","features":[391]},{"name":"UCOL_REORDER_CODE_OTHERS","features":[391]},{"name":"UCOL_REORDER_CODE_PUNCTUATION","features":[391]},{"name":"UCOL_REORDER_CODE_SPACE","features":[391]},{"name":"UCOL_REORDER_CODE_SYMBOL","features":[391]},{"name":"UCOL_SECONDARY","features":[391]},{"name":"UCOL_SHIFTED","features":[391]},{"name":"UCOL_STRENGTH","features":[391]},{"name":"UCOL_STRENGTH_LIMIT","features":[391]},{"name":"UCOL_TAILORING_ONLY","features":[391]},{"name":"UCOL_TERTIARY","features":[391]},{"name":"UCOL_UPPER_FIRST","features":[391]},{"name":"UCONFIG_ENABLE_PLUGINS","features":[391]},{"name":"UCONFIG_FORMAT_FASTPATHS_49","features":[391]},{"name":"UCONFIG_HAVE_PARSEALLINPUT","features":[391]},{"name":"UCONFIG_NO_BREAK_ITERATION","features":[391]},{"name":"UCONFIG_NO_COLLATION","features":[391]},{"name":"UCONFIG_NO_CONVERSION","features":[391]},{"name":"UCONFIG_NO_FILE_IO","features":[391]},{"name":"UCONFIG_NO_FILTERED_BREAK_ITERATION","features":[391]},{"name":"UCONFIG_NO_FORMATTING","features":[391]},{"name":"UCONFIG_NO_IDNA","features":[391]},{"name":"UCONFIG_NO_LEGACY_CONVERSION","features":[391]},{"name":"UCONFIG_NO_NORMALIZATION","features":[391]},{"name":"UCONFIG_NO_REGULAR_EXPRESSIONS","features":[391]},{"name":"UCONFIG_NO_SERVICE","features":[391]},{"name":"UCONFIG_NO_TRANSLITERATION","features":[391]},{"name":"UCONFIG_ONLY_COLLATION","features":[391]},{"name":"UCONFIG_ONLY_HTML_CONVERSION","features":[391]},{"name":"UCPMAP_RANGE_FIXED_ALL_SURROGATES","features":[391]},{"name":"UCPMAP_RANGE_FIXED_LEAD_SURROGATES","features":[391]},{"name":"UCPMAP_RANGE_NORMAL","features":[391]},{"name":"UCPMap","features":[391]},{"name":"UCPMapRangeOption","features":[391]},{"name":"UCPMapValueFilter","features":[391]},{"name":"UCPTRIE_ERROR_VALUE_NEG_DATA_OFFSET","features":[391]},{"name":"UCPTRIE_FAST_DATA_BLOCK_LENGTH","features":[391]},{"name":"UCPTRIE_FAST_DATA_MASK","features":[391]},{"name":"UCPTRIE_FAST_SHIFT","features":[391]},{"name":"UCPTRIE_HIGH_VALUE_NEG_DATA_OFFSET","features":[391]},{"name":"UCPTRIE_SMALL_MAX","features":[391]},{"name":"UCPTRIE_TYPE_ANY","features":[391]},{"name":"UCPTRIE_TYPE_FAST","features":[391]},{"name":"UCPTRIE_TYPE_SMALL","features":[391]},{"name":"UCPTRIE_VALUE_BITS_16","features":[391]},{"name":"UCPTRIE_VALUE_BITS_32","features":[391]},{"name":"UCPTRIE_VALUE_BITS_8","features":[391]},{"name":"UCPTRIE_VALUE_BITS_ANY","features":[391]},{"name":"UCPTrie","features":[391]},{"name":"UCPTrieData","features":[391]},{"name":"UCPTrieType","features":[391]},{"name":"UCPTrieValueWidth","features":[391]},{"name":"UCURR_ALL","features":[391]},{"name":"UCURR_COMMON","features":[391]},{"name":"UCURR_DEPRECATED","features":[391]},{"name":"UCURR_LONG_NAME","features":[391]},{"name":"UCURR_NARROW_SYMBOL_NAME","features":[391]},{"name":"UCURR_NON_DEPRECATED","features":[391]},{"name":"UCURR_SYMBOL_NAME","features":[391]},{"name":"UCURR_UNCOMMON","features":[391]},{"name":"UCURR_USAGE_CASH","features":[391]},{"name":"UCURR_USAGE_STANDARD","features":[391]},{"name":"UCalendarAMPMs","features":[391]},{"name":"UCalendarAttribute","features":[391]},{"name":"UCalendarDateFields","features":[391]},{"name":"UCalendarDaysOfWeek","features":[391]},{"name":"UCalendarDisplayNameType","features":[391]},{"name":"UCalendarLimitType","features":[391]},{"name":"UCalendarMonths","features":[391]},{"name":"UCalendarType","features":[391]},{"name":"UCalendarWallTimeOption","features":[391]},{"name":"UCalendarWeekdayType","features":[391]},{"name":"UCaseMap","features":[391]},{"name":"UCharCategory","features":[391]},{"name":"UCharDirection","features":[391]},{"name":"UCharEnumTypeRange","features":[391]},{"name":"UCharIterator","features":[391]},{"name":"UCharIteratorCurrent","features":[391]},{"name":"UCharIteratorGetIndex","features":[391]},{"name":"UCharIteratorGetState","features":[391]},{"name":"UCharIteratorHasNext","features":[391]},{"name":"UCharIteratorHasPrevious","features":[391]},{"name":"UCharIteratorMove","features":[391]},{"name":"UCharIteratorNext","features":[391]},{"name":"UCharIteratorOrigin","features":[391]},{"name":"UCharIteratorPrevious","features":[391]},{"name":"UCharIteratorReserved","features":[391]},{"name":"UCharIteratorSetState","features":[391]},{"name":"UCharNameChoice","features":[391]},{"name":"UCharsetDetector","features":[391]},{"name":"UCharsetMatch","features":[391]},{"name":"UColAttribute","features":[391]},{"name":"UColAttributeValue","features":[391]},{"name":"UColBoundMode","features":[391]},{"name":"UColReorderCode","features":[391]},{"name":"UColRuleOption","features":[391]},{"name":"UCollationElements","features":[391]},{"name":"UCollationResult","features":[391]},{"name":"UCollator","features":[391]},{"name":"UConstrainedFieldPosition","features":[391]},{"name":"UConverter","features":[391]},{"name":"UConverterCallbackReason","features":[391]},{"name":"UConverterFromUCallback","features":[391]},{"name":"UConverterFromUnicodeArgs","features":[391]},{"name":"UConverterPlatform","features":[391]},{"name":"UConverterSelector","features":[391]},{"name":"UConverterToUCallback","features":[391]},{"name":"UConverterToUnicodeArgs","features":[391]},{"name":"UConverterType","features":[391]},{"name":"UConverterUnicodeSet","features":[391]},{"name":"UCurrCurrencyType","features":[391]},{"name":"UCurrNameStyle","features":[391]},{"name":"UCurrencySpacing","features":[391]},{"name":"UCurrencyUsage","features":[391]},{"name":"UDATPG_ABBREVIATED","features":[391]},{"name":"UDATPG_BASE_CONFLICT","features":[391]},{"name":"UDATPG_CONFLICT","features":[391]},{"name":"UDATPG_DAYPERIOD_FIELD","features":[391]},{"name":"UDATPG_DAY_FIELD","features":[391]},{"name":"UDATPG_DAY_OF_WEEK_IN_MONTH_FIELD","features":[391]},{"name":"UDATPG_DAY_OF_YEAR_FIELD","features":[391]},{"name":"UDATPG_ERA_FIELD","features":[391]},{"name":"UDATPG_FIELD_COUNT","features":[391]},{"name":"UDATPG_FRACTIONAL_SECOND_FIELD","features":[391]},{"name":"UDATPG_HOUR_FIELD","features":[391]},{"name":"UDATPG_MATCH_ALL_FIELDS_LENGTH","features":[391]},{"name":"UDATPG_MATCH_HOUR_FIELD_LENGTH","features":[391]},{"name":"UDATPG_MATCH_NO_OPTIONS","features":[391]},{"name":"UDATPG_MINUTE_FIELD","features":[391]},{"name":"UDATPG_MONTH_FIELD","features":[391]},{"name":"UDATPG_NARROW","features":[391]},{"name":"UDATPG_NO_CONFLICT","features":[391]},{"name":"UDATPG_QUARTER_FIELD","features":[391]},{"name":"UDATPG_SECOND_FIELD","features":[391]},{"name":"UDATPG_WEEKDAY_FIELD","features":[391]},{"name":"UDATPG_WEEK_OF_MONTH_FIELD","features":[391]},{"name":"UDATPG_WEEK_OF_YEAR_FIELD","features":[391]},{"name":"UDATPG_WIDE","features":[391]},{"name":"UDATPG_YEAR_FIELD","features":[391]},{"name":"UDATPG_ZONE_FIELD","features":[391]},{"name":"UDAT_ABBR_GENERIC_TZ","features":[391]},{"name":"UDAT_ABBR_MONTH","features":[391]},{"name":"UDAT_ABBR_MONTH_DAY","features":[391]},{"name":"UDAT_ABBR_MONTH_WEEKDAY_DAY","features":[391]},{"name":"UDAT_ABBR_QUARTER","features":[391]},{"name":"UDAT_ABBR_SPECIFIC_TZ","features":[391]},{"name":"UDAT_ABBR_UTC_TZ","features":[391]},{"name":"UDAT_ABBR_WEEKDAY","features":[391]},{"name":"UDAT_ABSOLUTE_DAY","features":[391]},{"name":"UDAT_ABSOLUTE_FRIDAY","features":[391]},{"name":"UDAT_ABSOLUTE_MONDAY","features":[391]},{"name":"UDAT_ABSOLUTE_MONTH","features":[391]},{"name":"UDAT_ABSOLUTE_NOW","features":[391]},{"name":"UDAT_ABSOLUTE_SATURDAY","features":[391]},{"name":"UDAT_ABSOLUTE_SUNDAY","features":[391]},{"name":"UDAT_ABSOLUTE_THURSDAY","features":[391]},{"name":"UDAT_ABSOLUTE_TUESDAY","features":[391]},{"name":"UDAT_ABSOLUTE_UNIT_COUNT","features":[391]},{"name":"UDAT_ABSOLUTE_WEDNESDAY","features":[391]},{"name":"UDAT_ABSOLUTE_WEEK","features":[391]},{"name":"UDAT_ABSOLUTE_YEAR","features":[391]},{"name":"UDAT_AM_PMS","features":[391]},{"name":"UDAT_AM_PM_FIELD","features":[391]},{"name":"UDAT_AM_PM_MIDNIGHT_NOON_FIELD","features":[391]},{"name":"UDAT_BOOLEAN_ATTRIBUTE_COUNT","features":[391]},{"name":"UDAT_CYCLIC_YEARS_ABBREVIATED","features":[391]},{"name":"UDAT_CYCLIC_YEARS_NARROW","features":[391]},{"name":"UDAT_CYCLIC_YEARS_WIDE","features":[391]},{"name":"UDAT_DATE_FIELD","features":[391]},{"name":"UDAT_DAY","features":[391]},{"name":"UDAT_DAY_OF_WEEK_FIELD","features":[391]},{"name":"UDAT_DAY_OF_WEEK_IN_MONTH_FIELD","features":[391]},{"name":"UDAT_DAY_OF_YEAR_FIELD","features":[391]},{"name":"UDAT_DEFAULT","features":[391]},{"name":"UDAT_DIRECTION_COUNT","features":[391]},{"name":"UDAT_DIRECTION_LAST","features":[391]},{"name":"UDAT_DIRECTION_LAST_2","features":[391]},{"name":"UDAT_DIRECTION_NEXT","features":[391]},{"name":"UDAT_DIRECTION_NEXT_2","features":[391]},{"name":"UDAT_DIRECTION_PLAIN","features":[391]},{"name":"UDAT_DIRECTION_THIS","features":[391]},{"name":"UDAT_DOW_LOCAL_FIELD","features":[391]},{"name":"UDAT_ERAS","features":[391]},{"name":"UDAT_ERA_FIELD","features":[391]},{"name":"UDAT_ERA_NAMES","features":[391]},{"name":"UDAT_EXTENDED_YEAR_FIELD","features":[391]},{"name":"UDAT_FLEXIBLE_DAY_PERIOD_FIELD","features":[391]},{"name":"UDAT_FRACTIONAL_SECOND_FIELD","features":[391]},{"name":"UDAT_FULL","features":[391]},{"name":"UDAT_FULL_RELATIVE","features":[391]},{"name":"UDAT_GENERIC_TZ","features":[391]},{"name":"UDAT_HOUR","features":[391]},{"name":"UDAT_HOUR0_FIELD","features":[391]},{"name":"UDAT_HOUR1_FIELD","features":[391]},{"name":"UDAT_HOUR24","features":[391]},{"name":"UDAT_HOUR24_MINUTE","features":[391]},{"name":"UDAT_HOUR24_MINUTE_SECOND","features":[391]},{"name":"UDAT_HOUR_MINUTE","features":[391]},{"name":"UDAT_HOUR_MINUTE_SECOND","features":[391]},{"name":"UDAT_HOUR_OF_DAY0_FIELD","features":[391]},{"name":"UDAT_HOUR_OF_DAY1_FIELD","features":[391]},{"name":"UDAT_JULIAN_DAY_FIELD","features":[391]},{"name":"UDAT_LOCALIZED_CHARS","features":[391]},{"name":"UDAT_LOCATION_TZ","features":[391]},{"name":"UDAT_LONG","features":[391]},{"name":"UDAT_LONG_RELATIVE","features":[391]},{"name":"UDAT_MEDIUM","features":[391]},{"name":"UDAT_MEDIUM_RELATIVE","features":[391]},{"name":"UDAT_MILLISECONDS_IN_DAY_FIELD","features":[391]},{"name":"UDAT_MINUTE","features":[391]},{"name":"UDAT_MINUTE_FIELD","features":[391]},{"name":"UDAT_MINUTE_SECOND","features":[391]},{"name":"UDAT_MONTH","features":[391]},{"name":"UDAT_MONTHS","features":[391]},{"name":"UDAT_MONTH_DAY","features":[391]},{"name":"UDAT_MONTH_FIELD","features":[391]},{"name":"UDAT_MONTH_WEEKDAY_DAY","features":[391]},{"name":"UDAT_NARROW_MONTHS","features":[391]},{"name":"UDAT_NARROW_WEEKDAYS","features":[391]},{"name":"UDAT_NONE","features":[391]},{"name":"UDAT_NUM_MONTH","features":[391]},{"name":"UDAT_NUM_MONTH_DAY","features":[391]},{"name":"UDAT_NUM_MONTH_WEEKDAY_DAY","features":[391]},{"name":"UDAT_PARSE_ALLOW_NUMERIC","features":[391]},{"name":"UDAT_PARSE_ALLOW_WHITESPACE","features":[391]},{"name":"UDAT_PARSE_MULTIPLE_PATTERNS_FOR_MATCH","features":[391]},{"name":"UDAT_PARSE_PARTIAL_LITERAL_MATCH","features":[391]},{"name":"UDAT_PATTERN","features":[391]},{"name":"UDAT_QUARTER","features":[391]},{"name":"UDAT_QUARTERS","features":[391]},{"name":"UDAT_QUARTER_FIELD","features":[391]},{"name":"UDAT_RELATIVE","features":[391]},{"name":"UDAT_RELATIVE_DAYS","features":[391]},{"name":"UDAT_RELATIVE_HOURS","features":[391]},{"name":"UDAT_RELATIVE_MINUTES","features":[391]},{"name":"UDAT_RELATIVE_MONTHS","features":[391]},{"name":"UDAT_RELATIVE_SECONDS","features":[391]},{"name":"UDAT_RELATIVE_UNIT_COUNT","features":[391]},{"name":"UDAT_RELATIVE_WEEKS","features":[391]},{"name":"UDAT_RELATIVE_YEARS","features":[391]},{"name":"UDAT_REL_LITERAL_FIELD","features":[391]},{"name":"UDAT_REL_NUMERIC_FIELD","features":[391]},{"name":"UDAT_REL_UNIT_DAY","features":[391]},{"name":"UDAT_REL_UNIT_FRIDAY","features":[391]},{"name":"UDAT_REL_UNIT_HOUR","features":[391]},{"name":"UDAT_REL_UNIT_MINUTE","features":[391]},{"name":"UDAT_REL_UNIT_MONDAY","features":[391]},{"name":"UDAT_REL_UNIT_MONTH","features":[391]},{"name":"UDAT_REL_UNIT_QUARTER","features":[391]},{"name":"UDAT_REL_UNIT_SATURDAY","features":[391]},{"name":"UDAT_REL_UNIT_SECOND","features":[391]},{"name":"UDAT_REL_UNIT_SUNDAY","features":[391]},{"name":"UDAT_REL_UNIT_THURSDAY","features":[391]},{"name":"UDAT_REL_UNIT_TUESDAY","features":[391]},{"name":"UDAT_REL_UNIT_WEDNESDAY","features":[391]},{"name":"UDAT_REL_UNIT_WEEK","features":[391]},{"name":"UDAT_REL_UNIT_YEAR","features":[391]},{"name":"UDAT_SECOND","features":[391]},{"name":"UDAT_SECOND_FIELD","features":[391]},{"name":"UDAT_SHORT","features":[391]},{"name":"UDAT_SHORTER_WEEKDAYS","features":[391]},{"name":"UDAT_SHORT_MONTHS","features":[391]},{"name":"UDAT_SHORT_QUARTERS","features":[391]},{"name":"UDAT_SHORT_RELATIVE","features":[391]},{"name":"UDAT_SHORT_WEEKDAYS","features":[391]},{"name":"UDAT_SPECIFIC_TZ","features":[391]},{"name":"UDAT_STANDALONE_DAY_FIELD","features":[391]},{"name":"UDAT_STANDALONE_MONTHS","features":[391]},{"name":"UDAT_STANDALONE_MONTH_FIELD","features":[391]},{"name":"UDAT_STANDALONE_NARROW_MONTHS","features":[391]},{"name":"UDAT_STANDALONE_NARROW_WEEKDAYS","features":[391]},{"name":"UDAT_STANDALONE_QUARTERS","features":[391]},{"name":"UDAT_STANDALONE_QUARTER_FIELD","features":[391]},{"name":"UDAT_STANDALONE_SHORTER_WEEKDAYS","features":[391]},{"name":"UDAT_STANDALONE_SHORT_MONTHS","features":[391]},{"name":"UDAT_STANDALONE_SHORT_QUARTERS","features":[391]},{"name":"UDAT_STANDALONE_SHORT_WEEKDAYS","features":[391]},{"name":"UDAT_STANDALONE_WEEKDAYS","features":[391]},{"name":"UDAT_STYLE_LONG","features":[391]},{"name":"UDAT_STYLE_NARROW","features":[391]},{"name":"UDAT_STYLE_SHORT","features":[391]},{"name":"UDAT_TIMEZONE_FIELD","features":[391]},{"name":"UDAT_TIMEZONE_GENERIC_FIELD","features":[391]},{"name":"UDAT_TIMEZONE_ISO_FIELD","features":[391]},{"name":"UDAT_TIMEZONE_ISO_LOCAL_FIELD","features":[391]},{"name":"UDAT_TIMEZONE_LOCALIZED_GMT_OFFSET_FIELD","features":[391]},{"name":"UDAT_TIMEZONE_RFC_FIELD","features":[391]},{"name":"UDAT_TIMEZONE_SPECIAL_FIELD","features":[391]},{"name":"UDAT_WEEKDAY","features":[391]},{"name":"UDAT_WEEKDAYS","features":[391]},{"name":"UDAT_WEEK_OF_MONTH_FIELD","features":[391]},{"name":"UDAT_WEEK_OF_YEAR_FIELD","features":[391]},{"name":"UDAT_YEAR","features":[391]},{"name":"UDAT_YEAR_ABBR_MONTH","features":[391]},{"name":"UDAT_YEAR_ABBR_MONTH_DAY","features":[391]},{"name":"UDAT_YEAR_ABBR_MONTH_WEEKDAY_DAY","features":[391]},{"name":"UDAT_YEAR_ABBR_QUARTER","features":[391]},{"name":"UDAT_YEAR_FIELD","features":[391]},{"name":"UDAT_YEAR_MONTH","features":[391]},{"name":"UDAT_YEAR_MONTH_DAY","features":[391]},{"name":"UDAT_YEAR_MONTH_WEEKDAY_DAY","features":[391]},{"name":"UDAT_YEAR_NAME_FIELD","features":[391]},{"name":"UDAT_YEAR_NUM_MONTH","features":[391]},{"name":"UDAT_YEAR_NUM_MONTH_DAY","features":[391]},{"name":"UDAT_YEAR_NUM_MONTH_WEEKDAY_DAY","features":[391]},{"name":"UDAT_YEAR_QUARTER","features":[391]},{"name":"UDAT_YEAR_WOY_FIELD","features":[391]},{"name":"UDAT_ZODIAC_NAMES_ABBREVIATED","features":[391]},{"name":"UDAT_ZODIAC_NAMES_NARROW","features":[391]},{"name":"UDAT_ZODIAC_NAMES_WIDE","features":[391]},{"name":"UDISPCTX_CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE","features":[391]},{"name":"UDISPCTX_CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE","features":[391]},{"name":"UDISPCTX_CAPITALIZATION_FOR_STANDALONE","features":[391]},{"name":"UDISPCTX_CAPITALIZATION_FOR_UI_LIST_OR_MENU","features":[391]},{"name":"UDISPCTX_CAPITALIZATION_NONE","features":[391]},{"name":"UDISPCTX_DIALECT_NAMES","features":[391]},{"name":"UDISPCTX_LENGTH_FULL","features":[391]},{"name":"UDISPCTX_LENGTH_SHORT","features":[391]},{"name":"UDISPCTX_NO_SUBSTITUTE","features":[391]},{"name":"UDISPCTX_STANDARD_NAMES","features":[391]},{"name":"UDISPCTX_SUBSTITUTE","features":[391]},{"name":"UDISPCTX_TYPE_CAPITALIZATION","features":[391]},{"name":"UDISPCTX_TYPE_DIALECT_HANDLING","features":[391]},{"name":"UDISPCTX_TYPE_DISPLAY_LENGTH","features":[391]},{"name":"UDISPCTX_TYPE_SUBSTITUTE_HANDLING","features":[391]},{"name":"UDTS_DB2_TIME","features":[391]},{"name":"UDTS_DOTNET_DATE_TIME","features":[391]},{"name":"UDTS_EXCEL_TIME","features":[391]},{"name":"UDTS_ICU4C_TIME","features":[391]},{"name":"UDTS_JAVA_TIME","features":[391]},{"name":"UDTS_MAC_OLD_TIME","features":[391]},{"name":"UDTS_MAC_TIME","features":[391]},{"name":"UDTS_UNIX_MICROSECONDS_TIME","features":[391]},{"name":"UDTS_UNIX_TIME","features":[391]},{"name":"UDTS_WINDOWS_FILE_TIME","features":[391]},{"name":"UDateAbsoluteUnit","features":[391]},{"name":"UDateDirection","features":[391]},{"name":"UDateFormatBooleanAttribute","features":[391]},{"name":"UDateFormatField","features":[391]},{"name":"UDateFormatStyle","features":[391]},{"name":"UDateFormatSymbolType","features":[391]},{"name":"UDateFormatSymbols","features":[391]},{"name":"UDateIntervalFormat","features":[391]},{"name":"UDateRelativeDateTimeFormatterStyle","features":[391]},{"name":"UDateRelativeUnit","features":[391]},{"name":"UDateTimePGDisplayWidth","features":[391]},{"name":"UDateTimePatternConflict","features":[391]},{"name":"UDateTimePatternField","features":[391]},{"name":"UDateTimePatternMatchOptions","features":[391]},{"name":"UDateTimeScale","features":[391]},{"name":"UDecompositionType","features":[391]},{"name":"UDialectHandling","features":[391]},{"name":"UDisplayContext","features":[391]},{"name":"UDisplayContextType","features":[391]},{"name":"UEastAsianWidth","features":[391]},{"name":"UEnumCharNamesFn","features":[391]},{"name":"UEnumeration","features":[391]},{"name":"UErrorCode","features":[391]},{"name":"UFIELD_CATEGORY_DATE","features":[391]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL","features":[391]},{"name":"UFIELD_CATEGORY_DATE_INTERVAL_SPAN","features":[391]},{"name":"UFIELD_CATEGORY_LIST","features":[391]},{"name":"UFIELD_CATEGORY_LIST_SPAN","features":[391]},{"name":"UFIELD_CATEGORY_NUMBER","features":[391]},{"name":"UFIELD_CATEGORY_RELATIVE_DATETIME","features":[391]},{"name":"UFIELD_CATEGORY_UNDEFINED","features":[391]},{"name":"UFMT_ARRAY","features":[391]},{"name":"UFMT_DATE","features":[391]},{"name":"UFMT_DOUBLE","features":[391]},{"name":"UFMT_INT64","features":[391]},{"name":"UFMT_LONG","features":[391]},{"name":"UFMT_OBJECT","features":[391]},{"name":"UFMT_STRING","features":[391]},{"name":"UFieldCategory","features":[391]},{"name":"UFieldPosition","features":[391]},{"name":"UFieldPositionIterator","features":[391]},{"name":"UFormattableType","features":[391]},{"name":"UFormattedDateInterval","features":[391]},{"name":"UFormattedList","features":[391]},{"name":"UFormattedNumber","features":[391]},{"name":"UFormattedNumberRange","features":[391]},{"name":"UFormattedRelativeDateTime","features":[391]},{"name":"UFormattedValue","features":[391]},{"name":"UGENDER_FEMALE","features":[391]},{"name":"UGENDER_MALE","features":[391]},{"name":"UGENDER_OTHER","features":[391]},{"name":"UGender","features":[391]},{"name":"UGenderInfo","features":[391]},{"name":"UGraphemeClusterBreak","features":[391]},{"name":"UHangulSyllableType","features":[391]},{"name":"UHashtable","features":[391]},{"name":"UIDNA","features":[391]},{"name":"UIDNAInfo","features":[391]},{"name":"UIDNA_CHECK_BIDI","features":[391]},{"name":"UIDNA_CHECK_CONTEXTJ","features":[391]},{"name":"UIDNA_CHECK_CONTEXTO","features":[391]},{"name":"UIDNA_DEFAULT","features":[391]},{"name":"UIDNA_ERROR_BIDI","features":[391]},{"name":"UIDNA_ERROR_CONTEXTJ","features":[391]},{"name":"UIDNA_ERROR_CONTEXTO_DIGITS","features":[391]},{"name":"UIDNA_ERROR_CONTEXTO_PUNCTUATION","features":[391]},{"name":"UIDNA_ERROR_DISALLOWED","features":[391]},{"name":"UIDNA_ERROR_DOMAIN_NAME_TOO_LONG","features":[391]},{"name":"UIDNA_ERROR_EMPTY_LABEL","features":[391]},{"name":"UIDNA_ERROR_HYPHEN_3_4","features":[391]},{"name":"UIDNA_ERROR_INVALID_ACE_LABEL","features":[391]},{"name":"UIDNA_ERROR_LABEL_HAS_DOT","features":[391]},{"name":"UIDNA_ERROR_LABEL_TOO_LONG","features":[391]},{"name":"UIDNA_ERROR_LEADING_COMBINING_MARK","features":[391]},{"name":"UIDNA_ERROR_LEADING_HYPHEN","features":[391]},{"name":"UIDNA_ERROR_PUNYCODE","features":[391]},{"name":"UIDNA_ERROR_TRAILING_HYPHEN","features":[391]},{"name":"UIDNA_NONTRANSITIONAL_TO_ASCII","features":[391]},{"name":"UIDNA_NONTRANSITIONAL_TO_UNICODE","features":[391]},{"name":"UIDNA_USE_STD3_RULES","features":[391]},{"name":"UILANGUAGE_ENUMPROCA","features":[305,391]},{"name":"UILANGUAGE_ENUMPROCW","features":[305,391]},{"name":"UITER_CURRENT","features":[391]},{"name":"UITER_LENGTH","features":[391]},{"name":"UITER_LIMIT","features":[391]},{"name":"UITER_START","features":[391]},{"name":"UITER_UNKNOWN_INDEX","features":[391]},{"name":"UITER_ZERO","features":[391]},{"name":"UIndicPositionalCategory","features":[391]},{"name":"UIndicSyllabicCategory","features":[391]},{"name":"UJoiningGroup","features":[391]},{"name":"UJoiningType","features":[391]},{"name":"ULDN_DIALECT_NAMES","features":[391]},{"name":"ULDN_STANDARD_NAMES","features":[391]},{"name":"ULISTFMT_ELEMENT_FIELD","features":[391]},{"name":"ULISTFMT_LITERAL_FIELD","features":[391]},{"name":"ULISTFMT_TYPE_AND","features":[391]},{"name":"ULISTFMT_TYPE_OR","features":[391]},{"name":"ULISTFMT_TYPE_UNITS","features":[391]},{"name":"ULISTFMT_WIDTH_NARROW","features":[391]},{"name":"ULISTFMT_WIDTH_SHORT","features":[391]},{"name":"ULISTFMT_WIDTH_WIDE","features":[391]},{"name":"ULOCDATA_ALT_QUOTATION_END","features":[391]},{"name":"ULOCDATA_ALT_QUOTATION_START","features":[391]},{"name":"ULOCDATA_ES_AUXILIARY","features":[391]},{"name":"ULOCDATA_ES_INDEX","features":[391]},{"name":"ULOCDATA_ES_PUNCTUATION","features":[391]},{"name":"ULOCDATA_ES_STANDARD","features":[391]},{"name":"ULOCDATA_QUOTATION_END","features":[391]},{"name":"ULOCDATA_QUOTATION_START","features":[391]},{"name":"ULOC_ACCEPT_FAILED","features":[391]},{"name":"ULOC_ACCEPT_FALLBACK","features":[391]},{"name":"ULOC_ACCEPT_VALID","features":[391]},{"name":"ULOC_ACTUAL_LOCALE","features":[391]},{"name":"ULOC_AVAILABLE_DEFAULT","features":[391]},{"name":"ULOC_AVAILABLE_ONLY_LEGACY_ALIASES","features":[391]},{"name":"ULOC_AVAILABLE_WITH_LEGACY_ALIASES","features":[391]},{"name":"ULOC_CANADA","features":[391]},{"name":"ULOC_CANADA_FRENCH","features":[391]},{"name":"ULOC_CHINA","features":[391]},{"name":"ULOC_CHINESE","features":[391]},{"name":"ULOC_COUNTRY_CAPACITY","features":[391]},{"name":"ULOC_ENGLISH","features":[391]},{"name":"ULOC_FRANCE","features":[391]},{"name":"ULOC_FRENCH","features":[391]},{"name":"ULOC_FULLNAME_CAPACITY","features":[391]},{"name":"ULOC_GERMAN","features":[391]},{"name":"ULOC_GERMANY","features":[391]},{"name":"ULOC_ITALIAN","features":[391]},{"name":"ULOC_ITALY","features":[391]},{"name":"ULOC_JAPAN","features":[391]},{"name":"ULOC_JAPANESE","features":[391]},{"name":"ULOC_KEYWORDS_CAPACITY","features":[391]},{"name":"ULOC_KEYWORD_AND_VALUES_CAPACITY","features":[391]},{"name":"ULOC_KEYWORD_ASSIGN_UNICODE","features":[391]},{"name":"ULOC_KEYWORD_ITEM_SEPARATOR_UNICODE","features":[391]},{"name":"ULOC_KEYWORD_SEPARATOR_UNICODE","features":[391]},{"name":"ULOC_KOREA","features":[391]},{"name":"ULOC_KOREAN","features":[391]},{"name":"ULOC_LANG_CAPACITY","features":[391]},{"name":"ULOC_LAYOUT_BTT","features":[391]},{"name":"ULOC_LAYOUT_LTR","features":[391]},{"name":"ULOC_LAYOUT_RTL","features":[391]},{"name":"ULOC_LAYOUT_TTB","features":[391]},{"name":"ULOC_LAYOUT_UNKNOWN","features":[391]},{"name":"ULOC_PRC","features":[391]},{"name":"ULOC_SCRIPT_CAPACITY","features":[391]},{"name":"ULOC_SIMPLIFIED_CHINESE","features":[391]},{"name":"ULOC_TAIWAN","features":[391]},{"name":"ULOC_TRADITIONAL_CHINESE","features":[391]},{"name":"ULOC_UK","features":[391]},{"name":"ULOC_US","features":[391]},{"name":"ULOC_VALID_LOCALE","features":[391]},{"name":"ULayoutType","features":[391]},{"name":"ULineBreak","features":[391]},{"name":"ULineBreakTag","features":[391]},{"name":"UListFormatter","features":[391]},{"name":"UListFormatterField","features":[391]},{"name":"UListFormatterType","features":[391]},{"name":"UListFormatterWidth","features":[391]},{"name":"ULocAvailableType","features":[391]},{"name":"ULocDataLocaleType","features":[391]},{"name":"ULocaleData","features":[391]},{"name":"ULocaleDataDelimiterType","features":[391]},{"name":"ULocaleDataExemplarSetType","features":[391]},{"name":"ULocaleDisplayNames","features":[391]},{"name":"UMEASFMT_WIDTH_COUNT","features":[391]},{"name":"UMEASFMT_WIDTH_NARROW","features":[391]},{"name":"UMEASFMT_WIDTH_NUMERIC","features":[391]},{"name":"UMEASFMT_WIDTH_SHORT","features":[391]},{"name":"UMEASFMT_WIDTH_WIDE","features":[391]},{"name":"UMSGPAT_APOS_DOUBLE_OPTIONAL","features":[391]},{"name":"UMSGPAT_APOS_DOUBLE_REQUIRED","features":[391]},{"name":"UMSGPAT_ARG_NAME_NOT_NUMBER","features":[391]},{"name":"UMSGPAT_ARG_NAME_NOT_VALID","features":[391]},{"name":"UMSGPAT_ARG_TYPE_CHOICE","features":[391]},{"name":"UMSGPAT_ARG_TYPE_NONE","features":[391]},{"name":"UMSGPAT_ARG_TYPE_PLURAL","features":[391]},{"name":"UMSGPAT_ARG_TYPE_SELECT","features":[391]},{"name":"UMSGPAT_ARG_TYPE_SELECTORDINAL","features":[391]},{"name":"UMSGPAT_ARG_TYPE_SIMPLE","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_DOUBLE","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_INT","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_LIMIT","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_NAME","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_NUMBER","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_SELECTOR","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_START","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_STYLE","features":[391]},{"name":"UMSGPAT_PART_TYPE_ARG_TYPE","features":[391]},{"name":"UMSGPAT_PART_TYPE_INSERT_CHAR","features":[391]},{"name":"UMSGPAT_PART_TYPE_MSG_LIMIT","features":[391]},{"name":"UMSGPAT_PART_TYPE_MSG_START","features":[391]},{"name":"UMSGPAT_PART_TYPE_REPLACE_NUMBER","features":[391]},{"name":"UMSGPAT_PART_TYPE_SKIP_SYNTAX","features":[391]},{"name":"UMS_SI","features":[391]},{"name":"UMS_UK","features":[391]},{"name":"UMS_US","features":[391]},{"name":"UMeasureFormatWidth","features":[391]},{"name":"UMeasurementSystem","features":[391]},{"name":"UMemAllocFn","features":[391]},{"name":"UMemFreeFn","features":[391]},{"name":"UMemReallocFn","features":[391]},{"name":"UMessagePatternApostropheMode","features":[391]},{"name":"UMessagePatternArgType","features":[391]},{"name":"UMessagePatternPartType","features":[391]},{"name":"UMutableCPTrie","features":[391]},{"name":"UNESCAPE_CHAR_AT","features":[391]},{"name":"UNICODERANGE","features":[391]},{"name":"UNISCRIBE_OPENTYPE","features":[391]},{"name":"UNORM2_COMPOSE","features":[391]},{"name":"UNORM2_COMPOSE_CONTIGUOUS","features":[391]},{"name":"UNORM2_DECOMPOSE","features":[391]},{"name":"UNORM2_FCD","features":[391]},{"name":"UNORM_DEFAULT","features":[391]},{"name":"UNORM_FCD","features":[391]},{"name":"UNORM_INPUT_IS_FCD","features":[391]},{"name":"UNORM_MAYBE","features":[391]},{"name":"UNORM_MODE_COUNT","features":[391]},{"name":"UNORM_NFC","features":[391]},{"name":"UNORM_NFD","features":[391]},{"name":"UNORM_NFKC","features":[391]},{"name":"UNORM_NFKD","features":[391]},{"name":"UNORM_NO","features":[391]},{"name":"UNORM_NONE","features":[391]},{"name":"UNORM_YES","features":[391]},{"name":"UNUM_CASH_CURRENCY","features":[391]},{"name":"UNUM_COMPACT_FIELD","features":[391]},{"name":"UNUM_CURRENCY","features":[391]},{"name":"UNUM_CURRENCY_ACCOUNTING","features":[391]},{"name":"UNUM_CURRENCY_CODE","features":[391]},{"name":"UNUM_CURRENCY_FIELD","features":[391]},{"name":"UNUM_CURRENCY_INSERT","features":[391]},{"name":"UNUM_CURRENCY_ISO","features":[391]},{"name":"UNUM_CURRENCY_MATCH","features":[391]},{"name":"UNUM_CURRENCY_PLURAL","features":[391]},{"name":"UNUM_CURRENCY_SPACING_COUNT","features":[391]},{"name":"UNUM_CURRENCY_STANDARD","features":[391]},{"name":"UNUM_CURRENCY_SURROUNDING_MATCH","features":[391]},{"name":"UNUM_CURRENCY_SYMBOL","features":[391]},{"name":"UNUM_CURRENCY_USAGE","features":[391]},{"name":"UNUM_DECIMAL","features":[391]},{"name":"UNUM_DECIMAL_ALWAYS_SHOWN","features":[391]},{"name":"UNUM_DECIMAL_COMPACT_LONG","features":[391]},{"name":"UNUM_DECIMAL_COMPACT_SHORT","features":[391]},{"name":"UNUM_DECIMAL_SEPARATOR_ALWAYS","features":[391]},{"name":"UNUM_DECIMAL_SEPARATOR_AUTO","features":[391]},{"name":"UNUM_DECIMAL_SEPARATOR_COUNT","features":[391]},{"name":"UNUM_DECIMAL_SEPARATOR_FIELD","features":[391]},{"name":"UNUM_DECIMAL_SEPARATOR_SYMBOL","features":[391]},{"name":"UNUM_DEFAULT","features":[391]},{"name":"UNUM_DEFAULT_RULESET","features":[391]},{"name":"UNUM_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_DURATION","features":[391]},{"name":"UNUM_EIGHT_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_EXPONENTIAL_SYMBOL","features":[391]},{"name":"UNUM_EXPONENT_FIELD","features":[391]},{"name":"UNUM_EXPONENT_MULTIPLICATION_SYMBOL","features":[391]},{"name":"UNUM_EXPONENT_SIGN_FIELD","features":[391]},{"name":"UNUM_EXPONENT_SYMBOL_FIELD","features":[391]},{"name":"UNUM_FIVE_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_FORMAT_ATTRIBUTE_VALUE_HIDDEN","features":[391]},{"name":"UNUM_FORMAT_FAIL_IF_MORE_THAN_MAX_DIGITS","features":[391]},{"name":"UNUM_FORMAT_WIDTH","features":[391]},{"name":"UNUM_FOUR_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_FRACTION_DIGITS","features":[391]},{"name":"UNUM_FRACTION_FIELD","features":[391]},{"name":"UNUM_GROUPING_AUTO","features":[391]},{"name":"UNUM_GROUPING_MIN2","features":[391]},{"name":"UNUM_GROUPING_OFF","features":[391]},{"name":"UNUM_GROUPING_ON_ALIGNED","features":[391]},{"name":"UNUM_GROUPING_SEPARATOR_FIELD","features":[391]},{"name":"UNUM_GROUPING_SEPARATOR_SYMBOL","features":[391]},{"name":"UNUM_GROUPING_SIZE","features":[391]},{"name":"UNUM_GROUPING_THOUSANDS","features":[391]},{"name":"UNUM_GROUPING_USED","features":[391]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY","features":[391]},{"name":"UNUM_IDENTITY_FALLBACK_APPROXIMATELY_OR_SINGLE_VALUE","features":[391]},{"name":"UNUM_IDENTITY_FALLBACK_RANGE","features":[391]},{"name":"UNUM_IDENTITY_FALLBACK_SINGLE_VALUE","features":[391]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_AFTER_ROUNDING","features":[391]},{"name":"UNUM_IDENTITY_RESULT_EQUAL_BEFORE_ROUNDING","features":[391]},{"name":"UNUM_IDENTITY_RESULT_NOT_EQUAL","features":[391]},{"name":"UNUM_IGNORE","features":[391]},{"name":"UNUM_INFINITY_SYMBOL","features":[391]},{"name":"UNUM_INTEGER_DIGITS","features":[391]},{"name":"UNUM_INTEGER_FIELD","features":[391]},{"name":"UNUM_INTL_CURRENCY_SYMBOL","features":[391]},{"name":"UNUM_LENIENT_PARSE","features":[391]},{"name":"UNUM_LONG","features":[391]},{"name":"UNUM_MAX_FRACTION_DIGITS","features":[391]},{"name":"UNUM_MAX_INTEGER_DIGITS","features":[391]},{"name":"UNUM_MAX_SIGNIFICANT_DIGITS","features":[391]},{"name":"UNUM_MEASURE_UNIT_FIELD","features":[391]},{"name":"UNUM_MINIMUM_GROUPING_DIGITS","features":[391]},{"name":"UNUM_MINUS_SIGN_SYMBOL","features":[391]},{"name":"UNUM_MIN_FRACTION_DIGITS","features":[391]},{"name":"UNUM_MIN_INTEGER_DIGITS","features":[391]},{"name":"UNUM_MIN_SIGNIFICANT_DIGITS","features":[391]},{"name":"UNUM_MONETARY_GROUPING_SEPARATOR_SYMBOL","features":[391]},{"name":"UNUM_MONETARY_SEPARATOR_SYMBOL","features":[391]},{"name":"UNUM_MULTIPLIER","features":[391]},{"name":"UNUM_NAN_SYMBOL","features":[391]},{"name":"UNUM_NEGATIVE_PREFIX","features":[391]},{"name":"UNUM_NEGATIVE_SUFFIX","features":[391]},{"name":"UNUM_NINE_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_NUMBERING_SYSTEM","features":[391]},{"name":"UNUM_ONE_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_ORDINAL","features":[391]},{"name":"UNUM_PADDING_CHARACTER","features":[391]},{"name":"UNUM_PADDING_POSITION","features":[391]},{"name":"UNUM_PAD_AFTER_PREFIX","features":[391]},{"name":"UNUM_PAD_AFTER_SUFFIX","features":[391]},{"name":"UNUM_PAD_BEFORE_PREFIX","features":[391]},{"name":"UNUM_PAD_BEFORE_SUFFIX","features":[391]},{"name":"UNUM_PAD_ESCAPE_SYMBOL","features":[391]},{"name":"UNUM_PARSE_ALL_INPUT","features":[391]},{"name":"UNUM_PARSE_CASE_SENSITIVE","features":[391]},{"name":"UNUM_PARSE_DECIMAL_MARK_REQUIRED","features":[391]},{"name":"UNUM_PARSE_INT_ONLY","features":[391]},{"name":"UNUM_PARSE_NO_EXPONENT","features":[391]},{"name":"UNUM_PATTERN_DECIMAL","features":[391]},{"name":"UNUM_PATTERN_RULEBASED","features":[391]},{"name":"UNUM_PATTERN_SEPARATOR_SYMBOL","features":[391]},{"name":"UNUM_PERCENT","features":[391]},{"name":"UNUM_PERCENT_FIELD","features":[391]},{"name":"UNUM_PERCENT_SYMBOL","features":[391]},{"name":"UNUM_PERMILL_FIELD","features":[391]},{"name":"UNUM_PERMILL_SYMBOL","features":[391]},{"name":"UNUM_PLUS_SIGN_SYMBOL","features":[391]},{"name":"UNUM_POSITIVE_PREFIX","features":[391]},{"name":"UNUM_POSITIVE_SUFFIX","features":[391]},{"name":"UNUM_PUBLIC_RULESETS","features":[391]},{"name":"UNUM_RANGE_COLLAPSE_ALL","features":[391]},{"name":"UNUM_RANGE_COLLAPSE_AUTO","features":[391]},{"name":"UNUM_RANGE_COLLAPSE_NONE","features":[391]},{"name":"UNUM_RANGE_COLLAPSE_UNIT","features":[391]},{"name":"UNUM_ROUNDING_INCREMENT","features":[391]},{"name":"UNUM_ROUNDING_MODE","features":[391]},{"name":"UNUM_ROUND_CEILING","features":[391]},{"name":"UNUM_ROUND_DOWN","features":[391]},{"name":"UNUM_ROUND_FLOOR","features":[391]},{"name":"UNUM_ROUND_HALFDOWN","features":[391]},{"name":"UNUM_ROUND_HALFEVEN","features":[391]},{"name":"UNUM_ROUND_HALFUP","features":[391]},{"name":"UNUM_ROUND_UNNECESSARY","features":[391]},{"name":"UNUM_ROUND_UP","features":[391]},{"name":"UNUM_SCALE","features":[391]},{"name":"UNUM_SCIENTIFIC","features":[391]},{"name":"UNUM_SECONDARY_GROUPING_SIZE","features":[391]},{"name":"UNUM_SEVEN_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_SHORT","features":[391]},{"name":"UNUM_SIGNIFICANT_DIGITS_USED","features":[391]},{"name":"UNUM_SIGNIFICANT_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_SIGN_ACCOUNTING","features":[391]},{"name":"UNUM_SIGN_ACCOUNTING_ALWAYS","features":[391]},{"name":"UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO","features":[391]},{"name":"UNUM_SIGN_ALWAYS","features":[391]},{"name":"UNUM_SIGN_ALWAYS_SHOWN","features":[391]},{"name":"UNUM_SIGN_AUTO","features":[391]},{"name":"UNUM_SIGN_COUNT","features":[391]},{"name":"UNUM_SIGN_EXCEPT_ZERO","features":[391]},{"name":"UNUM_SIGN_FIELD","features":[391]},{"name":"UNUM_SIGN_NEVER","features":[391]},{"name":"UNUM_SIX_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_SPELLOUT","features":[391]},{"name":"UNUM_THREE_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_TWO_DIGIT_SYMBOL","features":[391]},{"name":"UNUM_UNIT_WIDTH_COUNT","features":[391]},{"name":"UNUM_UNIT_WIDTH_FULL_NAME","features":[391]},{"name":"UNUM_UNIT_WIDTH_HIDDEN","features":[391]},{"name":"UNUM_UNIT_WIDTH_ISO_CODE","features":[391]},{"name":"UNUM_UNIT_WIDTH_NARROW","features":[391]},{"name":"UNUM_UNIT_WIDTH_SHORT","features":[391]},{"name":"UNUM_ZERO_DIGIT_SYMBOL","features":[391]},{"name":"UNormalization2Mode","features":[391]},{"name":"UNormalizationCheckResult","features":[391]},{"name":"UNormalizationMode","features":[391]},{"name":"UNormalizer2","features":[391]},{"name":"UNumberCompactStyle","features":[391]},{"name":"UNumberDecimalSeparatorDisplay","features":[391]},{"name":"UNumberFormatAttribute","features":[391]},{"name":"UNumberFormatAttributeValue","features":[391]},{"name":"UNumberFormatFields","features":[391]},{"name":"UNumberFormatPadPosition","features":[391]},{"name":"UNumberFormatRoundingMode","features":[391]},{"name":"UNumberFormatStyle","features":[391]},{"name":"UNumberFormatSymbol","features":[391]},{"name":"UNumberFormatTextAttribute","features":[391]},{"name":"UNumberFormatter","features":[391]},{"name":"UNumberGroupingStrategy","features":[391]},{"name":"UNumberRangeCollapse","features":[391]},{"name":"UNumberRangeIdentityFallback","features":[391]},{"name":"UNumberRangeIdentityResult","features":[391]},{"name":"UNumberSignDisplay","features":[391]},{"name":"UNumberUnitWidth","features":[391]},{"name":"UNumberingSystem","features":[391]},{"name":"UNumericType","features":[391]},{"name":"UPLURAL_TYPE_CARDINAL","features":[391]},{"name":"UPLURAL_TYPE_ORDINAL","features":[391]},{"name":"UParseError","features":[391]},{"name":"UPluralRules","features":[391]},{"name":"UPluralType","features":[391]},{"name":"UProperty","features":[391]},{"name":"UPropertyNameChoice","features":[391]},{"name":"UREGEX_CASE_INSENSITIVE","features":[391]},{"name":"UREGEX_COMMENTS","features":[391]},{"name":"UREGEX_DOTALL","features":[391]},{"name":"UREGEX_ERROR_ON_UNKNOWN_ESCAPES","features":[391]},{"name":"UREGEX_LITERAL","features":[391]},{"name":"UREGEX_MULTILINE","features":[391]},{"name":"UREGEX_UNIX_LINES","features":[391]},{"name":"UREGEX_UWORD","features":[391]},{"name":"URES_ALIAS","features":[391]},{"name":"URES_ARRAY","features":[391]},{"name":"URES_BINARY","features":[391]},{"name":"URES_INT","features":[391]},{"name":"URES_INT_VECTOR","features":[391]},{"name":"URES_NONE","features":[391]},{"name":"URES_STRING","features":[391]},{"name":"URES_TABLE","features":[391]},{"name":"URGN_CONTINENT","features":[391]},{"name":"URGN_DEPRECATED","features":[391]},{"name":"URGN_GROUPING","features":[391]},{"name":"URGN_SUBCONTINENT","features":[391]},{"name":"URGN_TERRITORY","features":[391]},{"name":"URGN_UNKNOWN","features":[391]},{"name":"URGN_WORLD","features":[391]},{"name":"URegexFindProgressCallback","features":[391]},{"name":"URegexMatchCallback","features":[391]},{"name":"URegexpFlag","features":[391]},{"name":"URegion","features":[391]},{"name":"URegionType","features":[391]},{"name":"URegularExpression","features":[391]},{"name":"URelativeDateTimeFormatter","features":[391]},{"name":"URelativeDateTimeFormatterField","features":[391]},{"name":"URelativeDateTimeUnit","features":[391]},{"name":"UReplaceableCallbacks","features":[391]},{"name":"UResType","features":[391]},{"name":"UResourceBundle","features":[391]},{"name":"URestrictionLevel","features":[391]},{"name":"USCRIPT_ADLAM","features":[391]},{"name":"USCRIPT_AFAKA","features":[391]},{"name":"USCRIPT_AHOM","features":[391]},{"name":"USCRIPT_ANATOLIAN_HIEROGLYPHS","features":[391]},{"name":"USCRIPT_ARABIC","features":[391]},{"name":"USCRIPT_ARMENIAN","features":[391]},{"name":"USCRIPT_AVESTAN","features":[391]},{"name":"USCRIPT_BALINESE","features":[391]},{"name":"USCRIPT_BAMUM","features":[391]},{"name":"USCRIPT_BASSA_VAH","features":[391]},{"name":"USCRIPT_BATAK","features":[391]},{"name":"USCRIPT_BENGALI","features":[391]},{"name":"USCRIPT_BHAIKSUKI","features":[391]},{"name":"USCRIPT_BLISSYMBOLS","features":[391]},{"name":"USCRIPT_BOOK_PAHLAVI","features":[391]},{"name":"USCRIPT_BOPOMOFO","features":[391]},{"name":"USCRIPT_BRAHMI","features":[391]},{"name":"USCRIPT_BRAILLE","features":[391]},{"name":"USCRIPT_BUGINESE","features":[391]},{"name":"USCRIPT_BUHID","features":[391]},{"name":"USCRIPT_CANADIAN_ABORIGINAL","features":[391]},{"name":"USCRIPT_CARIAN","features":[391]},{"name":"USCRIPT_CAUCASIAN_ALBANIAN","features":[391]},{"name":"USCRIPT_CHAKMA","features":[391]},{"name":"USCRIPT_CHAM","features":[391]},{"name":"USCRIPT_CHEROKEE","features":[391]},{"name":"USCRIPT_CHORASMIAN","features":[391]},{"name":"USCRIPT_CIRTH","features":[391]},{"name":"USCRIPT_COMMON","features":[391]},{"name":"USCRIPT_COPTIC","features":[391]},{"name":"USCRIPT_CUNEIFORM","features":[391]},{"name":"USCRIPT_CYPRIOT","features":[391]},{"name":"USCRIPT_CYRILLIC","features":[391]},{"name":"USCRIPT_DEMOTIC_EGYPTIAN","features":[391]},{"name":"USCRIPT_DESERET","features":[391]},{"name":"USCRIPT_DEVANAGARI","features":[391]},{"name":"USCRIPT_DIVES_AKURU","features":[391]},{"name":"USCRIPT_DOGRA","features":[391]},{"name":"USCRIPT_DUPLOYAN","features":[391]},{"name":"USCRIPT_EASTERN_SYRIAC","features":[391]},{"name":"USCRIPT_EGYPTIAN_HIEROGLYPHS","features":[391]},{"name":"USCRIPT_ELBASAN","features":[391]},{"name":"USCRIPT_ELYMAIC","features":[391]},{"name":"USCRIPT_ESTRANGELO_SYRIAC","features":[391]},{"name":"USCRIPT_ETHIOPIC","features":[391]},{"name":"USCRIPT_GEORGIAN","features":[391]},{"name":"USCRIPT_GLAGOLITIC","features":[391]},{"name":"USCRIPT_GOTHIC","features":[391]},{"name":"USCRIPT_GRANTHA","features":[391]},{"name":"USCRIPT_GREEK","features":[391]},{"name":"USCRIPT_GUJARATI","features":[391]},{"name":"USCRIPT_GUNJALA_GONDI","features":[391]},{"name":"USCRIPT_GURMUKHI","features":[391]},{"name":"USCRIPT_HAN","features":[391]},{"name":"USCRIPT_HANGUL","features":[391]},{"name":"USCRIPT_HANIFI_ROHINGYA","features":[391]},{"name":"USCRIPT_HANUNOO","features":[391]},{"name":"USCRIPT_HAN_WITH_BOPOMOFO","features":[391]},{"name":"USCRIPT_HARAPPAN_INDUS","features":[391]},{"name":"USCRIPT_HATRAN","features":[391]},{"name":"USCRIPT_HEBREW","features":[391]},{"name":"USCRIPT_HIERATIC_EGYPTIAN","features":[391]},{"name":"USCRIPT_HIRAGANA","features":[391]},{"name":"USCRIPT_IMPERIAL_ARAMAIC","features":[391]},{"name":"USCRIPT_INHERITED","features":[391]},{"name":"USCRIPT_INSCRIPTIONAL_PAHLAVI","features":[391]},{"name":"USCRIPT_INSCRIPTIONAL_PARTHIAN","features":[391]},{"name":"USCRIPT_INVALID_CODE","features":[391]},{"name":"USCRIPT_JAMO","features":[391]},{"name":"USCRIPT_JAPANESE","features":[391]},{"name":"USCRIPT_JAVANESE","features":[391]},{"name":"USCRIPT_JURCHEN","features":[391]},{"name":"USCRIPT_KAITHI","features":[391]},{"name":"USCRIPT_KANNADA","features":[391]},{"name":"USCRIPT_KATAKANA","features":[391]},{"name":"USCRIPT_KATAKANA_OR_HIRAGANA","features":[391]},{"name":"USCRIPT_KAYAH_LI","features":[391]},{"name":"USCRIPT_KHAROSHTHI","features":[391]},{"name":"USCRIPT_KHITAN_SMALL_SCRIPT","features":[391]},{"name":"USCRIPT_KHMER","features":[391]},{"name":"USCRIPT_KHOJKI","features":[391]},{"name":"USCRIPT_KHUDAWADI","features":[391]},{"name":"USCRIPT_KHUTSURI","features":[391]},{"name":"USCRIPT_KOREAN","features":[391]},{"name":"USCRIPT_KPELLE","features":[391]},{"name":"USCRIPT_LANNA","features":[391]},{"name":"USCRIPT_LAO","features":[391]},{"name":"USCRIPT_LATIN","features":[391]},{"name":"USCRIPT_LATIN_FRAKTUR","features":[391]},{"name":"USCRIPT_LATIN_GAELIC","features":[391]},{"name":"USCRIPT_LEPCHA","features":[391]},{"name":"USCRIPT_LIMBU","features":[391]},{"name":"USCRIPT_LINEAR_A","features":[391]},{"name":"USCRIPT_LINEAR_B","features":[391]},{"name":"USCRIPT_LISU","features":[391]},{"name":"USCRIPT_LOMA","features":[391]},{"name":"USCRIPT_LYCIAN","features":[391]},{"name":"USCRIPT_LYDIAN","features":[391]},{"name":"USCRIPT_MAHAJANI","features":[391]},{"name":"USCRIPT_MAKASAR","features":[391]},{"name":"USCRIPT_MALAYALAM","features":[391]},{"name":"USCRIPT_MANDAEAN","features":[391]},{"name":"USCRIPT_MANDAIC","features":[391]},{"name":"USCRIPT_MANICHAEAN","features":[391]},{"name":"USCRIPT_MARCHEN","features":[391]},{"name":"USCRIPT_MASARAM_GONDI","features":[391]},{"name":"USCRIPT_MATHEMATICAL_NOTATION","features":[391]},{"name":"USCRIPT_MAYAN_HIEROGLYPHS","features":[391]},{"name":"USCRIPT_MEDEFAIDRIN","features":[391]},{"name":"USCRIPT_MEITEI_MAYEK","features":[391]},{"name":"USCRIPT_MENDE","features":[391]},{"name":"USCRIPT_MEROITIC","features":[391]},{"name":"USCRIPT_MEROITIC_CURSIVE","features":[391]},{"name":"USCRIPT_MEROITIC_HIEROGLYPHS","features":[391]},{"name":"USCRIPT_MIAO","features":[391]},{"name":"USCRIPT_MODI","features":[391]},{"name":"USCRIPT_MONGOLIAN","features":[391]},{"name":"USCRIPT_MOON","features":[391]},{"name":"USCRIPT_MRO","features":[391]},{"name":"USCRIPT_MULTANI","features":[391]},{"name":"USCRIPT_MYANMAR","features":[391]},{"name":"USCRIPT_NABATAEAN","features":[391]},{"name":"USCRIPT_NAKHI_GEBA","features":[391]},{"name":"USCRIPT_NANDINAGARI","features":[391]},{"name":"USCRIPT_NEWA","features":[391]},{"name":"USCRIPT_NEW_TAI_LUE","features":[391]},{"name":"USCRIPT_NKO","features":[391]},{"name":"USCRIPT_NUSHU","features":[391]},{"name":"USCRIPT_NYIAKENG_PUACHUE_HMONG","features":[391]},{"name":"USCRIPT_OGHAM","features":[391]},{"name":"USCRIPT_OLD_CHURCH_SLAVONIC_CYRILLIC","features":[391]},{"name":"USCRIPT_OLD_HUNGARIAN","features":[391]},{"name":"USCRIPT_OLD_ITALIC","features":[391]},{"name":"USCRIPT_OLD_NORTH_ARABIAN","features":[391]},{"name":"USCRIPT_OLD_PERMIC","features":[391]},{"name":"USCRIPT_OLD_PERSIAN","features":[391]},{"name":"USCRIPT_OLD_SOGDIAN","features":[391]},{"name":"USCRIPT_OLD_SOUTH_ARABIAN","features":[391]},{"name":"USCRIPT_OL_CHIKI","features":[391]},{"name":"USCRIPT_ORIYA","features":[391]},{"name":"USCRIPT_ORKHON","features":[391]},{"name":"USCRIPT_OSAGE","features":[391]},{"name":"USCRIPT_OSMANYA","features":[391]},{"name":"USCRIPT_PAHAWH_HMONG","features":[391]},{"name":"USCRIPT_PALMYRENE","features":[391]},{"name":"USCRIPT_PAU_CIN_HAU","features":[391]},{"name":"USCRIPT_PHAGS_PA","features":[391]},{"name":"USCRIPT_PHOENICIAN","features":[391]},{"name":"USCRIPT_PHONETIC_POLLARD","features":[391]},{"name":"USCRIPT_PSALTER_PAHLAVI","features":[391]},{"name":"USCRIPT_REJANG","features":[391]},{"name":"USCRIPT_RONGORONGO","features":[391]},{"name":"USCRIPT_RUNIC","features":[391]},{"name":"USCRIPT_SAMARITAN","features":[391]},{"name":"USCRIPT_SARATI","features":[391]},{"name":"USCRIPT_SAURASHTRA","features":[391]},{"name":"USCRIPT_SHARADA","features":[391]},{"name":"USCRIPT_SHAVIAN","features":[391]},{"name":"USCRIPT_SIDDHAM","features":[391]},{"name":"USCRIPT_SIGN_WRITING","features":[391]},{"name":"USCRIPT_SIMPLIFIED_HAN","features":[391]},{"name":"USCRIPT_SINDHI","features":[391]},{"name":"USCRIPT_SINHALA","features":[391]},{"name":"USCRIPT_SOGDIAN","features":[391]},{"name":"USCRIPT_SORA_SOMPENG","features":[391]},{"name":"USCRIPT_SOYOMBO","features":[391]},{"name":"USCRIPT_SUNDANESE","features":[391]},{"name":"USCRIPT_SYLOTI_NAGRI","features":[391]},{"name":"USCRIPT_SYMBOLS","features":[391]},{"name":"USCRIPT_SYMBOLS_EMOJI","features":[391]},{"name":"USCRIPT_SYRIAC","features":[391]},{"name":"USCRIPT_TAGALOG","features":[391]},{"name":"USCRIPT_TAGBANWA","features":[391]},{"name":"USCRIPT_TAI_LE","features":[391]},{"name":"USCRIPT_TAI_VIET","features":[391]},{"name":"USCRIPT_TAKRI","features":[391]},{"name":"USCRIPT_TAMIL","features":[391]},{"name":"USCRIPT_TANGUT","features":[391]},{"name":"USCRIPT_TELUGU","features":[391]},{"name":"USCRIPT_TENGWAR","features":[391]},{"name":"USCRIPT_THAANA","features":[391]},{"name":"USCRIPT_THAI","features":[391]},{"name":"USCRIPT_TIBETAN","features":[391]},{"name":"USCRIPT_TIFINAGH","features":[391]},{"name":"USCRIPT_TIRHUTA","features":[391]},{"name":"USCRIPT_TRADITIONAL_HAN","features":[391]},{"name":"USCRIPT_UCAS","features":[391]},{"name":"USCRIPT_UGARITIC","features":[391]},{"name":"USCRIPT_UNKNOWN","features":[391]},{"name":"USCRIPT_UNWRITTEN_LANGUAGES","features":[391]},{"name":"USCRIPT_USAGE_ASPIRATIONAL","features":[391]},{"name":"USCRIPT_USAGE_EXCLUDED","features":[391]},{"name":"USCRIPT_USAGE_LIMITED_USE","features":[391]},{"name":"USCRIPT_USAGE_NOT_ENCODED","features":[391]},{"name":"USCRIPT_USAGE_RECOMMENDED","features":[391]},{"name":"USCRIPT_USAGE_UNKNOWN","features":[391]},{"name":"USCRIPT_VAI","features":[391]},{"name":"USCRIPT_VISIBLE_SPEECH","features":[391]},{"name":"USCRIPT_WANCHO","features":[391]},{"name":"USCRIPT_WARANG_CITI","features":[391]},{"name":"USCRIPT_WESTERN_SYRIAC","features":[391]},{"name":"USCRIPT_WOLEAI","features":[391]},{"name":"USCRIPT_YEZIDI","features":[391]},{"name":"USCRIPT_YI","features":[391]},{"name":"USCRIPT_ZANABAZAR_SQUARE","features":[391]},{"name":"USEARCH_ANY_BASE_WEIGHT_IS_WILDCARD","features":[391]},{"name":"USEARCH_DEFAULT","features":[391]},{"name":"USEARCH_DONE","features":[391]},{"name":"USEARCH_ELEMENT_COMPARISON","features":[391]},{"name":"USEARCH_OFF","features":[391]},{"name":"USEARCH_ON","features":[391]},{"name":"USEARCH_OVERLAP","features":[391]},{"name":"USEARCH_PATTERN_BASE_WEIGHT_IS_WILDCARD","features":[391]},{"name":"USEARCH_STANDARD_ELEMENT_COMPARISON","features":[391]},{"name":"USET_ADD_CASE_MAPPINGS","features":[391]},{"name":"USET_CASE_INSENSITIVE","features":[391]},{"name":"USET_IGNORE_SPACE","features":[391]},{"name":"USET_SERIALIZED_STATIC_ARRAY_CAPACITY","features":[391]},{"name":"USET_SPAN_CONTAINED","features":[391]},{"name":"USET_SPAN_NOT_CONTAINED","features":[391]},{"name":"USET_SPAN_SIMPLE","features":[391]},{"name":"USPOOF_ALL_CHECKS","features":[391]},{"name":"USPOOF_ASCII","features":[391]},{"name":"USPOOF_AUX_INFO","features":[391]},{"name":"USPOOF_CHAR_LIMIT","features":[391]},{"name":"USPOOF_CONFUSABLE","features":[391]},{"name":"USPOOF_HIDDEN_OVERLAY","features":[391]},{"name":"USPOOF_HIGHLY_RESTRICTIVE","features":[391]},{"name":"USPOOF_INVISIBLE","features":[391]},{"name":"USPOOF_MINIMALLY_RESTRICTIVE","features":[391]},{"name":"USPOOF_MIXED_NUMBERS","features":[391]},{"name":"USPOOF_MIXED_SCRIPT_CONFUSABLE","features":[391]},{"name":"USPOOF_MODERATELY_RESTRICTIVE","features":[391]},{"name":"USPOOF_RESTRICTION_LEVEL","features":[391]},{"name":"USPOOF_RESTRICTION_LEVEL_MASK","features":[391]},{"name":"USPOOF_SINGLE_SCRIPT_CONFUSABLE","features":[391]},{"name":"USPOOF_SINGLE_SCRIPT_RESTRICTIVE","features":[391]},{"name":"USPOOF_UNRESTRICTIVE","features":[391]},{"name":"USPOOF_WHOLE_SCRIPT_CONFUSABLE","features":[391]},{"name":"USPREP_ALLOW_UNASSIGNED","features":[391]},{"name":"USPREP_DEFAULT","features":[391]},{"name":"USPREP_RFC3491_NAMEPREP","features":[391]},{"name":"USPREP_RFC3530_NFS4_CIS_PREP","features":[391]},{"name":"USPREP_RFC3530_NFS4_CS_PREP","features":[391]},{"name":"USPREP_RFC3530_NFS4_CS_PREP_CI","features":[391]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_PREFIX","features":[391]},{"name":"USPREP_RFC3530_NFS4_MIXED_PREP_SUFFIX","features":[391]},{"name":"USPREP_RFC3722_ISCSI","features":[391]},{"name":"USPREP_RFC3920_NODEPREP","features":[391]},{"name":"USPREP_RFC3920_RESOURCEPREP","features":[391]},{"name":"USPREP_RFC4011_MIB","features":[391]},{"name":"USPREP_RFC4013_SASLPREP","features":[391]},{"name":"USPREP_RFC4505_TRACE","features":[391]},{"name":"USPREP_RFC4518_LDAP","features":[391]},{"name":"USPREP_RFC4518_LDAP_CI","features":[391]},{"name":"USP_E_SCRIPT_NOT_IN_FONT","features":[391]},{"name":"USTRINGTRIE_BUILD_FAST","features":[391]},{"name":"USTRINGTRIE_BUILD_SMALL","features":[391]},{"name":"USTRINGTRIE_FINAL_VALUE","features":[391]},{"name":"USTRINGTRIE_INTERMEDIATE_VALUE","features":[391]},{"name":"USTRINGTRIE_NO_MATCH","features":[391]},{"name":"USTRINGTRIE_NO_VALUE","features":[391]},{"name":"UScriptCode","features":[391]},{"name":"UScriptUsage","features":[391]},{"name":"USearch","features":[391]},{"name":"USearchAttribute","features":[391]},{"name":"USearchAttributeValue","features":[391]},{"name":"USentenceBreak","features":[391]},{"name":"USentenceBreakTag","features":[391]},{"name":"USerializedSet","features":[391]},{"name":"USet","features":[391]},{"name":"USetSpanCondition","features":[391]},{"name":"USpoofCheckResult","features":[391]},{"name":"USpoofChecker","features":[391]},{"name":"USpoofChecks","features":[391]},{"name":"UStringCaseMapper","features":[391]},{"name":"UStringPrepProfile","features":[391]},{"name":"UStringPrepProfileType","features":[391]},{"name":"UStringSearch","features":[391]},{"name":"UStringTrieBuildOption","features":[391]},{"name":"UStringTrieResult","features":[391]},{"name":"USystemTimeZoneType","features":[391]},{"name":"UTEXT_MAGIC","features":[391]},{"name":"UTEXT_PROVIDER_HAS_META_DATA","features":[391]},{"name":"UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE","features":[391]},{"name":"UTEXT_PROVIDER_OWNS_TEXT","features":[391]},{"name":"UTEXT_PROVIDER_STABLE_CHUNKS","features":[391]},{"name":"UTEXT_PROVIDER_WRITABLE","features":[391]},{"name":"UTF16_MAX_CHAR_LENGTH","features":[391]},{"name":"UTF32_MAX_CHAR_LENGTH","features":[391]},{"name":"UTF8_ERROR_VALUE_1","features":[391]},{"name":"UTF8_ERROR_VALUE_2","features":[391]},{"name":"UTF8_MAX_CHAR_LENGTH","features":[391]},{"name":"UTF_ERROR_VALUE","features":[391]},{"name":"UTF_MAX_CHAR_LENGTH","features":[391]},{"name":"UTF_SIZE","features":[391]},{"name":"UTRACE_COLLATION_START","features":[391]},{"name":"UTRACE_CONVERSION_START","features":[391]},{"name":"UTRACE_ERROR","features":[391]},{"name":"UTRACE_FUNCTION_START","features":[391]},{"name":"UTRACE_INFO","features":[391]},{"name":"UTRACE_OFF","features":[391]},{"name":"UTRACE_OPEN_CLOSE","features":[391]},{"name":"UTRACE_UCNV_CLONE","features":[391]},{"name":"UTRACE_UCNV_CLOSE","features":[391]},{"name":"UTRACE_UCNV_FLUSH_CACHE","features":[391]},{"name":"UTRACE_UCNV_LOAD","features":[391]},{"name":"UTRACE_UCNV_OPEN","features":[391]},{"name":"UTRACE_UCNV_OPEN_ALGORITHMIC","features":[391]},{"name":"UTRACE_UCNV_OPEN_PACKAGE","features":[391]},{"name":"UTRACE_UCNV_UNLOAD","features":[391]},{"name":"UTRACE_UCOL_CLOSE","features":[391]},{"name":"UTRACE_UCOL_GETLOCALE","features":[391]},{"name":"UTRACE_UCOL_GET_SORTKEY","features":[391]},{"name":"UTRACE_UCOL_NEXTSORTKEYPART","features":[391]},{"name":"UTRACE_UCOL_OPEN","features":[391]},{"name":"UTRACE_UCOL_OPEN_FROM_SHORT_STRING","features":[391]},{"name":"UTRACE_UCOL_STRCOLL","features":[391]},{"name":"UTRACE_UCOL_STRCOLLITER","features":[391]},{"name":"UTRACE_UCOL_STRCOLLUTF8","features":[391]},{"name":"UTRACE_UDATA_BUNDLE","features":[391]},{"name":"UTRACE_UDATA_DATA_FILE","features":[391]},{"name":"UTRACE_UDATA_RESOURCE","features":[391]},{"name":"UTRACE_UDATA_RES_FILE","features":[391]},{"name":"UTRACE_UDATA_START","features":[391]},{"name":"UTRACE_U_CLEANUP","features":[391]},{"name":"UTRACE_U_INIT","features":[391]},{"name":"UTRACE_VERBOSE","features":[391]},{"name":"UTRACE_WARNING","features":[391]},{"name":"UTRANS_FORWARD","features":[391]},{"name":"UTRANS_REVERSE","features":[391]},{"name":"UTSV_EPOCH_OFFSET_VALUE","features":[391]},{"name":"UTSV_FROM_MAX_VALUE","features":[391]},{"name":"UTSV_FROM_MIN_VALUE","features":[391]},{"name":"UTSV_TO_MAX_VALUE","features":[391]},{"name":"UTSV_TO_MIN_VALUE","features":[391]},{"name":"UTSV_UNITS_VALUE","features":[391]},{"name":"UTZFMT_PARSE_OPTION_ALL_STYLES","features":[391]},{"name":"UTZFMT_PARSE_OPTION_NONE","features":[391]},{"name":"UTZFMT_PARSE_OPTION_TZ_DATABASE_ABBREVIATIONS","features":[391]},{"name":"UTZFMT_PAT_COUNT","features":[391]},{"name":"UTZFMT_PAT_NEGATIVE_H","features":[391]},{"name":"UTZFMT_PAT_NEGATIVE_HM","features":[391]},{"name":"UTZFMT_PAT_NEGATIVE_HMS","features":[391]},{"name":"UTZFMT_PAT_POSITIVE_H","features":[391]},{"name":"UTZFMT_PAT_POSITIVE_HM","features":[391]},{"name":"UTZFMT_PAT_POSITIVE_HMS","features":[391]},{"name":"UTZFMT_STYLE_EXEMPLAR_LOCATION","features":[391]},{"name":"UTZFMT_STYLE_GENERIC_LOCATION","features":[391]},{"name":"UTZFMT_STYLE_GENERIC_LONG","features":[391]},{"name":"UTZFMT_STYLE_GENERIC_SHORT","features":[391]},{"name":"UTZFMT_STYLE_ISO_BASIC_FIXED","features":[391]},{"name":"UTZFMT_STYLE_ISO_BASIC_FULL","features":[391]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FIXED","features":[391]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_FULL","features":[391]},{"name":"UTZFMT_STYLE_ISO_BASIC_LOCAL_SHORT","features":[391]},{"name":"UTZFMT_STYLE_ISO_BASIC_SHORT","features":[391]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FIXED","features":[391]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_FULL","features":[391]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FIXED","features":[391]},{"name":"UTZFMT_STYLE_ISO_EXTENDED_LOCAL_FULL","features":[391]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT","features":[391]},{"name":"UTZFMT_STYLE_LOCALIZED_GMT_SHORT","features":[391]},{"name":"UTZFMT_STYLE_SPECIFIC_LONG","features":[391]},{"name":"UTZFMT_STYLE_SPECIFIC_SHORT","features":[391]},{"name":"UTZFMT_STYLE_ZONE_ID","features":[391]},{"name":"UTZFMT_STYLE_ZONE_ID_SHORT","features":[391]},{"name":"UTZFMT_TIME_TYPE_DAYLIGHT","features":[391]},{"name":"UTZFMT_TIME_TYPE_STANDARD","features":[391]},{"name":"UTZFMT_TIME_TYPE_UNKNOWN","features":[391]},{"name":"UTZNM_EXEMPLAR_LOCATION","features":[391]},{"name":"UTZNM_LONG_DAYLIGHT","features":[391]},{"name":"UTZNM_LONG_GENERIC","features":[391]},{"name":"UTZNM_LONG_STANDARD","features":[391]},{"name":"UTZNM_SHORT_DAYLIGHT","features":[391]},{"name":"UTZNM_SHORT_GENERIC","features":[391]},{"name":"UTZNM_SHORT_STANDARD","features":[391]},{"name":"UTZNM_UNKNOWN","features":[391]},{"name":"UText","features":[391]},{"name":"UTextAccess","features":[391]},{"name":"UTextClone","features":[391]},{"name":"UTextClose","features":[391]},{"name":"UTextCopy","features":[391]},{"name":"UTextExtract","features":[391]},{"name":"UTextFuncs","features":[391]},{"name":"UTextMapNativeIndexToUTF16","features":[391]},{"name":"UTextMapOffsetToNative","features":[391]},{"name":"UTextNativeLength","features":[391]},{"name":"UTextReplace","features":[391]},{"name":"UTimeScaleValue","features":[391]},{"name":"UTimeZoneFormatGMTOffsetPatternType","features":[391]},{"name":"UTimeZoneFormatParseOption","features":[391]},{"name":"UTimeZoneFormatStyle","features":[391]},{"name":"UTimeZoneFormatTimeType","features":[391]},{"name":"UTimeZoneNameType","features":[391]},{"name":"UTimeZoneTransitionType","features":[391]},{"name":"UTraceData","features":[391]},{"name":"UTraceEntry","features":[391]},{"name":"UTraceExit","features":[391]},{"name":"UTraceFunctionNumber","features":[391]},{"name":"UTraceLevel","features":[391]},{"name":"UTransDirection","features":[391]},{"name":"UTransPosition","features":[391]},{"name":"UVerticalOrientation","features":[391]},{"name":"UWordBreak","features":[391]},{"name":"UWordBreakValues","features":[391]},{"name":"U_ALPHAINDEX_INFLOW","features":[391]},{"name":"U_ALPHAINDEX_NORMAL","features":[391]},{"name":"U_ALPHAINDEX_OVERFLOW","features":[391]},{"name":"U_ALPHAINDEX_UNDERFLOW","features":[391]},{"name":"U_AMBIGUOUS_ALIAS_WARNING","features":[391]},{"name":"U_ARABIC_NUMBER","features":[391]},{"name":"U_ARGUMENT_TYPE_MISMATCH","features":[391]},{"name":"U_ASCII_FAMILY","features":[391]},{"name":"U_BAD_VARIABLE_DEFINITION","features":[391]},{"name":"U_BLOCK_SEPARATOR","features":[391]},{"name":"U_BOUNDARY_NEUTRAL","features":[391]},{"name":"U_BPT_CLOSE","features":[391]},{"name":"U_BPT_NONE","features":[391]},{"name":"U_BPT_OPEN","features":[391]},{"name":"U_BRK_ASSIGN_ERROR","features":[391]},{"name":"U_BRK_ERROR_START","features":[391]},{"name":"U_BRK_HEX_DIGITS_EXPECTED","features":[391]},{"name":"U_BRK_INIT_ERROR","features":[391]},{"name":"U_BRK_INTERNAL_ERROR","features":[391]},{"name":"U_BRK_MALFORMED_RULE_TAG","features":[391]},{"name":"U_BRK_MISMATCHED_PAREN","features":[391]},{"name":"U_BRK_NEW_LINE_IN_QUOTED_STRING","features":[391]},{"name":"U_BRK_RULE_EMPTY_SET","features":[391]},{"name":"U_BRK_RULE_SYNTAX","features":[391]},{"name":"U_BRK_SEMICOLON_EXPECTED","features":[391]},{"name":"U_BRK_UNCLOSED_SET","features":[391]},{"name":"U_BRK_UNDEFINED_VARIABLE","features":[391]},{"name":"U_BRK_UNRECOGNIZED_OPTION","features":[391]},{"name":"U_BRK_VARIABLE_REDFINITION","features":[391]},{"name":"U_BUFFER_OVERFLOW_ERROR","features":[391]},{"name":"U_CE_NOT_FOUND_ERROR","features":[391]},{"name":"U_CHAR16_IS_TYPEDEF","features":[391]},{"name":"U_CHARSET_FAMILY","features":[391]},{"name":"U_CHARSET_IS_UTF8","features":[391]},{"name":"U_CHAR_CATEGORY_COUNT","features":[391]},{"name":"U_CHAR_NAME_ALIAS","features":[391]},{"name":"U_CHECK_DYLOAD","features":[391]},{"name":"U_COLLATOR_VERSION_MISMATCH","features":[391]},{"name":"U_COMBINED_IMPLEMENTATION","features":[391]},{"name":"U_COMBINING_SPACING_MARK","features":[391]},{"name":"U_COMMON_NUMBER_SEPARATOR","features":[391]},{"name":"U_COMPARE_CODE_POINT_ORDER","features":[391]},{"name":"U_COMPARE_IGNORE_CASE","features":[391]},{"name":"U_CONNECTOR_PUNCTUATION","features":[391]},{"name":"U_CONTROL_CHAR","features":[391]},{"name":"U_COPYRIGHT_STRING_LENGTH","features":[391]},{"name":"U_CPLUSPLUS_VERSION","features":[391]},{"name":"U_CURRENCY_SYMBOL","features":[391]},{"name":"U_DASH_PUNCTUATION","features":[391]},{"name":"U_DEBUG","features":[391]},{"name":"U_DECIMAL_DIGIT_NUMBER","features":[391]},{"name":"U_DECIMAL_NUMBER_SYNTAX_ERROR","features":[391]},{"name":"U_DEFAULT_KEYWORD_MISSING","features":[391]},{"name":"U_DEFAULT_SHOW_DRAFT","features":[391]},{"name":"U_DEFINE_FALSE_AND_TRUE","features":[391]},{"name":"U_DIFFERENT_UCA_VERSION","features":[391]},{"name":"U_DIR_NON_SPACING_MARK","features":[391]},{"name":"U_DISABLE_RENAMING","features":[391]},{"name":"U_DT_CANONICAL","features":[391]},{"name":"U_DT_CIRCLE","features":[391]},{"name":"U_DT_COMPAT","features":[391]},{"name":"U_DT_FINAL","features":[391]},{"name":"U_DT_FONT","features":[391]},{"name":"U_DT_FRACTION","features":[391]},{"name":"U_DT_INITIAL","features":[391]},{"name":"U_DT_ISOLATED","features":[391]},{"name":"U_DT_MEDIAL","features":[391]},{"name":"U_DT_NARROW","features":[391]},{"name":"U_DT_NOBREAK","features":[391]},{"name":"U_DT_NONE","features":[391]},{"name":"U_DT_SMALL","features":[391]},{"name":"U_DT_SQUARE","features":[391]},{"name":"U_DT_SUB","features":[391]},{"name":"U_DT_SUPER","features":[391]},{"name":"U_DT_VERTICAL","features":[391]},{"name":"U_DT_WIDE","features":[391]},{"name":"U_DUPLICATE_KEYWORD","features":[391]},{"name":"U_EA_AMBIGUOUS","features":[391]},{"name":"U_EA_FULLWIDTH","features":[391]},{"name":"U_EA_HALFWIDTH","features":[391]},{"name":"U_EA_NARROW","features":[391]},{"name":"U_EA_NEUTRAL","features":[391]},{"name":"U_EA_WIDE","features":[391]},{"name":"U_EBCDIC_FAMILY","features":[391]},{"name":"U_EDITS_NO_RESET","features":[391]},{"name":"U_ENABLE_DYLOAD","features":[391]},{"name":"U_ENABLE_TRACING","features":[391]},{"name":"U_ENCLOSING_MARK","features":[391]},{"name":"U_END_PUNCTUATION","features":[391]},{"name":"U_ENUM_OUT_OF_SYNC_ERROR","features":[391]},{"name":"U_ERROR_WARNING_START","features":[391]},{"name":"U_EUROPEAN_NUMBER","features":[391]},{"name":"U_EUROPEAN_NUMBER_SEPARATOR","features":[391]},{"name":"U_EUROPEAN_NUMBER_TERMINATOR","features":[391]},{"name":"U_EXTENDED_CHAR_NAME","features":[391]},{"name":"U_FILE_ACCESS_ERROR","features":[391]},{"name":"U_FINAL_PUNCTUATION","features":[391]},{"name":"U_FIRST_STRONG_ISOLATE","features":[391]},{"name":"U_FMT_PARSE_ERROR_START","features":[391]},{"name":"U_FOLD_CASE_DEFAULT","features":[391]},{"name":"U_FOLD_CASE_EXCLUDE_SPECIAL_I","features":[391]},{"name":"U_FORMAT_CHAR","features":[391]},{"name":"U_FORMAT_INEXACT_ERROR","features":[391]},{"name":"U_GCB_CONTROL","features":[391]},{"name":"U_GCB_CR","features":[391]},{"name":"U_GCB_EXTEND","features":[391]},{"name":"U_GCB_E_BASE","features":[391]},{"name":"U_GCB_E_BASE_GAZ","features":[391]},{"name":"U_GCB_E_MODIFIER","features":[391]},{"name":"U_GCB_GLUE_AFTER_ZWJ","features":[391]},{"name":"U_GCB_L","features":[391]},{"name":"U_GCB_LF","features":[391]},{"name":"U_GCB_LV","features":[391]},{"name":"U_GCB_LVT","features":[391]},{"name":"U_GCB_OTHER","features":[391]},{"name":"U_GCB_PREPEND","features":[391]},{"name":"U_GCB_REGIONAL_INDICATOR","features":[391]},{"name":"U_GCB_SPACING_MARK","features":[391]},{"name":"U_GCB_T","features":[391]},{"name":"U_GCB_V","features":[391]},{"name":"U_GCB_ZWJ","features":[391]},{"name":"U_GCC_MAJOR_MINOR","features":[391]},{"name":"U_GENERAL_OTHER_TYPES","features":[391]},{"name":"U_HAVE_CHAR16_T","features":[391]},{"name":"U_HAVE_DEBUG_LOCATION_NEW","features":[391]},{"name":"U_HAVE_INTTYPES_H","features":[391]},{"name":"U_HAVE_LIB_SUFFIX","features":[391]},{"name":"U_HAVE_PLACEMENT_NEW","features":[391]},{"name":"U_HAVE_RBNF","features":[391]},{"name":"U_HAVE_RVALUE_REFERENCES","features":[391]},{"name":"U_HAVE_STDINT_H","features":[391]},{"name":"U_HAVE_STD_STRING","features":[391]},{"name":"U_HAVE_WCHAR_H","features":[391]},{"name":"U_HAVE_WCSCPY","features":[391]},{"name":"U_HIDE_DEPRECATED_API","features":[391]},{"name":"U_HIDE_DRAFT_API","features":[391]},{"name":"U_HIDE_INTERNAL_API","features":[391]},{"name":"U_HIDE_OBSOLETE_API","features":[391]},{"name":"U_HIDE_OBSOLETE_UTF_OLD_H","features":[391]},{"name":"U_HST_LEADING_JAMO","features":[391]},{"name":"U_HST_LVT_SYLLABLE","features":[391]},{"name":"U_HST_LV_SYLLABLE","features":[391]},{"name":"U_HST_NOT_APPLICABLE","features":[391]},{"name":"U_HST_TRAILING_JAMO","features":[391]},{"name":"U_HST_VOWEL_JAMO","features":[391]},{"name":"U_ICUDATA_TYPE_LETTER","features":[391]},{"name":"U_ICU_DATA_KEY","features":[391]},{"name":"U_ICU_VERSION_BUNDLE","features":[391]},{"name":"U_IDNA_ACE_PREFIX_ERROR","features":[391]},{"name":"U_IDNA_CHECK_BIDI_ERROR","features":[391]},{"name":"U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR","features":[391]},{"name":"U_IDNA_ERROR_START","features":[391]},{"name":"U_IDNA_LABEL_TOO_LONG_ERROR","features":[391]},{"name":"U_IDNA_PROHIBITED_ERROR","features":[391]},{"name":"U_IDNA_STD3_ASCII_RULES_ERROR","features":[391]},{"name":"U_IDNA_UNASSIGNED_ERROR","features":[391]},{"name":"U_IDNA_VERIFICATION_ERROR","features":[391]},{"name":"U_IDNA_ZERO_LENGTH_LABEL_ERROR","features":[391]},{"name":"U_ILLEGAL_ARGUMENT_ERROR","features":[391]},{"name":"U_ILLEGAL_CHARACTER","features":[391]},{"name":"U_ILLEGAL_CHAR_FOUND","features":[391]},{"name":"U_ILLEGAL_CHAR_IN_SEGMENT","features":[391]},{"name":"U_ILLEGAL_ESCAPE_SEQUENCE","features":[391]},{"name":"U_ILLEGAL_PAD_POSITION","features":[391]},{"name":"U_INDEX_OUTOFBOUNDS_ERROR","features":[391]},{"name":"U_INITIAL_PUNCTUATION","features":[391]},{"name":"U_INPC_BOTTOM","features":[391]},{"name":"U_INPC_BOTTOM_AND_LEFT","features":[391]},{"name":"U_INPC_BOTTOM_AND_RIGHT","features":[391]},{"name":"U_INPC_LEFT","features":[391]},{"name":"U_INPC_LEFT_AND_RIGHT","features":[391]},{"name":"U_INPC_NA","features":[391]},{"name":"U_INPC_OVERSTRUCK","features":[391]},{"name":"U_INPC_RIGHT","features":[391]},{"name":"U_INPC_TOP","features":[391]},{"name":"U_INPC_TOP_AND_BOTTOM","features":[391]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_LEFT","features":[391]},{"name":"U_INPC_TOP_AND_BOTTOM_AND_RIGHT","features":[391]},{"name":"U_INPC_TOP_AND_LEFT","features":[391]},{"name":"U_INPC_TOP_AND_LEFT_AND_RIGHT","features":[391]},{"name":"U_INPC_TOP_AND_RIGHT","features":[391]},{"name":"U_INPC_VISUAL_ORDER_LEFT","features":[391]},{"name":"U_INSC_AVAGRAHA","features":[391]},{"name":"U_INSC_BINDU","features":[391]},{"name":"U_INSC_BRAHMI_JOINING_NUMBER","features":[391]},{"name":"U_INSC_CANTILLATION_MARK","features":[391]},{"name":"U_INSC_CONSONANT","features":[391]},{"name":"U_INSC_CONSONANT_DEAD","features":[391]},{"name":"U_INSC_CONSONANT_FINAL","features":[391]},{"name":"U_INSC_CONSONANT_HEAD_LETTER","features":[391]},{"name":"U_INSC_CONSONANT_INITIAL_POSTFIXED","features":[391]},{"name":"U_INSC_CONSONANT_KILLER","features":[391]},{"name":"U_INSC_CONSONANT_MEDIAL","features":[391]},{"name":"U_INSC_CONSONANT_PLACEHOLDER","features":[391]},{"name":"U_INSC_CONSONANT_PRECEDING_REPHA","features":[391]},{"name":"U_INSC_CONSONANT_PREFIXED","features":[391]},{"name":"U_INSC_CONSONANT_SUBJOINED","features":[391]},{"name":"U_INSC_CONSONANT_SUCCEEDING_REPHA","features":[391]},{"name":"U_INSC_CONSONANT_WITH_STACKER","features":[391]},{"name":"U_INSC_GEMINATION_MARK","features":[391]},{"name":"U_INSC_INVISIBLE_STACKER","features":[391]},{"name":"U_INSC_JOINER","features":[391]},{"name":"U_INSC_MODIFYING_LETTER","features":[391]},{"name":"U_INSC_NON_JOINER","features":[391]},{"name":"U_INSC_NUKTA","features":[391]},{"name":"U_INSC_NUMBER","features":[391]},{"name":"U_INSC_NUMBER_JOINER","features":[391]},{"name":"U_INSC_OTHER","features":[391]},{"name":"U_INSC_PURE_KILLER","features":[391]},{"name":"U_INSC_REGISTER_SHIFTER","features":[391]},{"name":"U_INSC_SYLLABLE_MODIFIER","features":[391]},{"name":"U_INSC_TONE_LETTER","features":[391]},{"name":"U_INSC_TONE_MARK","features":[391]},{"name":"U_INSC_VIRAMA","features":[391]},{"name":"U_INSC_VISARGA","features":[391]},{"name":"U_INSC_VOWEL","features":[391]},{"name":"U_INSC_VOWEL_DEPENDENT","features":[391]},{"name":"U_INSC_VOWEL_INDEPENDENT","features":[391]},{"name":"U_INTERNAL_PROGRAM_ERROR","features":[391]},{"name":"U_INTERNAL_TRANSLITERATOR_ERROR","features":[391]},{"name":"U_INVALID_CHAR_FOUND","features":[391]},{"name":"U_INVALID_FORMAT_ERROR","features":[391]},{"name":"U_INVALID_FUNCTION","features":[391]},{"name":"U_INVALID_ID","features":[391]},{"name":"U_INVALID_PROPERTY_PATTERN","features":[391]},{"name":"U_INVALID_RBT_SYNTAX","features":[391]},{"name":"U_INVALID_STATE_ERROR","features":[391]},{"name":"U_INVALID_TABLE_FILE","features":[391]},{"name":"U_INVALID_TABLE_FORMAT","features":[391]},{"name":"U_INVARIANT_CONVERSION_ERROR","features":[391]},{"name":"U_IOSTREAM_SOURCE","features":[391]},{"name":"U_IS_BIG_ENDIAN","features":[391]},{"name":"U_JG_AFRICAN_FEH","features":[391]},{"name":"U_JG_AFRICAN_NOON","features":[391]},{"name":"U_JG_AFRICAN_QAF","features":[391]},{"name":"U_JG_AIN","features":[391]},{"name":"U_JG_ALAPH","features":[391]},{"name":"U_JG_ALEF","features":[391]},{"name":"U_JG_BEH","features":[391]},{"name":"U_JG_BETH","features":[391]},{"name":"U_JG_BURUSHASKI_YEH_BARREE","features":[391]},{"name":"U_JG_DAL","features":[391]},{"name":"U_JG_DALATH_RISH","features":[391]},{"name":"U_JG_E","features":[391]},{"name":"U_JG_FARSI_YEH","features":[391]},{"name":"U_JG_FE","features":[391]},{"name":"U_JG_FEH","features":[391]},{"name":"U_JG_FINAL_SEMKATH","features":[391]},{"name":"U_JG_GAF","features":[391]},{"name":"U_JG_GAMAL","features":[391]},{"name":"U_JG_HAH","features":[391]},{"name":"U_JG_HAMZA_ON_HEH_GOAL","features":[391]},{"name":"U_JG_HANIFI_ROHINGYA_KINNA_YA","features":[391]},{"name":"U_JG_HANIFI_ROHINGYA_PA","features":[391]},{"name":"U_JG_HE","features":[391]},{"name":"U_JG_HEH","features":[391]},{"name":"U_JG_HEH_GOAL","features":[391]},{"name":"U_JG_HETH","features":[391]},{"name":"U_JG_KAF","features":[391]},{"name":"U_JG_KAPH","features":[391]},{"name":"U_JG_KHAPH","features":[391]},{"name":"U_JG_KNOTTED_HEH","features":[391]},{"name":"U_JG_LAM","features":[391]},{"name":"U_JG_LAMADH","features":[391]},{"name":"U_JG_MALAYALAM_BHA","features":[391]},{"name":"U_JG_MALAYALAM_JA","features":[391]},{"name":"U_JG_MALAYALAM_LLA","features":[391]},{"name":"U_JG_MALAYALAM_LLLA","features":[391]},{"name":"U_JG_MALAYALAM_NGA","features":[391]},{"name":"U_JG_MALAYALAM_NNA","features":[391]},{"name":"U_JG_MALAYALAM_NNNA","features":[391]},{"name":"U_JG_MALAYALAM_NYA","features":[391]},{"name":"U_JG_MALAYALAM_RA","features":[391]},{"name":"U_JG_MALAYALAM_SSA","features":[391]},{"name":"U_JG_MALAYALAM_TTA","features":[391]},{"name":"U_JG_MANICHAEAN_ALEPH","features":[391]},{"name":"U_JG_MANICHAEAN_AYIN","features":[391]},{"name":"U_JG_MANICHAEAN_BETH","features":[391]},{"name":"U_JG_MANICHAEAN_DALETH","features":[391]},{"name":"U_JG_MANICHAEAN_DHAMEDH","features":[391]},{"name":"U_JG_MANICHAEAN_FIVE","features":[391]},{"name":"U_JG_MANICHAEAN_GIMEL","features":[391]},{"name":"U_JG_MANICHAEAN_HETH","features":[391]},{"name":"U_JG_MANICHAEAN_HUNDRED","features":[391]},{"name":"U_JG_MANICHAEAN_KAPH","features":[391]},{"name":"U_JG_MANICHAEAN_LAMEDH","features":[391]},{"name":"U_JG_MANICHAEAN_MEM","features":[391]},{"name":"U_JG_MANICHAEAN_NUN","features":[391]},{"name":"U_JG_MANICHAEAN_ONE","features":[391]},{"name":"U_JG_MANICHAEAN_PE","features":[391]},{"name":"U_JG_MANICHAEAN_QOPH","features":[391]},{"name":"U_JG_MANICHAEAN_RESH","features":[391]},{"name":"U_JG_MANICHAEAN_SADHE","features":[391]},{"name":"U_JG_MANICHAEAN_SAMEKH","features":[391]},{"name":"U_JG_MANICHAEAN_TAW","features":[391]},{"name":"U_JG_MANICHAEAN_TEN","features":[391]},{"name":"U_JG_MANICHAEAN_TETH","features":[391]},{"name":"U_JG_MANICHAEAN_THAMEDH","features":[391]},{"name":"U_JG_MANICHAEAN_TWENTY","features":[391]},{"name":"U_JG_MANICHAEAN_WAW","features":[391]},{"name":"U_JG_MANICHAEAN_YODH","features":[391]},{"name":"U_JG_MANICHAEAN_ZAYIN","features":[391]},{"name":"U_JG_MEEM","features":[391]},{"name":"U_JG_MIM","features":[391]},{"name":"U_JG_NOON","features":[391]},{"name":"U_JG_NO_JOINING_GROUP","features":[391]},{"name":"U_JG_NUN","features":[391]},{"name":"U_JG_NYA","features":[391]},{"name":"U_JG_PE","features":[391]},{"name":"U_JG_QAF","features":[391]},{"name":"U_JG_QAPH","features":[391]},{"name":"U_JG_REH","features":[391]},{"name":"U_JG_REVERSED_PE","features":[391]},{"name":"U_JG_ROHINGYA_YEH","features":[391]},{"name":"U_JG_SAD","features":[391]},{"name":"U_JG_SADHE","features":[391]},{"name":"U_JG_SEEN","features":[391]},{"name":"U_JG_SEMKATH","features":[391]},{"name":"U_JG_SHIN","features":[391]},{"name":"U_JG_STRAIGHT_WAW","features":[391]},{"name":"U_JG_SWASH_KAF","features":[391]},{"name":"U_JG_SYRIAC_WAW","features":[391]},{"name":"U_JG_TAH","features":[391]},{"name":"U_JG_TAW","features":[391]},{"name":"U_JG_TEH_MARBUTA","features":[391]},{"name":"U_JG_TEH_MARBUTA_GOAL","features":[391]},{"name":"U_JG_TETH","features":[391]},{"name":"U_JG_WAW","features":[391]},{"name":"U_JG_YEH","features":[391]},{"name":"U_JG_YEH_BARREE","features":[391]},{"name":"U_JG_YEH_WITH_TAIL","features":[391]},{"name":"U_JG_YUDH","features":[391]},{"name":"U_JG_YUDH_HE","features":[391]},{"name":"U_JG_ZAIN","features":[391]},{"name":"U_JG_ZHAIN","features":[391]},{"name":"U_JT_DUAL_JOINING","features":[391]},{"name":"U_JT_JOIN_CAUSING","features":[391]},{"name":"U_JT_LEFT_JOINING","features":[391]},{"name":"U_JT_NON_JOINING","features":[391]},{"name":"U_JT_RIGHT_JOINING","features":[391]},{"name":"U_JT_TRANSPARENT","features":[391]},{"name":"U_LB_ALPHABETIC","features":[391]},{"name":"U_LB_AMBIGUOUS","features":[391]},{"name":"U_LB_BREAK_AFTER","features":[391]},{"name":"U_LB_BREAK_BEFORE","features":[391]},{"name":"U_LB_BREAK_BOTH","features":[391]},{"name":"U_LB_BREAK_SYMBOLS","features":[391]},{"name":"U_LB_CARRIAGE_RETURN","features":[391]},{"name":"U_LB_CLOSE_PARENTHESIS","features":[391]},{"name":"U_LB_CLOSE_PUNCTUATION","features":[391]},{"name":"U_LB_COMBINING_MARK","features":[391]},{"name":"U_LB_COMPLEX_CONTEXT","features":[391]},{"name":"U_LB_CONDITIONAL_JAPANESE_STARTER","features":[391]},{"name":"U_LB_CONTINGENT_BREAK","features":[391]},{"name":"U_LB_EXCLAMATION","features":[391]},{"name":"U_LB_E_BASE","features":[391]},{"name":"U_LB_E_MODIFIER","features":[391]},{"name":"U_LB_GLUE","features":[391]},{"name":"U_LB_H2","features":[391]},{"name":"U_LB_H3","features":[391]},{"name":"U_LB_HEBREW_LETTER","features":[391]},{"name":"U_LB_HYPHEN","features":[391]},{"name":"U_LB_IDEOGRAPHIC","features":[391]},{"name":"U_LB_INFIX_NUMERIC","features":[391]},{"name":"U_LB_INSEPARABLE","features":[391]},{"name":"U_LB_INSEPERABLE","features":[391]},{"name":"U_LB_JL","features":[391]},{"name":"U_LB_JT","features":[391]},{"name":"U_LB_JV","features":[391]},{"name":"U_LB_LINE_FEED","features":[391]},{"name":"U_LB_MANDATORY_BREAK","features":[391]},{"name":"U_LB_NEXT_LINE","features":[391]},{"name":"U_LB_NONSTARTER","features":[391]},{"name":"U_LB_NUMERIC","features":[391]},{"name":"U_LB_OPEN_PUNCTUATION","features":[391]},{"name":"U_LB_POSTFIX_NUMERIC","features":[391]},{"name":"U_LB_PREFIX_NUMERIC","features":[391]},{"name":"U_LB_QUOTATION","features":[391]},{"name":"U_LB_REGIONAL_INDICATOR","features":[391]},{"name":"U_LB_SPACE","features":[391]},{"name":"U_LB_SURROGATE","features":[391]},{"name":"U_LB_UNKNOWN","features":[391]},{"name":"U_LB_WORD_JOINER","features":[391]},{"name":"U_LB_ZWJ","features":[391]},{"name":"U_LB_ZWSPACE","features":[391]},{"name":"U_LEFT_TO_RIGHT","features":[391]},{"name":"U_LEFT_TO_RIGHT_EMBEDDING","features":[391]},{"name":"U_LEFT_TO_RIGHT_ISOLATE","features":[391]},{"name":"U_LEFT_TO_RIGHT_OVERRIDE","features":[391]},{"name":"U_LETTER_NUMBER","features":[391]},{"name":"U_LIB_SUFFIX_C_NAME_STRING","features":[391]},{"name":"U_LINE_SEPARATOR","features":[391]},{"name":"U_LONG_PROPERTY_NAME","features":[391]},{"name":"U_LOWERCASE_LETTER","features":[391]},{"name":"U_MALFORMED_EXPONENTIAL_PATTERN","features":[391]},{"name":"U_MALFORMED_PRAGMA","features":[391]},{"name":"U_MALFORMED_RULE","features":[391]},{"name":"U_MALFORMED_SET","features":[391]},{"name":"U_MALFORMED_SYMBOL_REFERENCE","features":[391]},{"name":"U_MALFORMED_UNICODE_ESCAPE","features":[391]},{"name":"U_MALFORMED_VARIABLE_DEFINITION","features":[391]},{"name":"U_MALFORMED_VARIABLE_REFERENCE","features":[391]},{"name":"U_MATH_SYMBOL","features":[391]},{"name":"U_MAX_VERSION_LENGTH","features":[391]},{"name":"U_MAX_VERSION_STRING_LENGTH","features":[391]},{"name":"U_MEMORY_ALLOCATION_ERROR","features":[391]},{"name":"U_MESSAGE_PARSE_ERROR","features":[391]},{"name":"U_MILLIS_PER_DAY","features":[391]},{"name":"U_MILLIS_PER_HOUR","features":[391]},{"name":"U_MILLIS_PER_MINUTE","features":[391]},{"name":"U_MILLIS_PER_SECOND","features":[391]},{"name":"U_MISMATCHED_SEGMENT_DELIMITERS","features":[391]},{"name":"U_MISPLACED_ANCHOR_START","features":[391]},{"name":"U_MISPLACED_COMPOUND_FILTER","features":[391]},{"name":"U_MISPLACED_CURSOR_OFFSET","features":[391]},{"name":"U_MISPLACED_QUANTIFIER","features":[391]},{"name":"U_MISSING_OPERATOR","features":[391]},{"name":"U_MISSING_RESOURCE_ERROR","features":[391]},{"name":"U_MISSING_SEGMENT_CLOSE","features":[391]},{"name":"U_MODIFIER_LETTER","features":[391]},{"name":"U_MODIFIER_SYMBOL","features":[391]},{"name":"U_MULTIPLE_ANTE_CONTEXTS","features":[391]},{"name":"U_MULTIPLE_COMPOUND_FILTERS","features":[391]},{"name":"U_MULTIPLE_CURSORS","features":[391]},{"name":"U_MULTIPLE_DECIMAL_SEPARATORS","features":[391]},{"name":"U_MULTIPLE_DECIMAL_SEPERATORS","features":[391]},{"name":"U_MULTIPLE_EXPONENTIAL_SYMBOLS","features":[391]},{"name":"U_MULTIPLE_PAD_SPECIFIERS","features":[391]},{"name":"U_MULTIPLE_PERCENT_SYMBOLS","features":[391]},{"name":"U_MULTIPLE_PERMILL_SYMBOLS","features":[391]},{"name":"U_MULTIPLE_POST_CONTEXTS","features":[391]},{"name":"U_NON_SPACING_MARK","features":[391]},{"name":"U_NO_DEFAULT_INCLUDE_UTF_HEADERS","features":[391]},{"name":"U_NO_SPACE_AVAILABLE","features":[391]},{"name":"U_NO_WRITE_PERMISSION","features":[391]},{"name":"U_NT_DECIMAL","features":[391]},{"name":"U_NT_DIGIT","features":[391]},{"name":"U_NT_NONE","features":[391]},{"name":"U_NT_NUMERIC","features":[391]},{"name":"U_NUMBER_ARG_OUTOFBOUNDS_ERROR","features":[391]},{"name":"U_NUMBER_SKELETON_SYNTAX_ERROR","features":[391]},{"name":"U_OMIT_UNCHANGED_TEXT","features":[391]},{"name":"U_OTHER_LETTER","features":[391]},{"name":"U_OTHER_NEUTRAL","features":[391]},{"name":"U_OTHER_NUMBER","features":[391]},{"name":"U_OTHER_PUNCTUATION","features":[391]},{"name":"U_OTHER_SYMBOL","features":[391]},{"name":"U_OVERRIDE_CXX_ALLOCATION","features":[391]},{"name":"U_PARAGRAPH_SEPARATOR","features":[391]},{"name":"U_PARSE_CONTEXT_LEN","features":[391]},{"name":"U_PARSE_ERROR","features":[391]},{"name":"U_PARSE_ERROR_START","features":[391]},{"name":"U_PATTERN_SYNTAX_ERROR","features":[391]},{"name":"U_PF_AIX","features":[391]},{"name":"U_PF_ANDROID","features":[391]},{"name":"U_PF_BROWSER_NATIVE_CLIENT","features":[391]},{"name":"U_PF_BSD","features":[391]},{"name":"U_PF_CYGWIN","features":[391]},{"name":"U_PF_DARWIN","features":[391]},{"name":"U_PF_EMSCRIPTEN","features":[391]},{"name":"U_PF_FUCHSIA","features":[391]},{"name":"U_PF_HPUX","features":[391]},{"name":"U_PF_IPHONE","features":[391]},{"name":"U_PF_IRIX","features":[391]},{"name":"U_PF_LINUX","features":[391]},{"name":"U_PF_MINGW","features":[391]},{"name":"U_PF_OS390","features":[391]},{"name":"U_PF_OS400","features":[391]},{"name":"U_PF_QNX","features":[391]},{"name":"U_PF_SOLARIS","features":[391]},{"name":"U_PF_UNKNOWN","features":[391]},{"name":"U_PF_WINDOWS","features":[391]},{"name":"U_PLATFORM","features":[391]},{"name":"U_PLATFORM_HAS_WIN32_API","features":[391]},{"name":"U_PLATFORM_HAS_WINUWP_API","features":[391]},{"name":"U_PLATFORM_IMPLEMENTS_POSIX","features":[391]},{"name":"U_PLATFORM_IS_DARWIN_BASED","features":[391]},{"name":"U_PLATFORM_IS_LINUX_BASED","features":[391]},{"name":"U_PLATFORM_USES_ONLY_WIN32_API","features":[391]},{"name":"U_PLUGIN_CHANGED_LEVEL_WARNING","features":[391]},{"name":"U_PLUGIN_DIDNT_SET_LEVEL","features":[391]},{"name":"U_PLUGIN_ERROR_START","features":[391]},{"name":"U_PLUGIN_TOO_HIGH","features":[391]},{"name":"U_POP_DIRECTIONAL_FORMAT","features":[391]},{"name":"U_POP_DIRECTIONAL_ISOLATE","features":[391]},{"name":"U_PRIMARY_TOO_LONG_ERROR","features":[391]},{"name":"U_PRIVATE_USE_CHAR","features":[391]},{"name":"U_REGEX_BAD_ESCAPE_SEQUENCE","features":[391]},{"name":"U_REGEX_BAD_INTERVAL","features":[391]},{"name":"U_REGEX_ERROR_START","features":[391]},{"name":"U_REGEX_INTERNAL_ERROR","features":[391]},{"name":"U_REGEX_INVALID_BACK_REF","features":[391]},{"name":"U_REGEX_INVALID_CAPTURE_GROUP_NAME","features":[391]},{"name":"U_REGEX_INVALID_FLAG","features":[391]},{"name":"U_REGEX_INVALID_RANGE","features":[391]},{"name":"U_REGEX_INVALID_STATE","features":[391]},{"name":"U_REGEX_LOOK_BEHIND_LIMIT","features":[391]},{"name":"U_REGEX_MAX_LT_MIN","features":[391]},{"name":"U_REGEX_MISMATCHED_PAREN","features":[391]},{"name":"U_REGEX_MISSING_CLOSE_BRACKET","features":[391]},{"name":"U_REGEX_NUMBER_TOO_BIG","features":[391]},{"name":"U_REGEX_PATTERN_TOO_BIG","features":[391]},{"name":"U_REGEX_PROPERTY_SYNTAX","features":[391]},{"name":"U_REGEX_RULE_SYNTAX","features":[391]},{"name":"U_REGEX_SET_CONTAINS_STRING","features":[391]},{"name":"U_REGEX_STACK_OVERFLOW","features":[391]},{"name":"U_REGEX_STOPPED_BY_CALLER","features":[391]},{"name":"U_REGEX_TIME_OUT","features":[391]},{"name":"U_REGEX_UNIMPLEMENTED","features":[391]},{"name":"U_RESOURCE_TYPE_MISMATCH","features":[391]},{"name":"U_RIGHT_TO_LEFT","features":[391]},{"name":"U_RIGHT_TO_LEFT_ARABIC","features":[391]},{"name":"U_RIGHT_TO_LEFT_EMBEDDING","features":[391]},{"name":"U_RIGHT_TO_LEFT_ISOLATE","features":[391]},{"name":"U_RIGHT_TO_LEFT_OVERRIDE","features":[391]},{"name":"U_RULE_MASK_ERROR","features":[391]},{"name":"U_SAFECLONE_ALLOCATED_WARNING","features":[391]},{"name":"U_SB_ATERM","features":[391]},{"name":"U_SB_CLOSE","features":[391]},{"name":"U_SB_CR","features":[391]},{"name":"U_SB_EXTEND","features":[391]},{"name":"U_SB_FORMAT","features":[391]},{"name":"U_SB_LF","features":[391]},{"name":"U_SB_LOWER","features":[391]},{"name":"U_SB_NUMERIC","features":[391]},{"name":"U_SB_OLETTER","features":[391]},{"name":"U_SB_OTHER","features":[391]},{"name":"U_SB_SCONTINUE","features":[391]},{"name":"U_SB_SEP","features":[391]},{"name":"U_SB_SP","features":[391]},{"name":"U_SB_STERM","features":[391]},{"name":"U_SB_UPPER","features":[391]},{"name":"U_SEGMENT_SEPARATOR","features":[391]},{"name":"U_SENTINEL","features":[391]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL","features":[391]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_MASK","features":[391]},{"name":"U_SHAPE_AGGREGATE_TASHKEEL_NOOP","features":[391]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_AL","features":[391]},{"name":"U_SHAPE_DIGITS_ALEN2AN_INIT_LR","features":[391]},{"name":"U_SHAPE_DIGITS_AN2EN","features":[391]},{"name":"U_SHAPE_DIGITS_EN2AN","features":[391]},{"name":"U_SHAPE_DIGITS_MASK","features":[391]},{"name":"U_SHAPE_DIGITS_NOOP","features":[391]},{"name":"U_SHAPE_DIGITS_RESERVED","features":[391]},{"name":"U_SHAPE_DIGIT_TYPE_AN","features":[391]},{"name":"U_SHAPE_DIGIT_TYPE_AN_EXTENDED","features":[391]},{"name":"U_SHAPE_DIGIT_TYPE_MASK","features":[391]},{"name":"U_SHAPE_DIGIT_TYPE_RESERVED","features":[391]},{"name":"U_SHAPE_LAMALEF_AUTO","features":[391]},{"name":"U_SHAPE_LAMALEF_BEGIN","features":[391]},{"name":"U_SHAPE_LAMALEF_END","features":[391]},{"name":"U_SHAPE_LAMALEF_MASK","features":[391]},{"name":"U_SHAPE_LAMALEF_NEAR","features":[391]},{"name":"U_SHAPE_LAMALEF_RESIZE","features":[391]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_BEGINNING","features":[391]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_AT_END","features":[391]},{"name":"U_SHAPE_LENGTH_FIXED_SPACES_NEAR","features":[391]},{"name":"U_SHAPE_LENGTH_GROW_SHRINK","features":[391]},{"name":"U_SHAPE_LENGTH_MASK","features":[391]},{"name":"U_SHAPE_LETTERS_MASK","features":[391]},{"name":"U_SHAPE_LETTERS_NOOP","features":[391]},{"name":"U_SHAPE_LETTERS_SHAPE","features":[391]},{"name":"U_SHAPE_LETTERS_SHAPE_TASHKEEL_ISOLATED","features":[391]},{"name":"U_SHAPE_LETTERS_UNSHAPE","features":[391]},{"name":"U_SHAPE_PRESERVE_PRESENTATION","features":[391]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_MASK","features":[391]},{"name":"U_SHAPE_PRESERVE_PRESENTATION_NOOP","features":[391]},{"name":"U_SHAPE_SEEN_MASK","features":[391]},{"name":"U_SHAPE_SEEN_TWOCELL_NEAR","features":[391]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_BEGIN_END","features":[391]},{"name":"U_SHAPE_SPACES_RELATIVE_TO_TEXT_MASK","features":[391]},{"name":"U_SHAPE_TAIL_NEW_UNICODE","features":[391]},{"name":"U_SHAPE_TAIL_TYPE_MASK","features":[391]},{"name":"U_SHAPE_TASHKEEL_BEGIN","features":[391]},{"name":"U_SHAPE_TASHKEEL_END","features":[391]},{"name":"U_SHAPE_TASHKEEL_MASK","features":[391]},{"name":"U_SHAPE_TASHKEEL_REPLACE_BY_TATWEEL","features":[391]},{"name":"U_SHAPE_TASHKEEL_RESIZE","features":[391]},{"name":"U_SHAPE_TEXT_DIRECTION_LOGICAL","features":[391]},{"name":"U_SHAPE_TEXT_DIRECTION_MASK","features":[391]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_LTR","features":[391]},{"name":"U_SHAPE_TEXT_DIRECTION_VISUAL_RTL","features":[391]},{"name":"U_SHAPE_YEHHAMZA_MASK","features":[391]},{"name":"U_SHAPE_YEHHAMZA_TWOCELL_NEAR","features":[391]},{"name":"U_SHORT_PROPERTY_NAME","features":[391]},{"name":"U_SHOW_CPLUSPLUS_API","features":[391]},{"name":"U_SIZEOF_UCHAR","features":[391]},{"name":"U_SIZEOF_WCHAR_T","features":[391]},{"name":"U_SORT_KEY_TOO_SHORT_WARNING","features":[391]},{"name":"U_SPACE_SEPARATOR","features":[391]},{"name":"U_START_PUNCTUATION","features":[391]},{"name":"U_STATE_OLD_WARNING","features":[391]},{"name":"U_STATE_TOO_OLD_ERROR","features":[391]},{"name":"U_STRINGPREP_CHECK_BIDI_ERROR","features":[391]},{"name":"U_STRINGPREP_PROHIBITED_ERROR","features":[391]},{"name":"U_STRINGPREP_UNASSIGNED_ERROR","features":[391]},{"name":"U_STRING_NOT_TERMINATED_WARNING","features":[391]},{"name":"U_SURROGATE","features":[391]},{"name":"U_TITLECASE_ADJUST_TO_CASED","features":[391]},{"name":"U_TITLECASE_LETTER","features":[391]},{"name":"U_TITLECASE_NO_BREAK_ADJUSTMENT","features":[391]},{"name":"U_TITLECASE_NO_LOWERCASE","features":[391]},{"name":"U_TITLECASE_SENTENCES","features":[391]},{"name":"U_TITLECASE_WHOLE_STRING","features":[391]},{"name":"U_TOO_MANY_ALIASES_ERROR","features":[391]},{"name":"U_TRAILING_BACKSLASH","features":[391]},{"name":"U_TRUNCATED_CHAR_FOUND","features":[391]},{"name":"U_UNASSIGNED","features":[391]},{"name":"U_UNCLOSED_SEGMENT","features":[391]},{"name":"U_UNDEFINED_KEYWORD","features":[391]},{"name":"U_UNDEFINED_SEGMENT_REFERENCE","features":[391]},{"name":"U_UNDEFINED_VARIABLE","features":[391]},{"name":"U_UNEXPECTED_TOKEN","features":[391]},{"name":"U_UNICODE_CHAR_NAME","features":[391]},{"name":"U_UNICODE_VERSION","features":[391]},{"name":"U_UNMATCHED_BRACES","features":[391]},{"name":"U_UNQUOTED_SPECIAL","features":[391]},{"name":"U_UNSUPPORTED_ATTRIBUTE","features":[391]},{"name":"U_UNSUPPORTED_ERROR","features":[391]},{"name":"U_UNSUPPORTED_ESCAPE_SEQUENCE","features":[391]},{"name":"U_UNSUPPORTED_PROPERTY","features":[391]},{"name":"U_UNTERMINATED_QUOTE","features":[391]},{"name":"U_UPPERCASE_LETTER","features":[391]},{"name":"U_USELESS_COLLATOR_ERROR","features":[391]},{"name":"U_USING_DEFAULT_WARNING","features":[391]},{"name":"U_USING_FALLBACK_WARNING","features":[391]},{"name":"U_USING_ICU_NAMESPACE","features":[391]},{"name":"U_VARIABLE_RANGE_EXHAUSTED","features":[391]},{"name":"U_VARIABLE_RANGE_OVERLAP","features":[391]},{"name":"U_VO_ROTATED","features":[391]},{"name":"U_VO_TRANSFORMED_ROTATED","features":[391]},{"name":"U_VO_TRANSFORMED_UPRIGHT","features":[391]},{"name":"U_VO_UPRIGHT","features":[391]},{"name":"U_WB_ALETTER","features":[391]},{"name":"U_WB_CR","features":[391]},{"name":"U_WB_DOUBLE_QUOTE","features":[391]},{"name":"U_WB_EXTEND","features":[391]},{"name":"U_WB_EXTENDNUMLET","features":[391]},{"name":"U_WB_E_BASE","features":[391]},{"name":"U_WB_E_BASE_GAZ","features":[391]},{"name":"U_WB_E_MODIFIER","features":[391]},{"name":"U_WB_FORMAT","features":[391]},{"name":"U_WB_GLUE_AFTER_ZWJ","features":[391]},{"name":"U_WB_HEBREW_LETTER","features":[391]},{"name":"U_WB_KATAKANA","features":[391]},{"name":"U_WB_LF","features":[391]},{"name":"U_WB_MIDLETTER","features":[391]},{"name":"U_WB_MIDNUM","features":[391]},{"name":"U_WB_MIDNUMLET","features":[391]},{"name":"U_WB_NEWLINE","features":[391]},{"name":"U_WB_NUMERIC","features":[391]},{"name":"U_WB_OTHER","features":[391]},{"name":"U_WB_REGIONAL_INDICATOR","features":[391]},{"name":"U_WB_SINGLE_QUOTE","features":[391]},{"name":"U_WB_WSEGSPACE","features":[391]},{"name":"U_WB_ZWJ","features":[391]},{"name":"U_WHITE_SPACE_NEUTRAL","features":[391]},{"name":"U_ZERO_ERROR","features":[391]},{"name":"UpdateCalendarDayOfWeek","features":[305,391]},{"name":"VS_ALLOW_LATIN","features":[391]},{"name":"VerifyScripts","features":[305,391]},{"name":"WC_COMPOSITECHECK","features":[391]},{"name":"WC_DEFAULTCHAR","features":[391]},{"name":"WC_DISCARDNS","features":[391]},{"name":"WC_ERR_INVALID_CHARS","features":[391]},{"name":"WC_NO_BEST_FIT_CHARS","features":[391]},{"name":"WC_SEPCHARS","features":[391]},{"name":"WORDLIST_TYPE","features":[391]},{"name":"WORDLIST_TYPE_ADD","features":[391]},{"name":"WORDLIST_TYPE_AUTOCORRECT","features":[391]},{"name":"WORDLIST_TYPE_EXCLUDE","features":[391]},{"name":"WORDLIST_TYPE_IGNORE","features":[391]},{"name":"WeekUnit","features":[391]},{"name":"WideCharToMultiByte","features":[305,391]},{"name":"YearUnit","features":[391]},{"name":"lstrcatA","features":[391]},{"name":"lstrcatW","features":[391]},{"name":"lstrcmpA","features":[391]},{"name":"lstrcmpW","features":[391]},{"name":"lstrcmpiA","features":[391]},{"name":"lstrcmpiW","features":[391]},{"name":"lstrcpyA","features":[391]},{"name":"lstrcpyW","features":[391]},{"name":"lstrcpynA","features":[391]},{"name":"lstrcpynW","features":[391]},{"name":"lstrlenA","features":[391]},{"name":"lstrlenW","features":[391]},{"name":"sidArabic","features":[391]},{"name":"sidArmenian","features":[391]},{"name":"sidAsciiLatin","features":[391]},{"name":"sidAsciiSym","features":[391]},{"name":"sidBengali","features":[391]},{"name":"sidBopomofo","features":[391]},{"name":"sidBraille","features":[391]},{"name":"sidBurmese","features":[391]},{"name":"sidCanSyllabic","features":[391]},{"name":"sidCherokee","features":[391]},{"name":"sidCyrillic","features":[391]},{"name":"sidDefault","features":[391]},{"name":"sidDevanagari","features":[391]},{"name":"sidEthiopic","features":[391]},{"name":"sidFEFirst","features":[391]},{"name":"sidFELast","features":[391]},{"name":"sidGeorgian","features":[391]},{"name":"sidGreek","features":[391]},{"name":"sidGujarati","features":[391]},{"name":"sidGurmukhi","features":[391]},{"name":"sidHan","features":[391]},{"name":"sidHangul","features":[391]},{"name":"sidHebrew","features":[391]},{"name":"sidKana","features":[391]},{"name":"sidKannada","features":[391]},{"name":"sidKhmer","features":[391]},{"name":"sidLao","features":[391]},{"name":"sidLatin","features":[391]},{"name":"sidLim","features":[391]},{"name":"sidMalayalam","features":[391]},{"name":"sidMerge","features":[391]},{"name":"sidMongolian","features":[391]},{"name":"sidOgham","features":[391]},{"name":"sidOriya","features":[391]},{"name":"sidRunic","features":[391]},{"name":"sidSinhala","features":[391]},{"name":"sidSyriac","features":[391]},{"name":"sidTamil","features":[391]},{"name":"sidTelugu","features":[391]},{"name":"sidThaana","features":[391]},{"name":"sidThai","features":[391]},{"name":"sidTibetan","features":[391]},{"name":"sidUserDefined","features":[391]},{"name":"sidYi","features":[391]},{"name":"u_UCharsToChars","features":[391]},{"name":"u_austrcpy","features":[391]},{"name":"u_austrncpy","features":[391]},{"name":"u_catclose","features":[391]},{"name":"u_catgets","features":[391]},{"name":"u_catopen","features":[391]},{"name":"u_charAge","features":[391]},{"name":"u_charDigitValue","features":[391]},{"name":"u_charDirection","features":[391]},{"name":"u_charFromName","features":[391]},{"name":"u_charMirror","features":[391]},{"name":"u_charName","features":[391]},{"name":"u_charType","features":[391]},{"name":"u_charsToUChars","features":[391]},{"name":"u_cleanup","features":[391]},{"name":"u_countChar32","features":[391]},{"name":"u_digit","features":[391]},{"name":"u_enumCharNames","features":[391]},{"name":"u_enumCharTypes","features":[391]},{"name":"u_errorName","features":[391]},{"name":"u_foldCase","features":[391]},{"name":"u_forDigit","features":[391]},{"name":"u_formatMessage","features":[391]},{"name":"u_formatMessageWithError","features":[391]},{"name":"u_getBidiPairedBracket","features":[391]},{"name":"u_getBinaryPropertySet","features":[391]},{"name":"u_getCombiningClass","features":[391]},{"name":"u_getDataVersion","features":[391]},{"name":"u_getFC_NFKC_Closure","features":[391]},{"name":"u_getIntPropertyMap","features":[391]},{"name":"u_getIntPropertyMaxValue","features":[391]},{"name":"u_getIntPropertyMinValue","features":[391]},{"name":"u_getIntPropertyValue","features":[391]},{"name":"u_getNumericValue","features":[391]},{"name":"u_getPropertyEnum","features":[391]},{"name":"u_getPropertyName","features":[391]},{"name":"u_getPropertyValueEnum","features":[391]},{"name":"u_getPropertyValueName","features":[391]},{"name":"u_getUnicodeVersion","features":[391]},{"name":"u_getVersion","features":[391]},{"name":"u_hasBinaryProperty","features":[391]},{"name":"u_init","features":[391]},{"name":"u_isIDIgnorable","features":[391]},{"name":"u_isIDPart","features":[391]},{"name":"u_isIDStart","features":[391]},{"name":"u_isISOControl","features":[391]},{"name":"u_isJavaIDPart","features":[391]},{"name":"u_isJavaIDStart","features":[391]},{"name":"u_isJavaSpaceChar","features":[391]},{"name":"u_isMirrored","features":[391]},{"name":"u_isUAlphabetic","features":[391]},{"name":"u_isULowercase","features":[391]},{"name":"u_isUUppercase","features":[391]},{"name":"u_isUWhiteSpace","features":[391]},{"name":"u_isWhitespace","features":[391]},{"name":"u_isalnum","features":[391]},{"name":"u_isalpha","features":[391]},{"name":"u_isbase","features":[391]},{"name":"u_isblank","features":[391]},{"name":"u_iscntrl","features":[391]},{"name":"u_isdefined","features":[391]},{"name":"u_isdigit","features":[391]},{"name":"u_isgraph","features":[391]},{"name":"u_islower","features":[391]},{"name":"u_isprint","features":[391]},{"name":"u_ispunct","features":[391]},{"name":"u_isspace","features":[391]},{"name":"u_istitle","features":[391]},{"name":"u_isupper","features":[391]},{"name":"u_isxdigit","features":[391]},{"name":"u_memcasecmp","features":[391]},{"name":"u_memchr","features":[391]},{"name":"u_memchr32","features":[391]},{"name":"u_memcmp","features":[391]},{"name":"u_memcmpCodePointOrder","features":[391]},{"name":"u_memcpy","features":[391]},{"name":"u_memmove","features":[391]},{"name":"u_memrchr","features":[391]},{"name":"u_memrchr32","features":[391]},{"name":"u_memset","features":[391]},{"name":"u_parseMessage","features":[391]},{"name":"u_parseMessageWithError","features":[391]},{"name":"u_setMemoryFunctions","features":[391]},{"name":"u_shapeArabic","features":[391]},{"name":"u_strCaseCompare","features":[391]},{"name":"u_strCompare","features":[391]},{"name":"u_strCompareIter","features":[391]},{"name":"u_strFindFirst","features":[391]},{"name":"u_strFindLast","features":[391]},{"name":"u_strFoldCase","features":[391]},{"name":"u_strFromJavaModifiedUTF8WithSub","features":[391]},{"name":"u_strFromUTF32","features":[391]},{"name":"u_strFromUTF32WithSub","features":[391]},{"name":"u_strFromUTF8","features":[391]},{"name":"u_strFromUTF8Lenient","features":[391]},{"name":"u_strFromUTF8WithSub","features":[391]},{"name":"u_strFromWCS","features":[391]},{"name":"u_strHasMoreChar32Than","features":[391]},{"name":"u_strToJavaModifiedUTF8","features":[391]},{"name":"u_strToLower","features":[391]},{"name":"u_strToTitle","features":[391]},{"name":"u_strToUTF32","features":[391]},{"name":"u_strToUTF32WithSub","features":[391]},{"name":"u_strToUTF8","features":[391]},{"name":"u_strToUTF8WithSub","features":[391]},{"name":"u_strToUpper","features":[391]},{"name":"u_strToWCS","features":[391]},{"name":"u_strcasecmp","features":[391]},{"name":"u_strcat","features":[391]},{"name":"u_strchr","features":[391]},{"name":"u_strchr32","features":[391]},{"name":"u_strcmp","features":[391]},{"name":"u_strcmpCodePointOrder","features":[391]},{"name":"u_strcpy","features":[391]},{"name":"u_strcspn","features":[391]},{"name":"u_strlen","features":[391]},{"name":"u_strncasecmp","features":[391]},{"name":"u_strncat","features":[391]},{"name":"u_strncmp","features":[391]},{"name":"u_strncmpCodePointOrder","features":[391]},{"name":"u_strncpy","features":[391]},{"name":"u_strpbrk","features":[391]},{"name":"u_strrchr","features":[391]},{"name":"u_strrchr32","features":[391]},{"name":"u_strrstr","features":[391]},{"name":"u_strspn","features":[391]},{"name":"u_strstr","features":[391]},{"name":"u_strtok_r","features":[391]},{"name":"u_tolower","features":[391]},{"name":"u_totitle","features":[391]},{"name":"u_toupper","features":[391]},{"name":"u_uastrcpy","features":[391]},{"name":"u_uastrncpy","features":[391]},{"name":"u_unescape","features":[391]},{"name":"u_unescapeAt","features":[391]},{"name":"u_versionFromString","features":[391]},{"name":"u_versionFromUString","features":[391]},{"name":"u_versionToString","features":[391]},{"name":"u_vformatMessage","features":[391]},{"name":"u_vformatMessageWithError","features":[391]},{"name":"u_vparseMessage","features":[391]},{"name":"u_vparseMessageWithError","features":[391]},{"name":"ubidi_close","features":[391]},{"name":"ubidi_countParagraphs","features":[391]},{"name":"ubidi_countRuns","features":[391]},{"name":"ubidi_getBaseDirection","features":[391]},{"name":"ubidi_getClassCallback","features":[391]},{"name":"ubidi_getCustomizedClass","features":[391]},{"name":"ubidi_getDirection","features":[391]},{"name":"ubidi_getLength","features":[391]},{"name":"ubidi_getLevelAt","features":[391]},{"name":"ubidi_getLevels","features":[391]},{"name":"ubidi_getLogicalIndex","features":[391]},{"name":"ubidi_getLogicalMap","features":[391]},{"name":"ubidi_getLogicalRun","features":[391]},{"name":"ubidi_getParaLevel","features":[391]},{"name":"ubidi_getParagraph","features":[391]},{"name":"ubidi_getParagraphByIndex","features":[391]},{"name":"ubidi_getProcessedLength","features":[391]},{"name":"ubidi_getReorderingMode","features":[391]},{"name":"ubidi_getReorderingOptions","features":[391]},{"name":"ubidi_getResultLength","features":[391]},{"name":"ubidi_getText","features":[391]},{"name":"ubidi_getVisualIndex","features":[391]},{"name":"ubidi_getVisualMap","features":[391]},{"name":"ubidi_getVisualRun","features":[391]},{"name":"ubidi_invertMap","features":[391]},{"name":"ubidi_isInverse","features":[391]},{"name":"ubidi_isOrderParagraphsLTR","features":[391]},{"name":"ubidi_open","features":[391]},{"name":"ubidi_openSized","features":[391]},{"name":"ubidi_orderParagraphsLTR","features":[391]},{"name":"ubidi_reorderLogical","features":[391]},{"name":"ubidi_reorderVisual","features":[391]},{"name":"ubidi_setClassCallback","features":[391]},{"name":"ubidi_setContext","features":[391]},{"name":"ubidi_setInverse","features":[391]},{"name":"ubidi_setLine","features":[391]},{"name":"ubidi_setPara","features":[391]},{"name":"ubidi_setReorderingMode","features":[391]},{"name":"ubidi_setReorderingOptions","features":[391]},{"name":"ubidi_writeReordered","features":[391]},{"name":"ubidi_writeReverse","features":[391]},{"name":"ubiditransform_close","features":[391]},{"name":"ubiditransform_open","features":[391]},{"name":"ubiditransform_transform","features":[391]},{"name":"ublock_getCode","features":[391]},{"name":"ubrk_close","features":[391]},{"name":"ubrk_countAvailable","features":[391]},{"name":"ubrk_current","features":[391]},{"name":"ubrk_first","features":[391]},{"name":"ubrk_following","features":[391]},{"name":"ubrk_getAvailable","features":[391]},{"name":"ubrk_getBinaryRules","features":[391]},{"name":"ubrk_getLocaleByType","features":[391]},{"name":"ubrk_getRuleStatus","features":[391]},{"name":"ubrk_getRuleStatusVec","features":[391]},{"name":"ubrk_isBoundary","features":[391]},{"name":"ubrk_last","features":[391]},{"name":"ubrk_next","features":[391]},{"name":"ubrk_open","features":[391]},{"name":"ubrk_openBinaryRules","features":[391]},{"name":"ubrk_openRules","features":[391]},{"name":"ubrk_preceding","features":[391]},{"name":"ubrk_previous","features":[391]},{"name":"ubrk_refreshUText","features":[391]},{"name":"ubrk_safeClone","features":[391]},{"name":"ubrk_setText","features":[391]},{"name":"ubrk_setUText","features":[391]},{"name":"ucal_add","features":[391]},{"name":"ucal_clear","features":[391]},{"name":"ucal_clearField","features":[391]},{"name":"ucal_clone","features":[391]},{"name":"ucal_close","features":[391]},{"name":"ucal_countAvailable","features":[391]},{"name":"ucal_equivalentTo","features":[391]},{"name":"ucal_get","features":[391]},{"name":"ucal_getAttribute","features":[391]},{"name":"ucal_getAvailable","features":[391]},{"name":"ucal_getCanonicalTimeZoneID","features":[391]},{"name":"ucal_getDSTSavings","features":[391]},{"name":"ucal_getDayOfWeekType","features":[391]},{"name":"ucal_getDefaultTimeZone","features":[391]},{"name":"ucal_getFieldDifference","features":[391]},{"name":"ucal_getGregorianChange","features":[391]},{"name":"ucal_getHostTimeZone","features":[391]},{"name":"ucal_getKeywordValuesForLocale","features":[391]},{"name":"ucal_getLimit","features":[391]},{"name":"ucal_getLocaleByType","features":[391]},{"name":"ucal_getMillis","features":[391]},{"name":"ucal_getNow","features":[391]},{"name":"ucal_getTZDataVersion","features":[391]},{"name":"ucal_getTimeZoneDisplayName","features":[391]},{"name":"ucal_getTimeZoneID","features":[391]},{"name":"ucal_getTimeZoneIDForWindowsID","features":[391]},{"name":"ucal_getTimeZoneTransitionDate","features":[391]},{"name":"ucal_getType","features":[391]},{"name":"ucal_getWeekendTransition","features":[391]},{"name":"ucal_getWindowsTimeZoneID","features":[391]},{"name":"ucal_inDaylightTime","features":[391]},{"name":"ucal_isSet","features":[391]},{"name":"ucal_isWeekend","features":[391]},{"name":"ucal_open","features":[391]},{"name":"ucal_openCountryTimeZones","features":[391]},{"name":"ucal_openTimeZoneIDEnumeration","features":[391]},{"name":"ucal_openTimeZones","features":[391]},{"name":"ucal_roll","features":[391]},{"name":"ucal_set","features":[391]},{"name":"ucal_setAttribute","features":[391]},{"name":"ucal_setDate","features":[391]},{"name":"ucal_setDateTime","features":[391]},{"name":"ucal_setDefaultTimeZone","features":[391]},{"name":"ucal_setGregorianChange","features":[391]},{"name":"ucal_setMillis","features":[391]},{"name":"ucal_setTimeZone","features":[391]},{"name":"ucasemap_close","features":[391]},{"name":"ucasemap_getBreakIterator","features":[391]},{"name":"ucasemap_getLocale","features":[391]},{"name":"ucasemap_getOptions","features":[391]},{"name":"ucasemap_open","features":[391]},{"name":"ucasemap_setBreakIterator","features":[391]},{"name":"ucasemap_setLocale","features":[391]},{"name":"ucasemap_setOptions","features":[391]},{"name":"ucasemap_toTitle","features":[391]},{"name":"ucasemap_utf8FoldCase","features":[391]},{"name":"ucasemap_utf8ToLower","features":[391]},{"name":"ucasemap_utf8ToTitle","features":[391]},{"name":"ucasemap_utf8ToUpper","features":[391]},{"name":"ucfpos_close","features":[391]},{"name":"ucfpos_constrainCategory","features":[391]},{"name":"ucfpos_constrainField","features":[391]},{"name":"ucfpos_getCategory","features":[391]},{"name":"ucfpos_getField","features":[391]},{"name":"ucfpos_getIndexes","features":[391]},{"name":"ucfpos_getInt64IterationContext","features":[391]},{"name":"ucfpos_matchesField","features":[391]},{"name":"ucfpos_open","features":[391]},{"name":"ucfpos_reset","features":[391]},{"name":"ucfpos_setInt64IterationContext","features":[391]},{"name":"ucfpos_setState","features":[391]},{"name":"ucnv_cbFromUWriteBytes","features":[391]},{"name":"ucnv_cbFromUWriteSub","features":[391]},{"name":"ucnv_cbFromUWriteUChars","features":[391]},{"name":"ucnv_cbToUWriteSub","features":[391]},{"name":"ucnv_cbToUWriteUChars","features":[391]},{"name":"ucnv_close","features":[391]},{"name":"ucnv_compareNames","features":[391]},{"name":"ucnv_convert","features":[391]},{"name":"ucnv_convertEx","features":[391]},{"name":"ucnv_countAliases","features":[391]},{"name":"ucnv_countAvailable","features":[391]},{"name":"ucnv_countStandards","features":[391]},{"name":"ucnv_detectUnicodeSignature","features":[391]},{"name":"ucnv_fixFileSeparator","features":[391]},{"name":"ucnv_flushCache","features":[391]},{"name":"ucnv_fromAlgorithmic","features":[391]},{"name":"ucnv_fromUChars","features":[391]},{"name":"ucnv_fromUCountPending","features":[391]},{"name":"ucnv_fromUnicode","features":[391]},{"name":"ucnv_getAlias","features":[391]},{"name":"ucnv_getAliases","features":[391]},{"name":"ucnv_getAvailableName","features":[391]},{"name":"ucnv_getCCSID","features":[391]},{"name":"ucnv_getCanonicalName","features":[391]},{"name":"ucnv_getDefaultName","features":[391]},{"name":"ucnv_getDisplayName","features":[391]},{"name":"ucnv_getFromUCallBack","features":[391]},{"name":"ucnv_getInvalidChars","features":[391]},{"name":"ucnv_getInvalidUChars","features":[391]},{"name":"ucnv_getMaxCharSize","features":[391]},{"name":"ucnv_getMinCharSize","features":[391]},{"name":"ucnv_getName","features":[391]},{"name":"ucnv_getNextUChar","features":[391]},{"name":"ucnv_getPlatform","features":[391]},{"name":"ucnv_getStandard","features":[391]},{"name":"ucnv_getStandardName","features":[391]},{"name":"ucnv_getStarters","features":[391]},{"name":"ucnv_getSubstChars","features":[391]},{"name":"ucnv_getToUCallBack","features":[391]},{"name":"ucnv_getType","features":[391]},{"name":"ucnv_getUnicodeSet","features":[391]},{"name":"ucnv_isAmbiguous","features":[391]},{"name":"ucnv_isFixedWidth","features":[391]},{"name":"ucnv_open","features":[391]},{"name":"ucnv_openAllNames","features":[391]},{"name":"ucnv_openCCSID","features":[391]},{"name":"ucnv_openPackage","features":[391]},{"name":"ucnv_openStandardNames","features":[391]},{"name":"ucnv_openU","features":[391]},{"name":"ucnv_reset","features":[391]},{"name":"ucnv_resetFromUnicode","features":[391]},{"name":"ucnv_resetToUnicode","features":[391]},{"name":"ucnv_safeClone","features":[391]},{"name":"ucnv_setDefaultName","features":[391]},{"name":"ucnv_setFallback","features":[391]},{"name":"ucnv_setFromUCallBack","features":[391]},{"name":"ucnv_setSubstChars","features":[391]},{"name":"ucnv_setSubstString","features":[391]},{"name":"ucnv_setToUCallBack","features":[391]},{"name":"ucnv_toAlgorithmic","features":[391]},{"name":"ucnv_toUChars","features":[391]},{"name":"ucnv_toUCountPending","features":[391]},{"name":"ucnv_toUnicode","features":[391]},{"name":"ucnv_usesFallback","features":[391]},{"name":"ucnvsel_close","features":[391]},{"name":"ucnvsel_open","features":[391]},{"name":"ucnvsel_openFromSerialized","features":[391]},{"name":"ucnvsel_selectForString","features":[391]},{"name":"ucnvsel_selectForUTF8","features":[391]},{"name":"ucnvsel_serialize","features":[391]},{"name":"ucol_cloneBinary","features":[391]},{"name":"ucol_close","features":[391]},{"name":"ucol_closeElements","features":[391]},{"name":"ucol_countAvailable","features":[391]},{"name":"ucol_equal","features":[391]},{"name":"ucol_getAttribute","features":[391]},{"name":"ucol_getAvailable","features":[391]},{"name":"ucol_getBound","features":[391]},{"name":"ucol_getContractionsAndExpansions","features":[391]},{"name":"ucol_getDisplayName","features":[391]},{"name":"ucol_getEquivalentReorderCodes","features":[391]},{"name":"ucol_getFunctionalEquivalent","features":[391]},{"name":"ucol_getKeywordValues","features":[391]},{"name":"ucol_getKeywordValuesForLocale","features":[391]},{"name":"ucol_getKeywords","features":[391]},{"name":"ucol_getLocaleByType","features":[391]},{"name":"ucol_getMaxExpansion","features":[391]},{"name":"ucol_getMaxVariable","features":[391]},{"name":"ucol_getOffset","features":[391]},{"name":"ucol_getReorderCodes","features":[391]},{"name":"ucol_getRules","features":[391]},{"name":"ucol_getRulesEx","features":[391]},{"name":"ucol_getSortKey","features":[391]},{"name":"ucol_getStrength","features":[391]},{"name":"ucol_getTailoredSet","features":[391]},{"name":"ucol_getUCAVersion","features":[391]},{"name":"ucol_getVariableTop","features":[391]},{"name":"ucol_getVersion","features":[391]},{"name":"ucol_greater","features":[391]},{"name":"ucol_greaterOrEqual","features":[391]},{"name":"ucol_keyHashCode","features":[391]},{"name":"ucol_mergeSortkeys","features":[391]},{"name":"ucol_next","features":[391]},{"name":"ucol_nextSortKeyPart","features":[391]},{"name":"ucol_open","features":[391]},{"name":"ucol_openAvailableLocales","features":[391]},{"name":"ucol_openBinary","features":[391]},{"name":"ucol_openElements","features":[391]},{"name":"ucol_openRules","features":[391]},{"name":"ucol_previous","features":[391]},{"name":"ucol_primaryOrder","features":[391]},{"name":"ucol_reset","features":[391]},{"name":"ucol_safeClone","features":[391]},{"name":"ucol_secondaryOrder","features":[391]},{"name":"ucol_setAttribute","features":[391]},{"name":"ucol_setMaxVariable","features":[391]},{"name":"ucol_setOffset","features":[391]},{"name":"ucol_setReorderCodes","features":[391]},{"name":"ucol_setStrength","features":[391]},{"name":"ucol_setText","features":[391]},{"name":"ucol_strcoll","features":[391]},{"name":"ucol_strcollIter","features":[391]},{"name":"ucol_strcollUTF8","features":[391]},{"name":"ucol_tertiaryOrder","features":[391]},{"name":"ucpmap_get","features":[391]},{"name":"ucpmap_getRange","features":[391]},{"name":"ucptrie_close","features":[391]},{"name":"ucptrie_get","features":[391]},{"name":"ucptrie_getRange","features":[391]},{"name":"ucptrie_getType","features":[391]},{"name":"ucptrie_getValueWidth","features":[391]},{"name":"ucptrie_internalSmallIndex","features":[391]},{"name":"ucptrie_internalSmallU8Index","features":[391]},{"name":"ucptrie_internalU8PrevIndex","features":[391]},{"name":"ucptrie_openFromBinary","features":[391]},{"name":"ucptrie_toBinary","features":[391]},{"name":"ucsdet_close","features":[391]},{"name":"ucsdet_detect","features":[391]},{"name":"ucsdet_detectAll","features":[391]},{"name":"ucsdet_enableInputFilter","features":[391]},{"name":"ucsdet_getAllDetectableCharsets","features":[391]},{"name":"ucsdet_getConfidence","features":[391]},{"name":"ucsdet_getLanguage","features":[391]},{"name":"ucsdet_getName","features":[391]},{"name":"ucsdet_getUChars","features":[391]},{"name":"ucsdet_isInputFilterEnabled","features":[391]},{"name":"ucsdet_open","features":[391]},{"name":"ucsdet_setDeclaredEncoding","features":[391]},{"name":"ucsdet_setText","features":[391]},{"name":"ucurr_countCurrencies","features":[391]},{"name":"ucurr_forLocale","features":[391]},{"name":"ucurr_forLocaleAndDate","features":[391]},{"name":"ucurr_getDefaultFractionDigits","features":[391]},{"name":"ucurr_getDefaultFractionDigitsForUsage","features":[391]},{"name":"ucurr_getKeywordValuesForLocale","features":[391]},{"name":"ucurr_getName","features":[391]},{"name":"ucurr_getNumericCode","features":[391]},{"name":"ucurr_getPluralName","features":[391]},{"name":"ucurr_getRoundingIncrement","features":[391]},{"name":"ucurr_getRoundingIncrementForUsage","features":[391]},{"name":"ucurr_isAvailable","features":[391]},{"name":"ucurr_openISOCurrencies","features":[391]},{"name":"ucurr_register","features":[391]},{"name":"ucurr_unregister","features":[391]},{"name":"udat_adoptNumberFormat","features":[391]},{"name":"udat_adoptNumberFormatForFields","features":[391]},{"name":"udat_applyPattern","features":[391]},{"name":"udat_clone","features":[391]},{"name":"udat_close","features":[391]},{"name":"udat_countAvailable","features":[391]},{"name":"udat_countSymbols","features":[391]},{"name":"udat_format","features":[391]},{"name":"udat_formatCalendar","features":[391]},{"name":"udat_formatCalendarForFields","features":[391]},{"name":"udat_formatForFields","features":[391]},{"name":"udat_get2DigitYearStart","features":[391]},{"name":"udat_getAvailable","features":[391]},{"name":"udat_getBooleanAttribute","features":[391]},{"name":"udat_getCalendar","features":[391]},{"name":"udat_getContext","features":[391]},{"name":"udat_getLocaleByType","features":[391]},{"name":"udat_getNumberFormat","features":[391]},{"name":"udat_getNumberFormatForField","features":[391]},{"name":"udat_getSymbols","features":[391]},{"name":"udat_isLenient","features":[391]},{"name":"udat_open","features":[391]},{"name":"udat_parse","features":[391]},{"name":"udat_parseCalendar","features":[391]},{"name":"udat_set2DigitYearStart","features":[391]},{"name":"udat_setBooleanAttribute","features":[391]},{"name":"udat_setCalendar","features":[391]},{"name":"udat_setContext","features":[391]},{"name":"udat_setLenient","features":[391]},{"name":"udat_setNumberFormat","features":[391]},{"name":"udat_setSymbols","features":[391]},{"name":"udat_toCalendarDateField","features":[391]},{"name":"udat_toPattern","features":[391]},{"name":"udatpg_addPattern","features":[391]},{"name":"udatpg_clone","features":[391]},{"name":"udatpg_close","features":[391]},{"name":"udatpg_getAppendItemFormat","features":[391]},{"name":"udatpg_getAppendItemName","features":[391]},{"name":"udatpg_getBaseSkeleton","features":[391]},{"name":"udatpg_getBestPattern","features":[391]},{"name":"udatpg_getBestPatternWithOptions","features":[391]},{"name":"udatpg_getDateTimeFormat","features":[391]},{"name":"udatpg_getDecimal","features":[391]},{"name":"udatpg_getFieldDisplayName","features":[391]},{"name":"udatpg_getPatternForSkeleton","features":[391]},{"name":"udatpg_getSkeleton","features":[391]},{"name":"udatpg_open","features":[391]},{"name":"udatpg_openBaseSkeletons","features":[391]},{"name":"udatpg_openEmpty","features":[391]},{"name":"udatpg_openSkeletons","features":[391]},{"name":"udatpg_replaceFieldTypes","features":[391]},{"name":"udatpg_replaceFieldTypesWithOptions","features":[391]},{"name":"udatpg_setAppendItemFormat","features":[391]},{"name":"udatpg_setAppendItemName","features":[391]},{"name":"udatpg_setDateTimeFormat","features":[391]},{"name":"udatpg_setDecimal","features":[391]},{"name":"udtitvfmt_close","features":[391]},{"name":"udtitvfmt_closeResult","features":[391]},{"name":"udtitvfmt_format","features":[391]},{"name":"udtitvfmt_open","features":[391]},{"name":"udtitvfmt_openResult","features":[391]},{"name":"udtitvfmt_resultAsValue","features":[391]},{"name":"uenum_close","features":[391]},{"name":"uenum_count","features":[391]},{"name":"uenum_next","features":[391]},{"name":"uenum_openCharStringsEnumeration","features":[391]},{"name":"uenum_openUCharStringsEnumeration","features":[391]},{"name":"uenum_reset","features":[391]},{"name":"uenum_unext","features":[391]},{"name":"ufieldpositer_close","features":[391]},{"name":"ufieldpositer_next","features":[391]},{"name":"ufieldpositer_open","features":[391]},{"name":"ufmt_close","features":[391]},{"name":"ufmt_getArrayItemByIndex","features":[391]},{"name":"ufmt_getArrayLength","features":[391]},{"name":"ufmt_getDate","features":[391]},{"name":"ufmt_getDecNumChars","features":[391]},{"name":"ufmt_getDouble","features":[391]},{"name":"ufmt_getInt64","features":[391]},{"name":"ufmt_getLong","features":[391]},{"name":"ufmt_getObject","features":[391]},{"name":"ufmt_getType","features":[391]},{"name":"ufmt_getUChars","features":[391]},{"name":"ufmt_isNumeric","features":[391]},{"name":"ufmt_open","features":[391]},{"name":"ufmtval_getString","features":[391]},{"name":"ufmtval_nextPosition","features":[391]},{"name":"ugender_getInstance","features":[391]},{"name":"ugender_getListGender","features":[391]},{"name":"uidna_close","features":[391]},{"name":"uidna_labelToASCII","features":[391]},{"name":"uidna_labelToASCII_UTF8","features":[391]},{"name":"uidna_labelToUnicode","features":[391]},{"name":"uidna_labelToUnicodeUTF8","features":[391]},{"name":"uidna_nameToASCII","features":[391]},{"name":"uidna_nameToASCII_UTF8","features":[391]},{"name":"uidna_nameToUnicode","features":[391]},{"name":"uidna_nameToUnicodeUTF8","features":[391]},{"name":"uidna_openUTS46","features":[391]},{"name":"uiter_current32","features":[391]},{"name":"uiter_getState","features":[391]},{"name":"uiter_next32","features":[391]},{"name":"uiter_previous32","features":[391]},{"name":"uiter_setState","features":[391]},{"name":"uiter_setString","features":[391]},{"name":"uiter_setUTF16BE","features":[391]},{"name":"uiter_setUTF8","features":[391]},{"name":"uldn_close","features":[391]},{"name":"uldn_getContext","features":[391]},{"name":"uldn_getDialectHandling","features":[391]},{"name":"uldn_getLocale","features":[391]},{"name":"uldn_keyDisplayName","features":[391]},{"name":"uldn_keyValueDisplayName","features":[391]},{"name":"uldn_languageDisplayName","features":[391]},{"name":"uldn_localeDisplayName","features":[391]},{"name":"uldn_open","features":[391]},{"name":"uldn_openForContext","features":[391]},{"name":"uldn_regionDisplayName","features":[391]},{"name":"uldn_scriptCodeDisplayName","features":[391]},{"name":"uldn_scriptDisplayName","features":[391]},{"name":"uldn_variantDisplayName","features":[391]},{"name":"ulistfmt_close","features":[391]},{"name":"ulistfmt_closeResult","features":[391]},{"name":"ulistfmt_format","features":[391]},{"name":"ulistfmt_formatStringsToResult","features":[391]},{"name":"ulistfmt_open","features":[391]},{"name":"ulistfmt_openForType","features":[391]},{"name":"ulistfmt_openResult","features":[391]},{"name":"ulistfmt_resultAsValue","features":[391]},{"name":"uloc_acceptLanguage","features":[391]},{"name":"uloc_acceptLanguageFromHTTP","features":[391]},{"name":"uloc_addLikelySubtags","features":[391]},{"name":"uloc_canonicalize","features":[391]},{"name":"uloc_countAvailable","features":[391]},{"name":"uloc_forLanguageTag","features":[391]},{"name":"uloc_getAvailable","features":[391]},{"name":"uloc_getBaseName","features":[391]},{"name":"uloc_getCharacterOrientation","features":[391]},{"name":"uloc_getCountry","features":[391]},{"name":"uloc_getDefault","features":[391]},{"name":"uloc_getDisplayCountry","features":[391]},{"name":"uloc_getDisplayKeyword","features":[391]},{"name":"uloc_getDisplayKeywordValue","features":[391]},{"name":"uloc_getDisplayLanguage","features":[391]},{"name":"uloc_getDisplayName","features":[391]},{"name":"uloc_getDisplayScript","features":[391]},{"name":"uloc_getDisplayVariant","features":[391]},{"name":"uloc_getISO3Country","features":[391]},{"name":"uloc_getISO3Language","features":[391]},{"name":"uloc_getISOCountries","features":[391]},{"name":"uloc_getISOLanguages","features":[391]},{"name":"uloc_getKeywordValue","features":[391]},{"name":"uloc_getLCID","features":[391]},{"name":"uloc_getLanguage","features":[391]},{"name":"uloc_getLineOrientation","features":[391]},{"name":"uloc_getLocaleForLCID","features":[391]},{"name":"uloc_getName","features":[391]},{"name":"uloc_getParent","features":[391]},{"name":"uloc_getScript","features":[391]},{"name":"uloc_getVariant","features":[391]},{"name":"uloc_isRightToLeft","features":[391]},{"name":"uloc_minimizeSubtags","features":[391]},{"name":"uloc_openAvailableByType","features":[391]},{"name":"uloc_openKeywords","features":[391]},{"name":"uloc_setDefault","features":[391]},{"name":"uloc_setKeywordValue","features":[391]},{"name":"uloc_toLanguageTag","features":[391]},{"name":"uloc_toLegacyKey","features":[391]},{"name":"uloc_toLegacyType","features":[391]},{"name":"uloc_toUnicodeLocaleKey","features":[391]},{"name":"uloc_toUnicodeLocaleType","features":[391]},{"name":"ulocdata_close","features":[391]},{"name":"ulocdata_getCLDRVersion","features":[391]},{"name":"ulocdata_getDelimiter","features":[391]},{"name":"ulocdata_getExemplarSet","features":[391]},{"name":"ulocdata_getLocaleDisplayPattern","features":[391]},{"name":"ulocdata_getLocaleSeparator","features":[391]},{"name":"ulocdata_getMeasurementSystem","features":[391]},{"name":"ulocdata_getNoSubstitute","features":[391]},{"name":"ulocdata_getPaperSize","features":[391]},{"name":"ulocdata_open","features":[391]},{"name":"ulocdata_setNoSubstitute","features":[391]},{"name":"umsg_applyPattern","features":[391]},{"name":"umsg_autoQuoteApostrophe","features":[391]},{"name":"umsg_clone","features":[391]},{"name":"umsg_close","features":[391]},{"name":"umsg_format","features":[391]},{"name":"umsg_getLocale","features":[391]},{"name":"umsg_open","features":[391]},{"name":"umsg_parse","features":[391]},{"name":"umsg_setLocale","features":[391]},{"name":"umsg_toPattern","features":[391]},{"name":"umsg_vformat","features":[391]},{"name":"umsg_vparse","features":[391]},{"name":"umutablecptrie_buildImmutable","features":[391]},{"name":"umutablecptrie_clone","features":[391]},{"name":"umutablecptrie_close","features":[391]},{"name":"umutablecptrie_fromUCPMap","features":[391]},{"name":"umutablecptrie_fromUCPTrie","features":[391]},{"name":"umutablecptrie_get","features":[391]},{"name":"umutablecptrie_getRange","features":[391]},{"name":"umutablecptrie_open","features":[391]},{"name":"umutablecptrie_set","features":[391]},{"name":"umutablecptrie_setRange","features":[391]},{"name":"unorm2_append","features":[391]},{"name":"unorm2_close","features":[391]},{"name":"unorm2_composePair","features":[391]},{"name":"unorm2_getCombiningClass","features":[391]},{"name":"unorm2_getDecomposition","features":[391]},{"name":"unorm2_getInstance","features":[391]},{"name":"unorm2_getNFCInstance","features":[391]},{"name":"unorm2_getNFDInstance","features":[391]},{"name":"unorm2_getNFKCCasefoldInstance","features":[391]},{"name":"unorm2_getNFKCInstance","features":[391]},{"name":"unorm2_getNFKDInstance","features":[391]},{"name":"unorm2_getRawDecomposition","features":[391]},{"name":"unorm2_hasBoundaryAfter","features":[391]},{"name":"unorm2_hasBoundaryBefore","features":[391]},{"name":"unorm2_isInert","features":[391]},{"name":"unorm2_isNormalized","features":[391]},{"name":"unorm2_normalize","features":[391]},{"name":"unorm2_normalizeSecondAndAppend","features":[391]},{"name":"unorm2_openFiltered","features":[391]},{"name":"unorm2_quickCheck","features":[391]},{"name":"unorm2_spanQuickCheckYes","features":[391]},{"name":"unorm_compare","features":[391]},{"name":"unum_applyPattern","features":[391]},{"name":"unum_clone","features":[391]},{"name":"unum_close","features":[391]},{"name":"unum_countAvailable","features":[391]},{"name":"unum_format","features":[391]},{"name":"unum_formatDecimal","features":[391]},{"name":"unum_formatDouble","features":[391]},{"name":"unum_formatDoubleCurrency","features":[391]},{"name":"unum_formatDoubleForFields","features":[391]},{"name":"unum_formatInt64","features":[391]},{"name":"unum_formatUFormattable","features":[391]},{"name":"unum_getAttribute","features":[391]},{"name":"unum_getAvailable","features":[391]},{"name":"unum_getContext","features":[391]},{"name":"unum_getDoubleAttribute","features":[391]},{"name":"unum_getLocaleByType","features":[391]},{"name":"unum_getSymbol","features":[391]},{"name":"unum_getTextAttribute","features":[391]},{"name":"unum_open","features":[391]},{"name":"unum_parse","features":[391]},{"name":"unum_parseDecimal","features":[391]},{"name":"unum_parseDouble","features":[391]},{"name":"unum_parseDoubleCurrency","features":[391]},{"name":"unum_parseInt64","features":[391]},{"name":"unum_parseToUFormattable","features":[391]},{"name":"unum_setAttribute","features":[391]},{"name":"unum_setContext","features":[391]},{"name":"unum_setDoubleAttribute","features":[391]},{"name":"unum_setSymbol","features":[391]},{"name":"unum_setTextAttribute","features":[391]},{"name":"unum_toPattern","features":[391]},{"name":"unumf_close","features":[391]},{"name":"unumf_closeResult","features":[391]},{"name":"unumf_formatDecimal","features":[391]},{"name":"unumf_formatDouble","features":[391]},{"name":"unumf_formatInt","features":[391]},{"name":"unumf_openForSkeletonAndLocale","features":[391]},{"name":"unumf_openForSkeletonAndLocaleWithError","features":[391]},{"name":"unumf_openResult","features":[391]},{"name":"unumf_resultAsValue","features":[391]},{"name":"unumf_resultGetAllFieldPositions","features":[391]},{"name":"unumf_resultNextFieldPosition","features":[391]},{"name":"unumf_resultToString","features":[391]},{"name":"unumsys_close","features":[391]},{"name":"unumsys_getDescription","features":[391]},{"name":"unumsys_getName","features":[391]},{"name":"unumsys_getRadix","features":[391]},{"name":"unumsys_isAlgorithmic","features":[391]},{"name":"unumsys_open","features":[391]},{"name":"unumsys_openAvailableNames","features":[391]},{"name":"unumsys_openByName","features":[391]},{"name":"uplrules_close","features":[391]},{"name":"uplrules_getKeywords","features":[391]},{"name":"uplrules_open","features":[391]},{"name":"uplrules_openForType","features":[391]},{"name":"uplrules_select","features":[391]},{"name":"uplrules_selectFormatted","features":[391]},{"name":"uregex_appendReplacement","features":[391]},{"name":"uregex_appendReplacementUText","features":[391]},{"name":"uregex_appendTail","features":[391]},{"name":"uregex_appendTailUText","features":[391]},{"name":"uregex_clone","features":[391]},{"name":"uregex_close","features":[391]},{"name":"uregex_end","features":[391]},{"name":"uregex_end64","features":[391]},{"name":"uregex_find","features":[391]},{"name":"uregex_find64","features":[391]},{"name":"uregex_findNext","features":[391]},{"name":"uregex_flags","features":[391]},{"name":"uregex_getFindProgressCallback","features":[391]},{"name":"uregex_getMatchCallback","features":[391]},{"name":"uregex_getStackLimit","features":[391]},{"name":"uregex_getText","features":[391]},{"name":"uregex_getTimeLimit","features":[391]},{"name":"uregex_getUText","features":[391]},{"name":"uregex_group","features":[391]},{"name":"uregex_groupCount","features":[391]},{"name":"uregex_groupNumberFromCName","features":[391]},{"name":"uregex_groupNumberFromName","features":[391]},{"name":"uregex_groupUText","features":[391]},{"name":"uregex_hasAnchoringBounds","features":[391]},{"name":"uregex_hasTransparentBounds","features":[391]},{"name":"uregex_hitEnd","features":[391]},{"name":"uregex_lookingAt","features":[391]},{"name":"uregex_lookingAt64","features":[391]},{"name":"uregex_matches","features":[391]},{"name":"uregex_matches64","features":[391]},{"name":"uregex_open","features":[391]},{"name":"uregex_openC","features":[391]},{"name":"uregex_openUText","features":[391]},{"name":"uregex_pattern","features":[391]},{"name":"uregex_patternUText","features":[391]},{"name":"uregex_refreshUText","features":[391]},{"name":"uregex_regionEnd","features":[391]},{"name":"uregex_regionEnd64","features":[391]},{"name":"uregex_regionStart","features":[391]},{"name":"uregex_regionStart64","features":[391]},{"name":"uregex_replaceAll","features":[391]},{"name":"uregex_replaceAllUText","features":[391]},{"name":"uregex_replaceFirst","features":[391]},{"name":"uregex_replaceFirstUText","features":[391]},{"name":"uregex_requireEnd","features":[391]},{"name":"uregex_reset","features":[391]},{"name":"uregex_reset64","features":[391]},{"name":"uregex_setFindProgressCallback","features":[391]},{"name":"uregex_setMatchCallback","features":[391]},{"name":"uregex_setRegion","features":[391]},{"name":"uregex_setRegion64","features":[391]},{"name":"uregex_setRegionAndStart","features":[391]},{"name":"uregex_setStackLimit","features":[391]},{"name":"uregex_setText","features":[391]},{"name":"uregex_setTimeLimit","features":[391]},{"name":"uregex_setUText","features":[391]},{"name":"uregex_split","features":[391]},{"name":"uregex_splitUText","features":[391]},{"name":"uregex_start","features":[391]},{"name":"uregex_start64","features":[391]},{"name":"uregex_useAnchoringBounds","features":[391]},{"name":"uregex_useTransparentBounds","features":[391]},{"name":"uregion_areEqual","features":[391]},{"name":"uregion_contains","features":[391]},{"name":"uregion_getAvailable","features":[391]},{"name":"uregion_getContainedRegions","features":[391]},{"name":"uregion_getContainedRegionsOfType","features":[391]},{"name":"uregion_getContainingRegion","features":[391]},{"name":"uregion_getContainingRegionOfType","features":[391]},{"name":"uregion_getNumericCode","features":[391]},{"name":"uregion_getPreferredValues","features":[391]},{"name":"uregion_getRegionCode","features":[391]},{"name":"uregion_getRegionFromCode","features":[391]},{"name":"uregion_getRegionFromNumericCode","features":[391]},{"name":"uregion_getType","features":[391]},{"name":"ureldatefmt_close","features":[391]},{"name":"ureldatefmt_closeResult","features":[391]},{"name":"ureldatefmt_combineDateAndTime","features":[391]},{"name":"ureldatefmt_format","features":[391]},{"name":"ureldatefmt_formatNumeric","features":[391]},{"name":"ureldatefmt_formatNumericToResult","features":[391]},{"name":"ureldatefmt_formatToResult","features":[391]},{"name":"ureldatefmt_open","features":[391]},{"name":"ureldatefmt_openResult","features":[391]},{"name":"ureldatefmt_resultAsValue","features":[391]},{"name":"ures_close","features":[391]},{"name":"ures_getBinary","features":[391]},{"name":"ures_getByIndex","features":[391]},{"name":"ures_getByKey","features":[391]},{"name":"ures_getInt","features":[391]},{"name":"ures_getIntVector","features":[391]},{"name":"ures_getKey","features":[391]},{"name":"ures_getLocaleByType","features":[391]},{"name":"ures_getNextResource","features":[391]},{"name":"ures_getNextString","features":[391]},{"name":"ures_getSize","features":[391]},{"name":"ures_getString","features":[391]},{"name":"ures_getStringByIndex","features":[391]},{"name":"ures_getStringByKey","features":[391]},{"name":"ures_getType","features":[391]},{"name":"ures_getUInt","features":[391]},{"name":"ures_getUTF8String","features":[391]},{"name":"ures_getUTF8StringByIndex","features":[391]},{"name":"ures_getUTF8StringByKey","features":[391]},{"name":"ures_getVersion","features":[391]},{"name":"ures_hasNext","features":[391]},{"name":"ures_open","features":[391]},{"name":"ures_openAvailableLocales","features":[391]},{"name":"ures_openDirect","features":[391]},{"name":"ures_openU","features":[391]},{"name":"ures_resetIterator","features":[391]},{"name":"uscript_breaksBetweenLetters","features":[391]},{"name":"uscript_getCode","features":[391]},{"name":"uscript_getName","features":[391]},{"name":"uscript_getSampleString","features":[391]},{"name":"uscript_getScript","features":[391]},{"name":"uscript_getScriptExtensions","features":[391]},{"name":"uscript_getShortName","features":[391]},{"name":"uscript_getUsage","features":[391]},{"name":"uscript_hasScript","features":[391]},{"name":"uscript_isCased","features":[391]},{"name":"uscript_isRightToLeft","features":[391]},{"name":"usearch_close","features":[391]},{"name":"usearch_first","features":[391]},{"name":"usearch_following","features":[391]},{"name":"usearch_getAttribute","features":[391]},{"name":"usearch_getBreakIterator","features":[391]},{"name":"usearch_getCollator","features":[391]},{"name":"usearch_getMatchedLength","features":[391]},{"name":"usearch_getMatchedStart","features":[391]},{"name":"usearch_getMatchedText","features":[391]},{"name":"usearch_getOffset","features":[391]},{"name":"usearch_getPattern","features":[391]},{"name":"usearch_getText","features":[391]},{"name":"usearch_last","features":[391]},{"name":"usearch_next","features":[391]},{"name":"usearch_open","features":[391]},{"name":"usearch_openFromCollator","features":[391]},{"name":"usearch_preceding","features":[391]},{"name":"usearch_previous","features":[391]},{"name":"usearch_reset","features":[391]},{"name":"usearch_setAttribute","features":[391]},{"name":"usearch_setBreakIterator","features":[391]},{"name":"usearch_setCollator","features":[391]},{"name":"usearch_setOffset","features":[391]},{"name":"usearch_setPattern","features":[391]},{"name":"usearch_setText","features":[391]},{"name":"uset_add","features":[391]},{"name":"uset_addAll","features":[391]},{"name":"uset_addAllCodePoints","features":[391]},{"name":"uset_addRange","features":[391]},{"name":"uset_addString","features":[391]},{"name":"uset_applyIntPropertyValue","features":[391]},{"name":"uset_applyPattern","features":[391]},{"name":"uset_applyPropertyAlias","features":[391]},{"name":"uset_charAt","features":[391]},{"name":"uset_clear","features":[391]},{"name":"uset_clone","features":[391]},{"name":"uset_cloneAsThawed","features":[391]},{"name":"uset_close","features":[391]},{"name":"uset_closeOver","features":[391]},{"name":"uset_compact","features":[391]},{"name":"uset_complement","features":[391]},{"name":"uset_complementAll","features":[391]},{"name":"uset_contains","features":[391]},{"name":"uset_containsAll","features":[391]},{"name":"uset_containsAllCodePoints","features":[391]},{"name":"uset_containsNone","features":[391]},{"name":"uset_containsRange","features":[391]},{"name":"uset_containsSome","features":[391]},{"name":"uset_containsString","features":[391]},{"name":"uset_equals","features":[391]},{"name":"uset_freeze","features":[391]},{"name":"uset_getItem","features":[391]},{"name":"uset_getItemCount","features":[391]},{"name":"uset_getSerializedRange","features":[391]},{"name":"uset_getSerializedRangeCount","features":[391]},{"name":"uset_getSerializedSet","features":[391]},{"name":"uset_indexOf","features":[391]},{"name":"uset_isEmpty","features":[391]},{"name":"uset_isFrozen","features":[391]},{"name":"uset_open","features":[391]},{"name":"uset_openEmpty","features":[391]},{"name":"uset_openPattern","features":[391]},{"name":"uset_openPatternOptions","features":[391]},{"name":"uset_remove","features":[391]},{"name":"uset_removeAll","features":[391]},{"name":"uset_removeAllStrings","features":[391]},{"name":"uset_removeRange","features":[391]},{"name":"uset_removeString","features":[391]},{"name":"uset_resemblesPattern","features":[391]},{"name":"uset_retain","features":[391]},{"name":"uset_retainAll","features":[391]},{"name":"uset_serialize","features":[391]},{"name":"uset_serializedContains","features":[391]},{"name":"uset_set","features":[391]},{"name":"uset_setSerializedToOne","features":[391]},{"name":"uset_size","features":[391]},{"name":"uset_span","features":[391]},{"name":"uset_spanBack","features":[391]},{"name":"uset_spanBackUTF8","features":[391]},{"name":"uset_spanUTF8","features":[391]},{"name":"uset_toPattern","features":[391]},{"name":"uspoof_areConfusable","features":[391]},{"name":"uspoof_areConfusableUTF8","features":[391]},{"name":"uspoof_check","features":[391]},{"name":"uspoof_check2","features":[391]},{"name":"uspoof_check2UTF8","features":[391]},{"name":"uspoof_checkUTF8","features":[391]},{"name":"uspoof_clone","features":[391]},{"name":"uspoof_close","features":[391]},{"name":"uspoof_closeCheckResult","features":[391]},{"name":"uspoof_getAllowedChars","features":[391]},{"name":"uspoof_getAllowedLocales","features":[391]},{"name":"uspoof_getCheckResultChecks","features":[391]},{"name":"uspoof_getCheckResultNumerics","features":[391]},{"name":"uspoof_getCheckResultRestrictionLevel","features":[391]},{"name":"uspoof_getChecks","features":[391]},{"name":"uspoof_getInclusionSet","features":[391]},{"name":"uspoof_getRecommendedSet","features":[391]},{"name":"uspoof_getRestrictionLevel","features":[391]},{"name":"uspoof_getSkeleton","features":[391]},{"name":"uspoof_getSkeletonUTF8","features":[391]},{"name":"uspoof_open","features":[391]},{"name":"uspoof_openCheckResult","features":[391]},{"name":"uspoof_openFromSerialized","features":[391]},{"name":"uspoof_openFromSource","features":[391]},{"name":"uspoof_serialize","features":[391]},{"name":"uspoof_setAllowedChars","features":[391]},{"name":"uspoof_setAllowedLocales","features":[391]},{"name":"uspoof_setChecks","features":[391]},{"name":"uspoof_setRestrictionLevel","features":[391]},{"name":"usprep_close","features":[391]},{"name":"usprep_open","features":[391]},{"name":"usprep_openByType","features":[391]},{"name":"usprep_prepare","features":[391]},{"name":"utext_char32At","features":[391]},{"name":"utext_clone","features":[391]},{"name":"utext_close","features":[391]},{"name":"utext_copy","features":[391]},{"name":"utext_current32","features":[391]},{"name":"utext_equals","features":[391]},{"name":"utext_extract","features":[391]},{"name":"utext_freeze","features":[391]},{"name":"utext_getNativeIndex","features":[391]},{"name":"utext_getPreviousNativeIndex","features":[391]},{"name":"utext_hasMetaData","features":[391]},{"name":"utext_isLengthExpensive","features":[391]},{"name":"utext_isWritable","features":[391]},{"name":"utext_moveIndex32","features":[391]},{"name":"utext_nativeLength","features":[391]},{"name":"utext_next32","features":[391]},{"name":"utext_next32From","features":[391]},{"name":"utext_openUChars","features":[391]},{"name":"utext_openUTF8","features":[391]},{"name":"utext_previous32","features":[391]},{"name":"utext_previous32From","features":[391]},{"name":"utext_replace","features":[391]},{"name":"utext_setNativeIndex","features":[391]},{"name":"utext_setup","features":[391]},{"name":"utf8_appendCharSafeBody","features":[391]},{"name":"utf8_back1SafeBody","features":[391]},{"name":"utf8_nextCharSafeBody","features":[391]},{"name":"utf8_prevCharSafeBody","features":[391]},{"name":"utmscale_fromInt64","features":[391]},{"name":"utmscale_getTimeScaleValue","features":[391]},{"name":"utmscale_toInt64","features":[391]},{"name":"utrace_format","features":[391]},{"name":"utrace_functionName","features":[391]},{"name":"utrace_getFunctions","features":[391]},{"name":"utrace_getLevel","features":[391]},{"name":"utrace_setFunctions","features":[391]},{"name":"utrace_setLevel","features":[391]},{"name":"utrace_vformat","features":[391]},{"name":"utrans_clone","features":[391]},{"name":"utrans_close","features":[391]},{"name":"utrans_countAvailableIDs","features":[391]},{"name":"utrans_getSourceSet","features":[391]},{"name":"utrans_getUnicodeID","features":[391]},{"name":"utrans_openIDs","features":[391]},{"name":"utrans_openInverse","features":[391]},{"name":"utrans_openU","features":[391]},{"name":"utrans_register","features":[391]},{"name":"utrans_setFilter","features":[391]},{"name":"utrans_toRules","features":[391]},{"name":"utrans_trans","features":[391]},{"name":"utrans_transIncremental","features":[391]},{"name":"utrans_transIncrementalUChars","features":[391]},{"name":"utrans_transUChars","features":[391]},{"name":"utrans_unregisterID","features":[391]}],"395":[{"name":"CompositionFrameDisplayInstance","features":[305,392,393]},{"name":"CompositionFrameInstanceKind","features":[392]},{"name":"CompositionFrameInstanceKind_ComposedOnScreen","features":[392]},{"name":"CompositionFrameInstanceKind_ComposedToIntermediate","features":[392]},{"name":"CompositionFrameInstanceKind_ScanoutOnScreen","features":[392]},{"name":"CreatePresentationFactory","features":[392]},{"name":"ICompositionFramePresentStatistics","features":[392]},{"name":"IIndependentFlipFramePresentStatistics","features":[392]},{"name":"IPresentStatistics","features":[392]},{"name":"IPresentStatusPresentStatistics","features":[392]},{"name":"IPresentationBuffer","features":[392]},{"name":"IPresentationContent","features":[392]},{"name":"IPresentationFactory","features":[392]},{"name":"IPresentationManager","features":[392]},{"name":"IPresentationSurface","features":[392]},{"name":"PresentStatisticsKind","features":[392]},{"name":"PresentStatisticsKind_CompositionFrame","features":[392]},{"name":"PresentStatisticsKind_IndependentFlipFrame","features":[392]},{"name":"PresentStatisticsKind_PresentStatus","features":[392]},{"name":"PresentStatus","features":[392]},{"name":"PresentStatus_Canceled","features":[392]},{"name":"PresentStatus_Queued","features":[392]},{"name":"PresentStatus_Skipped","features":[392]},{"name":"PresentationTransform","features":[392]},{"name":"SystemInterruptTime","features":[392]}],"396":[{"name":"AcgCompatible","features":[394]},{"name":"AdapterBudgetChange","features":[394]},{"name":"AdapterHardwareContentProtectionTeardown","features":[394]},{"name":"AdapterListStale","features":[394]},{"name":"AdapterMemoryBudget","features":[394]},{"name":"AdapterNoLongerValid","features":[394]},{"name":"ComputePreemptionGranularity","features":[394]},{"name":"DXCORE_ADAPTER_ATTRIBUTE_D3D11_GRAPHICS","features":[394]},{"name":"DXCORE_ADAPTER_ATTRIBUTE_D3D12_CORE_COMPUTE","features":[394]},{"name":"DXCORE_ADAPTER_ATTRIBUTE_D3D12_GRAPHICS","features":[394]},{"name":"DXCoreAdapterMemoryBudget","features":[394]},{"name":"DXCoreAdapterMemoryBudgetNodeSegmentGroup","features":[394]},{"name":"DXCoreAdapterPreference","features":[394]},{"name":"DXCoreAdapterProperty","features":[394]},{"name":"DXCoreAdapterState","features":[394]},{"name":"DXCoreCreateAdapterFactory","features":[394]},{"name":"DXCoreHardwareID","features":[394]},{"name":"DXCoreHardwareIDParts","features":[394]},{"name":"DXCoreNotificationType","features":[394]},{"name":"DXCoreSegmentGroup","features":[394]},{"name":"DedicatedAdapterMemory","features":[394]},{"name":"DedicatedSystemMemory","features":[394]},{"name":"DriverDescription","features":[394]},{"name":"DriverVersion","features":[394]},{"name":"GraphicsPreemptionGranularity","features":[394]},{"name":"Hardware","features":[394]},{"name":"HardwareID","features":[394]},{"name":"HardwareIDParts","features":[394]},{"name":"HighPerformance","features":[394]},{"name":"IDXCoreAdapter","features":[394]},{"name":"IDXCoreAdapterFactory","features":[394]},{"name":"IDXCoreAdapterList","features":[394]},{"name":"InstanceLuid","features":[394]},{"name":"IsDetachable","features":[394]},{"name":"IsDriverUpdateInProgress","features":[394]},{"name":"IsHardware","features":[394]},{"name":"IsIntegrated","features":[394]},{"name":"KmdModelVersion","features":[394]},{"name":"Local","features":[394]},{"name":"MinimumPower","features":[394]},{"name":"NonLocal","features":[394]},{"name":"PFN_DXCORE_NOTIFICATION_CALLBACK","features":[394]},{"name":"SharedSystemMemory","features":[394]},{"name":"_FACDXCORE","features":[394]}],"397":[{"name":"CLSID_D2D12DAffineTransform","features":[395]},{"name":"CLSID_D2D13DPerspectiveTransform","features":[395]},{"name":"CLSID_D2D13DTransform","features":[395]},{"name":"CLSID_D2D1AlphaMask","features":[395]},{"name":"CLSID_D2D1ArithmeticComposite","features":[395]},{"name":"CLSID_D2D1Atlas","features":[395]},{"name":"CLSID_D2D1BitmapSource","features":[395]},{"name":"CLSID_D2D1Blend","features":[395]},{"name":"CLSID_D2D1Border","features":[395]},{"name":"CLSID_D2D1Brightness","features":[395]},{"name":"CLSID_D2D1ChromaKey","features":[395]},{"name":"CLSID_D2D1ColorManagement","features":[395]},{"name":"CLSID_D2D1ColorMatrix","features":[395]},{"name":"CLSID_D2D1Composite","features":[395]},{"name":"CLSID_D2D1Contrast","features":[395]},{"name":"CLSID_D2D1ConvolveMatrix","features":[395]},{"name":"CLSID_D2D1Crop","features":[395]},{"name":"CLSID_D2D1CrossFade","features":[395]},{"name":"CLSID_D2D1DirectionalBlur","features":[395]},{"name":"CLSID_D2D1DiscreteTransfer","features":[395]},{"name":"CLSID_D2D1DisplacementMap","features":[395]},{"name":"CLSID_D2D1DistantDiffuse","features":[395]},{"name":"CLSID_D2D1DistantSpecular","features":[395]},{"name":"CLSID_D2D1DpiCompensation","features":[395]},{"name":"CLSID_D2D1EdgeDetection","features":[395]},{"name":"CLSID_D2D1Emboss","features":[395]},{"name":"CLSID_D2D1Exposure","features":[395]},{"name":"CLSID_D2D1Flood","features":[395]},{"name":"CLSID_D2D1GammaTransfer","features":[395]},{"name":"CLSID_D2D1GaussianBlur","features":[395]},{"name":"CLSID_D2D1Grayscale","features":[395]},{"name":"CLSID_D2D1HdrToneMap","features":[395]},{"name":"CLSID_D2D1HighlightsShadows","features":[395]},{"name":"CLSID_D2D1Histogram","features":[395]},{"name":"CLSID_D2D1HueRotation","features":[395]},{"name":"CLSID_D2D1HueToRgb","features":[395]},{"name":"CLSID_D2D1Invert","features":[395]},{"name":"CLSID_D2D1LinearTransfer","features":[395]},{"name":"CLSID_D2D1LookupTable3D","features":[395]},{"name":"CLSID_D2D1LuminanceToAlpha","features":[395]},{"name":"CLSID_D2D1Morphology","features":[395]},{"name":"CLSID_D2D1Opacity","features":[395]},{"name":"CLSID_D2D1OpacityMetadata","features":[395]},{"name":"CLSID_D2D1PointDiffuse","features":[395]},{"name":"CLSID_D2D1PointSpecular","features":[395]},{"name":"CLSID_D2D1Posterize","features":[395]},{"name":"CLSID_D2D1Premultiply","features":[395]},{"name":"CLSID_D2D1RgbToHue","features":[395]},{"name":"CLSID_D2D1Saturation","features":[395]},{"name":"CLSID_D2D1Scale","features":[395]},{"name":"CLSID_D2D1Sepia","features":[395]},{"name":"CLSID_D2D1Shadow","features":[395]},{"name":"CLSID_D2D1Sharpen","features":[395]},{"name":"CLSID_D2D1SpotDiffuse","features":[395]},{"name":"CLSID_D2D1SpotSpecular","features":[395]},{"name":"CLSID_D2D1Straighten","features":[395]},{"name":"CLSID_D2D1TableTransfer","features":[395]},{"name":"CLSID_D2D1TemperatureTint","features":[395]},{"name":"CLSID_D2D1Tile","features":[395]},{"name":"CLSID_D2D1Tint","features":[395]},{"name":"CLSID_D2D1Turbulence","features":[395]},{"name":"CLSID_D2D1UnPremultiply","features":[395]},{"name":"CLSID_D2D1Vignette","features":[395]},{"name":"CLSID_D2D1WhiteLevelAdjustment","features":[395]},{"name":"CLSID_D2D1YCbCr","features":[395]},{"name":"D2D1ComputeMaximumScaleFactor","features":[68,395]},{"name":"D2D1ConvertColorSpace","features":[396]},{"name":"D2D1CreateDevice","features":[395,397]},{"name":"D2D1CreateDeviceContext","features":[395,397]},{"name":"D2D1CreateFactory","features":[395]},{"name":"D2D1GetGradientMeshInteriorPointsFromCoonsPatch","features":[396]},{"name":"D2D1InvertMatrix","features":[68,305,395]},{"name":"D2D1IsMatrixInvertible","features":[68,305,395]},{"name":"D2D1MakeRotateMatrix","features":[68,396]},{"name":"D2D1MakeSkewMatrix","features":[68,396]},{"name":"D2D1SinCos","features":[395]},{"name":"D2D1Tan","features":[395]},{"name":"D2D1Vec3Length","features":[395]},{"name":"D2D1_2DAFFINETRANSFORM_PROP","features":[395]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_SHARPNESS","features":[395]},{"name":"D2D1_2DAFFINETRANSFORM_PROP_TRANSFORM_MATRIX","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_CUBIC","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_DEPTH","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_GLOBAL_OFFSET","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_LOCAL_OFFSET","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_PERSPECTIVE_ORIGIN","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_ROTATION","features":[395]},{"name":"D2D1_3DPERSPECTIVETRANSFORM_PROP_ROTATION_ORIGIN","features":[395]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_CUBIC","features":[395]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_3DTRANSFORM_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_3DTRANSFORM_PROP","features":[395]},{"name":"D2D1_3DTRANSFORM_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_3DTRANSFORM_PROP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_3DTRANSFORM_PROP_TRANSFORM_MATRIX","features":[395]},{"name":"D2D1_ANTIALIAS_MODE","features":[395]},{"name":"D2D1_ANTIALIAS_MODE_ALIASED","features":[395]},{"name":"D2D1_ANTIALIAS_MODE_PER_PRIMITIVE","features":[395]},{"name":"D2D1_APPEND_ALIGNED_ELEMENT","features":[395]},{"name":"D2D1_ARC_SEGMENT","features":[396]},{"name":"D2D1_ARC_SIZE","features":[395]},{"name":"D2D1_ARC_SIZE_LARGE","features":[395]},{"name":"D2D1_ARC_SIZE_SMALL","features":[395]},{"name":"D2D1_ARITHMETICCOMPOSITE_PROP","features":[395]},{"name":"D2D1_ARITHMETICCOMPOSITE_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_ARITHMETICCOMPOSITE_PROP_COEFFICIENTS","features":[395]},{"name":"D2D1_ATLAS_PROP","features":[395]},{"name":"D2D1_ATLAS_PROP_INPUT_PADDING_RECT","features":[395]},{"name":"D2D1_ATLAS_PROP_INPUT_RECT","features":[395]},{"name":"D2D1_BITMAPSOURCE_ALPHA_MODE","features":[395]},{"name":"D2D1_BITMAPSOURCE_ALPHA_MODE_PREMULTIPLIED","features":[395]},{"name":"D2D1_BITMAPSOURCE_ALPHA_MODE_STRAIGHT","features":[395]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_CUBIC","features":[395]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_FANT","features":[395]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_MIPMAP_LINEAR","features":[395]},{"name":"D2D1_BITMAPSOURCE_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_DEFAULT","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE180","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE180_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE270","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE270_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE90","features":[395]},{"name":"D2D1_BITMAPSOURCE_ORIENTATION_ROTATE_CLOCKWISE90_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_BITMAPSOURCE_PROP","features":[395]},{"name":"D2D1_BITMAPSOURCE_PROP_ALPHA_MODE","features":[395]},{"name":"D2D1_BITMAPSOURCE_PROP_ENABLE_DPI_CORRECTION","features":[395]},{"name":"D2D1_BITMAPSOURCE_PROP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_BITMAPSOURCE_PROP_ORIENTATION","features":[395]},{"name":"D2D1_BITMAPSOURCE_PROP_SCALE","features":[395]},{"name":"D2D1_BITMAPSOURCE_PROP_WIC_BITMAP_SOURCE","features":[395]},{"name":"D2D1_BITMAP_BRUSH_PROPERTIES","features":[395]},{"name":"D2D1_BITMAP_BRUSH_PROPERTIES1","features":[395]},{"name":"D2D1_BITMAP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_BITMAP_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_BITMAP_OPTIONS","features":[395]},{"name":"D2D1_BITMAP_OPTIONS_CANNOT_DRAW","features":[395]},{"name":"D2D1_BITMAP_OPTIONS_CPU_READ","features":[395]},{"name":"D2D1_BITMAP_OPTIONS_GDI_COMPATIBLE","features":[395]},{"name":"D2D1_BITMAP_OPTIONS_NONE","features":[395]},{"name":"D2D1_BITMAP_OPTIONS_TARGET","features":[395]},{"name":"D2D1_BITMAP_PROPERTIES","features":[396,393]},{"name":"D2D1_BITMAP_PROPERTIES1","features":[396,393]},{"name":"D2D1_BLEND","features":[395]},{"name":"D2D1_BLEND_BLEND_FACTOR","features":[395]},{"name":"D2D1_BLEND_DESCRIPTION","features":[395]},{"name":"D2D1_BLEND_DEST_ALPHA","features":[395]},{"name":"D2D1_BLEND_DEST_COLOR","features":[395]},{"name":"D2D1_BLEND_INV_BLEND_FACTOR","features":[395]},{"name":"D2D1_BLEND_INV_DEST_ALPHA","features":[395]},{"name":"D2D1_BLEND_INV_DEST_COLOR","features":[395]},{"name":"D2D1_BLEND_INV_SRC_ALPHA","features":[395]},{"name":"D2D1_BLEND_INV_SRC_COLOR","features":[395]},{"name":"D2D1_BLEND_ONE","features":[395]},{"name":"D2D1_BLEND_OPERATION","features":[395]},{"name":"D2D1_BLEND_OPERATION_ADD","features":[395]},{"name":"D2D1_BLEND_OPERATION_MAX","features":[395]},{"name":"D2D1_BLEND_OPERATION_MIN","features":[395]},{"name":"D2D1_BLEND_OPERATION_REV_SUBTRACT","features":[395]},{"name":"D2D1_BLEND_OPERATION_SUBTRACT","features":[395]},{"name":"D2D1_BLEND_PROP","features":[395]},{"name":"D2D1_BLEND_PROP_MODE","features":[395]},{"name":"D2D1_BLEND_SRC_ALPHA","features":[395]},{"name":"D2D1_BLEND_SRC_ALPHA_SAT","features":[395]},{"name":"D2D1_BLEND_SRC_COLOR","features":[395]},{"name":"D2D1_BLEND_ZERO","features":[395]},{"name":"D2D1_BORDER_EDGE_MODE","features":[395]},{"name":"D2D1_BORDER_EDGE_MODE_CLAMP","features":[395]},{"name":"D2D1_BORDER_EDGE_MODE_MIRROR","features":[395]},{"name":"D2D1_BORDER_EDGE_MODE_WRAP","features":[395]},{"name":"D2D1_BORDER_PROP","features":[395]},{"name":"D2D1_BORDER_PROP_EDGE_MODE_X","features":[395]},{"name":"D2D1_BORDER_PROP_EDGE_MODE_Y","features":[395]},{"name":"D2D1_BRIGHTNESS_PROP","features":[395]},{"name":"D2D1_BRIGHTNESS_PROP_BLACK_POINT","features":[395]},{"name":"D2D1_BRIGHTNESS_PROP_WHITE_POINT","features":[395]},{"name":"D2D1_BRUSH_PROPERTIES","features":[68,395]},{"name":"D2D1_BUFFER_PRECISION","features":[395]},{"name":"D2D1_BUFFER_PRECISION_16BPC_FLOAT","features":[395]},{"name":"D2D1_BUFFER_PRECISION_16BPC_UNORM","features":[395]},{"name":"D2D1_BUFFER_PRECISION_32BPC_FLOAT","features":[395]},{"name":"D2D1_BUFFER_PRECISION_8BPC_UNORM","features":[395]},{"name":"D2D1_BUFFER_PRECISION_8BPC_UNORM_SRGB","features":[395]},{"name":"D2D1_BUFFER_PRECISION_UNKNOWN","features":[395]},{"name":"D2D1_CAP_STYLE","features":[395]},{"name":"D2D1_CAP_STYLE_FLAT","features":[395]},{"name":"D2D1_CAP_STYLE_ROUND","features":[395]},{"name":"D2D1_CAP_STYLE_SQUARE","features":[395]},{"name":"D2D1_CAP_STYLE_TRIANGLE","features":[395]},{"name":"D2D1_CHANGE_TYPE","features":[395]},{"name":"D2D1_CHANGE_TYPE_CONTEXT","features":[395]},{"name":"D2D1_CHANGE_TYPE_GRAPH","features":[395]},{"name":"D2D1_CHANGE_TYPE_NONE","features":[395]},{"name":"D2D1_CHANGE_TYPE_PROPERTIES","features":[395]},{"name":"D2D1_CHANNEL_DEPTH","features":[395]},{"name":"D2D1_CHANNEL_DEPTH_1","features":[395]},{"name":"D2D1_CHANNEL_DEPTH_4","features":[395]},{"name":"D2D1_CHANNEL_DEPTH_DEFAULT","features":[395]},{"name":"D2D1_CHANNEL_SELECTOR","features":[395]},{"name":"D2D1_CHANNEL_SELECTOR_A","features":[395]},{"name":"D2D1_CHANNEL_SELECTOR_B","features":[395]},{"name":"D2D1_CHANNEL_SELECTOR_G","features":[395]},{"name":"D2D1_CHANNEL_SELECTOR_R","features":[395]},{"name":"D2D1_CHROMAKEY_PROP","features":[395]},{"name":"D2D1_CHROMAKEY_PROP_COLOR","features":[395]},{"name":"D2D1_CHROMAKEY_PROP_FEATHER","features":[395]},{"name":"D2D1_CHROMAKEY_PROP_INVERT_ALPHA","features":[395]},{"name":"D2D1_CHROMAKEY_PROP_TOLERANCE","features":[395]},{"name":"D2D1_COLORMANAGEMENT_ALPHA_MODE","features":[395]},{"name":"D2D1_COLORMANAGEMENT_ALPHA_MODE_PREMULTIPLIED","features":[395]},{"name":"D2D1_COLORMANAGEMENT_ALPHA_MODE_STRAIGHT","features":[395]},{"name":"D2D1_COLORMANAGEMENT_PROP","features":[395]},{"name":"D2D1_COLORMANAGEMENT_PROP_ALPHA_MODE","features":[395]},{"name":"D2D1_COLORMANAGEMENT_PROP_DESTINATION_COLOR_CONTEXT","features":[395]},{"name":"D2D1_COLORMANAGEMENT_PROP_DESTINATION_RENDERING_INTENT","features":[395]},{"name":"D2D1_COLORMANAGEMENT_PROP_QUALITY","features":[395]},{"name":"D2D1_COLORMANAGEMENT_PROP_SOURCE_COLOR_CONTEXT","features":[395]},{"name":"D2D1_COLORMANAGEMENT_PROP_SOURCE_RENDERING_INTENT","features":[395]},{"name":"D2D1_COLORMANAGEMENT_QUALITY","features":[395]},{"name":"D2D1_COLORMANAGEMENT_QUALITY_BEST","features":[395]},{"name":"D2D1_COLORMANAGEMENT_QUALITY_NORMAL","features":[395]},{"name":"D2D1_COLORMANAGEMENT_QUALITY_PROOF","features":[395]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT","features":[395]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_ABSOLUTE_COLORIMETRIC","features":[395]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_PERCEPTUAL","features":[395]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_RELATIVE_COLORIMETRIC","features":[395]},{"name":"D2D1_COLORMANAGEMENT_RENDERING_INTENT_SATURATION","features":[395]},{"name":"D2D1_COLORMATRIX_PROP","features":[395]},{"name":"D2D1_COLORMATRIX_PROP_ALPHA_MODE","features":[395]},{"name":"D2D1_COLORMATRIX_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_COLORMATRIX_PROP_COLOR_MATRIX","features":[395]},{"name":"D2D1_COLOR_BITMAP_GLYPH_SNAP_OPTION","features":[395]},{"name":"D2D1_COLOR_BITMAP_GLYPH_SNAP_OPTION_DEFAULT","features":[395]},{"name":"D2D1_COLOR_BITMAP_GLYPH_SNAP_OPTION_DISABLE","features":[395]},{"name":"D2D1_COLOR_CONTEXT_TYPE","features":[395]},{"name":"D2D1_COLOR_CONTEXT_TYPE_DXGI","features":[395]},{"name":"D2D1_COLOR_CONTEXT_TYPE_ICC","features":[395]},{"name":"D2D1_COLOR_CONTEXT_TYPE_SIMPLE","features":[395]},{"name":"D2D1_COLOR_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_COLOR_INTERPOLATION_MODE_PREMULTIPLIED","features":[395]},{"name":"D2D1_COLOR_INTERPOLATION_MODE_STRAIGHT","features":[395]},{"name":"D2D1_COLOR_SPACE","features":[395]},{"name":"D2D1_COLOR_SPACE_CUSTOM","features":[395]},{"name":"D2D1_COLOR_SPACE_SCRGB","features":[395]},{"name":"D2D1_COLOR_SPACE_SRGB","features":[395]},{"name":"D2D1_COMBINE_MODE","features":[395]},{"name":"D2D1_COMBINE_MODE_EXCLUDE","features":[395]},{"name":"D2D1_COMBINE_MODE_INTERSECT","features":[395]},{"name":"D2D1_COMBINE_MODE_UNION","features":[395]},{"name":"D2D1_COMBINE_MODE_XOR","features":[395]},{"name":"D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS","features":[395]},{"name":"D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_GDI_COMPATIBLE","features":[395]},{"name":"D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE","features":[395]},{"name":"D2D1_COMPOSITE_PROP","features":[395]},{"name":"D2D1_COMPOSITE_PROP_MODE","features":[395]},{"name":"D2D1_CONTRAST_PROP","features":[395]},{"name":"D2D1_CONTRAST_PROP_CLAMP_INPUT","features":[395]},{"name":"D2D1_CONTRAST_PROP_CONTRAST","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_BIAS","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_DIVISOR","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_MATRIX","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_OFFSET","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_SIZE_X","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_SIZE_Y","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_KERNEL_UNIT_LENGTH","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_PRESERVE_ALPHA","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_CONVOLVEMATRIX_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_CREATION_PROPERTIES","features":[395]},{"name":"D2D1_CROP_PROP","features":[395]},{"name":"D2D1_CROP_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_CROP_PROP_RECT","features":[395]},{"name":"D2D1_CROSSFADE_PROP","features":[395]},{"name":"D2D1_CROSSFADE_PROP_WEIGHT","features":[395]},{"name":"D2D1_CUSTOM_VERTEX_BUFFER_PROPERTIES","features":[395,393]},{"name":"D2D1_DASH_STYLE","features":[395]},{"name":"D2D1_DASH_STYLE_CUSTOM","features":[395]},{"name":"D2D1_DASH_STYLE_DASH","features":[395]},{"name":"D2D1_DASH_STYLE_DASH_DOT","features":[395]},{"name":"D2D1_DASH_STYLE_DASH_DOT_DOT","features":[395]},{"name":"D2D1_DASH_STYLE_DOT","features":[395]},{"name":"D2D1_DASH_STYLE_SOLID","features":[395]},{"name":"D2D1_DC_INITIALIZE_MODE","features":[395]},{"name":"D2D1_DC_INITIALIZE_MODE_CLEAR","features":[395]},{"name":"D2D1_DC_INITIALIZE_MODE_COPY","features":[395]},{"name":"D2D1_DEBUG_LEVEL","features":[395]},{"name":"D2D1_DEBUG_LEVEL_ERROR","features":[395]},{"name":"D2D1_DEBUG_LEVEL_INFORMATION","features":[395]},{"name":"D2D1_DEBUG_LEVEL_NONE","features":[395]},{"name":"D2D1_DEBUG_LEVEL_WARNING","features":[395]},{"name":"D2D1_DEFAULT_FLATTENING_TOLERANCE","features":[395]},{"name":"D2D1_DEVICE_CONTEXT_OPTIONS","features":[395]},{"name":"D2D1_DEVICE_CONTEXT_OPTIONS_ENABLE_MULTITHREADED_OPTIMIZATIONS","features":[395]},{"name":"D2D1_DEVICE_CONTEXT_OPTIONS_NONE","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION_BALANCED","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION_QUALITY","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_OPTIMIZATION_SPEED","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_PROP","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_PROP_ANGLE","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_PROP_OPTIMIZATION","features":[395]},{"name":"D2D1_DIRECTIONALBLUR_PROP_STANDARD_DEVIATION","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_ALPHA_DISABLE","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_ALPHA_TABLE","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_BLUE_DISABLE","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_BLUE_TABLE","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_GREEN_DISABLE","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_GREEN_TABLE","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_RED_DISABLE","features":[395]},{"name":"D2D1_DISCRETETRANSFER_PROP_RED_TABLE","features":[395]},{"name":"D2D1_DISPLACEMENTMAP_PROP","features":[395]},{"name":"D2D1_DISPLACEMENTMAP_PROP_SCALE","features":[395]},{"name":"D2D1_DISPLACEMENTMAP_PROP_X_CHANNEL_SELECT","features":[395]},{"name":"D2D1_DISPLACEMENTMAP_PROP_Y_CHANNEL_SELECT","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP_AZIMUTH","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP_COLOR","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP_DIFFUSE_CONSTANT","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP_ELEVATION","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP_KERNEL_UNIT_LENGTH","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_PROP_SURFACE_SCALE","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_DISTANTDIFFUSE_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_AZIMUTH","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_COLOR","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_ELEVATION","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_KERNEL_UNIT_LENGTH","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_SPECULAR_CONSTANT","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_SPECULAR_EXPONENT","features":[395]},{"name":"D2D1_DISTANTSPECULAR_PROP_SURFACE_SCALE","features":[395]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE","features":[395]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_DISTANTSPECULAR_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_CUBIC","features":[395]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_DPICOMPENSATION_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_DPICOMPENSATION_PROP","features":[395]},{"name":"D2D1_DPICOMPENSATION_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_DPICOMPENSATION_PROP_INPUT_DPI","features":[395]},{"name":"D2D1_DPICOMPENSATION_PROP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_DRAWING_STATE_DESCRIPTION","features":[68,395]},{"name":"D2D1_DRAWING_STATE_DESCRIPTION1","features":[68,395]},{"name":"D2D1_DRAW_TEXT_OPTIONS","features":[395]},{"name":"D2D1_DRAW_TEXT_OPTIONS_CLIP","features":[395]},{"name":"D2D1_DRAW_TEXT_OPTIONS_DISABLE_COLOR_BITMAP_SNAPPING","features":[395]},{"name":"D2D1_DRAW_TEXT_OPTIONS_ENABLE_COLOR_FONT","features":[395]},{"name":"D2D1_DRAW_TEXT_OPTIONS_NONE","features":[395]},{"name":"D2D1_DRAW_TEXT_OPTIONS_NO_SNAP","features":[395]},{"name":"D2D1_EDGEDETECTION_MODE","features":[395]},{"name":"D2D1_EDGEDETECTION_MODE_PREWITT","features":[395]},{"name":"D2D1_EDGEDETECTION_MODE_SOBEL","features":[395]},{"name":"D2D1_EDGEDETECTION_PROP","features":[395]},{"name":"D2D1_EDGEDETECTION_PROP_ALPHA_MODE","features":[395]},{"name":"D2D1_EDGEDETECTION_PROP_BLUR_RADIUS","features":[395]},{"name":"D2D1_EDGEDETECTION_PROP_MODE","features":[395]},{"name":"D2D1_EDGEDETECTION_PROP_OVERLAY_EDGES","features":[395]},{"name":"D2D1_EDGEDETECTION_PROP_STRENGTH","features":[395]},{"name":"D2D1_EFFECT_INPUT_DESCRIPTION","features":[396]},{"name":"D2D1_ELLIPSE","features":[396]},{"name":"D2D1_EMBOSS_PROP","features":[395]},{"name":"D2D1_EMBOSS_PROP_DIRECTION","features":[395]},{"name":"D2D1_EMBOSS_PROP_HEIGHT","features":[395]},{"name":"D2D1_EXPOSURE_PROP","features":[395]},{"name":"D2D1_EXPOSURE_PROP_EXPOSURE_VALUE","features":[395]},{"name":"D2D1_EXTEND_MODE","features":[395]},{"name":"D2D1_EXTEND_MODE_CLAMP","features":[395]},{"name":"D2D1_EXTEND_MODE_MIRROR","features":[395]},{"name":"D2D1_EXTEND_MODE_WRAP","features":[395]},{"name":"D2D1_FACTORY_OPTIONS","features":[395]},{"name":"D2D1_FACTORY_TYPE","features":[395]},{"name":"D2D1_FACTORY_TYPE_MULTI_THREADED","features":[395]},{"name":"D2D1_FACTORY_TYPE_SINGLE_THREADED","features":[395]},{"name":"D2D1_FEATURE","features":[395]},{"name":"D2D1_FEATURE_D3D10_X_HARDWARE_OPTIONS","features":[395]},{"name":"D2D1_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS","features":[305,395]},{"name":"D2D1_FEATURE_DATA_DOUBLES","features":[305,395]},{"name":"D2D1_FEATURE_DOUBLES","features":[395]},{"name":"D2D1_FEATURE_LEVEL","features":[395]},{"name":"D2D1_FEATURE_LEVEL_10","features":[395]},{"name":"D2D1_FEATURE_LEVEL_9","features":[395]},{"name":"D2D1_FEATURE_LEVEL_DEFAULT","features":[395]},{"name":"D2D1_FILTER","features":[395]},{"name":"D2D1_FILTER_ANISOTROPIC","features":[395]},{"name":"D2D1_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[395]},{"name":"D2D1_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[395]},{"name":"D2D1_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[395]},{"name":"D2D1_FILTER_MIN_MAG_MIP_LINEAR","features":[395]},{"name":"D2D1_FILTER_MIN_MAG_MIP_POINT","features":[395]},{"name":"D2D1_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[395]},{"name":"D2D1_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[395]},{"name":"D2D1_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[395]},{"name":"D2D1_FLOOD_PROP","features":[395]},{"name":"D2D1_FLOOD_PROP_COLOR","features":[395]},{"name":"D2D1_GAMMA","features":[395]},{"name":"D2D1_GAMMA1","features":[395]},{"name":"D2D1_GAMMA1_G10","features":[395]},{"name":"D2D1_GAMMA1_G2084","features":[395]},{"name":"D2D1_GAMMA1_G22","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_AMPLITUDE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_DISABLE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_EXPONENT","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_ALPHA_OFFSET","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_AMPLITUDE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_DISABLE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_EXPONENT","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_BLUE_OFFSET","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_AMPLITUDE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_DISABLE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_EXPONENT","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_GREEN_OFFSET","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_AMPLITUDE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_DISABLE","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_EXPONENT","features":[395]},{"name":"D2D1_GAMMATRANSFER_PROP_RED_OFFSET","features":[395]},{"name":"D2D1_GAMMA_1_0","features":[395]},{"name":"D2D1_GAMMA_2_2","features":[395]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION","features":[395]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION_BALANCED","features":[395]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION_QUALITY","features":[395]},{"name":"D2D1_GAUSSIANBLUR_OPTIMIZATION_SPEED","features":[395]},{"name":"D2D1_GAUSSIANBLUR_PROP","features":[395]},{"name":"D2D1_GAUSSIANBLUR_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_GAUSSIANBLUR_PROP_OPTIMIZATION","features":[395]},{"name":"D2D1_GAUSSIANBLUR_PROP_STANDARD_DEVIATION","features":[395]},{"name":"D2D1_GEOMETRY_RELATION","features":[395]},{"name":"D2D1_GEOMETRY_RELATION_CONTAINS","features":[395]},{"name":"D2D1_GEOMETRY_RELATION_DISJOINT","features":[395]},{"name":"D2D1_GEOMETRY_RELATION_IS_CONTAINED","features":[395]},{"name":"D2D1_GEOMETRY_RELATION_OVERLAP","features":[395]},{"name":"D2D1_GEOMETRY_RELATION_UNKNOWN","features":[395]},{"name":"D2D1_GEOMETRY_SIMPLIFICATION_OPTION","features":[395]},{"name":"D2D1_GEOMETRY_SIMPLIFICATION_OPTION_CUBICS_AND_LINES","features":[395]},{"name":"D2D1_GEOMETRY_SIMPLIFICATION_OPTION_LINES","features":[395]},{"name":"D2D1_GRADIENT_MESH_PATCH","features":[396]},{"name":"D2D1_HDRTONEMAP_DISPLAY_MODE","features":[395]},{"name":"D2D1_HDRTONEMAP_DISPLAY_MODE_HDR","features":[395]},{"name":"D2D1_HDRTONEMAP_DISPLAY_MODE_SDR","features":[395]},{"name":"D2D1_HDRTONEMAP_PROP","features":[395]},{"name":"D2D1_HDRTONEMAP_PROP_DISPLAY_MODE","features":[395]},{"name":"D2D1_HDRTONEMAP_PROP_INPUT_MAX_LUMINANCE","features":[395]},{"name":"D2D1_HDRTONEMAP_PROP_OUTPUT_MAX_LUMINANCE","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_INPUT_GAMMA","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_INPUT_GAMMA_LINEAR","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_INPUT_GAMMA_SRGB","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_CLARITY","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_HIGHLIGHTS","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_INPUT_GAMMA","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_MASK_BLUR_RADIUS","features":[395]},{"name":"D2D1_HIGHLIGHTSANDSHADOWS_PROP_SHADOWS","features":[395]},{"name":"D2D1_HISTOGRAM_PROP","features":[395]},{"name":"D2D1_HISTOGRAM_PROP_CHANNEL_SELECT","features":[395]},{"name":"D2D1_HISTOGRAM_PROP_HISTOGRAM_OUTPUT","features":[395]},{"name":"D2D1_HISTOGRAM_PROP_NUM_BINS","features":[395]},{"name":"D2D1_HUEROTATION_PROP","features":[395]},{"name":"D2D1_HUEROTATION_PROP_ANGLE","features":[395]},{"name":"D2D1_HUETORGB_INPUT_COLOR_SPACE","features":[395]},{"name":"D2D1_HUETORGB_INPUT_COLOR_SPACE_HUE_SATURATION_LIGHTNESS","features":[395]},{"name":"D2D1_HUETORGB_INPUT_COLOR_SPACE_HUE_SATURATION_VALUE","features":[395]},{"name":"D2D1_HUETORGB_PROP","features":[395]},{"name":"D2D1_HUETORGB_PROP_INPUT_COLOR_SPACE","features":[395]},{"name":"D2D1_HWND_RENDER_TARGET_PROPERTIES","features":[305,396]},{"name":"D2D1_IMAGE_BRUSH_PROPERTIES","features":[396]},{"name":"D2D1_IMAGE_SOURCE_FROM_DXGI_OPTIONS","features":[395]},{"name":"D2D1_IMAGE_SOURCE_FROM_DXGI_OPTIONS_LOW_QUALITY_PRIMARY_CONVERSION","features":[395]},{"name":"D2D1_IMAGE_SOURCE_FROM_DXGI_OPTIONS_NONE","features":[395]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS","features":[395]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS_CACHE_ON_DEMAND","features":[395]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS_NONE","features":[395]},{"name":"D2D1_IMAGE_SOURCE_LOADING_OPTIONS_RELEASE_SOURCE","features":[395]},{"name":"D2D1_INK_BEZIER_SEGMENT","features":[395]},{"name":"D2D1_INK_NIB_SHAPE","features":[395]},{"name":"D2D1_INK_NIB_SHAPE_ROUND","features":[395]},{"name":"D2D1_INK_NIB_SHAPE_SQUARE","features":[395]},{"name":"D2D1_INK_POINT","features":[395]},{"name":"D2D1_INK_STYLE_PROPERTIES","features":[68,395]},{"name":"D2D1_INPUT_DESCRIPTION","features":[395]},{"name":"D2D1_INPUT_ELEMENT_DESC","features":[395,393]},{"name":"D2D1_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_CUBIC","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_ANISOTROPIC","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_CUBIC","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_FANT","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_LINEAR","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_MIPMAP_LINEAR","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_DEFINITION_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_LAYER_OPTIONS","features":[395]},{"name":"D2D1_LAYER_OPTIONS1","features":[395]},{"name":"D2D1_LAYER_OPTIONS1_IGNORE_ALPHA","features":[395]},{"name":"D2D1_LAYER_OPTIONS1_INITIALIZE_FROM_BACKGROUND","features":[395]},{"name":"D2D1_LAYER_OPTIONS1_NONE","features":[395]},{"name":"D2D1_LAYER_OPTIONS_INITIALIZE_FOR_CLEARTYPE","features":[395]},{"name":"D2D1_LAYER_OPTIONS_NONE","features":[395]},{"name":"D2D1_LAYER_PARAMETERS","features":[68,396]},{"name":"D2D1_LAYER_PARAMETERS1","features":[68,396]},{"name":"D2D1_LINEARTRANSFER_PROP","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_ALPHA_DISABLE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_ALPHA_SLOPE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_ALPHA_Y_INTERCEPT","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_BLUE_DISABLE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_BLUE_SLOPE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_BLUE_Y_INTERCEPT","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_GREEN_DISABLE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_GREEN_SLOPE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_GREEN_Y_INTERCEPT","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_RED_DISABLE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_RED_SLOPE","features":[395]},{"name":"D2D1_LINEARTRANSFER_PROP_RED_Y_INTERCEPT","features":[395]},{"name":"D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES","features":[396]},{"name":"D2D1_LINE_JOIN","features":[395]},{"name":"D2D1_LINE_JOIN_BEVEL","features":[395]},{"name":"D2D1_LINE_JOIN_MITER","features":[395]},{"name":"D2D1_LINE_JOIN_MITER_OR_BEVEL","features":[395]},{"name":"D2D1_LINE_JOIN_ROUND","features":[395]},{"name":"D2D1_LOOKUPTABLE3D_PROP","features":[395]},{"name":"D2D1_LOOKUPTABLE3D_PROP_ALPHA_MODE","features":[395]},{"name":"D2D1_LOOKUPTABLE3D_PROP_LUT","features":[395]},{"name":"D2D1_MAPPED_RECT","features":[395]},{"name":"D2D1_MAP_OPTIONS","features":[395]},{"name":"D2D1_MAP_OPTIONS_DISCARD","features":[395]},{"name":"D2D1_MAP_OPTIONS_NONE","features":[395]},{"name":"D2D1_MAP_OPTIONS_READ","features":[395]},{"name":"D2D1_MAP_OPTIONS_WRITE","features":[395]},{"name":"D2D1_MORPHOLOGY_MODE","features":[395]},{"name":"D2D1_MORPHOLOGY_MODE_DILATE","features":[395]},{"name":"D2D1_MORPHOLOGY_MODE_ERODE","features":[395]},{"name":"D2D1_MORPHOLOGY_PROP","features":[395]},{"name":"D2D1_MORPHOLOGY_PROP_HEIGHT","features":[395]},{"name":"D2D1_MORPHOLOGY_PROP_MODE","features":[395]},{"name":"D2D1_MORPHOLOGY_PROP_WIDTH","features":[395]},{"name":"D2D1_OPACITYMETADATA_PROP","features":[395]},{"name":"D2D1_OPACITYMETADATA_PROP_INPUT_OPAQUE_RECT","features":[395]},{"name":"D2D1_OPACITY_MASK_CONTENT","features":[395]},{"name":"D2D1_OPACITY_MASK_CONTENT_GRAPHICS","features":[395]},{"name":"D2D1_OPACITY_MASK_CONTENT_TEXT_GDI_COMPATIBLE","features":[395]},{"name":"D2D1_OPACITY_MASK_CONTENT_TEXT_NATURAL","features":[395]},{"name":"D2D1_OPACITY_PROP","features":[395]},{"name":"D2D1_OPACITY_PROP_OPACITY","features":[395]},{"name":"D2D1_ORIENTATION","features":[395]},{"name":"D2D1_ORIENTATION_DEFAULT","features":[395]},{"name":"D2D1_ORIENTATION_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE180","features":[395]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE180_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE270","features":[395]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE270_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE90","features":[395]},{"name":"D2D1_ORIENTATION_ROTATE_CLOCKWISE90_FLIP_HORIZONTAL","features":[395]},{"name":"D2D1_PATCH_EDGE_MODE","features":[395]},{"name":"D2D1_PATCH_EDGE_MODE_ALIASED","features":[395]},{"name":"D2D1_PATCH_EDGE_MODE_ALIASED_INFLATED","features":[395]},{"name":"D2D1_PATCH_EDGE_MODE_ANTIALIASED","features":[395]},{"name":"D2D1_PIXEL_OPTIONS","features":[395]},{"name":"D2D1_PIXEL_OPTIONS_NONE","features":[395]},{"name":"D2D1_PIXEL_OPTIONS_TRIVIAL_SAMPLING","features":[395]},{"name":"D2D1_POINTDIFFUSE_PROP","features":[395]},{"name":"D2D1_POINTDIFFUSE_PROP_COLOR","features":[395]},{"name":"D2D1_POINTDIFFUSE_PROP_DIFFUSE_CONSTANT","features":[395]},{"name":"D2D1_POINTDIFFUSE_PROP_KERNEL_UNIT_LENGTH","features":[395]},{"name":"D2D1_POINTDIFFUSE_PROP_LIGHT_POSITION","features":[395]},{"name":"D2D1_POINTDIFFUSE_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_POINTDIFFUSE_PROP_SURFACE_SCALE","features":[395]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE","features":[395]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_POINTDIFFUSE_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP_COLOR","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP_KERNEL_UNIT_LENGTH","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP_LIGHT_POSITION","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP_SPECULAR_CONSTANT","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP_SPECULAR_EXPONENT","features":[395]},{"name":"D2D1_POINTSPECULAR_PROP_SURFACE_SCALE","features":[395]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE","features":[395]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_POINTSPECULAR_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_POINT_DESCRIPTION","features":[396]},{"name":"D2D1_POSTERIZE_PROP","features":[395]},{"name":"D2D1_POSTERIZE_PROP_BLUE_VALUE_COUNT","features":[395]},{"name":"D2D1_POSTERIZE_PROP_GREEN_VALUE_COUNT","features":[395]},{"name":"D2D1_POSTERIZE_PROP_RED_VALUE_COUNT","features":[395]},{"name":"D2D1_PRESENT_OPTIONS","features":[395]},{"name":"D2D1_PRESENT_OPTIONS_IMMEDIATELY","features":[395]},{"name":"D2D1_PRESENT_OPTIONS_NONE","features":[395]},{"name":"D2D1_PRESENT_OPTIONS_RETAIN_CONTENTS","features":[395]},{"name":"D2D1_PRIMITIVE_BLEND","features":[395]},{"name":"D2D1_PRIMITIVE_BLEND_ADD","features":[395]},{"name":"D2D1_PRIMITIVE_BLEND_COPY","features":[395]},{"name":"D2D1_PRIMITIVE_BLEND_MAX","features":[395]},{"name":"D2D1_PRIMITIVE_BLEND_MIN","features":[395]},{"name":"D2D1_PRIMITIVE_BLEND_SOURCE_OVER","features":[395]},{"name":"D2D1_PRINT_CONTROL_PROPERTIES","features":[395]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE","features":[395]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE_DEFAULT","features":[395]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE_EACHPAGE","features":[395]},{"name":"D2D1_PRINT_FONT_SUBSET_MODE_NONE","features":[395]},{"name":"D2D1_PROPERTY","features":[395]},{"name":"D2D1_PROPERTY_AUTHOR","features":[395]},{"name":"D2D1_PROPERTY_BINDING","features":[395]},{"name":"D2D1_PROPERTY_CACHED","features":[395]},{"name":"D2D1_PROPERTY_CATEGORY","features":[395]},{"name":"D2D1_PROPERTY_CLSID","features":[395]},{"name":"D2D1_PROPERTY_DESCRIPTION","features":[395]},{"name":"D2D1_PROPERTY_DISPLAYNAME","features":[395]},{"name":"D2D1_PROPERTY_INPUTS","features":[395]},{"name":"D2D1_PROPERTY_MAX_INPUTS","features":[395]},{"name":"D2D1_PROPERTY_MIN_INPUTS","features":[395]},{"name":"D2D1_PROPERTY_PRECISION","features":[395]},{"name":"D2D1_PROPERTY_TYPE","features":[395]},{"name":"D2D1_PROPERTY_TYPE_ARRAY","features":[395]},{"name":"D2D1_PROPERTY_TYPE_BLOB","features":[395]},{"name":"D2D1_PROPERTY_TYPE_BOOL","features":[395]},{"name":"D2D1_PROPERTY_TYPE_CLSID","features":[395]},{"name":"D2D1_PROPERTY_TYPE_COLOR_CONTEXT","features":[395]},{"name":"D2D1_PROPERTY_TYPE_ENUM","features":[395]},{"name":"D2D1_PROPERTY_TYPE_FLOAT","features":[395]},{"name":"D2D1_PROPERTY_TYPE_INT32","features":[395]},{"name":"D2D1_PROPERTY_TYPE_IUNKNOWN","features":[395]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_3X2","features":[395]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_4X3","features":[395]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_4X4","features":[395]},{"name":"D2D1_PROPERTY_TYPE_MATRIX_5X4","features":[395]},{"name":"D2D1_PROPERTY_TYPE_STRING","features":[395]},{"name":"D2D1_PROPERTY_TYPE_UINT32","features":[395]},{"name":"D2D1_PROPERTY_TYPE_UNKNOWN","features":[395]},{"name":"D2D1_PROPERTY_TYPE_VECTOR2","features":[395]},{"name":"D2D1_PROPERTY_TYPE_VECTOR3","features":[395]},{"name":"D2D1_PROPERTY_TYPE_VECTOR4","features":[395]},{"name":"D2D1_QUADRATIC_BEZIER_SEGMENT","features":[396]},{"name":"D2D1_RADIAL_GRADIENT_BRUSH_PROPERTIES","features":[396]},{"name":"D2D1_RENDERING_CONTROLS","features":[396]},{"name":"D2D1_RENDERING_PRIORITY","features":[395]},{"name":"D2D1_RENDERING_PRIORITY_LOW","features":[395]},{"name":"D2D1_RENDERING_PRIORITY_NORMAL","features":[395]},{"name":"D2D1_RENDER_TARGET_PROPERTIES","features":[396,393]},{"name":"D2D1_RENDER_TARGET_TYPE","features":[395]},{"name":"D2D1_RENDER_TARGET_TYPE_DEFAULT","features":[395]},{"name":"D2D1_RENDER_TARGET_TYPE_HARDWARE","features":[395]},{"name":"D2D1_RENDER_TARGET_TYPE_SOFTWARE","features":[395]},{"name":"D2D1_RENDER_TARGET_USAGE","features":[395]},{"name":"D2D1_RENDER_TARGET_USAGE_FORCE_BITMAP_REMOTING","features":[395]},{"name":"D2D1_RENDER_TARGET_USAGE_GDI_COMPATIBLE","features":[395]},{"name":"D2D1_RENDER_TARGET_USAGE_NONE","features":[395]},{"name":"D2D1_RESOURCE_TEXTURE_PROPERTIES","features":[395]},{"name":"D2D1_RGBTOHUE_OUTPUT_COLOR_SPACE","features":[395]},{"name":"D2D1_RGBTOHUE_OUTPUT_COLOR_SPACE_HUE_SATURATION_LIGHTNESS","features":[395]},{"name":"D2D1_RGBTOHUE_OUTPUT_COLOR_SPACE_HUE_SATURATION_VALUE","features":[395]},{"name":"D2D1_RGBTOHUE_PROP","features":[395]},{"name":"D2D1_RGBTOHUE_PROP_OUTPUT_COLOR_SPACE","features":[395]},{"name":"D2D1_ROUNDED_RECT","features":[396]},{"name":"D2D1_SATURATION_PROP","features":[395]},{"name":"D2D1_SATURATION_PROP_SATURATION","features":[395]},{"name":"D2D1_SCALE_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_CUBIC","features":[395]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_SCALE_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_SCALE_PROP","features":[395]},{"name":"D2D1_SCALE_PROP_BORDER_MODE","features":[395]},{"name":"D2D1_SCALE_PROP_CENTER_POINT","features":[395]},{"name":"D2D1_SCALE_PROP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_SCALE_PROP_SCALE","features":[395]},{"name":"D2D1_SCALE_PROP_SHARPNESS","features":[395]},{"name":"D2D1_SCENE_REFERRED_SDR_WHITE_LEVEL","features":[395]},{"name":"D2D1_SEPIA_PROP","features":[395]},{"name":"D2D1_SEPIA_PROP_ALPHA_MODE","features":[395]},{"name":"D2D1_SEPIA_PROP_INTENSITY","features":[395]},{"name":"D2D1_SHADOW_OPTIMIZATION","features":[395]},{"name":"D2D1_SHADOW_OPTIMIZATION_BALANCED","features":[395]},{"name":"D2D1_SHADOW_OPTIMIZATION_QUALITY","features":[395]},{"name":"D2D1_SHADOW_OPTIMIZATION_SPEED","features":[395]},{"name":"D2D1_SHADOW_PROP","features":[395]},{"name":"D2D1_SHADOW_PROP_BLUR_STANDARD_DEVIATION","features":[395]},{"name":"D2D1_SHADOW_PROP_COLOR","features":[395]},{"name":"D2D1_SHADOW_PROP_OPTIMIZATION","features":[395]},{"name":"D2D1_SHARPEN_PROP","features":[395]},{"name":"D2D1_SHARPEN_PROP_SHARPNESS","features":[395]},{"name":"D2D1_SHARPEN_PROP_THRESHOLD","features":[395]},{"name":"D2D1_SIMPLE_COLOR_PROFILE","features":[396]},{"name":"D2D1_SPOTDIFFUSE_PROP","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_COLOR","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_DIFFUSE_CONSTANT","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_FOCUS","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_KERNEL_UNIT_LENGTH","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_LIGHT_POSITION","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_LIMITING_CONE_ANGLE","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_POINTS_AT","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_SPOTDIFFUSE_PROP_SURFACE_SCALE","features":[395]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE","features":[395]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_SPOTDIFFUSE_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_COLOR","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_FOCUS","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_KERNEL_UNIT_LENGTH","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_LIGHT_POSITION","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_LIMITING_CONE_ANGLE","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_POINTS_AT","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_SPECULAR_CONSTANT","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_SPECULAR_EXPONENT","features":[395]},{"name":"D2D1_SPOTSPECULAR_PROP_SURFACE_SCALE","features":[395]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE","features":[395]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_SPOTSPECULAR_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_SPRITE_OPTIONS","features":[395]},{"name":"D2D1_SPRITE_OPTIONS_CLAMP_TO_SOURCE_RECTANGLE","features":[395]},{"name":"D2D1_SPRITE_OPTIONS_NONE","features":[395]},{"name":"D2D1_STRAIGHTEN_PROP","features":[395]},{"name":"D2D1_STRAIGHTEN_PROP_ANGLE","features":[395]},{"name":"D2D1_STRAIGHTEN_PROP_MAINTAIN_SIZE","features":[395]},{"name":"D2D1_STRAIGHTEN_PROP_SCALE_MODE","features":[395]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE","features":[395]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_CUBIC","features":[395]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_LINEAR","features":[395]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_STRAIGHTEN_SCALE_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_STROKE_STYLE_PROPERTIES","features":[395]},{"name":"D2D1_STROKE_STYLE_PROPERTIES1","features":[395]},{"name":"D2D1_STROKE_TRANSFORM_TYPE","features":[395]},{"name":"D2D1_STROKE_TRANSFORM_TYPE_FIXED","features":[395]},{"name":"D2D1_STROKE_TRANSFORM_TYPE_HAIRLINE","features":[395]},{"name":"D2D1_STROKE_TRANSFORM_TYPE_NORMAL","features":[395]},{"name":"D2D1_SUBPROPERTY","features":[395]},{"name":"D2D1_SUBPROPERTY_DEFAULT","features":[395]},{"name":"D2D1_SUBPROPERTY_DISPLAYNAME","features":[395]},{"name":"D2D1_SUBPROPERTY_FIELDS","features":[395]},{"name":"D2D1_SUBPROPERTY_INDEX","features":[395]},{"name":"D2D1_SUBPROPERTY_ISREADONLY","features":[395]},{"name":"D2D1_SUBPROPERTY_MAX","features":[395]},{"name":"D2D1_SUBPROPERTY_MIN","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_NONE","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MAX_Y_MAX","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MAX_Y_MID","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MAX_Y_MIN","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MID_Y_MAX","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MID_Y_MID","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MID_Y_MIN","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MIN_Y_MAX","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MIN_Y_MID","features":[395]},{"name":"D2D1_SVG_ASPECT_ALIGN_X_MIN_Y_MIN","features":[395]},{"name":"D2D1_SVG_ASPECT_SCALING","features":[395]},{"name":"D2D1_SVG_ASPECT_SCALING_MEET","features":[395]},{"name":"D2D1_SVG_ASPECT_SCALING_SLICE","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_COLOR","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_DISPLAY","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_EXTEND_MODE","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_FILL_MODE","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_FLOAT","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_LENGTH","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_LINE_CAP","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_LINE_JOIN","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_MATRIX","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_OVERFLOW","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_PRESERVE_ASPECT_RATIO","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_UNIT_TYPE","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_VIEWBOX","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_POD_TYPE_VISIBILITY","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_STRING_TYPE","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_STRING_TYPE_ID","features":[395]},{"name":"D2D1_SVG_ATTRIBUTE_STRING_TYPE_SVG","features":[395]},{"name":"D2D1_SVG_DISPLAY","features":[395]},{"name":"D2D1_SVG_DISPLAY_INLINE","features":[395]},{"name":"D2D1_SVG_DISPLAY_NONE","features":[395]},{"name":"D2D1_SVG_LENGTH","features":[395]},{"name":"D2D1_SVG_LENGTH_UNITS","features":[395]},{"name":"D2D1_SVG_LENGTH_UNITS_NUMBER","features":[395]},{"name":"D2D1_SVG_LENGTH_UNITS_PERCENTAGE","features":[395]},{"name":"D2D1_SVG_LINE_CAP","features":[395]},{"name":"D2D1_SVG_LINE_CAP_BUTT","features":[395]},{"name":"D2D1_SVG_LINE_CAP_ROUND","features":[395]},{"name":"D2D1_SVG_LINE_CAP_SQUARE","features":[395]},{"name":"D2D1_SVG_LINE_JOIN","features":[395]},{"name":"D2D1_SVG_LINE_JOIN_BEVEL","features":[395]},{"name":"D2D1_SVG_LINE_JOIN_MITER","features":[395]},{"name":"D2D1_SVG_LINE_JOIN_ROUND","features":[395]},{"name":"D2D1_SVG_OVERFLOW","features":[395]},{"name":"D2D1_SVG_OVERFLOW_HIDDEN","features":[395]},{"name":"D2D1_SVG_OVERFLOW_VISIBLE","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE_COLOR","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE_CURRENT_COLOR","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE_NONE","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE_URI","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE_URI_COLOR","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE_URI_CURRENT_COLOR","features":[395]},{"name":"D2D1_SVG_PAINT_TYPE_URI_NONE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_ARC_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_ARC_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_CLOSE_PATH","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_SMOOTH_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_CUBIC_SMOOTH_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_HORIZONTAL_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_HORIZONTAL_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_LINE_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_LINE_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_MOVE_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_MOVE_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_SMOOTH_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_QUADRADIC_SMOOTH_RELATIVE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_VERTICAL_ABSOLUTE","features":[395]},{"name":"D2D1_SVG_PATH_COMMAND_VERTICAL_RELATIVE","features":[395]},{"name":"D2D1_SVG_PRESERVE_ASPECT_RATIO","features":[305,395]},{"name":"D2D1_SVG_UNIT_TYPE","features":[395]},{"name":"D2D1_SVG_UNIT_TYPE_OBJECT_BOUNDING_BOX","features":[395]},{"name":"D2D1_SVG_UNIT_TYPE_USER_SPACE_ON_USE","features":[395]},{"name":"D2D1_SVG_VIEWBOX","features":[395]},{"name":"D2D1_SVG_VISIBILITY","features":[395]},{"name":"D2D1_SVG_VISIBILITY_HIDDEN","features":[395]},{"name":"D2D1_SVG_VISIBILITY_VISIBLE","features":[395]},{"name":"D2D1_SWEEP_DIRECTION","features":[395]},{"name":"D2D1_SWEEP_DIRECTION_CLOCKWISE","features":[395]},{"name":"D2D1_SWEEP_DIRECTION_COUNTER_CLOCKWISE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_ALPHA_DISABLE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_ALPHA_TABLE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_BLUE_DISABLE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_BLUE_TABLE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_GREEN_DISABLE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_GREEN_TABLE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_RED_DISABLE","features":[395]},{"name":"D2D1_TABLETRANSFER_PROP_RED_TABLE","features":[395]},{"name":"D2D1_TEMPERATUREANDTINT_PROP","features":[395]},{"name":"D2D1_TEMPERATUREANDTINT_PROP_TEMPERATURE","features":[395]},{"name":"D2D1_TEMPERATUREANDTINT_PROP_TINT","features":[395]},{"name":"D2D1_TEXT_ANTIALIAS_MODE","features":[395]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_ALIASED","features":[395]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_CLEARTYPE","features":[395]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_DEFAULT","features":[395]},{"name":"D2D1_TEXT_ANTIALIAS_MODE_GRAYSCALE","features":[395]},{"name":"D2D1_THREADING_MODE","features":[395]},{"name":"D2D1_THREADING_MODE_MULTI_THREADED","features":[395]},{"name":"D2D1_THREADING_MODE_SINGLE_THREADED","features":[395]},{"name":"D2D1_TILE_PROP","features":[395]},{"name":"D2D1_TILE_PROP_RECT","features":[395]},{"name":"D2D1_TINT_PROP","features":[395]},{"name":"D2D1_TINT_PROP_CLAMP_OUTPUT","features":[395]},{"name":"D2D1_TINT_PROP_COLOR","features":[395]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_OPTIONS","features":[395]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_OPTIONS_DISABLE_DPI_SCALE","features":[395]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_OPTIONS_NONE","features":[395]},{"name":"D2D1_TRANSFORMED_IMAGE_SOURCE_PROPERTIES","features":[395]},{"name":"D2D1_TRIANGLE","features":[396]},{"name":"D2D1_TURBULENCE_PROP","features":[395]},{"name":"D2D1_TURBULENCE_PROP_BASE_FREQUENCY","features":[395]},{"name":"D2D1_TURBULENCE_PROP_NOISE","features":[395]},{"name":"D2D1_TURBULENCE_PROP_NUM_OCTAVES","features":[395]},{"name":"D2D1_TURBULENCE_PROP_OFFSET","features":[395]},{"name":"D2D1_TURBULENCE_PROP_SEED","features":[395]},{"name":"D2D1_TURBULENCE_PROP_SIZE","features":[395]},{"name":"D2D1_TURBULENCE_PROP_STITCHABLE","features":[395]},{"name":"D2D1_UNIT_MODE","features":[395]},{"name":"D2D1_UNIT_MODE_DIPS","features":[395]},{"name":"D2D1_UNIT_MODE_PIXELS","features":[395]},{"name":"D2D1_VERTEX_BUFFER_PROPERTIES","features":[395]},{"name":"D2D1_VERTEX_OPTIONS","features":[395]},{"name":"D2D1_VERTEX_OPTIONS_ASSUME_NO_OVERLAP","features":[395]},{"name":"D2D1_VERTEX_OPTIONS_DO_NOT_CLEAR","features":[395]},{"name":"D2D1_VERTEX_OPTIONS_NONE","features":[395]},{"name":"D2D1_VERTEX_OPTIONS_USE_DEPTH_BUFFER","features":[395]},{"name":"D2D1_VERTEX_RANGE","features":[395]},{"name":"D2D1_VERTEX_USAGE","features":[395]},{"name":"D2D1_VERTEX_USAGE_DYNAMIC","features":[395]},{"name":"D2D1_VERTEX_USAGE_STATIC","features":[395]},{"name":"D2D1_VIGNETTE_PROP","features":[395]},{"name":"D2D1_VIGNETTE_PROP_COLOR","features":[395]},{"name":"D2D1_VIGNETTE_PROP_STRENGTH","features":[395]},{"name":"D2D1_VIGNETTE_PROP_TRANSITION_SIZE","features":[395]},{"name":"D2D1_WHITELEVELADJUSTMENT_PROP","features":[395]},{"name":"D2D1_WHITELEVELADJUSTMENT_PROP_INPUT_WHITE_LEVEL","features":[395]},{"name":"D2D1_WHITELEVELADJUSTMENT_PROP_OUTPUT_WHITE_LEVEL","features":[395]},{"name":"D2D1_WINDOW_STATE","features":[395]},{"name":"D2D1_WINDOW_STATE_NONE","features":[395]},{"name":"D2D1_WINDOW_STATE_OCCLUDED","features":[395]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING","features":[395]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_420","features":[395]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_422","features":[395]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_440","features":[395]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_444","features":[395]},{"name":"D2D1_YCBCR_CHROMA_SUBSAMPLING_AUTO","features":[395]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_ANISOTROPIC","features":[395]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_CUBIC","features":[395]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[395]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_LINEAR","features":[395]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[395]},{"name":"D2D1_YCBCR_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[395]},{"name":"D2D1_YCBCR_PROP","features":[395]},{"name":"D2D1_YCBCR_PROP_CHROMA_SUBSAMPLING","features":[395]},{"name":"D2D1_YCBCR_PROP_INTERPOLATION_MODE","features":[395]},{"name":"D2D1_YCBCR_PROP_TRANSFORM_MATRIX","features":[395]},{"name":"FACILITY_D2D","features":[395]},{"name":"ID2D1AnalysisTransform","features":[395]},{"name":"ID2D1Bitmap","features":[395]},{"name":"ID2D1Bitmap1","features":[395]},{"name":"ID2D1BitmapBrush","features":[395]},{"name":"ID2D1BitmapBrush1","features":[395]},{"name":"ID2D1BitmapRenderTarget","features":[395]},{"name":"ID2D1BlendTransform","features":[395]},{"name":"ID2D1BorderTransform","features":[395]},{"name":"ID2D1BoundsAdjustmentTransform","features":[395]},{"name":"ID2D1Brush","features":[395]},{"name":"ID2D1ColorContext","features":[395]},{"name":"ID2D1ColorContext1","features":[395]},{"name":"ID2D1CommandList","features":[395]},{"name":"ID2D1CommandSink","features":[395]},{"name":"ID2D1CommandSink1","features":[395]},{"name":"ID2D1CommandSink2","features":[395]},{"name":"ID2D1CommandSink3","features":[395]},{"name":"ID2D1CommandSink4","features":[395]},{"name":"ID2D1CommandSink5","features":[395]},{"name":"ID2D1ComputeInfo","features":[395]},{"name":"ID2D1ComputeTransform","features":[395]},{"name":"ID2D1ConcreteTransform","features":[395]},{"name":"ID2D1DCRenderTarget","features":[395]},{"name":"ID2D1Device","features":[395]},{"name":"ID2D1Device1","features":[395]},{"name":"ID2D1Device2","features":[395]},{"name":"ID2D1Device3","features":[395]},{"name":"ID2D1Device4","features":[395]},{"name":"ID2D1Device5","features":[395]},{"name":"ID2D1Device6","features":[395]},{"name":"ID2D1Device7","features":[395]},{"name":"ID2D1DeviceContext","features":[395]},{"name":"ID2D1DeviceContext1","features":[395]},{"name":"ID2D1DeviceContext2","features":[395]},{"name":"ID2D1DeviceContext3","features":[395]},{"name":"ID2D1DeviceContext4","features":[395]},{"name":"ID2D1DeviceContext5","features":[395]},{"name":"ID2D1DeviceContext6","features":[395]},{"name":"ID2D1DeviceContext7","features":[395]},{"name":"ID2D1DrawInfo","features":[395]},{"name":"ID2D1DrawTransform","features":[395]},{"name":"ID2D1DrawingStateBlock","features":[395]},{"name":"ID2D1DrawingStateBlock1","features":[395]},{"name":"ID2D1Effect","features":[395]},{"name":"ID2D1EffectContext","features":[395]},{"name":"ID2D1EffectContext1","features":[395]},{"name":"ID2D1EffectContext2","features":[395]},{"name":"ID2D1EffectImpl","features":[395]},{"name":"ID2D1EllipseGeometry","features":[395]},{"name":"ID2D1Factory","features":[395]},{"name":"ID2D1Factory1","features":[395]},{"name":"ID2D1Factory2","features":[395]},{"name":"ID2D1Factory3","features":[395]},{"name":"ID2D1Factory4","features":[395]},{"name":"ID2D1Factory5","features":[395]},{"name":"ID2D1Factory6","features":[395]},{"name":"ID2D1Factory7","features":[395]},{"name":"ID2D1Factory8","features":[395]},{"name":"ID2D1GdiInteropRenderTarget","features":[395]},{"name":"ID2D1GdiMetafile","features":[395]},{"name":"ID2D1GdiMetafile1","features":[395]},{"name":"ID2D1GdiMetafileSink","features":[395]},{"name":"ID2D1GdiMetafileSink1","features":[395]},{"name":"ID2D1Geometry","features":[395]},{"name":"ID2D1GeometryGroup","features":[395]},{"name":"ID2D1GeometryRealization","features":[395]},{"name":"ID2D1GeometrySink","features":[396]},{"name":"ID2D1GradientMesh","features":[395]},{"name":"ID2D1GradientStopCollection","features":[395]},{"name":"ID2D1GradientStopCollection1","features":[395]},{"name":"ID2D1HwndRenderTarget","features":[395]},{"name":"ID2D1Image","features":[395]},{"name":"ID2D1ImageBrush","features":[395]},{"name":"ID2D1ImageSource","features":[395]},{"name":"ID2D1ImageSourceFromWic","features":[395]},{"name":"ID2D1Ink","features":[395]},{"name":"ID2D1InkStyle","features":[395]},{"name":"ID2D1Layer","features":[395]},{"name":"ID2D1LinearGradientBrush","features":[395]},{"name":"ID2D1LookupTable3D","features":[395]},{"name":"ID2D1Mesh","features":[395]},{"name":"ID2D1Multithread","features":[395]},{"name":"ID2D1OffsetTransform","features":[395]},{"name":"ID2D1PathGeometry","features":[395]},{"name":"ID2D1PathGeometry1","features":[395]},{"name":"ID2D1PrintControl","features":[395]},{"name":"ID2D1Properties","features":[395]},{"name":"ID2D1RadialGradientBrush","features":[395]},{"name":"ID2D1RectangleGeometry","features":[395]},{"name":"ID2D1RenderInfo","features":[395]},{"name":"ID2D1RenderTarget","features":[395]},{"name":"ID2D1Resource","features":[395]},{"name":"ID2D1ResourceTexture","features":[395]},{"name":"ID2D1RoundedRectangleGeometry","features":[395]},{"name":"ID2D1SolidColorBrush","features":[395]},{"name":"ID2D1SourceTransform","features":[395]},{"name":"ID2D1SpriteBatch","features":[395]},{"name":"ID2D1StrokeStyle","features":[395]},{"name":"ID2D1StrokeStyle1","features":[395]},{"name":"ID2D1SvgAttribute","features":[395]},{"name":"ID2D1SvgDocument","features":[395]},{"name":"ID2D1SvgElement","features":[395]},{"name":"ID2D1SvgGlyphStyle","features":[395]},{"name":"ID2D1SvgPaint","features":[395]},{"name":"ID2D1SvgPathData","features":[395]},{"name":"ID2D1SvgPointCollection","features":[395]},{"name":"ID2D1SvgStrokeDashArray","features":[395]},{"name":"ID2D1TessellationSink","features":[395]},{"name":"ID2D1Transform","features":[395]},{"name":"ID2D1TransformGraph","features":[395]},{"name":"ID2D1TransformNode","features":[395]},{"name":"ID2D1TransformedGeometry","features":[395]},{"name":"ID2D1TransformedImageSource","features":[395]},{"name":"ID2D1VertexBuffer","features":[395]},{"name":"PD2D1_EFFECT_FACTORY","features":[395]},{"name":"PD2D1_PROPERTY_GET_FUNCTION","features":[395]},{"name":"PD2D1_PROPERTY_SET_FUNCTION","features":[395]}],"398":[{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE","features":[396]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_ANISOTROPIC","features":[396]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_CUBIC","features":[396]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC","features":[396]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_LINEAR","features":[396]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR","features":[396]},{"name":"D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[396]},{"name":"D2D1_ALPHA_MODE","features":[396]},{"name":"D2D1_ALPHA_MODE_IGNORE","features":[396]},{"name":"D2D1_ALPHA_MODE_PREMULTIPLIED","features":[396]},{"name":"D2D1_ALPHA_MODE_STRAIGHT","features":[396]},{"name":"D2D1_ALPHA_MODE_UNKNOWN","features":[396]},{"name":"D2D1_BEZIER_SEGMENT","features":[396]},{"name":"D2D1_BLEND_MODE","features":[396]},{"name":"D2D1_BLEND_MODE_COLOR","features":[396]},{"name":"D2D1_BLEND_MODE_COLOR_BURN","features":[396]},{"name":"D2D1_BLEND_MODE_COLOR_DODGE","features":[396]},{"name":"D2D1_BLEND_MODE_DARKEN","features":[396]},{"name":"D2D1_BLEND_MODE_DARKER_COLOR","features":[396]},{"name":"D2D1_BLEND_MODE_DIFFERENCE","features":[396]},{"name":"D2D1_BLEND_MODE_DISSOLVE","features":[396]},{"name":"D2D1_BLEND_MODE_DIVISION","features":[396]},{"name":"D2D1_BLEND_MODE_EXCLUSION","features":[396]},{"name":"D2D1_BLEND_MODE_HARD_LIGHT","features":[396]},{"name":"D2D1_BLEND_MODE_HARD_MIX","features":[396]},{"name":"D2D1_BLEND_MODE_HUE","features":[396]},{"name":"D2D1_BLEND_MODE_LIGHTEN","features":[396]},{"name":"D2D1_BLEND_MODE_LIGHTER_COLOR","features":[396]},{"name":"D2D1_BLEND_MODE_LINEAR_BURN","features":[396]},{"name":"D2D1_BLEND_MODE_LINEAR_DODGE","features":[396]},{"name":"D2D1_BLEND_MODE_LINEAR_LIGHT","features":[396]},{"name":"D2D1_BLEND_MODE_LUMINOSITY","features":[396]},{"name":"D2D1_BLEND_MODE_MULTIPLY","features":[396]},{"name":"D2D1_BLEND_MODE_OVERLAY","features":[396]},{"name":"D2D1_BLEND_MODE_PIN_LIGHT","features":[396]},{"name":"D2D1_BLEND_MODE_SATURATION","features":[396]},{"name":"D2D1_BLEND_MODE_SCREEN","features":[396]},{"name":"D2D1_BLEND_MODE_SOFT_LIGHT","features":[396]},{"name":"D2D1_BLEND_MODE_SUBTRACT","features":[396]},{"name":"D2D1_BLEND_MODE_VIVID_LIGHT","features":[396]},{"name":"D2D1_BORDER_MODE","features":[396]},{"name":"D2D1_BORDER_MODE_HARD","features":[396]},{"name":"D2D1_BORDER_MODE_SOFT","features":[396]},{"name":"D2D1_COLORMATRIX_ALPHA_MODE","features":[396]},{"name":"D2D1_COLORMATRIX_ALPHA_MODE_PREMULTIPLIED","features":[396]},{"name":"D2D1_COLORMATRIX_ALPHA_MODE_STRAIGHT","features":[396]},{"name":"D2D1_COLOR_F","features":[396]},{"name":"D2D1_COMPOSITE_MODE","features":[396]},{"name":"D2D1_COMPOSITE_MODE_BOUNDED_SOURCE_COPY","features":[396]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_ATOP","features":[396]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_IN","features":[396]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_OUT","features":[396]},{"name":"D2D1_COMPOSITE_MODE_DESTINATION_OVER","features":[396]},{"name":"D2D1_COMPOSITE_MODE_MASK_INVERT","features":[396]},{"name":"D2D1_COMPOSITE_MODE_PLUS","features":[396]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_ATOP","features":[396]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_COPY","features":[396]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_IN","features":[396]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_OUT","features":[396]},{"name":"D2D1_COMPOSITE_MODE_SOURCE_OVER","features":[396]},{"name":"D2D1_COMPOSITE_MODE_XOR","features":[396]},{"name":"D2D1_FIGURE_BEGIN","features":[396]},{"name":"D2D1_FIGURE_BEGIN_FILLED","features":[396]},{"name":"D2D1_FIGURE_BEGIN_HOLLOW","features":[396]},{"name":"D2D1_FIGURE_END","features":[396]},{"name":"D2D1_FIGURE_END_CLOSED","features":[396]},{"name":"D2D1_FIGURE_END_OPEN","features":[396]},{"name":"D2D1_FILL_MODE","features":[396]},{"name":"D2D1_FILL_MODE_ALTERNATE","features":[396]},{"name":"D2D1_FILL_MODE_WINDING","features":[396]},{"name":"D2D1_GRADIENT_STOP","features":[396]},{"name":"D2D1_PATH_SEGMENT","features":[396]},{"name":"D2D1_PATH_SEGMENT_FORCE_ROUND_LINE_JOIN","features":[396]},{"name":"D2D1_PATH_SEGMENT_FORCE_UNSTROKED","features":[396]},{"name":"D2D1_PATH_SEGMENT_NONE","features":[396]},{"name":"D2D1_PIXEL_FORMAT","features":[396,393]},{"name":"D2D1_TURBULENCE_NOISE","features":[396]},{"name":"D2D1_TURBULENCE_NOISE_FRACTAL_SUM","features":[396]},{"name":"D2D1_TURBULENCE_NOISE_TURBULENCE","features":[396]},{"name":"D2D_COLOR_F","features":[396]},{"name":"D2D_MATRIX_3X2_F","features":[396]},{"name":"D2D_MATRIX_4X3_F","features":[396]},{"name":"D2D_MATRIX_4X4_F","features":[396]},{"name":"D2D_MATRIX_5X4_F","features":[396]},{"name":"D2D_POINT_2F","features":[396]},{"name":"D2D_POINT_2U","features":[396]},{"name":"D2D_RECT_F","features":[396]},{"name":"D2D_RECT_U","features":[396]},{"name":"D2D_SIZE_F","features":[396]},{"name":"D2D_SIZE_U","features":[396]},{"name":"D2D_VECTOR_2F","features":[396]},{"name":"D2D_VECTOR_3F","features":[396]},{"name":"D2D_VECTOR_4F","features":[396]},{"name":"ID2D1SimplifiedGeometrySink","features":[396]}],"399":[{"name":"D3D10_1_SRV_DIMENSION_BUFFER","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE1D","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE1DARRAY","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2D","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2DARRAY","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2DMS","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURE3D","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURECUBE","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_TEXTURECUBEARRAY","features":[398]},{"name":"D3D10_1_SRV_DIMENSION_UNKNOWN","features":[398]},{"name":"D3D10_CBF_USERPACKED","features":[398]},{"name":"D3D10_CT_CBUFFER","features":[398]},{"name":"D3D10_CT_TBUFFER","features":[398]},{"name":"D3D10_INCLUDE_LOCAL","features":[398]},{"name":"D3D10_INCLUDE_SYSTEM","features":[398]},{"name":"D3D10_NAME_CLIP_DISTANCE","features":[398]},{"name":"D3D10_NAME_COVERAGE","features":[398]},{"name":"D3D10_NAME_CULL_DISTANCE","features":[398]},{"name":"D3D10_NAME_DEPTH","features":[398]},{"name":"D3D10_NAME_INSTANCE_ID","features":[398]},{"name":"D3D10_NAME_IS_FRONT_FACE","features":[398]},{"name":"D3D10_NAME_POSITION","features":[398]},{"name":"D3D10_NAME_PRIMITIVE_ID","features":[398]},{"name":"D3D10_NAME_RENDER_TARGET_ARRAY_INDEX","features":[398]},{"name":"D3D10_NAME_SAMPLE_INDEX","features":[398]},{"name":"D3D10_NAME_TARGET","features":[398]},{"name":"D3D10_NAME_UNDEFINED","features":[398]},{"name":"D3D10_NAME_VERTEX_ID","features":[398]},{"name":"D3D10_NAME_VIEWPORT_ARRAY_INDEX","features":[398]},{"name":"D3D10_PRIMITIVE_LINE","features":[398]},{"name":"D3D10_PRIMITIVE_LINE_ADJ","features":[398]},{"name":"D3D10_PRIMITIVE_POINT","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINELIST","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINELIST_ADJ","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_POINTLIST","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ","features":[398]},{"name":"D3D10_PRIMITIVE_TOPOLOGY_UNDEFINED","features":[398]},{"name":"D3D10_PRIMITIVE_TRIANGLE","features":[398]},{"name":"D3D10_PRIMITIVE_TRIANGLE_ADJ","features":[398]},{"name":"D3D10_PRIMITIVE_UNDEFINED","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_FLOAT16","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_FLOAT32","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_FLOAT64","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_SINT16","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_SINT32","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_SINT64","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_UINT16","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_UINT32","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_UINT64","features":[398]},{"name":"D3D10_REGISTER_COMPONENT_UNKNOWN","features":[398]},{"name":"D3D10_RETURN_TYPE_FLOAT","features":[398]},{"name":"D3D10_RETURN_TYPE_MIXED","features":[398]},{"name":"D3D10_RETURN_TYPE_SINT","features":[398]},{"name":"D3D10_RETURN_TYPE_SNORM","features":[398]},{"name":"D3D10_RETURN_TYPE_UINT","features":[398]},{"name":"D3D10_RETURN_TYPE_UNORM","features":[398]},{"name":"D3D10_SIF_COMPARISON_SAMPLER","features":[398]},{"name":"D3D10_SIF_TEXTURE_COMPONENTS","features":[398]},{"name":"D3D10_SIF_TEXTURE_COMPONENT_0","features":[398]},{"name":"D3D10_SIF_TEXTURE_COMPONENT_1","features":[398]},{"name":"D3D10_SIF_USERPACKED","features":[398]},{"name":"D3D10_SIT_CBUFFER","features":[398]},{"name":"D3D10_SIT_SAMPLER","features":[398]},{"name":"D3D10_SIT_TBUFFER","features":[398]},{"name":"D3D10_SIT_TEXTURE","features":[398]},{"name":"D3D10_SRV_DIMENSION_BUFFER","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURE1D","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURE1DARRAY","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2D","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2DARRAY","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2DMS","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURE3D","features":[398]},{"name":"D3D10_SRV_DIMENSION_TEXTURECUBE","features":[398]},{"name":"D3D10_SRV_DIMENSION_UNKNOWN","features":[398]},{"name":"D3D10_SVC_MATRIX_COLUMNS","features":[398]},{"name":"D3D10_SVC_MATRIX_ROWS","features":[398]},{"name":"D3D10_SVC_OBJECT","features":[398]},{"name":"D3D10_SVC_SCALAR","features":[398]},{"name":"D3D10_SVC_STRUCT","features":[398]},{"name":"D3D10_SVC_VECTOR","features":[398]},{"name":"D3D10_SVF_USED","features":[398]},{"name":"D3D10_SVF_USERPACKED","features":[398]},{"name":"D3D10_SVT_BLEND","features":[398]},{"name":"D3D10_SVT_BOOL","features":[398]},{"name":"D3D10_SVT_BUFFER","features":[398]},{"name":"D3D10_SVT_CBUFFER","features":[398]},{"name":"D3D10_SVT_DEPTHSTENCIL","features":[398]},{"name":"D3D10_SVT_DEPTHSTENCILVIEW","features":[398]},{"name":"D3D10_SVT_FLOAT","features":[398]},{"name":"D3D10_SVT_GEOMETRYSHADER","features":[398]},{"name":"D3D10_SVT_INT","features":[398]},{"name":"D3D10_SVT_PIXELFRAGMENT","features":[398]},{"name":"D3D10_SVT_PIXELSHADER","features":[398]},{"name":"D3D10_SVT_RASTERIZER","features":[398]},{"name":"D3D10_SVT_RENDERTARGETVIEW","features":[398]},{"name":"D3D10_SVT_SAMPLER","features":[398]},{"name":"D3D10_SVT_SAMPLER1D","features":[398]},{"name":"D3D10_SVT_SAMPLER2D","features":[398]},{"name":"D3D10_SVT_SAMPLER3D","features":[398]},{"name":"D3D10_SVT_SAMPLERCUBE","features":[398]},{"name":"D3D10_SVT_STRING","features":[398]},{"name":"D3D10_SVT_TBUFFER","features":[398]},{"name":"D3D10_SVT_TEXTURE","features":[398]},{"name":"D3D10_SVT_TEXTURE1D","features":[398]},{"name":"D3D10_SVT_TEXTURE1DARRAY","features":[398]},{"name":"D3D10_SVT_TEXTURE2D","features":[398]},{"name":"D3D10_SVT_TEXTURE2DARRAY","features":[398]},{"name":"D3D10_SVT_TEXTURE2DMS","features":[398]},{"name":"D3D10_SVT_TEXTURE2DMSARRAY","features":[398]},{"name":"D3D10_SVT_TEXTURE3D","features":[398]},{"name":"D3D10_SVT_TEXTURECUBE","features":[398]},{"name":"D3D10_SVT_TEXTURECUBEARRAY","features":[398]},{"name":"D3D10_SVT_UINT","features":[398]},{"name":"D3D10_SVT_UINT8","features":[398]},{"name":"D3D10_SVT_VERTEXFRAGMENT","features":[398]},{"name":"D3D10_SVT_VERTEXSHADER","features":[398]},{"name":"D3D10_SVT_VOID","features":[398]},{"name":"D3D11_CT_CBUFFER","features":[398]},{"name":"D3D11_CT_INTERFACE_POINTERS","features":[398]},{"name":"D3D11_CT_RESOURCE_BIND_INFO","features":[398]},{"name":"D3D11_CT_TBUFFER","features":[398]},{"name":"D3D11_NAME_DEPTH_GREATER_EQUAL","features":[398]},{"name":"D3D11_NAME_DEPTH_LESS_EQUAL","features":[398]},{"name":"D3D11_NAME_FINAL_LINE_DENSITY_TESSFACTOR","features":[398]},{"name":"D3D11_NAME_FINAL_LINE_DETAIL_TESSFACTOR","features":[398]},{"name":"D3D11_NAME_FINAL_QUAD_EDGE_TESSFACTOR","features":[398]},{"name":"D3D11_NAME_FINAL_QUAD_INSIDE_TESSFACTOR","features":[398]},{"name":"D3D11_NAME_FINAL_TRI_EDGE_TESSFACTOR","features":[398]},{"name":"D3D11_NAME_FINAL_TRI_INSIDE_TESSFACTOR","features":[398]},{"name":"D3D11_NAME_INNER_COVERAGE","features":[398]},{"name":"D3D11_NAME_STENCIL_REF","features":[398]},{"name":"D3D11_PRIMITIVE_10_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_11_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_12_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_13_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_14_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_15_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_16_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_17_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_18_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_19_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_1_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_20_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_21_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_22_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_23_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_24_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_25_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_26_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_27_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_28_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_29_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_2_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_30_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_31_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_32_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_3_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_4_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_5_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_6_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_7_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_8_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_9_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D11_PRIMITIVE_LINE","features":[398]},{"name":"D3D11_PRIMITIVE_LINE_ADJ","features":[398]},{"name":"D3D11_PRIMITIVE_POINT","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINELIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINELIST_ADJ","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_POINTLIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ","features":[398]},{"name":"D3D11_PRIMITIVE_TOPOLOGY_UNDEFINED","features":[398]},{"name":"D3D11_PRIMITIVE_TRIANGLE","features":[398]},{"name":"D3D11_PRIMITIVE_TRIANGLE_ADJ","features":[398]},{"name":"D3D11_PRIMITIVE_UNDEFINED","features":[398]},{"name":"D3D11_RETURN_TYPE_CONTINUED","features":[398]},{"name":"D3D11_RETURN_TYPE_DOUBLE","features":[398]},{"name":"D3D11_RETURN_TYPE_FLOAT","features":[398]},{"name":"D3D11_RETURN_TYPE_MIXED","features":[398]},{"name":"D3D11_RETURN_TYPE_SINT","features":[398]},{"name":"D3D11_RETURN_TYPE_SNORM","features":[398]},{"name":"D3D11_RETURN_TYPE_UINT","features":[398]},{"name":"D3D11_RETURN_TYPE_UNORM","features":[398]},{"name":"D3D11_SIT_BYTEADDRESS","features":[398]},{"name":"D3D11_SIT_STRUCTURED","features":[398]},{"name":"D3D11_SIT_UAV_APPEND_STRUCTURED","features":[398]},{"name":"D3D11_SIT_UAV_CONSUME_STRUCTURED","features":[398]},{"name":"D3D11_SIT_UAV_RWBYTEADDRESS","features":[398]},{"name":"D3D11_SIT_UAV_RWSTRUCTURED","features":[398]},{"name":"D3D11_SIT_UAV_RWSTRUCTURED_WITH_COUNTER","features":[398]},{"name":"D3D11_SIT_UAV_RWTYPED","features":[398]},{"name":"D3D11_SRV_DIMENSION_BUFFER","features":[398]},{"name":"D3D11_SRV_DIMENSION_BUFFEREX","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURE1D","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURE1DARRAY","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2D","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2DARRAY","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2DMS","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURE3D","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURECUBE","features":[398]},{"name":"D3D11_SRV_DIMENSION_TEXTURECUBEARRAY","features":[398]},{"name":"D3D11_SRV_DIMENSION_UNKNOWN","features":[398]},{"name":"D3D11_SVC_INTERFACE_CLASS","features":[398]},{"name":"D3D11_SVC_INTERFACE_POINTER","features":[398]},{"name":"D3D11_SVF_INTERFACE_PARAMETER","features":[398]},{"name":"D3D11_SVF_INTERFACE_POINTER","features":[398]},{"name":"D3D11_SVT_APPEND_STRUCTURED_BUFFER","features":[398]},{"name":"D3D11_SVT_BYTEADDRESS_BUFFER","features":[398]},{"name":"D3D11_SVT_COMPUTESHADER","features":[398]},{"name":"D3D11_SVT_CONSUME_STRUCTURED_BUFFER","features":[398]},{"name":"D3D11_SVT_DOMAINSHADER","features":[398]},{"name":"D3D11_SVT_DOUBLE","features":[398]},{"name":"D3D11_SVT_HULLSHADER","features":[398]},{"name":"D3D11_SVT_INTERFACE_POINTER","features":[398]},{"name":"D3D11_SVT_RWBUFFER","features":[398]},{"name":"D3D11_SVT_RWBYTEADDRESS_BUFFER","features":[398]},{"name":"D3D11_SVT_RWSTRUCTURED_BUFFER","features":[398]},{"name":"D3D11_SVT_RWTEXTURE1D","features":[398]},{"name":"D3D11_SVT_RWTEXTURE1DARRAY","features":[398]},{"name":"D3D11_SVT_RWTEXTURE2D","features":[398]},{"name":"D3D11_SVT_RWTEXTURE2DARRAY","features":[398]},{"name":"D3D11_SVT_RWTEXTURE3D","features":[398]},{"name":"D3D11_SVT_STRUCTURED_BUFFER","features":[398]},{"name":"D3D11_TESSELLATOR_DOMAIN_ISOLINE","features":[398]},{"name":"D3D11_TESSELLATOR_DOMAIN_QUAD","features":[398]},{"name":"D3D11_TESSELLATOR_DOMAIN_TRI","features":[398]},{"name":"D3D11_TESSELLATOR_DOMAIN_UNDEFINED","features":[398]},{"name":"D3D11_TESSELLATOR_OUTPUT_LINE","features":[398]},{"name":"D3D11_TESSELLATOR_OUTPUT_POINT","features":[398]},{"name":"D3D11_TESSELLATOR_OUTPUT_TRIANGLE_CCW","features":[398]},{"name":"D3D11_TESSELLATOR_OUTPUT_TRIANGLE_CW","features":[398]},{"name":"D3D11_TESSELLATOR_OUTPUT_UNDEFINED","features":[398]},{"name":"D3D11_TESSELLATOR_PARTITIONING_FRACTIONAL_EVEN","features":[398]},{"name":"D3D11_TESSELLATOR_PARTITIONING_FRACTIONAL_ODD","features":[398]},{"name":"D3D11_TESSELLATOR_PARTITIONING_INTEGER","features":[398]},{"name":"D3D11_TESSELLATOR_PARTITIONING_POW2","features":[398]},{"name":"D3D11_TESSELLATOR_PARTITIONING_UNDEFINED","features":[398]},{"name":"D3D12_NAME_BARYCENTRICS","features":[398]},{"name":"D3D12_NAME_CULLPRIMITIVE","features":[398]},{"name":"D3D12_NAME_SHADINGRATE","features":[398]},{"name":"D3DFCI_BIASED_FIXED_2_8","features":[398]},{"name":"D3DFCI_FLOAT","features":[398]},{"name":"D3DFCI_SINT","features":[398]},{"name":"D3DFCI_SNORM","features":[398]},{"name":"D3DFCI_TYPELESS","features":[398]},{"name":"D3DFCI_UINT","features":[398]},{"name":"D3DFCI_UNORM","features":[398]},{"name":"D3DFCI_UNORM_SRGB","features":[398]},{"name":"D3DFCN_A","features":[398]},{"name":"D3DFCN_B","features":[398]},{"name":"D3DFCN_D","features":[398]},{"name":"D3DFCN_G","features":[398]},{"name":"D3DFCN_R","features":[398]},{"name":"D3DFCN_S","features":[398]},{"name":"D3DFCN_X","features":[398]},{"name":"D3DFL_CUSTOM","features":[398]},{"name":"D3DFL_STANDARD","features":[398]},{"name":"D3DFTL_FULL_TYPE","features":[398]},{"name":"D3DFTL_NO_TYPE","features":[398]},{"name":"D3DFTL_PARTIAL_TYPE","features":[398]},{"name":"D3DMATRIX","features":[398]},{"name":"D3DVECTOR","features":[398]},{"name":"D3D_CBF_USERPACKED","features":[398]},{"name":"D3D_CBUFFER_TYPE","features":[398]},{"name":"D3D_COMPONENT_MASK_W","features":[398]},{"name":"D3D_COMPONENT_MASK_X","features":[398]},{"name":"D3D_COMPONENT_MASK_Y","features":[398]},{"name":"D3D_COMPONENT_MASK_Z","features":[398]},{"name":"D3D_CT_CBUFFER","features":[398]},{"name":"D3D_CT_INTERFACE_POINTERS","features":[398]},{"name":"D3D_CT_RESOURCE_BIND_INFO","features":[398]},{"name":"D3D_CT_TBUFFER","features":[398]},{"name":"D3D_DRIVER_TYPE","features":[398]},{"name":"D3D_DRIVER_TYPE_HARDWARE","features":[398]},{"name":"D3D_DRIVER_TYPE_NULL","features":[398]},{"name":"D3D_DRIVER_TYPE_REFERENCE","features":[398]},{"name":"D3D_DRIVER_TYPE_SOFTWARE","features":[398]},{"name":"D3D_DRIVER_TYPE_UNKNOWN","features":[398]},{"name":"D3D_DRIVER_TYPE_WARP","features":[398]},{"name":"D3D_FEATURE_LEVEL","features":[398]},{"name":"D3D_FEATURE_LEVEL_10_0","features":[398]},{"name":"D3D_FEATURE_LEVEL_10_1","features":[398]},{"name":"D3D_FEATURE_LEVEL_11_0","features":[398]},{"name":"D3D_FEATURE_LEVEL_11_1","features":[398]},{"name":"D3D_FEATURE_LEVEL_12_0","features":[398]},{"name":"D3D_FEATURE_LEVEL_12_1","features":[398]},{"name":"D3D_FEATURE_LEVEL_12_2","features":[398]},{"name":"D3D_FEATURE_LEVEL_1_0_CORE","features":[398]},{"name":"D3D_FEATURE_LEVEL_1_0_GENERIC","features":[398]},{"name":"D3D_FEATURE_LEVEL_9_1","features":[398]},{"name":"D3D_FEATURE_LEVEL_9_2","features":[398]},{"name":"D3D_FEATURE_LEVEL_9_3","features":[398]},{"name":"D3D_FL9_1_DEFAULT_MAX_ANISOTROPY","features":[398]},{"name":"D3D_FL9_1_IA_PRIMITIVE_MAX_COUNT","features":[398]},{"name":"D3D_FL9_1_MAX_TEXTURE_REPEAT","features":[398]},{"name":"D3D_FL9_1_REQ_TEXTURE1D_U_DIMENSION","features":[398]},{"name":"D3D_FL9_1_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[398]},{"name":"D3D_FL9_1_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[398]},{"name":"D3D_FL9_1_REQ_TEXTURECUBE_DIMENSION","features":[398]},{"name":"D3D_FL9_1_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[398]},{"name":"D3D_FL9_2_IA_PRIMITIVE_MAX_COUNT","features":[398]},{"name":"D3D_FL9_2_MAX_TEXTURE_REPEAT","features":[398]},{"name":"D3D_FL9_3_MAX_TEXTURE_REPEAT","features":[398]},{"name":"D3D_FL9_3_REQ_TEXTURE1D_U_DIMENSION","features":[398]},{"name":"D3D_FL9_3_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[398]},{"name":"D3D_FL9_3_REQ_TEXTURECUBE_DIMENSION","features":[398]},{"name":"D3D_FL9_3_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[398]},{"name":"D3D_FORMAT_COMPONENT_INTERPRETATION","features":[398]},{"name":"D3D_FORMAT_COMPONENT_NAME","features":[398]},{"name":"D3D_FORMAT_LAYOUT","features":[398]},{"name":"D3D_FORMAT_TYPE_LEVEL","features":[398]},{"name":"D3D_INCLUDE_LOCAL","features":[398]},{"name":"D3D_INCLUDE_SYSTEM","features":[398]},{"name":"D3D_INCLUDE_TYPE","features":[398]},{"name":"D3D_INTERPOLATION_CONSTANT","features":[398]},{"name":"D3D_INTERPOLATION_LINEAR","features":[398]},{"name":"D3D_INTERPOLATION_LINEAR_CENTROID","features":[398]},{"name":"D3D_INTERPOLATION_LINEAR_NOPERSPECTIVE","features":[398]},{"name":"D3D_INTERPOLATION_LINEAR_NOPERSPECTIVE_CENTROID","features":[398]},{"name":"D3D_INTERPOLATION_LINEAR_NOPERSPECTIVE_SAMPLE","features":[398]},{"name":"D3D_INTERPOLATION_LINEAR_SAMPLE","features":[398]},{"name":"D3D_INTERPOLATION_MODE","features":[398]},{"name":"D3D_INTERPOLATION_UNDEFINED","features":[398]},{"name":"D3D_MIN_PRECISION","features":[398]},{"name":"D3D_MIN_PRECISION_ANY_10","features":[398]},{"name":"D3D_MIN_PRECISION_ANY_16","features":[398]},{"name":"D3D_MIN_PRECISION_DEFAULT","features":[398]},{"name":"D3D_MIN_PRECISION_FLOAT_16","features":[398]},{"name":"D3D_MIN_PRECISION_FLOAT_2_8","features":[398]},{"name":"D3D_MIN_PRECISION_RESERVED","features":[398]},{"name":"D3D_MIN_PRECISION_SINT_16","features":[398]},{"name":"D3D_MIN_PRECISION_UINT_16","features":[398]},{"name":"D3D_NAME","features":[398]},{"name":"D3D_NAME_BARYCENTRICS","features":[398]},{"name":"D3D_NAME_CLIP_DISTANCE","features":[398]},{"name":"D3D_NAME_COVERAGE","features":[398]},{"name":"D3D_NAME_CULLPRIMITIVE","features":[398]},{"name":"D3D_NAME_CULL_DISTANCE","features":[398]},{"name":"D3D_NAME_DEPTH","features":[398]},{"name":"D3D_NAME_DEPTH_GREATER_EQUAL","features":[398]},{"name":"D3D_NAME_DEPTH_LESS_EQUAL","features":[398]},{"name":"D3D_NAME_FINAL_LINE_DENSITY_TESSFACTOR","features":[398]},{"name":"D3D_NAME_FINAL_LINE_DETAIL_TESSFACTOR","features":[398]},{"name":"D3D_NAME_FINAL_QUAD_EDGE_TESSFACTOR","features":[398]},{"name":"D3D_NAME_FINAL_QUAD_INSIDE_TESSFACTOR","features":[398]},{"name":"D3D_NAME_FINAL_TRI_EDGE_TESSFACTOR","features":[398]},{"name":"D3D_NAME_FINAL_TRI_INSIDE_TESSFACTOR","features":[398]},{"name":"D3D_NAME_INNER_COVERAGE","features":[398]},{"name":"D3D_NAME_INSTANCE_ID","features":[398]},{"name":"D3D_NAME_IS_FRONT_FACE","features":[398]},{"name":"D3D_NAME_POSITION","features":[398]},{"name":"D3D_NAME_PRIMITIVE_ID","features":[398]},{"name":"D3D_NAME_RENDER_TARGET_ARRAY_INDEX","features":[398]},{"name":"D3D_NAME_SAMPLE_INDEX","features":[398]},{"name":"D3D_NAME_SHADINGRATE","features":[398]},{"name":"D3D_NAME_STENCIL_REF","features":[398]},{"name":"D3D_NAME_TARGET","features":[398]},{"name":"D3D_NAME_UNDEFINED","features":[398]},{"name":"D3D_NAME_VERTEX_ID","features":[398]},{"name":"D3D_NAME_VIEWPORT_ARRAY_INDEX","features":[398]},{"name":"D3D_PARAMETER_FLAGS","features":[398]},{"name":"D3D_PF_IN","features":[398]},{"name":"D3D_PF_NONE","features":[398]},{"name":"D3D_PF_OUT","features":[398]},{"name":"D3D_PRIMITIVE","features":[398]},{"name":"D3D_PRIMITIVE_10_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_11_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_12_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_13_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_14_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_15_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_16_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_17_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_18_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_19_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_1_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_20_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_21_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_22_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_23_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_24_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_25_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_26_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_27_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_28_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_29_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_2_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_30_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_31_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_32_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_3_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_4_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_5_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_6_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_7_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_8_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_9_CONTROL_POINT_PATCH","features":[398]},{"name":"D3D_PRIMITIVE_LINE","features":[398]},{"name":"D3D_PRIMITIVE_LINE_ADJ","features":[398]},{"name":"D3D_PRIMITIVE_POINT","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_10_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_11_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_12_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_13_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_14_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_15_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_16_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_17_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_18_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_19_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_1_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_20_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_21_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_22_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_23_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_24_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_25_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_26_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_27_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_28_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_29_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_2_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_30_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_31_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_32_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_3_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_4_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_5_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_6_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_7_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_8_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_9_CONTROL_POINT_PATCHLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINELIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINELIST_ADJ","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINESTRIP","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_LINESTRIP_ADJ","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_POINTLIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLEFAN","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST_ADJ","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP_ADJ","features":[398]},{"name":"D3D_PRIMITIVE_TOPOLOGY_UNDEFINED","features":[398]},{"name":"D3D_PRIMITIVE_TRIANGLE","features":[398]},{"name":"D3D_PRIMITIVE_TRIANGLE_ADJ","features":[398]},{"name":"D3D_PRIMITIVE_UNDEFINED","features":[398]},{"name":"D3D_REGISTER_COMPONENT_FLOAT16","features":[398]},{"name":"D3D_REGISTER_COMPONENT_FLOAT32","features":[398]},{"name":"D3D_REGISTER_COMPONENT_FLOAT64","features":[398]},{"name":"D3D_REGISTER_COMPONENT_SINT16","features":[398]},{"name":"D3D_REGISTER_COMPONENT_SINT32","features":[398]},{"name":"D3D_REGISTER_COMPONENT_SINT64","features":[398]},{"name":"D3D_REGISTER_COMPONENT_TYPE","features":[398]},{"name":"D3D_REGISTER_COMPONENT_UINT16","features":[398]},{"name":"D3D_REGISTER_COMPONENT_UINT32","features":[398]},{"name":"D3D_REGISTER_COMPONENT_UINT64","features":[398]},{"name":"D3D_REGISTER_COMPONENT_UNKNOWN","features":[398]},{"name":"D3D_RESOURCE_RETURN_TYPE","features":[398]},{"name":"D3D_RETURN_TYPE_CONTINUED","features":[398]},{"name":"D3D_RETURN_TYPE_DOUBLE","features":[398]},{"name":"D3D_RETURN_TYPE_FLOAT","features":[398]},{"name":"D3D_RETURN_TYPE_MIXED","features":[398]},{"name":"D3D_RETURN_TYPE_SINT","features":[398]},{"name":"D3D_RETURN_TYPE_SNORM","features":[398]},{"name":"D3D_RETURN_TYPE_UINT","features":[398]},{"name":"D3D_RETURN_TYPE_UNORM","features":[398]},{"name":"D3D_SHADER_CBUFFER_FLAGS","features":[398]},{"name":"D3D_SHADER_FEATURE_11_1_DOUBLE_EXTENSIONS","features":[398]},{"name":"D3D_SHADER_FEATURE_11_1_SHADER_EXTENSIONS","features":[398]},{"name":"D3D_SHADER_FEATURE_64_UAVS","features":[398]},{"name":"D3D_SHADER_FEATURE_ADVANCED_TEXTURE_OPS","features":[398]},{"name":"D3D_SHADER_FEATURE_ATOMIC_INT64_ON_DESCRIPTOR_HEAP_RESOURCE","features":[398]},{"name":"D3D_SHADER_FEATURE_ATOMIC_INT64_ON_GROUP_SHARED","features":[398]},{"name":"D3D_SHADER_FEATURE_ATOMIC_INT64_ON_TYPED_RESOURCE","features":[398]},{"name":"D3D_SHADER_FEATURE_BARYCENTRICS","features":[398]},{"name":"D3D_SHADER_FEATURE_COMPUTE_SHADERS_PLUS_RAW_AND_STRUCTURED_BUFFERS_VIA_SHADER_4_X","features":[398]},{"name":"D3D_SHADER_FEATURE_DERIVATIVES_IN_MESH_AND_AMPLIFICATION_SHADERS","features":[398]},{"name":"D3D_SHADER_FEATURE_DOUBLES","features":[398]},{"name":"D3D_SHADER_FEATURE_INNER_COVERAGE","features":[398]},{"name":"D3D_SHADER_FEATURE_INT64_OPS","features":[398]},{"name":"D3D_SHADER_FEATURE_LEVEL_9_COMPARISON_FILTERING","features":[398]},{"name":"D3D_SHADER_FEATURE_MINIMUM_PRECISION","features":[398]},{"name":"D3D_SHADER_FEATURE_NATIVE_16BIT_OPS","features":[398]},{"name":"D3D_SHADER_FEATURE_RAYTRACING_TIER_1_1","features":[398]},{"name":"D3D_SHADER_FEATURE_RESOURCE_DESCRIPTOR_HEAP_INDEXING","features":[398]},{"name":"D3D_SHADER_FEATURE_ROVS","features":[398]},{"name":"D3D_SHADER_FEATURE_SAMPLER_DESCRIPTOR_HEAP_INDEXING","features":[398]},{"name":"D3D_SHADER_FEATURE_SAMPLER_FEEDBACK","features":[398]},{"name":"D3D_SHADER_FEATURE_SAMPLE_CMP_GRADIENT_OR_BIAS","features":[398]},{"name":"D3D_SHADER_FEATURE_SHADING_RATE","features":[398]},{"name":"D3D_SHADER_FEATURE_STENCIL_REF","features":[398]},{"name":"D3D_SHADER_FEATURE_TILED_RESOURCES","features":[398]},{"name":"D3D_SHADER_FEATURE_TYPED_UAV_LOAD_ADDITIONAL_FORMATS","features":[398]},{"name":"D3D_SHADER_FEATURE_UAVS_AT_EVERY_STAGE","features":[398]},{"name":"D3D_SHADER_FEATURE_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDING_RASTERIZER","features":[398]},{"name":"D3D_SHADER_FEATURE_VIEW_ID","features":[398]},{"name":"D3D_SHADER_FEATURE_WAVE_MMA","features":[398]},{"name":"D3D_SHADER_FEATURE_WAVE_OPS","features":[398]},{"name":"D3D_SHADER_FEATURE_WRITEABLE_MSAA_TEXTURES","features":[398]},{"name":"D3D_SHADER_INPUT_FLAGS","features":[398]},{"name":"D3D_SHADER_INPUT_TYPE","features":[398]},{"name":"D3D_SHADER_MACRO","features":[398]},{"name":"D3D_SHADER_VARIABLE_CLASS","features":[398]},{"name":"D3D_SHADER_VARIABLE_FLAGS","features":[398]},{"name":"D3D_SHADER_VARIABLE_TYPE","features":[398]},{"name":"D3D_SIF_COMPARISON_SAMPLER","features":[398]},{"name":"D3D_SIF_TEXTURE_COMPONENTS","features":[398]},{"name":"D3D_SIF_TEXTURE_COMPONENT_0","features":[398]},{"name":"D3D_SIF_TEXTURE_COMPONENT_1","features":[398]},{"name":"D3D_SIF_UNUSED","features":[398]},{"name":"D3D_SIF_USERPACKED","features":[398]},{"name":"D3D_SIT_BYTEADDRESS","features":[398]},{"name":"D3D_SIT_CBUFFER","features":[398]},{"name":"D3D_SIT_RTACCELERATIONSTRUCTURE","features":[398]},{"name":"D3D_SIT_SAMPLER","features":[398]},{"name":"D3D_SIT_STRUCTURED","features":[398]},{"name":"D3D_SIT_TBUFFER","features":[398]},{"name":"D3D_SIT_TEXTURE","features":[398]},{"name":"D3D_SIT_UAV_APPEND_STRUCTURED","features":[398]},{"name":"D3D_SIT_UAV_CONSUME_STRUCTURED","features":[398]},{"name":"D3D_SIT_UAV_FEEDBACKTEXTURE","features":[398]},{"name":"D3D_SIT_UAV_RWBYTEADDRESS","features":[398]},{"name":"D3D_SIT_UAV_RWSTRUCTURED","features":[398]},{"name":"D3D_SIT_UAV_RWSTRUCTURED_WITH_COUNTER","features":[398]},{"name":"D3D_SIT_UAV_RWTYPED","features":[398]},{"name":"D3D_SRV_DIMENSION","features":[398]},{"name":"D3D_SRV_DIMENSION_BUFFER","features":[398]},{"name":"D3D_SRV_DIMENSION_BUFFEREX","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURE1D","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURE1DARRAY","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURE2D","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURE2DARRAY","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURE2DMS","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURE3D","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURECUBE","features":[398]},{"name":"D3D_SRV_DIMENSION_TEXTURECUBEARRAY","features":[398]},{"name":"D3D_SRV_DIMENSION_UNKNOWN","features":[398]},{"name":"D3D_SVC_INTERFACE_CLASS","features":[398]},{"name":"D3D_SVC_INTERFACE_POINTER","features":[398]},{"name":"D3D_SVC_MATRIX_COLUMNS","features":[398]},{"name":"D3D_SVC_MATRIX_ROWS","features":[398]},{"name":"D3D_SVC_OBJECT","features":[398]},{"name":"D3D_SVC_SCALAR","features":[398]},{"name":"D3D_SVC_STRUCT","features":[398]},{"name":"D3D_SVC_VECTOR","features":[398]},{"name":"D3D_SVF_INTERFACE_PARAMETER","features":[398]},{"name":"D3D_SVF_INTERFACE_POINTER","features":[398]},{"name":"D3D_SVF_USED","features":[398]},{"name":"D3D_SVF_USERPACKED","features":[398]},{"name":"D3D_SVT_APPEND_STRUCTURED_BUFFER","features":[398]},{"name":"D3D_SVT_BLEND","features":[398]},{"name":"D3D_SVT_BOOL","features":[398]},{"name":"D3D_SVT_BUFFER","features":[398]},{"name":"D3D_SVT_BYTEADDRESS_BUFFER","features":[398]},{"name":"D3D_SVT_CBUFFER","features":[398]},{"name":"D3D_SVT_COMPUTESHADER","features":[398]},{"name":"D3D_SVT_CONSUME_STRUCTURED_BUFFER","features":[398]},{"name":"D3D_SVT_DEPTHSTENCIL","features":[398]},{"name":"D3D_SVT_DEPTHSTENCILVIEW","features":[398]},{"name":"D3D_SVT_DOMAINSHADER","features":[398]},{"name":"D3D_SVT_DOUBLE","features":[398]},{"name":"D3D_SVT_FLOAT","features":[398]},{"name":"D3D_SVT_FLOAT16","features":[398]},{"name":"D3D_SVT_GEOMETRYSHADER","features":[398]},{"name":"D3D_SVT_HULLSHADER","features":[398]},{"name":"D3D_SVT_INT","features":[398]},{"name":"D3D_SVT_INT16","features":[398]},{"name":"D3D_SVT_INT64","features":[398]},{"name":"D3D_SVT_INTERFACE_POINTER","features":[398]},{"name":"D3D_SVT_MIN10FLOAT","features":[398]},{"name":"D3D_SVT_MIN12INT","features":[398]},{"name":"D3D_SVT_MIN16FLOAT","features":[398]},{"name":"D3D_SVT_MIN16INT","features":[398]},{"name":"D3D_SVT_MIN16UINT","features":[398]},{"name":"D3D_SVT_MIN8FLOAT","features":[398]},{"name":"D3D_SVT_PIXELFRAGMENT","features":[398]},{"name":"D3D_SVT_PIXELSHADER","features":[398]},{"name":"D3D_SVT_RASTERIZER","features":[398]},{"name":"D3D_SVT_RENDERTARGETVIEW","features":[398]},{"name":"D3D_SVT_RWBUFFER","features":[398]},{"name":"D3D_SVT_RWBYTEADDRESS_BUFFER","features":[398]},{"name":"D3D_SVT_RWSTRUCTURED_BUFFER","features":[398]},{"name":"D3D_SVT_RWTEXTURE1D","features":[398]},{"name":"D3D_SVT_RWTEXTURE1DARRAY","features":[398]},{"name":"D3D_SVT_RWTEXTURE2D","features":[398]},{"name":"D3D_SVT_RWTEXTURE2DARRAY","features":[398]},{"name":"D3D_SVT_RWTEXTURE3D","features":[398]},{"name":"D3D_SVT_SAMPLER","features":[398]},{"name":"D3D_SVT_SAMPLER1D","features":[398]},{"name":"D3D_SVT_SAMPLER2D","features":[398]},{"name":"D3D_SVT_SAMPLER3D","features":[398]},{"name":"D3D_SVT_SAMPLERCUBE","features":[398]},{"name":"D3D_SVT_STRING","features":[398]},{"name":"D3D_SVT_STRUCTURED_BUFFER","features":[398]},{"name":"D3D_SVT_TBUFFER","features":[398]},{"name":"D3D_SVT_TEXTURE","features":[398]},{"name":"D3D_SVT_TEXTURE1D","features":[398]},{"name":"D3D_SVT_TEXTURE1DARRAY","features":[398]},{"name":"D3D_SVT_TEXTURE2D","features":[398]},{"name":"D3D_SVT_TEXTURE2DARRAY","features":[398]},{"name":"D3D_SVT_TEXTURE2DMS","features":[398]},{"name":"D3D_SVT_TEXTURE2DMSARRAY","features":[398]},{"name":"D3D_SVT_TEXTURE3D","features":[398]},{"name":"D3D_SVT_TEXTURECUBE","features":[398]},{"name":"D3D_SVT_TEXTURECUBEARRAY","features":[398]},{"name":"D3D_SVT_UINT","features":[398]},{"name":"D3D_SVT_UINT16","features":[398]},{"name":"D3D_SVT_UINT64","features":[398]},{"name":"D3D_SVT_UINT8","features":[398]},{"name":"D3D_SVT_VERTEXFRAGMENT","features":[398]},{"name":"D3D_SVT_VERTEXSHADER","features":[398]},{"name":"D3D_SVT_VOID","features":[398]},{"name":"D3D_TESSELLATOR_DOMAIN","features":[398]},{"name":"D3D_TESSELLATOR_DOMAIN_ISOLINE","features":[398]},{"name":"D3D_TESSELLATOR_DOMAIN_QUAD","features":[398]},{"name":"D3D_TESSELLATOR_DOMAIN_TRI","features":[398]},{"name":"D3D_TESSELLATOR_DOMAIN_UNDEFINED","features":[398]},{"name":"D3D_TESSELLATOR_OUTPUT_LINE","features":[398]},{"name":"D3D_TESSELLATOR_OUTPUT_POINT","features":[398]},{"name":"D3D_TESSELLATOR_OUTPUT_PRIMITIVE","features":[398]},{"name":"D3D_TESSELLATOR_OUTPUT_TRIANGLE_CCW","features":[398]},{"name":"D3D_TESSELLATOR_OUTPUT_TRIANGLE_CW","features":[398]},{"name":"D3D_TESSELLATOR_OUTPUT_UNDEFINED","features":[398]},{"name":"D3D_TESSELLATOR_PARTITIONING","features":[398]},{"name":"D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_EVEN","features":[398]},{"name":"D3D_TESSELLATOR_PARTITIONING_FRACTIONAL_ODD","features":[398]},{"name":"D3D_TESSELLATOR_PARTITIONING_INTEGER","features":[398]},{"name":"D3D_TESSELLATOR_PARTITIONING_POW2","features":[398]},{"name":"D3D_TESSELLATOR_PARTITIONING_UNDEFINED","features":[398]},{"name":"D3D_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE","features":[398]},{"name":"D3D_TEXTURE_LAYOUT_ROW_MAJOR","features":[398]},{"name":"ID3DBlob","features":[398]},{"name":"ID3DDestructionNotifier","features":[398]},{"name":"ID3DInclude","features":[398]},{"name":"PFN_DESTRUCTION_CALLBACK","features":[398]},{"name":"WKPDID_CommentStringW","features":[398]},{"name":"WKPDID_D3D12UniqueObjectId","features":[398]},{"name":"WKPDID_D3DDebugObjectName","features":[398]},{"name":"WKPDID_D3DDebugObjectNameW","features":[398]}],"400":[{"name":"CLSID_DxcAssembler","features":[399]},{"name":"CLSID_DxcCompiler","features":[399]},{"name":"CLSID_DxcCompilerArgs","features":[399]},{"name":"CLSID_DxcContainerBuilder","features":[399]},{"name":"CLSID_DxcContainerReflection","features":[399]},{"name":"CLSID_DxcDiaDataSource","features":[399]},{"name":"CLSID_DxcLibrary","features":[399]},{"name":"CLSID_DxcLinker","features":[399]},{"name":"CLSID_DxcOptimizer","features":[399]},{"name":"CLSID_DxcPdbUtils","features":[399]},{"name":"CLSID_DxcUtils","features":[399]},{"name":"CLSID_DxcValidator","features":[399]},{"name":"DXC_ARG_ALL_RESOURCES_BOUND","features":[399]},{"name":"DXC_ARG_AVOID_FLOW_CONTROL","features":[399]},{"name":"DXC_ARG_DEBUG","features":[399]},{"name":"DXC_ARG_DEBUG_NAME_FOR_BINARY","features":[399]},{"name":"DXC_ARG_DEBUG_NAME_FOR_SOURCE","features":[399]},{"name":"DXC_ARG_ENABLE_BACKWARDS_COMPATIBILITY","features":[399]},{"name":"DXC_ARG_ENABLE_STRICTNESS","features":[399]},{"name":"DXC_ARG_IEEE_STRICTNESS","features":[399]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL0","features":[399]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL1","features":[399]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL2","features":[399]},{"name":"DXC_ARG_OPTIMIZATION_LEVEL3","features":[399]},{"name":"DXC_ARG_PACK_MATRIX_COLUMN_MAJOR","features":[399]},{"name":"DXC_ARG_PACK_MATRIX_ROW_MAJOR","features":[399]},{"name":"DXC_ARG_PREFER_FLOW_CONTROL","features":[399]},{"name":"DXC_ARG_RESOURCES_MAY_ALIAS","features":[399]},{"name":"DXC_ARG_SKIP_OPTIMIZATIONS","features":[399]},{"name":"DXC_ARG_SKIP_VALIDATION","features":[399]},{"name":"DXC_ARG_WARNINGS_ARE_ERRORS","features":[399]},{"name":"DXC_CP","features":[399]},{"name":"DXC_CP_ACP","features":[399]},{"name":"DXC_CP_UTF16","features":[399]},{"name":"DXC_CP_UTF8","features":[399]},{"name":"DXC_EXTRA_OUTPUT_NAME_STDERR","features":[399]},{"name":"DXC_EXTRA_OUTPUT_NAME_STDOUT","features":[399]},{"name":"DXC_HASHFLAG_INCLUDES_SOURCE","features":[399]},{"name":"DXC_OUT_DISASSEMBLY","features":[399]},{"name":"DXC_OUT_ERRORS","features":[399]},{"name":"DXC_OUT_EXTRA_OUTPUTS","features":[399]},{"name":"DXC_OUT_HLSL","features":[399]},{"name":"DXC_OUT_KIND","features":[399]},{"name":"DXC_OUT_NONE","features":[399]},{"name":"DXC_OUT_OBJECT","features":[399]},{"name":"DXC_OUT_PDB","features":[399]},{"name":"DXC_OUT_REFLECTION","features":[399]},{"name":"DXC_OUT_ROOT_SIGNATURE","features":[399]},{"name":"DXC_OUT_SHADER_HASH","features":[399]},{"name":"DXC_OUT_TEXT","features":[399]},{"name":"DxcArgPair","features":[399]},{"name":"DxcBuffer","features":[399]},{"name":"DxcCreateInstance","features":[399]},{"name":"DxcCreateInstance2","features":[399,356]},{"name":"DxcCreateInstance2Proc","features":[399,356]},{"name":"DxcCreateInstanceProc","features":[399]},{"name":"DxcDefine","features":[399]},{"name":"DxcShaderHash","features":[399]},{"name":"DxcValidatorFlags_Default","features":[399]},{"name":"DxcValidatorFlags_InPlaceEdit","features":[399]},{"name":"DxcValidatorFlags_ModuleOnly","features":[399]},{"name":"DxcValidatorFlags_RootSignatureOnly","features":[399]},{"name":"DxcValidatorFlags_ValidMask","features":[399]},{"name":"DxcVersionInfoFlags_Debug","features":[399]},{"name":"DxcVersionInfoFlags_Internal","features":[399]},{"name":"DxcVersionInfoFlags_None","features":[399]},{"name":"IDxcAssembler","features":[399]},{"name":"IDxcBlob","features":[399]},{"name":"IDxcBlobEncoding","features":[399]},{"name":"IDxcBlobUtf16","features":[399]},{"name":"IDxcBlobUtf8","features":[399]},{"name":"IDxcCompiler","features":[399]},{"name":"IDxcCompiler2","features":[399]},{"name":"IDxcCompiler3","features":[399]},{"name":"IDxcCompilerArgs","features":[399]},{"name":"IDxcContainerBuilder","features":[399]},{"name":"IDxcContainerReflection","features":[399]},{"name":"IDxcExtraOutputs","features":[399]},{"name":"IDxcIncludeHandler","features":[399]},{"name":"IDxcLibrary","features":[399]},{"name":"IDxcLinker","features":[399]},{"name":"IDxcOperationResult","features":[399]},{"name":"IDxcOptimizer","features":[399]},{"name":"IDxcOptimizerPass","features":[399]},{"name":"IDxcPdbUtils","features":[399]},{"name":"IDxcResult","features":[399]},{"name":"IDxcUtils","features":[399]},{"name":"IDxcValidator","features":[399]},{"name":"IDxcValidator2","features":[399]},{"name":"IDxcVersionInfo","features":[399]},{"name":"IDxcVersionInfo2","features":[399]},{"name":"IDxcVersionInfo3","features":[399]}],"401":[{"name":"D3DCOMPILER_DLL_A","features":[400]},{"name":"D3DCOMPILER_DLL_W","features":[400]},{"name":"D3DCOMPILER_STRIP_DEBUG_INFO","features":[400]},{"name":"D3DCOMPILER_STRIP_FLAGS","features":[400]},{"name":"D3DCOMPILER_STRIP_PRIVATE_DATA","features":[400]},{"name":"D3DCOMPILER_STRIP_REFLECTION_DATA","features":[400]},{"name":"D3DCOMPILER_STRIP_ROOT_SIGNATURE","features":[400]},{"name":"D3DCOMPILER_STRIP_TEST_BLOBS","features":[400]},{"name":"D3DCOMPILE_ALL_RESOURCES_BOUND","features":[400]},{"name":"D3DCOMPILE_AVOID_FLOW_CONTROL","features":[400]},{"name":"D3DCOMPILE_DEBUG","features":[400]},{"name":"D3DCOMPILE_DEBUG_NAME_FOR_BINARY","features":[400]},{"name":"D3DCOMPILE_DEBUG_NAME_FOR_SOURCE","features":[400]},{"name":"D3DCOMPILE_EFFECT_ALLOW_SLOW_OPS","features":[400]},{"name":"D3DCOMPILE_EFFECT_CHILD_EFFECT","features":[400]},{"name":"D3DCOMPILE_ENABLE_BACKWARDS_COMPATIBILITY","features":[400]},{"name":"D3DCOMPILE_ENABLE_STRICTNESS","features":[400]},{"name":"D3DCOMPILE_ENABLE_UNBOUNDED_DESCRIPTOR_TABLES","features":[400]},{"name":"D3DCOMPILE_FLAGS2_FORCE_ROOT_SIGNATURE_1_0","features":[400]},{"name":"D3DCOMPILE_FLAGS2_FORCE_ROOT_SIGNATURE_1_1","features":[400]},{"name":"D3DCOMPILE_FLAGS2_FORCE_ROOT_SIGNATURE_LATEST","features":[400]},{"name":"D3DCOMPILE_FORCE_PS_SOFTWARE_NO_OPT","features":[400]},{"name":"D3DCOMPILE_FORCE_VS_SOFTWARE_NO_OPT","features":[400]},{"name":"D3DCOMPILE_IEEE_STRICTNESS","features":[400]},{"name":"D3DCOMPILE_NO_PRESHADER","features":[400]},{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL0","features":[400]},{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL1","features":[400]},{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL3","features":[400]},{"name":"D3DCOMPILE_PACK_MATRIX_COLUMN_MAJOR","features":[400]},{"name":"D3DCOMPILE_PACK_MATRIX_ROW_MAJOR","features":[400]},{"name":"D3DCOMPILE_PARTIAL_PRECISION","features":[400]},{"name":"D3DCOMPILE_PREFER_FLOW_CONTROL","features":[400]},{"name":"D3DCOMPILE_RESERVED16","features":[400]},{"name":"D3DCOMPILE_RESERVED17","features":[400]},{"name":"D3DCOMPILE_RESOURCES_MAY_ALIAS","features":[400]},{"name":"D3DCOMPILE_SECDATA_MERGE_UAV_SLOTS","features":[400]},{"name":"D3DCOMPILE_SECDATA_PRESERVE_TEMPLATE_SLOTS","features":[400]},{"name":"D3DCOMPILE_SECDATA_REQUIRE_TEMPLATE_MATCH","features":[400]},{"name":"D3DCOMPILE_SKIP_OPTIMIZATION","features":[400]},{"name":"D3DCOMPILE_SKIP_VALIDATION","features":[400]},{"name":"D3DCOMPILE_WARNINGS_ARE_ERRORS","features":[400]},{"name":"D3DCompile","features":[400]},{"name":"D3DCompile2","features":[400]},{"name":"D3DCompileFromFile","features":[400]},{"name":"D3DCompressShaders","features":[400]},{"name":"D3DCreateBlob","features":[400]},{"name":"D3DCreateFunctionLinkingGraph","features":[400,401]},{"name":"D3DCreateLinker","features":[400,401]},{"name":"D3DDecompressShaders","features":[400]},{"name":"D3DDisassemble","features":[400]},{"name":"D3DDisassemble10Effect","features":[400,402]},{"name":"D3DDisassembleRegion","features":[400]},{"name":"D3DGetBlobPart","features":[400]},{"name":"D3DGetDebugInfo","features":[400]},{"name":"D3DGetInputAndOutputSignatureBlob","features":[400]},{"name":"D3DGetInputSignatureBlob","features":[400]},{"name":"D3DGetOutputSignatureBlob","features":[400]},{"name":"D3DGetTraceInstructionOffsets","features":[400]},{"name":"D3DLoadModule","features":[400,401]},{"name":"D3DPreprocess","features":[400]},{"name":"D3DReadFileToBlob","features":[400]},{"name":"D3DReflect","features":[400]},{"name":"D3DReflectLibrary","features":[400]},{"name":"D3DSetBlobPart","features":[400]},{"name":"D3DStripShader","features":[400]},{"name":"D3DWriteBlobToFile","features":[305,400]},{"name":"D3D_BLOB_ALL_SIGNATURE_BLOB","features":[400]},{"name":"D3D_BLOB_DEBUG_INFO","features":[400]},{"name":"D3D_BLOB_DEBUG_NAME","features":[400]},{"name":"D3D_BLOB_INPUT_AND_OUTPUT_SIGNATURE_BLOB","features":[400]},{"name":"D3D_BLOB_INPUT_SIGNATURE_BLOB","features":[400]},{"name":"D3D_BLOB_LEGACY_SHADER","features":[400]},{"name":"D3D_BLOB_OUTPUT_SIGNATURE_BLOB","features":[400]},{"name":"D3D_BLOB_PART","features":[400]},{"name":"D3D_BLOB_PATCH_CONSTANT_SIGNATURE_BLOB","features":[400]},{"name":"D3D_BLOB_PDB","features":[400]},{"name":"D3D_BLOB_PRIVATE_DATA","features":[400]},{"name":"D3D_BLOB_ROOT_SIGNATURE","features":[400]},{"name":"D3D_BLOB_TEST_ALTERNATE_SHADER","features":[400]},{"name":"D3D_BLOB_TEST_COMPILE_DETAILS","features":[400]},{"name":"D3D_BLOB_TEST_COMPILE_PERF","features":[400]},{"name":"D3D_BLOB_TEST_COMPILE_REPORT","features":[400]},{"name":"D3D_BLOB_XNA_PREPASS_SHADER","features":[400]},{"name":"D3D_BLOB_XNA_SHADER","features":[400]},{"name":"D3D_COMPILER_VERSION","features":[400]},{"name":"D3D_COMPRESS_SHADER_KEEP_ALL_PARTS","features":[400]},{"name":"D3D_DISASM_DISABLE_DEBUG_INFO","features":[400]},{"name":"D3D_DISASM_ENABLE_COLOR_CODE","features":[400]},{"name":"D3D_DISASM_ENABLE_DEFAULT_VALUE_PRINTS","features":[400]},{"name":"D3D_DISASM_ENABLE_INSTRUCTION_CYCLE","features":[400]},{"name":"D3D_DISASM_ENABLE_INSTRUCTION_NUMBERING","features":[400]},{"name":"D3D_DISASM_ENABLE_INSTRUCTION_OFFSET","features":[400]},{"name":"D3D_DISASM_INSTRUCTION_ONLY","features":[400]},{"name":"D3D_DISASM_PRINT_HEX_LITERALS","features":[400]},{"name":"D3D_GET_INST_OFFSETS_INCLUDE_NON_EXECUTABLE","features":[400]},{"name":"D3D_SHADER_DATA","features":[400]},{"name":"pD3DCompile","features":[400]},{"name":"pD3DDisassemble","features":[400]},{"name":"pD3DPreprocess","features":[400]}],"402":[{"name":"D3D10CompileEffectFromMemory","features":[398,402]},{"name":"D3D10CompileShader","features":[398,402]},{"name":"D3D10CreateBlob","features":[398,402]},{"name":"D3D10CreateDevice","features":[305,402,397]},{"name":"D3D10CreateDevice1","features":[305,402,397]},{"name":"D3D10CreateDeviceAndSwapChain","features":[305,402,393]},{"name":"D3D10CreateDeviceAndSwapChain1","features":[305,402,393]},{"name":"D3D10CreateEffectFromMemory","features":[402]},{"name":"D3D10CreateEffectPoolFromMemory","features":[402]},{"name":"D3D10CreateStateBlock","features":[402]},{"name":"D3D10DisassembleEffect","features":[305,398,402]},{"name":"D3D10DisassembleShader","features":[305,398,402]},{"name":"D3D10GetGeometryShaderProfile","features":[402]},{"name":"D3D10GetInputAndOutputSignatureBlob","features":[398,402]},{"name":"D3D10GetInputSignatureBlob","features":[398,402]},{"name":"D3D10GetOutputSignatureBlob","features":[398,402]},{"name":"D3D10GetPixelShaderProfile","features":[402]},{"name":"D3D10GetShaderDebugInfo","features":[398,402]},{"name":"D3D10GetVertexShaderProfile","features":[402]},{"name":"D3D10PreprocessShader","features":[398,402]},{"name":"D3D10ReflectShader","features":[402]},{"name":"D3D10StateBlockMaskDifference","features":[402]},{"name":"D3D10StateBlockMaskDisableAll","features":[402]},{"name":"D3D10StateBlockMaskDisableCapture","features":[402]},{"name":"D3D10StateBlockMaskEnableAll","features":[402]},{"name":"D3D10StateBlockMaskEnableCapture","features":[402]},{"name":"D3D10StateBlockMaskGetSetting","features":[305,402]},{"name":"D3D10StateBlockMaskIntersect","features":[402]},{"name":"D3D10StateBlockMaskUnion","features":[402]},{"name":"D3D10_16BIT_INDEX_STRIP_CUT_VALUE","features":[402]},{"name":"D3D10_1_DEFAULT_SAMPLE_MASK","features":[402]},{"name":"D3D10_1_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[402]},{"name":"D3D10_1_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[402]},{"name":"D3D10_1_GS_INPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_1_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[402]},{"name":"D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[402]},{"name":"D3D10_1_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[402]},{"name":"D3D10_1_PS_OUTPUT_MASK_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_1_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_1_PS_OUTPUT_MASK_REGISTER_COUNT","features":[402]},{"name":"D3D10_1_SHADER_MAJOR_VERSION","features":[402]},{"name":"D3D10_1_SHADER_MINOR_VERSION","features":[402]},{"name":"D3D10_1_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[402]},{"name":"D3D10_1_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[402]},{"name":"D3D10_1_SO_BUFFER_SLOT_COUNT","features":[402]},{"name":"D3D10_1_SO_MULTIPLE_BUFFER_ELEMENTS_PER_BUFFER","features":[402]},{"name":"D3D10_1_SO_SINGLE_BUFFER_COMPONENT_LIMIT","features":[402]},{"name":"D3D10_1_STANDARD_VERTEX_ELEMENT_COUNT","features":[402]},{"name":"D3D10_1_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[402]},{"name":"D3D10_1_VS_INPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_1_VS_OUTPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_32BIT_INDEX_STRIP_CUT_VALUE","features":[402]},{"name":"D3D10_8BIT_INDEX_STRIP_CUT_VALUE","features":[402]},{"name":"D3D10_ALL_RESOURCES_BOUND","features":[402]},{"name":"D3D10_ANISOTROPIC_FILTERING_BIT","features":[402]},{"name":"D3D10_APPEND_ALIGNED_ELEMENT","features":[402]},{"name":"D3D10_APPNAME_STRING","features":[402]},{"name":"D3D10_APPSIZE_STRING","features":[402]},{"name":"D3D10_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT","features":[402]},{"name":"D3D10_ASYNC_GETDATA_DONOTFLUSH","features":[402]},{"name":"D3D10_ASYNC_GETDATA_FLAG","features":[402]},{"name":"D3D10_BIND_CONSTANT_BUFFER","features":[402]},{"name":"D3D10_BIND_DEPTH_STENCIL","features":[402]},{"name":"D3D10_BIND_FLAG","features":[402]},{"name":"D3D10_BIND_INDEX_BUFFER","features":[402]},{"name":"D3D10_BIND_RENDER_TARGET","features":[402]},{"name":"D3D10_BIND_SHADER_RESOURCE","features":[402]},{"name":"D3D10_BIND_STREAM_OUTPUT","features":[402]},{"name":"D3D10_BIND_VERTEX_BUFFER","features":[402]},{"name":"D3D10_BLEND","features":[402]},{"name":"D3D10_BLEND_BLEND_FACTOR","features":[402]},{"name":"D3D10_BLEND_DESC","features":[305,402]},{"name":"D3D10_BLEND_DESC1","features":[305,402]},{"name":"D3D10_BLEND_DEST_ALPHA","features":[402]},{"name":"D3D10_BLEND_DEST_COLOR","features":[402]},{"name":"D3D10_BLEND_INV_BLEND_FACTOR","features":[402]},{"name":"D3D10_BLEND_INV_DEST_ALPHA","features":[402]},{"name":"D3D10_BLEND_INV_DEST_COLOR","features":[402]},{"name":"D3D10_BLEND_INV_SRC1_ALPHA","features":[402]},{"name":"D3D10_BLEND_INV_SRC1_COLOR","features":[402]},{"name":"D3D10_BLEND_INV_SRC_ALPHA","features":[402]},{"name":"D3D10_BLEND_INV_SRC_COLOR","features":[402]},{"name":"D3D10_BLEND_ONE","features":[402]},{"name":"D3D10_BLEND_OP","features":[402]},{"name":"D3D10_BLEND_OP_ADD","features":[402]},{"name":"D3D10_BLEND_OP_MAX","features":[402]},{"name":"D3D10_BLEND_OP_MIN","features":[402]},{"name":"D3D10_BLEND_OP_REV_SUBTRACT","features":[402]},{"name":"D3D10_BLEND_OP_SUBTRACT","features":[402]},{"name":"D3D10_BLEND_SRC1_ALPHA","features":[402]},{"name":"D3D10_BLEND_SRC1_COLOR","features":[402]},{"name":"D3D10_BLEND_SRC_ALPHA","features":[402]},{"name":"D3D10_BLEND_SRC_ALPHA_SAT","features":[402]},{"name":"D3D10_BLEND_SRC_COLOR","features":[402]},{"name":"D3D10_BLEND_ZERO","features":[402]},{"name":"D3D10_BOX","features":[402]},{"name":"D3D10_BREAKON_CATEGORY","features":[402]},{"name":"D3D10_BREAKON_ID_DECIMAL","features":[402]},{"name":"D3D10_BREAKON_ID_STRING","features":[402]},{"name":"D3D10_BREAKON_SEVERITY","features":[402]},{"name":"D3D10_BUFFER_DESC","features":[402]},{"name":"D3D10_BUFFER_RTV","features":[402]},{"name":"D3D10_BUFFER_SRV","features":[402]},{"name":"D3D10_CENTER_MULTISAMPLE_PATTERN","features":[402]},{"name":"D3D10_CLEAR_DEPTH","features":[402]},{"name":"D3D10_CLEAR_FLAG","features":[402]},{"name":"D3D10_CLEAR_STENCIL","features":[402]},{"name":"D3D10_CLIP_OR_CULL_DISTANCE_COUNT","features":[402]},{"name":"D3D10_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT","features":[402]},{"name":"D3D10_COLOR_WRITE_ENABLE","features":[402]},{"name":"D3D10_COLOR_WRITE_ENABLE_ALL","features":[402]},{"name":"D3D10_COLOR_WRITE_ENABLE_ALPHA","features":[402]},{"name":"D3D10_COLOR_WRITE_ENABLE_BLUE","features":[402]},{"name":"D3D10_COLOR_WRITE_ENABLE_GREEN","features":[402]},{"name":"D3D10_COLOR_WRITE_ENABLE_RED","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT","features":[402]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_SUBROUTINE_NESTING_LIMIT","features":[402]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_COUNT","features":[402]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_COMMONSHADER_TEMP_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX","features":[402]},{"name":"D3D10_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN","features":[402]},{"name":"D3D10_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE","features":[402]},{"name":"D3D10_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE","features":[402]},{"name":"D3D10_COMPARISON_ALWAYS","features":[402]},{"name":"D3D10_COMPARISON_EQUAL","features":[402]},{"name":"D3D10_COMPARISON_FILTERING_BIT","features":[402]},{"name":"D3D10_COMPARISON_FUNC","features":[402]},{"name":"D3D10_COMPARISON_GREATER","features":[402]},{"name":"D3D10_COMPARISON_GREATER_EQUAL","features":[402]},{"name":"D3D10_COMPARISON_LESS","features":[402]},{"name":"D3D10_COMPARISON_LESS_EQUAL","features":[402]},{"name":"D3D10_COMPARISON_NEVER","features":[402]},{"name":"D3D10_COMPARISON_NOT_EQUAL","features":[402]},{"name":"D3D10_COUNTER","features":[402]},{"name":"D3D10_COUNTER_DESC","features":[402]},{"name":"D3D10_COUNTER_DEVICE_DEPENDENT_0","features":[402]},{"name":"D3D10_COUNTER_FILLRATE_THROUGHPUT_UTILIZATION","features":[402]},{"name":"D3D10_COUNTER_GEOMETRY_PROCESSING","features":[402]},{"name":"D3D10_COUNTER_GPU_IDLE","features":[402]},{"name":"D3D10_COUNTER_GS_COMPUTATION_LIMITED","features":[402]},{"name":"D3D10_COUNTER_GS_MEMORY_LIMITED","features":[402]},{"name":"D3D10_COUNTER_HOST_ADAPTER_BANDWIDTH_UTILIZATION","features":[402]},{"name":"D3D10_COUNTER_INFO","features":[402]},{"name":"D3D10_COUNTER_LOCAL_VIDMEM_BANDWIDTH_UTILIZATION","features":[402]},{"name":"D3D10_COUNTER_OTHER_GPU_PROCESSING","features":[402]},{"name":"D3D10_COUNTER_PIXEL_PROCESSING","features":[402]},{"name":"D3D10_COUNTER_POST_TRANSFORM_CACHE_HIT_RATE","features":[402]},{"name":"D3D10_COUNTER_PS_COMPUTATION_LIMITED","features":[402]},{"name":"D3D10_COUNTER_PS_MEMORY_LIMITED","features":[402]},{"name":"D3D10_COUNTER_TEXTURE_CACHE_HIT_RATE","features":[402]},{"name":"D3D10_COUNTER_TRIANGLE_SETUP_THROUGHPUT_UTILIZATION","features":[402]},{"name":"D3D10_COUNTER_TYPE","features":[402]},{"name":"D3D10_COUNTER_TYPE_FLOAT32","features":[402]},{"name":"D3D10_COUNTER_TYPE_UINT16","features":[402]},{"name":"D3D10_COUNTER_TYPE_UINT32","features":[402]},{"name":"D3D10_COUNTER_TYPE_UINT64","features":[402]},{"name":"D3D10_COUNTER_VERTEX_PROCESSING","features":[402]},{"name":"D3D10_COUNTER_VERTEX_THROUGHPUT_UTILIZATION","features":[402]},{"name":"D3D10_COUNTER_VS_COMPUTATION_LIMITED","features":[402]},{"name":"D3D10_COUNTER_VS_MEMORY_LIMITED","features":[402]},{"name":"D3D10_CPU_ACCESS_FLAG","features":[402]},{"name":"D3D10_CPU_ACCESS_READ","features":[402]},{"name":"D3D10_CPU_ACCESS_WRITE","features":[402]},{"name":"D3D10_CREATE_DEVICE_ALLOW_NULL_FROM_MAP","features":[402]},{"name":"D3D10_CREATE_DEVICE_BGRA_SUPPORT","features":[402]},{"name":"D3D10_CREATE_DEVICE_DEBUG","features":[402]},{"name":"D3D10_CREATE_DEVICE_DEBUGGABLE","features":[402]},{"name":"D3D10_CREATE_DEVICE_FLAG","features":[402]},{"name":"D3D10_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY","features":[402]},{"name":"D3D10_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS","features":[402]},{"name":"D3D10_CREATE_DEVICE_SINGLETHREADED","features":[402]},{"name":"D3D10_CREATE_DEVICE_STRICT_VALIDATION","features":[402]},{"name":"D3D10_CREATE_DEVICE_SWITCH_TO_REF","features":[402]},{"name":"D3D10_CULL_BACK","features":[402]},{"name":"D3D10_CULL_FRONT","features":[402]},{"name":"D3D10_CULL_MODE","features":[402]},{"name":"D3D10_CULL_NONE","features":[402]},{"name":"D3D10_DEBUG_FEATURE_FINISH_PER_RENDER_OP","features":[402]},{"name":"D3D10_DEBUG_FEATURE_FLUSH_PER_RENDER_OP","features":[402]},{"name":"D3D10_DEBUG_FEATURE_PRESENT_PER_RENDER_OP","features":[402]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_ALPHA","features":[402]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_BLUE","features":[402]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_GREEN","features":[402]},{"name":"D3D10_DEFAULT_BLEND_FACTOR_RED","features":[402]},{"name":"D3D10_DEFAULT_BORDER_COLOR_COMPONENT","features":[402]},{"name":"D3D10_DEFAULT_DEPTH_BIAS","features":[402]},{"name":"D3D10_DEFAULT_DEPTH_BIAS_CLAMP","features":[402]},{"name":"D3D10_DEFAULT_MAX_ANISOTROPY","features":[402]},{"name":"D3D10_DEFAULT_MIP_LOD_BIAS","features":[402]},{"name":"D3D10_DEFAULT_RENDER_TARGET_ARRAY_INDEX","features":[402]},{"name":"D3D10_DEFAULT_SAMPLE_MASK","features":[402]},{"name":"D3D10_DEFAULT_SCISSOR_ENDX","features":[402]},{"name":"D3D10_DEFAULT_SCISSOR_ENDY","features":[402]},{"name":"D3D10_DEFAULT_SCISSOR_STARTX","features":[402]},{"name":"D3D10_DEFAULT_SCISSOR_STARTY","features":[402]},{"name":"D3D10_DEFAULT_SLOPE_SCALED_DEPTH_BIAS","features":[402]},{"name":"D3D10_DEFAULT_STENCIL_READ_MASK","features":[402]},{"name":"D3D10_DEFAULT_STENCIL_REFERENCE","features":[402]},{"name":"D3D10_DEFAULT_STENCIL_WRITE_MASK","features":[402]},{"name":"D3D10_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX","features":[402]},{"name":"D3D10_DEFAULT_VIEWPORT_HEIGHT","features":[402]},{"name":"D3D10_DEFAULT_VIEWPORT_MAX_DEPTH","features":[402]},{"name":"D3D10_DEFAULT_VIEWPORT_MIN_DEPTH","features":[402]},{"name":"D3D10_DEFAULT_VIEWPORT_TOPLEFTX","features":[402]},{"name":"D3D10_DEFAULT_VIEWPORT_TOPLEFTY","features":[402]},{"name":"D3D10_DEFAULT_VIEWPORT_WIDTH","features":[402]},{"name":"D3D10_DEPTH_STENCILOP_DESC","features":[402]},{"name":"D3D10_DEPTH_STENCIL_DESC","features":[305,402]},{"name":"D3D10_DEPTH_STENCIL_VIEW_DESC","features":[402,393]},{"name":"D3D10_DEPTH_WRITE_MASK","features":[402]},{"name":"D3D10_DEPTH_WRITE_MASK_ALL","features":[402]},{"name":"D3D10_DEPTH_WRITE_MASK_ZERO","features":[402]},{"name":"D3D10_DEVICE_STATE_TYPES","features":[402]},{"name":"D3D10_DRIVER_TYPE","features":[402]},{"name":"D3D10_DRIVER_TYPE_HARDWARE","features":[402]},{"name":"D3D10_DRIVER_TYPE_NULL","features":[402]},{"name":"D3D10_DRIVER_TYPE_REFERENCE","features":[402]},{"name":"D3D10_DRIVER_TYPE_SOFTWARE","features":[402]},{"name":"D3D10_DRIVER_TYPE_WARP","features":[402]},{"name":"D3D10_DST_GS","features":[402]},{"name":"D3D10_DST_GS_CONSTANT_BUFFERS","features":[402]},{"name":"D3D10_DST_GS_SAMPLERS","features":[402]},{"name":"D3D10_DST_GS_SHADER_RESOURCES","features":[402]},{"name":"D3D10_DST_IA_INDEX_BUFFER","features":[402]},{"name":"D3D10_DST_IA_INPUT_LAYOUT","features":[402]},{"name":"D3D10_DST_IA_PRIMITIVE_TOPOLOGY","features":[402]},{"name":"D3D10_DST_IA_VERTEX_BUFFERS","features":[402]},{"name":"D3D10_DST_OM_BLEND_STATE","features":[402]},{"name":"D3D10_DST_OM_DEPTH_STENCIL_STATE","features":[402]},{"name":"D3D10_DST_OM_RENDER_TARGETS","features":[402]},{"name":"D3D10_DST_PREDICATION","features":[402]},{"name":"D3D10_DST_PS","features":[402]},{"name":"D3D10_DST_PS_CONSTANT_BUFFERS","features":[402]},{"name":"D3D10_DST_PS_SAMPLERS","features":[402]},{"name":"D3D10_DST_PS_SHADER_RESOURCES","features":[402]},{"name":"D3D10_DST_RS_RASTERIZER_STATE","features":[402]},{"name":"D3D10_DST_RS_SCISSOR_RECTS","features":[402]},{"name":"D3D10_DST_RS_VIEWPORTS","features":[402]},{"name":"D3D10_DST_SO_BUFFERS","features":[402]},{"name":"D3D10_DST_VS","features":[402]},{"name":"D3D10_DST_VS_CONSTANT_BUFFERS","features":[402]},{"name":"D3D10_DST_VS_SAMPLERS","features":[402]},{"name":"D3D10_DST_VS_SHADER_RESOURCES","features":[402]},{"name":"D3D10_DSV_DIMENSION","features":[402]},{"name":"D3D10_DSV_DIMENSION_TEXTURE1D","features":[402]},{"name":"D3D10_DSV_DIMENSION_TEXTURE1DARRAY","features":[402]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2D","features":[402]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2DARRAY","features":[402]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2DMS","features":[402]},{"name":"D3D10_DSV_DIMENSION_TEXTURE2DMSARRAY","features":[402]},{"name":"D3D10_DSV_DIMENSION_UNKNOWN","features":[402]},{"name":"D3D10_EFFECT_COMPILE_ALLOW_SLOW_OPS","features":[402]},{"name":"D3D10_EFFECT_COMPILE_CHILD_EFFECT","features":[402]},{"name":"D3D10_EFFECT_DESC","features":[305,402]},{"name":"D3D10_EFFECT_SHADER_DESC","features":[305,402]},{"name":"D3D10_EFFECT_SINGLE_THREADED","features":[402]},{"name":"D3D10_EFFECT_TYPE_DESC","features":[398,402]},{"name":"D3D10_EFFECT_VARIABLE_ANNOTATION","features":[402]},{"name":"D3D10_EFFECT_VARIABLE_DESC","features":[402]},{"name":"D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT","features":[402]},{"name":"D3D10_EFFECT_VARIABLE_POOLED","features":[402]},{"name":"D3D10_ENABLE_BREAK_ON_MESSAGE","features":[402]},{"name":"D3D10_ENABLE_UNBOUNDED_DESCRIPTOR_TABLES","features":[402]},{"name":"D3D10_FEATURE_LEVEL1","features":[402]},{"name":"D3D10_FEATURE_LEVEL_10_0","features":[402]},{"name":"D3D10_FEATURE_LEVEL_10_1","features":[402]},{"name":"D3D10_FEATURE_LEVEL_9_1","features":[402]},{"name":"D3D10_FEATURE_LEVEL_9_2","features":[402]},{"name":"D3D10_FEATURE_LEVEL_9_3","features":[402]},{"name":"D3D10_FILL_MODE","features":[402]},{"name":"D3D10_FILL_SOLID","features":[402]},{"name":"D3D10_FILL_WIREFRAME","features":[402]},{"name":"D3D10_FILTER","features":[402]},{"name":"D3D10_FILTER_ANISOTROPIC","features":[402]},{"name":"D3D10_FILTER_COMPARISON_ANISOTROPIC","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_MIN_MAG_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_MIN_MAG_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[402]},{"name":"D3D10_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[402]},{"name":"D3D10_FILTER_TEXT_1BIT","features":[402]},{"name":"D3D10_FILTER_TYPE","features":[402]},{"name":"D3D10_FILTER_TYPE_LINEAR","features":[402]},{"name":"D3D10_FILTER_TYPE_MASK","features":[402]},{"name":"D3D10_FILTER_TYPE_POINT","features":[402]},{"name":"D3D10_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[402]},{"name":"D3D10_FLOAT32_MAX","features":[402]},{"name":"D3D10_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[402]},{"name":"D3D10_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR","features":[402]},{"name":"D3D10_FLOAT_TO_SRGB_EXPONENT_NUMERATOR","features":[402]},{"name":"D3D10_FLOAT_TO_SRGB_OFFSET","features":[402]},{"name":"D3D10_FLOAT_TO_SRGB_SCALE_1","features":[402]},{"name":"D3D10_FLOAT_TO_SRGB_SCALE_2","features":[402]},{"name":"D3D10_FLOAT_TO_SRGB_THRESHOLD","features":[402]},{"name":"D3D10_FORMAT_SUPPORT","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_BACK_BUFFER_CAST","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_BLENDABLE","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_BUFFER","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_CPU_LOCKABLE","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_DEPTH_STENCIL","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_DISPLAY","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_IA_INDEX_BUFFER","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_IA_VERTEX_BUFFER","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_MIP","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_MIP_AUTOGEN","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_MULTISAMPLE_LOAD","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_RENDER_TARGET","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_GATHER","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_LOAD","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_SAMPLE","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_SO_BUFFER","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURE1D","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURE2D","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURE3D","features":[402]},{"name":"D3D10_FORMAT_SUPPORT_TEXTURECUBE","features":[402]},{"name":"D3D10_FTOI_INSTRUCTION_MAX_INPUT","features":[402]},{"name":"D3D10_FTOI_INSTRUCTION_MIN_INPUT","features":[402]},{"name":"D3D10_FTOU_INSTRUCTION_MAX_INPUT","features":[402]},{"name":"D3D10_FTOU_INSTRUCTION_MIN_INPUT","features":[402]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_COUNT","features":[402]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_GS_INPUT_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_GS_INPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_GS_INPUT_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_GS_INPUT_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_GS_INPUT_REGISTER_VERTICES","features":[402]},{"name":"D3D10_GS_OUTPUT_ELEMENTS","features":[402]},{"name":"D3D10_GS_OUTPUT_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_GS_OUTPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES","features":[402]},{"name":"D3D10_IA_DEFAULT_PRIMITIVE_TOPOLOGY","features":[402]},{"name":"D3D10_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES","features":[402]},{"name":"D3D10_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT","features":[402]},{"name":"D3D10_IA_INSTANCE_ID_BIT_COUNT","features":[402]},{"name":"D3D10_IA_INTEGER_ARITHMETIC_BIT_COUNT","features":[402]},{"name":"D3D10_IA_PRIMITIVE_ID_BIT_COUNT","features":[402]},{"name":"D3D10_IA_VERTEX_ID_BIT_COUNT","features":[402]},{"name":"D3D10_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[402]},{"name":"D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[402]},{"name":"D3D10_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[402]},{"name":"D3D10_INFOQUEUE_STORAGE_FILTER_OVERRIDE","features":[402]},{"name":"D3D10_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[402]},{"name":"D3D10_INFO_QUEUE_FILTER","features":[402]},{"name":"D3D10_INFO_QUEUE_FILTER_DESC","features":[402]},{"name":"D3D10_INPUT_CLASSIFICATION","features":[402]},{"name":"D3D10_INPUT_ELEMENT_DESC","features":[402,393]},{"name":"D3D10_INPUT_PER_INSTANCE_DATA","features":[402]},{"name":"D3D10_INPUT_PER_VERTEX_DATA","features":[402]},{"name":"D3D10_INTEGER_DIVIDE_BY_ZERO_QUOTIENT","features":[402]},{"name":"D3D10_INTEGER_DIVIDE_BY_ZERO_REMAINDER","features":[402]},{"name":"D3D10_LINEAR_GAMMA","features":[402]},{"name":"D3D10_MAG_FILTER_SHIFT","features":[402]},{"name":"D3D10_MAP","features":[402]},{"name":"D3D10_MAPPED_TEXTURE2D","features":[402]},{"name":"D3D10_MAPPED_TEXTURE3D","features":[402]},{"name":"D3D10_MAP_FLAG","features":[402]},{"name":"D3D10_MAP_FLAG_DO_NOT_WAIT","features":[402]},{"name":"D3D10_MAP_READ","features":[402]},{"name":"D3D10_MAP_READ_WRITE","features":[402]},{"name":"D3D10_MAP_WRITE","features":[402]},{"name":"D3D10_MAP_WRITE_DISCARD","features":[402]},{"name":"D3D10_MAP_WRITE_NO_OVERWRITE","features":[402]},{"name":"D3D10_MAX_BORDER_COLOR_COMPONENT","features":[402]},{"name":"D3D10_MAX_DEPTH","features":[402]},{"name":"D3D10_MAX_MAXANISOTROPY","features":[402]},{"name":"D3D10_MAX_MULTISAMPLE_SAMPLE_COUNT","features":[402]},{"name":"D3D10_MAX_POSITION_VALUE","features":[402]},{"name":"D3D10_MAX_TEXTURE_DIMENSION_2_TO_EXP","features":[402]},{"name":"D3D10_MESSAGE","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_APPLICATION_DEFINED","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_CLEANUP","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_COMPILATION","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_EXECUTION","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_INITIALIZATION","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_MISCELLANEOUS","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_SHADER","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_STATE_CREATION","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_STATE_GETTING","features":[402]},{"name":"D3D10_MESSAGE_CATEGORY_STATE_SETTING","features":[402]},{"name":"D3D10_MESSAGE_ID","features":[402]},{"name":"D3D10_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY","features":[402]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER","features":[402]},{"name":"D3D10_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[402]},{"name":"D3D10_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED","features":[402]},{"name":"D3D10_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED","features":[402]},{"name":"D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH","features":[402]},{"name":"D3D10_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_MULTITHREADING","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER1","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER10","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER11","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER12","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER13","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER14","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER15","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER2","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER3","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER4","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER5","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER6","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER7","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER8","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_PARAMETER9","features":[402]},{"name":"D3D10_MESSAGE_ID_CORRUPTED_THIS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_NULLDESC","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_D3D10L9_MESSAGES_END","features":[402]},{"name":"D3D10_MESSAGE_ID_D3D10L9_MESSAGES_START","features":[402]},{"name":"D3D10_MESSAGE_ID_D3D10_MESSAGES_END","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD","features":[402]},{"name":"D3D10_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY","features":[402]},{"name":"D3D10_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3","features":[402]},{"name":"D3D10_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE","features":[402]},{"name":"D3D10_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_GETPRIVATEDATA_MOREDATA","features":[402]},{"name":"D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX","features":[402]},{"name":"D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_BLENDSTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_BUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_COUNTER","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_DEVICE","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_GEOMETRYSHADER","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_INPUTLAYOUT","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_OBJECT_SUMMARY","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_PIXELSHADER","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_PREDICATE","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_QUERY","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_RASTERIZERSTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_RENDERTARGETVIEW","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_SAMPLER","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_SWAPCHAIN","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_TEXTURE1D","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_TEXTURE2D","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_TEXTURE3D","features":[402]},{"name":"D3D10_MESSAGE_ID_LIVE_VERTEXSHADER","features":[402]},{"name":"D3D10_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW","features":[402]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS","features":[402]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT","features":[402]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS","features":[402]},{"name":"D3D10_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION","features":[402]},{"name":"D3D10_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION","features":[402]},{"name":"D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[402]},{"name":"D3D10_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_BEGIN_DUPLICATE","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE","features":[402]},{"name":"D3D10_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_HARDWARE_EXCEPTION","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_INFO","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_KMDRIVER_EXCEPTION","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_OUT_OF_MEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_THREADING_MODE","features":[402]},{"name":"D3D10_MESSAGE_ID_REF_UMDRIVER_EXCEPTION","features":[402]},{"name":"D3D10_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO","features":[402]},{"name":"D3D10_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE","features":[402]},{"name":"D3D10_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS","features":[402]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA","features":[402]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN","features":[402]},{"name":"D3D10_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY","features":[402]},{"name":"D3D10_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY","features":[402]},{"name":"D3D10_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA","features":[402]},{"name":"D3D10_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_STRING_FROM_APPLICATION","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED","features":[402]},{"name":"D3D10_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_UNKNOWN","features":[402]},{"name":"D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX","features":[402]},{"name":"D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE","features":[402]},{"name":"D3D10_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT","features":[402]},{"name":"D3D10_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED","features":[402]},{"name":"D3D10_MESSAGE_SEVERITY","features":[402]},{"name":"D3D10_MESSAGE_SEVERITY_CORRUPTION","features":[402]},{"name":"D3D10_MESSAGE_SEVERITY_ERROR","features":[402]},{"name":"D3D10_MESSAGE_SEVERITY_INFO","features":[402]},{"name":"D3D10_MESSAGE_SEVERITY_MESSAGE","features":[402]},{"name":"D3D10_MESSAGE_SEVERITY_WARNING","features":[402]},{"name":"D3D10_MIN_BORDER_COLOR_COMPONENT","features":[402]},{"name":"D3D10_MIN_DEPTH","features":[402]},{"name":"D3D10_MIN_FILTER_SHIFT","features":[402]},{"name":"D3D10_MIN_MAXANISOTROPY","features":[402]},{"name":"D3D10_MIP_FILTER_SHIFT","features":[402]},{"name":"D3D10_MIP_LOD_BIAS_MAX","features":[402]},{"name":"D3D10_MIP_LOD_BIAS_MIN","features":[402]},{"name":"D3D10_MIP_LOD_FRACTIONAL_BIT_COUNT","features":[402]},{"name":"D3D10_MIP_LOD_RANGE_BIT_COUNT","features":[402]},{"name":"D3D10_MULTISAMPLE_ANTIALIAS_LINE_WIDTH","features":[402]},{"name":"D3D10_MUTE_CATEGORY","features":[402]},{"name":"D3D10_MUTE_DEBUG_OUTPUT","features":[402]},{"name":"D3D10_MUTE_ID_DECIMAL","features":[402]},{"name":"D3D10_MUTE_ID_STRING","features":[402]},{"name":"D3D10_MUTE_SEVERITY","features":[402]},{"name":"D3D10_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT","features":[402]},{"name":"D3D10_PASS_DESC","features":[402]},{"name":"D3D10_PASS_SHADER_DESC","features":[402]},{"name":"D3D10_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[402]},{"name":"D3D10_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[402]},{"name":"D3D10_PS_FRONTFACING_DEFAULT_VALUE","features":[402]},{"name":"D3D10_PS_FRONTFACING_FALSE_VALUE","features":[402]},{"name":"D3D10_PS_FRONTFACING_TRUE_VALUE","features":[402]},{"name":"D3D10_PS_INPUT_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_PS_INPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_PS_INPUT_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_PS_INPUT_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[402]},{"name":"D3D10_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_PS_OUTPUT_DEPTH_REGISTER_COUNT","features":[402]},{"name":"D3D10_PS_OUTPUT_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_PS_OUTPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[402]},{"name":"D3D10_QUERY","features":[402]},{"name":"D3D10_QUERY_DATA_PIPELINE_STATISTICS","features":[402]},{"name":"D3D10_QUERY_DATA_SO_STATISTICS","features":[402]},{"name":"D3D10_QUERY_DATA_TIMESTAMP_DISJOINT","features":[305,402]},{"name":"D3D10_QUERY_DESC","features":[402]},{"name":"D3D10_QUERY_EVENT","features":[402]},{"name":"D3D10_QUERY_MISC_FLAG","features":[402]},{"name":"D3D10_QUERY_MISC_PREDICATEHINT","features":[402]},{"name":"D3D10_QUERY_OCCLUSION","features":[402]},{"name":"D3D10_QUERY_OCCLUSION_PREDICATE","features":[402]},{"name":"D3D10_QUERY_PIPELINE_STATISTICS","features":[402]},{"name":"D3D10_QUERY_SO_OVERFLOW_PREDICATE","features":[402]},{"name":"D3D10_QUERY_SO_STATISTICS","features":[402]},{"name":"D3D10_QUERY_TIMESTAMP","features":[402]},{"name":"D3D10_QUERY_TIMESTAMP_DISJOINT","features":[402]},{"name":"D3D10_RAISE_FLAG","features":[402]},{"name":"D3D10_RAISE_FLAG_DRIVER_INTERNAL_ERROR","features":[402]},{"name":"D3D10_RASTERIZER_DESC","features":[305,402]},{"name":"D3D10_REGKEY_PATH","features":[402]},{"name":"D3D10_RENDER_TARGET_BLEND_DESC1","features":[305,402]},{"name":"D3D10_RENDER_TARGET_VIEW_DESC","features":[402,393]},{"name":"D3D10_REQ_BLEND_OBJECT_COUNT_PER_CONTEXT","features":[402]},{"name":"D3D10_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP","features":[402]},{"name":"D3D10_REQ_CONSTANT_BUFFER_ELEMENT_COUNT","features":[402]},{"name":"D3D10_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_CONTEXT","features":[402]},{"name":"D3D10_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[402]},{"name":"D3D10_REQ_DRAW_VERTEX_COUNT_2_TO_EXP","features":[402]},{"name":"D3D10_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION","features":[402]},{"name":"D3D10_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT","features":[402]},{"name":"D3D10_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT","features":[402]},{"name":"D3D10_REQ_MAXANISOTROPY","features":[402]},{"name":"D3D10_REQ_MIP_LEVELS","features":[402]},{"name":"D3D10_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES","features":[402]},{"name":"D3D10_REQ_RASTERIZER_OBJECT_COUNT_PER_CONTEXT","features":[402]},{"name":"D3D10_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH","features":[402]},{"name":"D3D10_REQ_RESOURCE_SIZE_IN_MEGABYTES","features":[402]},{"name":"D3D10_REQ_RESOURCE_VIEW_COUNT_PER_CONTEXT_2_TO_EXP","features":[402]},{"name":"D3D10_REQ_SAMPLER_OBJECT_COUNT_PER_CONTEXT","features":[402]},{"name":"D3D10_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION","features":[402]},{"name":"D3D10_REQ_TEXTURE1D_U_DIMENSION","features":[402]},{"name":"D3D10_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION","features":[402]},{"name":"D3D10_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[402]},{"name":"D3D10_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[402]},{"name":"D3D10_REQ_TEXTURECUBE_DIMENSION","features":[402]},{"name":"D3D10_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL","features":[402]},{"name":"D3D10_RESOURCE_DIMENSION","features":[402]},{"name":"D3D10_RESOURCE_DIMENSION_BUFFER","features":[402]},{"name":"D3D10_RESOURCE_DIMENSION_TEXTURE1D","features":[402]},{"name":"D3D10_RESOURCE_DIMENSION_TEXTURE2D","features":[402]},{"name":"D3D10_RESOURCE_DIMENSION_TEXTURE3D","features":[402]},{"name":"D3D10_RESOURCE_DIMENSION_UNKNOWN","features":[402]},{"name":"D3D10_RESOURCE_MISC_FLAG","features":[402]},{"name":"D3D10_RESOURCE_MISC_GDI_COMPATIBLE","features":[402]},{"name":"D3D10_RESOURCE_MISC_GENERATE_MIPS","features":[402]},{"name":"D3D10_RESOURCE_MISC_SHARED","features":[402]},{"name":"D3D10_RESOURCE_MISC_SHARED_KEYEDMUTEX","features":[402]},{"name":"D3D10_RESOURCE_MISC_TEXTURECUBE","features":[402]},{"name":"D3D10_RTV_DIMENSION","features":[402]},{"name":"D3D10_RTV_DIMENSION_BUFFER","features":[402]},{"name":"D3D10_RTV_DIMENSION_TEXTURE1D","features":[402]},{"name":"D3D10_RTV_DIMENSION_TEXTURE1DARRAY","features":[402]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2D","features":[402]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2DARRAY","features":[402]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2DMS","features":[402]},{"name":"D3D10_RTV_DIMENSION_TEXTURE2DMSARRAY","features":[402]},{"name":"D3D10_RTV_DIMENSION_TEXTURE3D","features":[402]},{"name":"D3D10_RTV_DIMENSION_UNKNOWN","features":[402]},{"name":"D3D10_SAMPLER_DESC","features":[402]},{"name":"D3D10_SDK_LAYERS_VERSION","features":[402]},{"name":"D3D10_SDK_VERSION","features":[402]},{"name":"D3D10_SHADER_AVOID_FLOW_CONTROL","features":[402]},{"name":"D3D10_SHADER_BUFFER_DESC","features":[398,402]},{"name":"D3D10_SHADER_DEBUG","features":[402]},{"name":"D3D10_SHADER_DEBUG_FILE_INFO","features":[402]},{"name":"D3D10_SHADER_DEBUG_INFO","features":[402]},{"name":"D3D10_SHADER_DEBUG_INPUT_INFO","features":[402]},{"name":"D3D10_SHADER_DEBUG_INST_INFO","features":[305,402]},{"name":"D3D10_SHADER_DEBUG_NAME_FOR_BINARY","features":[402]},{"name":"D3D10_SHADER_DEBUG_NAME_FOR_SOURCE","features":[402]},{"name":"D3D10_SHADER_DEBUG_OUTPUTREG_INFO","features":[305,402]},{"name":"D3D10_SHADER_DEBUG_OUTPUTVAR","features":[305,402]},{"name":"D3D10_SHADER_DEBUG_REGTYPE","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_CBUFFER","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_IMMEDIATECBUFFER","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_INPUT","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_LITERAL","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_OUTPUT","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_SAMPLER","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_TBUFFER","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_TEMP","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_TEMPARRAY","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_TEXTURE","features":[402]},{"name":"D3D10_SHADER_DEBUG_REG_UNUSED","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPETYPE","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPEVAR_INFO","features":[398,402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_ANNOTATION","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_BLOCK","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_FORLOOP","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_FUNC_PARAMS","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_GLOBAL","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_INFO","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_NAMESPACE","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_STATEBLOCK","features":[402]},{"name":"D3D10_SHADER_DEBUG_SCOPE_STRUCT","features":[402]},{"name":"D3D10_SHADER_DEBUG_TOKEN_INFO","features":[402]},{"name":"D3D10_SHADER_DEBUG_VARTYPE","features":[402]},{"name":"D3D10_SHADER_DEBUG_VAR_FUNCTION","features":[402]},{"name":"D3D10_SHADER_DEBUG_VAR_INFO","features":[398,402]},{"name":"D3D10_SHADER_DEBUG_VAR_VARIABLE","features":[402]},{"name":"D3D10_SHADER_DESC","features":[398,402]},{"name":"D3D10_SHADER_ENABLE_BACKWARDS_COMPATIBILITY","features":[402]},{"name":"D3D10_SHADER_ENABLE_STRICTNESS","features":[402]},{"name":"D3D10_SHADER_FLAGS2_FORCE_ROOT_SIGNATURE_1_0","features":[402]},{"name":"D3D10_SHADER_FLAGS2_FORCE_ROOT_SIGNATURE_1_1","features":[402]},{"name":"D3D10_SHADER_FLAGS2_FORCE_ROOT_SIGNATURE_LATEST","features":[402]},{"name":"D3D10_SHADER_FORCE_PS_SOFTWARE_NO_OPT","features":[402]},{"name":"D3D10_SHADER_FORCE_VS_SOFTWARE_NO_OPT","features":[402]},{"name":"D3D10_SHADER_IEEE_STRICTNESS","features":[402]},{"name":"D3D10_SHADER_INPUT_BIND_DESC","features":[398,402]},{"name":"D3D10_SHADER_MAJOR_VERSION","features":[402]},{"name":"D3D10_SHADER_MINOR_VERSION","features":[402]},{"name":"D3D10_SHADER_NO_PRESHADER","features":[402]},{"name":"D3D10_SHADER_OPTIMIZATION_LEVEL0","features":[402]},{"name":"D3D10_SHADER_OPTIMIZATION_LEVEL1","features":[402]},{"name":"D3D10_SHADER_OPTIMIZATION_LEVEL3","features":[402]},{"name":"D3D10_SHADER_PACK_MATRIX_COLUMN_MAJOR","features":[402]},{"name":"D3D10_SHADER_PACK_MATRIX_ROW_MAJOR","features":[402]},{"name":"D3D10_SHADER_PARTIAL_PRECISION","features":[402]},{"name":"D3D10_SHADER_PREFER_FLOW_CONTROL","features":[402]},{"name":"D3D10_SHADER_RESOURCES_MAY_ALIAS","features":[402]},{"name":"D3D10_SHADER_RESOURCE_VIEW_DESC","features":[398,402,393]},{"name":"D3D10_SHADER_RESOURCE_VIEW_DESC1","features":[398,402,393]},{"name":"D3D10_SHADER_SKIP_OPTIMIZATION","features":[402]},{"name":"D3D10_SHADER_SKIP_VALIDATION","features":[402]},{"name":"D3D10_SHADER_TYPE_DESC","features":[398,402]},{"name":"D3D10_SHADER_VARIABLE_DESC","features":[402]},{"name":"D3D10_SHADER_WARNINGS_ARE_ERRORS","features":[402]},{"name":"D3D10_SHIFT_INSTRUCTION_PAD_VALUE","features":[402]},{"name":"D3D10_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT","features":[402]},{"name":"D3D10_SIGNATURE_PARAMETER_DESC","features":[398,402]},{"name":"D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[402]},{"name":"D3D10_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[402]},{"name":"D3D10_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[402]},{"name":"D3D10_SO_BUFFER_SLOT_COUNT","features":[402]},{"name":"D3D10_SO_DDI_REGISTER_INDEX_DENOTING_GAP","features":[402]},{"name":"D3D10_SO_DECLARATION_ENTRY","features":[402]},{"name":"D3D10_SO_MULTIPLE_BUFFER_ELEMENTS_PER_BUFFER","features":[402]},{"name":"D3D10_SO_SINGLE_BUFFER_COMPONENT_LIMIT","features":[402]},{"name":"D3D10_SRGB_GAMMA","features":[402]},{"name":"D3D10_SRGB_TO_FLOAT_DENOMINATOR_1","features":[402]},{"name":"D3D10_SRGB_TO_FLOAT_DENOMINATOR_2","features":[402]},{"name":"D3D10_SRGB_TO_FLOAT_EXPONENT","features":[402]},{"name":"D3D10_SRGB_TO_FLOAT_OFFSET","features":[402]},{"name":"D3D10_SRGB_TO_FLOAT_THRESHOLD","features":[402]},{"name":"D3D10_SRGB_TO_FLOAT_TOLERANCE_IN_ULP","features":[402]},{"name":"D3D10_STANDARD_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_STANDARD_COMPONENT_BIT_COUNT_DOUBLED","features":[402]},{"name":"D3D10_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE","features":[402]},{"name":"D3D10_STANDARD_MULTISAMPLE_PATTERN","features":[402]},{"name":"D3D10_STANDARD_MULTISAMPLE_QUALITY_LEVELS","features":[402]},{"name":"D3D10_STANDARD_PIXEL_COMPONENT_COUNT","features":[402]},{"name":"D3D10_STANDARD_PIXEL_ELEMENT_COUNT","features":[402]},{"name":"D3D10_STANDARD_VECTOR_SIZE","features":[402]},{"name":"D3D10_STANDARD_VERTEX_ELEMENT_COUNT","features":[402]},{"name":"D3D10_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT","features":[402]},{"name":"D3D10_STATE_BLOCK_MASK","features":[402]},{"name":"D3D10_STENCIL_OP","features":[402]},{"name":"D3D10_STENCIL_OP_DECR","features":[402]},{"name":"D3D10_STENCIL_OP_DECR_SAT","features":[402]},{"name":"D3D10_STENCIL_OP_INCR","features":[402]},{"name":"D3D10_STENCIL_OP_INCR_SAT","features":[402]},{"name":"D3D10_STENCIL_OP_INVERT","features":[402]},{"name":"D3D10_STENCIL_OP_KEEP","features":[402]},{"name":"D3D10_STENCIL_OP_REPLACE","features":[402]},{"name":"D3D10_STENCIL_OP_ZERO","features":[402]},{"name":"D3D10_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[402]},{"name":"D3D10_SUBRESOURCE_DATA","features":[402]},{"name":"D3D10_SUBTEXEL_FRACTIONAL_BIT_COUNT","features":[402]},{"name":"D3D10_TECHNIQUE_DESC","features":[402]},{"name":"D3D10_TEX1D_ARRAY_DSV","features":[402]},{"name":"D3D10_TEX1D_ARRAY_RTV","features":[402]},{"name":"D3D10_TEX1D_ARRAY_SRV","features":[402]},{"name":"D3D10_TEX1D_DSV","features":[402]},{"name":"D3D10_TEX1D_RTV","features":[402]},{"name":"D3D10_TEX1D_SRV","features":[402]},{"name":"D3D10_TEX2DMS_ARRAY_DSV","features":[402]},{"name":"D3D10_TEX2DMS_ARRAY_RTV","features":[402]},{"name":"D3D10_TEX2DMS_ARRAY_SRV","features":[402]},{"name":"D3D10_TEX2DMS_DSV","features":[402]},{"name":"D3D10_TEX2DMS_RTV","features":[402]},{"name":"D3D10_TEX2DMS_SRV","features":[402]},{"name":"D3D10_TEX2D_ARRAY_DSV","features":[402]},{"name":"D3D10_TEX2D_ARRAY_RTV","features":[402]},{"name":"D3D10_TEX2D_ARRAY_SRV","features":[402]},{"name":"D3D10_TEX2D_DSV","features":[402]},{"name":"D3D10_TEX2D_RTV","features":[402]},{"name":"D3D10_TEX2D_SRV","features":[402]},{"name":"D3D10_TEX3D_RTV","features":[402]},{"name":"D3D10_TEX3D_SRV","features":[402]},{"name":"D3D10_TEXCUBE_ARRAY_SRV1","features":[402]},{"name":"D3D10_TEXCUBE_SRV","features":[402]},{"name":"D3D10_TEXEL_ADDRESS_RANGE_BIT_COUNT","features":[402]},{"name":"D3D10_TEXTURE1D_DESC","features":[402,393]},{"name":"D3D10_TEXTURE2D_DESC","features":[402,393]},{"name":"D3D10_TEXTURE3D_DESC","features":[402,393]},{"name":"D3D10_TEXTURECUBE_FACE","features":[402]},{"name":"D3D10_TEXTURECUBE_FACE_NEGATIVE_X","features":[402]},{"name":"D3D10_TEXTURECUBE_FACE_NEGATIVE_Y","features":[402]},{"name":"D3D10_TEXTURECUBE_FACE_NEGATIVE_Z","features":[402]},{"name":"D3D10_TEXTURECUBE_FACE_POSITIVE_X","features":[402]},{"name":"D3D10_TEXTURECUBE_FACE_POSITIVE_Y","features":[402]},{"name":"D3D10_TEXTURECUBE_FACE_POSITIVE_Z","features":[402]},{"name":"D3D10_TEXTURE_ADDRESS_BORDER","features":[402]},{"name":"D3D10_TEXTURE_ADDRESS_CLAMP","features":[402]},{"name":"D3D10_TEXTURE_ADDRESS_MIRROR","features":[402]},{"name":"D3D10_TEXTURE_ADDRESS_MIRROR_ONCE","features":[402]},{"name":"D3D10_TEXTURE_ADDRESS_MODE","features":[402]},{"name":"D3D10_TEXTURE_ADDRESS_WRAP","features":[402]},{"name":"D3D10_TEXT_1BIT_BIT","features":[402]},{"name":"D3D10_UNBOUND_MEMORY_ACCESS_RESULT","features":[402]},{"name":"D3D10_UNMUTE_SEVERITY_INFO","features":[402]},{"name":"D3D10_USAGE","features":[402]},{"name":"D3D10_USAGE_DEFAULT","features":[402]},{"name":"D3D10_USAGE_DYNAMIC","features":[402]},{"name":"D3D10_USAGE_IMMUTABLE","features":[402]},{"name":"D3D10_USAGE_STAGING","features":[402]},{"name":"D3D10_VIEWPORT","features":[402]},{"name":"D3D10_VIEWPORT_AND_SCISSORRECT_MAX_INDEX","features":[402]},{"name":"D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE","features":[402]},{"name":"D3D10_VIEWPORT_BOUNDS_MAX","features":[402]},{"name":"D3D10_VIEWPORT_BOUNDS_MIN","features":[402]},{"name":"D3D10_VS_INPUT_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_VS_INPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_VS_INPUT_REGISTER_READS_PER_INST","features":[402]},{"name":"D3D10_VS_INPUT_REGISTER_READ_PORTS","features":[402]},{"name":"D3D10_VS_OUTPUT_REGISTER_COMPONENTS","features":[402]},{"name":"D3D10_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[402]},{"name":"D3D10_VS_OUTPUT_REGISTER_COUNT","features":[402]},{"name":"D3D10_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT","features":[402]},{"name":"D3D10_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[402]},{"name":"D3D10_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP","features":[402]},{"name":"D3D11_SHADER_DEBUG_REG_INTERFACE_POINTERS","features":[402]},{"name":"D3D11_SHADER_DEBUG_REG_UAV","features":[402]},{"name":"D3D_MAJOR_VERSION","features":[402]},{"name":"D3D_MINOR_VERSION","features":[402]},{"name":"D3D_SPEC_DATE_DAY","features":[402]},{"name":"D3D_SPEC_DATE_MONTH","features":[402]},{"name":"D3D_SPEC_DATE_YEAR","features":[402]},{"name":"D3D_SPEC_VERSION","features":[402]},{"name":"DXGI_DEBUG_D3D10","features":[402]},{"name":"GUID_DeviceType","features":[402]},{"name":"ID3D10Asynchronous","features":[402]},{"name":"ID3D10BlendState","features":[402]},{"name":"ID3D10BlendState1","features":[402]},{"name":"ID3D10Buffer","features":[402]},{"name":"ID3D10Counter","features":[402]},{"name":"ID3D10Debug","features":[402]},{"name":"ID3D10DepthStencilState","features":[402]},{"name":"ID3D10DepthStencilView","features":[402]},{"name":"ID3D10Device","features":[402]},{"name":"ID3D10Device1","features":[402]},{"name":"ID3D10DeviceChild","features":[402]},{"name":"ID3D10Effect","features":[402]},{"name":"ID3D10EffectBlendVariable","features":[402]},{"name":"ID3D10EffectConstantBuffer","features":[402]},{"name":"ID3D10EffectDepthStencilVariable","features":[402]},{"name":"ID3D10EffectDepthStencilViewVariable","features":[402]},{"name":"ID3D10EffectMatrixVariable","features":[402]},{"name":"ID3D10EffectPass","features":[402]},{"name":"ID3D10EffectPool","features":[402]},{"name":"ID3D10EffectRasterizerVariable","features":[402]},{"name":"ID3D10EffectRenderTargetViewVariable","features":[402]},{"name":"ID3D10EffectSamplerVariable","features":[402]},{"name":"ID3D10EffectScalarVariable","features":[402]},{"name":"ID3D10EffectShaderResourceVariable","features":[402]},{"name":"ID3D10EffectShaderVariable","features":[402]},{"name":"ID3D10EffectStringVariable","features":[402]},{"name":"ID3D10EffectTechnique","features":[402]},{"name":"ID3D10EffectType","features":[402]},{"name":"ID3D10EffectVariable","features":[402]},{"name":"ID3D10EffectVectorVariable","features":[402]},{"name":"ID3D10GeometryShader","features":[402]},{"name":"ID3D10InfoQueue","features":[402]},{"name":"ID3D10InputLayout","features":[402]},{"name":"ID3D10Multithread","features":[402]},{"name":"ID3D10PixelShader","features":[402]},{"name":"ID3D10Predicate","features":[402]},{"name":"ID3D10Query","features":[402]},{"name":"ID3D10RasterizerState","features":[402]},{"name":"ID3D10RenderTargetView","features":[402]},{"name":"ID3D10Resource","features":[402]},{"name":"ID3D10SamplerState","features":[402]},{"name":"ID3D10ShaderReflection","features":[402]},{"name":"ID3D10ShaderReflection1","features":[402]},{"name":"ID3D10ShaderReflectionConstantBuffer","features":[402]},{"name":"ID3D10ShaderReflectionType","features":[402]},{"name":"ID3D10ShaderReflectionVariable","features":[402]},{"name":"ID3D10ShaderResourceView","features":[402]},{"name":"ID3D10ShaderResourceView1","features":[402]},{"name":"ID3D10StateBlock","features":[402]},{"name":"ID3D10SwitchToRef","features":[402]},{"name":"ID3D10Texture1D","features":[402]},{"name":"ID3D10Texture2D","features":[402]},{"name":"ID3D10Texture3D","features":[402]},{"name":"ID3D10VertexShader","features":[402]},{"name":"ID3D10View","features":[402]},{"name":"PFN_D3D10_CREATE_DEVICE1","features":[305,402,397]},{"name":"PFN_D3D10_CREATE_DEVICE_AND_SWAP_CHAIN1","features":[305,402,393]},{"name":"_FACD3D10","features":[402]}],"403":[{"name":"D3D11CreateDevice","features":[305,398,401,397]},{"name":"D3D11CreateDeviceAndSwapChain","features":[305,398,401,393]},{"name":"D3D11_16BIT_INDEX_STRIP_CUT_VALUE","features":[401]},{"name":"D3D11_1_CREATE_DEVICE_CONTEXT_STATE_FLAG","features":[401]},{"name":"D3D11_1_CREATE_DEVICE_CONTEXT_STATE_SINGLETHREADED","features":[401]},{"name":"D3D11_1_UAV_SLOT_COUNT","features":[401]},{"name":"D3D11_2_TILED_RESOURCE_TILE_SIZE_IN_BYTES","features":[401]},{"name":"D3D11_32BIT_INDEX_STRIP_CUT_VALUE","features":[401]},{"name":"D3D11_4_VIDEO_DECODER_HISTOGRAM_OFFSET_ALIGNMENT","features":[401]},{"name":"D3D11_4_VIDEO_DECODER_MAX_HISTOGRAM_COMPONENTS","features":[401]},{"name":"D3D11_8BIT_INDEX_STRIP_CUT_VALUE","features":[401]},{"name":"D3D11_AES_CTR_IV","features":[401]},{"name":"D3D11_ANISOTROPIC_FILTERING_BIT","features":[401]},{"name":"D3D11_APPEND_ALIGNED_ELEMENT","features":[401]},{"name":"D3D11_APPNAME_STRING","features":[401]},{"name":"D3D11_APPSIZE_STRING","features":[401]},{"name":"D3D11_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT","features":[401]},{"name":"D3D11_ASYNC_GETDATA_DONOTFLUSH","features":[401]},{"name":"D3D11_ASYNC_GETDATA_FLAG","features":[401]},{"name":"D3D11_AUTHENTICATED_CHANNEL_D3D11","features":[401]},{"name":"D3D11_AUTHENTICATED_CHANNEL_DRIVER_HARDWARE","features":[401]},{"name":"D3D11_AUTHENTICATED_CHANNEL_DRIVER_SOFTWARE","features":[401]},{"name":"D3D11_AUTHENTICATED_CHANNEL_TYPE","features":[401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_ACCESSIBLE_ENCRYPTION_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION","features":[401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_CRYPTO_SESSION_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_ENCRYPTION_WHEN_ACCESSIBLE","features":[401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE","features":[401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_INITIALIZE_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_PROTECTION","features":[401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_PROTECTION_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE","features":[401]},{"name":"D3D11_AUTHENTICATED_CONFIGURE_SHARED_RESOURCE_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_PROCESS_IDENTIFIER_TYPE","features":[401]},{"name":"D3D11_AUTHENTICATED_PROTECTION_FLAGS","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ATTRIBUTES","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_COUNT_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_ENCRYPTION_GUID_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_ACCESSIBILITY_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_CHANNEL_TYPE_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_CRYPTO_SESSION_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_CURRENT_ACCESSIBILITY_ENCRYPTION_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_CURRENT_ENCRYPTION_WHEN_ACCESSIBLE","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_DEVICE_HANDLE_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_ENCRYPTION_WHEN_ACCESSIBLE_GUID_COUNT","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_COUNT_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_OUTPUT_ID_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_PROTECTION","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_PROTECTION_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_COUNT_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_INPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_RESTRICTED_SHARED_RESOURCE_PROCESS_OUTPUT","features":[305,401]},{"name":"D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT","features":[401]},{"name":"D3D11_AUTHENTICATED_QUERY_UNRESTRICTED_PROTECTED_SHARED_RESOURCE_COUNT_OUTPUT","features":[305,401]},{"name":"D3D11_BIND_CONSTANT_BUFFER","features":[401]},{"name":"D3D11_BIND_DECODER","features":[401]},{"name":"D3D11_BIND_DEPTH_STENCIL","features":[401]},{"name":"D3D11_BIND_FLAG","features":[401]},{"name":"D3D11_BIND_INDEX_BUFFER","features":[401]},{"name":"D3D11_BIND_RENDER_TARGET","features":[401]},{"name":"D3D11_BIND_SHADER_RESOURCE","features":[401]},{"name":"D3D11_BIND_STREAM_OUTPUT","features":[401]},{"name":"D3D11_BIND_UNORDERED_ACCESS","features":[401]},{"name":"D3D11_BIND_VERTEX_BUFFER","features":[401]},{"name":"D3D11_BIND_VIDEO_ENCODER","features":[401]},{"name":"D3D11_BLEND","features":[401]},{"name":"D3D11_BLEND_BLEND_FACTOR","features":[401]},{"name":"D3D11_BLEND_DESC","features":[305,401]},{"name":"D3D11_BLEND_DESC1","features":[305,401]},{"name":"D3D11_BLEND_DEST_ALPHA","features":[401]},{"name":"D3D11_BLEND_DEST_COLOR","features":[401]},{"name":"D3D11_BLEND_INV_BLEND_FACTOR","features":[401]},{"name":"D3D11_BLEND_INV_DEST_ALPHA","features":[401]},{"name":"D3D11_BLEND_INV_DEST_COLOR","features":[401]},{"name":"D3D11_BLEND_INV_SRC1_ALPHA","features":[401]},{"name":"D3D11_BLEND_INV_SRC1_COLOR","features":[401]},{"name":"D3D11_BLEND_INV_SRC_ALPHA","features":[401]},{"name":"D3D11_BLEND_INV_SRC_COLOR","features":[401]},{"name":"D3D11_BLEND_ONE","features":[401]},{"name":"D3D11_BLEND_OP","features":[401]},{"name":"D3D11_BLEND_OP_ADD","features":[401]},{"name":"D3D11_BLEND_OP_MAX","features":[401]},{"name":"D3D11_BLEND_OP_MIN","features":[401]},{"name":"D3D11_BLEND_OP_REV_SUBTRACT","features":[401]},{"name":"D3D11_BLEND_OP_SUBTRACT","features":[401]},{"name":"D3D11_BLEND_SRC1_ALPHA","features":[401]},{"name":"D3D11_BLEND_SRC1_COLOR","features":[401]},{"name":"D3D11_BLEND_SRC_ALPHA","features":[401]},{"name":"D3D11_BLEND_SRC_ALPHA_SAT","features":[401]},{"name":"D3D11_BLEND_SRC_COLOR","features":[401]},{"name":"D3D11_BLEND_ZERO","features":[401]},{"name":"D3D11_BOX","features":[401]},{"name":"D3D11_BREAKON_CATEGORY","features":[401]},{"name":"D3D11_BREAKON_ID_DECIMAL","features":[401]},{"name":"D3D11_BREAKON_ID_STRING","features":[401]},{"name":"D3D11_BREAKON_SEVERITY","features":[401]},{"name":"D3D11_BUFFEREX_SRV","features":[401]},{"name":"D3D11_BUFFEREX_SRV_FLAG","features":[401]},{"name":"D3D11_BUFFEREX_SRV_FLAG_RAW","features":[401]},{"name":"D3D11_BUFFER_DESC","features":[401]},{"name":"D3D11_BUFFER_RTV","features":[401]},{"name":"D3D11_BUFFER_SRV","features":[401]},{"name":"D3D11_BUFFER_UAV","features":[401]},{"name":"D3D11_BUFFER_UAV_FLAG","features":[401]},{"name":"D3D11_BUFFER_UAV_FLAG_APPEND","features":[401]},{"name":"D3D11_BUFFER_UAV_FLAG_COUNTER","features":[401]},{"name":"D3D11_BUFFER_UAV_FLAG_RAW","features":[401]},{"name":"D3D11_BUS_IMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[401]},{"name":"D3D11_BUS_IMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[401]},{"name":"D3D11_BUS_IMPL_MODIFIER_INSIDE_OF_CHIPSET","features":[401]},{"name":"D3D11_BUS_IMPL_MODIFIER_NON_STANDARD","features":[401]},{"name":"D3D11_BUS_IMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[401]},{"name":"D3D11_BUS_IMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[401]},{"name":"D3D11_BUS_TYPE","features":[401]},{"name":"D3D11_BUS_TYPE_AGP","features":[401]},{"name":"D3D11_BUS_TYPE_OTHER","features":[401]},{"name":"D3D11_BUS_TYPE_PCI","features":[401]},{"name":"D3D11_BUS_TYPE_PCIEXPRESS","features":[401]},{"name":"D3D11_BUS_TYPE_PCIX","features":[401]},{"name":"D3D11_CENTER_MULTISAMPLE_PATTERN","features":[401]},{"name":"D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_FLAG","features":[401]},{"name":"D3D11_CHECK_MULTISAMPLE_QUALITY_LEVELS_TILED_RESOURCE","features":[401]},{"name":"D3D11_CLASS_INSTANCE_DESC","features":[305,401]},{"name":"D3D11_CLEAR_DEPTH","features":[401]},{"name":"D3D11_CLEAR_FLAG","features":[401]},{"name":"D3D11_CLEAR_STENCIL","features":[401]},{"name":"D3D11_CLIP_OR_CULL_DISTANCE_COUNT","features":[401]},{"name":"D3D11_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT","features":[401]},{"name":"D3D11_COLOR_WRITE_ENABLE","features":[401]},{"name":"D3D11_COLOR_WRITE_ENABLE_ALL","features":[401]},{"name":"D3D11_COLOR_WRITE_ENABLE_ALPHA","features":[401]},{"name":"D3D11_COLOR_WRITE_ENABLE_BLUE","features":[401]},{"name":"D3D11_COLOR_WRITE_ENABLE_GREEN","features":[401]},{"name":"D3D11_COLOR_WRITE_ENABLE_RED","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_PARTIAL_UPDATE_EXTENTS_BYTE_ALIGNMENT","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT","features":[401]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_COMMONSHADER_SAMPLER_SLOT_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_SUBROUTINE_NESTING_LIMIT","features":[401]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_COUNT","features":[401]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_COMMONSHADER_TEMP_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX","features":[401]},{"name":"D3D11_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN","features":[401]},{"name":"D3D11_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE","features":[401]},{"name":"D3D11_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE","features":[401]},{"name":"D3D11_COMPARISON_ALWAYS","features":[401]},{"name":"D3D11_COMPARISON_EQUAL","features":[401]},{"name":"D3D11_COMPARISON_FILTERING_BIT","features":[401]},{"name":"D3D11_COMPARISON_FUNC","features":[401]},{"name":"D3D11_COMPARISON_GREATER","features":[401]},{"name":"D3D11_COMPARISON_GREATER_EQUAL","features":[401]},{"name":"D3D11_COMPARISON_LESS","features":[401]},{"name":"D3D11_COMPARISON_LESS_EQUAL","features":[401]},{"name":"D3D11_COMPARISON_NEVER","features":[401]},{"name":"D3D11_COMPARISON_NOT_EQUAL","features":[401]},{"name":"D3D11_COMPUTE_SHADER","features":[401]},{"name":"D3D11_COMPUTE_SHADER_TRACE_DESC","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_MODE","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_MODE_OFF","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_MODE_ON","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_NOT_SUPPORTED","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER_1","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER_2","features":[401]},{"name":"D3D11_CONSERVATIVE_RASTERIZATION_TIER_3","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_CONTENT_KEY","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_DECRYPTION_BLT","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_ENCRYPTED_READ_BACK","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_ENCRYPTED_READ_BACK_KEY","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_ENCRYPT_SLICEDATA_ONLY","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_FRESHEN_SESSION_KEY","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_DRM_COMMUNICATION","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_DRM_COMMUNICATION_MULTI_THREADED","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_PROTECTED_MEMORY_PAGEABLE","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_PROTECT_UNCOMPRESSED","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_HARDWARE_TEARDOWN","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_PARTIAL_DECRYPTION","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_PROTECTION_ALWAYS_ON","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_SEQUENTIAL_CTR_IV","features":[401]},{"name":"D3D11_CONTENT_PROTECTION_CAPS_SOFTWARE","features":[401]},{"name":"D3D11_CONTEXT_TYPE","features":[401]},{"name":"D3D11_CONTEXT_TYPE_3D","features":[401]},{"name":"D3D11_CONTEXT_TYPE_ALL","features":[401]},{"name":"D3D11_CONTEXT_TYPE_COMPUTE","features":[401]},{"name":"D3D11_CONTEXT_TYPE_COPY","features":[401]},{"name":"D3D11_CONTEXT_TYPE_VIDEO","features":[401]},{"name":"D3D11_COPY_DISCARD","features":[401]},{"name":"D3D11_COPY_FLAGS","features":[401]},{"name":"D3D11_COPY_NO_OVERWRITE","features":[401]},{"name":"D3D11_COUNTER","features":[401]},{"name":"D3D11_COUNTER_DESC","features":[401]},{"name":"D3D11_COUNTER_DEVICE_DEPENDENT_0","features":[401]},{"name":"D3D11_COUNTER_INFO","features":[401]},{"name":"D3D11_COUNTER_TYPE","features":[401]},{"name":"D3D11_COUNTER_TYPE_FLOAT32","features":[401]},{"name":"D3D11_COUNTER_TYPE_UINT16","features":[401]},{"name":"D3D11_COUNTER_TYPE_UINT32","features":[401]},{"name":"D3D11_COUNTER_TYPE_UINT64","features":[401]},{"name":"D3D11_CPU_ACCESS_FLAG","features":[401]},{"name":"D3D11_CPU_ACCESS_READ","features":[401]},{"name":"D3D11_CPU_ACCESS_WRITE","features":[401]},{"name":"D3D11_CREATE_DEVICE_BGRA_SUPPORT","features":[401]},{"name":"D3D11_CREATE_DEVICE_DEBUG","features":[401]},{"name":"D3D11_CREATE_DEVICE_DEBUGGABLE","features":[401]},{"name":"D3D11_CREATE_DEVICE_DISABLE_GPU_TIMEOUT","features":[401]},{"name":"D3D11_CREATE_DEVICE_FLAG","features":[401]},{"name":"D3D11_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY","features":[401]},{"name":"D3D11_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS","features":[401]},{"name":"D3D11_CREATE_DEVICE_SINGLETHREADED","features":[401]},{"name":"D3D11_CREATE_DEVICE_SWITCH_TO_REF","features":[401]},{"name":"D3D11_CREATE_DEVICE_VIDEO_SUPPORT","features":[401]},{"name":"D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAGS","features":[401]},{"name":"D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAG_NONE","features":[401]},{"name":"D3D11_CRYPTO_SESSION_STATUS","features":[401]},{"name":"D3D11_CRYPTO_SESSION_STATUS_KEY_AND_CONTENT_LOST","features":[401]},{"name":"D3D11_CRYPTO_SESSION_STATUS_KEY_LOST","features":[401]},{"name":"D3D11_CRYPTO_SESSION_STATUS_OK","features":[401]},{"name":"D3D11_CRYPTO_TYPE_AES128_CTR","features":[401]},{"name":"D3D11_CS_4_X_BUCKET00_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET00_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET01_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET01_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET02_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET02_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET03_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET03_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET04_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET04_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET05_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET05_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET06_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET06_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET07_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET07_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET08_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET08_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET09_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET09_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET10_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET10_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET11_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET11_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET12_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET12_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET13_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET13_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET14_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET14_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_BUCKET15_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[401]},{"name":"D3D11_CS_4_X_BUCKET15_MAX_NUM_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_DISPATCH_MAX_THREAD_GROUPS_IN_Z_DIMENSION","features":[401]},{"name":"D3D11_CS_4_X_RAW_UAV_BYTE_ALIGNMENT","features":[401]},{"name":"D3D11_CS_4_X_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_4_X_THREAD_GROUP_MAX_X","features":[401]},{"name":"D3D11_CS_4_X_THREAD_GROUP_MAX_Y","features":[401]},{"name":"D3D11_CS_4_X_UAV_REGISTER_COUNT","features":[401]},{"name":"D3D11_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION","features":[401]},{"name":"D3D11_CS_TGSM_REGISTER_COUNT","features":[401]},{"name":"D3D11_CS_TGSM_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_CS_TGSM_RESOURCE_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_CS_TGSM_RESOURCE_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_CS_THREADGROUPID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_CS_THREADGROUPID_REGISTER_COUNT","features":[401]},{"name":"D3D11_CS_THREADIDINGROUPFLATTENED_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_CS_THREADIDINGROUPFLATTENED_REGISTER_COUNT","features":[401]},{"name":"D3D11_CS_THREADIDINGROUP_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_CS_THREADIDINGROUP_REGISTER_COUNT","features":[401]},{"name":"D3D11_CS_THREADID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_CS_THREADID_REGISTER_COUNT","features":[401]},{"name":"D3D11_CS_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[401]},{"name":"D3D11_CS_THREAD_GROUP_MAX_X","features":[401]},{"name":"D3D11_CS_THREAD_GROUP_MAX_Y","features":[401]},{"name":"D3D11_CS_THREAD_GROUP_MAX_Z","features":[401]},{"name":"D3D11_CS_THREAD_GROUP_MIN_X","features":[401]},{"name":"D3D11_CS_THREAD_GROUP_MIN_Y","features":[401]},{"name":"D3D11_CS_THREAD_GROUP_MIN_Z","features":[401]},{"name":"D3D11_CS_THREAD_LOCAL_TEMP_REGISTER_POOL","features":[401]},{"name":"D3D11_CULL_BACK","features":[401]},{"name":"D3D11_CULL_FRONT","features":[401]},{"name":"D3D11_CULL_MODE","features":[401]},{"name":"D3D11_CULL_NONE","features":[401]},{"name":"D3D11_DEBUG_FEATURE_ALWAYS_DISCARD_OFFERED_RESOURCE","features":[401]},{"name":"D3D11_DEBUG_FEATURE_AVOID_BEHAVIOR_CHANGING_DEBUG_AIDS","features":[401]},{"name":"D3D11_DEBUG_FEATURE_DISABLE_TILED_RESOURCE_MAPPING_TRACKING_AND_VALIDATION","features":[401]},{"name":"D3D11_DEBUG_FEATURE_FINISH_PER_RENDER_OP","features":[401]},{"name":"D3D11_DEBUG_FEATURE_FLUSH_PER_RENDER_OP","features":[401]},{"name":"D3D11_DEBUG_FEATURE_NEVER_DISCARD_OFFERED_RESOURCE","features":[401]},{"name":"D3D11_DEBUG_FEATURE_PRESENT_PER_RENDER_OP","features":[401]},{"name":"D3D11_DECODER_BITSTREAM_ENCRYPTION_TYPE_CBCS","features":[401]},{"name":"D3D11_DECODER_BITSTREAM_ENCRYPTION_TYPE_CENC","features":[401]},{"name":"D3D11_DECODER_ENCRYPTION_HW_CENC","features":[401]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_12BIT_PROFILE2","features":[401]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_12BIT_PROFILE2_420","features":[401]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_PROFILE0","features":[401]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_PROFILE1","features":[401]},{"name":"D3D11_DECODER_PROFILE_AV1_VLD_PROFILE2","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_IDCT_FGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_IDCT_NOFGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_MOCOMP_FGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_MOCOMP_NOFGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_FGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_MULTIVIEW_NOFGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_NOFGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_STEREO_NOFGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_STEREO_PROGRESSIVE_NOFGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_H264_VLD_WITHFMOASO_NOFGT","features":[401]},{"name":"D3D11_DECODER_PROFILE_HEVC_VLD_MAIN","features":[401]},{"name":"D3D11_DECODER_PROFILE_HEVC_VLD_MAIN10","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG1_VLD","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG2_IDCT","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG2_MOCOMP","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG2_VLD","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG2and1_VLD","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG4PT2_VLD_ADVSIMPLE_GMC","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG4PT2_VLD_ADVSIMPLE_NOGMC","features":[401]},{"name":"D3D11_DECODER_PROFILE_MPEG4PT2_VLD_SIMPLE","features":[401]},{"name":"D3D11_DECODER_PROFILE_VC1_D2010","features":[401]},{"name":"D3D11_DECODER_PROFILE_VC1_IDCT","features":[401]},{"name":"D3D11_DECODER_PROFILE_VC1_MOCOMP","features":[401]},{"name":"D3D11_DECODER_PROFILE_VC1_POSTPROC","features":[401]},{"name":"D3D11_DECODER_PROFILE_VC1_VLD","features":[401]},{"name":"D3D11_DECODER_PROFILE_VP8_VLD","features":[401]},{"name":"D3D11_DECODER_PROFILE_VP9_VLD_10BIT_PROFILE2","features":[401]},{"name":"D3D11_DECODER_PROFILE_VP9_VLD_PROFILE0","features":[401]},{"name":"D3D11_DECODER_PROFILE_WMV8_MOCOMP","features":[401]},{"name":"D3D11_DECODER_PROFILE_WMV8_POSTPROC","features":[401]},{"name":"D3D11_DECODER_PROFILE_WMV9_IDCT","features":[401]},{"name":"D3D11_DECODER_PROFILE_WMV9_MOCOMP","features":[401]},{"name":"D3D11_DECODER_PROFILE_WMV9_POSTPROC","features":[401]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_ALPHA","features":[401]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_BLUE","features":[401]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_GREEN","features":[401]},{"name":"D3D11_DEFAULT_BLEND_FACTOR_RED","features":[401]},{"name":"D3D11_DEFAULT_BORDER_COLOR_COMPONENT","features":[401]},{"name":"D3D11_DEFAULT_DEPTH_BIAS","features":[401]},{"name":"D3D11_DEFAULT_DEPTH_BIAS_CLAMP","features":[401]},{"name":"D3D11_DEFAULT_MAX_ANISOTROPY","features":[401]},{"name":"D3D11_DEFAULT_MIP_LOD_BIAS","features":[401]},{"name":"D3D11_DEFAULT_RENDER_TARGET_ARRAY_INDEX","features":[401]},{"name":"D3D11_DEFAULT_SAMPLE_MASK","features":[401]},{"name":"D3D11_DEFAULT_SCISSOR_ENDX","features":[401]},{"name":"D3D11_DEFAULT_SCISSOR_ENDY","features":[401]},{"name":"D3D11_DEFAULT_SCISSOR_STARTX","features":[401]},{"name":"D3D11_DEFAULT_SCISSOR_STARTY","features":[401]},{"name":"D3D11_DEFAULT_SLOPE_SCALED_DEPTH_BIAS","features":[401]},{"name":"D3D11_DEFAULT_STENCIL_READ_MASK","features":[401]},{"name":"D3D11_DEFAULT_STENCIL_REFERENCE","features":[401]},{"name":"D3D11_DEFAULT_STENCIL_WRITE_MASK","features":[401]},{"name":"D3D11_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX","features":[401]},{"name":"D3D11_DEFAULT_VIEWPORT_HEIGHT","features":[401]},{"name":"D3D11_DEFAULT_VIEWPORT_MAX_DEPTH","features":[401]},{"name":"D3D11_DEFAULT_VIEWPORT_MIN_DEPTH","features":[401]},{"name":"D3D11_DEFAULT_VIEWPORT_TOPLEFTX","features":[401]},{"name":"D3D11_DEFAULT_VIEWPORT_TOPLEFTY","features":[401]},{"name":"D3D11_DEFAULT_VIEWPORT_WIDTH","features":[401]},{"name":"D3D11_DEPTH_STENCILOP_DESC","features":[401]},{"name":"D3D11_DEPTH_STENCIL_DESC","features":[305,401]},{"name":"D3D11_DEPTH_STENCIL_VIEW_DESC","features":[401,393]},{"name":"D3D11_DEPTH_WRITE_MASK","features":[401]},{"name":"D3D11_DEPTH_WRITE_MASK_ALL","features":[401]},{"name":"D3D11_DEPTH_WRITE_MASK_ZERO","features":[401]},{"name":"D3D11_DEVICE_CONTEXT_DEFERRED","features":[401]},{"name":"D3D11_DEVICE_CONTEXT_IMMEDIATE","features":[401]},{"name":"D3D11_DEVICE_CONTEXT_TYPE","features":[401]},{"name":"D3D11_DOMAIN_SHADER","features":[401]},{"name":"D3D11_DOMAIN_SHADER_TRACE_DESC","features":[401]},{"name":"D3D11_DRAW_INDEXED_INSTANCED_INDIRECT_ARGS","features":[401]},{"name":"D3D11_DRAW_INSTANCED_INDIRECT_ARGS","features":[401]},{"name":"D3D11_DSV_DIMENSION","features":[401]},{"name":"D3D11_DSV_DIMENSION_TEXTURE1D","features":[401]},{"name":"D3D11_DSV_DIMENSION_TEXTURE1DARRAY","features":[401]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2D","features":[401]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2DARRAY","features":[401]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2DMS","features":[401]},{"name":"D3D11_DSV_DIMENSION_TEXTURE2DMSARRAY","features":[401]},{"name":"D3D11_DSV_DIMENSION_UNKNOWN","features":[401]},{"name":"D3D11_DSV_FLAG","features":[401]},{"name":"D3D11_DSV_READ_ONLY_DEPTH","features":[401]},{"name":"D3D11_DSV_READ_ONLY_STENCIL","features":[401]},{"name":"D3D11_DS_INPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[401]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_DS_INPUT_CONTROL_POINT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_DS_INPUT_DOMAIN_POINT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_DS_INPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[401]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_DS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_DS_OUTPUT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_DS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_DS_OUTPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_ENABLE_BREAK_ON_MESSAGE","features":[401]},{"name":"D3D11_ENCRYPTED_BLOCK_INFO","features":[401]},{"name":"D3D11_FEATURE","features":[401]},{"name":"D3D11_FEATURE_ARCHITECTURE_INFO","features":[401]},{"name":"D3D11_FEATURE_D3D10_X_HARDWARE_OPTIONS","features":[401]},{"name":"D3D11_FEATURE_D3D11_OPTIONS","features":[401]},{"name":"D3D11_FEATURE_D3D11_OPTIONS1","features":[401]},{"name":"D3D11_FEATURE_D3D11_OPTIONS2","features":[401]},{"name":"D3D11_FEATURE_D3D11_OPTIONS3","features":[401]},{"name":"D3D11_FEATURE_D3D11_OPTIONS4","features":[401]},{"name":"D3D11_FEATURE_D3D11_OPTIONS5","features":[401]},{"name":"D3D11_FEATURE_D3D9_OPTIONS","features":[401]},{"name":"D3D11_FEATURE_D3D9_OPTIONS1","features":[401]},{"name":"D3D11_FEATURE_D3D9_SHADOW_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_D3D9_SIMPLE_INSTANCING_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_DATA_ARCHITECTURE_INFO","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D10_X_HARDWARE_OPTIONS","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS1","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS2","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS3","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS4","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D11_OPTIONS5","features":[401]},{"name":"D3D11_FEATURE_DATA_D3D9_OPTIONS","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D9_OPTIONS1","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D9_SHADOW_SUPPORT","features":[305,401]},{"name":"D3D11_FEATURE_DATA_D3D9_SIMPLE_INSTANCING_SUPPORT","features":[305,401]},{"name":"D3D11_FEATURE_DATA_DISPLAYABLE","features":[305,401]},{"name":"D3D11_FEATURE_DATA_DOUBLES","features":[305,401]},{"name":"D3D11_FEATURE_DATA_FORMAT_SUPPORT","features":[401,393]},{"name":"D3D11_FEATURE_DATA_FORMAT_SUPPORT2","features":[401,393]},{"name":"D3D11_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_DATA_MARKER_SUPPORT","features":[305,401]},{"name":"D3D11_FEATURE_DATA_SHADER_CACHE","features":[401]},{"name":"D3D11_FEATURE_DATA_SHADER_MIN_PRECISION_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_DATA_THREADING","features":[305,401]},{"name":"D3D11_FEATURE_DATA_VIDEO_DECODER_HISTOGRAM","features":[401,393]},{"name":"D3D11_FEATURE_DISPLAYABLE","features":[401]},{"name":"D3D11_FEATURE_DOUBLES","features":[401]},{"name":"D3D11_FEATURE_FORMAT_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_FORMAT_SUPPORT2","features":[401]},{"name":"D3D11_FEATURE_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_MARKER_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_SHADER_CACHE","features":[401]},{"name":"D3D11_FEATURE_SHADER_MIN_PRECISION_SUPPORT","features":[401]},{"name":"D3D11_FEATURE_THREADING","features":[401]},{"name":"D3D11_FEATURE_VIDEO","features":[401]},{"name":"D3D11_FEATURE_VIDEO_DECODER_HISTOGRAM","features":[401]},{"name":"D3D11_FENCE_FLAG","features":[401]},{"name":"D3D11_FENCE_FLAG_NONE","features":[401]},{"name":"D3D11_FENCE_FLAG_NON_MONITORED","features":[401]},{"name":"D3D11_FENCE_FLAG_SHARED","features":[401]},{"name":"D3D11_FENCE_FLAG_SHARED_CROSS_ADAPTER","features":[401]},{"name":"D3D11_FILL_MODE","features":[401]},{"name":"D3D11_FILL_SOLID","features":[401]},{"name":"D3D11_FILL_WIREFRAME","features":[401]},{"name":"D3D11_FILTER","features":[401]},{"name":"D3D11_FILTER_ANISOTROPIC","features":[401]},{"name":"D3D11_FILTER_COMPARISON_ANISOTROPIC","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_ANISOTROPIC","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MAXIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MINIMUM_ANISOTROPIC","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MINIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MIN_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MIN_MAG_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[401]},{"name":"D3D11_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[401]},{"name":"D3D11_FILTER_REDUCTION_TYPE","features":[401]},{"name":"D3D11_FILTER_REDUCTION_TYPE_COMPARISON","features":[401]},{"name":"D3D11_FILTER_REDUCTION_TYPE_MASK","features":[401]},{"name":"D3D11_FILTER_REDUCTION_TYPE_MAXIMUM","features":[401]},{"name":"D3D11_FILTER_REDUCTION_TYPE_MINIMUM","features":[401]},{"name":"D3D11_FILTER_REDUCTION_TYPE_SHIFT","features":[401]},{"name":"D3D11_FILTER_REDUCTION_TYPE_STANDARD","features":[401]},{"name":"D3D11_FILTER_TYPE","features":[401]},{"name":"D3D11_FILTER_TYPE_LINEAR","features":[401]},{"name":"D3D11_FILTER_TYPE_MASK","features":[401]},{"name":"D3D11_FILTER_TYPE_POINT","features":[401]},{"name":"D3D11_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[401]},{"name":"D3D11_FLOAT32_MAX","features":[401]},{"name":"D3D11_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[401]},{"name":"D3D11_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR","features":[401]},{"name":"D3D11_FLOAT_TO_SRGB_EXPONENT_NUMERATOR","features":[401]},{"name":"D3D11_FLOAT_TO_SRGB_OFFSET","features":[401]},{"name":"D3D11_FLOAT_TO_SRGB_SCALE_1","features":[401]},{"name":"D3D11_FLOAT_TO_SRGB_SCALE_2","features":[401]},{"name":"D3D11_FLOAT_TO_SRGB_THRESHOLD","features":[401]},{"name":"D3D11_FORCE_DEBUGGABLE","features":[401]},{"name":"D3D11_FORCE_SHADER_SKIP_OPTIMIZATION","features":[401]},{"name":"D3D11_FORMAT_SUPPORT","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_DISPLAYABLE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_MULTIPLANE_OVERLAY","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_OUTPUT_MERGER_LOGIC_OP","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_SHAREABLE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_TILED","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_ADD","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_BITWISE_OPS","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_COMPARE_STORE_OR_COMPARE_EXCHANGE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_EXCHANGE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_SIGNED_MIN_OR_MAX","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_ATOMIC_UNSIGNED_MIN_OR_MAX","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_TYPED_LOAD","features":[401]},{"name":"D3D11_FORMAT_SUPPORT2_UAV_TYPED_STORE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_BACK_BUFFER_CAST","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_BLENDABLE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_BUFFER","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_CAST_WITHIN_BIT_LAYOUT","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_CPU_LOCKABLE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_DECODER_OUTPUT","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_DEPTH_STENCIL","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_DISPLAY","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_IA_INDEX_BUFFER","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_IA_VERTEX_BUFFER","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_MIP","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_MIP_AUTOGEN","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_MULTISAMPLE_LOAD","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_MULTISAMPLE_RENDERTARGET","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_MULTISAMPLE_RESOLVE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_RENDER_TARGET","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_GATHER","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_GATHER_COMPARISON","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_LOAD","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_SAMPLE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_COMPARISON","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_SHADER_SAMPLE_MONO_TEXT","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_SO_BUFFER","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURE1D","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURE2D","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURE3D","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_TEXTURECUBE","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_TYPED_UNORDERED_ACCESS_VIEW","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_VIDEO_ENCODER","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_VIDEO_PROCESSOR_INPUT","features":[401]},{"name":"D3D11_FORMAT_SUPPORT_VIDEO_PROCESSOR_OUTPUT","features":[401]},{"name":"D3D11_FTOI_INSTRUCTION_MAX_INPUT","features":[401]},{"name":"D3D11_FTOI_INSTRUCTION_MIN_INPUT","features":[401]},{"name":"D3D11_FTOU_INSTRUCTION_MAX_INPUT","features":[401]},{"name":"D3D11_FTOU_INSTRUCTION_MIN_INPUT","features":[401]},{"name":"D3D11_FUNCTION_DESC","features":[305,398,401]},{"name":"D3D11_GEOMETRY_SHADER","features":[401]},{"name":"D3D11_GEOMETRY_SHADER_TRACE_DESC","features":[401]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_READS_PER_INST","features":[401]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_READ_PORTS","features":[401]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_GS_INPUT_INSTANCE_ID_REGISTER_COUNT","features":[401]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_COUNT","features":[401]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_GS_INPUT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_GS_INPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_GS_INPUT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_GS_INPUT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_GS_INPUT_REGISTER_VERTICES","features":[401]},{"name":"D3D11_GS_MAX_INSTANCE_COUNT","features":[401]},{"name":"D3D11_GS_MAX_OUTPUT_VERTEX_COUNT_ACROSS_INSTANCES","features":[401]},{"name":"D3D11_GS_OUTPUT_ELEMENTS","features":[401]},{"name":"D3D11_GS_OUTPUT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_GS_OUTPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_CONTROL_POINT_PHASE_INPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_CONTROL_POINT_PHASE_OUTPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_HS_CONTROL_POINT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_HS_FORK_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[401]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_HS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_HS_JOIN_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[401]},{"name":"D3D11_HS_MAXTESSFACTOR_LOWER_BOUND","features":[401]},{"name":"D3D11_HS_MAXTESSFACTOR_UPPER_BOUND","features":[401]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[401]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[401]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_HS_OUTPUT_PATCH_CONSTANT_REGISTER_SCALAR_COMPONENTS","features":[401]},{"name":"D3D11_HULL_SHADER","features":[401]},{"name":"D3D11_HULL_SHADER_TRACE_DESC","features":[401]},{"name":"D3D11_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES","features":[401]},{"name":"D3D11_IA_DEFAULT_PRIMITIVE_TOPOLOGY","features":[401]},{"name":"D3D11_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES","features":[401]},{"name":"D3D11_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT","features":[401]},{"name":"D3D11_IA_INSTANCE_ID_BIT_COUNT","features":[401]},{"name":"D3D11_IA_INTEGER_ARITHMETIC_BIT_COUNT","features":[401]},{"name":"D3D11_IA_PATCH_MAX_CONTROL_POINT_COUNT","features":[401]},{"name":"D3D11_IA_PRIMITIVE_ID_BIT_COUNT","features":[401]},{"name":"D3D11_IA_VERTEX_ID_BIT_COUNT","features":[401]},{"name":"D3D11_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[401]},{"name":"D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[401]},{"name":"D3D11_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[401]},{"name":"D3D11_INFOQUEUE_STORAGE_FILTER_OVERRIDE","features":[401]},{"name":"D3D11_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[401]},{"name":"D3D11_INFO_QUEUE_FILTER","features":[401]},{"name":"D3D11_INFO_QUEUE_FILTER_DESC","features":[401]},{"name":"D3D11_INPUT_CLASSIFICATION","features":[401]},{"name":"D3D11_INPUT_ELEMENT_DESC","features":[401,393]},{"name":"D3D11_INPUT_PER_INSTANCE_DATA","features":[401]},{"name":"D3D11_INPUT_PER_VERTEX_DATA","features":[401]},{"name":"D3D11_INTEGER_DIVIDE_BY_ZERO_QUOTIENT","features":[401]},{"name":"D3D11_INTEGER_DIVIDE_BY_ZERO_REMAINDER","features":[401]},{"name":"D3D11_KEEP_RENDER_TARGETS_AND_DEPTH_STENCIL","features":[401]},{"name":"D3D11_KEEP_UNORDERED_ACCESS_VIEWS","features":[401]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION","features":[401]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION_DATA","features":[401]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION_INPUT_DATA","features":[401]},{"name":"D3D11_KEY_EXCHANGE_HW_PROTECTION_OUTPUT_DATA","features":[401]},{"name":"D3D11_KEY_EXCHANGE_RSAES_OAEP","features":[401]},{"name":"D3D11_LIBRARY_DESC","features":[401]},{"name":"D3D11_LINEAR_GAMMA","features":[401]},{"name":"D3D11_LOGIC_OP","features":[401]},{"name":"D3D11_LOGIC_OP_AND","features":[401]},{"name":"D3D11_LOGIC_OP_AND_INVERTED","features":[401]},{"name":"D3D11_LOGIC_OP_AND_REVERSE","features":[401]},{"name":"D3D11_LOGIC_OP_CLEAR","features":[401]},{"name":"D3D11_LOGIC_OP_COPY","features":[401]},{"name":"D3D11_LOGIC_OP_COPY_INVERTED","features":[401]},{"name":"D3D11_LOGIC_OP_EQUIV","features":[401]},{"name":"D3D11_LOGIC_OP_INVERT","features":[401]},{"name":"D3D11_LOGIC_OP_NAND","features":[401]},{"name":"D3D11_LOGIC_OP_NOOP","features":[401]},{"name":"D3D11_LOGIC_OP_NOR","features":[401]},{"name":"D3D11_LOGIC_OP_OR","features":[401]},{"name":"D3D11_LOGIC_OP_OR_INVERTED","features":[401]},{"name":"D3D11_LOGIC_OP_OR_REVERSE","features":[401]},{"name":"D3D11_LOGIC_OP_SET","features":[401]},{"name":"D3D11_LOGIC_OP_XOR","features":[401]},{"name":"D3D11_MAG_FILTER_SHIFT","features":[401]},{"name":"D3D11_MAJOR_VERSION","features":[401]},{"name":"D3D11_MAP","features":[401]},{"name":"D3D11_MAPPED_SUBRESOURCE","features":[401]},{"name":"D3D11_MAP_FLAG","features":[401]},{"name":"D3D11_MAP_FLAG_DO_NOT_WAIT","features":[401]},{"name":"D3D11_MAP_READ","features":[401]},{"name":"D3D11_MAP_READ_WRITE","features":[401]},{"name":"D3D11_MAP_WRITE","features":[401]},{"name":"D3D11_MAP_WRITE_DISCARD","features":[401]},{"name":"D3D11_MAP_WRITE_NO_OVERWRITE","features":[401]},{"name":"D3D11_MAX_BORDER_COLOR_COMPONENT","features":[401]},{"name":"D3D11_MAX_DEPTH","features":[401]},{"name":"D3D11_MAX_MAXANISOTROPY","features":[401]},{"name":"D3D11_MAX_MULTISAMPLE_SAMPLE_COUNT","features":[401]},{"name":"D3D11_MAX_POSITION_VALUE","features":[401]},{"name":"D3D11_MAX_TEXTURE_DIMENSION_2_TO_EXP","features":[401]},{"name":"D3D11_MESSAGE","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_APPLICATION_DEFINED","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_CLEANUP","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_COMPILATION","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_EXECUTION","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_INITIALIZATION","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_MISCELLANEOUS","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_SHADER","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_STATE_CREATION","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_STATE_GETTING","features":[401]},{"name":"D3D11_MESSAGE_CATEGORY_STATE_SETTING","features":[401]},{"name":"D3D11_MESSAGE_ID","features":[401]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDARRAY","features":[401]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDBIND","features":[401]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_ACQUIREHANDLEFORCAPTURE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_BLENDSTATE_GETDESC_LEGACY","features":[401]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_ALREADYMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_DEVICEREMOVED_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_BUFFER_MAP_INVALIDMAPTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_BUFFER_UNMAP_NOTMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_CANNOT_ADD_TRACKED_WORKLOAD","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKCOUNTER_OUTOFRANGE_COUNTER","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKCOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKCRYPTOKEYEXCHANGE_INVALIDINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKCRYPTOKEYEXCHANGE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKCRYPTOSESSIONSTATUS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKFEATURESUPPORT_FORMAT_DEPRECATED","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_DEPRECATED","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKFORMATSUPPORT_FORMAT_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_FORMAT_DEPRECATED","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKMULTISAMPLEQUALITYLEVELS_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_INVALIDCOLORSPACE","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERDOWNSAMPLING_ZEROWIDTHHEIGHT","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERFORMAT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEODECODERFORMAT_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEOPROCESSORFORMATCONVERSION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CHECKVIDEOPROCESSORFORMAT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DENORMFLUSH","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_DEPTH_READONLY","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_STENCIL_READONLY","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARRENDERTARGETVIEW_DENORMFLUSH","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWFLOAT_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEWUINT_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_DENORMFLUSH","features":[401]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_INVALIDPROCESSIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_UNSUPPORTEDCONFIGURE","features":[401]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_WRONGCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_CONFIGUREAUTHENTICATEDCHANNEL_WRONGSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDDESTINATIONSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_INVALIDSOURCESTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_NO_3D_MISMATCHED_UPDATES","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_3D_READBACK","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_NO_TEXTURE_ONLY_READBACK","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYRESOURCE_ONLY_TEXTURE_2D_WITHIN_GPU_MEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDDESTINATIONSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDOFFSET","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_INVALIDSOURCESTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSTRUCTURECOUNT_LARGEOFFSET","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION1_INVALIDCOPYFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_EMPTYSOURCEBOX","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDDESTINATIONSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCEBOX","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYSUBRESOURCEREGION_INVALIDSOURCESUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYTILEMAPPINGS_INVALID_PARAMETER","features":[401]},{"name":"D3D11_MESSAGE_ID_COPYTILES_INVALID_PARAMETER","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_MULTITHREADING","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER1","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER10","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER11","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER12","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER13","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER14","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER15","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER2","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER3","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER4","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER5","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER6","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER7","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER8","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_PARAMETER9","features":[401]},{"name":"D3D11_MESSAGE_ID_CORRUPTED_THIS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEAUTHENTICATEDCHANNEL_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDLOGICOPS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_ALPHA_TO_COVERAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_BLEND_ENABLE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_INDEPENDENT_WRITE_MASKS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_MRT_BLEND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NO_SEPARATE_ALPHA_BLEND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_OPERATION_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBLENDSTATE_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCONSTANTBUFFERBINDINGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDINITIALDATA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMIPLEVELS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSAMPLES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDSTRUCTURESTRIDE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_INVALIDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_LARGEALLOCATION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEBUFFER_UNRECOGNIZEDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCALL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_NONEXCLUSIVE_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_OUTOFRANGE_COUNTER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_SIMULTANEOUS_ACTIVE_COUNTERS_EXHAUSTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECOUNTER_UNSUPPORTED_WELLKNOWN_COUNTER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECRYPTOSESSION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATECRYPTOSESSION_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_CALL_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_INVALID_COMMANDLISTFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEFERREDCONTEXT_SINGLETHREADED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_STENCIL_NO_TWO_SIDED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_FEATURELEVELS_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDFEATURELEVEL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICECONTEXTSTATE_INVALIDREFIID","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICE_INVALIDARGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDEVICE_WARNING","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCALL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEFENCE_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_EXPECTEDDECL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTREAMS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDDECL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTREAMS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCALL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_LEVEL9_INSTANCING_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_LEVEL9_STEPRATE_NOT_1","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEINPUTLAYOUT_UNSUPPORTED_FORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEPREDICATE_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_DECODENOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_ENCODENOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDCONTEXTTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_INVALIDQUERY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNEXPECTEDMISCFLAG","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERYORPREDICATE_UNSUPPORTEDCONTEXTTTYPEFORQUERY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEQUERY_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthBiasClamp_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_DepthClipEnable_MUST_BE_TRUE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFORCEDSAMPLECOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_CONSERVATIVERASTERMODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERASTERIZERSTATE_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_AMBIGUOUSVIDEOPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDARRAYWITHDECODER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDVIDEOPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_EXCEEDS_FEATURE_LEVEL_DEFINITION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_DIMENSION_OUT_OF_RANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_DXGI_FORMAT_R8G8B8A8_CANNOT_BE_SHARED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_MSAA_PRECLUDES_SHADER_RESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NON_POW_2_MIPMAP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_RENDER_TARGET","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NOT_BINDABLE_AS_SHADER_RESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_ARRAYS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_AUTOGEN_FOR_VOLUMES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_DWORD_INDEX_BUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_STREAM_OUT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_TEXTURE_1D","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_NO_VB_AND_IB_BIND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_SINGLE_MIP_LEVEL_DEPTH_STENCIL_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_ONLY_VB_IB_FOR_BUFFERS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATERESOURCE_PRESENTATION_PRECLUDES_SHADER_RESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_BORDER_OUT_OF_RANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_EXCESSIVE_ANISOTROPY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSU","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSV","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDADDRESSW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDCOMPARISONFUNC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDFILTER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXANISOTROPY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMAXLOD","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMINLOD","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_INVALIDMIPLODBIAS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MAXLOD_MUST_BE_FLT_MAX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_MINLOD_MUST_NOT_BE_FRACTIONAL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_COMPARISON_SUPPORT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NO_MIRRORONCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESAMPLERSTATE_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESESOURCEVIEW_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_AMBIGUOUSVIDEOPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_CUBES_MUST_HAVE_6_SIDES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_FIRSTARRAYSLICE_MUST_BE_ZERO","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDARRAYWITHDECODER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDVIDEOPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_MUST_USE_LOWEST_LOD","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDINITIALDATA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMIPLEVELS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDSAMPLES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_INVALIDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_LARGEALLOCATION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNRECOGNIZEDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE1D_UNSUPPORTEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDINITIALDATA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMIPLEVELS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDSAMPLES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_INVALIDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_LARGEALLOCATION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNRECOGNIZEDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE2D_UNSUPPORTEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDINITIALDATA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMIPLEVELS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_INVALIDSAMPLES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_LARGEALLOCATION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_NULLDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDBINDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDCPUACCESSFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNRECOGNIZEDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATETEXTURE3D_UNSUPPORTEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_AMBIGUOUSVIDEOPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDARRAYWITHDECODER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDVIDEOPLANEINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_TOOMANYOBJECTS","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDARRAY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDARRAYSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDBIND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDDIMENSION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDMIP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_UNSUPPORTEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODEROUTPUTVIEW_UNSUPPORTEMIP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_DRIVER_INVALIDBUFFERSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_DRIVER_INVALIDBUFFERUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEODECODER_ZEROWIDTHHEIGHT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDFRAMEFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDINPUTFRAMERATE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDOUTPUTFRAMERATE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_INVALIDWIDTHHEIGHT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORENUMERATOR_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDARRAY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDARRAYSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDBIND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDDIMENSION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDFOURCC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMIP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMISC","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDMSAA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_INVALIDUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSORINPUTVIEW_UNSUPPORTEDMIP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDARRAY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDBIND","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDDIMENSION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDMIP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDMSAA","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_UNSUPPORTEDARRAY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOROUTPUTVIEW_UNSUPPORTEDMIP","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOR_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATEVIDEOPROCESSOR_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_AUTHENTICATEDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_BLENDSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_BUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_CLASSINSTANCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_CLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_COMMANDLIST","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_COMPUTESHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_CONTEXT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_COUNTER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_CRYPTOSESSION","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_DECODEROUTPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_DEPTHSTENCILVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_DEVICECONTEXTSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_DOMAINSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_FENCE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_GEOMETRYSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_HULLSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_INPUTLAYOUT","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_PIXELSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_PREDICATE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_PROCESSORINPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_PROCESSOROUTPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_QUERY","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_RASTERIZERSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_RENDERTARGETVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_SAMPLER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_SHADERRESOURCEVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_SYNCHRONIZEDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TEXTURE1D","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TEXTURE2D","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TEXTURE3D","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKEDWORKLOAD","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_DEADLINE_TYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_ENGINE_TYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_INVALID_MAX_INSTANCES","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_TRACKED_WORKLOAD_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_UNORDEREDACCESSVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_VERTEXSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_VIDEODECODER","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_VIDEOPROCESSOR","features":[401]},{"name":"D3D11_MESSAGE_ID_CREATE_VIDEOPROCESSORENUM","features":[401]},{"name":"D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_CSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_CSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_CSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_CSSETSHADER_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_CSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D10L9_MESSAGES_END","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D10L9_MESSAGES_START","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D10_MESSAGES_END","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_1_MESSAGES_END","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_1_MESSAGES_START","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_2_MESSAGES_END","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_2_MESSAGES_START","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_3_MESSAGES_END","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_3_MESSAGES_START","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_5_MESSAGES_END","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_5_MESSAGES_START","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_MESSAGES_END","features":[401]},{"name":"D3D11_MESSAGE_ID_D3D11_MESSAGES_START","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_MISC_FLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_OFFSET","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_SIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_BUFFER_USAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_COMPONENT","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_INVALID_HISTOGRAM_COMPONENT_COUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERBEGINFRAME_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODERENDFRAME_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODEREXTENSION_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_DECODEREXTENSION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_MAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_MULTISAMPLED","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_NOT_RENDER_TARGET","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_OFFERED","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_DST_WRONGDEVICE","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_FORMAT_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SIZE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_CONTENT_UNDEFINED","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_MAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_NOT_STAGING","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_OFFERED","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_SRC_WRONGDEVICE","features":[401]},{"name":"D3D11_MESSAGE_ID_DECRYPTIONBLT_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEFERRED_CONTEXT_REMOVAL_PROCESS_AT_FAULT","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_AUTHENTICATEDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_BLENDSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_BUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_CLASSINSTANCE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_CLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_COMMANDLIST","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_COMPUTESHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_CONTEXT","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_COUNTER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_CRYPTOSESSION","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_DECODEROUTPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_DEPTHSTENCILVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_DEVICECONTEXTSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_DOMAINSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_FENCE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_GEOMETRYSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_HULLSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_INPUTLAYOUT","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_PIXELSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_PREDICATE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_PROCESSORINPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_PROCESSOROUTPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_QUERY","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_RASTERIZERSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_RENDERTARGETVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_SAMPLER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_SHADERRESOURCEVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_SYNCHRONIZEDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_TEXTURE1D","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_TEXTURE2D","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_TEXTURE3D","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_TRACKEDWORKLOAD","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_UNORDEREDACCESSVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_VERTEXSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_VIDEODECODER","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_VIDEOPROCESSOR","features":[401]},{"name":"D3D11_MESSAGE_ID_DESTROY_VIDEOPROCESSORENUM","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_UNRECOGNIZED_FEATURE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_EMPTYRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDSOURCERECT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CLEARVIEW_NOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_UAVSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEEXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_SHADEREXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UAVSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_UAVSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEHULLSHADER_UAVSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_UAVSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATESHADER_CLASSLINKAGE_FULL","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_SHADEREXTENSIONSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_UAVSNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSGETUNORDEREDACCESSS_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETCONSTANTBUFFERS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSS_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDOFFSET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_INVALIDVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_CSSETUNORDEREDACCESSVIEWS_TOOMANYVIEWS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISCARDVIEW_INVALIDVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_INVALID_ARG_BUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_OFFSET_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCHINDIRECT_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_BOUND_RESOURCE_MAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_THREADGROUPCOUNT_ZERO","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DISPATCH_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INDEXPOS_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDEXEDINSTANCED_INSTANCEPOS_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDEXED_INDEXPOS_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_INVALID_ARG_BUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINDIRECT_OFFSET_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_INSTANCEPOS_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAWINSTANCED_VERTEXPOS_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_BOUND_RESOURCE_MAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_CONSTANT_BUFFER_TOO_SMALL","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_DEPTHSTENCILVIEW_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_GS_INPUT_PRIMITIVE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_CONTROL_POINT_COUNT_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_SIGNATURE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_DS_TESSELLATOR_DOMAIN_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HS_XOR_DS_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_FORMAT_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_BUFFER_TOO_SMALL","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INDEX_OFFSET_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INPUTLAYOUT_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_PRIMITIVETOPOLOGY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_SYSTEMVALUE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_INVALID_USE_OF_FORCED_SAMPLE_COUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OM_RENDER_TARGET_DOES_NOT_SUPPORT_LOGIC_OPS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_OUTPUT_STREAM_OFFSET_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_PIXEL_SHADER_WITHOUT_RTV_OR_DSV","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_POSITION_NOT_PRESENT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_PS_OUTPUT_TYPE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RASTERIZING_CONTROL_POINTS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RENDERTARGETVIEW_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RENDERTARGETVIEW_NOT_SET_DUE_TO_FLIP_PRESENT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_GATHER_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_LD_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_C_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_FORMAT_SAMPLE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_MULTISAMPLE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_RETURN_TYPE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_RESOURCE_SAMPLE_COUNT_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLER_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SAMPLE_MASK_IGNORED_ON_FL9","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SHADERRESOURCEVIEW_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SO_STRIDE_LARGER_THAN_BUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_SO_TARGETS_BOUND_WITHOUT_SOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_UNORDEREDACCESSVIEW_RENDERTARGETVIEW_OVERLAP","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEXPOS_OVERFLOW","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_BUFFER_TOO_SMALL","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_OFFSET_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_SHADER_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VERTEX_STRIDE_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VIEWPORT_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DRAW_VIEW_DIMENSION_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSGETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSGETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETCONSTANTBUFFERS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_DSSETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GENERATEMIPS_RESOURCE_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDCONTEXT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GETRESOURCEMINLOD_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSGETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSGETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETCONSTANTBUFFERS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_GSSETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSGETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSGETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETCONSTANTBUFFERS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_HSSETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IAGETVERTEXBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_FORMAT_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_TOO_LARGE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETINDEXBUFFER_OFFSET_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_ADJACENCY_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNDEFINED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNRECOGNIZED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETPRIMITIVETOPOLOGY_TOPOLOGY_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_INVALIDRANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_OFFSET_TOO_LARGE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_IASETVERTEXBUFFERS_STRIDE_TOO_LARGE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_LOCKEDOUT_INTERFACE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_INVALIDOFFSET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NO_OP","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_NUMUAVS_INVALIDRANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_OVERLAPPING_OLD_SLOTS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETSANDUNORDEREDACCESSVIEWS_TOOMANYVIEWS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OMSETRENDERTARGETS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE1_ACCESS_DENIED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE1_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BADINTERFACE_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_BY_NAME_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_OPEN_SHARED_RESOURCE_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSGETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSGETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETCONSTANTBUFFERS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_PSSETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_DESTINATION_SUBRESOURCE_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_FORMAT_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RESOLVESUBRESOURCE_SOURCE_SUBRESOURCE_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSGETSCISSORRECTS_RECTS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSGETVIEWPORTS_VIEWPORTS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_INVALIDSCISSOR","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_NEGATIVESCISSOR","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETSCISSORRECTS_TOO_MANY_SCISSORS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_DENORMFLUSH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_INVALIDVIEWPORT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_RSSETVIEWPORTS_TOO_MANY_VIEWPORTS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETHARDWAREPROTECTION_INVALIDCONTEXT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDCONTEXT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDMINLOD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETRESOURCEMINLOD_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INSTANCE_DATA_BINDINGS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACES_FEATURELEVEL","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INTERFACE_COUNT_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_DATA","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_INDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_INVALID_INSTANCE_TYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETSHADER_UNBOUND_INSTANCE_DATA","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SETTEXTFILTERSIZE_INVALIDDIMENSIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_BUFFER_TYPE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_RAW_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADERRESOURCEVIEW_STRUCTURE_STRIDE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_COMPONENTTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_MINPRECISION","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_REGISTERMASK","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SHADER_LINKAGE_SYSTEMVALUE","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SOGETTARGETS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_SOSETTARGETS_OFFSET_UNALIGNED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_APPEND_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMICS_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_ADD_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_BITWISE_OPS_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_CMPSTORE_CMPEXCHANGE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_EXCHANGE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_SIGNED_MINMAX_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_ATOMIC_UNSIGNED_MINMAX_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_BUFFER_TYPE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_COUNTER_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_DIMENSION_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_LD_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_FORMAT_STORE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_NOT_SET_DUE_TO_FLIP_PRESENT","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RAW_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_RETURN_TYPE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_UNORDEREDACCESSVIEW_STRUCTURE_STRIDE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSGETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSGETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSGETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_BUFFERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETCONSTANTBUFFERS_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETSAMPLERS_SAMPLERS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_DEVICE_VSSETSHADERRESOURCES_VIEWS_EMPTY","features":[401]},{"name":"D3D11_MESSAGE_ID_DIRTY_TILE_MAPPING_ACCESS","features":[401]},{"name":"D3D11_MESSAGE_ID_DRAWINDEXEDINSTANCED_NOT_SUPPORTED_BELOW_9_3","features":[401]},{"name":"D3D11_MESSAGE_ID_DRAWINDEXED_POINTLIST_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DRAWINDEXED_STARTINDEXLOCATION_MUST_BE_POSITIVE","features":[401]},{"name":"D3D11_MESSAGE_ID_DRAWINSTANCED_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_DSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_DSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_DSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_DSSETSHADER_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_DUPLICATE_TILE_MAPPINGS_IN_COVERED_AREA","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_MAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_NOT_STAGING","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_OFFERED","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_DST_WRONGDEVICE","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_FORMAT_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SIZE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_CONTENT_UNDEFINED","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_MAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_MULTISAMPLED","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_OFFERED","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_SRC_WRONGDEVICE","features":[401]},{"name":"D3D11_MESSAGE_ID_ENCRYPTIONBLT_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_END_TRACKED_WORKLOAD_INVALID_ARG","features":[401]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_ACCESSDENIED_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_ENQUEUESETEVENT_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_FINISHDISPLAYLIST_INVALID_CALL_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_FINISHDISPLAYLIST_ONIMMEDIATECONTEXT","features":[401]},{"name":"D3D11_MESSAGE_ID_FINISHDISPLAYLIST_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_FINISHSESSIONKEYREFRESH_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_FLUSH1_INVALIDCONTEXTTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_GEOMETRY_SHADER_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATESIZE_INVALIDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATESIZE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_INVALIDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETAUTHENTICATEDCHANNELCERTIFICATE_WRONGSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCONTENTPROTECTIONCAPS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATESIZE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONCERTIFICATE_WRONGSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONHANDLE_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONHANDLE_WRONGSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONPRIVATEDATASIZE_INVALID_KEY_EXCHANGE_TYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOSESSIONPRIVATEDATASIZE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETCRYPTOTYPE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDATAFORNEWHARDWAREKEY_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDC_INACCESSIBLE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_LOCKED","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDECODERBUFFER_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDECODERCREATIONPARAMS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDECODERDRIVERHANDLE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETDECODERPROFILE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETENCRYPTIONBLTKEY_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETENCRYPTIONBLTKEY_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETPRIVATEDATA_MOREDATA","features":[401]},{"name":"D3D11_MESSAGE_ID_GETRESOURCETILING_NONTILED_RESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCAPS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCAPS_ZEROWIDTHHEIGHT","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIGCOUNT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIGCOUNT_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_INVALIDINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERCONFIG_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILECOUNT_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_INVALIDINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEODECODERPROFILE_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCAPS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCONTENTDESC_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCUSTOMRATE_INVALIDINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORCUSTOMRATE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORFILTERRANGE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORFILTERRANGE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORRATECONVERSIONCAPS_INVALIDINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_GETVIDEOPROCESSORRATECONVERSIONCAPS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_GSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_GSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_GSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_GSSETSHADER_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_HSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_HSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_HSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_HSSETSHADER_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_IASETINDEXBUFFER_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_IASETINDEXBUFFER_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_IASETINPUTLAYOUT_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_BAD_BUFFER_INDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_IASETVERTEXBUFFERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_1DESTUNSUPPORTEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_3DESTUNSUPPORTEDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_BACKBUFFERNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_CHROMASIZEMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXESINTERSECT","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXNOT2D","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTBOXNOTSUB","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DESTINATIONNOT2D","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_DIMENSIONSTOOLARGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_EMPTYDESTBOX","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_FORMATUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_FRACTIONALDOWNSCALETOLARGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_GUARDRECTSUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDCOMPONENTS","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDCOPYFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDMIPLEVEL","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDNUMDESTINATIONS","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSCANDATAOFFSET","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSOURCESIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_LUMACHROMASIZEMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_NONPOW2SCALEUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_NOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_OUTPUTDIMENSIONSTOOLARGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_SCALEUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_SUBBOXUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_TILEDRESOURCESUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDDSTTEXTUREUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDSRCBUFFERMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPORTEDSRCBUFFERUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_UNSUPPRTEDCOPYFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_XSUBSAMPLEMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_XSUBSAMPLEODD","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_YSUBSAMPLEMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGDECODE_YSUBSAMPLEODD","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_BACKBUFFERNOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_DIMENSIONSTOOLARGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_FORMATUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_GUARDRECTSUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDCOMPONENTS","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDMIPLEVEL","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDSCANDATAOFFSET","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_NOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_SOURCENOT2D","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_TILEDRESOURCESUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDDSTBUFFERMISCFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDDSTBUFFERUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_UNSUPPORTEDSRCTEXTUREUSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_XSUBSAMPLEMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_JPEGENCODE_YSUBSAMPLEMISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_AUTHENTICATEDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_BLENDSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_BLENDSTATE_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_BUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_BUFFER_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_CLASSINSTANCE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_CLASSLINKAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_COMMANDLIST","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_COMPUTESHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_CONTEXT","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_COUNTER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_CRYPTOSESSION","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DECODEROUTPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILSTATE_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DEPTHSTENCILVIEW_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DEVICE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DEVICECONTEXTSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DEVICE_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_DOMAINSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_FENCE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_GEOMETRYSHADER_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_HULLSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_INPUTLAYOUT_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_OBJECT_SUMMARY_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_PIXELSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_PIXELSHADER_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_PREDICATE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_PREDICATE_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_PROCESSORINPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_PROCESSOROUTPUTVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_QUERY","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_QUERY_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_RASTERIZERSTATE_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_RENDERTARGETVIEW_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_SAMPLER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_SAMPLER_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_SHADERRESOURCEVIEW_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_SWAPCHAIN","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_SYNCHRONIZEDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE1D","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE1D_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE2D","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE2D_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE3D","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_TEXTURE3D_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_TRACKEDWORKLOAD","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_UNORDEREDACCESSVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_VERTEXSHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_VERTEXSHADER_WIN7","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_VIDEODECODER","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_VIDEOPROCESSOR","features":[401]},{"name":"D3D11_MESSAGE_ID_LIVE_VIDEOPROCESSORENUM","features":[401]},{"name":"D3D11_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOADS","features":[401]},{"name":"D3D11_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOAD_PAIRS","features":[401]},{"name":"D3D11_MESSAGE_ID_NEED_TO_CALL_TILEDRESOURCEBARRIER","features":[401]},{"name":"D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_INVALIDCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_NEGOTIATEAUTHENTICATEDCHANNELKEYEXCHANGE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRPYTOSESSIONKEYEXCHANGE_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRPYTOSESSIONKEYEXCHANGE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRYPTOSESSIONKEYEXCHANGEMT_INVALIDKEYEXCHANGETYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_NEGOTIATECRYPTOSESSIONKEYEXCHANGEMT_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_NO_TRACKED_WORKLOAD_SLOT_AVAILABLE","features":[401]},{"name":"D3D11_MESSAGE_ID_NULL_TILE_MAPPING_ACCESS_ERROR","features":[401]},{"name":"D3D11_MESSAGE_ID_NULL_TILE_MAPPING_ACCESS_WARNING","features":[401]},{"name":"D3D11_MESSAGE_ID_OFFERRELEASE_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_OFFERRESOURCES_INACCESSIBLE","features":[401]},{"name":"D3D11_MESSAGE_ID_OFFERRESOURCES_INVALIDPRIORITY","features":[401]},{"name":"D3D11_MESSAGE_ID_OFFERRESOURCES_INVALIDRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETBLENDSTATE_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETDEPTHSTENCILSTATE_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETDEPTHSTENCIL_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_INVALIDVIEW","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_DIFFERING_BIT_DEPTHS","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_NO_SRGB_MRT","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_TOO_MANY_RENDER_TARGETS","features":[401]},{"name":"D3D11_MESSAGE_ID_OMSETRENDERTARGETS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_OUT_OF_ORDER_TRACKED_WORKLOAD_PAIR","features":[401]},{"name":"D3D11_MESSAGE_ID_PREDICATE_BEGIN_DURING_PREDICATION","features":[401]},{"name":"D3D11_MESSAGE_ID_PREDICATE_END_DURING_PREDICATION","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETSHADER_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_PSSETUNORDEREDACCESSVIEWS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_INVALIDPROCESSINDEX","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_UNSUPPORTEDQUERY","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_WRONGCHANNEL","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERYAUTHENTICATEDCHANNEL_WRONGSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_BEGIN_ABANDONING_PREVIOUS_RESULTS","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_BEGIN_DUPLICATE","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_BEGIN_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_END_ABANDONING_PREVIOUS_RESULTS","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_END_WITHOUT_BEGIN","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_CALL","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_DATASIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_QUERY_GETDATA_INVALID_FLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_INVALIDCOLORSPACE","features":[401]},{"name":"D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_RECOMMENDVIDEODECODERDOWNSAMPLING_ZEROWIDTHHEIGHT","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_ACCESSING_INDEXABLE_TEMP_OUT_OF_RANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_HARDWARE_EXCEPTION","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_INFO","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_KMDRIVER_EXCEPTION","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_OUT_OF_MEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_PROBLEM_PARSING_SHADER","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_SIMULATING_INFINITELY_FAST_HARDWARE","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_THREADING_MODE","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_UMDRIVER_EXCEPTION","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_WARNING","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_ATOMIC_INCONSISTENT","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_RAW_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_READING_UNINITIALIZED_RESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_WAR_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_REF_WARNING_WAW_HAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_NOTLOCKED","features":[401]},{"name":"D3D11_MESSAGE_ID_RELEASEDECODERBUFFER_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_RESIZETILEPOOL_INVALID_PARAMETER","features":[401]},{"name":"D3D11_MESSAGE_ID_RESIZETILEPOOL_SHRINK_WITH_MAPPINGS_STILL_DEFINED_PAST_END","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_ALREADYMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_DEVICEREMOVED_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDMAPTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_OUTOFMEMORY_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_MAP_WITHOUT_INITIAL_DISCARD","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_UNMAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_RSSETSTATE_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_SETBLENDSTATE_SAMPLE_MASK_CANNOT_BE_ZERO","features":[401]},{"name":"D3D11_MESSAGE_ID_SETEXCEPTIONMODE_DEVICEREMOVED_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_SETEXCEPTIONMODE_INVALIDARG_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_SETEXCEPTIONMODE_UNRECOGNIZEDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_SETPREDICATION_INVALID_PREDICATE_STATE","features":[401]},{"name":"D3D11_MESSAGE_ID_SETPREDICATION_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS","features":[401]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA","features":[401]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_INVALIDIUNKNOWN","features":[401]},{"name":"D3D11_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY","features":[401]},{"name":"D3D11_MESSAGE_ID_SHADERRESOURCEVIEW_GETDESC_LEGACY","features":[401]},{"name":"D3D11_MESSAGE_ID_SHADER_ABORT","features":[401]},{"name":"D3D11_MESSAGE_ID_SHADER_ERROR","features":[401]},{"name":"D3D11_MESSAGE_ID_SHADER_MESSAGE","features":[401]},{"name":"D3D11_MESSAGE_ID_SLOT_ZERO_MUST_BE_D3D10_INPUT_PER_VERTEX_DATA","features":[401]},{"name":"D3D11_MESSAGE_ID_SOSETTARGETS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_SOSETTARGETS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_STARTSESSIONKEYREFRESH_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_STARTSESSIONKEYREFRESH_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_STREAM_OUT_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_STRING_FROM_APPLICATION","features":[401]},{"name":"D3D11_MESSAGE_ID_SUBMITDECODERBUFFERS_INVALIDTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_SUBMITDECODERBUFFERS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_SWAPDEVICECONTEXTSTATE_NOTSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_ALREADYMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_DEVICEREMOVED_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDMAPTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_MAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE1D_UNMAP_NOTMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_ALREADYMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_DEVICEREMOVED_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDMAPTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_MAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE2D_UNMAP_NOTMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_ALREADYMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_DEVICEREMOVED_RETURN","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDMAPTYPE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_MAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_INVALIDSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXTURE3D_UNMAP_NOTMAPPED","features":[401]},{"name":"D3D11_MESSAGE_ID_TEXT_FILTER_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_TILEDRESOURCEBARRIER_INVALID_PARAMETER","features":[401]},{"name":"D3D11_MESSAGE_ID_TILED_RESOURCE_TIER_1_BUFFER_TEXTURE_MISMATCH","features":[401]},{"name":"D3D11_MESSAGE_ID_TILE_MAPPINGS_IN_COVERED_AREA_DUPLICATED_OUTSIDE","features":[401]},{"name":"D3D11_MESSAGE_ID_TILE_MAPPINGS_SHARED_BETWEEN_INCOMPATIBLE_RESOURCES","features":[401]},{"name":"D3D11_MESSAGE_ID_TILE_MAPPINGS_SHARED_BETWEEN_INPUT_AND_OUTPUT","features":[401]},{"name":"D3D11_MESSAGE_ID_TRACKED_WORKLOAD_DISJOINT_FAILURE","features":[401]},{"name":"D3D11_MESSAGE_ID_TRACKED_WORKLOAD_ENGINE_TYPE_NOT_FOUND","features":[401]},{"name":"D3D11_MESSAGE_ID_TRACKED_WORKLOAD_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_UNKNOWN","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE1_INVALIDCOPYFLAGS","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_EMPTYDESTBOX","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONBOX","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSTATE","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_INVALIDDESTINATIONSUBRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATESUBRESOURCE_PREFERUPDATESUBRESOURCE1","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATETILEMAPPINGS_INVALID_PARAMETER","features":[401]},{"name":"D3D11_MESSAGE_ID_UPDATETILES_INVALID_PARAMETER","features":[401]},{"name":"D3D11_MESSAGE_ID_USE_OF_ZERO_REFCOUNT_OBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERENABLEDOWNSAMPLING_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERENABLEDOWNSAMPLING_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERUPDATEDOWNSAMPLING_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEODECODERUPDATEDOWNSAMPLING_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INPUTHAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDARRAY","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDARRAYSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDDESTRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDFUTUREFRAMES","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDINPUTRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDOUTPUT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDPASTFRAMES","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDRIGHTRESOURCE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDSOURCERECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_INVALIDSTREAMCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_NOSTEREOSTREAMS","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_OUTPUTHAZARD","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_RIGHTEXPECTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_RIGHTNOTEXPECTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_STEREONOTENABLED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORBLT_TARGETRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDDESTRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDSOURCERECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_INVALIDSTREAMCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETBEHAVIORHINTS_TARGETRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTALPHAFILLMODE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTBACKGROUNDCOLOR_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCOLORSPACE1_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCOLORSPACE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTCONSTRICTION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTEXTENSION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTHDRMETADATA_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTHDRMETADATA_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTSHADERUSAGE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTSTEREOMODE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETOUTPUTTARGETRECT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMALPHA_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMALPHA_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMAUTOPROCESSINGMODE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMAUTOPROCESSINGMODE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE1_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE1_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMCOLORSPACE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMDESTRECT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMDESTRECT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMEXTENSION_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMEXTENSION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFILTER_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFILTER_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFRAMEFORMAT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMFRAMEFORMAT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMHDRMETADATA_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMLUMAKEY_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMLUMAKEY_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMMIRROR_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMMIRROR_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMOUTPUTRATE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMOUTPUTRATE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPALETTE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPALETTE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPIXELASPECTRATIO_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMPIXELASPECTRATIO_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMROTATION_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMROTATION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSOURCERECT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSOURCERECT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSTEREOFORMAT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORGETSTREAMSTEREOFORMAT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_INVALIDFILLMODE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTALPHAFILLMODE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTBACKGROUNDCOLOR_INVALIDALPHA","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTBACKGROUNDCOLOR_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCOLORSPACE1_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCOLORSPACE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTCONSTRICTION_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTEXTENSION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTHDRMETADATA_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTHDRMETADATA_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSHADERUSAGE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSTEREOMODE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTSTEREOMODE_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETOUTPUTTARGETRECT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_INVALIDALPHA","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMALPHA_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMAUTOPROCESSINGMODE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMAUTOPROCESSINGMODE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE1_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE1_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMCOLORSPACE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_INVALIDRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMDESTRECT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMEXTENSION_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMEXTENSION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDFILTER","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDLEVEL","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFILTER_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMFRAMEFORMAT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_INVALIDSIZE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMHDRMETADATA_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_INVALIDRANGE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMLUMAKEY_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMMIRROR_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDFLAG","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDRATE","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMOUTPUTRATE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDALPHA","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPALETTE_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_INVALIDRATIO","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMPIXELASPECTRATIO_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_INVALID","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMROTATION_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_INVALIDRECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSOURCERECT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_FLIPUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_FORMATUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_INVALIDFORMAT","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_INVALIDSTREAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_MONOOFFSETUNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_NULLPARAM","features":[401]},{"name":"D3D11_MESSAGE_ID_VIDEOPROCESSORSETSTREAMSTEREOFORMAT_UNSUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFER","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_INVALIDBUFFEROFFSETORCOUNT","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETCONSTANTBUFFERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETSAMPLERS_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETSAMPLERS_TOO_MANY_SAMPLERS","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETSAMPLERS_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETSHADERRESOURCES_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSETSHADER_UNBINDDELETINGOBJECT","features":[401]},{"name":"D3D11_MESSAGE_ID_VSSHADERRESOURCES_NOT_SUPPORTED","features":[401]},{"name":"D3D11_MESSAGE_SEVERITY","features":[401]},{"name":"D3D11_MESSAGE_SEVERITY_CORRUPTION","features":[401]},{"name":"D3D11_MESSAGE_SEVERITY_ERROR","features":[401]},{"name":"D3D11_MESSAGE_SEVERITY_INFO","features":[401]},{"name":"D3D11_MESSAGE_SEVERITY_MESSAGE","features":[401]},{"name":"D3D11_MESSAGE_SEVERITY_WARNING","features":[401]},{"name":"D3D11_MINOR_VERSION","features":[401]},{"name":"D3D11_MIN_BORDER_COLOR_COMPONENT","features":[401]},{"name":"D3D11_MIN_DEPTH","features":[401]},{"name":"D3D11_MIN_FILTER_SHIFT","features":[401]},{"name":"D3D11_MIN_MAXANISOTROPY","features":[401]},{"name":"D3D11_MIP_FILTER_SHIFT","features":[401]},{"name":"D3D11_MIP_LOD_BIAS_MAX","features":[401]},{"name":"D3D11_MIP_LOD_BIAS_MIN","features":[401]},{"name":"D3D11_MIP_LOD_FRACTIONAL_BIT_COUNT","features":[401]},{"name":"D3D11_MIP_LOD_RANGE_BIT_COUNT","features":[401]},{"name":"D3D11_MULTISAMPLE_ANTIALIAS_LINE_WIDTH","features":[401]},{"name":"D3D11_MUTE_CATEGORY","features":[401]},{"name":"D3D11_MUTE_DEBUG_OUTPUT","features":[401]},{"name":"D3D11_MUTE_ID_DECIMAL","features":[401]},{"name":"D3D11_MUTE_ID_STRING","features":[401]},{"name":"D3D11_MUTE_SEVERITY","features":[401]},{"name":"D3D11_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT","features":[401]},{"name":"D3D11_OMAC","features":[401]},{"name":"D3D11_PACKED_MIP_DESC","features":[401]},{"name":"D3D11_PACKED_TILE","features":[401]},{"name":"D3D11_PARAMETER_DESC","features":[398,401]},{"name":"D3D11_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[401]},{"name":"D3D11_PIXEL_SHADER","features":[401]},{"name":"D3D11_PIXEL_SHADER_TRACE_DESC","features":[401]},{"name":"D3D11_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[401]},{"name":"D3D11_PROCESSIDTYPE_DWM","features":[401]},{"name":"D3D11_PROCESSIDTYPE_HANDLE","features":[401]},{"name":"D3D11_PROCESSIDTYPE_UNKNOWN","features":[401]},{"name":"D3D11_PS_CS_UAV_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_PS_CS_UAV_REGISTER_COUNT","features":[401]},{"name":"D3D11_PS_CS_UAV_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_PS_CS_UAV_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_PS_FRONTFACING_DEFAULT_VALUE","features":[401]},{"name":"D3D11_PS_FRONTFACING_FALSE_VALUE","features":[401]},{"name":"D3D11_PS_FRONTFACING_TRUE_VALUE","features":[401]},{"name":"D3D11_PS_INPUT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_PS_INPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_PS_INPUT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_PS_INPUT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[401]},{"name":"D3D11_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_PS_OUTPUT_DEPTH_REGISTER_COUNT","features":[401]},{"name":"D3D11_PS_OUTPUT_MASK_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_PS_OUTPUT_MASK_REGISTER_COUNT","features":[401]},{"name":"D3D11_PS_OUTPUT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_PS_OUTPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[401]},{"name":"D3D11_QUERY","features":[401]},{"name":"D3D11_QUERY_DATA_PIPELINE_STATISTICS","features":[401]},{"name":"D3D11_QUERY_DATA_SO_STATISTICS","features":[401]},{"name":"D3D11_QUERY_DATA_TIMESTAMP_DISJOINT","features":[305,401]},{"name":"D3D11_QUERY_DESC","features":[401]},{"name":"D3D11_QUERY_DESC1","features":[401]},{"name":"D3D11_QUERY_EVENT","features":[401]},{"name":"D3D11_QUERY_MISC_FLAG","features":[401]},{"name":"D3D11_QUERY_MISC_PREDICATEHINT","features":[401]},{"name":"D3D11_QUERY_OCCLUSION","features":[401]},{"name":"D3D11_QUERY_OCCLUSION_PREDICATE","features":[401]},{"name":"D3D11_QUERY_PIPELINE_STATISTICS","features":[401]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE","features":[401]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM0","features":[401]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM1","features":[401]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM2","features":[401]},{"name":"D3D11_QUERY_SO_OVERFLOW_PREDICATE_STREAM3","features":[401]},{"name":"D3D11_QUERY_SO_STATISTICS","features":[401]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM0","features":[401]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM1","features":[401]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM2","features":[401]},{"name":"D3D11_QUERY_SO_STATISTICS_STREAM3","features":[401]},{"name":"D3D11_QUERY_TIMESTAMP","features":[401]},{"name":"D3D11_QUERY_TIMESTAMP_DISJOINT","features":[401]},{"name":"D3D11_RAISE_FLAG","features":[401]},{"name":"D3D11_RAISE_FLAG_DRIVER_INTERNAL_ERROR","features":[401]},{"name":"D3D11_RASTERIZER_DESC","features":[305,401]},{"name":"D3D11_RASTERIZER_DESC1","features":[305,401]},{"name":"D3D11_RASTERIZER_DESC2","features":[305,401]},{"name":"D3D11_RAW_UAV_SRV_BYTE_ALIGNMENT","features":[401]},{"name":"D3D11_REGKEY_PATH","features":[401]},{"name":"D3D11_RENDER_TARGET_BLEND_DESC","features":[305,401]},{"name":"D3D11_RENDER_TARGET_BLEND_DESC1","features":[305,401]},{"name":"D3D11_RENDER_TARGET_VIEW_DESC","features":[401,393]},{"name":"D3D11_RENDER_TARGET_VIEW_DESC1","features":[401,393]},{"name":"D3D11_REQ_BLEND_OBJECT_COUNT_PER_DEVICE","features":[401]},{"name":"D3D11_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP","features":[401]},{"name":"D3D11_REQ_CONSTANT_BUFFER_ELEMENT_COUNT","features":[401]},{"name":"D3D11_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_DEVICE","features":[401]},{"name":"D3D11_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[401]},{"name":"D3D11_REQ_DRAW_VERTEX_COUNT_2_TO_EXP","features":[401]},{"name":"D3D11_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION","features":[401]},{"name":"D3D11_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT","features":[401]},{"name":"D3D11_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT","features":[401]},{"name":"D3D11_REQ_MAXANISOTROPY","features":[401]},{"name":"D3D11_REQ_MIP_LEVELS","features":[401]},{"name":"D3D11_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES","features":[401]},{"name":"D3D11_REQ_RASTERIZER_OBJECT_COUNT_PER_DEVICE","features":[401]},{"name":"D3D11_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH","features":[401]},{"name":"D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_A_TERM","features":[401]},{"name":"D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_B_TERM","features":[401]},{"name":"D3D11_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_C_TERM","features":[401]},{"name":"D3D11_REQ_RESOURCE_VIEW_COUNT_PER_DEVICE_2_TO_EXP","features":[401]},{"name":"D3D11_REQ_SAMPLER_OBJECT_COUNT_PER_DEVICE","features":[401]},{"name":"D3D11_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION","features":[401]},{"name":"D3D11_REQ_TEXTURE1D_U_DIMENSION","features":[401]},{"name":"D3D11_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION","features":[401]},{"name":"D3D11_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[401]},{"name":"D3D11_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[401]},{"name":"D3D11_REQ_TEXTURECUBE_DIMENSION","features":[401]},{"name":"D3D11_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL","features":[401]},{"name":"D3D11_RESOURCE_DIMENSION","features":[401]},{"name":"D3D11_RESOURCE_DIMENSION_BUFFER","features":[401]},{"name":"D3D11_RESOURCE_DIMENSION_TEXTURE1D","features":[401]},{"name":"D3D11_RESOURCE_DIMENSION_TEXTURE2D","features":[401]},{"name":"D3D11_RESOURCE_DIMENSION_TEXTURE3D","features":[401]},{"name":"D3D11_RESOURCE_DIMENSION_UNKNOWN","features":[401]},{"name":"D3D11_RESOURCE_MISC_BUFFER_ALLOW_RAW_VIEWS","features":[401]},{"name":"D3D11_RESOURCE_MISC_BUFFER_STRUCTURED","features":[401]},{"name":"D3D11_RESOURCE_MISC_DRAWINDIRECT_ARGS","features":[401]},{"name":"D3D11_RESOURCE_MISC_FLAG","features":[401]},{"name":"D3D11_RESOURCE_MISC_GDI_COMPATIBLE","features":[401]},{"name":"D3D11_RESOURCE_MISC_GENERATE_MIPS","features":[401]},{"name":"D3D11_RESOURCE_MISC_GUARDED","features":[401]},{"name":"D3D11_RESOURCE_MISC_HW_PROTECTED","features":[401]},{"name":"D3D11_RESOURCE_MISC_RESOURCE_CLAMP","features":[401]},{"name":"D3D11_RESOURCE_MISC_RESTRICTED_CONTENT","features":[401]},{"name":"D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE","features":[401]},{"name":"D3D11_RESOURCE_MISC_RESTRICT_SHARED_RESOURCE_DRIVER","features":[401]},{"name":"D3D11_RESOURCE_MISC_SHARED","features":[401]},{"name":"D3D11_RESOURCE_MISC_SHARED_DISPLAYABLE","features":[401]},{"name":"D3D11_RESOURCE_MISC_SHARED_EXCLUSIVE_WRITER","features":[401]},{"name":"D3D11_RESOURCE_MISC_SHARED_KEYEDMUTEX","features":[401]},{"name":"D3D11_RESOURCE_MISC_SHARED_NTHANDLE","features":[401]},{"name":"D3D11_RESOURCE_MISC_TEXTURECUBE","features":[401]},{"name":"D3D11_RESOURCE_MISC_TILED","features":[401]},{"name":"D3D11_RESOURCE_MISC_TILE_POOL","features":[401]},{"name":"D3D11_RLDO_DETAIL","features":[401]},{"name":"D3D11_RLDO_FLAGS","features":[401]},{"name":"D3D11_RLDO_IGNORE_INTERNAL","features":[401]},{"name":"D3D11_RLDO_SUMMARY","features":[401]},{"name":"D3D11_RTV_DIMENSION","features":[401]},{"name":"D3D11_RTV_DIMENSION_BUFFER","features":[401]},{"name":"D3D11_RTV_DIMENSION_TEXTURE1D","features":[401]},{"name":"D3D11_RTV_DIMENSION_TEXTURE1DARRAY","features":[401]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2D","features":[401]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2DARRAY","features":[401]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2DMS","features":[401]},{"name":"D3D11_RTV_DIMENSION_TEXTURE2DMSARRAY","features":[401]},{"name":"D3D11_RTV_DIMENSION_TEXTURE3D","features":[401]},{"name":"D3D11_RTV_DIMENSION_UNKNOWN","features":[401]},{"name":"D3D11_SAMPLER_DESC","features":[401]},{"name":"D3D11_SDK_LAYERS_VERSION","features":[401]},{"name":"D3D11_SDK_VERSION","features":[401]},{"name":"D3D11_SHADER_BUFFER_DESC","features":[398,401]},{"name":"D3D11_SHADER_CACHE_SUPPORT_AUTOMATIC_DISK_CACHE","features":[401]},{"name":"D3D11_SHADER_CACHE_SUPPORT_AUTOMATIC_INPROC_CACHE","features":[401]},{"name":"D3D11_SHADER_CACHE_SUPPORT_FLAGS","features":[401]},{"name":"D3D11_SHADER_CACHE_SUPPORT_NONE","features":[401]},{"name":"D3D11_SHADER_DESC","features":[398,401]},{"name":"D3D11_SHADER_INPUT_BIND_DESC","features":[398,401]},{"name":"D3D11_SHADER_MAJOR_VERSION","features":[401]},{"name":"D3D11_SHADER_MAX_INSTANCES","features":[401]},{"name":"D3D11_SHADER_MAX_INTERFACES","features":[401]},{"name":"D3D11_SHADER_MAX_INTERFACE_CALL_SITES","features":[401]},{"name":"D3D11_SHADER_MAX_TYPES","features":[401]},{"name":"D3D11_SHADER_MINOR_VERSION","features":[401]},{"name":"D3D11_SHADER_MIN_PRECISION_10_BIT","features":[401]},{"name":"D3D11_SHADER_MIN_PRECISION_16_BIT","features":[401]},{"name":"D3D11_SHADER_MIN_PRECISION_SUPPORT","features":[401]},{"name":"D3D11_SHADER_RESOURCE_VIEW_DESC","features":[398,401,393]},{"name":"D3D11_SHADER_RESOURCE_VIEW_DESC1","features":[398,401,393]},{"name":"D3D11_SHADER_TRACE_DESC","features":[401]},{"name":"D3D11_SHADER_TRACE_FLAG_RECORD_REGISTER_READS","features":[401]},{"name":"D3D11_SHADER_TRACE_FLAG_RECORD_REGISTER_WRITES","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTIONS","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALLOW_SAME","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALL_HAZARDS","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALL_HAZARDS_ALLOWING_SAME","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_ALL_OPTIONS","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_IGNORE","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_ATOMIC_CONSISTENCY","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_ATOMIC_CONSISTENCY_ACROSS_THREADGROUPS","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_RAW","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_RAW_ACROSS_THREADGROUPS","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_UNINITIALIZED","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAR","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAR_ACROSS_THREADGROUPS","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAW","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_TRACK_WAW_ACROSS_THREADGROUPS","features":[401]},{"name":"D3D11_SHADER_TRACKING_OPTION_UAV_SPECIFIC_FLAGS","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL_DEVICEMEMORY","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_ALL_SHARED_MEMORY","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_GROUPSHARED_MEMORY","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_GROUPSHARED_NON_UAV","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_NONE","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_NON_UAV_DEVICEMEMORY","features":[401]},{"name":"D3D11_SHADER_TRACKING_RESOURCE_TYPE_UAV_DEVICEMEMORY","features":[401]},{"name":"D3D11_SHADER_TYPE","features":[401]},{"name":"D3D11_SHADER_TYPE_DESC","features":[398,401]},{"name":"D3D11_SHADER_VARIABLE_DESC","features":[401]},{"name":"D3D11_SHADER_VERSION_TYPE","features":[401]},{"name":"D3D11_SHARED_RESOURCE_TIER","features":[401]},{"name":"D3D11_SHARED_RESOURCE_TIER_0","features":[401]},{"name":"D3D11_SHARED_RESOURCE_TIER_1","features":[401]},{"name":"D3D11_SHARED_RESOURCE_TIER_2","features":[401]},{"name":"D3D11_SHARED_RESOURCE_TIER_3","features":[401]},{"name":"D3D11_SHIFT_INSTRUCTION_PAD_VALUE","features":[401]},{"name":"D3D11_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT","features":[401]},{"name":"D3D11_SHVER_COMPUTE_SHADER","features":[401]},{"name":"D3D11_SHVER_DOMAIN_SHADER","features":[401]},{"name":"D3D11_SHVER_GEOMETRY_SHADER","features":[401]},{"name":"D3D11_SHVER_HULL_SHADER","features":[401]},{"name":"D3D11_SHVER_PIXEL_SHADER","features":[401]},{"name":"D3D11_SHVER_RESERVED0","features":[401]},{"name":"D3D11_SHVER_VERTEX_SHADER","features":[401]},{"name":"D3D11_SIGNATURE_PARAMETER_DESC","features":[398,401]},{"name":"D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[401]},{"name":"D3D11_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[401]},{"name":"D3D11_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[401]},{"name":"D3D11_SO_BUFFER_SLOT_COUNT","features":[401]},{"name":"D3D11_SO_DDI_REGISTER_INDEX_DENOTING_GAP","features":[401]},{"name":"D3D11_SO_DECLARATION_ENTRY","features":[401]},{"name":"D3D11_SO_NO_RASTERIZED_STREAM","features":[401]},{"name":"D3D11_SO_OUTPUT_COMPONENT_COUNT","features":[401]},{"name":"D3D11_SO_STREAM_COUNT","features":[401]},{"name":"D3D11_SPEC_DATE_DAY","features":[401]},{"name":"D3D11_SPEC_DATE_MONTH","features":[401]},{"name":"D3D11_SPEC_DATE_YEAR","features":[401]},{"name":"D3D11_SPEC_VERSION","features":[401]},{"name":"D3D11_SRGB_GAMMA","features":[401]},{"name":"D3D11_SRGB_TO_FLOAT_DENOMINATOR_1","features":[401]},{"name":"D3D11_SRGB_TO_FLOAT_DENOMINATOR_2","features":[401]},{"name":"D3D11_SRGB_TO_FLOAT_EXPONENT","features":[401]},{"name":"D3D11_SRGB_TO_FLOAT_OFFSET","features":[401]},{"name":"D3D11_SRGB_TO_FLOAT_THRESHOLD","features":[401]},{"name":"D3D11_SRGB_TO_FLOAT_TOLERANCE_IN_ULP","features":[401]},{"name":"D3D11_STANDARD_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_STANDARD_COMPONENT_BIT_COUNT_DOUBLED","features":[401]},{"name":"D3D11_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE","features":[401]},{"name":"D3D11_STANDARD_MULTISAMPLE_PATTERN","features":[401]},{"name":"D3D11_STANDARD_MULTISAMPLE_QUALITY_LEVELS","features":[401]},{"name":"D3D11_STANDARD_PIXEL_COMPONENT_COUNT","features":[401]},{"name":"D3D11_STANDARD_PIXEL_ELEMENT_COUNT","features":[401]},{"name":"D3D11_STANDARD_VECTOR_SIZE","features":[401]},{"name":"D3D11_STANDARD_VERTEX_ELEMENT_COUNT","features":[401]},{"name":"D3D11_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT","features":[401]},{"name":"D3D11_STENCIL_OP","features":[401]},{"name":"D3D11_STENCIL_OP_DECR","features":[401]},{"name":"D3D11_STENCIL_OP_DECR_SAT","features":[401]},{"name":"D3D11_STENCIL_OP_INCR","features":[401]},{"name":"D3D11_STENCIL_OP_INCR_SAT","features":[401]},{"name":"D3D11_STENCIL_OP_INVERT","features":[401]},{"name":"D3D11_STENCIL_OP_KEEP","features":[401]},{"name":"D3D11_STENCIL_OP_REPLACE","features":[401]},{"name":"D3D11_STENCIL_OP_ZERO","features":[401]},{"name":"D3D11_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[401]},{"name":"D3D11_SUBRESOURCE_DATA","features":[401]},{"name":"D3D11_SUBRESOURCE_TILING","features":[401]},{"name":"D3D11_SUBTEXEL_FRACTIONAL_BIT_COUNT","features":[401]},{"name":"D3D11_TESSELLATOR_MAX_EVEN_TESSELLATION_FACTOR","features":[401]},{"name":"D3D11_TESSELLATOR_MAX_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[401]},{"name":"D3D11_TESSELLATOR_MAX_ODD_TESSELLATION_FACTOR","features":[401]},{"name":"D3D11_TESSELLATOR_MAX_TESSELLATION_FACTOR","features":[401]},{"name":"D3D11_TESSELLATOR_MIN_EVEN_TESSELLATION_FACTOR","features":[401]},{"name":"D3D11_TESSELLATOR_MIN_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[401]},{"name":"D3D11_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR","features":[401]},{"name":"D3D11_TEX1D_ARRAY_DSV","features":[401]},{"name":"D3D11_TEX1D_ARRAY_RTV","features":[401]},{"name":"D3D11_TEX1D_ARRAY_SRV","features":[401]},{"name":"D3D11_TEX1D_ARRAY_UAV","features":[401]},{"name":"D3D11_TEX1D_DSV","features":[401]},{"name":"D3D11_TEX1D_RTV","features":[401]},{"name":"D3D11_TEX1D_SRV","features":[401]},{"name":"D3D11_TEX1D_UAV","features":[401]},{"name":"D3D11_TEX2DMS_ARRAY_DSV","features":[401]},{"name":"D3D11_TEX2DMS_ARRAY_RTV","features":[401]},{"name":"D3D11_TEX2DMS_ARRAY_SRV","features":[401]},{"name":"D3D11_TEX2DMS_DSV","features":[401]},{"name":"D3D11_TEX2DMS_RTV","features":[401]},{"name":"D3D11_TEX2DMS_SRV","features":[401]},{"name":"D3D11_TEX2D_ARRAY_DSV","features":[401]},{"name":"D3D11_TEX2D_ARRAY_RTV","features":[401]},{"name":"D3D11_TEX2D_ARRAY_RTV1","features":[401]},{"name":"D3D11_TEX2D_ARRAY_SRV","features":[401]},{"name":"D3D11_TEX2D_ARRAY_SRV1","features":[401]},{"name":"D3D11_TEX2D_ARRAY_UAV","features":[401]},{"name":"D3D11_TEX2D_ARRAY_UAV1","features":[401]},{"name":"D3D11_TEX2D_ARRAY_VPOV","features":[401]},{"name":"D3D11_TEX2D_DSV","features":[401]},{"name":"D3D11_TEX2D_RTV","features":[401]},{"name":"D3D11_TEX2D_RTV1","features":[401]},{"name":"D3D11_TEX2D_SRV","features":[401]},{"name":"D3D11_TEX2D_SRV1","features":[401]},{"name":"D3D11_TEX2D_UAV","features":[401]},{"name":"D3D11_TEX2D_UAV1","features":[401]},{"name":"D3D11_TEX2D_VDOV","features":[401]},{"name":"D3D11_TEX2D_VPIV","features":[401]},{"name":"D3D11_TEX2D_VPOV","features":[401]},{"name":"D3D11_TEX3D_RTV","features":[401]},{"name":"D3D11_TEX3D_SRV","features":[401]},{"name":"D3D11_TEX3D_UAV","features":[401]},{"name":"D3D11_TEXCUBE_ARRAY_SRV","features":[401]},{"name":"D3D11_TEXCUBE_SRV","features":[401]},{"name":"D3D11_TEXEL_ADDRESS_RANGE_BIT_COUNT","features":[401]},{"name":"D3D11_TEXTURE1D_DESC","features":[401,393]},{"name":"D3D11_TEXTURE2D_DESC","features":[401,393]},{"name":"D3D11_TEXTURE2D_DESC1","features":[401,393]},{"name":"D3D11_TEXTURE3D_DESC","features":[401,393]},{"name":"D3D11_TEXTURE3D_DESC1","features":[401,393]},{"name":"D3D11_TEXTURECUBE_FACE","features":[401]},{"name":"D3D11_TEXTURECUBE_FACE_NEGATIVE_X","features":[401]},{"name":"D3D11_TEXTURECUBE_FACE_NEGATIVE_Y","features":[401]},{"name":"D3D11_TEXTURECUBE_FACE_NEGATIVE_Z","features":[401]},{"name":"D3D11_TEXTURECUBE_FACE_POSITIVE_X","features":[401]},{"name":"D3D11_TEXTURECUBE_FACE_POSITIVE_Y","features":[401]},{"name":"D3D11_TEXTURECUBE_FACE_POSITIVE_Z","features":[401]},{"name":"D3D11_TEXTURE_ADDRESS_BORDER","features":[401]},{"name":"D3D11_TEXTURE_ADDRESS_CLAMP","features":[401]},{"name":"D3D11_TEXTURE_ADDRESS_MIRROR","features":[401]},{"name":"D3D11_TEXTURE_ADDRESS_MIRROR_ONCE","features":[401]},{"name":"D3D11_TEXTURE_ADDRESS_MODE","features":[401]},{"name":"D3D11_TEXTURE_ADDRESS_WRAP","features":[401]},{"name":"D3D11_TEXTURE_LAYOUT","features":[401]},{"name":"D3D11_TEXTURE_LAYOUT_64K_STANDARD_SWIZZLE","features":[401]},{"name":"D3D11_TEXTURE_LAYOUT_ROW_MAJOR","features":[401]},{"name":"D3D11_TEXTURE_LAYOUT_UNDEFINED","features":[401]},{"name":"D3D11_TILED_RESOURCES_NOT_SUPPORTED","features":[401]},{"name":"D3D11_TILED_RESOURCES_TIER","features":[401]},{"name":"D3D11_TILED_RESOURCES_TIER_1","features":[401]},{"name":"D3D11_TILED_RESOURCES_TIER_2","features":[401]},{"name":"D3D11_TILED_RESOURCES_TIER_3","features":[401]},{"name":"D3D11_TILED_RESOURCE_COORDINATE","features":[401]},{"name":"D3D11_TILE_COPY_FLAG","features":[401]},{"name":"D3D11_TILE_COPY_LINEAR_BUFFER_TO_SWIZZLED_TILED_RESOURCE","features":[401]},{"name":"D3D11_TILE_COPY_NO_OVERWRITE","features":[401]},{"name":"D3D11_TILE_COPY_SWIZZLED_TILED_RESOURCE_TO_LINEAR_BUFFER","features":[401]},{"name":"D3D11_TILE_MAPPING_FLAG","features":[401]},{"name":"D3D11_TILE_MAPPING_NO_OVERWRITE","features":[401]},{"name":"D3D11_TILE_RANGE_FLAG","features":[401]},{"name":"D3D11_TILE_RANGE_NULL","features":[401]},{"name":"D3D11_TILE_RANGE_REUSE_SINGLE_TILE","features":[401]},{"name":"D3D11_TILE_RANGE_SKIP","features":[401]},{"name":"D3D11_TILE_REGION_SIZE","features":[305,401]},{"name":"D3D11_TILE_SHAPE","features":[401]},{"name":"D3D11_TRACE_COMPONENT_W","features":[401]},{"name":"D3D11_TRACE_COMPONENT_X","features":[401]},{"name":"D3D11_TRACE_COMPONENT_Y","features":[401]},{"name":"D3D11_TRACE_COMPONENT_Z","features":[401]},{"name":"D3D11_TRACE_CONSTANT_BUFFER","features":[401]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE","features":[401]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_LINE","features":[401]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_LINE_ADJ","features":[401]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_POINT","features":[401]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_TRIANGLE","features":[401]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_TRIANGLE_ADJ","features":[401]},{"name":"D3D11_TRACE_GS_INPUT_PRIMITIVE_UNDEFINED","features":[401]},{"name":"D3D11_TRACE_IMMEDIATE32","features":[401]},{"name":"D3D11_TRACE_IMMEDIATE64","features":[401]},{"name":"D3D11_TRACE_IMMEDIATE_CONSTANT_BUFFER","features":[401]},{"name":"D3D11_TRACE_INDEXABLE_TEMP_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_CONTROL_POINT_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_COVERAGE_MASK_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_CYCLE_COUNTER_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_DOMAIN_POINT_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_FORK_INSTANCE_ID_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_GS_INSTANCE_ID_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_JOIN_INSTANCE_ID_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_PATCH_CONSTANT_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_PRIMITIVE_ID_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_THREAD_GROUP_ID_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_FLATTENED_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_THREAD_ID_IN_GROUP_REGISTER","features":[401]},{"name":"D3D11_TRACE_INPUT_THREAD_ID_REGISTER","features":[401]},{"name":"D3D11_TRACE_INTERFACE_POINTER","features":[401]},{"name":"D3D11_TRACE_MISC_GS_CUT","features":[401]},{"name":"D3D11_TRACE_MISC_GS_CUT_STREAM","features":[401]},{"name":"D3D11_TRACE_MISC_GS_EMIT","features":[401]},{"name":"D3D11_TRACE_MISC_GS_EMIT_STREAM","features":[401]},{"name":"D3D11_TRACE_MISC_HALT","features":[401]},{"name":"D3D11_TRACE_MISC_MESSAGE","features":[401]},{"name":"D3D11_TRACE_MISC_PS_DISCARD","features":[401]},{"name":"D3D11_TRACE_OUTPUT_CONTROL_POINT_ID_REGISTER","features":[401]},{"name":"D3D11_TRACE_OUTPUT_CONTROL_POINT_REGISTER","features":[401]},{"name":"D3D11_TRACE_OUTPUT_COVERAGE_MASK","features":[401]},{"name":"D3D11_TRACE_OUTPUT_DEPTH_GREATER_EQUAL_REGISTER","features":[401]},{"name":"D3D11_TRACE_OUTPUT_DEPTH_LESS_EQUAL_REGISTER","features":[401]},{"name":"D3D11_TRACE_OUTPUT_DEPTH_REGISTER","features":[401]},{"name":"D3D11_TRACE_OUTPUT_NULL_REGISTER","features":[401]},{"name":"D3D11_TRACE_OUTPUT_REGISTER","features":[401]},{"name":"D3D11_TRACE_RASTERIZER","features":[401]},{"name":"D3D11_TRACE_REGISTER","features":[401]},{"name":"D3D11_TRACE_REGISTER_FLAGS_RELATIVE_INDEXING","features":[401]},{"name":"D3D11_TRACE_REGISTER_TYPE","features":[401]},{"name":"D3D11_TRACE_RESOURCE","features":[401]},{"name":"D3D11_TRACE_SAMPLER","features":[401]},{"name":"D3D11_TRACE_STATS","features":[305,401]},{"name":"D3D11_TRACE_STEP","features":[305,401]},{"name":"D3D11_TRACE_STREAM","features":[401]},{"name":"D3D11_TRACE_TEMP_REGISTER","features":[401]},{"name":"D3D11_TRACE_THIS_POINTER","features":[401]},{"name":"D3D11_TRACE_THREAD_GROUP_SHARED_MEMORY","features":[401]},{"name":"D3D11_TRACE_UNORDERED_ACCESS_VIEW","features":[401]},{"name":"D3D11_TRACE_VALUE","features":[401]},{"name":"D3D11_UAV_DIMENSION","features":[401]},{"name":"D3D11_UAV_DIMENSION_BUFFER","features":[401]},{"name":"D3D11_UAV_DIMENSION_TEXTURE1D","features":[401]},{"name":"D3D11_UAV_DIMENSION_TEXTURE1DARRAY","features":[401]},{"name":"D3D11_UAV_DIMENSION_TEXTURE2D","features":[401]},{"name":"D3D11_UAV_DIMENSION_TEXTURE2DARRAY","features":[401]},{"name":"D3D11_UAV_DIMENSION_TEXTURE3D","features":[401]},{"name":"D3D11_UAV_DIMENSION_UNKNOWN","features":[401]},{"name":"D3D11_UNBOUND_MEMORY_ACCESS_RESULT","features":[401]},{"name":"D3D11_UNMUTE_SEVERITY_INFO","features":[401]},{"name":"D3D11_UNORDERED_ACCESS_VIEW_DESC","features":[401,393]},{"name":"D3D11_UNORDERED_ACCESS_VIEW_DESC1","features":[401,393]},{"name":"D3D11_USAGE","features":[401]},{"name":"D3D11_USAGE_DEFAULT","features":[401]},{"name":"D3D11_USAGE_DYNAMIC","features":[401]},{"name":"D3D11_USAGE_IMMUTABLE","features":[401]},{"name":"D3D11_USAGE_STAGING","features":[401]},{"name":"D3D11_VDOV_DIMENSION","features":[401]},{"name":"D3D11_VDOV_DIMENSION_TEXTURE2D","features":[401]},{"name":"D3D11_VDOV_DIMENSION_UNKNOWN","features":[401]},{"name":"D3D11_VERTEX_SHADER","features":[401]},{"name":"D3D11_VERTEX_SHADER_TRACE_DESC","features":[401]},{"name":"D3D11_VIDEO_COLOR","features":[401]},{"name":"D3D11_VIDEO_COLOR_RGBA","features":[401]},{"name":"D3D11_VIDEO_COLOR_YCbCrA","features":[401]},{"name":"D3D11_VIDEO_CONTENT_PROTECTION_CAPS","features":[401]},{"name":"D3D11_VIDEO_DECODER_BEGIN_FRAME_CRYPTO_SESSION","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_BITSTREAM","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DEBLOCKING_CONTROL","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DESC","features":[305,401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DESC1","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_DESC2","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_FILM_GRAIN","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_INVERSE_QUANTIZATION_MATRIX","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_MACROBLOCK_CONTROL","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_MOTION_VECTOR","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_PICTURE_PARAMETERS","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_RESIDUAL_DIFFERENCE","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_SLICE_CONTROL","features":[401]},{"name":"D3D11_VIDEO_DECODER_BUFFER_TYPE","features":[401]},{"name":"D3D11_VIDEO_DECODER_CAPS","features":[401]},{"name":"D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE","features":[401]},{"name":"D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE_DYNAMIC","features":[401]},{"name":"D3D11_VIDEO_DECODER_CAPS_DOWNSAMPLE_REQUIRED","features":[401]},{"name":"D3D11_VIDEO_DECODER_CAPS_NON_REAL_TIME","features":[401]},{"name":"D3D11_VIDEO_DECODER_CAPS_UNSUPPORTED","features":[401]},{"name":"D3D11_VIDEO_DECODER_CONFIG","features":[401]},{"name":"D3D11_VIDEO_DECODER_DESC","features":[401,393]},{"name":"D3D11_VIDEO_DECODER_EXTENSION","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_A","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_B","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAGS","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_A","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_B","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_G","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_NONE","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_R","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_U","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_V","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_FLAG_Y","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_G","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_R","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_U","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_V","features":[401]},{"name":"D3D11_VIDEO_DECODER_HISTOGRAM_COMPONENT_Y","features":[401]},{"name":"D3D11_VIDEO_DECODER_OUTPUT_VIEW_DESC","features":[401]},{"name":"D3D11_VIDEO_DECODER_SUB_SAMPLE_MAPPING_BLOCK","features":[401]},{"name":"D3D11_VIDEO_FRAME_FORMAT","features":[401]},{"name":"D3D11_VIDEO_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[401]},{"name":"D3D11_VIDEO_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[401]},{"name":"D3D11_VIDEO_FRAME_FORMAT_PROGRESSIVE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_BACKGROUND","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_DESTINATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_OPAQUE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ALPHA_FILL_MODE_SOURCE_STREAM","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_ANAMORPHIC_SCALING","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_COLOR_CORRECTION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_DENOISE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_DERINGING","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_EDGE_ENHANCEMENT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_FLESH_TONE_MAPPING","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_IMAGE_STABILIZATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_AUTO_STREAM_CAPS_SUPER_RESOLUTION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINTS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_COLOR_SPACE_CONVERSION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_RESIZE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_MULTIPLANE_OVERLAY_ROTATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_BEHAVIOR_HINT_TRIPLE_BUFFER_OUTPUT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_COLOR_SPACE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_CONTENT_DESC","features":[401,393]},{"name":"D3D11_VIDEO_PROCESSOR_CUSTOM_RATE","features":[305,401,393]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_LINEAR_SPACE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_NOMINAL_RANGE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_RGB_RANGE_CONVERSION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_YCbCr_MATRIX_CONVERSION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_DEVICE_CAPS_xvYCC","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_FILL","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_PALETTE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ALPHA_STREAM","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_CONSTRICTION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_LEGACY","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_LUMA_KEY","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_METADATA_HDR10","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_MIRROR","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_PIXEL_ASPECT_RATIO","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_ROTATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_SHADER_USAGE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FEATURE_CAPS_STEREO","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_ANAMORPHIC_SCALING","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_BRIGHTNESS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_ANAMORPHIC_SCALING","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_BRIGHTNESS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_CONTRAST","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_EDGE_ENHANCEMENT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_HUE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_NOISE_REDUCTION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_SATURATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CAPS_STEREO_ADJUSTMENT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_CONTRAST","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_EDGE_ENHANCEMENT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_HUE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_NOISE_REDUCTION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_RANGE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_SATURATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FILTER_STEREO_ADJUSTMENT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_PALETTE_INTERLACED","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_INTERLACED","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_LUMA_KEY","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_CAPS_RGB_PROCAMP","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_INPUT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_OUTPUT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_INPUT_VIEW_DESC","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_22","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_222222222223","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_2224","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_2332","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_32","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_32322","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_55","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_64","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_87","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ITELECINE_CAPS_OTHER","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_0_255","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_16_235","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_NOMINAL_RANGE_UNDEFINED","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_CUSTOM","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_HALF","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_RATE_NORMAL","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_OUTPUT_VIEW_DESC","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_ADAPTIVE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_BLEND","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_BOB","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_DEINTERLACE_MOTION_COMPENSATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_FRAME_RATE_CONVERSION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_PROCESSOR_CAPS_INVERSE_TELECINE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_180","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_270","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_90","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_ROTATION_IDENTITY","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_CHECKERBOARD","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_COLUMN_INTERLEAVED","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_FLIP_MODE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_MONO_OFFSET","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_CAPS_ROW_INTERLEAVED","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_FRAME0","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_FRAME1","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_MODE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FLIP_NONE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_CHECKERBOARD","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_COLUMN_INTERLEAVED","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_HORIZONTAL","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_MONO_OFFSET","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_ROW_INTERLEAVED","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_SEPARATE","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STEREO_FORMAT_VERTICAL","features":[401]},{"name":"D3D11_VIDEO_PROCESSOR_STREAM","features":[305,401]},{"name":"D3D11_VIDEO_PROCESSOR_STREAM_BEHAVIOR_HINT","features":[305,401,393]},{"name":"D3D11_VIDEO_SAMPLE_DESC","features":[401,393]},{"name":"D3D11_VIDEO_USAGE","features":[401]},{"name":"D3D11_VIDEO_USAGE_OPTIMAL_QUALITY","features":[401]},{"name":"D3D11_VIDEO_USAGE_OPTIMAL_SPEED","features":[401]},{"name":"D3D11_VIDEO_USAGE_PLAYBACK_NORMAL","features":[401]},{"name":"D3D11_VIEWPORT","features":[401]},{"name":"D3D11_VIEWPORT_AND_SCISSORRECT_MAX_INDEX","features":[401]},{"name":"D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE","features":[401]},{"name":"D3D11_VIEWPORT_BOUNDS_MAX","features":[401]},{"name":"D3D11_VIEWPORT_BOUNDS_MIN","features":[401]},{"name":"D3D11_VPIV_DIMENSION","features":[401]},{"name":"D3D11_VPIV_DIMENSION_TEXTURE2D","features":[401]},{"name":"D3D11_VPIV_DIMENSION_UNKNOWN","features":[401]},{"name":"D3D11_VPOV_DIMENSION","features":[401]},{"name":"D3D11_VPOV_DIMENSION_TEXTURE2D","features":[401]},{"name":"D3D11_VPOV_DIMENSION_TEXTURE2DARRAY","features":[401]},{"name":"D3D11_VPOV_DIMENSION_UNKNOWN","features":[401]},{"name":"D3D11_VS_INPUT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_VS_INPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_VS_INPUT_REGISTER_READS_PER_INST","features":[401]},{"name":"D3D11_VS_INPUT_REGISTER_READ_PORTS","features":[401]},{"name":"D3D11_VS_OUTPUT_REGISTER_COMPONENTS","features":[401]},{"name":"D3D11_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[401]},{"name":"D3D11_VS_OUTPUT_REGISTER_COUNT","features":[401]},{"name":"D3D11_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT","features":[401]},{"name":"D3D11_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[401]},{"name":"D3D11_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP","features":[401]},{"name":"D3DCSX_DLL","features":[401]},{"name":"D3DCSX_DLL_A","features":[401]},{"name":"D3DCSX_DLL_W","features":[401]},{"name":"D3DDisassemble11Trace","features":[398,401]},{"name":"D3DX11CreateFFT","features":[401]},{"name":"D3DX11CreateFFT1DComplex","features":[401]},{"name":"D3DX11CreateFFT1DReal","features":[401]},{"name":"D3DX11CreateFFT2DComplex","features":[401]},{"name":"D3DX11CreateFFT2DReal","features":[401]},{"name":"D3DX11CreateFFT3DComplex","features":[401]},{"name":"D3DX11CreateFFT3DReal","features":[401]},{"name":"D3DX11CreateScan","features":[401]},{"name":"D3DX11CreateSegmentedScan","features":[401]},{"name":"D3DX11_FFT_BUFFER_INFO","features":[401]},{"name":"D3DX11_FFT_CREATE_FLAG","features":[401]},{"name":"D3DX11_FFT_CREATE_FLAG_NO_PRECOMPUTE_BUFFERS","features":[401]},{"name":"D3DX11_FFT_DATA_TYPE","features":[401]},{"name":"D3DX11_FFT_DATA_TYPE_COMPLEX","features":[401]},{"name":"D3DX11_FFT_DATA_TYPE_REAL","features":[401]},{"name":"D3DX11_FFT_DESC","features":[401]},{"name":"D3DX11_FFT_DIM_MASK","features":[401]},{"name":"D3DX11_FFT_DIM_MASK_1D","features":[401]},{"name":"D3DX11_FFT_DIM_MASK_2D","features":[401]},{"name":"D3DX11_FFT_DIM_MASK_3D","features":[401]},{"name":"D3DX11_FFT_MAX_DIMENSIONS","features":[401]},{"name":"D3DX11_FFT_MAX_PRECOMPUTE_BUFFERS","features":[401]},{"name":"D3DX11_FFT_MAX_TEMP_BUFFERS","features":[401]},{"name":"D3DX11_SCAN_DATA_TYPE","features":[401]},{"name":"D3DX11_SCAN_DATA_TYPE_FLOAT","features":[401]},{"name":"D3DX11_SCAN_DATA_TYPE_INT","features":[401]},{"name":"D3DX11_SCAN_DATA_TYPE_UINT","features":[401]},{"name":"D3DX11_SCAN_DIRECTION","features":[401]},{"name":"D3DX11_SCAN_DIRECTION_BACKWARD","features":[401]},{"name":"D3DX11_SCAN_DIRECTION_FORWARD","features":[401]},{"name":"D3DX11_SCAN_OPCODE","features":[401]},{"name":"D3DX11_SCAN_OPCODE_ADD","features":[401]},{"name":"D3DX11_SCAN_OPCODE_AND","features":[401]},{"name":"D3DX11_SCAN_OPCODE_MAX","features":[401]},{"name":"D3DX11_SCAN_OPCODE_MIN","features":[401]},{"name":"D3DX11_SCAN_OPCODE_MUL","features":[401]},{"name":"D3DX11_SCAN_OPCODE_OR","features":[401]},{"name":"D3DX11_SCAN_OPCODE_XOR","features":[401]},{"name":"D3D_RETURN_PARAMETER_INDEX","features":[401]},{"name":"D3D_SHADER_REQUIRES_11_1_DOUBLE_EXTENSIONS","features":[401]},{"name":"D3D_SHADER_REQUIRES_11_1_SHADER_EXTENSIONS","features":[401]},{"name":"D3D_SHADER_REQUIRES_64_UAVS","features":[401]},{"name":"D3D_SHADER_REQUIRES_DOUBLES","features":[401]},{"name":"D3D_SHADER_REQUIRES_EARLY_DEPTH_STENCIL","features":[401]},{"name":"D3D_SHADER_REQUIRES_LEVEL_9_COMPARISON_FILTERING","features":[401]},{"name":"D3D_SHADER_REQUIRES_MINIMUM_PRECISION","features":[401]},{"name":"D3D_SHADER_REQUIRES_TILED_RESOURCES","features":[401]},{"name":"D3D_SHADER_REQUIRES_UAVS_AT_EVERY_STAGE","features":[401]},{"name":"DXGI_DEBUG_D3D11","features":[401]},{"name":"ID3D11Asynchronous","features":[401]},{"name":"ID3D11AuthenticatedChannel","features":[401]},{"name":"ID3D11BlendState","features":[401]},{"name":"ID3D11BlendState1","features":[401]},{"name":"ID3D11Buffer","features":[401]},{"name":"ID3D11ClassInstance","features":[401]},{"name":"ID3D11ClassLinkage","features":[401]},{"name":"ID3D11CommandList","features":[401]},{"name":"ID3D11ComputeShader","features":[401]},{"name":"ID3D11Counter","features":[401]},{"name":"ID3D11CryptoSession","features":[401]},{"name":"ID3D11Debug","features":[401]},{"name":"ID3D11DepthStencilState","features":[401]},{"name":"ID3D11DepthStencilView","features":[401]},{"name":"ID3D11Device","features":[401]},{"name":"ID3D11Device1","features":[401]},{"name":"ID3D11Device2","features":[401]},{"name":"ID3D11Device3","features":[401]},{"name":"ID3D11Device4","features":[401]},{"name":"ID3D11Device5","features":[401]},{"name":"ID3D11DeviceChild","features":[401]},{"name":"ID3D11DeviceContext","features":[401]},{"name":"ID3D11DeviceContext1","features":[401]},{"name":"ID3D11DeviceContext2","features":[401]},{"name":"ID3D11DeviceContext3","features":[401]},{"name":"ID3D11DeviceContext4","features":[401]},{"name":"ID3D11DomainShader","features":[401]},{"name":"ID3D11Fence","features":[401]},{"name":"ID3D11FunctionLinkingGraph","features":[401]},{"name":"ID3D11FunctionParameterReflection","features":[401]},{"name":"ID3D11FunctionReflection","features":[401]},{"name":"ID3D11GeometryShader","features":[401]},{"name":"ID3D11HullShader","features":[401]},{"name":"ID3D11InfoQueue","features":[401]},{"name":"ID3D11InputLayout","features":[401]},{"name":"ID3D11LibraryReflection","features":[401]},{"name":"ID3D11Linker","features":[401]},{"name":"ID3D11LinkingNode","features":[401]},{"name":"ID3D11Module","features":[401]},{"name":"ID3D11ModuleInstance","features":[401]},{"name":"ID3D11Multithread","features":[401]},{"name":"ID3D11PixelShader","features":[401]},{"name":"ID3D11Predicate","features":[401]},{"name":"ID3D11Query","features":[401]},{"name":"ID3D11Query1","features":[401]},{"name":"ID3D11RasterizerState","features":[401]},{"name":"ID3D11RasterizerState1","features":[401]},{"name":"ID3D11RasterizerState2","features":[401]},{"name":"ID3D11RefDefaultTrackingOptions","features":[401]},{"name":"ID3D11RefTrackingOptions","features":[401]},{"name":"ID3D11RenderTargetView","features":[401]},{"name":"ID3D11RenderTargetView1","features":[401]},{"name":"ID3D11Resource","features":[401]},{"name":"ID3D11SamplerState","features":[401]},{"name":"ID3D11ShaderReflection","features":[401]},{"name":"ID3D11ShaderReflectionConstantBuffer","features":[401]},{"name":"ID3D11ShaderReflectionType","features":[401]},{"name":"ID3D11ShaderReflectionVariable","features":[401]},{"name":"ID3D11ShaderResourceView","features":[401]},{"name":"ID3D11ShaderResourceView1","features":[401]},{"name":"ID3D11ShaderTrace","features":[401]},{"name":"ID3D11ShaderTraceFactory","features":[401]},{"name":"ID3D11SwitchToRef","features":[401]},{"name":"ID3D11Texture1D","features":[401]},{"name":"ID3D11Texture2D","features":[401]},{"name":"ID3D11Texture2D1","features":[401]},{"name":"ID3D11Texture3D","features":[401]},{"name":"ID3D11Texture3D1","features":[401]},{"name":"ID3D11TracingDevice","features":[401]},{"name":"ID3D11UnorderedAccessView","features":[401]},{"name":"ID3D11UnorderedAccessView1","features":[401]},{"name":"ID3D11VertexShader","features":[401]},{"name":"ID3D11VideoContext","features":[401]},{"name":"ID3D11VideoContext1","features":[401]},{"name":"ID3D11VideoContext2","features":[401]},{"name":"ID3D11VideoContext3","features":[401]},{"name":"ID3D11VideoDecoder","features":[401]},{"name":"ID3D11VideoDecoderOutputView","features":[401]},{"name":"ID3D11VideoDevice","features":[401]},{"name":"ID3D11VideoDevice1","features":[401]},{"name":"ID3D11VideoDevice2","features":[401]},{"name":"ID3D11VideoProcessor","features":[401]},{"name":"ID3D11VideoProcessorEnumerator","features":[401]},{"name":"ID3D11VideoProcessorEnumerator1","features":[401]},{"name":"ID3D11VideoProcessorInputView","features":[401]},{"name":"ID3D11VideoProcessorOutputView","features":[401]},{"name":"ID3D11View","features":[401]},{"name":"ID3DDeviceContextState","features":[401]},{"name":"ID3DUserDefinedAnnotation","features":[401]},{"name":"ID3DX11FFT","features":[401]},{"name":"ID3DX11Scan","features":[401]},{"name":"ID3DX11SegmentedScan","features":[401]},{"name":"PFN_D3D11_CREATE_DEVICE","features":[305,398,401,397]},{"name":"PFN_D3D11_CREATE_DEVICE_AND_SWAP_CHAIN","features":[305,398,401,393]},{"name":"_FACD3D11","features":[401]}],"404":[{"name":"D3D11On12CreateDevice","features":[398,401,403]},{"name":"D3D11_RESOURCE_FLAGS","features":[403]},{"name":"ID3D11On12Device","features":[403]},{"name":"ID3D11On12Device1","features":[403]},{"name":"ID3D11On12Device2","features":[403]},{"name":"PFN_D3D11ON12_CREATE_DEVICE","features":[398,401,403]}],"405":[{"name":"CLSID_D3D12Debug","features":[352]},{"name":"CLSID_D3D12DeviceFactory","features":[352]},{"name":"CLSID_D3D12DeviceRemovedExtendedData","features":[352]},{"name":"CLSID_D3D12SDKConfiguration","features":[352]},{"name":"CLSID_D3D12Tools","features":[352]},{"name":"D3D12CreateDevice","features":[398,352]},{"name":"D3D12CreateRootSignatureDeserializer","features":[352]},{"name":"D3D12CreateVersionedRootSignatureDeserializer","features":[352]},{"name":"D3D12EnableExperimentalFeatures","features":[352]},{"name":"D3D12ExperimentalShaderModels","features":[352]},{"name":"D3D12GetDebugInterface","features":[352]},{"name":"D3D12GetInterface","features":[352]},{"name":"D3D12MessageFunc","features":[352]},{"name":"D3D12SerializeRootSignature","features":[398,352]},{"name":"D3D12SerializeVersionedRootSignature","features":[398,352]},{"name":"D3D12TiledResourceTier4","features":[352]},{"name":"D3D12_16BIT_INDEX_STRIP_CUT_VALUE","features":[352]},{"name":"D3D12_32BIT_INDEX_STRIP_CUT_VALUE","features":[352]},{"name":"D3D12_8BIT_INDEX_STRIP_CUT_VALUE","features":[352]},{"name":"D3D12_ANISOTROPIC_FILTERING_BIT","features":[352]},{"name":"D3D12_APPEND_ALIGNED_ELEMENT","features":[352]},{"name":"D3D12_ARRAY_AXIS_ADDRESS_RANGE_BIT_COUNT","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_NODE","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_NODE1","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ATOMICCOPYBUFFERUINT","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ATOMICCOPYBUFFERUINT64","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BARRIER","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BEGINEVENT","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BEGINSUBMISSION","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BEGIN_COMMAND_LIST","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_BUILDRAYTRACINGACCELERATIONSTRUCTURE","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_CLEARDEPTHSTENCILVIEW","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_CLEARRENDERTARGETVIEW","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_CLEARUNORDEREDACCESSVIEW","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYBUFFERREGION","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYRAYTRACINGACCELERATIONSTRUCTURE","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYRESOURCE","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYTEXTUREREGION","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_COPYTILES","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME1","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME2","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DISPATCH","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DISPATCHGRAPH","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DISPATCHMESH","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DISPATCHRAYS","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DRAWINDEXEDINSTANCED","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_DRAWINSTANCED","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EMITRAYTRACINGACCELERATIONSTRUCTUREPOSTBUILDINFO","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ENCODEFRAME","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ENDEVENT","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ENDSUBMISSION","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_ESTIMATEMOTION","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEBUNDLE","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEEXTENSIONCOMMAND","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEINDIRECT","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_EXECUTEMETACOMMAND","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_INITIALIZEEXTENSIONCOMMAND","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_INITIALIZEMETACOMMAND","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_PRESENT","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_PROCESSFRAMES","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_PROCESSFRAMES1","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVEENCODEROUTPUTMETADATA","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVEMOTIONVECTORHEAP","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVEQUERYDATA","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVESUBRESOURCE","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOLVESUBRESOURCEREGION","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_RESOURCEBARRIER","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_SETMARKER","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_SETPIPELINESTATE1","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_SETPROGRAM","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_SETPROTECTEDRESOURCESESSION","features":[352]},{"name":"D3D12_AUTO_BREADCRUMB_OP_WRITEBUFFERIMMEDIATE","features":[352]},{"name":"D3D12_AXIS_SHADING_RATE","features":[352]},{"name":"D3D12_AXIS_SHADING_RATE_1X","features":[352]},{"name":"D3D12_AXIS_SHADING_RATE_2X","features":[352]},{"name":"D3D12_AXIS_SHADING_RATE_4X","features":[352]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE","features":[352]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_ALLOWED","features":[352]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_ALLOW_INTRUSIVE_MEASUREMENTS","features":[352]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_DISABLE_BACKGROUND_WORK","features":[352]},{"name":"D3D12_BACKGROUND_PROCESSING_MODE_DISABLE_PROFILING_BY_SYSTEM","features":[352]},{"name":"D3D12_BARRIER_ACCESS","features":[352]},{"name":"D3D12_BARRIER_ACCESS_COMMON","features":[352]},{"name":"D3D12_BARRIER_ACCESS_CONSTANT_BUFFER","features":[352]},{"name":"D3D12_BARRIER_ACCESS_COPY_DEST","features":[352]},{"name":"D3D12_BARRIER_ACCESS_COPY_SOURCE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_DEPTH_STENCIL_READ","features":[352]},{"name":"D3D12_BARRIER_ACCESS_DEPTH_STENCIL_WRITE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_INDEX_BUFFER","features":[352]},{"name":"D3D12_BARRIER_ACCESS_INDIRECT_ARGUMENT","features":[352]},{"name":"D3D12_BARRIER_ACCESS_NO_ACCESS","features":[352]},{"name":"D3D12_BARRIER_ACCESS_PREDICATION","features":[352]},{"name":"D3D12_BARRIER_ACCESS_RAYTRACING_ACCELERATION_STRUCTURE_READ","features":[352]},{"name":"D3D12_BARRIER_ACCESS_RAYTRACING_ACCELERATION_STRUCTURE_WRITE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_RENDER_TARGET","features":[352]},{"name":"D3D12_BARRIER_ACCESS_RESOLVE_DEST","features":[352]},{"name":"D3D12_BARRIER_ACCESS_RESOLVE_SOURCE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_SHADER_RESOURCE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_SHADING_RATE_SOURCE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_STREAM_OUTPUT","features":[352]},{"name":"D3D12_BARRIER_ACCESS_UNORDERED_ACCESS","features":[352]},{"name":"D3D12_BARRIER_ACCESS_VERTEX_BUFFER","features":[352]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_DECODE_READ","features":[352]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_DECODE_WRITE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_ENCODE_READ","features":[352]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_ENCODE_WRITE","features":[352]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_PROCESS_READ","features":[352]},{"name":"D3D12_BARRIER_ACCESS_VIDEO_PROCESS_WRITE","features":[352]},{"name":"D3D12_BARRIER_GROUP","features":[352]},{"name":"D3D12_BARRIER_LAYOUT","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COMMON","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_COMMON","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_COPY_DEST","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_COPY_SOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_GENERIC_READ","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_SHADER_RESOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COMPUTE_QUEUE_UNORDERED_ACCESS","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COPY_DEST","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_COPY_SOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DEPTH_STENCIL_READ","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DEPTH_STENCIL_WRITE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_COMMON","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_COPY_DEST","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_COPY_SOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_GENERIC_READ","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_SHADER_RESOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_DIRECT_QUEUE_UNORDERED_ACCESS","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_GENERIC_READ","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_PRESENT","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_RENDER_TARGET","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_RESOLVE_DEST","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_RESOLVE_SOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_SHADER_RESOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_SHADING_RATE_SOURCE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_UNDEFINED","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_UNORDERED_ACCESS","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_DECODE_READ","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_DECODE_WRITE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_ENCODE_READ","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_ENCODE_WRITE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_PROCESS_READ","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_PROCESS_WRITE","features":[352]},{"name":"D3D12_BARRIER_LAYOUT_VIDEO_QUEUE_COMMON","features":[352]},{"name":"D3D12_BARRIER_SUBRESOURCE_RANGE","features":[352]},{"name":"D3D12_BARRIER_SYNC","features":[352]},{"name":"D3D12_BARRIER_SYNC_ALL","features":[352]},{"name":"D3D12_BARRIER_SYNC_ALL_SHADING","features":[352]},{"name":"D3D12_BARRIER_SYNC_BUILD_RAYTRACING_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_BARRIER_SYNC_CLEAR_UNORDERED_ACCESS_VIEW","features":[352]},{"name":"D3D12_BARRIER_SYNC_COMPUTE_SHADING","features":[352]},{"name":"D3D12_BARRIER_SYNC_COPY","features":[352]},{"name":"D3D12_BARRIER_SYNC_COPY_RAYTRACING_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_BARRIER_SYNC_DEPTH_STENCIL","features":[352]},{"name":"D3D12_BARRIER_SYNC_DRAW","features":[352]},{"name":"D3D12_BARRIER_SYNC_EMIT_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO","features":[352]},{"name":"D3D12_BARRIER_SYNC_EXECUTE_INDIRECT","features":[352]},{"name":"D3D12_BARRIER_SYNC_INDEX_INPUT","features":[352]},{"name":"D3D12_BARRIER_SYNC_NONE","features":[352]},{"name":"D3D12_BARRIER_SYNC_NON_PIXEL_SHADING","features":[352]},{"name":"D3D12_BARRIER_SYNC_PIXEL_SHADING","features":[352]},{"name":"D3D12_BARRIER_SYNC_PREDICATION","features":[352]},{"name":"D3D12_BARRIER_SYNC_RAYTRACING","features":[352]},{"name":"D3D12_BARRIER_SYNC_RENDER_TARGET","features":[352]},{"name":"D3D12_BARRIER_SYNC_RESOLVE","features":[352]},{"name":"D3D12_BARRIER_SYNC_SPLIT","features":[352]},{"name":"D3D12_BARRIER_SYNC_VERTEX_SHADING","features":[352]},{"name":"D3D12_BARRIER_SYNC_VIDEO_DECODE","features":[352]},{"name":"D3D12_BARRIER_SYNC_VIDEO_ENCODE","features":[352]},{"name":"D3D12_BARRIER_SYNC_VIDEO_PROCESS","features":[352]},{"name":"D3D12_BARRIER_TYPE","features":[352]},{"name":"D3D12_BARRIER_TYPE_BUFFER","features":[352]},{"name":"D3D12_BARRIER_TYPE_GLOBAL","features":[352]},{"name":"D3D12_BARRIER_TYPE_TEXTURE","features":[352]},{"name":"D3D12_BLEND","features":[352]},{"name":"D3D12_BLEND_ALPHA_FACTOR","features":[352]},{"name":"D3D12_BLEND_BLEND_FACTOR","features":[352]},{"name":"D3D12_BLEND_DESC","features":[305,352]},{"name":"D3D12_BLEND_DEST_ALPHA","features":[352]},{"name":"D3D12_BLEND_DEST_COLOR","features":[352]},{"name":"D3D12_BLEND_INV_ALPHA_FACTOR","features":[352]},{"name":"D3D12_BLEND_INV_BLEND_FACTOR","features":[352]},{"name":"D3D12_BLEND_INV_DEST_ALPHA","features":[352]},{"name":"D3D12_BLEND_INV_DEST_COLOR","features":[352]},{"name":"D3D12_BLEND_INV_SRC1_ALPHA","features":[352]},{"name":"D3D12_BLEND_INV_SRC1_COLOR","features":[352]},{"name":"D3D12_BLEND_INV_SRC_ALPHA","features":[352]},{"name":"D3D12_BLEND_INV_SRC_COLOR","features":[352]},{"name":"D3D12_BLEND_ONE","features":[352]},{"name":"D3D12_BLEND_OP","features":[352]},{"name":"D3D12_BLEND_OP_ADD","features":[352]},{"name":"D3D12_BLEND_OP_MAX","features":[352]},{"name":"D3D12_BLEND_OP_MIN","features":[352]},{"name":"D3D12_BLEND_OP_REV_SUBTRACT","features":[352]},{"name":"D3D12_BLEND_OP_SUBTRACT","features":[352]},{"name":"D3D12_BLEND_SRC1_ALPHA","features":[352]},{"name":"D3D12_BLEND_SRC1_COLOR","features":[352]},{"name":"D3D12_BLEND_SRC_ALPHA","features":[352]},{"name":"D3D12_BLEND_SRC_ALPHA_SAT","features":[352]},{"name":"D3D12_BLEND_SRC_COLOR","features":[352]},{"name":"D3D12_BLEND_ZERO","features":[352]},{"name":"D3D12_BOX","features":[352]},{"name":"D3D12_BROADCASTING_LAUNCH_OVERRIDES","features":[305,352]},{"name":"D3D12_BUFFER_BARRIER","features":[352]},{"name":"D3D12_BUFFER_RTV","features":[352]},{"name":"D3D12_BUFFER_SRV","features":[352]},{"name":"D3D12_BUFFER_SRV_FLAGS","features":[352]},{"name":"D3D12_BUFFER_SRV_FLAG_NONE","features":[352]},{"name":"D3D12_BUFFER_SRV_FLAG_RAW","features":[352]},{"name":"D3D12_BUFFER_UAV","features":[352]},{"name":"D3D12_BUFFER_UAV_FLAGS","features":[352]},{"name":"D3D12_BUFFER_UAV_FLAG_NONE","features":[352]},{"name":"D3D12_BUFFER_UAV_FLAG_RAW","features":[352]},{"name":"D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_DESC","features":[352,393]},{"name":"D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INPUTS","features":[352,393]},{"name":"D3D12_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_TOOLS_VISUALIZATION_HEADER","features":[352]},{"name":"D3D12_CACHED_PIPELINE_STATE","features":[352]},{"name":"D3D12_CENTER_MULTISAMPLE_PATTERN","features":[352]},{"name":"D3D12_CLEAR_FLAGS","features":[352]},{"name":"D3D12_CLEAR_FLAG_DEPTH","features":[352]},{"name":"D3D12_CLEAR_FLAG_STENCIL","features":[352]},{"name":"D3D12_CLEAR_VALUE","features":[352,393]},{"name":"D3D12_CLIP_OR_CULL_DISTANCE_COUNT","features":[352]},{"name":"D3D12_CLIP_OR_CULL_DISTANCE_ELEMENT_COUNT","features":[352]},{"name":"D3D12_COALESCING_LAUNCH_OVERRIDES","features":[305,352]},{"name":"D3D12_COLOR_WRITE_ENABLE","features":[352]},{"name":"D3D12_COLOR_WRITE_ENABLE_ALL","features":[352]},{"name":"D3D12_COLOR_WRITE_ENABLE_ALPHA","features":[352]},{"name":"D3D12_COLOR_WRITE_ENABLE_BLUE","features":[352]},{"name":"D3D12_COLOR_WRITE_ENABLE_GREEN","features":[352]},{"name":"D3D12_COLOR_WRITE_ENABLE_RED","features":[352]},{"name":"D3D12_COMMAND_LIST_FLAGS","features":[352]},{"name":"D3D12_COMMAND_LIST_FLAG_NONE","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAGS","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_BUNDLE","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_COMPUTE","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_COPY","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_DIRECT","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_NONE","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_DECODE","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_ENCODE","features":[352]},{"name":"D3D12_COMMAND_LIST_SUPPORT_FLAG_VIDEO_PROCESS","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_BUNDLE","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_COMPUTE","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_COPY","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_DIRECT","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_NONE","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_VIDEO_DECODE","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_VIDEO_ENCODE","features":[352]},{"name":"D3D12_COMMAND_LIST_TYPE_VIDEO_PROCESS","features":[352]},{"name":"D3D12_COMMAND_POOL_FLAGS","features":[352]},{"name":"D3D12_COMMAND_POOL_FLAG_NONE","features":[352]},{"name":"D3D12_COMMAND_QUEUE_DESC","features":[352]},{"name":"D3D12_COMMAND_QUEUE_FLAGS","features":[352]},{"name":"D3D12_COMMAND_QUEUE_FLAG_DISABLE_GPU_TIMEOUT","features":[352]},{"name":"D3D12_COMMAND_QUEUE_FLAG_NONE","features":[352]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY","features":[352]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY_GLOBAL_REALTIME","features":[352]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY_HIGH","features":[352]},{"name":"D3D12_COMMAND_QUEUE_PRIORITY_NORMAL","features":[352]},{"name":"D3D12_COMMAND_RECORDER_FLAGS","features":[352]},{"name":"D3D12_COMMAND_RECORDER_FLAG_NONE","features":[352]},{"name":"D3D12_COMMAND_SIGNATURE_DESC","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_COMPONENTS","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_HW_SLOT_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_PARTIAL_UPDATE_EXTENTS_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_COMMONSHADER_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_COMMONSHADER_FLOWCONTROL_NESTING_LIMIT","features":[352]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_CONSTANT_BUFFER_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_COMMONSHADER_IMMEDIATE_VALUE_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_COMMONSHADER_INPUT_RESOURCE_SLOT_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_COMMONSHADER_SAMPLER_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_COMMONSHADER_SAMPLER_SLOT_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_SUBROUTINE_NESTING_LIMIT","features":[352]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_COUNT","features":[352]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_COMMONSHADER_TEMP_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MAX","features":[352]},{"name":"D3D12_COMMONSHADER_TEXCOORD_RANGE_REDUCTION_MIN","features":[352]},{"name":"D3D12_COMMONSHADER_TEXEL_OFFSET_MAX_NEGATIVE","features":[352]},{"name":"D3D12_COMMONSHADER_TEXEL_OFFSET_MAX_POSITIVE","features":[352]},{"name":"D3D12_COMMON_COMPUTE_NODE_OVERRIDES","features":[305,352]},{"name":"D3D12_COMPARISON_FUNC","features":[352]},{"name":"D3D12_COMPARISON_FUNC_ALWAYS","features":[352]},{"name":"D3D12_COMPARISON_FUNC_EQUAL","features":[352]},{"name":"D3D12_COMPARISON_FUNC_GREATER","features":[352]},{"name":"D3D12_COMPARISON_FUNC_GREATER_EQUAL","features":[352]},{"name":"D3D12_COMPARISON_FUNC_LESS","features":[352]},{"name":"D3D12_COMPARISON_FUNC_LESS_EQUAL","features":[352]},{"name":"D3D12_COMPARISON_FUNC_NEVER","features":[352]},{"name":"D3D12_COMPARISON_FUNC_NONE","features":[352]},{"name":"D3D12_COMPARISON_FUNC_NOT_EQUAL","features":[352]},{"name":"D3D12_COMPUTE_PIPELINE_STATE_DESC","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_MODE","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_MODE_OFF","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_MODE_ON","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_1","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_2","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_3","features":[352]},{"name":"D3D12_CONSERVATIVE_RASTERIZATION_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_CONSTANT_BUFFER_DATA_PLACEMENT_ALIGNMENT","features":[352]},{"name":"D3D12_CONSTANT_BUFFER_VIEW_DESC","features":[352]},{"name":"D3D12_CPU_DESCRIPTOR_HANDLE","features":[352]},{"name":"D3D12_CPU_PAGE_PROPERTY","features":[352]},{"name":"D3D12_CPU_PAGE_PROPERTY_NOT_AVAILABLE","features":[352]},{"name":"D3D12_CPU_PAGE_PROPERTY_UNKNOWN","features":[352]},{"name":"D3D12_CPU_PAGE_PROPERTY_WRITE_BACK","features":[352]},{"name":"D3D12_CPU_PAGE_PROPERTY_WRITE_COMBINE","features":[352]},{"name":"D3D12_CROSS_NODE_SHARING_TIER","features":[352]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_1","features":[352]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_1_EMULATED","features":[352]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_2","features":[352]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_3","features":[352]},{"name":"D3D12_CROSS_NODE_SHARING_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_CS_4_X_BUCKET00_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET00_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET01_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET01_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET02_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET02_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET03_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET03_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET04_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET04_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET05_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET05_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET06_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET06_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET07_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET07_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET08_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET08_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET09_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET09_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET10_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET10_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET11_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET11_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET12_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET12_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET13_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET13_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET14_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET14_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_BUCKET15_MAX_BYTES_TGSM_WRITABLE_PER_THREAD","features":[352]},{"name":"D3D12_CS_4_X_BUCKET15_MAX_NUM_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_DISPATCH_MAX_THREAD_GROUPS_IN_Z_DIMENSION","features":[352]},{"name":"D3D12_CS_4_X_RAW_UAV_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_CS_4_X_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_4_X_THREAD_GROUP_MAX_X","features":[352]},{"name":"D3D12_CS_4_X_THREAD_GROUP_MAX_Y","features":[352]},{"name":"D3D12_CS_4_X_UAV_REGISTER_COUNT","features":[352]},{"name":"D3D12_CS_DISPATCH_MAX_THREAD_GROUPS_PER_DIMENSION","features":[352]},{"name":"D3D12_CS_TGSM_REGISTER_COUNT","features":[352]},{"name":"D3D12_CS_TGSM_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_CS_TGSM_RESOURCE_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_CS_TGSM_RESOURCE_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_CS_THREADGROUPID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_CS_THREADGROUPID_REGISTER_COUNT","features":[352]},{"name":"D3D12_CS_THREADIDINGROUPFLATTENED_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_CS_THREADIDINGROUPFLATTENED_REGISTER_COUNT","features":[352]},{"name":"D3D12_CS_THREADIDINGROUP_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_CS_THREADIDINGROUP_REGISTER_COUNT","features":[352]},{"name":"D3D12_CS_THREADID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_CS_THREADID_REGISTER_COUNT","features":[352]},{"name":"D3D12_CS_THREAD_GROUP_MAX_THREADS_PER_GROUP","features":[352]},{"name":"D3D12_CS_THREAD_GROUP_MAX_X","features":[352]},{"name":"D3D12_CS_THREAD_GROUP_MAX_Y","features":[352]},{"name":"D3D12_CS_THREAD_GROUP_MAX_Z","features":[352]},{"name":"D3D12_CS_THREAD_GROUP_MIN_X","features":[352]},{"name":"D3D12_CS_THREAD_GROUP_MIN_Y","features":[352]},{"name":"D3D12_CS_THREAD_GROUP_MIN_Z","features":[352]},{"name":"D3D12_CS_THREAD_LOCAL_TEMP_REGISTER_POOL","features":[352]},{"name":"D3D12_CULL_MODE","features":[352]},{"name":"D3D12_CULL_MODE_BACK","features":[352]},{"name":"D3D12_CULL_MODE_FRONT","features":[352]},{"name":"D3D12_CULL_MODE_NONE","features":[352]},{"name":"D3D12_DEBUG_COMMAND_LIST_GPU_BASED_VALIDATION_SETTINGS","features":[352]},{"name":"D3D12_DEBUG_COMMAND_LIST_PARAMETER_GPU_BASED_VALIDATION_SETTINGS","features":[352]},{"name":"D3D12_DEBUG_COMMAND_LIST_PARAMETER_TYPE","features":[352]},{"name":"D3D12_DEBUG_DEVICE_GPU_BASED_VALIDATION_SETTINGS","features":[352]},{"name":"D3D12_DEBUG_DEVICE_GPU_SLOWDOWN_PERFORMANCE_FACTOR","features":[352]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_FEATURE_FLAGS","features":[352]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_GPU_BASED_VALIDATION_SETTINGS","features":[352]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_GPU_SLOWDOWN_PERFORMANCE_FACTOR","features":[352]},{"name":"D3D12_DEBUG_DEVICE_PARAMETER_TYPE","features":[352]},{"name":"D3D12_DEBUG_FEATURE","features":[352]},{"name":"D3D12_DEBUG_FEATURE_ALLOW_BEHAVIOR_CHANGING_DEBUG_AIDS","features":[352]},{"name":"D3D12_DEBUG_FEATURE_CONSERVATIVE_RESOURCE_STATE_TRACKING","features":[352]},{"name":"D3D12_DEBUG_FEATURE_DISABLE_VIRTUALIZED_BUNDLES_VALIDATION","features":[352]},{"name":"D3D12_DEBUG_FEATURE_EMULATE_WINDOWS7","features":[352]},{"name":"D3D12_DEBUG_FEATURE_NONE","features":[352]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_ALPHA","features":[352]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_BLUE","features":[352]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_GREEN","features":[352]},{"name":"D3D12_DEFAULT_BLEND_FACTOR_RED","features":[352]},{"name":"D3D12_DEFAULT_BORDER_COLOR_COMPONENT","features":[352]},{"name":"D3D12_DEFAULT_DEPTH_BIAS","features":[352]},{"name":"D3D12_DEFAULT_DEPTH_BIAS_CLAMP","features":[352]},{"name":"D3D12_DEFAULT_MAX_ANISOTROPY","features":[352]},{"name":"D3D12_DEFAULT_MIP_LOD_BIAS","features":[352]},{"name":"D3D12_DEFAULT_MSAA_RESOURCE_PLACEMENT_ALIGNMENT","features":[352]},{"name":"D3D12_DEFAULT_RENDER_TARGET_ARRAY_INDEX","features":[352]},{"name":"D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT","features":[352]},{"name":"D3D12_DEFAULT_SAMPLE_MASK","features":[352]},{"name":"D3D12_DEFAULT_SCISSOR_ENDX","features":[352]},{"name":"D3D12_DEFAULT_SCISSOR_ENDY","features":[352]},{"name":"D3D12_DEFAULT_SCISSOR_STARTX","features":[352]},{"name":"D3D12_DEFAULT_SCISSOR_STARTY","features":[352]},{"name":"D3D12_DEFAULT_SHADER_4_COMPONENT_MAPPING","features":[352]},{"name":"D3D12_DEFAULT_SLOPE_SCALED_DEPTH_BIAS","features":[352]},{"name":"D3D12_DEFAULT_STENCIL_READ_MASK","features":[352]},{"name":"D3D12_DEFAULT_STENCIL_REFERENCE","features":[352]},{"name":"D3D12_DEFAULT_STENCIL_WRITE_MASK","features":[352]},{"name":"D3D12_DEFAULT_VIEWPORT_AND_SCISSORRECT_INDEX","features":[352]},{"name":"D3D12_DEFAULT_VIEWPORT_HEIGHT","features":[352]},{"name":"D3D12_DEFAULT_VIEWPORT_MAX_DEPTH","features":[352]},{"name":"D3D12_DEFAULT_VIEWPORT_MIN_DEPTH","features":[352]},{"name":"D3D12_DEFAULT_VIEWPORT_TOPLEFTX","features":[352]},{"name":"D3D12_DEFAULT_VIEWPORT_TOPLEFTY","features":[352]},{"name":"D3D12_DEFAULT_VIEWPORT_WIDTH","features":[352]},{"name":"D3D12_DEPTH_STENCILOP_DESC","features":[352]},{"name":"D3D12_DEPTH_STENCILOP_DESC1","features":[352]},{"name":"D3D12_DEPTH_STENCIL_DESC","features":[305,352]},{"name":"D3D12_DEPTH_STENCIL_DESC1","features":[305,352]},{"name":"D3D12_DEPTH_STENCIL_DESC2","features":[305,352]},{"name":"D3D12_DEPTH_STENCIL_FORMAT","features":[352,393]},{"name":"D3D12_DEPTH_STENCIL_VALUE","features":[352]},{"name":"D3D12_DEPTH_STENCIL_VIEW_DESC","features":[352,393]},{"name":"D3D12_DEPTH_WRITE_MASK","features":[352]},{"name":"D3D12_DEPTH_WRITE_MASK_ALL","features":[352]},{"name":"D3D12_DEPTH_WRITE_MASK_ZERO","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_DESC","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_FLAGS","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_FLAG_NONE","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_DSV","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_NUM_TYPES","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_RTV","features":[352]},{"name":"D3D12_DESCRIPTOR_HEAP_TYPE_SAMPLER","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE1","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAGS","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DATA_STATIC","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DATA_STATIC_WHILE_SET_AT_EXECUTE","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DATA_VOLATILE","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DESCRIPTORS_STATIC_KEEPING_BUFFER_BOUNDS_CHECKS","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_DESCRIPTORS_VOLATILE","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_FLAG_NONE","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_OFFSET_APPEND","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_CBV","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_SAMPLER","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_SRV","features":[352]},{"name":"D3D12_DESCRIPTOR_RANGE_TYPE_UAV","features":[352]},{"name":"D3D12_DEVICE_CONFIGURATION_DESC","features":[352]},{"name":"D3D12_DEVICE_FACTORY_FLAGS","features":[352]},{"name":"D3D12_DEVICE_FACTORY_FLAG_ALLOW_RETURNING_EXISTING_DEVICE","features":[352]},{"name":"D3D12_DEVICE_FACTORY_FLAG_ALLOW_RETURNING_INCOMPATIBLE_EXISTING_DEVICE","features":[352]},{"name":"D3D12_DEVICE_FACTORY_FLAG_DISALLOW_STORING_NEW_DEVICE_AS_SINGLETON","features":[352]},{"name":"D3D12_DEVICE_FACTORY_FLAG_NONE","features":[352]},{"name":"D3D12_DEVICE_FLAGS","features":[352]},{"name":"D3D12_DEVICE_FLAG_AUTO_DEBUG_NAME_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_DEBUG_LAYER_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_DRED_AUTO_BREADCRUMBS_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_DRED_BREADCRUMB_CONTEXT_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_DRED_PAGE_FAULT_REPORTING_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_DRED_USE_MARKERS_ONLY_BREADCRUMBS","features":[352]},{"name":"D3D12_DEVICE_FLAG_DRED_WATSON_REPORTING_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_FORCE_LEGACY_STATE_VALIDATION","features":[352]},{"name":"D3D12_DEVICE_FLAG_GPU_BASED_VALIDATION_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_NONE","features":[352]},{"name":"D3D12_DEVICE_FLAG_SHADER_INSTRUMENTATION_ENABLED","features":[352]},{"name":"D3D12_DEVICE_FLAG_SYNCHRONIZED_COMMAND_QUEUE_VALIDATION_DISABLED","features":[352]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA","features":[352]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA1","features":[352]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA2","features":[352]},{"name":"D3D12_DEVICE_REMOVED_EXTENDED_DATA3","features":[352]},{"name":"D3D12_DISCARD_REGION","features":[305,352]},{"name":"D3D12_DISPATCH_ARGUMENTS","features":[352]},{"name":"D3D12_DISPATCH_GRAPH_DESC","features":[352]},{"name":"D3D12_DISPATCH_MESH_ARGUMENTS","features":[352]},{"name":"D3D12_DISPATCH_MODE","features":[352]},{"name":"D3D12_DISPATCH_MODE_MULTI_NODE_CPU_INPUT","features":[352]},{"name":"D3D12_DISPATCH_MODE_MULTI_NODE_GPU_INPUT","features":[352]},{"name":"D3D12_DISPATCH_MODE_NODE_CPU_INPUT","features":[352]},{"name":"D3D12_DISPATCH_MODE_NODE_GPU_INPUT","features":[352]},{"name":"D3D12_DISPATCH_RAYS_DESC","features":[352]},{"name":"D3D12_DRAW_ARGUMENTS","features":[352]},{"name":"D3D12_DRAW_INDEXED_ARGUMENTS","features":[352]},{"name":"D3D12_DRED_ALLOCATION_NODE","features":[352]},{"name":"D3D12_DRED_ALLOCATION_NODE1","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_ALLOCATOR","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_LIST","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_POOL","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_QUEUE","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_RECORDER","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_COMMAND_SIGNATURE","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_CRYPTOSESSION","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_CRYPTOSESSIONPOLICY","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_DESCRIPTOR_HEAP","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_FENCE","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_HEAP","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_INVALID","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_METACOMMAND","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PASS","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PIPELINE_LIBRARY","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PIPELINE_STATE","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_PROTECTEDRESOURCESESSION","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_QUERY_HEAP","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_RESOURCE","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_SCHEDULINGGROUP","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_STATE_OBJECT","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_DECODER","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_DECODER_HEAP","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_ENCODER","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_ENCODER_HEAP","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_EXTENSION_COMMAND","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_MOTION_ESTIMATOR","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_MOTION_VECTOR_HEAP","features":[352]},{"name":"D3D12_DRED_ALLOCATION_TYPE_VIDEO_PROCESSOR","features":[352]},{"name":"D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT","features":[352]},{"name":"D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT1","features":[352]},{"name":"D3D12_DRED_BREADCRUMB_CONTEXT","features":[352]},{"name":"D3D12_DRED_DEVICE_STATE","features":[352]},{"name":"D3D12_DRED_DEVICE_STATE_FAULT","features":[352]},{"name":"D3D12_DRED_DEVICE_STATE_HUNG","features":[352]},{"name":"D3D12_DRED_DEVICE_STATE_PAGEFAULT","features":[352]},{"name":"D3D12_DRED_DEVICE_STATE_UNKNOWN","features":[352]},{"name":"D3D12_DRED_ENABLEMENT","features":[352]},{"name":"D3D12_DRED_ENABLEMENT_FORCED_OFF","features":[352]},{"name":"D3D12_DRED_ENABLEMENT_FORCED_ON","features":[352]},{"name":"D3D12_DRED_ENABLEMENT_SYSTEM_CONTROLLED","features":[352]},{"name":"D3D12_DRED_FLAGS","features":[352]},{"name":"D3D12_DRED_FLAG_DISABLE_AUTOBREADCRUMBS","features":[352]},{"name":"D3D12_DRED_FLAG_FORCE_ENABLE","features":[352]},{"name":"D3D12_DRED_FLAG_NONE","features":[352]},{"name":"D3D12_DRED_PAGE_FAULT_FLAGS","features":[352]},{"name":"D3D12_DRED_PAGE_FAULT_FLAGS_NONE","features":[352]},{"name":"D3D12_DRED_PAGE_FAULT_OUTPUT","features":[352]},{"name":"D3D12_DRED_PAGE_FAULT_OUTPUT1","features":[352]},{"name":"D3D12_DRED_PAGE_FAULT_OUTPUT2","features":[352]},{"name":"D3D12_DRED_VERSION","features":[352]},{"name":"D3D12_DRED_VERSION_1_0","features":[352]},{"name":"D3D12_DRED_VERSION_1_1","features":[352]},{"name":"D3D12_DRED_VERSION_1_2","features":[352]},{"name":"D3D12_DRED_VERSION_1_3","features":[352]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_COMPATIBLE_WITH_DEVICE","features":[352]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_INCOMPATIBLE_TYPE","features":[352]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_INCOMPATIBLE_VERSION","features":[352]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_STATUS","features":[352]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_UNRECOGNIZED","features":[352]},{"name":"D3D12_DRIVER_MATCHING_IDENTIFIER_UNSUPPORTED_TYPE","features":[352]},{"name":"D3D12_DRIVER_RESERVED_REGISTER_SPACE_VALUES_END","features":[352]},{"name":"D3D12_DRIVER_RESERVED_REGISTER_SPACE_VALUES_START","features":[352]},{"name":"D3D12_DSV_DIMENSION","features":[352]},{"name":"D3D12_DSV_DIMENSION_TEXTURE1D","features":[352]},{"name":"D3D12_DSV_DIMENSION_TEXTURE1DARRAY","features":[352]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2D","features":[352]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2DARRAY","features":[352]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2DMS","features":[352]},{"name":"D3D12_DSV_DIMENSION_TEXTURE2DMSARRAY","features":[352]},{"name":"D3D12_DSV_DIMENSION_UNKNOWN","features":[352]},{"name":"D3D12_DSV_FLAGS","features":[352]},{"name":"D3D12_DSV_FLAG_NONE","features":[352]},{"name":"D3D12_DSV_FLAG_READ_ONLY_DEPTH","features":[352]},{"name":"D3D12_DSV_FLAG_READ_ONLY_STENCIL","features":[352]},{"name":"D3D12_DS_INPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[352]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_DS_INPUT_CONTROL_POINT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_DS_INPUT_DOMAIN_POINT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_DS_INPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[352]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_DS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_DS_OUTPUT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_DS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_DS_OUTPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_DXIL_LIBRARY_DESC","features":[352]},{"name":"D3D12_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[352]},{"name":"D3D12_ELEMENTS_LAYOUT","features":[352]},{"name":"D3D12_ELEMENTS_LAYOUT_ARRAY","features":[352]},{"name":"D3D12_ELEMENTS_LAYOUT_ARRAY_OF_POINTERS","features":[352]},{"name":"D3D12_EXECUTE_INDIRECT_TIER","features":[352]},{"name":"D3D12_EXECUTE_INDIRECT_TIER_1_0","features":[352]},{"name":"D3D12_EXECUTE_INDIRECT_TIER_1_1","features":[352]},{"name":"D3D12_EXISTING_COLLECTION_DESC","features":[352]},{"name":"D3D12_EXPORT_DESC","features":[352]},{"name":"D3D12_EXPORT_FLAGS","features":[352]},{"name":"D3D12_EXPORT_FLAG_NONE","features":[352]},{"name":"D3D12_FEATURE","features":[352]},{"name":"D3D12_FEATURE_ARCHITECTURE","features":[352]},{"name":"D3D12_FEATURE_ARCHITECTURE1","features":[352]},{"name":"D3D12_FEATURE_COMMAND_QUEUE_PRIORITY","features":[352]},{"name":"D3D12_FEATURE_CROSS_NODE","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS1","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS10","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS11","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS12","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS13","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS14","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS15","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS16","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS17","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS18","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS19","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS2","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS20","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS21","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS3","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS4","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS5","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS6","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS7","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS8","features":[352]},{"name":"D3D12_FEATURE_D3D12_OPTIONS9","features":[352]},{"name":"D3D12_FEATURE_DATA_ARCHITECTURE","features":[305,352]},{"name":"D3D12_FEATURE_DATA_ARCHITECTURE1","features":[305,352]},{"name":"D3D12_FEATURE_DATA_COMMAND_QUEUE_PRIORITY","features":[305,352]},{"name":"D3D12_FEATURE_DATA_CROSS_NODE","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS1","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS10","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS11","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS12","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS13","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS14","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS15","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS16","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS17","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS18","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS19","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS2","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS20","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS21","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS3","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS4","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS5","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS6","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS7","features":[352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS8","features":[305,352]},{"name":"D3D12_FEATURE_DATA_D3D12_OPTIONS9","features":[305,352]},{"name":"D3D12_FEATURE_DATA_DISPLAYABLE","features":[305,352]},{"name":"D3D12_FEATURE_DATA_EXISTING_HEAPS","features":[305,352]},{"name":"D3D12_FEATURE_DATA_FEATURE_LEVELS","features":[398,352]},{"name":"D3D12_FEATURE_DATA_FORMAT_INFO","features":[352,393]},{"name":"D3D12_FEATURE_DATA_FORMAT_SUPPORT","features":[352,393]},{"name":"D3D12_FEATURE_DATA_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[352]},{"name":"D3D12_FEATURE_DATA_HARDWARE_COPY","features":[305,352]},{"name":"D3D12_FEATURE_DATA_MULTISAMPLE_QUALITY_LEVELS","features":[352,393]},{"name":"D3D12_FEATURE_DATA_PLACED_RESOURCE_SUPPORT_INFO","features":[305,352,393]},{"name":"D3D12_FEATURE_DATA_PREDICATION","features":[305,352]},{"name":"D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_SUPPORT","features":[352]},{"name":"D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPES","features":[352]},{"name":"D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPE_COUNT","features":[352]},{"name":"D3D12_FEATURE_DATA_QUERY_META_COMMAND","features":[352]},{"name":"D3D12_FEATURE_DATA_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_FEATURE_DATA_SERIALIZATION","features":[352]},{"name":"D3D12_FEATURE_DATA_SHADER_CACHE","features":[352]},{"name":"D3D12_FEATURE_DATA_SHADER_MODEL","features":[352]},{"name":"D3D12_FEATURE_DISPLAYABLE","features":[352]},{"name":"D3D12_FEATURE_EXISTING_HEAPS","features":[352]},{"name":"D3D12_FEATURE_FEATURE_LEVELS","features":[352]},{"name":"D3D12_FEATURE_FORMAT_INFO","features":[352]},{"name":"D3D12_FEATURE_FORMAT_SUPPORT","features":[352]},{"name":"D3D12_FEATURE_GPU_VIRTUAL_ADDRESS_SUPPORT","features":[352]},{"name":"D3D12_FEATURE_HARDWARE_COPY","features":[352]},{"name":"D3D12_FEATURE_MULTISAMPLE_QUALITY_LEVELS","features":[352]},{"name":"D3D12_FEATURE_PLACED_RESOURCE_SUPPORT_INFO","features":[352]},{"name":"D3D12_FEATURE_PREDICATION","features":[352]},{"name":"D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_SUPPORT","features":[352]},{"name":"D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_TYPES","features":[352]},{"name":"D3D12_FEATURE_PROTECTED_RESOURCE_SESSION_TYPE_COUNT","features":[352]},{"name":"D3D12_FEATURE_QUERY_META_COMMAND","features":[352]},{"name":"D3D12_FEATURE_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_FEATURE_SERIALIZATION","features":[352]},{"name":"D3D12_FEATURE_SHADER_CACHE","features":[352]},{"name":"D3D12_FEATURE_SHADER_MODEL","features":[352]},{"name":"D3D12_FENCE_FLAGS","features":[352]},{"name":"D3D12_FENCE_FLAG_NONE","features":[352]},{"name":"D3D12_FENCE_FLAG_NON_MONITORED","features":[352]},{"name":"D3D12_FENCE_FLAG_SHARED","features":[352]},{"name":"D3D12_FENCE_FLAG_SHARED_CROSS_ADAPTER","features":[352]},{"name":"D3D12_FILL_MODE","features":[352]},{"name":"D3D12_FILL_MODE_SOLID","features":[352]},{"name":"D3D12_FILL_MODE_WIREFRAME","features":[352]},{"name":"D3D12_FILTER","features":[352]},{"name":"D3D12_FILTER_ANISOTROPIC","features":[352]},{"name":"D3D12_FILTER_COMPARISON_ANISOTROPIC","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_ANISOTROPIC","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MAXIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MINIMUM_ANISOTROPIC","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_LINEAR_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MINIMUM_MIN_POINT_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MIN_LINEAR_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MIN_MAG_ANISOTROPIC_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MIN_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MIN_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MIN_MAG_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MIN_MAG_POINT_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT","features":[352]},{"name":"D3D12_FILTER_MIN_POINT_MAG_MIP_LINEAR","features":[352]},{"name":"D3D12_FILTER_REDUCTION_TYPE","features":[352]},{"name":"D3D12_FILTER_REDUCTION_TYPE_COMPARISON","features":[352]},{"name":"D3D12_FILTER_REDUCTION_TYPE_MASK","features":[352]},{"name":"D3D12_FILTER_REDUCTION_TYPE_MAXIMUM","features":[352]},{"name":"D3D12_FILTER_REDUCTION_TYPE_MINIMUM","features":[352]},{"name":"D3D12_FILTER_REDUCTION_TYPE_SHIFT","features":[352]},{"name":"D3D12_FILTER_REDUCTION_TYPE_STANDARD","features":[352]},{"name":"D3D12_FILTER_TYPE","features":[352]},{"name":"D3D12_FILTER_TYPE_LINEAR","features":[352]},{"name":"D3D12_FILTER_TYPE_MASK","features":[352]},{"name":"D3D12_FILTER_TYPE_POINT","features":[352]},{"name":"D3D12_FLOAT16_FUSED_TOLERANCE_IN_ULP","features":[352]},{"name":"D3D12_FLOAT32_MAX","features":[352]},{"name":"D3D12_FLOAT32_TO_INTEGER_TOLERANCE_IN_ULP","features":[352]},{"name":"D3D12_FLOAT_TO_SRGB_EXPONENT_DENOMINATOR","features":[352]},{"name":"D3D12_FLOAT_TO_SRGB_EXPONENT_NUMERATOR","features":[352]},{"name":"D3D12_FLOAT_TO_SRGB_OFFSET","features":[352]},{"name":"D3D12_FLOAT_TO_SRGB_SCALE_1","features":[352]},{"name":"D3D12_FLOAT_TO_SRGB_SCALE_2","features":[352]},{"name":"D3D12_FLOAT_TO_SRGB_THRESHOLD","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_BACK_BUFFER_CAST","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_BLENDABLE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_BUFFER","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_CAST_WITHIN_BIT_LAYOUT","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_DECODER_OUTPUT","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_DEPTH_STENCIL","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_DISPLAY","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_IA_INDEX_BUFFER","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_IA_VERTEX_BUFFER","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_MIP","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_MULTISAMPLE_LOAD","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RENDERTARGET","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RESOLVE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_NONE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_RENDER_TARGET","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_GATHER","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_GATHER_COMPARISON","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_LOAD","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE_COMPARISON","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_SHADER_SAMPLE_MONO_TEXT","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_SO_BUFFER","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURE1D","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURE2D","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURE3D","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_TEXTURECUBE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_TYPED_UNORDERED_ACCESS_VIEW","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_VIDEO_ENCODER","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_VIDEO_PROCESSOR_INPUT","features":[352]},{"name":"D3D12_FORMAT_SUPPORT1_VIDEO_PROCESSOR_OUTPUT","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_MULTIPLANE_OVERLAY","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_NONE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_OUTPUT_MERGER_LOGIC_OP","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_SAMPLER_FEEDBACK","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_TILED","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_ADD","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_BITWISE_OPS","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_COMPARE_STORE_OR_COMPARE_EXCHANGE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_EXCHANGE","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_SIGNED_MIN_OR_MAX","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_UNSIGNED_MIN_OR_MAX","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_TYPED_LOAD","features":[352]},{"name":"D3D12_FORMAT_SUPPORT2_UAV_TYPED_STORE","features":[352]},{"name":"D3D12_FTOI_INSTRUCTION_MAX_INPUT","features":[352]},{"name":"D3D12_FTOI_INSTRUCTION_MIN_INPUT","features":[352]},{"name":"D3D12_FTOU_INSTRUCTION_MAX_INPUT","features":[352]},{"name":"D3D12_FTOU_INSTRUCTION_MIN_INPUT","features":[352]},{"name":"D3D12_FUNCTION_DESC","features":[305,398,352]},{"name":"D3D12_GENERIC_PROGRAM_DESC","features":[352]},{"name":"D3D12_GLOBAL_BARRIER","features":[352]},{"name":"D3D12_GLOBAL_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_FLAGS","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_FLAGS_DISABLE_STATE_TRACKING","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_FLAGS_NONE","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAGS","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAGS_VALID_MASK","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_GUARDED_VALIDATION_SHADERS","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_TRACKING_ONLY_SHADERS","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_FRONT_LOAD_CREATE_UNGUARDED_VALIDATION_SHADERS","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_PIPELINE_STATE_CREATE_FLAG_NONE","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_GUARDED_VALIDATION","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_NONE","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_STATE_TRACKING_ONLY","features":[352]},{"name":"D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE_UNGUARDED_VALIDATION","features":[352]},{"name":"D3D12_GPU_DESCRIPTOR_HANDLE","features":[352]},{"name":"D3D12_GPU_VIRTUAL_ADDRESS_AND_STRIDE","features":[352]},{"name":"D3D12_GPU_VIRTUAL_ADDRESS_RANGE","features":[352]},{"name":"D3D12_GPU_VIRTUAL_ADDRESS_RANGE_AND_STRIDE","features":[352]},{"name":"D3D12_GRAPHICS_PIPELINE_STATE_DESC","features":[305,352,393]},{"name":"D3D12_GRAPHICS_STATES","features":[352]},{"name":"D3D12_GRAPHICS_STATE_COMPUTE_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_GRAPHICS_STATE_DESCRIPTOR_HEAP","features":[352]},{"name":"D3D12_GRAPHICS_STATE_GRAPHICS_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_GRAPHICS_STATE_IA_INDEX_BUFFER","features":[352]},{"name":"D3D12_GRAPHICS_STATE_IA_PRIMITIVE_TOPOLOGY","features":[352]},{"name":"D3D12_GRAPHICS_STATE_IA_VERTEX_BUFFERS","features":[352]},{"name":"D3D12_GRAPHICS_STATE_NONE","features":[352]},{"name":"D3D12_GRAPHICS_STATE_OM_BLEND_FACTOR","features":[352]},{"name":"D3D12_GRAPHICS_STATE_OM_DEPTH_BOUNDS","features":[352]},{"name":"D3D12_GRAPHICS_STATE_OM_RENDER_TARGETS","features":[352]},{"name":"D3D12_GRAPHICS_STATE_OM_STENCIL_REF","features":[352]},{"name":"D3D12_GRAPHICS_STATE_PIPELINE_STATE","features":[352]},{"name":"D3D12_GRAPHICS_STATE_PREDICATION","features":[352]},{"name":"D3D12_GRAPHICS_STATE_RS_SCISSOR_RECTS","features":[352]},{"name":"D3D12_GRAPHICS_STATE_RS_VIEWPORTS","features":[352]},{"name":"D3D12_GRAPHICS_STATE_SAMPLE_POSITIONS","features":[352]},{"name":"D3D12_GRAPHICS_STATE_SO_TARGETS","features":[352]},{"name":"D3D12_GRAPHICS_STATE_VIEW_INSTANCE_MASK","features":[352]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_READS_PER_INST","features":[352]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_READ_PORTS","features":[352]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_GS_INPUT_INSTANCE_ID_REGISTER_COUNT","features":[352]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_COUNT","features":[352]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_GS_INPUT_PRIM_CONST_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_GS_INPUT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_GS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_GS_INPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_GS_INPUT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_GS_INPUT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_GS_INPUT_REGISTER_VERTICES","features":[352]},{"name":"D3D12_GS_MAX_INSTANCE_COUNT","features":[352]},{"name":"D3D12_GS_MAX_OUTPUT_VERTEX_COUNT_ACROSS_INSTANCES","features":[352]},{"name":"D3D12_GS_OUTPUT_ELEMENTS","features":[352]},{"name":"D3D12_GS_OUTPUT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_GS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_GS_OUTPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_HEAP_DESC","features":[352]},{"name":"D3D12_HEAP_FLAGS","features":[352]},{"name":"D3D12_HEAP_FLAG_ALLOW_ALL_BUFFERS_AND_TEXTURES","features":[352]},{"name":"D3D12_HEAP_FLAG_ALLOW_DISPLAY","features":[352]},{"name":"D3D12_HEAP_FLAG_ALLOW_ONLY_BUFFERS","features":[352]},{"name":"D3D12_HEAP_FLAG_ALLOW_ONLY_NON_RT_DS_TEXTURES","features":[352]},{"name":"D3D12_HEAP_FLAG_ALLOW_ONLY_RT_DS_TEXTURES","features":[352]},{"name":"D3D12_HEAP_FLAG_ALLOW_SHADER_ATOMICS","features":[352]},{"name":"D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH","features":[352]},{"name":"D3D12_HEAP_FLAG_CREATE_NOT_RESIDENT","features":[352]},{"name":"D3D12_HEAP_FLAG_CREATE_NOT_ZEROED","features":[352]},{"name":"D3D12_HEAP_FLAG_DENY_BUFFERS","features":[352]},{"name":"D3D12_HEAP_FLAG_DENY_NON_RT_DS_TEXTURES","features":[352]},{"name":"D3D12_HEAP_FLAG_DENY_RT_DS_TEXTURES","features":[352]},{"name":"D3D12_HEAP_FLAG_HARDWARE_PROTECTED","features":[352]},{"name":"D3D12_HEAP_FLAG_NONE","features":[352]},{"name":"D3D12_HEAP_FLAG_SHARED","features":[352]},{"name":"D3D12_HEAP_FLAG_SHARED_CROSS_ADAPTER","features":[352]},{"name":"D3D12_HEAP_FLAG_TOOLS_USE_MANUAL_WRITE_TRACKING","features":[352]},{"name":"D3D12_HEAP_PROPERTIES","features":[352]},{"name":"D3D12_HEAP_SERIALIZATION_TIER","features":[352]},{"name":"D3D12_HEAP_SERIALIZATION_TIER_0","features":[352]},{"name":"D3D12_HEAP_SERIALIZATION_TIER_10","features":[352]},{"name":"D3D12_HEAP_TYPE","features":[352]},{"name":"D3D12_HEAP_TYPE_CUSTOM","features":[352]},{"name":"D3D12_HEAP_TYPE_DEFAULT","features":[352]},{"name":"D3D12_HEAP_TYPE_GPU_UPLOAD","features":[352]},{"name":"D3D12_HEAP_TYPE_READBACK","features":[352]},{"name":"D3D12_HEAP_TYPE_UPLOAD","features":[352]},{"name":"D3D12_HIT_GROUP_DESC","features":[352]},{"name":"D3D12_HIT_GROUP_TYPE","features":[352]},{"name":"D3D12_HIT_GROUP_TYPE_PROCEDURAL_PRIMITIVE","features":[352]},{"name":"D3D12_HIT_GROUP_TYPE_TRIANGLES","features":[352]},{"name":"D3D12_HIT_KIND","features":[352]},{"name":"D3D12_HIT_KIND_TRIANGLE_BACK_FACE","features":[352]},{"name":"D3D12_HIT_KIND_TRIANGLE_FRONT_FACE","features":[352]},{"name":"D3D12_HS_CONTROL_POINT_PHASE_INPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_HS_CONTROL_POINT_PHASE_OUTPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_HS_CONTROL_POINT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_HS_FORK_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[352]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_COUNT","features":[352]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_HS_INPUT_FORK_INSTANCE_ID_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_COUNT","features":[352]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_HS_INPUT_JOIN_INSTANCE_ID_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_COUNT","features":[352]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_HS_INPUT_PRIMITIVE_ID_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_HS_JOIN_PHASE_INSTANCE_COUNT_UPPER_BOUND","features":[352]},{"name":"D3D12_HS_MAXTESSFACTOR_LOWER_BOUND","features":[352]},{"name":"D3D12_HS_MAXTESSFACTOR_UPPER_BOUND","features":[352]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINTS_MAX_TOTAL_SCALARS","features":[352]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_COUNT","features":[352]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_HS_OUTPUT_CONTROL_POINT_ID_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_COUNT","features":[352]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_HS_OUTPUT_PATCH_CONSTANT_REGISTER_SCALAR_COMPONENTS","features":[352]},{"name":"D3D12_IA_DEFAULT_INDEX_BUFFER_OFFSET_IN_BYTES","features":[352]},{"name":"D3D12_IA_DEFAULT_PRIMITIVE_TOPOLOGY","features":[352]},{"name":"D3D12_IA_DEFAULT_VERTEX_BUFFER_OFFSET_IN_BYTES","features":[352]},{"name":"D3D12_IA_INDEX_INPUT_RESOURCE_SLOT_COUNT","features":[352]},{"name":"D3D12_IA_INSTANCE_ID_BIT_COUNT","features":[352]},{"name":"D3D12_IA_INTEGER_ARITHMETIC_BIT_COUNT","features":[352]},{"name":"D3D12_IA_PATCH_MAX_CONTROL_POINT_COUNT","features":[352]},{"name":"D3D12_IA_PRIMITIVE_ID_BIT_COUNT","features":[352]},{"name":"D3D12_IA_VERTEX_ID_BIT_COUNT","features":[352]},{"name":"D3D12_IA_VERTEX_INPUT_RESOURCE_SLOT_COUNT","features":[352]},{"name":"D3D12_IA_VERTEX_INPUT_STRUCTURE_ELEMENTS_COMPONENTS","features":[352]},{"name":"D3D12_IA_VERTEX_INPUT_STRUCTURE_ELEMENT_COUNT","features":[352]},{"name":"D3D12_IB_STRIP_CUT_VALUE","features":[352]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE","features":[352]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFF","features":[352]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_0xFFFFFFFF","features":[352]},{"name":"D3D12_INDEX_BUFFER_STRIP_CUT_VALUE_DISABLED","features":[352]},{"name":"D3D12_INDEX_BUFFER_VIEW","features":[352,393]},{"name":"D3D12_INDIRECT_ARGUMENT_DESC","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_CONSTANT","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_CONSTANT_BUFFER_VIEW","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_MESH","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_RAYS","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DRAW","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_DRAW_INDEXED","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_INCREMENTING_CONSTANT","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_INDEX_BUFFER_VIEW","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_SHADER_RESOURCE_VIEW","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_UNORDERED_ACCESS_VIEW","features":[352]},{"name":"D3D12_INDIRECT_ARGUMENT_TYPE_VERTEX_BUFFER_VIEW","features":[352]},{"name":"D3D12_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[352]},{"name":"D3D12_INFO_QUEUE_FILTER","features":[352]},{"name":"D3D12_INFO_QUEUE_FILTER_DESC","features":[352]},{"name":"D3D12_INPUT_CLASSIFICATION","features":[352]},{"name":"D3D12_INPUT_CLASSIFICATION_PER_INSTANCE_DATA","features":[352]},{"name":"D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA","features":[352]},{"name":"D3D12_INPUT_ELEMENT_DESC","features":[352,393]},{"name":"D3D12_INPUT_LAYOUT_DESC","features":[352,393]},{"name":"D3D12_INTEGER_DIVIDE_BY_ZERO_QUOTIENT","features":[352]},{"name":"D3D12_INTEGER_DIVIDE_BY_ZERO_REMAINDER","features":[352]},{"name":"D3D12_KEEP_RENDER_TARGETS_AND_DEPTH_STENCIL","features":[352]},{"name":"D3D12_KEEP_UNORDERED_ACCESS_VIEWS","features":[352]},{"name":"D3D12_LIBRARY_DESC","features":[352]},{"name":"D3D12_LIFETIME_STATE","features":[352]},{"name":"D3D12_LIFETIME_STATE_IN_USE","features":[352]},{"name":"D3D12_LIFETIME_STATE_NOT_IN_USE","features":[352]},{"name":"D3D12_LINEAR_GAMMA","features":[352]},{"name":"D3D12_LINE_RASTERIZATION_MODE","features":[352]},{"name":"D3D12_LINE_RASTERIZATION_MODE_ALIASED","features":[352]},{"name":"D3D12_LINE_RASTERIZATION_MODE_ALPHA_ANTIALIASED","features":[352]},{"name":"D3D12_LINE_RASTERIZATION_MODE_QUADRILATERAL_NARROW","features":[352]},{"name":"D3D12_LINE_RASTERIZATION_MODE_QUADRILATERAL_WIDE","features":[352]},{"name":"D3D12_LOCAL_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_LOGIC_OP","features":[352]},{"name":"D3D12_LOGIC_OP_AND","features":[352]},{"name":"D3D12_LOGIC_OP_AND_INVERTED","features":[352]},{"name":"D3D12_LOGIC_OP_AND_REVERSE","features":[352]},{"name":"D3D12_LOGIC_OP_CLEAR","features":[352]},{"name":"D3D12_LOGIC_OP_COPY","features":[352]},{"name":"D3D12_LOGIC_OP_COPY_INVERTED","features":[352]},{"name":"D3D12_LOGIC_OP_EQUIV","features":[352]},{"name":"D3D12_LOGIC_OP_INVERT","features":[352]},{"name":"D3D12_LOGIC_OP_NAND","features":[352]},{"name":"D3D12_LOGIC_OP_NOOP","features":[352]},{"name":"D3D12_LOGIC_OP_NOR","features":[352]},{"name":"D3D12_LOGIC_OP_OR","features":[352]},{"name":"D3D12_LOGIC_OP_OR_INVERTED","features":[352]},{"name":"D3D12_LOGIC_OP_OR_REVERSE","features":[352]},{"name":"D3D12_LOGIC_OP_SET","features":[352]},{"name":"D3D12_LOGIC_OP_XOR","features":[352]},{"name":"D3D12_MAG_FILTER_SHIFT","features":[352]},{"name":"D3D12_MAJOR_VERSION","features":[352]},{"name":"D3D12_MAX_BORDER_COLOR_COMPONENT","features":[352]},{"name":"D3D12_MAX_DEPTH","features":[352]},{"name":"D3D12_MAX_LIVE_STATIC_SAMPLERS","features":[352]},{"name":"D3D12_MAX_MAXANISOTROPY","features":[352]},{"name":"D3D12_MAX_MULTISAMPLE_SAMPLE_COUNT","features":[352]},{"name":"D3D12_MAX_POSITION_VALUE","features":[352]},{"name":"D3D12_MAX_ROOT_COST","features":[352]},{"name":"D3D12_MAX_SHADER_VISIBLE_DESCRIPTOR_HEAP_SIZE_TIER_1","features":[352]},{"name":"D3D12_MAX_SHADER_VISIBLE_DESCRIPTOR_HEAP_SIZE_TIER_2","features":[352]},{"name":"D3D12_MAX_SHADER_VISIBLE_SAMPLER_HEAP_SIZE","features":[352]},{"name":"D3D12_MAX_TEXTURE_DIMENSION_2_TO_EXP","features":[352]},{"name":"D3D12_MAX_VIEW_INSTANCE_COUNT","features":[352]},{"name":"D3D12_MEASUREMENTS_ACTION","features":[352]},{"name":"D3D12_MEASUREMENTS_ACTION_COMMIT_RESULTS","features":[352]},{"name":"D3D12_MEASUREMENTS_ACTION_COMMIT_RESULTS_HIGH_PRIORITY","features":[352]},{"name":"D3D12_MEASUREMENTS_ACTION_DISCARD_PREVIOUS","features":[352]},{"name":"D3D12_MEASUREMENTS_ACTION_KEEP_ALL","features":[352]},{"name":"D3D12_MEMCPY_DEST","features":[352]},{"name":"D3D12_MEMORY_POOL","features":[352]},{"name":"D3D12_MEMORY_POOL_L0","features":[352]},{"name":"D3D12_MEMORY_POOL_L1","features":[352]},{"name":"D3D12_MEMORY_POOL_UNKNOWN","features":[352]},{"name":"D3D12_MESH_SHADER_TIER","features":[352]},{"name":"D3D12_MESH_SHADER_TIER_1","features":[352]},{"name":"D3D12_MESH_SHADER_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE","features":[352]},{"name":"D3D12_MESSAGE_CALLBACK_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_CALLBACK_FLAG_NONE","features":[352]},{"name":"D3D12_MESSAGE_CALLBACK_IGNORE_FILTERS","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_APPLICATION_DEFINED","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_CLEANUP","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_COMPILATION","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_EXECUTION","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_INITIALIZATION","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_MISCELLANEOUS","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_SHADER","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_STATE_CREATION","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_STATE_GETTING","features":[352]},{"name":"D3D12_MESSAGE_CATEGORY_STATE_SETTING","features":[352]},{"name":"D3D12_MESSAGE_ID","features":[352]},{"name":"D3D12_MESSAGE_ID_ADD_TO_STATE_OBJECT_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_ALPHA_BLEND_FACTOR_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_RANGE_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DEPENDENT_SUBRESOURCE_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_DST_RANGE_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_ARCHITECTURE","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DEPENDENT_SUBRESOURCE_RANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_DST_RESOURCE_DIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_OFFSET_ALIGNMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_INVALID_SRC_RESOURCE_DIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_RESOURCES","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DEPENDENT_SUBRESOURCE_RANGES","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_DST","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_NULL_SRC","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_SRC_RANGE_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_ATOMICCOPYBUFFER_ZERO_DEPENDENCIES","features":[352]},{"name":"D3D12_MESSAGE_ID_BARRIER_INTEROP_INVALID_LAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_BARRIER_INTEROP_INVALID_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_BEGIN_END_EVENT_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_BEGIN_END_QUERY_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_BEGIN_EVENT","features":[352]},{"name":"D3D12_MESSAGE_ID_BUFFER_BARRIER_SUBREGION_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_BUILD_RAYTRACING_ACCELERATION_STRUCTURE_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_BUNDLE_PIPELINE_STATE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CANNOT_ADD_TRACKED_WORKLOAD","features":[352]},{"name":"D3D12_MESSAGE_ID_CANNOT_CHANGE_COMMAND_RECORDER_TARGET_WHILE_RECORDING","features":[352]},{"name":"D3D12_MESSAGE_ID_CANNOT_CREATE_GRAPHICS_AND_VIDEO_COMMAND_RECORDER","features":[352]},{"name":"D3D12_MESSAGE_ID_CANNOT_EXECUTE_EMPTY_COMMAND_LIST","features":[352]},{"name":"D3D12_MESSAGE_ID_CANNOT_RESET_COMMAND_POOL_WITH_OPEN_COMMAND_LISTS","features":[352]},{"name":"D3D12_MESSAGE_ID_CANNOT_USE_COMMAND_RECORDER_WITHOUT_CURRENT_TARGET","features":[352]},{"name":"D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_DRIVER_REPORTED_ISSUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CHECK_DRIVER_MATCHING_IDENTIFIER_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_CLEARDEPTHSTENCILVIEW_MISMATCHINGCLEARVALUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CLEARRENDERTARGETVIEW_MISMATCHINGCLEARVALUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INCOMPATIBLE_WITH_STRUCTURED_BUFFERS","features":[352]},{"name":"D3D12_MESSAGE_ID_CLEARUNORDEREDACCESSVIEW_INVALID_RESOURCE_PTR","features":[352]},{"name":"D3D12_MESSAGE_ID_CLEAR_UNORDERED_ACCESS_VIEW_INVALID_DESCRIPTOR_HANDLE","features":[352]},{"name":"D3D12_MESSAGE_ID_CLOSE_COMMAND_LIST_OPEN_QUERY","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CANNOT_RESET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_CONTENTION","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_RESET_BUNDLE","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_SYNC","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_ALLOCATOR_USAGE_WITH_CREATECOMMANDLIST1_COMMAND_LIST","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_CLOSED","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DESCRIPTOR_TABLE_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DISPATCH_ROOT_SIGNATURE_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ELEMENT_OFFSET_UNALIGNED","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_FORMAT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_TOO_SMALL","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_OFFSET_UNALIGNED","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INSTANCE_COUNT_ZERO","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INVALID_PRIMITIVETOPOLOGY","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_RENDER_TARGET_DELETED","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_STRIDE_TOO_SMALL","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_BUFFER_TOO_SMALL","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_VERTEX_STRIDE_UNALIGNED","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_MULTIPLE_SWAPCHAIN_BUFFER_REFERENCES","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_OPEN","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_PIPELINE_STATE_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_CONSTANT_BUFFER_VIEW_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_SHADER_RESOURCE_VIEW_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_ROOT_UNORDERED_ACCESS_VIEW_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_SETRENDERTARGETS_INVALIDNUMRENDERTARGETS","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_RESOURCE_DIMENSION_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_STATIC_DESCRIPTOR_SAMPLER_MODE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_SYNC","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_LIST_TOO_MANY_SWAPCHAIN_REFERENCES","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_POOL_SYNC","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_QUEUE_TOO_MANY_SWAPCHAIN_REFERENCES","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_RECORDER_CONTENTION","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_RECORDER_SUPPORT_FLAGS_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COMMAND_RECORDER_USAGE_WITH_CREATECOMMANDLIST_COMMAND_LIST","features":[352]},{"name":"D3D12_MESSAGE_ID_COMPUTE_ONLY_DEVICE_OPERATION_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_DSTRANGEOUTOFBOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDCOPYFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDDSTRESOURCEDIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALIDSRCRESOURCEDIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_DST_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_INVALID_SRC_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLDST","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_NULLSRC","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYBUFFERREGION_SRCRANGEOUTOFBOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDDSTRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_INVALIDSRCRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_DECODE_REFERENCE_ONLY_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_NULLDST","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYRESOURCE_NULLSRC","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_DSTREGIONOUTOFBOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_EMPTYBOX","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_FORMATMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDCOPYFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTCOORDINATES","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDIMENSIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTDSPLACEDFOOTPRINTFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTOFFSET","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTPLACEMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTRESOURCEDIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTROWPITCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDDSTSUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCBOX","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDIMENSIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCDSPLACEDFOOTPRINTFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCOFFSET","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCPLACEMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCRESOURCEDIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCROWPITCH","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_INVALIDSRCSUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_DECODE_REFERENCE_ONLY_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_MISMATCH_ENCODE_REFERENCE_ONLY_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLDST","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_NULLSRC","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_SRCREGIONOUTOFBOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDDSTTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTEXTUREREGION_UNRECOGNIZEDSRCTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPYTILEMAPPINGS_INVALID_PARAMETER","features":[352]},{"name":"D3D12_MESSAGE_ID_COPY_DESCRIPTORS_INVALID_RANGES","features":[352]},{"name":"D3D12_MESSAGE_ID_COPY_DESCRIPTORS_WRITE_ONLY_DESCRIPTOR","features":[352]},{"name":"D3D12_MESSAGE_ID_COPY_INVALIDLAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_COPY_ON_SAME_SUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_COPY_RAYTRACING_ACCELERATION_STRUCTURE_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_MULTITHREADING","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER1","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER10","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER11","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER12","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER13","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER14","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER15","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER2","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER3","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER4","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER5","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER6","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER7","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER8","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_PARAMETER9","features":[352]},{"name":"D3D12_MESSAGE_ID_CORRUPTED_THIS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEAMPLIFICATIONSHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOPALPHA_WARNING","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_BLENDOP_WARNING","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDBLENDOPALPHA","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLEND","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDDESTBLENDALPHA","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDLOGICOPS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDRENDERTARGETWRITEMASK","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLEND","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEBLENDSTATE_INVALIDSRCBLENDALPHA","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMMANDLIST_NULL_COMMANDALLOCATOR","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMMANDSIGNATURE_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_CS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_INVALID_SHADER","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTEPIPELINESTATE_MISSING_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDCLASSLINKAGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTESHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATECOMPUTESHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_DEPTHBOUNDSTEST_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INDEPENDENT_MASKS_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFAILOP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILFUNC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILPASSOP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDBACKFACESTENCILZFAILOP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHFUNC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDDEPTHWRITEMASK","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFAILOP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILFUNC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILPASSOP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILSTATE_INVALIDFRONTFACESTENCILZFAILOP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDDIMENSIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEPTHSTENCILVIEW_UNRECOGNIZEDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEVICE_DEBUG_LAYER_STARTUP_OPTIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEVICE_INVALIDARGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDEVICE_WARNING","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDCLASSLINKAGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_INVALIDSHADERTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEDOMAINSHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_CANTHAVEONLYGAPS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DECLTOOCOMPLEX","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDCOMPONENTCOUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDGAPDEFINITION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMENTRIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDNUMSTRIDES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSLOT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDOUTPUTSTREAMSTRIDE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTARTCOMPONENTANDCOMPONENTCOUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_INVALIDSTREAMTORASTERIZER","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MASKMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGOUTPUTSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_MISSINGSEMANTIC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_ONLYONEELEMENTPERSLOT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSLOT0EXPECTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_OUTPUTSTREAMSTRIDEUNUSED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_REPEATEDOUTPUT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_TRAILING_DIGIT_IN_SEMANTIC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDENTRIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UNEXPECTEDSTRIDES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDCLASSLINKAGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_INVALIDSHADERTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGEOMETRYSHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_ALL_RENDER_TARGETS_HAVE_UNKNOWN_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_NOT_MS_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_AS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DEPTHSTENCILVIEW_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_DS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_INPUT_PRIMITIVE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_GS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_CONTROL_POINT_COUNT_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_DS_TESSELLATOR_DOMAIN_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HS_XOR_DS_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_HULL_SHADER_INPUT_TOPOLOGY_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INPUTLAYOUT_SHADER_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_INDEX_BUFFER_PROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_PRIMITIVETOPOLOGY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_RENDER_TARGET_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SAMPLE_DESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_SYSTEMVALUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_CENTER_MULTISAMPLE_PATTERN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_INVALID_USE_OF_FORCED_SAMPLE_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_METADATA_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MISSING_ROOT_SIGNATURE_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_NOT_PS_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_PSO_DESC_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_MS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_DUAL_SOURCE_BLENDING_CAN_ONLY_HAVE_RENDER_TARGET_0","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_BLENDING","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_OM_RENDER_TARGET_DOES_NOT_SUPPORT_LOGIC_OPS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_POSITION_NOT_PRESENT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_RT_OUTPUT_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_OUTPUT_TYPE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_PS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RENDERTARGETVIEW_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RENDER_TARGET_WRONG_WRITE_MASK","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RTV_FORMAT_NOT_UNKNOWN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_RUNTIME_INTERNAL_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_COMPONENTTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_HS_DS_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_MINPRECISION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_NEVERWRITTEN_ALWAYSREADS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERINDEX","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_REGISTERMASK","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SEMANTICNAME_NOT_FOUND","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_LINKAGE_SYSTEMVALUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_SHADER_MODEL_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VERTEX_SHADER_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VIEW_INSTANCING_VERTEX_SIZE_EXCEEDED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEGRAPHICSPIPELINESTATE_VS_ROOT_SIGNATURE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDALIGNMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDARG_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDHEAPTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDMISCFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDPROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_INVALIDSIZE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_NULLDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_OUTOFMEMORY_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDHEAPTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMEMORYPOOL","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHEAP_UNRECOGNIZEDMISCFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDCLASSLINKAGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_INVALIDSHADERTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEHULLSHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_DUPLICATESEMANTIC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_EMPTY_LAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INCOMPATIBLEFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDALIGNMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDINPUTSLOTCLASS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSLOTCLASSCHANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_INVALIDSTEPRATECHANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_MISSINGELEMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_NULLSEMANTIC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_STEPRATESLOTCLASSMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TOOMANYELEMENTS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TRAILING_DIGIT_IN_SEMANTIC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_TYPE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEINPUTLAYOUT_UNPARSEABLEINPUTSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADERWITHSTREAMOUTPUT_INVALIDSHADERTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_GROUPSHAREDEXCEEDSMAXSIZE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_MISMATCHEDASMSPAYLOADSIZE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_OUTPUTEXCEEDSMAXSIZE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEMESHSHADER_TOPOLOGY_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_ADAPTERVERSIONMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_DRIVERVERSIONMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_INVALIDLIBRARYBLOB","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINELIBRARY_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBADAPTERMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDESCMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBDRIVERVERSIONMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CACHEDBLOBIGNORED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_CANNOT_DEDUCE_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_DUPLICATE_SUBOBJECT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALIDCACHEDBLOB","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_INVALID_STREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_MS_INCOMPLETE_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_UNKNOWN_SUBOBJECT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIPELINESTATE_ZERO_SIZE_STREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDCLASSLINKAGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_INVALIDSHADERTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPIXELSHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_DIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_BUFFER_OFFSET","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_DIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_INVALID_RESOURCE_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_BUFFER","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_NULL_RESOURCE_DESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_OUTOFMEMORY_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEPLACEDRESOURCEONBUFFER_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEQUERY_HEAP_COPY_QUEUE_TIMESTAMPS_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEQUERY_HEAP_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEQUERY_HEAP_VIDEO_DECODE_STATISTICS_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDCULLMODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDDEPTHBIASCLAMP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFILLMODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDFORCEDSAMPLECOUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALIDSLOPESCALEDDEPTHBIAS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_CONSERVATIVERASTERMODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_INVALID_LINERASTERIZATIONMODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERASTERIZERSTATE_NON_WHOLE_DYNAMIC_DEPTH_BIAS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDDIMENSIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDPLANESLICE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_INVALIDVIDEOPLANESLICE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNRECOGNIZEDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERENDERTARGETVIEW_UNSUPPORTEDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDARG_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPMISCFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPPROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALIDHEAPTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLHEAPPROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_NULLRESOURCEPROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_OUTOFMEMORY_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDCPUPAGEPROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPMISCFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDHEAPTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCEANDHEAP_UNRECOGNIZEDMEMORYPOOL","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_CLEARVALUEDENORMFLUSH","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDALIGNMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDALIGNMENT_SMALLRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDARG_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDCLEARVALUEFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONALITY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDDIMENSIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDLAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMIPLEVELS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDMISCFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_INVALIDSAMPLEDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_OUTOFMEMORY_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_STATE_IGNORED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDCLEARVALUEFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDDIMENSIONALITY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATERESOURCE_UNRECOGNIZEDLAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_ALREADYOPEN","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_DISABLED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERCACHESESSION_INVALIDARGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDDIMENSIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDPLANESLICE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_INVALIDVIDEOPLANESLICE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADERRESOURCEVIEW_UNRECOGNIZEDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHADER_INVALIDBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHAREDHEAP_INVALIDFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATESHAREDRESOURCE_INVALIDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDDIMENSIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDPLANESLICE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_INVALIDVIDEOPLANESLICE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEUNORDEREDACCESSVIEW_UNRECOGNIZEDFORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDCLASSLINKAGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERBYTECODE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_INVALIDSHADERTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATEVERTEXSHADER_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDALLOCATOR","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDLIST12","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDPOOL","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDRECORDER","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMANDSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_ALLOCATOR_VIDEO_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_INVALID_COMMAND_LIST_TYPE_FOR_FEATURE_LEVEL","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_LIST_VIDEO_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_POOL_INVALID_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_HARDWARE_SUPPORT_FOR_GLOBAL_REALTIME","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_QUEUE_INSUFFICIENT_PRIVILEGE_FOR_GLOBAL_REALTIME","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_INVALID_SUPPORT_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_MORE_RECORDERS_THAN_LOGICAL_PROCESSORS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_COMMAND_RECORDER_VIDEO_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_DESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_CONSTANT_BUFFER_VIEW_INVALID_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_CRYPTO_SESSION_POLICY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_DESCRIPTORHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_INVALID_DESC","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_DESCRIPTOR_HEAP_LARGE_NUM_DESCRIPTORS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_FENCE_INVALID_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_HEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_LIBRARY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_LIFETIMETRACKER","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_META_COMMAND","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_MONITOREDFENCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_PIPELINELIBRARY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_PIPELINESTATE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_PROTECTED_RESOURCE_SESSION_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_QUERYHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_PRIORITY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_INVALID_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_QUEUE_VIDEO_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOTSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_BLOB_NOT_FOUND","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_DESERIALIZE_FAILED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_INVALID_CONFIGURATION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_SUPPORTED_ON_DEVICE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_NOT_UNIQUE_IN_DXIL_LIBRARY","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_ROOT_SIGNATURE_UNBOUNDED_STATIC_DESCRIPTORS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_SAMPLER_COMPARISON_FUNC_IGNORED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_SAMPLER_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_SHADERCACHESESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_STATE_OBJECT_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_STATE_OBJECT_WARNING","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_TRACKEDWORKLOAD","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_UNORDEREDACCESS_VIEW_INVALID_COUNTER_USAGE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODER","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODERHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEODECODESTREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODECOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODER","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOENCODERHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOEXTENSIONCOMMAND","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONESTIMATOR","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOMOTIONVECTORHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSCOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSOR","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEOPROCESSSTREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_DECODER_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_FAILURE","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_DECODE_HEAP_CAPS_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_UNSUPPORTED_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_UNSUPPORTED_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_CREATE_VIDEO_PROCESSOR_CAPS_FAILURE","features":[352]},{"name":"D3D12_MESSAGE_ID_D3D12_MESSAGES_END","features":[352]},{"name":"D3D12_MESSAGE_ID_DATA_STATIC_DESCRIPTOR_INVALID_DATA_CHANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_DATA_STATIC_WHILE_SET_AT_EXECUTE_DESCRIPTOR_INVALID_DATA_CHANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_DECODE_FRAME_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_DEPRECATED_API","features":[352]},{"name":"D3D12_MESSAGE_ID_DEPTH_STENCIL_FORMAT_MISMATCH_PIPELINE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_DEPTH_STENCIL_SAMPLE_DESC_MISMATCH_PIPELINE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESCRIPTOR_HANDLE_WITH_INVALID_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESCRIPTOR_HEAP_NOT_SET_BEFORE_ROOT_SIGNATURE_WITH_DIRECTLY_INDEXED_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_DESCRIPTOR_HEAP_NOT_SHADER_VISIBLE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROYOWNEDOBJECT_OBJECTNOTOWNED","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDALLOCATOR","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDLIST12","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDPOOL","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDRECORDER","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_COMMANDSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_CRYPTO_SESSION_POLICY","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_DESCRIPTORHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_HEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_LIBRARY","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_LIFETIMETRACKER","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_META_COMMAND","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_MONITOREDFENCE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_PIPELINELIBRARY","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_PIPELINESTATE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_PROTECTED_RESOURCE_SESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_QUERYHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_ROOTSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_SHADERCACHESESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_TRACKEDWORKLOAD","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODECOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODER","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODERHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEODECODESTREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODECOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODER","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOENCODERHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOEXTENSIONCOMMAND","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONESTIMATOR","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOMOTIONVECTORHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSCOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSOR","features":[352]},{"name":"D3D12_MESSAGE_ID_DESTROY_VIDEOPROCESSSTREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CHECKFEATURESUPPORT_MISMATCHED_DATA_SIZE","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_EMPTYRECT","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CLEARVIEW_INVALIDSOURCERECT","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATECOMPUTESHADER_UAVSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEDOMAINSHADER_UAVSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEEXTENSIONSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_DOUBLEFLOATOPSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADERWITHSTREAMOUTPUT_UAVSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEGEOMETRYSHADER_UAVSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEHULLSHADER_UAVSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEPIXELSHADER_UAVSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEEXTENSIONSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_DOUBLEFLOATOPSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATEVERTEXSHADER_UAVSNOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_CREATE_SHARED_HANDLE_INVALIDARG","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_OPEN_SHARED_HANDLE_ACCESS_DENIED","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT","features":[352]},{"name":"D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT","features":[352]},{"name":"D3D12_MESSAGE_ID_DIFFERENT_DESCRIPTOR_HEAP_SET_AFTER_ROOT_SIGNATURE_WITH_DIRECTLY_INDEXED_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_OUT_OF_MEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_DUPLICATE_VARIANT_ID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_ENGINE_CREATE_FLAGS_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXPOSURE_SCALE_FORMAT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_ENGINE_CREATION_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_LOAD_FAILURE","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_UPSCALER_CREATION_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_UPSCALER_EXECUTION_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_SOURCE_COLOR_FORMAT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_SOURCE_DEPTH_FORMAT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_TARGET_DIMENSION_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_TARGET_FORMAT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EVICT_UNDERFLOW","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_EXPOSURE_SCALE_TEXTURE_SIZE_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_FLAGS_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_FORMAT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_INVALID_CAMERA_JITTER","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_MOTION_VECTORS_FORMAT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_OPTIONAL_TEXTURE_IS_NULL","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_REGION_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_REQUIRED_TEXTURE_IS_NULL","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_TIME_DELTA_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_UNEXPECTED_TEXTURE_IS_IGNORED","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_VARIANT_ID_NOT_FOUND","features":[352]},{"name":"D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_VARIANT_INDEX_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_DISCARD_INVALID_SUBRESOURCE_RANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_DISCARD_NO_RECTS_FOR_NON_TEXTURE2D","features":[352]},{"name":"D3D12_MESSAGE_ID_DISCARD_ONE_SUBRESOURCE_FOR_MIPS_WITH_RECTS","features":[352]},{"name":"D3D12_MESSAGE_ID_DISPATCH_GRAPH_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DISPATCH_RAYS_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_DRAW_EMPTY_SCISSOR_RECTANGLE","features":[352]},{"name":"D3D12_MESSAGE_ID_DRAW_POTENTIALLY_OUTSIDE_OF_VALID_RENDER_AREA","features":[352]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_FLAG_MISSING","features":[352]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_DEPTH_BIAS_NO_PIPELINE","features":[352]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_FLAG_MISSING","features":[352]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_DYNAMIC_INDEX_BUFFER_STRIP_CUT_NO_PIPELINE","features":[352]},{"name":"D3D12_MESSAGE_ID_EMIT_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_EMPTY_DISPATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_EMPTY_ROOT_DESCRIPTOR_TABLE","features":[352]},{"name":"D3D12_MESSAGE_ID_ENCODE_FRAME_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_ENCODE_FRAME_UNSUPPORTED_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_END_EVENT","features":[352]},{"name":"D3D12_MESSAGE_ID_ENHANCED_BARRIERS_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_ENQUEUE_MAKE_RESIDENT_INVALID_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_ESTIMATE_MOTION_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_EVICT_NULLOBJECTARRAY","features":[352]},{"name":"D3D12_MESSAGE_ID_EVICT_UNDERFLOW","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_BUNDLENOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_COMMANDLISTMISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_FAILEDCOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_GPU_WRITTEN_READBACK_RESOURCE_MAPPED","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_OPENCOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTECOMMANDLISTS_WRONGSWAPCHAINBUFFERREFERENCE","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_DESCRIPTOR_HEAP_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_OPEN_BUNDLE","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_STATIC_DESCRIPTOR_DATA_STATIC_NOT_SET","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTE_BUNDLE_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTE_INDIRECT_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_EXECUTE_INDIRECT_ZERO_COMMAND_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_FENCE_INVALIDOPERATION","features":[352]},{"name":"D3D12_MESSAGE_ID_GENERIC_DEVICE_OPERATION_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_GEOMETRY_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE","features":[352]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDBASEOFFSET","features":[352]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_INVALIDSUBRESOURCERANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLEFOOTPRINTS_UNSUPPORTED_BUFFER_WIDTH","features":[352]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDBASEOFFSET","features":[352]},{"name":"D3D12_MESSAGE_ID_GETCOPYABLELAYOUT_INVALIDSUBRESOURCERANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_INVALIDHEAPTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_GETCUSTOMHEAPPROPERTIES_UNRECOGNIZEDHEAPTYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_HEAP_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_GETGPUVIRTUALADDRESS_INVALID_RESOURCE_DIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_GETHEAPPROPERTIES_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_GETPRIVATEDATA_MOREDATA","features":[352]},{"name":"D3D12_MESSAGE_ID_GETRESOURCEALLOCATIONINFO_INVALIDRDESCS","features":[352]},{"name":"D3D12_MESSAGE_ID_GET_PIPELINE_STACK_SIZE_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_GET_PROGRAM_IDENTIFIER_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_GET_RAYTRACING_ACCELERATION_STRUCTURE_PREBUILD_INFO_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_GET_SHADER_IDENTIFIER_SIZE_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_GET_SHADER_STACK_SIZE_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_GET_WORK_GRAPH_PROPERTIES_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_HEAP_INDEX_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TABLE_REGISTER_INDEX_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_TYPE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_DESCRIPTOR_UNINITIALIZED","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INCOMPATIBLE_RESOURCE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INCOMPATIBLE_TEXTURE_LAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_INVALID_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_ACCESS_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_RESOURCE_STATE_IMPRECISE","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_ARGUMENT_UNINITIALIZED","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_DESCRIPTOR_ACCESS_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SAMPLER_MODE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SRV_RESOURCE_DIMENSION_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_STRUCTURED_BUFFER_STRIDE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UAV_RESOURCE_DIMENSION_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_GRAPHICS_PIPELINE_STATE_DESC_ZERO_SAMPLE_MASK","features":[352]},{"name":"D3D12_MESSAGE_ID_GUID_TEXTURE_LAYOUT_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_HAS_NO_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_INTERSECTS_MULTIPLE_BUFFERS","features":[352]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_ACCESS","features":[352]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_LAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_RESOURCE_DIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_SYNC","features":[352]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_VALUES","features":[352]},{"name":"D3D12_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR","features":[352]},{"name":"D3D12_MESSAGE_ID_INDEPENDENT_STENCIL_REF_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_BARRIER_ACCESS","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_BUNDLE_API","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_CAST_TARGET","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_DESCRIPTOR_HANDLE","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_NODE_INDEX","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_SUBRESOURCE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_USE_OF_NON_RESIDENT_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_INVALID_VIDEO_EXTENSION_COMMAND_ID","features":[352]},{"name":"D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDKEY","features":[352]},{"name":"D3D12_MESSAGE_ID_KEYEDMUTEX_INVALIDOBJECT","features":[352]},{"name":"D3D12_MESSAGE_ID_KEYEDMUTEX_WRONGSTATE","features":[352]},{"name":"D3D12_MESSAGE_ID_LEGACY_BARRIER_VALIDATION_FORCED_ON","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDALLOCATOR","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDLIST12","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDPOOL","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDRECORDER","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_COMMANDSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_CRYPTO_SESSION_POLICY","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_DESCRIPTORHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_DEVICE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_HEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_LIBRARY","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_LIFETIMETRACKER","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_META_COMMAND","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_MONITOREDFENCE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_OBJECT_SUMMARY","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_PIPELINELIBRARY","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_PIPELINESTATE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_PROTECTED_RESOURCE_SESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_QUERYHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_ROOTSIGNATURE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_SHADERCACHESESSION","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_SWAPCHAIN","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_TRACKEDWORKLOAD","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODECOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODER","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODERHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEODECODESTREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODECOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODER","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOENCODERHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOEXTENSIONCOMMAND","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONESTIMATOR","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOMOTIONVECTORHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDLIST","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSCOMMANDQUEUE","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSOR","features":[352]},{"name":"D3D12_MESSAGE_ID_LIVE_VIDEOPROCESSSTREAM","features":[352]},{"name":"D3D12_MESSAGE_ID_LOADPIPELINE_INVALIDDESC","features":[352]},{"name":"D3D12_MESSAGE_ID_LOADPIPELINE_NAMENOTFOUND","features":[352]},{"name":"D3D12_MESSAGE_ID_MAKERESIDENT_NULLOBJECTARRAY","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDARG_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDDATAPOINTER","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDRANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_INVALIDSUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_INVALID_NULLRANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_MAP_OUTOFMEMORY_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_MESH_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE","features":[352]},{"name":"D3D12_MESSAGE_ID_MESSAGE_REPORTING_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_FAILED_ENUMERATION","features":[352]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_ID_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_INVALID_GPU_VIRTUAL_ADDRESS","features":[352]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_PARAMETER_SIZE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_META_COMMAND_UNSUPPORTED_PARAMS","features":[352]},{"name":"D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOADS","features":[352]},{"name":"D3D12_MESSAGE_ID_MULTIPLE_TRACKED_WORKLOAD_PAIRS","features":[352]},{"name":"D3D12_MESSAGE_ID_NODE_MASK_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_NONNORMALIZED_COORDINATE_SAMPLING_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_NONZERO_SAMPLER_FEEDBACK_MIP_REGION_WITH_INCOMPATIBLE_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_NON_OPTIMAL_BARRIER_ONLY_EXECUTE_COMMAND_LISTS","features":[352]},{"name":"D3D12_MESSAGE_ID_NON_RETAIL_SHADER_MODEL_WONT_VALIDATE","features":[352]},{"name":"D3D12_MESSAGE_ID_NO_COMPUTE_API_SUPPORT","features":[352]},{"name":"D3D12_MESSAGE_ID_NO_GRAPHICS_API_SUPPORT","features":[352]},{"name":"D3D12_MESSAGE_ID_NO_VIDEO_API_SUPPORT","features":[352]},{"name":"D3D12_MESSAGE_ID_OBJECT_ACCESSED_WHILE_STILL_IN_USE","features":[352]},{"name":"D3D12_MESSAGE_ID_OBJECT_DELETED_WHILE_STILL_IN_USE","features":[352]},{"name":"D3D12_MESSAGE_ID_OBJECT_EVICTED_WHILE_STILL_IN_USE","features":[352]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDADDRESS","features":[352]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDARG_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_INVALIDHANDLE","features":[352]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_OUTOFMEMORY_RETURN","features":[352]},{"name":"D3D12_MESSAGE_ID_OPENEXISTINGHEAP_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_OUT_OF_BOUNDS_BARRIER_SUBRESOURCE_RANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_OUT_OF_ORDER_TRACKED_WORKLOAD_PAIR","features":[352]},{"name":"D3D12_MESSAGE_ID_OVERSIZED_DISPATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_PIPELINELIBRARY_SERIALIZE_NOTENOUGHMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_PIPELINE_STATE_TYPE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_PIX_EVENT_UNDERFLOW","features":[352]},{"name":"D3D12_MESSAGE_ID_POSSIBLE_INVALID_USE_OF_NON_RESIDENT_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_POSSIBLY_INVALID_SUBRESOURCE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_PRIMITIVE_TOPOLOGY_MISMATCH_PIPELINE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_PRIMITIVE_TOPOLOGY_TRIANGLE_FANS_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_PROBABLE_PIX_EVENT_LEAK","features":[352]},{"name":"D3D12_MESSAGE_ID_PROCESS_FRAME_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_PROGRAMMABLE_MSAA_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_PROTECTED_RESOURCE_SESSION_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_EMPTYBOX","features":[352]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDBOX","features":[352]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_READFROMSUBRESOURCE_INVALIDSUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_RECREATEAT_INSUFFICIENT_SUPPORT","features":[352]},{"name":"D3D12_MESSAGE_ID_RECREATEAT_INVALID_TARGET","features":[352]},{"name":"D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDOBJECT","features":[352]},{"name":"D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_INVALIDSIZE","features":[352]},{"name":"D3D12_MESSAGE_ID_REFLECTSHAREDPROPERTIES_UNRECOGNIZEDPROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_CLOSE_COMMAND_LIST","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_END_WITHOUT_BEGIN","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_CANNOT_NEST_RENDER_PASSES","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_COMMANDLIST_INVALID_END_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_COMMANDLIST_INVALID_START_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_DISALLOWED_API_CALLED","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_GPU_WORK_WHILE_SUSPENDED","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_INVALID_RESOURCE_BARRIER","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_LOCAL_DEPTH_STENCIL_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_LOCAL_PRESERVE_RENDER_PARAMETERS_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_ACCESS","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_LOCAL_PRESERVE_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_NO_ACCESS","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_MISMATCHING_SUSPEND_RESUME","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_NO_PRIOR_SUSPEND_WITHIN_EXECUTECOMMANDLISTS","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_NO_SUBSEQUENT_RESUME_WITHIN_EXECUTECOMMANDLISTS","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_PASS_UNSUPPORTED_RESOLVE","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_TARGET_FORMAT_MISMATCH_PIPELINE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_RENDER_TARGET_SAMPLE_DESC_MISMATCH_PIPELINE_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCEREGION_INVALID_RECT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDDSTRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALIDSRCRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SAMPLE_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_INVALID_SUBRESOURCE_INDEX","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLDST","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_NULLSRC","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_FLAGS_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_INVALID_MIP_LEVEL_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_ARRAY_SIZE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_INVALID_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVE_ENCODER_INPUT_PARAM_LAYOUT_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_UNSUPPORTED_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVE_QUERY_DATA_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOLVE_QUERY_INVALID_QUERY_STATE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_BEFORE_AFTER_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_DUPLICATE_SUBRESOURCE_TRANSITIONS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINATION","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMBINED_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_COMMAND_LIST_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_FLAGS_FOR_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_HEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SPLIT_BARRIER","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_SUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_INVALID_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MATCHING_STATES","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_BEGIN_END","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_COMMAND_LIST_TYPE","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISMATCHING_MISC_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_MISSING_BIND_FLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_NULL_POINTER","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_POSSIBLE_BEFORE_AFTER_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_RESERVED_BITS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_SAMPLE_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_BEGIN","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_UNMATCHED_END","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_BARRIER_ZERO_BARRIERS","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_FORMAT_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY","features":[352]},{"name":"D3D12_MESSAGE_ID_RESOURCE_UNMAP_NOTMAPPED","features":[352]},{"name":"D3D12_MESSAGE_ID_RSSETSHADINGRATEIMAGE_REQUIRES_TIER_2","features":[352]},{"name":"D3D12_MESSAGE_ID_RSSETSHADINGRATE_REQUIRES_TIER_1","features":[352]},{"name":"D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_COMBINER","features":[352]},{"name":"D3D12_MESSAGE_ID_RSSETSHADING_RATE_INVALID_SHADING_RATE","features":[352]},{"name":"D3D12_MESSAGE_ID_RSSETSHADING_RATE_SHADING_RATE_NOT_PERMITTED_BY_CAP","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_DEFERRED","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMCLEAR","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLEPOSITIONS_MISMATCH_RECORDTIME_ASSUMEDFROMFIRSTUSE","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_MISMATCHING_TARGETED_RESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_NULL_ARGUMENTS","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_CREATE_UAV_REQUIRES_FEEDBACK_MAP_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_DIMENSION","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_LAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_MIP_REGION","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_INVALID_SAMPLE_QUALITY","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_MAP_REQUIRES_UNORDERED_ACCESS_FLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_SAMPLER_FEEDBACK_UAV_REQUIRES_SAMPLER_FEEDBACK_CAPABILITY","features":[352]},{"name":"D3D12_MESSAGE_ID_SETDEPTHBOUNDS_INVALIDARGS","features":[352]},{"name":"D3D12_MESSAGE_ID_SETEVENTONMULTIPLEFENCECOMPLETION_INVALIDFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_CHANGINGPARAMS","features":[352]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_INVALIDFREEDATA","features":[352]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_NO_ACCESS","features":[352]},{"name":"D3D12_MESSAGE_ID_SETPRIVATEDATA_OUTOFMEMORY","features":[352]},{"name":"D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PAGEABLE","features":[352]},{"name":"D3D12_MESSAGE_ID_SETRESIDENCYPRIORITY_INVALID_PRIORITY","features":[352]},{"name":"D3D12_MESSAGE_ID_SETSAMPLEPOSITIONS_INVALIDARGS","features":[352]},{"name":"D3D12_MESSAGE_ID_SETTING_SHADING_RATE_FROM_MS_REQUIRES_CAPABILITY","features":[352]},{"name":"D3D12_MESSAGE_ID_SETVIEWINSTANCEMASK_INVALIDARGS","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_BACKGROUND_PROCESSING_MODE_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_DESCRIPTOR_HEAP_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_DESCRIPTOR_TABLE_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_INDEX_BUFFER_INVALID_DESC","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_PIPELINE_STACK_SIZE_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_PREDICATION_INVALID_PARAMETERS","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_PROGRAM_ERROR","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_RENDER_TARGETS_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_BUFFER_VIEW_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_CONSTANT_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_SHADER_RESOURCE_VIEW_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_ROOT_UNORDERED_ACCESS_VIEW_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_SCISSOR_RECTS_INVALID_RECT","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_STREAM_OUTPUT_BUFFERS_INVALID_DESC","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID","features":[352]},{"name":"D3D12_MESSAGE_ID_SET_VERTEX_BUFFERS_INVALID_DESC","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_DEVELOPERMODE","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_IGNOREDFLAG","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_INVALIDFLAGS","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_SHADERCACHECLEAR_NOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHECONTROL_STATEALREADYSET","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_CORRUPT","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_DISABLED","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_FINDVALUE_NOTFOUND","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_SHADERCACHEDELETE_NOTSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_ALREADYPRESENT","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_CACHEFULL","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADERCACHESESSION_STOREVALUE_HASHCOLLISION","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_ARRAY_SIZE","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_MIP_LEVEL","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_COUNT","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_IMAGE_INCORRECT_SAMPLE_QUALITY","features":[352]},{"name":"D3D12_MESSAGE_ID_SHADING_RATE_SOURCE_REQUIRES_DIMENSION_TEXTURE2D","features":[352]},{"name":"D3D12_MESSAGE_ID_STATIC_DESCRIPTOR_INVALID_DESCRIPTOR_CHANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_STOREPIPELINE_DUPLICATENAME","features":[352]},{"name":"D3D12_MESSAGE_ID_STOREPIPELINE_NONAME","features":[352]},{"name":"D3D12_MESSAGE_ID_STRING_FROM_APPLICATION","features":[352]},{"name":"D3D12_MESSAGE_ID_TEXTURE_BARRIER_SUBRESOURCES_OUT_OF_BOUNDS","features":[352]},{"name":"D3D12_MESSAGE_ID_TIMESTAMPS_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_TOO_MANY_NODES_SPECIFIED","features":[352]},{"name":"D3D12_MESSAGE_ID_TRACKED_WORKLOAD_COMMAND_QUEUE_MISMATCH","features":[352]},{"name":"D3D12_MESSAGE_ID_TRACKED_WORKLOAD_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_UNINITIALIZED_META_COMMAND","features":[352]},{"name":"D3D12_MESSAGE_ID_UNKNOWN","features":[352]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDRANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALIDSUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_UNMAP_INVALID_NULLRANGE","features":[352]},{"name":"D3D12_MESSAGE_ID_UNMAP_RANGE_NOT_EMPTY","features":[352]},{"name":"D3D12_MESSAGE_ID_UNSUPPORTED_BARRIER_LAYOUT","features":[352]},{"name":"D3D12_MESSAGE_ID_UNUSED_CROSS_EXECUTE_SPLIT_BARRIER","features":[352]},{"name":"D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_INVALID_PARAMETER","features":[352]},{"name":"D3D12_MESSAGE_ID_UPDATETILEMAPPINGS_POSSIBLY_MISMATCHING_PROPERTIES","features":[352]},{"name":"D3D12_MESSAGE_ID_USE_OF_ZERO_REFCOUNT_OBJECT","features":[352]},{"name":"D3D12_MESSAGE_ID_VARIABLE_SHADING_RATE_NOT_ALLOWED_WITH_TIR","features":[352]},{"name":"D3D12_MESSAGE_ID_VERTEX_SHADER_OUTPUTTING_BOTH_VIEWPORT_ARRAY_INDEX_AND_SHADING_RATE_NOT_SUPPORTED_ON_DEVICE","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_ESTIMATOR_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_CREATE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_DECODE_FRAME_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_INVALID_INPUT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_DECODE_SUPPORT_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_EXTENSION_COMMAND_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_PROCESS_FRAMES_INVALID_ARGUMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_INVALID_INPUT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIDEO_PROCESS_SUPPORT_UNSUPPORTED_FORMAT","features":[352]},{"name":"D3D12_MESSAGE_ID_VIEW_INSTANCING_INVALIDARGS","features":[352]},{"name":"D3D12_MESSAGE_ID_VIEW_INSTANCING_UNSUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_VRS_SUM_COMBINER_REQUIRES_CAPABILITY","features":[352]},{"name":"D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_SIGNAL","features":[352]},{"name":"D3D12_MESSAGE_ID_WINDOWS7_FENCE_OUTOFORDER_WAIT","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_ALIGNMENT","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_DEST","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_INVALID_MODE","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITEBUFFERIMMEDIATE_NOT_SUPPORTED","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_EMPTYBOX","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDBOX","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDHEAP","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITETOSUBRESOURCE_INVALIDSUBRESOURCE","features":[352]},{"name":"D3D12_MESSAGE_ID_WRITE_COMBINE_PERFORMANCE_WARNING","features":[352]},{"name":"D3D12_MESSAGE_ID_WRONG_COMMAND_ALLOCATOR_TYPE","features":[352]},{"name":"D3D12_MESSAGE_SEVERITY","features":[352]},{"name":"D3D12_MESSAGE_SEVERITY_CORRUPTION","features":[352]},{"name":"D3D12_MESSAGE_SEVERITY_ERROR","features":[352]},{"name":"D3D12_MESSAGE_SEVERITY_INFO","features":[352]},{"name":"D3D12_MESSAGE_SEVERITY_MESSAGE","features":[352]},{"name":"D3D12_MESSAGE_SEVERITY_WARNING","features":[352]},{"name":"D3D12_META_COMMAND_DESC","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_DESC","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_FLAGS","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_FLAG_INPUT","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_FLAG_OUTPUT","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE_CREATION","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE_EXECUTION","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_STAGE_INITIALIZATION","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_CPU_DESCRIPTOR_HANDLE_HEAP_TYPE_CBV_SRV_UAV","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_FLOAT","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_GPU_DESCRIPTOR_HANDLE_HEAP_TYPE_CBV_SRV_UAV","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_GPU_VIRTUAL_ADDRESS","features":[352]},{"name":"D3D12_META_COMMAND_PARAMETER_TYPE_UINT64","features":[352]},{"name":"D3D12_MINOR_VERSION","features":[352]},{"name":"D3D12_MIN_BORDER_COLOR_COMPONENT","features":[352]},{"name":"D3D12_MIN_DEPTH","features":[352]},{"name":"D3D12_MIN_FILTER_SHIFT","features":[352]},{"name":"D3D12_MIN_MAXANISOTROPY","features":[352]},{"name":"D3D12_MIP_FILTER_SHIFT","features":[352]},{"name":"D3D12_MIP_LOD_BIAS_MAX","features":[352]},{"name":"D3D12_MIP_LOD_BIAS_MIN","features":[352]},{"name":"D3D12_MIP_LOD_FRACTIONAL_BIT_COUNT","features":[352]},{"name":"D3D12_MIP_LOD_RANGE_BIT_COUNT","features":[352]},{"name":"D3D12_MIP_REGION","features":[352]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAGS","features":[352]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAG_ALL","features":[352]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAG_ANY","features":[352]},{"name":"D3D12_MULTIPLE_FENCE_WAIT_FLAG_NONE","features":[352]},{"name":"D3D12_MULTISAMPLE_ANTIALIAS_LINE_WIDTH","features":[352]},{"name":"D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_NONE","features":[352]},{"name":"D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_TILED_RESOURCE","features":[352]},{"name":"D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS","features":[352]},{"name":"D3D12_MULTI_NODE_CPU_INPUT","features":[352]},{"name":"D3D12_MULTI_NODE_GPU_INPUT","features":[352]},{"name":"D3D12_NODE","features":[305,352]},{"name":"D3D12_NODE_CPU_INPUT","features":[352]},{"name":"D3D12_NODE_GPU_INPUT","features":[352]},{"name":"D3D12_NODE_ID","features":[352]},{"name":"D3D12_NODE_MASK","features":[352]},{"name":"D3D12_NODE_OUTPUT_OVERRIDES","features":[305,352]},{"name":"D3D12_NODE_OVERRIDES_TYPE","features":[352]},{"name":"D3D12_NODE_OVERRIDES_TYPE_BROADCASTING_LAUNCH","features":[352]},{"name":"D3D12_NODE_OVERRIDES_TYPE_COALESCING_LAUNCH","features":[352]},{"name":"D3D12_NODE_OVERRIDES_TYPE_COMMON_COMPUTE","features":[352]},{"name":"D3D12_NODE_OVERRIDES_TYPE_NONE","features":[352]},{"name":"D3D12_NODE_OVERRIDES_TYPE_THREAD_LAUNCH","features":[352]},{"name":"D3D12_NODE_TYPE","features":[352]},{"name":"D3D12_NODE_TYPE_SHADER","features":[352]},{"name":"D3D12_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT","features":[352]},{"name":"D3D12_OS_RESERVED_REGISTER_SPACE_VALUES_END","features":[352]},{"name":"D3D12_OS_RESERVED_REGISTER_SPACE_VALUES_START","features":[352]},{"name":"D3D12_PACKED_MIP_INFO","features":[352]},{"name":"D3D12_PACKED_TILE","features":[352]},{"name":"D3D12_PARAMETER_DESC","features":[398,352]},{"name":"D3D12_PIPELINE_STATE_FLAGS","features":[352]},{"name":"D3D12_PIPELINE_STATE_FLAG_DYNAMIC_DEPTH_BIAS","features":[352]},{"name":"D3D12_PIPELINE_STATE_FLAG_DYNAMIC_INDEX_BUFFER_STRIP_CUT","features":[352]},{"name":"D3D12_PIPELINE_STATE_FLAG_NONE","features":[352]},{"name":"D3D12_PIPELINE_STATE_FLAG_TOOL_DEBUG","features":[352]},{"name":"D3D12_PIPELINE_STATE_STREAM_DESC","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_AS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_BLEND","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_CACHED_PSO","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_CS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL1","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL2","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL_FORMAT","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_DS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_FLAGS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_GS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_HS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_IB_STRIP_CUT_VALUE","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_INPUT_LAYOUT","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_MAX_VALID","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_MS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_NODE_MASK","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_PRIMITIVE_TOPOLOGY","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_PS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER1","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RASTERIZER2","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_RENDER_TARGET_FORMATS","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_SAMPLE_DESC","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_SAMPLE_MASK","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_STREAM_OUTPUT","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_VIEW_INSTANCING","features":[352]},{"name":"D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_VS","features":[352]},{"name":"D3D12_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[352]},{"name":"D3D12_PLACED_SUBRESOURCE_FOOTPRINT","features":[352,393]},{"name":"D3D12_PREDICATION_OP","features":[352]},{"name":"D3D12_PREDICATION_OP_EQUAL_ZERO","features":[352]},{"name":"D3D12_PREDICATION_OP_NOT_EQUAL_ZERO","features":[352]},{"name":"D3D12_PREVIEW_SDK_VERSION","features":[352]},{"name":"D3D12_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT","features":[352]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_DESC","features":[352]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE","features":[352]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_LINE","features":[352]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_PATCH","features":[352]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_POINT","features":[352]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE","features":[352]},{"name":"D3D12_PRIMITIVE_TOPOLOGY_TYPE_UNDEFINED","features":[352]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER","features":[352]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_1","features":[352]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_2","features":[352]},{"name":"D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_PROGRAM_IDENTIFIER","features":[352]},{"name":"D3D12_PROGRAM_TYPE","features":[352]},{"name":"D3D12_PROGRAM_TYPE_GENERIC_PIPELINE","features":[352]},{"name":"D3D12_PROGRAM_TYPE_RAYTRACING_PIPELINE","features":[352]},{"name":"D3D12_PROGRAM_TYPE_WORK_GRAPH","features":[352]},{"name":"D3D12_PROTECTED_RESOURCES_SESSION_HARDWARE_PROTECTED","features":[352]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_DESC","features":[352]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_DESC1","features":[352]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_FLAGS","features":[352]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_FLAG_NONE","features":[352]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS","features":[352]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAG_NONE","features":[352]},{"name":"D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAG_SUPPORTED","features":[352]},{"name":"D3D12_PROTECTED_SESSION_STATUS","features":[352]},{"name":"D3D12_PROTECTED_SESSION_STATUS_INVALID","features":[352]},{"name":"D3D12_PROTECTED_SESSION_STATUS_OK","features":[352]},{"name":"D3D12_PS_CS_UAV_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_PS_CS_UAV_REGISTER_COUNT","features":[352]},{"name":"D3D12_PS_CS_UAV_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_PS_CS_UAV_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_PS_FRONTFACING_DEFAULT_VALUE","features":[352]},{"name":"D3D12_PS_FRONTFACING_FALSE_VALUE","features":[352]},{"name":"D3D12_PS_FRONTFACING_TRUE_VALUE","features":[352]},{"name":"D3D12_PS_INPUT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_PS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_PS_INPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_PS_INPUT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_PS_INPUT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_PS_LEGACY_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[352]},{"name":"D3D12_PS_OUTPUT_DEPTH_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_PS_OUTPUT_DEPTH_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_PS_OUTPUT_DEPTH_REGISTER_COUNT","features":[352]},{"name":"D3D12_PS_OUTPUT_MASK_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_PS_OUTPUT_MASK_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_PS_OUTPUT_MASK_REGISTER_COUNT","features":[352]},{"name":"D3D12_PS_OUTPUT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_PS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_PS_OUTPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_PS_PIXEL_CENTER_FRACTIONAL_COMPONENT","features":[352]},{"name":"D3D12_QUERY_DATA_PIPELINE_STATISTICS","features":[352]},{"name":"D3D12_QUERY_DATA_PIPELINE_STATISTICS1","features":[352]},{"name":"D3D12_QUERY_DATA_SO_STATISTICS","features":[352]},{"name":"D3D12_QUERY_HEAP_DESC","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE_COPY_QUEUE_TIMESTAMP","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE_OCCLUSION","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE_PIPELINE_STATISTICS1","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE_SO_STATISTICS","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE_TIMESTAMP","features":[352]},{"name":"D3D12_QUERY_HEAP_TYPE_VIDEO_DECODE_STATISTICS","features":[352]},{"name":"D3D12_QUERY_TYPE","features":[352]},{"name":"D3D12_QUERY_TYPE_BINARY_OCCLUSION","features":[352]},{"name":"D3D12_QUERY_TYPE_OCCLUSION","features":[352]},{"name":"D3D12_QUERY_TYPE_PIPELINE_STATISTICS","features":[352]},{"name":"D3D12_QUERY_TYPE_PIPELINE_STATISTICS1","features":[352]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM0","features":[352]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM1","features":[352]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM2","features":[352]},{"name":"D3D12_QUERY_TYPE_SO_STATISTICS_STREAM3","features":[352]},{"name":"D3D12_QUERY_TYPE_TIMESTAMP","features":[352]},{"name":"D3D12_QUERY_TYPE_VIDEO_DECODE_STATISTICS","features":[352]},{"name":"D3D12_RANGE","features":[352]},{"name":"D3D12_RANGE_UINT64","features":[352]},{"name":"D3D12_RASTERIZER_DESC","features":[305,352]},{"name":"D3D12_RASTERIZER_DESC1","features":[305,352]},{"name":"D3D12_RASTERIZER_DESC2","features":[305,352]},{"name":"D3D12_RAW_UAV_SRV_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_RAYTRACING_AABB","features":[352]},{"name":"D3D12_RAYTRACING_AABB_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAGS","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_COMPACTION","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_ALLOW_UPDATE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_MINIMIZE_MEMORY","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_NONE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PERFORM_UPDATE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_BUILD","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BUILD_FLAG_PREFER_FAST_TRACE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_CLONE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_COMPACT","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_DESERIALIZE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_SERIALIZE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_COPY_MODE_VISUALIZATION_DECODE_FOR_TOOLS","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_COMPACTED_SIZE_DESC","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_CURRENT_SIZE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_CURRENT_SIZE_DESC","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_DESC","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_SERIALIZATION_DESC","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TOOLS_VISUALIZATION","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TOOLS_VISUALIZATION_DESC","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_POSTBUILD_INFO_TYPE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_PREBUILD_INFO","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_SRV","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL","features":[352]},{"name":"D3D12_RAYTRACING_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_AABBS_DESC","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_DESC","features":[352,393]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAGS","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAG_NONE","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAG_NO_DUPLICATE_ANYHIT_INVOCATION","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_FLAG_OPAQUE","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_TRIANGLES_DESC","features":[352,393]},{"name":"D3D12_RAYTRACING_GEOMETRY_TYPE","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_TYPE_PROCEDURAL_PRIMITIVE_AABBS","features":[352]},{"name":"D3D12_RAYTRACING_GEOMETRY_TYPE_TRIANGLES","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_DESC","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_DESCS_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAGS","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_NON_OPAQUE","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_FORCE_OPAQUE","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_NONE","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_CULL_DISABLE","features":[352]},{"name":"D3D12_RAYTRACING_INSTANCE_FLAG_TRIANGLE_FRONT_COUNTERCLOCKWISE","features":[352]},{"name":"D3D12_RAYTRACING_MAX_ATTRIBUTE_SIZE_IN_BYTES","features":[352]},{"name":"D3D12_RAYTRACING_MAX_DECLARABLE_TRACE_RECURSION_DEPTH","features":[352]},{"name":"D3D12_RAYTRACING_MAX_GEOMETRIES_PER_BOTTOM_LEVEL_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_RAYTRACING_MAX_INSTANCES_PER_TOP_LEVEL_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_RAYTRACING_MAX_PRIMITIVES_PER_BOTTOM_LEVEL_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_RAYTRACING_MAX_RAY_GENERATION_SHADER_THREADS","features":[352]},{"name":"D3D12_RAYTRACING_MAX_SHADER_RECORD_STRIDE","features":[352]},{"name":"D3D12_RAYTRACING_PIPELINE_CONFIG","features":[352]},{"name":"D3D12_RAYTRACING_PIPELINE_CONFIG1","features":[352]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAGS","features":[352]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAG_NONE","features":[352]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAG_SKIP_PROCEDURAL_PRIMITIVES","features":[352]},{"name":"D3D12_RAYTRACING_PIPELINE_FLAG_SKIP_TRIANGLES","features":[352]},{"name":"D3D12_RAYTRACING_SHADER_CONFIG","features":[352]},{"name":"D3D12_RAYTRACING_SHADER_RECORD_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_RAYTRACING_SHADER_TABLE_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_RAYTRACING_TIER","features":[352]},{"name":"D3D12_RAYTRACING_TIER_1_0","features":[352]},{"name":"D3D12_RAYTRACING_TIER_1_1","features":[352]},{"name":"D3D12_RAYTRACING_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_RAYTRACING_TRANSFORM3X4_BYTE_ALIGNMENT","features":[352]},{"name":"D3D12_RAY_FLAGS","features":[352]},{"name":"D3D12_RAY_FLAG_ACCEPT_FIRST_HIT_AND_END_SEARCH","features":[352]},{"name":"D3D12_RAY_FLAG_CULL_BACK_FACING_TRIANGLES","features":[352]},{"name":"D3D12_RAY_FLAG_CULL_FRONT_FACING_TRIANGLES","features":[352]},{"name":"D3D12_RAY_FLAG_CULL_NON_OPAQUE","features":[352]},{"name":"D3D12_RAY_FLAG_CULL_OPAQUE","features":[352]},{"name":"D3D12_RAY_FLAG_FORCE_NON_OPAQUE","features":[352]},{"name":"D3D12_RAY_FLAG_FORCE_OPAQUE","features":[352]},{"name":"D3D12_RAY_FLAG_NONE","features":[352]},{"name":"D3D12_RAY_FLAG_SKIP_CLOSEST_HIT_SHADER","features":[352]},{"name":"D3D12_RAY_FLAG_SKIP_PROCEDURAL_PRIMITIVES","features":[352]},{"name":"D3D12_RAY_FLAG_SKIP_TRIANGLES","features":[352]},{"name":"D3D12_RECREATE_AT_TIER","features":[352]},{"name":"D3D12_RECREATE_AT_TIER_1","features":[352]},{"name":"D3D12_RECREATE_AT_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS","features":[352,393]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_CLEAR_PARAMETERS","features":[352,393]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_PRESERVE_LOCAL_PARAMETERS","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_CLEAR","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_DISCARD","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_NO_ACCESS","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE_LOCAL_RENDER","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE_LOCAL_SRV","features":[352]},{"name":"D3D12_RENDER_PASS_BEGINNING_ACCESS_TYPE_PRESERVE_LOCAL_UAV","features":[352]},{"name":"D3D12_RENDER_PASS_DEPTH_STENCIL_DESC","features":[305,352,393]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS","features":[305,352,393]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_PRESERVE_LOCAL_PARAMETERS","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS","features":[305,352,393]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS","features":[305,352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_DISCARD","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_NO_ACCESS","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE_LOCAL_RENDER","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE_LOCAL_SRV","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_PRESERVE_LOCAL_UAV","features":[352]},{"name":"D3D12_RENDER_PASS_ENDING_ACCESS_TYPE_RESOLVE","features":[352]},{"name":"D3D12_RENDER_PASS_FLAGS","features":[352]},{"name":"D3D12_RENDER_PASS_FLAG_ALLOW_UAV_WRITES","features":[352]},{"name":"D3D12_RENDER_PASS_FLAG_BIND_READ_ONLY_DEPTH","features":[352]},{"name":"D3D12_RENDER_PASS_FLAG_BIND_READ_ONLY_STENCIL","features":[352]},{"name":"D3D12_RENDER_PASS_FLAG_NONE","features":[352]},{"name":"D3D12_RENDER_PASS_FLAG_RESUMING_PASS","features":[352]},{"name":"D3D12_RENDER_PASS_FLAG_SUSPENDING_PASS","features":[352]},{"name":"D3D12_RENDER_PASS_RENDER_TARGET_DESC","features":[305,352,393]},{"name":"D3D12_RENDER_PASS_TIER","features":[352]},{"name":"D3D12_RENDER_PASS_TIER_0","features":[352]},{"name":"D3D12_RENDER_PASS_TIER_1","features":[352]},{"name":"D3D12_RENDER_PASS_TIER_2","features":[352]},{"name":"D3D12_RENDER_TARGET_BLEND_DESC","features":[305,352]},{"name":"D3D12_RENDER_TARGET_VIEW_DESC","features":[352,393]},{"name":"D3D12_REQ_BLEND_OBJECT_COUNT_PER_DEVICE","features":[352]},{"name":"D3D12_REQ_BUFFER_RESOURCE_TEXEL_COUNT_2_TO_EXP","features":[352]},{"name":"D3D12_REQ_CONSTANT_BUFFER_ELEMENT_COUNT","features":[352]},{"name":"D3D12_REQ_DEPTH_STENCIL_OBJECT_COUNT_PER_DEVICE","features":[352]},{"name":"D3D12_REQ_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[352]},{"name":"D3D12_REQ_DRAW_VERTEX_COUNT_2_TO_EXP","features":[352]},{"name":"D3D12_REQ_FILTERING_HW_ADDRESSABLE_RESOURCE_DIMENSION","features":[352]},{"name":"D3D12_REQ_GS_INVOCATION_32BIT_OUTPUT_COMPONENT_LIMIT","features":[352]},{"name":"D3D12_REQ_IMMEDIATE_CONSTANT_BUFFER_ELEMENT_COUNT","features":[352]},{"name":"D3D12_REQ_MAXANISOTROPY","features":[352]},{"name":"D3D12_REQ_MIP_LEVELS","features":[352]},{"name":"D3D12_REQ_MULTI_ELEMENT_STRUCTURE_SIZE_IN_BYTES","features":[352]},{"name":"D3D12_REQ_RASTERIZER_OBJECT_COUNT_PER_DEVICE","features":[352]},{"name":"D3D12_REQ_RENDER_TO_BUFFER_WINDOW_WIDTH","features":[352]},{"name":"D3D12_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_A_TERM","features":[352]},{"name":"D3D12_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_B_TERM","features":[352]},{"name":"D3D12_REQ_RESOURCE_SIZE_IN_MEGABYTES_EXPRESSION_C_TERM","features":[352]},{"name":"D3D12_REQ_RESOURCE_VIEW_COUNT_PER_DEVICE_2_TO_EXP","features":[352]},{"name":"D3D12_REQ_SAMPLER_OBJECT_COUNT_PER_DEVICE","features":[352]},{"name":"D3D12_REQ_SUBRESOURCES","features":[352]},{"name":"D3D12_REQ_TEXTURE1D_ARRAY_AXIS_DIMENSION","features":[352]},{"name":"D3D12_REQ_TEXTURE1D_U_DIMENSION","features":[352]},{"name":"D3D12_REQ_TEXTURE2D_ARRAY_AXIS_DIMENSION","features":[352]},{"name":"D3D12_REQ_TEXTURE2D_U_OR_V_DIMENSION","features":[352]},{"name":"D3D12_REQ_TEXTURE3D_U_V_OR_W_DIMENSION","features":[352]},{"name":"D3D12_REQ_TEXTURECUBE_DIMENSION","features":[352]},{"name":"D3D12_RESIDENCY_FLAGS","features":[352]},{"name":"D3D12_RESIDENCY_FLAG_DENY_OVERBUDGET","features":[352]},{"name":"D3D12_RESIDENCY_FLAG_NONE","features":[352]},{"name":"D3D12_RESIDENCY_PRIORITY","features":[352]},{"name":"D3D12_RESIDENCY_PRIORITY_HIGH","features":[352]},{"name":"D3D12_RESIDENCY_PRIORITY_LOW","features":[352]},{"name":"D3D12_RESIDENCY_PRIORITY_MAXIMUM","features":[352]},{"name":"D3D12_RESIDENCY_PRIORITY_MINIMUM","features":[352]},{"name":"D3D12_RESIDENCY_PRIORITY_NORMAL","features":[352]},{"name":"D3D12_RESINFO_INSTRUCTION_MISSING_COMPONENT_RETVAL","features":[352]},{"name":"D3D12_RESOLVE_MODE","features":[352]},{"name":"D3D12_RESOLVE_MODE_AVERAGE","features":[352]},{"name":"D3D12_RESOLVE_MODE_DECODE_SAMPLER_FEEDBACK","features":[352]},{"name":"D3D12_RESOLVE_MODE_DECOMPRESS","features":[352]},{"name":"D3D12_RESOLVE_MODE_ENCODE_SAMPLER_FEEDBACK","features":[352]},{"name":"D3D12_RESOLVE_MODE_MAX","features":[352]},{"name":"D3D12_RESOLVE_MODE_MIN","features":[352]},{"name":"D3D12_RESOURCE_ALIASING_BARRIER","features":[352]},{"name":"D3D12_RESOURCE_ALLOCATION_INFO","features":[352]},{"name":"D3D12_RESOURCE_ALLOCATION_INFO1","features":[352]},{"name":"D3D12_RESOURCE_BARRIER","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_FLAGS","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_FLAG_BEGIN_ONLY","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_FLAG_END_ONLY","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_FLAG_NONE","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_TYPE","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_TYPE_ALIASING","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_TYPE_TRANSITION","features":[352]},{"name":"D3D12_RESOURCE_BARRIER_TYPE_UAV","features":[352]},{"name":"D3D12_RESOURCE_BINDING_TIER","features":[352]},{"name":"D3D12_RESOURCE_BINDING_TIER_1","features":[352]},{"name":"D3D12_RESOURCE_BINDING_TIER_2","features":[352]},{"name":"D3D12_RESOURCE_BINDING_TIER_3","features":[352]},{"name":"D3D12_RESOURCE_DESC","features":[352,393]},{"name":"D3D12_RESOURCE_DESC1","features":[352,393]},{"name":"D3D12_RESOURCE_DIMENSION","features":[352]},{"name":"D3D12_RESOURCE_DIMENSION_BUFFER","features":[352]},{"name":"D3D12_RESOURCE_DIMENSION_TEXTURE1D","features":[352]},{"name":"D3D12_RESOURCE_DIMENSION_TEXTURE2D","features":[352]},{"name":"D3D12_RESOURCE_DIMENSION_TEXTURE3D","features":[352]},{"name":"D3D12_RESOURCE_DIMENSION_UNKNOWN","features":[352]},{"name":"D3D12_RESOURCE_FLAGS","features":[352]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_CROSS_ADAPTER","features":[352]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL","features":[352]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET","features":[352]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_SIMULTANEOUS_ACCESS","features":[352]},{"name":"D3D12_RESOURCE_FLAG_ALLOW_UNORDERED_ACCESS","features":[352]},{"name":"D3D12_RESOURCE_FLAG_DENY_SHADER_RESOURCE","features":[352]},{"name":"D3D12_RESOURCE_FLAG_NONE","features":[352]},{"name":"D3D12_RESOURCE_FLAG_RAYTRACING_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_RESOURCE_FLAG_VIDEO_DECODE_REFERENCE_ONLY","features":[352]},{"name":"D3D12_RESOURCE_FLAG_VIDEO_ENCODE_REFERENCE_ONLY","features":[352]},{"name":"D3D12_RESOURCE_HEAP_TIER","features":[352]},{"name":"D3D12_RESOURCE_HEAP_TIER_1","features":[352]},{"name":"D3D12_RESOURCE_HEAP_TIER_2","features":[352]},{"name":"D3D12_RESOURCE_STATES","features":[352]},{"name":"D3D12_RESOURCE_STATE_ALL_SHADER_RESOURCE","features":[352]},{"name":"D3D12_RESOURCE_STATE_COMMON","features":[352]},{"name":"D3D12_RESOURCE_STATE_COPY_DEST","features":[352]},{"name":"D3D12_RESOURCE_STATE_COPY_SOURCE","features":[352]},{"name":"D3D12_RESOURCE_STATE_DEPTH_READ","features":[352]},{"name":"D3D12_RESOURCE_STATE_DEPTH_WRITE","features":[352]},{"name":"D3D12_RESOURCE_STATE_GENERIC_READ","features":[352]},{"name":"D3D12_RESOURCE_STATE_INDEX_BUFFER","features":[352]},{"name":"D3D12_RESOURCE_STATE_INDIRECT_ARGUMENT","features":[352]},{"name":"D3D12_RESOURCE_STATE_NON_PIXEL_SHADER_RESOURCE","features":[352]},{"name":"D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE","features":[352]},{"name":"D3D12_RESOURCE_STATE_PREDICATION","features":[352]},{"name":"D3D12_RESOURCE_STATE_PRESENT","features":[352]},{"name":"D3D12_RESOURCE_STATE_RAYTRACING_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_RESOURCE_STATE_RENDER_TARGET","features":[352]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_100000","features":[352]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_4000","features":[352]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_40000000","features":[352]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_8000","features":[352]},{"name":"D3D12_RESOURCE_STATE_RESERVED_INTERNAL_80000000","features":[352]},{"name":"D3D12_RESOURCE_STATE_RESOLVE_DEST","features":[352]},{"name":"D3D12_RESOURCE_STATE_RESOLVE_SOURCE","features":[352]},{"name":"D3D12_RESOURCE_STATE_SHADING_RATE_SOURCE","features":[352]},{"name":"D3D12_RESOURCE_STATE_STREAM_OUT","features":[352]},{"name":"D3D12_RESOURCE_STATE_UNORDERED_ACCESS","features":[352]},{"name":"D3D12_RESOURCE_STATE_VERTEX_AND_CONSTANT_BUFFER","features":[352]},{"name":"D3D12_RESOURCE_STATE_VIDEO_DECODE_READ","features":[352]},{"name":"D3D12_RESOURCE_STATE_VIDEO_DECODE_WRITE","features":[352]},{"name":"D3D12_RESOURCE_STATE_VIDEO_ENCODE_READ","features":[352]},{"name":"D3D12_RESOURCE_STATE_VIDEO_ENCODE_WRITE","features":[352]},{"name":"D3D12_RESOURCE_STATE_VIDEO_PROCESS_READ","features":[352]},{"name":"D3D12_RESOURCE_STATE_VIDEO_PROCESS_WRITE","features":[352]},{"name":"D3D12_RESOURCE_TRANSITION_BARRIER","features":[352]},{"name":"D3D12_RESOURCE_UAV_BARRIER","features":[352]},{"name":"D3D12_RLDO_DETAIL","features":[352]},{"name":"D3D12_RLDO_FLAGS","features":[352]},{"name":"D3D12_RLDO_IGNORE_INTERNAL","features":[352]},{"name":"D3D12_RLDO_NONE","features":[352]},{"name":"D3D12_RLDO_SUMMARY","features":[352]},{"name":"D3D12_ROOT_CONSTANTS","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR1","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAGS","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_DATA_STATIC","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_DATA_STATIC_WHILE_SET_AT_EXECUTE","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_DATA_VOLATILE","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR_FLAG_NONE","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR_TABLE","features":[352]},{"name":"D3D12_ROOT_DESCRIPTOR_TABLE1","features":[352]},{"name":"D3D12_ROOT_PARAMETER","features":[352]},{"name":"D3D12_ROOT_PARAMETER1","features":[352]},{"name":"D3D12_ROOT_PARAMETER_TYPE","features":[352]},{"name":"D3D12_ROOT_PARAMETER_TYPE_32BIT_CONSTANTS","features":[352]},{"name":"D3D12_ROOT_PARAMETER_TYPE_CBV","features":[352]},{"name":"D3D12_ROOT_PARAMETER_TYPE_DESCRIPTOR_TABLE","features":[352]},{"name":"D3D12_ROOT_PARAMETER_TYPE_SRV","features":[352]},{"name":"D3D12_ROOT_PARAMETER_TYPE_UAV","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_DESC","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_DESC1","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_DESC2","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAGS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_ALLOW_INPUT_ASSEMBLER_INPUT_LAYOUT","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_ALLOW_STREAM_OUTPUT","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_CBV_SRV_UAV_HEAP_DIRECTLY_INDEXED","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_AMPLIFICATION_SHADER_ROOT_ACCESS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_DOMAIN_SHADER_ROOT_ACCESS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_GEOMETRY_SHADER_ROOT_ACCESS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_HULL_SHADER_ROOT_ACCESS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_MESH_SHADER_ROOT_ACCESS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_PIXEL_SHADER_ROOT_ACCESS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_DENY_VERTEX_SHADER_ROOT_ACCESS","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_LOCAL_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_NONE","features":[352]},{"name":"D3D12_ROOT_SIGNATURE_FLAG_SAMPLER_HEAP_DIRECTLY_INDEXED","features":[352]},{"name":"D3D12_RS_SET_SHADING_RATE_COMBINER_COUNT","features":[352]},{"name":"D3D12_RTV_DIMENSION","features":[352]},{"name":"D3D12_RTV_DIMENSION_BUFFER","features":[352]},{"name":"D3D12_RTV_DIMENSION_TEXTURE1D","features":[352]},{"name":"D3D12_RTV_DIMENSION_TEXTURE1DARRAY","features":[352]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2D","features":[352]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2DARRAY","features":[352]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2DMS","features":[352]},{"name":"D3D12_RTV_DIMENSION_TEXTURE2DMSARRAY","features":[352]},{"name":"D3D12_RTV_DIMENSION_TEXTURE3D","features":[352]},{"name":"D3D12_RTV_DIMENSION_UNKNOWN","features":[352]},{"name":"D3D12_RT_FORMAT_ARRAY","features":[352,393]},{"name":"D3D12_SAMPLER_DESC","features":[352]},{"name":"D3D12_SAMPLER_DESC2","features":[352]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER","features":[352]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER_0_9","features":[352]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER_1_0","features":[352]},{"name":"D3D12_SAMPLER_FEEDBACK_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_SAMPLER_FLAGS","features":[352]},{"name":"D3D12_SAMPLER_FLAG_NONE","features":[352]},{"name":"D3D12_SAMPLER_FLAG_NON_NORMALIZED_COORDINATES","features":[352]},{"name":"D3D12_SAMPLER_FLAG_UINT_BORDER_COLOR","features":[352]},{"name":"D3D12_SAMPLE_MASK","features":[352]},{"name":"D3D12_SAMPLE_POSITION","features":[352]},{"name":"D3D12_SDK_VERSION","features":[352]},{"name":"D3D12_SERIALIZED_DATA_DRIVER_MATCHING_IDENTIFIER","features":[352]},{"name":"D3D12_SERIALIZED_DATA_RAYTRACING_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_SERIALIZED_DATA_TYPE","features":[352]},{"name":"D3D12_SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER","features":[352]},{"name":"D3D12_SET_GENERIC_PIPELINE_DESC","features":[352]},{"name":"D3D12_SET_PROGRAM_DESC","features":[352]},{"name":"D3D12_SET_RAYTRACING_PIPELINE_DESC","features":[352]},{"name":"D3D12_SET_WORK_GRAPH_DESC","features":[352]},{"name":"D3D12_SET_WORK_GRAPH_FLAGS","features":[352]},{"name":"D3D12_SET_WORK_GRAPH_FLAG_INITIALIZE","features":[352]},{"name":"D3D12_SET_WORK_GRAPH_FLAG_NONE","features":[352]},{"name":"D3D12_SHADER_BUFFER_DESC","features":[398,352]},{"name":"D3D12_SHADER_BYTECODE","features":[352]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAGS","features":[352]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAG_CLEAR","features":[352]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAG_DISABLE","features":[352]},{"name":"D3D12_SHADER_CACHE_CONTROL_FLAG_ENABLE","features":[352]},{"name":"D3D12_SHADER_CACHE_FLAGS","features":[352]},{"name":"D3D12_SHADER_CACHE_FLAG_DRIVER_VERSIONED","features":[352]},{"name":"D3D12_SHADER_CACHE_FLAG_NONE","features":[352]},{"name":"D3D12_SHADER_CACHE_FLAG_USE_WORKING_DIR","features":[352]},{"name":"D3D12_SHADER_CACHE_KIND_FLAGS","features":[352]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_APPLICATION_MANAGED","features":[352]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_D3D_CACHE_FOR_DRIVER","features":[352]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_D3D_CONVERSIONS","features":[352]},{"name":"D3D12_SHADER_CACHE_KIND_FLAG_IMPLICIT_DRIVER_MANAGED","features":[352]},{"name":"D3D12_SHADER_CACHE_MODE","features":[352]},{"name":"D3D12_SHADER_CACHE_MODE_DISK","features":[352]},{"name":"D3D12_SHADER_CACHE_MODE_MEMORY","features":[352]},{"name":"D3D12_SHADER_CACHE_SESSION_DESC","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_AUTOMATIC_DISK_CACHE","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_AUTOMATIC_INPROC_CACHE","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_DRIVER_MANAGED_CACHE","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_FLAGS","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_LIBRARY","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_NONE","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_SHADER_CONTROL_CLEAR","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_SHADER_SESSION_DELETE","features":[352]},{"name":"D3D12_SHADER_CACHE_SUPPORT_SINGLE_PSO","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_ALWAYS_SET_BIT_AVOIDING_ZEROMEM_MISTAKES","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FORCE_VALUE_0","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FORCE_VALUE_1","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_0","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_1","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_2","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_FROM_MEMORY_COMPONENT_3","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_MASK","features":[352]},{"name":"D3D12_SHADER_COMPONENT_MAPPING_SHIFT","features":[352]},{"name":"D3D12_SHADER_DESC","features":[398,352]},{"name":"D3D12_SHADER_IDENTIFIER_SIZE_IN_BYTES","features":[352]},{"name":"D3D12_SHADER_INPUT_BIND_DESC","features":[398,352]},{"name":"D3D12_SHADER_MAJOR_VERSION","features":[352]},{"name":"D3D12_SHADER_MAX_INSTANCES","features":[352]},{"name":"D3D12_SHADER_MAX_INTERFACES","features":[352]},{"name":"D3D12_SHADER_MAX_INTERFACE_CALL_SITES","features":[352]},{"name":"D3D12_SHADER_MAX_TYPES","features":[352]},{"name":"D3D12_SHADER_MINOR_VERSION","features":[352]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT","features":[352]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT_10_BIT","features":[352]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT_16_BIT","features":[352]},{"name":"D3D12_SHADER_MIN_PRECISION_SUPPORT_NONE","features":[352]},{"name":"D3D12_SHADER_NODE","features":[305,352]},{"name":"D3D12_SHADER_RESOURCE_VIEW_DESC","features":[352,393]},{"name":"D3D12_SHADER_TYPE_DESC","features":[398,352]},{"name":"D3D12_SHADER_VARIABLE_DESC","features":[352]},{"name":"D3D12_SHADER_VERSION_TYPE","features":[352]},{"name":"D3D12_SHADER_VISIBILITY","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_ALL","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_AMPLIFICATION","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_DOMAIN","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_GEOMETRY","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_HULL","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_MESH","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_PIXEL","features":[352]},{"name":"D3D12_SHADER_VISIBILITY_VERTEX","features":[352]},{"name":"D3D12_SHADING_RATE","features":[352]},{"name":"D3D12_SHADING_RATE_1X1","features":[352]},{"name":"D3D12_SHADING_RATE_1X2","features":[352]},{"name":"D3D12_SHADING_RATE_2X1","features":[352]},{"name":"D3D12_SHADING_RATE_2X2","features":[352]},{"name":"D3D12_SHADING_RATE_2X4","features":[352]},{"name":"D3D12_SHADING_RATE_4X2","features":[352]},{"name":"D3D12_SHADING_RATE_4X4","features":[352]},{"name":"D3D12_SHADING_RATE_COMBINER","features":[352]},{"name":"D3D12_SHADING_RATE_COMBINER_MAX","features":[352]},{"name":"D3D12_SHADING_RATE_COMBINER_MIN","features":[352]},{"name":"D3D12_SHADING_RATE_COMBINER_OVERRIDE","features":[352]},{"name":"D3D12_SHADING_RATE_COMBINER_PASSTHROUGH","features":[352]},{"name":"D3D12_SHADING_RATE_COMBINER_SUM","features":[352]},{"name":"D3D12_SHADING_RATE_VALID_MASK","features":[352]},{"name":"D3D12_SHADING_RATE_X_AXIS_SHIFT","features":[352]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER","features":[352]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_0","features":[352]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_1","features":[352]},{"name":"D3D12_SHARED_RESOURCE_COMPATIBILITY_TIER_2","features":[352]},{"name":"D3D12_SHIFT_INSTRUCTION_PAD_VALUE","features":[352]},{"name":"D3D12_SHIFT_INSTRUCTION_SHIFT_VALUE_BIT_COUNT","features":[352]},{"name":"D3D12_SHVER_AMPLIFICATION_SHADER","features":[352]},{"name":"D3D12_SHVER_ANY_HIT_SHADER","features":[352]},{"name":"D3D12_SHVER_CALLABLE_SHADER","features":[352]},{"name":"D3D12_SHVER_CLOSEST_HIT_SHADER","features":[352]},{"name":"D3D12_SHVER_COMPUTE_SHADER","features":[352]},{"name":"D3D12_SHVER_DOMAIN_SHADER","features":[352]},{"name":"D3D12_SHVER_GEOMETRY_SHADER","features":[352]},{"name":"D3D12_SHVER_HULL_SHADER","features":[352]},{"name":"D3D12_SHVER_INTERSECTION_SHADER","features":[352]},{"name":"D3D12_SHVER_LIBRARY","features":[352]},{"name":"D3D12_SHVER_MESH_SHADER","features":[352]},{"name":"D3D12_SHVER_MISS_SHADER","features":[352]},{"name":"D3D12_SHVER_NODE_SHADER","features":[352]},{"name":"D3D12_SHVER_PIXEL_SHADER","features":[352]},{"name":"D3D12_SHVER_RAY_GENERATION_SHADER","features":[352]},{"name":"D3D12_SHVER_RESERVED0","features":[352]},{"name":"D3D12_SHVER_VERTEX_SHADER","features":[352]},{"name":"D3D12_SIGNATURE_PARAMETER_DESC","features":[398,352]},{"name":"D3D12_SIMULTANEOUS_RENDER_TARGET_COUNT","features":[352]},{"name":"D3D12_SMALL_MSAA_RESOURCE_PLACEMENT_ALIGNMENT","features":[352]},{"name":"D3D12_SMALL_RESOURCE_PLACEMENT_ALIGNMENT","features":[352]},{"name":"D3D12_SO_BUFFER_MAX_STRIDE_IN_BYTES","features":[352]},{"name":"D3D12_SO_BUFFER_MAX_WRITE_WINDOW_IN_BYTES","features":[352]},{"name":"D3D12_SO_BUFFER_SLOT_COUNT","features":[352]},{"name":"D3D12_SO_DDI_REGISTER_INDEX_DENOTING_GAP","features":[352]},{"name":"D3D12_SO_DECLARATION_ENTRY","features":[352]},{"name":"D3D12_SO_NO_RASTERIZED_STREAM","features":[352]},{"name":"D3D12_SO_OUTPUT_COMPONENT_COUNT","features":[352]},{"name":"D3D12_SO_STREAM_COUNT","features":[352]},{"name":"D3D12_SPEC_DATE_DAY","features":[352]},{"name":"D3D12_SPEC_DATE_MONTH","features":[352]},{"name":"D3D12_SPEC_DATE_YEAR","features":[352]},{"name":"D3D12_SPEC_VERSION","features":[352]},{"name":"D3D12_SRGB_GAMMA","features":[352]},{"name":"D3D12_SRGB_TO_FLOAT_DENOMINATOR_1","features":[352]},{"name":"D3D12_SRGB_TO_FLOAT_DENOMINATOR_2","features":[352]},{"name":"D3D12_SRGB_TO_FLOAT_EXPONENT","features":[352]},{"name":"D3D12_SRGB_TO_FLOAT_OFFSET","features":[352]},{"name":"D3D12_SRGB_TO_FLOAT_THRESHOLD","features":[352]},{"name":"D3D12_SRGB_TO_FLOAT_TOLERANCE_IN_ULP","features":[352]},{"name":"D3D12_SRV_DIMENSION","features":[352]},{"name":"D3D12_SRV_DIMENSION_BUFFER","features":[352]},{"name":"D3D12_SRV_DIMENSION_RAYTRACING_ACCELERATION_STRUCTURE","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURE1D","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURE1DARRAY","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2D","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2DARRAY","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2DMS","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURE2DMSARRAY","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURE3D","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURECUBE","features":[352]},{"name":"D3D12_SRV_DIMENSION_TEXTURECUBEARRAY","features":[352]},{"name":"D3D12_SRV_DIMENSION_UNKNOWN","features":[352]},{"name":"D3D12_STANDARD_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_STANDARD_COMPONENT_BIT_COUNT_DOUBLED","features":[352]},{"name":"D3D12_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE","features":[352]},{"name":"D3D12_STANDARD_MULTISAMPLE_PATTERN","features":[352]},{"name":"D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS","features":[352]},{"name":"D3D12_STANDARD_PIXEL_COMPONENT_COUNT","features":[352]},{"name":"D3D12_STANDARD_PIXEL_ELEMENT_COUNT","features":[352]},{"name":"D3D12_STANDARD_VECTOR_SIZE","features":[352]},{"name":"D3D12_STANDARD_VERTEX_ELEMENT_COUNT","features":[352]},{"name":"D3D12_STANDARD_VERTEX_TOTAL_COMPONENT_COUNT","features":[352]},{"name":"D3D12_STATE_OBJECT_CONFIG","features":[352]},{"name":"D3D12_STATE_OBJECT_DESC","features":[352]},{"name":"D3D12_STATE_OBJECT_FLAGS","features":[352]},{"name":"D3D12_STATE_OBJECT_FLAG_ALLOW_EXTERNAL_DEPENDENCIES_ON_LOCAL_DEFINITIONS","features":[352]},{"name":"D3D12_STATE_OBJECT_FLAG_ALLOW_LOCAL_DEPENDENCIES_ON_EXTERNAL_DEFINITIONS","features":[352]},{"name":"D3D12_STATE_OBJECT_FLAG_ALLOW_STATE_OBJECT_ADDITIONS","features":[352]},{"name":"D3D12_STATE_OBJECT_FLAG_NONE","features":[352]},{"name":"D3D12_STATE_OBJECT_TYPE","features":[352]},{"name":"D3D12_STATE_OBJECT_TYPE_COLLECTION","features":[352]},{"name":"D3D12_STATE_OBJECT_TYPE_EXECUTABLE","features":[352]},{"name":"D3D12_STATE_OBJECT_TYPE_RAYTRACING_PIPELINE","features":[352]},{"name":"D3D12_STATE_SUBOBJECT","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_BLEND","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL1","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL2","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL_FORMAT","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DXIL_LIBRARY","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_EXISTING_COLLECTION","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_FLAGS","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_GENERIC_PROGRAM","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_GLOBAL_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_HIT_GROUP","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_IB_STRIP_CUT_VALUE","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_INPUT_LAYOUT","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_LOCAL_ROOT_SIGNATURE","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_MAX_VALID","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_NODE_MASK","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_PRIMITIVE_TOPOLOGY","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RASTERIZER","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG1","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_SHADER_CONFIG","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_RENDER_TARGET_FORMATS","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_SAMPLE_DESC","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_SAMPLE_MASK","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_STATE_OBJECT_CONFIG","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_STREAM_OUTPUT","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_VIEW_INSTANCING","features":[352]},{"name":"D3D12_STATE_SUBOBJECT_TYPE_WORK_GRAPH","features":[352]},{"name":"D3D12_STATIC_BORDER_COLOR","features":[352]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_BLACK","features":[352]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_BLACK_UINT","features":[352]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_WHITE","features":[352]},{"name":"D3D12_STATIC_BORDER_COLOR_OPAQUE_WHITE_UINT","features":[352]},{"name":"D3D12_STATIC_BORDER_COLOR_TRANSPARENT_BLACK","features":[352]},{"name":"D3D12_STATIC_SAMPLER_DESC","features":[352]},{"name":"D3D12_STATIC_SAMPLER_DESC1","features":[352]},{"name":"D3D12_STENCIL_OP","features":[352]},{"name":"D3D12_STENCIL_OP_DECR","features":[352]},{"name":"D3D12_STENCIL_OP_DECR_SAT","features":[352]},{"name":"D3D12_STENCIL_OP_INCR","features":[352]},{"name":"D3D12_STENCIL_OP_INCR_SAT","features":[352]},{"name":"D3D12_STENCIL_OP_INVERT","features":[352]},{"name":"D3D12_STENCIL_OP_KEEP","features":[352]},{"name":"D3D12_STENCIL_OP_REPLACE","features":[352]},{"name":"D3D12_STENCIL_OP_ZERO","features":[352]},{"name":"D3D12_STREAM_OUTPUT_BUFFER_VIEW","features":[352]},{"name":"D3D12_STREAM_OUTPUT_DESC","features":[352]},{"name":"D3D12_SUBOBJECT_TO_EXPORTS_ASSOCIATION","features":[352]},{"name":"D3D12_SUBPIXEL_FRACTIONAL_BIT_COUNT","features":[352]},{"name":"D3D12_SUBRESOURCE_DATA","features":[352]},{"name":"D3D12_SUBRESOURCE_FOOTPRINT","features":[352,393]},{"name":"D3D12_SUBRESOURCE_INFO","features":[352]},{"name":"D3D12_SUBRESOURCE_RANGE_UINT64","features":[352]},{"name":"D3D12_SUBRESOURCE_TILING","features":[352]},{"name":"D3D12_SUBTEXEL_FRACTIONAL_BIT_COUNT","features":[352]},{"name":"D3D12_SYSTEM_RESERVED_REGISTER_SPACE_VALUES_END","features":[352]},{"name":"D3D12_SYSTEM_RESERVED_REGISTER_SPACE_VALUES_START","features":[352]},{"name":"D3D12_TESSELLATOR_MAX_EVEN_TESSELLATION_FACTOR","features":[352]},{"name":"D3D12_TESSELLATOR_MAX_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[352]},{"name":"D3D12_TESSELLATOR_MAX_ODD_TESSELLATION_FACTOR","features":[352]},{"name":"D3D12_TESSELLATOR_MAX_TESSELLATION_FACTOR","features":[352]},{"name":"D3D12_TESSELLATOR_MIN_EVEN_TESSELLATION_FACTOR","features":[352]},{"name":"D3D12_TESSELLATOR_MIN_ISOLINE_DENSITY_TESSELLATION_FACTOR","features":[352]},{"name":"D3D12_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR","features":[352]},{"name":"D3D12_TEX1D_ARRAY_DSV","features":[352]},{"name":"D3D12_TEX1D_ARRAY_RTV","features":[352]},{"name":"D3D12_TEX1D_ARRAY_SRV","features":[352]},{"name":"D3D12_TEX1D_ARRAY_UAV","features":[352]},{"name":"D3D12_TEX1D_DSV","features":[352]},{"name":"D3D12_TEX1D_RTV","features":[352]},{"name":"D3D12_TEX1D_SRV","features":[352]},{"name":"D3D12_TEX1D_UAV","features":[352]},{"name":"D3D12_TEX2DMS_ARRAY_DSV","features":[352]},{"name":"D3D12_TEX2DMS_ARRAY_RTV","features":[352]},{"name":"D3D12_TEX2DMS_ARRAY_SRV","features":[352]},{"name":"D3D12_TEX2DMS_ARRAY_UAV","features":[352]},{"name":"D3D12_TEX2DMS_DSV","features":[352]},{"name":"D3D12_TEX2DMS_RTV","features":[352]},{"name":"D3D12_TEX2DMS_SRV","features":[352]},{"name":"D3D12_TEX2DMS_UAV","features":[352]},{"name":"D3D12_TEX2D_ARRAY_DSV","features":[352]},{"name":"D3D12_TEX2D_ARRAY_RTV","features":[352]},{"name":"D3D12_TEX2D_ARRAY_SRV","features":[352]},{"name":"D3D12_TEX2D_ARRAY_UAV","features":[352]},{"name":"D3D12_TEX2D_DSV","features":[352]},{"name":"D3D12_TEX2D_RTV","features":[352]},{"name":"D3D12_TEX2D_SRV","features":[352]},{"name":"D3D12_TEX2D_UAV","features":[352]},{"name":"D3D12_TEX3D_RTV","features":[352]},{"name":"D3D12_TEX3D_SRV","features":[352]},{"name":"D3D12_TEX3D_UAV","features":[352]},{"name":"D3D12_TEXCUBE_ARRAY_SRV","features":[352]},{"name":"D3D12_TEXCUBE_SRV","features":[352]},{"name":"D3D12_TEXEL_ADDRESS_RANGE_BIT_COUNT","features":[352]},{"name":"D3D12_TEXTURE_ADDRESS_MODE","features":[352]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_BORDER","features":[352]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_CLAMP","features":[352]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_MIRROR","features":[352]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_MIRROR_ONCE","features":[352]},{"name":"D3D12_TEXTURE_ADDRESS_MODE_WRAP","features":[352]},{"name":"D3D12_TEXTURE_BARRIER","features":[352]},{"name":"D3D12_TEXTURE_BARRIER_FLAGS","features":[352]},{"name":"D3D12_TEXTURE_BARRIER_FLAG_DISCARD","features":[352]},{"name":"D3D12_TEXTURE_BARRIER_FLAG_NONE","features":[352]},{"name":"D3D12_TEXTURE_COPY_LOCATION","features":[352,393]},{"name":"D3D12_TEXTURE_COPY_TYPE","features":[352]},{"name":"D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT","features":[352]},{"name":"D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX","features":[352]},{"name":"D3D12_TEXTURE_DATA_PITCH_ALIGNMENT","features":[352]},{"name":"D3D12_TEXTURE_DATA_PLACEMENT_ALIGNMENT","features":[352]},{"name":"D3D12_TEXTURE_LAYOUT","features":[352]},{"name":"D3D12_TEXTURE_LAYOUT_64KB_STANDARD_SWIZZLE","features":[352]},{"name":"D3D12_TEXTURE_LAYOUT_64KB_UNDEFINED_SWIZZLE","features":[352]},{"name":"D3D12_TEXTURE_LAYOUT_ROW_MAJOR","features":[352]},{"name":"D3D12_TEXTURE_LAYOUT_UNKNOWN","features":[352]},{"name":"D3D12_THREAD_LAUNCH_OVERRIDES","features":[305,352]},{"name":"D3D12_TILED_RESOURCES_TIER","features":[352]},{"name":"D3D12_TILED_RESOURCES_TIER_1","features":[352]},{"name":"D3D12_TILED_RESOURCES_TIER_2","features":[352]},{"name":"D3D12_TILED_RESOURCES_TIER_3","features":[352]},{"name":"D3D12_TILED_RESOURCES_TIER_4","features":[352]},{"name":"D3D12_TILED_RESOURCES_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_TILED_RESOURCE_COORDINATE","features":[352]},{"name":"D3D12_TILED_RESOURCE_TILE_SIZE_IN_BYTES","features":[352]},{"name":"D3D12_TILE_COPY_FLAGS","features":[352]},{"name":"D3D12_TILE_COPY_FLAG_LINEAR_BUFFER_TO_SWIZZLED_TILED_RESOURCE","features":[352]},{"name":"D3D12_TILE_COPY_FLAG_NONE","features":[352]},{"name":"D3D12_TILE_COPY_FLAG_NO_HAZARD","features":[352]},{"name":"D3D12_TILE_COPY_FLAG_SWIZZLED_TILED_RESOURCE_TO_LINEAR_BUFFER","features":[352]},{"name":"D3D12_TILE_MAPPING_FLAGS","features":[352]},{"name":"D3D12_TILE_MAPPING_FLAG_NONE","features":[352]},{"name":"D3D12_TILE_MAPPING_FLAG_NO_HAZARD","features":[352]},{"name":"D3D12_TILE_RANGE_FLAGS","features":[352]},{"name":"D3D12_TILE_RANGE_FLAG_NONE","features":[352]},{"name":"D3D12_TILE_RANGE_FLAG_NULL","features":[352]},{"name":"D3D12_TILE_RANGE_FLAG_REUSE_SINGLE_TILE","features":[352]},{"name":"D3D12_TILE_RANGE_FLAG_SKIP","features":[352]},{"name":"D3D12_TILE_REGION_SIZE","features":[305,352]},{"name":"D3D12_TILE_SHAPE","features":[352]},{"name":"D3D12_TRACKED_WORKLOAD_MAX_INSTANCES","features":[352]},{"name":"D3D12_TRI_STATE","features":[352]},{"name":"D3D12_TRI_STATE_FALSE","features":[352]},{"name":"D3D12_TRI_STATE_TRUE","features":[352]},{"name":"D3D12_TRI_STATE_UNKNOWN","features":[352]},{"name":"D3D12_UAV_COUNTER_PLACEMENT_ALIGNMENT","features":[352]},{"name":"D3D12_UAV_DIMENSION","features":[352]},{"name":"D3D12_UAV_DIMENSION_BUFFER","features":[352]},{"name":"D3D12_UAV_DIMENSION_TEXTURE1D","features":[352]},{"name":"D3D12_UAV_DIMENSION_TEXTURE1DARRAY","features":[352]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2D","features":[352]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2DARRAY","features":[352]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2DMS","features":[352]},{"name":"D3D12_UAV_DIMENSION_TEXTURE2DMSARRAY","features":[352]},{"name":"D3D12_UAV_DIMENSION_TEXTURE3D","features":[352]},{"name":"D3D12_UAV_DIMENSION_UNKNOWN","features":[352]},{"name":"D3D12_UAV_SLOT_COUNT","features":[352]},{"name":"D3D12_UNBOUND_MEMORY_ACCESS_RESULT","features":[352]},{"name":"D3D12_UNORDERED_ACCESS_VIEW_DESC","features":[352,393]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER","features":[352]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER_1","features":[352]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER_2","features":[352]},{"name":"D3D12_VARIABLE_SHADING_RATE_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_VERSIONED_DEVICE_REMOVED_EXTENDED_DATA","features":[352]},{"name":"D3D12_VERSIONED_ROOT_SIGNATURE_DESC","features":[352]},{"name":"D3D12_VERTEX_BUFFER_VIEW","features":[352]},{"name":"D3D12_VIDEO_DECODE_MAX_ARGUMENTS","features":[352]},{"name":"D3D12_VIDEO_DECODE_MAX_HISTOGRAM_COMPONENTS","features":[352]},{"name":"D3D12_VIDEO_DECODE_MIN_BITSTREAM_OFFSET_ALIGNMENT","features":[352]},{"name":"D3D12_VIDEO_DECODE_MIN_HISTOGRAM_OFFSET_ALIGNMENT","features":[352]},{"name":"D3D12_VIDEO_DECODE_STATUS_MACROBLOCKS_AFFECTED_UNKNOWN","features":[352]},{"name":"D3D12_VIDEO_ENCODER_AV1_INVALID_DPB_RESOURCE_INDEX","features":[352]},{"name":"D3D12_VIDEO_ENCODER_AV1_MAX_TILE_COLS","features":[352]},{"name":"D3D12_VIDEO_ENCODER_AV1_MAX_TILE_ROWS","features":[352]},{"name":"D3D12_VIDEO_ENCODER_AV1_SUPERRES_DENOM_MIN","features":[352]},{"name":"D3D12_VIDEO_ENCODER_AV1_SUPERRES_NUM","features":[352]},{"name":"D3D12_VIDEO_PROCESS_MAX_FILTERS","features":[352]},{"name":"D3D12_VIDEO_PROCESS_STEREO_VIEWS","features":[352]},{"name":"D3D12_VIEWPORT","features":[352]},{"name":"D3D12_VIEWPORT_AND_SCISSORRECT_MAX_INDEX","features":[352]},{"name":"D3D12_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE","features":[352]},{"name":"D3D12_VIEWPORT_BOUNDS_MAX","features":[352]},{"name":"D3D12_VIEWPORT_BOUNDS_MIN","features":[352]},{"name":"D3D12_VIEW_INSTANCE_LOCATION","features":[352]},{"name":"D3D12_VIEW_INSTANCING_DESC","features":[352]},{"name":"D3D12_VIEW_INSTANCING_FLAGS","features":[352]},{"name":"D3D12_VIEW_INSTANCING_FLAG_ENABLE_VIEW_INSTANCE_MASKING","features":[352]},{"name":"D3D12_VIEW_INSTANCING_FLAG_NONE","features":[352]},{"name":"D3D12_VIEW_INSTANCING_TIER","features":[352]},{"name":"D3D12_VIEW_INSTANCING_TIER_1","features":[352]},{"name":"D3D12_VIEW_INSTANCING_TIER_2","features":[352]},{"name":"D3D12_VIEW_INSTANCING_TIER_3","features":[352]},{"name":"D3D12_VIEW_INSTANCING_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_VS_INPUT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_VS_INPUT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_VS_INPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_VS_INPUT_REGISTER_READS_PER_INST","features":[352]},{"name":"D3D12_VS_INPUT_REGISTER_READ_PORTS","features":[352]},{"name":"D3D12_VS_OUTPUT_REGISTER_COMPONENTS","features":[352]},{"name":"D3D12_VS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT","features":[352]},{"name":"D3D12_VS_OUTPUT_REGISTER_COUNT","features":[352]},{"name":"D3D12_WAVE_MMA_TIER","features":[352]},{"name":"D3D12_WAVE_MMA_TIER_1_0","features":[352]},{"name":"D3D12_WAVE_MMA_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT","features":[352]},{"name":"D3D12_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP","features":[352]},{"name":"D3D12_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP","features":[352]},{"name":"D3D12_WORK_GRAPHS_BACKING_MEMORY_ALIGNMENT_IN_BYTES","features":[352]},{"name":"D3D12_WORK_GRAPHS_MAX_NODE_DEPTH","features":[352]},{"name":"D3D12_WORK_GRAPHS_TIER","features":[352]},{"name":"D3D12_WORK_GRAPHS_TIER_1_0","features":[352]},{"name":"D3D12_WORK_GRAPHS_TIER_NOT_SUPPORTED","features":[352]},{"name":"D3D12_WORK_GRAPH_DESC","features":[305,352]},{"name":"D3D12_WORK_GRAPH_FLAGS","features":[352]},{"name":"D3D12_WORK_GRAPH_FLAG_INCLUDE_ALL_AVAILABLE_NODES","features":[352]},{"name":"D3D12_WORK_GRAPH_FLAG_NONE","features":[352]},{"name":"D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS","features":[352]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE","features":[352]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE_DEFAULT","features":[352]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_IN","features":[352]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_OUT","features":[352]},{"name":"D3D12_WRITEBUFFERIMMEDIATE_PARAMETER","features":[352]},{"name":"D3D_HIGHEST_SHADER_MODEL","features":[352]},{"name":"D3D_ROOT_SIGNATURE_VERSION","features":[352]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1","features":[352]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1_0","features":[352]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1_1","features":[352]},{"name":"D3D_ROOT_SIGNATURE_VERSION_1_2","features":[352]},{"name":"D3D_SHADER_MODEL","features":[352]},{"name":"D3D_SHADER_MODEL_5_1","features":[352]},{"name":"D3D_SHADER_MODEL_6_0","features":[352]},{"name":"D3D_SHADER_MODEL_6_1","features":[352]},{"name":"D3D_SHADER_MODEL_6_2","features":[352]},{"name":"D3D_SHADER_MODEL_6_3","features":[352]},{"name":"D3D_SHADER_MODEL_6_4","features":[352]},{"name":"D3D_SHADER_MODEL_6_5","features":[352]},{"name":"D3D_SHADER_MODEL_6_6","features":[352]},{"name":"D3D_SHADER_MODEL_6_7","features":[352]},{"name":"D3D_SHADER_MODEL_6_8","features":[352]},{"name":"D3D_SHADER_MODEL_6_9","features":[352]},{"name":"D3D_SHADER_MODEL_NONE","features":[352]},{"name":"D3D_SHADER_REQUIRES_ADVANCED_TEXTURE_OPS","features":[352]},{"name":"D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_DESCRIPTOR_HEAP_RESOURCE","features":[352]},{"name":"D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_GROUP_SHARED","features":[352]},{"name":"D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_TYPED_RESOURCE","features":[352]},{"name":"D3D_SHADER_REQUIRES_BARYCENTRICS","features":[352]},{"name":"D3D_SHADER_REQUIRES_DERIVATIVES_IN_MESH_AND_AMPLIFICATION_SHADERS","features":[352]},{"name":"D3D_SHADER_REQUIRES_INNER_COVERAGE","features":[352]},{"name":"D3D_SHADER_REQUIRES_INT64_OPS","features":[352]},{"name":"D3D_SHADER_REQUIRES_NATIVE_16BIT_OPS","features":[352]},{"name":"D3D_SHADER_REQUIRES_RAYTRACING_TIER_1_1","features":[352]},{"name":"D3D_SHADER_REQUIRES_RESOURCE_DESCRIPTOR_HEAP_INDEXING","features":[352]},{"name":"D3D_SHADER_REQUIRES_ROVS","features":[352]},{"name":"D3D_SHADER_REQUIRES_SAMPLER_DESCRIPTOR_HEAP_INDEXING","features":[352]},{"name":"D3D_SHADER_REQUIRES_SAMPLER_FEEDBACK","features":[352]},{"name":"D3D_SHADER_REQUIRES_SAMPLE_CMP_GRADIENT_OR_BIAS","features":[352]},{"name":"D3D_SHADER_REQUIRES_SHADING_RATE","features":[352]},{"name":"D3D_SHADER_REQUIRES_STENCIL_REF","features":[352]},{"name":"D3D_SHADER_REQUIRES_TYPED_UAV_LOAD_ADDITIONAL_FORMATS","features":[352]},{"name":"D3D_SHADER_REQUIRES_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDING_RASTERIZER","features":[352]},{"name":"D3D_SHADER_REQUIRES_VIEW_ID","features":[352]},{"name":"D3D_SHADER_REQUIRES_WAVE_MMA","features":[352]},{"name":"D3D_SHADER_REQUIRES_WAVE_OPS","features":[352]},{"name":"D3D_SHADER_REQUIRES_WRITEABLE_MSAA_TEXTURES","features":[352]},{"name":"DXGI_DEBUG_D3D12","features":[352]},{"name":"ID3D12CommandAllocator","features":[352]},{"name":"ID3D12CommandList","features":[352]},{"name":"ID3D12CommandQueue","features":[352]},{"name":"ID3D12CommandSignature","features":[352]},{"name":"ID3D12Debug","features":[352]},{"name":"ID3D12Debug1","features":[352]},{"name":"ID3D12Debug2","features":[352]},{"name":"ID3D12Debug3","features":[352]},{"name":"ID3D12Debug4","features":[352]},{"name":"ID3D12Debug5","features":[352]},{"name":"ID3D12Debug6","features":[352]},{"name":"ID3D12DebugCommandList","features":[352]},{"name":"ID3D12DebugCommandList1","features":[352]},{"name":"ID3D12DebugCommandList2","features":[352]},{"name":"ID3D12DebugCommandList3","features":[352]},{"name":"ID3D12DebugCommandQueue","features":[352]},{"name":"ID3D12DebugCommandQueue1","features":[352]},{"name":"ID3D12DebugDevice","features":[352]},{"name":"ID3D12DebugDevice1","features":[352]},{"name":"ID3D12DebugDevice2","features":[352]},{"name":"ID3D12DescriptorHeap","features":[352]},{"name":"ID3D12Device","features":[352]},{"name":"ID3D12Device1","features":[352]},{"name":"ID3D12Device10","features":[352]},{"name":"ID3D12Device11","features":[352]},{"name":"ID3D12Device12","features":[352]},{"name":"ID3D12Device13","features":[352]},{"name":"ID3D12Device14","features":[352]},{"name":"ID3D12Device2","features":[352]},{"name":"ID3D12Device3","features":[352]},{"name":"ID3D12Device4","features":[352]},{"name":"ID3D12Device5","features":[352]},{"name":"ID3D12Device6","features":[352]},{"name":"ID3D12Device7","features":[352]},{"name":"ID3D12Device8","features":[352]},{"name":"ID3D12Device9","features":[352]},{"name":"ID3D12DeviceChild","features":[352]},{"name":"ID3D12DeviceConfiguration","features":[352]},{"name":"ID3D12DeviceConfiguration1","features":[352]},{"name":"ID3D12DeviceFactory","features":[352]},{"name":"ID3D12DeviceRemovedExtendedData","features":[352]},{"name":"ID3D12DeviceRemovedExtendedData1","features":[352]},{"name":"ID3D12DeviceRemovedExtendedData2","features":[352]},{"name":"ID3D12DeviceRemovedExtendedDataSettings","features":[352]},{"name":"ID3D12DeviceRemovedExtendedDataSettings1","features":[352]},{"name":"ID3D12DeviceRemovedExtendedDataSettings2","features":[352]},{"name":"ID3D12Fence","features":[352]},{"name":"ID3D12Fence1","features":[352]},{"name":"ID3D12FunctionParameterReflection","features":[352]},{"name":"ID3D12FunctionReflection","features":[352]},{"name":"ID3D12GBVDiagnostics","features":[352]},{"name":"ID3D12GraphicsCommandList","features":[352]},{"name":"ID3D12GraphicsCommandList1","features":[352]},{"name":"ID3D12GraphicsCommandList10","features":[352]},{"name":"ID3D12GraphicsCommandList2","features":[352]},{"name":"ID3D12GraphicsCommandList3","features":[352]},{"name":"ID3D12GraphicsCommandList4","features":[352]},{"name":"ID3D12GraphicsCommandList5","features":[352]},{"name":"ID3D12GraphicsCommandList6","features":[352]},{"name":"ID3D12GraphicsCommandList7","features":[352]},{"name":"ID3D12GraphicsCommandList8","features":[352]},{"name":"ID3D12GraphicsCommandList9","features":[352]},{"name":"ID3D12Heap","features":[352]},{"name":"ID3D12Heap1","features":[352]},{"name":"ID3D12InfoQueue","features":[352]},{"name":"ID3D12InfoQueue1","features":[352]},{"name":"ID3D12LibraryReflection","features":[352]},{"name":"ID3D12LifetimeOwner","features":[352]},{"name":"ID3D12LifetimeTracker","features":[352]},{"name":"ID3D12ManualWriteTrackingResource","features":[352]},{"name":"ID3D12MetaCommand","features":[352]},{"name":"ID3D12Object","features":[352]},{"name":"ID3D12Pageable","features":[352]},{"name":"ID3D12PipelineLibrary","features":[352]},{"name":"ID3D12PipelineLibrary1","features":[352]},{"name":"ID3D12PipelineState","features":[352]},{"name":"ID3D12ProtectedResourceSession","features":[352]},{"name":"ID3D12ProtectedResourceSession1","features":[352]},{"name":"ID3D12ProtectedSession","features":[352]},{"name":"ID3D12QueryHeap","features":[352]},{"name":"ID3D12Resource","features":[352]},{"name":"ID3D12Resource1","features":[352]},{"name":"ID3D12Resource2","features":[352]},{"name":"ID3D12RootSignature","features":[352]},{"name":"ID3D12RootSignatureDeserializer","features":[352]},{"name":"ID3D12SDKConfiguration","features":[352]},{"name":"ID3D12SDKConfiguration1","features":[352]},{"name":"ID3D12ShaderCacheSession","features":[352]},{"name":"ID3D12ShaderReflection","features":[352]},{"name":"ID3D12ShaderReflectionConstantBuffer","features":[352]},{"name":"ID3D12ShaderReflectionType","features":[352]},{"name":"ID3D12ShaderReflectionVariable","features":[352]},{"name":"ID3D12SharingContract","features":[352]},{"name":"ID3D12StateObject","features":[352]},{"name":"ID3D12StateObjectProperties","features":[352]},{"name":"ID3D12StateObjectProperties1","features":[352]},{"name":"ID3D12SwapChainAssistant","features":[352]},{"name":"ID3D12Tools","features":[352]},{"name":"ID3D12VersionedRootSignatureDeserializer","features":[352]},{"name":"ID3D12VirtualizationGuestDevice","features":[352]},{"name":"ID3D12WorkGraphProperties","features":[352]},{"name":"LUID_DEFINED","features":[352]},{"name":"NUM_D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODES","features":[352]},{"name":"PFN_D3D12_CREATE_DEVICE","features":[398,352]},{"name":"PFN_D3D12_CREATE_ROOT_SIGNATURE_DESERIALIZER","features":[352]},{"name":"PFN_D3D12_CREATE_VERSIONED_ROOT_SIGNATURE_DESERIALIZER","features":[352]},{"name":"PFN_D3D12_GET_DEBUG_INTERFACE","features":[352]},{"name":"PFN_D3D12_GET_INTERFACE","features":[352]},{"name":"PFN_D3D12_SERIALIZE_ROOT_SIGNATURE","features":[398,352]},{"name":"PFN_D3D12_SERIALIZE_VERSIONED_ROOT_SIGNATURE","features":[398,352]},{"name":"WKPDID_D3DAutoDebugObjectNameW","features":[352]}],"406":[{"name":"D3D9_RESOURCE_PRIORITY_HIGH","features":[314]},{"name":"D3D9_RESOURCE_PRIORITY_LOW","features":[314]},{"name":"D3D9_RESOURCE_PRIORITY_MAXIMUM","features":[314]},{"name":"D3D9_RESOURCE_PRIORITY_MINIMUM","features":[314]},{"name":"D3D9_RESOURCE_PRIORITY_NORMAL","features":[314]},{"name":"D3D9b_SDK_VERSION","features":[314]},{"name":"D3DADAPTER_DEFAULT","features":[314]},{"name":"D3DADAPTER_IDENTIFIER9","features":[314]},{"name":"D3DADAPTER_IDENTIFIER9","features":[314]},{"name":"D3DAES_CTR_IV","features":[314]},{"name":"D3DAES_CTR_IV","features":[314]},{"name":"D3DANTIALIASMODE","features":[314]},{"name":"D3DANTIALIAS_NONE","features":[314]},{"name":"D3DANTIALIAS_SORTDEPENDENT","features":[314]},{"name":"D3DANTIALIAS_SORTINDEPENDENT","features":[314]},{"name":"D3DAUTHENTICATEDCHANNELTYPE","features":[314]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURECRYPTOSESSION","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGUREINITIALIZE","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGUREPROTECTION","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURESHAREDRESOURCE","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGUREUNCOMPRESSEDENCRYPTION","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURE_INPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_CONFIGURE_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_D3D9","features":[314]},{"name":"D3DAUTHENTICATEDCHANNEL_DRIVER_HARDWARE","features":[314]},{"name":"D3DAUTHENTICATEDCHANNEL_DRIVER_SOFTWARE","features":[314]},{"name":"D3DAUTHENTICATEDCHANNEL_PROCESSIDENTIFIERTYPE","features":[314]},{"name":"D3DAUTHENTICATEDCHANNEL_PROTECTION_FLAGS","features":[314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYCHANNELTYPE_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_INPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYCRYPTOSESSION_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYDEVICEHANDLE_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUIDCOUNT_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_INPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYEVICTIONENCRYPTIONGUID_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYINFOBUSTYPE_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_INPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTIDCOUNT_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_INPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYOUTPUTID_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYPROTECTION_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESSCOUNT_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_INPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYRESTRICTEDSHAREDRESOURCEPROCESS_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYUNCOMPRESSEDENCRYPTIONLEVEL_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERYUNRESTRICTEDPROTECTEDSHAREDRESOURCECOUNT_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERY_INPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCHANNEL_QUERY_OUTPUT","features":[305,314]},{"name":"D3DAUTHENTICATEDCONFIGURE_CRYPTOSESSION","features":[314]},{"name":"D3DAUTHENTICATEDCONFIGURE_ENCRYPTIONWHENACCESSIBLE","features":[314]},{"name":"D3DAUTHENTICATEDCONFIGURE_INITIALIZE","features":[314]},{"name":"D3DAUTHENTICATEDCONFIGURE_PROTECTION","features":[314]},{"name":"D3DAUTHENTICATEDCONFIGURE_SHAREDRESOURCE","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_ACCESSIBILITYATTRIBUTES","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_CHANNELTYPE","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_CRYPTOSESSION","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_CURRENTENCRYPTIONWHENACCESSIBLE","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_DEVICEHANDLE","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_ENCRYPTIONWHENACCESSIBLEGUID","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_ENCRYPTIONWHENACCESSIBLEGUIDCOUNT","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_OUTPUTID","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_OUTPUTIDCOUNT","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_PROTECTION","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_RESTRICTEDSHAREDRESOURCEPROCESS","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_RESTRICTEDSHAREDRESOURCEPROCESSCOUNT","features":[314]},{"name":"D3DAUTHENTICATEDQUERY_UNRESTRICTEDPROTECTEDSHAREDRESOURCECOUNT","features":[314]},{"name":"D3DBACKBUFFER_TYPE","features":[314]},{"name":"D3DBACKBUFFER_TYPE_LEFT","features":[314]},{"name":"D3DBACKBUFFER_TYPE_MONO","features":[314]},{"name":"D3DBACKBUFFER_TYPE_RIGHT","features":[314]},{"name":"D3DBASISTYPE","features":[314]},{"name":"D3DBASIS_BEZIER","features":[314]},{"name":"D3DBASIS_BSPLINE","features":[314]},{"name":"D3DBASIS_CATMULL_ROM","features":[314]},{"name":"D3DBLEND","features":[314]},{"name":"D3DBLENDOP","features":[314]},{"name":"D3DBLENDOP_ADD","features":[314]},{"name":"D3DBLENDOP_MAX","features":[314]},{"name":"D3DBLENDOP_MIN","features":[314]},{"name":"D3DBLENDOP_REVSUBTRACT","features":[314]},{"name":"D3DBLENDOP_SUBTRACT","features":[314]},{"name":"D3DBLEND_BLENDFACTOR","features":[314]},{"name":"D3DBLEND_BOTHINVSRCALPHA","features":[314]},{"name":"D3DBLEND_BOTHSRCALPHA","features":[314]},{"name":"D3DBLEND_DESTALPHA","features":[314]},{"name":"D3DBLEND_DESTCOLOR","features":[314]},{"name":"D3DBLEND_INVBLENDFACTOR","features":[314]},{"name":"D3DBLEND_INVDESTALPHA","features":[314]},{"name":"D3DBLEND_INVDESTCOLOR","features":[314]},{"name":"D3DBLEND_INVSRCALPHA","features":[314]},{"name":"D3DBLEND_INVSRCCOLOR","features":[314]},{"name":"D3DBLEND_INVSRCCOLOR2","features":[314]},{"name":"D3DBLEND_ONE","features":[314]},{"name":"D3DBLEND_SRCALPHA","features":[314]},{"name":"D3DBLEND_SRCALPHASAT","features":[314]},{"name":"D3DBLEND_SRCCOLOR","features":[314]},{"name":"D3DBLEND_SRCCOLOR2","features":[314]},{"name":"D3DBLEND_ZERO","features":[314]},{"name":"D3DBOX","features":[314]},{"name":"D3DBRANCH","features":[305,314]},{"name":"D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[314]},{"name":"D3DBUSIMPL_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[314]},{"name":"D3DBUSIMPL_MODIFIER_INSIDE_OF_CHIPSET","features":[314]},{"name":"D3DBUSIMPL_MODIFIER_NON_STANDARD","features":[314]},{"name":"D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[314]},{"name":"D3DBUSIMPL_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[314]},{"name":"D3DBUSTYPE","features":[314]},{"name":"D3DBUSTYPE_AGP","features":[314]},{"name":"D3DBUSTYPE_OTHER","features":[314]},{"name":"D3DBUSTYPE_PCI","features":[314]},{"name":"D3DBUSTYPE_PCIEXPRESS","features":[314]},{"name":"D3DBUSTYPE_PCIX","features":[314]},{"name":"D3DCAPS2_CANAUTOGENMIPMAP","features":[314]},{"name":"D3DCAPS2_CANCALIBRATEGAMMA","features":[314]},{"name":"D3DCAPS2_CANMANAGERESOURCE","features":[314]},{"name":"D3DCAPS2_CANSHARERESOURCE","features":[314]},{"name":"D3DCAPS2_DYNAMICTEXTURES","features":[314]},{"name":"D3DCAPS2_FULLSCREENGAMMA","features":[314]},{"name":"D3DCAPS2_RESERVED","features":[314]},{"name":"D3DCAPS3_ALPHA_FULLSCREEN_FLIP_OR_DISCARD","features":[314]},{"name":"D3DCAPS3_COPY_TO_SYSTEMMEM","features":[314]},{"name":"D3DCAPS3_COPY_TO_VIDMEM","features":[314]},{"name":"D3DCAPS3_DXVAHD","features":[314]},{"name":"D3DCAPS3_DXVAHD_LIMITED","features":[314]},{"name":"D3DCAPS3_LINEAR_TO_SRGB_PRESENTATION","features":[314]},{"name":"D3DCAPS3_RESERVED","features":[314]},{"name":"D3DCAPS9","features":[314]},{"name":"D3DCAPS_OVERLAY","features":[314]},{"name":"D3DCAPS_READ_SCANLINE","features":[314]},{"name":"D3DCLEAR_STENCIL","features":[314]},{"name":"D3DCLEAR_TARGET","features":[314]},{"name":"D3DCLEAR_ZBUFFER","features":[314]},{"name":"D3DCLIPPLANE0","features":[314]},{"name":"D3DCLIPPLANE1","features":[314]},{"name":"D3DCLIPPLANE2","features":[314]},{"name":"D3DCLIPPLANE3","features":[314]},{"name":"D3DCLIPPLANE4","features":[314]},{"name":"D3DCLIPPLANE5","features":[314]},{"name":"D3DCLIPSTATUS","features":[314]},{"name":"D3DCLIPSTATUS9","features":[314]},{"name":"D3DCLIPSTATUS_EXTENTS2","features":[314]},{"name":"D3DCLIPSTATUS_EXTENTS3","features":[314]},{"name":"D3DCLIPSTATUS_STATUS","features":[314]},{"name":"D3DCLIP_BACK","features":[314]},{"name":"D3DCLIP_BOTTOM","features":[314]},{"name":"D3DCLIP_FRONT","features":[314]},{"name":"D3DCLIP_GEN0","features":[314]},{"name":"D3DCLIP_GEN1","features":[314]},{"name":"D3DCLIP_GEN2","features":[314]},{"name":"D3DCLIP_GEN3","features":[314]},{"name":"D3DCLIP_GEN4","features":[314]},{"name":"D3DCLIP_GEN5","features":[314]},{"name":"D3DCLIP_LEFT","features":[314]},{"name":"D3DCLIP_RIGHT","features":[314]},{"name":"D3DCLIP_TOP","features":[314]},{"name":"D3DCMPFUNC","features":[314]},{"name":"D3DCMP_ALWAYS","features":[314]},{"name":"D3DCMP_EQUAL","features":[314]},{"name":"D3DCMP_GREATER","features":[314]},{"name":"D3DCMP_GREATEREQUAL","features":[314]},{"name":"D3DCMP_LESS","features":[314]},{"name":"D3DCMP_LESSEQUAL","features":[314]},{"name":"D3DCMP_NEVER","features":[314]},{"name":"D3DCMP_NOTEQUAL","features":[314]},{"name":"D3DCOLORVALUE","features":[314]},{"name":"D3DCOLOR_MONO","features":[314]},{"name":"D3DCOLOR_RGB","features":[314]},{"name":"D3DCOMPOSERECTDESC","features":[314]},{"name":"D3DCOMPOSERECTDESTINATION","features":[314]},{"name":"D3DCOMPOSERECTSOP","features":[314]},{"name":"D3DCOMPOSERECTS_AND","features":[314]},{"name":"D3DCOMPOSERECTS_COPY","features":[314]},{"name":"D3DCOMPOSERECTS_MAXNUMRECTS","features":[314]},{"name":"D3DCOMPOSERECTS_NEG","features":[314]},{"name":"D3DCOMPOSERECTS_OR","features":[314]},{"name":"D3DCONVOLUTIONMONO_MAXHEIGHT","features":[314]},{"name":"D3DCONVOLUTIONMONO_MAXWIDTH","features":[314]},{"name":"D3DCPCAPS_CONTENTKEY","features":[314]},{"name":"D3DCPCAPS_ENCRYPTEDREADBACK","features":[314]},{"name":"D3DCPCAPS_ENCRYPTEDREADBACKKEY","features":[314]},{"name":"D3DCPCAPS_ENCRYPTSLICEDATAONLY","features":[314]},{"name":"D3DCPCAPS_FRESHENSESSIONKEY","features":[314]},{"name":"D3DCPCAPS_HARDWARE","features":[314]},{"name":"D3DCPCAPS_PARTIALDECRYPTION","features":[314]},{"name":"D3DCPCAPS_PROTECTIONALWAYSON","features":[314]},{"name":"D3DCPCAPS_SEQUENTIAL_CTR_IV","features":[314]},{"name":"D3DCPCAPS_SOFTWARE","features":[314]},{"name":"D3DCREATE_ADAPTERGROUP_DEVICE","features":[314]},{"name":"D3DCREATE_DISABLE_DRIVER_MANAGEMENT","features":[314]},{"name":"D3DCREATE_DISABLE_DRIVER_MANAGEMENT_EX","features":[314]},{"name":"D3DCREATE_DISABLE_PRINTSCREEN","features":[314]},{"name":"D3DCREATE_DISABLE_PSGP_THREADING","features":[314]},{"name":"D3DCREATE_ENABLE_PRESENTSTATS","features":[314]},{"name":"D3DCREATE_FPU_PRESERVE","features":[314]},{"name":"D3DCREATE_HARDWARE_VERTEXPROCESSING","features":[314]},{"name":"D3DCREATE_MIXED_VERTEXPROCESSING","features":[314]},{"name":"D3DCREATE_MULTITHREADED","features":[314]},{"name":"D3DCREATE_NOWINDOWCHANGES","features":[314]},{"name":"D3DCREATE_PUREDEVICE","features":[314]},{"name":"D3DCREATE_SCREENSAVER","features":[314]},{"name":"D3DCREATE_SOFTWARE_VERTEXPROCESSING","features":[314]},{"name":"D3DCRYPTOTYPE_AES128_CTR","features":[314]},{"name":"D3DCRYPTOTYPE_PROPRIETARY","features":[314]},{"name":"D3DCS_BACK","features":[314]},{"name":"D3DCS_BOTTOM","features":[314]},{"name":"D3DCS_FRONT","features":[314]},{"name":"D3DCS_LEFT","features":[314]},{"name":"D3DCS_PLANE0","features":[314]},{"name":"D3DCS_PLANE1","features":[314]},{"name":"D3DCS_PLANE2","features":[314]},{"name":"D3DCS_PLANE3","features":[314]},{"name":"D3DCS_PLANE4","features":[314]},{"name":"D3DCS_PLANE5","features":[314]},{"name":"D3DCS_RIGHT","features":[314]},{"name":"D3DCS_TOP","features":[314]},{"name":"D3DCUBEMAP_FACES","features":[314]},{"name":"D3DCUBEMAP_FACE_NEGATIVE_X","features":[314]},{"name":"D3DCUBEMAP_FACE_NEGATIVE_Y","features":[314]},{"name":"D3DCUBEMAP_FACE_NEGATIVE_Z","features":[314]},{"name":"D3DCUBEMAP_FACE_POSITIVE_X","features":[314]},{"name":"D3DCUBEMAP_FACE_POSITIVE_Y","features":[314]},{"name":"D3DCUBEMAP_FACE_POSITIVE_Z","features":[314]},{"name":"D3DCULL","features":[314]},{"name":"D3DCULL_CCW","features":[314]},{"name":"D3DCULL_CW","features":[314]},{"name":"D3DCULL_NONE","features":[314]},{"name":"D3DCURSORCAPS_COLOR","features":[314]},{"name":"D3DCURSORCAPS_LOWRES","features":[314]},{"name":"D3DCURSOR_IMMEDIATE_UPDATE","features":[314]},{"name":"D3DDD_BCLIPPING","features":[314]},{"name":"D3DDD_COLORMODEL","features":[314]},{"name":"D3DDD_DEVCAPS","features":[314]},{"name":"D3DDD_DEVICERENDERBITDEPTH","features":[314]},{"name":"D3DDD_DEVICEZBUFFERBITDEPTH","features":[314]},{"name":"D3DDD_LIGHTINGCAPS","features":[314]},{"name":"D3DDD_LINECAPS","features":[314]},{"name":"D3DDD_MAXBUFFERSIZE","features":[314]},{"name":"D3DDD_MAXVERTEXCOUNT","features":[314]},{"name":"D3DDD_TRANSFORMCAPS","features":[314]},{"name":"D3DDD_TRICAPS","features":[314]},{"name":"D3DDEBCAPS_SYSTEMMEMORY","features":[314]},{"name":"D3DDEBCAPS_VIDEOMEMORY","features":[314]},{"name":"D3DDEBUGMONITORTOKENS","features":[314]},{"name":"D3DDEB_BUFSIZE","features":[314]},{"name":"D3DDEB_CAPS","features":[314]},{"name":"D3DDEB_LPDATA","features":[314]},{"name":"D3DDECLMETHOD","features":[314]},{"name":"D3DDECLMETHOD_CROSSUV","features":[314]},{"name":"D3DDECLMETHOD_DEFAULT","features":[314]},{"name":"D3DDECLMETHOD_LOOKUP","features":[314]},{"name":"D3DDECLMETHOD_LOOKUPPRESAMPLED","features":[314]},{"name":"D3DDECLMETHOD_PARTIALU","features":[314]},{"name":"D3DDECLMETHOD_PARTIALV","features":[314]},{"name":"D3DDECLMETHOD_UV","features":[314]},{"name":"D3DDECLTYPE","features":[314]},{"name":"D3DDECLTYPE_D3DCOLOR","features":[314]},{"name":"D3DDECLTYPE_DEC3N","features":[314]},{"name":"D3DDECLTYPE_FLOAT1","features":[314]},{"name":"D3DDECLTYPE_FLOAT16_2","features":[314]},{"name":"D3DDECLTYPE_FLOAT16_4","features":[314]},{"name":"D3DDECLTYPE_FLOAT2","features":[314]},{"name":"D3DDECLTYPE_FLOAT3","features":[314]},{"name":"D3DDECLTYPE_FLOAT4","features":[314]},{"name":"D3DDECLTYPE_SHORT2","features":[314]},{"name":"D3DDECLTYPE_SHORT2N","features":[314]},{"name":"D3DDECLTYPE_SHORT4","features":[314]},{"name":"D3DDECLTYPE_SHORT4N","features":[314]},{"name":"D3DDECLTYPE_UBYTE4","features":[314]},{"name":"D3DDECLTYPE_UBYTE4N","features":[314]},{"name":"D3DDECLTYPE_UDEC3","features":[314]},{"name":"D3DDECLTYPE_UNUSED","features":[314]},{"name":"D3DDECLTYPE_USHORT2N","features":[314]},{"name":"D3DDECLTYPE_USHORT4N","features":[314]},{"name":"D3DDECLUSAGE","features":[314]},{"name":"D3DDECLUSAGE_BINORMAL","features":[314]},{"name":"D3DDECLUSAGE_BLENDINDICES","features":[314]},{"name":"D3DDECLUSAGE_BLENDWEIGHT","features":[314]},{"name":"D3DDECLUSAGE_COLOR","features":[314]},{"name":"D3DDECLUSAGE_DEPTH","features":[314]},{"name":"D3DDECLUSAGE_FOG","features":[314]},{"name":"D3DDECLUSAGE_NORMAL","features":[314]},{"name":"D3DDECLUSAGE_POSITION","features":[314]},{"name":"D3DDECLUSAGE_POSITIONT","features":[314]},{"name":"D3DDECLUSAGE_PSIZE","features":[314]},{"name":"D3DDECLUSAGE_SAMPLE","features":[314]},{"name":"D3DDECLUSAGE_TANGENT","features":[314]},{"name":"D3DDECLUSAGE_TESSFACTOR","features":[314]},{"name":"D3DDECLUSAGE_TEXCOORD","features":[314]},{"name":"D3DDEGREETYPE","features":[314]},{"name":"D3DDEGREE_CUBIC","features":[314]},{"name":"D3DDEGREE_LINEAR","features":[314]},{"name":"D3DDEGREE_QUADRATIC","features":[314]},{"name":"D3DDEGREE_QUINTIC","features":[314]},{"name":"D3DDEVCAPS2_ADAPTIVETESSNPATCH","features":[314]},{"name":"D3DDEVCAPS2_ADAPTIVETESSRTPATCH","features":[314]},{"name":"D3DDEVCAPS2_CAN_STRETCHRECT_FROM_TEXTURES","features":[314]},{"name":"D3DDEVCAPS2_DMAPNPATCH","features":[314]},{"name":"D3DDEVCAPS2_PRESAMPLEDDMAPNPATCH","features":[314]},{"name":"D3DDEVCAPS2_STREAMOFFSET","features":[314]},{"name":"D3DDEVCAPS2_VERTEXELEMENTSCANSHARESTREAMOFFSET","features":[314]},{"name":"D3DDEVCAPS_CANBLTSYSTONONLOCAL","features":[314]},{"name":"D3DDEVCAPS_CANRENDERAFTERFLIP","features":[314]},{"name":"D3DDEVCAPS_DRAWPRIMITIVES2","features":[314]},{"name":"D3DDEVCAPS_DRAWPRIMITIVES2EX","features":[314]},{"name":"D3DDEVCAPS_DRAWPRIMTLVERTEX","features":[314]},{"name":"D3DDEVCAPS_EXECUTESYSTEMMEMORY","features":[314]},{"name":"D3DDEVCAPS_EXECUTEVIDEOMEMORY","features":[314]},{"name":"D3DDEVCAPS_FLOATTLVERTEX","features":[314]},{"name":"D3DDEVCAPS_HWRASTERIZATION","features":[314]},{"name":"D3DDEVCAPS_HWTRANSFORMANDLIGHT","features":[314]},{"name":"D3DDEVCAPS_NPATCHES","features":[314]},{"name":"D3DDEVCAPS_PUREDEVICE","features":[314]},{"name":"D3DDEVCAPS_QUINTICRTPATCHES","features":[314]},{"name":"D3DDEVCAPS_RTPATCHES","features":[314]},{"name":"D3DDEVCAPS_RTPATCHHANDLEZERO","features":[314]},{"name":"D3DDEVCAPS_SEPARATETEXTUREMEMORIES","features":[314]},{"name":"D3DDEVCAPS_SORTDECREASINGZ","features":[314]},{"name":"D3DDEVCAPS_SORTEXACT","features":[314]},{"name":"D3DDEVCAPS_SORTINCREASINGZ","features":[314]},{"name":"D3DDEVCAPS_TEXTURENONLOCALVIDMEM","features":[314]},{"name":"D3DDEVCAPS_TEXTURESYSTEMMEMORY","features":[314]},{"name":"D3DDEVCAPS_TEXTUREVIDEOMEMORY","features":[314]},{"name":"D3DDEVCAPS_TLVERTEXSYSTEMMEMORY","features":[314]},{"name":"D3DDEVCAPS_TLVERTEXVIDEOMEMORY","features":[314]},{"name":"D3DDEVICEDESC","features":[305,314]},{"name":"D3DDEVICEDESC7","features":[314]},{"name":"D3DDEVICE_CREATION_PARAMETERS","features":[305,314]},{"name":"D3DDEVINFOID_D3DTEXTUREMANAGER","features":[314]},{"name":"D3DDEVINFOID_TEXTUREMANAGER","features":[314]},{"name":"D3DDEVINFOID_TEXTURING","features":[314]},{"name":"D3DDEVINFO_D3D9BANDWIDTHTIMINGS","features":[314]},{"name":"D3DDEVINFO_D3D9CACHEUTILIZATION","features":[314]},{"name":"D3DDEVINFO_D3D9INTERFACETIMINGS","features":[314]},{"name":"D3DDEVINFO_D3D9PIPELINETIMINGS","features":[314]},{"name":"D3DDEVINFO_D3D9STAGETIMINGS","features":[314]},{"name":"D3DDEVINFO_D3DVERTEXSTATS","features":[314]},{"name":"D3DDEVINFO_RESOURCEMANAGER","features":[305,314]},{"name":"D3DDEVINFO_VCACHE","features":[314]},{"name":"D3DDEVTYPE","features":[314]},{"name":"D3DDEVTYPE_HAL","features":[314]},{"name":"D3DDEVTYPE_NULLREF","features":[314]},{"name":"D3DDEVTYPE_REF","features":[314]},{"name":"D3DDEVTYPE_SW","features":[314]},{"name":"D3DDISPLAYMODE","features":[314]},{"name":"D3DDISPLAYMODEEX","features":[314]},{"name":"D3DDISPLAYMODEFILTER","features":[314]},{"name":"D3DDISPLAYROTATION","features":[314]},{"name":"D3DDISPLAYROTATION_180","features":[314]},{"name":"D3DDISPLAYROTATION_270","features":[314]},{"name":"D3DDISPLAYROTATION_90","features":[314]},{"name":"D3DDISPLAYROTATION_IDENTITY","features":[314]},{"name":"D3DDMAPSAMPLER","features":[314]},{"name":"D3DDMT_DISABLE","features":[314]},{"name":"D3DDMT_ENABLE","features":[314]},{"name":"D3DDP_MAXTEXCOORD","features":[314]},{"name":"D3DDP_PTRSTRIDE","features":[314]},{"name":"D3DDRAWPRIMITIVESTRIDEDDATA","features":[314]},{"name":"D3DDTCAPS_DEC3N","features":[314]},{"name":"D3DDTCAPS_FLOAT16_2","features":[314]},{"name":"D3DDTCAPS_FLOAT16_4","features":[314]},{"name":"D3DDTCAPS_SHORT2N","features":[314]},{"name":"D3DDTCAPS_SHORT4N","features":[314]},{"name":"D3DDTCAPS_UBYTE4","features":[314]},{"name":"D3DDTCAPS_UBYTE4N","features":[314]},{"name":"D3DDTCAPS_UDEC3","features":[314]},{"name":"D3DDTCAPS_USHORT2N","features":[314]},{"name":"D3DDTCAPS_USHORT4N","features":[314]},{"name":"D3DENCRYPTED_BLOCK_INFO","features":[314]},{"name":"D3DENUM_NO_DRIVERVERSION","features":[314]},{"name":"D3DENUM_WHQL_LEVEL","features":[314]},{"name":"D3DEXECUTEBUFFERDESC","features":[314]},{"name":"D3DEXECUTEDATA","features":[314]},{"name":"D3DEXECUTE_CLIPPED","features":[314]},{"name":"D3DEXECUTE_UNCLIPPED","features":[314]},{"name":"D3DFDS_ALPHACMPCAPS","features":[314]},{"name":"D3DFDS_COLORMODEL","features":[314]},{"name":"D3DFDS_DSTBLENDCAPS","features":[314]},{"name":"D3DFDS_GUID","features":[314]},{"name":"D3DFDS_HARDWARE","features":[314]},{"name":"D3DFDS_LINES","features":[314]},{"name":"D3DFDS_MISCCAPS","features":[314]},{"name":"D3DFDS_RASTERCAPS","features":[314]},{"name":"D3DFDS_SHADECAPS","features":[314]},{"name":"D3DFDS_SRCBLENDCAPS","features":[314]},{"name":"D3DFDS_TEXTUREADDRESSCAPS","features":[314]},{"name":"D3DFDS_TEXTUREBLENDCAPS","features":[314]},{"name":"D3DFDS_TEXTURECAPS","features":[314]},{"name":"D3DFDS_TEXTUREFILTERCAPS","features":[314]},{"name":"D3DFDS_TRIANGLES","features":[314]},{"name":"D3DFDS_ZCMPCAPS","features":[314]},{"name":"D3DFILLMODE","features":[314]},{"name":"D3DFILL_POINT","features":[314]},{"name":"D3DFILL_SOLID","features":[314]},{"name":"D3DFILL_WIREFRAME","features":[314]},{"name":"D3DFILTER_LINEAR","features":[314]},{"name":"D3DFILTER_LINEARMIPLINEAR","features":[314]},{"name":"D3DFILTER_LINEARMIPNEAREST","features":[314]},{"name":"D3DFILTER_MIPLINEAR","features":[314]},{"name":"D3DFILTER_MIPNEAREST","features":[314]},{"name":"D3DFILTER_NEAREST","features":[314]},{"name":"D3DFINDDEVICERESULT","features":[305,314]},{"name":"D3DFINDDEVICESEARCH","features":[305,314]},{"name":"D3DFMT_A1","features":[314]},{"name":"D3DFMT_A16B16G16R16","features":[314]},{"name":"D3DFMT_A16B16G16R16F","features":[314]},{"name":"D3DFMT_A1R5G5B5","features":[314]},{"name":"D3DFMT_A1_SURFACE_MAXHEIGHT","features":[314]},{"name":"D3DFMT_A1_SURFACE_MAXWIDTH","features":[314]},{"name":"D3DFMT_A2B10G10R10","features":[314]},{"name":"D3DFMT_A2B10G10R10_XR_BIAS","features":[314]},{"name":"D3DFMT_A2R10G10B10","features":[314]},{"name":"D3DFMT_A2W10V10U10","features":[314]},{"name":"D3DFMT_A32B32G32R32F","features":[314]},{"name":"D3DFMT_A4L4","features":[314]},{"name":"D3DFMT_A4R4G4B4","features":[314]},{"name":"D3DFMT_A8","features":[314]},{"name":"D3DFMT_A8B8G8R8","features":[314]},{"name":"D3DFMT_A8L8","features":[314]},{"name":"D3DFMT_A8P8","features":[314]},{"name":"D3DFMT_A8R3G3B2","features":[314]},{"name":"D3DFMT_A8R8G8B8","features":[314]},{"name":"D3DFMT_BINARYBUFFER","features":[314]},{"name":"D3DFMT_CxV8U8","features":[314]},{"name":"D3DFMT_D15S1","features":[314]},{"name":"D3DFMT_D16","features":[314]},{"name":"D3DFMT_D16_LOCKABLE","features":[314]},{"name":"D3DFMT_D24FS8","features":[314]},{"name":"D3DFMT_D24S8","features":[314]},{"name":"D3DFMT_D24X4S4","features":[314]},{"name":"D3DFMT_D24X8","features":[314]},{"name":"D3DFMT_D32","features":[314]},{"name":"D3DFMT_D32F_LOCKABLE","features":[314]},{"name":"D3DFMT_D32_LOCKABLE","features":[314]},{"name":"D3DFMT_DXT1","features":[314]},{"name":"D3DFMT_DXT2","features":[314]},{"name":"D3DFMT_DXT3","features":[314]},{"name":"D3DFMT_DXT4","features":[314]},{"name":"D3DFMT_DXT5","features":[314]},{"name":"D3DFMT_G16R16","features":[314]},{"name":"D3DFMT_G16R16F","features":[314]},{"name":"D3DFMT_G32R32F","features":[314]},{"name":"D3DFMT_G8R8_G8B8","features":[314]},{"name":"D3DFMT_INDEX16","features":[314]},{"name":"D3DFMT_INDEX32","features":[314]},{"name":"D3DFMT_L16","features":[314]},{"name":"D3DFMT_L6V5U5","features":[314]},{"name":"D3DFMT_L8","features":[314]},{"name":"D3DFMT_MULTI2_ARGB8","features":[314]},{"name":"D3DFMT_P8","features":[314]},{"name":"D3DFMT_Q16W16V16U16","features":[314]},{"name":"D3DFMT_Q8W8V8U8","features":[314]},{"name":"D3DFMT_R16F","features":[314]},{"name":"D3DFMT_R32F","features":[314]},{"name":"D3DFMT_R3G3B2","features":[314]},{"name":"D3DFMT_R5G6B5","features":[314]},{"name":"D3DFMT_R8G8B8","features":[314]},{"name":"D3DFMT_R8G8_B8G8","features":[314]},{"name":"D3DFMT_S8_LOCKABLE","features":[314]},{"name":"D3DFMT_UNKNOWN","features":[314]},{"name":"D3DFMT_UYVY","features":[314]},{"name":"D3DFMT_V16U16","features":[314]},{"name":"D3DFMT_V8U8","features":[314]},{"name":"D3DFMT_VERTEXDATA","features":[314]},{"name":"D3DFMT_X1R5G5B5","features":[314]},{"name":"D3DFMT_X4R4G4B4","features":[314]},{"name":"D3DFMT_X8B8G8R8","features":[314]},{"name":"D3DFMT_X8L8V8U8","features":[314]},{"name":"D3DFMT_X8R8G8B8","features":[314]},{"name":"D3DFMT_YUY2","features":[314]},{"name":"D3DFOGMODE","features":[314]},{"name":"D3DFOG_EXP","features":[314]},{"name":"D3DFOG_EXP2","features":[314]},{"name":"D3DFOG_LINEAR","features":[314]},{"name":"D3DFOG_NONE","features":[314]},{"name":"D3DFORMAT","features":[314]},{"name":"D3DFVFCAPS_DONOTSTRIPELEMENTS","features":[314]},{"name":"D3DFVFCAPS_PSIZE","features":[314]},{"name":"D3DFVFCAPS_TEXCOORDCOUNTMASK","features":[314]},{"name":"D3DFVF_DIFFUSE","features":[314]},{"name":"D3DFVF_LASTBETA_D3DCOLOR","features":[314]},{"name":"D3DFVF_LASTBETA_UBYTE4","features":[314]},{"name":"D3DFVF_NORMAL","features":[314]},{"name":"D3DFVF_POSITION_MASK","features":[314]},{"name":"D3DFVF_PSIZE","features":[314]},{"name":"D3DFVF_RESERVED0","features":[314]},{"name":"D3DFVF_RESERVED1","features":[314]},{"name":"D3DFVF_RESERVED2","features":[314]},{"name":"D3DFVF_SPECULAR","features":[314]},{"name":"D3DFVF_TEX0","features":[314]},{"name":"D3DFVF_TEX1","features":[314]},{"name":"D3DFVF_TEX2","features":[314]},{"name":"D3DFVF_TEX3","features":[314]},{"name":"D3DFVF_TEX4","features":[314]},{"name":"D3DFVF_TEX5","features":[314]},{"name":"D3DFVF_TEX6","features":[314]},{"name":"D3DFVF_TEX7","features":[314]},{"name":"D3DFVF_TEX8","features":[314]},{"name":"D3DFVF_TEXCOUNT_MASK","features":[314]},{"name":"D3DFVF_TEXCOUNT_SHIFT","features":[314]},{"name":"D3DFVF_TEXTUREFORMAT1","features":[314]},{"name":"D3DFVF_TEXTUREFORMAT2","features":[314]},{"name":"D3DFVF_TEXTUREFORMAT3","features":[314]},{"name":"D3DFVF_TEXTUREFORMAT4","features":[314]},{"name":"D3DFVF_XYZ","features":[314]},{"name":"D3DFVF_XYZB1","features":[314]},{"name":"D3DFVF_XYZB2","features":[314]},{"name":"D3DFVF_XYZB3","features":[314]},{"name":"D3DFVF_XYZB4","features":[314]},{"name":"D3DFVF_XYZB5","features":[314]},{"name":"D3DFVF_XYZRHW","features":[314]},{"name":"D3DFVF_XYZW","features":[314]},{"name":"D3DGAMMARAMP","features":[314]},{"name":"D3DGETDATA_FLUSH","features":[314]},{"name":"D3DHVERTEX","features":[314]},{"name":"D3DINDEXBUFFER_DESC","features":[314]},{"name":"D3DINSTRUCTION","features":[314]},{"name":"D3DISSUE_BEGIN","features":[314]},{"name":"D3DISSUE_END","features":[314]},{"name":"D3DKEYEXCHANGE_DXVA","features":[314]},{"name":"D3DKEYEXCHANGE_RSAES_OAEP","features":[314]},{"name":"D3DLIGHT","features":[398,314]},{"name":"D3DLIGHT2","features":[398,314]},{"name":"D3DLIGHT7","features":[398,314]},{"name":"D3DLIGHT9","features":[398,314]},{"name":"D3DLIGHTCAPS_DIRECTIONAL","features":[314]},{"name":"D3DLIGHTCAPS_GLSPOT","features":[314]},{"name":"D3DLIGHTCAPS_PARALLELPOINT","features":[314]},{"name":"D3DLIGHTCAPS_POINT","features":[314]},{"name":"D3DLIGHTCAPS_SPOT","features":[314]},{"name":"D3DLIGHTDATA","features":[398,314]},{"name":"D3DLIGHTINGCAPS","features":[314]},{"name":"D3DLIGHTINGELEMENT","features":[398,314]},{"name":"D3DLIGHTINGMODEL_MONO","features":[314]},{"name":"D3DLIGHTINGMODEL_RGB","features":[314]},{"name":"D3DLIGHTSTATETYPE","features":[314]},{"name":"D3DLIGHTSTATE_AMBIENT","features":[314]},{"name":"D3DLIGHTSTATE_COLORMODEL","features":[314]},{"name":"D3DLIGHTSTATE_COLORVERTEX","features":[314]},{"name":"D3DLIGHTSTATE_FOGDENSITY","features":[314]},{"name":"D3DLIGHTSTATE_FOGEND","features":[314]},{"name":"D3DLIGHTSTATE_FOGMODE","features":[314]},{"name":"D3DLIGHTSTATE_FOGSTART","features":[314]},{"name":"D3DLIGHTSTATE_MATERIAL","features":[314]},{"name":"D3DLIGHTTYPE","features":[314]},{"name":"D3DLIGHT_ACTIVE","features":[314]},{"name":"D3DLIGHT_DIRECTIONAL","features":[314]},{"name":"D3DLIGHT_NO_SPECULAR","features":[314]},{"name":"D3DLIGHT_POINT","features":[314]},{"name":"D3DLIGHT_SPOT","features":[314]},{"name":"D3DLINE","features":[314]},{"name":"D3DLINECAPS_ALPHACMP","features":[314]},{"name":"D3DLINECAPS_ANTIALIAS","features":[314]},{"name":"D3DLINECAPS_BLEND","features":[314]},{"name":"D3DLINECAPS_FOG","features":[314]},{"name":"D3DLINECAPS_TEXTURE","features":[314]},{"name":"D3DLINECAPS_ZTEST","features":[314]},{"name":"D3DLOCKED_BOX","features":[314]},{"name":"D3DLOCKED_RECT","features":[314]},{"name":"D3DLOCK_DISCARD","features":[314]},{"name":"D3DLOCK_DONOTWAIT","features":[314]},{"name":"D3DLOCK_NOOVERWRITE","features":[314]},{"name":"D3DLOCK_NOSYSLOCK","features":[314]},{"name":"D3DLOCK_NO_DIRTY_UPDATE","features":[314]},{"name":"D3DLOCK_READONLY","features":[314]},{"name":"D3DLVERTEX","features":[314]},{"name":"D3DMATERIAL","features":[314]},{"name":"D3DMATERIAL7","features":[314]},{"name":"D3DMATERIAL9","features":[314]},{"name":"D3DMATERIALCOLORSOURCE","features":[314]},{"name":"D3DMATRIXLOAD","features":[314]},{"name":"D3DMATRIXMULTIPLY","features":[314]},{"name":"D3DMAX30SHADERINSTRUCTIONS","features":[314]},{"name":"D3DMAXUSERCLIPPLANES","features":[314]},{"name":"D3DMCS_COLOR1","features":[314]},{"name":"D3DMCS_COLOR2","features":[314]},{"name":"D3DMCS_MATERIAL","features":[314]},{"name":"D3DMEMORYPRESSURE","features":[314]},{"name":"D3DMEMORYPRESSURE","features":[314]},{"name":"D3DMIN30SHADERINSTRUCTIONS","features":[314]},{"name":"D3DMP_16","features":[314]},{"name":"D3DMP_2_8","features":[314]},{"name":"D3DMP_DEFAULT","features":[314]},{"name":"D3DMULTISAMPLE_10_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_11_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_12_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_13_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_14_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_15_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_16_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_2_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_3_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_4_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_5_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_6_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_7_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_8_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_9_SAMPLES","features":[314]},{"name":"D3DMULTISAMPLE_NONE","features":[314]},{"name":"D3DMULTISAMPLE_NONMASKABLE","features":[314]},{"name":"D3DMULTISAMPLE_TYPE","features":[314]},{"name":"D3DOPCODE","features":[314]},{"name":"D3DOP_BRANCHFORWARD","features":[314]},{"name":"D3DOP_EXIT","features":[314]},{"name":"D3DOP_LINE","features":[314]},{"name":"D3DOP_MATRIXLOAD","features":[314]},{"name":"D3DOP_MATRIXMULTIPLY","features":[314]},{"name":"D3DOP_POINT","features":[314]},{"name":"D3DOP_PROCESSVERTICES","features":[314]},{"name":"D3DOP_SETSTATUS","features":[314]},{"name":"D3DOP_SPAN","features":[314]},{"name":"D3DOP_STATELIGHT","features":[314]},{"name":"D3DOP_STATERENDER","features":[314]},{"name":"D3DOP_STATETRANSFORM","features":[314]},{"name":"D3DOP_TEXTURELOAD","features":[314]},{"name":"D3DOP_TRIANGLE","features":[314]},{"name":"D3DOVERLAYCAPS_FULLRANGERGB","features":[314]},{"name":"D3DOVERLAYCAPS_LIMITEDRANGERGB","features":[314]},{"name":"D3DOVERLAYCAPS_STRETCHX","features":[314]},{"name":"D3DOVERLAYCAPS_STRETCHY","features":[314]},{"name":"D3DOVERLAYCAPS_YCbCr_BT601","features":[314]},{"name":"D3DOVERLAYCAPS_YCbCr_BT601_xvYCC","features":[314]},{"name":"D3DOVERLAYCAPS_YCbCr_BT709","features":[314]},{"name":"D3DOVERLAYCAPS_YCbCr_BT709_xvYCC","features":[314]},{"name":"D3DPAL_FREE","features":[314]},{"name":"D3DPAL_READONLY","features":[314]},{"name":"D3DPAL_RESERVED","features":[314]},{"name":"D3DPATCHEDGESTYLE","features":[314]},{"name":"D3DPATCHEDGE_CONTINUOUS","features":[314]},{"name":"D3DPATCHEDGE_DISCRETE","features":[314]},{"name":"D3DPBLENDCAPS_BLENDFACTOR","features":[314]},{"name":"D3DPBLENDCAPS_BOTHINVSRCALPHA","features":[314]},{"name":"D3DPBLENDCAPS_BOTHSRCALPHA","features":[314]},{"name":"D3DPBLENDCAPS_DESTALPHA","features":[314]},{"name":"D3DPBLENDCAPS_DESTCOLOR","features":[314]},{"name":"D3DPBLENDCAPS_INVDESTALPHA","features":[314]},{"name":"D3DPBLENDCAPS_INVDESTCOLOR","features":[314]},{"name":"D3DPBLENDCAPS_INVSRCALPHA","features":[314]},{"name":"D3DPBLENDCAPS_INVSRCCOLOR","features":[314]},{"name":"D3DPBLENDCAPS_INVSRCCOLOR2","features":[314]},{"name":"D3DPBLENDCAPS_ONE","features":[314]},{"name":"D3DPBLENDCAPS_SRCALPHA","features":[314]},{"name":"D3DPBLENDCAPS_SRCALPHASAT","features":[314]},{"name":"D3DPBLENDCAPS_SRCCOLOR","features":[314]},{"name":"D3DPBLENDCAPS_SRCCOLOR2","features":[314]},{"name":"D3DPBLENDCAPS_ZERO","features":[314]},{"name":"D3DPCMPCAPS_ALWAYS","features":[314]},{"name":"D3DPCMPCAPS_EQUAL","features":[314]},{"name":"D3DPCMPCAPS_GREATER","features":[314]},{"name":"D3DPCMPCAPS_GREATEREQUAL","features":[314]},{"name":"D3DPCMPCAPS_LESS","features":[314]},{"name":"D3DPCMPCAPS_LESSEQUAL","features":[314]},{"name":"D3DPCMPCAPS_NEVER","features":[314]},{"name":"D3DPCMPCAPS_NOTEQUAL","features":[314]},{"name":"D3DPERF_BeginEvent","features":[314]},{"name":"D3DPERF_EndEvent","features":[314]},{"name":"D3DPERF_GetStatus","features":[314]},{"name":"D3DPERF_QueryRepeatFrame","features":[305,314]},{"name":"D3DPERF_SetMarker","features":[314]},{"name":"D3DPERF_SetOptions","features":[314]},{"name":"D3DPERF_SetRegion","features":[314]},{"name":"D3DPICKRECORD","features":[314]},{"name":"D3DPMISCCAPS_BLENDOP","features":[314]},{"name":"D3DPMISCCAPS_CLIPPLANESCALEDPOINTS","features":[314]},{"name":"D3DPMISCCAPS_CLIPTLVERTS","features":[314]},{"name":"D3DPMISCCAPS_COLORWRITEENABLE","features":[314]},{"name":"D3DPMISCCAPS_CONFORMANT","features":[314]},{"name":"D3DPMISCCAPS_CULLCCW","features":[314]},{"name":"D3DPMISCCAPS_CULLCW","features":[314]},{"name":"D3DPMISCCAPS_CULLNONE","features":[314]},{"name":"D3DPMISCCAPS_FOGANDSPECULARALPHA","features":[314]},{"name":"D3DPMISCCAPS_FOGVERTEXCLAMPED","features":[314]},{"name":"D3DPMISCCAPS_INDEPENDENTWRITEMASKS","features":[314]},{"name":"D3DPMISCCAPS_LINEPATTERNREP","features":[314]},{"name":"D3DPMISCCAPS_MASKPLANES","features":[314]},{"name":"D3DPMISCCAPS_MASKZ","features":[314]},{"name":"D3DPMISCCAPS_MRTINDEPENDENTBITDEPTHS","features":[314]},{"name":"D3DPMISCCAPS_MRTPOSTPIXELSHADERBLENDING","features":[314]},{"name":"D3DPMISCCAPS_NULLREFERENCE","features":[314]},{"name":"D3DPMISCCAPS_PERSTAGECONSTANT","features":[314]},{"name":"D3DPMISCCAPS_POSTBLENDSRGBCONVERT","features":[314]},{"name":"D3DPMISCCAPS_SEPARATEALPHABLEND","features":[314]},{"name":"D3DPMISCCAPS_TSSARGTEMP","features":[314]},{"name":"D3DPOINT","features":[314]},{"name":"D3DPOOL","features":[314]},{"name":"D3DPOOL_DEFAULT","features":[314]},{"name":"D3DPOOL_MANAGED","features":[314]},{"name":"D3DPOOL_SCRATCH","features":[314]},{"name":"D3DPOOL_SYSTEMMEM","features":[314]},{"name":"D3DPRASTERCAPS_ANISOTROPY","features":[314]},{"name":"D3DPRASTERCAPS_ANTIALIASEDGES","features":[314]},{"name":"D3DPRASTERCAPS_ANTIALIASSORTDEPENDENT","features":[314]},{"name":"D3DPRASTERCAPS_ANTIALIASSORTINDEPENDENT","features":[314]},{"name":"D3DPRASTERCAPS_COLORPERSPECTIVE","features":[314]},{"name":"D3DPRASTERCAPS_DEPTHBIAS","features":[314]},{"name":"D3DPRASTERCAPS_DITHER","features":[314]},{"name":"D3DPRASTERCAPS_FOGRANGE","features":[314]},{"name":"D3DPRASTERCAPS_FOGTABLE","features":[314]},{"name":"D3DPRASTERCAPS_FOGVERTEX","features":[314]},{"name":"D3DPRASTERCAPS_MIPMAPLODBIAS","features":[314]},{"name":"D3DPRASTERCAPS_MULTISAMPLE_TOGGLE","features":[314]},{"name":"D3DPRASTERCAPS_PAT","features":[314]},{"name":"D3DPRASTERCAPS_ROP2","features":[314]},{"name":"D3DPRASTERCAPS_SCISSORTEST","features":[314]},{"name":"D3DPRASTERCAPS_SLOPESCALEDEPTHBIAS","features":[314]},{"name":"D3DPRASTERCAPS_STIPPLE","features":[314]},{"name":"D3DPRASTERCAPS_SUBPIXEL","features":[314]},{"name":"D3DPRASTERCAPS_SUBPIXELX","features":[314]},{"name":"D3DPRASTERCAPS_TRANSLUCENTSORTINDEPENDENT","features":[314]},{"name":"D3DPRASTERCAPS_WBUFFER","features":[314]},{"name":"D3DPRASTERCAPS_WFOG","features":[314]},{"name":"D3DPRASTERCAPS_XOR","features":[314]},{"name":"D3DPRASTERCAPS_ZBIAS","features":[314]},{"name":"D3DPRASTERCAPS_ZBUFFERLESSHSR","features":[314]},{"name":"D3DPRASTERCAPS_ZFOG","features":[314]},{"name":"D3DPRASTERCAPS_ZTEST","features":[314]},{"name":"D3DPRESENTFLAG_DEVICECLIP","features":[314]},{"name":"D3DPRESENTFLAG_DISCARD_DEPTHSTENCIL","features":[314]},{"name":"D3DPRESENTFLAG_LOCKABLE_BACKBUFFER","features":[314]},{"name":"D3DPRESENTFLAG_NOAUTOROTATE","features":[314]},{"name":"D3DPRESENTFLAG_OVERLAY_LIMITEDRGB","features":[314]},{"name":"D3DPRESENTFLAG_OVERLAY_YCbCr_BT709","features":[314]},{"name":"D3DPRESENTFLAG_OVERLAY_YCbCr_xvYCC","features":[314]},{"name":"D3DPRESENTFLAG_RESTRICTED_CONTENT","features":[314]},{"name":"D3DPRESENTFLAG_RESTRICT_SHARED_RESOURCE_DRIVER","features":[314]},{"name":"D3DPRESENTFLAG_UNPRUNEDMODE","features":[314]},{"name":"D3DPRESENTFLAG_VIDEO","features":[314]},{"name":"D3DPRESENTSTATS","features":[314]},{"name":"D3DPRESENTSTATS","features":[314]},{"name":"D3DPRESENT_BACK_BUFFERS_MAX","features":[314]},{"name":"D3DPRESENT_BACK_BUFFERS_MAX_EX","features":[314]},{"name":"D3DPRESENT_DONOTFLIP","features":[314]},{"name":"D3DPRESENT_DONOTWAIT","features":[314]},{"name":"D3DPRESENT_FLIPRESTART","features":[314]},{"name":"D3DPRESENT_FORCEIMMEDIATE","features":[314]},{"name":"D3DPRESENT_HIDEOVERLAY","features":[314]},{"name":"D3DPRESENT_INTERVAL_DEFAULT","features":[314]},{"name":"D3DPRESENT_INTERVAL_FOUR","features":[314]},{"name":"D3DPRESENT_INTERVAL_IMMEDIATE","features":[314]},{"name":"D3DPRESENT_INTERVAL_ONE","features":[314]},{"name":"D3DPRESENT_INTERVAL_THREE","features":[314]},{"name":"D3DPRESENT_INTERVAL_TWO","features":[314]},{"name":"D3DPRESENT_LINEAR_CONTENT","features":[314]},{"name":"D3DPRESENT_PARAMETERS","features":[305,314]},{"name":"D3DPRESENT_RATE_DEFAULT","features":[314]},{"name":"D3DPRESENT_UPDATECOLORKEY","features":[314]},{"name":"D3DPRESENT_UPDATEOVERLAYONLY","features":[314]},{"name":"D3DPRESENT_VIDEO_RESTRICT_TO_MONITOR","features":[314]},{"name":"D3DPRIMCAPS","features":[314]},{"name":"D3DPRIMITIVETYPE","features":[314]},{"name":"D3DPROCESSVERTICES","features":[314]},{"name":"D3DPROCESSVERTICES_COPY","features":[314]},{"name":"D3DPROCESSVERTICES_NOCOLOR","features":[314]},{"name":"D3DPROCESSVERTICES_OPMASK","features":[314]},{"name":"D3DPROCESSVERTICES_TRANSFORM","features":[314]},{"name":"D3DPROCESSVERTICES_TRANSFORMLIGHT","features":[314]},{"name":"D3DPROCESSVERTICES_UPDATEEXTENTS","features":[314]},{"name":"D3DPS20CAPS_ARBITRARYSWIZZLE","features":[314]},{"name":"D3DPS20CAPS_GRADIENTINSTRUCTIONS","features":[314]},{"name":"D3DPS20CAPS_NODEPENDENTREADLIMIT","features":[314]},{"name":"D3DPS20CAPS_NOTEXINSTRUCTIONLIMIT","features":[314]},{"name":"D3DPS20CAPS_PREDICATION","features":[314]},{"name":"D3DPS20_MAX_DYNAMICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DPS20_MAX_NUMINSTRUCTIONSLOTS","features":[314]},{"name":"D3DPS20_MAX_NUMTEMPS","features":[314]},{"name":"D3DPS20_MAX_STATICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DPS20_MIN_DYNAMICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DPS20_MIN_NUMINSTRUCTIONSLOTS","features":[314]},{"name":"D3DPS20_MIN_NUMTEMPS","features":[314]},{"name":"D3DPS20_MIN_STATICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DPSHADECAPS_ALPHAFLATBLEND","features":[314]},{"name":"D3DPSHADECAPS_ALPHAFLATSTIPPLED","features":[314]},{"name":"D3DPSHADECAPS_ALPHAGOURAUDBLEND","features":[314]},{"name":"D3DPSHADECAPS_ALPHAGOURAUDSTIPPLED","features":[314]},{"name":"D3DPSHADECAPS_ALPHAPHONGBLEND","features":[314]},{"name":"D3DPSHADECAPS_ALPHAPHONGSTIPPLED","features":[314]},{"name":"D3DPSHADECAPS_COLORFLATMONO","features":[314]},{"name":"D3DPSHADECAPS_COLORFLATRGB","features":[314]},{"name":"D3DPSHADECAPS_COLORGOURAUDMONO","features":[314]},{"name":"D3DPSHADECAPS_COLORGOURAUDRGB","features":[314]},{"name":"D3DPSHADECAPS_COLORPHONGMONO","features":[314]},{"name":"D3DPSHADECAPS_COLORPHONGRGB","features":[314]},{"name":"D3DPSHADECAPS_FOGFLAT","features":[314]},{"name":"D3DPSHADECAPS_FOGGOURAUD","features":[314]},{"name":"D3DPSHADECAPS_FOGPHONG","features":[314]},{"name":"D3DPSHADECAPS_SPECULARFLATMONO","features":[314]},{"name":"D3DPSHADECAPS_SPECULARFLATRGB","features":[314]},{"name":"D3DPSHADECAPS_SPECULARGOURAUDMONO","features":[314]},{"name":"D3DPSHADECAPS_SPECULARGOURAUDRGB","features":[314]},{"name":"D3DPSHADECAPS_SPECULARPHONGMONO","features":[314]},{"name":"D3DPSHADECAPS_SPECULARPHONGRGB","features":[314]},{"name":"D3DPSHADERCAPS2_0","features":[314]},{"name":"D3DPTADDRESSCAPS_BORDER","features":[314]},{"name":"D3DPTADDRESSCAPS_CLAMP","features":[314]},{"name":"D3DPTADDRESSCAPS_INDEPENDENTUV","features":[314]},{"name":"D3DPTADDRESSCAPS_MIRROR","features":[314]},{"name":"D3DPTADDRESSCAPS_MIRRORONCE","features":[314]},{"name":"D3DPTADDRESSCAPS_WRAP","features":[314]},{"name":"D3DPTBLENDCAPS_ADD","features":[314]},{"name":"D3DPTBLENDCAPS_COPY","features":[314]},{"name":"D3DPTBLENDCAPS_DECAL","features":[314]},{"name":"D3DPTBLENDCAPS_DECALALPHA","features":[314]},{"name":"D3DPTBLENDCAPS_DECALMASK","features":[314]},{"name":"D3DPTBLENDCAPS_MODULATE","features":[314]},{"name":"D3DPTBLENDCAPS_MODULATEALPHA","features":[314]},{"name":"D3DPTBLENDCAPS_MODULATEMASK","features":[314]},{"name":"D3DPTEXTURECAPS_ALPHA","features":[314]},{"name":"D3DPTEXTURECAPS_ALPHAPALETTE","features":[314]},{"name":"D3DPTEXTURECAPS_BORDER","features":[314]},{"name":"D3DPTEXTURECAPS_COLORKEYBLEND","features":[314]},{"name":"D3DPTEXTURECAPS_CUBEMAP","features":[314]},{"name":"D3DPTEXTURECAPS_CUBEMAP_POW2","features":[314]},{"name":"D3DPTEXTURECAPS_MIPCUBEMAP","features":[314]},{"name":"D3DPTEXTURECAPS_MIPMAP","features":[314]},{"name":"D3DPTEXTURECAPS_MIPVOLUMEMAP","features":[314]},{"name":"D3DPTEXTURECAPS_NONPOW2CONDITIONAL","features":[314]},{"name":"D3DPTEXTURECAPS_NOPROJECTEDBUMPENV","features":[314]},{"name":"D3DPTEXTURECAPS_PERSPECTIVE","features":[314]},{"name":"D3DPTEXTURECAPS_POW2","features":[314]},{"name":"D3DPTEXTURECAPS_PROJECTED","features":[314]},{"name":"D3DPTEXTURECAPS_SQUAREONLY","features":[314]},{"name":"D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE","features":[314]},{"name":"D3DPTEXTURECAPS_TRANSPARENCY","features":[314]},{"name":"D3DPTEXTURECAPS_VOLUMEMAP","features":[314]},{"name":"D3DPTEXTURECAPS_VOLUMEMAP_POW2","features":[314]},{"name":"D3DPTFILTERCAPS_CONVOLUTIONMONO","features":[314]},{"name":"D3DPTFILTERCAPS_LINEAR","features":[314]},{"name":"D3DPTFILTERCAPS_LINEARMIPLINEAR","features":[314]},{"name":"D3DPTFILTERCAPS_LINEARMIPNEAREST","features":[314]},{"name":"D3DPTFILTERCAPS_MAGFAFLATCUBIC","features":[314]},{"name":"D3DPTFILTERCAPS_MAGFANISOTROPIC","features":[314]},{"name":"D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC","features":[314]},{"name":"D3DPTFILTERCAPS_MAGFGAUSSIANQUAD","features":[314]},{"name":"D3DPTFILTERCAPS_MAGFLINEAR","features":[314]},{"name":"D3DPTFILTERCAPS_MAGFPOINT","features":[314]},{"name":"D3DPTFILTERCAPS_MAGFPYRAMIDALQUAD","features":[314]},{"name":"D3DPTFILTERCAPS_MINFANISOTROPIC","features":[314]},{"name":"D3DPTFILTERCAPS_MINFGAUSSIANQUAD","features":[314]},{"name":"D3DPTFILTERCAPS_MINFLINEAR","features":[314]},{"name":"D3DPTFILTERCAPS_MINFPOINT","features":[314]},{"name":"D3DPTFILTERCAPS_MINFPYRAMIDALQUAD","features":[314]},{"name":"D3DPTFILTERCAPS_MIPFLINEAR","features":[314]},{"name":"D3DPTFILTERCAPS_MIPFPOINT","features":[314]},{"name":"D3DPTFILTERCAPS_MIPLINEAR","features":[314]},{"name":"D3DPTFILTERCAPS_MIPNEAREST","features":[314]},{"name":"D3DPTFILTERCAPS_NEAREST","features":[314]},{"name":"D3DPT_LINELIST","features":[314]},{"name":"D3DPT_LINESTRIP","features":[314]},{"name":"D3DPT_POINTLIST","features":[314]},{"name":"D3DPT_TRIANGLEFAN","features":[314]},{"name":"D3DPT_TRIANGLELIST","features":[314]},{"name":"D3DPT_TRIANGLESTRIP","features":[314]},{"name":"D3DPV_DONOTCOPYDATA","features":[314]},{"name":"D3DQUERYTYPE","features":[314]},{"name":"D3DQUERYTYPE_BANDWIDTHTIMINGS","features":[314]},{"name":"D3DQUERYTYPE_CACHEUTILIZATION","features":[314]},{"name":"D3DQUERYTYPE_EVENT","features":[314]},{"name":"D3DQUERYTYPE_INTERFACETIMINGS","features":[314]},{"name":"D3DQUERYTYPE_MEMORYPRESSURE","features":[314]},{"name":"D3DQUERYTYPE_OCCLUSION","features":[314]},{"name":"D3DQUERYTYPE_PIPELINETIMINGS","features":[314]},{"name":"D3DQUERYTYPE_PIXELTIMINGS","features":[314]},{"name":"D3DQUERYTYPE_RESOURCEMANAGER","features":[314]},{"name":"D3DQUERYTYPE_TIMESTAMP","features":[314]},{"name":"D3DQUERYTYPE_TIMESTAMPDISJOINT","features":[314]},{"name":"D3DQUERYTYPE_TIMESTAMPFREQ","features":[314]},{"name":"D3DQUERYTYPE_VCACHE","features":[314]},{"name":"D3DQUERYTYPE_VERTEXSTATS","features":[314]},{"name":"D3DQUERYTYPE_VERTEXTIMINGS","features":[314]},{"name":"D3DRANGE","features":[314]},{"name":"D3DRASTER_STATUS","features":[305,314]},{"name":"D3DRECT","features":[314]},{"name":"D3DRECTPATCH_INFO","features":[314]},{"name":"D3DRENDERSTATETYPE","features":[314]},{"name":"D3DRENDERSTATE_WRAPBIAS","features":[314]},{"name":"D3DRESOURCESTATS","features":[305,314]},{"name":"D3DRESOURCETYPE","features":[314]},{"name":"D3DRS_ADAPTIVETESS_W","features":[314]},{"name":"D3DRS_ADAPTIVETESS_X","features":[314]},{"name":"D3DRS_ADAPTIVETESS_Y","features":[314]},{"name":"D3DRS_ADAPTIVETESS_Z","features":[314]},{"name":"D3DRS_ALPHABLENDENABLE","features":[314]},{"name":"D3DRS_ALPHAFUNC","features":[314]},{"name":"D3DRS_ALPHAREF","features":[314]},{"name":"D3DRS_ALPHATESTENABLE","features":[314]},{"name":"D3DRS_AMBIENT","features":[314]},{"name":"D3DRS_AMBIENTMATERIALSOURCE","features":[314]},{"name":"D3DRS_ANTIALIASEDLINEENABLE","features":[314]},{"name":"D3DRS_BLENDFACTOR","features":[314]},{"name":"D3DRS_BLENDOP","features":[314]},{"name":"D3DRS_BLENDOPALPHA","features":[314]},{"name":"D3DRS_CCW_STENCILFAIL","features":[314]},{"name":"D3DRS_CCW_STENCILFUNC","features":[314]},{"name":"D3DRS_CCW_STENCILPASS","features":[314]},{"name":"D3DRS_CCW_STENCILZFAIL","features":[314]},{"name":"D3DRS_CLIPPING","features":[314]},{"name":"D3DRS_CLIPPLANEENABLE","features":[314]},{"name":"D3DRS_COLORVERTEX","features":[314]},{"name":"D3DRS_COLORWRITEENABLE","features":[314]},{"name":"D3DRS_COLORWRITEENABLE1","features":[314]},{"name":"D3DRS_COLORWRITEENABLE2","features":[314]},{"name":"D3DRS_COLORWRITEENABLE3","features":[314]},{"name":"D3DRS_CULLMODE","features":[314]},{"name":"D3DRS_DEBUGMONITORTOKEN","features":[314]},{"name":"D3DRS_DEPTHBIAS","features":[314]},{"name":"D3DRS_DESTBLEND","features":[314]},{"name":"D3DRS_DESTBLENDALPHA","features":[314]},{"name":"D3DRS_DIFFUSEMATERIALSOURCE","features":[314]},{"name":"D3DRS_DITHERENABLE","features":[314]},{"name":"D3DRS_EMISSIVEMATERIALSOURCE","features":[314]},{"name":"D3DRS_ENABLEADAPTIVETESSELLATION","features":[314]},{"name":"D3DRS_FILLMODE","features":[314]},{"name":"D3DRS_FOGCOLOR","features":[314]},{"name":"D3DRS_FOGDENSITY","features":[314]},{"name":"D3DRS_FOGENABLE","features":[314]},{"name":"D3DRS_FOGEND","features":[314]},{"name":"D3DRS_FOGSTART","features":[314]},{"name":"D3DRS_FOGTABLEMODE","features":[314]},{"name":"D3DRS_FOGVERTEXMODE","features":[314]},{"name":"D3DRS_INDEXEDVERTEXBLENDENABLE","features":[314]},{"name":"D3DRS_LASTPIXEL","features":[314]},{"name":"D3DRS_LIGHTING","features":[314]},{"name":"D3DRS_LOCALVIEWER","features":[314]},{"name":"D3DRS_MAXTESSELLATIONLEVEL","features":[314]},{"name":"D3DRS_MINTESSELLATIONLEVEL","features":[314]},{"name":"D3DRS_MULTISAMPLEANTIALIAS","features":[314]},{"name":"D3DRS_MULTISAMPLEMASK","features":[314]},{"name":"D3DRS_NORMALDEGREE","features":[314]},{"name":"D3DRS_NORMALIZENORMALS","features":[314]},{"name":"D3DRS_PATCHEDGESTYLE","features":[314]},{"name":"D3DRS_POINTSCALEENABLE","features":[314]},{"name":"D3DRS_POINTSCALE_A","features":[314]},{"name":"D3DRS_POINTSCALE_B","features":[314]},{"name":"D3DRS_POINTSCALE_C","features":[314]},{"name":"D3DRS_POINTSIZE","features":[314]},{"name":"D3DRS_POINTSIZE_MAX","features":[314]},{"name":"D3DRS_POINTSIZE_MIN","features":[314]},{"name":"D3DRS_POINTSPRITEENABLE","features":[314]},{"name":"D3DRS_POSITIONDEGREE","features":[314]},{"name":"D3DRS_RANGEFOGENABLE","features":[314]},{"name":"D3DRS_SCISSORTESTENABLE","features":[314]},{"name":"D3DRS_SEPARATEALPHABLENDENABLE","features":[314]},{"name":"D3DRS_SHADEMODE","features":[314]},{"name":"D3DRS_SLOPESCALEDEPTHBIAS","features":[314]},{"name":"D3DRS_SPECULARENABLE","features":[314]},{"name":"D3DRS_SPECULARMATERIALSOURCE","features":[314]},{"name":"D3DRS_SRCBLEND","features":[314]},{"name":"D3DRS_SRCBLENDALPHA","features":[314]},{"name":"D3DRS_SRGBWRITEENABLE","features":[314]},{"name":"D3DRS_STENCILENABLE","features":[314]},{"name":"D3DRS_STENCILFAIL","features":[314]},{"name":"D3DRS_STENCILFUNC","features":[314]},{"name":"D3DRS_STENCILMASK","features":[314]},{"name":"D3DRS_STENCILPASS","features":[314]},{"name":"D3DRS_STENCILREF","features":[314]},{"name":"D3DRS_STENCILWRITEMASK","features":[314]},{"name":"D3DRS_STENCILZFAIL","features":[314]},{"name":"D3DRS_TEXTUREFACTOR","features":[314]},{"name":"D3DRS_TWEENFACTOR","features":[314]},{"name":"D3DRS_TWOSIDEDSTENCILMODE","features":[314]},{"name":"D3DRS_VERTEXBLEND","features":[314]},{"name":"D3DRS_WRAP0","features":[314]},{"name":"D3DRS_WRAP1","features":[314]},{"name":"D3DRS_WRAP10","features":[314]},{"name":"D3DRS_WRAP11","features":[314]},{"name":"D3DRS_WRAP12","features":[314]},{"name":"D3DRS_WRAP13","features":[314]},{"name":"D3DRS_WRAP14","features":[314]},{"name":"D3DRS_WRAP15","features":[314]},{"name":"D3DRS_WRAP2","features":[314]},{"name":"D3DRS_WRAP3","features":[314]},{"name":"D3DRS_WRAP4","features":[314]},{"name":"D3DRS_WRAP5","features":[314]},{"name":"D3DRS_WRAP6","features":[314]},{"name":"D3DRS_WRAP7","features":[314]},{"name":"D3DRS_WRAP8","features":[314]},{"name":"D3DRS_WRAP9","features":[314]},{"name":"D3DRS_ZENABLE","features":[314]},{"name":"D3DRS_ZFUNC","features":[314]},{"name":"D3DRS_ZWRITEENABLE","features":[314]},{"name":"D3DRTYPECOUNT","features":[314]},{"name":"D3DRTYPE_CUBETEXTURE","features":[314]},{"name":"D3DRTYPE_INDEXBUFFER","features":[314]},{"name":"D3DRTYPE_SURFACE","features":[314]},{"name":"D3DRTYPE_TEXTURE","features":[314]},{"name":"D3DRTYPE_VERTEXBUFFER","features":[314]},{"name":"D3DRTYPE_VOLUME","features":[314]},{"name":"D3DRTYPE_VOLUMETEXTURE","features":[314]},{"name":"D3DSAMPLERSTATETYPE","features":[314]},{"name":"D3DSAMPLER_TEXTURE_TYPE","features":[314]},{"name":"D3DSAMP_ADDRESSU","features":[314]},{"name":"D3DSAMP_ADDRESSV","features":[314]},{"name":"D3DSAMP_ADDRESSW","features":[314]},{"name":"D3DSAMP_BORDERCOLOR","features":[314]},{"name":"D3DSAMP_DMAPOFFSET","features":[314]},{"name":"D3DSAMP_ELEMENTINDEX","features":[314]},{"name":"D3DSAMP_MAGFILTER","features":[314]},{"name":"D3DSAMP_MAXANISOTROPY","features":[314]},{"name":"D3DSAMP_MAXMIPLEVEL","features":[314]},{"name":"D3DSAMP_MINFILTER","features":[314]},{"name":"D3DSAMP_MIPFILTER","features":[314]},{"name":"D3DSAMP_MIPMAPLODBIAS","features":[314]},{"name":"D3DSAMP_SRGBTEXTURE","features":[314]},{"name":"D3DSBT_ALL","features":[314]},{"name":"D3DSBT_PIXELSTATE","features":[314]},{"name":"D3DSBT_VERTEXSTATE","features":[314]},{"name":"D3DSCANLINEORDERING","features":[314]},{"name":"D3DSCANLINEORDERING_INTERLACED","features":[314]},{"name":"D3DSCANLINEORDERING_PROGRESSIVE","features":[314]},{"name":"D3DSCANLINEORDERING_UNKNOWN","features":[314]},{"name":"D3DSETSTATUS_EXTENTS","features":[314]},{"name":"D3DSETSTATUS_STATUS","features":[314]},{"name":"D3DSGR_CALIBRATE","features":[314]},{"name":"D3DSGR_NO_CALIBRATION","features":[314]},{"name":"D3DSHADEMODE","features":[314]},{"name":"D3DSHADER_ADDRESSMODE_SHIFT","features":[314]},{"name":"D3DSHADER_ADDRESSMODE_TYPE","features":[314]},{"name":"D3DSHADER_ADDRMODE_ABSOLUTE","features":[314]},{"name":"D3DSHADER_ADDRMODE_RELATIVE","features":[314]},{"name":"D3DSHADER_COMPARISON","features":[314]},{"name":"D3DSHADER_COMPARISON_SHIFT","features":[314]},{"name":"D3DSHADER_INSTRUCTION_OPCODE_TYPE","features":[314]},{"name":"D3DSHADER_MIN_PRECISION","features":[314]},{"name":"D3DSHADER_MISCTYPE_OFFSETS","features":[314]},{"name":"D3DSHADER_PARAM_REGISTER_TYPE","features":[314]},{"name":"D3DSHADER_PARAM_SRCMOD_TYPE","features":[314]},{"name":"D3DSHADE_FLAT","features":[314]},{"name":"D3DSHADE_GOURAUD","features":[314]},{"name":"D3DSHADE_PHONG","features":[314]},{"name":"D3DSIO_ABS","features":[314]},{"name":"D3DSIO_ADD","features":[314]},{"name":"D3DSIO_BEM","features":[314]},{"name":"D3DSIO_BREAK","features":[314]},{"name":"D3DSIO_BREAKC","features":[314]},{"name":"D3DSIO_BREAKP","features":[314]},{"name":"D3DSIO_CALL","features":[314]},{"name":"D3DSIO_CALLNZ","features":[314]},{"name":"D3DSIO_CMP","features":[314]},{"name":"D3DSIO_CND","features":[314]},{"name":"D3DSIO_COMMENT","features":[314]},{"name":"D3DSIO_CRS","features":[314]},{"name":"D3DSIO_DCL","features":[314]},{"name":"D3DSIO_DEF","features":[314]},{"name":"D3DSIO_DEFB","features":[314]},{"name":"D3DSIO_DEFI","features":[314]},{"name":"D3DSIO_DP2ADD","features":[314]},{"name":"D3DSIO_DP3","features":[314]},{"name":"D3DSIO_DP4","features":[314]},{"name":"D3DSIO_DST","features":[314]},{"name":"D3DSIO_DSX","features":[314]},{"name":"D3DSIO_DSY","features":[314]},{"name":"D3DSIO_ELSE","features":[314]},{"name":"D3DSIO_END","features":[314]},{"name":"D3DSIO_ENDIF","features":[314]},{"name":"D3DSIO_ENDLOOP","features":[314]},{"name":"D3DSIO_ENDREP","features":[314]},{"name":"D3DSIO_EXP","features":[314]},{"name":"D3DSIO_EXPP","features":[314]},{"name":"D3DSIO_FRC","features":[314]},{"name":"D3DSIO_IF","features":[314]},{"name":"D3DSIO_IFC","features":[314]},{"name":"D3DSIO_LABEL","features":[314]},{"name":"D3DSIO_LIT","features":[314]},{"name":"D3DSIO_LOG","features":[314]},{"name":"D3DSIO_LOGP","features":[314]},{"name":"D3DSIO_LOOP","features":[314]},{"name":"D3DSIO_LRP","features":[314]},{"name":"D3DSIO_M3x2","features":[314]},{"name":"D3DSIO_M3x3","features":[314]},{"name":"D3DSIO_M3x4","features":[314]},{"name":"D3DSIO_M4x3","features":[314]},{"name":"D3DSIO_M4x4","features":[314]},{"name":"D3DSIO_MAD","features":[314]},{"name":"D3DSIO_MAX","features":[314]},{"name":"D3DSIO_MIN","features":[314]},{"name":"D3DSIO_MOV","features":[314]},{"name":"D3DSIO_MOVA","features":[314]},{"name":"D3DSIO_MUL","features":[314]},{"name":"D3DSIO_NOP","features":[314]},{"name":"D3DSIO_NRM","features":[314]},{"name":"D3DSIO_PHASE","features":[314]},{"name":"D3DSIO_POW","features":[314]},{"name":"D3DSIO_RCP","features":[314]},{"name":"D3DSIO_REP","features":[314]},{"name":"D3DSIO_RESERVED0","features":[314]},{"name":"D3DSIO_RET","features":[314]},{"name":"D3DSIO_RSQ","features":[314]},{"name":"D3DSIO_SETP","features":[314]},{"name":"D3DSIO_SGE","features":[314]},{"name":"D3DSIO_SGN","features":[314]},{"name":"D3DSIO_SINCOS","features":[314]},{"name":"D3DSIO_SLT","features":[314]},{"name":"D3DSIO_SUB","features":[314]},{"name":"D3DSIO_TEX","features":[314]},{"name":"D3DSIO_TEXBEM","features":[314]},{"name":"D3DSIO_TEXBEML","features":[314]},{"name":"D3DSIO_TEXCOORD","features":[314]},{"name":"D3DSIO_TEXDEPTH","features":[314]},{"name":"D3DSIO_TEXDP3","features":[314]},{"name":"D3DSIO_TEXDP3TEX","features":[314]},{"name":"D3DSIO_TEXKILL","features":[314]},{"name":"D3DSIO_TEXLDD","features":[314]},{"name":"D3DSIO_TEXLDL","features":[314]},{"name":"D3DSIO_TEXM3x2DEPTH","features":[314]},{"name":"D3DSIO_TEXM3x2PAD","features":[314]},{"name":"D3DSIO_TEXM3x2TEX","features":[314]},{"name":"D3DSIO_TEXM3x3","features":[314]},{"name":"D3DSIO_TEXM3x3PAD","features":[314]},{"name":"D3DSIO_TEXM3x3SPEC","features":[314]},{"name":"D3DSIO_TEXM3x3TEX","features":[314]},{"name":"D3DSIO_TEXM3x3VSPEC","features":[314]},{"name":"D3DSIO_TEXREG2AR","features":[314]},{"name":"D3DSIO_TEXREG2GB","features":[314]},{"name":"D3DSIO_TEXREG2RGB","features":[314]},{"name":"D3DSI_COISSUE","features":[314]},{"name":"D3DSI_COMMENTSIZE_MASK","features":[314]},{"name":"D3DSI_COMMENTSIZE_SHIFT","features":[314]},{"name":"D3DSI_INSTLENGTH_MASK","features":[314]},{"name":"D3DSI_INSTLENGTH_SHIFT","features":[314]},{"name":"D3DSI_OPCODE_MASK","features":[314]},{"name":"D3DSMO_FACE","features":[314]},{"name":"D3DSMO_POSITION","features":[314]},{"name":"D3DSPAN","features":[314]},{"name":"D3DSPC_EQ","features":[314]},{"name":"D3DSPC_GE","features":[314]},{"name":"D3DSPC_GT","features":[314]},{"name":"D3DSPC_LE","features":[314]},{"name":"D3DSPC_LT","features":[314]},{"name":"D3DSPC_NE","features":[314]},{"name":"D3DSPC_RESERVED0","features":[314]},{"name":"D3DSPC_RESERVED1","features":[314]},{"name":"D3DSPD_IUNKNOWN","features":[314]},{"name":"D3DSPR_ADDR","features":[314]},{"name":"D3DSPR_ATTROUT","features":[314]},{"name":"D3DSPR_COLOROUT","features":[314]},{"name":"D3DSPR_CONST","features":[314]},{"name":"D3DSPR_CONST2","features":[314]},{"name":"D3DSPR_CONST3","features":[314]},{"name":"D3DSPR_CONST4","features":[314]},{"name":"D3DSPR_CONSTBOOL","features":[314]},{"name":"D3DSPR_CONSTINT","features":[314]},{"name":"D3DSPR_DEPTHOUT","features":[314]},{"name":"D3DSPR_INPUT","features":[314]},{"name":"D3DSPR_LABEL","features":[314]},{"name":"D3DSPR_LOOP","features":[314]},{"name":"D3DSPR_MISCTYPE","features":[314]},{"name":"D3DSPR_OUTPUT","features":[314]},{"name":"D3DSPR_PREDICATE","features":[314]},{"name":"D3DSPR_RASTOUT","features":[314]},{"name":"D3DSPR_SAMPLER","features":[314]},{"name":"D3DSPR_TEMP","features":[314]},{"name":"D3DSPR_TEMPFLOAT16","features":[314]},{"name":"D3DSPR_TEXCRDOUT","features":[314]},{"name":"D3DSPR_TEXTURE","features":[314]},{"name":"D3DSPSM_ABS","features":[314]},{"name":"D3DSPSM_ABSNEG","features":[314]},{"name":"D3DSPSM_BIAS","features":[314]},{"name":"D3DSPSM_BIASNEG","features":[314]},{"name":"D3DSPSM_COMP","features":[314]},{"name":"D3DSPSM_DW","features":[314]},{"name":"D3DSPSM_DZ","features":[314]},{"name":"D3DSPSM_NEG","features":[314]},{"name":"D3DSPSM_NONE","features":[314]},{"name":"D3DSPSM_NOT","features":[314]},{"name":"D3DSPSM_SIGN","features":[314]},{"name":"D3DSPSM_SIGNNEG","features":[314]},{"name":"D3DSPSM_X2","features":[314]},{"name":"D3DSPSM_X2NEG","features":[314]},{"name":"D3DSP_DCL_USAGEINDEX_MASK","features":[314]},{"name":"D3DSP_DCL_USAGEINDEX_SHIFT","features":[314]},{"name":"D3DSP_DCL_USAGE_MASK","features":[314]},{"name":"D3DSP_DCL_USAGE_SHIFT","features":[314]},{"name":"D3DSP_DSTMOD_MASK","features":[314]},{"name":"D3DSP_DSTMOD_SHIFT","features":[314]},{"name":"D3DSP_DSTSHIFT_MASK","features":[314]},{"name":"D3DSP_DSTSHIFT_SHIFT","features":[314]},{"name":"D3DSP_MIN_PRECISION_MASK","features":[314]},{"name":"D3DSP_MIN_PRECISION_SHIFT","features":[314]},{"name":"D3DSP_OPCODESPECIFICCONTROL_MASK","features":[314]},{"name":"D3DSP_OPCODESPECIFICCONTROL_SHIFT","features":[314]},{"name":"D3DSP_REGNUM_MASK","features":[314]},{"name":"D3DSP_REGTYPE_MASK","features":[314]},{"name":"D3DSP_REGTYPE_MASK2","features":[314]},{"name":"D3DSP_REGTYPE_SHIFT","features":[314]},{"name":"D3DSP_REGTYPE_SHIFT2","features":[314]},{"name":"D3DSP_SRCMOD_MASK","features":[314]},{"name":"D3DSP_SRCMOD_SHIFT","features":[314]},{"name":"D3DSP_SWIZZLE_MASK","features":[314]},{"name":"D3DSP_SWIZZLE_SHIFT","features":[314]},{"name":"D3DSP_TEXTURETYPE_MASK","features":[314]},{"name":"D3DSP_TEXTURETYPE_SHIFT","features":[314]},{"name":"D3DSP_WRITEMASK_0","features":[314]},{"name":"D3DSP_WRITEMASK_1","features":[314]},{"name":"D3DSP_WRITEMASK_2","features":[314]},{"name":"D3DSP_WRITEMASK_3","features":[314]},{"name":"D3DSP_WRITEMASK_ALL","features":[314]},{"name":"D3DSRO_FOG","features":[314]},{"name":"D3DSRO_POINT_SIZE","features":[314]},{"name":"D3DSRO_POSITION","features":[314]},{"name":"D3DSTATE","features":[314]},{"name":"D3DSTATEBLOCKTYPE","features":[314]},{"name":"D3DSTATE_OVERRIDE_BIAS","features":[314]},{"name":"D3DSTATS","features":[314]},{"name":"D3DSTATUS","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONBACK","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONBOTTOM","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONFRONT","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN0","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN1","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN2","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN3","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN4","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONGEN5","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONLEFT","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONRIGHT","features":[314]},{"name":"D3DSTATUS_CLIPINTERSECTIONTOP","features":[314]},{"name":"D3DSTATUS_CLIPUNIONBACK","features":[314]},{"name":"D3DSTATUS_CLIPUNIONBOTTOM","features":[314]},{"name":"D3DSTATUS_CLIPUNIONFRONT","features":[314]},{"name":"D3DSTATUS_CLIPUNIONGEN0","features":[314]},{"name":"D3DSTATUS_CLIPUNIONGEN1","features":[314]},{"name":"D3DSTATUS_CLIPUNIONGEN2","features":[314]},{"name":"D3DSTATUS_CLIPUNIONGEN3","features":[314]},{"name":"D3DSTATUS_CLIPUNIONGEN4","features":[314]},{"name":"D3DSTATUS_CLIPUNIONGEN5","features":[314]},{"name":"D3DSTATUS_CLIPUNIONLEFT","features":[314]},{"name":"D3DSTATUS_CLIPUNIONRIGHT","features":[314]},{"name":"D3DSTATUS_CLIPUNIONTOP","features":[314]},{"name":"D3DSTATUS_ZNOTVISIBLE","features":[314]},{"name":"D3DSTENCILCAPS_DECR","features":[314]},{"name":"D3DSTENCILCAPS_DECRSAT","features":[314]},{"name":"D3DSTENCILCAPS_INCR","features":[314]},{"name":"D3DSTENCILCAPS_INCRSAT","features":[314]},{"name":"D3DSTENCILCAPS_INVERT","features":[314]},{"name":"D3DSTENCILCAPS_KEEP","features":[314]},{"name":"D3DSTENCILCAPS_REPLACE","features":[314]},{"name":"D3DSTENCILCAPS_TWOSIDED","features":[314]},{"name":"D3DSTENCILCAPS_ZERO","features":[314]},{"name":"D3DSTENCILOP","features":[314]},{"name":"D3DSTENCILOP_DECR","features":[314]},{"name":"D3DSTENCILOP_DECRSAT","features":[314]},{"name":"D3DSTENCILOP_INCR","features":[314]},{"name":"D3DSTENCILOP_INCRSAT","features":[314]},{"name":"D3DSTENCILOP_INVERT","features":[314]},{"name":"D3DSTENCILOP_KEEP","features":[314]},{"name":"D3DSTENCILOP_REPLACE","features":[314]},{"name":"D3DSTENCILOP_ZERO","features":[314]},{"name":"D3DSTREAMSOURCE_INDEXEDDATA","features":[314]},{"name":"D3DSTREAMSOURCE_INSTANCEDATA","features":[314]},{"name":"D3DSTT_2D","features":[314]},{"name":"D3DSTT_CUBE","features":[314]},{"name":"D3DSTT_UNKNOWN","features":[314]},{"name":"D3DSTT_VOLUME","features":[314]},{"name":"D3DSURFACE_DESC","features":[314]},{"name":"D3DSWAPEFFECT","features":[314]},{"name":"D3DSWAPEFFECT_COPY","features":[314]},{"name":"D3DSWAPEFFECT_DISCARD","features":[314]},{"name":"D3DSWAPEFFECT_FLIP","features":[314]},{"name":"D3DSWAPEFFECT_FLIPEX","features":[314]},{"name":"D3DSWAPEFFECT_OVERLAY","features":[314]},{"name":"D3DTADDRESS_BORDER","features":[314]},{"name":"D3DTADDRESS_CLAMP","features":[314]},{"name":"D3DTADDRESS_MIRROR","features":[314]},{"name":"D3DTADDRESS_MIRRORONCE","features":[314]},{"name":"D3DTADDRESS_WRAP","features":[314]},{"name":"D3DTA_ALPHAREPLICATE","features":[314]},{"name":"D3DTA_COMPLEMENT","features":[314]},{"name":"D3DTA_CONSTANT","features":[314]},{"name":"D3DTA_CURRENT","features":[314]},{"name":"D3DTA_DIFFUSE","features":[314]},{"name":"D3DTA_SELECTMASK","features":[314]},{"name":"D3DTA_SPECULAR","features":[314]},{"name":"D3DTA_TEMP","features":[314]},{"name":"D3DTA_TEXTURE","features":[314]},{"name":"D3DTA_TFACTOR","features":[314]},{"name":"D3DTBLEND_ADD","features":[314]},{"name":"D3DTBLEND_COPY","features":[314]},{"name":"D3DTBLEND_DECAL","features":[314]},{"name":"D3DTBLEND_DECALALPHA","features":[314]},{"name":"D3DTBLEND_DECALMASK","features":[314]},{"name":"D3DTBLEND_MODULATE","features":[314]},{"name":"D3DTBLEND_MODULATEALPHA","features":[314]},{"name":"D3DTBLEND_MODULATEMASK","features":[314]},{"name":"D3DTEXF_ANISOTROPIC","features":[314]},{"name":"D3DTEXF_CONVOLUTIONMONO","features":[314]},{"name":"D3DTEXF_GAUSSIANQUAD","features":[314]},{"name":"D3DTEXF_LINEAR","features":[314]},{"name":"D3DTEXF_NONE","features":[314]},{"name":"D3DTEXF_POINT","features":[314]},{"name":"D3DTEXF_PYRAMIDALQUAD","features":[314]},{"name":"D3DTEXOPCAPS_ADD","features":[314]},{"name":"D3DTEXOPCAPS_ADDSIGNED","features":[314]},{"name":"D3DTEXOPCAPS_ADDSIGNED2X","features":[314]},{"name":"D3DTEXOPCAPS_ADDSMOOTH","features":[314]},{"name":"D3DTEXOPCAPS_BLENDCURRENTALPHA","features":[314]},{"name":"D3DTEXOPCAPS_BLENDDIFFUSEALPHA","features":[314]},{"name":"D3DTEXOPCAPS_BLENDFACTORALPHA","features":[314]},{"name":"D3DTEXOPCAPS_BLENDTEXTUREALPHA","features":[314]},{"name":"D3DTEXOPCAPS_BLENDTEXTUREALPHAPM","features":[314]},{"name":"D3DTEXOPCAPS_BUMPENVMAP","features":[314]},{"name":"D3DTEXOPCAPS_BUMPENVMAPLUMINANCE","features":[314]},{"name":"D3DTEXOPCAPS_DISABLE","features":[314]},{"name":"D3DTEXOPCAPS_DOTPRODUCT3","features":[314]},{"name":"D3DTEXOPCAPS_LERP","features":[314]},{"name":"D3DTEXOPCAPS_MODULATE","features":[314]},{"name":"D3DTEXOPCAPS_MODULATE2X","features":[314]},{"name":"D3DTEXOPCAPS_MODULATE4X","features":[314]},{"name":"D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR","features":[314]},{"name":"D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA","features":[314]},{"name":"D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR","features":[314]},{"name":"D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA","features":[314]},{"name":"D3DTEXOPCAPS_MULTIPLYADD","features":[314]},{"name":"D3DTEXOPCAPS_PREMODULATE","features":[314]},{"name":"D3DTEXOPCAPS_SELECTARG1","features":[314]},{"name":"D3DTEXOPCAPS_SELECTARG2","features":[314]},{"name":"D3DTEXOPCAPS_SUBTRACT","features":[314]},{"name":"D3DTEXTUREADDRESS","features":[314]},{"name":"D3DTEXTUREBLEND","features":[314]},{"name":"D3DTEXTUREFILTER","features":[314]},{"name":"D3DTEXTUREFILTERTYPE","features":[314]},{"name":"D3DTEXTURELOAD","features":[314]},{"name":"D3DTEXTUREMAGFILTER","features":[314]},{"name":"D3DTEXTUREMINFILTER","features":[314]},{"name":"D3DTEXTUREMIPFILTER","features":[314]},{"name":"D3DTEXTUREOP","features":[314]},{"name":"D3DTEXTURESTAGESTATETYPE","features":[314]},{"name":"D3DTEXTURETRANSFORMFLAGS","features":[314]},{"name":"D3DTFG_ANISOTROPIC","features":[314]},{"name":"D3DTFG_FLATCUBIC","features":[314]},{"name":"D3DTFG_GAUSSIANCUBIC","features":[314]},{"name":"D3DTFG_LINEAR","features":[314]},{"name":"D3DTFG_POINT","features":[314]},{"name":"D3DTFN_ANISOTROPIC","features":[314]},{"name":"D3DTFN_LINEAR","features":[314]},{"name":"D3DTFN_POINT","features":[314]},{"name":"D3DTFP_LINEAR","features":[314]},{"name":"D3DTFP_NONE","features":[314]},{"name":"D3DTFP_POINT","features":[314]},{"name":"D3DTLVERTEX","features":[314]},{"name":"D3DTOP_ADD","features":[314]},{"name":"D3DTOP_ADDSIGNED","features":[314]},{"name":"D3DTOP_ADDSIGNED2X","features":[314]},{"name":"D3DTOP_ADDSMOOTH","features":[314]},{"name":"D3DTOP_BLENDCURRENTALPHA","features":[314]},{"name":"D3DTOP_BLENDDIFFUSEALPHA","features":[314]},{"name":"D3DTOP_BLENDFACTORALPHA","features":[314]},{"name":"D3DTOP_BLENDTEXTUREALPHA","features":[314]},{"name":"D3DTOP_BLENDTEXTUREALPHAPM","features":[314]},{"name":"D3DTOP_BUMPENVMAP","features":[314]},{"name":"D3DTOP_BUMPENVMAPLUMINANCE","features":[314]},{"name":"D3DTOP_DISABLE","features":[314]},{"name":"D3DTOP_DOTPRODUCT3","features":[314]},{"name":"D3DTOP_LERP","features":[314]},{"name":"D3DTOP_MODULATE","features":[314]},{"name":"D3DTOP_MODULATE2X","features":[314]},{"name":"D3DTOP_MODULATE4X","features":[314]},{"name":"D3DTOP_MODULATEALPHA_ADDCOLOR","features":[314]},{"name":"D3DTOP_MODULATECOLOR_ADDALPHA","features":[314]},{"name":"D3DTOP_MODULATEINVALPHA_ADDCOLOR","features":[314]},{"name":"D3DTOP_MODULATEINVCOLOR_ADDALPHA","features":[314]},{"name":"D3DTOP_MULTIPLYADD","features":[314]},{"name":"D3DTOP_PREMODULATE","features":[314]},{"name":"D3DTOP_SELECTARG1","features":[314]},{"name":"D3DTOP_SELECTARG2","features":[314]},{"name":"D3DTOP_SUBTRACT","features":[314]},{"name":"D3DTRANSFORMCAPS","features":[314]},{"name":"D3DTRANSFORMCAPS_CLIP","features":[314]},{"name":"D3DTRANSFORMDATA","features":[314]},{"name":"D3DTRANSFORMSTATETYPE","features":[314]},{"name":"D3DTRANSFORM_CLIPPED","features":[314]},{"name":"D3DTRANSFORM_UNCLIPPED","features":[314]},{"name":"D3DTRIANGLE","features":[314]},{"name":"D3DTRIFLAG_EDGEENABLE1","features":[314]},{"name":"D3DTRIFLAG_EDGEENABLE2","features":[314]},{"name":"D3DTRIFLAG_EDGEENABLE3","features":[314]},{"name":"D3DTRIFLAG_EVEN","features":[314]},{"name":"D3DTRIFLAG_ODD","features":[314]},{"name":"D3DTRIFLAG_START","features":[314]},{"name":"D3DTRIPATCH_INFO","features":[314]},{"name":"D3DTSS_ALPHAARG0","features":[314]},{"name":"D3DTSS_ALPHAARG1","features":[314]},{"name":"D3DTSS_ALPHAARG2","features":[314]},{"name":"D3DTSS_ALPHAOP","features":[314]},{"name":"D3DTSS_BUMPENVLOFFSET","features":[314]},{"name":"D3DTSS_BUMPENVLSCALE","features":[314]},{"name":"D3DTSS_BUMPENVMAT00","features":[314]},{"name":"D3DTSS_BUMPENVMAT01","features":[314]},{"name":"D3DTSS_BUMPENVMAT10","features":[314]},{"name":"D3DTSS_BUMPENVMAT11","features":[314]},{"name":"D3DTSS_COLORARG0","features":[314]},{"name":"D3DTSS_COLORARG1","features":[314]},{"name":"D3DTSS_COLORARG2","features":[314]},{"name":"D3DTSS_COLOROP","features":[314]},{"name":"D3DTSS_CONSTANT","features":[314]},{"name":"D3DTSS_RESULTARG","features":[314]},{"name":"D3DTSS_TCI_CAMERASPACENORMAL","features":[314]},{"name":"D3DTSS_TCI_CAMERASPACEPOSITION","features":[314]},{"name":"D3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR","features":[314]},{"name":"D3DTSS_TCI_PASSTHRU","features":[314]},{"name":"D3DTSS_TCI_SPHEREMAP","features":[314]},{"name":"D3DTSS_TEXCOORDINDEX","features":[314]},{"name":"D3DTSS_TEXTURETRANSFORMFLAGS","features":[314]},{"name":"D3DTS_PROJECTION","features":[314]},{"name":"D3DTS_TEXTURE0","features":[314]},{"name":"D3DTS_TEXTURE1","features":[314]},{"name":"D3DTS_TEXTURE2","features":[314]},{"name":"D3DTS_TEXTURE3","features":[314]},{"name":"D3DTS_TEXTURE4","features":[314]},{"name":"D3DTS_TEXTURE5","features":[314]},{"name":"D3DTS_TEXTURE6","features":[314]},{"name":"D3DTS_TEXTURE7","features":[314]},{"name":"D3DTS_VIEW","features":[314]},{"name":"D3DTTFF_COUNT1","features":[314]},{"name":"D3DTTFF_COUNT2","features":[314]},{"name":"D3DTTFF_COUNT3","features":[314]},{"name":"D3DTTFF_COUNT4","features":[314]},{"name":"D3DTTFF_DISABLE","features":[314]},{"name":"D3DTTFF_PROJECTED","features":[314]},{"name":"D3DUSAGE_AUTOGENMIPMAP","features":[314]},{"name":"D3DUSAGE_DEPTHSTENCIL","features":[314]},{"name":"D3DUSAGE_DMAP","features":[314]},{"name":"D3DUSAGE_DONOTCLIP","features":[314]},{"name":"D3DUSAGE_DYNAMIC","features":[314]},{"name":"D3DUSAGE_NONSECURE","features":[314]},{"name":"D3DUSAGE_NPATCHES","features":[314]},{"name":"D3DUSAGE_POINTS","features":[314]},{"name":"D3DUSAGE_QUERY_FILTER","features":[314]},{"name":"D3DUSAGE_QUERY_LEGACYBUMPMAP","features":[314]},{"name":"D3DUSAGE_QUERY_POSTPIXELSHADER_BLENDING","features":[314]},{"name":"D3DUSAGE_QUERY_SRGBREAD","features":[314]},{"name":"D3DUSAGE_QUERY_SRGBWRITE","features":[314]},{"name":"D3DUSAGE_QUERY_VERTEXTEXTURE","features":[314]},{"name":"D3DUSAGE_QUERY_WRAPANDMIP","features":[314]},{"name":"D3DUSAGE_RENDERTARGET","features":[314]},{"name":"D3DUSAGE_RESTRICTED_CONTENT","features":[314]},{"name":"D3DUSAGE_RESTRICT_SHARED_RESOURCE","features":[314]},{"name":"D3DUSAGE_RESTRICT_SHARED_RESOURCE_DRIVER","features":[314]},{"name":"D3DUSAGE_RTPATCHES","features":[314]},{"name":"D3DUSAGE_SOFTWAREPROCESSING","features":[314]},{"name":"D3DUSAGE_TEXTAPI","features":[314]},{"name":"D3DUSAGE_WRITEONLY","features":[314]},{"name":"D3DVBCAPS_DONOTCLIP","features":[314]},{"name":"D3DVBCAPS_OPTIMIZED","features":[314]},{"name":"D3DVBCAPS_SYSTEMMEMORY","features":[314]},{"name":"D3DVBCAPS_WRITEONLY","features":[314]},{"name":"D3DVBF_0WEIGHTS","features":[314]},{"name":"D3DVBF_1WEIGHTS","features":[314]},{"name":"D3DVBF_2WEIGHTS","features":[314]},{"name":"D3DVBF_3WEIGHTS","features":[314]},{"name":"D3DVBF_DISABLE","features":[314]},{"name":"D3DVBF_TWEENING","features":[314]},{"name":"D3DVERTEX","features":[314]},{"name":"D3DVERTEXBLENDFLAGS","features":[314]},{"name":"D3DVERTEXBUFFERDESC","features":[314]},{"name":"D3DVERTEXBUFFER_DESC","features":[314]},{"name":"D3DVERTEXELEMENT9","features":[314]},{"name":"D3DVERTEXTEXTURESAMPLER0","features":[314]},{"name":"D3DVERTEXTEXTURESAMPLER1","features":[314]},{"name":"D3DVERTEXTEXTURESAMPLER2","features":[314]},{"name":"D3DVERTEXTEXTURESAMPLER3","features":[314]},{"name":"D3DVERTEXTYPE","features":[314]},{"name":"D3DVIEWPORT","features":[314]},{"name":"D3DVIEWPORT2","features":[314]},{"name":"D3DVIEWPORT7","features":[314]},{"name":"D3DVIEWPORT9","features":[314]},{"name":"D3DVIS_INSIDE_BOTTOM","features":[314]},{"name":"D3DVIS_INSIDE_FAR","features":[314]},{"name":"D3DVIS_INSIDE_FRUSTUM","features":[314]},{"name":"D3DVIS_INSIDE_LEFT","features":[314]},{"name":"D3DVIS_INSIDE_NEAR","features":[314]},{"name":"D3DVIS_INSIDE_RIGHT","features":[314]},{"name":"D3DVIS_INSIDE_TOP","features":[314]},{"name":"D3DVIS_INTERSECT_BOTTOM","features":[314]},{"name":"D3DVIS_INTERSECT_FAR","features":[314]},{"name":"D3DVIS_INTERSECT_FRUSTUM","features":[314]},{"name":"D3DVIS_INTERSECT_LEFT","features":[314]},{"name":"D3DVIS_INTERSECT_NEAR","features":[314]},{"name":"D3DVIS_INTERSECT_RIGHT","features":[314]},{"name":"D3DVIS_INTERSECT_TOP","features":[314]},{"name":"D3DVIS_MASK_BOTTOM","features":[314]},{"name":"D3DVIS_MASK_FAR","features":[314]},{"name":"D3DVIS_MASK_FRUSTUM","features":[314]},{"name":"D3DVIS_MASK_LEFT","features":[314]},{"name":"D3DVIS_MASK_NEAR","features":[314]},{"name":"D3DVIS_MASK_RIGHT","features":[314]},{"name":"D3DVIS_MASK_TOP","features":[314]},{"name":"D3DVIS_OUTSIDE_BOTTOM","features":[314]},{"name":"D3DVIS_OUTSIDE_FAR","features":[314]},{"name":"D3DVIS_OUTSIDE_FRUSTUM","features":[314]},{"name":"D3DVIS_OUTSIDE_LEFT","features":[314]},{"name":"D3DVIS_OUTSIDE_NEAR","features":[314]},{"name":"D3DVIS_OUTSIDE_RIGHT","features":[314]},{"name":"D3DVIS_OUTSIDE_TOP","features":[314]},{"name":"D3DVOLUME_DESC","features":[314]},{"name":"D3DVOP_CLIP","features":[314]},{"name":"D3DVOP_EXTENTS","features":[314]},{"name":"D3DVOP_LIGHT","features":[314]},{"name":"D3DVOP_TRANSFORM","features":[314]},{"name":"D3DVS20CAPS_PREDICATION","features":[314]},{"name":"D3DVS20_MAX_DYNAMICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DVS20_MAX_NUMTEMPS","features":[314]},{"name":"D3DVS20_MAX_STATICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DVS20_MIN_DYNAMICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DVS20_MIN_NUMTEMPS","features":[314]},{"name":"D3DVS20_MIN_STATICFLOWCONTROLDEPTH","features":[314]},{"name":"D3DVSHADERCAPS2_0","features":[314]},{"name":"D3DVS_ADDRESSMODE_SHIFT","features":[314]},{"name":"D3DVS_ADDRESSMODE_TYPE","features":[314]},{"name":"D3DVS_ADDRMODE_ABSOLUTE","features":[314]},{"name":"D3DVS_ADDRMODE_RELATIVE","features":[314]},{"name":"D3DVS_RASTOUT_OFFSETS","features":[314]},{"name":"D3DVS_SWIZZLE_MASK","features":[314]},{"name":"D3DVS_SWIZZLE_SHIFT","features":[314]},{"name":"D3DVTXPCAPS_DIRECTIONALLIGHTS","features":[314]},{"name":"D3DVTXPCAPS_LOCALVIEWER","features":[314]},{"name":"D3DVTXPCAPS_MATERIALSOURCE7","features":[314]},{"name":"D3DVTXPCAPS_NO_TEXGEN_NONLOCALVIEWER","features":[314]},{"name":"D3DVTXPCAPS_POSITIONALLIGHTS","features":[314]},{"name":"D3DVTXPCAPS_TEXGEN","features":[314]},{"name":"D3DVTXPCAPS_TEXGEN_SPHEREMAP","features":[314]},{"name":"D3DVTXPCAPS_TWEENING","features":[314]},{"name":"D3DVTXPCAPS_VERTEXFOG","features":[314]},{"name":"D3DVT_LVERTEX","features":[314]},{"name":"D3DVT_TLVERTEX","features":[314]},{"name":"D3DVT_VERTEX","features":[314]},{"name":"D3DWRAPCOORD_0","features":[314]},{"name":"D3DWRAPCOORD_1","features":[314]},{"name":"D3DWRAPCOORD_2","features":[314]},{"name":"D3DWRAPCOORD_3","features":[314]},{"name":"D3DWRAP_U","features":[314]},{"name":"D3DWRAP_V","features":[314]},{"name":"D3DWRAP_W","features":[314]},{"name":"D3DZBUFFERTYPE","features":[314]},{"name":"D3DZB_FALSE","features":[314]},{"name":"D3DZB_TRUE","features":[314]},{"name":"D3DZB_USEW","features":[314]},{"name":"D3D_MAX_SIMULTANEOUS_RENDERTARGETS","features":[314]},{"name":"D3D_OMAC","features":[314]},{"name":"D3D_OMAC_SIZE","features":[314]},{"name":"D3D_SDK_VERSION","features":[314]},{"name":"DIRECT3D_VERSION","features":[314]},{"name":"Direct3DCreate9","features":[314]},{"name":"Direct3DCreate9Ex","features":[314]},{"name":"IDirect3D9","features":[314]},{"name":"IDirect3D9Ex","features":[314]},{"name":"IDirect3DBaseTexture9","features":[314]},{"name":"IDirect3DCubeTexture9","features":[314]},{"name":"IDirect3DDevice9","features":[314]},{"name":"IDirect3DDevice9Ex","features":[314]},{"name":"IDirect3DIndexBuffer9","features":[314]},{"name":"IDirect3DPixelShader9","features":[314]},{"name":"IDirect3DQuery9","features":[314]},{"name":"IDirect3DResource9","features":[314]},{"name":"IDirect3DStateBlock9","features":[314]},{"name":"IDirect3DSurface9","features":[314]},{"name":"IDirect3DSwapChain9","features":[314]},{"name":"IDirect3DSwapChain9Ex","features":[314]},{"name":"IDirect3DTexture9","features":[314]},{"name":"IDirect3DVertexBuffer9","features":[314]},{"name":"IDirect3DVertexDeclaration9","features":[314]},{"name":"IDirect3DVertexShader9","features":[314]},{"name":"IDirect3DVolume9","features":[314]},{"name":"IDirect3DVolumeTexture9","features":[314]},{"name":"LPD3DENUMDEVICESCALLBACK","features":[305,314]},{"name":"LPD3DENUMDEVICESCALLBACK7","features":[314]},{"name":"LPD3DENUMPIXELFORMATSCALLBACK","features":[314,315]},{"name":"LPD3DENUMTEXTUREFORMATSCALLBACK","features":[314,315]},{"name":"LPD3DVALIDATECALLBACK","features":[314]},{"name":"MAXD3DDECLLENGTH","features":[314]},{"name":"MAXD3DDECLUSAGEINDEX","features":[314]},{"name":"MAX_DEVICE_IDENTIFIER_STRING","features":[314]},{"name":"PROCESSIDTYPE_DWM","features":[314]},{"name":"PROCESSIDTYPE_HANDLE","features":[314]},{"name":"PROCESSIDTYPE_UNKNOWN","features":[314]},{"name":"_FACD3D","features":[314]}],"407":[{"name":"D3D9ON12_ARGS","features":[305,404]},{"name":"Direct3DCreate9On12","features":[305,314,404]},{"name":"Direct3DCreate9On12Ex","features":[305,314,404]},{"name":"IDirect3DDevice9On12","features":[404]},{"name":"MAX_D3D9ON12_QUEUES","features":[404]},{"name":"PFN_Direct3DCreate9On12","features":[305,314,404]},{"name":"PFN_Direct3DCreate9On12Ex","features":[305,314,404]}],"408":[{"name":"COMPOSITIONOBJECT_READ","features":[405]},{"name":"COMPOSITIONOBJECT_WRITE","features":[405]},{"name":"COMPOSITION_FRAME_ID_COMPLETED","features":[405]},{"name":"COMPOSITION_FRAME_ID_CONFIRMED","features":[405]},{"name":"COMPOSITION_FRAME_ID_CREATED","features":[405]},{"name":"COMPOSITION_FRAME_ID_TYPE","features":[405]},{"name":"COMPOSITION_FRAME_STATS","features":[405]},{"name":"COMPOSITION_STATS","features":[405]},{"name":"COMPOSITION_STATS_MAX_TARGETS","features":[405]},{"name":"COMPOSITION_TARGET_ID","features":[305,405]},{"name":"COMPOSITION_TARGET_STATS","features":[405]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY","features":[405]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY_HIDDEN","features":[405]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY_INHERIT","features":[405]},{"name":"DCOMPOSITION_BACKFACE_VISIBILITY_VISIBLE","features":[405]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE","features":[405]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE_INHERIT","features":[405]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE_LINEAR","features":[405]},{"name":"DCOMPOSITION_BITMAP_INTERPOLATION_MODE_NEAREST_NEIGHBOR","features":[405]},{"name":"DCOMPOSITION_BORDER_MODE","features":[405]},{"name":"DCOMPOSITION_BORDER_MODE_HARD","features":[405]},{"name":"DCOMPOSITION_BORDER_MODE_INHERIT","features":[405]},{"name":"DCOMPOSITION_BORDER_MODE_SOFT","features":[405]},{"name":"DCOMPOSITION_COMPOSITE_MODE","features":[405]},{"name":"DCOMPOSITION_COMPOSITE_MODE_DESTINATION_INVERT","features":[405]},{"name":"DCOMPOSITION_COMPOSITE_MODE_INHERIT","features":[405]},{"name":"DCOMPOSITION_COMPOSITE_MODE_MIN_BLEND","features":[405]},{"name":"DCOMPOSITION_COMPOSITE_MODE_SOURCE_OVER","features":[405]},{"name":"DCOMPOSITION_DEPTH_MODE","features":[405]},{"name":"DCOMPOSITION_DEPTH_MODE_INHERIT","features":[405]},{"name":"DCOMPOSITION_DEPTH_MODE_SORTED","features":[405]},{"name":"DCOMPOSITION_DEPTH_MODE_SPATIAL","features":[405]},{"name":"DCOMPOSITION_DEPTH_MODE_TREE","features":[405]},{"name":"DCOMPOSITION_FRAME_STATISTICS","features":[405,393]},{"name":"DCOMPOSITION_MAX_WAITFORCOMPOSITORCLOCK_OBJECTS","features":[405]},{"name":"DCOMPOSITION_OPACITY_MODE","features":[405]},{"name":"DCOMPOSITION_OPACITY_MODE_INHERIT","features":[405]},{"name":"DCOMPOSITION_OPACITY_MODE_LAYER","features":[405]},{"name":"DCOMPOSITION_OPACITY_MODE_MULTIPLY","features":[405]},{"name":"DCompositionAttachMouseDragToHwnd","features":[305,405]},{"name":"DCompositionAttachMouseWheelToHwnd","features":[305,405]},{"name":"DCompositionBoostCompositorClock","features":[305,405]},{"name":"DCompositionCreateDevice","features":[405,397]},{"name":"DCompositionCreateDevice2","features":[405]},{"name":"DCompositionCreateDevice3","features":[405]},{"name":"DCompositionCreateSurfaceHandle","features":[305,405,308]},{"name":"DCompositionGetFrameId","features":[405]},{"name":"DCompositionGetStatistics","features":[305,405]},{"name":"DCompositionGetTargetStatistics","features":[305,405]},{"name":"DCompositionInkTrailPoint","features":[405]},{"name":"DCompositionWaitForCompositorClock","features":[305,405]},{"name":"IDCompositionAffineTransform2DEffect","features":[405]},{"name":"IDCompositionAnimation","features":[405]},{"name":"IDCompositionArithmeticCompositeEffect","features":[405]},{"name":"IDCompositionBlendEffect","features":[405]},{"name":"IDCompositionBrightnessEffect","features":[405]},{"name":"IDCompositionClip","features":[405]},{"name":"IDCompositionColorMatrixEffect","features":[405]},{"name":"IDCompositionCompositeEffect","features":[405]},{"name":"IDCompositionDelegatedInkTrail","features":[405]},{"name":"IDCompositionDesktopDevice","features":[405]},{"name":"IDCompositionDevice","features":[405]},{"name":"IDCompositionDevice2","features":[405]},{"name":"IDCompositionDevice3","features":[405]},{"name":"IDCompositionDevice4","features":[405]},{"name":"IDCompositionDeviceDebug","features":[405]},{"name":"IDCompositionEffect","features":[405]},{"name":"IDCompositionEffectGroup","features":[405]},{"name":"IDCompositionFilterEffect","features":[405]},{"name":"IDCompositionGaussianBlurEffect","features":[405]},{"name":"IDCompositionHueRotationEffect","features":[405]},{"name":"IDCompositionInkTrailDevice","features":[405]},{"name":"IDCompositionLinearTransferEffect","features":[405]},{"name":"IDCompositionMatrixTransform","features":[405]},{"name":"IDCompositionMatrixTransform3D","features":[405]},{"name":"IDCompositionRectangleClip","features":[405]},{"name":"IDCompositionRotateTransform","features":[405]},{"name":"IDCompositionRotateTransform3D","features":[405]},{"name":"IDCompositionSaturationEffect","features":[405]},{"name":"IDCompositionScaleTransform","features":[405]},{"name":"IDCompositionScaleTransform3D","features":[405]},{"name":"IDCompositionShadowEffect","features":[405]},{"name":"IDCompositionSkewTransform","features":[405]},{"name":"IDCompositionSurface","features":[405]},{"name":"IDCompositionSurfaceFactory","features":[405]},{"name":"IDCompositionTableTransferEffect","features":[405]},{"name":"IDCompositionTarget","features":[405]},{"name":"IDCompositionTexture","features":[405]},{"name":"IDCompositionTransform","features":[405]},{"name":"IDCompositionTransform3D","features":[405]},{"name":"IDCompositionTranslateTransform","features":[405]},{"name":"IDCompositionTranslateTransform3D","features":[405]},{"name":"IDCompositionTurbulenceEffect","features":[405]},{"name":"IDCompositionVirtualSurface","features":[405]},{"name":"IDCompositionVisual","features":[405]},{"name":"IDCompositionVisual2","features":[405]},{"name":"IDCompositionVisual3","features":[405]},{"name":"IDCompositionVisualDebug","features":[405]}],"409":[{"name":"ACCESSRECTLIST","features":[305,315,316]},{"name":"ACCESSRECT_BROKEN","features":[315]},{"name":"ACCESSRECT_NOTHOLDINGWIN16LOCK","features":[315]},{"name":"ACCESSRECT_VRAMSTYLE","features":[315]},{"name":"ATTACHLIST","features":[305,315,316]},{"name":"CCHDEVICENAME","features":[315]},{"name":"CLSID_DirectDraw","features":[315]},{"name":"CLSID_DirectDraw7","features":[315]},{"name":"CLSID_DirectDrawClipper","features":[315]},{"name":"D3DFMT_INTERNAL_D15S1","features":[315]},{"name":"D3DFMT_INTERNAL_D24S8","features":[315]},{"name":"D3DFMT_INTERNAL_D24X8","features":[315]},{"name":"D3DFMT_INTERNAL_D32","features":[315]},{"name":"D3DFMT_INTERNAL_S1D15","features":[315]},{"name":"D3DFMT_INTERNAL_S8D24","features":[315]},{"name":"D3DFMT_INTERNAL_X8D24","features":[315]},{"name":"D3DFORMAT_MEMBEROFGROUP_ARGB","features":[315]},{"name":"D3DFORMAT_OP_3DACCELERATION","features":[315]},{"name":"D3DFORMAT_OP_AUTOGENMIPMAP","features":[315]},{"name":"D3DFORMAT_OP_BUMPMAP","features":[315]},{"name":"D3DFORMAT_OP_CONVERT_TO_ARGB","features":[315]},{"name":"D3DFORMAT_OP_CUBETEXTURE","features":[315]},{"name":"D3DFORMAT_OP_DISPLAYMODE","features":[315]},{"name":"D3DFORMAT_OP_DMAP","features":[315]},{"name":"D3DFORMAT_OP_NOALPHABLEND","features":[315]},{"name":"D3DFORMAT_OP_NOFILTER","features":[315]},{"name":"D3DFORMAT_OP_NOTEXCOORDWRAPNORMIP","features":[315]},{"name":"D3DFORMAT_OP_OFFSCREENPLAIN","features":[315]},{"name":"D3DFORMAT_OP_OFFSCREEN_RENDERTARGET","features":[315]},{"name":"D3DFORMAT_OP_PIXELSIZE","features":[315]},{"name":"D3DFORMAT_OP_SAME_FORMAT_RENDERTARGET","features":[315]},{"name":"D3DFORMAT_OP_SAME_FORMAT_UP_TO_ALPHA_RENDERTARGET","features":[315]},{"name":"D3DFORMAT_OP_SRGBREAD","features":[315]},{"name":"D3DFORMAT_OP_SRGBWRITE","features":[315]},{"name":"D3DFORMAT_OP_TEXTURE","features":[315]},{"name":"D3DFORMAT_OP_VERTEXTEXTURE","features":[315]},{"name":"D3DFORMAT_OP_VOLUMETEXTURE","features":[315]},{"name":"D3DFORMAT_OP_ZSTENCIL","features":[315]},{"name":"D3DFORMAT_OP_ZSTENCIL_WITH_ARBITRARY_COLOR_DEPTH","features":[315]},{"name":"DBLNODE","features":[305,315,316]},{"name":"DCICOMMAND","features":[315]},{"name":"DD32BITDRIVERDATA","features":[315]},{"name":"DDABLT_SRCOVERDEST","features":[315]},{"name":"DDAL_IMPLICIT","features":[315]},{"name":"DDARGB","features":[315]},{"name":"DDBD_1","features":[315]},{"name":"DDBD_16","features":[315]},{"name":"DDBD_2","features":[315]},{"name":"DDBD_24","features":[315]},{"name":"DDBD_32","features":[315]},{"name":"DDBD_4","features":[315]},{"name":"DDBD_8","features":[315]},{"name":"DDBLTBATCH","features":[305,315]},{"name":"DDBLTFAST_DESTCOLORKEY","features":[315]},{"name":"DDBLTFAST_DONOTWAIT","features":[315]},{"name":"DDBLTFAST_NOCOLORKEY","features":[315]},{"name":"DDBLTFAST_SRCCOLORKEY","features":[315]},{"name":"DDBLTFAST_WAIT","features":[315]},{"name":"DDBLTFX","features":[315]},{"name":"DDBLTFX_ARITHSTRETCHY","features":[315]},{"name":"DDBLTFX_MIRRORLEFTRIGHT","features":[315]},{"name":"DDBLTFX_MIRRORUPDOWN","features":[315]},{"name":"DDBLTFX_NOTEARING","features":[315]},{"name":"DDBLTFX_ROTATE180","features":[315]},{"name":"DDBLTFX_ROTATE270","features":[315]},{"name":"DDBLTFX_ROTATE90","features":[315]},{"name":"DDBLTFX_ZBUFFERBASEDEST","features":[315]},{"name":"DDBLTFX_ZBUFFERRANGE","features":[315]},{"name":"DDBLT_AFLAGS","features":[315]},{"name":"DDBLT_ALPHADEST","features":[315]},{"name":"DDBLT_ALPHADESTCONSTOVERRIDE","features":[315]},{"name":"DDBLT_ALPHADESTNEG","features":[315]},{"name":"DDBLT_ALPHADESTSURFACEOVERRIDE","features":[315]},{"name":"DDBLT_ALPHAEDGEBLEND","features":[315]},{"name":"DDBLT_ALPHASRC","features":[315]},{"name":"DDBLT_ALPHASRCCONSTOVERRIDE","features":[315]},{"name":"DDBLT_ALPHASRCNEG","features":[315]},{"name":"DDBLT_ALPHASRCSURFACEOVERRIDE","features":[315]},{"name":"DDBLT_ASYNC","features":[315]},{"name":"DDBLT_COLORFILL","features":[315]},{"name":"DDBLT_DDFX","features":[315]},{"name":"DDBLT_DDROPS","features":[315]},{"name":"DDBLT_DEPTHFILL","features":[315]},{"name":"DDBLT_DONOTWAIT","features":[315]},{"name":"DDBLT_EXTENDED_FLAGS","features":[315]},{"name":"DDBLT_EXTENDED_LINEAR_CONTENT","features":[315]},{"name":"DDBLT_KEYDEST","features":[315]},{"name":"DDBLT_KEYDESTOVERRIDE","features":[315]},{"name":"DDBLT_KEYSRC","features":[315]},{"name":"DDBLT_KEYSRCOVERRIDE","features":[315]},{"name":"DDBLT_LAST_PRESENTATION","features":[315]},{"name":"DDBLT_PRESENTATION","features":[315]},{"name":"DDBLT_ROP","features":[315]},{"name":"DDBLT_ROTATIONANGLE","features":[315]},{"name":"DDBLT_WAIT","features":[315]},{"name":"DDBLT_ZBUFFER","features":[315]},{"name":"DDBLT_ZBUFFERDESTCONSTOVERRIDE","features":[315]},{"name":"DDBLT_ZBUFFERDESTOVERRIDE","features":[315]},{"name":"DDBLT_ZBUFFERSRCCONSTOVERRIDE","features":[315]},{"name":"DDBLT_ZBUFFERSRCOVERRIDE","features":[315]},{"name":"DDBOBNEXTFIELDINFO","features":[315]},{"name":"DDCAPS2_AUTOFLIPOVERLAY","features":[315]},{"name":"DDCAPS2_CANAUTOGENMIPMAP","features":[315]},{"name":"DDCAPS2_CANBOBHARDWARE","features":[315]},{"name":"DDCAPS2_CANBOBINTERLEAVED","features":[315]},{"name":"DDCAPS2_CANBOBNONINTERLEAVED","features":[315]},{"name":"DDCAPS2_CANCALIBRATEGAMMA","features":[315]},{"name":"DDCAPS2_CANDROPZ16BIT","features":[315]},{"name":"DDCAPS2_CANFLIPODDEVEN","features":[315]},{"name":"DDCAPS2_CANMANAGERESOURCE","features":[315]},{"name":"DDCAPS2_CANMANAGETEXTURE","features":[315]},{"name":"DDCAPS2_CANRENDERWINDOWED","features":[315]},{"name":"DDCAPS2_CANSHARERESOURCE","features":[315]},{"name":"DDCAPS2_CERTIFIED","features":[315]},{"name":"DDCAPS2_COLORCONTROLOVERLAY","features":[315]},{"name":"DDCAPS2_COLORCONTROLPRIMARY","features":[315]},{"name":"DDCAPS2_COPYFOURCC","features":[315]},{"name":"DDCAPS2_DYNAMICTEXTURES","features":[315]},{"name":"DDCAPS2_FLIPINTERVAL","features":[315]},{"name":"DDCAPS2_FLIPNOVSYNC","features":[315]},{"name":"DDCAPS2_NO2DDURING3DSCENE","features":[315]},{"name":"DDCAPS2_NONLOCALVIDMEM","features":[315]},{"name":"DDCAPS2_NONLOCALVIDMEMCAPS","features":[315]},{"name":"DDCAPS2_NOPAGELOCKREQUIRED","features":[315]},{"name":"DDCAPS2_PRIMARYGAMMA","features":[315]},{"name":"DDCAPS2_RESERVED1","features":[315]},{"name":"DDCAPS2_STEREO","features":[315]},{"name":"DDCAPS2_SYSTONONLOCAL_AS_SYSTOLOCAL","features":[315]},{"name":"DDCAPS2_TEXMANINNONLOCALVIDMEM","features":[315]},{"name":"DDCAPS2_VIDEOPORT","features":[315]},{"name":"DDCAPS2_WIDESURFACES","features":[315]},{"name":"DDCAPS_3D","features":[315]},{"name":"DDCAPS_ALIGNBOUNDARYDEST","features":[315]},{"name":"DDCAPS_ALIGNBOUNDARYSRC","features":[315]},{"name":"DDCAPS_ALIGNSIZEDEST","features":[315]},{"name":"DDCAPS_ALIGNSIZESRC","features":[315]},{"name":"DDCAPS_ALIGNSTRIDE","features":[315]},{"name":"DDCAPS_ALPHA","features":[315]},{"name":"DDCAPS_BANKSWITCHED","features":[315]},{"name":"DDCAPS_BLT","features":[315]},{"name":"DDCAPS_BLTCOLORFILL","features":[315]},{"name":"DDCAPS_BLTDEPTHFILL","features":[315]},{"name":"DDCAPS_BLTFOURCC","features":[315]},{"name":"DDCAPS_BLTQUEUE","features":[315]},{"name":"DDCAPS_BLTSTRETCH","features":[315]},{"name":"DDCAPS_CANBLTSYSMEM","features":[315]},{"name":"DDCAPS_CANCLIP","features":[315]},{"name":"DDCAPS_CANCLIPSTRETCHED","features":[315]},{"name":"DDCAPS_COLORKEY","features":[315]},{"name":"DDCAPS_COLORKEYHWASSIST","features":[315]},{"name":"DDCAPS_DX1","features":[315]},{"name":"DDCAPS_DX3","features":[315]},{"name":"DDCAPS_DX5","features":[315]},{"name":"DDCAPS_DX6","features":[315]},{"name":"DDCAPS_DX7","features":[315]},{"name":"DDCAPS_GDI","features":[315]},{"name":"DDCAPS_NOHARDWARE","features":[315]},{"name":"DDCAPS_OVERLAY","features":[315]},{"name":"DDCAPS_OVERLAYCANTCLIP","features":[315]},{"name":"DDCAPS_OVERLAYFOURCC","features":[315]},{"name":"DDCAPS_OVERLAYSTRETCH","features":[315]},{"name":"DDCAPS_PALETTE","features":[315]},{"name":"DDCAPS_PALETTEVSYNC","features":[315]},{"name":"DDCAPS_READSCANLINE","features":[315]},{"name":"DDCAPS_RESERVED1","features":[315]},{"name":"DDCAPS_VBI","features":[315]},{"name":"DDCAPS_ZBLTS","features":[315]},{"name":"DDCAPS_ZOVERLAYS","features":[315]},{"name":"DDCKEYCAPS_DESTBLT","features":[315]},{"name":"DDCKEYCAPS_DESTBLTCLRSPACE","features":[315]},{"name":"DDCKEYCAPS_DESTBLTCLRSPACEYUV","features":[315]},{"name":"DDCKEYCAPS_DESTBLTYUV","features":[315]},{"name":"DDCKEYCAPS_DESTOVERLAY","features":[315]},{"name":"DDCKEYCAPS_DESTOVERLAYCLRSPACE","features":[315]},{"name":"DDCKEYCAPS_DESTOVERLAYCLRSPACEYUV","features":[315]},{"name":"DDCKEYCAPS_DESTOVERLAYONEACTIVE","features":[315]},{"name":"DDCKEYCAPS_DESTOVERLAYYUV","features":[315]},{"name":"DDCKEYCAPS_NOCOSTOVERLAY","features":[315]},{"name":"DDCKEYCAPS_SRCBLT","features":[315]},{"name":"DDCKEYCAPS_SRCBLTCLRSPACE","features":[315]},{"name":"DDCKEYCAPS_SRCBLTCLRSPACEYUV","features":[315]},{"name":"DDCKEYCAPS_SRCBLTYUV","features":[315]},{"name":"DDCKEYCAPS_SRCOVERLAY","features":[315]},{"name":"DDCKEYCAPS_SRCOVERLAYCLRSPACE","features":[315]},{"name":"DDCKEYCAPS_SRCOVERLAYCLRSPACEYUV","features":[315]},{"name":"DDCKEYCAPS_SRCOVERLAYONEACTIVE","features":[315]},{"name":"DDCKEYCAPS_SRCOVERLAYYUV","features":[315]},{"name":"DDCKEY_COLORSPACE","features":[315]},{"name":"DDCKEY_DESTBLT","features":[315]},{"name":"DDCKEY_DESTOVERLAY","features":[315]},{"name":"DDCKEY_SRCBLT","features":[315]},{"name":"DDCKEY_SRCOVERLAY","features":[315]},{"name":"DDCOLORCONTROL","features":[315]},{"name":"DDCOLORKEY","features":[315]},{"name":"DDCOLOR_BRIGHTNESS","features":[315]},{"name":"DDCOLOR_COLORENABLE","features":[315]},{"name":"DDCOLOR_CONTRAST","features":[315]},{"name":"DDCOLOR_GAMMA","features":[315]},{"name":"DDCOLOR_HUE","features":[315]},{"name":"DDCOLOR_SATURATION","features":[315]},{"name":"DDCOLOR_SHARPNESS","features":[315]},{"name":"DDCOMPBUFFERINFO","features":[315]},{"name":"DDCORECAPS","features":[315]},{"name":"DDCREATEDRIVEROBJECT","features":[315]},{"name":"DDCREATE_EMULATIONONLY","features":[315]},{"name":"DDCREATE_HARDWAREONLY","features":[315]},{"name":"DDDEVICEIDENTIFIER","features":[315]},{"name":"DDDEVICEIDENTIFIER2","features":[315]},{"name":"DDEDM_REFRESHRATES","features":[315]},{"name":"DDEDM_STANDARDVGAMODES","features":[315]},{"name":"DDEM_MODEFAILED","features":[315]},{"name":"DDEM_MODEPASSED","features":[315]},{"name":"DDENABLEIRQINFO","features":[315]},{"name":"DDENUMOVERLAYZ_BACKTOFRONT","features":[315]},{"name":"DDENUMOVERLAYZ_FRONTTOBACK","features":[315]},{"name":"DDENUMRET_CANCEL","features":[315]},{"name":"DDENUMRET_OK","features":[315]},{"name":"DDENUMSURFACES_ALL","features":[315]},{"name":"DDENUMSURFACES_CANBECREATED","features":[315]},{"name":"DDENUMSURFACES_DOESEXIST","features":[315]},{"name":"DDENUMSURFACES_MATCH","features":[315]},{"name":"DDENUMSURFACES_NOMATCH","features":[315]},{"name":"DDENUM_ATTACHEDSECONDARYDEVICES","features":[315]},{"name":"DDENUM_DETACHEDSECONDARYDEVICES","features":[315]},{"name":"DDENUM_NONDISPLAYDEVICES","features":[315]},{"name":"DDERR_NOTINITIALIZED","features":[315]},{"name":"DDFLIPOVERLAYINFO","features":[315]},{"name":"DDFLIPVIDEOPORTINFO","features":[315]},{"name":"DDFLIP_DONOTWAIT","features":[315]},{"name":"DDFLIP_EVEN","features":[315]},{"name":"DDFLIP_INTERVAL2","features":[315]},{"name":"DDFLIP_INTERVAL3","features":[315]},{"name":"DDFLIP_INTERVAL4","features":[315]},{"name":"DDFLIP_NOVSYNC","features":[315]},{"name":"DDFLIP_ODD","features":[315]},{"name":"DDFLIP_STEREO","features":[315]},{"name":"DDFLIP_WAIT","features":[315]},{"name":"DDFXALPHACAPS_BLTALPHAEDGEBLEND","features":[315]},{"name":"DDFXALPHACAPS_BLTALPHAPIXELS","features":[315]},{"name":"DDFXALPHACAPS_BLTALPHAPIXELSNEG","features":[315]},{"name":"DDFXALPHACAPS_BLTALPHASURFACES","features":[315]},{"name":"DDFXALPHACAPS_BLTALPHASURFACESNEG","features":[315]},{"name":"DDFXALPHACAPS_OVERLAYALPHAEDGEBLEND","features":[315]},{"name":"DDFXALPHACAPS_OVERLAYALPHAPIXELS","features":[315]},{"name":"DDFXALPHACAPS_OVERLAYALPHAPIXELSNEG","features":[315]},{"name":"DDFXALPHACAPS_OVERLAYALPHASURFACES","features":[315]},{"name":"DDFXALPHACAPS_OVERLAYALPHASURFACESNEG","features":[315]},{"name":"DDFXCAPS_BLTALPHA","features":[315]},{"name":"DDFXCAPS_BLTARITHSTRETCHY","features":[315]},{"name":"DDFXCAPS_BLTARITHSTRETCHYN","features":[315]},{"name":"DDFXCAPS_BLTFILTER","features":[315]},{"name":"DDFXCAPS_BLTMIRRORLEFTRIGHT","features":[315]},{"name":"DDFXCAPS_BLTMIRRORUPDOWN","features":[315]},{"name":"DDFXCAPS_BLTROTATION","features":[315]},{"name":"DDFXCAPS_BLTROTATION90","features":[315]},{"name":"DDFXCAPS_BLTSHRINKX","features":[315]},{"name":"DDFXCAPS_BLTSHRINKXN","features":[315]},{"name":"DDFXCAPS_BLTSHRINKY","features":[315]},{"name":"DDFXCAPS_BLTSHRINKYN","features":[315]},{"name":"DDFXCAPS_BLTSTRETCHX","features":[315]},{"name":"DDFXCAPS_BLTSTRETCHXN","features":[315]},{"name":"DDFXCAPS_BLTSTRETCHY","features":[315]},{"name":"DDFXCAPS_BLTSTRETCHYN","features":[315]},{"name":"DDFXCAPS_OVERLAYALPHA","features":[315]},{"name":"DDFXCAPS_OVERLAYARITHSTRETCHY","features":[315]},{"name":"DDFXCAPS_OVERLAYARITHSTRETCHYN","features":[315]},{"name":"DDFXCAPS_OVERLAYDEINTERLACE","features":[315]},{"name":"DDFXCAPS_OVERLAYFILTER","features":[315]},{"name":"DDFXCAPS_OVERLAYMIRRORLEFTRIGHT","features":[315]},{"name":"DDFXCAPS_OVERLAYMIRRORUPDOWN","features":[315]},{"name":"DDFXCAPS_OVERLAYSHRINKX","features":[315]},{"name":"DDFXCAPS_OVERLAYSHRINKXN","features":[315]},{"name":"DDFXCAPS_OVERLAYSHRINKY","features":[315]},{"name":"DDFXCAPS_OVERLAYSHRINKYN","features":[315]},{"name":"DDFXCAPS_OVERLAYSTRETCHX","features":[315]},{"name":"DDFXCAPS_OVERLAYSTRETCHXN","features":[315]},{"name":"DDFXCAPS_OVERLAYSTRETCHY","features":[315]},{"name":"DDFXCAPS_OVERLAYSTRETCHYN","features":[315]},{"name":"DDGAMMARAMP","features":[315]},{"name":"DDGBS_CANBLT","features":[315]},{"name":"DDGBS_ISBLTDONE","features":[315]},{"name":"DDGDI_GETHOSTIDENTIFIER","features":[315]},{"name":"DDGET32BITDRIVERNAME","features":[315]},{"name":"DDGETCURRENTAUTOFLIPININFO","features":[315]},{"name":"DDGETCURRENTAUTOFLIPOUTINFO","features":[315]},{"name":"DDGETIRQINFO","features":[315]},{"name":"DDGETPOLARITYININFO","features":[315]},{"name":"DDGETPOLARITYOUTINFO","features":[315]},{"name":"DDGETPREVIOUSAUTOFLIPININFO","features":[315]},{"name":"DDGETPREVIOUSAUTOFLIPOUTINFO","features":[315]},{"name":"DDGETTRANSFERSTATUSOUTINFO","features":[315]},{"name":"DDGFS_CANFLIP","features":[315]},{"name":"DDGFS_ISFLIPDONE","features":[315]},{"name":"DDHALDDRAWFNS","features":[305,315,316]},{"name":"DDHALINFO","features":[305,315,316]},{"name":"DDHALINFO_GETDRIVERINFO2","features":[315]},{"name":"DDHALINFO_GETDRIVERINFOSET","features":[315]},{"name":"DDHALINFO_ISPRIMARYDISPLAY","features":[315]},{"name":"DDHALINFO_MODEXILLEGAL","features":[315]},{"name":"DDHALMODEINFO","features":[315]},{"name":"DDHAL_ADDATTACHEDSURFACEDATA","features":[305,315,316]},{"name":"DDHAL_APP_DLLNAME","features":[315]},{"name":"DDHAL_BEGINMOCOMPFRAMEDATA","features":[305,315,316]},{"name":"DDHAL_BLTDATA","features":[305,315,316]},{"name":"DDHAL_CALLBACKS","features":[305,315,316]},{"name":"DDHAL_CANCREATESURFACEDATA","features":[305,315,316]},{"name":"DDHAL_CANCREATEVPORTDATA","features":[305,315,316]},{"name":"DDHAL_CB32_CANCREATESURFACE","features":[315]},{"name":"DDHAL_CB32_CREATEPALETTE","features":[315]},{"name":"DDHAL_CB32_CREATESURFACE","features":[315]},{"name":"DDHAL_CB32_DESTROYDRIVER","features":[315]},{"name":"DDHAL_CB32_FLIPTOGDISURFACE","features":[315]},{"name":"DDHAL_CB32_GETSCANLINE","features":[315]},{"name":"DDHAL_CB32_MAPMEMORY","features":[315]},{"name":"DDHAL_CB32_SETCOLORKEY","features":[315]},{"name":"DDHAL_CB32_SETEXCLUSIVEMODE","features":[315]},{"name":"DDHAL_CB32_SETMODE","features":[315]},{"name":"DDHAL_CB32_WAITFORVERTICALBLANK","features":[315]},{"name":"DDHAL_COLORCONTROLDATA","features":[305,315,316]},{"name":"DDHAL_COLOR_COLORCONTROL","features":[315]},{"name":"DDHAL_CREATEMOCOMPDATA","features":[305,315,316]},{"name":"DDHAL_CREATEPALETTEDATA","features":[305,315,316]},{"name":"DDHAL_CREATESURFACEDATA","features":[305,315,316]},{"name":"DDHAL_CREATESURFACEEXDATA","features":[305,315,316]},{"name":"DDHAL_CREATESURFACEEX_SWAPHANDLES","features":[315]},{"name":"DDHAL_CREATEVPORTDATA","features":[305,315,316]},{"name":"DDHAL_D3DBUFCB32_CANCREATED3DBUF","features":[315]},{"name":"DDHAL_D3DBUFCB32_CREATED3DBUF","features":[315]},{"name":"DDHAL_D3DBUFCB32_DESTROYD3DBUF","features":[315]},{"name":"DDHAL_D3DBUFCB32_LOCKD3DBUF","features":[315]},{"name":"DDHAL_D3DBUFCB32_UNLOCKD3DBUF","features":[315]},{"name":"DDHAL_DDCALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDCOLORCONTROLCALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDEXEBUFCALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDKERNELCALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDMISCELLANEOUS2CALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDMISCELLANEOUSCALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDMOTIONCOMPCALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDPALETTECALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDSURFACECALLBACKS","features":[305,315,316]},{"name":"DDHAL_DDVIDEOPORTCALLBACKS","features":[305,315,316]},{"name":"DDHAL_DESTROYDDLOCALDATA","features":[305,315,316]},{"name":"DDHAL_DESTROYDRIVERDATA","features":[305,315,316]},{"name":"DDHAL_DESTROYMOCOMPDATA","features":[305,315,316]},{"name":"DDHAL_DESTROYPALETTEDATA","features":[305,315,316]},{"name":"DDHAL_DESTROYSURFACEDATA","features":[305,315,316]},{"name":"DDHAL_DESTROYVPORTDATA","features":[305,315,316]},{"name":"DDHAL_DRIVER_DLLNAME","features":[315]},{"name":"DDHAL_DRIVER_HANDLED","features":[315]},{"name":"DDHAL_DRIVER_NOCKEYHW","features":[315]},{"name":"DDHAL_DRIVER_NOTHANDLED","features":[315]},{"name":"DDHAL_DRVSETCOLORKEYDATA","features":[305,315,316]},{"name":"DDHAL_ENDMOCOMPFRAMEDATA","features":[305,315,316]},{"name":"DDHAL_EXEBUFCB32_CANCREATEEXEBUF","features":[315]},{"name":"DDHAL_EXEBUFCB32_CREATEEXEBUF","features":[315]},{"name":"DDHAL_EXEBUFCB32_DESTROYEXEBUF","features":[315]},{"name":"DDHAL_EXEBUFCB32_LOCKEXEBUF","features":[315]},{"name":"DDHAL_EXEBUFCB32_UNLOCKEXEBUF","features":[315]},{"name":"DDHAL_FLIPDATA","features":[305,315,316]},{"name":"DDHAL_FLIPTOGDISURFACEDATA","features":[305,315,316]},{"name":"DDHAL_FLIPVPORTDATA","features":[305,315,316]},{"name":"DDHAL_GETAVAILDRIVERMEMORYDATA","features":[305,315,316]},{"name":"DDHAL_GETBLTSTATUSDATA","features":[305,315,316]},{"name":"DDHAL_GETDRIVERINFODATA","features":[315]},{"name":"DDHAL_GETDRIVERSTATEDATA","features":[315]},{"name":"DDHAL_GETFLIPSTATUSDATA","features":[305,315,316]},{"name":"DDHAL_GETHEAPALIGNMENTDATA","features":[315]},{"name":"DDHAL_GETINTERNALMOCOMPDATA","features":[305,315,316]},{"name":"DDHAL_GETMOCOMPCOMPBUFFDATA","features":[305,315,316]},{"name":"DDHAL_GETMOCOMPFORMATSDATA","features":[305,315,316]},{"name":"DDHAL_GETMOCOMPGUIDSDATA","features":[305,315,316]},{"name":"DDHAL_GETSCANLINEDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTBANDWIDTHDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTCONNECTDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTFIELDDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTFLIPSTATUSDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTINPUTFORMATDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTLINEDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTOUTPUTFORMATDATA","features":[305,315,316]},{"name":"DDHAL_GETVPORTSIGNALDATA","features":[305,315,316]},{"name":"DDHAL_KERNEL_SYNCSURFACEDATA","features":[315]},{"name":"DDHAL_KERNEL_SYNCVIDEOPORTDATA","features":[315]},{"name":"DDHAL_LOCKDATA","features":[305,315,316]},{"name":"DDHAL_MISC2CB32_ALPHABLT","features":[315]},{"name":"DDHAL_MISC2CB32_CREATESURFACEEX","features":[315]},{"name":"DDHAL_MISC2CB32_DESTROYDDLOCAL","features":[315]},{"name":"DDHAL_MISC2CB32_GETDRIVERSTATE","features":[315]},{"name":"DDHAL_MISCCB32_GETAVAILDRIVERMEMORY","features":[315]},{"name":"DDHAL_MISCCB32_GETHEAPALIGNMENT","features":[315]},{"name":"DDHAL_MISCCB32_GETSYSMEMBLTSTATUS","features":[315]},{"name":"DDHAL_MISCCB32_UPDATENONLOCALHEAP","features":[315]},{"name":"DDHAL_MOCOMP32_BEGINFRAME","features":[315]},{"name":"DDHAL_MOCOMP32_CREATE","features":[315]},{"name":"DDHAL_MOCOMP32_DESTROY","features":[315]},{"name":"DDHAL_MOCOMP32_ENDFRAME","features":[315]},{"name":"DDHAL_MOCOMP32_GETCOMPBUFFINFO","features":[315]},{"name":"DDHAL_MOCOMP32_GETFORMATS","features":[315]},{"name":"DDHAL_MOCOMP32_GETGUIDS","features":[315]},{"name":"DDHAL_MOCOMP32_GETINTERNALINFO","features":[315]},{"name":"DDHAL_MOCOMP32_QUERYSTATUS","features":[315]},{"name":"DDHAL_MOCOMP32_RENDER","features":[315]},{"name":"DDHAL_NTCB32_FLIPTOGDISURFACE","features":[315]},{"name":"DDHAL_NTCB32_FREEDRIVERMEMORY","features":[315]},{"name":"DDHAL_NTCB32_SETEXCLUSIVEMODE","features":[315]},{"name":"DDHAL_PALCB32_DESTROYPALETTE","features":[315]},{"name":"DDHAL_PALCB32_SETENTRIES","features":[315]},{"name":"DDHAL_PLEASEALLOC_BLOCKSIZE","features":[315]},{"name":"DDHAL_PLEASEALLOC_LINEARSIZE","features":[315]},{"name":"DDHAL_PLEASEALLOC_USERMEM","features":[315]},{"name":"DDHAL_PRIVATECAP_ATOMICSURFACECREATION","features":[315]},{"name":"DDHAL_PRIVATECAP_NOTIFYPRIMARYCREATION","features":[315]},{"name":"DDHAL_PRIVATECAP_RESERVED1","features":[315]},{"name":"DDHAL_QUERYMOCOMPSTATUSDATA","features":[305,315,316]},{"name":"DDHAL_RENDERMOCOMPDATA","features":[305,315,316]},{"name":"DDHAL_SETCLIPLISTDATA","features":[305,315,316]},{"name":"DDHAL_SETCOLORKEYDATA","features":[305,315,316]},{"name":"DDHAL_SETENTRIESDATA","features":[305,315,316]},{"name":"DDHAL_SETEXCLUSIVEMODEDATA","features":[305,315,316]},{"name":"DDHAL_SETMODEDATA","features":[305,315,316]},{"name":"DDHAL_SETOVERLAYPOSITIONDATA","features":[305,315,316]},{"name":"DDHAL_SETPALETTEDATA","features":[305,315,316]},{"name":"DDHAL_SURFCB32_ADDATTACHEDSURFACE","features":[315]},{"name":"DDHAL_SURFCB32_BLT","features":[315]},{"name":"DDHAL_SURFCB32_DESTROYSURFACE","features":[315]},{"name":"DDHAL_SURFCB32_FLIP","features":[315]},{"name":"DDHAL_SURFCB32_GETBLTSTATUS","features":[315]},{"name":"DDHAL_SURFCB32_GETFLIPSTATUS","features":[315]},{"name":"DDHAL_SURFCB32_LOCK","features":[315]},{"name":"DDHAL_SURFCB32_RESERVED4","features":[315]},{"name":"DDHAL_SURFCB32_SETCLIPLIST","features":[315]},{"name":"DDHAL_SURFCB32_SETCOLORKEY","features":[315]},{"name":"DDHAL_SURFCB32_SETOVERLAYPOSITION","features":[315]},{"name":"DDHAL_SURFCB32_SETPALETTE","features":[315]},{"name":"DDHAL_SURFCB32_UNLOCK","features":[315]},{"name":"DDHAL_SURFCB32_UPDATEOVERLAY","features":[315]},{"name":"DDHAL_SYNCSURFACEDATA","features":[305,315,316]},{"name":"DDHAL_SYNCVIDEOPORTDATA","features":[305,315,316]},{"name":"DDHAL_UNLOCKDATA","features":[305,315,316]},{"name":"DDHAL_UPDATENONLOCALHEAPDATA","features":[305,315,316]},{"name":"DDHAL_UPDATEOVERLAYDATA","features":[305,315,316]},{"name":"DDHAL_UPDATEVPORTDATA","features":[305,315,316]},{"name":"DDHAL_VPORT32_CANCREATEVIDEOPORT","features":[315]},{"name":"DDHAL_VPORT32_COLORCONTROL","features":[315]},{"name":"DDHAL_VPORT32_CREATEVIDEOPORT","features":[315]},{"name":"DDHAL_VPORT32_DESTROY","features":[315]},{"name":"DDHAL_VPORT32_FLIP","features":[315]},{"name":"DDHAL_VPORT32_GETAUTOFLIPSURF","features":[315]},{"name":"DDHAL_VPORT32_GETBANDWIDTH","features":[315]},{"name":"DDHAL_VPORT32_GETCONNECT","features":[315]},{"name":"DDHAL_VPORT32_GETFIELD","features":[315]},{"name":"DDHAL_VPORT32_GETFLIPSTATUS","features":[315]},{"name":"DDHAL_VPORT32_GETINPUTFORMATS","features":[315]},{"name":"DDHAL_VPORT32_GETLINE","features":[315]},{"name":"DDHAL_VPORT32_GETOUTPUTFORMATS","features":[315]},{"name":"DDHAL_VPORT32_GETSIGNALSTATUS","features":[315]},{"name":"DDHAL_VPORT32_UPDATE","features":[315]},{"name":"DDHAL_VPORT32_WAITFORSYNC","features":[315]},{"name":"DDHAL_VPORTCOLORDATA","features":[305,315,316]},{"name":"DDHAL_WAITFORVERTICALBLANKDATA","features":[305,315,316]},{"name":"DDHAL_WAITFORVPORTSYNCDATA","features":[305,315,316]},{"name":"DDIRQ_BUSMASTER","features":[315]},{"name":"DDIRQ_DISPLAY_VSYNC","features":[315]},{"name":"DDIRQ_RESERVED1","features":[315]},{"name":"DDIRQ_VPORT0_LINE","features":[315]},{"name":"DDIRQ_VPORT0_VSYNC","features":[315]},{"name":"DDIRQ_VPORT1_LINE","features":[315]},{"name":"DDIRQ_VPORT1_VSYNC","features":[315]},{"name":"DDIRQ_VPORT2_LINE","features":[315]},{"name":"DDIRQ_VPORT2_VSYNC","features":[315]},{"name":"DDIRQ_VPORT3_LINE","features":[315]},{"name":"DDIRQ_VPORT3_VSYNC","features":[315]},{"name":"DDIRQ_VPORT4_LINE","features":[315]},{"name":"DDIRQ_VPORT4_VSYNC","features":[315]},{"name":"DDIRQ_VPORT5_LINE","features":[315]},{"name":"DDIRQ_VPORT5_VSYNC","features":[315]},{"name":"DDIRQ_VPORT6_LINE","features":[315]},{"name":"DDIRQ_VPORT6_VSYNC","features":[315]},{"name":"DDIRQ_VPORT7_LINE","features":[315]},{"name":"DDIRQ_VPORT7_VSYNC","features":[315]},{"name":"DDIRQ_VPORT8_LINE","features":[315]},{"name":"DDIRQ_VPORT8_VSYNC","features":[315]},{"name":"DDIRQ_VPORT9_LINE","features":[315]},{"name":"DDIRQ_VPORT9_VSYNC","features":[315]},{"name":"DDKERNELCAPS","features":[315]},{"name":"DDKERNELCAPS_AUTOFLIP","features":[315]},{"name":"DDKERNELCAPS_CAPTURE_INVERTED","features":[315]},{"name":"DDKERNELCAPS_CAPTURE_NONLOCALVIDMEM","features":[315]},{"name":"DDKERNELCAPS_CAPTURE_SYSMEM","features":[315]},{"name":"DDKERNELCAPS_FIELDPOLARITY","features":[315]},{"name":"DDKERNELCAPS_FLIPOVERLAY","features":[315]},{"name":"DDKERNELCAPS_FLIPVIDEOPORT","features":[315]},{"name":"DDKERNELCAPS_LOCK","features":[315]},{"name":"DDKERNELCAPS_SETSTATE","features":[315]},{"name":"DDKERNELCAPS_SKIPFIELDS","features":[315]},{"name":"DDLOCKININFO","features":[315]},{"name":"DDLOCKOUTINFO","features":[315]},{"name":"DDLOCK_DISCARDCONTENTS","features":[315]},{"name":"DDLOCK_DONOTWAIT","features":[315]},{"name":"DDLOCK_EVENT","features":[315]},{"name":"DDLOCK_HASVOLUMETEXTUREBOXRECT","features":[315]},{"name":"DDLOCK_NODIRTYUPDATE","features":[315]},{"name":"DDLOCK_NOOVERWRITE","features":[315]},{"name":"DDLOCK_NOSYSLOCK","features":[315]},{"name":"DDLOCK_OKTOSWAP","features":[315]},{"name":"DDLOCK_READONLY","features":[315]},{"name":"DDLOCK_SURFACEMEMORYPTR","features":[315]},{"name":"DDLOCK_WAIT","features":[315]},{"name":"DDLOCK_WRITEONLY","features":[315]},{"name":"DDMCBUFFERINFO","features":[305,315,316]},{"name":"DDMCCOMPBUFFERINFO","features":[315]},{"name":"DDMCQUERY_READ","features":[315]},{"name":"DDMDL","features":[315]},{"name":"DDMOCOMPBUFFERINFO","features":[305,315]},{"name":"DDMODEINFO_MAXREFRESH","features":[315]},{"name":"DDMODEINFO_MODEX","features":[315]},{"name":"DDMODEINFO_PALETTIZED","features":[315]},{"name":"DDMODEINFO_STANDARDVGA","features":[315]},{"name":"DDMODEINFO_STEREO","features":[315]},{"name":"DDMODEINFO_UNSUPPORTED","features":[315]},{"name":"DDMONITORINFO","features":[315]},{"name":"DDMORESURFACECAPS","features":[315]},{"name":"DDNEWCALLBACKFNS","features":[315]},{"name":"DDNONLOCALVIDMEMCAPS","features":[315]},{"name":"DDNTCORECAPS","features":[315]},{"name":"DDOPTSURFACEDESC","features":[315]},{"name":"DDOSCAPS","features":[315]},{"name":"DDOSDCAPS_MONOLITHICMIPMAP","features":[315]},{"name":"DDOSDCAPS_OPTCOMPRESSED","features":[315]},{"name":"DDOSDCAPS_OPTREORDERED","features":[315]},{"name":"DDOSDCAPS_VALIDOSCAPS","features":[315]},{"name":"DDOSDCAPS_VALIDSCAPS","features":[315]},{"name":"DDOSD_ALL","features":[315]},{"name":"DDOSD_COMPRESSION_RATIO","features":[315]},{"name":"DDOSD_GUID","features":[315]},{"name":"DDOSD_OSCAPS","features":[315]},{"name":"DDOSD_SCAPS","features":[315]},{"name":"DDOVERFX_ARITHSTRETCHY","features":[315]},{"name":"DDOVERFX_DEINTERLACE","features":[315]},{"name":"DDOVERFX_MIRRORLEFTRIGHT","features":[315]},{"name":"DDOVERFX_MIRRORUPDOWN","features":[315]},{"name":"DDOVERLAYFX","features":[315]},{"name":"DDOVERZ_INSERTINBACKOF","features":[315]},{"name":"DDOVERZ_INSERTINFRONTOF","features":[315]},{"name":"DDOVERZ_MOVEBACKWARD","features":[315]},{"name":"DDOVERZ_MOVEFORWARD","features":[315]},{"name":"DDOVERZ_SENDTOBACK","features":[315]},{"name":"DDOVERZ_SENDTOFRONT","features":[315]},{"name":"DDOVER_ADDDIRTYRECT","features":[315]},{"name":"DDOVER_ALPHADEST","features":[315]},{"name":"DDOVER_ALPHADESTCONSTOVERRIDE","features":[315]},{"name":"DDOVER_ALPHADESTNEG","features":[315]},{"name":"DDOVER_ALPHADESTSURFACEOVERRIDE","features":[315]},{"name":"DDOVER_ALPHAEDGEBLEND","features":[315]},{"name":"DDOVER_ALPHASRC","features":[315]},{"name":"DDOVER_ALPHASRCCONSTOVERRIDE","features":[315]},{"name":"DDOVER_ALPHASRCNEG","features":[315]},{"name":"DDOVER_ALPHASRCSURFACEOVERRIDE","features":[315]},{"name":"DDOVER_ARGBSCALEFACTORS","features":[315]},{"name":"DDOVER_AUTOFLIP","features":[315]},{"name":"DDOVER_BOB","features":[315]},{"name":"DDOVER_BOBHARDWARE","features":[315]},{"name":"DDOVER_DDFX","features":[315]},{"name":"DDOVER_DEGRADEARGBSCALING","features":[315]},{"name":"DDOVER_HIDE","features":[315]},{"name":"DDOVER_INTERLEAVED","features":[315]},{"name":"DDOVER_KEYDEST","features":[315]},{"name":"DDOVER_KEYDESTOVERRIDE","features":[315]},{"name":"DDOVER_KEYSRC","features":[315]},{"name":"DDOVER_KEYSRCOVERRIDE","features":[315]},{"name":"DDOVER_OVERRIDEBOBWEAVE","features":[315]},{"name":"DDOVER_REFRESHALL","features":[315]},{"name":"DDOVER_REFRESHDIRTYRECTS","features":[315]},{"name":"DDOVER_SHOW","features":[315]},{"name":"DDPCAPS_1BIT","features":[315]},{"name":"DDPCAPS_2BIT","features":[315]},{"name":"DDPCAPS_4BIT","features":[315]},{"name":"DDPCAPS_8BIT","features":[315]},{"name":"DDPCAPS_8BITENTRIES","features":[315]},{"name":"DDPCAPS_ALLOW256","features":[315]},{"name":"DDPCAPS_ALPHA","features":[315]},{"name":"DDPCAPS_INITIALIZE","features":[315]},{"name":"DDPCAPS_PRIMARYSURFACE","features":[315]},{"name":"DDPCAPS_PRIMARYSURFACELEFT","features":[315]},{"name":"DDPCAPS_VSYNC","features":[315]},{"name":"DDPF_ALPHA","features":[315]},{"name":"DDPF_ALPHAPIXELS","features":[315]},{"name":"DDPF_ALPHAPREMULT","features":[315]},{"name":"DDPF_BUMPDUDV","features":[315]},{"name":"DDPF_BUMPLUMINANCE","features":[315]},{"name":"DDPF_COMPRESSED","features":[315]},{"name":"DDPF_D3DFORMAT","features":[315]},{"name":"DDPF_FOURCC","features":[315]},{"name":"DDPF_LUMINANCE","features":[315]},{"name":"DDPF_NOVEL_TEXTURE_FORMAT","features":[315]},{"name":"DDPF_PALETTEINDEXED1","features":[315]},{"name":"DDPF_PALETTEINDEXED2","features":[315]},{"name":"DDPF_PALETTEINDEXED4","features":[315]},{"name":"DDPF_PALETTEINDEXED8","features":[315]},{"name":"DDPF_PALETTEINDEXEDTO8","features":[315]},{"name":"DDPF_RGB","features":[315]},{"name":"DDPF_RGBTOYUV","features":[315]},{"name":"DDPF_STENCILBUFFER","features":[315]},{"name":"DDPF_YUV","features":[315]},{"name":"DDPF_ZBUFFER","features":[315]},{"name":"DDPF_ZPIXELS","features":[315]},{"name":"DDPIXELFORMAT","features":[315]},{"name":"DDRAWICLIP_INMASTERSPRITELIST","features":[315]},{"name":"DDRAWICLIP_ISINITIALIZED","features":[315]},{"name":"DDRAWICLIP_WATCHWINDOW","features":[315]},{"name":"DDRAWILCL_ACTIVENO","features":[315]},{"name":"DDRAWILCL_ACTIVEYES","features":[315]},{"name":"DDRAWILCL_ALLOWMODEX","features":[315]},{"name":"DDRAWILCL_ATTEMPTEDD3DCONTEXT","features":[315]},{"name":"DDRAWILCL_CREATEDWINDOW","features":[315]},{"name":"DDRAWILCL_CURSORCLIPPED","features":[315]},{"name":"DDRAWILCL_DIRECTDRAW7","features":[315]},{"name":"DDRAWILCL_DIRECTDRAW8","features":[315]},{"name":"DDRAWILCL_DIRTYDC","features":[315]},{"name":"DDRAWILCL_DISABLEINACTIVATE","features":[315]},{"name":"DDRAWILCL_DX8DRIVER","features":[315]},{"name":"DDRAWILCL_EXPLICITMONITOR","features":[315]},{"name":"DDRAWILCL_FPUPRESERVE","features":[315]},{"name":"DDRAWILCL_FPUSETUP","features":[315]},{"name":"DDRAWILCL_HASEXCLUSIVEMODE","features":[315]},{"name":"DDRAWILCL_HOOKEDHWND","features":[315]},{"name":"DDRAWILCL_ISFULLSCREEN","features":[315]},{"name":"DDRAWILCL_MODEHASBEENCHANGED","features":[315]},{"name":"DDRAWILCL_MULTITHREADED","features":[315]},{"name":"DDRAWILCL_POWEREDDOWN","features":[315]},{"name":"DDRAWILCL_SETCOOPCALLED","features":[315]},{"name":"DDRAWILCL_V1SCLBEHAVIOUR","features":[315]},{"name":"DDRAWIPAL_16","features":[315]},{"name":"DDRAWIPAL_2","features":[315]},{"name":"DDRAWIPAL_256","features":[315]},{"name":"DDRAWIPAL_4","features":[315]},{"name":"DDRAWIPAL_ALLOW256","features":[315]},{"name":"DDRAWIPAL_ALPHA","features":[315]},{"name":"DDRAWIPAL_DIRTY","features":[315]},{"name":"DDRAWIPAL_EXCLUSIVE","features":[315]},{"name":"DDRAWIPAL_GDI","features":[315]},{"name":"DDRAWIPAL_INHEL","features":[315]},{"name":"DDRAWIPAL_STORED_16","features":[315]},{"name":"DDRAWIPAL_STORED_24","features":[315]},{"name":"DDRAWIPAL_STORED_8","features":[315]},{"name":"DDRAWIPAL_STORED_8INDEX","features":[315]},{"name":"DDRAWISURFGBL_DDHELDONTFREE","features":[315]},{"name":"DDRAWISURFGBL_DX8SURFACE","features":[315]},{"name":"DDRAWISURFGBL_FASTLOCKHELD","features":[315]},{"name":"DDRAWISURFGBL_HARDWAREOPDEST","features":[315]},{"name":"DDRAWISURFGBL_HARDWAREOPSOURCE","features":[315]},{"name":"DDRAWISURFGBL_IMPLICITHANDLE","features":[315]},{"name":"DDRAWISURFGBL_ISCLIENTMEM","features":[315]},{"name":"DDRAWISURFGBL_ISGDISURFACE","features":[315]},{"name":"DDRAWISURFGBL_LATEALLOCATELINEAR","features":[315]},{"name":"DDRAWISURFGBL_LOCKBROKEN","features":[315]},{"name":"DDRAWISURFGBL_LOCKNOTHOLDINGWIN16LOCK","features":[315]},{"name":"DDRAWISURFGBL_LOCKVRAMSTYLE","features":[315]},{"name":"DDRAWISURFGBL_MEMFREE","features":[315]},{"name":"DDRAWISURFGBL_NOTIFYWHENUNLOCKED","features":[315]},{"name":"DDRAWISURFGBL_READONLYLOCKHELD","features":[315]},{"name":"DDRAWISURFGBL_RESERVED0","features":[315]},{"name":"DDRAWISURFGBL_SOFTWAREAUTOFLIP","features":[315]},{"name":"DDRAWISURFGBL_SYSMEMEXECUTEBUFFER","features":[315]},{"name":"DDRAWISURFGBL_SYSMEMREQUESTED","features":[315]},{"name":"DDRAWISURFGBL_VPORTDATA","features":[315]},{"name":"DDRAWISURFGBL_VPORTINTERLEAVED","features":[315]},{"name":"DDRAWISURF_ATTACHED","features":[315]},{"name":"DDRAWISURF_ATTACHED_FROM","features":[315]},{"name":"DDRAWISURF_BACKBUFFER","features":[315]},{"name":"DDRAWISURF_DATAISALIASED","features":[315]},{"name":"DDRAWISURF_DCIBUSY","features":[315]},{"name":"DDRAWISURF_DCILOCK","features":[315]},{"name":"DDRAWISURF_DRIVERMANAGED","features":[315]},{"name":"DDRAWISURF_FRONTBUFFER","features":[315]},{"name":"DDRAWISURF_GETDCNULL","features":[315]},{"name":"DDRAWISURF_HASCKEYDESTBLT","features":[315]},{"name":"DDRAWISURF_HASCKEYDESTOVERLAY","features":[315]},{"name":"DDRAWISURF_HASCKEYSRCBLT","features":[315]},{"name":"DDRAWISURF_HASCKEYSRCOVERLAY","features":[315]},{"name":"DDRAWISURF_HASDC","features":[315]},{"name":"DDRAWISURF_HASOVERLAYDATA","features":[315]},{"name":"DDRAWISURF_HASPIXELFORMAT","features":[315]},{"name":"DDRAWISURF_HELCB","features":[315]},{"name":"DDRAWISURF_HW_CKEYDESTBLT","features":[315]},{"name":"DDRAWISURF_HW_CKEYDESTOVERLAY","features":[315]},{"name":"DDRAWISURF_HW_CKEYSRCBLT","features":[315]},{"name":"DDRAWISURF_HW_CKEYSRCOVERLAY","features":[315]},{"name":"DDRAWISURF_IMPLICITCREATE","features":[315]},{"name":"DDRAWISURF_IMPLICITROOT","features":[315]},{"name":"DDRAWISURF_INMASTERSPRITELIST","features":[315]},{"name":"DDRAWISURF_INVALID","features":[315]},{"name":"DDRAWISURF_ISFREE","features":[315]},{"name":"DDRAWISURF_LOCKEXCLUDEDCURSOR","features":[315]},{"name":"DDRAWISURF_PARTOFPRIMARYCHAIN","features":[315]},{"name":"DDRAWISURF_SETGAMMA","features":[315]},{"name":"DDRAWISURF_STEREOSURFACELEFT","features":[315]},{"name":"DDRAWISURF_SW_CKEYDESTBLT","features":[315]},{"name":"DDRAWISURF_SW_CKEYDESTOVERLAY","features":[315]},{"name":"DDRAWISURF_SW_CKEYSRCBLT","features":[315]},{"name":"DDRAWISURF_SW_CKEYSRCOVERLAY","features":[315]},{"name":"DDRAWIVPORT_COLORKEYANDINTERP","features":[315]},{"name":"DDRAWIVPORT_NOKERNELHANDLES","features":[315]},{"name":"DDRAWIVPORT_ON","features":[315]},{"name":"DDRAWIVPORT_SOFTWARE_AUTOFLIP","features":[315]},{"name":"DDRAWIVPORT_SOFTWARE_BOB","features":[315]},{"name":"DDRAWIVPORT_VBION","features":[315]},{"name":"DDRAWIVPORT_VIDEOON","features":[315]},{"name":"DDRAWI_ATTACHEDTODESKTOP","features":[315]},{"name":"DDRAWI_BADPDEV","features":[315]},{"name":"DDRAWI_CHANGINGMODE","features":[315]},{"name":"DDRAWI_DDMOTIONCOMP_INT","features":[305,315,316]},{"name":"DDRAWI_DDMOTIONCOMP_LCL","features":[305,315,316]},{"name":"DDRAWI_DDRAWCLIPPER_GBL","features":[305,315,316]},{"name":"DDRAWI_DDRAWCLIPPER_INT","features":[305,315,316]},{"name":"DDRAWI_DDRAWCLIPPER_LCL","features":[305,315,316]},{"name":"DDRAWI_DDRAWDATANOTFETCHED","features":[315]},{"name":"DDRAWI_DDRAWPALETTE_GBL","features":[305,315,316]},{"name":"DDRAWI_DDRAWPALETTE_INT","features":[305,315,316]},{"name":"DDRAWI_DDRAWPALETTE_LCL","features":[305,315,316]},{"name":"DDRAWI_DDRAWSURFACE_GBL","features":[305,315,316]},{"name":"DDRAWI_DDRAWSURFACE_GBL_MORE","features":[315]},{"name":"DDRAWI_DDRAWSURFACE_INT","features":[305,315,316]},{"name":"DDRAWI_DDRAWSURFACE_LCL","features":[305,315,316]},{"name":"DDRAWI_DDRAWSURFACE_MORE","features":[305,315,316]},{"name":"DDRAWI_DDVIDEOPORT_INT","features":[305,315,316]},{"name":"DDRAWI_DDVIDEOPORT_LCL","features":[305,315,316]},{"name":"DDRAWI_DIRECTDRAW_GBL","features":[305,315,316]},{"name":"DDRAWI_DIRECTDRAW_INT","features":[305,315,316]},{"name":"DDRAWI_DIRECTDRAW_LCL","features":[305,315,316]},{"name":"DDRAWI_DISPLAYDRV","features":[315]},{"name":"DDRAWI_DRIVERINFO2","features":[315]},{"name":"DDRAWI_EMULATIONINITIALIZED","features":[315]},{"name":"DDRAWI_EXTENDEDALIGNMENT","features":[315]},{"name":"DDRAWI_FLIPPEDTOGDI","features":[315]},{"name":"DDRAWI_FULLSCREEN","features":[315]},{"name":"DDRAWI_GDIDRV","features":[315]},{"name":"DDRAWI_GETCOLOR","features":[315]},{"name":"DDRAWI_HASCKEYDESTOVERLAY","features":[315]},{"name":"DDRAWI_HASCKEYSRCOVERLAY","features":[315]},{"name":"DDRAWI_HASGDIPALETTE","features":[315]},{"name":"DDRAWI_HASGDIPALETTE_EXCLUSIVE","features":[315]},{"name":"DDRAWI_MODECHANGED","features":[315]},{"name":"DDRAWI_MODEX","features":[315]},{"name":"DDRAWI_MODEXILLEGAL","features":[315]},{"name":"DDRAWI_NEEDSWIN16FORVRAMLOCK","features":[315]},{"name":"DDRAWI_NOEMULATION","features":[315]},{"name":"DDRAWI_NOHARDWARE","features":[315]},{"name":"DDRAWI_PALETTEINIT","features":[315]},{"name":"DDRAWI_PDEVICEVRAMBITCLEARED","features":[315]},{"name":"DDRAWI_SECONDARYDRIVERLOADED","features":[315]},{"name":"DDRAWI_SETCOLOR","features":[315]},{"name":"DDRAWI_STANDARDVGA","features":[315]},{"name":"DDRAWI_TESTINGMODES","features":[315]},{"name":"DDRAWI_UMODELOADED","features":[315]},{"name":"DDRAWI_VIRTUALDESKTOP","features":[315]},{"name":"DDRAWI_VPORTGETCOLOR","features":[315]},{"name":"DDRAWI_VPORTSETCOLOR","features":[315]},{"name":"DDRAWI_VPORTSTART","features":[315]},{"name":"DDRAWI_VPORTSTOP","features":[315]},{"name":"DDRAWI_VPORTUPDATE","features":[315]},{"name":"DDRAWI_xxxxxxxxx1","features":[315]},{"name":"DDRAWI_xxxxxxxxx2","features":[315]},{"name":"DDRGBA","features":[315]},{"name":"DDSCAPS","features":[315]},{"name":"DDSCAPS2","features":[315]},{"name":"DDSCAPS2_ADDITIONALPRIMARY","features":[315]},{"name":"DDSCAPS2_COMMANDBUFFER","features":[315]},{"name":"DDSCAPS2_CUBEMAP","features":[315]},{"name":"DDSCAPS2_CUBEMAP_NEGATIVEX","features":[315]},{"name":"DDSCAPS2_CUBEMAP_NEGATIVEY","features":[315]},{"name":"DDSCAPS2_CUBEMAP_NEGATIVEZ","features":[315]},{"name":"DDSCAPS2_CUBEMAP_POSITIVEX","features":[315]},{"name":"DDSCAPS2_CUBEMAP_POSITIVEY","features":[315]},{"name":"DDSCAPS2_CUBEMAP_POSITIVEZ","features":[315]},{"name":"DDSCAPS2_D3DTEXTUREMANAGE","features":[315]},{"name":"DDSCAPS2_DISCARDBACKBUFFER","features":[315]},{"name":"DDSCAPS2_DONOTPERSIST","features":[315]},{"name":"DDSCAPS2_ENABLEALPHACHANNEL","features":[315]},{"name":"DDSCAPS2_EXTENDEDFORMATPRIMARY","features":[315]},{"name":"DDSCAPS2_HARDWAREDEINTERLACE","features":[315]},{"name":"DDSCAPS2_HINTANTIALIASING","features":[315]},{"name":"DDSCAPS2_HINTDYNAMIC","features":[315]},{"name":"DDSCAPS2_HINTSTATIC","features":[315]},{"name":"DDSCAPS2_INDEXBUFFER","features":[315]},{"name":"DDSCAPS2_MIPMAPSUBLEVEL","features":[315]},{"name":"DDSCAPS2_NOTUSERLOCKABLE","features":[315]},{"name":"DDSCAPS2_NPATCHES","features":[315]},{"name":"DDSCAPS2_OPAQUE","features":[315]},{"name":"DDSCAPS2_POINTS","features":[315]},{"name":"DDSCAPS2_RESERVED1","features":[315]},{"name":"DDSCAPS2_RESERVED2","features":[315]},{"name":"DDSCAPS2_RESERVED3","features":[315]},{"name":"DDSCAPS2_RESERVED4","features":[315]},{"name":"DDSCAPS2_RTPATCHES","features":[315]},{"name":"DDSCAPS2_STEREOSURFACELEFT","features":[315]},{"name":"DDSCAPS2_TEXTUREMANAGE","features":[315]},{"name":"DDSCAPS2_VERTEXBUFFER","features":[315]},{"name":"DDSCAPS2_VOLUME","features":[315]},{"name":"DDSCAPS3_AUTOGENMIPMAP","features":[315]},{"name":"DDSCAPS3_CREATESHAREDRESOURCE","features":[315]},{"name":"DDSCAPS3_DMAP","features":[315]},{"name":"DDSCAPS3_LIGHTWEIGHTMIPMAP","features":[315]},{"name":"DDSCAPS3_MULTISAMPLE_MASK","features":[315]},{"name":"DDSCAPS3_MULTISAMPLE_QUALITY_MASK","features":[315]},{"name":"DDSCAPS3_MULTISAMPLE_QUALITY_SHIFT","features":[315]},{"name":"DDSCAPS3_OPENSHAREDRESOURCE","features":[315]},{"name":"DDSCAPS3_READONLYRESOURCE","features":[315]},{"name":"DDSCAPS3_RESERVED1","features":[315]},{"name":"DDSCAPS3_RESERVED2","features":[315]},{"name":"DDSCAPS3_VIDEO","features":[315]},{"name":"DDSCAPSEX","features":[315]},{"name":"DDSCAPS_3DDEVICE","features":[315]},{"name":"DDSCAPS_ALLOCONLOAD","features":[315]},{"name":"DDSCAPS_ALPHA","features":[315]},{"name":"DDSCAPS_BACKBUFFER","features":[315]},{"name":"DDSCAPS_COMMANDBUFFER","features":[315]},{"name":"DDSCAPS_COMPLEX","features":[315]},{"name":"DDSCAPS_EXECUTEBUFFER","features":[315]},{"name":"DDSCAPS_FLIP","features":[315]},{"name":"DDSCAPS_FRONTBUFFER","features":[315]},{"name":"DDSCAPS_HWCODEC","features":[315]},{"name":"DDSCAPS_LIVEVIDEO","features":[315]},{"name":"DDSCAPS_LOCALVIDMEM","features":[315]},{"name":"DDSCAPS_MIPMAP","features":[315]},{"name":"DDSCAPS_MODEX","features":[315]},{"name":"DDSCAPS_NONLOCALVIDMEM","features":[315]},{"name":"DDSCAPS_OFFSCREENPLAIN","features":[315]},{"name":"DDSCAPS_OPTIMIZED","features":[315]},{"name":"DDSCAPS_OVERLAY","features":[315]},{"name":"DDSCAPS_OWNDC","features":[315]},{"name":"DDSCAPS_PALETTE","features":[315]},{"name":"DDSCAPS_PRIMARYSURFACE","features":[315]},{"name":"DDSCAPS_PRIMARYSURFACELEFT","features":[315]},{"name":"DDSCAPS_RESERVED1","features":[315]},{"name":"DDSCAPS_RESERVED2","features":[315]},{"name":"DDSCAPS_RESERVED3","features":[315]},{"name":"DDSCAPS_STANDARDVGAMODE","features":[315]},{"name":"DDSCAPS_SYSTEMMEMORY","features":[315]},{"name":"DDSCAPS_TEXTURE","features":[315]},{"name":"DDSCAPS_VIDEOMEMORY","features":[315]},{"name":"DDSCAPS_VIDEOPORT","features":[315]},{"name":"DDSCAPS_VISIBLE","features":[315]},{"name":"DDSCAPS_WRITEONLY","features":[315]},{"name":"DDSCAPS_ZBUFFER","features":[315]},{"name":"DDSCL_ALLOWMODEX","features":[315]},{"name":"DDSCL_ALLOWREBOOT","features":[315]},{"name":"DDSCL_CREATEDEVICEWINDOW","features":[315]},{"name":"DDSCL_EXCLUSIVE","features":[315]},{"name":"DDSCL_FPUPRESERVE","features":[315]},{"name":"DDSCL_FPUSETUP","features":[315]},{"name":"DDSCL_FULLSCREEN","features":[315]},{"name":"DDSCL_MULTITHREADED","features":[315]},{"name":"DDSCL_NORMAL","features":[315]},{"name":"DDSCL_NOWINDOWCHANGES","features":[315]},{"name":"DDSCL_SETDEVICEWINDOW","features":[315]},{"name":"DDSCL_SETFOCUSWINDOW","features":[315]},{"name":"DDSDM_STANDARDVGAMODE","features":[315]},{"name":"DDSD_ALL","features":[315]},{"name":"DDSD_ALPHABITDEPTH","features":[315]},{"name":"DDSD_BACKBUFFERCOUNT","features":[315]},{"name":"DDSD_CAPS","features":[315]},{"name":"DDSD_CKDESTBLT","features":[315]},{"name":"DDSD_CKDESTOVERLAY","features":[315]},{"name":"DDSD_CKSRCBLT","features":[315]},{"name":"DDSD_CKSRCOVERLAY","features":[315]},{"name":"DDSD_DEPTH","features":[315]},{"name":"DDSD_FVF","features":[315]},{"name":"DDSD_HEIGHT","features":[315]},{"name":"DDSD_LINEARSIZE","features":[315]},{"name":"DDSD_LPSURFACE","features":[315]},{"name":"DDSD_MIPMAPCOUNT","features":[315]},{"name":"DDSD_PITCH","features":[315]},{"name":"DDSD_PIXELFORMAT","features":[315]},{"name":"DDSD_REFRESHRATE","features":[315]},{"name":"DDSD_SRCVBHANDLE","features":[315]},{"name":"DDSD_TEXTURESTAGE","features":[315]},{"name":"DDSD_WIDTH","features":[315]},{"name":"DDSD_ZBUFFERBITDEPTH","features":[315]},{"name":"DDSETSTATEININFO","features":[315]},{"name":"DDSETSTATEOUTINFO","features":[305,315]},{"name":"DDSETSURFACEDESC_PRESERVEDC","features":[315]},{"name":"DDSETSURFACEDESC_RECREATEDC","features":[315]},{"name":"DDSGR_CALIBRATE","features":[315]},{"name":"DDSKIPNEXTFIELDINFO","features":[315]},{"name":"DDSKIP_ENABLENEXT","features":[315]},{"name":"DDSKIP_SKIPNEXT","features":[315]},{"name":"DDSMT_ISTESTREQUIRED","features":[315]},{"name":"DDSPD_IUNKNOWNPOINTER","features":[315]},{"name":"DDSPD_VOLATILE","features":[315]},{"name":"DDSTEREOMODE","features":[305,315]},{"name":"DDSURFACEDATA","features":[315]},{"name":"DDSURFACEDESC","features":[315]},{"name":"DDSURFACEDESC2","features":[315]},{"name":"DDSVCAPS_RESERVED1","features":[315]},{"name":"DDSVCAPS_RESERVED2","features":[315]},{"name":"DDSVCAPS_RESERVED3","features":[315]},{"name":"DDSVCAPS_RESERVED4","features":[315]},{"name":"DDSVCAPS_STEREOSEQUENTIAL","features":[315]},{"name":"DDTRANSFERININFO","features":[315]},{"name":"DDTRANSFEROUTINFO","features":[315]},{"name":"DDTRANSFER_CANCEL","features":[315]},{"name":"DDTRANSFER_HALFLINES","features":[315]},{"name":"DDTRANSFER_INVERT","features":[315]},{"name":"DDTRANSFER_NONLOCALVIDMEM","features":[315]},{"name":"DDTRANSFER_SYSTEMMEMORY","features":[315]},{"name":"DDUNSUPPORTEDMODE","features":[315]},{"name":"DDVERSIONDATA","features":[315]},{"name":"DDVERSIONINFO","features":[315]},{"name":"DDVIDEOPORTBANDWIDTH","features":[315]},{"name":"DDVIDEOPORTCAPS","features":[315]},{"name":"DDVIDEOPORTCONNECT","features":[315]},{"name":"DDVIDEOPORTDATA","features":[315]},{"name":"DDVIDEOPORTDESC","features":[315]},{"name":"DDVIDEOPORTINFO","features":[305,315]},{"name":"DDVIDEOPORTNOTIFY","features":[315]},{"name":"DDVIDEOPORTSTATUS","features":[305,315]},{"name":"DDVPBCAPS_DESTINATION","features":[315]},{"name":"DDVPBCAPS_SOURCE","features":[315]},{"name":"DDVPB_OVERLAY","features":[315]},{"name":"DDVPB_TYPE","features":[315]},{"name":"DDVPB_VIDEOPORT","features":[315]},{"name":"DDVPCAPS_AUTOFLIP","features":[315]},{"name":"DDVPCAPS_COLORCONTROL","features":[315]},{"name":"DDVPCAPS_HARDWAREDEINTERLACE","features":[315]},{"name":"DDVPCAPS_INTERLACED","features":[315]},{"name":"DDVPCAPS_NONINTERLACED","features":[315]},{"name":"DDVPCAPS_OVERSAMPLEDVBI","features":[315]},{"name":"DDVPCAPS_READBACKFIELD","features":[315]},{"name":"DDVPCAPS_READBACKLINE","features":[315]},{"name":"DDVPCAPS_SHAREABLE","features":[315]},{"name":"DDVPCAPS_SKIPEVENFIELDS","features":[315]},{"name":"DDVPCAPS_SKIPODDFIELDS","features":[315]},{"name":"DDVPCAPS_SYNCMASTER","features":[315]},{"name":"DDVPCAPS_SYSTEMMEMORY","features":[315]},{"name":"DDVPCAPS_VBIANDVIDEOINDEPENDENT","features":[315]},{"name":"DDVPCAPS_VBISURFACE","features":[315]},{"name":"DDVPCONNECT_DISCARDSVREFDATA","features":[315]},{"name":"DDVPCONNECT_DOUBLECLOCK","features":[315]},{"name":"DDVPCONNECT_HALFLINE","features":[315]},{"name":"DDVPCONNECT_INTERLACED","features":[315]},{"name":"DDVPCONNECT_INVERTPOLARITY","features":[315]},{"name":"DDVPCONNECT_SHAREEVEN","features":[315]},{"name":"DDVPCONNECT_SHAREODD","features":[315]},{"name":"DDVPCONNECT_VACT","features":[315]},{"name":"DDVPCREATE_VBIONLY","features":[315]},{"name":"DDVPCREATE_VIDEOONLY","features":[315]},{"name":"DDVPD_ALIGN","features":[315]},{"name":"DDVPD_AUTOFLIP","features":[315]},{"name":"DDVPD_CAPS","features":[315]},{"name":"DDVPD_FILTERQUALITY","features":[315]},{"name":"DDVPD_FX","features":[315]},{"name":"DDVPD_HEIGHT","features":[315]},{"name":"DDVPD_ID","features":[315]},{"name":"DDVPD_PREFERREDAUTOFLIP","features":[315]},{"name":"DDVPD_WIDTH","features":[315]},{"name":"DDVPFLIP_VBI","features":[315]},{"name":"DDVPFLIP_VIDEO","features":[315]},{"name":"DDVPFORMAT_VBI","features":[315]},{"name":"DDVPFORMAT_VIDEO","features":[315]},{"name":"DDVPFX_CROPTOPDATA","features":[315]},{"name":"DDVPFX_CROPX","features":[315]},{"name":"DDVPFX_CROPY","features":[315]},{"name":"DDVPFX_IGNOREVBIXCROP","features":[315]},{"name":"DDVPFX_INTERLEAVE","features":[315]},{"name":"DDVPFX_MIRRORLEFTRIGHT","features":[315]},{"name":"DDVPFX_MIRRORUPDOWN","features":[315]},{"name":"DDVPFX_PRESHRINKX","features":[315]},{"name":"DDVPFX_PRESHRINKXB","features":[315]},{"name":"DDVPFX_PRESHRINKXS","features":[315]},{"name":"DDVPFX_PRESHRINKY","features":[315]},{"name":"DDVPFX_PRESHRINKYB","features":[315]},{"name":"DDVPFX_PRESHRINKYS","features":[315]},{"name":"DDVPFX_PRESTRETCHX","features":[315]},{"name":"DDVPFX_PRESTRETCHXN","features":[315]},{"name":"DDVPFX_PRESTRETCHY","features":[315]},{"name":"DDVPFX_PRESTRETCHYN","features":[315]},{"name":"DDVPFX_VBICONVERT","features":[315]},{"name":"DDVPFX_VBINOINTERLEAVE","features":[315]},{"name":"DDVPFX_VBINOSCALE","features":[315]},{"name":"DDVPSQ_NOSIGNAL","features":[315]},{"name":"DDVPSQ_SIGNALOK","features":[315]},{"name":"DDVPSTATUS_VBIONLY","features":[315]},{"name":"DDVPSTATUS_VIDEOONLY","features":[315]},{"name":"DDVPTARGET_VBI","features":[315]},{"name":"DDVPTARGET_VIDEO","features":[315]},{"name":"DDVPTYPE_BROOKTREE","features":[315]},{"name":"DDVPTYPE_CCIR656","features":[315]},{"name":"DDVPTYPE_E_HREFH_VREFH","features":[315]},{"name":"DDVPTYPE_E_HREFH_VREFL","features":[315]},{"name":"DDVPTYPE_E_HREFL_VREFH","features":[315]},{"name":"DDVPTYPE_E_HREFL_VREFL","features":[315]},{"name":"DDVPTYPE_PHILIPS","features":[315]},{"name":"DDVPWAIT_BEGIN","features":[315]},{"name":"DDVPWAIT_END","features":[315]},{"name":"DDVPWAIT_LINE","features":[315]},{"name":"DDVP_AUTOFLIP","features":[315]},{"name":"DDVP_CONVERT","features":[315]},{"name":"DDVP_CROP","features":[315]},{"name":"DDVP_HARDWAREDEINTERLACE","features":[315]},{"name":"DDVP_IGNOREVBIXCROP","features":[315]},{"name":"DDVP_INTERLEAVE","features":[315]},{"name":"DDVP_MIRRORLEFTRIGHT","features":[315]},{"name":"DDVP_MIRRORUPDOWN","features":[315]},{"name":"DDVP_OVERRIDEBOBWEAVE","features":[315]},{"name":"DDVP_PRESCALE","features":[315]},{"name":"DDVP_SKIPEVENFIELDS","features":[315]},{"name":"DDVP_SKIPODDFIELDS","features":[315]},{"name":"DDVP_SYNCMASTER","features":[315]},{"name":"DDVP_VBICONVERT","features":[315]},{"name":"DDVP_VBINOINTERLEAVE","features":[315]},{"name":"DDVP_VBINOSCALE","features":[315]},{"name":"DDWAITVB_BLOCKBEGIN","features":[315]},{"name":"DDWAITVB_BLOCKBEGINEVENT","features":[315]},{"name":"DDWAITVB_BLOCKEND","features":[315]},{"name":"DDWAITVB_I_TESTVB","features":[315]},{"name":"DD_ADDATTACHEDSURFACEDATA","features":[305,315]},{"name":"DD_ATTACHLIST","features":[305,315]},{"name":"DD_BEGINMOCOMPFRAMEDATA","features":[305,315]},{"name":"DD_BLTDATA","features":[305,315]},{"name":"DD_CALLBACKS","features":[305,315,316]},{"name":"DD_CANCREATESURFACEDATA","features":[315]},{"name":"DD_CANCREATEVPORTDATA","features":[315]},{"name":"DD_CLIPPER_GLOBAL","features":[315]},{"name":"DD_CLIPPER_LOCAL","features":[315]},{"name":"DD_COLORCONTROLCALLBACKS","features":[305,315]},{"name":"DD_COLORCONTROLDATA","features":[305,315]},{"name":"DD_CREATEMOCOMPDATA","features":[315]},{"name":"DD_CREATEPALETTEDATA","features":[305,315,316]},{"name":"DD_CREATESURFACEDATA","features":[305,315]},{"name":"DD_CREATESURFACEEXDATA","features":[305,315]},{"name":"DD_CREATEVPORTDATA","features":[305,315]},{"name":"DD_D3DBUFCALLBACKS","features":[305,315]},{"name":"DD_DESTROYDDLOCALDATA","features":[315]},{"name":"DD_DESTROYMOCOMPDATA","features":[315]},{"name":"DD_DESTROYPALETTEDATA","features":[315]},{"name":"DD_DESTROYSURFACEDATA","features":[305,315]},{"name":"DD_DESTROYVPORTDATA","features":[305,315]},{"name":"DD_DIRECTDRAW_GLOBAL","features":[315]},{"name":"DD_DIRECTDRAW_LOCAL","features":[315]},{"name":"DD_DRVSETCOLORKEYDATA","features":[305,315]},{"name":"DD_ENDMOCOMPFRAMEDATA","features":[315]},{"name":"DD_FLIPDATA","features":[305,315]},{"name":"DD_FLIPTOGDISURFACEDATA","features":[315]},{"name":"DD_FLIPVPORTDATA","features":[305,315]},{"name":"DD_FREEDRIVERMEMORYDATA","features":[305,315]},{"name":"DD_GETAVAILDRIVERMEMORYDATA","features":[315]},{"name":"DD_GETBLTSTATUSDATA","features":[305,315]},{"name":"DD_GETDRIVERINFODATA","features":[315]},{"name":"DD_GETDRIVERSTATEDATA","features":[315]},{"name":"DD_GETFLIPSTATUSDATA","features":[305,315]},{"name":"DD_GETHEAPALIGNMENTDATA","features":[315]},{"name":"DD_GETINTERNALMOCOMPDATA","features":[315]},{"name":"DD_GETMOCOMPCOMPBUFFDATA","features":[315]},{"name":"DD_GETMOCOMPFORMATSDATA","features":[315]},{"name":"DD_GETMOCOMPGUIDSDATA","features":[315]},{"name":"DD_GETSCANLINEDATA","features":[315]},{"name":"DD_GETVPORTBANDWIDTHDATA","features":[305,315]},{"name":"DD_GETVPORTCONNECTDATA","features":[315]},{"name":"DD_GETVPORTFIELDDATA","features":[305,315]},{"name":"DD_GETVPORTFLIPSTATUSDATA","features":[315]},{"name":"DD_GETVPORTINPUTFORMATDATA","features":[305,315]},{"name":"DD_GETVPORTLINEDATA","features":[305,315]},{"name":"DD_GETVPORTOUTPUTFORMATDATA","features":[305,315]},{"name":"DD_GETVPORTSIGNALDATA","features":[305,315]},{"name":"DD_HALINFO","features":[305,315]},{"name":"DD_HALINFO_V4","features":[315]},{"name":"DD_HAL_VERSION","features":[315]},{"name":"DD_KERNELCALLBACKS","features":[305,315]},{"name":"DD_LOCKDATA","features":[305,315]},{"name":"DD_MAPMEMORYDATA","features":[305,315]},{"name":"DD_MISCELLANEOUS2CALLBACKS","features":[305,315]},{"name":"DD_MISCELLANEOUSCALLBACKS","features":[315]},{"name":"DD_MORECAPS","features":[315]},{"name":"DD_MORESURFACECAPS","features":[315]},{"name":"DD_MOTIONCOMPCALLBACKS","features":[305,315]},{"name":"DD_MOTIONCOMP_LOCAL","features":[315]},{"name":"DD_NONLOCALVIDMEMCAPS","features":[315]},{"name":"DD_NTCALLBACKS","features":[305,315]},{"name":"DD_NTPRIVATEDRIVERCAPS","features":[315]},{"name":"DD_PALETTECALLBACKS","features":[315,316]},{"name":"DD_PALETTE_GLOBAL","features":[315]},{"name":"DD_PALETTE_LOCAL","features":[315]},{"name":"DD_QUERYMOCOMPSTATUSDATA","features":[305,315]},{"name":"DD_RENDERMOCOMPDATA","features":[305,315]},{"name":"DD_RUNTIME_VERSION","features":[315]},{"name":"DD_SETCLIPLISTDATA","features":[305,315]},{"name":"DD_SETCOLORKEYDATA","features":[305,315]},{"name":"DD_SETENTRIESDATA","features":[315,316]},{"name":"DD_SETEXCLUSIVEMODEDATA","features":[315]},{"name":"DD_SETOVERLAYPOSITIONDATA","features":[305,315]},{"name":"DD_SETPALETTEDATA","features":[305,315]},{"name":"DD_STEREOMODE","features":[305,315]},{"name":"DD_SURFACECALLBACKS","features":[305,315]},{"name":"DD_SURFACE_GLOBAL","features":[305,315]},{"name":"DD_SURFACE_INT","features":[305,315]},{"name":"DD_SURFACE_LOCAL","features":[305,315]},{"name":"DD_SURFACE_MORE","features":[305,315]},{"name":"DD_SYNCSURFACEDATA","features":[305,315]},{"name":"DD_SYNCVIDEOPORTDATA","features":[305,315]},{"name":"DD_UNLOCKDATA","features":[305,315]},{"name":"DD_UPDATENONLOCALHEAPDATA","features":[315]},{"name":"DD_UPDATEOVERLAYDATA","features":[305,315]},{"name":"DD_UPDATEVPORTDATA","features":[305,315]},{"name":"DD_VERSION","features":[315]},{"name":"DD_VIDEOPORTCALLBACKS","features":[305,315]},{"name":"DD_VIDEOPORT_LOCAL","features":[305,315]},{"name":"DD_VPORTCOLORDATA","features":[305,315]},{"name":"DD_WAITFORVERTICALBLANKDATA","features":[315]},{"name":"DD_WAITFORVPORTSYNCDATA","features":[305,315]},{"name":"DELETED_LASTONE","features":[315]},{"name":"DELETED_NOTFOUND","features":[315]},{"name":"DELETED_OK","features":[315]},{"name":"DIRECTDRAW_VERSION","features":[315]},{"name":"DXAPI_HALVERSION","features":[315]},{"name":"DXAPI_INTERFACE","features":[305,315]},{"name":"DXERR_GENERIC","features":[315]},{"name":"DXERR_OUTOFCAPS","features":[315]},{"name":"DXERR_UNSUPPORTED","features":[315]},{"name":"DX_IRQDATA","features":[315]},{"name":"DX_OK","features":[315]},{"name":"DirectDrawCreate","features":[315]},{"name":"DirectDrawCreateClipper","features":[315]},{"name":"DirectDrawCreateEx","features":[315]},{"name":"DirectDrawEnumerateA","features":[305,315]},{"name":"DirectDrawEnumerateExA","features":[305,315,316]},{"name":"DirectDrawEnumerateExW","features":[305,315,316]},{"name":"DirectDrawEnumerateW","features":[305,315]},{"name":"GUID_ColorControlCallbacks","features":[315]},{"name":"GUID_D3DCallbacks","features":[315]},{"name":"GUID_D3DCallbacks2","features":[315]},{"name":"GUID_D3DCallbacks3","features":[315]},{"name":"GUID_D3DCaps","features":[315]},{"name":"GUID_D3DExtendedCaps","features":[315]},{"name":"GUID_D3DParseUnknownCommandCallback","features":[315]},{"name":"GUID_DDMoreCaps","features":[315]},{"name":"GUID_DDMoreSurfaceCaps","features":[315]},{"name":"GUID_DDStereoMode","features":[315]},{"name":"GUID_DxApi","features":[315]},{"name":"GUID_GetHeapAlignment","features":[315]},{"name":"GUID_KernelCallbacks","features":[315]},{"name":"GUID_KernelCaps","features":[315]},{"name":"GUID_Miscellaneous2Callbacks","features":[315]},{"name":"GUID_MiscellaneousCallbacks","features":[315]},{"name":"GUID_MotionCompCallbacks","features":[315]},{"name":"GUID_NTCallbacks","features":[315]},{"name":"GUID_NTPrivateDriverCaps","features":[315]},{"name":"GUID_NonLocalVidMemCaps","features":[315]},{"name":"GUID_OptSurfaceKmodeInfo","features":[315]},{"name":"GUID_OptSurfaceUmodeInfo","features":[315]},{"name":"GUID_UpdateNonLocalHeap","features":[315]},{"name":"GUID_UserModeDriverInfo","features":[315]},{"name":"GUID_UserModeDriverPassword","features":[315]},{"name":"GUID_VPE2Callbacks","features":[315]},{"name":"GUID_VideoPortCallbacks","features":[315]},{"name":"GUID_VideoPortCaps","features":[315]},{"name":"GUID_ZPixelFormats","features":[315]},{"name":"HEAPALIAS","features":[315]},{"name":"HEAPALIASINFO","features":[315]},{"name":"HEAPALIASINFO_MAPPEDDUMMY","features":[315]},{"name":"HEAPALIASINFO_MAPPEDREAL","features":[315]},{"name":"HEAPALIGNMENT","features":[315]},{"name":"IDDVideoPortContainer","features":[315]},{"name":"IDirectDraw","features":[315]},{"name":"IDirectDraw2","features":[315]},{"name":"IDirectDraw4","features":[315]},{"name":"IDirectDraw7","features":[315]},{"name":"IDirectDrawClipper","features":[315]},{"name":"IDirectDrawColorControl","features":[315]},{"name":"IDirectDrawGammaControl","features":[315]},{"name":"IDirectDrawKernel","features":[315]},{"name":"IDirectDrawPalette","features":[315]},{"name":"IDirectDrawSurface","features":[315]},{"name":"IDirectDrawSurface2","features":[315]},{"name":"IDirectDrawSurface3","features":[315]},{"name":"IDirectDrawSurface4","features":[315]},{"name":"IDirectDrawSurface7","features":[315]},{"name":"IDirectDrawSurfaceKernel","features":[315]},{"name":"IDirectDrawVideoPort","features":[315]},{"name":"IDirectDrawVideoPortNotify","features":[315]},{"name":"IRQINFO_HANDLED","features":[315]},{"name":"IRQINFO_NOTHANDLED","features":[315]},{"name":"IUNKNOWN_LIST","features":[315]},{"name":"LPCLIPPERCALLBACK","features":[305,315]},{"name":"LPDD32BITDRIVERINIT","features":[315]},{"name":"LPDDENUMCALLBACKA","features":[305,315]},{"name":"LPDDENUMCALLBACKEXA","features":[305,315,316]},{"name":"LPDDENUMCALLBACKEXW","features":[305,315,316]},{"name":"LPDDENUMCALLBACKW","features":[305,315]},{"name":"LPDDENUMMODESCALLBACK","features":[315]},{"name":"LPDDENUMMODESCALLBACK2","features":[315]},{"name":"LPDDENUMSURFACESCALLBACK","features":[315]},{"name":"LPDDENUMSURFACESCALLBACK2","features":[315]},{"name":"LPDDENUMSURFACESCALLBACK7","features":[315]},{"name":"LPDDENUMVIDEOCALLBACK","features":[315]},{"name":"LPDDFXROP","features":[315]},{"name":"LPDDGAMMACALIBRATORPROC","features":[315]},{"name":"LPDDHALCOLORCB_COLORCONTROL","features":[305,315,316]},{"name":"LPDDHALEXEBUFCB_CANCREATEEXEBUF","features":[305,315,316]},{"name":"LPDDHALEXEBUFCB_CREATEEXEBUF","features":[305,315,316]},{"name":"LPDDHALEXEBUFCB_DESTROYEXEBUF","features":[305,315,316]},{"name":"LPDDHALEXEBUFCB_LOCKEXEBUF","features":[305,315,316]},{"name":"LPDDHALEXEBUFCB_UNLOCKEXEBUF","features":[305,315,316]},{"name":"LPDDHALKERNELCB_SYNCSURFACE","features":[305,315,316]},{"name":"LPDDHALKERNELCB_SYNCVIDEOPORT","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_BEGINFRAME","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_CREATE","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_DESTROY","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_ENDFRAME","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_GETCOMPBUFFINFO","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_GETFORMATS","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_GETGUIDS","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_GETINTERNALINFO","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_QUERYSTATUS","features":[305,315,316]},{"name":"LPDDHALMOCOMPCB_RENDER","features":[305,315,316]},{"name":"LPDDHALPALCB_DESTROYPALETTE","features":[305,315,316]},{"name":"LPDDHALPALCB_SETENTRIES","features":[305,315,316]},{"name":"LPDDHALSURFCB_ADDATTACHEDSURFACE","features":[305,315,316]},{"name":"LPDDHALSURFCB_BLT","features":[305,315,316]},{"name":"LPDDHALSURFCB_DESTROYSURFACE","features":[305,315,316]},{"name":"LPDDHALSURFCB_FLIP","features":[305,315,316]},{"name":"LPDDHALSURFCB_GETBLTSTATUS","features":[305,315,316]},{"name":"LPDDHALSURFCB_GETFLIPSTATUS","features":[305,315,316]},{"name":"LPDDHALSURFCB_LOCK","features":[305,315,316]},{"name":"LPDDHALSURFCB_SETCLIPLIST","features":[305,315,316]},{"name":"LPDDHALSURFCB_SETCOLORKEY","features":[305,315,316]},{"name":"LPDDHALSURFCB_SETOVERLAYPOSITION","features":[305,315,316]},{"name":"LPDDHALSURFCB_SETPALETTE","features":[305,315,316]},{"name":"LPDDHALSURFCB_UNLOCK","features":[305,315,316]},{"name":"LPDDHALSURFCB_UPDATEOVERLAY","features":[305,315,316]},{"name":"LPDDHALVPORTCB_CANCREATEVIDEOPORT","features":[305,315,316]},{"name":"LPDDHALVPORTCB_COLORCONTROL","features":[305,315,316]},{"name":"LPDDHALVPORTCB_CREATEVIDEOPORT","features":[305,315,316]},{"name":"LPDDHALVPORTCB_DESTROYVPORT","features":[305,315,316]},{"name":"LPDDHALVPORTCB_FLIP","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETBANDWIDTH","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETFIELD","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETFLIPSTATUS","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETINPUTFORMATS","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETLINE","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETOUTPUTFORMATS","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETSIGNALSTATUS","features":[305,315,316]},{"name":"LPDDHALVPORTCB_GETVPORTCONNECT","features":[305,315,316]},{"name":"LPDDHALVPORTCB_UPDATE","features":[305,315,316]},{"name":"LPDDHALVPORTCB_WAITFORSYNC","features":[305,315,316]},{"name":"LPDDHAL_CANCREATESURFACE","features":[305,315,316]},{"name":"LPDDHAL_CREATEPALETTE","features":[305,315,316]},{"name":"LPDDHAL_CREATESURFACE","features":[305,315,316]},{"name":"LPDDHAL_CREATESURFACEEX","features":[305,315,316]},{"name":"LPDDHAL_DESTROYDDLOCAL","features":[305,315,316]},{"name":"LPDDHAL_DESTROYDRIVER","features":[305,315,316]},{"name":"LPDDHAL_FLIPTOGDISURFACE","features":[305,315,316]},{"name":"LPDDHAL_GETAVAILDRIVERMEMORY","features":[305,315,316]},{"name":"LPDDHAL_GETDRIVERINFO","features":[315]},{"name":"LPDDHAL_GETDRIVERSTATE","features":[315]},{"name":"LPDDHAL_GETHEAPALIGNMENT","features":[315]},{"name":"LPDDHAL_GETSCANLINE","features":[305,315,316]},{"name":"LPDDHAL_SETCOLORKEY","features":[305,315,316]},{"name":"LPDDHAL_SETEXCLUSIVEMODE","features":[305,315,316]},{"name":"LPDDHAL_SETINFO","features":[305,315,316]},{"name":"LPDDHAL_SETMODE","features":[305,315,316]},{"name":"LPDDHAL_UPDATENONLOCALHEAP","features":[305,315,316]},{"name":"LPDDHAL_VIDMEMALLOC","features":[305,315,316]},{"name":"LPDDHAL_VIDMEMFREE","features":[305,315,316]},{"name":"LPDDHAL_WAITFORVERTICALBLANK","features":[305,315,316]},{"name":"LPDDHEL_INIT","features":[305,315,316]},{"name":"LPDIRECTDRAWENUMERATEEXA","features":[305,315,316]},{"name":"LPDIRECTDRAWENUMERATEEXW","features":[305,315,316]},{"name":"MAX_AUTOFLIP_BUFFERS","features":[315]},{"name":"MAX_DDDEVICEID_STRING","features":[315]},{"name":"MAX_DRIVER_NAME","features":[315]},{"name":"MAX_PALETTE_SIZE","features":[315]},{"name":"MDL_64_BIT_VA","features":[315]},{"name":"MDL_ALLOCATED_FIXED_SIZE","features":[315]},{"name":"MDL_ALLOCATED_MUST_SUCCEED","features":[315]},{"name":"MDL_IO_PAGE_READ","features":[315]},{"name":"MDL_IO_SPACE","features":[315]},{"name":"MDL_LOCK_HELD","features":[315]},{"name":"MDL_MAPPED_TO_SYSTEM_VA","features":[315]},{"name":"MDL_MAPPING_CAN_FAIL","features":[315]},{"name":"MDL_NETWORK_HEADER","features":[315]},{"name":"MDL_PAGES_LOCKED","features":[315]},{"name":"MDL_PARENT_MAPPED_SYSTEM_VA","features":[315]},{"name":"MDL_PARTIAL","features":[315]},{"name":"MDL_PARTIAL_HAS_BEEN_MAPPED","features":[315]},{"name":"MDL_SCATTER_GATHER_VA","features":[315]},{"name":"MDL_SOURCE_IS_NONPAGED_POOL","features":[315]},{"name":"MDL_WRITE_OPERATION","features":[315]},{"name":"OBJECT_ISROOT","features":[315]},{"name":"PDD_ALPHABLT","features":[305,315]},{"name":"PDD_CANCREATESURFACE","features":[315]},{"name":"PDD_COLORCB_COLORCONTROL","features":[305,315]},{"name":"PDD_CREATEPALETTE","features":[305,315,316]},{"name":"PDD_CREATESURFACE","features":[305,315]},{"name":"PDD_CREATESURFACEEX","features":[305,315]},{"name":"PDD_DESTROYDDLOCAL","features":[315]},{"name":"PDD_DESTROYDRIVER","features":[315]},{"name":"PDD_DESTROYDRIVERDATA","features":[315]},{"name":"PDD_FLIPTOGDISURFACE","features":[315]},{"name":"PDD_FREEDRIVERMEMORY","features":[305,315]},{"name":"PDD_GETAVAILDRIVERMEMORY","features":[315]},{"name":"PDD_GETDRIVERINFO","features":[315]},{"name":"PDD_GETDRIVERSTATE","features":[315]},{"name":"PDD_GETSCANLINE","features":[315]},{"name":"PDD_GETVPORTAUTOFLIPSURFACEDATA","features":[315]},{"name":"PDD_KERNELCB_SYNCSURFACE","features":[305,315]},{"name":"PDD_KERNELCB_SYNCVIDEOPORT","features":[305,315]},{"name":"PDD_MAPMEMORY","features":[305,315]},{"name":"PDD_MOCOMPCB_BEGINFRAME","features":[305,315]},{"name":"PDD_MOCOMPCB_CREATE","features":[315]},{"name":"PDD_MOCOMPCB_DESTROY","features":[315]},{"name":"PDD_MOCOMPCB_ENDFRAME","features":[315]},{"name":"PDD_MOCOMPCB_GETCOMPBUFFINFO","features":[315]},{"name":"PDD_MOCOMPCB_GETFORMATS","features":[315]},{"name":"PDD_MOCOMPCB_GETGUIDS","features":[315]},{"name":"PDD_MOCOMPCB_GETINTERNALINFO","features":[315]},{"name":"PDD_MOCOMPCB_QUERYSTATUS","features":[305,315]},{"name":"PDD_MOCOMPCB_RENDER","features":[305,315]},{"name":"PDD_PALCB_DESTROYPALETTE","features":[315]},{"name":"PDD_PALCB_SETENTRIES","features":[315,316]},{"name":"PDD_SETCOLORKEY","features":[305,315]},{"name":"PDD_SETEXCLUSIVEMODE","features":[315]},{"name":"PDD_SETMODE","features":[315]},{"name":"PDD_SETMODEDATA","features":[315]},{"name":"PDD_SURFCB_ADDATTACHEDSURFACE","features":[305,315]},{"name":"PDD_SURFCB_BLT","features":[305,315]},{"name":"PDD_SURFCB_DESTROYSURFACE","features":[305,315]},{"name":"PDD_SURFCB_FLIP","features":[305,315]},{"name":"PDD_SURFCB_GETBLTSTATUS","features":[305,315]},{"name":"PDD_SURFCB_GETFLIPSTATUS","features":[305,315]},{"name":"PDD_SURFCB_LOCK","features":[305,315]},{"name":"PDD_SURFCB_SETCLIPLIST","features":[305,315]},{"name":"PDD_SURFCB_SETCOLORKEY","features":[305,315]},{"name":"PDD_SURFCB_SETOVERLAYPOSITION","features":[305,315]},{"name":"PDD_SURFCB_SETPALETTE","features":[305,315]},{"name":"PDD_SURFCB_UNLOCK","features":[305,315]},{"name":"PDD_SURFCB_UPDATEOVERLAY","features":[305,315]},{"name":"PDD_VPORTCB_CANCREATEVIDEOPORT","features":[315]},{"name":"PDD_VPORTCB_COLORCONTROL","features":[305,315]},{"name":"PDD_VPORTCB_CREATEVIDEOPORT","features":[305,315]},{"name":"PDD_VPORTCB_DESTROYVPORT","features":[305,315]},{"name":"PDD_VPORTCB_FLIP","features":[305,315]},{"name":"PDD_VPORTCB_GETAUTOFLIPSURF","features":[315]},{"name":"PDD_VPORTCB_GETBANDWIDTH","features":[305,315]},{"name":"PDD_VPORTCB_GETFIELD","features":[305,315]},{"name":"PDD_VPORTCB_GETFLIPSTATUS","features":[315]},{"name":"PDD_VPORTCB_GETINPUTFORMATS","features":[305,315]},{"name":"PDD_VPORTCB_GETLINE","features":[305,315]},{"name":"PDD_VPORTCB_GETOUTPUTFORMATS","features":[305,315]},{"name":"PDD_VPORTCB_GETSIGNALSTATUS","features":[305,315]},{"name":"PDD_VPORTCB_GETVPORTCONNECT","features":[315]},{"name":"PDD_VPORTCB_UPDATE","features":[305,315]},{"name":"PDD_VPORTCB_WAITFORSYNC","features":[305,315]},{"name":"PDD_WAITFORVERTICALBLANK","features":[315]},{"name":"PDX_BOBNEXTFIELD","features":[315]},{"name":"PDX_ENABLEIRQ","features":[315]},{"name":"PDX_FLIPOVERLAY","features":[315]},{"name":"PDX_FLIPVIDEOPORT","features":[315]},{"name":"PDX_GETCURRENTAUTOFLIP","features":[315]},{"name":"PDX_GETIRQINFO","features":[315]},{"name":"PDX_GETPOLARITY","features":[315]},{"name":"PDX_GETPREVIOUSAUTOFLIP","features":[315]},{"name":"PDX_GETTRANSFERSTATUS","features":[315]},{"name":"PDX_IRQCALLBACK","features":[315]},{"name":"PDX_LOCK","features":[315]},{"name":"PDX_SETSTATE","features":[305,315]},{"name":"PDX_SKIPNEXTFIELD","features":[315]},{"name":"PDX_TRANSFER","features":[315]},{"name":"PFINDEX_UNINITIALIZED","features":[315]},{"name":"PROCESS_LIST","features":[315]},{"name":"REGSTR_KEY_DDHW_DESCRIPTION","features":[315]},{"name":"REGSTR_KEY_DDHW_DRIVERNAME","features":[315]},{"name":"REGSTR_PATH_DDHW","features":[315]},{"name":"ROP_HAS_PATTERN","features":[315]},{"name":"ROP_HAS_SOURCE","features":[315]},{"name":"SURFACEALIGNMENT","features":[315]},{"name":"SURFACEALIGN_DISCARDABLE","features":[315]},{"name":"VIDEOMEMORY","features":[305,315]},{"name":"VIDEOMEMORYINFO","features":[315]},{"name":"VIDMEM","features":[305,315]},{"name":"VIDMEMINFO","features":[305,315]},{"name":"VIDMEM_HEAPDISABLED","features":[315]},{"name":"VIDMEM_ISHEAP","features":[315]},{"name":"VIDMEM_ISLINEAR","features":[315]},{"name":"VIDMEM_ISNONLOCAL","features":[315]},{"name":"VIDMEM_ISRECTANGULAR","features":[315]},{"name":"VIDMEM_ISWC","features":[315]},{"name":"VMEMHEAP","features":[305,315]},{"name":"VMEMHEAP_ALIGNMENT","features":[315]},{"name":"VMEMHEAP_LINEAR","features":[315]},{"name":"VMEMHEAP_RECTANGULAR","features":[315]},{"name":"VMEML","features":[305,315]},{"name":"VMEMR","features":[305,315]},{"name":"_FACDD","features":[315]}],"410":[{"name":"CLSID_AutoScrollBehavior","features":[406]},{"name":"CLSID_DeferContactService","features":[406]},{"name":"CLSID_DragDropConfigurationBehavior","features":[406]},{"name":"CLSID_HorizontalIndicatorContent","features":[406]},{"name":"CLSID_VerticalIndicatorContent","features":[406]},{"name":"CLSID_VirtualViewportContent","features":[406]},{"name":"DCompManipulationCompositor","features":[406]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION","features":[406]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION_FORWARD","features":[406]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION_REVERSE","features":[406]},{"name":"DIRECTMANIPULATION_AUTOSCROLL_CONFIGURATION_STOP","features":[406]},{"name":"DIRECTMANIPULATION_BUILDING","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_INTERACTION","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_NONE","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_RAILS_X","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_RAILS_Y","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_SCALING","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_SCALING_INERTIA","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_TRANSLATION_INERTIA","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_TRANSLATION_X","features":[406]},{"name":"DIRECTMANIPULATION_CONFIGURATION_TRANSLATION_Y","features":[406]},{"name":"DIRECTMANIPULATION_COORDINATE_BOUNDARY","features":[406]},{"name":"DIRECTMANIPULATION_COORDINATE_MIRRORED","features":[406]},{"name":"DIRECTMANIPULATION_COORDINATE_ORIGIN","features":[406]},{"name":"DIRECTMANIPULATION_DISABLED","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CANCELLED","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_COMMITTED","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_HOLD_DRAG","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_HORIZONTAL","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_SELECT_DRAG","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_SELECT_ONLY","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_CONFIGURATION_VERTICAL","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_DRAGGING","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_PRESELECT","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_READY","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_SELECTING","features":[406]},{"name":"DIRECTMANIPULATION_DRAG_DROP_STATUS","features":[406]},{"name":"DIRECTMANIPULATION_ENABLED","features":[406]},{"name":"DIRECTMANIPULATION_GESTURE_CONFIGURATION","features":[406]},{"name":"DIRECTMANIPULATION_GESTURE_CROSS_SLIDE_HORIZONTAL","features":[406]},{"name":"DIRECTMANIPULATION_GESTURE_CROSS_SLIDE_VERTICAL","features":[406]},{"name":"DIRECTMANIPULATION_GESTURE_DEFAULT","features":[406]},{"name":"DIRECTMANIPULATION_GESTURE_NONE","features":[406]},{"name":"DIRECTMANIPULATION_GESTURE_PINCH_ZOOM","features":[406]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE","features":[406]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE_ASYNCHRONOUS","features":[406]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE_AUTO_SYNCHRONOUS","features":[406]},{"name":"DIRECTMANIPULATION_HITTEST_TYPE_SYNCHRONOUS","features":[406]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT","features":[406]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_CENTER","features":[406]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_LEFT","features":[406]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_NONE","features":[406]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_RIGHT","features":[406]},{"name":"DIRECTMANIPULATION_HORIZONTALALIGNMENT_UNLOCKCENTER","features":[406]},{"name":"DIRECTMANIPULATION_INERTIA","features":[406]},{"name":"DIRECTMANIPULATION_INPUT_MODE","features":[406]},{"name":"DIRECTMANIPULATION_INPUT_MODE_AUTOMATIC","features":[406]},{"name":"DIRECTMANIPULATION_INPUT_MODE_MANUAL","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_BEGIN","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_END","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_CROSS_SLIDE","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_HOLD","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_PINCH_ZOOM","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_GESTURE_TAP","features":[406]},{"name":"DIRECTMANIPULATION_INTERACTION_TYPE_MANIPULATION","features":[406]},{"name":"DIRECTMANIPULATION_KEYBOARDFOCUS","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_ALL","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_CENTERX","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_CENTERY","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_NONE","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_TRANSLATEX","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_TRANSLATEY","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_TYPES","features":[406]},{"name":"DIRECTMANIPULATION_MOTION_ZOOM","features":[406]},{"name":"DIRECTMANIPULATION_MOUSEFOCUS","features":[406]},{"name":"DIRECTMANIPULATION_READY","features":[406]},{"name":"DIRECTMANIPULATION_RUNNING","features":[406]},{"name":"DIRECTMANIPULATION_SNAPPOINT_COORDINATE","features":[406]},{"name":"DIRECTMANIPULATION_SNAPPOINT_MANDATORY","features":[406]},{"name":"DIRECTMANIPULATION_SNAPPOINT_MANDATORY_SINGLE","features":[406]},{"name":"DIRECTMANIPULATION_SNAPPOINT_OPTIONAL","features":[406]},{"name":"DIRECTMANIPULATION_SNAPPOINT_OPTIONAL_SINGLE","features":[406]},{"name":"DIRECTMANIPULATION_SNAPPOINT_TYPE","features":[406]},{"name":"DIRECTMANIPULATION_STATUS","features":[406]},{"name":"DIRECTMANIPULATION_SUSPENDED","features":[406]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT","features":[406]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_BOTTOM","features":[406]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_CENTER","features":[406]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_NONE","features":[406]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_TOP","features":[406]},{"name":"DIRECTMANIPULATION_VERTICALALIGNMENT_UNLOCKCENTER","features":[406]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS","features":[406]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_AUTODISABLE","features":[406]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_DEFAULT","features":[406]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_DISABLEPIXELSNAPPING","features":[406]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_EXPLICITHITTEST","features":[406]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_INPUT","features":[406]},{"name":"DIRECTMANIPULATION_VIEWPORT_OPTIONS_MANUALUPDATE","features":[406]},{"name":"DirectManipulationManager","features":[406]},{"name":"DirectManipulationPrimaryContent","features":[406]},{"name":"DirectManipulationSharedManager","features":[406]},{"name":"DirectManipulationUpdateManager","features":[406]},{"name":"DirectManipulationViewport","features":[406]},{"name":"IDirectManipulationAutoScrollBehavior","features":[406]},{"name":"IDirectManipulationCompositor","features":[406]},{"name":"IDirectManipulationCompositor2","features":[406]},{"name":"IDirectManipulationContent","features":[406]},{"name":"IDirectManipulationDeferContactService","features":[406]},{"name":"IDirectManipulationDragDropBehavior","features":[406]},{"name":"IDirectManipulationDragDropEventHandler","features":[406]},{"name":"IDirectManipulationFrameInfoProvider","features":[406]},{"name":"IDirectManipulationInteractionEventHandler","features":[406]},{"name":"IDirectManipulationManager","features":[406]},{"name":"IDirectManipulationManager2","features":[406]},{"name":"IDirectManipulationManager3","features":[406]},{"name":"IDirectManipulationPrimaryContent","features":[406]},{"name":"IDirectManipulationUpdateHandler","features":[406]},{"name":"IDirectManipulationUpdateManager","features":[406]},{"name":"IDirectManipulationViewport","features":[406]},{"name":"IDirectManipulationViewport2","features":[406]},{"name":"IDirectManipulationViewportEventHandler","features":[406]}],"411":[{"name":"DWRITE_ALPHA_MAX","features":[407]},{"name":"DWRITE_AUTOMATIC_FONT_AXES","features":[407]},{"name":"DWRITE_AUTOMATIC_FONT_AXES_NONE","features":[407]},{"name":"DWRITE_AUTOMATIC_FONT_AXES_OPTICAL_SIZE","features":[407]},{"name":"DWRITE_BASELINE","features":[407]},{"name":"DWRITE_BASELINE_CENTRAL","features":[407]},{"name":"DWRITE_BASELINE_DEFAULT","features":[407]},{"name":"DWRITE_BASELINE_HANGING","features":[407]},{"name":"DWRITE_BASELINE_IDEOGRAPHIC_BOTTOM","features":[407]},{"name":"DWRITE_BASELINE_IDEOGRAPHIC_TOP","features":[407]},{"name":"DWRITE_BASELINE_MATH","features":[407]},{"name":"DWRITE_BASELINE_MAXIMUM","features":[407]},{"name":"DWRITE_BASELINE_MINIMUM","features":[407]},{"name":"DWRITE_BASELINE_ROMAN","features":[407]},{"name":"DWRITE_BITMAP_DATA_BGRA32","features":[407]},{"name":"DWRITE_BREAK_CONDITION","features":[407]},{"name":"DWRITE_BREAK_CONDITION_CAN_BREAK","features":[407]},{"name":"DWRITE_BREAK_CONDITION_MAY_NOT_BREAK","features":[407]},{"name":"DWRITE_BREAK_CONDITION_MUST_BREAK","features":[407]},{"name":"DWRITE_BREAK_CONDITION_NEUTRAL","features":[407]},{"name":"DWRITE_CARET_METRICS","features":[407]},{"name":"DWRITE_CLUSTER_METRICS","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_CLEAR","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_COLOR_BURN","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_COLOR_DODGE","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_DARKEN","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_DEST","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_ATOP","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_IN","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_OUT","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_DEST_OVER","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_DIFFERENCE","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_EXCLUSION","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_HARD_LIGHT","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_COLOR","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_HUE","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_LUMINOSITY","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_HSL_SATURATION","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_LIGHTEN","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_MODE","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_MULTIPLY","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_OVERLAY","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_PLUS","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_SCREEN","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_SOFT_LIGHT","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_SRC","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_ATOP","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_IN","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_OUT","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_SRC_OVER","features":[407]},{"name":"DWRITE_COLOR_COMPOSITE_XOR","features":[407]},{"name":"DWRITE_COLOR_F","features":[407]},{"name":"DWRITE_COLOR_GLYPH_RUN","features":[305,407]},{"name":"DWRITE_COLOR_GLYPH_RUN1","features":[305,407]},{"name":"DWRITE_CONTAINER_TYPE","features":[407]},{"name":"DWRITE_CONTAINER_TYPE_UNKNOWN","features":[407]},{"name":"DWRITE_CONTAINER_TYPE_WOFF","features":[407]},{"name":"DWRITE_CONTAINER_TYPE_WOFF2","features":[407]},{"name":"DWRITE_ERR_BASE","features":[407]},{"name":"DWRITE_E_DOWNLOADCANCELLED","features":[407]},{"name":"DWRITE_E_DOWNLOADFAILED","features":[407]},{"name":"DWRITE_E_REMOTEFONT","features":[407]},{"name":"DWRITE_E_TOOMANYDOWNLOADS","features":[407]},{"name":"DWRITE_FACTORY_TYPE","features":[407]},{"name":"DWRITE_FACTORY_TYPE_ISOLATED","features":[407]},{"name":"DWRITE_FACTORY_TYPE_SHARED","features":[407]},{"name":"DWRITE_FILE_FRAGMENT","features":[407]},{"name":"DWRITE_FLOW_DIRECTION","features":[407]},{"name":"DWRITE_FLOW_DIRECTION_BOTTOM_TO_TOP","features":[407]},{"name":"DWRITE_FLOW_DIRECTION_LEFT_TO_RIGHT","features":[407]},{"name":"DWRITE_FLOW_DIRECTION_RIGHT_TO_LEFT","features":[407]},{"name":"DWRITE_FLOW_DIRECTION_TOP_TO_BOTTOM","features":[407]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES","features":[407]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES_HIDDEN","features":[407]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES_NONE","features":[407]},{"name":"DWRITE_FONT_AXIS_ATTRIBUTES_VARIABLE","features":[407]},{"name":"DWRITE_FONT_AXIS_RANGE","features":[407]},{"name":"DWRITE_FONT_AXIS_TAG","features":[407]},{"name":"DWRITE_FONT_AXIS_TAG_ITALIC","features":[407]},{"name":"DWRITE_FONT_AXIS_TAG_OPTICAL_SIZE","features":[407]},{"name":"DWRITE_FONT_AXIS_TAG_SLANT","features":[407]},{"name":"DWRITE_FONT_AXIS_TAG_WEIGHT","features":[407]},{"name":"DWRITE_FONT_AXIS_TAG_WIDTH","features":[407]},{"name":"DWRITE_FONT_AXIS_VALUE","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_BITMAP","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_CFF","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_OPENTYPE_COLLECTION","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_RAW_CFF","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_TRUETYPE","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_TRUETYPE_COLLECTION","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_TYPE1","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_UNKNOWN","features":[407]},{"name":"DWRITE_FONT_FACE_TYPE_VECTOR","features":[407]},{"name":"DWRITE_FONT_FAMILY_MODEL","features":[407]},{"name":"DWRITE_FONT_FAMILY_MODEL_TYPOGRAPHIC","features":[407]},{"name":"DWRITE_FONT_FAMILY_MODEL_WEIGHT_STRETCH_STYLE","features":[407]},{"name":"DWRITE_FONT_FEATURE","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_ALTERNATE_ANNOTATION_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_ALTERNATE_HALF_WIDTH","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_ALTERNATIVE_FRACTIONS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_CAPITAL_SPACING","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_CASE_SENSITIVE_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_ALTERNATES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_LIGATURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_CONTEXTUAL_SWASH","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_CURSIVE_POSITIONING","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_DEFAULT","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_DISCRETIONARY_LIGATURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_EXPERT_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_FRACTIONS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_FULL_WIDTH","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_GLYPH_COMPOSITION_DECOMPOSITION","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_HALANT_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_HALF_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_HALF_WIDTH","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_HISTORICAL_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_HISTORICAL_LIGATURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_HOJO_KANJI_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_HORIZONTAL_KANA_ALTERNATES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS04_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS78_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS83_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_JIS90_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_KERNING","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_LINING_FIGURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_LOCALIZED_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_MARK_POSITIONING","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_MARK_TO_MARK_POSITIONING","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_MATHEMATICAL_GREEK","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_NLC_KANJI_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_OLD_STYLE_FIGURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_ORDINALS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_PETITE_CAPITALS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_PETITE_CAPITALS_FROM_CAPITALS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_ALTERNATE_WIDTH","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_FIGURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_PROPORTIONAL_WIDTHS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_QUARTER_WIDTHS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_REQUIRED_LIGATURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_RUBY_NOTATION_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SCIENTIFIC_INFERIORS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SIMPLIFIED_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SLASHED_ZERO","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SMALL_CAPITALS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SMALL_CAPITALS_FROM_CAPITALS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STANDARD_LIGATURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_ALTERNATES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_1","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_10","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_11","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_12","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_13","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_14","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_15","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_16","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_17","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_18","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_19","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_2","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_20","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_3","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_4","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_5","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_6","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_7","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_8","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_STYLISTIC_SET_9","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SUBSCRIPT","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SUPERSCRIPT","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_SWASH","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_TABULAR_FIGURES","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_THIRD_WIDTHS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_TITLING","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_TRADITIONAL_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_TRADITIONAL_NAME_FORMS","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_UNICASE","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_VERTICAL_ALTERNATES_AND_ROTATION","features":[407]},{"name":"DWRITE_FONT_FEATURE_TAG_VERTICAL_WRITING","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_BITMAP","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_CFF","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_OPENTYPE_COLLECTION","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_TRUETYPE","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_TRUETYPE_COLLECTION","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_TYPE1_PFB","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_TYPE1_PFM","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_UNKNOWN","features":[407]},{"name":"DWRITE_FONT_FILE_TYPE_VECTOR","features":[407]},{"name":"DWRITE_FONT_LINE_GAP_USAGE","features":[407]},{"name":"DWRITE_FONT_LINE_GAP_USAGE_DEFAULT","features":[407]},{"name":"DWRITE_FONT_LINE_GAP_USAGE_DISABLED","features":[407]},{"name":"DWRITE_FONT_LINE_GAP_USAGE_ENABLED","features":[407]},{"name":"DWRITE_FONT_METRICS","features":[407]},{"name":"DWRITE_FONT_METRICS1","features":[305,407]},{"name":"DWRITE_FONT_PROPERTY","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_DESIGN_SCRIPT_LANGUAGE_TAG","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_FACE_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_FAMILY_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_FULL_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_NONE","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_POSTSCRIPT_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_PREFERRED_FAMILY_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_SEMANTIC_TAG","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_STRETCH","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_STYLE","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_SUPPORTED_SCRIPT_LANGUAGE_TAG","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_TOTAL","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_TOTAL_RS3","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FACE_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FAMILY_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_WEIGHT","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FACE_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FAMILY_NAME","features":[407]},{"name":"DWRITE_FONT_PROPERTY_ID_WIN32_FAMILY_NAME","features":[407]},{"name":"DWRITE_FONT_SIMULATIONS","features":[407]},{"name":"DWRITE_FONT_SIMULATIONS_BOLD","features":[407]},{"name":"DWRITE_FONT_SIMULATIONS_NONE","features":[407]},{"name":"DWRITE_FONT_SIMULATIONS_OBLIQUE","features":[407]},{"name":"DWRITE_FONT_SOURCE_TYPE","features":[407]},{"name":"DWRITE_FONT_SOURCE_TYPE_APPX_PACKAGE","features":[407]},{"name":"DWRITE_FONT_SOURCE_TYPE_PER_MACHINE","features":[407]},{"name":"DWRITE_FONT_SOURCE_TYPE_PER_USER","features":[407]},{"name":"DWRITE_FONT_SOURCE_TYPE_REMOTE_FONT_PROVIDER","features":[407]},{"name":"DWRITE_FONT_SOURCE_TYPE_UNKNOWN","features":[407]},{"name":"DWRITE_FONT_STRETCH","features":[407]},{"name":"DWRITE_FONT_STRETCH_CONDENSED","features":[407]},{"name":"DWRITE_FONT_STRETCH_EXPANDED","features":[407]},{"name":"DWRITE_FONT_STRETCH_EXTRA_CONDENSED","features":[407]},{"name":"DWRITE_FONT_STRETCH_EXTRA_EXPANDED","features":[407]},{"name":"DWRITE_FONT_STRETCH_MEDIUM","features":[407]},{"name":"DWRITE_FONT_STRETCH_NORMAL","features":[407]},{"name":"DWRITE_FONT_STRETCH_SEMI_CONDENSED","features":[407]},{"name":"DWRITE_FONT_STRETCH_SEMI_EXPANDED","features":[407]},{"name":"DWRITE_FONT_STRETCH_ULTRA_CONDENSED","features":[407]},{"name":"DWRITE_FONT_STRETCH_ULTRA_EXPANDED","features":[407]},{"name":"DWRITE_FONT_STRETCH_UNDEFINED","features":[407]},{"name":"DWRITE_FONT_STYLE","features":[407]},{"name":"DWRITE_FONT_STYLE_ITALIC","features":[407]},{"name":"DWRITE_FONT_STYLE_NORMAL","features":[407]},{"name":"DWRITE_FONT_STYLE_OBLIQUE","features":[407]},{"name":"DWRITE_FONT_WEIGHT","features":[407]},{"name":"DWRITE_FONT_WEIGHT_BLACK","features":[407]},{"name":"DWRITE_FONT_WEIGHT_BOLD","features":[407]},{"name":"DWRITE_FONT_WEIGHT_DEMI_BOLD","features":[407]},{"name":"DWRITE_FONT_WEIGHT_EXTRA_BLACK","features":[407]},{"name":"DWRITE_FONT_WEIGHT_EXTRA_BOLD","features":[407]},{"name":"DWRITE_FONT_WEIGHT_EXTRA_LIGHT","features":[407]},{"name":"DWRITE_FONT_WEIGHT_HEAVY","features":[407]},{"name":"DWRITE_FONT_WEIGHT_LIGHT","features":[407]},{"name":"DWRITE_FONT_WEIGHT_MEDIUM","features":[407]},{"name":"DWRITE_FONT_WEIGHT_NORMAL","features":[407]},{"name":"DWRITE_FONT_WEIGHT_REGULAR","features":[407]},{"name":"DWRITE_FONT_WEIGHT_SEMI_BOLD","features":[407]},{"name":"DWRITE_FONT_WEIGHT_SEMI_LIGHT","features":[407]},{"name":"DWRITE_FONT_WEIGHT_THIN","features":[407]},{"name":"DWRITE_FONT_WEIGHT_ULTRA_BLACK","features":[407]},{"name":"DWRITE_FONT_WEIGHT_ULTRA_BOLD","features":[407]},{"name":"DWRITE_FONT_WEIGHT_ULTRA_LIGHT","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_DATA","features":[305,396,407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_CFF","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_COLR","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_JPEG","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_NONE","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_PNG","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_PREMULTIPLIED_B8G8R8A8","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_SVG","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_TIFF","features":[407]},{"name":"DWRITE_GLYPH_IMAGE_FORMATS_TRUETYPE","features":[407]},{"name":"DWRITE_GLYPH_METRICS","features":[407]},{"name":"DWRITE_GLYPH_OFFSET","features":[407]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE","features":[407]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_0_DEGREES","features":[407]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_180_DEGREES","features":[407]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_270_DEGREES","features":[407]},{"name":"DWRITE_GLYPH_ORIENTATION_ANGLE_90_DEGREES","features":[407]},{"name":"DWRITE_GLYPH_RUN","features":[305,407]},{"name":"DWRITE_GLYPH_RUN_DESCRIPTION","features":[407]},{"name":"DWRITE_GRID_FIT_MODE","features":[407]},{"name":"DWRITE_GRID_FIT_MODE_DEFAULT","features":[407]},{"name":"DWRITE_GRID_FIT_MODE_DISABLED","features":[407]},{"name":"DWRITE_GRID_FIT_MODE_ENABLED","features":[407]},{"name":"DWRITE_HIT_TEST_METRICS","features":[305,407]},{"name":"DWRITE_INFORMATIONAL_STRING_COPYRIGHT_NOTICE","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_DESCRIPTION","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_DESIGNER","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_DESIGNER_URL","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_DESIGN_SCRIPT_LANGUAGE_TAG","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_FONT_VENDOR_URL","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_FULL_NAME","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_ID","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_LICENSE_DESCRIPTION","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_LICENSE_INFO_URL","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_MANUFACTURER","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_NONE","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_POSTSCRIPT_CID_NAME","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_POSTSCRIPT_NAME","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_PREFERRED_FAMILY_NAMES","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_PREFERRED_SUBFAMILY_NAMES","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_SAMPLE_TEXT","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_SUPPORTED_SCRIPT_LANGUAGE_TAG","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_TRADEMARK","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_TYPOGRAPHIC_FAMILY_NAMES","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_TYPOGRAPHIC_SUBFAMILY_NAMES","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_VERSION_STRINGS","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_WEIGHT_STRETCH_STYLE_FAMILY_NAME","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_WIN32_FAMILY_NAMES","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_WIN32_SUBFAMILY_NAMES","features":[407]},{"name":"DWRITE_INFORMATIONAL_STRING_WWS_FAMILY_NAME","features":[407]},{"name":"DWRITE_INLINE_OBJECT_METRICS","features":[305,407]},{"name":"DWRITE_JUSTIFICATION_OPPORTUNITY","features":[407]},{"name":"DWRITE_LINE_BREAKPOINT","features":[407]},{"name":"DWRITE_LINE_METRICS","features":[305,407]},{"name":"DWRITE_LINE_METRICS1","features":[305,407]},{"name":"DWRITE_LINE_SPACING","features":[407]},{"name":"DWRITE_LINE_SPACING_METHOD","features":[407]},{"name":"DWRITE_LINE_SPACING_METHOD_DEFAULT","features":[407]},{"name":"DWRITE_LINE_SPACING_METHOD_PROPORTIONAL","features":[407]},{"name":"DWRITE_LINE_SPACING_METHOD_UNIFORM","features":[407]},{"name":"DWRITE_LOCALITY","features":[407]},{"name":"DWRITE_LOCALITY_LOCAL","features":[407]},{"name":"DWRITE_LOCALITY_PARTIAL","features":[407]},{"name":"DWRITE_LOCALITY_REMOTE","features":[407]},{"name":"DWRITE_MATRIX","features":[407]},{"name":"DWRITE_MEASURING_MODE","features":[407]},{"name":"DWRITE_MEASURING_MODE_GDI_CLASSIC","features":[407]},{"name":"DWRITE_MEASURING_MODE_GDI_NATURAL","features":[407]},{"name":"DWRITE_MEASURING_MODE_NATURAL","features":[407]},{"name":"DWRITE_NO_PALETTE_INDEX","features":[407]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD","features":[407]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_CONTEXTUAL","features":[407]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_FROM_CULTURE","features":[407]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_NATIONAL","features":[407]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_NONE","features":[407]},{"name":"DWRITE_NUMBER_SUBSTITUTION_METHOD_TRADITIONAL","features":[407]},{"name":"DWRITE_OPTICAL_ALIGNMENT","features":[407]},{"name":"DWRITE_OPTICAL_ALIGNMENT_NONE","features":[407]},{"name":"DWRITE_OPTICAL_ALIGNMENT_NO_SIDE_BEARINGS","features":[407]},{"name":"DWRITE_OUTLINE_THRESHOLD","features":[407]},{"name":"DWRITE_OUTLINE_THRESHOLD_ALIASED","features":[407]},{"name":"DWRITE_OUTLINE_THRESHOLD_ANTIALIASED","features":[407]},{"name":"DWRITE_OVERHANG_METRICS","features":[407]},{"name":"DWRITE_PAINT_ATTRIBUTES","features":[407]},{"name":"DWRITE_PAINT_ATTRIBUTES_NONE","features":[407]},{"name":"DWRITE_PAINT_ATTRIBUTES_USES_PALETTE","features":[407]},{"name":"DWRITE_PAINT_ATTRIBUTES_USES_TEXT_COLOR","features":[407]},{"name":"DWRITE_PAINT_COLOR","features":[407]},{"name":"DWRITE_PAINT_ELEMENT","features":[396,407]},{"name":"DWRITE_PAINT_FEATURE_LEVEL","features":[407]},{"name":"DWRITE_PAINT_FEATURE_LEVEL_COLR_V0","features":[407]},{"name":"DWRITE_PAINT_FEATURE_LEVEL_COLR_V1","features":[407]},{"name":"DWRITE_PAINT_FEATURE_LEVEL_NONE","features":[407]},{"name":"DWRITE_PAINT_TYPE","features":[407]},{"name":"DWRITE_PAINT_TYPE_COLOR_GLYPH","features":[407]},{"name":"DWRITE_PAINT_TYPE_COMPOSITE","features":[407]},{"name":"DWRITE_PAINT_TYPE_GLYPH","features":[407]},{"name":"DWRITE_PAINT_TYPE_LAYERS","features":[407]},{"name":"DWRITE_PAINT_TYPE_LINEAR_GRADIENT","features":[407]},{"name":"DWRITE_PAINT_TYPE_NONE","features":[407]},{"name":"DWRITE_PAINT_TYPE_RADIAL_GRADIENT","features":[407]},{"name":"DWRITE_PAINT_TYPE_SOLID","features":[407]},{"name":"DWRITE_PAINT_TYPE_SOLID_GLYPH","features":[407]},{"name":"DWRITE_PAINT_TYPE_SWEEP_GRADIENT","features":[407]},{"name":"DWRITE_PAINT_TYPE_TRANSFORM","features":[407]},{"name":"DWRITE_PANOSE","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_ANY","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_DOUBLE_SERIF","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_HORZ","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_SINGLE_SERIF","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_VERT","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_BENT_ARMS_WEDGE","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_DOUBLE_SERIF","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_HORIZONTAL","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_SINGLE_SERIF","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_VERTICAL","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_NONSTRAIGHT_ARMS_WEDGE","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_DOUBLE_SERIF","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_HORIZONTAL","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_HORZ","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_SINGLE_SERIF","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_VERT","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_VERTICAL","features":[407]},{"name":"DWRITE_PANOSE_ARM_STYLE_STRAIGHT_ARMS_WEDGE","features":[407]},{"name":"DWRITE_PANOSE_ASPECT","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_ANY","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_CONDENSED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_EXTENDED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_MONOSPACED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_NORMAL","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_ANY","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_CONDENSED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_EXPANDED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_NORMAL","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_VERY_CONDENSED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_RATIO_VERY_EXPANDED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_SUPER_CONDENSED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_SUPER_EXTENDED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_VERY_CONDENSED","features":[407]},{"name":"DWRITE_PANOSE_ASPECT_VERY_EXTENDED","features":[407]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES","features":[407]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_ANY","features":[407]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_EXTENDED_COLLECTION","features":[407]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_LITERALS","features":[407]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_NO_LOWER_CASE","features":[407]},{"name":"DWRITE_PANOSE_CHARACTER_RANGES_SMALL_CAPS","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_ANY","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_BROKEN","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_HIGH","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_HORIZONTAL_HIGH","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_HORIZONTAL_LOW","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_HORIZONTAL_MEDIUM","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_LOW","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_MEDIUM","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_MEDIUM_HIGH","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_MEDIUM_LOW","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_NONE","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_VERY_HIGH","features":[407]},{"name":"DWRITE_PANOSE_CONTRAST_VERY_LOW","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_ANY","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_CARTOON","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_COLLAGE","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_DERIVATIVE","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_INITIALS","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_MONTAGE","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NONSTANDARD_ASPECT","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NONSTANDARD_ELEMENTS","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NONSTANDARD_TOPOLOGY","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_ORNAMENTED","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_PICTURE_STEMS","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_CLASS_TEXT_AND_BACKGROUND","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_ANY","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_ART_DECO","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_BLACKLETTER","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_CURSIVE","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_DIVERSE_ARMS","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_DIVERSE_FORMS","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_HORSESHOE_E_AND_A","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_IMPLIED_TOPOLOGY","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_LOMBARDIC_FORMS","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_MULTIPLE_SEGMENT","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_SQUARE","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_STANDARD","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_SWASH_VARIANCE","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_UNEVEN_WEIGHTING","features":[407]},{"name":"DWRITE_PANOSE_DECORATIVE_TOPOLOGY_UPPER_CASE_IN_LOWER_CASE","features":[407]},{"name":"DWRITE_PANOSE_FAMILY","features":[407]},{"name":"DWRITE_PANOSE_FAMILY_ANY","features":[407]},{"name":"DWRITE_PANOSE_FAMILY_DECORATIVE","features":[407]},{"name":"DWRITE_PANOSE_FAMILY_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_FAMILY_PICTORIAL","features":[407]},{"name":"DWRITE_PANOSE_FAMILY_SCRIPT","features":[407]},{"name":"DWRITE_PANOSE_FAMILY_SYMBOL","features":[407]},{"name":"DWRITE_PANOSE_FAMILY_TEXT_DISPLAY","features":[407]},{"name":"DWRITE_PANOSE_FILL","features":[407]},{"name":"DWRITE_PANOSE_FILL_ANY","features":[407]},{"name":"DWRITE_PANOSE_FILL_COMPLEX_FILL","features":[407]},{"name":"DWRITE_PANOSE_FILL_DRAWN_DISTRESSED","features":[407]},{"name":"DWRITE_PANOSE_FILL_NO_FILL","features":[407]},{"name":"DWRITE_PANOSE_FILL_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_FILL_PATTERNED_FILL","features":[407]},{"name":"DWRITE_PANOSE_FILL_SHAPED_FILL","features":[407]},{"name":"DWRITE_PANOSE_FILL_STANDARD_SOLID_FILL","features":[407]},{"name":"DWRITE_PANOSE_FINIALS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_ANY","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_NONE_CLOSED_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_NONE_NO_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_NONE_OPEN_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_ROUND_CLOSED_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_ROUND_NO_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_ROUND_OPEN_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_SHARP_CLOSED_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_SHARP_NO_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_SHARP_OPEN_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_TAPERED_CLOSED_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_TAPERED_NO_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_FINIALS_TAPERED_OPEN_LOOPS","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_ANY","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_BOXED","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_CONTACT","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_FLATTENED","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_OFF_CENTER","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_ROUNDED","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_SQUARE","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NORMAL_WEIGHTED","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_BOXED","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_CONTACT","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_FLATTENED","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_OFF_CENTER","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_ROUNDED","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_SQUARE","features":[407]},{"name":"DWRITE_PANOSE_LETTERFORM_OBLIQUE_WEIGHTED","features":[407]},{"name":"DWRITE_PANOSE_LINING","features":[407]},{"name":"DWRITE_PANOSE_LINING_ANY","features":[407]},{"name":"DWRITE_PANOSE_LINING_BACKDROP","features":[407]},{"name":"DWRITE_PANOSE_LINING_ENGRAVED","features":[407]},{"name":"DWRITE_PANOSE_LINING_INLINE","features":[407]},{"name":"DWRITE_PANOSE_LINING_NONE","features":[407]},{"name":"DWRITE_PANOSE_LINING_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_LINING_OUTLINE","features":[407]},{"name":"DWRITE_PANOSE_LINING_RELIEF","features":[407]},{"name":"DWRITE_PANOSE_LINING_SHADOW","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_ANY","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_CONSTANT_POINTED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_CONSTANT_SERIFED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_CONSTANT_TRIMMED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_HIGH_POINTED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_HIGH_SERIFED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_HIGH_TRIMMED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_LOW_POINTED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_LOW_SERIFED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_LOW_TRIMMED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_STANDARD_POINTED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_STANDARD_SERIFED","features":[407]},{"name":"DWRITE_PANOSE_MIDLINE_STANDARD_TRIMMED","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_ANY","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_CONDENSED","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_EVEN_WIDTH","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_EXPANDED","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_MODERN","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_MONOSPACED","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_OLD_STYLE","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_VERY_CONDENSED","features":[407]},{"name":"DWRITE_PANOSE_PROPORTION_VERY_EXPANDED","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_ANY","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_EXTREME_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_MORE_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_NO_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_EXAGGERATED_SOME_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_EXTREME_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_MORE_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_NO_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_OBLIQUE_SOME_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_EXTREME_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_MORE_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_NO_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_FORM_UPRIGHT_SOME_WRAPPING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ANY","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_BLACKLETTER_CONNECTED","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_BLACKLETTER_DISCONNECTED","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_BLACKLETTER_TRAILING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_CURSIVE_CONNECTED","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_CURSIVE_DISCONNECTED","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_CURSIVE_TRAILING","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ROMAN_CONNECTED","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ROMAN_DISCONNECTED","features":[407]},{"name":"DWRITE_PANOSE_SCRIPT_TOPOLOGY_ROMAN_TRAILING","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_ANY","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_BONE","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_COVE","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_EXAGGERATED","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_FLARED","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_NORMAL_SANS","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OBTUSE_COVE","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OBTUSE_SANS","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OBTUSE_SQUARE_COVE","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_OVAL","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_PERPENDICULAR_SANS","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_PERP_SANS","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_ROUNDED","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_SCRIPT","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_SQUARE","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_SQUARE_COVE","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_THIN","features":[407]},{"name":"DWRITE_PANOSE_SERIF_STYLE_TRIANGLE","features":[407]},{"name":"DWRITE_PANOSE_SPACING","features":[407]},{"name":"DWRITE_PANOSE_SPACING_ANY","features":[407]},{"name":"DWRITE_PANOSE_SPACING_MONOSPACED","features":[407]},{"name":"DWRITE_PANOSE_SPACING_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_SPACING_PROPORTIONAL_SPACED","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_ANY","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_DIAGONAL","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_HORIZONTAL","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_TRANSITIONAL","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_GRADUAL_VERTICAL","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_INSTANT_HORIZONTAL","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_INSTANT_VERTICAL","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_NO_VARIATION","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_RAPID_HORIZONTAL","features":[407]},{"name":"DWRITE_PANOSE_STROKE_VARIATION_RAPID_VERTICAL","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_ANY","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_EXCEPTIONALLY_WIDE","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NARROW","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NORMAL","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_NO_WIDTH","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_SUPER_WIDE","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_VERY_NARROW","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_VERY_WIDE","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_ASPECT_RATIO_WIDE","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_ANY","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_BOARDERS","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_EXPERT","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_ICONS","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_INDUSTRY_SPECIFIC","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_LOGOS","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_MONTAGES","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_MUSIC","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_PATTERNS","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_PICTURES","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_SCIENTIFIC","features":[407]},{"name":"DWRITE_PANOSE_SYMBOL_KIND_SHAPES","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_ANY","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_BALL","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_BRUSH","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_ENGRAVED","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_FELT_PEN_BRUSH_TIP","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_FLAT_NIB","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_PRESSURE_POINT","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_ROUGH","features":[407]},{"name":"DWRITE_PANOSE_TOOL_KIND_WILD_BRUSH","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_ANY","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_BLACK","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_BOLD","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_BOOK","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_DEMI","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_EXTRA_BLACK","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_HEAVY","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_LIGHT","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_MEDIUM","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_NORD","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_THIN","features":[407]},{"name":"DWRITE_PANOSE_WEIGHT_VERY_LIGHT","features":[407]},{"name":"DWRITE_PANOSE_XASCENT","features":[407]},{"name":"DWRITE_PANOSE_XASCENT_ANY","features":[407]},{"name":"DWRITE_PANOSE_XASCENT_HIGH","features":[407]},{"name":"DWRITE_PANOSE_XASCENT_LOW","features":[407]},{"name":"DWRITE_PANOSE_XASCENT_MEDIUM","features":[407]},{"name":"DWRITE_PANOSE_XASCENT_NO_FIT","features":[407]},{"name":"DWRITE_PANOSE_XASCENT_VERY_HIGH","features":[407]},{"name":"DWRITE_PANOSE_XASCENT_VERY_LOW","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_ANY","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_LARGE","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_SMALL","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_STANDARD","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_CONSTANT_STD","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_LARGE","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_SMALL","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_STANDARD","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_DUCKING_STD","features":[407]},{"name":"DWRITE_PANOSE_XHEIGHT_NO_FIT","features":[407]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT","features":[407]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT_CENTER","features":[407]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT_FAR","features":[407]},{"name":"DWRITE_PARAGRAPH_ALIGNMENT_NEAR","features":[407]},{"name":"DWRITE_PIXEL_GEOMETRY","features":[407]},{"name":"DWRITE_PIXEL_GEOMETRY_BGR","features":[407]},{"name":"DWRITE_PIXEL_GEOMETRY_FLAT","features":[407]},{"name":"DWRITE_PIXEL_GEOMETRY_RGB","features":[407]},{"name":"DWRITE_READING_DIRECTION","features":[407]},{"name":"DWRITE_READING_DIRECTION_BOTTOM_TO_TOP","features":[407]},{"name":"DWRITE_READING_DIRECTION_LEFT_TO_RIGHT","features":[407]},{"name":"DWRITE_READING_DIRECTION_RIGHT_TO_LEFT","features":[407]},{"name":"DWRITE_READING_DIRECTION_TOP_TO_BOTTOM","features":[407]},{"name":"DWRITE_RENDERING_MODE","features":[407]},{"name":"DWRITE_RENDERING_MODE1","features":[407]},{"name":"DWRITE_RENDERING_MODE1_ALIASED","features":[407]},{"name":"DWRITE_RENDERING_MODE1_DEFAULT","features":[407]},{"name":"DWRITE_RENDERING_MODE1_GDI_CLASSIC","features":[407]},{"name":"DWRITE_RENDERING_MODE1_GDI_NATURAL","features":[407]},{"name":"DWRITE_RENDERING_MODE1_NATURAL","features":[407]},{"name":"DWRITE_RENDERING_MODE1_NATURAL_SYMMETRIC","features":[407]},{"name":"DWRITE_RENDERING_MODE1_NATURAL_SYMMETRIC_DOWNSAMPLED","features":[407]},{"name":"DWRITE_RENDERING_MODE1_OUTLINE","features":[407]},{"name":"DWRITE_RENDERING_MODE_ALIASED","features":[407]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_GDI_CLASSIC","features":[407]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_GDI_NATURAL","features":[407]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL","features":[407]},{"name":"DWRITE_RENDERING_MODE_CLEARTYPE_NATURAL_SYMMETRIC","features":[407]},{"name":"DWRITE_RENDERING_MODE_DEFAULT","features":[407]},{"name":"DWRITE_RENDERING_MODE_GDI_CLASSIC","features":[407]},{"name":"DWRITE_RENDERING_MODE_GDI_NATURAL","features":[407]},{"name":"DWRITE_RENDERING_MODE_NATURAL","features":[407]},{"name":"DWRITE_RENDERING_MODE_NATURAL_SYMMETRIC","features":[407]},{"name":"DWRITE_RENDERING_MODE_OUTLINE","features":[407]},{"name":"DWRITE_SCRIPT_ANALYSIS","features":[407]},{"name":"DWRITE_SCRIPT_PROPERTIES","features":[407]},{"name":"DWRITE_SCRIPT_SHAPES","features":[407]},{"name":"DWRITE_SCRIPT_SHAPES_DEFAULT","features":[407]},{"name":"DWRITE_SCRIPT_SHAPES_NO_VISUAL","features":[407]},{"name":"DWRITE_SHAPING_GLYPH_PROPERTIES","features":[407]},{"name":"DWRITE_SHAPING_TEXT_PROPERTIES","features":[407]},{"name":"DWRITE_STANDARD_FONT_AXIS_COUNT","features":[407]},{"name":"DWRITE_STRIKETHROUGH","features":[407]},{"name":"DWRITE_TEXTURE_ALIASED_1x1","features":[407]},{"name":"DWRITE_TEXTURE_CLEARTYPE_3x1","features":[407]},{"name":"DWRITE_TEXTURE_TYPE","features":[407]},{"name":"DWRITE_TEXT_ALIGNMENT","features":[407]},{"name":"DWRITE_TEXT_ALIGNMENT_CENTER","features":[407]},{"name":"DWRITE_TEXT_ALIGNMENT_JUSTIFIED","features":[407]},{"name":"DWRITE_TEXT_ALIGNMENT_LEADING","features":[407]},{"name":"DWRITE_TEXT_ALIGNMENT_TRAILING","features":[407]},{"name":"DWRITE_TEXT_ANTIALIAS_MODE","features":[407]},{"name":"DWRITE_TEXT_ANTIALIAS_MODE_CLEARTYPE","features":[407]},{"name":"DWRITE_TEXT_ANTIALIAS_MODE_GRAYSCALE","features":[407]},{"name":"DWRITE_TEXT_METRICS","features":[407]},{"name":"DWRITE_TEXT_METRICS1","features":[407]},{"name":"DWRITE_TEXT_RANGE","features":[407]},{"name":"DWRITE_TRIMMING","features":[407]},{"name":"DWRITE_TRIMMING_GRANULARITY","features":[407]},{"name":"DWRITE_TRIMMING_GRANULARITY_CHARACTER","features":[407]},{"name":"DWRITE_TRIMMING_GRANULARITY_NONE","features":[407]},{"name":"DWRITE_TRIMMING_GRANULARITY_WORD","features":[407]},{"name":"DWRITE_TYPOGRAPHIC_FEATURES","features":[407]},{"name":"DWRITE_UNDERLINE","features":[407]},{"name":"DWRITE_UNICODE_RANGE","features":[407]},{"name":"DWRITE_VERTICAL_GLYPH_ORIENTATION","features":[407]},{"name":"DWRITE_VERTICAL_GLYPH_ORIENTATION_DEFAULT","features":[407]},{"name":"DWRITE_VERTICAL_GLYPH_ORIENTATION_STACKED","features":[407]},{"name":"DWRITE_WORD_WRAPPING","features":[407]},{"name":"DWRITE_WORD_WRAPPING_CHARACTER","features":[407]},{"name":"DWRITE_WORD_WRAPPING_EMERGENCY_BREAK","features":[407]},{"name":"DWRITE_WORD_WRAPPING_NO_WRAP","features":[407]},{"name":"DWRITE_WORD_WRAPPING_WHOLE_WORD","features":[407]},{"name":"DWRITE_WORD_WRAPPING_WRAP","features":[407]},{"name":"DWriteCreateFactory","features":[407]},{"name":"FACILITY_DWRITE","features":[407]},{"name":"IDWriteAsyncResult","features":[407]},{"name":"IDWriteBitmapRenderTarget","features":[407]},{"name":"IDWriteBitmapRenderTarget1","features":[407]},{"name":"IDWriteBitmapRenderTarget2","features":[407]},{"name":"IDWriteBitmapRenderTarget3","features":[407]},{"name":"IDWriteColorGlyphRunEnumerator","features":[407]},{"name":"IDWriteColorGlyphRunEnumerator1","features":[407]},{"name":"IDWriteFactory","features":[407]},{"name":"IDWriteFactory1","features":[407]},{"name":"IDWriteFactory2","features":[407]},{"name":"IDWriteFactory3","features":[407]},{"name":"IDWriteFactory4","features":[407]},{"name":"IDWriteFactory5","features":[407]},{"name":"IDWriteFactory6","features":[407]},{"name":"IDWriteFactory7","features":[407]},{"name":"IDWriteFactory8","features":[407]},{"name":"IDWriteFont","features":[407]},{"name":"IDWriteFont1","features":[407]},{"name":"IDWriteFont2","features":[407]},{"name":"IDWriteFont3","features":[407]},{"name":"IDWriteFontCollection","features":[407]},{"name":"IDWriteFontCollection1","features":[407]},{"name":"IDWriteFontCollection2","features":[407]},{"name":"IDWriteFontCollection3","features":[407]},{"name":"IDWriteFontCollectionLoader","features":[407]},{"name":"IDWriteFontDownloadListener","features":[407]},{"name":"IDWriteFontDownloadQueue","features":[407]},{"name":"IDWriteFontFace","features":[407]},{"name":"IDWriteFontFace1","features":[407]},{"name":"IDWriteFontFace2","features":[407]},{"name":"IDWriteFontFace3","features":[407]},{"name":"IDWriteFontFace4","features":[407]},{"name":"IDWriteFontFace5","features":[407]},{"name":"IDWriteFontFace6","features":[407]},{"name":"IDWriteFontFace7","features":[407]},{"name":"IDWriteFontFaceReference","features":[407]},{"name":"IDWriteFontFaceReference1","features":[407]},{"name":"IDWriteFontFallback","features":[407]},{"name":"IDWriteFontFallback1","features":[407]},{"name":"IDWriteFontFallbackBuilder","features":[407]},{"name":"IDWriteFontFamily","features":[407]},{"name":"IDWriteFontFamily1","features":[407]},{"name":"IDWriteFontFamily2","features":[407]},{"name":"IDWriteFontFile","features":[407]},{"name":"IDWriteFontFileEnumerator","features":[407]},{"name":"IDWriteFontFileLoader","features":[407]},{"name":"IDWriteFontFileStream","features":[407]},{"name":"IDWriteFontList","features":[407]},{"name":"IDWriteFontList1","features":[407]},{"name":"IDWriteFontList2","features":[407]},{"name":"IDWriteFontResource","features":[407]},{"name":"IDWriteFontSet","features":[407]},{"name":"IDWriteFontSet1","features":[407]},{"name":"IDWriteFontSet2","features":[407]},{"name":"IDWriteFontSet3","features":[407]},{"name":"IDWriteFontSet4","features":[407]},{"name":"IDWriteFontSetBuilder","features":[407]},{"name":"IDWriteFontSetBuilder1","features":[407]},{"name":"IDWriteFontSetBuilder2","features":[407]},{"name":"IDWriteGdiInterop","features":[407]},{"name":"IDWriteGdiInterop1","features":[407]},{"name":"IDWriteGlyphRunAnalysis","features":[407]},{"name":"IDWriteInMemoryFontFileLoader","features":[407]},{"name":"IDWriteInlineObject","features":[407]},{"name":"IDWriteLocalFontFileLoader","features":[407]},{"name":"IDWriteLocalizedStrings","features":[407]},{"name":"IDWriteNumberSubstitution","features":[407]},{"name":"IDWritePaintReader","features":[407]},{"name":"IDWritePixelSnapping","features":[407]},{"name":"IDWriteRemoteFontFileLoader","features":[407]},{"name":"IDWriteRemoteFontFileStream","features":[407]},{"name":"IDWriteRenderingParams","features":[407]},{"name":"IDWriteRenderingParams1","features":[407]},{"name":"IDWriteRenderingParams2","features":[407]},{"name":"IDWriteRenderingParams3","features":[407]},{"name":"IDWriteStringList","features":[407]},{"name":"IDWriteTextAnalysisSink","features":[407]},{"name":"IDWriteTextAnalysisSink1","features":[407]},{"name":"IDWriteTextAnalysisSource","features":[407]},{"name":"IDWriteTextAnalysisSource1","features":[407]},{"name":"IDWriteTextAnalyzer","features":[407]},{"name":"IDWriteTextAnalyzer1","features":[407]},{"name":"IDWriteTextAnalyzer2","features":[407]},{"name":"IDWriteTextFormat","features":[407]},{"name":"IDWriteTextFormat1","features":[407]},{"name":"IDWriteTextFormat2","features":[407]},{"name":"IDWriteTextFormat3","features":[407]},{"name":"IDWriteTextLayout","features":[407]},{"name":"IDWriteTextLayout1","features":[407]},{"name":"IDWriteTextLayout2","features":[407]},{"name":"IDWriteTextLayout3","features":[407]},{"name":"IDWriteTextLayout4","features":[407]},{"name":"IDWriteTextRenderer","features":[407]},{"name":"IDWriteTextRenderer1","features":[407]},{"name":"IDWriteTypography","features":[407]}],"412":[{"name":"DWMFLIP3DWINDOWPOLICY","features":[408]},{"name":"DWMFLIP3D_DEFAULT","features":[408]},{"name":"DWMFLIP3D_EXCLUDEABOVE","features":[408]},{"name":"DWMFLIP3D_EXCLUDEBELOW","features":[408]},{"name":"DWMFLIP3D_LAST","features":[408]},{"name":"DWMNCRENDERINGPOLICY","features":[408]},{"name":"DWMNCRP_DISABLED","features":[408]},{"name":"DWMNCRP_ENABLED","features":[408]},{"name":"DWMNCRP_LAST","features":[408]},{"name":"DWMNCRP_USEWINDOWSTYLE","features":[408]},{"name":"DWMSBT_AUTO","features":[408]},{"name":"DWMSBT_MAINWINDOW","features":[408]},{"name":"DWMSBT_NONE","features":[408]},{"name":"DWMSBT_TABBEDWINDOW","features":[408]},{"name":"DWMSBT_TRANSIENTWINDOW","features":[408]},{"name":"DWMSC_ALL","features":[408]},{"name":"DWMSC_DOWN","features":[408]},{"name":"DWMSC_DRAG","features":[408]},{"name":"DWMSC_HOLD","features":[408]},{"name":"DWMSC_NONE","features":[408]},{"name":"DWMSC_PENBARREL","features":[408]},{"name":"DWMSC_UP","features":[408]},{"name":"DWMTRANSITION_OWNEDWINDOW_NULL","features":[408]},{"name":"DWMTRANSITION_OWNEDWINDOW_REPOSITION","features":[408]},{"name":"DWMTRANSITION_OWNEDWINDOW_TARGET","features":[408]},{"name":"DWMTWR_APP_COMPAT","features":[408]},{"name":"DWMTWR_GROUP_POLICY","features":[408]},{"name":"DWMTWR_IMPLEMENTED_BY_SYSTEM","features":[408]},{"name":"DWMTWR_NONE","features":[408]},{"name":"DWMTWR_TABBING_ENABLED","features":[408]},{"name":"DWMTWR_USER_POLICY","features":[408]},{"name":"DWMTWR_WINDOW_DWM_ATTRIBUTES","features":[408]},{"name":"DWMTWR_WINDOW_MARGINS","features":[408]},{"name":"DWMTWR_WINDOW_REGION","features":[408]},{"name":"DWMTWR_WINDOW_RELATIONSHIP","features":[408]},{"name":"DWMTWR_WINDOW_STYLES","features":[408]},{"name":"DWMWA_ALLOW_NCPAINT","features":[408]},{"name":"DWMWA_BORDER_COLOR","features":[408]},{"name":"DWMWA_CAPTION_BUTTON_BOUNDS","features":[408]},{"name":"DWMWA_CAPTION_COLOR","features":[408]},{"name":"DWMWA_CLOAK","features":[408]},{"name":"DWMWA_CLOAKED","features":[408]},{"name":"DWMWA_COLOR_DEFAULT","features":[408]},{"name":"DWMWA_COLOR_NONE","features":[408]},{"name":"DWMWA_DISALLOW_PEEK","features":[408]},{"name":"DWMWA_EXCLUDED_FROM_PEEK","features":[408]},{"name":"DWMWA_EXTENDED_FRAME_BOUNDS","features":[408]},{"name":"DWMWA_FLIP3D_POLICY","features":[408]},{"name":"DWMWA_FORCE_ICONIC_REPRESENTATION","features":[408]},{"name":"DWMWA_FREEZE_REPRESENTATION","features":[408]},{"name":"DWMWA_HAS_ICONIC_BITMAP","features":[408]},{"name":"DWMWA_LAST","features":[408]},{"name":"DWMWA_NCRENDERING_ENABLED","features":[408]},{"name":"DWMWA_NCRENDERING_POLICY","features":[408]},{"name":"DWMWA_NONCLIENT_RTL_LAYOUT","features":[408]},{"name":"DWMWA_PASSIVE_UPDATE_MODE","features":[408]},{"name":"DWMWA_SYSTEMBACKDROP_TYPE","features":[408]},{"name":"DWMWA_TEXT_COLOR","features":[408]},{"name":"DWMWA_TRANSITIONS_FORCEDISABLED","features":[408]},{"name":"DWMWA_USE_HOSTBACKDROPBRUSH","features":[408]},{"name":"DWMWA_USE_IMMERSIVE_DARK_MODE","features":[408]},{"name":"DWMWA_VISIBLE_FRAME_BORDER_THICKNESS","features":[408]},{"name":"DWMWA_WINDOW_CORNER_PREFERENCE","features":[408]},{"name":"DWMWCP_DEFAULT","features":[408]},{"name":"DWMWCP_DONOTROUND","features":[408]},{"name":"DWMWCP_ROUND","features":[408]},{"name":"DWMWCP_ROUNDSMALL","features":[408]},{"name":"DWMWINDOWATTRIBUTE","features":[408]},{"name":"DWM_BB_BLURREGION","features":[408]},{"name":"DWM_BB_ENABLE","features":[408]},{"name":"DWM_BB_TRANSITIONONMAXIMIZED","features":[408]},{"name":"DWM_BLURBEHIND","features":[305,408,316]},{"name":"DWM_CLOAKED_APP","features":[408]},{"name":"DWM_CLOAKED_INHERITED","features":[408]},{"name":"DWM_CLOAKED_SHELL","features":[408]},{"name":"DWM_EC_DISABLECOMPOSITION","features":[408]},{"name":"DWM_EC_ENABLECOMPOSITION","features":[408]},{"name":"DWM_FRAME_DURATION_DEFAULT","features":[408]},{"name":"DWM_PRESENT_PARAMETERS","features":[305,408]},{"name":"DWM_SHOWCONTACT","features":[408]},{"name":"DWM_SIT_DISPLAYFRAME","features":[408]},{"name":"DWM_SOURCE_FRAME_SAMPLING","features":[408]},{"name":"DWM_SOURCE_FRAME_SAMPLING_COVERAGE","features":[408]},{"name":"DWM_SOURCE_FRAME_SAMPLING_LAST","features":[408]},{"name":"DWM_SOURCE_FRAME_SAMPLING_POINT","features":[408]},{"name":"DWM_SYSTEMBACKDROP_TYPE","features":[408]},{"name":"DWM_TAB_WINDOW_REQUIREMENTS","features":[408]},{"name":"DWM_THUMBNAIL_PROPERTIES","features":[305,408]},{"name":"DWM_TIMING_INFO","features":[408]},{"name":"DWM_TNP_OPACITY","features":[408]},{"name":"DWM_TNP_RECTDESTINATION","features":[408]},{"name":"DWM_TNP_RECTSOURCE","features":[408]},{"name":"DWM_TNP_SOURCECLIENTAREAONLY","features":[408]},{"name":"DWM_TNP_VISIBLE","features":[408]},{"name":"DWM_WINDOW_CORNER_PREFERENCE","features":[408]},{"name":"DwmAttachMilContent","features":[305,408]},{"name":"DwmDefWindowProc","features":[305,408]},{"name":"DwmDetachMilContent","features":[305,408]},{"name":"DwmEnableBlurBehindWindow","features":[305,408,316]},{"name":"DwmEnableComposition","features":[408]},{"name":"DwmEnableMMCSS","features":[305,408]},{"name":"DwmExtendFrameIntoClientArea","features":[305,408,355]},{"name":"DwmFlush","features":[408]},{"name":"DwmGetColorizationColor","features":[305,408]},{"name":"DwmGetCompositionTimingInfo","features":[305,408]},{"name":"DwmGetGraphicsStreamClient","features":[408]},{"name":"DwmGetGraphicsStreamTransformHint","features":[408]},{"name":"DwmGetTransportAttributes","features":[305,408]},{"name":"DwmGetUnmetTabRequirements","features":[305,408]},{"name":"DwmGetWindowAttribute","features":[305,408]},{"name":"DwmInvalidateIconicBitmaps","features":[305,408]},{"name":"DwmIsCompositionEnabled","features":[305,408]},{"name":"DwmModifyPreviousDxFrameDuration","features":[305,408]},{"name":"DwmQueryThumbnailSourceSize","features":[305,408]},{"name":"DwmRegisterThumbnail","features":[305,408]},{"name":"DwmRenderGesture","features":[305,408]},{"name":"DwmSetDxFrameDuration","features":[305,408]},{"name":"DwmSetIconicLivePreviewBitmap","features":[305,408,316]},{"name":"DwmSetIconicThumbnail","features":[305,408,316]},{"name":"DwmSetPresentParameters","features":[305,408]},{"name":"DwmSetWindowAttribute","features":[305,408]},{"name":"DwmShowContact","features":[408]},{"name":"DwmTetherContact","features":[305,408]},{"name":"DwmTransitionOwnedWindow","features":[305,408]},{"name":"DwmUnregisterThumbnail","features":[408]},{"name":"DwmUpdateThumbnailProperties","features":[305,408]},{"name":"GESTURE_TYPE","features":[408]},{"name":"GT_PEN_DOUBLETAP","features":[408]},{"name":"GT_PEN_PRESSANDHOLD","features":[408]},{"name":"GT_PEN_PRESSANDHOLDABORT","features":[408]},{"name":"GT_PEN_RIGHTTAP","features":[408]},{"name":"GT_PEN_TAP","features":[408]},{"name":"GT_TOUCH_DOUBLETAP","features":[408]},{"name":"GT_TOUCH_PRESSANDHOLD","features":[408]},{"name":"GT_TOUCH_PRESSANDHOLDABORT","features":[408]},{"name":"GT_TOUCH_PRESSANDTAP","features":[408]},{"name":"GT_TOUCH_RIGHTTAP","features":[408]},{"name":"GT_TOUCH_TAP","features":[408]},{"name":"MilMatrix3x2D","features":[408]},{"name":"UNSIGNED_RATIO","features":[408]},{"name":"c_DwmMaxAdapters","features":[408]},{"name":"c_DwmMaxMonitors","features":[408]},{"name":"c_DwmMaxQueuedBuffers","features":[408]}],"413":[{"name":"CreateDXGIFactory","features":[397]},{"name":"CreateDXGIFactory1","features":[397]},{"name":"CreateDXGIFactory2","features":[397]},{"name":"DXGIDeclareAdapterRemovalSupport","features":[397]},{"name":"DXGIDisableVBlankVirtualization","features":[397]},{"name":"DXGIGetDebugInterface1","features":[397]},{"name":"DXGI_ADAPTER_DESC","features":[305,397]},{"name":"DXGI_ADAPTER_DESC1","features":[305,397]},{"name":"DXGI_ADAPTER_DESC2","features":[305,397]},{"name":"DXGI_ADAPTER_DESC3","features":[305,397]},{"name":"DXGI_ADAPTER_FLAG","features":[397]},{"name":"DXGI_ADAPTER_FLAG3","features":[397]},{"name":"DXGI_ADAPTER_FLAG3_ACG_COMPATIBLE","features":[397]},{"name":"DXGI_ADAPTER_FLAG3_KEYED_MUTEX_CONFORMANCE","features":[397]},{"name":"DXGI_ADAPTER_FLAG3_NONE","features":[397]},{"name":"DXGI_ADAPTER_FLAG3_REMOTE","features":[397]},{"name":"DXGI_ADAPTER_FLAG3_SOFTWARE","features":[397]},{"name":"DXGI_ADAPTER_FLAG3_SUPPORT_MONITORED_FENCES","features":[397]},{"name":"DXGI_ADAPTER_FLAG3_SUPPORT_NON_MONITORED_FENCES","features":[397]},{"name":"DXGI_ADAPTER_FLAG_NONE","features":[397]},{"name":"DXGI_ADAPTER_FLAG_REMOTE","features":[397]},{"name":"DXGI_ADAPTER_FLAG_SOFTWARE","features":[397]},{"name":"DXGI_COMPUTE_PREEMPTION_DISPATCH_BOUNDARY","features":[397]},{"name":"DXGI_COMPUTE_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[397]},{"name":"DXGI_COMPUTE_PREEMPTION_GRANULARITY","features":[397]},{"name":"DXGI_COMPUTE_PREEMPTION_INSTRUCTION_BOUNDARY","features":[397]},{"name":"DXGI_COMPUTE_PREEMPTION_THREAD_BOUNDARY","features":[397]},{"name":"DXGI_COMPUTE_PREEMPTION_THREAD_GROUP_BOUNDARY","features":[397]},{"name":"DXGI_CREATE_FACTORY_DEBUG","features":[397]},{"name":"DXGI_CREATE_FACTORY_FLAGS","features":[397]},{"name":"DXGI_DEBUG_ALL","features":[397]},{"name":"DXGI_DEBUG_APP","features":[397]},{"name":"DXGI_DEBUG_BINARY_VERSION","features":[397]},{"name":"DXGI_DEBUG_DX","features":[397]},{"name":"DXGI_DEBUG_DXGI","features":[397]},{"name":"DXGI_DEBUG_RLO_ALL","features":[397]},{"name":"DXGI_DEBUG_RLO_DETAIL","features":[397]},{"name":"DXGI_DEBUG_RLO_FLAGS","features":[397]},{"name":"DXGI_DEBUG_RLO_IGNORE_INTERNAL","features":[397]},{"name":"DXGI_DEBUG_RLO_SUMMARY","features":[397]},{"name":"DXGI_DECODE_SWAP_CHAIN_DESC","features":[397]},{"name":"DXGI_DISPLAY_COLOR_SPACE","features":[397]},{"name":"DXGI_ENUM_MODES","features":[397]},{"name":"DXGI_ENUM_MODES_DISABLED_STEREO","features":[397]},{"name":"DXGI_ENUM_MODES_INTERLACED","features":[397]},{"name":"DXGI_ENUM_MODES_SCALING","features":[397]},{"name":"DXGI_ENUM_MODES_STEREO","features":[397]},{"name":"DXGI_ERROR_ACCESS_DENIED","features":[397]},{"name":"DXGI_ERROR_ACCESS_LOST","features":[397]},{"name":"DXGI_ERROR_ALREADY_EXISTS","features":[397]},{"name":"DXGI_ERROR_CACHE_CORRUPT","features":[397]},{"name":"DXGI_ERROR_CACHE_FULL","features":[397]},{"name":"DXGI_ERROR_CACHE_HASH_COLLISION","features":[397]},{"name":"DXGI_ERROR_CANNOT_PROTECT_CONTENT","features":[397]},{"name":"DXGI_ERROR_DEVICE_HUNG","features":[397]},{"name":"DXGI_ERROR_DEVICE_REMOVED","features":[397]},{"name":"DXGI_ERROR_DEVICE_RESET","features":[397]},{"name":"DXGI_ERROR_DRIVER_INTERNAL_ERROR","features":[397]},{"name":"DXGI_ERROR_DYNAMIC_CODE_POLICY_VIOLATION","features":[397]},{"name":"DXGI_ERROR_FRAME_STATISTICS_DISJOINT","features":[397]},{"name":"DXGI_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE","features":[397]},{"name":"DXGI_ERROR_HW_PROTECTION_OUTOFMEMORY","features":[397]},{"name":"DXGI_ERROR_INVALID_CALL","features":[397]},{"name":"DXGI_ERROR_MODE_CHANGE_IN_PROGRESS","features":[397]},{"name":"DXGI_ERROR_MORE_DATA","features":[397]},{"name":"DXGI_ERROR_MPO_UNPINNED","features":[397]},{"name":"DXGI_ERROR_NAME_ALREADY_EXISTS","features":[397]},{"name":"DXGI_ERROR_NONEXCLUSIVE","features":[397]},{"name":"DXGI_ERROR_NON_COMPOSITED_UI","features":[397]},{"name":"DXGI_ERROR_NOT_CURRENT","features":[397]},{"name":"DXGI_ERROR_NOT_CURRENTLY_AVAILABLE","features":[397]},{"name":"DXGI_ERROR_NOT_FOUND","features":[397]},{"name":"DXGI_ERROR_REMOTE_CLIENT_DISCONNECTED","features":[397]},{"name":"DXGI_ERROR_REMOTE_OUTOFMEMORY","features":[397]},{"name":"DXGI_ERROR_RESTRICT_TO_OUTPUT_STALE","features":[397]},{"name":"DXGI_ERROR_SDK_COMPONENT_MISSING","features":[397]},{"name":"DXGI_ERROR_SESSION_DISCONNECTED","features":[397]},{"name":"DXGI_ERROR_UNSUPPORTED","features":[397]},{"name":"DXGI_ERROR_WAIT_TIMEOUT","features":[397]},{"name":"DXGI_ERROR_WAS_STILL_DRAWING","features":[397]},{"name":"DXGI_FEATURE","features":[397]},{"name":"DXGI_FEATURE_PRESENT_ALLOW_TEARING","features":[397]},{"name":"DXGI_FRAME_PRESENTATION_MODE","features":[397]},{"name":"DXGI_FRAME_PRESENTATION_MODE_COMPOSED","features":[397]},{"name":"DXGI_FRAME_PRESENTATION_MODE_COMPOSITION_FAILURE","features":[397]},{"name":"DXGI_FRAME_PRESENTATION_MODE_NONE","features":[397]},{"name":"DXGI_FRAME_PRESENTATION_MODE_OVERLAY","features":[397]},{"name":"DXGI_FRAME_STATISTICS","features":[397]},{"name":"DXGI_FRAME_STATISTICS_MEDIA","features":[397]},{"name":"DXGI_GPU_PREFERENCE","features":[397]},{"name":"DXGI_GPU_PREFERENCE_HIGH_PERFORMANCE","features":[397]},{"name":"DXGI_GPU_PREFERENCE_MINIMUM_POWER","features":[397]},{"name":"DXGI_GPU_PREFERENCE_UNSPECIFIED","features":[397]},{"name":"DXGI_GRAPHICS_PREEMPTION_DMA_BUFFER_BOUNDARY","features":[397]},{"name":"DXGI_GRAPHICS_PREEMPTION_GRANULARITY","features":[397]},{"name":"DXGI_GRAPHICS_PREEMPTION_INSTRUCTION_BOUNDARY","features":[397]},{"name":"DXGI_GRAPHICS_PREEMPTION_PIXEL_BOUNDARY","features":[397]},{"name":"DXGI_GRAPHICS_PREEMPTION_PRIMITIVE_BOUNDARY","features":[397]},{"name":"DXGI_GRAPHICS_PREEMPTION_TRIANGLE_BOUNDARY","features":[397]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAGS","features":[397]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAG_CURSOR_STRETCHED","features":[397]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAG_FULLSCREEN","features":[397]},{"name":"DXGI_HARDWARE_COMPOSITION_SUPPORT_FLAG_WINDOWED","features":[397]},{"name":"DXGI_HDR_METADATA_HDR10","features":[397]},{"name":"DXGI_HDR_METADATA_HDR10PLUS","features":[397]},{"name":"DXGI_HDR_METADATA_TYPE","features":[397]},{"name":"DXGI_HDR_METADATA_TYPE_HDR10","features":[397]},{"name":"DXGI_HDR_METADATA_TYPE_HDR10PLUS","features":[397]},{"name":"DXGI_HDR_METADATA_TYPE_NONE","features":[397]},{"name":"DXGI_INFO_QUEUE_DEFAULT_MESSAGE_COUNT_LIMIT","features":[397]},{"name":"DXGI_INFO_QUEUE_FILTER","features":[397]},{"name":"DXGI_INFO_QUEUE_FILTER_DESC","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_CLEANUP","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_COMPILATION","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_EXECUTION","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_INITIALIZATION","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_MISCELLANEOUS","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_RESOURCE_MANIPULATION","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_SHADER","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_STATE_CREATION","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_STATE_GETTING","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_STATE_SETTING","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_CATEGORY_UNKNOWN","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_ID_STRING_FROM_APPLICATION","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_CORRUPTION","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_ERROR","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_INFO","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_MESSAGE","features":[397]},{"name":"DXGI_INFO_QUEUE_MESSAGE_SEVERITY_WARNING","features":[397]},{"name":"DXGI_MAPPED_RECT","features":[397]},{"name":"DXGI_MAP_DISCARD","features":[397]},{"name":"DXGI_MAP_FLAGS","features":[397]},{"name":"DXGI_MAP_READ","features":[397]},{"name":"DXGI_MAP_WRITE","features":[397]},{"name":"DXGI_MATRIX_3X2_F","features":[397]},{"name":"DXGI_MAX_SWAP_CHAIN_BUFFERS","features":[397]},{"name":"DXGI_MEMORY_SEGMENT_GROUP","features":[397]},{"name":"DXGI_MEMORY_SEGMENT_GROUP_LOCAL","features":[397]},{"name":"DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL","features":[397]},{"name":"DXGI_MODE_DESC1","features":[305,393]},{"name":"DXGI_MSG_DXGIGetDebugInterface1_InvalidFlags","features":[397]},{"name":"DXGI_MSG_DXGIGetDebugInterface1_NULL_ppDebug","features":[397]},{"name":"DXGI_MSG_IDXGIAdapter_EnumOutputs2_InvalidEnumOutputs2Flag","features":[397]},{"name":"DXGI_MSG_IDXGIAdapter_EnumOutputs_UnavailableInSession0","features":[397]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_GetDestSize_InvalidPointer","features":[397]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_GetSourceRect_InvalidPointer","features":[397]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_GetTargetRect_InvalidPointer","features":[397]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetColorSpace_InvalidFlags","features":[397]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetDestSize_InvalidSize","features":[397]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetSourceRect_InvalidRect","features":[397]},{"name":"DXGI_MSG_IDXGIDecodeSwapChain_SetTargetRect_InvalidRect","features":[397]},{"name":"DXGI_MSG_IDXGIDevice_CreateSurface_InvalidParametersWithpSharedResource","features":[397]},{"name":"DXGI_MSG_IDXGIDisplayControl_IsStereoEnabled_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCompositionSurface_InvalidHandle","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_ForegroundUnsupportedOnAdapter","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_InvalidAlphaMode","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_InvalidScaling","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_UnsupportedOnWindows7","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_pWindowIsInvalid","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_CreateSwapChainForCoreWindow_pWindowIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_RegisterOcclusionStatusEvent_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_RegisterOcclusionStatusWindow_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGIFactory2_UnregisterStatus_CookieNotFound","features":[397]},{"name":"DXGI_MSG_IDXGIFactory7_UnregisterAdaptersChangedEvent_CookieNotFound","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CheckFeatureSupport_InvalidFeature","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CheckFeatureSupport_InvalidSize","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSoftwareAdapter_ModuleIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSoftwareAdapter_ppAdapterInterfaceIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_InvalidAlphaMode","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_InvalidScaling","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_OnlyFlipSequentialSupported","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_UnsupportedOnAdapter","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_UnsupportedOnWindows7","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForComposition_WidthOrHeightIsZero","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForCoreWindow_InvalidSwapEffect","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainForHwnd_InvalidScaling","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChainOrRegisterOcclusionStatus_BlitModelUsedWhileRegisteredForOcclusionStatusEvents","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_10BitFormatNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AllowTearingFlagIsFlipModelOnly","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AlphaIsFlipModelOnly","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AlphaIsWindowlessOnly","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_AlphaUnrecognized","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_BufferCountOOBForFlipSequential","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_DisplayOnlyFullscreenUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_DisplayOnlyOnLegacy","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_DisplayOnlyUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FSUnsupportedForModernApps","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FailedToGoFSButNonPreRotated","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FlipSequentialNotSupportedOnD3D10","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_FlipSwapEffectRequired","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ForegroundIsCoreWindowOnly","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_HwProtectUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidDevice","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidFlags","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidFormatForFlipSequential","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidHwProtect","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_InvalidQueue","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_LegacyBltModelSwapEffect","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_MultiSamplingNotSupportedForFlipSequential","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_MultipleSwapchainRefToSurface_DeferredDtr","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_NonPreRotatedAndGDICompatibleFlags","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_NonPreRotatedFlagAndWindowed","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_NullDeviceInterface","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_RestrictOutputNotSupportedOnAdapter","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_RestrictToOutputAdapterMismatch","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ScalingNoneIsFlipModelOnly","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ScalingNoneRequiresWindows8OrNewer","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ScalingUnrecognized","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ShaderInputUnsupported_YUV","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_UnavailableInSession0","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_UnknownSwapEffect","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_UnsupportedBufferUsageFlags","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_WaitableSwapChainsAreFlipModelOnly","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_WaitableSwapChainsAreNotFullscreen","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_pDescIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_pDeviceHasMismatchedDXGIFactory","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_pRestrictToOutputFromOtherIDXGIFactory","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_CreateSwapChain_ppSwapChainIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_Creation_CalledFromDllMain","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_EnumAdapters_ppAdapterInterfaceIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_GetSharedResourceAdapterLuid_InvalidLUID","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_GetSharedResourceAdapterLuid_InvalidResource","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_GetSharedResourceAdapterLuid_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_GetWindowAssociation_UnavailableInSession0","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_GetWindowAssociation_phWndIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_InvalidFlags","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_ModernApp","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_NoOpBehavior","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_MakeWindowAssociation_UnavailableInSession0","features":[397]},{"name":"DXGI_MSG_IDXGIFactory_Release_CalledFromDllMain","features":[397]},{"name":"DXGI_MSG_IDXGIObject_GetPrivateData_puiDataSizeIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIOutput1_DuplicateOutput_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_2DOnly","features":[397]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_MappedOrOfferedResource","features":[397]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_NeedCPUAccessWrite","features":[397]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_NoShared","features":[397]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_OnlyMipLevels1","features":[397]},{"name":"DXGI_MSG_IDXGIOutput1_GetDisplaySurfaceData1_StagingOnly","features":[397]},{"name":"DXGI_MSG_IDXGIOutput3_CheckOverlaySupport_IDXGIDeviceNotSupportedBypConcernedDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput3_CheckOverlaySupport_NullPointers","features":[397]},{"name":"DXGI_MSG_IDXGIOutput4_CheckOverlayColorSpaceSupport_IDXGIDeviceNotSupportedBypConcernedDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput4_CheckOverlayColorSpaceSupport_NullPointers","features":[397]},{"name":"DXGI_MSG_IDXGIOutput6_CheckHardwareCompositionSupport_NullPointer","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_DuplicateOutput1_PerMonitorDpiRequired","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_DuplicateOutput_PerMonitorDpiShimApplied","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_IDXGIDeviceNotSupportedBypConcernedDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_InvalidDisplayModeFormatAndDeviceCombination","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_InvalidDisplayModeScaling","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_InvalidDisplayModeScanlineOrdering","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_ModeHasInvalidWidthOrHeight","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_ModeHasRefreshRateDenominatorZero","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_RemoteDeviceNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_RemoteOutputNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_UnknownFormatIsInvalidForConfiguration","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_FindClosestMatchingMode_pModeToMatchOrpClosestMatchIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetCammaControlCapabilities_NoOwnerDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplayModeList_RemoteDeviceNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplayModeList_RemoteOutputNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplayModeList_pNumModesIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_ArraySizeMismatch","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_InvalidTargetSurfaceFormat","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_MapOfDestinationFailed","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_NoOwnerDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetDisplaySurfaceData_pDestinationIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetFrameStatistics_NoOwnerDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetFrameStatistics_pStatsIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetGammaControl_NoGammaControls","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_GetGammaControl_NoOwnerDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_IDXGIResourceNotSupportedBypPrimary","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_ModernApp","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_NoOwnerDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_SetDisplaySurface_pPrimaryIsInvalid","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_SetGammaControl_NoOwnerDevice","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_SetOrGetGammaControl_pArrayIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_FailedToAcquireFullscreenMutex","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_ModernApp","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_RemoteDeviceNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_RemoteOutputNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_Unsupported","features":[397]},{"name":"DXGI_MSG_IDXGIOutput_TakeOwnership_pDeviceIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGIResource1_CreateSharedHandle_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGIResource1_CreateSubresourceSurface_InvalidIndex","features":[397]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_GDICompatibleFlagNotSet","features":[397]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_ModernApp","features":[397]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_SurfaceNotTexture2D","features":[397]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_UnreleasedHDC","features":[397]},{"name":"DXGI_MSG_IDXGISurface1_GetDC_pHdcIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISurface1_ReleaseDC_GetDCNotCalled","features":[397]},{"name":"DXGI_MSG_IDXGISurface1_ReleaseDC_InvalidRectangleDimensions","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_DiscardAndReadFlagSet","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_DiscardButNotWriteFlagSet","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_DiscardFlagSetButCPUAccessIsNotDynamic","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_FlagsSetToZero","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_InvalidSurface","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_NoCPUAccess","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_NoCPUAccess2","features":[397]},{"name":"DXGI_MSG_IDXGISurface_Map_ReadFlagSetButCPUAccessIsDynamic","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain1_GetRotation_FlipSequentialRequired","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain1_GetRotation_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain1_SetBackgroundColor_OutOfRange","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain1_SetRotation_FlipSequentialRequired","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain1_SetRotation_InvalidRotation","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain1_SetRotation_UnsupportedOS","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain3_CheckColorSpaceSupport_NullPointers","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain3_ResizeBuffers1_InvalidQueue","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain3_SetColorSpace1_InvalidColorSpace","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain3_SetHDRMetaData_InvalidPointer","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain3_SetHDRMetaData_InvalidSize","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain3_SetHDRMetaData_InvalidType","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain4_SetHDRMetaData_MetadataUnchanged","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_CreateSwapChain_InvalidHwProtectGdiFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_BufferHeightInferred","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_BufferWidthInferred","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_InvalidOutputWindow","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrResizeBuffers_NoScanoutFlagChanged","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrSetFullscreenState_FSUnsupportedForFlipDiscard","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_CreationOrSetFullscreenState_StereoDisabled","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_InvalidOutputWindow","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_InvalidWindowStyle","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_MaxBufferCountExceeded","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_NoOutputWindow","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Creation_TooFewBuffers","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Destruction_OtherMethodsCalled","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_NoAllocatedBuffers","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_iBufferMustBeZero","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_iBufferOOB","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetBuffer_ppSurfaceIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetCompositionSurface_WrongType","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetContainingOutput_SwapchainAdapterDoesNotControlOutput","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetContainingOutput_ppOutputIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetCoreWindow_WrongType","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetDesc_pDescIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetFrameLatencyWaitableObject_OnlyWaitable","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetFrameStatistics_UnsupportedStatistics","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetFrameStatistics_pStatsIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetFullscreenDesc_NonHwnd","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetHwnd_WrongType","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetLastPresentCount_pLastPresentCountIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetMatrixTransform_MatrixPointerCannotBeNull","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetMatrixTransform_RequiresCompositionSwapChain","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetMatrixTransform_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetMaximumFrameLatency_OnlyWaitable","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetMaximumFrameLatency_pMaxLatencyIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetSourceSize_Decode","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetSourceSize_NullPointers","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_GetSourceSize_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_PresentBuffer_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_11On12_Released_Resource","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_AllowTearingRequiresCreationFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_AllowTearingRequiresPresentIntervalZero","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_BlitModelUsedWhileRegisteredForOcclusionStatusEvents","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_Decode","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_DirtyRectOutOfBackbufferBounds","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_DoNotSequenceFlagSetButPreviousBufferIsUndefined","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_EmptyDirtyRect","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_EmptyScrollRect","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_FlipModelChainMustResizeOrCreateOnFSTransition","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_FullscreenAllowTearingIsInvalid","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_FullscreenPartialPresentIsInvalid","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_GetDXGIAdapterFailed","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_InvalidNonPreRotatedFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_InvalidPresentTestOrDoNotSequenceFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_NoAllocatedBuffers","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_NonOptimalFSConfiguration","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_OtherFlagsCausingInvalidPresentTestFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentationBeforeStandardPresentation","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentationWithMSAABuffers","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentationWithSwapEffectDiscard","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_PartialPresentation_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentInWindowedModeWithDWMOffOrInvalidDisplayAffinity","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentInWindowedModeWithoutFSOrOverlay","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentInWindowedModeWithoutFlipSequential","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedContentWithRDPDriver","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ProtectedWindowlessPresentationRequiresDisplayOnly","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestartIsFullscreenOnly","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestrictOutputFlagWithStaleSwapChain","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestrictToOutputFlagSetButInvalidpRestrictToOutput","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_RestrictToOutputFlagdWithFullscreen","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ScrollInfoWithNoDirtyRectsSpecified","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ScrollRectOutOfBackbufferBounds","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_ScrollRectOutOfBackbufferBoundsWithOffset","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_SyncIntervalOOB","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoAndPreferRight","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoOrPreferRightWithDoNotSequence","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoOrPreferRightWithoutStereo","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_TemporaryMonoUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_UnreleasedHDC","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Present_UnsupportedFlags","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_Release_SwapChainIsFullscreen","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers1_D3D12Only","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers1_FlipModel","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers1_NodeMaskAndQueueRequired","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_Alignment_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_BufferCountOOB","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_BufferCountOOBForFlipSequential","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveAllowTearingFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveFlag_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveForegroundFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_CannotAddOrRemoveWaitableFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_Decode","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_DisplayOnlyFullscreenUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_DisplayOnlyOnLegacy","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_DisplayOnlyUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_HwProtectUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidFormatForFlipSequential","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidHwProtect","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidHwProtectGdiFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidNonPreRotatedFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_InvalidSwapChainFlag","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_NonPreRotatedAndGDICompatibleFlags","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_UnreleasedReferences","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeBuffers_WidthOrHeightIsZero","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_InvalidWithCompositionSwapChain","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_ModernApp","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_RefreshRateDivideByZero","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_ResizeTarget_pNewTargetParametersIsNULL","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_CoreWindow","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_DisplayOnlyUnsupported","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_FSTransitionWithCompositionSwapChain","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_FSUnsupportedForModernApps","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_FullscreenInvalidForChildWindows","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_InvalidTarget","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_OutputNotOwnedBySwapChainDevice","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_PerMonitorDpiShimApplied","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_RemoteNotSupported","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetFullscreenState_Waitable","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_MatrixMustBeFinite","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_MatrixMustBeTranslateAndOrScale","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_MatrixPointerCannotBeNull","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_RequiresCompositionSwapChain","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetMatrixTransform_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetMaximumFrameLatency_MaxLatencyIsOutOfBounds","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetMaximumFrameLatency_OnlyWaitable","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_Decode","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_FlipModel","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_WidthHeight","features":[397]},{"name":"DXGI_MSG_IDXGISwapChain_SetSourceSize_YUV","features":[397]},{"name":"DXGI_MSG_IDXGISwapchain_Present_FullscreenRotation","features":[397]},{"name":"DXGI_MSG_IDXGISwapchain_Present_ScrollUnsupported","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_DISCARD_BufferCount","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_FLIP_Modern_CoreWindow_Only","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_FLIP_SEQUENTIAL_BufferCount","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_FailedRegisterWithCompositor","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_MSAA_NotSupported","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_NotForegroundWindow","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_NotForegroundWindow_AtRendering","features":[397]},{"name":"DXGI_MSG_Phone_IDXGIFactory_CreateSwapChain_ScalingAspectRatioStretch_Supported_ModernApp","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_GetBackgroundColor_FlipSequentialRequired","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_GetFrameStatistics_NotAvailable_ModernApp","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present1_RequiresOverlays","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidBlend","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidDestinationRect","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidFlag","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidIndexForOverlay","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidIndexForPrimary","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidInterval","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidLayerFlag","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidLayerIndex","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidMultiPlaneOverlayResource","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidResource","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidRotation","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidSourceRect","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_InvalidSubResourceIndex","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_MultipleLayerIndex","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_MultipleResource","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_NotSharedResource","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_Present_ReplaceInterval0With1","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_ResizeBuffers_NotAvailable","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_ResizeTarget_NotAvailable","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_SetBackgroundColor_FlipSequentialRequired","features":[397]},{"name":"DXGI_MSG_Phone_IDXGISwapChain_SetFullscreenState_NotAvailable","features":[397]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS","features":[397]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709","features":[397]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE","features":[397]},{"name":"DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_xvYCC","features":[397]},{"name":"DXGI_MWA_FLAGS","features":[397]},{"name":"DXGI_MWA_NO_ALT_ENTER","features":[397]},{"name":"DXGI_MWA_NO_PRINT_SCREEN","features":[397]},{"name":"DXGI_MWA_NO_WINDOW_CHANGES","features":[397]},{"name":"DXGI_MWA_VALID","features":[397]},{"name":"DXGI_Message_Id","features":[397]},{"name":"DXGI_OFFER_RESOURCE_FLAGS","features":[397]},{"name":"DXGI_OFFER_RESOURCE_FLAG_ALLOW_DECOMMIT","features":[397]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY","features":[397]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY_HIGH","features":[397]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY_LOW","features":[397]},{"name":"DXGI_OFFER_RESOURCE_PRIORITY_NORMAL","features":[397]},{"name":"DXGI_OUTDUPL_COMPOSITED_UI_CAPTURE_ONLY","features":[397]},{"name":"DXGI_OUTDUPL_DESC","features":[305,393]},{"name":"DXGI_OUTDUPL_FLAG","features":[397]},{"name":"DXGI_OUTDUPL_FRAME_INFO","features":[305,397]},{"name":"DXGI_OUTDUPL_MOVE_RECT","features":[305,397]},{"name":"DXGI_OUTDUPL_POINTER_POSITION","features":[305,397]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_INFO","features":[305,397]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE","features":[397]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE_COLOR","features":[397]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MASKED_COLOR","features":[397]},{"name":"DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MONOCHROME","features":[397]},{"name":"DXGI_OUTPUT_DESC","features":[305,393,316]},{"name":"DXGI_OUTPUT_DESC1","features":[305,393,316]},{"name":"DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG","features":[397]},{"name":"DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG_PRESENT","features":[397]},{"name":"DXGI_OVERLAY_SUPPORT_FLAG","features":[397]},{"name":"DXGI_OVERLAY_SUPPORT_FLAG_DIRECT","features":[397]},{"name":"DXGI_OVERLAY_SUPPORT_FLAG_SCALING","features":[397]},{"name":"DXGI_PRESENT","features":[397]},{"name":"DXGI_PRESENT_ALLOW_TEARING","features":[397]},{"name":"DXGI_PRESENT_DO_NOT_SEQUENCE","features":[397]},{"name":"DXGI_PRESENT_DO_NOT_WAIT","features":[397]},{"name":"DXGI_PRESENT_PARAMETERS","features":[305,397]},{"name":"DXGI_PRESENT_RESTART","features":[397]},{"name":"DXGI_PRESENT_RESTRICT_TO_OUTPUT","features":[397]},{"name":"DXGI_PRESENT_STEREO_PREFER_RIGHT","features":[397]},{"name":"DXGI_PRESENT_STEREO_TEMPORARY_MONO","features":[397]},{"name":"DXGI_PRESENT_TEST","features":[397]},{"name":"DXGI_PRESENT_USE_DURATION","features":[397]},{"name":"DXGI_QUERY_VIDEO_MEMORY_INFO","features":[397]},{"name":"DXGI_RECLAIM_RESOURCE_RESULTS","features":[397]},{"name":"DXGI_RECLAIM_RESOURCE_RESULT_DISCARDED","features":[397]},{"name":"DXGI_RECLAIM_RESOURCE_RESULT_NOT_COMMITTED","features":[397]},{"name":"DXGI_RECLAIM_RESOURCE_RESULT_OK","features":[397]},{"name":"DXGI_RESIDENCY","features":[397]},{"name":"DXGI_RESIDENCY_EVICTED_TO_DISK","features":[397]},{"name":"DXGI_RESIDENCY_FULLY_RESIDENT","features":[397]},{"name":"DXGI_RESIDENCY_RESIDENT_IN_SHARED_MEMORY","features":[397]},{"name":"DXGI_RESOURCE_PRIORITY","features":[397]},{"name":"DXGI_RESOURCE_PRIORITY_HIGH","features":[397]},{"name":"DXGI_RESOURCE_PRIORITY_LOW","features":[397]},{"name":"DXGI_RESOURCE_PRIORITY_MAXIMUM","features":[397]},{"name":"DXGI_RESOURCE_PRIORITY_MINIMUM","features":[397]},{"name":"DXGI_RESOURCE_PRIORITY_NORMAL","features":[397]},{"name":"DXGI_RGBA","features":[397]},{"name":"DXGI_SCALING","features":[397]},{"name":"DXGI_SCALING_ASPECT_RATIO_STRETCH","features":[397]},{"name":"DXGI_SCALING_NONE","features":[397]},{"name":"DXGI_SCALING_STRETCH","features":[397]},{"name":"DXGI_SHARED_RESOURCE","features":[305,397]},{"name":"DXGI_SHARED_RESOURCE_READ","features":[397]},{"name":"DXGI_SHARED_RESOURCE_RW","features":[397]},{"name":"DXGI_SHARED_RESOURCE_WRITE","features":[397]},{"name":"DXGI_SURFACE_DESC","features":[393]},{"name":"DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG","features":[397]},{"name":"DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_OVERLAY_PRESENT","features":[397]},{"name":"DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_PRESENT","features":[397]},{"name":"DXGI_SWAP_CHAIN_DESC","features":[305,393]},{"name":"DXGI_SWAP_CHAIN_DESC1","features":[305,393]},{"name":"DXGI_SWAP_CHAIN_FLAG","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_ALLOW_TEARING","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_DISPLAY_ONLY","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_FOREGROUND_LAYER","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_FRAME_LATENCY_WAITABLE_OBJECT","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_FULLSCREEN_VIDEO","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_GDI_COMPATIBLE","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_HW_PROTECTED","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_NONPREROTATED","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_RESTRICTED_CONTENT","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_RESTRICTED_TO_ALL_HOLOGRAPHIC_DISPLAYS","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_RESTRICT_SHARED_RESOURCE_DRIVER","features":[397]},{"name":"DXGI_SWAP_CHAIN_FLAG_YUV_VIDEO","features":[397]},{"name":"DXGI_SWAP_CHAIN_FULLSCREEN_DESC","features":[305,393]},{"name":"DXGI_SWAP_EFFECT","features":[397]},{"name":"DXGI_SWAP_EFFECT_DISCARD","features":[397]},{"name":"DXGI_SWAP_EFFECT_FLIP_DISCARD","features":[397]},{"name":"DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL","features":[397]},{"name":"DXGI_SWAP_EFFECT_SEQUENTIAL","features":[397]},{"name":"DXGI_USAGE","features":[397]},{"name":"DXGI_USAGE_BACK_BUFFER","features":[397]},{"name":"DXGI_USAGE_DISCARD_ON_PRESENT","features":[397]},{"name":"DXGI_USAGE_READ_ONLY","features":[397]},{"name":"DXGI_USAGE_RENDER_TARGET_OUTPUT","features":[397]},{"name":"DXGI_USAGE_SHADER_INPUT","features":[397]},{"name":"DXGI_USAGE_SHARED","features":[397]},{"name":"DXGI_USAGE_UNORDERED_ACCESS","features":[397]},{"name":"IDXGIAdapter","features":[397]},{"name":"IDXGIAdapter1","features":[397]},{"name":"IDXGIAdapter2","features":[397]},{"name":"IDXGIAdapter3","features":[397]},{"name":"IDXGIAdapter4","features":[397]},{"name":"IDXGIDebug","features":[397]},{"name":"IDXGIDebug1","features":[397]},{"name":"IDXGIDecodeSwapChain","features":[397]},{"name":"IDXGIDevice","features":[397]},{"name":"IDXGIDevice1","features":[397]},{"name":"IDXGIDevice2","features":[397]},{"name":"IDXGIDevice3","features":[397]},{"name":"IDXGIDevice4","features":[397]},{"name":"IDXGIDeviceSubObject","features":[397]},{"name":"IDXGIDisplayControl","features":[397]},{"name":"IDXGIFactory","features":[397]},{"name":"IDXGIFactory1","features":[397]},{"name":"IDXGIFactory2","features":[397]},{"name":"IDXGIFactory3","features":[397]},{"name":"IDXGIFactory4","features":[397]},{"name":"IDXGIFactory5","features":[397]},{"name":"IDXGIFactory6","features":[397]},{"name":"IDXGIFactory7","features":[397]},{"name":"IDXGIFactoryMedia","features":[397]},{"name":"IDXGIInfoQueue","features":[397]},{"name":"IDXGIKeyedMutex","features":[397]},{"name":"IDXGIObject","features":[397]},{"name":"IDXGIOutput","features":[397]},{"name":"IDXGIOutput1","features":[397]},{"name":"IDXGIOutput2","features":[397]},{"name":"IDXGIOutput3","features":[397]},{"name":"IDXGIOutput4","features":[397]},{"name":"IDXGIOutput5","features":[397]},{"name":"IDXGIOutput6","features":[397]},{"name":"IDXGIOutputDuplication","features":[397]},{"name":"IDXGIResource","features":[397]},{"name":"IDXGIResource1","features":[397]},{"name":"IDXGISurface","features":[397]},{"name":"IDXGISurface1","features":[397]},{"name":"IDXGISurface2","features":[397]},{"name":"IDXGISwapChain","features":[397]},{"name":"IDXGISwapChain1","features":[397]},{"name":"IDXGISwapChain2","features":[397]},{"name":"IDXGISwapChain3","features":[397]},{"name":"IDXGISwapChain4","features":[397]},{"name":"IDXGISwapChainMedia","features":[397]},{"name":"IDXGraphicsAnalysis","features":[397]}],"414":[{"name":"DXGI_ALPHA_MODE","features":[393]},{"name":"DXGI_ALPHA_MODE_IGNORE","features":[393]},{"name":"DXGI_ALPHA_MODE_PREMULTIPLIED","features":[393]},{"name":"DXGI_ALPHA_MODE_STRAIGHT","features":[393]},{"name":"DXGI_ALPHA_MODE_UNSPECIFIED","features":[393]},{"name":"DXGI_CENTER_MULTISAMPLE_QUALITY_PATTERN","features":[393]},{"name":"DXGI_COLOR_SPACE_CUSTOM","features":[393]},{"name":"DXGI_COLOR_SPACE_RESERVED","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G2084_NONE_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G22_NONE_P709","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P709","features":[393]},{"name":"DXGI_COLOR_SPACE_TYPE","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P601","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_LEFT_P709","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_G22_NONE_P709_X601","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_FULL_GHLG_TOPLEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G2084_LEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G2084_TOPLEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P601","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_LEFT_P709","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G22_TOPLEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P709","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_TOPLEFT_P2020","features":[393]},{"name":"DXGI_COLOR_SPACE_YCBCR_STUDIO_GHLG_TOPLEFT_P2020","features":[393]},{"name":"DXGI_CPU_ACCESS_DYNAMIC","features":[393]},{"name":"DXGI_CPU_ACCESS_FIELD","features":[393]},{"name":"DXGI_CPU_ACCESS_NONE","features":[393]},{"name":"DXGI_CPU_ACCESS_READ_WRITE","features":[393]},{"name":"DXGI_CPU_ACCESS_SCRATCH","features":[393]},{"name":"DXGI_FORMAT","features":[393]},{"name":"DXGI_FORMAT_420_OPAQUE","features":[393]},{"name":"DXGI_FORMAT_A4B4G4R4_UNORM","features":[393]},{"name":"DXGI_FORMAT_A8P8","features":[393]},{"name":"DXGI_FORMAT_A8_UNORM","features":[393]},{"name":"DXGI_FORMAT_AI44","features":[393]},{"name":"DXGI_FORMAT_AYUV","features":[393]},{"name":"DXGI_FORMAT_B4G4R4A4_UNORM","features":[393]},{"name":"DXGI_FORMAT_B5G5R5A1_UNORM","features":[393]},{"name":"DXGI_FORMAT_B5G6R5_UNORM","features":[393]},{"name":"DXGI_FORMAT_B8G8R8A8_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_B8G8R8A8_UNORM","features":[393]},{"name":"DXGI_FORMAT_B8G8R8A8_UNORM_SRGB","features":[393]},{"name":"DXGI_FORMAT_B8G8R8X8_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_B8G8R8X8_UNORM","features":[393]},{"name":"DXGI_FORMAT_B8G8R8X8_UNORM_SRGB","features":[393]},{"name":"DXGI_FORMAT_BC1_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_BC1_UNORM","features":[393]},{"name":"DXGI_FORMAT_BC1_UNORM_SRGB","features":[393]},{"name":"DXGI_FORMAT_BC2_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_BC2_UNORM","features":[393]},{"name":"DXGI_FORMAT_BC2_UNORM_SRGB","features":[393]},{"name":"DXGI_FORMAT_BC3_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_BC3_UNORM","features":[393]},{"name":"DXGI_FORMAT_BC3_UNORM_SRGB","features":[393]},{"name":"DXGI_FORMAT_BC4_SNORM","features":[393]},{"name":"DXGI_FORMAT_BC4_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_BC4_UNORM","features":[393]},{"name":"DXGI_FORMAT_BC5_SNORM","features":[393]},{"name":"DXGI_FORMAT_BC5_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_BC5_UNORM","features":[393]},{"name":"DXGI_FORMAT_BC6H_SF16","features":[393]},{"name":"DXGI_FORMAT_BC6H_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_BC6H_UF16","features":[393]},{"name":"DXGI_FORMAT_BC7_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_BC7_UNORM","features":[393]},{"name":"DXGI_FORMAT_BC7_UNORM_SRGB","features":[393]},{"name":"DXGI_FORMAT_D16_UNORM","features":[393]},{"name":"DXGI_FORMAT_D24_UNORM_S8_UINT","features":[393]},{"name":"DXGI_FORMAT_D32_FLOAT","features":[393]},{"name":"DXGI_FORMAT_D32_FLOAT_S8X24_UINT","features":[393]},{"name":"DXGI_FORMAT_DEFINED","features":[393]},{"name":"DXGI_FORMAT_G8R8_G8B8_UNORM","features":[393]},{"name":"DXGI_FORMAT_IA44","features":[393]},{"name":"DXGI_FORMAT_NV11","features":[393]},{"name":"DXGI_FORMAT_NV12","features":[393]},{"name":"DXGI_FORMAT_P010","features":[393]},{"name":"DXGI_FORMAT_P016","features":[393]},{"name":"DXGI_FORMAT_P208","features":[393]},{"name":"DXGI_FORMAT_P8","features":[393]},{"name":"DXGI_FORMAT_R10G10B10A2_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R10G10B10A2_UINT","features":[393]},{"name":"DXGI_FORMAT_R10G10B10A2_UNORM","features":[393]},{"name":"DXGI_FORMAT_R10G10B10_XR_BIAS_A2_UNORM","features":[393]},{"name":"DXGI_FORMAT_R11G11B10_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R16G16B16A16_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R16G16B16A16_SINT","features":[393]},{"name":"DXGI_FORMAT_R16G16B16A16_SNORM","features":[393]},{"name":"DXGI_FORMAT_R16G16B16A16_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R16G16B16A16_UINT","features":[393]},{"name":"DXGI_FORMAT_R16G16B16A16_UNORM","features":[393]},{"name":"DXGI_FORMAT_R16G16_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R16G16_SINT","features":[393]},{"name":"DXGI_FORMAT_R16G16_SNORM","features":[393]},{"name":"DXGI_FORMAT_R16G16_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R16G16_UINT","features":[393]},{"name":"DXGI_FORMAT_R16G16_UNORM","features":[393]},{"name":"DXGI_FORMAT_R16_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R16_SINT","features":[393]},{"name":"DXGI_FORMAT_R16_SNORM","features":[393]},{"name":"DXGI_FORMAT_R16_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R16_UINT","features":[393]},{"name":"DXGI_FORMAT_R16_UNORM","features":[393]},{"name":"DXGI_FORMAT_R1_UNORM","features":[393]},{"name":"DXGI_FORMAT_R24G8_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R24_UNORM_X8_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R32G32B32A32_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R32G32B32A32_SINT","features":[393]},{"name":"DXGI_FORMAT_R32G32B32A32_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R32G32B32A32_UINT","features":[393]},{"name":"DXGI_FORMAT_R32G32B32_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R32G32B32_SINT","features":[393]},{"name":"DXGI_FORMAT_R32G32B32_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R32G32B32_UINT","features":[393]},{"name":"DXGI_FORMAT_R32G32_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R32G32_SINT","features":[393]},{"name":"DXGI_FORMAT_R32G32_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R32G32_UINT","features":[393]},{"name":"DXGI_FORMAT_R32G8X24_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R32_FLOAT","features":[393]},{"name":"DXGI_FORMAT_R32_FLOAT_X8X24_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R32_SINT","features":[393]},{"name":"DXGI_FORMAT_R32_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R32_UINT","features":[393]},{"name":"DXGI_FORMAT_R8G8B8A8_SINT","features":[393]},{"name":"DXGI_FORMAT_R8G8B8A8_SNORM","features":[393]},{"name":"DXGI_FORMAT_R8G8B8A8_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R8G8B8A8_UINT","features":[393]},{"name":"DXGI_FORMAT_R8G8B8A8_UNORM","features":[393]},{"name":"DXGI_FORMAT_R8G8B8A8_UNORM_SRGB","features":[393]},{"name":"DXGI_FORMAT_R8G8_B8G8_UNORM","features":[393]},{"name":"DXGI_FORMAT_R8G8_SINT","features":[393]},{"name":"DXGI_FORMAT_R8G8_SNORM","features":[393]},{"name":"DXGI_FORMAT_R8G8_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R8G8_UINT","features":[393]},{"name":"DXGI_FORMAT_R8G8_UNORM","features":[393]},{"name":"DXGI_FORMAT_R8_SINT","features":[393]},{"name":"DXGI_FORMAT_R8_SNORM","features":[393]},{"name":"DXGI_FORMAT_R8_TYPELESS","features":[393]},{"name":"DXGI_FORMAT_R8_UINT","features":[393]},{"name":"DXGI_FORMAT_R8_UNORM","features":[393]},{"name":"DXGI_FORMAT_R9G9B9E5_SHAREDEXP","features":[393]},{"name":"DXGI_FORMAT_SAMPLER_FEEDBACK_MIN_MIP_OPAQUE","features":[393]},{"name":"DXGI_FORMAT_SAMPLER_FEEDBACK_MIP_REGION_USED_OPAQUE","features":[393]},{"name":"DXGI_FORMAT_UNKNOWN","features":[393]},{"name":"DXGI_FORMAT_V208","features":[393]},{"name":"DXGI_FORMAT_V408","features":[393]},{"name":"DXGI_FORMAT_X24_TYPELESS_G8_UINT","features":[393]},{"name":"DXGI_FORMAT_X32_TYPELESS_G8X24_UINT","features":[393]},{"name":"DXGI_FORMAT_Y210","features":[393]},{"name":"DXGI_FORMAT_Y216","features":[393]},{"name":"DXGI_FORMAT_Y410","features":[393]},{"name":"DXGI_FORMAT_Y416","features":[393]},{"name":"DXGI_FORMAT_YUY2","features":[393]},{"name":"DXGI_GAMMA_CONTROL","features":[393]},{"name":"DXGI_GAMMA_CONTROL_CAPABILITIES","features":[305,393]},{"name":"DXGI_JPEG_AC_HUFFMAN_TABLE","features":[393]},{"name":"DXGI_JPEG_DC_HUFFMAN_TABLE","features":[393]},{"name":"DXGI_JPEG_QUANTIZATION_TABLE","features":[393]},{"name":"DXGI_MODE_DESC","features":[393]},{"name":"DXGI_MODE_ROTATION","features":[393]},{"name":"DXGI_MODE_ROTATION_IDENTITY","features":[393]},{"name":"DXGI_MODE_ROTATION_ROTATE180","features":[393]},{"name":"DXGI_MODE_ROTATION_ROTATE270","features":[393]},{"name":"DXGI_MODE_ROTATION_ROTATE90","features":[393]},{"name":"DXGI_MODE_ROTATION_UNSPECIFIED","features":[393]},{"name":"DXGI_MODE_SCALING","features":[393]},{"name":"DXGI_MODE_SCALING_CENTERED","features":[393]},{"name":"DXGI_MODE_SCALING_STRETCHED","features":[393]},{"name":"DXGI_MODE_SCALING_UNSPECIFIED","features":[393]},{"name":"DXGI_MODE_SCANLINE_ORDER","features":[393]},{"name":"DXGI_MODE_SCANLINE_ORDER_LOWER_FIELD_FIRST","features":[393]},{"name":"DXGI_MODE_SCANLINE_ORDER_PROGRESSIVE","features":[393]},{"name":"DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED","features":[393]},{"name":"DXGI_MODE_SCANLINE_ORDER_UPPER_FIELD_FIRST","features":[393]},{"name":"DXGI_RATIONAL","features":[393]},{"name":"DXGI_RGB","features":[393]},{"name":"DXGI_SAMPLE_DESC","features":[393]},{"name":"DXGI_STANDARD_MULTISAMPLE_QUALITY_PATTERN","features":[393]},{"name":"_FACDXGI","features":[393]}],"415":[{"name":"ABC","features":[316]},{"name":"ABCFLOAT","features":[316]},{"name":"ABORTDOC","features":[316]},{"name":"ABORTPATH","features":[316]},{"name":"ABSOLUTE","features":[316]},{"name":"AC_SRC_ALPHA","features":[316]},{"name":"AC_SRC_OVER","features":[316]},{"name":"AD_CLOCKWISE","features":[316]},{"name":"AD_COUNTERCLOCKWISE","features":[316]},{"name":"ALTERNATE","features":[316]},{"name":"ANSI_CHARSET","features":[316]},{"name":"ANSI_FIXED_FONT","features":[316]},{"name":"ANSI_VAR_FONT","features":[316]},{"name":"ANTIALIASED_QUALITY","features":[316]},{"name":"ARABIC_CHARSET","features":[316]},{"name":"ARC_DIRECTION","features":[316]},{"name":"ASPECTX","features":[316]},{"name":"ASPECTXY","features":[316]},{"name":"ASPECTY","features":[316]},{"name":"ASPECT_FILTERING","features":[316]},{"name":"AXESLISTA","features":[316]},{"name":"AXESLISTW","features":[316]},{"name":"AXISINFOA","features":[316]},{"name":"AXISINFOW","features":[316]},{"name":"AbortPath","features":[305,316]},{"name":"AddFontMemResourceEx","features":[305,316]},{"name":"AddFontResourceA","features":[316]},{"name":"AddFontResourceExA","features":[316]},{"name":"AddFontResourceExW","features":[316]},{"name":"AddFontResourceW","features":[316]},{"name":"AlphaBlend","features":[305,316]},{"name":"AngleArc","features":[305,316]},{"name":"AnimatePalette","features":[305,316]},{"name":"Arc","features":[305,316]},{"name":"ArcTo","features":[305,316]},{"name":"BACKGROUND_MODE","features":[316]},{"name":"BALTIC_CHARSET","features":[316]},{"name":"BANDINFO","features":[316]},{"name":"BDR_INNER","features":[316]},{"name":"BDR_OUTER","features":[316]},{"name":"BDR_RAISED","features":[316]},{"name":"BDR_RAISEDINNER","features":[316]},{"name":"BDR_RAISEDOUTER","features":[316]},{"name":"BDR_SUNKEN","features":[316]},{"name":"BDR_SUNKENINNER","features":[316]},{"name":"BDR_SUNKENOUTER","features":[316]},{"name":"BEGIN_PATH","features":[316]},{"name":"BF_ADJUST","features":[316]},{"name":"BF_BOTTOM","features":[316]},{"name":"BF_BOTTOMLEFT","features":[316]},{"name":"BF_BOTTOMRIGHT","features":[316]},{"name":"BF_DIAGONAL","features":[316]},{"name":"BF_DIAGONAL_ENDBOTTOMLEFT","features":[316]},{"name":"BF_DIAGONAL_ENDBOTTOMRIGHT","features":[316]},{"name":"BF_DIAGONAL_ENDTOPLEFT","features":[316]},{"name":"BF_DIAGONAL_ENDTOPRIGHT","features":[316]},{"name":"BF_FLAT","features":[316]},{"name":"BF_LEFT","features":[316]},{"name":"BF_MIDDLE","features":[316]},{"name":"BF_MONO","features":[316]},{"name":"BF_RECT","features":[316]},{"name":"BF_RIGHT","features":[316]},{"name":"BF_SOFT","features":[316]},{"name":"BF_TOP","features":[316]},{"name":"BF_TOPLEFT","features":[316]},{"name":"BF_TOPRIGHT","features":[316]},{"name":"BITMAP","features":[316]},{"name":"BITMAPCOREHEADER","features":[316]},{"name":"BITMAPCOREINFO","features":[316]},{"name":"BITMAPFILEHEADER","features":[316]},{"name":"BITMAPINFO","features":[316]},{"name":"BITMAPINFOHEADER","features":[316]},{"name":"BITMAPV4HEADER","features":[316]},{"name":"BITMAPV5HEADER","features":[316]},{"name":"BITSPIXEL","features":[316]},{"name":"BI_BITFIELDS","features":[316]},{"name":"BI_COMPRESSION","features":[316]},{"name":"BI_JPEG","features":[316]},{"name":"BI_PNG","features":[316]},{"name":"BI_RGB","features":[316]},{"name":"BI_RLE4","features":[316]},{"name":"BI_RLE8","features":[316]},{"name":"BKMODE_LAST","features":[316]},{"name":"BLACKNESS","features":[316]},{"name":"BLACKONWHITE","features":[316]},{"name":"BLACK_BRUSH","features":[316]},{"name":"BLACK_PEN","features":[316]},{"name":"BLENDFUNCTION","features":[316]},{"name":"BLTALIGNMENT","features":[316]},{"name":"BRUSH_STYLE","features":[316]},{"name":"BS_DIBPATTERN","features":[316]},{"name":"BS_DIBPATTERN8X8","features":[316]},{"name":"BS_DIBPATTERNPT","features":[316]},{"name":"BS_HATCHED","features":[316]},{"name":"BS_HOLLOW","features":[316]},{"name":"BS_INDEXED","features":[316]},{"name":"BS_MONOPATTERN","features":[316]},{"name":"BS_NULL","features":[316]},{"name":"BS_PATTERN","features":[316]},{"name":"BS_PATTERN8X8","features":[316]},{"name":"BS_SOLID","features":[316]},{"name":"BeginPaint","features":[305,316]},{"name":"BeginPath","features":[305,316]},{"name":"BitBlt","features":[305,316]},{"name":"CAPTUREBLT","features":[316]},{"name":"CA_LOG_FILTER","features":[316]},{"name":"CA_NEGATIVE","features":[316]},{"name":"CBM_INIT","features":[316]},{"name":"CCHFORMNAME","features":[316]},{"name":"CC_CHORD","features":[316]},{"name":"CC_CIRCLES","features":[316]},{"name":"CC_ELLIPSES","features":[316]},{"name":"CC_INTERIORS","features":[316]},{"name":"CC_NONE","features":[316]},{"name":"CC_PIE","features":[316]},{"name":"CC_ROUNDRECT","features":[316]},{"name":"CC_STYLED","features":[316]},{"name":"CC_WIDE","features":[316]},{"name":"CC_WIDESTYLED","features":[316]},{"name":"CDS_DISABLE_UNSAFE_MODES","features":[316]},{"name":"CDS_ENABLE_UNSAFE_MODES","features":[316]},{"name":"CDS_FULLSCREEN","features":[316]},{"name":"CDS_GLOBAL","features":[316]},{"name":"CDS_NORESET","features":[316]},{"name":"CDS_RESET","features":[316]},{"name":"CDS_RESET_EX","features":[316]},{"name":"CDS_SET_PRIMARY","features":[316]},{"name":"CDS_TEST","features":[316]},{"name":"CDS_TYPE","features":[316]},{"name":"CDS_UPDATEREGISTRY","features":[316]},{"name":"CDS_VIDEOPARAMETERS","features":[316]},{"name":"CFP_ALLOCPROC","features":[316]},{"name":"CFP_FREEPROC","features":[316]},{"name":"CFP_REALLOCPROC","features":[316]},{"name":"CHARSET_DEFAULT","features":[316]},{"name":"CHARSET_GLYPHIDX","features":[316]},{"name":"CHARSET_SYMBOL","features":[316]},{"name":"CHARSET_UNICODE","features":[316]},{"name":"CHECKJPEGFORMAT","features":[316]},{"name":"CHECKPNGFORMAT","features":[316]},{"name":"CHINESEBIG5_CHARSET","features":[316]},{"name":"CIEXYZ","features":[316]},{"name":"CIEXYZTRIPLE","features":[316]},{"name":"CLEARTYPE_NATURAL_QUALITY","features":[316]},{"name":"CLEARTYPE_QUALITY","features":[316]},{"name":"CLIPCAPS","features":[316]},{"name":"CLIP_CHARACTER_PRECIS","features":[316]},{"name":"CLIP_DEFAULT_PRECIS","features":[316]},{"name":"CLIP_DFA_DISABLE","features":[316]},{"name":"CLIP_DFA_OVERRIDE","features":[316]},{"name":"CLIP_EMBEDDED","features":[316]},{"name":"CLIP_LH_ANGLES","features":[316]},{"name":"CLIP_MASK","features":[316]},{"name":"CLIP_STROKE_PRECIS","features":[316]},{"name":"CLIP_TO_PATH","features":[316]},{"name":"CLIP_TT_ALWAYS","features":[316]},{"name":"CLOSECHANNEL","features":[316]},{"name":"CLR_INVALID","features":[316]},{"name":"CM_CMYK_COLOR","features":[316]},{"name":"CM_DEVICE_ICM","features":[316]},{"name":"CM_GAMMA_RAMP","features":[316]},{"name":"CM_IN_GAMUT","features":[316]},{"name":"CM_NONE","features":[316]},{"name":"CM_OUT_OF_GAMUT","features":[316]},{"name":"COLORADJUSTMENT","features":[316]},{"name":"COLORMATCHTOTARGET_EMBEDED","features":[316]},{"name":"COLORMGMTCAPS","features":[316]},{"name":"COLORONCOLOR","features":[316]},{"name":"COLORRES","features":[316]},{"name":"COLOR_3DDKSHADOW","features":[316]},{"name":"COLOR_3DFACE","features":[316]},{"name":"COLOR_3DHIGHLIGHT","features":[316]},{"name":"COLOR_3DHILIGHT","features":[316]},{"name":"COLOR_3DLIGHT","features":[316]},{"name":"COLOR_3DSHADOW","features":[316]},{"name":"COLOR_ACTIVEBORDER","features":[316]},{"name":"COLOR_ACTIVECAPTION","features":[316]},{"name":"COLOR_APPWORKSPACE","features":[316]},{"name":"COLOR_BACKGROUND","features":[316]},{"name":"COLOR_BTNFACE","features":[316]},{"name":"COLOR_BTNHIGHLIGHT","features":[316]},{"name":"COLOR_BTNHILIGHT","features":[316]},{"name":"COLOR_BTNSHADOW","features":[316]},{"name":"COLOR_BTNTEXT","features":[316]},{"name":"COLOR_CAPTIONTEXT","features":[316]},{"name":"COLOR_DESKTOP","features":[316]},{"name":"COLOR_GRADIENTACTIVECAPTION","features":[316]},{"name":"COLOR_GRADIENTINACTIVECAPTION","features":[316]},{"name":"COLOR_GRAYTEXT","features":[316]},{"name":"COLOR_HIGHLIGHT","features":[316]},{"name":"COLOR_HIGHLIGHTTEXT","features":[316]},{"name":"COLOR_HOTLIGHT","features":[316]},{"name":"COLOR_INACTIVEBORDER","features":[316]},{"name":"COLOR_INACTIVECAPTION","features":[316]},{"name":"COLOR_INACTIVECAPTIONTEXT","features":[316]},{"name":"COLOR_INFOBK","features":[316]},{"name":"COLOR_INFOTEXT","features":[316]},{"name":"COLOR_MENU","features":[316]},{"name":"COLOR_MENUBAR","features":[316]},{"name":"COLOR_MENUHILIGHT","features":[316]},{"name":"COLOR_MENUTEXT","features":[316]},{"name":"COLOR_SCROLLBAR","features":[316]},{"name":"COLOR_WINDOW","features":[316]},{"name":"COLOR_WINDOWFRAME","features":[316]},{"name":"COLOR_WINDOWTEXT","features":[316]},{"name":"COMPLEXREGION","features":[316]},{"name":"CP_NONE","features":[316]},{"name":"CP_RECTANGLE","features":[316]},{"name":"CP_REGION","features":[316]},{"name":"CREATECOLORSPACE_EMBEDED","features":[316]},{"name":"CREATE_FONT_PACKAGE_SUBSET_ENCODING","features":[316]},{"name":"CREATE_FONT_PACKAGE_SUBSET_PLATFORM","features":[316]},{"name":"CREATE_POLYGON_RGN_MODE","features":[316]},{"name":"CURVECAPS","features":[316]},{"name":"CancelDC","features":[305,316]},{"name":"ChangeDisplaySettingsA","features":[305,316]},{"name":"ChangeDisplaySettingsExA","features":[305,316]},{"name":"ChangeDisplaySettingsExW","features":[305,316]},{"name":"ChangeDisplaySettingsW","features":[305,316]},{"name":"Chord","features":[305,316]},{"name":"ClientToScreen","features":[305,316]},{"name":"CloseEnhMetaFile","features":[316]},{"name":"CloseFigure","features":[305,316]},{"name":"CloseMetaFile","features":[316]},{"name":"CombineRgn","features":[316]},{"name":"CombineTransform","features":[305,316]},{"name":"CopyEnhMetaFileA","features":[316]},{"name":"CopyEnhMetaFileW","features":[316]},{"name":"CopyMetaFileA","features":[316]},{"name":"CopyMetaFileW","features":[316]},{"name":"CopyRect","features":[305,316]},{"name":"CreateBitmap","features":[316]},{"name":"CreateBitmapIndirect","features":[316]},{"name":"CreateBrushIndirect","features":[305,316]},{"name":"CreateCompatibleBitmap","features":[316]},{"name":"CreateCompatibleDC","features":[316]},{"name":"CreateDCA","features":[305,316]},{"name":"CreateDCW","features":[305,316]},{"name":"CreateDIBPatternBrush","features":[305,316]},{"name":"CreateDIBPatternBrushPt","features":[316]},{"name":"CreateDIBSection","features":[305,316]},{"name":"CreateDIBitmap","features":[316]},{"name":"CreateDiscardableBitmap","features":[316]},{"name":"CreateEllipticRgn","features":[316]},{"name":"CreateEllipticRgnIndirect","features":[305,316]},{"name":"CreateEnhMetaFileA","features":[305,316]},{"name":"CreateEnhMetaFileW","features":[305,316]},{"name":"CreateFontA","features":[316]},{"name":"CreateFontIndirectA","features":[316]},{"name":"CreateFontIndirectExA","features":[316]},{"name":"CreateFontIndirectExW","features":[316]},{"name":"CreateFontIndirectW","features":[316]},{"name":"CreateFontPackage","features":[316]},{"name":"CreateFontW","features":[316]},{"name":"CreateHalftonePalette","features":[316]},{"name":"CreateHatchBrush","features":[305,316]},{"name":"CreateICA","features":[305,316]},{"name":"CreateICW","features":[305,316]},{"name":"CreateMetaFileA","features":[316]},{"name":"CreateMetaFileW","features":[316]},{"name":"CreatePalette","features":[316]},{"name":"CreatePatternBrush","features":[316]},{"name":"CreatePen","features":[305,316]},{"name":"CreatePenIndirect","features":[305,316]},{"name":"CreatePolyPolygonRgn","features":[305,316]},{"name":"CreatePolygonRgn","features":[305,316]},{"name":"CreateRectRgn","features":[316]},{"name":"CreateRectRgnIndirect","features":[305,316]},{"name":"CreateRoundRectRgn","features":[316]},{"name":"CreateScalableFontResourceA","features":[305,316]},{"name":"CreateScalableFontResourceW","features":[305,316]},{"name":"CreateSolidBrush","features":[305,316]},{"name":"DCBA_FACEDOWNCENTER","features":[316]},{"name":"DCBA_FACEDOWNLEFT","features":[316]},{"name":"DCBA_FACEDOWNNONE","features":[316]},{"name":"DCBA_FACEDOWNRIGHT","features":[316]},{"name":"DCBA_FACEUPCENTER","features":[316]},{"name":"DCBA_FACEUPLEFT","features":[316]},{"name":"DCBA_FACEUPNONE","features":[316]},{"name":"DCBA_FACEUPRIGHT","features":[316]},{"name":"DCB_ACCUMULATE","features":[316]},{"name":"DCB_DISABLE","features":[316]},{"name":"DCB_ENABLE","features":[316]},{"name":"DCB_RESET","features":[316]},{"name":"DCTT_BITMAP","features":[316]},{"name":"DCTT_DOWNLOAD","features":[316]},{"name":"DCTT_DOWNLOAD_OUTLINE","features":[316]},{"name":"DCTT_SUBDEV","features":[316]},{"name":"DCX_CACHE","features":[316]},{"name":"DCX_CLIPCHILDREN","features":[316]},{"name":"DCX_CLIPSIBLINGS","features":[316]},{"name":"DCX_EXCLUDERGN","features":[316]},{"name":"DCX_INTERSECTRGN","features":[316]},{"name":"DCX_INTERSECTUPDATE","features":[316]},{"name":"DCX_LOCKWINDOWUPDATE","features":[316]},{"name":"DCX_NORESETATTRS","features":[316]},{"name":"DCX_PARENTCLIP","features":[316]},{"name":"DCX_VALIDATE","features":[316]},{"name":"DCX_WINDOW","features":[316]},{"name":"DC_ACTIVE","features":[316]},{"name":"DC_BINADJUST","features":[316]},{"name":"DC_BRUSH","features":[316]},{"name":"DC_BUTTONS","features":[316]},{"name":"DC_DATATYPE_PRODUCED","features":[316]},{"name":"DC_EMF_COMPLIANT","features":[316]},{"name":"DC_GRADIENT","features":[316]},{"name":"DC_ICON","features":[316]},{"name":"DC_INBUTTON","features":[316]},{"name":"DC_LAYOUT","features":[316]},{"name":"DC_MANUFACTURER","features":[316]},{"name":"DC_MODEL","features":[316]},{"name":"DC_PEN","features":[316]},{"name":"DC_SMALLCAP","features":[316]},{"name":"DC_TEXT","features":[316]},{"name":"DEFAULT_CHARSET","features":[316]},{"name":"DEFAULT_GUI_FONT","features":[316]},{"name":"DEFAULT_PALETTE","features":[316]},{"name":"DEFAULT_PITCH","features":[316]},{"name":"DEFAULT_QUALITY","features":[316]},{"name":"DESIGNVECTOR","features":[316]},{"name":"DESKTOPHORZRES","features":[316]},{"name":"DESKTOPVERTRES","features":[316]},{"name":"DEVICEDATA","features":[316]},{"name":"DEVICE_DEFAULT_FONT","features":[316]},{"name":"DEVICE_FONTTYPE","features":[316]},{"name":"DEVMODEA","features":[305,316]},{"name":"DEVMODEW","features":[305,316]},{"name":"DEVMODE_COLLATE","features":[316]},{"name":"DEVMODE_COLOR","features":[316]},{"name":"DEVMODE_DISPLAY_FIXED_OUTPUT","features":[316]},{"name":"DEVMODE_DISPLAY_ORIENTATION","features":[316]},{"name":"DEVMODE_DUPLEX","features":[316]},{"name":"DEVMODE_FIELD_FLAGS","features":[316]},{"name":"DEVMODE_TRUETYPE_OPTION","features":[316]},{"name":"DFCS_ADJUSTRECT","features":[316]},{"name":"DFCS_BUTTON3STATE","features":[316]},{"name":"DFCS_BUTTONCHECK","features":[316]},{"name":"DFCS_BUTTONPUSH","features":[316]},{"name":"DFCS_BUTTONRADIO","features":[316]},{"name":"DFCS_BUTTONRADIOIMAGE","features":[316]},{"name":"DFCS_BUTTONRADIOMASK","features":[316]},{"name":"DFCS_CAPTIONCLOSE","features":[316]},{"name":"DFCS_CAPTIONHELP","features":[316]},{"name":"DFCS_CAPTIONMAX","features":[316]},{"name":"DFCS_CAPTIONMIN","features":[316]},{"name":"DFCS_CAPTIONRESTORE","features":[316]},{"name":"DFCS_CHECKED","features":[316]},{"name":"DFCS_FLAT","features":[316]},{"name":"DFCS_HOT","features":[316]},{"name":"DFCS_INACTIVE","features":[316]},{"name":"DFCS_MENUARROW","features":[316]},{"name":"DFCS_MENUARROWRIGHT","features":[316]},{"name":"DFCS_MENUBULLET","features":[316]},{"name":"DFCS_MENUCHECK","features":[316]},{"name":"DFCS_MONO","features":[316]},{"name":"DFCS_PUSHED","features":[316]},{"name":"DFCS_SCROLLCOMBOBOX","features":[316]},{"name":"DFCS_SCROLLDOWN","features":[316]},{"name":"DFCS_SCROLLLEFT","features":[316]},{"name":"DFCS_SCROLLRIGHT","features":[316]},{"name":"DFCS_SCROLLSIZEGRIP","features":[316]},{"name":"DFCS_SCROLLSIZEGRIPRIGHT","features":[316]},{"name":"DFCS_SCROLLUP","features":[316]},{"name":"DFCS_STATE","features":[316]},{"name":"DFCS_TRANSPARENT","features":[316]},{"name":"DFC_BUTTON","features":[316]},{"name":"DFC_CAPTION","features":[316]},{"name":"DFC_MENU","features":[316]},{"name":"DFC_POPUPMENU","features":[316]},{"name":"DFC_SCROLL","features":[316]},{"name":"DFC_TYPE","features":[316]},{"name":"DIBSECTION","features":[305,316]},{"name":"DIB_PAL_COLORS","features":[316]},{"name":"DIB_RGB_COLORS","features":[316]},{"name":"DIB_USAGE","features":[316]},{"name":"DISPLAYCONFIG_COLOR_ENCODING","features":[316]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_INTENSITY","features":[316]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_RGB","features":[316]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR420","features":[316]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR422","features":[316]},{"name":"DISPLAYCONFIG_COLOR_ENCODING_YCBCR444","features":[316]},{"name":"DISPLAYCONFIG_MAXPATH","features":[316]},{"name":"DISPLAYCONFIG_PATH_ACTIVE","features":[316]},{"name":"DISPLAYCONFIG_PATH_CLONE_GROUP_INVALID","features":[316]},{"name":"DISPLAYCONFIG_PATH_DESKTOP_IMAGE_IDX_INVALID","features":[316]},{"name":"DISPLAYCONFIG_PATH_MODE_IDX_INVALID","features":[316]},{"name":"DISPLAYCONFIG_PATH_PREFERRED_UNSCALED","features":[316]},{"name":"DISPLAYCONFIG_PATH_SOURCE_MODE_IDX_INVALID","features":[316]},{"name":"DISPLAYCONFIG_PATH_SUPPORT_VIRTUAL_MODE","features":[316]},{"name":"DISPLAYCONFIG_PATH_TARGET_MODE_IDX_INVALID","features":[316]},{"name":"DISPLAYCONFIG_PATH_VALID_FLAGS","features":[316]},{"name":"DISPLAYCONFIG_SOURCE_IN_USE","features":[316]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_BOOT","features":[316]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_PATH","features":[316]},{"name":"DISPLAYCONFIG_TARGET_FORCED_AVAILABILITY_SYSTEM","features":[316]},{"name":"DISPLAYCONFIG_TARGET_FORCIBLE","features":[316]},{"name":"DISPLAYCONFIG_TARGET_IN_USE","features":[316]},{"name":"DISPLAYCONFIG_TARGET_IS_HMD","features":[316]},{"name":"DISPLAY_DEVICEA","features":[316]},{"name":"DISPLAY_DEVICEW","features":[316]},{"name":"DISPLAY_DEVICE_ACC_DRIVER","features":[316]},{"name":"DISPLAY_DEVICE_ACTIVE","features":[316]},{"name":"DISPLAY_DEVICE_ATTACHED","features":[316]},{"name":"DISPLAY_DEVICE_ATTACHED_TO_DESKTOP","features":[316]},{"name":"DISPLAY_DEVICE_DISCONNECT","features":[316]},{"name":"DISPLAY_DEVICE_MIRRORING_DRIVER","features":[316]},{"name":"DISPLAY_DEVICE_MODESPRUNED","features":[316]},{"name":"DISPLAY_DEVICE_MULTI_DRIVER","features":[316]},{"name":"DISPLAY_DEVICE_PRIMARY_DEVICE","features":[316]},{"name":"DISPLAY_DEVICE_RDPUDD","features":[316]},{"name":"DISPLAY_DEVICE_REMOTE","features":[316]},{"name":"DISPLAY_DEVICE_REMOVABLE","features":[316]},{"name":"DISPLAY_DEVICE_TS_COMPATIBLE","features":[316]},{"name":"DISPLAY_DEVICE_UNSAFE_MODES_ON","features":[316]},{"name":"DISPLAY_DEVICE_VGA_COMPATIBLE","features":[316]},{"name":"DISP_CHANGE","features":[316]},{"name":"DISP_CHANGE_BADDUALVIEW","features":[316]},{"name":"DISP_CHANGE_BADFLAGS","features":[316]},{"name":"DISP_CHANGE_BADMODE","features":[316]},{"name":"DISP_CHANGE_BADPARAM","features":[316]},{"name":"DISP_CHANGE_FAILED","features":[316]},{"name":"DISP_CHANGE_NOTUPDATED","features":[316]},{"name":"DISP_CHANGE_RESTART","features":[316]},{"name":"DISP_CHANGE_SUCCESSFUL","features":[316]},{"name":"DI_APPBANDING","features":[316]},{"name":"DI_ROPS_READ_DESTINATION","features":[316]},{"name":"DKGRAY_BRUSH","features":[316]},{"name":"DMBIN_AUTO","features":[316]},{"name":"DMBIN_CASSETTE","features":[316]},{"name":"DMBIN_ENVELOPE","features":[316]},{"name":"DMBIN_ENVMANUAL","features":[316]},{"name":"DMBIN_FORMSOURCE","features":[316]},{"name":"DMBIN_LARGECAPACITY","features":[316]},{"name":"DMBIN_LARGEFMT","features":[316]},{"name":"DMBIN_LAST","features":[316]},{"name":"DMBIN_LOWER","features":[316]},{"name":"DMBIN_MANUAL","features":[316]},{"name":"DMBIN_MIDDLE","features":[316]},{"name":"DMBIN_ONLYONE","features":[316]},{"name":"DMBIN_SMALLFMT","features":[316]},{"name":"DMBIN_TRACTOR","features":[316]},{"name":"DMBIN_UPPER","features":[316]},{"name":"DMBIN_USER","features":[316]},{"name":"DMCOLLATE_FALSE","features":[316]},{"name":"DMCOLLATE_TRUE","features":[316]},{"name":"DMCOLOR_COLOR","features":[316]},{"name":"DMCOLOR_MONOCHROME","features":[316]},{"name":"DMDFO_CENTER","features":[316]},{"name":"DMDFO_DEFAULT","features":[316]},{"name":"DMDFO_STRETCH","features":[316]},{"name":"DMDISPLAYFLAGS_TEXTMODE","features":[316]},{"name":"DMDITHER_COARSE","features":[316]},{"name":"DMDITHER_ERRORDIFFUSION","features":[316]},{"name":"DMDITHER_FINE","features":[316]},{"name":"DMDITHER_GRAYSCALE","features":[316]},{"name":"DMDITHER_LINEART","features":[316]},{"name":"DMDITHER_NONE","features":[316]},{"name":"DMDITHER_RESERVED6","features":[316]},{"name":"DMDITHER_RESERVED7","features":[316]},{"name":"DMDITHER_RESERVED8","features":[316]},{"name":"DMDITHER_RESERVED9","features":[316]},{"name":"DMDITHER_USER","features":[316]},{"name":"DMDO_180","features":[316]},{"name":"DMDO_270","features":[316]},{"name":"DMDO_90","features":[316]},{"name":"DMDO_DEFAULT","features":[316]},{"name":"DMDUP_HORIZONTAL","features":[316]},{"name":"DMDUP_SIMPLEX","features":[316]},{"name":"DMDUP_VERTICAL","features":[316]},{"name":"DMICMMETHOD_DEVICE","features":[316]},{"name":"DMICMMETHOD_DRIVER","features":[316]},{"name":"DMICMMETHOD_NONE","features":[316]},{"name":"DMICMMETHOD_SYSTEM","features":[316]},{"name":"DMICMMETHOD_USER","features":[316]},{"name":"DMICM_ABS_COLORIMETRIC","features":[316]},{"name":"DMICM_COLORIMETRIC","features":[316]},{"name":"DMICM_CONTRAST","features":[316]},{"name":"DMICM_SATURATE","features":[316]},{"name":"DMICM_USER","features":[316]},{"name":"DMMEDIA_GLOSSY","features":[316]},{"name":"DMMEDIA_STANDARD","features":[316]},{"name":"DMMEDIA_TRANSPARENCY","features":[316]},{"name":"DMMEDIA_USER","features":[316]},{"name":"DMNUP_ONEUP","features":[316]},{"name":"DMNUP_SYSTEM","features":[316]},{"name":"DMORIENT_LANDSCAPE","features":[316]},{"name":"DMORIENT_PORTRAIT","features":[316]},{"name":"DMPAPER_10X11","features":[316]},{"name":"DMPAPER_10X14","features":[316]},{"name":"DMPAPER_11X17","features":[316]},{"name":"DMPAPER_12X11","features":[316]},{"name":"DMPAPER_15X11","features":[316]},{"name":"DMPAPER_9X11","features":[316]},{"name":"DMPAPER_A2","features":[316]},{"name":"DMPAPER_A3","features":[316]},{"name":"DMPAPER_A3_EXTRA","features":[316]},{"name":"DMPAPER_A3_EXTRA_TRANSVERSE","features":[316]},{"name":"DMPAPER_A3_ROTATED","features":[316]},{"name":"DMPAPER_A3_TRANSVERSE","features":[316]},{"name":"DMPAPER_A4","features":[316]},{"name":"DMPAPER_A4SMALL","features":[316]},{"name":"DMPAPER_A4_EXTRA","features":[316]},{"name":"DMPAPER_A4_PLUS","features":[316]},{"name":"DMPAPER_A4_ROTATED","features":[316]},{"name":"DMPAPER_A4_TRANSVERSE","features":[316]},{"name":"DMPAPER_A5","features":[316]},{"name":"DMPAPER_A5_EXTRA","features":[316]},{"name":"DMPAPER_A5_ROTATED","features":[316]},{"name":"DMPAPER_A5_TRANSVERSE","features":[316]},{"name":"DMPAPER_A6","features":[316]},{"name":"DMPAPER_A6_ROTATED","features":[316]},{"name":"DMPAPER_A_PLUS","features":[316]},{"name":"DMPAPER_B4","features":[316]},{"name":"DMPAPER_B4_JIS_ROTATED","features":[316]},{"name":"DMPAPER_B5","features":[316]},{"name":"DMPAPER_B5_EXTRA","features":[316]},{"name":"DMPAPER_B5_JIS_ROTATED","features":[316]},{"name":"DMPAPER_B5_TRANSVERSE","features":[316]},{"name":"DMPAPER_B6_JIS","features":[316]},{"name":"DMPAPER_B6_JIS_ROTATED","features":[316]},{"name":"DMPAPER_B_PLUS","features":[316]},{"name":"DMPAPER_CSHEET","features":[316]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD","features":[316]},{"name":"DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED","features":[316]},{"name":"DMPAPER_DSHEET","features":[316]},{"name":"DMPAPER_ENV_10","features":[316]},{"name":"DMPAPER_ENV_11","features":[316]},{"name":"DMPAPER_ENV_12","features":[316]},{"name":"DMPAPER_ENV_14","features":[316]},{"name":"DMPAPER_ENV_9","features":[316]},{"name":"DMPAPER_ENV_B4","features":[316]},{"name":"DMPAPER_ENV_B5","features":[316]},{"name":"DMPAPER_ENV_B6","features":[316]},{"name":"DMPAPER_ENV_C3","features":[316]},{"name":"DMPAPER_ENV_C4","features":[316]},{"name":"DMPAPER_ENV_C5","features":[316]},{"name":"DMPAPER_ENV_C6","features":[316]},{"name":"DMPAPER_ENV_C65","features":[316]},{"name":"DMPAPER_ENV_DL","features":[316]},{"name":"DMPAPER_ENV_INVITE","features":[316]},{"name":"DMPAPER_ENV_ITALY","features":[316]},{"name":"DMPAPER_ENV_MONARCH","features":[316]},{"name":"DMPAPER_ENV_PERSONAL","features":[316]},{"name":"DMPAPER_ESHEET","features":[316]},{"name":"DMPAPER_EXECUTIVE","features":[316]},{"name":"DMPAPER_FANFOLD_LGL_GERMAN","features":[316]},{"name":"DMPAPER_FANFOLD_STD_GERMAN","features":[316]},{"name":"DMPAPER_FANFOLD_US","features":[316]},{"name":"DMPAPER_FOLIO","features":[316]},{"name":"DMPAPER_ISO_B4","features":[316]},{"name":"DMPAPER_JAPANESE_POSTCARD","features":[316]},{"name":"DMPAPER_JAPANESE_POSTCARD_ROTATED","features":[316]},{"name":"DMPAPER_JENV_CHOU3","features":[316]},{"name":"DMPAPER_JENV_CHOU3_ROTATED","features":[316]},{"name":"DMPAPER_JENV_CHOU4","features":[316]},{"name":"DMPAPER_JENV_CHOU4_ROTATED","features":[316]},{"name":"DMPAPER_JENV_KAKU2","features":[316]},{"name":"DMPAPER_JENV_KAKU2_ROTATED","features":[316]},{"name":"DMPAPER_JENV_KAKU3","features":[316]},{"name":"DMPAPER_JENV_KAKU3_ROTATED","features":[316]},{"name":"DMPAPER_JENV_YOU4","features":[316]},{"name":"DMPAPER_JENV_YOU4_ROTATED","features":[316]},{"name":"DMPAPER_LAST","features":[316]},{"name":"DMPAPER_LEDGER","features":[316]},{"name":"DMPAPER_LEGAL","features":[316]},{"name":"DMPAPER_LEGAL_EXTRA","features":[316]},{"name":"DMPAPER_LETTER","features":[316]},{"name":"DMPAPER_LETTERSMALL","features":[316]},{"name":"DMPAPER_LETTER_EXTRA","features":[316]},{"name":"DMPAPER_LETTER_EXTRA_TRANSVERSE","features":[316]},{"name":"DMPAPER_LETTER_PLUS","features":[316]},{"name":"DMPAPER_LETTER_ROTATED","features":[316]},{"name":"DMPAPER_LETTER_TRANSVERSE","features":[316]},{"name":"DMPAPER_NOTE","features":[316]},{"name":"DMPAPER_P16K","features":[316]},{"name":"DMPAPER_P16K_ROTATED","features":[316]},{"name":"DMPAPER_P32K","features":[316]},{"name":"DMPAPER_P32KBIG","features":[316]},{"name":"DMPAPER_P32KBIG_ROTATED","features":[316]},{"name":"DMPAPER_P32K_ROTATED","features":[316]},{"name":"DMPAPER_PENV_1","features":[316]},{"name":"DMPAPER_PENV_10","features":[316]},{"name":"DMPAPER_PENV_10_ROTATED","features":[316]},{"name":"DMPAPER_PENV_1_ROTATED","features":[316]},{"name":"DMPAPER_PENV_2","features":[316]},{"name":"DMPAPER_PENV_2_ROTATED","features":[316]},{"name":"DMPAPER_PENV_3","features":[316]},{"name":"DMPAPER_PENV_3_ROTATED","features":[316]},{"name":"DMPAPER_PENV_4","features":[316]},{"name":"DMPAPER_PENV_4_ROTATED","features":[316]},{"name":"DMPAPER_PENV_5","features":[316]},{"name":"DMPAPER_PENV_5_ROTATED","features":[316]},{"name":"DMPAPER_PENV_6","features":[316]},{"name":"DMPAPER_PENV_6_ROTATED","features":[316]},{"name":"DMPAPER_PENV_7","features":[316]},{"name":"DMPAPER_PENV_7_ROTATED","features":[316]},{"name":"DMPAPER_PENV_8","features":[316]},{"name":"DMPAPER_PENV_8_ROTATED","features":[316]},{"name":"DMPAPER_PENV_9","features":[316]},{"name":"DMPAPER_PENV_9_ROTATED","features":[316]},{"name":"DMPAPER_QUARTO","features":[316]},{"name":"DMPAPER_RESERVED_48","features":[316]},{"name":"DMPAPER_RESERVED_49","features":[316]},{"name":"DMPAPER_STATEMENT","features":[316]},{"name":"DMPAPER_TABLOID","features":[316]},{"name":"DMPAPER_TABLOID_EXTRA","features":[316]},{"name":"DMPAPER_USER","features":[316]},{"name":"DMRES_DRAFT","features":[316]},{"name":"DMRES_HIGH","features":[316]},{"name":"DMRES_LOW","features":[316]},{"name":"DMRES_MEDIUM","features":[316]},{"name":"DMTT_BITMAP","features":[316]},{"name":"DMTT_DOWNLOAD","features":[316]},{"name":"DMTT_DOWNLOAD_OUTLINE","features":[316]},{"name":"DMTT_SUBDEV","features":[316]},{"name":"DM_BITSPERPEL","features":[316]},{"name":"DM_COLLATE","features":[316]},{"name":"DM_COLOR","features":[316]},{"name":"DM_COPIES","features":[316]},{"name":"DM_COPY","features":[316]},{"name":"DM_DEFAULTSOURCE","features":[316]},{"name":"DM_DISPLAYFIXEDOUTPUT","features":[316]},{"name":"DM_DISPLAYFLAGS","features":[316]},{"name":"DM_DISPLAYFREQUENCY","features":[316]},{"name":"DM_DISPLAYORIENTATION","features":[316]},{"name":"DM_DITHERTYPE","features":[316]},{"name":"DM_DUPLEX","features":[316]},{"name":"DM_FORMNAME","features":[316]},{"name":"DM_ICMINTENT","features":[316]},{"name":"DM_ICMMETHOD","features":[316]},{"name":"DM_INTERLACED","features":[316]},{"name":"DM_IN_BUFFER","features":[316]},{"name":"DM_IN_PROMPT","features":[316]},{"name":"DM_LOGPIXELS","features":[316]},{"name":"DM_MEDIATYPE","features":[316]},{"name":"DM_MODIFY","features":[316]},{"name":"DM_NUP","features":[316]},{"name":"DM_ORIENTATION","features":[316]},{"name":"DM_OUT_BUFFER","features":[316]},{"name":"DM_OUT_DEFAULT","features":[316]},{"name":"DM_PANNINGHEIGHT","features":[316]},{"name":"DM_PANNINGWIDTH","features":[316]},{"name":"DM_PAPERLENGTH","features":[316]},{"name":"DM_PAPERSIZE","features":[316]},{"name":"DM_PAPERWIDTH","features":[316]},{"name":"DM_PELSHEIGHT","features":[316]},{"name":"DM_PELSWIDTH","features":[316]},{"name":"DM_POSITION","features":[316]},{"name":"DM_PRINTQUALITY","features":[316]},{"name":"DM_PROMPT","features":[316]},{"name":"DM_SCALE","features":[316]},{"name":"DM_SPECVERSION","features":[316]},{"name":"DM_TTOPTION","features":[316]},{"name":"DM_UPDATE","features":[316]},{"name":"DM_YRESOLUTION","features":[316]},{"name":"DOWNLOADFACE","features":[316]},{"name":"DOWNLOADHEADER","features":[316]},{"name":"DPtoLP","features":[305,316]},{"name":"DRAFTMODE","features":[316]},{"name":"DRAFT_QUALITY","features":[316]},{"name":"DRAWEDGE_FLAGS","features":[316]},{"name":"DRAWPATTERNRECT","features":[316]},{"name":"DRAWSTATEPROC","features":[305,316]},{"name":"DRAWSTATE_FLAGS","features":[316]},{"name":"DRAWTEXTPARAMS","features":[316]},{"name":"DRAW_CAPTION_FLAGS","features":[316]},{"name":"DRAW_EDGE_FLAGS","features":[316]},{"name":"DRAW_TEXT_FORMAT","features":[316]},{"name":"DRIVERVERSION","features":[316]},{"name":"DSS_DISABLED","features":[316]},{"name":"DSS_HIDEPREFIX","features":[316]},{"name":"DSS_MONO","features":[316]},{"name":"DSS_NORMAL","features":[316]},{"name":"DSS_PREFIXONLY","features":[316]},{"name":"DSS_RIGHT","features":[316]},{"name":"DSS_UNION","features":[316]},{"name":"DSTINVERT","features":[316]},{"name":"DST_BITMAP","features":[316]},{"name":"DST_COMPLEX","features":[316]},{"name":"DST_ICON","features":[316]},{"name":"DST_PREFIXTEXT","features":[316]},{"name":"DST_TEXT","features":[316]},{"name":"DT_BOTTOM","features":[316]},{"name":"DT_CALCRECT","features":[316]},{"name":"DT_CENTER","features":[316]},{"name":"DT_CHARSTREAM","features":[316]},{"name":"DT_DISPFILE","features":[316]},{"name":"DT_EDITCONTROL","features":[316]},{"name":"DT_END_ELLIPSIS","features":[316]},{"name":"DT_EXPANDTABS","features":[316]},{"name":"DT_EXTERNALLEADING","features":[316]},{"name":"DT_HIDEPREFIX","features":[316]},{"name":"DT_INTERNAL","features":[316]},{"name":"DT_LEFT","features":[316]},{"name":"DT_METAFILE","features":[316]},{"name":"DT_MODIFYSTRING","features":[316]},{"name":"DT_NOCLIP","features":[316]},{"name":"DT_NOFULLWIDTHCHARBREAK","features":[316]},{"name":"DT_NOPREFIX","features":[316]},{"name":"DT_PATH_ELLIPSIS","features":[316]},{"name":"DT_PLOTTER","features":[316]},{"name":"DT_PREFIXONLY","features":[316]},{"name":"DT_RASCAMERA","features":[316]},{"name":"DT_RASDISPLAY","features":[316]},{"name":"DT_RASPRINTER","features":[316]},{"name":"DT_RIGHT","features":[316]},{"name":"DT_RTLREADING","features":[316]},{"name":"DT_SINGLELINE","features":[316]},{"name":"DT_TABSTOP","features":[316]},{"name":"DT_TOP","features":[316]},{"name":"DT_VCENTER","features":[316]},{"name":"DT_WORDBREAK","features":[316]},{"name":"DT_WORD_ELLIPSIS","features":[316]},{"name":"DeleteDC","features":[305,316]},{"name":"DeleteEnhMetaFile","features":[305,316]},{"name":"DeleteMetaFile","features":[305,316]},{"name":"DeleteObject","features":[305,316]},{"name":"DrawAnimatedRects","features":[305,316]},{"name":"DrawCaption","features":[305,316]},{"name":"DrawEdge","features":[305,316]},{"name":"DrawEscape","features":[316]},{"name":"DrawFocusRect","features":[305,316]},{"name":"DrawFrameControl","features":[305,316]},{"name":"DrawStateA","features":[305,316]},{"name":"DrawStateW","features":[305,316]},{"name":"DrawTextA","features":[305,316]},{"name":"DrawTextExA","features":[305,316]},{"name":"DrawTextExW","features":[305,316]},{"name":"DrawTextW","features":[305,316]},{"name":"EASTEUROPE_CHARSET","features":[316]},{"name":"EDGE_BUMP","features":[316]},{"name":"EDGE_ETCHED","features":[316]},{"name":"EDGE_RAISED","features":[316]},{"name":"EDGE_SUNKEN","features":[316]},{"name":"EDS_RAWMODE","features":[316]},{"name":"EDS_ROTATEDMODE","features":[316]},{"name":"ELF_CULTURE_LATIN","features":[316]},{"name":"ELF_VENDOR_SIZE","features":[316]},{"name":"ELF_VERSION","features":[316]},{"name":"EMBEDDED_FONT_PRIV_STATUS","features":[316]},{"name":"EMBED_EDITABLE","features":[316]},{"name":"EMBED_FONT_CHARSET","features":[316]},{"name":"EMBED_INSTALLABLE","features":[316]},{"name":"EMBED_NOEMBEDDING","features":[316]},{"name":"EMBED_PREVIEWPRINT","features":[316]},{"name":"EMR","features":[316]},{"name":"EMRALPHABLEND","features":[305,316]},{"name":"EMRANGLEARC","features":[305,316]},{"name":"EMRARC","features":[305,316]},{"name":"EMRBITBLT","features":[305,316]},{"name":"EMRCOLORCORRECTPALETTE","features":[316]},{"name":"EMRCOLORMATCHTOTARGET","features":[316]},{"name":"EMRCREATEBRUSHINDIRECT","features":[305,316]},{"name":"EMRCREATEDIBPATTERNBRUSHPT","features":[316]},{"name":"EMRCREATEMONOBRUSH","features":[316]},{"name":"EMRCREATEPALETTE","features":[316]},{"name":"EMRCREATEPEN","features":[305,316]},{"name":"EMRELLIPSE","features":[305,316]},{"name":"EMREOF","features":[316]},{"name":"EMREXCLUDECLIPRECT","features":[305,316]},{"name":"EMREXTCREATEFONTINDIRECTW","features":[316]},{"name":"EMREXTCREATEPEN","features":[305,316]},{"name":"EMREXTESCAPE","features":[316]},{"name":"EMREXTFLOODFILL","features":[305,316]},{"name":"EMREXTSELECTCLIPRGN","features":[316]},{"name":"EMREXTTEXTOUTA","features":[305,316]},{"name":"EMRFILLPATH","features":[305,316]},{"name":"EMRFILLRGN","features":[305,316]},{"name":"EMRFORMAT","features":[316]},{"name":"EMRFRAMERGN","features":[305,316]},{"name":"EMRGDICOMMENT","features":[316]},{"name":"EMRGLSBOUNDEDRECORD","features":[305,316]},{"name":"EMRGLSRECORD","features":[316]},{"name":"EMRGRADIENTFILL","features":[305,316]},{"name":"EMRINVERTRGN","features":[305,316]},{"name":"EMRLINETO","features":[305,316]},{"name":"EMRMASKBLT","features":[305,316]},{"name":"EMRMODIFYWORLDTRANSFORM","features":[316]},{"name":"EMRNAMEDESCAPE","features":[316]},{"name":"EMROFFSETCLIPRGN","features":[305,316]},{"name":"EMRPLGBLT","features":[305,316]},{"name":"EMRPOLYDRAW","features":[305,316]},{"name":"EMRPOLYDRAW16","features":[305,316]},{"name":"EMRPOLYLINE","features":[305,316]},{"name":"EMRPOLYLINE16","features":[305,316]},{"name":"EMRPOLYPOLYLINE","features":[305,316]},{"name":"EMRPOLYPOLYLINE16","features":[305,316]},{"name":"EMRPOLYTEXTOUTA","features":[305,316]},{"name":"EMRRESIZEPALETTE","features":[316]},{"name":"EMRRESTOREDC","features":[316]},{"name":"EMRROUNDRECT","features":[305,316]},{"name":"EMRSCALEVIEWPORTEXTEX","features":[316]},{"name":"EMRSELECTCLIPPATH","features":[316]},{"name":"EMRSELECTOBJECT","features":[316]},{"name":"EMRSELECTPALETTE","features":[316]},{"name":"EMRSETARCDIRECTION","features":[316]},{"name":"EMRSETCOLORADJUSTMENT","features":[316]},{"name":"EMRSETCOLORSPACE","features":[316]},{"name":"EMRSETDIBITSTODEVICE","features":[305,316]},{"name":"EMRSETICMPROFILE","features":[316]},{"name":"EMRSETMAPPERFLAGS","features":[316]},{"name":"EMRSETMITERLIMIT","features":[316]},{"name":"EMRSETPALETTEENTRIES","features":[316]},{"name":"EMRSETPIXELV","features":[305,316]},{"name":"EMRSETTEXTCOLOR","features":[305,316]},{"name":"EMRSETVIEWPORTEXTEX","features":[305,316]},{"name":"EMRSETVIEWPORTORGEX","features":[305,316]},{"name":"EMRSETWORLDTRANSFORM","features":[316]},{"name":"EMRSTRETCHBLT","features":[305,316]},{"name":"EMRSTRETCHDIBITS","features":[305,316]},{"name":"EMRTEXT","features":[305,316]},{"name":"EMRTRANSPARENTBLT","features":[305,316]},{"name":"EMR_ABORTPATH","features":[316]},{"name":"EMR_ALPHABLEND","features":[316]},{"name":"EMR_ANGLEARC","features":[316]},{"name":"EMR_ARC","features":[316]},{"name":"EMR_ARCTO","features":[316]},{"name":"EMR_BEGINPATH","features":[316]},{"name":"EMR_BITBLT","features":[316]},{"name":"EMR_CHORD","features":[316]},{"name":"EMR_CLOSEFIGURE","features":[316]},{"name":"EMR_COLORCORRECTPALETTE","features":[316]},{"name":"EMR_COLORMATCHTOTARGETW","features":[316]},{"name":"EMR_CREATEBRUSHINDIRECT","features":[316]},{"name":"EMR_CREATECOLORSPACE","features":[316]},{"name":"EMR_CREATECOLORSPACEW","features":[316]},{"name":"EMR_CREATEDIBPATTERNBRUSHPT","features":[316]},{"name":"EMR_CREATEMONOBRUSH","features":[316]},{"name":"EMR_CREATEPALETTE","features":[316]},{"name":"EMR_CREATEPEN","features":[316]},{"name":"EMR_DELETECOLORSPACE","features":[316]},{"name":"EMR_DELETEOBJECT","features":[316]},{"name":"EMR_ELLIPSE","features":[316]},{"name":"EMR_ENDPATH","features":[316]},{"name":"EMR_EOF","features":[316]},{"name":"EMR_EXCLUDECLIPRECT","features":[316]},{"name":"EMR_EXTCREATEFONTINDIRECTW","features":[316]},{"name":"EMR_EXTCREATEPEN","features":[316]},{"name":"EMR_EXTFLOODFILL","features":[316]},{"name":"EMR_EXTSELECTCLIPRGN","features":[316]},{"name":"EMR_EXTTEXTOUTA","features":[316]},{"name":"EMR_EXTTEXTOUTW","features":[316]},{"name":"EMR_FILLPATH","features":[316]},{"name":"EMR_FILLRGN","features":[316]},{"name":"EMR_FLATTENPATH","features":[316]},{"name":"EMR_FRAMERGN","features":[316]},{"name":"EMR_GDICOMMENT","features":[316]},{"name":"EMR_GLSBOUNDEDRECORD","features":[316]},{"name":"EMR_GLSRECORD","features":[316]},{"name":"EMR_GRADIENTFILL","features":[316]},{"name":"EMR_HEADER","features":[316]},{"name":"EMR_INTERSECTCLIPRECT","features":[316]},{"name":"EMR_INVERTRGN","features":[316]},{"name":"EMR_LINETO","features":[316]},{"name":"EMR_MASKBLT","features":[316]},{"name":"EMR_MAX","features":[316]},{"name":"EMR_MIN","features":[316]},{"name":"EMR_MODIFYWORLDTRANSFORM","features":[316]},{"name":"EMR_MOVETOEX","features":[316]},{"name":"EMR_OFFSETCLIPRGN","features":[316]},{"name":"EMR_PAINTRGN","features":[316]},{"name":"EMR_PIE","features":[316]},{"name":"EMR_PIXELFORMAT","features":[316]},{"name":"EMR_PLGBLT","features":[316]},{"name":"EMR_POLYBEZIER","features":[316]},{"name":"EMR_POLYBEZIER16","features":[316]},{"name":"EMR_POLYBEZIERTO","features":[316]},{"name":"EMR_POLYBEZIERTO16","features":[316]},{"name":"EMR_POLYDRAW","features":[316]},{"name":"EMR_POLYDRAW16","features":[316]},{"name":"EMR_POLYGON","features":[316]},{"name":"EMR_POLYGON16","features":[316]},{"name":"EMR_POLYLINE","features":[316]},{"name":"EMR_POLYLINE16","features":[316]},{"name":"EMR_POLYLINETO","features":[316]},{"name":"EMR_POLYLINETO16","features":[316]},{"name":"EMR_POLYPOLYGON","features":[316]},{"name":"EMR_POLYPOLYGON16","features":[316]},{"name":"EMR_POLYPOLYLINE","features":[316]},{"name":"EMR_POLYPOLYLINE16","features":[316]},{"name":"EMR_POLYTEXTOUTA","features":[316]},{"name":"EMR_POLYTEXTOUTW","features":[316]},{"name":"EMR_REALIZEPALETTE","features":[316]},{"name":"EMR_RECTANGLE","features":[316]},{"name":"EMR_RESERVED_105","features":[316]},{"name":"EMR_RESERVED_106","features":[316]},{"name":"EMR_RESERVED_107","features":[316]},{"name":"EMR_RESERVED_108","features":[316]},{"name":"EMR_RESERVED_109","features":[316]},{"name":"EMR_RESERVED_110","features":[316]},{"name":"EMR_RESERVED_117","features":[316]},{"name":"EMR_RESERVED_119","features":[316]},{"name":"EMR_RESERVED_120","features":[316]},{"name":"EMR_RESIZEPALETTE","features":[316]},{"name":"EMR_RESTOREDC","features":[316]},{"name":"EMR_ROUNDRECT","features":[316]},{"name":"EMR_SAVEDC","features":[316]},{"name":"EMR_SCALEVIEWPORTEXTEX","features":[316]},{"name":"EMR_SCALEWINDOWEXTEX","features":[316]},{"name":"EMR_SELECTCLIPPATH","features":[316]},{"name":"EMR_SELECTOBJECT","features":[316]},{"name":"EMR_SELECTPALETTE","features":[316]},{"name":"EMR_SETARCDIRECTION","features":[316]},{"name":"EMR_SETBKCOLOR","features":[316]},{"name":"EMR_SETBKMODE","features":[316]},{"name":"EMR_SETBRUSHORGEX","features":[316]},{"name":"EMR_SETCOLORADJUSTMENT","features":[316]},{"name":"EMR_SETCOLORSPACE","features":[316]},{"name":"EMR_SETDIBITSTODEVICE","features":[316]},{"name":"EMR_SETICMMODE","features":[316]},{"name":"EMR_SETICMPROFILEA","features":[316]},{"name":"EMR_SETICMPROFILEW","features":[316]},{"name":"EMR_SETLAYOUT","features":[316]},{"name":"EMR_SETMAPMODE","features":[316]},{"name":"EMR_SETMAPPERFLAGS","features":[316]},{"name":"EMR_SETMETARGN","features":[316]},{"name":"EMR_SETMITERLIMIT","features":[316]},{"name":"EMR_SETPALETTEENTRIES","features":[316]},{"name":"EMR_SETPIXELV","features":[316]},{"name":"EMR_SETPOLYFILLMODE","features":[316]},{"name":"EMR_SETROP2","features":[316]},{"name":"EMR_SETSTRETCHBLTMODE","features":[316]},{"name":"EMR_SETTEXTALIGN","features":[316]},{"name":"EMR_SETTEXTCOLOR","features":[316]},{"name":"EMR_SETVIEWPORTEXTEX","features":[316]},{"name":"EMR_SETVIEWPORTORGEX","features":[316]},{"name":"EMR_SETWINDOWEXTEX","features":[316]},{"name":"EMR_SETWINDOWORGEX","features":[316]},{"name":"EMR_SETWORLDTRANSFORM","features":[316]},{"name":"EMR_STRETCHBLT","features":[316]},{"name":"EMR_STRETCHDIBITS","features":[316]},{"name":"EMR_STROKEANDFILLPATH","features":[316]},{"name":"EMR_STROKEPATH","features":[316]},{"name":"EMR_TRANSPARENTBLT","features":[316]},{"name":"EMR_WIDENPATH","features":[316]},{"name":"ENABLEDUPLEX","features":[316]},{"name":"ENABLEPAIRKERNING","features":[316]},{"name":"ENABLERELATIVEWIDTHS","features":[316]},{"name":"ENCAPSULATED_POSTSCRIPT","features":[316]},{"name":"ENDDOC","features":[316]},{"name":"END_PATH","features":[316]},{"name":"ENHANCED_METAFILE_RECORD_TYPE","features":[316]},{"name":"ENHMETAHEADER","features":[305,316]},{"name":"ENHMETARECORD","features":[316]},{"name":"ENHMETA_SIGNATURE","features":[316]},{"name":"ENHMETA_STOCK_OBJECT","features":[316]},{"name":"ENHMFENUMPROC","features":[305,316]},{"name":"ENUMLOGFONTA","features":[316]},{"name":"ENUMLOGFONTEXA","features":[316]},{"name":"ENUMLOGFONTEXDVA","features":[316]},{"name":"ENUMLOGFONTEXDVW","features":[316]},{"name":"ENUMLOGFONTEXW","features":[316]},{"name":"ENUMLOGFONTW","features":[316]},{"name":"ENUMPAPERBINS","features":[316]},{"name":"ENUMPAPERMETRICS","features":[316]},{"name":"ENUM_CURRENT_SETTINGS","features":[316]},{"name":"ENUM_DISPLAY_SETTINGS_FLAGS","features":[316]},{"name":"ENUM_DISPLAY_SETTINGS_MODE","features":[316]},{"name":"ENUM_REGISTRY_SETTINGS","features":[316]},{"name":"EPSPRINTING","features":[316]},{"name":"EPS_SIGNATURE","features":[316]},{"name":"ERROR","features":[316]},{"name":"ERR_FORMAT","features":[316]},{"name":"ERR_GENERIC","features":[316]},{"name":"ERR_INVALID_BASE","features":[316]},{"name":"ERR_INVALID_CMAP","features":[316]},{"name":"ERR_INVALID_DELTA_FORMAT","features":[316]},{"name":"ERR_INVALID_EBLC","features":[316]},{"name":"ERR_INVALID_GDEF","features":[316]},{"name":"ERR_INVALID_GLYF","features":[316]},{"name":"ERR_INVALID_GPOS","features":[316]},{"name":"ERR_INVALID_GSUB","features":[316]},{"name":"ERR_INVALID_HDMX","features":[316]},{"name":"ERR_INVALID_HEAD","features":[316]},{"name":"ERR_INVALID_HHEA","features":[316]},{"name":"ERR_INVALID_HHEA_OR_VHEA","features":[316]},{"name":"ERR_INVALID_HMTX","features":[316]},{"name":"ERR_INVALID_HMTX_OR_VMTX","features":[316]},{"name":"ERR_INVALID_JSTF","features":[316]},{"name":"ERR_INVALID_LOCA","features":[316]},{"name":"ERR_INVALID_LTSH","features":[316]},{"name":"ERR_INVALID_MAXP","features":[316]},{"name":"ERR_INVALID_MERGE_CHECKSUMS","features":[316]},{"name":"ERR_INVALID_MERGE_FORMATS","features":[316]},{"name":"ERR_INVALID_MERGE_NUMGLYPHS","features":[316]},{"name":"ERR_INVALID_NAME","features":[316]},{"name":"ERR_INVALID_OS2","features":[316]},{"name":"ERR_INVALID_POST","features":[316]},{"name":"ERR_INVALID_TTC_INDEX","features":[316]},{"name":"ERR_INVALID_TTO","features":[316]},{"name":"ERR_INVALID_VDMX","features":[316]},{"name":"ERR_INVALID_VHEA","features":[316]},{"name":"ERR_INVALID_VMTX","features":[316]},{"name":"ERR_MEM","features":[316]},{"name":"ERR_MISSING_CMAP","features":[316]},{"name":"ERR_MISSING_EBDT","features":[316]},{"name":"ERR_MISSING_GLYF","features":[316]},{"name":"ERR_MISSING_HEAD","features":[316]},{"name":"ERR_MISSING_HHEA","features":[316]},{"name":"ERR_MISSING_HHEA_OR_VHEA","features":[316]},{"name":"ERR_MISSING_HMTX","features":[316]},{"name":"ERR_MISSING_HMTX_OR_VMTX","features":[316]},{"name":"ERR_MISSING_LOCA","features":[316]},{"name":"ERR_MISSING_MAXP","features":[316]},{"name":"ERR_MISSING_NAME","features":[316]},{"name":"ERR_MISSING_OS2","features":[316]},{"name":"ERR_MISSING_POST","features":[316]},{"name":"ERR_MISSING_VHEA","features":[316]},{"name":"ERR_MISSING_VMTX","features":[316]},{"name":"ERR_NOT_TTC","features":[316]},{"name":"ERR_NO_GLYPHS","features":[316]},{"name":"ERR_PARAMETER0","features":[316]},{"name":"ERR_PARAMETER1","features":[316]},{"name":"ERR_PARAMETER10","features":[316]},{"name":"ERR_PARAMETER11","features":[316]},{"name":"ERR_PARAMETER12","features":[316]},{"name":"ERR_PARAMETER13","features":[316]},{"name":"ERR_PARAMETER14","features":[316]},{"name":"ERR_PARAMETER15","features":[316]},{"name":"ERR_PARAMETER16","features":[316]},{"name":"ERR_PARAMETER2","features":[316]},{"name":"ERR_PARAMETER3","features":[316]},{"name":"ERR_PARAMETER4","features":[316]},{"name":"ERR_PARAMETER5","features":[316]},{"name":"ERR_PARAMETER6","features":[316]},{"name":"ERR_PARAMETER7","features":[316]},{"name":"ERR_PARAMETER8","features":[316]},{"name":"ERR_PARAMETER9","features":[316]},{"name":"ERR_READCONTROL","features":[316]},{"name":"ERR_READOUTOFBOUNDS","features":[316]},{"name":"ERR_VERSION","features":[316]},{"name":"ERR_WOULD_GROW","features":[316]},{"name":"ERR_WRITECONTROL","features":[316]},{"name":"ERR_WRITEOUTOFBOUNDS","features":[316]},{"name":"ETO_CLIPPED","features":[316]},{"name":"ETO_GLYPH_INDEX","features":[316]},{"name":"ETO_IGNORELANGUAGE","features":[316]},{"name":"ETO_NUMERICSLATIN","features":[316]},{"name":"ETO_NUMERICSLOCAL","features":[316]},{"name":"ETO_OPAQUE","features":[316]},{"name":"ETO_OPTIONS","features":[316]},{"name":"ETO_PDY","features":[316]},{"name":"ETO_REVERSE_INDEX_MAP","features":[316]},{"name":"ETO_RTLREADING","features":[316]},{"name":"EXTLOGFONTA","features":[316]},{"name":"EXTLOGFONTW","features":[316]},{"name":"EXTLOGPEN","features":[305,316]},{"name":"EXTLOGPEN32","features":[305,316]},{"name":"EXTTEXTOUT","features":[316]},{"name":"EXT_DEVICE_CAPS","features":[316]},{"name":"EXT_FLOOD_FILL_TYPE","features":[316]},{"name":"E_ADDFONTFAILED","features":[316]},{"name":"E_API_NOTIMPL","features":[316]},{"name":"E_CHARCODECOUNTINVALID","features":[316]},{"name":"E_CHARCODESETINVALID","features":[316]},{"name":"E_CHARSETINVALID","features":[316]},{"name":"E_COULDNTCREATETEMPFILE","features":[316]},{"name":"E_DEVICETRUETYPEFONT","features":[316]},{"name":"E_ERRORACCESSINGEXCLUDELIST","features":[316]},{"name":"E_ERRORACCESSINGFACENAME","features":[316]},{"name":"E_ERRORACCESSINGFONTDATA","features":[316]},{"name":"E_ERRORCOMPRESSINGFONTDATA","features":[316]},{"name":"E_ERRORCONVERTINGCHARS","features":[316]},{"name":"E_ERRORCREATINGFONTFILE","features":[316]},{"name":"E_ERRORDECOMPRESSINGFONTDATA","features":[316]},{"name":"E_ERROREXPANDINGFONTDATA","features":[316]},{"name":"E_ERRORGETTINGDC","features":[316]},{"name":"E_ERRORREADINGFONTDATA","features":[316]},{"name":"E_ERRORUNICODECONVERSION","features":[316]},{"name":"E_EXCEPTION","features":[316]},{"name":"E_EXCEPTIONINCOMPRESSION","features":[316]},{"name":"E_EXCEPTIONINDECOMPRESSION","features":[316]},{"name":"E_FACENAMEINVALID","features":[316]},{"name":"E_FILE_NOT_FOUND","features":[316]},{"name":"E_FLAGSINVALID","features":[316]},{"name":"E_FONTALREADYEXISTS","features":[316]},{"name":"E_FONTDATAINVALID","features":[316]},{"name":"E_FONTFAMILYNAMENOTINFULL","features":[316]},{"name":"E_FONTFILECREATEFAILED","features":[316]},{"name":"E_FONTFILENOTFOUND","features":[316]},{"name":"E_FONTINSTALLFAILED","features":[316]},{"name":"E_FONTNAMEALREADYEXISTS","features":[316]},{"name":"E_FONTNOTEMBEDDABLE","features":[316]},{"name":"E_FONTREFERENCEINVALID","features":[316]},{"name":"E_FONTVARIATIONSIMULATED","features":[316]},{"name":"E_HDCINVALID","features":[316]},{"name":"E_INPUTPARAMINVALID","features":[316]},{"name":"E_NAMECHANGEFAILED","features":[316]},{"name":"E_NOFREEMEMORY","features":[316]},{"name":"E_NONE","features":[316]},{"name":"E_NOOS2","features":[316]},{"name":"E_NOTATRUETYPEFONT","features":[316]},{"name":"E_PBENABLEDINVALID","features":[316]},{"name":"E_PERMISSIONSINVALID","features":[316]},{"name":"E_PRIVSINVALID","features":[316]},{"name":"E_PRIVSTATUSINVALID","features":[316]},{"name":"E_READFROMSTREAMFAILED","features":[316]},{"name":"E_RESERVEDPARAMNOTNULL","features":[316]},{"name":"E_RESOURCEFILECREATEFAILED","features":[316]},{"name":"E_SAVETOSTREAMFAILED","features":[316]},{"name":"E_STATUSINVALID","features":[316]},{"name":"E_STREAMINVALID","features":[316]},{"name":"E_SUBSETTINGEXCEPTION","features":[316]},{"name":"E_SUBSETTINGFAILED","features":[316]},{"name":"E_SUBSTRING_TEST_FAIL","features":[316]},{"name":"E_T2NOFREEMEMORY","features":[316]},{"name":"E_TTC_INDEX_OUT_OF_RANGE","features":[316]},{"name":"E_WINDOWSAPI","features":[316]},{"name":"Ellipse","features":[305,316]},{"name":"EndPaint","features":[305,316]},{"name":"EndPath","features":[305,316]},{"name":"EnumDisplayDevicesA","features":[305,316]},{"name":"EnumDisplayDevicesW","features":[305,316]},{"name":"EnumDisplayMonitors","features":[305,316]},{"name":"EnumDisplaySettingsA","features":[305,316]},{"name":"EnumDisplaySettingsExA","features":[305,316]},{"name":"EnumDisplaySettingsExW","features":[305,316]},{"name":"EnumDisplaySettingsW","features":[305,316]},{"name":"EnumEnhMetaFile","features":[305,316]},{"name":"EnumFontFamiliesA","features":[305,316]},{"name":"EnumFontFamiliesExA","features":[305,316]},{"name":"EnumFontFamiliesExW","features":[305,316]},{"name":"EnumFontFamiliesW","features":[305,316]},{"name":"EnumFontsA","features":[305,316]},{"name":"EnumFontsW","features":[305,316]},{"name":"EnumMetaFile","features":[305,316]},{"name":"EnumObjects","features":[305,316]},{"name":"EqualRect","features":[305,316]},{"name":"EqualRgn","features":[305,316]},{"name":"ExcludeClipRect","features":[316]},{"name":"ExcludeUpdateRgn","features":[305,316]},{"name":"ExtCreatePen","features":[305,316]},{"name":"ExtCreateRegion","features":[305,316]},{"name":"ExtFloodFill","features":[305,316]},{"name":"ExtSelectClipRgn","features":[316]},{"name":"ExtTextOutA","features":[305,316]},{"name":"ExtTextOutW","features":[305,316]},{"name":"FEATURESETTING_CUSTPAPER","features":[316]},{"name":"FEATURESETTING_MIRROR","features":[316]},{"name":"FEATURESETTING_NEGATIVE","features":[316]},{"name":"FEATURESETTING_NUP","features":[316]},{"name":"FEATURESETTING_OUTPUT","features":[316]},{"name":"FEATURESETTING_PRIVATE_BEGIN","features":[316]},{"name":"FEATURESETTING_PRIVATE_END","features":[316]},{"name":"FEATURESETTING_PROTOCOL","features":[316]},{"name":"FEATURESETTING_PSLEVEL","features":[316]},{"name":"FF_DECORATIVE","features":[316]},{"name":"FF_DONTCARE","features":[316]},{"name":"FF_MODERN","features":[316]},{"name":"FF_ROMAN","features":[316]},{"name":"FF_SCRIPT","features":[316]},{"name":"FF_SWISS","features":[316]},{"name":"FIXED","features":[316]},{"name":"FIXED_PITCH","features":[316]},{"name":"FLI_GLYPHS","features":[316]},{"name":"FLI_MASK","features":[316]},{"name":"FLOODFILLBORDER","features":[316]},{"name":"FLOODFILLSURFACE","features":[316]},{"name":"FLUSHOUTPUT","features":[316]},{"name":"FONTENUMPROCA","features":[305,316]},{"name":"FONTENUMPROCW","features":[305,316]},{"name":"FONTMAPPER_MAX","features":[316]},{"name":"FONT_CHARSET","features":[316]},{"name":"FONT_CLIP_PRECISION","features":[316]},{"name":"FONT_FAMILY","features":[316]},{"name":"FONT_LICENSE_PRIVS","features":[316]},{"name":"FONT_OUTPUT_PRECISION","features":[316]},{"name":"FONT_PITCH","features":[316]},{"name":"FONT_QUALITY","features":[316]},{"name":"FONT_RESOURCE_CHARACTERISTICS","features":[316]},{"name":"FONT_WEIGHT","features":[316]},{"name":"FR_NOT_ENUM","features":[316]},{"name":"FR_PRIVATE","features":[316]},{"name":"FS_ARABIC","features":[316]},{"name":"FS_BALTIC","features":[316]},{"name":"FS_CHINESESIMP","features":[316]},{"name":"FS_CHINESETRAD","features":[316]},{"name":"FS_CYRILLIC","features":[316]},{"name":"FS_GREEK","features":[316]},{"name":"FS_HEBREW","features":[316]},{"name":"FS_JISJAPAN","features":[316]},{"name":"FS_JOHAB","features":[316]},{"name":"FS_LATIN1","features":[316]},{"name":"FS_LATIN2","features":[316]},{"name":"FS_SYMBOL","features":[316]},{"name":"FS_THAI","features":[316]},{"name":"FS_TURKISH","features":[316]},{"name":"FS_VIETNAMESE","features":[316]},{"name":"FS_WANSUNG","features":[316]},{"name":"FW_BLACK","features":[316]},{"name":"FW_BOLD","features":[316]},{"name":"FW_DEMIBOLD","features":[316]},{"name":"FW_DONTCARE","features":[316]},{"name":"FW_EXTRABOLD","features":[316]},{"name":"FW_EXTRALIGHT","features":[316]},{"name":"FW_HEAVY","features":[316]},{"name":"FW_LIGHT","features":[316]},{"name":"FW_MEDIUM","features":[316]},{"name":"FW_NORMAL","features":[316]},{"name":"FW_REGULAR","features":[316]},{"name":"FW_SEMIBOLD","features":[316]},{"name":"FW_THIN","features":[316]},{"name":"FW_ULTRABOLD","features":[316]},{"name":"FW_ULTRALIGHT","features":[316]},{"name":"FillPath","features":[305,316]},{"name":"FillRect","features":[305,316]},{"name":"FillRgn","features":[305,316]},{"name":"FixBrushOrgEx","features":[305,316]},{"name":"FlattenPath","features":[305,316]},{"name":"FloodFill","features":[305,316]},{"name":"FrameRect","features":[305,316]},{"name":"FrameRgn","features":[305,316]},{"name":"GB2312_CHARSET","features":[316]},{"name":"GCPCLASS_ARABIC","features":[316]},{"name":"GCPCLASS_HEBREW","features":[316]},{"name":"GCPCLASS_LATIN","features":[316]},{"name":"GCPCLASS_LATINNUMBER","features":[316]},{"name":"GCPCLASS_LATINNUMERICSEPARATOR","features":[316]},{"name":"GCPCLASS_LATINNUMERICTERMINATOR","features":[316]},{"name":"GCPCLASS_LOCALNUMBER","features":[316]},{"name":"GCPCLASS_NEUTRAL","features":[316]},{"name":"GCPCLASS_NUMERICSEPARATOR","features":[316]},{"name":"GCPCLASS_POSTBOUNDLTR","features":[316]},{"name":"GCPCLASS_POSTBOUNDRTL","features":[316]},{"name":"GCPCLASS_PREBOUNDLTR","features":[316]},{"name":"GCPCLASS_PREBOUNDRTL","features":[316]},{"name":"GCPGLYPH_LINKAFTER","features":[316]},{"name":"GCPGLYPH_LINKBEFORE","features":[316]},{"name":"GCP_CLASSIN","features":[316]},{"name":"GCP_DBCS","features":[316]},{"name":"GCP_DIACRITIC","features":[316]},{"name":"GCP_DISPLAYZWG","features":[316]},{"name":"GCP_ERROR","features":[316]},{"name":"GCP_GLYPHSHAPE","features":[316]},{"name":"GCP_JUSTIFY","features":[316]},{"name":"GCP_JUSTIFYIN","features":[316]},{"name":"GCP_KASHIDA","features":[316]},{"name":"GCP_LIGATE","features":[316]},{"name":"GCP_MAXEXTENT","features":[316]},{"name":"GCP_NEUTRALOVERRIDE","features":[316]},{"name":"GCP_NUMERICOVERRIDE","features":[316]},{"name":"GCP_NUMERICSLATIN","features":[316]},{"name":"GCP_NUMERICSLOCAL","features":[316]},{"name":"GCP_REORDER","features":[316]},{"name":"GCP_RESULTSA","features":[316]},{"name":"GCP_RESULTSW","features":[316]},{"name":"GCP_SYMSWAPOFF","features":[316]},{"name":"GCP_USEKERNING","features":[316]},{"name":"GDICOMMENT_BEGINGROUP","features":[316]},{"name":"GDICOMMENT_ENDGROUP","features":[316]},{"name":"GDICOMMENT_IDENTIFIER","features":[316]},{"name":"GDICOMMENT_MULTIFORMATS","features":[316]},{"name":"GDICOMMENT_UNICODE_END","features":[316]},{"name":"GDICOMMENT_UNICODE_STRING","features":[316]},{"name":"GDICOMMENT_WINDOWS_METAFILE","features":[316]},{"name":"GDIPLUS_TS_QUERYVER","features":[316]},{"name":"GDIPLUS_TS_RECORD","features":[316]},{"name":"GDIREGISTERDDRAWPACKETVERSION","features":[316]},{"name":"GDI_ERROR","features":[316]},{"name":"GDI_REGION_TYPE","features":[316]},{"name":"GETCOLORTABLE","features":[316]},{"name":"GETDEVICEUNITS","features":[316]},{"name":"GETEXTENDEDTEXTMETRICS","features":[316]},{"name":"GETEXTENTTABLE","features":[316]},{"name":"GETFACENAME","features":[316]},{"name":"GETPAIRKERNTABLE","features":[316]},{"name":"GETPENWIDTH","features":[316]},{"name":"GETPHYSPAGESIZE","features":[316]},{"name":"GETPRINTINGOFFSET","features":[316]},{"name":"GETSCALINGFACTOR","features":[316]},{"name":"GETSETPAPERBINS","features":[316]},{"name":"GETSETPAPERMETRICS","features":[316]},{"name":"GETSETPRINTORIENT","features":[316]},{"name":"GETSETSCREENPARAMS","features":[316]},{"name":"GETTECHNOLGY","features":[316]},{"name":"GETTECHNOLOGY","features":[316]},{"name":"GETTRACKKERNTABLE","features":[316]},{"name":"GETVECTORBRUSHSIZE","features":[316]},{"name":"GETVECTORPENSIZE","features":[316]},{"name":"GET_CHARACTER_PLACEMENT_FLAGS","features":[316]},{"name":"GET_DCX_FLAGS","features":[316]},{"name":"GET_DEVICE_CAPS_INDEX","features":[316]},{"name":"GET_GLYPH_OUTLINE_FORMAT","features":[316]},{"name":"GET_PS_FEATURESETTING","features":[316]},{"name":"GET_STOCK_OBJECT_FLAGS","features":[316]},{"name":"GGI_MARK_NONEXISTING_GLYPHS","features":[316]},{"name":"GGO_BEZIER","features":[316]},{"name":"GGO_BITMAP","features":[316]},{"name":"GGO_GLYPH_INDEX","features":[316]},{"name":"GGO_GRAY2_BITMAP","features":[316]},{"name":"GGO_GRAY4_BITMAP","features":[316]},{"name":"GGO_GRAY8_BITMAP","features":[316]},{"name":"GGO_METRICS","features":[316]},{"name":"GGO_NATIVE","features":[316]},{"name":"GGO_UNHINTED","features":[316]},{"name":"GLYPHMETRICS","features":[305,316]},{"name":"GLYPHSET","features":[316]},{"name":"GM_ADVANCED","features":[316]},{"name":"GM_COMPATIBLE","features":[316]},{"name":"GM_LAST","features":[316]},{"name":"GOBJENUMPROC","features":[305,316]},{"name":"GRADIENT_FILL","features":[316]},{"name":"GRADIENT_FILL_OP_FLAG","features":[316]},{"name":"GRADIENT_FILL_RECT_H","features":[316]},{"name":"GRADIENT_FILL_RECT_V","features":[316]},{"name":"GRADIENT_FILL_TRIANGLE","features":[316]},{"name":"GRADIENT_RECT","features":[316]},{"name":"GRADIENT_TRIANGLE","features":[316]},{"name":"GRAPHICS_MODE","features":[316]},{"name":"GRAYSTRINGPROC","features":[305,316]},{"name":"GRAY_BRUSH","features":[316]},{"name":"GREEK_CHARSET","features":[316]},{"name":"GS_8BIT_INDICES","features":[316]},{"name":"GdiAlphaBlend","features":[305,316]},{"name":"GdiComment","features":[305,316]},{"name":"GdiFlush","features":[305,316]},{"name":"GdiGetBatchLimit","features":[316]},{"name":"GdiGradientFill","features":[305,316]},{"name":"GdiSetBatchLimit","features":[316]},{"name":"GdiTransparentBlt","features":[305,316]},{"name":"GetArcDirection","features":[316]},{"name":"GetAspectRatioFilterEx","features":[305,316]},{"name":"GetBitmapBits","features":[316]},{"name":"GetBitmapDimensionEx","features":[305,316]},{"name":"GetBkColor","features":[305,316]},{"name":"GetBkMode","features":[316]},{"name":"GetBoundsRect","features":[305,316]},{"name":"GetBrushOrgEx","features":[305,316]},{"name":"GetCharABCWidthsA","features":[305,316]},{"name":"GetCharABCWidthsFloatA","features":[305,316]},{"name":"GetCharABCWidthsFloatW","features":[305,316]},{"name":"GetCharABCWidthsI","features":[305,316]},{"name":"GetCharABCWidthsW","features":[305,316]},{"name":"GetCharWidth32A","features":[305,316]},{"name":"GetCharWidth32W","features":[305,316]},{"name":"GetCharWidthA","features":[305,316]},{"name":"GetCharWidthFloatA","features":[305,316]},{"name":"GetCharWidthFloatW","features":[305,316]},{"name":"GetCharWidthI","features":[305,316]},{"name":"GetCharWidthW","features":[305,316]},{"name":"GetCharacterPlacementA","features":[316]},{"name":"GetCharacterPlacementW","features":[316]},{"name":"GetClipBox","features":[305,316]},{"name":"GetClipRgn","features":[316]},{"name":"GetColorAdjustment","features":[305,316]},{"name":"GetCurrentObject","features":[316]},{"name":"GetCurrentPositionEx","features":[305,316]},{"name":"GetDC","features":[305,316]},{"name":"GetDCBrushColor","features":[305,316]},{"name":"GetDCEx","features":[305,316]},{"name":"GetDCOrgEx","features":[305,316]},{"name":"GetDCPenColor","features":[305,316]},{"name":"GetDIBColorTable","features":[316]},{"name":"GetDIBits","features":[316]},{"name":"GetDeviceCaps","features":[316]},{"name":"GetEnhMetaFileA","features":[316]},{"name":"GetEnhMetaFileBits","features":[316]},{"name":"GetEnhMetaFileDescriptionA","features":[316]},{"name":"GetEnhMetaFileDescriptionW","features":[316]},{"name":"GetEnhMetaFileHeader","features":[305,316]},{"name":"GetEnhMetaFilePaletteEntries","features":[316]},{"name":"GetEnhMetaFileW","features":[316]},{"name":"GetFontData","features":[316]},{"name":"GetFontLanguageInfo","features":[316]},{"name":"GetFontUnicodeRanges","features":[316]},{"name":"GetGlyphIndicesA","features":[316]},{"name":"GetGlyphIndicesW","features":[316]},{"name":"GetGlyphOutlineA","features":[305,316]},{"name":"GetGlyphOutlineW","features":[305,316]},{"name":"GetGraphicsMode","features":[316]},{"name":"GetKerningPairsA","features":[316]},{"name":"GetKerningPairsW","features":[316]},{"name":"GetLayout","features":[316]},{"name":"GetMapMode","features":[316]},{"name":"GetMetaFileA","features":[316]},{"name":"GetMetaFileBitsEx","features":[316]},{"name":"GetMetaFileW","features":[316]},{"name":"GetMetaRgn","features":[316]},{"name":"GetMiterLimit","features":[305,316]},{"name":"GetMonitorInfoA","features":[305,316]},{"name":"GetMonitorInfoW","features":[305,316]},{"name":"GetNearestColor","features":[305,316]},{"name":"GetNearestPaletteIndex","features":[305,316]},{"name":"GetObjectA","features":[316]},{"name":"GetObjectType","features":[316]},{"name":"GetObjectW","features":[316]},{"name":"GetOutlineTextMetricsA","features":[305,316]},{"name":"GetOutlineTextMetricsW","features":[305,316]},{"name":"GetPaletteEntries","features":[316]},{"name":"GetPath","features":[305,316]},{"name":"GetPixel","features":[305,316]},{"name":"GetPolyFillMode","features":[316]},{"name":"GetROP2","features":[316]},{"name":"GetRandomRgn","features":[316]},{"name":"GetRasterizerCaps","features":[305,316]},{"name":"GetRegionData","features":[305,316]},{"name":"GetRgnBox","features":[305,316]},{"name":"GetStockObject","features":[316]},{"name":"GetStretchBltMode","features":[316]},{"name":"GetSysColor","features":[316]},{"name":"GetSysColorBrush","features":[316]},{"name":"GetSystemPaletteEntries","features":[316]},{"name":"GetSystemPaletteUse","features":[316]},{"name":"GetTabbedTextExtentA","features":[316]},{"name":"GetTabbedTextExtentW","features":[316]},{"name":"GetTextAlign","features":[316]},{"name":"GetTextCharacterExtra","features":[316]},{"name":"GetTextColor","features":[305,316]},{"name":"GetTextExtentExPointA","features":[305,316]},{"name":"GetTextExtentExPointI","features":[305,316]},{"name":"GetTextExtentExPointW","features":[305,316]},{"name":"GetTextExtentPoint32A","features":[305,316]},{"name":"GetTextExtentPoint32W","features":[305,316]},{"name":"GetTextExtentPointA","features":[305,316]},{"name":"GetTextExtentPointI","features":[305,316]},{"name":"GetTextExtentPointW","features":[305,316]},{"name":"GetTextFaceA","features":[316]},{"name":"GetTextFaceW","features":[316]},{"name":"GetTextMetricsA","features":[305,316]},{"name":"GetTextMetricsW","features":[305,316]},{"name":"GetUpdateRect","features":[305,316]},{"name":"GetUpdateRgn","features":[305,316]},{"name":"GetViewportExtEx","features":[305,316]},{"name":"GetViewportOrgEx","features":[305,316]},{"name":"GetWinMetaFileBits","features":[316]},{"name":"GetWindowDC","features":[305,316]},{"name":"GetWindowExtEx","features":[305,316]},{"name":"GetWindowOrgEx","features":[305,316]},{"name":"GetWindowRgn","features":[305,316]},{"name":"GetWindowRgnBox","features":[305,316]},{"name":"GetWorldTransform","features":[305,316]},{"name":"GradientFill","features":[305,316]},{"name":"GrayStringA","features":[305,316]},{"name":"GrayStringW","features":[305,316]},{"name":"HALFTONE","features":[316]},{"name":"HANDLETABLE","features":[316]},{"name":"HANGEUL_CHARSET","features":[316]},{"name":"HANGUL_CHARSET","features":[316]},{"name":"HATCH_BRUSH_STYLE","features":[316]},{"name":"HBITMAP","features":[316]},{"name":"HBRUSH","features":[316]},{"name":"HDC","features":[316]},{"name":"HDC_MAP_MODE","features":[316]},{"name":"HEBREW_CHARSET","features":[316]},{"name":"HENHMETAFILE","features":[316]},{"name":"HFONT","features":[316]},{"name":"HGDIOBJ","features":[316]},{"name":"HMETAFILE","features":[316]},{"name":"HMONITOR","features":[316]},{"name":"HOLLOW_BRUSH","features":[316]},{"name":"HORZRES","features":[316]},{"name":"HORZSIZE","features":[316]},{"name":"HPALETTE","features":[316]},{"name":"HPEN","features":[316]},{"name":"HRGN","features":[316]},{"name":"HS_API_MAX","features":[316]},{"name":"HS_BDIAGONAL","features":[316]},{"name":"HS_CROSS","features":[316]},{"name":"HS_DIAGCROSS","features":[316]},{"name":"HS_FDIAGONAL","features":[316]},{"name":"HS_HORIZONTAL","features":[316]},{"name":"HS_VERTICAL","features":[316]},{"name":"ILLUMINANT_A","features":[316]},{"name":"ILLUMINANT_B","features":[316]},{"name":"ILLUMINANT_C","features":[316]},{"name":"ILLUMINANT_D50","features":[316]},{"name":"ILLUMINANT_D55","features":[316]},{"name":"ILLUMINANT_D65","features":[316]},{"name":"ILLUMINANT_D75","features":[316]},{"name":"ILLUMINANT_DAYLIGHT","features":[316]},{"name":"ILLUMINANT_DEVICE_DEFAULT","features":[316]},{"name":"ILLUMINANT_F2","features":[316]},{"name":"ILLUMINANT_FLUORESCENT","features":[316]},{"name":"ILLUMINANT_MAX_INDEX","features":[316]},{"name":"ILLUMINANT_NTSC","features":[316]},{"name":"ILLUMINANT_TUNGSTEN","features":[316]},{"name":"InflateRect","features":[305,316]},{"name":"IntersectClipRect","features":[316]},{"name":"IntersectRect","features":[305,316]},{"name":"InvalidateRect","features":[305,316]},{"name":"InvalidateRgn","features":[305,316]},{"name":"InvertRect","features":[305,316]},{"name":"InvertRgn","features":[305,316]},{"name":"IsRectEmpty","features":[305,316]},{"name":"JOHAB_CHARSET","features":[316]},{"name":"KERNINGPAIR","features":[316]},{"name":"LAYOUT_BITMAPORIENTATIONPRESERVED","features":[316]},{"name":"LAYOUT_BTT","features":[316]},{"name":"LAYOUT_RTL","features":[316]},{"name":"LAYOUT_VBH","features":[316]},{"name":"LCS_GM_ABS_COLORIMETRIC","features":[316]},{"name":"LCS_GM_BUSINESS","features":[316]},{"name":"LCS_GM_GRAPHICS","features":[316]},{"name":"LCS_GM_IMAGES","features":[316]},{"name":"LC_INTERIORS","features":[316]},{"name":"LC_MARKER","features":[316]},{"name":"LC_NONE","features":[316]},{"name":"LC_POLYLINE","features":[316]},{"name":"LC_POLYMARKER","features":[316]},{"name":"LC_STYLED","features":[316]},{"name":"LC_WIDE","features":[316]},{"name":"LC_WIDESTYLED","features":[316]},{"name":"LF_FACESIZE","features":[316]},{"name":"LF_FULLFACESIZE","features":[316]},{"name":"LICENSE_DEFAULT","features":[316]},{"name":"LICENSE_EDITABLE","features":[316]},{"name":"LICENSE_INSTALLABLE","features":[316]},{"name":"LICENSE_NOEMBEDDING","features":[316]},{"name":"LICENSE_PREVIEWPRINT","features":[316]},{"name":"LINECAPS","features":[316]},{"name":"LINEDDAPROC","features":[305,316]},{"name":"LOGBRUSH","features":[305,316]},{"name":"LOGBRUSH32","features":[305,316]},{"name":"LOGFONTA","features":[316]},{"name":"LOGFONTW","features":[316]},{"name":"LOGPALETTE","features":[316]},{"name":"LOGPEN","features":[305,316]},{"name":"LOGPIXELSX","features":[316]},{"name":"LOGPIXELSY","features":[316]},{"name":"LPD_DOUBLEBUFFER","features":[316]},{"name":"LPD_SHARE_ACCUM","features":[316]},{"name":"LPD_SHARE_DEPTH","features":[316]},{"name":"LPD_SHARE_STENCIL","features":[316]},{"name":"LPD_STEREO","features":[316]},{"name":"LPD_SUPPORT_GDI","features":[316]},{"name":"LPD_SUPPORT_OPENGL","features":[316]},{"name":"LPD_SWAP_COPY","features":[316]},{"name":"LPD_SWAP_EXCHANGE","features":[316]},{"name":"LPD_TRANSPARENT","features":[316]},{"name":"LPD_TYPE_COLORINDEX","features":[316]},{"name":"LPD_TYPE_RGBA","features":[316]},{"name":"LPFNDEVCAPS","features":[305,316]},{"name":"LPFNDEVMODE","features":[305,316]},{"name":"LPtoDP","features":[305,316]},{"name":"LTGRAY_BRUSH","features":[316]},{"name":"LineDDA","features":[305,316]},{"name":"LineTo","features":[305,316]},{"name":"LoadBitmapA","features":[305,316]},{"name":"LoadBitmapW","features":[305,316]},{"name":"LockWindowUpdate","features":[305,316]},{"name":"MAC_CHARSET","features":[316]},{"name":"MAT2","features":[316]},{"name":"MAXSTRETCHBLTMODE","features":[316]},{"name":"MERGECOPY","features":[316]},{"name":"MERGEPAINT","features":[316]},{"name":"METAFILE_DRIVER","features":[316]},{"name":"METAHEADER","features":[316]},{"name":"METARECORD","features":[316]},{"name":"META_ANIMATEPALETTE","features":[316]},{"name":"META_ARC","features":[316]},{"name":"META_BITBLT","features":[316]},{"name":"META_CHORD","features":[316]},{"name":"META_CREATEBRUSHINDIRECT","features":[316]},{"name":"META_CREATEFONTINDIRECT","features":[316]},{"name":"META_CREATEPALETTE","features":[316]},{"name":"META_CREATEPATTERNBRUSH","features":[316]},{"name":"META_CREATEPENINDIRECT","features":[316]},{"name":"META_CREATEREGION","features":[316]},{"name":"META_DELETEOBJECT","features":[316]},{"name":"META_DIBBITBLT","features":[316]},{"name":"META_DIBCREATEPATTERNBRUSH","features":[316]},{"name":"META_DIBSTRETCHBLT","features":[316]},{"name":"META_ELLIPSE","features":[316]},{"name":"META_ESCAPE","features":[316]},{"name":"META_EXCLUDECLIPRECT","features":[316]},{"name":"META_EXTFLOODFILL","features":[316]},{"name":"META_EXTTEXTOUT","features":[316]},{"name":"META_FILLREGION","features":[316]},{"name":"META_FLOODFILL","features":[316]},{"name":"META_FRAMEREGION","features":[316]},{"name":"META_INTERSECTCLIPRECT","features":[316]},{"name":"META_INVERTREGION","features":[316]},{"name":"META_LINETO","features":[316]},{"name":"META_MOVETO","features":[316]},{"name":"META_OFFSETCLIPRGN","features":[316]},{"name":"META_OFFSETVIEWPORTORG","features":[316]},{"name":"META_OFFSETWINDOWORG","features":[316]},{"name":"META_PAINTREGION","features":[316]},{"name":"META_PATBLT","features":[316]},{"name":"META_PIE","features":[316]},{"name":"META_POLYGON","features":[316]},{"name":"META_POLYLINE","features":[316]},{"name":"META_POLYPOLYGON","features":[316]},{"name":"META_REALIZEPALETTE","features":[316]},{"name":"META_RECTANGLE","features":[316]},{"name":"META_RESIZEPALETTE","features":[316]},{"name":"META_RESTOREDC","features":[316]},{"name":"META_ROUNDRECT","features":[316]},{"name":"META_SAVEDC","features":[316]},{"name":"META_SCALEVIEWPORTEXT","features":[316]},{"name":"META_SCALEWINDOWEXT","features":[316]},{"name":"META_SELECTCLIPREGION","features":[316]},{"name":"META_SELECTOBJECT","features":[316]},{"name":"META_SELECTPALETTE","features":[316]},{"name":"META_SETBKCOLOR","features":[316]},{"name":"META_SETBKMODE","features":[316]},{"name":"META_SETDIBTODEV","features":[316]},{"name":"META_SETLAYOUT","features":[316]},{"name":"META_SETMAPMODE","features":[316]},{"name":"META_SETMAPPERFLAGS","features":[316]},{"name":"META_SETPALENTRIES","features":[316]},{"name":"META_SETPIXEL","features":[316]},{"name":"META_SETPOLYFILLMODE","features":[316]},{"name":"META_SETRELABS","features":[316]},{"name":"META_SETROP2","features":[316]},{"name":"META_SETSTRETCHBLTMODE","features":[316]},{"name":"META_SETTEXTALIGN","features":[316]},{"name":"META_SETTEXTCHAREXTRA","features":[316]},{"name":"META_SETTEXTCOLOR","features":[316]},{"name":"META_SETTEXTJUSTIFICATION","features":[316]},{"name":"META_SETVIEWPORTEXT","features":[316]},{"name":"META_SETVIEWPORTORG","features":[316]},{"name":"META_SETWINDOWEXT","features":[316]},{"name":"META_SETWINDOWORG","features":[316]},{"name":"META_STRETCHBLT","features":[316]},{"name":"META_STRETCHDIB","features":[316]},{"name":"META_TEXTOUT","features":[316]},{"name":"MFCOMMENT","features":[316]},{"name":"MFENUMPROC","features":[305,316]},{"name":"MILCORE_TS_QUERYVER_RESULT_FALSE","features":[316]},{"name":"MILCORE_TS_QUERYVER_RESULT_TRUE","features":[316]},{"name":"MM_ANISOTROPIC","features":[316]},{"name":"MM_HIENGLISH","features":[316]},{"name":"MM_HIMETRIC","features":[316]},{"name":"MM_ISOTROPIC","features":[316]},{"name":"MM_LOENGLISH","features":[316]},{"name":"MM_LOMETRIC","features":[316]},{"name":"MM_MAX_AXES_NAMELEN","features":[316]},{"name":"MM_MAX_NUMAXES","features":[316]},{"name":"MM_TEXT","features":[316]},{"name":"MM_TWIPS","features":[316]},{"name":"MODIFY_WORLD_TRANSFORM_MODE","features":[316]},{"name":"MONITORENUMPROC","features":[305,316]},{"name":"MONITORINFO","features":[305,316]},{"name":"MONITORINFOEXA","features":[305,316]},{"name":"MONITORINFOEXW","features":[305,316]},{"name":"MONITOR_DEFAULTTONEAREST","features":[316]},{"name":"MONITOR_DEFAULTTONULL","features":[316]},{"name":"MONITOR_DEFAULTTOPRIMARY","features":[316]},{"name":"MONITOR_FROM_FLAGS","features":[316]},{"name":"MONO_FONT","features":[316]},{"name":"MOUSETRAILS","features":[316]},{"name":"MWT_IDENTITY","features":[316]},{"name":"MWT_LEFTMULTIPLY","features":[316]},{"name":"MWT_RIGHTMULTIPLY","features":[316]},{"name":"MapWindowPoints","features":[305,316]},{"name":"MaskBlt","features":[305,316]},{"name":"MergeFontPackage","features":[316]},{"name":"ModifyWorldTransform","features":[305,316]},{"name":"MonitorFromPoint","features":[305,316]},{"name":"MonitorFromRect","features":[305,316]},{"name":"MonitorFromWindow","features":[305,316]},{"name":"MoveToEx","features":[305,316]},{"name":"NEWFRAME","features":[316]},{"name":"NEWTEXTMETRICA","features":[316]},{"name":"NEWTEXTMETRICW","features":[316]},{"name":"NEWTRANSPARENT","features":[316]},{"name":"NEXTBAND","features":[316]},{"name":"NOMIRRORBITMAP","features":[316]},{"name":"NONANTIALIASED_QUALITY","features":[316]},{"name":"NOTSRCCOPY","features":[316]},{"name":"NOTSRCERASE","features":[316]},{"name":"NTM_BOLD","features":[316]},{"name":"NTM_DSIG","features":[316]},{"name":"NTM_ITALIC","features":[316]},{"name":"NTM_MULTIPLEMASTER","features":[316]},{"name":"NTM_NONNEGATIVE_AC","features":[316]},{"name":"NTM_PS_OPENTYPE","features":[316]},{"name":"NTM_REGULAR","features":[316]},{"name":"NTM_TT_OPENTYPE","features":[316]},{"name":"NTM_TYPE1","features":[316]},{"name":"NULLREGION","features":[316]},{"name":"NULL_BRUSH","features":[316]},{"name":"NULL_PEN","features":[316]},{"name":"NUMBRUSHES","features":[316]},{"name":"NUMCOLORS","features":[316]},{"name":"NUMFONTS","features":[316]},{"name":"NUMMARKERS","features":[316]},{"name":"NUMPENS","features":[316]},{"name":"NUMRESERVED","features":[316]},{"name":"OBJ_BITMAP","features":[316]},{"name":"OBJ_BRUSH","features":[316]},{"name":"OBJ_COLORSPACE","features":[316]},{"name":"OBJ_DC","features":[316]},{"name":"OBJ_ENHMETADC","features":[316]},{"name":"OBJ_ENHMETAFILE","features":[316]},{"name":"OBJ_EXTPEN","features":[316]},{"name":"OBJ_FONT","features":[316]},{"name":"OBJ_MEMDC","features":[316]},{"name":"OBJ_METADC","features":[316]},{"name":"OBJ_METAFILE","features":[316]},{"name":"OBJ_PAL","features":[316]},{"name":"OBJ_PEN","features":[316]},{"name":"OBJ_REGION","features":[316]},{"name":"OBJ_TYPE","features":[316]},{"name":"OEM_CHARSET","features":[316]},{"name":"OEM_FIXED_FONT","features":[316]},{"name":"OPAQUE","features":[316]},{"name":"OPENCHANNEL","features":[316]},{"name":"OUTLINETEXTMETRICA","features":[305,316]},{"name":"OUTLINETEXTMETRICW","features":[305,316]},{"name":"OUT_CHARACTER_PRECIS","features":[316]},{"name":"OUT_DEFAULT_PRECIS","features":[316]},{"name":"OUT_DEVICE_PRECIS","features":[316]},{"name":"OUT_OUTLINE_PRECIS","features":[316]},{"name":"OUT_PS_ONLY_PRECIS","features":[316]},{"name":"OUT_RASTER_PRECIS","features":[316]},{"name":"OUT_SCREEN_OUTLINE_PRECIS","features":[316]},{"name":"OUT_STRING_PRECIS","features":[316]},{"name":"OUT_STROKE_PRECIS","features":[316]},{"name":"OUT_TT_ONLY_PRECIS","features":[316]},{"name":"OUT_TT_PRECIS","features":[316]},{"name":"OffsetClipRgn","features":[316]},{"name":"OffsetRect","features":[305,316]},{"name":"OffsetRgn","features":[316]},{"name":"OffsetViewportOrgEx","features":[305,316]},{"name":"OffsetWindowOrgEx","features":[305,316]},{"name":"PAINTSTRUCT","features":[305,316]},{"name":"PALETTEENTRY","features":[316]},{"name":"PANOSE","features":[316]},{"name":"PANOSE_COUNT","features":[316]},{"name":"PAN_ANY","features":[316]},{"name":"PAN_ARMSTYLE_INDEX","features":[316]},{"name":"PAN_ARM_ANY","features":[316]},{"name":"PAN_ARM_NO_FIT","features":[316]},{"name":"PAN_ARM_STYLE","features":[316]},{"name":"PAN_BENT_ARMS_DOUBLE_SERIF","features":[316]},{"name":"PAN_BENT_ARMS_HORZ","features":[316]},{"name":"PAN_BENT_ARMS_SINGLE_SERIF","features":[316]},{"name":"PAN_BENT_ARMS_VERT","features":[316]},{"name":"PAN_BENT_ARMS_WEDGE","features":[316]},{"name":"PAN_CONTRAST","features":[316]},{"name":"PAN_CONTRAST_ANY","features":[316]},{"name":"PAN_CONTRAST_HIGH","features":[316]},{"name":"PAN_CONTRAST_INDEX","features":[316]},{"name":"PAN_CONTRAST_LOW","features":[316]},{"name":"PAN_CONTRAST_MEDIUM","features":[316]},{"name":"PAN_CONTRAST_MEDIUM_HIGH","features":[316]},{"name":"PAN_CONTRAST_MEDIUM_LOW","features":[316]},{"name":"PAN_CONTRAST_NONE","features":[316]},{"name":"PAN_CONTRAST_NO_FIT","features":[316]},{"name":"PAN_CONTRAST_VERY_HIGH","features":[316]},{"name":"PAN_CONTRAST_VERY_LOW","features":[316]},{"name":"PAN_CULTURE_LATIN","features":[316]},{"name":"PAN_FAMILYTYPE_INDEX","features":[316]},{"name":"PAN_FAMILY_ANY","features":[316]},{"name":"PAN_FAMILY_DECORATIVE","features":[316]},{"name":"PAN_FAMILY_NO_FIT","features":[316]},{"name":"PAN_FAMILY_PICTORIAL","features":[316]},{"name":"PAN_FAMILY_SCRIPT","features":[316]},{"name":"PAN_FAMILY_TEXT_DISPLAY","features":[316]},{"name":"PAN_FAMILY_TYPE","features":[316]},{"name":"PAN_LETTERFORM_INDEX","features":[316]},{"name":"PAN_LETT_FORM","features":[316]},{"name":"PAN_LETT_FORM_ANY","features":[316]},{"name":"PAN_LETT_FORM_NO_FIT","features":[316]},{"name":"PAN_LETT_NORMAL_BOXED","features":[316]},{"name":"PAN_LETT_NORMAL_CONTACT","features":[316]},{"name":"PAN_LETT_NORMAL_FLATTENED","features":[316]},{"name":"PAN_LETT_NORMAL_OFF_CENTER","features":[316]},{"name":"PAN_LETT_NORMAL_ROUNDED","features":[316]},{"name":"PAN_LETT_NORMAL_SQUARE","features":[316]},{"name":"PAN_LETT_NORMAL_WEIGHTED","features":[316]},{"name":"PAN_LETT_OBLIQUE_BOXED","features":[316]},{"name":"PAN_LETT_OBLIQUE_CONTACT","features":[316]},{"name":"PAN_LETT_OBLIQUE_FLATTENED","features":[316]},{"name":"PAN_LETT_OBLIQUE_OFF_CENTER","features":[316]},{"name":"PAN_LETT_OBLIQUE_ROUNDED","features":[316]},{"name":"PAN_LETT_OBLIQUE_SQUARE","features":[316]},{"name":"PAN_LETT_OBLIQUE_WEIGHTED","features":[316]},{"name":"PAN_MIDLINE","features":[316]},{"name":"PAN_MIDLINE_ANY","features":[316]},{"name":"PAN_MIDLINE_CONSTANT_POINTED","features":[316]},{"name":"PAN_MIDLINE_CONSTANT_SERIFED","features":[316]},{"name":"PAN_MIDLINE_CONSTANT_TRIMMED","features":[316]},{"name":"PAN_MIDLINE_HIGH_POINTED","features":[316]},{"name":"PAN_MIDLINE_HIGH_SERIFED","features":[316]},{"name":"PAN_MIDLINE_HIGH_TRIMMED","features":[316]},{"name":"PAN_MIDLINE_INDEX","features":[316]},{"name":"PAN_MIDLINE_LOW_POINTED","features":[316]},{"name":"PAN_MIDLINE_LOW_SERIFED","features":[316]},{"name":"PAN_MIDLINE_LOW_TRIMMED","features":[316]},{"name":"PAN_MIDLINE_NO_FIT","features":[316]},{"name":"PAN_MIDLINE_STANDARD_POINTED","features":[316]},{"name":"PAN_MIDLINE_STANDARD_SERIFED","features":[316]},{"name":"PAN_MIDLINE_STANDARD_TRIMMED","features":[316]},{"name":"PAN_NO_FIT","features":[316]},{"name":"PAN_PROPORTION","features":[316]},{"name":"PAN_PROPORTION_INDEX","features":[316]},{"name":"PAN_PROP_ANY","features":[316]},{"name":"PAN_PROP_CONDENSED","features":[316]},{"name":"PAN_PROP_EVEN_WIDTH","features":[316]},{"name":"PAN_PROP_EXPANDED","features":[316]},{"name":"PAN_PROP_MODERN","features":[316]},{"name":"PAN_PROP_MONOSPACED","features":[316]},{"name":"PAN_PROP_NO_FIT","features":[316]},{"name":"PAN_PROP_OLD_STYLE","features":[316]},{"name":"PAN_PROP_VERY_CONDENSED","features":[316]},{"name":"PAN_PROP_VERY_EXPANDED","features":[316]},{"name":"PAN_SERIFSTYLE_INDEX","features":[316]},{"name":"PAN_SERIF_ANY","features":[316]},{"name":"PAN_SERIF_BONE","features":[316]},{"name":"PAN_SERIF_COVE","features":[316]},{"name":"PAN_SERIF_EXAGGERATED","features":[316]},{"name":"PAN_SERIF_FLARED","features":[316]},{"name":"PAN_SERIF_NORMAL_SANS","features":[316]},{"name":"PAN_SERIF_NO_FIT","features":[316]},{"name":"PAN_SERIF_OBTUSE_COVE","features":[316]},{"name":"PAN_SERIF_OBTUSE_SANS","features":[316]},{"name":"PAN_SERIF_OBTUSE_SQUARE_COVE","features":[316]},{"name":"PAN_SERIF_PERP_SANS","features":[316]},{"name":"PAN_SERIF_ROUNDED","features":[316]},{"name":"PAN_SERIF_SQUARE","features":[316]},{"name":"PAN_SERIF_SQUARE_COVE","features":[316]},{"name":"PAN_SERIF_STYLE","features":[316]},{"name":"PAN_SERIF_THIN","features":[316]},{"name":"PAN_SERIF_TRIANGLE","features":[316]},{"name":"PAN_STRAIGHT_ARMS_DOUBLE_SERIF","features":[316]},{"name":"PAN_STRAIGHT_ARMS_HORZ","features":[316]},{"name":"PAN_STRAIGHT_ARMS_SINGLE_SERIF","features":[316]},{"name":"PAN_STRAIGHT_ARMS_VERT","features":[316]},{"name":"PAN_STRAIGHT_ARMS_WEDGE","features":[316]},{"name":"PAN_STROKEVARIATION_INDEX","features":[316]},{"name":"PAN_STROKE_ANY","features":[316]},{"name":"PAN_STROKE_GRADUAL_DIAG","features":[316]},{"name":"PAN_STROKE_GRADUAL_HORZ","features":[316]},{"name":"PAN_STROKE_GRADUAL_TRAN","features":[316]},{"name":"PAN_STROKE_GRADUAL_VERT","features":[316]},{"name":"PAN_STROKE_INSTANT_VERT","features":[316]},{"name":"PAN_STROKE_NO_FIT","features":[316]},{"name":"PAN_STROKE_RAPID_HORZ","features":[316]},{"name":"PAN_STROKE_RAPID_VERT","features":[316]},{"name":"PAN_STROKE_VARIATION","features":[316]},{"name":"PAN_WEIGHT","features":[316]},{"name":"PAN_WEIGHT_ANY","features":[316]},{"name":"PAN_WEIGHT_BLACK","features":[316]},{"name":"PAN_WEIGHT_BOLD","features":[316]},{"name":"PAN_WEIGHT_BOOK","features":[316]},{"name":"PAN_WEIGHT_DEMI","features":[316]},{"name":"PAN_WEIGHT_HEAVY","features":[316]},{"name":"PAN_WEIGHT_INDEX","features":[316]},{"name":"PAN_WEIGHT_LIGHT","features":[316]},{"name":"PAN_WEIGHT_MEDIUM","features":[316]},{"name":"PAN_WEIGHT_NORD","features":[316]},{"name":"PAN_WEIGHT_NO_FIT","features":[316]},{"name":"PAN_WEIGHT_THIN","features":[316]},{"name":"PAN_WEIGHT_VERY_LIGHT","features":[316]},{"name":"PAN_XHEIGHT","features":[316]},{"name":"PAN_XHEIGHT_ANY","features":[316]},{"name":"PAN_XHEIGHT_CONSTANT_LARGE","features":[316]},{"name":"PAN_XHEIGHT_CONSTANT_SMALL","features":[316]},{"name":"PAN_XHEIGHT_CONSTANT_STD","features":[316]},{"name":"PAN_XHEIGHT_DUCKING_LARGE","features":[316]},{"name":"PAN_XHEIGHT_DUCKING_SMALL","features":[316]},{"name":"PAN_XHEIGHT_DUCKING_STD","features":[316]},{"name":"PAN_XHEIGHT_INDEX","features":[316]},{"name":"PAN_XHEIGHT_NO_FIT","features":[316]},{"name":"PASSTHROUGH","features":[316]},{"name":"PATCOPY","features":[316]},{"name":"PATINVERT","features":[316]},{"name":"PATPAINT","features":[316]},{"name":"PC_EXPLICIT","features":[316]},{"name":"PC_INTERIORS","features":[316]},{"name":"PC_NOCOLLAPSE","features":[316]},{"name":"PC_NONE","features":[316]},{"name":"PC_PATHS","features":[316]},{"name":"PC_POLYGON","features":[316]},{"name":"PC_POLYPOLYGON","features":[316]},{"name":"PC_RECTANGLE","features":[316]},{"name":"PC_RESERVED","features":[316]},{"name":"PC_SCANLINE","features":[316]},{"name":"PC_STYLED","features":[316]},{"name":"PC_TRAPEZOID","features":[316]},{"name":"PC_WIDE","features":[316]},{"name":"PC_WIDESTYLED","features":[316]},{"name":"PC_WINDPOLYGON","features":[316]},{"name":"PDEVICESIZE","features":[316]},{"name":"PELARRAY","features":[316]},{"name":"PEN_STYLE","features":[316]},{"name":"PHYSICALHEIGHT","features":[316]},{"name":"PHYSICALOFFSETX","features":[316]},{"name":"PHYSICALOFFSETY","features":[316]},{"name":"PHYSICALWIDTH","features":[316]},{"name":"PLANES","features":[316]},{"name":"POINTFX","features":[316]},{"name":"POLYFILL_LAST","features":[316]},{"name":"POLYGONALCAPS","features":[316]},{"name":"POLYTEXTA","features":[305,316]},{"name":"POLYTEXTW","features":[305,316]},{"name":"POSTSCRIPT_DATA","features":[316]},{"name":"POSTSCRIPT_IDENTIFY","features":[316]},{"name":"POSTSCRIPT_IGNORE","features":[316]},{"name":"POSTSCRIPT_INJECTION","features":[316]},{"name":"POSTSCRIPT_PASSTHROUGH","features":[316]},{"name":"PRINTRATEUNIT_CPS","features":[316]},{"name":"PRINTRATEUNIT_IPM","features":[316]},{"name":"PRINTRATEUNIT_LPM","features":[316]},{"name":"PRINTRATEUNIT_PPM","features":[316]},{"name":"PROOF_QUALITY","features":[316]},{"name":"PR_JOBSTATUS","features":[316]},{"name":"PSIDENT_GDICENTRIC","features":[316]},{"name":"PSIDENT_PSCENTRIC","features":[316]},{"name":"PSINJECT_DLFONT","features":[316]},{"name":"PSPROTOCOL_ASCII","features":[316]},{"name":"PSPROTOCOL_BCP","features":[316]},{"name":"PSPROTOCOL_BINARY","features":[316]},{"name":"PSPROTOCOL_TBCP","features":[316]},{"name":"PS_ALTERNATE","features":[316]},{"name":"PS_COSMETIC","features":[316]},{"name":"PS_DASH","features":[316]},{"name":"PS_DASHDOT","features":[316]},{"name":"PS_DASHDOTDOT","features":[316]},{"name":"PS_DOT","features":[316]},{"name":"PS_ENDCAP_FLAT","features":[316]},{"name":"PS_ENDCAP_MASK","features":[316]},{"name":"PS_ENDCAP_ROUND","features":[316]},{"name":"PS_ENDCAP_SQUARE","features":[316]},{"name":"PS_GEOMETRIC","features":[316]},{"name":"PS_INSIDEFRAME","features":[316]},{"name":"PS_JOIN_BEVEL","features":[316]},{"name":"PS_JOIN_MASK","features":[316]},{"name":"PS_JOIN_MITER","features":[316]},{"name":"PS_JOIN_ROUND","features":[316]},{"name":"PS_NULL","features":[316]},{"name":"PS_SOLID","features":[316]},{"name":"PS_STYLE_MASK","features":[316]},{"name":"PS_TYPE_MASK","features":[316]},{"name":"PS_USERSTYLE","features":[316]},{"name":"PT_BEZIERTO","features":[316]},{"name":"PT_CLOSEFIGURE","features":[316]},{"name":"PT_LINETO","features":[316]},{"name":"PT_MOVETO","features":[316]},{"name":"PaintDesktop","features":[305,316]},{"name":"PaintRgn","features":[305,316]},{"name":"PatBlt","features":[305,316]},{"name":"PathToRegion","features":[316]},{"name":"Pie","features":[305,316]},{"name":"PlayEnhMetaFile","features":[305,316]},{"name":"PlayEnhMetaFileRecord","features":[305,316]},{"name":"PlayMetaFile","features":[305,316]},{"name":"PlayMetaFileRecord","features":[305,316]},{"name":"PlgBlt","features":[305,316]},{"name":"PolyBezier","features":[305,316]},{"name":"PolyBezierTo","features":[305,316]},{"name":"PolyDraw","features":[305,316]},{"name":"PolyPolygon","features":[305,316]},{"name":"PolyPolyline","features":[305,316]},{"name":"PolyTextOutA","features":[305,316]},{"name":"PolyTextOutW","features":[305,316]},{"name":"Polygon","features":[305,316]},{"name":"Polyline","features":[305,316]},{"name":"PolylineTo","features":[305,316]},{"name":"PtInRect","features":[305,316]},{"name":"PtInRegion","features":[305,316]},{"name":"PtVisible","features":[305,316]},{"name":"QDI_DIBTOSCREEN","features":[316]},{"name":"QDI_GETDIBITS","features":[316]},{"name":"QDI_SETDIBITS","features":[316]},{"name":"QDI_STRETCHDIB","features":[316]},{"name":"QUERYDIBSUPPORT","features":[316]},{"name":"QUERYESCSUPPORT","features":[316]},{"name":"QUERYROPSUPPORT","features":[316]},{"name":"R2_BLACK","features":[316]},{"name":"R2_COPYPEN","features":[316]},{"name":"R2_LAST","features":[316]},{"name":"R2_MASKNOTPEN","features":[316]},{"name":"R2_MASKPEN","features":[316]},{"name":"R2_MASKPENNOT","features":[316]},{"name":"R2_MERGENOTPEN","features":[316]},{"name":"R2_MERGEPEN","features":[316]},{"name":"R2_MERGEPENNOT","features":[316]},{"name":"R2_MODE","features":[316]},{"name":"R2_NOP","features":[316]},{"name":"R2_NOT","features":[316]},{"name":"R2_NOTCOPYPEN","features":[316]},{"name":"R2_NOTMASKPEN","features":[316]},{"name":"R2_NOTMERGEPEN","features":[316]},{"name":"R2_NOTXORPEN","features":[316]},{"name":"R2_WHITE","features":[316]},{"name":"R2_XORPEN","features":[316]},{"name":"RASTERCAPS","features":[316]},{"name":"RASTERIZER_STATUS","features":[316]},{"name":"RASTER_FONTTYPE","features":[316]},{"name":"RC_BANDING","features":[316]},{"name":"RC_BIGFONT","features":[316]},{"name":"RC_BITBLT","features":[316]},{"name":"RC_BITMAP64","features":[316]},{"name":"RC_DEVBITS","features":[316]},{"name":"RC_DIBTODEV","features":[316]},{"name":"RC_DI_BITMAP","features":[316]},{"name":"RC_FLOODFILL","features":[316]},{"name":"RC_GDI20_OUTPUT","features":[316]},{"name":"RC_GDI20_STATE","features":[316]},{"name":"RC_OP_DX_OUTPUT","features":[316]},{"name":"RC_PALETTE","features":[316]},{"name":"RC_SAVEBITMAP","features":[316]},{"name":"RC_SCALING","features":[316]},{"name":"RC_STRETCHBLT","features":[316]},{"name":"RC_STRETCHDIB","features":[316]},{"name":"RDH_RECTANGLES","features":[316]},{"name":"RDW_ALLCHILDREN","features":[316]},{"name":"RDW_ERASE","features":[316]},{"name":"RDW_ERASENOW","features":[316]},{"name":"RDW_FRAME","features":[316]},{"name":"RDW_INTERNALPAINT","features":[316]},{"name":"RDW_INVALIDATE","features":[316]},{"name":"RDW_NOCHILDREN","features":[316]},{"name":"RDW_NOERASE","features":[316]},{"name":"RDW_NOFRAME","features":[316]},{"name":"RDW_NOINTERNALPAINT","features":[316]},{"name":"RDW_UPDATENOW","features":[316]},{"name":"RDW_VALIDATE","features":[316]},{"name":"READEMBEDPROC","features":[316]},{"name":"REDRAW_WINDOW_FLAGS","features":[316]},{"name":"RELATIVE","features":[316]},{"name":"RESTORE_CTM","features":[316]},{"name":"RGBQUAD","features":[316]},{"name":"RGBTRIPLE","features":[316]},{"name":"RGNDATA","features":[305,316]},{"name":"RGNDATAHEADER","features":[305,316]},{"name":"RGN_AND","features":[316]},{"name":"RGN_COMBINE_MODE","features":[316]},{"name":"RGN_COPY","features":[316]},{"name":"RGN_DIFF","features":[316]},{"name":"RGN_ERROR","features":[316]},{"name":"RGN_MAX","features":[316]},{"name":"RGN_MIN","features":[316]},{"name":"RGN_OR","features":[316]},{"name":"RGN_XOR","features":[316]},{"name":"ROP_CODE","features":[316]},{"name":"RUSSIAN_CHARSET","features":[316]},{"name":"RealizePalette","features":[316]},{"name":"RectInRegion","features":[305,316]},{"name":"RectVisible","features":[305,316]},{"name":"Rectangle","features":[305,316]},{"name":"RedrawWindow","features":[305,316]},{"name":"ReleaseDC","features":[305,316]},{"name":"RemoveFontMemResourceEx","features":[305,316]},{"name":"RemoveFontResourceA","features":[305,316]},{"name":"RemoveFontResourceExA","features":[305,316]},{"name":"RemoveFontResourceExW","features":[305,316]},{"name":"RemoveFontResourceW","features":[305,316]},{"name":"ResetDCA","features":[305,316]},{"name":"ResetDCW","features":[305,316]},{"name":"ResizePalette","features":[305,316]},{"name":"RestoreDC","features":[305,316]},{"name":"RoundRect","features":[305,316]},{"name":"SAVE_CTM","features":[316]},{"name":"SB_CONST_ALPHA","features":[316]},{"name":"SB_GRAD_RECT","features":[316]},{"name":"SB_GRAD_TRI","features":[316]},{"name":"SB_NONE","features":[316]},{"name":"SB_PIXEL_ALPHA","features":[316]},{"name":"SB_PREMULT_ALPHA","features":[316]},{"name":"SCALINGFACTORX","features":[316]},{"name":"SCALINGFACTORY","features":[316]},{"name":"SC_SCREENSAVE","features":[316]},{"name":"SELECTDIB","features":[316]},{"name":"SELECTPAPERSOURCE","features":[316]},{"name":"SETABORTPROC","features":[316]},{"name":"SETALLJUSTVALUES","features":[316]},{"name":"SETCHARSET","features":[316]},{"name":"SETCOLORTABLE","features":[316]},{"name":"SETCOPYCOUNT","features":[316]},{"name":"SETDIBSCALING","features":[316]},{"name":"SETICMPROFILE_EMBEDED","features":[316]},{"name":"SETKERNTRACK","features":[316]},{"name":"SETLINECAP","features":[316]},{"name":"SETLINEJOIN","features":[316]},{"name":"SETMITERLIMIT","features":[316]},{"name":"SET_ARC_DIRECTION","features":[316]},{"name":"SET_BACKGROUND_COLOR","features":[316]},{"name":"SET_BOUNDS","features":[316]},{"name":"SET_BOUNDS_RECT_FLAGS","features":[316]},{"name":"SET_CLIP_BOX","features":[316]},{"name":"SET_MIRROR_MODE","features":[316]},{"name":"SET_POLY_MODE","features":[316]},{"name":"SET_SCREEN_ANGLE","features":[316]},{"name":"SET_SPREAD","features":[316]},{"name":"SHADEBLENDCAPS","features":[316]},{"name":"SHIFTJIS_CHARSET","features":[316]},{"name":"SIMPLEREGION","features":[316]},{"name":"SIZEPALETTE","features":[316]},{"name":"SPCLPASSTHROUGH2","features":[316]},{"name":"SP_APPABORT","features":[316]},{"name":"SP_ERROR","features":[316]},{"name":"SP_NOTREPORTED","features":[316]},{"name":"SP_OUTOFDISK","features":[316]},{"name":"SP_OUTOFMEMORY","features":[316]},{"name":"SP_USERABORT","features":[316]},{"name":"SRCAND","features":[316]},{"name":"SRCCOPY","features":[316]},{"name":"SRCERASE","features":[316]},{"name":"SRCINVERT","features":[316]},{"name":"SRCPAINT","features":[316]},{"name":"STARTDOC","features":[316]},{"name":"STOCK_LAST","features":[316]},{"name":"STRETCHBLT","features":[316]},{"name":"STRETCH_ANDSCANS","features":[316]},{"name":"STRETCH_BLT_MODE","features":[316]},{"name":"STRETCH_DELETESCANS","features":[316]},{"name":"STRETCH_HALFTONE","features":[316]},{"name":"STRETCH_ORSCANS","features":[316]},{"name":"SYMBOL_CHARSET","features":[316]},{"name":"SYSPAL_ERROR","features":[316]},{"name":"SYSPAL_NOSTATIC","features":[316]},{"name":"SYSPAL_NOSTATIC256","features":[316]},{"name":"SYSPAL_STATIC","features":[316]},{"name":"SYSRGN","features":[316]},{"name":"SYSTEM_FIXED_FONT","features":[316]},{"name":"SYSTEM_FONT","features":[316]},{"name":"SYSTEM_PALETTE_USE","features":[316]},{"name":"SYS_COLOR_INDEX","features":[316]},{"name":"SaveDC","features":[316]},{"name":"ScaleViewportExtEx","features":[305,316]},{"name":"ScaleWindowExtEx","features":[305,316]},{"name":"ScreenToClient","features":[305,316]},{"name":"SelectClipPath","features":[305,316]},{"name":"SelectClipRgn","features":[316]},{"name":"SelectObject","features":[316]},{"name":"SelectPalette","features":[305,316]},{"name":"SetArcDirection","features":[316]},{"name":"SetBitmapBits","features":[316]},{"name":"SetBitmapDimensionEx","features":[305,316]},{"name":"SetBkColor","features":[305,316]},{"name":"SetBkMode","features":[316]},{"name":"SetBoundsRect","features":[305,316]},{"name":"SetBrushOrgEx","features":[305,316]},{"name":"SetColorAdjustment","features":[305,316]},{"name":"SetDCBrushColor","features":[305,316]},{"name":"SetDCPenColor","features":[305,316]},{"name":"SetDIBColorTable","features":[316]},{"name":"SetDIBits","features":[316]},{"name":"SetDIBitsToDevice","features":[316]},{"name":"SetEnhMetaFileBits","features":[316]},{"name":"SetGraphicsMode","features":[316]},{"name":"SetLayout","features":[316]},{"name":"SetMapMode","features":[316]},{"name":"SetMapperFlags","features":[316]},{"name":"SetMetaFileBitsEx","features":[316]},{"name":"SetMetaRgn","features":[316]},{"name":"SetMiterLimit","features":[305,316]},{"name":"SetPaletteEntries","features":[316]},{"name":"SetPixel","features":[305,316]},{"name":"SetPixelV","features":[305,316]},{"name":"SetPolyFillMode","features":[316]},{"name":"SetROP2","features":[316]},{"name":"SetRect","features":[305,316]},{"name":"SetRectEmpty","features":[305,316]},{"name":"SetRectRgn","features":[305,316]},{"name":"SetStretchBltMode","features":[316]},{"name":"SetSysColors","features":[305,316]},{"name":"SetSystemPaletteUse","features":[316]},{"name":"SetTextAlign","features":[316]},{"name":"SetTextCharacterExtra","features":[316]},{"name":"SetTextColor","features":[305,316]},{"name":"SetTextJustification","features":[305,316]},{"name":"SetViewportExtEx","features":[305,316]},{"name":"SetViewportOrgEx","features":[305,316]},{"name":"SetWindowExtEx","features":[305,316]},{"name":"SetWindowOrgEx","features":[305,316]},{"name":"SetWindowRgn","features":[305,316]},{"name":"SetWorldTransform","features":[305,316]},{"name":"StretchBlt","features":[305,316]},{"name":"StretchDIBits","features":[316]},{"name":"StrokeAndFillPath","features":[305,316]},{"name":"StrokePath","features":[305,316]},{"name":"SubtractRect","features":[305,316]},{"name":"TA_BASELINE","features":[316]},{"name":"TA_BOTTOM","features":[316]},{"name":"TA_CENTER","features":[316]},{"name":"TA_LEFT","features":[316]},{"name":"TA_MASK","features":[316]},{"name":"TA_NOUPDATECP","features":[316]},{"name":"TA_RIGHT","features":[316]},{"name":"TA_RTLREADING","features":[316]},{"name":"TA_TOP","features":[316]},{"name":"TA_UPDATECP","features":[316]},{"name":"TC_CP_STROKE","features":[316]},{"name":"TC_CR_90","features":[316]},{"name":"TC_CR_ANY","features":[316]},{"name":"TC_EA_DOUBLE","features":[316]},{"name":"TC_IA_ABLE","features":[316]},{"name":"TC_OP_CHARACTER","features":[316]},{"name":"TC_OP_STROKE","features":[316]},{"name":"TC_RA_ABLE","features":[316]},{"name":"TC_RESERVED","features":[316]},{"name":"TC_SA_CONTIN","features":[316]},{"name":"TC_SA_DOUBLE","features":[316]},{"name":"TC_SA_INTEGER","features":[316]},{"name":"TC_SCROLLBLT","features":[316]},{"name":"TC_SF_X_YINDEP","features":[316]},{"name":"TC_SO_ABLE","features":[316]},{"name":"TC_UA_ABLE","features":[316]},{"name":"TC_VA_ABLE","features":[316]},{"name":"TECHNOLOGY","features":[316]},{"name":"TEXTCAPS","features":[316]},{"name":"TEXTMETRICA","features":[316]},{"name":"TEXTMETRICW","features":[316]},{"name":"TEXT_ALIGN_OPTIONS","features":[316]},{"name":"THAI_CHARSET","features":[316]},{"name":"TMPF_DEVICE","features":[316]},{"name":"TMPF_FIXED_PITCH","features":[316]},{"name":"TMPF_FLAGS","features":[316]},{"name":"TMPF_TRUETYPE","features":[316]},{"name":"TMPF_VECTOR","features":[316]},{"name":"TRANSFORM_CTM","features":[316]},{"name":"TRANSPARENT","features":[316]},{"name":"TRIVERTEX","features":[316]},{"name":"TRUETYPE_FONTTYPE","features":[316]},{"name":"TTCharToUnicode","features":[316]},{"name":"TTDELETE_DONTREMOVEFONT","features":[316]},{"name":"TTDeleteEmbeddedFont","features":[305,316]},{"name":"TTEMBEDINFO","features":[316]},{"name":"TTEMBED_EMBEDEUDC","features":[316]},{"name":"TTEMBED_EUDCEMBEDDED","features":[316]},{"name":"TTEMBED_FAILIFVARIATIONSIMULATED","features":[316]},{"name":"TTEMBED_FLAGS","features":[316]},{"name":"TTEMBED_RAW","features":[316]},{"name":"TTEMBED_SUBSET","features":[316]},{"name":"TTEMBED_SUBSETCANCEL","features":[316]},{"name":"TTEMBED_TTCOMPRESSED","features":[316]},{"name":"TTEMBED_VARIATIONSIMULATED","features":[316]},{"name":"TTEMBED_WEBOBJECT","features":[316]},{"name":"TTEMBED_XORENCRYPTDATA","features":[316]},{"name":"TTEmbedFont","features":[316]},{"name":"TTEmbedFontEx","features":[316]},{"name":"TTEmbedFontFromFileA","features":[316]},{"name":"TTEnableEmbeddingForFacename","features":[305,316]},{"name":"TTFCFP_APPLE_PLATFORMID","features":[316]},{"name":"TTFCFP_DELTA","features":[316]},{"name":"TTFCFP_DONT_CARE","features":[316]},{"name":"TTFCFP_FLAGS_COMPRESS","features":[316]},{"name":"TTFCFP_FLAGS_GLYPHLIST","features":[316]},{"name":"TTFCFP_FLAGS_SUBSET","features":[316]},{"name":"TTFCFP_FLAGS_TTC","features":[316]},{"name":"TTFCFP_ISO_PLATFORMID","features":[316]},{"name":"TTFCFP_LANG_KEEP_ALL","features":[316]},{"name":"TTFCFP_MS_PLATFORMID","features":[316]},{"name":"TTFCFP_STD_MAC_CHAR_SET","features":[316]},{"name":"TTFCFP_SUBSET","features":[316]},{"name":"TTFCFP_SUBSET1","features":[316]},{"name":"TTFCFP_SYMBOL_CHAR_SET","features":[316]},{"name":"TTFCFP_UNICODE_CHAR_SET","features":[316]},{"name":"TTFCFP_UNICODE_PLATFORMID","features":[316]},{"name":"TTFMFP_DELTA","features":[316]},{"name":"TTFMFP_SUBSET","features":[316]},{"name":"TTFMFP_SUBSET1","features":[316]},{"name":"TTGetEmbeddedFontInfo","features":[316]},{"name":"TTGetEmbeddingType","features":[316]},{"name":"TTGetNewFontName","features":[305,316]},{"name":"TTIsEmbeddingEnabled","features":[305,316]},{"name":"TTIsEmbeddingEnabledForFacename","features":[305,316]},{"name":"TTLOADINFO","features":[316]},{"name":"TTLOAD_EMBEDDED_FONT_STATUS","features":[316]},{"name":"TTLOAD_EUDC_OVERWRITE","features":[316]},{"name":"TTLOAD_EUDC_SET","features":[316]},{"name":"TTLOAD_FONT_IN_SYSSTARTUP","features":[316]},{"name":"TTLOAD_FONT_SUBSETTED","features":[316]},{"name":"TTLOAD_PRIVATE","features":[316]},{"name":"TTLoadEmbeddedFont","features":[305,316]},{"name":"TTPOLYCURVE","features":[316]},{"name":"TTPOLYGONHEADER","features":[316]},{"name":"TTRunValidationTests","features":[316]},{"name":"TTRunValidationTestsEx","features":[316]},{"name":"TTVALIDATIONTESTSPARAMS","features":[316]},{"name":"TTVALIDATIONTESTSPARAMSEX","features":[316]},{"name":"TT_AVAILABLE","features":[316]},{"name":"TT_ENABLED","features":[316]},{"name":"TT_POLYGON_TYPE","features":[316]},{"name":"TT_PRIM_CSPLINE","features":[316]},{"name":"TT_PRIM_LINE","features":[316]},{"name":"TT_PRIM_QSPLINE","features":[316]},{"name":"TURKISH_CHARSET","features":[316]},{"name":"TabbedTextOutA","features":[316]},{"name":"TabbedTextOutW","features":[316]},{"name":"TextOutA","features":[305,316]},{"name":"TextOutW","features":[305,316]},{"name":"TransparentBlt","features":[305,316]},{"name":"UnionRect","features":[305,316]},{"name":"UnrealizeObject","features":[305,316]},{"name":"UpdateColors","features":[305,316]},{"name":"UpdateWindow","features":[305,316]},{"name":"VARIABLE_PITCH","features":[316]},{"name":"VERTRES","features":[316]},{"name":"VERTSIZE","features":[316]},{"name":"VIETNAMESE_CHARSET","features":[316]},{"name":"VREFRESH","features":[316]},{"name":"VTA_BASELINE","features":[316]},{"name":"VTA_BOTTOM","features":[316]},{"name":"VTA_CENTER","features":[316]},{"name":"VTA_LEFT","features":[316]},{"name":"VTA_RIGHT","features":[316]},{"name":"VTA_TOP","features":[316]},{"name":"ValidateRect","features":[305,316]},{"name":"ValidateRgn","features":[305,316]},{"name":"WCRANGE","features":[316]},{"name":"WGLSWAP","features":[316]},{"name":"WGL_FONT_LINES","features":[316]},{"name":"WGL_FONT_POLYGONS","features":[316]},{"name":"WGL_SWAPMULTIPLE_MAX","features":[316]},{"name":"WGL_SWAP_MAIN_PLANE","features":[316]},{"name":"WGL_SWAP_OVERLAY1","features":[316]},{"name":"WGL_SWAP_OVERLAY10","features":[316]},{"name":"WGL_SWAP_OVERLAY11","features":[316]},{"name":"WGL_SWAP_OVERLAY12","features":[316]},{"name":"WGL_SWAP_OVERLAY13","features":[316]},{"name":"WGL_SWAP_OVERLAY14","features":[316]},{"name":"WGL_SWAP_OVERLAY15","features":[316]},{"name":"WGL_SWAP_OVERLAY2","features":[316]},{"name":"WGL_SWAP_OVERLAY3","features":[316]},{"name":"WGL_SWAP_OVERLAY4","features":[316]},{"name":"WGL_SWAP_OVERLAY5","features":[316]},{"name":"WGL_SWAP_OVERLAY6","features":[316]},{"name":"WGL_SWAP_OVERLAY7","features":[316]},{"name":"WGL_SWAP_OVERLAY8","features":[316]},{"name":"WGL_SWAP_OVERLAY9","features":[316]},{"name":"WGL_SWAP_UNDERLAY1","features":[316]},{"name":"WGL_SWAP_UNDERLAY10","features":[316]},{"name":"WGL_SWAP_UNDERLAY11","features":[316]},{"name":"WGL_SWAP_UNDERLAY12","features":[316]},{"name":"WGL_SWAP_UNDERLAY13","features":[316]},{"name":"WGL_SWAP_UNDERLAY14","features":[316]},{"name":"WGL_SWAP_UNDERLAY15","features":[316]},{"name":"WGL_SWAP_UNDERLAY2","features":[316]},{"name":"WGL_SWAP_UNDERLAY3","features":[316]},{"name":"WGL_SWAP_UNDERLAY4","features":[316]},{"name":"WGL_SWAP_UNDERLAY5","features":[316]},{"name":"WGL_SWAP_UNDERLAY6","features":[316]},{"name":"WGL_SWAP_UNDERLAY7","features":[316]},{"name":"WGL_SWAP_UNDERLAY8","features":[316]},{"name":"WGL_SWAP_UNDERLAY9","features":[316]},{"name":"WHITENESS","features":[316]},{"name":"WHITEONBLACK","features":[316]},{"name":"WHITE_BRUSH","features":[316]},{"name":"WHITE_PEN","features":[316]},{"name":"WINDING","features":[316]},{"name":"WRITEEMBEDPROC","features":[316]},{"name":"WidenPath","features":[305,316]},{"name":"WindowFromDC","features":[305,316]},{"name":"XFORM","features":[316]},{"name":"wglSwapMultipleBuffers","features":[316]}],"416":[{"name":"ALPHA_SHIFT","features":[409]},{"name":"Aborted","features":[409]},{"name":"AccessDenied","features":[409]},{"name":"AdjustBlackSaturation","features":[409]},{"name":"AdjustContrast","features":[409]},{"name":"AdjustDensity","features":[409]},{"name":"AdjustExposure","features":[409]},{"name":"AdjustHighlight","features":[409]},{"name":"AdjustMidtone","features":[409]},{"name":"AdjustShadow","features":[409]},{"name":"AdjustWhiteSaturation","features":[409]},{"name":"BLUE_SHIFT","features":[409]},{"name":"Bitmap","features":[409]},{"name":"BitmapData","features":[409]},{"name":"Blur","features":[305,409]},{"name":"BlurEffectGuid","features":[409]},{"name":"BlurParams","features":[305,409]},{"name":"BrightnessContrast","features":[305,409]},{"name":"BrightnessContrastEffectGuid","features":[409]},{"name":"BrightnessContrastParams","features":[409]},{"name":"BrushType","features":[409]},{"name":"BrushTypeHatchFill","features":[409]},{"name":"BrushTypeLinearGradient","features":[409]},{"name":"BrushTypePathGradient","features":[409]},{"name":"BrushTypeSolidColor","features":[409]},{"name":"BrushTypeTextureFill","features":[409]},{"name":"CGpEffect","features":[409]},{"name":"CachedBitmap","features":[409]},{"name":"CharacterRange","features":[409]},{"name":"CodecIImageBytes","features":[409]},{"name":"Color","features":[409]},{"name":"ColorAdjustType","features":[409]},{"name":"ColorAdjustTypeAny","features":[409]},{"name":"ColorAdjustTypeBitmap","features":[409]},{"name":"ColorAdjustTypeBrush","features":[409]},{"name":"ColorAdjustTypeCount","features":[409]},{"name":"ColorAdjustTypeDefault","features":[409]},{"name":"ColorAdjustTypePen","features":[409]},{"name":"ColorAdjustTypeText","features":[409]},{"name":"ColorBalance","features":[305,409]},{"name":"ColorBalanceEffectGuid","features":[409]},{"name":"ColorBalanceParams","features":[409]},{"name":"ColorChannelFlags","features":[409]},{"name":"ColorChannelFlagsC","features":[409]},{"name":"ColorChannelFlagsK","features":[409]},{"name":"ColorChannelFlagsLast","features":[409]},{"name":"ColorChannelFlagsM","features":[409]},{"name":"ColorChannelFlagsY","features":[409]},{"name":"ColorCurve","features":[305,409]},{"name":"ColorCurveEffectGuid","features":[409]},{"name":"ColorCurveParams","features":[409]},{"name":"ColorLUT","features":[305,409]},{"name":"ColorLUTEffectGuid","features":[409]},{"name":"ColorLUTParams","features":[409]},{"name":"ColorMap","features":[409]},{"name":"ColorMatrix","features":[409]},{"name":"ColorMatrixEffect","features":[305,409]},{"name":"ColorMatrixEffectGuid","features":[409]},{"name":"ColorMatrixFlags","features":[409]},{"name":"ColorMatrixFlagsAltGray","features":[409]},{"name":"ColorMatrixFlagsDefault","features":[409]},{"name":"ColorMatrixFlagsSkipGrays","features":[409]},{"name":"ColorMode","features":[409]},{"name":"ColorModeARGB32","features":[409]},{"name":"ColorModeARGB64","features":[409]},{"name":"ColorPalette","features":[409]},{"name":"CombineMode","features":[409]},{"name":"CombineModeComplement","features":[409]},{"name":"CombineModeExclude","features":[409]},{"name":"CombineModeIntersect","features":[409]},{"name":"CombineModeReplace","features":[409]},{"name":"CombineModeUnion","features":[409]},{"name":"CombineModeXor","features":[409]},{"name":"CompositingMode","features":[409]},{"name":"CompositingModeSourceCopy","features":[409]},{"name":"CompositingModeSourceOver","features":[409]},{"name":"CompositingQuality","features":[409]},{"name":"CompositingQualityAssumeLinear","features":[409]},{"name":"CompositingQualityDefault","features":[409]},{"name":"CompositingQualityGammaCorrected","features":[409]},{"name":"CompositingQualityHighQuality","features":[409]},{"name":"CompositingQualityHighSpeed","features":[409]},{"name":"CompositingQualityInvalid","features":[409]},{"name":"ConvertToEmfPlusFlags","features":[409]},{"name":"ConvertToEmfPlusFlagsDefault","features":[409]},{"name":"ConvertToEmfPlusFlagsInvalidRecord","features":[409]},{"name":"ConvertToEmfPlusFlagsRopUsed","features":[409]},{"name":"ConvertToEmfPlusFlagsText","features":[409]},{"name":"CoordinateSpace","features":[409]},{"name":"CoordinateSpaceDevice","features":[409]},{"name":"CoordinateSpacePage","features":[409]},{"name":"CoordinateSpaceWorld","features":[409]},{"name":"CurveAdjustments","features":[409]},{"name":"CurveChannel","features":[409]},{"name":"CurveChannelAll","features":[409]},{"name":"CurveChannelBlue","features":[409]},{"name":"CurveChannelGreen","features":[409]},{"name":"CurveChannelRed","features":[409]},{"name":"CustomLineCap","features":[409]},{"name":"CustomLineCapType","features":[409]},{"name":"CustomLineCapTypeAdjustableArrow","features":[409]},{"name":"CustomLineCapTypeDefault","features":[409]},{"name":"DashCap","features":[409]},{"name":"DashCapFlat","features":[409]},{"name":"DashCapRound","features":[409]},{"name":"DashCapTriangle","features":[409]},{"name":"DashStyle","features":[409]},{"name":"DashStyleCustom","features":[409]},{"name":"DashStyleDash","features":[409]},{"name":"DashStyleDashDot","features":[409]},{"name":"DashStyleDashDotDot","features":[409]},{"name":"DashStyleDot","features":[409]},{"name":"DashStyleSolid","features":[409]},{"name":"DebugEventLevel","features":[409]},{"name":"DebugEventLevelFatal","features":[409]},{"name":"DebugEventLevelWarning","features":[409]},{"name":"DebugEventProc","features":[409]},{"name":"DitherType","features":[409]},{"name":"DitherTypeDualSpiral4x4","features":[409]},{"name":"DitherTypeDualSpiral8x8","features":[409]},{"name":"DitherTypeErrorDiffusion","features":[409]},{"name":"DitherTypeMax","features":[409]},{"name":"DitherTypeNone","features":[409]},{"name":"DitherTypeOrdered16x16","features":[409]},{"name":"DitherTypeOrdered4x4","features":[409]},{"name":"DitherTypeOrdered8x8","features":[409]},{"name":"DitherTypeSolid","features":[409]},{"name":"DitherTypeSpiral4x4","features":[409]},{"name":"DitherTypeSpiral8x8","features":[409]},{"name":"DrawImageAbort","features":[305,409]},{"name":"DriverStringOptions","features":[409]},{"name":"DriverStringOptionsCmapLookup","features":[409]},{"name":"DriverStringOptionsLimitSubpixel","features":[409]},{"name":"DriverStringOptionsRealizedAdvance","features":[409]},{"name":"DriverStringOptionsVertical","features":[409]},{"name":"ENHMETAHEADER3","features":[305,409]},{"name":"Effect","features":[305,409]},{"name":"EmfPlusRecordTotal","features":[409]},{"name":"EmfPlusRecordType","features":[409]},{"name":"EmfPlusRecordTypeBeginContainer","features":[409]},{"name":"EmfPlusRecordTypeBeginContainerNoParams","features":[409]},{"name":"EmfPlusRecordTypeClear","features":[409]},{"name":"EmfPlusRecordTypeComment","features":[409]},{"name":"EmfPlusRecordTypeDrawArc","features":[409]},{"name":"EmfPlusRecordTypeDrawBeziers","features":[409]},{"name":"EmfPlusRecordTypeDrawClosedCurve","features":[409]},{"name":"EmfPlusRecordTypeDrawCurve","features":[409]},{"name":"EmfPlusRecordTypeDrawDriverString","features":[409]},{"name":"EmfPlusRecordTypeDrawEllipse","features":[409]},{"name":"EmfPlusRecordTypeDrawImage","features":[409]},{"name":"EmfPlusRecordTypeDrawImagePoints","features":[409]},{"name":"EmfPlusRecordTypeDrawLines","features":[409]},{"name":"EmfPlusRecordTypeDrawPath","features":[409]},{"name":"EmfPlusRecordTypeDrawPie","features":[409]},{"name":"EmfPlusRecordTypeDrawRects","features":[409]},{"name":"EmfPlusRecordTypeDrawString","features":[409]},{"name":"EmfPlusRecordTypeEndContainer","features":[409]},{"name":"EmfPlusRecordTypeEndOfFile","features":[409]},{"name":"EmfPlusRecordTypeFillClosedCurve","features":[409]},{"name":"EmfPlusRecordTypeFillEllipse","features":[409]},{"name":"EmfPlusRecordTypeFillPath","features":[409]},{"name":"EmfPlusRecordTypeFillPie","features":[409]},{"name":"EmfPlusRecordTypeFillPolygon","features":[409]},{"name":"EmfPlusRecordTypeFillRects","features":[409]},{"name":"EmfPlusRecordTypeFillRegion","features":[409]},{"name":"EmfPlusRecordTypeGetDC","features":[409]},{"name":"EmfPlusRecordTypeHeader","features":[409]},{"name":"EmfPlusRecordTypeInvalid","features":[409]},{"name":"EmfPlusRecordTypeMax","features":[409]},{"name":"EmfPlusRecordTypeMin","features":[409]},{"name":"EmfPlusRecordTypeMultiFormatEnd","features":[409]},{"name":"EmfPlusRecordTypeMultiFormatSection","features":[409]},{"name":"EmfPlusRecordTypeMultiFormatStart","features":[409]},{"name":"EmfPlusRecordTypeMultiplyWorldTransform","features":[409]},{"name":"EmfPlusRecordTypeObject","features":[409]},{"name":"EmfPlusRecordTypeOffsetClip","features":[409]},{"name":"EmfPlusRecordTypeResetClip","features":[409]},{"name":"EmfPlusRecordTypeResetWorldTransform","features":[409]},{"name":"EmfPlusRecordTypeRestore","features":[409]},{"name":"EmfPlusRecordTypeRotateWorldTransform","features":[409]},{"name":"EmfPlusRecordTypeSave","features":[409]},{"name":"EmfPlusRecordTypeScaleWorldTransform","features":[409]},{"name":"EmfPlusRecordTypeSerializableObject","features":[409]},{"name":"EmfPlusRecordTypeSetAntiAliasMode","features":[409]},{"name":"EmfPlusRecordTypeSetClipPath","features":[409]},{"name":"EmfPlusRecordTypeSetClipRect","features":[409]},{"name":"EmfPlusRecordTypeSetClipRegion","features":[409]},{"name":"EmfPlusRecordTypeSetCompositingMode","features":[409]},{"name":"EmfPlusRecordTypeSetCompositingQuality","features":[409]},{"name":"EmfPlusRecordTypeSetInterpolationMode","features":[409]},{"name":"EmfPlusRecordTypeSetPageTransform","features":[409]},{"name":"EmfPlusRecordTypeSetPixelOffsetMode","features":[409]},{"name":"EmfPlusRecordTypeSetRenderingOrigin","features":[409]},{"name":"EmfPlusRecordTypeSetTSClip","features":[409]},{"name":"EmfPlusRecordTypeSetTSGraphics","features":[409]},{"name":"EmfPlusRecordTypeSetTextContrast","features":[409]},{"name":"EmfPlusRecordTypeSetTextRenderingHint","features":[409]},{"name":"EmfPlusRecordTypeSetWorldTransform","features":[409]},{"name":"EmfPlusRecordTypeStrokeFillPath","features":[409]},{"name":"EmfPlusRecordTypeTranslateWorldTransform","features":[409]},{"name":"EmfRecordTypeAbortPath","features":[409]},{"name":"EmfRecordTypeAlphaBlend","features":[409]},{"name":"EmfRecordTypeAngleArc","features":[409]},{"name":"EmfRecordTypeArc","features":[409]},{"name":"EmfRecordTypeArcTo","features":[409]},{"name":"EmfRecordTypeBeginPath","features":[409]},{"name":"EmfRecordTypeBitBlt","features":[409]},{"name":"EmfRecordTypeChord","features":[409]},{"name":"EmfRecordTypeCloseFigure","features":[409]},{"name":"EmfRecordTypeColorCorrectPalette","features":[409]},{"name":"EmfRecordTypeColorMatchToTargetW","features":[409]},{"name":"EmfRecordTypeCreateBrushIndirect","features":[409]},{"name":"EmfRecordTypeCreateColorSpace","features":[409]},{"name":"EmfRecordTypeCreateColorSpaceW","features":[409]},{"name":"EmfRecordTypeCreateDIBPatternBrushPt","features":[409]},{"name":"EmfRecordTypeCreateMonoBrush","features":[409]},{"name":"EmfRecordTypeCreatePalette","features":[409]},{"name":"EmfRecordTypeCreatePen","features":[409]},{"name":"EmfRecordTypeDeleteColorSpace","features":[409]},{"name":"EmfRecordTypeDeleteObject","features":[409]},{"name":"EmfRecordTypeDrawEscape","features":[409]},{"name":"EmfRecordTypeEOF","features":[409]},{"name":"EmfRecordTypeEllipse","features":[409]},{"name":"EmfRecordTypeEndPath","features":[409]},{"name":"EmfRecordTypeExcludeClipRect","features":[409]},{"name":"EmfRecordTypeExtCreateFontIndirect","features":[409]},{"name":"EmfRecordTypeExtCreatePen","features":[409]},{"name":"EmfRecordTypeExtEscape","features":[409]},{"name":"EmfRecordTypeExtFloodFill","features":[409]},{"name":"EmfRecordTypeExtSelectClipRgn","features":[409]},{"name":"EmfRecordTypeExtTextOutA","features":[409]},{"name":"EmfRecordTypeExtTextOutW","features":[409]},{"name":"EmfRecordTypeFillPath","features":[409]},{"name":"EmfRecordTypeFillRgn","features":[409]},{"name":"EmfRecordTypeFlattenPath","features":[409]},{"name":"EmfRecordTypeForceUFIMapping","features":[409]},{"name":"EmfRecordTypeFrameRgn","features":[409]},{"name":"EmfRecordTypeGLSBoundedRecord","features":[409]},{"name":"EmfRecordTypeGLSRecord","features":[409]},{"name":"EmfRecordTypeGdiComment","features":[409]},{"name":"EmfRecordTypeGradientFill","features":[409]},{"name":"EmfRecordTypeHeader","features":[409]},{"name":"EmfRecordTypeIntersectClipRect","features":[409]},{"name":"EmfRecordTypeInvertRgn","features":[409]},{"name":"EmfRecordTypeLineTo","features":[409]},{"name":"EmfRecordTypeMaskBlt","features":[409]},{"name":"EmfRecordTypeMax","features":[409]},{"name":"EmfRecordTypeMin","features":[409]},{"name":"EmfRecordTypeModifyWorldTransform","features":[409]},{"name":"EmfRecordTypeMoveToEx","features":[409]},{"name":"EmfRecordTypeNamedEscape","features":[409]},{"name":"EmfRecordTypeOffsetClipRgn","features":[409]},{"name":"EmfRecordTypePaintRgn","features":[409]},{"name":"EmfRecordTypePie","features":[409]},{"name":"EmfRecordTypePixelFormat","features":[409]},{"name":"EmfRecordTypePlgBlt","features":[409]},{"name":"EmfRecordTypePolyBezier","features":[409]},{"name":"EmfRecordTypePolyBezier16","features":[409]},{"name":"EmfRecordTypePolyBezierTo","features":[409]},{"name":"EmfRecordTypePolyBezierTo16","features":[409]},{"name":"EmfRecordTypePolyDraw","features":[409]},{"name":"EmfRecordTypePolyDraw16","features":[409]},{"name":"EmfRecordTypePolyLineTo","features":[409]},{"name":"EmfRecordTypePolyPolygon","features":[409]},{"name":"EmfRecordTypePolyPolygon16","features":[409]},{"name":"EmfRecordTypePolyPolyline","features":[409]},{"name":"EmfRecordTypePolyPolyline16","features":[409]},{"name":"EmfRecordTypePolyTextOutA","features":[409]},{"name":"EmfRecordTypePolyTextOutW","features":[409]},{"name":"EmfRecordTypePolygon","features":[409]},{"name":"EmfRecordTypePolygon16","features":[409]},{"name":"EmfRecordTypePolyline","features":[409]},{"name":"EmfRecordTypePolyline16","features":[409]},{"name":"EmfRecordTypePolylineTo16","features":[409]},{"name":"EmfRecordTypeRealizePalette","features":[409]},{"name":"EmfRecordTypeRectangle","features":[409]},{"name":"EmfRecordTypeReserved_069","features":[409]},{"name":"EmfRecordTypeReserved_117","features":[409]},{"name":"EmfRecordTypeResizePalette","features":[409]},{"name":"EmfRecordTypeRestoreDC","features":[409]},{"name":"EmfRecordTypeRoundRect","features":[409]},{"name":"EmfRecordTypeSaveDC","features":[409]},{"name":"EmfRecordTypeScaleViewportExtEx","features":[409]},{"name":"EmfRecordTypeScaleWindowExtEx","features":[409]},{"name":"EmfRecordTypeSelectClipPath","features":[409]},{"name":"EmfRecordTypeSelectObject","features":[409]},{"name":"EmfRecordTypeSelectPalette","features":[409]},{"name":"EmfRecordTypeSetArcDirection","features":[409]},{"name":"EmfRecordTypeSetBkColor","features":[409]},{"name":"EmfRecordTypeSetBkMode","features":[409]},{"name":"EmfRecordTypeSetBrushOrgEx","features":[409]},{"name":"EmfRecordTypeSetColorAdjustment","features":[409]},{"name":"EmfRecordTypeSetColorSpace","features":[409]},{"name":"EmfRecordTypeSetDIBitsToDevice","features":[409]},{"name":"EmfRecordTypeSetICMMode","features":[409]},{"name":"EmfRecordTypeSetICMProfileA","features":[409]},{"name":"EmfRecordTypeSetICMProfileW","features":[409]},{"name":"EmfRecordTypeSetLayout","features":[409]},{"name":"EmfRecordTypeSetLinkedUFIs","features":[409]},{"name":"EmfRecordTypeSetMapMode","features":[409]},{"name":"EmfRecordTypeSetMapperFlags","features":[409]},{"name":"EmfRecordTypeSetMetaRgn","features":[409]},{"name":"EmfRecordTypeSetMiterLimit","features":[409]},{"name":"EmfRecordTypeSetPaletteEntries","features":[409]},{"name":"EmfRecordTypeSetPixelV","features":[409]},{"name":"EmfRecordTypeSetPolyFillMode","features":[409]},{"name":"EmfRecordTypeSetROP2","features":[409]},{"name":"EmfRecordTypeSetStretchBltMode","features":[409]},{"name":"EmfRecordTypeSetTextAlign","features":[409]},{"name":"EmfRecordTypeSetTextColor","features":[409]},{"name":"EmfRecordTypeSetTextJustification","features":[409]},{"name":"EmfRecordTypeSetViewportExtEx","features":[409]},{"name":"EmfRecordTypeSetViewportOrgEx","features":[409]},{"name":"EmfRecordTypeSetWindowExtEx","features":[409]},{"name":"EmfRecordTypeSetWindowOrgEx","features":[409]},{"name":"EmfRecordTypeSetWorldTransform","features":[409]},{"name":"EmfRecordTypeSmallTextOut","features":[409]},{"name":"EmfRecordTypeStartDoc","features":[409]},{"name":"EmfRecordTypeStretchBlt","features":[409]},{"name":"EmfRecordTypeStretchDIBits","features":[409]},{"name":"EmfRecordTypeStrokeAndFillPath","features":[409]},{"name":"EmfRecordTypeStrokePath","features":[409]},{"name":"EmfRecordTypeTransparentBlt","features":[409]},{"name":"EmfRecordTypeWidenPath","features":[409]},{"name":"EmfToWmfBitsFlags","features":[409]},{"name":"EmfToWmfBitsFlagsDefault","features":[409]},{"name":"EmfToWmfBitsFlagsEmbedEmf","features":[409]},{"name":"EmfToWmfBitsFlagsIncludePlaceable","features":[409]},{"name":"EmfToWmfBitsFlagsNoXORClip","features":[409]},{"name":"EmfType","features":[409]},{"name":"EmfTypeEmfOnly","features":[409]},{"name":"EmfTypeEmfPlusDual","features":[409]},{"name":"EmfTypeEmfPlusOnly","features":[409]},{"name":"EncoderChrominanceTable","features":[409]},{"name":"EncoderColorDepth","features":[409]},{"name":"EncoderColorSpace","features":[409]},{"name":"EncoderCompression","features":[409]},{"name":"EncoderImageItems","features":[409]},{"name":"EncoderLuminanceTable","features":[409]},{"name":"EncoderParameter","features":[409]},{"name":"EncoderParameterValueType","features":[409]},{"name":"EncoderParameterValueTypeASCII","features":[409]},{"name":"EncoderParameterValueTypeByte","features":[409]},{"name":"EncoderParameterValueTypeLong","features":[409]},{"name":"EncoderParameterValueTypeLongRange","features":[409]},{"name":"EncoderParameterValueTypePointer","features":[409]},{"name":"EncoderParameterValueTypeRational","features":[409]},{"name":"EncoderParameterValueTypeRationalRange","features":[409]},{"name":"EncoderParameterValueTypeShort","features":[409]},{"name":"EncoderParameterValueTypeUndefined","features":[409]},{"name":"EncoderParameters","features":[409]},{"name":"EncoderQuality","features":[409]},{"name":"EncoderRenderMethod","features":[409]},{"name":"EncoderSaveAsCMYK","features":[409]},{"name":"EncoderSaveFlag","features":[409]},{"name":"EncoderScanMethod","features":[409]},{"name":"EncoderTransformation","features":[409]},{"name":"EncoderValue","features":[409]},{"name":"EncoderValueColorTypeCMYK","features":[409]},{"name":"EncoderValueColorTypeGray","features":[409]},{"name":"EncoderValueColorTypeRGB","features":[409]},{"name":"EncoderValueColorTypeYCCK","features":[409]},{"name":"EncoderValueCompressionCCITT3","features":[409]},{"name":"EncoderValueCompressionCCITT4","features":[409]},{"name":"EncoderValueCompressionLZW","features":[409]},{"name":"EncoderValueCompressionNone","features":[409]},{"name":"EncoderValueCompressionRle","features":[409]},{"name":"EncoderValueFlush","features":[409]},{"name":"EncoderValueFrameDimensionPage","features":[409]},{"name":"EncoderValueFrameDimensionResolution","features":[409]},{"name":"EncoderValueFrameDimensionTime","features":[409]},{"name":"EncoderValueLastFrame","features":[409]},{"name":"EncoderValueMultiFrame","features":[409]},{"name":"EncoderValueRenderNonProgressive","features":[409]},{"name":"EncoderValueRenderProgressive","features":[409]},{"name":"EncoderValueScanMethodInterlaced","features":[409]},{"name":"EncoderValueScanMethodNonInterlaced","features":[409]},{"name":"EncoderValueTransformFlipHorizontal","features":[409]},{"name":"EncoderValueTransformFlipVertical","features":[409]},{"name":"EncoderValueTransformRotate180","features":[409]},{"name":"EncoderValueTransformRotate270","features":[409]},{"name":"EncoderValueTransformRotate90","features":[409]},{"name":"EncoderValueVersionGif87","features":[409]},{"name":"EncoderValueVersionGif89","features":[409]},{"name":"EncoderVersion","features":[409]},{"name":"EnumerateMetafileProc","features":[305,409]},{"name":"FileNotFound","features":[409]},{"name":"FillMode","features":[409]},{"name":"FillModeAlternate","features":[409]},{"name":"FillModeWinding","features":[409]},{"name":"FlatnessDefault","features":[409]},{"name":"FlushIntention","features":[409]},{"name":"FlushIntentionFlush","features":[409]},{"name":"FlushIntentionSync","features":[409]},{"name":"Font","features":[409]},{"name":"FontCollection","features":[409]},{"name":"FontFamily","features":[409]},{"name":"FontFamilyNotFound","features":[409]},{"name":"FontStyle","features":[409]},{"name":"FontStyleBold","features":[409]},{"name":"FontStyleBoldItalic","features":[409]},{"name":"FontStyleItalic","features":[409]},{"name":"FontStyleNotFound","features":[409]},{"name":"FontStyleRegular","features":[409]},{"name":"FontStyleStrikeout","features":[409]},{"name":"FontStyleUnderline","features":[409]},{"name":"FormatIDImageInformation","features":[409]},{"name":"FormatIDJpegAppHeaders","features":[409]},{"name":"FrameDimensionPage","features":[409]},{"name":"FrameDimensionResolution","features":[409]},{"name":"FrameDimensionTime","features":[409]},{"name":"GDIP_EMFPLUSFLAGS_DISPLAY","features":[409]},{"name":"GDIP_EMFPLUS_RECORD_BASE","features":[409]},{"name":"GDIP_WMF_RECORD_BASE","features":[409]},{"name":"GREEN_SHIFT","features":[409]},{"name":"GdipAddPathArc","features":[409]},{"name":"GdipAddPathArcI","features":[409]},{"name":"GdipAddPathBezier","features":[409]},{"name":"GdipAddPathBezierI","features":[409]},{"name":"GdipAddPathBeziers","features":[409]},{"name":"GdipAddPathBeziersI","features":[409]},{"name":"GdipAddPathClosedCurve","features":[409]},{"name":"GdipAddPathClosedCurve2","features":[409]},{"name":"GdipAddPathClosedCurve2I","features":[409]},{"name":"GdipAddPathClosedCurveI","features":[409]},{"name":"GdipAddPathCurve","features":[409]},{"name":"GdipAddPathCurve2","features":[409]},{"name":"GdipAddPathCurve2I","features":[409]},{"name":"GdipAddPathCurve3","features":[409]},{"name":"GdipAddPathCurve3I","features":[409]},{"name":"GdipAddPathCurveI","features":[409]},{"name":"GdipAddPathEllipse","features":[409]},{"name":"GdipAddPathEllipseI","features":[409]},{"name":"GdipAddPathLine","features":[409]},{"name":"GdipAddPathLine2","features":[409]},{"name":"GdipAddPathLine2I","features":[409]},{"name":"GdipAddPathLineI","features":[409]},{"name":"GdipAddPathPath","features":[305,409]},{"name":"GdipAddPathPie","features":[409]},{"name":"GdipAddPathPieI","features":[409]},{"name":"GdipAddPathPolygon","features":[409]},{"name":"GdipAddPathPolygonI","features":[409]},{"name":"GdipAddPathRectangle","features":[409]},{"name":"GdipAddPathRectangleI","features":[409]},{"name":"GdipAddPathRectangles","features":[409]},{"name":"GdipAddPathRectanglesI","features":[409]},{"name":"GdipAddPathString","features":[409]},{"name":"GdipAddPathStringI","features":[409]},{"name":"GdipAlloc","features":[409]},{"name":"GdipBeginContainer","features":[409]},{"name":"GdipBeginContainer2","features":[409]},{"name":"GdipBeginContainerI","features":[409]},{"name":"GdipBitmapApplyEffect","features":[305,409]},{"name":"GdipBitmapConvertFormat","features":[409]},{"name":"GdipBitmapCreateApplyEffect","features":[305,409]},{"name":"GdipBitmapGetHistogram","features":[409]},{"name":"GdipBitmapGetHistogramSize","features":[409]},{"name":"GdipBitmapGetPixel","features":[409]},{"name":"GdipBitmapLockBits","features":[409]},{"name":"GdipBitmapSetPixel","features":[409]},{"name":"GdipBitmapSetResolution","features":[409]},{"name":"GdipBitmapUnlockBits","features":[409]},{"name":"GdipClearPathMarkers","features":[409]},{"name":"GdipCloneBitmapArea","features":[409]},{"name":"GdipCloneBitmapAreaI","features":[409]},{"name":"GdipCloneBrush","features":[409]},{"name":"GdipCloneCustomLineCap","features":[409]},{"name":"GdipCloneFont","features":[409]},{"name":"GdipCloneFontFamily","features":[409]},{"name":"GdipCloneImage","features":[409]},{"name":"GdipCloneImageAttributes","features":[409]},{"name":"GdipCloneMatrix","features":[409]},{"name":"GdipClonePath","features":[409]},{"name":"GdipClonePen","features":[409]},{"name":"GdipCloneRegion","features":[409]},{"name":"GdipCloneStringFormat","features":[409]},{"name":"GdipClosePathFigure","features":[409]},{"name":"GdipClosePathFigures","features":[409]},{"name":"GdipCombineRegionPath","features":[409]},{"name":"GdipCombineRegionRect","features":[409]},{"name":"GdipCombineRegionRectI","features":[409]},{"name":"GdipCombineRegionRegion","features":[409]},{"name":"GdipComment","features":[409]},{"name":"GdipConvertToEmfPlus","features":[409]},{"name":"GdipConvertToEmfPlusToFile","features":[409]},{"name":"GdipConvertToEmfPlusToStream","features":[409,356]},{"name":"GdipCreateAdjustableArrowCap","features":[305,409]},{"name":"GdipCreateBitmapFromDirectDrawSurface","features":[315,409]},{"name":"GdipCreateBitmapFromFile","features":[409]},{"name":"GdipCreateBitmapFromFileICM","features":[409]},{"name":"GdipCreateBitmapFromGdiDib","features":[316,409]},{"name":"GdipCreateBitmapFromGraphics","features":[409]},{"name":"GdipCreateBitmapFromHBITMAP","features":[316,409]},{"name":"GdipCreateBitmapFromHICON","features":[409,367]},{"name":"GdipCreateBitmapFromResource","features":[305,409]},{"name":"GdipCreateBitmapFromScan0","features":[409]},{"name":"GdipCreateBitmapFromStream","features":[409,356]},{"name":"GdipCreateBitmapFromStreamICM","features":[409,356]},{"name":"GdipCreateCachedBitmap","features":[409]},{"name":"GdipCreateCustomLineCap","features":[409]},{"name":"GdipCreateEffect","features":[409]},{"name":"GdipCreateFont","features":[409]},{"name":"GdipCreateFontFamilyFromName","features":[409]},{"name":"GdipCreateFontFromDC","features":[316,409]},{"name":"GdipCreateFontFromLogfontA","features":[316,409]},{"name":"GdipCreateFontFromLogfontW","features":[316,409]},{"name":"GdipCreateFromHDC","features":[316,409]},{"name":"GdipCreateFromHDC2","features":[305,316,409]},{"name":"GdipCreateFromHWND","features":[305,409]},{"name":"GdipCreateFromHWNDICM","features":[305,409]},{"name":"GdipCreateHBITMAPFromBitmap","features":[316,409]},{"name":"GdipCreateHICONFromBitmap","features":[409,367]},{"name":"GdipCreateHalftonePalette","features":[316,409]},{"name":"GdipCreateHatchBrush","features":[409]},{"name":"GdipCreateImageAttributes","features":[409]},{"name":"GdipCreateLineBrush","features":[409]},{"name":"GdipCreateLineBrushFromRect","features":[409]},{"name":"GdipCreateLineBrushFromRectI","features":[409]},{"name":"GdipCreateLineBrushFromRectWithAngle","features":[305,409]},{"name":"GdipCreateLineBrushFromRectWithAngleI","features":[305,409]},{"name":"GdipCreateLineBrushI","features":[409]},{"name":"GdipCreateMatrix","features":[409]},{"name":"GdipCreateMatrix2","features":[409]},{"name":"GdipCreateMatrix3","features":[409]},{"name":"GdipCreateMatrix3I","features":[409]},{"name":"GdipCreateMetafileFromEmf","features":[305,316,409]},{"name":"GdipCreateMetafileFromFile","features":[409]},{"name":"GdipCreateMetafileFromStream","features":[409,356]},{"name":"GdipCreateMetafileFromWmf","features":[305,316,409]},{"name":"GdipCreateMetafileFromWmfFile","features":[409]},{"name":"GdipCreatePath","features":[409]},{"name":"GdipCreatePath2","features":[409]},{"name":"GdipCreatePath2I","features":[409]},{"name":"GdipCreatePathGradient","features":[409]},{"name":"GdipCreatePathGradientFromPath","features":[409]},{"name":"GdipCreatePathGradientI","features":[409]},{"name":"GdipCreatePathIter","features":[409]},{"name":"GdipCreatePen1","features":[409]},{"name":"GdipCreatePen2","features":[409]},{"name":"GdipCreateRegion","features":[409]},{"name":"GdipCreateRegionHrgn","features":[316,409]},{"name":"GdipCreateRegionPath","features":[409]},{"name":"GdipCreateRegionRect","features":[409]},{"name":"GdipCreateRegionRectI","features":[409]},{"name":"GdipCreateRegionRgnData","features":[409]},{"name":"GdipCreateSolidFill","features":[409]},{"name":"GdipCreateStreamOnFile","features":[409,356]},{"name":"GdipCreateStringFormat","features":[409]},{"name":"GdipCreateTexture","features":[409]},{"name":"GdipCreateTexture2","features":[409]},{"name":"GdipCreateTexture2I","features":[409]},{"name":"GdipCreateTextureIA","features":[409]},{"name":"GdipCreateTextureIAI","features":[409]},{"name":"GdipDeleteBrush","features":[409]},{"name":"GdipDeleteCachedBitmap","features":[409]},{"name":"GdipDeleteCustomLineCap","features":[409]},{"name":"GdipDeleteEffect","features":[409]},{"name":"GdipDeleteFont","features":[409]},{"name":"GdipDeleteFontFamily","features":[409]},{"name":"GdipDeleteGraphics","features":[409]},{"name":"GdipDeleteMatrix","features":[409]},{"name":"GdipDeletePath","features":[409]},{"name":"GdipDeletePathIter","features":[409]},{"name":"GdipDeletePen","features":[409]},{"name":"GdipDeletePrivateFontCollection","features":[409]},{"name":"GdipDeleteRegion","features":[409]},{"name":"GdipDeleteStringFormat","features":[409]},{"name":"GdipDisposeImage","features":[409]},{"name":"GdipDisposeImageAttributes","features":[409]},{"name":"GdipDrawArc","features":[409]},{"name":"GdipDrawArcI","features":[409]},{"name":"GdipDrawBezier","features":[409]},{"name":"GdipDrawBezierI","features":[409]},{"name":"GdipDrawBeziers","features":[409]},{"name":"GdipDrawBeziersI","features":[409]},{"name":"GdipDrawCachedBitmap","features":[409]},{"name":"GdipDrawClosedCurve","features":[409]},{"name":"GdipDrawClosedCurve2","features":[409]},{"name":"GdipDrawClosedCurve2I","features":[409]},{"name":"GdipDrawClosedCurveI","features":[409]},{"name":"GdipDrawCurve","features":[409]},{"name":"GdipDrawCurve2","features":[409]},{"name":"GdipDrawCurve2I","features":[409]},{"name":"GdipDrawCurve3","features":[409]},{"name":"GdipDrawCurve3I","features":[409]},{"name":"GdipDrawCurveI","features":[409]},{"name":"GdipDrawDriverString","features":[409]},{"name":"GdipDrawEllipse","features":[409]},{"name":"GdipDrawEllipseI","features":[409]},{"name":"GdipDrawImage","features":[409]},{"name":"GdipDrawImageFX","features":[409]},{"name":"GdipDrawImageI","features":[409]},{"name":"GdipDrawImagePointRect","features":[409]},{"name":"GdipDrawImagePointRectI","features":[409]},{"name":"GdipDrawImagePoints","features":[409]},{"name":"GdipDrawImagePointsI","features":[409]},{"name":"GdipDrawImagePointsRect","features":[409]},{"name":"GdipDrawImagePointsRectI","features":[409]},{"name":"GdipDrawImageRect","features":[409]},{"name":"GdipDrawImageRectI","features":[409]},{"name":"GdipDrawImageRectRect","features":[409]},{"name":"GdipDrawImageRectRectI","features":[409]},{"name":"GdipDrawLine","features":[409]},{"name":"GdipDrawLineI","features":[409]},{"name":"GdipDrawLines","features":[409]},{"name":"GdipDrawLinesI","features":[409]},{"name":"GdipDrawPath","features":[409]},{"name":"GdipDrawPie","features":[409]},{"name":"GdipDrawPieI","features":[409]},{"name":"GdipDrawPolygon","features":[409]},{"name":"GdipDrawPolygonI","features":[409]},{"name":"GdipDrawRectangle","features":[409]},{"name":"GdipDrawRectangleI","features":[409]},{"name":"GdipDrawRectangles","features":[409]},{"name":"GdipDrawRectanglesI","features":[409]},{"name":"GdipDrawString","features":[409]},{"name":"GdipEmfToWmfBits","features":[316,409]},{"name":"GdipEndContainer","features":[409]},{"name":"GdipEnumerateMetafileDestPoint","features":[409]},{"name":"GdipEnumerateMetafileDestPointI","features":[409]},{"name":"GdipEnumerateMetafileDestPoints","features":[409]},{"name":"GdipEnumerateMetafileDestPointsI","features":[409]},{"name":"GdipEnumerateMetafileDestRect","features":[409]},{"name":"GdipEnumerateMetafileDestRectI","features":[409]},{"name":"GdipEnumerateMetafileSrcRectDestPoint","features":[409]},{"name":"GdipEnumerateMetafileSrcRectDestPointI","features":[409]},{"name":"GdipEnumerateMetafileSrcRectDestPoints","features":[409]},{"name":"GdipEnumerateMetafileSrcRectDestPointsI","features":[409]},{"name":"GdipEnumerateMetafileSrcRectDestRect","features":[409]},{"name":"GdipEnumerateMetafileSrcRectDestRectI","features":[409]},{"name":"GdipFillClosedCurve","features":[409]},{"name":"GdipFillClosedCurve2","features":[409]},{"name":"GdipFillClosedCurve2I","features":[409]},{"name":"GdipFillClosedCurveI","features":[409]},{"name":"GdipFillEllipse","features":[409]},{"name":"GdipFillEllipseI","features":[409]},{"name":"GdipFillPath","features":[409]},{"name":"GdipFillPie","features":[409]},{"name":"GdipFillPieI","features":[409]},{"name":"GdipFillPolygon","features":[409]},{"name":"GdipFillPolygon2","features":[409]},{"name":"GdipFillPolygon2I","features":[409]},{"name":"GdipFillPolygonI","features":[409]},{"name":"GdipFillRectangle","features":[409]},{"name":"GdipFillRectangleI","features":[409]},{"name":"GdipFillRectangles","features":[409]},{"name":"GdipFillRectanglesI","features":[409]},{"name":"GdipFillRegion","features":[409]},{"name":"GdipFindFirstImageItem","features":[409]},{"name":"GdipFindNextImageItem","features":[409]},{"name":"GdipFlattenPath","features":[409]},{"name":"GdipFlush","features":[409]},{"name":"GdipFree","features":[409]},{"name":"GdipGetAdjustableArrowCapFillState","features":[305,409]},{"name":"GdipGetAdjustableArrowCapHeight","features":[409]},{"name":"GdipGetAdjustableArrowCapMiddleInset","features":[409]},{"name":"GdipGetAdjustableArrowCapWidth","features":[409]},{"name":"GdipGetAllPropertyItems","features":[409]},{"name":"GdipGetBrushType","features":[409]},{"name":"GdipGetCellAscent","features":[409]},{"name":"GdipGetCellDescent","features":[409]},{"name":"GdipGetClip","features":[409]},{"name":"GdipGetClipBounds","features":[409]},{"name":"GdipGetClipBoundsI","features":[409]},{"name":"GdipGetCompositingMode","features":[409]},{"name":"GdipGetCompositingQuality","features":[409]},{"name":"GdipGetCustomLineCapBaseCap","features":[409]},{"name":"GdipGetCustomLineCapBaseInset","features":[409]},{"name":"GdipGetCustomLineCapStrokeCaps","features":[409]},{"name":"GdipGetCustomLineCapStrokeJoin","features":[409]},{"name":"GdipGetCustomLineCapType","features":[409]},{"name":"GdipGetCustomLineCapWidthScale","features":[409]},{"name":"GdipGetDC","features":[316,409]},{"name":"GdipGetDpiX","features":[409]},{"name":"GdipGetDpiY","features":[409]},{"name":"GdipGetEffectParameterSize","features":[409]},{"name":"GdipGetEffectParameters","features":[409]},{"name":"GdipGetEmHeight","features":[409]},{"name":"GdipGetEncoderParameterList","features":[409]},{"name":"GdipGetEncoderParameterListSize","features":[409]},{"name":"GdipGetFamily","features":[409]},{"name":"GdipGetFamilyName","features":[409]},{"name":"GdipGetFontCollectionFamilyCount","features":[409]},{"name":"GdipGetFontCollectionFamilyList","features":[409]},{"name":"GdipGetFontHeight","features":[409]},{"name":"GdipGetFontHeightGivenDPI","features":[409]},{"name":"GdipGetFontSize","features":[409]},{"name":"GdipGetFontStyle","features":[409]},{"name":"GdipGetFontUnit","features":[409]},{"name":"GdipGetGenericFontFamilyMonospace","features":[409]},{"name":"GdipGetGenericFontFamilySansSerif","features":[409]},{"name":"GdipGetGenericFontFamilySerif","features":[409]},{"name":"GdipGetHatchBackgroundColor","features":[409]},{"name":"GdipGetHatchForegroundColor","features":[409]},{"name":"GdipGetHatchStyle","features":[409]},{"name":"GdipGetHemfFromMetafile","features":[316,409]},{"name":"GdipGetImageAttributesAdjustedPalette","features":[409]},{"name":"GdipGetImageBounds","features":[409]},{"name":"GdipGetImageDecoders","features":[409]},{"name":"GdipGetImageDecodersSize","features":[409]},{"name":"GdipGetImageDimension","features":[409]},{"name":"GdipGetImageEncoders","features":[409]},{"name":"GdipGetImageEncodersSize","features":[409]},{"name":"GdipGetImageFlags","features":[409]},{"name":"GdipGetImageGraphicsContext","features":[409]},{"name":"GdipGetImageHeight","features":[409]},{"name":"GdipGetImageHorizontalResolution","features":[409]},{"name":"GdipGetImageItemData","features":[409]},{"name":"GdipGetImagePalette","features":[409]},{"name":"GdipGetImagePaletteSize","features":[409]},{"name":"GdipGetImagePixelFormat","features":[409]},{"name":"GdipGetImageRawFormat","features":[409]},{"name":"GdipGetImageThumbnail","features":[409]},{"name":"GdipGetImageType","features":[409]},{"name":"GdipGetImageVerticalResolution","features":[409]},{"name":"GdipGetImageWidth","features":[409]},{"name":"GdipGetInterpolationMode","features":[409]},{"name":"GdipGetLineBlend","features":[409]},{"name":"GdipGetLineBlendCount","features":[409]},{"name":"GdipGetLineColors","features":[409]},{"name":"GdipGetLineGammaCorrection","features":[305,409]},{"name":"GdipGetLinePresetBlend","features":[409]},{"name":"GdipGetLinePresetBlendCount","features":[409]},{"name":"GdipGetLineRect","features":[409]},{"name":"GdipGetLineRectI","features":[409]},{"name":"GdipGetLineSpacing","features":[409]},{"name":"GdipGetLineTransform","features":[409]},{"name":"GdipGetLineWrapMode","features":[409]},{"name":"GdipGetLogFontA","features":[316,409]},{"name":"GdipGetLogFontW","features":[316,409]},{"name":"GdipGetMatrixElements","features":[409]},{"name":"GdipGetMetafileDownLevelRasterizationLimit","features":[409]},{"name":"GdipGetMetafileHeaderFromEmf","features":[305,316,409]},{"name":"GdipGetMetafileHeaderFromFile","features":[305,316,409]},{"name":"GdipGetMetafileHeaderFromMetafile","features":[305,316,409]},{"name":"GdipGetMetafileHeaderFromStream","features":[305,316,409,356]},{"name":"GdipGetMetafileHeaderFromWmf","features":[305,316,409]},{"name":"GdipGetNearestColor","features":[409]},{"name":"GdipGetPageScale","features":[409]},{"name":"GdipGetPageUnit","features":[409]},{"name":"GdipGetPathData","features":[409]},{"name":"GdipGetPathFillMode","features":[409]},{"name":"GdipGetPathGradientBlend","features":[409]},{"name":"GdipGetPathGradientBlendCount","features":[409]},{"name":"GdipGetPathGradientCenterColor","features":[409]},{"name":"GdipGetPathGradientCenterPoint","features":[409]},{"name":"GdipGetPathGradientCenterPointI","features":[409]},{"name":"GdipGetPathGradientFocusScales","features":[409]},{"name":"GdipGetPathGradientGammaCorrection","features":[305,409]},{"name":"GdipGetPathGradientPath","features":[409]},{"name":"GdipGetPathGradientPointCount","features":[409]},{"name":"GdipGetPathGradientPresetBlend","features":[409]},{"name":"GdipGetPathGradientPresetBlendCount","features":[409]},{"name":"GdipGetPathGradientRect","features":[409]},{"name":"GdipGetPathGradientRectI","features":[409]},{"name":"GdipGetPathGradientSurroundColorCount","features":[409]},{"name":"GdipGetPathGradientSurroundColorsWithCount","features":[409]},{"name":"GdipGetPathGradientTransform","features":[409]},{"name":"GdipGetPathGradientWrapMode","features":[409]},{"name":"GdipGetPathLastPoint","features":[409]},{"name":"GdipGetPathPoints","features":[409]},{"name":"GdipGetPathPointsI","features":[409]},{"name":"GdipGetPathTypes","features":[409]},{"name":"GdipGetPathWorldBounds","features":[409]},{"name":"GdipGetPathWorldBoundsI","features":[409]},{"name":"GdipGetPenBrushFill","features":[409]},{"name":"GdipGetPenColor","features":[409]},{"name":"GdipGetPenCompoundArray","features":[409]},{"name":"GdipGetPenCompoundCount","features":[409]},{"name":"GdipGetPenCustomEndCap","features":[409]},{"name":"GdipGetPenCustomStartCap","features":[409]},{"name":"GdipGetPenDashArray","features":[409]},{"name":"GdipGetPenDashCap197819","features":[409]},{"name":"GdipGetPenDashCount","features":[409]},{"name":"GdipGetPenDashOffset","features":[409]},{"name":"GdipGetPenDashStyle","features":[409]},{"name":"GdipGetPenEndCap","features":[409]},{"name":"GdipGetPenFillType","features":[409]},{"name":"GdipGetPenLineJoin","features":[409]},{"name":"GdipGetPenMiterLimit","features":[409]},{"name":"GdipGetPenMode","features":[409]},{"name":"GdipGetPenStartCap","features":[409]},{"name":"GdipGetPenTransform","features":[409]},{"name":"GdipGetPenUnit","features":[409]},{"name":"GdipGetPenWidth","features":[409]},{"name":"GdipGetPixelOffsetMode","features":[409]},{"name":"GdipGetPointCount","features":[409]},{"name":"GdipGetPropertyCount","features":[409]},{"name":"GdipGetPropertyIdList","features":[409]},{"name":"GdipGetPropertyItem","features":[409]},{"name":"GdipGetPropertyItemSize","features":[409]},{"name":"GdipGetPropertySize","features":[409]},{"name":"GdipGetRegionBounds","features":[409]},{"name":"GdipGetRegionBoundsI","features":[409]},{"name":"GdipGetRegionData","features":[409]},{"name":"GdipGetRegionDataSize","features":[409]},{"name":"GdipGetRegionHRgn","features":[316,409]},{"name":"GdipGetRegionScans","features":[409]},{"name":"GdipGetRegionScansCount","features":[409]},{"name":"GdipGetRegionScansI","features":[409]},{"name":"GdipGetRenderingOrigin","features":[409]},{"name":"GdipGetSmoothingMode","features":[409]},{"name":"GdipGetSolidFillColor","features":[409]},{"name":"GdipGetStringFormatAlign","features":[409]},{"name":"GdipGetStringFormatDigitSubstitution","features":[409]},{"name":"GdipGetStringFormatFlags","features":[409]},{"name":"GdipGetStringFormatHotkeyPrefix","features":[409]},{"name":"GdipGetStringFormatLineAlign","features":[409]},{"name":"GdipGetStringFormatMeasurableCharacterRangeCount","features":[409]},{"name":"GdipGetStringFormatTabStopCount","features":[409]},{"name":"GdipGetStringFormatTabStops","features":[409]},{"name":"GdipGetStringFormatTrimming","features":[409]},{"name":"GdipGetTextContrast","features":[409]},{"name":"GdipGetTextRenderingHint","features":[409]},{"name":"GdipGetTextureImage","features":[409]},{"name":"GdipGetTextureTransform","features":[409]},{"name":"GdipGetTextureWrapMode","features":[409]},{"name":"GdipGetVisibleClipBounds","features":[409]},{"name":"GdipGetVisibleClipBoundsI","features":[409]},{"name":"GdipGetWorldTransform","features":[409]},{"name":"GdipGraphicsClear","features":[409]},{"name":"GdipGraphicsSetAbort","features":[409]},{"name":"GdipImageForceValidation","features":[409]},{"name":"GdipImageGetFrameCount","features":[409]},{"name":"GdipImageGetFrameDimensionsCount","features":[409]},{"name":"GdipImageGetFrameDimensionsList","features":[409]},{"name":"GdipImageRotateFlip","features":[409]},{"name":"GdipImageSelectActiveFrame","features":[409]},{"name":"GdipImageSetAbort","features":[409]},{"name":"GdipInitializePalette","features":[305,409]},{"name":"GdipInvertMatrix","features":[409]},{"name":"GdipIsClipEmpty","features":[305,409]},{"name":"GdipIsEmptyRegion","features":[305,409]},{"name":"GdipIsEqualRegion","features":[305,409]},{"name":"GdipIsInfiniteRegion","features":[305,409]},{"name":"GdipIsMatrixEqual","features":[305,409]},{"name":"GdipIsMatrixIdentity","features":[305,409]},{"name":"GdipIsMatrixInvertible","features":[305,409]},{"name":"GdipIsOutlineVisiblePathPoint","features":[305,409]},{"name":"GdipIsOutlineVisiblePathPointI","features":[305,409]},{"name":"GdipIsStyleAvailable","features":[305,409]},{"name":"GdipIsVisibleClipEmpty","features":[305,409]},{"name":"GdipIsVisiblePathPoint","features":[305,409]},{"name":"GdipIsVisiblePathPointI","features":[305,409]},{"name":"GdipIsVisiblePoint","features":[305,409]},{"name":"GdipIsVisiblePointI","features":[305,409]},{"name":"GdipIsVisibleRect","features":[305,409]},{"name":"GdipIsVisibleRectI","features":[305,409]},{"name":"GdipIsVisibleRegionPoint","features":[305,409]},{"name":"GdipIsVisibleRegionPointI","features":[305,409]},{"name":"GdipIsVisibleRegionRect","features":[305,409]},{"name":"GdipIsVisibleRegionRectI","features":[305,409]},{"name":"GdipLoadImageFromFile","features":[409]},{"name":"GdipLoadImageFromFileICM","features":[409]},{"name":"GdipLoadImageFromStream","features":[409,356]},{"name":"GdipLoadImageFromStreamICM","features":[409,356]},{"name":"GdipMeasureCharacterRanges","features":[409]},{"name":"GdipMeasureDriverString","features":[409]},{"name":"GdipMeasureString","features":[409]},{"name":"GdipMultiplyLineTransform","features":[409]},{"name":"GdipMultiplyMatrix","features":[409]},{"name":"GdipMultiplyPathGradientTransform","features":[409]},{"name":"GdipMultiplyPenTransform","features":[409]},{"name":"GdipMultiplyTextureTransform","features":[409]},{"name":"GdipMultiplyWorldTransform","features":[409]},{"name":"GdipNewInstalledFontCollection","features":[409]},{"name":"GdipNewPrivateFontCollection","features":[409]},{"name":"GdipPathIterCopyData","features":[409]},{"name":"GdipPathIterEnumerate","features":[409]},{"name":"GdipPathIterGetCount","features":[409]},{"name":"GdipPathIterGetSubpathCount","features":[409]},{"name":"GdipPathIterHasCurve","features":[305,409]},{"name":"GdipPathIterIsValid","features":[305,409]},{"name":"GdipPathIterNextMarker","features":[409]},{"name":"GdipPathIterNextMarkerPath","features":[409]},{"name":"GdipPathIterNextPathType","features":[409]},{"name":"GdipPathIterNextSubpath","features":[305,409]},{"name":"GdipPathIterNextSubpathPath","features":[305,409]},{"name":"GdipPathIterRewind","features":[409]},{"name":"GdipPlayMetafileRecord","features":[409]},{"name":"GdipPrivateAddFontFile","features":[409]},{"name":"GdipPrivateAddMemoryFont","features":[409]},{"name":"GdipRecordMetafile","features":[316,409]},{"name":"GdipRecordMetafileFileName","features":[316,409]},{"name":"GdipRecordMetafileFileNameI","features":[316,409]},{"name":"GdipRecordMetafileI","features":[316,409]},{"name":"GdipRecordMetafileStream","features":[316,409,356]},{"name":"GdipRecordMetafileStreamI","features":[316,409,356]},{"name":"GdipReleaseDC","features":[316,409]},{"name":"GdipRemovePropertyItem","features":[409]},{"name":"GdipResetClip","features":[409]},{"name":"GdipResetImageAttributes","features":[409]},{"name":"GdipResetLineTransform","features":[409]},{"name":"GdipResetPageTransform","features":[409]},{"name":"GdipResetPath","features":[409]},{"name":"GdipResetPathGradientTransform","features":[409]},{"name":"GdipResetPenTransform","features":[409]},{"name":"GdipResetTextureTransform","features":[409]},{"name":"GdipResetWorldTransform","features":[409]},{"name":"GdipRestoreGraphics","features":[409]},{"name":"GdipReversePath","features":[409]},{"name":"GdipRotateLineTransform","features":[409]},{"name":"GdipRotateMatrix","features":[409]},{"name":"GdipRotatePathGradientTransform","features":[409]},{"name":"GdipRotatePenTransform","features":[409]},{"name":"GdipRotateTextureTransform","features":[409]},{"name":"GdipRotateWorldTransform","features":[409]},{"name":"GdipSaveAdd","features":[409]},{"name":"GdipSaveAddImage","features":[409]},{"name":"GdipSaveGraphics","features":[409]},{"name":"GdipSaveImageToFile","features":[409]},{"name":"GdipSaveImageToStream","features":[409,356]},{"name":"GdipScaleLineTransform","features":[409]},{"name":"GdipScaleMatrix","features":[409]},{"name":"GdipScalePathGradientTransform","features":[409]},{"name":"GdipScalePenTransform","features":[409]},{"name":"GdipScaleTextureTransform","features":[409]},{"name":"GdipScaleWorldTransform","features":[409]},{"name":"GdipSetAdjustableArrowCapFillState","features":[305,409]},{"name":"GdipSetAdjustableArrowCapHeight","features":[409]},{"name":"GdipSetAdjustableArrowCapMiddleInset","features":[409]},{"name":"GdipSetAdjustableArrowCapWidth","features":[409]},{"name":"GdipSetClipGraphics","features":[409]},{"name":"GdipSetClipHrgn","features":[316,409]},{"name":"GdipSetClipPath","features":[409]},{"name":"GdipSetClipRect","features":[409]},{"name":"GdipSetClipRectI","features":[409]},{"name":"GdipSetClipRegion","features":[409]},{"name":"GdipSetCompositingMode","features":[409]},{"name":"GdipSetCompositingQuality","features":[409]},{"name":"GdipSetCustomLineCapBaseCap","features":[409]},{"name":"GdipSetCustomLineCapBaseInset","features":[409]},{"name":"GdipSetCustomLineCapStrokeCaps","features":[409]},{"name":"GdipSetCustomLineCapStrokeJoin","features":[409]},{"name":"GdipSetCustomLineCapWidthScale","features":[409]},{"name":"GdipSetEffectParameters","features":[409]},{"name":"GdipSetEmpty","features":[409]},{"name":"GdipSetImageAttributesCachedBackground","features":[305,409]},{"name":"GdipSetImageAttributesColorKeys","features":[305,409]},{"name":"GdipSetImageAttributesColorMatrix","features":[305,409]},{"name":"GdipSetImageAttributesGamma","features":[305,409]},{"name":"GdipSetImageAttributesNoOp","features":[305,409]},{"name":"GdipSetImageAttributesOutputChannel","features":[305,409]},{"name":"GdipSetImageAttributesOutputChannelColorProfile","features":[305,409]},{"name":"GdipSetImageAttributesRemapTable","features":[305,409]},{"name":"GdipSetImageAttributesThreshold","features":[305,409]},{"name":"GdipSetImageAttributesToIdentity","features":[409]},{"name":"GdipSetImageAttributesWrapMode","features":[305,409]},{"name":"GdipSetImagePalette","features":[409]},{"name":"GdipSetInfinite","features":[409]},{"name":"GdipSetInterpolationMode","features":[409]},{"name":"GdipSetLineBlend","features":[409]},{"name":"GdipSetLineColors","features":[409]},{"name":"GdipSetLineGammaCorrection","features":[305,409]},{"name":"GdipSetLineLinearBlend","features":[409]},{"name":"GdipSetLinePresetBlend","features":[409]},{"name":"GdipSetLineSigmaBlend","features":[409]},{"name":"GdipSetLineTransform","features":[409]},{"name":"GdipSetLineWrapMode","features":[409]},{"name":"GdipSetMatrixElements","features":[409]},{"name":"GdipSetMetafileDownLevelRasterizationLimit","features":[409]},{"name":"GdipSetPageScale","features":[409]},{"name":"GdipSetPageUnit","features":[409]},{"name":"GdipSetPathFillMode","features":[409]},{"name":"GdipSetPathGradientBlend","features":[409]},{"name":"GdipSetPathGradientCenterColor","features":[409]},{"name":"GdipSetPathGradientCenterPoint","features":[409]},{"name":"GdipSetPathGradientCenterPointI","features":[409]},{"name":"GdipSetPathGradientFocusScales","features":[409]},{"name":"GdipSetPathGradientGammaCorrection","features":[305,409]},{"name":"GdipSetPathGradientLinearBlend","features":[409]},{"name":"GdipSetPathGradientPath","features":[409]},{"name":"GdipSetPathGradientPresetBlend","features":[409]},{"name":"GdipSetPathGradientSigmaBlend","features":[409]},{"name":"GdipSetPathGradientSurroundColorsWithCount","features":[409]},{"name":"GdipSetPathGradientTransform","features":[409]},{"name":"GdipSetPathGradientWrapMode","features":[409]},{"name":"GdipSetPathMarker","features":[409]},{"name":"GdipSetPenBrushFill","features":[409]},{"name":"GdipSetPenColor","features":[409]},{"name":"GdipSetPenCompoundArray","features":[409]},{"name":"GdipSetPenCustomEndCap","features":[409]},{"name":"GdipSetPenCustomStartCap","features":[409]},{"name":"GdipSetPenDashArray","features":[409]},{"name":"GdipSetPenDashCap197819","features":[409]},{"name":"GdipSetPenDashOffset","features":[409]},{"name":"GdipSetPenDashStyle","features":[409]},{"name":"GdipSetPenEndCap","features":[409]},{"name":"GdipSetPenLineCap197819","features":[409]},{"name":"GdipSetPenLineJoin","features":[409]},{"name":"GdipSetPenMiterLimit","features":[409]},{"name":"GdipSetPenMode","features":[409]},{"name":"GdipSetPenStartCap","features":[409]},{"name":"GdipSetPenTransform","features":[409]},{"name":"GdipSetPenUnit","features":[409]},{"name":"GdipSetPenWidth","features":[409]},{"name":"GdipSetPixelOffsetMode","features":[409]},{"name":"GdipSetPropertyItem","features":[409]},{"name":"GdipSetRenderingOrigin","features":[409]},{"name":"GdipSetSmoothingMode","features":[409]},{"name":"GdipSetSolidFillColor","features":[409]},{"name":"GdipSetStringFormatAlign","features":[409]},{"name":"GdipSetStringFormatDigitSubstitution","features":[409]},{"name":"GdipSetStringFormatFlags","features":[409]},{"name":"GdipSetStringFormatHotkeyPrefix","features":[409]},{"name":"GdipSetStringFormatLineAlign","features":[409]},{"name":"GdipSetStringFormatMeasurableCharacterRanges","features":[409]},{"name":"GdipSetStringFormatTabStops","features":[409]},{"name":"GdipSetStringFormatTrimming","features":[409]},{"name":"GdipSetTextContrast","features":[409]},{"name":"GdipSetTextRenderingHint","features":[409]},{"name":"GdipSetTextureTransform","features":[409]},{"name":"GdipSetTextureWrapMode","features":[409]},{"name":"GdipSetWorldTransform","features":[409]},{"name":"GdipShearMatrix","features":[409]},{"name":"GdipStartPathFigure","features":[409]},{"name":"GdipStringFormatGetGenericDefault","features":[409]},{"name":"GdipStringFormatGetGenericTypographic","features":[409]},{"name":"GdipTestControl","features":[409]},{"name":"GdipTransformMatrixPoints","features":[409]},{"name":"GdipTransformMatrixPointsI","features":[409]},{"name":"GdipTransformPath","features":[409]},{"name":"GdipTransformPoints","features":[409]},{"name":"GdipTransformPointsI","features":[409]},{"name":"GdipTransformRegion","features":[409]},{"name":"GdipTranslateClip","features":[409]},{"name":"GdipTranslateClipI","features":[409]},{"name":"GdipTranslateLineTransform","features":[409]},{"name":"GdipTranslateMatrix","features":[409]},{"name":"GdipTranslatePathGradientTransform","features":[409]},{"name":"GdipTranslatePenTransform","features":[409]},{"name":"GdipTranslateRegion","features":[409]},{"name":"GdipTranslateRegionI","features":[409]},{"name":"GdipTranslateTextureTransform","features":[409]},{"name":"GdipTranslateWorldTransform","features":[409]},{"name":"GdipVectorTransformMatrixPoints","features":[409]},{"name":"GdipVectorTransformMatrixPointsI","features":[409]},{"name":"GdipWarpPath","features":[409]},{"name":"GdipWidenPath","features":[409]},{"name":"GdipWindingModeOutline","features":[409]},{"name":"GdiplusAbort","features":[409]},{"name":"GdiplusNotInitialized","features":[409]},{"name":"GdiplusNotificationHook","features":[409]},{"name":"GdiplusNotificationUnhook","features":[409]},{"name":"GdiplusShutdown","features":[409]},{"name":"GdiplusStartup","features":[305,409]},{"name":"GdiplusStartupDefault","features":[409]},{"name":"GdiplusStartupInput","features":[305,409]},{"name":"GdiplusStartupInputEx","features":[305,409]},{"name":"GdiplusStartupNoSetRound","features":[409]},{"name":"GdiplusStartupOutput","features":[409]},{"name":"GdiplusStartupParams","features":[409]},{"name":"GdiplusStartupSetPSValue","features":[409]},{"name":"GdiplusStartupTransparencyMask","features":[409]},{"name":"GenericError","features":[409]},{"name":"GenericFontFamily","features":[409]},{"name":"GenericFontFamilyMonospace","features":[409]},{"name":"GenericFontFamilySansSerif","features":[409]},{"name":"GenericFontFamilySerif","features":[409]},{"name":"GetThumbnailImageAbort","features":[305,409]},{"name":"GpAdjustableArrowCap","features":[409]},{"name":"GpBitmap","features":[409]},{"name":"GpBrush","features":[409]},{"name":"GpCachedBitmap","features":[409]},{"name":"GpCustomLineCap","features":[409]},{"name":"GpFont","features":[409]},{"name":"GpFontCollection","features":[409]},{"name":"GpFontFamily","features":[409]},{"name":"GpGraphics","features":[409]},{"name":"GpHatch","features":[409]},{"name":"GpImage","features":[409]},{"name":"GpImageAttributes","features":[409]},{"name":"GpInstalledFontCollection","features":[409]},{"name":"GpLineGradient","features":[409]},{"name":"GpMetafile","features":[409]},{"name":"GpPath","features":[409]},{"name":"GpPathGradient","features":[409]},{"name":"GpPathIterator","features":[409]},{"name":"GpPen","features":[409]},{"name":"GpPrivateFontCollection","features":[409]},{"name":"GpRegion","features":[409]},{"name":"GpSolidFill","features":[409]},{"name":"GpStringFormat","features":[409]},{"name":"GpTestControlEnum","features":[409]},{"name":"GpTexture","features":[409]},{"name":"HatchStyle","features":[409]},{"name":"HatchStyle05Percent","features":[409]},{"name":"HatchStyle10Percent","features":[409]},{"name":"HatchStyle20Percent","features":[409]},{"name":"HatchStyle25Percent","features":[409]},{"name":"HatchStyle30Percent","features":[409]},{"name":"HatchStyle40Percent","features":[409]},{"name":"HatchStyle50Percent","features":[409]},{"name":"HatchStyle60Percent","features":[409]},{"name":"HatchStyle70Percent","features":[409]},{"name":"HatchStyle75Percent","features":[409]},{"name":"HatchStyle80Percent","features":[409]},{"name":"HatchStyle90Percent","features":[409]},{"name":"HatchStyleBackwardDiagonal","features":[409]},{"name":"HatchStyleCross","features":[409]},{"name":"HatchStyleDarkDownwardDiagonal","features":[409]},{"name":"HatchStyleDarkHorizontal","features":[409]},{"name":"HatchStyleDarkUpwardDiagonal","features":[409]},{"name":"HatchStyleDarkVertical","features":[409]},{"name":"HatchStyleDashedDownwardDiagonal","features":[409]},{"name":"HatchStyleDashedHorizontal","features":[409]},{"name":"HatchStyleDashedUpwardDiagonal","features":[409]},{"name":"HatchStyleDashedVertical","features":[409]},{"name":"HatchStyleDiagonalBrick","features":[409]},{"name":"HatchStyleDiagonalCross","features":[409]},{"name":"HatchStyleDivot","features":[409]},{"name":"HatchStyleDottedDiamond","features":[409]},{"name":"HatchStyleDottedGrid","features":[409]},{"name":"HatchStyleForwardDiagonal","features":[409]},{"name":"HatchStyleHorizontal","features":[409]},{"name":"HatchStyleHorizontalBrick","features":[409]},{"name":"HatchStyleLargeCheckerBoard","features":[409]},{"name":"HatchStyleLargeConfetti","features":[409]},{"name":"HatchStyleLargeGrid","features":[409]},{"name":"HatchStyleLightDownwardDiagonal","features":[409]},{"name":"HatchStyleLightHorizontal","features":[409]},{"name":"HatchStyleLightUpwardDiagonal","features":[409]},{"name":"HatchStyleLightVertical","features":[409]},{"name":"HatchStyleMax","features":[409]},{"name":"HatchStyleMin","features":[409]},{"name":"HatchStyleNarrowHorizontal","features":[409]},{"name":"HatchStyleNarrowVertical","features":[409]},{"name":"HatchStyleOutlinedDiamond","features":[409]},{"name":"HatchStylePlaid","features":[409]},{"name":"HatchStyleShingle","features":[409]},{"name":"HatchStyleSmallCheckerBoard","features":[409]},{"name":"HatchStyleSmallConfetti","features":[409]},{"name":"HatchStyleSmallGrid","features":[409]},{"name":"HatchStyleSolidDiamond","features":[409]},{"name":"HatchStyleSphere","features":[409]},{"name":"HatchStyleTotal","features":[409]},{"name":"HatchStyleTrellis","features":[409]},{"name":"HatchStyleVertical","features":[409]},{"name":"HatchStyleWave","features":[409]},{"name":"HatchStyleWeave","features":[409]},{"name":"HatchStyleWideDownwardDiagonal","features":[409]},{"name":"HatchStyleWideUpwardDiagonal","features":[409]},{"name":"HatchStyleZigZag","features":[409]},{"name":"HistogramFormat","features":[409]},{"name":"HistogramFormatA","features":[409]},{"name":"HistogramFormatARGB","features":[409]},{"name":"HistogramFormatB","features":[409]},{"name":"HistogramFormatG","features":[409]},{"name":"HistogramFormatGray","features":[409]},{"name":"HistogramFormatPARGB","features":[409]},{"name":"HistogramFormatR","features":[409]},{"name":"HistogramFormatRGB","features":[409]},{"name":"HotkeyPrefix","features":[409]},{"name":"HotkeyPrefixHide","features":[409]},{"name":"HotkeyPrefixNone","features":[409]},{"name":"HotkeyPrefixShow","features":[409]},{"name":"HueSaturationLightness","features":[305,409]},{"name":"HueSaturationLightnessEffectGuid","features":[409]},{"name":"HueSaturationLightnessParams","features":[409]},{"name":"IImageBytes","features":[409]},{"name":"Image","features":[409]},{"name":"ImageAbort","features":[305,409]},{"name":"ImageCodecFlags","features":[409]},{"name":"ImageCodecFlagsBlockingDecode","features":[409]},{"name":"ImageCodecFlagsBuiltin","features":[409]},{"name":"ImageCodecFlagsDecoder","features":[409]},{"name":"ImageCodecFlagsEncoder","features":[409]},{"name":"ImageCodecFlagsSeekableEncode","features":[409]},{"name":"ImageCodecFlagsSupportBitmap","features":[409]},{"name":"ImageCodecFlagsSupportVector","features":[409]},{"name":"ImageCodecFlagsSystem","features":[409]},{"name":"ImageCodecFlagsUser","features":[409]},{"name":"ImageCodecInfo","features":[409]},{"name":"ImageFlags","features":[409]},{"name":"ImageFlagsCaching","features":[409]},{"name":"ImageFlagsColorSpaceCMYK","features":[409]},{"name":"ImageFlagsColorSpaceGRAY","features":[409]},{"name":"ImageFlagsColorSpaceRGB","features":[409]},{"name":"ImageFlagsColorSpaceYCBCR","features":[409]},{"name":"ImageFlagsColorSpaceYCCK","features":[409]},{"name":"ImageFlagsHasAlpha","features":[409]},{"name":"ImageFlagsHasRealDPI","features":[409]},{"name":"ImageFlagsHasRealPixelSize","features":[409]},{"name":"ImageFlagsHasTranslucent","features":[409]},{"name":"ImageFlagsNone","features":[409]},{"name":"ImageFlagsPartiallyScalable","features":[409]},{"name":"ImageFlagsReadOnly","features":[409]},{"name":"ImageFlagsScalable","features":[409]},{"name":"ImageFormatBMP","features":[409]},{"name":"ImageFormatEMF","features":[409]},{"name":"ImageFormatEXIF","features":[409]},{"name":"ImageFormatGIF","features":[409]},{"name":"ImageFormatHEIF","features":[409]},{"name":"ImageFormatIcon","features":[409]},{"name":"ImageFormatJPEG","features":[409]},{"name":"ImageFormatMemoryBMP","features":[409]},{"name":"ImageFormatPNG","features":[409]},{"name":"ImageFormatTIFF","features":[409]},{"name":"ImageFormatUndefined","features":[409]},{"name":"ImageFormatWEBP","features":[409]},{"name":"ImageFormatWMF","features":[409]},{"name":"ImageItemData","features":[409]},{"name":"ImageLockMode","features":[409]},{"name":"ImageLockModeRead","features":[409]},{"name":"ImageLockModeUserInputBuf","features":[409]},{"name":"ImageLockModeWrite","features":[409]},{"name":"ImageType","features":[409]},{"name":"ImageTypeBitmap","features":[409]},{"name":"ImageTypeMetafile","features":[409]},{"name":"ImageTypeUnknown","features":[409]},{"name":"InstalledFontCollection","features":[409]},{"name":"InsufficientBuffer","features":[409]},{"name":"InterpolationMode","features":[409]},{"name":"InterpolationModeBicubic","features":[409]},{"name":"InterpolationModeBilinear","features":[409]},{"name":"InterpolationModeDefault","features":[409]},{"name":"InterpolationModeHighQuality","features":[409]},{"name":"InterpolationModeHighQualityBicubic","features":[409]},{"name":"InterpolationModeHighQualityBilinear","features":[409]},{"name":"InterpolationModeInvalid","features":[409]},{"name":"InterpolationModeLowQuality","features":[409]},{"name":"InterpolationModeNearestNeighbor","features":[409]},{"name":"InvalidParameter","features":[409]},{"name":"ItemDataPosition","features":[409]},{"name":"ItemDataPositionAfterBits","features":[409]},{"name":"ItemDataPositionAfterHeader","features":[409]},{"name":"ItemDataPositionAfterPalette","features":[409]},{"name":"Levels","features":[305,409]},{"name":"LevelsEffectGuid","features":[409]},{"name":"LevelsParams","features":[409]},{"name":"LineCap","features":[409]},{"name":"LineCapAnchorMask","features":[409]},{"name":"LineCapArrowAnchor","features":[409]},{"name":"LineCapCustom","features":[409]},{"name":"LineCapDiamondAnchor","features":[409]},{"name":"LineCapFlat","features":[409]},{"name":"LineCapNoAnchor","features":[409]},{"name":"LineCapRound","features":[409]},{"name":"LineCapRoundAnchor","features":[409]},{"name":"LineCapSquare","features":[409]},{"name":"LineCapSquareAnchor","features":[409]},{"name":"LineCapTriangle","features":[409]},{"name":"LineJoin","features":[409]},{"name":"LineJoinBevel","features":[409]},{"name":"LineJoinMiter","features":[409]},{"name":"LineJoinMiterClipped","features":[409]},{"name":"LineJoinRound","features":[409]},{"name":"LinearGradientMode","features":[409]},{"name":"LinearGradientModeBackwardDiagonal","features":[409]},{"name":"LinearGradientModeForwardDiagonal","features":[409]},{"name":"LinearGradientModeHorizontal","features":[409]},{"name":"LinearGradientModeVertical","features":[409]},{"name":"Matrix","features":[409]},{"name":"MatrixOrder","features":[409]},{"name":"MatrixOrderAppend","features":[409]},{"name":"MatrixOrderPrepend","features":[409]},{"name":"Metafile","features":[409]},{"name":"MetafileFrameUnit","features":[409]},{"name":"MetafileFrameUnitDocument","features":[409]},{"name":"MetafileFrameUnitGdi","features":[409]},{"name":"MetafileFrameUnitInch","features":[409]},{"name":"MetafileFrameUnitMillimeter","features":[409]},{"name":"MetafileFrameUnitPixel","features":[409]},{"name":"MetafileFrameUnitPoint","features":[409]},{"name":"MetafileHeader","features":[305,316,409]},{"name":"MetafileType","features":[409]},{"name":"MetafileTypeEmf","features":[409]},{"name":"MetafileTypeEmfPlusDual","features":[409]},{"name":"MetafileTypeEmfPlusOnly","features":[409]},{"name":"MetafileTypeInvalid","features":[409]},{"name":"MetafileTypeWmf","features":[409]},{"name":"MetafileTypeWmfPlaceable","features":[409]},{"name":"NotImplemented","features":[409]},{"name":"NotTrueTypeFont","features":[409]},{"name":"NotificationHookProc","features":[409]},{"name":"NotificationUnhookProc","features":[409]},{"name":"ObjectBusy","features":[409]},{"name":"ObjectType","features":[409]},{"name":"ObjectTypeBrush","features":[409]},{"name":"ObjectTypeCustomLineCap","features":[409]},{"name":"ObjectTypeFont","features":[409]},{"name":"ObjectTypeGraphics","features":[409]},{"name":"ObjectTypeImage","features":[409]},{"name":"ObjectTypeImageAttributes","features":[409]},{"name":"ObjectTypeInvalid","features":[409]},{"name":"ObjectTypeMax","features":[409]},{"name":"ObjectTypeMin","features":[409]},{"name":"ObjectTypePath","features":[409]},{"name":"ObjectTypePen","features":[409]},{"name":"ObjectTypeRegion","features":[409]},{"name":"ObjectTypeStringFormat","features":[409]},{"name":"Ok","features":[409]},{"name":"OutOfMemory","features":[409]},{"name":"PWMFRect16","features":[409]},{"name":"PaletteFlags","features":[409]},{"name":"PaletteFlagsGrayScale","features":[409]},{"name":"PaletteFlagsHalftone","features":[409]},{"name":"PaletteFlagsHasAlpha","features":[409]},{"name":"PaletteType","features":[409]},{"name":"PaletteTypeCustom","features":[409]},{"name":"PaletteTypeFixedBW","features":[409]},{"name":"PaletteTypeFixedHalftone125","features":[409]},{"name":"PaletteTypeFixedHalftone216","features":[409]},{"name":"PaletteTypeFixedHalftone252","features":[409]},{"name":"PaletteTypeFixedHalftone256","features":[409]},{"name":"PaletteTypeFixedHalftone27","features":[409]},{"name":"PaletteTypeFixedHalftone64","features":[409]},{"name":"PaletteTypeFixedHalftone8","features":[409]},{"name":"PaletteTypeOptimal","features":[409]},{"name":"PathData","features":[409]},{"name":"PathPointType","features":[409]},{"name":"PathPointTypeBezier","features":[409]},{"name":"PathPointTypeBezier3","features":[409]},{"name":"PathPointTypeCloseSubpath","features":[409]},{"name":"PathPointTypeDashMode","features":[409]},{"name":"PathPointTypeLine","features":[409]},{"name":"PathPointTypePathMarker","features":[409]},{"name":"PathPointTypePathTypeMask","features":[409]},{"name":"PathPointTypeStart","features":[409]},{"name":"PenAlignment","features":[409]},{"name":"PenAlignmentCenter","features":[409]},{"name":"PenAlignmentInset","features":[409]},{"name":"PenType","features":[409]},{"name":"PenTypeHatchFill","features":[409]},{"name":"PenTypeLinearGradient","features":[409]},{"name":"PenTypePathGradient","features":[409]},{"name":"PenTypeSolidColor","features":[409]},{"name":"PenTypeTextureFill","features":[409]},{"name":"PenTypeUnknown","features":[409]},{"name":"PixelFormatAlpha","features":[409]},{"name":"PixelFormatCanonical","features":[409]},{"name":"PixelFormatDontCare","features":[409]},{"name":"PixelFormatExtended","features":[409]},{"name":"PixelFormatGDI","features":[409]},{"name":"PixelFormatIndexed","features":[409]},{"name":"PixelFormatMax","features":[409]},{"name":"PixelFormatPAlpha","features":[409]},{"name":"PixelFormatUndefined","features":[409]},{"name":"PixelOffsetMode","features":[409]},{"name":"PixelOffsetModeDefault","features":[409]},{"name":"PixelOffsetModeHalf","features":[409]},{"name":"PixelOffsetModeHighQuality","features":[409]},{"name":"PixelOffsetModeHighSpeed","features":[409]},{"name":"PixelOffsetModeInvalid","features":[409]},{"name":"PixelOffsetModeNone","features":[409]},{"name":"Point","features":[409]},{"name":"PointF","features":[409]},{"name":"PrivateFontCollection","features":[409]},{"name":"ProfileNotFound","features":[409]},{"name":"PropertyItem","features":[409]},{"name":"PropertyNotFound","features":[409]},{"name":"PropertyNotSupported","features":[409]},{"name":"PropertyTagArtist","features":[409]},{"name":"PropertyTagBitsPerSample","features":[409]},{"name":"PropertyTagCellHeight","features":[409]},{"name":"PropertyTagCellWidth","features":[409]},{"name":"PropertyTagChrominanceTable","features":[409]},{"name":"PropertyTagColorMap","features":[409]},{"name":"PropertyTagColorTransferFunction","features":[409]},{"name":"PropertyTagCompression","features":[409]},{"name":"PropertyTagCopyright","features":[409]},{"name":"PropertyTagDateTime","features":[409]},{"name":"PropertyTagDocumentName","features":[409]},{"name":"PropertyTagDotRange","features":[409]},{"name":"PropertyTagEquipMake","features":[409]},{"name":"PropertyTagEquipModel","features":[409]},{"name":"PropertyTagExifAperture","features":[409]},{"name":"PropertyTagExifBrightness","features":[409]},{"name":"PropertyTagExifCfaPattern","features":[409]},{"name":"PropertyTagExifColorSpace","features":[409]},{"name":"PropertyTagExifCompBPP","features":[409]},{"name":"PropertyTagExifCompConfig","features":[409]},{"name":"PropertyTagExifContrast","features":[409]},{"name":"PropertyTagExifCustomRendered","features":[409]},{"name":"PropertyTagExifDTDigSS","features":[409]},{"name":"PropertyTagExifDTDigitized","features":[409]},{"name":"PropertyTagExifDTOrig","features":[409]},{"name":"PropertyTagExifDTOrigSS","features":[409]},{"name":"PropertyTagExifDTSubsec","features":[409]},{"name":"PropertyTagExifDeviceSettingDesc","features":[409]},{"name":"PropertyTagExifDigitalZoomRatio","features":[409]},{"name":"PropertyTagExifExposureBias","features":[409]},{"name":"PropertyTagExifExposureIndex","features":[409]},{"name":"PropertyTagExifExposureMode","features":[409]},{"name":"PropertyTagExifExposureProg","features":[409]},{"name":"PropertyTagExifExposureTime","features":[409]},{"name":"PropertyTagExifFNumber","features":[409]},{"name":"PropertyTagExifFPXVer","features":[409]},{"name":"PropertyTagExifFileSource","features":[409]},{"name":"PropertyTagExifFlash","features":[409]},{"name":"PropertyTagExifFlashEnergy","features":[409]},{"name":"PropertyTagExifFocalLength","features":[409]},{"name":"PropertyTagExifFocalLengthIn35mmFilm","features":[409]},{"name":"PropertyTagExifFocalResUnit","features":[409]},{"name":"PropertyTagExifFocalXRes","features":[409]},{"name":"PropertyTagExifFocalYRes","features":[409]},{"name":"PropertyTagExifGainControl","features":[409]},{"name":"PropertyTagExifIFD","features":[409]},{"name":"PropertyTagExifISOSpeed","features":[409]},{"name":"PropertyTagExifInterop","features":[409]},{"name":"PropertyTagExifLightSource","features":[409]},{"name":"PropertyTagExifMakerNote","features":[409]},{"name":"PropertyTagExifMaxAperture","features":[409]},{"name":"PropertyTagExifMeteringMode","features":[409]},{"name":"PropertyTagExifOECF","features":[409]},{"name":"PropertyTagExifPixXDim","features":[409]},{"name":"PropertyTagExifPixYDim","features":[409]},{"name":"PropertyTagExifRelatedWav","features":[409]},{"name":"PropertyTagExifSaturation","features":[409]},{"name":"PropertyTagExifSceneCaptureType","features":[409]},{"name":"PropertyTagExifSceneType","features":[409]},{"name":"PropertyTagExifSensingMethod","features":[409]},{"name":"PropertyTagExifSharpness","features":[409]},{"name":"PropertyTagExifShutterSpeed","features":[409]},{"name":"PropertyTagExifSpatialFR","features":[409]},{"name":"PropertyTagExifSpectralSense","features":[409]},{"name":"PropertyTagExifSubjectArea","features":[409]},{"name":"PropertyTagExifSubjectDist","features":[409]},{"name":"PropertyTagExifSubjectDistanceRange","features":[409]},{"name":"PropertyTagExifSubjectLoc","features":[409]},{"name":"PropertyTagExifUniqueImageID","features":[409]},{"name":"PropertyTagExifUserComment","features":[409]},{"name":"PropertyTagExifVer","features":[409]},{"name":"PropertyTagExifWhiteBalance","features":[409]},{"name":"PropertyTagExtraSamples","features":[409]},{"name":"PropertyTagFillOrder","features":[409]},{"name":"PropertyTagFrameDelay","features":[409]},{"name":"PropertyTagFreeByteCounts","features":[409]},{"name":"PropertyTagFreeOffset","features":[409]},{"name":"PropertyTagGamma","features":[409]},{"name":"PropertyTagGlobalPalette","features":[409]},{"name":"PropertyTagGpsAltitude","features":[409]},{"name":"PropertyTagGpsAltitudeRef","features":[409]},{"name":"PropertyTagGpsAreaInformation","features":[409]},{"name":"PropertyTagGpsDate","features":[409]},{"name":"PropertyTagGpsDestBear","features":[409]},{"name":"PropertyTagGpsDestBearRef","features":[409]},{"name":"PropertyTagGpsDestDist","features":[409]},{"name":"PropertyTagGpsDestDistRef","features":[409]},{"name":"PropertyTagGpsDestLat","features":[409]},{"name":"PropertyTagGpsDestLatRef","features":[409]},{"name":"PropertyTagGpsDestLong","features":[409]},{"name":"PropertyTagGpsDestLongRef","features":[409]},{"name":"PropertyTagGpsDifferential","features":[409]},{"name":"PropertyTagGpsGpsDop","features":[409]},{"name":"PropertyTagGpsGpsMeasureMode","features":[409]},{"name":"PropertyTagGpsGpsSatellites","features":[409]},{"name":"PropertyTagGpsGpsStatus","features":[409]},{"name":"PropertyTagGpsGpsTime","features":[409]},{"name":"PropertyTagGpsIFD","features":[409]},{"name":"PropertyTagGpsImgDir","features":[409]},{"name":"PropertyTagGpsImgDirRef","features":[409]},{"name":"PropertyTagGpsLatitude","features":[409]},{"name":"PropertyTagGpsLatitudeRef","features":[409]},{"name":"PropertyTagGpsLongitude","features":[409]},{"name":"PropertyTagGpsLongitudeRef","features":[409]},{"name":"PropertyTagGpsMapDatum","features":[409]},{"name":"PropertyTagGpsProcessingMethod","features":[409]},{"name":"PropertyTagGpsSpeed","features":[409]},{"name":"PropertyTagGpsSpeedRef","features":[409]},{"name":"PropertyTagGpsTrack","features":[409]},{"name":"PropertyTagGpsTrackRef","features":[409]},{"name":"PropertyTagGpsVer","features":[409]},{"name":"PropertyTagGrayResponseCurve","features":[409]},{"name":"PropertyTagGrayResponseUnit","features":[409]},{"name":"PropertyTagGridSize","features":[409]},{"name":"PropertyTagHalftoneDegree","features":[409]},{"name":"PropertyTagHalftoneHints","features":[409]},{"name":"PropertyTagHalftoneLPI","features":[409]},{"name":"PropertyTagHalftoneLPIUnit","features":[409]},{"name":"PropertyTagHalftoneMisc","features":[409]},{"name":"PropertyTagHalftoneScreen","features":[409]},{"name":"PropertyTagHalftoneShape","features":[409]},{"name":"PropertyTagHostComputer","features":[409]},{"name":"PropertyTagICCProfile","features":[409]},{"name":"PropertyTagICCProfileDescriptor","features":[409]},{"name":"PropertyTagImageDescription","features":[409]},{"name":"PropertyTagImageHeight","features":[409]},{"name":"PropertyTagImageTitle","features":[409]},{"name":"PropertyTagImageWidth","features":[409]},{"name":"PropertyTagIndexBackground","features":[409]},{"name":"PropertyTagIndexTransparent","features":[409]},{"name":"PropertyTagInkNames","features":[409]},{"name":"PropertyTagInkSet","features":[409]},{"name":"PropertyTagJPEGACTables","features":[409]},{"name":"PropertyTagJPEGDCTables","features":[409]},{"name":"PropertyTagJPEGInterFormat","features":[409]},{"name":"PropertyTagJPEGInterLength","features":[409]},{"name":"PropertyTagJPEGLosslessPredictors","features":[409]},{"name":"PropertyTagJPEGPointTransforms","features":[409]},{"name":"PropertyTagJPEGProc","features":[409]},{"name":"PropertyTagJPEGQTables","features":[409]},{"name":"PropertyTagJPEGQuality","features":[409]},{"name":"PropertyTagJPEGRestartInterval","features":[409]},{"name":"PropertyTagLoopCount","features":[409]},{"name":"PropertyTagLuminanceTable","features":[409]},{"name":"PropertyTagMaxSampleValue","features":[409]},{"name":"PropertyTagMinSampleValue","features":[409]},{"name":"PropertyTagNewSubfileType","features":[409]},{"name":"PropertyTagNumberOfInks","features":[409]},{"name":"PropertyTagOrientation","features":[409]},{"name":"PropertyTagPageName","features":[409]},{"name":"PropertyTagPageNumber","features":[409]},{"name":"PropertyTagPaletteHistogram","features":[409]},{"name":"PropertyTagPhotometricInterp","features":[409]},{"name":"PropertyTagPixelPerUnitX","features":[409]},{"name":"PropertyTagPixelPerUnitY","features":[409]},{"name":"PropertyTagPixelUnit","features":[409]},{"name":"PropertyTagPlanarConfig","features":[409]},{"name":"PropertyTagPredictor","features":[409]},{"name":"PropertyTagPrimaryChromaticities","features":[409]},{"name":"PropertyTagPrintFlags","features":[409]},{"name":"PropertyTagPrintFlagsBleedWidth","features":[409]},{"name":"PropertyTagPrintFlagsBleedWidthScale","features":[409]},{"name":"PropertyTagPrintFlagsCrop","features":[409]},{"name":"PropertyTagPrintFlagsVersion","features":[409]},{"name":"PropertyTagREFBlackWhite","features":[409]},{"name":"PropertyTagResolutionUnit","features":[409]},{"name":"PropertyTagResolutionXLengthUnit","features":[409]},{"name":"PropertyTagResolutionXUnit","features":[409]},{"name":"PropertyTagResolutionYLengthUnit","features":[409]},{"name":"PropertyTagResolutionYUnit","features":[409]},{"name":"PropertyTagRowsPerStrip","features":[409]},{"name":"PropertyTagSMaxSampleValue","features":[409]},{"name":"PropertyTagSMinSampleValue","features":[409]},{"name":"PropertyTagSRGBRenderingIntent","features":[409]},{"name":"PropertyTagSampleFormat","features":[409]},{"name":"PropertyTagSamplesPerPixel","features":[409]},{"name":"PropertyTagSoftwareUsed","features":[409]},{"name":"PropertyTagStripBytesCount","features":[409]},{"name":"PropertyTagStripOffsets","features":[409]},{"name":"PropertyTagSubfileType","features":[409]},{"name":"PropertyTagT4Option","features":[409]},{"name":"PropertyTagT6Option","features":[409]},{"name":"PropertyTagTargetPrinter","features":[409]},{"name":"PropertyTagThreshHolding","features":[409]},{"name":"PropertyTagThumbnailArtist","features":[409]},{"name":"PropertyTagThumbnailBitsPerSample","features":[409]},{"name":"PropertyTagThumbnailColorDepth","features":[409]},{"name":"PropertyTagThumbnailCompressedSize","features":[409]},{"name":"PropertyTagThumbnailCompression","features":[409]},{"name":"PropertyTagThumbnailCopyRight","features":[409]},{"name":"PropertyTagThumbnailData","features":[409]},{"name":"PropertyTagThumbnailDateTime","features":[409]},{"name":"PropertyTagThumbnailEquipMake","features":[409]},{"name":"PropertyTagThumbnailEquipModel","features":[409]},{"name":"PropertyTagThumbnailFormat","features":[409]},{"name":"PropertyTagThumbnailHeight","features":[409]},{"name":"PropertyTagThumbnailImageDescription","features":[409]},{"name":"PropertyTagThumbnailImageHeight","features":[409]},{"name":"PropertyTagThumbnailImageWidth","features":[409]},{"name":"PropertyTagThumbnailOrientation","features":[409]},{"name":"PropertyTagThumbnailPhotometricInterp","features":[409]},{"name":"PropertyTagThumbnailPlanarConfig","features":[409]},{"name":"PropertyTagThumbnailPlanes","features":[409]},{"name":"PropertyTagThumbnailPrimaryChromaticities","features":[409]},{"name":"PropertyTagThumbnailRawBytes","features":[409]},{"name":"PropertyTagThumbnailRefBlackWhite","features":[409]},{"name":"PropertyTagThumbnailResolutionUnit","features":[409]},{"name":"PropertyTagThumbnailResolutionX","features":[409]},{"name":"PropertyTagThumbnailResolutionY","features":[409]},{"name":"PropertyTagThumbnailRowsPerStrip","features":[409]},{"name":"PropertyTagThumbnailSamplesPerPixel","features":[409]},{"name":"PropertyTagThumbnailSize","features":[409]},{"name":"PropertyTagThumbnailSoftwareUsed","features":[409]},{"name":"PropertyTagThumbnailStripBytesCount","features":[409]},{"name":"PropertyTagThumbnailStripOffsets","features":[409]},{"name":"PropertyTagThumbnailTransferFunction","features":[409]},{"name":"PropertyTagThumbnailWhitePoint","features":[409]},{"name":"PropertyTagThumbnailWidth","features":[409]},{"name":"PropertyTagThumbnailYCbCrCoefficients","features":[409]},{"name":"PropertyTagThumbnailYCbCrPositioning","features":[409]},{"name":"PropertyTagThumbnailYCbCrSubsampling","features":[409]},{"name":"PropertyTagTileByteCounts","features":[409]},{"name":"PropertyTagTileLength","features":[409]},{"name":"PropertyTagTileOffset","features":[409]},{"name":"PropertyTagTileWidth","features":[409]},{"name":"PropertyTagTransferFuncition","features":[409]},{"name":"PropertyTagTransferRange","features":[409]},{"name":"PropertyTagTypeASCII","features":[409]},{"name":"PropertyTagTypeByte","features":[409]},{"name":"PropertyTagTypeLong","features":[409]},{"name":"PropertyTagTypeRational","features":[409]},{"name":"PropertyTagTypeSLONG","features":[409]},{"name":"PropertyTagTypeSRational","features":[409]},{"name":"PropertyTagTypeShort","features":[409]},{"name":"PropertyTagTypeUndefined","features":[409]},{"name":"PropertyTagWhitePoint","features":[409]},{"name":"PropertyTagXPosition","features":[409]},{"name":"PropertyTagXResolution","features":[409]},{"name":"PropertyTagYCbCrCoefficients","features":[409]},{"name":"PropertyTagYCbCrPositioning","features":[409]},{"name":"PropertyTagYCbCrSubsampling","features":[409]},{"name":"PropertyTagYPosition","features":[409]},{"name":"PropertyTagYResolution","features":[409]},{"name":"QualityMode","features":[409]},{"name":"QualityModeDefault","features":[409]},{"name":"QualityModeHigh","features":[409]},{"name":"QualityModeInvalid","features":[409]},{"name":"QualityModeLow","features":[409]},{"name":"RED_SHIFT","features":[409]},{"name":"Rect","features":[409]},{"name":"RectF","features":[409]},{"name":"RedEyeCorrection","features":[305,409]},{"name":"RedEyeCorrectionEffectGuid","features":[409]},{"name":"RedEyeCorrectionParams","features":[305,409]},{"name":"Region","features":[409]},{"name":"Rotate180FlipNone","features":[409]},{"name":"Rotate180FlipX","features":[409]},{"name":"Rotate180FlipXY","features":[409]},{"name":"Rotate180FlipY","features":[409]},{"name":"Rotate270FlipNone","features":[409]},{"name":"Rotate270FlipX","features":[409]},{"name":"Rotate270FlipXY","features":[409]},{"name":"Rotate270FlipY","features":[409]},{"name":"Rotate90FlipNone","features":[409]},{"name":"Rotate90FlipX","features":[409]},{"name":"Rotate90FlipXY","features":[409]},{"name":"Rotate90FlipY","features":[409]},{"name":"RotateFlipType","features":[409]},{"name":"RotateNoneFlipNone","features":[409]},{"name":"RotateNoneFlipX","features":[409]},{"name":"RotateNoneFlipXY","features":[409]},{"name":"RotateNoneFlipY","features":[409]},{"name":"Sharpen","features":[305,409]},{"name":"SharpenEffectGuid","features":[409]},{"name":"SharpenParams","features":[409]},{"name":"Size","features":[409]},{"name":"SizeF","features":[409]},{"name":"SmoothingMode","features":[409]},{"name":"SmoothingModeAntiAlias","features":[409]},{"name":"SmoothingModeAntiAlias8x4","features":[409]},{"name":"SmoothingModeAntiAlias8x8","features":[409]},{"name":"SmoothingModeDefault","features":[409]},{"name":"SmoothingModeHighQuality","features":[409]},{"name":"SmoothingModeHighSpeed","features":[409]},{"name":"SmoothingModeInvalid","features":[409]},{"name":"SmoothingModeNone","features":[409]},{"name":"Status","features":[409]},{"name":"StringAlignment","features":[409]},{"name":"StringAlignmentCenter","features":[409]},{"name":"StringAlignmentFar","features":[409]},{"name":"StringAlignmentNear","features":[409]},{"name":"StringDigitSubstitute","features":[409]},{"name":"StringDigitSubstituteNational","features":[409]},{"name":"StringDigitSubstituteNone","features":[409]},{"name":"StringDigitSubstituteTraditional","features":[409]},{"name":"StringDigitSubstituteUser","features":[409]},{"name":"StringFormatFlags","features":[409]},{"name":"StringFormatFlagsBypassGDI","features":[409]},{"name":"StringFormatFlagsDirectionRightToLeft","features":[409]},{"name":"StringFormatFlagsDirectionVertical","features":[409]},{"name":"StringFormatFlagsDisplayFormatControl","features":[409]},{"name":"StringFormatFlagsLineLimit","features":[409]},{"name":"StringFormatFlagsMeasureTrailingSpaces","features":[409]},{"name":"StringFormatFlagsNoClip","features":[409]},{"name":"StringFormatFlagsNoFitBlackBox","features":[409]},{"name":"StringFormatFlagsNoFontFallback","features":[409]},{"name":"StringFormatFlagsNoWrap","features":[409]},{"name":"StringTrimming","features":[409]},{"name":"StringTrimmingCharacter","features":[409]},{"name":"StringTrimmingEllipsisCharacter","features":[409]},{"name":"StringTrimmingEllipsisPath","features":[409]},{"name":"StringTrimmingEllipsisWord","features":[409]},{"name":"StringTrimmingNone","features":[409]},{"name":"StringTrimmingWord","features":[409]},{"name":"TestControlForceBilinear","features":[409]},{"name":"TestControlGetBuildNumber","features":[409]},{"name":"TestControlNoICM","features":[409]},{"name":"TextRenderingHint","features":[409]},{"name":"TextRenderingHintAntiAlias","features":[409]},{"name":"TextRenderingHintAntiAliasGridFit","features":[409]},{"name":"TextRenderingHintClearTypeGridFit","features":[409]},{"name":"TextRenderingHintSingleBitPerPixel","features":[409]},{"name":"TextRenderingHintSingleBitPerPixelGridFit","features":[409]},{"name":"TextRenderingHintSystemDefault","features":[409]},{"name":"Tint","features":[305,409]},{"name":"TintEffectGuid","features":[409]},{"name":"TintParams","features":[409]},{"name":"Unit","features":[409]},{"name":"UnitDisplay","features":[409]},{"name":"UnitDocument","features":[409]},{"name":"UnitInch","features":[409]},{"name":"UnitMillimeter","features":[409]},{"name":"UnitPixel","features":[409]},{"name":"UnitPoint","features":[409]},{"name":"UnitWorld","features":[409]},{"name":"UnknownImageFormat","features":[409]},{"name":"UnsupportedGdiplusVersion","features":[409]},{"name":"ValueOverflow","features":[409]},{"name":"WarpMode","features":[409]},{"name":"WarpModeBilinear","features":[409]},{"name":"WarpModePerspective","features":[409]},{"name":"Win32Error","features":[409]},{"name":"WmfPlaceableFileHeader","features":[409]},{"name":"WmfRecordTypeAbortDoc","features":[409]},{"name":"WmfRecordTypeAnimatePalette","features":[409]},{"name":"WmfRecordTypeArc","features":[409]},{"name":"WmfRecordTypeBitBlt","features":[409]},{"name":"WmfRecordTypeChord","features":[409]},{"name":"WmfRecordTypeCreateBitmap","features":[409]},{"name":"WmfRecordTypeCreateBitmapIndirect","features":[409]},{"name":"WmfRecordTypeCreateBrush","features":[409]},{"name":"WmfRecordTypeCreateBrushIndirect","features":[409]},{"name":"WmfRecordTypeCreateFontIndirect","features":[409]},{"name":"WmfRecordTypeCreatePalette","features":[409]},{"name":"WmfRecordTypeCreatePatternBrush","features":[409]},{"name":"WmfRecordTypeCreatePenIndirect","features":[409]},{"name":"WmfRecordTypeCreateRegion","features":[409]},{"name":"WmfRecordTypeDIBBitBlt","features":[409]},{"name":"WmfRecordTypeDIBCreatePatternBrush","features":[409]},{"name":"WmfRecordTypeDIBStretchBlt","features":[409]},{"name":"WmfRecordTypeDeleteObject","features":[409]},{"name":"WmfRecordTypeDrawText","features":[409]},{"name":"WmfRecordTypeEllipse","features":[409]},{"name":"WmfRecordTypeEndDoc","features":[409]},{"name":"WmfRecordTypeEndPage","features":[409]},{"name":"WmfRecordTypeEscape","features":[409]},{"name":"WmfRecordTypeExcludeClipRect","features":[409]},{"name":"WmfRecordTypeExtFloodFill","features":[409]},{"name":"WmfRecordTypeExtTextOut","features":[409]},{"name":"WmfRecordTypeFillRegion","features":[409]},{"name":"WmfRecordTypeFloodFill","features":[409]},{"name":"WmfRecordTypeFrameRegion","features":[409]},{"name":"WmfRecordTypeIntersectClipRect","features":[409]},{"name":"WmfRecordTypeInvertRegion","features":[409]},{"name":"WmfRecordTypeLineTo","features":[409]},{"name":"WmfRecordTypeMoveTo","features":[409]},{"name":"WmfRecordTypeOffsetClipRgn","features":[409]},{"name":"WmfRecordTypeOffsetViewportOrg","features":[409]},{"name":"WmfRecordTypeOffsetWindowOrg","features":[409]},{"name":"WmfRecordTypePaintRegion","features":[409]},{"name":"WmfRecordTypePatBlt","features":[409]},{"name":"WmfRecordTypePie","features":[409]},{"name":"WmfRecordTypePolyPolygon","features":[409]},{"name":"WmfRecordTypePolygon","features":[409]},{"name":"WmfRecordTypePolyline","features":[409]},{"name":"WmfRecordTypeRealizePalette","features":[409]},{"name":"WmfRecordTypeRectangle","features":[409]},{"name":"WmfRecordTypeResetDC","features":[409]},{"name":"WmfRecordTypeResizePalette","features":[409]},{"name":"WmfRecordTypeRestoreDC","features":[409]},{"name":"WmfRecordTypeRoundRect","features":[409]},{"name":"WmfRecordTypeSaveDC","features":[409]},{"name":"WmfRecordTypeScaleViewportExt","features":[409]},{"name":"WmfRecordTypeScaleWindowExt","features":[409]},{"name":"WmfRecordTypeSelectClipRegion","features":[409]},{"name":"WmfRecordTypeSelectObject","features":[409]},{"name":"WmfRecordTypeSelectPalette","features":[409]},{"name":"WmfRecordTypeSetBkColor","features":[409]},{"name":"WmfRecordTypeSetBkMode","features":[409]},{"name":"WmfRecordTypeSetDIBToDev","features":[409]},{"name":"WmfRecordTypeSetLayout","features":[409]},{"name":"WmfRecordTypeSetMapMode","features":[409]},{"name":"WmfRecordTypeSetMapperFlags","features":[409]},{"name":"WmfRecordTypeSetPalEntries","features":[409]},{"name":"WmfRecordTypeSetPixel","features":[409]},{"name":"WmfRecordTypeSetPolyFillMode","features":[409]},{"name":"WmfRecordTypeSetROP2","features":[409]},{"name":"WmfRecordTypeSetRelAbs","features":[409]},{"name":"WmfRecordTypeSetStretchBltMode","features":[409]},{"name":"WmfRecordTypeSetTextAlign","features":[409]},{"name":"WmfRecordTypeSetTextCharExtra","features":[409]},{"name":"WmfRecordTypeSetTextColor","features":[409]},{"name":"WmfRecordTypeSetTextJustification","features":[409]},{"name":"WmfRecordTypeSetViewportExt","features":[409]},{"name":"WmfRecordTypeSetViewportOrg","features":[409]},{"name":"WmfRecordTypeSetWindowExt","features":[409]},{"name":"WmfRecordTypeSetWindowOrg","features":[409]},{"name":"WmfRecordTypeStartDoc","features":[409]},{"name":"WmfRecordTypeStartPage","features":[409]},{"name":"WmfRecordTypeStretchBlt","features":[409]},{"name":"WmfRecordTypeStretchDIB","features":[409]},{"name":"WmfRecordTypeTextOut","features":[409]},{"name":"WrapMode","features":[409]},{"name":"WrapModeClamp","features":[409]},{"name":"WrapModeTile","features":[409]},{"name":"WrapModeTileFlipX","features":[409]},{"name":"WrapModeTileFlipXY","features":[409]},{"name":"WrapModeTileFlipY","features":[409]},{"name":"WrongState","features":[409]}],"417":[{"name":"D3DCOMPILE_OPTIMIZATION_LEVEL2","features":[410]},{"name":"D3D_COMPILE_STANDARD_FILE_INCLUDE","features":[410]}],"418":[{"name":"CATID_WICBitmapDecoders","features":[411]},{"name":"CATID_WICBitmapEncoders","features":[411]},{"name":"CATID_WICFormatConverters","features":[411]},{"name":"CATID_WICMetadataReader","features":[411]},{"name":"CATID_WICMetadataWriter","features":[411]},{"name":"CATID_WICPixelFormats","features":[411]},{"name":"CLSID_WIC8BIMIPTCDigestMetadataReader","features":[411]},{"name":"CLSID_WIC8BIMIPTCDigestMetadataWriter","features":[411]},{"name":"CLSID_WIC8BIMIPTCMetadataReader","features":[411]},{"name":"CLSID_WIC8BIMIPTCMetadataWriter","features":[411]},{"name":"CLSID_WIC8BIMResolutionInfoMetadataReader","features":[411]},{"name":"CLSID_WIC8BIMResolutionInfoMetadataWriter","features":[411]},{"name":"CLSID_WICAPEMetadataReader","features":[411]},{"name":"CLSID_WICAPEMetadataWriter","features":[411]},{"name":"CLSID_WICAdngDecoder","features":[411]},{"name":"CLSID_WICApp0MetadataReader","features":[411]},{"name":"CLSID_WICApp0MetadataWriter","features":[411]},{"name":"CLSID_WICApp13MetadataReader","features":[411]},{"name":"CLSID_WICApp13MetadataWriter","features":[411]},{"name":"CLSID_WICApp1MetadataReader","features":[411]},{"name":"CLSID_WICApp1MetadataWriter","features":[411]},{"name":"CLSID_WICBmpDecoder","features":[411]},{"name":"CLSID_WICBmpEncoder","features":[411]},{"name":"CLSID_WICDdsDecoder","features":[411]},{"name":"CLSID_WICDdsEncoder","features":[411]},{"name":"CLSID_WICDdsMetadataReader","features":[411]},{"name":"CLSID_WICDdsMetadataWriter","features":[411]},{"name":"CLSID_WICDefaultFormatConverter","features":[411]},{"name":"CLSID_WICExifMetadataReader","features":[411]},{"name":"CLSID_WICExifMetadataWriter","features":[411]},{"name":"CLSID_WICFormatConverterHighColor","features":[411]},{"name":"CLSID_WICFormatConverterNChannel","features":[411]},{"name":"CLSID_WICFormatConverterWMPhoto","features":[411]},{"name":"CLSID_WICGCEMetadataReader","features":[411]},{"name":"CLSID_WICGCEMetadataWriter","features":[411]},{"name":"CLSID_WICGifCommentMetadataReader","features":[411]},{"name":"CLSID_WICGifCommentMetadataWriter","features":[411]},{"name":"CLSID_WICGifDecoder","features":[411]},{"name":"CLSID_WICGifEncoder","features":[411]},{"name":"CLSID_WICGpsMetadataReader","features":[411]},{"name":"CLSID_WICGpsMetadataWriter","features":[411]},{"name":"CLSID_WICHeifDecoder","features":[411]},{"name":"CLSID_WICHeifEncoder","features":[411]},{"name":"CLSID_WICHeifHDRMetadataReader","features":[411]},{"name":"CLSID_WICHeifMetadataReader","features":[411]},{"name":"CLSID_WICHeifMetadataWriter","features":[411]},{"name":"CLSID_WICIMDMetadataReader","features":[411]},{"name":"CLSID_WICIMDMetadataWriter","features":[411]},{"name":"CLSID_WICIPTCMetadataReader","features":[411]},{"name":"CLSID_WICIPTCMetadataWriter","features":[411]},{"name":"CLSID_WICIRBMetadataReader","features":[411]},{"name":"CLSID_WICIRBMetadataWriter","features":[411]},{"name":"CLSID_WICIcoDecoder","features":[411]},{"name":"CLSID_WICIfdMetadataReader","features":[411]},{"name":"CLSID_WICIfdMetadataWriter","features":[411]},{"name":"CLSID_WICImagingCategories","features":[411]},{"name":"CLSID_WICImagingFactory","features":[411]},{"name":"CLSID_WICImagingFactory1","features":[411]},{"name":"CLSID_WICImagingFactory2","features":[411]},{"name":"CLSID_WICInteropMetadataReader","features":[411]},{"name":"CLSID_WICInteropMetadataWriter","features":[411]},{"name":"CLSID_WICJpegChrominanceMetadataReader","features":[411]},{"name":"CLSID_WICJpegChrominanceMetadataWriter","features":[411]},{"name":"CLSID_WICJpegCommentMetadataReader","features":[411]},{"name":"CLSID_WICJpegCommentMetadataWriter","features":[411]},{"name":"CLSID_WICJpegDecoder","features":[411]},{"name":"CLSID_WICJpegEncoder","features":[411]},{"name":"CLSID_WICJpegLuminanceMetadataReader","features":[411]},{"name":"CLSID_WICJpegLuminanceMetadataWriter","features":[411]},{"name":"CLSID_WICJpegQualcommPhoneEncoder","features":[411]},{"name":"CLSID_WICLSDMetadataReader","features":[411]},{"name":"CLSID_WICLSDMetadataWriter","features":[411]},{"name":"CLSID_WICPlanarFormatConverter","features":[411]},{"name":"CLSID_WICPngBkgdMetadataReader","features":[411]},{"name":"CLSID_WICPngBkgdMetadataWriter","features":[411]},{"name":"CLSID_WICPngChrmMetadataReader","features":[411]},{"name":"CLSID_WICPngChrmMetadataWriter","features":[411]},{"name":"CLSID_WICPngDecoder","features":[411]},{"name":"CLSID_WICPngDecoder1","features":[411]},{"name":"CLSID_WICPngDecoder2","features":[411]},{"name":"CLSID_WICPngEncoder","features":[411]},{"name":"CLSID_WICPngGamaMetadataReader","features":[411]},{"name":"CLSID_WICPngGamaMetadataWriter","features":[411]},{"name":"CLSID_WICPngHistMetadataReader","features":[411]},{"name":"CLSID_WICPngHistMetadataWriter","features":[411]},{"name":"CLSID_WICPngIccpMetadataReader","features":[411]},{"name":"CLSID_WICPngIccpMetadataWriter","features":[411]},{"name":"CLSID_WICPngItxtMetadataReader","features":[411]},{"name":"CLSID_WICPngItxtMetadataWriter","features":[411]},{"name":"CLSID_WICPngSrgbMetadataReader","features":[411]},{"name":"CLSID_WICPngSrgbMetadataWriter","features":[411]},{"name":"CLSID_WICPngTextMetadataReader","features":[411]},{"name":"CLSID_WICPngTextMetadataWriter","features":[411]},{"name":"CLSID_WICPngTimeMetadataReader","features":[411]},{"name":"CLSID_WICPngTimeMetadataWriter","features":[411]},{"name":"CLSID_WICRAWDecoder","features":[411]},{"name":"CLSID_WICSubIfdMetadataReader","features":[411]},{"name":"CLSID_WICSubIfdMetadataWriter","features":[411]},{"name":"CLSID_WICThumbnailMetadataReader","features":[411]},{"name":"CLSID_WICThumbnailMetadataWriter","features":[411]},{"name":"CLSID_WICTiffDecoder","features":[411]},{"name":"CLSID_WICTiffEncoder","features":[411]},{"name":"CLSID_WICUnknownMetadataReader","features":[411]},{"name":"CLSID_WICUnknownMetadataWriter","features":[411]},{"name":"CLSID_WICWebpAnimMetadataReader","features":[411]},{"name":"CLSID_WICWebpAnmfMetadataReader","features":[411]},{"name":"CLSID_WICWebpDecoder","features":[411]},{"name":"CLSID_WICWmpDecoder","features":[411]},{"name":"CLSID_WICWmpEncoder","features":[411]},{"name":"CLSID_WICXMPAltMetadataReader","features":[411]},{"name":"CLSID_WICXMPAltMetadataWriter","features":[411]},{"name":"CLSID_WICXMPBagMetadataReader","features":[411]},{"name":"CLSID_WICXMPBagMetadataWriter","features":[411]},{"name":"CLSID_WICXMPMetadataReader","features":[411]},{"name":"CLSID_WICXMPMetadataWriter","features":[411]},{"name":"CLSID_WICXMPSeqMetadataReader","features":[411]},{"name":"CLSID_WICXMPSeqMetadataWriter","features":[411]},{"name":"CLSID_WICXMPStructMetadataReader","features":[411]},{"name":"CLSID_WICXMPStructMetadataWriter","features":[411]},{"name":"FACILITY_WINCODEC_ERR","features":[411]},{"name":"GUID_ContainerFormatAdng","features":[411]},{"name":"GUID_ContainerFormatBmp","features":[411]},{"name":"GUID_ContainerFormatDds","features":[411]},{"name":"GUID_ContainerFormatGif","features":[411]},{"name":"GUID_ContainerFormatHeif","features":[411]},{"name":"GUID_ContainerFormatIco","features":[411]},{"name":"GUID_ContainerFormatJpeg","features":[411]},{"name":"GUID_ContainerFormatPng","features":[411]},{"name":"GUID_ContainerFormatRaw","features":[411]},{"name":"GUID_ContainerFormatTiff","features":[411]},{"name":"GUID_ContainerFormatWebp","features":[411]},{"name":"GUID_ContainerFormatWmp","features":[411]},{"name":"GUID_MetadataFormat8BIMIPTC","features":[411]},{"name":"GUID_MetadataFormat8BIMIPTCDigest","features":[411]},{"name":"GUID_MetadataFormat8BIMResolutionInfo","features":[411]},{"name":"GUID_MetadataFormatAPE","features":[411]},{"name":"GUID_MetadataFormatApp0","features":[411]},{"name":"GUID_MetadataFormatApp1","features":[411]},{"name":"GUID_MetadataFormatApp13","features":[411]},{"name":"GUID_MetadataFormatChunkbKGD","features":[411]},{"name":"GUID_MetadataFormatChunkcHRM","features":[411]},{"name":"GUID_MetadataFormatChunkgAMA","features":[411]},{"name":"GUID_MetadataFormatChunkhIST","features":[411]},{"name":"GUID_MetadataFormatChunkiCCP","features":[411]},{"name":"GUID_MetadataFormatChunkiTXt","features":[411]},{"name":"GUID_MetadataFormatChunksRGB","features":[411]},{"name":"GUID_MetadataFormatChunktEXt","features":[411]},{"name":"GUID_MetadataFormatChunktIME","features":[411]},{"name":"GUID_MetadataFormatDds","features":[411]},{"name":"GUID_MetadataFormatExif","features":[411]},{"name":"GUID_MetadataFormatGCE","features":[411]},{"name":"GUID_MetadataFormatGifComment","features":[411]},{"name":"GUID_MetadataFormatGps","features":[411]},{"name":"GUID_MetadataFormatHeif","features":[411]},{"name":"GUID_MetadataFormatHeifHDR","features":[411]},{"name":"GUID_MetadataFormatIMD","features":[411]},{"name":"GUID_MetadataFormatIPTC","features":[411]},{"name":"GUID_MetadataFormatIRB","features":[411]},{"name":"GUID_MetadataFormatIfd","features":[411]},{"name":"GUID_MetadataFormatInterop","features":[411]},{"name":"GUID_MetadataFormatJpegChrominance","features":[411]},{"name":"GUID_MetadataFormatJpegComment","features":[411]},{"name":"GUID_MetadataFormatJpegLuminance","features":[411]},{"name":"GUID_MetadataFormatLSD","features":[411]},{"name":"GUID_MetadataFormatSubIfd","features":[411]},{"name":"GUID_MetadataFormatThumbnail","features":[411]},{"name":"GUID_MetadataFormatUnknown","features":[411]},{"name":"GUID_MetadataFormatWebpANIM","features":[411]},{"name":"GUID_MetadataFormatWebpANMF","features":[411]},{"name":"GUID_MetadataFormatXMP","features":[411]},{"name":"GUID_MetadataFormatXMPAlt","features":[411]},{"name":"GUID_MetadataFormatXMPBag","features":[411]},{"name":"GUID_MetadataFormatXMPSeq","features":[411]},{"name":"GUID_MetadataFormatXMPStruct","features":[411]},{"name":"GUID_VendorMicrosoft","features":[411]},{"name":"GUID_VendorMicrosoftBuiltIn","features":[411]},{"name":"GUID_WICPixelFormat112bpp6ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat112bpp7Channels","features":[411]},{"name":"GUID_WICPixelFormat128bpp7ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat128bpp8Channels","features":[411]},{"name":"GUID_WICPixelFormat128bppPRGBAFloat","features":[411]},{"name":"GUID_WICPixelFormat128bppRGBAFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat128bppRGBAFloat","features":[411]},{"name":"GUID_WICPixelFormat128bppRGBFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat128bppRGBFloat","features":[411]},{"name":"GUID_WICPixelFormat144bpp8ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat16bppBGR555","features":[411]},{"name":"GUID_WICPixelFormat16bppBGR565","features":[411]},{"name":"GUID_WICPixelFormat16bppBGRA5551","features":[411]},{"name":"GUID_WICPixelFormat16bppCbCr","features":[411]},{"name":"GUID_WICPixelFormat16bppCbQuantizedDctCoefficients","features":[411]},{"name":"GUID_WICPixelFormat16bppCrQuantizedDctCoefficients","features":[411]},{"name":"GUID_WICPixelFormat16bppGray","features":[411]},{"name":"GUID_WICPixelFormat16bppGrayFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat16bppGrayHalf","features":[411]},{"name":"GUID_WICPixelFormat16bppYQuantizedDctCoefficients","features":[411]},{"name":"GUID_WICPixelFormat1bppIndexed","features":[411]},{"name":"GUID_WICPixelFormat24bpp3Channels","features":[411]},{"name":"GUID_WICPixelFormat24bppBGR","features":[411]},{"name":"GUID_WICPixelFormat24bppRGB","features":[411]},{"name":"GUID_WICPixelFormat2bppGray","features":[411]},{"name":"GUID_WICPixelFormat2bppIndexed","features":[411]},{"name":"GUID_WICPixelFormat32bpp3ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat32bpp4Channels","features":[411]},{"name":"GUID_WICPixelFormat32bppBGR","features":[411]},{"name":"GUID_WICPixelFormat32bppBGR101010","features":[411]},{"name":"GUID_WICPixelFormat32bppBGRA","features":[411]},{"name":"GUID_WICPixelFormat32bppCMYK","features":[411]},{"name":"GUID_WICPixelFormat32bppGrayFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat32bppGrayFloat","features":[411]},{"name":"GUID_WICPixelFormat32bppPBGRA","features":[411]},{"name":"GUID_WICPixelFormat32bppPRGBA","features":[411]},{"name":"GUID_WICPixelFormat32bppR10G10B10A2","features":[411]},{"name":"GUID_WICPixelFormat32bppR10G10B10A2HDR10","features":[411]},{"name":"GUID_WICPixelFormat32bppRGB","features":[411]},{"name":"GUID_WICPixelFormat32bppRGBA","features":[411]},{"name":"GUID_WICPixelFormat32bppRGBA1010102","features":[411]},{"name":"GUID_WICPixelFormat32bppRGBA1010102XR","features":[411]},{"name":"GUID_WICPixelFormat32bppRGBE","features":[411]},{"name":"GUID_WICPixelFormat40bpp4ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat40bpp5Channels","features":[411]},{"name":"GUID_WICPixelFormat40bppCMYKAlpha","features":[411]},{"name":"GUID_WICPixelFormat48bpp3Channels","features":[411]},{"name":"GUID_WICPixelFormat48bpp5ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat48bpp6Channels","features":[411]},{"name":"GUID_WICPixelFormat48bppBGR","features":[411]},{"name":"GUID_WICPixelFormat48bppBGRFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat48bppRGB","features":[411]},{"name":"GUID_WICPixelFormat48bppRGBFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat48bppRGBHalf","features":[411]},{"name":"GUID_WICPixelFormat4bppGray","features":[411]},{"name":"GUID_WICPixelFormat4bppIndexed","features":[411]},{"name":"GUID_WICPixelFormat56bpp6ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat56bpp7Channels","features":[411]},{"name":"GUID_WICPixelFormat64bpp3ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat64bpp4Channels","features":[411]},{"name":"GUID_WICPixelFormat64bpp7ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat64bpp8Channels","features":[411]},{"name":"GUID_WICPixelFormat64bppBGRA","features":[411]},{"name":"GUID_WICPixelFormat64bppBGRAFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat64bppCMYK","features":[411]},{"name":"GUID_WICPixelFormat64bppPBGRA","features":[411]},{"name":"GUID_WICPixelFormat64bppPRGBA","features":[411]},{"name":"GUID_WICPixelFormat64bppPRGBAHalf","features":[411]},{"name":"GUID_WICPixelFormat64bppRGB","features":[411]},{"name":"GUID_WICPixelFormat64bppRGBA","features":[411]},{"name":"GUID_WICPixelFormat64bppRGBAFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat64bppRGBAHalf","features":[411]},{"name":"GUID_WICPixelFormat64bppRGBFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat64bppRGBHalf","features":[411]},{"name":"GUID_WICPixelFormat72bpp8ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat80bpp4ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat80bpp5Channels","features":[411]},{"name":"GUID_WICPixelFormat80bppCMYKAlpha","features":[411]},{"name":"GUID_WICPixelFormat8bppAlpha","features":[411]},{"name":"GUID_WICPixelFormat8bppCb","features":[411]},{"name":"GUID_WICPixelFormat8bppCr","features":[411]},{"name":"GUID_WICPixelFormat8bppGray","features":[411]},{"name":"GUID_WICPixelFormat8bppIndexed","features":[411]},{"name":"GUID_WICPixelFormat8bppY","features":[411]},{"name":"GUID_WICPixelFormat96bpp5ChannelsAlpha","features":[411]},{"name":"GUID_WICPixelFormat96bpp6Channels","features":[411]},{"name":"GUID_WICPixelFormat96bppRGBFixedPoint","features":[411]},{"name":"GUID_WICPixelFormat96bppRGBFloat","features":[411]},{"name":"GUID_WICPixelFormatBlackWhite","features":[411]},{"name":"GUID_WICPixelFormatDontCare","features":[411]},{"name":"IWICBitmap","features":[411]},{"name":"IWICBitmapClipper","features":[411]},{"name":"IWICBitmapCodecInfo","features":[411]},{"name":"IWICBitmapCodecProgressNotification","features":[411]},{"name":"IWICBitmapDecoder","features":[411]},{"name":"IWICBitmapDecoderInfo","features":[411]},{"name":"IWICBitmapEncoder","features":[411]},{"name":"IWICBitmapEncoderInfo","features":[411]},{"name":"IWICBitmapFlipRotator","features":[411]},{"name":"IWICBitmapFrameDecode","features":[411]},{"name":"IWICBitmapFrameEncode","features":[411]},{"name":"IWICBitmapLock","features":[411]},{"name":"IWICBitmapScaler","features":[411]},{"name":"IWICBitmapSource","features":[411]},{"name":"IWICBitmapSourceTransform","features":[411]},{"name":"IWICColorContext","features":[411]},{"name":"IWICColorTransform","features":[411]},{"name":"IWICComponentFactory","features":[411]},{"name":"IWICComponentInfo","features":[411]},{"name":"IWICDdsDecoder","features":[411]},{"name":"IWICDdsEncoder","features":[411]},{"name":"IWICDdsFrameDecode","features":[411]},{"name":"IWICDevelopRaw","features":[411]},{"name":"IWICDevelopRawNotificationCallback","features":[411]},{"name":"IWICEnumMetadataItem","features":[411]},{"name":"IWICFastMetadataEncoder","features":[411]},{"name":"IWICFormatConverter","features":[411]},{"name":"IWICFormatConverterInfo","features":[411]},{"name":"IWICImagingFactory","features":[411]},{"name":"IWICJpegFrameDecode","features":[411]},{"name":"IWICJpegFrameEncode","features":[411]},{"name":"IWICMetadataBlockReader","features":[411]},{"name":"IWICMetadataBlockWriter","features":[411]},{"name":"IWICMetadataHandlerInfo","features":[411]},{"name":"IWICMetadataQueryReader","features":[411]},{"name":"IWICMetadataQueryWriter","features":[411]},{"name":"IWICMetadataReader","features":[411]},{"name":"IWICMetadataReaderInfo","features":[411]},{"name":"IWICMetadataWriter","features":[411]},{"name":"IWICMetadataWriterInfo","features":[411]},{"name":"IWICPalette","features":[411]},{"name":"IWICPersistStream","features":[411,356]},{"name":"IWICPixelFormatInfo","features":[411]},{"name":"IWICPixelFormatInfo2","features":[411]},{"name":"IWICPlanarBitmapFrameEncode","features":[411]},{"name":"IWICPlanarBitmapSourceTransform","features":[411]},{"name":"IWICPlanarFormatConverter","features":[411]},{"name":"IWICProgressCallback","features":[411]},{"name":"IWICProgressiveLevelControl","features":[411]},{"name":"IWICStream","features":[411,356]},{"name":"IWICStreamProvider","features":[411]},{"name":"PFNProgressNotification","features":[411]},{"name":"WIC8BIMIptcDigestIptcDigest","features":[411]},{"name":"WIC8BIMIptcDigestPString","features":[411]},{"name":"WIC8BIMIptcDigestProperties","features":[411]},{"name":"WIC8BIMIptcEmbeddedIPTC","features":[411]},{"name":"WIC8BIMIptcPString","features":[411]},{"name":"WIC8BIMIptcProperties","features":[411]},{"name":"WIC8BIMResolutionInfoHResolution","features":[411]},{"name":"WIC8BIMResolutionInfoHResolutionUnit","features":[411]},{"name":"WIC8BIMResolutionInfoHeightUnit","features":[411]},{"name":"WIC8BIMResolutionInfoPString","features":[411]},{"name":"WIC8BIMResolutionInfoProperties","features":[411]},{"name":"WIC8BIMResolutionInfoVResolution","features":[411]},{"name":"WIC8BIMResolutionInfoVResolutionUnit","features":[411]},{"name":"WIC8BIMResolutionInfoWidthUnit","features":[411]},{"name":"WICAllComponents","features":[411]},{"name":"WICAsShotParameterSet","features":[411]},{"name":"WICAutoAdjustedParameterSet","features":[411]},{"name":"WICBitmapAlphaChannelOption","features":[411]},{"name":"WICBitmapCacheOnDemand","features":[411]},{"name":"WICBitmapCacheOnLoad","features":[411]},{"name":"WICBitmapCreateCacheOption","features":[411]},{"name":"WICBitmapDecoderCapabilities","features":[411]},{"name":"WICBitmapDecoderCapabilityCanDecodeAllImages","features":[411]},{"name":"WICBitmapDecoderCapabilityCanDecodeSomeImages","features":[411]},{"name":"WICBitmapDecoderCapabilityCanDecodeThumbnail","features":[411]},{"name":"WICBitmapDecoderCapabilityCanEnumerateMetadata","features":[411]},{"name":"WICBitmapDecoderCapabilitySameEncoder","features":[411]},{"name":"WICBitmapDitherType","features":[411]},{"name":"WICBitmapDitherTypeDualSpiral4x4","features":[411]},{"name":"WICBitmapDitherTypeDualSpiral8x8","features":[411]},{"name":"WICBitmapDitherTypeErrorDiffusion","features":[411]},{"name":"WICBitmapDitherTypeNone","features":[411]},{"name":"WICBitmapDitherTypeOrdered16x16","features":[411]},{"name":"WICBitmapDitherTypeOrdered4x4","features":[411]},{"name":"WICBitmapDitherTypeOrdered8x8","features":[411]},{"name":"WICBitmapDitherTypeSolid","features":[411]},{"name":"WICBitmapDitherTypeSpiral4x4","features":[411]},{"name":"WICBitmapDitherTypeSpiral8x8","features":[411]},{"name":"WICBitmapEncoderCacheInMemory","features":[411]},{"name":"WICBitmapEncoderCacheOption","features":[411]},{"name":"WICBitmapEncoderCacheTempFile","features":[411]},{"name":"WICBitmapEncoderNoCache","features":[411]},{"name":"WICBitmapIgnoreAlpha","features":[411]},{"name":"WICBitmapInterpolationMode","features":[411]},{"name":"WICBitmapInterpolationModeCubic","features":[411]},{"name":"WICBitmapInterpolationModeFant","features":[411]},{"name":"WICBitmapInterpolationModeHighQualityCubic","features":[411]},{"name":"WICBitmapInterpolationModeLinear","features":[411]},{"name":"WICBitmapInterpolationModeNearestNeighbor","features":[411]},{"name":"WICBitmapLockFlags","features":[411]},{"name":"WICBitmapLockRead","features":[411]},{"name":"WICBitmapLockWrite","features":[411]},{"name":"WICBitmapNoCache","features":[411]},{"name":"WICBitmapPaletteType","features":[411]},{"name":"WICBitmapPaletteTypeCustom","features":[411]},{"name":"WICBitmapPaletteTypeFixedBW","features":[411]},{"name":"WICBitmapPaletteTypeFixedGray16","features":[411]},{"name":"WICBitmapPaletteTypeFixedGray256","features":[411]},{"name":"WICBitmapPaletteTypeFixedGray4","features":[411]},{"name":"WICBitmapPaletteTypeFixedHalftone125","features":[411]},{"name":"WICBitmapPaletteTypeFixedHalftone216","features":[411]},{"name":"WICBitmapPaletteTypeFixedHalftone252","features":[411]},{"name":"WICBitmapPaletteTypeFixedHalftone256","features":[411]},{"name":"WICBitmapPaletteTypeFixedHalftone27","features":[411]},{"name":"WICBitmapPaletteTypeFixedHalftone64","features":[411]},{"name":"WICBitmapPaletteTypeFixedHalftone8","features":[411]},{"name":"WICBitmapPaletteTypeFixedWebPalette","features":[411]},{"name":"WICBitmapPaletteTypeMedianCut","features":[411]},{"name":"WICBitmapPattern","features":[305,411]},{"name":"WICBitmapPlane","features":[411]},{"name":"WICBitmapPlaneDescription","features":[411]},{"name":"WICBitmapTransformFlipHorizontal","features":[411]},{"name":"WICBitmapTransformFlipVertical","features":[411]},{"name":"WICBitmapTransformOptions","features":[411]},{"name":"WICBitmapTransformRotate0","features":[411]},{"name":"WICBitmapTransformRotate180","features":[411]},{"name":"WICBitmapTransformRotate270","features":[411]},{"name":"WICBitmapTransformRotate90","features":[411]},{"name":"WICBitmapUseAlpha","features":[411]},{"name":"WICBitmapUsePremultipliedAlpha","features":[411]},{"name":"WICColorContextExifColorSpace","features":[411]},{"name":"WICColorContextProfile","features":[411]},{"name":"WICColorContextType","features":[411]},{"name":"WICColorContextUninitialized","features":[411]},{"name":"WICComponentDisabled","features":[411]},{"name":"WICComponentEnumerateBuiltInOnly","features":[411]},{"name":"WICComponentEnumerateDefault","features":[411]},{"name":"WICComponentEnumerateDisabled","features":[411]},{"name":"WICComponentEnumerateOptions","features":[411]},{"name":"WICComponentEnumerateRefresh","features":[411]},{"name":"WICComponentEnumerateUnsigned","features":[411]},{"name":"WICComponentSafe","features":[411]},{"name":"WICComponentSigned","features":[411]},{"name":"WICComponentSigning","features":[411]},{"name":"WICComponentType","features":[411]},{"name":"WICComponentUnsigned","features":[411]},{"name":"WICConvertBitmapSource","features":[411]},{"name":"WICCreateBitmapFromSection","features":[305,411]},{"name":"WICCreateBitmapFromSectionEx","features":[305,411]},{"name":"WICDdsAlphaMode","features":[411]},{"name":"WICDdsAlphaModeCustom","features":[411]},{"name":"WICDdsAlphaModeOpaque","features":[411]},{"name":"WICDdsAlphaModePremultiplied","features":[411]},{"name":"WICDdsAlphaModeStraight","features":[411]},{"name":"WICDdsAlphaModeUnknown","features":[411]},{"name":"WICDdsDimension","features":[411]},{"name":"WICDdsFormatInfo","features":[393,411]},{"name":"WICDdsParameters","features":[393,411]},{"name":"WICDdsTexture1D","features":[411]},{"name":"WICDdsTexture2D","features":[411]},{"name":"WICDdsTexture3D","features":[411]},{"name":"WICDdsTextureCube","features":[411]},{"name":"WICDecodeMetadataCacheOnDemand","features":[411]},{"name":"WICDecodeMetadataCacheOnLoad","features":[411]},{"name":"WICDecodeOptions","features":[411]},{"name":"WICDecoder","features":[411]},{"name":"WICEncoder","features":[411]},{"name":"WICGetMetadataContentSize","features":[411]},{"name":"WICGifApplicationExtensionApplication","features":[411]},{"name":"WICGifApplicationExtensionData","features":[411]},{"name":"WICGifApplicationExtensionProperties","features":[411]},{"name":"WICGifCommentExtensionProperties","features":[411]},{"name":"WICGifCommentExtensionText","features":[411]},{"name":"WICGifGraphicControlExtensionDelay","features":[411]},{"name":"WICGifGraphicControlExtensionDisposal","features":[411]},{"name":"WICGifGraphicControlExtensionProperties","features":[411]},{"name":"WICGifGraphicControlExtensionTransparencyFlag","features":[411]},{"name":"WICGifGraphicControlExtensionTransparentColorIndex","features":[411]},{"name":"WICGifGraphicControlExtensionUserInputFlag","features":[411]},{"name":"WICGifImageDescriptorHeight","features":[411]},{"name":"WICGifImageDescriptorInterlaceFlag","features":[411]},{"name":"WICGifImageDescriptorLeft","features":[411]},{"name":"WICGifImageDescriptorLocalColorTableFlag","features":[411]},{"name":"WICGifImageDescriptorLocalColorTableSize","features":[411]},{"name":"WICGifImageDescriptorProperties","features":[411]},{"name":"WICGifImageDescriptorSortFlag","features":[411]},{"name":"WICGifImageDescriptorTop","features":[411]},{"name":"WICGifImageDescriptorWidth","features":[411]},{"name":"WICGifLogicalScreenDescriptorBackgroundColorIndex","features":[411]},{"name":"WICGifLogicalScreenDescriptorColorResolution","features":[411]},{"name":"WICGifLogicalScreenDescriptorGlobalColorTableFlag","features":[411]},{"name":"WICGifLogicalScreenDescriptorGlobalColorTableSize","features":[411]},{"name":"WICGifLogicalScreenDescriptorHeight","features":[411]},{"name":"WICGifLogicalScreenDescriptorPixelAspectRatio","features":[411]},{"name":"WICGifLogicalScreenDescriptorProperties","features":[411]},{"name":"WICGifLogicalScreenDescriptorSortFlag","features":[411]},{"name":"WICGifLogicalScreenDescriptorWidth","features":[411]},{"name":"WICGifLogicalScreenSignature","features":[411]},{"name":"WICHeifHdrCustomVideoPrimaries","features":[411]},{"name":"WICHeifHdrMaximumFrameAverageLuminanceLevel","features":[411]},{"name":"WICHeifHdrMaximumLuminanceLevel","features":[411]},{"name":"WICHeifHdrMaximumMasteringDisplayLuminanceLevel","features":[411]},{"name":"WICHeifHdrMinimumMasteringDisplayLuminanceLevel","features":[411]},{"name":"WICHeifHdrProperties","features":[411]},{"name":"WICHeifOrientation","features":[411]},{"name":"WICHeifProperties","features":[411]},{"name":"WICImageParameters","features":[396,393,411]},{"name":"WICJpegChrominanceProperties","features":[411]},{"name":"WICJpegChrominanceTable","features":[411]},{"name":"WICJpegCommentProperties","features":[411]},{"name":"WICJpegCommentText","features":[411]},{"name":"WICJpegFrameHeader","features":[411]},{"name":"WICJpegIndexingOptions","features":[411]},{"name":"WICJpegIndexingOptionsGenerateOnDemand","features":[411]},{"name":"WICJpegIndexingOptionsGenerateOnLoad","features":[411]},{"name":"WICJpegLuminanceProperties","features":[411]},{"name":"WICJpegLuminanceTable","features":[411]},{"name":"WICJpegScanHeader","features":[411]},{"name":"WICJpegScanType","features":[411]},{"name":"WICJpegScanTypeInterleaved","features":[411]},{"name":"WICJpegScanTypePlanarComponents","features":[411]},{"name":"WICJpegScanTypeProgressive","features":[411]},{"name":"WICJpegTransferMatrix","features":[411]},{"name":"WICJpegTransferMatrixBT601","features":[411]},{"name":"WICJpegTransferMatrixIdentity","features":[411]},{"name":"WICJpegYCrCbSubsampling420","features":[411]},{"name":"WICJpegYCrCbSubsampling422","features":[411]},{"name":"WICJpegYCrCbSubsampling440","features":[411]},{"name":"WICJpegYCrCbSubsampling444","features":[411]},{"name":"WICJpegYCrCbSubsamplingDefault","features":[411]},{"name":"WICJpegYCrCbSubsamplingOption","features":[411]},{"name":"WICMapGuidToShortName","features":[411]},{"name":"WICMapSchemaToName","features":[411]},{"name":"WICMapShortNameToGuid","features":[411]},{"name":"WICMatchMetadataContent","features":[411,356]},{"name":"WICMetadataCreationAllowUnknown","features":[411]},{"name":"WICMetadataCreationDefault","features":[411]},{"name":"WICMetadataCreationFailUnknown","features":[411]},{"name":"WICMetadataCreationMask","features":[411]},{"name":"WICMetadataCreationOptions","features":[411]},{"name":"WICMetadataHeader","features":[411]},{"name":"WICMetadataPattern","features":[411]},{"name":"WICMetadataReader","features":[411]},{"name":"WICMetadataWriter","features":[411]},{"name":"WICNamedWhitePoint","features":[411]},{"name":"WICPersistOptionBigEndian","features":[411]},{"name":"WICPersistOptionDefault","features":[411]},{"name":"WICPersistOptionLittleEndian","features":[411]},{"name":"WICPersistOptionMask","features":[411]},{"name":"WICPersistOptionNoCacheStream","features":[411]},{"name":"WICPersistOptionPreferUTF8","features":[411]},{"name":"WICPersistOptionStrictFormat","features":[411]},{"name":"WICPersistOptions","features":[411]},{"name":"WICPixelFormat","features":[411]},{"name":"WICPixelFormatConverter","features":[411]},{"name":"WICPixelFormatNumericRepresentation","features":[411]},{"name":"WICPixelFormatNumericRepresentationFixed","features":[411]},{"name":"WICPixelFormatNumericRepresentationFloat","features":[411]},{"name":"WICPixelFormatNumericRepresentationIndexed","features":[411]},{"name":"WICPixelFormatNumericRepresentationSignedInteger","features":[411]},{"name":"WICPixelFormatNumericRepresentationUnsignedInteger","features":[411]},{"name":"WICPixelFormatNumericRepresentationUnspecified","features":[411]},{"name":"WICPlanarOptions","features":[411]},{"name":"WICPlanarOptionsDefault","features":[411]},{"name":"WICPlanarOptionsPreserveSubsampling","features":[411]},{"name":"WICPngBkgdBackgroundColor","features":[411]},{"name":"WICPngBkgdProperties","features":[411]},{"name":"WICPngChrmBlueX","features":[411]},{"name":"WICPngChrmBlueY","features":[411]},{"name":"WICPngChrmGreenX","features":[411]},{"name":"WICPngChrmGreenY","features":[411]},{"name":"WICPngChrmProperties","features":[411]},{"name":"WICPngChrmRedX","features":[411]},{"name":"WICPngChrmRedY","features":[411]},{"name":"WICPngChrmWhitePointX","features":[411]},{"name":"WICPngChrmWhitePointY","features":[411]},{"name":"WICPngFilterAdaptive","features":[411]},{"name":"WICPngFilterAverage","features":[411]},{"name":"WICPngFilterNone","features":[411]},{"name":"WICPngFilterOption","features":[411]},{"name":"WICPngFilterPaeth","features":[411]},{"name":"WICPngFilterSub","features":[411]},{"name":"WICPngFilterUnspecified","features":[411]},{"name":"WICPngFilterUp","features":[411]},{"name":"WICPngGamaGamma","features":[411]},{"name":"WICPngGamaProperties","features":[411]},{"name":"WICPngHistFrequencies","features":[411]},{"name":"WICPngHistProperties","features":[411]},{"name":"WICPngIccpProfileData","features":[411]},{"name":"WICPngIccpProfileName","features":[411]},{"name":"WICPngIccpProperties","features":[411]},{"name":"WICPngItxtCompressionFlag","features":[411]},{"name":"WICPngItxtKeyword","features":[411]},{"name":"WICPngItxtLanguageTag","features":[411]},{"name":"WICPngItxtProperties","features":[411]},{"name":"WICPngItxtText","features":[411]},{"name":"WICPngItxtTranslatedKeyword","features":[411]},{"name":"WICPngSrgbProperties","features":[411]},{"name":"WICPngSrgbRenderingIntent","features":[411]},{"name":"WICPngTimeDay","features":[411]},{"name":"WICPngTimeHour","features":[411]},{"name":"WICPngTimeMinute","features":[411]},{"name":"WICPngTimeMonth","features":[411]},{"name":"WICPngTimeProperties","features":[411]},{"name":"WICPngTimeSecond","features":[411]},{"name":"WICPngTimeYear","features":[411]},{"name":"WICProgressNotification","features":[411]},{"name":"WICProgressNotificationAll","features":[411]},{"name":"WICProgressNotificationBegin","features":[411]},{"name":"WICProgressNotificationEnd","features":[411]},{"name":"WICProgressNotificationFrequent","features":[411]},{"name":"WICProgressOperation","features":[411]},{"name":"WICProgressOperationAll","features":[411]},{"name":"WICProgressOperationCopyPixels","features":[411]},{"name":"WICProgressOperationWritePixels","features":[411]},{"name":"WICRawCapabilities","features":[411]},{"name":"WICRawCapabilitiesInfo","features":[411]},{"name":"WICRawCapabilityFullySupported","features":[411]},{"name":"WICRawCapabilityGetSupported","features":[411]},{"name":"WICRawCapabilityNotSupported","features":[411]},{"name":"WICRawChangeNotification_Contrast","features":[411]},{"name":"WICRawChangeNotification_DestinationColorContext","features":[411]},{"name":"WICRawChangeNotification_ExposureCompensation","features":[411]},{"name":"WICRawChangeNotification_Gamma","features":[411]},{"name":"WICRawChangeNotification_KelvinWhitePoint","features":[411]},{"name":"WICRawChangeNotification_NamedWhitePoint","features":[411]},{"name":"WICRawChangeNotification_NoiseReduction","features":[411]},{"name":"WICRawChangeNotification_RGBWhitePoint","features":[411]},{"name":"WICRawChangeNotification_RenderMode","features":[411]},{"name":"WICRawChangeNotification_Rotation","features":[411]},{"name":"WICRawChangeNotification_Saturation","features":[411]},{"name":"WICRawChangeNotification_Sharpness","features":[411]},{"name":"WICRawChangeNotification_Tint","features":[411]},{"name":"WICRawChangeNotification_ToneCurve","features":[411]},{"name":"WICRawParameterSet","features":[411]},{"name":"WICRawRenderMode","features":[411]},{"name":"WICRawRenderModeBestQuality","features":[411]},{"name":"WICRawRenderModeDraft","features":[411]},{"name":"WICRawRenderModeNormal","features":[411]},{"name":"WICRawRotationCapabilities","features":[411]},{"name":"WICRawRotationCapabilityFullySupported","features":[411]},{"name":"WICRawRotationCapabilityGetSupported","features":[411]},{"name":"WICRawRotationCapabilityNinetyDegreesSupported","features":[411]},{"name":"WICRawRotationCapabilityNotSupported","features":[411]},{"name":"WICRawToneCurve","features":[411]},{"name":"WICRawToneCurvePoint","features":[411]},{"name":"WICRect","features":[411]},{"name":"WICSectionAccessLevel","features":[411]},{"name":"WICSectionAccessLevelRead","features":[411]},{"name":"WICSectionAccessLevelReadWrite","features":[411]},{"name":"WICSerializeMetadataContent","features":[411,356]},{"name":"WICTiffCompressionCCITT3","features":[411]},{"name":"WICTiffCompressionCCITT4","features":[411]},{"name":"WICTiffCompressionDontCare","features":[411]},{"name":"WICTiffCompressionLZW","features":[411]},{"name":"WICTiffCompressionLZWHDifferencing","features":[411]},{"name":"WICTiffCompressionNone","features":[411]},{"name":"WICTiffCompressionOption","features":[411]},{"name":"WICTiffCompressionRLE","features":[411]},{"name":"WICTiffCompressionZIP","features":[411]},{"name":"WICUserAdjustedParameterSet","features":[411]},{"name":"WICWebpAnimLoopCount","features":[411]},{"name":"WICWebpAnimProperties","features":[411]},{"name":"WICWebpAnmfFrameDuration","features":[411]},{"name":"WICWebpAnmfProperties","features":[411]},{"name":"WICWhitePointAsShot","features":[411]},{"name":"WICWhitePointAutoWhiteBalance","features":[411]},{"name":"WICWhitePointCloudy","features":[411]},{"name":"WICWhitePointCustom","features":[411]},{"name":"WICWhitePointDaylight","features":[411]},{"name":"WICWhitePointDefault","features":[411]},{"name":"WICWhitePointFlash","features":[411]},{"name":"WICWhitePointFluorescent","features":[411]},{"name":"WICWhitePointShade","features":[411]},{"name":"WICWhitePointTungsten","features":[411]},{"name":"WICWhitePointUnderwater","features":[411]},{"name":"WIC_JPEG_HUFFMAN_BASELINE_ONE","features":[411]},{"name":"WIC_JPEG_HUFFMAN_BASELINE_THREE","features":[411]},{"name":"WIC_JPEG_MAX_COMPONENT_COUNT","features":[411]},{"name":"WIC_JPEG_MAX_TABLE_INDEX","features":[411]},{"name":"WIC_JPEG_QUANTIZATION_BASELINE_ONE","features":[411]},{"name":"WIC_JPEG_QUANTIZATION_BASELINE_THREE","features":[411]},{"name":"WIC_JPEG_SAMPLE_FACTORS_ONE","features":[411]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_420","features":[411]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_422","features":[411]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_440","features":[411]},{"name":"WIC_JPEG_SAMPLE_FACTORS_THREE_444","features":[411]},{"name":"WINCODEC_ERR_ABORTED","features":[411]},{"name":"WINCODEC_ERR_ACCESSDENIED","features":[411]},{"name":"WINCODEC_ERR_BASE","features":[411]},{"name":"WINCODEC_ERR_GENERIC_ERROR","features":[411]},{"name":"WINCODEC_ERR_INVALIDPARAMETER","features":[411]},{"name":"WINCODEC_ERR_NOTIMPLEMENTED","features":[411]},{"name":"WINCODEC_ERR_OUTOFMEMORY","features":[411]},{"name":"WINCODEC_SDK_VERSION","features":[411]},{"name":"WINCODEC_SDK_VERSION1","features":[411]},{"name":"WINCODEC_SDK_VERSION2","features":[411]}],"419":[{"name":"IWICImageEncoder","features":[412]},{"name":"IWICImagingFactory2","features":[412]}],"420":[{"name":"ChoosePixelFormat","features":[316,371]},{"name":"DescribePixelFormat","features":[316,371]},{"name":"EMRPIXELFORMAT","features":[316,371]},{"name":"GLU_AUTO_LOAD_MATRIX","features":[371]},{"name":"GLU_BEGIN","features":[371]},{"name":"GLU_CCW","features":[371]},{"name":"GLU_CULLING","features":[371]},{"name":"GLU_CW","features":[371]},{"name":"GLU_DISPLAY_MODE","features":[371]},{"name":"GLU_DOMAIN_DISTANCE","features":[371]},{"name":"GLU_EDGE_FLAG","features":[371]},{"name":"GLU_END","features":[371]},{"name":"GLU_ERROR","features":[371]},{"name":"GLU_EXTENSIONS","features":[371]},{"name":"GLU_EXTERIOR","features":[371]},{"name":"GLU_FALSE","features":[371]},{"name":"GLU_FILL","features":[371]},{"name":"GLU_FLAT","features":[371]},{"name":"GLU_INCOMPATIBLE_GL_VERSION","features":[371]},{"name":"GLU_INSIDE","features":[371]},{"name":"GLU_INTERIOR","features":[371]},{"name":"GLU_INVALID_ENUM","features":[371]},{"name":"GLU_INVALID_VALUE","features":[371]},{"name":"GLU_LINE","features":[371]},{"name":"GLU_MAP1_TRIM_2","features":[371]},{"name":"GLU_MAP1_TRIM_3","features":[371]},{"name":"GLU_NONE","features":[371]},{"name":"GLU_NURBS_ERROR1","features":[371]},{"name":"GLU_NURBS_ERROR10","features":[371]},{"name":"GLU_NURBS_ERROR11","features":[371]},{"name":"GLU_NURBS_ERROR12","features":[371]},{"name":"GLU_NURBS_ERROR13","features":[371]},{"name":"GLU_NURBS_ERROR14","features":[371]},{"name":"GLU_NURBS_ERROR15","features":[371]},{"name":"GLU_NURBS_ERROR16","features":[371]},{"name":"GLU_NURBS_ERROR17","features":[371]},{"name":"GLU_NURBS_ERROR18","features":[371]},{"name":"GLU_NURBS_ERROR19","features":[371]},{"name":"GLU_NURBS_ERROR2","features":[371]},{"name":"GLU_NURBS_ERROR20","features":[371]},{"name":"GLU_NURBS_ERROR21","features":[371]},{"name":"GLU_NURBS_ERROR22","features":[371]},{"name":"GLU_NURBS_ERROR23","features":[371]},{"name":"GLU_NURBS_ERROR24","features":[371]},{"name":"GLU_NURBS_ERROR25","features":[371]},{"name":"GLU_NURBS_ERROR26","features":[371]},{"name":"GLU_NURBS_ERROR27","features":[371]},{"name":"GLU_NURBS_ERROR28","features":[371]},{"name":"GLU_NURBS_ERROR29","features":[371]},{"name":"GLU_NURBS_ERROR3","features":[371]},{"name":"GLU_NURBS_ERROR30","features":[371]},{"name":"GLU_NURBS_ERROR31","features":[371]},{"name":"GLU_NURBS_ERROR32","features":[371]},{"name":"GLU_NURBS_ERROR33","features":[371]},{"name":"GLU_NURBS_ERROR34","features":[371]},{"name":"GLU_NURBS_ERROR35","features":[371]},{"name":"GLU_NURBS_ERROR36","features":[371]},{"name":"GLU_NURBS_ERROR37","features":[371]},{"name":"GLU_NURBS_ERROR4","features":[371]},{"name":"GLU_NURBS_ERROR5","features":[371]},{"name":"GLU_NURBS_ERROR6","features":[371]},{"name":"GLU_NURBS_ERROR7","features":[371]},{"name":"GLU_NURBS_ERROR8","features":[371]},{"name":"GLU_NURBS_ERROR9","features":[371]},{"name":"GLU_OUTLINE_PATCH","features":[371]},{"name":"GLU_OUTLINE_POLYGON","features":[371]},{"name":"GLU_OUTSIDE","features":[371]},{"name":"GLU_OUT_OF_MEMORY","features":[371]},{"name":"GLU_PARAMETRIC_ERROR","features":[371]},{"name":"GLU_PARAMETRIC_TOLERANCE","features":[371]},{"name":"GLU_PATH_LENGTH","features":[371]},{"name":"GLU_POINT","features":[371]},{"name":"GLU_SAMPLING_METHOD","features":[371]},{"name":"GLU_SAMPLING_TOLERANCE","features":[371]},{"name":"GLU_SILHOUETTE","features":[371]},{"name":"GLU_SMOOTH","features":[371]},{"name":"GLU_TESS_BEGIN","features":[371]},{"name":"GLU_TESS_BEGIN_DATA","features":[371]},{"name":"GLU_TESS_BOUNDARY_ONLY","features":[371]},{"name":"GLU_TESS_COMBINE","features":[371]},{"name":"GLU_TESS_COMBINE_DATA","features":[371]},{"name":"GLU_TESS_COORD_TOO_LARGE","features":[371]},{"name":"GLU_TESS_EDGE_FLAG","features":[371]},{"name":"GLU_TESS_EDGE_FLAG_DATA","features":[371]},{"name":"GLU_TESS_END","features":[371]},{"name":"GLU_TESS_END_DATA","features":[371]},{"name":"GLU_TESS_ERROR","features":[371]},{"name":"GLU_TESS_ERROR1","features":[371]},{"name":"GLU_TESS_ERROR2","features":[371]},{"name":"GLU_TESS_ERROR3","features":[371]},{"name":"GLU_TESS_ERROR4","features":[371]},{"name":"GLU_TESS_ERROR5","features":[371]},{"name":"GLU_TESS_ERROR6","features":[371]},{"name":"GLU_TESS_ERROR7","features":[371]},{"name":"GLU_TESS_ERROR8","features":[371]},{"name":"GLU_TESS_ERROR_DATA","features":[371]},{"name":"GLU_TESS_MISSING_BEGIN_CONTOUR","features":[371]},{"name":"GLU_TESS_MISSING_BEGIN_POLYGON","features":[371]},{"name":"GLU_TESS_MISSING_END_CONTOUR","features":[371]},{"name":"GLU_TESS_MISSING_END_POLYGON","features":[371]},{"name":"GLU_TESS_NEED_COMBINE_CALLBACK","features":[371]},{"name":"GLU_TESS_TOLERANCE","features":[371]},{"name":"GLU_TESS_VERTEX","features":[371]},{"name":"GLU_TESS_VERTEX_DATA","features":[371]},{"name":"GLU_TESS_WINDING_ABS_GEQ_TWO","features":[371]},{"name":"GLU_TESS_WINDING_NEGATIVE","features":[371]},{"name":"GLU_TESS_WINDING_NONZERO","features":[371]},{"name":"GLU_TESS_WINDING_ODD","features":[371]},{"name":"GLU_TESS_WINDING_POSITIVE","features":[371]},{"name":"GLU_TESS_WINDING_RULE","features":[371]},{"name":"GLU_TRUE","features":[371]},{"name":"GLU_UNKNOWN","features":[371]},{"name":"GLU_U_STEP","features":[371]},{"name":"GLU_VERSION","features":[371]},{"name":"GLU_VERSION_1_1","features":[371]},{"name":"GLU_VERSION_1_2","features":[371]},{"name":"GLU_VERTEX","features":[371]},{"name":"GLU_V_STEP","features":[371]},{"name":"GLUnurbs","features":[371]},{"name":"GLUnurbsErrorProc","features":[371]},{"name":"GLUquadric","features":[371]},{"name":"GLUquadricErrorProc","features":[371]},{"name":"GLUtessBeginDataProc","features":[371]},{"name":"GLUtessBeginProc","features":[371]},{"name":"GLUtessCombineDataProc","features":[371]},{"name":"GLUtessCombineProc","features":[371]},{"name":"GLUtessEdgeFlagDataProc","features":[371]},{"name":"GLUtessEdgeFlagProc","features":[371]},{"name":"GLUtessEndDataProc","features":[371]},{"name":"GLUtessEndProc","features":[371]},{"name":"GLUtessErrorDataProc","features":[371]},{"name":"GLUtessErrorProc","features":[371]},{"name":"GLUtessVertexDataProc","features":[371]},{"name":"GLUtessVertexProc","features":[371]},{"name":"GLUtesselator","features":[371]},{"name":"GLYPHMETRICSFLOAT","features":[371]},{"name":"GL_2D","features":[371]},{"name":"GL_2_BYTES","features":[371]},{"name":"GL_3D","features":[371]},{"name":"GL_3D_COLOR","features":[371]},{"name":"GL_3D_COLOR_TEXTURE","features":[371]},{"name":"GL_3_BYTES","features":[371]},{"name":"GL_4D_COLOR_TEXTURE","features":[371]},{"name":"GL_4_BYTES","features":[371]},{"name":"GL_ACCUM","features":[371]},{"name":"GL_ACCUM_ALPHA_BITS","features":[371]},{"name":"GL_ACCUM_BLUE_BITS","features":[371]},{"name":"GL_ACCUM_BUFFER_BIT","features":[371]},{"name":"GL_ACCUM_CLEAR_VALUE","features":[371]},{"name":"GL_ACCUM_GREEN_BITS","features":[371]},{"name":"GL_ACCUM_RED_BITS","features":[371]},{"name":"GL_ADD","features":[371]},{"name":"GL_ALL_ATTRIB_BITS","features":[371]},{"name":"GL_ALPHA","features":[371]},{"name":"GL_ALPHA12","features":[371]},{"name":"GL_ALPHA16","features":[371]},{"name":"GL_ALPHA4","features":[371]},{"name":"GL_ALPHA8","features":[371]},{"name":"GL_ALPHA_BIAS","features":[371]},{"name":"GL_ALPHA_BITS","features":[371]},{"name":"GL_ALPHA_SCALE","features":[371]},{"name":"GL_ALPHA_TEST","features":[371]},{"name":"GL_ALPHA_TEST_FUNC","features":[371]},{"name":"GL_ALPHA_TEST_REF","features":[371]},{"name":"GL_ALWAYS","features":[371]},{"name":"GL_AMBIENT","features":[371]},{"name":"GL_AMBIENT_AND_DIFFUSE","features":[371]},{"name":"GL_AND","features":[371]},{"name":"GL_AND_INVERTED","features":[371]},{"name":"GL_AND_REVERSE","features":[371]},{"name":"GL_ATTRIB_STACK_DEPTH","features":[371]},{"name":"GL_AUTO_NORMAL","features":[371]},{"name":"GL_AUX0","features":[371]},{"name":"GL_AUX1","features":[371]},{"name":"GL_AUX2","features":[371]},{"name":"GL_AUX3","features":[371]},{"name":"GL_AUX_BUFFERS","features":[371]},{"name":"GL_BACK","features":[371]},{"name":"GL_BACK_LEFT","features":[371]},{"name":"GL_BACK_RIGHT","features":[371]},{"name":"GL_BGRA_EXT","features":[371]},{"name":"GL_BGR_EXT","features":[371]},{"name":"GL_BITMAP","features":[371]},{"name":"GL_BITMAP_TOKEN","features":[371]},{"name":"GL_BLEND","features":[371]},{"name":"GL_BLEND_DST","features":[371]},{"name":"GL_BLEND_SRC","features":[371]},{"name":"GL_BLUE","features":[371]},{"name":"GL_BLUE_BIAS","features":[371]},{"name":"GL_BLUE_BITS","features":[371]},{"name":"GL_BLUE_SCALE","features":[371]},{"name":"GL_BYTE","features":[371]},{"name":"GL_C3F_V3F","features":[371]},{"name":"GL_C4F_N3F_V3F","features":[371]},{"name":"GL_C4UB_V2F","features":[371]},{"name":"GL_C4UB_V3F","features":[371]},{"name":"GL_CCW","features":[371]},{"name":"GL_CLAMP","features":[371]},{"name":"GL_CLEAR","features":[371]},{"name":"GL_CLIENT_ALL_ATTRIB_BITS","features":[371]},{"name":"GL_CLIENT_ATTRIB_STACK_DEPTH","features":[371]},{"name":"GL_CLIENT_PIXEL_STORE_BIT","features":[371]},{"name":"GL_CLIENT_VERTEX_ARRAY_BIT","features":[371]},{"name":"GL_CLIP_PLANE0","features":[371]},{"name":"GL_CLIP_PLANE1","features":[371]},{"name":"GL_CLIP_PLANE2","features":[371]},{"name":"GL_CLIP_PLANE3","features":[371]},{"name":"GL_CLIP_PLANE4","features":[371]},{"name":"GL_CLIP_PLANE5","features":[371]},{"name":"GL_COEFF","features":[371]},{"name":"GL_COLOR","features":[371]},{"name":"GL_COLOR_ARRAY","features":[371]},{"name":"GL_COLOR_ARRAY_COUNT_EXT","features":[371]},{"name":"GL_COLOR_ARRAY_EXT","features":[371]},{"name":"GL_COLOR_ARRAY_POINTER","features":[371]},{"name":"GL_COLOR_ARRAY_POINTER_EXT","features":[371]},{"name":"GL_COLOR_ARRAY_SIZE","features":[371]},{"name":"GL_COLOR_ARRAY_SIZE_EXT","features":[371]},{"name":"GL_COLOR_ARRAY_STRIDE","features":[371]},{"name":"GL_COLOR_ARRAY_STRIDE_EXT","features":[371]},{"name":"GL_COLOR_ARRAY_TYPE","features":[371]},{"name":"GL_COLOR_ARRAY_TYPE_EXT","features":[371]},{"name":"GL_COLOR_BUFFER_BIT","features":[371]},{"name":"GL_COLOR_CLEAR_VALUE","features":[371]},{"name":"GL_COLOR_INDEX","features":[371]},{"name":"GL_COLOR_INDEX12_EXT","features":[371]},{"name":"GL_COLOR_INDEX16_EXT","features":[371]},{"name":"GL_COLOR_INDEX1_EXT","features":[371]},{"name":"GL_COLOR_INDEX2_EXT","features":[371]},{"name":"GL_COLOR_INDEX4_EXT","features":[371]},{"name":"GL_COLOR_INDEX8_EXT","features":[371]},{"name":"GL_COLOR_INDEXES","features":[371]},{"name":"GL_COLOR_LOGIC_OP","features":[371]},{"name":"GL_COLOR_MATERIAL","features":[371]},{"name":"GL_COLOR_MATERIAL_FACE","features":[371]},{"name":"GL_COLOR_MATERIAL_PARAMETER","features":[371]},{"name":"GL_COLOR_TABLE_ALPHA_SIZE_EXT","features":[371]},{"name":"GL_COLOR_TABLE_BLUE_SIZE_EXT","features":[371]},{"name":"GL_COLOR_TABLE_FORMAT_EXT","features":[371]},{"name":"GL_COLOR_TABLE_GREEN_SIZE_EXT","features":[371]},{"name":"GL_COLOR_TABLE_INTENSITY_SIZE_EXT","features":[371]},{"name":"GL_COLOR_TABLE_LUMINANCE_SIZE_EXT","features":[371]},{"name":"GL_COLOR_TABLE_RED_SIZE_EXT","features":[371]},{"name":"GL_COLOR_TABLE_WIDTH_EXT","features":[371]},{"name":"GL_COLOR_WRITEMASK","features":[371]},{"name":"GL_COMPILE","features":[371]},{"name":"GL_COMPILE_AND_EXECUTE","features":[371]},{"name":"GL_CONSTANT_ATTENUATION","features":[371]},{"name":"GL_COPY","features":[371]},{"name":"GL_COPY_INVERTED","features":[371]},{"name":"GL_COPY_PIXEL_TOKEN","features":[371]},{"name":"GL_CULL_FACE","features":[371]},{"name":"GL_CULL_FACE_MODE","features":[371]},{"name":"GL_CURRENT_BIT","features":[371]},{"name":"GL_CURRENT_COLOR","features":[371]},{"name":"GL_CURRENT_INDEX","features":[371]},{"name":"GL_CURRENT_NORMAL","features":[371]},{"name":"GL_CURRENT_RASTER_COLOR","features":[371]},{"name":"GL_CURRENT_RASTER_DISTANCE","features":[371]},{"name":"GL_CURRENT_RASTER_INDEX","features":[371]},{"name":"GL_CURRENT_RASTER_POSITION","features":[371]},{"name":"GL_CURRENT_RASTER_POSITION_VALID","features":[371]},{"name":"GL_CURRENT_RASTER_TEXTURE_COORDS","features":[371]},{"name":"GL_CURRENT_TEXTURE_COORDS","features":[371]},{"name":"GL_CW","features":[371]},{"name":"GL_DECAL","features":[371]},{"name":"GL_DECR","features":[371]},{"name":"GL_DEPTH","features":[371]},{"name":"GL_DEPTH_BIAS","features":[371]},{"name":"GL_DEPTH_BITS","features":[371]},{"name":"GL_DEPTH_BUFFER_BIT","features":[371]},{"name":"GL_DEPTH_CLEAR_VALUE","features":[371]},{"name":"GL_DEPTH_COMPONENT","features":[371]},{"name":"GL_DEPTH_FUNC","features":[371]},{"name":"GL_DEPTH_RANGE","features":[371]},{"name":"GL_DEPTH_SCALE","features":[371]},{"name":"GL_DEPTH_TEST","features":[371]},{"name":"GL_DEPTH_WRITEMASK","features":[371]},{"name":"GL_DIFFUSE","features":[371]},{"name":"GL_DITHER","features":[371]},{"name":"GL_DOMAIN","features":[371]},{"name":"GL_DONT_CARE","features":[371]},{"name":"GL_DOUBLE","features":[371]},{"name":"GL_DOUBLEBUFFER","features":[371]},{"name":"GL_DOUBLE_EXT","features":[371]},{"name":"GL_DRAW_BUFFER","features":[371]},{"name":"GL_DRAW_PIXEL_TOKEN","features":[371]},{"name":"GL_DST_ALPHA","features":[371]},{"name":"GL_DST_COLOR","features":[371]},{"name":"GL_EDGE_FLAG","features":[371]},{"name":"GL_EDGE_FLAG_ARRAY","features":[371]},{"name":"GL_EDGE_FLAG_ARRAY_COUNT_EXT","features":[371]},{"name":"GL_EDGE_FLAG_ARRAY_EXT","features":[371]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER","features":[371]},{"name":"GL_EDGE_FLAG_ARRAY_POINTER_EXT","features":[371]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE","features":[371]},{"name":"GL_EDGE_FLAG_ARRAY_STRIDE_EXT","features":[371]},{"name":"GL_EMISSION","features":[371]},{"name":"GL_ENABLE_BIT","features":[371]},{"name":"GL_EQUAL","features":[371]},{"name":"GL_EQUIV","features":[371]},{"name":"GL_EVAL_BIT","features":[371]},{"name":"GL_EXP","features":[371]},{"name":"GL_EXP2","features":[371]},{"name":"GL_EXTENSIONS","features":[371]},{"name":"GL_EXT_bgra","features":[371]},{"name":"GL_EXT_paletted_texture","features":[371]},{"name":"GL_EXT_vertex_array","features":[371]},{"name":"GL_EYE_LINEAR","features":[371]},{"name":"GL_EYE_PLANE","features":[371]},{"name":"GL_FALSE","features":[371]},{"name":"GL_FASTEST","features":[371]},{"name":"GL_FEEDBACK","features":[371]},{"name":"GL_FEEDBACK_BUFFER_POINTER","features":[371]},{"name":"GL_FEEDBACK_BUFFER_SIZE","features":[371]},{"name":"GL_FEEDBACK_BUFFER_TYPE","features":[371]},{"name":"GL_FILL","features":[371]},{"name":"GL_FLAT","features":[371]},{"name":"GL_FLOAT","features":[371]},{"name":"GL_FOG","features":[371]},{"name":"GL_FOG_BIT","features":[371]},{"name":"GL_FOG_COLOR","features":[371]},{"name":"GL_FOG_DENSITY","features":[371]},{"name":"GL_FOG_END","features":[371]},{"name":"GL_FOG_HINT","features":[371]},{"name":"GL_FOG_INDEX","features":[371]},{"name":"GL_FOG_MODE","features":[371]},{"name":"GL_FOG_SPECULAR_TEXTURE_WIN","features":[371]},{"name":"GL_FOG_START","features":[371]},{"name":"GL_FRONT","features":[371]},{"name":"GL_FRONT_AND_BACK","features":[371]},{"name":"GL_FRONT_FACE","features":[371]},{"name":"GL_FRONT_LEFT","features":[371]},{"name":"GL_FRONT_RIGHT","features":[371]},{"name":"GL_GEQUAL","features":[371]},{"name":"GL_GREATER","features":[371]},{"name":"GL_GREEN","features":[371]},{"name":"GL_GREEN_BIAS","features":[371]},{"name":"GL_GREEN_BITS","features":[371]},{"name":"GL_GREEN_SCALE","features":[371]},{"name":"GL_HINT_BIT","features":[371]},{"name":"GL_INCR","features":[371]},{"name":"GL_INDEX_ARRAY","features":[371]},{"name":"GL_INDEX_ARRAY_COUNT_EXT","features":[371]},{"name":"GL_INDEX_ARRAY_EXT","features":[371]},{"name":"GL_INDEX_ARRAY_POINTER","features":[371]},{"name":"GL_INDEX_ARRAY_POINTER_EXT","features":[371]},{"name":"GL_INDEX_ARRAY_STRIDE","features":[371]},{"name":"GL_INDEX_ARRAY_STRIDE_EXT","features":[371]},{"name":"GL_INDEX_ARRAY_TYPE","features":[371]},{"name":"GL_INDEX_ARRAY_TYPE_EXT","features":[371]},{"name":"GL_INDEX_BITS","features":[371]},{"name":"GL_INDEX_CLEAR_VALUE","features":[371]},{"name":"GL_INDEX_LOGIC_OP","features":[371]},{"name":"GL_INDEX_MODE","features":[371]},{"name":"GL_INDEX_OFFSET","features":[371]},{"name":"GL_INDEX_SHIFT","features":[371]},{"name":"GL_INDEX_WRITEMASK","features":[371]},{"name":"GL_INT","features":[371]},{"name":"GL_INTENSITY","features":[371]},{"name":"GL_INTENSITY12","features":[371]},{"name":"GL_INTENSITY16","features":[371]},{"name":"GL_INTENSITY4","features":[371]},{"name":"GL_INTENSITY8","features":[371]},{"name":"GL_INVALID_ENUM","features":[371]},{"name":"GL_INVALID_OPERATION","features":[371]},{"name":"GL_INVALID_VALUE","features":[371]},{"name":"GL_INVERT","features":[371]},{"name":"GL_KEEP","features":[371]},{"name":"GL_LEFT","features":[371]},{"name":"GL_LEQUAL","features":[371]},{"name":"GL_LESS","features":[371]},{"name":"GL_LIGHT0","features":[371]},{"name":"GL_LIGHT1","features":[371]},{"name":"GL_LIGHT2","features":[371]},{"name":"GL_LIGHT3","features":[371]},{"name":"GL_LIGHT4","features":[371]},{"name":"GL_LIGHT5","features":[371]},{"name":"GL_LIGHT6","features":[371]},{"name":"GL_LIGHT7","features":[371]},{"name":"GL_LIGHTING","features":[371]},{"name":"GL_LIGHTING_BIT","features":[371]},{"name":"GL_LIGHT_MODEL_AMBIENT","features":[371]},{"name":"GL_LIGHT_MODEL_LOCAL_VIEWER","features":[371]},{"name":"GL_LIGHT_MODEL_TWO_SIDE","features":[371]},{"name":"GL_LINE","features":[371]},{"name":"GL_LINEAR","features":[371]},{"name":"GL_LINEAR_ATTENUATION","features":[371]},{"name":"GL_LINEAR_MIPMAP_LINEAR","features":[371]},{"name":"GL_LINEAR_MIPMAP_NEAREST","features":[371]},{"name":"GL_LINES","features":[371]},{"name":"GL_LINE_BIT","features":[371]},{"name":"GL_LINE_LOOP","features":[371]},{"name":"GL_LINE_RESET_TOKEN","features":[371]},{"name":"GL_LINE_SMOOTH","features":[371]},{"name":"GL_LINE_SMOOTH_HINT","features":[371]},{"name":"GL_LINE_STIPPLE","features":[371]},{"name":"GL_LINE_STIPPLE_PATTERN","features":[371]},{"name":"GL_LINE_STIPPLE_REPEAT","features":[371]},{"name":"GL_LINE_STRIP","features":[371]},{"name":"GL_LINE_TOKEN","features":[371]},{"name":"GL_LINE_WIDTH","features":[371]},{"name":"GL_LINE_WIDTH_GRANULARITY","features":[371]},{"name":"GL_LINE_WIDTH_RANGE","features":[371]},{"name":"GL_LIST_BASE","features":[371]},{"name":"GL_LIST_BIT","features":[371]},{"name":"GL_LIST_INDEX","features":[371]},{"name":"GL_LIST_MODE","features":[371]},{"name":"GL_LOAD","features":[371]},{"name":"GL_LOGIC_OP","features":[371]},{"name":"GL_LOGIC_OP_MODE","features":[371]},{"name":"GL_LUMINANCE","features":[371]},{"name":"GL_LUMINANCE12","features":[371]},{"name":"GL_LUMINANCE12_ALPHA12","features":[371]},{"name":"GL_LUMINANCE12_ALPHA4","features":[371]},{"name":"GL_LUMINANCE16","features":[371]},{"name":"GL_LUMINANCE16_ALPHA16","features":[371]},{"name":"GL_LUMINANCE4","features":[371]},{"name":"GL_LUMINANCE4_ALPHA4","features":[371]},{"name":"GL_LUMINANCE6_ALPHA2","features":[371]},{"name":"GL_LUMINANCE8","features":[371]},{"name":"GL_LUMINANCE8_ALPHA8","features":[371]},{"name":"GL_LUMINANCE_ALPHA","features":[371]},{"name":"GL_MAP1_COLOR_4","features":[371]},{"name":"GL_MAP1_GRID_DOMAIN","features":[371]},{"name":"GL_MAP1_GRID_SEGMENTS","features":[371]},{"name":"GL_MAP1_INDEX","features":[371]},{"name":"GL_MAP1_NORMAL","features":[371]},{"name":"GL_MAP1_TEXTURE_COORD_1","features":[371]},{"name":"GL_MAP1_TEXTURE_COORD_2","features":[371]},{"name":"GL_MAP1_TEXTURE_COORD_3","features":[371]},{"name":"GL_MAP1_TEXTURE_COORD_4","features":[371]},{"name":"GL_MAP1_VERTEX_3","features":[371]},{"name":"GL_MAP1_VERTEX_4","features":[371]},{"name":"GL_MAP2_COLOR_4","features":[371]},{"name":"GL_MAP2_GRID_DOMAIN","features":[371]},{"name":"GL_MAP2_GRID_SEGMENTS","features":[371]},{"name":"GL_MAP2_INDEX","features":[371]},{"name":"GL_MAP2_NORMAL","features":[371]},{"name":"GL_MAP2_TEXTURE_COORD_1","features":[371]},{"name":"GL_MAP2_TEXTURE_COORD_2","features":[371]},{"name":"GL_MAP2_TEXTURE_COORD_3","features":[371]},{"name":"GL_MAP2_TEXTURE_COORD_4","features":[371]},{"name":"GL_MAP2_VERTEX_3","features":[371]},{"name":"GL_MAP2_VERTEX_4","features":[371]},{"name":"GL_MAP_COLOR","features":[371]},{"name":"GL_MAP_STENCIL","features":[371]},{"name":"GL_MATRIX_MODE","features":[371]},{"name":"GL_MAX_ATTRIB_STACK_DEPTH","features":[371]},{"name":"GL_MAX_CLIENT_ATTRIB_STACK_DEPTH","features":[371]},{"name":"GL_MAX_CLIP_PLANES","features":[371]},{"name":"GL_MAX_ELEMENTS_INDICES_WIN","features":[371]},{"name":"GL_MAX_ELEMENTS_VERTICES_WIN","features":[371]},{"name":"GL_MAX_EVAL_ORDER","features":[371]},{"name":"GL_MAX_LIGHTS","features":[371]},{"name":"GL_MAX_LIST_NESTING","features":[371]},{"name":"GL_MAX_MODELVIEW_STACK_DEPTH","features":[371]},{"name":"GL_MAX_NAME_STACK_DEPTH","features":[371]},{"name":"GL_MAX_PIXEL_MAP_TABLE","features":[371]},{"name":"GL_MAX_PROJECTION_STACK_DEPTH","features":[371]},{"name":"GL_MAX_TEXTURE_SIZE","features":[371]},{"name":"GL_MAX_TEXTURE_STACK_DEPTH","features":[371]},{"name":"GL_MAX_VIEWPORT_DIMS","features":[371]},{"name":"GL_MODELVIEW","features":[371]},{"name":"GL_MODELVIEW_MATRIX","features":[371]},{"name":"GL_MODELVIEW_STACK_DEPTH","features":[371]},{"name":"GL_MODULATE","features":[371]},{"name":"GL_MULT","features":[371]},{"name":"GL_N3F_V3F","features":[371]},{"name":"GL_NAME_STACK_DEPTH","features":[371]},{"name":"GL_NAND","features":[371]},{"name":"GL_NEAREST","features":[371]},{"name":"GL_NEAREST_MIPMAP_LINEAR","features":[371]},{"name":"GL_NEAREST_MIPMAP_NEAREST","features":[371]},{"name":"GL_NEVER","features":[371]},{"name":"GL_NICEST","features":[371]},{"name":"GL_NONE","features":[371]},{"name":"GL_NOOP","features":[371]},{"name":"GL_NOR","features":[371]},{"name":"GL_NORMALIZE","features":[371]},{"name":"GL_NORMAL_ARRAY","features":[371]},{"name":"GL_NORMAL_ARRAY_COUNT_EXT","features":[371]},{"name":"GL_NORMAL_ARRAY_EXT","features":[371]},{"name":"GL_NORMAL_ARRAY_POINTER","features":[371]},{"name":"GL_NORMAL_ARRAY_POINTER_EXT","features":[371]},{"name":"GL_NORMAL_ARRAY_STRIDE","features":[371]},{"name":"GL_NORMAL_ARRAY_STRIDE_EXT","features":[371]},{"name":"GL_NORMAL_ARRAY_TYPE","features":[371]},{"name":"GL_NORMAL_ARRAY_TYPE_EXT","features":[371]},{"name":"GL_NOTEQUAL","features":[371]},{"name":"GL_NO_ERROR","features":[371]},{"name":"GL_OBJECT_LINEAR","features":[371]},{"name":"GL_OBJECT_PLANE","features":[371]},{"name":"GL_ONE","features":[371]},{"name":"GL_ONE_MINUS_DST_ALPHA","features":[371]},{"name":"GL_ONE_MINUS_DST_COLOR","features":[371]},{"name":"GL_ONE_MINUS_SRC_ALPHA","features":[371]},{"name":"GL_ONE_MINUS_SRC_COLOR","features":[371]},{"name":"GL_OR","features":[371]},{"name":"GL_ORDER","features":[371]},{"name":"GL_OR_INVERTED","features":[371]},{"name":"GL_OR_REVERSE","features":[371]},{"name":"GL_OUT_OF_MEMORY","features":[371]},{"name":"GL_PACK_ALIGNMENT","features":[371]},{"name":"GL_PACK_LSB_FIRST","features":[371]},{"name":"GL_PACK_ROW_LENGTH","features":[371]},{"name":"GL_PACK_SKIP_PIXELS","features":[371]},{"name":"GL_PACK_SKIP_ROWS","features":[371]},{"name":"GL_PACK_SWAP_BYTES","features":[371]},{"name":"GL_PASS_THROUGH_TOKEN","features":[371]},{"name":"GL_PERSPECTIVE_CORRECTION_HINT","features":[371]},{"name":"GL_PHONG_HINT_WIN","features":[371]},{"name":"GL_PHONG_WIN","features":[371]},{"name":"GL_PIXEL_MAP_A_TO_A","features":[371]},{"name":"GL_PIXEL_MAP_A_TO_A_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_B_TO_B","features":[371]},{"name":"GL_PIXEL_MAP_B_TO_B_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_G_TO_G","features":[371]},{"name":"GL_PIXEL_MAP_G_TO_G_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_A","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_A_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_B","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_B_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_G","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_G_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_I","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_I_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_R","features":[371]},{"name":"GL_PIXEL_MAP_I_TO_R_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_R_TO_R","features":[371]},{"name":"GL_PIXEL_MAP_R_TO_R_SIZE","features":[371]},{"name":"GL_PIXEL_MAP_S_TO_S","features":[371]},{"name":"GL_PIXEL_MAP_S_TO_S_SIZE","features":[371]},{"name":"GL_PIXEL_MODE_BIT","features":[371]},{"name":"GL_POINT","features":[371]},{"name":"GL_POINTS","features":[371]},{"name":"GL_POINT_BIT","features":[371]},{"name":"GL_POINT_SIZE","features":[371]},{"name":"GL_POINT_SIZE_GRANULARITY","features":[371]},{"name":"GL_POINT_SIZE_RANGE","features":[371]},{"name":"GL_POINT_SMOOTH","features":[371]},{"name":"GL_POINT_SMOOTH_HINT","features":[371]},{"name":"GL_POINT_TOKEN","features":[371]},{"name":"GL_POLYGON","features":[371]},{"name":"GL_POLYGON_BIT","features":[371]},{"name":"GL_POLYGON_MODE","features":[371]},{"name":"GL_POLYGON_OFFSET_FACTOR","features":[371]},{"name":"GL_POLYGON_OFFSET_FILL","features":[371]},{"name":"GL_POLYGON_OFFSET_LINE","features":[371]},{"name":"GL_POLYGON_OFFSET_POINT","features":[371]},{"name":"GL_POLYGON_OFFSET_UNITS","features":[371]},{"name":"GL_POLYGON_SMOOTH","features":[371]},{"name":"GL_POLYGON_SMOOTH_HINT","features":[371]},{"name":"GL_POLYGON_STIPPLE","features":[371]},{"name":"GL_POLYGON_STIPPLE_BIT","features":[371]},{"name":"GL_POLYGON_TOKEN","features":[371]},{"name":"GL_POSITION","features":[371]},{"name":"GL_PROJECTION","features":[371]},{"name":"GL_PROJECTION_MATRIX","features":[371]},{"name":"GL_PROJECTION_STACK_DEPTH","features":[371]},{"name":"GL_PROXY_TEXTURE_1D","features":[371]},{"name":"GL_PROXY_TEXTURE_2D","features":[371]},{"name":"GL_Q","features":[371]},{"name":"GL_QUADRATIC_ATTENUATION","features":[371]},{"name":"GL_QUADS","features":[371]},{"name":"GL_QUAD_STRIP","features":[371]},{"name":"GL_R","features":[371]},{"name":"GL_R3_G3_B2","features":[371]},{"name":"GL_READ_BUFFER","features":[371]},{"name":"GL_RED","features":[371]},{"name":"GL_RED_BIAS","features":[371]},{"name":"GL_RED_BITS","features":[371]},{"name":"GL_RED_SCALE","features":[371]},{"name":"GL_RENDER","features":[371]},{"name":"GL_RENDERER","features":[371]},{"name":"GL_RENDER_MODE","features":[371]},{"name":"GL_REPEAT","features":[371]},{"name":"GL_REPLACE","features":[371]},{"name":"GL_RETURN","features":[371]},{"name":"GL_RGB","features":[371]},{"name":"GL_RGB10","features":[371]},{"name":"GL_RGB10_A2","features":[371]},{"name":"GL_RGB12","features":[371]},{"name":"GL_RGB16","features":[371]},{"name":"GL_RGB4","features":[371]},{"name":"GL_RGB5","features":[371]},{"name":"GL_RGB5_A1","features":[371]},{"name":"GL_RGB8","features":[371]},{"name":"GL_RGBA","features":[371]},{"name":"GL_RGBA12","features":[371]},{"name":"GL_RGBA16","features":[371]},{"name":"GL_RGBA2","features":[371]},{"name":"GL_RGBA4","features":[371]},{"name":"GL_RGBA8","features":[371]},{"name":"GL_RGBA_MODE","features":[371]},{"name":"GL_RIGHT","features":[371]},{"name":"GL_S","features":[371]},{"name":"GL_SCISSOR_BIT","features":[371]},{"name":"GL_SCISSOR_BOX","features":[371]},{"name":"GL_SCISSOR_TEST","features":[371]},{"name":"GL_SELECT","features":[371]},{"name":"GL_SELECTION_BUFFER_POINTER","features":[371]},{"name":"GL_SELECTION_BUFFER_SIZE","features":[371]},{"name":"GL_SET","features":[371]},{"name":"GL_SHADE_MODEL","features":[371]},{"name":"GL_SHININESS","features":[371]},{"name":"GL_SHORT","features":[371]},{"name":"GL_SMOOTH","features":[371]},{"name":"GL_SPECULAR","features":[371]},{"name":"GL_SPHERE_MAP","features":[371]},{"name":"GL_SPOT_CUTOFF","features":[371]},{"name":"GL_SPOT_DIRECTION","features":[371]},{"name":"GL_SPOT_EXPONENT","features":[371]},{"name":"GL_SRC_ALPHA","features":[371]},{"name":"GL_SRC_ALPHA_SATURATE","features":[371]},{"name":"GL_SRC_COLOR","features":[371]},{"name":"GL_STACK_OVERFLOW","features":[371]},{"name":"GL_STACK_UNDERFLOW","features":[371]},{"name":"GL_STENCIL","features":[371]},{"name":"GL_STENCIL_BITS","features":[371]},{"name":"GL_STENCIL_BUFFER_BIT","features":[371]},{"name":"GL_STENCIL_CLEAR_VALUE","features":[371]},{"name":"GL_STENCIL_FAIL","features":[371]},{"name":"GL_STENCIL_FUNC","features":[371]},{"name":"GL_STENCIL_INDEX","features":[371]},{"name":"GL_STENCIL_PASS_DEPTH_FAIL","features":[371]},{"name":"GL_STENCIL_PASS_DEPTH_PASS","features":[371]},{"name":"GL_STENCIL_REF","features":[371]},{"name":"GL_STENCIL_TEST","features":[371]},{"name":"GL_STENCIL_VALUE_MASK","features":[371]},{"name":"GL_STENCIL_WRITEMASK","features":[371]},{"name":"GL_STEREO","features":[371]},{"name":"GL_SUBPIXEL_BITS","features":[371]},{"name":"GL_T","features":[371]},{"name":"GL_T2F_C3F_V3F","features":[371]},{"name":"GL_T2F_C4F_N3F_V3F","features":[371]},{"name":"GL_T2F_C4UB_V3F","features":[371]},{"name":"GL_T2F_N3F_V3F","features":[371]},{"name":"GL_T2F_V3F","features":[371]},{"name":"GL_T4F_C4F_N3F_V4F","features":[371]},{"name":"GL_T4F_V4F","features":[371]},{"name":"GL_TEXTURE","features":[371]},{"name":"GL_TEXTURE_1D","features":[371]},{"name":"GL_TEXTURE_2D","features":[371]},{"name":"GL_TEXTURE_ALPHA_SIZE","features":[371]},{"name":"GL_TEXTURE_BINDING_1D","features":[371]},{"name":"GL_TEXTURE_BINDING_2D","features":[371]},{"name":"GL_TEXTURE_BIT","features":[371]},{"name":"GL_TEXTURE_BLUE_SIZE","features":[371]},{"name":"GL_TEXTURE_BORDER","features":[371]},{"name":"GL_TEXTURE_BORDER_COLOR","features":[371]},{"name":"GL_TEXTURE_COMPONENTS","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_COUNT_EXT","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_EXT","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_POINTER_EXT","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_SIZE_EXT","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_STRIDE_EXT","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE","features":[371]},{"name":"GL_TEXTURE_COORD_ARRAY_TYPE_EXT","features":[371]},{"name":"GL_TEXTURE_ENV","features":[371]},{"name":"GL_TEXTURE_ENV_COLOR","features":[371]},{"name":"GL_TEXTURE_ENV_MODE","features":[371]},{"name":"GL_TEXTURE_GEN_MODE","features":[371]},{"name":"GL_TEXTURE_GEN_Q","features":[371]},{"name":"GL_TEXTURE_GEN_R","features":[371]},{"name":"GL_TEXTURE_GEN_S","features":[371]},{"name":"GL_TEXTURE_GEN_T","features":[371]},{"name":"GL_TEXTURE_GREEN_SIZE","features":[371]},{"name":"GL_TEXTURE_HEIGHT","features":[371]},{"name":"GL_TEXTURE_INTENSITY_SIZE","features":[371]},{"name":"GL_TEXTURE_INTERNAL_FORMAT","features":[371]},{"name":"GL_TEXTURE_LUMINANCE_SIZE","features":[371]},{"name":"GL_TEXTURE_MAG_FILTER","features":[371]},{"name":"GL_TEXTURE_MATRIX","features":[371]},{"name":"GL_TEXTURE_MIN_FILTER","features":[371]},{"name":"GL_TEXTURE_PRIORITY","features":[371]},{"name":"GL_TEXTURE_RED_SIZE","features":[371]},{"name":"GL_TEXTURE_RESIDENT","features":[371]},{"name":"GL_TEXTURE_STACK_DEPTH","features":[371]},{"name":"GL_TEXTURE_WIDTH","features":[371]},{"name":"GL_TEXTURE_WRAP_S","features":[371]},{"name":"GL_TEXTURE_WRAP_T","features":[371]},{"name":"GL_TRANSFORM_BIT","features":[371]},{"name":"GL_TRIANGLES","features":[371]},{"name":"GL_TRIANGLE_FAN","features":[371]},{"name":"GL_TRIANGLE_STRIP","features":[371]},{"name":"GL_TRUE","features":[371]},{"name":"GL_UNPACK_ALIGNMENT","features":[371]},{"name":"GL_UNPACK_LSB_FIRST","features":[371]},{"name":"GL_UNPACK_ROW_LENGTH","features":[371]},{"name":"GL_UNPACK_SKIP_PIXELS","features":[371]},{"name":"GL_UNPACK_SKIP_ROWS","features":[371]},{"name":"GL_UNPACK_SWAP_BYTES","features":[371]},{"name":"GL_UNSIGNED_BYTE","features":[371]},{"name":"GL_UNSIGNED_INT","features":[371]},{"name":"GL_UNSIGNED_SHORT","features":[371]},{"name":"GL_V2F","features":[371]},{"name":"GL_V3F","features":[371]},{"name":"GL_VENDOR","features":[371]},{"name":"GL_VERSION","features":[371]},{"name":"GL_VERSION_1_1","features":[371]},{"name":"GL_VERTEX_ARRAY","features":[371]},{"name":"GL_VERTEX_ARRAY_COUNT_EXT","features":[371]},{"name":"GL_VERTEX_ARRAY_EXT","features":[371]},{"name":"GL_VERTEX_ARRAY_POINTER","features":[371]},{"name":"GL_VERTEX_ARRAY_POINTER_EXT","features":[371]},{"name":"GL_VERTEX_ARRAY_SIZE","features":[371]},{"name":"GL_VERTEX_ARRAY_SIZE_EXT","features":[371]},{"name":"GL_VERTEX_ARRAY_STRIDE","features":[371]},{"name":"GL_VERTEX_ARRAY_STRIDE_EXT","features":[371]},{"name":"GL_VERTEX_ARRAY_TYPE","features":[371]},{"name":"GL_VERTEX_ARRAY_TYPE_EXT","features":[371]},{"name":"GL_VIEWPORT","features":[371]},{"name":"GL_VIEWPORT_BIT","features":[371]},{"name":"GL_WIN_draw_range_elements","features":[371]},{"name":"GL_WIN_swap_hint","features":[371]},{"name":"GL_XOR","features":[371]},{"name":"GL_ZERO","features":[371]},{"name":"GL_ZOOM_X","features":[371]},{"name":"GL_ZOOM_Y","features":[371]},{"name":"GetEnhMetaFilePixelFormat","features":[316,371]},{"name":"GetPixelFormat","features":[316,371]},{"name":"HGLRC","features":[371]},{"name":"LAYERPLANEDESCRIPTOR","features":[305,371]},{"name":"PFD_DEPTH_DONTCARE","features":[371]},{"name":"PFD_DIRECT3D_ACCELERATED","features":[371]},{"name":"PFD_DOUBLEBUFFER","features":[371]},{"name":"PFD_DOUBLEBUFFER_DONTCARE","features":[371]},{"name":"PFD_DRAW_TO_BITMAP","features":[371]},{"name":"PFD_DRAW_TO_WINDOW","features":[371]},{"name":"PFD_FLAGS","features":[371]},{"name":"PFD_GENERIC_ACCELERATED","features":[371]},{"name":"PFD_GENERIC_FORMAT","features":[371]},{"name":"PFD_LAYER_TYPE","features":[371]},{"name":"PFD_MAIN_PLANE","features":[371]},{"name":"PFD_NEED_PALETTE","features":[371]},{"name":"PFD_NEED_SYSTEM_PALETTE","features":[371]},{"name":"PFD_OVERLAY_PLANE","features":[371]},{"name":"PFD_PIXEL_TYPE","features":[371]},{"name":"PFD_STEREO","features":[371]},{"name":"PFD_STEREO_DONTCARE","features":[371]},{"name":"PFD_SUPPORT_COMPOSITION","features":[371]},{"name":"PFD_SUPPORT_DIRECTDRAW","features":[371]},{"name":"PFD_SUPPORT_GDI","features":[371]},{"name":"PFD_SUPPORT_OPENGL","features":[371]},{"name":"PFD_SWAP_COPY","features":[371]},{"name":"PFD_SWAP_EXCHANGE","features":[371]},{"name":"PFD_SWAP_LAYER_BUFFERS","features":[371]},{"name":"PFD_TYPE_COLORINDEX","features":[371]},{"name":"PFD_TYPE_RGBA","features":[371]},{"name":"PFD_UNDERLAY_PLANE","features":[371]},{"name":"PFNGLADDSWAPHINTRECTWINPROC","features":[371]},{"name":"PFNGLARRAYELEMENTARRAYEXTPROC","features":[371]},{"name":"PFNGLARRAYELEMENTEXTPROC","features":[371]},{"name":"PFNGLCOLORPOINTEREXTPROC","features":[371]},{"name":"PFNGLCOLORSUBTABLEEXTPROC","features":[371]},{"name":"PFNGLCOLORTABLEEXTPROC","features":[371]},{"name":"PFNGLDRAWARRAYSEXTPROC","features":[371]},{"name":"PFNGLDRAWRANGEELEMENTSWINPROC","features":[371]},{"name":"PFNGLEDGEFLAGPOINTEREXTPROC","features":[371]},{"name":"PFNGLGETCOLORTABLEEXTPROC","features":[371]},{"name":"PFNGLGETCOLORTABLEPARAMETERFVEXTPROC","features":[371]},{"name":"PFNGLGETCOLORTABLEPARAMETERIVEXTPROC","features":[371]},{"name":"PFNGLGETPOINTERVEXTPROC","features":[371]},{"name":"PFNGLINDEXPOINTEREXTPROC","features":[371]},{"name":"PFNGLNORMALPOINTEREXTPROC","features":[371]},{"name":"PFNGLTEXCOORDPOINTEREXTPROC","features":[371]},{"name":"PFNGLVERTEXPOINTEREXTPROC","features":[371]},{"name":"PIXELFORMATDESCRIPTOR","features":[371]},{"name":"POINTFLOAT","features":[371]},{"name":"SetPixelFormat","features":[305,316,371]},{"name":"SwapBuffers","features":[305,316,371]},{"name":"glAccum","features":[371]},{"name":"glAlphaFunc","features":[371]},{"name":"glAreTexturesResident","features":[371]},{"name":"glArrayElement","features":[371]},{"name":"glBegin","features":[371]},{"name":"glBindTexture","features":[371]},{"name":"glBitmap","features":[371]},{"name":"glBlendFunc","features":[371]},{"name":"glCallList","features":[371]},{"name":"glCallLists","features":[371]},{"name":"glClear","features":[371]},{"name":"glClearAccum","features":[371]},{"name":"glClearColor","features":[371]},{"name":"glClearDepth","features":[371]},{"name":"glClearIndex","features":[371]},{"name":"glClearStencil","features":[371]},{"name":"glClipPlane","features":[371]},{"name":"glColor3b","features":[371]},{"name":"glColor3bv","features":[371]},{"name":"glColor3d","features":[371]},{"name":"glColor3dv","features":[371]},{"name":"glColor3f","features":[371]},{"name":"glColor3fv","features":[371]},{"name":"glColor3i","features":[371]},{"name":"glColor3iv","features":[371]},{"name":"glColor3s","features":[371]},{"name":"glColor3sv","features":[371]},{"name":"glColor3ub","features":[371]},{"name":"glColor3ubv","features":[371]},{"name":"glColor3ui","features":[371]},{"name":"glColor3uiv","features":[371]},{"name":"glColor3us","features":[371]},{"name":"glColor3usv","features":[371]},{"name":"glColor4b","features":[371]},{"name":"glColor4bv","features":[371]},{"name":"glColor4d","features":[371]},{"name":"glColor4dv","features":[371]},{"name":"glColor4f","features":[371]},{"name":"glColor4fv","features":[371]},{"name":"glColor4i","features":[371]},{"name":"glColor4iv","features":[371]},{"name":"glColor4s","features":[371]},{"name":"glColor4sv","features":[371]},{"name":"glColor4ub","features":[371]},{"name":"glColor4ubv","features":[371]},{"name":"glColor4ui","features":[371]},{"name":"glColor4uiv","features":[371]},{"name":"glColor4us","features":[371]},{"name":"glColor4usv","features":[371]},{"name":"glColorMask","features":[371]},{"name":"glColorMaterial","features":[371]},{"name":"glColorPointer","features":[371]},{"name":"glCopyPixels","features":[371]},{"name":"glCopyTexImage1D","features":[371]},{"name":"glCopyTexImage2D","features":[371]},{"name":"glCopyTexSubImage1D","features":[371]},{"name":"glCopyTexSubImage2D","features":[371]},{"name":"glCullFace","features":[371]},{"name":"glDeleteLists","features":[371]},{"name":"glDeleteTextures","features":[371]},{"name":"glDepthFunc","features":[371]},{"name":"glDepthMask","features":[371]},{"name":"glDepthRange","features":[371]},{"name":"glDisable","features":[371]},{"name":"glDisableClientState","features":[371]},{"name":"glDrawArrays","features":[371]},{"name":"glDrawBuffer","features":[371]},{"name":"glDrawElements","features":[371]},{"name":"glDrawPixels","features":[371]},{"name":"glEdgeFlag","features":[371]},{"name":"glEdgeFlagPointer","features":[371]},{"name":"glEdgeFlagv","features":[371]},{"name":"glEnable","features":[371]},{"name":"glEnableClientState","features":[371]},{"name":"glEnd","features":[371]},{"name":"glEndList","features":[371]},{"name":"glEvalCoord1d","features":[371]},{"name":"glEvalCoord1dv","features":[371]},{"name":"glEvalCoord1f","features":[371]},{"name":"glEvalCoord1fv","features":[371]},{"name":"glEvalCoord2d","features":[371]},{"name":"glEvalCoord2dv","features":[371]},{"name":"glEvalCoord2f","features":[371]},{"name":"glEvalCoord2fv","features":[371]},{"name":"glEvalMesh1","features":[371]},{"name":"glEvalMesh2","features":[371]},{"name":"glEvalPoint1","features":[371]},{"name":"glEvalPoint2","features":[371]},{"name":"glFeedbackBuffer","features":[371]},{"name":"glFinish","features":[371]},{"name":"glFlush","features":[371]},{"name":"glFogf","features":[371]},{"name":"glFogfv","features":[371]},{"name":"glFogi","features":[371]},{"name":"glFogiv","features":[371]},{"name":"glFrontFace","features":[371]},{"name":"glFrustum","features":[371]},{"name":"glGenLists","features":[371]},{"name":"glGenTextures","features":[371]},{"name":"glGetBooleanv","features":[371]},{"name":"glGetClipPlane","features":[371]},{"name":"glGetDoublev","features":[371]},{"name":"glGetError","features":[371]},{"name":"glGetFloatv","features":[371]},{"name":"glGetIntegerv","features":[371]},{"name":"glGetLightfv","features":[371]},{"name":"glGetLightiv","features":[371]},{"name":"glGetMapdv","features":[371]},{"name":"glGetMapfv","features":[371]},{"name":"glGetMapiv","features":[371]},{"name":"glGetMaterialfv","features":[371]},{"name":"glGetMaterialiv","features":[371]},{"name":"glGetPixelMapfv","features":[371]},{"name":"glGetPixelMapuiv","features":[371]},{"name":"glGetPixelMapusv","features":[371]},{"name":"glGetPointerv","features":[371]},{"name":"glGetPolygonStipple","features":[371]},{"name":"glGetString","features":[371]},{"name":"glGetTexEnvfv","features":[371]},{"name":"glGetTexEnviv","features":[371]},{"name":"glGetTexGendv","features":[371]},{"name":"glGetTexGenfv","features":[371]},{"name":"glGetTexGeniv","features":[371]},{"name":"glGetTexImage","features":[371]},{"name":"glGetTexLevelParameterfv","features":[371]},{"name":"glGetTexLevelParameteriv","features":[371]},{"name":"glGetTexParameterfv","features":[371]},{"name":"glGetTexParameteriv","features":[371]},{"name":"glHint","features":[371]},{"name":"glIndexMask","features":[371]},{"name":"glIndexPointer","features":[371]},{"name":"glIndexd","features":[371]},{"name":"glIndexdv","features":[371]},{"name":"glIndexf","features":[371]},{"name":"glIndexfv","features":[371]},{"name":"glIndexi","features":[371]},{"name":"glIndexiv","features":[371]},{"name":"glIndexs","features":[371]},{"name":"glIndexsv","features":[371]},{"name":"glIndexub","features":[371]},{"name":"glIndexubv","features":[371]},{"name":"glInitNames","features":[371]},{"name":"glInterleavedArrays","features":[371]},{"name":"glIsEnabled","features":[371]},{"name":"glIsList","features":[371]},{"name":"glIsTexture","features":[371]},{"name":"glLightModelf","features":[371]},{"name":"glLightModelfv","features":[371]},{"name":"glLightModeli","features":[371]},{"name":"glLightModeliv","features":[371]},{"name":"glLightf","features":[371]},{"name":"glLightfv","features":[371]},{"name":"glLighti","features":[371]},{"name":"glLightiv","features":[371]},{"name":"glLineStipple","features":[371]},{"name":"glLineWidth","features":[371]},{"name":"glListBase","features":[371]},{"name":"glLoadIdentity","features":[371]},{"name":"glLoadMatrixd","features":[371]},{"name":"glLoadMatrixf","features":[371]},{"name":"glLoadName","features":[371]},{"name":"glLogicOp","features":[371]},{"name":"glMap1d","features":[371]},{"name":"glMap1f","features":[371]},{"name":"glMap2d","features":[371]},{"name":"glMap2f","features":[371]},{"name":"glMapGrid1d","features":[371]},{"name":"glMapGrid1f","features":[371]},{"name":"glMapGrid2d","features":[371]},{"name":"glMapGrid2f","features":[371]},{"name":"glMaterialf","features":[371]},{"name":"glMaterialfv","features":[371]},{"name":"glMateriali","features":[371]},{"name":"glMaterialiv","features":[371]},{"name":"glMatrixMode","features":[371]},{"name":"glMultMatrixd","features":[371]},{"name":"glMultMatrixf","features":[371]},{"name":"glNewList","features":[371]},{"name":"glNormal3b","features":[371]},{"name":"glNormal3bv","features":[371]},{"name":"glNormal3d","features":[371]},{"name":"glNormal3dv","features":[371]},{"name":"glNormal3f","features":[371]},{"name":"glNormal3fv","features":[371]},{"name":"glNormal3i","features":[371]},{"name":"glNormal3iv","features":[371]},{"name":"glNormal3s","features":[371]},{"name":"glNormal3sv","features":[371]},{"name":"glNormalPointer","features":[371]},{"name":"glOrtho","features":[371]},{"name":"glPassThrough","features":[371]},{"name":"glPixelMapfv","features":[371]},{"name":"glPixelMapuiv","features":[371]},{"name":"glPixelMapusv","features":[371]},{"name":"glPixelStoref","features":[371]},{"name":"glPixelStorei","features":[371]},{"name":"glPixelTransferf","features":[371]},{"name":"glPixelTransferi","features":[371]},{"name":"glPixelZoom","features":[371]},{"name":"glPointSize","features":[371]},{"name":"glPolygonMode","features":[371]},{"name":"glPolygonOffset","features":[371]},{"name":"glPolygonStipple","features":[371]},{"name":"glPopAttrib","features":[371]},{"name":"glPopClientAttrib","features":[371]},{"name":"glPopMatrix","features":[371]},{"name":"glPopName","features":[371]},{"name":"glPrioritizeTextures","features":[371]},{"name":"glPushAttrib","features":[371]},{"name":"glPushClientAttrib","features":[371]},{"name":"glPushMatrix","features":[371]},{"name":"glPushName","features":[371]},{"name":"glRasterPos2d","features":[371]},{"name":"glRasterPos2dv","features":[371]},{"name":"glRasterPos2f","features":[371]},{"name":"glRasterPos2fv","features":[371]},{"name":"glRasterPos2i","features":[371]},{"name":"glRasterPos2iv","features":[371]},{"name":"glRasterPos2s","features":[371]},{"name":"glRasterPos2sv","features":[371]},{"name":"glRasterPos3d","features":[371]},{"name":"glRasterPos3dv","features":[371]},{"name":"glRasterPos3f","features":[371]},{"name":"glRasterPos3fv","features":[371]},{"name":"glRasterPos3i","features":[371]},{"name":"glRasterPos3iv","features":[371]},{"name":"glRasterPos3s","features":[371]},{"name":"glRasterPos3sv","features":[371]},{"name":"glRasterPos4d","features":[371]},{"name":"glRasterPos4dv","features":[371]},{"name":"glRasterPos4f","features":[371]},{"name":"glRasterPos4fv","features":[371]},{"name":"glRasterPos4i","features":[371]},{"name":"glRasterPos4iv","features":[371]},{"name":"glRasterPos4s","features":[371]},{"name":"glRasterPos4sv","features":[371]},{"name":"glReadBuffer","features":[371]},{"name":"glReadPixels","features":[371]},{"name":"glRectd","features":[371]},{"name":"glRectdv","features":[371]},{"name":"glRectf","features":[371]},{"name":"glRectfv","features":[371]},{"name":"glRecti","features":[371]},{"name":"glRectiv","features":[371]},{"name":"glRects","features":[371]},{"name":"glRectsv","features":[371]},{"name":"glRenderMode","features":[371]},{"name":"glRotated","features":[371]},{"name":"glRotatef","features":[371]},{"name":"glScaled","features":[371]},{"name":"glScalef","features":[371]},{"name":"glScissor","features":[371]},{"name":"glSelectBuffer","features":[371]},{"name":"glShadeModel","features":[371]},{"name":"glStencilFunc","features":[371]},{"name":"glStencilMask","features":[371]},{"name":"glStencilOp","features":[371]},{"name":"glTexCoord1d","features":[371]},{"name":"glTexCoord1dv","features":[371]},{"name":"glTexCoord1f","features":[371]},{"name":"glTexCoord1fv","features":[371]},{"name":"glTexCoord1i","features":[371]},{"name":"glTexCoord1iv","features":[371]},{"name":"glTexCoord1s","features":[371]},{"name":"glTexCoord1sv","features":[371]},{"name":"glTexCoord2d","features":[371]},{"name":"glTexCoord2dv","features":[371]},{"name":"glTexCoord2f","features":[371]},{"name":"glTexCoord2fv","features":[371]},{"name":"glTexCoord2i","features":[371]},{"name":"glTexCoord2iv","features":[371]},{"name":"glTexCoord2s","features":[371]},{"name":"glTexCoord2sv","features":[371]},{"name":"glTexCoord3d","features":[371]},{"name":"glTexCoord3dv","features":[371]},{"name":"glTexCoord3f","features":[371]},{"name":"glTexCoord3fv","features":[371]},{"name":"glTexCoord3i","features":[371]},{"name":"glTexCoord3iv","features":[371]},{"name":"glTexCoord3s","features":[371]},{"name":"glTexCoord3sv","features":[371]},{"name":"glTexCoord4d","features":[371]},{"name":"glTexCoord4dv","features":[371]},{"name":"glTexCoord4f","features":[371]},{"name":"glTexCoord4fv","features":[371]},{"name":"glTexCoord4i","features":[371]},{"name":"glTexCoord4iv","features":[371]},{"name":"glTexCoord4s","features":[371]},{"name":"glTexCoord4sv","features":[371]},{"name":"glTexCoordPointer","features":[371]},{"name":"glTexEnvf","features":[371]},{"name":"glTexEnvfv","features":[371]},{"name":"glTexEnvi","features":[371]},{"name":"glTexEnviv","features":[371]},{"name":"glTexGend","features":[371]},{"name":"glTexGendv","features":[371]},{"name":"glTexGenf","features":[371]},{"name":"glTexGenfv","features":[371]},{"name":"glTexGeni","features":[371]},{"name":"glTexGeniv","features":[371]},{"name":"glTexImage1D","features":[371]},{"name":"glTexImage2D","features":[371]},{"name":"glTexParameterf","features":[371]},{"name":"glTexParameterfv","features":[371]},{"name":"glTexParameteri","features":[371]},{"name":"glTexParameteriv","features":[371]},{"name":"glTexSubImage1D","features":[371]},{"name":"glTexSubImage2D","features":[371]},{"name":"glTranslated","features":[371]},{"name":"glTranslatef","features":[371]},{"name":"glVertex2d","features":[371]},{"name":"glVertex2dv","features":[371]},{"name":"glVertex2f","features":[371]},{"name":"glVertex2fv","features":[371]},{"name":"glVertex2i","features":[371]},{"name":"glVertex2iv","features":[371]},{"name":"glVertex2s","features":[371]},{"name":"glVertex2sv","features":[371]},{"name":"glVertex3d","features":[371]},{"name":"glVertex3dv","features":[371]},{"name":"glVertex3f","features":[371]},{"name":"glVertex3fv","features":[371]},{"name":"glVertex3i","features":[371]},{"name":"glVertex3iv","features":[371]},{"name":"glVertex3s","features":[371]},{"name":"glVertex3sv","features":[371]},{"name":"glVertex4d","features":[371]},{"name":"glVertex4dv","features":[371]},{"name":"glVertex4f","features":[371]},{"name":"glVertex4fv","features":[371]},{"name":"glVertex4i","features":[371]},{"name":"glVertex4iv","features":[371]},{"name":"glVertex4s","features":[371]},{"name":"glVertex4sv","features":[371]},{"name":"glVertexPointer","features":[371]},{"name":"glViewport","features":[371]},{"name":"gluBeginCurve","features":[371]},{"name":"gluBeginPolygon","features":[371]},{"name":"gluBeginSurface","features":[371]},{"name":"gluBeginTrim","features":[371]},{"name":"gluBuild1DMipmaps","features":[371]},{"name":"gluBuild2DMipmaps","features":[371]},{"name":"gluCylinder","features":[371]},{"name":"gluDeleteNurbsRenderer","features":[371]},{"name":"gluDeleteQuadric","features":[371]},{"name":"gluDeleteTess","features":[371]},{"name":"gluDisk","features":[371]},{"name":"gluEndCurve","features":[371]},{"name":"gluEndPolygon","features":[371]},{"name":"gluEndSurface","features":[371]},{"name":"gluEndTrim","features":[371]},{"name":"gluErrorString","features":[371]},{"name":"gluErrorUnicodeStringEXT","features":[371]},{"name":"gluGetNurbsProperty","features":[371]},{"name":"gluGetString","features":[371]},{"name":"gluGetTessProperty","features":[371]},{"name":"gluLoadSamplingMatrices","features":[371]},{"name":"gluLookAt","features":[371]},{"name":"gluNewNurbsRenderer","features":[371]},{"name":"gluNewQuadric","features":[371]},{"name":"gluNewTess","features":[371]},{"name":"gluNextContour","features":[371]},{"name":"gluNurbsCallback","features":[371]},{"name":"gluNurbsCurve","features":[371]},{"name":"gluNurbsProperty","features":[371]},{"name":"gluNurbsSurface","features":[371]},{"name":"gluOrtho2D","features":[371]},{"name":"gluPartialDisk","features":[371]},{"name":"gluPerspective","features":[371]},{"name":"gluPickMatrix","features":[371]},{"name":"gluProject","features":[371]},{"name":"gluPwlCurve","features":[371]},{"name":"gluQuadricCallback","features":[371]},{"name":"gluQuadricDrawStyle","features":[371]},{"name":"gluQuadricNormals","features":[371]},{"name":"gluQuadricOrientation","features":[371]},{"name":"gluQuadricTexture","features":[371]},{"name":"gluScaleImage","features":[371]},{"name":"gluSphere","features":[371]},{"name":"gluTessBeginContour","features":[371]},{"name":"gluTessBeginPolygon","features":[371]},{"name":"gluTessCallback","features":[371]},{"name":"gluTessEndContour","features":[371]},{"name":"gluTessEndPolygon","features":[371]},{"name":"gluTessNormal","features":[371]},{"name":"gluTessProperty","features":[371]},{"name":"gluTessVertex","features":[371]},{"name":"gluUnProject","features":[371]},{"name":"wglCopyContext","features":[305,371]},{"name":"wglCreateContext","features":[316,371]},{"name":"wglCreateLayerContext","features":[316,371]},{"name":"wglDeleteContext","features":[305,371]},{"name":"wglDescribeLayerPlane","features":[305,316,371]},{"name":"wglGetCurrentContext","features":[371]},{"name":"wglGetCurrentDC","features":[316,371]},{"name":"wglGetLayerPaletteEntries","features":[305,316,371]},{"name":"wglGetProcAddress","features":[305,371]},{"name":"wglMakeCurrent","features":[305,316,371]},{"name":"wglRealizeLayerPalette","features":[305,316,371]},{"name":"wglSetLayerPaletteEntries","features":[305,316,371]},{"name":"wglShareLists","features":[305,371]},{"name":"wglSwapLayerBuffers","features":[305,316,371]},{"name":"wglUseFontBitmapsA","features":[305,316,371]},{"name":"wglUseFontBitmapsW","features":[305,316,371]},{"name":"wglUseFontOutlinesA","features":[305,316,371]},{"name":"wglUseFontOutlinesW","features":[305,316,371]}],"421":[{"name":"ADDJOB_INFO_1A","features":[413]},{"name":"ADDJOB_INFO_1W","features":[413]},{"name":"ALREADY_REGISTERED","features":[413]},{"name":"ALREADY_UNREGISTERED","features":[413]},{"name":"APD_COPY_ALL_FILES","features":[413]},{"name":"APD_COPY_FROM_DIRECTORY","features":[413]},{"name":"APD_COPY_NEW_FILES","features":[413]},{"name":"APD_STRICT_DOWNGRADE","features":[413]},{"name":"APD_STRICT_UPGRADE","features":[413]},{"name":"APPLYCPSUI_NO_NEWDEF","features":[413]},{"name":"APPLYCPSUI_OK_CANCEL_BUTTON","features":[413]},{"name":"ASYNC_CALL_ALREADY_PARKED","features":[413]},{"name":"ASYNC_CALL_IN_PROGRESS","features":[413]},{"name":"ASYNC_NOTIFICATION_FAILURE","features":[413]},{"name":"ATTRIBUTE_INFO_1","features":[413]},{"name":"ATTRIBUTE_INFO_2","features":[413]},{"name":"ATTRIBUTE_INFO_3","features":[413]},{"name":"ATTRIBUTE_INFO_4","features":[413]},{"name":"AbortPrinter","features":[305,413]},{"name":"AddFormA","features":[305,413]},{"name":"AddFormW","features":[305,413]},{"name":"AddJobA","features":[305,413]},{"name":"AddJobW","features":[305,413]},{"name":"AddMonitorA","features":[305,413]},{"name":"AddMonitorW","features":[305,413]},{"name":"AddPortA","features":[305,413]},{"name":"AddPortW","features":[305,413]},{"name":"AddPrintDeviceObject","features":[305,413]},{"name":"AddPrintProcessorA","features":[305,413]},{"name":"AddPrintProcessorW","features":[305,413]},{"name":"AddPrintProvidorA","features":[305,413]},{"name":"AddPrintProvidorW","features":[305,413]},{"name":"AddPrinterA","features":[305,413]},{"name":"AddPrinterConnection2A","features":[305,413]},{"name":"AddPrinterConnection2W","features":[305,413]},{"name":"AddPrinterConnectionA","features":[305,413]},{"name":"AddPrinterConnectionW","features":[305,413]},{"name":"AddPrinterDriverA","features":[305,413]},{"name":"AddPrinterDriverExA","features":[305,413]},{"name":"AddPrinterDriverExW","features":[305,413]},{"name":"AddPrinterDriverW","features":[305,413]},{"name":"AddPrinterW","features":[305,413]},{"name":"AdvancedDocumentPropertiesA","features":[305,316,413]},{"name":"AdvancedDocumentPropertiesW","features":[305,316,413]},{"name":"AppendPrinterNotifyInfoData","features":[305,413]},{"name":"BIDI_ACCESS_ADMINISTRATOR","features":[413]},{"name":"BIDI_ACCESS_USER","features":[413]},{"name":"BIDI_ACTION_ENUM_SCHEMA","features":[413]},{"name":"BIDI_ACTION_GET","features":[413]},{"name":"BIDI_ACTION_GET_ALL","features":[413]},{"name":"BIDI_ACTION_GET_WITH_ARGUMENT","features":[413]},{"name":"BIDI_ACTION_SET","features":[413]},{"name":"BIDI_BLOB","features":[413]},{"name":"BIDI_BOOL","features":[413]},{"name":"BIDI_DATA","features":[305,413]},{"name":"BIDI_ENUM","features":[413]},{"name":"BIDI_FLOAT","features":[413]},{"name":"BIDI_INT","features":[413]},{"name":"BIDI_NULL","features":[413]},{"name":"BIDI_REQUEST_CONTAINER","features":[305,413]},{"name":"BIDI_REQUEST_DATA","features":[305,413]},{"name":"BIDI_RESPONSE_CONTAINER","features":[305,413]},{"name":"BIDI_RESPONSE_DATA","features":[305,413]},{"name":"BIDI_STRING","features":[413]},{"name":"BIDI_TEXT","features":[413]},{"name":"BIDI_TYPE","features":[413]},{"name":"BINARY_CONTAINER","features":[413]},{"name":"BOOKLET_EDGE_LEFT","features":[413]},{"name":"BOOKLET_EDGE_RIGHT","features":[413]},{"name":"BOOKLET_PRINT","features":[413]},{"name":"BORDER_PRINT","features":[413]},{"name":"BidiRequest","features":[413]},{"name":"BidiRequestContainer","features":[413]},{"name":"BidiSpl","features":[413]},{"name":"BranchOfficeJobData","features":[413]},{"name":"BranchOfficeJobDataContainer","features":[413]},{"name":"BranchOfficeJobDataError","features":[413]},{"name":"BranchOfficeJobDataPipelineFailed","features":[413]},{"name":"BranchOfficeJobDataPrinted","features":[413]},{"name":"BranchOfficeJobDataRendered","features":[413]},{"name":"BranchOfficeLogOfflineFileFull","features":[413]},{"name":"CC_BIG5","features":[413]},{"name":"CC_CP437","features":[413]},{"name":"CC_CP850","features":[413]},{"name":"CC_CP863","features":[413]},{"name":"CC_DEFAULT","features":[413]},{"name":"CC_GB2312","features":[413]},{"name":"CC_ISC","features":[413]},{"name":"CC_JIS","features":[413]},{"name":"CC_JIS_ANK","features":[413]},{"name":"CC_NOPRECNV","features":[413]},{"name":"CC_NS86","features":[413]},{"name":"CC_SJIS","features":[413]},{"name":"CC_TCA","features":[413]},{"name":"CC_WANSUNG","features":[413]},{"name":"CDM_CONVERT","features":[413]},{"name":"CDM_CONVERT351","features":[413]},{"name":"CDM_DRIVER_DEFAULT","features":[413]},{"name":"CHANNEL_ACQUIRED","features":[413]},{"name":"CHANNEL_ALREADY_CLOSED","features":[413]},{"name":"CHANNEL_ALREADY_OPENED","features":[413]},{"name":"CHANNEL_CLOSED_BY_ANOTHER_LISTENER","features":[413]},{"name":"CHANNEL_CLOSED_BY_SAME_LISTENER","features":[413]},{"name":"CHANNEL_CLOSED_BY_SERVER","features":[413]},{"name":"CHANNEL_NOT_OPENED","features":[413]},{"name":"CHANNEL_RELEASED_BY_LISTENER","features":[413]},{"name":"CHANNEL_WAITING_FOR_CLIENT_NOTIFICATION","features":[413]},{"name":"CHKBOXS_FALSE_PDATA","features":[413]},{"name":"CHKBOXS_FALSE_TRUE","features":[413]},{"name":"CHKBOXS_NONE_PDATA","features":[413]},{"name":"CHKBOXS_NO_PDATA","features":[413]},{"name":"CHKBOXS_NO_YES","features":[413]},{"name":"CHKBOXS_OFF_ON","features":[413]},{"name":"CHKBOXS_OFF_PDATA","features":[413]},{"name":"CLSID_OEMPTPROVIDER","features":[413]},{"name":"CLSID_OEMRENDER","features":[413]},{"name":"CLSID_OEMUI","features":[413]},{"name":"CLSID_OEMUIMXDC","features":[413]},{"name":"CLSID_PTPROVIDER","features":[413]},{"name":"CLSID_XPSRASTERIZER_FACTORY","features":[413]},{"name":"COLOR_OPTIMIZATION","features":[413]},{"name":"COMPROPSHEETUI","features":[305,413,367]},{"name":"CONFIG_INFO_DATA_1","features":[413]},{"name":"COPYFILE_EVENT_ADD_PRINTER_CONNECTION","features":[413]},{"name":"COPYFILE_EVENT_DELETE_PRINTER","features":[413]},{"name":"COPYFILE_EVENT_DELETE_PRINTER_CONNECTION","features":[413]},{"name":"COPYFILE_EVENT_FILES_CHANGED","features":[413]},{"name":"COPYFILE_EVENT_SET_PRINTER_DATAEX","features":[413]},{"name":"COPYFILE_FLAG_CLIENT_SPOOLER","features":[413]},{"name":"COPYFILE_FLAG_SERVER_SPOOLER","features":[413]},{"name":"CORE_PRINTER_DRIVERA","features":[305,413]},{"name":"CORE_PRINTER_DRIVERW","features":[305,413]},{"name":"CPSFUNC_ADD_HPROPSHEETPAGE","features":[413]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUI","features":[413]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIA","features":[413]},{"name":"CPSFUNC_ADD_PCOMPROPSHEETUIW","features":[413]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUI","features":[413]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIA","features":[413]},{"name":"CPSFUNC_ADD_PFNPROPSHEETUIW","features":[413]},{"name":"CPSFUNC_ADD_PROPSHEETPAGE","features":[413]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEA","features":[413]},{"name":"CPSFUNC_ADD_PROPSHEETPAGEW","features":[413]},{"name":"CPSFUNC_DELETE_HCOMPROPSHEET","features":[413]},{"name":"CPSFUNC_DO_APPLY_CPSUI","features":[413]},{"name":"CPSFUNC_GET_HPSUIPAGES","features":[413]},{"name":"CPSFUNC_GET_PAGECOUNT","features":[413]},{"name":"CPSFUNC_GET_PFNPROPSHEETUI_ICON","features":[413]},{"name":"CPSFUNC_IGNORE_CPSUI_PSN_APPLY","features":[413]},{"name":"CPSFUNC_INSERT_PSUIPAGE","features":[413]},{"name":"CPSFUNC_INSERT_PSUIPAGEA","features":[413]},{"name":"CPSFUNC_INSERT_PSUIPAGEW","features":[413]},{"name":"CPSFUNC_LOAD_CPSUI_ICON","features":[413]},{"name":"CPSFUNC_LOAD_CPSUI_STRING","features":[413]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGA","features":[413]},{"name":"CPSFUNC_LOAD_CPSUI_STRINGW","features":[413]},{"name":"CPSFUNC_QUERY_DATABLOCK","features":[413]},{"name":"CPSFUNC_SET_DATABLOCK","features":[413]},{"name":"CPSFUNC_SET_DMPUB_HIDEBITS","features":[413]},{"name":"CPSFUNC_SET_FUSION_CONTEXT","features":[413]},{"name":"CPSFUNC_SET_HSTARTPAGE","features":[413]},{"name":"CPSFUNC_SET_PSUIPAGE_ICON","features":[413]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLE","features":[413]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEA","features":[413]},{"name":"CPSFUNC_SET_PSUIPAGE_TITLEW","features":[413]},{"name":"CPSFUNC_SET_RESULT","features":[413]},{"name":"CPSUICBPARAM","features":[305,413,367]},{"name":"CPSUICB_ACTION_ITEMS_APPLIED","features":[413]},{"name":"CPSUICB_ACTION_NONE","features":[413]},{"name":"CPSUICB_ACTION_NO_APPLY_EXIT","features":[413]},{"name":"CPSUICB_ACTION_OPTIF_CHANGED","features":[413]},{"name":"CPSUICB_ACTION_REINIT_ITEMS","features":[413]},{"name":"CPSUICB_REASON_ABOUT","features":[413]},{"name":"CPSUICB_REASON_APPLYNOW","features":[413]},{"name":"CPSUICB_REASON_DLGPROC","features":[413]},{"name":"CPSUICB_REASON_ECB_CHANGED","features":[413]},{"name":"CPSUICB_REASON_EXTPUSH","features":[413]},{"name":"CPSUICB_REASON_ITEMS_REVERTED","features":[413]},{"name":"CPSUICB_REASON_KILLACTIVE","features":[413]},{"name":"CPSUICB_REASON_OPTITEM_SETFOCUS","features":[413]},{"name":"CPSUICB_REASON_PUSHBUTTON","features":[413]},{"name":"CPSUICB_REASON_SEL_CHANGED","features":[413]},{"name":"CPSUICB_REASON_SETACTIVE","features":[413]},{"name":"CPSUICB_REASON_UNDO_CHANGES","features":[413]},{"name":"CPSUIDATABLOCK","features":[413]},{"name":"CPSUIF_ABOUT_CALLBACK","features":[413]},{"name":"CPSUIF_ICONID_AS_HICON","features":[413]},{"name":"CPSUIF_UPDATE_PERMISSION","features":[413]},{"name":"CPSUI_CANCEL","features":[413]},{"name":"CPSUI_OK","features":[413]},{"name":"CPSUI_REBOOTSYSTEM","features":[413]},{"name":"CPSUI_RESTARTWINDOWS","features":[413]},{"name":"CUSTOMPARAM_HEIGHT","features":[413]},{"name":"CUSTOMPARAM_HEIGHTOFFSET","features":[413]},{"name":"CUSTOMPARAM_MAX","features":[413]},{"name":"CUSTOMPARAM_ORIENTATION","features":[413]},{"name":"CUSTOMPARAM_WIDTH","features":[413]},{"name":"CUSTOMPARAM_WIDTHOFFSET","features":[413]},{"name":"CUSTOMSIZEPARAM","features":[413]},{"name":"CallRouterFindFirstPrinterChangeNotification","features":[305,413]},{"name":"ClosePrinter","features":[305,413]},{"name":"CloseSpoolFileHandle","features":[305,413]},{"name":"CommitSpoolData","features":[305,413]},{"name":"CommonPropertySheetUIA","features":[305,413]},{"name":"CommonPropertySheetUIW","features":[305,413]},{"name":"Compression_Fast","features":[413]},{"name":"Compression_Normal","features":[413]},{"name":"Compression_NotCompressed","features":[413]},{"name":"Compression_Small","features":[413]},{"name":"ConfigurePortA","features":[305,413]},{"name":"ConfigurePortW","features":[305,413]},{"name":"ConnectToPrinterDlg","features":[305,413]},{"name":"CorePrinterDriverInstalledA","features":[305,413]},{"name":"CorePrinterDriverInstalledW","features":[305,413]},{"name":"CreatePrintAsyncNotifyChannel","features":[413]},{"name":"CreatePrinterIC","features":[305,316,413]},{"name":"DATATYPES_INFO_1A","features":[413]},{"name":"DATATYPES_INFO_1W","features":[413]},{"name":"DATA_HEADER","features":[413]},{"name":"DEF_PRIORITY","features":[413]},{"name":"DELETE_PORT_DATA_1","features":[413]},{"name":"DEVICEPROPERTYHEADER","features":[305,413]},{"name":"DEVQUERYPRINT_INFO","features":[305,316,413]},{"name":"DF_BKSP_OK","features":[413]},{"name":"DF_NOITALIC","features":[413]},{"name":"DF_NOUNDER","features":[413]},{"name":"DF_NO_BOLD","features":[413]},{"name":"DF_NO_DOUBLE_UNDERLINE","features":[413]},{"name":"DF_NO_STRIKETHRU","features":[413]},{"name":"DF_TYPE_CAPSL","features":[413]},{"name":"DF_TYPE_HPINTELLIFONT","features":[413]},{"name":"DF_TYPE_OEM1","features":[413]},{"name":"DF_TYPE_OEM2","features":[413]},{"name":"DF_TYPE_PST1","features":[413]},{"name":"DF_TYPE_TRUETYPE","features":[413]},{"name":"DF_XM_CR","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_COUNT","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXTCOLLECTION_GETAT","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_DRIVERPROPERTIES","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTERQUEUE","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_PRINTSCHEMATICKET","features":[413]},{"name":"DISPID_PRINTEREXTENSION_CONTEXT_USERPROPERTIES","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENT","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_BIDINOTIFICATION","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_DETAILEDREASONID","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REASONID","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_REQUEST","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_SOURCEAPPLICATION","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWMODAL","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENTARGS_WINDOWPARENT","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONDRIVEREVENT","features":[413]},{"name":"DISPID_PRINTEREXTENSION_EVENT_ONPRINTERQUEUESENUMERATED","features":[413]},{"name":"DISPID_PRINTEREXTENSION_REQUEST","features":[413]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_CANCEL","features":[413]},{"name":"DISPID_PRINTEREXTENSION_REQUEST_COMPLETE","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBOOL","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_GETBYTES","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_GETINT32","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_GETREADSTREAM","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_GETSTRING","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_GETWRITESTREAM","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBOOL","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_SETBYTES","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_SETINT32","features":[413]},{"name":"DISPID_PRINTERPROPERTYBAG_SETSTRING","features":[413]},{"name":"DISPID_PRINTERQUEUE","features":[413]},{"name":"DISPID_PRINTERQUEUEEVENT","features":[413]},{"name":"DISPID_PRINTERQUEUEEVENT_ONBIDIRESPONSERECEIVED","features":[413]},{"name":"DISPID_PRINTERQUEUEVIEW","features":[413]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT","features":[413]},{"name":"DISPID_PRINTERQUEUEVIEW_EVENT_ONCHANGED","features":[413]},{"name":"DISPID_PRINTERQUEUEVIEW_SETVIEWRANGE","features":[413]},{"name":"DISPID_PRINTERQUEUE_GETPRINTERQUEUEVIEW","features":[413]},{"name":"DISPID_PRINTERQUEUE_GETPROPERTIES","features":[413]},{"name":"DISPID_PRINTERQUEUE_HANDLE","features":[413]},{"name":"DISPID_PRINTERQUEUE_NAME","features":[413]},{"name":"DISPID_PRINTERQUEUE_SENDBIDIQUERY","features":[413]},{"name":"DISPID_PRINTERQUEUE_SENDBIDISETREQUESTASYNC","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBOOL","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETBYTES","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETINT32","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETREADSTREAM","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTREAMASXML","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETSTRING","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_GETWRITESTREAM","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBOOL","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETBYTES","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETINT32","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLEPROPERTYBAG_SETSTRING","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_READ","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLESEQUENTIALSTREAM_WRITE","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_COMMIT","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SEEK","features":[413]},{"name":"DISPID_PRINTERSCRIPTABLESTREAM_SETSIZE","features":[413]},{"name":"DISPID_PRINTERSCRIPTCONTEXT","features":[413]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_DRIVERPROPERTIES","features":[413]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_QUEUEPROPERTIES","features":[413]},{"name":"DISPID_PRINTERSCRIPTCONTEXT_USERPROPERTIES","features":[413]},{"name":"DISPID_PRINTJOBCOLLECTION","features":[413]},{"name":"DISPID_PRINTJOBCOLLECTION_COUNT","features":[413]},{"name":"DISPID_PRINTJOBCOLLECTION_GETAT","features":[413]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION","features":[413]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT","features":[413]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATIONEVENT_COMPLETED","features":[413]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_CANCEL","features":[413]},{"name":"DISPID_PRINTSCHEMA_ASYNCOPERATION_START","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETFEATURE_KEYNAME","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETOPTIONS","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETPARAMETERDEFINITION","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_GETSELECTEDOPTION","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMAXVALUE","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_JOBCOPIESMINVALUE","features":[413]},{"name":"DISPID_PRINTSCHEMA_CAPABILITIES_PAGEIMAGEABLESIZE","features":[413]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT","features":[413]},{"name":"DISPID_PRINTSCHEMA_DISPLAYABLEELEMENT_DISPLAYNAME","features":[413]},{"name":"DISPID_PRINTSCHEMA_ELEMENT","features":[413]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAME","features":[413]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_NAMESPACEURI","features":[413]},{"name":"DISPID_PRINTSCHEMA_ELEMENT_XMLNODE","features":[413]},{"name":"DISPID_PRINTSCHEMA_FEATURE","features":[413]},{"name":"DISPID_PRINTSCHEMA_FEATURE_DISPLAYUI","features":[413]},{"name":"DISPID_PRINTSCHEMA_FEATURE_GETOPTION","features":[413]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTEDOPTION","features":[413]},{"name":"DISPID_PRINTSCHEMA_FEATURE_SELECTIONTYPE","features":[413]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION","features":[413]},{"name":"DISPID_PRINTSCHEMA_NUPOPTION_PAGESPERSHEET","features":[413]},{"name":"DISPID_PRINTSCHEMA_OPTION","features":[413]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION","features":[413]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_COUNT","features":[413]},{"name":"DISPID_PRINTSCHEMA_OPTIONCOLLECTION_GETAT","features":[413]},{"name":"DISPID_PRINTSCHEMA_OPTION_CONSTRAINED","features":[413]},{"name":"DISPID_PRINTSCHEMA_OPTION_GETPROPERTYVALUE","features":[413]},{"name":"DISPID_PRINTSCHEMA_OPTION_SELECTED","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_HEIGHT","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_EXTENT_WIDTH","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_HEIGHT","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_IMAGEABLE_WIDTH","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_HEIGHT","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEIMAGEABLESIZE_ORIGIN_WIDTH","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_HEIGHT","features":[413]},{"name":"DISPID_PRINTSCHEMA_PAGEMEDIASIZEOPTION_WIDTH","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_DATATYPE","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMAX","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_RANGEMIN","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_UNITTYPE","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERDEFINITION_USERINPUTREQUIRED","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER","features":[413]},{"name":"DISPID_PRINTSCHEMA_PARAMETERINITIALIZER_VALUE","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_COMMITASYNC","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETCAPABILITIES","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETFEATURE_KEYNAME","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_GETPARAMETERINITIALIZER","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_JOBCOPIESALLDOCUMENTS","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_NOTIFYXMLCHANGED","features":[413]},{"name":"DISPID_PRINTSCHEMA_TICKET_VALIDATEASYNC","features":[413]},{"name":"DI_CHANNEL","features":[413]},{"name":"DI_MEMORYMAP_WRITE","features":[413]},{"name":"DI_READ_SPOOL_JOB","features":[413]},{"name":"DLGPAGE","features":[305,413,367]},{"name":"DMPUB_BOOKLET_EDGE","features":[413]},{"name":"DMPUB_COLOR","features":[413]},{"name":"DMPUB_COPIES_COLLATE","features":[413]},{"name":"DMPUB_DEFSOURCE","features":[413]},{"name":"DMPUB_DITHERTYPE","features":[413]},{"name":"DMPUB_DUPLEX","features":[413]},{"name":"DMPUB_FIRST","features":[413]},{"name":"DMPUB_FORMNAME","features":[413]},{"name":"DMPUB_ICMINTENT","features":[413]},{"name":"DMPUB_ICMMETHOD","features":[413]},{"name":"DMPUB_LAST","features":[413]},{"name":"DMPUB_MANUAL_DUPLEX","features":[413]},{"name":"DMPUB_MEDIATYPE","features":[413]},{"name":"DMPUB_NONE","features":[413]},{"name":"DMPUB_NUP","features":[413]},{"name":"DMPUB_NUP_DIRECTION","features":[413]},{"name":"DMPUB_OEM_GRAPHIC_ITEM","features":[413]},{"name":"DMPUB_OEM_PAPER_ITEM","features":[413]},{"name":"DMPUB_OEM_ROOT_ITEM","features":[413]},{"name":"DMPUB_ORIENTATION","features":[413]},{"name":"DMPUB_OUTPUTBIN","features":[413]},{"name":"DMPUB_PAGEORDER","features":[413]},{"name":"DMPUB_PRINTQUALITY","features":[413]},{"name":"DMPUB_QUALITY","features":[413]},{"name":"DMPUB_SCALE","features":[413]},{"name":"DMPUB_STAPLE","features":[413]},{"name":"DMPUB_TTOPTION","features":[413]},{"name":"DMPUB_USER","features":[413]},{"name":"DM_ADVANCED","features":[413]},{"name":"DM_INVALIDATE_DRIVER_CACHE","features":[413]},{"name":"DM_NOPERMISSION","features":[413]},{"name":"DM_PROMPT_NON_MODAL","features":[413]},{"name":"DM_RESERVED","features":[413]},{"name":"DM_USER_DEFAULT","features":[413]},{"name":"DOCEVENT_CREATEDCPRE","features":[305,316,413]},{"name":"DOCEVENT_ESCAPE","features":[413]},{"name":"DOCEVENT_FILTER","features":[413]},{"name":"DOCUMENTEVENT_ABORTDOC","features":[413]},{"name":"DOCUMENTEVENT_CREATEDCPOST","features":[413]},{"name":"DOCUMENTEVENT_CREATEDCPRE","features":[413]},{"name":"DOCUMENTEVENT_DELETEDC","features":[413]},{"name":"DOCUMENTEVENT_ENDDOC","features":[413]},{"name":"DOCUMENTEVENT_ENDDOCPOST","features":[413]},{"name":"DOCUMENTEVENT_ENDDOCPRE","features":[413]},{"name":"DOCUMENTEVENT_ENDPAGE","features":[413]},{"name":"DOCUMENTEVENT_ESCAPE","features":[413]},{"name":"DOCUMENTEVENT_FAILURE","features":[413]},{"name":"DOCUMENTEVENT_FIRST","features":[413]},{"name":"DOCUMENTEVENT_LAST","features":[413]},{"name":"DOCUMENTEVENT_QUERYFILTER","features":[413]},{"name":"DOCUMENTEVENT_RESETDCPOST","features":[413]},{"name":"DOCUMENTEVENT_RESETDCPRE","features":[413]},{"name":"DOCUMENTEVENT_SPOOLED","features":[413]},{"name":"DOCUMENTEVENT_STARTDOC","features":[413]},{"name":"DOCUMENTEVENT_STARTDOCPOST","features":[413]},{"name":"DOCUMENTEVENT_STARTDOCPRE","features":[413]},{"name":"DOCUMENTEVENT_STARTPAGE","features":[413]},{"name":"DOCUMENTEVENT_SUCCESS","features":[413]},{"name":"DOCUMENTEVENT_UNSUPPORTED","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPOST","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRE","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPOST","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTPRINTTICKETPRE","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPOST","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRE","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPOST","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDDOCUMENTSEQUENCEPRINTTICKETPRE","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEEPRE","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPOST","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPOST","features":[413]},{"name":"DOCUMENTEVENT_XPS_ADDFIXEDPAGEPRINTTICKETPRE","features":[413]},{"name":"DOCUMENTEVENT_XPS_CANCELJOB","features":[413]},{"name":"DOCUMENTPROPERTYHEADER","features":[305,316,413]},{"name":"DOC_INFO_1A","features":[413]},{"name":"DOC_INFO_1W","features":[413]},{"name":"DOC_INFO_2A","features":[413]},{"name":"DOC_INFO_2W","features":[413]},{"name":"DOC_INFO_3A","features":[413]},{"name":"DOC_INFO_3W","features":[413]},{"name":"DOC_INFO_INTERNAL","features":[305,413]},{"name":"DOC_INFO_INTERNAL_LEVEL","features":[413]},{"name":"DPD_DELETE_ALL_FILES","features":[413]},{"name":"DPD_DELETE_SPECIFIC_VERSION","features":[413]},{"name":"DPD_DELETE_UNUSED_FILES","features":[413]},{"name":"DPF_ICONID_AS_HICON","features":[413]},{"name":"DPF_USE_HDLGTEMPLATE","features":[413]},{"name":"DPS_NOPERMISSION","features":[413]},{"name":"DP_STD_DOCPROPPAGE1","features":[413]},{"name":"DP_STD_DOCPROPPAGE2","features":[413]},{"name":"DP_STD_RESERVED_START","features":[413]},{"name":"DP_STD_TREEVIEWPAGE","features":[413]},{"name":"DRIVER_EVENT_DELETE","features":[413]},{"name":"DRIVER_EVENT_INITIALIZE","features":[413]},{"name":"DRIVER_INFO_1A","features":[413]},{"name":"DRIVER_INFO_1W","features":[413]},{"name":"DRIVER_INFO_2A","features":[413]},{"name":"DRIVER_INFO_2W","features":[413]},{"name":"DRIVER_INFO_3A","features":[413]},{"name":"DRIVER_INFO_3W","features":[413]},{"name":"DRIVER_INFO_4A","features":[413]},{"name":"DRIVER_INFO_4W","features":[413]},{"name":"DRIVER_INFO_5A","features":[413]},{"name":"DRIVER_INFO_5W","features":[413]},{"name":"DRIVER_INFO_6A","features":[305,413]},{"name":"DRIVER_INFO_6W","features":[305,413]},{"name":"DRIVER_INFO_8A","features":[305,413]},{"name":"DRIVER_INFO_8W","features":[305,413]},{"name":"DRIVER_KERNELMODE","features":[413]},{"name":"DRIVER_UPGRADE_INFO_1","features":[413]},{"name":"DRIVER_UPGRADE_INFO_2","features":[413]},{"name":"DRIVER_USERMODE","features":[413]},{"name":"DSPRINT_PENDING","features":[413]},{"name":"DSPRINT_PUBLISH","features":[413]},{"name":"DSPRINT_REPUBLISH","features":[413]},{"name":"DSPRINT_UNPUBLISH","features":[413]},{"name":"DSPRINT_UPDATE","features":[413]},{"name":"DeleteFormA","features":[305,413]},{"name":"DeleteFormW","features":[305,413]},{"name":"DeleteJobNamedProperty","features":[305,413]},{"name":"DeleteMonitorA","features":[305,413]},{"name":"DeleteMonitorW","features":[305,413]},{"name":"DeletePortA","features":[305,413]},{"name":"DeletePortW","features":[305,413]},{"name":"DeletePrintProcessorA","features":[305,413]},{"name":"DeletePrintProcessorW","features":[305,413]},{"name":"DeletePrintProvidorA","features":[305,413]},{"name":"DeletePrintProvidorW","features":[305,413]},{"name":"DeletePrinter","features":[305,413]},{"name":"DeletePrinterConnectionA","features":[305,413]},{"name":"DeletePrinterConnectionW","features":[305,413]},{"name":"DeletePrinterDataA","features":[305,413]},{"name":"DeletePrinterDataExA","features":[305,413]},{"name":"DeletePrinterDataExW","features":[305,413]},{"name":"DeletePrinterDataW","features":[305,413]},{"name":"DeletePrinterDriverA","features":[305,413]},{"name":"DeletePrinterDriverExA","features":[305,413]},{"name":"DeletePrinterDriverExW","features":[305,413]},{"name":"DeletePrinterDriverPackageA","features":[413]},{"name":"DeletePrinterDriverPackageW","features":[413]},{"name":"DeletePrinterDriverW","features":[305,413]},{"name":"DeletePrinterIC","features":[305,413]},{"name":"DeletePrinterKeyA","features":[305,413]},{"name":"DeletePrinterKeyW","features":[305,413]},{"name":"DevQueryPrint","features":[305,316,413]},{"name":"DevQueryPrintEx","features":[305,316,413]},{"name":"DocumentPropertiesA","features":[305,316,413]},{"name":"DocumentPropertiesW","features":[305,316,413]},{"name":"EATTRIBUTE_DATATYPE","features":[413]},{"name":"EBranchOfficeJobEventType","features":[413]},{"name":"ECBF_CHECKNAME_AT_FRONT","features":[413]},{"name":"ECBF_CHECKNAME_ONLY","features":[413]},{"name":"ECBF_CHECKNAME_ONLY_ENABLED","features":[413]},{"name":"ECBF_ICONID_AS_HICON","features":[413]},{"name":"ECBF_MASK","features":[413]},{"name":"ECBF_OVERLAY_ECBICON_IF_CHECKED","features":[413]},{"name":"ECBF_OVERLAY_NO_ICON","features":[413]},{"name":"ECBF_OVERLAY_STOP_ICON","features":[413]},{"name":"ECBF_OVERLAY_WARNING_ICON","features":[413]},{"name":"EMFPLAYPROC","features":[305,316,413]},{"name":"EMF_PP_COLOR_OPTIMIZATION","features":[413]},{"name":"EPF_ICONID_AS_HICON","features":[413]},{"name":"EPF_INCL_SETUP_TITLE","features":[413]},{"name":"EPF_MASK","features":[413]},{"name":"EPF_NO_DOT_DOT_DOT","features":[413]},{"name":"EPF_OVERLAY_NO_ICON","features":[413]},{"name":"EPF_OVERLAY_STOP_ICON","features":[413]},{"name":"EPF_OVERLAY_WARNING_ICON","features":[413]},{"name":"EPF_PUSH_TYPE_DLGPROC","features":[413]},{"name":"EPF_USE_HDLGTEMPLATE","features":[413]},{"name":"EPrintPropertyType","features":[413]},{"name":"EPrintXPSJobOperation","features":[413]},{"name":"EPrintXPSJobProgress","features":[413]},{"name":"ERROR_BIDI_DEVICE_CONFIG_UNCHANGED","features":[413]},{"name":"ERROR_BIDI_DEVICE_OFFLINE","features":[413]},{"name":"ERROR_BIDI_ERROR_BASE","features":[413]},{"name":"ERROR_BIDI_GET_ARGUMENT_NOT_SUPPORTED","features":[413]},{"name":"ERROR_BIDI_GET_MISSING_ARGUMENT","features":[413]},{"name":"ERROR_BIDI_GET_REQUIRES_ARGUMENT","features":[413]},{"name":"ERROR_BIDI_NO_BIDI_SCHEMA_EXTENSIONS","features":[413]},{"name":"ERROR_BIDI_NO_LOCALIZED_RESOURCES","features":[413]},{"name":"ERROR_BIDI_SCHEMA_NOT_SUPPORTED","features":[413]},{"name":"ERROR_BIDI_SCHEMA_READ_ONLY","features":[413]},{"name":"ERROR_BIDI_SCHEMA_WRITE_ONLY","features":[413]},{"name":"ERROR_BIDI_SERVER_OFFLINE","features":[413]},{"name":"ERROR_BIDI_SET_DIFFERENT_TYPE","features":[413]},{"name":"ERROR_BIDI_SET_INVALID_SCHEMAPATH","features":[413]},{"name":"ERROR_BIDI_SET_MULTIPLE_SCHEMAPATH","features":[413]},{"name":"ERROR_BIDI_SET_UNKNOWN_FAILURE","features":[413]},{"name":"ERROR_BIDI_STATUS_OK","features":[413]},{"name":"ERROR_BIDI_STATUS_WARNING","features":[413]},{"name":"ERROR_BIDI_UNSUPPORTED_CLIENT_LANGUAGE","features":[413]},{"name":"ERROR_BIDI_UNSUPPORTED_RESOURCE_FORMAT","features":[413]},{"name":"ERR_CPSUI_ALLOCMEM_FAILED","features":[413]},{"name":"ERR_CPSUI_CREATEPROPPAGE_FAILED","features":[413]},{"name":"ERR_CPSUI_CREATE_IMAGELIST_FAILED","features":[413]},{"name":"ERR_CPSUI_CREATE_TRACKBAR_FAILED","features":[413]},{"name":"ERR_CPSUI_CREATE_UDARROW_FAILED","features":[413]},{"name":"ERR_CPSUI_DMCOPIES_USE_EXTPUSH","features":[413]},{"name":"ERR_CPSUI_FUNCTION_NOT_IMPLEMENTED","features":[413]},{"name":"ERR_CPSUI_GETLASTERROR","features":[413]},{"name":"ERR_CPSUI_INTERNAL_ERROR","features":[413]},{"name":"ERR_CPSUI_INVALID_DLGPAGEIDX","features":[413]},{"name":"ERR_CPSUI_INVALID_DLGPAGE_CBSIZE","features":[413]},{"name":"ERR_CPSUI_INVALID_DMPUBID","features":[413]},{"name":"ERR_CPSUI_INVALID_DMPUB_TVOT","features":[413]},{"name":"ERR_CPSUI_INVALID_ECB_CBSIZE","features":[413]},{"name":"ERR_CPSUI_INVALID_EDITBOX_BUF_SIZE","features":[413]},{"name":"ERR_CPSUI_INVALID_EDITBOX_PSEL","features":[413]},{"name":"ERR_CPSUI_INVALID_EXTPUSH_CBSIZE","features":[413]},{"name":"ERR_CPSUI_INVALID_LBCB_TYPE","features":[413]},{"name":"ERR_CPSUI_INVALID_LPARAM","features":[413]},{"name":"ERR_CPSUI_INVALID_OPTITEM_CBSIZE","features":[413]},{"name":"ERR_CPSUI_INVALID_OPTPARAM_CBSIZE","features":[413]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_CBSIZE","features":[413]},{"name":"ERR_CPSUI_INVALID_OPTTYPE_COUNT","features":[413]},{"name":"ERR_CPSUI_INVALID_PDATA","features":[413]},{"name":"ERR_CPSUI_INVALID_PDLGPAGE","features":[413]},{"name":"ERR_CPSUI_INVALID_PUSHBUTTON_TYPE","features":[413]},{"name":"ERR_CPSUI_INVALID_TVOT_TYPE","features":[413]},{"name":"ERR_CPSUI_MORE_THAN_ONE_STDPAGE","features":[413]},{"name":"ERR_CPSUI_MORE_THAN_ONE_TVPAGE","features":[413]},{"name":"ERR_CPSUI_NO_EXTPUSH_DLGTEMPLATEID","features":[413]},{"name":"ERR_CPSUI_NO_PROPSHEETPAGE","features":[413]},{"name":"ERR_CPSUI_NULL_CALLERNAME","features":[413]},{"name":"ERR_CPSUI_NULL_ECB_PCHECKEDNAME","features":[413]},{"name":"ERR_CPSUI_NULL_ECB_PTITLE","features":[413]},{"name":"ERR_CPSUI_NULL_EXTPUSH_CALLBACK","features":[413]},{"name":"ERR_CPSUI_NULL_EXTPUSH_DLGPROC","features":[413]},{"name":"ERR_CPSUI_NULL_HINST","features":[413]},{"name":"ERR_CPSUI_NULL_OPTITEMNAME","features":[413]},{"name":"ERR_CPSUI_NULL_POPTITEM","features":[413]},{"name":"ERR_CPSUI_NULL_POPTPARAM","features":[413]},{"name":"ERR_CPSUI_SUBITEM_DIFF_DLGPAGEIDX","features":[413]},{"name":"ERR_CPSUI_SUBITEM_DIFF_OPTIF_HIDE","features":[413]},{"name":"ERR_CPSUI_TOO_MANY_DLGPAGES","features":[413]},{"name":"ERR_CPSUI_TOO_MANY_PROPSHEETPAGES","features":[413]},{"name":"ERR_CPSUI_ZERO_OPTITEM","features":[413]},{"name":"EXTCHKBOX","features":[413]},{"name":"EXTPUSH","features":[305,413,367]},{"name":"EXTTEXTMETRIC","features":[413]},{"name":"EXpsCompressionOptions","features":[413]},{"name":"EXpsFontOptions","features":[413]},{"name":"EXpsFontRestriction","features":[413]},{"name":"EXpsJobConsumption","features":[413]},{"name":"E_VERSION_NOT_SUPPORTED","features":[413]},{"name":"EndDocPrinter","features":[305,413]},{"name":"EndPagePrinter","features":[305,413]},{"name":"EnumFormsA","features":[305,413]},{"name":"EnumFormsW","features":[305,413]},{"name":"EnumJobNamedProperties","features":[305,413]},{"name":"EnumJobsA","features":[305,413]},{"name":"EnumJobsW","features":[305,413]},{"name":"EnumMonitorsA","features":[305,413]},{"name":"EnumMonitorsW","features":[305,413]},{"name":"EnumPortsA","features":[305,413]},{"name":"EnumPortsW","features":[305,413]},{"name":"EnumPrintProcessorDatatypesA","features":[305,413]},{"name":"EnumPrintProcessorDatatypesW","features":[305,413]},{"name":"EnumPrintProcessorsA","features":[305,413]},{"name":"EnumPrintProcessorsW","features":[305,413]},{"name":"EnumPrinterDataA","features":[305,413]},{"name":"EnumPrinterDataExA","features":[305,413]},{"name":"EnumPrinterDataExW","features":[305,413]},{"name":"EnumPrinterDataW","features":[305,413]},{"name":"EnumPrinterDriversA","features":[305,413]},{"name":"EnumPrinterDriversW","features":[305,413]},{"name":"EnumPrinterKeyA","features":[305,413]},{"name":"EnumPrinterKeyW","features":[305,413]},{"name":"EnumPrintersA","features":[305,413]},{"name":"EnumPrintersW","features":[305,413]},{"name":"ExtDeviceMode","features":[305,316,413]},{"name":"FG_CANCHANGE","features":[413]},{"name":"FILL_WITH_DEFAULTS","features":[413]},{"name":"FMTID_PrinterPropertyBag","features":[413]},{"name":"FNT_INFO_CURRENTFONTID","features":[413]},{"name":"FNT_INFO_FONTBOLD","features":[413]},{"name":"FNT_INFO_FONTHEIGHT","features":[413]},{"name":"FNT_INFO_FONTITALIC","features":[413]},{"name":"FNT_INFO_FONTMAXWIDTH","features":[413]},{"name":"FNT_INFO_FONTSTRIKETHRU","features":[413]},{"name":"FNT_INFO_FONTUNDERLINE","features":[413]},{"name":"FNT_INFO_FONTWIDTH","features":[413]},{"name":"FNT_INFO_GRAYPERCENTAGE","features":[413]},{"name":"FNT_INFO_MAX","features":[413]},{"name":"FNT_INFO_NEXTFONTID","features":[413]},{"name":"FNT_INFO_NEXTGLYPH","features":[413]},{"name":"FNT_INFO_PRINTDIRINCCDEGREES","features":[413]},{"name":"FNT_INFO_TEXTXRES","features":[413]},{"name":"FNT_INFO_TEXTYRES","features":[413]},{"name":"FONT_DIR_SORTED","features":[413]},{"name":"FONT_FL_DEVICEFONT","features":[413]},{"name":"FONT_FL_GLYPHSET_GTT","features":[413]},{"name":"FONT_FL_GLYPHSET_RLE","features":[413]},{"name":"FONT_FL_IFI","features":[413]},{"name":"FONT_FL_PERMANENT_SF","features":[413]},{"name":"FONT_FL_RESERVED","features":[413]},{"name":"FONT_FL_SOFTFONT","features":[413]},{"name":"FONT_FL_UFM","features":[413]},{"name":"FORM_BUILTIN","features":[413]},{"name":"FORM_INFO_1A","features":[305,413]},{"name":"FORM_INFO_1W","features":[305,413]},{"name":"FORM_INFO_2A","features":[305,413]},{"name":"FORM_INFO_2W","features":[305,413]},{"name":"FORM_PRINTER","features":[413]},{"name":"FORM_USER","features":[413]},{"name":"FinalPageCount","features":[413]},{"name":"FindClosePrinterChangeNotification","features":[305,413]},{"name":"FindFirstPrinterChangeNotification","features":[305,413]},{"name":"FindNextPrinterChangeNotification","features":[305,413]},{"name":"FlushPrinter","features":[305,413]},{"name":"Font_Normal","features":[413]},{"name":"Font_Obfusticate","features":[413]},{"name":"FreePrintNamedPropertyArray","features":[413]},{"name":"FreePrintPropertyValue","features":[413]},{"name":"FreePrinterNotifyInfo","features":[305,413]},{"name":"GLYPHRUN","features":[413]},{"name":"GPD_OEMCUSTOMDATA","features":[413]},{"name":"GUID_DEVINTERFACE_IPPUSB_PRINT","features":[413]},{"name":"GUID_DEVINTERFACE_USBPRINT","features":[413]},{"name":"GdiDeleteSpoolFileHandle","features":[305,413]},{"name":"GdiEndDocEMF","features":[305,413]},{"name":"GdiEndPageEMF","features":[305,413]},{"name":"GdiGetDC","features":[305,316,413]},{"name":"GdiGetDevmodeForPage","features":[305,316,413]},{"name":"GdiGetPageCount","features":[305,413]},{"name":"GdiGetPageHandle","features":[305,413]},{"name":"GdiGetSpoolFileHandle","features":[305,316,413]},{"name":"GdiPlayPageEMF","features":[305,413]},{"name":"GdiResetDCEMF","features":[305,316,413]},{"name":"GdiStartDocEMF","features":[305,413,414]},{"name":"GdiStartPageEMF","features":[305,413]},{"name":"GenerateCopyFilePaths","features":[413]},{"name":"GetCPSUIUserData","features":[305,413]},{"name":"GetCorePrinterDriversA","features":[305,413]},{"name":"GetCorePrinterDriversW","features":[305,413]},{"name":"GetDefaultPrinterA","features":[305,413]},{"name":"GetDefaultPrinterW","features":[305,413]},{"name":"GetFormA","features":[305,413]},{"name":"GetFormW","features":[305,413]},{"name":"GetJobA","features":[305,413]},{"name":"GetJobAttributes","features":[305,316,413]},{"name":"GetJobAttributesEx","features":[305,316,413]},{"name":"GetJobNamedPropertyValue","features":[305,413]},{"name":"GetJobW","features":[305,413]},{"name":"GetPrintExecutionData","features":[305,413]},{"name":"GetPrintOutputInfo","features":[305,413]},{"name":"GetPrintProcessorDirectoryA","features":[305,413]},{"name":"GetPrintProcessorDirectoryW","features":[305,413]},{"name":"GetPrinterA","features":[305,413]},{"name":"GetPrinterDataA","features":[305,413]},{"name":"GetPrinterDataExA","features":[305,413]},{"name":"GetPrinterDataExW","features":[305,413]},{"name":"GetPrinterDataW","features":[305,413]},{"name":"GetPrinterDriver2A","features":[305,413]},{"name":"GetPrinterDriver2W","features":[305,413]},{"name":"GetPrinterDriverA","features":[305,413]},{"name":"GetPrinterDriverDirectoryA","features":[305,413]},{"name":"GetPrinterDriverDirectoryW","features":[305,413]},{"name":"GetPrinterDriverPackagePathA","features":[413]},{"name":"GetPrinterDriverPackagePathW","features":[413]},{"name":"GetPrinterDriverW","features":[305,413]},{"name":"GetPrinterW","features":[305,413]},{"name":"GetSpoolFileHandle","features":[305,413]},{"name":"IAsyncGetSendNotificationCookie","features":[413]},{"name":"IAsyncGetSrvReferralCookie","features":[413]},{"name":"IBidiAsyncNotifyChannel","features":[413]},{"name":"IBidiRequest","features":[413]},{"name":"IBidiRequestContainer","features":[413]},{"name":"IBidiSpl","features":[413]},{"name":"IBidiSpl2","features":[413]},{"name":"IDI_CPSUI_ADVANCE","features":[413]},{"name":"IDI_CPSUI_AUTOSEL","features":[413]},{"name":"IDI_CPSUI_COLLATE","features":[413]},{"name":"IDI_CPSUI_COLOR","features":[413]},{"name":"IDI_CPSUI_COPY","features":[413]},{"name":"IDI_CPSUI_DEVICE","features":[413]},{"name":"IDI_CPSUI_DEVICE2","features":[413]},{"name":"IDI_CPSUI_DEVICE_FEATURE","features":[413]},{"name":"IDI_CPSUI_DITHER_COARSE","features":[413]},{"name":"IDI_CPSUI_DITHER_FINE","features":[413]},{"name":"IDI_CPSUI_DITHER_LINEART","features":[413]},{"name":"IDI_CPSUI_DITHER_NONE","features":[413]},{"name":"IDI_CPSUI_DOCUMENT","features":[413]},{"name":"IDI_CPSUI_DUPLEX_HORZ","features":[413]},{"name":"IDI_CPSUI_DUPLEX_HORZ_L","features":[413]},{"name":"IDI_CPSUI_DUPLEX_NONE","features":[413]},{"name":"IDI_CPSUI_DUPLEX_NONE_L","features":[413]},{"name":"IDI_CPSUI_DUPLEX_VERT","features":[413]},{"name":"IDI_CPSUI_DUPLEX_VERT_L","features":[413]},{"name":"IDI_CPSUI_EMPTY","features":[413]},{"name":"IDI_CPSUI_ENVELOPE","features":[413]},{"name":"IDI_CPSUI_ENVELOPE_FEED","features":[413]},{"name":"IDI_CPSUI_ERROR","features":[413]},{"name":"IDI_CPSUI_FALSE","features":[413]},{"name":"IDI_CPSUI_FAX","features":[413]},{"name":"IDI_CPSUI_FONTCART","features":[413]},{"name":"IDI_CPSUI_FONTCARTHDR","features":[413]},{"name":"IDI_CPSUI_FONTCART_SLOT","features":[413]},{"name":"IDI_CPSUI_FONTSUB","features":[413]},{"name":"IDI_CPSUI_FORMTRAYASSIGN","features":[413]},{"name":"IDI_CPSUI_GENERIC_ITEM","features":[413]},{"name":"IDI_CPSUI_GENERIC_OPTION","features":[413]},{"name":"IDI_CPSUI_GRAPHIC","features":[413]},{"name":"IDI_CPSUI_HALFTONE_SETUP","features":[413]},{"name":"IDI_CPSUI_HTCLRADJ","features":[413]},{"name":"IDI_CPSUI_HT_DEVICE","features":[413]},{"name":"IDI_CPSUI_HT_HOST","features":[413]},{"name":"IDI_CPSUI_ICM_INTENT","features":[413]},{"name":"IDI_CPSUI_ICM_METHOD","features":[413]},{"name":"IDI_CPSUI_ICM_OPTION","features":[413]},{"name":"IDI_CPSUI_ICONID_FIRST","features":[413]},{"name":"IDI_CPSUI_ICONID_LAST","features":[413]},{"name":"IDI_CPSUI_INSTALLABLE_OPTION","features":[413]},{"name":"IDI_CPSUI_LANDSCAPE","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWL","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWLR","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_ARROWS","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETL_NB","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_BOOKLETP_NB","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_PORTRAIT","features":[413]},{"name":"IDI_CPSUI_LAYOUT_BMP_ROT_PORT","features":[413]},{"name":"IDI_CPSUI_LF_PEN_PLOTTER","features":[413]},{"name":"IDI_CPSUI_LF_RASTER_PLOTTER","features":[413]},{"name":"IDI_CPSUI_MANUAL_FEED","features":[413]},{"name":"IDI_CPSUI_MEM","features":[413]},{"name":"IDI_CPSUI_MONO","features":[413]},{"name":"IDI_CPSUI_NO","features":[413]},{"name":"IDI_CPSUI_NOTINSTALLED","features":[413]},{"name":"IDI_CPSUI_NUP_BORDER","features":[413]},{"name":"IDI_CPSUI_OFF","features":[413]},{"name":"IDI_CPSUI_ON","features":[413]},{"name":"IDI_CPSUI_OPTION","features":[413]},{"name":"IDI_CPSUI_OPTION2","features":[413]},{"name":"IDI_CPSUI_OUTBIN","features":[413]},{"name":"IDI_CPSUI_OUTPUT","features":[413]},{"name":"IDI_CPSUI_PAGE_PROTECT","features":[413]},{"name":"IDI_CPSUI_PAPER_OUTPUT","features":[413]},{"name":"IDI_CPSUI_PAPER_TRAY","features":[413]},{"name":"IDI_CPSUI_PAPER_TRAY2","features":[413]},{"name":"IDI_CPSUI_PAPER_TRAY3","features":[413]},{"name":"IDI_CPSUI_PEN_CARROUSEL","features":[413]},{"name":"IDI_CPSUI_PLOTTER_PEN","features":[413]},{"name":"IDI_CPSUI_PORTRAIT","features":[413]},{"name":"IDI_CPSUI_POSTSCRIPT","features":[413]},{"name":"IDI_CPSUI_PRINTER","features":[413]},{"name":"IDI_CPSUI_PRINTER2","features":[413]},{"name":"IDI_CPSUI_PRINTER3","features":[413]},{"name":"IDI_CPSUI_PRINTER4","features":[413]},{"name":"IDI_CPSUI_PRINTER_FEATURE","features":[413]},{"name":"IDI_CPSUI_PRINTER_FOLDER","features":[413]},{"name":"IDI_CPSUI_QUESTION","features":[413]},{"name":"IDI_CPSUI_RES_DRAFT","features":[413]},{"name":"IDI_CPSUI_RES_HIGH","features":[413]},{"name":"IDI_CPSUI_RES_LOW","features":[413]},{"name":"IDI_CPSUI_RES_MEDIUM","features":[413]},{"name":"IDI_CPSUI_RES_PRESENTATION","features":[413]},{"name":"IDI_CPSUI_ROLL_PAPER","features":[413]},{"name":"IDI_CPSUI_ROT_LAND","features":[413]},{"name":"IDI_CPSUI_ROT_PORT","features":[413]},{"name":"IDI_CPSUI_RUN_DIALOG","features":[413]},{"name":"IDI_CPSUI_SCALING","features":[413]},{"name":"IDI_CPSUI_SEL_NONE","features":[413]},{"name":"IDI_CPSUI_SF_PEN_PLOTTER","features":[413]},{"name":"IDI_CPSUI_SF_RASTER_PLOTTER","features":[413]},{"name":"IDI_CPSUI_STAPLER_OFF","features":[413]},{"name":"IDI_CPSUI_STAPLER_ON","features":[413]},{"name":"IDI_CPSUI_STD_FORM","features":[413]},{"name":"IDI_CPSUI_STOP","features":[413]},{"name":"IDI_CPSUI_STOP_WARNING_OVERLAY","features":[413]},{"name":"IDI_CPSUI_TELEPHONE","features":[413]},{"name":"IDI_CPSUI_TRANSPARENT","features":[413]},{"name":"IDI_CPSUI_TRUE","features":[413]},{"name":"IDI_CPSUI_TT_DOWNLOADSOFT","features":[413]},{"name":"IDI_CPSUI_TT_DOWNLOADVECT","features":[413]},{"name":"IDI_CPSUI_TT_PRINTASGRAPHIC","features":[413]},{"name":"IDI_CPSUI_TT_SUBDEV","features":[413]},{"name":"IDI_CPSUI_WARNING","features":[413]},{"name":"IDI_CPSUI_WARNING_OVERLAY","features":[413]},{"name":"IDI_CPSUI_WATERMARK","features":[413]},{"name":"IDI_CPSUI_YES","features":[413]},{"name":"IDS_CPSUI_ABOUT","features":[413]},{"name":"IDS_CPSUI_ADVANCED","features":[413]},{"name":"IDS_CPSUI_ADVANCEDOCUMENT","features":[413]},{"name":"IDS_CPSUI_ALL","features":[413]},{"name":"IDS_CPSUI_AUTOSELECT","features":[413]},{"name":"IDS_CPSUI_BACKTOFRONT","features":[413]},{"name":"IDS_CPSUI_BOND","features":[413]},{"name":"IDS_CPSUI_BOOKLET","features":[413]},{"name":"IDS_CPSUI_BOOKLET_EDGE","features":[413]},{"name":"IDS_CPSUI_BOOKLET_EDGE_LEFT","features":[413]},{"name":"IDS_CPSUI_BOOKLET_EDGE_RIGHT","features":[413]},{"name":"IDS_CPSUI_CASSETTE_TRAY","features":[413]},{"name":"IDS_CPSUI_CHANGE","features":[413]},{"name":"IDS_CPSUI_CHANGED","features":[413]},{"name":"IDS_CPSUI_CHANGES","features":[413]},{"name":"IDS_CPSUI_COARSE","features":[413]},{"name":"IDS_CPSUI_COLLATE","features":[413]},{"name":"IDS_CPSUI_COLLATED","features":[413]},{"name":"IDS_CPSUI_COLON_SEP","features":[413]},{"name":"IDS_CPSUI_COLOR","features":[413]},{"name":"IDS_CPSUI_COLOR_APPERANCE","features":[413]},{"name":"IDS_CPSUI_COPIES","features":[413]},{"name":"IDS_CPSUI_COPY","features":[413]},{"name":"IDS_CPSUI_DEFAULT","features":[413]},{"name":"IDS_CPSUI_DEFAULTDOCUMENT","features":[413]},{"name":"IDS_CPSUI_DEFAULT_TRAY","features":[413]},{"name":"IDS_CPSUI_DEVICE","features":[413]},{"name":"IDS_CPSUI_DEVICEOPTIONS","features":[413]},{"name":"IDS_CPSUI_DEVICE_SETTINGS","features":[413]},{"name":"IDS_CPSUI_DITHERING","features":[413]},{"name":"IDS_CPSUI_DOCUMENT","features":[413]},{"name":"IDS_CPSUI_DOWN_THEN_LEFT","features":[413]},{"name":"IDS_CPSUI_DOWN_THEN_RIGHT","features":[413]},{"name":"IDS_CPSUI_DRAFT","features":[413]},{"name":"IDS_CPSUI_DUPLEX","features":[413]},{"name":"IDS_CPSUI_ENVELOPE_TRAY","features":[413]},{"name":"IDS_CPSUI_ENVMANUAL_TRAY","features":[413]},{"name":"IDS_CPSUI_ERRDIFFUSE","features":[413]},{"name":"IDS_CPSUI_ERROR","features":[413]},{"name":"IDS_CPSUI_EXIST","features":[413]},{"name":"IDS_CPSUI_FALSE","features":[413]},{"name":"IDS_CPSUI_FAST","features":[413]},{"name":"IDS_CPSUI_FAX","features":[413]},{"name":"IDS_CPSUI_FINE","features":[413]},{"name":"IDS_CPSUI_FORMNAME","features":[413]},{"name":"IDS_CPSUI_FORMSOURCE","features":[413]},{"name":"IDS_CPSUI_FORMTRAYASSIGN","features":[413]},{"name":"IDS_CPSUI_FRONTTOBACK","features":[413]},{"name":"IDS_CPSUI_GLOSSY","features":[413]},{"name":"IDS_CPSUI_GRAPHIC","features":[413]},{"name":"IDS_CPSUI_GRAYSCALE","features":[413]},{"name":"IDS_CPSUI_HALFTONE","features":[413]},{"name":"IDS_CPSUI_HALFTONE_SETUP","features":[413]},{"name":"IDS_CPSUI_HIGH","features":[413]},{"name":"IDS_CPSUI_HORIZONTAL","features":[413]},{"name":"IDS_CPSUI_HTCLRADJ","features":[413]},{"name":"IDS_CPSUI_ICM","features":[413]},{"name":"IDS_CPSUI_ICMINTENT","features":[413]},{"name":"IDS_CPSUI_ICMMETHOD","features":[413]},{"name":"IDS_CPSUI_ICM_BLACKWHITE","features":[413]},{"name":"IDS_CPSUI_ICM_COLORMETRIC","features":[413]},{"name":"IDS_CPSUI_ICM_CONTRAST","features":[413]},{"name":"IDS_CPSUI_ICM_NO","features":[413]},{"name":"IDS_CPSUI_ICM_SATURATION","features":[413]},{"name":"IDS_CPSUI_ICM_YES","features":[413]},{"name":"IDS_CPSUI_INSTFONTCART","features":[413]},{"name":"IDS_CPSUI_LANDSCAPE","features":[413]},{"name":"IDS_CPSUI_LARGECAP_TRAY","features":[413]},{"name":"IDS_CPSUI_LARGEFMT_TRAY","features":[413]},{"name":"IDS_CPSUI_LBCB_NOSEL","features":[413]},{"name":"IDS_CPSUI_LEFT_ANGLE","features":[413]},{"name":"IDS_CPSUI_LEFT_SLOT","features":[413]},{"name":"IDS_CPSUI_LEFT_THEN_DOWN","features":[413]},{"name":"IDS_CPSUI_LINEART","features":[413]},{"name":"IDS_CPSUI_LONG_SIDE","features":[413]},{"name":"IDS_CPSUI_LOW","features":[413]},{"name":"IDS_CPSUI_LOWER_TRAY","features":[413]},{"name":"IDS_CPSUI_MAILBOX","features":[413]},{"name":"IDS_CPSUI_MAKE","features":[413]},{"name":"IDS_CPSUI_MANUALFEED","features":[413]},{"name":"IDS_CPSUI_MANUAL_DUPLEX","features":[413]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_OFF","features":[413]},{"name":"IDS_CPSUI_MANUAL_DUPLEX_ON","features":[413]},{"name":"IDS_CPSUI_MANUAL_TRAY","features":[413]},{"name":"IDS_CPSUI_MEDIA","features":[413]},{"name":"IDS_CPSUI_MEDIUM","features":[413]},{"name":"IDS_CPSUI_MIDDLE_TRAY","features":[413]},{"name":"IDS_CPSUI_MONOCHROME","features":[413]},{"name":"IDS_CPSUI_MORE","features":[413]},{"name":"IDS_CPSUI_NO","features":[413]},{"name":"IDS_CPSUI_NONE","features":[413]},{"name":"IDS_CPSUI_NOT","features":[413]},{"name":"IDS_CPSUI_NOTINSTALLED","features":[413]},{"name":"IDS_CPSUI_NO_NAME","features":[413]},{"name":"IDS_CPSUI_NUM_OF_COPIES","features":[413]},{"name":"IDS_CPSUI_NUP","features":[413]},{"name":"IDS_CPSUI_NUP_BORDER","features":[413]},{"name":"IDS_CPSUI_NUP_BORDERED","features":[413]},{"name":"IDS_CPSUI_NUP_DIRECTION","features":[413]},{"name":"IDS_CPSUI_NUP_FOURUP","features":[413]},{"name":"IDS_CPSUI_NUP_NINEUP","features":[413]},{"name":"IDS_CPSUI_NUP_NORMAL","features":[413]},{"name":"IDS_CPSUI_NUP_SIXTEENUP","features":[413]},{"name":"IDS_CPSUI_NUP_SIXUP","features":[413]},{"name":"IDS_CPSUI_NUP_TWOUP","features":[413]},{"name":"IDS_CPSUI_OF","features":[413]},{"name":"IDS_CPSUI_OFF","features":[413]},{"name":"IDS_CPSUI_ON","features":[413]},{"name":"IDS_CPSUI_ONLYONE","features":[413]},{"name":"IDS_CPSUI_OPTION","features":[413]},{"name":"IDS_CPSUI_OPTIONS","features":[413]},{"name":"IDS_CPSUI_ORIENTATION","features":[413]},{"name":"IDS_CPSUI_OUTBINASSIGN","features":[413]},{"name":"IDS_CPSUI_OUTPUTBIN","features":[413]},{"name":"IDS_CPSUI_PAGEORDER","features":[413]},{"name":"IDS_CPSUI_PAGEPROTECT","features":[413]},{"name":"IDS_CPSUI_PAPER_OUTPUT","features":[413]},{"name":"IDS_CPSUI_PERCENT","features":[413]},{"name":"IDS_CPSUI_PLOT","features":[413]},{"name":"IDS_CPSUI_PORTRAIT","features":[413]},{"name":"IDS_CPSUI_POSTER","features":[413]},{"name":"IDS_CPSUI_POSTER_2x2","features":[413]},{"name":"IDS_CPSUI_POSTER_3x3","features":[413]},{"name":"IDS_CPSUI_POSTER_4x4","features":[413]},{"name":"IDS_CPSUI_PRESENTATION","features":[413]},{"name":"IDS_CPSUI_PRINT","features":[413]},{"name":"IDS_CPSUI_PRINTER","features":[413]},{"name":"IDS_CPSUI_PRINTERMEM_KB","features":[413]},{"name":"IDS_CPSUI_PRINTERMEM_MB","features":[413]},{"name":"IDS_CPSUI_PRINTFLDSETTING","features":[413]},{"name":"IDS_CPSUI_PRINTQUALITY","features":[413]},{"name":"IDS_CPSUI_PROPERTIES","features":[413]},{"name":"IDS_CPSUI_QUALITY_BEST","features":[413]},{"name":"IDS_CPSUI_QUALITY_BETTER","features":[413]},{"name":"IDS_CPSUI_QUALITY_CUSTOM","features":[413]},{"name":"IDS_CPSUI_QUALITY_DRAFT","features":[413]},{"name":"IDS_CPSUI_QUALITY_SETTINGS","features":[413]},{"name":"IDS_CPSUI_RANGE_FROM","features":[413]},{"name":"IDS_CPSUI_REGULAR","features":[413]},{"name":"IDS_CPSUI_RESET","features":[413]},{"name":"IDS_CPSUI_RESOLUTION","features":[413]},{"name":"IDS_CPSUI_REVERT","features":[413]},{"name":"IDS_CPSUI_RIGHT_ANGLE","features":[413]},{"name":"IDS_CPSUI_RIGHT_SLOT","features":[413]},{"name":"IDS_CPSUI_RIGHT_THEN_DOWN","features":[413]},{"name":"IDS_CPSUI_ROTATED","features":[413]},{"name":"IDS_CPSUI_ROT_LAND","features":[413]},{"name":"IDS_CPSUI_ROT_PORT","features":[413]},{"name":"IDS_CPSUI_SCALING","features":[413]},{"name":"IDS_CPSUI_SETTING","features":[413]},{"name":"IDS_CPSUI_SETTINGS","features":[413]},{"name":"IDS_CPSUI_SETUP","features":[413]},{"name":"IDS_CPSUI_SHORT_SIDE","features":[413]},{"name":"IDS_CPSUI_SIDE1","features":[413]},{"name":"IDS_CPSUI_SIDE2","features":[413]},{"name":"IDS_CPSUI_SIMPLEX","features":[413]},{"name":"IDS_CPSUI_SLASH_SEP","features":[413]},{"name":"IDS_CPSUI_SLOT1","features":[413]},{"name":"IDS_CPSUI_SLOT2","features":[413]},{"name":"IDS_CPSUI_SLOT3","features":[413]},{"name":"IDS_CPSUI_SLOT4","features":[413]},{"name":"IDS_CPSUI_SLOW","features":[413]},{"name":"IDS_CPSUI_SMALLFMT_TRAY","features":[413]},{"name":"IDS_CPSUI_SOURCE","features":[413]},{"name":"IDS_CPSUI_STACKER","features":[413]},{"name":"IDS_CPSUI_STANDARD","features":[413]},{"name":"IDS_CPSUI_STAPLE","features":[413]},{"name":"IDS_CPSUI_STAPLER","features":[413]},{"name":"IDS_CPSUI_STAPLER_OFF","features":[413]},{"name":"IDS_CPSUI_STAPLER_ON","features":[413]},{"name":"IDS_CPSUI_STDDOCPROPTAB","features":[413]},{"name":"IDS_CPSUI_STDDOCPROPTAB1","features":[413]},{"name":"IDS_CPSUI_STDDOCPROPTAB2","features":[413]},{"name":"IDS_CPSUI_STDDOCPROPTVTAB","features":[413]},{"name":"IDS_CPSUI_STRID_FIRST","features":[413]},{"name":"IDS_CPSUI_STRID_LAST","features":[413]},{"name":"IDS_CPSUI_TO","features":[413]},{"name":"IDS_CPSUI_TOTAL","features":[413]},{"name":"IDS_CPSUI_TRACTOR_TRAY","features":[413]},{"name":"IDS_CPSUI_TRANSPARENCY","features":[413]},{"name":"IDS_CPSUI_TRUE","features":[413]},{"name":"IDS_CPSUI_TTOPTION","features":[413]},{"name":"IDS_CPSUI_TT_DOWNLOADSOFT","features":[413]},{"name":"IDS_CPSUI_TT_DOWNLOADVECT","features":[413]},{"name":"IDS_CPSUI_TT_PRINTASGRAPHIC","features":[413]},{"name":"IDS_CPSUI_TT_SUBDEV","features":[413]},{"name":"IDS_CPSUI_UPPER_TRAY","features":[413]},{"name":"IDS_CPSUI_USE_DEVICE_HT","features":[413]},{"name":"IDS_CPSUI_USE_HOST_HT","features":[413]},{"name":"IDS_CPSUI_USE_PRINTER_HT","features":[413]},{"name":"IDS_CPSUI_VERSION","features":[413]},{"name":"IDS_CPSUI_VERTICAL","features":[413]},{"name":"IDS_CPSUI_WARNING","features":[413]},{"name":"IDS_CPSUI_WATERMARK","features":[413]},{"name":"IDS_CPSUI_YES","features":[413]},{"name":"IFixedDocument","features":[413]},{"name":"IFixedDocumentSequence","features":[413]},{"name":"IFixedPage","features":[413]},{"name":"IImgCreateErrorInfo","features":[413,415]},{"name":"IImgErrorInfo","features":[413,356]},{"name":"IInterFilterCommunicator","features":[413]},{"name":"INSERTPSUIPAGE_INFO","features":[413]},{"name":"INSPSUIPAGE_MODE_AFTER","features":[413]},{"name":"INSPSUIPAGE_MODE_BEFORE","features":[413]},{"name":"INSPSUIPAGE_MODE_FIRST_CHILD","features":[413]},{"name":"INSPSUIPAGE_MODE_INDEX","features":[413]},{"name":"INSPSUIPAGE_MODE_LAST_CHILD","features":[413]},{"name":"INTERNAL_NOTIFICATION_QUEUE_IS_FULL","features":[413]},{"name":"INVALID_NOTIFICATION_TYPE","features":[413]},{"name":"INVOC","features":[413]},{"name":"IOCTL_USBPRINT_ADD_CHILD_DEVICE","features":[413]},{"name":"IOCTL_USBPRINT_ADD_MSIPP_COMPAT_ID","features":[413]},{"name":"IOCTL_USBPRINT_CYCLE_PORT","features":[413]},{"name":"IOCTL_USBPRINT_GET_1284_ID","features":[413]},{"name":"IOCTL_USBPRINT_GET_INTERFACE_TYPE","features":[413]},{"name":"IOCTL_USBPRINT_GET_LPT_STATUS","features":[413]},{"name":"IOCTL_USBPRINT_GET_PROTOCOL","features":[413]},{"name":"IOCTL_USBPRINT_SET_DEVICE_ID","features":[413]},{"name":"IOCTL_USBPRINT_SET_PORT_NUMBER","features":[413]},{"name":"IOCTL_USBPRINT_SET_PROTOCOL","features":[413]},{"name":"IOCTL_USBPRINT_SOFT_RESET","features":[413]},{"name":"IOCTL_USBPRINT_VENDOR_GET_COMMAND","features":[413]},{"name":"IOCTL_USBPRINT_VENDOR_SET_COMMAND","features":[413]},{"name":"IPDFP_COPY_ALL_FILES","features":[413]},{"name":"IPartBase","features":[413]},{"name":"IPartColorProfile","features":[413]},{"name":"IPartDiscardControl","features":[413]},{"name":"IPartFont","features":[413]},{"name":"IPartFont2","features":[413]},{"name":"IPartImage","features":[413]},{"name":"IPartPrintTicket","features":[413]},{"name":"IPartResourceDictionary","features":[413]},{"name":"IPartThumbnail","features":[413]},{"name":"IPrintAsyncCookie","features":[413]},{"name":"IPrintAsyncNewChannelCookie","features":[413]},{"name":"IPrintAsyncNotify","features":[413]},{"name":"IPrintAsyncNotifyCallback","features":[413]},{"name":"IPrintAsyncNotifyChannel","features":[413]},{"name":"IPrintAsyncNotifyDataObject","features":[413]},{"name":"IPrintAsyncNotifyRegistration","features":[413]},{"name":"IPrintAsyncNotifyServerReferral","features":[413]},{"name":"IPrintBidiAsyncNotifyRegistration","features":[413]},{"name":"IPrintClassObjectFactory","features":[413]},{"name":"IPrintCoreHelper","features":[413]},{"name":"IPrintCoreHelperPS","features":[413]},{"name":"IPrintCoreHelperUni","features":[413]},{"name":"IPrintCoreHelperUni2","features":[413]},{"name":"IPrintCoreUI2","features":[413]},{"name":"IPrintJob","features":[413]},{"name":"IPrintJobCollection","features":[413,356]},{"name":"IPrintOemCommon","features":[413]},{"name":"IPrintOemDriverUI","features":[413]},{"name":"IPrintOemUI","features":[413]},{"name":"IPrintOemUI2","features":[413]},{"name":"IPrintOemUIMXDC","features":[413]},{"name":"IPrintPipelineFilter","features":[413]},{"name":"IPrintPipelineManagerControl","features":[413]},{"name":"IPrintPipelineProgressReport","features":[413]},{"name":"IPrintPipelinePropertyBag","features":[413]},{"name":"IPrintPreviewDxgiPackageTarget","features":[413]},{"name":"IPrintReadStream","features":[413]},{"name":"IPrintReadStreamFactory","features":[413]},{"name":"IPrintSchemaAsyncOperation","features":[413,356]},{"name":"IPrintSchemaAsyncOperationEvent","features":[413,356]},{"name":"IPrintSchemaCapabilities","features":[413,356]},{"name":"IPrintSchemaCapabilities2","features":[413,356]},{"name":"IPrintSchemaDisplayableElement","features":[413,356]},{"name":"IPrintSchemaElement","features":[413,356]},{"name":"IPrintSchemaFeature","features":[413,356]},{"name":"IPrintSchemaNUpOption","features":[413,356]},{"name":"IPrintSchemaOption","features":[413,356]},{"name":"IPrintSchemaOptionCollection","features":[413,356]},{"name":"IPrintSchemaPageImageableSize","features":[413,356]},{"name":"IPrintSchemaPageMediaSizeOption","features":[413,356]},{"name":"IPrintSchemaParameterDefinition","features":[413,356]},{"name":"IPrintSchemaParameterInitializer","features":[413,356]},{"name":"IPrintSchemaTicket","features":[413,356]},{"name":"IPrintSchemaTicket2","features":[413,356]},{"name":"IPrintTicketProvider","features":[413]},{"name":"IPrintTicketProvider2","features":[413]},{"name":"IPrintUnidiAsyncNotifyRegistration","features":[413]},{"name":"IPrintWriteStream","features":[413]},{"name":"IPrintWriteStreamFlush","features":[413]},{"name":"IPrinterBidiSetRequestCallback","features":[413]},{"name":"IPrinterExtensionAsyncOperation","features":[413]},{"name":"IPrinterExtensionContext","features":[413,356]},{"name":"IPrinterExtensionContextCollection","features":[413,356]},{"name":"IPrinterExtensionEvent","features":[413,356]},{"name":"IPrinterExtensionEventArgs","features":[413,356]},{"name":"IPrinterExtensionManager","features":[413]},{"name":"IPrinterExtensionRequest","features":[413,356]},{"name":"IPrinterPropertyBag","features":[413,356]},{"name":"IPrinterQueue","features":[413,356]},{"name":"IPrinterQueue2","features":[413,356]},{"name":"IPrinterQueueEvent","features":[413,356]},{"name":"IPrinterQueueView","features":[413,356]},{"name":"IPrinterQueueViewEvent","features":[413,356]},{"name":"IPrinterScriptContext","features":[413,356]},{"name":"IPrinterScriptablePropertyBag","features":[413,356]},{"name":"IPrinterScriptablePropertyBag2","features":[413,356]},{"name":"IPrinterScriptableSequentialStream","features":[413,356]},{"name":"IPrinterScriptableStream","features":[413,356]},{"name":"IXpsDocument","features":[413]},{"name":"IXpsDocumentConsumer","features":[413]},{"name":"IXpsDocumentProvider","features":[413]},{"name":"IXpsPartIterator","features":[413]},{"name":"IXpsRasterizationFactory","features":[413]},{"name":"IXpsRasterizationFactory1","features":[413]},{"name":"IXpsRasterizationFactory2","features":[413]},{"name":"IXpsRasterizer","features":[413]},{"name":"IXpsRasterizerNotificationCallback","features":[413]},{"name":"ImgErrorInfo","features":[413]},{"name":"ImpersonatePrinterClient","features":[305,413]},{"name":"InstallPrinterDriverFromPackageA","features":[413]},{"name":"InstallPrinterDriverFromPackageW","features":[413]},{"name":"IntermediatePageCount","features":[413]},{"name":"IsValidDevmodeA","features":[305,316,413]},{"name":"IsValidDevmodeW","features":[305,316,413]},{"name":"JOB_ACCESS_ADMINISTER","features":[413]},{"name":"JOB_ACCESS_READ","features":[413]},{"name":"JOB_CONTROL_CANCEL","features":[413]},{"name":"JOB_CONTROL_DELETE","features":[413]},{"name":"JOB_CONTROL_LAST_PAGE_EJECTED","features":[413]},{"name":"JOB_CONTROL_PAUSE","features":[413]},{"name":"JOB_CONTROL_RELEASE","features":[413]},{"name":"JOB_CONTROL_RESTART","features":[413]},{"name":"JOB_CONTROL_RESUME","features":[413]},{"name":"JOB_CONTROL_RETAIN","features":[413]},{"name":"JOB_CONTROL_SEND_TOAST","features":[413]},{"name":"JOB_CONTROL_SENT_TO_PRINTER","features":[413]},{"name":"JOB_INFO_1A","features":[305,413]},{"name":"JOB_INFO_1W","features":[305,413]},{"name":"JOB_INFO_2A","features":[305,316,413,308]},{"name":"JOB_INFO_2W","features":[305,316,413,308]},{"name":"JOB_INFO_3","features":[413]},{"name":"JOB_INFO_4A","features":[305,316,413,308]},{"name":"JOB_INFO_4W","features":[305,316,413,308]},{"name":"JOB_NOTIFY_FIELD_BYTES_PRINTED","features":[413]},{"name":"JOB_NOTIFY_FIELD_DATATYPE","features":[413]},{"name":"JOB_NOTIFY_FIELD_DEVMODE","features":[413]},{"name":"JOB_NOTIFY_FIELD_DOCUMENT","features":[413]},{"name":"JOB_NOTIFY_FIELD_DRIVER_NAME","features":[413]},{"name":"JOB_NOTIFY_FIELD_MACHINE_NAME","features":[413]},{"name":"JOB_NOTIFY_FIELD_NOTIFY_NAME","features":[413]},{"name":"JOB_NOTIFY_FIELD_PAGES_PRINTED","features":[413]},{"name":"JOB_NOTIFY_FIELD_PARAMETERS","features":[413]},{"name":"JOB_NOTIFY_FIELD_PORT_NAME","features":[413]},{"name":"JOB_NOTIFY_FIELD_POSITION","features":[413]},{"name":"JOB_NOTIFY_FIELD_PRINTER_NAME","features":[413]},{"name":"JOB_NOTIFY_FIELD_PRINT_PROCESSOR","features":[413]},{"name":"JOB_NOTIFY_FIELD_PRIORITY","features":[413]},{"name":"JOB_NOTIFY_FIELD_REMOTE_JOB_ID","features":[413]},{"name":"JOB_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[413]},{"name":"JOB_NOTIFY_FIELD_START_TIME","features":[413]},{"name":"JOB_NOTIFY_FIELD_STATUS","features":[413]},{"name":"JOB_NOTIFY_FIELD_STATUS_STRING","features":[413]},{"name":"JOB_NOTIFY_FIELD_SUBMITTED","features":[413]},{"name":"JOB_NOTIFY_FIELD_TIME","features":[413]},{"name":"JOB_NOTIFY_FIELD_TOTAL_BYTES","features":[413]},{"name":"JOB_NOTIFY_FIELD_TOTAL_PAGES","features":[413]},{"name":"JOB_NOTIFY_FIELD_UNTIL_TIME","features":[413]},{"name":"JOB_NOTIFY_FIELD_USER_NAME","features":[413]},{"name":"JOB_NOTIFY_TYPE","features":[413]},{"name":"JOB_POSITION_UNSPECIFIED","features":[413]},{"name":"JOB_STATUS_BLOCKED_DEVQ","features":[413]},{"name":"JOB_STATUS_COMPLETE","features":[413]},{"name":"JOB_STATUS_DELETED","features":[413]},{"name":"JOB_STATUS_DELETING","features":[413]},{"name":"JOB_STATUS_ERROR","features":[413]},{"name":"JOB_STATUS_OFFLINE","features":[413]},{"name":"JOB_STATUS_PAPEROUT","features":[413]},{"name":"JOB_STATUS_PAUSED","features":[413]},{"name":"JOB_STATUS_PRINTED","features":[413]},{"name":"JOB_STATUS_PRINTING","features":[413]},{"name":"JOB_STATUS_RENDERING_LOCALLY","features":[413]},{"name":"JOB_STATUS_RESTART","features":[413]},{"name":"JOB_STATUS_RETAINED","features":[413]},{"name":"JOB_STATUS_SPOOLING","features":[413]},{"name":"JOB_STATUS_USER_INTERVENTION","features":[413]},{"name":"KERNDATA","features":[369,413]},{"name":"LOCAL_ONLY_REGISTRATION","features":[413]},{"name":"LPR","features":[413]},{"name":"MAPTABLE","features":[413]},{"name":"MAX_ADDRESS_STR_LEN","features":[413]},{"name":"MAX_CHANNEL_COUNT_EXCEEDED","features":[413]},{"name":"MAX_CPSFUNC_INDEX","features":[413]},{"name":"MAX_DEVICEDESCRIPTION_STR_LEN","features":[413]},{"name":"MAX_DLGPAGE_COUNT","features":[413]},{"name":"MAX_FORM_KEYWORD_LENGTH","features":[413]},{"name":"MAX_IPADDR_STR_LEN","features":[413]},{"name":"MAX_NETWORKNAME2_LEN","features":[413]},{"name":"MAX_NETWORKNAME_LEN","features":[413]},{"name":"MAX_NOTIFICATION_SIZE_EXCEEDED","features":[413]},{"name":"MAX_PORTNAME_LEN","features":[413]},{"name":"MAX_PRIORITY","features":[413]},{"name":"MAX_PROPSHEETUI_REASON_INDEX","features":[413]},{"name":"MAX_PSUIPAGEINSERT_INDEX","features":[413]},{"name":"MAX_QUEUENAME_LEN","features":[413]},{"name":"MAX_REGISTRATION_COUNT_EXCEEDED","features":[413]},{"name":"MAX_RES_STR_CHARS","features":[413]},{"name":"MAX_SNMP_COMMUNITY_STR_LEN","features":[413]},{"name":"MESSAGEBOX_PARAMS","features":[305,413]},{"name":"MIN_PRIORITY","features":[413]},{"name":"MONITOR","features":[363,305,413,312]},{"name":"MONITOR2","features":[363,305,413,312]},{"name":"MONITOREX","features":[363,305,413,312]},{"name":"MONITORINIT","features":[305,413,366]},{"name":"MONITORREG","features":[413]},{"name":"MONITORUI","features":[413]},{"name":"MONITOR_INFO_1A","features":[413]},{"name":"MONITOR_INFO_1W","features":[413]},{"name":"MONITOR_INFO_2A","features":[413]},{"name":"MONITOR_INFO_2W","features":[413]},{"name":"MS_PRINT_JOB_OUTPUT_FILE","features":[413]},{"name":"MTYPE_ADD","features":[413]},{"name":"MTYPE_COMPOSE","features":[413]},{"name":"MTYPE_DIRECT","features":[413]},{"name":"MTYPE_DISABLE","features":[413]},{"name":"MTYPE_DOUBLE","features":[413]},{"name":"MTYPE_DOUBLEBYTECHAR_MASK","features":[413]},{"name":"MTYPE_FORMAT_MASK","features":[413]},{"name":"MTYPE_PAIRED","features":[413]},{"name":"MTYPE_PREDEFIN_MASK","features":[413]},{"name":"MTYPE_REPLACE","features":[413]},{"name":"MTYPE_SINGLE","features":[413]},{"name":"MV_GRAPHICS","features":[413]},{"name":"MV_PHYSICAL","features":[413]},{"name":"MV_RELATIVE","features":[413]},{"name":"MV_SENDXMOVECMD","features":[413]},{"name":"MV_SENDYMOVECMD","features":[413]},{"name":"MV_UPDATE","features":[413]},{"name":"MXDCOP_GET_FILENAME","features":[413]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC","features":[413]},{"name":"MXDCOP_PRINTTICKET_FIXED_DOC_SEQ","features":[413]},{"name":"MXDCOP_PRINTTICKET_FIXED_PAGE","features":[413]},{"name":"MXDCOP_SET_S0PAGE","features":[413]},{"name":"MXDCOP_SET_S0PAGE_RESOURCE","features":[413]},{"name":"MXDCOP_SET_XPSPASSTHRU_MODE","features":[413]},{"name":"MXDC_ESCAPE","features":[413]},{"name":"MXDC_ESCAPE_HEADER_T","features":[413]},{"name":"MXDC_GET_FILENAME_DATA_T","features":[413]},{"name":"MXDC_IMAGETYPE_JPEGHIGH_COMPRESSION","features":[413]},{"name":"MXDC_IMAGETYPE_JPEGLOW_COMPRESSION","features":[413]},{"name":"MXDC_IMAGETYPE_JPEGMEDIUM_COMPRESSION","features":[413]},{"name":"MXDC_IMAGETYPE_PNG","features":[413]},{"name":"MXDC_IMAGE_TYPE_ENUMS","features":[413]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_270_DEGREES","features":[413]},{"name":"MXDC_LANDSCAPE_ROTATE_COUNTERCLOCKWISE_90_DEGREES","features":[413]},{"name":"MXDC_LANDSCAPE_ROTATE_NONE","features":[413]},{"name":"MXDC_LANDSCAPE_ROTATION_ENUMS","features":[413]},{"name":"MXDC_PRINTTICKET_DATA_T","features":[413]},{"name":"MXDC_PRINTTICKET_ESCAPE_T","features":[413]},{"name":"MXDC_RESOURCE_DICTIONARY","features":[413]},{"name":"MXDC_RESOURCE_ICC_PROFILE","features":[413]},{"name":"MXDC_RESOURCE_JPEG","features":[413]},{"name":"MXDC_RESOURCE_JPEG_THUMBNAIL","features":[413]},{"name":"MXDC_RESOURCE_MAX","features":[413]},{"name":"MXDC_RESOURCE_PNG","features":[413]},{"name":"MXDC_RESOURCE_PNG_THUMBNAIL","features":[413]},{"name":"MXDC_RESOURCE_TIFF","features":[413]},{"name":"MXDC_RESOURCE_TTF","features":[413]},{"name":"MXDC_RESOURCE_WDP","features":[413]},{"name":"MXDC_S0PAGE_DATA_T","features":[413]},{"name":"MXDC_S0PAGE_PASSTHROUGH_ESCAPE_T","features":[413]},{"name":"MXDC_S0PAGE_RESOURCE_ESCAPE_T","features":[413]},{"name":"MXDC_S0_PAGE_ENUMS","features":[413]},{"name":"MXDC_XPS_S0PAGE_RESOURCE_T","features":[413]},{"name":"NORMAL_PRINT","features":[413]},{"name":"NOTIFICATION_CALLBACK_COMMANDS","features":[413]},{"name":"NOTIFICATION_COMMAND_CONTEXT_ACQUIRE","features":[413]},{"name":"NOTIFICATION_COMMAND_CONTEXT_RELEASE","features":[413]},{"name":"NOTIFICATION_COMMAND_NOTIFY","features":[413]},{"name":"NOTIFICATION_CONFIG_1","features":[305,413]},{"name":"NOTIFICATION_CONFIG_ASYNC_CHANNEL","features":[413]},{"name":"NOTIFICATION_CONFIG_CREATE_EVENT","features":[413]},{"name":"NOTIFICATION_CONFIG_EVENT_TRIGGER","features":[413]},{"name":"NOTIFICATION_CONFIG_FLAGS","features":[413]},{"name":"NOTIFICATION_CONFIG_REGISTER_CALLBACK","features":[413]},{"name":"NOTIFICATION_RELEASE","features":[413]},{"name":"NOT_REGISTERED","features":[413]},{"name":"NO_BORDER_PRINT","features":[413]},{"name":"NO_COLOR_OPTIMIZATION","features":[413]},{"name":"NO_LISTENERS","features":[413]},{"name":"NO_PRIORITY","features":[413]},{"name":"OEMCUIPCALLBACK","features":[305,316,413,367]},{"name":"OEMCUIPPARAM","features":[305,316,413,367]},{"name":"OEMCUIP_DOCPROP","features":[413]},{"name":"OEMCUIP_PRNPROP","features":[413]},{"name":"OEMDMPARAM","features":[305,316,413]},{"name":"OEMDM_CONVERT","features":[413]},{"name":"OEMDM_DEFAULT","features":[413]},{"name":"OEMDM_MERGE","features":[413]},{"name":"OEMDM_SIZE","features":[413]},{"name":"OEMFONTINSTPARAM","features":[305,413]},{"name":"OEMGDS_FREEMEM","features":[413]},{"name":"OEMGDS_JOBTIMEOUT","features":[413]},{"name":"OEMGDS_MAX","features":[413]},{"name":"OEMGDS_MAXBITMAP","features":[413]},{"name":"OEMGDS_MINOUTLINE","features":[413]},{"name":"OEMGDS_MIN_DOCSTICKY","features":[413]},{"name":"OEMGDS_MIN_PRINTERSTICKY","features":[413]},{"name":"OEMGDS_PRINTFLAGS","features":[413]},{"name":"OEMGDS_PROTOCOL","features":[413]},{"name":"OEMGDS_PSDM_CUSTOMSIZE","features":[413]},{"name":"OEMGDS_PSDM_DIALECT","features":[413]},{"name":"OEMGDS_PSDM_FLAGS","features":[413]},{"name":"OEMGDS_PSDM_NUP","features":[413]},{"name":"OEMGDS_PSDM_PSLEVEL","features":[413]},{"name":"OEMGDS_PSDM_TTDLFMT","features":[413]},{"name":"OEMGDS_UNIDM_FLAGS","features":[413]},{"name":"OEMGDS_UNIDM_GPDVER","features":[413]},{"name":"OEMGDS_WAITTIMEOUT","features":[413]},{"name":"OEMGI_GETINTERFACEVERSION","features":[413]},{"name":"OEMGI_GETPUBLISHERINFO","features":[413]},{"name":"OEMGI_GETREQUESTEDHELPERINTERFACES","features":[413]},{"name":"OEMGI_GETSIGNATURE","features":[413]},{"name":"OEMGI_GETVERSION","features":[413]},{"name":"OEMPUBLISH_DEFAULT","features":[413]},{"name":"OEMPUBLISH_IPRINTCOREHELPER","features":[413]},{"name":"OEMTTY_INFO_CODEPAGE","features":[413]},{"name":"OEMTTY_INFO_MARGINS","features":[413]},{"name":"OEMTTY_INFO_NUM_UFMS","features":[413]},{"name":"OEMTTY_INFO_UFM_IDS","features":[413]},{"name":"OEMUIOBJ","features":[305,413]},{"name":"OEMUIPROCS","features":[305,413]},{"name":"OEMUIPSPARAM","features":[305,316,413]},{"name":"OEM_DMEXTRAHEADER","features":[413]},{"name":"OEM_MODE_PUBLISHER","features":[413]},{"name":"OIEXT","features":[305,413]},{"name":"OIEXTF_ANSI_STRING","features":[413]},{"name":"OPTCF_HIDE","features":[413]},{"name":"OPTCF_MASK","features":[413]},{"name":"OPTCOMBO","features":[305,413]},{"name":"OPTIF_CALLBACK","features":[413]},{"name":"OPTIF_CHANGED","features":[413]},{"name":"OPTIF_CHANGEONCE","features":[413]},{"name":"OPTIF_COLLAPSE","features":[413]},{"name":"OPTIF_DISABLED","features":[413]},{"name":"OPTIF_ECB_CHECKED","features":[413]},{"name":"OPTIF_EXT_DISABLED","features":[413]},{"name":"OPTIF_EXT_HIDE","features":[413]},{"name":"OPTIF_EXT_IS_EXTPUSH","features":[413]},{"name":"OPTIF_HAS_POIEXT","features":[413]},{"name":"OPTIF_HIDE","features":[413]},{"name":"OPTIF_INITIAL_TVITEM","features":[413]},{"name":"OPTIF_MASK","features":[413]},{"name":"OPTIF_NO_GROUPBOX_NAME","features":[413]},{"name":"OPTIF_OVERLAY_NO_ICON","features":[413]},{"name":"OPTIF_OVERLAY_STOP_ICON","features":[413]},{"name":"OPTIF_OVERLAY_WARNING_ICON","features":[413]},{"name":"OPTIF_SEL_AS_HICON","features":[413]},{"name":"OPTITEM","features":[305,413,367]},{"name":"OPTPARAM","features":[305,413]},{"name":"OPTPF_DISABLED","features":[413]},{"name":"OPTPF_HIDE","features":[413]},{"name":"OPTPF_ICONID_AS_HICON","features":[413]},{"name":"OPTPF_MASK","features":[413]},{"name":"OPTPF_OVERLAY_NO_ICON","features":[413]},{"name":"OPTPF_OVERLAY_STOP_ICON","features":[413]},{"name":"OPTPF_OVERLAY_WARNING_ICON","features":[413]},{"name":"OPTPF_USE_HDLGTEMPLATE","features":[413]},{"name":"OPTTF_MASK","features":[413]},{"name":"OPTTF_NOSPACE_BEFORE_POSTFIX","features":[413]},{"name":"OPTTF_TYPE_DISABLED","features":[413]},{"name":"OPTTYPE","features":[305,413]},{"name":"OTS_LBCB_INCL_ITEM_NONE","features":[413]},{"name":"OTS_LBCB_NO_ICON16_IN_ITEM","features":[413]},{"name":"OTS_LBCB_PROPPAGE_CBUSELB","features":[413]},{"name":"OTS_LBCB_PROPPAGE_LBUSECB","features":[413]},{"name":"OTS_LBCB_SORT","features":[413]},{"name":"OTS_MASK","features":[413]},{"name":"OTS_PUSH_ENABLE_ALWAYS","features":[413]},{"name":"OTS_PUSH_INCL_SETUP_TITLE","features":[413]},{"name":"OTS_PUSH_NO_DOT_DOT_DOT","features":[413]},{"name":"OpenPrinter2A","features":[305,316,413]},{"name":"OpenPrinter2W","features":[305,316,413]},{"name":"OpenPrinterA","features":[305,316,413]},{"name":"OpenPrinterW","features":[305,316,413]},{"name":"PDEV_ADJUST_PAPER_MARGIN_TYPE","features":[413]},{"name":"PDEV_HOSTFONT_ENABLED_TYPE","features":[413]},{"name":"PDEV_USE_TRUE_COLOR_TYPE","features":[413]},{"name":"PFNCOMPROPSHEET","features":[305,413]},{"name":"PFNPROPSHEETUI","features":[305,413]},{"name":"PFN_DrvGetDriverSetting","features":[305,413]},{"name":"PFN_DrvUpdateUISetting","features":[305,413]},{"name":"PFN_DrvUpgradeRegistrySetting","features":[305,413]},{"name":"PFN_PRINTING_ADDPORT","features":[305,413]},{"name":"PFN_PRINTING_ADDPORT2","features":[305,413]},{"name":"PFN_PRINTING_ADDPORTEX","features":[305,413]},{"name":"PFN_PRINTING_ADDPORTEX2","features":[305,413]},{"name":"PFN_PRINTING_CLOSEPORT","features":[305,413]},{"name":"PFN_PRINTING_CLOSEPORT2","features":[305,413]},{"name":"PFN_PRINTING_CONFIGUREPORT","features":[305,413]},{"name":"PFN_PRINTING_CONFIGUREPORT2","features":[305,413]},{"name":"PFN_PRINTING_DELETEPORT","features":[305,413]},{"name":"PFN_PRINTING_DELETEPORT2","features":[305,413]},{"name":"PFN_PRINTING_ENDDOCPORT","features":[305,413]},{"name":"PFN_PRINTING_ENDDOCPORT2","features":[305,413]},{"name":"PFN_PRINTING_ENUMPORTS","features":[305,413]},{"name":"PFN_PRINTING_ENUMPORTS2","features":[305,413]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT","features":[305,413]},{"name":"PFN_PRINTING_GETPRINTERDATAFROMPORT2","features":[305,413]},{"name":"PFN_PRINTING_NOTIFYUNUSEDPORTS2","features":[305,413]},{"name":"PFN_PRINTING_NOTIFYUSEDPORTS2","features":[305,413]},{"name":"PFN_PRINTING_OPENPORT","features":[305,413]},{"name":"PFN_PRINTING_OPENPORT2","features":[305,413]},{"name":"PFN_PRINTING_OPENPORTEX","features":[363,305,413,312]},{"name":"PFN_PRINTING_OPENPORTEX2","features":[363,305,413,312]},{"name":"PFN_PRINTING_POWEREVENT2","features":[305,413,312]},{"name":"PFN_PRINTING_READPORT","features":[305,413]},{"name":"PFN_PRINTING_READPORT2","features":[305,413]},{"name":"PFN_PRINTING_SENDRECVBIDIDATAFROMPORT2","features":[305,413]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS","features":[363,305,413]},{"name":"PFN_PRINTING_SETPORTTIMEOUTS2","features":[363,305,413]},{"name":"PFN_PRINTING_SHUTDOWN2","features":[305,413]},{"name":"PFN_PRINTING_STARTDOCPORT","features":[305,413]},{"name":"PFN_PRINTING_STARTDOCPORT2","features":[305,413]},{"name":"PFN_PRINTING_WRITEPORT","features":[305,413]},{"name":"PFN_PRINTING_WRITEPORT2","features":[305,413]},{"name":"PFN_PRINTING_XCVCLOSEPORT","features":[305,413]},{"name":"PFN_PRINTING_XCVCLOSEPORT2","features":[305,413]},{"name":"PFN_PRINTING_XCVDATAPORT","features":[305,413]},{"name":"PFN_PRINTING_XCVDATAPORT2","features":[305,413]},{"name":"PFN_PRINTING_XCVOPENPORT","features":[305,413]},{"name":"PFN_PRINTING_XCVOPENPORT2","features":[305,413]},{"name":"PORT_DATA_1","features":[413]},{"name":"PORT_DATA_2","features":[413]},{"name":"PORT_DATA_LIST_1","features":[413]},{"name":"PORT_INFO_1A","features":[413]},{"name":"PORT_INFO_1W","features":[413]},{"name":"PORT_INFO_2A","features":[413]},{"name":"PORT_INFO_2W","features":[413]},{"name":"PORT_INFO_3A","features":[413]},{"name":"PORT_INFO_3W","features":[413]},{"name":"PORT_STATUS_DOOR_OPEN","features":[413]},{"name":"PORT_STATUS_NO_TONER","features":[413]},{"name":"PORT_STATUS_OFFLINE","features":[413]},{"name":"PORT_STATUS_OUTPUT_BIN_FULL","features":[413]},{"name":"PORT_STATUS_OUT_OF_MEMORY","features":[413]},{"name":"PORT_STATUS_PAPER_JAM","features":[413]},{"name":"PORT_STATUS_PAPER_OUT","features":[413]},{"name":"PORT_STATUS_PAPER_PROBLEM","features":[413]},{"name":"PORT_STATUS_POWER_SAVE","features":[413]},{"name":"PORT_STATUS_TONER_LOW","features":[413]},{"name":"PORT_STATUS_TYPE_ERROR","features":[413]},{"name":"PORT_STATUS_TYPE_INFO","features":[413]},{"name":"PORT_STATUS_TYPE_WARNING","features":[413]},{"name":"PORT_STATUS_USER_INTERVENTION","features":[413]},{"name":"PORT_STATUS_WARMING_UP","features":[413]},{"name":"PORT_TYPE_NET_ATTACHED","features":[413]},{"name":"PORT_TYPE_READ","features":[413]},{"name":"PORT_TYPE_REDIRECTED","features":[413]},{"name":"PORT_TYPE_WRITE","features":[413]},{"name":"PPCAPS_BOOKLET_EDGE","features":[413]},{"name":"PPCAPS_BORDER_PRINT","features":[413]},{"name":"PPCAPS_REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[413]},{"name":"PPCAPS_RIGHT_THEN_DOWN","features":[413]},{"name":"PPCAPS_SQUARE_SCALING","features":[413]},{"name":"PRINTER_ACCESS_ADMINISTER","features":[413]},{"name":"PRINTER_ACCESS_MANAGE_LIMITED","features":[413]},{"name":"PRINTER_ACCESS_RIGHTS","features":[413]},{"name":"PRINTER_ACCESS_USE","features":[413]},{"name":"PRINTER_ALL_ACCESS","features":[413]},{"name":"PRINTER_ATTRIBUTE_DEFAULT","features":[413]},{"name":"PRINTER_ATTRIBUTE_DIRECT","features":[413]},{"name":"PRINTER_ATTRIBUTE_DO_COMPLETE_FIRST","features":[413]},{"name":"PRINTER_ATTRIBUTE_ENABLE_BIDI","features":[413]},{"name":"PRINTER_ATTRIBUTE_ENABLE_DEVQ","features":[413]},{"name":"PRINTER_ATTRIBUTE_ENTERPRISE_CLOUD","features":[413]},{"name":"PRINTER_ATTRIBUTE_FAX","features":[413]},{"name":"PRINTER_ATTRIBUTE_FRIENDLY_NAME","features":[413]},{"name":"PRINTER_ATTRIBUTE_HIDDEN","features":[413]},{"name":"PRINTER_ATTRIBUTE_KEEPPRINTEDJOBS","features":[413]},{"name":"PRINTER_ATTRIBUTE_LOCAL","features":[413]},{"name":"PRINTER_ATTRIBUTE_MACHINE","features":[413]},{"name":"PRINTER_ATTRIBUTE_NETWORK","features":[413]},{"name":"PRINTER_ATTRIBUTE_PER_USER","features":[413]},{"name":"PRINTER_ATTRIBUTE_PUBLISHED","features":[413]},{"name":"PRINTER_ATTRIBUTE_PUSHED_MACHINE","features":[413]},{"name":"PRINTER_ATTRIBUTE_PUSHED_USER","features":[413]},{"name":"PRINTER_ATTRIBUTE_QUEUED","features":[413]},{"name":"PRINTER_ATTRIBUTE_RAW_ONLY","features":[413]},{"name":"PRINTER_ATTRIBUTE_SHARED","features":[413]},{"name":"PRINTER_ATTRIBUTE_TS","features":[413]},{"name":"PRINTER_ATTRIBUTE_TS_GENERIC_DRIVER","features":[413]},{"name":"PRINTER_ATTRIBUTE_WORK_OFFLINE","features":[413]},{"name":"PRINTER_CHANGE_ADD_FORM","features":[413]},{"name":"PRINTER_CHANGE_ADD_JOB","features":[413]},{"name":"PRINTER_CHANGE_ADD_PORT","features":[413]},{"name":"PRINTER_CHANGE_ADD_PRINTER","features":[413]},{"name":"PRINTER_CHANGE_ADD_PRINTER_DRIVER","features":[413]},{"name":"PRINTER_CHANGE_ADD_PRINT_PROCESSOR","features":[413]},{"name":"PRINTER_CHANGE_ALL","features":[413]},{"name":"PRINTER_CHANGE_CONFIGURE_PORT","features":[413]},{"name":"PRINTER_CHANGE_DELETE_FORM","features":[413]},{"name":"PRINTER_CHANGE_DELETE_JOB","features":[413]},{"name":"PRINTER_CHANGE_DELETE_PORT","features":[413]},{"name":"PRINTER_CHANGE_DELETE_PRINTER","features":[413]},{"name":"PRINTER_CHANGE_DELETE_PRINTER_DRIVER","features":[413]},{"name":"PRINTER_CHANGE_DELETE_PRINT_PROCESSOR","features":[413]},{"name":"PRINTER_CHANGE_FAILED_CONNECTION_PRINTER","features":[413]},{"name":"PRINTER_CHANGE_FORM","features":[413]},{"name":"PRINTER_CHANGE_JOB","features":[413]},{"name":"PRINTER_CHANGE_PORT","features":[413]},{"name":"PRINTER_CHANGE_PRINTER","features":[413]},{"name":"PRINTER_CHANGE_PRINTER_DRIVER","features":[413]},{"name":"PRINTER_CHANGE_PRINT_PROCESSOR","features":[413]},{"name":"PRINTER_CHANGE_SERVER","features":[413]},{"name":"PRINTER_CHANGE_SET_FORM","features":[413]},{"name":"PRINTER_CHANGE_SET_JOB","features":[413]},{"name":"PRINTER_CHANGE_SET_PRINTER","features":[413]},{"name":"PRINTER_CHANGE_SET_PRINTER_DRIVER","features":[413]},{"name":"PRINTER_CHANGE_TIMEOUT","features":[413]},{"name":"PRINTER_CHANGE_WRITE_JOB","features":[413]},{"name":"PRINTER_CONNECTION_INFO_1A","features":[413]},{"name":"PRINTER_CONNECTION_INFO_1W","features":[413]},{"name":"PRINTER_CONNECTION_MISMATCH","features":[413]},{"name":"PRINTER_CONNECTION_NO_UI","features":[413]},{"name":"PRINTER_CONTROL_PAUSE","features":[413]},{"name":"PRINTER_CONTROL_PURGE","features":[413]},{"name":"PRINTER_CONTROL_RESUME","features":[413]},{"name":"PRINTER_CONTROL_SET_STATUS","features":[413]},{"name":"PRINTER_DEFAULTSA","features":[305,316,413]},{"name":"PRINTER_DEFAULTSW","features":[305,316,413]},{"name":"PRINTER_DELETE","features":[413]},{"name":"PRINTER_DRIVER_CATEGORY_3D","features":[413]},{"name":"PRINTER_DRIVER_CATEGORY_CLOUD","features":[413]},{"name":"PRINTER_DRIVER_CATEGORY_FAX","features":[413]},{"name":"PRINTER_DRIVER_CATEGORY_FILE","features":[413]},{"name":"PRINTER_DRIVER_CATEGORY_SERVICE","features":[413]},{"name":"PRINTER_DRIVER_CATEGORY_VIRTUAL","features":[413]},{"name":"PRINTER_DRIVER_CLASS","features":[413]},{"name":"PRINTER_DRIVER_DERIVED","features":[413]},{"name":"PRINTER_DRIVER_NOT_SHAREABLE","features":[413]},{"name":"PRINTER_DRIVER_PACKAGE_AWARE","features":[413]},{"name":"PRINTER_DRIVER_SANDBOX_DISABLED","features":[413]},{"name":"PRINTER_DRIVER_SANDBOX_ENABLED","features":[413]},{"name":"PRINTER_DRIVER_SOFT_RESET_REQUIRED","features":[413]},{"name":"PRINTER_DRIVER_XPS","features":[413]},{"name":"PRINTER_ENUM_CATEGORY_3D","features":[413]},{"name":"PRINTER_ENUM_CATEGORY_ALL","features":[413]},{"name":"PRINTER_ENUM_CONNECTIONS","features":[413]},{"name":"PRINTER_ENUM_CONTAINER","features":[413]},{"name":"PRINTER_ENUM_DEFAULT","features":[413]},{"name":"PRINTER_ENUM_EXPAND","features":[413]},{"name":"PRINTER_ENUM_FAVORITE","features":[413]},{"name":"PRINTER_ENUM_HIDE","features":[413]},{"name":"PRINTER_ENUM_ICON1","features":[413]},{"name":"PRINTER_ENUM_ICON2","features":[413]},{"name":"PRINTER_ENUM_ICON3","features":[413]},{"name":"PRINTER_ENUM_ICON4","features":[413]},{"name":"PRINTER_ENUM_ICON5","features":[413]},{"name":"PRINTER_ENUM_ICON6","features":[413]},{"name":"PRINTER_ENUM_ICON7","features":[413]},{"name":"PRINTER_ENUM_ICON8","features":[413]},{"name":"PRINTER_ENUM_ICONMASK","features":[413]},{"name":"PRINTER_ENUM_LOCAL","features":[413]},{"name":"PRINTER_ENUM_NAME","features":[413]},{"name":"PRINTER_ENUM_NETWORK","features":[413]},{"name":"PRINTER_ENUM_REMOTE","features":[413]},{"name":"PRINTER_ENUM_SHARED","features":[413]},{"name":"PRINTER_ENUM_VALUESA","features":[413]},{"name":"PRINTER_ENUM_VALUESW","features":[413]},{"name":"PRINTER_ERROR_INFORMATION","features":[413]},{"name":"PRINTER_ERROR_JAM","features":[413]},{"name":"PRINTER_ERROR_OUTOFPAPER","features":[413]},{"name":"PRINTER_ERROR_OUTOFTONER","features":[413]},{"name":"PRINTER_ERROR_SEVERE","features":[413]},{"name":"PRINTER_ERROR_WARNING","features":[413]},{"name":"PRINTER_EVENT_ADD_CONNECTION","features":[413]},{"name":"PRINTER_EVENT_ADD_CONNECTION_NO_UI","features":[413]},{"name":"PRINTER_EVENT_ATTRIBUTES_CHANGED","features":[413]},{"name":"PRINTER_EVENT_ATTRIBUTES_INFO","features":[413]},{"name":"PRINTER_EVENT_CACHE_DELETE","features":[413]},{"name":"PRINTER_EVENT_CACHE_REFRESH","features":[413]},{"name":"PRINTER_EVENT_CONFIGURATION_CHANGE","features":[413]},{"name":"PRINTER_EVENT_CONFIGURATION_UPDATE","features":[413]},{"name":"PRINTER_EVENT_DELETE","features":[413]},{"name":"PRINTER_EVENT_DELETE_CONNECTION","features":[413]},{"name":"PRINTER_EVENT_DELETE_CONNECTION_NO_UI","features":[413]},{"name":"PRINTER_EVENT_FLAG_NO_UI","features":[413]},{"name":"PRINTER_EVENT_INITIALIZE","features":[413]},{"name":"PRINTER_EXECUTE","features":[413]},{"name":"PRINTER_EXTENSION_DETAILEDREASON_PRINTER_STATUS","features":[413]},{"name":"PRINTER_EXTENSION_REASON_DRIVER_EVENT","features":[413]},{"name":"PRINTER_EXTENSION_REASON_PRINT_PREFERENCES","features":[413]},{"name":"PRINTER_INFO_1A","features":[413]},{"name":"PRINTER_INFO_1W","features":[413]},{"name":"PRINTER_INFO_2A","features":[305,316,413,308]},{"name":"PRINTER_INFO_2W","features":[305,316,413,308]},{"name":"PRINTER_INFO_3","features":[413,308]},{"name":"PRINTER_INFO_4A","features":[413]},{"name":"PRINTER_INFO_4W","features":[413]},{"name":"PRINTER_INFO_5A","features":[413]},{"name":"PRINTER_INFO_5W","features":[413]},{"name":"PRINTER_INFO_6","features":[413]},{"name":"PRINTER_INFO_7A","features":[413]},{"name":"PRINTER_INFO_7W","features":[413]},{"name":"PRINTER_INFO_8A","features":[305,316,413]},{"name":"PRINTER_INFO_8W","features":[305,316,413]},{"name":"PRINTER_INFO_9A","features":[305,316,413]},{"name":"PRINTER_INFO_9W","features":[305,316,413]},{"name":"PRINTER_NOTIFY_CATEGORY_3D","features":[413]},{"name":"PRINTER_NOTIFY_CATEGORY_ALL","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_ATTRIBUTES","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_AVERAGE_PPM","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_BRANCH_OFFICE_PRINTING","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_BYTES_PRINTED","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_CJOBS","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_COMMENT","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_DATATYPE","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_DEFAULT_PRIORITY","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_DEVMODE","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_DRIVER_NAME","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_FRIENDLY_NAME","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_LOCATION","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_OBJECT_GUID","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_PAGES_PRINTED","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_PARAMETERS","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_PORT_NAME","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_PRINTER_NAME","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_PRINT_PROCESSOR","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_PRIORITY","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_SECURITY_DESCRIPTOR","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_SEPFILE","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_SERVER_NAME","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_SHARE_NAME","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_START_TIME","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_STATUS","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_STATUS_STRING","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_BYTES","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_TOTAL_PAGES","features":[413]},{"name":"PRINTER_NOTIFY_FIELD_UNTIL_TIME","features":[413]},{"name":"PRINTER_NOTIFY_INFO","features":[413]},{"name":"PRINTER_NOTIFY_INFO_DATA","features":[413]},{"name":"PRINTER_NOTIFY_INFO_DATA_COMPACT","features":[413]},{"name":"PRINTER_NOTIFY_INFO_DISCARDED","features":[413]},{"name":"PRINTER_NOTIFY_INIT","features":[413]},{"name":"PRINTER_NOTIFY_OPTIONS","features":[413]},{"name":"PRINTER_NOTIFY_OPTIONS_REFRESH","features":[413]},{"name":"PRINTER_NOTIFY_OPTIONS_TYPE","features":[413]},{"name":"PRINTER_NOTIFY_STATUS_ENDPOINT","features":[413]},{"name":"PRINTER_NOTIFY_STATUS_INFO","features":[413]},{"name":"PRINTER_NOTIFY_STATUS_POLL","features":[413]},{"name":"PRINTER_NOTIFY_TYPE","features":[413]},{"name":"PRINTER_OEMINTF_VERSION","features":[413]},{"name":"PRINTER_OPTIONSA","features":[413]},{"name":"PRINTER_OPTIONSW","features":[413]},{"name":"PRINTER_OPTION_CACHE","features":[413]},{"name":"PRINTER_OPTION_CLIENT_CHANGE","features":[413]},{"name":"PRINTER_OPTION_FLAGS","features":[413]},{"name":"PRINTER_OPTION_NO_CACHE","features":[413]},{"name":"PRINTER_OPTION_NO_CLIENT_DATA","features":[413]},{"name":"PRINTER_READ","features":[413]},{"name":"PRINTER_READ_CONTROL","features":[413]},{"name":"PRINTER_STANDARD_RIGHTS_EXECUTE","features":[413]},{"name":"PRINTER_STANDARD_RIGHTS_READ","features":[413]},{"name":"PRINTER_STANDARD_RIGHTS_REQUIRED","features":[413]},{"name":"PRINTER_STANDARD_RIGHTS_WRITE","features":[413]},{"name":"PRINTER_STATUS_BUSY","features":[413]},{"name":"PRINTER_STATUS_DOOR_OPEN","features":[413]},{"name":"PRINTER_STATUS_DRIVER_UPDATE_NEEDED","features":[413]},{"name":"PRINTER_STATUS_ERROR","features":[413]},{"name":"PRINTER_STATUS_INITIALIZING","features":[413]},{"name":"PRINTER_STATUS_IO_ACTIVE","features":[413]},{"name":"PRINTER_STATUS_MANUAL_FEED","features":[413]},{"name":"PRINTER_STATUS_NOT_AVAILABLE","features":[413]},{"name":"PRINTER_STATUS_NO_TONER","features":[413]},{"name":"PRINTER_STATUS_OFFLINE","features":[413]},{"name":"PRINTER_STATUS_OUTPUT_BIN_FULL","features":[413]},{"name":"PRINTER_STATUS_OUT_OF_MEMORY","features":[413]},{"name":"PRINTER_STATUS_PAGE_PUNT","features":[413]},{"name":"PRINTER_STATUS_PAPER_JAM","features":[413]},{"name":"PRINTER_STATUS_PAPER_OUT","features":[413]},{"name":"PRINTER_STATUS_PAPER_PROBLEM","features":[413]},{"name":"PRINTER_STATUS_PAUSED","features":[413]},{"name":"PRINTER_STATUS_PENDING_DELETION","features":[413]},{"name":"PRINTER_STATUS_POWER_SAVE","features":[413]},{"name":"PRINTER_STATUS_PRINTING","features":[413]},{"name":"PRINTER_STATUS_PROCESSING","features":[413]},{"name":"PRINTER_STATUS_SERVER_OFFLINE","features":[413]},{"name":"PRINTER_STATUS_SERVER_UNKNOWN","features":[413]},{"name":"PRINTER_STATUS_TONER_LOW","features":[413]},{"name":"PRINTER_STATUS_USER_INTERVENTION","features":[413]},{"name":"PRINTER_STATUS_WAITING","features":[413]},{"name":"PRINTER_STATUS_WARMING_UP","features":[413]},{"name":"PRINTER_SYNCHRONIZE","features":[413]},{"name":"PRINTER_WRITE","features":[413]},{"name":"PRINTER_WRITE_DAC","features":[413]},{"name":"PRINTER_WRITE_OWNER","features":[413]},{"name":"PRINTIFI32","features":[305,316,413]},{"name":"PRINTPROCESSOROPENDATA","features":[305,316,413]},{"name":"PRINTPROCESSOR_CAPS_1","features":[413]},{"name":"PRINTPROCESSOR_CAPS_2","features":[413]},{"name":"PRINTPROCESSOR_INFO_1A","features":[413]},{"name":"PRINTPROCESSOR_INFO_1W","features":[413]},{"name":"PRINTPROVIDOR","features":[413]},{"name":"PRINT_APP_BIDI_NOTIFY_CHANNEL","features":[413]},{"name":"PRINT_EXECUTION_CONTEXT","features":[413]},{"name":"PRINT_EXECUTION_CONTEXT_APPLICATION","features":[413]},{"name":"PRINT_EXECUTION_CONTEXT_FILTER_PIPELINE","features":[413]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_ISOLATION_HOST","features":[413]},{"name":"PRINT_EXECUTION_CONTEXT_SPOOLER_SERVICE","features":[413]},{"name":"PRINT_EXECUTION_CONTEXT_WOW64","features":[413]},{"name":"PRINT_EXECUTION_DATA","features":[413]},{"name":"PRINT_FEATURE_OPTION","features":[413]},{"name":"PRINT_PORT_MONITOR_NOTIFY_CHANNEL","features":[413]},{"name":"PROPSHEETUI_GETICON_INFO","features":[413,367]},{"name":"PROPSHEETUI_INFO","features":[305,413]},{"name":"PROPSHEETUI_INFO_HEADER","features":[305,413,367]},{"name":"PROPSHEETUI_INFO_VERSION","features":[413]},{"name":"PROPSHEETUI_REASON_BEFORE_INIT","features":[413]},{"name":"PROPSHEETUI_REASON_DESTROY","features":[413]},{"name":"PROPSHEETUI_REASON_GET_ICON","features":[413]},{"name":"PROPSHEETUI_REASON_GET_INFO_HEADER","features":[413]},{"name":"PROPSHEETUI_REASON_INIT","features":[413]},{"name":"PROPSHEETUI_REASON_SET_RESULT","features":[413]},{"name":"PROTOCOL_LPR_TYPE","features":[413]},{"name":"PROTOCOL_RAWTCP_TYPE","features":[413]},{"name":"PROTOCOL_UNKNOWN_TYPE","features":[413]},{"name":"PROVIDOR_INFO_1A","features":[413]},{"name":"PROVIDOR_INFO_1W","features":[413]},{"name":"PROVIDOR_INFO_2A","features":[413]},{"name":"PROVIDOR_INFO_2W","features":[413]},{"name":"PSCRIPT5_PRIVATE_DEVMODE","features":[413]},{"name":"PSPINFO","features":[305,413]},{"name":"PSUIHDRF_DEFTITLE","features":[413]},{"name":"PSUIHDRF_EXACT_PTITLE","features":[413]},{"name":"PSUIHDRF_NOAPPLYNOW","features":[413]},{"name":"PSUIHDRF_OBSOLETE","features":[413]},{"name":"PSUIHDRF_PROPTITLE","features":[413]},{"name":"PSUIHDRF_USEHICON","features":[413]},{"name":"PSUIINFO_UNICODE","features":[413]},{"name":"PSUIPAGEINSERT_DLL","features":[413]},{"name":"PSUIPAGEINSERT_GROUP_PARENT","features":[413]},{"name":"PSUIPAGEINSERT_HPROPSHEETPAGE","features":[413]},{"name":"PSUIPAGEINSERT_PCOMPROPSHEETUI","features":[413]},{"name":"PSUIPAGEINSERT_PFNPROPSHEETUI","features":[413]},{"name":"PSUIPAGEINSERT_PROPSHEETPAGE","features":[413]},{"name":"PTSHIM_DEFAULT","features":[413]},{"name":"PTSHIM_NOSNAPSHOT","features":[413]},{"name":"PUBLISHERINFO","features":[413]},{"name":"PUSHBUTTON_TYPE_CALLBACK","features":[413]},{"name":"PUSHBUTTON_TYPE_DLGPROC","features":[413]},{"name":"PUSHBUTTON_TYPE_HTCLRADJ","features":[413]},{"name":"PUSHBUTTON_TYPE_HTSETUP","features":[413]},{"name":"PageCountType","features":[413]},{"name":"PartialReplyPrinterChangeNotification","features":[305,413]},{"name":"PlayGdiScriptOnPrinterIC","features":[305,413]},{"name":"PrintAsyncNotifyConversationStyle","features":[413]},{"name":"PrintAsyncNotifyError","features":[413]},{"name":"PrintAsyncNotifyUserFilter","features":[413]},{"name":"PrintJobStatus","features":[413]},{"name":"PrintJobStatus_BlockedDeviceQueue","features":[413]},{"name":"PrintJobStatus_Complete","features":[413]},{"name":"PrintJobStatus_Deleted","features":[413]},{"name":"PrintJobStatus_Deleting","features":[413]},{"name":"PrintJobStatus_Error","features":[413]},{"name":"PrintJobStatus_Offline","features":[413]},{"name":"PrintJobStatus_PaperOut","features":[413]},{"name":"PrintJobStatus_Paused","features":[413]},{"name":"PrintJobStatus_Printed","features":[413]},{"name":"PrintJobStatus_Printing","features":[413]},{"name":"PrintJobStatus_Restarted","features":[413]},{"name":"PrintJobStatus_Retained","features":[413]},{"name":"PrintJobStatus_Spooling","features":[413]},{"name":"PrintJobStatus_UserIntervention","features":[413]},{"name":"PrintNamedProperty","features":[413]},{"name":"PrintPropertiesCollection","features":[413]},{"name":"PrintPropertyValue","features":[413]},{"name":"PrintSchemaAsyncOperation","features":[413]},{"name":"PrintSchemaConstrainedSetting","features":[413]},{"name":"PrintSchemaConstrainedSetting_Admin","features":[413]},{"name":"PrintSchemaConstrainedSetting_Device","features":[413]},{"name":"PrintSchemaConstrainedSetting_None","features":[413]},{"name":"PrintSchemaConstrainedSetting_PrintTicket","features":[413]},{"name":"PrintSchemaParameterDataType","features":[413]},{"name":"PrintSchemaParameterDataType_Integer","features":[413]},{"name":"PrintSchemaParameterDataType_NumericString","features":[413]},{"name":"PrintSchemaParameterDataType_String","features":[413]},{"name":"PrintSchemaSelectionType","features":[413]},{"name":"PrintSchemaSelectionType_PickMany","features":[413]},{"name":"PrintSchemaSelectionType_PickOne","features":[413]},{"name":"PrinterExtensionManager","features":[413]},{"name":"PrinterMessageBoxA","features":[305,413]},{"name":"PrinterMessageBoxW","features":[305,413]},{"name":"PrinterProperties","features":[305,413]},{"name":"PrinterQueue","features":[413]},{"name":"PrinterQueueView","features":[413]},{"name":"ProvidorFindClosePrinterChangeNotification","features":[305,413]},{"name":"ProvidorFindFirstPrinterChangeNotification","features":[305,413]},{"name":"QCP_DEVICEPROFILE","features":[413]},{"name":"QCP_PROFILEDISK","features":[413]},{"name":"QCP_PROFILEMEMORY","features":[413]},{"name":"QCP_SOURCEPROFILE","features":[413]},{"name":"RAWTCP","features":[413]},{"name":"REMOTE_ONLY_REGISTRATION","features":[413]},{"name":"REVERSE_PAGES_FOR_REVERSE_DUPLEX","features":[413]},{"name":"REVERSE_PRINT","features":[413]},{"name":"RIGHT_THEN_DOWN","features":[413]},{"name":"ROUTER_NOTIFY_CALLBACK","features":[305,413]},{"name":"ROUTER_STOP_ROUTING","features":[413]},{"name":"ROUTER_SUCCESS","features":[413]},{"name":"ROUTER_UNKNOWN","features":[413]},{"name":"ReadPrinter","features":[305,413]},{"name":"RegisterForPrintAsyncNotifications","features":[305,413]},{"name":"RemovePrintDeviceObject","features":[305,413]},{"name":"ReplyPrinterChangeNotification","features":[305,413]},{"name":"ReplyPrinterChangeNotificationEx","features":[305,413]},{"name":"ReportJobProcessingProgress","features":[305,413]},{"name":"ResetPrinterA","features":[305,316,413]},{"name":"ResetPrinterW","features":[305,316,413]},{"name":"RevertToPrinterSelf","features":[305,413]},{"name":"RouterAllocBidiMem","features":[413]},{"name":"RouterAllocBidiResponseContainer","features":[305,413]},{"name":"RouterAllocPrinterNotifyInfo","features":[413]},{"name":"RouterFreeBidiMem","features":[413]},{"name":"RouterFreeBidiResponseContainer","features":[305,413]},{"name":"RouterFreePrinterNotifyInfo","features":[305,413]},{"name":"SERVER_ACCESS_ADMINISTER","features":[413]},{"name":"SERVER_ACCESS_ENUMERATE","features":[413]},{"name":"SERVER_ALL_ACCESS","features":[413]},{"name":"SERVER_EXECUTE","features":[413]},{"name":"SERVER_NOTIFY_FIELD_PRINT_DRIVER_ISOLATION_GROUP","features":[413]},{"name":"SERVER_NOTIFY_TYPE","features":[413]},{"name":"SERVER_READ","features":[413]},{"name":"SERVER_WRITE","features":[413]},{"name":"SETOPTIONS_FLAG_KEEP_CONFLICT","features":[413]},{"name":"SETOPTIONS_FLAG_RESOLVE_CONFLICT","features":[413]},{"name":"SETOPTIONS_RESULT_CONFLICT_REMAINED","features":[413]},{"name":"SETOPTIONS_RESULT_CONFLICT_RESOLVED","features":[413]},{"name":"SETOPTIONS_RESULT_NO_CONFLICT","features":[413]},{"name":"SETRESULT_INFO","features":[305,413]},{"name":"SHIMOPTS","features":[413]},{"name":"SHOWUIPARAMS","features":[305,413]},{"name":"SIMULATE_CAPS_1","features":[413]},{"name":"SPLCLIENT_INFO_1","features":[413]},{"name":"SPLCLIENT_INFO_2_W2K","features":[413]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[413]},{"name":"SPLCLIENT_INFO_2_WINXP","features":[413]},{"name":"SPLCLIENT_INFO_3_VISTA","features":[413]},{"name":"SPLCLIENT_INFO_INTERNAL","features":[413]},{"name":"SPLCLIENT_INFO_INTERNAL_LEVEL","features":[413]},{"name":"SPLDS_ASSET_NUMBER","features":[413]},{"name":"SPLDS_BYTES_PER_MINUTE","features":[413]},{"name":"SPLDS_DESCRIPTION","features":[413]},{"name":"SPLDS_DRIVER_KEY","features":[413]},{"name":"SPLDS_DRIVER_NAME","features":[413]},{"name":"SPLDS_DRIVER_VERSION","features":[413]},{"name":"SPLDS_FLAGS","features":[413]},{"name":"SPLDS_LOCATION","features":[413]},{"name":"SPLDS_PORT_NAME","features":[413]},{"name":"SPLDS_PRINTER_CLASS","features":[413]},{"name":"SPLDS_PRINTER_LOCATIONS","features":[413]},{"name":"SPLDS_PRINTER_MODEL","features":[413]},{"name":"SPLDS_PRINTER_NAME","features":[413]},{"name":"SPLDS_PRINTER_NAME_ALIASES","features":[413]},{"name":"SPLDS_PRINT_ATTRIBUTES","features":[413]},{"name":"SPLDS_PRINT_BIN_NAMES","features":[413]},{"name":"SPLDS_PRINT_COLLATE","features":[413]},{"name":"SPLDS_PRINT_COLOR","features":[413]},{"name":"SPLDS_PRINT_DUPLEX_SUPPORTED","features":[413]},{"name":"SPLDS_PRINT_END_TIME","features":[413]},{"name":"SPLDS_PRINT_KEEP_PRINTED_JOBS","features":[413]},{"name":"SPLDS_PRINT_LANGUAGE","features":[413]},{"name":"SPLDS_PRINT_MAC_ADDRESS","features":[413]},{"name":"SPLDS_PRINT_MAX_RESOLUTION_SUPPORTED","features":[413]},{"name":"SPLDS_PRINT_MAX_X_EXTENT","features":[413]},{"name":"SPLDS_PRINT_MAX_Y_EXTENT","features":[413]},{"name":"SPLDS_PRINT_MEDIA_READY","features":[413]},{"name":"SPLDS_PRINT_MEDIA_SUPPORTED","features":[413]},{"name":"SPLDS_PRINT_MEMORY","features":[413]},{"name":"SPLDS_PRINT_MIN_X_EXTENT","features":[413]},{"name":"SPLDS_PRINT_MIN_Y_EXTENT","features":[413]},{"name":"SPLDS_PRINT_NETWORK_ADDRESS","features":[413]},{"name":"SPLDS_PRINT_NOTIFY","features":[413]},{"name":"SPLDS_PRINT_NUMBER_UP","features":[413]},{"name":"SPLDS_PRINT_ORIENTATIONS_SUPPORTED","features":[413]},{"name":"SPLDS_PRINT_OWNER","features":[413]},{"name":"SPLDS_PRINT_PAGES_PER_MINUTE","features":[413]},{"name":"SPLDS_PRINT_RATE","features":[413]},{"name":"SPLDS_PRINT_RATE_UNIT","features":[413]},{"name":"SPLDS_PRINT_SEPARATOR_FILE","features":[413]},{"name":"SPLDS_PRINT_SHARE_NAME","features":[413]},{"name":"SPLDS_PRINT_SPOOLING","features":[413]},{"name":"SPLDS_PRINT_STAPLING_SUPPORTED","features":[413]},{"name":"SPLDS_PRINT_START_TIME","features":[413]},{"name":"SPLDS_PRINT_STATUS","features":[413]},{"name":"SPLDS_PRIORITY","features":[413]},{"name":"SPLDS_SERVER_NAME","features":[413]},{"name":"SPLDS_SHORT_SERVER_NAME","features":[413]},{"name":"SPLDS_SPOOLER_KEY","features":[413]},{"name":"SPLDS_UNC_NAME","features":[413]},{"name":"SPLDS_URL","features":[413]},{"name":"SPLDS_USER_KEY","features":[413]},{"name":"SPLDS_VERSION_NUMBER","features":[413]},{"name":"SPLPRINTER_USER_MODE_PRINTER_DRIVER","features":[413]},{"name":"SPLREG_ALLOW_USER_MANAGEFORMS","features":[413]},{"name":"SPLREG_ARCHITECTURE","features":[413]},{"name":"SPLREG_BEEP_ENABLED","features":[413]},{"name":"SPLREG_DEFAULT_SPOOL_DIRECTORY","features":[413]},{"name":"SPLREG_DNS_MACHINE_NAME","features":[413]},{"name":"SPLREG_DS_PRESENT","features":[413]},{"name":"SPLREG_DS_PRESENT_FOR_USER","features":[413]},{"name":"SPLREG_EVENT_LOG","features":[413]},{"name":"SPLREG_MAJOR_VERSION","features":[413]},{"name":"SPLREG_MINOR_VERSION","features":[413]},{"name":"SPLREG_NET_POPUP","features":[413]},{"name":"SPLREG_NET_POPUP_TO_COMPUTER","features":[413]},{"name":"SPLREG_OS_VERSION","features":[413]},{"name":"SPLREG_OS_VERSIONEX","features":[413]},{"name":"SPLREG_PORT_THREAD_PRIORITY","features":[413]},{"name":"SPLREG_PORT_THREAD_PRIORITY_DEFAULT","features":[413]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_EXECUTION_POLICY","features":[413]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_GROUPS","features":[413]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_IDLE_TIMEOUT","features":[413]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_MAX_OBJECTS_BEFORE_RECYCLE","features":[413]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_OVERRIDE_POLICY","features":[413]},{"name":"SPLREG_PRINT_DRIVER_ISOLATION_TIME_BEFORE_RECYCLE","features":[413]},{"name":"SPLREG_PRINT_QUEUE_V4_DRIVER_DIRECTORY","features":[413]},{"name":"SPLREG_REMOTE_FAX","features":[413]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ENABLED","features":[413]},{"name":"SPLREG_RESTART_JOB_ON_POOL_ERROR","features":[413]},{"name":"SPLREG_RETRY_POPUP","features":[413]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY","features":[413]},{"name":"SPLREG_SCHEDULER_THREAD_PRIORITY_DEFAULT","features":[413]},{"name":"SPLREG_WEBSHAREMGMT","features":[413]},{"name":"SPOOL_FILE_PERSISTENT","features":[413]},{"name":"SPOOL_FILE_TEMPORARY","features":[413]},{"name":"SR_OWNER","features":[413]},{"name":"SR_OWNER_PARENT","features":[413]},{"name":"SSP_STDPAGE1","features":[413]},{"name":"SSP_STDPAGE2","features":[413]},{"name":"SSP_TVPAGE","features":[413]},{"name":"STRING_LANGPAIR","features":[413]},{"name":"STRING_MUIDLL","features":[413]},{"name":"STRING_NONE","features":[413]},{"name":"S_CONFLICT_RESOLVED","features":[413]},{"name":"S_DEVCAP_OUTPUT_FULL_REPLACEMENT","features":[413]},{"name":"S_NO_CONFLICT","features":[413]},{"name":"ScheduleJob","features":[305,413]},{"name":"SetCPSUIUserData","features":[305,413]},{"name":"SetDefaultPrinterA","features":[305,413]},{"name":"SetDefaultPrinterW","features":[305,413]},{"name":"SetFormA","features":[305,413]},{"name":"SetFormW","features":[305,413]},{"name":"SetJobA","features":[305,413]},{"name":"SetJobNamedProperty","features":[305,413]},{"name":"SetJobW","features":[305,413]},{"name":"SetPortA","features":[305,413]},{"name":"SetPortW","features":[305,413]},{"name":"SetPrinterA","features":[305,413]},{"name":"SetPrinterDataA","features":[305,413]},{"name":"SetPrinterDataExA","features":[305,413]},{"name":"SetPrinterDataExW","features":[305,413]},{"name":"SetPrinterDataW","features":[305,413]},{"name":"SetPrinterW","features":[305,413]},{"name":"SplIsSessionZero","features":[305,413]},{"name":"SplPromptUIInUsersSession","features":[305,413]},{"name":"SpoolerCopyFileEvent","features":[305,413]},{"name":"SpoolerFindClosePrinterChangeNotification","features":[305,413]},{"name":"SpoolerFindFirstPrinterChangeNotification","features":[305,413]},{"name":"SpoolerFindNextPrinterChangeNotification","features":[305,413]},{"name":"SpoolerFreePrinterNotifyInfo","features":[413]},{"name":"SpoolerRefreshPrinterChangeNotification","features":[305,413]},{"name":"StartDocPrinterA","features":[305,413]},{"name":"StartDocPrinterW","features":[305,413]},{"name":"StartPagePrinter","features":[305,413]},{"name":"TRANSDATA","features":[413]},{"name":"TTDOWNLOAD_BITMAP","features":[413]},{"name":"TTDOWNLOAD_DONTCARE","features":[413]},{"name":"TTDOWNLOAD_GRAPHICS","features":[413]},{"name":"TTDOWNLOAD_TTOUTLINE","features":[413]},{"name":"TVOT_2STATES","features":[413]},{"name":"TVOT_3STATES","features":[413]},{"name":"TVOT_CHKBOX","features":[413]},{"name":"TVOT_COMBOBOX","features":[413]},{"name":"TVOT_EDITBOX","features":[413]},{"name":"TVOT_LISTBOX","features":[413]},{"name":"TVOT_NSTATES_EX","features":[413]},{"name":"TVOT_PUSHBUTTON","features":[413]},{"name":"TVOT_SCROLLBAR","features":[413]},{"name":"TVOT_TRACKBAR","features":[413]},{"name":"TVOT_UDARROW","features":[413]},{"name":"TYPE_GLYPHHANDLE","features":[413]},{"name":"TYPE_GLYPHID","features":[413]},{"name":"TYPE_TRANSDATA","features":[413]},{"name":"TYPE_UNICODE","features":[413]},{"name":"UFF_FILEHEADER","features":[413]},{"name":"UFF_FONTDIRECTORY","features":[413]},{"name":"UFF_VERSION_NUMBER","features":[413]},{"name":"UFM_CART","features":[413]},{"name":"UFM_SCALABLE","features":[413]},{"name":"UFM_SOFT","features":[413]},{"name":"UFOFLAG_TTDOWNLOAD_BITMAP","features":[413]},{"name":"UFOFLAG_TTDOWNLOAD_TTOUTLINE","features":[413]},{"name":"UFOFLAG_TTFONT","features":[413]},{"name":"UFOFLAG_TTOUTLINE_BOLD_SIM","features":[413]},{"name":"UFOFLAG_TTOUTLINE_ITALIC_SIM","features":[413]},{"name":"UFOFLAG_TTOUTLINE_VERTICAL","features":[413]},{"name":"UFOFLAG_TTSUBSTITUTED","features":[413]},{"name":"UFO_GETINFO_FONTOBJ","features":[413]},{"name":"UFO_GETINFO_GLYPHBITMAP","features":[413]},{"name":"UFO_GETINFO_GLYPHSTRING","features":[413]},{"name":"UFO_GETINFO_GLYPHWIDTH","features":[413]},{"name":"UFO_GETINFO_MEMORY","features":[413]},{"name":"UFO_GETINFO_STDVARIABLE","features":[413]},{"name":"UI_TYPE","features":[413]},{"name":"UNIDRVINFO","features":[413]},{"name":"UNIDRV_PRIVATE_DEVMODE","features":[413]},{"name":"UNIFM_HDR","features":[413]},{"name":"UNIFM_VERSION_1_0","features":[413]},{"name":"UNIRECTIONAL_NOTIFICATION_LOST","features":[413]},{"name":"UNI_CODEPAGEINFO","features":[413]},{"name":"UNI_GLYPHSETDATA","features":[413]},{"name":"UNI_GLYPHSETDATA_VERSION_1_0","features":[413]},{"name":"UNKNOWN_PROTOCOL","features":[413]},{"name":"UPDP_CHECK_DRIVERSTORE","features":[413]},{"name":"UPDP_SILENT_UPLOAD","features":[413]},{"name":"UPDP_UPLOAD_ALWAYS","features":[413]},{"name":"USBPRINT_IOCTL_INDEX","features":[413]},{"name":"USB_PRINTER_INTERFACE_CLASSIC","features":[413]},{"name":"USB_PRINTER_INTERFACE_DUAL","features":[413]},{"name":"USB_PRINTER_INTERFACE_IPP","features":[413]},{"name":"USERDATA","features":[413]},{"name":"UnRegisterForPrintAsyncNotifications","features":[305,413]},{"name":"UpdatePrintDeviceObject","features":[305,413]},{"name":"UploadPrinterDriverPackageA","features":[305,413]},{"name":"UploadPrinterDriverPackageW","features":[305,413]},{"name":"WIDTHRUN","features":[413]},{"name":"WIDTHTABLE","features":[413]},{"name":"WM_FI_FILENAME","features":[413]},{"name":"WaitForPrinterChange","features":[305,413]},{"name":"WritePrinter","features":[305,413]},{"name":"XPSRAS_BACKGROUND_COLOR","features":[413]},{"name":"XPSRAS_BACKGROUND_COLOR_OPAQUE","features":[413]},{"name":"XPSRAS_BACKGROUND_COLOR_TRANSPARENT","features":[413]},{"name":"XPSRAS_PIXEL_FORMAT","features":[413]},{"name":"XPSRAS_PIXEL_FORMAT_128BPP_PRGBA_FLOAT_SCRGB","features":[413]},{"name":"XPSRAS_PIXEL_FORMAT_32BPP_PBGRA_UINT_SRGB","features":[413]},{"name":"XPSRAS_PIXEL_FORMAT_64BPP_PRGBA_HALF_SCRGB","features":[413]},{"name":"XPSRAS_RENDERING_MODE","features":[413]},{"name":"XPSRAS_RENDERING_MODE_ALIASED","features":[413]},{"name":"XPSRAS_RENDERING_MODE_ANTIALIASED","features":[413]},{"name":"XPS_FP_DRIVER_PROPERTY_BAG","features":[413]},{"name":"XPS_FP_JOB_ID","features":[413]},{"name":"XPS_FP_JOB_LEVEL_PRINTTICKET","features":[413]},{"name":"XPS_FP_MERGED_DATAFILE_PATH","features":[413]},{"name":"XPS_FP_MS_CONTENT_TYPE","features":[413]},{"name":"XPS_FP_MS_CONTENT_TYPE_OPENXPS","features":[413]},{"name":"XPS_FP_MS_CONTENT_TYPE_XPS","features":[413]},{"name":"XPS_FP_OUTPUT_FILE","features":[413]},{"name":"XPS_FP_PRINTDEVICECAPABILITIES","features":[413]},{"name":"XPS_FP_PRINTER_HANDLE","features":[413]},{"name":"XPS_FP_PRINTER_NAME","features":[413]},{"name":"XPS_FP_PRINT_CLASS_FACTORY","features":[413]},{"name":"XPS_FP_PROGRESS_REPORT","features":[413]},{"name":"XPS_FP_QUEUE_PROPERTY_BAG","features":[413]},{"name":"XPS_FP_RESOURCE_DLL_PATHS","features":[413]},{"name":"XPS_FP_USER_PRINT_TICKET","features":[413]},{"name":"XPS_FP_USER_TOKEN","features":[413]},{"name":"XcvDataW","features":[305,413]},{"name":"XpsJob_DocumentSequenceAdded","features":[413]},{"name":"XpsJob_FixedDocumentAdded","features":[413]},{"name":"XpsJob_FixedPageAdded","features":[413]},{"name":"Xps_Restricted_Font_Editable","features":[413]},{"name":"Xps_Restricted_Font_Installable","features":[413]},{"name":"Xps_Restricted_Font_NoEmbedding","features":[413]},{"name":"Xps_Restricted_Font_PreviewPrint","features":[413]},{"name":"_CPSUICALLBACK","features":[305,413,367]},{"name":"_SPLCLIENT_INFO_2_V3","features":[413]},{"name":"kADT_ASCII","features":[413]},{"name":"kADT_BINARY","features":[413]},{"name":"kADT_BOOL","features":[413]},{"name":"kADT_CUSTOMSIZEPARAMS","features":[413]},{"name":"kADT_DWORD","features":[413]},{"name":"kADT_INT","features":[413]},{"name":"kADT_LONG","features":[413]},{"name":"kADT_RECT","features":[413]},{"name":"kADT_SIZE","features":[413]},{"name":"kADT_UNICODE","features":[413]},{"name":"kADT_UNKNOWN","features":[413]},{"name":"kAddingDocumentSequence","features":[413]},{"name":"kAddingFixedDocument","features":[413]},{"name":"kAddingFixedPage","features":[413]},{"name":"kAllUsers","features":[413]},{"name":"kBiDirectional","features":[413]},{"name":"kDocumentSequenceAdded","features":[413]},{"name":"kFixedDocumentAdded","features":[413]},{"name":"kFixedPageAdded","features":[413]},{"name":"kFontAdded","features":[413]},{"name":"kImageAdded","features":[413]},{"name":"kInvalidJobState","features":[413]},{"name":"kJobConsumption","features":[413]},{"name":"kJobProduction","features":[413]},{"name":"kLogJobError","features":[413]},{"name":"kLogJobPipelineError","features":[413]},{"name":"kLogJobPrinted","features":[413]},{"name":"kLogJobRendered","features":[413]},{"name":"kLogOfflineFileFull","features":[413]},{"name":"kMessageBox","features":[413]},{"name":"kPerUser","features":[413]},{"name":"kPropertyTypeBuffer","features":[413]},{"name":"kPropertyTypeByte","features":[413]},{"name":"kPropertyTypeDevMode","features":[413]},{"name":"kPropertyTypeInt32","features":[413]},{"name":"kPropertyTypeInt64","features":[413]},{"name":"kPropertyTypeNotificationOptions","features":[413]},{"name":"kPropertyTypeNotificationReply","features":[413]},{"name":"kPropertyTypeSD","features":[413]},{"name":"kPropertyTypeString","features":[413]},{"name":"kPropertyTypeTime","features":[413]},{"name":"kResourceAdded","features":[413]},{"name":"kUniDirectional","features":[413]},{"name":"kXpsDocumentCommitted","features":[413]}],"422":[{"name":"EDefaultDevmodeType","features":[416]},{"name":"EPrintTicketScope","features":[416]},{"name":"E_DELTA_PRINTTICKET_FORMAT","features":[416]},{"name":"E_PRINTCAPABILITIES_FORMAT","features":[416]},{"name":"E_PRINTDEVICECAPABILITIES_FORMAT","features":[416]},{"name":"E_PRINTTICKET_FORMAT","features":[416]},{"name":"HPTPROVIDER","features":[416]},{"name":"PRINTTICKET_ISTREAM_APIS","features":[416]},{"name":"PTCloseProvider","features":[416]},{"name":"PTConvertDevModeToPrintTicket","features":[305,316,416,356]},{"name":"PTConvertPrintTicketToDevMode","features":[305,316,416,356]},{"name":"PTGetPrintCapabilities","features":[416,356]},{"name":"PTGetPrintDeviceCapabilities","features":[416,356]},{"name":"PTGetPrintDeviceResources","features":[416,356]},{"name":"PTMergeAndValidatePrintTicket","features":[416,356]},{"name":"PTOpenProvider","features":[416]},{"name":"PTOpenProviderEx","features":[416]},{"name":"PTQuerySchemaVersionSupport","features":[416]},{"name":"PTReleaseMemory","features":[416]},{"name":"S_PT_CONFLICT_RESOLVED","features":[416]},{"name":"S_PT_NO_CONFLICT","features":[416]},{"name":"kPTDocumentScope","features":[416]},{"name":"kPTJobScope","features":[416]},{"name":"kPTPageScope","features":[416]},{"name":"kPrinterDefaultDevmode","features":[416]},{"name":"kUserDefaultDevmode","features":[416]}],"423":[{"name":"ApplyLocalManagementSyncML","features":[417]},{"name":"DEVICEREGISTRATIONTYPE_MAM","features":[417]},{"name":"DEVICEREGISTRATIONTYPE_MDM_DEVICEWIDE_WITH_AAD","features":[417]},{"name":"DEVICEREGISTRATIONTYPE_MDM_ONLY","features":[417]},{"name":"DEVICEREGISTRATIONTYPE_MDM_USERSPECIFIC_WITH_AAD","features":[417]},{"name":"DEVICE_ENROLLER_FACILITY_CODE","features":[417]},{"name":"DeviceRegistrationBasicInfo","features":[417]},{"name":"DiscoverManagementService","features":[417]},{"name":"DiscoverManagementServiceEx","features":[417]},{"name":"GetDeviceManagementConfigInfo","features":[417]},{"name":"GetDeviceRegistrationInfo","features":[417]},{"name":"GetManagementAppHyperlink","features":[417]},{"name":"IsDeviceRegisteredWithManagement","features":[305,417]},{"name":"IsManagementRegistrationAllowed","features":[305,417]},{"name":"IsMdmUxWithoutAadAllowed","features":[305,417]},{"name":"MANAGEMENT_REGISTRATION_INFO","features":[305,417]},{"name":"MANAGEMENT_SERVICE_INFO","features":[417]},{"name":"MDM_REGISTRATION_FACILITY_CODE","features":[417]},{"name":"MENROLL_E_CERTAUTH_FAILED_TO_FIND_CERT","features":[417]},{"name":"MENROLL_E_CERTPOLICY_PRIVATEKEYCREATION_FAILED","features":[417]},{"name":"MENROLL_E_CONNECTIVITY","features":[417]},{"name":"MENROLL_E_CUSTOMSERVERERROR","features":[417]},{"name":"MENROLL_E_DEVICECAPREACHED","features":[417]},{"name":"MENROLL_E_DEVICENOTSUPPORTED","features":[417]},{"name":"MENROLL_E_DEVICE_ALREADY_ENROLLED","features":[417]},{"name":"MENROLL_E_DEVICE_AUTHENTICATION_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_AUTHORIZATION_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_CERTIFICATEREQUEST_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_INTERNALSERVICE_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_INVALIDSECURITY_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_MANAGEMENT_BLOCKED","features":[417]},{"name":"MENROLL_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[417]},{"name":"MENROLL_E_DEVICE_NOT_ENROLLED","features":[417]},{"name":"MENROLL_E_DEVICE_UNKNOWN_ERROR","features":[417]},{"name":"MENROLL_E_DISCOVERY_SEC_CERT_DATE_INVALID","features":[417]},{"name":"MENROLL_E_EMPTY_MESSAGE","features":[417]},{"name":"MENROLL_E_ENROLLMENTDATAINVALID","features":[417]},{"name":"MENROLL_E_ENROLLMENT_IN_PROGRESS","features":[417]},{"name":"MENROLL_E_INMAINTENANCE","features":[417]},{"name":"MENROLL_E_INSECUREREDIRECT","features":[417]},{"name":"MENROLL_E_INVALIDSSLCERT","features":[417]},{"name":"MENROLL_E_MDM_NOT_CONFIGURED","features":[417]},{"name":"MENROLL_E_NOTELIGIBLETORENEW","features":[417]},{"name":"MENROLL_E_NOTSUPPORTED","features":[417]},{"name":"MENROLL_E_NOT_SUPPORTED","features":[417]},{"name":"MENROLL_E_PASSWORD_NEEDED","features":[417]},{"name":"MENROLL_E_PLATFORM_LICENSE_ERROR","features":[417]},{"name":"MENROLL_E_PLATFORM_UNKNOWN_ERROR","features":[417]},{"name":"MENROLL_E_PLATFORM_WRONG_STATE","features":[417]},{"name":"MENROLL_E_PROV_CSP_APPMGMT","features":[417]},{"name":"MENROLL_E_PROV_CSP_CERTSTORE","features":[417]},{"name":"MENROLL_E_PROV_CSP_DMCLIENT","features":[417]},{"name":"MENROLL_E_PROV_CSP_MISC","features":[417]},{"name":"MENROLL_E_PROV_CSP_PFW","features":[417]},{"name":"MENROLL_E_PROV_CSP_W7","features":[417]},{"name":"MENROLL_E_PROV_SSLCERTNOTFOUND","features":[417]},{"name":"MENROLL_E_PROV_UNKNOWN","features":[417]},{"name":"MENROLL_E_USERLICENSE","features":[417]},{"name":"MENROLL_E_USER_CANCELED","features":[417]},{"name":"MENROLL_E_USER_CANCELLED","features":[417]},{"name":"MENROLL_E_USER_LICENSE","features":[417]},{"name":"MENROLL_E_WAB_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_ALREADY_REGISTERED","features":[417]},{"name":"MREGISTER_E_DEVICE_AUTHENTICATION_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_AUTHORIZATION_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_CERTIFCATEREQUEST_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_CONFIGMGRSERVER_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_INTERNALSERVICE_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_INVALIDSECURITY_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_MESSAGE_FORMAT_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_NOT_AD_REGISTERED_ERROR","features":[417]},{"name":"MREGISTER_E_DEVICE_NOT_REGISTERED","features":[417]},{"name":"MREGISTER_E_DEVICE_UNKNOWN_ERROR","features":[417]},{"name":"MREGISTER_E_DISCOVERY_FAILED","features":[417]},{"name":"MREGISTER_E_DISCOVERY_REDIRECTED","features":[417]},{"name":"MREGISTER_E_REGISTRATION_IN_PROGRESS","features":[417]},{"name":"MaxDeviceInfoClass","features":[417]},{"name":"REGISTRATION_INFORMATION_CLASS","features":[417]},{"name":"RegisterDeviceWithLocalManagement","features":[305,417]},{"name":"RegisterDeviceWithManagement","features":[417]},{"name":"RegisterDeviceWithManagementUsingAADCredentials","features":[305,417]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials","features":[417]},{"name":"RegisterDeviceWithManagementUsingAADDeviceCredentials2","features":[417]},{"name":"SetDeviceManagementConfigInfo","features":[417]},{"name":"SetManagedExternally","features":[305,417]},{"name":"UnregisterDeviceWithLocalManagement","features":[417]},{"name":"UnregisterDeviceWithManagement","features":[417]}],"424":[{"name":"ED_DEVCAP_ATN_READ","features":[418]},{"name":"ED_DEVCAP_RTC_READ","features":[418]},{"name":"ED_DEVCAP_TIMECODE_READ","features":[418]},{"name":"HTASK","features":[418]},{"name":"IReferenceClock","features":[418]},{"name":"IReferenceClock2","features":[418]},{"name":"IReferenceClockTimerControl","features":[418]},{"name":"JOYERR_BASE","features":[418]},{"name":"LPDRVCALLBACK","features":[419]},{"name":"LPTIMECALLBACK","features":[418]},{"name":"MAXERRORLENGTH","features":[418]},{"name":"MAXPNAMELEN","features":[418]},{"name":"MCIERR_BASE","features":[418]},{"name":"MCI_CD_OFFSET","features":[418]},{"name":"MCI_SEQ_OFFSET","features":[418]},{"name":"MCI_STRING_OFFSET","features":[418]},{"name":"MCI_VD_OFFSET","features":[418]},{"name":"MCI_WAVE_OFFSET","features":[418]},{"name":"MIDIERR_BASE","features":[418]},{"name":"MIXERR_BASE","features":[418]},{"name":"MMSYSERR_ALLOCATED","features":[418]},{"name":"MMSYSERR_BADDB","features":[418]},{"name":"MMSYSERR_BADDEVICEID","features":[418]},{"name":"MMSYSERR_BADERRNUM","features":[418]},{"name":"MMSYSERR_BASE","features":[418]},{"name":"MMSYSERR_DELETEERROR","features":[418]},{"name":"MMSYSERR_ERROR","features":[418]},{"name":"MMSYSERR_HANDLEBUSY","features":[418]},{"name":"MMSYSERR_INVALFLAG","features":[418]},{"name":"MMSYSERR_INVALHANDLE","features":[418]},{"name":"MMSYSERR_INVALIDALIAS","features":[418]},{"name":"MMSYSERR_INVALPARAM","features":[418]},{"name":"MMSYSERR_KEYNOTFOUND","features":[418]},{"name":"MMSYSERR_LASTERROR","features":[418]},{"name":"MMSYSERR_MOREDATA","features":[418]},{"name":"MMSYSERR_NODRIVER","features":[418]},{"name":"MMSYSERR_NODRIVERCB","features":[418]},{"name":"MMSYSERR_NOERROR","features":[418]},{"name":"MMSYSERR_NOMEM","features":[418]},{"name":"MMSYSERR_NOTENABLED","features":[418]},{"name":"MMSYSERR_NOTSUPPORTED","features":[418]},{"name":"MMSYSERR_READERROR","features":[418]},{"name":"MMSYSERR_VALNOTFOUND","features":[418]},{"name":"MMSYSERR_WRITEERROR","features":[418]},{"name":"MMTIME","features":[418]},{"name":"MM_ADLIB","features":[418]},{"name":"MM_DRVM_CLOSE","features":[418]},{"name":"MM_DRVM_DATA","features":[418]},{"name":"MM_DRVM_ERROR","features":[418]},{"name":"MM_DRVM_OPEN","features":[418]},{"name":"MM_JOY1BUTTONDOWN","features":[418]},{"name":"MM_JOY1BUTTONUP","features":[418]},{"name":"MM_JOY1MOVE","features":[418]},{"name":"MM_JOY1ZMOVE","features":[418]},{"name":"MM_JOY2BUTTONDOWN","features":[418]},{"name":"MM_JOY2BUTTONUP","features":[418]},{"name":"MM_JOY2MOVE","features":[418]},{"name":"MM_JOY2ZMOVE","features":[418]},{"name":"MM_MCINOTIFY","features":[418]},{"name":"MM_MCISIGNAL","features":[418]},{"name":"MM_MICROSOFT","features":[418]},{"name":"MM_MIDI_MAPPER","features":[418]},{"name":"MM_MIM_CLOSE","features":[418]},{"name":"MM_MIM_DATA","features":[418]},{"name":"MM_MIM_ERROR","features":[418]},{"name":"MM_MIM_LONGDATA","features":[418]},{"name":"MM_MIM_LONGERROR","features":[418]},{"name":"MM_MIM_MOREDATA","features":[418]},{"name":"MM_MIM_OPEN","features":[418]},{"name":"MM_MIXM_CONTROL_CHANGE","features":[418]},{"name":"MM_MIXM_LINE_CHANGE","features":[418]},{"name":"MM_MOM_CLOSE","features":[418]},{"name":"MM_MOM_DONE","features":[418]},{"name":"MM_MOM_OPEN","features":[418]},{"name":"MM_MOM_POSITIONCB","features":[418]},{"name":"MM_MPU401_MIDIIN","features":[418]},{"name":"MM_MPU401_MIDIOUT","features":[418]},{"name":"MM_PC_JOYSTICK","features":[418]},{"name":"MM_SNDBLST_MIDIIN","features":[418]},{"name":"MM_SNDBLST_MIDIOUT","features":[418]},{"name":"MM_SNDBLST_SYNTH","features":[418]},{"name":"MM_SNDBLST_WAVEIN","features":[418]},{"name":"MM_SNDBLST_WAVEOUT","features":[418]},{"name":"MM_STREAM_CLOSE","features":[418]},{"name":"MM_STREAM_DONE","features":[418]},{"name":"MM_STREAM_ERROR","features":[418]},{"name":"MM_STREAM_OPEN","features":[418]},{"name":"MM_WAVE_MAPPER","features":[418]},{"name":"MM_WIM_CLOSE","features":[418]},{"name":"MM_WIM_DATA","features":[418]},{"name":"MM_WIM_OPEN","features":[418]},{"name":"MM_WOM_CLOSE","features":[418]},{"name":"MM_WOM_DONE","features":[418]},{"name":"MM_WOM_OPEN","features":[418]},{"name":"TIMECAPS","features":[418]},{"name":"TIMECODE","features":[418]},{"name":"TIMECODE_SAMPLE","features":[418]},{"name":"TIMECODE_SAMPLE_FLAGS","features":[418]},{"name":"TIMERR_BASE","features":[418]},{"name":"TIMERR_NOCANDO","features":[418]},{"name":"TIMERR_NOERROR","features":[418]},{"name":"TIMERR_STRUCT","features":[418]},{"name":"TIME_BYTES","features":[418]},{"name":"TIME_CALLBACK_EVENT_PULSE","features":[418]},{"name":"TIME_CALLBACK_EVENT_SET","features":[418]},{"name":"TIME_CALLBACK_FUNCTION","features":[418]},{"name":"TIME_KILL_SYNCHRONOUS","features":[418]},{"name":"TIME_MIDI","features":[418]},{"name":"TIME_MS","features":[418]},{"name":"TIME_ONESHOT","features":[418]},{"name":"TIME_PERIODIC","features":[418]},{"name":"TIME_SAMPLES","features":[418]},{"name":"TIME_SMPTE","features":[418]},{"name":"TIME_TICKS","features":[418]},{"name":"WAVERR_BASE","features":[418]},{"name":"timeBeginPeriod","features":[418]},{"name":"timeEndPeriod","features":[418]},{"name":"timeGetDevCaps","features":[418]},{"name":"timeGetSystemTime","features":[418]},{"name":"timeGetTime","features":[418]},{"name":"timeKillEvent","features":[418]},{"name":"timeSetEvent","features":[418]}],"425":[{"name":"ACMDM_DRIVER_ABOUT","features":[420]},{"name":"ACMDM_DRIVER_DETAILS","features":[420]},{"name":"ACMDM_DRIVER_NOTIFY","features":[420]},{"name":"ACMDM_FILTERTAG_DETAILS","features":[420]},{"name":"ACMDM_FILTER_DETAILS","features":[420]},{"name":"ACMDM_FORMATTAG_DETAILS","features":[420]},{"name":"ACMDM_FORMAT_DETAILS","features":[420]},{"name":"ACMDM_FORMAT_SUGGEST","features":[420]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_INPUT","features":[420]},{"name":"ACMDM_HARDWARE_WAVE_CAPS_OUTPUT","features":[420]},{"name":"ACMDM_RESERVED_HIGH","features":[420]},{"name":"ACMDM_RESERVED_LOW","features":[420]},{"name":"ACMDM_STREAM_CLOSE","features":[420]},{"name":"ACMDM_STREAM_CONVERT","features":[420]},{"name":"ACMDM_STREAM_OPEN","features":[420]},{"name":"ACMDM_STREAM_PREPARE","features":[420]},{"name":"ACMDM_STREAM_RESET","features":[420]},{"name":"ACMDM_STREAM_SIZE","features":[420]},{"name":"ACMDM_STREAM_UNPREPARE","features":[420]},{"name":"ACMDM_STREAM_UPDATE","features":[420]},{"name":"ACMDM_USER","features":[420]},{"name":"ACMDRIVERDETAILSA","features":[420,367]},{"name":"ACMDRIVERDETAILSW","features":[420,367]},{"name":"ACMDRIVERDETAILS_COPYRIGHT_CHARS","features":[420]},{"name":"ACMDRIVERDETAILS_FEATURES_CHARS","features":[420]},{"name":"ACMDRIVERDETAILS_LICENSING_CHARS","features":[420]},{"name":"ACMDRIVERDETAILS_LONGNAME_CHARS","features":[420]},{"name":"ACMDRIVERDETAILS_SHORTNAME_CHARS","features":[420]},{"name":"ACMDRIVERDETAILS_SUPPORTF_ASYNC","features":[420]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CODEC","features":[420]},{"name":"ACMDRIVERDETAILS_SUPPORTF_CONVERTER","features":[420]},{"name":"ACMDRIVERDETAILS_SUPPORTF_DISABLED","features":[420]},{"name":"ACMDRIVERDETAILS_SUPPORTF_FILTER","features":[420]},{"name":"ACMDRIVERDETAILS_SUPPORTF_HARDWARE","features":[420]},{"name":"ACMDRIVERDETAILS_SUPPORTF_LOCAL","features":[420]},{"name":"ACMDRIVERENUMCB","features":[305,420]},{"name":"ACMDRVFORMATSUGGEST","features":[420]},{"name":"ACMDRVOPENDESCA","features":[420]},{"name":"ACMDRVOPENDESCW","features":[420]},{"name":"ACMDRVSTREAMHEADER","features":[420]},{"name":"ACMDRVSTREAMINSTANCE","features":[420]},{"name":"ACMDRVSTREAMSIZE","features":[420]},{"name":"ACMERR_BASE","features":[420]},{"name":"ACMERR_BUSY","features":[420]},{"name":"ACMERR_CANCELED","features":[420]},{"name":"ACMERR_NOTPOSSIBLE","features":[420]},{"name":"ACMERR_UNPREPARED","features":[420]},{"name":"ACMFILTERCHOOSEA","features":[305,420]},{"name":"ACMFILTERCHOOSEHOOKPROCA","features":[305,420]},{"name":"ACMFILTERCHOOSEHOOKPROCW","features":[305,420]},{"name":"ACMFILTERCHOOSEW","features":[305,420]},{"name":"ACMFILTERCHOOSE_STYLEF_CONTEXTHELP","features":[420]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLEHOOK","features":[420]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATE","features":[420]},{"name":"ACMFILTERCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[420]},{"name":"ACMFILTERCHOOSE_STYLEF_INITTOFILTERSTRUCT","features":[420]},{"name":"ACMFILTERCHOOSE_STYLEF_SHOWHELP","features":[420]},{"name":"ACMFILTERDETAILSA","features":[420]},{"name":"ACMFILTERDETAILSW","features":[420]},{"name":"ACMFILTERDETAILS_FILTER_CHARS","features":[420]},{"name":"ACMFILTERENUMCBA","features":[305,420]},{"name":"ACMFILTERENUMCBW","features":[305,420]},{"name":"ACMFILTERTAGDETAILSA","features":[420]},{"name":"ACMFILTERTAGDETAILSW","features":[420]},{"name":"ACMFILTERTAGDETAILS_FILTERTAG_CHARS","features":[420]},{"name":"ACMFILTERTAGENUMCBA","features":[305,420]},{"name":"ACMFILTERTAGENUMCBW","features":[305,420]},{"name":"ACMFORMATCHOOSEA","features":[305,420]},{"name":"ACMFORMATCHOOSEHOOKPROCA","features":[305,420]},{"name":"ACMFORMATCHOOSEHOOKPROCW","features":[305,420]},{"name":"ACMFORMATCHOOSEW","features":[305,420]},{"name":"ACMFORMATCHOOSE_STYLEF_CONTEXTHELP","features":[420]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLEHOOK","features":[420]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATE","features":[420]},{"name":"ACMFORMATCHOOSE_STYLEF_ENABLETEMPLATEHANDLE","features":[420]},{"name":"ACMFORMATCHOOSE_STYLEF_INITTOWFXSTRUCT","features":[420]},{"name":"ACMFORMATCHOOSE_STYLEF_SHOWHELP","features":[420]},{"name":"ACMFORMATDETAILSA","features":[420]},{"name":"ACMFORMATDETAILS_FORMAT_CHARS","features":[420]},{"name":"ACMFORMATENUMCBA","features":[305,420]},{"name":"ACMFORMATENUMCBW","features":[305,420]},{"name":"ACMFORMATTAGDETAILSA","features":[420]},{"name":"ACMFORMATTAGDETAILSW","features":[420]},{"name":"ACMFORMATTAGDETAILS_FORMATTAG_CHARS","features":[420]},{"name":"ACMFORMATTAGENUMCBA","features":[305,420]},{"name":"ACMFORMATTAGENUMCBW","features":[305,420]},{"name":"ACMHELPMSGCONTEXTHELP","features":[420]},{"name":"ACMHELPMSGCONTEXTHELPA","features":[420]},{"name":"ACMHELPMSGCONTEXTHELPW","features":[420]},{"name":"ACMHELPMSGCONTEXTMENU","features":[420]},{"name":"ACMHELPMSGCONTEXTMENUA","features":[420]},{"name":"ACMHELPMSGCONTEXTMENUW","features":[420]},{"name":"ACMHELPMSGSTRING","features":[420]},{"name":"ACMHELPMSGSTRINGA","features":[420]},{"name":"ACMHELPMSGSTRINGW","features":[420]},{"name":"ACMSTREAMHEADER","features":[420]},{"name":"ACMSTREAMHEADER","features":[420]},{"name":"ACMSTREAMHEADER_STATUSF_DONE","features":[420]},{"name":"ACMSTREAMHEADER_STATUSF_INQUEUE","features":[420]},{"name":"ACMSTREAMHEADER_STATUSF_PREPARED","features":[420]},{"name":"ACM_DRIVERADDF_FUNCTION","features":[420]},{"name":"ACM_DRIVERADDF_GLOBAL","features":[420]},{"name":"ACM_DRIVERADDF_LOCAL","features":[420]},{"name":"ACM_DRIVERADDF_NAME","features":[420]},{"name":"ACM_DRIVERADDF_NOTIFYHWND","features":[420]},{"name":"ACM_DRIVERADDF_TYPEMASK","features":[420]},{"name":"ACM_DRIVERENUMF_DISABLED","features":[420]},{"name":"ACM_DRIVERENUMF_NOLOCAL","features":[420]},{"name":"ACM_DRIVERPRIORITYF_ABLEMASK","features":[420]},{"name":"ACM_DRIVERPRIORITYF_BEGIN","features":[420]},{"name":"ACM_DRIVERPRIORITYF_DEFERMASK","features":[420]},{"name":"ACM_DRIVERPRIORITYF_DISABLE","features":[420]},{"name":"ACM_DRIVERPRIORITYF_ENABLE","features":[420]},{"name":"ACM_DRIVERPRIORITYF_END","features":[420]},{"name":"ACM_FILTERDETAILSF_FILTER","features":[420]},{"name":"ACM_FILTERDETAILSF_INDEX","features":[420]},{"name":"ACM_FILTERDETAILSF_QUERYMASK","features":[420]},{"name":"ACM_FILTERENUMF_DWFILTERTAG","features":[420]},{"name":"ACM_FILTERTAGDETAILSF_FILTERTAG","features":[420]},{"name":"ACM_FILTERTAGDETAILSF_INDEX","features":[420]},{"name":"ACM_FILTERTAGDETAILSF_LARGESTSIZE","features":[420]},{"name":"ACM_FILTERTAGDETAILSF_QUERYMASK","features":[420]},{"name":"ACM_FORMATDETAILSF_FORMAT","features":[420]},{"name":"ACM_FORMATDETAILSF_INDEX","features":[420]},{"name":"ACM_FORMATDETAILSF_QUERYMASK","features":[420]},{"name":"ACM_FORMATENUMF_CONVERT","features":[420]},{"name":"ACM_FORMATENUMF_HARDWARE","features":[420]},{"name":"ACM_FORMATENUMF_INPUT","features":[420]},{"name":"ACM_FORMATENUMF_NCHANNELS","features":[420]},{"name":"ACM_FORMATENUMF_NSAMPLESPERSEC","features":[420]},{"name":"ACM_FORMATENUMF_OUTPUT","features":[420]},{"name":"ACM_FORMATENUMF_SUGGEST","features":[420]},{"name":"ACM_FORMATENUMF_WBITSPERSAMPLE","features":[420]},{"name":"ACM_FORMATENUMF_WFORMATTAG","features":[420]},{"name":"ACM_FORMATSUGGESTF_NCHANNELS","features":[420]},{"name":"ACM_FORMATSUGGESTF_NSAMPLESPERSEC","features":[420]},{"name":"ACM_FORMATSUGGESTF_TYPEMASK","features":[420]},{"name":"ACM_FORMATSUGGESTF_WBITSPERSAMPLE","features":[420]},{"name":"ACM_FORMATSUGGESTF_WFORMATTAG","features":[420]},{"name":"ACM_FORMATTAGDETAILSF_FORMATTAG","features":[420]},{"name":"ACM_FORMATTAGDETAILSF_INDEX","features":[420]},{"name":"ACM_FORMATTAGDETAILSF_LARGESTSIZE","features":[420]},{"name":"ACM_FORMATTAGDETAILSF_QUERYMASK","features":[420]},{"name":"ACM_METRIC_COUNT_CODECS","features":[420]},{"name":"ACM_METRIC_COUNT_CONVERTERS","features":[420]},{"name":"ACM_METRIC_COUNT_DISABLED","features":[420]},{"name":"ACM_METRIC_COUNT_DRIVERS","features":[420]},{"name":"ACM_METRIC_COUNT_FILTERS","features":[420]},{"name":"ACM_METRIC_COUNT_HARDWARE","features":[420]},{"name":"ACM_METRIC_COUNT_LOCAL_CODECS","features":[420]},{"name":"ACM_METRIC_COUNT_LOCAL_CONVERTERS","features":[420]},{"name":"ACM_METRIC_COUNT_LOCAL_DISABLED","features":[420]},{"name":"ACM_METRIC_COUNT_LOCAL_DRIVERS","features":[420]},{"name":"ACM_METRIC_COUNT_LOCAL_FILTERS","features":[420]},{"name":"ACM_METRIC_DRIVER_PRIORITY","features":[420]},{"name":"ACM_METRIC_DRIVER_SUPPORT","features":[420]},{"name":"ACM_METRIC_HARDWARE_WAVE_INPUT","features":[420]},{"name":"ACM_METRIC_HARDWARE_WAVE_OUTPUT","features":[420]},{"name":"ACM_METRIC_MAX_SIZE_FILTER","features":[420]},{"name":"ACM_METRIC_MAX_SIZE_FORMAT","features":[420]},{"name":"ACM_STREAMCONVERTF_BLOCKALIGN","features":[420]},{"name":"ACM_STREAMCONVERTF_END","features":[420]},{"name":"ACM_STREAMCONVERTF_START","features":[420]},{"name":"ACM_STREAMOPENF_ASYNC","features":[420]},{"name":"ACM_STREAMOPENF_NONREALTIME","features":[420]},{"name":"ACM_STREAMOPENF_QUERY","features":[420]},{"name":"ACM_STREAMSIZEF_DESTINATION","features":[420]},{"name":"ACM_STREAMSIZEF_QUERYMASK","features":[420]},{"name":"ACM_STREAMSIZEF_SOURCE","features":[420]},{"name":"AMBISONICS_CHANNEL_ORDERING","features":[420]},{"name":"AMBISONICS_CHANNEL_ORDERING_ACN","features":[420]},{"name":"AMBISONICS_NORMALIZATION","features":[420]},{"name":"AMBISONICS_NORMALIZATION_N3D","features":[420]},{"name":"AMBISONICS_NORMALIZATION_SN3D","features":[420]},{"name":"AMBISONICS_PARAMS","features":[420]},{"name":"AMBISONICS_PARAM_VERSION_1","features":[420]},{"name":"AMBISONICS_TYPE","features":[420]},{"name":"AMBISONICS_TYPE_FULL3D","features":[420]},{"name":"AUDCLNT_BUFFERFLAGS_DATA_DISCONTINUITY","features":[420]},{"name":"AUDCLNT_BUFFERFLAGS_SILENT","features":[420]},{"name":"AUDCLNT_BUFFERFLAGS_TIMESTAMP_ERROR","features":[420]},{"name":"AUDCLNT_E_ALREADY_INITIALIZED","features":[420]},{"name":"AUDCLNT_E_BUFDURATION_PERIOD_NOT_EQUAL","features":[420]},{"name":"AUDCLNT_E_BUFFER_ERROR","features":[420]},{"name":"AUDCLNT_E_BUFFER_OPERATION_PENDING","features":[420]},{"name":"AUDCLNT_E_BUFFER_SIZE_ERROR","features":[420]},{"name":"AUDCLNT_E_BUFFER_SIZE_NOT_ALIGNED","features":[420]},{"name":"AUDCLNT_E_BUFFER_TOO_LARGE","features":[420]},{"name":"AUDCLNT_E_CPUUSAGE_EXCEEDED","features":[420]},{"name":"AUDCLNT_E_DEVICE_INVALIDATED","features":[420]},{"name":"AUDCLNT_E_DEVICE_IN_USE","features":[420]},{"name":"AUDCLNT_E_EFFECT_NOT_AVAILABLE","features":[420]},{"name":"AUDCLNT_E_EFFECT_STATE_READ_ONLY","features":[420]},{"name":"AUDCLNT_E_ENDPOINT_CREATE_FAILED","features":[420]},{"name":"AUDCLNT_E_ENDPOINT_OFFLOAD_NOT_CAPABLE","features":[420]},{"name":"AUDCLNT_E_ENGINE_FORMAT_LOCKED","features":[420]},{"name":"AUDCLNT_E_ENGINE_PERIODICITY_LOCKED","features":[420]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_EXPECTED","features":[420]},{"name":"AUDCLNT_E_EVENTHANDLE_NOT_SET","features":[420]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED","features":[420]},{"name":"AUDCLNT_E_EXCLUSIVE_MODE_ONLY","features":[420]},{"name":"AUDCLNT_E_HEADTRACKING_ENABLED","features":[420]},{"name":"AUDCLNT_E_HEADTRACKING_UNSUPPORTED","features":[420]},{"name":"AUDCLNT_E_INCORRECT_BUFFER_SIZE","features":[420]},{"name":"AUDCLNT_E_INVALID_DEVICE_PERIOD","features":[420]},{"name":"AUDCLNT_E_INVALID_SIZE","features":[420]},{"name":"AUDCLNT_E_INVALID_STREAM_FLAG","features":[420]},{"name":"AUDCLNT_E_NONOFFLOAD_MODE_ONLY","features":[420]},{"name":"AUDCLNT_E_NOT_INITIALIZED","features":[420]},{"name":"AUDCLNT_E_NOT_STOPPED","features":[420]},{"name":"AUDCLNT_E_OFFLOAD_MODE_ONLY","features":[420]},{"name":"AUDCLNT_E_OUT_OF_OFFLOAD_RESOURCES","features":[420]},{"name":"AUDCLNT_E_OUT_OF_ORDER","features":[420]},{"name":"AUDCLNT_E_RAW_MODE_UNSUPPORTED","features":[420]},{"name":"AUDCLNT_E_RESOURCES_INVALIDATED","features":[420]},{"name":"AUDCLNT_E_SERVICE_NOT_RUNNING","features":[420]},{"name":"AUDCLNT_E_THREAD_NOT_REGISTERED","features":[420]},{"name":"AUDCLNT_E_UNSUPPORTED_FORMAT","features":[420]},{"name":"AUDCLNT_E_WRONG_ENDPOINT_TYPE","features":[420]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDE","features":[420]},{"name":"AUDCLNT_SESSIONFLAGS_DISPLAY_HIDEWHENEXPIRED","features":[420]},{"name":"AUDCLNT_SESSIONFLAGS_EXPIREWHENUNOWNED","features":[420]},{"name":"AUDCLNT_SHAREMODE","features":[420]},{"name":"AUDCLNT_SHAREMODE_EXCLUSIVE","features":[420]},{"name":"AUDCLNT_SHAREMODE_SHARED","features":[420]},{"name":"AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM","features":[420]},{"name":"AUDCLNT_STREAMFLAGS_CROSSPROCESS","features":[420]},{"name":"AUDCLNT_STREAMFLAGS_EVENTCALLBACK","features":[420]},{"name":"AUDCLNT_STREAMFLAGS_LOOPBACK","features":[420]},{"name":"AUDCLNT_STREAMFLAGS_NOPERSIST","features":[420]},{"name":"AUDCLNT_STREAMFLAGS_RATEADJUST","features":[420]},{"name":"AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY","features":[420]},{"name":"AUDCLNT_STREAMOPTIONS","features":[420]},{"name":"AUDCLNT_STREAMOPTIONS_AMBISONICS","features":[420]},{"name":"AUDCLNT_STREAMOPTIONS_MATCH_FORMAT","features":[420]},{"name":"AUDCLNT_STREAMOPTIONS_NONE","features":[420]},{"name":"AUDCLNT_STREAMOPTIONS_RAW","features":[420]},{"name":"AUDCLNT_S_BUFFER_EMPTY","features":[420]},{"name":"AUDCLNT_S_POSITION_STALLED","features":[420]},{"name":"AUDCLNT_S_THREAD_ALREADY_REGISTERED","features":[420]},{"name":"AUDIOCLIENT_ACTIVATION_PARAMS","features":[420]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE","features":[420]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_DEFAULT","features":[420]},{"name":"AUDIOCLIENT_ACTIVATION_TYPE_PROCESS_LOOPBACK","features":[420]},{"name":"AUDIOCLIENT_PROCESS_LOOPBACK_PARAMS","features":[420]},{"name":"AUDIOCLOCK_CHARACTERISTIC_FIXED_FREQ","features":[420]},{"name":"AUDIO_DUCKING_OPTIONS","features":[420]},{"name":"AUDIO_DUCKING_OPTIONS_DEFAULT","features":[420]},{"name":"AUDIO_DUCKING_OPTIONS_DO_NOT_DUCK_OTHER_STREAMS","features":[420]},{"name":"AUDIO_EFFECT","features":[305,420]},{"name":"AUDIO_EFFECT_STATE","features":[420]},{"name":"AUDIO_EFFECT_STATE_OFF","features":[420]},{"name":"AUDIO_EFFECT_STATE_ON","features":[420]},{"name":"AUDIO_STREAM_CATEGORY","features":[420]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE","features":[420]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_DEFAULT","features":[420]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_ENUM_COUNT","features":[420]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_USER","features":[420]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTYSTORE_TYPE_VOLATILE","features":[420]},{"name":"AUDIO_VOLUME_NOTIFICATION_DATA","features":[305,420]},{"name":"AUXCAPS2A","features":[420]},{"name":"AUXCAPS2W","features":[420]},{"name":"AUXCAPSA","features":[420]},{"name":"AUXCAPSW","features":[420]},{"name":"AUXCAPS_AUXIN","features":[420]},{"name":"AUXCAPS_CDAUDIO","features":[420]},{"name":"AUXCAPS_LRVOLUME","features":[420]},{"name":"AUXCAPS_VOLUME","features":[420]},{"name":"ActivateAudioInterfaceAsync","features":[420]},{"name":"AudioCategory_Alerts","features":[420]},{"name":"AudioCategory_Communications","features":[420]},{"name":"AudioCategory_FarFieldSpeech","features":[420]},{"name":"AudioCategory_ForegroundOnlyMedia","features":[420]},{"name":"AudioCategory_GameChat","features":[420]},{"name":"AudioCategory_GameEffects","features":[420]},{"name":"AudioCategory_GameMedia","features":[420]},{"name":"AudioCategory_Media","features":[420]},{"name":"AudioCategory_Movie","features":[420]},{"name":"AudioCategory_Other","features":[420]},{"name":"AudioCategory_SoundEffects","features":[420]},{"name":"AudioCategory_Speech","features":[420]},{"name":"AudioCategory_UniformSpeech","features":[420]},{"name":"AudioCategory_VoiceTyping","features":[420]},{"name":"AudioClient3ActivationParams","features":[420]},{"name":"AudioClientProperties","features":[305,420]},{"name":"AudioExtensionParams","features":[305,420]},{"name":"AudioObjectType","features":[420]},{"name":"AudioObjectType_BackCenter","features":[420]},{"name":"AudioObjectType_BackLeft","features":[420]},{"name":"AudioObjectType_BackRight","features":[420]},{"name":"AudioObjectType_BottomBackLeft","features":[420]},{"name":"AudioObjectType_BottomBackRight","features":[420]},{"name":"AudioObjectType_BottomFrontLeft","features":[420]},{"name":"AudioObjectType_BottomFrontRight","features":[420]},{"name":"AudioObjectType_Dynamic","features":[420]},{"name":"AudioObjectType_FrontCenter","features":[420]},{"name":"AudioObjectType_FrontLeft","features":[420]},{"name":"AudioObjectType_FrontRight","features":[420]},{"name":"AudioObjectType_LowFrequency","features":[420]},{"name":"AudioObjectType_None","features":[420]},{"name":"AudioObjectType_SideLeft","features":[420]},{"name":"AudioObjectType_SideRight","features":[420]},{"name":"AudioObjectType_TopBackLeft","features":[420]},{"name":"AudioObjectType_TopBackRight","features":[420]},{"name":"AudioObjectType_TopFrontLeft","features":[420]},{"name":"AudioObjectType_TopFrontRight","features":[420]},{"name":"AudioSessionDisconnectReason","features":[420]},{"name":"AudioSessionState","features":[420]},{"name":"AudioSessionStateActive","features":[420]},{"name":"AudioSessionStateExpired","features":[420]},{"name":"AudioSessionStateInactive","features":[420]},{"name":"AudioStateMonitorSoundLevel","features":[420]},{"name":"CALLBACK_EVENT","features":[420]},{"name":"CALLBACK_FUNCTION","features":[420]},{"name":"CALLBACK_NULL","features":[420]},{"name":"CALLBACK_TASK","features":[420]},{"name":"CALLBACK_THREAD","features":[420]},{"name":"CALLBACK_TYPEMASK","features":[420]},{"name":"CALLBACK_WINDOW","features":[420]},{"name":"CoRegisterMessageFilter","features":[420]},{"name":"Connector","features":[420]},{"name":"ConnectorType","features":[420]},{"name":"CreateCaptureAudioStateMonitor","features":[420]},{"name":"CreateCaptureAudioStateMonitorForCategory","features":[420]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceId","features":[420]},{"name":"CreateCaptureAudioStateMonitorForCategoryAndDeviceRole","features":[420]},{"name":"CreateRenderAudioStateMonitor","features":[420]},{"name":"CreateRenderAudioStateMonitorForCategory","features":[420]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceId","features":[420]},{"name":"CreateRenderAudioStateMonitorForCategoryAndDeviceRole","features":[420]},{"name":"DEVICE_STATE","features":[420]},{"name":"DEVICE_STATEMASK_ALL","features":[420]},{"name":"DEVICE_STATE_ACTIVE","features":[420]},{"name":"DEVICE_STATE_DISABLED","features":[420]},{"name":"DEVICE_STATE_NOTPRESENT","features":[420]},{"name":"DEVICE_STATE_UNPLUGGED","features":[420]},{"name":"DEVINTERFACE_AUDIO_CAPTURE","features":[420]},{"name":"DEVINTERFACE_AUDIO_RENDER","features":[420]},{"name":"DEVINTERFACE_MIDI_INPUT","features":[420]},{"name":"DEVINTERFACE_MIDI_OUTPUT","features":[420]},{"name":"DIRECTX_AUDIO_ACTIVATION_PARAMS","features":[420]},{"name":"DRVM_MAPPER","features":[420]},{"name":"DRVM_MAPPER_STATUS","features":[420]},{"name":"DRV_MAPPER_PREFERRED_INPUT_GET","features":[420]},{"name":"DRV_MAPPER_PREFERRED_OUTPUT_GET","features":[420]},{"name":"DataFlow","features":[420]},{"name":"DeviceTopology","features":[420]},{"name":"DigitalAudioDisplayDevice","features":[420]},{"name":"DisconnectReasonDeviceRemoval","features":[420]},{"name":"DisconnectReasonExclusiveModeOverride","features":[420]},{"name":"DisconnectReasonFormatChanged","features":[420]},{"name":"DisconnectReasonServerShutdown","features":[420]},{"name":"DisconnectReasonSessionDisconnected","features":[420]},{"name":"DisconnectReasonSessionLogoff","features":[420]},{"name":"ECHOWAVEFILTER","features":[420]},{"name":"EDataFlow","features":[420]},{"name":"EDataFlow_enum_count","features":[420]},{"name":"ENDPOINT_FORMAT_RESET_MIX_ONLY","features":[420]},{"name":"ENDPOINT_HARDWARE_SUPPORT_METER","features":[420]},{"name":"ENDPOINT_HARDWARE_SUPPORT_MUTE","features":[420]},{"name":"ENDPOINT_HARDWARE_SUPPORT_VOLUME","features":[420]},{"name":"ENDPOINT_SYSFX_DISABLED","features":[420]},{"name":"ENDPOINT_SYSFX_ENABLED","features":[420]},{"name":"ERole","features":[420]},{"name":"ERole_enum_count","features":[420]},{"name":"EVENTCONTEXT_VOLUMESLIDER","features":[420]},{"name":"EndpointFormFactor","features":[420]},{"name":"EndpointFormFactor_enum_count","features":[420]},{"name":"FILTERCHOOSE_CUSTOM_VERIFY","features":[420]},{"name":"FILTERCHOOSE_FILTERTAG_VERIFY","features":[420]},{"name":"FILTERCHOOSE_FILTER_VERIFY","features":[420]},{"name":"FILTERCHOOSE_MESSAGE","features":[420]},{"name":"FORMATCHOOSE_CUSTOM_VERIFY","features":[420]},{"name":"FORMATCHOOSE_FORMATTAG_VERIFY","features":[420]},{"name":"FORMATCHOOSE_FORMAT_VERIFY","features":[420]},{"name":"FORMATCHOOSE_MESSAGE","features":[420]},{"name":"Full","features":[420]},{"name":"HACMDRIVER","features":[420]},{"name":"HACMDRIVERID","features":[420]},{"name":"HACMOBJ","features":[420]},{"name":"HACMSTREAM","features":[420]},{"name":"HMIDI","features":[420]},{"name":"HMIDIIN","features":[420]},{"name":"HMIDIOUT","features":[420]},{"name":"HMIDISTRM","features":[420]},{"name":"HMIXER","features":[420]},{"name":"HMIXEROBJ","features":[420]},{"name":"HWAVE","features":[420]},{"name":"HWAVEIN","features":[420]},{"name":"HWAVEOUT","features":[420]},{"name":"Handset","features":[420]},{"name":"Headphones","features":[420]},{"name":"Headset","features":[420]},{"name":"IAcousticEchoCancellationControl","features":[420]},{"name":"IActivateAudioInterfaceAsyncOperation","features":[420]},{"name":"IActivateAudioInterfaceCompletionHandler","features":[420]},{"name":"IAudioAmbisonicsControl","features":[420]},{"name":"IAudioAutoGainControl","features":[420]},{"name":"IAudioBass","features":[420]},{"name":"IAudioCaptureClient","features":[420]},{"name":"IAudioChannelConfig","features":[420]},{"name":"IAudioClient","features":[420]},{"name":"IAudioClient2","features":[420]},{"name":"IAudioClient3","features":[420]},{"name":"IAudioClientDuckingControl","features":[420]},{"name":"IAudioClock","features":[420]},{"name":"IAudioClock2","features":[420]},{"name":"IAudioClockAdjustment","features":[420]},{"name":"IAudioEffectsChangedNotificationClient","features":[420]},{"name":"IAudioEffectsManager","features":[420]},{"name":"IAudioFormatEnumerator","features":[420]},{"name":"IAudioInputSelector","features":[420]},{"name":"IAudioLoudness","features":[420]},{"name":"IAudioMidrange","features":[420]},{"name":"IAudioMute","features":[420]},{"name":"IAudioOutputSelector","features":[420]},{"name":"IAudioPeakMeter","features":[420]},{"name":"IAudioRenderClient","features":[420]},{"name":"IAudioSessionControl","features":[420]},{"name":"IAudioSessionControl2","features":[420]},{"name":"IAudioSessionEnumerator","features":[420]},{"name":"IAudioSessionEvents","features":[420]},{"name":"IAudioSessionManager","features":[420]},{"name":"IAudioSessionManager2","features":[420]},{"name":"IAudioSessionNotification","features":[420]},{"name":"IAudioStateMonitor","features":[420]},{"name":"IAudioStreamVolume","features":[420]},{"name":"IAudioSystemEffectsPropertyChangeNotificationClient","features":[420]},{"name":"IAudioSystemEffectsPropertyStore","features":[420]},{"name":"IAudioTreble","features":[420]},{"name":"IAudioViewManagerService","features":[420]},{"name":"IAudioVolumeDuckNotification","features":[420]},{"name":"IAudioVolumeLevel","features":[420]},{"name":"IChannelAudioVolume","features":[420]},{"name":"IConnector","features":[420]},{"name":"IControlChangeNotify","features":[420]},{"name":"IControlInterface","features":[420]},{"name":"IDeviceSpecificProperty","features":[420]},{"name":"IDeviceTopology","features":[420]},{"name":"IMMDevice","features":[420]},{"name":"IMMDeviceActivator","features":[420]},{"name":"IMMDeviceCollection","features":[420]},{"name":"IMMDeviceEnumerator","features":[420]},{"name":"IMMEndpoint","features":[420]},{"name":"IMMNotificationClient","features":[420]},{"name":"IMessageFilter","features":[420]},{"name":"IPart","features":[420]},{"name":"IPartsList","features":[420]},{"name":"IPerChannelDbLevel","features":[420]},{"name":"ISimpleAudioVolume","features":[420]},{"name":"ISpatialAudioClient","features":[420]},{"name":"ISpatialAudioClient2","features":[420]},{"name":"ISpatialAudioMetadataClient","features":[420]},{"name":"ISpatialAudioMetadataCopier","features":[420]},{"name":"ISpatialAudioMetadataItems","features":[420]},{"name":"ISpatialAudioMetadataItemsBuffer","features":[420]},{"name":"ISpatialAudioMetadataReader","features":[420]},{"name":"ISpatialAudioMetadataWriter","features":[420]},{"name":"ISpatialAudioObject","features":[420]},{"name":"ISpatialAudioObjectBase","features":[420]},{"name":"ISpatialAudioObjectForHrtf","features":[420]},{"name":"ISpatialAudioObjectForMetadataCommands","features":[420]},{"name":"ISpatialAudioObjectForMetadataItems","features":[420]},{"name":"ISpatialAudioObjectRenderStream","features":[420]},{"name":"ISpatialAudioObjectRenderStreamBase","features":[420]},{"name":"ISpatialAudioObjectRenderStreamForHrtf","features":[420]},{"name":"ISpatialAudioObjectRenderStreamForMetadata","features":[420]},{"name":"ISpatialAudioObjectRenderStreamNotify","features":[420]},{"name":"ISubunit","features":[420]},{"name":"In","features":[420]},{"name":"LPACMDRIVERPROC","features":[305,420]},{"name":"LPMIDICALLBACK","features":[420,419]},{"name":"LPWAVECALLBACK","features":[420,419]},{"name":"LineLevel","features":[420]},{"name":"Low","features":[420]},{"name":"MEVT_COMMENT","features":[420]},{"name":"MEVT_F_CALLBACK","features":[420]},{"name":"MEVT_F_LONG","features":[420]},{"name":"MEVT_F_SHORT","features":[420]},{"name":"MEVT_LONGMSG","features":[420]},{"name":"MEVT_NOP","features":[420]},{"name":"MEVT_SHORTMSG","features":[420]},{"name":"MEVT_TEMPO","features":[420]},{"name":"MEVT_VERSION","features":[420]},{"name":"MHDR_DONE","features":[420]},{"name":"MHDR_INQUEUE","features":[420]},{"name":"MHDR_ISSTRM","features":[420]},{"name":"MHDR_PREPARED","features":[420]},{"name":"MIDICAPS_CACHE","features":[420]},{"name":"MIDICAPS_LRVOLUME","features":[420]},{"name":"MIDICAPS_STREAM","features":[420]},{"name":"MIDICAPS_VOLUME","features":[420]},{"name":"MIDIERR_BADOPENMODE","features":[420]},{"name":"MIDIERR_DONT_CONTINUE","features":[420]},{"name":"MIDIERR_INVALIDSETUP","features":[420]},{"name":"MIDIERR_LASTERROR","features":[420]},{"name":"MIDIERR_NODEVICE","features":[420]},{"name":"MIDIERR_NOMAP","features":[420]},{"name":"MIDIERR_NOTREADY","features":[420]},{"name":"MIDIERR_STILLPLAYING","features":[420]},{"name":"MIDIERR_UNPREPARED","features":[420]},{"name":"MIDIEVENT","features":[420]},{"name":"MIDIHDR","features":[420]},{"name":"MIDIINCAPS2A","features":[420]},{"name":"MIDIINCAPS2W","features":[420]},{"name":"MIDIINCAPSA","features":[420]},{"name":"MIDIINCAPSW","features":[420]},{"name":"MIDIOUTCAPS2A","features":[420]},{"name":"MIDIOUTCAPS2W","features":[420]},{"name":"MIDIOUTCAPSA","features":[420]},{"name":"MIDIOUTCAPSW","features":[420]},{"name":"MIDIPATCHSIZE","features":[420]},{"name":"MIDIPROPTEMPO","features":[420]},{"name":"MIDIPROPTIMEDIV","features":[420]},{"name":"MIDIPROP_GET","features":[420]},{"name":"MIDIPROP_SET","features":[420]},{"name":"MIDIPROP_TEMPO","features":[420]},{"name":"MIDIPROP_TIMEDIV","features":[420]},{"name":"MIDISTRMBUFFVER","features":[420]},{"name":"MIDISTRM_ERROR","features":[420]},{"name":"MIDI_CACHE_ALL","features":[420]},{"name":"MIDI_CACHE_BESTFIT","features":[420]},{"name":"MIDI_CACHE_QUERY","features":[420]},{"name":"MIDI_IO_STATUS","features":[420]},{"name":"MIDI_UNCACHE","features":[420]},{"name":"MIDI_WAVE_OPEN_TYPE","features":[420]},{"name":"MIXERCAPS2A","features":[420]},{"name":"MIXERCAPS2W","features":[420]},{"name":"MIXERCAPSA","features":[420]},{"name":"MIXERCAPSW","features":[420]},{"name":"MIXERCONTROLA","features":[420]},{"name":"MIXERCONTROLDETAILS","features":[305,420]},{"name":"MIXERCONTROLDETAILS_BOOLEAN","features":[420]},{"name":"MIXERCONTROLDETAILS_LISTTEXTA","features":[420]},{"name":"MIXERCONTROLDETAILS_LISTTEXTW","features":[420]},{"name":"MIXERCONTROLDETAILS_SIGNED","features":[420]},{"name":"MIXERCONTROLDETAILS_UNSIGNED","features":[420]},{"name":"MIXERCONTROLW","features":[420]},{"name":"MIXERCONTROL_CONTROLF_DISABLED","features":[420]},{"name":"MIXERCONTROL_CONTROLF_MULTIPLE","features":[420]},{"name":"MIXERCONTROL_CONTROLF_UNIFORM","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_BASS_BOOST","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEAN","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_BOOLEANMETER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_BUTTON","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_CUSTOM","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_DECIBELS","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_EQUALIZER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_FADER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_LOUDNESS","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_MICROTIME","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_MILLITIME","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_MIXER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_MONO","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_MUTE","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_MUX","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_ONOFF","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_PAN","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_PEAKMETER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_PERCENT","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_QSOUNDPAN","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNED","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_SIGNEDMETER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_SINGLESELECT","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_SLIDER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_STEREOENH","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_TREBLE","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNED","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER","features":[420]},{"name":"MIXERCONTROL_CONTROLTYPE_VOLUME","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_CUSTOM","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_FADER","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_LIST","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_MASK","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_METER","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_NUMBER","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_SLIDER","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_SWITCH","features":[420]},{"name":"MIXERCONTROL_CT_CLASS_TIME","features":[420]},{"name":"MIXERCONTROL_CT_SC_LIST_MULTIPLE","features":[420]},{"name":"MIXERCONTROL_CT_SC_LIST_SINGLE","features":[420]},{"name":"MIXERCONTROL_CT_SC_METER_POLLED","features":[420]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BOOLEAN","features":[420]},{"name":"MIXERCONTROL_CT_SC_SWITCH_BUTTON","features":[420]},{"name":"MIXERCONTROL_CT_SC_TIME_MICROSECS","features":[420]},{"name":"MIXERCONTROL_CT_SC_TIME_MILLISECS","features":[420]},{"name":"MIXERCONTROL_CT_SUBCLASS_MASK","features":[420]},{"name":"MIXERCONTROL_CT_UNITS_BOOLEAN","features":[420]},{"name":"MIXERCONTROL_CT_UNITS_CUSTOM","features":[420]},{"name":"MIXERCONTROL_CT_UNITS_DECIBELS","features":[420]},{"name":"MIXERCONTROL_CT_UNITS_MASK","features":[420]},{"name":"MIXERCONTROL_CT_UNITS_PERCENT","features":[420]},{"name":"MIXERCONTROL_CT_UNITS_SIGNED","features":[420]},{"name":"MIXERCONTROL_CT_UNITS_UNSIGNED","features":[420]},{"name":"MIXERLINEA","features":[420]},{"name":"MIXERLINECONTROLSA","features":[420]},{"name":"MIXERLINECONTROLSW","features":[420]},{"name":"MIXERLINEW","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_DIGITAL","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_FIRST","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_HEADPHONES","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LAST","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_LINE","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_MONITOR","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_SPEAKERS","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_TELEPHONE","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_UNDEFINED","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_VOICEIN","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_DST_WAVEIN","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_ANALOG","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_DIGITAL","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_FIRST","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LAST","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_LINE","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED","features":[420]},{"name":"MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT","features":[420]},{"name":"MIXERLINE_LINEF_ACTIVE","features":[420]},{"name":"MIXERLINE_LINEF_DISCONNECTED","features":[420]},{"name":"MIXERLINE_LINEF_SOURCE","features":[420]},{"name":"MIXERLINE_TARGETTYPE_AUX","features":[420]},{"name":"MIXERLINE_TARGETTYPE_MIDIIN","features":[420]},{"name":"MIXERLINE_TARGETTYPE_MIDIOUT","features":[420]},{"name":"MIXERLINE_TARGETTYPE_UNDEFINED","features":[420]},{"name":"MIXERLINE_TARGETTYPE_WAVEIN","features":[420]},{"name":"MIXERLINE_TARGETTYPE_WAVEOUT","features":[420]},{"name":"MIXERR_INVALCONTROL","features":[420]},{"name":"MIXERR_INVALLINE","features":[420]},{"name":"MIXERR_INVALVALUE","features":[420]},{"name":"MIXERR_LASTERROR","features":[420]},{"name":"MIXER_GETCONTROLDETAILSF_LISTTEXT","features":[420]},{"name":"MIXER_GETCONTROLDETAILSF_QUERYMASK","features":[420]},{"name":"MIXER_GETCONTROLDETAILSF_VALUE","features":[420]},{"name":"MIXER_GETLINECONTROLSF_ALL","features":[420]},{"name":"MIXER_GETLINECONTROLSF_ONEBYID","features":[420]},{"name":"MIXER_GETLINECONTROLSF_ONEBYTYPE","features":[420]},{"name":"MIXER_GETLINECONTROLSF_QUERYMASK","features":[420]},{"name":"MIXER_GETLINEINFOF_COMPONENTTYPE","features":[420]},{"name":"MIXER_GETLINEINFOF_DESTINATION","features":[420]},{"name":"MIXER_GETLINEINFOF_LINEID","features":[420]},{"name":"MIXER_GETLINEINFOF_QUERYMASK","features":[420]},{"name":"MIXER_GETLINEINFOF_SOURCE","features":[420]},{"name":"MIXER_GETLINEINFOF_TARGETTYPE","features":[420]},{"name":"MIXER_LONG_NAME_CHARS","features":[420]},{"name":"MIXER_OBJECTF_AUX","features":[420]},{"name":"MIXER_OBJECTF_HANDLE","features":[420]},{"name":"MIXER_OBJECTF_MIDIIN","features":[420]},{"name":"MIXER_OBJECTF_MIDIOUT","features":[420]},{"name":"MIXER_OBJECTF_MIXER","features":[420]},{"name":"MIXER_OBJECTF_WAVEIN","features":[420]},{"name":"MIXER_OBJECTF_WAVEOUT","features":[420]},{"name":"MIXER_SETCONTROLDETAILSF_CUSTOM","features":[420]},{"name":"MIXER_SETCONTROLDETAILSF_QUERYMASK","features":[420]},{"name":"MIXER_SETCONTROLDETAILSF_VALUE","features":[420]},{"name":"MIXER_SHORT_NAME_CHARS","features":[420]},{"name":"MMDeviceEnumerator","features":[420]},{"name":"MM_ACM_FILTERCHOOSE","features":[420]},{"name":"MM_ACM_FORMATCHOOSE","features":[420]},{"name":"MOD_FMSYNTH","features":[420]},{"name":"MOD_MAPPER","features":[420]},{"name":"MOD_MIDIPORT","features":[420]},{"name":"MOD_SQSYNTH","features":[420]},{"name":"MOD_SWSYNTH","features":[420]},{"name":"MOD_SYNTH","features":[420]},{"name":"MOD_WAVETABLE","features":[420]},{"name":"Microphone","features":[420]},{"name":"Muted","features":[420]},{"name":"Out","features":[420]},{"name":"PAudioStateMonitorCallback","features":[420]},{"name":"PCMWAVEFORMAT","features":[420]},{"name":"PKEY_AudioEndpointLogo_IconEffects","features":[420,376]},{"name":"PKEY_AudioEndpointLogo_IconPath","features":[420,376]},{"name":"PKEY_AudioEndpointSettings_LaunchContract","features":[420,376]},{"name":"PKEY_AudioEndpointSettings_MenuText","features":[420,376]},{"name":"PKEY_AudioEndpoint_Association","features":[420,376]},{"name":"PKEY_AudioEndpoint_ControlPanelPageProvider","features":[420,376]},{"name":"PKEY_AudioEndpoint_Default_VolumeInDb","features":[420,376]},{"name":"PKEY_AudioEndpoint_Disable_SysFx","features":[420,376]},{"name":"PKEY_AudioEndpoint_FormFactor","features":[420,376]},{"name":"PKEY_AudioEndpoint_FullRangeSpeakers","features":[420,376]},{"name":"PKEY_AudioEndpoint_GUID","features":[420,376]},{"name":"PKEY_AudioEndpoint_JackSubType","features":[420,376]},{"name":"PKEY_AudioEndpoint_PhysicalSpeakers","features":[420,376]},{"name":"PKEY_AudioEndpoint_Supports_EventDriven_Mode","features":[420,376]},{"name":"PKEY_AudioEngine_DeviceFormat","features":[420,376]},{"name":"PKEY_AudioEngine_OEMFormat","features":[420,376]},{"name":"PROCESS_LOOPBACK_MODE","features":[420]},{"name":"PROCESS_LOOPBACK_MODE_EXCLUDE_TARGET_PROCESS_TREE","features":[420]},{"name":"PROCESS_LOOPBACK_MODE_INCLUDE_TARGET_PROCESS_TREE","features":[420]},{"name":"PartType","features":[420]},{"name":"PlaySoundA","features":[305,420]},{"name":"PlaySoundW","features":[305,420]},{"name":"RemoteNetworkDevice","features":[420]},{"name":"SND_ALIAS","features":[420]},{"name":"SND_ALIAS_ID","features":[420]},{"name":"SND_ALIAS_START","features":[420]},{"name":"SND_APPLICATION","features":[420]},{"name":"SND_ASYNC","features":[420]},{"name":"SND_FILENAME","features":[420]},{"name":"SND_FLAGS","features":[420]},{"name":"SND_LOOP","features":[420]},{"name":"SND_MEMORY","features":[420]},{"name":"SND_NODEFAULT","features":[420]},{"name":"SND_NOSTOP","features":[420]},{"name":"SND_NOWAIT","features":[420]},{"name":"SND_PURGE","features":[420]},{"name":"SND_RESOURCE","features":[420]},{"name":"SND_RING","features":[420]},{"name":"SND_SENTRY","features":[420]},{"name":"SND_SYNC","features":[420]},{"name":"SND_SYSTEM","features":[420]},{"name":"SPATIAL_AUDIO_POSITION","features":[420]},{"name":"SPATIAL_AUDIO_STANDARD_COMMANDS_START","features":[420]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS","features":[420]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_NONE","features":[420]},{"name":"SPATIAL_AUDIO_STREAM_OPTIONS_OFFLOAD","features":[420]},{"name":"SPDIF","features":[420]},{"name":"SPTLAUDCLNT_E_DESTROYED","features":[420]},{"name":"SPTLAUDCLNT_E_ERRORS_IN_OBJECT_CALLS","features":[420]},{"name":"SPTLAUDCLNT_E_INTERNAL","features":[420]},{"name":"SPTLAUDCLNT_E_INVALID_LICENSE","features":[420]},{"name":"SPTLAUDCLNT_E_METADATA_FORMAT_NOT_SUPPORTED","features":[420]},{"name":"SPTLAUDCLNT_E_NO_MORE_OBJECTS","features":[420]},{"name":"SPTLAUDCLNT_E_OBJECT_ALREADY_ACTIVE","features":[420]},{"name":"SPTLAUDCLNT_E_OUT_OF_ORDER","features":[420]},{"name":"SPTLAUDCLNT_E_PROPERTY_NOT_SUPPORTED","features":[420]},{"name":"SPTLAUDCLNT_E_RESOURCES_INVALIDATED","features":[420]},{"name":"SPTLAUDCLNT_E_STATIC_OBJECT_NOT_AVAILABLE","features":[420]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_AVAILABLE","features":[420]},{"name":"SPTLAUDCLNT_E_STREAM_NOT_STOPPED","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_ATTACH_FAILED_INTERNAL_BUFFER","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_ALREADY_ATTACHED","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_NOT_ATTACHED","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_BUFFER_STILL_ATTACHED","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_ALREADY_WRITTEN","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_COMMAND_NOT_FOUND","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_DETACH_FAILED_INTERNAL_BUFFER","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_FORMAT_MISMATCH","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_FRAMECOUNT_OUT_OF_RANGE","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_FRAMEOFFSET_OUT_OF_RANGE","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_INVALID_ARGS","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_ALREADY_OPEN","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_ITEMS_LOCKED_FOR_WRITING","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_COPY_OVERFLOW","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_ITEM_MUST_HAVE_COMMANDS","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_MEMORY_BOUNDS","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_METADATA_FORMAT_NOT_FOUND","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_NO_BUFFER_ATTACHED","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMOFFSET_WRITTEN","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_FOUND","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_OPEN","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_NO_ITEMS_WRITTEN","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_COMMANDS","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_NO_MORE_ITEMS","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_OBJECT_NOT_INITIALIZED","features":[420]},{"name":"SPTLAUD_MD_CLNT_E_VALUE_BUFFER_INCORRECT_SIZE","features":[420]},{"name":"SpatialAudioClientActivationParams","features":[420]},{"name":"SpatialAudioHrtfActivationParams","features":[305,420]},{"name":"SpatialAudioHrtfActivationParams2","features":[305,420]},{"name":"SpatialAudioHrtfDirectivity","features":[420]},{"name":"SpatialAudioHrtfDirectivityCardioid","features":[420]},{"name":"SpatialAudioHrtfDirectivityCone","features":[420]},{"name":"SpatialAudioHrtfDirectivityType","features":[420]},{"name":"SpatialAudioHrtfDirectivityUnion","features":[420]},{"name":"SpatialAudioHrtfDirectivity_Cardioid","features":[420]},{"name":"SpatialAudioHrtfDirectivity_Cone","features":[420]},{"name":"SpatialAudioHrtfDirectivity_OmniDirectional","features":[420]},{"name":"SpatialAudioHrtfDistanceDecay","features":[420]},{"name":"SpatialAudioHrtfDistanceDecayType","features":[420]},{"name":"SpatialAudioHrtfDistanceDecay_CustomDecay","features":[420]},{"name":"SpatialAudioHrtfDistanceDecay_NaturalDecay","features":[420]},{"name":"SpatialAudioHrtfEnvironmentType","features":[420]},{"name":"SpatialAudioHrtfEnvironment_Average","features":[420]},{"name":"SpatialAudioHrtfEnvironment_Large","features":[420]},{"name":"SpatialAudioHrtfEnvironment_Medium","features":[420]},{"name":"SpatialAudioHrtfEnvironment_Outdoors","features":[420]},{"name":"SpatialAudioHrtfEnvironment_Small","features":[420]},{"name":"SpatialAudioMetadataCopyMode","features":[420]},{"name":"SpatialAudioMetadataCopy_Append","features":[420]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithFirst","features":[420]},{"name":"SpatialAudioMetadataCopy_AppendMergeWithLast","features":[420]},{"name":"SpatialAudioMetadataCopy_Overwrite","features":[420]},{"name":"SpatialAudioMetadataItemsInfo","features":[420]},{"name":"SpatialAudioMetadataWriterOverflowMode","features":[420]},{"name":"SpatialAudioMetadataWriterOverflow_Fail","features":[420]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithLast","features":[420]},{"name":"SpatialAudioMetadataWriterOverflow_MergeWithNew","features":[420]},{"name":"SpatialAudioObjectRenderStreamActivationParams","features":[305,420]},{"name":"SpatialAudioObjectRenderStreamActivationParams2","features":[305,420]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams","features":[305,420]},{"name":"SpatialAudioObjectRenderStreamForMetadataActivationParams2","features":[305,420]},{"name":"Speakers","features":[420]},{"name":"Subunit","features":[420]},{"name":"UnknownDigitalPassthrough","features":[420]},{"name":"UnknownFormFactor","features":[420]},{"name":"VIRTUAL_AUDIO_DEVICE_PROCESS_LOOPBACK","features":[420]},{"name":"VOLUMEWAVEFILTER","features":[420]},{"name":"WAVECAPS_LRVOLUME","features":[420]},{"name":"WAVECAPS_PITCH","features":[420]},{"name":"WAVECAPS_PLAYBACKRATE","features":[420]},{"name":"WAVECAPS_SAMPLEACCURATE","features":[420]},{"name":"WAVECAPS_SYNC","features":[420]},{"name":"WAVECAPS_VOLUME","features":[420]},{"name":"WAVEFILTER","features":[420]},{"name":"WAVEFORMAT","features":[420]},{"name":"WAVEFORMATEX","features":[420]},{"name":"WAVEFORMATEXTENSIBLE","features":[420]},{"name":"WAVEHDR","features":[420]},{"name":"WAVEINCAPS2A","features":[420]},{"name":"WAVEINCAPS2W","features":[420]},{"name":"WAVEINCAPSA","features":[420]},{"name":"WAVEINCAPSW","features":[420]},{"name":"WAVEIN_MAPPER_STATUS_DEVICE","features":[420]},{"name":"WAVEIN_MAPPER_STATUS_FORMAT","features":[420]},{"name":"WAVEIN_MAPPER_STATUS_MAPPED","features":[420]},{"name":"WAVEOUTCAPS2A","features":[420]},{"name":"WAVEOUTCAPS2W","features":[420]},{"name":"WAVEOUTCAPSA","features":[420]},{"name":"WAVEOUTCAPSW","features":[420]},{"name":"WAVEOUT_MAPPER_STATUS_DEVICE","features":[420]},{"name":"WAVEOUT_MAPPER_STATUS_FORMAT","features":[420]},{"name":"WAVEOUT_MAPPER_STATUS_MAPPED","features":[420]},{"name":"WAVERR_BADFORMAT","features":[420]},{"name":"WAVERR_LASTERROR","features":[420]},{"name":"WAVERR_STILLPLAYING","features":[420]},{"name":"WAVERR_SYNC","features":[420]},{"name":"WAVERR_UNPREPARED","features":[420]},{"name":"WAVE_ALLOWSYNC","features":[420]},{"name":"WAVE_FORMAT_1M08","features":[420]},{"name":"WAVE_FORMAT_1M16","features":[420]},{"name":"WAVE_FORMAT_1S08","features":[420]},{"name":"WAVE_FORMAT_1S16","features":[420]},{"name":"WAVE_FORMAT_2M08","features":[420]},{"name":"WAVE_FORMAT_2M16","features":[420]},{"name":"WAVE_FORMAT_2S08","features":[420]},{"name":"WAVE_FORMAT_2S16","features":[420]},{"name":"WAVE_FORMAT_44M08","features":[420]},{"name":"WAVE_FORMAT_44M16","features":[420]},{"name":"WAVE_FORMAT_44S08","features":[420]},{"name":"WAVE_FORMAT_44S16","features":[420]},{"name":"WAVE_FORMAT_48M08","features":[420]},{"name":"WAVE_FORMAT_48M16","features":[420]},{"name":"WAVE_FORMAT_48S08","features":[420]},{"name":"WAVE_FORMAT_48S16","features":[420]},{"name":"WAVE_FORMAT_4M08","features":[420]},{"name":"WAVE_FORMAT_4M16","features":[420]},{"name":"WAVE_FORMAT_4S08","features":[420]},{"name":"WAVE_FORMAT_4S16","features":[420]},{"name":"WAVE_FORMAT_96M08","features":[420]},{"name":"WAVE_FORMAT_96M16","features":[420]},{"name":"WAVE_FORMAT_96S08","features":[420]},{"name":"WAVE_FORMAT_96S16","features":[420]},{"name":"WAVE_FORMAT_DIRECT","features":[420]},{"name":"WAVE_FORMAT_DIRECT_QUERY","features":[420]},{"name":"WAVE_FORMAT_PCM","features":[420]},{"name":"WAVE_FORMAT_QUERY","features":[420]},{"name":"WAVE_INVALIDFORMAT","features":[420]},{"name":"WAVE_MAPPED","features":[420]},{"name":"WAVE_MAPPED_DEFAULT_COMMUNICATION_DEVICE","features":[420]},{"name":"WAVE_MAPPER","features":[420]},{"name":"WHDR_BEGINLOOP","features":[420]},{"name":"WHDR_DONE","features":[420]},{"name":"WHDR_ENDLOOP","features":[420]},{"name":"WHDR_INQUEUE","features":[420]},{"name":"WHDR_PREPARED","features":[420]},{"name":"WIDM_MAPPER_STATUS","features":[420]},{"name":"WODM_MAPPER_STATUS","features":[420]},{"name":"_AUDCLNT_BUFFERFLAGS","features":[420]},{"name":"acmDriverAddA","features":[305,420]},{"name":"acmDriverAddW","features":[305,420]},{"name":"acmDriverClose","features":[420]},{"name":"acmDriverDetailsA","features":[420,367]},{"name":"acmDriverDetailsW","features":[420,367]},{"name":"acmDriverEnum","features":[305,420]},{"name":"acmDriverID","features":[420]},{"name":"acmDriverMessage","features":[305,420]},{"name":"acmDriverOpen","features":[420]},{"name":"acmDriverPriority","features":[420]},{"name":"acmDriverRemove","features":[420]},{"name":"acmFilterChooseA","features":[305,420]},{"name":"acmFilterChooseW","features":[305,420]},{"name":"acmFilterDetailsA","features":[420]},{"name":"acmFilterDetailsW","features":[420]},{"name":"acmFilterEnumA","features":[305,420]},{"name":"acmFilterEnumW","features":[305,420]},{"name":"acmFilterTagDetailsA","features":[420]},{"name":"acmFilterTagDetailsW","features":[420]},{"name":"acmFilterTagEnumA","features":[305,420]},{"name":"acmFilterTagEnumW","features":[305,420]},{"name":"acmFormatChooseA","features":[305,420]},{"name":"acmFormatChooseW","features":[305,420]},{"name":"acmFormatDetailsA","features":[420]},{"name":"acmFormatDetailsW","features":[420]},{"name":"acmFormatEnumA","features":[305,420]},{"name":"acmFormatEnumW","features":[305,420]},{"name":"acmFormatSuggest","features":[420]},{"name":"acmFormatTagDetailsA","features":[420]},{"name":"acmFormatTagDetailsW","features":[420]},{"name":"acmFormatTagEnumA","features":[305,420]},{"name":"acmFormatTagEnumW","features":[305,420]},{"name":"acmGetVersion","features":[420]},{"name":"acmMetrics","features":[420]},{"name":"acmStreamClose","features":[420]},{"name":"acmStreamConvert","features":[420]},{"name":"acmStreamMessage","features":[305,420]},{"name":"acmStreamOpen","features":[420]},{"name":"acmStreamPrepareHeader","features":[420]},{"name":"acmStreamReset","features":[420]},{"name":"acmStreamSize","features":[420]},{"name":"acmStreamUnprepareHeader","features":[420]},{"name":"auxGetDevCapsA","features":[420]},{"name":"auxGetDevCapsW","features":[420]},{"name":"auxGetNumDevs","features":[420]},{"name":"auxGetVolume","features":[420]},{"name":"auxOutMessage","features":[420]},{"name":"auxSetVolume","features":[420]},{"name":"eAll","features":[420]},{"name":"eCapture","features":[420]},{"name":"eCommunications","features":[420]},{"name":"eConsole","features":[420]},{"name":"eMultimedia","features":[420]},{"name":"eRender","features":[420]},{"name":"midiConnect","features":[420]},{"name":"midiDisconnect","features":[420]},{"name":"midiInAddBuffer","features":[420]},{"name":"midiInClose","features":[420]},{"name":"midiInGetDevCapsA","features":[420]},{"name":"midiInGetDevCapsW","features":[420]},{"name":"midiInGetErrorTextA","features":[420]},{"name":"midiInGetErrorTextW","features":[420]},{"name":"midiInGetID","features":[420]},{"name":"midiInGetNumDevs","features":[420]},{"name":"midiInMessage","features":[420]},{"name":"midiInOpen","features":[420]},{"name":"midiInPrepareHeader","features":[420]},{"name":"midiInReset","features":[420]},{"name":"midiInStart","features":[420]},{"name":"midiInStop","features":[420]},{"name":"midiInUnprepareHeader","features":[420]},{"name":"midiOutCacheDrumPatches","features":[420]},{"name":"midiOutCachePatches","features":[420]},{"name":"midiOutClose","features":[420]},{"name":"midiOutGetDevCapsA","features":[420]},{"name":"midiOutGetDevCapsW","features":[420]},{"name":"midiOutGetErrorTextA","features":[420]},{"name":"midiOutGetErrorTextW","features":[420]},{"name":"midiOutGetID","features":[420]},{"name":"midiOutGetNumDevs","features":[420]},{"name":"midiOutGetVolume","features":[420]},{"name":"midiOutLongMsg","features":[420]},{"name":"midiOutMessage","features":[420]},{"name":"midiOutOpen","features":[420]},{"name":"midiOutPrepareHeader","features":[420]},{"name":"midiOutReset","features":[420]},{"name":"midiOutSetVolume","features":[420]},{"name":"midiOutShortMsg","features":[420]},{"name":"midiOutUnprepareHeader","features":[420]},{"name":"midiStreamClose","features":[420]},{"name":"midiStreamOpen","features":[420]},{"name":"midiStreamOut","features":[420]},{"name":"midiStreamPause","features":[420]},{"name":"midiStreamPosition","features":[420]},{"name":"midiStreamProperty","features":[420]},{"name":"midiStreamRestart","features":[420]},{"name":"midiStreamStop","features":[420]},{"name":"mixerClose","features":[420]},{"name":"mixerGetControlDetailsA","features":[305,420]},{"name":"mixerGetControlDetailsW","features":[305,420]},{"name":"mixerGetDevCapsA","features":[420]},{"name":"mixerGetDevCapsW","features":[420]},{"name":"mixerGetID","features":[420]},{"name":"mixerGetLineControlsA","features":[420]},{"name":"mixerGetLineControlsW","features":[420]},{"name":"mixerGetLineInfoA","features":[420]},{"name":"mixerGetLineInfoW","features":[420]},{"name":"mixerGetNumDevs","features":[420]},{"name":"mixerMessage","features":[420]},{"name":"mixerOpen","features":[420]},{"name":"mixerSetControlDetails","features":[305,420]},{"name":"sndPlaySoundA","features":[305,420]},{"name":"sndPlaySoundW","features":[305,420]},{"name":"tACMFORMATDETAILSW","features":[420]},{"name":"waveInAddBuffer","features":[420]},{"name":"waveInClose","features":[420]},{"name":"waveInGetDevCapsA","features":[420]},{"name":"waveInGetDevCapsW","features":[420]},{"name":"waveInGetErrorTextA","features":[420]},{"name":"waveInGetErrorTextW","features":[420]},{"name":"waveInGetID","features":[420]},{"name":"waveInGetNumDevs","features":[420]},{"name":"waveInGetPosition","features":[420]},{"name":"waveInMessage","features":[420]},{"name":"waveInOpen","features":[420]},{"name":"waveInPrepareHeader","features":[420]},{"name":"waveInReset","features":[420]},{"name":"waveInStart","features":[420]},{"name":"waveInStop","features":[420]},{"name":"waveInUnprepareHeader","features":[420]},{"name":"waveOutBreakLoop","features":[420]},{"name":"waveOutClose","features":[420]},{"name":"waveOutGetDevCapsA","features":[420]},{"name":"waveOutGetDevCapsW","features":[420]},{"name":"waveOutGetErrorTextA","features":[420]},{"name":"waveOutGetErrorTextW","features":[420]},{"name":"waveOutGetID","features":[420]},{"name":"waveOutGetNumDevs","features":[420]},{"name":"waveOutGetPitch","features":[420]},{"name":"waveOutGetPlaybackRate","features":[420]},{"name":"waveOutGetPosition","features":[420]},{"name":"waveOutGetVolume","features":[420]},{"name":"waveOutMessage","features":[420]},{"name":"waveOutOpen","features":[420]},{"name":"waveOutPause","features":[420]},{"name":"waveOutPrepareHeader","features":[420]},{"name":"waveOutReset","features":[420]},{"name":"waveOutRestart","features":[420]},{"name":"waveOutSetPitch","features":[420]},{"name":"waveOutSetPlaybackRate","features":[420]},{"name":"waveOutSetVolume","features":[420]},{"name":"waveOutUnprepareHeader","features":[420]},{"name":"waveOutWrite","features":[420]}],"426":[{"name":"APOERR_ALREADY_INITIALIZED","features":[421]},{"name":"APOERR_ALREADY_UNLOCKED","features":[421]},{"name":"APOERR_APO_LOCKED","features":[421]},{"name":"APOERR_BUFFERS_OVERLAP","features":[421]},{"name":"APOERR_FORMAT_NOT_SUPPORTED","features":[421]},{"name":"APOERR_INVALID_APO_CLSID","features":[421]},{"name":"APOERR_INVALID_COEFFCOUNT","features":[421]},{"name":"APOERR_INVALID_COEFFICIENT","features":[421]},{"name":"APOERR_INVALID_CONNECTION_FORMAT","features":[421]},{"name":"APOERR_INVALID_CURVE_PARAM","features":[421]},{"name":"APOERR_INVALID_INPUTID","features":[421]},{"name":"APOERR_INVALID_OUTPUT_MAXFRAMECOUNT","features":[421]},{"name":"APOERR_NOT_INITIALIZED","features":[421]},{"name":"APOERR_NUM_CONNECTIONS_INVALID","features":[421]},{"name":"APOInitBaseStruct","features":[421]},{"name":"APOInitSystemEffects","features":[421,376]},{"name":"APOInitSystemEffects2","features":[305,421,376]},{"name":"APOInitSystemEffects3","features":[305,421,356,376]},{"name":"APO_BUFFER_FLAGS","features":[421]},{"name":"APO_CONNECTION_BUFFER_TYPE","features":[421]},{"name":"APO_CONNECTION_BUFFER_TYPE_ALLOCATED","features":[421]},{"name":"APO_CONNECTION_BUFFER_TYPE_DEPENDANT","features":[421]},{"name":"APO_CONNECTION_BUFFER_TYPE_EXTERNAL","features":[421]},{"name":"APO_CONNECTION_DESCRIPTOR","features":[421]},{"name":"APO_CONNECTION_PROPERTY","features":[421]},{"name":"APO_CONNECTION_PROPERTY_V2","features":[421]},{"name":"APO_FLAG","features":[421]},{"name":"APO_FLAG_BITSPERSAMPLE_MUST_MATCH","features":[421]},{"name":"APO_FLAG_DEFAULT","features":[421]},{"name":"APO_FLAG_FRAMESPERSECOND_MUST_MATCH","features":[421]},{"name":"APO_FLAG_INPLACE","features":[421]},{"name":"APO_FLAG_MIXER","features":[421]},{"name":"APO_FLAG_NONE","features":[421]},{"name":"APO_FLAG_SAMPLESPERFRAME_MUST_MATCH","features":[421]},{"name":"APO_LOG_LEVEL","features":[421]},{"name":"APO_LOG_LEVEL_ALWAYS","features":[421]},{"name":"APO_LOG_LEVEL_CRITICAL","features":[421]},{"name":"APO_LOG_LEVEL_ERROR","features":[421]},{"name":"APO_LOG_LEVEL_INFO","features":[421]},{"name":"APO_LOG_LEVEL_VERBOSE","features":[421]},{"name":"APO_LOG_LEVEL_WARNING","features":[421]},{"name":"APO_NOTIFICATION","features":[305,421,376]},{"name":"APO_NOTIFICATION_DESCRIPTOR","features":[421]},{"name":"APO_NOTIFICATION_TYPE","features":[421]},{"name":"APO_NOTIFICATION_TYPE_DEVICE_ORIENTATION","features":[421]},{"name":"APO_NOTIFICATION_TYPE_ENDPOINT_PROPERTY_CHANGE","features":[421]},{"name":"APO_NOTIFICATION_TYPE_ENDPOINT_VOLUME","features":[421]},{"name":"APO_NOTIFICATION_TYPE_ENDPOINT_VOLUME2","features":[421]},{"name":"APO_NOTIFICATION_TYPE_MICROPHONE_BOOST","features":[421]},{"name":"APO_NOTIFICATION_TYPE_NONE","features":[421]},{"name":"APO_NOTIFICATION_TYPE_SYSTEM_EFFECTS_PROPERTY_CHANGE","features":[421]},{"name":"APO_REG_PROPERTIES","features":[421]},{"name":"AUDIOMEDIATYPE_EQUAL_FORMAT_DATA","features":[421]},{"name":"AUDIOMEDIATYPE_EQUAL_FORMAT_TYPES","features":[421]},{"name":"AUDIOMEDIATYPE_EQUAL_FORMAT_USER_DATA","features":[421]},{"name":"AUDIO_ENDPOINT_PROPERTY_CHANGE_APO_NOTIFICATION_DESCRIPTOR","features":[421]},{"name":"AUDIO_ENDPOINT_PROPERTY_CHANGE_NOTIFICATION","features":[421,376]},{"name":"AUDIO_ENDPOINT_VOLUME_APO_NOTIFICATION_DESCRIPTOR","features":[421]},{"name":"AUDIO_ENDPOINT_VOLUME_CHANGE_NOTIFICATION","features":[305,421]},{"name":"AUDIO_ENDPOINT_VOLUME_CHANGE_NOTIFICATION2","features":[305,421]},{"name":"AUDIO_FLOW_PULL","features":[421]},{"name":"AUDIO_FLOW_PUSH","features":[421]},{"name":"AUDIO_FLOW_TYPE","features":[421]},{"name":"AUDIO_MAX_CHANNELS","features":[421]},{"name":"AUDIO_MAX_FRAMERATE","features":[421]},{"name":"AUDIO_MICROPHONE_BOOST_APO_NOTIFICATION_DESCRIPTOR","features":[421]},{"name":"AUDIO_MICROPHONE_BOOST_NOTIFICATION","features":[305,421]},{"name":"AUDIO_MIN_CHANNELS","features":[421]},{"name":"AUDIO_MIN_FRAMERATE","features":[421]},{"name":"AUDIO_SYSTEMEFFECT","features":[305,421]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTY_CHANGE_APO_NOTIFICATION_DESCRIPTOR","features":[421]},{"name":"AUDIO_SYSTEMEFFECTS_PROPERTY_CHANGE_NOTIFICATION","features":[421,376]},{"name":"AUDIO_SYSTEMEFFECT_STATE","features":[421]},{"name":"AUDIO_SYSTEMEFFECT_STATE_OFF","features":[421]},{"name":"AUDIO_SYSTEMEFFECT_STATE_ON","features":[421]},{"name":"AUDIO_VOLUME_NOTIFICATION_DATA2","features":[305,421]},{"name":"AudioFXExtensionParams","features":[305,421,376]},{"name":"BUFFER_INVALID","features":[421]},{"name":"BUFFER_SILENT","features":[421]},{"name":"BUFFER_VALID","features":[421]},{"name":"DEVICE_NOT_ROTATED","features":[421]},{"name":"DEVICE_ORIENTATION_TYPE","features":[421]},{"name":"DEVICE_ROTATED_180_DEGREES_CLOCKWISE","features":[421]},{"name":"DEVICE_ROTATED_270_DEGREES_CLOCKWISE","features":[421]},{"name":"DEVICE_ROTATED_90_DEGREES_CLOCKWISE","features":[421]},{"name":"EAudioConstriction","features":[421]},{"name":"FNAPONOTIFICATIONCALLBACK","features":[421]},{"name":"IApoAcousticEchoCancellation","features":[421]},{"name":"IApoAuxiliaryInputConfiguration","features":[421]},{"name":"IApoAuxiliaryInputRT","features":[421]},{"name":"IAudioDeviceModulesClient","features":[421]},{"name":"IAudioMediaType","features":[421]},{"name":"IAudioProcessingObject","features":[421]},{"name":"IAudioProcessingObjectConfiguration","features":[421]},{"name":"IAudioProcessingObjectLoggingService","features":[421]},{"name":"IAudioProcessingObjectNotifications","features":[421]},{"name":"IAudioProcessingObjectNotifications2","features":[421]},{"name":"IAudioProcessingObjectRT","features":[421]},{"name":"IAudioProcessingObjectRTQueueService","features":[421]},{"name":"IAudioProcessingObjectVBR","features":[421]},{"name":"IAudioSystemEffects","features":[421]},{"name":"IAudioSystemEffects2","features":[421]},{"name":"IAudioSystemEffects3","features":[421]},{"name":"IAudioSystemEffectsCustomFormats","features":[421]},{"name":"PKEY_APO_SWFallback_ProcessingModes","features":[421,376]},{"name":"PKEY_CompositeFX_EndpointEffectClsid","features":[421,376]},{"name":"PKEY_CompositeFX_KeywordDetector_EndpointEffectClsid","features":[421,376]},{"name":"PKEY_CompositeFX_KeywordDetector_ModeEffectClsid","features":[421,376]},{"name":"PKEY_CompositeFX_KeywordDetector_StreamEffectClsid","features":[421,376]},{"name":"PKEY_CompositeFX_ModeEffectClsid","features":[421,376]},{"name":"PKEY_CompositeFX_Offload_ModeEffectClsid","features":[421,376]},{"name":"PKEY_CompositeFX_Offload_StreamEffectClsid","features":[421,376]},{"name":"PKEY_CompositeFX_StreamEffectClsid","features":[421,376]},{"name":"PKEY_EFX_KeywordDetector_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"PKEY_EFX_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"PKEY_FX_ApplyToBluetooth","features":[421,376]},{"name":"PKEY_FX_ApplyToCapture","features":[421,376]},{"name":"PKEY_FX_ApplyToRender","features":[421,376]},{"name":"PKEY_FX_ApplyToUsb","features":[421,376]},{"name":"PKEY_FX_Association","features":[421,376]},{"name":"PKEY_FX_Author","features":[421,376]},{"name":"PKEY_FX_EffectPackSchema_Version","features":[421,376]},{"name":"PKEY_FX_EffectPack_Schema_V1","features":[421]},{"name":"PKEY_FX_EndpointEffectClsid","features":[421,376]},{"name":"PKEY_FX_Enumerator","features":[421,376]},{"name":"PKEY_FX_FriendlyName","features":[421,376]},{"name":"PKEY_FX_KeywordDetector_EndpointEffectClsid","features":[421,376]},{"name":"PKEY_FX_KeywordDetector_ModeEffectClsid","features":[421,376]},{"name":"PKEY_FX_KeywordDetector_StreamEffectClsid","features":[421,376]},{"name":"PKEY_FX_ModeEffectClsid","features":[421,376]},{"name":"PKEY_FX_ObjectId","features":[421,376]},{"name":"PKEY_FX_Offload_ModeEffectClsid","features":[421,376]},{"name":"PKEY_FX_Offload_StreamEffectClsid","features":[421,376]},{"name":"PKEY_FX_PostMixEffectClsid","features":[421,376]},{"name":"PKEY_FX_PreMixEffectClsid","features":[421,376]},{"name":"PKEY_FX_State","features":[421,376]},{"name":"PKEY_FX_StreamEffectClsid","features":[421,376]},{"name":"PKEY_FX_SupportAppLauncher","features":[421,376]},{"name":"PKEY_FX_SupportedFormats","features":[421,376]},{"name":"PKEY_FX_UserInterfaceClsid","features":[421,376]},{"name":"PKEY_FX_VersionMajor","features":[421,376]},{"name":"PKEY_FX_VersionMinor","features":[421,376]},{"name":"PKEY_MFX_KeywordDetector_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"PKEY_MFX_Offload_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"PKEY_MFX_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"PKEY_SFX_KeywordDetector_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"PKEY_SFX_Offload_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"PKEY_SFX_ProcessingModes_Supported_For_Streaming","features":[421,376]},{"name":"SID_AudioProcessingObjectLoggingService","features":[421]},{"name":"SID_AudioProcessingObjectRTQueue","features":[421]},{"name":"UNCOMPRESSEDAUDIOFORMAT","features":[421]},{"name":"eAudioConstriction14_14","features":[421]},{"name":"eAudioConstriction44_16","features":[421]},{"name":"eAudioConstriction48_16","features":[421]},{"name":"eAudioConstrictionMute","features":[421]},{"name":"eAudioConstrictionOff","features":[421]}],"427":[{"name":"CLSID_DirectMusic","features":[422]},{"name":"CLSID_DirectMusicCollection","features":[422]},{"name":"CLSID_DirectMusicSynth","features":[422]},{"name":"CLSID_DirectMusicSynthSink","features":[422]},{"name":"CLSID_DirectSoundPrivate","features":[422]},{"name":"CONNECTION","features":[422]},{"name":"CONNECTIONLIST","features":[422]},{"name":"CONN_DST_ATTENUATION","features":[422]},{"name":"CONN_DST_CENTER","features":[422]},{"name":"CONN_DST_CHORUS","features":[422]},{"name":"CONN_DST_EG1_ATTACKTIME","features":[422]},{"name":"CONN_DST_EG1_DECAYTIME","features":[422]},{"name":"CONN_DST_EG1_DELAYTIME","features":[422]},{"name":"CONN_DST_EG1_HOLDTIME","features":[422]},{"name":"CONN_DST_EG1_RELEASETIME","features":[422]},{"name":"CONN_DST_EG1_SHUTDOWNTIME","features":[422]},{"name":"CONN_DST_EG1_SUSTAINLEVEL","features":[422]},{"name":"CONN_DST_EG2_ATTACKTIME","features":[422]},{"name":"CONN_DST_EG2_DECAYTIME","features":[422]},{"name":"CONN_DST_EG2_DELAYTIME","features":[422]},{"name":"CONN_DST_EG2_HOLDTIME","features":[422]},{"name":"CONN_DST_EG2_RELEASETIME","features":[422]},{"name":"CONN_DST_EG2_SUSTAINLEVEL","features":[422]},{"name":"CONN_DST_FILTER_CUTOFF","features":[422]},{"name":"CONN_DST_FILTER_Q","features":[422]},{"name":"CONN_DST_GAIN","features":[422]},{"name":"CONN_DST_KEYNUMBER","features":[422]},{"name":"CONN_DST_LEFT","features":[422]},{"name":"CONN_DST_LEFTREAR","features":[422]},{"name":"CONN_DST_LFE_CHANNEL","features":[422]},{"name":"CONN_DST_LFO_FREQUENCY","features":[422]},{"name":"CONN_DST_LFO_STARTDELAY","features":[422]},{"name":"CONN_DST_NONE","features":[422]},{"name":"CONN_DST_PAN","features":[422]},{"name":"CONN_DST_PITCH","features":[422]},{"name":"CONN_DST_REVERB","features":[422]},{"name":"CONN_DST_RIGHT","features":[422]},{"name":"CONN_DST_RIGHTREAR","features":[422]},{"name":"CONN_DST_VIB_FREQUENCY","features":[422]},{"name":"CONN_DST_VIB_STARTDELAY","features":[422]},{"name":"CONN_SRC_CC1","features":[422]},{"name":"CONN_SRC_CC10","features":[422]},{"name":"CONN_SRC_CC11","features":[422]},{"name":"CONN_SRC_CC7","features":[422]},{"name":"CONN_SRC_CC91","features":[422]},{"name":"CONN_SRC_CC93","features":[422]},{"name":"CONN_SRC_CHANNELPRESSURE","features":[422]},{"name":"CONN_SRC_EG1","features":[422]},{"name":"CONN_SRC_EG2","features":[422]},{"name":"CONN_SRC_KEYNUMBER","features":[422]},{"name":"CONN_SRC_KEYONVELOCITY","features":[422]},{"name":"CONN_SRC_LFO","features":[422]},{"name":"CONN_SRC_MONOPRESSURE","features":[422]},{"name":"CONN_SRC_NONE","features":[422]},{"name":"CONN_SRC_PITCHWHEEL","features":[422]},{"name":"CONN_SRC_POLYPRESSURE","features":[422]},{"name":"CONN_SRC_VIBRATO","features":[422]},{"name":"CONN_TRN_CONCAVE","features":[422]},{"name":"CONN_TRN_CONVEX","features":[422]},{"name":"CONN_TRN_NONE","features":[422]},{"name":"CONN_TRN_SWITCH","features":[422]},{"name":"DAUD_CHAN10_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN11_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN12_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN13_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN14_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN15_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN16_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN1_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN2_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN3_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN4_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN5_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN6_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN7_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN8_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CHAN9_VOICE_PRIORITY_OFFSET","features":[422]},{"name":"DAUD_CRITICAL_VOICE_PRIORITY","features":[422]},{"name":"DAUD_HIGH_VOICE_PRIORITY","features":[422]},{"name":"DAUD_LOW_VOICE_PRIORITY","features":[422]},{"name":"DAUD_PERSIST_VOICE_PRIORITY","features":[422]},{"name":"DAUD_STANDARD_VOICE_PRIORITY","features":[422]},{"name":"DIRECTSOUNDDEVICE_DATAFLOW","features":[422]},{"name":"DIRECTSOUNDDEVICE_DATAFLOW_CAPTURE","features":[422]},{"name":"DIRECTSOUNDDEVICE_DATAFLOW_RENDER","features":[422]},{"name":"DIRECTSOUNDDEVICE_TYPE","features":[422]},{"name":"DIRECTSOUNDDEVICE_TYPE_EMULATED","features":[422]},{"name":"DIRECTSOUNDDEVICE_TYPE_VXD","features":[422]},{"name":"DIRECTSOUNDDEVICE_TYPE_WDM","features":[422]},{"name":"DLSHEADER","features":[422]},{"name":"DLSID","features":[422]},{"name":"DLSID_GMInHardware","features":[422]},{"name":"DLSID_GSInHardware","features":[422]},{"name":"DLSID_ManufacturersID","features":[422]},{"name":"DLSID_ProductID","features":[422]},{"name":"DLSID_SampleMemorySize","features":[422]},{"name":"DLSID_SamplePlaybackRate","features":[422]},{"name":"DLSID_SupportsDLS1","features":[422]},{"name":"DLSID_SupportsDLS2","features":[422]},{"name":"DLSID_XGInHardware","features":[422]},{"name":"DLSVERSION","features":[422]},{"name":"DLS_CDL_ADD","features":[422]},{"name":"DLS_CDL_AND","features":[422]},{"name":"DLS_CDL_CONST","features":[422]},{"name":"DLS_CDL_DIVIDE","features":[422]},{"name":"DLS_CDL_EQ","features":[422]},{"name":"DLS_CDL_GE","features":[422]},{"name":"DLS_CDL_GT","features":[422]},{"name":"DLS_CDL_LE","features":[422]},{"name":"DLS_CDL_LOGICAL_AND","features":[422]},{"name":"DLS_CDL_LOGICAL_OR","features":[422]},{"name":"DLS_CDL_LT","features":[422]},{"name":"DLS_CDL_MULTIPLY","features":[422]},{"name":"DLS_CDL_NOT","features":[422]},{"name":"DLS_CDL_OR","features":[422]},{"name":"DLS_CDL_QUERY","features":[422]},{"name":"DLS_CDL_QUERYSUPPORTED","features":[422]},{"name":"DLS_CDL_SUBTRACT","features":[422]},{"name":"DLS_CDL_XOR","features":[422]},{"name":"DMUS_ARTICPARAMS","features":[422]},{"name":"DMUS_ARTICULATION","features":[422]},{"name":"DMUS_ARTICULATION2","features":[422]},{"name":"DMUS_BUFFERDESC","features":[422]},{"name":"DMUS_CLOCKF_GLOBAL","features":[422]},{"name":"DMUS_CLOCKINFO7","features":[422]},{"name":"DMUS_CLOCKINFO8","features":[422]},{"name":"DMUS_CLOCKTYPE","features":[422]},{"name":"DMUS_CLOCK_SYSTEM","features":[422]},{"name":"DMUS_CLOCK_WAVE","features":[422]},{"name":"DMUS_COPYRIGHT","features":[422]},{"name":"DMUS_DEFAULT_SIZE_OFFSETTABLE","features":[422]},{"name":"DMUS_DOWNLOADINFO","features":[422]},{"name":"DMUS_DOWNLOADINFO_INSTRUMENT","features":[422]},{"name":"DMUS_DOWNLOADINFO_INSTRUMENT2","features":[422]},{"name":"DMUS_DOWNLOADINFO_ONESHOTWAVE","features":[422]},{"name":"DMUS_DOWNLOADINFO_STREAMINGWAVE","features":[422]},{"name":"DMUS_DOWNLOADINFO_WAVE","features":[422]},{"name":"DMUS_DOWNLOADINFO_WAVEARTICULATION","features":[422]},{"name":"DMUS_EFFECT_CHORUS","features":[422]},{"name":"DMUS_EFFECT_DELAY","features":[422]},{"name":"DMUS_EFFECT_NONE","features":[422]},{"name":"DMUS_EFFECT_REVERB","features":[422]},{"name":"DMUS_EVENTHEADER","features":[422]},{"name":"DMUS_EVENT_STRUCTURED","features":[422]},{"name":"DMUS_EXTENSIONCHUNK","features":[422]},{"name":"DMUS_INSTRUMENT","features":[422]},{"name":"DMUS_INSTRUMENT_GM_INSTRUMENT","features":[422]},{"name":"DMUS_LFOPARAMS","features":[422]},{"name":"DMUS_MAX_DESCRIPTION","features":[422]},{"name":"DMUS_MAX_DRIVER","features":[422]},{"name":"DMUS_MIN_DATA_SIZE","features":[422]},{"name":"DMUS_MSCPARAMS","features":[422]},{"name":"DMUS_NOTERANGE","features":[422]},{"name":"DMUS_OFFSETTABLE","features":[422]},{"name":"DMUS_PC_AUDIOPATH","features":[422]},{"name":"DMUS_PC_DIRECTSOUND","features":[422]},{"name":"DMUS_PC_DLS","features":[422]},{"name":"DMUS_PC_DLS2","features":[422]},{"name":"DMUS_PC_EXTERNAL","features":[422]},{"name":"DMUS_PC_GMINHARDWARE","features":[422]},{"name":"DMUS_PC_GSINHARDWARE","features":[422]},{"name":"DMUS_PC_INPUTCLASS","features":[422]},{"name":"DMUS_PC_MEMORYSIZEFIXED","features":[422]},{"name":"DMUS_PC_OUTPUTCLASS","features":[422]},{"name":"DMUS_PC_SHAREABLE","features":[422]},{"name":"DMUS_PC_SOFTWARESYNTH","features":[422]},{"name":"DMUS_PC_SYSTEMMEMORY","features":[422]},{"name":"DMUS_PC_WAVE","features":[422]},{"name":"DMUS_PC_XGINHARDWARE","features":[422]},{"name":"DMUS_PEGPARAMS","features":[422]},{"name":"DMUS_PORTCAPS","features":[422]},{"name":"DMUS_PORTPARAMS7","features":[305,422]},{"name":"DMUS_PORTPARAMS8","features":[305,422]},{"name":"DMUS_PORTPARAMS_AUDIOCHANNELS","features":[422]},{"name":"DMUS_PORTPARAMS_CHANNELGROUPS","features":[422]},{"name":"DMUS_PORTPARAMS_EFFECTS","features":[422]},{"name":"DMUS_PORTPARAMS_FEATURES","features":[422]},{"name":"DMUS_PORTPARAMS_SAMPLERATE","features":[422]},{"name":"DMUS_PORTPARAMS_SHARE","features":[422]},{"name":"DMUS_PORTPARAMS_VOICES","features":[422]},{"name":"DMUS_PORT_FEATURE_AUDIOPATH","features":[422]},{"name":"DMUS_PORT_FEATURE_STREAMING","features":[422]},{"name":"DMUS_PORT_KERNEL_MODE","features":[422]},{"name":"DMUS_PORT_USER_MODE_SYNTH","features":[422]},{"name":"DMUS_PORT_WINMM_DRIVER","features":[422]},{"name":"DMUS_REGION","features":[422]},{"name":"DMUS_SYNTHSTATS","features":[422]},{"name":"DMUS_SYNTHSTATS8","features":[422]},{"name":"DMUS_SYNTHSTATS_CPU_PER_VOICE","features":[422]},{"name":"DMUS_SYNTHSTATS_FREE_MEMORY","features":[422]},{"name":"DMUS_SYNTHSTATS_LOST_NOTES","features":[422]},{"name":"DMUS_SYNTHSTATS_PEAK_VOLUME","features":[422]},{"name":"DMUS_SYNTHSTATS_SYSTEMMEMORY","features":[422]},{"name":"DMUS_SYNTHSTATS_TOTAL_CPU","features":[422]},{"name":"DMUS_SYNTHSTATS_VOICES","features":[422]},{"name":"DMUS_VEGPARAMS","features":[422]},{"name":"DMUS_VOICE_STATE","features":[305,422]},{"name":"DMUS_VOLUME_MAX","features":[422]},{"name":"DMUS_VOLUME_MIN","features":[422]},{"name":"DMUS_WAVE","features":[422]},{"name":"DMUS_WAVEARTDL","features":[422]},{"name":"DMUS_WAVEDATA","features":[422]},{"name":"DMUS_WAVEDL","features":[422]},{"name":"DMUS_WAVES_REVERB_PARAMS","features":[422]},{"name":"DSBUSID_BACK_CENTER","features":[422]},{"name":"DSBUSID_BACK_LEFT","features":[422]},{"name":"DSBUSID_BACK_RIGHT","features":[422]},{"name":"DSBUSID_CHORUS_SEND","features":[422]},{"name":"DSBUSID_DYNAMIC_0","features":[422]},{"name":"DSBUSID_FIRST_SPKR_LOC","features":[422]},{"name":"DSBUSID_FRONT_CENTER","features":[422]},{"name":"DSBUSID_FRONT_LEFT","features":[422]},{"name":"DSBUSID_FRONT_LEFT_OF_CENTER","features":[422]},{"name":"DSBUSID_FRONT_RIGHT","features":[422]},{"name":"DSBUSID_FRONT_RIGHT_OF_CENTER","features":[422]},{"name":"DSBUSID_LAST_SPKR_LOC","features":[422]},{"name":"DSBUSID_LEFT","features":[422]},{"name":"DSBUSID_LOW_FREQUENCY","features":[422]},{"name":"DSBUSID_NULL","features":[422]},{"name":"DSBUSID_REVERB_SEND","features":[422]},{"name":"DSBUSID_RIGHT","features":[422]},{"name":"DSBUSID_SIDE_LEFT","features":[422]},{"name":"DSBUSID_SIDE_RIGHT","features":[422]},{"name":"DSBUSID_TOP_BACK_CENTER","features":[422]},{"name":"DSBUSID_TOP_BACK_LEFT","features":[422]},{"name":"DSBUSID_TOP_BACK_RIGHT","features":[422]},{"name":"DSBUSID_TOP_CENTER","features":[422]},{"name":"DSBUSID_TOP_FRONT_CENTER","features":[422]},{"name":"DSBUSID_TOP_FRONT_LEFT","features":[422]},{"name":"DSBUSID_TOP_FRONT_RIGHT","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_1_DATA","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_A_DATA","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_DESCRIPTION_W_DATA","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_1_DATA","features":[305,422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_A_DATA","features":[305,422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_ENUMERATE_W_DATA","features":[305,422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_A_DATA","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W","features":[422]},{"name":"DSPROPERTY_DIRECTSOUNDDEVICE_WAVEDEVICEMAPPING_W_DATA","features":[422]},{"name":"DSPROPSETID_DirectSoundDevice","features":[422]},{"name":"DVAudInfo","features":[422]},{"name":"DV_AUDIOMODE","features":[422]},{"name":"DV_AUDIOQU","features":[422]},{"name":"DV_AUDIOSMP","features":[422]},{"name":"DV_CAP_AUD12Bits","features":[422]},{"name":"DV_CAP_AUD16Bits","features":[422]},{"name":"DV_DVSD_NTSC_FRAMESIZE","features":[422]},{"name":"DV_DVSD_PAL_FRAMESIZE","features":[422]},{"name":"DV_HD","features":[422]},{"name":"DV_NTSC","features":[422]},{"name":"DV_NTSCPAL","features":[422]},{"name":"DV_PAL","features":[422]},{"name":"DV_SD","features":[422]},{"name":"DV_SL","features":[422]},{"name":"DV_SMCHN","features":[422]},{"name":"DV_STYPE","features":[422]},{"name":"F_INSTRUMENT_DRUMS","features":[422]},{"name":"F_RGN_OPTION_SELFNONEXCLUSIVE","features":[422]},{"name":"F_WAVELINK_MULTICHANNEL","features":[422]},{"name":"F_WAVELINK_PHASE_MASTER","features":[422]},{"name":"F_WSMP_NO_COMPRESSION","features":[422]},{"name":"F_WSMP_NO_TRUNCATION","features":[422]},{"name":"GUID_DMUS_PROP_DLS1","features":[422]},{"name":"GUID_DMUS_PROP_DLS2","features":[422]},{"name":"GUID_DMUS_PROP_Effects","features":[422]},{"name":"GUID_DMUS_PROP_GM_Hardware","features":[422]},{"name":"GUID_DMUS_PROP_GS_Capable","features":[422]},{"name":"GUID_DMUS_PROP_GS_Hardware","features":[422]},{"name":"GUID_DMUS_PROP_INSTRUMENT2","features":[422]},{"name":"GUID_DMUS_PROP_LegacyCaps","features":[422]},{"name":"GUID_DMUS_PROP_MemorySize","features":[422]},{"name":"GUID_DMUS_PROP_SampleMemorySize","features":[422]},{"name":"GUID_DMUS_PROP_SamplePlaybackRate","features":[422]},{"name":"GUID_DMUS_PROP_SetSynthSink","features":[422]},{"name":"GUID_DMUS_PROP_SinkUsesDSound","features":[422]},{"name":"GUID_DMUS_PROP_SynthSink_DSOUND","features":[422]},{"name":"GUID_DMUS_PROP_SynthSink_WAVE","features":[422]},{"name":"GUID_DMUS_PROP_Volume","features":[422]},{"name":"GUID_DMUS_PROP_WavesReverb","features":[422]},{"name":"GUID_DMUS_PROP_WriteLatency","features":[422]},{"name":"GUID_DMUS_PROP_WritePeriod","features":[422]},{"name":"GUID_DMUS_PROP_XG_Capable","features":[422]},{"name":"GUID_DMUS_PROP_XG_Hardware","features":[422]},{"name":"IDirectMusic","features":[422]},{"name":"IDirectMusic8","features":[422]},{"name":"IDirectMusicBuffer","features":[422]},{"name":"IDirectMusicCollection","features":[422]},{"name":"IDirectMusicDownload","features":[422]},{"name":"IDirectMusicDownloadedInstrument","features":[422]},{"name":"IDirectMusicInstrument","features":[422]},{"name":"IDirectMusicPort","features":[422]},{"name":"IDirectMusicPortDownload","features":[422]},{"name":"IDirectMusicSynth","features":[422]},{"name":"IDirectMusicSynth8","features":[422]},{"name":"IDirectMusicSynthSink","features":[422]},{"name":"IDirectMusicThru","features":[422]},{"name":"INSTHEADER","features":[422]},{"name":"LPFNDIRECTSOUNDDEVICEENUMERATECALLBACK1","features":[305,422]},{"name":"LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKA","features":[305,422]},{"name":"LPFNDIRECTSOUNDDEVICEENUMERATECALLBACKW","features":[305,422]},{"name":"MDEVICECAPSEX","features":[422]},{"name":"MIDILOCALE","features":[422]},{"name":"MIDIOPENDESC","features":[422,419]},{"name":"POOLCUE","features":[422]},{"name":"POOLTABLE","features":[422]},{"name":"POOL_CUE_NULL","features":[422]},{"name":"REFRESH_F_LASTBUFFER","features":[422]},{"name":"REGSTR_PATH_SOFTWARESYNTHS","features":[422]},{"name":"RGNHEADER","features":[422]},{"name":"RGNRANGE","features":[422]},{"name":"SIZE_DVINFO","features":[422]},{"name":"WAVELINK","features":[422]},{"name":"WAVELINK_CHANNEL_LEFT","features":[422]},{"name":"WAVELINK_CHANNEL_RIGHT","features":[422]},{"name":"WLOOP","features":[422]},{"name":"WLOOP_TYPE_FORWARD","features":[422]},{"name":"WLOOP_TYPE_RELEASE","features":[422]},{"name":"WSMPL","features":[422]}],"428":[{"name":"CLSID_DirectSound","features":[423]},{"name":"CLSID_DirectSound8","features":[423]},{"name":"CLSID_DirectSoundCapture","features":[423]},{"name":"CLSID_DirectSoundCapture8","features":[423]},{"name":"CLSID_DirectSoundFullDuplex","features":[423]},{"name":"DIRECTSOUND_VERSION","features":[423]},{"name":"DS3DALG_HRTF_FULL","features":[423]},{"name":"DS3DALG_HRTF_LIGHT","features":[423]},{"name":"DS3DALG_NO_VIRTUALIZATION","features":[423]},{"name":"DS3DBUFFER","features":[398,423]},{"name":"DS3DLISTENER","features":[398,423]},{"name":"DS3DMODE_DISABLE","features":[423]},{"name":"DS3DMODE_HEADRELATIVE","features":[423]},{"name":"DS3DMODE_NORMAL","features":[423]},{"name":"DS3D_DEFAULTCONEANGLE","features":[423]},{"name":"DS3D_DEFAULTCONEOUTSIDEVOLUME","features":[423]},{"name":"DS3D_DEFAULTDISTANCEFACTOR","features":[423]},{"name":"DS3D_DEFAULTDOPPLERFACTOR","features":[423]},{"name":"DS3D_DEFAULTMAXDISTANCE","features":[423]},{"name":"DS3D_DEFAULTMINDISTANCE","features":[423]},{"name":"DS3D_DEFAULTROLLOFFFACTOR","features":[423]},{"name":"DS3D_DEFERRED","features":[423]},{"name":"DS3D_IMMEDIATE","features":[423]},{"name":"DS3D_MAXCONEANGLE","features":[423]},{"name":"DS3D_MAXDOPPLERFACTOR","features":[423]},{"name":"DS3D_MAXROLLOFFFACTOR","features":[423]},{"name":"DS3D_MINCONEANGLE","features":[423]},{"name":"DS3D_MINDOPPLERFACTOR","features":[423]},{"name":"DS3D_MINROLLOFFFACTOR","features":[423]},{"name":"DSBCAPS","features":[423]},{"name":"DSBCAPS_CTRL3D","features":[423]},{"name":"DSBCAPS_CTRLFREQUENCY","features":[423]},{"name":"DSBCAPS_CTRLFX","features":[423]},{"name":"DSBCAPS_CTRLPAN","features":[423]},{"name":"DSBCAPS_CTRLPOSITIONNOTIFY","features":[423]},{"name":"DSBCAPS_CTRLVOLUME","features":[423]},{"name":"DSBCAPS_GETCURRENTPOSITION2","features":[423]},{"name":"DSBCAPS_GLOBALFOCUS","features":[423]},{"name":"DSBCAPS_LOCDEFER","features":[423]},{"name":"DSBCAPS_LOCHARDWARE","features":[423]},{"name":"DSBCAPS_LOCSOFTWARE","features":[423]},{"name":"DSBCAPS_MUTE3DATMAXDISTANCE","features":[423]},{"name":"DSBCAPS_PRIMARYBUFFER","features":[423]},{"name":"DSBCAPS_STATIC","features":[423]},{"name":"DSBCAPS_STICKYFOCUS","features":[423]},{"name":"DSBCAPS_TRUEPLAYPOSITION","features":[423]},{"name":"DSBFREQUENCY_MAX","features":[423]},{"name":"DSBFREQUENCY_MIN","features":[423]},{"name":"DSBFREQUENCY_ORIGINAL","features":[423]},{"name":"DSBLOCK_ENTIREBUFFER","features":[423]},{"name":"DSBLOCK_FROMWRITECURSOR","features":[423]},{"name":"DSBNOTIFICATIONS_MAX","features":[423]},{"name":"DSBPAN_CENTER","features":[423]},{"name":"DSBPAN_LEFT","features":[423]},{"name":"DSBPAN_RIGHT","features":[423]},{"name":"DSBPLAY_LOCHARDWARE","features":[423]},{"name":"DSBPLAY_LOCSOFTWARE","features":[423]},{"name":"DSBPLAY_LOOPING","features":[423]},{"name":"DSBPLAY_TERMINATEBY_DISTANCE","features":[423]},{"name":"DSBPLAY_TERMINATEBY_PRIORITY","features":[423]},{"name":"DSBPLAY_TERMINATEBY_TIME","features":[423]},{"name":"DSBPN_OFFSETSTOP","features":[423]},{"name":"DSBPOSITIONNOTIFY","features":[305,423]},{"name":"DSBSIZE_FX_MIN","features":[423]},{"name":"DSBSIZE_MAX","features":[423]},{"name":"DSBSIZE_MIN","features":[423]},{"name":"DSBSTATUS_BUFFERLOST","features":[423]},{"name":"DSBSTATUS_LOCHARDWARE","features":[423]},{"name":"DSBSTATUS_LOCSOFTWARE","features":[423]},{"name":"DSBSTATUS_LOOPING","features":[423]},{"name":"DSBSTATUS_PLAYING","features":[423]},{"name":"DSBSTATUS_TERMINATED","features":[423]},{"name":"DSBUFFERDESC","features":[423]},{"name":"DSBUFFERDESC1","features":[423]},{"name":"DSBVOLUME_MAX","features":[423]},{"name":"DSBVOLUME_MIN","features":[423]},{"name":"DSCAPS","features":[423]},{"name":"DSCAPS_CERTIFIED","features":[423]},{"name":"DSCAPS_CONTINUOUSRATE","features":[423]},{"name":"DSCAPS_EMULDRIVER","features":[423]},{"name":"DSCAPS_PRIMARY16BIT","features":[423]},{"name":"DSCAPS_PRIMARY8BIT","features":[423]},{"name":"DSCAPS_PRIMARYMONO","features":[423]},{"name":"DSCAPS_PRIMARYSTEREO","features":[423]},{"name":"DSCAPS_SECONDARY16BIT","features":[423]},{"name":"DSCAPS_SECONDARY8BIT","features":[423]},{"name":"DSCAPS_SECONDARYMONO","features":[423]},{"name":"DSCAPS_SECONDARYSTEREO","features":[423]},{"name":"DSCBCAPS","features":[423]},{"name":"DSCBCAPS_CTRLFX","features":[423]},{"name":"DSCBCAPS_WAVEMAPPED","features":[423]},{"name":"DSCBLOCK_ENTIREBUFFER","features":[423]},{"name":"DSCBSTART_LOOPING","features":[423]},{"name":"DSCBSTATUS_CAPTURING","features":[423]},{"name":"DSCBSTATUS_LOOPING","features":[423]},{"name":"DSCBUFFERDESC","features":[423]},{"name":"DSCBUFFERDESC1","features":[423]},{"name":"DSCCAPS","features":[423]},{"name":"DSCCAPS_CERTIFIED","features":[423]},{"name":"DSCCAPS_EMULDRIVER","features":[423]},{"name":"DSCCAPS_MULTIPLECAPTURE","features":[423]},{"name":"DSCEFFECTDESC","features":[423]},{"name":"DSCFXAec","features":[305,423]},{"name":"DSCFXNoiseSuppress","features":[305,423]},{"name":"DSCFXR_LOCHARDWARE","features":[423]},{"name":"DSCFXR_LOCSOFTWARE","features":[423]},{"name":"DSCFX_AEC_MODE_FULL_DUPLEX","features":[423]},{"name":"DSCFX_AEC_MODE_HALF_DUPLEX","features":[423]},{"name":"DSCFX_AEC_MODE_PASS_THROUGH","features":[423]},{"name":"DSCFX_AEC_STATUS_CURRENTLY_CONVERGED","features":[423]},{"name":"DSCFX_AEC_STATUS_HISTORY_CONTINUOUSLY_CONVERGED","features":[423]},{"name":"DSCFX_AEC_STATUS_HISTORY_PREVIOUSLY_DIVERGED","features":[423]},{"name":"DSCFX_AEC_STATUS_HISTORY_UNINITIALIZED","features":[423]},{"name":"DSCFX_LOCHARDWARE","features":[423]},{"name":"DSCFX_LOCSOFTWARE","features":[423]},{"name":"DSDEVID_DefaultCapture","features":[423]},{"name":"DSDEVID_DefaultPlayback","features":[423]},{"name":"DSDEVID_DefaultVoiceCapture","features":[423]},{"name":"DSDEVID_DefaultVoicePlayback","features":[423]},{"name":"DSEFFECTDESC","features":[423]},{"name":"DSFXCHORUS_DELAY_MAX","features":[423]},{"name":"DSFXCHORUS_DELAY_MIN","features":[423]},{"name":"DSFXCHORUS_DEPTH_MAX","features":[423]},{"name":"DSFXCHORUS_DEPTH_MIN","features":[423]},{"name":"DSFXCHORUS_FEEDBACK_MAX","features":[423]},{"name":"DSFXCHORUS_FEEDBACK_MIN","features":[423]},{"name":"DSFXCHORUS_FREQUENCY_MAX","features":[423]},{"name":"DSFXCHORUS_FREQUENCY_MIN","features":[423]},{"name":"DSFXCHORUS_PHASE_180","features":[423]},{"name":"DSFXCHORUS_PHASE_90","features":[423]},{"name":"DSFXCHORUS_PHASE_MAX","features":[423]},{"name":"DSFXCHORUS_PHASE_MIN","features":[423]},{"name":"DSFXCHORUS_PHASE_NEG_180","features":[423]},{"name":"DSFXCHORUS_PHASE_NEG_90","features":[423]},{"name":"DSFXCHORUS_PHASE_ZERO","features":[423]},{"name":"DSFXCHORUS_WAVE_SIN","features":[423]},{"name":"DSFXCHORUS_WAVE_TRIANGLE","features":[423]},{"name":"DSFXCHORUS_WETDRYMIX_MAX","features":[423]},{"name":"DSFXCHORUS_WETDRYMIX_MIN","features":[423]},{"name":"DSFXCOMPRESSOR_ATTACK_MAX","features":[423]},{"name":"DSFXCOMPRESSOR_ATTACK_MIN","features":[423]},{"name":"DSFXCOMPRESSOR_GAIN_MAX","features":[423]},{"name":"DSFXCOMPRESSOR_GAIN_MIN","features":[423]},{"name":"DSFXCOMPRESSOR_PREDELAY_MAX","features":[423]},{"name":"DSFXCOMPRESSOR_PREDELAY_MIN","features":[423]},{"name":"DSFXCOMPRESSOR_RATIO_MAX","features":[423]},{"name":"DSFXCOMPRESSOR_RATIO_MIN","features":[423]},{"name":"DSFXCOMPRESSOR_RELEASE_MAX","features":[423]},{"name":"DSFXCOMPRESSOR_RELEASE_MIN","features":[423]},{"name":"DSFXCOMPRESSOR_THRESHOLD_MAX","features":[423]},{"name":"DSFXCOMPRESSOR_THRESHOLD_MIN","features":[423]},{"name":"DSFXChorus","features":[423]},{"name":"DSFXCompressor","features":[423]},{"name":"DSFXDISTORTION_EDGE_MAX","features":[423]},{"name":"DSFXDISTORTION_EDGE_MIN","features":[423]},{"name":"DSFXDISTORTION_GAIN_MAX","features":[423]},{"name":"DSFXDISTORTION_GAIN_MIN","features":[423]},{"name":"DSFXDISTORTION_POSTEQBANDWIDTH_MAX","features":[423]},{"name":"DSFXDISTORTION_POSTEQBANDWIDTH_MIN","features":[423]},{"name":"DSFXDISTORTION_POSTEQCENTERFREQUENCY_MAX","features":[423]},{"name":"DSFXDISTORTION_POSTEQCENTERFREQUENCY_MIN","features":[423]},{"name":"DSFXDISTORTION_PRELOWPASSCUTOFF_MAX","features":[423]},{"name":"DSFXDISTORTION_PRELOWPASSCUTOFF_MIN","features":[423]},{"name":"DSFXDistortion","features":[423]},{"name":"DSFXECHO_FEEDBACK_MAX","features":[423]},{"name":"DSFXECHO_FEEDBACK_MIN","features":[423]},{"name":"DSFXECHO_LEFTDELAY_MAX","features":[423]},{"name":"DSFXECHO_LEFTDELAY_MIN","features":[423]},{"name":"DSFXECHO_PANDELAY_MAX","features":[423]},{"name":"DSFXECHO_PANDELAY_MIN","features":[423]},{"name":"DSFXECHO_RIGHTDELAY_MAX","features":[423]},{"name":"DSFXECHO_RIGHTDELAY_MIN","features":[423]},{"name":"DSFXECHO_WETDRYMIX_MAX","features":[423]},{"name":"DSFXECHO_WETDRYMIX_MIN","features":[423]},{"name":"DSFXEcho","features":[423]},{"name":"DSFXFLANGER_DELAY_MAX","features":[423]},{"name":"DSFXFLANGER_DELAY_MIN","features":[423]},{"name":"DSFXFLANGER_DEPTH_MAX","features":[423]},{"name":"DSFXFLANGER_DEPTH_MIN","features":[423]},{"name":"DSFXFLANGER_FEEDBACK_MAX","features":[423]},{"name":"DSFXFLANGER_FEEDBACK_MIN","features":[423]},{"name":"DSFXFLANGER_FREQUENCY_MAX","features":[423]},{"name":"DSFXFLANGER_FREQUENCY_MIN","features":[423]},{"name":"DSFXFLANGER_PHASE_180","features":[423]},{"name":"DSFXFLANGER_PHASE_90","features":[423]},{"name":"DSFXFLANGER_PHASE_MAX","features":[423]},{"name":"DSFXFLANGER_PHASE_MIN","features":[423]},{"name":"DSFXFLANGER_PHASE_NEG_180","features":[423]},{"name":"DSFXFLANGER_PHASE_NEG_90","features":[423]},{"name":"DSFXFLANGER_PHASE_ZERO","features":[423]},{"name":"DSFXFLANGER_WAVE_SIN","features":[423]},{"name":"DSFXFLANGER_WAVE_TRIANGLE","features":[423]},{"name":"DSFXFLANGER_WETDRYMIX_MAX","features":[423]},{"name":"DSFXFLANGER_WETDRYMIX_MIN","features":[423]},{"name":"DSFXFlanger","features":[423]},{"name":"DSFXGARGLE_RATEHZ_MAX","features":[423]},{"name":"DSFXGARGLE_RATEHZ_MIN","features":[423]},{"name":"DSFXGARGLE_WAVE_SQUARE","features":[423]},{"name":"DSFXGARGLE_WAVE_TRIANGLE","features":[423]},{"name":"DSFXGargle","features":[423]},{"name":"DSFXI3DL2Reverb","features":[423]},{"name":"DSFXPARAMEQ_BANDWIDTH_MAX","features":[423]},{"name":"DSFXPARAMEQ_BANDWIDTH_MIN","features":[423]},{"name":"DSFXPARAMEQ_CENTER_MAX","features":[423]},{"name":"DSFXPARAMEQ_CENTER_MIN","features":[423]},{"name":"DSFXPARAMEQ_GAIN_MAX","features":[423]},{"name":"DSFXPARAMEQ_GAIN_MIN","features":[423]},{"name":"DSFXParamEq","features":[423]},{"name":"DSFXR_FAILED","features":[423]},{"name":"DSFXR_LOCHARDWARE","features":[423]},{"name":"DSFXR_LOCSOFTWARE","features":[423]},{"name":"DSFXR_PRESENT","features":[423]},{"name":"DSFXR_SENDLOOP","features":[423]},{"name":"DSFXR_UNALLOCATED","features":[423]},{"name":"DSFXR_UNKNOWN","features":[423]},{"name":"DSFXWavesReverb","features":[423]},{"name":"DSFX_I3DL2REVERB_DECAYHFRATIO_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_DECAYHFRATIO_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_DECAYHFRATIO_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_DECAYTIME_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_DECAYTIME_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_DECAYTIME_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_DENSITY_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_DENSITY_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_DENSITY_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_DIFFUSION_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_DIFFUSION_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_DIFFUSION_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_HFREFERENCE_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_HFREFERENCE_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_HFREFERENCE_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_QUALITY_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_QUALITY_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_QUALITY_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_REFLECTIONSDELAY_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_REFLECTIONSDELAY_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_REFLECTIONSDELAY_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_REFLECTIONS_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_REFLECTIONS_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_REFLECTIONS_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_REVERBDELAY_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_REVERBDELAY_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_REVERBDELAY_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_REVERB_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_REVERB_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_REVERB_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOMHF_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOMHF_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOMHF_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOMROLLOFFFACTOR_MIN","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOM_DEFAULT","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOM_MAX","features":[423]},{"name":"DSFX_I3DL2REVERB_ROOM_MIN","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_ALLEY","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_ARENA","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_AUDITORIUM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_BATHROOM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CARPETEDHALLWAY","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CAVE","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CITY","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_CONCERTHALL","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_DEFAULT","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_FOREST","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_GENERIC","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_HALLWAY","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_HANGAR","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEHALL","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_LARGEROOM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_LIVINGROOM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMHALL","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_MEDIUMROOM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_MOUNTAINS","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PADDEDCELL","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PARKINGLOT","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PLAIN","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_PLATE","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_QUARRY","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_ROOM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_SEWERPIPE","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_SMALLROOM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_STONEROOM","features":[423]},{"name":"DSFX_I3DL2_ENVIRONMENT_PRESET_UNDERWATER","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_BRICKWALL","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_CURTAIN","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_DOUBLEWINDOW","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_SINGLEWINDOW","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_STONEWALL","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_THICKDOOR","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_THINDOOR","features":[423]},{"name":"DSFX_I3DL2_MATERIAL_PRESET_WOODWALL","features":[423]},{"name":"DSFX_LOCHARDWARE","features":[423]},{"name":"DSFX_LOCSOFTWARE","features":[423]},{"name":"DSFX_WAVESREVERB_HIGHFREQRTRATIO_DEFAULT","features":[423]},{"name":"DSFX_WAVESREVERB_HIGHFREQRTRATIO_MAX","features":[423]},{"name":"DSFX_WAVESREVERB_HIGHFREQRTRATIO_MIN","features":[423]},{"name":"DSFX_WAVESREVERB_INGAIN_DEFAULT","features":[423]},{"name":"DSFX_WAVESREVERB_INGAIN_MAX","features":[423]},{"name":"DSFX_WAVESREVERB_INGAIN_MIN","features":[423]},{"name":"DSFX_WAVESREVERB_REVERBMIX_DEFAULT","features":[423]},{"name":"DSFX_WAVESREVERB_REVERBMIX_MAX","features":[423]},{"name":"DSFX_WAVESREVERB_REVERBMIX_MIN","features":[423]},{"name":"DSFX_WAVESREVERB_REVERBTIME_DEFAULT","features":[423]},{"name":"DSFX_WAVESREVERB_REVERBTIME_MAX","features":[423]},{"name":"DSFX_WAVESREVERB_REVERBTIME_MIN","features":[423]},{"name":"DSSCL_EXCLUSIVE","features":[423]},{"name":"DSSCL_NORMAL","features":[423]},{"name":"DSSCL_PRIORITY","features":[423]},{"name":"DSSCL_WRITEPRIMARY","features":[423]},{"name":"DSSPEAKER_5POINT1","features":[423]},{"name":"DSSPEAKER_5POINT1_BACK","features":[423]},{"name":"DSSPEAKER_5POINT1_SURROUND","features":[423]},{"name":"DSSPEAKER_7POINT1","features":[423]},{"name":"DSSPEAKER_7POINT1_SURROUND","features":[423]},{"name":"DSSPEAKER_7POINT1_WIDE","features":[423]},{"name":"DSSPEAKER_DIRECTOUT","features":[423]},{"name":"DSSPEAKER_GEOMETRY_MAX","features":[423]},{"name":"DSSPEAKER_GEOMETRY_MIN","features":[423]},{"name":"DSSPEAKER_GEOMETRY_NARROW","features":[423]},{"name":"DSSPEAKER_GEOMETRY_WIDE","features":[423]},{"name":"DSSPEAKER_HEADPHONE","features":[423]},{"name":"DSSPEAKER_MONO","features":[423]},{"name":"DSSPEAKER_QUAD","features":[423]},{"name":"DSSPEAKER_STEREO","features":[423]},{"name":"DSSPEAKER_SURROUND","features":[423]},{"name":"DS_CERTIFIED","features":[423]},{"name":"DS_NO_VIRTUALIZATION","features":[423]},{"name":"DS_UNCERTIFIED","features":[423]},{"name":"DirectSoundCaptureCreate","features":[423]},{"name":"DirectSoundCaptureCreate8","features":[423]},{"name":"DirectSoundCaptureEnumerateA","features":[305,423]},{"name":"DirectSoundCaptureEnumerateW","features":[305,423]},{"name":"DirectSoundCreate","features":[423]},{"name":"DirectSoundCreate8","features":[423]},{"name":"DirectSoundEnumerateA","features":[305,423]},{"name":"DirectSoundEnumerateW","features":[305,423]},{"name":"DirectSoundFullDuplexCreate","features":[305,423]},{"name":"GUID_All_Objects","features":[423]},{"name":"GUID_DSCFX_CLASS_AEC","features":[423]},{"name":"GUID_DSCFX_CLASS_NS","features":[423]},{"name":"GUID_DSCFX_MS_AEC","features":[423]},{"name":"GUID_DSCFX_MS_NS","features":[423]},{"name":"GUID_DSCFX_SYSTEM_AEC","features":[423]},{"name":"GUID_DSCFX_SYSTEM_NS","features":[423]},{"name":"GUID_DSFX_STANDARD_CHORUS","features":[423]},{"name":"GUID_DSFX_STANDARD_COMPRESSOR","features":[423]},{"name":"GUID_DSFX_STANDARD_DISTORTION","features":[423]},{"name":"GUID_DSFX_STANDARD_ECHO","features":[423]},{"name":"GUID_DSFX_STANDARD_FLANGER","features":[423]},{"name":"GUID_DSFX_STANDARD_GARGLE","features":[423]},{"name":"GUID_DSFX_STANDARD_I3DL2REVERB","features":[423]},{"name":"GUID_DSFX_STANDARD_PARAMEQ","features":[423]},{"name":"GUID_DSFX_WAVES_REVERB","features":[423]},{"name":"GetDeviceID","features":[423]},{"name":"IDirectSound","features":[423]},{"name":"IDirectSound3DBuffer","features":[423]},{"name":"IDirectSound3DListener","features":[423]},{"name":"IDirectSound8","features":[423]},{"name":"IDirectSoundBuffer","features":[423]},{"name":"IDirectSoundBuffer8","features":[423]},{"name":"IDirectSoundCapture","features":[423]},{"name":"IDirectSoundCaptureBuffer","features":[423]},{"name":"IDirectSoundCaptureBuffer8","features":[423]},{"name":"IDirectSoundCaptureFXAec","features":[423]},{"name":"IDirectSoundCaptureFXNoiseSuppress","features":[423]},{"name":"IDirectSoundFXChorus","features":[423]},{"name":"IDirectSoundFXCompressor","features":[423]},{"name":"IDirectSoundFXDistortion","features":[423]},{"name":"IDirectSoundFXEcho","features":[423]},{"name":"IDirectSoundFXFlanger","features":[423]},{"name":"IDirectSoundFXGargle","features":[423]},{"name":"IDirectSoundFXI3DL2Reverb","features":[423]},{"name":"IDirectSoundFXParamEq","features":[423]},{"name":"IDirectSoundFXWavesReverb","features":[423]},{"name":"IDirectSoundFullDuplex","features":[423]},{"name":"IDirectSoundNotify","features":[423]},{"name":"KSPROPERTY_SUPPORT_GET","features":[423]},{"name":"KSPROPERTY_SUPPORT_SET","features":[423]},{"name":"LPDSENUMCALLBACKA","features":[305,423]},{"name":"LPDSENUMCALLBACKW","features":[305,423]},{"name":"_FACDS","features":[423]}],"429":[{"name":"AUDIO_ENDPOINT_SHARED_CREATE_PARAMS","features":[424]},{"name":"DEVINTERFACE_AUDIOENDPOINTPLUGIN","features":[424]},{"name":"DEVPKEY_AudioEndpointPlugin2_FactoryCLSID","features":[424,376]},{"name":"DEVPKEY_AudioEndpointPlugin_DataFlow","features":[424,376]},{"name":"DEVPKEY_AudioEndpointPlugin_FactoryCLSID","features":[424,376]},{"name":"DEVPKEY_AudioEndpointPlugin_PnPInterface","features":[424,376]},{"name":"EndpointConnectorType","features":[424]},{"name":"IAudioEndpointFormatControl","features":[424]},{"name":"IAudioEndpointLastBufferControl","features":[424]},{"name":"IAudioEndpointOffloadStreamMeter","features":[424]},{"name":"IAudioEndpointOffloadStreamMute","features":[424]},{"name":"IAudioEndpointOffloadStreamVolume","features":[424]},{"name":"IAudioEndpointVolume","features":[424]},{"name":"IAudioEndpointVolumeCallback","features":[424]},{"name":"IAudioEndpointVolumeEx","features":[424]},{"name":"IAudioLfxControl","features":[424]},{"name":"IAudioMeterInformation","features":[424]},{"name":"IHardwareAudioEngineBase","features":[424]},{"name":"eConnectorCount","features":[424]},{"name":"eHostProcessConnector","features":[424]},{"name":"eKeywordDetectorConnector","features":[424]},{"name":"eLoopbackConnector","features":[424]},{"name":"eOffloadConnector","features":[424]}],"430":[{"name":"AudioReverb","features":[425]},{"name":"AudioVolumeMeter","features":[425]},{"name":"BandPassFilter","features":[425]},{"name":"Cardioid","features":[425]},{"name":"Cone","features":[425]},{"name":"CreateAudioReverb","features":[425]},{"name":"CreateAudioVolumeMeter","features":[425]},{"name":"CreateFX","features":[425]},{"name":"CreateHrtfApo","features":[425]},{"name":"CustomDecay","features":[425]},{"name":"FACILITY_XAPO","features":[425]},{"name":"FACILITY_XAUDIO2","features":[425]},{"name":"FXECHO_DEFAULT_DELAY","features":[425]},{"name":"FXECHO_DEFAULT_FEEDBACK","features":[425]},{"name":"FXECHO_DEFAULT_WETDRYMIX","features":[425]},{"name":"FXECHO_INITDATA","features":[425]},{"name":"FXECHO_MAX_DELAY","features":[425]},{"name":"FXECHO_MAX_FEEDBACK","features":[425]},{"name":"FXECHO_MAX_WETDRYMIX","features":[425]},{"name":"FXECHO_MIN_DELAY","features":[425]},{"name":"FXECHO_MIN_FEEDBACK","features":[425]},{"name":"FXECHO_MIN_WETDRYMIX","features":[425]},{"name":"FXECHO_PARAMETERS","features":[425]},{"name":"FXEQ","features":[425]},{"name":"FXEQ_DEFAULT_BANDWIDTH","features":[425]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_0","features":[425]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_1","features":[425]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_2","features":[425]},{"name":"FXEQ_DEFAULT_FREQUENCY_CENTER_3","features":[425]},{"name":"FXEQ_DEFAULT_GAIN","features":[425]},{"name":"FXEQ_MAX_BANDWIDTH","features":[425]},{"name":"FXEQ_MAX_FRAMERATE","features":[425]},{"name":"FXEQ_MAX_FREQUENCY_CENTER","features":[425]},{"name":"FXEQ_MAX_GAIN","features":[425]},{"name":"FXEQ_MIN_BANDWIDTH","features":[425]},{"name":"FXEQ_MIN_FRAMERATE","features":[425]},{"name":"FXEQ_MIN_FREQUENCY_CENTER","features":[425]},{"name":"FXEQ_MIN_GAIN","features":[425]},{"name":"FXEQ_PARAMETERS","features":[425]},{"name":"FXEcho","features":[425]},{"name":"FXLOUDNESS_DEFAULT_MOMENTARY_MS","features":[425]},{"name":"FXLOUDNESS_DEFAULT_SHORTTERM_MS","features":[425]},{"name":"FXMASTERINGLIMITER_DEFAULT_LOUDNESS","features":[425]},{"name":"FXMASTERINGLIMITER_DEFAULT_RELEASE","features":[425]},{"name":"FXMASTERINGLIMITER_MAX_LOUDNESS","features":[425]},{"name":"FXMASTERINGLIMITER_MAX_RELEASE","features":[425]},{"name":"FXMASTERINGLIMITER_MIN_LOUDNESS","features":[425]},{"name":"FXMASTERINGLIMITER_MIN_RELEASE","features":[425]},{"name":"FXMASTERINGLIMITER_PARAMETERS","features":[425]},{"name":"FXMasteringLimiter","features":[425]},{"name":"FXREVERB_DEFAULT_DIFFUSION","features":[425]},{"name":"FXREVERB_DEFAULT_ROOMSIZE","features":[425]},{"name":"FXREVERB_MAX_DIFFUSION","features":[425]},{"name":"FXREVERB_MAX_ROOMSIZE","features":[425]},{"name":"FXREVERB_MIN_DIFFUSION","features":[425]},{"name":"FXREVERB_MIN_ROOMSIZE","features":[425]},{"name":"FXREVERB_PARAMETERS","features":[425]},{"name":"FXReverb","features":[425]},{"name":"HRTF_DEFAULT_UNITY_GAIN_DISTANCE","features":[425]},{"name":"HRTF_MAX_GAIN_LIMIT","features":[425]},{"name":"HRTF_MIN_GAIN_LIMIT","features":[425]},{"name":"HRTF_MIN_UNITY_GAIN_DISTANCE","features":[425]},{"name":"HighPassFilter","features":[425]},{"name":"HighPassOnePoleFilter","features":[425]},{"name":"HrtfApoInit","features":[425]},{"name":"HrtfDirectivity","features":[425]},{"name":"HrtfDirectivityCardioid","features":[425]},{"name":"HrtfDirectivityCone","features":[425]},{"name":"HrtfDirectivityType","features":[425]},{"name":"HrtfDistanceDecay","features":[425]},{"name":"HrtfDistanceDecayType","features":[425]},{"name":"HrtfEnvironment","features":[425]},{"name":"HrtfOrientation","features":[425]},{"name":"HrtfPosition","features":[425]},{"name":"IXAPO","features":[425]},{"name":"IXAPOHrtfParameters","features":[425]},{"name":"IXAPOParameters","features":[425]},{"name":"IXAudio2","features":[425]},{"name":"IXAudio2EngineCallback","features":[425]},{"name":"IXAudio2Extension","features":[425]},{"name":"IXAudio2MasteringVoice","features":[425]},{"name":"IXAudio2SourceVoice","features":[425]},{"name":"IXAudio2SubmixVoice","features":[425]},{"name":"IXAudio2Voice","features":[425]},{"name":"IXAudio2VoiceCallback","features":[425]},{"name":"Large","features":[425]},{"name":"LowPassFilter","features":[425]},{"name":"LowPassOnePoleFilter","features":[425]},{"name":"Medium","features":[425]},{"name":"NaturalDecay","features":[425]},{"name":"NotchFilter","features":[425]},{"name":"OmniDirectional","features":[425]},{"name":"Outdoors","features":[425]},{"name":"Processor1","features":[425]},{"name":"Processor10","features":[425]},{"name":"Processor11","features":[425]},{"name":"Processor12","features":[425]},{"name":"Processor13","features":[425]},{"name":"Processor14","features":[425]},{"name":"Processor15","features":[425]},{"name":"Processor16","features":[425]},{"name":"Processor17","features":[425]},{"name":"Processor18","features":[425]},{"name":"Processor19","features":[425]},{"name":"Processor2","features":[425]},{"name":"Processor20","features":[425]},{"name":"Processor21","features":[425]},{"name":"Processor22","features":[425]},{"name":"Processor23","features":[425]},{"name":"Processor24","features":[425]},{"name":"Processor25","features":[425]},{"name":"Processor26","features":[425]},{"name":"Processor27","features":[425]},{"name":"Processor28","features":[425]},{"name":"Processor29","features":[425]},{"name":"Processor3","features":[425]},{"name":"Processor30","features":[425]},{"name":"Processor31","features":[425]},{"name":"Processor32","features":[425]},{"name":"Processor4","features":[425]},{"name":"Processor5","features":[425]},{"name":"Processor6","features":[425]},{"name":"Processor7","features":[425]},{"name":"Processor8","features":[425]},{"name":"Processor9","features":[425]},{"name":"SPEAKER_MONO","features":[425]},{"name":"Small","features":[425]},{"name":"X3DAUDIO_2PI","features":[425]},{"name":"X3DAUDIO_CALCULATE_DELAY","features":[425]},{"name":"X3DAUDIO_CALCULATE_DOPPLER","features":[425]},{"name":"X3DAUDIO_CALCULATE_EMITTER_ANGLE","features":[425]},{"name":"X3DAUDIO_CALCULATE_LPF_DIRECT","features":[425]},{"name":"X3DAUDIO_CALCULATE_LPF_REVERB","features":[425]},{"name":"X3DAUDIO_CALCULATE_MATRIX","features":[425]},{"name":"X3DAUDIO_CALCULATE_REDIRECT_TO_LFE","features":[425]},{"name":"X3DAUDIO_CALCULATE_REVERB","features":[425]},{"name":"X3DAUDIO_CALCULATE_ZEROCENTER","features":[425]},{"name":"X3DAUDIO_HANDLE_BYTESIZE","features":[425]},{"name":"X3DAUDIO_PI","features":[425]},{"name":"X3DAUDIO_SPEED_OF_SOUND","features":[425]},{"name":"XAPO_BUFFER_FLAGS","features":[425]},{"name":"XAPO_BUFFER_SILENT","features":[425]},{"name":"XAPO_BUFFER_VALID","features":[425]},{"name":"XAPO_E_FORMAT_UNSUPPORTED","features":[425]},{"name":"XAPO_FLAG_BITSPERSAMPLE_MUST_MATCH","features":[425]},{"name":"XAPO_FLAG_BUFFERCOUNT_MUST_MATCH","features":[425]},{"name":"XAPO_FLAG_CHANNELS_MUST_MATCH","features":[425]},{"name":"XAPO_FLAG_FRAMERATE_MUST_MATCH","features":[425]},{"name":"XAPO_FLAG_INPLACE_REQUIRED","features":[425]},{"name":"XAPO_FLAG_INPLACE_SUPPORTED","features":[425]},{"name":"XAPO_LOCKFORPROCESS_PARAMETERS","features":[425]},{"name":"XAPO_MAX_CHANNELS","features":[425]},{"name":"XAPO_MAX_FRAMERATE","features":[425]},{"name":"XAPO_MIN_CHANNELS","features":[425]},{"name":"XAPO_MIN_FRAMERATE","features":[425]},{"name":"XAPO_PROCESS_BUFFER_PARAMETERS","features":[425]},{"name":"XAPO_REGISTRATION_PROPERTIES","features":[425]},{"name":"XAPO_REGISTRATION_STRING_LENGTH","features":[425]},{"name":"XAUDIO2D_DLL","features":[425]},{"name":"XAUDIO2D_DLL_A","features":[425]},{"name":"XAUDIO2D_DLL_W","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_7POINT1_REAR_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_7POINT1_SIDE_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_DECAY_TIME","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_DENSITY","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_DISABLE_LATE_FIELD","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_EARLY_DIFFUSION","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_HIGH_EQ_CUTOFF","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_HIGH_EQ_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_LATE_DIFFUSION","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_LOW_EQ_CUTOFF","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_LOW_EQ_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_POSITION","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_POSITION_MATRIX","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REAR_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REFLECTIONS_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REFLECTIONS_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REVERB_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_REVERB_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_FREQ","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_HF","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_FILTER_MAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_ROOM_SIZE","features":[425]},{"name":"XAUDIO2FX_REVERB_DEFAULT_WET_DRY_MIX","features":[425]},{"name":"XAUDIO2FX_REVERB_I3DL2_PARAMETERS","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_7POINT1_REAR_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_7POINT1_SIDE_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_DENSITY","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_DIFFUSION","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_FRAMERATE","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_HIGH_EQ_CUTOFF","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_HIGH_EQ_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_LOW_EQ_CUTOFF","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_LOW_EQ_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_POSITION","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_REAR_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_REFLECTIONS_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_REFLECTIONS_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_REVERB_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_REVERB_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_FILTER_FREQ","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_FILTER_HF","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_FILTER_MAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_ROOM_SIZE","features":[425]},{"name":"XAUDIO2FX_REVERB_MAX_WET_DRY_MIX","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_7POINT1_REAR_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_7POINT1_SIDE_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_DECAY_TIME","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_DENSITY","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_DIFFUSION","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_FRAMERATE","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_HIGH_EQ_CUTOFF","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_HIGH_EQ_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_LOW_EQ_CUTOFF","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_LOW_EQ_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_POSITION","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_REAR_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_REFLECTIONS_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_REFLECTIONS_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_REVERB_DELAY","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_REVERB_GAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_FILTER_FREQ","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_FILTER_HF","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_FILTER_MAIN","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_ROOM_SIZE","features":[425]},{"name":"XAUDIO2FX_REVERB_MIN_WET_DRY_MIX","features":[425]},{"name":"XAUDIO2FX_REVERB_PARAMETERS","features":[305,425]},{"name":"XAUDIO2FX_VOLUMEMETER_LEVELS","features":[425]},{"name":"XAUDIO2_1024_QUANTUM","features":[425]},{"name":"XAUDIO2_ANY_PROCESSOR","features":[425]},{"name":"XAUDIO2_BUFFER","features":[425]},{"name":"XAUDIO2_BUFFER_WMA","features":[425]},{"name":"XAUDIO2_COMMIT_ALL","features":[425]},{"name":"XAUDIO2_COMMIT_NOW","features":[425]},{"name":"XAUDIO2_DEBUG_CONFIGURATION","features":[305,425]},{"name":"XAUDIO2_DEBUG_ENGINE","features":[425]},{"name":"XAUDIO2_DEFAULT_CHANNELS","features":[425]},{"name":"XAUDIO2_DEFAULT_FILTER_FREQUENCY","features":[425]},{"name":"XAUDIO2_DEFAULT_FILTER_ONEOVERQ","features":[425]},{"name":"XAUDIO2_DEFAULT_FREQ_RATIO","features":[425]},{"name":"XAUDIO2_DEFAULT_PROCESSOR","features":[425]},{"name":"XAUDIO2_DEFAULT_SAMPLERATE","features":[425]},{"name":"XAUDIO2_DLL","features":[425]},{"name":"XAUDIO2_DLL_A","features":[425]},{"name":"XAUDIO2_DLL_W","features":[425]},{"name":"XAUDIO2_EFFECT_CHAIN","features":[305,425]},{"name":"XAUDIO2_EFFECT_DESCRIPTOR","features":[305,425]},{"name":"XAUDIO2_END_OF_STREAM","features":[425]},{"name":"XAUDIO2_E_DEVICE_INVALIDATED","features":[425]},{"name":"XAUDIO2_E_INVALID_CALL","features":[425]},{"name":"XAUDIO2_E_XAPO_CREATION_FAILED","features":[425]},{"name":"XAUDIO2_E_XMA_DECODER_ERROR","features":[425]},{"name":"XAUDIO2_FILTER_PARAMETERS","features":[425]},{"name":"XAUDIO2_FILTER_TYPE","features":[425]},{"name":"XAUDIO2_LOG_API_CALLS","features":[425]},{"name":"XAUDIO2_LOG_DETAIL","features":[425]},{"name":"XAUDIO2_LOG_ERRORS","features":[425]},{"name":"XAUDIO2_LOG_FUNC_CALLS","features":[425]},{"name":"XAUDIO2_LOG_INFO","features":[425]},{"name":"XAUDIO2_LOG_LOCKS","features":[425]},{"name":"XAUDIO2_LOG_MEMORY","features":[425]},{"name":"XAUDIO2_LOG_STREAMING","features":[425]},{"name":"XAUDIO2_LOG_TIMING","features":[425]},{"name":"XAUDIO2_LOG_WARNINGS","features":[425]},{"name":"XAUDIO2_LOOP_INFINITE","features":[425]},{"name":"XAUDIO2_MAX_AUDIO_CHANNELS","features":[425]},{"name":"XAUDIO2_MAX_BUFFERS_SYSTEM","features":[425]},{"name":"XAUDIO2_MAX_BUFFER_BYTES","features":[425]},{"name":"XAUDIO2_MAX_FILTER_FREQUENCY","features":[425]},{"name":"XAUDIO2_MAX_FILTER_ONEOVERQ","features":[425]},{"name":"XAUDIO2_MAX_FREQ_RATIO","features":[425]},{"name":"XAUDIO2_MAX_INSTANCES","features":[425]},{"name":"XAUDIO2_MAX_LOOP_COUNT","features":[425]},{"name":"XAUDIO2_MAX_QUEUED_BUFFERS","features":[425]},{"name":"XAUDIO2_MAX_RATIO_TIMES_RATE_XMA_MONO","features":[425]},{"name":"XAUDIO2_MAX_RATIO_TIMES_RATE_XMA_MULTICHANNEL","features":[425]},{"name":"XAUDIO2_MAX_SAMPLE_RATE","features":[425]},{"name":"XAUDIO2_MAX_VOLUME_LEVEL","features":[425]},{"name":"XAUDIO2_MIN_SAMPLE_RATE","features":[425]},{"name":"XAUDIO2_NO_LOOP_REGION","features":[425]},{"name":"XAUDIO2_NO_VIRTUAL_AUDIO_CLIENT","features":[425]},{"name":"XAUDIO2_PERFORMANCE_DATA","features":[425]},{"name":"XAUDIO2_PLAY_TAILS","features":[425]},{"name":"XAUDIO2_QUANTUM_DENOMINATOR","features":[425]},{"name":"XAUDIO2_QUANTUM_NUMERATOR","features":[425]},{"name":"XAUDIO2_SEND_DESCRIPTOR","features":[425]},{"name":"XAUDIO2_SEND_USEFILTER","features":[425]},{"name":"XAUDIO2_STOP_ENGINE_WHEN_IDLE","features":[425]},{"name":"XAUDIO2_USE_DEFAULT_PROCESSOR","features":[425]},{"name":"XAUDIO2_VOICE_DETAILS","features":[425]},{"name":"XAUDIO2_VOICE_NOPITCH","features":[425]},{"name":"XAUDIO2_VOICE_NOSAMPLESPLAYED","features":[425]},{"name":"XAUDIO2_VOICE_NOSRC","features":[425]},{"name":"XAUDIO2_VOICE_SENDS","features":[425]},{"name":"XAUDIO2_VOICE_STATE","features":[425]},{"name":"XAUDIO2_VOICE_USEFILTER","features":[425]},{"name":"XAudio2CreateWithVersionInfo","features":[425]}],"431":[{"name":"ALLOW_OUTOFBAND_NOTIFICATION","features":[426]},{"name":"DO_NOT_VIRTUALIZE_STORAGES_AS_DEVICES","features":[426]},{"name":"ENUM_MODE_METADATA_VIEWS","features":[426]},{"name":"ENUM_MODE_RAW","features":[426]},{"name":"ENUM_MODE_USE_DEVICE_PREF","features":[426]},{"name":"EVENT_WMDM_CONTENT_TRANSFER","features":[426]},{"name":"IComponentAuthenticate","features":[426]},{"name":"IMDSPDevice","features":[426]},{"name":"IMDSPDevice2","features":[426]},{"name":"IMDSPDevice3","features":[426]},{"name":"IMDSPDeviceControl","features":[426]},{"name":"IMDSPDirectTransfer","features":[426]},{"name":"IMDSPEnumDevice","features":[426]},{"name":"IMDSPEnumStorage","features":[426]},{"name":"IMDSPObject","features":[426]},{"name":"IMDSPObject2","features":[426]},{"name":"IMDSPObjectInfo","features":[426]},{"name":"IMDSPRevoked","features":[426]},{"name":"IMDSPStorage","features":[426]},{"name":"IMDSPStorage2","features":[426]},{"name":"IMDSPStorage3","features":[426]},{"name":"IMDSPStorage4","features":[426]},{"name":"IMDSPStorageGlobals","features":[426]},{"name":"IMDServiceProvider","features":[426]},{"name":"IMDServiceProvider2","features":[426]},{"name":"IMDServiceProvider3","features":[426]},{"name":"IOCTL_MTP_CUSTOM_COMMAND","features":[426]},{"name":"ISCPSecureAuthenticate","features":[426]},{"name":"ISCPSecureAuthenticate2","features":[426]},{"name":"ISCPSecureExchange","features":[426]},{"name":"ISCPSecureExchange2","features":[426]},{"name":"ISCPSecureExchange3","features":[426]},{"name":"ISCPSecureQuery","features":[426]},{"name":"ISCPSecureQuery2","features":[426]},{"name":"ISCPSecureQuery3","features":[426]},{"name":"ISCPSession","features":[426]},{"name":"IWMDMDevice","features":[426]},{"name":"IWMDMDevice2","features":[426]},{"name":"IWMDMDevice3","features":[426]},{"name":"IWMDMDeviceControl","features":[426]},{"name":"IWMDMDeviceSession","features":[426]},{"name":"IWMDMEnumDevice","features":[426]},{"name":"IWMDMEnumStorage","features":[426]},{"name":"IWMDMLogger","features":[426]},{"name":"IWMDMMetaData","features":[426]},{"name":"IWMDMNotification","features":[426]},{"name":"IWMDMObjectInfo","features":[426]},{"name":"IWMDMOperation","features":[426]},{"name":"IWMDMOperation2","features":[426]},{"name":"IWMDMOperation3","features":[426]},{"name":"IWMDMProgress","features":[426]},{"name":"IWMDMProgress2","features":[426]},{"name":"IWMDMProgress3","features":[426]},{"name":"IWMDMRevoked","features":[426]},{"name":"IWMDMStorage","features":[426]},{"name":"IWMDMStorage2","features":[426]},{"name":"IWMDMStorage3","features":[426]},{"name":"IWMDMStorage4","features":[426]},{"name":"IWMDMStorageControl","features":[426]},{"name":"IWMDMStorageControl2","features":[426]},{"name":"IWMDMStorageControl3","features":[426]},{"name":"IWMDMStorageGlobals","features":[426]},{"name":"IWMDeviceManager","features":[426]},{"name":"IWMDeviceManager2","features":[426]},{"name":"IWMDeviceManager3","features":[426]},{"name":"MACINFO","features":[305,426]},{"name":"MDSP_READ","features":[426]},{"name":"MDSP_SEEK_BOF","features":[426]},{"name":"MDSP_SEEK_CUR","features":[426]},{"name":"MDSP_SEEK_EOF","features":[426]},{"name":"MDSP_WRITE","features":[426]},{"name":"MTP_COMMAND_DATA_IN","features":[426]},{"name":"MTP_COMMAND_DATA_OUT","features":[426]},{"name":"MTP_COMMAND_MAX_PARAMS","features":[426]},{"name":"MTP_NEXTPHASE_NO_DATA","features":[426]},{"name":"MTP_NEXTPHASE_READ_DATA","features":[426]},{"name":"MTP_NEXTPHASE_WRITE_DATA","features":[426]},{"name":"MTP_RESPONSE_MAX_PARAMS","features":[426]},{"name":"MTP_RESPONSE_OK","features":[426]},{"name":"MediaDevMgr","features":[426]},{"name":"MediaDevMgrClassFactory","features":[426]},{"name":"OPAQUECOMMAND","features":[426]},{"name":"RSA_KEY_LEN","features":[426]},{"name":"SAC_CERT_V1","features":[426]},{"name":"SAC_CERT_X509","features":[426]},{"name":"SAC_MAC_LEN","features":[426]},{"name":"SAC_PROTOCOL_V1","features":[426]},{"name":"SAC_PROTOCOL_WMDM","features":[426]},{"name":"SAC_SESSION_KEYLEN","features":[426]},{"name":"SCP_EVENTID_ACQSECURECLOCK","features":[426]},{"name":"SCP_EVENTID_DRMINFO","features":[426]},{"name":"SCP_EVENTID_NEEDTOINDIV","features":[426]},{"name":"SCP_PARAMID_DRMVERSION","features":[426]},{"name":"WMDMDATETIME","features":[426]},{"name":"WMDMDetermineMaxPropStringLen","features":[426]},{"name":"WMDMDevice","features":[426]},{"name":"WMDMDeviceEnum","features":[426]},{"name":"WMDMID","features":[426]},{"name":"WMDMID_LENGTH","features":[426]},{"name":"WMDMLogger","features":[426]},{"name":"WMDMMessage","features":[426]},{"name":"WMDMMetadataView","features":[426]},{"name":"WMDMRIGHTS","features":[426]},{"name":"WMDMStorage","features":[426]},{"name":"WMDMStorageEnum","features":[426]},{"name":"WMDMStorageGlobal","features":[426]},{"name":"WMDM_APP_REVOKED","features":[426]},{"name":"WMDM_CONTENT_FILE","features":[426]},{"name":"WMDM_CONTENT_FOLDER","features":[426]},{"name":"WMDM_CONTENT_OPERATIONINTERFACE","features":[426]},{"name":"WMDM_DEVICECAP_CANPAUSE","features":[426]},{"name":"WMDM_DEVICECAP_CANPLAY","features":[426]},{"name":"WMDM_DEVICECAP_CANRECORD","features":[426]},{"name":"WMDM_DEVICECAP_CANRESUME","features":[426]},{"name":"WMDM_DEVICECAP_CANSEEK","features":[426]},{"name":"WMDM_DEVICECAP_CANSTOP","features":[426]},{"name":"WMDM_DEVICECAP_CANSTREAMPLAY","features":[426]},{"name":"WMDM_DEVICECAP_CANSTREAMRECORD","features":[426]},{"name":"WMDM_DEVICECAP_HASSECURECLOCK","features":[426]},{"name":"WMDM_DEVICE_PROTOCOL_MSC","features":[426]},{"name":"WMDM_DEVICE_PROTOCOL_MTP","features":[426]},{"name":"WMDM_DEVICE_PROTOCOL_RAPI","features":[426]},{"name":"WMDM_DEVICE_TYPE_DECODE","features":[426]},{"name":"WMDM_DEVICE_TYPE_ENCODE","features":[426]},{"name":"WMDM_DEVICE_TYPE_FILELISTRESYNC","features":[426]},{"name":"WMDM_DEVICE_TYPE_NONREENTRANT","features":[426]},{"name":"WMDM_DEVICE_TYPE_NONSDMI","features":[426]},{"name":"WMDM_DEVICE_TYPE_PLAYBACK","features":[426]},{"name":"WMDM_DEVICE_TYPE_RECORD","features":[426]},{"name":"WMDM_DEVICE_TYPE_SDMI","features":[426]},{"name":"WMDM_DEVICE_TYPE_STORAGE","features":[426]},{"name":"WMDM_DEVICE_TYPE_VIEW_PREF_METADATAVIEW","features":[426]},{"name":"WMDM_DEVICE_TYPE_VIRTUAL","features":[426]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_ANY","features":[426]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_ENUM","features":[426]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_FORM","features":[426]},{"name":"WMDM_ENUM_PROP_VALID_VALUES_RANGE","features":[426]},{"name":"WMDM_E_BUFFERTOOSMALL","features":[426]},{"name":"WMDM_E_BUSY","features":[426]},{"name":"WMDM_E_CALL_OUT_OF_SEQUENCE","features":[426]},{"name":"WMDM_E_CANTOPEN_PMSN_SERVICE_PIPE","features":[426]},{"name":"WMDM_E_INCORRECT_APPSEC","features":[426]},{"name":"WMDM_E_INCORRECT_RIGHTS","features":[426]},{"name":"WMDM_E_INTERFACEDEAD","features":[426]},{"name":"WMDM_E_INVALIDTYPE","features":[426]},{"name":"WMDM_E_LICENSE_EXPIRED","features":[426]},{"name":"WMDM_E_LICENSE_NOTEXIST","features":[426]},{"name":"WMDM_E_MAC_CHECK_FAILED","features":[426]},{"name":"WMDM_E_MOREDATA","features":[426]},{"name":"WMDM_E_NORIGHTS","features":[426]},{"name":"WMDM_E_NOTCERTIFIED","features":[426]},{"name":"WMDM_E_NOTSUPPORTED","features":[426]},{"name":"WMDM_E_PROCESSFAILED","features":[426]},{"name":"WMDM_E_REVOKED","features":[426]},{"name":"WMDM_E_SDMI_NOMORECOPIES","features":[426]},{"name":"WMDM_E_SDMI_TRIGGER","features":[426]},{"name":"WMDM_E_TOO_MANY_SESSIONS","features":[426]},{"name":"WMDM_E_USER_CANCELLED","features":[426]},{"name":"WMDM_FILE_ATTR_AUDIO","features":[426]},{"name":"WMDM_FILE_ATTR_AUDIOBOOK","features":[426]},{"name":"WMDM_FILE_ATTR_CANDELETE","features":[426]},{"name":"WMDM_FILE_ATTR_CANMOVE","features":[426]},{"name":"WMDM_FILE_ATTR_CANPLAY","features":[426]},{"name":"WMDM_FILE_ATTR_CANREAD","features":[426]},{"name":"WMDM_FILE_ATTR_CANRENAME","features":[426]},{"name":"WMDM_FILE_ATTR_DATA","features":[426]},{"name":"WMDM_FILE_ATTR_FILE","features":[426]},{"name":"WMDM_FILE_ATTR_FOLDER","features":[426]},{"name":"WMDM_FILE_ATTR_HIDDEN","features":[426]},{"name":"WMDM_FILE_ATTR_LINK","features":[426]},{"name":"WMDM_FILE_ATTR_MUSIC","features":[426]},{"name":"WMDM_FILE_ATTR_READONLY","features":[426]},{"name":"WMDM_FILE_ATTR_SYSTEM","features":[426]},{"name":"WMDM_FILE_ATTR_VIDEO","features":[426]},{"name":"WMDM_FILE_CREATE_OVERWRITE","features":[426]},{"name":"WMDM_FIND_SCOPE","features":[426]},{"name":"WMDM_FIND_SCOPE_GLOBAL","features":[426]},{"name":"WMDM_FIND_SCOPE_IMMEDIATE_CHILDREN","features":[426]},{"name":"WMDM_FORMATCODE","features":[426]},{"name":"WMDM_FORMATCODE_3G2","features":[426]},{"name":"WMDM_FORMATCODE_3G2A","features":[426]},{"name":"WMDM_FORMATCODE_3GP","features":[426]},{"name":"WMDM_FORMATCODE_3GPA","features":[426]},{"name":"WMDM_FORMATCODE_AAC","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTAUDIOALBUM","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTAUDIOVIDEOPLAYLIST","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTCALENDARITEM","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTCHAPTEREDPRODUCTION","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTCONTACT","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTCONTACTGROUP","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTDOCUMENT","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTIMAGEALBUM","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTMESSAGE","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTMESSAGEFOLDER","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTMULTIMEDIAALBUM","features":[426]},{"name":"WMDM_FORMATCODE_ABSTRACTVIDEOALBUM","features":[426]},{"name":"WMDM_FORMATCODE_AIFF","features":[426]},{"name":"WMDM_FORMATCODE_ALLIMAGES","features":[426]},{"name":"WMDM_FORMATCODE_AMR","features":[426]},{"name":"WMDM_FORMATCODE_ASF","features":[426]},{"name":"WMDM_FORMATCODE_ASSOCIATION","features":[426]},{"name":"WMDM_FORMATCODE_ASXPLAYLIST","features":[426]},{"name":"WMDM_FORMATCODE_ATSCTS","features":[426]},{"name":"WMDM_FORMATCODE_AUDIBLE","features":[426]},{"name":"WMDM_FORMATCODE_AVCHD","features":[426]},{"name":"WMDM_FORMATCODE_AVI","features":[426]},{"name":"WMDM_FORMATCODE_DPOF","features":[426]},{"name":"WMDM_FORMATCODE_DVBTS","features":[426]},{"name":"WMDM_FORMATCODE_EXECUTABLE","features":[426]},{"name":"WMDM_FORMATCODE_FLAC","features":[426]},{"name":"WMDM_FORMATCODE_HTML","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_BMP","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_CIFF","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_EXIF","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_FLASHPIX","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_GIF","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_JFIF","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_JP2","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_JPX","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_PCD","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_PICT","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_PNG","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_RESERVED_FIRST","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_RESERVED_LAST","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_TIFF","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_TIFFEP","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_TIFFIT","features":[426]},{"name":"WMDM_FORMATCODE_IMAGE_UNDEFINED","features":[426]},{"name":"WMDM_FORMATCODE_JPEGXR","features":[426]},{"name":"WMDM_FORMATCODE_M3UPLAYLIST","features":[426]},{"name":"WMDM_FORMATCODE_M4A","features":[426]},{"name":"WMDM_FORMATCODE_MEDIA_CAST","features":[426]},{"name":"WMDM_FORMATCODE_MHTCOMPILEDHTMLDOCUMENT","features":[426]},{"name":"WMDM_FORMATCODE_MICROSOFTEXCELSPREADSHEET","features":[426]},{"name":"WMDM_FORMATCODE_MICROSOFTPOWERPOINTDOCUMENT","features":[426]},{"name":"WMDM_FORMATCODE_MICROSOFTWORDDOCUMENT","features":[426]},{"name":"WMDM_FORMATCODE_MK3D","features":[426]},{"name":"WMDM_FORMATCODE_MKA","features":[426]},{"name":"WMDM_FORMATCODE_MKV","features":[426]},{"name":"WMDM_FORMATCODE_MP2","features":[426]},{"name":"WMDM_FORMATCODE_MP3","features":[426]},{"name":"WMDM_FORMATCODE_MP4","features":[426]},{"name":"WMDM_FORMATCODE_MPEG","features":[426]},{"name":"WMDM_FORMATCODE_MPLPLAYLIST","features":[426]},{"name":"WMDM_FORMATCODE_NOTUSED","features":[426]},{"name":"WMDM_FORMATCODE_OGG","features":[426]},{"name":"WMDM_FORMATCODE_PLSPLAYLIST","features":[426]},{"name":"WMDM_FORMATCODE_QCELP","features":[426]},{"name":"WMDM_FORMATCODE_RESERVED_FIRST","features":[426]},{"name":"WMDM_FORMATCODE_RESERVED_LAST","features":[426]},{"name":"WMDM_FORMATCODE_SCRIPT","features":[426]},{"name":"WMDM_FORMATCODE_SECTION","features":[426]},{"name":"WMDM_FORMATCODE_TEXT","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINED","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDAUDIO","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDCALENDARITEM","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDCOLLECTION","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDCONTACT","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDDOCUMENT","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDFIRMWARE","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDMESSAGE","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDVIDEO","features":[426]},{"name":"WMDM_FORMATCODE_UNDEFINEDWINDOWSEXECUTABLE","features":[426]},{"name":"WMDM_FORMATCODE_VCALENDAR1","features":[426]},{"name":"WMDM_FORMATCODE_VCALENDAR2","features":[426]},{"name":"WMDM_FORMATCODE_VCARD2","features":[426]},{"name":"WMDM_FORMATCODE_VCARD3","features":[426]},{"name":"WMDM_FORMATCODE_WAVE","features":[426]},{"name":"WMDM_FORMATCODE_WBMP","features":[426]},{"name":"WMDM_FORMATCODE_WINDOWSIMAGEFORMAT","features":[426]},{"name":"WMDM_FORMATCODE_WMA","features":[426]},{"name":"WMDM_FORMATCODE_WMV","features":[426]},{"name":"WMDM_FORMATCODE_WPLPLAYLIST","features":[426]},{"name":"WMDM_FORMATCODE_XMLDOCUMENT","features":[426]},{"name":"WMDM_FORMAT_CAPABILITY","features":[426]},{"name":"WMDM_GET_FORMAT_SUPPORT_AUDIO","features":[426]},{"name":"WMDM_GET_FORMAT_SUPPORT_FILE","features":[426]},{"name":"WMDM_GET_FORMAT_SUPPORT_VIDEO","features":[426]},{"name":"WMDM_LOG_NOTIMESTAMP","features":[426]},{"name":"WMDM_LOG_SEV_ERROR","features":[426]},{"name":"WMDM_LOG_SEV_INFO","features":[426]},{"name":"WMDM_LOG_SEV_WARN","features":[426]},{"name":"WMDM_MAC_LENGTH","features":[426]},{"name":"WMDM_MODE_BLOCK","features":[426]},{"name":"WMDM_MODE_PROGRESS","features":[426]},{"name":"WMDM_MODE_QUERY","features":[426]},{"name":"WMDM_MODE_RECURSIVE","features":[426]},{"name":"WMDM_MODE_THREAD","features":[426]},{"name":"WMDM_MODE_TRANSFER_PROTECTED","features":[426]},{"name":"WMDM_MODE_TRANSFER_UNPROTECTED","features":[426]},{"name":"WMDM_MSG_DEVICE_ARRIVAL","features":[426]},{"name":"WMDM_MSG_DEVICE_REMOVAL","features":[426]},{"name":"WMDM_MSG_MEDIA_ARRIVAL","features":[426]},{"name":"WMDM_MSG_MEDIA_REMOVAL","features":[426]},{"name":"WMDM_POWER_CAP_BATTERY","features":[426]},{"name":"WMDM_POWER_CAP_EXTERNAL","features":[426]},{"name":"WMDM_POWER_IS_BATTERY","features":[426]},{"name":"WMDM_POWER_IS_EXTERNAL","features":[426]},{"name":"WMDM_POWER_PERCENT_AVAILABLE","features":[426]},{"name":"WMDM_PROP_CONFIG","features":[426]},{"name":"WMDM_PROP_DESC","features":[426]},{"name":"WMDM_PROP_VALUES_ENUM","features":[426]},{"name":"WMDM_PROP_VALUES_RANGE","features":[426]},{"name":"WMDM_RIGHTS_COPY_TO_CD","features":[426]},{"name":"WMDM_RIGHTS_COPY_TO_NON_SDMI_DEVICE","features":[426]},{"name":"WMDM_RIGHTS_COPY_TO_SDMI_DEVICE","features":[426]},{"name":"WMDM_RIGHTS_EXPIRATIONDATE","features":[426]},{"name":"WMDM_RIGHTS_FREESERIALIDS","features":[426]},{"name":"WMDM_RIGHTS_GROUPID","features":[426]},{"name":"WMDM_RIGHTS_NAMEDSERIALIDS","features":[426]},{"name":"WMDM_RIGHTS_PLAYBACKCOUNT","features":[426]},{"name":"WMDM_RIGHTS_PLAY_ON_PC","features":[426]},{"name":"WMDM_SCP_DECIDE_DATA","features":[426]},{"name":"WMDM_SCP_DRMINFO_NOT_DRMPROTECTED","features":[426]},{"name":"WMDM_SCP_DRMINFO_V1HEADER","features":[426]},{"name":"WMDM_SCP_DRMINFO_V2HEADER","features":[426]},{"name":"WMDM_SCP_EXAMINE_DATA","features":[426]},{"name":"WMDM_SCP_EXAMINE_EXTENSION","features":[426]},{"name":"WMDM_SCP_NO_MORE_CHANGES","features":[426]},{"name":"WMDM_SCP_PROTECTED_OUTPUT","features":[426]},{"name":"WMDM_SCP_REVOKED","features":[426]},{"name":"WMDM_SCP_RIGHTS_DATA","features":[426]},{"name":"WMDM_SCP_TRANSFER_OBJECTDATA","features":[426]},{"name":"WMDM_SCP_UNPROTECTED_OUTPUT","features":[426]},{"name":"WMDM_SEEK_BEGIN","features":[426]},{"name":"WMDM_SEEK_CURRENT","features":[426]},{"name":"WMDM_SEEK_END","features":[426]},{"name":"WMDM_SEEK_REMOTECONTROL","features":[426]},{"name":"WMDM_SEEK_STREAMINGAUDIO","features":[426]},{"name":"WMDM_SERVICE_PROVIDER_VENDOR_MICROSOFT","features":[426]},{"name":"WMDM_SESSION_CUSTOM","features":[426]},{"name":"WMDM_SESSION_DELETE","features":[426]},{"name":"WMDM_SESSION_NONE","features":[426]},{"name":"WMDM_SESSION_TRANSFER_FROM_DEVICE","features":[426]},{"name":"WMDM_SESSION_TRANSFER_TO_DEVICE","features":[426]},{"name":"WMDM_SESSION_TYPE","features":[426]},{"name":"WMDM_SP_REVOKED","features":[426]},{"name":"WMDM_STATUS_BUSY","features":[426]},{"name":"WMDM_STATUS_DEVICECONTROL_PAUSED","features":[426]},{"name":"WMDM_STATUS_DEVICECONTROL_PLAYING","features":[426]},{"name":"WMDM_STATUS_DEVICECONTROL_RECORDING","features":[426]},{"name":"WMDM_STATUS_DEVICECONTROL_REMOTE","features":[426]},{"name":"WMDM_STATUS_DEVICECONTROL_STREAM","features":[426]},{"name":"WMDM_STATUS_DEVICE_NOTPRESENT","features":[426]},{"name":"WMDM_STATUS_READY","features":[426]},{"name":"WMDM_STATUS_STORAGECONTROL_APPENDING","features":[426]},{"name":"WMDM_STATUS_STORAGECONTROL_DELETING","features":[426]},{"name":"WMDM_STATUS_STORAGECONTROL_INSERTING","features":[426]},{"name":"WMDM_STATUS_STORAGECONTROL_MOVING","features":[426]},{"name":"WMDM_STATUS_STORAGECONTROL_READING","features":[426]},{"name":"WMDM_STATUS_STORAGE_BROKEN","features":[426]},{"name":"WMDM_STATUS_STORAGE_INITIALIZING","features":[426]},{"name":"WMDM_STATUS_STORAGE_NOTPRESENT","features":[426]},{"name":"WMDM_STATUS_STORAGE_NOTSUPPORTED","features":[426]},{"name":"WMDM_STATUS_STORAGE_UNFORMATTED","features":[426]},{"name":"WMDM_STORAGECAP_FILELIMITEXISTS","features":[426]},{"name":"WMDM_STORAGECAP_FILESINFOLDERS","features":[426]},{"name":"WMDM_STORAGECAP_FILESINROOT","features":[426]},{"name":"WMDM_STORAGECAP_FOLDERLIMITEXISTS","features":[426]},{"name":"WMDM_STORAGECAP_FOLDERSINFOLDERS","features":[426]},{"name":"WMDM_STORAGECAP_FOLDERSINROOT","features":[426]},{"name":"WMDM_STORAGECAP_NOT_INITIALIZABLE","features":[426]},{"name":"WMDM_STORAGECONTROL_INSERTAFTER","features":[426]},{"name":"WMDM_STORAGECONTROL_INSERTBEFORE","features":[426]},{"name":"WMDM_STORAGECONTROL_INSERTINTO","features":[426]},{"name":"WMDM_STORAGE_ATTR_CANEDITMETADATA","features":[426]},{"name":"WMDM_STORAGE_ATTR_FILESYSTEM","features":[426]},{"name":"WMDM_STORAGE_ATTR_FOLDERS","features":[426]},{"name":"WMDM_STORAGE_ATTR_HAS_FILES","features":[426]},{"name":"WMDM_STORAGE_ATTR_HAS_FOLDERS","features":[426]},{"name":"WMDM_STORAGE_ATTR_NONREMOVABLE","features":[426]},{"name":"WMDM_STORAGE_ATTR_REMOVABLE","features":[426]},{"name":"WMDM_STORAGE_ATTR_VIRTUAL","features":[426]},{"name":"WMDM_STORAGE_CONTAINS_DEFAULT","features":[426]},{"name":"WMDM_STORAGE_ENUM_MODE","features":[426]},{"name":"WMDM_STORAGE_IS_DEFAULT","features":[426]},{"name":"WMDM_S_NOT_ALL_PROPERTIES_APPLIED","features":[426]},{"name":"WMDM_S_NOT_ALL_PROPERTIES_RETRIEVED","features":[426]},{"name":"WMDM_TAG_DATATYPE","features":[426]},{"name":"WMDM_TYPE_BINARY","features":[426]},{"name":"WMDM_TYPE_BOOL","features":[426]},{"name":"WMDM_TYPE_DATE","features":[426]},{"name":"WMDM_TYPE_DWORD","features":[426]},{"name":"WMDM_TYPE_GUID","features":[426]},{"name":"WMDM_TYPE_QWORD","features":[426]},{"name":"WMDM_TYPE_STRING","features":[426]},{"name":"WMDM_TYPE_WORD","features":[426]},{"name":"WMDM_WMDM_REVOKED","features":[426]},{"name":"WMFILECAPABILITIES","features":[426]},{"name":"g_wszAudioWAVECodec","features":[426]},{"name":"g_wszVideoFourCCCodec","features":[426]},{"name":"g_wszWMDMAlbumArt","features":[426]},{"name":"g_wszWMDMAlbumArtist","features":[426]},{"name":"g_wszWMDMAlbumCoverData","features":[426]},{"name":"g_wszWMDMAlbumCoverDuration","features":[426]},{"name":"g_wszWMDMAlbumCoverFormat","features":[426]},{"name":"g_wszWMDMAlbumCoverHeight","features":[426]},{"name":"g_wszWMDMAlbumCoverSize","features":[426]},{"name":"g_wszWMDMAlbumCoverWidth","features":[426]},{"name":"g_wszWMDMAlbumTitle","features":[426]},{"name":"g_wszWMDMAudioBitDepth","features":[426]},{"name":"g_wszWMDMAuthor","features":[426]},{"name":"g_wszWMDMAuthorDate","features":[426]},{"name":"g_wszWMDMBitRateType","features":[426]},{"name":"g_wszWMDMBitrate","features":[426]},{"name":"g_wszWMDMBlockAlignment","features":[426]},{"name":"g_wszWMDMBufferSize","features":[426]},{"name":"g_wszWMDMBuyNow","features":[426]},{"name":"g_wszWMDMByteBookmark","features":[426]},{"name":"g_wszWMDMCategory","features":[426]},{"name":"g_wszWMDMCodec","features":[426]},{"name":"g_wszWMDMCollectionID","features":[426]},{"name":"g_wszWMDMComposer","features":[426]},{"name":"g_wszWMDMDRMId","features":[426]},{"name":"g_wszWMDMDataLength","features":[426]},{"name":"g_wszWMDMDataOffset","features":[426]},{"name":"g_wszWMDMDataUnits","features":[426]},{"name":"g_wszWMDMDescription","features":[426]},{"name":"g_wszWMDMDestinationURL","features":[426]},{"name":"g_wszWMDMDeviceFirmwareVersion","features":[426]},{"name":"g_wszWMDMDeviceFriendlyName","features":[426]},{"name":"g_wszWMDMDeviceModelName","features":[426]},{"name":"g_wszWMDMDevicePlayCount","features":[426]},{"name":"g_wszWMDMDeviceProtocol","features":[426]},{"name":"g_wszWMDMDeviceRevocationInfo","features":[426]},{"name":"g_wszWMDMDeviceServiceProviderVendor","features":[426]},{"name":"g_wszWMDMDeviceVendorExtension","features":[426]},{"name":"g_wszWMDMDuration","features":[426]},{"name":"g_wszWMDMEditor","features":[426]},{"name":"g_wszWMDMEncodingProfile","features":[426]},{"name":"g_wszWMDMFileAttributes","features":[426]},{"name":"g_wszWMDMFileCreationDate","features":[426]},{"name":"g_wszWMDMFileName","features":[426]},{"name":"g_wszWMDMFileSize","features":[426]},{"name":"g_wszWMDMFormatCode","features":[426]},{"name":"g_wszWMDMFormatsSupported","features":[426]},{"name":"g_wszWMDMFormatsSupportedAreOrdered","features":[426]},{"name":"g_wszWMDMFrameRate","features":[426]},{"name":"g_wszWMDMGenre","features":[426]},{"name":"g_wszWMDMHeight","features":[426]},{"name":"g_wszWMDMIsProtected","features":[426]},{"name":"g_wszWMDMIsRepeat","features":[426]},{"name":"g_wszWMDMKeyFrameDistance","features":[426]},{"name":"g_wszWMDMLastModifiedDate","features":[426]},{"name":"g_wszWMDMMediaClassSecondaryID","features":[426]},{"name":"g_wszWMDMMediaCredits","features":[426]},{"name":"g_wszWMDMMediaGuid","features":[426]},{"name":"g_wszWMDMMediaOriginalBroadcastDateTime","features":[426]},{"name":"g_wszWMDMMediaOriginalChannel","features":[426]},{"name":"g_wszWMDMMediaStationName","features":[426]},{"name":"g_wszWMDMMetaGenre","features":[426]},{"name":"g_wszWMDMNonConsumable","features":[426]},{"name":"g_wszWMDMNumChannels","features":[426]},{"name":"g_wszWMDMObjectBookmark","features":[426]},{"name":"g_wszWMDMOwner","features":[426]},{"name":"g_wszWMDMParentalRating","features":[426]},{"name":"g_wszWMDMPersistentUniqueID","features":[426]},{"name":"g_wszWMDMPlayCount","features":[426]},{"name":"g_wszWMDMProviderCopyright","features":[426]},{"name":"g_wszWMDMQualitySetting","features":[426]},{"name":"g_wszWMDMSampleRate","features":[426]},{"name":"g_wszWMDMScanType","features":[426]},{"name":"g_wszWMDMSourceURL","features":[426]},{"name":"g_wszWMDMSubTitle","features":[426]},{"name":"g_wszWMDMSubTitleDescription","features":[426]},{"name":"g_wszWMDMSupportedDeviceProperties","features":[426]},{"name":"g_wszWMDMSyncID","features":[426]},{"name":"g_wszWMDMSyncRelationshipID","features":[426]},{"name":"g_wszWMDMSyncTime","features":[426]},{"name":"g_wszWMDMTimeBookmark","features":[426]},{"name":"g_wszWMDMTimeToLive","features":[426]},{"name":"g_wszWMDMTitle","features":[426]},{"name":"g_wszWMDMTotalBitrate","features":[426]},{"name":"g_wszWMDMTrack","features":[426]},{"name":"g_wszWMDMTrackMood","features":[426]},{"name":"g_wszWMDMUserEffectiveRating","features":[426]},{"name":"g_wszWMDMUserLastPlayTime","features":[426]},{"name":"g_wszWMDMUserRating","features":[426]},{"name":"g_wszWMDMUserRatingOnDevice","features":[426]},{"name":"g_wszWMDMVideoBitrate","features":[426]},{"name":"g_wszWMDMWebmaster","features":[426]},{"name":"g_wszWMDMWidth","features":[426]},{"name":"g_wszWMDMYear","features":[426]},{"name":"g_wszWMDMediaClassPrimaryID","features":[426]},{"name":"g_wszWPDPassthroughPropertyValues","features":[426]}],"432":[{"name":"ADVISE_CLIPPING","features":[427]},{"name":"ADVISE_COLORKEY","features":[427]},{"name":"ADVISE_DISPLAY_CHANGE","features":[427]},{"name":"ADVISE_NONE","features":[427]},{"name":"ADVISE_PALETTE","features":[427]},{"name":"ADVISE_POSITION","features":[427]},{"name":"ADVISE_TYPE","features":[427]},{"name":"ALLOCATOR_PROPERTIES","features":[427]},{"name":"AMAP_3D_TARGET","features":[427]},{"name":"AMAP_ALLOW_SYSMEM","features":[427]},{"name":"AMAP_DIRECTED_FLIP","features":[427]},{"name":"AMAP_DXVA_TARGET","features":[427]},{"name":"AMAP_FORCE_SYSMEM","features":[427]},{"name":"AMAP_PIXELFORMAT_VALID","features":[427]},{"name":"AMCONTROL_COLORINFO_PRESENT","features":[427]},{"name":"AMCONTROL_PAD_TO_16x9","features":[427]},{"name":"AMCONTROL_PAD_TO_4x3","features":[427]},{"name":"AMCONTROL_USED","features":[427]},{"name":"AMCOPPCommand","features":[427]},{"name":"AMCOPPSignature","features":[427]},{"name":"AMCOPPStatusInput","features":[427]},{"name":"AMCOPPStatusOutput","features":[427]},{"name":"AMCOPYPROTECT_RestrictDuplication","features":[427]},{"name":"AMDDS_ALL","features":[427]},{"name":"AMDDS_DCIPS","features":[427]},{"name":"AMDDS_DEFAULT","features":[427]},{"name":"AMDDS_NONE","features":[427]},{"name":"AMDDS_PS","features":[427]},{"name":"AMDDS_RGBFLP","features":[427]},{"name":"AMDDS_RGBOFF","features":[427]},{"name":"AMDDS_RGBOVR","features":[427]},{"name":"AMDDS_YUVFLP","features":[427]},{"name":"AMDDS_YUVOFF","features":[427]},{"name":"AMDDS_YUVOVR","features":[427]},{"name":"AMExtendedSeekingCapabilities","features":[427]},{"name":"AMF_AUTOMATICGAIN","features":[427]},{"name":"AMGETERRORTEXTPROCA","features":[305,427]},{"name":"AMGETERRORTEXTPROCW","features":[305,427]},{"name":"AMGetErrorTextA","features":[427]},{"name":"AMGetErrorTextW","features":[427]},{"name":"AMINTERLACE_1FieldPerSample","features":[427]},{"name":"AMINTERLACE_DisplayModeBobOnly","features":[427]},{"name":"AMINTERLACE_DisplayModeBobOrWeave","features":[427]},{"name":"AMINTERLACE_DisplayModeMask","features":[427]},{"name":"AMINTERLACE_DisplayModeWeaveOnly","features":[427]},{"name":"AMINTERLACE_Field1First","features":[427]},{"name":"AMINTERLACE_FieldPatBothIrregular","features":[427]},{"name":"AMINTERLACE_FieldPatBothRegular","features":[427]},{"name":"AMINTERLACE_FieldPatField1Only","features":[427]},{"name":"AMINTERLACE_FieldPatField2Only","features":[427]},{"name":"AMINTERLACE_FieldPatternMask","features":[427]},{"name":"AMINTERLACE_IsInterlaced","features":[427]},{"name":"AMINTERLACE_UNUSED","features":[427]},{"name":"AMMSF_ADDDEFAULTRENDERER","features":[427]},{"name":"AMMSF_CREATEPEER","features":[427]},{"name":"AMMSF_MMS_INIT_FLAGS","features":[427]},{"name":"AMMSF_MS_FLAGS","features":[427]},{"name":"AMMSF_NOCLOCK","features":[427]},{"name":"AMMSF_NOGRAPHTHREAD","features":[427]},{"name":"AMMSF_NORENDER","features":[427]},{"name":"AMMSF_NOSTALL","features":[427]},{"name":"AMMSF_RENDERALLSTREAMS","features":[427]},{"name":"AMMSF_RENDERTOEXISTING","features":[427]},{"name":"AMMSF_RENDERTYPEMASK","features":[427]},{"name":"AMMSF_RENDER_FLAGS","features":[427]},{"name":"AMMSF_RUN","features":[427]},{"name":"AMMSF_STOPIFNOSAMPLES","features":[427]},{"name":"AMOVERFX_DEINTERLACE","features":[427]},{"name":"AMOVERFX_MIRRORLEFTRIGHT","features":[427]},{"name":"AMOVERFX_MIRRORUPDOWN","features":[427]},{"name":"AMOVERFX_NOFX","features":[427]},{"name":"AMOVERLAYFX","features":[427]},{"name":"AMPLAYLISTEVENT_BREAK","features":[427]},{"name":"AMPLAYLISTEVENT_MASK","features":[427]},{"name":"AMPLAYLISTEVENT_NEXT","features":[427]},{"name":"AMPLAYLISTEVENT_REFRESH","features":[427]},{"name":"AMPLAYLISTEVENT_RESUME","features":[427]},{"name":"AMPLAYLISTITEM_CANBIND","features":[427]},{"name":"AMPLAYLISTITEM_CANSKIP","features":[427]},{"name":"AMPLAYLIST_FORCEBANNER","features":[427]},{"name":"AMPLAYLIST_STARTINSCANMODE","features":[427]},{"name":"AMPROPERTY_PIN","features":[427]},{"name":"AMPROPERTY_PIN_CATEGORY","features":[427]},{"name":"AMPROPERTY_PIN_MEDIUM","features":[427]},{"name":"AMPlayListEventFlags","features":[427]},{"name":"AMPlayListFlags","features":[427]},{"name":"AMPlayListItemFlags","features":[427]},{"name":"AMRESCTL_RESERVEFLAGS_RESERVE","features":[427]},{"name":"AMRESCTL_RESERVEFLAGS_UNRESERVE","features":[427]},{"name":"AMSTREAMSELECTENABLE_ENABLE","features":[427]},{"name":"AMSTREAMSELECTENABLE_ENABLEALL","features":[427]},{"name":"AMSTREAMSELECTINFO_ENABLED","features":[427]},{"name":"AMSTREAMSELECTINFO_EXCLUSIVE","features":[427]},{"name":"AMTUNER_EVENT_CHANGED","features":[427]},{"name":"AMTUNER_HASNOSIGNALSTRENGTH","features":[427]},{"name":"AMTUNER_MODE_AM_RADIO","features":[427]},{"name":"AMTUNER_MODE_DEFAULT","features":[427]},{"name":"AMTUNER_MODE_DSS","features":[427]},{"name":"AMTUNER_MODE_FM_RADIO","features":[427]},{"name":"AMTUNER_MODE_TV","features":[427]},{"name":"AMTUNER_NOSIGNAL","features":[427]},{"name":"AMTUNER_SIGNALPRESENT","features":[427]},{"name":"AMTUNER_SUBCHAN_DEFAULT","features":[427]},{"name":"AMTUNER_SUBCHAN_NO_TUNE","features":[427]},{"name":"AMTVAUDIO_EVENT_CHANGED","features":[427]},{"name":"AMTVAUDIO_MODE_LANG_A","features":[427]},{"name":"AMTVAUDIO_MODE_LANG_B","features":[427]},{"name":"AMTVAUDIO_MODE_LANG_C","features":[427]},{"name":"AMTVAUDIO_MODE_MONO","features":[427]},{"name":"AMTVAUDIO_MODE_STEREO","features":[427]},{"name":"AMTVAUDIO_PRESET_LANG_A","features":[427]},{"name":"AMTVAUDIO_PRESET_LANG_B","features":[427]},{"name":"AMTVAUDIO_PRESET_LANG_C","features":[427]},{"name":"AMTVAUDIO_PRESET_STEREO","features":[427]},{"name":"AMTVAudioEventType","features":[427]},{"name":"AMTunerEventType","features":[427]},{"name":"AMTunerModeType","features":[427]},{"name":"AMTunerSignalStrength","features":[427]},{"name":"AMTunerSubChannel","features":[427]},{"name":"AMVABUFFERINFO","features":[427]},{"name":"AMVABeginFrameInfo","features":[427]},{"name":"AMVACompBufferInfo","features":[315,427]},{"name":"AMVAEndFrameInfo","features":[427]},{"name":"AMVAInternalMemInfo","features":[427]},{"name":"AMVAUncompBufferInfo","features":[315,427]},{"name":"AMVAUncompDataInfo","features":[315,427]},{"name":"AMVA_QUERYRENDERSTATUSF_READ","features":[427]},{"name":"AMVA_TYPEINDEX_OUTPUTFRAME","features":[427]},{"name":"AMVPDATAINFO","features":[305,427]},{"name":"AMVPDIMINFO","features":[305,427]},{"name":"AMVPSIZE","features":[427]},{"name":"AMVP_BEST_BANDWIDTH","features":[427]},{"name":"AMVP_DO_NOT_CARE","features":[427]},{"name":"AMVP_INPUT_SAME_AS_OUTPUT","features":[427]},{"name":"AMVP_MODE","features":[427]},{"name":"AMVP_MODE_BOBINTERLEAVED","features":[427]},{"name":"AMVP_MODE_BOBNONINTERLEAVED","features":[427]},{"name":"AMVP_MODE_SKIPEVEN","features":[427]},{"name":"AMVP_MODE_SKIPODD","features":[427]},{"name":"AMVP_MODE_WEAVE","features":[427]},{"name":"AMVP_SELECT_FORMAT_BY","features":[427]},{"name":"AM_AC3_ALTERNATE_AUDIO","features":[305,427]},{"name":"AM_AC3_ALTERNATE_AUDIO_1","features":[427]},{"name":"AM_AC3_ALTERNATE_AUDIO_2","features":[427]},{"name":"AM_AC3_ALTERNATE_AUDIO_BOTH","features":[427]},{"name":"AM_AC3_BIT_STREAM_MODE","features":[427]},{"name":"AM_AC3_DIALOGUE_LEVEL","features":[427]},{"name":"AM_AC3_DOWNMIX","features":[305,427]},{"name":"AM_AC3_ERROR_CONCEALMENT","features":[305,427]},{"name":"AM_AC3_ROOM_TYPE","features":[305,427]},{"name":"AM_AC3_SERVICE_COMMENTARY","features":[427]},{"name":"AM_AC3_SERVICE_DIALOG_ONLY","features":[427]},{"name":"AM_AC3_SERVICE_EMERGENCY_FLASH","features":[427]},{"name":"AM_AC3_SERVICE_HEARING_IMPAIRED","features":[427]},{"name":"AM_AC3_SERVICE_MAIN_AUDIO","features":[427]},{"name":"AM_AC3_SERVICE_NO_DIALOG","features":[427]},{"name":"AM_AC3_SERVICE_VISUALLY_IMPAIRED","features":[427]},{"name":"AM_AC3_SERVICE_VOICE_OVER","features":[427]},{"name":"AM_ARMODE_CROP","features":[427]},{"name":"AM_ARMODE_LETTER_BOX","features":[427]},{"name":"AM_ARMODE_STRETCHED","features":[427]},{"name":"AM_ARMODE_STRETCHED_AS_PRIMARY","features":[427]},{"name":"AM_ASPECT_RATIO_MODE","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_BREAK_COUNT","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_BUFFERFULLNESS","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_DISCONTINUITIES","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_JITTER","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_LAST_BUFFER_DUR","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_SILENCE_DUR","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_ACCUMERROR","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_DROPWRITE_DUR","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_HIGHLOWERROR","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_LASTHIGHLOWERROR","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_MODE","features":[427]},{"name":"AM_AUDREND_STAT_PARAM_SLAVE_RATE","features":[427]},{"name":"AM_COLCON","features":[427]},{"name":"AM_CONTENTPROPERTY_AUTHOR","features":[427]},{"name":"AM_CONTENTPROPERTY_COPYRIGHT","features":[427]},{"name":"AM_CONTENTPROPERTY_DESCRIPTION","features":[427]},{"name":"AM_CONTENTPROPERTY_TITLE","features":[427]},{"name":"AM_COPY_MACROVISION","features":[427]},{"name":"AM_COPY_MACROVISION_LEVEL","features":[427]},{"name":"AM_DIGITAL_CP","features":[427]},{"name":"AM_DIGITAL_CP_DVD_COMPLIANT","features":[427]},{"name":"AM_DIGITAL_CP_OFF","features":[427]},{"name":"AM_DIGITAL_CP_ON","features":[427]},{"name":"AM_DVDCOPYSTATE","features":[427]},{"name":"AM_DVDCOPYSTATE_AUTHENTICATION_NOT_REQUIRED","features":[427]},{"name":"AM_DVDCOPYSTATE_AUTHENTICATION_REQUIRED","features":[427]},{"name":"AM_DVDCOPYSTATE_DONE","features":[427]},{"name":"AM_DVDCOPYSTATE_INITIALIZE","features":[427]},{"name":"AM_DVDCOPYSTATE_INITIALIZE_TITLE","features":[427]},{"name":"AM_DVDCOPY_BUSKEY","features":[427]},{"name":"AM_DVDCOPY_CHLGKEY","features":[427]},{"name":"AM_DVDCOPY_DISCKEY","features":[427]},{"name":"AM_DVDCOPY_SET_COPY_STATE","features":[427]},{"name":"AM_DVDCOPY_TITLEKEY","features":[427]},{"name":"AM_DVD_ADAPT_GRAPH","features":[427]},{"name":"AM_DVD_CGMS_COPY_ONCE","features":[427]},{"name":"AM_DVD_CGMS_COPY_PERMITTED","features":[427]},{"name":"AM_DVD_CGMS_COPY_PROTECT_MASK","features":[427]},{"name":"AM_DVD_CGMS_NO_COPY","features":[427]},{"name":"AM_DVD_CGMS_RESERVED_MASK","features":[427]},{"name":"AM_DVD_COPYRIGHTED","features":[427]},{"name":"AM_DVD_COPYRIGHT_MASK","features":[427]},{"name":"AM_DVD_ChangeRate","features":[427]},{"name":"AM_DVD_DO_NOT_CLEAR","features":[427]},{"name":"AM_DVD_EVR_ONLY","features":[427]},{"name":"AM_DVD_EVR_QOS","features":[427]},{"name":"AM_DVD_GRAPH_FLAGS","features":[427]},{"name":"AM_DVD_HWDEC_ONLY","features":[427]},{"name":"AM_DVD_HWDEC_PREFER","features":[427]},{"name":"AM_DVD_MASK","features":[427]},{"name":"AM_DVD_NOT_COPYRIGHTED","features":[427]},{"name":"AM_DVD_NOVPE","features":[427]},{"name":"AM_DVD_RENDERSTATUS","features":[305,427]},{"name":"AM_DVD_SECTOR_NOT_PROTECTED","features":[427]},{"name":"AM_DVD_SECTOR_PROTECTED","features":[427]},{"name":"AM_DVD_SECTOR_PROTECT_MASK","features":[427]},{"name":"AM_DVD_STREAM_AUDIO","features":[427]},{"name":"AM_DVD_STREAM_FLAGS","features":[427]},{"name":"AM_DVD_STREAM_SUBPIC","features":[427]},{"name":"AM_DVD_STREAM_VIDEO","features":[427]},{"name":"AM_DVD_SWDEC_ONLY","features":[427]},{"name":"AM_DVD_SWDEC_PREFER","features":[427]},{"name":"AM_DVD_VMR9_ONLY","features":[427]},{"name":"AM_DVD_YUV","features":[427]},{"name":"AM_DvdKaraokeData","features":[427]},{"name":"AM_EXSEEK_BUFFERING","features":[427]},{"name":"AM_EXSEEK_CANSCAN","features":[427]},{"name":"AM_EXSEEK_CANSEEK","features":[427]},{"name":"AM_EXSEEK_MARKERSEEK","features":[427]},{"name":"AM_EXSEEK_NOSTANDARDREPAINT","features":[427]},{"name":"AM_EXSEEK_SCANWITHOUTCLOCK","features":[427]},{"name":"AM_EXSEEK_SENDS_VIDEOFRAMEREADY","features":[427]},{"name":"AM_ExactRateChange","features":[427]},{"name":"AM_FILESINK_FLAGS","features":[427]},{"name":"AM_FILE_OVERWRITE","features":[427]},{"name":"AM_FILTER_FLAGS","features":[427]},{"name":"AM_FILTER_FLAGS_REMOVABLE","features":[427]},{"name":"AM_FILTER_MISC_FLAGS_IS_RENDERER","features":[427]},{"name":"AM_FILTER_MISC_FLAGS_IS_SOURCE","features":[427]},{"name":"AM_FRAMESTEP_STEP","features":[427]},{"name":"AM_GBF_NODDSURFACELOCK","features":[427]},{"name":"AM_GBF_NOTASYNCPOINT","features":[427]},{"name":"AM_GBF_NOWAIT","features":[427]},{"name":"AM_GBF_PREVFRAMESKIPPED","features":[427]},{"name":"AM_GETDECODERCAP_QUERY_EVR_SUPPORT","features":[427]},{"name":"AM_GETDECODERCAP_QUERY_VMR9_SUPPORT","features":[427]},{"name":"AM_GETDECODERCAP_QUERY_VMR_SUPPORT","features":[427]},{"name":"AM_GRAPH_CONFIG_RECONNECT_CACHE_REMOVED_FILTERS","features":[427]},{"name":"AM_GRAPH_CONFIG_RECONNECT_DIRECTCONNECT","features":[427]},{"name":"AM_GRAPH_CONFIG_RECONNECT_FLAGS","features":[427]},{"name":"AM_GRAPH_CONFIG_RECONNECT_USE_ONLY_CACHED_FILTERS","features":[427]},{"name":"AM_INTERFACESETID_Standard","features":[427]},{"name":"AM_INTF_SEARCH_FILTER","features":[427]},{"name":"AM_INTF_SEARCH_INPUT_PIN","features":[427]},{"name":"AM_INTF_SEARCH_OUTPUT_PIN","features":[427]},{"name":"AM_KSCATEGORY_AUDIO","features":[427]},{"name":"AM_KSCATEGORY_CAPTURE","features":[427]},{"name":"AM_KSCATEGORY_CROSSBAR","features":[427]},{"name":"AM_KSCATEGORY_DATACOMPRESSOR","features":[427]},{"name":"AM_KSCATEGORY_RENDER","features":[427]},{"name":"AM_KSCATEGORY_SPLITTER","features":[427]},{"name":"AM_KSCATEGORY_TVAUDIO","features":[427]},{"name":"AM_KSCATEGORY_TVTUNER","features":[427]},{"name":"AM_KSCATEGORY_VBICODEC","features":[427]},{"name":"AM_KSCATEGORY_VBICODEC_MI","features":[427]},{"name":"AM_KSCATEGORY_VIDEO","features":[427]},{"name":"AM_KSPROPSETID_AC3","features":[427]},{"name":"AM_KSPROPSETID_CopyProt","features":[427]},{"name":"AM_KSPROPSETID_DVD_RateChange","features":[427]},{"name":"AM_KSPROPSETID_DvdKaraoke","features":[427]},{"name":"AM_KSPROPSETID_DvdSubPic","features":[427]},{"name":"AM_KSPROPSETID_FrameStep","features":[427]},{"name":"AM_KSPROPSETID_MPEG4_MediaType_Attributes","features":[427]},{"name":"AM_KSPROPSETID_TSRateChange","features":[427]},{"name":"AM_L21_CCLEVEL_TC2","features":[427]},{"name":"AM_L21_CCSERVICE_Caption1","features":[427]},{"name":"AM_L21_CCSERVICE_Caption2","features":[427]},{"name":"AM_L21_CCSERVICE_DefChannel","features":[427]},{"name":"AM_L21_CCSERVICE_Invalid","features":[427]},{"name":"AM_L21_CCSERVICE_None","features":[427]},{"name":"AM_L21_CCSERVICE_Text1","features":[427]},{"name":"AM_L21_CCSERVICE_Text2","features":[427]},{"name":"AM_L21_CCSERVICE_XDS","features":[427]},{"name":"AM_L21_CCSTATE_Off","features":[427]},{"name":"AM_L21_CCSTATE_On","features":[427]},{"name":"AM_L21_CCSTYLE_None","features":[427]},{"name":"AM_L21_CCSTYLE_PaintOn","features":[427]},{"name":"AM_L21_CCSTYLE_PopOn","features":[427]},{"name":"AM_L21_CCSTYLE_RollUp","features":[427]},{"name":"AM_L21_DRAWBGMODE_Opaque","features":[427]},{"name":"AM_L21_DRAWBGMODE_Transparent","features":[427]},{"name":"AM_LINE21_CCLEVEL","features":[427]},{"name":"AM_LINE21_CCSERVICE","features":[427]},{"name":"AM_LINE21_CCSTATE","features":[427]},{"name":"AM_LINE21_CCSTYLE","features":[427]},{"name":"AM_LINE21_DRAWBGMODE","features":[427]},{"name":"AM_LOADSTATUS_CLOSED","features":[427]},{"name":"AM_LOADSTATUS_CONNECTING","features":[427]},{"name":"AM_LOADSTATUS_LOADINGDESCR","features":[427]},{"name":"AM_LOADSTATUS_LOADINGMCAST","features":[427]},{"name":"AM_LOADSTATUS_LOCATING","features":[427]},{"name":"AM_LOADSTATUS_OPEN","features":[427]},{"name":"AM_LOADSTATUS_OPENING","features":[427]},{"name":"AM_MACROVISION_DISABLED","features":[427]},{"name":"AM_MACROVISION_LEVEL1","features":[427]},{"name":"AM_MACROVISION_LEVEL2","features":[427]},{"name":"AM_MACROVISION_LEVEL3","features":[427]},{"name":"AM_MEDIAEVENT_FLAGS","features":[427]},{"name":"AM_MEDIAEVENT_NONOTIFY","features":[427]},{"name":"AM_MPEG2Level","features":[427]},{"name":"AM_MPEG2Level_High","features":[427]},{"name":"AM_MPEG2Level_High1440","features":[427]},{"name":"AM_MPEG2Level_Low","features":[427]},{"name":"AM_MPEG2Level_Main","features":[427]},{"name":"AM_MPEG2Profile","features":[427]},{"name":"AM_MPEG2Profile_High","features":[427]},{"name":"AM_MPEG2Profile_Main","features":[427]},{"name":"AM_MPEG2Profile_SNRScalable","features":[427]},{"name":"AM_MPEG2Profile_Simple","features":[427]},{"name":"AM_MPEG2Profile_SpatiallyScalable","features":[427]},{"name":"AM_MPEGSTREAMTYPE","features":[305,427,428]},{"name":"AM_MPEGSYSTEMTYPE","features":[305,427,428]},{"name":"AM_MPEG_AUDIO_DUAL_LEFT","features":[427]},{"name":"AM_MPEG_AUDIO_DUAL_MERGE","features":[427]},{"name":"AM_MPEG_AUDIO_DUAL_RIGHT","features":[427]},{"name":"AM_OVERLAY_NOTIFY_DEST_CHANGE","features":[427]},{"name":"AM_OVERLAY_NOTIFY_SOURCE_CHANGE","features":[427]},{"name":"AM_OVERLAY_NOTIFY_VISIBLE_CHANGE","features":[427]},{"name":"AM_PIN_FLOW_CONTROL_BLOCK","features":[427]},{"name":"AM_PROPERTY_AC3","features":[427]},{"name":"AM_PROPERTY_AC3_ALTERNATE_AUDIO","features":[427]},{"name":"AM_PROPERTY_AC3_BIT_STREAM_MODE","features":[427]},{"name":"AM_PROPERTY_AC3_DIALOGUE_LEVEL","features":[427]},{"name":"AM_PROPERTY_AC3_DOWNMIX","features":[427]},{"name":"AM_PROPERTY_AC3_ERROR_CONCEALMENT","features":[427]},{"name":"AM_PROPERTY_AC3_LANGUAGE_CODE","features":[427]},{"name":"AM_PROPERTY_AC3_ROOM_TYPE","features":[427]},{"name":"AM_PROPERTY_COPY_ANALOG_COMPONENT","features":[427]},{"name":"AM_PROPERTY_COPY_DIGITAL_CP","features":[427]},{"name":"AM_PROPERTY_COPY_DVD_SRM","features":[427]},{"name":"AM_PROPERTY_COPY_MACROVISION","features":[427]},{"name":"AM_PROPERTY_DVDCOPYPROT","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_CHLG_KEY","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_DEC_KEY2","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_DISC_KEY","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_DVD_KEY1","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_REGION","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_SET_COPY_STATE","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_SUPPORTS_NEW_KEYCOUNT","features":[427]},{"name":"AM_PROPERTY_DVDCOPY_TITLE_KEY","features":[427]},{"name":"AM_PROPERTY_DVDKARAOKE","features":[427]},{"name":"AM_PROPERTY_DVDKARAOKE_DATA","features":[427]},{"name":"AM_PROPERTY_DVDKARAOKE_ENABLE","features":[427]},{"name":"AM_PROPERTY_DVDSUBPIC","features":[427]},{"name":"AM_PROPERTY_DVDSUBPIC_COMPOSIT_ON","features":[427]},{"name":"AM_PROPERTY_DVDSUBPIC_HLI","features":[427]},{"name":"AM_PROPERTY_DVDSUBPIC_PALETTE","features":[427]},{"name":"AM_PROPERTY_DVD_RATE_CHANGE","features":[427]},{"name":"AM_PROPERTY_FRAMESTEP","features":[427]},{"name":"AM_PROPERTY_FRAMESTEP_CANCEL","features":[427]},{"name":"AM_PROPERTY_FRAMESTEP_CANSTEP","features":[427]},{"name":"AM_PROPERTY_FRAMESTEP_CANSTEPMULTIPLE","features":[427]},{"name":"AM_PROPERTY_FRAMESTEP_STEP","features":[427]},{"name":"AM_PROPERTY_SPHLI","features":[427]},{"name":"AM_PROPERTY_SPPAL","features":[427]},{"name":"AM_PROPERTY_TS_RATE_CHANGE","features":[427]},{"name":"AM_PUSHSOURCECAPS_INTERNAL_RM","features":[427]},{"name":"AM_PUSHSOURCECAPS_NOT_LIVE","features":[427]},{"name":"AM_PUSHSOURCECAPS_PRIVATE_CLOCK","features":[427]},{"name":"AM_PUSHSOURCEREQS_USE_CLOCK_CHAIN","features":[427]},{"name":"AM_PUSHSOURCEREQS_USE_STREAM_CLOCK","features":[427]},{"name":"AM_QUERY_DECODER_ATSC_HD_SUPPORT","features":[427]},{"name":"AM_QUERY_DECODER_ATSC_SD_SUPPORT","features":[427]},{"name":"AM_QUERY_DECODER_DVD_SUPPORT","features":[427]},{"name":"AM_QUERY_DECODER_DXVA_1_SUPPORT","features":[427]},{"name":"AM_QUERY_DECODER_VMR_SUPPORT","features":[427]},{"name":"AM_QueryRate","features":[427]},{"name":"AM_RATE_ChangeRate","features":[427]},{"name":"AM_RATE_CorrectTS","features":[427]},{"name":"AM_RATE_DecoderPosition","features":[427]},{"name":"AM_RATE_DecoderVersion","features":[427]},{"name":"AM_RATE_ExactRateChange","features":[427]},{"name":"AM_RATE_FullDataRateMax","features":[427]},{"name":"AM_RATE_MaxFullDataRate","features":[427]},{"name":"AM_RATE_QueryFullFrameRate","features":[427]},{"name":"AM_RATE_QueryLastRateSegPTS","features":[427]},{"name":"AM_RATE_QueryMapping","features":[427]},{"name":"AM_RATE_ResetOnTimeDisc","features":[427]},{"name":"AM_RATE_ReverseDecode","features":[427]},{"name":"AM_RATE_ReverseMaxFullDataRate","features":[427]},{"name":"AM_RATE_SimpleRateChange","features":[427]},{"name":"AM_RATE_Step","features":[427]},{"name":"AM_RATE_UseRateVersion","features":[427]},{"name":"AM_RENDEREX_RENDERTOEXISTINGRENDERERS","features":[427]},{"name":"AM_ReverseBlockEnd","features":[427]},{"name":"AM_ReverseBlockStart","features":[427]},{"name":"AM_SAMPLE2_PROPERTIES","features":[305,427,428]},{"name":"AM_SAMPLE_DATADISCONTINUITY","features":[427]},{"name":"AM_SAMPLE_ENDOFSTREAM","features":[427]},{"name":"AM_SAMPLE_FLUSH_ON_PAUSE","features":[427]},{"name":"AM_SAMPLE_PREROLL","features":[427]},{"name":"AM_SAMPLE_PROPERTY_FLAGS","features":[427]},{"name":"AM_SAMPLE_SPLICEPOINT","features":[427]},{"name":"AM_SAMPLE_STOPVALID","features":[427]},{"name":"AM_SAMPLE_TIMEDISCONTINUITY","features":[427]},{"name":"AM_SAMPLE_TIMEVALID","features":[427]},{"name":"AM_SAMPLE_TYPECHANGED","features":[427]},{"name":"AM_SEEKING_AbsolutePositioning","features":[427]},{"name":"AM_SEEKING_CanDoSegments","features":[427]},{"name":"AM_SEEKING_CanGetCurrentPos","features":[427]},{"name":"AM_SEEKING_CanGetDuration","features":[427]},{"name":"AM_SEEKING_CanGetStopPos","features":[427]},{"name":"AM_SEEKING_CanPlayBackwards","features":[427]},{"name":"AM_SEEKING_CanSeekAbsolute","features":[427]},{"name":"AM_SEEKING_CanSeekBackwards","features":[427]},{"name":"AM_SEEKING_CanSeekForwards","features":[427]},{"name":"AM_SEEKING_IncrementalPositioning","features":[427]},{"name":"AM_SEEKING_NoFlush","features":[427]},{"name":"AM_SEEKING_NoPositioning","features":[427]},{"name":"AM_SEEKING_PositioningBitsMask","features":[427]},{"name":"AM_SEEKING_RelativePositioning","features":[427]},{"name":"AM_SEEKING_ReturnTime","features":[427]},{"name":"AM_SEEKING_SEEKING_CAPABILITIES","features":[427]},{"name":"AM_SEEKING_SEEKING_FLAGS","features":[427]},{"name":"AM_SEEKING_SeekToKeyFrame","features":[427]},{"name":"AM_SEEKING_Segment","features":[427]},{"name":"AM_SEEKING_Source","features":[427]},{"name":"AM_STREAM_CONTROL","features":[427]},{"name":"AM_STREAM_INFO","features":[427]},{"name":"AM_STREAM_INFO_DISCARDING","features":[427]},{"name":"AM_STREAM_INFO_FLAGS","features":[427]},{"name":"AM_STREAM_INFO_START_DEFINED","features":[427]},{"name":"AM_STREAM_INFO_STOP_DEFINED","features":[427]},{"name":"AM_STREAM_INFO_STOP_SEND_EXTRA","features":[427]},{"name":"AM_STREAM_MEDIA","features":[427]},{"name":"AM_SimpleRateChange","features":[427]},{"name":"AM_UseNewCSSKey","features":[427]},{"name":"AM_VIDEO_FLAG_B_SAMPLE","features":[427]},{"name":"AM_VIDEO_FLAG_FIELD1","features":[427]},{"name":"AM_VIDEO_FLAG_FIELD1FIRST","features":[427]},{"name":"AM_VIDEO_FLAG_FIELD2","features":[427]},{"name":"AM_VIDEO_FLAG_FIELD_MASK","features":[427]},{"name":"AM_VIDEO_FLAG_INTERLEAVED_FRAME","features":[427]},{"name":"AM_VIDEO_FLAG_IPB_MASK","features":[427]},{"name":"AM_VIDEO_FLAG_I_SAMPLE","features":[427]},{"name":"AM_VIDEO_FLAG_P_SAMPLE","features":[427]},{"name":"AM_VIDEO_FLAG_REPEAT_FIELD","features":[427]},{"name":"AM_VIDEO_FLAG_WEAVE","features":[427]},{"name":"AM_WST_DRAWBGMODE","features":[427]},{"name":"AM_WST_DRAWBGMODE_Opaque","features":[427]},{"name":"AM_WST_DRAWBGMODE_Transparent","features":[427]},{"name":"AM_WST_LEVEL","features":[427]},{"name":"AM_WST_LEVEL_1_5","features":[427]},{"name":"AM_WST_PAGE","features":[427]},{"name":"AM_WST_SERVICE","features":[427]},{"name":"AM_WST_SERVICE_IDS","features":[427]},{"name":"AM_WST_SERVICE_Invalid","features":[427]},{"name":"AM_WST_SERVICE_None","features":[427]},{"name":"AM_WST_SERVICE_Text","features":[427]},{"name":"AM_WST_STATE","features":[427]},{"name":"AM_WST_STATE_Off","features":[427]},{"name":"AM_WST_STATE_On","features":[427]},{"name":"AM_WST_STYLE","features":[427]},{"name":"AM_WST_STYLE_Invers","features":[427]},{"name":"AM_WST_STYLE_None","features":[427]},{"name":"ANALOGVIDEOINFO","features":[305,427]},{"name":"ANNEX_A_DSM_CC","features":[427]},{"name":"ATSCCT_AC3","features":[427]},{"name":"ATSCComponentTypeFlags","features":[427]},{"name":"AUDIO_STREAM_CONFIG_CAPS","features":[427]},{"name":"AVIEXTHEADER","features":[427]},{"name":"AVIFIELDINDEX","features":[427]},{"name":"AVIF_COPYRIGHTED","features":[427]},{"name":"AVIF_HASINDEX","features":[427]},{"name":"AVIF_ISINTERLEAVED","features":[427]},{"name":"AVIF_MUSTUSEINDEX","features":[427]},{"name":"AVIF_TRUSTCKTYPE","features":[427]},{"name":"AVIF_WASCAPTUREFILE","features":[427]},{"name":"AVIIF_COMPRESSOR","features":[427]},{"name":"AVIIF_COMPUSE","features":[427]},{"name":"AVIIF_FIRSTPART","features":[427]},{"name":"AVIIF_KEYFRAME","features":[427]},{"name":"AVIIF_LASTPART","features":[427]},{"name":"AVIIF_LIST","features":[427]},{"name":"AVIIF_NOTIME","features":[427]},{"name":"AVIIF_NO_TIME","features":[427]},{"name":"AVIINDEXENTRY","features":[427]},{"name":"AVIMAINHEADER","features":[427]},{"name":"AVIMETAINDEX","features":[427]},{"name":"AVIOLDINDEX","features":[427]},{"name":"AVIPALCHANGE","features":[316,427]},{"name":"AVISF_DISABLED","features":[427]},{"name":"AVISF_VIDEO_PALCHANGES","features":[427]},{"name":"AVISTDINDEX","features":[427]},{"name":"AVISTDINDEX_DELTAFRAME","features":[427]},{"name":"AVISTDINDEX_ENTRY","features":[427]},{"name":"AVISTREAMHEADER","features":[427]},{"name":"AVISUPERINDEX","features":[427]},{"name":"AVIStreamHeader","features":[305,427]},{"name":"AVITCDLINDEX","features":[427]},{"name":"AVITCDLINDEX_ENTRY","features":[427]},{"name":"AVITIMECODEINDEX","features":[427]},{"name":"AVITIMEDINDEX","features":[427]},{"name":"AVITIMEDINDEX_ENTRY","features":[427]},{"name":"AVI_HEADERSIZE","features":[427]},{"name":"AVI_INDEX_IS_DATA","features":[427]},{"name":"AVI_INDEX_OF_CHUNKS","features":[427]},{"name":"AVI_INDEX_OF_INDEXES","features":[427]},{"name":"AVI_INDEX_OF_SUB_2FIELD","features":[427]},{"name":"AVI_INDEX_OF_TIMED_CHUNKS","features":[427]},{"name":"AVI_INDEX_SUB_2FIELD","features":[427]},{"name":"AVI_INDEX_SUB_DEFAULT","features":[427]},{"name":"AnalogVideoMask_MCE_NTSC","features":[427]},{"name":"AnalogVideoMask_MCE_PAL","features":[427]},{"name":"AnalogVideoMask_MCE_SECAM","features":[427]},{"name":"AnalogVideoStandard","features":[427]},{"name":"AnalogVideo_NTSC_433","features":[427]},{"name":"AnalogVideo_NTSC_M","features":[427]},{"name":"AnalogVideo_NTSC_M_J","features":[427]},{"name":"AnalogVideo_NTSC_Mask","features":[427]},{"name":"AnalogVideo_None","features":[427]},{"name":"AnalogVideo_PAL_60","features":[427]},{"name":"AnalogVideo_PAL_B","features":[427]},{"name":"AnalogVideo_PAL_D","features":[427]},{"name":"AnalogVideo_PAL_G","features":[427]},{"name":"AnalogVideo_PAL_H","features":[427]},{"name":"AnalogVideo_PAL_I","features":[427]},{"name":"AnalogVideo_PAL_M","features":[427]},{"name":"AnalogVideo_PAL_Mask","features":[427]},{"name":"AnalogVideo_PAL_N","features":[427]},{"name":"AnalogVideo_PAL_N_COMBO","features":[427]},{"name":"AnalogVideo_SECAM_B","features":[427]},{"name":"AnalogVideo_SECAM_D","features":[427]},{"name":"AnalogVideo_SECAM_G","features":[427]},{"name":"AnalogVideo_SECAM_H","features":[427]},{"name":"AnalogVideo_SECAM_K","features":[427]},{"name":"AnalogVideo_SECAM_K1","features":[427]},{"name":"AnalogVideo_SECAM_L","features":[427]},{"name":"AnalogVideo_SECAM_L1","features":[427]},{"name":"AnalogVideo_SECAM_Mask","features":[427]},{"name":"ApplicationTypeType","features":[427]},{"name":"Associated","features":[427]},{"name":"AssociationUnknown","features":[427]},{"name":"BDACOMP_EXCLUDE_TS_FROM_TR","features":[427]},{"name":"BDACOMP_INCLUDE_COMPONENTS_IN_TR","features":[427]},{"name":"BDACOMP_INCLUDE_LOCATOR_IN_TR","features":[427]},{"name":"BDACOMP_NOT_DEFINED","features":[427]},{"name":"BDANODE_DESCRIPTOR","features":[427]},{"name":"BDA_BCC_RATE_1_2","features":[427]},{"name":"BDA_BCC_RATE_1_3","features":[427]},{"name":"BDA_BCC_RATE_1_4","features":[427]},{"name":"BDA_BCC_RATE_2_3","features":[427]},{"name":"BDA_BCC_RATE_2_5","features":[427]},{"name":"BDA_BCC_RATE_3_4","features":[427]},{"name":"BDA_BCC_RATE_3_5","features":[427]},{"name":"BDA_BCC_RATE_4_5","features":[427]},{"name":"BDA_BCC_RATE_5_11","features":[427]},{"name":"BDA_BCC_RATE_5_6","features":[427]},{"name":"BDA_BCC_RATE_6_7","features":[427]},{"name":"BDA_BCC_RATE_7_8","features":[427]},{"name":"BDA_BCC_RATE_8_9","features":[427]},{"name":"BDA_BCC_RATE_9_10","features":[427]},{"name":"BDA_BCC_RATE_MAX","features":[427]},{"name":"BDA_BCC_RATE_NOT_DEFINED","features":[427]},{"name":"BDA_BCC_RATE_NOT_SET","features":[427]},{"name":"BDA_BUFFER","features":[427]},{"name":"BDA_CAS_CHECK_ENTITLEMENTTOKEN","features":[427]},{"name":"BDA_CAS_CLOSEMMIDATA","features":[427]},{"name":"BDA_CAS_CLOSE_MMIDIALOG","features":[427]},{"name":"BDA_CAS_OPENMMIDATA","features":[427]},{"name":"BDA_CAS_REQUESTTUNERDATA","features":[427]},{"name":"BDA_CA_MODULE_UI","features":[427]},{"name":"BDA_CHANGES_COMPLETE","features":[427]},{"name":"BDA_CHANGES_PENDING","features":[427]},{"name":"BDA_CHANGE_STATE","features":[427]},{"name":"BDA_CHAN_BANDWITH_NOT_DEFINED","features":[427]},{"name":"BDA_CHAN_BANDWITH_NOT_SET","features":[427]},{"name":"BDA_CONDITIONALACCESS_MMICLOSEREASON","features":[427]},{"name":"BDA_CONDITIONALACCESS_REQUESTTYPE","features":[427]},{"name":"BDA_CONDITIONALACCESS_SESSION_RESULT","features":[427]},{"name":"BDA_Channel","features":[427]},{"name":"BDA_Channel_Bandwidth","features":[427]},{"name":"BDA_Comp_Flags","features":[427]},{"name":"BDA_DISCOVERY_COMPLETE","features":[427]},{"name":"BDA_DISCOVERY_REQUIRED","features":[427]},{"name":"BDA_DISCOVERY_STATE","features":[427]},{"name":"BDA_DISCOVERY_UNSPECIFIED","features":[427]},{"name":"BDA_DISEQC_RESPONSE","features":[427]},{"name":"BDA_DISEQC_SEND","features":[427]},{"name":"BDA_DRM_DRMSTATUS","features":[427]},{"name":"BDA_DVBT2_L1_SIGNALLING_DATA","features":[427]},{"name":"BDA_DrmPairingError","features":[427]},{"name":"BDA_DrmPairing_Aborted","features":[427]},{"name":"BDA_DrmPairing_DrmInitFailed","features":[427]},{"name":"BDA_DrmPairing_DrmNotPaired","features":[427]},{"name":"BDA_DrmPairing_DrmRePairSoon","features":[427]},{"name":"BDA_DrmPairing_HardwareFailure","features":[427]},{"name":"BDA_DrmPairing_NeedIndiv","features":[427]},{"name":"BDA_DrmPairing_NeedRevocationData","features":[427]},{"name":"BDA_DrmPairing_NeedSDKUpdate","features":[427]},{"name":"BDA_DrmPairing_Other","features":[427]},{"name":"BDA_DrmPairing_Succeeded","features":[427]},{"name":"BDA_ETHERNET_ADDRESS","features":[427]},{"name":"BDA_ETHERNET_ADDRESS_LIST","features":[427]},{"name":"BDA_EVENT_ACCESS_DENIED","features":[427]},{"name":"BDA_EVENT_ACCESS_GRANTED","features":[427]},{"name":"BDA_EVENT_CHANNEL_ACQUIRED","features":[427]},{"name":"BDA_EVENT_CHANNEL_ACTIVATED","features":[427]},{"name":"BDA_EVENT_CHANNEL_DEACTIVATED","features":[427]},{"name":"BDA_EVENT_CHANNEL_LOST","features":[427]},{"name":"BDA_EVENT_CHANNEL_SOURCE_CHANGED","features":[427]},{"name":"BDA_EVENT_DATA_START","features":[427]},{"name":"BDA_EVENT_DATA_STOP","features":[427]},{"name":"BDA_EVENT_ID","features":[427]},{"name":"BDA_EVENT_OFFER_EXTENDED","features":[427]},{"name":"BDA_EVENT_PURCHASE_COMPLETED","features":[427]},{"name":"BDA_EVENT_SIGNAL_LOCK","features":[427]},{"name":"BDA_EVENT_SIGNAL_LOSS","features":[427]},{"name":"BDA_EVENT_SMART_CARD_INSERTED","features":[427]},{"name":"BDA_EVENT_SMART_CARD_REMOVED","features":[427]},{"name":"BDA_EVENT_SUBCHANNEL_ACQUIRED","features":[427]},{"name":"BDA_EVENT_SUBCHANNEL_ACTIVATED","features":[427]},{"name":"BDA_EVENT_SUBCHANNEL_DEACTIVATED","features":[427]},{"name":"BDA_EVENT_SUBCHANNEL_LOST","features":[427]},{"name":"BDA_EVENT_SUBCHANNEL_SOURCE_CHANGED","features":[427]},{"name":"BDA_E_ACCESS_DENIED","features":[427]},{"name":"BDA_E_BUFFER_TOO_SMALL","features":[427]},{"name":"BDA_E_DISABLED","features":[427]},{"name":"BDA_E_FAILURE","features":[427]},{"name":"BDA_E_INVALID_CAPTURE_TOKEN","features":[427]},{"name":"BDA_E_INVALID_ENTITLEMENT_TOKEN","features":[427]},{"name":"BDA_E_INVALID_HANDLE","features":[427]},{"name":"BDA_E_INVALID_LANGUAGE","features":[427]},{"name":"BDA_E_INVALID_PURCHASE_TOKEN","features":[427]},{"name":"BDA_E_INVALID_SCHEMA","features":[427]},{"name":"BDA_E_INVALID_TUNE_REQUEST","features":[427]},{"name":"BDA_E_INVALID_TYPE","features":[427]},{"name":"BDA_E_IPNETWORK_ADDRESS_NOT_FOUND","features":[427]},{"name":"BDA_E_IPNETWORK_ERROR","features":[427]},{"name":"BDA_E_IPNETWORK_TIMEOUT","features":[427]},{"name":"BDA_E_IPNETWORK_UNAVAILABLE","features":[427]},{"name":"BDA_E_NOT_FOUND","features":[427]},{"name":"BDA_E_NOT_IMPLEMENTED","features":[427]},{"name":"BDA_E_NO_HANDLER","features":[427]},{"name":"BDA_E_NO_MORE_DATA","features":[427]},{"name":"BDA_E_NO_MORE_EVENTS","features":[427]},{"name":"BDA_E_NO_SUCH_COMMAND","features":[427]},{"name":"BDA_E_OUT_OF_BOUNDS","features":[427]},{"name":"BDA_E_OUT_OF_MEMORY","features":[427]},{"name":"BDA_E_OUT_OF_RESOURCES","features":[427]},{"name":"BDA_E_READ_ONLY","features":[427]},{"name":"BDA_E_TIMEOUT_ELAPSED","features":[427]},{"name":"BDA_E_TUNER_CONFLICT","features":[427]},{"name":"BDA_E_TUNER_INITIALIZING","features":[427]},{"name":"BDA_E_TUNER_REQUIRED","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV01","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV02","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV03","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV04","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV05","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV06","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV07","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDV08","features":[427]},{"name":"BDA_E_TUNE_FAILED_SDVFF","features":[427]},{"name":"BDA_E_WMDRM_INVALID_CERTIFICATE","features":[427]},{"name":"BDA_E_WMDRM_INVALID_DATE","features":[427]},{"name":"BDA_E_WMDRM_INVALID_PROXIMITY","features":[427]},{"name":"BDA_E_WMDRM_INVALID_SIGNATURE","features":[427]},{"name":"BDA_E_WMDRM_INVALID_VERSION","features":[427]},{"name":"BDA_E_WMDRM_KEY_ID_NOT_FOUND","features":[427]},{"name":"BDA_E_WOULD_DISRUPT_STREAMING","features":[427]},{"name":"BDA_FEC_BCH","features":[427]},{"name":"BDA_FEC_LDPC","features":[427]},{"name":"BDA_FEC_MAX","features":[427]},{"name":"BDA_FEC_METHOD_NOT_DEFINED","features":[427]},{"name":"BDA_FEC_METHOD_NOT_SET","features":[427]},{"name":"BDA_FEC_RS_147_130","features":[427]},{"name":"BDA_FEC_RS_204_188","features":[427]},{"name":"BDA_FEC_VITERBI","features":[427]},{"name":"BDA_FILTERED_MULTICAST","features":[427]},{"name":"BDA_FREQUENCY_MULTIPLIER_NOT_DEFINED","features":[427]},{"name":"BDA_FREQUENCY_MULTIPLIER_NOT_SET","features":[427]},{"name":"BDA_FREQUENCY_NOT_DEFINED","features":[427]},{"name":"BDA_FREQUENCY_NOT_SET","features":[427]},{"name":"BDA_Frequency","features":[427]},{"name":"BDA_Frequency_Multiplier","features":[427]},{"name":"BDA_GDDS_DATA","features":[427]},{"name":"BDA_GDDS_DATATYPE","features":[427]},{"name":"BDA_GUARD_19_128","features":[427]},{"name":"BDA_GUARD_19_256","features":[427]},{"name":"BDA_GUARD_1_128","features":[427]},{"name":"BDA_GUARD_1_16","features":[427]},{"name":"BDA_GUARD_1_32","features":[427]},{"name":"BDA_GUARD_1_4","features":[427]},{"name":"BDA_GUARD_1_8","features":[427]},{"name":"BDA_GUARD_MAX","features":[427]},{"name":"BDA_GUARD_NOT_DEFINED","features":[427]},{"name":"BDA_GUARD_NOT_SET","features":[427]},{"name":"BDA_HALPHA_1","features":[427]},{"name":"BDA_HALPHA_2","features":[427]},{"name":"BDA_HALPHA_4","features":[427]},{"name":"BDA_HALPHA_MAX","features":[427]},{"name":"BDA_HALPHA_NOT_DEFINED","features":[427]},{"name":"BDA_HALPHA_NOT_SET","features":[427]},{"name":"BDA_IPv4_ADDRESS","features":[427]},{"name":"BDA_IPv4_ADDRESS_LIST","features":[427]},{"name":"BDA_IPv6_ADDRESS","features":[427]},{"name":"BDA_IPv6_ADDRESS_LIST","features":[427]},{"name":"BDA_ISDBCAS_EMG_REQ","features":[427]},{"name":"BDA_ISDBCAS_REQUESTHEADER","features":[427]},{"name":"BDA_ISDBCAS_RESPONSEDATA","features":[427]},{"name":"BDA_LNB_SOURCE_A","features":[427]},{"name":"BDA_LNB_SOURCE_B","features":[427]},{"name":"BDA_LNB_SOURCE_C","features":[427]},{"name":"BDA_LNB_SOURCE_D","features":[427]},{"name":"BDA_LNB_SOURCE_MAX","features":[427]},{"name":"BDA_LNB_SOURCE_NOT_DEFINED","features":[427]},{"name":"BDA_LNB_SOURCE_NOT_SET","features":[427]},{"name":"BDA_MOD_1024QAM","features":[427]},{"name":"BDA_MOD_112QAM","features":[427]},{"name":"BDA_MOD_128QAM","features":[427]},{"name":"BDA_MOD_160QAM","features":[427]},{"name":"BDA_MOD_16APSK","features":[427]},{"name":"BDA_MOD_16QAM","features":[427]},{"name":"BDA_MOD_16VSB","features":[427]},{"name":"BDA_MOD_192QAM","features":[427]},{"name":"BDA_MOD_224QAM","features":[427]},{"name":"BDA_MOD_256QAM","features":[427]},{"name":"BDA_MOD_320QAM","features":[427]},{"name":"BDA_MOD_32APSK","features":[427]},{"name":"BDA_MOD_32QAM","features":[427]},{"name":"BDA_MOD_384QAM","features":[427]},{"name":"BDA_MOD_448QAM","features":[427]},{"name":"BDA_MOD_512QAM","features":[427]},{"name":"BDA_MOD_640QAM","features":[427]},{"name":"BDA_MOD_64QAM","features":[427]},{"name":"BDA_MOD_768QAM","features":[427]},{"name":"BDA_MOD_80QAM","features":[427]},{"name":"BDA_MOD_896QAM","features":[427]},{"name":"BDA_MOD_8PSK","features":[427]},{"name":"BDA_MOD_8VSB","features":[427]},{"name":"BDA_MOD_96QAM","features":[427]},{"name":"BDA_MOD_ANALOG_AMPLITUDE","features":[427]},{"name":"BDA_MOD_ANALOG_FREQUENCY","features":[427]},{"name":"BDA_MOD_BPSK","features":[427]},{"name":"BDA_MOD_DIRECTV","features":[427]},{"name":"BDA_MOD_ISDB_S_TMCC","features":[427]},{"name":"BDA_MOD_ISDB_T_TMCC","features":[427]},{"name":"BDA_MOD_MAX","features":[427]},{"name":"BDA_MOD_NBC_8PSK","features":[427]},{"name":"BDA_MOD_NBC_QPSK","features":[427]},{"name":"BDA_MOD_NOT_DEFINED","features":[427]},{"name":"BDA_MOD_NOT_SET","features":[427]},{"name":"BDA_MOD_OQPSK","features":[427]},{"name":"BDA_MOD_QPSK","features":[427]},{"name":"BDA_MOD_RF","features":[427]},{"name":"BDA_MULTICAST_MODE","features":[427]},{"name":"BDA_MUX_PIDLISTITEM","features":[427]},{"name":"BDA_NO_MULTICAST","features":[427]},{"name":"BDA_PID_MAP","features":[427]},{"name":"BDA_PID_UNMAP","features":[427]},{"name":"BDA_PILOT_MAX","features":[427]},{"name":"BDA_PILOT_NOT_DEFINED","features":[427]},{"name":"BDA_PILOT_NOT_SET","features":[427]},{"name":"BDA_PILOT_OFF","features":[427]},{"name":"BDA_PILOT_ON","features":[427]},{"name":"BDA_PLP_ID_NOT_SET","features":[427]},{"name":"BDA_POLARISATION_CIRCULAR_L","features":[427]},{"name":"BDA_POLARISATION_CIRCULAR_R","features":[427]},{"name":"BDA_POLARISATION_LINEAR_H","features":[427]},{"name":"BDA_POLARISATION_LINEAR_V","features":[427]},{"name":"BDA_POLARISATION_MAX","features":[427]},{"name":"BDA_POLARISATION_NOT_DEFINED","features":[427]},{"name":"BDA_POLARISATION_NOT_SET","features":[427]},{"name":"BDA_PROGRAM_PID_LIST","features":[427]},{"name":"BDA_PROMISCUOUS_MULTICAST","features":[427]},{"name":"BDA_RANGE_NOT_DEFINED","features":[427]},{"name":"BDA_RANGE_NOT_SET","features":[427]},{"name":"BDA_RATING_PINRESET","features":[427]},{"name":"BDA_ROLL_OFF_20","features":[427]},{"name":"BDA_ROLL_OFF_25","features":[427]},{"name":"BDA_ROLL_OFF_35","features":[427]},{"name":"BDA_ROLL_OFF_MAX","features":[427]},{"name":"BDA_ROLL_OFF_NOT_DEFINED","features":[427]},{"name":"BDA_ROLL_OFF_NOT_SET","features":[427]},{"name":"BDA_Range","features":[427]},{"name":"BDA_SCAN_CAPABILTIES","features":[427]},{"name":"BDA_SCAN_MOD_1024QAM","features":[427]},{"name":"BDA_SCAN_MOD_112QAM","features":[427]},{"name":"BDA_SCAN_MOD_128QAM","features":[427]},{"name":"BDA_SCAN_MOD_160QAM","features":[427]},{"name":"BDA_SCAN_MOD_16APSK","features":[427]},{"name":"BDA_SCAN_MOD_16QAM","features":[427]},{"name":"BDA_SCAN_MOD_16VSB","features":[427]},{"name":"BDA_SCAN_MOD_192QAM","features":[427]},{"name":"BDA_SCAN_MOD_224QAM","features":[427]},{"name":"BDA_SCAN_MOD_256QAM","features":[427]},{"name":"BDA_SCAN_MOD_320QAM","features":[427]},{"name":"BDA_SCAN_MOD_32APSK","features":[427]},{"name":"BDA_SCAN_MOD_32QAM","features":[427]},{"name":"BDA_SCAN_MOD_384QAM","features":[427]},{"name":"BDA_SCAN_MOD_448QAM","features":[427]},{"name":"BDA_SCAN_MOD_512QAM","features":[427]},{"name":"BDA_SCAN_MOD_640QAM","features":[427]},{"name":"BDA_SCAN_MOD_64QAM","features":[427]},{"name":"BDA_SCAN_MOD_768QAM","features":[427]},{"name":"BDA_SCAN_MOD_80QAM","features":[427]},{"name":"BDA_SCAN_MOD_896QAM","features":[427]},{"name":"BDA_SCAN_MOD_8PSK","features":[427]},{"name":"BDA_SCAN_MOD_8VSB","features":[427]},{"name":"BDA_SCAN_MOD_96QAM","features":[427]},{"name":"BDA_SCAN_MOD_AM_RADIO","features":[427]},{"name":"BDA_SCAN_MOD_BPSK","features":[427]},{"name":"BDA_SCAN_MOD_FM_RADIO","features":[427]},{"name":"BDA_SCAN_MOD_OQPSK","features":[427]},{"name":"BDA_SCAN_MOD_QPSK","features":[427]},{"name":"BDA_SCAN_MOD_RF","features":[427]},{"name":"BDA_SCAN_START","features":[427]},{"name":"BDA_SCAN_STATE","features":[427]},{"name":"BDA_SIGNAL_ACTIVE","features":[427]},{"name":"BDA_SIGNAL_INACTIVE","features":[427]},{"name":"BDA_SIGNAL_STATE","features":[427]},{"name":"BDA_SIGNAL_TIMEOUTS","features":[427]},{"name":"BDA_SIGNAL_UNAVAILABLE","features":[427]},{"name":"BDA_SPECTRAL_INVERSION_AUTOMATIC","features":[427]},{"name":"BDA_SPECTRAL_INVERSION_INVERTED","features":[427]},{"name":"BDA_SPECTRAL_INVERSION_MAX","features":[427]},{"name":"BDA_SPECTRAL_INVERSION_NORMAL","features":[427]},{"name":"BDA_SPECTRAL_INVERSION_NOT_DEFINED","features":[427]},{"name":"BDA_SPECTRAL_INVERSION_NOT_SET","features":[427]},{"name":"BDA_STRING","features":[427]},{"name":"BDA_TABLE_SECTION","features":[427]},{"name":"BDA_TEMPLATE_CONNECTION","features":[427]},{"name":"BDA_TEMPLATE_PIN_JOINT","features":[427]},{"name":"BDA_TS_SELECTORINFO","features":[427]},{"name":"BDA_TS_SELECTORINFO_ISDBS_EXT","features":[427]},{"name":"BDA_TUNER_DIAGNOSTICS","features":[427]},{"name":"BDA_TUNER_TUNERSTATE","features":[427]},{"name":"BDA_UNDEFINED_CHANNEL","features":[427]},{"name":"BDA_UNITIALIZED_MPEG2STREAMTYPE","features":[427]},{"name":"BDA_USERACTIVITY_INTERVAL","features":[427]},{"name":"BDA_WMDRMTUNER_PIDPROTECTION","features":[427]},{"name":"BDA_WMDRMTUNER_PURCHASEENTITLEMENT","features":[427]},{"name":"BDA_WMDRM_KEYINFOLIST","features":[427]},{"name":"BDA_WMDRM_RENEWLICENSE","features":[427]},{"name":"BDA_WMDRM_STATUS","features":[427]},{"name":"BDA_XMIT_MODE_16K","features":[427]},{"name":"BDA_XMIT_MODE_1K","features":[427]},{"name":"BDA_XMIT_MODE_2K","features":[427]},{"name":"BDA_XMIT_MODE_2K_INTERLEAVED","features":[427]},{"name":"BDA_XMIT_MODE_32K","features":[427]},{"name":"BDA_XMIT_MODE_4K","features":[427]},{"name":"BDA_XMIT_MODE_4K_INTERLEAVED","features":[427]},{"name":"BDA_XMIT_MODE_8K","features":[427]},{"name":"BDA_XMIT_MODE_MAX","features":[427]},{"name":"BDA_XMIT_MODE_NOT_DEFINED","features":[427]},{"name":"BDA_XMIT_MODE_NOT_SET","features":[427]},{"name":"BinaryConvolutionCodeRate","features":[427]},{"name":"CATEGORY_COUNT","features":[427]},{"name":"CDEF_BYPASS_CLASS_MANAGER","features":[427]},{"name":"CDEF_CLASS_DEFAULT","features":[427]},{"name":"CDEF_DEVMON_CMGR_DEVICE","features":[427]},{"name":"CDEF_DEVMON_DMO","features":[427]},{"name":"CDEF_DEVMON_FILTER","features":[427]},{"name":"CDEF_DEVMON_PNP_DEVICE","features":[427]},{"name":"CDEF_DEVMON_SELECTIVE_MASK","features":[427]},{"name":"CDEF_MERIT_ABOVE_DO_NOT_USE","features":[427]},{"name":"CFSTR_VFW_FILTERLIST","features":[427]},{"name":"CHARS_IN_GUID","features":[427]},{"name":"CK_INDEX","features":[427]},{"name":"CK_NOCOLORKEY","features":[427]},{"name":"CK_RGB","features":[427]},{"name":"CLSID_AMAudioData","features":[427]},{"name":"CLSID_AMAudioStream","features":[427]},{"name":"CLSID_AMDirectDrawStream","features":[427]},{"name":"CLSID_AMMediaTypeStream","features":[427]},{"name":"CLSID_AMMultiMediaStream","features":[427]},{"name":"CLSID_DMOFilterCategory","features":[427]},{"name":"CLSID_DMOWrapperFilter","features":[427]},{"name":"CLSID_PBDA_AUX_DATA_TYPE","features":[427]},{"name":"CLSID_PBDA_Encoder_DATA_TYPE","features":[427]},{"name":"CLSID_PBDA_FDC_DATA_TYPE","features":[427]},{"name":"CLSID_PBDA_GDDS_DATA_TYPE","features":[427]},{"name":"COLORKEY","features":[305,427]},{"name":"COLORKEY_TYPE","features":[427]},{"name":"COMPLETION_STATUS_FLAGS","features":[427]},{"name":"COMPSTAT_ABORT","features":[427]},{"name":"COMPSTAT_NOUPDATEOK","features":[427]},{"name":"COMPSTAT_WAIT","features":[427]},{"name":"CONDITIONALACCESS_ABORTED","features":[427]},{"name":"CONDITIONALACCESS_ACCESS_NOT_POSSIBLE","features":[427]},{"name":"CONDITIONALACCESS_ACCESS_POSSIBLE","features":[427]},{"name":"CONDITIONALACCESS_ACCESS_POSSIBLE_NO_STREAMING_DISRUPTION","features":[427]},{"name":"CONDITIONALACCESS_ACCESS_UNSPECIFIED","features":[427]},{"name":"CONDITIONALACCESS_CLOSED_ITSELF","features":[427]},{"name":"CONDITIONALACCESS_DIALOG_FOCUS_CHANGE","features":[427]},{"name":"CONDITIONALACCESS_DIALOG_TIMEOUT","features":[427]},{"name":"CONDITIONALACCESS_DIALOG_USER_DISMISSED","features":[427]},{"name":"CONDITIONALACCESS_DIALOG_USER_NOT_AVAILABLE","features":[427]},{"name":"CONDITIONALACCESS_ENDED_NOCHANGE","features":[427]},{"name":"CONDITIONALACCESS_SUCCESSFULL","features":[427]},{"name":"CONDITIONALACCESS_TUNER_REQUESTED_CLOSE","features":[427]},{"name":"CONDITIONALACCESS_UNSPECIFIED","features":[427]},{"name":"COPP_ACP_ForceDWORD","features":[427]},{"name":"COPP_ACP_Level0","features":[427]},{"name":"COPP_ACP_Level1","features":[427]},{"name":"COPP_ACP_Level2","features":[427]},{"name":"COPP_ACP_Level3","features":[427]},{"name":"COPP_ACP_LevelMax","features":[427]},{"name":"COPP_ACP_LevelMin","features":[427]},{"name":"COPP_ACP_Protection_Level","features":[427]},{"name":"COPP_AspectRatio_EN300294_Box14by9Center","features":[427]},{"name":"COPP_AspectRatio_EN300294_Box14by9Top","features":[427]},{"name":"COPP_AspectRatio_EN300294_Box16by9Center","features":[427]},{"name":"COPP_AspectRatio_EN300294_Box16by9Top","features":[427]},{"name":"COPP_AspectRatio_EN300294_BoxGT16by9Center","features":[427]},{"name":"COPP_AspectRatio_EN300294_FullFormat16by9Anamorphic","features":[427]},{"name":"COPP_AspectRatio_EN300294_FullFormat4by3","features":[427]},{"name":"COPP_AspectRatio_EN300294_FullFormat4by3ProtectedCenter","features":[427]},{"name":"COPP_AspectRatio_ForceDWORD","features":[427]},{"name":"COPP_BusType","features":[427]},{"name":"COPP_BusType_AGP","features":[427]},{"name":"COPP_BusType_ForceDWORD","features":[427]},{"name":"COPP_BusType_Integrated","features":[427]},{"name":"COPP_BusType_PCI","features":[427]},{"name":"COPP_BusType_PCIExpress","features":[427]},{"name":"COPP_BusType_PCIX","features":[427]},{"name":"COPP_BusType_Unknown","features":[427]},{"name":"COPP_CGMSA_CopyFreely","features":[427]},{"name":"COPP_CGMSA_CopyNever","features":[427]},{"name":"COPP_CGMSA_CopyNoMore","features":[427]},{"name":"COPP_CGMSA_CopyOneGeneration","features":[427]},{"name":"COPP_CGMSA_Disabled","features":[427]},{"name":"COPP_CGMSA_ForceDWORD","features":[427]},{"name":"COPP_CGMSA_LevelMax","features":[427]},{"name":"COPP_CGMSA_LevelMin","features":[427]},{"name":"COPP_CGMSA_Protection_Level","features":[427]},{"name":"COPP_CGMSA_RedistributionControlRequired","features":[427]},{"name":"COPP_ConnectorType","features":[427]},{"name":"COPP_ConnectorType_ComponentVideo","features":[427]},{"name":"COPP_ConnectorType_CompositeVideo","features":[427]},{"name":"COPP_ConnectorType_DVI","features":[427]},{"name":"COPP_ConnectorType_D_JPN","features":[427]},{"name":"COPP_ConnectorType_ForceDWORD","features":[427]},{"name":"COPP_ConnectorType_HDMI","features":[427]},{"name":"COPP_ConnectorType_Internal","features":[427]},{"name":"COPP_ConnectorType_LVDS","features":[427]},{"name":"COPP_ConnectorType_SVideo","features":[427]},{"name":"COPP_ConnectorType_TMDS","features":[427]},{"name":"COPP_ConnectorType_Unknown","features":[427]},{"name":"COPP_ConnectorType_VGA","features":[427]},{"name":"COPP_DefaultProtectionLevel","features":[427]},{"name":"COPP_HDCPFlagsReserved","features":[427]},{"name":"COPP_HDCPRepeater","features":[427]},{"name":"COPP_HDCP_ForceDWORD","features":[427]},{"name":"COPP_HDCP_Level0","features":[427]},{"name":"COPP_HDCP_Level1","features":[427]},{"name":"COPP_HDCP_LevelMax","features":[427]},{"name":"COPP_HDCP_LevelMin","features":[427]},{"name":"COPP_HDCP_Protection_Level","features":[427]},{"name":"COPP_ImageAspectRatio_EN300294","features":[427]},{"name":"COPP_ImageAspectRatio_EN300294_Mask","features":[427]},{"name":"COPP_LinkLost","features":[427]},{"name":"COPP_NoProtectionLevelAvailable","features":[427]},{"name":"COPP_ProtectionStandard_ARIBTRB15_1125i","features":[427]},{"name":"COPP_ProtectionStandard_ARIBTRB15_525i","features":[427]},{"name":"COPP_ProtectionStandard_ARIBTRB15_525p","features":[427]},{"name":"COPP_ProtectionStandard_ARIBTRB15_750p","features":[427]},{"name":"COPP_ProtectionStandard_CEA805A_TypeA_1125i","features":[427]},{"name":"COPP_ProtectionStandard_CEA805A_TypeA_525p","features":[427]},{"name":"COPP_ProtectionStandard_CEA805A_TypeA_750p","features":[427]},{"name":"COPP_ProtectionStandard_CEA805A_TypeB_1125i","features":[427]},{"name":"COPP_ProtectionStandard_CEA805A_TypeB_525p","features":[427]},{"name":"COPP_ProtectionStandard_CEA805A_TypeB_750p","features":[427]},{"name":"COPP_ProtectionStandard_EIA608B_525","features":[427]},{"name":"COPP_ProtectionStandard_EN300294_625i","features":[427]},{"name":"COPP_ProtectionStandard_IEC61880_2_525i","features":[427]},{"name":"COPP_ProtectionStandard_IEC61880_525i","features":[427]},{"name":"COPP_ProtectionStandard_IEC62375_625p","features":[427]},{"name":"COPP_ProtectionStandard_Mask","features":[427]},{"name":"COPP_ProtectionStandard_None","features":[427]},{"name":"COPP_ProtectionStandard_Reserved","features":[427]},{"name":"COPP_ProtectionStandard_Unknown","features":[427]},{"name":"COPP_RenegotiationRequired","features":[427]},{"name":"COPP_StatusFlags","features":[427]},{"name":"COPP_StatusFlagsReserved","features":[427]},{"name":"COPP_StatusHDCPFlags","features":[427]},{"name":"COPP_StatusNormal","features":[427]},{"name":"COPP_TVProtectionStandard","features":[427]},{"name":"CameraControlFlags","features":[427]},{"name":"CameraControlProperty","features":[427]},{"name":"CameraControl_Exposure","features":[427]},{"name":"CameraControl_Flags_Auto","features":[427]},{"name":"CameraControl_Flags_Manual","features":[427]},{"name":"CameraControl_Focus","features":[427]},{"name":"CameraControl_Iris","features":[427]},{"name":"CameraControl_Pan","features":[427]},{"name":"CameraControl_Roll","features":[427]},{"name":"CameraControl_Tilt","features":[427]},{"name":"CameraControl_Zoom","features":[427]},{"name":"CardDataChanged","features":[427]},{"name":"CardError","features":[427]},{"name":"CardFirmwareUpgrade","features":[427]},{"name":"CardInserted","features":[427]},{"name":"CardRemoved","features":[427]},{"name":"CategoryAudio","features":[427]},{"name":"CategoryCaptions","features":[427]},{"name":"CategoryData","features":[427]},{"name":"CategoryNotSet","features":[427]},{"name":"CategoryOther","features":[427]},{"name":"CategorySubtitles","features":[427]},{"name":"CategorySuperimpose","features":[427]},{"name":"CategoryText","features":[427]},{"name":"CategoryVideo","features":[427]},{"name":"ComponentCategory","features":[427]},{"name":"ComponentStatus","features":[427]},{"name":"CompressionCaps","features":[427]},{"name":"CompressionCaps_CanBFrame","features":[427]},{"name":"CompressionCaps_CanCrunch","features":[427]},{"name":"CompressionCaps_CanKeyFrame","features":[427]},{"name":"CompressionCaps_CanQuality","features":[427]},{"name":"CompressionCaps_CanWindow","features":[427]},{"name":"ConstantBitRate","features":[427]},{"name":"DDSFF_FLAGS","features":[427]},{"name":"DDSFF_PROGRESSIVERENDER","features":[427]},{"name":"DECIMATION_DEFAULT","features":[427]},{"name":"DECIMATION_LEGACY","features":[427]},{"name":"DECIMATION_USAGE","features":[427]},{"name":"DECIMATION_USE_DECODER_ONLY","features":[427]},{"name":"DECIMATION_USE_OVERLAY_ONLY","features":[427]},{"name":"DECIMATION_USE_VIDEOPORT_ONLY","features":[427]},{"name":"DECODER_CAP_NOTSUPPORTED","features":[427]},{"name":"DECODER_CAP_SUPPORTED","features":[427]},{"name":"DISPLAY_16x9","features":[427]},{"name":"DISPLAY_4x3_LETTERBOX_PREFERRED","features":[427]},{"name":"DISPLAY_4x3_PANSCAN_PREFERRED","features":[427]},{"name":"DISPLAY_CONTENT_DEFAULT","features":[427]},{"name":"DOLBY_AC3_AUDIO","features":[427]},{"name":"DOLBY_DIGITAL_PLUS_AUDIO_ATSC","features":[427]},{"name":"DVBSystemType","features":[427]},{"name":"DVB_Cable","features":[427]},{"name":"DVB_Satellite","features":[427]},{"name":"DVB_Terrestrial","features":[427]},{"name":"DVDECODERRESOLUTION_180x120","features":[427]},{"name":"DVDECODERRESOLUTION_360x240","features":[427]},{"name":"DVDECODERRESOLUTION_720x480","features":[427]},{"name":"DVDECODERRESOLUTION_88x60","features":[427]},{"name":"DVD_ATR","features":[427]},{"name":"DVD_AUDIO_APPMODE","features":[427]},{"name":"DVD_AUDIO_CAPS_AC3","features":[427]},{"name":"DVD_AUDIO_CAPS_DTS","features":[427]},{"name":"DVD_AUDIO_CAPS_LPCM","features":[427]},{"name":"DVD_AUDIO_CAPS_MPEG2","features":[427]},{"name":"DVD_AUDIO_CAPS_SDDS","features":[427]},{"name":"DVD_AUDIO_FORMAT","features":[427]},{"name":"DVD_AUDIO_LANG_EXT","features":[427]},{"name":"DVD_AUD_EXT_Captions","features":[427]},{"name":"DVD_AUD_EXT_DirectorComments1","features":[427]},{"name":"DVD_AUD_EXT_DirectorComments2","features":[427]},{"name":"DVD_AUD_EXT_NotSpecified","features":[427]},{"name":"DVD_AUD_EXT_VisuallyImpaired","features":[427]},{"name":"DVD_AppMode_Karaoke","features":[427]},{"name":"DVD_AppMode_Not_Specified","features":[427]},{"name":"DVD_AppMode_Other","features":[427]},{"name":"DVD_Assignment_LR","features":[427]},{"name":"DVD_Assignment_LR1","features":[427]},{"name":"DVD_Assignment_LR12","features":[427]},{"name":"DVD_Assignment_LRM","features":[427]},{"name":"DVD_Assignment_LRM1","features":[427]},{"name":"DVD_Assignment_LRM12","features":[427]},{"name":"DVD_Assignment_reserved0","features":[427]},{"name":"DVD_Assignment_reserved1","features":[427]},{"name":"DVD_AudioAttributes","features":[305,427]},{"name":"DVD_AudioDuringFFwdRew","features":[427]},{"name":"DVD_AudioFormat_AC3","features":[427]},{"name":"DVD_AudioFormat_DTS","features":[427]},{"name":"DVD_AudioFormat_LPCM","features":[427]},{"name":"DVD_AudioFormat_MPEG1","features":[427]},{"name":"DVD_AudioFormat_MPEG1_DRC","features":[427]},{"name":"DVD_AudioFormat_MPEG2","features":[427]},{"name":"DVD_AudioFormat_MPEG2_DRC","features":[427]},{"name":"DVD_AudioFormat_Other","features":[427]},{"name":"DVD_AudioFormat_SDDS","features":[427]},{"name":"DVD_AudioMode_Karaoke","features":[427]},{"name":"DVD_AudioMode_None","features":[427]},{"name":"DVD_AudioMode_Other","features":[427]},{"name":"DVD_AudioMode_Surround","features":[427]},{"name":"DVD_CMD_FLAGS","features":[427]},{"name":"DVD_CMD_FLAG_Block","features":[427]},{"name":"DVD_CMD_FLAG_EndAfterRendered","features":[427]},{"name":"DVD_CMD_FLAG_Flush","features":[427]},{"name":"DVD_CMD_FLAG_None","features":[427]},{"name":"DVD_CMD_FLAG_SendEvents","features":[427]},{"name":"DVD_CMD_FLAG_StartWhenRendered","features":[427]},{"name":"DVD_CacheSizeInMB","features":[427]},{"name":"DVD_Channel_Audio","features":[427]},{"name":"DVD_CharSet_ISO646","features":[427]},{"name":"DVD_CharSet_ISO8859_1","features":[427]},{"name":"DVD_CharSet_JIS_Roman_Kanji","features":[427]},{"name":"DVD_CharSet_ShiftJIS_Kanji_Roman_Katakana","features":[427]},{"name":"DVD_CharSet_Unicode","features":[427]},{"name":"DVD_DECODER_CAPS","features":[427]},{"name":"DVD_DEFAULT_AUDIO_STREAM","features":[427]},{"name":"DVD_DIR_BACKWARD","features":[427]},{"name":"DVD_DIR_FORWARD","features":[427]},{"name":"DVD_DISC_SIDE","features":[427]},{"name":"DVD_DOMAIN","features":[427]},{"name":"DVD_DOMAIN_FirstPlay","features":[427]},{"name":"DVD_DOMAIN_Stop","features":[427]},{"name":"DVD_DOMAIN_Title","features":[427]},{"name":"DVD_DOMAIN_VideoManagerMenu","features":[427]},{"name":"DVD_DOMAIN_VideoTitleSetMenu","features":[427]},{"name":"DVD_DisableStillThrottle","features":[427]},{"name":"DVD_ERROR","features":[427]},{"name":"DVD_ERROR_CopyProtectFail","features":[427]},{"name":"DVD_ERROR_CopyProtectOutputFail","features":[427]},{"name":"DVD_ERROR_CopyProtectOutputNotSupported","features":[427]},{"name":"DVD_ERROR_IncompatibleDiscAndDecoderRegions","features":[427]},{"name":"DVD_ERROR_IncompatibleSystemAndDecoderRegions","features":[427]},{"name":"DVD_ERROR_InvalidDVD1_0Disc","features":[427]},{"name":"DVD_ERROR_InvalidDiscRegion","features":[427]},{"name":"DVD_ERROR_LowParentalLevel","features":[427]},{"name":"DVD_ERROR_MacrovisionFail","features":[427]},{"name":"DVD_ERROR_Unexpected","features":[427]},{"name":"DVD_EnableCC","features":[427]},{"name":"DVD_EnableESOutput","features":[427]},{"name":"DVD_EnableExtendedCopyProtectErrors","features":[427]},{"name":"DVD_EnableLoggingEvents","features":[427]},{"name":"DVD_EnableNonblockingAPIs","features":[427]},{"name":"DVD_EnablePortableBookmarks","features":[427]},{"name":"DVD_EnableStreaming","features":[427]},{"name":"DVD_EnableTitleLength","features":[427]},{"name":"DVD_FPS_25","features":[427]},{"name":"DVD_FPS_30NonDrop","features":[427]},{"name":"DVD_FRAMERATE","features":[427]},{"name":"DVD_General_Comments","features":[427]},{"name":"DVD_General_Name","features":[427]},{"name":"DVD_HMSF_TIMECODE","features":[427]},{"name":"DVD_HMSF_TimeCodeEvents","features":[427]},{"name":"DVD_IncreaseOutputControl","features":[427]},{"name":"DVD_KARAOKE_ASSIGNMENT","features":[427]},{"name":"DVD_KARAOKE_CONTENTS","features":[427]},{"name":"DVD_KARAOKE_DOWNMIX","features":[427]},{"name":"DVD_KaraokeAttributes","features":[305,427]},{"name":"DVD_Karaoke_GuideMelody1","features":[427]},{"name":"DVD_Karaoke_GuideMelody2","features":[427]},{"name":"DVD_Karaoke_GuideMelodyA","features":[427]},{"name":"DVD_Karaoke_GuideMelodyB","features":[427]},{"name":"DVD_Karaoke_GuideVocal1","features":[427]},{"name":"DVD_Karaoke_GuideVocal2","features":[427]},{"name":"DVD_Karaoke_SoundEffectA","features":[427]},{"name":"DVD_Karaoke_SoundEffectB","features":[427]},{"name":"DVD_MENU_Angle","features":[427]},{"name":"DVD_MENU_Audio","features":[427]},{"name":"DVD_MENU_Chapter","features":[427]},{"name":"DVD_MENU_ID","features":[427]},{"name":"DVD_MENU_Root","features":[427]},{"name":"DVD_MENU_Subpicture","features":[427]},{"name":"DVD_MENU_Title","features":[427]},{"name":"DVD_MUA_Coeff","features":[427]},{"name":"DVD_MUA_MixingInfo","features":[305,427]},{"name":"DVD_MaxReadBurstInKB","features":[427]},{"name":"DVD_MenuAttributes","features":[305,427]},{"name":"DVD_Mix_0to0","features":[427]},{"name":"DVD_Mix_0to1","features":[427]},{"name":"DVD_Mix_1to0","features":[427]},{"name":"DVD_Mix_1to1","features":[427]},{"name":"DVD_Mix_2to0","features":[427]},{"name":"DVD_Mix_2to1","features":[427]},{"name":"DVD_Mix_3to0","features":[427]},{"name":"DVD_Mix_3to1","features":[427]},{"name":"DVD_Mix_4to0","features":[427]},{"name":"DVD_Mix_4to1","features":[427]},{"name":"DVD_Mix_Lto0","features":[427]},{"name":"DVD_Mix_Lto1","features":[427]},{"name":"DVD_Mix_Rto0","features":[427]},{"name":"DVD_Mix_Rto1","features":[427]},{"name":"DVD_MultichannelAudioAttributes","features":[305,427]},{"name":"DVD_NavCmdType","features":[427]},{"name":"DVD_NavCmdType_Button","features":[427]},{"name":"DVD_NavCmdType_Cell","features":[427]},{"name":"DVD_NavCmdType_Post","features":[427]},{"name":"DVD_NavCmdType_Pre","features":[427]},{"name":"DVD_NotifyParentalLevelChange","features":[427]},{"name":"DVD_NotifyPositionChange","features":[427]},{"name":"DVD_OPTION_FLAG","features":[427]},{"name":"DVD_Other_Cut","features":[427]},{"name":"DVD_Other_Scene","features":[427]},{"name":"DVD_Other_Take","features":[427]},{"name":"DVD_PARENTAL_LEVEL","features":[427]},{"name":"DVD_PARENTAL_LEVEL_1","features":[427]},{"name":"DVD_PARENTAL_LEVEL_2","features":[427]},{"name":"DVD_PARENTAL_LEVEL_3","features":[427]},{"name":"DVD_PARENTAL_LEVEL_4","features":[427]},{"name":"DVD_PARENTAL_LEVEL_5","features":[427]},{"name":"DVD_PARENTAL_LEVEL_6","features":[427]},{"name":"DVD_PARENTAL_LEVEL_7","features":[427]},{"name":"DVD_PARENTAL_LEVEL_8","features":[427]},{"name":"DVD_PB_STOPPED","features":[427]},{"name":"DVD_PB_STOPPED_CopyProtectFailure","features":[427]},{"name":"DVD_PB_STOPPED_CopyProtectOutputFailure","features":[427]},{"name":"DVD_PB_STOPPED_CopyProtectOutputNotSupported","features":[427]},{"name":"DVD_PB_STOPPED_DiscEjected","features":[427]},{"name":"DVD_PB_STOPPED_DiscReadError","features":[427]},{"name":"DVD_PB_STOPPED_IllegalNavCommand","features":[427]},{"name":"DVD_PB_STOPPED_MacrovisionFailure","features":[427]},{"name":"DVD_PB_STOPPED_NoBranch","features":[427]},{"name":"DVD_PB_STOPPED_NoFirstPlayDomain","features":[427]},{"name":"DVD_PB_STOPPED_Other","features":[427]},{"name":"DVD_PB_STOPPED_ParentalFailure","features":[427]},{"name":"DVD_PB_STOPPED_PlayChapterAutoStop","features":[427]},{"name":"DVD_PB_STOPPED_PlayPeriodAutoStop","features":[427]},{"name":"DVD_PB_STOPPED_RegionFailure","features":[427]},{"name":"DVD_PB_STOPPED_Reset","features":[427]},{"name":"DVD_PB_STOPPED_StopCommand","features":[427]},{"name":"DVD_PLAYBACK_LOCATION","features":[427]},{"name":"DVD_PLAYBACK_LOCATION2","features":[427]},{"name":"DVD_PLAY_DIRECTION","features":[427]},{"name":"DVD_PREFERRED_DISPLAY_MODE","features":[427]},{"name":"DVD_REGION","features":[427]},{"name":"DVD_RELATIVE_BUTTON","features":[427]},{"name":"DVD_ReadBurstPeriodInMS","features":[427]},{"name":"DVD_Relative_Left","features":[427]},{"name":"DVD_Relative_Lower","features":[427]},{"name":"DVD_Relative_Right","features":[427]},{"name":"DVD_Relative_Upper","features":[427]},{"name":"DVD_ResetOnStop","features":[427]},{"name":"DVD_RestartDisc","features":[427]},{"name":"DVD_SIDE_A","features":[427]},{"name":"DVD_SIDE_B","features":[427]},{"name":"DVD_SPCoding_Extended","features":[427]},{"name":"DVD_SPCoding_Other","features":[427]},{"name":"DVD_SPCoding_RunLength","features":[427]},{"name":"DVD_SPType_Language","features":[427]},{"name":"DVD_SPType_NotSpecified","features":[427]},{"name":"DVD_SPType_Other","features":[427]},{"name":"DVD_SP_EXT_CC_Big","features":[427]},{"name":"DVD_SP_EXT_CC_Children","features":[427]},{"name":"DVD_SP_EXT_CC_Normal","features":[427]},{"name":"DVD_SP_EXT_Caption_Big","features":[427]},{"name":"DVD_SP_EXT_Caption_Children","features":[427]},{"name":"DVD_SP_EXT_Caption_Normal","features":[427]},{"name":"DVD_SP_EXT_DirectorComments_Big","features":[427]},{"name":"DVD_SP_EXT_DirectorComments_Children","features":[427]},{"name":"DVD_SP_EXT_DirectorComments_Normal","features":[427]},{"name":"DVD_SP_EXT_Forced","features":[427]},{"name":"DVD_SP_EXT_NotSpecified","features":[427]},{"name":"DVD_STREAM_DATA_CURRENT","features":[427]},{"name":"DVD_STREAM_DATA_VMGM","features":[427]},{"name":"DVD_STREAM_DATA_VTSM","features":[427]},{"name":"DVD_SUBPICTURE_CODING","features":[427]},{"name":"DVD_SUBPICTURE_LANG_EXT","features":[427]},{"name":"DVD_SUBPICTURE_TYPE","features":[427]},{"name":"DVD_Stream_Angle","features":[427]},{"name":"DVD_Stream_Audio","features":[427]},{"name":"DVD_Stream_Subpicture","features":[427]},{"name":"DVD_Struct_Cell","features":[427]},{"name":"DVD_Struct_ParentalID","features":[427]},{"name":"DVD_Struct_PartOfTitle","features":[427]},{"name":"DVD_Struct_Title","features":[427]},{"name":"DVD_Struct_Volume","features":[427]},{"name":"DVD_SubpictureAttributes","features":[427]},{"name":"DVD_TC_FLAG_25fps","features":[427]},{"name":"DVD_TC_FLAG_30fps","features":[427]},{"name":"DVD_TC_FLAG_DropFrame","features":[427]},{"name":"DVD_TC_FLAG_Interpolated","features":[427]},{"name":"DVD_TIMECODE","features":[427]},{"name":"DVD_TIMECODE_FLAGS","features":[427]},{"name":"DVD_TITLE_APPMODE","features":[427]},{"name":"DVD_TITLE_MENU","features":[427]},{"name":"DVD_TextCharSet","features":[427]},{"name":"DVD_TextStringType","features":[427]},{"name":"DVD_TitleAttributes","features":[305,427]},{"name":"DVD_Title_Album","features":[427]},{"name":"DVD_Title_Movie","features":[427]},{"name":"DVD_Title_Orig_Album","features":[427]},{"name":"DVD_Title_Orig_Movie","features":[427]},{"name":"DVD_Title_Orig_Other","features":[427]},{"name":"DVD_Title_Orig_Series","features":[427]},{"name":"DVD_Title_Orig_Song","features":[427]},{"name":"DVD_Title_Orig_Video","features":[427]},{"name":"DVD_Title_Other","features":[427]},{"name":"DVD_Title_Series","features":[427]},{"name":"DVD_Title_Song","features":[427]},{"name":"DVD_Title_Sub_Album","features":[427]},{"name":"DVD_Title_Sub_Movie","features":[427]},{"name":"DVD_Title_Sub_Other","features":[427]},{"name":"DVD_Title_Sub_Series","features":[427]},{"name":"DVD_Title_Sub_Song","features":[427]},{"name":"DVD_Title_Sub_Video","features":[427]},{"name":"DVD_Title_Video","features":[427]},{"name":"DVD_VIDEO_COMPRESSION","features":[427]},{"name":"DVD_VideoAttributes","features":[305,427]},{"name":"DVD_VideoCompression_MPEG1","features":[427]},{"name":"DVD_VideoCompression_MPEG2","features":[427]},{"name":"DVD_VideoCompression_Other","features":[427]},{"name":"DVD_WARNING","features":[427]},{"name":"DVD_WARNING_FormatNotSupported","features":[427]},{"name":"DVD_WARNING_IllegalNavCommand","features":[427]},{"name":"DVD_WARNING_InvalidDVD1_0Disc","features":[427]},{"name":"DVD_WARNING_Open","features":[427]},{"name":"DVD_WARNING_Read","features":[427]},{"name":"DVD_WARNING_Seek","features":[427]},{"name":"DVENCODERFORMAT_DVHD","features":[427]},{"name":"DVENCODERFORMAT_DVSD","features":[427]},{"name":"DVENCODERFORMAT_DVSL","features":[427]},{"name":"DVENCODERRESOLUTION_180x120","features":[427]},{"name":"DVENCODERRESOLUTION_360x240","features":[427]},{"name":"DVENCODERRESOLUTION_720x480","features":[427]},{"name":"DVENCODERRESOLUTION_88x60","features":[427]},{"name":"DVENCODERVIDEOFORMAT_NTSC","features":[427]},{"name":"DVENCODERVIDEOFORMAT_PAL","features":[427]},{"name":"DVINFO","features":[427]},{"name":"DVRESOLUTION_DC","features":[427]},{"name":"DVRESOLUTION_FULL","features":[427]},{"name":"DVRESOLUTION_HALF","features":[427]},{"name":"DVRESOLUTION_QUARTER","features":[427]},{"name":"DWORD_ALLPARAMS","features":[427]},{"name":"DXVA2SW_CALLBACKS","features":[305,314,427,428]},{"name":"DXVA2TraceVideoProcessBltData","features":[305,427,335]},{"name":"DXVA2Trace_Control","features":[427]},{"name":"DXVA2Trace_DecodeDevBeginFrame","features":[427]},{"name":"DXVA2Trace_DecodeDevBeginFrameData","features":[305,427,335]},{"name":"DXVA2Trace_DecodeDevCreated","features":[427]},{"name":"DXVA2Trace_DecodeDevCreatedData","features":[305,427,335]},{"name":"DXVA2Trace_DecodeDevDestroyed","features":[427]},{"name":"DXVA2Trace_DecodeDevEndFrame","features":[427]},{"name":"DXVA2Trace_DecodeDevExecute","features":[427]},{"name":"DXVA2Trace_DecodeDevGetBuffer","features":[427]},{"name":"DXVA2Trace_DecodeDevGetBufferData","features":[305,427,335]},{"name":"DXVA2Trace_DecodeDeviceData","features":[305,427,335]},{"name":"DXVA2Trace_VideoProcessBlt","features":[427]},{"name":"DXVA2Trace_VideoProcessDevCreated","features":[427]},{"name":"DXVA2Trace_VideoProcessDevCreatedData","features":[305,427,335]},{"name":"DXVA2Trace_VideoProcessDevDestroyed","features":[427]},{"name":"DXVA2Trace_VideoProcessDeviceData","features":[305,427,335]},{"name":"DXVA2_DestinationFlagMask","features":[427]},{"name":"DXVA2_DestinationFlag_Alpha_Changed","features":[427]},{"name":"DXVA2_DestinationFlag_Background_Changed","features":[427]},{"name":"DXVA2_DestinationFlag_ColorData_Changed","features":[427]},{"name":"DXVA2_DestinationFlag_RFF","features":[427]},{"name":"DXVA2_DestinationFlag_RFF_TFF_Present","features":[427]},{"name":"DXVA2_DestinationFlag_TFF","features":[427]},{"name":"DXVA2_DestinationFlag_TargetRect_Changed","features":[427]},{"name":"DXVA2_DestinationFlags","features":[427]},{"name":"DXVA2_SampleFlag_ColorData_Changed","features":[427]},{"name":"DXVA2_SampleFlag_DstRect_Changed","features":[427]},{"name":"DXVA2_SampleFlag_Palette_Changed","features":[427]},{"name":"DXVA2_SampleFlag_PlanarAlpha_Changed","features":[427]},{"name":"DXVA2_SampleFlag_RFF","features":[427]},{"name":"DXVA2_SampleFlag_RFF_TFF_Present","features":[427]},{"name":"DXVA2_SampleFlag_SrcRect_Changed","features":[427]},{"name":"DXVA2_SampleFlag_TFF","features":[427]},{"name":"DXVA2_SampleFlags","features":[427]},{"name":"DXVA2_SampleFlagsMask","features":[427]},{"name":"DXVA2_VIDEOPROCESSBLT","features":[305,427,428]},{"name":"DXVA2_VIDEOSAMPLE","features":[305,427,428]},{"name":"DXVA_ALPHA_BLEND_COMBINATION_BUFFER","features":[427]},{"name":"DXVA_ALPHA_BLEND_COMBINATION_FUNCTION","features":[427]},{"name":"DXVA_ALPHA_BLEND_DATA_LOAD_FUNCTION","features":[427]},{"name":"DXVA_AYUV_BUFFER","features":[427]},{"name":"DXVA_BIDIRECTIONAL_AVERAGING_H263_TRUNC","features":[427]},{"name":"DXVA_BIDIRECTIONAL_AVERAGING_MPEG2_ROUND","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_BACKWARD","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_FORWARD","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_INTRA","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_METHOD_UNSPECIFIED","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_LIKELY","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_MILD","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_SEVERE","features":[427]},{"name":"DXVA_BITSTREAM_CONCEALMENT_NEED_UNLIKELY","features":[427]},{"name":"DXVA_BITSTREAM_DATA_BUFFER","features":[427]},{"name":"DXVA_CHROMA_FORMAT_420","features":[427]},{"name":"DXVA_CHROMA_FORMAT_422","features":[427]},{"name":"DXVA_CHROMA_FORMAT_444","features":[427]},{"name":"DXVA_COMPBUFFER_TYPE_THAT_IS_NOT_USED","features":[427]},{"name":"DXVA_CONFIG_BLEND_TYPE_BACK_HARDWARE","features":[427]},{"name":"DXVA_CONFIG_BLEND_TYPE_FRONT_BUFFER","features":[427]},{"name":"DXVA_CONFIG_DATA_TYPE_AI44","features":[427]},{"name":"DXVA_CONFIG_DATA_TYPE_AYUV","features":[427]},{"name":"DXVA_CONFIG_DATA_TYPE_DPXD","features":[427]},{"name":"DXVA_CONFIG_DATA_TYPE_IA44","features":[427]},{"name":"DXVA_COPPCommandFnCode","features":[427]},{"name":"DXVA_COPPDevice","features":[427]},{"name":"DXVA_COPPGetCertificateLengthFnCode","features":[427]},{"name":"DXVA_COPPKeyExchangeFnCode","features":[427]},{"name":"DXVA_COPPQueryBusData","features":[427]},{"name":"DXVA_COPPQueryConnectorType","features":[427]},{"name":"DXVA_COPPQueryDisplayData","features":[427]},{"name":"DXVA_COPPQueryGlobalProtectionLevel","features":[427]},{"name":"DXVA_COPPQueryHDCPKeyData","features":[427]},{"name":"DXVA_COPPQueryLocalProtectionLevel","features":[427]},{"name":"DXVA_COPPQueryProtectionType","features":[427]},{"name":"DXVA_COPPQuerySignaling","features":[427]},{"name":"DXVA_COPPQueryStatusFnCode","features":[427]},{"name":"DXVA_COPPSequenceStartFnCode","features":[427]},{"name":"DXVA_COPPSetProtectionLevel","features":[427]},{"name":"DXVA_COPPSetProtectionLevelCmdData","features":[427]},{"name":"DXVA_COPPSetSignaling","features":[427]},{"name":"DXVA_COPPSetSignalingCmdData","features":[427]},{"name":"DXVA_COPPStatusData","features":[427]},{"name":"DXVA_COPPStatusDisplayData","features":[427]},{"name":"DXVA_COPPStatusHDCPKeyData","features":[427]},{"name":"DXVA_COPPStatusSignalingCmdData","features":[427]},{"name":"DXVA_DCCMD_SURFACE_BUFFER","features":[427]},{"name":"DXVA_DEBLOCKING_CONTROL_BUFFER","features":[427]},{"name":"DXVA_DEBLOCKING_FILTER_FUNCTION","features":[427]},{"name":"DXVA_DPXD_SURFACE_BUFFER","features":[427]},{"name":"DXVA_DeinterlaceBltExFnCode","features":[427]},{"name":"DXVA_DeinterlaceBltFnCode","features":[427]},{"name":"DXVA_DeinterlaceBobDevice","features":[427]},{"name":"DXVA_DeinterlaceContainerDevice","features":[427]},{"name":"DXVA_DeinterlaceQueryAvailableModesFnCode","features":[427]},{"name":"DXVA_DeinterlaceQueryModeCapsFnCode","features":[427]},{"name":"DXVA_ENCRYPTPROTOCOLFUNCFLAG_ACCEL","features":[427]},{"name":"DXVA_ENCRYPTPROTOCOLFUNCFLAG_HOST","features":[427]},{"name":"DXVA_EXECUTE_RETURN_DATA_ERROR_MINOR","features":[427]},{"name":"DXVA_EXECUTE_RETURN_DATA_ERROR_SEVERE","features":[427]},{"name":"DXVA_EXECUTE_RETURN_DATA_ERROR_SIGNIF","features":[427]},{"name":"DXVA_EXECUTE_RETURN_OK","features":[427]},{"name":"DXVA_EXECUTE_RETURN_OTHER_ERROR_SEVERE","features":[427]},{"name":"DXVA_ExtColorData_ShiftBase","features":[427]},{"name":"DXVA_FILM_GRAIN_BUFFER","features":[427]},{"name":"DXVA_FILM_GRAIN_SYNTHESIS_FUNCTION","features":[427]},{"name":"DXVA_HIGHLIGHT_BUFFER","features":[427]},{"name":"DXVA_IA44_SURFACE_BUFFER","features":[427]},{"name":"DXVA_INVERSE_QUANTIZATION_MATRIX_BUFFER","features":[427]},{"name":"DXVA_MACROBLOCK_CONTROL_BUFFER","features":[427]},{"name":"DXVA_MOTION_VECTOR_BUFFER","features":[427]},{"name":"DXVA_MV_PRECISION_AND_CHROMA_RELATION_H261","features":[427]},{"name":"DXVA_MV_PRECISION_AND_CHROMA_RELATION_H263","features":[427]},{"name":"DXVA_MV_PRECISION_AND_CHROMA_RELATION_MPEG2","features":[427]},{"name":"DXVA_ModeAV1_VLD_12bit_Profile2","features":[427]},{"name":"DXVA_ModeAV1_VLD_12bit_Profile2_420","features":[427]},{"name":"DXVA_ModeAV1_VLD_Profile0","features":[427]},{"name":"DXVA_ModeAV1_VLD_Profile1","features":[427]},{"name":"DXVA_ModeAV1_VLD_Profile2","features":[427]},{"name":"DXVA_ModeH261_A","features":[427]},{"name":"DXVA_ModeH261_B","features":[427]},{"name":"DXVA_ModeH263_A","features":[427]},{"name":"DXVA_ModeH263_B","features":[427]},{"name":"DXVA_ModeH263_C","features":[427]},{"name":"DXVA_ModeH263_D","features":[427]},{"name":"DXVA_ModeH263_E","features":[427]},{"name":"DXVA_ModeH263_F","features":[427]},{"name":"DXVA_ModeH264_A","features":[427]},{"name":"DXVA_ModeH264_B","features":[427]},{"name":"DXVA_ModeH264_C","features":[427]},{"name":"DXVA_ModeH264_D","features":[427]},{"name":"DXVA_ModeH264_E","features":[427]},{"name":"DXVA_ModeH264_F","features":[427]},{"name":"DXVA_ModeH264_VLD_Multiview_NoFGT","features":[427]},{"name":"DXVA_ModeH264_VLD_Stereo_NoFGT","features":[427]},{"name":"DXVA_ModeH264_VLD_Stereo_Progressive_NoFGT","features":[427]},{"name":"DXVA_ModeH264_VLD_WithFMOASO_NoFGT","features":[427]},{"name":"DXVA_ModeHEVC_VLD_Main","features":[427]},{"name":"DXVA_ModeHEVC_VLD_Main10","features":[427]},{"name":"DXVA_ModeMPEG1_A","features":[427]},{"name":"DXVA_ModeMPEG1_VLD","features":[427]},{"name":"DXVA_ModeMPEG2_A","features":[427]},{"name":"DXVA_ModeMPEG2_B","features":[427]},{"name":"DXVA_ModeMPEG2_C","features":[427]},{"name":"DXVA_ModeMPEG2_D","features":[427]},{"name":"DXVA_ModeMPEG2and1_VLD","features":[427]},{"name":"DXVA_ModeMPEG4pt2_VLD_AdvSimple_GMC","features":[427]},{"name":"DXVA_ModeMPEG4pt2_VLD_AdvSimple_NoGMC","features":[427]},{"name":"DXVA_ModeMPEG4pt2_VLD_Simple","features":[427]},{"name":"DXVA_ModeNone","features":[427]},{"name":"DXVA_ModeVC1_A","features":[427]},{"name":"DXVA_ModeVC1_B","features":[427]},{"name":"DXVA_ModeVC1_C","features":[427]},{"name":"DXVA_ModeVC1_D","features":[427]},{"name":"DXVA_ModeVC1_D2010","features":[427]},{"name":"DXVA_ModeVP8_VLD","features":[427]},{"name":"DXVA_ModeVP9_VLD_10bit_Profile2","features":[427]},{"name":"DXVA_ModeVP9_VLD_Profile0","features":[427]},{"name":"DXVA_ModeWMV8_A","features":[427]},{"name":"DXVA_ModeWMV8_B","features":[427]},{"name":"DXVA_ModeWMV9_A","features":[427]},{"name":"DXVA_ModeWMV9_B","features":[427]},{"name":"DXVA_ModeWMV9_C","features":[427]},{"name":"DXVA_NUM_TYPES_COMP_BUFFERS","features":[427]},{"name":"DXVA_NoEncrypt","features":[427]},{"name":"DXVA_NumMV_OBMC_off_BinPBwith4MV_off","features":[427]},{"name":"DXVA_NumMV_OBMC_off_BinPBwith4MV_on","features":[427]},{"name":"DXVA_NumMV_OBMC_on__BinPB_off","features":[427]},{"name":"DXVA_NumMV_OBMC_on__BinPB_on","features":[427]},{"name":"DXVA_PICTURE_DECODE_BUFFER","features":[427]},{"name":"DXVA_PICTURE_DECODING_FUNCTION","features":[427]},{"name":"DXVA_PICTURE_RESAMPLE_BUFFER","features":[427]},{"name":"DXVA_PICTURE_RESAMPLE_FUNCTION","features":[427]},{"name":"DXVA_PICTURE_STRUCTURE_BOTTOM_FIELD","features":[427]},{"name":"DXVA_PICTURE_STRUCTURE_FRAME","features":[427]},{"name":"DXVA_PICTURE_STRUCTURE_TOP_FIELD","features":[427]},{"name":"DXVA_ProcAmpControlBltFnCode","features":[427]},{"name":"DXVA_ProcAmpControlDevice","features":[427]},{"name":"DXVA_ProcAmpControlQueryCapsFnCode","features":[427]},{"name":"DXVA_ProcAmpControlQueryRangeFnCode","features":[427]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_LOCK_FALSE_PLUS","features":[427]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_LOCK_OK_COPY","features":[427]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_PROBE_FALSE_PLUS","features":[427]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_PROBE_OK_COPY","features":[427]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_ACCEL_PROBE_OK_PLUS","features":[427]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_DECODER_LOCK_QUERY","features":[427]},{"name":"DXVA_QUERYORREPLYFUNCFLAG_DECODER_PROBE_QUERY","features":[427]},{"name":"DXVA_READ_BACK_BUFFER","features":[427]},{"name":"DXVA_RESIDUAL_DIFFERENCE_BUFFER","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H261_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H261_B","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H263_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H263_B","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H263_C","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H263_D","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H263_E","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H263_F","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_B","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_C","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_D","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_E","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_F","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_IDCT_FGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_IDCT_NOFGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_MOCOMP_FGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_MOCOMP_NOFGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_FGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_MULTIVIEW_NOFGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_NOFGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_STEREO_NOFGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_STEREO_PROGRESSIVE_NOFGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_H264_VLD_WITHFMOASO_NOFGT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG1_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG1_VLD","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_B","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_C","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG2_D","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG2and1_VLD","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG4PT2_VLD_ADV_SIMPLE_GMC","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG4PT2_VLD_ADV_SIMPLE_NOGMC","features":[427]},{"name":"DXVA_RESTRICTED_MODE_MPEG4PT2_VLD_SIMPLE","features":[427]},{"name":"DXVA_RESTRICTED_MODE_UNRESTRICTED","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_B","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_C","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_D","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_D2010","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_IDCT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_MOCOMP","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_POSTPROC","features":[427]},{"name":"DXVA_RESTRICTED_MODE_VC1_VLD","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV8_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV8_B","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV8_MOCOMP","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV8_POSTPROC","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV9_A","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV9_B","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV9_C","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV9_IDCT","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV9_MOCOMP","features":[427]},{"name":"DXVA_RESTRICTED_MODE_WMV9_POSTPROC","features":[427]},{"name":"DXVA_SCAN_METHOD_ALTERNATE_HORIZONTAL","features":[427]},{"name":"DXVA_SCAN_METHOD_ALTERNATE_VERTICAL","features":[427]},{"name":"DXVA_SCAN_METHOD_ARBITRARY","features":[427]},{"name":"DXVA_SCAN_METHOD_ZIG_ZAG","features":[427]},{"name":"DXVA_SLICE_CONTROL_BUFFER","features":[427]},{"name":"DXVA_STATUS_REPORTING_FUNCTION","features":[427]},{"name":"DXVA_USUAL_BLOCK_HEIGHT","features":[427]},{"name":"DXVA_USUAL_BLOCK_WIDTH","features":[427]},{"name":"DeinterlacePref9_BOB","features":[427]},{"name":"DeinterlacePref9_Mask","features":[427]},{"name":"DeinterlacePref9_NextBest","features":[427]},{"name":"DeinterlacePref9_Weave","features":[427]},{"name":"DeinterlacePref_BOB","features":[427]},{"name":"DeinterlacePref_Mask","features":[427]},{"name":"DeinterlacePref_NextBest","features":[427]},{"name":"DeinterlacePref_Weave","features":[427]},{"name":"DeinterlaceTech9_BOBLineReplicate","features":[427]},{"name":"DeinterlaceTech9_BOBVerticalStretch","features":[427]},{"name":"DeinterlaceTech9_EdgeFiltering","features":[427]},{"name":"DeinterlaceTech9_FieldAdaptive","features":[427]},{"name":"DeinterlaceTech9_MedianFiltering","features":[427]},{"name":"DeinterlaceTech9_MotionVectorSteered","features":[427]},{"name":"DeinterlaceTech9_PixelAdaptive","features":[427]},{"name":"DeinterlaceTech9_Unknown","features":[427]},{"name":"DeinterlaceTech_BOBLineReplicate","features":[427]},{"name":"DeinterlaceTech_BOBVerticalStretch","features":[427]},{"name":"DeinterlaceTech_EdgeFiltering","features":[427]},{"name":"DeinterlaceTech_FieldAdaptive","features":[427]},{"name":"DeinterlaceTech_MedianFiltering","features":[427]},{"name":"DeinterlaceTech_MotionVectorSteered","features":[427]},{"name":"DeinterlaceTech_PixelAdaptive","features":[427]},{"name":"DeinterlaceTech_Unknown","features":[427]},{"name":"DeviceClosed","features":[427]},{"name":"Disabled","features":[427]},{"name":"EALocationCodeType","features":[427]},{"name":"EC_ACTIVATE","features":[427]},{"name":"EC_BANDWIDTHCHANGE","features":[427]},{"name":"EC_BUFFERING_DATA","features":[427]},{"name":"EC_BUILT","features":[427]},{"name":"EC_CLOCK_CHANGED","features":[427]},{"name":"EC_CLOCK_UNSET","features":[427]},{"name":"EC_CODECAPI_EVENT","features":[427]},{"name":"EC_COMPLETE","features":[427]},{"name":"EC_CONTENTPROPERTY_CHANGED","features":[427]},{"name":"EC_DEVICE_LOST","features":[427]},{"name":"EC_DISPLAY_CHANGED","features":[427]},{"name":"EC_DVDBASE","features":[427]},{"name":"EC_DVD_ANGLES_AVAILABLE","features":[427]},{"name":"EC_DVD_ANGLE_CHANGE","features":[427]},{"name":"EC_DVD_AUDIO_STREAM_CHANGE","features":[427]},{"name":"EC_DVD_BUTTON_AUTO_ACTIVATED","features":[427]},{"name":"EC_DVD_BUTTON_CHANGE","features":[427]},{"name":"EC_DVD_BeginNavigationCommands","features":[427]},{"name":"EC_DVD_CHAPTER_AUTOSTOP","features":[427]},{"name":"EC_DVD_CHAPTER_START","features":[427]},{"name":"EC_DVD_CMD_END","features":[427]},{"name":"EC_DVD_CMD_START","features":[427]},{"name":"EC_DVD_CURRENT_HMSF_TIME","features":[427]},{"name":"EC_DVD_CURRENT_TIME","features":[427]},{"name":"EC_DVD_DISC_EJECTED","features":[427]},{"name":"EC_DVD_DISC_INSERTED","features":[427]},{"name":"EC_DVD_DOMAIN_CHANGE","features":[427]},{"name":"EC_DVD_ERROR","features":[427]},{"name":"EC_DVD_GPRM_Change","features":[427]},{"name":"EC_DVD_KARAOKE_MODE","features":[427]},{"name":"EC_DVD_NO_FP_PGC","features":[427]},{"name":"EC_DVD_NavigationCommand","features":[427]},{"name":"EC_DVD_PARENTAL_LEVEL_CHANGE","features":[427]},{"name":"EC_DVD_PLAYBACK_RATE_CHANGE","features":[427]},{"name":"EC_DVD_PLAYBACK_STOPPED","features":[427]},{"name":"EC_DVD_PLAYPERIOD_AUTOSTOP","features":[427]},{"name":"EC_DVD_PROGRAM_CELL_CHANGE","features":[427]},{"name":"EC_DVD_PROGRAM_CHAIN_CHANGE","features":[427]},{"name":"EC_DVD_SPRM_Change","features":[427]},{"name":"EC_DVD_STILL_OFF","features":[427]},{"name":"EC_DVD_STILL_ON","features":[427]},{"name":"EC_DVD_SUBPICTURE_STREAM_CHANGE","features":[427]},{"name":"EC_DVD_TITLE_CHANGE","features":[427]},{"name":"EC_DVD_TITLE_SET_CHANGE","features":[427]},{"name":"EC_DVD_VALID_UOPS_CHANGE","features":[427]},{"name":"EC_DVD_VOBU_Offset","features":[427]},{"name":"EC_DVD_VOBU_Timestamp","features":[427]},{"name":"EC_DVD_WARNING","features":[427]},{"name":"EC_END_OF_SEGMENT","features":[427]},{"name":"EC_EOS_SOON","features":[427]},{"name":"EC_ERRORABORT","features":[427]},{"name":"EC_ERRORABORTEX","features":[427]},{"name":"EC_ERROR_STILLPLAYING","features":[427]},{"name":"EC_EXTDEVICE_MODE_CHANGE","features":[427]},{"name":"EC_FILE_CLOSED","features":[427]},{"name":"EC_FULLSCREEN_LOST","features":[427]},{"name":"EC_GRAPH_CHANGED","features":[427]},{"name":"EC_LENGTH_CHANGED","features":[427]},{"name":"EC_LOADSTATUS","features":[427]},{"name":"EC_MARKER_HIT","features":[427]},{"name":"EC_NEED_RESTART","features":[427]},{"name":"EC_NEW_PIN","features":[427]},{"name":"EC_NOTIFY_WINDOW","features":[427]},{"name":"EC_OLE_EVENT","features":[427]},{"name":"EC_OPENING_FILE","features":[427]},{"name":"EC_PALETTE_CHANGED","features":[427]},{"name":"EC_PAUSED","features":[427]},{"name":"EC_PLEASE_REOPEN","features":[427]},{"name":"EC_PREPROCESS_COMPLETE","features":[427]},{"name":"EC_PROCESSING_LATENCY","features":[427]},{"name":"EC_QUALITY_CHANGE","features":[427]},{"name":"EC_RENDER_FINISHED","features":[427]},{"name":"EC_REPAINT","features":[427]},{"name":"EC_SAMPLE_LATENCY","features":[427]},{"name":"EC_SAMPLE_NEEDED","features":[427]},{"name":"EC_SCRUB_TIME","features":[427]},{"name":"EC_SEGMENT_STARTED","features":[427]},{"name":"EC_SHUTTING_DOWN","features":[427]},{"name":"EC_SKIP_FRAMES","features":[427]},{"name":"EC_SNDDEV_IN_ERROR","features":[427]},{"name":"EC_SNDDEV_OUT_ERROR","features":[427]},{"name":"EC_SND_DEVICE_ERROR_BASE","features":[427]},{"name":"EC_STARVATION","features":[427]},{"name":"EC_STATE_CHANGE","features":[427]},{"name":"EC_STATUS","features":[427]},{"name":"EC_STEP_COMPLETE","features":[427]},{"name":"EC_STREAM_CONTROL_STARTED","features":[427]},{"name":"EC_STREAM_CONTROL_STOPPED","features":[427]},{"name":"EC_STREAM_ERROR_STILLPLAYING","features":[427]},{"name":"EC_STREAM_ERROR_STOPPED","features":[427]},{"name":"EC_SYSTEMBASE","features":[427]},{"name":"EC_TIME","features":[427]},{"name":"EC_TIMECODE_AVAILABLE","features":[427]},{"name":"EC_UNBUILT","features":[427]},{"name":"EC_USER","features":[427]},{"name":"EC_USERABORT","features":[427]},{"name":"EC_VIDEOFRAMEREADY","features":[427]},{"name":"EC_VIDEO_SIZE_CHANGED","features":[427]},{"name":"EC_VMR_RECONNECTION_FAILED","features":[427]},{"name":"EC_VMR_RENDERDEVICE_SET","features":[427]},{"name":"EC_VMR_SURFACE_FLIPPED","features":[427]},{"name":"EC_WINDOW_DESTROYED","features":[427]},{"name":"EC_WMT_EVENT","features":[427]},{"name":"EC_WMT_EVENT_BASE","features":[427]},{"name":"EC_WMT_INDEX_EVENT","features":[427]},{"name":"E_PROP_ID_UNSUPPORTED","features":[427]},{"name":"E_PROP_SET_UNSUPPORTED","features":[427]},{"name":"Entitled","features":[427]},{"name":"EntitlementType","features":[427]},{"name":"ErrorClosed","features":[427]},{"name":"FECMethod","features":[427]},{"name":"FILTER_INFO","features":[427]},{"name":"FILTER_STATE","features":[427]},{"name":"FORMAT_DVD_LPCMAudio","features":[427]},{"name":"FORMAT_DolbyAC3","features":[427]},{"name":"FORMAT_Image","features":[427]},{"name":"FORMAT_JPEGImage","features":[427]},{"name":"FORMAT_MPEG2Audio","features":[427]},{"name":"FORMAT_MPEG2Video","features":[427]},{"name":"FORMAT_MPEG2_VIDEO","features":[427]},{"name":"FORMAT_UVCH264Video","features":[427]},{"name":"Famine","features":[427]},{"name":"FilgraphManager","features":[427]},{"name":"Flood","features":[427]},{"name":"GUID_TIME_MUSIC","features":[427]},{"name":"GUID_TIME_REFERENCE","features":[427]},{"name":"GUID_TIME_SAMPLES","features":[427]},{"name":"GuardInterval","features":[427]},{"name":"HEAACWAVEFORMAT","features":[420,427]},{"name":"HEAACWAVEINFO","features":[420,427]},{"name":"HEVC_TEMPORAL_VIDEO_SUBSET","features":[427]},{"name":"HEVC_VIDEO_OR_TEMPORAL_VIDEO","features":[427]},{"name":"HierarchyAlpha","features":[427]},{"name":"IAMAnalogVideoDecoder","features":[427]},{"name":"IAMAnalogVideoEncoder","features":[427]},{"name":"IAMAsyncReaderTimestampScaling","features":[427]},{"name":"IAMAudioInputMixer","features":[427]},{"name":"IAMAudioRendererStats","features":[427]},{"name":"IAMBufferNegotiation","features":[427]},{"name":"IAMCameraControl","features":[427]},{"name":"IAMCertifiedOutputProtection","features":[427]},{"name":"IAMChannelInfo","features":[427,356]},{"name":"IAMClockAdjust","features":[427]},{"name":"IAMClockSlave","features":[427]},{"name":"IAMCollection","features":[427,356]},{"name":"IAMCopyCaptureFileProgress","features":[427]},{"name":"IAMCrossbar","features":[427]},{"name":"IAMDecoderCaps","features":[427]},{"name":"IAMDevMemoryAllocator","features":[427]},{"name":"IAMDevMemoryControl","features":[427]},{"name":"IAMDeviceRemoval","features":[427]},{"name":"IAMDirectSound","features":[427]},{"name":"IAMDroppedFrames","features":[427]},{"name":"IAMExtDevice","features":[427]},{"name":"IAMExtTransport","features":[427]},{"name":"IAMExtendedErrorInfo","features":[427,356]},{"name":"IAMExtendedSeeking","features":[427,356]},{"name":"IAMFilterGraphCallback","features":[427]},{"name":"IAMFilterMiscFlags","features":[427]},{"name":"IAMGraphBuilderCallback","features":[427]},{"name":"IAMGraphStreams","features":[427]},{"name":"IAMLatency","features":[427]},{"name":"IAMLine21Decoder","features":[427]},{"name":"IAMMediaContent","features":[427,356]},{"name":"IAMMediaContent2","features":[427,356]},{"name":"IAMMediaStream","features":[427]},{"name":"IAMMediaTypeSample","features":[427]},{"name":"IAMMediaTypeStream","features":[427]},{"name":"IAMMultiMediaStream","features":[427]},{"name":"IAMNetShowConfig","features":[427,356]},{"name":"IAMNetShowExProps","features":[427,356]},{"name":"IAMNetShowPreroll","features":[427,356]},{"name":"IAMNetworkStatus","features":[427,356]},{"name":"IAMOpenProgress","features":[427]},{"name":"IAMOverlayFX","features":[427]},{"name":"IAMParse","features":[427]},{"name":"IAMPhysicalPinInfo","features":[427]},{"name":"IAMPlayList","features":[427]},{"name":"IAMPlayListItem","features":[427]},{"name":"IAMPluginControl","features":[427]},{"name":"IAMPushSource","features":[427]},{"name":"IAMRebuild","features":[427]},{"name":"IAMResourceControl","features":[427]},{"name":"IAMStats","features":[427,356]},{"name":"IAMStreamConfig","features":[427]},{"name":"IAMStreamControl","features":[427]},{"name":"IAMStreamSelect","features":[427]},{"name":"IAMTVAudio","features":[427]},{"name":"IAMTVAudioNotification","features":[427]},{"name":"IAMTVTuner","features":[427]},{"name":"IAMTimecodeDisplay","features":[427]},{"name":"IAMTimecodeGenerator","features":[427]},{"name":"IAMTimecodeReader","features":[427]},{"name":"IAMTuner","features":[427]},{"name":"IAMTunerNotification","features":[427]},{"name":"IAMVfwCaptureDialogs","features":[427]},{"name":"IAMVfwCompressDialogs","features":[427]},{"name":"IAMVideoAccelerator","features":[427]},{"name":"IAMVideoAcceleratorNotify","features":[427]},{"name":"IAMVideoCompression","features":[427]},{"name":"IAMVideoControl","features":[427]},{"name":"IAMVideoDecimationProperties","features":[427]},{"name":"IAMVideoProcAmp","features":[427]},{"name":"IAMWMBufferPass","features":[427]},{"name":"IAMWMBufferPassCallback","features":[427]},{"name":"IAMWstDecoder","features":[427]},{"name":"IAMovieSetup","features":[427]},{"name":"IAsyncReader","features":[427]},{"name":"IAudioData","features":[427]},{"name":"IAudioMediaStream","features":[427]},{"name":"IAudioStreamSample","features":[427]},{"name":"IBDA_AUX","features":[427]},{"name":"IBDA_AutoDemodulate","features":[427]},{"name":"IBDA_AutoDemodulateEx","features":[427]},{"name":"IBDA_ConditionalAccess","features":[427]},{"name":"IBDA_ConditionalAccessEx","features":[427]},{"name":"IBDA_DRIDRMService","features":[427]},{"name":"IBDA_DRIWMDRMSession","features":[427]},{"name":"IBDA_DRM","features":[427]},{"name":"IBDA_DRMService","features":[427]},{"name":"IBDA_DeviceControl","features":[427]},{"name":"IBDA_DiagnosticProperties","features":[427,429]},{"name":"IBDA_DigitalDemodulator","features":[427]},{"name":"IBDA_DigitalDemodulator2","features":[427]},{"name":"IBDA_DigitalDemodulator3","features":[427]},{"name":"IBDA_DiseqCommand","features":[427]},{"name":"IBDA_EasMessage","features":[427]},{"name":"IBDA_Encoder","features":[427]},{"name":"IBDA_EthernetFilter","features":[427]},{"name":"IBDA_EventingService","features":[427]},{"name":"IBDA_FDC","features":[427]},{"name":"IBDA_FrequencyFilter","features":[427]},{"name":"IBDA_GuideDataDeliveryService","features":[427]},{"name":"IBDA_IPSinkControl","features":[427]},{"name":"IBDA_IPSinkInfo","features":[427]},{"name":"IBDA_IPV4Filter","features":[427]},{"name":"IBDA_IPV6Filter","features":[427]},{"name":"IBDA_ISDBConditionalAccess","features":[427]},{"name":"IBDA_LNBInfo","features":[427]},{"name":"IBDA_MUX","features":[427]},{"name":"IBDA_NameValueService","features":[427]},{"name":"IBDA_NetworkProvider","features":[427]},{"name":"IBDA_NullTransform","features":[427]},{"name":"IBDA_PinControl","features":[427]},{"name":"IBDA_SignalProperties","features":[427]},{"name":"IBDA_SignalStatistics","features":[427]},{"name":"IBDA_Topology","features":[427]},{"name":"IBDA_TransportStreamInfo","features":[427]},{"name":"IBDA_TransportStreamSelector","features":[427]},{"name":"IBDA_UserActivityService","features":[427]},{"name":"IBDA_VoidTransform","features":[427]},{"name":"IBDA_WMDRMSession","features":[427]},{"name":"IBDA_WMDRMTuner","features":[427]},{"name":"IBPCSatelliteTuner","features":[427]},{"name":"IBaseFilter","features":[427,356]},{"name":"IBaseVideoMixer","features":[427]},{"name":"IBasicAudio","features":[427,356]},{"name":"IBasicVideo","features":[427,356]},{"name":"IBasicVideo2","features":[427,356]},{"name":"IBroadcastEvent","features":[427]},{"name":"IBroadcastEventEx","features":[427]},{"name":"IBufferingTime","features":[427]},{"name":"ICCSubStreamFiltering","features":[427]},{"name":"ICameraControl","features":[427]},{"name":"ICaptureGraphBuilder","features":[427]},{"name":"ICaptureGraphBuilder2","features":[427]},{"name":"IConfigAsfWriter","features":[427]},{"name":"IConfigAsfWriter2","features":[427]},{"name":"IConfigAviMux","features":[427]},{"name":"IConfigInterleaving","features":[427]},{"name":"ICreateDevEnum","features":[427]},{"name":"IDDrawExclModeVideo","features":[427]},{"name":"IDDrawExclModeVideoCallback","features":[427]},{"name":"IDMOWrapperFilter","features":[427]},{"name":"IDShowPlugin","features":[427]},{"name":"IDVEnc","features":[427]},{"name":"IDVRGB219","features":[427]},{"name":"IDVSplitter","features":[427]},{"name":"IDecimateVideoImage","features":[427]},{"name":"IDeferredCommand","features":[427]},{"name":"IDirectDrawMediaSample","features":[427]},{"name":"IDirectDrawMediaSampleAllocator","features":[427]},{"name":"IDirectDrawMediaStream","features":[427]},{"name":"IDirectDrawStreamSample","features":[427]},{"name":"IDirectDrawVideo","features":[427]},{"name":"IDistributorNotify","features":[427]},{"name":"IDrawVideoImage","features":[427]},{"name":"IDvdCmd","features":[427]},{"name":"IDvdControl","features":[427]},{"name":"IDvdControl2","features":[427]},{"name":"IDvdGraphBuilder","features":[427]},{"name":"IDvdInfo","features":[427]},{"name":"IDvdInfo2","features":[427]},{"name":"IDvdState","features":[427]},{"name":"IESEvent","features":[427]},{"name":"IESEvents","features":[427]},{"name":"IEncoderAPI","features":[427]},{"name":"IEnumFilters","features":[427]},{"name":"IEnumMediaTypes","features":[427]},{"name":"IEnumPIDMap","features":[427]},{"name":"IEnumPins","features":[427]},{"name":"IEnumRegFilters","features":[427]},{"name":"IEnumStreamIdMap","features":[427]},{"name":"IFILTERMAPPER_MERIT","features":[427]},{"name":"IFileSinkFilter","features":[427]},{"name":"IFileSinkFilter2","features":[427]},{"name":"IFileSourceFilter","features":[427]},{"name":"IFilterChain","features":[427]},{"name":"IFilterGraph","features":[427]},{"name":"IFilterGraph2","features":[427]},{"name":"IFilterGraph3","features":[427]},{"name":"IFilterInfo","features":[427,356]},{"name":"IFilterMapper","features":[427]},{"name":"IFilterMapper2","features":[427]},{"name":"IFilterMapper3","features":[427]},{"name":"IFrequencyMap","features":[427]},{"name":"IFullScreenVideo","features":[427]},{"name":"IFullScreenVideoEx","features":[427]},{"name":"IGetCapabilitiesKey","features":[427]},{"name":"IGraphBuilder","features":[427]},{"name":"IGraphConfig","features":[427]},{"name":"IGraphConfigCallback","features":[427]},{"name":"IGraphVersion","features":[427]},{"name":"IIPDVDec","features":[427]},{"name":"IMPEG2PIDMap","features":[427]},{"name":"IMPEG2StreamIdMap","features":[427]},{"name":"IMediaControl","features":[427,356]},{"name":"IMediaEvent","features":[427,356]},{"name":"IMediaEventEx","features":[427,356]},{"name":"IMediaEventSink","features":[427]},{"name":"IMediaFilter","features":[427,356]},{"name":"IMediaParamInfo","features":[427]},{"name":"IMediaParams","features":[427]},{"name":"IMediaPosition","features":[427,356]},{"name":"IMediaPropertyBag","features":[427,429]},{"name":"IMediaSample","features":[427]},{"name":"IMediaSample2","features":[427]},{"name":"IMediaSample2Config","features":[427]},{"name":"IMediaSeeking","features":[427]},{"name":"IMediaStream","features":[427]},{"name":"IMediaStreamFilter","features":[427,356]},{"name":"IMediaTypeInfo","features":[427,356]},{"name":"IMemAllocator","features":[427]},{"name":"IMemAllocatorCallbackTemp","features":[427]},{"name":"IMemAllocatorNotifyCallbackTemp","features":[427]},{"name":"IMemInputPin","features":[427]},{"name":"IMemoryData","features":[427]},{"name":"IMixerOCX","features":[427]},{"name":"IMixerOCXNotify","features":[427]},{"name":"IMixerPinConfig","features":[427]},{"name":"IMixerPinConfig2","features":[427]},{"name":"IMpeg2Demultiplexer","features":[427]},{"name":"IMpegAudioDecoder","features":[427]},{"name":"IMultiMediaStream","features":[427]},{"name":"INTERLEAVE_CAPTURE","features":[427]},{"name":"INTERLEAVE_FULL","features":[427]},{"name":"INTERLEAVE_NONE","features":[427]},{"name":"INTERLEAVE_NONE_BUFFERED","features":[427]},{"name":"IOverlay","features":[427]},{"name":"IOverlayNotify","features":[427]},{"name":"IOverlayNotify2","features":[427]},{"name":"IPersistMediaPropertyBag","features":[427,356]},{"name":"IPin","features":[427]},{"name":"IPinConnection","features":[427]},{"name":"IPinFlowControl","features":[427]},{"name":"IPinInfo","features":[427,356]},{"name":"IQualProp","features":[427]},{"name":"IQualityControl","features":[427]},{"name":"IQueueCommand","features":[427]},{"name":"IRPM_STREAMM","features":[427]},{"name":"IRegFilterInfo","features":[427,356]},{"name":"IRegisterServiceProvider","features":[427]},{"name":"IResourceConsumer","features":[427]},{"name":"IResourceManager","features":[427]},{"name":"ISDBCAS_REQUEST_ID","features":[427]},{"name":"ISDBCAS_REQUEST_ID_EMD","features":[427]},{"name":"ISDBCAS_REQUEST_ID_EMG","features":[427]},{"name":"ISDB_Satellite","features":[427]},{"name":"ISDB_Terrestrial","features":[427]},{"name":"ISO_IEC_11172_2_VIDEO","features":[427]},{"name":"ISO_IEC_11172_3_AUDIO","features":[427]},{"name":"ISO_IEC_13522_MHEG","features":[427]},{"name":"ISO_IEC_13818_1_AUXILIARY","features":[427]},{"name":"ISO_IEC_13818_1_PES","features":[427]},{"name":"ISO_IEC_13818_1_PRIVATE_SECTION","features":[427]},{"name":"ISO_IEC_13818_1_RESERVED","features":[427]},{"name":"ISO_IEC_13818_2_VIDEO","features":[427]},{"name":"ISO_IEC_13818_3_AUDIO","features":[427]},{"name":"ISO_IEC_13818_6_DOWNLOAD","features":[427]},{"name":"ISO_IEC_13818_6_TYPE_A","features":[427]},{"name":"ISO_IEC_13818_6_TYPE_B","features":[427]},{"name":"ISO_IEC_13818_6_TYPE_C","features":[427]},{"name":"ISO_IEC_13818_6_TYPE_D","features":[427]},{"name":"ISO_IEC_13818_7_AUDIO","features":[427]},{"name":"ISO_IEC_14496_1_IN_PES","features":[427]},{"name":"ISO_IEC_14496_1_IN_SECTION","features":[427]},{"name":"ISO_IEC_14496_2_VISUAL","features":[427]},{"name":"ISO_IEC_14496_3_AUDIO","features":[427]},{"name":"ISO_IEC_USER_PRIVATE","features":[427]},{"name":"ISeekingPassThru","features":[427]},{"name":"ISelector","features":[427]},{"name":"ISpecifyParticularPages","features":[427]},{"name":"IStreamBuilder","features":[427]},{"name":"IStreamSample","features":[427]},{"name":"ITU_T_H264","features":[427]},{"name":"ITU_T_REC_H_222_1","features":[427]},{"name":"IVMRAspectRatioControl","features":[427]},{"name":"IVMRAspectRatioControl9","features":[427]},{"name":"IVMRDeinterlaceControl","features":[427]},{"name":"IVMRDeinterlaceControl9","features":[427]},{"name":"IVMRFilterConfig","features":[427]},{"name":"IVMRFilterConfig9","features":[427]},{"name":"IVMRImageCompositor","features":[427]},{"name":"IVMRImageCompositor9","features":[427]},{"name":"IVMRImagePresenter","features":[427]},{"name":"IVMRImagePresenter9","features":[427]},{"name":"IVMRImagePresenterConfig","features":[427]},{"name":"IVMRImagePresenterConfig9","features":[427]},{"name":"IVMRImagePresenterExclModeConfig","features":[427]},{"name":"IVMRMixerBitmap","features":[427]},{"name":"IVMRMixerBitmap9","features":[427]},{"name":"IVMRMixerControl","features":[427]},{"name":"IVMRMixerControl9","features":[427]},{"name":"IVMRMonitorConfig","features":[427]},{"name":"IVMRMonitorConfig9","features":[427]},{"name":"IVMRSurface","features":[427]},{"name":"IVMRSurface9","features":[427]},{"name":"IVMRSurfaceAllocator","features":[427]},{"name":"IVMRSurfaceAllocator9","features":[427]},{"name":"IVMRSurfaceAllocatorEx9","features":[427]},{"name":"IVMRSurfaceAllocatorNotify","features":[427]},{"name":"IVMRSurfaceAllocatorNotify9","features":[427]},{"name":"IVMRVideoStreamControl","features":[427]},{"name":"IVMRVideoStreamControl9","features":[427]},{"name":"IVMRWindowlessControl","features":[427]},{"name":"IVMRWindowlessControl9","features":[427]},{"name":"IVPBaseConfig","features":[427]},{"name":"IVPBaseNotify","features":[427]},{"name":"IVPConfig","features":[427]},{"name":"IVPManager","features":[427]},{"name":"IVPNotify","features":[427]},{"name":"IVPNotify2","features":[427]},{"name":"IVPVBIConfig","features":[427]},{"name":"IVPVBINotify","features":[427]},{"name":"IVideoEncoder","features":[427]},{"name":"IVideoFrameStep","features":[427]},{"name":"IVideoProcAmp","features":[427]},{"name":"IVideoWindow","features":[427,356]},{"name":"IWMCodecAMVideoAccelerator","features":[427]},{"name":"IWMCodecVideoAccelerator","features":[427]},{"name":"InterleavingMode","features":[427]},{"name":"KSPROPERTY_IPSINK","features":[427]},{"name":"KSPROPERTY_IPSINK_ADAPTER_ADDRESS","features":[427]},{"name":"KSPROPERTY_IPSINK_ADAPTER_DESCRIPTION","features":[427]},{"name":"KSPROPERTY_IPSINK_MULTICASTLIST","features":[427]},{"name":"KS_BDA_FRAME_INFO","features":[427]},{"name":"LIBID_QuartzNetTypeLib","features":[427]},{"name":"LIBID_QuartzTypeLib","features":[427]},{"name":"LNB_Source","features":[427]},{"name":"LocationCodeSchemeType","features":[427]},{"name":"MAX_DEINTERLACE_DEVICE_GUIDS","features":[427]},{"name":"MAX_DEINTERLACE_SURFACES","features":[427]},{"name":"MAX_ERROR_TEXT_LEN","features":[427]},{"name":"MAX_FILTER_NAME","features":[427]},{"name":"MAX_NUMBER_OF_STREAMS","features":[427]},{"name":"MAX_PIN_NAME","features":[427]},{"name":"MAX_SIZE_MPEG1_SEQUENCE_INFO","features":[427]},{"name":"MEDIASUBTYPE_ATSC_SI","features":[427]},{"name":"MEDIASUBTYPE_DOLBY_AC3","features":[427]},{"name":"MEDIASUBTYPE_DTS","features":[427]},{"name":"MEDIASUBTYPE_DVB_SI","features":[427]},{"name":"MEDIASUBTYPE_DVD_LPCM_AUDIO","features":[427]},{"name":"MEDIASUBTYPE_DVD_NAVIGATION_DSI","features":[427]},{"name":"MEDIASUBTYPE_DVD_NAVIGATION_PCI","features":[427]},{"name":"MEDIASUBTYPE_DVD_NAVIGATION_PROVIDER","features":[427]},{"name":"MEDIASUBTYPE_DVD_SUBPICTURE","features":[427]},{"name":"MEDIASUBTYPE_ISDB_SI","features":[427]},{"name":"MEDIASUBTYPE_MPEG2DATA","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_AUDIO","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_PBDA_TRANSPORT_PROCESSED","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_PBDA_TRANSPORT_RAW","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_PROGRAM","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_TRANSPORT","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_TRANSPORT_STRIDE","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_UDCR_TRANSPORT","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_VERSIONED_TABLES","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_VIDEO","features":[427]},{"name":"MEDIASUBTYPE_MPEG2_WMDRM_TRANSPORT","features":[427]},{"name":"MEDIASUBTYPE_SDDS","features":[427]},{"name":"MEDIASUBTYPE_TIF_SI","features":[427]},{"name":"MEDIATYPE_CONTROL","features":[427]},{"name":"MEDIATYPE_DVD_ENCRYPTED_PACK","features":[427]},{"name":"MEDIATYPE_DVD_NAVIGATION","features":[427]},{"name":"MEDIATYPE_MPEG2_PACK","features":[427]},{"name":"MEDIATYPE_MPEG2_PES","features":[427]},{"name":"MEDIATYPE_MPEG2_SECTIONS","features":[427]},{"name":"MEDIA_ELEMENTARY_STREAM","features":[427]},{"name":"MEDIA_MPEG2_PSI","features":[427]},{"name":"MEDIA_SAMPLE_CONTENT","features":[427]},{"name":"MEDIA_TRANSPORT_PACKET","features":[427]},{"name":"MEDIA_TRANSPORT_PAYLOAD","features":[427]},{"name":"MERIT_DO_NOT_USE","features":[427]},{"name":"MERIT_HW_COMPRESSOR","features":[427]},{"name":"MERIT_NORMAL","features":[427]},{"name":"MERIT_PREFERRED","features":[427]},{"name":"MERIT_SW_COMPRESSOR","features":[427]},{"name":"MERIT_UNLIKELY","features":[427]},{"name":"METADATA_IN_DATA_CAROUSEL","features":[427]},{"name":"METADATA_IN_DOWNLOAD_PROTOCOL","features":[427]},{"name":"METADATA_IN_OBJECT_CAROUSEL","features":[427]},{"name":"METADATA_IN_PES","features":[427]},{"name":"METADATA_IN_SECTION","features":[427]},{"name":"MIN_DIMENSION","features":[427]},{"name":"MMSSF_ASYNCHRONOUS","features":[427]},{"name":"MMSSF_GET_INFORMATION_FLAGS","features":[427]},{"name":"MMSSF_HASCLOCK","features":[427]},{"name":"MMSSF_SUPPORTSEEK","features":[427]},{"name":"MPBOOL_FALSE","features":[427]},{"name":"MPBOOL_TRUE","features":[427]},{"name":"MPEG1WAVEFORMAT","features":[420,427]},{"name":"MPEG2StreamType","features":[427]},{"name":"MPEG2_BASE","features":[427]},{"name":"MPEG2_E_ALREADY_INITIALIZED","features":[427]},{"name":"MPEG2_E_BUFFER_TOO_SMALL","features":[427]},{"name":"MPEG2_E_DATA_SOURCE_FAILED","features":[427]},{"name":"MPEG2_E_DII_NOT_FOUND","features":[427]},{"name":"MPEG2_E_DSHOW_PIN_NOT_FOUND","features":[427]},{"name":"MPEG2_E_DSI_NOT_FOUND","features":[427]},{"name":"MPEG2_E_FILE_OFFSET_TOO_BIG","features":[427]},{"name":"MPEG2_E_INCORRECT_DESCRIPTOR_TAG","features":[427]},{"name":"MPEG2_E_INVALID_CAROUSEL_ID","features":[427]},{"name":"MPEG2_E_INVALID_SG_OBJECT_KIND","features":[427]},{"name":"MPEG2_E_INVALID_UDP_PORT","features":[427]},{"name":"MPEG2_E_MALFORMED_DSMCC_MESSAGE","features":[427]},{"name":"MPEG2_E_MALFORMED_TABLE","features":[427]},{"name":"MPEG2_E_MISSING_SECTIONS","features":[427]},{"name":"MPEG2_E_NEXT_TABLE_OPS_NOT_AVAILABLE","features":[427]},{"name":"MPEG2_E_NOT_PRESENT","features":[427]},{"name":"MPEG2_E_OBJECT_KIND_NOT_A_DIRECTORY","features":[427]},{"name":"MPEG2_E_OBJECT_KIND_NOT_A_FILE","features":[427]},{"name":"MPEG2_E_OBJECT_NOT_FOUND","features":[427]},{"name":"MPEG2_E_OUT_OF_BOUNDS","features":[427]},{"name":"MPEG2_E_REGISTRY_ACCESS_FAILED","features":[427]},{"name":"MPEG2_E_SECTION_NOT_FOUND","features":[427]},{"name":"MPEG2_E_SERVER_UNAVAILABLE","features":[427]},{"name":"MPEG2_E_SERVICE_ID_NOT_FOUND","features":[427]},{"name":"MPEG2_E_SERVICE_PMT_NOT_FOUND","features":[427]},{"name":"MPEG2_E_STREAM_STOPPED","features":[427]},{"name":"MPEG2_E_TOO_MANY_SECTIONS","features":[427]},{"name":"MPEG2_E_TX_STREAM_UNAVAILABLE","features":[427]},{"name":"MPEG2_E_UNDEFINED","features":[427]},{"name":"MPEG2_E_UNINITIALIZED","features":[427]},{"name":"MPEG2_PROGRAM_DIRECTORY_PES_PACKET","features":[427]},{"name":"MPEG2_PROGRAM_ELEMENTARY_STREAM","features":[427]},{"name":"MPEG2_PROGRAM_PACK_HEADER","features":[427]},{"name":"MPEG2_PROGRAM_PES_STREAM","features":[427]},{"name":"MPEG2_PROGRAM_STREAM_MAP","features":[427]},{"name":"MPEG2_PROGRAM_SYSTEM_HEADER","features":[427]},{"name":"MPEG2_S_MORE_DATA_AVAILABLE","features":[427]},{"name":"MPEG2_S_MPE_INFO_FOUND","features":[427]},{"name":"MPEG2_S_MPE_INFO_NOT_FOUND","features":[427]},{"name":"MPEG2_S_NEW_MODULE_VERSION","features":[427]},{"name":"MPEG2_S_NO_MORE_DATA_AVAILABLE","features":[427]},{"name":"MPEG2_S_SG_INFO_FOUND","features":[427]},{"name":"MPEG2_S_SG_INFO_NOT_FOUND","features":[427]},{"name":"MPEG2_TRANSPORT_STRIDE","features":[427]},{"name":"MPEGLAYER3WAVEFORMAT","features":[420,427]},{"name":"MPEGLAYER3WAVEFORMAT_FLAGS","features":[427]},{"name":"MPEGLAYER3_FLAG_PADDING_ISO","features":[427]},{"name":"MPEGLAYER3_FLAG_PADDING_OFF","features":[427]},{"name":"MPEGLAYER3_FLAG_PADDING_ON","features":[427]},{"name":"MPF_ENVLP_BEGIN_CURRENTVAL","features":[427]},{"name":"MPF_ENVLP_BEGIN_NEUTRALVAL","features":[427]},{"name":"MPF_ENVLP_STANDARD","features":[427]},{"name":"MPF_PUNCHIN_NOW","features":[427]},{"name":"MPF_PUNCHIN_REFTIME","features":[427]},{"name":"MPF_PUNCHIN_STOPPED","features":[427]},{"name":"MPT_BOOL","features":[427]},{"name":"MPT_ENUM","features":[427]},{"name":"MPT_FLOAT","features":[427]},{"name":"MPT_INT","features":[427]},{"name":"MPT_MAX","features":[427]},{"name":"MP_CURVE_INVSQUARE","features":[427]},{"name":"MP_CURVE_JUMP","features":[427]},{"name":"MP_CURVE_LINEAR","features":[427]},{"name":"MP_CURVE_SINE","features":[427]},{"name":"MP_CURVE_SQUARE","features":[427]},{"name":"MP_CURVE_TYPE","features":[427]},{"name":"MP_ENVELOPE_SEGMENT","features":[427]},{"name":"MP_PARAMINFO","features":[427]},{"name":"MP_TYPE","features":[427]},{"name":"MSDRI_S_MMI_PENDING","features":[427]},{"name":"MSDRI_S_PENDING","features":[427]},{"name":"MSPID_PrimaryAudio","features":[427]},{"name":"MSPID_PrimaryVideo","features":[427]},{"name":"MSTapeDeviceGUID","features":[427]},{"name":"MUX_PID_TYPE","features":[427]},{"name":"MainAVIHeader","features":[427]},{"name":"MixerPref9_ARAdjustXorY","features":[427]},{"name":"MixerPref9_AnisotropicFiltering","features":[427]},{"name":"MixerPref9_BiLinearFiltering","features":[427]},{"name":"MixerPref9_DecimateMask","features":[427]},{"name":"MixerPref9_DecimateOutput","features":[427]},{"name":"MixerPref9_DynamicDecimateBy2","features":[427]},{"name":"MixerPref9_DynamicMask","features":[427]},{"name":"MixerPref9_DynamicReserved","features":[427]},{"name":"MixerPref9_DynamicSwitchToBOB","features":[427]},{"name":"MixerPref9_FilteringMask","features":[427]},{"name":"MixerPref9_FilteringReserved","features":[427]},{"name":"MixerPref9_GaussianQuadFiltering","features":[427]},{"name":"MixerPref9_NoDecimation","features":[427]},{"name":"MixerPref9_NonSquareMixing","features":[427]},{"name":"MixerPref9_PointFiltering","features":[427]},{"name":"MixerPref9_PyramidalQuadFiltering","features":[427]},{"name":"MixerPref9_RenderTargetMask","features":[427]},{"name":"MixerPref9_RenderTargetRGB","features":[427]},{"name":"MixerPref9_RenderTargetReserved","features":[427]},{"name":"MixerPref9_RenderTargetYUV","features":[427]},{"name":"MixerPref_ARAdjustXorY","features":[427]},{"name":"MixerPref_BiLinearFiltering","features":[427]},{"name":"MixerPref_DecimateMask","features":[427]},{"name":"MixerPref_DecimateOutput","features":[427]},{"name":"MixerPref_DecimationReserved","features":[427]},{"name":"MixerPref_DynamicDecimateBy2","features":[427]},{"name":"MixerPref_DynamicMask","features":[427]},{"name":"MixerPref_DynamicReserved","features":[427]},{"name":"MixerPref_DynamicSwitchToBOB","features":[427]},{"name":"MixerPref_FilteringMask","features":[427]},{"name":"MixerPref_NoDecimation","features":[427]},{"name":"MixerPref_PointFiltering","features":[427]},{"name":"MixerPref_RenderTargetMask","features":[427]},{"name":"MixerPref_RenderTargetRGB","features":[427]},{"name":"MixerPref_RenderTargetReserved","features":[427]},{"name":"MixerPref_RenderTargetYUV","features":[427]},{"name":"MixerPref_RenderTargetYUV420","features":[427]},{"name":"MixerPref_RenderTargetYUV422","features":[427]},{"name":"MixerPref_RenderTargetYUV444","features":[427]},{"name":"ModulationType","features":[427]},{"name":"NORMALIZEDRECT","features":[427]},{"name":"NotAssociated","features":[427]},{"name":"NotEntitled","features":[427]},{"name":"NotReady","features":[427]},{"name":"OAFALSE","features":[427]},{"name":"OATRUE","features":[427]},{"name":"OA_BOOL","features":[427]},{"name":"OUTPUT_STATE","features":[427]},{"name":"PBDA_AUX_CONNECTOR_TYPE_Composite","features":[427]},{"name":"PBDA_AUX_CONNECTOR_TYPE_SVideo","features":[427]},{"name":"PBDA_Encoder_Audio_AlgorithmType_AC3","features":[427]},{"name":"PBDA_Encoder_Audio_AlgorithmType_MPEG1LayerII","features":[427]},{"name":"PBDA_Encoder_BitrateMode_Average","features":[427]},{"name":"PBDA_Encoder_BitrateMode_Constant","features":[427]},{"name":"PBDA_Encoder_BitrateMode_Variable","features":[427]},{"name":"PBDA_Encoder_Video_AVC","features":[427]},{"name":"PBDA_Encoder_Video_H264","features":[427]},{"name":"PBDA_Encoder_Video_MPEG2PartII","features":[427]},{"name":"PBDA_Encoder_Video_MPEG4Part10","features":[427]},{"name":"PDXVA2SW_CREATEVIDEOPROCESSDEVICE","features":[305,314,427,428]},{"name":"PDXVA2SW_DESTROYVIDEOPROCESSDEVICE","features":[305,427]},{"name":"PDXVA2SW_GETFILTERPROPERTYRANGE","features":[314,427,428]},{"name":"PDXVA2SW_GETPROCAMPRANGE","features":[314,427,428]},{"name":"PDXVA2SW_GETVIDEOPROCESSORCAPS","features":[314,427,428]},{"name":"PDXVA2SW_GETVIDEOPROCESSORRENDERTARGETCOUNT","features":[314,427,428]},{"name":"PDXVA2SW_GETVIDEOPROCESSORRENDERTARGETS","features":[314,427,428]},{"name":"PDXVA2SW_GETVIDEOPROCESSORSUBSTREAMFORMATCOUNT","features":[314,427,428]},{"name":"PDXVA2SW_GETVIDEOPROCESSORSUBSTREAMFORMATS","features":[314,427,428]},{"name":"PDXVA2SW_VIDEOPROCESSBEGINFRAME","features":[305,427]},{"name":"PDXVA2SW_VIDEOPROCESSBLT","features":[305,427,428]},{"name":"PDXVA2SW_VIDEOPROCESSENDFRAME","features":[305,427]},{"name":"PDXVA2SW_VIDEOPROCESSSETRENDERTARGET","features":[305,314,427]},{"name":"PID_ELEMENTARY_STREAM","features":[427]},{"name":"PID_MAP","features":[427]},{"name":"PID_MPEG2_SECTION_PSI_SI","features":[427]},{"name":"PID_OTHER","features":[427]},{"name":"PINDIR_INPUT","features":[427]},{"name":"PINDIR_OUTPUT","features":[427]},{"name":"PIN_DIRECTION","features":[427]},{"name":"PIN_INFO","features":[427,356]},{"name":"PhysConn_Audio_1394","features":[427]},{"name":"PhysConn_Audio_AESDigital","features":[427]},{"name":"PhysConn_Audio_AUX","features":[427]},{"name":"PhysConn_Audio_AudioDecoder","features":[427]},{"name":"PhysConn_Audio_Line","features":[427]},{"name":"PhysConn_Audio_Mic","features":[427]},{"name":"PhysConn_Audio_SCSI","features":[427]},{"name":"PhysConn_Audio_SPDIFDigital","features":[427]},{"name":"PhysConn_Audio_Tuner","features":[427]},{"name":"PhysConn_Audio_USB","features":[427]},{"name":"PhysConn_Video_1394","features":[427]},{"name":"PhysConn_Video_AUX","features":[427]},{"name":"PhysConn_Video_Black","features":[427]},{"name":"PhysConn_Video_Composite","features":[427]},{"name":"PhysConn_Video_ParallelDigital","features":[427]},{"name":"PhysConn_Video_RGB","features":[427]},{"name":"PhysConn_Video_SCART","features":[427]},{"name":"PhysConn_Video_SCSI","features":[427]},{"name":"PhysConn_Video_SVideo","features":[427]},{"name":"PhysConn_Video_SerialDigital","features":[427]},{"name":"PhysConn_Video_Tuner","features":[427]},{"name":"PhysConn_Video_USB","features":[427]},{"name":"PhysConn_Video_VideoDecoder","features":[427]},{"name":"PhysConn_Video_VideoEncoder","features":[427]},{"name":"PhysConn_Video_YRYBY","features":[427]},{"name":"PhysicalConnectorType","features":[427]},{"name":"Pilot","features":[427]},{"name":"Polarisation","features":[427]},{"name":"ProcAmpControl9_Brightness","features":[427]},{"name":"ProcAmpControl9_Contrast","features":[427]},{"name":"ProcAmpControl9_Hue","features":[427]},{"name":"ProcAmpControl9_Mask","features":[427]},{"name":"ProcAmpControl9_Saturation","features":[427]},{"name":"Quality","features":[427]},{"name":"QualityMessageType","features":[427]},{"name":"REGFILTER","features":[427]},{"name":"REGFILTER2","features":[305,427]},{"name":"REGFILTERPINS","features":[305,427]},{"name":"REGFILTERPINS2","features":[427]},{"name":"REGPINMEDIUM","features":[427]},{"name":"REGPINTYPES","features":[427]},{"name":"REG_PINFLAG","features":[427]},{"name":"REG_PINFLAG_B_MANY","features":[427]},{"name":"REG_PINFLAG_B_OUTPUT","features":[427]},{"name":"REG_PINFLAG_B_RENDERER","features":[427]},{"name":"REG_PINFLAG_B_ZERO","features":[427]},{"name":"REMFILTERF_LEAVECONNECTED","features":[427]},{"name":"RIFFCHUNK","features":[427]},{"name":"RIFFLIST","features":[427]},{"name":"ReadData","features":[427]},{"name":"RenderData","features":[427]},{"name":"RenderPrefs9_DoNotRenderBorder","features":[427]},{"name":"RenderPrefs9_Mask","features":[427]},{"name":"RenderPrefs_AllowOffscreen","features":[427]},{"name":"RenderPrefs_AllowOverlays","features":[427]},{"name":"RenderPrefs_DoNotRenderColorKeyAndBorder","features":[427]},{"name":"RenderPrefs_ForceOffscreen","features":[427]},{"name":"RenderPrefs_ForceOverlays","features":[427]},{"name":"RenderPrefs_Mask","features":[427]},{"name":"RenderPrefs_PreferAGPMemWhenMixing","features":[427]},{"name":"RenderPrefs_Reserved","features":[427]},{"name":"RenderPrefs_RestrictToInitialMonitor","features":[427]},{"name":"Reserved1","features":[427]},{"name":"RollOff","features":[427]},{"name":"SCTE28_ConditionalAccess","features":[427]},{"name":"SCTE28_CopyProtection","features":[427]},{"name":"SCTE28_Diagnostic","features":[427]},{"name":"SCTE28_IPService","features":[427]},{"name":"SCTE28_NetworkInterface_SCTE55_1","features":[427]},{"name":"SCTE28_NetworkInterface_SCTE55_2","features":[427]},{"name":"SCTE28_POD_Host_Binding_Information","features":[427]},{"name":"SCTE28_Reserved","features":[427]},{"name":"SCTE28_Undesignated","features":[427]},{"name":"SCTE_18","features":[427]},{"name":"SNDDEV_ERR","features":[427]},{"name":"SNDDEV_ERROR_AddBuffer","features":[427]},{"name":"SNDDEV_ERROR_Close","features":[427]},{"name":"SNDDEV_ERROR_GetCaps","features":[427]},{"name":"SNDDEV_ERROR_GetPosition","features":[427]},{"name":"SNDDEV_ERROR_Open","features":[427]},{"name":"SNDDEV_ERROR_Pause","features":[427]},{"name":"SNDDEV_ERROR_PrepareHeader","features":[427]},{"name":"SNDDEV_ERROR_Query","features":[427]},{"name":"SNDDEV_ERROR_Reset","features":[427]},{"name":"SNDDEV_ERROR_Restart","features":[427]},{"name":"SNDDEV_ERROR_Start","features":[427]},{"name":"SNDDEV_ERROR_Stop","features":[427]},{"name":"SNDDEV_ERROR_UnprepareHeader","features":[427]},{"name":"SNDDEV_ERROR_Write","features":[427]},{"name":"SPECIFYPAGES_STATISTICS","features":[427]},{"name":"SSUPDATE_ASYNC","features":[427]},{"name":"SSUPDATE_CONTINUOUS","features":[427]},{"name":"SSUPDATE_TYPE","features":[427]},{"name":"STDINDEXSIZE","features":[427]},{"name":"STREAMIF_CONSTANTS","features":[427]},{"name":"STREAMSTATE_RUN","features":[427]},{"name":"STREAMSTATE_STOP","features":[427]},{"name":"STREAMTYPE_READ","features":[427]},{"name":"STREAMTYPE_TRANSFORM","features":[427]},{"name":"STREAMTYPE_WRITE","features":[427]},{"name":"STREAM_ID_MAP","features":[427]},{"name":"STREAM_STATE","features":[427]},{"name":"STREAM_TYPE","features":[427]},{"name":"SUBSTREAM_FILTER_VAL_NONE","features":[427]},{"name":"ScanModulationTypes","features":[427]},{"name":"ScanModulationTypesMask_DVBC","features":[427]},{"name":"ScanModulationTypesMask_MCE_All_TV","features":[427]},{"name":"ScanModulationTypesMask_MCE_AnalogTv","features":[427]},{"name":"ScanModulationTypesMask_MCE_DigitalCable","features":[427]},{"name":"ScanModulationTypesMask_MCE_TerrestrialATSC","features":[427]},{"name":"SmartCardApplication","features":[427]},{"name":"SmartCardAssociationType","features":[427]},{"name":"SmartCardStatusType","features":[427]},{"name":"SpectralInversion","features":[427]},{"name":"State_Paused","features":[427]},{"name":"State_Running","features":[427]},{"name":"State_Stopped","features":[427]},{"name":"StatusActive","features":[427]},{"name":"StatusInactive","features":[427]},{"name":"StatusUnavailable","features":[427]},{"name":"SystemClosed","features":[427]},{"name":"TIMECODEDATA","features":[427]},{"name":"TIMECODE_RATE_30DROP","features":[427]},{"name":"TIMECODE_SMPTE_BINARY_GROUP","features":[427]},{"name":"TIMECODE_SMPTE_COLOR_FRAME","features":[427]},{"name":"TRUECOLORINFO","features":[316,427]},{"name":"TVAudioMode","features":[427]},{"name":"TechnicalFailure","features":[427]},{"name":"TransmissionMode","features":[427]},{"name":"TunerInputAntenna","features":[427]},{"name":"TunerInputCable","features":[427]},{"name":"TunerInputType","features":[427]},{"name":"UICloseReasonType","features":[427]},{"name":"UOP_FLAG_Pause_On","features":[427]},{"name":"UOP_FLAG_PlayNext_Chapter","features":[427]},{"name":"UOP_FLAG_PlayPrev_Or_Replay_Chapter","features":[427]},{"name":"UOP_FLAG_Play_Backwards","features":[427]},{"name":"UOP_FLAG_Play_Chapter","features":[427]},{"name":"UOP_FLAG_Play_Chapter_Or_AtTime","features":[427]},{"name":"UOP_FLAG_Play_Forwards","features":[427]},{"name":"UOP_FLAG_Play_Title","features":[427]},{"name":"UOP_FLAG_Play_Title_Or_AtTime","features":[427]},{"name":"UOP_FLAG_Resume","features":[427]},{"name":"UOP_FLAG_ReturnFromSubMenu","features":[427]},{"name":"UOP_FLAG_Select_Angle","features":[427]},{"name":"UOP_FLAG_Select_Audio_Stream","features":[427]},{"name":"UOP_FLAG_Select_Karaoke_Audio_Presentation_Mode","features":[427]},{"name":"UOP_FLAG_Select_Or_Activate_Button","features":[427]},{"name":"UOP_FLAG_Select_SubPic_Stream","features":[427]},{"name":"UOP_FLAG_Select_Video_Mode_Preference","features":[427]},{"name":"UOP_FLAG_ShowMenu_Angle","features":[427]},{"name":"UOP_FLAG_ShowMenu_Audio","features":[427]},{"name":"UOP_FLAG_ShowMenu_Chapter","features":[427]},{"name":"UOP_FLAG_ShowMenu_Root","features":[427]},{"name":"UOP_FLAG_ShowMenu_SubPic","features":[427]},{"name":"UOP_FLAG_ShowMenu_Title","features":[427]},{"name":"UOP_FLAG_Still_Off","features":[427]},{"name":"UOP_FLAG_Stop","features":[427]},{"name":"USER_PRIVATE","features":[427]},{"name":"UserClosed","features":[427]},{"name":"VALID_UOP_FLAG","features":[427]},{"name":"VFW_E_ADVISE_ALREADY_SET","features":[427]},{"name":"VFW_E_ALREADY_CANCELLED","features":[427]},{"name":"VFW_E_ALREADY_COMMITTED","features":[427]},{"name":"VFW_E_ALREADY_CONNECTED","features":[427]},{"name":"VFW_E_BADALIGN","features":[427]},{"name":"VFW_E_BAD_KEY","features":[427]},{"name":"VFW_E_BAD_VIDEOCD","features":[427]},{"name":"VFW_E_BUFFERS_OUTSTANDING","features":[427]},{"name":"VFW_E_BUFFER_NOTSET","features":[427]},{"name":"VFW_E_BUFFER_OVERFLOW","features":[427]},{"name":"VFW_E_BUFFER_UNDERFLOW","features":[427]},{"name":"VFW_E_CANNOT_CONNECT","features":[427]},{"name":"VFW_E_CANNOT_LOAD_SOURCE_FILTER","features":[427]},{"name":"VFW_E_CANNOT_RENDER","features":[427]},{"name":"VFW_E_CERTIFICATION_FAILURE","features":[427]},{"name":"VFW_E_CHANGING_FORMAT","features":[427]},{"name":"VFW_E_CIRCULAR_GRAPH","features":[427]},{"name":"VFW_E_CODECAPI_ENUMERATED","features":[427]},{"name":"VFW_E_CODECAPI_LINEAR_RANGE","features":[427]},{"name":"VFW_E_CODECAPI_NO_CURRENT_VALUE","features":[427]},{"name":"VFW_E_CODECAPI_NO_DEFAULT","features":[427]},{"name":"VFW_E_COLOR_KEY_SET","features":[427]},{"name":"VFW_E_COPYPROT_FAILED","features":[427]},{"name":"VFW_E_CORRUPT_GRAPH_FILE","features":[427]},{"name":"VFW_E_DDRAW_CAPS_NOT_SUITABLE","features":[427]},{"name":"VFW_E_DDRAW_VERSION_NOT_SUITABLE","features":[427]},{"name":"VFW_E_DUPLICATE_NAME","features":[427]},{"name":"VFW_E_DVD_CHAPTER_DOES_NOT_EXIST","features":[427]},{"name":"VFW_E_DVD_CMD_CANCELLED","features":[427]},{"name":"VFW_E_DVD_DECNOTENOUGH","features":[427]},{"name":"VFW_E_DVD_GRAPHNOTREADY","features":[427]},{"name":"VFW_E_DVD_INCOMPATIBLE_REGION","features":[427]},{"name":"VFW_E_DVD_INVALIDDOMAIN","features":[427]},{"name":"VFW_E_DVD_INVALID_DISC","features":[427]},{"name":"VFW_E_DVD_LOW_PARENTAL_LEVEL","features":[427]},{"name":"VFW_E_DVD_MENU_DOES_NOT_EXIST","features":[427]},{"name":"VFW_E_DVD_NONBLOCKING","features":[427]},{"name":"VFW_E_DVD_NON_EVR_RENDERER_IN_FILTER_GRAPH","features":[427]},{"name":"VFW_E_DVD_NOT_IN_KARAOKE_MODE","features":[427]},{"name":"VFW_E_DVD_NO_ATTRIBUTES","features":[427]},{"name":"VFW_E_DVD_NO_BUTTON","features":[427]},{"name":"VFW_E_DVD_NO_GOUP_PGC","features":[427]},{"name":"VFW_E_DVD_NO_RESUME_INFORMATION","features":[427]},{"name":"VFW_E_DVD_OPERATION_INHIBITED","features":[427]},{"name":"VFW_E_DVD_RENDERFAIL","features":[427]},{"name":"VFW_E_DVD_RESOLUTION_ERROR","features":[427]},{"name":"VFW_E_DVD_STATE_CORRUPT","features":[427]},{"name":"VFW_E_DVD_STATE_WRONG_DISC","features":[427]},{"name":"VFW_E_DVD_STATE_WRONG_VERSION","features":[427]},{"name":"VFW_E_DVD_STREAM_DISABLED","features":[427]},{"name":"VFW_E_DVD_TITLE_UNKNOWN","features":[427]},{"name":"VFW_E_DVD_TOO_MANY_RENDERERS_IN_FILTER_GRAPH","features":[427]},{"name":"VFW_E_DVD_VMR9_INCOMPATIBLEDEC","features":[427]},{"name":"VFW_E_DVD_WRONG_SPEED","features":[427]},{"name":"VFW_E_ENUM_OUT_OF_RANGE","features":[427]},{"name":"VFW_E_ENUM_OUT_OF_SYNC","features":[427]},{"name":"VFW_E_FILE_TOO_SHORT","features":[427]},{"name":"VFW_E_FILTER_ACTIVE","features":[427]},{"name":"VFW_E_FRAME_STEP_UNSUPPORTED","features":[427]},{"name":"VFW_E_INVALIDMEDIATYPE","features":[427]},{"name":"VFW_E_INVALIDSUBTYPE","features":[427]},{"name":"VFW_E_INVALID_CLSID","features":[427]},{"name":"VFW_E_INVALID_DIRECTION","features":[427]},{"name":"VFW_E_INVALID_FILE_FORMAT","features":[427]},{"name":"VFW_E_INVALID_FILE_VERSION","features":[427]},{"name":"VFW_E_INVALID_MEDIA_TYPE","features":[427]},{"name":"VFW_E_INVALID_RECT","features":[427]},{"name":"VFW_E_IN_FULLSCREEN_MODE","features":[427]},{"name":"VFW_E_MEDIA_TIME_NOT_SET","features":[427]},{"name":"VFW_E_MONO_AUDIO_HW","features":[427]},{"name":"VFW_E_MPEG_NOT_CONSTRAINED","features":[427]},{"name":"VFW_E_NEED_OWNER","features":[427]},{"name":"VFW_E_NOT_ALLOWED_TO_SAVE","features":[427]},{"name":"VFW_E_NOT_COMMITTED","features":[427]},{"name":"VFW_E_NOT_CONNECTED","features":[427]},{"name":"VFW_E_NOT_FOUND","features":[427]},{"name":"VFW_E_NOT_IN_GRAPH","features":[427]},{"name":"VFW_E_NOT_OVERLAY_CONNECTION","features":[427]},{"name":"VFW_E_NOT_PAUSED","features":[427]},{"name":"VFW_E_NOT_RUNNING","features":[427]},{"name":"VFW_E_NOT_SAMPLE_CONNECTION","features":[427]},{"name":"VFW_E_NOT_STOPPED","features":[427]},{"name":"VFW_E_NO_ACCEPTABLE_TYPES","features":[427]},{"name":"VFW_E_NO_ADVISE_SET","features":[427]},{"name":"VFW_E_NO_ALLOCATOR","features":[427]},{"name":"VFW_E_NO_AUDIO_HARDWARE","features":[427]},{"name":"VFW_E_NO_CAPTURE_HARDWARE","features":[427]},{"name":"VFW_E_NO_CLOCK","features":[427]},{"name":"VFW_E_NO_COLOR_KEY_FOUND","features":[427]},{"name":"VFW_E_NO_COLOR_KEY_SET","features":[427]},{"name":"VFW_E_NO_COPP_HW","features":[427]},{"name":"VFW_E_NO_DECOMPRESSOR","features":[427]},{"name":"VFW_E_NO_DISPLAY_PALETTE","features":[427]},{"name":"VFW_E_NO_FULLSCREEN","features":[427]},{"name":"VFW_E_NO_INTERFACE","features":[427]},{"name":"VFW_E_NO_MODEX_AVAILABLE","features":[427]},{"name":"VFW_E_NO_PALETTE_AVAILABLE","features":[427]},{"name":"VFW_E_NO_SINK","features":[427]},{"name":"VFW_E_NO_TIME_FORMAT","features":[427]},{"name":"VFW_E_NO_TIME_FORMAT_SET","features":[427]},{"name":"VFW_E_NO_TRANSPORT","features":[427]},{"name":"VFW_E_NO_TYPES","features":[427]},{"name":"VFW_E_NO_VP_HARDWARE","features":[427]},{"name":"VFW_E_OUT_OF_VIDEO_MEMORY","features":[427]},{"name":"VFW_E_PALETTE_SET","features":[427]},{"name":"VFW_E_PIN_ALREADY_BLOCKED","features":[427]},{"name":"VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD","features":[427]},{"name":"VFW_E_PROCESSOR_NOT_SUITABLE","features":[427]},{"name":"VFW_E_READ_ONLY","features":[427]},{"name":"VFW_E_RPZA","features":[427]},{"name":"VFW_E_RUNTIME_ERROR","features":[427]},{"name":"VFW_E_SAMPLE_REJECTED","features":[427]},{"name":"VFW_E_SAMPLE_REJECTED_EOS","features":[427]},{"name":"VFW_E_SAMPLE_TIME_NOT_SET","features":[427]},{"name":"VFW_E_SIZENOTSET","features":[427]},{"name":"VFW_E_START_TIME_AFTER_END","features":[427]},{"name":"VFW_E_STATE_CHANGED","features":[427]},{"name":"VFW_E_TIMEOUT","features":[427]},{"name":"VFW_E_TIME_ALREADY_PASSED","features":[427]},{"name":"VFW_E_TIME_EXPIRED","features":[427]},{"name":"VFW_E_TOO_MANY_COLORS","features":[427]},{"name":"VFW_E_TYPE_NOT_ACCEPTED","features":[427]},{"name":"VFW_E_UNKNOWN_FILE_TYPE","features":[427]},{"name":"VFW_E_UNSUPPORTED_AUDIO","features":[427]},{"name":"VFW_E_UNSUPPORTED_STREAM","features":[427]},{"name":"VFW_E_UNSUPPORTED_VIDEO","features":[427]},{"name":"VFW_E_VMR_NOT_IN_MIXER_MODE","features":[427]},{"name":"VFW_E_VMR_NO_AP_SUPPLIED","features":[427]},{"name":"VFW_E_VMR_NO_DEINTERLACE_HW","features":[427]},{"name":"VFW_E_VMR_NO_PROCAMP_HW","features":[427]},{"name":"VFW_E_VP_NEGOTIATION_FAILED","features":[427]},{"name":"VFW_E_WRONG_STATE","features":[427]},{"name":"VFW_FILTERLIST","features":[427]},{"name":"VFW_FIRST_CODE","features":[427]},{"name":"VFW_S_AUDIO_NOT_RENDERED","features":[427]},{"name":"VFW_S_CANT_CUE","features":[427]},{"name":"VFW_S_CONNECTIONS_DEFERRED","features":[427]},{"name":"VFW_S_DUPLICATE_NAME","features":[427]},{"name":"VFW_S_DVD_CHANNEL_CONTENTS_NOT_AVAILABLE","features":[427]},{"name":"VFW_S_DVD_NON_ONE_SEQUENTIAL","features":[427]},{"name":"VFW_S_DVD_NOT_ACCURATE","features":[427]},{"name":"VFW_S_DVD_RENDER_STATUS","features":[427]},{"name":"VFW_S_ESTIMATED","features":[427]},{"name":"VFW_S_MEDIA_TYPE_IGNORED","features":[427]},{"name":"VFW_S_NOPREVIEWPIN","features":[427]},{"name":"VFW_S_NO_MORE_ITEMS","features":[427]},{"name":"VFW_S_NO_STOP_TIME","features":[427]},{"name":"VFW_S_PARTIAL_RENDER","features":[427]},{"name":"VFW_S_RESERVED","features":[427]},{"name":"VFW_S_RESOURCE_NOT_NEEDED","features":[427]},{"name":"VFW_S_RPZA","features":[427]},{"name":"VFW_S_SOME_DATA_IGNORED","features":[427]},{"name":"VFW_S_STATE_INTERMEDIATE","features":[427]},{"name":"VFW_S_STREAM_OFF","features":[427]},{"name":"VFW_S_VIDEO_NOT_RENDERED","features":[427]},{"name":"VIDEOENCODER_BITRATE_MODE","features":[427]},{"name":"VIDEOINFO","features":[305,316,427]},{"name":"VIDEO_STREAM_CONFIG_CAPS","features":[305,427]},{"name":"VMR9ARMode_LetterBox","features":[427]},{"name":"VMR9ARMode_None","features":[427]},{"name":"VMR9AllocFlag_3DRenderTarget","features":[427]},{"name":"VMR9AllocFlag_DXVATarget","features":[427]},{"name":"VMR9AllocFlag_OffscreenSurface","features":[427]},{"name":"VMR9AllocFlag_RGBDynamicSwitch","features":[427]},{"name":"VMR9AllocFlag_TextureSurface","features":[427]},{"name":"VMR9AllocFlag_UsageMask","features":[427]},{"name":"VMR9AllocFlag_UsageReserved","features":[427]},{"name":"VMR9AllocationInfo","features":[305,314,427]},{"name":"VMR9AlphaBitmap","features":[305,314,316,427]},{"name":"VMR9AlphaBitmapFlags","features":[427]},{"name":"VMR9AlphaBitmap_Disable","features":[427]},{"name":"VMR9AlphaBitmap_EntireDDS","features":[427]},{"name":"VMR9AlphaBitmap_FilterMode","features":[427]},{"name":"VMR9AlphaBitmap_SrcColorKey","features":[427]},{"name":"VMR9AlphaBitmap_SrcRect","features":[427]},{"name":"VMR9AlphaBitmap_hDC","features":[427]},{"name":"VMR9AspectRatioMode","features":[427]},{"name":"VMR9DeinterlaceCaps","features":[427]},{"name":"VMR9DeinterlacePrefs","features":[427]},{"name":"VMR9DeinterlaceTech","features":[427]},{"name":"VMR9Frequency","features":[427]},{"name":"VMR9MixerPrefs","features":[427]},{"name":"VMR9Mode","features":[427]},{"name":"VMR9Mode_Mask","features":[427]},{"name":"VMR9Mode_Renderless","features":[427]},{"name":"VMR9Mode_Windowed","features":[427]},{"name":"VMR9Mode_Windowless","features":[427]},{"name":"VMR9MonitorInfo","features":[305,316,427]},{"name":"VMR9NormalizedRect","features":[427]},{"name":"VMR9PresentationFlags","features":[427]},{"name":"VMR9PresentationInfo","features":[305,314,427]},{"name":"VMR9ProcAmpControl","features":[427]},{"name":"VMR9ProcAmpControlFlags","features":[427]},{"name":"VMR9ProcAmpControlRange","features":[427]},{"name":"VMR9RenderPrefs","features":[427]},{"name":"VMR9Sample_Discontinuity","features":[427]},{"name":"VMR9Sample_Preroll","features":[427]},{"name":"VMR9Sample_SrcDstRectsValid","features":[427]},{"name":"VMR9Sample_SyncPoint","features":[427]},{"name":"VMR9Sample_TimeValid","features":[427]},{"name":"VMR9SurfaceAllocationFlags","features":[427]},{"name":"VMR9VideoDesc","features":[427]},{"name":"VMR9VideoStreamInfo","features":[314,427]},{"name":"VMR9_SampleFieldInterleavedEvenFirst","features":[427]},{"name":"VMR9_SampleFieldInterleavedOddFirst","features":[427]},{"name":"VMR9_SampleFieldSingleEven","features":[427]},{"name":"VMR9_SampleFieldSingleOdd","features":[427]},{"name":"VMR9_SampleFormat","features":[427]},{"name":"VMR9_SampleProgressiveFrame","features":[427]},{"name":"VMR9_SampleReserved","features":[427]},{"name":"VMRALLOCATIONINFO","features":[305,315,316,427]},{"name":"VMRALPHABITMAP","features":[305,315,316,427]},{"name":"VMRBITMAP_DISABLE","features":[427]},{"name":"VMRBITMAP_ENTIREDDS","features":[427]},{"name":"VMRBITMAP_HDC","features":[427]},{"name":"VMRBITMAP_SRCCOLORKEY","features":[427]},{"name":"VMRBITMAP_SRCRECT","features":[427]},{"name":"VMRDeinterlaceCaps","features":[427]},{"name":"VMRDeinterlacePrefs","features":[427]},{"name":"VMRDeinterlaceTech","features":[427]},{"name":"VMRFrequency","features":[427]},{"name":"VMRGUID","features":[427]},{"name":"VMRMONITORINFO","features":[305,316,427]},{"name":"VMRMixerPrefs","features":[427]},{"name":"VMRMode","features":[427]},{"name":"VMRMode_Mask","features":[427]},{"name":"VMRMode_Renderless","features":[427]},{"name":"VMRMode_Windowed","features":[427]},{"name":"VMRMode_Windowless","features":[427]},{"name":"VMRPRESENTATIONINFO","features":[305,315,427]},{"name":"VMRPresentationFlags","features":[427]},{"name":"VMRRenderPrefs","features":[427]},{"name":"VMRSample_Discontinuity","features":[427]},{"name":"VMRSample_Preroll","features":[427]},{"name":"VMRSample_SrcDstRectsValid","features":[427]},{"name":"VMRSample_SyncPoint","features":[427]},{"name":"VMRSample_TimeValid","features":[427]},{"name":"VMRSurfaceAllocationFlags","features":[427]},{"name":"VMRVIDEOSTREAMINFO","features":[315,427]},{"name":"VMRVideoDesc","features":[305,427]},{"name":"VMR_ARMODE_LETTER_BOX","features":[427]},{"name":"VMR_ARMODE_NONE","features":[427]},{"name":"VMR_ASPECT_RATIO_MODE","features":[427]},{"name":"VMR_NOTSUPPORTED","features":[427]},{"name":"VMR_RENDER_DEVICE_OVERLAY","features":[427]},{"name":"VMR_RENDER_DEVICE_SYSMEM","features":[427]},{"name":"VMR_RENDER_DEVICE_VIDMEM","features":[427]},{"name":"VMR_SUPPORTED","features":[427]},{"name":"VariableBitRateAverage","features":[427]},{"name":"VariableBitRatePeak","features":[427]},{"name":"VfwCaptureDialog_Display","features":[427]},{"name":"VfwCaptureDialog_Format","features":[427]},{"name":"VfwCaptureDialog_Source","features":[427]},{"name":"VfwCaptureDialogs","features":[427]},{"name":"VfwCompressDialog_About","features":[427]},{"name":"VfwCompressDialog_Config","features":[427]},{"name":"VfwCompressDialog_QueryAbout","features":[427]},{"name":"VfwCompressDialog_QueryConfig","features":[427]},{"name":"VfwCompressDialogs","features":[427]},{"name":"VideoControlFlag_ExternalTriggerEnable","features":[427]},{"name":"VideoControlFlag_FlipHorizontal","features":[427]},{"name":"VideoControlFlag_FlipVertical","features":[427]},{"name":"VideoControlFlag_Trigger","features":[427]},{"name":"VideoControlFlags","features":[427]},{"name":"VideoCopyProtectionMacrovisionBasic","features":[427]},{"name":"VideoCopyProtectionMacrovisionCBI","features":[427]},{"name":"VideoCopyProtectionType","features":[427]},{"name":"VideoProcAmpFlags","features":[427]},{"name":"VideoProcAmpProperty","features":[427]},{"name":"VideoProcAmp_BacklightCompensation","features":[427]},{"name":"VideoProcAmp_Brightness","features":[427]},{"name":"VideoProcAmp_ColorEnable","features":[427]},{"name":"VideoProcAmp_Contrast","features":[427]},{"name":"VideoProcAmp_Flags_Auto","features":[427]},{"name":"VideoProcAmp_Flags_Manual","features":[427]},{"name":"VideoProcAmp_Gain","features":[427]},{"name":"VideoProcAmp_Gamma","features":[427]},{"name":"VideoProcAmp_Hue","features":[427]},{"name":"VideoProcAmp_Saturation","features":[427]},{"name":"VideoProcAmp_Sharpness","features":[427]},{"name":"VideoProcAmp_WhiteBalance","features":[427]},{"name":"_AMRESCTL_RESERVEFLAGS","features":[427]},{"name":"_AMSTREAMSELECTENABLEFLAGS","features":[427]},{"name":"_AMSTREAMSELECTINFOFLAGS","features":[427]},{"name":"_AM_AUDIO_RENDERER_STAT_PARAM","features":[427]},{"name":"_AM_FILTER_MISC_FLAGS","features":[427]},{"name":"_AM_INTF_SEARCH_FLAGS","features":[427]},{"name":"_AM_OVERLAY_NOTIFY_FLAGS","features":[427]},{"name":"_AM_PIN_FLOW_CONTROL_BLOCK_FLAGS","features":[427]},{"name":"_AM_PUSHSOURCE_FLAGS","features":[427]},{"name":"_AM_RENSDEREXFLAGS","features":[427]},{"name":"_DVDECODERRESOLUTION","features":[427]},{"name":"_DVENCODERFORMAT","features":[427]},{"name":"_DVENCODERRESOLUTION","features":[427]},{"name":"_DVENCODERVIDEOFORMAT","features":[427]},{"name":"_DVRESOLUTION","features":[427]},{"name":"_REM_FILTER_FLAGS","features":[427]},{"name":"g_wszExcludeScriptStreamDeliverySynchronization","features":[427]},{"name":"iBLUE","features":[427]},{"name":"iEGA_COLORS","features":[427]},{"name":"iGREEN","features":[427]},{"name":"iMASK_COLORS","features":[427]},{"name":"iMAXBITS","features":[427]},{"name":"iPALETTE","features":[427]},{"name":"iPALETTE_COLORS","features":[427]},{"name":"iRED","features":[427]},{"name":"iTRUECOLOR","features":[427]}],"433":[{"name":"ANALOG_AUXIN_NETWORK_TYPE","features":[430]},{"name":"ANALOG_FM_NETWORK_TYPE","features":[430]},{"name":"ANALOG_TV_NETWORK_TYPE","features":[430]},{"name":"ATSCChannelTuneRequest","features":[430]},{"name":"ATSCComponentType","features":[430]},{"name":"ATSCLocator","features":[430]},{"name":"ATSCTuningSpace","features":[430]},{"name":"ATSC_EIT_TID","features":[430]},{"name":"ATSC_ETM_LOCATION_IN_PTC_FOR_EVENT","features":[430]},{"name":"ATSC_ETM_LOCATION_IN_PTC_FOR_PSIP","features":[430]},{"name":"ATSC_ETM_LOCATION_NOT_PRESENT","features":[430]},{"name":"ATSC_ETM_LOCATION_RESERVED","features":[430]},{"name":"ATSC_ETT_TID","features":[430]},{"name":"ATSC_FILTER_OPTIONS","features":[305,430]},{"name":"ATSC_MGT_PID","features":[430]},{"name":"ATSC_MGT_TID","features":[430]},{"name":"ATSC_PIT_TID","features":[430]},{"name":"ATSC_RRT_PID","features":[430]},{"name":"ATSC_RRT_TID","features":[430]},{"name":"ATSC_STT_PID","features":[430]},{"name":"ATSC_STT_TID","features":[430]},{"name":"ATSC_TERRESTRIAL_TV_NETWORK_TYPE","features":[430]},{"name":"ATSC_VCT_CABL_TID","features":[430]},{"name":"ATSC_VCT_PID","features":[430]},{"name":"ATSC_VCT_TERR_TID","features":[430]},{"name":"AgeBased","features":[430]},{"name":"AnalogAudioComponentType","features":[430]},{"name":"AnalogLocator","features":[430]},{"name":"AnalogRadioTuningSpace","features":[430]},{"name":"AnalogTVTuningSpace","features":[430]},{"name":"AudioType_Commentary","features":[430]},{"name":"AudioType_Dialogue","features":[430]},{"name":"AudioType_Emergency","features":[430]},{"name":"AudioType_Hearing_Impaired","features":[430]},{"name":"AudioType_Music_And_Effects","features":[430]},{"name":"AudioType_Reserved","features":[430]},{"name":"AudioType_Standard","features":[430]},{"name":"AudioType_Visually_Impaired","features":[430]},{"name":"AudioType_Voiceover","features":[430]},{"name":"AuxInTuningSpace","features":[430]},{"name":"BDANETWORKTYPE_ATSC","features":[430]},{"name":"BDA_DEBUG_DATA","features":[430]},{"name":"BDA_DEBUG_DATA_AVAILABLE","features":[430]},{"name":"BDA_DEBUG_DATA_TYPE_STRING","features":[430]},{"name":"BDA_DigitalSignalStandard","features":[430]},{"name":"BDA_EVENT_DATA","features":[430]},{"name":"BDA_LockType","features":[430]},{"name":"BDA_SignalType","features":[430]},{"name":"BDA_TRANSPORT_INFO","features":[430]},{"name":"BSKYB_TERRESTRIAL_TV_NETWORK_TYPE","features":[430]},{"name":"BadSampleInfo","features":[430]},{"name":"Bda_DigitalStandard_ATSC","features":[430]},{"name":"Bda_DigitalStandard_DVB_C","features":[430]},{"name":"Bda_DigitalStandard_DVB_S","features":[430]},{"name":"Bda_DigitalStandard_DVB_T","features":[430]},{"name":"Bda_DigitalStandard_ISDB_C","features":[430]},{"name":"Bda_DigitalStandard_ISDB_S","features":[430]},{"name":"Bda_DigitalStandard_ISDB_T","features":[430]},{"name":"Bda_DigitalStandard_None","features":[430]},{"name":"Bda_LockType_Complete","features":[430]},{"name":"Bda_LockType_DecoderDemod","features":[430]},{"name":"Bda_LockType_None","features":[430]},{"name":"Bda_LockType_PLL","features":[430]},{"name":"Bda_SignalType_Analog","features":[430]},{"name":"Bda_SignalType_Digital","features":[430]},{"name":"Bda_SignalType_Unknown","features":[430]},{"name":"BfAttrNone","features":[430]},{"name":"BfEnTvRat_Attributes_CAE_TV","features":[430]},{"name":"BfEnTvRat_Attributes_CAF_TV","features":[430]},{"name":"BfEnTvRat_Attributes_MPAA","features":[430]},{"name":"BfEnTvRat_Attributes_US_TV","features":[430]},{"name":"BfEnTvRat_GenericAttributes","features":[430]},{"name":"BfIsAttr_1","features":[430]},{"name":"BfIsAttr_2","features":[430]},{"name":"BfIsAttr_3","features":[430]},{"name":"BfIsAttr_4","features":[430]},{"name":"BfIsAttr_5","features":[430]},{"name":"BfIsAttr_6","features":[430]},{"name":"BfIsAttr_7","features":[430]},{"name":"BfIsBlocked","features":[430]},{"name":"BfValidAttrSubmask","features":[430]},{"name":"BroadcastEventService","features":[430]},{"name":"CAE_IsBlocked","features":[430]},{"name":"CAE_TV_14","features":[430]},{"name":"CAE_TV_18","features":[430]},{"name":"CAE_TV_C","features":[430]},{"name":"CAE_TV_C8","features":[430]},{"name":"CAE_TV_Exempt","features":[430]},{"name":"CAE_TV_G","features":[430]},{"name":"CAE_TV_PG","features":[430]},{"name":"CAE_TV_Reserved","features":[430]},{"name":"CAE_ValidAttrSubmask","features":[430]},{"name":"CAF_IsBlocked","features":[430]},{"name":"CAF_TV_13","features":[430]},{"name":"CAF_TV_16","features":[430]},{"name":"CAF_TV_18","features":[430]},{"name":"CAF_TV_8","features":[430]},{"name":"CAF_TV_Exempt","features":[430]},{"name":"CAF_TV_G","features":[430]},{"name":"CAF_TV_Reserved","features":[430]},{"name":"CAF_TV_Reserved6","features":[430]},{"name":"CAF_ValidAttrSubmask","features":[430]},{"name":"CAPTURE_STREAMTIME","features":[430]},{"name":"CLSID_CPCAFiltersCategory","features":[430]},{"name":"CLSID_DTFilterEncProperties","features":[430]},{"name":"CLSID_DTFilterTagProperties","features":[430]},{"name":"CLSID_ETFilterEncProperties","features":[430]},{"name":"CLSID_ETFilterTagProperties","features":[430]},{"name":"CLSID_Mpeg2TableFilter","features":[430]},{"name":"CLSID_PTFilter","features":[430]},{"name":"CLSID_XDSCodecProperties","features":[430]},{"name":"CLSID_XDSCodecTagProperties","features":[430]},{"name":"COMPONENT_TAG_CAPTION_MAX","features":[430]},{"name":"COMPONENT_TAG_CAPTION_MIN","features":[430]},{"name":"COMPONENT_TAG_SUPERIMPOSE_MAX","features":[430]},{"name":"COMPONENT_TAG_SUPERIMPOSE_MIN","features":[430]},{"name":"CONTENT","features":[430]},{"name":"COPPEventBlockReason","features":[430]},{"name":"COPP_Activate","features":[430]},{"name":"COPP_AeroGlassOff","features":[430]},{"name":"COPP_BadCertificate","features":[430]},{"name":"COPP_BadDriver","features":[430]},{"name":"COPP_DigitalAudioUnprotected","features":[430]},{"name":"COPP_ForbiddenVideo","features":[430]},{"name":"COPP_InvalidBusProtection","features":[430]},{"name":"COPP_NoCardHDCPSupport","features":[430]},{"name":"COPP_NoMonitorHDCPSupport","features":[430]},{"name":"COPP_RogueApp","features":[430]},{"name":"COPP_Unknown","features":[430]},{"name":"CPEVENT_BITSHIFT_COPP","features":[430]},{"name":"CPEVENT_BITSHIFT_DOWNRES","features":[430]},{"name":"CPEVENT_BITSHIFT_LICENSE","features":[430]},{"name":"CPEVENT_BITSHIFT_NO_PLAYREADY","features":[430]},{"name":"CPEVENT_BITSHIFT_PENDING_CERTIFICATE","features":[430]},{"name":"CPEVENT_BITSHIFT_RATINGS","features":[430]},{"name":"CPEVENT_BITSHIFT_ROLLBACK","features":[430]},{"name":"CPEVENT_BITSHIFT_SAC","features":[430]},{"name":"CPEVENT_BITSHIFT_STUBLIB","features":[430]},{"name":"CPEVENT_BITSHIFT_UNTRUSTEDGRAPH","features":[430]},{"name":"CPEVENT_COPP","features":[430]},{"name":"CPEVENT_DOWNRES","features":[430]},{"name":"CPEVENT_LICENSE","features":[430]},{"name":"CPEVENT_NONE","features":[430]},{"name":"CPEVENT_PROTECTWINDOWED","features":[430]},{"name":"CPEVENT_RATINGS","features":[430]},{"name":"CPEVENT_ROLLBACK","features":[430]},{"name":"CPEVENT_SAC","features":[430]},{"name":"CPEVENT_STUBLIB","features":[430]},{"name":"CPEVENT_UNTRUSTEDGRAPH","features":[430]},{"name":"CPEventBitShift","features":[430]},{"name":"CPEvents","features":[430]},{"name":"CPRecordingStatus","features":[430]},{"name":"CRID_LOCATION","features":[430]},{"name":"CRID_LOCATION_DVB_RESERVED1","features":[430]},{"name":"CRID_LOCATION_DVB_RESERVED2","features":[430]},{"name":"CRID_LOCATION_IN_CIT","features":[430]},{"name":"CRID_LOCATION_IN_DESCRIPTOR","features":[430]},{"name":"CROSSBAR_DEFAULT_FLAGS","features":[430]},{"name":"CXDSData","features":[430]},{"name":"Canadian_English","features":[430]},{"name":"Canadian_French","features":[430]},{"name":"ChannelChangeInfo","features":[430]},{"name":"ChannelChangeSpanningEvent_End","features":[430]},{"name":"ChannelChangeSpanningEvent_Start","features":[430]},{"name":"ChannelChangeSpanningEvent_State","features":[430]},{"name":"ChannelIDTuneRequest","features":[430]},{"name":"ChannelIDTuningSpace","features":[430]},{"name":"ChannelInfo","features":[430]},{"name":"ChannelTuneRequest","features":[430]},{"name":"ChannelType","features":[430]},{"name":"ChannelTypeAudio","features":[430]},{"name":"ChannelTypeCaptions","features":[430]},{"name":"ChannelTypeData","features":[430]},{"name":"ChannelTypeInfo","features":[430]},{"name":"ChannelTypeNone","features":[430]},{"name":"ChannelTypeOther","features":[430]},{"name":"ChannelTypeSubtitles","features":[430]},{"name":"ChannelTypeSuperimpose","features":[430]},{"name":"ChannelTypeText","features":[430]},{"name":"ChannelTypeVideo","features":[430]},{"name":"Component","features":[430]},{"name":"ComponentType","features":[430]},{"name":"ComponentTypes","features":[430]},{"name":"Components","features":[430]},{"name":"CreatePropBagOnRegKey","features":[430]},{"name":"DEF_MODE_PROFILE","features":[430]},{"name":"DEF_MODE_STREAMS","features":[430]},{"name":"DESC_LINKAGE_CA_REPLACEMENT","features":[430]},{"name":"DESC_LINKAGE_COMPLETE_NET_BOUQUET_SI","features":[430]},{"name":"DESC_LINKAGE_DATA","features":[430]},{"name":"DESC_LINKAGE_EPG","features":[430]},{"name":"DESC_LINKAGE_INFORMATION","features":[430]},{"name":"DESC_LINKAGE_REPLACEMENT","features":[430]},{"name":"DESC_LINKAGE_RESERVED0","features":[430]},{"name":"DESC_LINKAGE_RESERVED1","features":[430]},{"name":"DESC_LINKAGE_RESERVED2","features":[430]},{"name":"DESC_LINKAGE_TYPE","features":[430]},{"name":"DESC_LINKAGE_USER","features":[430]},{"name":"DIGITAL_CABLE_NETWORK_TYPE","features":[430]},{"name":"DIRECT_TV_SATELLITE_TV_NETWORK_TYPE","features":[430]},{"name":"DISPID_CHTUNER_ACTR_MINOR_CHANNEL","features":[430]},{"name":"DISPID_CHTUNER_ATVAC_CHANNEL","features":[430]},{"name":"DISPID_CHTUNER_ATVDC_CONTENT","features":[430]},{"name":"DISPID_CHTUNER_ATVDC_SYSTEM","features":[430]},{"name":"DISPID_CHTUNER_CIDTR_CHANNELID","features":[430]},{"name":"DISPID_CHTUNER_CTR_CHANNEL","features":[430]},{"name":"DISPID_CHTUNER_DCTR_MAJOR_CHANNEL","features":[430]},{"name":"DISPID_CHTUNER_DCTR_SRCID","features":[430]},{"name":"DISPID_DVBTUNER_DVBC_ATTRIBUTESVALID","features":[430]},{"name":"DISPID_DVBTUNER_DVBC_COMPONENTTYPE","features":[430]},{"name":"DISPID_DVBTUNER_DVBC_PID","features":[430]},{"name":"DISPID_DVBTUNER_DVBC_TAG","features":[430]},{"name":"DISPID_DVBTUNER_ONID","features":[430]},{"name":"DISPID_DVBTUNER_SID","features":[430]},{"name":"DISPID_DVBTUNER_TSID","features":[430]},{"name":"DISPID_MP2TUNERFACTORY_CREATETUNEREQUEST","features":[430]},{"name":"DISPID_MP2TUNER_PROGNO","features":[430]},{"name":"DISPID_MP2TUNER_TSID","features":[430]},{"name":"DISPID_TUNER","features":[430]},{"name":"DISPID_TUNER_ATSCCT_FLAGS","features":[430]},{"name":"DISPID_TUNER_CT_CATEGORY","features":[430]},{"name":"DISPID_TUNER_CT_CLONE","features":[430]},{"name":"DISPID_TUNER_CT_MEDIAFORMATTYPE","features":[430]},{"name":"DISPID_TUNER_CT_MEDIAMAJORTYPE","features":[430]},{"name":"DISPID_TUNER_CT_MEDIASUBTYPE","features":[430]},{"name":"DISPID_TUNER_CT_MEDIATYPE","features":[430]},{"name":"DISPID_TUNER_CT__MEDIAFORMATTYPE","features":[430]},{"name":"DISPID_TUNER_CT__MEDIAMAJORTYPE","features":[430]},{"name":"DISPID_TUNER_CT__MEDIASUBTYPE","features":[430]},{"name":"DISPID_TUNER_C_ANALOG_AUDIO","features":[430]},{"name":"DISPID_TUNER_C_CLONE","features":[430]},{"name":"DISPID_TUNER_C_DESCRIPTION","features":[430]},{"name":"DISPID_TUNER_C_LANGID","features":[430]},{"name":"DISPID_TUNER_C_MP2_PCRPID","features":[430]},{"name":"DISPID_TUNER_C_MP2_PID","features":[430]},{"name":"DISPID_TUNER_C_MP2_PROGNO","features":[430]},{"name":"DISPID_TUNER_C_STATUS","features":[430]},{"name":"DISPID_TUNER_C_TYPE","features":[430]},{"name":"DISPID_TUNER_LCT_LANGID","features":[430]},{"name":"DISPID_TUNER_L_ANALOG_STANDARD","features":[430]},{"name":"DISPID_TUNER_L_ATSC_MP2_PROGNO","features":[430]},{"name":"DISPID_TUNER_L_ATSC_PHYS_CHANNEL","features":[430]},{"name":"DISPID_TUNER_L_ATSC_TSID","features":[430]},{"name":"DISPID_TUNER_L_CARRFREQ","features":[430]},{"name":"DISPID_TUNER_L_CLONE","features":[430]},{"name":"DISPID_TUNER_L_DTV_O_MAJOR_CHANNEL","features":[430]},{"name":"DISPID_TUNER_L_DVBS2_DISEQ_LNB_SOURCE","features":[430]},{"name":"DISPID_TUNER_L_DVBS2_PILOT","features":[430]},{"name":"DISPID_TUNER_L_DVBS2_ROLLOFF","features":[430]},{"name":"DISPID_TUNER_L_DVBS_AZIMUTH","features":[430]},{"name":"DISPID_TUNER_L_DVBS_ELEVATION","features":[430]},{"name":"DISPID_TUNER_L_DVBS_ORBITAL","features":[430]},{"name":"DISPID_TUNER_L_DVBS_POLARISATION","features":[430]},{"name":"DISPID_TUNER_L_DVBS_WEST","features":[430]},{"name":"DISPID_TUNER_L_DVBT2_PHYSICALLAYERPIPEID","features":[430]},{"name":"DISPID_TUNER_L_DVBT_BANDWIDTH","features":[430]},{"name":"DISPID_TUNER_L_DVBT_GUARDINTERVAL","features":[430]},{"name":"DISPID_TUNER_L_DVBT_HALPHA","features":[430]},{"name":"DISPID_TUNER_L_DVBT_INUSE","features":[430]},{"name":"DISPID_TUNER_L_DVBT_LPINNERFECMETHOD","features":[430]},{"name":"DISPID_TUNER_L_DVBT_LPINNERFECRATE","features":[430]},{"name":"DISPID_TUNER_L_DVBT_TRANSMISSIONMODE","features":[430]},{"name":"DISPID_TUNER_L_INNERFECMETHOD","features":[430]},{"name":"DISPID_TUNER_L_INNERFECRATE","features":[430]},{"name":"DISPID_TUNER_L_MOD","features":[430]},{"name":"DISPID_TUNER_L_OUTERFECMETHOD","features":[430]},{"name":"DISPID_TUNER_L_OUTERFECRATE","features":[430]},{"name":"DISPID_TUNER_L_SYMRATE","features":[430]},{"name":"DISPID_TUNER_MP2CT_TYPE","features":[430]},{"name":"DISPID_TUNER_TR_CLONE","features":[430]},{"name":"DISPID_TUNER_TR_COMPONENTS","features":[430]},{"name":"DISPID_TUNER_TR_LOCATOR","features":[430]},{"name":"DISPID_TUNER_TR_TUNINGSPACE","features":[430]},{"name":"DISPID_TUNER_TS_AR_COUNTRYCODE","features":[430]},{"name":"DISPID_TUNER_TS_AR_MAXFREQUENCY","features":[430]},{"name":"DISPID_TUNER_TS_AR_MINFREQUENCY","features":[430]},{"name":"DISPID_TUNER_TS_AR_STEP","features":[430]},{"name":"DISPID_TUNER_TS_ATSC_MAXMINORCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_ATSC_MAXPHYSCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_ATSC_MINMINORCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_ATSC_MINPHYSCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_ATV_COUNTRYCODE","features":[430]},{"name":"DISPID_TUNER_TS_ATV_INPUTTYPE","features":[430]},{"name":"DISPID_TUNER_TS_ATV_MAXCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_ATV_MINCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_AUX_COUNTRYCODE","features":[430]},{"name":"DISPID_TUNER_TS_CLONE","features":[430]},{"name":"DISPID_TUNER_TS_CLSID","features":[430]},{"name":"DISPID_TUNER_TS_CREATETUNEREQUEST","features":[430]},{"name":"DISPID_TUNER_TS_DC_MAXMAJORCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_DC_MAXSOURCEID","features":[430]},{"name":"DISPID_TUNER_TS_DC_MINMAJORCHANNEL","features":[430]},{"name":"DISPID_TUNER_TS_DC_MINSOURCEID","features":[430]},{"name":"DISPID_TUNER_TS_DEFAULTPREFERREDCOMPONENTTYPES","features":[430]},{"name":"DISPID_TUNER_TS_DEFLOCATOR","features":[430]},{"name":"DISPID_TUNER_TS_DVB2_NETWORK_ID","features":[430]},{"name":"DISPID_TUNER_TS_DVBS2_HI_OSC_FREQ_OVERRIDE","features":[430]},{"name":"DISPID_TUNER_TS_DVBS2_LNB_SWITCH_FREQ_OVERRIDE","features":[430]},{"name":"DISPID_TUNER_TS_DVBS2_LOW_OSC_FREQ_OVERRIDE","features":[430]},{"name":"DISPID_TUNER_TS_DVBS2_SPECTRAL_INVERSION_OVERRIDE","features":[430]},{"name":"DISPID_TUNER_TS_DVBS_HI_OSC_FREQ","features":[430]},{"name":"DISPID_TUNER_TS_DVBS_INPUT_RANGE","features":[430]},{"name":"DISPID_TUNER_TS_DVBS_LNB_SWITCH_FREQ","features":[430]},{"name":"DISPID_TUNER_TS_DVBS_LOW_OSC_FREQ","features":[430]},{"name":"DISPID_TUNER_TS_DVBS_SPECTRAL_INVERSION","features":[430]},{"name":"DISPID_TUNER_TS_DVB_SYSTEMTYPE","features":[430]},{"name":"DISPID_TUNER_TS_ENUMCATEGORYGUIDS","features":[430]},{"name":"DISPID_TUNER_TS_ENUMDEVICEMONIKERS","features":[430]},{"name":"DISPID_TUNER_TS_FREQMAP","features":[430]},{"name":"DISPID_TUNER_TS_FRIENDLYNAME","features":[430]},{"name":"DISPID_TUNER_TS_NETWORKTYPE","features":[430]},{"name":"DISPID_TUNER_TS_UNIQUENAME","features":[430]},{"name":"DISPID_TUNER_TS__NETWORKTYPE","features":[430]},{"name":"DOWNRES_Always","features":[430]},{"name":"DOWNRES_InWindowOnly","features":[430]},{"name":"DOWNRES_Undefined","features":[430]},{"name":"DSATTRIB_BadSampleInfo","features":[430]},{"name":"DSATTRIB_WMDRMProtectionInfo","features":[430]},{"name":"DSHOW_STREAM_DESC","features":[305,430]},{"name":"DSMCC_ELEMENT","features":[430]},{"name":"DSMCC_FILTER_OPTIONS","features":[305,430]},{"name":"DSMCC_SECTION","features":[430]},{"name":"DTFilter","features":[430]},{"name":"DTV_CardStatus_Error","features":[430]},{"name":"DTV_CardStatus_FirmwareDownload","features":[430]},{"name":"DTV_CardStatus_Inserted","features":[430]},{"name":"DTV_CardStatus_Removed","features":[430]},{"name":"DTV_Entitlement_CanDecrypt","features":[430]},{"name":"DTV_Entitlement_NotEntitled","features":[430]},{"name":"DTV_Entitlement_TechnicalFailure","features":[430]},{"name":"DTV_MMIMessage_Close","features":[430]},{"name":"DTV_MMIMessage_Open","features":[430]},{"name":"DVBCLocator","features":[430]},{"name":"DVBSLocator","features":[430]},{"name":"DVBSTuningSpace","features":[430]},{"name":"DVBS_SCAN_TABLE_MAX_SIZE","features":[430]},{"name":"DVBScramblingControlSpanningEvent","features":[305,430]},{"name":"DVBTLocator","features":[430]},{"name":"DVBTLocator2","features":[430]},{"name":"DVBTuneRequest","features":[430]},{"name":"DVBTuningSpace","features":[430]},{"name":"DVB_BAT_PID","features":[430]},{"name":"DVB_BAT_TID","features":[430]},{"name":"DVB_CABLE_TV_NETWORK_TYPE","features":[430]},{"name":"DVB_DIT_PID","features":[430]},{"name":"DVB_DIT_TID","features":[430]},{"name":"DVB_EIT_ACTUAL_TID","features":[430]},{"name":"DVB_EIT_FILTER_OPTIONS","features":[305,430]},{"name":"DVB_EIT_OTHER_TID","features":[430]},{"name":"DVB_EIT_PID","features":[430]},{"name":"DVB_NIT_ACTUAL_TID","features":[430]},{"name":"DVB_NIT_OTHER_TID","features":[430]},{"name":"DVB_NIT_PID","features":[430]},{"name":"DVB_RST_PID","features":[430]},{"name":"DVB_RST_TID","features":[430]},{"name":"DVB_SATELLITE_TV_NETWORK_TYPE","features":[430]},{"name":"DVB_SDT_ACTUAL_TID","features":[430]},{"name":"DVB_SDT_OTHER_TID","features":[430]},{"name":"DVB_SDT_PID","features":[430]},{"name":"DVB_SIT_PID","features":[430]},{"name":"DVB_SIT_TID","features":[430]},{"name":"DVB_STRCONV_MODE","features":[430]},{"name":"DVB_ST_PID_16","features":[430]},{"name":"DVB_ST_PID_17","features":[430]},{"name":"DVB_ST_PID_18","features":[430]},{"name":"DVB_ST_PID_19","features":[430]},{"name":"DVB_ST_PID_20","features":[430]},{"name":"DVB_ST_TID","features":[430]},{"name":"DVB_TDT_PID","features":[430]},{"name":"DVB_TDT_TID","features":[430]},{"name":"DVB_TERRESTRIAL_TV_NETWORK_TYPE","features":[430]},{"name":"DVB_TOT_PID","features":[430]},{"name":"DVB_TOT_TID","features":[430]},{"name":"DVDFilterState","features":[430]},{"name":"DVDMenuIDConstants","features":[430]},{"name":"DVDSPExt","features":[430]},{"name":"DVDTextStringType","features":[430]},{"name":"DVR_STREAM_DESC","features":[305,430,428]},{"name":"DigitalCableLocator","features":[430]},{"name":"DigitalCableTuneRequest","features":[430]},{"name":"DigitalCableTuningSpace","features":[430]},{"name":"DigitalLocator","features":[430]},{"name":"DisplaySizeList","features":[430]},{"name":"DownResEventParam","features":[430]},{"name":"DualMonoInfo","features":[430]},{"name":"DvbParentalRatingDescriptor","features":[430]},{"name":"DvbParentalRatingParam","features":[430]},{"name":"ECHOSTAR_SATELLITE_TV_NETWORK_TYPE","features":[430]},{"name":"ENCDEC_CPEVENT","features":[430]},{"name":"ENCDEC_RECORDING_STATUS","features":[430]},{"name":"ESEventFactory","features":[430]},{"name":"ESEventService","features":[430]},{"name":"ETFilter","features":[430]},{"name":"EVENTID_ARIBcontentSpanningEvent","features":[430]},{"name":"EVENTID_AudioDescriptorSpanningEvent","features":[430]},{"name":"EVENTID_AudioTypeSpanningEvent","features":[430]},{"name":"EVENTID_BDAConditionalAccessTAG","features":[430]},{"name":"EVENTID_BDAEventingServicePendingEvent","features":[430]},{"name":"EVENTID_BDA_CASBroadcastMMI","features":[430]},{"name":"EVENTID_BDA_CASCloseMMI","features":[430]},{"name":"EVENTID_BDA_CASOpenMMI","features":[430]},{"name":"EVENTID_BDA_CASReleaseTuner","features":[430]},{"name":"EVENTID_BDA_CASRequestTuner","features":[430]},{"name":"EVENTID_BDA_DiseqCResponseAvailable","features":[430]},{"name":"EVENTID_BDA_EncoderSignalLock","features":[430]},{"name":"EVENTID_BDA_FdcStatus","features":[430]},{"name":"EVENTID_BDA_FdcTableSection","features":[430]},{"name":"EVENTID_BDA_GPNVValueUpdate","features":[430]},{"name":"EVENTID_BDA_GuideDataAvailable","features":[430]},{"name":"EVENTID_BDA_GuideDataError","features":[430]},{"name":"EVENTID_BDA_GuideServiceInformationUpdated","features":[430]},{"name":"EVENTID_BDA_IsdbCASResponse","features":[430]},{"name":"EVENTID_BDA_LbigsCloseConnectionHandle","features":[430]},{"name":"EVENTID_BDA_LbigsOpenConnection","features":[430]},{"name":"EVENTID_BDA_LbigsSendData","features":[430]},{"name":"EVENTID_BDA_RatingPinReset","features":[430]},{"name":"EVENTID_BDA_TransprtStreamSelectorInfo","features":[430]},{"name":"EVENTID_BDA_TunerNoSignal","features":[430]},{"name":"EVENTID_BDA_TunerSignalLock","features":[430]},{"name":"EVENTID_BDA_UpdateDrmStatus","features":[430]},{"name":"EVENTID_BDA_UpdateScanState","features":[430]},{"name":"EVENTID_CADenialCountChanged","features":[430]},{"name":"EVENTID_CASFailureSpanningEvent","features":[430]},{"name":"EVENTID_CSDescriptorSpanningEvent","features":[430]},{"name":"EVENTID_CandidatePostTuneData","features":[430]},{"name":"EVENTID_CardStatusChanged","features":[430]},{"name":"EVENTID_ChannelChangeSpanningEvent","features":[430]},{"name":"EVENTID_ChannelInfoSpanningEvent","features":[430]},{"name":"EVENTID_ChannelTypeSpanningEvent","features":[430]},{"name":"EVENTID_CtxADescriptorSpanningEvent","features":[430]},{"name":"EVENTID_DFNWithNoActualAVData","features":[430]},{"name":"EVENTID_DRMParingStatusChanged","features":[430]},{"name":"EVENTID_DRMParingStepComplete","features":[430]},{"name":"EVENTID_DTFilterCOPPBlock","features":[430]},{"name":"EVENTID_DTFilterCOPPUnblock","features":[430]},{"name":"EVENTID_DTFilterDataFormatFailure","features":[430]},{"name":"EVENTID_DTFilterDataFormatOK","features":[430]},{"name":"EVENTID_DTFilterRatingChange","features":[430]},{"name":"EVENTID_DTFilterRatingsBlock","features":[430]},{"name":"EVENTID_DTFilterRatingsUnblock","features":[430]},{"name":"EVENTID_DTFilterXDSPacket","features":[430]},{"name":"EVENTID_DVBScramblingControlSpanningEvent","features":[430]},{"name":"EVENTID_DemultiplexerFilterDiscontinuity","features":[430]},{"name":"EVENTID_DualMonoSpanningEvent","features":[430]},{"name":"EVENTID_DvbParentalRatingDescriptor","features":[430]},{"name":"EVENTID_EASMessageReceived","features":[430]},{"name":"EVENTID_ETDTFilterLicenseFailure","features":[430]},{"name":"EVENTID_ETDTFilterLicenseOK","features":[430]},{"name":"EVENTID_ETFilterCopyNever","features":[430]},{"name":"EVENTID_ETFilterCopyOnce","features":[430]},{"name":"EVENTID_ETFilterEncryptionOff","features":[430]},{"name":"EVENTID_ETFilterEncryptionOn","features":[430]},{"name":"EVENTID_EmmMessageSpanningEvent","features":[430]},{"name":"EVENTID_EncDecFilterError","features":[430]},{"name":"EVENTID_EncDecFilterEvent","features":[430]},{"name":"EVENTID_EntitlementChanged","features":[430]},{"name":"EVENTID_FormatNotSupportedEvent","features":[430]},{"name":"EVENTID_LanguageSpanningEvent","features":[430]},{"name":"EVENTID_MMIMessage","features":[430]},{"name":"EVENTID_NewSignalAcquired","features":[430]},{"name":"EVENTID_PBDAParentalControlEvent","features":[430]},{"name":"EVENTID_PIDListSpanningEvent","features":[430]},{"name":"EVENTID_PSITable","features":[430]},{"name":"EVENTID_RRTSpanningEvent","features":[430]},{"name":"EVENTID_SBE2RecControlStarted","features":[430]},{"name":"EVENTID_SBE2RecControlStopped","features":[430]},{"name":"EVENTID_STBChannelNumber","features":[430]},{"name":"EVENTID_ServiceTerminated","features":[430]},{"name":"EVENTID_SignalAndServiceStatusSpanningEvent","features":[430]},{"name":"EVENTID_SignalStatusChanged","features":[430]},{"name":"EVENTID_StreamIDSpanningEvent","features":[430]},{"name":"EVENTID_StreamTypeSpanningEvent","features":[430]},{"name":"EVENTID_SubtitleSpanningEvent","features":[430]},{"name":"EVENTID_TeletextSpanningEvent","features":[430]},{"name":"EVENTID_TuneFailureEvent","features":[430]},{"name":"EVENTID_TuneFailureSpanningEvent","features":[430]},{"name":"EVENTID_TuningChanged","features":[430]},{"name":"EVENTID_TuningChanging","features":[430]},{"name":"EVENTID_XDSCodecDuplicateXDSRating","features":[430]},{"name":"EVENTID_XDSCodecNewXDSPacket","features":[430]},{"name":"EVENTID_XDSCodecNewXDSRating","features":[430]},{"name":"EVENTTYPE_CASDescrambleFailureEvent","features":[430]},{"name":"EnTag_Mode","features":[430]},{"name":"EnTag_Once","features":[430]},{"name":"EnTag_Remove","features":[430]},{"name":"EnTag_Repeat","features":[430]},{"name":"EnTvRat_CAE_TV","features":[430]},{"name":"EnTvRat_CAF_TV","features":[430]},{"name":"EnTvRat_GenericLevel","features":[430]},{"name":"EnTvRat_MPAA","features":[430]},{"name":"EnTvRat_System","features":[430]},{"name":"EnTvRat_US_TV","features":[430]},{"name":"EncDecEvents","features":[430]},{"name":"EvalRat","features":[430]},{"name":"FORMATNOTSUPPORTED_CLEAR","features":[430]},{"name":"FORMATNOTSUPPORTED_NOTSUPPORTED","features":[430]},{"name":"FORMATTYPE_CPFilters_Processed","features":[430]},{"name":"FORMATTYPE_ETDTFilter_Tagged","features":[430]},{"name":"FormatNotSupportedEvents","features":[430]},{"name":"FrameMode","features":[430]},{"name":"IATSCChannelTuneRequest","features":[430,356]},{"name":"IATSCComponentType","features":[430,356]},{"name":"IATSCLocator","features":[430,356]},{"name":"IATSCLocator2","features":[430,356]},{"name":"IATSCTuningSpace","features":[430,356]},{"name":"IATSC_EIT","features":[430]},{"name":"IATSC_ETT","features":[430]},{"name":"IATSC_MGT","features":[430]},{"name":"IATSC_STT","features":[430]},{"name":"IATSC_VCT","features":[430]},{"name":"IAnalogAudioComponentType","features":[430,356]},{"name":"IAnalogLocator","features":[430,356]},{"name":"IAnalogRadioTuningSpace","features":[430,356]},{"name":"IAnalogRadioTuningSpace2","features":[430,356]},{"name":"IAnalogTVTuningSpace","features":[430,356]},{"name":"IAtscContentAdvisoryDescriptor","features":[430]},{"name":"IAtscPsipParser","features":[430]},{"name":"IAttributeGet","features":[430]},{"name":"IAttributeSet","features":[430]},{"name":"IAuxInTuningSpace","features":[430,356]},{"name":"IAuxInTuningSpace2","features":[430,356]},{"name":"IBDAComparable","features":[430]},{"name":"IBDACreateTuneRequestEx","features":[430]},{"name":"IBDA_TIF_REGISTRATION","features":[430]},{"name":"ICAT","features":[430]},{"name":"ICaptionServiceDescriptor","features":[430]},{"name":"IChannelIDTuneRequest","features":[430,356]},{"name":"IChannelTuneRequest","features":[430,356]},{"name":"IComponent","features":[430,356]},{"name":"IComponentType","features":[430,356]},{"name":"IComponentTypes","features":[430,356]},{"name":"IComponents","features":[430,356]},{"name":"IComponentsOld","features":[430,356]},{"name":"ICreatePropBagOnRegKey","features":[430]},{"name":"IDTFilter","features":[430]},{"name":"IDTFilter2","features":[430]},{"name":"IDTFilter3","features":[430]},{"name":"IDTFilterConfig","features":[430]},{"name":"IDTFilterEvents","features":[430,356]},{"name":"IDTFilterLicenseRenewal","features":[430]},{"name":"IDVBCLocator","features":[430,356]},{"name":"IDVBSLocator","features":[430,356]},{"name":"IDVBSLocator2","features":[430,356]},{"name":"IDVBSTuningSpace","features":[430,356]},{"name":"IDVBTLocator","features":[430,356]},{"name":"IDVBTLocator2","features":[430,356]},{"name":"IDVBTuneRequest","features":[430,356]},{"name":"IDVBTuningSpace","features":[430,356]},{"name":"IDVBTuningSpace2","features":[430,356]},{"name":"IDVB_BAT","features":[430]},{"name":"IDVB_DIT","features":[430]},{"name":"IDVB_EIT","features":[430]},{"name":"IDVB_EIT2","features":[430]},{"name":"IDVB_NIT","features":[430]},{"name":"IDVB_RST","features":[430]},{"name":"IDVB_SDT","features":[430]},{"name":"IDVB_SIT","features":[430]},{"name":"IDVB_ST","features":[430]},{"name":"IDVB_TDT","features":[430]},{"name":"IDVB_TOT","features":[430]},{"name":"IDigitalCableLocator","features":[430,356]},{"name":"IDigitalCableTuneRequest","features":[430,356]},{"name":"IDigitalCableTuningSpace","features":[430,356]},{"name":"IDigitalLocator","features":[430,356]},{"name":"IDvbCableDeliverySystemDescriptor","features":[430]},{"name":"IDvbComponentDescriptor","features":[430]},{"name":"IDvbContentDescriptor","features":[430]},{"name":"IDvbContentIdentifierDescriptor","features":[430]},{"name":"IDvbDataBroadcastDescriptor","features":[430]},{"name":"IDvbDataBroadcastIDDescriptor","features":[430]},{"name":"IDvbDefaultAuthorityDescriptor","features":[430]},{"name":"IDvbExtendedEventDescriptor","features":[430]},{"name":"IDvbFrequencyListDescriptor","features":[430]},{"name":"IDvbHDSimulcastLogicalChannelDescriptor","features":[430]},{"name":"IDvbLinkageDescriptor","features":[430]},{"name":"IDvbLogicalChannel2Descriptor","features":[430]},{"name":"IDvbLogicalChannelDescriptor","features":[430]},{"name":"IDvbLogicalChannelDescriptor2","features":[430]},{"name":"IDvbMultilingualServiceNameDescriptor","features":[430]},{"name":"IDvbNetworkNameDescriptor","features":[430]},{"name":"IDvbParentalRatingDescriptor","features":[430]},{"name":"IDvbPrivateDataSpecifierDescriptor","features":[430]},{"name":"IDvbSatelliteDeliverySystemDescriptor","features":[430]},{"name":"IDvbServiceAttributeDescriptor","features":[430]},{"name":"IDvbServiceDescriptor","features":[430]},{"name":"IDvbServiceDescriptor2","features":[430]},{"name":"IDvbServiceListDescriptor","features":[430]},{"name":"IDvbShortEventDescriptor","features":[430]},{"name":"IDvbSiParser","features":[430]},{"name":"IDvbSiParser2","features":[430]},{"name":"IDvbSubtitlingDescriptor","features":[430]},{"name":"IDvbTeletextDescriptor","features":[430]},{"name":"IDvbTerrestrial2DeliverySystemDescriptor","features":[430]},{"name":"IDvbTerrestrialDeliverySystemDescriptor","features":[430]},{"name":"IESCloseMmiEvent","features":[430]},{"name":"IESEventFactory","features":[430]},{"name":"IESEventService","features":[430]},{"name":"IESEventServiceConfiguration","features":[430]},{"name":"IESFileExpiryDateEvent","features":[430]},{"name":"IESIsdbCasResponseEvent","features":[430]},{"name":"IESLicenseRenewalResultEvent","features":[430]},{"name":"IESOpenMmiEvent","features":[430]},{"name":"IESRequestTunerEvent","features":[430]},{"name":"IESValueUpdatedEvent","features":[430]},{"name":"IETFilter","features":[430]},{"name":"IETFilterConfig","features":[430]},{"name":"IETFilterEvents","features":[430,356]},{"name":"IEnumComponentTypes","features":[430]},{"name":"IEnumComponents","features":[430]},{"name":"IEnumGuideDataProperties","features":[430]},{"name":"IEnumMSVidGraphSegment","features":[430]},{"name":"IEnumStreamBufferRecordingAttrib","features":[430]},{"name":"IEnumTuneRequests","features":[430]},{"name":"IEnumTuningSpaces","features":[430]},{"name":"IEvalRat","features":[430,356]},{"name":"IGenericDescriptor","features":[430]},{"name":"IGenericDescriptor2","features":[430]},{"name":"IGpnvsCommonBase","features":[430]},{"name":"IGuideData","features":[430]},{"name":"IGuideDataEvent","features":[430]},{"name":"IGuideDataLoader","features":[430]},{"name":"IGuideDataProperty","features":[430]},{"name":"IISDBSLocator","features":[430,356]},{"name":"IISDB_BIT","features":[430]},{"name":"IISDB_CDT","features":[430]},{"name":"IISDB_EMM","features":[430]},{"name":"IISDB_LDT","features":[430]},{"name":"IISDB_NBIT","features":[430]},{"name":"IISDB_SDT","features":[430]},{"name":"IISDB_SDTT","features":[430]},{"name":"IIsdbAudioComponentDescriptor","features":[430]},{"name":"IIsdbCAContractInformationDescriptor","features":[430]},{"name":"IIsdbCADescriptor","features":[430]},{"name":"IIsdbCAServiceDescriptor","features":[430]},{"name":"IIsdbComponentGroupDescriptor","features":[430]},{"name":"IIsdbDataContentDescriptor","features":[430]},{"name":"IIsdbDigitalCopyControlDescriptor","features":[430]},{"name":"IIsdbDownloadContentDescriptor","features":[430]},{"name":"IIsdbEmergencyInformationDescriptor","features":[430]},{"name":"IIsdbEventGroupDescriptor","features":[430]},{"name":"IIsdbHierarchicalTransmissionDescriptor","features":[430]},{"name":"IIsdbLogoTransmissionDescriptor","features":[430]},{"name":"IIsdbSIParameterDescriptor","features":[430]},{"name":"IIsdbSeriesDescriptor","features":[430]},{"name":"IIsdbSiParser2","features":[430]},{"name":"IIsdbTSInformationDescriptor","features":[430]},{"name":"IIsdbTerrestrialDeliverySystemDescriptor","features":[430]},{"name":"ILanguageComponentType","features":[430,356]},{"name":"ILocator","features":[430,356]},{"name":"IMPEG2Component","features":[430,356]},{"name":"IMPEG2ComponentType","features":[430,356]},{"name":"IMPEG2TuneRequest","features":[430,356]},{"name":"IMPEG2TuneRequestFactory","features":[430,356]},{"name":"IMPEG2TuneRequestSupport","features":[430]},{"name":"IMPEG2_TIF_CONTROL","features":[430]},{"name":"IMSEventBinder","features":[430,356]},{"name":"IMSVidAnalogTuner","features":[430,356]},{"name":"IMSVidAnalogTuner2","features":[430,356]},{"name":"IMSVidAnalogTunerEvent","features":[430,356]},{"name":"IMSVidAudioRenderer","features":[430,356]},{"name":"IMSVidAudioRendererDevices","features":[430,356]},{"name":"IMSVidAudioRendererEvent","features":[430,356]},{"name":"IMSVidAudioRendererEvent2","features":[430,356]},{"name":"IMSVidClosedCaptioning","features":[430,356]},{"name":"IMSVidClosedCaptioning2","features":[430,356]},{"name":"IMSVidClosedCaptioning3","features":[430,356]},{"name":"IMSVidCompositionSegment","features":[430,356]},{"name":"IMSVidCtl","features":[430,356]},{"name":"IMSVidDataServices","features":[430,356]},{"name":"IMSVidDataServicesEvent","features":[430,356]},{"name":"IMSVidDevice","features":[430,356]},{"name":"IMSVidDevice2","features":[430]},{"name":"IMSVidDeviceEvent","features":[430,356]},{"name":"IMSVidEVR","features":[430,356]},{"name":"IMSVidEVREvent","features":[430,356]},{"name":"IMSVidEncoder","features":[430,356]},{"name":"IMSVidFeature","features":[430,356]},{"name":"IMSVidFeatureEvent","features":[430,356]},{"name":"IMSVidFeatures","features":[430,356]},{"name":"IMSVidFilePlayback","features":[430,356]},{"name":"IMSVidFilePlayback2","features":[430,356]},{"name":"IMSVidFilePlaybackEvent","features":[430,356]},{"name":"IMSVidGenericSink","features":[430,356]},{"name":"IMSVidGenericSink2","features":[430,356]},{"name":"IMSVidGraphSegment","features":[430,356]},{"name":"IMSVidGraphSegmentContainer","features":[430]},{"name":"IMSVidGraphSegmentUserInput","features":[430]},{"name":"IMSVidInputDevice","features":[430,356]},{"name":"IMSVidInputDeviceEvent","features":[430,356]},{"name":"IMSVidInputDevices","features":[430,356]},{"name":"IMSVidOutputDevice","features":[430,356]},{"name":"IMSVidOutputDeviceEvent","features":[430,356]},{"name":"IMSVidOutputDevices","features":[430,356]},{"name":"IMSVidPlayback","features":[430,356]},{"name":"IMSVidPlaybackEvent","features":[430,356]},{"name":"IMSVidRect","features":[430,356]},{"name":"IMSVidStreamBufferRecordingControl","features":[430,356]},{"name":"IMSVidStreamBufferSink","features":[430,356]},{"name":"IMSVidStreamBufferSink2","features":[430,356]},{"name":"IMSVidStreamBufferSink3","features":[430,356]},{"name":"IMSVidStreamBufferSinkEvent","features":[430,356]},{"name":"IMSVidStreamBufferSinkEvent2","features":[430,356]},{"name":"IMSVidStreamBufferSinkEvent3","features":[430,356]},{"name":"IMSVidStreamBufferSinkEvent4","features":[430,356]},{"name":"IMSVidStreamBufferSource","features":[430,356]},{"name":"IMSVidStreamBufferSource2","features":[430,356]},{"name":"IMSVidStreamBufferSourceEvent","features":[430,356]},{"name":"IMSVidStreamBufferSourceEvent2","features":[430,356]},{"name":"IMSVidStreamBufferSourceEvent3","features":[430,356]},{"name":"IMSVidStreamBufferV2SourceEvent","features":[430,356]},{"name":"IMSVidTuner","features":[430,356]},{"name":"IMSVidTunerEvent","features":[430,356]},{"name":"IMSVidVMR9","features":[430,356]},{"name":"IMSVidVRGraphSegment","features":[430,356]},{"name":"IMSVidVideoInputDevice","features":[430,356]},{"name":"IMSVidVideoRenderer","features":[430,356]},{"name":"IMSVidVideoRenderer2","features":[430,356]},{"name":"IMSVidVideoRendererDevices","features":[430,356]},{"name":"IMSVidVideoRendererEvent","features":[430,356]},{"name":"IMSVidVideoRendererEvent2","features":[430,356]},{"name":"IMSVidWebDVD","features":[430,356]},{"name":"IMSVidWebDVD2","features":[430,356]},{"name":"IMSVidWebDVDAdm","features":[430,356]},{"name":"IMSVidWebDVDEvent","features":[430,356]},{"name":"IMSVidXDS","features":[430,356]},{"name":"IMSVidXDSEvent","features":[430,356]},{"name":"IMceBurnerControl","features":[430]},{"name":"IMpeg2Data","features":[430]},{"name":"IMpeg2Stream","features":[430]},{"name":"IMpeg2TableFilter","features":[430]},{"name":"IPAT","features":[430]},{"name":"IPBDAAttributesDescriptor","features":[430]},{"name":"IPBDAEntitlementDescriptor","features":[430]},{"name":"IPBDASiParser","features":[430]},{"name":"IPBDA_EIT","features":[430]},{"name":"IPBDA_Services","features":[430]},{"name":"IPMT","features":[430]},{"name":"IPSITables","features":[430]},{"name":"IPTFilterLicenseRenewal","features":[430]},{"name":"IPersistTuneXml","features":[430,356]},{"name":"IPersistTuneXmlUtility","features":[430]},{"name":"IPersistTuneXmlUtility2","features":[430]},{"name":"IRegisterTuner","features":[430]},{"name":"ISBE2Crossbar","features":[430]},{"name":"ISBE2EnumStream","features":[430]},{"name":"ISBE2FileScan","features":[430]},{"name":"ISBE2GlobalEvent","features":[430]},{"name":"ISBE2GlobalEvent2","features":[430]},{"name":"ISBE2MediaTypeProfile","features":[430]},{"name":"ISBE2SpanningEvent","features":[430]},{"name":"ISBE2StreamMap","features":[430]},{"name":"ISCTE_EAS","features":[430]},{"name":"ISDBSLocator","features":[430]},{"name":"ISDB_BIT_PID","features":[430]},{"name":"ISDB_BIT_TID","features":[430]},{"name":"ISDB_CABLE_TV_NETWORK_TYPE","features":[430]},{"name":"ISDB_CDT_PID","features":[430]},{"name":"ISDB_CDT_TID","features":[430]},{"name":"ISDB_EMM_TID","features":[430]},{"name":"ISDB_LDT_PID","features":[430]},{"name":"ISDB_LDT_TID","features":[430]},{"name":"ISDB_NBIT_MSG_TID","features":[430]},{"name":"ISDB_NBIT_PID","features":[430]},{"name":"ISDB_NBIT_REF_TID","features":[430]},{"name":"ISDB_SATELLITE_TV_NETWORK_TYPE","features":[430]},{"name":"ISDB_SDTT_ALT_PID","features":[430]},{"name":"ISDB_SDTT_PID","features":[430]},{"name":"ISDB_SDTT_TID","features":[430]},{"name":"ISDB_ST_TID","features":[430]},{"name":"ISDB_S_NETWORK_TYPE","features":[430]},{"name":"ISDB_TERRESTRIAL_TV_NETWORK_TYPE","features":[430]},{"name":"ISDB_T_NETWORK_TYPE","features":[430]},{"name":"ISIInbandEPG","features":[430]},{"name":"ISIInbandEPGEvent","features":[430]},{"name":"IScanningTuner","features":[430]},{"name":"IScanningTunerEx","features":[430]},{"name":"ISectionList","features":[430]},{"name":"IServiceLocationDescriptor","features":[430]},{"name":"IStreamBufferConfigure","features":[430]},{"name":"IStreamBufferConfigure2","features":[430]},{"name":"IStreamBufferConfigure3","features":[430]},{"name":"IStreamBufferDataCounters","features":[430]},{"name":"IStreamBufferInitialize","features":[430]},{"name":"IStreamBufferMediaSeeking","features":[430]},{"name":"IStreamBufferMediaSeeking2","features":[430]},{"name":"IStreamBufferRecComp","features":[430]},{"name":"IStreamBufferRecordControl","features":[430]},{"name":"IStreamBufferRecordingAttribute","features":[430]},{"name":"IStreamBufferSink","features":[430]},{"name":"IStreamBufferSink2","features":[430]},{"name":"IStreamBufferSink3","features":[430]},{"name":"IStreamBufferSource","features":[430]},{"name":"ITSDT","features":[430]},{"name":"ITuneRequest","features":[430,356]},{"name":"ITuneRequestInfo","features":[430]},{"name":"ITuneRequestInfoEx","features":[430]},{"name":"ITuner","features":[430]},{"name":"ITunerCap","features":[430]},{"name":"ITunerCapEx","features":[430]},{"name":"ITuningSpace","features":[430,356]},{"name":"ITuningSpaceContainer","features":[430,356]},{"name":"ITuningSpaces","features":[430,356]},{"name":"IXDSCodec","features":[430]},{"name":"IXDSCodecConfig","features":[430]},{"name":"IXDSCodecEvents","features":[430,356]},{"name":"IXDSToRat","features":[430,356]},{"name":"KSCATEGORY_BDA_IP_SINK","features":[430]},{"name":"KSCATEGORY_BDA_NETWORK_EPG","features":[430]},{"name":"KSCATEGORY_BDA_NETWORK_PROVIDER","features":[430]},{"name":"KSCATEGORY_BDA_NETWORK_TUNER","features":[430]},{"name":"KSCATEGORY_BDA_RECEIVER_COMPONENT","features":[430]},{"name":"KSCATEGORY_BDA_TRANSPORT_INFORMATION","features":[430]},{"name":"KSDATAFORMAT_SPECIFIER_BDA_IP","features":[430]},{"name":"KSDATAFORMAT_SPECIFIER_BDA_TRANSPORT","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_ATSC_SI","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_IP","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_IP_CONTROL","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_MPEG2_TRANSPORT","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_OPENCABLE_OOB_PSIP","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_BDA_OPENCABLE_PSIP","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_DVB_SI","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_ISDB_SI","features":[430]},{"name":"KSDATAFORMAT_SUBTYPE_PBDA_TRANSPORT_RAW","features":[430]},{"name":"KSDATAFORMAT_TYPE_BDA_ANTENNA","features":[430]},{"name":"KSDATAFORMAT_TYPE_BDA_IF_SIGNAL","features":[430]},{"name":"KSDATAFORMAT_TYPE_BDA_IP","features":[430]},{"name":"KSDATAFORMAT_TYPE_BDA_IP_CONTROL","features":[430]},{"name":"KSDATAFORMAT_TYPE_MPE","features":[430]},{"name":"KSDATAFORMAT_TYPE_MPEG2_SECTIONS","features":[430]},{"name":"KSEVENTDATA_BDA_RF_TUNER_SCAN_S","features":[305,430,431]},{"name":"KSEVENTSETID_BdaCAEvent","features":[430]},{"name":"KSEVENTSETID_BdaDiseqCEvent","features":[430]},{"name":"KSEVENTSETID_BdaEvent","features":[430]},{"name":"KSEVENTSETID_BdaPinEvent","features":[430]},{"name":"KSEVENTSETID_BdaTunerEvent","features":[430]},{"name":"KSEVENT_BDA_CA_MODULE_STATUS_CHANGED","features":[430]},{"name":"KSEVENT_BDA_CA_MODULE_UI_REQUESTED","features":[430]},{"name":"KSEVENT_BDA_CA_SMART_CARD_STATUS_CHANGED","features":[430]},{"name":"KSEVENT_BDA_DISEQC_DATA_RECEIVED","features":[430]},{"name":"KSEVENT_BDA_EVENT_PENDINGEVENT","features":[430]},{"name":"KSEVENT_BDA_EVENT_TYPE","features":[430]},{"name":"KSEVENT_BDA_PIN_CONNECTED","features":[430]},{"name":"KSEVENT_BDA_PIN_DISCONNECTED","features":[430]},{"name":"KSEVENT_BDA_PROGRAM_FLOW_STATUS_CHANGED","features":[430]},{"name":"KSEVENT_BDA_TUNER","features":[430]},{"name":"KSEVENT_BDA_TUNER_SCAN","features":[430]},{"name":"KSMETHODSETID_BdaChangeSync","features":[430]},{"name":"KSMETHODSETID_BdaConditionalAccessService","features":[430]},{"name":"KSMETHODSETID_BdaDebug","features":[430]},{"name":"KSMETHODSETID_BdaDeviceConfiguration","features":[430]},{"name":"KSMETHODSETID_BdaDrmService","features":[430]},{"name":"KSMETHODSETID_BdaEventing","features":[430]},{"name":"KSMETHODSETID_BdaGuideDataDeliveryService","features":[430]},{"name":"KSMETHODSETID_BdaIsdbConditionalAccess","features":[430]},{"name":"KSMETHODSETID_BdaMux","features":[430]},{"name":"KSMETHODSETID_BdaNameValue","features":[430]},{"name":"KSMETHODSETID_BdaNameValueA","features":[430]},{"name":"KSMETHODSETID_BdaScanning","features":[430]},{"name":"KSMETHODSETID_BdaTSSelector","features":[430]},{"name":"KSMETHODSETID_BdaTuner","features":[430]},{"name":"KSMETHODSETID_BdaUserActivity","features":[430]},{"name":"KSMETHODSETID_BdaWmdrmSession","features":[430]},{"name":"KSMETHODSETID_BdaWmdrmTuner","features":[430]},{"name":"KSMETHOD_BDA_CAS_CHECKENTITLEMENTTOKEN","features":[430]},{"name":"KSMETHOD_BDA_CAS_CLOSEMMIDIALOG","features":[430]},{"name":"KSMETHOD_BDA_CAS_OPENBROADCASTMMI","features":[430]},{"name":"KSMETHOD_BDA_CAS_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_CAS_SETCAPTURETOKEN","features":[430]},{"name":"KSMETHOD_BDA_CHANGE_SYNC","features":[430]},{"name":"KSMETHOD_BDA_CHECK_CHANGES","features":[430]},{"name":"KSMETHOD_BDA_COMMIT_CHANGES","features":[430]},{"name":"KSMETHOD_BDA_CREATE_PIN_FACTORY","features":[430]},{"name":"KSMETHOD_BDA_CREATE_TOPOLOGY","features":[430]},{"name":"KSMETHOD_BDA_DEBUG_DATA","features":[430]},{"name":"KSMETHOD_BDA_DEBUG_LEVEL","features":[430]},{"name":"KSMETHOD_BDA_DEBUG_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_DELETE_PIN_FACTORY","features":[430]},{"name":"KSMETHOD_BDA_DEVICE_CONFIGURATION","features":[430]},{"name":"KSMETHOD_BDA_DRM","features":[430]},{"name":"KSMETHOD_BDA_DRM_CURRENT","features":[430]},{"name":"KSMETHOD_BDA_DRM_DRMSTATUS","features":[430]},{"name":"KSMETHOD_BDA_EVENTING_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_EVENT_COMPLETE","features":[430]},{"name":"KSMETHOD_BDA_EVENT_DATA","features":[430]},{"name":"KSMETHOD_BDA_GDDS_DATA","features":[430]},{"name":"KSMETHOD_BDA_GDDS_DATATYPE","features":[430]},{"name":"KSMETHOD_BDA_GDDS_DATAUPDATE","features":[430]},{"name":"KSMETHOD_BDA_GDDS_GETSERVICES","features":[430]},{"name":"KSMETHOD_BDA_GDDS_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_GDDS_SERVICEFROMTUNEXML","features":[430]},{"name":"KSMETHOD_BDA_GDDS_TUNEXMLFROMIDX","features":[430]},{"name":"KSMETHOD_BDA_GET_CHANGE_STATE","features":[430]},{"name":"KSMETHOD_BDA_GPNV_GETVALUE","features":[430]},{"name":"KSMETHOD_BDA_GPNV_GETVALUEUPDATENAME","features":[430]},{"name":"KSMETHOD_BDA_GPNV_NAMEFROMINDEX","features":[430]},{"name":"KSMETHOD_BDA_GPNV_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_GPNV_SETVALUE","features":[430]},{"name":"KSMETHOD_BDA_ISDBCAS_RESPONSEDATA","features":[430]},{"name":"KSMETHOD_BDA_ISDBCAS_SETREQUEST","features":[430]},{"name":"KSMETHOD_BDA_ISDB_CAS","features":[430]},{"name":"KSMETHOD_BDA_MUX_GETPIDLIST","features":[430]},{"name":"KSMETHOD_BDA_MUX_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_MUX_SETPIDLIST","features":[430]},{"name":"KSMETHOD_BDA_SCANNING_STATE","features":[430]},{"name":"KSMETHOD_BDA_SCAN_CAPABILTIES","features":[430]},{"name":"KSMETHOD_BDA_SCAN_FILTER","features":[430]},{"name":"KSMETHOD_BDA_SCAN_RESUME","features":[430]},{"name":"KSMETHOD_BDA_SCAN_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_SCAN_START","features":[430]},{"name":"KSMETHOD_BDA_SCAN_STOP","features":[430]},{"name":"KSMETHOD_BDA_START_CHANGES","features":[430]},{"name":"KSMETHOD_BDA_TS_SELECTOR","features":[430]},{"name":"KSMETHOD_BDA_TS_SELECTOR_GETTSINFORMATION","features":[430]},{"name":"KSMETHOD_BDA_TS_SELECTOR_SETTSID","features":[430]},{"name":"KSMETHOD_BDA_TUNER_GETTUNERSTATE","features":[430]},{"name":"KSMETHOD_BDA_TUNER_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_TUNER_SETTUNER","features":[430]},{"name":"KSMETHOD_BDA_TUNER_SIGNALNOISERATIO","features":[430]},{"name":"KSMETHOD_BDA_USERACTIVITY_DETECTED","features":[430]},{"name":"KSMETHOD_BDA_USERACTIVITY_INTERVAL","features":[430]},{"name":"KSMETHOD_BDA_USERACTIVITY_SERVICE","features":[430]},{"name":"KSMETHOD_BDA_USERACTIVITY_USEREASON","features":[430]},{"name":"KSMETHOD_BDA_WMDRM","features":[430]},{"name":"KSMETHOD_BDA_WMDRMTUNER_CANCELCAPTURETOKEN","features":[430]},{"name":"KSMETHOD_BDA_WMDRMTUNER_GETPIDPROTECTION","features":[430]},{"name":"KSMETHOD_BDA_WMDRMTUNER_PURCHASE_ENTITLEMENT","features":[430]},{"name":"KSMETHOD_BDA_WMDRMTUNER_SETPIDPROTECTION","features":[430]},{"name":"KSMETHOD_BDA_WMDRMTUNER_SETSYNCVALUE","features":[430]},{"name":"KSMETHOD_BDA_WMDRMTUNER_STARTCODEPROFILE","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_CRL","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_KEYINFO","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_LICENSE","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_MESSAGE","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_REISSUELICENSE","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_RENEWLICENSE","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_REVINFO","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_STATUS","features":[430]},{"name":"KSMETHOD_BDA_WMDRM_TUNER","features":[430]},{"name":"KSM_BDA_BUFFER","features":[430,431]},{"name":"KSM_BDA_CAS_CAPTURETOKEN","features":[430,431]},{"name":"KSM_BDA_CAS_CLOSEMMIDIALOG","features":[430,431]},{"name":"KSM_BDA_CAS_ENTITLEMENTTOKEN","features":[430,431]},{"name":"KSM_BDA_CAS_OPENBROADCASTMMI","features":[430,431]},{"name":"KSM_BDA_DEBUG_LEVEL","features":[430,431]},{"name":"KSM_BDA_DRM_SETDRM","features":[430,431]},{"name":"KSM_BDA_EVENT_COMPLETE","features":[430,431]},{"name":"KSM_BDA_GDDS_SERVICEFROMTUNEXML","features":[430,431]},{"name":"KSM_BDA_GDDS_TUNEXMLFROMIDX","features":[430,431]},{"name":"KSM_BDA_GPNV_GETVALUE","features":[430,431]},{"name":"KSM_BDA_GPNV_NAMEINDEX","features":[430,431]},{"name":"KSM_BDA_GPNV_SETVALUE","features":[430,431]},{"name":"KSM_BDA_ISDBCAS_REQUEST","features":[430,431]},{"name":"KSM_BDA_PIN","features":[430,431]},{"name":"KSM_BDA_PIN_PAIR","features":[430,431]},{"name":"KSM_BDA_SCAN_CAPABILTIES","features":[430,431]},{"name":"KSM_BDA_SCAN_FILTER","features":[430,431]},{"name":"KSM_BDA_SCAN_START","features":[430,431]},{"name":"KSM_BDA_TS_SELECTOR_SETTSID","features":[430,431]},{"name":"KSM_BDA_TUNER_TUNEREQUEST","features":[430,431]},{"name":"KSM_BDA_USERACTIVITY_USEREASON","features":[430,431]},{"name":"KSM_BDA_WMDRMTUNER_GETPIDPROTECTION","features":[430,431]},{"name":"KSM_BDA_WMDRMTUNER_PURCHASEENTITLEMENT","features":[430,431]},{"name":"KSM_BDA_WMDRMTUNER_SETPIDPROTECTION","features":[430,431]},{"name":"KSM_BDA_WMDRMTUNER_SYNCVALUE","features":[430,431]},{"name":"KSM_BDA_WMDRM_LICENSE","features":[430,431]},{"name":"KSM_BDA_WMDRM_RENEWLICENSE","features":[430,431]},{"name":"KSNODE_BDA_8PSK_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_8VSB_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_ANALOG_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_COFDM_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_COMMON_CA_POD","features":[430]},{"name":"KSNODE_BDA_DRI_DRM","features":[430]},{"name":"KSNODE_BDA_IP_SINK","features":[430]},{"name":"KSNODE_BDA_ISDB_S_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_ISDB_T_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_OPENCABLE_POD","features":[430]},{"name":"KSNODE_BDA_PBDA_CAS","features":[430]},{"name":"KSNODE_BDA_PBDA_DRM","features":[430]},{"name":"KSNODE_BDA_PBDA_ISDBCAS","features":[430]},{"name":"KSNODE_BDA_PBDA_MUX","features":[430]},{"name":"KSNODE_BDA_PBDA_TUNER","features":[430]},{"name":"KSNODE_BDA_PID_FILTER","features":[430]},{"name":"KSNODE_BDA_QAM_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_QPSK_DEMODULATOR","features":[430]},{"name":"KSNODE_BDA_RF_TUNER","features":[430]},{"name":"KSNODE_BDA_TS_SELECTOR","features":[430]},{"name":"KSNODE_BDA_VIDEO_ENCODER","features":[430]},{"name":"KSPROPERTY_BDA_AUTODEMODULATE","features":[430]},{"name":"KSPROPERTY_BDA_AUTODEMODULATE_START","features":[430]},{"name":"KSPROPERTY_BDA_AUTODEMODULATE_STOP","features":[430]},{"name":"KSPROPERTY_BDA_CA","features":[430]},{"name":"KSPROPERTY_BDA_CA_EVENT","features":[430]},{"name":"KSPROPERTY_BDA_CA_MODULE_STATUS","features":[430]},{"name":"KSPROPERTY_BDA_CA_MODULE_UI","features":[430]},{"name":"KSPROPERTY_BDA_CA_REMOVE_PROGRAM","features":[430]},{"name":"KSPROPERTY_BDA_CA_SET_PROGRAM_PIDS","features":[430]},{"name":"KSPROPERTY_BDA_CA_SMART_CARD_STATUS","features":[430]},{"name":"KSPROPERTY_BDA_CONTROLLING_PIN_ID","features":[430]},{"name":"KSPROPERTY_BDA_DIGITAL_DEMODULATOR","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_COMMAND","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_ENABLE","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_EVENT","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_LNB_SOURCE","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_REPEATS","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_RESPONSE","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_SEND","features":[430]},{"name":"KSPROPERTY_BDA_DISEQC_USETONEBURST","features":[430]},{"name":"KSPROPERTY_BDA_ECM_MAP_STATUS","features":[430]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER","features":[430]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER_MULTICAST_LIST","features":[430]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER_MULTICAST_LIST_SIZE","features":[430]},{"name":"KSPROPERTY_BDA_ETHERNET_FILTER_MULTICAST_MODE","features":[430]},{"name":"KSPROPERTY_BDA_FREQUENCY_FILTER","features":[430]},{"name":"KSPROPERTY_BDA_GUARD_INTERVAL","features":[430]},{"name":"KSPROPERTY_BDA_INNER_FEC_RATE","features":[430]},{"name":"KSPROPERTY_BDA_INNER_FEC_TYPE","features":[430]},{"name":"KSPROPERTY_BDA_IPv4_FILTER","features":[430]},{"name":"KSPROPERTY_BDA_IPv4_FILTER_MULTICAST_LIST","features":[430]},{"name":"KSPROPERTY_BDA_IPv4_FILTER_MULTICAST_LIST_SIZE","features":[430]},{"name":"KSPROPERTY_BDA_IPv4_FILTER_MULTICAST_MODE","features":[430]},{"name":"KSPROPERTY_BDA_IPv6_FILTER","features":[430]},{"name":"KSPROPERTY_BDA_IPv6_FILTER_MULTICAST_LIST","features":[430]},{"name":"KSPROPERTY_BDA_IPv6_FILTER_MULTICAST_LIST_SIZE","features":[430]},{"name":"KSPROPERTY_BDA_IPv6_FILTER_MULTICAST_MODE","features":[430]},{"name":"KSPROPERTY_BDA_LNB_INFO","features":[430]},{"name":"KSPROPERTY_BDA_LNB_LOF_HIGH_BAND","features":[430]},{"name":"KSPROPERTY_BDA_LNB_LOF_LOW_BAND","features":[430]},{"name":"KSPROPERTY_BDA_LNB_SWITCH_FREQUENCY","features":[430]},{"name":"KSPROPERTY_BDA_MODULATION_TYPE","features":[430]},{"name":"KSPROPERTY_BDA_NODE_DESCRIPTORS","features":[430]},{"name":"KSPROPERTY_BDA_NODE_EVENTS","features":[430]},{"name":"KSPROPERTY_BDA_NODE_METHODS","features":[430]},{"name":"KSPROPERTY_BDA_NODE_PROPERTIES","features":[430]},{"name":"KSPROPERTY_BDA_NODE_TYPES","features":[430]},{"name":"KSPROPERTY_BDA_NULL_TRANSFORM","features":[430]},{"name":"KSPROPERTY_BDA_NULL_TRANSFORM_START","features":[430]},{"name":"KSPROPERTY_BDA_NULL_TRANSFORM_STOP","features":[430]},{"name":"KSPROPERTY_BDA_OUTER_FEC_RATE","features":[430]},{"name":"KSPROPERTY_BDA_OUTER_FEC_TYPE","features":[430]},{"name":"KSPROPERTY_BDA_PIDFILTER","features":[430]},{"name":"KSPROPERTY_BDA_PIDFILTER_LIST_PIDS","features":[430]},{"name":"KSPROPERTY_BDA_PIDFILTER_MAP_PIDS","features":[430]},{"name":"KSPROPERTY_BDA_PIDFILTER_UNMAP_PIDS","features":[430]},{"name":"KSPROPERTY_BDA_PILOT","features":[430]},{"name":"KSPROPERTY_BDA_PIN_CONTROL","features":[430]},{"name":"KSPROPERTY_BDA_PIN_EVENT","features":[430]},{"name":"KSPROPERTY_BDA_PIN_ID","features":[430]},{"name":"KSPROPERTY_BDA_PIN_TYPE","features":[430]},{"name":"KSPROPERTY_BDA_PIN_TYPES","features":[430]},{"name":"KSPROPERTY_BDA_PLP_NUMBER","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_BANDWIDTH","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_CAPS","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_CAPS_S","features":[430,431]},{"name":"KSPROPERTY_BDA_RF_TUNER_FREQUENCY","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_FREQUENCY_MULTIPLIER","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_POLARITY","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_RANGE","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_SCAN_STATUS","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_SCAN_STATUS_S","features":[430,431]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD_MODE","features":[430]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD_MODE_S","features":[305,430,431]},{"name":"KSPROPERTY_BDA_RF_TUNER_STANDARD_S","features":[430,431]},{"name":"KSPROPERTY_BDA_RF_TUNER_TRANSPONDER","features":[430]},{"name":"KSPROPERTY_BDA_ROLL_OFF","features":[430]},{"name":"KSPROPERTY_BDA_SAMPLE_TIME","features":[430]},{"name":"KSPROPERTY_BDA_SIGNALTIMEOUTS","features":[430]},{"name":"KSPROPERTY_BDA_SIGNAL_LOCKED","features":[430]},{"name":"KSPROPERTY_BDA_SIGNAL_LOCK_CAPS","features":[430]},{"name":"KSPROPERTY_BDA_SIGNAL_LOCK_TYPE","features":[430]},{"name":"KSPROPERTY_BDA_SIGNAL_PRESENT","features":[430]},{"name":"KSPROPERTY_BDA_SIGNAL_QUALITY","features":[430]},{"name":"KSPROPERTY_BDA_SIGNAL_STATS","features":[430]},{"name":"KSPROPERTY_BDA_SIGNAL_STRENGTH","features":[430]},{"name":"KSPROPERTY_BDA_SPECTRAL_INVERSION","features":[430]},{"name":"KSPROPERTY_BDA_SYMBOL_RATE","features":[430]},{"name":"KSPROPERTY_BDA_TABLE_SECTION","features":[430]},{"name":"KSPROPERTY_BDA_TEMPLATE_CONNECTIONS","features":[430]},{"name":"KSPROPERTY_BDA_TOPOLOGY","features":[430]},{"name":"KSPROPERTY_BDA_TRANSMISSION_MODE","features":[430]},{"name":"KSPROPERTY_BDA_VOID_TRANSFORM","features":[430]},{"name":"KSPROPERTY_BDA_VOID_TRANSFORM_START","features":[430]},{"name":"KSPROPERTY_BDA_VOID_TRANSFORM_STOP","features":[430]},{"name":"KSPROPERTY_IDS_BDA_TABLE","features":[430]},{"name":"KSPROPSETID_BdaAutodemodulate","features":[430]},{"name":"KSPROPSETID_BdaCA","features":[430]},{"name":"KSPROPSETID_BdaDigitalDemodulator","features":[430]},{"name":"KSPROPSETID_BdaDiseqCommand","features":[430]},{"name":"KSPROPSETID_BdaEthernetFilter","features":[430]},{"name":"KSPROPSETID_BdaFrequencyFilter","features":[430]},{"name":"KSPROPSETID_BdaIPv4Filter","features":[430]},{"name":"KSPROPSETID_BdaIPv6Filter","features":[430]},{"name":"KSPROPSETID_BdaLNBInfo","features":[430]},{"name":"KSPROPSETID_BdaNullTransform","features":[430]},{"name":"KSPROPSETID_BdaPIDFilter","features":[430]},{"name":"KSPROPSETID_BdaPinControl","features":[430]},{"name":"KSPROPSETID_BdaSignalStats","features":[430]},{"name":"KSPROPSETID_BdaTableSection","features":[430]},{"name":"KSPROPSETID_BdaTopology","features":[430]},{"name":"KSPROPSETID_BdaVoidTransform","features":[430]},{"name":"KSP_BDA_NODE_PIN","features":[430,431]},{"name":"KSP_NODE_ESPID","features":[430,431]},{"name":"KS_DATARANGE_BDA_ANTENNA","features":[430,431]},{"name":"KS_DATARANGE_BDA_TRANSPORT","features":[430,431]},{"name":"LIC_BadLicense","features":[430]},{"name":"LIC_Expired","features":[430]},{"name":"LIC_ExtenderBlocked","features":[430]},{"name":"LIC_NeedActivation","features":[430]},{"name":"LIC_NeedIndiv","features":[430]},{"name":"LONG_SECTION","features":[430]},{"name":"LanguageComponentType","features":[430]},{"name":"LanguageInfo","features":[430]},{"name":"LastReservedDeviceDispid","features":[430]},{"name":"LastReservedDeviceEvent","features":[430]},{"name":"LicenseEventBlockReason","features":[430]},{"name":"Locator","features":[430]},{"name":"MAX_COUNTRY_CODE_STRING","features":[430]},{"name":"MEDIASUBTYPE_CPFilters_Processed","features":[430]},{"name":"MEDIASUBTYPE_ETDTFilter_Tagged","features":[430]},{"name":"MPAA","features":[430]},{"name":"MPAA_G","features":[430]},{"name":"MPAA_IsBlocked","features":[430]},{"name":"MPAA_NC17","features":[430]},{"name":"MPAA_NotApplicable","features":[430]},{"name":"MPAA_NotRated","features":[430]},{"name":"MPAA_PG","features":[430]},{"name":"MPAA_PG13","features":[430]},{"name":"MPAA_R","features":[430]},{"name":"MPAA_ValidAttrSubmask","features":[430]},{"name":"MPAA_X","features":[430]},{"name":"MPEG2Component","features":[430]},{"name":"MPEG2ComponentType","features":[430]},{"name":"MPEG2TuneRequest","features":[430]},{"name":"MPEG2TuneRequestFactory","features":[430]},{"name":"MPEG2_FILTER","features":[305,430]},{"name":"MPEG2_FILTER2","features":[305,430]},{"name":"MPEG2_FILTER_VERSION_1_SIZE","features":[430]},{"name":"MPEG2_FILTER_VERSION_2_SIZE","features":[430]},{"name":"MPEG_BCS_DEMUX","features":[430]},{"name":"MPEG_CAT_PID","features":[430]},{"name":"MPEG_CAT_TID","features":[430]},{"name":"MPEG_CONTEXT","features":[430]},{"name":"MPEG_CONTEXT_BCS_DEMUX","features":[430]},{"name":"MPEG_CONTEXT_TYPE","features":[430]},{"name":"MPEG_CONTEXT_WINSOCK","features":[430]},{"name":"MPEG_CURRENT_NEXT_BIT","features":[430]},{"name":"MPEG_DATE","features":[430]},{"name":"MPEG_DATE_AND_TIME","features":[430]},{"name":"MPEG_HEADER_BITS","features":[430]},{"name":"MPEG_HEADER_BITS_MIDL","features":[430]},{"name":"MPEG_HEADER_VERSION_BITS","features":[430]},{"name":"MPEG_HEADER_VERSION_BITS_MIDL","features":[430]},{"name":"MPEG_PACKET_LIST","features":[430]},{"name":"MPEG_PAT_PID","features":[430]},{"name":"MPEG_PAT_TID","features":[430]},{"name":"MPEG_PMT_TID","features":[430]},{"name":"MPEG_REQUEST_TYPE","features":[430]},{"name":"MPEG_RQST_GET_PES_STREAM","features":[430]},{"name":"MPEG_RQST_GET_SECTION","features":[430]},{"name":"MPEG_RQST_GET_SECTIONS_STREAM","features":[430]},{"name":"MPEG_RQST_GET_SECTION_ASYNC","features":[430]},{"name":"MPEG_RQST_GET_TABLE","features":[430]},{"name":"MPEG_RQST_GET_TABLE_ASYNC","features":[430]},{"name":"MPEG_RQST_GET_TS_STREAM","features":[430]},{"name":"MPEG_RQST_PACKET","features":[430]},{"name":"MPEG_RQST_START_MPE_STREAM","features":[430]},{"name":"MPEG_RQST_UNKNOWN","features":[430]},{"name":"MPEG_SECTION_IS_CURRENT","features":[430]},{"name":"MPEG_SECTION_IS_NEXT","features":[430]},{"name":"MPEG_SERVICE_REQUEST","features":[305,430]},{"name":"MPEG_SERVICE_RESPONSE","features":[430]},{"name":"MPEG_STREAM_BUFFER","features":[430]},{"name":"MPEG_STREAM_FILTER","features":[305,430]},{"name":"MPEG_TIME","features":[430]},{"name":"MPEG_TSDT_PID","features":[430]},{"name":"MPEG_TSDT_TID","features":[430]},{"name":"MPEG_WINSOCK","features":[430]},{"name":"MPE_ELEMENT","features":[430]},{"name":"MSEventBinder","features":[430]},{"name":"MSVIDCTL_ALT","features":[430]},{"name":"MSVIDCTL_CTRL","features":[430]},{"name":"MSVIDCTL_LEFT_BUTTON","features":[430]},{"name":"MSVIDCTL_MIDDLE_BUTTON","features":[430]},{"name":"MSVIDCTL_RIGHT_BUTTON","features":[430]},{"name":"MSVIDCTL_SHIFT","features":[430]},{"name":"MSVIDCTL_X_BUTTON1","features":[430]},{"name":"MSVIDCTL_X_BUTTON2","features":[430]},{"name":"MSVidAnalogCaptureToCCA","features":[430]},{"name":"MSVidAnalogCaptureToDataServices","features":[430]},{"name":"MSVidAnalogCaptureToOverlayMixer","features":[430]},{"name":"MSVidAnalogCaptureToStreamBufferSink","features":[430]},{"name":"MSVidAnalogCaptureToXDS","features":[430]},{"name":"MSVidAnalogTVToEncoder","features":[430]},{"name":"MSVidAnalogTunerDevice","features":[430]},{"name":"MSVidAudioRenderer","features":[430]},{"name":"MSVidAudioRendererDevices","features":[430]},{"name":"MSVidBDATunerDevice","features":[430]},{"name":"MSVidCCA","features":[430]},{"name":"MSVidCCAToStreamBufferSink","features":[430]},{"name":"MSVidCCService","features":[430]},{"name":"MSVidCCToAR","features":[430]},{"name":"MSVidCCToVMR","features":[430]},{"name":"MSVidClosedCaptioning","features":[430]},{"name":"MSVidClosedCaptioningSI","features":[430]},{"name":"MSVidCtl","features":[430]},{"name":"MSVidCtlButtonstate","features":[430]},{"name":"MSVidCtlStateList","features":[430]},{"name":"MSVidDataServices","features":[430]},{"name":"MSVidDataServicesToStreamBufferSink","features":[430]},{"name":"MSVidDataServicesToXDS","features":[430]},{"name":"MSVidDevice","features":[430]},{"name":"MSVidDevice2","features":[430]},{"name":"MSVidDigitalCaptureToCCA","features":[430]},{"name":"MSVidDigitalCaptureToITV","features":[430]},{"name":"MSVidDigitalCaptureToStreamBufferSink","features":[430]},{"name":"MSVidEVR","features":[430]},{"name":"MSVidEncoder","features":[430]},{"name":"MSVidEncoderToStreamBufferSink","features":[430]},{"name":"MSVidFeature","features":[430]},{"name":"MSVidFeatures","features":[430]},{"name":"MSVidFilePlaybackDevice","features":[430]},{"name":"MSVidFilePlaybackToAudioRenderer","features":[430]},{"name":"MSVidFilePlaybackToVideoRenderer","features":[430]},{"name":"MSVidGenericComposite","features":[430]},{"name":"MSVidGenericSink","features":[430]},{"name":"MSVidITVCapture","features":[430]},{"name":"MSVidITVPlayback","features":[430]},{"name":"MSVidITVToStreamBufferSink","features":[430]},{"name":"MSVidInputDevice","features":[430]},{"name":"MSVidInputDevices","features":[430]},{"name":"MSVidMPEG2DecoderToClosedCaptioning","features":[430]},{"name":"MSVidOutput","features":[430]},{"name":"MSVidOutputDevices","features":[430]},{"name":"MSVidRect","features":[430]},{"name":"MSVidSBESourceToCC","features":[430]},{"name":"MSVidSBESourceToGenericSink","features":[430]},{"name":"MSVidSBESourceToITV","features":[430]},{"name":"MSVidSEG_DEST","features":[430]},{"name":"MSVidSEG_SOURCE","features":[430]},{"name":"MSVidSEG_XFORM","features":[430]},{"name":"MSVidSegmentType","features":[430]},{"name":"MSVidSinkStreams","features":[430]},{"name":"MSVidSink_Audio","features":[430]},{"name":"MSVidSink_Other","features":[430]},{"name":"MSVidSink_Video","features":[430]},{"name":"MSVidStreamBufferRecordingControl","features":[430]},{"name":"MSVidStreamBufferSink","features":[430]},{"name":"MSVidStreamBufferSource","features":[430]},{"name":"MSVidStreamBufferSourceToVideoRenderer","features":[430]},{"name":"MSVidStreamBufferV2Source","features":[430]},{"name":"MSVidVMR9","features":[430]},{"name":"MSVidVideoInputDevice","features":[430]},{"name":"MSVidVideoPlaybackDevice","features":[430]},{"name":"MSVidVideoRenderer","features":[430]},{"name":"MSVidVideoRendererDevices","features":[430]},{"name":"MSVidWebDVD","features":[430]},{"name":"MSVidWebDVDAdm","features":[430]},{"name":"MSVidWebDVDToAudioRenderer","features":[430]},{"name":"MSVidWebDVDToVideoRenderer","features":[430]},{"name":"MSVidXDS","features":[430]},{"name":"MSViddispidList","features":[430]},{"name":"Mpeg2Data","features":[430]},{"name":"Mpeg2DataLib","features":[430]},{"name":"Mpeg2Stream","features":[430]},{"name":"Mpeg2TableSampleHdr","features":[430]},{"name":"OCUR_PAIRING_PROTOCOL_VERSION","features":[430]},{"name":"PARENTAL_CONTROL_ATTRIB_DIALOGUE","features":[430]},{"name":"PARENTAL_CONTROL_ATTRIB_FANTASY","features":[430]},{"name":"PARENTAL_CONTROL_ATTRIB_LANGUAGE","features":[430]},{"name":"PARENTAL_CONTROL_ATTRIB_SEXUAL","features":[430]},{"name":"PARENTAL_CONTROL_ATTRIB_VIOLENCE","features":[430]},{"name":"PARENTAL_CONTROL_CONTENT_RATING","features":[430]},{"name":"PARENTAL_CONTROL_TIME_RANGE","features":[430]},{"name":"PARENTAL_CONTROL_VALUE_UNDEFINED","features":[430]},{"name":"PBDA","features":[430]},{"name":"PBDAParentalControl","features":[430]},{"name":"PBDA_ALWAYS_TUNE_IN_MUX","features":[430]},{"name":"PBDA_PAIRING_PROTOCOL_VERSION","features":[430]},{"name":"PBDA_TAG_ATTRIBUTE","features":[430]},{"name":"PIC_SEQ_SAMPLE","features":[430]},{"name":"PIDListSpanningEvent","features":[430]},{"name":"PID_BITS","features":[430]},{"name":"PID_BITS_MIDL","features":[430]},{"name":"PINNAME_BDA_ANALOG_AUDIO","features":[430]},{"name":"PINNAME_BDA_ANALOG_VIDEO","features":[430]},{"name":"PINNAME_BDA_FM_RADIO","features":[430]},{"name":"PINNAME_BDA_IF_PIN","features":[430]},{"name":"PINNAME_BDA_OPENCABLE_PSIP_PIN","features":[430]},{"name":"PINNAME_BDA_TRANSPORT","features":[430]},{"name":"PINNAME_IPSINK_INPUT","features":[430]},{"name":"PINNAME_MPE","features":[430]},{"name":"PROT_COPY_BF","features":[430]},{"name":"PROT_COPY_CN_RECORDING_STOP","features":[430]},{"name":"PROT_COPY_FREE","features":[430]},{"name":"PROT_COPY_FREE_CIT","features":[430]},{"name":"PROT_COPY_FREE_SECURE","features":[430]},{"name":"PROT_COPY_INVALID","features":[430]},{"name":"PROT_COPY_NEVER","features":[430]},{"name":"PROT_COPY_NEVER_REALLY","features":[430]},{"name":"PROT_COPY_NO_MORE","features":[430]},{"name":"PROT_COPY_ONCE","features":[430]},{"name":"PersistTuneXmlUtility","features":[430]},{"name":"PositionModeList","features":[430]},{"name":"ProgramElement","features":[430]},{"name":"ProtType","features":[430]},{"name":"RATING_ATTRIBUTE","features":[430]},{"name":"RATING_INFO","features":[430]},{"name":"RATING_SYSTEM","features":[430]},{"name":"RECORDING_STARTED","features":[430]},{"name":"RECORDING_STOPPED","features":[430]},{"name":"RECORDING_TYPE","features":[430]},{"name":"RECORDING_TYPE_CONTENT","features":[430]},{"name":"RECORDING_TYPE_REFERENCE","features":[430]},{"name":"REFERENCE","features":[430]},{"name":"REQUIRED_PARENTAL_CONTROL_TIME_RANGE","features":[430]},{"name":"REVOKED_APP_STUB","features":[430]},{"name":"REVOKED_COPP","features":[430]},{"name":"REVOKED_MAX_TYPES","features":[430]},{"name":"REVOKED_SAC","features":[430]},{"name":"REVOKED_SECURE_PIPELINE","features":[430]},{"name":"RecordingType","features":[430]},{"name":"Reserved4","features":[430]},{"name":"Reserved7","features":[430]},{"name":"RevokedComponent","features":[430]},{"name":"SAMPLE_LIVE_STREAM_TIME","features":[430]},{"name":"SAMPLE_SEQ_CONTENT_B_FRAME","features":[430]},{"name":"SAMPLE_SEQ_CONTENT_I_FRAME","features":[430]},{"name":"SAMPLE_SEQ_CONTENT_NONREF_FRAME","features":[430]},{"name":"SAMPLE_SEQ_CONTENT_P_FRAME","features":[430]},{"name":"SAMPLE_SEQ_CONTENT_REF_FRAME","features":[430]},{"name":"SAMPLE_SEQ_CONTENT_STANDALONE_FRAME","features":[430]},{"name":"SAMPLE_SEQ_CONTENT_UNKNOWN","features":[430]},{"name":"SAMPLE_SEQ_FRAME_START","features":[430]},{"name":"SAMPLE_SEQ_GOP_HEADER","features":[430]},{"name":"SAMPLE_SEQ_OFFSET","features":[430]},{"name":"SAMPLE_SEQ_PICTURE_HEADER","features":[430]},{"name":"SAMPLE_SEQ_SEEK_POINT","features":[430]},{"name":"SAMPLE_SEQ_SEQUENCE_HEADER","features":[430]},{"name":"SAMPLE_SEQ_SEQUENCE_START","features":[430]},{"name":"SBE2_STREAM_DESC","features":[430]},{"name":"SBE2_STREAM_DESC_EVENT","features":[430]},{"name":"SBE2_STREAM_DESC_VERSION","features":[430]},{"name":"SBE2_V1_STREAMS_CREATION_EVENT","features":[430]},{"name":"SBE2_V2_STREAMS_CREATION_EVENT","features":[430]},{"name":"SBE_PIN_DATA","features":[430]},{"name":"SCTE_EAS_IB_PID","features":[430]},{"name":"SCTE_EAS_OOB_PID","features":[430]},{"name":"SCTE_EAS_TID","features":[430]},{"name":"SECTION","features":[430]},{"name":"SID_DRMSecureServiceChannel","features":[430]},{"name":"SID_MSVidCtl_CurrentAudioEndpoint","features":[430]},{"name":"STATE_PAUSE","features":[430]},{"name":"STATE_PLAY","features":[430]},{"name":"STATE_STOP","features":[430]},{"name":"STATE_UNBUILT","features":[430]},{"name":"STRCONV_MODE_DVB","features":[430]},{"name":"STRCONV_MODE_DVB_EMPHASIS","features":[430]},{"name":"STRCONV_MODE_DVB_WITHOUT_EMPHASIS","features":[430]},{"name":"STRCONV_MODE_ISDB","features":[430]},{"name":"STREAMBUFFER_ATTRIBUTE","features":[430]},{"name":"STREAMBUFFER_ATTR_DATATYPE","features":[430]},{"name":"STREAMBUFFER_EC_BASE","features":[430]},{"name":"STREAMBUFFER_EC_CONTENT_BECOMING_STALE","features":[430]},{"name":"STREAMBUFFER_EC_PRIMARY_AUDIO","features":[430]},{"name":"STREAMBUFFER_EC_RATE_CHANGED","features":[430]},{"name":"STREAMBUFFER_EC_RATE_CHANGING_FOR_SETPOSITIONS","features":[430]},{"name":"STREAMBUFFER_EC_READ_FAILURE","features":[430]},{"name":"STREAMBUFFER_EC_SETPOSITIONS_EVENTS_DONE","features":[430]},{"name":"STREAMBUFFER_EC_STALE_DATA_READ","features":[430]},{"name":"STREAMBUFFER_EC_STALE_FILE_DELETED","features":[430]},{"name":"STREAMBUFFER_EC_TIMEHOLE","features":[430]},{"name":"STREAMBUFFER_EC_WRITE_FAILURE","features":[430]},{"name":"STREAMBUFFER_EC_WRITE_FAILURE_CLEAR","features":[430]},{"name":"STREAMBUFFER_TYPE_BINARY","features":[430]},{"name":"STREAMBUFFER_TYPE_BOOL","features":[430]},{"name":"STREAMBUFFER_TYPE_DWORD","features":[430]},{"name":"STREAMBUFFER_TYPE_GUID","features":[430]},{"name":"STREAMBUFFER_TYPE_QWORD","features":[430]},{"name":"STREAMBUFFER_TYPE_STRING","features":[430]},{"name":"STREAMBUFFER_TYPE_WORD","features":[430]},{"name":"SectionList","features":[430]},{"name":"SegDispidList","features":[430]},{"name":"SegEventidList","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_AllAVScrambled","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_Clear","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_NoSubscription","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_NoTVSignal","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_None","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_ServiceOffAir","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_State","features":[430]},{"name":"SignalAndServiceStatusSpanningEvent_WeakTVSignal","features":[430]},{"name":"SourceSizeList","features":[430]},{"name":"SpanningEventDescriptor","features":[430]},{"name":"SpanningEventEmmMessage","features":[430]},{"name":"System5","features":[430]},{"name":"System6","features":[430]},{"name":"SystemTuningSpaces","features":[430]},{"name":"TID_EXTENSION","features":[430]},{"name":"TIFLoad","features":[430]},{"name":"TRANSPORT_PROPERTIES","features":[430]},{"name":"TenthsSecondsMode","features":[430]},{"name":"TuneRequest","features":[430]},{"name":"TunerMarshaler","features":[430]},{"name":"TuningSpace","features":[430]},{"name":"TvRat_0","features":[430]},{"name":"TvRat_1","features":[430]},{"name":"TvRat_10","features":[430]},{"name":"TvRat_11","features":[430]},{"name":"TvRat_12","features":[430]},{"name":"TvRat_13","features":[430]},{"name":"TvRat_14","features":[430]},{"name":"TvRat_15","features":[430]},{"name":"TvRat_16","features":[430]},{"name":"TvRat_17","features":[430]},{"name":"TvRat_18","features":[430]},{"name":"TvRat_19","features":[430]},{"name":"TvRat_2","features":[430]},{"name":"TvRat_20","features":[430]},{"name":"TvRat_21","features":[430]},{"name":"TvRat_3","features":[430]},{"name":"TvRat_4","features":[430]},{"name":"TvRat_5","features":[430]},{"name":"TvRat_6","features":[430]},{"name":"TvRat_7","features":[430]},{"name":"TvRat_8","features":[430]},{"name":"TvRat_9","features":[430]},{"name":"TvRat_LevelDontKnow","features":[430]},{"name":"TvRat_SystemDontKnow","features":[430]},{"name":"TvRat_Unblock","features":[430]},{"name":"TvRat_kLevels","features":[430]},{"name":"TvRat_kSystems","features":[430]},{"name":"UDCR_TAG","features":[305,430]},{"name":"US_TV","features":[430]},{"name":"US_TV_14","features":[430]},{"name":"US_TV_G","features":[430]},{"name":"US_TV_IsAdultLanguage","features":[430]},{"name":"US_TV_IsBlocked","features":[430]},{"name":"US_TV_IsSexualSituation","features":[430]},{"name":"US_TV_IsSexuallySuggestiveDialog","features":[430]},{"name":"US_TV_IsViolent","features":[430]},{"name":"US_TV_MA","features":[430]},{"name":"US_TV_None","features":[430]},{"name":"US_TV_None7","features":[430]},{"name":"US_TV_PG","features":[430]},{"name":"US_TV_ValidAttrSubmask","features":[430]},{"name":"US_TV_Y","features":[430]},{"name":"US_TV_Y7","features":[430]},{"name":"VA_COLOR_PRIMARIES","features":[430]},{"name":"VA_MATRIX_COEFFICIENTS","features":[430]},{"name":"VA_MATRIX_COEFF_FCC","features":[430]},{"name":"VA_MATRIX_COEFF_H264_RGB","features":[430]},{"name":"VA_MATRIX_COEFF_H264_YCgCo","features":[430]},{"name":"VA_MATRIX_COEFF_ITU_R_BT_470_SYSTEM_B_G","features":[430]},{"name":"VA_MATRIX_COEFF_ITU_R_BT_709","features":[430]},{"name":"VA_MATRIX_COEFF_SMPTE_170M","features":[430]},{"name":"VA_MATRIX_COEFF_SMPTE_240M","features":[430]},{"name":"VA_MATRIX_COEFF_UNSPECIFIED","features":[430]},{"name":"VA_OPTIONAL_VIDEO_PROPERTIES","features":[430]},{"name":"VA_PRIMARIES_H264_GENERIC_FILM","features":[430]},{"name":"VA_PRIMARIES_ITU_R_BT_470_SYSTEM_B_G","features":[430]},{"name":"VA_PRIMARIES_ITU_R_BT_470_SYSTEM_M","features":[430]},{"name":"VA_PRIMARIES_ITU_R_BT_709","features":[430]},{"name":"VA_PRIMARIES_SMPTE_170M","features":[430]},{"name":"VA_PRIMARIES_SMPTE_240M","features":[430]},{"name":"VA_PRIMARIES_UNSPECIFIED","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_H264_LOG_100_TO_1","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_H264_LOG_316_TO_1","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_ITU_R_BT_470_SYSTEM_B_G","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_ITU_R_BT_470_SYSTEM_M","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_ITU_R_BT_709","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_LINEAR","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_SMPTE_170M","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_SMPTE_240M","features":[430]},{"name":"VA_TRANSFER_CHARACTERISTICS_UNSPECIFIED","features":[430]},{"name":"VA_VIDEO_COMPONENT","features":[430]},{"name":"VA_VIDEO_FORMAT","features":[430]},{"name":"VA_VIDEO_MAC","features":[430]},{"name":"VA_VIDEO_NTSC","features":[430]},{"name":"VA_VIDEO_PAL","features":[430]},{"name":"VA_VIDEO_SECAM","features":[430]},{"name":"VA_VIDEO_UNSPECIFIED","features":[430]},{"name":"WMDRMProtectionInfo","features":[430]},{"name":"XDSCodec","features":[430]},{"name":"XDSToRat","features":[430]},{"name":"_IMSVidCtlEvents","features":[430,356]},{"name":"dispidAVAudioChannelConfigEvent","features":[430]},{"name":"dispidAVAudioChannelCountEvent","features":[430]},{"name":"dispidAVAudioSampleRateEvent","features":[430]},{"name":"dispidAVDDSurroundModeEvent","features":[430]},{"name":"dispidAVDecAudioDualMonoEvent","features":[430]},{"name":"dispidAVDecCommonInputFormatEvent","features":[430]},{"name":"dispidAVDecCommonMeanBitRateEvent","features":[430]},{"name":"dispidAVDecCommonOutputFormatEvent","features":[430]},{"name":"dispidAllocPresentID","features":[430]},{"name":"dispidAlloctor","features":[430]},{"name":"dispidAudioRenderer","features":[430]},{"name":"dispidAudioRenderers","features":[430]},{"name":"dispidAuxInputs","features":[430]},{"name":"dispidAvailableSourceRect","features":[430]},{"name":"dispidBookmarkOnStop","features":[430]},{"name":"dispidBuild","features":[430]},{"name":"dispidCCEnable","features":[430]},{"name":"dispidCLSID","features":[430]},{"name":"dispidCapture","features":[430]},{"name":"dispidChangePassword","features":[430]},{"name":"dispidChannelAvailable","features":[430]},{"name":"dispidClip","features":[430]},{"name":"dispidClippedSourceRect","features":[430]},{"name":"dispidColorKey","features":[430]},{"name":"dispidConfirmPassword","features":[430]},{"name":"dispidCount","features":[430]},{"name":"dispidCustomCompositorClass","features":[430]},{"name":"dispidDecompose","features":[430]},{"name":"dispidDefaultAudioLCID","features":[430]},{"name":"dispidDefaultMenuLCID","features":[430]},{"name":"dispidDefaultSubpictureLCID","features":[430]},{"name":"dispidDevAudioFrequency","features":[430]},{"name":"dispidDevAudioSubchannel","features":[430]},{"name":"dispidDevBalance","features":[430]},{"name":"dispidDevCanStep","features":[430]},{"name":"dispidDevCountryCode","features":[430]},{"name":"dispidDevFileName","features":[430]},{"name":"dispidDevImageSourceHeight","features":[430]},{"name":"dispidDevImageSourceWidth","features":[430]},{"name":"dispidDevOverScan","features":[430]},{"name":"dispidDevPause","features":[430]},{"name":"dispidDevPower","features":[430]},{"name":"dispidDevRun","features":[430]},{"name":"dispidDevSAP","features":[430]},{"name":"dispidDevStep","features":[430]},{"name":"dispidDevStop","features":[430]},{"name":"dispidDevVideoFrequency","features":[430]},{"name":"dispidDevVideoSubchannel","features":[430]},{"name":"dispidDevView","features":[430]},{"name":"dispidDevVolume","features":[430]},{"name":"dispidDevicePath","features":[430]},{"name":"dispidDisableAudio","features":[430]},{"name":"dispidDisableVideo","features":[430]},{"name":"dispidDisplayChange","features":[430]},{"name":"dispidDisplaySize","features":[430]},{"name":"dispidFeatures","features":[430]},{"name":"dispidGetParentalCountry","features":[430]},{"name":"dispidGetParentalLevel","features":[430]},{"name":"dispidInput","features":[430]},{"name":"dispidInputs","features":[430]},{"name":"dispidKSCat","features":[430]},{"name":"dispidMaintainAspectRatio","features":[430]},{"name":"dispidMaxVidRect","features":[430]},{"name":"dispidMediaPosition","features":[430]},{"name":"dispidMessageDrain","features":[430]},{"name":"dispidMinVidRect","features":[430]},{"name":"dispidMixerBitmap","features":[430]},{"name":"dispidMixerBitmapOpacity","features":[430]},{"name":"dispidMixerBitmapRect","features":[430]},{"name":"dispidModes","features":[430]},{"name":"dispidName","features":[430]},{"name":"dispidNameSetLock","features":[430]},{"name":"dispidOutput","features":[430]},{"name":"dispidOutputs","features":[430]},{"name":"dispidOwner","features":[430]},{"name":"dispidPause","features":[430]},{"name":"dispidRateEx","features":[430]},{"name":"dispidRePaint","features":[430]},{"name":"dispidRecordingAttribute","features":[430]},{"name":"dispidRequestedClipRect","features":[430]},{"name":"dispidRun","features":[430]},{"name":"dispidSBEConfigure","features":[430]},{"name":"dispidSaveParentalCountry","features":[430]},{"name":"dispidSaveParentalLevel","features":[430]},{"name":"dispidSegment","features":[430]},{"name":"dispidSelectedFeatures","features":[430]},{"name":"dispidService","features":[430]},{"name":"dispidServiceP","features":[430]},{"name":"dispidSetAllocator","features":[430]},{"name":"dispidSetMinSeek","features":[430]},{"name":"dispidSetSinkFilter","features":[430]},{"name":"dispidSetupMixerBitmap","features":[430]},{"name":"dispidSourceSize","features":[430]},{"name":"dispidStateChange","features":[430]},{"name":"dispidStatus","features":[430]},{"name":"dispidStop","features":[430]},{"name":"dispidStreamBufferContentRecording","features":[430]},{"name":"dispidStreamBufferReferenceRecording","features":[430]},{"name":"dispidStreamBufferSinkName","features":[430]},{"name":"dispidStreamBufferSourceName","features":[430]},{"name":"dispidTS","features":[430]},{"name":"dispidTVFormats","features":[430]},{"name":"dispidTeleTextFilter","features":[430]},{"name":"dispidTune","features":[430]},{"name":"dispidTuneChan","features":[430]},{"name":"dispidUnlockProfile","features":[430]},{"name":"dispidUserEvent","features":[430]},{"name":"dispidUsingOverlay","features":[430]},{"name":"dispidVideoRenderer","features":[430]},{"name":"dispidVideoRenderers","features":[430]},{"name":"dispidView","features":[430]},{"name":"dispidViewNext","features":[430]},{"name":"dispidViewable","features":[430]},{"name":"dispidVisible","features":[430]},{"name":"dispid_AcceptParentalLevelChange","features":[430]},{"name":"dispid_ActivateAtPosition","features":[430]},{"name":"dispid_ActivateButton","features":[430]},{"name":"dispid_AddFilter","features":[430]},{"name":"dispid_Allocator","features":[430]},{"name":"dispid_AnglesAvailable","features":[430]},{"name":"dispid_AudioStreamsAvailable","features":[430]},{"name":"dispid_BlockUnrated","features":[430]},{"name":"dispid_Bookmark","features":[430]},{"name":"dispid_ButtonAtPosition","features":[430]},{"name":"dispid_ButtonRect","features":[430]},{"name":"dispid_CCActive","features":[430]},{"name":"dispid_CLSID","features":[430]},{"name":"dispid_CurrentAngle","features":[430]},{"name":"dispid_CurrentAudioStream","features":[430]},{"name":"dispid_CurrentCCService","features":[430]},{"name":"dispid_CurrentChapter","features":[430]},{"name":"dispid_CurrentDiscSide","features":[430]},{"name":"dispid_CurrentDomain","features":[430]},{"name":"dispid_CurrentRatings","features":[430]},{"name":"dispid_CurrentSubpictureStream","features":[430]},{"name":"dispid_CurrentTime","features":[430]},{"name":"dispid_CurrentTitle","features":[430]},{"name":"dispid_CurrentVolume","features":[430]},{"name":"dispid_CustomCompositor","features":[430]},{"name":"dispid_CustomCompositorClass","features":[430]},{"name":"dispid_DVDAdm","features":[430]},{"name":"dispid_DVDDirectory","features":[430]},{"name":"dispid_DVDScreenInMouseCoordinates","features":[430]},{"name":"dispid_DVDTextLanguageLCID","features":[430]},{"name":"dispid_DVDTextNumberOfLanguages","features":[430]},{"name":"dispid_DVDTextNumberOfStrings","features":[430]},{"name":"dispid_DVDTextString","features":[430]},{"name":"dispid_DVDTextStringType","features":[430]},{"name":"dispid_DVDTimeCode2bstr","features":[430]},{"name":"dispid_DVDUniqueID","features":[430]},{"name":"dispid_DecimateInput","features":[430]},{"name":"dispid_DefaultAudioLanguage","features":[430]},{"name":"dispid_DefaultAudioLanguageExt","features":[430]},{"name":"dispid_DefaultMenuLanguage","features":[430]},{"name":"dispid_DefaultSubpictureLanguage","features":[430]},{"name":"dispid_DefaultSubpictureLanguageExt","features":[430]},{"name":"dispid_DeleteBookmark","features":[430]},{"name":"dispid_Eject","features":[430]},{"name":"dispid_EnableResetOnStop","features":[430]},{"name":"dispid_FramesPerSecond","features":[430]},{"name":"dispid_GPRM","features":[430]},{"name":"dispid_Inputs","features":[430]},{"name":"dispid_IsAudioStreamEnabled","features":[430]},{"name":"dispid_IsEqualDevice","features":[430]},{"name":"dispid_IsSubpictureStreamEnabled","features":[430]},{"name":"dispid_KSCat","features":[430]},{"name":"dispid_KaraokeAudioPresentationMode","features":[430]},{"name":"dispid_KaraokeChannelAssignment","features":[430]},{"name":"dispid_KaraokeChannelContent","features":[430]},{"name":"dispid_LanguageFromLCID","features":[430]},{"name":"dispid_MaxRatingsLevel","features":[430]},{"name":"dispid_MixerBitmap","features":[430]},{"name":"dispid_NotifyParentalLevelChange","features":[430]},{"name":"dispid_NumberOfChapters","features":[430]},{"name":"dispid_Outputs","features":[430]},{"name":"dispid_PlayerParentalCountry","features":[430]},{"name":"dispid_PlayerParentalLevel","features":[430]},{"name":"dispid_PreferredSubpictureStream","features":[430]},{"name":"dispid_RecordingAttribute","features":[430]},{"name":"dispid_RegionChange","features":[430]},{"name":"dispid_RestoreBookmark","features":[430]},{"name":"dispid_RestorePreferredSettings","features":[430]},{"name":"dispid_SPRM","features":[430]},{"name":"dispid_SaveBookmark","features":[430]},{"name":"dispid_SelectAndActivateButton","features":[430]},{"name":"dispid_SelectAtPosition","features":[430]},{"name":"dispid_SelectDefaultAudioLanguage","features":[430]},{"name":"dispid_SelectDefaultSubpictureLanguage","features":[430]},{"name":"dispid_SelectLeftButton","features":[430]},{"name":"dispid_SelectLowerButton","features":[430]},{"name":"dispid_SelectParentalCountry","features":[430]},{"name":"dispid_SelectParentalLevel","features":[430]},{"name":"dispid_SelectRightButton","features":[430]},{"name":"dispid_SelectUpperButton","features":[430]},{"name":"dispid_SetAllocator","features":[430]},{"name":"dispid_SinkStreams","features":[430]},{"name":"dispid_SourceFilter","features":[430]},{"name":"dispid_SubpictureLanguage","features":[430]},{"name":"dispid_SubpictureOn","features":[430]},{"name":"dispid_SubpictureStreamsAvailable","features":[430]},{"name":"dispid_SuppressEffects","features":[430]},{"name":"dispid_TitleParentalLevels","features":[430]},{"name":"dispid_TitlesAvailable","features":[430]},{"name":"dispid_TotalTitleTime","features":[430]},{"name":"dispid_UOPValid","features":[430]},{"name":"dispid_UnratedDelay","features":[430]},{"name":"dispid_VolumesAvailable","features":[430]},{"name":"dispid__SourceFilter","features":[430]},{"name":"dispid_audiocounter","features":[430]},{"name":"dispid_audioencoderint","features":[430]},{"name":"dispid_audiolanguage","features":[430]},{"name":"dispid_buttonsavailable","features":[430]},{"name":"dispid_cccounter","features":[430]},{"name":"dispid_channelchangeint","features":[430]},{"name":"dispid_currentbutton","features":[430]},{"name":"dispid_playattime","features":[430]},{"name":"dispid_playattimeintitle","features":[430]},{"name":"dispid_playbackwards","features":[430]},{"name":"dispid_playchapter","features":[430]},{"name":"dispid_playchapterintitle","features":[430]},{"name":"dispid_playchaptersautostop","features":[430]},{"name":"dispid_playforwards","features":[430]},{"name":"dispid_playnextchapter","features":[430]},{"name":"dispid_playperiodintitleautostop","features":[430]},{"name":"dispid_playprevchapter","features":[430]},{"name":"dispid_playtitle","features":[430]},{"name":"dispid_replaychapter","features":[430]},{"name":"dispid_resetFilterList","features":[430]},{"name":"dispid_resume","features":[430]},{"name":"dispid_returnfromsubmenu","features":[430]},{"name":"dispid_showmenu","features":[430]},{"name":"dispid_stilloff","features":[430]},{"name":"dispid_videocounter","features":[430]},{"name":"dispid_videoencoderint","features":[430]},{"name":"dispid_wstcounter","features":[430]},{"name":"dispidaudio_analysis","features":[430]},{"name":"dispidaudioanalysis","features":[430]},{"name":"dispidaudiocounter","features":[430]},{"name":"dispidbind","features":[430]},{"name":"dispidcccounter","features":[430]},{"name":"dispiddata_analysis","features":[430]},{"name":"dispiddataanalysis","features":[430]},{"name":"dispidgetState","features":[430]},{"name":"dispidlength","features":[430]},{"name":"dispidlicenseerrorcode","features":[430]},{"name":"dispidposition","features":[430]},{"name":"dispidpositionmode","features":[430]},{"name":"dispidrate","features":[430]},{"name":"dispidrecordingstarted","features":[430]},{"name":"dispidrecordingstopped","features":[430]},{"name":"dispidrecordingtype","features":[430]},{"name":"dispidsbesource","features":[430]},{"name":"dispidstart","features":[430]},{"name":"dispidstarttime","features":[430]},{"name":"dispidstoptime","features":[430]},{"name":"dispidunbind","features":[430]},{"name":"dispidvideo_analysis","features":[430]},{"name":"dispidvideoanalysis","features":[430]},{"name":"dispidvideocounter","features":[430]},{"name":"dispidwstcounter","features":[430]},{"name":"dslDefaultSize","features":[430]},{"name":"dslDoubleSourceSize","features":[430]},{"name":"dslFullScreen","features":[430]},{"name":"dslHalfScreen","features":[430]},{"name":"dslHalfSourceSize","features":[430]},{"name":"dslQuarterScreen","features":[430]},{"name":"dslSixteenthScreen","features":[430]},{"name":"dslSourceSize","features":[430]},{"name":"dvdChannel_Audio","features":[430]},{"name":"dvdGeneral_Comments","features":[430]},{"name":"dvdGeneral_Name","features":[430]},{"name":"dvdMenu_Angle","features":[430]},{"name":"dvdMenu_Audio","features":[430]},{"name":"dvdMenu_Chapter","features":[430]},{"name":"dvdMenu_Root","features":[430]},{"name":"dvdMenu_Subpicture","features":[430]},{"name":"dvdMenu_Title","features":[430]},{"name":"dvdOther_Cut","features":[430]},{"name":"dvdOther_Scene","features":[430]},{"name":"dvdOther_Take","features":[430]},{"name":"dvdSPExt_CC_Big","features":[430]},{"name":"dvdSPExt_CC_Children","features":[430]},{"name":"dvdSPExt_CC_Normal","features":[430]},{"name":"dvdSPExt_Caption_Big","features":[430]},{"name":"dvdSPExt_Caption_Children","features":[430]},{"name":"dvdSPExt_Caption_Normal","features":[430]},{"name":"dvdSPExt_DirectorComments_Big","features":[430]},{"name":"dvdSPExt_DirectorComments_Children","features":[430]},{"name":"dvdSPExt_DirectorComments_Normal","features":[430]},{"name":"dvdSPExt_Forced","features":[430]},{"name":"dvdSPExt_NotSpecified","features":[430]},{"name":"dvdState_Paused","features":[430]},{"name":"dvdState_Running","features":[430]},{"name":"dvdState_Stopped","features":[430]},{"name":"dvdState_Undefined","features":[430]},{"name":"dvdState_Unitialized","features":[430]},{"name":"dvdStream_Angle","features":[430]},{"name":"dvdStream_Audio","features":[430]},{"name":"dvdStream_Subpicture","features":[430]},{"name":"dvdStruct_Cell","features":[430]},{"name":"dvdStruct_ParentalID","features":[430]},{"name":"dvdStruct_PartOfTitle","features":[430]},{"name":"dvdStruct_Title","features":[430]},{"name":"dvdStruct_Volume","features":[430]},{"name":"dvdTitle_Album","features":[430]},{"name":"dvdTitle_Movie","features":[430]},{"name":"dvdTitle_Orig_Album","features":[430]},{"name":"dvdTitle_Orig_Movie","features":[430]},{"name":"dvdTitle_Orig_Other","features":[430]},{"name":"dvdTitle_Orig_Series","features":[430]},{"name":"dvdTitle_Orig_Song","features":[430]},{"name":"dvdTitle_Orig_Video","features":[430]},{"name":"dvdTitle_Other","features":[430]},{"name":"dvdTitle_Series","features":[430]},{"name":"dvdTitle_Song","features":[430]},{"name":"dvdTitle_Sub_Album","features":[430]},{"name":"dvdTitle_Sub_Movie","features":[430]},{"name":"dvdTitle_Sub_Other","features":[430]},{"name":"dvdTitle_Sub_Series","features":[430]},{"name":"dvdTitle_Sub_Song","features":[430]},{"name":"dvdTitle_Sub_Video","features":[430]},{"name":"dvdTitle_Video","features":[430]},{"name":"eventidBroadcastEvent","features":[430]},{"name":"eventidBroadcastEventEx","features":[430]},{"name":"eventidCOPPBlocked","features":[430]},{"name":"eventidCOPPUnblocked","features":[430]},{"name":"eventidChangeCurrentAngle","features":[430]},{"name":"eventidChangeCurrentAudioStream","features":[430]},{"name":"eventidChangeCurrentSubpictureStream","features":[430]},{"name":"eventidChangeKaraokePresMode","features":[430]},{"name":"eventidChangeVideoPresMode","features":[430]},{"name":"eventidContentBecomingStale","features":[430]},{"name":"eventidContentPrimarilyAudio","features":[430]},{"name":"eventidDVDNotify","features":[430]},{"name":"eventidEncryptionOff","features":[430]},{"name":"eventidEncryptionOn","features":[430]},{"name":"eventidEndOfMedia","features":[430]},{"name":"eventidLicenseChange","features":[430]},{"name":"eventidOnTuneChanged","features":[430]},{"name":"eventidOverlayUnavailable","features":[430]},{"name":"eventidPauseOn","features":[430]},{"name":"eventidPlayAtTime","features":[430]},{"name":"eventidPlayAtTimeInTitle","features":[430]},{"name":"eventidPlayBackwards","features":[430]},{"name":"eventidPlayChapter","features":[430]},{"name":"eventidPlayChapterInTitle","features":[430]},{"name":"eventidPlayForwards","features":[430]},{"name":"eventidPlayNextChapter","features":[430]},{"name":"eventidPlayPrevChapter","features":[430]},{"name":"eventidPlayTitle","features":[430]},{"name":"eventidRateChange","features":[430]},{"name":"eventidRatingsBlocked","features":[430]},{"name":"eventidRatingsChanged","features":[430]},{"name":"eventidRatingsUnlocked","features":[430]},{"name":"eventidReplayChapter","features":[430]},{"name":"eventidResume","features":[430]},{"name":"eventidReturnFromSubmenu","features":[430]},{"name":"eventidSelectOrActivateButton","features":[430]},{"name":"eventidShowMenu","features":[430]},{"name":"eventidSinkCertificateFailure","features":[430]},{"name":"eventidSinkCertificateSuccess","features":[430]},{"name":"eventidSourceCertificateFailure","features":[430]},{"name":"eventidSourceCertificateSuccess","features":[430]},{"name":"eventidStaleDataRead","features":[430]},{"name":"eventidStaleFileDeleted","features":[430]},{"name":"eventidStateChange","features":[430]},{"name":"eventidStillOff","features":[430]},{"name":"eventidStop","features":[430]},{"name":"eventidTimeHole","features":[430]},{"name":"eventidWriteFailure","features":[430]},{"name":"eventidWriteFailureClear","features":[430]},{"name":"g_wszStreamBufferRecordingAlbumArtist","features":[430]},{"name":"g_wszStreamBufferRecordingAlbumCoverURL","features":[430]},{"name":"g_wszStreamBufferRecordingAlbumTitle","features":[430]},{"name":"g_wszStreamBufferRecordingAspectRatioX","features":[430]},{"name":"g_wszStreamBufferRecordingAspectRatioY","features":[430]},{"name":"g_wszStreamBufferRecordingAuthor","features":[430]},{"name":"g_wszStreamBufferRecordingBannerImageData","features":[430]},{"name":"g_wszStreamBufferRecordingBannerImageType","features":[430]},{"name":"g_wszStreamBufferRecordingBannerImageURL","features":[430]},{"name":"g_wszStreamBufferRecordingBitrate","features":[430]},{"name":"g_wszStreamBufferRecordingBroadcast","features":[430]},{"name":"g_wszStreamBufferRecordingComposer","features":[430]},{"name":"g_wszStreamBufferRecordingCopyright","features":[430]},{"name":"g_wszStreamBufferRecordingCopyrightURL","features":[430]},{"name":"g_wszStreamBufferRecordingCurrentBitrate","features":[430]},{"name":"g_wszStreamBufferRecordingDRM_Flags","features":[430]},{"name":"g_wszStreamBufferRecordingDRM_Level","features":[430]},{"name":"g_wszStreamBufferRecordingDescription","features":[430]},{"name":"g_wszStreamBufferRecordingDuration","features":[430]},{"name":"g_wszStreamBufferRecordingFileSize","features":[430]},{"name":"g_wszStreamBufferRecordingGenre","features":[430]},{"name":"g_wszStreamBufferRecordingGenreID","features":[430]},{"name":"g_wszStreamBufferRecordingHasArbitraryDataStream","features":[430]},{"name":"g_wszStreamBufferRecordingHasAttachedImages","features":[430]},{"name":"g_wszStreamBufferRecordingHasAudio","features":[430]},{"name":"g_wszStreamBufferRecordingHasFileTransferStream","features":[430]},{"name":"g_wszStreamBufferRecordingHasImage","features":[430]},{"name":"g_wszStreamBufferRecordingHasScript","features":[430]},{"name":"g_wszStreamBufferRecordingHasVideo","features":[430]},{"name":"g_wszStreamBufferRecordingIsVBR","features":[430]},{"name":"g_wszStreamBufferRecordingLyrics","features":[430]},{"name":"g_wszStreamBufferRecordingMCDI","features":[430]},{"name":"g_wszStreamBufferRecordingNSCAddress","features":[430]},{"name":"g_wszStreamBufferRecordingNSCDescription","features":[430]},{"name":"g_wszStreamBufferRecordingNSCEmail","features":[430]},{"name":"g_wszStreamBufferRecordingNSCName","features":[430]},{"name":"g_wszStreamBufferRecordingNSCPhone","features":[430]},{"name":"g_wszStreamBufferRecordingNumberOfFrames","features":[430]},{"name":"g_wszStreamBufferRecordingOptimalBitrate","features":[430]},{"name":"g_wszStreamBufferRecordingPromotionURL","features":[430]},{"name":"g_wszStreamBufferRecordingProtected","features":[430]},{"name":"g_wszStreamBufferRecordingRating","features":[430]},{"name":"g_wszStreamBufferRecordingSeekable","features":[430]},{"name":"g_wszStreamBufferRecordingSignature_Name","features":[430]},{"name":"g_wszStreamBufferRecordingSkipBackward","features":[430]},{"name":"g_wszStreamBufferRecordingSkipForward","features":[430]},{"name":"g_wszStreamBufferRecordingStridable","features":[430]},{"name":"g_wszStreamBufferRecordingTitle","features":[430]},{"name":"g_wszStreamBufferRecordingToolName","features":[430]},{"name":"g_wszStreamBufferRecordingToolVersion","features":[430]},{"name":"g_wszStreamBufferRecordingTrack","features":[430]},{"name":"g_wszStreamBufferRecordingTrackNumber","features":[430]},{"name":"g_wszStreamBufferRecordingTrusted","features":[430]},{"name":"g_wszStreamBufferRecordingUse_DRM","features":[430]},{"name":"g_wszStreamBufferRecordingYear","features":[430]},{"name":"sslClipByClipRect","features":[430]},{"name":"sslClipByOverScan","features":[430]},{"name":"sslFullSize","features":[430]}],"434":[{"name":"CLSID_XMLGraphBuilder","features":[432]},{"name":"IXMLGraphBuilder","features":[432]}],"435":[{"name":"DMOCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[433]},{"name":"DMOCATEGORY_AGC","features":[433]},{"name":"DMOCATEGORY_AUDIO_CAPTURE_EFFECT","features":[433]},{"name":"DMOCATEGORY_AUDIO_DECODER","features":[433]},{"name":"DMOCATEGORY_AUDIO_EFFECT","features":[433]},{"name":"DMOCATEGORY_AUDIO_ENCODER","features":[433]},{"name":"DMOCATEGORY_AUDIO_NOISE_SUPPRESS","features":[433]},{"name":"DMOCATEGORY_VIDEO_DECODER","features":[433]},{"name":"DMOCATEGORY_VIDEO_EFFECT","features":[433]},{"name":"DMOCATEGORY_VIDEO_ENCODER","features":[433]},{"name":"DMOEnum","features":[433]},{"name":"DMOGetName","features":[433]},{"name":"DMOGetTypes","features":[433]},{"name":"DMORegister","features":[433]},{"name":"DMOUnregister","features":[433]},{"name":"DMO_ENUMF_INCLUDE_KEYED","features":[433]},{"name":"DMO_ENUM_FLAGS","features":[433]},{"name":"DMO_E_INVALIDSTREAMINDEX","features":[433]},{"name":"DMO_E_INVALIDTYPE","features":[433]},{"name":"DMO_E_NOTACCEPTING","features":[433]},{"name":"DMO_E_NO_MORE_ITEMS","features":[433]},{"name":"DMO_E_TYPE_NOT_ACCEPTED","features":[433]},{"name":"DMO_E_TYPE_NOT_SET","features":[433]},{"name":"DMO_INPLACE_NORMAL","features":[433]},{"name":"DMO_INPLACE_ZERO","features":[433]},{"name":"DMO_INPUT_DATA_BUFFERF_DISCONTINUITY","features":[433]},{"name":"DMO_INPUT_DATA_BUFFERF_SYNCPOINT","features":[433]},{"name":"DMO_INPUT_DATA_BUFFERF_TIME","features":[433]},{"name":"DMO_INPUT_DATA_BUFFERF_TIMELENGTH","features":[433]},{"name":"DMO_INPUT_STATUSF_ACCEPT_DATA","features":[433]},{"name":"DMO_INPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[433]},{"name":"DMO_INPUT_STREAMF_HOLDS_BUFFERS","features":[433]},{"name":"DMO_INPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[433]},{"name":"DMO_INPUT_STREAMF_WHOLE_SAMPLES","features":[433]},{"name":"DMO_MEDIA_TYPE","features":[305,433]},{"name":"DMO_OUTPUT_DATA_BUFFER","features":[433]},{"name":"DMO_OUTPUT_DATA_BUFFERF_DISCONTINUITY","features":[433]},{"name":"DMO_OUTPUT_DATA_BUFFERF_INCOMPLETE","features":[433]},{"name":"DMO_OUTPUT_DATA_BUFFERF_SYNCPOINT","features":[433]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIME","features":[433]},{"name":"DMO_OUTPUT_DATA_BUFFERF_TIMELENGTH","features":[433]},{"name":"DMO_OUTPUT_STREAMF_DISCARDABLE","features":[433]},{"name":"DMO_OUTPUT_STREAMF_FIXED_SAMPLE_SIZE","features":[433]},{"name":"DMO_OUTPUT_STREAMF_OPTIONAL","features":[433]},{"name":"DMO_OUTPUT_STREAMF_SINGLE_SAMPLE_PER_BUFFER","features":[433]},{"name":"DMO_OUTPUT_STREAMF_WHOLE_SAMPLES","features":[433]},{"name":"DMO_PARTIAL_MEDIATYPE","features":[433]},{"name":"DMO_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER","features":[433]},{"name":"DMO_QUALITY_STATUS_ENABLED","features":[433]},{"name":"DMO_REGISTERF_IS_KEYED","features":[433]},{"name":"DMO_REGISTER_FLAGS","features":[433]},{"name":"DMO_SET_TYPEF_CLEAR","features":[433]},{"name":"DMO_SET_TYPEF_TEST_ONLY","features":[433]},{"name":"DMO_VOSF_NEEDS_PREVIOUS_SAMPLE","features":[433]},{"name":"IDMOQualityControl","features":[433]},{"name":"IDMOVideoOutputOptimizations","features":[433]},{"name":"IEnumDMO","features":[433]},{"name":"IMediaBuffer","features":[433]},{"name":"IMediaObject","features":[433]},{"name":"IMediaObjectInPlace","features":[433]},{"name":"MoCopyMediaType","features":[305,433]},{"name":"MoCreateMediaType","features":[305,433]},{"name":"MoDeleteMediaType","features":[305,433]},{"name":"MoDuplicateMediaType","features":[305,433]},{"name":"MoFreeMediaType","features":[305,433]},{"name":"MoInitMediaType","features":[305,433]},{"name":"_DMO_INPLACE_PROCESS_FLAGS","features":[433]},{"name":"_DMO_INPUT_DATA_BUFFER_FLAGS","features":[433]},{"name":"_DMO_INPUT_STATUS_FLAGS","features":[433]},{"name":"_DMO_INPUT_STREAM_INFO_FLAGS","features":[433]},{"name":"_DMO_OUTPUT_DATA_BUFFER_FLAGS","features":[433]},{"name":"_DMO_OUTPUT_STREAM_INFO_FLAGS","features":[433]},{"name":"_DMO_PROCESS_OUTPUT_FLAGS","features":[433]},{"name":"_DMO_QUALITY_STATUS_FLAGS","features":[433]},{"name":"_DMO_SET_TYPE_FLAGS","features":[433]},{"name":"_DMO_VIDEO_OUTPUT_STREAM_FLAGS","features":[433]}],"436":[{"name":"AEC_MODE_FULL_DUPLEX","features":[431]},{"name":"AEC_MODE_HALF_DUPLEX","features":[431]},{"name":"AEC_MODE_PASS_THROUGH","features":[431]},{"name":"AEC_STATUS_FD_CURRENTLY_CONVERGED","features":[431]},{"name":"AEC_STATUS_FD_HISTORY_CONTINUOUSLY_CONVERGED","features":[431]},{"name":"AEC_STATUS_FD_HISTORY_PREVIOUSLY_DIVERGED","features":[431]},{"name":"AEC_STATUS_FD_HISTORY_UNINITIALIZED","features":[431]},{"name":"ALLOCATOR_PROPERTIES_EX","features":[431]},{"name":"APO_CLASS_UUID","features":[431]},{"name":"AUDIOENDPOINT_CLASS_UUID","features":[431]},{"name":"AUDIOMODULE_MAX_DATA_SIZE","features":[431]},{"name":"AUDIOMODULE_MAX_NAME_CCH_SIZE","features":[431]},{"name":"AUDIOPOSTURE_ORIENTATION","features":[431]},{"name":"AUDIOPOSTURE_ORIENTATION_NOTROTATED","features":[431]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED180DEGREESCOUNTERCLOCKWISE","features":[431]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED270DEGREESCOUNTERCLOCKWISE","features":[431]},{"name":"AUDIOPOSTURE_ORIENTATION_ROTATED90DEGREESCOUNTERCLOCKWISE","features":[431]},{"name":"AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[305,431]},{"name":"AUDIO_CURVE_TYPE","features":[431]},{"name":"AUDIO_CURVE_TYPE_NONE","features":[431]},{"name":"AUDIO_CURVE_TYPE_WINDOWS_FADE","features":[431]},{"name":"AUDIO_EFFECT_TYPE_ACOUSTIC_ECHO_CANCELLATION","features":[431]},{"name":"AUDIO_EFFECT_TYPE_AUTOMATIC_GAIN_CONTROL","features":[431]},{"name":"AUDIO_EFFECT_TYPE_BASS_BOOST","features":[431]},{"name":"AUDIO_EFFECT_TYPE_BASS_MANAGEMENT","features":[431]},{"name":"AUDIO_EFFECT_TYPE_BEAMFORMING","features":[431]},{"name":"AUDIO_EFFECT_TYPE_CONSTANT_TONE_REMOVAL","features":[431]},{"name":"AUDIO_EFFECT_TYPE_DEEP_NOISE_SUPPRESSION","features":[431]},{"name":"AUDIO_EFFECT_TYPE_DYNAMIC_RANGE_COMPRESSION","features":[431]},{"name":"AUDIO_EFFECT_TYPE_ENVIRONMENTAL_EFFECTS","features":[431]},{"name":"AUDIO_EFFECT_TYPE_EQUALIZER","features":[431]},{"name":"AUDIO_EFFECT_TYPE_FAR_FIELD_BEAMFORMING","features":[431]},{"name":"AUDIO_EFFECT_TYPE_LOUDNESS_EQUALIZER","features":[431]},{"name":"AUDIO_EFFECT_TYPE_NOISE_SUPPRESSION","features":[431]},{"name":"AUDIO_EFFECT_TYPE_ROOM_CORRECTION","features":[431]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_COMPENSATION","features":[431]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_FILL","features":[431]},{"name":"AUDIO_EFFECT_TYPE_SPEAKER_PROTECTION","features":[431]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_HEADPHONES","features":[431]},{"name":"AUDIO_EFFECT_TYPE_VIRTUAL_SURROUND","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_COMMUNICATIONS","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_DEFAULT","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_FAR_FIELD_SPEECH","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MEDIA","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_MOVIE","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_NOTIFICATION","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_RAW","features":[431]},{"name":"AUDIO_SIGNALPROCESSINGMODE_SPEECH","features":[431]},{"name":"AllocatorStrategy_DontCare","features":[431]},{"name":"AllocatorStrategy_MaximizeSpeed","features":[431]},{"name":"AllocatorStrategy_MinimizeFrameSize","features":[431]},{"name":"AllocatorStrategy_MinimizeNumberOfAllocators","features":[431]},{"name":"AllocatorStrategy_MinimizeNumberOfFrames","features":[431]},{"name":"BLUETOOTHLE_MIDI_SERVICE_UUID","features":[431]},{"name":"BLUETOOTH_MIDI_DATAIO_CHARACTERISTIC","features":[431]},{"name":"BUS_INTERFACE_REFERENCE_VERSION","features":[431]},{"name":"CAPTURE_MEMORY_ALLOCATION_FLAGS","features":[431]},{"name":"CASCADE_FORM","features":[431]},{"name":"CC_BYTE_PAIR","features":[431]},{"name":"CC_HW_FIELD","features":[431]},{"name":"CC_MAX_HW_DECODE_LINES","features":[431]},{"name":"CLSID_KsIBasicAudioInterfaceHandler","features":[431]},{"name":"CLSID_Proxy","features":[431]},{"name":"CONSTRICTOR_OPTION","features":[431]},{"name":"CONSTRICTOR_OPTION_DISABLE","features":[431]},{"name":"CONSTRICTOR_OPTION_MUTE","features":[431]},{"name":"DEVCAPS","features":[431]},{"name":"DEVPKEY_KsAudio_Controller_DeviceInterface_Path","features":[303,431]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints","features":[303,431]},{"name":"DEVPKEY_KsAudio_PacketSize_Constraints2","features":[303,431]},{"name":"DIRECT_FORM","features":[431]},{"name":"DS3DVECTOR","features":[431]},{"name":"DS3D_HRTF_VERSION_1","features":[431]},{"name":"EDeviceControlUseType","features":[431]},{"name":"EPcxConnectionType","features":[431]},{"name":"EPcxGenLocation","features":[431]},{"name":"EPcxGenLocation_enum_count","features":[431]},{"name":"EPcxGeoLocation","features":[431]},{"name":"EPcxGeoLocation_enum_count","features":[431]},{"name":"EPxcPortConnection","features":[431]},{"name":"EVENTSETID_CROSSBAR","features":[431]},{"name":"EVENTSETID_TUNER","features":[431]},{"name":"EVENTSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[431]},{"name":"EVENTSETID_VIDEODECODER","features":[431]},{"name":"FLOAT_COEFF","features":[431]},{"name":"FRAMING_CACHE_OPS","features":[431]},{"name":"FRAMING_PROP","features":[431]},{"name":"FULL_FILTER","features":[431]},{"name":"FramingProp_Ex","features":[431]},{"name":"FramingProp_None","features":[431]},{"name":"FramingProp_Old","features":[431]},{"name":"FramingProp_Uninitialized","features":[431]},{"name":"Framing_Cache_ReadLast","features":[431]},{"name":"Framing_Cache_ReadOrig","features":[431]},{"name":"Framing_Cache_Update","features":[431]},{"name":"Framing_Cache_Write","features":[431]},{"name":"GUID_NULL","features":[431]},{"name":"IKsAggregateControl","features":[431]},{"name":"IKsAllocator","features":[431]},{"name":"IKsAllocatorEx","features":[431]},{"name":"IKsClockPropertySet","features":[431]},{"name":"IKsControl","features":[431]},{"name":"IKsDataTypeCompletion","features":[431]},{"name":"IKsDataTypeHandler","features":[431]},{"name":"IKsFormatSupport","features":[431]},{"name":"IKsInterfaceHandler","features":[431]},{"name":"IKsJackContainerId","features":[431]},{"name":"IKsJackDescription","features":[431]},{"name":"IKsJackDescription2","features":[431]},{"name":"IKsJackDescription3","features":[431]},{"name":"IKsJackSinkInformation","features":[431]},{"name":"IKsNodeControl","features":[431]},{"name":"IKsNotifyEvent","features":[431]},{"name":"IKsObject","features":[431]},{"name":"IKsPin","features":[431]},{"name":"IKsPinEx","features":[431]},{"name":"IKsPinFactory","features":[431]},{"name":"IKsPinPipe","features":[431]},{"name":"IKsPropertySet","features":[431]},{"name":"IKsQualityForwarder","features":[431]},{"name":"IKsTopology","features":[431]},{"name":"IKsTopologyInfo","features":[431]},{"name":"INTERLEAVED_AUDIO_FORMAT_INFORMATION","features":[431]},{"name":"IOCTL_KS_DISABLE_EVENT","features":[431]},{"name":"IOCTL_KS_ENABLE_EVENT","features":[431]},{"name":"IOCTL_KS_HANDSHAKE","features":[431]},{"name":"IOCTL_KS_METHOD","features":[431]},{"name":"IOCTL_KS_PROPERTY","features":[431]},{"name":"IOCTL_KS_READ_STREAM","features":[431]},{"name":"IOCTL_KS_RESET_STATE","features":[431]},{"name":"IOCTL_KS_WRITE_STREAM","features":[431]},{"name":"JACKDESC2_DYNAMIC_FORMAT_CHANGE_CAPABILITY","features":[431]},{"name":"JACKDESC2_PRESENCE_DETECT_CAPABILITY","features":[431]},{"name":"KSAC3_ALTERNATE_AUDIO","features":[305,431]},{"name":"KSAC3_ALTERNATE_AUDIO_1","features":[431]},{"name":"KSAC3_ALTERNATE_AUDIO_2","features":[431]},{"name":"KSAC3_ALTERNATE_AUDIO_BOTH","features":[431]},{"name":"KSAC3_BIT_STREAM_MODE","features":[431]},{"name":"KSAC3_DIALOGUE_LEVEL","features":[431]},{"name":"KSAC3_DOWNMIX","features":[305,431]},{"name":"KSAC3_ERROR_CONCEALMENT","features":[305,431]},{"name":"KSAC3_ROOM_TYPE","features":[305,431]},{"name":"KSAC3_SERVICE_COMMENTARY","features":[431]},{"name":"KSAC3_SERVICE_DIALOG_ONLY","features":[431]},{"name":"KSAC3_SERVICE_EMERGENCY_FLASH","features":[431]},{"name":"KSAC3_SERVICE_HEARING_IMPAIRED","features":[431]},{"name":"KSAC3_SERVICE_MAIN_AUDIO","features":[431]},{"name":"KSAC3_SERVICE_NO_DIALOG","features":[431]},{"name":"KSAC3_SERVICE_VISUALLY_IMPAIRED","features":[431]},{"name":"KSAC3_SERVICE_VOICE_OVER","features":[431]},{"name":"KSALGORITHMINSTANCE_SYSTEM_ACOUSTIC_ECHO_CANCEL","features":[431]},{"name":"KSALGORITHMINSTANCE_SYSTEM_AGC","features":[431]},{"name":"KSALGORITHMINSTANCE_SYSTEM_MICROPHONE_ARRAY_PROCESSOR","features":[431]},{"name":"KSALGORITHMINSTANCE_SYSTEM_NOISE_SUPPRESS","features":[431]},{"name":"KSALLOCATORMODE","features":[431]},{"name":"KSALLOCATOR_FLAG_2D_BUFFER_REQUIRED","features":[431]},{"name":"KSALLOCATOR_FLAG_ALLOCATOR_EXISTS","features":[431]},{"name":"KSALLOCATOR_FLAG_ATTENTION_STEPPING","features":[431]},{"name":"KSALLOCATOR_FLAG_CAN_ALLOCATE","features":[431]},{"name":"KSALLOCATOR_FLAG_CYCLE","features":[431]},{"name":"KSALLOCATOR_FLAG_DEVICE_SPECIFIC","features":[431]},{"name":"KSALLOCATOR_FLAG_ENABLE_CACHED_MDL","features":[431]},{"name":"KSALLOCATOR_FLAG_INDEPENDENT_RANGES","features":[431]},{"name":"KSALLOCATOR_FLAG_INSIST_ON_FRAMESIZE_RATIO","features":[431]},{"name":"KSALLOCATOR_FLAG_MULTIPLE_OUTPUT","features":[431]},{"name":"KSALLOCATOR_FLAG_NO_FRAME_INTEGRITY","features":[431]},{"name":"KSALLOCATOR_FLAG_PARTIAL_READ_SUPPORT","features":[431]},{"name":"KSALLOCATOR_FRAMING","features":[431]},{"name":"KSALLOCATOR_FRAMING_EX","features":[431]},{"name":"KSALLOCATOR_OPTIONF_COMPATIBLE","features":[431]},{"name":"KSALLOCATOR_OPTIONF_SYSTEM_MEMORY","features":[431]},{"name":"KSALLOCATOR_OPTIONF_VALID","features":[431]},{"name":"KSALLOCATOR_REQUIREMENTF_FRAME_INTEGRITY","features":[431]},{"name":"KSALLOCATOR_REQUIREMENTF_INPLACE_MODIFIER","features":[431]},{"name":"KSALLOCATOR_REQUIREMENTF_MUST_ALLOCATE","features":[431]},{"name":"KSALLOCATOR_REQUIREMENTF_PREFERENCES_ONLY","features":[431]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY","features":[431]},{"name":"KSALLOCATOR_REQUIREMENTF_SYSTEM_MEMORY_CUSTOM_ALLOCATION","features":[431]},{"name":"KSATTRIBUTE","features":[431]},{"name":"KSATTRIBUTEID_AUDIOSIGNALPROCESSING_MODE","features":[431]},{"name":"KSATTRIBUTE_AUDIOSIGNALPROCESSING_MODE","features":[431]},{"name":"KSATTRIBUTE_REQUIRED","features":[431]},{"name":"KSAUDDECOUTMODE_PCM_51","features":[431]},{"name":"KSAUDDECOUTMODE_SPDIFF","features":[431]},{"name":"KSAUDDECOUTMODE_STEREO_ANALOG","features":[431]},{"name":"KSAUDFNAME_3D_CENTER","features":[431]},{"name":"KSAUDFNAME_3D_DEPTH","features":[431]},{"name":"KSAUDFNAME_3D_STEREO","features":[431]},{"name":"KSAUDFNAME_ALTERNATE_MICROPHONE","features":[431]},{"name":"KSAUDFNAME_AUX","features":[431]},{"name":"KSAUDFNAME_AUX_MUTE","features":[431]},{"name":"KSAUDFNAME_AUX_VOLUME","features":[431]},{"name":"KSAUDFNAME_BASS","features":[431]},{"name":"KSAUDFNAME_CD_AUDIO","features":[431]},{"name":"KSAUDFNAME_CD_IN_VOLUME","features":[431]},{"name":"KSAUDFNAME_CD_MUTE","features":[431]},{"name":"KSAUDFNAME_CD_VOLUME","features":[431]},{"name":"KSAUDFNAME_LINE_IN","features":[431]},{"name":"KSAUDFNAME_LINE_IN_VOLUME","features":[431]},{"name":"KSAUDFNAME_LINE_MUTE","features":[431]},{"name":"KSAUDFNAME_LINE_VOLUME","features":[431]},{"name":"KSAUDFNAME_MASTER_MUTE","features":[431]},{"name":"KSAUDFNAME_MASTER_VOLUME","features":[431]},{"name":"KSAUDFNAME_MICROPHONE_BOOST","features":[431]},{"name":"KSAUDFNAME_MIC_IN_VOLUME","features":[431]},{"name":"KSAUDFNAME_MIC_MUTE","features":[431]},{"name":"KSAUDFNAME_MIC_VOLUME","features":[431]},{"name":"KSAUDFNAME_MIDI","features":[431]},{"name":"KSAUDFNAME_MIDI_IN_VOLUME","features":[431]},{"name":"KSAUDFNAME_MIDI_MUTE","features":[431]},{"name":"KSAUDFNAME_MIDI_VOLUME","features":[431]},{"name":"KSAUDFNAME_MIDRANGE","features":[431]},{"name":"KSAUDFNAME_MONO_MIX","features":[431]},{"name":"KSAUDFNAME_MONO_MIX_MUTE","features":[431]},{"name":"KSAUDFNAME_MONO_MIX_VOLUME","features":[431]},{"name":"KSAUDFNAME_MONO_OUT","features":[431]},{"name":"KSAUDFNAME_MONO_OUT_MUTE","features":[431]},{"name":"KSAUDFNAME_MONO_OUT_VOLUME","features":[431]},{"name":"KSAUDFNAME_PC_SPEAKER","features":[431]},{"name":"KSAUDFNAME_PC_SPEAKER_MUTE","features":[431]},{"name":"KSAUDFNAME_PC_SPEAKER_VOLUME","features":[431]},{"name":"KSAUDFNAME_PEAKMETER","features":[431]},{"name":"KSAUDFNAME_RECORDING_CONTROL","features":[431]},{"name":"KSAUDFNAME_RECORDING_SOURCE","features":[431]},{"name":"KSAUDFNAME_STEREO_MIX","features":[431]},{"name":"KSAUDFNAME_STEREO_MIX_MUTE","features":[431]},{"name":"KSAUDFNAME_STEREO_MIX_VOLUME","features":[431]},{"name":"KSAUDFNAME_TREBLE","features":[431]},{"name":"KSAUDFNAME_VIDEO","features":[431]},{"name":"KSAUDFNAME_VIDEO_MUTE","features":[431]},{"name":"KSAUDFNAME_VIDEO_VOLUME","features":[431]},{"name":"KSAUDFNAME_VOLUME_CONTROL","features":[431]},{"name":"KSAUDFNAME_WAVE_IN_VOLUME","features":[431]},{"name":"KSAUDFNAME_WAVE_MUTE","features":[431]},{"name":"KSAUDFNAME_WAVE_OUT_MIX","features":[431]},{"name":"KSAUDFNAME_WAVE_VOLUME","features":[431]},{"name":"KSAUDIOENGINE_BUFFER_SIZE_RANGE","features":[431]},{"name":"KSAUDIOENGINE_DESCRIPTOR","features":[431]},{"name":"KSAUDIOENGINE_DEVICECONTROLS","features":[431]},{"name":"KSAUDIOENGINE_VOLUMELEVEL","features":[431]},{"name":"KSAUDIOMODULE_DESCRIPTOR","features":[431]},{"name":"KSAUDIOMODULE_NOTIFICATION","features":[431]},{"name":"KSAUDIOMODULE_PROPERTY","features":[431]},{"name":"KSAUDIO_CHANNEL_CONFIG","features":[431]},{"name":"KSAUDIO_COPY_PROTECTION","features":[305,431]},{"name":"KSAUDIO_CPU_RESOURCES_HOST_CPU","features":[431]},{"name":"KSAUDIO_CPU_RESOURCES_NOT_HOST_CPU","features":[431]},{"name":"KSAUDIO_DYNAMIC_RANGE","features":[431]},{"name":"KSAUDIO_MICROPHONE_COORDINATES","features":[431]},{"name":"KSAUDIO_MIC_ARRAY_GEOMETRY","features":[431]},{"name":"KSAUDIO_MIXCAP_TABLE","features":[305,431]},{"name":"KSAUDIO_MIXLEVEL","features":[305,431]},{"name":"KSAUDIO_MIX_CAPS","features":[305,431]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS","features":[431]},{"name":"KSAUDIO_PACKETSIZE_CONSTRAINTS2","features":[431]},{"name":"KSAUDIO_PACKETSIZE_PROCESSINGMODE_CONSTRAINT","features":[431]},{"name":"KSAUDIO_POSITION","features":[431]},{"name":"KSAUDIO_POSITIONEX","features":[431]},{"name":"KSAUDIO_PRESENTATION_POSITION","features":[431]},{"name":"KSAUDIO_QUALITY_ADVANCED","features":[431]},{"name":"KSAUDIO_QUALITY_BASIC","features":[431]},{"name":"KSAUDIO_QUALITY_PC","features":[431]},{"name":"KSAUDIO_QUALITY_WORST","features":[431]},{"name":"KSAUDIO_SPEAKER_DIRECTOUT","features":[431]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_CENTER","features":[431]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_LEFT","features":[431]},{"name":"KSAUDIO_SPEAKER_GROUND_FRONT_RIGHT","features":[431]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_LEFT","features":[431]},{"name":"KSAUDIO_SPEAKER_GROUND_REAR_RIGHT","features":[431]},{"name":"KSAUDIO_SPEAKER_MONO","features":[431]},{"name":"KSAUDIO_SPEAKER_SUPER_WOOFER","features":[431]},{"name":"KSAUDIO_SPEAKER_TOP_MIDDLE","features":[431]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_HEADPHONE","features":[431]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MAX","features":[431]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_MIN","features":[431]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_NARROW","features":[431]},{"name":"KSAUDIO_STEREO_SPEAKER_GEOMETRY_WIDE","features":[431]},{"name":"KSCAMERAPROFILE_BalancedVideoAndPhoto","features":[431]},{"name":"KSCAMERAPROFILE_CompressedCamera","features":[431]},{"name":"KSCAMERAPROFILE_FLAGS_FACEDETECTION","features":[431]},{"name":"KSCAMERAPROFILE_FLAGS_PHOTOHDR","features":[431]},{"name":"KSCAMERAPROFILE_FLAGS_PREVIEW_RES_MUSTMATCH","features":[431]},{"name":"KSCAMERAPROFILE_FLAGS_VARIABLEPHOTOSEQUENCE","features":[431]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOHDR","features":[431]},{"name":"KSCAMERAPROFILE_FLAGS_VIDEOSTABLIZATION","features":[431]},{"name":"KSCAMERAPROFILE_FaceAuth_Mode","features":[431]},{"name":"KSCAMERAPROFILE_HDRWithWCGPhoto","features":[431]},{"name":"KSCAMERAPROFILE_HDRWithWCGVideo","features":[431]},{"name":"KSCAMERAPROFILE_HighFrameRate","features":[431]},{"name":"KSCAMERAPROFILE_HighQualityPhoto","features":[431]},{"name":"KSCAMERAPROFILE_Legacy","features":[431]},{"name":"KSCAMERAPROFILE_PhotoSequence","features":[431]},{"name":"KSCAMERAPROFILE_VariablePhotoSequence","features":[431]},{"name":"KSCAMERAPROFILE_VideoConferencing","features":[431]},{"name":"KSCAMERAPROFILE_VideoHDR8","features":[431]},{"name":"KSCAMERAPROFILE_VideoRecording","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_FNF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_HDR","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ADVANCEDPHOTO_ULTRALOWLIGHT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_BLUR","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_CONFIGCAPS","features":[305,431]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_MASK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_BACKGROUNDSEGMENTATION_SHALLOWFOCUS","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_CAMERAOFFSET","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_ASYNCCONTROL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_CANCELLABLE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_MASK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_CAPS_RESERVED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_AUTOFACEFRAMING","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPS","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_CONFIGCAPSHEADER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_MANUAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_DIGITALWINDOW_SETTING","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMPENSATION","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_FULLSTEP","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_HALFSTEP","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_QUARTERSTEP","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_SIXTHSTEP","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EVCOMP_THIRDSTEP","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_EYEGAZECORRECTION_STARE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_ALTERNATIVE_FRAME_ILLUMINATION","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_BACKGROUND_SUBTRACTION","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEAUTH_MODE_DISABLED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_BLINK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PHOTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_PREVIEW","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_SMILE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FACEDETECTION_VIDEO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FIELDOFVIEW","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FILTERSCOPE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_CANCELOPERATION","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLAG_MASK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ASSISTANT_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_AUTO_ADJUSTABLEPOWER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_MULTIFLASHSUPPORTED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_ON_ADJUSTABLEPOWER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_REDEYEREDUCTION","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FLASH_SINGLEFLASH","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSPRIORITY_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FAILED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_FOCUSED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_LOST","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_SEARCHING","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUSSTATE_UNINITIALIZED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUS","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_CONTINUOUSLOCK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_HYPERFOCAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_INFINITY","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DISTANCE_NEAREST","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_DRIVERFALLBACK_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_FULLRANGE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_HYPERFOCAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_INFINITY","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_MACRO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_RANGE_NORMAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_REGIONBASED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_FOCUS_UNLOCK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_HEADER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_HISTOGRAM_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALTERNATING_FRAME_ILLUMINATION","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_ALWAYS_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_IRTORCHMODE_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_100","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_12800","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_1600","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_200","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_25600","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_3200","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_400","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_50","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_6400","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_80","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_800","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ISO_MANUAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_METADATAINFO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_ALIGNMENTREQUIRED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_MEMORYTYPE_MASK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_METADATA_SYSTEMMEMORY","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_1024","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_128","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_16","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_2048","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_256","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_32","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_4096","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_512","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_64","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_MetadataAlignment_8192","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OIS_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_DEFAULT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_LATENCY","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_PHOTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_POWER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_QUALITY","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_OPTIMIZATION_VIDEO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOCONFIRMATION_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_NORMAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_NONE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOMODE_SEQUENCE_SUB_VARIABLE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_16X","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_2X","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_4X","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_8X","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PHOTOTHUMBNAIL_DISABLE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_PROFILE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_DYNAMIC","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_RELATIVEPANELOPTIMIZATION_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_FACE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROITYPE_UNKNOWN","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPS","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_CONFIGCAPSHEADER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_EXPOSURE","features":[305,431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_FOCUS","features":[305,431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_INFO","features":[305,431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_ISPCONTROLHEADER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ROI_WHITEBALANCE","features":[305,431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BACKLIT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_BEACH","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_CANDLELIGHT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_LANDSCAPE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MACRO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_MANUAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_NIGHTPORTRAIT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_PORTRAIT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SNOW","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SPORT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SCENEMODE_SUNSET","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_DISABLED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_SECUREMODE_ENABLED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VALUE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VFR_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOHDR_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_LOCK","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCFLAG_MANUAL","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOPROCSETTING","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOSTABILIZATION_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_AUTO","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTEMPORALDENOISING_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_OFF","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_VIDEOTORCH_ON_ADJUSTABLEPOWER","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_DISABLED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WARMSTART_MODE_ENABLED","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CANDLELIGHT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_CLOUDY","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_DAYLIGHT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLASH","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_FLUORESCENT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WBPRESET_TUNGSTEN","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_MODE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_PRESET","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_WHITEBALANCE_TEMPERATURE","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DEFAULT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_DIRECT","features":[431]},{"name":"KSCAMERA_EXTENDEDPROP_ZOOM_SMOOTH","features":[431]},{"name":"KSCAMERA_MAXVIDEOFPS_FORPHOTORES","features":[431]},{"name":"KSCAMERA_METADATA_BACKGROUNDSEGMENTATIONMASK","features":[305,431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURECOMPENSATION","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_EXPOSURETIME","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASH","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FLASHPOWER","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_FOCUSSTATE","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ISOSPEED","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_LENSPOSITION","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SCENEMODE","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_SENSORFRAMERATE","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_WHITEBALANCE","features":[431]},{"name":"KSCAMERA_METADATA_CAPTURESTATS_FLAG_ZOOMFACTOR","features":[431]},{"name":"KSCAMERA_METADATA_DIGITALWINDOW","features":[431]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION","features":[431]},{"name":"KSCAMERA_METADATA_FRAMEILLUMINATION_FLAG_ON","features":[431]},{"name":"KSCAMERA_METADATA_ITEMHEADER","features":[431]},{"name":"KSCAMERA_METADATA_PHOTOCONFIRMATION","features":[431]},{"name":"KSCAMERA_MetadataId","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_AUTO","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_HEADER","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_CAP_ITEM_HEADER","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_CUSTOM_ITEM","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_FRAME_HEADER","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_HEADER","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_CUSTOM","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_COMPENSATION","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_EXPOSURE_TIME","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FLASH","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_FOCUS","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_HEADER","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_ISO","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_PHOTOCONFIRMATION","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_ITEM_TYPE","features":[431]},{"name":"KSCAMERA_PERFRAMESETTING_MANUAL","features":[431]},{"name":"KSCAMERA_PROFILE_CONCURRENCYINFO","features":[431]},{"name":"KSCAMERA_PROFILE_INFO","features":[431]},{"name":"KSCAMERA_PROFILE_MEDIAINFO","features":[431]},{"name":"KSCAMERA_PROFILE_PININFO","features":[431]},{"name":"KSCATEGORY_ACOUSTIC_ECHO_CANCEL","features":[431]},{"name":"KSCATEGORY_AUDIO","features":[431]},{"name":"KSCATEGORY_BRIDGE","features":[431]},{"name":"KSCATEGORY_CAPTURE","features":[431]},{"name":"KSCATEGORY_CLOCK","features":[431]},{"name":"KSCATEGORY_COMMUNICATIONSTRANSFORM","features":[431]},{"name":"KSCATEGORY_CROSSBAR","features":[431]},{"name":"KSCATEGORY_DATACOMPRESSOR","features":[431]},{"name":"KSCATEGORY_DATADECOMPRESSOR","features":[431]},{"name":"KSCATEGORY_DATATRANSFORM","features":[431]},{"name":"KSCATEGORY_ENCODER","features":[431]},{"name":"KSCATEGORY_ESCALANTE_PLATFORM_DRIVER","features":[431]},{"name":"KSCATEGORY_FILESYSTEM","features":[431]},{"name":"KSCATEGORY_INTERFACETRANSFORM","features":[431]},{"name":"KSCATEGORY_MEDIUMTRANSFORM","features":[431]},{"name":"KSCATEGORY_MICROPHONE_ARRAY_PROCESSOR","features":[431]},{"name":"KSCATEGORY_MIXER","features":[431]},{"name":"KSCATEGORY_MULTIPLEXER","features":[431]},{"name":"KSCATEGORY_NETWORK","features":[431]},{"name":"KSCATEGORY_NETWORK_CAMERA","features":[431]},{"name":"KSCATEGORY_PROXY","features":[431]},{"name":"KSCATEGORY_QUALITY","features":[431]},{"name":"KSCATEGORY_REALTIME","features":[431]},{"name":"KSCATEGORY_RENDER","features":[431]},{"name":"KSCATEGORY_SENSOR_CAMERA","features":[431]},{"name":"KSCATEGORY_SENSOR_GROUP","features":[431]},{"name":"KSCATEGORY_SPLITTER","features":[431]},{"name":"KSCATEGORY_TEXT","features":[431]},{"name":"KSCATEGORY_TOPOLOGY","features":[431]},{"name":"KSCATEGORY_TVAUDIO","features":[431]},{"name":"KSCATEGORY_TVTUNER","features":[431]},{"name":"KSCATEGORY_VBICODEC","features":[431]},{"name":"KSCATEGORY_VIDEO","features":[431]},{"name":"KSCATEGORY_VIDEO_CAMERA","features":[431]},{"name":"KSCATEGORY_VIRTUAL","features":[431]},{"name":"KSCATEGORY_VPMUX","features":[431]},{"name":"KSCATEGORY_WDMAUD_USE_PIN_NAME","features":[431]},{"name":"KSCLOCK_CREATE","features":[431]},{"name":"KSCOMPONENTID","features":[431]},{"name":"KSCOMPONENTID_USBAUDIO","features":[431]},{"name":"KSCORRELATED_TIME","features":[431]},{"name":"KSCREATE_ITEM_FREEONSTOP","features":[431]},{"name":"KSCREATE_ITEM_NOPARAMETERS","features":[431]},{"name":"KSCREATE_ITEM_SECURITYCHANGED","features":[431]},{"name":"KSCREATE_ITEM_WILDCARD","features":[431]},{"name":"KSCameraProfileSensorType_Custom","features":[431]},{"name":"KSCameraProfileSensorType_Depth","features":[431]},{"name":"KSCameraProfileSensorType_ImageSegmentation","features":[431]},{"name":"KSCameraProfileSensorType_Infrared","features":[431]},{"name":"KSCameraProfileSensorType_PoseTracking","features":[431]},{"name":"KSCameraProfileSensorType_RGB","features":[431]},{"name":"KSDATAFORMAT","features":[431]},{"name":"KSDATAFORMAT_BIT_ATTRIBUTES","features":[431]},{"name":"KSDATAFORMAT_BIT_TEMPORAL_COMPRESSION","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_AC3_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_ANALOGVIDEO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_AC3_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG1_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_DIALECT_MPEG2_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_DSOUND","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_FILEHANDLE","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_FILENAME","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_H264_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_IMAGE","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_JPEG_IMAGE","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_LPCM_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG1_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_MPEG2_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_NONE","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_VBI","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_VC_ID","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_VIDEOINFO2","features":[431]},{"name":"KSDATAFORMAT_SPECIFIER_WAVEFORMATEX","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_AC3_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_ANALOG","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_CC","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_D16","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_DSS_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_DTS_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_AAC","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ATRAC","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_DIGITAL_PLUS_ATMOS","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT20","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MAT21","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DOLBY_MLP","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DST","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E1","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTSX_E2","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_DTS_HD","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG1","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG2","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_MPEG3","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_ONE_BIT_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IEC61937_WMA_PRO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_IMAGE_RGB32","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_JPEG","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_L16","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_L16_CUSTOM","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_L16_IR","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_L8","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_L8_CUSTOM","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_L8_IR","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_LPCM_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_BytePair","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_Line21_GOPPacket","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MIDI_BUS","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_CUSTOM","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_DEPTH","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MJPG_IR","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Packet","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Payload","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG1Video","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG2_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MPEGLAYER3","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_MPEG_HEAAC","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_NABTS_FEC","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_NONE","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_OVERLAY","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_PCM","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_RAW8","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_RIFF","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFMIDI","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_RIFFWAVE","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_SDDS_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_AC3_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG1_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_AUDIO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_STANDARD_MPEG2_VIDEO","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_SUBPICTURE","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_TELETEXT","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_VPVBI","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_VPVideo","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_WAVEFORMATEX","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO2","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO3","features":[431]},{"name":"KSDATAFORMAT_SUBTYPE_WMAUDIO_LOSSLESS","features":[431]},{"name":"KSDATAFORMAT_TYPE_ANALOGAUDIO","features":[431]},{"name":"KSDATAFORMAT_TYPE_ANALOGVIDEO","features":[431]},{"name":"KSDATAFORMAT_TYPE_AUDIO","features":[431]},{"name":"KSDATAFORMAT_TYPE_AUXLine21Data","features":[431]},{"name":"KSDATAFORMAT_TYPE_DVD_ENCRYPTED_PACK","features":[431]},{"name":"KSDATAFORMAT_TYPE_IMAGE","features":[431]},{"name":"KSDATAFORMAT_TYPE_MIDI","features":[431]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PES","features":[431]},{"name":"KSDATAFORMAT_TYPE_MPEG2_PROGRAM","features":[431]},{"name":"KSDATAFORMAT_TYPE_MPEG2_TRANSPORT","features":[431]},{"name":"KSDATAFORMAT_TYPE_MUSIC","features":[431]},{"name":"KSDATAFORMAT_TYPE_NABTS","features":[431]},{"name":"KSDATAFORMAT_TYPE_STANDARD_ELEMENTARY_STREAM","features":[431]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PACK_HEADER","features":[431]},{"name":"KSDATAFORMAT_TYPE_STANDARD_PES_PACKET","features":[431]},{"name":"KSDATAFORMAT_TYPE_STREAM","features":[431]},{"name":"KSDATAFORMAT_TYPE_TEXT","features":[431]},{"name":"KSDATAFORMAT_TYPE_VBI","features":[431]},{"name":"KSDATAFORMAT_TYPE_VIDEO","features":[431]},{"name":"KSDATARANGE_AUDIO","features":[431]},{"name":"KSDATARANGE_BIT_ATTRIBUTES","features":[431]},{"name":"KSDATARANGE_BIT_REQUIRED_ATTRIBUTES","features":[431]},{"name":"KSDATARANGE_MUSIC","features":[431]},{"name":"KSDEGRADESETID_Standard","features":[431]},{"name":"KSDEGRADE_STANDARD","features":[431]},{"name":"KSDEGRADE_STANDARD_COMPUTATION","features":[431]},{"name":"KSDEGRADE_STANDARD_QUALITY","features":[431]},{"name":"KSDEGRADE_STANDARD_SAMPLE","features":[431]},{"name":"KSDEGRADE_STANDARD_SKIP","features":[431]},{"name":"KSDEVICE_DESCRIPTOR_VERSION","features":[431]},{"name":"KSDEVICE_DESCRIPTOR_VERSION_2","features":[431]},{"name":"KSDEVICE_FLAG_ENABLE_QUERYINTERFACE","features":[431]},{"name":"KSDEVICE_FLAG_ENABLE_REMOTE_WAKEUP","features":[431]},{"name":"KSDEVICE_FLAG_LOWPOWER_PASSTHROUGH","features":[431]},{"name":"KSDEVICE_PROFILE_INFO","features":[431]},{"name":"KSDEVICE_PROFILE_TYPE_CAMERA","features":[431]},{"name":"KSDEVICE_PROFILE_TYPE_UNKNOWN","features":[431]},{"name":"KSDEVICE_THERMAL_STATE","features":[431]},{"name":"KSDEVICE_THERMAL_STATE_HIGH","features":[431]},{"name":"KSDEVICE_THERMAL_STATE_LOW","features":[431]},{"name":"KSDISPATCH_FASTIO","features":[431]},{"name":"KSDISPLAYCHANGE","features":[431]},{"name":"KSDS3D_BUFFER_ALL","features":[431]},{"name":"KSDS3D_BUFFER_CONE_ANGLES","features":[431]},{"name":"KSDS3D_COEFF_COUNT","features":[431]},{"name":"KSDS3D_FILTER_METHOD_COUNT","features":[431]},{"name":"KSDS3D_FILTER_QUALITY_COUNT","features":[431]},{"name":"KSDS3D_HRTF_COEFF_FORMAT","features":[431]},{"name":"KSDS3D_HRTF_FILTER_FORMAT_MSG","features":[431]},{"name":"KSDS3D_HRTF_FILTER_METHOD","features":[431]},{"name":"KSDS3D_HRTF_FILTER_QUALITY","features":[431]},{"name":"KSDS3D_HRTF_FILTER_VERSION","features":[431]},{"name":"KSDS3D_HRTF_INIT_MSG","features":[431]},{"name":"KSDS3D_HRTF_PARAMS_MSG","features":[305,431]},{"name":"KSDS3D_ITD_PARAMS","features":[431]},{"name":"KSDS3D_ITD_PARAMS_MSG","features":[431]},{"name":"KSDS3D_LISTENER_ALL","features":[431]},{"name":"KSDS3D_LISTENER_ORIENTATION","features":[431]},{"name":"KSDSOUND_3D_MODE_DISABLE","features":[431]},{"name":"KSDSOUND_3D_MODE_HEADRELATIVE","features":[431]},{"name":"KSDSOUND_3D_MODE_NORMAL","features":[431]},{"name":"KSDSOUND_BUFFER_CTRL_3D","features":[431]},{"name":"KSDSOUND_BUFFER_CTRL_FREQUENCY","features":[431]},{"name":"KSDSOUND_BUFFER_CTRL_HRTF_3D","features":[431]},{"name":"KSDSOUND_BUFFER_CTRL_PAN","features":[431]},{"name":"KSDSOUND_BUFFER_CTRL_POSITIONNOTIFY","features":[431]},{"name":"KSDSOUND_BUFFER_CTRL_VOLUME","features":[431]},{"name":"KSDSOUND_BUFFER_LOCHARDWARE","features":[431]},{"name":"KSDSOUND_BUFFER_LOCSOFTWARE","features":[431]},{"name":"KSDSOUND_BUFFER_PRIMARY","features":[431]},{"name":"KSDSOUND_BUFFER_STATIC","features":[431]},{"name":"KSERROR","features":[431]},{"name":"KSEVENTDATA","features":[305,431]},{"name":"KSEVENTF_DPC","features":[431]},{"name":"KSEVENTF_EVENT_HANDLE","features":[431]},{"name":"KSEVENTF_EVENT_OBJECT","features":[431]},{"name":"KSEVENTF_KSWORKITEM","features":[431]},{"name":"KSEVENTF_SEMAPHORE_HANDLE","features":[431]},{"name":"KSEVENTF_SEMAPHORE_OBJECT","features":[431]},{"name":"KSEVENTF_WORKITEM","features":[431]},{"name":"KSEVENTSETID_AudioControlChange","features":[431]},{"name":"KSEVENTSETID_CameraAsyncControl","features":[431]},{"name":"KSEVENTSETID_CameraEvent","features":[431]},{"name":"KSEVENTSETID_Clock","features":[431]},{"name":"KSEVENTSETID_Connection","features":[431]},{"name":"KSEVENTSETID_Device","features":[431]},{"name":"KSEVENTSETID_DynamicFormatChange","features":[431]},{"name":"KSEVENTSETID_EXTDEV_Command","features":[431]},{"name":"KSEVENTSETID_ExtendedCameraControl","features":[431]},{"name":"KSEVENTSETID_LoopedStreaming","features":[431]},{"name":"KSEVENTSETID_PinCapsChange","features":[431]},{"name":"KSEVENTSETID_SoundDetector","features":[431]},{"name":"KSEVENTSETID_StreamAllocator","features":[431]},{"name":"KSEVENTSETID_Telephony","features":[431]},{"name":"KSEVENTSETID_VIDCAPTOSTI","features":[431]},{"name":"KSEVENTSETID_VIDCAP_TVAUDIO","features":[431]},{"name":"KSEVENTSETID_VPNotify","features":[431]},{"name":"KSEVENTSETID_VPVBINotify","features":[431]},{"name":"KSEVENTSETID_VolumeLimit","features":[431]},{"name":"KSEVENT_AUDIO_CONTROL_CHANGE","features":[431]},{"name":"KSEVENT_CAMERACONTROL","features":[431]},{"name":"KSEVENT_CAMERACONTROL_FOCUS","features":[431]},{"name":"KSEVENT_CAMERACONTROL_ZOOM","features":[431]},{"name":"KSEVENT_CAMERAEVENT","features":[431]},{"name":"KSEVENT_CLOCK_INTERVAL_MARK","features":[431]},{"name":"KSEVENT_CLOCK_POSITION","features":[431]},{"name":"KSEVENT_CLOCK_POSITION_MARK","features":[431]},{"name":"KSEVENT_CONNECTION","features":[431]},{"name":"KSEVENT_CONNECTION_DATADISCONTINUITY","features":[431]},{"name":"KSEVENT_CONNECTION_ENDOFSTREAM","features":[431]},{"name":"KSEVENT_CONNECTION_POSITIONUPDATE","features":[431]},{"name":"KSEVENT_CONNECTION_PRIORITY","features":[431]},{"name":"KSEVENT_CONNECTION_TIMEDISCONTINUITY","features":[431]},{"name":"KSEVENT_CONTROL_CHANGE","features":[431]},{"name":"KSEVENT_CROSSBAR","features":[431]},{"name":"KSEVENT_CROSSBAR_CHANGED","features":[431]},{"name":"KSEVENT_DEVCMD","features":[431]},{"name":"KSEVENT_DEVICE","features":[431]},{"name":"KSEVENT_DEVICE_LOST","features":[431]},{"name":"KSEVENT_DEVICE_PREEMPTED","features":[431]},{"name":"KSEVENT_DEVICE_THERMAL_HIGH","features":[431]},{"name":"KSEVENT_DEVICE_THERMAL_LOW","features":[431]},{"name":"KSEVENT_DYNAMICFORMATCHANGE","features":[431]},{"name":"KSEVENT_DYNAMIC_FORMAT_CHANGE","features":[431]},{"name":"KSEVENT_ENTRY_BUFFERED","features":[431]},{"name":"KSEVENT_ENTRY_DELETED","features":[431]},{"name":"KSEVENT_ENTRY_ONESHOT","features":[431]},{"name":"KSEVENT_EXTDEV_COMMAND_BUSRESET","features":[431]},{"name":"KSEVENT_EXTDEV_COMMAND_CONTROL_INTERIM_READY","features":[431]},{"name":"KSEVENT_EXTDEV_COMMAND_NOTIFY_INTERIM_READY","features":[431]},{"name":"KSEVENT_EXTDEV_NOTIFY_MEDIUM_CHANGE","features":[431]},{"name":"KSEVENT_EXTDEV_NOTIFY_REMOVAL","features":[431]},{"name":"KSEVENT_EXTDEV_OPERATION_MODE_UPDATE","features":[431]},{"name":"KSEVENT_EXTDEV_TIMECODE_UPDATE","features":[431]},{"name":"KSEVENT_EXTDEV_TRANSPORT_STATE_UPDATE","features":[431]},{"name":"KSEVENT_LOOPEDSTREAMING","features":[431]},{"name":"KSEVENT_LOOPEDSTREAMING_POSITION","features":[431]},{"name":"KSEVENT_PHOTO_SAMPLE_SCANNED","features":[431]},{"name":"KSEVENT_PINCAPS_CHANGENOTIFICATIONS","features":[431]},{"name":"KSEVENT_PINCAPS_FORMATCHANGE","features":[431]},{"name":"KSEVENT_PINCAPS_JACKINFOCHANGE","features":[431]},{"name":"KSEVENT_SOUNDDETECTOR","features":[431]},{"name":"KSEVENT_SOUNDDETECTOR_MATCHDETECTED","features":[431]},{"name":"KSEVENT_STREAMALLOCATOR","features":[431]},{"name":"KSEVENT_STREAMALLOCATOR_FREEFRAME","features":[431]},{"name":"KSEVENT_STREAMALLOCATOR_INTERNAL_FREEFRAME","features":[431]},{"name":"KSEVENT_TELEPHONY","features":[431]},{"name":"KSEVENT_TELEPHONY_ENDPOINTPAIRS_CHANGED","features":[431]},{"name":"KSEVENT_TIME_INTERVAL","features":[305,431]},{"name":"KSEVENT_TIME_MARK","features":[305,431]},{"name":"KSEVENT_TUNER","features":[431]},{"name":"KSEVENT_TUNER_CHANGED","features":[431]},{"name":"KSEVENT_TUNER_INITIATE_SCAN","features":[431]},{"name":"KSEVENT_TUNER_INITIATE_SCAN_S","features":[305,431]},{"name":"KSEVENT_TVAUDIO","features":[431]},{"name":"KSEVENT_TVAUDIO_CHANGED","features":[431]},{"name":"KSEVENT_TYPE_BASICSUPPORT","features":[431]},{"name":"KSEVENT_TYPE_ENABLE","features":[431]},{"name":"KSEVENT_TYPE_ENABLEBUFFERED","features":[431]},{"name":"KSEVENT_TYPE_ONESHOT","features":[431]},{"name":"KSEVENT_TYPE_QUERYBUFFER","features":[431]},{"name":"KSEVENT_TYPE_SETSUPPORT","features":[431]},{"name":"KSEVENT_TYPE_TOPOLOGY","features":[431]},{"name":"KSEVENT_VIDCAPTOSTI","features":[431]},{"name":"KSEVENT_VIDCAPTOSTI_EXT_TRIGGER","features":[431]},{"name":"KSEVENT_VIDCAP_AUTO_UPDATE","features":[431]},{"name":"KSEVENT_VIDCAP_SEARCH","features":[431]},{"name":"KSEVENT_VIDEODECODER","features":[431]},{"name":"KSEVENT_VIDEODECODER_CHANGED","features":[431]},{"name":"KSEVENT_VOLUMELIMIT","features":[431]},{"name":"KSEVENT_VOLUMELIMIT_CHANGED","features":[431]},{"name":"KSEVENT_VPNOTIFY","features":[431]},{"name":"KSEVENT_VPNOTIFY_FORMATCHANGE","features":[431]},{"name":"KSEVENT_VPVBINOTIFY","features":[431]},{"name":"KSEVENT_VPVBINOTIFY_FORMATCHANGE","features":[431]},{"name":"KSE_NODE","features":[431]},{"name":"KSE_PIN","features":[431]},{"name":"KSFILTER_FLAG_CRITICAL_PROCESSING","features":[431]},{"name":"KSFILTER_FLAG_DENY_USERMODE_ACCESS","features":[431]},{"name":"KSFILTER_FLAG_DISPATCH_LEVEL_PROCESSING","features":[431]},{"name":"KSFILTER_FLAG_HYPERCRITICAL_PROCESSING","features":[431]},{"name":"KSFILTER_FLAG_PRIORITIZE_REFERENCEGUID","features":[431]},{"name":"KSFILTER_FLAG_RECEIVE_ZERO_LENGTH_SAMPLES","features":[431]},{"name":"KSFRAMETIME","features":[431]},{"name":"KSFRAMETIME_VARIABLESIZE","features":[431]},{"name":"KSGOP_USERDATA","features":[431]},{"name":"KSIDENTIFIER","features":[431]},{"name":"KSINTERFACESETID_FileIo","features":[431]},{"name":"KSINTERFACESETID_Media","features":[431]},{"name":"KSINTERFACESETID_Standard","features":[431]},{"name":"KSINTERFACE_FILEIO","features":[431]},{"name":"KSINTERFACE_FILEIO_STREAMING","features":[431]},{"name":"KSINTERFACE_MEDIA","features":[431]},{"name":"KSINTERFACE_MEDIA_MUSIC","features":[431]},{"name":"KSINTERFACE_MEDIA_WAVE_BUFFERED","features":[431]},{"name":"KSINTERFACE_MEDIA_WAVE_QUEUED","features":[431]},{"name":"KSINTERFACE_STANDARD","features":[431]},{"name":"KSINTERFACE_STANDARD_CONTROL","features":[431]},{"name":"KSINTERFACE_STANDARD_LOOPED_STREAMING","features":[431]},{"name":"KSINTERFACE_STANDARD_STREAMING","features":[431]},{"name":"KSINTERVAL","features":[431]},{"name":"KSIOOPERATION","features":[431]},{"name":"KSJACK_DESCRIPTION","features":[305,431]},{"name":"KSJACK_DESCRIPTION2","features":[431]},{"name":"KSJACK_DESCRIPTION3","features":[431]},{"name":"KSJACK_SINK_CONNECTIONTYPE","features":[431]},{"name":"KSJACK_SINK_CONNECTIONTYPE_DISPLAYPORT","features":[431]},{"name":"KSJACK_SINK_CONNECTIONTYPE_HDMI","features":[431]},{"name":"KSJACK_SINK_INFORMATION","features":[305,431]},{"name":"KSMEDIUMSETID_MidiBus","features":[431]},{"name":"KSMEDIUMSETID_Standard","features":[431]},{"name":"KSMEDIUMSETID_VPBus","features":[431]},{"name":"KSMEDIUM_STANDARD_DEVIO","features":[431]},{"name":"KSMEDIUM_TYPE_ANYINSTANCE","features":[431]},{"name":"KSMEMORY_TYPE_DEVICE_UNKNOWN","features":[431]},{"name":"KSMEMORY_TYPE_KERNEL_NONPAGED","features":[431]},{"name":"KSMEMORY_TYPE_KERNEL_PAGED","features":[431]},{"name":"KSMEMORY_TYPE_SYSTEM","features":[431]},{"name":"KSMEMORY_TYPE_USER","features":[431]},{"name":"KSMETHODSETID_StreamAllocator","features":[431]},{"name":"KSMETHODSETID_StreamIo","features":[431]},{"name":"KSMETHODSETID_Wavetable","features":[431]},{"name":"KSMETHOD_STREAMALLOCATOR","features":[431]},{"name":"KSMETHOD_STREAMALLOCATOR_ALLOC","features":[431]},{"name":"KSMETHOD_STREAMALLOCATOR_FREE","features":[431]},{"name":"KSMETHOD_STREAMIO","features":[431]},{"name":"KSMETHOD_STREAMIO_READ","features":[431]},{"name":"KSMETHOD_STREAMIO_WRITE","features":[431]},{"name":"KSMETHOD_TYPE_BASICSUPPORT","features":[431]},{"name":"KSMETHOD_TYPE_MODIFY","features":[431]},{"name":"KSMETHOD_TYPE_NONE","features":[431]},{"name":"KSMETHOD_TYPE_READ","features":[431]},{"name":"KSMETHOD_TYPE_SEND","features":[431]},{"name":"KSMETHOD_TYPE_SETSUPPORT","features":[431]},{"name":"KSMETHOD_TYPE_SOURCE","features":[431]},{"name":"KSMETHOD_TYPE_TOPOLOGY","features":[431]},{"name":"KSMETHOD_TYPE_WRITE","features":[431]},{"name":"KSMETHOD_WAVETABLE","features":[431]},{"name":"KSMETHOD_WAVETABLE_WAVE_ALLOC","features":[431]},{"name":"KSMETHOD_WAVETABLE_WAVE_FIND","features":[431]},{"name":"KSMETHOD_WAVETABLE_WAVE_FREE","features":[431]},{"name":"KSMETHOD_WAVETABLE_WAVE_WRITE","features":[431]},{"name":"KSMETHOD_WAVE_QUEUED_BREAKLOOP","features":[431]},{"name":"KSMFT_CATEGORY_AUDIO_DECODER","features":[431]},{"name":"KSMFT_CATEGORY_AUDIO_EFFECT","features":[431]},{"name":"KSMFT_CATEGORY_AUDIO_ENCODER","features":[431]},{"name":"KSMFT_CATEGORY_DEMULTIPLEXER","features":[431]},{"name":"KSMFT_CATEGORY_MULTIPLEXER","features":[431]},{"name":"KSMFT_CATEGORY_OTHER","features":[431]},{"name":"KSMFT_CATEGORY_VIDEO_DECODER","features":[431]},{"name":"KSMFT_CATEGORY_VIDEO_EFFECT","features":[431]},{"name":"KSMFT_CATEGORY_VIDEO_ENCODER","features":[431]},{"name":"KSMFT_CATEGORY_VIDEO_PROCESSOR","features":[431]},{"name":"KSMICARRAY_MICARRAYTYPE","features":[431]},{"name":"KSMICARRAY_MICARRAYTYPE_3D","features":[431]},{"name":"KSMICARRAY_MICARRAYTYPE_LINEAR","features":[431]},{"name":"KSMICARRAY_MICARRAYTYPE_PLANAR","features":[431]},{"name":"KSMICARRAY_MICTYPE","features":[431]},{"name":"KSMICARRAY_MICTYPE_8SHAPED","features":[431]},{"name":"KSMICARRAY_MICTYPE_CARDIOID","features":[431]},{"name":"KSMICARRAY_MICTYPE_HYPERCARDIOID","features":[431]},{"name":"KSMICARRAY_MICTYPE_OMNIDIRECTIONAL","features":[431]},{"name":"KSMICARRAY_MICTYPE_SUBCARDIOID","features":[431]},{"name":"KSMICARRAY_MICTYPE_SUPERCARDIOID","features":[431]},{"name":"KSMICARRAY_MICTYPE_VENDORDEFINED","features":[431]},{"name":"KSMPEGVIDMODE_LTRBOX","features":[431]},{"name":"KSMPEGVIDMODE_PANSCAN","features":[431]},{"name":"KSMPEGVIDMODE_SCALE","features":[431]},{"name":"KSMPEGVID_RECT","features":[431]},{"name":"KSMULTIPLE_DATA_PROP","features":[431]},{"name":"KSMULTIPLE_ITEM","features":[431]},{"name":"KSMUSICFORMAT","features":[431]},{"name":"KSMUSIC_TECHNOLOGY_FMSYNTH","features":[431]},{"name":"KSMUSIC_TECHNOLOGY_PORT","features":[431]},{"name":"KSMUSIC_TECHNOLOGY_SQSYNTH","features":[431]},{"name":"KSMUSIC_TECHNOLOGY_SWSYNTH","features":[431]},{"name":"KSMUSIC_TECHNOLOGY_WAVETABLE","features":[431]},{"name":"KSM_NODE","features":[431]},{"name":"KSNAME_Allocator","features":[431]},{"name":"KSNAME_Clock","features":[431]},{"name":"KSNAME_Filter","features":[431]},{"name":"KSNAME_Pin","features":[431]},{"name":"KSNAME_TopologyNode","features":[431]},{"name":"KSNODEPIN_AEC_CAPTURE_IN","features":[431]},{"name":"KSNODEPIN_AEC_CAPTURE_OUT","features":[431]},{"name":"KSNODEPIN_AEC_RENDER_IN","features":[431]},{"name":"KSNODEPIN_AEC_RENDER_OUT","features":[431]},{"name":"KSNODEPIN_DEMUX_IN","features":[431]},{"name":"KSNODEPIN_DEMUX_OUT","features":[431]},{"name":"KSNODEPIN_STANDARD_IN","features":[431]},{"name":"KSNODEPIN_STANDARD_OUT","features":[431]},{"name":"KSNODEPIN_SUM_MUX_IN","features":[431]},{"name":"KSNODEPIN_SUM_MUX_OUT","features":[431]},{"name":"KSNODEPROPERTY","features":[431]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[431]},{"name":"KSNODEPROPERTY_AUDIO_3D_LISTENER","features":[431]},{"name":"KSNODEPROPERTY_AUDIO_CHANNEL","features":[431]},{"name":"KSNODEPROPERTY_AUDIO_DEV_SPECIFIC","features":[431]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[431]},{"name":"KSNODEPROPERTY_AUDIO_PROPERTY","features":[431]},{"name":"KSNODETYPE_1394_DA_STREAM","features":[431]},{"name":"KSNODETYPE_1394_DV_STREAM_SOUNDTRACK","features":[431]},{"name":"KSNODETYPE_3D_EFFECTS","features":[431]},{"name":"KSNODETYPE_ADC","features":[431]},{"name":"KSNODETYPE_AGC","features":[431]},{"name":"KSNODETYPE_ANALOG_CONNECTOR","features":[431]},{"name":"KSNODETYPE_ANALOG_TAPE","features":[431]},{"name":"KSNODETYPE_AUDIO_ENGINE","features":[431]},{"name":"KSNODETYPE_AUDIO_KEYWORDDETECTOR","features":[431]},{"name":"KSNODETYPE_AUDIO_LOOPBACK","features":[431]},{"name":"KSNODETYPE_AUDIO_MODULE","features":[431]},{"name":"KSNODETYPE_BIDIRECTIONAL_UNDEFINED","features":[431]},{"name":"KSNODETYPE_CABLE_TUNER_AUDIO","features":[431]},{"name":"KSNODETYPE_CD_PLAYER","features":[431]},{"name":"KSNODETYPE_CHORUS","features":[431]},{"name":"KSNODETYPE_COMMUNICATION_SPEAKER","features":[431]},{"name":"KSNODETYPE_DAC","features":[431]},{"name":"KSNODETYPE_DAT_IO_DIGITAL_AUDIO_TAPE","features":[431]},{"name":"KSNODETYPE_DCC_IO_DIGITAL_COMPACT_CASSETTE","features":[431]},{"name":"KSNODETYPE_DELAY","features":[431]},{"name":"KSNODETYPE_DEMUX","features":[431]},{"name":"KSNODETYPE_DESKTOP_MICROPHONE","features":[431]},{"name":"KSNODETYPE_DESKTOP_SPEAKER","features":[431]},{"name":"KSNODETYPE_DEV_SPECIFIC","features":[431]},{"name":"KSNODETYPE_DIGITAL_AUDIO_INTERFACE","features":[431]},{"name":"KSNODETYPE_DISPLAYPORT_INTERFACE","features":[431]},{"name":"KSNODETYPE_DOWN_LINE_PHONE","features":[431]},{"name":"KSNODETYPE_DRM_DESCRAMBLE","features":[431]},{"name":"KSNODETYPE_DSS_AUDIO","features":[431]},{"name":"KSNODETYPE_DVD_AUDIO","features":[431]},{"name":"KSNODETYPE_DYN_RANGE_COMPRESSOR","features":[431]},{"name":"KSNODETYPE_ECHO_CANCELING_SPEAKERPHONE","features":[431]},{"name":"KSNODETYPE_ECHO_SUPPRESSING_SPEAKERPHONE","features":[431]},{"name":"KSNODETYPE_EMBEDDED_UNDEFINED","features":[431]},{"name":"KSNODETYPE_EQUALIZATION_NOISE","features":[431]},{"name":"KSNODETYPE_EQUALIZER","features":[431]},{"name":"KSNODETYPE_EXTERNAL_UNDEFINED","features":[431]},{"name":"KSNODETYPE_FM_RX","features":[431]},{"name":"KSNODETYPE_HANDSET","features":[431]},{"name":"KSNODETYPE_HDMI_INTERFACE","features":[431]},{"name":"KSNODETYPE_HEADPHONES","features":[431]},{"name":"KSNODETYPE_HEADSET","features":[431]},{"name":"KSNODETYPE_HEAD_MOUNTED_DISPLAY_AUDIO","features":[431]},{"name":"KSNODETYPE_INPUT_UNDEFINED","features":[431]},{"name":"KSNODETYPE_LEGACY_AUDIO_CONNECTOR","features":[431]},{"name":"KSNODETYPE_LEVEL_CALIBRATION_NOISE_SOURCE","features":[431]},{"name":"KSNODETYPE_LINE_CONNECTOR","features":[431]},{"name":"KSNODETYPE_LOUDNESS","features":[431]},{"name":"KSNODETYPE_LOW_FREQUENCY_EFFECTS_SPEAKER","features":[431]},{"name":"KSNODETYPE_MICROPHONE","features":[431]},{"name":"KSNODETYPE_MICROPHONE_ARRAY","features":[431]},{"name":"KSNODETYPE_MIDI_ELEMENT","features":[431]},{"name":"KSNODETYPE_MIDI_JACK","features":[431]},{"name":"KSNODETYPE_MINIDISK","features":[431]},{"name":"KSNODETYPE_MULTITRACK_RECORDER","features":[431]},{"name":"KSNODETYPE_MUTE","features":[431]},{"name":"KSNODETYPE_MUX","features":[431]},{"name":"KSNODETYPE_NOISE_SUPPRESS","features":[431]},{"name":"KSNODETYPE_OMNI_DIRECTIONAL_MICROPHONE","features":[431]},{"name":"KSNODETYPE_OUTPUT_UNDEFINED","features":[431]},{"name":"KSNODETYPE_PARAMETRIC_EQUALIZER","features":[431]},{"name":"KSNODETYPE_PEAKMETER","features":[431]},{"name":"KSNODETYPE_PERSONAL_MICROPHONE","features":[431]},{"name":"KSNODETYPE_PHONE_LINE","features":[431]},{"name":"KSNODETYPE_PHONOGRAPH","features":[431]},{"name":"KSNODETYPE_PROCESSING_MICROPHONE_ARRAY","features":[431]},{"name":"KSNODETYPE_PROLOGIC_DECODER","features":[431]},{"name":"KSNODETYPE_PROLOGIC_ENCODER","features":[431]},{"name":"KSNODETYPE_RADIO_RECEIVER","features":[431]},{"name":"KSNODETYPE_RADIO_TRANSMITTER","features":[431]},{"name":"KSNODETYPE_REVERB","features":[431]},{"name":"KSNODETYPE_ROOM_SPEAKER","features":[431]},{"name":"KSNODETYPE_SATELLITE_RECEIVER_AUDIO","features":[431]},{"name":"KSNODETYPE_SPDIF_INTERFACE","features":[431]},{"name":"KSNODETYPE_SPEAKER","features":[431]},{"name":"KSNODETYPE_SPEAKERPHONE_NO_ECHO_REDUCTION","features":[431]},{"name":"KSNODETYPE_SPEAKERS_STATIC_JACK","features":[431]},{"name":"KSNODETYPE_SRC","features":[431]},{"name":"KSNODETYPE_STEREO_WIDE","features":[431]},{"name":"KSNODETYPE_SUM","features":[431]},{"name":"KSNODETYPE_SUPERMIX","features":[431]},{"name":"KSNODETYPE_SYNTHESIZER","features":[431]},{"name":"KSNODETYPE_TELEPHONE","features":[431]},{"name":"KSNODETYPE_TELEPHONY_BIDI","features":[431]},{"name":"KSNODETYPE_TELEPHONY_UNDEFINED","features":[431]},{"name":"KSNODETYPE_TONE","features":[431]},{"name":"KSNODETYPE_TV_TUNER_AUDIO","features":[431]},{"name":"KSNODETYPE_UPDOWN_MIX","features":[431]},{"name":"KSNODETYPE_VCR_AUDIO","features":[431]},{"name":"KSNODETYPE_VIDEO_CAMERA_TERMINAL","features":[431]},{"name":"KSNODETYPE_VIDEO_DISC_AUDIO","features":[431]},{"name":"KSNODETYPE_VIDEO_INPUT_MTT","features":[431]},{"name":"KSNODETYPE_VIDEO_INPUT_TERMINAL","features":[431]},{"name":"KSNODETYPE_VIDEO_OUTPUT_MTT","features":[431]},{"name":"KSNODETYPE_VIDEO_OUTPUT_TERMINAL","features":[431]},{"name":"KSNODETYPE_VIDEO_PROCESSING","features":[431]},{"name":"KSNODETYPE_VIDEO_SELECTOR","features":[431]},{"name":"KSNODETYPE_VIDEO_STREAMING","features":[431]},{"name":"KSNODETYPE_VOLUME","features":[431]},{"name":"KSNODE_CREATE","features":[431]},{"name":"KSNOTIFICATIONID_AudioModule","features":[431]},{"name":"KSNOTIFICATIONID_SoundDetector","features":[431]},{"name":"KSPEEKOPERATION","features":[431]},{"name":"KSPIN_CINSTANCES","features":[431]},{"name":"KSPIN_COMMUNICATION","features":[431]},{"name":"KSPIN_COMMUNICATION_BOTH","features":[431]},{"name":"KSPIN_COMMUNICATION_BRIDGE","features":[431]},{"name":"KSPIN_COMMUNICATION_NONE","features":[431]},{"name":"KSPIN_COMMUNICATION_SINK","features":[431]},{"name":"KSPIN_COMMUNICATION_SOURCE","features":[431]},{"name":"KSPIN_CONNECT","features":[305,431]},{"name":"KSPIN_DATAFLOW","features":[431]},{"name":"KSPIN_DATAFLOW_IN","features":[431]},{"name":"KSPIN_DATAFLOW_OUT","features":[431]},{"name":"KSPIN_FLAG_ASYNCHRONOUS_PROCESSING","features":[431]},{"name":"KSPIN_FLAG_CRITICAL_PROCESSING","features":[431]},{"name":"KSPIN_FLAG_DENY_USERMODE_ACCESS","features":[431]},{"name":"KSPIN_FLAG_DISPATCH_LEVEL_PROCESSING","features":[431]},{"name":"KSPIN_FLAG_DISTINCT_TRAILING_EDGE","features":[431]},{"name":"KSPIN_FLAG_DO_NOT_INITIATE_PROCESSING","features":[431]},{"name":"KSPIN_FLAG_DO_NOT_USE_STANDARD_TRANSPORT","features":[431]},{"name":"KSPIN_FLAG_ENFORCE_FIFO","features":[431]},{"name":"KSPIN_FLAG_FIXED_FORMAT","features":[431]},{"name":"KSPIN_FLAG_FRAMES_NOT_REQUIRED_FOR_PROCESSING","features":[431]},{"name":"KSPIN_FLAG_GENERATE_EOS_EVENTS","features":[431]},{"name":"KSPIN_FLAG_GENERATE_MAPPINGS","features":[431]},{"name":"KSPIN_FLAG_HYPERCRITICAL_PROCESSING","features":[431]},{"name":"KSPIN_FLAG_IMPLEMENT_CLOCK","features":[431]},{"name":"KSPIN_FLAG_INITIATE_PROCESSING_ON_EVERY_ARRIVAL","features":[431]},{"name":"KSPIN_FLAG_PROCESS_IF_ANY_IN_RUN_STATE","features":[431]},{"name":"KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY","features":[431]},{"name":"KSPIN_FLAG_SOME_FRAMES_REQUIRED_FOR_PROCESSING","features":[431]},{"name":"KSPIN_FLAG_SPLITTER","features":[431]},{"name":"KSPIN_FLAG_USE_STANDARD_TRANSPORT","features":[431]},{"name":"KSPIN_MDL_CACHING_EVENT","features":[431]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION","features":[431]},{"name":"KSPIN_MDL_CACHING_NOTIFICATION32","features":[431]},{"name":"KSPIN_MDL_CACHING_NOTIFY_ADDSAMPLE","features":[431]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_NOWAIT","features":[431]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANALL_WAIT","features":[431]},{"name":"KSPIN_MDL_CACHING_NOTIFY_CLEANUP","features":[431]},{"name":"KSPIN_PHYSICALCONNECTION","features":[431]},{"name":"KSPPROPERTY_ALLOCATOR_MDLCACHING","features":[431]},{"name":"KSPRIORITY","features":[431]},{"name":"KSPRIORITY_EXCLUSIVE","features":[431]},{"name":"KSPRIORITY_HIGH","features":[431]},{"name":"KSPRIORITY_LOW","features":[431]},{"name":"KSPRIORITY_NORMAL","features":[431]},{"name":"KSPROBE_ALLOCATEMDL","features":[431]},{"name":"KSPROBE_ALLOWFORMATCHANGE","features":[431]},{"name":"KSPROBE_MODIFY","features":[431]},{"name":"KSPROBE_PROBEANDLOCK","features":[431]},{"name":"KSPROBE_STREAMREAD","features":[431]},{"name":"KSPROBE_STREAMWRITE","features":[431]},{"name":"KSPROBE_SYSTEMADDRESS","features":[431]},{"name":"KSPROPERTYSETID_ExtendedCameraControl","features":[431]},{"name":"KSPROPERTYSETID_NetworkCameraControl","features":[431]},{"name":"KSPROPERTYSETID_PerFrameSettingControl","features":[431]},{"name":"KSPROPERTY_AC3","features":[431]},{"name":"KSPROPERTY_AC3_ALTERNATE_AUDIO","features":[431]},{"name":"KSPROPERTY_AC3_BIT_STREAM_MODE","features":[431]},{"name":"KSPROPERTY_AC3_DIALOGUE_LEVEL","features":[431]},{"name":"KSPROPERTY_AC3_DOWNMIX","features":[431]},{"name":"KSPROPERTY_AC3_ERROR_CONCEALMENT","features":[431]},{"name":"KSPROPERTY_AC3_LANGUAGE_CODE","features":[431]},{"name":"KSPROPERTY_AC3_ROOM_TYPE","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CLEANUP_CACHEDMDLPAGES","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_CAPS_S","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_CAPTURE_INTERLEAVE_S","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_HONOR_COUNT","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE","features":[431]},{"name":"KSPROPERTY_ALLOCATOR_CONTROL_SURFACE_SIZE_S","features":[431]},{"name":"KSPROPERTY_ATN_READER","features":[431]},{"name":"KSPROPERTY_AUDDECOUT","features":[431]},{"name":"KSPROPERTY_AUDDECOUT_CUR_MODE","features":[431]},{"name":"KSPROPERTY_AUDDECOUT_MODES","features":[431]},{"name":"KSPROPERTY_AUDIO","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_BUFFER_SIZE_RANGE","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_DESCRIPTOR","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICECONTROLS","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_DEVICEFORMAT","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_GFXENABLE","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_LFXENABLE","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_LOOPBACK_PROTECTION","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_MIXFORMAT","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_SUPPORTEDDEVICEFORMATS","features":[431]},{"name":"KSPROPERTY_AUDIOENGINE_VOLUMELEVEL","features":[431]},{"name":"KSPROPERTY_AUDIOMODULE","features":[431]},{"name":"KSPROPERTY_AUDIOMODULE_COMMAND","features":[431]},{"name":"KSPROPERTY_AUDIOMODULE_DESCRIPTORS","features":[431]},{"name":"KSPROPERTY_AUDIOMODULE_NOTIFICATION_DEVICE_ID","features":[431]},{"name":"KSPROPERTY_AUDIOPOSTURE","features":[431]},{"name":"KSPROPERTY_AUDIOPOSTURE_ORIENTATION","features":[431]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT","features":[431]},{"name":"KSPROPERTY_AUDIORESOURCEMANAGEMENT_RESOURCEGROUP","features":[431]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING","features":[431]},{"name":"KSPROPERTY_AUDIOSIGNALPROCESSING_MODES","features":[431]},{"name":"KSPROPERTY_AUDIO_3D_INTERFACE","features":[431]},{"name":"KSPROPERTY_AUDIO_AGC","features":[431]},{"name":"KSPROPERTY_AUDIO_ALGORITHM_INSTANCE","features":[431]},{"name":"KSPROPERTY_AUDIO_BASS","features":[431]},{"name":"KSPROPERTY_AUDIO_BASS_BOOST","features":[431]},{"name":"KSPROPERTY_AUDIO_BUFFER_DURATION","features":[431]},{"name":"KSPROPERTY_AUDIO_CHANNEL_CONFIG","features":[431]},{"name":"KSPROPERTY_AUDIO_CHORUS_LEVEL","features":[431]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_DEPTH","features":[431]},{"name":"KSPROPERTY_AUDIO_CHORUS_MODULATION_RATE","features":[431]},{"name":"KSPROPERTY_AUDIO_COPY_PROTECTION","features":[431]},{"name":"KSPROPERTY_AUDIO_CPU_RESOURCES","features":[431]},{"name":"KSPROPERTY_AUDIO_DELAY","features":[431]},{"name":"KSPROPERTY_AUDIO_DEMUX_DEST","features":[431]},{"name":"KSPROPERTY_AUDIO_DEV_SPECIFIC","features":[431]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_RANGE","features":[431]},{"name":"KSPROPERTY_AUDIO_DYNAMIC_SAMPLING_RATE","features":[431]},{"name":"KSPROPERTY_AUDIO_EQ_BANDS","features":[431]},{"name":"KSPROPERTY_AUDIO_EQ_LEVEL","features":[431]},{"name":"KSPROPERTY_AUDIO_FILTER_STATE","features":[431]},{"name":"KSPROPERTY_AUDIO_LATENCY","features":[431]},{"name":"KSPROPERTY_AUDIO_LINEAR_BUFFER_POSITION","features":[431]},{"name":"KSPROPERTY_AUDIO_LOUDNESS","features":[431]},{"name":"KSPROPERTY_AUDIO_MANUFACTURE_GUID","features":[431]},{"name":"KSPROPERTY_AUDIO_MIC_ARRAY_GEOMETRY","features":[431]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY","features":[431]},{"name":"KSPROPERTY_AUDIO_MIC_SENSITIVITY2","features":[431]},{"name":"KSPROPERTY_AUDIO_MIC_SNR","features":[431]},{"name":"KSPROPERTY_AUDIO_MID","features":[431]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_CAPS","features":[431]},{"name":"KSPROPERTY_AUDIO_MIX_LEVEL_TABLE","features":[431]},{"name":"KSPROPERTY_AUDIO_MUTE","features":[431]},{"name":"KSPROPERTY_AUDIO_MUX_SOURCE","features":[431]},{"name":"KSPROPERTY_AUDIO_NUM_EQ_BANDS","features":[431]},{"name":"KSPROPERTY_AUDIO_PEAKMETER","features":[431]},{"name":"KSPROPERTY_AUDIO_PEAKMETER2","features":[431]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_CENTER_FREQ","features":[431]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_LEVEL","features":[431]},{"name":"KSPROPERTY_AUDIO_PEQ_BAND_Q_FACTOR","features":[431]},{"name":"KSPROPERTY_AUDIO_PEQ_MAX_BANDS","features":[431]},{"name":"KSPROPERTY_AUDIO_PEQ_NUM_BANDS","features":[431]},{"name":"KSPROPERTY_AUDIO_POSITION","features":[431]},{"name":"KSPROPERTY_AUDIO_POSITIONEX","features":[431]},{"name":"KSPROPERTY_AUDIO_PREFERRED_STATUS","features":[431]},{"name":"KSPROPERTY_AUDIO_PRESENTATION_POSITION","features":[431]},{"name":"KSPROPERTY_AUDIO_PRODUCT_GUID","features":[431]},{"name":"KSPROPERTY_AUDIO_QUALITY","features":[431]},{"name":"KSPROPERTY_AUDIO_REVERB_DELAY_FEEDBACK","features":[431]},{"name":"KSPROPERTY_AUDIO_REVERB_LEVEL","features":[431]},{"name":"KSPROPERTY_AUDIO_REVERB_TIME","features":[431]},{"name":"KSPROPERTY_AUDIO_SAMPLING_RATE","features":[431]},{"name":"KSPROPERTY_AUDIO_STEREO_ENHANCE","features":[431]},{"name":"KSPROPERTY_AUDIO_STEREO_SPEAKER_GEOMETRY","features":[431]},{"name":"KSPROPERTY_AUDIO_SURROUND_ENCODE","features":[431]},{"name":"KSPROPERTY_AUDIO_TREBLE","features":[431]},{"name":"KSPROPERTY_AUDIO_VOLUMELEVEL","features":[431]},{"name":"KSPROPERTY_AUDIO_VOLUMELIMIT_ENGAGED","features":[431]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_LASTBUFFER_POSITION","features":[431]},{"name":"KSPROPERTY_AUDIO_WAVERT_CURRENT_WRITE_POSITION","features":[431]},{"name":"KSPROPERTY_AUDIO_WIDENESS","features":[431]},{"name":"KSPROPERTY_AUDIO_WIDE_MODE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYGEOGRAPHIC","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYPERSONALNAME","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYRELATED","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTITLE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYTOPICALTERM","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDENTRYUNIFORMTITLE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ADDEDFORMAVAILABLE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_AWARDS","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_BIBLIOGRAPHYNOTE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CATALOGINGSOURCE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CITATION","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CONTENTSNOTE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_CREATIONCREDIT","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_GENERALNOTE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMCURRICULUM","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_INDEXTERMGENRE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISBN","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_ISSN","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LCCN","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_LEADER","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINCORPORATEBODY","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINMEETINGNAME","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINPERSONALNAME","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_MAINUNIFORMTITLE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PARTICIPANT","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PHYSICALDESCRIPTION","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_PUBLICATION","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENT","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTPERSONALNAME","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SERIESSTATEMENTUNIFORMTITLE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SUMMARY","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_SYSTEMDETAILS","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TARGETAUDIENCE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_TITLESTATEMENT","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_UNIFORMTITLE","features":[431]},{"name":"KSPROPERTY_BIBLIOGRAPHIC_VARYINGFORMTITLE","features":[431]},{"name":"KSPROPERTY_BOUNDS_LONG","features":[431]},{"name":"KSPROPERTY_BOUNDS_LONGLONG","features":[431]},{"name":"KSPROPERTY_BTAUDIO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_AUTO_EXPOSURE_PRIORITY","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXPOSURE_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ADVANCEDPHOTO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_BACKGROUNDSEGMENTATION","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_CAMERAANGLEOFFSET","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_DIGITALWINDOW_CONFIGCAPS","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_END2","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EVCOMPENSATION","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EXPOSUREMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_EYEGAZECORRECTION","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEAUTH_MODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FACEDETECTION","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FIELDOFVIEW","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FLASHMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSPRIORITY","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_FOCUSSTATE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_HISTOGRAM","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_IRTORCHMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ISO_ADVANCED","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MAXVIDFPS_PHOTORES","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_MCC","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_METADATA","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OIS","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_OPTIMIZATIONHINT","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOCONFIRMATION","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOFRAMERATE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMAXFRAMERATE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTHUMBNAIL","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PHOTOTRIGGERTIME","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROFILE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_PROPERTY","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_RELATIVEPANELOPTIMIZATION","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_CONFIGCAPS","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ROI_ISPCONTROL","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SCENEMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_SECURE_MODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_TORCHMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VFR","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOHDR","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOSTABILIZATION","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_VIDEOTEMPORALDENOISING","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WARMSTART","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_WHITEBALANCEMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_EXTENDED_ZOOM","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ABSOLUTE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_ASYNCHRONOUS","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_AUTO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_MANUAL","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLAGS_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_AUTO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_AUTO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_FLAGS_MANUAL","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_OFF","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_ON","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_PROPERTY_ID","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FLASH_S","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FOCAL_LENGTH_S","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_FOCUS_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_EXCLUSIVE_WITH_RECORD","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_PROPERTY_ID","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_S","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_IMAGE_PIN_CAPABILITY_SEQUENCE_EXCLUSIVE_WITH_RECORD","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_IRIS_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_FOCAL_LENGTH_S","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_NODE_S2","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PAN","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PANTILT_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PAN_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CAPABILITY","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_CLEAR","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_PROPERTY","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PERFRAMESETTING_SET","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_PRIVACY","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_EXPOSURE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_FOCUS","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONFIG_WB","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_CONVERGEMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_ASYNC","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_AUTO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_FLAGS_MANUAL","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_PROPERTY_ID","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_REGION_OF_INTEREST_S","features":[305,431]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_ROLL_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_S","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_S2","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_SCANMODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_S_EX","features":[305,431]},{"name":"KSPROPERTY_CAMERACONTROL_TILT","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_TILT_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_AUTO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_AUTO","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_FLAGS_MANUAL","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_HIGH","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_LOW","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_MEDIUM","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_OFF","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEOSTABILIZATION_MODE_S","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_VIDEO_STABILIZATION_MODE_PROPERTY_ID","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM","features":[431]},{"name":"KSPROPERTY_CAMERACONTROL_ZOOM_RELATIVE","features":[431]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_CLEAR","features":[431]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_FLAGS","features":[431]},{"name":"KSPROPERTY_CAMERA_PHOTOTRIGGERTIME_SET","features":[431]},{"name":"KSPROPERTY_CLOCK","features":[431]},{"name":"KSPROPERTY_CLOCK_CORRELATEDPHYSICALTIME","features":[431]},{"name":"KSPROPERTY_CLOCK_CORRELATEDTIME","features":[431]},{"name":"KSPROPERTY_CLOCK_PHYSICALTIME","features":[431]},{"name":"KSPROPERTY_CLOCK_RESOLUTION","features":[431]},{"name":"KSPROPERTY_CLOCK_STATE","features":[431]},{"name":"KSPROPERTY_CLOCK_TIME","features":[431]},{"name":"KSPROPERTY_CONNECTION","features":[431]},{"name":"KSPROPERTY_CONNECTION_ACQUIREORDERING","features":[431]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING","features":[431]},{"name":"KSPROPERTY_CONNECTION_ALLOCATORFRAMING_EX","features":[431]},{"name":"KSPROPERTY_CONNECTION_DATAFORMAT","features":[431]},{"name":"KSPROPERTY_CONNECTION_PRIORITY","features":[431]},{"name":"KSPROPERTY_CONNECTION_PROPOSEDATAFORMAT","features":[431]},{"name":"KSPROPERTY_CONNECTION_STARTAT","features":[431]},{"name":"KSPROPERTY_CONNECTION_STATE","features":[431]},{"name":"KSPROPERTY_COPYPROT","features":[431]},{"name":"KSPROPERTY_COPY_MACROVISION","features":[431]},{"name":"KSPROPERTY_CROSSBAR_ACTIVE_S","features":[431]},{"name":"KSPROPERTY_CROSSBAR_CAN_ROUTE","features":[431]},{"name":"KSPROPERTY_CROSSBAR_CAPS","features":[431]},{"name":"KSPROPERTY_CROSSBAR_CAPS_S","features":[431]},{"name":"KSPROPERTY_CROSSBAR_INPUT_ACTIVE","features":[431]},{"name":"KSPROPERTY_CROSSBAR_PININFO","features":[431]},{"name":"KSPROPERTY_CROSSBAR_PININFO_S","features":[431]},{"name":"KSPROPERTY_CROSSBAR_ROUTE","features":[431]},{"name":"KSPROPERTY_CROSSBAR_ROUTE_S","features":[431]},{"name":"KSPROPERTY_CURRENT_CAPTURE_SURFACE","features":[431]},{"name":"KSPROPERTY_CYCLIC","features":[431]},{"name":"KSPROPERTY_CYCLIC_POSITION","features":[431]},{"name":"KSPROPERTY_DESCRIPTION","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_ALL","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEANGLES","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEORIENTATION","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_CONEOUTSIDEVOLUME","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MAXDISTANCE","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MINDISTANCE","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_MODE","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_POSITION","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DBUFFER_VELOCITY","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALL","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ALLOCATION","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_BATCH","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DISTANCEFACTOR","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_DOPPLERFACTOR","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ORIENTATION","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_POSITION","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_ROLLOFFFACTOR","features":[431]},{"name":"KSPROPERTY_DIRECTSOUND3DLISTENER_VELOCITY","features":[431]},{"name":"KSPROPERTY_DISPLAY_ADAPTER_GUID","features":[431]},{"name":"KSPROPERTY_DRMAUDIOSTREAM","features":[431]},{"name":"KSPROPERTY_DRMAUDIOSTREAM_CONTENTID","features":[431]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT","features":[431]},{"name":"KSPROPERTY_DROPPEDFRAMES_CURRENT_S","features":[431]},{"name":"KSPROPERTY_DVDCOPY_CHLG_KEY","features":[431]},{"name":"KSPROPERTY_DVDCOPY_DEC_KEY2","features":[431]},{"name":"KSPROPERTY_DVDCOPY_DISC_KEY","features":[431]},{"name":"KSPROPERTY_DVDCOPY_DVD_KEY1","features":[431]},{"name":"KSPROPERTY_DVDCOPY_REGION","features":[431]},{"name":"KSPROPERTY_DVDCOPY_SET_COPY_STATE","features":[431]},{"name":"KSPROPERTY_DVDCOPY_TITLE_KEY","features":[431]},{"name":"KSPROPERTY_DVDSUBPIC","features":[431]},{"name":"KSPROPERTY_DVDSUBPIC_COMPOSIT_ON","features":[431]},{"name":"KSPROPERTY_DVDSUBPIC_HLI","features":[431]},{"name":"KSPROPERTY_DVDSUBPIC_PALETTE","features":[431]},{"name":"KSPROPERTY_EXTDEVICE","features":[431]},{"name":"KSPROPERTY_EXTDEVICE_CAPABILITIES","features":[431]},{"name":"KSPROPERTY_EXTDEVICE_ID","features":[431]},{"name":"KSPROPERTY_EXTDEVICE_PORT","features":[431]},{"name":"KSPROPERTY_EXTDEVICE_POWER_STATE","features":[431]},{"name":"KSPROPERTY_EXTDEVICE_S","features":[431]},{"name":"KSPROPERTY_EXTDEVICE_VERSION","features":[431]},{"name":"KSPROPERTY_EXTENSION_UNIT","features":[431]},{"name":"KSPROPERTY_EXTENSION_UNIT_CONTROL","features":[431]},{"name":"KSPROPERTY_EXTENSION_UNIT_INFO","features":[431]},{"name":"KSPROPERTY_EXTENSION_UNIT_PASS_THROUGH","features":[431]},{"name":"KSPROPERTY_EXTXPORT","features":[431]},{"name":"KSPROPERTY_EXTXPORT_ATN_SEARCH","features":[431]},{"name":"KSPROPERTY_EXTXPORT_CAPABILITIES","features":[431]},{"name":"KSPROPERTY_EXTXPORT_INPUT_SIGNAL_MODE","features":[431]},{"name":"KSPROPERTY_EXTXPORT_LOAD_MEDIUM","features":[431]},{"name":"KSPROPERTY_EXTXPORT_MEDIUM_INFO","features":[431]},{"name":"KSPROPERTY_EXTXPORT_NODE_S","features":[305,431]},{"name":"KSPROPERTY_EXTXPORT_OUTPUT_SIGNAL_MODE","features":[431]},{"name":"KSPROPERTY_EXTXPORT_RTC_SEARCH","features":[431]},{"name":"KSPROPERTY_EXTXPORT_S","features":[305,431]},{"name":"KSPROPERTY_EXTXPORT_STATE","features":[431]},{"name":"KSPROPERTY_EXTXPORT_STATE_NOTIFY","features":[431]},{"name":"KSPROPERTY_EXTXPORT_TIMECODE_SEARCH","features":[431]},{"name":"KSPROPERTY_FMRX_ANTENNAENDPOINTID","features":[431]},{"name":"KSPROPERTY_FMRX_CONTROL","features":[431]},{"name":"KSPROPERTY_FMRX_ENDPOINTID","features":[431]},{"name":"KSPROPERTY_FMRX_STATE","features":[431]},{"name":"KSPROPERTY_FMRX_TOPOLOGY","features":[431]},{"name":"KSPROPERTY_FMRX_VOLUME","features":[431]},{"name":"KSPROPERTY_GENERAL","features":[431]},{"name":"KSPROPERTY_GENERAL_COMPONENTID","features":[431]},{"name":"KSPROPERTY_HRTF3D","features":[431]},{"name":"KSPROPERTY_HRTF3D_FILTER_FORMAT","features":[431]},{"name":"KSPROPERTY_HRTF3D_INITIALIZE","features":[431]},{"name":"KSPROPERTY_HRTF3D_PARAMS","features":[431]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO","features":[431]},{"name":"KSPROPERTY_INTERLEAVEDAUDIO_FORMATINFORMATION","features":[431]},{"name":"KSPROPERTY_ITD3D","features":[431]},{"name":"KSPROPERTY_ITD3D_PARAMS","features":[431]},{"name":"KSPROPERTY_JACK","features":[431]},{"name":"KSPROPERTY_JACK_CONTAINERID","features":[431]},{"name":"KSPROPERTY_JACK_DESCRIPTION","features":[431]},{"name":"KSPROPERTY_JACK_DESCRIPTION2","features":[431]},{"name":"KSPROPERTY_JACK_DESCRIPTION3","features":[431]},{"name":"KSPROPERTY_JACK_SINK_INFO","features":[431]},{"name":"KSPROPERTY_MAP_CAPTURE_HANDLE_TO_VRAM_ADDRESS","features":[431]},{"name":"KSPROPERTY_MEDIAAVAILABLE","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_AVAILABLE","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_CAPABILITIES","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_CONVERTTIMEFORMAT","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_DURATION","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_FORMATS","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_POSITION","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_POSITIONS","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_PREROLL","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_STOPPOSITION","features":[431]},{"name":"KSPROPERTY_MEDIASEEKING_TIMEFORMAT","features":[431]},{"name":"KSPROPERTY_MEMBERSHEADER","features":[431]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_MULTICHANNEL","features":[431]},{"name":"KSPROPERTY_MEMBER_FLAG_BASICSUPPORT_UNIFORM","features":[431]},{"name":"KSPROPERTY_MEMBER_FLAG_DEFAULT","features":[431]},{"name":"KSPROPERTY_MEMBER_RANGES","features":[431]},{"name":"KSPROPERTY_MEMBER_STEPPEDRANGES","features":[431]},{"name":"KSPROPERTY_MEMBER_VALUES","features":[431]},{"name":"KSPROPERTY_MEMORY_TRANSPORT","features":[431]},{"name":"KSPROPERTY_MPEG2VID","features":[431]},{"name":"KSPROPERTY_MPEG2VID_16_9_PANSCAN","features":[431]},{"name":"KSPROPERTY_MPEG2VID_16_9_RECT","features":[431]},{"name":"KSPROPERTY_MPEG2VID_4_3_RECT","features":[431]},{"name":"KSPROPERTY_MPEG2VID_CUR_MODE","features":[431]},{"name":"KSPROPERTY_MPEG2VID_MODES","features":[431]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_ATTRIBUTES","features":[431]},{"name":"KSPROPERTY_MPEG4_MEDIATYPE_SD_BOX","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENTTOPICS_XML","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_EVENT_INFO","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_INFO","features":[305,431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_METADATA_TYPE_EVENTSINFO","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTP","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_HEADER","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_CUSTOM","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_DISABLE","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_NTPINFO_TYPE_HOSTNTP","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_PROPERTY","features":[431]},{"name":"KSPROPERTY_NETWORKCAMERACONTROL_URI","features":[431]},{"name":"KSPROPERTY_ONESHOT_DISCONNECT","features":[431]},{"name":"KSPROPERTY_ONESHOT_RECONNECT","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE_CLIPLIST","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORKEY","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE_COLORREF","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE_DISPLAYCHANGE","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE_INTERESTS","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE_PALETTE","features":[431]},{"name":"KSPROPERTY_OVERLAYUPDATE_VIDEOPOSITION","features":[431]},{"name":"KSPROPERTY_PIN","features":[431]},{"name":"KSPROPERTY_PIN_CATEGORY","features":[431]},{"name":"KSPROPERTY_PIN_CINSTANCES","features":[431]},{"name":"KSPROPERTY_PIN_COMMUNICATION","features":[431]},{"name":"KSPROPERTY_PIN_CONSTRAINEDDATARANGES","features":[431]},{"name":"KSPROPERTY_PIN_CTYPES","features":[431]},{"name":"KSPROPERTY_PIN_DATAFLOW","features":[431]},{"name":"KSPROPERTY_PIN_DATAINTERSECTION","features":[431]},{"name":"KSPROPERTY_PIN_DATARANGES","features":[431]},{"name":"KSPROPERTY_PIN_FLAGS_ATTRIBUTE_RANGE_AWARE","features":[431]},{"name":"KSPROPERTY_PIN_FLAGS_MASK","features":[431]},{"name":"KSPROPERTY_PIN_GLOBALCINSTANCES","features":[431]},{"name":"KSPROPERTY_PIN_INTERFACES","features":[431]},{"name":"KSPROPERTY_PIN_MEDIUMS","features":[431]},{"name":"KSPROPERTY_PIN_MODEDATAFORMATS","features":[431]},{"name":"KSPROPERTY_PIN_NAME","features":[431]},{"name":"KSPROPERTY_PIN_NECESSARYINSTANCES","features":[431]},{"name":"KSPROPERTY_PIN_PHYSICALCONNECTION","features":[431]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT","features":[431]},{"name":"KSPROPERTY_PIN_PROPOSEDATAFORMAT2","features":[431]},{"name":"KSPROPERTY_POSITIONS","features":[431]},{"name":"KSPROPERTY_PREFERRED_CAPTURE_SURFACE","features":[431]},{"name":"KSPROPERTY_QUALITY","features":[431]},{"name":"KSPROPERTY_QUALITY_ERROR","features":[431]},{"name":"KSPROPERTY_QUALITY_REPORT","features":[431]},{"name":"KSPROPERTY_RAW_AVC_CMD","features":[431]},{"name":"KSPROPERTY_RTAUDIO","features":[431]},{"name":"KSPROPERTY_RTAUDIO_BUFFER","features":[431]},{"name":"KSPROPERTY_RTAUDIO_BUFFER_WITH_NOTIFICATION","features":[431]},{"name":"KSPROPERTY_RTAUDIO_CLOCKREGISTER","features":[431]},{"name":"KSPROPERTY_RTAUDIO_GETPOSITIONFUNCTION","features":[431]},{"name":"KSPROPERTY_RTAUDIO_GETREADPACKET","features":[431]},{"name":"KSPROPERTY_RTAUDIO_HWLATENCY","features":[431]},{"name":"KSPROPERTY_RTAUDIO_PACKETCOUNT","features":[431]},{"name":"KSPROPERTY_RTAUDIO_PACKETVREGISTER","features":[431]},{"name":"KSPROPERTY_RTAUDIO_POSITIONREGISTER","features":[431]},{"name":"KSPROPERTY_RTAUDIO_PRESENTATION_POSITION","features":[431]},{"name":"KSPROPERTY_RTAUDIO_QUERY_NOTIFICATION_SUPPORT","features":[431]},{"name":"KSPROPERTY_RTAUDIO_REGISTER_NOTIFICATION_EVENT","features":[431]},{"name":"KSPROPERTY_RTAUDIO_SETWRITEPACKET","features":[431]},{"name":"KSPROPERTY_RTAUDIO_UNREGISTER_NOTIFICATION_EVENT","features":[431]},{"name":"KSPROPERTY_RTC_READER","features":[431]},{"name":"KSPROPERTY_SELECTOR_NODE_S","features":[431]},{"name":"KSPROPERTY_SELECTOR_NUM_SOURCES","features":[431]},{"name":"KSPROPERTY_SELECTOR_S","features":[431]},{"name":"KSPROPERTY_SELECTOR_SOURCE_NODE_ID","features":[431]},{"name":"KSPROPERTY_SERIAL","features":[431]},{"name":"KSPROPERTY_SERIALHDR","features":[431]},{"name":"KSPROPERTY_SOUNDDETECTOR","features":[431]},{"name":"KSPROPERTY_SOUNDDETECTOR_ARMED","features":[431]},{"name":"KSPROPERTY_SOUNDDETECTOR_MATCHRESULT","features":[431]},{"name":"KSPROPERTY_SOUNDDETECTOR_PATTERNS","features":[431]},{"name":"KSPROPERTY_SOUNDDETECTOR_RESET","features":[431]},{"name":"KSPROPERTY_SOUNDDETECTOR_STREAMINGSUPPORT","features":[431]},{"name":"KSPROPERTY_SOUNDDETECTOR_SUPPORTEDPATTERNS","features":[431]},{"name":"KSPROPERTY_SPHLI","features":[431]},{"name":"KSPROPERTY_SPPAL","features":[431]},{"name":"KSPROPERTY_STEPPING_LONG","features":[431]},{"name":"KSPROPERTY_STEPPING_LONGLONG","features":[431]},{"name":"KSPROPERTY_STREAM","features":[431]},{"name":"KSPROPERTY_STREAMINTERFACE","features":[431]},{"name":"KSPROPERTY_STREAMINTERFACE_HEADERSIZE","features":[431]},{"name":"KSPROPERTY_STREAM_ALLOCATOR","features":[431]},{"name":"KSPROPERTY_STREAM_DEGRADATION","features":[431]},{"name":"KSPROPERTY_STREAM_FRAMETIME","features":[431]},{"name":"KSPROPERTY_STREAM_MASTERCLOCK","features":[431]},{"name":"KSPROPERTY_STREAM_PIPE_ID","features":[431]},{"name":"KSPROPERTY_STREAM_PRESENTATIONEXTENT","features":[431]},{"name":"KSPROPERTY_STREAM_PRESENTATIONTIME","features":[431]},{"name":"KSPROPERTY_STREAM_QUALITY","features":[431]},{"name":"KSPROPERTY_STREAM_RATE","features":[431]},{"name":"KSPROPERTY_STREAM_RATECAPABILITY","features":[431]},{"name":"KSPROPERTY_STREAM_TIMEFORMAT","features":[431]},{"name":"KSPROPERTY_TELEPHONY_CALLCONTROL","features":[431]},{"name":"KSPROPERTY_TELEPHONY_CALLHOLD","features":[431]},{"name":"KSPROPERTY_TELEPHONY_CALLINFO","features":[431]},{"name":"KSPROPERTY_TELEPHONY_CONTROL","features":[431]},{"name":"KSPROPERTY_TELEPHONY_ENDPOINTIDPAIR","features":[431]},{"name":"KSPROPERTY_TELEPHONY_MUTE_TX","features":[431]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERCHANGE","features":[431]},{"name":"KSPROPERTY_TELEPHONY_PROVIDERID","features":[431]},{"name":"KSPROPERTY_TELEPHONY_TOPOLOGY","features":[431]},{"name":"KSPROPERTY_TELEPHONY_VOLUME","features":[431]},{"name":"KSPROPERTY_TIMECODE","features":[431]},{"name":"KSPROPERTY_TIMECODE_NODE_S","features":[431]},{"name":"KSPROPERTY_TIMECODE_READER","features":[431]},{"name":"KSPROPERTY_TIMECODE_S","features":[431]},{"name":"KSPROPERTY_TOPOLOGY","features":[431]},{"name":"KSPROPERTY_TOPOLOGYNODE","features":[431]},{"name":"KSPROPERTY_TOPOLOGYNODE_ENABLE","features":[431]},{"name":"KSPROPERTY_TOPOLOGYNODE_RESET","features":[431]},{"name":"KSPROPERTY_TOPOLOGY_CATEGORIES","features":[431]},{"name":"KSPROPERTY_TOPOLOGY_CONNECTIONS","features":[431]},{"name":"KSPROPERTY_TOPOLOGY_NAME","features":[431]},{"name":"KSPROPERTY_TOPOLOGY_NODES","features":[431]},{"name":"KSPROPERTY_TUNER","features":[431]},{"name":"KSPROPERTY_TUNER_CAPS","features":[431]},{"name":"KSPROPERTY_TUNER_CAPS_S","features":[431]},{"name":"KSPROPERTY_TUNER_FREQUENCY","features":[431]},{"name":"KSPROPERTY_TUNER_FREQUENCY_S","features":[431]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM","features":[431]},{"name":"KSPROPERTY_TUNER_IF_MEDIUM_S","features":[431]},{"name":"KSPROPERTY_TUNER_INPUT","features":[431]},{"name":"KSPROPERTY_TUNER_INPUT_S","features":[431]},{"name":"KSPROPERTY_TUNER_MODE","features":[431]},{"name":"KSPROPERTY_TUNER_MODES","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_AM_RADIO","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_ATSC","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_CAPS","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_CAPS_S","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_DSS","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_FM_RADIO","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_S","features":[431]},{"name":"KSPROPERTY_TUNER_MODE_TV","features":[431]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS","features":[431]},{"name":"KSPROPERTY_TUNER_NETWORKTYPE_SCAN_CAPS_S","features":[431]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS","features":[431]},{"name":"KSPROPERTY_TUNER_SCAN_CAPS_S","features":[305,431]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS","features":[431]},{"name":"KSPROPERTY_TUNER_SCAN_STATUS_S","features":[431]},{"name":"KSPROPERTY_TUNER_STANDARD","features":[431]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE","features":[431]},{"name":"KSPROPERTY_TUNER_STANDARD_MODE_S","features":[305,431]},{"name":"KSPROPERTY_TUNER_STANDARD_S","features":[431]},{"name":"KSPROPERTY_TUNER_STATUS","features":[431]},{"name":"KSPROPERTY_TUNER_STATUS_S","features":[431]},{"name":"KSPROPERTY_TVAUDIO_CAPS","features":[431]},{"name":"KSPROPERTY_TVAUDIO_CAPS_S","features":[431]},{"name":"KSPROPERTY_TVAUDIO_CURRENTLY_AVAILABLE_MODES","features":[431]},{"name":"KSPROPERTY_TVAUDIO_MODE","features":[431]},{"name":"KSPROPERTY_TVAUDIO_S","features":[431]},{"name":"KSPROPERTY_TYPE_BASICSUPPORT","features":[431]},{"name":"KSPROPERTY_TYPE_COPYPAYLOAD","features":[431]},{"name":"KSPROPERTY_TYPE_DEFAULTVALUES","features":[431]},{"name":"KSPROPERTY_TYPE_FSFILTERSCOPE","features":[431]},{"name":"KSPROPERTY_TYPE_GET","features":[431]},{"name":"KSPROPERTY_TYPE_GETPAYLOADSIZE","features":[431]},{"name":"KSPROPERTY_TYPE_HIGHPRIORITY","features":[431]},{"name":"KSPROPERTY_TYPE_RELATIONS","features":[431]},{"name":"KSPROPERTY_TYPE_SERIALIZERAW","features":[431]},{"name":"KSPROPERTY_TYPE_SERIALIZESET","features":[431]},{"name":"KSPROPERTY_TYPE_SERIALIZESIZE","features":[431]},{"name":"KSPROPERTY_TYPE_SET","features":[431]},{"name":"KSPROPERTY_TYPE_SETSUPPORT","features":[431]},{"name":"KSPROPERTY_TYPE_TOPOLOGY","features":[431]},{"name":"KSPROPERTY_TYPE_UNSERIALIZERAW","features":[431]},{"name":"KSPROPERTY_TYPE_UNSERIALIZESET","features":[431]},{"name":"KSPROPERTY_VBICAP","features":[431]},{"name":"KSPROPERTY_VBICAP_PROPERTIES_PROTECTION","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_CC_SUBSTREAMS_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_NABTS_SUBSTREAMS_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_DISCOVERED_BIT_ARRAY","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_REQUESTED_BIT_ARRAY","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_SCANLINES_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_PIN_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_CC_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_PIN_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_COMMON_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_PIN_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_STATISTICS_NABTS_S","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_DISCOVERED_BIT_ARRAY","features":[431]},{"name":"KSPROPERTY_VBICODECFILTERING_SUBSTREAMS_REQUESTED_BIT_ARRAY","features":[431]},{"name":"KSPROPERTY_VIDCAP_CAMERACONTROL","features":[431]},{"name":"KSPROPERTY_VIDCAP_CROSSBAR","features":[431]},{"name":"KSPROPERTY_VIDCAP_DROPPEDFRAMES","features":[431]},{"name":"KSPROPERTY_VIDCAP_SELECTOR","features":[431]},{"name":"KSPROPERTY_VIDCAP_TVAUDIO","features":[431]},{"name":"KSPROPERTY_VIDCAP_VIDEOCOMPRESSION","features":[431]},{"name":"KSPROPERTY_VIDCAP_VIDEOCONTROL","features":[431]},{"name":"KSPROPERTY_VIDCAP_VIDEODECODER","features":[431]},{"name":"KSPROPERTY_VIDCAP_VIDEOENCODER","features":[431]},{"name":"KSPROPERTY_VIDCAP_VIDEOPROCAMP","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_GETINFO_S","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_KEYFRAME_RATE","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_FRAME_SIZE","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_OVERRIDE_KEYFRAME","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_PFRAMES_PER_KEYFRAME","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_QUALITY","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_S1","features":[431]},{"name":"KSPROPERTY_VIDEOCOMPRESSION_WINDOWSIZE","features":[431]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE","features":[431]},{"name":"KSPROPERTY_VIDEOCONTROL_ACTUAL_FRAME_RATE_S","features":[305,431]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS","features":[431]},{"name":"KSPROPERTY_VIDEOCONTROL_CAPS_S","features":[431]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES","features":[431]},{"name":"KSPROPERTY_VIDEOCONTROL_FRAME_RATES_S","features":[305,431]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE","features":[431]},{"name":"KSPROPERTY_VIDEOCONTROL_MODE_S","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_CAPS","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_CAPS_S","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_OUTPUT_ENABLE","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_S","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_STANDARD","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_STATUS","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_STATUS2_S","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_STATUS_S","features":[431]},{"name":"KSPROPERTY_VIDEODECODER_VCR_TIMING","features":[431]},{"name":"KSPROPERTY_VIDEOENCODER_CAPS","features":[431]},{"name":"KSPROPERTY_VIDEOENCODER_CC_ENABLE","features":[431]},{"name":"KSPROPERTY_VIDEOENCODER_COPYPROTECTION","features":[431]},{"name":"KSPROPERTY_VIDEOENCODER_S","features":[431]},{"name":"KSPROPERTY_VIDEOENCODER_STANDARD","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_BACKLIGHT_COMPENSATION","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_BRIGHTNESS","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_COLORENABLE","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_CONTRAST","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_DIGITAL_MULTIPLIER_LIMIT","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_AUTO","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_FLAGS_MANUAL","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAIN","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_GAMMA","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_HUE","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_NODE_S2","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_POWERLINE_FREQUENCY","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_S","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_S2","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_SATURATION","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_SHARPNESS","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE","features":[431]},{"name":"KSPROPERTY_VIDEOPROCAMP_WHITEBALANCE_COMPONENT","features":[431]},{"name":"KSPROPERTY_VIDMEM_TRANSPORT","features":[431]},{"name":"KSPROPERTY_VPCONFIG","features":[431]},{"name":"KSPROPERTY_VPCONFIG_DDRAWHANDLE","features":[431]},{"name":"KSPROPERTY_VPCONFIG_DDRAWSURFACEHANDLE","features":[431]},{"name":"KSPROPERTY_VPCONFIG_DECIMATIONCAPABILITY","features":[431]},{"name":"KSPROPERTY_VPCONFIG_GETCONNECTINFO","features":[431]},{"name":"KSPROPERTY_VPCONFIG_GETVIDEOFORMAT","features":[431]},{"name":"KSPROPERTY_VPCONFIG_INFORMVPINPUT","features":[431]},{"name":"KSPROPERTY_VPCONFIG_INVERTPOLARITY","features":[431]},{"name":"KSPROPERTY_VPCONFIG_MAXPIXELRATE","features":[431]},{"name":"KSPROPERTY_VPCONFIG_NUMCONNECTINFO","features":[431]},{"name":"KSPROPERTY_VPCONFIG_NUMVIDEOFORMAT","features":[431]},{"name":"KSPROPERTY_VPCONFIG_SCALEFACTOR","features":[431]},{"name":"KSPROPERTY_VPCONFIG_SETCONNECTINFO","features":[431]},{"name":"KSPROPERTY_VPCONFIG_SETVIDEOFORMAT","features":[431]},{"name":"KSPROPERTY_VPCONFIG_SURFACEPARAMS","features":[431]},{"name":"KSPROPERTY_VPCONFIG_VIDEOPORTID","features":[431]},{"name":"KSPROPERTY_VPCONFIG_VPDATAINFO","features":[431]},{"name":"KSPROPERTY_WAVE","features":[431]},{"name":"KSPROPERTY_WAVE_BUFFER","features":[431]},{"name":"KSPROPERTY_WAVE_COMPATIBLE_CAPABILITIES","features":[431]},{"name":"KSPROPERTY_WAVE_FREQUENCY","features":[431]},{"name":"KSPROPERTY_WAVE_INPUT_CAPABILITIES","features":[431]},{"name":"KSPROPERTY_WAVE_OUTPUT_CAPABILITIES","features":[431]},{"name":"KSPROPERTY_WAVE_PAN","features":[431]},{"name":"KSPROPERTY_WAVE_QUEUED_POSITION","features":[431]},{"name":"KSPROPERTY_WAVE_VOLUME","features":[431]},{"name":"KSPROPSETID_AC3","features":[431]},{"name":"KSPROPSETID_Audio","features":[431]},{"name":"KSPROPSETID_AudioBufferDuration","features":[431]},{"name":"KSPROPSETID_AudioDecoderOut","features":[431]},{"name":"KSPROPSETID_AudioEngine","features":[431]},{"name":"KSPROPSETID_AudioModule","features":[431]},{"name":"KSPROPSETID_AudioPosture","features":[431]},{"name":"KSPROPSETID_AudioResourceManagement","features":[431]},{"name":"KSPROPSETID_AudioSignalProcessing","features":[431]},{"name":"KSPROPSETID_Bibliographic","features":[431]},{"name":"KSPROPSETID_BtAudio","features":[431]},{"name":"KSPROPSETID_Clock","features":[431]},{"name":"KSPROPSETID_Connection","features":[431]},{"name":"KSPROPSETID_CopyProt","features":[431]},{"name":"KSPROPSETID_Cyclic","features":[431]},{"name":"KSPROPSETID_DirectSound3DBuffer","features":[431]},{"name":"KSPROPSETID_DirectSound3DListener","features":[431]},{"name":"KSPROPSETID_DrmAudioStream","features":[431]},{"name":"KSPROPSETID_DvdSubPic","features":[431]},{"name":"KSPROPSETID_FMRXControl","features":[431]},{"name":"KSPROPSETID_FMRXTopology","features":[431]},{"name":"KSPROPSETID_General","features":[431]},{"name":"KSPROPSETID_Hrtf3d","features":[431]},{"name":"KSPROPSETID_InterleavedAudio","features":[431]},{"name":"KSPROPSETID_Itd3d","features":[431]},{"name":"KSPROPSETID_Jack","features":[431]},{"name":"KSPROPSETID_MPEG4_MediaType_Attributes","features":[431]},{"name":"KSPROPSETID_MediaSeeking","features":[431]},{"name":"KSPROPSETID_MemoryTransport","features":[431]},{"name":"KSPROPSETID_Mpeg2Vid","features":[431]},{"name":"KSPROPSETID_OverlayUpdate","features":[431]},{"name":"KSPROPSETID_Pin","features":[431]},{"name":"KSPROPSETID_PinMDLCacheClearProp","features":[431]},{"name":"KSPROPSETID_Quality","features":[431]},{"name":"KSPROPSETID_RtAudio","features":[431]},{"name":"KSPROPSETID_SoundDetector","features":[431]},{"name":"KSPROPSETID_SoundDetector2","features":[431]},{"name":"KSPROPSETID_Stream","features":[431]},{"name":"KSPROPSETID_StreamAllocator","features":[431]},{"name":"KSPROPSETID_StreamInterface","features":[431]},{"name":"KSPROPSETID_TSRateChange","features":[431]},{"name":"KSPROPSETID_TelephonyControl","features":[431]},{"name":"KSPROPSETID_TelephonyTopology","features":[431]},{"name":"KSPROPSETID_Topology","features":[431]},{"name":"KSPROPSETID_TopologyNode","features":[431]},{"name":"KSPROPSETID_VBICAP_PROPERTIES","features":[431]},{"name":"KSPROPSETID_VBICodecFiltering","features":[431]},{"name":"KSPROPSETID_VPConfig","features":[431]},{"name":"KSPROPSETID_VPVBIConfig","features":[431]},{"name":"KSPROPSETID_VramCapture","features":[431]},{"name":"KSPROPSETID_Wave","features":[431]},{"name":"KSPROPTYPESETID_General","features":[431]},{"name":"KSP_NODE","features":[431]},{"name":"KSP_PIN","features":[431]},{"name":"KSP_TIMEFORMAT","features":[431]},{"name":"KSQUALITY","features":[431]},{"name":"KSQUALITY_MANAGER","features":[305,431]},{"name":"KSQUERYBUFFER","features":[305,431]},{"name":"KSRATE","features":[431]},{"name":"KSRATE_CAPABILITY","features":[431]},{"name":"KSRATE_NOPRESENTATIONDURATION","features":[431]},{"name":"KSRATE_NOPRESENTATIONSTART","features":[431]},{"name":"KSRELATIVEEVENT","features":[305,431]},{"name":"KSRELATIVEEVENT_FLAG_HANDLE","features":[431]},{"name":"KSRELATIVEEVENT_FLAG_POINTER","features":[431]},{"name":"KSRESET","features":[431]},{"name":"KSRESET_BEGIN","features":[431]},{"name":"KSRESET_END","features":[431]},{"name":"KSRESOLUTION","features":[431]},{"name":"KSRTAUDIO_BUFFER","features":[305,431]},{"name":"KSRTAUDIO_BUFFER32","features":[305,431]},{"name":"KSRTAUDIO_BUFFER_PROPERTY","features":[431]},{"name":"KSRTAUDIO_BUFFER_PROPERTY32","features":[431]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION","features":[431]},{"name":"KSRTAUDIO_BUFFER_PROPERTY_WITH_NOTIFICATION32","features":[431]},{"name":"KSRTAUDIO_GETREADPACKET_INFO","features":[305,431]},{"name":"KSRTAUDIO_HWLATENCY","features":[431]},{"name":"KSRTAUDIO_HWREGISTER","features":[431]},{"name":"KSRTAUDIO_HWREGISTER32","features":[431]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY","features":[431]},{"name":"KSRTAUDIO_HWREGISTER_PROPERTY32","features":[431]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY","features":[305,431]},{"name":"KSRTAUDIO_NOTIFICATION_EVENT_PROPERTY32","features":[431]},{"name":"KSRTAUDIO_PACKETVREGISTER","features":[431]},{"name":"KSRTAUDIO_PACKETVREGISTER_PROPERTY","features":[431]},{"name":"KSRTAUDIO_SETWRITEPACKET_INFO","features":[431]},{"name":"KSSOUNDDETECTORPROPERTY","features":[431]},{"name":"KSSTATE","features":[431]},{"name":"KSSTATE_ACQUIRE","features":[431]},{"name":"KSSTATE_PAUSE","features":[431]},{"name":"KSSTATE_RUN","features":[431]},{"name":"KSSTATE_STOP","features":[431]},{"name":"KSSTREAMALLOCATOR_STATUS","features":[431]},{"name":"KSSTREAMALLOCATOR_STATUS_EX","features":[431]},{"name":"KSSTREAM_FAILUREEXCEPTION","features":[431]},{"name":"KSSTREAM_HEADER","features":[431]},{"name":"KSSTREAM_HEADER","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_BUFFEREDTRANSFER","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_DATADISCONTINUITY","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_DURATIONVALID","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFPHOTOSEQUENCE","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_ENDOFSTREAM","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_FLUSHONPAUSE","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_FRAMEINFO","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_LOOPEDDATA","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_METADATA","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_PERSIST_SAMPLE","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_PREROLL","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_SAMPLE_PERSISTED","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_SECUREBUFFERTRANSFER","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_SPLICEPOINT","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEDISCONTINUITY","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_TIMEVALID","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_TYPECHANGED","features":[431]},{"name":"KSSTREAM_HEADER_OPTIONSF_VRAM_DATA_TRANSFER","features":[431]},{"name":"KSSTREAM_HEADER_TRACK_COMPLETION_NUMBERS","features":[431]},{"name":"KSSTREAM_METADATA_INFO","features":[431]},{"name":"KSSTREAM_NONPAGED_DATA","features":[431]},{"name":"KSSTREAM_PAGED_DATA","features":[431]},{"name":"KSSTREAM_READ","features":[431]},{"name":"KSSTREAM_SEGMENT","features":[305,431]},{"name":"KSSTREAM_SYNCHRONOUS","features":[431]},{"name":"KSSTREAM_UVC_METADATA","features":[431]},{"name":"KSSTREAM_UVC_METADATATYPE_TIMESTAMP","features":[431]},{"name":"KSSTREAM_UVC_SECURE_ATTRIBUTE_SIZE","features":[431]},{"name":"KSSTREAM_WRITE","features":[431]},{"name":"KSSTRING_Allocator","features":[431]},{"name":"KSSTRING_AllocatorEx","features":[431]},{"name":"KSSTRING_Clock","features":[431]},{"name":"KSSTRING_Filter","features":[431]},{"name":"KSSTRING_Pin","features":[431]},{"name":"KSSTRING_TopologyNode","features":[431]},{"name":"KSTELEPHONY_CALLCONTROL","features":[431]},{"name":"KSTELEPHONY_CALLINFO","features":[431]},{"name":"KSTELEPHONY_PROVIDERCHANGE","features":[431]},{"name":"KSTIME","features":[431]},{"name":"KSTIME_FORMAT_BYTE","features":[431]},{"name":"KSTIME_FORMAT_FIELD","features":[431]},{"name":"KSTIME_FORMAT_FRAME","features":[431]},{"name":"KSTIME_FORMAT_MEDIA_TIME","features":[431]},{"name":"KSTIME_FORMAT_SAMPLE","features":[431]},{"name":"KSTOPOLOGY","features":[431]},{"name":"KSTOPOLOGY_CONNECTION","features":[431]},{"name":"KSTOPOLOGY_ENDPOINTID","features":[431]},{"name":"KSTOPOLOGY_ENDPOINTIDPAIR","features":[431]},{"name":"KSVPMAXPIXELRATE","features":[431]},{"name":"KSVPSIZE_PROP","features":[431]},{"name":"KSVPSURFACEPARAMS","features":[431]},{"name":"KSWAVETABLE_WAVE_DESC","features":[305,431]},{"name":"KSWAVE_BUFFER","features":[431]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_LOOPING","features":[431]},{"name":"KSWAVE_BUFFER_ATTRIBUTEF_STATIC","features":[431]},{"name":"KSWAVE_COMPATCAPS","features":[431]},{"name":"KSWAVE_COMPATCAPS_INPUT","features":[431]},{"name":"KSWAVE_COMPATCAPS_OUTPUT","features":[431]},{"name":"KSWAVE_INPUT_CAPABILITIES","features":[431]},{"name":"KSWAVE_OUTPUT_CAPABILITIES","features":[431]},{"name":"KSWAVE_VOLUME","features":[431]},{"name":"KS_AMCONTROL_COLORINFO_PRESENT","features":[431]},{"name":"KS_AMCONTROL_PAD_TO_16x9","features":[431]},{"name":"KS_AMCONTROL_PAD_TO_4x3","features":[431]},{"name":"KS_AMCONTROL_USED","features":[431]},{"name":"KS_AMPixAspectRatio","features":[431]},{"name":"KS_AMVPDATAINFO","features":[305,431]},{"name":"KS_AMVPDIMINFO","features":[305,431]},{"name":"KS_AMVPSIZE","features":[431]},{"name":"KS_AMVP_BEST_BANDWIDTH","features":[431]},{"name":"KS_AMVP_DO_NOT_CARE","features":[431]},{"name":"KS_AMVP_INPUT_SAME_AS_OUTPUT","features":[431]},{"name":"KS_AMVP_MODE","features":[431]},{"name":"KS_AMVP_MODE_BOBINTERLEAVED","features":[431]},{"name":"KS_AMVP_MODE_BOBNONINTERLEAVED","features":[431]},{"name":"KS_AMVP_MODE_SKIPEVEN","features":[431]},{"name":"KS_AMVP_MODE_SKIPODD","features":[431]},{"name":"KS_AMVP_MODE_WEAVE","features":[431]},{"name":"KS_AMVP_SELECTFORMATBY","features":[431]},{"name":"KS_AM_ExactRateChange","features":[431]},{"name":"KS_AM_PROPERTY_TS_RATE_CHANGE","features":[431]},{"name":"KS_AM_RATE_ExactRateChange","features":[431]},{"name":"KS_AM_RATE_MaxFullDataRate","features":[431]},{"name":"KS_AM_RATE_SimpleRateChange","features":[431]},{"name":"KS_AM_RATE_Step","features":[431]},{"name":"KS_AM_SimpleRateChange","features":[431]},{"name":"KS_AM_UseNewCSSKey","features":[431]},{"name":"KS_ANALOGVIDEOINFO","features":[305,431]},{"name":"KS_AnalogVideoStandard","features":[431]},{"name":"KS_AnalogVideo_NTSC_433","features":[431]},{"name":"KS_AnalogVideo_NTSC_M","features":[431]},{"name":"KS_AnalogVideo_NTSC_M_J","features":[431]},{"name":"KS_AnalogVideo_NTSC_Mask","features":[431]},{"name":"KS_AnalogVideo_None","features":[431]},{"name":"KS_AnalogVideo_PAL_60","features":[431]},{"name":"KS_AnalogVideo_PAL_B","features":[431]},{"name":"KS_AnalogVideo_PAL_D","features":[431]},{"name":"KS_AnalogVideo_PAL_G","features":[431]},{"name":"KS_AnalogVideo_PAL_H","features":[431]},{"name":"KS_AnalogVideo_PAL_I","features":[431]},{"name":"KS_AnalogVideo_PAL_M","features":[431]},{"name":"KS_AnalogVideo_PAL_Mask","features":[431]},{"name":"KS_AnalogVideo_PAL_N","features":[431]},{"name":"KS_AnalogVideo_PAL_N_COMBO","features":[431]},{"name":"KS_AnalogVideo_SECAM_B","features":[431]},{"name":"KS_AnalogVideo_SECAM_D","features":[431]},{"name":"KS_AnalogVideo_SECAM_G","features":[431]},{"name":"KS_AnalogVideo_SECAM_H","features":[431]},{"name":"KS_AnalogVideo_SECAM_K","features":[431]},{"name":"KS_AnalogVideo_SECAM_K1","features":[431]},{"name":"KS_AnalogVideo_SECAM_L","features":[431]},{"name":"KS_AnalogVideo_SECAM_L1","features":[431]},{"name":"KS_AnalogVideo_SECAM_Mask","features":[431]},{"name":"KS_BITMAPINFOHEADER","features":[431]},{"name":"KS_BI_BITFIELDS","features":[431]},{"name":"KS_BI_JPEG","features":[431]},{"name":"KS_BI_RGB","features":[431]},{"name":"KS_BI_RLE4","features":[431]},{"name":"KS_BI_RLE8","features":[431]},{"name":"KS_CAMERACONTROL_ASYNC_RESET","features":[431]},{"name":"KS_CAMERACONTROL_ASYNC_START","features":[431]},{"name":"KS_CAMERACONTROL_ASYNC_STOP","features":[431]},{"name":"KS_CAPTURE_ALLOC_INVALID","features":[431]},{"name":"KS_CAPTURE_ALLOC_SECURE_BUFFER","features":[431]},{"name":"KS_CAPTURE_ALLOC_SYSTEM","features":[431]},{"name":"KS_CAPTURE_ALLOC_SYSTEM_AGP","features":[431]},{"name":"KS_CAPTURE_ALLOC_VRAM","features":[431]},{"name":"KS_CAPTURE_ALLOC_VRAM_MAPPED","features":[431]},{"name":"KS_CC_SUBSTREAM_EVEN","features":[431]},{"name":"KS_CC_SUBSTREAM_FIELD1_MASK","features":[431]},{"name":"KS_CC_SUBSTREAM_FIELD2_MASK","features":[431]},{"name":"KS_CC_SUBSTREAM_ODD","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC1","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC2","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC3","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_CC4","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_T1","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_T2","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_T3","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_T4","features":[431]},{"name":"KS_CC_SUBSTREAM_SERVICE_XDS","features":[431]},{"name":"KS_COLCON","features":[431]},{"name":"KS_COMPRESSION","features":[431]},{"name":"KS_COPYPROTECT_RestrictDuplication","features":[431]},{"name":"KS_COPY_MACROVISION","features":[431]},{"name":"KS_COPY_MACROVISION_LEVEL","features":[431]},{"name":"KS_CameraControlAsyncOperation","features":[431]},{"name":"KS_CompressionCaps","features":[431]},{"name":"KS_CompressionCaps_CanBFrame","features":[431]},{"name":"KS_CompressionCaps_CanCrunch","features":[431]},{"name":"KS_CompressionCaps_CanKeyFrame","features":[431]},{"name":"KS_CompressionCaps_CanQuality","features":[431]},{"name":"KS_CompressionCaps_CanWindow","features":[431]},{"name":"KS_DATAFORMAT_H264VIDEOINFO","features":[431]},{"name":"KS_DATAFORMAT_IMAGEINFO","features":[431]},{"name":"KS_DATAFORMAT_MPEGVIDEOINFO2","features":[305,431]},{"name":"KS_DATAFORMAT_VBIINFOHEADER","features":[431]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER","features":[305,431]},{"name":"KS_DATAFORMAT_VIDEOINFOHEADER2","features":[305,431]},{"name":"KS_DATAFORMAT_VIDEOINFO_PALETTE","features":[305,431]},{"name":"KS_DATARANGE_ANALOGVIDEO","features":[305,431]},{"name":"KS_DATARANGE_H264_VIDEO","features":[305,431]},{"name":"KS_DATARANGE_IMAGE","features":[305,431]},{"name":"KS_DATARANGE_MPEG1_VIDEO","features":[305,431]},{"name":"KS_DATARANGE_MPEG2_VIDEO","features":[305,431]},{"name":"KS_DATARANGE_VIDEO","features":[305,431]},{"name":"KS_DATARANGE_VIDEO2","features":[305,431]},{"name":"KS_DATARANGE_VIDEO_PALETTE","features":[305,431]},{"name":"KS_DATARANGE_VIDEO_VBI","features":[305,431]},{"name":"KS_DVDCOPYSTATE","features":[431]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_NOT_REQUIRED","features":[431]},{"name":"KS_DVDCOPYSTATE_AUTHENTICATION_REQUIRED","features":[431]},{"name":"KS_DVDCOPYSTATE_DONE","features":[431]},{"name":"KS_DVDCOPYSTATE_INITIALIZE","features":[431]},{"name":"KS_DVDCOPYSTATE_INITIALIZE_TITLE","features":[431]},{"name":"KS_DVDCOPY_BUSKEY","features":[431]},{"name":"KS_DVDCOPY_CHLGKEY","features":[431]},{"name":"KS_DVDCOPY_DISCKEY","features":[431]},{"name":"KS_DVDCOPY_REGION","features":[431]},{"name":"KS_DVDCOPY_SET_COPY_STATE","features":[431]},{"name":"KS_DVDCOPY_TITLEKEY","features":[431]},{"name":"KS_DVD_CGMS_COPY_ONCE","features":[431]},{"name":"KS_DVD_CGMS_COPY_PERMITTED","features":[431]},{"name":"KS_DVD_CGMS_COPY_PROTECT_MASK","features":[431]},{"name":"KS_DVD_CGMS_NO_COPY","features":[431]},{"name":"KS_DVD_CGMS_RESERVED_MASK","features":[431]},{"name":"KS_DVD_COPYRIGHTED","features":[431]},{"name":"KS_DVD_COPYRIGHT_MASK","features":[431]},{"name":"KS_DVD_NOT_COPYRIGHTED","features":[431]},{"name":"KS_DVD_SECTOR_NOT_PROTECTED","features":[431]},{"name":"KS_DVD_SECTOR_PROTECTED","features":[431]},{"name":"KS_DVD_SECTOR_PROTECT_MASK","features":[431]},{"name":"KS_DVD_YCrCb","features":[431]},{"name":"KS_DVD_YUV","features":[431]},{"name":"KS_FRAME_INFO","features":[305,431]},{"name":"KS_FRAMING_ITEM","features":[431]},{"name":"KS_FRAMING_RANGE","features":[431]},{"name":"KS_FRAMING_RANGE_WEIGHTED","features":[431]},{"name":"KS_H264VIDEOINFO","features":[431]},{"name":"KS_INTERLACE_1FieldPerSample","features":[431]},{"name":"KS_INTERLACE_DisplayModeBobOnly","features":[431]},{"name":"KS_INTERLACE_DisplayModeBobOrWeave","features":[431]},{"name":"KS_INTERLACE_DisplayModeMask","features":[431]},{"name":"KS_INTERLACE_DisplayModeWeaveOnly","features":[431]},{"name":"KS_INTERLACE_Field1First","features":[431]},{"name":"KS_INTERLACE_FieldPatBothIrregular","features":[431]},{"name":"KS_INTERLACE_FieldPatBothRegular","features":[431]},{"name":"KS_INTERLACE_FieldPatField1Only","features":[431]},{"name":"KS_INTERLACE_FieldPatField2Only","features":[431]},{"name":"KS_INTERLACE_FieldPatternMask","features":[431]},{"name":"KS_INTERLACE_IsInterlaced","features":[431]},{"name":"KS_INTERLACE_UNUSED","features":[431]},{"name":"KS_LogicalMemoryType","features":[431]},{"name":"KS_MACROVISION_DISABLED","features":[431]},{"name":"KS_MACROVISION_LEVEL1","features":[431]},{"name":"KS_MACROVISION_LEVEL2","features":[431]},{"name":"KS_MACROVISION_LEVEL3","features":[431]},{"name":"KS_MAX_SIZE_MPEG1_SEQUENCE_INFO","features":[431]},{"name":"KS_MPEG1VIDEOINFO","features":[305,431]},{"name":"KS_MPEG2Level","features":[431]},{"name":"KS_MPEG2Level_High","features":[431]},{"name":"KS_MPEG2Level_High1440","features":[431]},{"name":"KS_MPEG2Level_Low","features":[431]},{"name":"KS_MPEG2Level_Main","features":[431]},{"name":"KS_MPEG2Profile","features":[431]},{"name":"KS_MPEG2Profile_High","features":[431]},{"name":"KS_MPEG2Profile_Main","features":[431]},{"name":"KS_MPEG2Profile_SNRScalable","features":[431]},{"name":"KS_MPEG2Profile_Simple","features":[431]},{"name":"KS_MPEG2Profile_SpatiallyScalable","features":[431]},{"name":"KS_MPEG2_27MhzTimebase","features":[431]},{"name":"KS_MPEG2_DSS_UserData","features":[431]},{"name":"KS_MPEG2_DVB_UserData","features":[431]},{"name":"KS_MPEG2_DVDLine21Field1","features":[431]},{"name":"KS_MPEG2_DVDLine21Field2","features":[431]},{"name":"KS_MPEG2_DoPanScan","features":[431]},{"name":"KS_MPEG2_FilmCameraMode","features":[431]},{"name":"KS_MPEG2_LetterboxAnalogOut","features":[431]},{"name":"KS_MPEG2_SourceIsLetterboxed","features":[431]},{"name":"KS_MPEG2_WidescreenAnalogOut","features":[431]},{"name":"KS_MPEGAUDIOINFO","features":[431]},{"name":"KS_MPEGAUDIOINFO_27MhzTimebase","features":[431]},{"name":"KS_MPEGVIDEOINFO2","features":[305,431]},{"name":"KS_MemoryTypeAnyHost","features":[431]},{"name":"KS_MemoryTypeDeviceHostMapped","features":[431]},{"name":"KS_MemoryTypeDeviceSpecific","features":[431]},{"name":"KS_MemoryTypeDontCare","features":[431]},{"name":"KS_MemoryTypeKernelNonPaged","features":[431]},{"name":"KS_MemoryTypeKernelPaged","features":[431]},{"name":"KS_MemoryTypeUser","features":[431]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_ADVERTISER_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_LOCAL_CABLE_SYSTEM_CONTENT_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_MICROSOFT_RESERVED_TEST_DATA_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_ADVERTISER_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_NETWORK_WIDE_CONTENT_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_ADVERTISER_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_ORIGINAL_CONTENT_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_ADVERTISER_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_PRODUCTION_COMPANY_CONTENT_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_ADVERTISER_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_SYNDICATED_SHOW_CONTENT_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_ADVERTISER_BASE","features":[431]},{"name":"KS_NABTS_GROUPID_TELEVISION_STATION_CONTENT_BASE","features":[431]},{"name":"KS_Obsolete_VideoControlFlag_ExternalTriggerEnable","features":[431]},{"name":"KS_Obsolete_VideoControlFlag_Trigger","features":[431]},{"name":"KS_PhysConn_Audio_1394","features":[431]},{"name":"KS_PhysConn_Audio_AESDigital","features":[431]},{"name":"KS_PhysConn_Audio_AUX","features":[431]},{"name":"KS_PhysConn_Audio_AudioDecoder","features":[431]},{"name":"KS_PhysConn_Audio_Line","features":[431]},{"name":"KS_PhysConn_Audio_Mic","features":[431]},{"name":"KS_PhysConn_Audio_SCSI","features":[431]},{"name":"KS_PhysConn_Audio_SPDIFDigital","features":[431]},{"name":"KS_PhysConn_Audio_Tuner","features":[431]},{"name":"KS_PhysConn_Audio_USB","features":[431]},{"name":"KS_PhysConn_Video_1394","features":[431]},{"name":"KS_PhysConn_Video_AUX","features":[431]},{"name":"KS_PhysConn_Video_Composite","features":[431]},{"name":"KS_PhysConn_Video_ParallelDigital","features":[431]},{"name":"KS_PhysConn_Video_RGB","features":[431]},{"name":"KS_PhysConn_Video_SCART","features":[431]},{"name":"KS_PhysConn_Video_SCSI","features":[431]},{"name":"KS_PhysConn_Video_SVideo","features":[431]},{"name":"KS_PhysConn_Video_SerialDigital","features":[431]},{"name":"KS_PhysConn_Video_Tuner","features":[431]},{"name":"KS_PhysConn_Video_USB","features":[431]},{"name":"KS_PhysConn_Video_VideoDecoder","features":[431]},{"name":"KS_PhysConn_Video_VideoEncoder","features":[431]},{"name":"KS_PhysConn_Video_YRYBY","features":[431]},{"name":"KS_PhysicalConnectorType","features":[431]},{"name":"KS_PixAspectRatio_NTSC16x9","features":[431]},{"name":"KS_PixAspectRatio_NTSC4x3","features":[431]},{"name":"KS_PixAspectRatio_PAL16x9","features":[431]},{"name":"KS_PixAspectRatio_PAL4x3","features":[431]},{"name":"KS_RGBQUAD","features":[431]},{"name":"KS_SECURE_CAMERA_SCENARIO_ID","features":[431]},{"name":"KS_SEEKING_AbsolutePositioning","features":[431]},{"name":"KS_SEEKING_CAPABILITIES","features":[431]},{"name":"KS_SEEKING_CanGetCurrentPos","features":[431]},{"name":"KS_SEEKING_CanGetDuration","features":[431]},{"name":"KS_SEEKING_CanGetStopPos","features":[431]},{"name":"KS_SEEKING_CanPlayBackwards","features":[431]},{"name":"KS_SEEKING_CanSeekAbsolute","features":[431]},{"name":"KS_SEEKING_CanSeekBackwards","features":[431]},{"name":"KS_SEEKING_CanSeekForwards","features":[431]},{"name":"KS_SEEKING_FLAGS","features":[431]},{"name":"KS_SEEKING_IncrementalPositioning","features":[431]},{"name":"KS_SEEKING_NoPositioning","features":[431]},{"name":"KS_SEEKING_PositioningBitsMask","features":[431]},{"name":"KS_SEEKING_RelativePositioning","features":[431]},{"name":"KS_SEEKING_ReturnTime","features":[431]},{"name":"KS_SEEKING_SeekToKeyFrame","features":[431]},{"name":"KS_StreamingHint_CompQuality","features":[431]},{"name":"KS_StreamingHint_CompWindowSize","features":[431]},{"name":"KS_StreamingHint_FrameInterval","features":[431]},{"name":"KS_StreamingHint_KeyFrameRate","features":[431]},{"name":"KS_StreamingHint_PFrameRate","features":[431]},{"name":"KS_TRUECOLORINFO","features":[431]},{"name":"KS_TUNER_STRATEGY","features":[431]},{"name":"KS_TUNER_STRATEGY_DRIVER_TUNES","features":[431]},{"name":"KS_TUNER_STRATEGY_PLL","features":[431]},{"name":"KS_TUNER_STRATEGY_SIGNAL_STRENGTH","features":[431]},{"name":"KS_TUNER_TUNING_COARSE","features":[431]},{"name":"KS_TUNER_TUNING_EXACT","features":[431]},{"name":"KS_TUNER_TUNING_FINE","features":[431]},{"name":"KS_TUNER_TUNING_FLAGS","features":[431]},{"name":"KS_TVAUDIO_MODE_LANG_A","features":[431]},{"name":"KS_TVAUDIO_MODE_LANG_B","features":[431]},{"name":"KS_TVAUDIO_MODE_LANG_C","features":[431]},{"name":"KS_TVAUDIO_MODE_MONO","features":[431]},{"name":"KS_TVAUDIO_MODE_STEREO","features":[431]},{"name":"KS_TVAUDIO_PRESET_LANG_A","features":[431]},{"name":"KS_TVAUDIO_PRESET_LANG_B","features":[431]},{"name":"KS_TVAUDIO_PRESET_LANG_C","features":[431]},{"name":"KS_TVAUDIO_PRESET_STEREO","features":[431]},{"name":"KS_TVTUNER_CHANGE_BEGIN_TUNE","features":[431]},{"name":"KS_TVTUNER_CHANGE_END_TUNE","features":[431]},{"name":"KS_TVTUNER_CHANGE_INFO","features":[431]},{"name":"KS_VBICAP_PROTECTION_MV_DETECTED","features":[431]},{"name":"KS_VBICAP_PROTECTION_MV_HARDWARE","features":[431]},{"name":"KS_VBICAP_PROTECTION_MV_PRESENT","features":[431]},{"name":"KS_VBIDATARATE_CC","features":[431]},{"name":"KS_VBIDATARATE_NABTS","features":[431]},{"name":"KS_VBIINFOHEADER","features":[431]},{"name":"KS_VBI_FLAG_FIELD1","features":[431]},{"name":"KS_VBI_FLAG_FIELD2","features":[431]},{"name":"KS_VBI_FLAG_FRAME","features":[431]},{"name":"KS_VBI_FLAG_MV_DETECTED","features":[431]},{"name":"KS_VBI_FLAG_MV_HARDWARE","features":[431]},{"name":"KS_VBI_FLAG_MV_PRESENT","features":[431]},{"name":"KS_VBI_FLAG_TVTUNER_CHANGE","features":[431]},{"name":"KS_VBI_FLAG_VBIINFOHEADER_CHANGE","features":[431]},{"name":"KS_VBI_FRAME_INFO","features":[431]},{"name":"KS_VIDEODECODER_FLAGS","features":[431]},{"name":"KS_VIDEODECODER_FLAGS_CAN_DISABLE_OUTPUT","features":[431]},{"name":"KS_VIDEODECODER_FLAGS_CAN_INDICATE_LOCKED","features":[431]},{"name":"KS_VIDEODECODER_FLAGS_CAN_USE_VCR_LOCKING","features":[431]},{"name":"KS_VIDEOINFO","features":[305,431]},{"name":"KS_VIDEOINFOHEADER","features":[305,431]},{"name":"KS_VIDEOINFOHEADER2","features":[305,431]},{"name":"KS_VIDEOSTREAM_CAPTURE","features":[431]},{"name":"KS_VIDEOSTREAM_CC","features":[431]},{"name":"KS_VIDEOSTREAM_EDS","features":[431]},{"name":"KS_VIDEOSTREAM_IS_VPE","features":[431]},{"name":"KS_VIDEOSTREAM_NABTS","features":[431]},{"name":"KS_VIDEOSTREAM_PREVIEW","features":[431]},{"name":"KS_VIDEOSTREAM_STILL","features":[431]},{"name":"KS_VIDEOSTREAM_TELETEXT","features":[431]},{"name":"KS_VIDEOSTREAM_VBI","features":[431]},{"name":"KS_VIDEO_ALLOC_VPE_AGP","features":[431]},{"name":"KS_VIDEO_ALLOC_VPE_DISPLAY","features":[431]},{"name":"KS_VIDEO_ALLOC_VPE_SYSTEM","features":[431]},{"name":"KS_VIDEO_FLAG_B_FRAME","features":[431]},{"name":"KS_VIDEO_FLAG_FIELD1","features":[431]},{"name":"KS_VIDEO_FLAG_FIELD1FIRST","features":[431]},{"name":"KS_VIDEO_FLAG_FIELD2","features":[431]},{"name":"KS_VIDEO_FLAG_FIELD_MASK","features":[431]},{"name":"KS_VIDEO_FLAG_FRAME","features":[431]},{"name":"KS_VIDEO_FLAG_IPB_MASK","features":[431]},{"name":"KS_VIDEO_FLAG_I_FRAME","features":[431]},{"name":"KS_VIDEO_FLAG_P_FRAME","features":[431]},{"name":"KS_VIDEO_FLAG_REPEAT_FIELD","features":[431]},{"name":"KS_VIDEO_FLAG_WEAVE","features":[431]},{"name":"KS_VIDEO_STREAM_CONFIG_CAPS","features":[305,431]},{"name":"KS_VideoControlFlag_ExternalTriggerEnable","features":[431]},{"name":"KS_VideoControlFlag_FlipHorizontal","features":[431]},{"name":"KS_VideoControlFlag_FlipVertical","features":[431]},{"name":"KS_VideoControlFlag_IndependentImagePin","features":[431]},{"name":"KS_VideoControlFlag_StartPhotoSequenceCapture","features":[431]},{"name":"KS_VideoControlFlag_StillCapturePreviewFrame","features":[431]},{"name":"KS_VideoControlFlag_StopPhotoSequenceCapture","features":[431]},{"name":"KS_VideoControlFlag_Trigger","features":[431]},{"name":"KS_VideoControlFlags","features":[431]},{"name":"KS_VideoStreamingHints","features":[431]},{"name":"KS_iBLUE","features":[431]},{"name":"KS_iEGA_COLORS","features":[431]},{"name":"KS_iGREEN","features":[431]},{"name":"KS_iMASK_COLORS","features":[431]},{"name":"KS_iMAXBITS","features":[431]},{"name":"KS_iPALETTE","features":[431]},{"name":"KS_iPALETTE_COLORS","features":[431]},{"name":"KS_iRED","features":[431]},{"name":"KS_iTRUECOLOR","features":[431]},{"name":"KsAllocatorMode_Kernel","features":[431]},{"name":"KsAllocatorMode_User","features":[431]},{"name":"KsCreateAllocator","features":[305,431]},{"name":"KsCreateAllocator2","features":[305,431]},{"name":"KsCreateClock","features":[305,431]},{"name":"KsCreateClock2","features":[305,431]},{"name":"KsCreatePin","features":[305,431]},{"name":"KsCreatePin2","features":[305,431]},{"name":"KsCreateTopologyNode","features":[305,431]},{"name":"KsCreateTopologyNode2","features":[305,431]},{"name":"KsGetMediaType","features":[305,431,428]},{"name":"KsGetMediaTypeCount","features":[305,431]},{"name":"KsGetMultiplePinFactoryItems","features":[305,431]},{"name":"KsIoOperation_Read","features":[431]},{"name":"KsIoOperation_Write","features":[431]},{"name":"KsOpenDefaultDevice","features":[305,431]},{"name":"KsPeekOperation_AddRef","features":[431]},{"name":"KsPeekOperation_PeekOnly","features":[431]},{"name":"KsResolveRequiredAttributes","features":[431]},{"name":"KsSynchronousDeviceControl","features":[305,431]},{"name":"LIGHT_FILTER","features":[431]},{"name":"LOOPEDSTREAMING_POSITION_EVENT_DATA","features":[305,431]},{"name":"MAX_NABTS_VBI_LINES_PER_FIELD","features":[431]},{"name":"MAX_RESOURCEGROUPID_LENGTH","features":[431]},{"name":"MAX_SINK_DESCRIPTION_NAME_LENGTH","features":[431]},{"name":"MAX_WST_VBI_LINES_PER_FIELD","features":[431]},{"name":"MEDIUM_INFO","features":[305,431]},{"name":"MF_MDL_SHARED_PAYLOAD_KEY","features":[431]},{"name":"MIN_DEV_VER_FOR_FLAGS","features":[431]},{"name":"MIN_DEV_VER_FOR_QI","features":[431]},{"name":"MetadataId_BackgroundSegmentationMask","features":[431]},{"name":"MetadataId_CameraExtrinsics","features":[431]},{"name":"MetadataId_CameraIntrinsics","features":[431]},{"name":"MetadataId_CaptureStats","features":[431]},{"name":"MetadataId_Custom_Start","features":[431]},{"name":"MetadataId_DigitalWindow","features":[431]},{"name":"MetadataId_FrameIllumination","features":[431]},{"name":"MetadataId_PhotoConfirmation","features":[431]},{"name":"MetadataId_Standard_End","features":[431]},{"name":"MetadataId_Standard_Start","features":[431]},{"name":"MetadataId_UsbVideoHeader","features":[431]},{"name":"NABTSFEC_BUFFER","features":[431]},{"name":"NABTS_BUFFER","features":[431]},{"name":"NABTS_BUFFER_LINE","features":[431]},{"name":"NABTS_BUFFER_PICTURENUMBER_SUPPORT","features":[431]},{"name":"NABTS_BYTES_PER_LINE","features":[431]},{"name":"NABTS_LINES_PER_BUNDLE","features":[431]},{"name":"NABTS_PAYLOAD_PER_LINE","features":[431]},{"name":"NANOSECONDS","features":[431]},{"name":"OPTIMAL_WEIGHT_TOTALS","features":[431]},{"name":"PINNAME_DISPLAYPORT_OUT","features":[431]},{"name":"PINNAME_HDMI_OUT","features":[431]},{"name":"PINNAME_IMAGE","features":[431]},{"name":"PINNAME_SPDIF_IN","features":[431]},{"name":"PINNAME_SPDIF_OUT","features":[431]},{"name":"PINNAME_VIDEO_ANALOGVIDEOIN","features":[431]},{"name":"PINNAME_VIDEO_CAPTURE","features":[431]},{"name":"PINNAME_VIDEO_CC","features":[431]},{"name":"PINNAME_VIDEO_CC_CAPTURE","features":[431]},{"name":"PINNAME_VIDEO_EDS","features":[431]},{"name":"PINNAME_VIDEO_NABTS","features":[431]},{"name":"PINNAME_VIDEO_NABTS_CAPTURE","features":[431]},{"name":"PINNAME_VIDEO_PREVIEW","features":[431]},{"name":"PINNAME_VIDEO_STILL","features":[431]},{"name":"PINNAME_VIDEO_TELETEXT","features":[431]},{"name":"PINNAME_VIDEO_TIMECODE","features":[431]},{"name":"PINNAME_VIDEO_VBI","features":[431]},{"name":"PINNAME_VIDEO_VIDEOPORT","features":[431]},{"name":"PINNAME_VIDEO_VIDEOPORT_VBI","features":[431]},{"name":"PIPE_ALLOCATOR_PLACE","features":[431]},{"name":"PIPE_DIMENSIONS","features":[431]},{"name":"PIPE_STATE","features":[431]},{"name":"PIPE_TERMINATION","features":[431]},{"name":"PROPSETID_ALLOCATOR_CONTROL","features":[431]},{"name":"PROPSETID_EXT_DEVICE","features":[431]},{"name":"PROPSETID_EXT_TRANSPORT","features":[431]},{"name":"PROPSETID_TIMECODE_READER","features":[431]},{"name":"PROPSETID_TUNER","features":[431]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL","features":[431]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_FLASH","features":[431]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_IMAGE_PIN_CAPABILITY","features":[431]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_REGION_OF_INTEREST","features":[431]},{"name":"PROPSETID_VIDCAP_CAMERACONTROL_VIDEO_STABILIZATION","features":[431]},{"name":"PROPSETID_VIDCAP_CROSSBAR","features":[431]},{"name":"PROPSETID_VIDCAP_DROPPEDFRAMES","features":[431]},{"name":"PROPSETID_VIDCAP_SELECTOR","features":[431]},{"name":"PROPSETID_VIDCAP_TVAUDIO","features":[431]},{"name":"PROPSETID_VIDCAP_VIDEOCOMPRESSION","features":[431]},{"name":"PROPSETID_VIDCAP_VIDEOCONTROL","features":[431]},{"name":"PROPSETID_VIDCAP_VIDEODECODER","features":[431]},{"name":"PROPSETID_VIDCAP_VIDEOENCODER","features":[431]},{"name":"PROPSETID_VIDCAP_VIDEOPROCAMP","features":[431]},{"name":"PipeFactor_Align","features":[431]},{"name":"PipeFactor_Buffers","features":[431]},{"name":"PipeFactor_FixedCompression","features":[431]},{"name":"PipeFactor_Flags","features":[431]},{"name":"PipeFactor_LogicalEnd","features":[431]},{"name":"PipeFactor_MemoryTypes","features":[431]},{"name":"PipeFactor_None","features":[431]},{"name":"PipeFactor_OptimalRanges","features":[431]},{"name":"PipeFactor_PhysicalEnd","features":[431]},{"name":"PipeFactor_PhysicalRanges","features":[431]},{"name":"PipeFactor_UnknownCompression","features":[431]},{"name":"PipeFactor_UserModeDownstream","features":[431]},{"name":"PipeFactor_UserModeUpstream","features":[431]},{"name":"PipeState_CompressionUnknown","features":[431]},{"name":"PipeState_DontCare","features":[431]},{"name":"PipeState_Finalized","features":[431]},{"name":"PipeState_RangeFixed","features":[431]},{"name":"PipeState_RangeNotFixed","features":[431]},{"name":"Pipe_Allocator_FirstPin","features":[431]},{"name":"Pipe_Allocator_LastPin","features":[431]},{"name":"Pipe_Allocator_MiddlePin","features":[431]},{"name":"Pipe_Allocator_None","features":[431]},{"name":"RT_RCDATA","features":[431]},{"name":"RT_STRING","features":[431]},{"name":"SECURE_BUFFER_INFO","features":[431]},{"name":"SHORT_COEFF","features":[431]},{"name":"SOUNDDETECTOR_PATTERNHEADER","features":[431]},{"name":"SPEAKER_ALL","features":[431]},{"name":"SPEAKER_BACK_CENTER","features":[431]},{"name":"SPEAKER_BACK_LEFT","features":[431]},{"name":"SPEAKER_BACK_RIGHT","features":[431]},{"name":"SPEAKER_FRONT_CENTER","features":[431]},{"name":"SPEAKER_FRONT_LEFT","features":[431]},{"name":"SPEAKER_FRONT_LEFT_OF_CENTER","features":[431]},{"name":"SPEAKER_FRONT_RIGHT","features":[431]},{"name":"SPEAKER_FRONT_RIGHT_OF_CENTER","features":[431]},{"name":"SPEAKER_LOW_FREQUENCY","features":[431]},{"name":"SPEAKER_RESERVED","features":[431]},{"name":"SPEAKER_SIDE_LEFT","features":[431]},{"name":"SPEAKER_SIDE_RIGHT","features":[431]},{"name":"SPEAKER_TOP_BACK_CENTER","features":[431]},{"name":"SPEAKER_TOP_BACK_LEFT","features":[431]},{"name":"SPEAKER_TOP_BACK_RIGHT","features":[431]},{"name":"SPEAKER_TOP_CENTER","features":[431]},{"name":"SPEAKER_TOP_FRONT_CENTER","features":[431]},{"name":"SPEAKER_TOP_FRONT_LEFT","features":[431]},{"name":"SPEAKER_TOP_FRONT_RIGHT","features":[431]},{"name":"SYSAUDIO_FLAGS_CLEAR_PREFERRED","features":[431]},{"name":"SYSAUDIO_FLAGS_DONT_COMBINE_PINS","features":[431]},{"name":"TELEPHONY_CALLCONTROLOP","features":[431]},{"name":"TELEPHONY_CALLCONTROLOP_DISABLE","features":[431]},{"name":"TELEPHONY_CALLCONTROLOP_ENABLE","features":[431]},{"name":"TELEPHONY_CALLSTATE","features":[431]},{"name":"TELEPHONY_CALLSTATE_DISABLED","features":[431]},{"name":"TELEPHONY_CALLSTATE_ENABLED","features":[431]},{"name":"TELEPHONY_CALLSTATE_HOLD","features":[431]},{"name":"TELEPHONY_CALLSTATE_PROVIDERTRANSITION","features":[431]},{"name":"TELEPHONY_CALLTYPE","features":[431]},{"name":"TELEPHONY_CALLTYPE_CIRCUITSWITCHED","features":[431]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_LTE","features":[431]},{"name":"TELEPHONY_CALLTYPE_PACKETSWITCHED_WLAN","features":[431]},{"name":"TELEPHONY_PROVIDERCHANGEOP","features":[431]},{"name":"TELEPHONY_PROVIDERCHANGEOP_BEGIN","features":[431]},{"name":"TELEPHONY_PROVIDERCHANGEOP_CANCEL","features":[431]},{"name":"TELEPHONY_PROVIDERCHANGEOP_END","features":[431]},{"name":"TRANSPORTAUDIOPARMS","features":[431]},{"name":"TRANSPORTBASICPARMS","features":[431]},{"name":"TRANSPORTSTATUS","features":[431]},{"name":"TRANSPORTVIDEOPARMS","features":[431]},{"name":"TRANSPORT_STATE","features":[431]},{"name":"TUNER_ANALOG_CAPS_S","features":[431]},{"name":"TunerLockType","features":[431]},{"name":"Tuner_LockType_Locked","features":[431]},{"name":"Tuner_LockType_None","features":[431]},{"name":"Tuner_LockType_Within_Scan_Sensing_Range","features":[431]},{"name":"VBICAP_PROPERTIES_PROTECTION_S","features":[431]},{"name":"VBICODECFILTERING_CC_SUBSTREAMS","features":[431]},{"name":"VBICODECFILTERING_NABTS_SUBSTREAMS","features":[431]},{"name":"VBICODECFILTERING_SCANLINES","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_CC","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_CC_PIN","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_COMMON","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_COMMON_PIN","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_NABTS","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_NABTS_PIN","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT","features":[431]},{"name":"VBICODECFILTERING_STATISTICS_TELETEXT_PIN","features":[431]},{"name":"VRAM_SURFACE_INFO","features":[431]},{"name":"VRAM_SURFACE_INFO_PROPERTY_S","features":[431]},{"name":"WAVE_FORMAT_EXTENSIBLE","features":[431]},{"name":"WNF_KSCAMERA_STREAMSTATE_INFO","features":[431]},{"name":"WST_BUFFER","features":[431]},{"name":"WST_BUFFER_LINE","features":[431]},{"name":"WST_BYTES_PER_LINE","features":[431]},{"name":"WST_TVTUNER_CHANGE_BEGIN_TUNE","features":[431]},{"name":"WST_TVTUNER_CHANGE_END_TUNE","features":[431]},{"name":"eConnType3Point5mm","features":[431]},{"name":"eConnTypeAtapiInternal","features":[431]},{"name":"eConnTypeCombination","features":[431]},{"name":"eConnTypeMultichannelAnalogDIN","features":[431]},{"name":"eConnTypeOptical","features":[431]},{"name":"eConnTypeOtherAnalog","features":[431]},{"name":"eConnTypeOtherDigital","features":[431]},{"name":"eConnTypeQuarter","features":[431]},{"name":"eConnTypeRCA","features":[431]},{"name":"eConnTypeRJ11Modem","features":[431]},{"name":"eConnTypeUnknown","features":[431]},{"name":"eConnTypeXlrProfessional","features":[431]},{"name":"eDeviceControlUseMissing","features":[431]},{"name":"eDeviceControlUsePrimary","features":[431]},{"name":"eDeviceControlUseSecondary","features":[431]},{"name":"eGenLocInternal","features":[431]},{"name":"eGenLocOther","features":[431]},{"name":"eGenLocPrimaryBox","features":[431]},{"name":"eGenLocSeparate","features":[431]},{"name":"eGeoLocATAPI","features":[431]},{"name":"eGeoLocBottom","features":[431]},{"name":"eGeoLocDrivebay","features":[431]},{"name":"eGeoLocFront","features":[431]},{"name":"eGeoLocHDMI","features":[431]},{"name":"eGeoLocInsideMobileLid","features":[431]},{"name":"eGeoLocLeft","features":[431]},{"name":"eGeoLocNotApplicable","features":[431]},{"name":"eGeoLocOutsideMobileLid","features":[431]},{"name":"eGeoLocRear","features":[431]},{"name":"eGeoLocRearPanel","features":[431]},{"name":"eGeoLocReserved6","features":[431]},{"name":"eGeoLocRight","features":[431]},{"name":"eGeoLocRiser","features":[431]},{"name":"eGeoLocTop","features":[431]},{"name":"ePortConnBothIntegratedAndJack","features":[431]},{"name":"ePortConnIntegratedDevice","features":[431]},{"name":"ePortConnJack","features":[431]},{"name":"ePortConnUnknown","features":[431]}],"437":[{"name":"DEVICE_AUTHORIZATION_ALLOWED","features":[434]},{"name":"DEVICE_AUTHORIZATION_DENIED","features":[434]},{"name":"DEVICE_AUTHORIZATION_UNKNOWN","features":[434]},{"name":"IWindowsMediaLibrarySharingDevice","features":[434,356]},{"name":"IWindowsMediaLibrarySharingDeviceProperties","features":[434,356]},{"name":"IWindowsMediaLibrarySharingDeviceProperty","features":[434,356]},{"name":"IWindowsMediaLibrarySharingDevices","features":[434,356]},{"name":"IWindowsMediaLibrarySharingServices","features":[434,356]},{"name":"WindowsMediaLibrarySharingDeviceAuthorizationStatus","features":[434]},{"name":"WindowsMediaLibrarySharingServices","features":[434]}],"438":[{"name":"AACMFTEncoder","features":[428]},{"name":"ACCESSMODE_READ","features":[428]},{"name":"ACCESSMODE_READWRITE","features":[428]},{"name":"ACCESSMODE_WRITE","features":[428]},{"name":"ACCESSMODE_WRITE_EXCLUSIVE","features":[428]},{"name":"ADAPTIVE_ARRAY_AND_AEC","features":[428]},{"name":"ADAPTIVE_ARRAY_ONLY","features":[428]},{"name":"AEC_CAPTURE_STREAM","features":[428]},{"name":"AEC_INPUT_STREAM","features":[428]},{"name":"AEC_MAX_SYSTEM_MODES","features":[428]},{"name":"AEC_REFERENCE_STREAM","features":[428]},{"name":"AEC_SYSTEM_MODE","features":[428]},{"name":"AEC_VAD_DISABLED","features":[428]},{"name":"AEC_VAD_FOR_AGC","features":[428]},{"name":"AEC_VAD_FOR_SILENCE_SUPPRESSION","features":[428]},{"name":"AEC_VAD_MODE","features":[428]},{"name":"AEC_VAD_NORMAL","features":[428]},{"name":"ALawCodecWrapper","features":[428]},{"name":"AMMPEG2_27MhzTimebase","features":[428]},{"name":"AMMPEG2_DSS_UserData","features":[428]},{"name":"AMMPEG2_DVB_UserData","features":[428]},{"name":"AMMPEG2_DVDLine21Field1","features":[428]},{"name":"AMMPEG2_DVDLine21Field2","features":[428]},{"name":"AMMPEG2_DoPanScan","features":[428]},{"name":"AMMPEG2_FilmCameraMode","features":[428]},{"name":"AMMPEG2_LetterboxAnalogOut","features":[428]},{"name":"AMMPEG2_SourceIsLetterboxed","features":[428]},{"name":"AMMPEG2_WidescreenAnalogOut","features":[428]},{"name":"AMPROPSETID_Pin","features":[428]},{"name":"AM_MEDIA_TYPE","features":[305,428]},{"name":"AM_MEDIA_TYPE_REPRESENTATION","features":[428]},{"name":"ASF_FLAT_PICTURE","features":[428]},{"name":"ASF_FLAT_SYNCHRONISED_LYRICS","features":[428]},{"name":"ASF_INDEX_DESCRIPTOR","features":[428]},{"name":"ASF_INDEX_IDENTIFIER","features":[428]},{"name":"ASF_MUX_STATISTICS","features":[428]},{"name":"ASF_SELECTION_STATUS","features":[428]},{"name":"ASF_STATUSFLAGS","features":[428]},{"name":"ASF_STATUSFLAGS_INCOMPLETE","features":[428]},{"name":"ASF_STATUSFLAGS_NONFATAL_ERROR","features":[428]},{"name":"ASF_STATUS_ALLDATAUNITS","features":[428]},{"name":"ASF_STATUS_CLEANPOINTSONLY","features":[428]},{"name":"ASF_STATUS_NOTSELECTED","features":[428]},{"name":"AVENC_H263V_LEVELCOUNT","features":[428]},{"name":"AVENC_H264V_LEVELCOUNT","features":[428]},{"name":"AVENC_H264V_MAX_MBBITS","features":[428]},{"name":"AVEncAudioInputContent_Music","features":[428]},{"name":"AVEncAudioInputContent_Unknown","features":[428]},{"name":"AVEncAudioInputContent_Voice","features":[428]},{"name":"AecQualityMetrics_Struct","features":[428]},{"name":"CAC3DecMediaObject","features":[428]},{"name":"CAPTION_FORMAT_ATSC","features":[428]},{"name":"CAPTION_FORMAT_DIRECTV","features":[428]},{"name":"CAPTION_FORMAT_DVB","features":[428]},{"name":"CAPTION_FORMAT_ECHOSTAR","features":[428]},{"name":"CClusterDetectorDmo","features":[428]},{"name":"CColorControlDmo","features":[428]},{"name":"CColorConvertDMO","features":[428]},{"name":"CColorLegalizerDmo","features":[428]},{"name":"CDTVAudDecoderDS","features":[428]},{"name":"CDTVVidDecoderDS","features":[428]},{"name":"CDVDecoderMediaObject","features":[428]},{"name":"CDVEncoderMediaObject","features":[428]},{"name":"CDeColorConvMediaObject","features":[428]},{"name":"CFrameInterpDMO","features":[428]},{"name":"CFrameRateConvertDmo","features":[428]},{"name":"CInterlaceMediaObject","features":[428]},{"name":"CLSID_ACMWrapper","features":[428]},{"name":"CLSID_ATSCNetworkPropertyPage","features":[428]},{"name":"CLSID_ATSCNetworkProvider","features":[428]},{"name":"CLSID_AVICo","features":[428]},{"name":"CLSID_AVIDec","features":[428]},{"name":"CLSID_AVIDoc","features":[428]},{"name":"CLSID_AVIDraw","features":[428]},{"name":"CLSID_AVIMIDIRender","features":[428]},{"name":"CLSID_ActiveMovieCategories","features":[428]},{"name":"CLSID_AllocPresenter","features":[428]},{"name":"CLSID_AllocPresenterDDXclMode","features":[428]},{"name":"CLSID_AnalogVideoDecoderPropertyPage","features":[428]},{"name":"CLSID_AsyncReader","features":[428]},{"name":"CLSID_AudioCompressorCategory","features":[428]},{"name":"CLSID_AudioInputDeviceCategory","features":[428]},{"name":"CLSID_AudioInputMixerProperties","features":[428]},{"name":"CLSID_AudioProperties","features":[428]},{"name":"CLSID_AudioRecord","features":[428]},{"name":"CLSID_AudioRender","features":[428]},{"name":"CLSID_AudioRendererAdvancedProperties","features":[428]},{"name":"CLSID_AudioRendererCategory","features":[428]},{"name":"CLSID_AudioResamplerMediaObject","features":[428]},{"name":"CLSID_AviDest","features":[428]},{"name":"CLSID_AviMuxProptyPage","features":[428]},{"name":"CLSID_AviMuxProptyPage1","features":[428]},{"name":"CLSID_AviReader","features":[428]},{"name":"CLSID_AviSplitter","features":[428]},{"name":"CLSID_CAcmCoClassManager","features":[428]},{"name":"CLSID_CAsfTocParser","features":[428]},{"name":"CLSID_CAviTocParser","features":[428]},{"name":"CLSID_CCAFilter","features":[428]},{"name":"CLSID_CClusterDetectorEx","features":[428]},{"name":"CLSID_CDeviceMoniker","features":[428]},{"name":"CLSID_CFileClient","features":[428]},{"name":"CLSID_CFileIo","features":[428]},{"name":"CLSID_CIcmCoClassManager","features":[428]},{"name":"CLSID_CMidiOutClassManager","features":[428]},{"name":"CLSID_CMpegAudioCodec","features":[428]},{"name":"CLSID_CMpegVideoCodec","features":[428]},{"name":"CLSID_CQzFilterClassManager","features":[428]},{"name":"CLSID_CToc","features":[428]},{"name":"CLSID_CTocCollection","features":[428]},{"name":"CLSID_CTocEntry","features":[428]},{"name":"CLSID_CTocEntryList","features":[428]},{"name":"CLSID_CTocParser","features":[428]},{"name":"CLSID_CVidCapClassManager","features":[428]},{"name":"CLSID_CWaveOutClassManager","features":[428]},{"name":"CLSID_CWaveinClassManager","features":[428]},{"name":"CLSID_CameraConfigurationManager","features":[428]},{"name":"CLSID_CameraControlPropertyPage","features":[428]},{"name":"CLSID_CaptionsFilter","features":[428]},{"name":"CLSID_CaptureGraphBuilder","features":[428]},{"name":"CLSID_CaptureGraphBuilder2","features":[428]},{"name":"CLSID_CaptureProperties","features":[428]},{"name":"CLSID_Colour","features":[428]},{"name":"CLSID_CreateMediaExtensionObject","features":[428]},{"name":"CLSID_CrossbarFilterPropertyPage","features":[428]},{"name":"CLSID_DShowTVEFilter","features":[428]},{"name":"CLSID_DSoundRender","features":[428]},{"name":"CLSID_DVBCNetworkProvider","features":[428]},{"name":"CLSID_DVBSNetworkProvider","features":[428]},{"name":"CLSID_DVBTNetworkProvider","features":[428]},{"name":"CLSID_DVDHWDecodersCategory","features":[428]},{"name":"CLSID_DVDNavigator","features":[428]},{"name":"CLSID_DVDState","features":[428]},{"name":"CLSID_DVDecPropertiesPage","features":[428]},{"name":"CLSID_DVEncPropertiesPage","features":[428]},{"name":"CLSID_DVMux","features":[428]},{"name":"CLSID_DVMuxPropertyPage","features":[428]},{"name":"CLSID_DVSplitter","features":[428]},{"name":"CLSID_DVVideoCodec","features":[428]},{"name":"CLSID_DVVideoEnc","features":[428]},{"name":"CLSID_DeviceControlCategory","features":[428]},{"name":"CLSID_DirectDrawProperties","features":[428]},{"name":"CLSID_DirectShowPluginControl","features":[428]},{"name":"CLSID_Dither","features":[428]},{"name":"CLSID_DtvCcFilter","features":[428]},{"name":"CLSID_DvdGraphBuilder","features":[428]},{"name":"CLSID_EVRPlaybackPipelineOptimizer","features":[428]},{"name":"CLSID_EVRTearlessWindowPresenter9","features":[428]},{"name":"CLSID_EnhancedVideoRenderer","features":[428]},{"name":"CLSID_FGControl","features":[428]},{"name":"CLSID_FileSource","features":[428]},{"name":"CLSID_FileWriter","features":[428]},{"name":"CLSID_FilterGraph","features":[428]},{"name":"CLSID_FilterGraphNoThread","features":[428]},{"name":"CLSID_FilterGraphPrivateThread","features":[428]},{"name":"CLSID_FilterMapper","features":[428]},{"name":"CLSID_FilterMapper2","features":[428]},{"name":"CLSID_FrameServerNetworkCameraSource","features":[428]},{"name":"CLSID_HttpSchemePlugin","features":[428]},{"name":"CLSID_ICodecAPIProxy","features":[428]},{"name":"CLSID_IVideoEncoderCodecAPIProxy","features":[428]},{"name":"CLSID_IVideoEncoderProxy","features":[428]},{"name":"CLSID_InfTee","features":[428]},{"name":"CLSID_LegacyAmFilterCategory","features":[428]},{"name":"CLSID_Line21Decoder","features":[428]},{"name":"CLSID_Line21Decoder2","features":[428]},{"name":"CLSID_MFByteStreamProxyClassFactory","features":[428]},{"name":"CLSID_MFCaptureEngine","features":[428]},{"name":"CLSID_MFCaptureEngineClassFactory","features":[428]},{"name":"CLSID_MFImageSharingEngineClassFactory","features":[428]},{"name":"CLSID_MFMediaEngineClassFactory","features":[428]},{"name":"CLSID_MFMediaSharingEngineClassFactory","features":[428]},{"name":"CLSID_MFReadWriteClassFactory","features":[428]},{"name":"CLSID_MFSinkWriter","features":[428]},{"name":"CLSID_MFSourceReader","features":[428]},{"name":"CLSID_MFSourceResolver","features":[428]},{"name":"CLSID_MFVideoMixer9","features":[428]},{"name":"CLSID_MFVideoPresenter9","features":[428]},{"name":"CLSID_MJPGEnc","features":[428]},{"name":"CLSID_MMSPLITTER","features":[428]},{"name":"CLSID_MOVReader","features":[428]},{"name":"CLSID_MP3DecMediaObject","features":[428]},{"name":"CLSID_MPEG1Doc","features":[428]},{"name":"CLSID_MPEG1PacketPlayer","features":[428]},{"name":"CLSID_MPEG1Splitter","features":[428]},{"name":"CLSID_MPEG2ByteStreamPlugin","features":[428]},{"name":"CLSID_MPEG2DLNASink","features":[428]},{"name":"CLSID_MPEG2Demultiplexer","features":[428]},{"name":"CLSID_MPEG2Demultiplexer_NoClock","features":[428]},{"name":"CLSID_MSAACDecMFT","features":[428]},{"name":"CLSID_MSDDPlusDecMFT","features":[428]},{"name":"CLSID_MSH264DecoderMFT","features":[428]},{"name":"CLSID_MSH264EncoderMFT","features":[428]},{"name":"CLSID_MSH265DecoderMFT","features":[428]},{"name":"CLSID_MSMPEGAudDecMFT","features":[428]},{"name":"CLSID_MSMPEGDecoderMFT","features":[428]},{"name":"CLSID_MSOpusDecoder","features":[428]},{"name":"CLSID_MSVPxDecoder","features":[428]},{"name":"CLSID_MediaEncoderCategory","features":[428]},{"name":"CLSID_MediaMultiplexerCategory","features":[428]},{"name":"CLSID_MediaPropertyBag","features":[428]},{"name":"CLSID_MemoryAllocator","features":[428]},{"name":"CLSID_MidiRendererCategory","features":[428]},{"name":"CLSID_MjpegDec","features":[428]},{"name":"CLSID_ModexRenderer","features":[428]},{"name":"CLSID_Mpeg2VideoStreamAnalyzer","features":[428]},{"name":"CLSID_NetSchemePlugin","features":[428]},{"name":"CLSID_NetworkProvider","features":[428]},{"name":"CLSID_OverlayMixer","features":[428]},{"name":"CLSID_PerformanceProperties","features":[428]},{"name":"CLSID_PersistMonikerPID","features":[428]},{"name":"CLSID_PlayToSourceClassFactory","features":[428]},{"name":"CLSID_ProtoFilterGraph","features":[428]},{"name":"CLSID_QTDec","features":[428]},{"name":"CLSID_QualityProperties","features":[428]},{"name":"CLSID_QuickTimeParser","features":[428]},{"name":"CLSID_SBE2File","features":[428]},{"name":"CLSID_SBE2FileScan","features":[428]},{"name":"CLSID_SBE2MediaTypeProfile","features":[428]},{"name":"CLSID_SBE2Sink","features":[428]},{"name":"CLSID_SeekingPassThru","features":[428]},{"name":"CLSID_SmartTee","features":[428]},{"name":"CLSID_StreamBufferComposeRecording","features":[428]},{"name":"CLSID_StreamBufferConfig","features":[428]},{"name":"CLSID_StreamBufferPropertyHandler","features":[428]},{"name":"CLSID_StreamBufferRecordingAttributes","features":[428]},{"name":"CLSID_StreamBufferSink","features":[428]},{"name":"CLSID_StreamBufferSource","features":[428]},{"name":"CLSID_StreamBufferThumbnailHandler","features":[428]},{"name":"CLSID_SubtitlesFilter","features":[428]},{"name":"CLSID_SystemClock","features":[428]},{"name":"CLSID_SystemDeviceEnum","features":[428]},{"name":"CLSID_TVAudioFilterPropertyPage","features":[428]},{"name":"CLSID_TVEFilterCCProperties","features":[428]},{"name":"CLSID_TVEFilterStatsProperties","features":[428]},{"name":"CLSID_TVEFilterTuneProperties","features":[428]},{"name":"CLSID_TVTunerFilterPropertyPage","features":[428]},{"name":"CLSID_TextRender","features":[428]},{"name":"CLSID_TransmitCategory","features":[428]},{"name":"CLSID_URLReader","features":[428]},{"name":"CLSID_UrlmonSchemePlugin","features":[428]},{"name":"CLSID_VBISurfaces","features":[428]},{"name":"CLSID_VPObject","features":[428]},{"name":"CLSID_VPVBIObject","features":[428]},{"name":"CLSID_VfwCapture","features":[428]},{"name":"CLSID_VideoCompressorCategory","features":[428]},{"name":"CLSID_VideoInputDeviceCategory","features":[428]},{"name":"CLSID_VideoMixingRenderer","features":[428]},{"name":"CLSID_VideoMixingRenderer9","features":[428]},{"name":"CLSID_VideoPortManager","features":[428]},{"name":"CLSID_VideoProcAmpPropertyPage","features":[428]},{"name":"CLSID_VideoProcessorMFT","features":[428]},{"name":"CLSID_VideoRenderer","features":[428]},{"name":"CLSID_VideoRendererDefault","features":[428]},{"name":"CLSID_VideoStreamConfigPropertyPage","features":[428]},{"name":"CLSID_WMADecMediaObject","features":[428]},{"name":"CLSID_WMAsfReader","features":[428]},{"name":"CLSID_WMAsfWriter","features":[428]},{"name":"CLSID_WMDRMSystemID","features":[428]},{"name":"CLSID_WMVDecoderMFT","features":[428]},{"name":"CLSID_WSTDecoder","features":[428]},{"name":"CLSID_WstDecoderPropertyPage","features":[428]},{"name":"CMP3DecMediaObject","features":[428]},{"name":"CMPEG2AudDecoderDS","features":[428]},{"name":"CMPEG2AudioEncoderMFT","features":[428]},{"name":"CMPEG2EncoderAudioDS","features":[428]},{"name":"CMPEG2EncoderDS","features":[428]},{"name":"CMPEG2EncoderVideoDS","features":[428]},{"name":"CMPEG2VidDecoderDS","features":[428]},{"name":"CMPEG2VideoEncoderMFT","features":[428]},{"name":"CMPEGAACDecMediaObject","features":[428]},{"name":"CMSAACDecMFT","features":[428]},{"name":"CMSAC3Enc","features":[428]},{"name":"CMSALACDecMFT","features":[428]},{"name":"CMSALACEncMFT","features":[428]},{"name":"CMSDDPlusDecMFT","features":[428]},{"name":"CMSDolbyDigitalEncMFT","features":[428]},{"name":"CMSFLACDecMFT","features":[428]},{"name":"CMSFLACEncMFT","features":[428]},{"name":"CMSH263EncoderMFT","features":[428]},{"name":"CMSH264DecoderMFT","features":[428]},{"name":"CMSH264EncoderMFT","features":[428]},{"name":"CMSH264RemuxMFT","features":[428]},{"name":"CMSH265EncoderMFT","features":[428]},{"name":"CMSMPEGAudDecMFT","features":[428]},{"name":"CMSMPEGDecoderMFT","features":[428]},{"name":"CMSOpusDecMFT","features":[428]},{"name":"CMSSCDecMediaObject","features":[428]},{"name":"CMSSCEncMediaObject","features":[428]},{"name":"CMSSCEncMediaObject2","features":[428]},{"name":"CMSVPXEncoderMFT","features":[428]},{"name":"CMSVideoDSPMFT","features":[428]},{"name":"CMpeg2DecMediaObject","features":[428]},{"name":"CMpeg43DecMediaObject","features":[428]},{"name":"CMpeg4DecMediaObject","features":[428]},{"name":"CMpeg4EncMediaObject","features":[428]},{"name":"CMpeg4sDecMFT","features":[428]},{"name":"CMpeg4sDecMediaObject","features":[428]},{"name":"CMpeg4sEncMediaObject","features":[428]},{"name":"CNokiaAACCCDecMediaObject","features":[428]},{"name":"CNokiaAACDecMediaObject","features":[428]},{"name":"CODECAPI_ALLSETTINGS","features":[428]},{"name":"CODECAPI_AUDIO_ENCODER","features":[428]},{"name":"CODECAPI_AVAudioChannelConfig","features":[428]},{"name":"CODECAPI_AVAudioChannelCount","features":[428]},{"name":"CODECAPI_AVAudioSampleRate","features":[428]},{"name":"CODECAPI_AVDDSurroundMode","features":[428]},{"name":"CODECAPI_AVDSPLoudnessEqualization","features":[428]},{"name":"CODECAPI_AVDSPSpeakerFill","features":[428]},{"name":"CODECAPI_AVDecAACDownmixMode","features":[428]},{"name":"CODECAPI_AVDecAudioDualMono","features":[428]},{"name":"CODECAPI_AVDecAudioDualMonoReproMode","features":[428]},{"name":"CODECAPI_AVDecCommonInputFormat","features":[428]},{"name":"CODECAPI_AVDecCommonMeanBitRate","features":[428]},{"name":"CODECAPI_AVDecCommonMeanBitRateInterval","features":[428]},{"name":"CODECAPI_AVDecCommonOutputFormat","features":[428]},{"name":"CODECAPI_AVDecDDDynamicRangeScaleHigh","features":[428]},{"name":"CODECAPI_AVDecDDDynamicRangeScaleLow","features":[428]},{"name":"CODECAPI_AVDecDDMatrixDecodingMode","features":[428]},{"name":"CODECAPI_AVDecDDOperationalMode","features":[428]},{"name":"CODECAPI_AVDecDDStereoDownMixMode","features":[428]},{"name":"CODECAPI_AVDecDisableVideoPostProcessing","features":[428]},{"name":"CODECAPI_AVDecHEAACDynamicRangeControl","features":[428]},{"name":"CODECAPI_AVDecMmcssClass","features":[428]},{"name":"CODECAPI_AVDecNumWorkerThreads","features":[428]},{"name":"CODECAPI_AVDecSoftwareDynamicFormatChange","features":[428]},{"name":"CODECAPI_AVDecVideoAcceleration_H264","features":[428]},{"name":"CODECAPI_AVDecVideoAcceleration_MPEG2","features":[428]},{"name":"CODECAPI_AVDecVideoAcceleration_VC1","features":[428]},{"name":"CODECAPI_AVDecVideoCodecType","features":[428]},{"name":"CODECAPI_AVDecVideoDXVABusEncryption","features":[428]},{"name":"CODECAPI_AVDecVideoDXVAMode","features":[428]},{"name":"CODECAPI_AVDecVideoDropPicWithMissingRef","features":[428]},{"name":"CODECAPI_AVDecVideoFastDecodeMode","features":[428]},{"name":"CODECAPI_AVDecVideoH264ErrorConcealment","features":[428]},{"name":"CODECAPI_AVDecVideoImageSize","features":[428]},{"name":"CODECAPI_AVDecVideoInputScanType","features":[428]},{"name":"CODECAPI_AVDecVideoMPEG2ErrorConcealment","features":[428]},{"name":"CODECAPI_AVDecVideoMaxCodedHeight","features":[428]},{"name":"CODECAPI_AVDecVideoMaxCodedWidth","features":[428]},{"name":"CODECAPI_AVDecVideoPixelAspectRatio","features":[428]},{"name":"CODECAPI_AVDecVideoProcDeinterlaceCSC","features":[428]},{"name":"CODECAPI_AVDecVideoSWPowerLevel","features":[428]},{"name":"CODECAPI_AVDecVideoSoftwareDeinterlaceMode","features":[428]},{"name":"CODECAPI_AVDecVideoThumbnailGenerationMode","features":[428]},{"name":"CODECAPI_AVEnableInLoopDeblockFilter","features":[428]},{"name":"CODECAPI_AVEncAACEnableVBR","features":[428]},{"name":"CODECAPI_AVEncAdaptiveMode","features":[428]},{"name":"CODECAPI_AVEncAudioDualMono","features":[428]},{"name":"CODECAPI_AVEncAudioInputContent","features":[428]},{"name":"CODECAPI_AVEncAudioIntervalToEncode","features":[428]},{"name":"CODECAPI_AVEncAudioIntervalToSkip","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel0","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel1","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel10","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel11","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel12","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel13","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel14","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel15","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel2","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel3","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel4","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel5","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel6","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel7","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel8","features":[428]},{"name":"CODECAPI_AVEncAudioMapDestChannel9","features":[428]},{"name":"CODECAPI_AVEncAudioMeanBitRate","features":[428]},{"name":"CODECAPI_AVEncChromaEncodeMode","features":[428]},{"name":"CODECAPI_AVEncChromaUpdateTime","features":[428]},{"name":"CODECAPI_AVEncCodecType","features":[428]},{"name":"CODECAPI_AVEncCommonAllowFrameDrops","features":[428]},{"name":"CODECAPI_AVEncCommonBufferInLevel","features":[428]},{"name":"CODECAPI_AVEncCommonBufferOutLevel","features":[428]},{"name":"CODECAPI_AVEncCommonBufferSize","features":[428]},{"name":"CODECAPI_AVEncCommonFormatConstraint","features":[428]},{"name":"CODECAPI_AVEncCommonLowLatency","features":[428]},{"name":"CODECAPI_AVEncCommonMaxBitRate","features":[428]},{"name":"CODECAPI_AVEncCommonMeanBitRate","features":[428]},{"name":"CODECAPI_AVEncCommonMeanBitRateInterval","features":[428]},{"name":"CODECAPI_AVEncCommonMinBitRate","features":[428]},{"name":"CODECAPI_AVEncCommonMultipassMode","features":[428]},{"name":"CODECAPI_AVEncCommonPassEnd","features":[428]},{"name":"CODECAPI_AVEncCommonPassStart","features":[428]},{"name":"CODECAPI_AVEncCommonQuality","features":[428]},{"name":"CODECAPI_AVEncCommonQualityVsSpeed","features":[428]},{"name":"CODECAPI_AVEncCommonRateControlMode","features":[428]},{"name":"CODECAPI_AVEncCommonRealTime","features":[428]},{"name":"CODECAPI_AVEncCommonStreamEndHandling","features":[428]},{"name":"CODECAPI_AVEncCommonTranscodeEncodingProfile","features":[428]},{"name":"CODECAPI_AVEncDDAtoDConverterType","features":[428]},{"name":"CODECAPI_AVEncDDCentreDownMixLevel","features":[428]},{"name":"CODECAPI_AVEncDDChannelBWLowPassFilter","features":[428]},{"name":"CODECAPI_AVEncDDCopyright","features":[428]},{"name":"CODECAPI_AVEncDDDCHighPassFilter","features":[428]},{"name":"CODECAPI_AVEncDDDialogNormalization","features":[428]},{"name":"CODECAPI_AVEncDDDigitalDeemphasis","features":[428]},{"name":"CODECAPI_AVEncDDDynamicRangeCompressionControl","features":[428]},{"name":"CODECAPI_AVEncDDHeadphoneMode","features":[428]},{"name":"CODECAPI_AVEncDDLFELowPassFilter","features":[428]},{"name":"CODECAPI_AVEncDDLoRoCenterMixLvl_x10","features":[428]},{"name":"CODECAPI_AVEncDDLoRoSurroundMixLvl_x10","features":[428]},{"name":"CODECAPI_AVEncDDLtRtCenterMixLvl_x10","features":[428]},{"name":"CODECAPI_AVEncDDLtRtSurroundMixLvl_x10","features":[428]},{"name":"CODECAPI_AVEncDDOriginalBitstream","features":[428]},{"name":"CODECAPI_AVEncDDPreferredStereoDownMixMode","features":[428]},{"name":"CODECAPI_AVEncDDProductionInfoExists","features":[428]},{"name":"CODECAPI_AVEncDDProductionMixLevel","features":[428]},{"name":"CODECAPI_AVEncDDProductionRoomType","features":[428]},{"name":"CODECAPI_AVEncDDRFPreEmphasisFilter","features":[428]},{"name":"CODECAPI_AVEncDDService","features":[428]},{"name":"CODECAPI_AVEncDDSurround3dBAttenuation","features":[428]},{"name":"CODECAPI_AVEncDDSurround90DegreeePhaseShift","features":[428]},{"name":"CODECAPI_AVEncDDSurroundDownMixLevel","features":[428]},{"name":"CODECAPI_AVEncDDSurroundExMode","features":[428]},{"name":"CODECAPI_AVEncEnableVideoProcessing","features":[428]},{"name":"CODECAPI_AVEncH264CABACEnable","features":[428]},{"name":"CODECAPI_AVEncH264PPSID","features":[428]},{"name":"CODECAPI_AVEncH264SPSID","features":[428]},{"name":"CODECAPI_AVEncInputVideoSystem","features":[428]},{"name":"CODECAPI_AVEncLowPowerEncoder","features":[428]},{"name":"CODECAPI_AVEncMP12MuxDVDNavPacks","features":[428]},{"name":"CODECAPI_AVEncMP12MuxEarliestPTS","features":[428]},{"name":"CODECAPI_AVEncMP12MuxInitialSCR","features":[428]},{"name":"CODECAPI_AVEncMP12MuxLargestPacketSize","features":[428]},{"name":"CODECAPI_AVEncMP12MuxMuxRate","features":[428]},{"name":"CODECAPI_AVEncMP12MuxNumStreams","features":[428]},{"name":"CODECAPI_AVEncMP12MuxPackSize","features":[428]},{"name":"CODECAPI_AVEncMP12MuxPacketOverhead","features":[428]},{"name":"CODECAPI_AVEncMP12MuxSysAudioLock","features":[428]},{"name":"CODECAPI_AVEncMP12MuxSysCSPS","features":[428]},{"name":"CODECAPI_AVEncMP12MuxSysFixed","features":[428]},{"name":"CODECAPI_AVEncMP12MuxSysRateBound","features":[428]},{"name":"CODECAPI_AVEncMP12MuxSysSTDBufferBound","features":[428]},{"name":"CODECAPI_AVEncMP12MuxSysVideoLock","features":[428]},{"name":"CODECAPI_AVEncMP12MuxTargetPacketizer","features":[428]},{"name":"CODECAPI_AVEncMP12PktzCopyright","features":[428]},{"name":"CODECAPI_AVEncMP12PktzInitialPTS","features":[428]},{"name":"CODECAPI_AVEncMP12PktzOriginal","features":[428]},{"name":"CODECAPI_AVEncMP12PktzPacketSize","features":[428]},{"name":"CODECAPI_AVEncMP12PktzSTDBuffer","features":[428]},{"name":"CODECAPI_AVEncMP12PktzStreamID","features":[428]},{"name":"CODECAPI_AVEncMPACodingMode","features":[428]},{"name":"CODECAPI_AVEncMPACopyright","features":[428]},{"name":"CODECAPI_AVEncMPAEmphasisType","features":[428]},{"name":"CODECAPI_AVEncMPAEnableRedundancyProtection","features":[428]},{"name":"CODECAPI_AVEncMPALayer","features":[428]},{"name":"CODECAPI_AVEncMPAOriginalBitstream","features":[428]},{"name":"CODECAPI_AVEncMPAPrivateUserBit","features":[428]},{"name":"CODECAPI_AVEncMPVAddSeqEndCode","features":[428]},{"name":"CODECAPI_AVEncMPVDefaultBPictureCount","features":[428]},{"name":"CODECAPI_AVEncMPVFrameFieldMode","features":[428]},{"name":"CODECAPI_AVEncMPVGOPOpen","features":[428]},{"name":"CODECAPI_AVEncMPVGOPSInSeq","features":[428]},{"name":"CODECAPI_AVEncMPVGOPSize","features":[428]},{"name":"CODECAPI_AVEncMPVGOPSizeMax","features":[428]},{"name":"CODECAPI_AVEncMPVGOPSizeMin","features":[428]},{"name":"CODECAPI_AVEncMPVGenerateHeaderPicDispExt","features":[428]},{"name":"CODECAPI_AVEncMPVGenerateHeaderPicExt","features":[428]},{"name":"CODECAPI_AVEncMPVGenerateHeaderSeqDispExt","features":[428]},{"name":"CODECAPI_AVEncMPVGenerateHeaderSeqExt","features":[428]},{"name":"CODECAPI_AVEncMPVGenerateHeaderSeqScaleExt","features":[428]},{"name":"CODECAPI_AVEncMPVIntraDCPrecision","features":[428]},{"name":"CODECAPI_AVEncMPVIntraVLCTable","features":[428]},{"name":"CODECAPI_AVEncMPVLevel","features":[428]},{"name":"CODECAPI_AVEncMPVProfile","features":[428]},{"name":"CODECAPI_AVEncMPVQScaleType","features":[428]},{"name":"CODECAPI_AVEncMPVQuantMatrixChromaIntra","features":[428]},{"name":"CODECAPI_AVEncMPVQuantMatrixChromaNonIntra","features":[428]},{"name":"CODECAPI_AVEncMPVQuantMatrixIntra","features":[428]},{"name":"CODECAPI_AVEncMPVQuantMatrixNonIntra","features":[428]},{"name":"CODECAPI_AVEncMPVScanPattern","features":[428]},{"name":"CODECAPI_AVEncMPVSceneDetection","features":[428]},{"name":"CODECAPI_AVEncMPVUseConcealmentMotionVectors","features":[428]},{"name":"CODECAPI_AVEncMaxFrameRate","features":[428]},{"name":"CODECAPI_AVEncMuxOutputStreamType","features":[428]},{"name":"CODECAPI_AVEncNoInputCopy","features":[428]},{"name":"CODECAPI_AVEncNumWorkerThreads","features":[428]},{"name":"CODECAPI_AVEncProgressiveUpdateTime","features":[428]},{"name":"CODECAPI_AVEncSliceControlMode","features":[428]},{"name":"CODECAPI_AVEncSliceControlSize","features":[428]},{"name":"CODECAPI_AVEncSliceGenerationMode","features":[428]},{"name":"CODECAPI_AVEncStatAudioAverageBPS","features":[428]},{"name":"CODECAPI_AVEncStatAudioAveragePCMValue","features":[428]},{"name":"CODECAPI_AVEncStatAudioPeakPCMValue","features":[428]},{"name":"CODECAPI_AVEncStatAverageBPS","features":[428]},{"name":"CODECAPI_AVEncStatCommonCompletedPasses","features":[428]},{"name":"CODECAPI_AVEncStatHardwareBandwidthUtilitization","features":[428]},{"name":"CODECAPI_AVEncStatHardwareProcessorUtilitization","features":[428]},{"name":"CODECAPI_AVEncStatMPVSkippedEmptyFrames","features":[428]},{"name":"CODECAPI_AVEncStatVideoCodedFrames","features":[428]},{"name":"CODECAPI_AVEncStatVideoOutputFrameRate","features":[428]},{"name":"CODECAPI_AVEncStatVideoTotalFrames","features":[428]},{"name":"CODECAPI_AVEncStatWMVCBAvg","features":[428]},{"name":"CODECAPI_AVEncStatWMVCBMax","features":[428]},{"name":"CODECAPI_AVEncStatWMVDecoderComplexityProfile","features":[428]},{"name":"CODECAPI_AVEncTileColumns","features":[428]},{"name":"CODECAPI_AVEncTileRows","features":[428]},{"name":"CODECAPI_AVEncVideoCBRMotionTradeoff","features":[428]},{"name":"CODECAPI_AVEncVideoCTBSize","features":[428]},{"name":"CODECAPI_AVEncVideoCodedVideoAccessUnitSize","features":[428]},{"name":"CODECAPI_AVEncVideoConsecutiveFramesForLayer","features":[428]},{"name":"CODECAPI_AVEncVideoContentType","features":[428]},{"name":"CODECAPI_AVEncVideoDefaultUpperFieldDominant","features":[428]},{"name":"CODECAPI_AVEncVideoDirtyRectEnabled","features":[428]},{"name":"CODECAPI_AVEncVideoDisplayDimension","features":[428]},{"name":"CODECAPI_AVEncVideoEncodeDimension","features":[428]},{"name":"CODECAPI_AVEncVideoEncodeFrameTypeQP","features":[428]},{"name":"CODECAPI_AVEncVideoEncodeOffsetOrigin","features":[428]},{"name":"CODECAPI_AVEncVideoEncodeQP","features":[428]},{"name":"CODECAPI_AVEncVideoFieldSwap","features":[428]},{"name":"CODECAPI_AVEncVideoForceKeyFrame","features":[428]},{"name":"CODECAPI_AVEncVideoForceSourceScanType","features":[428]},{"name":"CODECAPI_AVEncVideoGradualIntraRefresh","features":[428]},{"name":"CODECAPI_AVEncVideoHeaderDropFrame","features":[428]},{"name":"CODECAPI_AVEncVideoHeaderFrames","features":[428]},{"name":"CODECAPI_AVEncVideoHeaderHours","features":[428]},{"name":"CODECAPI_AVEncVideoHeaderMinutes","features":[428]},{"name":"CODECAPI_AVEncVideoHeaderSeconds","features":[428]},{"name":"CODECAPI_AVEncVideoInputChromaResolution","features":[428]},{"name":"CODECAPI_AVEncVideoInputChromaSubsampling","features":[428]},{"name":"CODECAPI_AVEncVideoInputColorLighting","features":[428]},{"name":"CODECAPI_AVEncVideoInputColorNominalRange","features":[428]},{"name":"CODECAPI_AVEncVideoInputColorPrimaries","features":[428]},{"name":"CODECAPI_AVEncVideoInputColorTransferFunction","features":[428]},{"name":"CODECAPI_AVEncVideoInputColorTransferMatrix","features":[428]},{"name":"CODECAPI_AVEncVideoInstantTemporalUpSwitching","features":[428]},{"name":"CODECAPI_AVEncVideoIntraLayerPrediction","features":[428]},{"name":"CODECAPI_AVEncVideoInverseTelecineEnable","features":[428]},{"name":"CODECAPI_AVEncVideoInverseTelecineThreshold","features":[428]},{"name":"CODECAPI_AVEncVideoLTRBufferControl","features":[428]},{"name":"CODECAPI_AVEncVideoMarkLTRFrame","features":[428]},{"name":"CODECAPI_AVEncVideoMaxCTBSize","features":[428]},{"name":"CODECAPI_AVEncVideoMaxKeyframeDistance","features":[428]},{"name":"CODECAPI_AVEncVideoMaxNumRefFrame","features":[428]},{"name":"CODECAPI_AVEncVideoMaxNumRefFrameForLayer","features":[428]},{"name":"CODECAPI_AVEncVideoMaxQP","features":[428]},{"name":"CODECAPI_AVEncVideoMaxTemporalLayers","features":[428]},{"name":"CODECAPI_AVEncVideoMeanAbsoluteDifference","features":[428]},{"name":"CODECAPI_AVEncVideoMinQP","features":[428]},{"name":"CODECAPI_AVEncVideoNoOfFieldsToEncode","features":[428]},{"name":"CODECAPI_AVEncVideoNoOfFieldsToSkip","features":[428]},{"name":"CODECAPI_AVEncVideoNumGOPsPerIDR","features":[428]},{"name":"CODECAPI_AVEncVideoOutputChromaResolution","features":[428]},{"name":"CODECAPI_AVEncVideoOutputChromaSubsampling","features":[428]},{"name":"CODECAPI_AVEncVideoOutputColorLighting","features":[428]},{"name":"CODECAPI_AVEncVideoOutputColorNominalRange","features":[428]},{"name":"CODECAPI_AVEncVideoOutputColorPrimaries","features":[428]},{"name":"CODECAPI_AVEncVideoOutputColorTransferFunction","features":[428]},{"name":"CODECAPI_AVEncVideoOutputColorTransferMatrix","features":[428]},{"name":"CODECAPI_AVEncVideoOutputFrameRate","features":[428]},{"name":"CODECAPI_AVEncVideoOutputFrameRateConversion","features":[428]},{"name":"CODECAPI_AVEncVideoOutputScanType","features":[428]},{"name":"CODECAPI_AVEncVideoPixelAspectRatio","features":[428]},{"name":"CODECAPI_AVEncVideoROIEnabled","features":[428]},{"name":"CODECAPI_AVEncVideoRateControlParams","features":[428]},{"name":"CODECAPI_AVEncVideoSelectLayer","features":[428]},{"name":"CODECAPI_AVEncVideoSourceFilmContent","features":[428]},{"name":"CODECAPI_AVEncVideoSourceIsBW","features":[428]},{"name":"CODECAPI_AVEncVideoSupportedControls","features":[428]},{"name":"CODECAPI_AVEncVideoTemporalLayerCount","features":[428]},{"name":"CODECAPI_AVEncVideoUsage","features":[428]},{"name":"CODECAPI_AVEncVideoUseLTRFrame","features":[428]},{"name":"CODECAPI_AVEncWMVDecoderComplexity","features":[428]},{"name":"CODECAPI_AVEncWMVInterlacedEncoding","features":[428]},{"name":"CODECAPI_AVEncWMVKeyFrameBufferLevelMarker","features":[428]},{"name":"CODECAPI_AVEncWMVKeyFrameDistance","features":[428]},{"name":"CODECAPI_AVEncWMVProduceDummyFrames","features":[428]},{"name":"CODECAPI_AVLowLatencyMode","features":[428]},{"name":"CODECAPI_AVPriorityControl","features":[428]},{"name":"CODECAPI_AVRealtimeControl","features":[428]},{"name":"CODECAPI_AVScenarioInfo","features":[428]},{"name":"CODECAPI_CHANGELISTS","features":[428]},{"name":"CODECAPI_CURRENTCHANGELIST","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputAAC","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputDTS","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputDolby","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputDolbyDigitalPlus","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputHEAAC","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputMPEG","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputPCM","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputWMA","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioInputWMAPro","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM_Headphones","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM_Stereo_Auto","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_PCM_Stereo_MatrixEncoded","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_SPDIF_Bitstream","features":[428]},{"name":"CODECAPI_GUID_AVDecAudioOutputFormat_SPDIF_PCM","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatATSC","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVB","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVD_DashVR","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVD_PlusVR","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatDVD_V","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatHighMAT","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatHighMPV","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatMP3","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatSVCD","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatUnSpecified","features":[428]},{"name":"CODECAPI_GUID_AVEncCommonFormatVCD","features":[428]},{"name":"CODECAPI_GUID_AVEncDTS","features":[428]},{"name":"CODECAPI_GUID_AVEncDTSHD","features":[428]},{"name":"CODECAPI_GUID_AVEncDV","features":[428]},{"name":"CODECAPI_GUID_AVEncDolbyDigitalConsumer","features":[428]},{"name":"CODECAPI_GUID_AVEncDolbyDigitalPlus","features":[428]},{"name":"CODECAPI_GUID_AVEncDolbyDigitalPro","features":[428]},{"name":"CODECAPI_GUID_AVEncH264Video","features":[428]},{"name":"CODECAPI_GUID_AVEncMLP","features":[428]},{"name":"CODECAPI_GUID_AVEncMPEG1Audio","features":[428]},{"name":"CODECAPI_GUID_AVEncMPEG1Video","features":[428]},{"name":"CODECAPI_GUID_AVEncMPEG2Audio","features":[428]},{"name":"CODECAPI_GUID_AVEncMPEG2Video","features":[428]},{"name":"CODECAPI_GUID_AVEncPCM","features":[428]},{"name":"CODECAPI_GUID_AVEncSDDS","features":[428]},{"name":"CODECAPI_GUID_AVEncWMALossless","features":[428]},{"name":"CODECAPI_GUID_AVEncWMAPro","features":[428]},{"name":"CODECAPI_GUID_AVEncWMAVoice","features":[428]},{"name":"CODECAPI_GUID_AVEncWMV","features":[428]},{"name":"CODECAPI_GUID_AVEndMPEG4Video","features":[428]},{"name":"CODECAPI_GetOPMContext","features":[428]},{"name":"CODECAPI_SETALLDEFAULTS","features":[428]},{"name":"CODECAPI_SUPPORTSEVENTS","features":[428]},{"name":"CODECAPI_SetHDCPManagerContext","features":[428]},{"name":"CODECAPI_VIDEO_ENCODER","features":[428]},{"name":"CODECAPI_VideoEncoderDisplayContentType","features":[428]},{"name":"COPP_ProtectionType_ACP","features":[428]},{"name":"COPP_ProtectionType_CGMSA","features":[428]},{"name":"COPP_ProtectionType_HDCP","features":[428]},{"name":"COPP_ProtectionType_Mask","features":[428]},{"name":"COPP_ProtectionType_None","features":[428]},{"name":"COPP_ProtectionType_Reserved","features":[428]},{"name":"COPP_ProtectionType_Unknown","features":[428]},{"name":"CPK_DS_AC3Decoder","features":[428]},{"name":"CPK_DS_MPEG2Decoder","features":[428]},{"name":"CResamplerMediaObject","features":[428]},{"name":"CResizerDMO","features":[428]},{"name":"CResizerMediaObject","features":[428]},{"name":"CShotDetectorDmo","features":[428]},{"name":"CSmpteTransformsDmo","features":[428]},{"name":"CThumbnailGeneratorDmo","features":[428]},{"name":"CTocGeneratorDmo","features":[428]},{"name":"CVodafoneAACCCDecMediaObject","features":[428]},{"name":"CVodafoneAACDecMediaObject","features":[428]},{"name":"CWMADecMediaObject","features":[428]},{"name":"CWMAEncMediaObject","features":[428]},{"name":"CWMATransMediaObject","features":[428]},{"name":"CWMAudioAEC","features":[428]},{"name":"CWMAudioCAPXGFXAPO","features":[428]},{"name":"CWMAudioCAPXLFXAPO","features":[428]},{"name":"CWMAudioGFXAPO","features":[428]},{"name":"CWMAudioLFXAPO","features":[428]},{"name":"CWMAudioSpdTxDMO","features":[428]},{"name":"CWMSPDecMediaObject","features":[428]},{"name":"CWMSPEncMediaObject","features":[428]},{"name":"CWMSPEncMediaObject2","features":[428]},{"name":"CWMTDecMediaObject","features":[428]},{"name":"CWMTEncMediaObject","features":[428]},{"name":"CWMV9EncMediaObject","features":[428]},{"name":"CWMVDecMediaObject","features":[428]},{"name":"CWMVEncMediaObject2","features":[428]},{"name":"CWMVXEncMediaObject","features":[428]},{"name":"CWVC1DecMediaObject","features":[428]},{"name":"CWVC1EncMediaObject","features":[428]},{"name":"CZuneAACCCDecMediaObject","features":[428]},{"name":"CZuneM4S2DecMediaObject","features":[428]},{"name":"CodecAPIEventData","features":[428]},{"name":"CreateNamedPropertyStore","features":[428,376]},{"name":"CreatePropertyStore","features":[428,376]},{"name":"D3D12_BITSTREAM_ENCRYPTION_TYPE","features":[428]},{"name":"D3D12_BITSTREAM_ENCRYPTION_TYPE_NONE","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ARCHITECTURE","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODER_HEAP_SIZE","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODER_HEAP_SIZE1","features":[305,393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_CONVERSION_SUPPORT","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_FORMATS","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_FORMAT_COUNT","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_HISTOGRAM","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_PROFILES","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_PROFILE_COUNT","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_PROTECTED_RESOURCES","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_DECODE_SUPPORT","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_CODEC","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_CONFIG","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_HEAP_SIZE","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_INPUT_FORMAT","features":[305,393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_INTRA_REFRESH_MODE","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_OUTPUT_RESOLUTION","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_OUTPUT_RESOLUTION_RATIOS_COUNT","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_PROFILE_LEVEL","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_RATE_CONTROL_MODE","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_RESOLUTION_SUPPORT_LIMITS","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_RESOURCE_REQUIREMENTS","features":[305,393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_SUPPORT","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_ENCODER_SUPPORT1","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMANDS","features":[352,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_COUNT","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_PARAMETERS","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_PARAMETER_COUNT","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_SIZE","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_EXTENSION_COMMAND_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_FEATURE_AREA_SUPPORT","features":[305,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR","features":[393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR_PROTECTED_RESOURCES","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_MOTION_ESTIMATOR_SIZE","features":[305,393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESSOR_SIZE","features":[305,393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESSOR_SIZE1","features":[305,393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_MAX_INPUT_STREAMS","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_PROTECTED_RESOURCES","features":[428]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_REFERENCE_INFO","features":[305,393,428]},{"name":"D3D12_FEATURE_DATA_VIDEO_PROCESS_SUPPORT","features":[393,428]},{"name":"D3D12_FEATURE_VIDEO","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ARCHITECTURE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODER_HEAP_SIZE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODER_HEAP_SIZE1","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_CONVERSION_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_FORMATS","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_FORMAT_COUNT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_HISTOGRAM","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_PROFILES","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_PROFILE_COUNT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_PROTECTED_RESOURCES","features":[428]},{"name":"D3D12_FEATURE_VIDEO_DECODE_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_CODEC","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_CONFIG","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_HEAP_SIZE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_INPUT_FORMAT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_INTRA_REFRESH_MODE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_OUTPUT_RESOLUTION","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_OUTPUT_RESOLUTION_RATIOS_COUNT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_PROFILE_LEVEL","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_RATE_CONTROL_MODE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_RESOURCE_REQUIREMENTS","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_ENCODER_SUPPORT1","features":[428]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMANDS","features":[428]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_COUNT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_PARAMETERS","features":[428]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_PARAMETER_COUNT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_SIZE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_EXTENSION_COMMAND_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_FEATURE_AREA_SUPPORT","features":[428]},{"name":"D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR","features":[428]},{"name":"D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR_PROTECTED_RESOURCES","features":[428]},{"name":"D3D12_FEATURE_VIDEO_MOTION_ESTIMATOR_SIZE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_PROCESSOR_SIZE","features":[428]},{"name":"D3D12_FEATURE_VIDEO_PROCESSOR_SIZE1","features":[428]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_MAX_INPUT_STREAMS","features":[428]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_PROTECTED_RESOURCES","features":[428]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_REFERENCE_INFO","features":[428]},{"name":"D3D12_FEATURE_VIDEO_PROCESS_SUPPORT","features":[428]},{"name":"D3D12_QUERY_DATA_VIDEO_DECODE_STATISTICS","features":[393,428]},{"name":"D3D12_RESOLVE_VIDEO_MOTION_VECTOR_HEAP_INPUT","features":[352,428]},{"name":"D3D12_RESOLVE_VIDEO_MOTION_VECTOR_HEAP_OUTPUT","features":[352,428]},{"name":"D3D12_RESOURCE_COORDINATE","features":[428]},{"name":"D3D12_VIDEO_DECODER_DESC","features":[428]},{"name":"D3D12_VIDEO_DECODER_HEAP_DESC","features":[393,428]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE","features":[428]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_HUFFMAN_TABLE","features":[428]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_INVERSE_QUANTIZATION_MATRIX","features":[428]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_PICTURE_PARAMETERS","features":[428]},{"name":"D3D12_VIDEO_DECODE_ARGUMENT_TYPE_SLICE_CONTROL","features":[428]},{"name":"D3D12_VIDEO_DECODE_COMPRESSED_BITSTREAM","features":[352,428]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAGS","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_ALLOW_RESOLUTION_CHANGE_ON_NON_KEY_FRAME","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_HEIGHT_ALIGNMENT_MULTIPLE_32_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_POST_PROCESSING_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_REFERENCE_ONLY_ALLOCATIONS_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS","features":[305,352,393,428]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_ARGUMENTS1","features":[305,352,393,428]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_SUPPORT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_SUPPORT_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_DECODE_CONVERSION_SUPPORT_FLAG_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_DECODE_FRAME_ARGUMENT","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_A","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_B","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_A","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_B","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_G","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_R","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_U","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_V","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_FLAG_Y","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_G","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_R","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_U","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_V","features":[428]},{"name":"D3D12_VIDEO_DECODE_HISTOGRAM_COMPONENT_Y","features":[428]},{"name":"D3D12_VIDEO_DECODE_INPUT_STREAM_ARGUMENTS","features":[352,428]},{"name":"D3D12_VIDEO_DECODE_OUTPUT_HISTOGRAM","features":[352,428]},{"name":"D3D12_VIDEO_DECODE_OUTPUT_STREAM_ARGUMENTS","features":[305,352,393,428]},{"name":"D3D12_VIDEO_DECODE_OUTPUT_STREAM_ARGUMENTS1","features":[305,352,393,428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_12BIT_PROFILE2","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_12BIT_PROFILE2_420","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_PROFILE0","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_PROFILE1","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_AV1_PROFILE2","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264_MULTIVIEW","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264_STEREO","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_H264_STEREO_PROGRESSIVE","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10_422","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10_444","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN10_EXT","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN12","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN12_422","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN12_444","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN16","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN_444","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MONOCHROME","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_HEVC_MONOCHROME10","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_JPEG_VLD_420","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_JPEG_VLD_422","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_JPEG_VLD_444","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_420","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_422","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_444","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_4444","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG1_AND_MPEG2","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG2","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG4PT2_ADVSIMPLE_NOGMC","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_MPEG4PT2_SIMPLE","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VC1","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VC1_D2010","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VP8","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VP9","features":[428]},{"name":"D3D12_VIDEO_DECODE_PROFILE_VP9_10BIT_PROFILE2","features":[428]},{"name":"D3D12_VIDEO_DECODE_REFERENCE_FRAMES","features":[352,428]},{"name":"D3D12_VIDEO_DECODE_STATUS","features":[428]},{"name":"D3D12_VIDEO_DECODE_STATUS_CONTINUE","features":[428]},{"name":"D3D12_VIDEO_DECODE_STATUS_CONTINUE_SKIP_DISPLAY","features":[428]},{"name":"D3D12_VIDEO_DECODE_STATUS_OK","features":[428]},{"name":"D3D12_VIDEO_DECODE_STATUS_RATE_EXCEEDED","features":[428]},{"name":"D3D12_VIDEO_DECODE_STATUS_RESTART","features":[428]},{"name":"D3D12_VIDEO_DECODE_SUPPORT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_DECODE_SUPPORT_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_DECODE_SUPPORT_FLAG_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_DECODE_TIER","features":[428]},{"name":"D3D12_VIDEO_DECODE_TIER_1","features":[428]},{"name":"D3D12_VIDEO_DECODE_TIER_2","features":[428]},{"name":"D3D12_VIDEO_DECODE_TIER_3","features":[428]},{"name":"D3D12_VIDEO_DECODE_TIER_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_CDEF_CONFIG","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_CODEC_CONFIGURATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_CODEC_CONFIGURATION_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_COMP_PREDICTION_TYPE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_COMP_PREDICTION_TYPE_COMPOUND_REFERENCE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_COMP_PREDICTION_TYPE_SINGLE_REFERENCE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_128x128_SUPERBLOCK","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_ALLOW_HIGH_PRECISION_MV","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_AUTO_SEGMENTATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_CDEF_FILTERING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_CUSTOM_SEGMENTATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_DELTA_LF_PARAMS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_DUAL_FILTER","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_FILTER_INTRA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_FORCED_INTEGER_MOTION_VECTORS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_FRAME_REFERENCE_MOTION_VECTORS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_INTERINTRA_COMPOUND","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_INTRA_BLOCK_COPY","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_INTRA_EDGE_FILTER","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_JNT_COMP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_LOOP_FILTER_DELTAS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_LOOP_RESTORATION_FILTER","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_MASKED_COMPOUND","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_MOTION_MODE_SWITCHABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_ORDER_HINT_TOOLS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_PALETTE_ENCODING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_QUANTIZATION_DELTAS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_QUANTIZATION_MATRIX","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_REDUCED_TX_SET","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_SKIP_MODE_PRESENT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_SUPER_RESOLUTION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FEATURE_FLAG_WARPED_MOTION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_SUPPORT","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_AREA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_CODEC_CONSTRAINT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_COLS_COUNT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_HARDWARE_CONSTRAINT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_NOT_SPECIFIED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_ROWS_COUNT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_TOTAL_TILES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_SUBREGION_LAYOUT_CONFIG_VALIDATION_FLAG_WIDTH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_INTER_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_INTRA_ONLY_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_KEY_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_FLAG_SWITCH_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_INTER_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_INTRA_ONLY_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_KEY_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_FRAME_TYPE_SWITCH_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_BILINEAR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_EIGHTTAP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_EIGHTTAP_SHARP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_EIGHTTAP_SMOOTH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_BILINEAR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_EIGHTTAP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_EIGHTTAP_SHARP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_EIGHTTAP_SMOOTH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_FLAG_SWITCHABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_INTERPOLATION_FILTERS_SWITCHABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_0","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_2_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_0","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_3_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_0","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_4_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_0","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_5_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_0","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_6_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_0","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVELS_7_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_LEVEL_TIER_CONSTRAINTS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_CODEC_DATA","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ALLOW_HIGH_PRECISION_MV","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ALLOW_INTRA_BLOCK_COPY","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_DISABLE_CDF_UPDATE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_DISABLE_FRAME_END_UPDATE_CDF","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_ERROR_RESILIENT_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_FRAME_SEGMENTATION_AUTO","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_FRAME_SEGMENTATION_CUSTOM","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_PALETTE_ENCODING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_SKIP_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_ENABLE_WARPED_MOTION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_FORCE_INTEGER_MOTION_VECTORS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_FRAME_REFERENCE_MOTION_VECTORS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_MOTION_MODE_SWITCHABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_REDUCED_TX_SET","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_FLAG_USE_SUPER_RESOLUTION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_SUBREGIONS_LAYOUT_DATA_TILES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_CDEF_DATA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_COMPOUND_PREDICTION_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_CONTEXT_UPDATE_TILE_ID","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_LOOP_FILTER","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_LOOP_FILTER_DELTA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_PRIMARY_REF_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_QUANTIZATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_QUANTIZATION_DELTA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_POST_ENCODE_VALUES_FLAG_REFERENCE_INDICES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE_HIGH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE_MAIN","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_PROFILE_PROFESSIONAL","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_PICTURE_DESCRIPTOR","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_PICTURE_WARPED_MOTION_INFO","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_AFFINE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_AFFINE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_IDENTITY","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_ROTZOOM","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_FLAG_TRANSLATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_IDENTITY","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_ROTZOOM","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_REFERENCE_WARPED_MOTION_TRANSFORMATION_TRANSLATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_CONFIG","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_128x128","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_256x256","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_32x32","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_64x64","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_SUPPORT_FLAG_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_128x128","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_256x256","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_32x32","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_64x64","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TILESIZE_DISABLED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_DISABLED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_SGRPROJ","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_SWITCHABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_RESTORATION_TYPE_WIENER","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_16x16","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_32x32","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_4x4","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_64x64","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_BLOCK_SIZE_8x8","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_CONFIG","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MAP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_GLOBALMV","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_U","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_V","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_Y_H","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_LF_Y_V","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_Q","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_REF_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_ALT_SKIP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_DISABLED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_GLOBALMV","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_U","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_V","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_Y_H","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_LF_Y_V","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_Q","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_ALT_SKIP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_DISABLED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENTATION_MODE_FLAG_REF_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEGMENT_DATA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_SEQUENCE_STRUCTURE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TIER","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TIER_HIGH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TIER_MAIN","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_LARGEST","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_ONLY4x4","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_FLAG_SELECT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_LARGEST","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_ONLY4x4","features":[428]},{"name":"D3D12_VIDEO_ENCODER_AV1_TX_MODE_SELECT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_LOOP_FILTER_CONFIG","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_LOOP_FILTER_DELTA_CONFIG","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_PICTURE_CONTROL_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_QUANTIZATION_CONFIG","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_AV1_QUANTIZATION_DELTA_CONFIG","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES_DISABLED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES_SPATIAL","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_DIRECT_MODES_TEMPORAL","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_ALLOW_REQUEST_INTRA_CONSTRAINED_SLICES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_ENABLE_CABAC_ENCODING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_USE_ADAPTIVE_8x8_TRANSFORM","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_FLAG_USE_CONSTRAINED_INTRAPREDICTION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_0_ALL_LUMA_CHROMA_SLICE_BLOCK_EDGES_ALWAYS_FILTERED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_1_DISABLE_ALL_SLICE_BLOCK_EDGES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_2_DISABLE_SLICE_BOUNDARIES_BLOCKS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_3_USE_TWO_STAGE_DEBLOCKING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_4_DISABLE_CHROMA_BLOCK_EDGES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_5_DISABLE_CHROMA_BLOCK_EDGES_AND_LUMA_BOUNDARIES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_6_DISABLE_CHROMA_BLOCK_EDGES_AND_USE_LUMA_TWO_STAGE_DEBLOCKING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_0_ALL_LUMA_CHROMA_SLICE_BLOCK_EDGES_ALWAYS_FILTERED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_1_DISABLE_ALL_SLICE_BLOCK_EDGES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_2_DISABLE_SLICE_BOUNDARIES_BLOCKS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_3_USE_TWO_STAGE_DEBLOCKING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_4_DISABLE_CHROMA_BLOCK_EDGES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_5_DISABLE_CHROMA_BLOCK_EDGES_AND_LUMA_BOUNDARIES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_6_DISABLE_CHROMA_BLOCK_EDGES_AND_USE_LUMA_TWO_STAGE_DEBLOCKING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_H264_SLICES_DEBLOCKING_MODE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_16x16","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_32x32","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_64x64","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_8x8","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ALLOW_REQUEST_INTRA_CONSTRAINED_SLICES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_CABAC_BYPASS_ALIGNMENT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_DISABLE_LOOP_FILTER_ACROSS_SLICES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_LONG_TERM_REFERENCES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_SAO_FILTER","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_TRANSFORM_SKIPPING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_EXPLICIT_RDPCM","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_EXTENDED_PRECISION_PROCESSING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_HIGH_PRECISION_OFFSETS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_IMPLICIT_RDPCM","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_INTRA_SMOOTHING_DISABLED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_PERSISTENT_RICE_ADAPTATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_SEPARATE_COLOUR_PLANE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_TRANSFORM_SKIP_CONTEXT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_TRANSFORM_SKIP_ROTATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_USE_ASYMETRIC_MOTION_PARTITION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_USE_CONSTRAINED_INTRAPREDICTION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_16x16","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_32x32","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_4x4","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_8x8","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_ADAPTIVE_8x8_TRANSFORM_ENCODING_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_BFRAME_LTR_COMBINED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_CABAC_ENCODING_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_CONSTRAINED_INTRAPREDICTION_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_DIRECT_SPATIAL_ENCODING_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_DIRECT_TEMPORAL_ENCODING_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_INTRA_SLICE_CONSTRAINED_ENCODING_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG1_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG1_SEPARATE_COLOUR_PLANE_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG1_SEPARATE_COLOUR_PLANE_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_ASYMETRIC_MOTION_PARTITION_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_ASYMETRIC_MOTION_PARTITION_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_BFRAME_LTR_COMBINED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CABAC_BYPASS_ALIGNMENT_ENABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CABAC_BYPASS_ALIGNMENT_ENABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CHROMA_QP_OFFSET_LIST_ENABLED_FLAG_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CHROMA_QP_OFFSET_LIST_ENABLED_FLAG_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CONSTRAINED_INTRAPREDICTION_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CROSS_COMPONENT_PREDICTION_ENABLED_FLAG_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CROSS_COMPONENT_PREDICTION_ENABLED_FLAG_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_DISABLING_LOOP_FILTER_ACROSS_SLICES_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXPLICIT_RDPCM_ENABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXPLICIT_RDPCM_ENABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXTENDED_PRECISION_PROCESSING_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXTENDED_PRECISION_PROCESSING_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_HIGH_PRECISION_OFFSETS_ENABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_HIGH_PRECISION_OFFSETS_ENABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_IMPLICIT_RDPCM_ENABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_IMPLICIT_RDPCM_ENABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_INTRA_SLICE_CONSTRAINED_ENCODING_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_INTRA_SMOOTHING_DISABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_INTRA_SMOOTHING_DISABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_PERSISTENT_RICE_ADAPTATION_ENABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_PERSISTENT_RICE_ADAPTATION_ENABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_P_FRAMES_IMPLEMENTED_AS_LOW_DELAY_B_FRAMES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_SAO_FILTER_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_CONTEXT_ENABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_CONTEXT_ENABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_ROTATION_ENABLED_REQUIRED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_ROTATION_ENABLED_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_COMPRESSED_BITSTREAM","features":[352,428]},{"name":"D3D12_VIDEO_ENCODER_DESC","features":[393,428]},{"name":"D3D12_VIDEO_ENCODER_ENCODEFRAME_INPUT_ARGUMENTS","features":[305,352,393,428]},{"name":"D3D12_VIDEO_ENCODER_ENCODEFRAME_OUTPUT_ARGUMENTS","features":[352,428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_CODEC_PICTURE_CONTROL_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_INVALID_METADATA_BUFFER_SOURCE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_INVALID_REFERENCE_PICTURES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_NO_ERROR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_RECONFIGURATION_REQUEST_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAG_SUBREGION_LAYOUT_CONFIGURATION_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_ENCODE_OPERATION_METADATA_BUFFER","features":[352,428]},{"name":"D3D12_VIDEO_ENCODER_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_CONFIG_SUPPORT","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_BYTES_PER_SUBREGION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_CONFIGURABLE_GRID_PARTITION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_FULL_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_SQUARE_UNITS_PER_SUBREGION_ROW_UNALIGNED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_UNIFORM_GRID_PARTITION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_UNIFORM_PARTITIONING_ROWS_PER_SUBREGION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_LAYOUT_MODE_UNIFORM_PARTITIONING_SUBREGIONS_PER_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_SUBREGION_METADATA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_B_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_IDR_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_I_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_H264_P_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_B_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_IDR_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_I_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC_P_FRAME","features":[428]},{"name":"D3D12_VIDEO_ENCODER_HEAP_DESC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_HEAP_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_HEAP_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH_MODE_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_INTRA_REFRESH_MODE_ROW_BASED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_11","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_12","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_13","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_1b","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_21","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_22","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_31","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_32","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_4","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_41","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_42","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_5","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_51","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_52","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_6","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_61","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_H264_62","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_2","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_21","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_3","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_31","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_4","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_41","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_5","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_51","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_52","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_6","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_61","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVELS_HEVC_62","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVEL_SETTING","features":[428]},{"name":"D3D12_VIDEO_ENCODER_LEVEL_TIER_CONSTRAINTS_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_EIGHTH_PIXEL","features":[428]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_FULL_PIXEL","features":[428]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_HALF_PIXEL","features":[428]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_MAXIMUM","features":[428]},{"name":"D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_QUARTER_PIXEL","features":[428]},{"name":"D3D12_VIDEO_ENCODER_OUTPUT_METADATA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_OUTPUT_METADATA_STATISTICS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_REQUEST_INTRA_CONSTRAINED_SLICES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_REQUEST_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_REFERENCE_PICTURE_LIST_MODIFICATION_OPERATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_REFERENCE_PICTURE_MARKING_OPERATION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC1","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_CHROMA_QP_OFFSET_LIST","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_CROSS_COMPONENT_PREDICTION","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_REQUEST_INTRA_CONSTRAINED_SLICES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_REQUEST_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_DESC","features":[305,352,428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAG_USED_AS_REFERENCE_PICTURE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_SUBREGIONS_LAYOUT_DATA","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_CONTROL_SUBREGIONS_LAYOUT_DATA_SLICES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_RESOLUTION_DESC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PICTURE_RESOLUTION_RATIO_DESC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_DESC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH_10","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_H264_MAIN","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10_422","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10_444","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN12","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN12_422","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN12_444","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN16_444","features":[428]},{"name":"D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN_444","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL","features":[393,428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_ABSOLUTE_QP_MAP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CBR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CBR1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CONFIGURATION_PARAMS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CQP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_CQP1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_DELTA_QP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_EXTENSION1_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_FRAME_ANALYSIS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_INITIAL_QP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_MAX_FRAME_SIZE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_QP_RANGE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_QUALITY_VS_SPEED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_VBV_SIZES","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_ABSOLUTE_QP_MAP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_CBR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_CQP","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_QVBR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_MODE_VBR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_QVBR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_QVBR1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_VBR","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RATE_CONTROL_VBR1","features":[428]},{"name":"D3D12_VIDEO_ENCODER_RECONSTRUCTED_PICTURE","features":[352,428]},{"name":"D3D12_VIDEO_ENCODER_REFERENCE_PICTURE_DESCRIPTOR_H264","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_REFERENCE_PICTURE_DESCRIPTOR_HEVC","features":[305,428]},{"name":"D3D12_VIDEO_ENCODER_RESOLVE_METADATA_INPUT_ARGUMENTS","features":[352,393,428]},{"name":"D3D12_VIDEO_ENCODER_RESOLVE_METADATA_OUTPUT_ARGUMENTS","features":[352,428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_DESC","features":[393,428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_GOP_SEQUENCE_CHANGE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_RATE_CONTROL_CHANGE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_REQUEST_INTRA_REFRESH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_RESOLUTION_CHANGE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_CONTROL_FLAG_SUBREGION_LAYOUT_CHANGE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_GOP_STRUCTURE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_GOP_STRUCTURE_H264","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SEQUENCE_GOP_STRUCTURE_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_GENERAL_SUPPORT_OK","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_MOTION_ESTIMATION_PRECISION_MODE_LIMIT_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_ADJUSTABLE_QP_RANGE_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_DELTA_QP_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_EXTENSION1_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_FRAME_ANALYSIS_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_INITIAL_QP_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_MAX_FRAME_SIZE_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_QUALITY_VS_SPEED_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_RECONFIGURATION_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_VBV_SIZE_CONFIG_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_READABLE_RECONSTRUCTED_PICTURE_LAYOUT_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RECONSTRUCTED_FRAMES_REQUIRE_TEXTURE_ARRAYS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RESOLUTION_RECONFIGURATION_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_SEQUENCE_GOP_RECONFIGURATION_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_SUPPORT_FLAG_SUBREGION_LAYOUT_RECONFIGURATION_AVAILABLE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_TIER_HEVC","features":[428]},{"name":"D3D12_VIDEO_ENCODER_TIER_HEVC_HIGH","features":[428]},{"name":"D3D12_VIDEO_ENCODER_TIER_HEVC_MAIN","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAGS","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_CODEC_CONFIGURATION_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_CODEC_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_GOP_STRUCTURE_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_INPUT_FORMAT_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_INTRA_REFRESH_MODE_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_RATE_CONTROL_CONFIGURATION_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_RATE_CONTROL_MODE_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_RESOLUTION_NOT_SUPPORTED_IN_LIST","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_SUBREGION_LAYOUT_DATA_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODER_VALIDATION_FLAG_SUBREGION_LAYOUT_MODE_NOT_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_ENCODE_REFERENCE_FRAMES","features":[352,428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_DESC","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_INFO","features":[352,428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAGS","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAG_READ","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_FLAG_WRITE","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_INFO","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CAPS_INPUT","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CAPS_OUTPUT","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_CREATION","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_DEVICE_EXECUTE_INPUT","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_DEVICE_EXECUTE_OUTPUT","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_EXECUTION","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_STAGE_INITIALIZATION","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_DOUBLE","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_FLOAT","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_RESOURCE","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT16","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT32","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT64","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_SINT8","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT16","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT32","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT64","features":[428]},{"name":"D3D12_VIDEO_EXTENSION_COMMAND_PARAMETER_TYPE_UINT8","features":[428]},{"name":"D3D12_VIDEO_FIELD_TYPE","features":[428]},{"name":"D3D12_VIDEO_FIELD_TYPE_INTERLACED_BOTTOM_FIELD_FIRST","features":[428]},{"name":"D3D12_VIDEO_FIELD_TYPE_INTERLACED_TOP_FIELD_FIRST","features":[428]},{"name":"D3D12_VIDEO_FIELD_TYPE_NONE","features":[428]},{"name":"D3D12_VIDEO_FORMAT","features":[393,428]},{"name":"D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE","features":[428]},{"name":"D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE_FIELD_BASED","features":[428]},{"name":"D3D12_VIDEO_FRAME_CODED_INTERLACE_TYPE_NONE","features":[428]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT","features":[428]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_HORIZONTAL","features":[428]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_MONO","features":[428]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_NONE","features":[428]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_SEPARATE","features":[428]},{"name":"D3D12_VIDEO_FRAME_STEREO_FORMAT_VERTICAL","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_DESC","features":[393,428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_INPUT","features":[352,428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_OUTPUT","features":[352,428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_16X16","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_8X8","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAG_16X16","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAG_8X8","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_SEARCH_BLOCK_SIZE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_FLAGS","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_FLAG_QUARTER_PEL","features":[428]},{"name":"D3D12_VIDEO_MOTION_ESTIMATOR_VECTOR_PRECISION_QUARTER_PEL","features":[428]},{"name":"D3D12_VIDEO_MOTION_VECTOR_HEAP_DESC","features":[393,428]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_BLENDING","features":[305,428]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_BACKGROUND","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_DESTINATION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_OPAQUE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ALPHA_FILL_MODE_SOURCE_STREAM","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAGS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_ANAMORPHIC_SCALING","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_COLOR_CORRECTION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_CUSTOM","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_DENOISE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_DERINGING","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_EDGE_ENHANCEMENT","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_FLESH_TONE_MAPPING","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_IMAGE_STABILIZATION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_AUTO_PROCESSING_FLAG_SUPER_RESOLUTION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAG_BOB","features":[428]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAG_CUSTOM","features":[428]},{"name":"D3D12_VIDEO_PROCESS_DEINTERLACE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAGS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_ALPHA_BLENDING","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_ALPHA_FILL","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_FLIP","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_LUMA_KEY","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_PIXEL_ASPECT_RATIO","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_ROTATION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FEATURE_FLAG_STEREO","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_ANAMORPHIC_SCALING","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_BRIGHTNESS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_CONTRAST","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_EDGE_ENHANCEMENT","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAGS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_ANAMORPHIC_SCALING","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_BRIGHTNESS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_CONTRAST","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_EDGE_ENHANCEMENT","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_HUE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_NOISE_REDUCTION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_SATURATION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_FLAG_STEREO_ADJUSTMENT","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_HUE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_NOISE_REDUCTION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_RANGE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_SATURATION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_FILTER_STEREO_ADJUSTMENT","features":[428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM","features":[352,428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS","features":[305,352,428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_ARGUMENTS1","features":[305,352,428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_DESC","features":[305,393,428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAGS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAG_FRAME_DISCONTINUITY","features":[428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAG_FRAME_REPEAT","features":[428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_INPUT_STREAM_RATE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_LUMA_KEY","features":[305,428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_180","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_270","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_270_FLIP_HORIZONTAL","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_90","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_CLOCKWISE_90_FLIP_HORIZONTAL","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_DEFAULT","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_FLIP_HORIZONTAL","features":[428]},{"name":"D3D12_VIDEO_PROCESS_ORIENTATION_FLIP_VERTICAL","features":[428]},{"name":"D3D12_VIDEO_PROCESS_OUTPUT_STREAM","features":[352,428]},{"name":"D3D12_VIDEO_PROCESS_OUTPUT_STREAM_ARGUMENTS","features":[305,352,428]},{"name":"D3D12_VIDEO_PROCESS_OUTPUT_STREAM_DESC","features":[305,393,428]},{"name":"D3D12_VIDEO_PROCESS_REFERENCE_SET","features":[352,428]},{"name":"D3D12_VIDEO_PROCESS_SUPPORT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_PROCESS_SUPPORT_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_PROCESS_SUPPORT_FLAG_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_PROCESS_TRANSFORM","features":[305,428]},{"name":"D3D12_VIDEO_PROTECTED_RESOURCE_SUPPORT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_PROTECTED_RESOURCE_SUPPORT_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_PROTECTED_RESOURCE_SUPPORT_FLAG_SUPPORTED","features":[428]},{"name":"D3D12_VIDEO_SAMPLE","features":[393,428]},{"name":"D3D12_VIDEO_SCALE_SUPPORT","features":[428]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAGS","features":[428]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAG_EVEN_DIMENSIONS_ONLY","features":[428]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAG_NONE","features":[428]},{"name":"D3D12_VIDEO_SCALE_SUPPORT_FLAG_POW2_ONLY","features":[428]},{"name":"D3D12_VIDEO_SIZE_RANGE","features":[428]},{"name":"D3DCONTENTPROTECTIONCAPS","features":[428]},{"name":"D3DCONTENTPROTECTIONCAPS","features":[428]},{"name":"D3DOVERLAYCAPS","features":[428]},{"name":"DEVICE_INFO","features":[428]},{"name":"DEVPKEY_DeviceInterface_IsVirtualCamera","features":[303,428]},{"name":"DEVPKEY_DeviceInterface_IsWindowsCameraEffectAvailable","features":[303,428]},{"name":"DEVPKEY_DeviceInterface_VirtualCameraAssociatedCameras","features":[303,428]},{"name":"DIRTYRECT_INFO","features":[305,428]},{"name":"DSATTRIB_CAPTURE_STREAMTIME","features":[428]},{"name":"DSATTRIB_CC_CONTAINER_INFO","features":[428]},{"name":"DSATTRIB_DSHOW_STREAM_DESC","features":[428]},{"name":"DSATTRIB_OptionalVideoAttributes","features":[428]},{"name":"DSATTRIB_PBDATAG_ATTRIBUTE","features":[428]},{"name":"DSATTRIB_PicSampleSeq","features":[428]},{"name":"DSATTRIB_SAMPLE_LIVE_STREAM_TIME","features":[428]},{"name":"DSATTRIB_TRANSPORT_PROPERTIES","features":[428]},{"name":"DSATTRIB_UDCRTag","features":[428]},{"name":"DXVA2CreateDirect3DDeviceManager9","features":[428]},{"name":"DXVA2CreateVideoService","features":[314,428]},{"name":"DXVA2_AES_CTR_IV","features":[428]},{"name":"DXVA2_AYUVSample16","features":[428]},{"name":"DXVA2_AYUVSample8","features":[428]},{"name":"DXVA2_BitStreamDateBufferType","features":[428]},{"name":"DXVA2_BufferfType","features":[428]},{"name":"DXVA2_ConfigPictureDecode","features":[428]},{"name":"DXVA2_DECODE_GET_DRIVER_HANDLE","features":[428]},{"name":"DXVA2_DECODE_SPECIFY_ENCRYPTED_BLOCKS","features":[428]},{"name":"DXVA2_DeblockingControlBufferType","features":[428]},{"name":"DXVA2_DecodeBufferDesc","features":[428]},{"name":"DXVA2_DecodeExecuteParams","features":[428]},{"name":"DXVA2_DecodeExtensionData","features":[428]},{"name":"DXVA2_DeinterlaceTech","features":[428]},{"name":"DXVA2_DeinterlaceTech_BOBLineReplicate","features":[428]},{"name":"DXVA2_DeinterlaceTech_BOBVerticalStretch","features":[428]},{"name":"DXVA2_DeinterlaceTech_BOBVerticalStretch4Tap","features":[428]},{"name":"DXVA2_DeinterlaceTech_EdgeFiltering","features":[428]},{"name":"DXVA2_DeinterlaceTech_FieldAdaptive","features":[428]},{"name":"DXVA2_DeinterlaceTech_InverseTelecine","features":[428]},{"name":"DXVA2_DeinterlaceTech_Mask","features":[428]},{"name":"DXVA2_DeinterlaceTech_MedianFiltering","features":[428]},{"name":"DXVA2_DeinterlaceTech_MotionVectorSteered","features":[428]},{"name":"DXVA2_DeinterlaceTech_PixelAdaptive","features":[428]},{"name":"DXVA2_DeinterlaceTech_Unknown","features":[428]},{"name":"DXVA2_DestData","features":[428]},{"name":"DXVA2_DestData_Mask","features":[428]},{"name":"DXVA2_DestData_RFF","features":[428]},{"name":"DXVA2_DestData_RFF_TFF_Present","features":[428]},{"name":"DXVA2_DestData_TFF","features":[428]},{"name":"DXVA2_DetailFilterChromaLevel","features":[428]},{"name":"DXVA2_DetailFilterChromaRadius","features":[428]},{"name":"DXVA2_DetailFilterChromaThreshold","features":[428]},{"name":"DXVA2_DetailFilterLumaLevel","features":[428]},{"name":"DXVA2_DetailFilterLumaRadius","features":[428]},{"name":"DXVA2_DetailFilterLumaThreshold","features":[428]},{"name":"DXVA2_DetailFilterTech","features":[428]},{"name":"DXVA2_DetailFilterTech_Edge","features":[428]},{"name":"DXVA2_DetailFilterTech_Mask","features":[428]},{"name":"DXVA2_DetailFilterTech_Sharpening","features":[428]},{"name":"DXVA2_DetailFilterTech_Unknown","features":[428]},{"name":"DXVA2_DetailFilterTech_Unsupported","features":[428]},{"name":"DXVA2_E_NEW_VIDEO_DEVICE","features":[428]},{"name":"DXVA2_E_NOT_AVAILABLE","features":[428]},{"name":"DXVA2_E_NOT_INITIALIZED","features":[428]},{"name":"DXVA2_E_VIDEO_DEVICE_LOCKED","features":[428]},{"name":"DXVA2_ExtendedFormat","features":[428]},{"name":"DXVA2_FilmGrainBuffer","features":[428]},{"name":"DXVA2_FilterType","features":[428]},{"name":"DXVA2_FilterValues","features":[428]},{"name":"DXVA2_Fixed32","features":[428]},{"name":"DXVA2_Frequency","features":[428]},{"name":"DXVA2_InverseQuantizationMatrixBufferType","features":[428]},{"name":"DXVA2_MacroBlockControlBufferType","features":[428]},{"name":"DXVA2_ModeH264_A","features":[428]},{"name":"DXVA2_ModeH264_B","features":[428]},{"name":"DXVA2_ModeH264_C","features":[428]},{"name":"DXVA2_ModeH264_D","features":[428]},{"name":"DXVA2_ModeH264_E","features":[428]},{"name":"DXVA2_ModeH264_F","features":[428]},{"name":"DXVA2_ModeH264_VLD_Multiview_NoFGT","features":[428]},{"name":"DXVA2_ModeH264_VLD_Stereo_NoFGT","features":[428]},{"name":"DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT","features":[428]},{"name":"DXVA2_ModeH264_VLD_WithFMOASO_NoFGT","features":[428]},{"name":"DXVA2_ModeHEVC_VLD_Main","features":[428]},{"name":"DXVA2_ModeHEVC_VLD_Main10","features":[428]},{"name":"DXVA2_ModeMPEG1_VLD","features":[428]},{"name":"DXVA2_ModeMPEG2_IDCT","features":[428]},{"name":"DXVA2_ModeMPEG2_MoComp","features":[428]},{"name":"DXVA2_ModeMPEG2_VLD","features":[428]},{"name":"DXVA2_ModeMPEG2and1_VLD","features":[428]},{"name":"DXVA2_ModeMPEG4pt2_VLD_AdvSimple_GMC","features":[428]},{"name":"DXVA2_ModeMPEG4pt2_VLD_AdvSimple_NoGMC","features":[428]},{"name":"DXVA2_ModeMPEG4pt2_VLD_Simple","features":[428]},{"name":"DXVA2_ModeVC1_A","features":[428]},{"name":"DXVA2_ModeVC1_B","features":[428]},{"name":"DXVA2_ModeVC1_C","features":[428]},{"name":"DXVA2_ModeVC1_D","features":[428]},{"name":"DXVA2_ModeVC1_D2010","features":[428]},{"name":"DXVA2_ModeVP8_VLD","features":[428]},{"name":"DXVA2_ModeVP9_VLD_10bit_Profile2","features":[428]},{"name":"DXVA2_ModeVP9_VLD_Profile0","features":[428]},{"name":"DXVA2_ModeWMV8_A","features":[428]},{"name":"DXVA2_ModeWMV8_B","features":[428]},{"name":"DXVA2_ModeWMV9_A","features":[428]},{"name":"DXVA2_ModeWMV9_B","features":[428]},{"name":"DXVA2_ModeWMV9_C","features":[428]},{"name":"DXVA2_MotionVectorBuffer","features":[428]},{"name":"DXVA2_NoEncrypt","features":[428]},{"name":"DXVA2_NoiseFilterChromaLevel","features":[428]},{"name":"DXVA2_NoiseFilterChromaRadius","features":[428]},{"name":"DXVA2_NoiseFilterChromaThreshold","features":[428]},{"name":"DXVA2_NoiseFilterLumaLevel","features":[428]},{"name":"DXVA2_NoiseFilterLumaRadius","features":[428]},{"name":"DXVA2_NoiseFilterLumaThreshold","features":[428]},{"name":"DXVA2_NoiseFilterTech","features":[428]},{"name":"DXVA2_NoiseFilterTech_BlockNoise","features":[428]},{"name":"DXVA2_NoiseFilterTech_Mask","features":[428]},{"name":"DXVA2_NoiseFilterTech_Median","features":[428]},{"name":"DXVA2_NoiseFilterTech_MosquitoNoise","features":[428]},{"name":"DXVA2_NoiseFilterTech_Temporal","features":[428]},{"name":"DXVA2_NoiseFilterTech_Unknown","features":[428]},{"name":"DXVA2_NoiseFilterTech_Unsupported","features":[428]},{"name":"DXVA2_NominalRange","features":[428]},{"name":"DXVA2_NominalRangeMask","features":[428]},{"name":"DXVA2_NominalRange_0_255","features":[428]},{"name":"DXVA2_NominalRange_16_235","features":[428]},{"name":"DXVA2_NominalRange_48_208","features":[428]},{"name":"DXVA2_NominalRange_Normal","features":[428]},{"name":"DXVA2_NominalRange_Unknown","features":[428]},{"name":"DXVA2_NominalRange_Wide","features":[428]},{"name":"DXVA2_PictureParametersBufferType","features":[428]},{"name":"DXVA2_ProcAmp","features":[428]},{"name":"DXVA2_ProcAmpValues","features":[428]},{"name":"DXVA2_ProcAmp_Brightness","features":[428]},{"name":"DXVA2_ProcAmp_Contrast","features":[428]},{"name":"DXVA2_ProcAmp_Hue","features":[428]},{"name":"DXVA2_ProcAmp_Mask","features":[428]},{"name":"DXVA2_ProcAmp_None","features":[428]},{"name":"DXVA2_ProcAmp_Saturation","features":[428]},{"name":"DXVA2_ResidualDifferenceBufferType","features":[428]},{"name":"DXVA2_SampleData","features":[428]},{"name":"DXVA2_SampleData_Mask","features":[428]},{"name":"DXVA2_SampleData_RFF","features":[428]},{"name":"DXVA2_SampleData_RFF_TFF_Present","features":[428]},{"name":"DXVA2_SampleData_TFF","features":[428]},{"name":"DXVA2_SampleFieldInterleavedEvenFirst","features":[428]},{"name":"DXVA2_SampleFieldInterleavedOddFirst","features":[428]},{"name":"DXVA2_SampleFieldSingleEven","features":[428]},{"name":"DXVA2_SampleFieldSingleOdd","features":[428]},{"name":"DXVA2_SampleFormat","features":[428]},{"name":"DXVA2_SampleFormatMask","features":[428]},{"name":"DXVA2_SampleProgressiveFrame","features":[428]},{"name":"DXVA2_SampleSubStream","features":[428]},{"name":"DXVA2_SampleUnknown","features":[428]},{"name":"DXVA2_SliceControlBufferType","features":[428]},{"name":"DXVA2_SurfaceType","features":[428]},{"name":"DXVA2_SurfaceType_D3DRenderTargetTexture","features":[428]},{"name":"DXVA2_SurfaceType_DecoderRenderTarget","features":[428]},{"name":"DXVA2_SurfaceType_ProcessorRenderTarget","features":[428]},{"name":"DXVA2_VPDev","features":[428]},{"name":"DXVA2_VPDev_EmulatedDXVA1","features":[428]},{"name":"DXVA2_VPDev_HardwareDevice","features":[428]},{"name":"DXVA2_VPDev_Mask","features":[428]},{"name":"DXVA2_VPDev_SoftwareDevice","features":[428]},{"name":"DXVA2_ValueRange","features":[428]},{"name":"DXVA2_VideoChromaSubSampling","features":[428]},{"name":"DXVA2_VideoChromaSubsamplingMask","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_Cosited","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_DV_PAL","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_Horizontally_Cosited","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_MPEG1","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_MPEG2","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_ProgressiveChroma","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_Unknown","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_Vertically_AlignedChromaPlanes","features":[428]},{"name":"DXVA2_VideoChromaSubsampling_Vertically_Cosited","features":[428]},{"name":"DXVA2_VideoDecoderRenderTarget","features":[428]},{"name":"DXVA2_VideoDesc","features":[314,428]},{"name":"DXVA2_VideoLighting","features":[428]},{"name":"DXVA2_VideoLightingMask","features":[428]},{"name":"DXVA2_VideoLighting_Unknown","features":[428]},{"name":"DXVA2_VideoLighting_bright","features":[428]},{"name":"DXVA2_VideoLighting_dark","features":[428]},{"name":"DXVA2_VideoLighting_dim","features":[428]},{"name":"DXVA2_VideoLighting_office","features":[428]},{"name":"DXVA2_VideoPrimaries","features":[428]},{"name":"DXVA2_VideoPrimariesMask","features":[428]},{"name":"DXVA2_VideoPrimaries_BT470_2_SysBG","features":[428]},{"name":"DXVA2_VideoPrimaries_BT470_2_SysM","features":[428]},{"name":"DXVA2_VideoPrimaries_BT709","features":[428]},{"name":"DXVA2_VideoPrimaries_EBU3213","features":[428]},{"name":"DXVA2_VideoPrimaries_SMPTE170M","features":[428]},{"name":"DXVA2_VideoPrimaries_SMPTE240M","features":[428]},{"name":"DXVA2_VideoPrimaries_SMPTE_C","features":[428]},{"name":"DXVA2_VideoPrimaries_Unknown","features":[428]},{"name":"DXVA2_VideoPrimaries_reserved","features":[428]},{"name":"DXVA2_VideoProcBobDevice","features":[428]},{"name":"DXVA2_VideoProcProgressiveDevice","features":[428]},{"name":"DXVA2_VideoProcSoftwareDevice","features":[428]},{"name":"DXVA2_VideoProcess","features":[428]},{"name":"DXVA2_VideoProcessBltParams","features":[305,428]},{"name":"DXVA2_VideoProcess_AlphaBlend","features":[428]},{"name":"DXVA2_VideoProcess_AlphaBlendExtended","features":[428]},{"name":"DXVA2_VideoProcess_Constriction","features":[428]},{"name":"DXVA2_VideoProcess_DetailFilter","features":[428]},{"name":"DXVA2_VideoProcess_GammaCompensated","features":[428]},{"name":"DXVA2_VideoProcess_LinearScaling","features":[428]},{"name":"DXVA2_VideoProcess_MaintainsOriginalFieldData","features":[428]},{"name":"DXVA2_VideoProcess_Mask","features":[428]},{"name":"DXVA2_VideoProcess_NoiseFilter","features":[428]},{"name":"DXVA2_VideoProcess_None","features":[428]},{"name":"DXVA2_VideoProcess_PlanarAlpha","features":[428]},{"name":"DXVA2_VideoProcess_StretchX","features":[428]},{"name":"DXVA2_VideoProcess_StretchY","features":[428]},{"name":"DXVA2_VideoProcess_SubRects","features":[428]},{"name":"DXVA2_VideoProcess_SubStreams","features":[428]},{"name":"DXVA2_VideoProcess_SubStreamsExtended","features":[428]},{"name":"DXVA2_VideoProcess_YUV2RGB","features":[428]},{"name":"DXVA2_VideoProcess_YUV2RGBExtended","features":[428]},{"name":"DXVA2_VideoProcessorCaps","features":[314,428]},{"name":"DXVA2_VideoProcessorRenderTarget","features":[428]},{"name":"DXVA2_VideoRenderTargetType","features":[428]},{"name":"DXVA2_VideoSample","features":[305,314,428]},{"name":"DXVA2_VideoSoftwareRenderTarget","features":[428]},{"name":"DXVA2_VideoTransFuncMask","features":[428]},{"name":"DXVA2_VideoTransFunc_10","features":[428]},{"name":"DXVA2_VideoTransFunc_18","features":[428]},{"name":"DXVA2_VideoTransFunc_20","features":[428]},{"name":"DXVA2_VideoTransFunc_22","features":[428]},{"name":"DXVA2_VideoTransFunc_240M","features":[428]},{"name":"DXVA2_VideoTransFunc_28","features":[428]},{"name":"DXVA2_VideoTransFunc_709","features":[428]},{"name":"DXVA2_VideoTransFunc_Unknown","features":[428]},{"name":"DXVA2_VideoTransFunc_sRGB","features":[428]},{"name":"DXVA2_VideoTransferFunction","features":[428]},{"name":"DXVA2_VideoTransferMatrix","features":[428]},{"name":"DXVA2_VideoTransferMatrixMask","features":[428]},{"name":"DXVA2_VideoTransferMatrix_BT601","features":[428]},{"name":"DXVA2_VideoTransferMatrix_BT709","features":[428]},{"name":"DXVA2_VideoTransferMatrix_SMPTE240M","features":[428]},{"name":"DXVA2_VideoTransferMatrix_Unknown","features":[428]},{"name":"DXVABufferInfo","features":[428]},{"name":"DXVACompBufferInfo","features":[314,428]},{"name":"DXVAHDControlGuid","features":[428]},{"name":"DXVAHDETWGUID_CREATEVIDEOPROCESSOR","features":[428]},{"name":"DXVAHDETWGUID_DESTROYVIDEOPROCESSOR","features":[428]},{"name":"DXVAHDETWGUID_VIDEOPROCESSBLTHD","features":[428]},{"name":"DXVAHDETWGUID_VIDEOPROCESSBLTHD_STREAM","features":[428]},{"name":"DXVAHDETWGUID_VIDEOPROCESSBLTSTATE","features":[428]},{"name":"DXVAHDETWGUID_VIDEOPROCESSSTREAMSTATE","features":[428]},{"name":"DXVAHDETW_CREATEVIDEOPROCESSOR","features":[428]},{"name":"DXVAHDETW_DESTROYVIDEOPROCESSOR","features":[428]},{"name":"DXVAHDETW_VIDEOPROCESSBLTHD","features":[305,314,428]},{"name":"DXVAHDETW_VIDEOPROCESSBLTHD_STREAM","features":[305,314,428]},{"name":"DXVAHDETW_VIDEOPROCESSBLTSTATE","features":[305,428]},{"name":"DXVAHDETW_VIDEOPROCESSSTREAMSTATE","features":[305,428]},{"name":"DXVAHDSW_CALLBACKS","features":[305,314,428]},{"name":"DXVAHD_ALPHA_FILL_MODE","features":[428]},{"name":"DXVAHD_ALPHA_FILL_MODE_BACKGROUND","features":[428]},{"name":"DXVAHD_ALPHA_FILL_MODE_DESTINATION","features":[428]},{"name":"DXVAHD_ALPHA_FILL_MODE_OPAQUE","features":[428]},{"name":"DXVAHD_ALPHA_FILL_MODE_SOURCE_STREAM","features":[428]},{"name":"DXVAHD_BLT_STATE","features":[428]},{"name":"DXVAHD_BLT_STATE_ALPHA_FILL","features":[428]},{"name":"DXVAHD_BLT_STATE_ALPHA_FILL_DATA","features":[428]},{"name":"DXVAHD_BLT_STATE_BACKGROUND_COLOR","features":[428]},{"name":"DXVAHD_BLT_STATE_BACKGROUND_COLOR_DATA","features":[305,428]},{"name":"DXVAHD_BLT_STATE_CONSTRICTION","features":[428]},{"name":"DXVAHD_BLT_STATE_CONSTRICTION_DATA","features":[305,428]},{"name":"DXVAHD_BLT_STATE_OUTPUT_COLOR_SPACE","features":[428]},{"name":"DXVAHD_BLT_STATE_OUTPUT_COLOR_SPACE_DATA","features":[428]},{"name":"DXVAHD_BLT_STATE_PRIVATE","features":[428]},{"name":"DXVAHD_BLT_STATE_PRIVATE_DATA","features":[428]},{"name":"DXVAHD_BLT_STATE_TARGET_RECT","features":[428]},{"name":"DXVAHD_BLT_STATE_TARGET_RECT_DATA","features":[305,428]},{"name":"DXVAHD_COLOR","features":[428]},{"name":"DXVAHD_COLOR_RGBA","features":[428]},{"name":"DXVAHD_COLOR_YCbCrA","features":[428]},{"name":"DXVAHD_CONTENT_DESC","features":[428]},{"name":"DXVAHD_CUSTOM_RATE_DATA","features":[305,428]},{"name":"DXVAHD_CreateDevice","features":[314,428]},{"name":"DXVAHD_DEVICE_CAPS","features":[428]},{"name":"DXVAHD_DEVICE_CAPS_LINEAR_SPACE","features":[428]},{"name":"DXVAHD_DEVICE_CAPS_RGB_RANGE_CONVERSION","features":[428]},{"name":"DXVAHD_DEVICE_CAPS_YCbCr_MATRIX_CONVERSION","features":[428]},{"name":"DXVAHD_DEVICE_CAPS_xvYCC","features":[428]},{"name":"DXVAHD_DEVICE_TYPE","features":[428]},{"name":"DXVAHD_DEVICE_TYPE_HARDWARE","features":[428]},{"name":"DXVAHD_DEVICE_TYPE_OTHER","features":[428]},{"name":"DXVAHD_DEVICE_TYPE_REFERENCE","features":[428]},{"name":"DXVAHD_DEVICE_TYPE_SOFTWARE","features":[428]},{"name":"DXVAHD_DEVICE_USAGE","features":[428]},{"name":"DXVAHD_DEVICE_USAGE_OPTIMAL_QUALITY","features":[428]},{"name":"DXVAHD_DEVICE_USAGE_OPTIMAL_SPEED","features":[428]},{"name":"DXVAHD_DEVICE_USAGE_PLAYBACK_NORMAL","features":[428]},{"name":"DXVAHD_FEATURE_CAPS","features":[428]},{"name":"DXVAHD_FEATURE_CAPS_ALPHA_FILL","features":[428]},{"name":"DXVAHD_FEATURE_CAPS_ALPHA_PALETTE","features":[428]},{"name":"DXVAHD_FEATURE_CAPS_CONSTRICTION","features":[428]},{"name":"DXVAHD_FEATURE_CAPS_LUMA_KEY","features":[428]},{"name":"DXVAHD_FILTER","features":[428]},{"name":"DXVAHD_FILTER_ANAMORPHIC_SCALING","features":[428]},{"name":"DXVAHD_FILTER_BRIGHTNESS","features":[428]},{"name":"DXVAHD_FILTER_CAPS","features":[428]},{"name":"DXVAHD_FILTER_CAPS_ANAMORPHIC_SCALING","features":[428]},{"name":"DXVAHD_FILTER_CAPS_BRIGHTNESS","features":[428]},{"name":"DXVAHD_FILTER_CAPS_CONTRAST","features":[428]},{"name":"DXVAHD_FILTER_CAPS_EDGE_ENHANCEMENT","features":[428]},{"name":"DXVAHD_FILTER_CAPS_HUE","features":[428]},{"name":"DXVAHD_FILTER_CAPS_NOISE_REDUCTION","features":[428]},{"name":"DXVAHD_FILTER_CAPS_SATURATION","features":[428]},{"name":"DXVAHD_FILTER_CONTRAST","features":[428]},{"name":"DXVAHD_FILTER_EDGE_ENHANCEMENT","features":[428]},{"name":"DXVAHD_FILTER_HUE","features":[428]},{"name":"DXVAHD_FILTER_NOISE_REDUCTION","features":[428]},{"name":"DXVAHD_FILTER_RANGE_DATA","features":[428]},{"name":"DXVAHD_FILTER_SATURATION","features":[428]},{"name":"DXVAHD_FRAME_FORMAT","features":[428]},{"name":"DXVAHD_FRAME_FORMAT_INTERLACED_BOTTOM_FIELD_FIRST","features":[428]},{"name":"DXVAHD_FRAME_FORMAT_INTERLACED_TOP_FIELD_FIRST","features":[428]},{"name":"DXVAHD_FRAME_FORMAT_PROGRESSIVE","features":[428]},{"name":"DXVAHD_INPUT_FORMAT_CAPS","features":[428]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_PALETTE_INTERLACED","features":[428]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_RGB_INTERLACED","features":[428]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_RGB_LUMA_KEY","features":[428]},{"name":"DXVAHD_INPUT_FORMAT_CAPS_RGB_PROCAMP","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_22","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_222222222223","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_2224","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_2332","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_32","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_32322","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_55","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_64","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_87","features":[428]},{"name":"DXVAHD_ITELECINE_CAPS_OTHER","features":[428]},{"name":"DXVAHD_OUTPUT_RATE","features":[428]},{"name":"DXVAHD_OUTPUT_RATE_CUSTOM","features":[428]},{"name":"DXVAHD_OUTPUT_RATE_HALF","features":[428]},{"name":"DXVAHD_OUTPUT_RATE_NORMAL","features":[428]},{"name":"DXVAHD_PROCESSOR_CAPS","features":[428]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_ADAPTIVE","features":[428]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_BLEND","features":[428]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_BOB","features":[428]},{"name":"DXVAHD_PROCESSOR_CAPS_DEINTERLACE_MOTION_COMPENSATION","features":[428]},{"name":"DXVAHD_PROCESSOR_CAPS_FRAME_RATE_CONVERSION","features":[428]},{"name":"DXVAHD_PROCESSOR_CAPS_INVERSE_TELECINE","features":[428]},{"name":"DXVAHD_RATIONAL","features":[428]},{"name":"DXVAHD_STREAM_DATA","features":[305,314,428]},{"name":"DXVAHD_STREAM_STATE","features":[428]},{"name":"DXVAHD_STREAM_STATE_ALPHA","features":[428]},{"name":"DXVAHD_STREAM_STATE_ALPHA_DATA","features":[305,428]},{"name":"DXVAHD_STREAM_STATE_ASPECT_RATIO","features":[428]},{"name":"DXVAHD_STREAM_STATE_ASPECT_RATIO_DATA","features":[305,428]},{"name":"DXVAHD_STREAM_STATE_D3DFORMAT","features":[428]},{"name":"DXVAHD_STREAM_STATE_D3DFORMAT_DATA","features":[314,428]},{"name":"DXVAHD_STREAM_STATE_DESTINATION_RECT","features":[428]},{"name":"DXVAHD_STREAM_STATE_DESTINATION_RECT_DATA","features":[305,428]},{"name":"DXVAHD_STREAM_STATE_FILTER_ANAMORPHIC_SCALING","features":[428]},{"name":"DXVAHD_STREAM_STATE_FILTER_BRIGHTNESS","features":[428]},{"name":"DXVAHD_STREAM_STATE_FILTER_CONTRAST","features":[428]},{"name":"DXVAHD_STREAM_STATE_FILTER_DATA","features":[305,428]},{"name":"DXVAHD_STREAM_STATE_FILTER_EDGE_ENHANCEMENT","features":[428]},{"name":"DXVAHD_STREAM_STATE_FILTER_HUE","features":[428]},{"name":"DXVAHD_STREAM_STATE_FILTER_NOISE_REDUCTION","features":[428]},{"name":"DXVAHD_STREAM_STATE_FILTER_SATURATION","features":[428]},{"name":"DXVAHD_STREAM_STATE_FRAME_FORMAT","features":[428]},{"name":"DXVAHD_STREAM_STATE_FRAME_FORMAT_DATA","features":[428]},{"name":"DXVAHD_STREAM_STATE_INPUT_COLOR_SPACE","features":[428]},{"name":"DXVAHD_STREAM_STATE_INPUT_COLOR_SPACE_DATA","features":[428]},{"name":"DXVAHD_STREAM_STATE_LUMA_KEY","features":[428]},{"name":"DXVAHD_STREAM_STATE_LUMA_KEY_DATA","features":[305,428]},{"name":"DXVAHD_STREAM_STATE_OUTPUT_RATE","features":[428]},{"name":"DXVAHD_STREAM_STATE_OUTPUT_RATE_DATA","features":[305,428]},{"name":"DXVAHD_STREAM_STATE_PALETTE","features":[428]},{"name":"DXVAHD_STREAM_STATE_PALETTE_DATA","features":[428]},{"name":"DXVAHD_STREAM_STATE_PRIVATE","features":[428]},{"name":"DXVAHD_STREAM_STATE_PRIVATE_DATA","features":[428]},{"name":"DXVAHD_STREAM_STATE_PRIVATE_IVTC","features":[428]},{"name":"DXVAHD_STREAM_STATE_PRIVATE_IVTC_DATA","features":[305,428]},{"name":"DXVAHD_STREAM_STATE_SOURCE_RECT","features":[428]},{"name":"DXVAHD_STREAM_STATE_SOURCE_RECT_DATA","features":[305,428]},{"name":"DXVAHD_SURFACE_TYPE","features":[428]},{"name":"DXVAHD_SURFACE_TYPE_VIDEO_INPUT","features":[428]},{"name":"DXVAHD_SURFACE_TYPE_VIDEO_INPUT_PRIVATE","features":[428]},{"name":"DXVAHD_SURFACE_TYPE_VIDEO_OUTPUT","features":[428]},{"name":"DXVAHD_VPCAPS","features":[428]},{"name":"DXVAHD_VPDEVCAPS","features":[314,428]},{"name":"DXVAUncompDataInfo","features":[314,428]},{"name":"DXVA_AYUVsample2","features":[428]},{"name":"DXVA_BufferDescription","features":[428]},{"name":"DXVA_COPPCommand","features":[428]},{"name":"DXVA_COPPSignature","features":[428]},{"name":"DXVA_COPPStatusInput","features":[428]},{"name":"DXVA_COPPStatusOutput","features":[428]},{"name":"DXVA_ConfigPictureDecode","features":[428]},{"name":"DXVA_DeinterlaceBlt","features":[305,428]},{"name":"DXVA_DeinterlaceBltEx","features":[305,428]},{"name":"DXVA_DeinterlaceBltEx32","features":[305,428]},{"name":"DXVA_DeinterlaceCaps","features":[314,428]},{"name":"DXVA_DeinterlaceQueryAvailableModes","features":[428]},{"name":"DXVA_DeinterlaceQueryModeCaps","features":[314,428]},{"name":"DXVA_DeinterlaceTech","features":[428]},{"name":"DXVA_DeinterlaceTech_BOBLineReplicate","features":[428]},{"name":"DXVA_DeinterlaceTech_BOBVerticalStretch","features":[428]},{"name":"DXVA_DeinterlaceTech_BOBVerticalStretch4Tap","features":[428]},{"name":"DXVA_DeinterlaceTech_EdgeFiltering","features":[428]},{"name":"DXVA_DeinterlaceTech_FieldAdaptive","features":[428]},{"name":"DXVA_DeinterlaceTech_MedianFiltering","features":[428]},{"name":"DXVA_DeinterlaceTech_MotionVectorSteered","features":[428]},{"name":"DXVA_DeinterlaceTech_PixelAdaptive","features":[428]},{"name":"DXVA_DeinterlaceTech_Unknown","features":[428]},{"name":"DXVA_DestinationFlagMask","features":[428]},{"name":"DXVA_DestinationFlag_Alpha_Changed","features":[428]},{"name":"DXVA_DestinationFlag_Background_Changed","features":[428]},{"name":"DXVA_DestinationFlag_ColorData_Changed","features":[428]},{"name":"DXVA_DestinationFlag_TargetRect_Changed","features":[428]},{"name":"DXVA_DestinationFlags","features":[428]},{"name":"DXVA_ExtendedFormat","features":[428]},{"name":"DXVA_Frequency","features":[428]},{"name":"DXVA_NominalRange","features":[428]},{"name":"DXVA_NominalRangeMask","features":[428]},{"name":"DXVA_NominalRangeShift","features":[428]},{"name":"DXVA_NominalRange_0_255","features":[428]},{"name":"DXVA_NominalRange_16_235","features":[428]},{"name":"DXVA_NominalRange_48_208","features":[428]},{"name":"DXVA_NominalRange_Normal","features":[428]},{"name":"DXVA_NominalRange_Unknown","features":[428]},{"name":"DXVA_NominalRange_Wide","features":[428]},{"name":"DXVA_PictureParameters","features":[428]},{"name":"DXVA_ProcAmpControlBlt","features":[305,428]},{"name":"DXVA_ProcAmpControlCaps","features":[314,428]},{"name":"DXVA_ProcAmpControlProp","features":[428]},{"name":"DXVA_ProcAmpControlQueryRange","features":[314,428]},{"name":"DXVA_ProcAmp_Brightness","features":[428]},{"name":"DXVA_ProcAmp_Contrast","features":[428]},{"name":"DXVA_ProcAmp_Hue","features":[428]},{"name":"DXVA_ProcAmp_None","features":[428]},{"name":"DXVA_ProcAmp_Saturation","features":[428]},{"name":"DXVA_SampleFieldInterleavedEvenFirst","features":[428]},{"name":"DXVA_SampleFieldInterleavedOddFirst","features":[428]},{"name":"DXVA_SampleFieldSingleEven","features":[428]},{"name":"DXVA_SampleFieldSingleOdd","features":[428]},{"name":"DXVA_SampleFlag_ColorData_Changed","features":[428]},{"name":"DXVA_SampleFlag_DstRect_Changed","features":[428]},{"name":"DXVA_SampleFlag_Palette_Changed","features":[428]},{"name":"DXVA_SampleFlag_SrcRect_Changed","features":[428]},{"name":"DXVA_SampleFlags","features":[428]},{"name":"DXVA_SampleFlagsMask","features":[428]},{"name":"DXVA_SampleFormat","features":[428]},{"name":"DXVA_SampleFormatMask","features":[428]},{"name":"DXVA_SamplePreviousFrame","features":[428]},{"name":"DXVA_SampleProgressiveFrame","features":[428]},{"name":"DXVA_SampleSubStream","features":[428]},{"name":"DXVA_SampleUnknown","features":[428]},{"name":"DXVA_VideoChromaSubsampling","features":[428]},{"name":"DXVA_VideoChromaSubsamplingMask","features":[428]},{"name":"DXVA_VideoChromaSubsamplingShift","features":[428]},{"name":"DXVA_VideoChromaSubsampling_Cosited","features":[428]},{"name":"DXVA_VideoChromaSubsampling_DV_PAL","features":[428]},{"name":"DXVA_VideoChromaSubsampling_Horizontally_Cosited","features":[428]},{"name":"DXVA_VideoChromaSubsampling_MPEG1","features":[428]},{"name":"DXVA_VideoChromaSubsampling_MPEG2","features":[428]},{"name":"DXVA_VideoChromaSubsampling_ProgressiveChroma","features":[428]},{"name":"DXVA_VideoChromaSubsampling_Unknown","features":[428]},{"name":"DXVA_VideoChromaSubsampling_Vertically_AlignedChromaPlanes","features":[428]},{"name":"DXVA_VideoChromaSubsampling_Vertically_Cosited","features":[428]},{"name":"DXVA_VideoDesc","features":[314,428]},{"name":"DXVA_VideoLighting","features":[428]},{"name":"DXVA_VideoLightingMask","features":[428]},{"name":"DXVA_VideoLightingShift","features":[428]},{"name":"DXVA_VideoLighting_Unknown","features":[428]},{"name":"DXVA_VideoLighting_bright","features":[428]},{"name":"DXVA_VideoLighting_dark","features":[428]},{"name":"DXVA_VideoLighting_dim","features":[428]},{"name":"DXVA_VideoLighting_office","features":[428]},{"name":"DXVA_VideoPrimaries","features":[428]},{"name":"DXVA_VideoPrimariesMask","features":[428]},{"name":"DXVA_VideoPrimariesShift","features":[428]},{"name":"DXVA_VideoPrimaries_BT470_2_SysBG","features":[428]},{"name":"DXVA_VideoPrimaries_BT470_2_SysM","features":[428]},{"name":"DXVA_VideoPrimaries_BT709","features":[428]},{"name":"DXVA_VideoPrimaries_EBU3213","features":[428]},{"name":"DXVA_VideoPrimaries_SMPTE170M","features":[428]},{"name":"DXVA_VideoPrimaries_SMPTE240M","features":[428]},{"name":"DXVA_VideoPrimaries_SMPTE_C","features":[428]},{"name":"DXVA_VideoPrimaries_Unknown","features":[428]},{"name":"DXVA_VideoPrimaries_reserved","features":[428]},{"name":"DXVA_VideoProcessCaps","features":[428]},{"name":"DXVA_VideoProcess_AlphaBlend","features":[428]},{"name":"DXVA_VideoProcess_AlphaBlendExtended","features":[428]},{"name":"DXVA_VideoProcess_None","features":[428]},{"name":"DXVA_VideoProcess_StretchX","features":[428]},{"name":"DXVA_VideoProcess_StretchY","features":[428]},{"name":"DXVA_VideoProcess_SubRects","features":[428]},{"name":"DXVA_VideoProcess_SubStreams","features":[428]},{"name":"DXVA_VideoProcess_SubStreamsExtended","features":[428]},{"name":"DXVA_VideoProcess_YUV2RGB","features":[428]},{"name":"DXVA_VideoProcess_YUV2RGBExtended","features":[428]},{"name":"DXVA_VideoPropertyRange","features":[428]},{"name":"DXVA_VideoSample","features":[428]},{"name":"DXVA_VideoSample2","features":[305,428]},{"name":"DXVA_VideoSample2","features":[305,428]},{"name":"DXVA_VideoSample32","features":[305,428]},{"name":"DXVA_VideoTransFuncMask","features":[428]},{"name":"DXVA_VideoTransFuncShift","features":[428]},{"name":"DXVA_VideoTransFunc_10","features":[428]},{"name":"DXVA_VideoTransFunc_18","features":[428]},{"name":"DXVA_VideoTransFunc_20","features":[428]},{"name":"DXVA_VideoTransFunc_22","features":[428]},{"name":"DXVA_VideoTransFunc_22_240M","features":[428]},{"name":"DXVA_VideoTransFunc_22_709","features":[428]},{"name":"DXVA_VideoTransFunc_22_8bit_sRGB","features":[428]},{"name":"DXVA_VideoTransFunc_28","features":[428]},{"name":"DXVA_VideoTransFunc_Unknown","features":[428]},{"name":"DXVA_VideoTransferFunction","features":[428]},{"name":"DXVA_VideoTransferMatrix","features":[428]},{"name":"DXVA_VideoTransferMatrixMask","features":[428]},{"name":"DXVA_VideoTransferMatrixShift","features":[428]},{"name":"DXVA_VideoTransferMatrix_BT601","features":[428]},{"name":"DXVA_VideoTransferMatrix_BT709","features":[428]},{"name":"DXVA_VideoTransferMatrix_SMPTE240M","features":[428]},{"name":"DXVA_VideoTransferMatrix_Unknown","features":[428]},{"name":"DXVAp_DeinterlaceBobDevice","features":[428]},{"name":"DXVAp_DeinterlaceContainerDevice","features":[428]},{"name":"DXVAp_ModeMPEG2_A","features":[428]},{"name":"DXVAp_ModeMPEG2_C","features":[428]},{"name":"DXVAp_NoEncrypt","features":[428]},{"name":"DeviceStreamState","features":[428]},{"name":"DeviceStreamState_Disabled","features":[428]},{"name":"DeviceStreamState_Pause","features":[428]},{"name":"DeviceStreamState_Run","features":[428]},{"name":"DeviceStreamState_Stop","features":[428]},{"name":"DigitalWindowSetting","features":[428]},{"name":"DistanceToFocalPlane","features":[428]},{"name":"DistanceToOpticalCenter","features":[428]},{"name":"EAllocationType","features":[428]},{"name":"ENCAPIPARAM_BITRATE","features":[428]},{"name":"ENCAPIPARAM_BITRATE_MODE","features":[428]},{"name":"ENCAPIPARAM_PEAK_BITRATE","features":[428]},{"name":"ENCAPIPARAM_SAP_MODE","features":[428]},{"name":"EVRConfig_ForceBatching","features":[428]},{"name":"EVRConfig_ForceBob","features":[428]},{"name":"EVRConfig_ForceHalfInterlace","features":[428]},{"name":"EVRConfig_ForceScaling","features":[428]},{"name":"EVRConfig_ForceThrottle","features":[428]},{"name":"EVRFilterConfigPrefs","features":[428]},{"name":"EVRFilterConfigPrefs_EnableQoS","features":[428]},{"name":"EVRFilterConfigPrefs_Mask","features":[428]},{"name":"E_TOCPARSER_INVALIDASFFILE","features":[428]},{"name":"E_TOCPARSER_INVALIDRIFFFILE","features":[428]},{"name":"FACILITY_MF","features":[428]},{"name":"FACILITY_MF_WIN32","features":[428]},{"name":"FILE_ACCESSMODE","features":[428]},{"name":"FILE_OPENMODE","features":[428]},{"name":"FORMAT_525WSS","features":[428]},{"name":"FORMAT_AnalogVideo","features":[428]},{"name":"FORMAT_CAPTIONED_H264VIDEO","features":[428]},{"name":"FORMAT_CAPTIONED_MPEG2VIDEO","features":[428]},{"name":"FORMAT_CC_CONTAINER","features":[428]},{"name":"FORMAT_DvInfo","features":[428]},{"name":"FORMAT_MFVideoFormat","features":[428]},{"name":"FORMAT_MPEGStreams","features":[428]},{"name":"FORMAT_MPEGVideo","features":[428]},{"name":"FORMAT_None","features":[428]},{"name":"FORMAT_VideoInfo","features":[428]},{"name":"FORMAT_VideoInfo2","features":[428]},{"name":"FORMAT_WaveFormatEx","features":[428]},{"name":"GUID_NativeDeviceService","features":[428]},{"name":"GUID_PlayToService","features":[428]},{"name":"IAdvancedMediaCapture","features":[428]},{"name":"IAdvancedMediaCaptureInitializationSettings","features":[428]},{"name":"IAdvancedMediaCaptureSettings","features":[428]},{"name":"IAudioSourceProvider","features":[428]},{"name":"IClusterDetector","features":[428]},{"name":"ICodecAPI","features":[428]},{"name":"ID3D12VideoDecodeCommandList","features":[352,428]},{"name":"ID3D12VideoDecodeCommandList1","features":[352,428]},{"name":"ID3D12VideoDecodeCommandList2","features":[352,428]},{"name":"ID3D12VideoDecodeCommandList3","features":[352,428]},{"name":"ID3D12VideoDecoder","features":[352,428]},{"name":"ID3D12VideoDecoder1","features":[352,428]},{"name":"ID3D12VideoDecoderHeap","features":[352,428]},{"name":"ID3D12VideoDecoderHeap1","features":[352,428]},{"name":"ID3D12VideoDevice","features":[428]},{"name":"ID3D12VideoDevice1","features":[428]},{"name":"ID3D12VideoDevice2","features":[428]},{"name":"ID3D12VideoDevice3","features":[428]},{"name":"ID3D12VideoEncodeCommandList","features":[352,428]},{"name":"ID3D12VideoEncodeCommandList1","features":[352,428]},{"name":"ID3D12VideoEncodeCommandList2","features":[352,428]},{"name":"ID3D12VideoEncodeCommandList3","features":[352,428]},{"name":"ID3D12VideoEncoder","features":[352,428]},{"name":"ID3D12VideoEncoderHeap","features":[352,428]},{"name":"ID3D12VideoExtensionCommand","features":[352,428]},{"name":"ID3D12VideoMotionEstimator","features":[352,428]},{"name":"ID3D12VideoMotionVectorHeap","features":[352,428]},{"name":"ID3D12VideoProcessCommandList","features":[352,428]},{"name":"ID3D12VideoProcessCommandList1","features":[352,428]},{"name":"ID3D12VideoProcessCommandList2","features":[352,428]},{"name":"ID3D12VideoProcessCommandList3","features":[352,428]},{"name":"ID3D12VideoProcessor","features":[352,428]},{"name":"ID3D12VideoProcessor1","features":[352,428]},{"name":"IDXVAHD_Device","features":[428]},{"name":"IDXVAHD_VideoProcessor","features":[428]},{"name":"IDirect3D9ExOverlayExtension","features":[428]},{"name":"IDirect3DAuthenticatedChannel9","features":[428]},{"name":"IDirect3DCryptoSession9","features":[428]},{"name":"IDirect3DDevice9Video","features":[428]},{"name":"IDirect3DDeviceManager9","features":[428]},{"name":"IDirectXVideoAccelerationService","features":[428]},{"name":"IDirectXVideoDecoder","features":[428]},{"name":"IDirectXVideoDecoderService","features":[428]},{"name":"IDirectXVideoMemoryConfiguration","features":[428]},{"name":"IDirectXVideoProcessor","features":[428]},{"name":"IDirectXVideoProcessorService","features":[428]},{"name":"IEVRFilterConfig","features":[428]},{"name":"IEVRFilterConfigEx","features":[428]},{"name":"IEVRTrustedVideoPlugin","features":[428]},{"name":"IEVRVideoStreamControl","features":[428]},{"name":"IFileClient","features":[428]},{"name":"IFileIo","features":[428]},{"name":"IMF2DBuffer","features":[428]},{"name":"IMF2DBuffer2","features":[428]},{"name":"IMFASFContentInfo","features":[428]},{"name":"IMFASFIndexer","features":[428]},{"name":"IMFASFMultiplexer","features":[428]},{"name":"IMFASFMutualExclusion","features":[428]},{"name":"IMFASFProfile","features":[428]},{"name":"IMFASFSplitter","features":[428]},{"name":"IMFASFStreamConfig","features":[428]},{"name":"IMFASFStreamPrioritization","features":[428]},{"name":"IMFASFStreamSelector","features":[428]},{"name":"IMFActivate","features":[428]},{"name":"IMFAsyncCallback","features":[428]},{"name":"IMFAsyncCallbackLogging","features":[428]},{"name":"IMFAsyncResult","features":[428]},{"name":"IMFAttributes","features":[428]},{"name":"IMFAudioMediaType","features":[428]},{"name":"IMFAudioPolicy","features":[428]},{"name":"IMFAudioStreamVolume","features":[428]},{"name":"IMFBufferListNotify","features":[428]},{"name":"IMFByteStream","features":[428]},{"name":"IMFByteStreamBuffering","features":[428]},{"name":"IMFByteStreamCacheControl","features":[428]},{"name":"IMFByteStreamCacheControl2","features":[428]},{"name":"IMFByteStreamHandler","features":[428]},{"name":"IMFByteStreamProxyClassFactory","features":[428]},{"name":"IMFByteStreamTimeSeek","features":[428]},{"name":"IMFCameraConfigurationManager","features":[428]},{"name":"IMFCameraControlDefaults","features":[428]},{"name":"IMFCameraControlDefaultsCollection","features":[428]},{"name":"IMFCameraControlMonitor","features":[428]},{"name":"IMFCameraControlNotify","features":[428]},{"name":"IMFCameraOcclusionStateMonitor","features":[428]},{"name":"IMFCameraOcclusionStateReport","features":[428]},{"name":"IMFCameraOcclusionStateReportCallback","features":[428]},{"name":"IMFCameraSyncObject","features":[428]},{"name":"IMFCaptureEngine","features":[428]},{"name":"IMFCaptureEngineClassFactory","features":[428]},{"name":"IMFCaptureEngineOnEventCallback","features":[428]},{"name":"IMFCaptureEngineOnSampleCallback","features":[428]},{"name":"IMFCaptureEngineOnSampleCallback2","features":[428]},{"name":"IMFCapturePhotoConfirmation","features":[428]},{"name":"IMFCapturePhotoSink","features":[428]},{"name":"IMFCapturePreviewSink","features":[428]},{"name":"IMFCaptureRecordSink","features":[428]},{"name":"IMFCaptureSink","features":[428]},{"name":"IMFCaptureSink2","features":[428]},{"name":"IMFCaptureSource","features":[428]},{"name":"IMFCdmSuspendNotify","features":[428]},{"name":"IMFClock","features":[428]},{"name":"IMFClockConsumer","features":[428]},{"name":"IMFClockStateSink","features":[428]},{"name":"IMFCollection","features":[428]},{"name":"IMFContentDecryptionModule","features":[428]},{"name":"IMFContentDecryptionModuleAccess","features":[428]},{"name":"IMFContentDecryptionModuleFactory","features":[428]},{"name":"IMFContentDecryptionModuleSession","features":[428]},{"name":"IMFContentDecryptionModuleSessionCallbacks","features":[428]},{"name":"IMFContentDecryptorContext","features":[428]},{"name":"IMFContentEnabler","features":[428]},{"name":"IMFContentProtectionDevice","features":[428]},{"name":"IMFContentProtectionManager","features":[428]},{"name":"IMFD3D12SynchronizationObject","features":[428]},{"name":"IMFD3D12SynchronizationObjectCommands","features":[428]},{"name":"IMFDLNASinkInit","features":[428]},{"name":"IMFDRMNetHelper","features":[428]},{"name":"IMFDXGIBuffer","features":[428]},{"name":"IMFDXGIDeviceManager","features":[428]},{"name":"IMFDXGIDeviceManagerSource","features":[428]},{"name":"IMFDesiredSample","features":[428]},{"name":"IMFDeviceTransform","features":[428]},{"name":"IMFDeviceTransformCallback","features":[428]},{"name":"IMFExtendedCameraControl","features":[428]},{"name":"IMFExtendedCameraController","features":[428]},{"name":"IMFExtendedCameraIntrinsicModel","features":[428]},{"name":"IMFExtendedCameraIntrinsics","features":[428]},{"name":"IMFExtendedCameraIntrinsicsDistortionModel6KT","features":[428]},{"name":"IMFExtendedCameraIntrinsicsDistortionModelArcTan","features":[428]},{"name":"IMFExtendedDRMTypeSupport","features":[428]},{"name":"IMFFieldOfUseMFTUnlock","features":[428]},{"name":"IMFFinalizableMediaSink","features":[428]},{"name":"IMFGetService","features":[428]},{"name":"IMFHDCPStatus","features":[428]},{"name":"IMFHttpDownloadRequest","features":[428]},{"name":"IMFHttpDownloadSession","features":[428]},{"name":"IMFHttpDownloadSessionProvider","features":[428]},{"name":"IMFImageSharingEngine","features":[428]},{"name":"IMFImageSharingEngineClassFactory","features":[428]},{"name":"IMFInputTrustAuthority","features":[428]},{"name":"IMFLocalMFTRegistration","features":[428]},{"name":"IMFMediaBuffer","features":[428]},{"name":"IMFMediaEngine","features":[428]},{"name":"IMFMediaEngineAudioEndpointId","features":[428]},{"name":"IMFMediaEngineClassFactory","features":[428]},{"name":"IMFMediaEngineClassFactory2","features":[428]},{"name":"IMFMediaEngineClassFactory3","features":[428]},{"name":"IMFMediaEngineClassFactory4","features":[428]},{"name":"IMFMediaEngineClassFactoryEx","features":[428]},{"name":"IMFMediaEngineEME","features":[428]},{"name":"IMFMediaEngineEMENotify","features":[428]},{"name":"IMFMediaEngineEx","features":[428]},{"name":"IMFMediaEngineExtension","features":[428]},{"name":"IMFMediaEngineNeedKeyNotify","features":[428]},{"name":"IMFMediaEngineNotify","features":[428]},{"name":"IMFMediaEngineOPMInfo","features":[428]},{"name":"IMFMediaEngineProtectedContent","features":[428]},{"name":"IMFMediaEngineSrcElements","features":[428]},{"name":"IMFMediaEngineSrcElementsEx","features":[428]},{"name":"IMFMediaEngineSupportsSourceTransfer","features":[428]},{"name":"IMFMediaEngineTransferSource","features":[428]},{"name":"IMFMediaEngineWebSupport","features":[428]},{"name":"IMFMediaError","features":[428]},{"name":"IMFMediaEvent","features":[428]},{"name":"IMFMediaEventGenerator","features":[428]},{"name":"IMFMediaEventQueue","features":[428]},{"name":"IMFMediaKeySession","features":[428]},{"name":"IMFMediaKeySession2","features":[428]},{"name":"IMFMediaKeySessionNotify","features":[428]},{"name":"IMFMediaKeySessionNotify2","features":[428]},{"name":"IMFMediaKeySystemAccess","features":[428]},{"name":"IMFMediaKeys","features":[428]},{"name":"IMFMediaKeys2","features":[428]},{"name":"IMFMediaSession","features":[428]},{"name":"IMFMediaSharingEngine","features":[428]},{"name":"IMFMediaSharingEngineClassFactory","features":[428]},{"name":"IMFMediaSink","features":[428]},{"name":"IMFMediaSinkPreroll","features":[428]},{"name":"IMFMediaSource","features":[428]},{"name":"IMFMediaSource2","features":[428]},{"name":"IMFMediaSourceEx","features":[428]},{"name":"IMFMediaSourceExtension","features":[428]},{"name":"IMFMediaSourceExtensionLiveSeekableRange","features":[428]},{"name":"IMFMediaSourceExtensionNotify","features":[428]},{"name":"IMFMediaSourcePresentationProvider","features":[428]},{"name":"IMFMediaSourceTopologyProvider","features":[428]},{"name":"IMFMediaStream","features":[428]},{"name":"IMFMediaStream2","features":[428]},{"name":"IMFMediaStreamSourceSampleRequest","features":[428]},{"name":"IMFMediaTimeRange","features":[428]},{"name":"IMFMediaType","features":[428]},{"name":"IMFMediaTypeHandler","features":[428]},{"name":"IMFMetadata","features":[428]},{"name":"IMFMetadataProvider","features":[428]},{"name":"IMFMuxStreamAttributesManager","features":[428]},{"name":"IMFMuxStreamMediaTypeManager","features":[428]},{"name":"IMFMuxStreamSampleManager","features":[428]},{"name":"IMFNetCredential","features":[428]},{"name":"IMFNetCredentialCache","features":[428]},{"name":"IMFNetCredentialManager","features":[428]},{"name":"IMFNetCrossOriginSupport","features":[428]},{"name":"IMFNetProxyLocator","features":[428]},{"name":"IMFNetProxyLocatorFactory","features":[428]},{"name":"IMFNetResourceFilter","features":[428]},{"name":"IMFNetSchemeHandlerConfig","features":[428]},{"name":"IMFObjectReferenceStream","features":[428]},{"name":"IMFOutputPolicy","features":[428]},{"name":"IMFOutputSchema","features":[428]},{"name":"IMFOutputTrustAuthority","features":[428]},{"name":"IMFPMPClient","features":[428]},{"name":"IMFPMPClientApp","features":[428]},{"name":"IMFPMPHost","features":[428]},{"name":"IMFPMPHostApp","features":[428]},{"name":"IMFPMPServer","features":[428]},{"name":"IMFPMediaItem","features":[428]},{"name":"IMFPMediaPlayer","features":[428]},{"name":"IMFPMediaPlayerCallback","features":[428]},{"name":"IMFPluginControl","features":[428]},{"name":"IMFPluginControl2","features":[428]},{"name":"IMFPresentationClock","features":[428]},{"name":"IMFPresentationDescriptor","features":[428]},{"name":"IMFPresentationTimeSource","features":[428]},{"name":"IMFProtectedEnvironmentAccess","features":[428]},{"name":"IMFQualityAdvise","features":[428]},{"name":"IMFQualityAdvise2","features":[428]},{"name":"IMFQualityAdviseLimits","features":[428]},{"name":"IMFQualityManager","features":[428]},{"name":"IMFRateControl","features":[428]},{"name":"IMFRateSupport","features":[428]},{"name":"IMFReadWriteClassFactory","features":[428]},{"name":"IMFRealTimeClient","features":[428]},{"name":"IMFRealTimeClientEx","features":[428]},{"name":"IMFRelativePanelReport","features":[428]},{"name":"IMFRelativePanelWatcher","features":[428]},{"name":"IMFRemoteAsyncCallback","features":[428]},{"name":"IMFRemoteDesktopPlugin","features":[428]},{"name":"IMFRemoteProxy","features":[428]},{"name":"IMFSAMIStyle","features":[428]},{"name":"IMFSSLCertificateManager","features":[428]},{"name":"IMFSample","features":[428]},{"name":"IMFSampleAllocatorControl","features":[428]},{"name":"IMFSampleGrabberSinkCallback","features":[428]},{"name":"IMFSampleGrabberSinkCallback2","features":[428]},{"name":"IMFSampleOutputStream","features":[428]},{"name":"IMFSampleProtection","features":[428]},{"name":"IMFSaveJob","features":[428]},{"name":"IMFSchemeHandler","features":[428]},{"name":"IMFSecureBuffer","features":[428]},{"name":"IMFSecureChannel","features":[428]},{"name":"IMFSeekInfo","features":[428]},{"name":"IMFSensorActivitiesReport","features":[428]},{"name":"IMFSensorActivitiesReportCallback","features":[428]},{"name":"IMFSensorActivityMonitor","features":[428]},{"name":"IMFSensorActivityReport","features":[428]},{"name":"IMFSensorDevice","features":[428]},{"name":"IMFSensorGroup","features":[428]},{"name":"IMFSensorProcessActivity","features":[428]},{"name":"IMFSensorProfile","features":[428]},{"name":"IMFSensorProfileCollection","features":[428]},{"name":"IMFSensorStream","features":[428]},{"name":"IMFSensorTransformFactory","features":[428]},{"name":"IMFSequencerSource","features":[428]},{"name":"IMFSharingEngineClassFactory","features":[428]},{"name":"IMFShutdown","features":[428]},{"name":"IMFSignedLibrary","features":[428]},{"name":"IMFSimpleAudioVolume","features":[428]},{"name":"IMFSinkWriter","features":[428]},{"name":"IMFSinkWriterCallback","features":[428]},{"name":"IMFSinkWriterCallback2","features":[428]},{"name":"IMFSinkWriterEncoderConfig","features":[428]},{"name":"IMFSinkWriterEx","features":[428]},{"name":"IMFSourceBuffer","features":[428]},{"name":"IMFSourceBufferAppendMode","features":[428]},{"name":"IMFSourceBufferList","features":[428]},{"name":"IMFSourceBufferNotify","features":[428]},{"name":"IMFSourceOpenMonitor","features":[428]},{"name":"IMFSourceReader","features":[428]},{"name":"IMFSourceReaderCallback","features":[428]},{"name":"IMFSourceReaderCallback2","features":[428]},{"name":"IMFSourceReaderEx","features":[428]},{"name":"IMFSourceResolver","features":[428]},{"name":"IMFSpatialAudioObjectBuffer","features":[428]},{"name":"IMFSpatialAudioSample","features":[428]},{"name":"IMFStreamDescriptor","features":[428]},{"name":"IMFStreamSink","features":[428]},{"name":"IMFStreamingSinkConfig","features":[428]},{"name":"IMFSystemId","features":[428]},{"name":"IMFTimecodeTranslate","features":[428]},{"name":"IMFTimedText","features":[428]},{"name":"IMFTimedTextBinary","features":[428]},{"name":"IMFTimedTextBouten","features":[428]},{"name":"IMFTimedTextCue","features":[428]},{"name":"IMFTimedTextCueList","features":[428]},{"name":"IMFTimedTextFormattedText","features":[428]},{"name":"IMFTimedTextNotify","features":[428]},{"name":"IMFTimedTextRegion","features":[428]},{"name":"IMFTimedTextRuby","features":[428]},{"name":"IMFTimedTextStyle","features":[428]},{"name":"IMFTimedTextStyle2","features":[428]},{"name":"IMFTimedTextTrack","features":[428]},{"name":"IMFTimedTextTrackList","features":[428]},{"name":"IMFTimer","features":[428]},{"name":"IMFTopoLoader","features":[428]},{"name":"IMFTopology","features":[428]},{"name":"IMFTopologyNode","features":[428]},{"name":"IMFTopologyNodeAttributeEditor","features":[428]},{"name":"IMFTopologyServiceLookup","features":[428]},{"name":"IMFTopologyServiceLookupClient","features":[428]},{"name":"IMFTrackedSample","features":[428]},{"name":"IMFTranscodeProfile","features":[428]},{"name":"IMFTranscodeSinkInfoProvider","features":[428]},{"name":"IMFTransform","features":[428]},{"name":"IMFTrustedInput","features":[428]},{"name":"IMFTrustedOutput","features":[428]},{"name":"IMFVideoCaptureSampleAllocator","features":[428]},{"name":"IMFVideoDeviceID","features":[428]},{"name":"IMFVideoDisplayControl","features":[428]},{"name":"IMFVideoMediaType","features":[428]},{"name":"IMFVideoMixerBitmap","features":[428]},{"name":"IMFVideoMixerControl","features":[428]},{"name":"IMFVideoMixerControl2","features":[428]},{"name":"IMFVideoPositionMapper","features":[428]},{"name":"IMFVideoPresenter","features":[428]},{"name":"IMFVideoProcessor","features":[428]},{"name":"IMFVideoProcessorControl","features":[428]},{"name":"IMFVideoProcessorControl2","features":[428]},{"name":"IMFVideoProcessorControl3","features":[428]},{"name":"IMFVideoRenderer","features":[428]},{"name":"IMFVideoRendererEffectControl","features":[428]},{"name":"IMFVideoSampleAllocator","features":[428]},{"name":"IMFVideoSampleAllocatorCallback","features":[428]},{"name":"IMFVideoSampleAllocatorEx","features":[428]},{"name":"IMFVideoSampleAllocatorNotify","features":[428]},{"name":"IMFVideoSampleAllocatorNotifyEx","features":[428]},{"name":"IMFVirtualCamera","features":[428]},{"name":"IMFWorkQueueServices","features":[428]},{"name":"IMFWorkQueueServicesEx","features":[428]},{"name":"IOPMVideoOutput","features":[428]},{"name":"IPlayToControl","features":[428]},{"name":"IPlayToControlWithCapabilities","features":[428]},{"name":"IPlayToSourceClassFactory","features":[428]},{"name":"IToc","features":[428]},{"name":"ITocCollection","features":[428]},{"name":"ITocEntry","features":[428]},{"name":"ITocEntryList","features":[428]},{"name":"ITocParser","features":[428]},{"name":"IValidateBinding","features":[428]},{"name":"IWMCodecLeakyBucket","features":[428]},{"name":"IWMCodecOutputTimestamp","features":[428]},{"name":"IWMCodecPrivateData","features":[428]},{"name":"IWMCodecProps","features":[428]},{"name":"IWMCodecStrings","features":[428]},{"name":"IWMColorConvProps","features":[428]},{"name":"IWMColorLegalizerProps","features":[428]},{"name":"IWMFrameInterpProps","features":[428]},{"name":"IWMInterlaceProps","features":[428]},{"name":"IWMResamplerProps","features":[428]},{"name":"IWMResizerProps","features":[428]},{"name":"IWMSampleExtensionSupport","features":[428]},{"name":"IWMValidate","features":[428]},{"name":"IWMVideoDecoderHurryup","features":[428]},{"name":"IWMVideoDecoderReconBuffer","features":[428]},{"name":"IWMVideoForceKeyFrame","features":[428]},{"name":"KSMETHOD_OPMVIDEOOUTPUT","features":[428]},{"name":"KSMETHOD_OPMVIDEOOUTPUT_FINISHINITIALIZATION","features":[428]},{"name":"KSMETHOD_OPMVIDEOOUTPUT_GETINFORMATION","features":[428]},{"name":"KSMETHOD_OPMVIDEOOUTPUT_STARTINITIALIZATION","features":[428]},{"name":"KSPROPERTYSETID_ANYCAMERACONTROL","features":[428]},{"name":"KSPROPSETID_OPMVideoOutput","features":[428]},{"name":"LOCAL_D3DFMT_DEFINES","features":[428]},{"name":"LOOK_DOWNSTREAM_ONLY","features":[428]},{"name":"LOOK_UPSTREAM_ONLY","features":[428]},{"name":"MACROBLOCK_DATA","features":[428]},{"name":"MACROBLOCK_FLAG_DIRTY","features":[428]},{"name":"MACROBLOCK_FLAG_HAS_MOTION_VECTOR","features":[428]},{"name":"MACROBLOCK_FLAG_HAS_QP","features":[428]},{"name":"MACROBLOCK_FLAG_MOTION","features":[428]},{"name":"MACROBLOCK_FLAG_SKIP","features":[428]},{"name":"MACROBLOCK_FLAG_VIDEO","features":[428]},{"name":"MAX_SUBSTREAMS","features":[428]},{"name":"MEAudioSessionDeviceRemoved","features":[428]},{"name":"MEAudioSessionDisconnected","features":[428]},{"name":"MEAudioSessionExclusiveModeOverride","features":[428]},{"name":"MEAudioSessionFormatChanged","features":[428]},{"name":"MEAudioSessionGroupingParamChanged","features":[428]},{"name":"MEAudioSessionIconChanged","features":[428]},{"name":"MEAudioSessionNameChanged","features":[428]},{"name":"MEAudioSessionServerShutdown","features":[428]},{"name":"MEAudioSessionVolumeChanged","features":[428]},{"name":"MEBufferingStarted","features":[428]},{"name":"MEBufferingStopped","features":[428]},{"name":"MEByteStreamCharacteristicsChanged","features":[428]},{"name":"MECaptureAudioSessionDeviceRemoved","features":[428]},{"name":"MECaptureAudioSessionDisconnected","features":[428]},{"name":"MECaptureAudioSessionExclusiveModeOverride","features":[428]},{"name":"MECaptureAudioSessionFormatChanged","features":[428]},{"name":"MECaptureAudioSessionServerShutdown","features":[428]},{"name":"MECaptureAudioSessionVolumeChanged","features":[428]},{"name":"MEConnectEnd","features":[428]},{"name":"MEConnectStart","features":[428]},{"name":"MEContentProtectionMessage","features":[428]},{"name":"MEContentProtectionMetadata","features":[428]},{"name":"MEDIASINK_CANNOT_MATCH_CLOCK","features":[428]},{"name":"MEDIASINK_CAN_PREROLL","features":[428]},{"name":"MEDIASINK_CLOCK_REQUIRED","features":[428]},{"name":"MEDIASINK_FIXED_STREAMS","features":[428]},{"name":"MEDIASINK_RATELESS","features":[428]},{"name":"MEDIASINK_REQUIRE_REFERENCE_MEDIATYPE","features":[428]},{"name":"MEDIASUBTYPE_420O","features":[428]},{"name":"MEDIASUBTYPE_708_608Data","features":[428]},{"name":"MEDIASUBTYPE_A2B10G10R10","features":[428]},{"name":"MEDIASUBTYPE_A2R10G10B10","features":[428]},{"name":"MEDIASUBTYPE_AI44","features":[428]},{"name":"MEDIASUBTYPE_AIFF","features":[428]},{"name":"MEDIASUBTYPE_ARGB1555","features":[428]},{"name":"MEDIASUBTYPE_ARGB1555_D3D_DX7_RT","features":[428]},{"name":"MEDIASUBTYPE_ARGB1555_D3D_DX9_RT","features":[428]},{"name":"MEDIASUBTYPE_ARGB32","features":[428]},{"name":"MEDIASUBTYPE_ARGB32_D3D_DX7_RT","features":[428]},{"name":"MEDIASUBTYPE_ARGB32_D3D_DX9_RT","features":[428]},{"name":"MEDIASUBTYPE_ARGB4444","features":[428]},{"name":"MEDIASUBTYPE_ARGB4444_D3D_DX7_RT","features":[428]},{"name":"MEDIASUBTYPE_ARGB4444_D3D_DX9_RT","features":[428]},{"name":"MEDIASUBTYPE_AU","features":[428]},{"name":"MEDIASUBTYPE_AVC1","features":[428]},{"name":"MEDIASUBTYPE_AYUV","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_NTSC_M","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_B","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_D","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_G","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_H","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_I","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_M","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_N","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_PAL_N_COMBO","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_B","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_D","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_G","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_H","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_K","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_K1","features":[428]},{"name":"MEDIASUBTYPE_AnalogVideo_SECAM_L","features":[428]},{"name":"MEDIASUBTYPE_Asf","features":[428]},{"name":"MEDIASUBTYPE_Avi","features":[428]},{"name":"MEDIASUBTYPE_CC_CONTAINER","features":[428]},{"name":"MEDIASUBTYPE_CFCC","features":[428]},{"name":"MEDIASUBTYPE_CLJR","features":[428]},{"name":"MEDIASUBTYPE_CLPL","features":[428]},{"name":"MEDIASUBTYPE_CPLA","features":[428]},{"name":"MEDIASUBTYPE_DOLBY_AC3_SPDIF","features":[428]},{"name":"MEDIASUBTYPE_DOLBY_DDPLUS","features":[428]},{"name":"MEDIASUBTYPE_DOLBY_TRUEHD","features":[428]},{"name":"MEDIASUBTYPE_DRM_Audio","features":[428]},{"name":"MEDIASUBTYPE_DTS2","features":[428]},{"name":"MEDIASUBTYPE_DTS_HD","features":[428]},{"name":"MEDIASUBTYPE_DTS_HD_HRA","features":[428]},{"name":"MEDIASUBTYPE_DVB_SUBTITLES","features":[428]},{"name":"MEDIASUBTYPE_DVCS","features":[428]},{"name":"MEDIASUBTYPE_DVM","features":[428]},{"name":"MEDIASUBTYPE_DVSD","features":[428]},{"name":"MEDIASUBTYPE_DssAudio","features":[428]},{"name":"MEDIASUBTYPE_DssVideo","features":[428]},{"name":"MEDIASUBTYPE_DtvCcData","features":[428]},{"name":"MEDIASUBTYPE_H264","features":[428]},{"name":"MEDIASUBTYPE_I420","features":[428]},{"name":"MEDIASUBTYPE_IA44","features":[428]},{"name":"MEDIASUBTYPE_IEEE_FLOAT","features":[428]},{"name":"MEDIASUBTYPE_IF09","features":[428]},{"name":"MEDIASUBTYPE_IJPG","features":[428]},{"name":"MEDIASUBTYPE_IMC1","features":[428]},{"name":"MEDIASUBTYPE_IMC2","features":[428]},{"name":"MEDIASUBTYPE_IMC3","features":[428]},{"name":"MEDIASUBTYPE_IMC4","features":[428]},{"name":"MEDIASUBTYPE_ISDB_CAPTIONS","features":[428]},{"name":"MEDIASUBTYPE_ISDB_SUPERIMPOSE","features":[428]},{"name":"MEDIASUBTYPE_IYUV","features":[428]},{"name":"MEDIASUBTYPE_Line21_BytePair","features":[428]},{"name":"MEDIASUBTYPE_Line21_GOPPacket","features":[428]},{"name":"MEDIASUBTYPE_Line21_VBIRawData","features":[428]},{"name":"MEDIASUBTYPE_M4S2","features":[428]},{"name":"MEDIASUBTYPE_MDVF","features":[428]},{"name":"MEDIASUBTYPE_MJPG","features":[428]},{"name":"MEDIASUBTYPE_MP42","features":[428]},{"name":"MEDIASUBTYPE_MP43","features":[428]},{"name":"MEDIASUBTYPE_MP4S","features":[428]},{"name":"MEDIASUBTYPE_MPEG1Audio","features":[428]},{"name":"MEDIASUBTYPE_MPEG1AudioPayload","features":[428]},{"name":"MEDIASUBTYPE_MPEG1Packet","features":[428]},{"name":"MEDIASUBTYPE_MPEG1Payload","features":[428]},{"name":"MEDIASUBTYPE_MPEG1System","features":[428]},{"name":"MEDIASUBTYPE_MPEG1Video","features":[428]},{"name":"MEDIASUBTYPE_MPEG1VideoCD","features":[428]},{"name":"MEDIASUBTYPE_MPEG_ADTS_AAC","features":[428]},{"name":"MEDIASUBTYPE_MPEG_HEAAC","features":[428]},{"name":"MEDIASUBTYPE_MPEG_LOAS","features":[428]},{"name":"MEDIASUBTYPE_MPEG_RAW_AAC","features":[428]},{"name":"MEDIASUBTYPE_MPG4","features":[428]},{"name":"MEDIASUBTYPE_MSAUDIO1","features":[428]},{"name":"MEDIASUBTYPE_MSS1","features":[428]},{"name":"MEDIASUBTYPE_MSS2","features":[428]},{"name":"MEDIASUBTYPE_NOKIA_MPEG_ADTS_AAC","features":[428]},{"name":"MEDIASUBTYPE_NOKIA_MPEG_RAW_AAC","features":[428]},{"name":"MEDIASUBTYPE_NV11","features":[428]},{"name":"MEDIASUBTYPE_NV12","features":[428]},{"name":"MEDIASUBTYPE_NV24","features":[428]},{"name":"MEDIASUBTYPE_None","features":[428]},{"name":"MEDIASUBTYPE_Overlay","features":[428]},{"name":"MEDIASUBTYPE_P010","features":[428]},{"name":"MEDIASUBTYPE_P016","features":[428]},{"name":"MEDIASUBTYPE_P208","features":[428]},{"name":"MEDIASUBTYPE_P210","features":[428]},{"name":"MEDIASUBTYPE_P216","features":[428]},{"name":"MEDIASUBTYPE_P408","features":[428]},{"name":"MEDIASUBTYPE_PCM","features":[428]},{"name":"MEDIASUBTYPE_PCMAudio_Obsolete","features":[428]},{"name":"MEDIASUBTYPE_Plum","features":[428]},{"name":"MEDIASUBTYPE_QTJpeg","features":[428]},{"name":"MEDIASUBTYPE_QTMovie","features":[428]},{"name":"MEDIASUBTYPE_QTRle","features":[428]},{"name":"MEDIASUBTYPE_QTRpza","features":[428]},{"name":"MEDIASUBTYPE_QTSmc","features":[428]},{"name":"MEDIASUBTYPE_RAW_AAC1","features":[428]},{"name":"MEDIASUBTYPE_RAW_SPORT","features":[428]},{"name":"MEDIASUBTYPE_RGB1","features":[428]},{"name":"MEDIASUBTYPE_RGB16_D3D_DX7_RT","features":[428]},{"name":"MEDIASUBTYPE_RGB16_D3D_DX9_RT","features":[428]},{"name":"MEDIASUBTYPE_RGB24","features":[428]},{"name":"MEDIASUBTYPE_RGB32","features":[428]},{"name":"MEDIASUBTYPE_RGB32_D3D_DX7_RT","features":[428]},{"name":"MEDIASUBTYPE_RGB32_D3D_DX9_RT","features":[428]},{"name":"MEDIASUBTYPE_RGB4","features":[428]},{"name":"MEDIASUBTYPE_RGB555","features":[428]},{"name":"MEDIASUBTYPE_RGB565","features":[428]},{"name":"MEDIASUBTYPE_RGB8","features":[428]},{"name":"MEDIASUBTYPE_S340","features":[428]},{"name":"MEDIASUBTYPE_S342","features":[428]},{"name":"MEDIASUBTYPE_SPDIF_TAG_241h","features":[428]},{"name":"MEDIASUBTYPE_TELETEXT","features":[428]},{"name":"MEDIASUBTYPE_TVMJ","features":[428]},{"name":"MEDIASUBTYPE_UYVY","features":[428]},{"name":"MEDIASUBTYPE_V216","features":[428]},{"name":"MEDIASUBTYPE_V410","features":[428]},{"name":"MEDIASUBTYPE_VBI","features":[428]},{"name":"MEDIASUBTYPE_VODAFONE_MPEG_ADTS_AAC","features":[428]},{"name":"MEDIASUBTYPE_VODAFONE_MPEG_RAW_AAC","features":[428]},{"name":"MEDIASUBTYPE_VPS","features":[428]},{"name":"MEDIASUBTYPE_VPVBI","features":[428]},{"name":"MEDIASUBTYPE_VPVideo","features":[428]},{"name":"MEDIASUBTYPE_WAKE","features":[428]},{"name":"MEDIASUBTYPE_WAVE","features":[428]},{"name":"MEDIASUBTYPE_WMASPDIF","features":[428]},{"name":"MEDIASUBTYPE_WMAUDIO2","features":[428]},{"name":"MEDIASUBTYPE_WMAUDIO3","features":[428]},{"name":"MEDIASUBTYPE_WMAUDIO4","features":[428]},{"name":"MEDIASUBTYPE_WMAUDIO_LOSSLESS","features":[428]},{"name":"MEDIASUBTYPE_WMV1","features":[428]},{"name":"MEDIASUBTYPE_WMV2","features":[428]},{"name":"MEDIASUBTYPE_WMV3","features":[428]},{"name":"MEDIASUBTYPE_WMVA","features":[428]},{"name":"MEDIASUBTYPE_WMVB","features":[428]},{"name":"MEDIASUBTYPE_WMVP","features":[428]},{"name":"MEDIASUBTYPE_WMVR","features":[428]},{"name":"MEDIASUBTYPE_WSS","features":[428]},{"name":"MEDIASUBTYPE_WVC1","features":[428]},{"name":"MEDIASUBTYPE_WVP2","features":[428]},{"name":"MEDIASUBTYPE_X264","features":[428]},{"name":"MEDIASUBTYPE_XDS","features":[428]},{"name":"MEDIASUBTYPE_Y210","features":[428]},{"name":"MEDIASUBTYPE_Y211","features":[428]},{"name":"MEDIASUBTYPE_Y216","features":[428]},{"name":"MEDIASUBTYPE_Y411","features":[428]},{"name":"MEDIASUBTYPE_Y41P","features":[428]},{"name":"MEDIASUBTYPE_Y41T","features":[428]},{"name":"MEDIASUBTYPE_Y42T","features":[428]},{"name":"MEDIASUBTYPE_YUY2","features":[428]},{"name":"MEDIASUBTYPE_YUYV","features":[428]},{"name":"MEDIASUBTYPE_YV12","features":[428]},{"name":"MEDIASUBTYPE_YVU9","features":[428]},{"name":"MEDIASUBTYPE_YVYU","features":[428]},{"name":"MEDIASUBTYPE_dv25","features":[428]},{"name":"MEDIASUBTYPE_dv50","features":[428]},{"name":"MEDIASUBTYPE_dvh1","features":[428]},{"name":"MEDIASUBTYPE_dvhd","features":[428]},{"name":"MEDIASUBTYPE_dvsl","features":[428]},{"name":"MEDIASUBTYPE_v210","features":[428]},{"name":"MEDIATYPE_AUXLine21Data","features":[428]},{"name":"MEDIATYPE_AUXTeletextPage","features":[428]},{"name":"MEDIATYPE_AnalogAudio","features":[428]},{"name":"MEDIATYPE_AnalogVideo","features":[428]},{"name":"MEDIATYPE_Audio","features":[428]},{"name":"MEDIATYPE_CC_CONTAINER","features":[428]},{"name":"MEDIATYPE_DTVCCData","features":[428]},{"name":"MEDIATYPE_File","features":[428]},{"name":"MEDIATYPE_Interleaved","features":[428]},{"name":"MEDIATYPE_LMRT","features":[428]},{"name":"MEDIATYPE_MPEG1SystemStream","features":[428]},{"name":"MEDIATYPE_MSTVCaption","features":[428]},{"name":"MEDIATYPE_Midi","features":[428]},{"name":"MEDIATYPE_ScriptCommand","features":[428]},{"name":"MEDIATYPE_Stream","features":[428]},{"name":"MEDIATYPE_Text","features":[428]},{"name":"MEDIATYPE_Timecode","features":[428]},{"name":"MEDIATYPE_URL_STREAM","features":[428]},{"name":"MEDIATYPE_VBI","features":[428]},{"name":"MEDIATYPE_Video","features":[428]},{"name":"MEDIA_EVENT_GENERATOR_GET_EVENT_FLAGS","features":[428]},{"name":"MEDeviceStreamCreated","features":[428]},{"name":"MEDeviceThermalStateChanged","features":[428]},{"name":"MEEnablerCompleted","features":[428]},{"name":"MEEnablerProgress","features":[428]},{"name":"MEEncodingParameters","features":[428]},{"name":"MEEndOfPresentation","features":[428]},{"name":"MEEndOfPresentationSegment","features":[428]},{"name":"MEEndOfStream","features":[428]},{"name":"MEError","features":[428]},{"name":"MEExtendedType","features":[428]},{"name":"MEGenericV1Anchor","features":[428]},{"name":"MEIndividualizationCompleted","features":[428]},{"name":"MEIndividualizationStart","features":[428]},{"name":"MELicenseAcquisitionCompleted","features":[428]},{"name":"MELicenseAcquisitionStart","features":[428]},{"name":"MEMediaSample","features":[428]},{"name":"MENewPresentation","features":[428]},{"name":"MENewStream","features":[428]},{"name":"MENonFatalError","features":[428]},{"name":"MEPolicyChanged","features":[428]},{"name":"MEPolicyError","features":[428]},{"name":"MEPolicyReport","features":[428]},{"name":"MEPolicySet","features":[428]},{"name":"MEQualityNotify","features":[428]},{"name":"MEReconnectEnd","features":[428]},{"name":"MEReconnectStart","features":[428]},{"name":"MERendererEvent","features":[428]},{"name":"MEReservedMax","features":[428]},{"name":"MESequencerSourceTopologyUpdated","features":[428]},{"name":"MESessionCapabilitiesChanged","features":[428]},{"name":"MESessionClosed","features":[428]},{"name":"MESessionEnded","features":[428]},{"name":"MESessionNotifyPresentationTime","features":[428]},{"name":"MESessionPaused","features":[428]},{"name":"MESessionRateChanged","features":[428]},{"name":"MESessionScrubSampleComplete","features":[428]},{"name":"MESessionStarted","features":[428]},{"name":"MESessionStopped","features":[428]},{"name":"MESessionStreamSinkFormatChanged","features":[428]},{"name":"MESessionTopologiesCleared","features":[428]},{"name":"MESessionTopologySet","features":[428]},{"name":"MESessionTopologyStatus","features":[428]},{"name":"MESessionUnknown","features":[428]},{"name":"MESessionV1Anchor","features":[428]},{"name":"MESinkInvalidated","features":[428]},{"name":"MESinkUnknown","features":[428]},{"name":"MESinkV1Anchor","features":[428]},{"name":"MESinkV2Anchor","features":[428]},{"name":"MESourceCharacteristicsChanged","features":[428]},{"name":"MESourceMetadataChanged","features":[428]},{"name":"MESourcePaused","features":[428]},{"name":"MESourceRateChangeRequested","features":[428]},{"name":"MESourceRateChanged","features":[428]},{"name":"MESourceSeeked","features":[428]},{"name":"MESourceStarted","features":[428]},{"name":"MESourceStopped","features":[428]},{"name":"MESourceUnknown","features":[428]},{"name":"MESourceV1Anchor","features":[428]},{"name":"MEStreamFormatChanged","features":[428]},{"name":"MEStreamPaused","features":[428]},{"name":"MEStreamSeeked","features":[428]},{"name":"MEStreamSinkDeviceChanged","features":[428]},{"name":"MEStreamSinkFormatChanged","features":[428]},{"name":"MEStreamSinkFormatInvalidated","features":[428]},{"name":"MEStreamSinkMarker","features":[428]},{"name":"MEStreamSinkPaused","features":[428]},{"name":"MEStreamSinkPrerolled","features":[428]},{"name":"MEStreamSinkRateChanged","features":[428]},{"name":"MEStreamSinkRequestSample","features":[428]},{"name":"MEStreamSinkScrubSampleComplete","features":[428]},{"name":"MEStreamSinkStarted","features":[428]},{"name":"MEStreamSinkStopped","features":[428]},{"name":"MEStreamStarted","features":[428]},{"name":"MEStreamStopped","features":[428]},{"name":"MEStreamThinMode","features":[428]},{"name":"MEStreamTick","features":[428]},{"name":"METransformDrainComplete","features":[428]},{"name":"METransformHaveOutput","features":[428]},{"name":"METransformInputStreamStateChanged","features":[428]},{"name":"METransformMarker","features":[428]},{"name":"METransformNeedInput","features":[428]},{"name":"METransformUnknown","features":[428]},{"name":"METrustUnknown","features":[428]},{"name":"METrustV1Anchor","features":[428]},{"name":"MEUnknown","features":[428]},{"name":"MEUpdatedStream","features":[428]},{"name":"MEVideoCaptureDevicePreempted","features":[428]},{"name":"MEVideoCaptureDeviceRemoved","features":[428]},{"name":"MEWMDRMIndividualizationCompleted","features":[428]},{"name":"MEWMDRMIndividualizationProgress","features":[428]},{"name":"MEWMDRMLicenseAcquisitionCompleted","features":[428]},{"name":"MEWMDRMLicenseBackupCompleted","features":[428]},{"name":"MEWMDRMLicenseBackupProgress","features":[428]},{"name":"MEWMDRMLicenseRestoreCompleted","features":[428]},{"name":"MEWMDRMLicenseRestoreProgress","features":[428]},{"name":"MEWMDRMLicenseStoreCleaned","features":[428]},{"name":"MEWMDRMProximityCompleted","features":[428]},{"name":"MEWMDRMRevocationDownloadCompleted","features":[428]},{"name":"MEWMDRMV1Anchor","features":[428]},{"name":"MF2DBuffer_LockFlags","features":[428]},{"name":"MF2DBuffer_LockFlags_ForceDWORD","features":[428]},{"name":"MF2DBuffer_LockFlags_LockTypeMask","features":[428]},{"name":"MF2DBuffer_LockFlags_Read","features":[428]},{"name":"MF2DBuffer_LockFlags_ReadWrite","features":[428]},{"name":"MF2DBuffer_LockFlags_Write","features":[428]},{"name":"MF3DVideoOutputType","features":[428]},{"name":"MF3DVideoOutputType_BaseView","features":[428]},{"name":"MF3DVideoOutputType_Stereo","features":[428]},{"name":"MFAMRNBByteStreamHandler","features":[428]},{"name":"MFAMRNBSinkClassFactory","features":[428]},{"name":"MFARGB","features":[428]},{"name":"MFASFINDEXER_APPROX_SEEK_TIME_UNKNOWN","features":[428]},{"name":"MFASFINDEXER_NO_FIXED_INTERVAL","features":[428]},{"name":"MFASFINDEXER_PER_ENTRY_BYTES_DYNAMIC","features":[428]},{"name":"MFASFINDEXER_READ_FOR_REVERSEPLAYBACK_OUTOFDATASEGMENT","features":[428]},{"name":"MFASFINDEXER_TYPE_TIMECODE","features":[428]},{"name":"MFASFMutexType_Bitrate","features":[428]},{"name":"MFASFMutexType_Language","features":[428]},{"name":"MFASFMutexType_Presentation","features":[428]},{"name":"MFASFMutexType_Unknown","features":[428]},{"name":"MFASFSPLITTER_PACKET_BOUNDARY","features":[428]},{"name":"MFASFSampleExtension_ContentType","features":[428]},{"name":"MFASFSampleExtension_Encryption_KeyID","features":[428]},{"name":"MFASFSampleExtension_Encryption_SampleID","features":[428]},{"name":"MFASFSampleExtension_FileName","features":[428]},{"name":"MFASFSampleExtension_OutputCleanPoint","features":[428]},{"name":"MFASFSampleExtension_PixelAspectRatio","features":[428]},{"name":"MFASFSampleExtension_SMPTE","features":[428]},{"name":"MFASFSampleExtension_SampleDuration","features":[428]},{"name":"MFASF_DEFAULT_BUFFER_WINDOW_MS","features":[428]},{"name":"MFASF_INDEXER_FLAGS","features":[428]},{"name":"MFASF_INDEXER_READ_FOR_REVERSEPLAYBACK","features":[428]},{"name":"MFASF_INDEXER_WRITE_FOR_LIVEREAD","features":[428]},{"name":"MFASF_INDEXER_WRITE_NEW_INDEX","features":[428]},{"name":"MFASF_INVALID_STREAM_NUMBER","features":[428]},{"name":"MFASF_MAX_STREAM_NUMBER","features":[428]},{"name":"MFASF_MULTIPLEXERFLAGS","features":[428]},{"name":"MFASF_MULTIPLEXER_AUTOADJUST_BITRATE","features":[428]},{"name":"MFASF_PAYLOADEXTENSION_MAX_SIZE","features":[428]},{"name":"MFASF_PAYLOADEXTENSION_VARIABLE_SIZE","features":[428]},{"name":"MFASF_SPLITTERFLAGS","features":[428]},{"name":"MFASF_SPLITTER_REVERSE","features":[428]},{"name":"MFASF_SPLITTER_WMDRM","features":[428]},{"name":"MFASF_STREAMSELECTOR_DISABLE_THINNING","features":[428]},{"name":"MFASF_STREAMSELECTOR_FLAGS","features":[428]},{"name":"MFASF_STREAMSELECTOR_USE_AVERAGE_BITRATE","features":[428]},{"name":"MFASYNCRESULT","features":[428]},{"name":"MFASYNC_BLOCKING_CALLBACK","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_ALL","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_IO","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_LONG_FUNCTION","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_MULTITHREADED","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_PRIVATE_MASK","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_RT","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_STANDARD","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_TIMER","features":[428]},{"name":"MFASYNC_CALLBACK_QUEUE_UNDEFINED","features":[428]},{"name":"MFASYNC_FAST_IO_PROCESSING_CALLBACK","features":[428]},{"name":"MFASYNC_LOCALIZE_REMOTE_CALLBACK","features":[428]},{"name":"MFASYNC_REPLY_CALLBACK","features":[428]},{"name":"MFASYNC_SIGNAL_CALLBACK","features":[428]},{"name":"MFASYNC_WORKQUEUE_TYPE","features":[428]},{"name":"MFAYUVSample","features":[428]},{"name":"MFAddPeriodicCallback","features":[428]},{"name":"MFAllocateSerialWorkQueue","features":[428]},{"name":"MFAllocateWorkQueue","features":[428]},{"name":"MFAllocateWorkQueueEx","features":[428]},{"name":"MFAudioConstriction","features":[428]},{"name":"MFAudioDecoderDegradationInfo","features":[428]},{"name":"MFAudioFormat_AAC","features":[428]},{"name":"MFAudioFormat_AAC_HDCP","features":[428]},{"name":"MFAudioFormat_ADTS","features":[428]},{"name":"MFAudioFormat_ADTS_HDCP","features":[428]},{"name":"MFAudioFormat_ALAC","features":[428]},{"name":"MFAudioFormat_AMR_NB","features":[428]},{"name":"MFAudioFormat_AMR_WB","features":[428]},{"name":"MFAudioFormat_AMR_WP","features":[428]},{"name":"MFAudioFormat_Base","features":[428]},{"name":"MFAudioFormat_Base_HDCP","features":[428]},{"name":"MFAudioFormat_DRM","features":[428]},{"name":"MFAudioFormat_DTS","features":[428]},{"name":"MFAudioFormat_DTS_HD","features":[428]},{"name":"MFAudioFormat_DTS_LBR","features":[428]},{"name":"MFAudioFormat_DTS_RAW","features":[428]},{"name":"MFAudioFormat_DTS_UHD","features":[428]},{"name":"MFAudioFormat_DTS_UHDY","features":[428]},{"name":"MFAudioFormat_DTS_XLL","features":[428]},{"name":"MFAudioFormat_Dolby_AC3","features":[428]},{"name":"MFAudioFormat_Dolby_AC3_HDCP","features":[428]},{"name":"MFAudioFormat_Dolby_AC3_SPDIF","features":[428]},{"name":"MFAudioFormat_Dolby_AC4","features":[428]},{"name":"MFAudioFormat_Dolby_AC4_V1","features":[428]},{"name":"MFAudioFormat_Dolby_AC4_V1_ES","features":[428]},{"name":"MFAudioFormat_Dolby_AC4_V2","features":[428]},{"name":"MFAudioFormat_Dolby_AC4_V2_ES","features":[428]},{"name":"MFAudioFormat_Dolby_DDPlus","features":[428]},{"name":"MFAudioFormat_FLAC","features":[428]},{"name":"MFAudioFormat_Float","features":[428]},{"name":"MFAudioFormat_Float_SpatialObjects","features":[428]},{"name":"MFAudioFormat_LPCM","features":[428]},{"name":"MFAudioFormat_MP3","features":[428]},{"name":"MFAudioFormat_MPEG","features":[428]},{"name":"MFAudioFormat_MSP1","features":[428]},{"name":"MFAudioFormat_Opus","features":[428]},{"name":"MFAudioFormat_PCM","features":[428]},{"name":"MFAudioFormat_PCM_HDCP","features":[428]},{"name":"MFAudioFormat_Vorbis","features":[428]},{"name":"MFAudioFormat_WMASPDIF","features":[428]},{"name":"MFAudioFormat_WMAudioV8","features":[428]},{"name":"MFAudioFormat_WMAudioV9","features":[428]},{"name":"MFAudioFormat_WMAudio_Lossless","features":[428]},{"name":"MFAverageTimePerFrameToFrameRate","features":[428]},{"name":"MFBYTESTREAM_BUFFERING_PARAMS","features":[428]},{"name":"MFBYTESTREAM_DOES_NOT_USE_NETWORK","features":[428]},{"name":"MFBYTESTREAM_HAS_SLOW_SEEK","features":[428]},{"name":"MFBYTESTREAM_IS_DIRECTORY","features":[428]},{"name":"MFBYTESTREAM_IS_PARTIALLY_DOWNLOADED","features":[428]},{"name":"MFBYTESTREAM_IS_READABLE","features":[428]},{"name":"MFBYTESTREAM_IS_REMOTE","features":[428]},{"name":"MFBYTESTREAM_IS_SEEKABLE","features":[428]},{"name":"MFBYTESTREAM_IS_WRITABLE","features":[428]},{"name":"MFBYTESTREAM_SEEK_FLAG_CANCEL_PENDING_IO","features":[428]},{"name":"MFBYTESTREAM_SEEK_ORIGIN","features":[428]},{"name":"MFBYTESTREAM_SHARE_WRITE","features":[428]},{"name":"MFBeginCreateFile","features":[428]},{"name":"MFBeginRegisterWorkQueueWithMMCSS","features":[428]},{"name":"MFBeginRegisterWorkQueueWithMMCSSEx","features":[428]},{"name":"MFBeginUnregisterWorkQueueWithMMCSS","features":[428]},{"name":"MFCAPTURE_METADATA_SCANLINE_VERTICAL","features":[428]},{"name":"MFCAPTURE_METADATA_SCAN_BOTTOM_TOP","features":[428]},{"name":"MFCAPTURE_METADATA_SCAN_RIGHT_LEFT","features":[428]},{"name":"MFCLOCK_CHARACTERISTICS_FLAGS","features":[428]},{"name":"MFCLOCK_CHARACTERISTICS_FLAG_ALWAYS_RUNNING","features":[428]},{"name":"MFCLOCK_CHARACTERISTICS_FLAG_FREQUENCY_10MHZ","features":[428]},{"name":"MFCLOCK_CHARACTERISTICS_FLAG_IS_SYSTEM_CLOCK","features":[428]},{"name":"MFCLOCK_FREQUENCY_HNS","features":[428]},{"name":"MFCLOCK_JITTER_DPC","features":[428]},{"name":"MFCLOCK_JITTER_ISR","features":[428]},{"name":"MFCLOCK_JITTER_PASSIVE","features":[428]},{"name":"MFCLOCK_PROPERTIES","features":[428]},{"name":"MFCLOCK_RELATIONAL_FLAGS","features":[428]},{"name":"MFCLOCK_RELATIONAL_FLAG_JITTER_NEVER_AHEAD","features":[428]},{"name":"MFCLOCK_STATE","features":[428]},{"name":"MFCLOCK_STATE_INVALID","features":[428]},{"name":"MFCLOCK_STATE_PAUSED","features":[428]},{"name":"MFCLOCK_STATE_RUNNING","features":[428]},{"name":"MFCLOCK_STATE_STOPPED","features":[428]},{"name":"MFCLOCK_TOLERANCE_UNKNOWN","features":[428]},{"name":"MFCONNECTOR_AGP","features":[428]},{"name":"MFCONNECTOR_COMPONENT","features":[428]},{"name":"MFCONNECTOR_COMPOSITE","features":[428]},{"name":"MFCONNECTOR_DISPLAYPORT_EMBEDDED","features":[428]},{"name":"MFCONNECTOR_DISPLAYPORT_EXTERNAL","features":[428]},{"name":"MFCONNECTOR_DVI","features":[428]},{"name":"MFCONNECTOR_D_JPN","features":[428]},{"name":"MFCONNECTOR_HDMI","features":[428]},{"name":"MFCONNECTOR_LVDS","features":[428]},{"name":"MFCONNECTOR_MIRACAST","features":[428]},{"name":"MFCONNECTOR_PCI","features":[428]},{"name":"MFCONNECTOR_PCIX","features":[428]},{"name":"MFCONNECTOR_PCI_Express","features":[428]},{"name":"MFCONNECTOR_SDI","features":[428]},{"name":"MFCONNECTOR_SPDIF","features":[428]},{"name":"MFCONNECTOR_SVIDEO","features":[428]},{"name":"MFCONNECTOR_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[428]},{"name":"MFCONNECTOR_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[428]},{"name":"MFCONNECTOR_UDI_EMBEDDED","features":[428]},{"name":"MFCONNECTOR_UDI_EXTERNAL","features":[428]},{"name":"MFCONNECTOR_UNKNOWN","features":[428]},{"name":"MFCONNECTOR_VGA","features":[428]},{"name":"MFCONTENTPROTECTIONDEVICE_FUNCTIONID_START","features":[428]},{"name":"MFCONTENTPROTECTIONDEVICE_INPUT_DATA","features":[428]},{"name":"MFCONTENTPROTECTIONDEVICE_OUTPUT_DATA","features":[428]},{"name":"MFCONTENTPROTECTIONDEVICE_REALTIMECLIENT_DATA","features":[428]},{"name":"MFCONTENTPROTECTIONDEVICE_REALTIMECLIENT_DATA_FUNCTIONID","features":[428]},{"name":"MFCalculateBitmapImageSize","features":[305,316,428]},{"name":"MFCalculateImageSize","features":[428]},{"name":"MFCameraExtrinsic_CalibratedTransform","features":[428]},{"name":"MFCameraExtrinsics","features":[428]},{"name":"MFCameraIntrinsic_CameraModel","features":[428]},{"name":"MFCameraIntrinsic_DistortionModel","features":[428]},{"name":"MFCameraIntrinsic_DistortionModel6KT","features":[428]},{"name":"MFCameraIntrinsic_DistortionModelArcTan","features":[428]},{"name":"MFCameraIntrinsic_DistortionModelType","features":[428]},{"name":"MFCameraIntrinsic_DistortionModelType_6KT","features":[428]},{"name":"MFCameraIntrinsic_DistortionModelType_ArcTan","features":[428]},{"name":"MFCameraIntrinsic_PinholeCameraModel","features":[428]},{"name":"MFCameraOcclusionState","features":[428]},{"name":"MFCameraOcclusionState_OccludedByCameraHardware","features":[428]},{"name":"MFCameraOcclusionState_OccludedByLid","features":[428]},{"name":"MFCameraOcclusionState_Open","features":[428]},{"name":"MFCancelCreateFile","features":[428]},{"name":"MFCancelWorkItem","features":[428]},{"name":"MFCombineSamples","features":[305,428]},{"name":"MFCompareFullToPartialMediaType","features":[305,428]},{"name":"MFConvertColorInfoFromDXVA","features":[305,428]},{"name":"MFConvertColorInfoToDXVA","features":[305,428]},{"name":"MFConvertFromFP16Array","features":[428]},{"name":"MFConvertToFP16Array","features":[428]},{"name":"MFCopyImage","features":[428]},{"name":"MFCreate2DMediaBuffer","features":[305,428]},{"name":"MFCreate3GPMediaSink","features":[428]},{"name":"MFCreateAC3MediaSink","features":[428]},{"name":"MFCreateADTSMediaSink","features":[428]},{"name":"MFCreateAMMediaTypeFromMFMediaType","features":[305,428]},{"name":"MFCreateASFContentInfo","features":[428]},{"name":"MFCreateASFIndexer","features":[428]},{"name":"MFCreateASFIndexerByteStream","features":[428]},{"name":"MFCreateASFMediaSink","features":[428]},{"name":"MFCreateASFMediaSinkActivate","features":[428]},{"name":"MFCreateASFMultiplexer","features":[428]},{"name":"MFCreateASFProfile","features":[428]},{"name":"MFCreateASFProfileFromPresentationDescriptor","features":[428]},{"name":"MFCreateASFSplitter","features":[428]},{"name":"MFCreateASFStreamSelector","features":[428]},{"name":"MFCreateASFStreamingMediaSink","features":[428]},{"name":"MFCreateASFStreamingMediaSinkActivate","features":[428]},{"name":"MFCreateAVIMediaSink","features":[428]},{"name":"MFCreateAggregateSource","features":[428]},{"name":"MFCreateAlignedMemoryBuffer","features":[428]},{"name":"MFCreateAsyncResult","features":[428]},{"name":"MFCreateAttributes","features":[428]},{"name":"MFCreateAudioMediaType","features":[420,428]},{"name":"MFCreateAudioRenderer","features":[428]},{"name":"MFCreateAudioRendererActivate","features":[428]},{"name":"MFCreateCameraControlMonitor","features":[428]},{"name":"MFCreateCameraOcclusionStateMonitor","features":[428]},{"name":"MFCreateCollection","features":[428]},{"name":"MFCreateContentDecryptorContext","features":[428]},{"name":"MFCreateContentProtectionDevice","features":[428]},{"name":"MFCreateCredentialCache","features":[428]},{"name":"MFCreateD3D12SynchronizationObject","features":[352,428]},{"name":"MFCreateDXGIDeviceManager","features":[428]},{"name":"MFCreateDXGISurfaceBuffer","features":[305,428]},{"name":"MFCreateDXSurfaceBuffer","features":[305,428]},{"name":"MFCreateDeviceSource","features":[428]},{"name":"MFCreateDeviceSourceActivate","features":[428]},{"name":"MFCreateEncryptedMediaExtensionsStoreActivate","features":[428,356]},{"name":"MFCreateEventQueue","features":[428]},{"name":"MFCreateExtendedCameraIntrinsicModel","features":[428]},{"name":"MFCreateExtendedCameraIntrinsics","features":[428]},{"name":"MFCreateFMPEG4MediaSink","features":[428]},{"name":"MFCreateFile","features":[428]},{"name":"MFCreateLegacyMediaBufferOnMFMediaBuffer","features":[433,428]},{"name":"MFCreateMFByteStreamOnStream","features":[428,356]},{"name":"MFCreateMFByteStreamOnStreamEx","features":[428]},{"name":"MFCreateMFByteStreamWrapper","features":[428]},{"name":"MFCreateMFVideoFormatFromMFMediaType","features":[305,428]},{"name":"MFCreateMP3MediaSink","features":[428]},{"name":"MFCreateMPEG4MediaSink","features":[428]},{"name":"MFCreateMediaBufferFromMediaType","features":[428]},{"name":"MFCreateMediaBufferWrapper","features":[428]},{"name":"MFCreateMediaEvent","features":[428]},{"name":"MFCreateMediaExtensionActivate","features":[428]},{"name":"MFCreateMediaSession","features":[428]},{"name":"MFCreateMediaType","features":[428]},{"name":"MFCreateMediaTypeFromProperties","features":[428]},{"name":"MFCreateMediaTypeFromRepresentation","features":[428]},{"name":"MFCreateMemoryBuffer","features":[428]},{"name":"MFCreateMuxSink","features":[428]},{"name":"MFCreateMuxStreamAttributes","features":[428]},{"name":"MFCreateMuxStreamMediaType","features":[428]},{"name":"MFCreateMuxStreamSample","features":[428]},{"name":"MFCreateNetSchemePlugin","features":[428]},{"name":"MFCreatePMPMediaSession","features":[428]},{"name":"MFCreatePMPServer","features":[428]},{"name":"MFCreatePresentationClock","features":[428]},{"name":"MFCreatePresentationDescriptor","features":[428]},{"name":"MFCreatePresentationDescriptorFromASFProfile","features":[428]},{"name":"MFCreatePropertiesFromMediaType","features":[428]},{"name":"MFCreateProtectedEnvironmentAccess","features":[428]},{"name":"MFCreateProxyLocator","features":[428,376]},{"name":"MFCreateRelativePanelWatcher","features":[428]},{"name":"MFCreateRemoteDesktopPlugin","features":[428]},{"name":"MFCreateSample","features":[428]},{"name":"MFCreateSampleCopierMFT","features":[428]},{"name":"MFCreateSampleGrabberSinkActivate","features":[428]},{"name":"MFCreateSensorActivityMonitor","features":[428]},{"name":"MFCreateSensorGroup","features":[428]},{"name":"MFCreateSensorProfile","features":[428]},{"name":"MFCreateSensorProfileCollection","features":[428]},{"name":"MFCreateSensorStream","features":[428]},{"name":"MFCreateSequencerSegmentOffset","features":[428]},{"name":"MFCreateSequencerSource","features":[428]},{"name":"MFCreateSimpleTypeHandler","features":[428]},{"name":"MFCreateSinkWriterFromMediaSink","features":[428]},{"name":"MFCreateSinkWriterFromURL","features":[428]},{"name":"MFCreateSourceReaderFromByteStream","features":[428]},{"name":"MFCreateSourceReaderFromMediaSource","features":[428]},{"name":"MFCreateSourceReaderFromURL","features":[428]},{"name":"MFCreateSourceResolver","features":[428]},{"name":"MFCreateStandardQualityManager","features":[428]},{"name":"MFCreateStreamDescriptor","features":[428]},{"name":"MFCreateStreamOnMFByteStream","features":[428,356]},{"name":"MFCreateStreamOnMFByteStreamEx","features":[428]},{"name":"MFCreateSystemTimeSource","features":[428]},{"name":"MFCreateTempFile","features":[428]},{"name":"MFCreateTopoLoader","features":[428]},{"name":"MFCreateTopology","features":[428]},{"name":"MFCreateTopologyNode","features":[428]},{"name":"MFCreateTrackedSample","features":[428]},{"name":"MFCreateTranscodeProfile","features":[428]},{"name":"MFCreateTranscodeSinkActivate","features":[428]},{"name":"MFCreateTranscodeTopology","features":[428]},{"name":"MFCreateTranscodeTopologyFromByteStream","features":[428]},{"name":"MFCreateTransformActivate","features":[428]},{"name":"MFCreateVideoMediaType","features":[305,428]},{"name":"MFCreateVideoMediaTypeFromBitMapInfoHeader","features":[316,428]},{"name":"MFCreateVideoMediaTypeFromBitMapInfoHeaderEx","features":[316,428]},{"name":"MFCreateVideoMediaTypeFromSubtype","features":[428]},{"name":"MFCreateVideoMixer","features":[428]},{"name":"MFCreateVideoMixerAndPresenter","features":[428]},{"name":"MFCreateVideoPresenter","features":[428]},{"name":"MFCreateVideoRenderer","features":[428]},{"name":"MFCreateVideoRendererActivate","features":[305,428]},{"name":"MFCreateVideoSampleAllocator","features":[428]},{"name":"MFCreateVideoSampleAllocatorEx","features":[428]},{"name":"MFCreateVideoSampleFromSurface","features":[428]},{"name":"MFCreateVirtualCamera","features":[428]},{"name":"MFCreateWAVEMediaSink","features":[428]},{"name":"MFCreateWICBitmapBuffer","features":[428]},{"name":"MFCreateWMAEncoderActivate","features":[428,376]},{"name":"MFCreateWMVEncoderActivate","features":[428,376]},{"name":"MFCreateWaveFormatExFromMFMediaType","features":[420,428]},{"name":"MFDepthMeasurement","features":[428]},{"name":"MFDeserializeAttributesFromStream","features":[428,356]},{"name":"MFDeserializePresentationDescriptor","features":[428]},{"name":"MFENABLETYPE_MF_RebootRequired","features":[428]},{"name":"MFENABLETYPE_MF_UpdateRevocationInformation","features":[428]},{"name":"MFENABLETYPE_MF_UpdateUntrustedComponent","features":[428]},{"name":"MFENABLETYPE_WMDRMV1_LicenseAcquisition","features":[428]},{"name":"MFENABLETYPE_WMDRMV7_Individualization","features":[428]},{"name":"MFENABLETYPE_WMDRMV7_LicenseAcquisition","features":[428]},{"name":"MFEVRDLL","features":[428]},{"name":"MFEndCreateFile","features":[428]},{"name":"MFEndRegisterWorkQueueWithMMCSS","features":[428]},{"name":"MFEndUnregisterWorkQueueWithMMCSS","features":[428]},{"name":"MFEnumDeviceSources","features":[428]},{"name":"MFExtendedCameraIntrinsic_IntrinsicModel","features":[428]},{"name":"MFFLACBytestreamHandler","features":[428]},{"name":"MFFLACSinkClassFactory","features":[428]},{"name":"MFFOLDDOWN_MATRIX","features":[428]},{"name":"MFFrameRateToAverageTimePerFrame","features":[428]},{"name":"MFFrameSourceTypes","features":[428]},{"name":"MFFrameSourceTypes_Color","features":[428]},{"name":"MFFrameSourceTypes_Custom","features":[428]},{"name":"MFFrameSourceTypes_Depth","features":[428]},{"name":"MFFrameSourceTypes_Image","features":[428]},{"name":"MFFrameSourceTypes_Infrared","features":[428]},{"name":"MFGetAttributesAsBlob","features":[428]},{"name":"MFGetAttributesAsBlobSize","features":[428]},{"name":"MFGetContentProtectionSystemCLSID","features":[428]},{"name":"MFGetLocalId","features":[428]},{"name":"MFGetMFTMerit","features":[428]},{"name":"MFGetPlaneSize","features":[428]},{"name":"MFGetPluginControl","features":[428]},{"name":"MFGetService","features":[428]},{"name":"MFGetStrideForBitmapInfoHeader","features":[428]},{"name":"MFGetSupportedMimeTypes","features":[428]},{"name":"MFGetSupportedSchemes","features":[428]},{"name":"MFGetSystemId","features":[428]},{"name":"MFGetSystemTime","features":[428]},{"name":"MFGetTimerPeriodicity","features":[428]},{"name":"MFGetTopoNodeCurrentType","features":[305,428]},{"name":"MFGetUncompressedVideoFormat","features":[305,428]},{"name":"MFGetWorkQueueMMCSSClass","features":[428]},{"name":"MFGetWorkQueueMMCSSPriority","features":[428]},{"name":"MFGetWorkQueueMMCSSTaskId","features":[428]},{"name":"MFHeapAlloc","features":[428]},{"name":"MFHeapFree","features":[428]},{"name":"MFINPUTTRUSTAUTHORITY_ACCESS_ACTION","features":[428]},{"name":"MFINPUTTRUSTAUTHORITY_ACCESS_PARAMS","features":[428]},{"name":"MFImageFormat_JPEG","features":[428]},{"name":"MFImageFormat_RGB32","features":[428]},{"name":"MFInitAMMediaTypeFromMFMediaType","features":[305,428]},{"name":"MFInitAttributesFromBlob","features":[428]},{"name":"MFInitMediaTypeFromAMMediaType","features":[305,428]},{"name":"MFInitMediaTypeFromMFVideoFormat","features":[305,428]},{"name":"MFInitMediaTypeFromMPEG1VideoInfo","features":[305,316,428]},{"name":"MFInitMediaTypeFromMPEG2VideoInfo","features":[305,316,428]},{"name":"MFInitMediaTypeFromVideoInfoHeader","features":[305,316,428]},{"name":"MFInitMediaTypeFromVideoInfoHeader2","features":[305,316,428]},{"name":"MFInitMediaTypeFromWaveFormatEx","features":[420,428]},{"name":"MFInitVideoFormat","features":[305,428]},{"name":"MFInitVideoFormat_RGB","features":[305,428]},{"name":"MFInvokeCallback","features":[428]},{"name":"MFIsContentProtectionDeviceSupported","features":[305,428]},{"name":"MFIsFormatYUV","features":[305,428]},{"name":"MFIsVirtualCameraTypeSupported","features":[305,428]},{"name":"MFLoadSignedLibrary","features":[428]},{"name":"MFLockDXGIDeviceManager","features":[428]},{"name":"MFLockPlatform","features":[428]},{"name":"MFLockSharedWorkQueue","features":[428]},{"name":"MFLockWorkQueue","features":[428]},{"name":"MFMEDIASOURCE_CAN_PAUSE","features":[428]},{"name":"MFMEDIASOURCE_CAN_SEEK","features":[428]},{"name":"MFMEDIASOURCE_CAN_SKIPBACKWARD","features":[428]},{"name":"MFMEDIASOURCE_CAN_SKIPFORWARD","features":[428]},{"name":"MFMEDIASOURCE_CHARACTERISTICS","features":[428]},{"name":"MFMEDIASOURCE_DOES_NOT_USE_NETWORK","features":[428]},{"name":"MFMEDIASOURCE_HAS_MULTIPLE_PRESENTATIONS","features":[428]},{"name":"MFMEDIASOURCE_HAS_SLOW_SEEK","features":[428]},{"name":"MFMEDIASOURCE_IS_LIVE","features":[428]},{"name":"MFMPEG2DLNASINKSTATS","features":[305,428]},{"name":"MFMPEG4Format_Base","features":[428]},{"name":"MFMapDX9FormatToDXGIFormat","features":[393,428]},{"name":"MFMapDXGIFormatToDX9Format","features":[393,428]},{"name":"MFMediaKeyStatus","features":[428]},{"name":"MFMediaType_Audio","features":[428]},{"name":"MFMediaType_Binary","features":[428]},{"name":"MFMediaType_Default","features":[428]},{"name":"MFMediaType_FileTransfer","features":[428]},{"name":"MFMediaType_HTML","features":[428]},{"name":"MFMediaType_Image","features":[428]},{"name":"MFMediaType_Metadata","features":[428]},{"name":"MFMediaType_MultiplexedFrames","features":[428]},{"name":"MFMediaType_Perception","features":[428]},{"name":"MFMediaType_Protected","features":[428]},{"name":"MFMediaType_SAMI","features":[428]},{"name":"MFMediaType_Script","features":[428]},{"name":"MFMediaType_Stream","features":[428]},{"name":"MFMediaType_Subtitle","features":[428]},{"name":"MFMediaType_Video","features":[428]},{"name":"MFNETSOURCE_ACCELERATEDSTREAMINGDURATION","features":[428]},{"name":"MFNETSOURCE_AUTORECONNECTLIMIT","features":[428]},{"name":"MFNETSOURCE_AUTORECONNECTPROGRESS","features":[428]},{"name":"MFNETSOURCE_AVGBANDWIDTHBPS_ID","features":[428]},{"name":"MFNETSOURCE_BROWSERUSERAGENT","features":[428]},{"name":"MFNETSOURCE_BROWSERWEBPAGE","features":[428]},{"name":"MFNETSOURCE_BUFFERINGCOUNT_ID","features":[428]},{"name":"MFNETSOURCE_BUFFERINGTIME","features":[428]},{"name":"MFNETSOURCE_BUFFERPROGRESS_ID","features":[428]},{"name":"MFNETSOURCE_BUFFERSIZE_ID","features":[428]},{"name":"MFNETSOURCE_BYTESRECEIVED_ID","features":[428]},{"name":"MFNETSOURCE_CACHEENABLED","features":[428]},{"name":"MFNETSOURCE_CACHE_ACTIVE_COMPLETE","features":[428]},{"name":"MFNETSOURCE_CACHE_ACTIVE_WRITING","features":[428]},{"name":"MFNETSOURCE_CACHE_STATE","features":[428]},{"name":"MFNETSOURCE_CACHE_STATE_ID","features":[428]},{"name":"MFNETSOURCE_CACHE_UNAVAILABLE","features":[428]},{"name":"MFNETSOURCE_CLIENTGUID","features":[428]},{"name":"MFNETSOURCE_CONNECTIONBANDWIDTH","features":[428]},{"name":"MFNETSOURCE_CONTENTBITRATE_ID","features":[428]},{"name":"MFNETSOURCE_CREDENTIAL_MANAGER","features":[428]},{"name":"MFNETSOURCE_CROSS_ORIGIN_SUPPORT","features":[428]},{"name":"MFNETSOURCE_DOWNLOADPROGRESS_ID","features":[428]},{"name":"MFNETSOURCE_DRMNET_LICENSE_REPRESENTATION","features":[428]},{"name":"MFNETSOURCE_ENABLE_DOWNLOAD","features":[428]},{"name":"MFNETSOURCE_ENABLE_HTTP","features":[428]},{"name":"MFNETSOURCE_ENABLE_MSB","features":[428]},{"name":"MFNETSOURCE_ENABLE_PRIVATEMODE","features":[428]},{"name":"MFNETSOURCE_ENABLE_RTSP","features":[428]},{"name":"MFNETSOURCE_ENABLE_STREAMING","features":[428]},{"name":"MFNETSOURCE_ENABLE_TCP","features":[428]},{"name":"MFNETSOURCE_ENABLE_UDP","features":[428]},{"name":"MFNETSOURCE_FILE","features":[428]},{"name":"MFNETSOURCE_FRIENDLYNAME","features":[428]},{"name":"MFNETSOURCE_HOSTEXE","features":[428]},{"name":"MFNETSOURCE_HOSTVERSION","features":[428]},{"name":"MFNETSOURCE_HTTP","features":[428]},{"name":"MFNETSOURCE_HTTP_DOWNLOAD_SESSION_PROVIDER","features":[428]},{"name":"MFNETSOURCE_INCORRECTLYSIGNEDPACKETS_ID","features":[428]},{"name":"MFNETSOURCE_LASTBWSWITCHTS_ID","features":[428]},{"name":"MFNETSOURCE_LINKBANDWIDTH_ID","features":[428]},{"name":"MFNETSOURCE_LOGPARAMS","features":[428]},{"name":"MFNETSOURCE_LOGURL","features":[428]},{"name":"MFNETSOURCE_LOSTPACKETS_ID","features":[428]},{"name":"MFNETSOURCE_MAXBITRATE_ID","features":[428]},{"name":"MFNETSOURCE_MAXBUFFERTIMEMS","features":[428]},{"name":"MFNETSOURCE_MAXUDPACCELERATEDSTREAMINGDURATION","features":[428]},{"name":"MFNETSOURCE_MULTICAST","features":[428]},{"name":"MFNETSOURCE_OUTPACKETS_ID","features":[428]},{"name":"MFNETSOURCE_PEERMANAGER","features":[428]},{"name":"MFNETSOURCE_PLAYERID","features":[428]},{"name":"MFNETSOURCE_PLAYERUSERAGENT","features":[428]},{"name":"MFNETSOURCE_PLAYERVERSION","features":[428]},{"name":"MFNETSOURCE_PPBANDWIDTH","features":[428]},{"name":"MFNETSOURCE_PREVIEWMODEENABLED","features":[428]},{"name":"MFNETSOURCE_PROTOCOL","features":[428]},{"name":"MFNETSOURCE_PROTOCOL_ID","features":[428]},{"name":"MFNETSOURCE_PROTOCOL_TYPE","features":[428]},{"name":"MFNETSOURCE_PROXYBYPASSFORLOCAL","features":[428]},{"name":"MFNETSOURCE_PROXYEXCEPTIONLIST","features":[428]},{"name":"MFNETSOURCE_PROXYHOSTNAME","features":[428]},{"name":"MFNETSOURCE_PROXYINFO","features":[428]},{"name":"MFNETSOURCE_PROXYLOCATORFACTORY","features":[428]},{"name":"MFNETSOURCE_PROXYPORT","features":[428]},{"name":"MFNETSOURCE_PROXYRERUNAUTODETECTION","features":[428]},{"name":"MFNETSOURCE_PROXYSETTINGS","features":[428]},{"name":"MFNETSOURCE_RECEPTION_QUALITY_ID","features":[428]},{"name":"MFNETSOURCE_RECOVEREDBYECCPACKETS_ID","features":[428]},{"name":"MFNETSOURCE_RECOVEREDBYRTXPACKETS_ID","features":[428]},{"name":"MFNETSOURCE_RECOVEREDPACKETS_ID","features":[428]},{"name":"MFNETSOURCE_RECVPACKETS_ID","features":[428]},{"name":"MFNETSOURCE_RECVRATE_ID","features":[428]},{"name":"MFNETSOURCE_RESENDSENABLED","features":[428]},{"name":"MFNETSOURCE_RESENDSRECEIVED_ID","features":[428]},{"name":"MFNETSOURCE_RESENDSREQUESTED_ID","features":[428]},{"name":"MFNETSOURCE_RESOURCE_FILTER","features":[428]},{"name":"MFNETSOURCE_RTSP","features":[428]},{"name":"MFNETSOURCE_SEEKRANGEEND_ID","features":[428]},{"name":"MFNETSOURCE_SEEKRANGESTART_ID","features":[428]},{"name":"MFNETSOURCE_SIGNEDSESSION_ID","features":[428]},{"name":"MFNETSOURCE_SPEEDFACTOR_ID","features":[428]},{"name":"MFNETSOURCE_SSLCERTIFICATE_MANAGER","features":[428]},{"name":"MFNETSOURCE_STATISTICS","features":[428]},{"name":"MFNETSOURCE_STATISTICS_IDS","features":[428]},{"name":"MFNETSOURCE_STATISTICS_SERVICE","features":[428]},{"name":"MFNETSOURCE_STREAM_LANGUAGE","features":[428]},{"name":"MFNETSOURCE_TCP","features":[428]},{"name":"MFNETSOURCE_THINNINGENABLED","features":[428]},{"name":"MFNETSOURCE_TRANSPORT","features":[428]},{"name":"MFNETSOURCE_TRANSPORT_ID","features":[428]},{"name":"MFNETSOURCE_TRANSPORT_TYPE","features":[428]},{"name":"MFNETSOURCE_UDP","features":[428]},{"name":"MFNETSOURCE_UDP_PORT_RANGE","features":[428]},{"name":"MFNETSOURCE_UNDEFINED","features":[428]},{"name":"MFNETSOURCE_UNPREDEFINEDPROTOCOLNAME_ID","features":[428]},{"name":"MFNETSOURCE_VBR_ID","features":[428]},{"name":"MFNET_AUTHENTICATION_CLEAR_TEXT","features":[428]},{"name":"MFNET_AUTHENTICATION_LOGGED_ON_USER","features":[428]},{"name":"MFNET_AUTHENTICATION_PROXY","features":[428]},{"name":"MFNET_CREDENTIAL_ALLOW_CLEAR_TEXT","features":[428]},{"name":"MFNET_CREDENTIAL_DONT_CACHE","features":[428]},{"name":"MFNET_CREDENTIAL_SAVE","features":[428]},{"name":"MFNET_PROXYSETTINGS","features":[428]},{"name":"MFNET_PROXYSETTING_AUTO","features":[428]},{"name":"MFNET_PROXYSETTING_BROWSER","features":[428]},{"name":"MFNET_PROXYSETTING_MANUAL","features":[428]},{"name":"MFNET_PROXYSETTING_NONE","features":[428]},{"name":"MFNET_SAVEJOB_SERVICE","features":[428]},{"name":"MFNetAuthenticationFlags","features":[428]},{"name":"MFNetCredentialManagerGetParam","features":[305,428]},{"name":"MFNetCredentialOptions","features":[428]},{"name":"MFNetCredentialRequirements","features":[428]},{"name":"MFNominalRange","features":[428]},{"name":"MFNominalRange_0_255","features":[428]},{"name":"MFNominalRange_16_235","features":[428]},{"name":"MFNominalRange_48_208","features":[428]},{"name":"MFNominalRange_64_127","features":[428]},{"name":"MFNominalRange_ForceDWORD","features":[428]},{"name":"MFNominalRange_Last","features":[428]},{"name":"MFNominalRange_Normal","features":[428]},{"name":"MFNominalRange_Unknown","features":[428]},{"name":"MFNominalRange_Wide","features":[428]},{"name":"MFOffset","features":[428]},{"name":"MFPCreateMediaPlayer","features":[305,428]},{"name":"MFPERIODICCALLBACK","features":[428]},{"name":"MFPMPSESSION_CREATION_FLAGS","features":[428]},{"name":"MFPMPSESSION_IN_PROCESS","features":[428]},{"name":"MFPMPSESSION_UNPROTECTED_PROCESS","features":[428]},{"name":"MFPOLICYMANAGER_ACTION","features":[428]},{"name":"MFPROTECTIONATTRIBUTE_BEST_EFFORT","features":[428]},{"name":"MFPROTECTIONATTRIBUTE_CONSTRICTVIDEO_IMAGESIZE","features":[428]},{"name":"MFPROTECTIONATTRIBUTE_FAIL_OVER","features":[428]},{"name":"MFPROTECTIONATTRIBUTE_HDCP_SRM","features":[428]},{"name":"MFPROTECTION_ACP","features":[428]},{"name":"MFPROTECTION_CGMSA","features":[428]},{"name":"MFPROTECTION_CONSTRICTAUDIO","features":[428]},{"name":"MFPROTECTION_CONSTRICTVIDEO","features":[428]},{"name":"MFPROTECTION_CONSTRICTVIDEO_NOOPM","features":[428]},{"name":"MFPROTECTION_DISABLE","features":[428]},{"name":"MFPROTECTION_DISABLE_SCREEN_SCRAPE","features":[428]},{"name":"MFPROTECTION_FFT","features":[428]},{"name":"MFPROTECTION_GRAPHICS_TRANSFER_AES_ENCRYPTION","features":[428]},{"name":"MFPROTECTION_HARDWARE","features":[428]},{"name":"MFPROTECTION_HDCP","features":[428]},{"name":"MFPROTECTION_HDCP_WITH_TYPE_ENFORCEMENT","features":[428]},{"name":"MFPROTECTION_PROTECTED_SURFACE","features":[428]},{"name":"MFPROTECTION_TRUSTEDAUDIODRIVERS","features":[428]},{"name":"MFPROTECTION_VIDEO_FRAMES","features":[428]},{"name":"MFPROTECTION_WMDRMOTA","features":[428]},{"name":"MFP_ACQUIRE_USER_CREDENTIAL_EVENT","features":[305,428,376]},{"name":"MFP_CREATION_OPTIONS","features":[428]},{"name":"MFP_CREDENTIAL_CLEAR_TEXT","features":[428]},{"name":"MFP_CREDENTIAL_DO_NOT_CACHE","features":[428]},{"name":"MFP_CREDENTIAL_LOGGED_ON_USER","features":[428]},{"name":"MFP_CREDENTIAL_PROMPT","features":[428]},{"name":"MFP_CREDENTIAL_PROXY","features":[428]},{"name":"MFP_CREDENTIAL_SAVE","features":[428]},{"name":"MFP_ERROR_EVENT","features":[428,376]},{"name":"MFP_EVENT_HEADER","features":[428,376]},{"name":"MFP_EVENT_TYPE","features":[428]},{"name":"MFP_EVENT_TYPE_ACQUIRE_USER_CREDENTIAL","features":[428]},{"name":"MFP_EVENT_TYPE_ERROR","features":[428]},{"name":"MFP_EVENT_TYPE_FRAME_STEP","features":[428]},{"name":"MFP_EVENT_TYPE_MEDIAITEM_CLEARED","features":[428]},{"name":"MFP_EVENT_TYPE_MEDIAITEM_CREATED","features":[428]},{"name":"MFP_EVENT_TYPE_MEDIAITEM_SET","features":[428]},{"name":"MFP_EVENT_TYPE_MF","features":[428]},{"name":"MFP_EVENT_TYPE_PAUSE","features":[428]},{"name":"MFP_EVENT_TYPE_PLAY","features":[428]},{"name":"MFP_EVENT_TYPE_PLAYBACK_ENDED","features":[428]},{"name":"MFP_EVENT_TYPE_POSITION_SET","features":[428]},{"name":"MFP_EVENT_TYPE_RATE_SET","features":[428]},{"name":"MFP_EVENT_TYPE_STOP","features":[428]},{"name":"MFP_FRAME_STEP_EVENT","features":[428,376]},{"name":"MFP_MEDIAITEM_CAN_PAUSE","features":[428]},{"name":"MFP_MEDIAITEM_CAN_SEEK","features":[428]},{"name":"MFP_MEDIAITEM_CLEARED_EVENT","features":[428,376]},{"name":"MFP_MEDIAITEM_CREATED_EVENT","features":[428,376]},{"name":"MFP_MEDIAITEM_HAS_SLOW_SEEK","features":[428]},{"name":"MFP_MEDIAITEM_IS_LIVE","features":[428]},{"name":"MFP_MEDIAITEM_SET_EVENT","features":[428,376]},{"name":"MFP_MEDIAPLAYER_STATE","features":[428]},{"name":"MFP_MEDIAPLAYER_STATE_EMPTY","features":[428]},{"name":"MFP_MEDIAPLAYER_STATE_PAUSED","features":[428]},{"name":"MFP_MEDIAPLAYER_STATE_PLAYING","features":[428]},{"name":"MFP_MEDIAPLAYER_STATE_SHUTDOWN","features":[428]},{"name":"MFP_MEDIAPLAYER_STATE_STOPPED","features":[428]},{"name":"MFP_MF_EVENT","features":[428,376]},{"name":"MFP_OPTION_FREE_THREADED_CALLBACK","features":[428]},{"name":"MFP_OPTION_NONE","features":[428]},{"name":"MFP_OPTION_NO_MMCSS","features":[428]},{"name":"MFP_OPTION_NO_REMOTE_DESKTOP_OPTIMIZATION","features":[428]},{"name":"MFP_PAUSE_EVENT","features":[428,376]},{"name":"MFP_PLAYBACK_ENDED_EVENT","features":[428,376]},{"name":"MFP_PLAY_EVENT","features":[428,376]},{"name":"MFP_POSITIONTYPE_100NS","features":[428]},{"name":"MFP_POSITION_SET_EVENT","features":[428,376]},{"name":"MFP_RATE_SET_EVENT","features":[428,376]},{"name":"MFP_STOP_EVENT","features":[428,376]},{"name":"MFPaletteEntry","features":[428]},{"name":"MFPinholeCameraIntrinsic_IntrinsicModel","features":[428]},{"name":"MFPinholeCameraIntrinsics","features":[428]},{"name":"MFPutWaitingWorkItem","features":[305,428]},{"name":"MFPutWorkItem","features":[428]},{"name":"MFPutWorkItem2","features":[428]},{"name":"MFPutWorkItemEx","features":[428]},{"name":"MFPutWorkItemEx2","features":[428]},{"name":"MFRATE_DIRECTION","features":[428]},{"name":"MFRATE_FORWARD","features":[428]},{"name":"MFRATE_REVERSE","features":[428]},{"name":"MFRR_COMPONENTS","features":[428]},{"name":"MFRR_COMPONENT_HASH_INFO","features":[428]},{"name":"MFRR_INFO_VERSION","features":[428]},{"name":"MFRatio","features":[428]},{"name":"MFRegisterLocalByteStreamHandler","features":[428]},{"name":"MFRegisterLocalSchemeHandler","features":[428]},{"name":"MFRegisterPlatformWithMMCSS","features":[428]},{"name":"MFRemovePeriodicCallback","features":[428]},{"name":"MFRequireProtectedEnvironment","features":[428]},{"name":"MFSEQUENCER_INVALID_ELEMENT_ID","features":[428]},{"name":"MFSESSIONCAP_DOES_NOT_USE_NETWORK","features":[428]},{"name":"MFSESSIONCAP_PAUSE","features":[428]},{"name":"MFSESSIONCAP_RATE_FORWARD","features":[428]},{"name":"MFSESSIONCAP_RATE_REVERSE","features":[428]},{"name":"MFSESSIONCAP_SEEK","features":[428]},{"name":"MFSESSIONCAP_START","features":[428]},{"name":"MFSESSION_GETFULLTOPOLOGY_CURRENT","features":[428]},{"name":"MFSESSION_GETFULLTOPOLOGY_FLAGS","features":[428]},{"name":"MFSESSION_SETTOPOLOGY_CLEAR_CURRENT","features":[428]},{"name":"MFSESSION_SETTOPOLOGY_FLAGS","features":[428]},{"name":"MFSESSION_SETTOPOLOGY_IMMEDIATE","features":[428]},{"name":"MFSESSION_SETTOPOLOGY_NORESOLUTION","features":[428]},{"name":"MFSHUTDOWN_COMPLETED","features":[428]},{"name":"MFSHUTDOWN_INITIATED","features":[428]},{"name":"MFSHUTDOWN_STATUS","features":[428]},{"name":"MFSINK_WMDRMACTION","features":[428]},{"name":"MFSINK_WMDRMACTION_ENCODE","features":[428]},{"name":"MFSINK_WMDRMACTION_LAST","features":[428]},{"name":"MFSINK_WMDRMACTION_TRANSCODE","features":[428]},{"name":"MFSINK_WMDRMACTION_TRANSCRYPT","features":[428]},{"name":"MFSINK_WMDRMACTION_UNDEFINED","features":[428]},{"name":"MFSTARTUP_FULL","features":[428]},{"name":"MFSTARTUP_LITE","features":[428]},{"name":"MFSTARTUP_NOSOCKET","features":[428]},{"name":"MFSTREAMSINK_MARKER_DEFAULT","features":[428]},{"name":"MFSTREAMSINK_MARKER_ENDOFSEGMENT","features":[428]},{"name":"MFSTREAMSINK_MARKER_EVENT","features":[428]},{"name":"MFSTREAMSINK_MARKER_TICK","features":[428]},{"name":"MFSTREAMSINK_MARKER_TYPE","features":[428]},{"name":"MFSampleAllocatorUsage","features":[428]},{"name":"MFSampleAllocatorUsage_DoesNotAllocate","features":[428]},{"name":"MFSampleAllocatorUsage_UsesCustomAllocator","features":[428]},{"name":"MFSampleAllocatorUsage_UsesProvidedAllocator","features":[428]},{"name":"MFSampleEncryptionProtectionScheme","features":[428]},{"name":"MFSampleExtension_3DVideo","features":[428]},{"name":"MFSampleExtension_3DVideo_MultiView","features":[428]},{"name":"MFSampleExtension_3DVideo_Packed","features":[428]},{"name":"MFSampleExtension_3DVideo_SampleFormat","features":[428]},{"name":"MFSampleExtension_AccumulatedNonRefPicPercent","features":[428]},{"name":"MFSampleExtension_BottomFieldFirst","features":[428]},{"name":"MFSampleExtension_CameraExtrinsics","features":[428]},{"name":"MFSampleExtension_CaptureMetadata","features":[428]},{"name":"MFSampleExtension_ChromaOnly","features":[428]},{"name":"MFSampleExtension_CleanPoint","features":[428]},{"name":"MFSampleExtension_ClosedCaption_CEA708","features":[428]},{"name":"MFSampleExtension_ClosedCaption_CEA708_MAX_SIZE","features":[428]},{"name":"MFSampleExtension_Content_KeyID","features":[428]},{"name":"MFSampleExtension_DecodeTimestamp","features":[428]},{"name":"MFSampleExtension_Depth_MaxReliableDepth","features":[428]},{"name":"MFSampleExtension_Depth_MinReliableDepth","features":[428]},{"name":"MFSampleExtension_DerivedFromTopField","features":[428]},{"name":"MFSampleExtension_DescrambleData","features":[428]},{"name":"MFSampleExtension_DeviceReferenceSystemTime","features":[428]},{"name":"MFSampleExtension_DeviceTimestamp","features":[428]},{"name":"MFSampleExtension_DirtyRects","features":[428]},{"name":"MFSampleExtension_Discontinuity","features":[428]},{"name":"MFSampleExtension_Encryption_ClearSliceHeaderData","features":[428]},{"name":"MFSampleExtension_Encryption_CryptByteBlock","features":[428]},{"name":"MFSampleExtension_Encryption_HardwareProtection","features":[428]},{"name":"MFSampleExtension_Encryption_HardwareProtection_KeyInfo","features":[428]},{"name":"MFSampleExtension_Encryption_HardwareProtection_KeyInfoID","features":[428]},{"name":"MFSampleExtension_Encryption_HardwareProtection_VideoDecryptorContext","features":[428]},{"name":"MFSampleExtension_Encryption_KeyID","features":[428]},{"name":"MFSampleExtension_Encryption_NALUTypes","features":[428]},{"name":"MFSampleExtension_Encryption_Opaque_Data","features":[428]},{"name":"MFSampleExtension_Encryption_ProtectionScheme","features":[428]},{"name":"MFSampleExtension_Encryption_ResumeVideoOutput","features":[428]},{"name":"MFSampleExtension_Encryption_SEIData","features":[428]},{"name":"MFSampleExtension_Encryption_SPSPPSData","features":[428]},{"name":"MFSampleExtension_Encryption_SampleID","features":[428]},{"name":"MFSampleExtension_Encryption_SkipByteBlock","features":[428]},{"name":"MFSampleExtension_Encryption_SubSampleMappingSplit","features":[428]},{"name":"MFSampleExtension_Encryption_SubSample_Mapping","features":[428]},{"name":"MFSampleExtension_ExtendedCameraIntrinsics","features":[428]},{"name":"MFSampleExtension_FeatureMap","features":[428]},{"name":"MFSampleExtension_ForwardedDecodeUnitType","features":[428]},{"name":"MFSampleExtension_ForwardedDecodeUnits","features":[428]},{"name":"MFSampleExtension_FrameCorruption","features":[428]},{"name":"MFSampleExtension_GenKeyCtx","features":[428]},{"name":"MFSampleExtension_GenKeyFunc","features":[428]},{"name":"MFSampleExtension_HDCP_FrameCounter","features":[428]},{"name":"MFSampleExtension_HDCP_OptionalHeader","features":[428]},{"name":"MFSampleExtension_HDCP_StreamID","features":[428]},{"name":"MFSampleExtension_Interlaced","features":[428]},{"name":"MFSampleExtension_LastSlice","features":[428]},{"name":"MFSampleExtension_LongTermReferenceFrameInfo","features":[428]},{"name":"MFSampleExtension_MDLCacheCookie","features":[428]},{"name":"MFSampleExtension_MULTIPLEXED_MANAGER","features":[428]},{"name":"MFSampleExtension_MaxDecodeFrameSize","features":[428]},{"name":"MFSampleExtension_MeanAbsoluteDifference","features":[428]},{"name":"MFSampleExtension_MoveRegions","features":[428]},{"name":"MFSampleExtension_NALULengthInfo","features":[428]},{"name":"MFSampleExtension_PacketCrossOffsets","features":[428]},{"name":"MFSampleExtension_PhotoThumbnail","features":[428]},{"name":"MFSampleExtension_PhotoThumbnailMediaType","features":[428]},{"name":"MFSampleExtension_PinholeCameraIntrinsics","features":[428]},{"name":"MFSampleExtension_ROIRectangle","features":[428]},{"name":"MFSampleExtension_RepeatFirstField","features":[428]},{"name":"MFSampleExtension_RepeatFrame","features":[428]},{"name":"MFSampleExtension_SampleKeyID","features":[428]},{"name":"MFSampleExtension_SingleField","features":[428]},{"name":"MFSampleExtension_Spatial_CameraCoordinateSystem","features":[428]},{"name":"MFSampleExtension_Spatial_CameraProjectionTransform","features":[428]},{"name":"MFSampleExtension_Spatial_CameraViewTransform","features":[428]},{"name":"MFSampleExtension_TargetGlobalLuminance","features":[428]},{"name":"MFSampleExtension_Timestamp","features":[428]},{"name":"MFSampleExtension_Token","features":[428]},{"name":"MFSampleExtension_VideoDSPMode","features":[428]},{"name":"MFSampleExtension_VideoEncodePictureType","features":[428]},{"name":"MFSampleExtension_VideoEncodeQP","features":[428]},{"name":"MFScheduleWorkItem","features":[428]},{"name":"MFScheduleWorkItemEx","features":[428]},{"name":"MFSensorDeviceMode","features":[428]},{"name":"MFSensorDeviceMode_Controller","features":[428]},{"name":"MFSensorDeviceMode_Shared","features":[428]},{"name":"MFSensorDeviceType","features":[428]},{"name":"MFSensorDeviceType_Device","features":[428]},{"name":"MFSensorDeviceType_FrameProvider","features":[428]},{"name":"MFSensorDeviceType_MediaSource","features":[428]},{"name":"MFSensorDeviceType_SensorTransform","features":[428]},{"name":"MFSensorDeviceType_Unknown","features":[428]},{"name":"MFSensorStreamType","features":[428]},{"name":"MFSensorStreamType_Input","features":[428]},{"name":"MFSensorStreamType_Output","features":[428]},{"name":"MFSensorStreamType_Unknown","features":[428]},{"name":"MFSequencerTopologyFlags","features":[428]},{"name":"MFSerializeAttributesToStream","features":[428,356]},{"name":"MFSerializePresentationDescriptor","features":[428]},{"name":"MFShutdown","features":[428]},{"name":"MFShutdownObject","features":[428]},{"name":"MFSplitSample","features":[428]},{"name":"MFStandardVideoFormat","features":[428]},{"name":"MFStartup","features":[428]},{"name":"MFStdVideoFormat_ATSC_HD1080i","features":[428]},{"name":"MFStdVideoFormat_ATSC_HD720p","features":[428]},{"name":"MFStdVideoFormat_ATSC_SD480i","features":[428]},{"name":"MFStdVideoFormat_DVD_NTSC","features":[428]},{"name":"MFStdVideoFormat_DVD_PAL","features":[428]},{"name":"MFStdVideoFormat_DV_NTSC","features":[428]},{"name":"MFStdVideoFormat_DV_PAL","features":[428]},{"name":"MFStdVideoFormat_NTSC","features":[428]},{"name":"MFStdVideoFormat_PAL","features":[428]},{"name":"MFStdVideoFormat_reserved","features":[428]},{"name":"MFStreamExtension_CameraExtrinsics","features":[428]},{"name":"MFStreamExtension_ExtendedCameraIntrinsics","features":[428]},{"name":"MFStreamExtension_PinholeCameraIntrinsics","features":[428]},{"name":"MFStreamFormat_MPEG2Program","features":[428]},{"name":"MFStreamFormat_MPEG2Transport","features":[428]},{"name":"MFSubtitleFormat_ATSC","features":[428]},{"name":"MFSubtitleFormat_CustomUserData","features":[428]},{"name":"MFSubtitleFormat_PGS","features":[428]},{"name":"MFSubtitleFormat_SRT","features":[428]},{"name":"MFSubtitleFormat_SSA","features":[428]},{"name":"MFSubtitleFormat_TTML","features":[428]},{"name":"MFSubtitleFormat_VobSub","features":[428]},{"name":"MFSubtitleFormat_WebVTT","features":[428]},{"name":"MFSubtitleFormat_XML","features":[428]},{"name":"MFTEnum","features":[428]},{"name":"MFTEnum2","features":[428]},{"name":"MFTEnumEx","features":[428]},{"name":"MFTGetInfo","features":[428]},{"name":"MFTIMER_FLAGS","features":[428]},{"name":"MFTIMER_RELATIVE","features":[428]},{"name":"MFTOPOLOGY_DXVA_DEFAULT","features":[428]},{"name":"MFTOPOLOGY_DXVA_FULL","features":[428]},{"name":"MFTOPOLOGY_DXVA_MODE","features":[428]},{"name":"MFTOPOLOGY_DXVA_NONE","features":[428]},{"name":"MFTOPOLOGY_HARDWARE_MODE","features":[428]},{"name":"MFTOPOLOGY_HWMODE_SOFTWARE_ONLY","features":[428]},{"name":"MFTOPOLOGY_HWMODE_USE_HARDWARE","features":[428]},{"name":"MFTOPOLOGY_HWMODE_USE_ONLY_HARDWARE","features":[428]},{"name":"MFTOPONODE_ATTRIBUTE_UPDATE","features":[428]},{"name":"MFTRegister","features":[428]},{"name":"MFTRegisterLocal","features":[428,356]},{"name":"MFTRegisterLocalByCLSID","features":[428]},{"name":"MFTUnregister","features":[428]},{"name":"MFTUnregisterLocal","features":[428,356]},{"name":"MFTUnregisterLocalByCLSID","features":[428]},{"name":"MFT_AUDIO_DECODER_AUDIO_ENDPOINT_ID","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_INFO_ATTRIBUTE","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_REASON","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_REASON_LICENSING_REQUIREMENT","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_REASON_NONE","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_DOWNMIX2CHANNEL","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_DOWNMIX6CHANNEL","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_DOWNMIX8CHANNEL","features":[428]},{"name":"MFT_AUDIO_DECODER_DEGRADATION_TYPE_NONE","features":[428]},{"name":"MFT_AUDIO_DECODER_SPATIAL_METADATA_CLIENT","features":[428]},{"name":"MFT_CATEGORY_AUDIO_DECODER","features":[428]},{"name":"MFT_CATEGORY_AUDIO_EFFECT","features":[428]},{"name":"MFT_CATEGORY_AUDIO_ENCODER","features":[428]},{"name":"MFT_CATEGORY_DEMULTIPLEXER","features":[428]},{"name":"MFT_CATEGORY_ENCRYPTOR","features":[428]},{"name":"MFT_CATEGORY_MULTIPLEXER","features":[428]},{"name":"MFT_CATEGORY_OTHER","features":[428]},{"name":"MFT_CATEGORY_VIDEO_DECODER","features":[428]},{"name":"MFT_CATEGORY_VIDEO_EFFECT","features":[428]},{"name":"MFT_CATEGORY_VIDEO_ENCODER","features":[428]},{"name":"MFT_CATEGORY_VIDEO_PROCESSOR","features":[428]},{"name":"MFT_CATEGORY_VIDEO_RENDERER_EFFECT","features":[428]},{"name":"MFT_CODEC_MERIT_Attribute","features":[428]},{"name":"MFT_CONNECTED_STREAM_ATTRIBUTE","features":[428]},{"name":"MFT_CONNECTED_TO_HW_STREAM","features":[428]},{"name":"MFT_DECODER_EXPOSE_OUTPUT_TYPES_IN_NATIVE_ORDER","features":[428]},{"name":"MFT_DECODER_FINAL_VIDEO_RESOLUTION_HINT","features":[428]},{"name":"MFT_DECODER_QUALITY_MANAGEMENT_CUSTOM_CONTROL","features":[428]},{"name":"MFT_DECODER_QUALITY_MANAGEMENT_RECOVERY_WITHOUT_ARTIFACTS","features":[428]},{"name":"MFT_DRAIN_NO_TAILS","features":[428]},{"name":"MFT_DRAIN_PRODUCE_TAILS","features":[428]},{"name":"MFT_DRAIN_TYPE","features":[428]},{"name":"MFT_ENCODER_ERROR","features":[428]},{"name":"MFT_ENCODER_SUPPORTS_CONFIG_EVENT","features":[428]},{"name":"MFT_END_STREAMING_AWARE","features":[428]},{"name":"MFT_ENUM_ADAPTER_LUID","features":[428]},{"name":"MFT_ENUM_FLAG","features":[428]},{"name":"MFT_ENUM_FLAG_ALL","features":[428]},{"name":"MFT_ENUM_FLAG_ASYNCMFT","features":[428]},{"name":"MFT_ENUM_FLAG_FIELDOFUSE","features":[428]},{"name":"MFT_ENUM_FLAG_HARDWARE","features":[428]},{"name":"MFT_ENUM_FLAG_LOCALMFT","features":[428]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER","features":[428]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER_APPROVED_ONLY","features":[428]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER_WEB_ONLY","features":[428]},{"name":"MFT_ENUM_FLAG_SORTANDFILTER_WEB_ONLY_EDGEMODE","features":[428]},{"name":"MFT_ENUM_FLAG_SYNCMFT","features":[428]},{"name":"MFT_ENUM_FLAG_TRANSCODE_ONLY","features":[428]},{"name":"MFT_ENUM_FLAG_UNTRUSTED_STOREMFT","features":[428]},{"name":"MFT_ENUM_HARDWARE_URL_Attribute","features":[428]},{"name":"MFT_ENUM_HARDWARE_VENDOR_ID_Attribute","features":[428]},{"name":"MFT_ENUM_TRANSCODE_ONLY_ATTRIBUTE","features":[428]},{"name":"MFT_ENUM_VIDEO_RENDERER_EXTENSION_PROFILE","features":[428]},{"name":"MFT_FIELDOFUSE_UNLOCK_Attribute","features":[428]},{"name":"MFT_FRIENDLY_NAME_Attribute","features":[428]},{"name":"MFT_GFX_DRIVER_VERSION_ID_Attribute","features":[428]},{"name":"MFT_HW_TIMESTAMP_WITH_QPC_Attribute","features":[428]},{"name":"MFT_INPUT_DATA_BUFFER_PLACEHOLDER","features":[428]},{"name":"MFT_INPUT_STATUS_ACCEPT_DATA","features":[428]},{"name":"MFT_INPUT_STREAM_DOES_NOT_ADDREF","features":[428]},{"name":"MFT_INPUT_STREAM_FIXED_SAMPLE_SIZE","features":[428]},{"name":"MFT_INPUT_STREAM_HOLDS_BUFFERS","features":[428]},{"name":"MFT_INPUT_STREAM_INFO","features":[428]},{"name":"MFT_INPUT_STREAM_OPTIONAL","features":[428]},{"name":"MFT_INPUT_STREAM_PROCESSES_IN_PLACE","features":[428]},{"name":"MFT_INPUT_STREAM_REMOVABLE","features":[428]},{"name":"MFT_INPUT_STREAM_SINGLE_SAMPLE_PER_BUFFER","features":[428]},{"name":"MFT_INPUT_STREAM_WHOLE_SAMPLES","features":[428]},{"name":"MFT_INPUT_TYPES_Attributes","features":[428]},{"name":"MFT_MESSAGE_COMMAND_DRAIN","features":[428]},{"name":"MFT_MESSAGE_COMMAND_FLUSH","features":[428]},{"name":"MFT_MESSAGE_COMMAND_FLUSH_OUTPUT_STREAM","features":[428]},{"name":"MFT_MESSAGE_COMMAND_MARKER","features":[428]},{"name":"MFT_MESSAGE_COMMAND_SET_OUTPUT_STREAM_STATE","features":[428]},{"name":"MFT_MESSAGE_COMMAND_TICK","features":[428]},{"name":"MFT_MESSAGE_DROP_SAMPLES","features":[428]},{"name":"MFT_MESSAGE_NOTIFY_BEGIN_STREAMING","features":[428]},{"name":"MFT_MESSAGE_NOTIFY_END_OF_STREAM","features":[428]},{"name":"MFT_MESSAGE_NOTIFY_END_STREAMING","features":[428]},{"name":"MFT_MESSAGE_NOTIFY_EVENT","features":[428]},{"name":"MFT_MESSAGE_NOTIFY_REACQUIRE_RESOURCES","features":[428]},{"name":"MFT_MESSAGE_NOTIFY_RELEASE_RESOURCES","features":[428]},{"name":"MFT_MESSAGE_NOTIFY_START_OF_STREAM","features":[428]},{"name":"MFT_MESSAGE_SET_D3D_MANAGER","features":[428]},{"name":"MFT_MESSAGE_TYPE","features":[428]},{"name":"MFT_OUTPUT_BOUND_UPPER_UNBOUNDED","features":[428]},{"name":"MFT_OUTPUT_DATA_BUFFER","features":[428]},{"name":"MFT_OUTPUT_DATA_BUFFER_FORMAT_CHANGE","features":[428]},{"name":"MFT_OUTPUT_DATA_BUFFER_INCOMPLETE","features":[428]},{"name":"MFT_OUTPUT_DATA_BUFFER_NO_SAMPLE","features":[428]},{"name":"MFT_OUTPUT_DATA_BUFFER_STREAM_END","features":[428]},{"name":"MFT_OUTPUT_STATUS_SAMPLE_READY","features":[428]},{"name":"MFT_OUTPUT_STREAM_CAN_PROVIDE_SAMPLES","features":[428]},{"name":"MFT_OUTPUT_STREAM_DISCARDABLE","features":[428]},{"name":"MFT_OUTPUT_STREAM_FIXED_SAMPLE_SIZE","features":[428]},{"name":"MFT_OUTPUT_STREAM_INFO","features":[428]},{"name":"MFT_OUTPUT_STREAM_LAZY_READ","features":[428]},{"name":"MFT_OUTPUT_STREAM_OPTIONAL","features":[428]},{"name":"MFT_OUTPUT_STREAM_PROVIDES_SAMPLES","features":[428]},{"name":"MFT_OUTPUT_STREAM_REMOVABLE","features":[428]},{"name":"MFT_OUTPUT_STREAM_SINGLE_SAMPLE_PER_BUFFER","features":[428]},{"name":"MFT_OUTPUT_STREAM_WHOLE_SAMPLES","features":[428]},{"name":"MFT_OUTPUT_TYPES_Attributes","features":[428]},{"name":"MFT_POLICY_SET_AWARE","features":[428]},{"name":"MFT_PREFERRED_ENCODER_PROFILE","features":[428]},{"name":"MFT_PREFERRED_OUTPUTTYPE_Attribute","features":[428]},{"name":"MFT_PROCESS_LOCAL_Attribute","features":[428]},{"name":"MFT_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER","features":[428]},{"name":"MFT_PROCESS_OUTPUT_REGENERATE_LAST_OUTPUT","features":[428]},{"name":"MFT_PROCESS_OUTPUT_STATUS_NEW_STREAMS","features":[428]},{"name":"MFT_REGISTER_TYPE_INFO","features":[428]},{"name":"MFT_REGISTRATION_INFO","features":[428]},{"name":"MFT_REMUX_MARK_I_PICTURE_AS_CLEAN_POINT","features":[428]},{"name":"MFT_SET_TYPE_TEST_ONLY","features":[428]},{"name":"MFT_STREAMS_UNLIMITED","features":[428]},{"name":"MFT_STREAM_STATE_PARAM","features":[428]},{"name":"MFT_SUPPORT_3DVIDEO","features":[428]},{"name":"MFT_SUPPORT_DYNAMIC_FORMAT_CHANGE","features":[428]},{"name":"MFT_TRANSFORM_CLSID_Attribute","features":[428]},{"name":"MFT_USING_HARDWARE_DRM","features":[428]},{"name":"MFTranscodeContainerType_3GP","features":[428]},{"name":"MFTranscodeContainerType_AC3","features":[428]},{"name":"MFTranscodeContainerType_ADTS","features":[428]},{"name":"MFTranscodeContainerType_AMR","features":[428]},{"name":"MFTranscodeContainerType_ASF","features":[428]},{"name":"MFTranscodeContainerType_AVI","features":[428]},{"name":"MFTranscodeContainerType_FLAC","features":[428]},{"name":"MFTranscodeContainerType_FMPEG4","features":[428]},{"name":"MFTranscodeContainerType_MP3","features":[428]},{"name":"MFTranscodeContainerType_MPEG2","features":[428]},{"name":"MFTranscodeContainerType_MPEG4","features":[428]},{"name":"MFTranscodeContainerType_WAVE","features":[428]},{"name":"MFTranscodeGetAudioOutputAvailableTypes","features":[428]},{"name":"MFUnlockDXGIDeviceManager","features":[428]},{"name":"MFUnlockPlatform","features":[428]},{"name":"MFUnlockWorkQueue","features":[428]},{"name":"MFUnregisterPlatformFromMMCSS","features":[428]},{"name":"MFUnwrapMediaType","features":[428]},{"name":"MFVIDEOFORMAT","features":[305,428]},{"name":"MFVP_MESSAGE_BEGINSTREAMING","features":[428]},{"name":"MFVP_MESSAGE_CANCELSTEP","features":[428]},{"name":"MFVP_MESSAGE_ENDOFSTREAM","features":[428]},{"name":"MFVP_MESSAGE_ENDSTREAMING","features":[428]},{"name":"MFVP_MESSAGE_FLUSH","features":[428]},{"name":"MFVP_MESSAGE_INVALIDATEMEDIATYPE","features":[428]},{"name":"MFVP_MESSAGE_PROCESSINPUTNOTIFY","features":[428]},{"name":"MFVP_MESSAGE_STEP","features":[428]},{"name":"MFVP_MESSAGE_TYPE","features":[428]},{"name":"MFValidateMediaTypeSize","features":[428]},{"name":"MFVideo3DFormat","features":[428]},{"name":"MFVideo3DSampleFormat","features":[428]},{"name":"MFVideo3DSampleFormat_BaseView","features":[428]},{"name":"MFVideo3DSampleFormat_MultiView","features":[428]},{"name":"MFVideo3DSampleFormat_Packed_LeftRight","features":[428]},{"name":"MFVideo3DSampleFormat_Packed_TopBottom","features":[428]},{"name":"MFVideoARMode_Mask","features":[428]},{"name":"MFVideoARMode_NonLinearStretch","features":[428]},{"name":"MFVideoARMode_None","features":[428]},{"name":"MFVideoARMode_PreservePicture","features":[428]},{"name":"MFVideoARMode_PreservePixel","features":[428]},{"name":"MFVideoAlphaBitmap","features":[305,314,316,428]},{"name":"MFVideoAlphaBitmapFlags","features":[428]},{"name":"MFVideoAlphaBitmapParams","features":[305,428]},{"name":"MFVideoAlphaBitmap_Alpha","features":[428]},{"name":"MFVideoAlphaBitmap_BitMask","features":[428]},{"name":"MFVideoAlphaBitmap_DestRect","features":[428]},{"name":"MFVideoAlphaBitmap_EntireDDS","features":[428]},{"name":"MFVideoAlphaBitmap_FilterMode","features":[428]},{"name":"MFVideoAlphaBitmap_SrcColorKey","features":[428]},{"name":"MFVideoAlphaBitmap_SrcRect","features":[428]},{"name":"MFVideoArea","features":[305,428]},{"name":"MFVideoAspectRatioMode","features":[428]},{"name":"MFVideoChromaSubsampling","features":[428]},{"name":"MFVideoChromaSubsampling_Cosited","features":[428]},{"name":"MFVideoChromaSubsampling_DV_PAL","features":[428]},{"name":"MFVideoChromaSubsampling_ForceDWORD","features":[428]},{"name":"MFVideoChromaSubsampling_Horizontally_Cosited","features":[428]},{"name":"MFVideoChromaSubsampling_Last","features":[428]},{"name":"MFVideoChromaSubsampling_MPEG1","features":[428]},{"name":"MFVideoChromaSubsampling_MPEG2","features":[428]},{"name":"MFVideoChromaSubsampling_ProgressiveChroma","features":[428]},{"name":"MFVideoChromaSubsampling_Unknown","features":[428]},{"name":"MFVideoChromaSubsampling_Vertically_AlignedChromaPlanes","features":[428]},{"name":"MFVideoChromaSubsampling_Vertically_Cosited","features":[428]},{"name":"MFVideoCompressedInfo","features":[428]},{"name":"MFVideoDRMFlag_AnalogProtected","features":[428]},{"name":"MFVideoDRMFlag_DigitallyProtected","features":[428]},{"name":"MFVideoDRMFlag_None","features":[428]},{"name":"MFVideoDRMFlags","features":[428]},{"name":"MFVideoDSPMode","features":[428]},{"name":"MFVideoDSPMode_Passthrough","features":[428]},{"name":"MFVideoDSPMode_Stabilization","features":[428]},{"name":"MFVideoFlag_AnalogProtected","features":[428]},{"name":"MFVideoFlag_BottomUpLinearRep","features":[428]},{"name":"MFVideoFlag_DigitallyProtected","features":[428]},{"name":"MFVideoFlag_FieldRepeatCountMask","features":[428]},{"name":"MFVideoFlag_FieldRepeatCountShift","features":[428]},{"name":"MFVideoFlag_LowerFieldFirst","features":[428]},{"name":"MFVideoFlag_PAD_TO_16x9","features":[428]},{"name":"MFVideoFlag_PAD_TO_4x3","features":[428]},{"name":"MFVideoFlag_PAD_TO_Mask","features":[428]},{"name":"MFVideoFlag_PAD_TO_None","features":[428]},{"name":"MFVideoFlag_PanScanEnabled","features":[428]},{"name":"MFVideoFlag_ProgressiveContent","features":[428]},{"name":"MFVideoFlag_ProgressiveSeqReset","features":[428]},{"name":"MFVideoFlag_SrcContentHint16x9","features":[428]},{"name":"MFVideoFlag_SrcContentHint235_1","features":[428]},{"name":"MFVideoFlag_SrcContentHintMask","features":[428]},{"name":"MFVideoFlag_SrcContentHintNone","features":[428]},{"name":"MFVideoFlags","features":[428]},{"name":"MFVideoFlags_DXVASurface","features":[428]},{"name":"MFVideoFlags_ForceQWORD","features":[428]},{"name":"MFVideoFlags_RenderTargetSurface","features":[428]},{"name":"MFVideoFormat_420O","features":[428]},{"name":"MFVideoFormat_A16B16G16R16F","features":[428]},{"name":"MFVideoFormat_A2R10G10B10","features":[428]},{"name":"MFVideoFormat_AI44","features":[428]},{"name":"MFVideoFormat_ARGB32","features":[428]},{"name":"MFVideoFormat_AV1","features":[428]},{"name":"MFVideoFormat_AYUV","features":[428]},{"name":"MFVideoFormat_Base","features":[428]},{"name":"MFVideoFormat_Base_HDCP","features":[428]},{"name":"MFVideoFormat_D16","features":[428]},{"name":"MFVideoFormat_DV25","features":[428]},{"name":"MFVideoFormat_DV50","features":[428]},{"name":"MFVideoFormat_DVH1","features":[428]},{"name":"MFVideoFormat_DVHD","features":[428]},{"name":"MFVideoFormat_DVSD","features":[428]},{"name":"MFVideoFormat_DVSL","features":[428]},{"name":"MFVideoFormat_H263","features":[428]},{"name":"MFVideoFormat_H264","features":[428]},{"name":"MFVideoFormat_H264_ES","features":[428]},{"name":"MFVideoFormat_H264_HDCP","features":[428]},{"name":"MFVideoFormat_H265","features":[428]},{"name":"MFVideoFormat_HEVC","features":[428]},{"name":"MFVideoFormat_HEVC_ES","features":[428]},{"name":"MFVideoFormat_HEVC_HDCP","features":[428]},{"name":"MFVideoFormat_I420","features":[428]},{"name":"MFVideoFormat_IYUV","features":[428]},{"name":"MFVideoFormat_L16","features":[428]},{"name":"MFVideoFormat_L8","features":[428]},{"name":"MFVideoFormat_M4S2","features":[428]},{"name":"MFVideoFormat_MJPG","features":[428]},{"name":"MFVideoFormat_MP43","features":[428]},{"name":"MFVideoFormat_MP4S","features":[428]},{"name":"MFVideoFormat_MP4V","features":[428]},{"name":"MFVideoFormat_MPEG2","features":[428]},{"name":"MFVideoFormat_MPG1","features":[428]},{"name":"MFVideoFormat_MSS1","features":[428]},{"name":"MFVideoFormat_MSS2","features":[428]},{"name":"MFVideoFormat_NV11","features":[428]},{"name":"MFVideoFormat_NV12","features":[428]},{"name":"MFVideoFormat_NV21","features":[428]},{"name":"MFVideoFormat_ORAW","features":[428]},{"name":"MFVideoFormat_P010","features":[428]},{"name":"MFVideoFormat_P016","features":[428]},{"name":"MFVideoFormat_P210","features":[428]},{"name":"MFVideoFormat_P216","features":[428]},{"name":"MFVideoFormat_RGB24","features":[428]},{"name":"MFVideoFormat_RGB32","features":[428]},{"name":"MFVideoFormat_RGB555","features":[428]},{"name":"MFVideoFormat_RGB565","features":[428]},{"name":"MFVideoFormat_RGB8","features":[428]},{"name":"MFVideoFormat_Theora","features":[428]},{"name":"MFVideoFormat_UYVY","features":[428]},{"name":"MFVideoFormat_VP10","features":[428]},{"name":"MFVideoFormat_VP80","features":[428]},{"name":"MFVideoFormat_VP90","features":[428]},{"name":"MFVideoFormat_WMV1","features":[428]},{"name":"MFVideoFormat_WMV2","features":[428]},{"name":"MFVideoFormat_WMV3","features":[428]},{"name":"MFVideoFormat_WVC1","features":[428]},{"name":"MFVideoFormat_Y210","features":[428]},{"name":"MFVideoFormat_Y216","features":[428]},{"name":"MFVideoFormat_Y410","features":[428]},{"name":"MFVideoFormat_Y416","features":[428]},{"name":"MFVideoFormat_Y41P","features":[428]},{"name":"MFVideoFormat_Y41T","features":[428]},{"name":"MFVideoFormat_Y42T","features":[428]},{"name":"MFVideoFormat_YUY2","features":[428]},{"name":"MFVideoFormat_YV12","features":[428]},{"name":"MFVideoFormat_YVU9","features":[428]},{"name":"MFVideoFormat_YVYU","features":[428]},{"name":"MFVideoFormat_v210","features":[428]},{"name":"MFVideoFormat_v216","features":[428]},{"name":"MFVideoFormat_v410","features":[428]},{"name":"MFVideoInfo","features":[305,428]},{"name":"MFVideoInterlaceMode","features":[428]},{"name":"MFVideoInterlace_FieldInterleavedLowerFirst","features":[428]},{"name":"MFVideoInterlace_FieldInterleavedUpperFirst","features":[428]},{"name":"MFVideoInterlace_FieldSingleLower","features":[428]},{"name":"MFVideoInterlace_FieldSingleUpper","features":[428]},{"name":"MFVideoInterlace_ForceDWORD","features":[428]},{"name":"MFVideoInterlace_Last","features":[428]},{"name":"MFVideoInterlace_MixedInterlaceOrProgressive","features":[428]},{"name":"MFVideoInterlace_Progressive","features":[428]},{"name":"MFVideoInterlace_Unknown","features":[428]},{"name":"MFVideoLighting","features":[428]},{"name":"MFVideoLighting_ForceDWORD","features":[428]},{"name":"MFVideoLighting_Last","features":[428]},{"name":"MFVideoLighting_Unknown","features":[428]},{"name":"MFVideoLighting_bright","features":[428]},{"name":"MFVideoLighting_dark","features":[428]},{"name":"MFVideoLighting_dim","features":[428]},{"name":"MFVideoLighting_office","features":[428]},{"name":"MFVideoMixPrefs","features":[428]},{"name":"MFVideoMixPrefs_AllowDropToBob","features":[428]},{"name":"MFVideoMixPrefs_AllowDropToHalfInterlace","features":[428]},{"name":"MFVideoMixPrefs_EnableRotation","features":[428]},{"name":"MFVideoMixPrefs_ForceBob","features":[428]},{"name":"MFVideoMixPrefs_ForceHalfInterlace","features":[428]},{"name":"MFVideoMixPrefs_Mask","features":[428]},{"name":"MFVideoNormalizedRect","features":[428]},{"name":"MFVideoPadFlag_PAD_TO_16x9","features":[428]},{"name":"MFVideoPadFlag_PAD_TO_4x3","features":[428]},{"name":"MFVideoPadFlag_PAD_TO_None","features":[428]},{"name":"MFVideoPadFlags","features":[428]},{"name":"MFVideoPrimaries","features":[428]},{"name":"MFVideoPrimaries_ACES","features":[428]},{"name":"MFVideoPrimaries_BT2020","features":[428]},{"name":"MFVideoPrimaries_BT470_2_SysBG","features":[428]},{"name":"MFVideoPrimaries_BT470_2_SysM","features":[428]},{"name":"MFVideoPrimaries_BT709","features":[428]},{"name":"MFVideoPrimaries_DCI_P3","features":[428]},{"name":"MFVideoPrimaries_EBU3213","features":[428]},{"name":"MFVideoPrimaries_ForceDWORD","features":[428]},{"name":"MFVideoPrimaries_Last","features":[428]},{"name":"MFVideoPrimaries_SMPTE170M","features":[428]},{"name":"MFVideoPrimaries_SMPTE240M","features":[428]},{"name":"MFVideoPrimaries_SMPTE_C","features":[428]},{"name":"MFVideoPrimaries_Unknown","features":[428]},{"name":"MFVideoPrimaries_XYZ","features":[428]},{"name":"MFVideoPrimaries_reserved","features":[428]},{"name":"MFVideoRenderPrefs","features":[428]},{"name":"MFVideoRenderPrefs_AllowBatching","features":[428]},{"name":"MFVideoRenderPrefs_AllowOutputThrottling","features":[428]},{"name":"MFVideoRenderPrefs_AllowScaling","features":[428]},{"name":"MFVideoRenderPrefs_DoNotClipToDevice","features":[428]},{"name":"MFVideoRenderPrefs_DoNotRenderBorder","features":[428]},{"name":"MFVideoRenderPrefs_DoNotRepaintOnStop","features":[428]},{"name":"MFVideoRenderPrefs_ForceBatching","features":[428]},{"name":"MFVideoRenderPrefs_ForceOutputThrottling","features":[428]},{"name":"MFVideoRenderPrefs_ForceScaling","features":[428]},{"name":"MFVideoRenderPrefs_Mask","features":[428]},{"name":"MFVideoRotationFormat","features":[428]},{"name":"MFVideoRotationFormat_0","features":[428]},{"name":"MFVideoRotationFormat_180","features":[428]},{"name":"MFVideoRotationFormat_270","features":[428]},{"name":"MFVideoRotationFormat_90","features":[428]},{"name":"MFVideoSphericalFormat","features":[428]},{"name":"MFVideoSphericalFormat_3DMesh","features":[428]},{"name":"MFVideoSphericalFormat_CubeMap","features":[428]},{"name":"MFVideoSphericalFormat_Equirectangular","features":[428]},{"name":"MFVideoSphericalFormat_Unsupported","features":[428]},{"name":"MFVideoSphericalProjectionMode","features":[428]},{"name":"MFVideoSphericalProjectionMode_Flat","features":[428]},{"name":"MFVideoSphericalProjectionMode_Spherical","features":[428]},{"name":"MFVideoSrcContentHintFlag_16x9","features":[428]},{"name":"MFVideoSrcContentHintFlag_235_1","features":[428]},{"name":"MFVideoSrcContentHintFlag_None","features":[428]},{"name":"MFVideoSrcContentHintFlags","features":[428]},{"name":"MFVideoSurfaceInfo","features":[428]},{"name":"MFVideoTransFunc_10","features":[428]},{"name":"MFVideoTransFunc_10_rel","features":[428]},{"name":"MFVideoTransFunc_18","features":[428]},{"name":"MFVideoTransFunc_20","features":[428]},{"name":"MFVideoTransFunc_2020","features":[428]},{"name":"MFVideoTransFunc_2020_const","features":[428]},{"name":"MFVideoTransFunc_2084","features":[428]},{"name":"MFVideoTransFunc_22","features":[428]},{"name":"MFVideoTransFunc_240M","features":[428]},{"name":"MFVideoTransFunc_26","features":[428]},{"name":"MFVideoTransFunc_28","features":[428]},{"name":"MFVideoTransFunc_709","features":[428]},{"name":"MFVideoTransFunc_709_sym","features":[428]},{"name":"MFVideoTransFunc_ForceDWORD","features":[428]},{"name":"MFVideoTransFunc_HLG","features":[428]},{"name":"MFVideoTransFunc_Last","features":[428]},{"name":"MFVideoTransFunc_Log_100","features":[428]},{"name":"MFVideoTransFunc_Log_316","features":[428]},{"name":"MFVideoTransFunc_Unknown","features":[428]},{"name":"MFVideoTransFunc_sRGB","features":[428]},{"name":"MFVideoTransferFunction","features":[428]},{"name":"MFVideoTransferMatrix","features":[428]},{"name":"MFVideoTransferMatrix_BT2020_10","features":[428]},{"name":"MFVideoTransferMatrix_BT2020_12","features":[428]},{"name":"MFVideoTransferMatrix_BT601","features":[428]},{"name":"MFVideoTransferMatrix_BT709","features":[428]},{"name":"MFVideoTransferMatrix_ForceDWORD","features":[428]},{"name":"MFVideoTransferMatrix_Last","features":[428]},{"name":"MFVideoTransferMatrix_SMPTE240M","features":[428]},{"name":"MFVideoTransferMatrix_Unknown","features":[428]},{"name":"MFVirtualCameraAccess","features":[428]},{"name":"MFVirtualCameraAccess_AllUsers","features":[428]},{"name":"MFVirtualCameraAccess_CurrentUser","features":[428]},{"name":"MFVirtualCameraLifetime","features":[428]},{"name":"MFVirtualCameraLifetime_Session","features":[428]},{"name":"MFVirtualCameraLifetime_System","features":[428]},{"name":"MFVirtualCameraType","features":[428]},{"name":"MFVirtualCameraType_SoftwareCameraSource","features":[428]},{"name":"MFWaveFormatExConvertFlag_ForceExtensible","features":[428]},{"name":"MFWaveFormatExConvertFlag_Normal","features":[428]},{"name":"MFWaveFormatExConvertFlags","features":[428]},{"name":"MFWrapMediaType","features":[428]},{"name":"MF_1024_BYTE_ALIGNMENT","features":[428]},{"name":"MF_128_BYTE_ALIGNMENT","features":[428]},{"name":"MF_16_BYTE_ALIGNMENT","features":[428]},{"name":"MF_1_BYTE_ALIGNMENT","features":[428]},{"name":"MF_2048_BYTE_ALIGNMENT","features":[428]},{"name":"MF_256_BYTE_ALIGNMENT","features":[428]},{"name":"MF_2_BYTE_ALIGNMENT","features":[428]},{"name":"MF_32_BYTE_ALIGNMENT","features":[428]},{"name":"MF_4096_BYTE_ALIGNMENT","features":[428]},{"name":"MF_4_BYTE_ALIGNMENT","features":[428]},{"name":"MF_512_BYTE_ALIGNMENT","features":[428]},{"name":"MF_64_BYTE_ALIGNMENT","features":[428]},{"name":"MF_8192_BYTE_ALIGNMENT","features":[428]},{"name":"MF_8_BYTE_ALIGNMENT","features":[428]},{"name":"MF_ACCESSMODE_READ","features":[428]},{"name":"MF_ACCESSMODE_READWRITE","features":[428]},{"name":"MF_ACCESSMODE_WRITE","features":[428]},{"name":"MF_ACCESS_CONTROLLED_MEDIASOURCE_SERVICE","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_MIXER","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_MIXER_ALLOWFAIL","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_PRESENTER","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_PRESENTER_ALLOWFAIL","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_MIXER_ACTIVATE","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_MIXER_CLSID","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_MIXER_FLAGS","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_PRESENTER_ACTIVATE","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_PRESENTER_CLSID","features":[428]},{"name":"MF_ACTIVATE_CUSTOM_VIDEO_PRESENTER_FLAGS","features":[428]},{"name":"MF_ACTIVATE_MFT_LOCKED","features":[428]},{"name":"MF_ACTIVATE_VIDEO_WINDOW","features":[428]},{"name":"MF_API_VERSION","features":[428]},{"name":"MF_ASFPROFILE_MAXPACKETSIZE","features":[428]},{"name":"MF_ASFPROFILE_MINPACKETSIZE","features":[428]},{"name":"MF_ASFSTREAMCONFIG_LEAKYBUCKET1","features":[428]},{"name":"MF_ASFSTREAMCONFIG_LEAKYBUCKET2","features":[428]},{"name":"MF_ATTRIBUTES_MATCH_ALL_ITEMS","features":[428]},{"name":"MF_ATTRIBUTES_MATCH_INTERSECTION","features":[428]},{"name":"MF_ATTRIBUTES_MATCH_OUR_ITEMS","features":[428]},{"name":"MF_ATTRIBUTES_MATCH_SMALLER","features":[428]},{"name":"MF_ATTRIBUTES_MATCH_THEIR_ITEMS","features":[428]},{"name":"MF_ATTRIBUTES_MATCH_TYPE","features":[428]},{"name":"MF_ATTRIBUTE_BLOB","features":[428]},{"name":"MF_ATTRIBUTE_DOUBLE","features":[428]},{"name":"MF_ATTRIBUTE_GUID","features":[428]},{"name":"MF_ATTRIBUTE_IUNKNOWN","features":[428]},{"name":"MF_ATTRIBUTE_SERIALIZE_OPTIONS","features":[428]},{"name":"MF_ATTRIBUTE_SERIALIZE_UNKNOWN_BYREF","features":[428]},{"name":"MF_ATTRIBUTE_STRING","features":[428]},{"name":"MF_ATTRIBUTE_TYPE","features":[428]},{"name":"MF_ATTRIBUTE_UINT32","features":[428]},{"name":"MF_ATTRIBUTE_UINT64","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_ENDPOINT_ID","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_ENDPOINT_ROLE","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS_CROSSPROCESS","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS_DONT_ALLOW_FORMAT_CHANGES","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_FLAGS_NOPERSIST","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_SESSION_ID","features":[428]},{"name":"MF_AUDIO_RENDERER_ATTRIBUTE_STREAM_CATEGORY","features":[428]},{"name":"MF_AUVRHP_ROOMMODEL","features":[428]},{"name":"MF_BD_MVC_PLANE_OFFSET_METADATA","features":[428]},{"name":"MF_BOOT_DRIVER_VERIFICATION_FAILED","features":[428]},{"name":"MF_BYTESTREAMHANDLER_ACCEPTS_SHARE_WRITE","features":[428]},{"name":"MF_BYTESTREAM_CONTENT_TYPE","features":[428]},{"name":"MF_BYTESTREAM_DLNA_PROFILE_ID","features":[428]},{"name":"MF_BYTESTREAM_DURATION","features":[428]},{"name":"MF_BYTESTREAM_EFFECTIVE_URL","features":[428]},{"name":"MF_BYTESTREAM_IFO_FILE_URI","features":[428]},{"name":"MF_BYTESTREAM_LAST_MODIFIED_TIME","features":[428]},{"name":"MF_BYTESTREAM_ORIGIN_NAME","features":[428]},{"name":"MF_BYTESTREAM_SERVICE","features":[428]},{"name":"MF_BYTESTREAM_TRANSCODED","features":[428]},{"name":"MF_BYTE_STREAM_CACHE_RANGE","features":[428]},{"name":"MF_CAMERA_CONTROL_CONFIGURATION_TYPE","features":[428]},{"name":"MF_CAMERA_CONTROL_CONFIGURATION_TYPE_POSTSTART","features":[428]},{"name":"MF_CAMERA_CONTROL_CONFIGURATION_TYPE_PRESTART","features":[428]},{"name":"MF_CAMERA_CONTROL_RANGE_INFO","features":[428]},{"name":"MF_CAPTURE_ENGINE_ALL_EFFECTS_REMOVED","features":[428]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING","features":[428]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING_DEFAULT","features":[428]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING_MODE","features":[428]},{"name":"MF_CAPTURE_ENGINE_AUDIO_PROCESSING_RAW","features":[428]},{"name":"MF_CAPTURE_ENGINE_CAMERA_STREAM_BLOCKED","features":[428]},{"name":"MF_CAPTURE_ENGINE_CAMERA_STREAM_UNBLOCKED","features":[428]},{"name":"MF_CAPTURE_ENGINE_D3D_MANAGER","features":[428]},{"name":"MF_CAPTURE_ENGINE_DECODER_MFT_FIELDOFUSE_UNLOCK_Attribute","features":[428]},{"name":"MF_CAPTURE_ENGINE_DEVICE_TYPE","features":[428]},{"name":"MF_CAPTURE_ENGINE_DEVICE_TYPE_AUDIO","features":[428]},{"name":"MF_CAPTURE_ENGINE_DEVICE_TYPE_VIDEO","features":[428]},{"name":"MF_CAPTURE_ENGINE_DISABLE_DXVA","features":[428]},{"name":"MF_CAPTURE_ENGINE_DISABLE_HARDWARE_TRANSFORMS","features":[428]},{"name":"MF_CAPTURE_ENGINE_EFFECT_ADDED","features":[428]},{"name":"MF_CAPTURE_ENGINE_EFFECT_REMOVED","features":[428]},{"name":"MF_CAPTURE_ENGINE_ENABLE_CAMERA_STREAMSTATE_NOTIFICATION","features":[428]},{"name":"MF_CAPTURE_ENGINE_ENCODER_MFT_FIELDOFUSE_UNLOCK_Attribute","features":[428]},{"name":"MF_CAPTURE_ENGINE_ERROR","features":[428]},{"name":"MF_CAPTURE_ENGINE_EVENT_GENERATOR_GUID","features":[428]},{"name":"MF_CAPTURE_ENGINE_EVENT_STREAM_INDEX","features":[428]},{"name":"MF_CAPTURE_ENGINE_INITIALIZED","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIASOURCE","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIASOURCE_CONFIG","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_COMMUNICATIONS","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_FARFIELDSPEECH","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_GAMECHAT","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_MEDIA","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_OTHER","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_SPEECH","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_UNIFORMSPEECH","features":[428]},{"name":"MF_CAPTURE_ENGINE_MEDIA_CATEGORY_TYPE_VOICETYPING","features":[428]},{"name":"MF_CAPTURE_ENGINE_OUTPUT_MEDIA_TYPE_SET","features":[428]},{"name":"MF_CAPTURE_ENGINE_PHOTO_TAKEN","features":[428]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_AUDIO","features":[428]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_METADATA","features":[428]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_PHOTO","features":[428]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_VIDEO_PREVIEW","features":[428]},{"name":"MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_VIDEO_RECORD","features":[428]},{"name":"MF_CAPTURE_ENGINE_PREVIEW_STARTED","features":[428]},{"name":"MF_CAPTURE_ENGINE_PREVIEW_STOPPED","features":[428]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_AUDIO_MAX_PROCESSED_SAMPLES","features":[428]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_AUDIO_MAX_UNPROCESSED_SAMPLES","features":[428]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_VIDEO_MAX_PROCESSED_SAMPLES","features":[428]},{"name":"MF_CAPTURE_ENGINE_RECORD_SINK_VIDEO_MAX_UNPROCESSED_SAMPLES","features":[428]},{"name":"MF_CAPTURE_ENGINE_RECORD_STARTED","features":[428]},{"name":"MF_CAPTURE_ENGINE_RECORD_STOPPED","features":[428]},{"name":"MF_CAPTURE_ENGINE_SELECTEDCAMERAPROFILE","features":[428]},{"name":"MF_CAPTURE_ENGINE_SELECTEDCAMERAPROFILE_INDEX","features":[428]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE","features":[428]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE_PHOTO","features":[428]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE_PREVIEW","features":[428]},{"name":"MF_CAPTURE_ENGINE_SINK_TYPE_RECORD","features":[428]},{"name":"MF_CAPTURE_ENGINE_SOURCE","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_AUDIO","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_METADATA","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_PHOTO_DEPENDENT","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_PHOTO_INDEPENDENT","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_UNSUPPORTED","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_VIDEO_CAPTURE","features":[428]},{"name":"MF_CAPTURE_ENGINE_STREAM_CATEGORY_VIDEO_PREVIEW","features":[428]},{"name":"MF_CAPTURE_ENGINE_USE_AUDIO_DEVICE_ONLY","features":[428]},{"name":"MF_CAPTURE_ENGINE_USE_VIDEO_DEVICE_ONLY","features":[428]},{"name":"MF_CAPTURE_METADATA_DIGITALWINDOW","features":[428]},{"name":"MF_CAPTURE_METADATA_EXIF","features":[428]},{"name":"MF_CAPTURE_METADATA_EXPOSURE_COMPENSATION","features":[428]},{"name":"MF_CAPTURE_METADATA_EXPOSURE_TIME","features":[428]},{"name":"MF_CAPTURE_METADATA_FACEROICHARACTERIZATIONS","features":[428]},{"name":"MF_CAPTURE_METADATA_FACEROIS","features":[428]},{"name":"MF_CAPTURE_METADATA_FACEROITIMESTAMPS","features":[428]},{"name":"MF_CAPTURE_METADATA_FIRST_SCANLINE_START_TIME_QPC","features":[428]},{"name":"MF_CAPTURE_METADATA_FLASH","features":[428]},{"name":"MF_CAPTURE_METADATA_FLASH_POWER","features":[428]},{"name":"MF_CAPTURE_METADATA_FOCUSSTATE","features":[428]},{"name":"MF_CAPTURE_METADATA_FRAME_BACKGROUND_MASK","features":[428]},{"name":"MF_CAPTURE_METADATA_FRAME_ILLUMINATION","features":[428]},{"name":"MF_CAPTURE_METADATA_FRAME_RAWSTREAM","features":[428]},{"name":"MF_CAPTURE_METADATA_HISTOGRAM","features":[428]},{"name":"MF_CAPTURE_METADATA_ISO_GAINS","features":[428]},{"name":"MF_CAPTURE_METADATA_ISO_SPEED","features":[428]},{"name":"MF_CAPTURE_METADATA_LAST_SCANLINE_END_TIME_QPC","features":[428]},{"name":"MF_CAPTURE_METADATA_LENS_POSITION","features":[428]},{"name":"MF_CAPTURE_METADATA_PHOTO_FRAME_FLASH","features":[428]},{"name":"MF_CAPTURE_METADATA_REQUESTED_FRAME_SETTING_ID","features":[428]},{"name":"MF_CAPTURE_METADATA_SCANLINE_DIRECTION","features":[428]},{"name":"MF_CAPTURE_METADATA_SCANLINE_TIME_QPC_ACCURACY","features":[428]},{"name":"MF_CAPTURE_METADATA_SCENE_MODE","features":[428]},{"name":"MF_CAPTURE_METADATA_SENSORFRAMERATE","features":[428]},{"name":"MF_CAPTURE_METADATA_UVC_PAYLOADHEADER","features":[428]},{"name":"MF_CAPTURE_METADATA_WHITEBALANCE","features":[428]},{"name":"MF_CAPTURE_METADATA_WHITEBALANCE_GAINS","features":[428]},{"name":"MF_CAPTURE_METADATA_ZOOMFACTOR","features":[428]},{"name":"MF_CAPTURE_SINK_PREPARED","features":[428]},{"name":"MF_CAPTURE_SOURCE_CURRENT_DEVICE_MEDIA_TYPE_SET","features":[428]},{"name":"MF_COMPONENT_CERT_REVOKED","features":[428]},{"name":"MF_COMPONENT_HS_CERT_REVOKED","features":[428]},{"name":"MF_COMPONENT_INVALID_EKU","features":[428]},{"name":"MF_COMPONENT_INVALID_ROOT","features":[428]},{"name":"MF_COMPONENT_LS_CERT_REVOKED","features":[428]},{"name":"MF_COMPONENT_REVOKED","features":[428]},{"name":"MF_CONNECT_ALLOW_CONVERTER","features":[428]},{"name":"MF_CONNECT_ALLOW_DECODER","features":[428]},{"name":"MF_CONNECT_AS_OPTIONAL","features":[428]},{"name":"MF_CONNECT_AS_OPTIONAL_BRANCH","features":[428]},{"name":"MF_CONNECT_DIRECT","features":[428]},{"name":"MF_CONNECT_METHOD","features":[428]},{"name":"MF_CONNECT_RESOLVE_INDEPENDENT_OUTPUTTYPES","features":[428]},{"name":"MF_CONTENTDECRYPTIONMODULE_SERVICE","features":[428]},{"name":"MF_CONTENT_DECRYPTOR_SERVICE","features":[428]},{"name":"MF_CONTENT_PROTECTION_DEVICE_SERVICE","features":[428]},{"name":"MF_CROSS_ORIGIN_POLICY","features":[428]},{"name":"MF_CROSS_ORIGIN_POLICY_ANONYMOUS","features":[428]},{"name":"MF_CROSS_ORIGIN_POLICY_NONE","features":[428]},{"name":"MF_CROSS_ORIGIN_POLICY_USE_CREDENTIALS","features":[428]},{"name":"MF_CUSTOM_DECODE_UNIT_TYPE","features":[428]},{"name":"MF_D3D11_RESOURCE","features":[428]},{"name":"MF_D3D12_RESOURCE","features":[428]},{"name":"MF_D3D12_SYNCHRONIZATION_OBJECT","features":[428]},{"name":"MF_DECODER_FWD_CUSTOM_SEI_DECODE_ORDER","features":[428]},{"name":"MF_DECODE_UNIT_NAL","features":[428]},{"name":"MF_DECODE_UNIT_SEI","features":[428]},{"name":"MF_DEVICEMFT_CONNECTED_FILTER_KSCONTROL","features":[428]},{"name":"MF_DEVICEMFT_CONNECTED_PIN_KSCONTROL","features":[428]},{"name":"MF_DEVICEMFT_EXTENSION_PLUGIN_CLSID","features":[428]},{"name":"MF_DEVICEMFT_SENSORPROFILE_COLLECTION","features":[428]},{"name":"MF_DEVICESTREAM_ATTRIBUTE_FACEAUTH_CAPABILITY","features":[428]},{"name":"MF_DEVICESTREAM_ATTRIBUTE_FRAMESOURCE_TYPES","features":[428]},{"name":"MF_DEVICESTREAM_ATTRIBUTE_SECURE_CAPABILITY","features":[428]},{"name":"MF_DEVICESTREAM_EXTENSION_PLUGIN_CLSID","features":[428]},{"name":"MF_DEVICESTREAM_EXTENSION_PLUGIN_CONNECTION_POINT","features":[428]},{"name":"MF_DEVICESTREAM_FILTER_KSCONTROL","features":[428]},{"name":"MF_DEVICESTREAM_FRAMESERVER_HIDDEN","features":[428]},{"name":"MF_DEVICESTREAM_FRAMESERVER_SHARED","features":[428]},{"name":"MF_DEVICESTREAM_IMAGE_STREAM","features":[428]},{"name":"MF_DEVICESTREAM_INDEPENDENT_IMAGE_STREAM","features":[428]},{"name":"MF_DEVICESTREAM_MAX_FRAME_BUFFERS","features":[428]},{"name":"MF_DEVICESTREAM_MULTIPLEXED_MANAGER","features":[428]},{"name":"MF_DEVICESTREAM_PIN_KSCONTROL","features":[428]},{"name":"MF_DEVICESTREAM_REQUIRED_CAPABILITIES","features":[428]},{"name":"MF_DEVICESTREAM_REQUIRED_SDDL","features":[428]},{"name":"MF_DEVICESTREAM_SENSORSTREAM_ID","features":[428]},{"name":"MF_DEVICESTREAM_SOURCE_ATTRIBUTES","features":[428]},{"name":"MF_DEVICESTREAM_STREAM_CATEGORY","features":[428]},{"name":"MF_DEVICESTREAM_STREAM_ID","features":[428]},{"name":"MF_DEVICESTREAM_TAKEPHOTO_TRIGGER","features":[428]},{"name":"MF_DEVICESTREAM_TRANSFORM_STREAM_ID","features":[428]},{"name":"MF_DEVICE_THERMAL_STATE_CHANGED","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_ENABLE_MS_CAMERA_EFFECTS","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_FRIENDLY_NAME","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_MEDIA_TYPE","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_PASSWORD","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_STREAM_URL","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_ENDPOINT_ID","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_GUID","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_ROLE","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_AUDCAP_SYMBOLIC_LINK","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_CATEGORY","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_GUID","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_HW_SOURCE","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_MAX_BUFFERS","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_PROVIDER_DEVICE_ID","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_TYPE_VIDCAP_SYMBOLIC_LINK","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_USERNAME","features":[428]},{"name":"MF_DEVSOURCE_ATTRIBUTE_SOURCE_XADDRESS","features":[428]},{"name":"MF_DISABLE_FRAME_CORRUPTION_INFO","features":[428]},{"name":"MF_DISABLE_LOCALLY_REGISTERED_PLUGINS","features":[428]},{"name":"MF_DMFT_FRAME_BUFFER_INFO","features":[428]},{"name":"MF_DROP_MODE_1","features":[428]},{"name":"MF_DROP_MODE_2","features":[428]},{"name":"MF_DROP_MODE_3","features":[428]},{"name":"MF_DROP_MODE_4","features":[428]},{"name":"MF_DROP_MODE_5","features":[428]},{"name":"MF_DROP_MODE_NONE","features":[428]},{"name":"MF_ENABLE_3DVIDEO_OUTPUT","features":[428]},{"name":"MF_EVENT_DO_THINNING","features":[428]},{"name":"MF_EVENT_FLAG_NONE","features":[428]},{"name":"MF_EVENT_FLAG_NO_WAIT","features":[428]},{"name":"MF_EVENT_MFT_CONTEXT","features":[428]},{"name":"MF_EVENT_MFT_INPUT_STREAM_ID","features":[428]},{"name":"MF_EVENT_OUTPUT_NODE","features":[428]},{"name":"MF_EVENT_PRESENTATION_TIME_OFFSET","features":[428]},{"name":"MF_EVENT_SCRUBSAMPLE_TIME","features":[428]},{"name":"MF_EVENT_SESSIONCAPS","features":[428]},{"name":"MF_EVENT_SESSIONCAPS_DELTA","features":[428]},{"name":"MF_EVENT_SOURCE_ACTUAL_START","features":[428]},{"name":"MF_EVENT_SOURCE_CHARACTERISTICS","features":[428]},{"name":"MF_EVENT_SOURCE_CHARACTERISTICS_OLD","features":[428]},{"name":"MF_EVENT_SOURCE_FAKE_START","features":[428]},{"name":"MF_EVENT_SOURCE_PROJECTSTART","features":[428]},{"name":"MF_EVENT_SOURCE_TOPOLOGY_CANCELED","features":[428]},{"name":"MF_EVENT_START_PRESENTATION_TIME","features":[428]},{"name":"MF_EVENT_START_PRESENTATION_TIME_AT_OUTPUT","features":[428]},{"name":"MF_EVENT_STREAM_METADATA_CONTENT_KEYIDS","features":[428]},{"name":"MF_EVENT_STREAM_METADATA_KEYDATA","features":[428]},{"name":"MF_EVENT_STREAM_METADATA_SYSTEMID","features":[428]},{"name":"MF_EVENT_TOPOLOGY_STATUS","features":[428]},{"name":"MF_EVENT_TYPE","features":[428]},{"name":"MF_E_ALLOCATOR_ALREADY_COMMITED","features":[428]},{"name":"MF_E_ALLOCATOR_NOT_COMMITED","features":[428]},{"name":"MF_E_ALLOCATOR_NOT_INITIALIZED","features":[428]},{"name":"MF_E_ALL_PROCESS_RESTART_REQUIRED","features":[428]},{"name":"MF_E_ALREADY_INITIALIZED","features":[428]},{"name":"MF_E_ASF_DROPPED_PACKET","features":[428]},{"name":"MF_E_ASF_FILESINK_BITRATE_UNKNOWN","features":[428]},{"name":"MF_E_ASF_INDEXNOTLOADED","features":[428]},{"name":"MF_E_ASF_INVALIDDATA","features":[428]},{"name":"MF_E_ASF_MISSINGDATA","features":[428]},{"name":"MF_E_ASF_NOINDEX","features":[428]},{"name":"MF_E_ASF_OPAQUEPACKET","features":[428]},{"name":"MF_E_ASF_OUTOFRANGE","features":[428]},{"name":"MF_E_ASF_PARSINGINCOMPLETE","features":[428]},{"name":"MF_E_ASF_TOO_MANY_PAYLOADS","features":[428]},{"name":"MF_E_ASF_UNSUPPORTED_STREAM_TYPE","features":[428]},{"name":"MF_E_ATTRIBUTENOTFOUND","features":[428]},{"name":"MF_E_AUDIO_BUFFER_SIZE_ERROR","features":[428]},{"name":"MF_E_AUDIO_CLIENT_WRAPPER_SPOOF_ERROR","features":[428]},{"name":"MF_E_AUDIO_PLAYBACK_DEVICE_INVALIDATED","features":[428]},{"name":"MF_E_AUDIO_PLAYBACK_DEVICE_IN_USE","features":[428]},{"name":"MF_E_AUDIO_RECORDING_DEVICE_INVALIDATED","features":[428]},{"name":"MF_E_AUDIO_RECORDING_DEVICE_IN_USE","features":[428]},{"name":"MF_E_AUDIO_SERVICE_NOT_RUNNING","features":[428]},{"name":"MF_E_BACKUP_RESTRICTED_LICENSE","features":[428]},{"name":"MF_E_BAD_OPL_STRUCTURE_FORMAT","features":[428]},{"name":"MF_E_BAD_STARTUP_VERSION","features":[428]},{"name":"MF_E_BANDWIDTH_OVERRUN","features":[428]},{"name":"MF_E_BUFFERTOOSMALL","features":[428]},{"name":"MF_E_BYTESTREAM_NOT_SEEKABLE","features":[428]},{"name":"MF_E_BYTESTREAM_UNKNOWN_LENGTH","features":[428]},{"name":"MF_E_CANNOT_CREATE_SINK","features":[428]},{"name":"MF_E_CANNOT_FIND_KEYFRAME_SAMPLE","features":[428]},{"name":"MF_E_CANNOT_INDEX_IN_PLACE","features":[428]},{"name":"MF_E_CANNOT_PARSE_BYTESTREAM","features":[428]},{"name":"MF_E_CAPTURE_ENGINE_ALL_EFFECTS_REMOVED","features":[428]},{"name":"MF_E_CAPTURE_ENGINE_INVALID_OP","features":[428]},{"name":"MF_E_CAPTURE_NO_SAMPLES_IN_QUEUE","features":[428]},{"name":"MF_E_CAPTURE_PROPERTY_SET_DURING_PHOTO","features":[428]},{"name":"MF_E_CAPTURE_SINK_MIRROR_ERROR","features":[428]},{"name":"MF_E_CAPTURE_SINK_OUTPUT_NOT_SET","features":[428]},{"name":"MF_E_CAPTURE_SINK_ROTATE_ERROR","features":[428]},{"name":"MF_E_CAPTURE_SOURCE_DEVICE_EXTENDEDPROP_OP_IN_PROGRESS","features":[428]},{"name":"MF_E_CAPTURE_SOURCE_NO_AUDIO_STREAM_PRESENT","features":[428]},{"name":"MF_E_CAPTURE_SOURCE_NO_INDEPENDENT_PHOTO_STREAM_PRESENT","features":[428]},{"name":"MF_E_CAPTURE_SOURCE_NO_VIDEO_STREAM_PRESENT","features":[428]},{"name":"MF_E_CLOCK_AUDIO_DEVICE_POSITION_UNEXPECTED","features":[428]},{"name":"MF_E_CLOCK_AUDIO_RENDER_POSITION_UNEXPECTED","features":[428]},{"name":"MF_E_CLOCK_AUDIO_RENDER_TIME_UNEXPECTED","features":[428]},{"name":"MF_E_CLOCK_INVALID_CONTINUITY_KEY","features":[428]},{"name":"MF_E_CLOCK_NOT_SIMPLE","features":[428]},{"name":"MF_E_CLOCK_NO_TIME_SOURCE","features":[428]},{"name":"MF_E_CLOCK_STATE_ALREADY_SET","features":[428]},{"name":"MF_E_CODE_EXPIRED","features":[428]},{"name":"MF_E_COMPONENT_REVOKED","features":[428]},{"name":"MF_E_CONTENT_PROTECTION_SYSTEM_NOT_ENABLED","features":[428]},{"name":"MF_E_DEBUGGING_NOT_ALLOWED","features":[428]},{"name":"MF_E_DISABLED_IN_SAFEMODE","features":[428]},{"name":"MF_E_DRM_HARDWARE_INCONSISTENT","features":[428]},{"name":"MF_E_DRM_MIGRATION_NOT_SUPPORTED","features":[428]},{"name":"MF_E_DRM_UNSUPPORTED","features":[428]},{"name":"MF_E_DROPTIME_NOT_SUPPORTED","features":[428]},{"name":"MF_E_DURATION_TOO_LONG","features":[428]},{"name":"MF_E_DXGI_DEVICE_NOT_INITIALIZED","features":[428]},{"name":"MF_E_DXGI_NEW_VIDEO_DEVICE","features":[428]},{"name":"MF_E_DXGI_VIDEO_DEVICE_LOCKED","features":[428]},{"name":"MF_E_END_OF_STREAM","features":[428]},{"name":"MF_E_FLUSH_NEEDED","features":[428]},{"name":"MF_E_FORMAT_CHANGE_NOT_SUPPORTED","features":[428]},{"name":"MF_E_GRL_ABSENT","features":[428]},{"name":"MF_E_GRL_EXTENSIBLE_ENTRY_NOT_FOUND","features":[428]},{"name":"MF_E_GRL_INVALID_FORMAT","features":[428]},{"name":"MF_E_GRL_RENEWAL_NOT_FOUND","features":[428]},{"name":"MF_E_GRL_UNRECOGNIZED_FORMAT","features":[428]},{"name":"MF_E_GRL_VERSION_TOO_LOW","features":[428]},{"name":"MF_E_HARDWARE_DRM_UNSUPPORTED","features":[428]},{"name":"MF_E_HDCP_AUTHENTICATION_FAILURE","features":[428]},{"name":"MF_E_HDCP_LINK_FAILURE","features":[428]},{"name":"MF_E_HIGH_SECURITY_LEVEL_CONTENT_NOT_ALLOWED","features":[428]},{"name":"MF_E_HW_ACCELERATED_THUMBNAIL_NOT_SUPPORTED","features":[428]},{"name":"MF_E_HW_MFT_FAILED_START_STREAMING","features":[428]},{"name":"MF_E_HW_STREAM_NOT_CONNECTED","features":[428]},{"name":"MF_E_INCOMPATIBLE_SAMPLE_PROTECTION","features":[428]},{"name":"MF_E_INDEX_NOT_COMMITTED","features":[428]},{"name":"MF_E_INSUFFICIENT_BUFFER","features":[428]},{"name":"MF_E_INVALIDINDEX","features":[428]},{"name":"MF_E_INVALIDMEDIATYPE","features":[428]},{"name":"MF_E_INVALIDNAME","features":[428]},{"name":"MF_E_INVALIDREQUEST","features":[428]},{"name":"MF_E_INVALIDSTREAMNUMBER","features":[428]},{"name":"MF_E_INVALIDTYPE","features":[428]},{"name":"MF_E_INVALID_AKE_CHANNEL_PARAMETERS","features":[428]},{"name":"MF_E_INVALID_ASF_STREAMID","features":[428]},{"name":"MF_E_INVALID_CODEC_MERIT","features":[428]},{"name":"MF_E_INVALID_FILE_FORMAT","features":[428]},{"name":"MF_E_INVALID_FORMAT","features":[428]},{"name":"MF_E_INVALID_KEY","features":[428]},{"name":"MF_E_INVALID_POSITION","features":[428]},{"name":"MF_E_INVALID_PROFILE","features":[428]},{"name":"MF_E_INVALID_STATE_TRANSITION","features":[428]},{"name":"MF_E_INVALID_STREAM_DATA","features":[428]},{"name":"MF_E_INVALID_STREAM_STATE","features":[428]},{"name":"MF_E_INVALID_TIMESTAMP","features":[428]},{"name":"MF_E_INVALID_WORKQUEUE","features":[428]},{"name":"MF_E_ITA_ERROR_PARSING_SAP_PARAMETERS","features":[428]},{"name":"MF_E_ITA_OPL_DATA_NOT_INITIALIZED","features":[428]},{"name":"MF_E_ITA_UNRECOGNIZED_ANALOG_VIDEO_OUTPUT","features":[428]},{"name":"MF_E_ITA_UNRECOGNIZED_ANALOG_VIDEO_PROTECTION_GUID","features":[428]},{"name":"MF_E_ITA_UNRECOGNIZED_DIGITAL_VIDEO_OUTPUT","features":[428]},{"name":"MF_E_ITA_UNSUPPORTED_ACTION","features":[428]},{"name":"MF_E_KERNEL_UNTRUSTED","features":[428]},{"name":"MF_E_LATE_SAMPLE","features":[428]},{"name":"MF_E_LICENSE_INCORRECT_RIGHTS","features":[428]},{"name":"MF_E_LICENSE_OUTOFDATE","features":[428]},{"name":"MF_E_LICENSE_REQUIRED","features":[428]},{"name":"MF_E_LICENSE_RESTORE_NEEDS_INDIVIDUALIZATION","features":[428]},{"name":"MF_E_LICENSE_RESTORE_NO_RIGHTS","features":[428]},{"name":"MF_E_MEDIAPROC_WRONGSTATE","features":[428]},{"name":"MF_E_MEDIA_EXTENSION_APPSERVICE_CONNECTION_FAILED","features":[428]},{"name":"MF_E_MEDIA_EXTENSION_APPSERVICE_REQUEST_FAILED","features":[428]},{"name":"MF_E_MEDIA_EXTENSION_PACKAGE_INTEGRITY_CHECK_FAILED","features":[428]},{"name":"MF_E_MEDIA_EXTENSION_PACKAGE_LICENSE_INVALID","features":[428]},{"name":"MF_E_MEDIA_SOURCE_NOT_STARTED","features":[428]},{"name":"MF_E_MEDIA_SOURCE_NO_STREAMS_SELECTED","features":[428]},{"name":"MF_E_MEDIA_SOURCE_WRONGSTATE","features":[428]},{"name":"MF_E_METADATA_TOO_LONG","features":[428]},{"name":"MF_E_MISSING_ASF_LEAKYBUCKET","features":[428]},{"name":"MF_E_MP3_BAD_CRC","features":[428]},{"name":"MF_E_MP3_NOTFOUND","features":[428]},{"name":"MF_E_MP3_NOTMP3","features":[428]},{"name":"MF_E_MP3_NOTSUPPORTED","features":[428]},{"name":"MF_E_MP3_OUTOFDATA","features":[428]},{"name":"MF_E_MULTIPLE_BEGIN","features":[428]},{"name":"MF_E_MULTIPLE_SUBSCRIBERS","features":[428]},{"name":"MF_E_NETWORK_RESOURCE_FAILURE","features":[428]},{"name":"MF_E_NET_BAD_CONTROL_DATA","features":[428]},{"name":"MF_E_NET_BAD_REQUEST","features":[428]},{"name":"MF_E_NET_BUSY","features":[428]},{"name":"MF_E_NET_BWLEVEL_NOT_SUPPORTED","features":[428]},{"name":"MF_E_NET_CACHESTREAM_NOT_FOUND","features":[428]},{"name":"MF_E_NET_CACHE_NO_DATA","features":[428]},{"name":"MF_E_NET_CANNOTCONNECT","features":[428]},{"name":"MF_E_NET_CLIENT_CLOSE","features":[428]},{"name":"MF_E_NET_COMPANION_DRIVER_DISCONNECT","features":[428]},{"name":"MF_E_NET_CONNECTION_FAILURE","features":[428]},{"name":"MF_E_NET_EOL","features":[428]},{"name":"MF_E_NET_ERROR_FROM_PROXY","features":[428]},{"name":"MF_E_NET_INCOMPATIBLE_PUSHSERVER","features":[428]},{"name":"MF_E_NET_INCOMPATIBLE_SERVER","features":[428]},{"name":"MF_E_NET_INTERNAL_SERVER_ERROR","features":[428]},{"name":"MF_E_NET_INVALID_PRESENTATION_DESCRIPTOR","features":[428]},{"name":"MF_E_NET_INVALID_PUSH_PUBLISHING_POINT","features":[428]},{"name":"MF_E_NET_INVALID_PUSH_TEMPLATE","features":[428]},{"name":"MF_E_NET_MANUALSS_NOT_SUPPORTED","features":[428]},{"name":"MF_E_NET_NOCONNECTION","features":[428]},{"name":"MF_E_NET_PROTOCOL_DISABLED","features":[428]},{"name":"MF_E_NET_PROXY_ACCESSDENIED","features":[428]},{"name":"MF_E_NET_PROXY_TIMEOUT","features":[428]},{"name":"MF_E_NET_READ","features":[428]},{"name":"MF_E_NET_REDIRECT","features":[428]},{"name":"MF_E_NET_REDIRECT_TO_PROXY","features":[428]},{"name":"MF_E_NET_REQUIRE_ASYNC","features":[428]},{"name":"MF_E_NET_REQUIRE_INPUT","features":[428]},{"name":"MF_E_NET_REQUIRE_NETWORK","features":[428]},{"name":"MF_E_NET_RESOURCE_GONE","features":[428]},{"name":"MF_E_NET_SERVER_ACCESSDENIED","features":[428]},{"name":"MF_E_NET_SERVER_UNAVAILABLE","features":[428]},{"name":"MF_E_NET_SESSION_INVALID","features":[428]},{"name":"MF_E_NET_SESSION_NOT_FOUND","features":[428]},{"name":"MF_E_NET_STREAMGROUPS_NOT_SUPPORTED","features":[428]},{"name":"MF_E_NET_TIMEOUT","features":[428]},{"name":"MF_E_NET_TOO_MANY_REDIRECTS","features":[428]},{"name":"MF_E_NET_TOO_MUCH_DATA","features":[428]},{"name":"MF_E_NET_UDP_BLOCKED","features":[428]},{"name":"MF_E_NET_UNSAFE_URL","features":[428]},{"name":"MF_E_NET_UNSUPPORTED_CONFIGURATION","features":[428]},{"name":"MF_E_NET_WRITE","features":[428]},{"name":"MF_E_NEW_VIDEO_DEVICE","features":[428]},{"name":"MF_E_NON_PE_PROCESS","features":[428]},{"name":"MF_E_NOTACCEPTING","features":[428]},{"name":"MF_E_NOT_AVAILABLE","features":[428]},{"name":"MF_E_NOT_FOUND","features":[428]},{"name":"MF_E_NOT_INITIALIZED","features":[428]},{"name":"MF_E_NOT_PROTECTED","features":[428]},{"name":"MF_E_NO_AUDIO_PLAYBACK_DEVICE","features":[428]},{"name":"MF_E_NO_AUDIO_RECORDING_DEVICE","features":[428]},{"name":"MF_E_NO_BITPUMP","features":[428]},{"name":"MF_E_NO_CAPTURE_DEVICES_AVAILABLE","features":[428]},{"name":"MF_E_NO_CLOCK","features":[428]},{"name":"MF_E_NO_CONTENT_PROTECTION_MANAGER","features":[428]},{"name":"MF_E_NO_DURATION","features":[428]},{"name":"MF_E_NO_EVENTS_AVAILABLE","features":[428]},{"name":"MF_E_NO_INDEX","features":[428]},{"name":"MF_E_NO_MORE_DROP_MODES","features":[428]},{"name":"MF_E_NO_MORE_QUALITY_LEVELS","features":[428]},{"name":"MF_E_NO_MORE_TYPES","features":[428]},{"name":"MF_E_NO_PMP_HOST","features":[428]},{"name":"MF_E_NO_SAMPLE_DURATION","features":[428]},{"name":"MF_E_NO_SAMPLE_TIMESTAMP","features":[428]},{"name":"MF_E_NO_SOURCE_IN_CACHE","features":[428]},{"name":"MF_E_NO_VIDEO_SAMPLE_AVAILABLE","features":[428]},{"name":"MF_E_OFFLINE_MODE","features":[428]},{"name":"MF_E_OPERATION_CANCELLED","features":[428]},{"name":"MF_E_OPERATION_IN_PROGRESS","features":[428]},{"name":"MF_E_OPERATION_UNSUPPORTED_AT_D3D_FEATURE_LEVEL","features":[428]},{"name":"MF_E_OPL_NOT_SUPPORTED","features":[428]},{"name":"MF_E_OUT_OF_RANGE","features":[428]},{"name":"MF_E_PEAUTH_NOT_STARTED","features":[428]},{"name":"MF_E_PEAUTH_PUBLICKEY_REVOKED","features":[428]},{"name":"MF_E_PEAUTH_SESSION_NOT_STARTED","features":[428]},{"name":"MF_E_PEAUTH_UNTRUSTED","features":[428]},{"name":"MF_E_PE_SESSIONS_MAXED","features":[428]},{"name":"MF_E_PE_UNTRUSTED","features":[428]},{"name":"MF_E_PLATFORM_NOT_INITIALIZED","features":[428]},{"name":"MF_E_POLICY_MGR_ACTION_OUTOFBOUNDS","features":[428]},{"name":"MF_E_POLICY_UNSUPPORTED","features":[428]},{"name":"MF_E_PROCESS_RESTART_REQUIRED","features":[428]},{"name":"MF_E_PROPERTY_EMPTY","features":[428]},{"name":"MF_E_PROPERTY_NOT_ALLOWED","features":[428]},{"name":"MF_E_PROPERTY_NOT_EMPTY","features":[428]},{"name":"MF_E_PROPERTY_NOT_FOUND","features":[428]},{"name":"MF_E_PROPERTY_READ_ONLY","features":[428]},{"name":"MF_E_PROPERTY_TYPE_NOT_ALLOWED","features":[428]},{"name":"MF_E_PROPERTY_TYPE_NOT_SUPPORTED","features":[428]},{"name":"MF_E_PROPERTY_VECTOR_NOT_ALLOWED","features":[428]},{"name":"MF_E_PROPERTY_VECTOR_REQUIRED","features":[428]},{"name":"MF_E_QM_INVALIDSTATE","features":[428]},{"name":"MF_E_QUALITYKNOB_WAIT_LONGER","features":[428]},{"name":"MF_E_RATE_CHANGE_PREEMPTED","features":[428]},{"name":"MF_E_REBOOT_REQUIRED","features":[428]},{"name":"MF_E_RESOLUTION_REQUIRES_PMP_CREATION_CALLBACK","features":[428]},{"name":"MF_E_REVERSE_UNSUPPORTED","features":[428]},{"name":"MF_E_RT_OUTOFMEMORY","features":[428]},{"name":"MF_E_RT_THROUGHPUT_NOT_AVAILABLE","features":[428]},{"name":"MF_E_RT_TOO_MANY_CLASSES","features":[428]},{"name":"MF_E_RT_UNAVAILABLE","features":[428]},{"name":"MF_E_RT_WORKQUEUE_CLASS_NOT_SPECIFIED","features":[428]},{"name":"MF_E_RT_WOULDBLOCK","features":[428]},{"name":"MF_E_SAMPLEALLOCATOR_CANCELED","features":[428]},{"name":"MF_E_SAMPLEALLOCATOR_EMPTY","features":[428]},{"name":"MF_E_SAMPLE_HAS_TOO_MANY_BUFFERS","features":[428]},{"name":"MF_E_SAMPLE_NOT_WRITABLE","features":[428]},{"name":"MF_E_SEQUENCER_UNKNOWN_SEGMENT_ID","features":[428]},{"name":"MF_E_SESSION_PAUSEWHILESTOPPED","features":[428]},{"name":"MF_E_SHUTDOWN","features":[428]},{"name":"MF_E_SIGNATURE_VERIFICATION_FAILED","features":[428]},{"name":"MF_E_SINK_ALREADYSTOPPED","features":[428]},{"name":"MF_E_SINK_HEADERS_NOT_FOUND","features":[428]},{"name":"MF_E_SINK_NO_SAMPLES_PROCESSED","features":[428]},{"name":"MF_E_SINK_NO_STREAMS","features":[428]},{"name":"MF_E_SOURCERESOLVER_MUTUALLY_EXCLUSIVE_FLAGS","features":[428]},{"name":"MF_E_STATE_TRANSITION_PENDING","features":[428]},{"name":"MF_E_STREAMSINKS_FIXED","features":[428]},{"name":"MF_E_STREAMSINKS_OUT_OF_SYNC","features":[428]},{"name":"MF_E_STREAMSINK_EXISTS","features":[428]},{"name":"MF_E_STREAMSINK_REMOVED","features":[428]},{"name":"MF_E_STREAM_ERROR","features":[428]},{"name":"MF_E_TEST_SIGNED_COMPONENTS_NOT_ALLOWED","features":[428]},{"name":"MF_E_THINNING_UNSUPPORTED","features":[428]},{"name":"MF_E_TIMELINECONTROLLER_CANNOT_ATTACH","features":[428]},{"name":"MF_E_TIMELINECONTROLLER_NOT_ALLOWED","features":[428]},{"name":"MF_E_TIMELINECONTROLLER_UNSUPPORTED_SOURCE_TYPE","features":[428]},{"name":"MF_E_TIMER_ORPHANED","features":[428]},{"name":"MF_E_TOPOLOGY_VERIFICATION_FAILED","features":[428]},{"name":"MF_E_TOPO_CANNOT_CONNECT","features":[428]},{"name":"MF_E_TOPO_CANNOT_FIND_DECRYPTOR","features":[428]},{"name":"MF_E_TOPO_CODEC_NOT_FOUND","features":[428]},{"name":"MF_E_TOPO_INVALID_OPTIONAL_NODE","features":[428]},{"name":"MF_E_TOPO_INVALID_TIME_ATTRIBUTES","features":[428]},{"name":"MF_E_TOPO_LOOPS_IN_TOPOLOGY","features":[428]},{"name":"MF_E_TOPO_MISSING_PRESENTATION_DESCRIPTOR","features":[428]},{"name":"MF_E_TOPO_MISSING_SOURCE","features":[428]},{"name":"MF_E_TOPO_MISSING_STREAM_DESCRIPTOR","features":[428]},{"name":"MF_E_TOPO_SINK_ACTIVATES_UNSUPPORTED","features":[428]},{"name":"MF_E_TOPO_STREAM_DESCRIPTOR_NOT_SELECTED","features":[428]},{"name":"MF_E_TOPO_UNSUPPORTED","features":[428]},{"name":"MF_E_TRANSCODE_INVALID_PROFILE","features":[428]},{"name":"MF_E_TRANSCODE_NO_CONTAINERTYPE","features":[428]},{"name":"MF_E_TRANSCODE_NO_MATCHING_ENCODER","features":[428]},{"name":"MF_E_TRANSCODE_PROFILE_NO_MATCHING_STREAMS","features":[428]},{"name":"MF_E_TRANSFORM_ASYNC_LOCKED","features":[428]},{"name":"MF_E_TRANSFORM_ASYNC_MFT_NOT_SUPPORTED","features":[428]},{"name":"MF_E_TRANSFORM_CANNOT_CHANGE_MEDIATYPE_WHILE_PROCESSING","features":[428]},{"name":"MF_E_TRANSFORM_CANNOT_INITIALIZE_ACM_DRIVER","features":[428]},{"name":"MF_E_TRANSFORM_CONFLICTS_WITH_OTHER_CURRENTLY_ENABLED_FEATURES","features":[428]},{"name":"MF_E_TRANSFORM_EXATTRIBUTE_NOT_SUPPORTED","features":[428]},{"name":"MF_E_TRANSFORM_INPUT_REMAINING","features":[428]},{"name":"MF_E_TRANSFORM_NEED_MORE_INPUT","features":[428]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_INPUT_MEDIATYPE","features":[428]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_MEDIATYPE_COMBINATION","features":[428]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_OUTPUT_MEDIATYPE","features":[428]},{"name":"MF_E_TRANSFORM_NOT_POSSIBLE_FOR_CURRENT_SPKR_CONFIG","features":[428]},{"name":"MF_E_TRANSFORM_PROFILE_INVALID_OR_CORRUPT","features":[428]},{"name":"MF_E_TRANSFORM_PROFILE_MISSING","features":[428]},{"name":"MF_E_TRANSFORM_PROFILE_TRUNCATED","features":[428]},{"name":"MF_E_TRANSFORM_PROPERTY_ARRAY_VALUE_WRONG_NUM_DIM","features":[428]},{"name":"MF_E_TRANSFORM_PROPERTY_NOT_WRITEABLE","features":[428]},{"name":"MF_E_TRANSFORM_PROPERTY_PID_NOT_RECOGNIZED","features":[428]},{"name":"MF_E_TRANSFORM_PROPERTY_VALUE_INCOMPATIBLE","features":[428]},{"name":"MF_E_TRANSFORM_PROPERTY_VALUE_OUT_OF_RANGE","features":[428]},{"name":"MF_E_TRANSFORM_PROPERTY_VALUE_SIZE_WRONG","features":[428]},{"name":"MF_E_TRANSFORM_PROPERTY_VARIANT_TYPE_WRONG","features":[428]},{"name":"MF_E_TRANSFORM_STREAM_CHANGE","features":[428]},{"name":"MF_E_TRANSFORM_STREAM_INVALID_RESOLUTION","features":[428]},{"name":"MF_E_TRANSFORM_TYPE_NOT_SET","features":[428]},{"name":"MF_E_TRUST_DISABLED","features":[428]},{"name":"MF_E_UNAUTHORIZED","features":[428]},{"name":"MF_E_UNEXPECTED","features":[428]},{"name":"MF_E_UNRECOVERABLE_ERROR_OCCURRED","features":[428]},{"name":"MF_E_UNSUPPORTED_BYTESTREAM_TYPE","features":[428]},{"name":"MF_E_UNSUPPORTED_CAPTION","features":[428]},{"name":"MF_E_UNSUPPORTED_CAPTURE_DEVICE_PRESENT","features":[428]},{"name":"MF_E_UNSUPPORTED_CHARACTERISTICS","features":[428]},{"name":"MF_E_UNSUPPORTED_CONTENT_PROTECTION_SYSTEM","features":[428]},{"name":"MF_E_UNSUPPORTED_D3D_TYPE","features":[428]},{"name":"MF_E_UNSUPPORTED_FORMAT","features":[428]},{"name":"MF_E_UNSUPPORTED_MEDIATYPE_AT_D3D_FEATURE_LEVEL","features":[428]},{"name":"MF_E_UNSUPPORTED_RATE","features":[428]},{"name":"MF_E_UNSUPPORTED_RATE_TRANSITION","features":[428]},{"name":"MF_E_UNSUPPORTED_REPRESENTATION","features":[428]},{"name":"MF_E_UNSUPPORTED_SCHEME","features":[428]},{"name":"MF_E_UNSUPPORTED_SERVICE","features":[428]},{"name":"MF_E_UNSUPPORTED_STATE_TRANSITION","features":[428]},{"name":"MF_E_UNSUPPORTED_TIME_FORMAT","features":[428]},{"name":"MF_E_USERMODE_UNTRUSTED","features":[428]},{"name":"MF_E_VIDEO_DEVICE_LOCKED","features":[428]},{"name":"MF_E_VIDEO_RECORDING_DEVICE_INVALIDATED","features":[428]},{"name":"MF_E_VIDEO_RECORDING_DEVICE_PREEMPTED","features":[428]},{"name":"MF_E_VIDEO_REN_COPYPROT_FAILED","features":[428]},{"name":"MF_E_VIDEO_REN_NO_DEINTERLACE_HW","features":[428]},{"name":"MF_E_VIDEO_REN_NO_PROCAMP_HW","features":[428]},{"name":"MF_E_VIDEO_REN_SURFACE_NOT_SHARED","features":[428]},{"name":"MF_E_WMDRMOTA_ACTION_ALREADY_SET","features":[428]},{"name":"MF_E_WMDRMOTA_ACTION_MISMATCH","features":[428]},{"name":"MF_E_WMDRMOTA_DRM_ENCRYPTION_SCHEME_NOT_SUPPORTED","features":[428]},{"name":"MF_E_WMDRMOTA_DRM_HEADER_NOT_AVAILABLE","features":[428]},{"name":"MF_E_WMDRMOTA_INVALID_POLICY","features":[428]},{"name":"MF_E_WMDRMOTA_NO_ACTION","features":[428]},{"name":"MF_FILEFLAGS_ALLOW_WRITE_SHARING","features":[428]},{"name":"MF_FILEFLAGS_NOBUFFERING","features":[428]},{"name":"MF_FILEFLAGS_NONE","features":[428]},{"name":"MF_FILE_ACCESSMODE","features":[428]},{"name":"MF_FILE_FLAGS","features":[428]},{"name":"MF_FILE_OPENMODE","features":[428]},{"name":"MF_FLOAT2","features":[428]},{"name":"MF_FLOAT3","features":[428]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_CUSTOM_EVENT","features":[428]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_PIPELINE_SHUTDOWN","features":[428]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_INITIALIZE","features":[428]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_START","features":[428]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_STOP","features":[428]},{"name":"MF_FRAMESERVER_VCAMEVENT_EXTENDED_SOURCE_UNINITIALIZE","features":[428]},{"name":"MF_GRL_ABSENT","features":[428]},{"name":"MF_GRL_LOAD_FAILED","features":[428]},{"name":"MF_HDCP_STATUS","features":[428]},{"name":"MF_HDCP_STATUS_OFF","features":[428]},{"name":"MF_HDCP_STATUS_ON","features":[428]},{"name":"MF_HDCP_STATUS_ON_WITH_TYPE_ENFORCEMENT","features":[428]},{"name":"MF_HISTOGRAM_CHANNEL_B","features":[428]},{"name":"MF_HISTOGRAM_CHANNEL_Cb","features":[428]},{"name":"MF_HISTOGRAM_CHANNEL_Cr","features":[428]},{"name":"MF_HISTOGRAM_CHANNEL_G","features":[428]},{"name":"MF_HISTOGRAM_CHANNEL_R","features":[428]},{"name":"MF_HISTOGRAM_CHANNEL_Y","features":[428]},{"name":"MF_INDEPENDENT_STILL_IMAGE","features":[428]},{"name":"MF_INDEX_SIZE_ERR","features":[428]},{"name":"MF_INVALID_ACCESS_ERR","features":[428]},{"name":"MF_INVALID_GRL_SIGNATURE","features":[428]},{"name":"MF_INVALID_PRESENTATION_TIME","features":[428]},{"name":"MF_INVALID_STATE_ERR","features":[428]},{"name":"MF_I_MANUAL_PROXY","features":[428]},{"name":"MF_KERNEL_MODE_COMPONENT_LOAD","features":[428]},{"name":"MF_LEAKY_BUCKET_PAIR","features":[428]},{"name":"MF_LICENSE_URL_TAMPERED","features":[428]},{"name":"MF_LICENSE_URL_TRUSTED","features":[428]},{"name":"MF_LICENSE_URL_UNTRUSTED","features":[428]},{"name":"MF_LOCAL_MFT_REGISTRATION_SERVICE","features":[428]},{"name":"MF_LOCAL_PLUGIN_CONTROL_POLICY","features":[428]},{"name":"MF_LOW_LATENCY","features":[428]},{"name":"MF_LUMA_KEY_ENABLE","features":[428]},{"name":"MF_LUMA_KEY_LOWER","features":[428]},{"name":"MF_LUMA_KEY_UPPER","features":[428]},{"name":"MF_MEDIAENGINE_KEYERR_CLIENT","features":[428]},{"name":"MF_MEDIAENGINE_KEYERR_DOMAIN","features":[428]},{"name":"MF_MEDIAENGINE_KEYERR_HARDWARECHANGE","features":[428]},{"name":"MF_MEDIAENGINE_KEYERR_OUTPUT","features":[428]},{"name":"MF_MEDIAENGINE_KEYERR_SERVICE","features":[428]},{"name":"MF_MEDIAENGINE_KEYERR_UNKNOWN","features":[428]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE","features":[428]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_INDIVIDUALIZATION_REQUEST","features":[428]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_LICENSE_RELEASE","features":[428]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_LICENSE_RENEWAL","features":[428]},{"name":"MF_MEDIAKEYSESSION_MESSAGETYPE_LICENSE_REQUEST","features":[428]},{"name":"MF_MEDIAKEYSESSION_TYPE","features":[428]},{"name":"MF_MEDIAKEYSESSION_TYPE_PERSISTENT_LICENSE","features":[428]},{"name":"MF_MEDIAKEYSESSION_TYPE_PERSISTENT_RELEASE_MESSAGE","features":[428]},{"name":"MF_MEDIAKEYSESSION_TYPE_PERSISTENT_USAGE_RECORD","features":[428]},{"name":"MF_MEDIAKEYSESSION_TYPE_TEMPORARY","features":[428]},{"name":"MF_MEDIAKEYS_REQUIREMENT","features":[428]},{"name":"MF_MEDIAKEYS_REQUIREMENT_NOT_ALLOWED","features":[428]},{"name":"MF_MEDIAKEYS_REQUIREMENT_OPTIONAL","features":[428]},{"name":"MF_MEDIAKEYS_REQUIREMENT_REQUIRED","features":[428]},{"name":"MF_MEDIAKEY_STATUS","features":[428]},{"name":"MF_MEDIAKEY_STATUS_EXPIRED","features":[428]},{"name":"MF_MEDIAKEY_STATUS_INTERNAL_ERROR","features":[428]},{"name":"MF_MEDIAKEY_STATUS_OUTPUT_DOWNSCALED","features":[428]},{"name":"MF_MEDIAKEY_STATUS_OUTPUT_NOT_ALLOWED","features":[428]},{"name":"MF_MEDIAKEY_STATUS_OUTPUT_RESTRICTED","features":[428]},{"name":"MF_MEDIAKEY_STATUS_RELEASED","features":[428]},{"name":"MF_MEDIAKEY_STATUS_STATUS_PENDING","features":[428]},{"name":"MF_MEDIAKEY_STATUS_USABLE","features":[428]},{"name":"MF_MEDIASINK_AUTOFINALIZE_SUPPORTED","features":[428]},{"name":"MF_MEDIASINK_ENABLE_AUTOFINALIZE","features":[428]},{"name":"MF_MEDIASOURCE_EXPOSE_ALL_STREAMS","features":[428]},{"name":"MF_MEDIASOURCE_SERVICE","features":[428]},{"name":"MF_MEDIATYPE_EQUAL_FORMAT_DATA","features":[428]},{"name":"MF_MEDIATYPE_EQUAL_FORMAT_TYPES","features":[428]},{"name":"MF_MEDIATYPE_EQUAL_FORMAT_USER_DATA","features":[428]},{"name":"MF_MEDIATYPE_EQUAL_MAJOR_TYPES","features":[428]},{"name":"MF_MEDIATYPE_MULTIPLEXED_MANAGER","features":[428]},{"name":"MF_MEDIA_ENGINE_AUDIOONLY","features":[428]},{"name":"MF_MEDIA_ENGINE_AUDIO_CATEGORY","features":[428]},{"name":"MF_MEDIA_ENGINE_AUDIO_ENDPOINT_ROLE","features":[428]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE","features":[428]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE10","features":[428]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE11","features":[428]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE9","features":[428]},{"name":"MF_MEDIA_ENGINE_BROWSER_COMPATIBILITY_MODE_IE_EDGE","features":[428]},{"name":"MF_MEDIA_ENGINE_CALLBACK","features":[428]},{"name":"MF_MEDIA_ENGINE_CANPLAY","features":[428]},{"name":"MF_MEDIA_ENGINE_CANPLAY_MAYBE","features":[428]},{"name":"MF_MEDIA_ENGINE_CANPLAY_NOT_SUPPORTED","features":[428]},{"name":"MF_MEDIA_ENGINE_CANPLAY_PROBABLY","features":[428]},{"name":"MF_MEDIA_ENGINE_COMPATIBILITY_MODE","features":[428]},{"name":"MF_MEDIA_ENGINE_COMPATIBILITY_MODE_WIN10","features":[428]},{"name":"MF_MEDIA_ENGINE_COMPATIBILITY_MODE_WWA_EDGE","features":[428]},{"name":"MF_MEDIA_ENGINE_CONTENT_PROTECTION_FLAGS","features":[428]},{"name":"MF_MEDIA_ENGINE_CONTENT_PROTECTION_MANAGER","features":[428]},{"name":"MF_MEDIA_ENGINE_CONTINUE_ON_CODEC_ERROR","features":[428]},{"name":"MF_MEDIA_ENGINE_COREWINDOW","features":[428]},{"name":"MF_MEDIA_ENGINE_CREATEFLAGS","features":[428]},{"name":"MF_MEDIA_ENGINE_CREATEFLAGS_MASK","features":[428]},{"name":"MF_MEDIA_ENGINE_DISABLE_LOCAL_PLUGINS","features":[428]},{"name":"MF_MEDIA_ENGINE_DXGI_MANAGER","features":[428]},{"name":"MF_MEDIA_ENGINE_EME_CALLBACK","features":[428]},{"name":"MF_MEDIA_ENGINE_ENABLE_PROTECTED_CONTENT","features":[428]},{"name":"MF_MEDIA_ENGINE_ERR","features":[428]},{"name":"MF_MEDIA_ENGINE_ERR_ABORTED","features":[428]},{"name":"MF_MEDIA_ENGINE_ERR_DECODE","features":[428]},{"name":"MF_MEDIA_ENGINE_ERR_ENCRYPTED","features":[428]},{"name":"MF_MEDIA_ENGINE_ERR_NETWORK","features":[428]},{"name":"MF_MEDIA_ENGINE_ERR_NOERROR","features":[428]},{"name":"MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_ABORT","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_AUDIOENDPOINTCHANGE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_BALANCECHANGE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_BUFFERINGENDED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_BUFFERINGSTARTED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_CANPLAY","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_CANPLAYTHROUGH","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_DELAYLOADEVENT_CHANGED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_DOWNLOADCOMPLETE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_DURATIONCHANGE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_EMPTIED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_ENDED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_ERROR","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_FIRSTFRAMEREADY","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_FORMATCHANGE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_FRAMESTEPCOMPLETED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_LOADEDDATA","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_LOADEDMETADATA","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_LOADSTART","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_NOTIFYSTABLESTATE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_OPMINFO","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_PAUSE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_PLAY","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_PLAYING","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_PROGRESS","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_PURGEQUEUEDEVENTS","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_RATECHANGE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_RESOURCELOST","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_SEEKED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_SEEKING","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_STALLED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_STREAMRENDERINGERROR","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_SUPPORTEDRATES_CHANGED","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_SUSPEND","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_TIMELINE_MARKER","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_TIMEUPDATE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_TRACKSCHANGE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_VOLUMECHANGE","features":[428]},{"name":"MF_MEDIA_ENGINE_EVENT_WAITING","features":[428]},{"name":"MF_MEDIA_ENGINE_EXTENSION","features":[428]},{"name":"MF_MEDIA_ENGINE_EXTENSION_TYPE","features":[428]},{"name":"MF_MEDIA_ENGINE_EXTENSION_TYPE_BYTESTREAM","features":[428]},{"name":"MF_MEDIA_ENGINE_EXTENSION_TYPE_MEDIASOURCE","features":[428]},{"name":"MF_MEDIA_ENGINE_FORCEMUTE","features":[428]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAGS","features":[428]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAG_PROTECTED","features":[428]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAG_REQUIRES_ANTI_SCREEN_SCRAPE_PROTECTION","features":[428]},{"name":"MF_MEDIA_ENGINE_FRAME_PROTECTION_FLAG_REQUIRES_SURFACE_PROTECTION","features":[428]},{"name":"MF_MEDIA_ENGINE_KEYERR","features":[428]},{"name":"MF_MEDIA_ENGINE_MEDIA_PLAYER_MODE","features":[428]},{"name":"MF_MEDIA_ENGINE_NEEDKEY_CALLBACK","features":[428]},{"name":"MF_MEDIA_ENGINE_NETWORK","features":[428]},{"name":"MF_MEDIA_ENGINE_NETWORK_EMPTY","features":[428]},{"name":"MF_MEDIA_ENGINE_NETWORK_IDLE","features":[428]},{"name":"MF_MEDIA_ENGINE_NETWORK_LOADING","features":[428]},{"name":"MF_MEDIA_ENGINE_NETWORK_NO_SOURCE","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_ESTABLISHED","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED_BDA","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED_UNSIGNED_DRIVER","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_FAILED_VM","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_HWND","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_NOT_REQUESTED","features":[428]},{"name":"MF_MEDIA_ENGINE_OPM_STATUS","features":[428]},{"name":"MF_MEDIA_ENGINE_PLAYBACK_HWND","features":[428]},{"name":"MF_MEDIA_ENGINE_PLAYBACK_VISUAL","features":[428]},{"name":"MF_MEDIA_ENGINE_PRELOAD","features":[428]},{"name":"MF_MEDIA_ENGINE_PRELOAD_AUTOMATIC","features":[428]},{"name":"MF_MEDIA_ENGINE_PRELOAD_EMPTY","features":[428]},{"name":"MF_MEDIA_ENGINE_PRELOAD_METADATA","features":[428]},{"name":"MF_MEDIA_ENGINE_PRELOAD_MISSING","features":[428]},{"name":"MF_MEDIA_ENGINE_PRELOAD_NONE","features":[428]},{"name":"MF_MEDIA_ENGINE_PROTECTION_FLAGS","features":[428]},{"name":"MF_MEDIA_ENGINE_READY","features":[428]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_CURRENT_DATA","features":[428]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_ENOUGH_DATA","features":[428]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_FUTURE_DATA","features":[428]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_METADATA","features":[428]},{"name":"MF_MEDIA_ENGINE_READY_HAVE_NOTHING","features":[428]},{"name":"MF_MEDIA_ENGINE_REAL_TIME_MODE","features":[428]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE","features":[428]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE_NONE","features":[428]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE_SIDE_BY_SIDE","features":[428]},{"name":"MF_MEDIA_ENGINE_S3D_PACKING_MODE_TOP_BOTTOM","features":[428]},{"name":"MF_MEDIA_ENGINE_SEEK_MODE","features":[428]},{"name":"MF_MEDIA_ENGINE_SEEK_MODE_APPROXIMATE","features":[428]},{"name":"MF_MEDIA_ENGINE_SEEK_MODE_NORMAL","features":[428]},{"name":"MF_MEDIA_ENGINE_SOURCE_RESOLVER_CONFIG_STORE","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_BUFFER_PROGRESS","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_BYTES_DOWNLOADED","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_CORRUPTED","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_DROPPED","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_PER_SECOND","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_FRAMES_RENDERED","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_PLAYBACK_JITTER","features":[428]},{"name":"MF_MEDIA_ENGINE_STATISTIC_TOTAL_FRAME_DELAY","features":[428]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED","features":[428]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED_AUDIO","features":[428]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED_UNKNOWN","features":[428]},{"name":"MF_MEDIA_ENGINE_STREAMTYPE_FAILED_VIDEO","features":[428]},{"name":"MF_MEDIA_ENGINE_STREAM_CONTAINS_ALPHA_CHANNEL","features":[428]},{"name":"MF_MEDIA_ENGINE_SYNCHRONOUS_CLOSE","features":[428]},{"name":"MF_MEDIA_ENGINE_TELEMETRY_APPLICATION_ID","features":[428]},{"name":"MF_MEDIA_ENGINE_TIMEDTEXT","features":[428]},{"name":"MF_MEDIA_ENGINE_TRACK_ID","features":[428]},{"name":"MF_MEDIA_ENGINE_USE_PMP_FOR_ALL_CONTENT","features":[428]},{"name":"MF_MEDIA_ENGINE_USE_UNPROTECTED_PMP","features":[428]},{"name":"MF_MEDIA_ENGINE_VIDEO_OUTPUT_FORMAT","features":[428]},{"name":"MF_MEDIA_ENGINE_WAITFORSTABLE_STATE","features":[428]},{"name":"MF_MEDIA_PROTECTION_MANAGER_PROPERTIES","features":[428]},{"name":"MF_MEDIA_SHARING_ENGINE_DEVICE","features":[428]},{"name":"MF_MEDIA_SHARING_ENGINE_DEVICE_NAME","features":[428]},{"name":"MF_MEDIA_SHARING_ENGINE_EVENT","features":[428]},{"name":"MF_MEDIA_SHARING_ENGINE_EVENT_DISCONNECT","features":[428]},{"name":"MF_MEDIA_SHARING_ENGINE_INITIAL_SEEK_TIME","features":[428]},{"name":"MF_METADATAFACIALEXPRESSION_SMILE","features":[428]},{"name":"MF_METADATATIMESTAMPS_DEVICE","features":[428]},{"name":"MF_METADATATIMESTAMPS_PRESENTATION","features":[428]},{"name":"MF_METADATA_PROVIDER_SERVICE","features":[428]},{"name":"MF_MINCRYPT_FAILURE","features":[428]},{"name":"MF_MP2DLNA_AUDIO_BIT_RATE","features":[428]},{"name":"MF_MP2DLNA_ENCODE_QUALITY","features":[428]},{"name":"MF_MP2DLNA_STATISTICS","features":[428]},{"name":"MF_MP2DLNA_USE_MMCSS","features":[428]},{"name":"MF_MP2DLNA_VIDEO_BIT_RATE","features":[428]},{"name":"MF_MPEG4SINK_MAX_CODED_SEQUENCES_PER_FRAGMENT","features":[428]},{"name":"MF_MPEG4SINK_MINIMUM_PROPERTIES_SIZE","features":[428]},{"name":"MF_MPEG4SINK_MIN_FRAGMENT_DURATION","features":[428]},{"name":"MF_MPEG4SINK_MOOV_BEFORE_MDAT","features":[428]},{"name":"MF_MPEG4SINK_SPSPPS_PASSTHROUGH","features":[428]},{"name":"MF_MSE_ACTIVELIST_CALLBACK","features":[428]},{"name":"MF_MSE_APPEND_MODE","features":[428]},{"name":"MF_MSE_APPEND_MODE_SEGMENTS","features":[428]},{"name":"MF_MSE_APPEND_MODE_SEQUENCE","features":[428]},{"name":"MF_MSE_BUFFERLIST_CALLBACK","features":[428]},{"name":"MF_MSE_CALLBACK","features":[428]},{"name":"MF_MSE_ERROR","features":[428]},{"name":"MF_MSE_ERROR_DECODE","features":[428]},{"name":"MF_MSE_ERROR_NETWORK","features":[428]},{"name":"MF_MSE_ERROR_NOERROR","features":[428]},{"name":"MF_MSE_ERROR_UNKNOWN_ERROR","features":[428]},{"name":"MF_MSE_OPUS_SUPPORT","features":[428]},{"name":"MF_MSE_OPUS_SUPPORT_OFF","features":[428]},{"name":"MF_MSE_OPUS_SUPPORT_ON","features":[428]},{"name":"MF_MSE_OPUS_SUPPORT_TYPE","features":[428]},{"name":"MF_MSE_READY","features":[428]},{"name":"MF_MSE_READY_CLOSED","features":[428]},{"name":"MF_MSE_READY_ENDED","features":[428]},{"name":"MF_MSE_READY_OPEN","features":[428]},{"name":"MF_MSE_VP9_SUPPORT","features":[428]},{"name":"MF_MSE_VP9_SUPPORT_DEFAULT","features":[428]},{"name":"MF_MSE_VP9_SUPPORT_OFF","features":[428]},{"name":"MF_MSE_VP9_SUPPORT_ON","features":[428]},{"name":"MF_MSE_VP9_SUPPORT_TYPE","features":[428]},{"name":"MF_MT_AAC_AUDIO_PROFILE_LEVEL_INDICATION","features":[428]},{"name":"MF_MT_AAC_PAYLOAD_TYPE","features":[428]},{"name":"MF_MT_ALL_SAMPLES_INDEPENDENT","features":[428]},{"name":"MF_MT_ALPHA_MODE","features":[428]},{"name":"MF_MT_AM_FORMAT_TYPE","features":[428]},{"name":"MF_MT_ARBITRARY_FORMAT","features":[428]},{"name":"MF_MT_ARBITRARY_HEADER","features":[428]},{"name":"MF_MT_AUDIO_AVG_BYTES_PER_SECOND","features":[428]},{"name":"MF_MT_AUDIO_BITS_PER_SAMPLE","features":[428]},{"name":"MF_MT_AUDIO_BLOCK_ALIGNMENT","features":[428]},{"name":"MF_MT_AUDIO_CHANNEL_MASK","features":[428]},{"name":"MF_MT_AUDIO_FLAC_MAX_BLOCK_SIZE","features":[428]},{"name":"MF_MT_AUDIO_FLOAT_SAMPLES_PER_SECOND","features":[428]},{"name":"MF_MT_AUDIO_FOLDDOWN_MATRIX","features":[428]},{"name":"MF_MT_AUDIO_NUM_CHANNELS","features":[428]},{"name":"MF_MT_AUDIO_PREFER_WAVEFORMATEX","features":[428]},{"name":"MF_MT_AUDIO_SAMPLES_PER_BLOCK","features":[428]},{"name":"MF_MT_AUDIO_SAMPLES_PER_SECOND","features":[428]},{"name":"MF_MT_AUDIO_VALID_BITS_PER_SAMPLE","features":[428]},{"name":"MF_MT_AUDIO_WMADRC_AVGREF","features":[428]},{"name":"MF_MT_AUDIO_WMADRC_AVGTARGET","features":[428]},{"name":"MF_MT_AUDIO_WMADRC_PEAKREF","features":[428]},{"name":"MF_MT_AUDIO_WMADRC_PEAKTARGET","features":[428]},{"name":"MF_MT_AVG_BITRATE","features":[428]},{"name":"MF_MT_AVG_BIT_ERROR_RATE","features":[428]},{"name":"MF_MT_COMPRESSED","features":[428]},{"name":"MF_MT_CONTAINER_RATE_SCALING","features":[428]},{"name":"MF_MT_CUSTOM_VIDEO_PRIMARIES","features":[428]},{"name":"MF_MT_D3D12_CPU_READBACK","features":[428]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_CROSS_ADAPTER","features":[428]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL","features":[428]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET","features":[428]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_SIMULTANEOUS_ACCESS","features":[428]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_ALLOW_UNORDERED_ACCESS","features":[428]},{"name":"MF_MT_D3D12_RESOURCE_FLAG_DENY_SHADER_RESOURCE","features":[428]},{"name":"MF_MT_D3D12_TEXTURE_LAYOUT","features":[428]},{"name":"MF_MT_D3D_RESOURCE_VERSION","features":[428]},{"name":"MF_MT_D3D_RESOURCE_VERSION_ENUM","features":[428]},{"name":"MF_MT_DECODER_MAX_DPB_COUNT","features":[428]},{"name":"MF_MT_DECODER_USE_MAX_RESOLUTION","features":[428]},{"name":"MF_MT_DEFAULT_STRIDE","features":[428]},{"name":"MF_MT_DEPTH_MEASUREMENT","features":[428]},{"name":"MF_MT_DEPTH_VALUE_UNIT","features":[428]},{"name":"MF_MT_DRM_FLAGS","features":[428]},{"name":"MF_MT_DV_AAUX_CTRL_PACK_0","features":[428]},{"name":"MF_MT_DV_AAUX_CTRL_PACK_1","features":[428]},{"name":"MF_MT_DV_AAUX_SRC_PACK_0","features":[428]},{"name":"MF_MT_DV_AAUX_SRC_PACK_1","features":[428]},{"name":"MF_MT_DV_VAUX_CTRL_PACK","features":[428]},{"name":"MF_MT_DV_VAUX_SRC_PACK","features":[428]},{"name":"MF_MT_FIXED_SIZE_SAMPLES","features":[428]},{"name":"MF_MT_FORWARD_CUSTOM_NALU","features":[428]},{"name":"MF_MT_FORWARD_CUSTOM_SEI","features":[428]},{"name":"MF_MT_FRAME_RATE","features":[428]},{"name":"MF_MT_FRAME_RATE_RANGE_MAX","features":[428]},{"name":"MF_MT_FRAME_RATE_RANGE_MIN","features":[428]},{"name":"MF_MT_FRAME_SIZE","features":[428]},{"name":"MF_MT_GEOMETRIC_APERTURE","features":[428]},{"name":"MF_MT_H264_CAPABILITIES","features":[428]},{"name":"MF_MT_H264_LAYOUT_PER_STREAM","features":[428]},{"name":"MF_MT_H264_MAX_CODEC_CONFIG_DELAY","features":[428]},{"name":"MF_MT_H264_MAX_MB_PER_SEC","features":[428]},{"name":"MF_MT_H264_RATE_CONTROL_MODES","features":[428]},{"name":"MF_MT_H264_RESOLUTION_SCALING","features":[428]},{"name":"MF_MT_H264_SIMULCAST_SUPPORT","features":[428]},{"name":"MF_MT_H264_SUPPORTED_RATE_CONTROL_MODES","features":[428]},{"name":"MF_MT_H264_SUPPORTED_SLICE_MODES","features":[428]},{"name":"MF_MT_H264_SUPPORTED_SYNC_FRAME_TYPES","features":[428]},{"name":"MF_MT_H264_SUPPORTED_USAGES","features":[428]},{"name":"MF_MT_H264_SVC_CAPABILITIES","features":[428]},{"name":"MF_MT_H264_USAGE","features":[428]},{"name":"MF_MT_IMAGE_LOSS_TOLERANT","features":[428]},{"name":"MF_MT_INTERLACE_MODE","features":[428]},{"name":"MF_MT_IN_BAND_PARAMETER_SET","features":[428]},{"name":"MF_MT_MAJOR_TYPE","features":[428]},{"name":"MF_MT_MAX_FRAME_AVERAGE_LUMINANCE_LEVEL","features":[428]},{"name":"MF_MT_MAX_KEYFRAME_SPACING","features":[428]},{"name":"MF_MT_MAX_LUMINANCE_LEVEL","features":[428]},{"name":"MF_MT_MAX_MASTERING_LUMINANCE","features":[428]},{"name":"MF_MT_MINIMUM_DISPLAY_APERTURE","features":[428]},{"name":"MF_MT_MIN_MASTERING_LUMINANCE","features":[428]},{"name":"MF_MT_MPEG2_CONTENT_PACKET","features":[428]},{"name":"MF_MT_MPEG2_FLAGS","features":[428]},{"name":"MF_MT_MPEG2_HDCP","features":[428]},{"name":"MF_MT_MPEG2_LEVEL","features":[428]},{"name":"MF_MT_MPEG2_ONE_FRAME_PER_PACKET","features":[428]},{"name":"MF_MT_MPEG2_PROFILE","features":[428]},{"name":"MF_MT_MPEG2_STANDARD","features":[428]},{"name":"MF_MT_MPEG2_TIMECODE","features":[428]},{"name":"MF_MT_MPEG4_CURRENT_SAMPLE_ENTRY","features":[428]},{"name":"MF_MT_MPEG4_SAMPLE_DESCRIPTION","features":[428]},{"name":"MF_MT_MPEG4_TRACK_TYPE","features":[428]},{"name":"MF_MT_MPEG_SEQUENCE_HEADER","features":[428]},{"name":"MF_MT_MPEG_START_TIME_CODE","features":[428]},{"name":"MF_MT_ORIGINAL_4CC","features":[428]},{"name":"MF_MT_ORIGINAL_WAVE_FORMAT_TAG","features":[428]},{"name":"MF_MT_OUTPUT_BUFFER_NUM","features":[428]},{"name":"MF_MT_PAD_CONTROL_FLAGS","features":[428]},{"name":"MF_MT_PALETTE","features":[428]},{"name":"MF_MT_PAN_SCAN_APERTURE","features":[428]},{"name":"MF_MT_PAN_SCAN_ENABLED","features":[428]},{"name":"MF_MT_PIXEL_ASPECT_RATIO","features":[428]},{"name":"MF_MT_REALTIME_CONTENT","features":[428]},{"name":"MF_MT_SAMPLE_SIZE","features":[428]},{"name":"MF_MT_SECURE","features":[428]},{"name":"MF_MT_SOURCE_CONTENT_HINT","features":[428]},{"name":"MF_MT_SPATIAL_AUDIO_DATA_PRESENT","features":[428]},{"name":"MF_MT_SPATIAL_AUDIO_MAX_DYNAMIC_OBJECTS","features":[428]},{"name":"MF_MT_SPATIAL_AUDIO_MAX_METADATA_ITEMS","features":[428]},{"name":"MF_MT_SPATIAL_AUDIO_MIN_METADATA_ITEM_OFFSET_SPACING","features":[428]},{"name":"MF_MT_SPATIAL_AUDIO_OBJECT_METADATA_FORMAT_ID","features":[428]},{"name":"MF_MT_SPATIAL_AUDIO_OBJECT_METADATA_LENGTH","features":[428]},{"name":"MF_MT_SUBTYPE","features":[428]},{"name":"MF_MT_TIMESTAMP_CAN_BE_DTS","features":[428]},{"name":"MF_MT_TRANSFER_FUNCTION","features":[428]},{"name":"MF_MT_USER_DATA","features":[428]},{"name":"MF_MT_VIDEO_3D","features":[428]},{"name":"MF_MT_VIDEO_3D_FIRST_IS_LEFT","features":[428]},{"name":"MF_MT_VIDEO_3D_FORMAT","features":[428]},{"name":"MF_MT_VIDEO_3D_LEFT_IS_BASE","features":[428]},{"name":"MF_MT_VIDEO_3D_NUM_VIEWS","features":[428]},{"name":"MF_MT_VIDEO_CHROMA_SITING","features":[428]},{"name":"MF_MT_VIDEO_H264_NO_FMOASO","features":[428]},{"name":"MF_MT_VIDEO_LEVEL","features":[428]},{"name":"MF_MT_VIDEO_LIGHTING","features":[428]},{"name":"MF_MT_VIDEO_NOMINAL_RANGE","features":[428]},{"name":"MF_MT_VIDEO_NO_FRAME_ORDERING","features":[428]},{"name":"MF_MT_VIDEO_PRIMARIES","features":[428]},{"name":"MF_MT_VIDEO_PROFILE","features":[428]},{"name":"MF_MT_VIDEO_RENDERER_EXTENSION_PROFILE","features":[428]},{"name":"MF_MT_VIDEO_ROTATION","features":[428]},{"name":"MF_MT_WRAPPED_TYPE","features":[428]},{"name":"MF_MT_YUV_MATRIX","features":[428]},{"name":"MF_MULTITHREADED_WORKQUEUE","features":[428]},{"name":"MF_NALU_LENGTH_INFORMATION","features":[428]},{"name":"MF_NALU_LENGTH_SET","features":[428]},{"name":"MF_NOT_FOUND_ERR","features":[428]},{"name":"MF_NOT_SUPPORTED_ERR","features":[428]},{"name":"MF_NUM_DROP_MODES","features":[428]},{"name":"MF_NUM_QUALITY_LEVELS","features":[428]},{"name":"MF_OBJECT_BYTESTREAM","features":[428]},{"name":"MF_OBJECT_INVALID","features":[428]},{"name":"MF_OBJECT_MEDIASOURCE","features":[428]},{"name":"MF_OBJECT_TYPE","features":[428]},{"name":"MF_OPENMODE_APPEND_IF_EXIST","features":[428]},{"name":"MF_OPENMODE_DELETE_IF_EXIST","features":[428]},{"name":"MF_OPENMODE_FAIL_IF_EXIST","features":[428]},{"name":"MF_OPENMODE_FAIL_IF_NOT_EXIST","features":[428]},{"name":"MF_OPENMODE_RESET_IF_EXIST","features":[428]},{"name":"MF_OPM_ACP_LEVEL_ONE","features":[428]},{"name":"MF_OPM_ACP_LEVEL_THREE","features":[428]},{"name":"MF_OPM_ACP_LEVEL_TWO","features":[428]},{"name":"MF_OPM_ACP_OFF","features":[428]},{"name":"MF_OPM_ACP_PROTECTION_LEVEL","features":[428]},{"name":"MF_OPM_CGMSA_COPY_FREELY","features":[428]},{"name":"MF_OPM_CGMSA_COPY_NEVER","features":[428]},{"name":"MF_OPM_CGMSA_COPY_NO_MORE","features":[428]},{"name":"MF_OPM_CGMSA_COPY_ONE_GENERATION","features":[428]},{"name":"MF_OPM_CGMSA_OFF","features":[428]},{"name":"MF_OPM_CGMSA_PROTECTION_LEVEL","features":[428]},{"name":"MF_OPM_CGMSA_REDISTRIBUTION_CONTROL_REQUIRED","features":[428]},{"name":"MF_OPTIONAL_NODE_REJECTED_MEDIA_TYPE","features":[428]},{"name":"MF_OPTIONAL_NODE_REJECTED_PROTECTED_PROCESS","features":[428]},{"name":"MF_PARSE_ERR","features":[428]},{"name":"MF_PD_ADAPTIVE_STREAMING","features":[428]},{"name":"MF_PD_APP_CONTEXT","features":[428]},{"name":"MF_PD_ASF_CODECLIST","features":[428]},{"name":"MF_PD_ASF_CONTENTENCRYPTIONEX_ENCRYPTION_DATA","features":[428]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_KEYID","features":[428]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_LICENSE_URL","features":[428]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_SECRET_DATA","features":[428]},{"name":"MF_PD_ASF_CONTENTENCRYPTION_TYPE","features":[428]},{"name":"MF_PD_ASF_DATA_LENGTH","features":[428]},{"name":"MF_PD_ASF_DATA_START_OFFSET","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_CREATION_TIME","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_FILE_ID","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_FLAGS","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_MAX_BITRATE","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_MAX_PACKET_SIZE","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_MIN_PACKET_SIZE","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_PACKETS","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_PLAY_DURATION","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_PREROLL","features":[428]},{"name":"MF_PD_ASF_FILEPROPERTIES_SEND_DURATION","features":[428]},{"name":"MF_PD_ASF_INFO_HAS_AUDIO","features":[428]},{"name":"MF_PD_ASF_INFO_HAS_NON_AUDIO_VIDEO","features":[428]},{"name":"MF_PD_ASF_INFO_HAS_VIDEO","features":[428]},{"name":"MF_PD_ASF_LANGLIST","features":[428]},{"name":"MF_PD_ASF_LANGLIST_LEGACYORDER","features":[428]},{"name":"MF_PD_ASF_MARKER","features":[428]},{"name":"MF_PD_ASF_METADATA_IS_VBR","features":[428]},{"name":"MF_PD_ASF_METADATA_LEAKY_BUCKET_PAIRS","features":[428]},{"name":"MF_PD_ASF_METADATA_V8_BUFFERAVERAGE","features":[428]},{"name":"MF_PD_ASF_METADATA_V8_VBRPEAK","features":[428]},{"name":"MF_PD_ASF_SCRIPT","features":[428]},{"name":"MF_PD_AUDIO_ENCODING_BITRATE","features":[428]},{"name":"MF_PD_AUDIO_ISVARIABLEBITRATE","features":[428]},{"name":"MF_PD_DURATION","features":[428]},{"name":"MF_PD_LAST_MODIFIED_TIME","features":[428]},{"name":"MF_PD_MIME_TYPE","features":[428]},{"name":"MF_PD_PLAYBACK_BOUNDARY_TIME","features":[428]},{"name":"MF_PD_PLAYBACK_ELEMENT_ID","features":[428]},{"name":"MF_PD_PMPHOST_CONTEXT","features":[428]},{"name":"MF_PD_PREFERRED_LANGUAGE","features":[428]},{"name":"MF_PD_SAMI_STYLELIST","features":[428]},{"name":"MF_PD_TOTAL_FILE_SIZE","features":[428]},{"name":"MF_PD_VIDEO_ENCODING_BITRATE","features":[428]},{"name":"MF_PLUGIN_CONTROL_POLICY","features":[428]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_ALL_PLUGINS","features":[428]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_APPROVED_PLUGINS","features":[428]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_WEB_PLUGINS","features":[428]},{"name":"MF_PLUGIN_CONTROL_POLICY_USE_WEB_PLUGINS_EDGEMODE","features":[428]},{"name":"MF_PMP_SERVER_CONTEXT","features":[428]},{"name":"MF_POLICY_ID","features":[428]},{"name":"MF_PREFERRED_SOURCE_URI","features":[428]},{"name":"MF_PROGRESSIVE_CODING_CONTENT","features":[428]},{"name":"MF_PROPERTY_HANDLER_SERVICE","features":[428]},{"name":"MF_Plugin_Type","features":[428]},{"name":"MF_Plugin_Type_MFT","features":[428]},{"name":"MF_Plugin_Type_MFT_MatchOutputType","features":[428]},{"name":"MF_Plugin_Type_MediaSource","features":[428]},{"name":"MF_Plugin_Type_Other","features":[428]},{"name":"MF_QUALITY_ADVISE_FLAGS","features":[428]},{"name":"MF_QUALITY_CANNOT_KEEP_UP","features":[428]},{"name":"MF_QUALITY_DROP_MODE","features":[428]},{"name":"MF_QUALITY_LEVEL","features":[428]},{"name":"MF_QUALITY_NORMAL","features":[428]},{"name":"MF_QUALITY_NORMAL_MINUS_1","features":[428]},{"name":"MF_QUALITY_NORMAL_MINUS_2","features":[428]},{"name":"MF_QUALITY_NORMAL_MINUS_3","features":[428]},{"name":"MF_QUALITY_NORMAL_MINUS_4","features":[428]},{"name":"MF_QUALITY_NORMAL_MINUS_5","features":[428]},{"name":"MF_QUALITY_NOTIFY_PROCESSING_LATENCY","features":[428]},{"name":"MF_QUALITY_NOTIFY_SAMPLE_LAG","features":[428]},{"name":"MF_QUALITY_SERVICES","features":[428]},{"name":"MF_QUATERNION","features":[428]},{"name":"MF_QUOTA_EXCEEDED_ERR","features":[428]},{"name":"MF_RATE_CONTROL_SERVICE","features":[428]},{"name":"MF_READWRITE_D3D_OPTIONAL","features":[428]},{"name":"MF_READWRITE_DISABLE_CONVERTERS","features":[428]},{"name":"MF_READWRITE_ENABLE_AUTOFINALIZE","features":[428]},{"name":"MF_READWRITE_ENABLE_HARDWARE_TRANSFORMS","features":[428]},{"name":"MF_READWRITE_MMCSS_CLASS","features":[428]},{"name":"MF_READWRITE_MMCSS_CLASS_AUDIO","features":[428]},{"name":"MF_READWRITE_MMCSS_PRIORITY","features":[428]},{"name":"MF_READWRITE_MMCSS_PRIORITY_AUDIO","features":[428]},{"name":"MF_REMOTE_PROXY","features":[428]},{"name":"MF_RESOLUTION_BYTESTREAM","features":[428]},{"name":"MF_RESOLUTION_CONTENT_DOES_NOT_HAVE_TO_MATCH_EXTENSION_OR_MIME_TYPE","features":[428]},{"name":"MF_RESOLUTION_DISABLE_LOCAL_PLUGINS","features":[428]},{"name":"MF_RESOLUTION_ENABLE_STORE_PLUGINS","features":[428]},{"name":"MF_RESOLUTION_FLAGS","features":[428]},{"name":"MF_RESOLUTION_KEEP_BYTE_STREAM_ALIVE_ON_FAIL","features":[428]},{"name":"MF_RESOLUTION_MEDIASOURCE","features":[428]},{"name":"MF_RESOLUTION_PLUGIN_CONTROL_POLICY_APPROVED_ONLY","features":[428]},{"name":"MF_RESOLUTION_PLUGIN_CONTROL_POLICY_WEB_ONLY","features":[428]},{"name":"MF_RESOLUTION_PLUGIN_CONTROL_POLICY_WEB_ONLY_EDGEMODE","features":[428]},{"name":"MF_RESOLUTION_READ","features":[428]},{"name":"MF_RESOLUTION_WRITE","features":[428]},{"name":"MF_SAMI_SERVICE","features":[428]},{"name":"MF_SAMPLEGRABBERSINK_IGNORE_CLOCK","features":[428]},{"name":"MF_SAMPLEGRABBERSINK_SAMPLE_TIME_OFFSET","features":[428]},{"name":"MF_SAMPLE_ENCRYPTION_PROTECTION_SCHEME_AES_CBC","features":[428]},{"name":"MF_SAMPLE_ENCRYPTION_PROTECTION_SCHEME_AES_CTR","features":[428]},{"name":"MF_SAMPLE_ENCRYPTION_PROTECTION_SCHEME_NONE","features":[428]},{"name":"MF_SA_AUDIO_ENDPOINT_AWARE","features":[428]},{"name":"MF_SA_BUFFERS_PER_SAMPLE","features":[428]},{"name":"MF_SA_D3D11_ALLOCATE_DISPLAYABLE_RESOURCES","features":[428]},{"name":"MF_SA_D3D11_ALLOW_DYNAMIC_YUV_TEXTURE","features":[428]},{"name":"MF_SA_D3D11_AWARE","features":[428]},{"name":"MF_SA_D3D11_BINDFLAGS","features":[428]},{"name":"MF_SA_D3D11_HW_PROTECTED","features":[428]},{"name":"MF_SA_D3D11_SHARED","features":[428]},{"name":"MF_SA_D3D11_SHARED_WITHOUT_MUTEX","features":[428]},{"name":"MF_SA_D3D11_USAGE","features":[428]},{"name":"MF_SA_D3D12_CLEAR_VALUE","features":[428]},{"name":"MF_SA_D3D12_HEAP_FLAGS","features":[428]},{"name":"MF_SA_D3D12_HEAP_TYPE","features":[428]},{"name":"MF_SA_D3D_AWARE","features":[428]},{"name":"MF_SA_MINIMUM_OUTPUT_SAMPLE_COUNT","features":[428]},{"name":"MF_SA_MINIMUM_OUTPUT_SAMPLE_COUNT_PROGRESSIVE","features":[428]},{"name":"MF_SA_REQUIRED_SAMPLE_COUNT","features":[428]},{"name":"MF_SA_REQUIRED_SAMPLE_COUNT_PROGRESSIVE","features":[428]},{"name":"MF_SDK_VERSION","features":[428]},{"name":"MF_SD_AMBISONICS_SAMPLE3D_DESCRIPTION","features":[428]},{"name":"MF_SD_ASF_EXTSTRMPROP_AVG_BUFFERSIZE","features":[428]},{"name":"MF_SD_ASF_EXTSTRMPROP_AVG_DATA_BITRATE","features":[428]},{"name":"MF_SD_ASF_EXTSTRMPROP_LANGUAGE_ID_INDEX","features":[428]},{"name":"MF_SD_ASF_EXTSTRMPROP_MAX_BUFFERSIZE","features":[428]},{"name":"MF_SD_ASF_EXTSTRMPROP_MAX_DATA_BITRATE","features":[428]},{"name":"MF_SD_ASF_METADATA_DEVICE_CONFORMANCE_TEMPLATE","features":[428]},{"name":"MF_SD_ASF_STREAMBITRATES_BITRATE","features":[428]},{"name":"MF_SD_AUDIO_ENCODER_DELAY","features":[428]},{"name":"MF_SD_AUDIO_ENCODER_PADDING","features":[428]},{"name":"MF_SD_LANGUAGE","features":[428]},{"name":"MF_SD_MEDIASOURCE_STATUS","features":[428]},{"name":"MF_SD_MUTUALLY_EXCLUSIVE","features":[428]},{"name":"MF_SD_PROTECTED","features":[428]},{"name":"MF_SD_SAMI_LANGUAGE","features":[428]},{"name":"MF_SD_STREAM_NAME","features":[428]},{"name":"MF_SD_VIDEO_SPHERICAL","features":[428]},{"name":"MF_SD_VIDEO_SPHERICAL_FORMAT","features":[428]},{"name":"MF_SD_VIDEO_SPHERICAL_INITIAL_VIEWDIRECTION","features":[428]},{"name":"MF_SERVICE_LOOKUP_ALL","features":[428]},{"name":"MF_SERVICE_LOOKUP_DOWNSTREAM","features":[428]},{"name":"MF_SERVICE_LOOKUP_DOWNSTREAM_DIRECT","features":[428]},{"name":"MF_SERVICE_LOOKUP_GLOBAL","features":[428]},{"name":"MF_SERVICE_LOOKUP_TYPE","features":[428]},{"name":"MF_SERVICE_LOOKUP_UPSTREAM","features":[428]},{"name":"MF_SERVICE_LOOKUP_UPSTREAM_DIRECT","features":[428]},{"name":"MF_SESSION_APPROX_EVENT_OCCURRENCE_TIME","features":[428]},{"name":"MF_SESSION_CONTENT_PROTECTION_MANAGER","features":[428]},{"name":"MF_SESSION_GLOBAL_TIME","features":[428]},{"name":"MF_SESSION_QUALITY_MANAGER","features":[428]},{"name":"MF_SESSION_REMOTE_SOURCE_MODE","features":[428]},{"name":"MF_SESSION_SERVER_CONTEXT","features":[428]},{"name":"MF_SESSION_TOPOLOADER","features":[428]},{"name":"MF_SHARING_ENGINE_CALLBACK","features":[428]},{"name":"MF_SHARING_ENGINE_EVENT","features":[428]},{"name":"MF_SHARING_ENGINE_EVENT_DISCONNECT","features":[428]},{"name":"MF_SHARING_ENGINE_EVENT_ERROR","features":[428]},{"name":"MF_SHARING_ENGINE_EVENT_LOCALRENDERINGENDED","features":[428]},{"name":"MF_SHARING_ENGINE_EVENT_LOCALRENDERINGSTARTED","features":[428]},{"name":"MF_SHARING_ENGINE_EVENT_STOPPED","features":[428]},{"name":"MF_SHARING_ENGINE_SHAREDRENDERER","features":[428]},{"name":"MF_SHUTDOWN_RENDERER_ON_ENGINE_SHUTDOWN","features":[428]},{"name":"MF_SINK_VIDEO_DISPLAY_ASPECT_RATIO_DENOMINATOR","features":[428]},{"name":"MF_SINK_VIDEO_DISPLAY_ASPECT_RATIO_NUMERATOR","features":[428]},{"name":"MF_SINK_VIDEO_NATIVE_HEIGHT","features":[428]},{"name":"MF_SINK_VIDEO_NATIVE_WIDTH","features":[428]},{"name":"MF_SINK_VIDEO_PTS","features":[428]},{"name":"MF_SINK_WRITER_ALL_STREAMS","features":[428]},{"name":"MF_SINK_WRITER_ASYNC_CALLBACK","features":[428]},{"name":"MF_SINK_WRITER_CONSTANTS","features":[428]},{"name":"MF_SINK_WRITER_D3D_MANAGER","features":[428]},{"name":"MF_SINK_WRITER_DISABLE_THROTTLING","features":[428]},{"name":"MF_SINK_WRITER_ENCODER_CONFIG","features":[428]},{"name":"MF_SINK_WRITER_INVALID_STREAM_INDEX","features":[428]},{"name":"MF_SINK_WRITER_MEDIASINK","features":[428]},{"name":"MF_SINK_WRITER_STATISTICS","features":[428]},{"name":"MF_SOURCE_PRESENTATION_PROVIDER_SERVICE","features":[428]},{"name":"MF_SOURCE_READERF_ALLEFFECTSREMOVED","features":[428]},{"name":"MF_SOURCE_READERF_CURRENTMEDIATYPECHANGED","features":[428]},{"name":"MF_SOURCE_READERF_ENDOFSTREAM","features":[428]},{"name":"MF_SOURCE_READERF_ERROR","features":[428]},{"name":"MF_SOURCE_READERF_NATIVEMEDIATYPECHANGED","features":[428]},{"name":"MF_SOURCE_READERF_NEWSTREAM","features":[428]},{"name":"MF_SOURCE_READERF_STREAMTICK","features":[428]},{"name":"MF_SOURCE_READER_ALL_STREAMS","features":[428]},{"name":"MF_SOURCE_READER_ANY_STREAM","features":[428]},{"name":"MF_SOURCE_READER_ASYNC_CALLBACK","features":[428]},{"name":"MF_SOURCE_READER_CONSTANTS","features":[428]},{"name":"MF_SOURCE_READER_CONTROLF_DRAIN","features":[428]},{"name":"MF_SOURCE_READER_CONTROL_FLAG","features":[428]},{"name":"MF_SOURCE_READER_CURRENT_TYPE_CONSTANTS","features":[428]},{"name":"MF_SOURCE_READER_CURRENT_TYPE_INDEX","features":[428]},{"name":"MF_SOURCE_READER_D3D11_BIND_FLAGS","features":[428]},{"name":"MF_SOURCE_READER_D3D_MANAGER","features":[428]},{"name":"MF_SOURCE_READER_DISABLE_CAMERA_PLUGINS","features":[428]},{"name":"MF_SOURCE_READER_DISABLE_DXVA","features":[428]},{"name":"MF_SOURCE_READER_DISCONNECT_MEDIASOURCE_ON_SHUTDOWN","features":[428]},{"name":"MF_SOURCE_READER_ENABLE_ADVANCED_VIDEO_PROCESSING","features":[428]},{"name":"MF_SOURCE_READER_ENABLE_TRANSCODE_ONLY_TRANSFORMS","features":[428]},{"name":"MF_SOURCE_READER_ENABLE_VIDEO_PROCESSING","features":[428]},{"name":"MF_SOURCE_READER_FIRST_AUDIO_STREAM","features":[428]},{"name":"MF_SOURCE_READER_FIRST_VIDEO_STREAM","features":[428]},{"name":"MF_SOURCE_READER_FLAG","features":[428]},{"name":"MF_SOURCE_READER_INVALID_STREAM_INDEX","features":[428]},{"name":"MF_SOURCE_READER_MEDIASOURCE","features":[428]},{"name":"MF_SOURCE_READER_MEDIASOURCE_CHARACTERISTICS","features":[428]},{"name":"MF_SOURCE_READER_MEDIASOURCE_CONFIG","features":[428]},{"name":"MF_SOURCE_STREAM_SUPPORTS_HW_CONNECTION","features":[428]},{"name":"MF_STANDARD_WORKQUEUE","features":[428]},{"name":"MF_STF_VERSION_DATE","features":[428]},{"name":"MF_STF_VERSION_INFO","features":[428]},{"name":"MF_STREAM_SINK_SUPPORTS_HW_CONNECTION","features":[428]},{"name":"MF_STREAM_SINK_SUPPORTS_ROTATION","features":[428]},{"name":"MF_STREAM_STATE","features":[428]},{"name":"MF_STREAM_STATE_PAUSED","features":[428]},{"name":"MF_STREAM_STATE_RUNNING","features":[428]},{"name":"MF_STREAM_STATE_STOPPED","features":[428]},{"name":"MF_ST_MEDIASOURCE_COLLECTION","features":[428]},{"name":"MF_SYNTAX_ERR","features":[428]},{"name":"MF_S_ACTIVATE_REPLACED","features":[428]},{"name":"MF_S_ASF_PARSEINPROGRESS","features":[428]},{"name":"MF_S_CLOCK_STOPPED","features":[428]},{"name":"MF_S_MULTIPLE_BEGIN","features":[428]},{"name":"MF_S_PE_TRUSTED","features":[428]},{"name":"MF_S_PROTECTION_NOT_REQUIRED","features":[428]},{"name":"MF_S_SEQUENCER_CONTEXT_CANCELED","features":[428]},{"name":"MF_S_SEQUENCER_SEGMENT_AT_END_OF_STREAM","features":[428]},{"name":"MF_S_SINK_NOT_FINALIZED","features":[428]},{"name":"MF_S_TRANSFORM_DO_NOT_PROPAGATE_EVENT","features":[428]},{"name":"MF_S_VIDEO_DISABLED_WITH_UNKNOWN_SOFTWARE_OUTPUT","features":[428]},{"name":"MF_S_WAIT_FOR_POLICY_SET","features":[428]},{"name":"MF_SampleProtectionSalt","features":[428]},{"name":"MF_TEST_SIGNED_COMPONENT_LOADING","features":[428]},{"name":"MF_TIMECODE_SERVICE","features":[428]},{"name":"MF_TIMED_TEXT_ALIGNMENT","features":[428]},{"name":"MF_TIMED_TEXT_ALIGNMENT_CENTER","features":[428]},{"name":"MF_TIMED_TEXT_ALIGNMENT_END","features":[428]},{"name":"MF_TIMED_TEXT_ALIGNMENT_START","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION_AFTER","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION_BEFORE","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_POSITION_OUTSIDE","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_AUTO","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_FILLEDCIRCLE","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_FILLEDDOT","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_FILLEDSESAME","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_NONE","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_OPENCIRCLE","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_OPENDOT","features":[428]},{"name":"MF_TIMED_TEXT_BOUTEN_TYPE_OPENSESAME","features":[428]},{"name":"MF_TIMED_TEXT_CUE_EVENT","features":[428]},{"name":"MF_TIMED_TEXT_CUE_EVENT_ACTIVE","features":[428]},{"name":"MF_TIMED_TEXT_CUE_EVENT_CLEAR","features":[428]},{"name":"MF_TIMED_TEXT_CUE_EVENT_INACTIVE","features":[428]},{"name":"MF_TIMED_TEXT_DECORATION","features":[428]},{"name":"MF_TIMED_TEXT_DECORATION_LINE_THROUGH","features":[428]},{"name":"MF_TIMED_TEXT_DECORATION_NONE","features":[428]},{"name":"MF_TIMED_TEXT_DECORATION_OVERLINE","features":[428]},{"name":"MF_TIMED_TEXT_DECORATION_UNDERLINE","features":[428]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT","features":[428]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT_AFTER","features":[428]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT_BEFORE","features":[428]},{"name":"MF_TIMED_TEXT_DISPLAY_ALIGNMENT_CENTER","features":[428]},{"name":"MF_TIMED_TEXT_ERROR_CODE","features":[428]},{"name":"MF_TIMED_TEXT_ERROR_CODE_DATA_FORMAT","features":[428]},{"name":"MF_TIMED_TEXT_ERROR_CODE_FATAL","features":[428]},{"name":"MF_TIMED_TEXT_ERROR_CODE_INTERNAL","features":[428]},{"name":"MF_TIMED_TEXT_ERROR_CODE_NETWORK","features":[428]},{"name":"MF_TIMED_TEXT_ERROR_CODE_NOERROR","features":[428]},{"name":"MF_TIMED_TEXT_FONT_STYLE","features":[428]},{"name":"MF_TIMED_TEXT_FONT_STYLE_ITALIC","features":[428]},{"name":"MF_TIMED_TEXT_FONT_STYLE_NORMAL","features":[428]},{"name":"MF_TIMED_TEXT_FONT_STYLE_OBLIQUE","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_CENTER","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_END","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_SPACEAROUND","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_SPACEBETWEEN","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_START","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_ALIGN_WITHBASE","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_POSITION","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_POSITION_AFTER","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_POSITION_BEFORE","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_POSITION_OUTSIDE","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_AFTER","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_BEFORE","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_BOTH","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_NONE","features":[428]},{"name":"MF_TIMED_TEXT_RUBY_RESERVE_OUTSIDE","features":[428]},{"name":"MF_TIMED_TEXT_SCROLL_MODE","features":[428]},{"name":"MF_TIMED_TEXT_SCROLL_MODE_POP_ON","features":[428]},{"name":"MF_TIMED_TEXT_SCROLL_MODE_ROLL_UP","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_KIND","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_KIND_CAPTIONS","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_KIND_METADATA","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_KIND_SUBTITLES","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_KIND_UNKNOWN","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_ERROR","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_LOADED","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_LOADING","features":[428]},{"name":"MF_TIMED_TEXT_TRACK_READY_STATE_NONE","features":[428]},{"name":"MF_TIMED_TEXT_UNIT_TYPE","features":[428]},{"name":"MF_TIMED_TEXT_UNIT_TYPE_PERCENTAGE","features":[428]},{"name":"MF_TIMED_TEXT_UNIT_TYPE_PIXELS","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE_LR","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE_LRTB","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE_RL","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE_RLTB","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE_TB","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE_TBLR","features":[428]},{"name":"MF_TIMED_TEXT_WRITING_MODE_TBRL","features":[428]},{"name":"MF_TIME_FORMAT_ENTRY_RELATIVE","features":[428]},{"name":"MF_TIME_FORMAT_SEGMENT_OFFSET","features":[428]},{"name":"MF_TOPOLOGY_DXVA_MODE","features":[428]},{"name":"MF_TOPOLOGY_DYNAMIC_CHANGE_NOT_ALLOWED","features":[428]},{"name":"MF_TOPOLOGY_ENABLE_XVP_FOR_PLAYBACK","features":[428]},{"name":"MF_TOPOLOGY_ENUMERATE_SOURCE_TYPES","features":[428]},{"name":"MF_TOPOLOGY_HARDWARE_MODE","features":[428]},{"name":"MF_TOPOLOGY_MAX","features":[428]},{"name":"MF_TOPOLOGY_NO_MARKIN_MARKOUT","features":[428]},{"name":"MF_TOPOLOGY_OUTPUT_NODE","features":[428]},{"name":"MF_TOPOLOGY_PLAYBACK_FRAMERATE","features":[428]},{"name":"MF_TOPOLOGY_PLAYBACK_MAX_DIMS","features":[428]},{"name":"MF_TOPOLOGY_PROJECTSTART","features":[428]},{"name":"MF_TOPOLOGY_PROJECTSTOP","features":[428]},{"name":"MF_TOPOLOGY_RESOLUTION_STATUS","features":[428]},{"name":"MF_TOPOLOGY_RESOLUTION_STATUS_FLAGS","features":[428]},{"name":"MF_TOPOLOGY_RESOLUTION_SUCCEEDED","features":[428]},{"name":"MF_TOPOLOGY_SOURCESTREAM_NODE","features":[428]},{"name":"MF_TOPOLOGY_START_TIME_ON_PRESENTATION_SWITCH","features":[428]},{"name":"MF_TOPOLOGY_STATIC_PLAYBACK_OPTIMIZATIONS","features":[428]},{"name":"MF_TOPOLOGY_TEE_NODE","features":[428]},{"name":"MF_TOPOLOGY_TRANSFORM_NODE","features":[428]},{"name":"MF_TOPOLOGY_TYPE","features":[428]},{"name":"MF_TOPONODE_ATTRIBUTE_EDITOR_SERVICE","features":[428]},{"name":"MF_TOPONODE_CONNECT_METHOD","features":[428]},{"name":"MF_TOPONODE_D3DAWARE","features":[428]},{"name":"MF_TOPONODE_DECODER","features":[428]},{"name":"MF_TOPONODE_DECRYPTOR","features":[428]},{"name":"MF_TOPONODE_DISABLE_PREROLL","features":[428]},{"name":"MF_TOPONODE_DISCARDABLE","features":[428]},{"name":"MF_TOPONODE_DRAIN","features":[428]},{"name":"MF_TOPONODE_DRAIN_ALWAYS","features":[428]},{"name":"MF_TOPONODE_DRAIN_DEFAULT","features":[428]},{"name":"MF_TOPONODE_DRAIN_MODE","features":[428]},{"name":"MF_TOPONODE_DRAIN_NEVER","features":[428]},{"name":"MF_TOPONODE_ERRORCODE","features":[428]},{"name":"MF_TOPONODE_ERROR_MAJORTYPE","features":[428]},{"name":"MF_TOPONODE_ERROR_SUBTYPE","features":[428]},{"name":"MF_TOPONODE_FLUSH","features":[428]},{"name":"MF_TOPONODE_FLUSH_ALWAYS","features":[428]},{"name":"MF_TOPONODE_FLUSH_MODE","features":[428]},{"name":"MF_TOPONODE_FLUSH_NEVER","features":[428]},{"name":"MF_TOPONODE_FLUSH_SEEK","features":[428]},{"name":"MF_TOPONODE_LOCKED","features":[428]},{"name":"MF_TOPONODE_MARKIN_HERE","features":[428]},{"name":"MF_TOPONODE_MARKOUT_HERE","features":[428]},{"name":"MF_TOPONODE_MEDIASTART","features":[428]},{"name":"MF_TOPONODE_MEDIASTOP","features":[428]},{"name":"MF_TOPONODE_NOSHUTDOWN_ON_REMOVE","features":[428]},{"name":"MF_TOPONODE_PRESENTATION_DESCRIPTOR","features":[428]},{"name":"MF_TOPONODE_PRIMARYOUTPUT","features":[428]},{"name":"MF_TOPONODE_RATELESS","features":[428]},{"name":"MF_TOPONODE_SEQUENCE_ELEMENTID","features":[428]},{"name":"MF_TOPONODE_SOURCE","features":[428]},{"name":"MF_TOPONODE_STREAMID","features":[428]},{"name":"MF_TOPONODE_STREAM_DESCRIPTOR","features":[428]},{"name":"MF_TOPONODE_TRANSFORM_OBJECTID","features":[428]},{"name":"MF_TOPONODE_WORKQUEUE_ID","features":[428]},{"name":"MF_TOPONODE_WORKQUEUE_ITEM_PRIORITY","features":[428]},{"name":"MF_TOPONODE_WORKQUEUE_MMCSS_CLASS","features":[428]},{"name":"MF_TOPONODE_WORKQUEUE_MMCSS_PRIORITY","features":[428]},{"name":"MF_TOPONODE_WORKQUEUE_MMCSS_TASKID","features":[428]},{"name":"MF_TOPOSTATUS","features":[428]},{"name":"MF_TOPOSTATUS_DYNAMIC_CHANGED","features":[428]},{"name":"MF_TOPOSTATUS_ENDED","features":[428]},{"name":"MF_TOPOSTATUS_INVALID","features":[428]},{"name":"MF_TOPOSTATUS_READY","features":[428]},{"name":"MF_TOPOSTATUS_SINK_SWITCHED","features":[428]},{"name":"MF_TOPOSTATUS_STARTED_SOURCE","features":[428]},{"name":"MF_TRANSCODE_ADJUST_PROFILE","features":[428]},{"name":"MF_TRANSCODE_ADJUST_PROFILE_DEFAULT","features":[428]},{"name":"MF_TRANSCODE_ADJUST_PROFILE_FLAGS","features":[428]},{"name":"MF_TRANSCODE_ADJUST_PROFILE_USE_SOURCE_ATTRIBUTES","features":[428]},{"name":"MF_TRANSCODE_CONTAINERTYPE","features":[428]},{"name":"MF_TRANSCODE_DONOT_INSERT_ENCODER","features":[428]},{"name":"MF_TRANSCODE_ENCODINGPROFILE","features":[428]},{"name":"MF_TRANSCODE_QUALITYVSSPEED","features":[428]},{"name":"MF_TRANSCODE_SINK_INFO","features":[428]},{"name":"MF_TRANSCODE_SKIP_METADATA_TRANSFER","features":[428]},{"name":"MF_TRANSCODE_TOPOLOGYMODE","features":[428]},{"name":"MF_TRANSCODE_TOPOLOGYMODE_FLAGS","features":[428]},{"name":"MF_TRANSCODE_TOPOLOGYMODE_HARDWARE_ALLOWED","features":[428]},{"name":"MF_TRANSCODE_TOPOLOGYMODE_SOFTWARE_ONLY","features":[428]},{"name":"MF_TRANSFORM_ASYNC","features":[428]},{"name":"MF_TRANSFORM_ASYNC_UNLOCK","features":[428]},{"name":"MF_TRANSFORM_CATEGORY_Attribute","features":[428]},{"name":"MF_TRANSFORM_FLAGS_Attribute","features":[428]},{"name":"MF_TYPE_ERR","features":[428]},{"name":"MF_UNKNOWN_DURATION","features":[428]},{"name":"MF_URL_TRUST_STATUS","features":[428]},{"name":"MF_USER_DATA_PAYLOAD","features":[428]},{"name":"MF_USER_EXTENDED_ATTRIBUTES","features":[428]},{"name":"MF_USER_MODE_COMPONENT_LOAD","features":[428]},{"name":"MF_VERSION","features":[428]},{"name":"MF_VIDEODSP_MODE","features":[428]},{"name":"MF_VIDEO_MAX_MB_PER_SEC","features":[428]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM","features":[428]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM_DEFAULT","features":[428]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM_MRF_CRF_444","features":[428]},{"name":"MF_VIDEO_PROCESSOR_ALGORITHM_TYPE","features":[428]},{"name":"MF_VIDEO_PROCESSOR_MIRROR","features":[428]},{"name":"MF_VIDEO_PROCESSOR_ROTATION","features":[428]},{"name":"MF_VIDEO_RENDERER_EFFECT_APP_SERVICE_NAME","features":[428]},{"name":"MF_VIDEO_SPHERICAL_VIEWDIRECTION","features":[428]},{"name":"MF_VIRTUALCAMERA_ASSOCIATED_CAMERA_SOURCES","features":[428]},{"name":"MF_VIRTUALCAMERA_CONFIGURATION_APP_PACKAGE_FAMILY_NAME","features":[428]},{"name":"MF_VIRTUALCAMERA_PROVIDE_ASSOCIATED_CAMERA_SOURCES","features":[428]},{"name":"MF_WINDOW_WORKQUEUE","features":[428]},{"name":"MF_WORKQUEUE_SERVICES","features":[428]},{"name":"MF_WRAPPED_BUFFER_SERVICE","features":[428]},{"name":"MF_WRAPPED_OBJECT","features":[428]},{"name":"MF_WRAPPED_SAMPLE_SERVICE","features":[428]},{"name":"MF_WVC1_PROG_SINGLE_SLICE_CONTENT","features":[428]},{"name":"MF_XVP_CALLER_ALLOCATES_OUTPUT","features":[428]},{"name":"MF_XVP_DISABLE_FRC","features":[428]},{"name":"MF_XVP_SAMPLE_LOCK_TIMEOUT","features":[428]},{"name":"MFaudioConstriction14_14","features":[428]},{"name":"MFaudioConstriction44_16","features":[428]},{"name":"MFaudioConstriction48_16","features":[428]},{"name":"MFaudioConstrictionMute","features":[428]},{"name":"MFaudioConstrictionOff","features":[428]},{"name":"MFllMulDiv","features":[428]},{"name":"MICARRAY_EXTERN_BEAM","features":[428]},{"name":"MICARRAY_FIXED_BEAM","features":[428]},{"name":"MICARRAY_SIMPLE_SUM","features":[428]},{"name":"MICARRAY_SINGLE_BEAM","features":[428]},{"name":"MICARRAY_SINGLE_CHAN","features":[428]},{"name":"MIC_ARRAY_MODE","features":[428]},{"name":"MIRROR_HORIZONTAL","features":[428]},{"name":"MIRROR_NONE","features":[428]},{"name":"MIRROR_VERTICAL","features":[428]},{"name":"MODE_NOT_SET","features":[428]},{"name":"MOVEREGION_INFO","features":[305,428]},{"name":"MOVE_RECT","features":[305,428]},{"name":"MP3ACMCodecWrapper","features":[428]},{"name":"MPEG1VIDEOINFO","features":[305,316,428]},{"name":"MPEG2VIDEOINFO","features":[305,316,428]},{"name":"MPEG2VIDEOINFO_FLAGS","features":[428]},{"name":"MR_AUDIO_POLICY_SERVICE","features":[428]},{"name":"MR_BUFFER_SERVICE","features":[428]},{"name":"MR_CAPTURE_POLICY_VOLUME_SERVICE","features":[428]},{"name":"MR_POLICY_VOLUME_SERVICE","features":[428]},{"name":"MR_STREAM_VOLUME_SERVICE","features":[428]},{"name":"MR_VIDEO_ACCELERATION_SERVICE","features":[428]},{"name":"MR_VIDEO_MIXER_SERVICE","features":[428]},{"name":"MR_VIDEO_RENDER_SERVICE","features":[428]},{"name":"MSAMRNBDecoder","features":[428]},{"name":"MSAMRNBEncoder","features":[428]},{"name":"MT_ARBITRARY_HEADER","features":[305,428]},{"name":"MT_CUSTOM_VIDEO_PRIMARIES","features":[428]},{"name":"MULawCodecWrapper","features":[428]},{"name":"OPENMODE_APPEND_IF_EXIST","features":[428]},{"name":"OPENMODE_DELETE_IF_EXIST","features":[428]},{"name":"OPENMODE_FAIL_IF_EXIST","features":[428]},{"name":"OPENMODE_FAIL_IF_NOT_EXIST","features":[428]},{"name":"OPENMODE_RESET_IF_EXIST","features":[428]},{"name":"OPMGetVideoOutputForTarget","features":[305,428]},{"name":"OPMGetVideoOutputsFromHMONITOR","features":[316,428]},{"name":"OPMGetVideoOutputsFromIDirect3DDevice9Object","features":[314,428]},{"name":"OPMXboxEnableHDCP","features":[428]},{"name":"OPMXboxGetHDCPStatus","features":[428]},{"name":"OPMXboxGetHDCPStatusAndType","features":[428]},{"name":"OPM_128_BIT_RANDOM_NUMBER_SIZE","features":[428]},{"name":"OPM_ACP_AND_CGMSA_SIGNALING","features":[428]},{"name":"OPM_ACP_LEVEL_ONE","features":[428]},{"name":"OPM_ACP_LEVEL_THREE","features":[428]},{"name":"OPM_ACP_LEVEL_TWO","features":[428]},{"name":"OPM_ACP_OFF","features":[428]},{"name":"OPM_ACP_PROTECTION_LEVEL","features":[428]},{"name":"OPM_ACTUAL_OUTPUT_FORMAT","features":[314,428]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_CENTER","features":[428]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_14_BY_9_TOP","features":[428]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_CENTER","features":[428]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_16_BY_9_TOP","features":[428]},{"name":"OPM_ASPECT_RATIO_EN300294_BOX_GT_16_BY_9_CENTER","features":[428]},{"name":"OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_16_BY_9_ANAMORPHIC","features":[428]},{"name":"OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3","features":[428]},{"name":"OPM_ASPECT_RATIO_EN300294_FULL_FORMAT_4_BY_3_PROTECTED_CENTER","features":[428]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR","features":[428]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_DAUGHTER_BOARD_CONNECTOR_INSIDE_OF_NUAE","features":[428]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_INSIDE_OF_CHIPSET","features":[428]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_MASK","features":[428]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_NON_STANDARD","features":[428]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_CHIP","features":[428]},{"name":"OPM_BUS_IMPLEMENTATION_MODIFIER_TRACKS_ON_MOTHER_BOARD_TO_SOCKET","features":[428]},{"name":"OPM_BUS_TYPE","features":[428]},{"name":"OPM_BUS_TYPE_AGP","features":[428]},{"name":"OPM_BUS_TYPE_MASK","features":[428]},{"name":"OPM_BUS_TYPE_OTHER","features":[428]},{"name":"OPM_BUS_TYPE_PCI","features":[428]},{"name":"OPM_BUS_TYPE_PCIEXPRESS","features":[428]},{"name":"OPM_BUS_TYPE_PCIX","features":[428]},{"name":"OPM_CGMSA","features":[428]},{"name":"OPM_CGMSA_COPY_FREELY","features":[428]},{"name":"OPM_CGMSA_COPY_NEVER","features":[428]},{"name":"OPM_CGMSA_COPY_NO_MORE","features":[428]},{"name":"OPM_CGMSA_COPY_ONE_GENERATION","features":[428]},{"name":"OPM_CGMSA_OFF","features":[428]},{"name":"OPM_CGMSA_REDISTRIBUTION_CONTROL_REQUIRED","features":[428]},{"name":"OPM_CONFIGURE_PARAMETERS","features":[428]},{"name":"OPM_CONFIGURE_SETTING_DATA_SIZE","features":[428]},{"name":"OPM_CONNECTED_HDCP_DEVICE_INFORMATION","features":[428]},{"name":"OPM_CONNECTOR_TYPE","features":[428]},{"name":"OPM_CONNECTOR_TYPE_COMPONENT_VIDEO","features":[428]},{"name":"OPM_CONNECTOR_TYPE_COMPOSITE_VIDEO","features":[428]},{"name":"OPM_CONNECTOR_TYPE_DISPLAYPORT_EMBEDDED","features":[428]},{"name":"OPM_CONNECTOR_TYPE_DISPLAYPORT_EXTERNAL","features":[428]},{"name":"OPM_CONNECTOR_TYPE_DVI","features":[428]},{"name":"OPM_CONNECTOR_TYPE_D_JPN","features":[428]},{"name":"OPM_CONNECTOR_TYPE_HDMI","features":[428]},{"name":"OPM_CONNECTOR_TYPE_LVDS","features":[428]},{"name":"OPM_CONNECTOR_TYPE_MIRACAST","features":[428]},{"name":"OPM_CONNECTOR_TYPE_OTHER","features":[428]},{"name":"OPM_CONNECTOR_TYPE_RESERVED","features":[428]},{"name":"OPM_CONNECTOR_TYPE_SDI","features":[428]},{"name":"OPM_CONNECTOR_TYPE_SVIDEO","features":[428]},{"name":"OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_A","features":[428]},{"name":"OPM_CONNECTOR_TYPE_TRANSPORT_AGNOSTIC_DIGITAL_MODE_B","features":[428]},{"name":"OPM_CONNECTOR_TYPE_UDI_EMBEDDED","features":[428]},{"name":"OPM_CONNECTOR_TYPE_UDI_EXTERNAL","features":[428]},{"name":"OPM_CONNECTOR_TYPE_VGA","features":[428]},{"name":"OPM_COPP_COMPATIBLE_BUS_TYPE_INTEGRATED","features":[428]},{"name":"OPM_COPP_COMPATIBLE_CONNECTOR_TYPE_INTERNAL","features":[428]},{"name":"OPM_COPP_COMPATIBLE_GET_INFO_PARAMETERS","features":[428]},{"name":"OPM_DPCP_OFF","features":[428]},{"name":"OPM_DPCP_ON","features":[428]},{"name":"OPM_DPCP_PROTECTION_LEVEL","features":[428]},{"name":"OPM_DVI_CHARACTERISTIC","features":[428]},{"name":"OPM_DVI_CHARACTERISTIC_1_0","features":[428]},{"name":"OPM_DVI_CHARACTERISTIC_1_1_OR_ABOVE","features":[428]},{"name":"OPM_ENCRYPTED_INITIALIZATION_PARAMETERS","features":[428]},{"name":"OPM_ENCRYPTED_INITIALIZATION_PARAMETERS_SIZE","features":[428]},{"name":"OPM_GET_ACP_AND_CGMSA_SIGNALING","features":[428]},{"name":"OPM_GET_ACTUAL_OUTPUT_FORMAT","features":[428]},{"name":"OPM_GET_ACTUAL_PROTECTION_LEVEL","features":[428]},{"name":"OPM_GET_ADAPTER_BUS_TYPE","features":[428]},{"name":"OPM_GET_CODEC_INFO","features":[428]},{"name":"OPM_GET_CODEC_INFO_INFORMATION","features":[428]},{"name":"OPM_GET_CODEC_INFO_PARAMETERS","features":[428]},{"name":"OPM_GET_CONNECTED_HDCP_DEVICE_INFORMATION","features":[428]},{"name":"OPM_GET_CONNECTOR_TYPE","features":[428]},{"name":"OPM_GET_CURRENT_HDCP_SRM_VERSION","features":[428]},{"name":"OPM_GET_DVI_CHARACTERISTICS","features":[428]},{"name":"OPM_GET_INFORMATION_PARAMETERS_SIZE","features":[428]},{"name":"OPM_GET_INFO_PARAMETERS","features":[428]},{"name":"OPM_GET_OUTPUT_HARDWARE_PROTECTION_SUPPORT","features":[428]},{"name":"OPM_GET_OUTPUT_ID","features":[428]},{"name":"OPM_GET_SUPPORTED_PROTECTION_TYPES","features":[428]},{"name":"OPM_GET_VIRTUAL_PROTECTION_LEVEL","features":[428]},{"name":"OPM_HDCP_FLAGS","features":[428]},{"name":"OPM_HDCP_FLAG_NONE","features":[428]},{"name":"OPM_HDCP_FLAG_REPEATER","features":[428]},{"name":"OPM_HDCP_KEY_SELECTION_VECTOR","features":[428]},{"name":"OPM_HDCP_KEY_SELECTION_VECTOR_SIZE","features":[428]},{"name":"OPM_HDCP_OFF","features":[428]},{"name":"OPM_HDCP_ON","features":[428]},{"name":"OPM_HDCP_PROTECTION_LEVEL","features":[428]},{"name":"OPM_HDCP_STATUS","features":[428]},{"name":"OPM_HDCP_STATUS_OFF","features":[428]},{"name":"OPM_HDCP_STATUS_ON","features":[428]},{"name":"OPM_HDCP_TYPE","features":[428]},{"name":"OPM_HDCP_TYPE_0","features":[428]},{"name":"OPM_HDCP_TYPE_1","features":[428]},{"name":"OPM_IMAGE_ASPECT_RATIO_EN300294","features":[428]},{"name":"OPM_OMAC","features":[428]},{"name":"OPM_OMAC_SIZE","features":[428]},{"name":"OPM_OUTPUT_HARDWARE_PROTECTION","features":[428]},{"name":"OPM_OUTPUT_HARDWARE_PROTECTION_NOT_SUPPORTED","features":[428]},{"name":"OPM_OUTPUT_HARDWARE_PROTECTION_SUPPORTED","features":[428]},{"name":"OPM_OUTPUT_ID_DATA","features":[428]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_1125I","features":[428]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_525I","features":[428]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_525P","features":[428]},{"name":"OPM_PROTECTION_STANDARD_ARIBTRB15_750P","features":[428]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEA_1125I","features":[428]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEA_525P","features":[428]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEA_750P","features":[428]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEB_1125I","features":[428]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEB_525P","features":[428]},{"name":"OPM_PROTECTION_STANDARD_CEA805A_TYPEB_750P","features":[428]},{"name":"OPM_PROTECTION_STANDARD_EIA608B_525","features":[428]},{"name":"OPM_PROTECTION_STANDARD_EN300294_625I","features":[428]},{"name":"OPM_PROTECTION_STANDARD_IEC61880_2_525I","features":[428]},{"name":"OPM_PROTECTION_STANDARD_IEC61880_525I","features":[428]},{"name":"OPM_PROTECTION_STANDARD_IEC62375_625P","features":[428]},{"name":"OPM_PROTECTION_STANDARD_NONE","features":[428]},{"name":"OPM_PROTECTION_STANDARD_OTHER","features":[428]},{"name":"OPM_PROTECTION_STANDARD_TYPE","features":[428]},{"name":"OPM_PROTECTION_TYPE","features":[428]},{"name":"OPM_PROTECTION_TYPE_ACP","features":[428]},{"name":"OPM_PROTECTION_TYPE_CGMSA","features":[428]},{"name":"OPM_PROTECTION_TYPE_COPP_COMPATIBLE_HDCP","features":[428]},{"name":"OPM_PROTECTION_TYPE_DPCP","features":[428]},{"name":"OPM_PROTECTION_TYPE_HDCP","features":[428]},{"name":"OPM_PROTECTION_TYPE_NONE","features":[428]},{"name":"OPM_PROTECTION_TYPE_OTHER","features":[428]},{"name":"OPM_PROTECTION_TYPE_SIZE","features":[428]},{"name":"OPM_PROTECTION_TYPE_TYPE_ENFORCEMENT_HDCP","features":[428]},{"name":"OPM_RANDOM_NUMBER","features":[428]},{"name":"OPM_REQUESTED_INFORMATION","features":[428]},{"name":"OPM_REQUESTED_INFORMATION_SIZE","features":[428]},{"name":"OPM_SET_ACP_AND_CGMSA_SIGNALING","features":[428]},{"name":"OPM_SET_ACP_AND_CGMSA_SIGNALING_PARAMETERS","features":[428]},{"name":"OPM_SET_HDCP_SRM","features":[428]},{"name":"OPM_SET_HDCP_SRM_PARAMETERS","features":[428]},{"name":"OPM_SET_PROTECTION_LEVEL","features":[428]},{"name":"OPM_SET_PROTECTION_LEVEL_ACCORDING_TO_CSS_DVD","features":[428]},{"name":"OPM_SET_PROTECTION_LEVEL_PARAMETERS","features":[428]},{"name":"OPM_STANDARD_INFORMATION","features":[428]},{"name":"OPM_STATUS","features":[428]},{"name":"OPM_STATUS_LINK_LOST","features":[428]},{"name":"OPM_STATUS_NORMAL","features":[428]},{"name":"OPM_STATUS_RENEGOTIATION_REQUIRED","features":[428]},{"name":"OPM_STATUS_REVOKED_HDCP_DEVICE_ATTACHED","features":[428]},{"name":"OPM_STATUS_TAMPERING_DETECTED","features":[428]},{"name":"OPM_TYPE","features":[428]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_OFF","features":[428]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_NO_TYPE_RESTRICTION","features":[428]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_ON_WITH_TYPE1_RESTRICTION","features":[428]},{"name":"OPM_TYPE_ENFORCEMENT_HDCP_PROTECTION_LEVEL","features":[428]},{"name":"OPM_VIDEO_OUTPUT_SEMANTICS","features":[428]},{"name":"OPM_VOS_COPP_SEMANTICS","features":[428]},{"name":"OPM_VOS_OPM_INDIRECT_DISPLAY","features":[428]},{"name":"OPM_VOS_OPM_SEMANTICS","features":[428]},{"name":"OPTIBEAM_ARRAY_AND_AEC","features":[428]},{"name":"OPTIBEAM_ARRAY_ONLY","features":[428]},{"name":"PDXVAHDSW_CreateDevice","features":[305,314,428]},{"name":"PDXVAHDSW_CreateVideoProcessor","features":[305,428]},{"name":"PDXVAHDSW_DestroyDevice","features":[305,428]},{"name":"PDXVAHDSW_DestroyVideoProcessor","features":[305,428]},{"name":"PDXVAHDSW_GetVideoProcessBltStatePrivate","features":[305,428]},{"name":"PDXVAHDSW_GetVideoProcessStreamStatePrivate","features":[305,428]},{"name":"PDXVAHDSW_GetVideoProcessorCaps","features":[305,428]},{"name":"PDXVAHDSW_GetVideoProcessorCustomRates","features":[305,428]},{"name":"PDXVAHDSW_GetVideoProcessorDeviceCaps","features":[305,314,428]},{"name":"PDXVAHDSW_GetVideoProcessorFilterRange","features":[305,428]},{"name":"PDXVAHDSW_GetVideoProcessorInputFormats","features":[305,314,428]},{"name":"PDXVAHDSW_GetVideoProcessorOutputFormats","features":[305,314,428]},{"name":"PDXVAHDSW_Plugin","features":[428]},{"name":"PDXVAHDSW_ProposeVideoPrivateFormat","features":[305,314,428]},{"name":"PDXVAHDSW_SetVideoProcessBltState","features":[305,428]},{"name":"PDXVAHDSW_SetVideoProcessStreamState","features":[305,428]},{"name":"PDXVAHDSW_VideoProcessBltHD","features":[305,314,428]},{"name":"PDXVAHD_CreateDevice","features":[314,428]},{"name":"PEACTION_COPY","features":[428]},{"name":"PEACTION_EXPORT","features":[428]},{"name":"PEACTION_EXTRACT","features":[428]},{"name":"PEACTION_LAST","features":[428]},{"name":"PEACTION_NO","features":[428]},{"name":"PEACTION_PLAY","features":[428]},{"name":"PEACTION_RESERVED1","features":[428]},{"name":"PEACTION_RESERVED2","features":[428]},{"name":"PEACTION_RESERVED3","features":[428]},{"name":"PIN_CATEGORY_ANALOGVIDEOIN","features":[428]},{"name":"PIN_CATEGORY_CAPTURE","features":[428]},{"name":"PIN_CATEGORY_CC","features":[428]},{"name":"PIN_CATEGORY_EDS","features":[428]},{"name":"PIN_CATEGORY_NABTS","features":[428]},{"name":"PIN_CATEGORY_PREVIEW","features":[428]},{"name":"PIN_CATEGORY_STILL","features":[428]},{"name":"PIN_CATEGORY_TELETEXT","features":[428]},{"name":"PIN_CATEGORY_TIMECODE","features":[428]},{"name":"PIN_CATEGORY_VBI","features":[428]},{"name":"PIN_CATEGORY_VIDEOPORT","features":[428]},{"name":"PIN_CATEGORY_VIDEOPORT_VBI","features":[428]},{"name":"PLAYTO_SOURCE_AUDIO","features":[428]},{"name":"PLAYTO_SOURCE_CREATEFLAGS","features":[428]},{"name":"PLAYTO_SOURCE_IMAGE","features":[428]},{"name":"PLAYTO_SOURCE_NONE","features":[428]},{"name":"PLAYTO_SOURCE_PROTECTED","features":[428]},{"name":"PLAYTO_SOURCE_VIDEO","features":[428]},{"name":"PRESENTATION_CURRENT_POSITION","features":[428]},{"name":"REQUIRE_PROMPT","features":[428]},{"name":"REQUIRE_SAVE_SELECTED","features":[428]},{"name":"ROI_AREA","features":[305,428]},{"name":"ROTATION_NONE","features":[428]},{"name":"ROTATION_NORMAL","features":[428]},{"name":"SAMPLE_PROTECTION_VERSION","features":[428]},{"name":"SAMPLE_PROTECTION_VERSION_AES128CTR","features":[428]},{"name":"SAMPLE_PROTECTION_VERSION_BASIC_LOKI","features":[428]},{"name":"SAMPLE_PROTECTION_VERSION_NO","features":[428]},{"name":"SAMPLE_PROTECTION_VERSION_RC4","features":[428]},{"name":"SAMPLE_PROTECTION_VERSION_SCATTER","features":[428]},{"name":"SEEK_ORIGIN","features":[428]},{"name":"SENSORPROFILEID","features":[428]},{"name":"SHA_HASH_LEN","features":[428]},{"name":"SINGLE_CHANNEL_AEC","features":[428]},{"name":"SINGLE_CHANNEL_NSAGC","features":[428]},{"name":"STREAM_MEDIUM","features":[428]},{"name":"SYSFXUI_DONOTSHOW_BASSBOOST","features":[428]},{"name":"SYSFXUI_DONOTSHOW_BASSMANAGEMENT","features":[428]},{"name":"SYSFXUI_DONOTSHOW_CHANNELPHANTOMING","features":[428]},{"name":"SYSFXUI_DONOTSHOW_HEADPHONEVIRTUALIZATION","features":[428]},{"name":"SYSFXUI_DONOTSHOW_LOUDNESSEQUALIZATION","features":[428]},{"name":"SYSFXUI_DONOTSHOW_ROOMCORRECTION","features":[428]},{"name":"SYSFXUI_DONOTSHOW_SPEAKERFILLING","features":[428]},{"name":"SYSFXUI_DONOTSHOW_VIRTUALSURROUND","features":[428]},{"name":"SequencerTopologyFlags_Last","features":[428]},{"name":"TIME_FORMAT_BYTE","features":[428]},{"name":"TIME_FORMAT_FIELD","features":[428]},{"name":"TIME_FORMAT_FRAME","features":[428]},{"name":"TIME_FORMAT_MEDIA_TIME","features":[428]},{"name":"TIME_FORMAT_NONE","features":[428]},{"name":"TIME_FORMAT_SAMPLE","features":[428]},{"name":"TOC_DESCRIPTOR","features":[428]},{"name":"TOC_ENTRY_DESCRIPTOR","features":[428]},{"name":"TOC_ENTRY_MAX_TITLE_SIZE","features":[428]},{"name":"TOC_MAX_DESCRIPTION_SIZE","features":[428]},{"name":"TOC_POS_INHEADER","features":[428]},{"name":"TOC_POS_TOPLEVELOBJECT","features":[428]},{"name":"TOC_POS_TYPE","features":[428]},{"name":"UUID_UdriTagTables","features":[428]},{"name":"UUID_WMDRMTagTables","features":[428]},{"name":"VIDEOINFOHEADER","features":[305,316,428]},{"name":"VIDEOINFOHEADER2","features":[305,316,428]},{"name":"VIDEO_ZOOM_RECT","features":[428]},{"name":"VRHP_BIGROOM","features":[428]},{"name":"VRHP_CUSTUMIZEDROOM","features":[428]},{"name":"VRHP_MEDIUMROOM","features":[428]},{"name":"VRHP_SMALLROOM","features":[428]},{"name":"VorbisDecoderMFT","features":[428]},{"name":"WMAAECMA_E_NO_ACTIVE_RENDER_STREAM","features":[428]},{"name":"WMT_PROP_DATATYPE","features":[428]},{"name":"WMT_PROP_TYPE_BINARY","features":[428]},{"name":"WMT_PROP_TYPE_BOOL","features":[428]},{"name":"WMT_PROP_TYPE_DWORD","features":[428]},{"name":"WMT_PROP_TYPE_GUID","features":[428]},{"name":"WMT_PROP_TYPE_QWORD","features":[428]},{"name":"WMT_PROP_TYPE_STRING","features":[428]},{"name":"WMT_PROP_TYPE_WORD","features":[428]},{"name":"WMV_DYNAMIC_BITRATE","features":[428]},{"name":"WMV_DYNAMIC_COMPLEXITY","features":[428]},{"name":"WMV_DYNAMIC_FLAGS","features":[428]},{"name":"WMV_DYNAMIC_RESOLUTION","features":[428]},{"name":"WM_CODEC_ONEPASS_CBR","features":[428]},{"name":"WM_CODEC_ONEPASS_VBR","features":[428]},{"name":"WM_CODEC_TWOPASS_CBR","features":[428]},{"name":"WM_CODEC_TWOPASS_VBR_PEAKCONSTRAINED","features":[428]},{"name":"WM_CODEC_TWOPASS_VBR_UNCONSTRAINED","features":[428]},{"name":"_MFP_CREDENTIAL_FLAGS","features":[428]},{"name":"_MFP_MEDIAITEM_CHARACTERISTICS","features":[428]},{"name":"_MFT_INPUT_DATA_BUFFER_FLAGS","features":[428]},{"name":"_MFT_INPUT_STATUS_FLAGS","features":[428]},{"name":"_MFT_INPUT_STREAM_INFO_FLAGS","features":[428]},{"name":"_MFT_OUTPUT_DATA_BUFFER_FLAGS","features":[428]},{"name":"_MFT_OUTPUT_STATUS_FLAGS","features":[428]},{"name":"_MFT_OUTPUT_STREAM_INFO_FLAGS","features":[428]},{"name":"_MFT_PROCESS_OUTPUT_FLAGS","features":[428]},{"name":"_MFT_PROCESS_OUTPUT_STATUS","features":[428]},{"name":"_MFT_SET_TYPE_FLAGS","features":[428]},{"name":"_msoBegin","features":[428]},{"name":"_msoCurrent","features":[428]},{"name":"eAVAudioChannelConfig","features":[428]},{"name":"eAVAudioChannelConfig_BACK_CENTER","features":[428]},{"name":"eAVAudioChannelConfig_BACK_LEFT","features":[428]},{"name":"eAVAudioChannelConfig_BACK_RIGHT","features":[428]},{"name":"eAVAudioChannelConfig_FRONT_CENTER","features":[428]},{"name":"eAVAudioChannelConfig_FRONT_LEFT","features":[428]},{"name":"eAVAudioChannelConfig_FRONT_LEFT_OF_CENTER","features":[428]},{"name":"eAVAudioChannelConfig_FRONT_RIGHT","features":[428]},{"name":"eAVAudioChannelConfig_FRONT_RIGHT_OF_CENTER","features":[428]},{"name":"eAVAudioChannelConfig_LOW_FREQUENCY","features":[428]},{"name":"eAVAudioChannelConfig_SIDE_LEFT","features":[428]},{"name":"eAVAudioChannelConfig_SIDE_RIGHT","features":[428]},{"name":"eAVAudioChannelConfig_TOP_BACK_CENTER","features":[428]},{"name":"eAVAudioChannelConfig_TOP_BACK_LEFT","features":[428]},{"name":"eAVAudioChannelConfig_TOP_BACK_RIGHT","features":[428]},{"name":"eAVAudioChannelConfig_TOP_CENTER","features":[428]},{"name":"eAVAudioChannelConfig_TOP_FRONT_CENTER","features":[428]},{"name":"eAVAudioChannelConfig_TOP_FRONT_LEFT","features":[428]},{"name":"eAVAudioChannelConfig_TOP_FRONT_RIGHT","features":[428]},{"name":"eAVDDSurroundMode","features":[428]},{"name":"eAVDDSurroundMode_No","features":[428]},{"name":"eAVDDSurroundMode_NotIndicated","features":[428]},{"name":"eAVDDSurroundMode_Yes","features":[428]},{"name":"eAVDSPLoudnessEqualization","features":[428]},{"name":"eAVDSPLoudnessEqualization_AUTO","features":[428]},{"name":"eAVDSPLoudnessEqualization_OFF","features":[428]},{"name":"eAVDSPLoudnessEqualization_ON","features":[428]},{"name":"eAVDSPSpeakerFill","features":[428]},{"name":"eAVDSPSpeakerFill_AUTO","features":[428]},{"name":"eAVDSPSpeakerFill_OFF","features":[428]},{"name":"eAVDSPSpeakerFill_ON","features":[428]},{"name":"eAVDecAACDownmixMode","features":[428]},{"name":"eAVDecAACUseARIBDownmix","features":[428]},{"name":"eAVDecAACUseISODownmix","features":[428]},{"name":"eAVDecAudioDualMono","features":[428]},{"name":"eAVDecAudioDualMonoReproMode","features":[428]},{"name":"eAVDecAudioDualMonoReproMode_LEFT_MONO","features":[428]},{"name":"eAVDecAudioDualMonoReproMode_MIX_MONO","features":[428]},{"name":"eAVDecAudioDualMonoReproMode_RIGHT_MONO","features":[428]},{"name":"eAVDecAudioDualMonoReproMode_STEREO","features":[428]},{"name":"eAVDecAudioDualMono_IsDualMono","features":[428]},{"name":"eAVDecAudioDualMono_IsNotDualMono","features":[428]},{"name":"eAVDecAudioDualMono_UnSpecified","features":[428]},{"name":"eAVDecDDMatrixDecodingMode","features":[428]},{"name":"eAVDecDDMatrixDecodingMode_AUTO","features":[428]},{"name":"eAVDecDDMatrixDecodingMode_OFF","features":[428]},{"name":"eAVDecDDMatrixDecodingMode_ON","features":[428]},{"name":"eAVDecDDOperationalMode","features":[428]},{"name":"eAVDecDDOperationalMode_CUSTOM0","features":[428]},{"name":"eAVDecDDOperationalMode_CUSTOM1","features":[428]},{"name":"eAVDecDDOperationalMode_LINE","features":[428]},{"name":"eAVDecDDOperationalMode_NONE","features":[428]},{"name":"eAVDecDDOperationalMode_PORTABLE11","features":[428]},{"name":"eAVDecDDOperationalMode_PORTABLE14","features":[428]},{"name":"eAVDecDDOperationalMode_PORTABLE8","features":[428]},{"name":"eAVDecDDOperationalMode_RF","features":[428]},{"name":"eAVDecDDStereoDownMixMode","features":[428]},{"name":"eAVDecDDStereoDownMixMode_Auto","features":[428]},{"name":"eAVDecDDStereoDownMixMode_LoRo","features":[428]},{"name":"eAVDecDDStereoDownMixMode_LtRt","features":[428]},{"name":"eAVDecHEAACDynamicRangeControl","features":[428]},{"name":"eAVDecHEAACDynamicRangeControl_OFF","features":[428]},{"name":"eAVDecHEAACDynamicRangeControl_ON","features":[428]},{"name":"eAVDecVideoCodecType","features":[428]},{"name":"eAVDecVideoCodecType_H264","features":[428]},{"name":"eAVDecVideoCodecType_MPEG2","features":[428]},{"name":"eAVDecVideoCodecType_NOTPLAYING","features":[428]},{"name":"eAVDecVideoDXVABusEncryption","features":[428]},{"name":"eAVDecVideoDXVABusEncryption_AES","features":[428]},{"name":"eAVDecVideoDXVABusEncryption_NONE","features":[428]},{"name":"eAVDecVideoDXVABusEncryption_PRIVATE","features":[428]},{"name":"eAVDecVideoDXVAMode","features":[428]},{"name":"eAVDecVideoDXVAMode_IDCT","features":[428]},{"name":"eAVDecVideoDXVAMode_MC","features":[428]},{"name":"eAVDecVideoDXVAMode_NOTPLAYING","features":[428]},{"name":"eAVDecVideoDXVAMode_SW","features":[428]},{"name":"eAVDecVideoDXVAMode_VLD","features":[428]},{"name":"eAVDecVideoH264ErrorConcealment","features":[428]},{"name":"eAVDecVideoInputScanType","features":[428]},{"name":"eAVDecVideoInputScan_Interlaced_LowerFieldFirst","features":[428]},{"name":"eAVDecVideoInputScan_Interlaced_UpperFieldFirst","features":[428]},{"name":"eAVDecVideoInputScan_Progressive","features":[428]},{"name":"eAVDecVideoInputScan_Unknown","features":[428]},{"name":"eAVDecVideoMPEG2ErrorConcealment","features":[428]},{"name":"eAVDecVideoSWPowerLevel","features":[428]},{"name":"eAVDecVideoSWPowerLevel_Balanced","features":[428]},{"name":"eAVDecVideoSWPowerLevel_BatteryLife","features":[428]},{"name":"eAVDecVideoSWPowerLevel_VideoQuality","features":[428]},{"name":"eAVDecVideoSoftwareDeinterlaceMode","features":[428]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_BOBDeinterlacing","features":[428]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_NoDeinterlacing","features":[428]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_ProgressiveDeinterlacing","features":[428]},{"name":"eAVDecVideoSoftwareDeinterlaceMode_SmartBOBDeinterlacing","features":[428]},{"name":"eAVEncAV1PictureType","features":[428]},{"name":"eAVEncAV1PictureType_Inter","features":[428]},{"name":"eAVEncAV1PictureType_Intra_Only","features":[428]},{"name":"eAVEncAV1PictureType_Key","features":[428]},{"name":"eAVEncAV1PictureType_Switch","features":[428]},{"name":"eAVEncAV1VLevel","features":[428]},{"name":"eAVEncAV1VLevel2","features":[428]},{"name":"eAVEncAV1VLevel2_1","features":[428]},{"name":"eAVEncAV1VLevel3","features":[428]},{"name":"eAVEncAV1VLevel3_1","features":[428]},{"name":"eAVEncAV1VLevel4","features":[428]},{"name":"eAVEncAV1VLevel4_1","features":[428]},{"name":"eAVEncAV1VLevel5","features":[428]},{"name":"eAVEncAV1VLevel5_1","features":[428]},{"name":"eAVEncAV1VLevel5_2","features":[428]},{"name":"eAVEncAV1VLevel5_3","features":[428]},{"name":"eAVEncAV1VLevel6","features":[428]},{"name":"eAVEncAV1VLevel6_1","features":[428]},{"name":"eAVEncAV1VLevel6_2","features":[428]},{"name":"eAVEncAV1VLevel6_3","features":[428]},{"name":"eAVEncAV1VProfile","features":[428]},{"name":"eAVEncAV1VProfile_High_444_10","features":[428]},{"name":"eAVEncAV1VProfile_High_444_8","features":[428]},{"name":"eAVEncAV1VProfile_Main_400_10","features":[428]},{"name":"eAVEncAV1VProfile_Main_400_8","features":[428]},{"name":"eAVEncAV1VProfile_Main_420_10","features":[428]},{"name":"eAVEncAV1VProfile_Main_420_8","features":[428]},{"name":"eAVEncAV1VProfile_Professional_400_12","features":[428]},{"name":"eAVEncAV1VProfile_Professional_420_12","features":[428]},{"name":"eAVEncAV1VProfile_Professional_422_10","features":[428]},{"name":"eAVEncAV1VProfile_Professional_422_12","features":[428]},{"name":"eAVEncAV1VProfile_Professional_422_8","features":[428]},{"name":"eAVEncAV1VProfile_Professional_444_12","features":[428]},{"name":"eAVEncAV1VProfile_unknown","features":[428]},{"name":"eAVEncAdaptiveMode","features":[428]},{"name":"eAVEncAdaptiveMode_FrameRate","features":[428]},{"name":"eAVEncAdaptiveMode_None","features":[428]},{"name":"eAVEncAdaptiveMode_Resolution","features":[428]},{"name":"eAVEncAudioDualMono","features":[428]},{"name":"eAVEncAudioDualMono_Off","features":[428]},{"name":"eAVEncAudioDualMono_On","features":[428]},{"name":"eAVEncAudioDualMono_SameAsInput","features":[428]},{"name":"eAVEncAudioInputContent","features":[428]},{"name":"eAVEncChromaEncodeMode","features":[428]},{"name":"eAVEncChromaEncodeMode_420","features":[428]},{"name":"eAVEncChromaEncodeMode_444","features":[428]},{"name":"eAVEncChromaEncodeMode_444_v2","features":[428]},{"name":"eAVEncCommonRateControlMode","features":[428]},{"name":"eAVEncCommonRateControlMode_CBR","features":[428]},{"name":"eAVEncCommonRateControlMode_GlobalLowDelayVBR","features":[428]},{"name":"eAVEncCommonRateControlMode_GlobalVBR","features":[428]},{"name":"eAVEncCommonRateControlMode_LowDelayVBR","features":[428]},{"name":"eAVEncCommonRateControlMode_PeakConstrainedVBR","features":[428]},{"name":"eAVEncCommonRateControlMode_Quality","features":[428]},{"name":"eAVEncCommonRateControlMode_UnconstrainedVBR","features":[428]},{"name":"eAVEncCommonStreamEndHandling","features":[428]},{"name":"eAVEncCommonStreamEndHandling_DiscardPartial","features":[428]},{"name":"eAVEncCommonStreamEndHandling_EnsureComplete","features":[428]},{"name":"eAVEncDDAtoDConverterType","features":[428]},{"name":"eAVEncDDAtoDConverterType_HDCD","features":[428]},{"name":"eAVEncDDAtoDConverterType_Standard","features":[428]},{"name":"eAVEncDDDynamicRangeCompressionControl","features":[428]},{"name":"eAVEncDDDynamicRangeCompressionControl_FilmLight","features":[428]},{"name":"eAVEncDDDynamicRangeCompressionControl_FilmStandard","features":[428]},{"name":"eAVEncDDDynamicRangeCompressionControl_MusicLight","features":[428]},{"name":"eAVEncDDDynamicRangeCompressionControl_MusicStandard","features":[428]},{"name":"eAVEncDDDynamicRangeCompressionControl_None","features":[428]},{"name":"eAVEncDDDynamicRangeCompressionControl_Speech","features":[428]},{"name":"eAVEncDDHeadphoneMode","features":[428]},{"name":"eAVEncDDHeadphoneMode_Encoded","features":[428]},{"name":"eAVEncDDHeadphoneMode_NotEncoded","features":[428]},{"name":"eAVEncDDHeadphoneMode_NotIndicated","features":[428]},{"name":"eAVEncDDPreferredStereoDownMixMode","features":[428]},{"name":"eAVEncDDPreferredStereoDownMixMode_LoRo","features":[428]},{"name":"eAVEncDDPreferredStereoDownMixMode_LtRt","features":[428]},{"name":"eAVEncDDProductionRoomType","features":[428]},{"name":"eAVEncDDProductionRoomType_Large","features":[428]},{"name":"eAVEncDDProductionRoomType_NotIndicated","features":[428]},{"name":"eAVEncDDProductionRoomType_Small","features":[428]},{"name":"eAVEncDDService","features":[428]},{"name":"eAVEncDDService_C","features":[428]},{"name":"eAVEncDDService_CM","features":[428]},{"name":"eAVEncDDService_D","features":[428]},{"name":"eAVEncDDService_E","features":[428]},{"name":"eAVEncDDService_HI","features":[428]},{"name":"eAVEncDDService_ME","features":[428]},{"name":"eAVEncDDService_VI","features":[428]},{"name":"eAVEncDDService_VO","features":[428]},{"name":"eAVEncDDSurroundExMode","features":[428]},{"name":"eAVEncDDSurroundExMode_No","features":[428]},{"name":"eAVEncDDSurroundExMode_NotIndicated","features":[428]},{"name":"eAVEncDDSurroundExMode_Yes","features":[428]},{"name":"eAVEncH263PictureType","features":[428]},{"name":"eAVEncH263PictureType_B","features":[428]},{"name":"eAVEncH263PictureType_I","features":[428]},{"name":"eAVEncH263PictureType_P","features":[428]},{"name":"eAVEncH263VLevel","features":[428]},{"name":"eAVEncH263VLevel1","features":[428]},{"name":"eAVEncH263VLevel2","features":[428]},{"name":"eAVEncH263VLevel3","features":[428]},{"name":"eAVEncH263VLevel4","features":[428]},{"name":"eAVEncH263VLevel4_5","features":[428]},{"name":"eAVEncH263VLevel5","features":[428]},{"name":"eAVEncH263VLevel6","features":[428]},{"name":"eAVEncH263VLevel7","features":[428]},{"name":"eAVEncH263VProfile","features":[428]},{"name":"eAVEncH263VProfile_Base","features":[428]},{"name":"eAVEncH263VProfile_CompatibilityV1","features":[428]},{"name":"eAVEncH263VProfile_CompatibilityV2","features":[428]},{"name":"eAVEncH263VProfile_HighCompression","features":[428]},{"name":"eAVEncH263VProfile_HighLatency","features":[428]},{"name":"eAVEncH263VProfile_Interlace","features":[428]},{"name":"eAVEncH263VProfile_Internet","features":[428]},{"name":"eAVEncH263VProfile_WirelessV2","features":[428]},{"name":"eAVEncH263VProfile_WirelessV3","features":[428]},{"name":"eAVEncH264PictureType","features":[428]},{"name":"eAVEncH264PictureType_B","features":[428]},{"name":"eAVEncH264PictureType_IDR","features":[428]},{"name":"eAVEncH264PictureType_P","features":[428]},{"name":"eAVEncH264VLevel","features":[428]},{"name":"eAVEncH264VLevel1","features":[428]},{"name":"eAVEncH264VLevel1_1","features":[428]},{"name":"eAVEncH264VLevel1_2","features":[428]},{"name":"eAVEncH264VLevel1_3","features":[428]},{"name":"eAVEncH264VLevel1_b","features":[428]},{"name":"eAVEncH264VLevel2","features":[428]},{"name":"eAVEncH264VLevel2_1","features":[428]},{"name":"eAVEncH264VLevel2_2","features":[428]},{"name":"eAVEncH264VLevel3","features":[428]},{"name":"eAVEncH264VLevel3_1","features":[428]},{"name":"eAVEncH264VLevel3_2","features":[428]},{"name":"eAVEncH264VLevel4","features":[428]},{"name":"eAVEncH264VLevel4_1","features":[428]},{"name":"eAVEncH264VLevel4_2","features":[428]},{"name":"eAVEncH264VLevel5","features":[428]},{"name":"eAVEncH264VLevel5_1","features":[428]},{"name":"eAVEncH264VLevel5_2","features":[428]},{"name":"eAVEncH264VProfile","features":[428]},{"name":"eAVEncH264VProfile_422","features":[428]},{"name":"eAVEncH264VProfile_444","features":[428]},{"name":"eAVEncH264VProfile_Base","features":[428]},{"name":"eAVEncH264VProfile_ConstrainedBase","features":[428]},{"name":"eAVEncH264VProfile_Extended","features":[428]},{"name":"eAVEncH264VProfile_High","features":[428]},{"name":"eAVEncH264VProfile_High10","features":[428]},{"name":"eAVEncH264VProfile_Main","features":[428]},{"name":"eAVEncH264VProfile_MultiviewHigh","features":[428]},{"name":"eAVEncH264VProfile_ScalableBase","features":[428]},{"name":"eAVEncH264VProfile_ScalableHigh","features":[428]},{"name":"eAVEncH264VProfile_Simple","features":[428]},{"name":"eAVEncH264VProfile_StereoHigh","features":[428]},{"name":"eAVEncH264VProfile_UCConstrainedHigh","features":[428]},{"name":"eAVEncH264VProfile_UCScalableConstrainedBase","features":[428]},{"name":"eAVEncH264VProfile_UCScalableConstrainedHigh","features":[428]},{"name":"eAVEncH264VProfile_unknown","features":[428]},{"name":"eAVEncH265VLevel","features":[428]},{"name":"eAVEncH265VLevel1","features":[428]},{"name":"eAVEncH265VLevel2","features":[428]},{"name":"eAVEncH265VLevel2_1","features":[428]},{"name":"eAVEncH265VLevel3","features":[428]},{"name":"eAVEncH265VLevel3_1","features":[428]},{"name":"eAVEncH265VLevel4","features":[428]},{"name":"eAVEncH265VLevel4_1","features":[428]},{"name":"eAVEncH265VLevel5","features":[428]},{"name":"eAVEncH265VLevel5_1","features":[428]},{"name":"eAVEncH265VLevel5_2","features":[428]},{"name":"eAVEncH265VLevel6","features":[428]},{"name":"eAVEncH265VLevel6_1","features":[428]},{"name":"eAVEncH265VLevel6_2","features":[428]},{"name":"eAVEncH265VProfile","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_420_10","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_420_12","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_420_8","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_422_10","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_422_12","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_444_10","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_444_12","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_444_16","features":[428]},{"name":"eAVEncH265VProfile_MainIntra_444_8","features":[428]},{"name":"eAVEncH265VProfile_MainStill_420_8","features":[428]},{"name":"eAVEncH265VProfile_MainStill_444_16","features":[428]},{"name":"eAVEncH265VProfile_MainStill_444_8","features":[428]},{"name":"eAVEncH265VProfile_Main_420_10","features":[428]},{"name":"eAVEncH265VProfile_Main_420_12","features":[428]},{"name":"eAVEncH265VProfile_Main_420_8","features":[428]},{"name":"eAVEncH265VProfile_Main_422_10","features":[428]},{"name":"eAVEncH265VProfile_Main_422_12","features":[428]},{"name":"eAVEncH265VProfile_Main_444_10","features":[428]},{"name":"eAVEncH265VProfile_Main_444_12","features":[428]},{"name":"eAVEncH265VProfile_Main_444_8","features":[428]},{"name":"eAVEncH265VProfile_Monochrome_12","features":[428]},{"name":"eAVEncH265VProfile_Monochrome_16","features":[428]},{"name":"eAVEncH265VProfile_unknown","features":[428]},{"name":"eAVEncInputVideoSystem","features":[428]},{"name":"eAVEncInputVideoSystem_Component","features":[428]},{"name":"eAVEncInputVideoSystem_HDV","features":[428]},{"name":"eAVEncInputVideoSystem_MAC","features":[428]},{"name":"eAVEncInputVideoSystem_NTSC","features":[428]},{"name":"eAVEncInputVideoSystem_PAL","features":[428]},{"name":"eAVEncInputVideoSystem_SECAM","features":[428]},{"name":"eAVEncInputVideoSystem_Unspecified","features":[428]},{"name":"eAVEncMPACodingMode","features":[428]},{"name":"eAVEncMPACodingMode_DualChannel","features":[428]},{"name":"eAVEncMPACodingMode_JointStereo","features":[428]},{"name":"eAVEncMPACodingMode_Mono","features":[428]},{"name":"eAVEncMPACodingMode_Stereo","features":[428]},{"name":"eAVEncMPACodingMode_Surround","features":[428]},{"name":"eAVEncMPAEmphasisType","features":[428]},{"name":"eAVEncMPAEmphasisType_50_15","features":[428]},{"name":"eAVEncMPAEmphasisType_CCITT_J17","features":[428]},{"name":"eAVEncMPAEmphasisType_None","features":[428]},{"name":"eAVEncMPAEmphasisType_Reserved","features":[428]},{"name":"eAVEncMPALayer","features":[428]},{"name":"eAVEncMPALayer_1","features":[428]},{"name":"eAVEncMPALayer_2","features":[428]},{"name":"eAVEncMPALayer_3","features":[428]},{"name":"eAVEncMPVFrameFieldMode","features":[428]},{"name":"eAVEncMPVFrameFieldMode_FieldMode","features":[428]},{"name":"eAVEncMPVFrameFieldMode_FrameMode","features":[428]},{"name":"eAVEncMPVIntraVLCTable","features":[428]},{"name":"eAVEncMPVIntraVLCTable_Alternate","features":[428]},{"name":"eAVEncMPVIntraVLCTable_Auto","features":[428]},{"name":"eAVEncMPVIntraVLCTable_MPEG1","features":[428]},{"name":"eAVEncMPVLevel","features":[428]},{"name":"eAVEncMPVLevel_High","features":[428]},{"name":"eAVEncMPVLevel_High1440","features":[428]},{"name":"eAVEncMPVLevel_Low","features":[428]},{"name":"eAVEncMPVLevel_Main","features":[428]},{"name":"eAVEncMPVProfile","features":[428]},{"name":"eAVEncMPVProfile_422","features":[428]},{"name":"eAVEncMPVProfile_High","features":[428]},{"name":"eAVEncMPVProfile_Main","features":[428]},{"name":"eAVEncMPVProfile_Simple","features":[428]},{"name":"eAVEncMPVProfile_unknown","features":[428]},{"name":"eAVEncMPVQScaleType","features":[428]},{"name":"eAVEncMPVQScaleType_Auto","features":[428]},{"name":"eAVEncMPVQScaleType_Linear","features":[428]},{"name":"eAVEncMPVQScaleType_NonLinear","features":[428]},{"name":"eAVEncMPVScanPattern","features":[428]},{"name":"eAVEncMPVScanPattern_AlternateScan","features":[428]},{"name":"eAVEncMPVScanPattern_Auto","features":[428]},{"name":"eAVEncMPVScanPattern_ZigZagScan","features":[428]},{"name":"eAVEncMPVSceneDetection","features":[428]},{"name":"eAVEncMPVSceneDetection_InsertIPicture","features":[428]},{"name":"eAVEncMPVSceneDetection_None","features":[428]},{"name":"eAVEncMPVSceneDetection_StartNewGOP","features":[428]},{"name":"eAVEncMPVSceneDetection_StartNewLocatableGOP","features":[428]},{"name":"eAVEncMuxOutput","features":[428]},{"name":"eAVEncMuxOutputAuto","features":[428]},{"name":"eAVEncMuxOutputPS","features":[428]},{"name":"eAVEncMuxOutputTS","features":[428]},{"name":"eAVEncVP9VProfile","features":[428]},{"name":"eAVEncVP9VProfile_420_10","features":[428]},{"name":"eAVEncVP9VProfile_420_12","features":[428]},{"name":"eAVEncVP9VProfile_420_8","features":[428]},{"name":"eAVEncVP9VProfile_unknown","features":[428]},{"name":"eAVEncVideoChromaResolution","features":[428]},{"name":"eAVEncVideoChromaResolution_411","features":[428]},{"name":"eAVEncVideoChromaResolution_420","features":[428]},{"name":"eAVEncVideoChromaResolution_422","features":[428]},{"name":"eAVEncVideoChromaResolution_444","features":[428]},{"name":"eAVEncVideoChromaResolution_SameAsSource","features":[428]},{"name":"eAVEncVideoChromaSubsampling","features":[428]},{"name":"eAVEncVideoChromaSubsamplingFormat_Horizontally_Cosited","features":[428]},{"name":"eAVEncVideoChromaSubsamplingFormat_ProgressiveChroma","features":[428]},{"name":"eAVEncVideoChromaSubsamplingFormat_SameAsSource","features":[428]},{"name":"eAVEncVideoChromaSubsamplingFormat_Vertically_AlignedChromaPlanes","features":[428]},{"name":"eAVEncVideoChromaSubsamplingFormat_Vertically_Cosited","features":[428]},{"name":"eAVEncVideoColorLighting","features":[428]},{"name":"eAVEncVideoColorLighting_Bright","features":[428]},{"name":"eAVEncVideoColorLighting_Dark","features":[428]},{"name":"eAVEncVideoColorLighting_Dim","features":[428]},{"name":"eAVEncVideoColorLighting_Office","features":[428]},{"name":"eAVEncVideoColorLighting_SameAsSource","features":[428]},{"name":"eAVEncVideoColorLighting_Unknown","features":[428]},{"name":"eAVEncVideoColorNominalRange","features":[428]},{"name":"eAVEncVideoColorNominalRange_0_255","features":[428]},{"name":"eAVEncVideoColorNominalRange_16_235","features":[428]},{"name":"eAVEncVideoColorNominalRange_48_208","features":[428]},{"name":"eAVEncVideoColorNominalRange_SameAsSource","features":[428]},{"name":"eAVEncVideoColorPrimaries","features":[428]},{"name":"eAVEncVideoColorPrimaries_BT470_2_SysBG","features":[428]},{"name":"eAVEncVideoColorPrimaries_BT470_2_SysM","features":[428]},{"name":"eAVEncVideoColorPrimaries_BT709","features":[428]},{"name":"eAVEncVideoColorPrimaries_EBU3231","features":[428]},{"name":"eAVEncVideoColorPrimaries_Reserved","features":[428]},{"name":"eAVEncVideoColorPrimaries_SMPTE170M","features":[428]},{"name":"eAVEncVideoColorPrimaries_SMPTE240M","features":[428]},{"name":"eAVEncVideoColorPrimaries_SMPTE_C","features":[428]},{"name":"eAVEncVideoColorPrimaries_SameAsSource","features":[428]},{"name":"eAVEncVideoColorTransferFunction","features":[428]},{"name":"eAVEncVideoColorTransferFunction_10","features":[428]},{"name":"eAVEncVideoColorTransferFunction_18","features":[428]},{"name":"eAVEncVideoColorTransferFunction_20","features":[428]},{"name":"eAVEncVideoColorTransferFunction_22","features":[428]},{"name":"eAVEncVideoColorTransferFunction_22_240M","features":[428]},{"name":"eAVEncVideoColorTransferFunction_22_709","features":[428]},{"name":"eAVEncVideoColorTransferFunction_22_8bit_sRGB","features":[428]},{"name":"eAVEncVideoColorTransferFunction_28","features":[428]},{"name":"eAVEncVideoColorTransferFunction_SameAsSource","features":[428]},{"name":"eAVEncVideoColorTransferMatrix","features":[428]},{"name":"eAVEncVideoColorTransferMatrix_BT601","features":[428]},{"name":"eAVEncVideoColorTransferMatrix_BT709","features":[428]},{"name":"eAVEncVideoColorTransferMatrix_SMPTE240M","features":[428]},{"name":"eAVEncVideoColorTransferMatrix_SameAsSource","features":[428]},{"name":"eAVEncVideoContentType","features":[428]},{"name":"eAVEncVideoContentType_FixedCameraAngle","features":[428]},{"name":"eAVEncVideoContentType_Unknown","features":[428]},{"name":"eAVEncVideoFilmContent","features":[428]},{"name":"eAVEncVideoFilmContent_FilmOnly","features":[428]},{"name":"eAVEncVideoFilmContent_Mixed","features":[428]},{"name":"eAVEncVideoFilmContent_VideoOnly","features":[428]},{"name":"eAVEncVideoOutputFrameRateConversion","features":[428]},{"name":"eAVEncVideoOutputFrameRateConversion_Alias","features":[428]},{"name":"eAVEncVideoOutputFrameRateConversion_Disable","features":[428]},{"name":"eAVEncVideoOutputFrameRateConversion_Enable","features":[428]},{"name":"eAVEncVideoOutputScanType","features":[428]},{"name":"eAVEncVideoOutputScan_Automatic","features":[428]},{"name":"eAVEncVideoOutputScan_Interlaced","features":[428]},{"name":"eAVEncVideoOutputScan_Progressive","features":[428]},{"name":"eAVEncVideoOutputScan_SameAsInput","features":[428]},{"name":"eAVEncVideoSourceScanType","features":[428]},{"name":"eAVEncVideoSourceScan_Automatic","features":[428]},{"name":"eAVEncVideoSourceScan_Interlaced","features":[428]},{"name":"eAVEncVideoSourceScan_Progressive","features":[428]},{"name":"eAVFastDecodeMode","features":[428]},{"name":"eAVScenarioInfo","features":[428]},{"name":"eAVScenarioInfo_Archive","features":[428]},{"name":"eAVScenarioInfo_CameraRecord","features":[428]},{"name":"eAVScenarioInfo_DisplayRemoting","features":[428]},{"name":"eAVScenarioInfo_DisplayRemotingWithFeatureMap","features":[428]},{"name":"eAVScenarioInfo_LiveStreaming","features":[428]},{"name":"eAVScenarioInfo_Unknown","features":[428]},{"name":"eAVScenarioInfo_VideoConference","features":[428]},{"name":"eAllocationTypeDynamic","features":[428]},{"name":"eAllocationTypeIgnore","features":[428]},{"name":"eAllocationTypePageable","features":[428]},{"name":"eAllocationTypeRT","features":[428]},{"name":"eErrorConcealmentOff","features":[428]},{"name":"eErrorConcealmentOn","features":[428]},{"name":"eErrorConcealmentTypeAdvanced","features":[428]},{"name":"eErrorConcealmentTypeBasic","features":[428]},{"name":"eErrorConcealmentTypeDXVASetBlack","features":[428]},{"name":"eErrorConcealmentTypeDrop","features":[428]},{"name":"eVideoDecodeCompliant","features":[428]},{"name":"eVideoDecodeDisableLF","features":[428]},{"name":"eVideoDecodeFastest","features":[428]},{"name":"eVideoDecodeOptimalLF","features":[428]},{"name":"eVideoEncoderDisplayContentType","features":[428]},{"name":"eVideoEncoderDisplayContent_FullScreenVideo","features":[428]},{"name":"eVideoEncoderDisplayContent_Unknown","features":[428]},{"name":"g_wszSpeechFormatCaps","features":[428]},{"name":"g_wszWMCPAudioVBRQuality","features":[428]},{"name":"g_wszWMCPAudioVBRSupported","features":[428]},{"name":"g_wszWMCPCodecName","features":[428]},{"name":"g_wszWMCPDefaultCrisp","features":[428]},{"name":"g_wszWMCPMaxPasses","features":[428]},{"name":"g_wszWMCPSupportedVBRModes","features":[428]},{"name":"msoBegin","features":[428]},{"name":"msoCurrent","features":[428]}],"439":[{"name":"CLSID_WMPMediaPluginRegistrar","features":[435]},{"name":"CLSID_WMPSkinManager","features":[435]},{"name":"CLSID_XFeedsManager","features":[435]},{"name":"DISPID_DELTA","features":[435]},{"name":"DISPID_FEEDENCLOSURE_AsyncDownload","features":[435]},{"name":"DISPID_FEEDENCLOSURE_CancelAsyncDownload","features":[435]},{"name":"DISPID_FEEDENCLOSURE_DownloadMimeType","features":[435]},{"name":"DISPID_FEEDENCLOSURE_DownloadStatus","features":[435]},{"name":"DISPID_FEEDENCLOSURE_DownloadUrl","features":[435]},{"name":"DISPID_FEEDENCLOSURE_LastDownloadError","features":[435]},{"name":"DISPID_FEEDENCLOSURE_Length","features":[435]},{"name":"DISPID_FEEDENCLOSURE_LocalPath","features":[435]},{"name":"DISPID_FEEDENCLOSURE_Parent","features":[435]},{"name":"DISPID_FEEDENCLOSURE_RemoveFile","features":[435]},{"name":"DISPID_FEEDENCLOSURE_SetFile","features":[435]},{"name":"DISPID_FEEDENCLOSURE_Type","features":[435]},{"name":"DISPID_FEEDENCLOSURE_Url","features":[435]},{"name":"DISPID_FEEDEVENTS_Error","features":[435]},{"name":"DISPID_FEEDEVENTS_FeedDeleted","features":[435]},{"name":"DISPID_FEEDEVENTS_FeedDownloadCompleted","features":[435]},{"name":"DISPID_FEEDEVENTS_FeedDownloading","features":[435]},{"name":"DISPID_FEEDEVENTS_FeedItemCountChanged","features":[435]},{"name":"DISPID_FEEDEVENTS_FeedMoved","features":[435]},{"name":"DISPID_FEEDEVENTS_FeedRenamed","features":[435]},{"name":"DISPID_FEEDEVENTS_FeedUrlChanged","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_Error","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedAdded","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedDeleted","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedDownloadCompleted","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedDownloading","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedItemCountChanged","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedMovedFrom","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedMovedTo","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedRenamed","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FeedUrlChanged","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderAdded","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderDeleted","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderItemCountChanged","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderMovedFrom","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderMovedTo","features":[435]},{"name":"DISPID_FEEDFOLDEREVENTS_FolderRenamed","features":[435]},{"name":"DISPID_FEEDFOLDER_CreateFeed","features":[435]},{"name":"DISPID_FEEDFOLDER_CreateSubfolder","features":[435]},{"name":"DISPID_FEEDFOLDER_Delete","features":[435]},{"name":"DISPID_FEEDFOLDER_ExistsFeed","features":[435]},{"name":"DISPID_FEEDFOLDER_ExistsSubfolder","features":[435]},{"name":"DISPID_FEEDFOLDER_Feeds","features":[435]},{"name":"DISPID_FEEDFOLDER_GetFeed","features":[435]},{"name":"DISPID_FEEDFOLDER_GetSubfolder","features":[435]},{"name":"DISPID_FEEDFOLDER_GetWatcher","features":[435]},{"name":"DISPID_FEEDFOLDER_IsRoot","features":[435]},{"name":"DISPID_FEEDFOLDER_Move","features":[435]},{"name":"DISPID_FEEDFOLDER_Name","features":[435]},{"name":"DISPID_FEEDFOLDER_Parent","features":[435]},{"name":"DISPID_FEEDFOLDER_Path","features":[435]},{"name":"DISPID_FEEDFOLDER_Rename","features":[435]},{"name":"DISPID_FEEDFOLDER_Subfolders","features":[435]},{"name":"DISPID_FEEDFOLDER_TotalItemCount","features":[435]},{"name":"DISPID_FEEDFOLDER_TotalUnreadItemCount","features":[435]},{"name":"DISPID_FEEDITEM_Author","features":[435]},{"name":"DISPID_FEEDITEM_Comments","features":[435]},{"name":"DISPID_FEEDITEM_Delete","features":[435]},{"name":"DISPID_FEEDITEM_Description","features":[435]},{"name":"DISPID_FEEDITEM_DownloadUrl","features":[435]},{"name":"DISPID_FEEDITEM_EffectiveId","features":[435]},{"name":"DISPID_FEEDITEM_Enclosure","features":[435]},{"name":"DISPID_FEEDITEM_Guid","features":[435]},{"name":"DISPID_FEEDITEM_IsRead","features":[435]},{"name":"DISPID_FEEDITEM_LastDownloadTime","features":[435]},{"name":"DISPID_FEEDITEM_Link","features":[435]},{"name":"DISPID_FEEDITEM_LocalId","features":[435]},{"name":"DISPID_FEEDITEM_Modified","features":[435]},{"name":"DISPID_FEEDITEM_Parent","features":[435]},{"name":"DISPID_FEEDITEM_PubDate","features":[435]},{"name":"DISPID_FEEDITEM_Title","features":[435]},{"name":"DISPID_FEEDITEM_Xml","features":[435]},{"name":"DISPID_FEEDSENUM_Count","features":[435]},{"name":"DISPID_FEEDSENUM_Item","features":[435]},{"name":"DISPID_FEEDS_AsyncSyncAll","features":[435]},{"name":"DISPID_FEEDS_BackgroundSync","features":[435]},{"name":"DISPID_FEEDS_BackgroundSyncStatus","features":[435]},{"name":"DISPID_FEEDS_DefaultInterval","features":[435]},{"name":"DISPID_FEEDS_DeleteFeed","features":[435]},{"name":"DISPID_FEEDS_DeleteFolder","features":[435]},{"name":"DISPID_FEEDS_ExistsFeed","features":[435]},{"name":"DISPID_FEEDS_ExistsFolder","features":[435]},{"name":"DISPID_FEEDS_GetFeed","features":[435]},{"name":"DISPID_FEEDS_GetFeedByUrl","features":[435]},{"name":"DISPID_FEEDS_GetFolder","features":[435]},{"name":"DISPID_FEEDS_IsSubscribed","features":[435]},{"name":"DISPID_FEEDS_ItemCountLimit","features":[435]},{"name":"DISPID_FEEDS_Normalize","features":[435]},{"name":"DISPID_FEEDS_RootFolder","features":[435]},{"name":"DISPID_FEED_AsyncDownload","features":[435]},{"name":"DISPID_FEED_CancelAsyncDownload","features":[435]},{"name":"DISPID_FEED_ClearCredentials","features":[435]},{"name":"DISPID_FEED_Copyright","features":[435]},{"name":"DISPID_FEED_Delete","features":[435]},{"name":"DISPID_FEED_Description","features":[435]},{"name":"DISPID_FEED_Download","features":[435]},{"name":"DISPID_FEED_DownloadEnclosuresAutomatically","features":[435]},{"name":"DISPID_FEED_DownloadStatus","features":[435]},{"name":"DISPID_FEED_DownloadUrl","features":[435]},{"name":"DISPID_FEED_GetItem","features":[435]},{"name":"DISPID_FEED_GetItemByEffectiveId","features":[435]},{"name":"DISPID_FEED_GetWatcher","features":[435]},{"name":"DISPID_FEED_Image","features":[435]},{"name":"DISPID_FEED_Interval","features":[435]},{"name":"DISPID_FEED_IsList","features":[435]},{"name":"DISPID_FEED_ItemCount","features":[435]},{"name":"DISPID_FEED_Items","features":[435]},{"name":"DISPID_FEED_Language","features":[435]},{"name":"DISPID_FEED_LastBuildDate","features":[435]},{"name":"DISPID_FEED_LastDownloadError","features":[435]},{"name":"DISPID_FEED_LastDownloadTime","features":[435]},{"name":"DISPID_FEED_LastItemDownloadTime","features":[435]},{"name":"DISPID_FEED_LastWriteTime","features":[435]},{"name":"DISPID_FEED_Link","features":[435]},{"name":"DISPID_FEED_LocalEnclosurePath","features":[435]},{"name":"DISPID_FEED_LocalId","features":[435]},{"name":"DISPID_FEED_MarkAllItemsRead","features":[435]},{"name":"DISPID_FEED_MaxItemCount","features":[435]},{"name":"DISPID_FEED_Merge","features":[435]},{"name":"DISPID_FEED_Move","features":[435]},{"name":"DISPID_FEED_Name","features":[435]},{"name":"DISPID_FEED_Parent","features":[435]},{"name":"DISPID_FEED_Password","features":[435]},{"name":"DISPID_FEED_Path","features":[435]},{"name":"DISPID_FEED_PubDate","features":[435]},{"name":"DISPID_FEED_Rename","features":[435]},{"name":"DISPID_FEED_SetCredentials","features":[435]},{"name":"DISPID_FEED_SyncSetting","features":[435]},{"name":"DISPID_FEED_Title","features":[435]},{"name":"DISPID_FEED_Ttl","features":[435]},{"name":"DISPID_FEED_UnreadItemCount","features":[435]},{"name":"DISPID_FEED_Url","features":[435]},{"name":"DISPID_FEED_Username","features":[435]},{"name":"DISPID_FEED_Xml","features":[435]},{"name":"DISPID_WMPCDROMCOLLECTION_BASE","features":[435]},{"name":"DISPID_WMPCDROMCOLLECTION_COUNT","features":[435]},{"name":"DISPID_WMPCDROMCOLLECTION_GETBYDRIVESPECIFIER","features":[435]},{"name":"DISPID_WMPCDROMCOLLECTION_ITEM","features":[435]},{"name":"DISPID_WMPCDROMCOLLECTION_STARTMONITORINGCDROMS","features":[435]},{"name":"DISPID_WMPCDROMCOLLECTION_STOPMONITORINGCDROMS","features":[435]},{"name":"DISPID_WMPCDROM_BASE","features":[435]},{"name":"DISPID_WMPCDROM_DRIVESPECIFIER","features":[435]},{"name":"DISPID_WMPCDROM_EJECT","features":[435]},{"name":"DISPID_WMPCDROM_PLAYLIST","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETLANGCOUNT","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETLANGID","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETLANGNAME","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETSTYLECOUNT","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION2_GETSTYLENAME","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION_BASE","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION_CAPTIONINGID","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION_SAMIFILENAME","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION_SAMILANG","features":[435]},{"name":"DISPID_WMPCLOSEDCAPTION_SAMISTYLE","features":[435]},{"name":"DISPID_WMPCONTROLS2_STEP","features":[435]},{"name":"DISPID_WMPCONTROLS3_AUDIOLANGUAGECOUNT","features":[435]},{"name":"DISPID_WMPCONTROLS3_CURRENTAUDIOLANGUAGE","features":[435]},{"name":"DISPID_WMPCONTROLS3_CURRENTAUDIOLANGUAGEINDEX","features":[435]},{"name":"DISPID_WMPCONTROLS3_CURRENTPOSITIONTIMECODE","features":[435]},{"name":"DISPID_WMPCONTROLS3_GETAUDIOLANGUAGEDESC","features":[435]},{"name":"DISPID_WMPCONTROLS3_GETAUDIOLANGUAGEID","features":[435]},{"name":"DISPID_WMPCONTROLS3_GETLANGUAGENAME","features":[435]},{"name":"DISPID_WMPCONTROLSFAKE_TIMECOMPRESSION","features":[435]},{"name":"DISPID_WMPCONTROLS_BASE","features":[435]},{"name":"DISPID_WMPCONTROLS_CURRENTITEM","features":[435]},{"name":"DISPID_WMPCONTROLS_CURRENTMARKER","features":[435]},{"name":"DISPID_WMPCONTROLS_CURRENTPOSITION","features":[435]},{"name":"DISPID_WMPCONTROLS_CURRENTPOSITIONSTRING","features":[435]},{"name":"DISPID_WMPCONTROLS_FASTFORWARD","features":[435]},{"name":"DISPID_WMPCONTROLS_FASTREVERSE","features":[435]},{"name":"DISPID_WMPCONTROLS_ISAVAILABLE","features":[435]},{"name":"DISPID_WMPCONTROLS_NEXT","features":[435]},{"name":"DISPID_WMPCONTROLS_PAUSE","features":[435]},{"name":"DISPID_WMPCONTROLS_PLAY","features":[435]},{"name":"DISPID_WMPCONTROLS_PLAYITEM","features":[435]},{"name":"DISPID_WMPCONTROLS_PREVIOUS","features":[435]},{"name":"DISPID_WMPCONTROLS_STOP","features":[435]},{"name":"DISPID_WMPCORE2_BASE","features":[435]},{"name":"DISPID_WMPCORE2_DVD","features":[435]},{"name":"DISPID_WMPCORE3_NEWMEDIA","features":[435]},{"name":"DISPID_WMPCORE3_NEWPLAYLIST","features":[435]},{"name":"DISPID_WMPCOREEVENT_AUDIOLANGUAGECHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_BUFFERING","features":[435]},{"name":"DISPID_WMPCOREEVENT_CDROMMEDIACHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_CURRENTITEMCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_CURRENTMEDIAITEMAVAILABLE","features":[435]},{"name":"DISPID_WMPCOREEVENT_CURRENTPLAYLISTCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_CURRENTPLAYLISTITEMAVAILABLE","features":[435]},{"name":"DISPID_WMPCOREEVENT_DISCONNECT","features":[435]},{"name":"DISPID_WMPCOREEVENT_DOMAINCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_DURATIONUNITCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_ENDOFSTREAM","features":[435]},{"name":"DISPID_WMPCOREEVENT_ERROR","features":[435]},{"name":"DISPID_WMPCOREEVENT_MARKERHIT","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONATTRIBUTESTRINGADDED","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONATTRIBUTESTRINGCHANGED","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONATTRIBUTESTRINGREMOVED","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONCONTENTSCANADDEDITEM","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONCONTENTSCANPROGRESS","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONMEDIAADDED","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONMEDIAREMOVED","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONSEARCHCOMPLETE","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONSEARCHFOUNDITEM","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIACOLLECTIONSEARCHPROGRESS","features":[435]},{"name":"DISPID_WMPCOREEVENT_MEDIAERROR","features":[435]},{"name":"DISPID_WMPCOREEVENT_MODECHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_NEWSTREAM","features":[435]},{"name":"DISPID_WMPCOREEVENT_OPENPLAYLISTSWITCH","features":[435]},{"name":"DISPID_WMPCOREEVENT_OPENSTATECHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONPLAYLISTADDED","features":[435]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONPLAYLISTREMOVED","features":[435]},{"name":"DISPID_WMPCOREEVENT_PLAYLISTCOLLECTIONPLAYLISTSETASDELETED","features":[435]},{"name":"DISPID_WMPCOREEVENT_PLAYSTATECHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_POSITIONCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_SCRIPTCOMMAND","features":[435]},{"name":"DISPID_WMPCOREEVENT_STATUSCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_STRINGCOLLECTIONCHANGE","features":[435]},{"name":"DISPID_WMPCOREEVENT_WARNING","features":[435]},{"name":"DISPID_WMPCORE_BASE","features":[435]},{"name":"DISPID_WMPCORE_CDROMCOLLECTION","features":[435]},{"name":"DISPID_WMPCORE_CLOSE","features":[435]},{"name":"DISPID_WMPCORE_CLOSEDCAPTION","features":[435]},{"name":"DISPID_WMPCORE_CONTROLS","features":[435]},{"name":"DISPID_WMPCORE_CURRENTMEDIA","features":[435]},{"name":"DISPID_WMPCORE_CURRENTPLAYLIST","features":[435]},{"name":"DISPID_WMPCORE_ERROR","features":[435]},{"name":"DISPID_WMPCORE_ISONLINE","features":[435]},{"name":"DISPID_WMPCORE_LAST","features":[435]},{"name":"DISPID_WMPCORE_LAUNCHURL","features":[435]},{"name":"DISPID_WMPCORE_MAX","features":[435]},{"name":"DISPID_WMPCORE_MEDIACOLLECTION","features":[435]},{"name":"DISPID_WMPCORE_MIN","features":[435]},{"name":"DISPID_WMPCORE_NETWORK","features":[435]},{"name":"DISPID_WMPCORE_OPENSTATE","features":[435]},{"name":"DISPID_WMPCORE_PLAYLISTCOLLECTION","features":[435]},{"name":"DISPID_WMPCORE_PLAYSTATE","features":[435]},{"name":"DISPID_WMPCORE_SETTINGS","features":[435]},{"name":"DISPID_WMPCORE_STATUS","features":[435]},{"name":"DISPID_WMPCORE_URL","features":[435]},{"name":"DISPID_WMPCORE_VERSIONINFO","features":[435]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_BASE","features":[435]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_CLEAR","features":[435]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_COUNT","features":[435]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_ID","features":[435]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_ITEM","features":[435]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_REMOVEITEM","features":[435]},{"name":"DISPID_WMPDOWNLOADCOLLECTION_STARTDOWNLOAD","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM2_BASE","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM2_GETITEMINFO","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_BASE","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_CANCEL","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_DOWNLOADSTATE","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_PAUSE","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_PROGRESS","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_RESUME","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_SIZE","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_SOURCEURL","features":[435]},{"name":"DISPID_WMPDOWNLOADITEM_TYPE","features":[435]},{"name":"DISPID_WMPDOWNLOADMANAGER_BASE","features":[435]},{"name":"DISPID_WMPDOWNLOADMANAGER_CREATEDOWNLOADCOLLECTION","features":[435]},{"name":"DISPID_WMPDOWNLOADMANAGER_GETDOWNLOADCOLLECTION","features":[435]},{"name":"DISPID_WMPDVD_BACK","features":[435]},{"name":"DISPID_WMPDVD_BASE","features":[435]},{"name":"DISPID_WMPDVD_DOMAIN","features":[435]},{"name":"DISPID_WMPDVD_ISAVAILABLE","features":[435]},{"name":"DISPID_WMPDVD_RESUME","features":[435]},{"name":"DISPID_WMPDVD_TITLEMENU","features":[435]},{"name":"DISPID_WMPDVD_TOPMENU","features":[435]},{"name":"DISPID_WMPERRORITEM2_CONDITION","features":[435]},{"name":"DISPID_WMPERRORITEM_BASE","features":[435]},{"name":"DISPID_WMPERRORITEM_CUSTOMURL","features":[435]},{"name":"DISPID_WMPERRORITEM_ERRORCODE","features":[435]},{"name":"DISPID_WMPERRORITEM_ERRORCONTEXT","features":[435]},{"name":"DISPID_WMPERRORITEM_ERRORDESCRIPTION","features":[435]},{"name":"DISPID_WMPERRORITEM_REMEDY","features":[435]},{"name":"DISPID_WMPERROR_BASE","features":[435]},{"name":"DISPID_WMPERROR_CLEARERRORQUEUE","features":[435]},{"name":"DISPID_WMPERROR_ERRORCOUNT","features":[435]},{"name":"DISPID_WMPERROR_ITEM","features":[435]},{"name":"DISPID_WMPERROR_WEBHELP","features":[435]},{"name":"DISPID_WMPMEDIA2_ERROR","features":[435]},{"name":"DISPID_WMPMEDIA3_GETATTRIBUTECOUNTBYTYPE","features":[435]},{"name":"DISPID_WMPMEDIA3_GETITEMINFOBYTYPE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION2_BASE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION2_CREATEQUERY","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION2_GETBYATTRANDMEDIATYPE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION2_GETPLAYLISTBYQUERY","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION2_GETSTRINGCOLLBYQUERY","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_ADD","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_BASE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_FREEZECOLLECTIONCHANGE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETALL","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETATTRIBUTESTRINGCOLLECTION","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYALBUM","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYATTRIBUTE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYAUTHOR","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYGENRE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYNAME","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETBYQUERYDESCRIPTION","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_GETMEDIAATOM","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_ISDELETED","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_NEWQUERY","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_POSTCOLLECTIONCHANGE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_REMOVE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_SETDELETED","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_STARTCONTENTSCAN","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_STARTMONITORING","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_STARTSEARCH","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_STOPCONTENTSCAN","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_STOPMONITORING","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_STOPSEARCH","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_UNFREEZECOLLECTIONCHANGE","features":[435]},{"name":"DISPID_WMPMEDIACOLLECTION_UPDATEMETADATA","features":[435]},{"name":"DISPID_WMPMEDIA_ATTRIBUTECOUNT","features":[435]},{"name":"DISPID_WMPMEDIA_BASE","features":[435]},{"name":"DISPID_WMPMEDIA_DURATION","features":[435]},{"name":"DISPID_WMPMEDIA_DURATIONSTRING","features":[435]},{"name":"DISPID_WMPMEDIA_GETATTRIBUTENAME","features":[435]},{"name":"DISPID_WMPMEDIA_GETITEMINFO","features":[435]},{"name":"DISPID_WMPMEDIA_GETITEMINFOBYATOM","features":[435]},{"name":"DISPID_WMPMEDIA_GETMARKERNAME","features":[435]},{"name":"DISPID_WMPMEDIA_GETMARKERTIME","features":[435]},{"name":"DISPID_WMPMEDIA_IMAGESOURCEHEIGHT","features":[435]},{"name":"DISPID_WMPMEDIA_IMAGESOURCEWIDTH","features":[435]},{"name":"DISPID_WMPMEDIA_ISIDENTICAL","features":[435]},{"name":"DISPID_WMPMEDIA_ISMEMBEROF","features":[435]},{"name":"DISPID_WMPMEDIA_ISREADONLYITEM","features":[435]},{"name":"DISPID_WMPMEDIA_MARKERCOUNT","features":[435]},{"name":"DISPID_WMPMEDIA_NAME","features":[435]},{"name":"DISPID_WMPMEDIA_SETITEMINFO","features":[435]},{"name":"DISPID_WMPMEDIA_SOURCEURL","features":[435]},{"name":"DISPID_WMPMETADATA_BASE","features":[435]},{"name":"DISPID_WMPMETADATA_PICTURE_DESCRIPTION","features":[435]},{"name":"DISPID_WMPMETADATA_PICTURE_MIMETYPE","features":[435]},{"name":"DISPID_WMPMETADATA_PICTURE_PICTURETYPE","features":[435]},{"name":"DISPID_WMPMETADATA_PICTURE_URL","features":[435]},{"name":"DISPID_WMPMETADATA_TEXT_DESCRIPTION","features":[435]},{"name":"DISPID_WMPMETADATA_TEXT_TEXT","features":[435]},{"name":"DISPID_WMPNETWORK_BANDWIDTH","features":[435]},{"name":"DISPID_WMPNETWORK_BASE","features":[435]},{"name":"DISPID_WMPNETWORK_BITRATE","features":[435]},{"name":"DISPID_WMPNETWORK_BUFFERINGCOUNT","features":[435]},{"name":"DISPID_WMPNETWORK_BUFFERINGPROGRESS","features":[435]},{"name":"DISPID_WMPNETWORK_BUFFERINGTIME","features":[435]},{"name":"DISPID_WMPNETWORK_DOWNLOADPROGRESS","features":[435]},{"name":"DISPID_WMPNETWORK_ENCODEDFRAMERATE","features":[435]},{"name":"DISPID_WMPNETWORK_FRAMERATE","features":[435]},{"name":"DISPID_WMPNETWORK_FRAMESSKIPPED","features":[435]},{"name":"DISPID_WMPNETWORK_GETPROXYBYPASSFORLOCAL","features":[435]},{"name":"DISPID_WMPNETWORK_GETPROXYEXCEPTIONLIST","features":[435]},{"name":"DISPID_WMPNETWORK_GETPROXYNAME","features":[435]},{"name":"DISPID_WMPNETWORK_GETPROXYPORT","features":[435]},{"name":"DISPID_WMPNETWORK_GETPROXYSETTINGS","features":[435]},{"name":"DISPID_WMPNETWORK_LOSTPACKETS","features":[435]},{"name":"DISPID_WMPNETWORK_MAXBANDWIDTH","features":[435]},{"name":"DISPID_WMPNETWORK_MAXBITRATE","features":[435]},{"name":"DISPID_WMPNETWORK_RECEIVEDPACKETS","features":[435]},{"name":"DISPID_WMPNETWORK_RECEPTIONQUALITY","features":[435]},{"name":"DISPID_WMPNETWORK_RECOVEREDPACKETS","features":[435]},{"name":"DISPID_WMPNETWORK_SETPROXYBYPASSFORLOCAL","features":[435]},{"name":"DISPID_WMPNETWORK_SETPROXYEXCEPTIONLIST","features":[435]},{"name":"DISPID_WMPNETWORK_SETPROXYNAME","features":[435]},{"name":"DISPID_WMPNETWORK_SETPROXYPORT","features":[435]},{"name":"DISPID_WMPNETWORK_SETPROXYSETTINGS","features":[435]},{"name":"DISPID_WMPNETWORK_SOURCEPROTOCOL","features":[435]},{"name":"DISPID_WMPOCX2_BASE","features":[435]},{"name":"DISPID_WMPOCX2_STRETCHTOFIT","features":[435]},{"name":"DISPID_WMPOCX2_WINDOWLESSVIDEO","features":[435]},{"name":"DISPID_WMPOCX4_ISREMOTE","features":[435]},{"name":"DISPID_WMPOCX4_OPENPLAYER","features":[435]},{"name":"DISPID_WMPOCX4_PLAYERAPPLICATION","features":[435]},{"name":"DISPID_WMPOCXEVENT_CDROMBURNERROR","features":[435]},{"name":"DISPID_WMPOCXEVENT_CDROMBURNMEDIAERROR","features":[435]},{"name":"DISPID_WMPOCXEVENT_CDROMBURNSTATECHANGE","features":[435]},{"name":"DISPID_WMPOCXEVENT_CDROMRIPMEDIAERROR","features":[435]},{"name":"DISPID_WMPOCXEVENT_CDROMRIPSTATECHANGE","features":[435]},{"name":"DISPID_WMPOCXEVENT_CLICK","features":[435]},{"name":"DISPID_WMPOCXEVENT_CREATEPARTNERSHIPCOMPLETE","features":[435]},{"name":"DISPID_WMPOCXEVENT_DEVICECONNECT","features":[435]},{"name":"DISPID_WMPOCXEVENT_DEVICEDISCONNECT","features":[435]},{"name":"DISPID_WMPOCXEVENT_DEVICEESTIMATION","features":[435]},{"name":"DISPID_WMPOCXEVENT_DEVICESTATUSCHANGE","features":[435]},{"name":"DISPID_WMPOCXEVENT_DEVICESYNCERROR","features":[435]},{"name":"DISPID_WMPOCXEVENT_DEVICESYNCSTATECHANGE","features":[435]},{"name":"DISPID_WMPOCXEVENT_DOUBLECLICK","features":[435]},{"name":"DISPID_WMPOCXEVENT_FOLDERSCANSTATECHANGE","features":[435]},{"name":"DISPID_WMPOCXEVENT_KEYDOWN","features":[435]},{"name":"DISPID_WMPOCXEVENT_KEYPRESS","features":[435]},{"name":"DISPID_WMPOCXEVENT_KEYUP","features":[435]},{"name":"DISPID_WMPOCXEVENT_LIBRARYCONNECT","features":[435]},{"name":"DISPID_WMPOCXEVENT_LIBRARYDISCONNECT","features":[435]},{"name":"DISPID_WMPOCXEVENT_MOUSEDOWN","features":[435]},{"name":"DISPID_WMPOCXEVENT_MOUSEMOVE","features":[435]},{"name":"DISPID_WMPOCXEVENT_MOUSEUP","features":[435]},{"name":"DISPID_WMPOCXEVENT_PLAYERDOCKEDSTATECHANGE","features":[435]},{"name":"DISPID_WMPOCXEVENT_PLAYERRECONNECT","features":[435]},{"name":"DISPID_WMPOCXEVENT_SWITCHEDTOCONTROL","features":[435]},{"name":"DISPID_WMPOCXEVENT_SWITCHEDTOPLAYERAPPLICATION","features":[435]},{"name":"DISPID_WMPOCX_BASE","features":[435]},{"name":"DISPID_WMPOCX_ENABLECONTEXTMENU","features":[435]},{"name":"DISPID_WMPOCX_ENABLED","features":[435]},{"name":"DISPID_WMPOCX_FULLSCREEN","features":[435]},{"name":"DISPID_WMPOCX_LAST","features":[435]},{"name":"DISPID_WMPOCX_TRANSPARENTATSTART","features":[435]},{"name":"DISPID_WMPOCX_UIMODE","features":[435]},{"name":"DISPID_WMPPLAYERAPP_BASE","features":[435]},{"name":"DISPID_WMPPLAYERAPP_HASDISPLAY","features":[435]},{"name":"DISPID_WMPPLAYERAPP_PLAYERDOCKED","features":[435]},{"name":"DISPID_WMPPLAYERAPP_REMOTESTATUS","features":[435]},{"name":"DISPID_WMPPLAYERAPP_SWITCHTOCONTROL","features":[435]},{"name":"DISPID_WMPPLAYERAPP_SWITCHTOPLAYERAPPLICATION","features":[435]},{"name":"DISPID_WMPPLAYLISTARRAY_BASE","features":[435]},{"name":"DISPID_WMPPLAYLISTARRAY_COUNT","features":[435]},{"name":"DISPID_WMPPLAYLISTARRAY_ITEM","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_BASE","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_GETALL","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_GETBYNAME","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_GETBYQUERYDESCRIPTION","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_IMPORTPLAYLIST","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_ISDELETED","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_NEWPLAYLIST","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_NEWQUERY","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_REMOVE","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_SETDELETED","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_STARTMONITORING","features":[435]},{"name":"DISPID_WMPPLAYLISTCOLLECTION_STOPMONITORING","features":[435]},{"name":"DISPID_WMPPLAYLIST_APPENDITEM","features":[435]},{"name":"DISPID_WMPPLAYLIST_ATTRIBUTECOUNT","features":[435]},{"name":"DISPID_WMPPLAYLIST_ATTRIBUTENAME","features":[435]},{"name":"DISPID_WMPPLAYLIST_BASE","features":[435]},{"name":"DISPID_WMPPLAYLIST_CLEAR","features":[435]},{"name":"DISPID_WMPPLAYLIST_COUNT","features":[435]},{"name":"DISPID_WMPPLAYLIST_GETITEMINFO","features":[435]},{"name":"DISPID_WMPPLAYLIST_INSERTITEM","features":[435]},{"name":"DISPID_WMPPLAYLIST_ISIDENTICAL","features":[435]},{"name":"DISPID_WMPPLAYLIST_ITEM","features":[435]},{"name":"DISPID_WMPPLAYLIST_MOVEITEM","features":[435]},{"name":"DISPID_WMPPLAYLIST_NAME","features":[435]},{"name":"DISPID_WMPPLAYLIST_REMOVEITEM","features":[435]},{"name":"DISPID_WMPPLAYLIST_SETITEMINFO","features":[435]},{"name":"DISPID_WMPQUERY_ADDCONDITION","features":[435]},{"name":"DISPID_WMPQUERY_BASE","features":[435]},{"name":"DISPID_WMPQUERY_BEGINNEXTGROUP","features":[435]},{"name":"DISPID_WMPSETTINGS2_DEFAULTAUDIOLANGUAGE","features":[435]},{"name":"DISPID_WMPSETTINGS2_LIBRARYACCESSRIGHTS","features":[435]},{"name":"DISPID_WMPSETTINGS2_REQUESTLIBRARYACCESSRIGHTS","features":[435]},{"name":"DISPID_WMPSETTINGS_AUTOSTART","features":[435]},{"name":"DISPID_WMPSETTINGS_BALANCE","features":[435]},{"name":"DISPID_WMPSETTINGS_BASE","features":[435]},{"name":"DISPID_WMPSETTINGS_BASEURL","features":[435]},{"name":"DISPID_WMPSETTINGS_DEFAULTFRAME","features":[435]},{"name":"DISPID_WMPSETTINGS_ENABLEERRORDIALOGS","features":[435]},{"name":"DISPID_WMPSETTINGS_GETMODE","features":[435]},{"name":"DISPID_WMPSETTINGS_INVOKEURLS","features":[435]},{"name":"DISPID_WMPSETTINGS_ISAVAILABLE","features":[435]},{"name":"DISPID_WMPSETTINGS_MUTE","features":[435]},{"name":"DISPID_WMPSETTINGS_PLAYCOUNT","features":[435]},{"name":"DISPID_WMPSETTINGS_RATE","features":[435]},{"name":"DISPID_WMPSETTINGS_SETMODE","features":[435]},{"name":"DISPID_WMPSETTINGS_VOLUME","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION2_BASE","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION2_GETATTRCOUNTBYTYPE","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION2_GETITEMINFO","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION2_GETITEMINFOBYTYPE","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION2_ISIDENTICAL","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION_BASE","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION_COUNT","features":[435]},{"name":"DISPID_WMPSTRINGCOLLECTION_ITEM","features":[435]},{"name":"EFFECT2_FULLSCREENEXCLUSIVE","features":[435]},{"name":"EFFECT_CANGOFULLSCREEN","features":[435]},{"name":"EFFECT_HASPROPERTYPAGE","features":[435]},{"name":"EFFECT_VARIABLEFREQSTEP","features":[435]},{"name":"EFFECT_WINDOWEDONLY","features":[435]},{"name":"FBSA_DISABLE","features":[435]},{"name":"FBSA_ENABLE","features":[435]},{"name":"FBSA_RUNNOW","features":[435]},{"name":"FBSS_DISABLED","features":[435]},{"name":"FBSS_ENABLED","features":[435]},{"name":"FDE_ACCESS_DENIED","features":[435]},{"name":"FDE_AUTH_FAILED","features":[435]},{"name":"FDE_BACKGROUND_DOWNLOAD_DISABLED","features":[435]},{"name":"FDE_CANCELED","features":[435]},{"name":"FDE_DOWNLOAD_BLOCKED","features":[435]},{"name":"FDE_DOWNLOAD_FAILED","features":[435]},{"name":"FDE_DOWNLOAD_SIZE_LIMIT_EXCEEDED","features":[435]},{"name":"FDE_INVALID_AUTH","features":[435]},{"name":"FDE_INVALID_FEED_FORMAT","features":[435]},{"name":"FDE_NONE","features":[435]},{"name":"FDE_NORMALIZATION_FAILED","features":[435]},{"name":"FDE_NOT_EXIST","features":[435]},{"name":"FDE_PERSISTENCE_FAILED","features":[435]},{"name":"FDE_UNSUPPORTED_AUTH","features":[435]},{"name":"FDE_UNSUPPORTED_DTD","features":[435]},{"name":"FDE_UNSUPPORTED_MSXML","features":[435]},{"name":"FDS_DOWNLOADED","features":[435]},{"name":"FDS_DOWNLOADING","features":[435]},{"name":"FDS_DOWNLOAD_FAILED","features":[435]},{"name":"FDS_NONE","features":[435]},{"name":"FDS_PENDING","features":[435]},{"name":"FEC_E_DOWNLOADSIZELIMITEXCEEDED","features":[435]},{"name":"FEC_E_ERRORBASE","features":[435]},{"name":"FEC_E_INVALIDMSXMLPROPERTY","features":[435]},{"name":"FEEDS_BACKGROUNDSYNC_ACTION","features":[435]},{"name":"FEEDS_BACKGROUNDSYNC_STATUS","features":[435]},{"name":"FEEDS_DOWNLOAD_ERROR","features":[435]},{"name":"FEEDS_DOWNLOAD_STATUS","features":[435]},{"name":"FEEDS_ERROR_CODE","features":[435]},{"name":"FEEDS_EVENTS_ITEM_COUNT_FLAGS","features":[435]},{"name":"FEEDS_EVENTS_MASK","features":[435]},{"name":"FEEDS_EVENTS_SCOPE","features":[435]},{"name":"FEEDS_SYNC_SETTING","features":[435]},{"name":"FEEDS_XML_FILTER_FLAGS","features":[435]},{"name":"FEEDS_XML_INCLUDE_FLAGS","features":[435]},{"name":"FEEDS_XML_SORT_ORDER","features":[435]},{"name":"FEEDS_XML_SORT_PROPERTY","features":[435]},{"name":"FEICF_READ_ITEM_COUNT_CHANGED","features":[435]},{"name":"FEICF_UNREAD_ITEM_COUNT_CHANGED","features":[435]},{"name":"FEM_FEEDEVENTS","features":[435]},{"name":"FEM_FOLDEREVENTS","features":[435]},{"name":"FES_ALL","features":[435]},{"name":"FES_SELF_AND_CHILDREN_ONLY","features":[435]},{"name":"FES_SELF_ONLY","features":[435]},{"name":"FSS_DEFAULT","features":[435]},{"name":"FSS_INTERVAL","features":[435]},{"name":"FSS_MANUAL","features":[435]},{"name":"FSS_SUGGESTED","features":[435]},{"name":"FXFF_ALL","features":[435]},{"name":"FXFF_READ","features":[435]},{"name":"FXFF_UNREAD","features":[435]},{"name":"FXIF_CF_EXTENSIONS","features":[435]},{"name":"FXIF_NONE","features":[435]},{"name":"FXSO_ASCENDING","features":[435]},{"name":"FXSO_DESCENDING","features":[435]},{"name":"FXSO_NONE","features":[435]},{"name":"FXSP_DOWNLOADTIME","features":[435]},{"name":"FXSP_NONE","features":[435]},{"name":"FXSP_PUBDATE","features":[435]},{"name":"FeedFolderWatcher","features":[435]},{"name":"FeedWatcher","features":[435]},{"name":"FeedsManager","features":[435]},{"name":"IFeed","features":[435,356]},{"name":"IFeed2","features":[435,356]},{"name":"IFeedEnclosure","features":[435,356]},{"name":"IFeedEvents","features":[435,356]},{"name":"IFeedFolder","features":[435,356]},{"name":"IFeedFolderEvents","features":[435,356]},{"name":"IFeedItem","features":[435,356]},{"name":"IFeedItem2","features":[435,356]},{"name":"IFeedsEnum","features":[435,356]},{"name":"IFeedsManager","features":[435,356]},{"name":"IOCTL_WMP_DEVICE_CAN_SYNC","features":[435]},{"name":"IOCTL_WMP_METADATA_ROUND_TRIP","features":[435]},{"name":"IWMPAudioRenderConfig","features":[435]},{"name":"IWMPCdrom","features":[435,356]},{"name":"IWMPCdromBurn","features":[435]},{"name":"IWMPCdromCollection","features":[435,356]},{"name":"IWMPCdromRip","features":[435]},{"name":"IWMPClosedCaption","features":[435,356]},{"name":"IWMPClosedCaption2","features":[435,356]},{"name":"IWMPContentContainer","features":[435]},{"name":"IWMPContentContainerList","features":[435]},{"name":"IWMPContentPartner","features":[435]},{"name":"IWMPContentPartnerCallback","features":[435]},{"name":"IWMPControls","features":[435,356]},{"name":"IWMPControls2","features":[435,356]},{"name":"IWMPControls3","features":[435,356]},{"name":"IWMPConvert","features":[435]},{"name":"IWMPCore","features":[435,356]},{"name":"IWMPCore2","features":[435,356]},{"name":"IWMPCore3","features":[435,356]},{"name":"IWMPDVD","features":[435,356]},{"name":"IWMPDownloadCollection","features":[435,356]},{"name":"IWMPDownloadItem","features":[435,356]},{"name":"IWMPDownloadItem2","features":[435,356]},{"name":"IWMPDownloadManager","features":[435,356]},{"name":"IWMPEffects","features":[435]},{"name":"IWMPEffects2","features":[435]},{"name":"IWMPError","features":[435,356]},{"name":"IWMPErrorItem","features":[435,356]},{"name":"IWMPErrorItem2","features":[435,356]},{"name":"IWMPEvents","features":[435]},{"name":"IWMPEvents2","features":[435]},{"name":"IWMPEvents3","features":[435]},{"name":"IWMPEvents4","features":[435]},{"name":"IWMPFolderMonitorServices","features":[435]},{"name":"IWMPGraphCreation","features":[435]},{"name":"IWMPLibrary","features":[435]},{"name":"IWMPLibrary2","features":[435]},{"name":"IWMPLibraryServices","features":[435]},{"name":"IWMPLibrarySharingServices","features":[435]},{"name":"IWMPMedia","features":[435,356]},{"name":"IWMPMedia2","features":[435,356]},{"name":"IWMPMedia3","features":[435,356]},{"name":"IWMPMediaCollection","features":[435,356]},{"name":"IWMPMediaCollection2","features":[435,356]},{"name":"IWMPMediaPluginRegistrar","features":[435]},{"name":"IWMPMetadataPicture","features":[435,356]},{"name":"IWMPMetadataText","features":[435,356]},{"name":"IWMPNetwork","features":[435,356]},{"name":"IWMPNodeRealEstate","features":[435]},{"name":"IWMPNodeRealEstateHost","features":[435]},{"name":"IWMPNodeWindowed","features":[435]},{"name":"IWMPNodeWindowedHost","features":[435]},{"name":"IWMPNodeWindowless","features":[435]},{"name":"IWMPNodeWindowlessHost","features":[435]},{"name":"IWMPPlayer","features":[435,356]},{"name":"IWMPPlayer2","features":[435,356]},{"name":"IWMPPlayer3","features":[435,356]},{"name":"IWMPPlayer4","features":[435,356]},{"name":"IWMPPlayerApplication","features":[435,356]},{"name":"IWMPPlayerServices","features":[435]},{"name":"IWMPPlayerServices2","features":[435]},{"name":"IWMPPlaylist","features":[435,356]},{"name":"IWMPPlaylistArray","features":[435,356]},{"name":"IWMPPlaylistCollection","features":[435,356]},{"name":"IWMPPlugin","features":[435]},{"name":"IWMPPluginEnable","features":[435]},{"name":"IWMPPluginUI","features":[435]},{"name":"IWMPQuery","features":[435,356]},{"name":"IWMPRemoteMediaServices","features":[435]},{"name":"IWMPRenderConfig","features":[435]},{"name":"IWMPServices","features":[435]},{"name":"IWMPSettings","features":[435,356]},{"name":"IWMPSettings2","features":[435,356]},{"name":"IWMPSkinManager","features":[435]},{"name":"IWMPStringCollection","features":[435,356]},{"name":"IWMPStringCollection2","features":[435,356]},{"name":"IWMPSubscriptionService","features":[435]},{"name":"IWMPSubscriptionService2","features":[435]},{"name":"IWMPSubscriptionServiceCallback","features":[435]},{"name":"IWMPSyncDevice","features":[435]},{"name":"IWMPSyncDevice2","features":[435]},{"name":"IWMPSyncDevice3","features":[435]},{"name":"IWMPSyncServices","features":[435]},{"name":"IWMPTranscodePolicy","features":[435]},{"name":"IWMPUserEventSink","features":[435]},{"name":"IWMPVideoRenderConfig","features":[435]},{"name":"IWMPWindowMessageSink","features":[435]},{"name":"IXFeed","features":[435]},{"name":"IXFeed2","features":[435]},{"name":"IXFeedEnclosure","features":[435]},{"name":"IXFeedEvents","features":[435]},{"name":"IXFeedFolder","features":[435]},{"name":"IXFeedFolderEvents","features":[435]},{"name":"IXFeedItem","features":[435]},{"name":"IXFeedItem2","features":[435]},{"name":"IXFeedsEnum","features":[435]},{"name":"IXFeedsManager","features":[435]},{"name":"PLUGIN_ALL_MEDIASENDTO","features":[435]},{"name":"PLUGIN_ALL_PLAYLISTSENDTO","features":[435]},{"name":"PLUGIN_FLAGS_ACCEPTSMEDIA","features":[435]},{"name":"PLUGIN_FLAGS_ACCEPTSPLAYLISTS","features":[435]},{"name":"PLUGIN_FLAGS_HASPRESETS","features":[435]},{"name":"PLUGIN_FLAGS_HASPROPERTYPAGE","features":[435]},{"name":"PLUGIN_FLAGS_HIDDEN","features":[435]},{"name":"PLUGIN_FLAGS_INSTALLAUTORUN","features":[435]},{"name":"PLUGIN_FLAGS_LAUNCHPROPERTYPAGE","features":[435]},{"name":"PLUGIN_INSTALLREGKEY","features":[435]},{"name":"PLUGIN_INSTALLREGKEY_CAPABILITIES","features":[435]},{"name":"PLUGIN_INSTALLREGKEY_DESCRIPTION","features":[435]},{"name":"PLUGIN_INSTALLREGKEY_FRIENDLYNAME","features":[435]},{"name":"PLUGIN_INSTALLREGKEY_UNINSTALL","features":[435]},{"name":"PLUGIN_MISC_CURRENTPRESET","features":[435]},{"name":"PLUGIN_MISC_PRESETCOUNT","features":[435]},{"name":"PLUGIN_MISC_PRESETNAMES","features":[435]},{"name":"PLUGIN_MISC_QUERYDESTROY","features":[435]},{"name":"PLUGIN_SEPARATEWINDOW_DEFAULTHEIGHT","features":[435]},{"name":"PLUGIN_SEPARATEWINDOW_DEFAULTWIDTH","features":[435]},{"name":"PLUGIN_SEPARATEWINDOW_MAXHEIGHT","features":[435]},{"name":"PLUGIN_SEPARATEWINDOW_MAXWIDTH","features":[435]},{"name":"PLUGIN_SEPARATEWINDOW_MINHEIGHT","features":[435]},{"name":"PLUGIN_SEPARATEWINDOW_MINWIDTH","features":[435]},{"name":"PLUGIN_SEPARATEWINDOW_RESIZABLE","features":[435]},{"name":"PLUGIN_TYPE_BACKGROUND","features":[435]},{"name":"PLUGIN_TYPE_DISPLAYAREA","features":[435]},{"name":"PLUGIN_TYPE_METADATAAREA","features":[435]},{"name":"PLUGIN_TYPE_SEPARATEWINDOW","features":[435]},{"name":"PLUGIN_TYPE_SETTINGSAREA","features":[435]},{"name":"PlayerState","features":[435]},{"name":"SA_BUFFER_SIZE","features":[435]},{"name":"SUBSCRIPTION_CAP_ALLOWCDBURN","features":[435]},{"name":"SUBSCRIPTION_CAP_ALLOWPDATRANSFER","features":[435]},{"name":"SUBSCRIPTION_CAP_ALLOWPLAY","features":[435]},{"name":"SUBSCRIPTION_CAP_ALTLOGIN","features":[435]},{"name":"SUBSCRIPTION_CAP_BACKGROUNDPROCESSING","features":[435]},{"name":"SUBSCRIPTION_CAP_DEVICEAVAILABLE","features":[435]},{"name":"SUBSCRIPTION_CAP_IS_CONTENTPARTNER","features":[435]},{"name":"SUBSCRIPTION_CAP_PREPAREFORSYNC","features":[435]},{"name":"SUBSCRIPTION_CAP_UILESSMODE_ALLOWPLAY","features":[435]},{"name":"SUBSCRIPTION_V1_CAPS","features":[435]},{"name":"TimedLevel","features":[435]},{"name":"WMPAccountType","features":[435]},{"name":"WMPBurnFormat","features":[435]},{"name":"WMPBurnState","features":[435]},{"name":"WMPCOREEVENT_BASE","features":[435]},{"name":"WMPCOREEVENT_CDROM_BASE","features":[435]},{"name":"WMPCOREEVENT_CONTENT_BASE","features":[435]},{"name":"WMPCOREEVENT_CONTROL_BASE","features":[435]},{"name":"WMPCOREEVENT_ERROR_BASE","features":[435]},{"name":"WMPCOREEVENT_NETWORK_BASE","features":[435]},{"name":"WMPCOREEVENT_PLAYLIST_BASE","features":[435]},{"name":"WMPCOREEVENT_SEEK_BASE","features":[435]},{"name":"WMPCOREEVENT_WARNING_BASE","features":[435]},{"name":"WMPCallbackNotification","features":[435]},{"name":"WMPContextMenuInfo","features":[435]},{"name":"WMPDeviceStatus","features":[435]},{"name":"WMPFolderScanState","features":[435]},{"name":"WMPGC_FLAGS_ALLOW_PREROLL","features":[435]},{"name":"WMPGC_FLAGS_DISABLE_PLUGINS","features":[435]},{"name":"WMPGC_FLAGS_IGNORE_AV_SYNC","features":[435]},{"name":"WMPGC_FLAGS_SUPPRESS_DIALOGS","features":[435]},{"name":"WMPGC_FLAGS_USE_CUSTOM_GRAPH","features":[435]},{"name":"WMPLib","features":[435]},{"name":"WMPLibraryType","features":[435]},{"name":"WMPOCXEVENT_BASE","features":[435]},{"name":"WMPOpenState","features":[435]},{"name":"WMPPartnerNotification","features":[435]},{"name":"WMPPlayState","features":[435]},{"name":"WMPPlaylistChangeEventType","features":[435]},{"name":"WMPPlugin_Caps","features":[435]},{"name":"WMPPlugin_Caps_CannotConvertFormats","features":[435]},{"name":"WMPRemoteMediaServices","features":[435]},{"name":"WMPRipState","features":[435]},{"name":"WMPServices_StreamState","features":[435]},{"name":"WMPServices_StreamState_Pause","features":[435]},{"name":"WMPServices_StreamState_Play","features":[435]},{"name":"WMPServices_StreamState_Stop","features":[435]},{"name":"WMPStreamingType","features":[435]},{"name":"WMPStringCollectionChangeEventType","features":[435]},{"name":"WMPSubscriptionDownloadState","features":[435]},{"name":"WMPSubscriptionServiceEvent","features":[435]},{"name":"WMPSyncState","features":[435]},{"name":"WMPTaskType","features":[435]},{"name":"WMPTemplateSize","features":[435]},{"name":"WMPTransactionType","features":[435]},{"name":"WMPUE_EC_USER","features":[435]},{"name":"WMP_MDRT_FLAGS_UNREPORTED_ADDED_ITEMS","features":[435]},{"name":"WMP_MDRT_FLAGS_UNREPORTED_DELETED_ITEMS","features":[435]},{"name":"WMP_PLUGINTYPE_DSP","features":[435]},{"name":"WMP_PLUGINTYPE_DSP_OUTOFPROC","features":[435]},{"name":"WMP_PLUGINTYPE_RENDERING","features":[435]},{"name":"WMP_SUBSCR_DL_TYPE_BACKGROUND","features":[435]},{"name":"WMP_SUBSCR_DL_TYPE_REALTIME","features":[435]},{"name":"WMP_WMDM_METADATA_ROUND_TRIP_DEVICE2PC","features":[435]},{"name":"WMP_WMDM_METADATA_ROUND_TRIP_PC2DEVICE","features":[435]},{"name":"WMProfile_V40_100Video","features":[435]},{"name":"WMProfile_V40_128Audio","features":[435]},{"name":"WMProfile_V40_16AMRadio","features":[435]},{"name":"WMProfile_V40_1MBVideo","features":[435]},{"name":"WMProfile_V40_250Video","features":[435]},{"name":"WMProfile_V40_2856100MBR","features":[435]},{"name":"WMProfile_V40_288FMRadioMono","features":[435]},{"name":"WMProfile_V40_288FMRadioStereo","features":[435]},{"name":"WMProfile_V40_288VideoAudio","features":[435]},{"name":"WMProfile_V40_288VideoVoice","features":[435]},{"name":"WMProfile_V40_288VideoWebServer","features":[435]},{"name":"WMProfile_V40_3MBVideo","features":[435]},{"name":"WMProfile_V40_512Video","features":[435]},{"name":"WMProfile_V40_56DialUpStereo","features":[435]},{"name":"WMProfile_V40_56DialUpVideo","features":[435]},{"name":"WMProfile_V40_56DialUpVideoWebServer","features":[435]},{"name":"WMProfile_V40_64Audio","features":[435]},{"name":"WMProfile_V40_6VoiceAudio","features":[435]},{"name":"WMProfile_V40_96Audio","features":[435]},{"name":"WMProfile_V40_DialUpMBR","features":[435]},{"name":"WMProfile_V40_IntranetMBR","features":[435]},{"name":"WMProfile_V70_100Video","features":[435]},{"name":"WMProfile_V70_128Audio","features":[435]},{"name":"WMProfile_V70_1500FilmContentVideo","features":[435]},{"name":"WMProfile_V70_1500Video","features":[435]},{"name":"WMProfile_V70_150VideoPDA","features":[435]},{"name":"WMProfile_V70_2000Video","features":[435]},{"name":"WMProfile_V70_225VideoPDA","features":[435]},{"name":"WMProfile_V70_256Video","features":[435]},{"name":"WMProfile_V70_2856100MBR","features":[435]},{"name":"WMProfile_V70_288FMRadioMono","features":[435]},{"name":"WMProfile_V70_288FMRadioStereo","features":[435]},{"name":"WMProfile_V70_288VideoAudio","features":[435]},{"name":"WMProfile_V70_288VideoVoice","features":[435]},{"name":"WMProfile_V70_288VideoWebServer","features":[435]},{"name":"WMProfile_V70_384Video","features":[435]},{"name":"WMProfile_V70_56DialUpStereo","features":[435]},{"name":"WMProfile_V70_56VideoWebServer","features":[435]},{"name":"WMProfile_V70_64Audio","features":[435]},{"name":"WMProfile_V70_64AudioISDN","features":[435]},{"name":"WMProfile_V70_64VideoISDN","features":[435]},{"name":"WMProfile_V70_6VoiceAudio","features":[435]},{"name":"WMProfile_V70_700FilmContentVideo","features":[435]},{"name":"WMProfile_V70_768Video","features":[435]},{"name":"WMProfile_V70_96Audio","features":[435]},{"name":"WMProfile_V70_DialUpMBR","features":[435]},{"name":"WMProfile_V70_IntranetMBR","features":[435]},{"name":"WMProfile_V80_100768VideoMBR","features":[435]},{"name":"WMProfile_V80_100Video","features":[435]},{"name":"WMProfile_V80_128StereoAudio","features":[435]},{"name":"WMProfile_V80_1400NTSCVideo","features":[435]},{"name":"WMProfile_V80_150VideoPDA","features":[435]},{"name":"WMProfile_V80_255VideoPDA","features":[435]},{"name":"WMProfile_V80_256Video","features":[435]},{"name":"WMProfile_V80_288100VideoMBR","features":[435]},{"name":"WMProfile_V80_28856VideoMBR","features":[435]},{"name":"WMProfile_V80_288MonoAudio","features":[435]},{"name":"WMProfile_V80_288StereoAudio","features":[435]},{"name":"WMProfile_V80_288Video","features":[435]},{"name":"WMProfile_V80_288VideoOnly","features":[435]},{"name":"WMProfile_V80_32StereoAudio","features":[435]},{"name":"WMProfile_V80_384PALVideo","features":[435]},{"name":"WMProfile_V80_384Video","features":[435]},{"name":"WMProfile_V80_48StereoAudio","features":[435]},{"name":"WMProfile_V80_56Video","features":[435]},{"name":"WMProfile_V80_56VideoOnly","features":[435]},{"name":"WMProfile_V80_64StereoAudio","features":[435]},{"name":"WMProfile_V80_700NTSCVideo","features":[435]},{"name":"WMProfile_V80_700PALVideo","features":[435]},{"name":"WMProfile_V80_768Video","features":[435]},{"name":"WMProfile_V80_96StereoAudio","features":[435]},{"name":"WMProfile_V80_BESTVBRVideo","features":[435]},{"name":"WMProfile_V80_FAIRVBRVideo","features":[435]},{"name":"WMProfile_V80_HIGHVBRVideo","features":[435]},{"name":"WindowsMediaPlayer","features":[435]},{"name":"_WMPOCXEvents","features":[435,356]},{"name":"g_szAllAuthors","features":[435]},{"name":"g_szAllCPAlbumIDs","features":[435]},{"name":"g_szAllCPAlbumSubGenreIDs","features":[435]},{"name":"g_szAllCPArtistIDs","features":[435]},{"name":"g_szAllCPGenreIDs","features":[435]},{"name":"g_szAllCPListIDs","features":[435]},{"name":"g_szAllCPRadioIDs","features":[435]},{"name":"g_szAllCPTrackIDs","features":[435]},{"name":"g_szAllReleaseDateYears","features":[435]},{"name":"g_szAllUserEffectiveRatingStarss","features":[435]},{"name":"g_szAllWMParentalRatings","features":[435]},{"name":"g_szAuthor","features":[435]},{"name":"g_szCPAlbumID","features":[435]},{"name":"g_szCPAlbumSubGenreID","features":[435]},{"name":"g_szCPArtistID","features":[435]},{"name":"g_szCPGenreID","features":[435]},{"name":"g_szCPListID","features":[435]},{"name":"g_szCPRadioID","features":[435]},{"name":"g_szCPTrackID","features":[435]},{"name":"g_szContentPartnerInfo_AccountBalance","features":[435]},{"name":"g_szContentPartnerInfo_AccountType","features":[435]},{"name":"g_szContentPartnerInfo_HasCachedCredentials","features":[435]},{"name":"g_szContentPartnerInfo_LicenseRefreshAdvanceWarning","features":[435]},{"name":"g_szContentPartnerInfo_LoginState","features":[435]},{"name":"g_szContentPartnerInfo_MaximumTrackPurchasePerPurchase","features":[435]},{"name":"g_szContentPartnerInfo_MediaPlayerAccountType","features":[435]},{"name":"g_szContentPartnerInfo_PurchasedTrackRequiresReDownload","features":[435]},{"name":"g_szContentPartnerInfo_UserName","features":[435]},{"name":"g_szContentPrice_CannotBuy","features":[435]},{"name":"g_szContentPrice_Free","features":[435]},{"name":"g_szContentPrice_Unknown","features":[435]},{"name":"g_szFlyoutMenu","features":[435]},{"name":"g_szItemInfo_ALTLoginCaption","features":[435]},{"name":"g_szItemInfo_ALTLoginURL","features":[435]},{"name":"g_szItemInfo_AlbumArtURL","features":[435]},{"name":"g_szItemInfo_ArtistArtURL","features":[435]},{"name":"g_szItemInfo_AuthenticationSuccessURL","features":[435]},{"name":"g_szItemInfo_CreateAccountURL","features":[435]},{"name":"g_szItemInfo_ErrorDescription","features":[435]},{"name":"g_szItemInfo_ErrorURL","features":[435]},{"name":"g_szItemInfo_ErrorURLLinkText","features":[435]},{"name":"g_szItemInfo_ForgetPasswordURL","features":[435]},{"name":"g_szItemInfo_GenreArtURL","features":[435]},{"name":"g_szItemInfo_HTMLViewURL","features":[435]},{"name":"g_szItemInfo_ListArtURL","features":[435]},{"name":"g_szItemInfo_LoginFailureURL","features":[435]},{"name":"g_szItemInfo_PopupCaption","features":[435]},{"name":"g_szItemInfo_PopupURL","features":[435]},{"name":"g_szItemInfo_RadioArtURL","features":[435]},{"name":"g_szItemInfo_SubGenreArtURL","features":[435]},{"name":"g_szItemInfo_TreeListIconURL","features":[435]},{"name":"g_szMediaPlayerTask_Browse","features":[435]},{"name":"g_szMediaPlayerTask_Burn","features":[435]},{"name":"g_szMediaPlayerTask_Sync","features":[435]},{"name":"g_szOnlineStore","features":[435]},{"name":"g_szRefreshLicenseBurn","features":[435]},{"name":"g_szRefreshLicensePlay","features":[435]},{"name":"g_szRefreshLicenseSync","features":[435]},{"name":"g_szReleaseDateYear","features":[435]},{"name":"g_szRootLocation","features":[435]},{"name":"g_szStationEvent_Complete","features":[435]},{"name":"g_szStationEvent_Skipped","features":[435]},{"name":"g_szStationEvent_Started","features":[435]},{"name":"g_szUnknownLocation","features":[435]},{"name":"g_szUserEffectiveRatingStars","features":[435]},{"name":"g_szUserPlaylist","features":[435]},{"name":"g_szVerifyPermissionSync","features":[435]},{"name":"g_szVideoRecent","features":[435]},{"name":"g_szVideoRoot","features":[435]},{"name":"g_szViewMode_Details","features":[435]},{"name":"g_szViewMode_Icon","features":[435]},{"name":"g_szViewMode_OrderedList","features":[435]},{"name":"g_szViewMode_Report","features":[435]},{"name":"g_szViewMode_Tile","features":[435]},{"name":"g_szWMParentalRating","features":[435]},{"name":"kfltTimedLevelMaximumFrequency","features":[435]},{"name":"kfltTimedLevelMinimumFrequency","features":[435]},{"name":"pause_state","features":[435]},{"name":"play_state","features":[435]},{"name":"stop_state","features":[435]},{"name":"wmpatBuyOnly","features":[435]},{"name":"wmpatJanus","features":[435]},{"name":"wmpatSubscription","features":[435]},{"name":"wmpbfAudioCD","features":[435]},{"name":"wmpbfDataCD","features":[435]},{"name":"wmpbsBurning","features":[435]},{"name":"wmpbsBusy","features":[435]},{"name":"wmpbsDownloading","features":[435]},{"name":"wmpbsErasing","features":[435]},{"name":"wmpbsPreparingToBurn","features":[435]},{"name":"wmpbsReady","features":[435]},{"name":"wmpbsRefreshStatusPending","features":[435]},{"name":"wmpbsStopped","features":[435]},{"name":"wmpbsUnknown","features":[435]},{"name":"wmpbsWaitingForDisc","features":[435]},{"name":"wmpcnAuthResult","features":[435]},{"name":"wmpcnDisableRadioSkipping","features":[435]},{"name":"wmpcnLicenseUpdated","features":[435]},{"name":"wmpcnLoginStateChange","features":[435]},{"name":"wmpcnNewCatalogAvailable","features":[435]},{"name":"wmpcnNewPluginAvailable","features":[435]},{"name":"wmpdsLast","features":[435]},{"name":"wmpdsManualDevice","features":[435]},{"name":"wmpdsNewDevice","features":[435]},{"name":"wmpdsPartnershipAnother","features":[435]},{"name":"wmpdsPartnershipDeclined","features":[435]},{"name":"wmpdsPartnershipExists","features":[435]},{"name":"wmpdsUnknown","features":[435]},{"name":"wmpfssScanning","features":[435]},{"name":"wmpfssStopped","features":[435]},{"name":"wmpfssUnknown","features":[435]},{"name":"wmpfssUpdating","features":[435]},{"name":"wmplcAppend","features":[435]},{"name":"wmplcClear","features":[435]},{"name":"wmplcDelete","features":[435]},{"name":"wmplcInfoChange","features":[435]},{"name":"wmplcInsert","features":[435]},{"name":"wmplcLast","features":[435]},{"name":"wmplcMorph","features":[435]},{"name":"wmplcMove","features":[435]},{"name":"wmplcNameChange","features":[435]},{"name":"wmplcPrivate","features":[435]},{"name":"wmplcSort","features":[435]},{"name":"wmplcUnknown","features":[435]},{"name":"wmpltAll","features":[435]},{"name":"wmpltDisc","features":[435]},{"name":"wmpltLocal","features":[435]},{"name":"wmpltPortableDevice","features":[435]},{"name":"wmpltRemote","features":[435]},{"name":"wmpltUnknown","features":[435]},{"name":"wmposBeginCodecAcquisition","features":[435]},{"name":"wmposBeginIndividualization","features":[435]},{"name":"wmposBeginLicenseAcquisition","features":[435]},{"name":"wmposEndCodecAcquisition","features":[435]},{"name":"wmposEndIndividualization","features":[435]},{"name":"wmposEndLicenseAcquisition","features":[435]},{"name":"wmposMediaChanging","features":[435]},{"name":"wmposMediaConnecting","features":[435]},{"name":"wmposMediaLoading","features":[435]},{"name":"wmposMediaLocating","features":[435]},{"name":"wmposMediaOpen","features":[435]},{"name":"wmposMediaOpening","features":[435]},{"name":"wmposMediaWaiting","features":[435]},{"name":"wmposOpeningUnknownURL","features":[435]},{"name":"wmposPlaylistChanged","features":[435]},{"name":"wmposPlaylistChanging","features":[435]},{"name":"wmposPlaylistConnecting","features":[435]},{"name":"wmposPlaylistLoading","features":[435]},{"name":"wmposPlaylistLocating","features":[435]},{"name":"wmposPlaylistOpenNoMedia","features":[435]},{"name":"wmposPlaylistOpening","features":[435]},{"name":"wmposUndefined","features":[435]},{"name":"wmppsBuffering","features":[435]},{"name":"wmppsLast","features":[435]},{"name":"wmppsMediaEnded","features":[435]},{"name":"wmppsPaused","features":[435]},{"name":"wmppsPlaying","features":[435]},{"name":"wmppsReady","features":[435]},{"name":"wmppsReconnecting","features":[435]},{"name":"wmppsScanForward","features":[435]},{"name":"wmppsScanReverse","features":[435]},{"name":"wmppsStopped","features":[435]},{"name":"wmppsTransitioning","features":[435]},{"name":"wmppsUndefined","features":[435]},{"name":"wmppsWaiting","features":[435]},{"name":"wmprsRipping","features":[435]},{"name":"wmprsStopped","features":[435]},{"name":"wmprsUnknown","features":[435]},{"name":"wmpsccetBeginUpdates","features":[435]},{"name":"wmpsccetChange","features":[435]},{"name":"wmpsccetClear","features":[435]},{"name":"wmpsccetDelete","features":[435]},{"name":"wmpsccetEndUpdates","features":[435]},{"name":"wmpsccetInsert","features":[435]},{"name":"wmpsccetUnknown","features":[435]},{"name":"wmpsdlsCancelled","features":[435]},{"name":"wmpsdlsCompleted","features":[435]},{"name":"wmpsdlsDownloading","features":[435]},{"name":"wmpsdlsPaused","features":[435]},{"name":"wmpsdlsProcessing","features":[435]},{"name":"wmpsnBackgroundProcessingBegin","features":[435]},{"name":"wmpsnBackgroundProcessingEnd","features":[435]},{"name":"wmpsnCatalogDownloadComplete","features":[435]},{"name":"wmpsnCatalogDownloadFailure","features":[435]},{"name":"wmpssEstimating","features":[435]},{"name":"wmpssLast","features":[435]},{"name":"wmpssStopped","features":[435]},{"name":"wmpssSynchronizing","features":[435]},{"name":"wmpssUnknown","features":[435]},{"name":"wmpsseCurrentBegin","features":[435]},{"name":"wmpsseCurrentEnd","features":[435]},{"name":"wmpsseFullBegin","features":[435]},{"name":"wmpsseFullEnd","features":[435]},{"name":"wmpstMusic","features":[435]},{"name":"wmpstRadio","features":[435]},{"name":"wmpstUnknown","features":[435]},{"name":"wmpstVideo","features":[435]},{"name":"wmptsLarge","features":[435]},{"name":"wmptsMedium","features":[435]},{"name":"wmptsSmall","features":[435]},{"name":"wmpttBrowse","features":[435]},{"name":"wmpttBurn","features":[435]},{"name":"wmpttBuy","features":[435]},{"name":"wmpttCurrent","features":[435]},{"name":"wmpttDownload","features":[435]},{"name":"wmpttNoTransaction","features":[435]},{"name":"wmpttSync","features":[435]}],"440":[{"name":"ACMDM_BASE","features":[419]},{"name":"ACM_MPEG_COPYRIGHT","features":[419]},{"name":"ACM_MPEG_DUALCHANNEL","features":[419]},{"name":"ACM_MPEG_ID_MPEG1","features":[419]},{"name":"ACM_MPEG_JOINTSTEREO","features":[419]},{"name":"ACM_MPEG_LAYER1","features":[419]},{"name":"ACM_MPEG_LAYER2","features":[419]},{"name":"ACM_MPEG_LAYER3","features":[419]},{"name":"ACM_MPEG_ORIGINALHOME","features":[419]},{"name":"ACM_MPEG_PRIVATEBIT","features":[419]},{"name":"ACM_MPEG_PROTECTIONBIT","features":[419]},{"name":"ACM_MPEG_SINGLECHANNEL","features":[419]},{"name":"ACM_MPEG_STEREO","features":[419]},{"name":"ADPCMCOEFSET","features":[419]},{"name":"ADPCMEWAVEFORMAT","features":[420,419]},{"name":"ADPCMWAVEFORMAT","features":[420,419]},{"name":"APTXWAVEFORMAT","features":[420,419]},{"name":"AUDIOFILE_AF10WAVEFORMAT","features":[420,419]},{"name":"AUDIOFILE_AF36WAVEFORMAT","features":[420,419]},{"name":"AUXDM_GETDEVCAPS","features":[419]},{"name":"AUXDM_GETNUMDEVS","features":[419]},{"name":"AUXDM_GETVOLUME","features":[419]},{"name":"AUXDM_SETVOLUME","features":[419]},{"name":"AUXM_INIT","features":[419]},{"name":"AUXM_INIT_EX","features":[419]},{"name":"AVIBuildFilterA","features":[305,419]},{"name":"AVIBuildFilterW","features":[305,419]},{"name":"AVICOMPRESSF_DATARATE","features":[419]},{"name":"AVICOMPRESSF_INTERLEAVE","features":[419]},{"name":"AVICOMPRESSF_KEYFRAMES","features":[419]},{"name":"AVICOMPRESSF_VALID","features":[419]},{"name":"AVICOMPRESSOPTIONS","features":[419]},{"name":"AVIClearClipboard","features":[419]},{"name":"AVIERR_OK","features":[419]},{"name":"AVIFILECAPS_ALLKEYFRAMES","features":[419]},{"name":"AVIFILECAPS_CANREAD","features":[419]},{"name":"AVIFILECAPS_CANWRITE","features":[419]},{"name":"AVIFILECAPS_NOCOMPRESSION","features":[419]},{"name":"AVIFILEHANDLER_CANACCEPTNONRGB","features":[419]},{"name":"AVIFILEHANDLER_CANREAD","features":[419]},{"name":"AVIFILEHANDLER_CANWRITE","features":[419]},{"name":"AVIFILEINFOA","features":[419]},{"name":"AVIFILEINFOW","features":[419]},{"name":"AVIFILEINFO_COPYRIGHTED","features":[419]},{"name":"AVIFILEINFO_HASINDEX","features":[419]},{"name":"AVIFILEINFO_ISINTERLEAVED","features":[419]},{"name":"AVIFILEINFO_MUSTUSEINDEX","features":[419]},{"name":"AVIFILEINFO_WASCAPTUREFILE","features":[419]},{"name":"AVIFileAddRef","features":[419]},{"name":"AVIFileCreateStreamA","features":[305,419]},{"name":"AVIFileCreateStreamW","features":[305,419]},{"name":"AVIFileEndRecord","features":[419]},{"name":"AVIFileExit","features":[419]},{"name":"AVIFileGetStream","features":[419]},{"name":"AVIFileInfoA","features":[419]},{"name":"AVIFileInfoW","features":[419]},{"name":"AVIFileInit","features":[419]},{"name":"AVIFileOpenA","features":[419]},{"name":"AVIFileOpenW","features":[419]},{"name":"AVIFileReadData","features":[419]},{"name":"AVIFileRelease","features":[419]},{"name":"AVIFileWriteData","features":[419]},{"name":"AVIGETFRAMEF_BESTDISPLAYFMT","features":[419]},{"name":"AVIGetFromClipboard","features":[419]},{"name":"AVIIF_CONTROLFRAME","features":[419]},{"name":"AVIIF_TWOCC","features":[419]},{"name":"AVIMakeCompressedStream","features":[419]},{"name":"AVIMakeFileFromStreams","features":[419]},{"name":"AVIMakeStreamFromClipboard","features":[305,419]},{"name":"AVIPutFileOnClipboard","features":[419]},{"name":"AVISAVECALLBACK","features":[305,419]},{"name":"AVISTREAMINFOA","features":[305,419]},{"name":"AVISTREAMINFOW","features":[305,419]},{"name":"AVISTREAMINFO_DISABLED","features":[419]},{"name":"AVISTREAMINFO_FORMATCHANGES","features":[419]},{"name":"AVISTREAMREAD_CONVENIENT","features":[419]},{"name":"AVISaveA","features":[305,419]},{"name":"AVISaveOptions","features":[305,419]},{"name":"AVISaveOptionsFree","features":[419]},{"name":"AVISaveVA","features":[305,419]},{"name":"AVISaveVW","features":[305,419]},{"name":"AVISaveW","features":[305,419]},{"name":"AVIStreamAddRef","features":[419]},{"name":"AVIStreamBeginStreaming","features":[419]},{"name":"AVIStreamCreate","features":[419]},{"name":"AVIStreamEndStreaming","features":[419]},{"name":"AVIStreamFindSample","features":[419]},{"name":"AVIStreamGetFrame","features":[419]},{"name":"AVIStreamGetFrameClose","features":[419]},{"name":"AVIStreamGetFrameOpen","features":[316,419]},{"name":"AVIStreamInfoA","features":[305,419]},{"name":"AVIStreamInfoW","features":[305,419]},{"name":"AVIStreamLength","features":[419]},{"name":"AVIStreamOpenFromFileA","features":[419]},{"name":"AVIStreamOpenFromFileW","features":[419]},{"name":"AVIStreamRead","features":[419]},{"name":"AVIStreamReadData","features":[419]},{"name":"AVIStreamReadFormat","features":[419]},{"name":"AVIStreamRelease","features":[419]},{"name":"AVIStreamSampleToTime","features":[419]},{"name":"AVIStreamSetFormat","features":[419]},{"name":"AVIStreamStart","features":[419]},{"name":"AVIStreamTimeToSample","features":[419]},{"name":"AVIStreamWrite","features":[419]},{"name":"AVIStreamWriteData","features":[419]},{"name":"AVSTREAMMASTER_AUDIO","features":[419]},{"name":"AVSTREAMMASTER_NONE","features":[419]},{"name":"BI_1632","features":[419]},{"name":"CAPCONTROLCALLBACK","features":[305,419]},{"name":"CAPDRIVERCAPS","features":[305,419]},{"name":"CAPERRORCALLBACKA","features":[305,419]},{"name":"CAPERRORCALLBACKW","features":[305,419]},{"name":"CAPINFOCHUNK","features":[419]},{"name":"CAPSTATUS","features":[305,316,419]},{"name":"CAPSTATUSCALLBACKA","features":[305,419]},{"name":"CAPSTATUSCALLBACKW","features":[305,419]},{"name":"CAPTUREPARMS","features":[305,419]},{"name":"CAPVIDEOCALLBACK","features":[305,419]},{"name":"CAPWAVECALLBACK","features":[305,420,419]},{"name":"CAPYIELDCALLBACK","features":[305,419]},{"name":"CHANNEL_CAPS","features":[419]},{"name":"CLSID_AVIFile","features":[419]},{"name":"CLSID_AVISimpleUnMarshal","features":[419]},{"name":"COMPVARS","features":[316,419]},{"name":"CONTRESCR10WAVEFORMAT","features":[420,419]},{"name":"CONTRESVQLPCWAVEFORMAT","features":[420,419]},{"name":"CONTROLCALLBACK_CAPTURING","features":[419]},{"name":"CONTROLCALLBACK_PREROLL","features":[419]},{"name":"CREATIVEADPCMWAVEFORMAT","features":[420,419]},{"name":"CREATIVEFASTSPEECH10WAVEFORMAT","features":[420,419]},{"name":"CREATIVEFASTSPEECH8WAVEFORMAT","features":[420,419]},{"name":"CRYSTAL_NET_SFM_CODEC","features":[419]},{"name":"CSIMAADPCMWAVEFORMAT","features":[420,419]},{"name":"CloseDriver","features":[305,419]},{"name":"CreateEditableStream","features":[419]},{"name":"DCB_EVENT","features":[419]},{"name":"DCB_FUNCTION","features":[419]},{"name":"DCB_NOSWITCH","features":[419]},{"name":"DCB_NULL","features":[419]},{"name":"DCB_TASK","features":[419]},{"name":"DCB_TYPEMASK","features":[419]},{"name":"DCB_WINDOW","features":[419]},{"name":"DDF_0001","features":[419]},{"name":"DDF_2000","features":[419]},{"name":"DDF_ANIMATE","features":[419]},{"name":"DDF_BACKGROUNDPAL","features":[419]},{"name":"DDF_BUFFER","features":[419]},{"name":"DDF_DONTDRAW","features":[419]},{"name":"DDF_FULLSCREEN","features":[419]},{"name":"DDF_HALFTONE","features":[419]},{"name":"DDF_HURRYUP","features":[419]},{"name":"DDF_JUSTDRAWIT","features":[419]},{"name":"DDF_NOTKEYFRAME","features":[419]},{"name":"DDF_PREROLL","features":[419]},{"name":"DDF_SAME_DIB","features":[419]},{"name":"DDF_SAME_DRAW","features":[419]},{"name":"DDF_SAME_HDC","features":[419]},{"name":"DDF_SAME_SIZE","features":[419]},{"name":"DDF_UPDATE","features":[419]},{"name":"DIALOGICOKIADPCMWAVEFORMAT","features":[420,419]},{"name":"DIGIADPCMWAVEFORMAT","features":[420,419]},{"name":"DIGIFIXWAVEFORMAT","features":[420,419]},{"name":"DIGIREALWAVEFORMAT","features":[420,419]},{"name":"DIGISTDWAVEFORMAT","features":[420,419]},{"name":"DLG_ACMFILTERCHOOSE_ID","features":[419]},{"name":"DLG_ACMFORMATCHOOSE_ID","features":[419]},{"name":"DOLBYAC2WAVEFORMAT","features":[420,419]},{"name":"DRAWDIBTIME","features":[419]},{"name":"DRIVERMSGPROC","features":[419]},{"name":"DRIVERPROC","features":[305,419]},{"name":"DRIVERS_SECTION","features":[419]},{"name":"DRMWAVEFORMAT","features":[420,419]},{"name":"DRVCNF_CANCEL","features":[419]},{"name":"DRVCNF_OK","features":[419]},{"name":"DRVCNF_RESTART","features":[419]},{"name":"DRVCONFIGINFO","features":[419]},{"name":"DRVCONFIGINFOEX","features":[419]},{"name":"DRVM_ADD_THRU","features":[419]},{"name":"DRVM_DISABLE","features":[419]},{"name":"DRVM_ENABLE","features":[419]},{"name":"DRVM_EXIT","features":[419]},{"name":"DRVM_INIT","features":[419]},{"name":"DRVM_INIT_EX","features":[419]},{"name":"DRVM_IOCTL","features":[419]},{"name":"DRVM_IOCTL_CMD_SYSTEM","features":[419]},{"name":"DRVM_IOCTL_CMD_USER","features":[419]},{"name":"DRVM_IOCTL_DATA","features":[419]},{"name":"DRVM_IOCTL_LAST","features":[419]},{"name":"DRVM_MAPPER_CONSOLEVOICECOM_GET","features":[419]},{"name":"DRVM_MAPPER_PREFERRED_FLAGS_PREFERREDONLY","features":[419]},{"name":"DRVM_MAPPER_PREFERRED_GET","features":[419]},{"name":"DRVM_MAPPER_RECONFIGURE","features":[419]},{"name":"DRVM_REMOVE_THRU","features":[419]},{"name":"DRVM_USER","features":[419]},{"name":"DRV_CANCEL","features":[419]},{"name":"DRV_CLOSE","features":[419]},{"name":"DRV_CONFIGURE","features":[419]},{"name":"DRV_DISABLE","features":[419]},{"name":"DRV_ENABLE","features":[419]},{"name":"DRV_EXITSESSION","features":[419]},{"name":"DRV_FREE","features":[419]},{"name":"DRV_INSTALL","features":[419]},{"name":"DRV_LOAD","features":[419]},{"name":"DRV_MCI_FIRST","features":[419]},{"name":"DRV_MCI_LAST","features":[419]},{"name":"DRV_OK","features":[419]},{"name":"DRV_OPEN","features":[419]},{"name":"DRV_PNPINSTALL","features":[419]},{"name":"DRV_POWER","features":[419]},{"name":"DRV_QUERYCONFIGURE","features":[419]},{"name":"DRV_QUERYDEVICEINTERFACE","features":[419]},{"name":"DRV_QUERYDEVICEINTERFACESIZE","features":[419]},{"name":"DRV_QUERYDEVNODE","features":[419]},{"name":"DRV_QUERYFUNCTIONINSTANCEID","features":[419]},{"name":"DRV_QUERYFUNCTIONINSTANCEIDSIZE","features":[419]},{"name":"DRV_QUERYIDFROMSTRINGID","features":[419]},{"name":"DRV_QUERYMAPPABLE","features":[419]},{"name":"DRV_QUERYMODULE","features":[419]},{"name":"DRV_QUERYSTRINGID","features":[419]},{"name":"DRV_QUERYSTRINGIDSIZE","features":[419]},{"name":"DRV_REMOVE","features":[419]},{"name":"DRV_RESERVED","features":[419]},{"name":"DRV_RESTART","features":[419]},{"name":"DRV_USER","features":[419]},{"name":"DVIADPCMWAVEFORMAT","features":[420,419]},{"name":"DVM_CONFIGURE_END","features":[419]},{"name":"DVM_CONFIGURE_START","features":[419]},{"name":"DVM_DST_RECT","features":[419]},{"name":"DVM_FORMAT","features":[419]},{"name":"DVM_PALETTE","features":[419]},{"name":"DVM_PALETTERGB555","features":[419]},{"name":"DVM_SRC_RECT","features":[419]},{"name":"DVM_USER","features":[419]},{"name":"DV_ERR_13","features":[419]},{"name":"DV_ERR_ALLOCATED","features":[419]},{"name":"DV_ERR_BADDEVICEID","features":[419]},{"name":"DV_ERR_BADERRNUM","features":[419]},{"name":"DV_ERR_BADFORMAT","features":[419]},{"name":"DV_ERR_BADINSTALL","features":[419]},{"name":"DV_ERR_BASE","features":[419]},{"name":"DV_ERR_CONFIG1","features":[419]},{"name":"DV_ERR_CONFIG2","features":[419]},{"name":"DV_ERR_CREATEPALETTE","features":[419]},{"name":"DV_ERR_DMA_CONFLICT","features":[419]},{"name":"DV_ERR_FLAGS","features":[419]},{"name":"DV_ERR_INT_CONFLICT","features":[419]},{"name":"DV_ERR_INVALHANDLE","features":[419]},{"name":"DV_ERR_IO_CONFLICT","features":[419]},{"name":"DV_ERR_LASTERROR","features":[419]},{"name":"DV_ERR_MEM_CONFLICT","features":[419]},{"name":"DV_ERR_NOMEM","features":[419]},{"name":"DV_ERR_NONSPECIFIC","features":[419]},{"name":"DV_ERR_NOTDETECTED","features":[419]},{"name":"DV_ERR_NOTSUPPORTED","features":[419]},{"name":"DV_ERR_NO_BUFFERS","features":[419]},{"name":"DV_ERR_OK","features":[419]},{"name":"DV_ERR_PARAM1","features":[419]},{"name":"DV_ERR_PARAM2","features":[419]},{"name":"DV_ERR_PROTECT_ONLY","features":[419]},{"name":"DV_ERR_SIZEFIELD","features":[419]},{"name":"DV_ERR_STILLPLAYING","features":[419]},{"name":"DV_ERR_SYNC","features":[419]},{"name":"DV_ERR_TOOMANYCHANNELS","features":[419]},{"name":"DV_ERR_UNPREPARED","features":[419]},{"name":"DV_ERR_USER_MSG","features":[419]},{"name":"DV_VM_CLOSE","features":[419]},{"name":"DV_VM_DATA","features":[419]},{"name":"DV_VM_ERROR","features":[419]},{"name":"DV_VM_OPEN","features":[419]},{"name":"DefDriverProc","features":[305,419]},{"name":"DrawDibBegin","features":[305,316,419]},{"name":"DrawDibChangePalette","features":[305,316,419]},{"name":"DrawDibClose","features":[305,419]},{"name":"DrawDibDraw","features":[305,316,419]},{"name":"DrawDibEnd","features":[305,419]},{"name":"DrawDibGetBuffer","features":[316,419]},{"name":"DrawDibGetPalette","features":[316,419]},{"name":"DrawDibOpen","features":[419]},{"name":"DrawDibProfileDisplay","features":[305,316,419]},{"name":"DrawDibRealize","features":[305,316,419]},{"name":"DrawDibSetPalette","features":[305,316,419]},{"name":"DrawDibStart","features":[305,419]},{"name":"DrawDibStop","features":[305,419]},{"name":"DrawDibTime","features":[305,419]},{"name":"DriverCallback","features":[305,419]},{"name":"DrvGetModuleHandle","features":[305,419]},{"name":"ECHOSC1WAVEFORMAT","features":[420,419]},{"name":"EXBMINFOHEADER","features":[316,419]},{"name":"EditStreamClone","features":[419]},{"name":"EditStreamCopy","features":[419]},{"name":"EditStreamCut","features":[419]},{"name":"EditStreamPaste","features":[419]},{"name":"EditStreamSetInfoA","features":[305,419]},{"name":"EditStreamSetInfoW","features":[305,419]},{"name":"EditStreamSetNameA","features":[419]},{"name":"EditStreamSetNameW","features":[419]},{"name":"FACILITY_NS","features":[419]},{"name":"FACILITY_NS_WIN32","features":[419]},{"name":"FIND_ANY","features":[419]},{"name":"FIND_DIR","features":[419]},{"name":"FIND_FORMAT","features":[419]},{"name":"FIND_FROM_START","features":[419]},{"name":"FIND_INDEX","features":[419]},{"name":"FIND_KEY","features":[419]},{"name":"FIND_LENGTH","features":[419]},{"name":"FIND_NEXT","features":[419]},{"name":"FIND_OFFSET","features":[419]},{"name":"FIND_POS","features":[419]},{"name":"FIND_PREV","features":[419]},{"name":"FIND_RET","features":[419]},{"name":"FIND_SIZE","features":[419]},{"name":"FIND_TYPE","features":[419]},{"name":"FMTOWNS_SND_WAVEFORMAT","features":[420,419]},{"name":"G721_ADPCMWAVEFORMAT","features":[420,419]},{"name":"G723_ADPCMWAVEFORMAT","features":[420,419]},{"name":"GSM610WAVEFORMAT","features":[420,419]},{"name":"GetDriverModuleHandle","features":[305,419]},{"name":"GetOpenFileNamePreviewA","features":[305,419,436]},{"name":"GetOpenFileNamePreviewW","features":[305,419,436]},{"name":"GetSaveFileNamePreviewA","features":[305,419,436]},{"name":"GetSaveFileNamePreviewW","features":[305,419,436]},{"name":"HDRVR","features":[419]},{"name":"HIC","features":[419]},{"name":"HMMIO","features":[419]},{"name":"HVIDEO","features":[419]},{"name":"IAVIEditStream","features":[419]},{"name":"IAVIFile","features":[419]},{"name":"IAVIPersistFile","features":[419,356]},{"name":"IAVIStream","features":[419]},{"name":"IAVIStreaming","features":[419]},{"name":"ICCOMPRESS","features":[316,419]},{"name":"ICCOMPRESSFRAMES","features":[305,316,419]},{"name":"ICCOMPRESSFRAMES_PADDING","features":[419]},{"name":"ICCOMPRESS_KEYFRAME","features":[419]},{"name":"ICClose","features":[305,419]},{"name":"ICCompress","features":[316,419]},{"name":"ICCompressorChoose","features":[305,316,419]},{"name":"ICCompressorFree","features":[316,419]},{"name":"ICDECOMPRESS","features":[316,419]},{"name":"ICDECOMPRESSEX","features":[316,419]},{"name":"ICDECOMPRESS_HURRYUP","features":[419]},{"name":"ICDECOMPRESS_NOTKEYFRAME","features":[419]},{"name":"ICDECOMPRESS_NULLFRAME","features":[419]},{"name":"ICDECOMPRESS_PREROLL","features":[419]},{"name":"ICDECOMPRESS_UPDATE","features":[419]},{"name":"ICDRAW","features":[419]},{"name":"ICDRAWBEGIN","features":[305,316,419]},{"name":"ICDRAWSUGGEST","features":[316,419]},{"name":"ICDRAW_ANIMATE","features":[419]},{"name":"ICDRAW_BUFFER","features":[419]},{"name":"ICDRAW_CONTINUE","features":[419]},{"name":"ICDRAW_FULLSCREEN","features":[419]},{"name":"ICDRAW_HDC","features":[419]},{"name":"ICDRAW_HURRYUP","features":[419]},{"name":"ICDRAW_MEMORYDC","features":[419]},{"name":"ICDRAW_NOTKEYFRAME","features":[419]},{"name":"ICDRAW_NULLFRAME","features":[419]},{"name":"ICDRAW_PREROLL","features":[419]},{"name":"ICDRAW_QUERY","features":[419]},{"name":"ICDRAW_RENDER","features":[419]},{"name":"ICDRAW_UPDATE","features":[419]},{"name":"ICDRAW_UPDATING","features":[419]},{"name":"ICDecompress","features":[316,419]},{"name":"ICDraw","features":[419]},{"name":"ICDrawBegin","features":[305,316,419]},{"name":"ICERR_ABORT","features":[419]},{"name":"ICERR_BADBITDEPTH","features":[419]},{"name":"ICERR_BADFLAGS","features":[419]},{"name":"ICERR_BADFORMAT","features":[419]},{"name":"ICERR_BADHANDLE","features":[419]},{"name":"ICERR_BADIMAGESIZE","features":[419]},{"name":"ICERR_BADPARAM","features":[419]},{"name":"ICERR_BADSIZE","features":[419]},{"name":"ICERR_CANTUPDATE","features":[419]},{"name":"ICERR_CUSTOM","features":[419]},{"name":"ICERR_DONTDRAW","features":[419]},{"name":"ICERR_ERROR","features":[419]},{"name":"ICERR_GOTOKEYFRAME","features":[419]},{"name":"ICERR_INTERNAL","features":[419]},{"name":"ICERR_MEMORY","features":[419]},{"name":"ICERR_NEWPALETTE","features":[419]},{"name":"ICERR_OK","features":[419]},{"name":"ICERR_STOPDRAWING","features":[419]},{"name":"ICERR_UNSUPPORTED","features":[419]},{"name":"ICGetDisplayFormat","features":[316,419]},{"name":"ICGetInfo","features":[305,419]},{"name":"ICINFO","features":[419]},{"name":"ICINSTALL_DRIVER","features":[419]},{"name":"ICINSTALL_DRIVERW","features":[419]},{"name":"ICINSTALL_FUNCTION","features":[419]},{"name":"ICINSTALL_HDRV","features":[419]},{"name":"ICINSTALL_UNICODE","features":[419]},{"name":"ICImageCompress","features":[305,316,419]},{"name":"ICImageDecompress","features":[305,316,419]},{"name":"ICInfo","features":[305,419]},{"name":"ICInstall","features":[305,419]},{"name":"ICLocate","features":[316,419]},{"name":"ICMF_ABOUT_QUERY","features":[419]},{"name":"ICMF_CHOOSE_ALLCOMPRESSORS","features":[419]},{"name":"ICMF_CHOOSE_DATARATE","features":[419]},{"name":"ICMF_CHOOSE_KEYFRAME","features":[419]},{"name":"ICMF_CHOOSE_PREVIEW","features":[419]},{"name":"ICMF_COMPVARS_VALID","features":[419]},{"name":"ICMF_CONFIGURE_QUERY","features":[419]},{"name":"ICMODE_COMPRESS","features":[419]},{"name":"ICMODE_DECOMPRESS","features":[419]},{"name":"ICMODE_DRAW","features":[419]},{"name":"ICMODE_FASTCOMPRESS","features":[419]},{"name":"ICMODE_FASTDECOMPRESS","features":[419]},{"name":"ICMODE_INTERNALF_FUNCTION32","features":[419]},{"name":"ICMODE_INTERNALF_MASK","features":[419]},{"name":"ICMODE_QUERY","features":[419]},{"name":"ICM_ABOUT","features":[419]},{"name":"ICM_COMPRESS","features":[419]},{"name":"ICM_COMPRESS_BEGIN","features":[419]},{"name":"ICM_COMPRESS_END","features":[419]},{"name":"ICM_COMPRESS_FRAMES","features":[419]},{"name":"ICM_COMPRESS_FRAMES_INFO","features":[419]},{"name":"ICM_COMPRESS_GET_FORMAT","features":[419]},{"name":"ICM_COMPRESS_GET_SIZE","features":[419]},{"name":"ICM_COMPRESS_QUERY","features":[419]},{"name":"ICM_CONFIGURE","features":[419]},{"name":"ICM_DECOMPRESS","features":[419]},{"name":"ICM_DECOMPRESSEX","features":[419]},{"name":"ICM_DECOMPRESSEX_BEGIN","features":[419]},{"name":"ICM_DECOMPRESSEX_END","features":[419]},{"name":"ICM_DECOMPRESSEX_QUERY","features":[419]},{"name":"ICM_DECOMPRESS_BEGIN","features":[419]},{"name":"ICM_DECOMPRESS_END","features":[419]},{"name":"ICM_DECOMPRESS_GET_FORMAT","features":[419]},{"name":"ICM_DECOMPRESS_GET_PALETTE","features":[419]},{"name":"ICM_DECOMPRESS_QUERY","features":[419]},{"name":"ICM_DECOMPRESS_SET_PALETTE","features":[419]},{"name":"ICM_DRAW","features":[419]},{"name":"ICM_DRAW_BEGIN","features":[419]},{"name":"ICM_DRAW_BITS","features":[419]},{"name":"ICM_DRAW_CHANGEPALETTE","features":[419]},{"name":"ICM_DRAW_END","features":[419]},{"name":"ICM_DRAW_FLUSH","features":[419]},{"name":"ICM_DRAW_GETTIME","features":[419]},{"name":"ICM_DRAW_GET_PALETTE","features":[419]},{"name":"ICM_DRAW_IDLE","features":[419]},{"name":"ICM_DRAW_QUERY","features":[419]},{"name":"ICM_DRAW_REALIZE","features":[419]},{"name":"ICM_DRAW_RENDERBUFFER","features":[419]},{"name":"ICM_DRAW_SETTIME","features":[419]},{"name":"ICM_DRAW_START","features":[419]},{"name":"ICM_DRAW_START_PLAY","features":[419]},{"name":"ICM_DRAW_STOP","features":[419]},{"name":"ICM_DRAW_STOP_PLAY","features":[419]},{"name":"ICM_DRAW_SUGGESTFORMAT","features":[419]},{"name":"ICM_DRAW_UPDATE","features":[419]},{"name":"ICM_DRAW_WINDOW","features":[419]},{"name":"ICM_ENUMFORMATS","features":[419]},{"name":"ICM_GET","features":[419]},{"name":"ICM_GETBUFFERSWANTED","features":[419]},{"name":"ICM_GETDEFAULTKEYFRAMERATE","features":[419]},{"name":"ICM_GETDEFAULTQUALITY","features":[419]},{"name":"ICM_GETERRORTEXT","features":[419]},{"name":"ICM_GETFORMATNAME","features":[419]},{"name":"ICM_GETINFO","features":[419]},{"name":"ICM_GETQUALITY","features":[419]},{"name":"ICM_GETSTATE","features":[419]},{"name":"ICM_RESERVED","features":[419]},{"name":"ICM_RESERVED_HIGH","features":[419]},{"name":"ICM_RESERVED_LOW","features":[419]},{"name":"ICM_SET","features":[419]},{"name":"ICM_SETQUALITY","features":[419]},{"name":"ICM_SETSTATE","features":[419]},{"name":"ICM_SET_STATUS_PROC","features":[419]},{"name":"ICM_USER","features":[419]},{"name":"ICOPEN","features":[305,419]},{"name":"ICOpen","features":[419]},{"name":"ICOpenFunction","features":[305,419]},{"name":"ICPALETTE","features":[316,419]},{"name":"ICQUALITY_DEFAULT","features":[419]},{"name":"ICQUALITY_HIGH","features":[419]},{"name":"ICQUALITY_LOW","features":[419]},{"name":"ICRemove","features":[305,419]},{"name":"ICSETSTATUSPROC","features":[305,419]},{"name":"ICSTATUS_END","features":[419]},{"name":"ICSTATUS_ERROR","features":[419]},{"name":"ICSTATUS_START","features":[419]},{"name":"ICSTATUS_STATUS","features":[419]},{"name":"ICSTATUS_YIELD","features":[419]},{"name":"ICSendMessage","features":[305,419]},{"name":"ICSeqCompressFrame","features":[305,316,419]},{"name":"ICSeqCompressFrameEnd","features":[316,419]},{"name":"ICSeqCompressFrameStart","features":[305,316,419]},{"name":"ICVERSION","features":[419]},{"name":"IDD_ACMFILTERCHOOSE_BTN_DELNAME","features":[419]},{"name":"IDD_ACMFILTERCHOOSE_BTN_HELP","features":[419]},{"name":"IDD_ACMFILTERCHOOSE_BTN_SETNAME","features":[419]},{"name":"IDD_ACMFILTERCHOOSE_CMB_CUSTOM","features":[419]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTER","features":[419]},{"name":"IDD_ACMFILTERCHOOSE_CMB_FILTERTAG","features":[419]},{"name":"IDD_ACMFORMATCHOOSE_BTN_DELNAME","features":[419]},{"name":"IDD_ACMFORMATCHOOSE_BTN_HELP","features":[419]},{"name":"IDD_ACMFORMATCHOOSE_BTN_SETNAME","features":[419]},{"name":"IDD_ACMFORMATCHOOSE_CMB_CUSTOM","features":[419]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMAT","features":[419]},{"name":"IDD_ACMFORMATCHOOSE_CMB_FORMATTAG","features":[419]},{"name":"IDS_CAP_AUDIO_DROP_COMPERROR","features":[419]},{"name":"IDS_CAP_AUDIO_DROP_ERROR","features":[419]},{"name":"IDS_CAP_AVI_DRAWDIB_ERROR","features":[419]},{"name":"IDS_CAP_AVI_INIT_ERROR","features":[419]},{"name":"IDS_CAP_BEGIN","features":[419]},{"name":"IDS_CAP_CANTOPEN","features":[419]},{"name":"IDS_CAP_COMPRESSOR_ERROR","features":[419]},{"name":"IDS_CAP_DEFAVIEXT","features":[419]},{"name":"IDS_CAP_DEFPALEXT","features":[419]},{"name":"IDS_CAP_DRIVER_ERROR","features":[419]},{"name":"IDS_CAP_END","features":[419]},{"name":"IDS_CAP_ERRORDIBSAVE","features":[419]},{"name":"IDS_CAP_ERRORPALOPEN","features":[419]},{"name":"IDS_CAP_ERRORPALSAVE","features":[419]},{"name":"IDS_CAP_FILEEXISTS","features":[419]},{"name":"IDS_CAP_FILE_OPEN_ERROR","features":[419]},{"name":"IDS_CAP_FILE_WRITE_ERROR","features":[419]},{"name":"IDS_CAP_INFO","features":[419]},{"name":"IDS_CAP_MCI_CANT_STEP_ERROR","features":[419]},{"name":"IDS_CAP_MCI_CONTROL_ERROR","features":[419]},{"name":"IDS_CAP_NODISKSPACE","features":[419]},{"name":"IDS_CAP_NO_AUDIO_CAP_ERROR","features":[419]},{"name":"IDS_CAP_NO_FRAME_CAP_ERROR","features":[419]},{"name":"IDS_CAP_NO_PALETTE_WARN","features":[419]},{"name":"IDS_CAP_OUTOFMEM","features":[419]},{"name":"IDS_CAP_READONLYFILE","features":[419]},{"name":"IDS_CAP_RECORDING_ERROR","features":[419]},{"name":"IDS_CAP_RECORDING_ERROR2","features":[419]},{"name":"IDS_CAP_SAVEASPERCENT","features":[419]},{"name":"IDS_CAP_SEQ_MSGSTART","features":[419]},{"name":"IDS_CAP_SEQ_MSGSTOP","features":[419]},{"name":"IDS_CAP_SETFILESIZE","features":[419]},{"name":"IDS_CAP_STAT_CAP_AUDIO","features":[419]},{"name":"IDS_CAP_STAT_CAP_FINI","features":[419]},{"name":"IDS_CAP_STAT_CAP_INIT","features":[419]},{"name":"IDS_CAP_STAT_CAP_L_FRAMES","features":[419]},{"name":"IDS_CAP_STAT_FRAMESDROPPED","features":[419]},{"name":"IDS_CAP_STAT_I_FRAMES","features":[419]},{"name":"IDS_CAP_STAT_LIVE_MODE","features":[419]},{"name":"IDS_CAP_STAT_L_FRAMES","features":[419]},{"name":"IDS_CAP_STAT_OPTPAL_BUILD","features":[419]},{"name":"IDS_CAP_STAT_OVERLAY_MODE","features":[419]},{"name":"IDS_CAP_STAT_PALETTE_BUILD","features":[419]},{"name":"IDS_CAP_STAT_VIDEOAUDIO","features":[419]},{"name":"IDS_CAP_STAT_VIDEOCURRENT","features":[419]},{"name":"IDS_CAP_STAT_VIDEOONLY","features":[419]},{"name":"IDS_CAP_VIDEDITERR","features":[419]},{"name":"IDS_CAP_VIDEO_ADD_ERROR","features":[419]},{"name":"IDS_CAP_VIDEO_ALLOC_ERROR","features":[419]},{"name":"IDS_CAP_VIDEO_OPEN_ERROR","features":[419]},{"name":"IDS_CAP_VIDEO_PREPARE_ERROR","features":[419]},{"name":"IDS_CAP_VIDEO_SIZE_ERROR","features":[419]},{"name":"IDS_CAP_WAVE_ADD_ERROR","features":[419]},{"name":"IDS_CAP_WAVE_ALLOC_ERROR","features":[419]},{"name":"IDS_CAP_WAVE_OPEN_ERROR","features":[419]},{"name":"IDS_CAP_WAVE_PREPARE_ERROR","features":[419]},{"name":"IDS_CAP_WAVE_SIZE_ERROR","features":[419]},{"name":"IDS_CAP_WRITEERROR","features":[419]},{"name":"IGetFrame","features":[419]},{"name":"IMAADPCMWAVEFORMAT","features":[420,419]},{"name":"JDD_CONFIGCHANGED","features":[419]},{"name":"JDD_GETDEVCAPS","features":[419]},{"name":"JDD_GETNUMDEVS","features":[419]},{"name":"JDD_GETPOS","features":[419]},{"name":"JDD_GETPOSEX","features":[419]},{"name":"JDD_SETCALIBRATION","features":[419]},{"name":"JIFMK_00","features":[419]},{"name":"JIFMK_APP0","features":[419]},{"name":"JIFMK_APP1","features":[419]},{"name":"JIFMK_APP2","features":[419]},{"name":"JIFMK_APP3","features":[419]},{"name":"JIFMK_APP4","features":[419]},{"name":"JIFMK_APP5","features":[419]},{"name":"JIFMK_APP6","features":[419]},{"name":"JIFMK_APP7","features":[419]},{"name":"JIFMK_COM","features":[419]},{"name":"JIFMK_DAC","features":[419]},{"name":"JIFMK_DHP","features":[419]},{"name":"JIFMK_DHT","features":[419]},{"name":"JIFMK_DNL","features":[419]},{"name":"JIFMK_DQT","features":[419]},{"name":"JIFMK_DRI","features":[419]},{"name":"JIFMK_EOI","features":[419]},{"name":"JIFMK_EXP","features":[419]},{"name":"JIFMK_FF","features":[419]},{"name":"JIFMK_JPG","features":[419]},{"name":"JIFMK_JPG0","features":[419]},{"name":"JIFMK_JPG1","features":[419]},{"name":"JIFMK_JPG10","features":[419]},{"name":"JIFMK_JPG11","features":[419]},{"name":"JIFMK_JPG12","features":[419]},{"name":"JIFMK_JPG13","features":[419]},{"name":"JIFMK_JPG2","features":[419]},{"name":"JIFMK_JPG3","features":[419]},{"name":"JIFMK_JPG4","features":[419]},{"name":"JIFMK_JPG5","features":[419]},{"name":"JIFMK_JPG6","features":[419]},{"name":"JIFMK_JPG7","features":[419]},{"name":"JIFMK_JPG8","features":[419]},{"name":"JIFMK_JPG9","features":[419]},{"name":"JIFMK_RES","features":[419]},{"name":"JIFMK_RST0","features":[419]},{"name":"JIFMK_RST1","features":[419]},{"name":"JIFMK_RST2","features":[419]},{"name":"JIFMK_RST3","features":[419]},{"name":"JIFMK_RST4","features":[419]},{"name":"JIFMK_RST5","features":[419]},{"name":"JIFMK_RST6","features":[419]},{"name":"JIFMK_RST7","features":[419]},{"name":"JIFMK_SOF0","features":[419]},{"name":"JIFMK_SOF1","features":[419]},{"name":"JIFMK_SOF10","features":[419]},{"name":"JIFMK_SOF11","features":[419]},{"name":"JIFMK_SOF13","features":[419]},{"name":"JIFMK_SOF14","features":[419]},{"name":"JIFMK_SOF15","features":[419]},{"name":"JIFMK_SOF2","features":[419]},{"name":"JIFMK_SOF3","features":[419]},{"name":"JIFMK_SOF5","features":[419]},{"name":"JIFMK_SOF6","features":[419]},{"name":"JIFMK_SOF7","features":[419]},{"name":"JIFMK_SOF9","features":[419]},{"name":"JIFMK_SOI","features":[419]},{"name":"JIFMK_SOS","features":[419]},{"name":"JIFMK_TEM","features":[419]},{"name":"JOYCAPS2A","features":[419]},{"name":"JOYCAPS2W","features":[419]},{"name":"JOYCAPSA","features":[419]},{"name":"JOYCAPSW","features":[419]},{"name":"JOYCAPS_HASPOV","features":[419]},{"name":"JOYCAPS_HASR","features":[419]},{"name":"JOYCAPS_HASU","features":[419]},{"name":"JOYCAPS_HASV","features":[419]},{"name":"JOYCAPS_HASZ","features":[419]},{"name":"JOYCAPS_POV4DIR","features":[419]},{"name":"JOYCAPS_POVCTS","features":[419]},{"name":"JOYERR_NOCANDO","features":[419]},{"name":"JOYERR_NOERROR","features":[419]},{"name":"JOYERR_PARMS","features":[419]},{"name":"JOYERR_UNPLUGGED","features":[419]},{"name":"JOYINFO","features":[419]},{"name":"JOYINFOEX","features":[419]},{"name":"JOYSTICKID1","features":[419]},{"name":"JOYSTICKID2","features":[419]},{"name":"JOY_BUTTON1","features":[419]},{"name":"JOY_BUTTON10","features":[419]},{"name":"JOY_BUTTON11","features":[419]},{"name":"JOY_BUTTON12","features":[419]},{"name":"JOY_BUTTON13","features":[419]},{"name":"JOY_BUTTON14","features":[419]},{"name":"JOY_BUTTON15","features":[419]},{"name":"JOY_BUTTON16","features":[419]},{"name":"JOY_BUTTON17","features":[419]},{"name":"JOY_BUTTON18","features":[419]},{"name":"JOY_BUTTON19","features":[419]},{"name":"JOY_BUTTON1CHG","features":[419]},{"name":"JOY_BUTTON2","features":[419]},{"name":"JOY_BUTTON20","features":[419]},{"name":"JOY_BUTTON21","features":[419]},{"name":"JOY_BUTTON22","features":[419]},{"name":"JOY_BUTTON23","features":[419]},{"name":"JOY_BUTTON24","features":[419]},{"name":"JOY_BUTTON25","features":[419]},{"name":"JOY_BUTTON26","features":[419]},{"name":"JOY_BUTTON27","features":[419]},{"name":"JOY_BUTTON28","features":[419]},{"name":"JOY_BUTTON29","features":[419]},{"name":"JOY_BUTTON2CHG","features":[419]},{"name":"JOY_BUTTON3","features":[419]},{"name":"JOY_BUTTON30","features":[419]},{"name":"JOY_BUTTON31","features":[419]},{"name":"JOY_BUTTON32","features":[419]},{"name":"JOY_BUTTON3CHG","features":[419]},{"name":"JOY_BUTTON4","features":[419]},{"name":"JOY_BUTTON4CHG","features":[419]},{"name":"JOY_BUTTON5","features":[419]},{"name":"JOY_BUTTON6","features":[419]},{"name":"JOY_BUTTON7","features":[419]},{"name":"JOY_BUTTON8","features":[419]},{"name":"JOY_BUTTON9","features":[419]},{"name":"JOY_CAL_READ3","features":[419]},{"name":"JOY_CAL_READ4","features":[419]},{"name":"JOY_CAL_READ5","features":[419]},{"name":"JOY_CAL_READ6","features":[419]},{"name":"JOY_CAL_READALWAYS","features":[419]},{"name":"JOY_CAL_READRONLY","features":[419]},{"name":"JOY_CAL_READUONLY","features":[419]},{"name":"JOY_CAL_READVONLY","features":[419]},{"name":"JOY_CAL_READXONLY","features":[419]},{"name":"JOY_CAL_READXYONLY","features":[419]},{"name":"JOY_CAL_READYONLY","features":[419]},{"name":"JOY_CAL_READZONLY","features":[419]},{"name":"JOY_CONFIGCHANGED_MSGSTRING","features":[419]},{"name":"JOY_POVBACKWARD","features":[419]},{"name":"JOY_POVFORWARD","features":[419]},{"name":"JOY_POVLEFT","features":[419]},{"name":"JOY_POVRIGHT","features":[419]},{"name":"JOY_RETURNBUTTONS","features":[419]},{"name":"JOY_RETURNCENTERED","features":[419]},{"name":"JOY_RETURNPOV","features":[419]},{"name":"JOY_RETURNPOVCTS","features":[419]},{"name":"JOY_RETURNR","features":[419]},{"name":"JOY_RETURNRAWDATA","features":[419]},{"name":"JOY_RETURNU","features":[419]},{"name":"JOY_RETURNV","features":[419]},{"name":"JOY_RETURNX","features":[419]},{"name":"JOY_RETURNY","features":[419]},{"name":"JOY_RETURNZ","features":[419]},{"name":"JOY_USEDEADZONE","features":[419]},{"name":"JPEGINFOHEADER","features":[419]},{"name":"JPEG_PROCESS_BASELINE","features":[419]},{"name":"JPEG_RGB","features":[419]},{"name":"JPEG_Y","features":[419]},{"name":"JPEG_YCbCr","features":[419]},{"name":"KSDATAFORMAT_SUBTYPE_IEEE_FLOAT","features":[419]},{"name":"LPFNEXTDEVIO","features":[305,419,310]},{"name":"LPMMIOPROC","features":[305,419]},{"name":"LPTASKCALLBACK","features":[419]},{"name":"MCIERR_AVI_AUDIOERROR","features":[419]},{"name":"MCIERR_AVI_BADPALETTE","features":[419]},{"name":"MCIERR_AVI_CANTPLAYFULLSCREEN","features":[419]},{"name":"MCIERR_AVI_DISPLAYERROR","features":[419]},{"name":"MCIERR_AVI_NOCOMPRESSOR","features":[419]},{"name":"MCIERR_AVI_NODISPDIB","features":[419]},{"name":"MCIERR_AVI_NOTINTERLEAVED","features":[419]},{"name":"MCIERR_AVI_OLDAVIFORMAT","features":[419]},{"name":"MCIERR_AVI_TOOBIGFORVGA","features":[419]},{"name":"MCIERR_BAD_CONSTANT","features":[419]},{"name":"MCIERR_BAD_INTEGER","features":[419]},{"name":"MCIERR_BAD_TIME_FORMAT","features":[419]},{"name":"MCIERR_CANNOT_LOAD_DRIVER","features":[419]},{"name":"MCIERR_CANNOT_USE_ALL","features":[419]},{"name":"MCIERR_CREATEWINDOW","features":[419]},{"name":"MCIERR_CUSTOM_DRIVER_BASE","features":[419]},{"name":"MCIERR_DEVICE_LENGTH","features":[419]},{"name":"MCIERR_DEVICE_LOCKED","features":[419]},{"name":"MCIERR_DEVICE_NOT_INSTALLED","features":[419]},{"name":"MCIERR_DEVICE_NOT_READY","features":[419]},{"name":"MCIERR_DEVICE_OPEN","features":[419]},{"name":"MCIERR_DEVICE_ORD_LENGTH","features":[419]},{"name":"MCIERR_DEVICE_TYPE_REQUIRED","features":[419]},{"name":"MCIERR_DGV_BAD_CLIPBOARD_RANGE","features":[419]},{"name":"MCIERR_DGV_DEVICE_LIMIT","features":[419]},{"name":"MCIERR_DGV_DEVICE_MEMORY_FULL","features":[419]},{"name":"MCIERR_DGV_DISK_FULL","features":[419]},{"name":"MCIERR_DGV_IOERR","features":[419]},{"name":"MCIERR_DGV_WORKSPACE_EMPTY","features":[419]},{"name":"MCIERR_DRIVER","features":[419]},{"name":"MCIERR_DRIVER_INTERNAL","features":[419]},{"name":"MCIERR_DUPLICATE_ALIAS","features":[419]},{"name":"MCIERR_DUPLICATE_FLAGS","features":[419]},{"name":"MCIERR_EXTENSION_NOT_FOUND","features":[419]},{"name":"MCIERR_EXTRA_CHARACTERS","features":[419]},{"name":"MCIERR_FILENAME_REQUIRED","features":[419]},{"name":"MCIERR_FILE_NOT_FOUND","features":[419]},{"name":"MCIERR_FILE_NOT_SAVED","features":[419]},{"name":"MCIERR_FILE_READ","features":[419]},{"name":"MCIERR_FILE_WRITE","features":[419]},{"name":"MCIERR_FLAGS_NOT_COMPATIBLE","features":[419]},{"name":"MCIERR_GET_CD","features":[419]},{"name":"MCIERR_HARDWARE","features":[419]},{"name":"MCIERR_ILLEGAL_FOR_AUTO_OPEN","features":[419]},{"name":"MCIERR_INTERNAL","features":[419]},{"name":"MCIERR_INVALID_DEVICE_ID","features":[419]},{"name":"MCIERR_INVALID_DEVICE_NAME","features":[419]},{"name":"MCIERR_INVALID_FILE","features":[419]},{"name":"MCIERR_MISSING_COMMAND_STRING","features":[419]},{"name":"MCIERR_MISSING_DEVICE_NAME","features":[419]},{"name":"MCIERR_MISSING_PARAMETER","features":[419]},{"name":"MCIERR_MISSING_STRING_ARGUMENT","features":[419]},{"name":"MCIERR_MULTIPLE","features":[419]},{"name":"MCIERR_MUST_USE_SHAREABLE","features":[419]},{"name":"MCIERR_NEW_REQUIRES_ALIAS","features":[419]},{"name":"MCIERR_NONAPPLICABLE_FUNCTION","features":[419]},{"name":"MCIERR_NOTIFY_ON_AUTO_OPEN","features":[419]},{"name":"MCIERR_NO_CLOSING_QUOTE","features":[419]},{"name":"MCIERR_NO_ELEMENT_ALLOWED","features":[419]},{"name":"MCIERR_NO_IDENTITY","features":[419]},{"name":"MCIERR_NO_INTEGER","features":[419]},{"name":"MCIERR_NO_WINDOW","features":[419]},{"name":"MCIERR_NULL_PARAMETER_BLOCK","features":[419]},{"name":"MCIERR_OUTOFRANGE","features":[419]},{"name":"MCIERR_OUT_OF_MEMORY","features":[419]},{"name":"MCIERR_PARAM_OVERFLOW","features":[419]},{"name":"MCIERR_PARSER_INTERNAL","features":[419]},{"name":"MCIERR_SEQ_DIV_INCOMPATIBLE","features":[419]},{"name":"MCIERR_SEQ_NOMIDIPRESENT","features":[419]},{"name":"MCIERR_SEQ_PORTUNSPECIFIED","features":[419]},{"name":"MCIERR_SEQ_PORT_INUSE","features":[419]},{"name":"MCIERR_SEQ_PORT_MAPNODEVICE","features":[419]},{"name":"MCIERR_SEQ_PORT_MISCERROR","features":[419]},{"name":"MCIERR_SEQ_PORT_NONEXISTENT","features":[419]},{"name":"MCIERR_SEQ_TIMER","features":[419]},{"name":"MCIERR_SET_CD","features":[419]},{"name":"MCIERR_SET_DRIVE","features":[419]},{"name":"MCIERR_UNNAMED_RESOURCE","features":[419]},{"name":"MCIERR_UNRECOGNIZED_COMMAND","features":[419]},{"name":"MCIERR_UNRECOGNIZED_KEYWORD","features":[419]},{"name":"MCIERR_UNSUPPORTED_FUNCTION","features":[419]},{"name":"MCIERR_WAVE_INPUTSINUSE","features":[419]},{"name":"MCIERR_WAVE_INPUTSUNSUITABLE","features":[419]},{"name":"MCIERR_WAVE_INPUTUNSPECIFIED","features":[419]},{"name":"MCIERR_WAVE_OUTPUTSINUSE","features":[419]},{"name":"MCIERR_WAVE_OUTPUTSUNSUITABLE","features":[419]},{"name":"MCIERR_WAVE_OUTPUTUNSPECIFIED","features":[419]},{"name":"MCIERR_WAVE_SETINPUTINUSE","features":[419]},{"name":"MCIERR_WAVE_SETINPUTUNSUITABLE","features":[419]},{"name":"MCIERR_WAVE_SETOUTPUTINUSE","features":[419]},{"name":"MCIERR_WAVE_SETOUTPUTUNSUITABLE","features":[419]},{"name":"MCIWNDF_NOAUTOSIZEMOVIE","features":[419]},{"name":"MCIWNDF_NOAUTOSIZEWINDOW","features":[419]},{"name":"MCIWNDF_NOERRORDLG","features":[419]},{"name":"MCIWNDF_NOMENU","features":[419]},{"name":"MCIWNDF_NOOPEN","features":[419]},{"name":"MCIWNDF_NOPLAYBAR","features":[419]},{"name":"MCIWNDF_NOTIFYALL","features":[419]},{"name":"MCIWNDF_NOTIFYANSI","features":[419]},{"name":"MCIWNDF_NOTIFYERROR","features":[419]},{"name":"MCIWNDF_NOTIFYMEDIA","features":[419]},{"name":"MCIWNDF_NOTIFYMEDIAA","features":[419]},{"name":"MCIWNDF_NOTIFYMEDIAW","features":[419]},{"name":"MCIWNDF_NOTIFYMODE","features":[419]},{"name":"MCIWNDF_NOTIFYPOS","features":[419]},{"name":"MCIWNDF_NOTIFYSIZE","features":[419]},{"name":"MCIWNDF_RECORD","features":[419]},{"name":"MCIWNDF_SHOWALL","features":[419]},{"name":"MCIWNDF_SHOWMODE","features":[419]},{"name":"MCIWNDF_SHOWNAME","features":[419]},{"name":"MCIWNDF_SHOWPOS","features":[419]},{"name":"MCIWNDM_CAN_CONFIG","features":[419]},{"name":"MCIWNDM_CAN_EJECT","features":[419]},{"name":"MCIWNDM_CAN_PLAY","features":[419]},{"name":"MCIWNDM_CAN_RECORD","features":[419]},{"name":"MCIWNDM_CAN_SAVE","features":[419]},{"name":"MCIWNDM_CAN_WINDOW","features":[419]},{"name":"MCIWNDM_CHANGESTYLES","features":[419]},{"name":"MCIWNDM_EJECT","features":[419]},{"name":"MCIWNDM_GETACTIVETIMER","features":[419]},{"name":"MCIWNDM_GETALIAS","features":[419]},{"name":"MCIWNDM_GETDEVICE","features":[419]},{"name":"MCIWNDM_GETDEVICEA","features":[419]},{"name":"MCIWNDM_GETDEVICEID","features":[419]},{"name":"MCIWNDM_GETDEVICEW","features":[419]},{"name":"MCIWNDM_GETEND","features":[419]},{"name":"MCIWNDM_GETERROR","features":[419]},{"name":"MCIWNDM_GETERRORA","features":[419]},{"name":"MCIWNDM_GETERRORW","features":[419]},{"name":"MCIWNDM_GETFILENAME","features":[419]},{"name":"MCIWNDM_GETFILENAMEA","features":[419]},{"name":"MCIWNDM_GETFILENAMEW","features":[419]},{"name":"MCIWNDM_GETINACTIVETIMER","features":[419]},{"name":"MCIWNDM_GETLENGTH","features":[419]},{"name":"MCIWNDM_GETMODE","features":[419]},{"name":"MCIWNDM_GETMODEA","features":[419]},{"name":"MCIWNDM_GETMODEW","features":[419]},{"name":"MCIWNDM_GETPALETTE","features":[419]},{"name":"MCIWNDM_GETPOSITION","features":[419]},{"name":"MCIWNDM_GETPOSITIONA","features":[419]},{"name":"MCIWNDM_GETPOSITIONW","features":[419]},{"name":"MCIWNDM_GETREPEAT","features":[419]},{"name":"MCIWNDM_GETSPEED","features":[419]},{"name":"MCIWNDM_GETSTART","features":[419]},{"name":"MCIWNDM_GETSTYLES","features":[419]},{"name":"MCIWNDM_GETTIMEFORMAT","features":[419]},{"name":"MCIWNDM_GETTIMEFORMATA","features":[419]},{"name":"MCIWNDM_GETTIMEFORMATW","features":[419]},{"name":"MCIWNDM_GETVOLUME","features":[419]},{"name":"MCIWNDM_GETZOOM","features":[419]},{"name":"MCIWNDM_GET_DEST","features":[419]},{"name":"MCIWNDM_GET_SOURCE","features":[419]},{"name":"MCIWNDM_NEW","features":[419]},{"name":"MCIWNDM_NEWA","features":[419]},{"name":"MCIWNDM_NEWW","features":[419]},{"name":"MCIWNDM_NOTIFYERROR","features":[419]},{"name":"MCIWNDM_NOTIFYMEDIA","features":[419]},{"name":"MCIWNDM_NOTIFYMODE","features":[419]},{"name":"MCIWNDM_NOTIFYPOS","features":[419]},{"name":"MCIWNDM_NOTIFYSIZE","features":[419]},{"name":"MCIWNDM_OPEN","features":[419]},{"name":"MCIWNDM_OPENA","features":[419]},{"name":"MCIWNDM_OPENINTERFACE","features":[419]},{"name":"MCIWNDM_OPENW","features":[419]},{"name":"MCIWNDM_PALETTEKICK","features":[419]},{"name":"MCIWNDM_PLAYFROM","features":[419]},{"name":"MCIWNDM_PLAYREVERSE","features":[419]},{"name":"MCIWNDM_PLAYTO","features":[419]},{"name":"MCIWNDM_PUT_DEST","features":[419]},{"name":"MCIWNDM_PUT_SOURCE","features":[419]},{"name":"MCIWNDM_REALIZE","features":[419]},{"name":"MCIWNDM_RETURNSTRING","features":[419]},{"name":"MCIWNDM_RETURNSTRINGA","features":[419]},{"name":"MCIWNDM_RETURNSTRINGW","features":[419]},{"name":"MCIWNDM_SENDSTRING","features":[419]},{"name":"MCIWNDM_SENDSTRINGA","features":[419]},{"name":"MCIWNDM_SENDSTRINGW","features":[419]},{"name":"MCIWNDM_SETACTIVETIMER","features":[419]},{"name":"MCIWNDM_SETINACTIVETIMER","features":[419]},{"name":"MCIWNDM_SETOWNER","features":[419]},{"name":"MCIWNDM_SETPALETTE","features":[419]},{"name":"MCIWNDM_SETREPEAT","features":[419]},{"name":"MCIWNDM_SETSPEED","features":[419]},{"name":"MCIWNDM_SETTIMEFORMAT","features":[419]},{"name":"MCIWNDM_SETTIMEFORMATA","features":[419]},{"name":"MCIWNDM_SETTIMEFORMATW","features":[419]},{"name":"MCIWNDM_SETTIMERS","features":[419]},{"name":"MCIWNDM_SETVOLUME","features":[419]},{"name":"MCIWNDM_SETZOOM","features":[419]},{"name":"MCIWNDM_VALIDATEMEDIA","features":[419]},{"name":"MCIWNDOPENF_NEW","features":[419]},{"name":"MCIWND_END","features":[419]},{"name":"MCIWND_START","features":[419]},{"name":"MCIWND_WINDOW_CLASS","features":[419]},{"name":"MCIWndCreateA","features":[305,419]},{"name":"MCIWndCreateW","features":[305,419]},{"name":"MCIWndRegisterClass","features":[305,419]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_REVERSE","features":[419]},{"name":"MCI_ANIM_GETDEVCAPS_CAN_STRETCH","features":[419]},{"name":"MCI_ANIM_GETDEVCAPS_FAST_RATE","features":[419]},{"name":"MCI_ANIM_GETDEVCAPS_MAX_WINDOWS","features":[419]},{"name":"MCI_ANIM_GETDEVCAPS_NORMAL_RATE","features":[419]},{"name":"MCI_ANIM_GETDEVCAPS_PALETTES","features":[419]},{"name":"MCI_ANIM_GETDEVCAPS_SLOW_RATE","features":[419]},{"name":"MCI_ANIM_INFO_TEXT","features":[419]},{"name":"MCI_ANIM_OPEN_NOSTATIC","features":[419]},{"name":"MCI_ANIM_OPEN_PARENT","features":[419]},{"name":"MCI_ANIM_OPEN_PARMSA","features":[305,419]},{"name":"MCI_ANIM_OPEN_PARMSW","features":[305,419]},{"name":"MCI_ANIM_OPEN_WS","features":[419]},{"name":"MCI_ANIM_PLAY_FAST","features":[419]},{"name":"MCI_ANIM_PLAY_PARMS","features":[419]},{"name":"MCI_ANIM_PLAY_REVERSE","features":[419]},{"name":"MCI_ANIM_PLAY_SCAN","features":[419]},{"name":"MCI_ANIM_PLAY_SLOW","features":[419]},{"name":"MCI_ANIM_PLAY_SPEED","features":[419]},{"name":"MCI_ANIM_PUT_DESTINATION","features":[419]},{"name":"MCI_ANIM_PUT_SOURCE","features":[419]},{"name":"MCI_ANIM_REALIZE_BKGD","features":[419]},{"name":"MCI_ANIM_REALIZE_NORM","features":[419]},{"name":"MCI_ANIM_RECT","features":[419]},{"name":"MCI_ANIM_RECT_PARMS","features":[305,419]},{"name":"MCI_ANIM_STATUS_FORWARD","features":[419]},{"name":"MCI_ANIM_STATUS_HPAL","features":[419]},{"name":"MCI_ANIM_STATUS_HWND","features":[419]},{"name":"MCI_ANIM_STATUS_SPEED","features":[419]},{"name":"MCI_ANIM_STATUS_STRETCH","features":[419]},{"name":"MCI_ANIM_STEP_FRAMES","features":[419]},{"name":"MCI_ANIM_STEP_PARMS","features":[419]},{"name":"MCI_ANIM_STEP_REVERSE","features":[419]},{"name":"MCI_ANIM_UPDATE_HDC","features":[419]},{"name":"MCI_ANIM_UPDATE_PARMS","features":[305,316,419]},{"name":"MCI_ANIM_WHERE_DESTINATION","features":[419]},{"name":"MCI_ANIM_WHERE_SOURCE","features":[419]},{"name":"MCI_ANIM_WINDOW_DEFAULT","features":[419]},{"name":"MCI_ANIM_WINDOW_DISABLE_STRETCH","features":[419]},{"name":"MCI_ANIM_WINDOW_ENABLE_STRETCH","features":[419]},{"name":"MCI_ANIM_WINDOW_HWND","features":[419]},{"name":"MCI_ANIM_WINDOW_PARMSA","features":[305,419]},{"name":"MCI_ANIM_WINDOW_PARMSW","features":[305,419]},{"name":"MCI_ANIM_WINDOW_STATE","features":[419]},{"name":"MCI_ANIM_WINDOW_TEXT","features":[419]},{"name":"MCI_AVI_SETVIDEO_DRAW_PROCEDURE","features":[419]},{"name":"MCI_AVI_SETVIDEO_PALETTE_COLOR","features":[419]},{"name":"MCI_AVI_SETVIDEO_PALETTE_HALFTONE","features":[419]},{"name":"MCI_AVI_STATUS_AUDIO_BREAKS","features":[419]},{"name":"MCI_AVI_STATUS_FRAMES_SKIPPED","features":[419]},{"name":"MCI_AVI_STATUS_LAST_PLAY_SPEED","features":[419]},{"name":"MCI_BREAK","features":[419]},{"name":"MCI_BREAK_HWND","features":[419]},{"name":"MCI_BREAK_KEY","features":[419]},{"name":"MCI_BREAK_OFF","features":[419]},{"name":"MCI_BREAK_PARMS","features":[305,419]},{"name":"MCI_CAPTURE","features":[419]},{"name":"MCI_CDA_STATUS_TYPE_TRACK","features":[419]},{"name":"MCI_CDA_TRACK_AUDIO","features":[419]},{"name":"MCI_CDA_TRACK_OTHER","features":[419]},{"name":"MCI_CLOSE","features":[419]},{"name":"MCI_CLOSE_DRIVER","features":[419]},{"name":"MCI_COLONIZED3_RETURN","features":[419]},{"name":"MCI_COLONIZED4_RETURN","features":[419]},{"name":"MCI_COMMAND_HEAD","features":[419]},{"name":"MCI_CONFIGURE","features":[419]},{"name":"MCI_CONSTANT","features":[419]},{"name":"MCI_COPY","features":[419]},{"name":"MCI_CUE","features":[419]},{"name":"MCI_CUT","features":[419]},{"name":"MCI_DELETE","features":[419]},{"name":"MCI_DEVTYPE_ANIMATION","features":[419]},{"name":"MCI_DEVTYPE_CD_AUDIO","features":[419]},{"name":"MCI_DEVTYPE_DAT","features":[419]},{"name":"MCI_DEVTYPE_DIGITAL_VIDEO","features":[419]},{"name":"MCI_DEVTYPE_FIRST","features":[419]},{"name":"MCI_DEVTYPE_FIRST_USER","features":[419]},{"name":"MCI_DEVTYPE_LAST","features":[419]},{"name":"MCI_DEVTYPE_OTHER","features":[419]},{"name":"MCI_DEVTYPE_OVERLAY","features":[419]},{"name":"MCI_DEVTYPE_SCANNER","features":[419]},{"name":"MCI_DEVTYPE_SEQUENCER","features":[419]},{"name":"MCI_DEVTYPE_VCR","features":[419]},{"name":"MCI_DEVTYPE_VIDEODISC","features":[419]},{"name":"MCI_DEVTYPE_WAVEFORM_AUDIO","features":[419]},{"name":"MCI_DGV_CAPTURE_AS","features":[419]},{"name":"MCI_DGV_CAPTURE_AT","features":[419]},{"name":"MCI_DGV_CAPTURE_PARMSA","features":[305,419]},{"name":"MCI_DGV_CAPTURE_PARMSW","features":[305,419]},{"name":"MCI_DGV_COPY_AT","features":[419]},{"name":"MCI_DGV_COPY_AUDIO_STREAM","features":[419]},{"name":"MCI_DGV_COPY_PARMS","features":[305,419]},{"name":"MCI_DGV_COPY_VIDEO_STREAM","features":[419]},{"name":"MCI_DGV_CUE_INPUT","features":[419]},{"name":"MCI_DGV_CUE_NOSHOW","features":[419]},{"name":"MCI_DGV_CUE_OUTPUT","features":[419]},{"name":"MCI_DGV_CUE_PARMS","features":[419]},{"name":"MCI_DGV_CUT_AT","features":[419]},{"name":"MCI_DGV_CUT_AUDIO_STREAM","features":[419]},{"name":"MCI_DGV_CUT_PARMS","features":[305,419]},{"name":"MCI_DGV_CUT_VIDEO_STREAM","features":[419]},{"name":"MCI_DGV_DELETE_AT","features":[419]},{"name":"MCI_DGV_DELETE_AUDIO_STREAM","features":[419]},{"name":"MCI_DGV_DELETE_PARMS","features":[305,419]},{"name":"MCI_DGV_DELETE_VIDEO_STREAM","features":[419]},{"name":"MCI_DGV_FF_AVI","features":[419]},{"name":"MCI_DGV_FF_AVSS","features":[419]},{"name":"MCI_DGV_FF_DIB","features":[419]},{"name":"MCI_DGV_FF_JFIF","features":[419]},{"name":"MCI_DGV_FF_JPEG","features":[419]},{"name":"MCI_DGV_FF_MPEG","features":[419]},{"name":"MCI_DGV_FF_RDIB","features":[419]},{"name":"MCI_DGV_FF_RJPEG","features":[419]},{"name":"MCI_DGV_FILE_MODE_EDITING","features":[419]},{"name":"MCI_DGV_FILE_MODE_EDITING_S","features":[419]},{"name":"MCI_DGV_FILE_MODE_IDLE","features":[419]},{"name":"MCI_DGV_FILE_MODE_IDLE_S","features":[419]},{"name":"MCI_DGV_FILE_MODE_LOADING","features":[419]},{"name":"MCI_DGV_FILE_MODE_LOADING_S","features":[419]},{"name":"MCI_DGV_FILE_MODE_SAVING","features":[419]},{"name":"MCI_DGV_FILE_MODE_SAVING_S","features":[419]},{"name":"MCI_DGV_FILE_S","features":[419]},{"name":"MCI_DGV_FREEZE_AT","features":[419]},{"name":"MCI_DGV_FREEZE_OUTSIDE","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_CAN_FREEZE","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_CAN_LOCK","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_CAN_REVERSE","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STRETCH","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_CAN_STR_IN","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_CAN_TEST","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_HAS_STILL","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_MAXIMUM_RATE","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_MAX_WINDOWS","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_MINIMUM_RATE","features":[419]},{"name":"MCI_DGV_GETDEVCAPS_PALETTES","features":[419]},{"name":"MCI_DGV_INFO_AUDIO_ALG","features":[419]},{"name":"MCI_DGV_INFO_AUDIO_QUALITY","features":[419]},{"name":"MCI_DGV_INFO_ITEM","features":[419]},{"name":"MCI_DGV_INFO_PARMSA","features":[419]},{"name":"MCI_DGV_INFO_PARMSW","features":[419]},{"name":"MCI_DGV_INFO_STILL_ALG","features":[419]},{"name":"MCI_DGV_INFO_STILL_QUALITY","features":[419]},{"name":"MCI_DGV_INFO_TEXT","features":[419]},{"name":"MCI_DGV_INFO_USAGE","features":[419]},{"name":"MCI_DGV_INFO_VIDEO_ALG","features":[419]},{"name":"MCI_DGV_INFO_VIDEO_QUALITY","features":[419]},{"name":"MCI_DGV_INPUT_S","features":[419]},{"name":"MCI_DGV_LIST_ALG","features":[419]},{"name":"MCI_DGV_LIST_AUDIO_ALG","features":[419]},{"name":"MCI_DGV_LIST_AUDIO_QUALITY","features":[419]},{"name":"MCI_DGV_LIST_AUDIO_STREAM","features":[419]},{"name":"MCI_DGV_LIST_COUNT","features":[419]},{"name":"MCI_DGV_LIST_ITEM","features":[419]},{"name":"MCI_DGV_LIST_NUMBER","features":[419]},{"name":"MCI_DGV_LIST_PARMSA","features":[419]},{"name":"MCI_DGV_LIST_PARMSW","features":[419]},{"name":"MCI_DGV_LIST_STILL_ALG","features":[419]},{"name":"MCI_DGV_LIST_STILL_QUALITY","features":[419]},{"name":"MCI_DGV_LIST_VIDEO_ALG","features":[419]},{"name":"MCI_DGV_LIST_VIDEO_QUALITY","features":[419]},{"name":"MCI_DGV_LIST_VIDEO_SOURCE","features":[419]},{"name":"MCI_DGV_LIST_VIDEO_STREAM","features":[419]},{"name":"MCI_DGV_METHOD_DIRECT","features":[419]},{"name":"MCI_DGV_METHOD_POST","features":[419]},{"name":"MCI_DGV_METHOD_PRE","features":[419]},{"name":"MCI_DGV_MONITOR_FILE","features":[419]},{"name":"MCI_DGV_MONITOR_INPUT","features":[419]},{"name":"MCI_DGV_MONITOR_METHOD","features":[419]},{"name":"MCI_DGV_MONITOR_PARMS","features":[419]},{"name":"MCI_DGV_MONITOR_SOURCE","features":[419]},{"name":"MCI_DGV_OPEN_16BIT","features":[419]},{"name":"MCI_DGV_OPEN_32BIT","features":[419]},{"name":"MCI_DGV_OPEN_NOSTATIC","features":[419]},{"name":"MCI_DGV_OPEN_PARENT","features":[419]},{"name":"MCI_DGV_OPEN_PARMSA","features":[305,419]},{"name":"MCI_DGV_OPEN_PARMSW","features":[305,419]},{"name":"MCI_DGV_OPEN_WS","features":[419]},{"name":"MCI_DGV_PASTE_AT","features":[419]},{"name":"MCI_DGV_PASTE_AUDIO_STREAM","features":[419]},{"name":"MCI_DGV_PASTE_INSERT","features":[419]},{"name":"MCI_DGV_PASTE_OVERWRITE","features":[419]},{"name":"MCI_DGV_PASTE_PARMS","features":[305,419]},{"name":"MCI_DGV_PASTE_VIDEO_STREAM","features":[419]},{"name":"MCI_DGV_PLAY_REPEAT","features":[419]},{"name":"MCI_DGV_PLAY_REVERSE","features":[419]},{"name":"MCI_DGV_PUT_CLIENT","features":[419]},{"name":"MCI_DGV_PUT_DESTINATION","features":[419]},{"name":"MCI_DGV_PUT_FRAME","features":[419]},{"name":"MCI_DGV_PUT_SOURCE","features":[419]},{"name":"MCI_DGV_PUT_VIDEO","features":[419]},{"name":"MCI_DGV_PUT_WINDOW","features":[419]},{"name":"MCI_DGV_QUALITY_PARMSA","features":[419]},{"name":"MCI_DGV_QUALITY_PARMSW","features":[419]},{"name":"MCI_DGV_REALIZE_BKGD","features":[419]},{"name":"MCI_DGV_REALIZE_NORM","features":[419]},{"name":"MCI_DGV_RECORD_AUDIO_STREAM","features":[419]},{"name":"MCI_DGV_RECORD_HOLD","features":[419]},{"name":"MCI_DGV_RECORD_PARMS","features":[305,419]},{"name":"MCI_DGV_RECORD_VIDEO_STREAM","features":[419]},{"name":"MCI_DGV_RECT","features":[419]},{"name":"MCI_DGV_RECT_PARMS","features":[305,419]},{"name":"MCI_DGV_RESERVE_IN","features":[419]},{"name":"MCI_DGV_RESERVE_PARMSA","features":[419]},{"name":"MCI_DGV_RESERVE_PARMSW","features":[419]},{"name":"MCI_DGV_RESERVE_SIZE","features":[419]},{"name":"MCI_DGV_RESTORE_AT","features":[419]},{"name":"MCI_DGV_RESTORE_FROM","features":[419]},{"name":"MCI_DGV_RESTORE_PARMSA","features":[305,419]},{"name":"MCI_DGV_RESTORE_PARMSW","features":[305,419]},{"name":"MCI_DGV_SAVE_ABORT","features":[419]},{"name":"MCI_DGV_SAVE_KEEPRESERVE","features":[419]},{"name":"MCI_DGV_SAVE_PARMSA","features":[305,419]},{"name":"MCI_DGV_SAVE_PARMSW","features":[305,419]},{"name":"MCI_DGV_SETAUDIO_ALG","features":[419]},{"name":"MCI_DGV_SETAUDIO_AVGBYTESPERSEC","features":[419]},{"name":"MCI_DGV_SETAUDIO_BASS","features":[419]},{"name":"MCI_DGV_SETAUDIO_BITSPERSAMPLE","features":[419]},{"name":"MCI_DGV_SETAUDIO_BLOCKALIGN","features":[419]},{"name":"MCI_DGV_SETAUDIO_CLOCKTIME","features":[419]},{"name":"MCI_DGV_SETAUDIO_INPUT","features":[419]},{"name":"MCI_DGV_SETAUDIO_ITEM","features":[419]},{"name":"MCI_DGV_SETAUDIO_LEFT","features":[419]},{"name":"MCI_DGV_SETAUDIO_OUTPUT","features":[419]},{"name":"MCI_DGV_SETAUDIO_OVER","features":[419]},{"name":"MCI_DGV_SETAUDIO_PARMSA","features":[419]},{"name":"MCI_DGV_SETAUDIO_PARMSW","features":[419]},{"name":"MCI_DGV_SETAUDIO_QUALITY","features":[419]},{"name":"MCI_DGV_SETAUDIO_RECORD","features":[419]},{"name":"MCI_DGV_SETAUDIO_RIGHT","features":[419]},{"name":"MCI_DGV_SETAUDIO_SAMPLESPERSEC","features":[419]},{"name":"MCI_DGV_SETAUDIO_SOURCE","features":[419]},{"name":"MCI_DGV_SETAUDIO_SOURCE_AVERAGE","features":[419]},{"name":"MCI_DGV_SETAUDIO_SOURCE_LEFT","features":[419]},{"name":"MCI_DGV_SETAUDIO_SOURCE_RIGHT","features":[419]},{"name":"MCI_DGV_SETAUDIO_SOURCE_STEREO","features":[419]},{"name":"MCI_DGV_SETAUDIO_SRC_AVERAGE_S","features":[419]},{"name":"MCI_DGV_SETAUDIO_SRC_LEFT_S","features":[419]},{"name":"MCI_DGV_SETAUDIO_SRC_RIGHT_S","features":[419]},{"name":"MCI_DGV_SETAUDIO_SRC_STEREO_S","features":[419]},{"name":"MCI_DGV_SETAUDIO_STREAM","features":[419]},{"name":"MCI_DGV_SETAUDIO_TREBLE","features":[419]},{"name":"MCI_DGV_SETAUDIO_VALUE","features":[419]},{"name":"MCI_DGV_SETAUDIO_VOLUME","features":[419]},{"name":"MCI_DGV_SETVIDEO_ALG","features":[419]},{"name":"MCI_DGV_SETVIDEO_BITSPERPEL","features":[419]},{"name":"MCI_DGV_SETVIDEO_BRIGHTNESS","features":[419]},{"name":"MCI_DGV_SETVIDEO_CLOCKTIME","features":[419]},{"name":"MCI_DGV_SETVIDEO_COLOR","features":[419]},{"name":"MCI_DGV_SETVIDEO_CONTRAST","features":[419]},{"name":"MCI_DGV_SETVIDEO_FRAME_RATE","features":[419]},{"name":"MCI_DGV_SETVIDEO_GAMMA","features":[419]},{"name":"MCI_DGV_SETVIDEO_INPUT","features":[419]},{"name":"MCI_DGV_SETVIDEO_ITEM","features":[419]},{"name":"MCI_DGV_SETVIDEO_KEY_COLOR","features":[419]},{"name":"MCI_DGV_SETVIDEO_KEY_INDEX","features":[419]},{"name":"MCI_DGV_SETVIDEO_OUTPUT","features":[419]},{"name":"MCI_DGV_SETVIDEO_OVER","features":[419]},{"name":"MCI_DGV_SETVIDEO_PALHANDLE","features":[419]},{"name":"MCI_DGV_SETVIDEO_PARMSA","features":[419]},{"name":"MCI_DGV_SETVIDEO_PARMSW","features":[419]},{"name":"MCI_DGV_SETVIDEO_QUALITY","features":[419]},{"name":"MCI_DGV_SETVIDEO_RECORD","features":[419]},{"name":"MCI_DGV_SETVIDEO_SHARPNESS","features":[419]},{"name":"MCI_DGV_SETVIDEO_SOURCE","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_GENERIC_S","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_NTSC_S","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_NUMBER","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_PAL_S","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_RGB_S","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_SECAM_S","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO","features":[419]},{"name":"MCI_DGV_SETVIDEO_SRC_SVIDEO_S","features":[419]},{"name":"MCI_DGV_SETVIDEO_STILL","features":[419]},{"name":"MCI_DGV_SETVIDEO_STREAM","features":[419]},{"name":"MCI_DGV_SETVIDEO_TINT","features":[419]},{"name":"MCI_DGV_SETVIDEO_VALUE","features":[419]},{"name":"MCI_DGV_SET_FILEFORMAT","features":[419]},{"name":"MCI_DGV_SET_PARMS","features":[419]},{"name":"MCI_DGV_SET_SEEK_EXACTLY","features":[419]},{"name":"MCI_DGV_SET_SPEED","features":[419]},{"name":"MCI_DGV_SET_STILL","features":[419]},{"name":"MCI_DGV_SIGNAL_AT","features":[419]},{"name":"MCI_DGV_SIGNAL_CANCEL","features":[419]},{"name":"MCI_DGV_SIGNAL_EVERY","features":[419]},{"name":"MCI_DGV_SIGNAL_PARMS","features":[419]},{"name":"MCI_DGV_SIGNAL_POSITION","features":[419]},{"name":"MCI_DGV_SIGNAL_USERVAL","features":[419]},{"name":"MCI_DGV_STATUS_AUDIO","features":[419]},{"name":"MCI_DGV_STATUS_AUDIO_INPUT","features":[419]},{"name":"MCI_DGV_STATUS_AUDIO_RECORD","features":[419]},{"name":"MCI_DGV_STATUS_AUDIO_SOURCE","features":[419]},{"name":"MCI_DGV_STATUS_AUDIO_STREAM","features":[419]},{"name":"MCI_DGV_STATUS_AVGBYTESPERSEC","features":[419]},{"name":"MCI_DGV_STATUS_BASS","features":[419]},{"name":"MCI_DGV_STATUS_BITSPERPEL","features":[419]},{"name":"MCI_DGV_STATUS_BITSPERSAMPLE","features":[419]},{"name":"MCI_DGV_STATUS_BLOCKALIGN","features":[419]},{"name":"MCI_DGV_STATUS_BRIGHTNESS","features":[419]},{"name":"MCI_DGV_STATUS_COLOR","features":[419]},{"name":"MCI_DGV_STATUS_CONTRAST","features":[419]},{"name":"MCI_DGV_STATUS_DISKSPACE","features":[419]},{"name":"MCI_DGV_STATUS_FILEFORMAT","features":[419]},{"name":"MCI_DGV_STATUS_FILE_COMPLETION","features":[419]},{"name":"MCI_DGV_STATUS_FILE_MODE","features":[419]},{"name":"MCI_DGV_STATUS_FORWARD","features":[419]},{"name":"MCI_DGV_STATUS_FRAME_RATE","features":[419]},{"name":"MCI_DGV_STATUS_GAMMA","features":[419]},{"name":"MCI_DGV_STATUS_HPAL","features":[419]},{"name":"MCI_DGV_STATUS_HWND","features":[419]},{"name":"MCI_DGV_STATUS_INPUT","features":[419]},{"name":"MCI_DGV_STATUS_KEY_COLOR","features":[419]},{"name":"MCI_DGV_STATUS_KEY_INDEX","features":[419]},{"name":"MCI_DGV_STATUS_LEFT","features":[419]},{"name":"MCI_DGV_STATUS_MONITOR","features":[419]},{"name":"MCI_DGV_STATUS_MONITOR_METHOD","features":[419]},{"name":"MCI_DGV_STATUS_NOMINAL","features":[419]},{"name":"MCI_DGV_STATUS_OUTPUT","features":[419]},{"name":"MCI_DGV_STATUS_PARMSA","features":[419]},{"name":"MCI_DGV_STATUS_PARMSW","features":[419]},{"name":"MCI_DGV_STATUS_PAUSE_MODE","features":[419]},{"name":"MCI_DGV_STATUS_RECORD","features":[419]},{"name":"MCI_DGV_STATUS_REFERENCE","features":[419]},{"name":"MCI_DGV_STATUS_RIGHT","features":[419]},{"name":"MCI_DGV_STATUS_SAMPLESPERSEC","features":[419]},{"name":"MCI_DGV_STATUS_SEEK_EXACTLY","features":[419]},{"name":"MCI_DGV_STATUS_SHARPNESS","features":[419]},{"name":"MCI_DGV_STATUS_SIZE","features":[419]},{"name":"MCI_DGV_STATUS_SMPTE","features":[419]},{"name":"MCI_DGV_STATUS_SPEED","features":[419]},{"name":"MCI_DGV_STATUS_STILL_FILEFORMAT","features":[419]},{"name":"MCI_DGV_STATUS_TINT","features":[419]},{"name":"MCI_DGV_STATUS_TREBLE","features":[419]},{"name":"MCI_DGV_STATUS_UNSAVED","features":[419]},{"name":"MCI_DGV_STATUS_VIDEO","features":[419]},{"name":"MCI_DGV_STATUS_VIDEO_RECORD","features":[419]},{"name":"MCI_DGV_STATUS_VIDEO_SOURCE","features":[419]},{"name":"MCI_DGV_STATUS_VIDEO_SRC_NUM","features":[419]},{"name":"MCI_DGV_STATUS_VIDEO_STREAM","features":[419]},{"name":"MCI_DGV_STATUS_VOLUME","features":[419]},{"name":"MCI_DGV_STATUS_WINDOW_MAXIMIZED","features":[419]},{"name":"MCI_DGV_STATUS_WINDOW_MINIMIZED","features":[419]},{"name":"MCI_DGV_STATUS_WINDOW_VISIBLE","features":[419]},{"name":"MCI_DGV_STEP_FRAMES","features":[419]},{"name":"MCI_DGV_STEP_PARMS","features":[419]},{"name":"MCI_DGV_STEP_REVERSE","features":[419]},{"name":"MCI_DGV_STOP_HOLD","features":[419]},{"name":"MCI_DGV_UPDATE_HDC","features":[419]},{"name":"MCI_DGV_UPDATE_PAINT","features":[419]},{"name":"MCI_DGV_UPDATE_PARMS","features":[305,316,419]},{"name":"MCI_DGV_WHERE_DESTINATION","features":[419]},{"name":"MCI_DGV_WHERE_FRAME","features":[419]},{"name":"MCI_DGV_WHERE_MAX","features":[419]},{"name":"MCI_DGV_WHERE_SOURCE","features":[419]},{"name":"MCI_DGV_WHERE_VIDEO","features":[419]},{"name":"MCI_DGV_WHERE_WINDOW","features":[419]},{"name":"MCI_DGV_WINDOW_DEFAULT","features":[419]},{"name":"MCI_DGV_WINDOW_HWND","features":[419]},{"name":"MCI_DGV_WINDOW_PARMSA","features":[305,419]},{"name":"MCI_DGV_WINDOW_PARMSW","features":[305,419]},{"name":"MCI_DGV_WINDOW_STATE","features":[419]},{"name":"MCI_DGV_WINDOW_TEXT","features":[419]},{"name":"MCI_END_COMMAND","features":[419]},{"name":"MCI_END_COMMAND_LIST","features":[419]},{"name":"MCI_END_CONSTANT","features":[419]},{"name":"MCI_ESCAPE","features":[419]},{"name":"MCI_FALSE","features":[419]},{"name":"MCI_FIRST","features":[419]},{"name":"MCI_FLAG","features":[419]},{"name":"MCI_FORMAT_BYTES","features":[419]},{"name":"MCI_FORMAT_BYTES_S","features":[419]},{"name":"MCI_FORMAT_FRAMES","features":[419]},{"name":"MCI_FORMAT_FRAMES_S","features":[419]},{"name":"MCI_FORMAT_HMS","features":[419]},{"name":"MCI_FORMAT_HMS_S","features":[419]},{"name":"MCI_FORMAT_MILLISECONDS","features":[419]},{"name":"MCI_FORMAT_MILLISECONDS_S","features":[419]},{"name":"MCI_FORMAT_MSF","features":[419]},{"name":"MCI_FORMAT_MSF_S","features":[419]},{"name":"MCI_FORMAT_SAMPLES","features":[419]},{"name":"MCI_FORMAT_SAMPLES_S","features":[419]},{"name":"MCI_FORMAT_SMPTE_24","features":[419]},{"name":"MCI_FORMAT_SMPTE_24_S","features":[419]},{"name":"MCI_FORMAT_SMPTE_25","features":[419]},{"name":"MCI_FORMAT_SMPTE_25_S","features":[419]},{"name":"MCI_FORMAT_SMPTE_30","features":[419]},{"name":"MCI_FORMAT_SMPTE_30DROP","features":[419]},{"name":"MCI_FORMAT_SMPTE_30DROP_S","features":[419]},{"name":"MCI_FORMAT_SMPTE_30_S","features":[419]},{"name":"MCI_FORMAT_TMSF","features":[419]},{"name":"MCI_FORMAT_TMSF_S","features":[419]},{"name":"MCI_FREEZE","features":[419]},{"name":"MCI_FROM","features":[419]},{"name":"MCI_GENERIC_PARMS","features":[419]},{"name":"MCI_GETDEVCAPS","features":[419]},{"name":"MCI_GETDEVCAPS_CAN_EJECT","features":[419]},{"name":"MCI_GETDEVCAPS_CAN_PLAY","features":[419]},{"name":"MCI_GETDEVCAPS_CAN_RECORD","features":[419]},{"name":"MCI_GETDEVCAPS_CAN_SAVE","features":[419]},{"name":"MCI_GETDEVCAPS_COMPOUND_DEVICE","features":[419]},{"name":"MCI_GETDEVCAPS_DEVICE_TYPE","features":[419]},{"name":"MCI_GETDEVCAPS_HAS_AUDIO","features":[419]},{"name":"MCI_GETDEVCAPS_HAS_VIDEO","features":[419]},{"name":"MCI_GETDEVCAPS_ITEM","features":[419]},{"name":"MCI_GETDEVCAPS_PARMS","features":[419]},{"name":"MCI_GETDEVCAPS_USES_FILES","features":[419]},{"name":"MCI_HDC","features":[419]},{"name":"MCI_HPAL","features":[419]},{"name":"MCI_HWND","features":[419]},{"name":"MCI_INFO","features":[419]},{"name":"MCI_INFO_COPYRIGHT","features":[419]},{"name":"MCI_INFO_FILE","features":[419]},{"name":"MCI_INFO_MEDIA_IDENTITY","features":[419]},{"name":"MCI_INFO_MEDIA_UPC","features":[419]},{"name":"MCI_INFO_NAME","features":[419]},{"name":"MCI_INFO_PARMSA","features":[419]},{"name":"MCI_INFO_PARMSW","features":[419]},{"name":"MCI_INFO_PRODUCT","features":[419]},{"name":"MCI_INFO_VERSION","features":[419]},{"name":"MCI_INTEGER","features":[419]},{"name":"MCI_INTEGER64","features":[419]},{"name":"MCI_INTEGER_RETURNED","features":[419]},{"name":"MCI_LAST","features":[419]},{"name":"MCI_LIST","features":[419]},{"name":"MCI_LOAD","features":[419]},{"name":"MCI_LOAD_FILE","features":[419]},{"name":"MCI_LOAD_PARMSA","features":[419]},{"name":"MCI_LOAD_PARMSW","features":[419]},{"name":"MCI_MAX_DEVICE_TYPE_LENGTH","features":[419]},{"name":"MCI_MCIAVI_PLAY_FULLBY2","features":[419]},{"name":"MCI_MCIAVI_PLAY_FULLSCREEN","features":[419]},{"name":"MCI_MCIAVI_PLAY_WINDOW","features":[419]},{"name":"MCI_MODE_NOT_READY","features":[419]},{"name":"MCI_MODE_OPEN","features":[419]},{"name":"MCI_MODE_PAUSE","features":[419]},{"name":"MCI_MODE_PLAY","features":[419]},{"name":"MCI_MODE_RECORD","features":[419]},{"name":"MCI_MODE_SEEK","features":[419]},{"name":"MCI_MODE_STOP","features":[419]},{"name":"MCI_MONITOR","features":[419]},{"name":"MCI_NOTIFY","features":[419]},{"name":"MCI_NOTIFY_ABORTED","features":[419]},{"name":"MCI_NOTIFY_FAILURE","features":[419]},{"name":"MCI_NOTIFY_SUCCESSFUL","features":[419]},{"name":"MCI_NOTIFY_SUPERSEDED","features":[419]},{"name":"MCI_OFF","features":[419]},{"name":"MCI_OFF_S","features":[419]},{"name":"MCI_ON","features":[419]},{"name":"MCI_ON_S","features":[419]},{"name":"MCI_OPEN","features":[419]},{"name":"MCI_OPEN_ALIAS","features":[419]},{"name":"MCI_OPEN_DRIVER","features":[419]},{"name":"MCI_OPEN_DRIVER_PARMS","features":[419]},{"name":"MCI_OPEN_ELEMENT","features":[419]},{"name":"MCI_OPEN_ELEMENT_ID","features":[419]},{"name":"MCI_OPEN_PARMSA","features":[419]},{"name":"MCI_OPEN_PARMSW","features":[419]},{"name":"MCI_OPEN_SHAREABLE","features":[419]},{"name":"MCI_OPEN_TYPE","features":[419]},{"name":"MCI_OPEN_TYPE_ID","features":[419]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_FREEZE","features":[419]},{"name":"MCI_OVLY_GETDEVCAPS_CAN_STRETCH","features":[419]},{"name":"MCI_OVLY_GETDEVCAPS_MAX_WINDOWS","features":[419]},{"name":"MCI_OVLY_INFO_TEXT","features":[419]},{"name":"MCI_OVLY_LOAD_PARMSA","features":[305,419]},{"name":"MCI_OVLY_LOAD_PARMSW","features":[305,419]},{"name":"MCI_OVLY_OPEN_PARENT","features":[419]},{"name":"MCI_OVLY_OPEN_PARMSA","features":[305,419]},{"name":"MCI_OVLY_OPEN_PARMSW","features":[305,419]},{"name":"MCI_OVLY_OPEN_WS","features":[419]},{"name":"MCI_OVLY_PUT_DESTINATION","features":[419]},{"name":"MCI_OVLY_PUT_FRAME","features":[419]},{"name":"MCI_OVLY_PUT_SOURCE","features":[419]},{"name":"MCI_OVLY_PUT_VIDEO","features":[419]},{"name":"MCI_OVLY_RECT","features":[419]},{"name":"MCI_OVLY_RECT_PARMS","features":[305,419]},{"name":"MCI_OVLY_SAVE_PARMSA","features":[305,419]},{"name":"MCI_OVLY_SAVE_PARMSW","features":[305,419]},{"name":"MCI_OVLY_STATUS_HWND","features":[419]},{"name":"MCI_OVLY_STATUS_STRETCH","features":[419]},{"name":"MCI_OVLY_WHERE_DESTINATION","features":[419]},{"name":"MCI_OVLY_WHERE_FRAME","features":[419]},{"name":"MCI_OVLY_WHERE_SOURCE","features":[419]},{"name":"MCI_OVLY_WHERE_VIDEO","features":[419]},{"name":"MCI_OVLY_WINDOW_DEFAULT","features":[419]},{"name":"MCI_OVLY_WINDOW_DISABLE_STRETCH","features":[419]},{"name":"MCI_OVLY_WINDOW_ENABLE_STRETCH","features":[419]},{"name":"MCI_OVLY_WINDOW_HWND","features":[419]},{"name":"MCI_OVLY_WINDOW_PARMSA","features":[305,419]},{"name":"MCI_OVLY_WINDOW_PARMSW","features":[305,419]},{"name":"MCI_OVLY_WINDOW_STATE","features":[419]},{"name":"MCI_OVLY_WINDOW_TEXT","features":[419]},{"name":"MCI_PASTE","features":[419]},{"name":"MCI_PAUSE","features":[419]},{"name":"MCI_PLAY","features":[419]},{"name":"MCI_PLAY_PARMS","features":[419]},{"name":"MCI_PUT","features":[419]},{"name":"MCI_QUALITY","features":[419]},{"name":"MCI_QUALITY_ALG","features":[419]},{"name":"MCI_QUALITY_DIALOG","features":[419]},{"name":"MCI_QUALITY_HANDLE","features":[419]},{"name":"MCI_QUALITY_ITEM","features":[419]},{"name":"MCI_QUALITY_ITEM_AUDIO","features":[419]},{"name":"MCI_QUALITY_ITEM_STILL","features":[419]},{"name":"MCI_QUALITY_ITEM_VIDEO","features":[419]},{"name":"MCI_QUALITY_NAME","features":[419]},{"name":"MCI_REALIZE","features":[419]},{"name":"MCI_RECORD","features":[419]},{"name":"MCI_RECORD_INSERT","features":[419]},{"name":"MCI_RECORD_OVERWRITE","features":[419]},{"name":"MCI_RECORD_PARMS","features":[419]},{"name":"MCI_RECT","features":[419]},{"name":"MCI_RESERVE","features":[419]},{"name":"MCI_RESOURCE_DRIVER","features":[419]},{"name":"MCI_RESOURCE_RETURNED","features":[419]},{"name":"MCI_RESTORE","features":[419]},{"name":"MCI_RESUME","features":[419]},{"name":"MCI_RETURN","features":[419]},{"name":"MCI_SAVE","features":[419]},{"name":"MCI_SAVE_FILE","features":[419]},{"name":"MCI_SAVE_PARMSA","features":[419]},{"name":"MCI_SAVE_PARMSW","features":[419]},{"name":"MCI_SECTION","features":[419]},{"name":"MCI_SEEK","features":[419]},{"name":"MCI_SEEK_PARMS","features":[419]},{"name":"MCI_SEEK_TO_END","features":[419]},{"name":"MCI_SEEK_TO_START","features":[419]},{"name":"MCI_SEQ_FILE","features":[419]},{"name":"MCI_SEQ_FILE_S","features":[419]},{"name":"MCI_SEQ_FORMAT_SONGPTR","features":[419]},{"name":"MCI_SEQ_FORMAT_SONGPTR_S","features":[419]},{"name":"MCI_SEQ_MAPPER","features":[419]},{"name":"MCI_SEQ_MAPPER_S","features":[419]},{"name":"MCI_SEQ_MIDI","features":[419]},{"name":"MCI_SEQ_MIDI_S","features":[419]},{"name":"MCI_SEQ_NONE","features":[419]},{"name":"MCI_SEQ_NONE_S","features":[419]},{"name":"MCI_SEQ_SET_MASTER","features":[419]},{"name":"MCI_SEQ_SET_OFFSET","features":[419]},{"name":"MCI_SEQ_SET_PARMS","features":[419]},{"name":"MCI_SEQ_SET_PORT","features":[419]},{"name":"MCI_SEQ_SET_SLAVE","features":[419]},{"name":"MCI_SEQ_SET_TEMPO","features":[419]},{"name":"MCI_SEQ_SMPTE","features":[419]},{"name":"MCI_SEQ_SMPTE_S","features":[419]},{"name":"MCI_SEQ_STATUS_COPYRIGHT","features":[419]},{"name":"MCI_SEQ_STATUS_DIVTYPE","features":[419]},{"name":"MCI_SEQ_STATUS_MASTER","features":[419]},{"name":"MCI_SEQ_STATUS_NAME","features":[419]},{"name":"MCI_SEQ_STATUS_OFFSET","features":[419]},{"name":"MCI_SEQ_STATUS_PORT","features":[419]},{"name":"MCI_SEQ_STATUS_SLAVE","features":[419]},{"name":"MCI_SEQ_STATUS_TEMPO","features":[419]},{"name":"MCI_SET","features":[419]},{"name":"MCI_SETAUDIO","features":[419]},{"name":"MCI_SETVIDEO","features":[419]},{"name":"MCI_SET_AUDIO","features":[419]},{"name":"MCI_SET_AUDIO_ALL","features":[419]},{"name":"MCI_SET_AUDIO_LEFT","features":[419]},{"name":"MCI_SET_AUDIO_RIGHT","features":[419]},{"name":"MCI_SET_DOOR_CLOSED","features":[419]},{"name":"MCI_SET_DOOR_OPEN","features":[419]},{"name":"MCI_SET_OFF","features":[419]},{"name":"MCI_SET_ON","features":[419]},{"name":"MCI_SET_PARMS","features":[419]},{"name":"MCI_SET_TIME_FORMAT","features":[419]},{"name":"MCI_SET_VIDEO","features":[419]},{"name":"MCI_SIGNAL","features":[419]},{"name":"MCI_SPIN","features":[419]},{"name":"MCI_STATUS","features":[419]},{"name":"MCI_STATUS_CURRENT_TRACK","features":[419]},{"name":"MCI_STATUS_ITEM","features":[419]},{"name":"MCI_STATUS_LENGTH","features":[419]},{"name":"MCI_STATUS_MEDIA_PRESENT","features":[419]},{"name":"MCI_STATUS_MODE","features":[419]},{"name":"MCI_STATUS_NUMBER_OF_TRACKS","features":[419]},{"name":"MCI_STATUS_PARMS","features":[419]},{"name":"MCI_STATUS_POSITION","features":[419]},{"name":"MCI_STATUS_READY","features":[419]},{"name":"MCI_STATUS_START","features":[419]},{"name":"MCI_STATUS_TIME_FORMAT","features":[419]},{"name":"MCI_STEP","features":[419]},{"name":"MCI_STOP","features":[419]},{"name":"MCI_STRING","features":[419]},{"name":"MCI_SYSINFO","features":[419]},{"name":"MCI_SYSINFO_INSTALLNAME","features":[419]},{"name":"MCI_SYSINFO_NAME","features":[419]},{"name":"MCI_SYSINFO_OPEN","features":[419]},{"name":"MCI_SYSINFO_PARMSA","features":[419]},{"name":"MCI_SYSINFO_PARMSW","features":[419]},{"name":"MCI_SYSINFO_QUANTITY","features":[419]},{"name":"MCI_TEST","features":[419]},{"name":"MCI_TO","features":[419]},{"name":"MCI_TRACK","features":[419]},{"name":"MCI_TRUE","features":[419]},{"name":"MCI_UNDO","features":[419]},{"name":"MCI_UNFREEZE","features":[419]},{"name":"MCI_UPDATE","features":[419]},{"name":"MCI_USER_MESSAGES","features":[419]},{"name":"MCI_VD_ESCAPE_PARMSA","features":[419]},{"name":"MCI_VD_ESCAPE_PARMSW","features":[419]},{"name":"MCI_VD_ESCAPE_STRING","features":[419]},{"name":"MCI_VD_FORMAT_TRACK","features":[419]},{"name":"MCI_VD_FORMAT_TRACK_S","features":[419]},{"name":"MCI_VD_GETDEVCAPS_CAN_REVERSE","features":[419]},{"name":"MCI_VD_GETDEVCAPS_CAV","features":[419]},{"name":"MCI_VD_GETDEVCAPS_CLV","features":[419]},{"name":"MCI_VD_GETDEVCAPS_FAST_RATE","features":[419]},{"name":"MCI_VD_GETDEVCAPS_NORMAL_RATE","features":[419]},{"name":"MCI_VD_GETDEVCAPS_SLOW_RATE","features":[419]},{"name":"MCI_VD_MEDIA_CAV","features":[419]},{"name":"MCI_VD_MEDIA_CLV","features":[419]},{"name":"MCI_VD_MEDIA_OTHER","features":[419]},{"name":"MCI_VD_MODE_PARK","features":[419]},{"name":"MCI_VD_PLAY_FAST","features":[419]},{"name":"MCI_VD_PLAY_PARMS","features":[419]},{"name":"MCI_VD_PLAY_REVERSE","features":[419]},{"name":"MCI_VD_PLAY_SCAN","features":[419]},{"name":"MCI_VD_PLAY_SLOW","features":[419]},{"name":"MCI_VD_PLAY_SPEED","features":[419]},{"name":"MCI_VD_SEEK_REVERSE","features":[419]},{"name":"MCI_VD_SPIN_DOWN","features":[419]},{"name":"MCI_VD_SPIN_UP","features":[419]},{"name":"MCI_VD_STATUS_DISC_SIZE","features":[419]},{"name":"MCI_VD_STATUS_FORWARD","features":[419]},{"name":"MCI_VD_STATUS_MEDIA_TYPE","features":[419]},{"name":"MCI_VD_STATUS_SIDE","features":[419]},{"name":"MCI_VD_STATUS_SPEED","features":[419]},{"name":"MCI_VD_STEP_FRAMES","features":[419]},{"name":"MCI_VD_STEP_PARMS","features":[419]},{"name":"MCI_VD_STEP_REVERSE","features":[419]},{"name":"MCI_WAIT","features":[419]},{"name":"MCI_WAVE_DELETE_PARMS","features":[419]},{"name":"MCI_WAVE_GETDEVCAPS_INPUTS","features":[419]},{"name":"MCI_WAVE_GETDEVCAPS_OUTPUTS","features":[419]},{"name":"MCI_WAVE_INPUT","features":[419]},{"name":"MCI_WAVE_MAPPER","features":[419]},{"name":"MCI_WAVE_OPEN_BUFFER","features":[419]},{"name":"MCI_WAVE_OPEN_PARMSA","features":[419]},{"name":"MCI_WAVE_OPEN_PARMSW","features":[419]},{"name":"MCI_WAVE_OUTPUT","features":[419]},{"name":"MCI_WAVE_PCM","features":[419]},{"name":"MCI_WAVE_SET_ANYINPUT","features":[419]},{"name":"MCI_WAVE_SET_ANYOUTPUT","features":[419]},{"name":"MCI_WAVE_SET_AVGBYTESPERSEC","features":[419]},{"name":"MCI_WAVE_SET_BITSPERSAMPLE","features":[419]},{"name":"MCI_WAVE_SET_BLOCKALIGN","features":[419]},{"name":"MCI_WAVE_SET_CHANNELS","features":[419]},{"name":"MCI_WAVE_SET_FORMATTAG","features":[419]},{"name":"MCI_WAVE_SET_PARMS","features":[419]},{"name":"MCI_WAVE_SET_SAMPLESPERSEC","features":[419]},{"name":"MCI_WAVE_STATUS_AVGBYTESPERSEC","features":[419]},{"name":"MCI_WAVE_STATUS_BITSPERSAMPLE","features":[419]},{"name":"MCI_WAVE_STATUS_BLOCKALIGN","features":[419]},{"name":"MCI_WAVE_STATUS_CHANNELS","features":[419]},{"name":"MCI_WAVE_STATUS_FORMATTAG","features":[419]},{"name":"MCI_WAVE_STATUS_LEVEL","features":[419]},{"name":"MCI_WAVE_STATUS_SAMPLESPERSEC","features":[419]},{"name":"MCI_WHERE","features":[419]},{"name":"MCI_WINDOW","features":[419]},{"name":"MCMADM_E_REGKEY_NOT_FOUND","features":[419]},{"name":"MCMADM_I_NO_EVENTS","features":[419]},{"name":"MEDIASPACEADPCMWAVEFORMAT","features":[420,419]},{"name":"MIDIMAPPER_S","features":[419]},{"name":"MIDIOPENSTRMID","features":[419]},{"name":"MIDI_IO_COOKED","features":[419]},{"name":"MIDI_IO_PACKED","features":[419]},{"name":"MIDM_ADDBUFFER","features":[419]},{"name":"MIDM_CLOSE","features":[419]},{"name":"MIDM_GETDEVCAPS","features":[419]},{"name":"MIDM_GETNUMDEVS","features":[419]},{"name":"MIDM_INIT","features":[419]},{"name":"MIDM_INIT_EX","features":[419]},{"name":"MIDM_MAPPER","features":[419]},{"name":"MIDM_OPEN","features":[419]},{"name":"MIDM_PREPARE","features":[419]},{"name":"MIDM_RESET","features":[419]},{"name":"MIDM_START","features":[419]},{"name":"MIDM_STOP","features":[419]},{"name":"MIDM_UNPREPARE","features":[419]},{"name":"MIDM_USER","features":[419]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_MTS","features":[419]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_ONOFF","features":[419]},{"name":"MIXERCONTROL_CONTROLTYPE_SRS_SYNTHSELECT","features":[419]},{"name":"MIXEROPENDESC","features":[420,419]},{"name":"MMCKINFO","features":[419]},{"name":"MMIOERR_ACCESSDENIED","features":[419]},{"name":"MMIOERR_BASE","features":[419]},{"name":"MMIOERR_CANNOTCLOSE","features":[419]},{"name":"MMIOERR_CANNOTEXPAND","features":[419]},{"name":"MMIOERR_CANNOTOPEN","features":[419]},{"name":"MMIOERR_CANNOTREAD","features":[419]},{"name":"MMIOERR_CANNOTSEEK","features":[419]},{"name":"MMIOERR_CANNOTWRITE","features":[419]},{"name":"MMIOERR_CHUNKNOTFOUND","features":[419]},{"name":"MMIOERR_FILENOTFOUND","features":[419]},{"name":"MMIOERR_INVALIDFILE","features":[419]},{"name":"MMIOERR_NETWORKERROR","features":[419]},{"name":"MMIOERR_OUTOFMEMORY","features":[419]},{"name":"MMIOERR_PATHNOTFOUND","features":[419]},{"name":"MMIOERR_SHARINGVIOLATION","features":[419]},{"name":"MMIOERR_TOOMANYOPENFILES","features":[419]},{"name":"MMIOERR_UNBUFFERED","features":[419]},{"name":"MMIOINFO","features":[305,419]},{"name":"MMIOM_CLOSE","features":[419]},{"name":"MMIOM_OPEN","features":[419]},{"name":"MMIOM_READ","features":[419]},{"name":"MMIOM_RENAME","features":[419]},{"name":"MMIOM_SEEK","features":[419]},{"name":"MMIOM_USER","features":[419]},{"name":"MMIOM_WRITE","features":[419]},{"name":"MMIOM_WRITEFLUSH","features":[419]},{"name":"MMIO_ALLOCBUF","features":[419]},{"name":"MMIO_COMPAT","features":[419]},{"name":"MMIO_CREATE","features":[419]},{"name":"MMIO_CREATELIST","features":[419]},{"name":"MMIO_CREATERIFF","features":[419]},{"name":"MMIO_DEFAULTBUFFER","features":[419]},{"name":"MMIO_DELETE","features":[419]},{"name":"MMIO_DENYNONE","features":[419]},{"name":"MMIO_DENYREAD","features":[419]},{"name":"MMIO_DENYWRITE","features":[419]},{"name":"MMIO_DIRTY","features":[419]},{"name":"MMIO_EMPTYBUF","features":[419]},{"name":"MMIO_EXCLUSIVE","features":[419]},{"name":"MMIO_EXIST","features":[419]},{"name":"MMIO_FHOPEN","features":[419]},{"name":"MMIO_FINDCHUNK","features":[419]},{"name":"MMIO_FINDLIST","features":[419]},{"name":"MMIO_FINDPROC","features":[419]},{"name":"MMIO_FINDRIFF","features":[419]},{"name":"MMIO_GETTEMP","features":[419]},{"name":"MMIO_GLOBALPROC","features":[419]},{"name":"MMIO_INSTALLPROC","features":[419]},{"name":"MMIO_PARSE","features":[419]},{"name":"MMIO_READ","features":[419]},{"name":"MMIO_READWRITE","features":[419]},{"name":"MMIO_REMOVEPROC","features":[419]},{"name":"MMIO_RWMODE","features":[419]},{"name":"MMIO_SHAREMODE","features":[419]},{"name":"MMIO_TOUPPER","features":[419]},{"name":"MMIO_UNICODEPROC","features":[419]},{"name":"MMIO_WRITE","features":[419]},{"name":"MM_3COM","features":[419]},{"name":"MM_3COM_CB_MIXER","features":[419]},{"name":"MM_3COM_CB_WAVEIN","features":[419]},{"name":"MM_3COM_CB_WAVEOUT","features":[419]},{"name":"MM_3DFX","features":[419]},{"name":"MM_AARDVARK","features":[419]},{"name":"MM_AARDVARK_STUDIO12_WAVEIN","features":[419]},{"name":"MM_AARDVARK_STUDIO12_WAVEOUT","features":[419]},{"name":"MM_AARDVARK_STUDIO88_WAVEIN","features":[419]},{"name":"MM_AARDVARK_STUDIO88_WAVEOUT","features":[419]},{"name":"MM_ACTIVEVOICE","features":[419]},{"name":"MM_ACTIVEVOICE_ACM_VOXADPCM","features":[419]},{"name":"MM_ACULAB","features":[419]},{"name":"MM_ADDX","features":[419]},{"name":"MM_ADDX_PCTV_AUX_CD","features":[419]},{"name":"MM_ADDX_PCTV_AUX_LINE","features":[419]},{"name":"MM_ADDX_PCTV_DIGITALMIX","features":[419]},{"name":"MM_ADDX_PCTV_MIXER","features":[419]},{"name":"MM_ADDX_PCTV_WAVEIN","features":[419]},{"name":"MM_ADDX_PCTV_WAVEOUT","features":[419]},{"name":"MM_ADLACC","features":[419]},{"name":"MM_ADMOS","features":[419]},{"name":"MM_ADMOS_FM_SYNTH","features":[419]},{"name":"MM_ADMOS_QS3AMIDIIN","features":[419]},{"name":"MM_ADMOS_QS3AMIDIOUT","features":[419]},{"name":"MM_ADMOS_QS3AWAVEIN","features":[419]},{"name":"MM_ADMOS_QS3AWAVEOUT","features":[419]},{"name":"MM_AHEAD","features":[419]},{"name":"MM_AHEAD_GENERIC","features":[419]},{"name":"MM_AHEAD_MULTISOUND","features":[419]},{"name":"MM_AHEAD_PROAUDIO","features":[419]},{"name":"MM_AHEAD_SOUNDBLASTER","features":[419]},{"name":"MM_ALARIS","features":[419]},{"name":"MM_ALDIGITAL","features":[419]},{"name":"MM_ALESIS","features":[419]},{"name":"MM_ALGOVISION","features":[419]},{"name":"MM_ALGOVISION_VB80AUX","features":[419]},{"name":"MM_ALGOVISION_VB80AUX2","features":[419]},{"name":"MM_ALGOVISION_VB80MIXER","features":[419]},{"name":"MM_ALGOVISION_VB80WAVEIN","features":[419]},{"name":"MM_ALGOVISION_VB80WAVEOUT","features":[419]},{"name":"MM_AMD","features":[419]},{"name":"MM_AMD_INTERWAVE_AUX1","features":[419]},{"name":"MM_AMD_INTERWAVE_AUX2","features":[419]},{"name":"MM_AMD_INTERWAVE_AUX_CD","features":[419]},{"name":"MM_AMD_INTERWAVE_AUX_MIC","features":[419]},{"name":"MM_AMD_INTERWAVE_EX_CD","features":[419]},{"name":"MM_AMD_INTERWAVE_EX_TELEPHONY","features":[419]},{"name":"MM_AMD_INTERWAVE_JOYSTICK","features":[419]},{"name":"MM_AMD_INTERWAVE_MIDIIN","features":[419]},{"name":"MM_AMD_INTERWAVE_MIDIOUT","features":[419]},{"name":"MM_AMD_INTERWAVE_MIXER1","features":[419]},{"name":"MM_AMD_INTERWAVE_MIXER2","features":[419]},{"name":"MM_AMD_INTERWAVE_MONO_IN","features":[419]},{"name":"MM_AMD_INTERWAVE_MONO_OUT","features":[419]},{"name":"MM_AMD_INTERWAVE_STEREO_ENHANCED","features":[419]},{"name":"MM_AMD_INTERWAVE_SYNTH","features":[419]},{"name":"MM_AMD_INTERWAVE_WAVEIN","features":[419]},{"name":"MM_AMD_INTERWAVE_WAVEOUT","features":[419]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_BASE","features":[419]},{"name":"MM_AMD_INTERWAVE_WAVEOUT_TREBLE","features":[419]},{"name":"MM_ANALOGDEVICES","features":[419]},{"name":"MM_ANTEX","features":[419]},{"name":"MM_ANTEX_AUDIOPORT22_FEEDTHRU","features":[419]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEIN","features":[419]},{"name":"MM_ANTEX_AUDIOPORT22_WAVEOUT","features":[419]},{"name":"MM_ANTEX_SX12_WAVEIN","features":[419]},{"name":"MM_ANTEX_SX12_WAVEOUT","features":[419]},{"name":"MM_ANTEX_SX15_WAVEIN","features":[419]},{"name":"MM_ANTEX_SX15_WAVEOUT","features":[419]},{"name":"MM_ANTEX_VP625_WAVEIN","features":[419]},{"name":"MM_ANTEX_VP625_WAVEOUT","features":[419]},{"name":"MM_APICOM","features":[419]},{"name":"MM_APPLE","features":[419]},{"name":"MM_APPS","features":[419]},{"name":"MM_APT","features":[419]},{"name":"MM_APT_ACE100CD","features":[419]},{"name":"MM_ARRAY","features":[419]},{"name":"MM_ARTISOFT","features":[419]},{"name":"MM_ARTISOFT_SBWAVEIN","features":[419]},{"name":"MM_ARTISOFT_SBWAVEOUT","features":[419]},{"name":"MM_AST","features":[419]},{"name":"MM_AST_MODEMWAVE_WAVEIN","features":[419]},{"name":"MM_AST_MODEMWAVE_WAVEOUT","features":[419]},{"name":"MM_ATI","features":[419]},{"name":"MM_ATT","features":[419]},{"name":"MM_ATT_G729A","features":[419]},{"name":"MM_ATT_MICROELECTRONICS","features":[419]},{"name":"MM_AU8820_AUX","features":[419]},{"name":"MM_AU8820_MIDIIN","features":[419]},{"name":"MM_AU8820_MIDIOUT","features":[419]},{"name":"MM_AU8820_MIXER","features":[419]},{"name":"MM_AU8820_SYNTH","features":[419]},{"name":"MM_AU8820_WAVEIN","features":[419]},{"name":"MM_AU8820_WAVEOUT","features":[419]},{"name":"MM_AU8830_AUX","features":[419]},{"name":"MM_AU8830_MIDIIN","features":[419]},{"name":"MM_AU8830_MIDIOUT","features":[419]},{"name":"MM_AU8830_MIXER","features":[419]},{"name":"MM_AU8830_SYNTH","features":[419]},{"name":"MM_AU8830_WAVEIN","features":[419]},{"name":"MM_AU8830_WAVEOUT","features":[419]},{"name":"MM_AUDIOFILE","features":[419]},{"name":"MM_AUDIOPT","features":[419]},{"name":"MM_AUDIOSCIENCE","features":[419]},{"name":"MM_AURAVISION","features":[419]},{"name":"MM_AUREAL","features":[419]},{"name":"MM_AUREAL_AU8820","features":[419]},{"name":"MM_AUREAL_AU8830","features":[419]},{"name":"MM_AZTECH","features":[419]},{"name":"MM_AZTECH_AUX","features":[419]},{"name":"MM_AZTECH_AUX_CD","features":[419]},{"name":"MM_AZTECH_AUX_LINE","features":[419]},{"name":"MM_AZTECH_AUX_MIC","features":[419]},{"name":"MM_AZTECH_DSP16_FMSYNTH","features":[419]},{"name":"MM_AZTECH_DSP16_WAVEIN","features":[419]},{"name":"MM_AZTECH_DSP16_WAVEOUT","features":[419]},{"name":"MM_AZTECH_DSP16_WAVESYNTH","features":[419]},{"name":"MM_AZTECH_FMSYNTH","features":[419]},{"name":"MM_AZTECH_MIDIIN","features":[419]},{"name":"MM_AZTECH_MIDIOUT","features":[419]},{"name":"MM_AZTECH_MIXER","features":[419]},{"name":"MM_AZTECH_NOVA16_MIXER","features":[419]},{"name":"MM_AZTECH_NOVA16_WAVEIN","features":[419]},{"name":"MM_AZTECH_NOVA16_WAVEOUT","features":[419]},{"name":"MM_AZTECH_PRO16_FMSYNTH","features":[419]},{"name":"MM_AZTECH_PRO16_WAVEIN","features":[419]},{"name":"MM_AZTECH_PRO16_WAVEOUT","features":[419]},{"name":"MM_AZTECH_WASH16_MIXER","features":[419]},{"name":"MM_AZTECH_WASH16_WAVEIN","features":[419]},{"name":"MM_AZTECH_WASH16_WAVEOUT","features":[419]},{"name":"MM_AZTECH_WAVEIN","features":[419]},{"name":"MM_AZTECH_WAVEOUT","features":[419]},{"name":"MM_BCB","features":[419]},{"name":"MM_BCB_NETBOARD_10","features":[419]},{"name":"MM_BCB_TT75_10","features":[419]},{"name":"MM_BECUBED","features":[419]},{"name":"MM_BERCOS","features":[419]},{"name":"MM_BERCOS_MIXER","features":[419]},{"name":"MM_BERCOS_WAVEIN","features":[419]},{"name":"MM_BERCOS_WAVEOUT","features":[419]},{"name":"MM_BERKOM","features":[419]},{"name":"MM_BINTEC","features":[419]},{"name":"MM_BINTEC_TAPI_WAVE","features":[419]},{"name":"MM_BROOKTREE","features":[419]},{"name":"MM_BTV_AUX_CD","features":[419]},{"name":"MM_BTV_AUX_LINE","features":[419]},{"name":"MM_BTV_AUX_MIC","features":[419]},{"name":"MM_BTV_DIGITALIN","features":[419]},{"name":"MM_BTV_DIGITALOUT","features":[419]},{"name":"MM_BTV_MIDIIN","features":[419]},{"name":"MM_BTV_MIDIOUT","features":[419]},{"name":"MM_BTV_MIDISYNTH","features":[419]},{"name":"MM_BTV_MIDIWAVESTREAM","features":[419]},{"name":"MM_BTV_MIXER","features":[419]},{"name":"MM_BTV_WAVEIN","features":[419]},{"name":"MM_BTV_WAVEOUT","features":[419]},{"name":"MM_CANAM","features":[419]},{"name":"MM_CANAM_CBXWAVEIN","features":[419]},{"name":"MM_CANAM_CBXWAVEOUT","features":[419]},{"name":"MM_CANOPUS","features":[419]},{"name":"MM_CANOPUS_ACM_DVREX","features":[419]},{"name":"MM_CASIO","features":[419]},{"name":"MM_CASIO_LSG_MIDIOUT","features":[419]},{"name":"MM_CASIO_WP150_MIDIIN","features":[419]},{"name":"MM_CASIO_WP150_MIDIOUT","features":[419]},{"name":"MM_CAT","features":[419]},{"name":"MM_CAT_WAVEOUT","features":[419]},{"name":"MM_CDPC_AUX","features":[419]},{"name":"MM_CDPC_MIDIIN","features":[419]},{"name":"MM_CDPC_MIDIOUT","features":[419]},{"name":"MM_CDPC_MIXER","features":[419]},{"name":"MM_CDPC_SYNTH","features":[419]},{"name":"MM_CDPC_WAVEIN","features":[419]},{"name":"MM_CDPC_WAVEOUT","features":[419]},{"name":"MM_CHROMATIC","features":[419]},{"name":"MM_CHROMATIC_M1","features":[419]},{"name":"MM_CHROMATIC_M1_AUX","features":[419]},{"name":"MM_CHROMATIC_M1_AUX_CD","features":[419]},{"name":"MM_CHROMATIC_M1_FMSYNTH","features":[419]},{"name":"MM_CHROMATIC_M1_MIDIIN","features":[419]},{"name":"MM_CHROMATIC_M1_MIDIOUT","features":[419]},{"name":"MM_CHROMATIC_M1_MIXER","features":[419]},{"name":"MM_CHROMATIC_M1_MPEGWAVEIN","features":[419]},{"name":"MM_CHROMATIC_M1_MPEGWAVEOUT","features":[419]},{"name":"MM_CHROMATIC_M1_WAVEIN","features":[419]},{"name":"MM_CHROMATIC_M1_WAVEOUT","features":[419]},{"name":"MM_CHROMATIC_M1_WTSYNTH","features":[419]},{"name":"MM_CHROMATIC_M2","features":[419]},{"name":"MM_CHROMATIC_M2_AUX","features":[419]},{"name":"MM_CHROMATIC_M2_AUX_CD","features":[419]},{"name":"MM_CHROMATIC_M2_FMSYNTH","features":[419]},{"name":"MM_CHROMATIC_M2_MIDIIN","features":[419]},{"name":"MM_CHROMATIC_M2_MIDIOUT","features":[419]},{"name":"MM_CHROMATIC_M2_MIXER","features":[419]},{"name":"MM_CHROMATIC_M2_MPEGWAVEIN","features":[419]},{"name":"MM_CHROMATIC_M2_MPEGWAVEOUT","features":[419]},{"name":"MM_CHROMATIC_M2_WAVEIN","features":[419]},{"name":"MM_CHROMATIC_M2_WAVEOUT","features":[419]},{"name":"MM_CHROMATIC_M2_WTSYNTH","features":[419]},{"name":"MM_CIRRUSLOGIC","features":[419]},{"name":"MM_COLORGRAPH","features":[419]},{"name":"MM_COMPAQ","features":[419]},{"name":"MM_COMPAQ_BB_WAVEAUX","features":[419]},{"name":"MM_COMPAQ_BB_WAVEIN","features":[419]},{"name":"MM_COMPAQ_BB_WAVEOUT","features":[419]},{"name":"MM_COMPUSIC","features":[419]},{"name":"MM_COMPUTER_FRIENDS","features":[419]},{"name":"MM_CONCEPTS","features":[419]},{"name":"MM_CONNECTIX","features":[419]},{"name":"MM_CONNECTIX_VIDEC_CODEC","features":[419]},{"name":"MM_CONTROLRES","features":[419]},{"name":"MM_COREDYNAMICS","features":[419]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_VGA","features":[419]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_IN","features":[419]},{"name":"MM_COREDYNAMICS_DYNAGRAFX_WAVE_OUT","features":[419]},{"name":"MM_COREDYNAMICS_DYNAMIXHR","features":[419]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_IN","features":[419]},{"name":"MM_COREDYNAMICS_DYNASONIX_AUDIO_OUT","features":[419]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_IN","features":[419]},{"name":"MM_COREDYNAMICS_DYNASONIX_MIDI_OUT","features":[419]},{"name":"MM_COREDYNAMICS_DYNASONIX_SYNTH","features":[419]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_IN","features":[419]},{"name":"MM_COREDYNAMICS_DYNASONIX_WAVE_OUT","features":[419]},{"name":"MM_CREATIVE","features":[419]},{"name":"MM_CREATIVE_AUX_CD","features":[419]},{"name":"MM_CREATIVE_AUX_LINE","features":[419]},{"name":"MM_CREATIVE_AUX_MASTER","features":[419]},{"name":"MM_CREATIVE_AUX_MIC","features":[419]},{"name":"MM_CREATIVE_AUX_MIDI","features":[419]},{"name":"MM_CREATIVE_AUX_PCSPK","features":[419]},{"name":"MM_CREATIVE_AUX_WAVE","features":[419]},{"name":"MM_CREATIVE_FMSYNTH_MONO","features":[419]},{"name":"MM_CREATIVE_FMSYNTH_STEREO","features":[419]},{"name":"MM_CREATIVE_MIDIIN","features":[419]},{"name":"MM_CREATIVE_MIDIOUT","features":[419]},{"name":"MM_CREATIVE_MIDI_AWE32","features":[419]},{"name":"MM_CREATIVE_PHNBLST_WAVEIN","features":[419]},{"name":"MM_CREATIVE_PHNBLST_WAVEOUT","features":[419]},{"name":"MM_CREATIVE_SB15_WAVEIN","features":[419]},{"name":"MM_CREATIVE_SB15_WAVEOUT","features":[419]},{"name":"MM_CREATIVE_SB16_MIXER","features":[419]},{"name":"MM_CREATIVE_SB20_WAVEIN","features":[419]},{"name":"MM_CREATIVE_SB20_WAVEOUT","features":[419]},{"name":"MM_CREATIVE_SBP16_WAVEIN","features":[419]},{"name":"MM_CREATIVE_SBP16_WAVEOUT","features":[419]},{"name":"MM_CREATIVE_SBPRO_MIXER","features":[419]},{"name":"MM_CREATIVE_SBPRO_WAVEIN","features":[419]},{"name":"MM_CREATIVE_SBPRO_WAVEOUT","features":[419]},{"name":"MM_CRYSTAL","features":[419]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_AUX1","features":[419]},{"name":"MM_CRYSTAL_CS4232_INPUTGAIN_LOOP","features":[419]},{"name":"MM_CRYSTAL_CS4232_MIDIIN","features":[419]},{"name":"MM_CRYSTAL_CS4232_MIDIOUT","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX1","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_AUX2","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_LINE","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MASTER","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEAUX_MONO","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEIN","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEMIXER","features":[419]},{"name":"MM_CRYSTAL_CS4232_WAVEOUT","features":[419]},{"name":"MM_CRYSTAL_NET","features":[419]},{"name":"MM_CRYSTAL_SOUND_FUSION_JOYSTICK","features":[419]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIIN","features":[419]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIDIOUT","features":[419]},{"name":"MM_CRYSTAL_SOUND_FUSION_MIXER","features":[419]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEIN","features":[419]},{"name":"MM_CRYSTAL_SOUND_FUSION_WAVEOUT","features":[419]},{"name":"MM_CS","features":[419]},{"name":"MM_CYRIX","features":[419]},{"name":"MM_CYRIX_XAAUX","features":[419]},{"name":"MM_CYRIX_XAMIDIIN","features":[419]},{"name":"MM_CYRIX_XAMIDIOUT","features":[419]},{"name":"MM_CYRIX_XAMIXER","features":[419]},{"name":"MM_CYRIX_XASYNTH","features":[419]},{"name":"MM_CYRIX_XAWAVEIN","features":[419]},{"name":"MM_CYRIX_XAWAVEOUT","features":[419]},{"name":"MM_DATAFUSION","features":[419]},{"name":"MM_DATARAN","features":[419]},{"name":"MM_DDD","features":[419]},{"name":"MM_DDD_MIDILINK_MIDIIN","features":[419]},{"name":"MM_DDD_MIDILINK_MIDIOUT","features":[419]},{"name":"MM_DF_ACM_G726","features":[419]},{"name":"MM_DF_ACM_GSM610","features":[419]},{"name":"MM_DIACOUSTICS","features":[419]},{"name":"MM_DIACOUSTICS_DRUM_ACTION","features":[419]},{"name":"MM_DIALOGIC","features":[419]},{"name":"MM_DIAMONDMM","features":[419]},{"name":"MM_DICTAPHONE","features":[419]},{"name":"MM_DICTAPHONE_G726","features":[419]},{"name":"MM_DIGIGRAM","features":[419]},{"name":"MM_DIGITAL","features":[419]},{"name":"MM_DIGITAL_ACM_G723","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS_CDLX","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS_CPRO","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS_CTDIF","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS_DOC","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS_TC","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS_V8","features":[419]},{"name":"MM_DIGITAL_AUDIO_LABS_VP","features":[419]},{"name":"MM_DIGITAL_AV320_WAVEIN","features":[419]},{"name":"MM_DIGITAL_AV320_WAVEOUT","features":[419]},{"name":"MM_DIGITAL_ICM_H261","features":[419]},{"name":"MM_DIGITAL_ICM_H263","features":[419]},{"name":"MM_DIMD_AUX_LINE","features":[419]},{"name":"MM_DIMD_DIRSOUND","features":[419]},{"name":"MM_DIMD_MIDIIN","features":[419]},{"name":"MM_DIMD_MIDIOUT","features":[419]},{"name":"MM_DIMD_MIXER","features":[419]},{"name":"MM_DIMD_PLATFORM","features":[419]},{"name":"MM_DIMD_VIRTJOY","features":[419]},{"name":"MM_DIMD_VIRTMPU","features":[419]},{"name":"MM_DIMD_VIRTSB","features":[419]},{"name":"MM_DIMD_WAVEIN","features":[419]},{"name":"MM_DIMD_WAVEOUT","features":[419]},{"name":"MM_DIMD_WSS_AUX","features":[419]},{"name":"MM_DIMD_WSS_MIXER","features":[419]},{"name":"MM_DIMD_WSS_SYNTH","features":[419]},{"name":"MM_DIMD_WSS_WAVEIN","features":[419]},{"name":"MM_DIMD_WSS_WAVEOUT","features":[419]},{"name":"MM_DOLBY","features":[419]},{"name":"MM_DPSINC","features":[419]},{"name":"MM_DSP_GROUP","features":[419]},{"name":"MM_DSP_GROUP_TRUESPEECH","features":[419]},{"name":"MM_DSP_SOLUTIONS","features":[419]},{"name":"MM_DSP_SOLUTIONS_AUX","features":[419]},{"name":"MM_DSP_SOLUTIONS_SYNTH","features":[419]},{"name":"MM_DSP_SOLUTIONS_WAVEIN","features":[419]},{"name":"MM_DSP_SOLUTIONS_WAVEOUT","features":[419]},{"name":"MM_DTS","features":[419]},{"name":"MM_DTS_DS","features":[419]},{"name":"MM_DUCK","features":[419]},{"name":"MM_DVISION","features":[419]},{"name":"MM_ECHO","features":[419]},{"name":"MM_ECHO_AUX","features":[419]},{"name":"MM_ECHO_MIDIIN","features":[419]},{"name":"MM_ECHO_MIDIOUT","features":[419]},{"name":"MM_ECHO_SYNTH","features":[419]},{"name":"MM_ECHO_WAVEIN","features":[419]},{"name":"MM_ECHO_WAVEOUT","features":[419]},{"name":"MM_ECS","features":[419]},{"name":"MM_ECS_AADF_MIDI_IN","features":[419]},{"name":"MM_ECS_AADF_MIDI_OUT","features":[419]},{"name":"MM_ECS_AADF_WAVE2MIDI_IN","features":[419]},{"name":"MM_EES","features":[419]},{"name":"MM_EES_PCMIDI14","features":[419]},{"name":"MM_EES_PCMIDI14_IN","features":[419]},{"name":"MM_EES_PCMIDI14_OUT1","features":[419]},{"name":"MM_EES_PCMIDI14_OUT2","features":[419]},{"name":"MM_EES_PCMIDI14_OUT3","features":[419]},{"name":"MM_EES_PCMIDI14_OUT4","features":[419]},{"name":"MM_EMAGIC","features":[419]},{"name":"MM_EMAGIC_UNITOR8","features":[419]},{"name":"MM_EMU","features":[419]},{"name":"MM_EMU_APSMIDIIN","features":[419]},{"name":"MM_EMU_APSMIDIOUT","features":[419]},{"name":"MM_EMU_APSSYNTH","features":[419]},{"name":"MM_EMU_APSWAVEIN","features":[419]},{"name":"MM_EMU_APSWAVEOUT","features":[419]},{"name":"MM_ENET","features":[419]},{"name":"MM_ENET_T2000_HANDSETIN","features":[419]},{"name":"MM_ENET_T2000_HANDSETOUT","features":[419]},{"name":"MM_ENET_T2000_LINEIN","features":[419]},{"name":"MM_ENET_T2000_LINEOUT","features":[419]},{"name":"MM_ENSONIQ","features":[419]},{"name":"MM_ENSONIQ_SOUNDSCAPE","features":[419]},{"name":"MM_EPSON","features":[419]},{"name":"MM_EPS_FMSND","features":[419]},{"name":"MM_ESS","features":[419]},{"name":"MM_ESS_AMAUX","features":[419]},{"name":"MM_ESS_AMMIDIIN","features":[419]},{"name":"MM_ESS_AMMIDIOUT","features":[419]},{"name":"MM_ESS_AMSYNTH","features":[419]},{"name":"MM_ESS_AMWAVEIN","features":[419]},{"name":"MM_ESS_AMWAVEOUT","features":[419]},{"name":"MM_ESS_AUX_CD","features":[419]},{"name":"MM_ESS_ES1488_MIXER","features":[419]},{"name":"MM_ESS_ES1488_WAVEIN","features":[419]},{"name":"MM_ESS_ES1488_WAVEOUT","features":[419]},{"name":"MM_ESS_ES1688_MIXER","features":[419]},{"name":"MM_ESS_ES1688_WAVEIN","features":[419]},{"name":"MM_ESS_ES1688_WAVEOUT","features":[419]},{"name":"MM_ESS_ES1788_MIXER","features":[419]},{"name":"MM_ESS_ES1788_WAVEIN","features":[419]},{"name":"MM_ESS_ES1788_WAVEOUT","features":[419]},{"name":"MM_ESS_ES1868_MIXER","features":[419]},{"name":"MM_ESS_ES1868_WAVEIN","features":[419]},{"name":"MM_ESS_ES1868_WAVEOUT","features":[419]},{"name":"MM_ESS_ES1878_MIXER","features":[419]},{"name":"MM_ESS_ES1878_WAVEIN","features":[419]},{"name":"MM_ESS_ES1878_WAVEOUT","features":[419]},{"name":"MM_ESS_ES1888_MIXER","features":[419]},{"name":"MM_ESS_ES1888_WAVEIN","features":[419]},{"name":"MM_ESS_ES1888_WAVEOUT","features":[419]},{"name":"MM_ESS_ES488_MIXER","features":[419]},{"name":"MM_ESS_ES488_WAVEIN","features":[419]},{"name":"MM_ESS_ES488_WAVEOUT","features":[419]},{"name":"MM_ESS_ES688_MIXER","features":[419]},{"name":"MM_ESS_ES688_WAVEIN","features":[419]},{"name":"MM_ESS_ES688_WAVEOUT","features":[419]},{"name":"MM_ESS_MIXER","features":[419]},{"name":"MM_ESS_MPU401_MIDIIN","features":[419]},{"name":"MM_ESS_MPU401_MIDIOUT","features":[419]},{"name":"MM_ETEK","features":[419]},{"name":"MM_ETEK_KWIKMIDI_MIDIIN","features":[419]},{"name":"MM_ETEK_KWIKMIDI_MIDIOUT","features":[419]},{"name":"MM_EUPHONICS","features":[419]},{"name":"MM_EUPHONICS_AUX_CD","features":[419]},{"name":"MM_EUPHONICS_AUX_LINE","features":[419]},{"name":"MM_EUPHONICS_AUX_MASTER","features":[419]},{"name":"MM_EUPHONICS_AUX_MIC","features":[419]},{"name":"MM_EUPHONICS_AUX_MIDI","features":[419]},{"name":"MM_EUPHONICS_AUX_WAVE","features":[419]},{"name":"MM_EUPHONICS_EUSYNTH","features":[419]},{"name":"MM_EUPHONICS_FMSYNTH_MONO","features":[419]},{"name":"MM_EUPHONICS_FMSYNTH_STEREO","features":[419]},{"name":"MM_EUPHONICS_MIDIIN","features":[419]},{"name":"MM_EUPHONICS_MIDIOUT","features":[419]},{"name":"MM_EUPHONICS_MIXER","features":[419]},{"name":"MM_EUPHONICS_WAVEIN","features":[419]},{"name":"MM_EUPHONICS_WAVEOUT","features":[419]},{"name":"MM_EVEREX","features":[419]},{"name":"MM_EVEREX_CARRIER","features":[419]},{"name":"MM_EXAN","features":[419]},{"name":"MM_FAITH","features":[419]},{"name":"MM_FAST","features":[419]},{"name":"MM_FHGIIS_MPEGLAYER3","features":[419]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCED","features":[419]},{"name":"MM_FHGIIS_MPEGLAYER3_ADVANCEDPLUS","features":[419]},{"name":"MM_FHGIIS_MPEGLAYER3_BASIC","features":[419]},{"name":"MM_FHGIIS_MPEGLAYER3_DECODE","features":[419]},{"name":"MM_FHGIIS_MPEGLAYER3_LITE","features":[419]},{"name":"MM_FHGIIS_MPEGLAYER3_PROFESSIONAL","features":[419]},{"name":"MM_FLEXION","features":[419]},{"name":"MM_FLEXION_X300_WAVEIN","features":[419]},{"name":"MM_FLEXION_X300_WAVEOUT","features":[419]},{"name":"MM_FORTEMEDIA","features":[419]},{"name":"MM_FORTEMEDIA_AUX","features":[419]},{"name":"MM_FORTEMEDIA_FMSYNC","features":[419]},{"name":"MM_FORTEMEDIA_MIXER","features":[419]},{"name":"MM_FORTEMEDIA_WAVEIN","features":[419]},{"name":"MM_FORTEMEDIA_WAVEOUT","features":[419]},{"name":"MM_FRAUNHOFER_IIS","features":[419]},{"name":"MM_FRONTIER","features":[419]},{"name":"MM_FRONTIER_WAVECENTER_MIDIIN","features":[419]},{"name":"MM_FRONTIER_WAVECENTER_MIDIOUT","features":[419]},{"name":"MM_FRONTIER_WAVECENTER_WAVEIN","features":[419]},{"name":"MM_FRONTIER_WAVECENTER_WAVEOUT","features":[419]},{"name":"MM_FTR","features":[419]},{"name":"MM_FTR_ACM","features":[419]},{"name":"MM_FTR_ENCODER_WAVEIN","features":[419]},{"name":"MM_FUJITSU","features":[419]},{"name":"MM_GADGETLABS","features":[419]},{"name":"MM_GADGETLABS_WAVE42_WAVEIN","features":[419]},{"name":"MM_GADGETLABS_WAVE42_WAVEOUT","features":[419]},{"name":"MM_GADGETLABS_WAVE44_WAVEIN","features":[419]},{"name":"MM_GADGETLABS_WAVE44_WAVEOUT","features":[419]},{"name":"MM_GADGETLABS_WAVE4_MIDIIN","features":[419]},{"name":"MM_GADGETLABS_WAVE4_MIDIOUT","features":[419]},{"name":"MM_GRANDE","features":[419]},{"name":"MM_GRAVIS","features":[419]},{"name":"MM_GUILLEMOT","features":[419]},{"name":"MM_GULBRANSEN","features":[419]},{"name":"MM_HAFTMANN","features":[419]},{"name":"MM_HAFTMANN_LPTDAC2","features":[419]},{"name":"MM_HEADSPACE","features":[419]},{"name":"MM_HEADSPACE_HAEMIXER","features":[419]},{"name":"MM_HEADSPACE_HAESYNTH","features":[419]},{"name":"MM_HEADSPACE_HAEWAVEIN","features":[419]},{"name":"MM_HEADSPACE_HAEWAVEOUT","features":[419]},{"name":"MM_HEWLETT_PACKARD","features":[419]},{"name":"MM_HEWLETT_PACKARD_CU_CODEC","features":[419]},{"name":"MM_HORIZONS","features":[419]},{"name":"MM_HP","features":[419]},{"name":"MM_HP_WAVEIN","features":[419]},{"name":"MM_HP_WAVEOUT","features":[419]},{"name":"MM_HYPERACTIVE","features":[419]},{"name":"MM_IBM","features":[419]},{"name":"MM_IBM_MWAVE_AUX","features":[419]},{"name":"MM_IBM_MWAVE_MIDIIN","features":[419]},{"name":"MM_IBM_MWAVE_MIDIOUT","features":[419]},{"name":"MM_IBM_MWAVE_MIXER","features":[419]},{"name":"MM_IBM_MWAVE_WAVEIN","features":[419]},{"name":"MM_IBM_MWAVE_WAVEOUT","features":[419]},{"name":"MM_IBM_PCMCIA_AUX","features":[419]},{"name":"MM_IBM_PCMCIA_MIDIIN","features":[419]},{"name":"MM_IBM_PCMCIA_MIDIOUT","features":[419]},{"name":"MM_IBM_PCMCIA_SYNTH","features":[419]},{"name":"MM_IBM_PCMCIA_WAVEIN","features":[419]},{"name":"MM_IBM_PCMCIA_WAVEOUT","features":[419]},{"name":"MM_IBM_THINKPAD200","features":[419]},{"name":"MM_IBM_WC_MIDIOUT","features":[419]},{"name":"MM_IBM_WC_MIXEROUT","features":[419]},{"name":"MM_IBM_WC_WAVEOUT","features":[419]},{"name":"MM_ICCC","features":[419]},{"name":"MM_ICCC_UNA3_AUX","features":[419]},{"name":"MM_ICCC_UNA3_MIXER","features":[419]},{"name":"MM_ICCC_UNA3_WAVEIN","features":[419]},{"name":"MM_ICCC_UNA3_WAVEOUT","features":[419]},{"name":"MM_ICE","features":[419]},{"name":"MM_ICE_AUX","features":[419]},{"name":"MM_ICE_MIDIIN1","features":[419]},{"name":"MM_ICE_MIDIIN2","features":[419]},{"name":"MM_ICE_MIDIOUT1","features":[419]},{"name":"MM_ICE_MIDIOUT2","features":[419]},{"name":"MM_ICE_MIXER","features":[419]},{"name":"MM_ICE_MTWAVEIN","features":[419]},{"name":"MM_ICE_MTWAVEOUT","features":[419]},{"name":"MM_ICE_SYNTH","features":[419]},{"name":"MM_ICE_WAVEIN","features":[419]},{"name":"MM_ICE_WAVEOUT","features":[419]},{"name":"MM_ICL_PS","features":[419]},{"name":"MM_ICOM_AUX","features":[419]},{"name":"MM_ICOM_LINE","features":[419]},{"name":"MM_ICOM_MIXER","features":[419]},{"name":"MM_ICOM_WAVEIN","features":[419]},{"name":"MM_ICOM_WAVEOUT","features":[419]},{"name":"MM_ICS","features":[419]},{"name":"MM_ICS_2115_LITE_MIDIOUT","features":[419]},{"name":"MM_ICS_2120_LITE_MIDIOUT","features":[419]},{"name":"MM_ICS_WAVEDECK_AUX","features":[419]},{"name":"MM_ICS_WAVEDECK_MIXER","features":[419]},{"name":"MM_ICS_WAVEDECK_SYNTH","features":[419]},{"name":"MM_ICS_WAVEDECK_WAVEIN","features":[419]},{"name":"MM_ICS_WAVEDECK_WAVEOUT","features":[419]},{"name":"MM_ICS_WAVEDEC_SB_AUX","features":[419]},{"name":"MM_ICS_WAVEDEC_SB_FM_MIDIOUT","features":[419]},{"name":"MM_ICS_WAVEDEC_SB_MIXER","features":[419]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIIN","features":[419]},{"name":"MM_ICS_WAVEDEC_SB_MPU401_MIDIOUT","features":[419]},{"name":"MM_ICS_WAVEDEC_SB_WAVEIN","features":[419]},{"name":"MM_ICS_WAVEDEC_SB_WAVEOUT","features":[419]},{"name":"MM_INSOFT","features":[419]},{"name":"MM_INTEL","features":[419]},{"name":"MM_INTELOPD_AUX","features":[419]},{"name":"MM_INTELOPD_WAVEIN","features":[419]},{"name":"MM_INTELOPD_WAVEOUT","features":[419]},{"name":"MM_INTEL_NSPMODEMLINEIN","features":[419]},{"name":"MM_INTEL_NSPMODEMLINEOUT","features":[419]},{"name":"MM_INTERACTIVE","features":[419]},{"name":"MM_INTERACTIVE_WAVEIN","features":[419]},{"name":"MM_INTERACTIVE_WAVEOUT","features":[419]},{"name":"MM_INTERNET","features":[419]},{"name":"MM_INTERNET_SSW_MIDIIN","features":[419]},{"name":"MM_INTERNET_SSW_MIDIOUT","features":[419]},{"name":"MM_INTERNET_SSW_WAVEIN","features":[419]},{"name":"MM_INTERNET_SSW_WAVEOUT","features":[419]},{"name":"MM_INVISION","features":[419]},{"name":"MM_IODD","features":[419]},{"name":"MM_IOMAGIC","features":[419]},{"name":"MM_IOMAGIC_TEMPO_AUXOUT","features":[419]},{"name":"MM_IOMAGIC_TEMPO_MIDIOUT","features":[419]},{"name":"MM_IOMAGIC_TEMPO_MXDOUT","features":[419]},{"name":"MM_IOMAGIC_TEMPO_SYNTH","features":[419]},{"name":"MM_IOMAGIC_TEMPO_WAVEIN","features":[419]},{"name":"MM_IOMAGIC_TEMPO_WAVEOUT","features":[419]},{"name":"MM_IPI","features":[419]},{"name":"MM_IPI_ACM_HSX","features":[419]},{"name":"MM_IPI_ACM_RPELP","features":[419]},{"name":"MM_IPI_AT_MIXER","features":[419]},{"name":"MM_IPI_AT_WAVEIN","features":[419]},{"name":"MM_IPI_AT_WAVEOUT","features":[419]},{"name":"MM_IPI_WF_ASSS","features":[419]},{"name":"MM_ISOLUTION","features":[419]},{"name":"MM_ISOLUTION_PASCAL","features":[419]},{"name":"MM_ITERATEDSYS","features":[419]},{"name":"MM_ITERATEDSYS_FUFCODEC","features":[419]},{"name":"MM_I_LINK","features":[419]},{"name":"MM_I_LINK_VOICE_CODER","features":[419]},{"name":"MM_KAY_ELEMETRICS","features":[419]},{"name":"MM_KAY_ELEMETRICS_CSL","features":[419]},{"name":"MM_KAY_ELEMETRICS_CSL_4CHANNEL","features":[419]},{"name":"MM_KAY_ELEMETRICS_CSL_DAT","features":[419]},{"name":"MM_KORG","features":[419]},{"name":"MM_KORG_1212IO_MSWAVEIN","features":[419]},{"name":"MM_KORG_1212IO_MSWAVEOUT","features":[419]},{"name":"MM_KORG_PCIF_MIDIIN","features":[419]},{"name":"MM_KORG_PCIF_MIDIOUT","features":[419]},{"name":"MM_LERNOUT_ANDHAUSPIE_LHCODECACM","features":[419]},{"name":"MM_LERNOUT_AND_HAUSPIE","features":[419]},{"name":"MM_LEXICON","features":[419]},{"name":"MM_LEXICON_STUDIO_WAVE_IN","features":[419]},{"name":"MM_LEXICON_STUDIO_WAVE_OUT","features":[419]},{"name":"MM_LOGITECH","features":[419]},{"name":"MM_LUCENT","features":[419]},{"name":"MM_LUCENT_ACM_G723","features":[419]},{"name":"MM_LUCID","features":[419]},{"name":"MM_LUCID_PCI24WAVEIN","features":[419]},{"name":"MM_LUCID_PCI24WAVEOUT","features":[419]},{"name":"MM_LUMINOSITI","features":[419]},{"name":"MM_LUMINOSITI_SCWAVEIN","features":[419]},{"name":"MM_LUMINOSITI_SCWAVEMIX","features":[419]},{"name":"MM_LUMINOSITI_SCWAVEOUT","features":[419]},{"name":"MM_LYNX","features":[419]},{"name":"MM_LYRRUS","features":[419]},{"name":"MM_LYRRUS_BRIDGE_GUITAR","features":[419]},{"name":"MM_MALDEN","features":[419]},{"name":"MM_MARIAN","features":[419]},{"name":"MM_MARIAN_ARC44WAVEIN","features":[419]},{"name":"MM_MARIAN_ARC44WAVEOUT","features":[419]},{"name":"MM_MARIAN_ARC88WAVEIN","features":[419]},{"name":"MM_MARIAN_ARC88WAVEOUT","features":[419]},{"name":"MM_MARIAN_PRODIF24WAVEIN","features":[419]},{"name":"MM_MARIAN_PRODIF24WAVEOUT","features":[419]},{"name":"MM_MATROX_DIV","features":[419]},{"name":"MM_MATSUSHITA","features":[419]},{"name":"MM_MATSUSHITA_AUX","features":[419]},{"name":"MM_MATSUSHITA_FMSYNTH_STEREO","features":[419]},{"name":"MM_MATSUSHITA_MIXER","features":[419]},{"name":"MM_MATSUSHITA_WAVEIN","features":[419]},{"name":"MM_MATSUSHITA_WAVEOUT","features":[419]},{"name":"MM_MEDIASONIC","features":[419]},{"name":"MM_MEDIASONIC_ACM_G723","features":[419]},{"name":"MM_MEDIASONIC_ICOM","features":[419]},{"name":"MM_MEDIATRIX","features":[419]},{"name":"MM_MEDIAVISION","features":[419]},{"name":"MM_MEDIAVISION_CDPC","features":[419]},{"name":"MM_MEDIAVISION_OPUS1208","features":[419]},{"name":"MM_MEDIAVISION_OPUS1216","features":[419]},{"name":"MM_MEDIAVISION_PROAUDIO","features":[419]},{"name":"MM_MEDIAVISION_PROAUDIO_16","features":[419]},{"name":"MM_MEDIAVISION_PROAUDIO_PLUS","features":[419]},{"name":"MM_MEDIAVISION_PROSTUDIO_16","features":[419]},{"name":"MM_MEDIAVISION_THUNDER","features":[419]},{"name":"MM_MEDIAVISION_TPORT","features":[419]},{"name":"MM_MELABS","features":[419]},{"name":"MM_MELABS_MIDI2GO","features":[419]},{"name":"MM_MERGING_MPEGL3","features":[419]},{"name":"MM_MERGING_TECHNOLOGIES","features":[419]},{"name":"MM_METHEUS","features":[419]},{"name":"MM_METHEUS_ZIPPER","features":[419]},{"name":"MM_MICRONAS","features":[419]},{"name":"MM_MICRONAS_CLP833","features":[419]},{"name":"MM_MICRONAS_SC4","features":[419]},{"name":"MM_MINDMAKER","features":[419]},{"name":"MM_MINDMAKER_GC_MIXER","features":[419]},{"name":"MM_MINDMAKER_GC_WAVEIN","features":[419]},{"name":"MM_MINDMAKER_GC_WAVEOUT","features":[419]},{"name":"MM_MIRO","features":[419]},{"name":"MM_MIRO_DC30_MIX","features":[419]},{"name":"MM_MIRO_DC30_WAVEIN","features":[419]},{"name":"MM_MIRO_DC30_WAVEOUT","features":[419]},{"name":"MM_MIRO_MOVIEPRO","features":[419]},{"name":"MM_MIRO_VIDEOD1","features":[419]},{"name":"MM_MIRO_VIDEODC1TV","features":[419]},{"name":"MM_MIRO_VIDEOTD","features":[419]},{"name":"MM_MITEL","features":[419]},{"name":"MM_MITEL_MEDIAPATH_WAVEIN","features":[419]},{"name":"MM_MITEL_MEDIAPATH_WAVEOUT","features":[419]},{"name":"MM_MITEL_MPA_HANDSET_WAVEIN","features":[419]},{"name":"MM_MITEL_MPA_HANDSET_WAVEOUT","features":[419]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEIN","features":[419]},{"name":"MM_MITEL_MPA_HANDSFREE_WAVEOUT","features":[419]},{"name":"MM_MITEL_MPA_LINE1_WAVEIN","features":[419]},{"name":"MM_MITEL_MPA_LINE1_WAVEOUT","features":[419]},{"name":"MM_MITEL_MPA_LINE2_WAVEIN","features":[419]},{"name":"MM_MITEL_MPA_LINE2_WAVEOUT","features":[419]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEIN","features":[419]},{"name":"MM_MITEL_TALKTO_BRIDGED_WAVEOUT","features":[419]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEIN","features":[419]},{"name":"MM_MITEL_TALKTO_HANDSET_WAVEOUT","features":[419]},{"name":"MM_MITEL_TALKTO_LINE_WAVEIN","features":[419]},{"name":"MM_MITEL_TALKTO_LINE_WAVEOUT","features":[419]},{"name":"MM_MMOTION_WAVEAUX","features":[419]},{"name":"MM_MMOTION_WAVEIN","features":[419]},{"name":"MM_MMOTION_WAVEOUT","features":[419]},{"name":"MM_MOSCOM","features":[419]},{"name":"MM_MOSCOM_VPC2400_IN","features":[419]},{"name":"MM_MOSCOM_VPC2400_OUT","features":[419]},{"name":"MM_MOTIONPIXELS","features":[419]},{"name":"MM_MOTIONPIXELS_MVI2","features":[419]},{"name":"MM_MOTOROLA","features":[419]},{"name":"MM_MOTU","features":[419]},{"name":"MM_MOTU_DTX_MIDI_IN_A","features":[419]},{"name":"MM_MOTU_DTX_MIDI_IN_B","features":[419]},{"name":"MM_MOTU_DTX_MIDI_IN_SYNC","features":[419]},{"name":"MM_MOTU_DTX_MIDI_OUT_A","features":[419]},{"name":"MM_MOTU_DTX_MIDI_OUT_B","features":[419]},{"name":"MM_MOTU_FLYER_MIDI_IN_A","features":[419]},{"name":"MM_MOTU_FLYER_MIDI_IN_B","features":[419]},{"name":"MM_MOTU_FLYER_MIDI_IN_SYNC","features":[419]},{"name":"MM_MOTU_FLYER_MIDI_OUT_A","features":[419]},{"name":"MM_MOTU_FLYER_MIDI_OUT_B","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_7","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_8","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_ADAT","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIIN_SYNC","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_7","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_8","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ADAT","features":[419]},{"name":"MM_MOTU_MTPAV_MIDIOUT_ALL","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_7","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIIN_8","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_7","features":[419]},{"name":"MM_MOTU_MTPAV_NET_MIDIOUT_8","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_7","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_8","features":[419]},{"name":"MM_MOTU_MTPII_MIDIIN_SYNC","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_7","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_8","features":[419]},{"name":"MM_MOTU_MTPII_MIDIOUT_ALL","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_7","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIIN_8","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_7","features":[419]},{"name":"MM_MOTU_MTPII_NET_MIDIOUT_8","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_7","features":[419]},{"name":"MM_MOTU_MTP_MIDIIN_8","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_7","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_8","features":[419]},{"name":"MM_MOTU_MTP_MIDIOUT_ALL","features":[419]},{"name":"MM_MOTU_MXN_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MXN_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MXN_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MXN_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MXN_MIDIIN_SYNC","features":[419]},{"name":"MM_MOTU_MXN_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MXN_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MXN_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MXN_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MXN_MIDIOUT_ALL","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIIN_SYNC","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MXPMPU_MIDIOUT_ALL","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_7","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_8","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIIN_SYNC","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_7","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_8","features":[419]},{"name":"MM_MOTU_MXPXT_MIDIOUT_ALL","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_1","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_2","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_3","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_4","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_5","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIIN_6","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_1","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_2","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_3","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_4","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_5","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_6","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_MIDIOUT_ALL","features":[419]},{"name":"MM_MOTU_MXP_MIDIIN_SYNC","features":[419]},{"name":"MM_MOTU_PKX_MIDI_IN_A","features":[419]},{"name":"MM_MOTU_PKX_MIDI_IN_B","features":[419]},{"name":"MM_MOTU_PKX_MIDI_IN_SYNC","features":[419]},{"name":"MM_MOTU_PKX_MIDI_OUT_A","features":[419]},{"name":"MM_MOTU_PKX_MIDI_OUT_B","features":[419]},{"name":"MM_MPTUS","features":[419]},{"name":"MM_MPTUS_SPWAVEOUT","features":[419]},{"name":"MM_MSFT_ACM_G711","features":[419]},{"name":"MM_MSFT_ACM_GSM610","features":[419]},{"name":"MM_MSFT_ACM_IMAADPCM","features":[419]},{"name":"MM_MSFT_ACM_MSADPCM","features":[419]},{"name":"MM_MSFT_ACM_MSAUDIO1","features":[419]},{"name":"MM_MSFT_ACM_MSFILTER","features":[419]},{"name":"MM_MSFT_ACM_MSG723","features":[419]},{"name":"MM_MSFT_ACM_MSNAUDIO","features":[419]},{"name":"MM_MSFT_ACM_MSRT24","features":[419]},{"name":"MM_MSFT_ACM_PCM","features":[419]},{"name":"MM_MSFT_ACM_WMAUDIO","features":[419]},{"name":"MM_MSFT_ACM_WMAUDIO2","features":[419]},{"name":"MM_MSFT_GENERIC_AUX_CD","features":[419]},{"name":"MM_MSFT_GENERIC_AUX_LINE","features":[419]},{"name":"MM_MSFT_GENERIC_AUX_MIC","features":[419]},{"name":"MM_MSFT_GENERIC_MIDIIN","features":[419]},{"name":"MM_MSFT_GENERIC_MIDIOUT","features":[419]},{"name":"MM_MSFT_GENERIC_MIDISYNTH","features":[419]},{"name":"MM_MSFT_GENERIC_WAVEIN","features":[419]},{"name":"MM_MSFT_GENERIC_WAVEOUT","features":[419]},{"name":"MM_MSFT_MSACM","features":[419]},{"name":"MM_MSFT_MSOPL_SYNTH","features":[419]},{"name":"MM_MSFT_SB16_AUX_CD","features":[419]},{"name":"MM_MSFT_SB16_AUX_LINE","features":[419]},{"name":"MM_MSFT_SB16_MIDIIN","features":[419]},{"name":"MM_MSFT_SB16_MIDIOUT","features":[419]},{"name":"MM_MSFT_SB16_MIXER","features":[419]},{"name":"MM_MSFT_SB16_SYNTH","features":[419]},{"name":"MM_MSFT_SB16_WAVEIN","features":[419]},{"name":"MM_MSFT_SB16_WAVEOUT","features":[419]},{"name":"MM_MSFT_SBPRO_AUX_CD","features":[419]},{"name":"MM_MSFT_SBPRO_AUX_LINE","features":[419]},{"name":"MM_MSFT_SBPRO_MIDIIN","features":[419]},{"name":"MM_MSFT_SBPRO_MIDIOUT","features":[419]},{"name":"MM_MSFT_SBPRO_MIXER","features":[419]},{"name":"MM_MSFT_SBPRO_SYNTH","features":[419]},{"name":"MM_MSFT_SBPRO_WAVEIN","features":[419]},{"name":"MM_MSFT_SBPRO_WAVEOUT","features":[419]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEIN","features":[419]},{"name":"MM_MSFT_VMDMS_HANDSET_WAVEOUT","features":[419]},{"name":"MM_MSFT_VMDMS_LINE_WAVEIN","features":[419]},{"name":"MM_MSFT_VMDMS_LINE_WAVEOUT","features":[419]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEIN","features":[419]},{"name":"MM_MSFT_VMDMW_HANDSET_WAVEOUT","features":[419]},{"name":"MM_MSFT_VMDMW_LINE_WAVEIN","features":[419]},{"name":"MM_MSFT_VMDMW_LINE_WAVEOUT","features":[419]},{"name":"MM_MSFT_VMDMW_MIXER","features":[419]},{"name":"MM_MSFT_VMDM_GAME_WAVEIN","features":[419]},{"name":"MM_MSFT_VMDM_GAME_WAVEOUT","features":[419]},{"name":"MM_MSFT_WDMAUDIO_AUX","features":[419]},{"name":"MM_MSFT_WDMAUDIO_MIDIIN","features":[419]},{"name":"MM_MSFT_WDMAUDIO_MIDIOUT","features":[419]},{"name":"MM_MSFT_WDMAUDIO_MIXER","features":[419]},{"name":"MM_MSFT_WDMAUDIO_WAVEIN","features":[419]},{"name":"MM_MSFT_WDMAUDIO_WAVEOUT","features":[419]},{"name":"MM_MSFT_WSS_AUX","features":[419]},{"name":"MM_MSFT_WSS_FMSYNTH_STEREO","features":[419]},{"name":"MM_MSFT_WSS_MIXER","features":[419]},{"name":"MM_MSFT_WSS_NT_AUX","features":[419]},{"name":"MM_MSFT_WSS_NT_FMSYNTH_STEREO","features":[419]},{"name":"MM_MSFT_WSS_NT_MIXER","features":[419]},{"name":"MM_MSFT_WSS_NT_WAVEIN","features":[419]},{"name":"MM_MSFT_WSS_NT_WAVEOUT","features":[419]},{"name":"MM_MSFT_WSS_OEM_AUX","features":[419]},{"name":"MM_MSFT_WSS_OEM_FMSYNTH_STEREO","features":[419]},{"name":"MM_MSFT_WSS_OEM_MIXER","features":[419]},{"name":"MM_MSFT_WSS_OEM_WAVEIN","features":[419]},{"name":"MM_MSFT_WSS_OEM_WAVEOUT","features":[419]},{"name":"MM_MSFT_WSS_WAVEIN","features":[419]},{"name":"MM_MSFT_WSS_WAVEOUT","features":[419]},{"name":"MM_MWM","features":[419]},{"name":"MM_NCR","features":[419]},{"name":"MM_NCR_BA_AUX","features":[419]},{"name":"MM_NCR_BA_MIXER","features":[419]},{"name":"MM_NCR_BA_SYNTH","features":[419]},{"name":"MM_NCR_BA_WAVEIN","features":[419]},{"name":"MM_NCR_BA_WAVEOUT","features":[419]},{"name":"MM_NEC","features":[419]},{"name":"MM_NEC_26_SYNTH","features":[419]},{"name":"MM_NEC_73_86_SYNTH","features":[419]},{"name":"MM_NEC_73_86_WAVEIN","features":[419]},{"name":"MM_NEC_73_86_WAVEOUT","features":[419]},{"name":"MM_NEC_JOYSTICK","features":[419]},{"name":"MM_NEC_MPU401_MIDIIN","features":[419]},{"name":"MM_NEC_MPU401_MIDIOUT","features":[419]},{"name":"MM_NEOMAGIC","features":[419]},{"name":"MM_NEOMAGIC_AUX","features":[419]},{"name":"MM_NEOMAGIC_MIDIIN","features":[419]},{"name":"MM_NEOMAGIC_MIDIOUT","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_AUX","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_FMSYNTH","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_GMSYNTH","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_MIDIIN","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_MIDIOUT","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_MIXER","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_WAVEIN","features":[419]},{"name":"MM_NEOMAGIC_MW3DX_WAVEOUT","features":[419]},{"name":"MM_NEOMAGIC_MWAVE_AUX","features":[419]},{"name":"MM_NEOMAGIC_MWAVE_MIDIIN","features":[419]},{"name":"MM_NEOMAGIC_MWAVE_MIDIOUT","features":[419]},{"name":"MM_NEOMAGIC_MWAVE_MIXER","features":[419]},{"name":"MM_NEOMAGIC_MWAVE_WAVEIN","features":[419]},{"name":"MM_NEOMAGIC_MWAVE_WAVEOUT","features":[419]},{"name":"MM_NEOMAGIC_SYNTH","features":[419]},{"name":"MM_NEOMAGIC_WAVEIN","features":[419]},{"name":"MM_NEOMAGIC_WAVEOUT","features":[419]},{"name":"MM_NETSCAPE","features":[419]},{"name":"MM_NETXL","features":[419]},{"name":"MM_NETXL_XLVIDEO","features":[419]},{"name":"MM_NEWMEDIA","features":[419]},{"name":"MM_NEWMEDIA_WAVJAMMER","features":[419]},{"name":"MM_NMP","features":[419]},{"name":"MM_NMP_ACM_AMR","features":[419]},{"name":"MM_NMP_CCP_WAVEIN","features":[419]},{"name":"MM_NMP_CCP_WAVEOUT","features":[419]},{"name":"MM_NMS","features":[419]},{"name":"MM_NOGATECH","features":[419]},{"name":"MM_NORRIS","features":[419]},{"name":"MM_NORRIS_VOICELINK","features":[419]},{"name":"MM_NORTEL_MPXAC_WAVEIN","features":[419]},{"name":"MM_NORTEL_MPXAC_WAVEOUT","features":[419]},{"name":"MM_NORTHERN_TELECOM","features":[419]},{"name":"MM_NVIDIA","features":[419]},{"name":"MM_NVIDIA_AUX","features":[419]},{"name":"MM_NVIDIA_GAMEPORT","features":[419]},{"name":"MM_NVIDIA_MIDIIN","features":[419]},{"name":"MM_NVIDIA_MIDIOUT","features":[419]},{"name":"MM_NVIDIA_MIXER","features":[419]},{"name":"MM_NVIDIA_WAVEIN","features":[419]},{"name":"MM_NVIDIA_WAVEOUT","features":[419]},{"name":"MM_OKI","features":[419]},{"name":"MM_OKSORI","features":[419]},{"name":"MM_OKSORI_BASE","features":[419]},{"name":"MM_OKSORI_EXT_MIC1","features":[419]},{"name":"MM_OKSORI_EXT_MIC2","features":[419]},{"name":"MM_OKSORI_FM_OPL4","features":[419]},{"name":"MM_OKSORI_MIDIIN","features":[419]},{"name":"MM_OKSORI_MIDIOUT","features":[419]},{"name":"MM_OKSORI_MIX_AUX1","features":[419]},{"name":"MM_OKSORI_MIX_CD","features":[419]},{"name":"MM_OKSORI_MIX_ECHO","features":[419]},{"name":"MM_OKSORI_MIX_FM","features":[419]},{"name":"MM_OKSORI_MIX_LINE","features":[419]},{"name":"MM_OKSORI_MIX_LINE1","features":[419]},{"name":"MM_OKSORI_MIX_MASTER","features":[419]},{"name":"MM_OKSORI_MIX_MIC","features":[419]},{"name":"MM_OKSORI_MIX_WAVE","features":[419]},{"name":"MM_OKSORI_MPEG_CDVISION","features":[419]},{"name":"MM_OKSORI_OSR16_WAVEIN","features":[419]},{"name":"MM_OKSORI_OSR16_WAVEOUT","features":[419]},{"name":"MM_OKSORI_OSR8_WAVEIN","features":[419]},{"name":"MM_OKSORI_OSR8_WAVEOUT","features":[419]},{"name":"MM_OLIVETTI","features":[419]},{"name":"MM_OLIVETTI_ACM_ADPCM","features":[419]},{"name":"MM_OLIVETTI_ACM_CELP","features":[419]},{"name":"MM_OLIVETTI_ACM_GSM","features":[419]},{"name":"MM_OLIVETTI_ACM_OPR","features":[419]},{"name":"MM_OLIVETTI_ACM_SBC","features":[419]},{"name":"MM_OLIVETTI_AUX","features":[419]},{"name":"MM_OLIVETTI_JOYSTICK","features":[419]},{"name":"MM_OLIVETTI_MIDIIN","features":[419]},{"name":"MM_OLIVETTI_MIDIOUT","features":[419]},{"name":"MM_OLIVETTI_MIXER","features":[419]},{"name":"MM_OLIVETTI_SYNTH","features":[419]},{"name":"MM_OLIVETTI_WAVEIN","features":[419]},{"name":"MM_OLIVETTI_WAVEOUT","features":[419]},{"name":"MM_ONLIVE","features":[419]},{"name":"MM_ONLIVE_MPCODEC","features":[419]},{"name":"MM_OPCODE","features":[419]},{"name":"MM_OPTI","features":[419]},{"name":"MM_OPTI_M16_AUX","features":[419]},{"name":"MM_OPTI_M16_FMSYNTH_STEREO","features":[419]},{"name":"MM_OPTI_M16_MIDIIN","features":[419]},{"name":"MM_OPTI_M16_MIDIOUT","features":[419]},{"name":"MM_OPTI_M16_MIXER","features":[419]},{"name":"MM_OPTI_M16_WAVEIN","features":[419]},{"name":"MM_OPTI_M16_WAVEOUT","features":[419]},{"name":"MM_OPTI_M32_AUX","features":[419]},{"name":"MM_OPTI_M32_MIDIIN","features":[419]},{"name":"MM_OPTI_M32_MIDIOUT","features":[419]},{"name":"MM_OPTI_M32_MIXER","features":[419]},{"name":"MM_OPTI_M32_SYNTH_STEREO","features":[419]},{"name":"MM_OPTI_M32_WAVEIN","features":[419]},{"name":"MM_OPTI_M32_WAVEOUT","features":[419]},{"name":"MM_OPTI_P16_AUX","features":[419]},{"name":"MM_OPTI_P16_FMSYNTH_STEREO","features":[419]},{"name":"MM_OPTI_P16_MIDIIN","features":[419]},{"name":"MM_OPTI_P16_MIDIOUT","features":[419]},{"name":"MM_OPTI_P16_MIXER","features":[419]},{"name":"MM_OPTI_P16_WAVEIN","features":[419]},{"name":"MM_OPTI_P16_WAVEOUT","features":[419]},{"name":"MM_OPUS1208_AUX","features":[419]},{"name":"MM_OPUS1208_MIXER","features":[419]},{"name":"MM_OPUS1208_SYNTH","features":[419]},{"name":"MM_OPUS1208_WAVEIN","features":[419]},{"name":"MM_OPUS1208_WAVEOUT","features":[419]},{"name":"MM_OPUS1216_AUX","features":[419]},{"name":"MM_OPUS1216_MIDIIN","features":[419]},{"name":"MM_OPUS1216_MIDIOUT","features":[419]},{"name":"MM_OPUS1216_MIXER","features":[419]},{"name":"MM_OPUS1216_SYNTH","features":[419]},{"name":"MM_OPUS1216_WAVEIN","features":[419]},{"name":"MM_OPUS1216_WAVEOUT","features":[419]},{"name":"MM_OPUS401_MIDIIN","features":[419]},{"name":"MM_OPUS401_MIDIOUT","features":[419]},{"name":"MM_OSITECH","features":[419]},{"name":"MM_OSITECH_TRUMPCARD","features":[419]},{"name":"MM_OSPREY","features":[419]},{"name":"MM_OSPREY_1000WAVEIN","features":[419]},{"name":"MM_OSPREY_1000WAVEOUT","features":[419]},{"name":"MM_OTI","features":[419]},{"name":"MM_OTI_611MIDIN","features":[419]},{"name":"MM_OTI_611MIDIOUT","features":[419]},{"name":"MM_OTI_611MIXER","features":[419]},{"name":"MM_OTI_611WAVEIN","features":[419]},{"name":"MM_OTI_611WAVEOUT","features":[419]},{"name":"MM_PACIFICRESEARCH","features":[419]},{"name":"MM_PCSPEAKER_WAVEOUT","features":[419]},{"name":"MM_PHILIPS_ACM_LPCBB","features":[419]},{"name":"MM_PHILIPS_SPEECH_PROCESSING","features":[419]},{"name":"MM_PHONET","features":[419]},{"name":"MM_PHONET_PP_MIXER","features":[419]},{"name":"MM_PHONET_PP_WAVEIN","features":[419]},{"name":"MM_PHONET_PP_WAVEOUT","features":[419]},{"name":"MM_PICTURETEL","features":[419]},{"name":"MM_PID_UNMAPPED","features":[419]},{"name":"MM_PINNACLE","features":[419]},{"name":"MM_PRAGMATRAX","features":[419]},{"name":"MM_PRECEPT","features":[419]},{"name":"MM_PROAUD_16_AUX","features":[419]},{"name":"MM_PROAUD_16_MIDIIN","features":[419]},{"name":"MM_PROAUD_16_MIDIOUT","features":[419]},{"name":"MM_PROAUD_16_MIXER","features":[419]},{"name":"MM_PROAUD_16_SYNTH","features":[419]},{"name":"MM_PROAUD_16_WAVEIN","features":[419]},{"name":"MM_PROAUD_16_WAVEOUT","features":[419]},{"name":"MM_PROAUD_AUX","features":[419]},{"name":"MM_PROAUD_MIDIIN","features":[419]},{"name":"MM_PROAUD_MIDIOUT","features":[419]},{"name":"MM_PROAUD_MIXER","features":[419]},{"name":"MM_PROAUD_PLUS_AUX","features":[419]},{"name":"MM_PROAUD_PLUS_MIDIIN","features":[419]},{"name":"MM_PROAUD_PLUS_MIDIOUT","features":[419]},{"name":"MM_PROAUD_PLUS_MIXER","features":[419]},{"name":"MM_PROAUD_PLUS_SYNTH","features":[419]},{"name":"MM_PROAUD_PLUS_WAVEIN","features":[419]},{"name":"MM_PROAUD_PLUS_WAVEOUT","features":[419]},{"name":"MM_PROAUD_SYNTH","features":[419]},{"name":"MM_PROAUD_WAVEIN","features":[419]},{"name":"MM_PROAUD_WAVEOUT","features":[419]},{"name":"MM_QCIAR","features":[419]},{"name":"MM_QDESIGN","features":[419]},{"name":"MM_QDESIGN_ACM_MPEG","features":[419]},{"name":"MM_QDESIGN_ACM_QDESIGN_MUSIC","features":[419]},{"name":"MM_QTEAM","features":[419]},{"name":"MM_QUALCOMM","features":[419]},{"name":"MM_QUANTUM3D","features":[419]},{"name":"MM_QUARTERDECK","features":[419]},{"name":"MM_QUARTERDECK_LHWAVEIN","features":[419]},{"name":"MM_QUARTERDECK_LHWAVEOUT","features":[419]},{"name":"MM_QUICKAUDIO","features":[419]},{"name":"MM_QUICKAUDIO_MAXIMIDI","features":[419]},{"name":"MM_QUICKAUDIO_MINIMIDI","features":[419]},{"name":"MM_QUICKNET","features":[419]},{"name":"MM_QUICKNET_PJWAVEIN","features":[419]},{"name":"MM_QUICKNET_PJWAVEOUT","features":[419]},{"name":"MM_RADIUS","features":[419]},{"name":"MM_RHETOREX","features":[419]},{"name":"MM_RHETOREX_WAVEIN","features":[419]},{"name":"MM_RHETOREX_WAVEOUT","features":[419]},{"name":"MM_RICHMOND","features":[419]},{"name":"MM_ROCKWELL","features":[419]},{"name":"MM_ROLAND","features":[419]},{"name":"MM_ROLAND_MPU401_MIDIIN","features":[419]},{"name":"MM_ROLAND_MPU401_MIDIOUT","features":[419]},{"name":"MM_ROLAND_RAP10_MIDIIN","features":[419]},{"name":"MM_ROLAND_RAP10_MIDIOUT","features":[419]},{"name":"MM_ROLAND_RAP10_SYNTH","features":[419]},{"name":"MM_ROLAND_RAP10_WAVEIN","features":[419]},{"name":"MM_ROLAND_RAP10_WAVEOUT","features":[419]},{"name":"MM_ROLAND_SC7_MIDIIN","features":[419]},{"name":"MM_ROLAND_SC7_MIDIOUT","features":[419]},{"name":"MM_ROLAND_SCP_AUX","features":[419]},{"name":"MM_ROLAND_SCP_MIDIIN","features":[419]},{"name":"MM_ROLAND_SCP_MIDIOUT","features":[419]},{"name":"MM_ROLAND_SCP_MIXER","features":[419]},{"name":"MM_ROLAND_SCP_WAVEIN","features":[419]},{"name":"MM_ROLAND_SCP_WAVEOUT","features":[419]},{"name":"MM_ROLAND_SERIAL_MIDIIN","features":[419]},{"name":"MM_ROLAND_SERIAL_MIDIOUT","features":[419]},{"name":"MM_ROLAND_SMPU_MIDIINA","features":[419]},{"name":"MM_ROLAND_SMPU_MIDIINB","features":[419]},{"name":"MM_ROLAND_SMPU_MIDIOUTA","features":[419]},{"name":"MM_ROLAND_SMPU_MIDIOUTB","features":[419]},{"name":"MM_RZS","features":[419]},{"name":"MM_RZS_ACM_TUBGSM","features":[419]},{"name":"MM_S3","features":[419]},{"name":"MM_S3_AUX","features":[419]},{"name":"MM_S3_FMSYNTH","features":[419]},{"name":"MM_S3_MIDIIN","features":[419]},{"name":"MM_S3_MIDIOUT","features":[419]},{"name":"MM_S3_MIXER","features":[419]},{"name":"MM_S3_WAVEIN","features":[419]},{"name":"MM_S3_WAVEOUT","features":[419]},{"name":"MM_SANYO","features":[419]},{"name":"MM_SANYO_ACM_LD_ADPCM","features":[419]},{"name":"MM_SCALACS","features":[419]},{"name":"MM_SEERSYS","features":[419]},{"name":"MM_SEERSYS_REALITY","features":[419]},{"name":"MM_SEERSYS_SEERMIX","features":[419]},{"name":"MM_SEERSYS_SEERSYNTH","features":[419]},{"name":"MM_SEERSYS_SEERWAVE","features":[419]},{"name":"MM_SEERSYS_WAVESYNTH","features":[419]},{"name":"MM_SEERSYS_WAVESYNTH_WG","features":[419]},{"name":"MM_SELSIUS_SYSTEMS","features":[419]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEIN","features":[419]},{"name":"MM_SELSIUS_SYSTEMS_RTPWAVEOUT","features":[419]},{"name":"MM_SGI","features":[419]},{"name":"MM_SGI_320_MIXER","features":[419]},{"name":"MM_SGI_320_WAVEIN","features":[419]},{"name":"MM_SGI_320_WAVEOUT","features":[419]},{"name":"MM_SGI_540_MIXER","features":[419]},{"name":"MM_SGI_540_WAVEIN","features":[419]},{"name":"MM_SGI_540_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADAT8CHAN_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO1_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO2_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO3_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO4_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO5_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO6_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO7_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATMONO8_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO12_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO32_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO34_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO56_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_ADATSTEREO78_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_AESMONO1_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_AESMONO1_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_AESMONO2_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_AESMONO2_WAVEOUT","features":[419]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEIN","features":[419]},{"name":"MM_SGI_RAD_AESSTEREO_WAVEOUT","features":[419]},{"name":"MM_SHARP","features":[419]},{"name":"MM_SHARP_MDC_AUX","features":[419]},{"name":"MM_SHARP_MDC_AUX_BASS","features":[419]},{"name":"MM_SHARP_MDC_AUX_CHR","features":[419]},{"name":"MM_SHARP_MDC_AUX_MASTER","features":[419]},{"name":"MM_SHARP_MDC_AUX_MIDI_VOL","features":[419]},{"name":"MM_SHARP_MDC_AUX_RVB","features":[419]},{"name":"MM_SHARP_MDC_AUX_TREBLE","features":[419]},{"name":"MM_SHARP_MDC_AUX_VOL","features":[419]},{"name":"MM_SHARP_MDC_AUX_WAVE_CHR","features":[419]},{"name":"MM_SHARP_MDC_AUX_WAVE_RVB","features":[419]},{"name":"MM_SHARP_MDC_AUX_WAVE_VOL","features":[419]},{"name":"MM_SHARP_MDC_MIDI_IN","features":[419]},{"name":"MM_SHARP_MDC_MIDI_OUT","features":[419]},{"name":"MM_SHARP_MDC_MIDI_SYNTH","features":[419]},{"name":"MM_SHARP_MDC_MIXER","features":[419]},{"name":"MM_SHARP_MDC_WAVE_IN","features":[419]},{"name":"MM_SHARP_MDC_WAVE_OUT","features":[419]},{"name":"MM_SICRESOURCE","features":[419]},{"name":"MM_SICRESOURCE_SSO3D","features":[419]},{"name":"MM_SICRESOURCE_SSOW3DI","features":[419]},{"name":"MM_SIEMENS_SBC","features":[419]},{"name":"MM_SIERRA","features":[419]},{"name":"MM_SIERRA_ARIA_AUX","features":[419]},{"name":"MM_SIERRA_ARIA_AUX2","features":[419]},{"name":"MM_SIERRA_ARIA_MIDIIN","features":[419]},{"name":"MM_SIERRA_ARIA_MIDIOUT","features":[419]},{"name":"MM_SIERRA_ARIA_SYNTH","features":[419]},{"name":"MM_SIERRA_ARIA_WAVEIN","features":[419]},{"name":"MM_SIERRA_ARIA_WAVEOUT","features":[419]},{"name":"MM_SIERRA_QUARTET_AUX_CD","features":[419]},{"name":"MM_SIERRA_QUARTET_AUX_LINE","features":[419]},{"name":"MM_SIERRA_QUARTET_AUX_MODEM","features":[419]},{"name":"MM_SIERRA_QUARTET_MIDIIN","features":[419]},{"name":"MM_SIERRA_QUARTET_MIDIOUT","features":[419]},{"name":"MM_SIERRA_QUARTET_MIXER","features":[419]},{"name":"MM_SIERRA_QUARTET_SYNTH","features":[419]},{"name":"MM_SIERRA_QUARTET_WAVEIN","features":[419]},{"name":"MM_SIERRA_QUARTET_WAVEOUT","features":[419]},{"name":"MM_SILICONSOFT","features":[419]},{"name":"MM_SILICONSOFT_SC1_WAVEIN","features":[419]},{"name":"MM_SILICONSOFT_SC1_WAVEOUT","features":[419]},{"name":"MM_SILICONSOFT_SC2_WAVEIN","features":[419]},{"name":"MM_SILICONSOFT_SC2_WAVEOUT","features":[419]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEIN","features":[419]},{"name":"MM_SILICONSOFT_SOUNDJR2PR_WAVEOUT","features":[419]},{"name":"MM_SILICONSOFT_SOUNDJR2_WAVEOUT","features":[419]},{"name":"MM_SILICONSOFT_SOUNDJR3_WAVEOUT","features":[419]},{"name":"MM_SIPROLAB","features":[419]},{"name":"MM_SIPROLAB_ACELPNET","features":[419]},{"name":"MM_SNI","features":[419]},{"name":"MM_SNI_ACM_G721","features":[419]},{"name":"MM_SOFTLAB_NSK","features":[419]},{"name":"MM_SOFTLAB_NSK_FRW_AUX","features":[419]},{"name":"MM_SOFTLAB_NSK_FRW_MIXER","features":[419]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEIN","features":[419]},{"name":"MM_SOFTLAB_NSK_FRW_WAVEOUT","features":[419]},{"name":"MM_SOFTSOUND","features":[419]},{"name":"MM_SOFTSOUND_CODEC","features":[419]},{"name":"MM_SONICFOUNDRY","features":[419]},{"name":"MM_SONORUS","features":[419]},{"name":"MM_SONORUS_STUDIO","features":[419]},{"name":"MM_SONY","features":[419]},{"name":"MM_SONY_ACM_SCX","features":[419]},{"name":"MM_SORVIS","features":[419]},{"name":"MM_SOUNDESIGNS","features":[419]},{"name":"MM_SOUNDESIGNS_WAVEIN","features":[419]},{"name":"MM_SOUNDESIGNS_WAVEOUT","features":[419]},{"name":"MM_SOUNDSCAPE_AUX","features":[419]},{"name":"MM_SOUNDSCAPE_MIDIIN","features":[419]},{"name":"MM_SOUNDSCAPE_MIDIOUT","features":[419]},{"name":"MM_SOUNDSCAPE_MIXER","features":[419]},{"name":"MM_SOUNDSCAPE_SYNTH","features":[419]},{"name":"MM_SOUNDSCAPE_WAVEIN","features":[419]},{"name":"MM_SOUNDSCAPE_WAVEOUT","features":[419]},{"name":"MM_SOUNDSCAPE_WAVEOUT_AUX","features":[419]},{"name":"MM_SOUNDSPACE","features":[419]},{"name":"MM_SPECTRUM_PRODUCTIONS","features":[419]},{"name":"MM_SPECTRUM_SIGNAL_PROCESSING","features":[419]},{"name":"MM_SPEECHCOMP","features":[419]},{"name":"MM_SPLASH_STUDIOS","features":[419]},{"name":"MM_SSP_SNDFESAUX","features":[419]},{"name":"MM_SSP_SNDFESMIDIIN","features":[419]},{"name":"MM_SSP_SNDFESMIDIOUT","features":[419]},{"name":"MM_SSP_SNDFESMIX","features":[419]},{"name":"MM_SSP_SNDFESSYNTH","features":[419]},{"name":"MM_SSP_SNDFESWAVEIN","features":[419]},{"name":"MM_SSP_SNDFESWAVEOUT","features":[419]},{"name":"MM_STUDER","features":[419]},{"name":"MM_STUDIO_16_AUX","features":[419]},{"name":"MM_STUDIO_16_MIDIIN","features":[419]},{"name":"MM_STUDIO_16_MIDIOUT","features":[419]},{"name":"MM_STUDIO_16_MIXER","features":[419]},{"name":"MM_STUDIO_16_SYNTH","features":[419]},{"name":"MM_STUDIO_16_WAVEIN","features":[419]},{"name":"MM_STUDIO_16_WAVEOUT","features":[419]},{"name":"MM_ST_MICROELECTRONICS","features":[419]},{"name":"MM_SUNCOM","features":[419]},{"name":"MM_SUPERMAC","features":[419]},{"name":"MM_SYDEC_NV","features":[419]},{"name":"MM_SYDEC_NV_WAVEIN","features":[419]},{"name":"MM_SYDEC_NV_WAVEOUT","features":[419]},{"name":"MM_TANDY","features":[419]},{"name":"MM_TANDY_PSSJWAVEIN","features":[419]},{"name":"MM_TANDY_PSSJWAVEOUT","features":[419]},{"name":"MM_TANDY_SENS_MMAMIDIIN","features":[419]},{"name":"MM_TANDY_SENS_MMAMIDIOUT","features":[419]},{"name":"MM_TANDY_SENS_MMAWAVEIN","features":[419]},{"name":"MM_TANDY_SENS_MMAWAVEOUT","features":[419]},{"name":"MM_TANDY_SENS_VISWAVEOUT","features":[419]},{"name":"MM_TANDY_VISBIOSSYNTH","features":[419]},{"name":"MM_TANDY_VISWAVEIN","features":[419]},{"name":"MM_TANDY_VISWAVEOUT","features":[419]},{"name":"MM_TBS_TROPEZ_AUX1","features":[419]},{"name":"MM_TBS_TROPEZ_AUX2","features":[419]},{"name":"MM_TBS_TROPEZ_LINE","features":[419]},{"name":"MM_TBS_TROPEZ_WAVEIN","features":[419]},{"name":"MM_TBS_TROPEZ_WAVEOUT","features":[419]},{"name":"MM_TDK","features":[419]},{"name":"MM_TDK_MW_AUX","features":[419]},{"name":"MM_TDK_MW_AUX_BASS","features":[419]},{"name":"MM_TDK_MW_AUX_CHR","features":[419]},{"name":"MM_TDK_MW_AUX_MASTER","features":[419]},{"name":"MM_TDK_MW_AUX_MIDI_VOL","features":[419]},{"name":"MM_TDK_MW_AUX_RVB","features":[419]},{"name":"MM_TDK_MW_AUX_TREBLE","features":[419]},{"name":"MM_TDK_MW_AUX_VOL","features":[419]},{"name":"MM_TDK_MW_AUX_WAVE_CHR","features":[419]},{"name":"MM_TDK_MW_AUX_WAVE_RVB","features":[419]},{"name":"MM_TDK_MW_AUX_WAVE_VOL","features":[419]},{"name":"MM_TDK_MW_MIDI_IN","features":[419]},{"name":"MM_TDK_MW_MIDI_OUT","features":[419]},{"name":"MM_TDK_MW_MIDI_SYNTH","features":[419]},{"name":"MM_TDK_MW_MIXER","features":[419]},{"name":"MM_TDK_MW_WAVE_IN","features":[419]},{"name":"MM_TDK_MW_WAVE_OUT","features":[419]},{"name":"MM_TELEKOL","features":[419]},{"name":"MM_TELEKOL_WAVEIN","features":[419]},{"name":"MM_TELEKOL_WAVEOUT","features":[419]},{"name":"MM_TERALOGIC","features":[419]},{"name":"MM_TERRATEC","features":[419]},{"name":"MM_THUNDER_AUX","features":[419]},{"name":"MM_THUNDER_SYNTH","features":[419]},{"name":"MM_THUNDER_WAVEIN","features":[419]},{"name":"MM_THUNDER_WAVEOUT","features":[419]},{"name":"MM_TPORT_SYNTH","features":[419]},{"name":"MM_TPORT_WAVEIN","features":[419]},{"name":"MM_TPORT_WAVEOUT","features":[419]},{"name":"MM_TRUEVISION","features":[419]},{"name":"MM_TRUEVISION_WAVEIN1","features":[419]},{"name":"MM_TRUEVISION_WAVEOUT1","features":[419]},{"name":"MM_TTEWS_AUX","features":[419]},{"name":"MM_TTEWS_MIDIIN","features":[419]},{"name":"MM_TTEWS_MIDIMONITOR","features":[419]},{"name":"MM_TTEWS_MIDIOUT","features":[419]},{"name":"MM_TTEWS_MIDISYNTH","features":[419]},{"name":"MM_TTEWS_MIXER","features":[419]},{"name":"MM_TTEWS_VMIDIIN","features":[419]},{"name":"MM_TTEWS_VMIDIOUT","features":[419]},{"name":"MM_TTEWS_WAVEIN","features":[419]},{"name":"MM_TTEWS_WAVEOUT","features":[419]},{"name":"MM_TURTLE_BEACH","features":[419]},{"name":"MM_UHER_INFORMATIC","features":[419]},{"name":"MM_UH_ACM_ADPCM","features":[419]},{"name":"MM_UNISYS","features":[419]},{"name":"MM_UNISYS_ACM_NAP","features":[419]},{"name":"MM_UNMAPPED","features":[419]},{"name":"MM_VAL","features":[419]},{"name":"MM_VAL_MICROKEY_AP_WAVEIN","features":[419]},{"name":"MM_VAL_MICROKEY_AP_WAVEOUT","features":[419]},{"name":"MM_VANKOEVERING","features":[419]},{"name":"MM_VIA","features":[419]},{"name":"MM_VIA_AUX","features":[419]},{"name":"MM_VIA_MIXER","features":[419]},{"name":"MM_VIA_MPU401_MIDIIN","features":[419]},{"name":"MM_VIA_MPU401_MIDIOUT","features":[419]},{"name":"MM_VIA_SWFM_SYNTH","features":[419]},{"name":"MM_VIA_WAVEIN","features":[419]},{"name":"MM_VIA_WAVEOUT","features":[419]},{"name":"MM_VIA_WDM_MIXER","features":[419]},{"name":"MM_VIA_WDM_MPU401_MIDIIN","features":[419]},{"name":"MM_VIA_WDM_MPU401_MIDIOUT","features":[419]},{"name":"MM_VIA_WDM_WAVEIN","features":[419]},{"name":"MM_VIA_WDM_WAVEOUT","features":[419]},{"name":"MM_VIDEOLOGIC","features":[419]},{"name":"MM_VIDEOLOGIC_MSWAVEIN","features":[419]},{"name":"MM_VIDEOLOGIC_MSWAVEOUT","features":[419]},{"name":"MM_VIENNASYS","features":[419]},{"name":"MM_VIENNASYS_TSP_WAVE_DRIVER","features":[419]},{"name":"MM_VIONA","features":[419]},{"name":"MM_VIONAQVINPCI_WAVEOUT","features":[419]},{"name":"MM_VIONA_BUSTER_MIXER","features":[419]},{"name":"MM_VIONA_CINEMASTER_MIXER","features":[419]},{"name":"MM_VIONA_CONCERTO_MIXER","features":[419]},{"name":"MM_VIONA_QVINPCI_MIXER","features":[419]},{"name":"MM_VIONA_QVINPCI_WAVEIN","features":[419]},{"name":"MM_VIRTUALMUSIC","features":[419]},{"name":"MM_VITEC","features":[419]},{"name":"MM_VITEC_VMAKER","features":[419]},{"name":"MM_VITEC_VMPRO","features":[419]},{"name":"MM_VIVO","features":[419]},{"name":"MM_VIVO_AUDIO_CODEC","features":[419]},{"name":"MM_VKC_MPU401_MIDIIN","features":[419]},{"name":"MM_VKC_MPU401_MIDIOUT","features":[419]},{"name":"MM_VKC_SERIAL_MIDIIN","features":[419]},{"name":"MM_VKC_SERIAL_MIDIOUT","features":[419]},{"name":"MM_VOCALTEC","features":[419]},{"name":"MM_VOCALTEC_WAVEIN","features":[419]},{"name":"MM_VOCALTEC_WAVEOUT","features":[419]},{"name":"MM_VOICEINFO","features":[419]},{"name":"MM_VOICEMIXER","features":[419]},{"name":"MM_VOXWARE","features":[419]},{"name":"MM_VOXWARE_CODEC","features":[419]},{"name":"MM_VOYETRA","features":[419]},{"name":"MM_VQST","features":[419]},{"name":"MM_VQST_VQC1","features":[419]},{"name":"MM_VQST_VQC2","features":[419]},{"name":"MM_VTG","features":[419]},{"name":"MM_WANGLABS","features":[419]},{"name":"MM_WANGLABS_WAVEIN1","features":[419]},{"name":"MM_WANGLABS_WAVEOUT1","features":[419]},{"name":"MM_WEITEK","features":[419]},{"name":"MM_WILDCAT","features":[419]},{"name":"MM_WILDCAT_AUTOSCOREMIDIIN","features":[419]},{"name":"MM_WILLOPOND_SNDCOMM_WAVEIN","features":[419]},{"name":"MM_WILLOWPOND","features":[419]},{"name":"MM_WILLOWPOND_FMSYNTH_STEREO","features":[419]},{"name":"MM_WILLOWPOND_GENERIC_AUX","features":[419]},{"name":"MM_WILLOWPOND_GENERIC_MIXER","features":[419]},{"name":"MM_WILLOWPOND_GENERIC_WAVEIN","features":[419]},{"name":"MM_WILLOWPOND_GENERIC_WAVEOUT","features":[419]},{"name":"MM_WILLOWPOND_MPU401","features":[419]},{"name":"MM_WILLOWPOND_PH_AUX","features":[419]},{"name":"MM_WILLOWPOND_PH_MIXER","features":[419]},{"name":"MM_WILLOWPOND_PH_WAVEIN","features":[419]},{"name":"MM_WILLOWPOND_PH_WAVEOUT","features":[419]},{"name":"MM_WILLOWPOND_SNDCOMM_AUX","features":[419]},{"name":"MM_WILLOWPOND_SNDCOMM_MIXER","features":[419]},{"name":"MM_WILLOWPOND_SNDCOMM_WAVEOUT","features":[419]},{"name":"MM_WILLOWPOND_SNDPORT_AUX","features":[419]},{"name":"MM_WILLOWPOND_SNDPORT_MIXER","features":[419]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEIN","features":[419]},{"name":"MM_WILLOWPOND_SNDPORT_WAVEOUT","features":[419]},{"name":"MM_WINBOND","features":[419]},{"name":"MM_WINNOV","features":[419]},{"name":"MM_WINNOV_CAVIAR_CHAMPAGNE","features":[419]},{"name":"MM_WINNOV_CAVIAR_VIDC","features":[419]},{"name":"MM_WINNOV_CAVIAR_WAVEIN","features":[419]},{"name":"MM_WINNOV_CAVIAR_WAVEOUT","features":[419]},{"name":"MM_WINNOV_CAVIAR_YUV8","features":[419]},{"name":"MM_WORKBIT","features":[419]},{"name":"MM_WORKBIT_AUX","features":[419]},{"name":"MM_WORKBIT_FMSYNTH","features":[419]},{"name":"MM_WORKBIT_JOYSTICK","features":[419]},{"name":"MM_WORKBIT_MIDIIN","features":[419]},{"name":"MM_WORKBIT_MIDIOUT","features":[419]},{"name":"MM_WORKBIT_MIXER","features":[419]},{"name":"MM_WORKBIT_WAVEIN","features":[419]},{"name":"MM_WORKBIT_WAVEOUT","features":[419]},{"name":"MM_WSS_SB16_AUX_CD","features":[419]},{"name":"MM_WSS_SB16_AUX_LINE","features":[419]},{"name":"MM_WSS_SB16_MIDIIN","features":[419]},{"name":"MM_WSS_SB16_MIDIOUT","features":[419]},{"name":"MM_WSS_SB16_MIXER","features":[419]},{"name":"MM_WSS_SB16_SYNTH","features":[419]},{"name":"MM_WSS_SB16_WAVEIN","features":[419]},{"name":"MM_WSS_SB16_WAVEOUT","features":[419]},{"name":"MM_WSS_SBPRO_AUX_CD","features":[419]},{"name":"MM_WSS_SBPRO_AUX_LINE","features":[419]},{"name":"MM_WSS_SBPRO_MIDIIN","features":[419]},{"name":"MM_WSS_SBPRO_MIDIOUT","features":[419]},{"name":"MM_WSS_SBPRO_MIXER","features":[419]},{"name":"MM_WSS_SBPRO_SYNTH","features":[419]},{"name":"MM_WSS_SBPRO_WAVEIN","features":[419]},{"name":"MM_WSS_SBPRO_WAVEOUT","features":[419]},{"name":"MM_XEBEC","features":[419]},{"name":"MM_XIRLINK","features":[419]},{"name":"MM_XIRLINK_VISIONLINK","features":[419]},{"name":"MM_XYZ","features":[419]},{"name":"MM_YAMAHA","features":[419]},{"name":"MM_YAMAHA_ACXG_AUX","features":[419]},{"name":"MM_YAMAHA_ACXG_MIDIOUT","features":[419]},{"name":"MM_YAMAHA_ACXG_MIXER","features":[419]},{"name":"MM_YAMAHA_ACXG_WAVEIN","features":[419]},{"name":"MM_YAMAHA_ACXG_WAVEOUT","features":[419]},{"name":"MM_YAMAHA_GSS_AUX","features":[419]},{"name":"MM_YAMAHA_GSS_MIDIIN","features":[419]},{"name":"MM_YAMAHA_GSS_MIDIOUT","features":[419]},{"name":"MM_YAMAHA_GSS_SYNTH","features":[419]},{"name":"MM_YAMAHA_GSS_WAVEIN","features":[419]},{"name":"MM_YAMAHA_GSS_WAVEOUT","features":[419]},{"name":"MM_YAMAHA_OPL3SA_FMSYNTH","features":[419]},{"name":"MM_YAMAHA_OPL3SA_JOYSTICK","features":[419]},{"name":"MM_YAMAHA_OPL3SA_MIDIIN","features":[419]},{"name":"MM_YAMAHA_OPL3SA_MIDIOUT","features":[419]},{"name":"MM_YAMAHA_OPL3SA_MIXER","features":[419]},{"name":"MM_YAMAHA_OPL3SA_WAVEIN","features":[419]},{"name":"MM_YAMAHA_OPL3SA_WAVEOUT","features":[419]},{"name":"MM_YAMAHA_OPL3SA_YSYNTH","features":[419]},{"name":"MM_YAMAHA_SERIAL_MIDIIN","features":[419]},{"name":"MM_YAMAHA_SERIAL_MIDIOUT","features":[419]},{"name":"MM_YAMAHA_SXG_MIDIOUT","features":[419]},{"name":"MM_YAMAHA_SXG_MIXER","features":[419]},{"name":"MM_YAMAHA_SXG_WAVEOUT","features":[419]},{"name":"MM_YAMAHA_YMF724LEG_FMSYNTH","features":[419]},{"name":"MM_YAMAHA_YMF724LEG_MIDIIN","features":[419]},{"name":"MM_YAMAHA_YMF724LEG_MIDIOUT","features":[419]},{"name":"MM_YAMAHA_YMF724LEG_MIXER","features":[419]},{"name":"MM_YAMAHA_YMF724_AUX","features":[419]},{"name":"MM_YAMAHA_YMF724_MIDIOUT","features":[419]},{"name":"MM_YAMAHA_YMF724_MIXER","features":[419]},{"name":"MM_YAMAHA_YMF724_WAVEIN","features":[419]},{"name":"MM_YAMAHA_YMF724_WAVEOUT","features":[419]},{"name":"MM_YOUCOM","features":[419]},{"name":"MM_ZEFIRO","features":[419]},{"name":"MM_ZEFIRO_ZA2","features":[419]},{"name":"MM_ZYXEL","features":[419]},{"name":"MM_ZYXEL_ACM_ADPCM","features":[419]},{"name":"MODM_CACHEDRUMPATCHES","features":[419]},{"name":"MODM_CACHEPATCHES","features":[419]},{"name":"MODM_CLOSE","features":[419]},{"name":"MODM_DATA","features":[419]},{"name":"MODM_GETDEVCAPS","features":[419]},{"name":"MODM_GETNUMDEVS","features":[419]},{"name":"MODM_GETPOS","features":[419]},{"name":"MODM_GETVOLUME","features":[419]},{"name":"MODM_INIT","features":[419]},{"name":"MODM_INIT_EX","features":[419]},{"name":"MODM_LONGDATA","features":[419]},{"name":"MODM_MAPPER","features":[419]},{"name":"MODM_OPEN","features":[419]},{"name":"MODM_PAUSE","features":[419]},{"name":"MODM_PREFERRED","features":[419]},{"name":"MODM_PREPARE","features":[419]},{"name":"MODM_PROPERTIES","features":[419]},{"name":"MODM_RECONFIGURE","features":[419]},{"name":"MODM_RESET","features":[419]},{"name":"MODM_RESTART","features":[419]},{"name":"MODM_SETVOLUME","features":[419]},{"name":"MODM_STOP","features":[419]},{"name":"MODM_STRMDATA","features":[419]},{"name":"MODM_UNPREPARE","features":[419]},{"name":"MODM_USER","features":[419]},{"name":"MPEGLAYER3_ID_CONSTANTFRAMESIZE","features":[419]},{"name":"MPEGLAYER3_ID_MPEG","features":[419]},{"name":"MPEGLAYER3_ID_UNKNOWN","features":[419]},{"name":"MPEGLAYER3_WFX_EXTRA_BYTES","features":[419]},{"name":"MSAUDIO1WAVEFORMAT","features":[420,419]},{"name":"MSAUDIO1_BITS_PER_SAMPLE","features":[419]},{"name":"MSAUDIO1_MAX_CHANNELS","features":[419]},{"name":"MXDM_BASE","features":[419]},{"name":"MXDM_CLOSE","features":[419]},{"name":"MXDM_GETCONTROLDETAILS","features":[419]},{"name":"MXDM_GETDEVCAPS","features":[419]},{"name":"MXDM_GETLINECONTROLS","features":[419]},{"name":"MXDM_GETLINEINFO","features":[419]},{"name":"MXDM_GETNUMDEVS","features":[419]},{"name":"MXDM_INIT","features":[419]},{"name":"MXDM_INIT_EX","features":[419]},{"name":"MXDM_OPEN","features":[419]},{"name":"MXDM_SETCONTROLDETAILS","features":[419]},{"name":"MXDM_USER","features":[419]},{"name":"NMS_VBXADPCMWAVEFORMAT","features":[420,419]},{"name":"NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS","features":[419]},{"name":"NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE","features":[419]},{"name":"NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH","features":[419]},{"name":"NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID","features":[419]},{"name":"NS_E_8BIT_WAVE_UNSUPPORTED","features":[419]},{"name":"NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED","features":[419]},{"name":"NS_E_ACTIVE_SG_DEVICE_DISCONNECTED","features":[419]},{"name":"NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES","features":[419]},{"name":"NS_E_ALLOCATE_FILE_FAIL","features":[419]},{"name":"NS_E_ALL_PROTOCOLS_DISABLED","features":[419]},{"name":"NS_E_ALREADY_CONNECTED","features":[419]},{"name":"NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[419]},{"name":"NS_E_ARCHIVE_ABORT_DUE_TO_BCAST","features":[419]},{"name":"NS_E_ARCHIVE_FILENAME_NOTSET","features":[419]},{"name":"NS_E_ARCHIVE_GAP_DETECTED","features":[419]},{"name":"NS_E_ARCHIVE_REACH_QUOTA","features":[419]},{"name":"NS_E_ARCHIVE_SAME_AS_INPUT","features":[419]},{"name":"NS_E_ASSERT","features":[419]},{"name":"NS_E_ASX_INVALIDFORMAT","features":[419]},{"name":"NS_E_ASX_INVALIDVERSION","features":[419]},{"name":"NS_E_ASX_INVALID_REPEAT_BLOCK","features":[419]},{"name":"NS_E_ASX_NOTHING_TO_WRITE","features":[419]},{"name":"NS_E_ATTRIBUTE_NOT_ALLOWED","features":[419]},{"name":"NS_E_ATTRIBUTE_READ_ONLY","features":[419]},{"name":"NS_E_AUDIENCE_CONTENTTYPE_MISMATCH","features":[419]},{"name":"NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH","features":[419]},{"name":"NS_E_AUDIODEVICE_BADFORMAT","features":[419]},{"name":"NS_E_AUDIODEVICE_BUSY","features":[419]},{"name":"NS_E_AUDIODEVICE_UNEXPECTED","features":[419]},{"name":"NS_E_AUDIO_BITRATE_STEPDOWN","features":[419]},{"name":"NS_E_AUDIO_CODEC_ERROR","features":[419]},{"name":"NS_E_AUDIO_CODEC_NOT_INSTALLED","features":[419]},{"name":"NS_E_AUTHORIZATION_FILE_NOT_FOUND","features":[419]},{"name":"NS_E_BACKUP_RESTORE_BAD_DATA","features":[419]},{"name":"NS_E_BACKUP_RESTORE_BAD_REQUEST_ID","features":[419]},{"name":"NS_E_BACKUP_RESTORE_FAILURE","features":[419]},{"name":"NS_E_BACKUP_RESTORE_TOO_MANY_RESETS","features":[419]},{"name":"NS_E_BAD_ADAPTER_ADDRESS","features":[419]},{"name":"NS_E_BAD_ADAPTER_NAME","features":[419]},{"name":"NS_E_BAD_BLOCK0_VERSION","features":[419]},{"name":"NS_E_BAD_CONTENTEDL","features":[419]},{"name":"NS_E_BAD_CONTROL_DATA","features":[419]},{"name":"NS_E_BAD_CUB_UID","features":[419]},{"name":"NS_E_BAD_DELIVERY_MODE","features":[419]},{"name":"NS_E_BAD_DISK_UID","features":[419]},{"name":"NS_E_BAD_FSMAJOR_VERSION","features":[419]},{"name":"NS_E_BAD_MARKIN","features":[419]},{"name":"NS_E_BAD_MARKOUT","features":[419]},{"name":"NS_E_BAD_MULTICAST_ADDRESS","features":[419]},{"name":"NS_E_BAD_REQUEST","features":[419]},{"name":"NS_E_BAD_STAMPNUMBER","features":[419]},{"name":"NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE","features":[419]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCENDED","features":[419]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCFAILED","features":[419]},{"name":"NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT","features":[419]},{"name":"NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB","features":[419]},{"name":"NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB","features":[419]},{"name":"NS_E_BKGDOWNLOAD_FAILEDINITIALIZE","features":[419]},{"name":"NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE","features":[419]},{"name":"NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE","features":[419]},{"name":"NS_E_BKGDOWNLOAD_INVALID_FILE_NAME","features":[419]},{"name":"NS_E_BKGDOWNLOAD_NOJOBPOINTER","features":[419]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE","features":[419]},{"name":"NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE","features":[419]},{"name":"NS_E_BKGDOWNLOAD_WMDUNPACKFAILED","features":[419]},{"name":"NS_E_BKGDOWNLOAD_WRONG_NO_FILES","features":[419]},{"name":"NS_E_BUSY","features":[419]},{"name":"NS_E_CACHE_ARCHIVE_CONFLICT","features":[419]},{"name":"NS_E_CACHE_CANNOT_BE_CACHED","features":[419]},{"name":"NS_E_CACHE_NOT_BROADCAST","features":[419]},{"name":"NS_E_CACHE_NOT_MODIFIED","features":[419]},{"name":"NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND","features":[419]},{"name":"NS_E_CACHE_ORIGIN_SERVER_TIMEOUT","features":[419]},{"name":"NS_E_CANNOTCONNECT","features":[419]},{"name":"NS_E_CANNOTCONNECTEVENTS","features":[419]},{"name":"NS_E_CANNOTDESTROYTITLE","features":[419]},{"name":"NS_E_CANNOTOFFLINEDISK","features":[419]},{"name":"NS_E_CANNOTONLINEDISK","features":[419]},{"name":"NS_E_CANNOTRENAMETITLE","features":[419]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT","features":[419]},{"name":"NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES","features":[419]},{"name":"NS_E_CANNOT_CONNECT_TO_PROXY","features":[419]},{"name":"NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP","features":[419]},{"name":"NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR","features":[419]},{"name":"NS_E_CANNOT_PAUSE_LIVEBROADCAST","features":[419]},{"name":"NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER","features":[419]},{"name":"NS_E_CANNOT_REMOVE_PLUGIN","features":[419]},{"name":"NS_E_CANNOT_REMOVE_PUBLISHING_POINT","features":[419]},{"name":"NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE","features":[419]},{"name":"NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING","features":[419]},{"name":"NS_E_CANT_READ_DIGITAL","features":[419]},{"name":"NS_E_CCLINK_DOWN","features":[419]},{"name":"NS_E_CD_COPYTO_CD","features":[419]},{"name":"NS_E_CD_DRIVER_PROBLEM","features":[419]},{"name":"NS_E_CD_EMPTY_TRACK_QUEUE","features":[419]},{"name":"NS_E_CD_ISRC_INVALID","features":[419]},{"name":"NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID","features":[419]},{"name":"NS_E_CD_NO_BUFFERS_READ","features":[419]},{"name":"NS_E_CD_NO_READER","features":[419]},{"name":"NS_E_CD_QUEUEING_DISABLED","features":[419]},{"name":"NS_E_CD_READ_ERROR","features":[419]},{"name":"NS_E_CD_READ_ERROR_NO_CORRECTION","features":[419]},{"name":"NS_E_CD_REFRESH","features":[419]},{"name":"NS_E_CD_SLOW_COPY","features":[419]},{"name":"NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS","features":[419]},{"name":"NS_E_CHANGING_PROXYBYPASS","features":[419]},{"name":"NS_E_CHANGING_PROXY_EXCEPTIONLIST","features":[419]},{"name":"NS_E_CHANGING_PROXY_NAME","features":[419]},{"name":"NS_E_CHANGING_PROXY_PORT","features":[419]},{"name":"NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND","features":[419]},{"name":"NS_E_CLOSED_ON_SUSPEND","features":[419]},{"name":"NS_E_CODEC_DMO_ERROR","features":[419]},{"name":"NS_E_CODEC_UNAVAILABLE","features":[419]},{"name":"NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[419]},{"name":"NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[419]},{"name":"NS_E_CONNECTION_FAILURE","features":[419]},{"name":"NS_E_CONNECT_TIMEOUT","features":[419]},{"name":"NS_E_CONTENT_PARTNER_STILL_INITIALIZING","features":[419]},{"name":"NS_E_CORECD_NOTAMEDIACD","features":[419]},{"name":"NS_E_CRITICAL_ERROR","features":[419]},{"name":"NS_E_CUB_FAIL","features":[419]},{"name":"NS_E_CUB_FAIL_LINK","features":[419]},{"name":"NS_E_CURLHELPER_NOTADIRECTORY","features":[419]},{"name":"NS_E_CURLHELPER_NOTAFILE","features":[419]},{"name":"NS_E_CURLHELPER_NOTRELATIVE","features":[419]},{"name":"NS_E_CURL_CANTDECODE","features":[419]},{"name":"NS_E_CURL_CANTWALK","features":[419]},{"name":"NS_E_CURL_INVALIDBUFFERSIZE","features":[419]},{"name":"NS_E_CURL_INVALIDCHAR","features":[419]},{"name":"NS_E_CURL_INVALIDHOSTNAME","features":[419]},{"name":"NS_E_CURL_INVALIDPATH","features":[419]},{"name":"NS_E_CURL_INVALIDPORT","features":[419]},{"name":"NS_E_CURL_INVALIDSCHEME","features":[419]},{"name":"NS_E_CURL_INVALIDURL","features":[419]},{"name":"NS_E_CURL_NOTSAFE","features":[419]},{"name":"NS_E_DAMAGED_FILE","features":[419]},{"name":"NS_E_DATAPATH_NO_SINK","features":[419]},{"name":"NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED","features":[419]},{"name":"NS_E_DATA_UNIT_EXTENSION_TOO_LARGE","features":[419]},{"name":"NS_E_DDRAW_GENERIC","features":[419]},{"name":"NS_E_DEVCONTROL_FAILED_SEEK","features":[419]},{"name":"NS_E_DEVICECONTROL_UNSTABLE","features":[419]},{"name":"NS_E_DEVICE_DISCONNECTED","features":[419]},{"name":"NS_E_DEVICE_IS_NOT_READY","features":[419]},{"name":"NS_E_DEVICE_NOT_READY","features":[419]},{"name":"NS_E_DEVICE_NOT_SUPPORT_FORMAT","features":[419]},{"name":"NS_E_DEVICE_NOT_WMDRM_DEVICE","features":[419]},{"name":"NS_E_DISK_FAIL","features":[419]},{"name":"NS_E_DISK_READ","features":[419]},{"name":"NS_E_DISK_WRITE","features":[419]},{"name":"NS_E_DISPLAY_MODE_CHANGE_FAILED","features":[419]},{"name":"NS_E_DRMPROFILE_NOTFOUND","features":[419]},{"name":"NS_E_DRM_ACQUIRING_LICENSE","features":[419]},{"name":"NS_E_DRM_ACTION_NOT_QUERIED","features":[419]},{"name":"NS_E_DRM_ALREADY_INDIVIDUALIZED","features":[419]},{"name":"NS_E_DRM_APPCERT_REVOKED","features":[419]},{"name":"NS_E_DRM_ATTRIBUTE_TOO_LONG","features":[419]},{"name":"NS_E_DRM_BACKUPRESTORE_BUSY","features":[419]},{"name":"NS_E_DRM_BACKUP_CORRUPT","features":[419]},{"name":"NS_E_DRM_BACKUP_EXISTS","features":[419]},{"name":"NS_E_DRM_BAD_REQUEST","features":[419]},{"name":"NS_E_DRM_BB_UNABLE_TO_INITIALIZE","features":[419]},{"name":"NS_E_DRM_BUFFER_TOO_SMALL","features":[419]},{"name":"NS_E_DRM_BUSY","features":[419]},{"name":"NS_E_DRM_CACHED_CONTENT_ERROR","features":[419]},{"name":"NS_E_DRM_CERTIFICATE_REVOKED","features":[419]},{"name":"NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE","features":[419]},{"name":"NS_E_DRM_CHAIN_TOO_LONG","features":[419]},{"name":"NS_E_DRM_CHECKPOINT_CORRUPT","features":[419]},{"name":"NS_E_DRM_CHECKPOINT_FAILED","features":[419]},{"name":"NS_E_DRM_CHECKPOINT_MISMATCH","features":[419]},{"name":"NS_E_DRM_CLIENT_CODE_EXPIRED","features":[419]},{"name":"NS_E_DRM_DATASTORE_CORRUPT","features":[419]},{"name":"NS_E_DRM_DEBUGGING_NOT_ALLOWED","features":[419]},{"name":"NS_E_DRM_DECRYPT_ERROR","features":[419]},{"name":"NS_E_DRM_DEVICE_ACTIVATION_CANCELED","features":[419]},{"name":"NS_E_DRM_DEVICE_ALREADY_REGISTERED","features":[419]},{"name":"NS_E_DRM_DEVICE_LIMIT_REACHED","features":[419]},{"name":"NS_E_DRM_DEVICE_NOT_OPEN","features":[419]},{"name":"NS_E_DRM_DEVICE_NOT_REGISTERED","features":[419]},{"name":"NS_E_DRM_DRIVER_AUTH_FAILURE","features":[419]},{"name":"NS_E_DRM_DRIVER_DIGIOUT_FAILURE","features":[419]},{"name":"NS_E_DRM_DRMV2CLT_REVOKED","features":[419]},{"name":"NS_E_DRM_ENCRYPT_ERROR","features":[419]},{"name":"NS_E_DRM_ENUM_LICENSE_FAILED","features":[419]},{"name":"NS_E_DRM_ERROR_BAD_NET_RESP","features":[419]},{"name":"NS_E_DRM_EXPIRED_LICENSEBLOB","features":[419]},{"name":"NS_E_DRM_GET_CONTENTSTRING_ERROR","features":[419]},{"name":"NS_E_DRM_GET_LICENSESTRING_ERROR","features":[419]},{"name":"NS_E_DRM_GET_LICENSE_ERROR","features":[419]},{"name":"NS_E_DRM_HARDWAREID_MISMATCH","features":[419]},{"name":"NS_E_DRM_HARDWARE_INCONSISTENT","features":[419]},{"name":"NS_E_DRM_INCLUSION_LIST_REQUIRED","features":[419]},{"name":"NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE","features":[419]},{"name":"NS_E_DRM_INDIVIDUALIZE_ERROR","features":[419]},{"name":"NS_E_DRM_INDIVIDUALIZING","features":[419]},{"name":"NS_E_DRM_INDIV_FRAUD","features":[419]},{"name":"NS_E_DRM_INDIV_NO_CABS","features":[419]},{"name":"NS_E_DRM_INDIV_SERVICE_UNAVAILABLE","features":[419]},{"name":"NS_E_DRM_INVALID_APPCERT","features":[419]},{"name":"NS_E_DRM_INVALID_APPDATA","features":[419]},{"name":"NS_E_DRM_INVALID_APPDATA_VERSION","features":[419]},{"name":"NS_E_DRM_INVALID_APPLICATION","features":[419]},{"name":"NS_E_DRM_INVALID_CERTIFICATE","features":[419]},{"name":"NS_E_DRM_INVALID_CONTENT","features":[419]},{"name":"NS_E_DRM_INVALID_CRL","features":[419]},{"name":"NS_E_DRM_INVALID_DATA","features":[419]},{"name":"NS_E_DRM_INVALID_KID","features":[419]},{"name":"NS_E_DRM_INVALID_LICENSE","features":[419]},{"name":"NS_E_DRM_INVALID_LICENSEBLOB","features":[419]},{"name":"NS_E_DRM_INVALID_LICENSE_ACQUIRED","features":[419]},{"name":"NS_E_DRM_INVALID_LICENSE_REQUEST","features":[419]},{"name":"NS_E_DRM_INVALID_MACHINE","features":[419]},{"name":"NS_E_DRM_INVALID_MIGRATION_IMAGE","features":[419]},{"name":"NS_E_DRM_INVALID_PROPERTY","features":[419]},{"name":"NS_E_DRM_INVALID_PROXIMITY_RESPONSE","features":[419]},{"name":"NS_E_DRM_INVALID_SECURESTORE_PASSWORD","features":[419]},{"name":"NS_E_DRM_INVALID_SESSION","features":[419]},{"name":"NS_E_DRM_KEY_ERROR","features":[419]},{"name":"NS_E_DRM_LICENSE_APPSECLOW","features":[419]},{"name":"NS_E_DRM_LICENSE_APP_NOTALLOWED","features":[419]},{"name":"NS_E_DRM_LICENSE_CERT_EXPIRED","features":[419]},{"name":"NS_E_DRM_LICENSE_CLOSE_ERROR","features":[419]},{"name":"NS_E_DRM_LICENSE_CONTENT_REVOKED","features":[419]},{"name":"NS_E_DRM_LICENSE_DELETION_ERROR","features":[419]},{"name":"NS_E_DRM_LICENSE_EXPIRED","features":[419]},{"name":"NS_E_DRM_LICENSE_INITIALIZATION_ERROR","features":[419]},{"name":"NS_E_DRM_LICENSE_INVALID_XML","features":[419]},{"name":"NS_E_DRM_LICENSE_NOSAP","features":[419]},{"name":"NS_E_DRM_LICENSE_NOSVP","features":[419]},{"name":"NS_E_DRM_LICENSE_NOTACQUIRED","features":[419]},{"name":"NS_E_DRM_LICENSE_NOTENABLED","features":[419]},{"name":"NS_E_DRM_LICENSE_NOTRUSTEDCODEC","features":[419]},{"name":"NS_E_DRM_LICENSE_NOWDM","features":[419]},{"name":"NS_E_DRM_LICENSE_OPEN_ERROR","features":[419]},{"name":"NS_E_DRM_LICENSE_SECLOW","features":[419]},{"name":"NS_E_DRM_LICENSE_SERVER_INFO_MISSING","features":[419]},{"name":"NS_E_DRM_LICENSE_STORE_ERROR","features":[419]},{"name":"NS_E_DRM_LICENSE_STORE_SAVE_ERROR","features":[419]},{"name":"NS_E_DRM_LICENSE_UNAVAILABLE","features":[419]},{"name":"NS_E_DRM_LICENSE_UNUSABLE","features":[419]},{"name":"NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET","features":[419]},{"name":"NS_E_DRM_MALFORMED_CONTENT_HEADER","features":[419]},{"name":"NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE","features":[419]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA","features":[419]},{"name":"NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD","features":[419]},{"name":"NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS","features":[419]},{"name":"NS_E_DRM_MIGRATION_NOT_SUPPORTED","features":[419]},{"name":"NS_E_DRM_MIGRATION_OBJECT_IN_USE","features":[419]},{"name":"NS_E_DRM_MIGRATION_OPERATION_CANCELLED","features":[419]},{"name":"NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE","features":[419]},{"name":"NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED","features":[419]},{"name":"NS_E_DRM_MONITOR_ERROR","features":[419]},{"name":"NS_E_DRM_MUST_APPROVE","features":[419]},{"name":"NS_E_DRM_MUST_REGISTER","features":[419]},{"name":"NS_E_DRM_MUST_REVALIDATE","features":[419]},{"name":"NS_E_DRM_NEEDS_INDIVIDUALIZATION","features":[419]},{"name":"NS_E_DRM_NEEDS_UPGRADE_TEMPFILE","features":[419]},{"name":"NS_E_DRM_NEED_UPGRADE_MSSAP","features":[419]},{"name":"NS_E_DRM_NEED_UPGRADE_PD","features":[419]},{"name":"NS_E_DRM_NOT_CONFIGURED","features":[419]},{"name":"NS_E_DRM_NO_RIGHTS","features":[419]},{"name":"NS_E_DRM_NO_UPLINK_LICENSE","features":[419]},{"name":"NS_E_DRM_OPERATION_CANCELED","features":[419]},{"name":"NS_E_DRM_PARAMETERS_MISMATCHED","features":[419]},{"name":"NS_E_DRM_PASSWORD_TOO_LONG","features":[419]},{"name":"NS_E_DRM_PD_TOO_MANY_DEVICES","features":[419]},{"name":"NS_E_DRM_POLICY_DISABLE_ONLINE","features":[419]},{"name":"NS_E_DRM_POLICY_METERING_DISABLED","features":[419]},{"name":"NS_E_DRM_PROFILE_NOT_SET","features":[419]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE","features":[419]},{"name":"NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION","features":[419]},{"name":"NS_E_DRM_QUERY_ERROR","features":[419]},{"name":"NS_E_DRM_REOPEN_CONTENT","features":[419]},{"name":"NS_E_DRM_REPORT_ERROR","features":[419]},{"name":"NS_E_DRM_RESTORE_FRAUD","features":[419]},{"name":"NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE","features":[419]},{"name":"NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED","features":[419]},{"name":"NS_E_DRM_RIV_TOO_SMALL","features":[419]},{"name":"NS_E_DRM_SDK_VERSIONMISMATCH","features":[419]},{"name":"NS_E_DRM_SDMI_NOMORECOPIES","features":[419]},{"name":"NS_E_DRM_SDMI_TRIGGER","features":[419]},{"name":"NS_E_DRM_SECURE_STORE_ERROR","features":[419]},{"name":"NS_E_DRM_SECURE_STORE_NOT_FOUND","features":[419]},{"name":"NS_E_DRM_SECURE_STORE_UNLOCK_ERROR","features":[419]},{"name":"NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID","features":[419]},{"name":"NS_E_DRM_SIGNATURE_FAILURE","features":[419]},{"name":"NS_E_DRM_SOURCEID_NOT_SUPPORTED","features":[419]},{"name":"NS_E_DRM_STORE_NEEDINDI","features":[419]},{"name":"NS_E_DRM_STORE_NOTALLOWED","features":[419]},{"name":"NS_E_DRM_STORE_NOTALLSTORED","features":[419]},{"name":"NS_E_DRM_STUBLIB_REQUIRED","features":[419]},{"name":"NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION","features":[419]},{"name":"NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION","features":[419]},{"name":"NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_INITIALIZE","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_LICENSE","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_OPEN_PORT","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_SET_PARAMETER","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK","features":[419]},{"name":"NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY","features":[419]},{"name":"NS_E_DRM_UNSUPPORTED_ACTION","features":[419]},{"name":"NS_E_DRM_UNSUPPORTED_ALGORITHM","features":[419]},{"name":"NS_E_DRM_UNSUPPORTED_PROPERTY","features":[419]},{"name":"NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION","features":[419]},{"name":"NS_E_DUPLICATE_ADDRESS","features":[419]},{"name":"NS_E_DUPLICATE_DRMPROFILE","features":[419]},{"name":"NS_E_DUPLICATE_NAME","features":[419]},{"name":"NS_E_DUPLICATE_PACKET","features":[419]},{"name":"NS_E_DVD_AUTHORING_PROBLEM","features":[419]},{"name":"NS_E_DVD_CANNOT_COPY_PROTECTED","features":[419]},{"name":"NS_E_DVD_CANNOT_JUMP","features":[419]},{"name":"NS_E_DVD_COMPATIBLE_VIDEO_CARD","features":[419]},{"name":"NS_E_DVD_COPY_PROTECT","features":[419]},{"name":"NS_E_DVD_DEVICE_CONTENTION","features":[419]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED","features":[419]},{"name":"NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS","features":[419]},{"name":"NS_E_DVD_DISC_DECODER_REGION","features":[419]},{"name":"NS_E_DVD_GRAPH_BUILDING","features":[419]},{"name":"NS_E_DVD_INVALID_DISC_REGION","features":[419]},{"name":"NS_E_DVD_INVALID_TITLE_CHAPTER","features":[419]},{"name":"NS_E_DVD_MACROVISION","features":[419]},{"name":"NS_E_DVD_NO_AUDIO_STREAM","features":[419]},{"name":"NS_E_DVD_NO_DECODER","features":[419]},{"name":"NS_E_DVD_NO_SUBPICTURE_STREAM","features":[419]},{"name":"NS_E_DVD_NO_VIDEO_MEMORY","features":[419]},{"name":"NS_E_DVD_NO_VIDEO_STREAM","features":[419]},{"name":"NS_E_DVD_PARENTAL","features":[419]},{"name":"NS_E_DVD_REQUIRED_PROPERTY_NOT_SET","features":[419]},{"name":"NS_E_DVD_SYSTEM_DECODER_REGION","features":[419]},{"name":"NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS","features":[419]},{"name":"NS_E_EMPTY_PLAYLIST","features":[419]},{"name":"NS_E_EMPTY_PROGRAM_NAME","features":[419]},{"name":"NS_E_ENACTPLAN_GIVEUP","features":[419]},{"name":"NS_E_END_OF_PLAYLIST","features":[419]},{"name":"NS_E_END_OF_TAPE","features":[419]},{"name":"NS_E_ERROR_FROM_PROXY","features":[419]},{"name":"NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT","features":[419]},{"name":"NS_E_EXPECT_MONO_WAV_INPUT","features":[419]},{"name":"NS_E_FAILED_DOWNLOAD_ABORT_BURN","features":[419]},{"name":"NS_E_FAIL_LAUNCH_ROXIO_PLUGIN","features":[419]},{"name":"NS_E_FEATURE_DISABLED_BY_GROUP_POLICY","features":[419]},{"name":"NS_E_FEATURE_DISABLED_IN_SKU","features":[419]},{"name":"NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER","features":[419]},{"name":"NS_E_FILE_ALLOCATION_FAILED","features":[419]},{"name":"NS_E_FILE_BANDWIDTH_LIMIT","features":[419]},{"name":"NS_E_FILE_EXISTS","features":[419]},{"name":"NS_E_FILE_FAILED_CHECKS","features":[419]},{"name":"NS_E_FILE_INIT_FAILED","features":[419]},{"name":"NS_E_FILE_NOT_FOUND","features":[419]},{"name":"NS_E_FILE_OPEN_FAILED","features":[419]},{"name":"NS_E_FILE_PLAY_FAILED","features":[419]},{"name":"NS_E_FILE_READ","features":[419]},{"name":"NS_E_FILE_WRITE","features":[419]},{"name":"NS_E_FIREWALL","features":[419]},{"name":"NS_E_FLASH_PLAYBACK_NOT_ALLOWED","features":[419]},{"name":"NS_E_GLITCH_MODE","features":[419]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGE","features":[419]},{"name":"NS_E_GRAPH_NOAUDIOLANGUAGESELECTED","features":[419]},{"name":"NS_E_HDS_KEY_MISMATCH","features":[419]},{"name":"NS_E_HEADER_MISMATCH","features":[419]},{"name":"NS_E_HTTP_DISABLED","features":[419]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE","features":[419]},{"name":"NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED","features":[419]},{"name":"NS_E_ICMQUERYFORMAT","features":[419]},{"name":"NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[419]},{"name":"NS_E_IMAGE_DOWNLOAD_FAILED","features":[419]},{"name":"NS_E_IMAPI_LOSSOFSTREAMING","features":[419]},{"name":"NS_E_IMAPI_MEDIUM_INVALIDTYPE","features":[419]},{"name":"NS_E_INCOMPATIBLE_FORMAT","features":[419]},{"name":"NS_E_INCOMPATIBLE_PUSH_SERVER","features":[419]},{"name":"NS_E_INCOMPATIBLE_SERVER","features":[419]},{"name":"NS_E_INCOMPATIBLE_VERSION","features":[419]},{"name":"NS_E_INCOMPLETE_PLAYLIST","features":[419]},{"name":"NS_E_INCORRECTCLIPSETTINGS","features":[419]},{"name":"NS_E_INDUCED","features":[419]},{"name":"NS_E_INPUTSOURCE_PROBLEM","features":[419]},{"name":"NS_E_INPUT_DOESNOT_SUPPORT_SMPTE","features":[419]},{"name":"NS_E_INPUT_WAVFORMAT_MISMATCH","features":[419]},{"name":"NS_E_INSUFFICIENT_BANDWIDTH","features":[419]},{"name":"NS_E_INSUFFICIENT_DATA","features":[419]},{"name":"NS_E_INTERFACE_NOT_REGISTERED_IN_GIT","features":[419]},{"name":"NS_E_INTERLACEMODE_MISMATCH","features":[419]},{"name":"NS_E_INTERLACE_REQUIRE_SAMESIZE","features":[419]},{"name":"NS_E_INTERNAL","features":[419]},{"name":"NS_E_INTERNAL_SERVER_ERROR","features":[419]},{"name":"NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING","features":[419]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING","features":[419]},{"name":"NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED","features":[419]},{"name":"NS_E_INVALIDINPUTFPS","features":[419]},{"name":"NS_E_INVALIDPACKETSIZE","features":[419]},{"name":"NS_E_INVALIDPROFILE","features":[419]},{"name":"NS_E_INVALID_ARCHIVE","features":[419]},{"name":"NS_E_INVALID_AUDIO_BUFFERMAX","features":[419]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE","features":[419]},{"name":"NS_E_INVALID_AUDIO_PEAKRATE_2","features":[419]},{"name":"NS_E_INVALID_BLACKHOLE_ADDRESS","features":[419]},{"name":"NS_E_INVALID_CHANNEL","features":[419]},{"name":"NS_E_INVALID_CLIENT","features":[419]},{"name":"NS_E_INVALID_DATA","features":[419]},{"name":"NS_E_INVALID_DEVICE","features":[419]},{"name":"NS_E_INVALID_DRMV2CLT_STUBLIB","features":[419]},{"name":"NS_E_INVALID_EDL","features":[419]},{"name":"NS_E_INVALID_FILE_BITRATE","features":[419]},{"name":"NS_E_INVALID_FOLDDOWN_COEFFICIENTS","features":[419]},{"name":"NS_E_INVALID_INDEX","features":[419]},{"name":"NS_E_INVALID_INDEX2","features":[419]},{"name":"NS_E_INVALID_INPUT_AUDIENCE_INDEX","features":[419]},{"name":"NS_E_INVALID_INPUT_FORMAT","features":[419]},{"name":"NS_E_INVALID_INPUT_LANGUAGE","features":[419]},{"name":"NS_E_INVALID_INPUT_STREAM","features":[419]},{"name":"NS_E_INVALID_INTERLACEMODE","features":[419]},{"name":"NS_E_INVALID_INTERLACE_COMPAT","features":[419]},{"name":"NS_E_INVALID_KEY","features":[419]},{"name":"NS_E_INVALID_LOG_URL","features":[419]},{"name":"NS_E_INVALID_MTU_RANGE","features":[419]},{"name":"NS_E_INVALID_NAME","features":[419]},{"name":"NS_E_INVALID_NONSQUAREPIXEL_COMPAT","features":[419]},{"name":"NS_E_INVALID_NUM_PASSES","features":[419]},{"name":"NS_E_INVALID_OPERATING_SYSTEM_VERSION","features":[419]},{"name":"NS_E_INVALID_OUTPUT_FORMAT","features":[419]},{"name":"NS_E_INVALID_PIXEL_ASPECT_RATIO","features":[419]},{"name":"NS_E_INVALID_PLAY_STATISTICS","features":[419]},{"name":"NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION","features":[419]},{"name":"NS_E_INVALID_PORT","features":[419]},{"name":"NS_E_INVALID_PROFILE_CONTENTTYPE","features":[419]},{"name":"NS_E_INVALID_PUBLISHING_POINT_NAME","features":[419]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT","features":[419]},{"name":"NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST","features":[419]},{"name":"NS_E_INVALID_PUSH_TEMPLATE","features":[419]},{"name":"NS_E_INVALID_QUERY_OPERATOR","features":[419]},{"name":"NS_E_INVALID_QUERY_PROPERTY","features":[419]},{"name":"NS_E_INVALID_REDIRECT","features":[419]},{"name":"NS_E_INVALID_REQUEST","features":[419]},{"name":"NS_E_INVALID_SAMPLING_RATE","features":[419]},{"name":"NS_E_INVALID_SCRIPT_BITRATE","features":[419]},{"name":"NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL","features":[419]},{"name":"NS_E_INVALID_STREAM","features":[419]},{"name":"NS_E_INVALID_TIMECODE","features":[419]},{"name":"NS_E_INVALID_TTL","features":[419]},{"name":"NS_E_INVALID_VBR_COMPAT","features":[419]},{"name":"NS_E_INVALID_VBR_WITH_UNCOMP","features":[419]},{"name":"NS_E_INVALID_VIDEO_BITRATE","features":[419]},{"name":"NS_E_INVALID_VIDEO_BUFFER","features":[419]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX","features":[419]},{"name":"NS_E_INVALID_VIDEO_BUFFERMAX_2","features":[419]},{"name":"NS_E_INVALID_VIDEO_CQUALITY","features":[419]},{"name":"NS_E_INVALID_VIDEO_FPS","features":[419]},{"name":"NS_E_INVALID_VIDEO_HEIGHT","features":[419]},{"name":"NS_E_INVALID_VIDEO_HEIGHT_ALIGN","features":[419]},{"name":"NS_E_INVALID_VIDEO_IQUALITY","features":[419]},{"name":"NS_E_INVALID_VIDEO_KEYFRAME","features":[419]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE","features":[419]},{"name":"NS_E_INVALID_VIDEO_PEAKRATE_2","features":[419]},{"name":"NS_E_INVALID_VIDEO_WIDTH","features":[419]},{"name":"NS_E_INVALID_VIDEO_WIDTH_ALIGN","features":[419]},{"name":"NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING","features":[419]},{"name":"NS_E_LANGUAGE_MISMATCH","features":[419]},{"name":"NS_E_LATE_OPERATION","features":[419]},{"name":"NS_E_LATE_PACKET","features":[419]},{"name":"NS_E_LICENSE_EXPIRED","features":[419]},{"name":"NS_E_LICENSE_HEADER_MISSING_URL","features":[419]},{"name":"NS_E_LICENSE_INCORRECT_RIGHTS","features":[419]},{"name":"NS_E_LICENSE_OUTOFDATE","features":[419]},{"name":"NS_E_LICENSE_REQUIRED","features":[419]},{"name":"NS_E_LOGFILEPERIOD","features":[419]},{"name":"NS_E_LOG_FILE_SIZE","features":[419]},{"name":"NS_E_LOG_NEED_TO_BE_SKIPPED","features":[419]},{"name":"NS_E_MARKIN_UNSUPPORTED","features":[419]},{"name":"NS_E_MAX_BITRATE","features":[419]},{"name":"NS_E_MAX_CLIENTS","features":[419]},{"name":"NS_E_MAX_FILERATE","features":[419]},{"name":"NS_E_MAX_FUNNELS_ALERT","features":[419]},{"name":"NS_E_MAX_PACKET_SIZE_TOO_SMALL","features":[419]},{"name":"NS_E_MEDIACD_READ_ERROR","features":[419]},{"name":"NS_E_MEDIA_LIBRARY_FAILED","features":[419]},{"name":"NS_E_MEDIA_PARSER_INVALID_FORMAT","features":[419]},{"name":"NS_E_MEMSTORAGE_BAD_DATA","features":[419]},{"name":"NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE","features":[419]},{"name":"NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE","features":[419]},{"name":"NS_E_METADATA_CANNOT_SET_LOCALE","features":[419]},{"name":"NS_E_METADATA_FORMAT_NOT_SUPPORTED","features":[419]},{"name":"NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE","features":[419]},{"name":"NS_E_METADATA_INVALID_DOCUMENT_TYPE","features":[419]},{"name":"NS_E_METADATA_LANGUAGE_NOT_SUPORTED","features":[419]},{"name":"NS_E_METADATA_NOT_AVAILABLE","features":[419]},{"name":"NS_E_METADATA_NO_EDITING_CAPABILITY","features":[419]},{"name":"NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE","features":[419]},{"name":"NS_E_MISMATCHED_MEDIACONTENT","features":[419]},{"name":"NS_E_MISSING_AUDIENCE","features":[419]},{"name":"NS_E_MISSING_CHANNEL","features":[419]},{"name":"NS_E_MISSING_SOURCE_INDEX","features":[419]},{"name":"NS_E_MIXER_INVALID_CONTROL","features":[419]},{"name":"NS_E_MIXER_INVALID_LINE","features":[419]},{"name":"NS_E_MIXER_INVALID_VALUE","features":[419]},{"name":"NS_E_MIXER_NODRIVER","features":[419]},{"name":"NS_E_MIXER_UNKNOWN_MMRESULT","features":[419]},{"name":"NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED","features":[419]},{"name":"NS_E_MMSAUTOSERVER_CANTFINDWALKER","features":[419]},{"name":"NS_E_MMS_NOT_SUPPORTED","features":[419]},{"name":"NS_E_MONITOR_GIVEUP","features":[419]},{"name":"NS_E_MP3_FORMAT_NOT_FOUND","features":[419]},{"name":"NS_E_MPDB_GENERIC","features":[419]},{"name":"NS_E_MSAUDIO_NOT_INSTALLED","features":[419]},{"name":"NS_E_MSBD_NO_LONGER_SUPPORTED","features":[419]},{"name":"NS_E_MULTICAST_DISABLED","features":[419]},{"name":"NS_E_MULTICAST_PLUGIN_NOT_ENABLED","features":[419]},{"name":"NS_E_MULTIPLE_AUDIO_CODECS","features":[419]},{"name":"NS_E_MULTIPLE_AUDIO_FORMATS","features":[419]},{"name":"NS_E_MULTIPLE_FILE_BITRATES","features":[419]},{"name":"NS_E_MULTIPLE_SCRIPT_BITRATES","features":[419]},{"name":"NS_E_MULTIPLE_VBR_AUDIENCES","features":[419]},{"name":"NS_E_MULTIPLE_VIDEO_CODECS","features":[419]},{"name":"NS_E_MULTIPLE_VIDEO_SIZES","features":[419]},{"name":"NS_E_NAMESPACE_BAD_NAME","features":[419]},{"name":"NS_E_NAMESPACE_BUFFER_TOO_SMALL","features":[419]},{"name":"NS_E_NAMESPACE_CALLBACK_NOT_FOUND","features":[419]},{"name":"NS_E_NAMESPACE_DUPLICATE_CALLBACK","features":[419]},{"name":"NS_E_NAMESPACE_DUPLICATE_NAME","features":[419]},{"name":"NS_E_NAMESPACE_EMPTY_NAME","features":[419]},{"name":"NS_E_NAMESPACE_INDEX_TOO_LARGE","features":[419]},{"name":"NS_E_NAMESPACE_NAME_TOO_LONG","features":[419]},{"name":"NS_E_NAMESPACE_NODE_CONFLICT","features":[419]},{"name":"NS_E_NAMESPACE_NODE_NOT_FOUND","features":[419]},{"name":"NS_E_NAMESPACE_TOO_MANY_CALLBACKS","features":[419]},{"name":"NS_E_NAMESPACE_WRONG_PERSIST","features":[419]},{"name":"NS_E_NAMESPACE_WRONG_SECURITY","features":[419]},{"name":"NS_E_NAMESPACE_WRONG_TYPE","features":[419]},{"name":"NS_E_NEED_CORE_REFERENCE","features":[419]},{"name":"NS_E_NEED_TO_ASK_USER","features":[419]},{"name":"NS_E_NETWORK_BUSY","features":[419]},{"name":"NS_E_NETWORK_RESOURCE_FAILURE","features":[419]},{"name":"NS_E_NETWORK_SERVICE_FAILURE","features":[419]},{"name":"NS_E_NETWORK_SINK_WRITE","features":[419]},{"name":"NS_E_NET_READ","features":[419]},{"name":"NS_E_NET_WRITE","features":[419]},{"name":"NS_E_NOCONNECTION","features":[419]},{"name":"NS_E_NOFUNNEL","features":[419]},{"name":"NS_E_NOMATCHING_ELEMENT","features":[419]},{"name":"NS_E_NOMATCHING_MEDIASOURCE","features":[419]},{"name":"NS_E_NONSQUAREPIXELMODE_MISMATCH","features":[419]},{"name":"NS_E_NOREGISTEREDWALKER","features":[419]},{"name":"NS_E_NOSOURCEGROUPS","features":[419]},{"name":"NS_E_NOSTATSAVAILABLE","features":[419]},{"name":"NS_E_NOTARCHIVING","features":[419]},{"name":"NS_E_NOTHING_TO_DO","features":[419]},{"name":"NS_E_NOTITLES","features":[419]},{"name":"NS_E_NOT_CONFIGURED","features":[419]},{"name":"NS_E_NOT_CONNECTED","features":[419]},{"name":"NS_E_NOT_CONTENT_PARTNER_TRACK","features":[419]},{"name":"NS_E_NOT_LICENSED","features":[419]},{"name":"NS_E_NOT_REBUILDING","features":[419]},{"name":"NS_E_NO_ACTIVE_SOURCEGROUP","features":[419]},{"name":"NS_E_NO_AUDIENCES","features":[419]},{"name":"NS_E_NO_AUDIODATA","features":[419]},{"name":"NS_E_NO_AUDIO_COMPAT","features":[419]},{"name":"NS_E_NO_AUDIO_TIMECOMPRESSION","features":[419]},{"name":"NS_E_NO_CD","features":[419]},{"name":"NS_E_NO_CD_BURNER","features":[419]},{"name":"NS_E_NO_CHANNELS","features":[419]},{"name":"NS_E_NO_DATAVIEW_SUPPORT","features":[419]},{"name":"NS_E_NO_DEVICE","features":[419]},{"name":"NS_E_NO_ERROR_STRING_FOUND","features":[419]},{"name":"NS_E_NO_EXISTING_PACKETIZER","features":[419]},{"name":"NS_E_NO_FORMATS","features":[419]},{"name":"NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER","features":[419]},{"name":"NS_E_NO_LOCALPLAY","features":[419]},{"name":"NS_E_NO_MBR_WITH_TIMECODE","features":[419]},{"name":"NS_E_NO_MEDIAFORMAT_IN_SOURCE","features":[419]},{"name":"NS_E_NO_MEDIA_IN_AUDIENCE","features":[419]},{"name":"NS_E_NO_MEDIA_PROTOCOL","features":[419]},{"name":"NS_E_NO_MORE_SAMPLES","features":[419]},{"name":"NS_E_NO_MULTICAST","features":[419]},{"name":"NS_E_NO_MULTIPASS_FOR_LIVEDEVICE","features":[419]},{"name":"NS_E_NO_NEW_CONNECTIONS","features":[419]},{"name":"NS_E_NO_PAL_INVERSE_TELECINE","features":[419]},{"name":"NS_E_NO_PDA","features":[419]},{"name":"NS_E_NO_PROFILE_IN_SOURCEGROUP","features":[419]},{"name":"NS_E_NO_PROFILE_NAME","features":[419]},{"name":"NS_E_NO_REALTIME_PREPROCESS","features":[419]},{"name":"NS_E_NO_REALTIME_TIMECOMPRESSION","features":[419]},{"name":"NS_E_NO_REFERENCES","features":[419]},{"name":"NS_E_NO_REPEAT_PREPROCESS","features":[419]},{"name":"NS_E_NO_SCRIPT_ENGINE","features":[419]},{"name":"NS_E_NO_SCRIPT_STREAM","features":[419]},{"name":"NS_E_NO_SERVER_CONTACT","features":[419]},{"name":"NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS","features":[419]},{"name":"NS_E_NO_SPECIFIED_DEVICE","features":[419]},{"name":"NS_E_NO_STREAM","features":[419]},{"name":"NS_E_NO_TWOPASS_TIMECOMPRESSION","features":[419]},{"name":"NS_E_NO_VALID_OUTPUT_STREAM","features":[419]},{"name":"NS_E_NO_VALID_SOURCE_PLUGIN","features":[419]},{"name":"NS_E_NUM_LANGUAGE_MISMATCH","features":[419]},{"name":"NS_E_OFFLINE_MODE","features":[419]},{"name":"NS_E_OPEN_CONTAINING_FOLDER_FAILED","features":[419]},{"name":"NS_E_OPEN_FILE_LIMIT","features":[419]},{"name":"NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED","features":[419]},{"name":"NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED","features":[419]},{"name":"NS_E_PACKETSINK_UNKNOWN_FEC_STREAM","features":[419]},{"name":"NS_E_PAGING_ERROR","features":[419]},{"name":"NS_E_PARTIALLY_REBUILT_DISK","features":[419]},{"name":"NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP","features":[419]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_INTERNET","features":[419]},{"name":"NS_E_PDA_CANNOT_SYNC_FROM_LOCATION","features":[419]},{"name":"NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST","features":[419]},{"name":"NS_E_PDA_CANNOT_TRANSCODE","features":[419]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO","features":[419]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE","features":[419]},{"name":"NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO","features":[419]},{"name":"NS_E_PDA_CEWMDM_DRM_ERROR","features":[419]},{"name":"NS_E_PDA_DELETE_FAILED","features":[419]},{"name":"NS_E_PDA_DEVICESUPPORTDISABLED","features":[419]},{"name":"NS_E_PDA_DEVICE_FULL","features":[419]},{"name":"NS_E_PDA_DEVICE_FULL_IN_SESSION","features":[419]},{"name":"NS_E_PDA_DEVICE_NOT_RESPONDING","features":[419]},{"name":"NS_E_PDA_ENCODER_NOT_RESPONDING","features":[419]},{"name":"NS_E_PDA_FAILED_TO_BURN","features":[419]},{"name":"NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE","features":[419]},{"name":"NS_E_PDA_FAILED_TO_RETRIEVE_FILE","features":[419]},{"name":"NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE","features":[419]},{"name":"NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO","features":[419]},{"name":"NS_E_PDA_FAIL_READ_WAVE_FILE","features":[419]},{"name":"NS_E_PDA_FAIL_SELECT_DEVICE","features":[419]},{"name":"NS_E_PDA_INITIALIZINGDEVICES","features":[419]},{"name":"NS_E_PDA_MANUALDEVICE","features":[419]},{"name":"NS_E_PDA_NO_LONGER_AVAILABLE","features":[419]},{"name":"NS_E_PDA_NO_TRANSCODE_OF_DRM","features":[419]},{"name":"NS_E_PDA_OBSOLETE_SP","features":[419]},{"name":"NS_E_PDA_PARTNERSHIPNOTEXIST","features":[419]},{"name":"NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG","features":[419]},{"name":"NS_E_PDA_SYNC_FAILED","features":[419]},{"name":"NS_E_PDA_SYNC_LOGIN_ERROR","features":[419]},{"name":"NS_E_PDA_SYNC_RUNNING","features":[419]},{"name":"NS_E_PDA_TITLE_COLLISION","features":[419]},{"name":"NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY","features":[419]},{"name":"NS_E_PDA_TOO_MANY_FILE_COLLISIONS","features":[419]},{"name":"NS_E_PDA_TRANSCODECACHEFULL","features":[419]},{"name":"NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND","features":[419]},{"name":"NS_E_PDA_TRANSCODE_NOT_PERMITTED","features":[419]},{"name":"NS_E_PDA_UNSPECIFIED_ERROR","features":[419]},{"name":"NS_E_PDA_UNSUPPORTED_FORMAT","features":[419]},{"name":"NS_E_PLAYLIST_CONTAINS_ERRORS","features":[419]},{"name":"NS_E_PLAYLIST_END_RECEDING","features":[419]},{"name":"NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING","features":[419]},{"name":"NS_E_PLAYLIST_ENTRY_HAS_CHANGED","features":[419]},{"name":"NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST","features":[419]},{"name":"NS_E_PLAYLIST_ENTRY_SEEK","features":[419]},{"name":"NS_E_PLAYLIST_PARSE_FAILURE","features":[419]},{"name":"NS_E_PLAYLIST_PLUGIN_NOT_FOUND","features":[419]},{"name":"NS_E_PLAYLIST_RECURSIVE_PLAYLISTS","features":[419]},{"name":"NS_E_PLAYLIST_SHUTDOWN","features":[419]},{"name":"NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS","features":[419]},{"name":"NS_E_PLAYLIST_UNSUPPORTED_ENTRY","features":[419]},{"name":"NS_E_PLUGIN_CLSID_INVALID","features":[419]},{"name":"NS_E_PLUGIN_ERROR_REPORTED","features":[419]},{"name":"NS_E_PLUGIN_NOTSHUTDOWN","features":[419]},{"name":"NS_E_PORT_IN_USE","features":[419]},{"name":"NS_E_PORT_IN_USE_HTTP","features":[419]},{"name":"NS_E_PROCESSINGSHOWSYNCWIZARD","features":[419]},{"name":"NS_E_PROFILE_MISMATCH","features":[419]},{"name":"NS_E_PROPERTY_NOT_FOUND","features":[419]},{"name":"NS_E_PROPERTY_NOT_SUPPORTED","features":[419]},{"name":"NS_E_PROPERTY_READ_ONLY","features":[419]},{"name":"NS_E_PROTECTED_CONTENT","features":[419]},{"name":"NS_E_PROTOCOL_MISMATCH","features":[419]},{"name":"NS_E_PROXY_ACCESSDENIED","features":[419]},{"name":"NS_E_PROXY_CONNECT_TIMEOUT","features":[419]},{"name":"NS_E_PROXY_DNS_TIMEOUT","features":[419]},{"name":"NS_E_PROXY_NOT_FOUND","features":[419]},{"name":"NS_E_PROXY_SOURCE_ACCESSDENIED","features":[419]},{"name":"NS_E_PROXY_TIMEOUT","features":[419]},{"name":"NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED","features":[419]},{"name":"NS_E_PUBLISHING_POINT_REMOVED","features":[419]},{"name":"NS_E_PUBLISHING_POINT_STOPPED","features":[419]},{"name":"NS_E_PUSH_CANNOTCONNECT","features":[419]},{"name":"NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME","features":[419]},{"name":"NS_E_REBOOT_RECOMMENDED","features":[419]},{"name":"NS_E_REBOOT_REQUIRED","features":[419]},{"name":"NS_E_RECORDQ_DISK_FULL","features":[419]},{"name":"NS_E_REDBOOK_ENABLED_WHILE_COPYING","features":[419]},{"name":"NS_E_REDIRECT","features":[419]},{"name":"NS_E_REDIRECT_TO_PROXY","features":[419]},{"name":"NS_E_REFUSED_BY_SERVER","features":[419]},{"name":"NS_E_REG_FLUSH_FAILURE","features":[419]},{"name":"NS_E_REMIRRORED_DISK","features":[419]},{"name":"NS_E_REQUIRE_STREAMING_CLIENT","features":[419]},{"name":"NS_E_RESET_SOCKET_CONNECTION","features":[419]},{"name":"NS_E_RESOURCE_GONE","features":[419]},{"name":"NS_E_SAME_AS_INPUT_COMBINATION","features":[419]},{"name":"NS_E_SCHEMA_CLASSIFY_FAILURE","features":[419]},{"name":"NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED","features":[419]},{"name":"NS_E_SDK_BUFFERTOOSMALL","features":[419]},{"name":"NS_E_SERVER_ACCESSDENIED","features":[419]},{"name":"NS_E_SERVER_DNS_TIMEOUT","features":[419]},{"name":"NS_E_SERVER_NOT_FOUND","features":[419]},{"name":"NS_E_SERVER_UNAVAILABLE","features":[419]},{"name":"NS_E_SESSION_INVALID","features":[419]},{"name":"NS_E_SESSION_NOT_FOUND","features":[419]},{"name":"NS_E_SETUP_BLOCKED","features":[419]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED","features":[419]},{"name":"NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE","features":[419]},{"name":"NS_E_SETUP_IGNORABLE_FAILURE","features":[419]},{"name":"NS_E_SETUP_INCOMPLETE","features":[419]},{"name":"NS_E_SET_DISK_UID_FAILED","features":[419]},{"name":"NS_E_SHARING_STATE_OUT_OF_SYNC","features":[419]},{"name":"NS_E_SHARING_VIOLATION","features":[419]},{"name":"NS_E_SHUTDOWN","features":[419]},{"name":"NS_E_SLOW_READ_DIGITAL","features":[419]},{"name":"NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION","features":[419]},{"name":"NS_E_SMPTEMODE_MISMATCH","features":[419]},{"name":"NS_E_SOURCEGROUP_NOTPREPARED","features":[419]},{"name":"NS_E_SOURCE_CANNOT_LOOP","features":[419]},{"name":"NS_E_SOURCE_NOTSPECIFIED","features":[419]},{"name":"NS_E_SOURCE_PLUGIN_NOT_FOUND","features":[419]},{"name":"NS_E_SPEECHEDL_ON_NON_MIXEDMODE","features":[419]},{"name":"NS_E_STALE_PRESENTATION","features":[419]},{"name":"NS_E_STREAM_END","features":[419]},{"name":"NS_E_STRIDE_REFUSED","features":[419]},{"name":"NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT","features":[419]},{"name":"NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED","features":[419]},{"name":"NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED","features":[419]},{"name":"NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS","features":[419]},{"name":"NS_E_SYNCWIZ_DEVICE_FULL","features":[419]},{"name":"NS_E_TABLE_KEY_NOT_FOUND","features":[419]},{"name":"NS_E_TAMPERED_CONTENT","features":[419]},{"name":"NS_E_TCP_DISABLED","features":[419]},{"name":"NS_E_TIGER_FAIL","features":[419]},{"name":"NS_E_TIMECODE_REQUIRES_VIDEOSTREAM","features":[419]},{"name":"NS_E_TIMEOUT","features":[419]},{"name":"NS_E_TITLE_BITRATE","features":[419]},{"name":"NS_E_TITLE_SIZE_EXCEEDED","features":[419]},{"name":"NS_E_TOO_MANY_AUDIO","features":[419]},{"name":"NS_E_TOO_MANY_DEVICECONTROL","features":[419]},{"name":"NS_E_TOO_MANY_HOPS","features":[419]},{"name":"NS_E_TOO_MANY_MULTICAST_SINKS","features":[419]},{"name":"NS_E_TOO_MANY_SESS","features":[419]},{"name":"NS_E_TOO_MANY_TITLES","features":[419]},{"name":"NS_E_TOO_MANY_VIDEO","features":[419]},{"name":"NS_E_TOO_MUCH_DATA","features":[419]},{"name":"NS_E_TOO_MUCH_DATA_FROM_SERVER","features":[419]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE","features":[419]},{"name":"NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE","features":[419]},{"name":"NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED","features":[419]},{"name":"NS_E_TRANSCODE_DELETECACHEERROR","features":[419]},{"name":"NS_E_TRANSFORM_PLUGIN_INVALID","features":[419]},{"name":"NS_E_TRANSFORM_PLUGIN_NOT_FOUND","features":[419]},{"name":"NS_E_UDP_DISABLED","features":[419]},{"name":"NS_E_UNABLE_TO_CREATE_RIP_LOCATION","features":[419]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED","features":[419]},{"name":"NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED","features":[419]},{"name":"NS_E_UNCOMP_COMP_COMBINATION","features":[419]},{"name":"NS_E_UNEXPECTED_DISPLAY_SETTINGS","features":[419]},{"name":"NS_E_UNEXPECTED_MSAUDIO_ERROR","features":[419]},{"name":"NS_E_UNKNOWN_PROTOCOL","features":[419]},{"name":"NS_E_UNRECOGNIZED_STREAM_TYPE","features":[419]},{"name":"NS_E_UNSUPPORTED_ARCHIVEOPERATION","features":[419]},{"name":"NS_E_UNSUPPORTED_ARCHIVETYPE","features":[419]},{"name":"NS_E_UNSUPPORTED_ENCODER_DEVICE","features":[419]},{"name":"NS_E_UNSUPPORTED_LANGUAGE","features":[419]},{"name":"NS_E_UNSUPPORTED_LOAD_TYPE","features":[419]},{"name":"NS_E_UNSUPPORTED_PROPERTY","features":[419]},{"name":"NS_E_UNSUPPORTED_SOURCETYPE","features":[419]},{"name":"NS_E_URLLIST_INVALIDFORMAT","features":[419]},{"name":"NS_E_USER_STOP","features":[419]},{"name":"NS_E_USE_FILE_SOURCE","features":[419]},{"name":"NS_E_VBRMODE_MISMATCH","features":[419]},{"name":"NS_E_VIDCAPCREATEWINDOW","features":[419]},{"name":"NS_E_VIDCAPDRVINUSE","features":[419]},{"name":"NS_E_VIDCAPSTARTFAILED","features":[419]},{"name":"NS_E_VIDEODEVICE_BUSY","features":[419]},{"name":"NS_E_VIDEODEVICE_UNEXPECTED","features":[419]},{"name":"NS_E_VIDEODRIVER_UNSTABLE","features":[419]},{"name":"NS_E_VIDEO_BITRATE_STEPDOWN","features":[419]},{"name":"NS_E_VIDEO_CODEC_ERROR","features":[419]},{"name":"NS_E_VIDEO_CODEC_NOT_INSTALLED","features":[419]},{"name":"NS_E_VIDSOURCECOMPRESSION","features":[419]},{"name":"NS_E_VIDSOURCESIZE","features":[419]},{"name":"NS_E_WALKER_SERVER","features":[419]},{"name":"NS_E_WALKER_UNKNOWN","features":[419]},{"name":"NS_E_WALKER_USAGE","features":[419]},{"name":"NS_E_WAVE_OPEN","features":[419]},{"name":"NS_E_WINSOCK_ERROR_STRING","features":[419]},{"name":"NS_E_WIZARD_RUNNING","features":[419]},{"name":"NS_E_WMDM_REVOKED","features":[419]},{"name":"NS_E_WMDRM_DEPRECATED","features":[419]},{"name":"NS_E_WME_VERSION_MISMATCH","features":[419]},{"name":"NS_E_WMG_CANNOTQUEUE","features":[419]},{"name":"NS_E_WMG_COPP_SECURITY_INVALID","features":[419]},{"name":"NS_E_WMG_COPP_UNSUPPORTED","features":[419]},{"name":"NS_E_WMG_FILETRANSFERNOTALLOWED","features":[419]},{"name":"NS_E_WMG_INVALIDSTATE","features":[419]},{"name":"NS_E_WMG_INVALID_COPP_CERTIFICATE","features":[419]},{"name":"NS_E_WMG_LICENSE_TAMPERED","features":[419]},{"name":"NS_E_WMG_NOSDKINTERFACE","features":[419]},{"name":"NS_E_WMG_NOTALLOUTPUTSRENDERED","features":[419]},{"name":"NS_E_WMG_PLUGINUNAVAILABLE","features":[419]},{"name":"NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED","features":[419]},{"name":"NS_E_WMG_RATEUNAVAILABLE","features":[419]},{"name":"NS_E_WMG_SINKALREADYEXISTS","features":[419]},{"name":"NS_E_WMG_UNEXPECTEDPREROLLSTATUS","features":[419]},{"name":"NS_E_WMPBR_BACKUPCANCEL","features":[419]},{"name":"NS_E_WMPBR_BACKUPRESTOREFAILED","features":[419]},{"name":"NS_E_WMPBR_DRIVE_INVALID","features":[419]},{"name":"NS_E_WMPBR_ERRORWITHURL","features":[419]},{"name":"NS_E_WMPBR_NAMECOLLISION","features":[419]},{"name":"NS_E_WMPBR_NOLISTENER","features":[419]},{"name":"NS_E_WMPBR_RESTORECANCEL","features":[419]},{"name":"NS_E_WMPCORE_BUFFERTOOSMALL","features":[419]},{"name":"NS_E_WMPCORE_BUSY","features":[419]},{"name":"NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT","features":[419]},{"name":"NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED","features":[419]},{"name":"NS_E_WMPCORE_CODEC_NOT_FOUND","features":[419]},{"name":"NS_E_WMPCORE_CODEC_NOT_TRUSTED","features":[419]},{"name":"NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE","features":[419]},{"name":"NS_E_WMPCORE_DEVICE_DRIVERS_MISSING","features":[419]},{"name":"NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE","features":[419]},{"name":"NS_E_WMPCORE_ERRORSINKNOTREGISTERED","features":[419]},{"name":"NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST","features":[419]},{"name":"NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE","features":[419]},{"name":"NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST","features":[419]},{"name":"NS_E_WMPCORE_FILE_NOT_FOUND","features":[419]},{"name":"NS_E_WMPCORE_GRAPH_NOT_IN_LIST","features":[419]},{"name":"NS_E_WMPCORE_INVALIDPLAYLISTMODE","features":[419]},{"name":"NS_E_WMPCORE_INVALID_PLAYLIST_URL","features":[419]},{"name":"NS_E_WMPCORE_ITEMNOTINPLAYLIST","features":[419]},{"name":"NS_E_WMPCORE_LIST_ENTRY_NO_REF","features":[419]},{"name":"NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY","features":[419]},{"name":"NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE","features":[419]},{"name":"NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED","features":[419]},{"name":"NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST","features":[419]},{"name":"NS_E_WMPCORE_MEDIA_UNAVAILABLE","features":[419]},{"name":"NS_E_WMPCORE_MEDIA_URL_TOO_LONG","features":[419]},{"name":"NS_E_WMPCORE_MISMATCHED_RUNTIME","features":[419]},{"name":"NS_E_WMPCORE_MISNAMED_FILE","features":[419]},{"name":"NS_E_WMPCORE_NOBROWSER","features":[419]},{"name":"NS_E_WMPCORE_NOSOURCEURLSTRING","features":[419]},{"name":"NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST","features":[419]},{"name":"NS_E_WMPCORE_NO_REF_IN_ENTRY","features":[419]},{"name":"NS_E_WMPCORE_PLAYLISTEMPTY","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE","features":[419]},{"name":"NS_E_WMPCORE_PLAYLIST_STACK_EMPTY","features":[419]},{"name":"NS_E_WMPCORE_SOME_CODECS_MISSING","features":[419]},{"name":"NS_E_WMPCORE_TEMP_FILE_NOT_FOUND","features":[419]},{"name":"NS_E_WMPCORE_UNAVAILABLE","features":[419]},{"name":"NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL","features":[419]},{"name":"NS_E_WMPCORE_USER_CANCEL","features":[419]},{"name":"NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION","features":[419]},{"name":"NS_E_WMPCORE_WEBHELPFAILED","features":[419]},{"name":"NS_E_WMPCORE_WMX_ENTRYREF_NO_REF","features":[419]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY","features":[419]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL","features":[419]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY","features":[419]},{"name":"NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL","features":[419]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY","features":[419]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL","features":[419]},{"name":"NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY","features":[419]},{"name":"NS_E_WMPFLASH_CANT_FIND_COM_SERVER","features":[419]},{"name":"NS_E_WMPFLASH_INCOMPATIBLEVERSION","features":[419]},{"name":"NS_E_WMPIM_DIALUPFAILED","features":[419]},{"name":"NS_E_WMPIM_USERCANCELED","features":[419]},{"name":"NS_E_WMPIM_USEROFFLINE","features":[419]},{"name":"NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS","features":[419]},{"name":"NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE","features":[419]},{"name":"NS_E_WMPOCX_NOT_RUNNING_REMOTELY","features":[419]},{"name":"NS_E_WMPOCX_NO_ACTIVE_CORE","features":[419]},{"name":"NS_E_WMPOCX_NO_REMOTE_CORE","features":[419]},{"name":"NS_E_WMPOCX_NO_REMOTE_WINDOW","features":[419]},{"name":"NS_E_WMPOCX_PLAYER_NOT_DOCKED","features":[419]},{"name":"NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING","features":[419]},{"name":"NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN","features":[419]},{"name":"NS_E_WMPXML_ATTRIBUTENOTFOUND","features":[419]},{"name":"NS_E_WMPXML_EMPTYDOC","features":[419]},{"name":"NS_E_WMPXML_ENDOFDATA","features":[419]},{"name":"NS_E_WMPXML_NOERROR","features":[419]},{"name":"NS_E_WMPXML_PARSEERROR","features":[419]},{"name":"NS_E_WMPXML_PINOTFOUND","features":[419]},{"name":"NS_E_WMPZIP_CORRUPT","features":[419]},{"name":"NS_E_WMPZIP_FILENOTFOUND","features":[419]},{"name":"NS_E_WMPZIP_NOTAZIPFILE","features":[419]},{"name":"NS_E_WMP_ACCESS_DENIED","features":[419]},{"name":"NS_E_WMP_ADDTOLIBRARY_FAILED","features":[419]},{"name":"NS_E_WMP_ALREADY_IN_USE","features":[419]},{"name":"NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED","features":[419]},{"name":"NS_E_WMP_AUDIO_DEVICE_LOST","features":[419]},{"name":"NS_E_WMP_AUDIO_HW_PROBLEM","features":[419]},{"name":"NS_E_WMP_AUTOPLAY_INVALID_STATE","features":[419]},{"name":"NS_E_WMP_BAD_DRIVER","features":[419]},{"name":"NS_E_WMP_BMP_BITMAP_NOT_CREATED","features":[419]},{"name":"NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED","features":[419]},{"name":"NS_E_WMP_BMP_INVALID_BITMASK","features":[419]},{"name":"NS_E_WMP_BMP_INVALID_FORMAT","features":[419]},{"name":"NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED","features":[419]},{"name":"NS_E_WMP_BSTR_TOO_LONG","features":[419]},{"name":"NS_E_WMP_BURN_DISC_OVERFLOW","features":[419]},{"name":"NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE","features":[419]},{"name":"NS_E_WMP_CANNOT_FIND_FILE","features":[419]},{"name":"NS_E_WMP_CANNOT_FIND_FOLDER","features":[419]},{"name":"NS_E_WMP_CANT_PLAY_PROTECTED","features":[419]},{"name":"NS_E_WMP_CD_ANOTHER_USER","features":[419]},{"name":"NS_E_WMP_CD_STASH_NO_SPACE","features":[419]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_4CC","features":[419]},{"name":"NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG","features":[419]},{"name":"NS_E_WMP_COMPONENT_REVOKED","features":[419]},{"name":"NS_E_WMP_CONNECT_TIMEOUT","features":[419]},{"name":"NS_E_WMP_CONVERT_FILE_CORRUPT","features":[419]},{"name":"NS_E_WMP_CONVERT_FILE_FAILED","features":[419]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL","features":[419]},{"name":"NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL","features":[419]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL","features":[419]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL","features":[419]},{"name":"NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER","features":[419]},{"name":"NS_E_WMP_CS_JPGPOSITIONIMAGE","features":[419]},{"name":"NS_E_WMP_CS_NOTEVENLYDIVISIBLE","features":[419]},{"name":"NS_E_WMP_DAI_SONGTOOSHORT","features":[419]},{"name":"NS_E_WMP_DRM_ACQUIRING_LICENSE","features":[419]},{"name":"NS_E_WMP_DRM_CANNOT_RESTORE","features":[419]},{"name":"NS_E_WMP_DRM_COMPONENT_FAILURE","features":[419]},{"name":"NS_E_WMP_DRM_CORRUPT_BACKUP","features":[419]},{"name":"NS_E_WMP_DRM_DRIVER_AUTH_FAILURE","features":[419]},{"name":"NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE","features":[419]},{"name":"NS_E_WMP_DRM_INDIV_FAILED","features":[419]},{"name":"NS_E_WMP_DRM_INVALID_SIG","features":[419]},{"name":"NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED","features":[419]},{"name":"NS_E_WMP_DRM_LICENSE_EXPIRED","features":[419]},{"name":"NS_E_WMP_DRM_LICENSE_NOSAP","features":[419]},{"name":"NS_E_WMP_DRM_LICENSE_NOTACQUIRED","features":[419]},{"name":"NS_E_WMP_DRM_LICENSE_NOTENABLED","features":[419]},{"name":"NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE","features":[419]},{"name":"NS_E_WMP_DRM_LICENSE_UNUSABLE","features":[419]},{"name":"NS_E_WMP_DRM_NEEDS_AUTHORIZATION","features":[419]},{"name":"NS_E_WMP_DRM_NEW_HARDWARE","features":[419]},{"name":"NS_E_WMP_DRM_NOT_ACQUIRING","features":[419]},{"name":"NS_E_WMP_DRM_NO_DEVICE_CERT","features":[419]},{"name":"NS_E_WMP_DRM_NO_RIGHTS","features":[419]},{"name":"NS_E_WMP_DRM_NO_SECURE_CLOCK","features":[419]},{"name":"NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE","features":[419]},{"name":"NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT","features":[419]},{"name":"NS_E_WMP_ERASE_FAILED","features":[419]},{"name":"NS_E_WMP_EXTERNAL_NOTREADY","features":[419]},{"name":"NS_E_WMP_FAILED_TO_OPEN_IMAGE","features":[419]},{"name":"NS_E_WMP_FAILED_TO_OPEN_WMD","features":[419]},{"name":"NS_E_WMP_FAILED_TO_RIP_TRACK","features":[419]},{"name":"NS_E_WMP_FAILED_TO_SAVE_FILE","features":[419]},{"name":"NS_E_WMP_FAILED_TO_SAVE_PLAYLIST","features":[419]},{"name":"NS_E_WMP_FILESCANALREADYSTARTED","features":[419]},{"name":"NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD","features":[419]},{"name":"NS_E_WMP_FILE_NO_DURATION","features":[419]},{"name":"NS_E_WMP_FILE_OPEN_FAILED","features":[419]},{"name":"NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD","features":[419]},{"name":"NS_E_WMP_FORMAT_FAILED","features":[419]},{"name":"NS_E_WMP_GIF_BAD_VERSION_NUMBER","features":[419]},{"name":"NS_E_WMP_GIF_INVALID_FORMAT","features":[419]},{"name":"NS_E_WMP_GIF_NO_IMAGE_IN_FILE","features":[419]},{"name":"NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE","features":[419]},{"name":"NS_E_WMP_GOFULLSCREEN_FAILED","features":[419]},{"name":"NS_E_WMP_HME_INVALIDOBJECTID","features":[419]},{"name":"NS_E_WMP_HME_NOTSEARCHABLEFORITEMS","features":[419]},{"name":"NS_E_WMP_HME_STALEREQUEST","features":[419]},{"name":"NS_E_WMP_HWND_NOTFOUND","features":[419]},{"name":"NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED","features":[419]},{"name":"NS_E_WMP_IMAGE_INVALID_FORMAT","features":[419]},{"name":"NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY","features":[419]},{"name":"NS_E_WMP_IMAPI2_ERASE_FAIL","features":[419]},{"name":"NS_E_WMP_IMAPI_DEVICE_BUSY","features":[419]},{"name":"NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE","features":[419]},{"name":"NS_E_WMP_IMAPI_DEVICE_NOTPRESENT","features":[419]},{"name":"NS_E_WMP_IMAPI_FAILURE","features":[419]},{"name":"NS_E_WMP_IMAPI_GENERIC","features":[419]},{"name":"NS_E_WMP_IMAPI_LOSS_OF_STREAMING","features":[419]},{"name":"NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE","features":[419]},{"name":"NS_E_WMP_INVALID_ASX","features":[419]},{"name":"NS_E_WMP_INVALID_KEY","features":[419]},{"name":"NS_E_WMP_INVALID_LIBRARY_ADD","features":[419]},{"name":"NS_E_WMP_INVALID_MAX_VAL","features":[419]},{"name":"NS_E_WMP_INVALID_MIN_VAL","features":[419]},{"name":"NS_E_WMP_INVALID_PROTOCOL","features":[419]},{"name":"NS_E_WMP_INVALID_REQUEST","features":[419]},{"name":"NS_E_WMP_INVALID_SKIN","features":[419]},{"name":"NS_E_WMP_JPGTRANSPARENCY","features":[419]},{"name":"NS_E_WMP_JPG_BAD_DCTSIZE","features":[419]},{"name":"NS_E_WMP_JPG_BAD_PRECISION","features":[419]},{"name":"NS_E_WMP_JPG_BAD_VERSION_NUMBER","features":[419]},{"name":"NS_E_WMP_JPG_CCIR601_NOTIMPL","features":[419]},{"name":"NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL","features":[419]},{"name":"NS_E_WMP_JPG_IMAGE_TOO_BIG","features":[419]},{"name":"NS_E_WMP_JPG_INVALID_FORMAT","features":[419]},{"name":"NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL","features":[419]},{"name":"NS_E_WMP_JPG_NO_IMAGE_IN_FILE","features":[419]},{"name":"NS_E_WMP_JPG_READ_ERROR","features":[419]},{"name":"NS_E_WMP_JPG_SOF_UNSUPPORTED","features":[419]},{"name":"NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE","features":[419]},{"name":"NS_E_WMP_JPG_UNKNOWN_MARKER","features":[419]},{"name":"NS_E_WMP_LICENSE_REQUIRED","features":[419]},{"name":"NS_E_WMP_LICENSE_RESTRICTS","features":[419]},{"name":"NS_E_WMP_LOCKEDINSKINMODE","features":[419]},{"name":"NS_E_WMP_LOGON_FAILURE","features":[419]},{"name":"NS_E_WMP_MF_CODE_EXPIRED","features":[419]},{"name":"NS_E_WMP_MLS_STALE_DATA","features":[419]},{"name":"NS_E_WMP_MMS_NOT_SUPPORTED","features":[419]},{"name":"NS_E_WMP_MSSAP_NOT_AVAILABLE","features":[419]},{"name":"NS_E_WMP_MULTICAST_DISABLED","features":[419]},{"name":"NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST","features":[419]},{"name":"NS_E_WMP_NEED_UPGRADE","features":[419]},{"name":"NS_E_WMP_NETWORK_ERROR","features":[419]},{"name":"NS_E_WMP_NETWORK_FIREWALL","features":[419]},{"name":"NS_E_WMP_NETWORK_RESOURCE_FAILURE","features":[419]},{"name":"NS_E_WMP_NONMEDIA_FILES","features":[419]},{"name":"NS_E_WMP_NO_DISK_SPACE","features":[419]},{"name":"NS_E_WMP_NO_PROTOCOLS_SELECTED","features":[419]},{"name":"NS_E_WMP_NO_REMOVABLE_MEDIA","features":[419]},{"name":"NS_E_WMP_OUTOFMEMORY","features":[419]},{"name":"NS_E_WMP_PATH_ALREADY_IN_LIBRARY","features":[419]},{"name":"NS_E_WMP_PLAYLIST_EXISTS","features":[419]},{"name":"NS_E_WMP_PLUGINDLL_NOTFOUND","features":[419]},{"name":"NS_E_WMP_PNG_INVALIDFORMAT","features":[419]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC","features":[419]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH","features":[419]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION","features":[419]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_FILTER","features":[419]},{"name":"NS_E_WMP_PNG_UNSUPPORTED_INTERLACE","features":[419]},{"name":"NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED","features":[419]},{"name":"NS_E_WMP_PROTECTED_CONTENT","features":[419]},{"name":"NS_E_WMP_PROTOCOL_PROBLEM","features":[419]},{"name":"NS_E_WMP_PROXY_CONNECT_TIMEOUT","features":[419]},{"name":"NS_E_WMP_PROXY_NOT_FOUND","features":[419]},{"name":"NS_E_WMP_RBC_JPGMAPPINGIMAGE","features":[419]},{"name":"NS_E_WMP_RECORDING_NOT_ALLOWED","features":[419]},{"name":"NS_E_WMP_RIP_FAILED","features":[419]},{"name":"NS_E_WMP_SAVEAS_READONLY","features":[419]},{"name":"NS_E_WMP_SENDMAILFAILED","features":[419]},{"name":"NS_E_WMP_SERVER_DNS_TIMEOUT","features":[419]},{"name":"NS_E_WMP_SERVER_INACCESSIBLE","features":[419]},{"name":"NS_E_WMP_SERVER_NONEWCONNECTIONS","features":[419]},{"name":"NS_E_WMP_SERVER_NOT_RESPONDING","features":[419]},{"name":"NS_E_WMP_SERVER_SECURITY_ERROR","features":[419]},{"name":"NS_E_WMP_SERVER_UNAVAILABLE","features":[419]},{"name":"NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED","features":[419]},{"name":"NS_E_WMP_TAMPERED_CONTENT","features":[419]},{"name":"NS_E_WMP_UDRM_NOUSERLIST","features":[419]},{"name":"NS_E_WMP_UI_NOSKININZIP","features":[419]},{"name":"NS_E_WMP_UI_NOTATHEMEFILE","features":[419]},{"name":"NS_E_WMP_UI_OBJECTNOTFOUND","features":[419]},{"name":"NS_E_WMP_UI_PASSTHROUGH","features":[419]},{"name":"NS_E_WMP_UI_SECONDHANDLER","features":[419]},{"name":"NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED","features":[419]},{"name":"NS_E_WMP_UI_SUBELEMENTNOTFOUND","features":[419]},{"name":"NS_E_WMP_UI_VERSIONMISMATCH","features":[419]},{"name":"NS_E_WMP_UI_VERSIONPARSE","features":[419]},{"name":"NS_E_WMP_UI_VIEWIDNOTFOUND","features":[419]},{"name":"NS_E_WMP_UNKNOWN_ERROR","features":[419]},{"name":"NS_E_WMP_UNSUPPORTED_FORMAT","features":[419]},{"name":"NS_E_WMP_UPGRADE_APPLICATION","features":[419]},{"name":"NS_E_WMP_URLDOWNLOADFAILED","features":[419]},{"name":"NS_E_WMP_VERIFY_ONLINE","features":[419]},{"name":"NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED","features":[419]},{"name":"NS_E_WMP_WINDOWSAPIFAILURE","features":[419]},{"name":"NS_E_WMP_WMDM_BUSY","features":[419]},{"name":"NS_E_WMP_WMDM_FAILURE","features":[419]},{"name":"NS_E_WMP_WMDM_INCORRECT_RIGHTS","features":[419]},{"name":"NS_E_WMP_WMDM_INTERFACEDEAD","features":[419]},{"name":"NS_E_WMP_WMDM_LICENSE_EXPIRED","features":[419]},{"name":"NS_E_WMP_WMDM_LICENSE_NOTEXIST","features":[419]},{"name":"NS_E_WMP_WMDM_NORIGHTS","features":[419]},{"name":"NS_E_WMP_WMDM_NOTCERTIFIED","features":[419]},{"name":"NS_E_WMR_CANNOT_RENDER_BINARY_STREAM","features":[419]},{"name":"NS_E_WMR_NOCALLBACKAVAILABLE","features":[419]},{"name":"NS_E_WMR_NOSOURCEFILTER","features":[419]},{"name":"NS_E_WMR_PINNOTFOUND","features":[419]},{"name":"NS_E_WMR_PINTYPENOMATCH","features":[419]},{"name":"NS_E_WMR_SAMPLEPROPERTYNOTSET","features":[419]},{"name":"NS_E_WMR_UNSUPPORTEDSTREAM","features":[419]},{"name":"NS_E_WMR_WAITINGONFORMATSWITCH","features":[419]},{"name":"NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM","features":[419]},{"name":"NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS","features":[419]},{"name":"NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST","features":[419]},{"name":"NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE","features":[419]},{"name":"NS_E_WMX_INVALID_FORMAT_OVER_NESTING","features":[419]},{"name":"NS_E_WMX_ITEM_DOES_NOT_EXIST","features":[419]},{"name":"NS_E_WMX_ITEM_TYPE_ILLEGAL","features":[419]},{"name":"NS_E_WMX_ITEM_UNSETTABLE","features":[419]},{"name":"NS_E_WMX_PLAYLIST_EMPTY","features":[419]},{"name":"NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT","features":[419]},{"name":"NS_E_WONT_DO_DIGITAL","features":[419]},{"name":"NS_E_WRONG_OS_VERSION","features":[419]},{"name":"NS_E_WRONG_PUBLISHING_POINT_TYPE","features":[419]},{"name":"NS_E_WSX_INVALID_VERSION","features":[419]},{"name":"NS_I_CATATONIC_AUTO_UNFAIL","features":[419]},{"name":"NS_I_CATATONIC_FAILURE","features":[419]},{"name":"NS_I_CUB_RUNNING","features":[419]},{"name":"NS_I_CUB_START","features":[419]},{"name":"NS_I_CUB_UNFAIL_LINK","features":[419]},{"name":"NS_I_DISK_REBUILD_ABORTED","features":[419]},{"name":"NS_I_DISK_REBUILD_FINISHED","features":[419]},{"name":"NS_I_DISK_REBUILD_STARTED","features":[419]},{"name":"NS_I_DISK_START","features":[419]},{"name":"NS_I_DISK_STOP","features":[419]},{"name":"NS_I_EXISTING_PACKETIZER","features":[419]},{"name":"NS_I_KILL_CONNECTION","features":[419]},{"name":"NS_I_KILL_USERSESSION","features":[419]},{"name":"NS_I_LIMIT_BANDWIDTH","features":[419]},{"name":"NS_I_LIMIT_FUNNELS","features":[419]},{"name":"NS_I_LOGGING_FAILED","features":[419]},{"name":"NS_I_MANUAL_PROXY","features":[419]},{"name":"NS_I_NOLOG_STOP","features":[419]},{"name":"NS_I_PLAYLIST_CHANGE_RECEDING","features":[419]},{"name":"NS_I_REBUILD_DISK","features":[419]},{"name":"NS_I_RECONNECTED","features":[419]},{"name":"NS_I_RESTRIPE_CUB_OUT","features":[419]},{"name":"NS_I_RESTRIPE_DISK_OUT","features":[419]},{"name":"NS_I_RESTRIPE_DONE","features":[419]},{"name":"NS_I_RESTRIPE_START","features":[419]},{"name":"NS_I_START_DISK","features":[419]},{"name":"NS_I_STOP_CUB","features":[419]},{"name":"NS_I_STOP_DISK","features":[419]},{"name":"NS_I_TIGER_START","features":[419]},{"name":"NS_S_CALLABORTED","features":[419]},{"name":"NS_S_CALLPENDING","features":[419]},{"name":"NS_S_CHANGENOTICE","features":[419]},{"name":"NS_S_DEGRADING_QUALITY","features":[419]},{"name":"NS_S_DRM_ACQUIRE_CANCELLED","features":[419]},{"name":"NS_S_DRM_BURNABLE_TRACK","features":[419]},{"name":"NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION","features":[419]},{"name":"NS_S_DRM_INDIVIDUALIZED","features":[419]},{"name":"NS_S_DRM_LICENSE_ACQUIRED","features":[419]},{"name":"NS_S_DRM_MONITOR_CANCELLED","features":[419]},{"name":"NS_S_DRM_NEEDS_INDIVIDUALIZATION","features":[419]},{"name":"NS_S_EOSRECEDING","features":[419]},{"name":"NS_S_NAVIGATION_COMPLETE_WITH_ERRORS","features":[419]},{"name":"NS_S_NEED_TO_BUY_BURN_RIGHTS","features":[419]},{"name":"NS_S_OPERATION_PENDING","features":[419]},{"name":"NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS","features":[419]},{"name":"NS_S_REBOOT_RECOMMENDED","features":[419]},{"name":"NS_S_REBOOT_REQUIRED","features":[419]},{"name":"NS_S_REBUFFERING","features":[419]},{"name":"NS_S_STREAM_TRUNCATED","features":[419]},{"name":"NS_S_TRACK_ALREADY_DOWNLOADED","features":[419]},{"name":"NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE","features":[419]},{"name":"NS_S_TRANSCRYPTOR_EOF","features":[419]},{"name":"NS_S_WMG_ADVISE_DROP_FRAME","features":[419]},{"name":"NS_S_WMG_ADVISE_DROP_TO_KEYFRAME","features":[419]},{"name":"NS_S_WMG_FORCE_DROP_FRAME","features":[419]},{"name":"NS_S_WMPBR_PARTIALSUCCESS","features":[419]},{"name":"NS_S_WMPBR_SUCCESS","features":[419]},{"name":"NS_S_WMPCORE_COMMAND_NOT_AVAILABLE","features":[419]},{"name":"NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING","features":[419]},{"name":"NS_S_WMPCORE_MEDIA_VALIDATION_PENDING","features":[419]},{"name":"NS_S_WMPCORE_MORE_NODES_AVAIABLE","features":[419]},{"name":"NS_S_WMPCORE_PLAYLISTCLEARABORT","features":[419]},{"name":"NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT","features":[419]},{"name":"NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA","features":[419]},{"name":"NS_S_WMPCORE_PLAYLIST_CREATION_PENDING","features":[419]},{"name":"NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS","features":[419]},{"name":"NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED","features":[419]},{"name":"NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED","features":[419]},{"name":"NS_S_WMPEFFECT_OPAQUE","features":[419]},{"name":"NS_S_WMPEFFECT_TRANSPARENT","features":[419]},{"name":"NS_S_WMP_EXCEPTION","features":[419]},{"name":"NS_S_WMP_LOADED_BMP_IMAGE","features":[419]},{"name":"NS_S_WMP_LOADED_GIF_IMAGE","features":[419]},{"name":"NS_S_WMP_LOADED_JPG_IMAGE","features":[419]},{"name":"NS_S_WMP_LOADED_PNG_IMAGE","features":[419]},{"name":"NS_S_WMP_UI_VERSIONMISMATCH","features":[419]},{"name":"NS_S_WMR_ALREADYRENDERED","features":[419]},{"name":"NS_S_WMR_PINTYPEFULLMATCH","features":[419]},{"name":"NS_S_WMR_PINTYPEPARTIALMATCH","features":[419]},{"name":"NS_W_FILE_BANDWIDTH_LIMIT","features":[419]},{"name":"NS_W_SERVER_BANDWIDTH_LIMIT","features":[419]},{"name":"NS_W_UNKNOWN_EVENT","features":[419]},{"name":"OLIADPCMWAVEFORMAT","features":[420,419]},{"name":"OLICELPWAVEFORMAT","features":[420,419]},{"name":"OLIGSMWAVEFORMAT","features":[420,419]},{"name":"OLIOPRWAVEFORMAT","features":[420,419]},{"name":"OLISBCWAVEFORMAT","features":[420,419]},{"name":"OpenDriver","features":[305,419]},{"name":"PD_CAN_DRAW_DIB","features":[419]},{"name":"PD_CAN_STRETCHDIB","features":[419]},{"name":"PD_STRETCHDIB_1_1_OK","features":[419]},{"name":"PD_STRETCHDIB_1_2_OK","features":[419]},{"name":"PD_STRETCHDIB_1_N_OK","features":[419]},{"name":"ROCKWELL_WA1_MIXER","features":[419]},{"name":"ROCKWELL_WA1_MPU401_IN","features":[419]},{"name":"ROCKWELL_WA1_MPU401_OUT","features":[419]},{"name":"ROCKWELL_WA1_SYNTH","features":[419]},{"name":"ROCKWELL_WA1_WAVEIN","features":[419]},{"name":"ROCKWELL_WA1_WAVEOUT","features":[419]},{"name":"ROCKWELL_WA2_MIXER","features":[419]},{"name":"ROCKWELL_WA2_MPU401_IN","features":[419]},{"name":"ROCKWELL_WA2_MPU401_OUT","features":[419]},{"name":"ROCKWELL_WA2_SYNTH","features":[419]},{"name":"ROCKWELL_WA2_WAVEIN","features":[419]},{"name":"ROCKWELL_WA2_WAVEOUT","features":[419]},{"name":"SEARCH_ANY","features":[419]},{"name":"SEARCH_BACKWARD","features":[419]},{"name":"SEARCH_FORWARD","features":[419]},{"name":"SEARCH_KEY","features":[419]},{"name":"SEARCH_NEAREST","features":[419]},{"name":"SEEK_CUR","features":[419]},{"name":"SEEK_END","features":[419]},{"name":"SEEK_SET","features":[419]},{"name":"SIERRAADPCMWAVEFORMAT","features":[420,419]},{"name":"SONARCWAVEFORMAT","features":[420,419]},{"name":"SendDriverMessage","features":[305,419]},{"name":"TARGET_DEVICE_FRIENDLY_NAME","features":[419]},{"name":"TARGET_DEVICE_OPEN_EXCLUSIVELY","features":[419]},{"name":"TASKERR_NOTASKSUPPORT","features":[419]},{"name":"TASKERR_OUTOFMEMORY","features":[419]},{"name":"TDD_BEGINMINPERIOD","features":[419]},{"name":"TDD_ENDMINPERIOD","features":[419]},{"name":"TDD_GETDEVCAPS","features":[419]},{"name":"TDD_GETSYSTEMTIME","features":[419]},{"name":"TDD_KILLTIMEREVENT","features":[419]},{"name":"TDD_SETTIMEREVENT","features":[419]},{"name":"TIMEREVENT","features":[419]},{"name":"TRUESPEECHWAVEFORMAT","features":[420,419]},{"name":"VADMAD_Device_ID","features":[419]},{"name":"VCAPS_CAN_SCALE","features":[419]},{"name":"VCAPS_DST_CAN_CLIP","features":[419]},{"name":"VCAPS_OVERLAY","features":[419]},{"name":"VCAPS_SRC_CAN_CLIP","features":[419]},{"name":"VFWWDMExtensionProc","features":[305,419,355]},{"name":"VFW_HIDE_CAMERACONTROL_PAGE","features":[419]},{"name":"VFW_HIDE_SETTINGS_PAGE","features":[419]},{"name":"VFW_HIDE_VIDEOSRC_PAGE","features":[419]},{"name":"VFW_OEM_ADD_PAGE","features":[419]},{"name":"VFW_QUERY_DEV_CHANGED","features":[419]},{"name":"VFW_USE_DEVICE_HANDLE","features":[419]},{"name":"VFW_USE_STREAM_HANDLE","features":[419]},{"name":"VHDR_DONE","features":[419]},{"name":"VHDR_INQUEUE","features":[419]},{"name":"VHDR_KEYFRAME","features":[419]},{"name":"VHDR_PREPARED","features":[419]},{"name":"VHDR_VALID","features":[419]},{"name":"VIDCF_COMPRESSFRAMES","features":[419]},{"name":"VIDCF_CRUNCH","features":[419]},{"name":"VIDCF_DRAW","features":[419]},{"name":"VIDCF_FASTTEMPORALC","features":[419]},{"name":"VIDCF_FASTTEMPORALD","features":[419]},{"name":"VIDCF_QUALITY","features":[419]},{"name":"VIDCF_TEMPORAL","features":[419]},{"name":"VIDEOHDR","features":[419]},{"name":"VIDEO_CONFIGURE_CURRENT","features":[419]},{"name":"VIDEO_CONFIGURE_GET","features":[419]},{"name":"VIDEO_CONFIGURE_MAX","features":[419]},{"name":"VIDEO_CONFIGURE_MIN","features":[419]},{"name":"VIDEO_CONFIGURE_NOMINAL","features":[419]},{"name":"VIDEO_CONFIGURE_QUERY","features":[419]},{"name":"VIDEO_CONFIGURE_QUERYSIZE","features":[419]},{"name":"VIDEO_CONFIGURE_SET","features":[419]},{"name":"VIDEO_DLG_QUERY","features":[419]},{"name":"VIDEO_EXTERNALIN","features":[419]},{"name":"VIDEO_EXTERNALOUT","features":[419]},{"name":"VIDEO_IN","features":[419]},{"name":"VIDEO_OUT","features":[419]},{"name":"VP_COMMAND_GET","features":[419]},{"name":"VP_COMMAND_SET","features":[419]},{"name":"VP_CP_CMD_ACTIVATE","features":[419]},{"name":"VP_CP_CMD_CHANGE","features":[419]},{"name":"VP_CP_CMD_DEACTIVATE","features":[419]},{"name":"VP_CP_TYPE_APS_TRIGGER","features":[419]},{"name":"VP_CP_TYPE_MACROVISION","features":[419]},{"name":"VP_FLAGS_BRIGHTNESS","features":[419]},{"name":"VP_FLAGS_CONTRAST","features":[419]},{"name":"VP_FLAGS_COPYPROTECT","features":[419]},{"name":"VP_FLAGS_FLICKER","features":[419]},{"name":"VP_FLAGS_MAX_UNSCALED","features":[419]},{"name":"VP_FLAGS_OVERSCAN","features":[419]},{"name":"VP_FLAGS_POSITION","features":[419]},{"name":"VP_FLAGS_TV_MODE","features":[419]},{"name":"VP_FLAGS_TV_STANDARD","features":[419]},{"name":"VP_MODE_TV_PLAYBACK","features":[419]},{"name":"VP_MODE_WIN_GRAPHICS","features":[419]},{"name":"VP_TV_STANDARD_NTSC_433","features":[419]},{"name":"VP_TV_STANDARD_NTSC_M","features":[419]},{"name":"VP_TV_STANDARD_NTSC_M_J","features":[419]},{"name":"VP_TV_STANDARD_PAL_60","features":[419]},{"name":"VP_TV_STANDARD_PAL_B","features":[419]},{"name":"VP_TV_STANDARD_PAL_D","features":[419]},{"name":"VP_TV_STANDARD_PAL_G","features":[419]},{"name":"VP_TV_STANDARD_PAL_H","features":[419]},{"name":"VP_TV_STANDARD_PAL_I","features":[419]},{"name":"VP_TV_STANDARD_PAL_M","features":[419]},{"name":"VP_TV_STANDARD_PAL_N","features":[419]},{"name":"VP_TV_STANDARD_SECAM_B","features":[419]},{"name":"VP_TV_STANDARD_SECAM_D","features":[419]},{"name":"VP_TV_STANDARD_SECAM_G","features":[419]},{"name":"VP_TV_STANDARD_SECAM_H","features":[419]},{"name":"VP_TV_STANDARD_SECAM_K","features":[419]},{"name":"VP_TV_STANDARD_SECAM_K1","features":[419]},{"name":"VP_TV_STANDARD_SECAM_L","features":[419]},{"name":"VP_TV_STANDARD_SECAM_L1","features":[419]},{"name":"VP_TV_STANDARD_WIN_VGA","features":[419]},{"name":"VideoForWindowsVersion","features":[419]},{"name":"WAVEOPENDESC","features":[420,419]},{"name":"WAVE_FILTER_DEVELOPMENT","features":[419]},{"name":"WAVE_FILTER_ECHO","features":[419]},{"name":"WAVE_FILTER_UNKNOWN","features":[419]},{"name":"WAVE_FILTER_VOLUME","features":[419]},{"name":"WAVE_FORMAT_3COM_NBX","features":[419]},{"name":"WAVE_FORMAT_ADPCM","features":[419]},{"name":"WAVE_FORMAT_ALAC","features":[419]},{"name":"WAVE_FORMAT_ALAW","features":[419]},{"name":"WAVE_FORMAT_AMR_NB","features":[419]},{"name":"WAVE_FORMAT_AMR_WB","features":[419]},{"name":"WAVE_FORMAT_AMR_WP","features":[419]},{"name":"WAVE_FORMAT_ANTEX_ADPCME","features":[419]},{"name":"WAVE_FORMAT_APTX","features":[419]},{"name":"WAVE_FORMAT_AUDIOFILE_AF10","features":[419]},{"name":"WAVE_FORMAT_AUDIOFILE_AF36","features":[419]},{"name":"WAVE_FORMAT_BTV_DIGITAL","features":[419]},{"name":"WAVE_FORMAT_CANOPUS_ATRAC","features":[419]},{"name":"WAVE_FORMAT_CIRRUS","features":[419]},{"name":"WAVE_FORMAT_CODIAN","features":[419]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_AVQSBC","features":[419]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_G723_1","features":[419]},{"name":"WAVE_FORMAT_COMVERSE_INFOSYS_SBC","features":[419]},{"name":"WAVE_FORMAT_CONGRUENCY","features":[419]},{"name":"WAVE_FORMAT_CONTROL_RES_CR10","features":[419]},{"name":"WAVE_FORMAT_CONTROL_RES_VQLPC","features":[419]},{"name":"WAVE_FORMAT_CONVEDIA_G729","features":[419]},{"name":"WAVE_FORMAT_CREATIVE_ADPCM","features":[419]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH10","features":[419]},{"name":"WAVE_FORMAT_CREATIVE_FASTSPEECH8","features":[419]},{"name":"WAVE_FORMAT_CS2","features":[419]},{"name":"WAVE_FORMAT_CS_IMAADPCM","features":[419]},{"name":"WAVE_FORMAT_CUSEEME","features":[419]},{"name":"WAVE_FORMAT_CU_CODEC","features":[419]},{"name":"WAVE_FORMAT_DEVELOPMENT","features":[419]},{"name":"WAVE_FORMAT_DF_G726","features":[419]},{"name":"WAVE_FORMAT_DF_GSM610","features":[419]},{"name":"WAVE_FORMAT_DIALOGIC_OKI_ADPCM","features":[419]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP54","features":[419]},{"name":"WAVE_FORMAT_DICTAPHONE_CELP68","features":[419]},{"name":"WAVE_FORMAT_DIGIADPCM","features":[419]},{"name":"WAVE_FORMAT_DIGIFIX","features":[419]},{"name":"WAVE_FORMAT_DIGIREAL","features":[419]},{"name":"WAVE_FORMAT_DIGISTD","features":[419]},{"name":"WAVE_FORMAT_DIGITAL_G723","features":[419]},{"name":"WAVE_FORMAT_DIVIO_G726","features":[419]},{"name":"WAVE_FORMAT_DIVIO_MPEG4_AAC","features":[419]},{"name":"WAVE_FORMAT_DOLBY_AC2","features":[419]},{"name":"WAVE_FORMAT_DOLBY_AC3_SPDIF","features":[419]},{"name":"WAVE_FORMAT_DOLBY_AC4","features":[419]},{"name":"WAVE_FORMAT_DRM","features":[419]},{"name":"WAVE_FORMAT_DSAT","features":[419]},{"name":"WAVE_FORMAT_DSAT_DISPLAY","features":[419]},{"name":"WAVE_FORMAT_DSPGROUP_TRUESPEECH","features":[419]},{"name":"WAVE_FORMAT_DTS","features":[419]},{"name":"WAVE_FORMAT_DTS2","features":[419]},{"name":"WAVE_FORMAT_DTS_DS","features":[419]},{"name":"WAVE_FORMAT_DVI_ADPCM","features":[419]},{"name":"WAVE_FORMAT_DVM","features":[419]},{"name":"WAVE_FORMAT_ECHOSC1","features":[419]},{"name":"WAVE_FORMAT_ECHOSC3","features":[419]},{"name":"WAVE_FORMAT_ENCORE_G726","features":[419]},{"name":"WAVE_FORMAT_ESPCM","features":[419]},{"name":"WAVE_FORMAT_ESST_AC3","features":[419]},{"name":"WAVE_FORMAT_FAAD_AAC","features":[419]},{"name":"WAVE_FORMAT_FLAC","features":[419]},{"name":"WAVE_FORMAT_FM_TOWNS_SND","features":[419]},{"name":"WAVE_FORMAT_FRACE_TELECOM_G729","features":[419]},{"name":"WAVE_FORMAT_FRAUNHOFER_IIS_MPEG2_AAC","features":[419]},{"name":"WAVE_FORMAT_G721_ADPCM","features":[419]},{"name":"WAVE_FORMAT_G722_ADPCM","features":[419]},{"name":"WAVE_FORMAT_G723_ADPCM","features":[419]},{"name":"WAVE_FORMAT_G726ADPCM","features":[419]},{"name":"WAVE_FORMAT_G726_ADPCM","features":[419]},{"name":"WAVE_FORMAT_G728_CELP","features":[419]},{"name":"WAVE_FORMAT_G729A","features":[419]},{"name":"WAVE_FORMAT_GENERIC_PASSTHRU","features":[419]},{"name":"WAVE_FORMAT_GLOBAL_IP_ILBC","features":[419]},{"name":"WAVE_FORMAT_GSM610","features":[419]},{"name":"WAVE_FORMAT_GSM_610","features":[419]},{"name":"WAVE_FORMAT_GSM_620","features":[419]},{"name":"WAVE_FORMAT_GSM_660","features":[419]},{"name":"WAVE_FORMAT_GSM_690","features":[419]},{"name":"WAVE_FORMAT_GSM_ADAPTIVE_MULTIRATE_WB","features":[419]},{"name":"WAVE_FORMAT_GSM_AMR_CBR","features":[419]},{"name":"WAVE_FORMAT_GSM_AMR_VBR_SID","features":[419]},{"name":"WAVE_FORMAT_HP_DYN_VOICE","features":[419]},{"name":"WAVE_FORMAT_IBM_CVSD","features":[419]},{"name":"WAVE_FORMAT_IEEE_FLOAT","features":[419]},{"name":"WAVE_FORMAT_ILINK_VC","features":[419]},{"name":"WAVE_FORMAT_IMA_ADPCM","features":[419]},{"name":"WAVE_FORMAT_INDEO_AUDIO","features":[419]},{"name":"WAVE_FORMAT_INFOCOM_ITS_G721_ADPCM","features":[419]},{"name":"WAVE_FORMAT_INGENIENT_G726","features":[419]},{"name":"WAVE_FORMAT_INNINGS_TELECOM_ADPCM","features":[419]},{"name":"WAVE_FORMAT_INTEL_G723_1","features":[419]},{"name":"WAVE_FORMAT_INTEL_G729","features":[419]},{"name":"WAVE_FORMAT_INTEL_MUSIC_CODER","features":[419]},{"name":"WAVE_FORMAT_IPI_HSX","features":[419]},{"name":"WAVE_FORMAT_IPI_RPELP","features":[419]},{"name":"WAVE_FORMAT_IRAT","features":[419]},{"name":"WAVE_FORMAT_ISIAUDIO","features":[419]},{"name":"WAVE_FORMAT_ISIAUDIO_2","features":[419]},{"name":"WAVE_FORMAT_KNOWLEDGE_ADVENTURE_ADPCM","features":[419]},{"name":"WAVE_FORMAT_LEAD_SPEECH","features":[419]},{"name":"WAVE_FORMAT_LEAD_VORBIS","features":[419]},{"name":"WAVE_FORMAT_LH_CODEC","features":[419]},{"name":"WAVE_FORMAT_LH_CODEC_CELP","features":[419]},{"name":"WAVE_FORMAT_LH_CODEC_SBC12","features":[419]},{"name":"WAVE_FORMAT_LH_CODEC_SBC16","features":[419]},{"name":"WAVE_FORMAT_LH_CODEC_SBC8","features":[419]},{"name":"WAVE_FORMAT_LIGHTWAVE_LOSSLESS","features":[419]},{"name":"WAVE_FORMAT_LRC","features":[419]},{"name":"WAVE_FORMAT_LUCENT_G723","features":[419]},{"name":"WAVE_FORMAT_LUCENT_SX5363S","features":[419]},{"name":"WAVE_FORMAT_LUCENT_SX8300P","features":[419]},{"name":"WAVE_FORMAT_MAKEAVIS","features":[419]},{"name":"WAVE_FORMAT_MALDEN_PHONYTALK","features":[419]},{"name":"WAVE_FORMAT_MEDIASONIC_G723","features":[419]},{"name":"WAVE_FORMAT_MEDIASPACE_ADPCM","features":[419]},{"name":"WAVE_FORMAT_MEDIAVISION_ADPCM","features":[419]},{"name":"WAVE_FORMAT_MICRONAS","features":[419]},{"name":"WAVE_FORMAT_MICRONAS_CELP833","features":[419]},{"name":"WAVE_FORMAT_MPEG","features":[419]},{"name":"WAVE_FORMAT_MPEG4_AAC","features":[419]},{"name":"WAVE_FORMAT_MPEGLAYER3","features":[419]},{"name":"WAVE_FORMAT_MPEG_ADTS_AAC","features":[419]},{"name":"WAVE_FORMAT_MPEG_HEAAC","features":[419]},{"name":"WAVE_FORMAT_MPEG_LOAS","features":[419]},{"name":"WAVE_FORMAT_MPEG_RAW_AAC","features":[419]},{"name":"WAVE_FORMAT_MSAUDIO1","features":[419]},{"name":"WAVE_FORMAT_MSG723","features":[419]},{"name":"WAVE_FORMAT_MSNAUDIO","features":[419]},{"name":"WAVE_FORMAT_MSRT24","features":[419]},{"name":"WAVE_FORMAT_MULAW","features":[419]},{"name":"WAVE_FORMAT_MULTITUDE_FT_SX20","features":[419]},{"name":"WAVE_FORMAT_MVI_MVI2","features":[419]},{"name":"WAVE_FORMAT_NEC_AAC","features":[419]},{"name":"WAVE_FORMAT_NICE_ACA","features":[419]},{"name":"WAVE_FORMAT_NICE_ADPCM","features":[419]},{"name":"WAVE_FORMAT_NICE_G728","features":[419]},{"name":"WAVE_FORMAT_NMS_VBXADPCM","features":[419]},{"name":"WAVE_FORMAT_NOKIA_ADAPTIVE_MULTIRATE","features":[419]},{"name":"WAVE_FORMAT_NOKIA_MPEG_ADTS_AAC","features":[419]},{"name":"WAVE_FORMAT_NOKIA_MPEG_RAW_AAC","features":[419]},{"name":"WAVE_FORMAT_NORCOM_VOICE_SYSTEMS_ADPCM","features":[419]},{"name":"WAVE_FORMAT_NORRIS","features":[419]},{"name":"WAVE_FORMAT_NTCSOFT_ALF2CM_ACM","features":[419]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1","features":[419]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_1_PLUS","features":[419]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2","features":[419]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_2_PLUS","features":[419]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3","features":[419]},{"name":"WAVE_FORMAT_OGG_VORBIS_MODE_3_PLUS","features":[419]},{"name":"WAVE_FORMAT_OKI_ADPCM","features":[419]},{"name":"WAVE_FORMAT_OLIADPCM","features":[419]},{"name":"WAVE_FORMAT_OLICELP","features":[419]},{"name":"WAVE_FORMAT_OLIGSM","features":[419]},{"name":"WAVE_FORMAT_OLIOPR","features":[419]},{"name":"WAVE_FORMAT_OLISBC","features":[419]},{"name":"WAVE_FORMAT_ON2_VP6_AUDIO","features":[419]},{"name":"WAVE_FORMAT_ON2_VP7_AUDIO","features":[419]},{"name":"WAVE_FORMAT_ONLIVE","features":[419]},{"name":"WAVE_FORMAT_OPUS","features":[419]},{"name":"WAVE_FORMAT_PAC","features":[419]},{"name":"WAVE_FORMAT_PACKED","features":[419]},{"name":"WAVE_FORMAT_PCM_S","features":[419]},{"name":"WAVE_FORMAT_PHILIPS_CELP","features":[419]},{"name":"WAVE_FORMAT_PHILIPS_GRUNDIG","features":[419]},{"name":"WAVE_FORMAT_PHILIPS_LPCBB","features":[419]},{"name":"WAVE_FORMAT_POLYCOM_G722","features":[419]},{"name":"WAVE_FORMAT_POLYCOM_G728","features":[419]},{"name":"WAVE_FORMAT_POLYCOM_G729_A","features":[419]},{"name":"WAVE_FORMAT_POLYCOM_SIREN","features":[419]},{"name":"WAVE_FORMAT_PROSODY_1612","features":[419]},{"name":"WAVE_FORMAT_PROSODY_8KBPS","features":[419]},{"name":"WAVE_FORMAT_QDESIGN_MUSIC","features":[419]},{"name":"WAVE_FORMAT_QUALCOMM_HALFRATE","features":[419]},{"name":"WAVE_FORMAT_QUALCOMM_PUREVOICE","features":[419]},{"name":"WAVE_FORMAT_QUARTERDECK","features":[419]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G720_A","features":[419]},{"name":"WAVE_FORMAT_RACAL_RECORDER_G723_1","features":[419]},{"name":"WAVE_FORMAT_RACAL_RECORDER_GSM","features":[419]},{"name":"WAVE_FORMAT_RACAL_RECORDER_TETRA_ACELP","features":[419]},{"name":"WAVE_FORMAT_RADIOTIME_TIME_SHIFT_RADIO","features":[419]},{"name":"WAVE_FORMAT_RAW_AAC1","features":[419]},{"name":"WAVE_FORMAT_RAW_SPORT","features":[419]},{"name":"WAVE_FORMAT_RHETOREX_ADPCM","features":[419]},{"name":"WAVE_FORMAT_ROCKWELL_ADPCM","features":[419]},{"name":"WAVE_FORMAT_ROCKWELL_DIGITALK","features":[419]},{"name":"WAVE_FORMAT_RT24","features":[419]},{"name":"WAVE_FORMAT_SANYO_LD_ADPCM","features":[419]},{"name":"WAVE_FORMAT_SBC24","features":[419]},{"name":"WAVE_FORMAT_SHARP_G726","features":[419]},{"name":"WAVE_FORMAT_SIERRA_ADPCM","features":[419]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP4800","features":[419]},{"name":"WAVE_FORMAT_SIPROLAB_ACELP8V3","features":[419]},{"name":"WAVE_FORMAT_SIPROLAB_ACEPLNET","features":[419]},{"name":"WAVE_FORMAT_SIPROLAB_G729","features":[419]},{"name":"WAVE_FORMAT_SIPROLAB_G729A","features":[419]},{"name":"WAVE_FORMAT_SIPROLAB_KELVIN","features":[419]},{"name":"WAVE_FORMAT_SOFTSOUND","features":[419]},{"name":"WAVE_FORMAT_SONARC","features":[419]},{"name":"WAVE_FORMAT_SONICFOUNDRY_LOSSLESS","features":[419]},{"name":"WAVE_FORMAT_SONY_ATRAC3","features":[419]},{"name":"WAVE_FORMAT_SONY_SCX","features":[419]},{"name":"WAVE_FORMAT_SONY_SCY","features":[419]},{"name":"WAVE_FORMAT_SONY_SPC","features":[419]},{"name":"WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS","features":[419]},{"name":"WAVE_FORMAT_SPEEX_VOICE","features":[419]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC008","features":[419]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP54","features":[419]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_CELP68","features":[419]},{"name":"WAVE_FORMAT_SYCOM_ACM_SYC701_G726L","features":[419]},{"name":"WAVE_FORMAT_SYMBOL_G729_A","features":[419]},{"name":"WAVE_FORMAT_TELUM_AUDIO","features":[419]},{"name":"WAVE_FORMAT_TELUM_IA_AUDIO","features":[419]},{"name":"WAVE_FORMAT_TPC","features":[419]},{"name":"WAVE_FORMAT_TUBGSM","features":[419]},{"name":"WAVE_FORMAT_UHER_ADPCM","features":[419]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO","features":[419]},{"name":"WAVE_FORMAT_ULEAD_DV_AUDIO_1","features":[419]},{"name":"WAVE_FORMAT_UNISYS_NAP_16K","features":[419]},{"name":"WAVE_FORMAT_UNISYS_NAP_ADPCM","features":[419]},{"name":"WAVE_FORMAT_UNISYS_NAP_ALAW","features":[419]},{"name":"WAVE_FORMAT_UNISYS_NAP_ULAW","features":[419]},{"name":"WAVE_FORMAT_UNKNOWN","features":[419]},{"name":"WAVE_FORMAT_VIANIX_MASC","features":[419]},{"name":"WAVE_FORMAT_VIVO_G723","features":[419]},{"name":"WAVE_FORMAT_VIVO_SIREN","features":[419]},{"name":"WAVE_FORMAT_VME_VMPCM","features":[419]},{"name":"WAVE_FORMAT_VOCORD_G721","features":[419]},{"name":"WAVE_FORMAT_VOCORD_G722_1","features":[419]},{"name":"WAVE_FORMAT_VOCORD_G723_1","features":[419]},{"name":"WAVE_FORMAT_VOCORD_G726","features":[419]},{"name":"WAVE_FORMAT_VOCORD_G728","features":[419]},{"name":"WAVE_FORMAT_VOCORD_G729","features":[419]},{"name":"WAVE_FORMAT_VOCORD_G729_A","features":[419]},{"name":"WAVE_FORMAT_VOCORD_LBC","features":[419]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_ADTS_AAC","features":[419]},{"name":"WAVE_FORMAT_VODAFONE_MPEG_RAW_AAC","features":[419]},{"name":"WAVE_FORMAT_VOICEAGE_AMR","features":[419]},{"name":"WAVE_FORMAT_VOICEAGE_AMR_WB","features":[419]},{"name":"WAVE_FORMAT_VOXWARE","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_AC10","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_AC16","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_AC20","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_AC8","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_BYTE_ALIGNED","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_RT24","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_RT24_SPEECH","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_RT29","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_RT29HW","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_SC3","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_SC3_1","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_TQ40","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_TQ60","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_VR12","features":[419]},{"name":"WAVE_FORMAT_VOXWARE_VR18","features":[419]},{"name":"WAVE_FORMAT_VSELP","features":[419]},{"name":"WAVE_FORMAT_WAVPACK_AUDIO","features":[419]},{"name":"WAVE_FORMAT_WM9_SPECTRUM_ANALYZER","features":[419]},{"name":"WAVE_FORMAT_WMASPDIF","features":[419]},{"name":"WAVE_FORMAT_WMAUDIO2","features":[419]},{"name":"WAVE_FORMAT_WMAUDIO3","features":[419]},{"name":"WAVE_FORMAT_WMAUDIO_LOSSLESS","features":[419]},{"name":"WAVE_FORMAT_WMAVOICE10","features":[419]},{"name":"WAVE_FORMAT_WMAVOICE9","features":[419]},{"name":"WAVE_FORMAT_WMF_SPECTRUM_ANAYZER","features":[419]},{"name":"WAVE_FORMAT_XEBEC","features":[419]},{"name":"WAVE_FORMAT_YAMAHA_ADPCM","features":[419]},{"name":"WAVE_FORMAT_ZOLL_ASAO","features":[419]},{"name":"WAVE_FORMAT_ZYXEL_ADPCM","features":[419]},{"name":"WAVE_MAPPER_S","features":[419]},{"name":"WIDM_ADDBUFFER","features":[419]},{"name":"WIDM_CLOSE","features":[419]},{"name":"WIDM_GETDEVCAPS","features":[419]},{"name":"WIDM_GETNUMDEVS","features":[419]},{"name":"WIDM_GETPOS","features":[419]},{"name":"WIDM_INIT","features":[419]},{"name":"WIDM_INIT_EX","features":[419]},{"name":"WIDM_OPEN","features":[419]},{"name":"WIDM_PREFERRED","features":[419]},{"name":"WIDM_PREPARE","features":[419]},{"name":"WIDM_RESET","features":[419]},{"name":"WIDM_START","features":[419]},{"name":"WIDM_STOP","features":[419]},{"name":"WIDM_UNPREPARE","features":[419]},{"name":"WMAUDIO2WAVEFORMAT","features":[420,419]},{"name":"WMAUDIO2_BITS_PER_SAMPLE","features":[419]},{"name":"WMAUDIO2_MAX_CHANNELS","features":[419]},{"name":"WMAUDIO3WAVEFORMAT","features":[420,419]},{"name":"WMAUDIO_BITS_PER_SAMPLE","features":[419]},{"name":"WMAUDIO_MAX_CHANNELS","features":[419]},{"name":"WM_CAP_ABORT","features":[419]},{"name":"WM_CAP_DLG_VIDEOCOMPRESSION","features":[419]},{"name":"WM_CAP_DLG_VIDEODISPLAY","features":[419]},{"name":"WM_CAP_DLG_VIDEOFORMAT","features":[419]},{"name":"WM_CAP_DLG_VIDEOSOURCE","features":[419]},{"name":"WM_CAP_DRIVER_CONNECT","features":[419]},{"name":"WM_CAP_DRIVER_DISCONNECT","features":[419]},{"name":"WM_CAP_DRIVER_GET_CAPS","features":[419]},{"name":"WM_CAP_DRIVER_GET_NAME","features":[419]},{"name":"WM_CAP_DRIVER_GET_NAMEA","features":[419]},{"name":"WM_CAP_DRIVER_GET_NAMEW","features":[419]},{"name":"WM_CAP_DRIVER_GET_VERSION","features":[419]},{"name":"WM_CAP_DRIVER_GET_VERSIONA","features":[419]},{"name":"WM_CAP_DRIVER_GET_VERSIONW","features":[419]},{"name":"WM_CAP_EDIT_COPY","features":[419]},{"name":"WM_CAP_END","features":[419]},{"name":"WM_CAP_FILE_ALLOCATE","features":[419]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILE","features":[419]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEA","features":[419]},{"name":"WM_CAP_FILE_GET_CAPTURE_FILEW","features":[419]},{"name":"WM_CAP_FILE_SAVEAS","features":[419]},{"name":"WM_CAP_FILE_SAVEASA","features":[419]},{"name":"WM_CAP_FILE_SAVEASW","features":[419]},{"name":"WM_CAP_FILE_SAVEDIB","features":[419]},{"name":"WM_CAP_FILE_SAVEDIBA","features":[419]},{"name":"WM_CAP_FILE_SAVEDIBW","features":[419]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILE","features":[419]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEA","features":[419]},{"name":"WM_CAP_FILE_SET_CAPTURE_FILEW","features":[419]},{"name":"WM_CAP_FILE_SET_INFOCHUNK","features":[419]},{"name":"WM_CAP_GET_AUDIOFORMAT","features":[419]},{"name":"WM_CAP_GET_CAPSTREAMPTR","features":[419]},{"name":"WM_CAP_GET_MCI_DEVICE","features":[419]},{"name":"WM_CAP_GET_MCI_DEVICEA","features":[419]},{"name":"WM_CAP_GET_MCI_DEVICEW","features":[419]},{"name":"WM_CAP_GET_SEQUENCE_SETUP","features":[419]},{"name":"WM_CAP_GET_STATUS","features":[419]},{"name":"WM_CAP_GET_USER_DATA","features":[419]},{"name":"WM_CAP_GET_VIDEOFORMAT","features":[419]},{"name":"WM_CAP_GRAB_FRAME","features":[419]},{"name":"WM_CAP_GRAB_FRAME_NOSTOP","features":[419]},{"name":"WM_CAP_PAL_AUTOCREATE","features":[419]},{"name":"WM_CAP_PAL_MANUALCREATE","features":[419]},{"name":"WM_CAP_PAL_OPEN","features":[419]},{"name":"WM_CAP_PAL_OPENA","features":[419]},{"name":"WM_CAP_PAL_OPENW","features":[419]},{"name":"WM_CAP_PAL_PASTE","features":[419]},{"name":"WM_CAP_PAL_SAVE","features":[419]},{"name":"WM_CAP_PAL_SAVEA","features":[419]},{"name":"WM_CAP_PAL_SAVEW","features":[419]},{"name":"WM_CAP_SEQUENCE","features":[419]},{"name":"WM_CAP_SEQUENCE_NOFILE","features":[419]},{"name":"WM_CAP_SET_AUDIOFORMAT","features":[419]},{"name":"WM_CAP_SET_CALLBACK_CAPCONTROL","features":[419]},{"name":"WM_CAP_SET_CALLBACK_ERROR","features":[419]},{"name":"WM_CAP_SET_CALLBACK_ERRORA","features":[419]},{"name":"WM_CAP_SET_CALLBACK_ERRORW","features":[419]},{"name":"WM_CAP_SET_CALLBACK_FRAME","features":[419]},{"name":"WM_CAP_SET_CALLBACK_STATUS","features":[419]},{"name":"WM_CAP_SET_CALLBACK_STATUSA","features":[419]},{"name":"WM_CAP_SET_CALLBACK_STATUSW","features":[419]},{"name":"WM_CAP_SET_CALLBACK_VIDEOSTREAM","features":[419]},{"name":"WM_CAP_SET_CALLBACK_WAVESTREAM","features":[419]},{"name":"WM_CAP_SET_CALLBACK_YIELD","features":[419]},{"name":"WM_CAP_SET_MCI_DEVICE","features":[419]},{"name":"WM_CAP_SET_MCI_DEVICEA","features":[419]},{"name":"WM_CAP_SET_MCI_DEVICEW","features":[419]},{"name":"WM_CAP_SET_OVERLAY","features":[419]},{"name":"WM_CAP_SET_PREVIEW","features":[419]},{"name":"WM_CAP_SET_PREVIEWRATE","features":[419]},{"name":"WM_CAP_SET_SCALE","features":[419]},{"name":"WM_CAP_SET_SCROLL","features":[419]},{"name":"WM_CAP_SET_SEQUENCE_SETUP","features":[419]},{"name":"WM_CAP_SET_USER_DATA","features":[419]},{"name":"WM_CAP_SET_VIDEOFORMAT","features":[419]},{"name":"WM_CAP_SINGLE_FRAME","features":[419]},{"name":"WM_CAP_SINGLE_FRAME_CLOSE","features":[419]},{"name":"WM_CAP_SINGLE_FRAME_OPEN","features":[419]},{"name":"WM_CAP_START","features":[419]},{"name":"WM_CAP_STOP","features":[419]},{"name":"WM_CAP_UNICODE_END","features":[419]},{"name":"WM_CAP_UNICODE_START","features":[419]},{"name":"WODM_BREAKLOOP","features":[419]},{"name":"WODM_BUSY","features":[419]},{"name":"WODM_CLOSE","features":[419]},{"name":"WODM_GETDEVCAPS","features":[419]},{"name":"WODM_GETNUMDEVS","features":[419]},{"name":"WODM_GETPITCH","features":[419]},{"name":"WODM_GETPLAYBACKRATE","features":[419]},{"name":"WODM_GETPOS","features":[419]},{"name":"WODM_GETVOLUME","features":[419]},{"name":"WODM_INIT","features":[419]},{"name":"WODM_INIT_EX","features":[419]},{"name":"WODM_OPEN","features":[419]},{"name":"WODM_PAUSE","features":[419]},{"name":"WODM_PREFERRED","features":[419]},{"name":"WODM_PREPARE","features":[419]},{"name":"WODM_RESET","features":[419]},{"name":"WODM_RESTART","features":[419]},{"name":"WODM_SETPITCH","features":[419]},{"name":"WODM_SETPLAYBACKRATE","features":[419]},{"name":"WODM_SETVOLUME","features":[419]},{"name":"WODM_UNPREPARE","features":[419]},{"name":"WODM_WRITE","features":[419]},{"name":"YAMAHA_ADPCMWAVEFORMAT","features":[420,419]},{"name":"YIELDPROC","features":[419]},{"name":"capCreateCaptureWindowA","features":[305,419]},{"name":"capCreateCaptureWindowW","features":[305,419]},{"name":"capGetDriverDescriptionA","features":[305,419]},{"name":"capGetDriverDescriptionW","features":[305,419]},{"name":"joyGetDevCapsA","features":[419]},{"name":"joyGetDevCapsW","features":[419]},{"name":"joyGetNumDevs","features":[419]},{"name":"joyGetPos","features":[419]},{"name":"joyGetPosEx","features":[419]},{"name":"joyGetThreshold","features":[419]},{"name":"joyReleaseCapture","features":[419]},{"name":"joySetCapture","features":[305,419]},{"name":"joySetThreshold","features":[419]},{"name":"mciDriverNotify","features":[305,419]},{"name":"mciDriverYield","features":[419]},{"name":"mciFreeCommandResource","features":[305,419]},{"name":"mciGetCreatorTask","features":[419]},{"name":"mciGetDeviceIDA","features":[419]},{"name":"mciGetDeviceIDFromElementIDA","features":[419]},{"name":"mciGetDeviceIDFromElementIDW","features":[419]},{"name":"mciGetDeviceIDW","features":[419]},{"name":"mciGetDriverData","features":[419]},{"name":"mciGetErrorStringA","features":[305,419]},{"name":"mciGetErrorStringW","features":[305,419]},{"name":"mciGetYieldProc","features":[419]},{"name":"mciLoadCommandResource","features":[305,419]},{"name":"mciSendCommandA","features":[419]},{"name":"mciSendCommandW","features":[419]},{"name":"mciSendStringA","features":[305,419]},{"name":"mciSendStringW","features":[305,419]},{"name":"mciSetDriverData","features":[305,419]},{"name":"mciSetYieldProc","features":[305,419]},{"name":"mmDrvInstall","features":[419]},{"name":"mmGetCurrentTask","features":[419]},{"name":"mmTaskBlock","features":[419]},{"name":"mmTaskCreate","features":[305,419]},{"name":"mmTaskSignal","features":[305,419]},{"name":"mmTaskYield","features":[419]},{"name":"mmioAdvance","features":[305,419]},{"name":"mmioAscend","features":[419]},{"name":"mmioClose","features":[419]},{"name":"mmioCreateChunk","features":[419]},{"name":"mmioDescend","features":[419]},{"name":"mmioFlush","features":[419]},{"name":"mmioGetInfo","features":[305,419]},{"name":"mmioInstallIOProcA","features":[305,419]},{"name":"mmioInstallIOProcW","features":[305,419]},{"name":"mmioOpenA","features":[305,419]},{"name":"mmioOpenW","features":[305,419]},{"name":"mmioRead","features":[419]},{"name":"mmioRenameA","features":[305,419]},{"name":"mmioRenameW","features":[305,419]},{"name":"mmioSeek","features":[419]},{"name":"mmioSendMessage","features":[305,419]},{"name":"mmioSetBuffer","features":[419]},{"name":"mmioSetInfo","features":[305,419]},{"name":"mmioStringToFOURCCA","features":[419]},{"name":"mmioStringToFOURCCW","features":[419]},{"name":"mmioWrite","features":[419]},{"name":"s_RIFFWAVE_inst","features":[419]},{"name":"sndOpenSound","features":[305,419]}],"441":[{"name":"DEVICE_SELECTION_DEVICE_TYPE","features":[437]},{"name":"DSF_ALL_DEVICES","features":[437]},{"name":"DSF_CPL_MODE","features":[437]},{"name":"DSF_DV_DEVICES","features":[437]},{"name":"DSF_FS_DEVICES","features":[437]},{"name":"DSF_SHOW_OFFLINE","features":[437]},{"name":"DSF_STI_DEVICES","features":[437]},{"name":"DSF_TWAIN_DEVICE","features":[437]},{"name":"DSF_TWAIN_DEVICES","features":[437]},{"name":"DSF_WIA_CAMERAS","features":[437]},{"name":"DSF_WIA_SCANNERS","features":[437]},{"name":"DSF_WPD_DEVICES","features":[437]},{"name":"DST_DV_DEVICE","features":[437]},{"name":"DST_FS_DEVICE","features":[437]},{"name":"DST_STI_DEVICE","features":[437]},{"name":"DST_UNKNOWN_DEVICE","features":[437]},{"name":"DST_WIA_DEVICE","features":[437]},{"name":"DST_WPD_DEVICE","features":[437]},{"name":"ERROR_ADVISE_MESSAGE_TYPE","features":[437]},{"name":"ERROR_ADVISE_RESULT","features":[437]},{"name":"IPhotoAcquire","features":[437]},{"name":"IPhotoAcquireDeviceSelectionDialog","features":[437]},{"name":"IPhotoAcquireItem","features":[437]},{"name":"IPhotoAcquireOptionsDialog","features":[437]},{"name":"IPhotoAcquirePlugin","features":[437]},{"name":"IPhotoAcquireProgressCB","features":[437]},{"name":"IPhotoAcquireSettings","features":[437]},{"name":"IPhotoAcquireSource","features":[437]},{"name":"IPhotoProgressActionCB","features":[437]},{"name":"IPhotoProgressDialog","features":[437]},{"name":"IUserInputString","features":[437]},{"name":"PAPS_CLEANUP","features":[437]},{"name":"PAPS_POSTSAVE","features":[437]},{"name":"PAPS_PRESAVE","features":[437]},{"name":"PHOTOACQUIRE_ERROR_OK","features":[437]},{"name":"PHOTOACQUIRE_ERROR_RETRYCANCEL","features":[437]},{"name":"PHOTOACQUIRE_ERROR_SKIPRETRYCANCEL","features":[437]},{"name":"PHOTOACQUIRE_ERROR_YESNO","features":[437]},{"name":"PHOTOACQUIRE_RESULT_ABORT","features":[437]},{"name":"PHOTOACQUIRE_RESULT_NO","features":[437]},{"name":"PHOTOACQUIRE_RESULT_OK","features":[437]},{"name":"PHOTOACQUIRE_RESULT_RETRY","features":[437]},{"name":"PHOTOACQUIRE_RESULT_SKIP","features":[437]},{"name":"PHOTOACQUIRE_RESULT_SKIP_ALL","features":[437]},{"name":"PHOTOACQUIRE_RESULT_YES","features":[437]},{"name":"PHOTOACQ_ABORT_ON_SETTINGS_UPDATE","features":[437]},{"name":"PHOTOACQ_DELETE_AFTER_ACQUIRE","features":[437]},{"name":"PHOTOACQ_DISABLE_AUTO_ROTATE","features":[437]},{"name":"PHOTOACQ_DISABLE_DB_INTEGRATION","features":[437]},{"name":"PHOTOACQ_DISABLE_DUPLICATE_DETECTION","features":[437]},{"name":"PHOTOACQ_DISABLE_GROUP_TAG_PROMPT","features":[437]},{"name":"PHOTOACQ_DISABLE_METADATA_WRITE","features":[437]},{"name":"PHOTOACQ_DISABLE_PLUGINS","features":[437]},{"name":"PHOTOACQ_DISABLE_SETTINGS_LINK","features":[437]},{"name":"PHOTOACQ_DISABLE_THUMBNAIL_PROGRESS","features":[437]},{"name":"PHOTOACQ_ENABLE_THUMBNAIL_CACHING","features":[437]},{"name":"PHOTOACQ_ERROR_RESTART_REQUIRED","features":[437]},{"name":"PHOTOACQ_IMPORT_VIDEO_AS_MULTIPLE_FILES","features":[437]},{"name":"PHOTOACQ_NO_GALLERY_LAUNCH","features":[437]},{"name":"PHOTOACQ_RUN_DEFAULT","features":[437]},{"name":"PKEY_PhotoAcquire_CameraSequenceNumber","features":[437,376]},{"name":"PKEY_PhotoAcquire_DuplicateDetectionID","features":[437,376]},{"name":"PKEY_PhotoAcquire_FinalFilename","features":[437,376]},{"name":"PKEY_PhotoAcquire_GroupTag","features":[437,376]},{"name":"PKEY_PhotoAcquire_IntermediateFile","features":[437,376]},{"name":"PKEY_PhotoAcquire_OriginalFilename","features":[437,376]},{"name":"PKEY_PhotoAcquire_RelativePathname","features":[437,376]},{"name":"PKEY_PhotoAcquire_SkipImport","features":[437,376]},{"name":"PKEY_PhotoAcquire_TransferResult","features":[437,376]},{"name":"PROGRESS_DIALOG_BITMAP_THUMBNAIL","features":[437]},{"name":"PROGRESS_DIALOG_CHECKBOX_ID","features":[437]},{"name":"PROGRESS_DIALOG_CHECKBOX_ID_DEFAULT","features":[437]},{"name":"PROGRESS_DIALOG_ICON_LARGE","features":[437]},{"name":"PROGRESS_DIALOG_ICON_SMALL","features":[437]},{"name":"PROGRESS_DIALOG_ICON_THUMBNAIL","features":[437]},{"name":"PROGRESS_DIALOG_IMAGE_TYPE","features":[437]},{"name":"PROGRESS_INDETERMINATE","features":[437]},{"name":"PhotoAcquire","features":[437]},{"name":"PhotoAcquireAutoPlayDropTarget","features":[437]},{"name":"PhotoAcquireAutoPlayHWEventHandler","features":[437]},{"name":"PhotoAcquireDeviceSelectionDialog","features":[437]},{"name":"PhotoAcquireOptionsDialog","features":[437]},{"name":"PhotoProgressDialog","features":[437]},{"name":"USER_INPUT_DEFAULT","features":[437]},{"name":"USER_INPUT_PATH_ELEMENT","features":[437]},{"name":"USER_INPUT_STRING_TYPE","features":[437]}],"442":[{"name":"AllWords","features":[438]},{"name":"DEFAULT_WEIGHT","features":[438]},{"name":"DISPIDSPRG","features":[438]},{"name":"DISPIDSPTSI","features":[438]},{"name":"DISPIDSPTSI_ActiveLength","features":[438]},{"name":"DISPIDSPTSI_ActiveOffset","features":[438]},{"name":"DISPIDSPTSI_SelectionLength","features":[438]},{"name":"DISPIDSPTSI_SelectionOffset","features":[438]},{"name":"DISPID_SABIBufferSize","features":[438]},{"name":"DISPID_SABIEventBias","features":[438]},{"name":"DISPID_SABIMinNotification","features":[438]},{"name":"DISPID_SABufferInfo","features":[438]},{"name":"DISPID_SABufferNotifySize","features":[438]},{"name":"DISPID_SADefaultFormat","features":[438]},{"name":"DISPID_SAEventHandle","features":[438]},{"name":"DISPID_SAFGetWaveFormatEx","features":[438]},{"name":"DISPID_SAFGuid","features":[438]},{"name":"DISPID_SAFSetWaveFormatEx","features":[438]},{"name":"DISPID_SAFType","features":[438]},{"name":"DISPID_SASCurrentDevicePosition","features":[438]},{"name":"DISPID_SASCurrentSeekPosition","features":[438]},{"name":"DISPID_SASFreeBufferSpace","features":[438]},{"name":"DISPID_SASNonBlockingIO","features":[438]},{"name":"DISPID_SASState","features":[438]},{"name":"DISPID_SASetState","features":[438]},{"name":"DISPID_SAStatus","features":[438]},{"name":"DISPID_SAVolume","features":[438]},{"name":"DISPID_SBSFormat","features":[438]},{"name":"DISPID_SBSRead","features":[438]},{"name":"DISPID_SBSSeek","features":[438]},{"name":"DISPID_SBSWrite","features":[438]},{"name":"DISPID_SCSBaseStream","features":[438]},{"name":"DISPID_SDKCreateKey","features":[438]},{"name":"DISPID_SDKDeleteKey","features":[438]},{"name":"DISPID_SDKDeleteValue","features":[438]},{"name":"DISPID_SDKEnumKeys","features":[438]},{"name":"DISPID_SDKEnumValues","features":[438]},{"name":"DISPID_SDKGetBinaryValue","features":[438]},{"name":"DISPID_SDKGetStringValue","features":[438]},{"name":"DISPID_SDKGetlongValue","features":[438]},{"name":"DISPID_SDKOpenKey","features":[438]},{"name":"DISPID_SDKSetBinaryValue","features":[438]},{"name":"DISPID_SDKSetLongValue","features":[438]},{"name":"DISPID_SDKSetStringValue","features":[438]},{"name":"DISPID_SFSClose","features":[438]},{"name":"DISPID_SFSOpen","features":[438]},{"name":"DISPID_SGRAddResource","features":[438]},{"name":"DISPID_SGRAddState","features":[438]},{"name":"DISPID_SGRAttributes","features":[438]},{"name":"DISPID_SGRClear","features":[438]},{"name":"DISPID_SGRId","features":[438]},{"name":"DISPID_SGRInitialState","features":[438]},{"name":"DISPID_SGRName","features":[438]},{"name":"DISPID_SGRSAddRuleTransition","features":[438]},{"name":"DISPID_SGRSAddSpecialTransition","features":[438]},{"name":"DISPID_SGRSAddWordTransition","features":[438]},{"name":"DISPID_SGRSRule","features":[438]},{"name":"DISPID_SGRSTNextState","features":[438]},{"name":"DISPID_SGRSTPropertyId","features":[438]},{"name":"DISPID_SGRSTPropertyName","features":[438]},{"name":"DISPID_SGRSTPropertyValue","features":[438]},{"name":"DISPID_SGRSTRule","features":[438]},{"name":"DISPID_SGRSTText","features":[438]},{"name":"DISPID_SGRSTType","features":[438]},{"name":"DISPID_SGRSTWeight","features":[438]},{"name":"DISPID_SGRSTransitions","features":[438]},{"name":"DISPID_SGRSTsCount","features":[438]},{"name":"DISPID_SGRSTsItem","features":[438]},{"name":"DISPID_SGRSTs_NewEnum","features":[438]},{"name":"DISPID_SGRsAdd","features":[438]},{"name":"DISPID_SGRsCommit","features":[438]},{"name":"DISPID_SGRsCommitAndSave","features":[438]},{"name":"DISPID_SGRsCount","features":[438]},{"name":"DISPID_SGRsDynamic","features":[438]},{"name":"DISPID_SGRsFindRule","features":[438]},{"name":"DISPID_SGRsItem","features":[438]},{"name":"DISPID_SGRs_NewEnum","features":[438]},{"name":"DISPID_SLAddPronunciation","features":[438]},{"name":"DISPID_SLAddPronunciationByPhoneIds","features":[438]},{"name":"DISPID_SLGenerationId","features":[438]},{"name":"DISPID_SLGetGenerationChange","features":[438]},{"name":"DISPID_SLGetPronunciations","features":[438]},{"name":"DISPID_SLGetWords","features":[438]},{"name":"DISPID_SLPLangId","features":[438]},{"name":"DISPID_SLPPartOfSpeech","features":[438]},{"name":"DISPID_SLPPhoneIds","features":[438]},{"name":"DISPID_SLPSymbolic","features":[438]},{"name":"DISPID_SLPType","features":[438]},{"name":"DISPID_SLPsCount","features":[438]},{"name":"DISPID_SLPsItem","features":[438]},{"name":"DISPID_SLPs_NewEnum","features":[438]},{"name":"DISPID_SLRemovePronunciation","features":[438]},{"name":"DISPID_SLRemovePronunciationByPhoneIds","features":[438]},{"name":"DISPID_SLWLangId","features":[438]},{"name":"DISPID_SLWPronunciations","features":[438]},{"name":"DISPID_SLWType","features":[438]},{"name":"DISPID_SLWWord","features":[438]},{"name":"DISPID_SLWsCount","features":[438]},{"name":"DISPID_SLWsItem","features":[438]},{"name":"DISPID_SLWs_NewEnum","features":[438]},{"name":"DISPID_SMSADeviceId","features":[438]},{"name":"DISPID_SMSALineId","features":[438]},{"name":"DISPID_SMSAMMHandle","features":[438]},{"name":"DISPID_SMSGetData","features":[438]},{"name":"DISPID_SMSSetData","features":[438]},{"name":"DISPID_SOTCDefault","features":[438]},{"name":"DISPID_SOTCEnumerateTokens","features":[438]},{"name":"DISPID_SOTCGetDataKey","features":[438]},{"name":"DISPID_SOTCId","features":[438]},{"name":"DISPID_SOTCSetId","features":[438]},{"name":"DISPID_SOTCategory","features":[438]},{"name":"DISPID_SOTCreateInstance","features":[438]},{"name":"DISPID_SOTDataKey","features":[438]},{"name":"DISPID_SOTDisplayUI","features":[438]},{"name":"DISPID_SOTGetAttribute","features":[438]},{"name":"DISPID_SOTGetDescription","features":[438]},{"name":"DISPID_SOTGetStorageFileName","features":[438]},{"name":"DISPID_SOTId","features":[438]},{"name":"DISPID_SOTIsUISupported","features":[438]},{"name":"DISPID_SOTMatchesAttributes","features":[438]},{"name":"DISPID_SOTRemove","features":[438]},{"name":"DISPID_SOTRemoveStorageFileName","features":[438]},{"name":"DISPID_SOTSetId","features":[438]},{"name":"DISPID_SOTsCount","features":[438]},{"name":"DISPID_SOTsItem","features":[438]},{"name":"DISPID_SOTs_NewEnum","features":[438]},{"name":"DISPID_SPACommit","features":[438]},{"name":"DISPID_SPANumberOfElementsInResult","features":[438]},{"name":"DISPID_SPAPhraseInfo","features":[438]},{"name":"DISPID_SPARecoResult","features":[438]},{"name":"DISPID_SPAStartElementInResult","features":[438]},{"name":"DISPID_SPAsCount","features":[438]},{"name":"DISPID_SPAsItem","features":[438]},{"name":"DISPID_SPAs_NewEnum","features":[438]},{"name":"DISPID_SPCIdToPhone","features":[438]},{"name":"DISPID_SPCLangId","features":[438]},{"name":"DISPID_SPCPhoneToId","features":[438]},{"name":"DISPID_SPEActualConfidence","features":[438]},{"name":"DISPID_SPEAudioSizeBytes","features":[438]},{"name":"DISPID_SPEAudioSizeTime","features":[438]},{"name":"DISPID_SPEAudioStreamOffset","features":[438]},{"name":"DISPID_SPEAudioTimeOffset","features":[438]},{"name":"DISPID_SPEDisplayAttributes","features":[438]},{"name":"DISPID_SPEDisplayText","features":[438]},{"name":"DISPID_SPEEngineConfidence","features":[438]},{"name":"DISPID_SPELexicalForm","features":[438]},{"name":"DISPID_SPEPronunciation","features":[438]},{"name":"DISPID_SPERequiredConfidence","features":[438]},{"name":"DISPID_SPERetainedSizeBytes","features":[438]},{"name":"DISPID_SPERetainedStreamOffset","features":[438]},{"name":"DISPID_SPEsCount","features":[438]},{"name":"DISPID_SPEsItem","features":[438]},{"name":"DISPID_SPEs_NewEnum","features":[438]},{"name":"DISPID_SPIAudioSizeBytes","features":[438]},{"name":"DISPID_SPIAudioSizeTime","features":[438]},{"name":"DISPID_SPIAudioStreamPosition","features":[438]},{"name":"DISPID_SPIElements","features":[438]},{"name":"DISPID_SPIEngineId","features":[438]},{"name":"DISPID_SPIEnginePrivateData","features":[438]},{"name":"DISPID_SPIGetDisplayAttributes","features":[438]},{"name":"DISPID_SPIGetText","features":[438]},{"name":"DISPID_SPIGrammarId","features":[438]},{"name":"DISPID_SPILanguageId","features":[438]},{"name":"DISPID_SPIProperties","features":[438]},{"name":"DISPID_SPIReplacements","features":[438]},{"name":"DISPID_SPIRetainedSizeBytes","features":[438]},{"name":"DISPID_SPIRule","features":[438]},{"name":"DISPID_SPISaveToMemory","features":[438]},{"name":"DISPID_SPIStartTime","features":[438]},{"name":"DISPID_SPPBRestorePhraseFromMemory","features":[438]},{"name":"DISPID_SPPChildren","features":[438]},{"name":"DISPID_SPPConfidence","features":[438]},{"name":"DISPID_SPPEngineConfidence","features":[438]},{"name":"DISPID_SPPFirstElement","features":[438]},{"name":"DISPID_SPPId","features":[438]},{"name":"DISPID_SPPName","features":[438]},{"name":"DISPID_SPPNumberOfElements","features":[438]},{"name":"DISPID_SPPParent","features":[438]},{"name":"DISPID_SPPValue","features":[438]},{"name":"DISPID_SPPsCount","features":[438]},{"name":"DISPID_SPPsItem","features":[438]},{"name":"DISPID_SPPs_NewEnum","features":[438]},{"name":"DISPID_SPRDisplayAttributes","features":[438]},{"name":"DISPID_SPRFirstElement","features":[438]},{"name":"DISPID_SPRNumberOfElements","features":[438]},{"name":"DISPID_SPRText","features":[438]},{"name":"DISPID_SPRsCount","features":[438]},{"name":"DISPID_SPRsItem","features":[438]},{"name":"DISPID_SPRs_NewEnum","features":[438]},{"name":"DISPID_SPRuleChildren","features":[438]},{"name":"DISPID_SPRuleConfidence","features":[438]},{"name":"DISPID_SPRuleEngineConfidence","features":[438]},{"name":"DISPID_SPRuleFirstElement","features":[438]},{"name":"DISPID_SPRuleId","features":[438]},{"name":"DISPID_SPRuleName","features":[438]},{"name":"DISPID_SPRuleNumberOfElements","features":[438]},{"name":"DISPID_SPRuleParent","features":[438]},{"name":"DISPID_SPRulesCount","features":[438]},{"name":"DISPID_SPRulesItem","features":[438]},{"name":"DISPID_SPRules_NewEnum","features":[438]},{"name":"DISPID_SRAllowAudioInputFormatChangesOnNextSet","features":[438]},{"name":"DISPID_SRAllowVoiceFormatMatchingOnNextSet","features":[438]},{"name":"DISPID_SRAudioInput","features":[438]},{"name":"DISPID_SRAudioInputStream","features":[438]},{"name":"DISPID_SRCAudioInInterferenceStatus","features":[438]},{"name":"DISPID_SRCBookmark","features":[438]},{"name":"DISPID_SRCCmdMaxAlternates","features":[438]},{"name":"DISPID_SRCCreateGrammar","features":[438]},{"name":"DISPID_SRCCreateResultFromMemory","features":[438]},{"name":"DISPID_SRCEAdaptation","features":[438]},{"name":"DISPID_SRCEAudioLevel","features":[438]},{"name":"DISPID_SRCEBookmark","features":[438]},{"name":"DISPID_SRCEEndStream","features":[438]},{"name":"DISPID_SRCEEnginePrivate","features":[438]},{"name":"DISPID_SRCEFalseRecognition","features":[438]},{"name":"DISPID_SRCEHypothesis","features":[438]},{"name":"DISPID_SRCEInterference","features":[438]},{"name":"DISPID_SRCEPhraseStart","features":[438]},{"name":"DISPID_SRCEPropertyNumberChange","features":[438]},{"name":"DISPID_SRCEPropertyStringChange","features":[438]},{"name":"DISPID_SRCERecognition","features":[438]},{"name":"DISPID_SRCERecognitionForOtherContext","features":[438]},{"name":"DISPID_SRCERecognizerStateChange","features":[438]},{"name":"DISPID_SRCERequestUI","features":[438]},{"name":"DISPID_SRCESoundEnd","features":[438]},{"name":"DISPID_SRCESoundStart","features":[438]},{"name":"DISPID_SRCEStartStream","features":[438]},{"name":"DISPID_SRCEventInterests","features":[438]},{"name":"DISPID_SRCPause","features":[438]},{"name":"DISPID_SRCRecognizer","features":[438]},{"name":"DISPID_SRCRequestedUIType","features":[438]},{"name":"DISPID_SRCResume","features":[438]},{"name":"DISPID_SRCRetainedAudio","features":[438]},{"name":"DISPID_SRCRetainedAudioFormat","features":[438]},{"name":"DISPID_SRCSetAdaptationData","features":[438]},{"name":"DISPID_SRCState","features":[438]},{"name":"DISPID_SRCVoice","features":[438]},{"name":"DISPID_SRCVoicePurgeEvent","features":[438]},{"name":"DISPID_SRCreateRecoContext","features":[438]},{"name":"DISPID_SRDisplayUI","features":[438]},{"name":"DISPID_SREmulateRecognition","features":[438]},{"name":"DISPID_SRGCmdLoadFromFile","features":[438]},{"name":"DISPID_SRGCmdLoadFromMemory","features":[438]},{"name":"DISPID_SRGCmdLoadFromObject","features":[438]},{"name":"DISPID_SRGCmdLoadFromProprietaryGrammar","features":[438]},{"name":"DISPID_SRGCmdLoadFromResource","features":[438]},{"name":"DISPID_SRGCmdSetRuleIdState","features":[438]},{"name":"DISPID_SRGCmdSetRuleState","features":[438]},{"name":"DISPID_SRGCommit","features":[438]},{"name":"DISPID_SRGDictationLoad","features":[438]},{"name":"DISPID_SRGDictationSetState","features":[438]},{"name":"DISPID_SRGDictationUnload","features":[438]},{"name":"DISPID_SRGId","features":[438]},{"name":"DISPID_SRGIsPronounceable","features":[438]},{"name":"DISPID_SRGRecoContext","features":[438]},{"name":"DISPID_SRGReset","features":[438]},{"name":"DISPID_SRGRules","features":[438]},{"name":"DISPID_SRGSetTextSelection","features":[438]},{"name":"DISPID_SRGSetWordSequenceData","features":[438]},{"name":"DISPID_SRGState","features":[438]},{"name":"DISPID_SRGetFormat","features":[438]},{"name":"DISPID_SRGetPropertyNumber","features":[438]},{"name":"DISPID_SRGetPropertyString","features":[438]},{"name":"DISPID_SRGetRecognizers","features":[438]},{"name":"DISPID_SRIsShared","features":[438]},{"name":"DISPID_SRIsUISupported","features":[438]},{"name":"DISPID_SRProfile","features":[438]},{"name":"DISPID_SRRAlternates","features":[438]},{"name":"DISPID_SRRAudio","features":[438]},{"name":"DISPID_SRRAudioFormat","features":[438]},{"name":"DISPID_SRRDiscardResultInfo","features":[438]},{"name":"DISPID_SRRGetXMLErrorInfo","features":[438]},{"name":"DISPID_SRRGetXMLResult","features":[438]},{"name":"DISPID_SRRPhraseInfo","features":[438]},{"name":"DISPID_SRRRecoContext","features":[438]},{"name":"DISPID_SRRSaveToMemory","features":[438]},{"name":"DISPID_SRRSetTextFeedback","features":[438]},{"name":"DISPID_SRRSpeakAudio","features":[438]},{"name":"DISPID_SRRTLength","features":[438]},{"name":"DISPID_SRRTOffsetFromStart","features":[438]},{"name":"DISPID_SRRTStreamTime","features":[438]},{"name":"DISPID_SRRTTickCount","features":[438]},{"name":"DISPID_SRRTimes","features":[438]},{"name":"DISPID_SRRecognizer","features":[438]},{"name":"DISPID_SRSAudioStatus","features":[438]},{"name":"DISPID_SRSClsidEngine","features":[438]},{"name":"DISPID_SRSCurrentStreamNumber","features":[438]},{"name":"DISPID_SRSCurrentStreamPosition","features":[438]},{"name":"DISPID_SRSNumberOfActiveRules","features":[438]},{"name":"DISPID_SRSSupportedLanguages","features":[438]},{"name":"DISPID_SRSetPropertyNumber","features":[438]},{"name":"DISPID_SRSetPropertyString","features":[438]},{"name":"DISPID_SRState","features":[438]},{"name":"DISPID_SRStatus","features":[438]},{"name":"DISPID_SVAlertBoundary","features":[438]},{"name":"DISPID_SVAllowAudioOuputFormatChangesOnNextSet","features":[438]},{"name":"DISPID_SVAudioOutput","features":[438]},{"name":"DISPID_SVAudioOutputStream","features":[438]},{"name":"DISPID_SVDisplayUI","features":[438]},{"name":"DISPID_SVEAudioLevel","features":[438]},{"name":"DISPID_SVEBookmark","features":[438]},{"name":"DISPID_SVEEnginePrivate","features":[438]},{"name":"DISPID_SVEPhoneme","features":[438]},{"name":"DISPID_SVESentenceBoundary","features":[438]},{"name":"DISPID_SVEStreamEnd","features":[438]},{"name":"DISPID_SVEStreamStart","features":[438]},{"name":"DISPID_SVEViseme","features":[438]},{"name":"DISPID_SVEVoiceChange","features":[438]},{"name":"DISPID_SVEWord","features":[438]},{"name":"DISPID_SVEventInterests","features":[438]},{"name":"DISPID_SVGetAudioInputs","features":[438]},{"name":"DISPID_SVGetAudioOutputs","features":[438]},{"name":"DISPID_SVGetProfiles","features":[438]},{"name":"DISPID_SVGetVoices","features":[438]},{"name":"DISPID_SVIsUISupported","features":[438]},{"name":"DISPID_SVPause","features":[438]},{"name":"DISPID_SVPriority","features":[438]},{"name":"DISPID_SVRate","features":[438]},{"name":"DISPID_SVResume","features":[438]},{"name":"DISPID_SVSCurrentStreamNumber","features":[438]},{"name":"DISPID_SVSInputSentenceLength","features":[438]},{"name":"DISPID_SVSInputSentencePosition","features":[438]},{"name":"DISPID_SVSInputWordLength","features":[438]},{"name":"DISPID_SVSInputWordPosition","features":[438]},{"name":"DISPID_SVSLastBookmark","features":[438]},{"name":"DISPID_SVSLastBookmarkId","features":[438]},{"name":"DISPID_SVSLastResult","features":[438]},{"name":"DISPID_SVSLastStreamNumberQueued","features":[438]},{"name":"DISPID_SVSPhonemeId","features":[438]},{"name":"DISPID_SVSRunningState","features":[438]},{"name":"DISPID_SVSVisemeId","features":[438]},{"name":"DISPID_SVSkip","features":[438]},{"name":"DISPID_SVSpeak","features":[438]},{"name":"DISPID_SVSpeakCompleteEvent","features":[438]},{"name":"DISPID_SVSpeakStream","features":[438]},{"name":"DISPID_SVStatus","features":[438]},{"name":"DISPID_SVSyncronousSpeakTimeout","features":[438]},{"name":"DISPID_SVVoice","features":[438]},{"name":"DISPID_SVVolume","features":[438]},{"name":"DISPID_SVWaitUntilDone","features":[438]},{"name":"DISPID_SWFEAvgBytesPerSec","features":[438]},{"name":"DISPID_SWFEBitsPerSample","features":[438]},{"name":"DISPID_SWFEBlockAlign","features":[438]},{"name":"DISPID_SWFEChannels","features":[438]},{"name":"DISPID_SWFEExtraData","features":[438]},{"name":"DISPID_SWFEFormatTag","features":[438]},{"name":"DISPID_SWFESamplesPerSec","features":[438]},{"name":"DISPID_SpeechAudio","features":[438]},{"name":"DISPID_SpeechAudioBufferInfo","features":[438]},{"name":"DISPID_SpeechAudioFormat","features":[438]},{"name":"DISPID_SpeechAudioStatus","features":[438]},{"name":"DISPID_SpeechBaseStream","features":[438]},{"name":"DISPID_SpeechCustomStream","features":[438]},{"name":"DISPID_SpeechDataKey","features":[438]},{"name":"DISPID_SpeechFileStream","features":[438]},{"name":"DISPID_SpeechGrammarRule","features":[438]},{"name":"DISPID_SpeechGrammarRuleState","features":[438]},{"name":"DISPID_SpeechGrammarRuleStateTransition","features":[438]},{"name":"DISPID_SpeechGrammarRuleStateTransitions","features":[438]},{"name":"DISPID_SpeechGrammarRules","features":[438]},{"name":"DISPID_SpeechLexicon","features":[438]},{"name":"DISPID_SpeechLexiconProns","features":[438]},{"name":"DISPID_SpeechLexiconPronunciation","features":[438]},{"name":"DISPID_SpeechLexiconWord","features":[438]},{"name":"DISPID_SpeechLexiconWords","features":[438]},{"name":"DISPID_SpeechMMSysAudio","features":[438]},{"name":"DISPID_SpeechMemoryStream","features":[438]},{"name":"DISPID_SpeechObjectToken","features":[438]},{"name":"DISPID_SpeechObjectTokenCategory","features":[438]},{"name":"DISPID_SpeechObjectTokens","features":[438]},{"name":"DISPID_SpeechPhoneConverter","features":[438]},{"name":"DISPID_SpeechPhraseAlternate","features":[438]},{"name":"DISPID_SpeechPhraseAlternates","features":[438]},{"name":"DISPID_SpeechPhraseBuilder","features":[438]},{"name":"DISPID_SpeechPhraseElement","features":[438]},{"name":"DISPID_SpeechPhraseElements","features":[438]},{"name":"DISPID_SpeechPhraseInfo","features":[438]},{"name":"DISPID_SpeechPhraseProperties","features":[438]},{"name":"DISPID_SpeechPhraseProperty","features":[438]},{"name":"DISPID_SpeechPhraseReplacement","features":[438]},{"name":"DISPID_SpeechPhraseReplacements","features":[438]},{"name":"DISPID_SpeechPhraseRule","features":[438]},{"name":"DISPID_SpeechPhraseRules","features":[438]},{"name":"DISPID_SpeechRecoContext","features":[438]},{"name":"DISPID_SpeechRecoContextEvents","features":[438]},{"name":"DISPID_SpeechRecoResult","features":[438]},{"name":"DISPID_SpeechRecoResult2","features":[438]},{"name":"DISPID_SpeechRecoResultTimes","features":[438]},{"name":"DISPID_SpeechRecognizer","features":[438]},{"name":"DISPID_SpeechRecognizerStatus","features":[438]},{"name":"DISPID_SpeechVoice","features":[438]},{"name":"DISPID_SpeechVoiceEvent","features":[438]},{"name":"DISPID_SpeechVoiceStatus","features":[438]},{"name":"DISPID_SpeechWaveFormatEx","features":[438]},{"name":"DISPID_SpeechXMLRecoResult","features":[438]},{"name":"IEnumSpObjectTokens","features":[438]},{"name":"ISpAudio","features":[438,356]},{"name":"ISpCFGInterpreter","features":[438]},{"name":"ISpCFGInterpreterSite","features":[438]},{"name":"ISpContainerLexicon","features":[438]},{"name":"ISpDataKey","features":[438]},{"name":"ISpDisplayAlternates","features":[438]},{"name":"ISpEnginePronunciation","features":[438]},{"name":"ISpErrorLog","features":[438]},{"name":"ISpEventSink","features":[438]},{"name":"ISpEventSource","features":[438]},{"name":"ISpEventSource2","features":[438]},{"name":"ISpGramCompBackend","features":[438]},{"name":"ISpGrammarBuilder","features":[438]},{"name":"ISpGrammarBuilder2","features":[438]},{"name":"ISpGrammarCompiler","features":[438]},{"name":"ISpITNProcessor","features":[438]},{"name":"ISpLexicon","features":[438]},{"name":"ISpMMSysAudio","features":[438,356]},{"name":"ISpNotifyCallback","features":[438]},{"name":"ISpNotifySink","features":[438]},{"name":"ISpNotifySource","features":[438]},{"name":"ISpNotifyTranslator","features":[438]},{"name":"ISpObjectToken","features":[438]},{"name":"ISpObjectTokenCategory","features":[438]},{"name":"ISpObjectTokenEnumBuilder","features":[438]},{"name":"ISpObjectTokenInit","features":[438]},{"name":"ISpObjectWithToken","features":[438]},{"name":"ISpPhoneConverter","features":[438]},{"name":"ISpPhoneticAlphabetConverter","features":[438]},{"name":"ISpPhoneticAlphabetSelection","features":[438]},{"name":"ISpPhrase","features":[438]},{"name":"ISpPhrase2","features":[438]},{"name":"ISpPhraseAlt","features":[438]},{"name":"ISpPhraseBuilder","features":[438]},{"name":"ISpPrivateEngineCallEx","features":[438]},{"name":"ISpProperties","features":[438]},{"name":"ISpRecoContext","features":[438]},{"name":"ISpRecoContext2","features":[438]},{"name":"ISpRecoGrammar","features":[438]},{"name":"ISpRecoGrammar2","features":[438]},{"name":"ISpRecoResult","features":[438]},{"name":"ISpRecoResult2","features":[438]},{"name":"ISpRecognizer","features":[438]},{"name":"ISpRecognizer2","features":[438]},{"name":"ISpRegDataKey","features":[438]},{"name":"ISpResourceManager","features":[438,356]},{"name":"ISpSRAlternates","features":[438]},{"name":"ISpSRAlternates2","features":[438]},{"name":"ISpSREngine","features":[438]},{"name":"ISpSREngine2","features":[438]},{"name":"ISpSREngineSite","features":[438]},{"name":"ISpSREngineSite2","features":[438]},{"name":"ISpSerializeState","features":[438]},{"name":"ISpShortcut","features":[438]},{"name":"ISpStream","features":[438,356]},{"name":"ISpStreamFormat","features":[438,356]},{"name":"ISpStreamFormatConverter","features":[438,356]},{"name":"ISpTTSEngine","features":[438]},{"name":"ISpTTSEngineSite","features":[438]},{"name":"ISpTask","features":[438]},{"name":"ISpTaskManager","features":[438]},{"name":"ISpThreadControl","features":[438]},{"name":"ISpThreadTask","features":[438]},{"name":"ISpTokenUI","features":[438]},{"name":"ISpTranscript","features":[438]},{"name":"ISpVoice","features":[438]},{"name":"ISpXMLRecoResult","features":[438]},{"name":"ISpeechAudio","features":[438,356]},{"name":"ISpeechAudioBufferInfo","features":[438,356]},{"name":"ISpeechAudioFormat","features":[438,356]},{"name":"ISpeechAudioStatus","features":[438,356]},{"name":"ISpeechBaseStream","features":[438,356]},{"name":"ISpeechCustomStream","features":[438,356]},{"name":"ISpeechDataKey","features":[438,356]},{"name":"ISpeechFileStream","features":[438,356]},{"name":"ISpeechGrammarRule","features":[438,356]},{"name":"ISpeechGrammarRuleState","features":[438,356]},{"name":"ISpeechGrammarRuleStateTransition","features":[438,356]},{"name":"ISpeechGrammarRuleStateTransitions","features":[438,356]},{"name":"ISpeechGrammarRules","features":[438,356]},{"name":"ISpeechLexicon","features":[438,356]},{"name":"ISpeechLexiconPronunciation","features":[438,356]},{"name":"ISpeechLexiconPronunciations","features":[438,356]},{"name":"ISpeechLexiconWord","features":[438,356]},{"name":"ISpeechLexiconWords","features":[438,356]},{"name":"ISpeechMMSysAudio","features":[438,356]},{"name":"ISpeechMemoryStream","features":[438,356]},{"name":"ISpeechObjectToken","features":[438,356]},{"name":"ISpeechObjectTokenCategory","features":[438,356]},{"name":"ISpeechObjectTokens","features":[438,356]},{"name":"ISpeechPhoneConverter","features":[438,356]},{"name":"ISpeechPhraseAlternate","features":[438,356]},{"name":"ISpeechPhraseAlternates","features":[438,356]},{"name":"ISpeechPhraseElement","features":[438,356]},{"name":"ISpeechPhraseElements","features":[438,356]},{"name":"ISpeechPhraseInfo","features":[438,356]},{"name":"ISpeechPhraseInfoBuilder","features":[438,356]},{"name":"ISpeechPhraseProperties","features":[438,356]},{"name":"ISpeechPhraseProperty","features":[438,356]},{"name":"ISpeechPhraseReplacement","features":[438,356]},{"name":"ISpeechPhraseReplacements","features":[438,356]},{"name":"ISpeechPhraseRule","features":[438,356]},{"name":"ISpeechPhraseRules","features":[438,356]},{"name":"ISpeechRecoContext","features":[438,356]},{"name":"ISpeechRecoGrammar","features":[438,356]},{"name":"ISpeechRecoResult","features":[438,356]},{"name":"ISpeechRecoResult2","features":[438,356]},{"name":"ISpeechRecoResultDispatch","features":[438,356]},{"name":"ISpeechRecoResultTimes","features":[438,356]},{"name":"ISpeechRecognizer","features":[438,356]},{"name":"ISpeechRecognizerStatus","features":[438,356]},{"name":"ISpeechResourceLoader","features":[438,356]},{"name":"ISpeechTextSelectionInformation","features":[438,356]},{"name":"ISpeechVoice","features":[438,356]},{"name":"ISpeechVoiceStatus","features":[438,356]},{"name":"ISpeechWaveFormatEx","features":[438,356]},{"name":"ISpeechXMLRecoResult","features":[438,356]},{"name":"OrderedSubset","features":[438]},{"name":"OrderedSubsetContentRequired","features":[438]},{"name":"PA_Ipa","features":[438]},{"name":"PA_Sapi","features":[438]},{"name":"PA_Ups","features":[438]},{"name":"PHONETICALPHABET","features":[438]},{"name":"SAFT11kHz16BitMono","features":[438]},{"name":"SAFT11kHz16BitStereo","features":[438]},{"name":"SAFT11kHz8BitMono","features":[438]},{"name":"SAFT11kHz8BitStereo","features":[438]},{"name":"SAFT12kHz16BitMono","features":[438]},{"name":"SAFT12kHz16BitStereo","features":[438]},{"name":"SAFT12kHz8BitMono","features":[438]},{"name":"SAFT12kHz8BitStereo","features":[438]},{"name":"SAFT16kHz16BitMono","features":[438]},{"name":"SAFT16kHz16BitStereo","features":[438]},{"name":"SAFT16kHz8BitMono","features":[438]},{"name":"SAFT16kHz8BitStereo","features":[438]},{"name":"SAFT22kHz16BitMono","features":[438]},{"name":"SAFT22kHz16BitStereo","features":[438]},{"name":"SAFT22kHz8BitMono","features":[438]},{"name":"SAFT22kHz8BitStereo","features":[438]},{"name":"SAFT24kHz16BitMono","features":[438]},{"name":"SAFT24kHz16BitStereo","features":[438]},{"name":"SAFT24kHz8BitMono","features":[438]},{"name":"SAFT24kHz8BitStereo","features":[438]},{"name":"SAFT32kHz16BitMono","features":[438]},{"name":"SAFT32kHz16BitStereo","features":[438]},{"name":"SAFT32kHz8BitMono","features":[438]},{"name":"SAFT32kHz8BitStereo","features":[438]},{"name":"SAFT44kHz16BitMono","features":[438]},{"name":"SAFT44kHz16BitStereo","features":[438]},{"name":"SAFT44kHz8BitMono","features":[438]},{"name":"SAFT44kHz8BitStereo","features":[438]},{"name":"SAFT48kHz16BitMono","features":[438]},{"name":"SAFT48kHz16BitStereo","features":[438]},{"name":"SAFT48kHz8BitMono","features":[438]},{"name":"SAFT48kHz8BitStereo","features":[438]},{"name":"SAFT8kHz16BitMono","features":[438]},{"name":"SAFT8kHz16BitStereo","features":[438]},{"name":"SAFT8kHz8BitMono","features":[438]},{"name":"SAFT8kHz8BitStereo","features":[438]},{"name":"SAFTADPCM_11kHzMono","features":[438]},{"name":"SAFTADPCM_11kHzStereo","features":[438]},{"name":"SAFTADPCM_22kHzMono","features":[438]},{"name":"SAFTADPCM_22kHzStereo","features":[438]},{"name":"SAFTADPCM_44kHzMono","features":[438]},{"name":"SAFTADPCM_44kHzStereo","features":[438]},{"name":"SAFTADPCM_8kHzMono","features":[438]},{"name":"SAFTADPCM_8kHzStereo","features":[438]},{"name":"SAFTCCITT_ALaw_11kHzMono","features":[438]},{"name":"SAFTCCITT_ALaw_11kHzStereo","features":[438]},{"name":"SAFTCCITT_ALaw_22kHzMono","features":[438]},{"name":"SAFTCCITT_ALaw_22kHzStereo","features":[438]},{"name":"SAFTCCITT_ALaw_44kHzMono","features":[438]},{"name":"SAFTCCITT_ALaw_44kHzStereo","features":[438]},{"name":"SAFTCCITT_ALaw_8kHzMono","features":[438]},{"name":"SAFTCCITT_ALaw_8kHzStereo","features":[438]},{"name":"SAFTCCITT_uLaw_11kHzMono","features":[438]},{"name":"SAFTCCITT_uLaw_11kHzStereo","features":[438]},{"name":"SAFTCCITT_uLaw_22kHzMono","features":[438]},{"name":"SAFTCCITT_uLaw_22kHzStereo","features":[438]},{"name":"SAFTCCITT_uLaw_44kHzMono","features":[438]},{"name":"SAFTCCITT_uLaw_44kHzStereo","features":[438]},{"name":"SAFTCCITT_uLaw_8kHzMono","features":[438]},{"name":"SAFTCCITT_uLaw_8kHzStereo","features":[438]},{"name":"SAFTDefault","features":[438]},{"name":"SAFTExtendedAudioFormat","features":[438]},{"name":"SAFTGSM610_11kHzMono","features":[438]},{"name":"SAFTGSM610_22kHzMono","features":[438]},{"name":"SAFTGSM610_44kHzMono","features":[438]},{"name":"SAFTGSM610_8kHzMono","features":[438]},{"name":"SAFTNoAssignedFormat","features":[438]},{"name":"SAFTNonStandardFormat","features":[438]},{"name":"SAFTText","features":[438]},{"name":"SAFTTrueSpeech_8kHz1BitMono","features":[438]},{"name":"SAPI_ERROR_BASE","features":[438]},{"name":"SASClosed","features":[438]},{"name":"SASPause","features":[438]},{"name":"SASRun","features":[438]},{"name":"SASStop","features":[438]},{"name":"SBONone","features":[438]},{"name":"SBOPause","features":[438]},{"name":"SDA_Consume_Leading_Spaces","features":[438]},{"name":"SDA_No_Trailing_Space","features":[438]},{"name":"SDA_One_Trailing_Space","features":[438]},{"name":"SDA_Two_Trailing_Spaces","features":[438]},{"name":"SDKLCurrentConfig","features":[438]},{"name":"SDKLCurrentUser","features":[438]},{"name":"SDKLDefaultLocation","features":[438]},{"name":"SDKLLocalMachine","features":[438]},{"name":"SDTAll","features":[438]},{"name":"SDTAlternates","features":[438]},{"name":"SDTAudio","features":[438]},{"name":"SDTDisplayText","features":[438]},{"name":"SDTLexicalForm","features":[438]},{"name":"SDTPronunciation","features":[438]},{"name":"SDTProperty","features":[438]},{"name":"SDTReplacement","features":[438]},{"name":"SDTRule","features":[438]},{"name":"SECFDefault","features":[438]},{"name":"SECFEmulateResult","features":[438]},{"name":"SECFIgnoreCase","features":[438]},{"name":"SECFIgnoreKanaType","features":[438]},{"name":"SECFIgnoreWidth","features":[438]},{"name":"SECFNoSpecialChars","features":[438]},{"name":"SECHighConfidence","features":[438]},{"name":"SECLowConfidence","features":[438]},{"name":"SECNormalConfidence","features":[438]},{"name":"SFTInput","features":[438]},{"name":"SFTSREngine","features":[438]},{"name":"SGDSActive","features":[438]},{"name":"SGDSActiveUserDelimited","features":[438]},{"name":"SGDSActiveWithAutoPause","features":[438]},{"name":"SGDSInactive","features":[438]},{"name":"SGDisplay","features":[438]},{"name":"SGLexical","features":[438]},{"name":"SGLexicalNoSpecialChars","features":[438]},{"name":"SGPronounciation","features":[438]},{"name":"SGRSTTDictation","features":[438]},{"name":"SGRSTTEpsilon","features":[438]},{"name":"SGRSTTRule","features":[438]},{"name":"SGRSTTTextBuffer","features":[438]},{"name":"SGRSTTWildcard","features":[438]},{"name":"SGRSTTWord","features":[438]},{"name":"SGSDisabled","features":[438]},{"name":"SGSEnabled","features":[438]},{"name":"SGSExclusive","features":[438]},{"name":"SINoSignal","features":[438]},{"name":"SINoise","features":[438]},{"name":"SINone","features":[438]},{"name":"SITooFast","features":[438]},{"name":"SITooLoud","features":[438]},{"name":"SITooQuiet","features":[438]},{"name":"SITooSlow","features":[438]},{"name":"SLODynamic","features":[438]},{"name":"SLOStatic","features":[438]},{"name":"SLTApp","features":[438]},{"name":"SLTUser","features":[438]},{"name":"SPADAPTATIONRELEVANCE","features":[438]},{"name":"SPADAPTATIONSETTINGS","features":[438]},{"name":"SPADS_CurrentRecognizer","features":[438]},{"name":"SPADS_Default","features":[438]},{"name":"SPADS_HighVolumeDataSource","features":[438]},{"name":"SPADS_Immediate","features":[438]},{"name":"SPADS_RecoProfile","features":[438]},{"name":"SPADS_Reset","features":[438]},{"name":"SPAF_ALL","features":[438]},{"name":"SPAF_BUFFER_POSITION","features":[438]},{"name":"SPAF_CONSUME_LEADING_SPACES","features":[438]},{"name":"SPAF_ONE_TRAILING_SPACE","features":[438]},{"name":"SPAF_TWO_TRAILING_SPACES","features":[438]},{"name":"SPAF_USER_SPECIFIED","features":[438]},{"name":"SPALTERNATESCLSID","features":[438]},{"name":"SPAO_NONE","features":[438]},{"name":"SPAO_RETAIN_AUDIO","features":[438]},{"name":"SPAR_High","features":[438]},{"name":"SPAR_Low","features":[438]},{"name":"SPAR_Medium","features":[438]},{"name":"SPAR_Unknown","features":[438]},{"name":"SPAS_CLOSED","features":[438]},{"name":"SPAS_PAUSE","features":[438]},{"name":"SPAS_RUN","features":[438]},{"name":"SPAS_STOP","features":[438]},{"name":"SPAUDIOBUFFERINFO","features":[438]},{"name":"SPAUDIOOPTIONS","features":[438]},{"name":"SPAUDIOSTATE","features":[438]},{"name":"SPAUDIOSTATUS","features":[438]},{"name":"SPBINARYGRAMMAR","features":[438]},{"name":"SPBOOKMARKOPTIONS","features":[438]},{"name":"SPBO_AHEAD","features":[438]},{"name":"SPBO_NONE","features":[438]},{"name":"SPBO_PAUSE","features":[438]},{"name":"SPBO_TIME_UNITS","features":[438]},{"name":"SPCAT_APPLEXICONS","features":[438]},{"name":"SPCAT_AUDIOIN","features":[438]},{"name":"SPCAT_AUDIOOUT","features":[438]},{"name":"SPCAT_PHONECONVERTERS","features":[438]},{"name":"SPCAT_RECOGNIZERS","features":[438]},{"name":"SPCAT_RECOPROFILES","features":[438]},{"name":"SPCAT_TEXTNORMALIZERS","features":[438]},{"name":"SPCAT_VOICES","features":[438]},{"name":"SPCFGNOTIFY","features":[438]},{"name":"SPCFGN_ACTIVATE","features":[438]},{"name":"SPCFGN_ADD","features":[438]},{"name":"SPCFGN_DEACTIVATE","features":[438]},{"name":"SPCFGN_INVALIDATE","features":[438]},{"name":"SPCFGN_REMOVE","features":[438]},{"name":"SPCFGRULEATTRIBUTES","features":[438]},{"name":"SPCF_ADD_TO_USER_LEXICON","features":[438]},{"name":"SPCF_DEFINITE_CORRECTION","features":[438]},{"name":"SPCF_NONE","features":[438]},{"name":"SPCOMMITFLAGS","features":[438]},{"name":"SPCONTEXTSTATE","features":[438]},{"name":"SPCS_DISABLED","features":[438]},{"name":"SPCS_ENABLED","features":[438]},{"name":"SPCURRENT_USER_LEXICON_TOKEN_ID","features":[438]},{"name":"SPCURRENT_USER_SHORTCUT_TOKEN_ID","features":[438]},{"name":"SPDATAKEYLOCATION","features":[438]},{"name":"SPDF_ALL","features":[438]},{"name":"SPDF_ALTERNATES","features":[438]},{"name":"SPDF_AUDIO","features":[438]},{"name":"SPDF_DISPLAYTEXT","features":[438]},{"name":"SPDF_LEXICALFORM","features":[438]},{"name":"SPDF_PRONUNCIATION","features":[438]},{"name":"SPDF_PROPERTY","features":[438]},{"name":"SPDF_REPLACEMENT","features":[438]},{"name":"SPDF_RULE","features":[438]},{"name":"SPDICTATION","features":[438]},{"name":"SPDISPLAYATTRIBUTES","features":[438]},{"name":"SPDISPLAYPHRASE","features":[438]},{"name":"SPDISPLAYTOKEN","features":[438]},{"name":"SPDKL_CurrentConfig","features":[438]},{"name":"SPDKL_CurrentUser","features":[438]},{"name":"SPDKL_DefaultLocation","features":[438]},{"name":"SPDKL_LocalMachine","features":[438]},{"name":"SPDUI_AddRemoveWord","features":[438]},{"name":"SPDUI_AudioProperties","features":[438]},{"name":"SPDUI_AudioVolume","features":[438]},{"name":"SPDUI_EngineProperties","features":[438]},{"name":"SPDUI_MicTraining","features":[438]},{"name":"SPDUI_RecoProfileProperties","features":[438]},{"name":"SPDUI_ShareData","features":[438]},{"name":"SPDUI_Tutorial","features":[438]},{"name":"SPDUI_UserEnrollment","features":[438]},{"name":"SPDUI_UserTraining","features":[438]},{"name":"SPEAKFLAGS","features":[438]},{"name":"SPEI_ADAPTATION","features":[438]},{"name":"SPEI_END_INPUT_STREAM","features":[438]},{"name":"SPEI_END_SR_STREAM","features":[438]},{"name":"SPEI_FALSE_RECOGNITION","features":[438]},{"name":"SPEI_HYPOTHESIS","features":[438]},{"name":"SPEI_INTERFERENCE","features":[438]},{"name":"SPEI_MAX_SR","features":[438]},{"name":"SPEI_MAX_TTS","features":[438]},{"name":"SPEI_MIN_SR","features":[438]},{"name":"SPEI_MIN_TTS","features":[438]},{"name":"SPEI_PHONEME","features":[438]},{"name":"SPEI_PHRASE_START","features":[438]},{"name":"SPEI_PROPERTY_NUM_CHANGE","features":[438]},{"name":"SPEI_PROPERTY_STRING_CHANGE","features":[438]},{"name":"SPEI_RECOGNITION","features":[438]},{"name":"SPEI_RECO_OTHER_CONTEXT","features":[438]},{"name":"SPEI_RECO_STATE_CHANGE","features":[438]},{"name":"SPEI_REQUEST_UI","features":[438]},{"name":"SPEI_RESERVED1","features":[438]},{"name":"SPEI_RESERVED2","features":[438]},{"name":"SPEI_RESERVED3","features":[438]},{"name":"SPEI_RESERVED4","features":[438]},{"name":"SPEI_RESERVED5","features":[438]},{"name":"SPEI_RESERVED6","features":[438]},{"name":"SPEI_SENTENCE_BOUNDARY","features":[438]},{"name":"SPEI_SOUND_END","features":[438]},{"name":"SPEI_SOUND_START","features":[438]},{"name":"SPEI_SR_AUDIO_LEVEL","features":[438]},{"name":"SPEI_SR_BOOKMARK","features":[438]},{"name":"SPEI_SR_PRIVATE","features":[438]},{"name":"SPEI_SR_RETAINEDAUDIO","features":[438]},{"name":"SPEI_START_INPUT_STREAM","features":[438]},{"name":"SPEI_START_SR_STREAM","features":[438]},{"name":"SPEI_TTS_AUDIO_LEVEL","features":[438]},{"name":"SPEI_TTS_BOOKMARK","features":[438]},{"name":"SPEI_TTS_PRIVATE","features":[438]},{"name":"SPEI_UNDEFINED","features":[438]},{"name":"SPEI_VISEME","features":[438]},{"name":"SPEI_VOICE_CHANGE","features":[438]},{"name":"SPEI_WORD_BOUNDARY","features":[438]},{"name":"SPENDSRSTREAMFLAGS","features":[438]},{"name":"SPESF_EMULATED","features":[438]},{"name":"SPESF_NONE","features":[438]},{"name":"SPESF_STREAM_RELEASED","features":[438]},{"name":"SPET_LPARAM_IS_OBJECT","features":[438]},{"name":"SPET_LPARAM_IS_POINTER","features":[438]},{"name":"SPET_LPARAM_IS_STRING","features":[438]},{"name":"SPET_LPARAM_IS_TOKEN","features":[438]},{"name":"SPET_LPARAM_IS_UNDEFINED","features":[438]},{"name":"SPEVENT","features":[305,438]},{"name":"SPEVENTENUM","features":[438]},{"name":"SPEVENTEX","features":[305,438]},{"name":"SPEVENTLPARAMTYPE","features":[438]},{"name":"SPEVENTSOURCEINFO","features":[438]},{"name":"SPFILEMODE","features":[438]},{"name":"SPFM_CREATE","features":[438]},{"name":"SPFM_CREATE_ALWAYS","features":[438]},{"name":"SPFM_NUM_MODES","features":[438]},{"name":"SPFM_OPEN_READONLY","features":[438]},{"name":"SPFM_OPEN_READWRITE","features":[438]},{"name":"SPF_ASYNC","features":[438]},{"name":"SPF_DEFAULT","features":[438]},{"name":"SPF_IS_FILENAME","features":[438]},{"name":"SPF_IS_NOT_XML","features":[438]},{"name":"SPF_IS_XML","features":[438]},{"name":"SPF_NLP_MASK","features":[438]},{"name":"SPF_NLP_SPEAK_PUNC","features":[438]},{"name":"SPF_PARSE_AUTODETECT","features":[438]},{"name":"SPF_PARSE_MASK","features":[438]},{"name":"SPF_PARSE_SAPI","features":[438]},{"name":"SPF_PARSE_SSML","features":[438]},{"name":"SPF_PERSIST_XML","features":[438]},{"name":"SPF_PURGEBEFORESPEAK","features":[438]},{"name":"SPF_UNUSED_FLAGS","features":[438]},{"name":"SPF_VOICE_MASK","features":[438]},{"name":"SPGO_ALL","features":[438]},{"name":"SPGO_DEFAULT","features":[438]},{"name":"SPGO_FILE","features":[438]},{"name":"SPGO_HTTP","features":[438]},{"name":"SPGO_OBJECT","features":[438]},{"name":"SPGO_RES","features":[438]},{"name":"SPGO_SAPI","features":[438]},{"name":"SPGO_SRGS","features":[438]},{"name":"SPGO_SRGS_MS_SCRIPT","features":[438]},{"name":"SPGO_SRGS_SCRIPT","features":[438]},{"name":"SPGO_SRGS_STG_SCRIPT","features":[438]},{"name":"SPGO_SRGS_W3C_SCRIPT","features":[438]},{"name":"SPGO_UPS","features":[438]},{"name":"SPGRAMMARHANDLE","features":[438]},{"name":"SPGRAMMAROPTIONS","features":[438]},{"name":"SPGRAMMARSTATE","features":[438]},{"name":"SPGRAMMARWORDTYPE","features":[438]},{"name":"SPGS_DISABLED","features":[438]},{"name":"SPGS_ENABLED","features":[438]},{"name":"SPGS_EXCLUSIVE","features":[438]},{"name":"SPINFDICTATION","features":[438]},{"name":"SPINTERFERENCE","features":[438]},{"name":"SPINTERFERENCE_LATENCY_TRUNCATE_BEGIN","features":[438]},{"name":"SPINTERFERENCE_LATENCY_TRUNCATE_END","features":[438]},{"name":"SPINTERFERENCE_LATENCY_WARNING","features":[438]},{"name":"SPINTERFERENCE_NOISE","features":[438]},{"name":"SPINTERFERENCE_NONE","features":[438]},{"name":"SPINTERFERENCE_NOSIGNAL","features":[438]},{"name":"SPINTERFERENCE_TOOFAST","features":[438]},{"name":"SPINTERFERENCE_TOOLOUD","features":[438]},{"name":"SPINTERFERENCE_TOOQUIET","features":[438]},{"name":"SPINTERFERENCE_TOOSLOW","features":[438]},{"name":"SPLEXICONTYPE","features":[438]},{"name":"SPLOADOPTIONS","features":[438]},{"name":"SPLO_DYNAMIC","features":[438]},{"name":"SPLO_STATIC","features":[438]},{"name":"SPMATCHINGMODE","features":[438]},{"name":"SPMAX_RATE","features":[438]},{"name":"SPMAX_VOLUME","features":[438]},{"name":"SPMIN_RATE","features":[438]},{"name":"SPMIN_VOLUME","features":[438]},{"name":"SPMMSYS_AUDIO_IN_TOKEN_ID","features":[438]},{"name":"SPMMSYS_AUDIO_OUT_TOKEN_ID","features":[438]},{"name":"SPNORMALIZATIONLIST","features":[438]},{"name":"SPNOTIFYCALLBACK","features":[305,438]},{"name":"SPPARSEINFO","features":[305,438]},{"name":"SPPARTOFSPEECH","features":[438]},{"name":"SPPATHENTRY","features":[438]},{"name":"SPPHRASE","features":[438]},{"name":"SPPHRASEALT","features":[438]},{"name":"SPPHRASEALTREQUEST","features":[438]},{"name":"SPPHRASEELEMENT","features":[438]},{"name":"SPPHRASEPROPERTY","features":[438]},{"name":"SPPHRASEPROPERTYHANDLE","features":[438]},{"name":"SPPHRASEPROPERTYUNIONTYPE","features":[438]},{"name":"SPPHRASEREPLACEMENT","features":[438]},{"name":"SPPHRASERNG","features":[438]},{"name":"SPPHRASERULE","features":[438]},{"name":"SPPHRASERULEHANDLE","features":[438]},{"name":"SPPHRASE_50","features":[438]},{"name":"SPPPUT_ARRAY_INDEX","features":[438]},{"name":"SPPPUT_UNUSED","features":[438]},{"name":"SPPRONUNCIATIONFLAGS","features":[438]},{"name":"SPPROPERTYINFO","features":[438]},{"name":"SPPROPSRC","features":[438]},{"name":"SPPROPSRC_RECO_CTX","features":[438]},{"name":"SPPROPSRC_RECO_GRAMMAR","features":[438]},{"name":"SPPROPSRC_RECO_INST","features":[438]},{"name":"SPPROP_ADAPTATION_ON","features":[438]},{"name":"SPPROP_COMPLEX_RESPONSE_SPEED","features":[438]},{"name":"SPPROP_HIGH_CONFIDENCE_THRESHOLD","features":[438]},{"name":"SPPROP_LOW_CONFIDENCE_THRESHOLD","features":[438]},{"name":"SPPROP_NORMAL_CONFIDENCE_THRESHOLD","features":[438]},{"name":"SPPROP_PERSISTED_BACKGROUND_ADAPTATION","features":[438]},{"name":"SPPROP_PERSISTED_LANGUAGE_MODEL_ADAPTATION","features":[438]},{"name":"SPPROP_RESOURCE_USAGE","features":[438]},{"name":"SPPROP_RESPONSE_SPEED","features":[438]},{"name":"SPPROP_UX_IS_LISTENING","features":[438]},{"name":"SPPR_ALL_ELEMENTS","features":[438]},{"name":"SPPS_Function","features":[438]},{"name":"SPPS_Interjection","features":[438]},{"name":"SPPS_LMA","features":[438]},{"name":"SPPS_Modifier","features":[438]},{"name":"SPPS_Noncontent","features":[438]},{"name":"SPPS_NotOverriden","features":[438]},{"name":"SPPS_Noun","features":[438]},{"name":"SPPS_RESERVED1","features":[438]},{"name":"SPPS_RESERVED2","features":[438]},{"name":"SPPS_RESERVED3","features":[438]},{"name":"SPPS_RESERVED4","features":[438]},{"name":"SPPS_SuppressWord","features":[438]},{"name":"SPPS_Unknown","features":[438]},{"name":"SPPS_Verb","features":[438]},{"name":"SPRAF_Active","features":[438]},{"name":"SPRAF_AutoPause","features":[438]},{"name":"SPRAF_Dynamic","features":[438]},{"name":"SPRAF_Export","features":[438]},{"name":"SPRAF_Import","features":[438]},{"name":"SPRAF_Interpreter","features":[438]},{"name":"SPRAF_Root","features":[438]},{"name":"SPRAF_TopLevel","features":[438]},{"name":"SPRAF_UserDelimited","features":[438]},{"name":"SPRECOCONTEXTHANDLE","features":[438]},{"name":"SPRECOCONTEXTSTATUS","features":[438]},{"name":"SPRECOEVENTFLAGS","features":[438]},{"name":"SPRECOEXTENSION","features":[438]},{"name":"SPRECOGNIZERSTATUS","features":[438]},{"name":"SPRECORESULTINFO","features":[305,438]},{"name":"SPRECORESULTINFOEX","features":[305,438]},{"name":"SPRECORESULTTIMES","features":[305,438]},{"name":"SPRECOSTATE","features":[438]},{"name":"SPREF_AutoPause","features":[438]},{"name":"SPREF_Emulated","features":[438]},{"name":"SPREF_ExtendableParse","features":[438]},{"name":"SPREF_FalseRecognition","features":[438]},{"name":"SPREF_Hypothesis","features":[438]},{"name":"SPREF_ReSent","features":[438]},{"name":"SPREF_SMLTimeout","features":[438]},{"name":"SPREG_LOCAL_MACHINE_ROOT","features":[438]},{"name":"SPREG_SAFE_USER_TOKENS","features":[438]},{"name":"SPREG_USER_ROOT","features":[438]},{"name":"SPRESULTTYPE","features":[438]},{"name":"SPRIO_NONE","features":[438]},{"name":"SPRP_NORMAL","features":[438]},{"name":"SPRST_ACTIVE","features":[438]},{"name":"SPRST_ACTIVE_ALWAYS","features":[438]},{"name":"SPRST_INACTIVE","features":[438]},{"name":"SPRST_INACTIVE_WITH_PURGE","features":[438]},{"name":"SPRST_NUM_STATES","features":[438]},{"name":"SPRS_ACTIVE","features":[438]},{"name":"SPRS_ACTIVE_USER_DELIMITED","features":[438]},{"name":"SPRS_ACTIVE_WITH_AUTO_PAUSE","features":[438]},{"name":"SPRS_DONE","features":[438]},{"name":"SPRS_INACTIVE","features":[438]},{"name":"SPRS_IS_SPEAKING","features":[438]},{"name":"SPRT_CFG","features":[438]},{"name":"SPRT_EMULATED","features":[438]},{"name":"SPRT_EXTENDABLE_PARSE","features":[438]},{"name":"SPRT_FALSE_RECOGNITION","features":[438]},{"name":"SPRT_PROPRIETARY","features":[438]},{"name":"SPRT_SLM","features":[438]},{"name":"SPRT_TYPE_MASK","features":[438]},{"name":"SPRULE","features":[438]},{"name":"SPRULEENTRY","features":[438]},{"name":"SPRULEHANDLE","features":[438]},{"name":"SPRULEINFOOPT","features":[438]},{"name":"SPRULESTATE","features":[438]},{"name":"SPRUNSTATE","features":[438]},{"name":"SPSEMANTICERRORINFO","features":[438]},{"name":"SPSEMANTICFORMAT","features":[438]},{"name":"SPSERIALIZEDEVENT","features":[438]},{"name":"SPSERIALIZEDEVENT64","features":[438]},{"name":"SPSERIALIZEDPHRASE","features":[438]},{"name":"SPSERIALIZEDRESULT","features":[438]},{"name":"SPSF_11kHz16BitMono","features":[438]},{"name":"SPSF_11kHz16BitStereo","features":[438]},{"name":"SPSF_11kHz8BitMono","features":[438]},{"name":"SPSF_11kHz8BitStereo","features":[438]},{"name":"SPSF_12kHz16BitMono","features":[438]},{"name":"SPSF_12kHz16BitStereo","features":[438]},{"name":"SPSF_12kHz8BitMono","features":[438]},{"name":"SPSF_12kHz8BitStereo","features":[438]},{"name":"SPSF_16kHz16BitMono","features":[438]},{"name":"SPSF_16kHz16BitStereo","features":[438]},{"name":"SPSF_16kHz8BitMono","features":[438]},{"name":"SPSF_16kHz8BitStereo","features":[438]},{"name":"SPSF_22kHz16BitMono","features":[438]},{"name":"SPSF_22kHz16BitStereo","features":[438]},{"name":"SPSF_22kHz8BitMono","features":[438]},{"name":"SPSF_22kHz8BitStereo","features":[438]},{"name":"SPSF_24kHz16BitMono","features":[438]},{"name":"SPSF_24kHz16BitStereo","features":[438]},{"name":"SPSF_24kHz8BitMono","features":[438]},{"name":"SPSF_24kHz8BitStereo","features":[438]},{"name":"SPSF_32kHz16BitMono","features":[438]},{"name":"SPSF_32kHz16BitStereo","features":[438]},{"name":"SPSF_32kHz8BitMono","features":[438]},{"name":"SPSF_32kHz8BitStereo","features":[438]},{"name":"SPSF_44kHz16BitMono","features":[438]},{"name":"SPSF_44kHz16BitStereo","features":[438]},{"name":"SPSF_44kHz8BitMono","features":[438]},{"name":"SPSF_44kHz8BitStereo","features":[438]},{"name":"SPSF_48kHz16BitMono","features":[438]},{"name":"SPSF_48kHz16BitStereo","features":[438]},{"name":"SPSF_48kHz8BitMono","features":[438]},{"name":"SPSF_48kHz8BitStereo","features":[438]},{"name":"SPSF_8kHz16BitMono","features":[438]},{"name":"SPSF_8kHz16BitStereo","features":[438]},{"name":"SPSF_8kHz8BitMono","features":[438]},{"name":"SPSF_8kHz8BitStereo","features":[438]},{"name":"SPSF_ADPCM_11kHzMono","features":[438]},{"name":"SPSF_ADPCM_11kHzStereo","features":[438]},{"name":"SPSF_ADPCM_22kHzMono","features":[438]},{"name":"SPSF_ADPCM_22kHzStereo","features":[438]},{"name":"SPSF_ADPCM_44kHzMono","features":[438]},{"name":"SPSF_ADPCM_44kHzStereo","features":[438]},{"name":"SPSF_ADPCM_8kHzMono","features":[438]},{"name":"SPSF_ADPCM_8kHzStereo","features":[438]},{"name":"SPSF_CCITT_ALaw_11kHzMono","features":[438]},{"name":"SPSF_CCITT_ALaw_11kHzStereo","features":[438]},{"name":"SPSF_CCITT_ALaw_22kHzMono","features":[438]},{"name":"SPSF_CCITT_ALaw_22kHzStereo","features":[438]},{"name":"SPSF_CCITT_ALaw_44kHzMono","features":[438]},{"name":"SPSF_CCITT_ALaw_44kHzStereo","features":[438]},{"name":"SPSF_CCITT_ALaw_8kHzMono","features":[438]},{"name":"SPSF_CCITT_ALaw_8kHzStereo","features":[438]},{"name":"SPSF_CCITT_uLaw_11kHzMono","features":[438]},{"name":"SPSF_CCITT_uLaw_11kHzStereo","features":[438]},{"name":"SPSF_CCITT_uLaw_22kHzMono","features":[438]},{"name":"SPSF_CCITT_uLaw_22kHzStereo","features":[438]},{"name":"SPSF_CCITT_uLaw_44kHzMono","features":[438]},{"name":"SPSF_CCITT_uLaw_44kHzStereo","features":[438]},{"name":"SPSF_CCITT_uLaw_8kHzMono","features":[438]},{"name":"SPSF_CCITT_uLaw_8kHzStereo","features":[438]},{"name":"SPSF_Default","features":[438]},{"name":"SPSF_ExtendedAudioFormat","features":[438]},{"name":"SPSF_GSM610_11kHzMono","features":[438]},{"name":"SPSF_GSM610_22kHzMono","features":[438]},{"name":"SPSF_GSM610_44kHzMono","features":[438]},{"name":"SPSF_GSM610_8kHzMono","features":[438]},{"name":"SPSF_NUM_FORMATS","features":[438]},{"name":"SPSF_NoAssignedFormat","features":[438]},{"name":"SPSF_NonStandardFormat","features":[438]},{"name":"SPSF_Text","features":[438]},{"name":"SPSF_TrueSpeech_8kHz1BitMono","features":[438]},{"name":"SPSFunction","features":[438]},{"name":"SPSHORTCUTPAIR","features":[438]},{"name":"SPSHORTCUTPAIRLIST","features":[438]},{"name":"SPSHORTCUTTYPE","features":[438]},{"name":"SPSHT_EMAIL","features":[438]},{"name":"SPSHT_NotOverriden","features":[438]},{"name":"SPSHT_OTHER","features":[438]},{"name":"SPSHT_Unknown","features":[438]},{"name":"SPSInterjection","features":[438]},{"name":"SPSLMA","features":[438]},{"name":"SPSMF_SAPI_PROPERTIES","features":[438]},{"name":"SPSMF_SRGS_SAPIPROPERTIES","features":[438]},{"name":"SPSMF_SRGS_SEMANTICINTERPRETATION_MS","features":[438]},{"name":"SPSMF_SRGS_SEMANTICINTERPRETATION_W3C","features":[438]},{"name":"SPSMF_UPS","features":[438]},{"name":"SPSModifier","features":[438]},{"name":"SPSNotOverriden","features":[438]},{"name":"SPSNoun","features":[438]},{"name":"SPSSuppressWord","features":[438]},{"name":"SPSTATEHANDLE","features":[438]},{"name":"SPSTATEINFO","features":[438]},{"name":"SPSTREAMFORMAT","features":[438]},{"name":"SPSTREAMFORMATTYPE","features":[438]},{"name":"SPSUnknown","features":[438]},{"name":"SPSVerb","features":[438]},{"name":"SPTEXTSELECTIONINFO","features":[438]},{"name":"SPTMTHREADINFO","features":[438]},{"name":"SPTOKENKEY_ATTRIBUTES","features":[438]},{"name":"SPTOKENKEY_AUDIO_LATENCY_TRUNCATE","features":[438]},{"name":"SPTOKENKEY_AUDIO_LATENCY_UPDATE_INTERVAL","features":[438]},{"name":"SPTOKENKEY_AUDIO_LATENCY_WARNING","features":[438]},{"name":"SPTOKENKEY_FILES","features":[438]},{"name":"SPTOKENKEY_RETAINEDAUDIO","features":[438]},{"name":"SPTOKENKEY_UI","features":[438]},{"name":"SPTOKENVALUE_CLSID","features":[438]},{"name":"SPTOPIC_SPELLING","features":[438]},{"name":"SPTRANSDICTATION","features":[438]},{"name":"SPTRANSEPSILON","features":[438]},{"name":"SPTRANSITIONENTRY","features":[438]},{"name":"SPTRANSITIONID","features":[438]},{"name":"SPTRANSITIONPROPERTY","features":[438]},{"name":"SPTRANSITIONTYPE","features":[438]},{"name":"SPTRANSRULE","features":[438]},{"name":"SPTRANSTEXTBUF","features":[438]},{"name":"SPTRANSWILDCARD","features":[438]},{"name":"SPTRANSWORD","features":[438]},{"name":"SPVACTIONS","features":[438]},{"name":"SPVALUETYPE","features":[438]},{"name":"SPVA_Bookmark","features":[438]},{"name":"SPVA_ParseUnknownTag","features":[438]},{"name":"SPVA_Pronounce","features":[438]},{"name":"SPVA_Section","features":[438]},{"name":"SPVA_Silence","features":[438]},{"name":"SPVA_Speak","features":[438]},{"name":"SPVA_SpellOut","features":[438]},{"name":"SPVCONTEXT","features":[438]},{"name":"SPVESACTIONS","features":[438]},{"name":"SPVES_ABORT","features":[438]},{"name":"SPVES_CONTINUE","features":[438]},{"name":"SPVES_RATE","features":[438]},{"name":"SPVES_SKIP","features":[438]},{"name":"SPVES_VOLUME","features":[438]},{"name":"SPVFEATURE","features":[438]},{"name":"SPVFEATURE_EMPHASIS","features":[438]},{"name":"SPVFEATURE_STRESSED","features":[438]},{"name":"SPVISEMES","features":[438]},{"name":"SPVLIMITS","features":[438]},{"name":"SPVOICECATEGORY_TTSRATE","features":[438]},{"name":"SPVOICESTATUS","features":[438]},{"name":"SPVPITCH","features":[438]},{"name":"SPVPRIORITY","features":[438]},{"name":"SPVPRI_ALERT","features":[438]},{"name":"SPVPRI_NORMAL","features":[438]},{"name":"SPVPRI_OVER","features":[438]},{"name":"SPVSKIPTYPE","features":[438]},{"name":"SPVSTATE","features":[438]},{"name":"SPVST_SENTENCE","features":[438]},{"name":"SPVTEXTFRAG","features":[438]},{"name":"SPWF_INPUT","features":[438]},{"name":"SPWF_SRENGINE","features":[438]},{"name":"SPWILDCARD","features":[438]},{"name":"SPWIO_NONE","features":[438]},{"name":"SPWIO_WANT_TEXT","features":[438]},{"name":"SPWORD","features":[438]},{"name":"SPWORDENTRY","features":[438]},{"name":"SPWORDHANDLE","features":[438]},{"name":"SPWORDINFOOPT","features":[438]},{"name":"SPWORDLIST","features":[438]},{"name":"SPWORDPRONOUNCEABLE","features":[438]},{"name":"SPWORDPRONUNCIATION","features":[438]},{"name":"SPWORDPRONUNCIATIONLIST","features":[438]},{"name":"SPWORDTYPE","features":[438]},{"name":"SPWP_KNOWN_WORD_PRONOUNCEABLE","features":[438]},{"name":"SPWP_UNKNOWN_WORD_PRONOUNCEABLE","features":[438]},{"name":"SPWP_UNKNOWN_WORD_UNPRONOUNCEABLE","features":[438]},{"name":"SPWT_DISPLAY","features":[438]},{"name":"SPWT_LEXICAL","features":[438]},{"name":"SPWT_LEXICAL_NO_SPECIAL_CHARS","features":[438]},{"name":"SPWT_PRONUNCIATION","features":[438]},{"name":"SPXMLRESULTOPTIONS","features":[438]},{"name":"SPXRO_Alternates_SML","features":[438]},{"name":"SPXRO_SML","features":[438]},{"name":"SP_EMULATE_RESULT","features":[438]},{"name":"SP_LOW_CONFIDENCE","features":[438]},{"name":"SP_MAX_LANGIDS","features":[438]},{"name":"SP_MAX_PRON_LENGTH","features":[438]},{"name":"SP_MAX_WORD_LENGTH","features":[438]},{"name":"SP_NORMAL_CONFIDENCE","features":[438]},{"name":"SP_STREAMPOS_ASAP","features":[438]},{"name":"SP_STREAMPOS_REALTIME","features":[438]},{"name":"SP_VISEME_0","features":[438]},{"name":"SP_VISEME_1","features":[438]},{"name":"SP_VISEME_10","features":[438]},{"name":"SP_VISEME_11","features":[438]},{"name":"SP_VISEME_12","features":[438]},{"name":"SP_VISEME_13","features":[438]},{"name":"SP_VISEME_14","features":[438]},{"name":"SP_VISEME_15","features":[438]},{"name":"SP_VISEME_16","features":[438]},{"name":"SP_VISEME_17","features":[438]},{"name":"SP_VISEME_18","features":[438]},{"name":"SP_VISEME_19","features":[438]},{"name":"SP_VISEME_2","features":[438]},{"name":"SP_VISEME_20","features":[438]},{"name":"SP_VISEME_21","features":[438]},{"name":"SP_VISEME_3","features":[438]},{"name":"SP_VISEME_4","features":[438]},{"name":"SP_VISEME_5","features":[438]},{"name":"SP_VISEME_6","features":[438]},{"name":"SP_VISEME_7","features":[438]},{"name":"SP_VISEME_8","features":[438]},{"name":"SP_VISEME_9","features":[438]},{"name":"SRADefaultToActive","features":[438]},{"name":"SRADynamic","features":[438]},{"name":"SRAExport","features":[438]},{"name":"SRAImport","features":[438]},{"name":"SRAInterpreter","features":[438]},{"name":"SRAONone","features":[438]},{"name":"SRAORetainAudio","features":[438]},{"name":"SRARoot","features":[438]},{"name":"SRATopLevel","features":[438]},{"name":"SRCS_Disabled","features":[438]},{"name":"SRCS_Enabled","features":[438]},{"name":"SREAdaptation","features":[438]},{"name":"SREAllEvents","features":[438]},{"name":"SREAudioLevel","features":[438]},{"name":"SREBookmark","features":[438]},{"name":"SREFalseRecognition","features":[438]},{"name":"SREHypothesis","features":[438]},{"name":"SREInterference","features":[438]},{"name":"SREPhraseStart","features":[438]},{"name":"SREPrivate","features":[438]},{"name":"SREPropertyNumChange","features":[438]},{"name":"SREPropertyStringChange","features":[438]},{"name":"SRERecoOtherContext","features":[438]},{"name":"SRERecognition","features":[438]},{"name":"SRERequestUI","features":[438]},{"name":"SRESoundEnd","features":[438]},{"name":"SRESoundStart","features":[438]},{"name":"SREStateChange","features":[438]},{"name":"SREStreamEnd","features":[438]},{"name":"SREStreamStart","features":[438]},{"name":"SRSActive","features":[438]},{"name":"SRSActiveAlways","features":[438]},{"name":"SRSEDone","features":[438]},{"name":"SRSEIsSpeaking","features":[438]},{"name":"SRSInactive","features":[438]},{"name":"SRSInactiveWithPurge","features":[438]},{"name":"SRTAutopause","features":[438]},{"name":"SRTEmulated","features":[438]},{"name":"SRTExtendableParse","features":[438]},{"name":"SRTReSent","features":[438]},{"name":"SRTSMLTimeout","features":[438]},{"name":"SRTStandard","features":[438]},{"name":"SR_LOCALIZED_DESCRIPTION","features":[438]},{"name":"SSFMCreate","features":[438]},{"name":"SSFMCreateForWrite","features":[438]},{"name":"SSFMOpenForRead","features":[438]},{"name":"SSFMOpenReadWrite","features":[438]},{"name":"SSSPTRelativeToCurrentPosition","features":[438]},{"name":"SSSPTRelativeToEnd","features":[438]},{"name":"SSSPTRelativeToStart","features":[438]},{"name":"SSTTDictation","features":[438]},{"name":"SSTTTextBuffer","features":[438]},{"name":"SSTTWildcard","features":[438]},{"name":"STCAll","features":[438]},{"name":"STCInprocHandler","features":[438]},{"name":"STCInprocServer","features":[438]},{"name":"STCLocalServer","features":[438]},{"name":"STCRemoteServer","features":[438]},{"name":"STSF_AppData","features":[438]},{"name":"STSF_CommonAppData","features":[438]},{"name":"STSF_FlagCreate","features":[438]},{"name":"STSF_LocalAppData","features":[438]},{"name":"SVEAllEvents","features":[438]},{"name":"SVEAudioLevel","features":[438]},{"name":"SVEBookmark","features":[438]},{"name":"SVEEndInputStream","features":[438]},{"name":"SVEPhoneme","features":[438]},{"name":"SVEPrivate","features":[438]},{"name":"SVESentenceBoundary","features":[438]},{"name":"SVEStartInputStream","features":[438]},{"name":"SVEViseme","features":[438]},{"name":"SVEVoiceChange","features":[438]},{"name":"SVEWordBoundary","features":[438]},{"name":"SVF_Emphasis","features":[438]},{"name":"SVF_None","features":[438]},{"name":"SVF_Stressed","features":[438]},{"name":"SVPAlert","features":[438]},{"name":"SVPNormal","features":[438]},{"name":"SVPOver","features":[438]},{"name":"SVP_0","features":[438]},{"name":"SVP_1","features":[438]},{"name":"SVP_10","features":[438]},{"name":"SVP_11","features":[438]},{"name":"SVP_12","features":[438]},{"name":"SVP_13","features":[438]},{"name":"SVP_14","features":[438]},{"name":"SVP_15","features":[438]},{"name":"SVP_16","features":[438]},{"name":"SVP_17","features":[438]},{"name":"SVP_18","features":[438]},{"name":"SVP_19","features":[438]},{"name":"SVP_2","features":[438]},{"name":"SVP_20","features":[438]},{"name":"SVP_21","features":[438]},{"name":"SVP_3","features":[438]},{"name":"SVP_4","features":[438]},{"name":"SVP_5","features":[438]},{"name":"SVP_6","features":[438]},{"name":"SVP_7","features":[438]},{"name":"SVP_8","features":[438]},{"name":"SVP_9","features":[438]},{"name":"SVSFDefault","features":[438]},{"name":"SVSFIsFilename","features":[438]},{"name":"SVSFIsNotXML","features":[438]},{"name":"SVSFIsXML","features":[438]},{"name":"SVSFNLPMask","features":[438]},{"name":"SVSFNLPSpeakPunc","features":[438]},{"name":"SVSFParseAutodetect","features":[438]},{"name":"SVSFParseMask","features":[438]},{"name":"SVSFParseSapi","features":[438]},{"name":"SVSFParseSsml","features":[438]},{"name":"SVSFPersistXML","features":[438]},{"name":"SVSFPurgeBeforeSpeak","features":[438]},{"name":"SVSFUnusedFlags","features":[438]},{"name":"SVSFVoiceMask","features":[438]},{"name":"SVSFlagsAsync","features":[438]},{"name":"SWPKnownWordPronounceable","features":[438]},{"name":"SWPUnknownWordPronounceable","features":[438]},{"name":"SWPUnknownWordUnpronounceable","features":[438]},{"name":"SWTAdded","features":[438]},{"name":"SWTDeleted","features":[438]},{"name":"SpAudioFormat","features":[438]},{"name":"SpCompressedLexicon","features":[438]},{"name":"SpCustomStream","features":[438]},{"name":"SpDataKey","features":[438]},{"name":"SpFileStream","features":[438]},{"name":"SpGramCompBackend","features":[438]},{"name":"SpGrammarCompiler","features":[438]},{"name":"SpITNProcessor","features":[438]},{"name":"SpInProcRecoContext","features":[438]},{"name":"SpInprocRecognizer","features":[438]},{"name":"SpLexicon","features":[438]},{"name":"SpMMAudioEnum","features":[438]},{"name":"SpMMAudioIn","features":[438]},{"name":"SpMMAudioOut","features":[438]},{"name":"SpMemoryStream","features":[438]},{"name":"SpNotifyTranslator","features":[438]},{"name":"SpNullPhoneConverter","features":[438]},{"name":"SpObjectToken","features":[438]},{"name":"SpObjectTokenCategory","features":[438]},{"name":"SpObjectTokenEnum","features":[438]},{"name":"SpPhoneConverter","features":[438]},{"name":"SpPhoneticAlphabetConverter","features":[438]},{"name":"SpPhraseBuilder","features":[438]},{"name":"SpPhraseInfoBuilder","features":[438]},{"name":"SpResourceManager","features":[438]},{"name":"SpSharedRecoContext","features":[438]},{"name":"SpSharedRecognizer","features":[438]},{"name":"SpShortcut","features":[438]},{"name":"SpStream","features":[438]},{"name":"SpStreamFormatConverter","features":[438]},{"name":"SpTextSelectionInformation","features":[438]},{"name":"SpUnCompressedLexicon","features":[438]},{"name":"SpVoice","features":[438]},{"name":"SpW3CGrammarCompiler","features":[438]},{"name":"SpWaveFormatEx","features":[438]},{"name":"SpeechAllElements","features":[438]},{"name":"SpeechAudioFormatType","features":[438]},{"name":"SpeechAudioState","features":[438]},{"name":"SpeechBookmarkOptions","features":[438]},{"name":"SpeechDataKeyLocation","features":[438]},{"name":"SpeechDiscardType","features":[438]},{"name":"SpeechDisplayAttributes","features":[438]},{"name":"SpeechEmulationCompareFlags","features":[438]},{"name":"SpeechEngineConfidence","features":[438]},{"name":"SpeechFormatType","features":[438]},{"name":"SpeechGrammarRuleStateTransitionType","features":[438]},{"name":"SpeechGrammarState","features":[438]},{"name":"SpeechGrammarWordType","features":[438]},{"name":"SpeechInterference","features":[438]},{"name":"SpeechLexiconType","features":[438]},{"name":"SpeechLoadOption","features":[438]},{"name":"SpeechPartOfSpeech","features":[438]},{"name":"SpeechRecoContextState","features":[438]},{"name":"SpeechRecoEvents","features":[438]},{"name":"SpeechRecognitionType","features":[438]},{"name":"SpeechRecognizerState","features":[438]},{"name":"SpeechRetainedAudioOptions","features":[438]},{"name":"SpeechRuleAttributes","features":[438]},{"name":"SpeechRuleState","features":[438]},{"name":"SpeechRunState","features":[438]},{"name":"SpeechSpecialTransitionType","features":[438]},{"name":"SpeechStreamFileMode","features":[438]},{"name":"SpeechStreamSeekPositionType","features":[438]},{"name":"SpeechTokenContext","features":[438]},{"name":"SpeechTokenShellFolder","features":[438]},{"name":"SpeechVisemeFeature","features":[438]},{"name":"SpeechVisemeType","features":[438]},{"name":"SpeechVoiceEvents","features":[438]},{"name":"SpeechVoicePriority","features":[438]},{"name":"SpeechVoiceSpeakFlags","features":[438]},{"name":"SpeechWordPronounceable","features":[438]},{"name":"SpeechWordType","features":[438]},{"name":"Speech_Default_Weight","features":[438]},{"name":"Speech_Max_Pron_Length","features":[438]},{"name":"Speech_Max_Word_Length","features":[438]},{"name":"Speech_StreamPos_Asap","features":[438]},{"name":"Speech_StreamPos_RealTime","features":[438]},{"name":"Subsequence","features":[438]},{"name":"SubsequenceContentRequired","features":[438]},{"name":"_ISpPrivateEngineCall","features":[438]},{"name":"_ISpeechRecoContextEvents","features":[438,356]},{"name":"_ISpeechVoiceEvents","features":[438,356]},{"name":"eLEXTYPE_APP","features":[438]},{"name":"eLEXTYPE_LETTERTOSOUND","features":[438]},{"name":"eLEXTYPE_MORPHOLOGY","features":[438]},{"name":"eLEXTYPE_PRIVATE1","features":[438]},{"name":"eLEXTYPE_PRIVATE10","features":[438]},{"name":"eLEXTYPE_PRIVATE11","features":[438]},{"name":"eLEXTYPE_PRIVATE12","features":[438]},{"name":"eLEXTYPE_PRIVATE13","features":[438]},{"name":"eLEXTYPE_PRIVATE14","features":[438]},{"name":"eLEXTYPE_PRIVATE15","features":[438]},{"name":"eLEXTYPE_PRIVATE16","features":[438]},{"name":"eLEXTYPE_PRIVATE17","features":[438]},{"name":"eLEXTYPE_PRIVATE18","features":[438]},{"name":"eLEXTYPE_PRIVATE19","features":[438]},{"name":"eLEXTYPE_PRIVATE2","features":[438]},{"name":"eLEXTYPE_PRIVATE20","features":[438]},{"name":"eLEXTYPE_PRIVATE3","features":[438]},{"name":"eLEXTYPE_PRIVATE4","features":[438]},{"name":"eLEXTYPE_PRIVATE5","features":[438]},{"name":"eLEXTYPE_PRIVATE6","features":[438]},{"name":"eLEXTYPE_PRIVATE7","features":[438]},{"name":"eLEXTYPE_PRIVATE8","features":[438]},{"name":"eLEXTYPE_PRIVATE9","features":[438]},{"name":"eLEXTYPE_RESERVED10","features":[438]},{"name":"eLEXTYPE_RESERVED4","features":[438]},{"name":"eLEXTYPE_RESERVED6","features":[438]},{"name":"eLEXTYPE_RESERVED7","features":[438]},{"name":"eLEXTYPE_RESERVED8","features":[438]},{"name":"eLEXTYPE_RESERVED9","features":[438]},{"name":"eLEXTYPE_USER","features":[438]},{"name":"eLEXTYPE_USER_SHORTCUT","features":[438]},{"name":"eLEXTYPE_VENDORLEXICON","features":[438]},{"name":"ePRONFLAG_USED","features":[438]},{"name":"eWORDTYPE_ADDED","features":[438]},{"name":"eWORDTYPE_DELETED","features":[438]}],"443":[{"name":"CapturedMetadataExposureCompensation","features":[439]},{"name":"CapturedMetadataISOGains","features":[439]},{"name":"CapturedMetadataWhiteBalanceGains","features":[439]},{"name":"DEVPKEY_Device_DLNACAP","features":[303,439]},{"name":"DEVPKEY_Device_DLNADOC","features":[303,439]},{"name":"DEVPKEY_Device_MaxVolume","features":[303,439]},{"name":"DEVPKEY_Device_PacketWakeSupported","features":[303,439]},{"name":"DEVPKEY_Device_SendPacketWakeSupported","features":[303,439]},{"name":"DEVPKEY_Device_SinkProtocolInfo","features":[303,439]},{"name":"DEVPKEY_Device_SupportsAudio","features":[303,439]},{"name":"DEVPKEY_Device_SupportsImages","features":[303,439]},{"name":"DEVPKEY_Device_SupportsMute","features":[303,439]},{"name":"DEVPKEY_Device_SupportsSearch","features":[303,439]},{"name":"DEVPKEY_Device_SupportsSetNextAVT","features":[303,439]},{"name":"DEVPKEY_Device_SupportsVideo","features":[303,439]},{"name":"DEVPKEY_Device_UDN","features":[303,439]},{"name":"FaceCharacterization","features":[439]},{"name":"FaceCharacterizationBlobHeader","features":[439]},{"name":"FaceRectInfo","features":[305,439]},{"name":"FaceRectInfoBlobHeader","features":[439]},{"name":"GUID_DEVINTERFACE_DMP","features":[439]},{"name":"GUID_DEVINTERFACE_DMR","features":[439]},{"name":"GUID_DEVINTERFACE_DMS","features":[439]},{"name":"HistogramBlobHeader","features":[439]},{"name":"HistogramDataHeader","features":[439]},{"name":"HistogramGrid","features":[305,439]},{"name":"HistogramHeader","features":[305,439]},{"name":"MF_MEDIASOURCE_STATUS_INFO","features":[439]},{"name":"MF_MEDIASOURCE_STATUS_INFO_FULLYSUPPORTED","features":[439]},{"name":"MF_MEDIASOURCE_STATUS_INFO_UNKNOWN","features":[439]},{"name":"MF_TRANSFER_VIDEO_FRAME_DEFAULT","features":[439]},{"name":"MF_TRANSFER_VIDEO_FRAME_FLAGS","features":[439]},{"name":"MF_TRANSFER_VIDEO_FRAME_IGNORE_PAR","features":[439]},{"name":"MF_TRANSFER_VIDEO_FRAME_STRETCH","features":[439]},{"name":"MetadataTimeStamps","features":[439]}],"444":[{"name":"AM_CONFIGASFWRITER_PARAM_AUTOINDEX","features":[440]},{"name":"AM_CONFIGASFWRITER_PARAM_DONTCOMPRESS","features":[440]},{"name":"AM_CONFIGASFWRITER_PARAM_MULTIPASS","features":[440]},{"name":"AM_WMT_EVENT_DATA","features":[440]},{"name":"CLSID_ClientNetManager","features":[440]},{"name":"CLSID_WMBandwidthSharing_Exclusive","features":[440]},{"name":"CLSID_WMBandwidthSharing_Partial","features":[440]},{"name":"CLSID_WMMUTEX_Bitrate","features":[440]},{"name":"CLSID_WMMUTEX_Language","features":[440]},{"name":"CLSID_WMMUTEX_Presentation","features":[440]},{"name":"CLSID_WMMUTEX_Unknown","features":[440]},{"name":"DRM_COPY_OPL","features":[440]},{"name":"DRM_MINIMUM_OUTPUT_PROTECTION_LEVELS","features":[440]},{"name":"DRM_OPL_OUTPUT_IDS","features":[440]},{"name":"DRM_OPL_TYPES","features":[440]},{"name":"DRM_OUTPUT_PROTECTION","features":[440]},{"name":"DRM_PLAY_OPL","features":[440]},{"name":"DRM_VAL16","features":[440]},{"name":"DRM_VIDEO_OUTPUT_PROTECTION_IDS","features":[440]},{"name":"INSNetSourceCreator","features":[440]},{"name":"INSSBuffer","features":[440]},{"name":"INSSBuffer2","features":[440]},{"name":"INSSBuffer3","features":[440]},{"name":"INSSBuffer4","features":[440]},{"name":"IWMAddressAccess","features":[440]},{"name":"IWMAddressAccess2","features":[440]},{"name":"IWMAuthorizer","features":[440]},{"name":"IWMBackupRestoreProps","features":[440]},{"name":"IWMBandwidthSharing","features":[440]},{"name":"IWMClientConnections","features":[440]},{"name":"IWMClientConnections2","features":[440]},{"name":"IWMCodecInfo","features":[440]},{"name":"IWMCodecInfo2","features":[440]},{"name":"IWMCodecInfo3","features":[440]},{"name":"IWMCredentialCallback","features":[440]},{"name":"IWMDRMEditor","features":[440]},{"name":"IWMDRMMessageParser","features":[440]},{"name":"IWMDRMReader","features":[440]},{"name":"IWMDRMReader2","features":[440]},{"name":"IWMDRMReader3","features":[440]},{"name":"IWMDRMTranscryptionManager","features":[440]},{"name":"IWMDRMTranscryptor","features":[440]},{"name":"IWMDRMTranscryptor2","features":[440]},{"name":"IWMDRMWriter","features":[440]},{"name":"IWMDRMWriter2","features":[440]},{"name":"IWMDRMWriter3","features":[440]},{"name":"IWMDeviceRegistration","features":[440]},{"name":"IWMGetSecureChannel","features":[440]},{"name":"IWMHeaderInfo","features":[440]},{"name":"IWMHeaderInfo2","features":[440]},{"name":"IWMHeaderInfo3","features":[440]},{"name":"IWMIStreamProps","features":[440]},{"name":"IWMImageInfo","features":[440]},{"name":"IWMIndexer","features":[440]},{"name":"IWMIndexer2","features":[440]},{"name":"IWMInputMediaProps","features":[440]},{"name":"IWMLanguageList","features":[440]},{"name":"IWMLicenseBackup","features":[440]},{"name":"IWMLicenseRestore","features":[440]},{"name":"IWMLicenseRevocationAgent","features":[440]},{"name":"IWMMediaProps","features":[440]},{"name":"IWMMetadataEditor","features":[440]},{"name":"IWMMetadataEditor2","features":[440]},{"name":"IWMMutualExclusion","features":[440]},{"name":"IWMMutualExclusion2","features":[440]},{"name":"IWMOutputMediaProps","features":[440]},{"name":"IWMPacketSize","features":[440]},{"name":"IWMPacketSize2","features":[440]},{"name":"IWMPlayerHook","features":[440]},{"name":"IWMPlayerTimestampHook","features":[440]},{"name":"IWMProfile","features":[440]},{"name":"IWMProfile2","features":[440]},{"name":"IWMProfile3","features":[440]},{"name":"IWMProfileManager","features":[440]},{"name":"IWMProfileManager2","features":[440]},{"name":"IWMProfileManagerLanguage","features":[440]},{"name":"IWMPropertyVault","features":[440]},{"name":"IWMProximityDetection","features":[440]},{"name":"IWMReader","features":[440]},{"name":"IWMReaderAccelerator","features":[440]},{"name":"IWMReaderAdvanced","features":[440]},{"name":"IWMReaderAdvanced2","features":[440]},{"name":"IWMReaderAdvanced3","features":[440]},{"name":"IWMReaderAdvanced4","features":[440]},{"name":"IWMReaderAdvanced5","features":[440]},{"name":"IWMReaderAdvanced6","features":[440]},{"name":"IWMReaderAllocatorEx","features":[440]},{"name":"IWMReaderCallback","features":[440]},{"name":"IWMReaderCallbackAdvanced","features":[440]},{"name":"IWMReaderNetworkConfig","features":[440]},{"name":"IWMReaderNetworkConfig2","features":[440]},{"name":"IWMReaderPlaylistBurn","features":[440]},{"name":"IWMReaderStreamClock","features":[440]},{"name":"IWMReaderTimecode","features":[440]},{"name":"IWMReaderTypeNegotiation","features":[440]},{"name":"IWMRegisterCallback","features":[440]},{"name":"IWMRegisteredDevice","features":[440]},{"name":"IWMSBufferAllocator","features":[440]},{"name":"IWMSInternalAdminNetSource","features":[440]},{"name":"IWMSInternalAdminNetSource2","features":[440]},{"name":"IWMSInternalAdminNetSource3","features":[440]},{"name":"IWMSecureChannel","features":[440]},{"name":"IWMStatusCallback","features":[440]},{"name":"IWMStreamConfig","features":[440]},{"name":"IWMStreamConfig2","features":[440]},{"name":"IWMStreamConfig3","features":[440]},{"name":"IWMStreamList","features":[440]},{"name":"IWMStreamPrioritization","features":[440]},{"name":"IWMSyncReader","features":[440]},{"name":"IWMSyncReader2","features":[440]},{"name":"IWMVideoMediaProps","features":[440]},{"name":"IWMWatermarkInfo","features":[440]},{"name":"IWMWriter","features":[440]},{"name":"IWMWriterAdvanced","features":[440]},{"name":"IWMWriterAdvanced2","features":[440]},{"name":"IWMWriterAdvanced3","features":[440]},{"name":"IWMWriterFileSink","features":[440]},{"name":"IWMWriterFileSink2","features":[440]},{"name":"IWMWriterFileSink3","features":[440]},{"name":"IWMWriterNetworkSink","features":[440]},{"name":"IWMWriterPostView","features":[440]},{"name":"IWMWriterPostViewCallback","features":[440]},{"name":"IWMWriterPreprocess","features":[440]},{"name":"IWMWriterPushSink","features":[440]},{"name":"IWMWriterSink","features":[440]},{"name":"NETSOURCE_URLCREDPOLICY_SETTINGS","features":[440]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_ANONYMOUSONLY","features":[440]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_MUSTPROMPTUSER","features":[440]},{"name":"NETSOURCE_URLCREDPOLICY_SETTING_SILENTLOGONOK","features":[440]},{"name":"WEBSTREAM_SAMPLE_TYPE","features":[440]},{"name":"WEBSTREAM_SAMPLE_TYPE_FILE","features":[440]},{"name":"WEBSTREAM_SAMPLE_TYPE_RENDER","features":[440]},{"name":"WMCreateBackupRestorer","features":[440]},{"name":"WMCreateEditor","features":[440]},{"name":"WMCreateIndexer","features":[440]},{"name":"WMCreateProfileManager","features":[440]},{"name":"WMCreateReader","features":[440]},{"name":"WMCreateSyncReader","features":[440]},{"name":"WMCreateWriter","features":[440]},{"name":"WMCreateWriterFileSink","features":[440]},{"name":"WMCreateWriterNetworkSink","features":[440]},{"name":"WMCreateWriterPushSink","features":[440]},{"name":"WMDRM_IMPORT_INIT_STRUCT","features":[440]},{"name":"WMDRM_IMPORT_INIT_STRUCT_DEFINED","features":[440]},{"name":"WMFORMAT_MPEG2Video","features":[440]},{"name":"WMFORMAT_Script","features":[440]},{"name":"WMFORMAT_VideoInfo","features":[440]},{"name":"WMFORMAT_WaveFormatEx","features":[440]},{"name":"WMFORMAT_WebStream","features":[440]},{"name":"WMIsContentProtected","features":[305,440]},{"name":"WMMEDIASUBTYPE_ACELPnet","features":[440]},{"name":"WMMEDIASUBTYPE_Base","features":[440]},{"name":"WMMEDIASUBTYPE_DRM","features":[440]},{"name":"WMMEDIASUBTYPE_I420","features":[440]},{"name":"WMMEDIASUBTYPE_IYUV","features":[440]},{"name":"WMMEDIASUBTYPE_M4S2","features":[440]},{"name":"WMMEDIASUBTYPE_MP3","features":[440]},{"name":"WMMEDIASUBTYPE_MP43","features":[440]},{"name":"WMMEDIASUBTYPE_MP4S","features":[440]},{"name":"WMMEDIASUBTYPE_MPEG2_VIDEO","features":[440]},{"name":"WMMEDIASUBTYPE_MSS1","features":[440]},{"name":"WMMEDIASUBTYPE_MSS2","features":[440]},{"name":"WMMEDIASUBTYPE_P422","features":[440]},{"name":"WMMEDIASUBTYPE_PCM","features":[440]},{"name":"WMMEDIASUBTYPE_RGB1","features":[440]},{"name":"WMMEDIASUBTYPE_RGB24","features":[440]},{"name":"WMMEDIASUBTYPE_RGB32","features":[440]},{"name":"WMMEDIASUBTYPE_RGB4","features":[440]},{"name":"WMMEDIASUBTYPE_RGB555","features":[440]},{"name":"WMMEDIASUBTYPE_RGB565","features":[440]},{"name":"WMMEDIASUBTYPE_RGB8","features":[440]},{"name":"WMMEDIASUBTYPE_UYVY","features":[440]},{"name":"WMMEDIASUBTYPE_VIDEOIMAGE","features":[440]},{"name":"WMMEDIASUBTYPE_WMAudioV2","features":[440]},{"name":"WMMEDIASUBTYPE_WMAudioV7","features":[440]},{"name":"WMMEDIASUBTYPE_WMAudioV8","features":[440]},{"name":"WMMEDIASUBTYPE_WMAudioV9","features":[440]},{"name":"WMMEDIASUBTYPE_WMAudio_Lossless","features":[440]},{"name":"WMMEDIASUBTYPE_WMSP1","features":[440]},{"name":"WMMEDIASUBTYPE_WMSP2","features":[440]},{"name":"WMMEDIASUBTYPE_WMV1","features":[440]},{"name":"WMMEDIASUBTYPE_WMV2","features":[440]},{"name":"WMMEDIASUBTYPE_WMV3","features":[440]},{"name":"WMMEDIASUBTYPE_WMVA","features":[440]},{"name":"WMMEDIASUBTYPE_WMVP","features":[440]},{"name":"WMMEDIASUBTYPE_WVC1","features":[440]},{"name":"WMMEDIASUBTYPE_WVP2","features":[440]},{"name":"WMMEDIASUBTYPE_WebStream","features":[440]},{"name":"WMMEDIASUBTYPE_YUY2","features":[440]},{"name":"WMMEDIASUBTYPE_YV12","features":[440]},{"name":"WMMEDIASUBTYPE_YVU9","features":[440]},{"name":"WMMEDIASUBTYPE_YVYU","features":[440]},{"name":"WMMEDIATYPE_Audio","features":[440]},{"name":"WMMEDIATYPE_FileTransfer","features":[440]},{"name":"WMMEDIATYPE_Image","features":[440]},{"name":"WMMEDIATYPE_Script","features":[440]},{"name":"WMMEDIATYPE_Text","features":[440]},{"name":"WMMEDIATYPE_Video","features":[440]},{"name":"WMMPEG2VIDEOINFO","features":[305,316,440]},{"name":"WMSCRIPTFORMAT","features":[440]},{"name":"WMSCRIPTTYPE_TwoStrings","features":[440]},{"name":"WMT_ACQUIRE_LICENSE","features":[440]},{"name":"WMT_ATTR_DATATYPE","features":[440]},{"name":"WMT_ATTR_IMAGETYPE","features":[440]},{"name":"WMT_BACKUPRESTORE_BEGIN","features":[440]},{"name":"WMT_BACKUPRESTORE_CONNECTING","features":[440]},{"name":"WMT_BACKUPRESTORE_DISCONNECTING","features":[440]},{"name":"WMT_BACKUPRESTORE_END","features":[440]},{"name":"WMT_BUFFERING_START","features":[440]},{"name":"WMT_BUFFERING_STOP","features":[440]},{"name":"WMT_BUFFER_SEGMENT","features":[440]},{"name":"WMT_CLEANPOINT_ONLY","features":[440]},{"name":"WMT_CLIENT_CONNECT","features":[440]},{"name":"WMT_CLIENT_CONNECT_EX","features":[440]},{"name":"WMT_CLIENT_DISCONNECT","features":[440]},{"name":"WMT_CLIENT_DISCONNECT_EX","features":[440]},{"name":"WMT_CLIENT_PROPERTIES","features":[440]},{"name":"WMT_CLOSED","features":[440]},{"name":"WMT_CODECINFO_AUDIO","features":[440]},{"name":"WMT_CODECINFO_UNKNOWN","features":[440]},{"name":"WMT_CODECINFO_VIDEO","features":[440]},{"name":"WMT_CODEC_INFO_TYPE","features":[440]},{"name":"WMT_COLORSPACEINFO_EXTENSION_DATA","features":[440]},{"name":"WMT_CONNECTING","features":[440]},{"name":"WMT_CONTENT_ENABLER","features":[440]},{"name":"WMT_CREDENTIAL_CLEAR_TEXT","features":[440]},{"name":"WMT_CREDENTIAL_DONT_CACHE","features":[440]},{"name":"WMT_CREDENTIAL_ENCRYPT","features":[440]},{"name":"WMT_CREDENTIAL_FLAGS","features":[440]},{"name":"WMT_CREDENTIAL_PROXY","features":[440]},{"name":"WMT_CREDENTIAL_SAVE","features":[440]},{"name":"WMT_DMOCATEGORY_AUDIO_WATERMARK","features":[440]},{"name":"WMT_DMOCATEGORY_VIDEO_WATERMARK","features":[440]},{"name":"WMT_DRMLA_TAMPERED","features":[440]},{"name":"WMT_DRMLA_TRUST","features":[440]},{"name":"WMT_DRMLA_TRUSTED","features":[440]},{"name":"WMT_DRMLA_UNTRUSTED","features":[440]},{"name":"WMT_END_OF_FILE","features":[440]},{"name":"WMT_END_OF_SEGMENT","features":[440]},{"name":"WMT_END_OF_STREAMING","features":[440]},{"name":"WMT_EOF","features":[440]},{"name":"WMT_ERROR","features":[440]},{"name":"WMT_ERROR_WITHURL","features":[440]},{"name":"WMT_FILESINK_DATA_UNIT","features":[440]},{"name":"WMT_FILESINK_MODE","features":[440]},{"name":"WMT_FM_FILESINK_DATA_UNITS","features":[440]},{"name":"WMT_FM_FILESINK_UNBUFFERED","features":[440]},{"name":"WMT_FM_SINGLE_BUFFERS","features":[440]},{"name":"WMT_IMAGETYPE_BITMAP","features":[440]},{"name":"WMT_IMAGETYPE_GIF","features":[440]},{"name":"WMT_IMAGETYPE_JPEG","features":[440]},{"name":"WMT_IMAGE_TYPE","features":[440]},{"name":"WMT_INDEXER_TYPE","features":[440]},{"name":"WMT_INDEX_PROGRESS","features":[440]},{"name":"WMT_INDEX_TYPE","features":[440]},{"name":"WMT_INDIVIDUALIZE","features":[440]},{"name":"WMT_INIT_PLAYLIST_BURN","features":[440]},{"name":"WMT_IT_BITMAP","features":[440]},{"name":"WMT_IT_FRAME_NUMBERS","features":[440]},{"name":"WMT_IT_GIF","features":[440]},{"name":"WMT_IT_JPEG","features":[440]},{"name":"WMT_IT_NEAREST_CLEAN_POINT","features":[440]},{"name":"WMT_IT_NEAREST_DATA_UNIT","features":[440]},{"name":"WMT_IT_NEAREST_OBJECT","features":[440]},{"name":"WMT_IT_NONE","features":[440]},{"name":"WMT_IT_PRESENTATION_TIME","features":[440]},{"name":"WMT_IT_TIMECODE","features":[440]},{"name":"WMT_LICENSEURL_SIGNATURE_STATE","features":[440]},{"name":"WMT_LOCATING","features":[440]},{"name":"WMT_MISSING_CODEC","features":[440]},{"name":"WMT_MS_CLASS_MIXED","features":[440]},{"name":"WMT_MS_CLASS_MUSIC","features":[440]},{"name":"WMT_MS_CLASS_SPEECH","features":[440]},{"name":"WMT_MUSICSPEECH_CLASS_MODE","features":[440]},{"name":"WMT_NATIVE_OUTPUT_PROPS_CHANGED","features":[440]},{"name":"WMT_NEEDS_INDIVIDUALIZATION","features":[440]},{"name":"WMT_NET_PROTOCOL","features":[440]},{"name":"WMT_NEW_METADATA","features":[440]},{"name":"WMT_NEW_SOURCEFLAGS","features":[440]},{"name":"WMT_NO_RIGHTS","features":[440]},{"name":"WMT_NO_RIGHTS_EX","features":[440]},{"name":"WMT_OFF","features":[440]},{"name":"WMT_OFFSET_FORMAT","features":[440]},{"name":"WMT_OFFSET_FORMAT_100NS","features":[440]},{"name":"WMT_OFFSET_FORMAT_100NS_APPROXIMATE","features":[440]},{"name":"WMT_OFFSET_FORMAT_FRAME_NUMBERS","features":[440]},{"name":"WMT_OFFSET_FORMAT_PLAYLIST_OFFSET","features":[440]},{"name":"WMT_OFFSET_FORMAT_TIMECODE","features":[440]},{"name":"WMT_ON","features":[440]},{"name":"WMT_OPENED","features":[440]},{"name":"WMT_PAYLOAD_FRAGMENT","features":[440]},{"name":"WMT_PLAY_MODE","features":[440]},{"name":"WMT_PLAY_MODE_AUTOSELECT","features":[440]},{"name":"WMT_PLAY_MODE_DOWNLOAD","features":[440]},{"name":"WMT_PLAY_MODE_LOCAL","features":[440]},{"name":"WMT_PLAY_MODE_STREAMING","features":[440]},{"name":"WMT_PREROLL_COMPLETE","features":[440]},{"name":"WMT_PREROLL_READY","features":[440]},{"name":"WMT_PROTOCOL_HTTP","features":[440]},{"name":"WMT_PROXIMITY_COMPLETED","features":[440]},{"name":"WMT_PROXIMITY_RESULT","features":[440]},{"name":"WMT_PROXY_SETTINGS","features":[440]},{"name":"WMT_PROXY_SETTING_AUTO","features":[440]},{"name":"WMT_PROXY_SETTING_BROWSER","features":[440]},{"name":"WMT_PROXY_SETTING_MANUAL","features":[440]},{"name":"WMT_PROXY_SETTING_MAX","features":[440]},{"name":"WMT_PROXY_SETTING_NONE","features":[440]},{"name":"WMT_RECONNECT_END","features":[440]},{"name":"WMT_RECONNECT_START","features":[440]},{"name":"WMT_RESTRICTED_LICENSE","features":[440]},{"name":"WMT_RIGHTS","features":[440]},{"name":"WMT_RIGHT_COLLABORATIVE_PLAY","features":[440]},{"name":"WMT_RIGHT_COPY","features":[440]},{"name":"WMT_RIGHT_COPY_TO_CD","features":[440]},{"name":"WMT_RIGHT_COPY_TO_NON_SDMI_DEVICE","features":[440]},{"name":"WMT_RIGHT_COPY_TO_SDMI_DEVICE","features":[440]},{"name":"WMT_RIGHT_ONE_TIME","features":[440]},{"name":"WMT_RIGHT_PLAYBACK","features":[440]},{"name":"WMT_RIGHT_SAVE_STREAM_PROTECTED","features":[440]},{"name":"WMT_RIGHT_SDMI_NOMORECOPIES","features":[440]},{"name":"WMT_RIGHT_SDMI_TRIGGER","features":[440]},{"name":"WMT_SAVEAS_START","features":[440]},{"name":"WMT_SAVEAS_STOP","features":[440]},{"name":"WMT_SET_FEC_SPAN","features":[440]},{"name":"WMT_SOURCE_SWITCH","features":[440]},{"name":"WMT_STARTED","features":[440]},{"name":"WMT_STATUS","features":[440]},{"name":"WMT_STOPPED","features":[440]},{"name":"WMT_STORAGE_FORMAT","features":[440]},{"name":"WMT_STREAM_SELECTION","features":[440]},{"name":"WMT_STRIDING","features":[440]},{"name":"WMT_Storage_Format_MP3","features":[440]},{"name":"WMT_Storage_Format_V1","features":[440]},{"name":"WMT_TIMECODE_EXTENSION_DATA","features":[440]},{"name":"WMT_TIMECODE_FRAMERATE","features":[440]},{"name":"WMT_TIMECODE_FRAMERATE_24","features":[440]},{"name":"WMT_TIMECODE_FRAMERATE_25","features":[440]},{"name":"WMT_TIMECODE_FRAMERATE_30","features":[440]},{"name":"WMT_TIMECODE_FRAMERATE_30DROP","features":[440]},{"name":"WMT_TIMER","features":[440]},{"name":"WMT_TRANSCRYPTOR_CLOSED","features":[440]},{"name":"WMT_TRANSCRYPTOR_INIT","features":[440]},{"name":"WMT_TRANSCRYPTOR_READ","features":[440]},{"name":"WMT_TRANSCRYPTOR_SEEKED","features":[440]},{"name":"WMT_TRANSPORT_TYPE","features":[440]},{"name":"WMT_TYPE_BINARY","features":[440]},{"name":"WMT_TYPE_BOOL","features":[440]},{"name":"WMT_TYPE_DWORD","features":[440]},{"name":"WMT_TYPE_GUID","features":[440]},{"name":"WMT_TYPE_QWORD","features":[440]},{"name":"WMT_TYPE_STRING","features":[440]},{"name":"WMT_TYPE_WORD","features":[440]},{"name":"WMT_Transport_Type_Reliable","features":[440]},{"name":"WMT_Transport_Type_Unreliable","features":[440]},{"name":"WMT_VERSION","features":[440]},{"name":"WMT_VER_4_0","features":[440]},{"name":"WMT_VER_7_0","features":[440]},{"name":"WMT_VER_8_0","features":[440]},{"name":"WMT_VER_9_0","features":[440]},{"name":"WMT_VIDEOIMAGE_INTEGER_DENOMINATOR","features":[440]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER","features":[440]},{"name":"WMT_VIDEOIMAGE_MAGIC_NUMBER_2","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE2","features":[305,440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ADV_BLENDING","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_BLENDING","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_INPUT_FRAME","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_MOTION","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_OUTPUT_FRAME","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_ROTATION","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_CURRENT_INPUT_FRAME","features":[440]},{"name":"WMT_VIDEOIMAGE_SAMPLE_USES_PREVIOUS_INPUT_FRAME","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_BOW_TIE","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CIRCLE","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_CROSS_FADE","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAGONAL","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_DIAMOND","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FADE_TO_COLOR","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FILLED_V","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_FLIP","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_INSET","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_IRIS","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_PAGE_ROLL","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_RECTANGLE","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_REVEAL","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SLIDE","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_SPLIT","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_STAR","features":[440]},{"name":"WMT_VIDEOIMAGE_TRANSITION_WHEEL","features":[440]},{"name":"WMT_WATERMARK_ENTRY","features":[440]},{"name":"WMT_WATERMARK_ENTRY_TYPE","features":[440]},{"name":"WMT_WEBSTREAM_FORMAT","features":[440]},{"name":"WMT_WEBSTREAM_SAMPLE_HEADER","features":[440]},{"name":"WMT_WMETYPE_AUDIO","features":[440]},{"name":"WMT_WMETYPE_VIDEO","features":[440]},{"name":"WMVIDEOINFOHEADER","features":[305,316,440]},{"name":"WMVIDEOINFOHEADER2","features":[305,316,440]},{"name":"WM_ADDRESS_ACCESSENTRY","features":[440]},{"name":"WM_AETYPE","features":[440]},{"name":"WM_AETYPE_EXCLUDE","features":[440]},{"name":"WM_AETYPE_INCLUDE","features":[440]},{"name":"WM_CLIENT_PROPERTIES","features":[440]},{"name":"WM_CLIENT_PROPERTIES_EX","features":[440]},{"name":"WM_CL_INTERLACED420","features":[440]},{"name":"WM_CL_PROGRESSIVE420","features":[440]},{"name":"WM_CT_BOTTOM_FIELD_FIRST","features":[440]},{"name":"WM_CT_INTERLACED","features":[440]},{"name":"WM_CT_REPEAT_FIRST_FIELD","features":[440]},{"name":"WM_CT_TOP_FIELD_FIRST","features":[440]},{"name":"WM_DM_DEINTERLACE_HALFSIZE","features":[440]},{"name":"WM_DM_DEINTERLACE_HALFSIZEDOUBLERATE","features":[440]},{"name":"WM_DM_DEINTERLACE_INVERSETELECINE","features":[440]},{"name":"WM_DM_DEINTERLACE_NORMAL","features":[440]},{"name":"WM_DM_DEINTERLACE_VERTICALHALFSIZEDOUBLERATE","features":[440]},{"name":"WM_DM_INTERLACED_TYPE","features":[440]},{"name":"WM_DM_IT_DISABLE_COHERENT_MODE","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_COHERENCY","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_BOTTOM","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_AA_TOP","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_BOTTOM","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BB_TOP","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_BOTTOM","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_BC_TOP","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_BOTTOM","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_CD_TOP","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_BOTTOM","features":[440]},{"name":"WM_DM_IT_FIRST_FRAME_IN_CLIP_IS_DD_TOP","features":[440]},{"name":"WM_DM_NOTINTERLACED","features":[440]},{"name":"WM_LEAKY_BUCKET_PAIR","features":[440]},{"name":"WM_MAX_STREAMS","features":[440]},{"name":"WM_MAX_VIDEO_STREAMS","features":[440]},{"name":"WM_MEDIA_TYPE","features":[305,440]},{"name":"WM_PICTURE","features":[440]},{"name":"WM_PLAYBACK_DRC_HIGH","features":[440]},{"name":"WM_PLAYBACK_DRC_LEVEL","features":[440]},{"name":"WM_PLAYBACK_DRC_LOW","features":[440]},{"name":"WM_PLAYBACK_DRC_MEDIUM","features":[440]},{"name":"WM_PORT_NUMBER_RANGE","features":[440]},{"name":"WM_READER_CLIENTINFO","features":[305,440]},{"name":"WM_READER_STATISTICS","features":[440]},{"name":"WM_SFEX_DATALOSS","features":[440]},{"name":"WM_SFEX_NOTASYNCPOINT","features":[440]},{"name":"WM_SFEX_TYPE","features":[440]},{"name":"WM_SF_CLEANPOINT","features":[440]},{"name":"WM_SF_DATALOSS","features":[440]},{"name":"WM_SF_DISCONTINUITY","features":[440]},{"name":"WM_SF_TYPE","features":[440]},{"name":"WM_STREAM_PRIORITY_RECORD","features":[305,440]},{"name":"WM_STREAM_TYPE_INFO","features":[440]},{"name":"WM_SYNCHRONISED_LYRICS","features":[440]},{"name":"WM_SampleExtensionGUID_ChromaLocation","features":[440]},{"name":"WM_SampleExtensionGUID_ColorSpaceInfo","features":[440]},{"name":"WM_SampleExtensionGUID_ContentType","features":[440]},{"name":"WM_SampleExtensionGUID_FileName","features":[440]},{"name":"WM_SampleExtensionGUID_OutputCleanPoint","features":[440]},{"name":"WM_SampleExtensionGUID_PixelAspectRatio","features":[440]},{"name":"WM_SampleExtensionGUID_SampleDuration","features":[440]},{"name":"WM_SampleExtensionGUID_SampleProtectionSalt","features":[440]},{"name":"WM_SampleExtensionGUID_Timecode","features":[440]},{"name":"WM_SampleExtensionGUID_UserDataInfo","features":[440]},{"name":"WM_SampleExtension_ChromaLocation_Size","features":[440]},{"name":"WM_SampleExtension_ColorSpaceInfo_Size","features":[440]},{"name":"WM_SampleExtension_ContentType_Size","features":[440]},{"name":"WM_SampleExtension_PixelAspectRatio_Size","features":[440]},{"name":"WM_SampleExtension_SampleDuration_Size","features":[440]},{"name":"WM_SampleExtension_Timecode_Size","features":[440]},{"name":"WM_USER_TEXT","features":[440]},{"name":"WM_USER_WEB_URL","features":[440]},{"name":"WM_WRITER_STATISTICS","features":[440]},{"name":"WM_WRITER_STATISTICS_EX","features":[440]},{"name":"_AM_ASFWRITERCONFIG_PARAM","features":[440]},{"name":"g_dwWMContentAttributes","features":[440]},{"name":"g_dwWMNSCAttributes","features":[440]},{"name":"g_dwWMSpecialAttributes","features":[440]},{"name":"g_wszASFLeakyBucketPairs","features":[440]},{"name":"g_wszAllowInterlacedOutput","features":[440]},{"name":"g_wszAverageLevel","features":[440]},{"name":"g_wszBufferAverage","features":[440]},{"name":"g_wszComplexity","features":[440]},{"name":"g_wszComplexityLive","features":[440]},{"name":"g_wszComplexityMax","features":[440]},{"name":"g_wszComplexityOffline","features":[440]},{"name":"g_wszDecoderComplexityRequested","features":[440]},{"name":"g_wszDedicatedDeliveryThread","features":[440]},{"name":"g_wszDeinterlaceMode","features":[440]},{"name":"g_wszDeliverOnReceive","features":[440]},{"name":"g_wszDeviceConformanceTemplate","features":[440]},{"name":"g_wszDynamicRangeControl","features":[440]},{"name":"g_wszEDL","features":[440]},{"name":"g_wszEarlyDataDelivery","features":[440]},{"name":"g_wszEnableDiscreteOutput","features":[440]},{"name":"g_wszEnableFrameInterpolation","features":[440]},{"name":"g_wszEnableWMAProSPDIFOutput","features":[440]},{"name":"g_wszFailSeekOnError","features":[440]},{"name":"g_wszFixedFrameRate","features":[440]},{"name":"g_wszFold6To2Channels3","features":[440]},{"name":"g_wszFoldToChannelsTemplate","features":[440]},{"name":"g_wszInitialPatternForInverseTelecine","features":[440]},{"name":"g_wszInterlacedCoding","features":[440]},{"name":"g_wszIsVBRSupported","features":[440]},{"name":"g_wszJPEGCompressionQuality","features":[440]},{"name":"g_wszJustInTimeDecode","features":[440]},{"name":"g_wszMixedClassMode","features":[440]},{"name":"g_wszMusicClassMode","features":[440]},{"name":"g_wszMusicSpeechClassMode","features":[440]},{"name":"g_wszNeedsPreviousSample","features":[440]},{"name":"g_wszNumPasses","features":[440]},{"name":"g_wszOriginalSourceFormatTag","features":[440]},{"name":"g_wszOriginalWaveFormat","features":[440]},{"name":"g_wszPeakValue","features":[440]},{"name":"g_wszPermitSeeksBeyondEndOfStream","features":[440]},{"name":"g_wszReloadIndexOnSeek","features":[440]},{"name":"g_wszScrambledAudio","features":[440]},{"name":"g_wszSingleOutputBuffer","features":[440]},{"name":"g_wszSoftwareScaling","features":[440]},{"name":"g_wszSourceBufferTime","features":[440]},{"name":"g_wszSourceMaxBytesAtOnce","features":[440]},{"name":"g_wszSpeakerConfig","features":[440]},{"name":"g_wszSpeechCaps","features":[440]},{"name":"g_wszSpeechClassMode","features":[440]},{"name":"g_wszStreamLanguage","features":[440]},{"name":"g_wszStreamNumIndexObjects","features":[440]},{"name":"g_wszUsePacketAtSeekPoint","features":[440]},{"name":"g_wszVBRBitrateMax","features":[440]},{"name":"g_wszVBRBufferWindowMax","features":[440]},{"name":"g_wszVBREnabled","features":[440]},{"name":"g_wszVBRPeak","features":[440]},{"name":"g_wszVBRQuality","features":[440]},{"name":"g_wszVideoSampleDurations","features":[440]},{"name":"g_wszWMADID","features":[440]},{"name":"g_wszWMASFPacketCount","features":[440]},{"name":"g_wszWMASFSecurityObjectsSize","features":[440]},{"name":"g_wszWMAlbumArtist","features":[440]},{"name":"g_wszWMAlbumArtistSort","features":[440]},{"name":"g_wszWMAlbumCoverURL","features":[440]},{"name":"g_wszWMAlbumTitle","features":[440]},{"name":"g_wszWMAlbumTitleSort","features":[440]},{"name":"g_wszWMAspectRatioX","features":[440]},{"name":"g_wszWMAspectRatioY","features":[440]},{"name":"g_wszWMAudioFileURL","features":[440]},{"name":"g_wszWMAudioSourceURL","features":[440]},{"name":"g_wszWMAuthor","features":[440]},{"name":"g_wszWMAuthorSort","features":[440]},{"name":"g_wszWMAuthorURL","features":[440]},{"name":"g_wszWMBannerImageData","features":[440]},{"name":"g_wszWMBannerImageType","features":[440]},{"name":"g_wszWMBannerImageURL","features":[440]},{"name":"g_wszWMBeatsPerMinute","features":[440]},{"name":"g_wszWMBitrate","features":[440]},{"name":"g_wszWMBroadcast","features":[440]},{"name":"g_wszWMCategory","features":[440]},{"name":"g_wszWMCodec","features":[440]},{"name":"g_wszWMComposer","features":[440]},{"name":"g_wszWMComposerSort","features":[440]},{"name":"g_wszWMConductor","features":[440]},{"name":"g_wszWMContainerFormat","features":[440]},{"name":"g_wszWMContentDistributor","features":[440]},{"name":"g_wszWMContentGroupDescription","features":[440]},{"name":"g_wszWMCopyright","features":[440]},{"name":"g_wszWMCopyrightURL","features":[440]},{"name":"g_wszWMCurrentBitrate","features":[440]},{"name":"g_wszWMDRM","features":[440]},{"name":"g_wszWMDRM_ContentID","features":[440]},{"name":"g_wszWMDRM_Flags","features":[440]},{"name":"g_wszWMDRM_HeaderSignPrivKey","features":[440]},{"name":"g_wszWMDRM_IndividualizedVersion","features":[440]},{"name":"g_wszWMDRM_KeyID","features":[440]},{"name":"g_wszWMDRM_KeySeed","features":[440]},{"name":"g_wszWMDRM_LASignatureCert","features":[440]},{"name":"g_wszWMDRM_LASignatureLicSrvCert","features":[440]},{"name":"g_wszWMDRM_LASignaturePrivKey","features":[440]},{"name":"g_wszWMDRM_LASignatureRootCert","features":[440]},{"name":"g_wszWMDRM_Level","features":[440]},{"name":"g_wszWMDRM_LicenseAcqURL","features":[440]},{"name":"g_wszWMDRM_SourceID","features":[440]},{"name":"g_wszWMDRM_V1LicenseAcqURL","features":[440]},{"name":"g_wszWMDVDID","features":[440]},{"name":"g_wszWMDescription","features":[440]},{"name":"g_wszWMDirector","features":[440]},{"name":"g_wszWMDuration","features":[440]},{"name":"g_wszWMEncodedBy","features":[440]},{"name":"g_wszWMEncodingSettings","features":[440]},{"name":"g_wszWMEncodingTime","features":[440]},{"name":"g_wszWMEpisodeNumber","features":[440]},{"name":"g_wszWMFileSize","features":[440]},{"name":"g_wszWMGenre","features":[440]},{"name":"g_wszWMGenreID","features":[440]},{"name":"g_wszWMHasArbitraryDataStream","features":[440]},{"name":"g_wszWMHasAttachedImages","features":[440]},{"name":"g_wszWMHasAudio","features":[440]},{"name":"g_wszWMHasFileTransferStream","features":[440]},{"name":"g_wszWMHasImage","features":[440]},{"name":"g_wszWMHasScript","features":[440]},{"name":"g_wszWMHasVideo","features":[440]},{"name":"g_wszWMISAN","features":[440]},{"name":"g_wszWMISRC","features":[440]},{"name":"g_wszWMInitialKey","features":[440]},{"name":"g_wszWMIsCompilation","features":[440]},{"name":"g_wszWMIsVBR","features":[440]},{"name":"g_wszWMLanguage","features":[440]},{"name":"g_wszWMLyrics","features":[440]},{"name":"g_wszWMLyrics_Synchronised","features":[440]},{"name":"g_wszWMMCDI","features":[440]},{"name":"g_wszWMMediaClassPrimaryID","features":[440]},{"name":"g_wszWMMediaClassSecondaryID","features":[440]},{"name":"g_wszWMMediaCredits","features":[440]},{"name":"g_wszWMMediaIsDelay","features":[440]},{"name":"g_wszWMMediaIsFinale","features":[440]},{"name":"g_wszWMMediaIsLive","features":[440]},{"name":"g_wszWMMediaIsPremiere","features":[440]},{"name":"g_wszWMMediaIsRepeat","features":[440]},{"name":"g_wszWMMediaIsSAP","features":[440]},{"name":"g_wszWMMediaIsStereo","features":[440]},{"name":"g_wszWMMediaIsSubtitled","features":[440]},{"name":"g_wszWMMediaIsTape","features":[440]},{"name":"g_wszWMMediaNetworkAffiliation","features":[440]},{"name":"g_wszWMMediaOriginalBroadcastDateTime","features":[440]},{"name":"g_wszWMMediaOriginalChannel","features":[440]},{"name":"g_wszWMMediaStationCallSign","features":[440]},{"name":"g_wszWMMediaStationName","features":[440]},{"name":"g_wszWMModifiedBy","features":[440]},{"name":"g_wszWMMood","features":[440]},{"name":"g_wszWMNSCAddress","features":[440]},{"name":"g_wszWMNSCDescription","features":[440]},{"name":"g_wszWMNSCEmail","features":[440]},{"name":"g_wszWMNSCName","features":[440]},{"name":"g_wszWMNSCPhone","features":[440]},{"name":"g_wszWMNumberOfFrames","features":[440]},{"name":"g_wszWMOptimalBitrate","features":[440]},{"name":"g_wszWMOriginalAlbumTitle","features":[440]},{"name":"g_wszWMOriginalArtist","features":[440]},{"name":"g_wszWMOriginalFilename","features":[440]},{"name":"g_wszWMOriginalLyricist","features":[440]},{"name":"g_wszWMOriginalReleaseTime","features":[440]},{"name":"g_wszWMOriginalReleaseYear","features":[440]},{"name":"g_wszWMParentalRating","features":[440]},{"name":"g_wszWMParentalRatingReason","features":[440]},{"name":"g_wszWMPartOfSet","features":[440]},{"name":"g_wszWMPeakBitrate","features":[440]},{"name":"g_wszWMPeriod","features":[440]},{"name":"g_wszWMPicture","features":[440]},{"name":"g_wszWMPlaylistDelay","features":[440]},{"name":"g_wszWMProducer","features":[440]},{"name":"g_wszWMPromotionURL","features":[440]},{"name":"g_wszWMProtected","features":[440]},{"name":"g_wszWMProtectionType","features":[440]},{"name":"g_wszWMProvider","features":[440]},{"name":"g_wszWMProviderCopyright","features":[440]},{"name":"g_wszWMProviderRating","features":[440]},{"name":"g_wszWMProviderStyle","features":[440]},{"name":"g_wszWMPublisher","features":[440]},{"name":"g_wszWMRadioStationName","features":[440]},{"name":"g_wszWMRadioStationOwner","features":[440]},{"name":"g_wszWMRating","features":[440]},{"name":"g_wszWMSeasonNumber","features":[440]},{"name":"g_wszWMSeekable","features":[440]},{"name":"g_wszWMSharedUserRating","features":[440]},{"name":"g_wszWMSignature_Name","features":[440]},{"name":"g_wszWMSkipBackward","features":[440]},{"name":"g_wszWMSkipForward","features":[440]},{"name":"g_wszWMStreamTypeInfo","features":[440]},{"name":"g_wszWMStridable","features":[440]},{"name":"g_wszWMSubTitle","features":[440]},{"name":"g_wszWMSubTitleDescription","features":[440]},{"name":"g_wszWMSubscriptionContentID","features":[440]},{"name":"g_wszWMText","features":[440]},{"name":"g_wszWMTitle","features":[440]},{"name":"g_wszWMTitleSort","features":[440]},{"name":"g_wszWMToolName","features":[440]},{"name":"g_wszWMToolVersion","features":[440]},{"name":"g_wszWMTrack","features":[440]},{"name":"g_wszWMTrackNumber","features":[440]},{"name":"g_wszWMTrusted","features":[440]},{"name":"g_wszWMUniqueFileIdentifier","features":[440]},{"name":"g_wszWMUse_Advanced_DRM","features":[440]},{"name":"g_wszWMUse_DRM","features":[440]},{"name":"g_wszWMUserWebURL","features":[440]},{"name":"g_wszWMVideoClosedCaptioning","features":[440]},{"name":"g_wszWMVideoFrameRate","features":[440]},{"name":"g_wszWMVideoHeight","features":[440]},{"name":"g_wszWMVideoWidth","features":[440]},{"name":"g_wszWMWMADRCAverageReference","features":[440]},{"name":"g_wszWMWMADRCAverageTarget","features":[440]},{"name":"g_wszWMWMADRCPeakReference","features":[440]},{"name":"g_wszWMWMADRCPeakTarget","features":[440]},{"name":"g_wszWMWMCPDistributor","features":[440]},{"name":"g_wszWMWMCPDistributorID","features":[440]},{"name":"g_wszWMWMCollectionGroupID","features":[440]},{"name":"g_wszWMWMCollectionID","features":[440]},{"name":"g_wszWMWMContentID","features":[440]},{"name":"g_wszWMWMShadowFileSourceDRMType","features":[440]},{"name":"g_wszWMWMShadowFileSourceFileType","features":[440]},{"name":"g_wszWMWriter","features":[440]},{"name":"g_wszWMYear","features":[440]},{"name":"g_wszWatermarkCLSID","features":[440]},{"name":"g_wszWatermarkConfig","features":[440]}],"445":[{"name":"ADDRESS_TYPE_IANA","features":[441]},{"name":"ADDRESS_TYPE_IATA","features":[441]},{"name":"Allow","features":[441]},{"name":"CHANGESTATE","features":[441]},{"name":"CLIENT_TYPE_BOOTP","features":[441]},{"name":"CLIENT_TYPE_DHCP","features":[441]},{"name":"CLIENT_TYPE_NONE","features":[441]},{"name":"CLIENT_TYPE_RESERVATION_FLAG","features":[441]},{"name":"CLIENT_TYPE_UNSPECIFIED","features":[441]},{"name":"COMMUNICATION_INT","features":[441]},{"name":"CONFLICT_DONE","features":[441]},{"name":"DATE_TIME","features":[441]},{"name":"DEFAULTQUARSETTING","features":[441]},{"name":"DHCPAPI_PARAMS","features":[305,441]},{"name":"DHCPCAPI_CLASSID","features":[441]},{"name":"DHCPCAPI_DEREGISTER_HANDLE_EVENT","features":[441]},{"name":"DHCPCAPI_PARAMS_ARRAY","features":[305,441]},{"name":"DHCPCAPI_REGISTER_HANDLE_EVENT","features":[441]},{"name":"DHCPCAPI_REQUEST_ASYNCHRONOUS","features":[441]},{"name":"DHCPCAPI_REQUEST_CANCEL","features":[441]},{"name":"DHCPCAPI_REQUEST_MASK","features":[441]},{"name":"DHCPCAPI_REQUEST_PERSISTENT","features":[441]},{"name":"DHCPCAPI_REQUEST_SYNCHRONOUS","features":[441]},{"name":"DHCPDS_SERVER","features":[441]},{"name":"DHCPDS_SERVERS","features":[441]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO","features":[305,441]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_ARRAY","features":[305,441]},{"name":"DHCPV4_FAILOVER_CLIENT_INFO_EX","features":[305,441]},{"name":"DHCPV6CAPI_CLASSID","features":[441]},{"name":"DHCPV6CAPI_PARAMS","features":[305,441]},{"name":"DHCPV6CAPI_PARAMS_ARRAY","features":[305,441]},{"name":"DHCPV6Prefix","features":[441]},{"name":"DHCPV6PrefixLeaseInformation","features":[441]},{"name":"DHCPV6_BIND_ELEMENT","features":[305,441]},{"name":"DHCPV6_BIND_ELEMENT_ARRAY","features":[305,441]},{"name":"DHCPV6_IP_ARRAY","features":[441]},{"name":"DHCPV6_OPTION_CLIENTID","features":[441]},{"name":"DHCPV6_OPTION_DNS_SERVERS","features":[441]},{"name":"DHCPV6_OPTION_DOMAIN_LIST","features":[441]},{"name":"DHCPV6_OPTION_IA_NA","features":[441]},{"name":"DHCPV6_OPTION_IA_PD","features":[441]},{"name":"DHCPV6_OPTION_IA_TA","features":[441]},{"name":"DHCPV6_OPTION_NISP_DOMAIN_NAME","features":[441]},{"name":"DHCPV6_OPTION_NISP_SERVERS","features":[441]},{"name":"DHCPV6_OPTION_NIS_DOMAIN_NAME","features":[441]},{"name":"DHCPV6_OPTION_NIS_SERVERS","features":[441]},{"name":"DHCPV6_OPTION_ORO","features":[441]},{"name":"DHCPV6_OPTION_PREFERENCE","features":[441]},{"name":"DHCPV6_OPTION_RAPID_COMMIT","features":[441]},{"name":"DHCPV6_OPTION_RECONF_MSG","features":[441]},{"name":"DHCPV6_OPTION_SERVERID","features":[441]},{"name":"DHCPV6_OPTION_SIP_SERVERS_ADDRS","features":[441]},{"name":"DHCPV6_OPTION_SIP_SERVERS_NAMES","features":[441]},{"name":"DHCPV6_OPTION_UNICAST","features":[441]},{"name":"DHCPV6_OPTION_USER_CLASS","features":[441]},{"name":"DHCPV6_OPTION_VENDOR_CLASS","features":[441]},{"name":"DHCPV6_OPTION_VENDOR_OPTS","features":[441]},{"name":"DHCPV6_STATELESS_PARAMS","features":[305,441]},{"name":"DHCPV6_STATELESS_PARAM_TYPE","features":[441]},{"name":"DHCPV6_STATELESS_SCOPE_STATS","features":[441]},{"name":"DHCPV6_STATELESS_STATS","features":[441]},{"name":"DHCP_ADDR_PATTERN","features":[305,441]},{"name":"DHCP_ALL_OPTIONS","features":[441]},{"name":"DHCP_ALL_OPTION_VALUES","features":[305,441]},{"name":"DHCP_ALL_OPTION_VALUES_PB","features":[305,441]},{"name":"DHCP_ATTRIB","features":[305,441]},{"name":"DHCP_ATTRIB_ARRAY","features":[305,441]},{"name":"DHCP_ATTRIB_BOOL_IS_ADMIN","features":[441]},{"name":"DHCP_ATTRIB_BOOL_IS_BINDING_AWARE","features":[441]},{"name":"DHCP_ATTRIB_BOOL_IS_DYNBOOTP","features":[441]},{"name":"DHCP_ATTRIB_BOOL_IS_PART_OF_DSDC","features":[441]},{"name":"DHCP_ATTRIB_BOOL_IS_ROGUE","features":[441]},{"name":"DHCP_ATTRIB_TYPE_BOOL","features":[441]},{"name":"DHCP_ATTRIB_TYPE_ULONG","features":[441]},{"name":"DHCP_ATTRIB_ULONG_RESTORE_STATUS","features":[441]},{"name":"DHCP_BINARY_DATA","features":[441]},{"name":"DHCP_BIND_ELEMENT","features":[305,441]},{"name":"DHCP_BIND_ELEMENT_ARRAY","features":[305,441]},{"name":"DHCP_BOOTP_IP_RANGE","features":[441]},{"name":"DHCP_CALLOUT_ENTRY_POINT","features":[441]},{"name":"DHCP_CALLOUT_LIST_KEY","features":[441]},{"name":"DHCP_CALLOUT_LIST_VALUE","features":[441]},{"name":"DHCP_CALLOUT_TABLE","features":[305,441]},{"name":"DHCP_CLASS_INFO","features":[305,441]},{"name":"DHCP_CLASS_INFO_ARRAY","features":[305,441]},{"name":"DHCP_CLASS_INFO_ARRAY_V6","features":[305,441]},{"name":"DHCP_CLASS_INFO_V6","features":[305,441]},{"name":"DHCP_CLIENT_BOOTP","features":[441]},{"name":"DHCP_CLIENT_DHCP","features":[441]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO","features":[305,441]},{"name":"DHCP_CLIENT_FILTER_STATUS_INFO_ARRAY","features":[305,441]},{"name":"DHCP_CLIENT_INFO","features":[441]},{"name":"DHCP_CLIENT_INFO_ARRAY","features":[441]},{"name":"DHCP_CLIENT_INFO_ARRAY_V4","features":[441]},{"name":"DHCP_CLIENT_INFO_ARRAY_V5","features":[441]},{"name":"DHCP_CLIENT_INFO_ARRAY_V6","features":[441]},{"name":"DHCP_CLIENT_INFO_ARRAY_VQ","features":[305,441]},{"name":"DHCP_CLIENT_INFO_EX","features":[305,441]},{"name":"DHCP_CLIENT_INFO_EX_ARRAY","features":[305,441]},{"name":"DHCP_CLIENT_INFO_PB","features":[305,441]},{"name":"DHCP_CLIENT_INFO_PB_ARRAY","features":[305,441]},{"name":"DHCP_CLIENT_INFO_V4","features":[441]},{"name":"DHCP_CLIENT_INFO_V5","features":[441]},{"name":"DHCP_CLIENT_INFO_V6","features":[441]},{"name":"DHCP_CLIENT_INFO_VQ","features":[305,441]},{"name":"DHCP_CONTROL_CONTINUE","features":[441]},{"name":"DHCP_CONTROL_PAUSE","features":[441]},{"name":"DHCP_CONTROL_START","features":[441]},{"name":"DHCP_CONTROL_STOP","features":[441]},{"name":"DHCP_DROP_DUPLICATE","features":[441]},{"name":"DHCP_DROP_GEN_FAILURE","features":[441]},{"name":"DHCP_DROP_INTERNAL_ERROR","features":[441]},{"name":"DHCP_DROP_INVALID","features":[441]},{"name":"DHCP_DROP_NOADDRESS","features":[441]},{"name":"DHCP_DROP_NOMEM","features":[441]},{"name":"DHCP_DROP_NO_SUBNETS","features":[441]},{"name":"DHCP_DROP_PAUSED","features":[441]},{"name":"DHCP_DROP_PROCESSED","features":[441]},{"name":"DHCP_DROP_TIMEOUT","features":[441]},{"name":"DHCP_DROP_UNAUTH","features":[441]},{"name":"DHCP_DROP_WRONG_SERVER","features":[441]},{"name":"DHCP_ENDPOINT_FLAG_CANT_MODIFY","features":[441]},{"name":"DHCP_FAILOVER_DELETE_SCOPES","features":[441]},{"name":"DHCP_FAILOVER_MAX_NUM_ADD_SCOPES","features":[441]},{"name":"DHCP_FAILOVER_MAX_NUM_REL","features":[441]},{"name":"DHCP_FAILOVER_MODE","features":[441]},{"name":"DHCP_FAILOVER_RELATIONSHIP","features":[441]},{"name":"DHCP_FAILOVER_RELATIONSHIP_ARRAY","features":[441]},{"name":"DHCP_FAILOVER_SERVER","features":[441]},{"name":"DHCP_FAILOVER_STATISTICS","features":[441]},{"name":"DHCP_FILTER_ADD_INFO","features":[305,441]},{"name":"DHCP_FILTER_ENUM_INFO","features":[305,441]},{"name":"DHCP_FILTER_GLOBAL_INFO","features":[305,441]},{"name":"DHCP_FILTER_LIST_TYPE","features":[441]},{"name":"DHCP_FILTER_RECORD","features":[305,441]},{"name":"DHCP_FLAGS_DONT_ACCESS_DS","features":[441]},{"name":"DHCP_FLAGS_DONT_DO_RPC","features":[441]},{"name":"DHCP_FLAGS_OPTION_IS_VENDOR","features":[441]},{"name":"DHCP_FORCE_FLAG","features":[441]},{"name":"DHCP_GIVE_ADDRESS_NEW","features":[441]},{"name":"DHCP_GIVE_ADDRESS_OLD","features":[441]},{"name":"DHCP_HOST_INFO","features":[441]},{"name":"DHCP_HOST_INFO_V6","features":[441]},{"name":"DHCP_IPV6_ADDRESS","features":[441]},{"name":"DHCP_IP_ARRAY","features":[441]},{"name":"DHCP_IP_CLUSTER","features":[441]},{"name":"DHCP_IP_RANGE","features":[441]},{"name":"DHCP_IP_RANGE_ARRAY","features":[441]},{"name":"DHCP_IP_RANGE_V6","features":[441]},{"name":"DHCP_IP_RESERVATION","features":[441]},{"name":"DHCP_IP_RESERVATION_INFO","features":[441]},{"name":"DHCP_IP_RESERVATION_V4","features":[441]},{"name":"DHCP_IP_RESERVATION_V6","features":[441]},{"name":"DHCP_MAX_DELAY","features":[441]},{"name":"DHCP_MIB_INFO","features":[441]},{"name":"DHCP_MIB_INFO_V5","features":[441]},{"name":"DHCP_MIB_INFO_V6","features":[441]},{"name":"DHCP_MIB_INFO_VQ","features":[441]},{"name":"DHCP_MIN_DELAY","features":[441]},{"name":"DHCP_OPTION","features":[441]},{"name":"DHCP_OPTION_ARRAY","features":[441]},{"name":"DHCP_OPTION_DATA","features":[441]},{"name":"DHCP_OPTION_DATA_ELEMENT","features":[441]},{"name":"DHCP_OPTION_DATA_TYPE","features":[441]},{"name":"DHCP_OPTION_LIST","features":[441]},{"name":"DHCP_OPTION_SCOPE_INFO","features":[441]},{"name":"DHCP_OPTION_SCOPE_INFO6","features":[441]},{"name":"DHCP_OPTION_SCOPE_TYPE","features":[441]},{"name":"DHCP_OPTION_SCOPE_TYPE6","features":[441]},{"name":"DHCP_OPTION_TYPE","features":[441]},{"name":"DHCP_OPTION_VALUE","features":[441]},{"name":"DHCP_OPTION_VALUE_ARRAY","features":[441]},{"name":"DHCP_OPT_ENUM_IGNORE_VENDOR","features":[441]},{"name":"DHCP_OPT_ENUM_USE_CLASSNAME","features":[441]},{"name":"DHCP_PERF_STATS","features":[441]},{"name":"DHCP_POLICY","features":[305,441]},{"name":"DHCP_POLICY_ARRAY","features":[305,441]},{"name":"DHCP_POLICY_EX","features":[305,441]},{"name":"DHCP_POLICY_EX_ARRAY","features":[305,441]},{"name":"DHCP_POLICY_FIELDS_TO_UPDATE","features":[441]},{"name":"DHCP_POL_ATTR_TYPE","features":[441]},{"name":"DHCP_POL_COMPARATOR","features":[441]},{"name":"DHCP_POL_COND","features":[441]},{"name":"DHCP_POL_COND_ARRAY","features":[441]},{"name":"DHCP_POL_EXPR","features":[441]},{"name":"DHCP_POL_EXPR_ARRAY","features":[441]},{"name":"DHCP_POL_LOGIC_OPER","features":[441]},{"name":"DHCP_PROB_CONFLICT","features":[441]},{"name":"DHCP_PROB_DECLINE","features":[441]},{"name":"DHCP_PROB_NACKED","features":[441]},{"name":"DHCP_PROB_RELEASE","features":[441]},{"name":"DHCP_PROPERTY","features":[441]},{"name":"DHCP_PROPERTY_ARRAY","features":[441]},{"name":"DHCP_PROPERTY_ID","features":[441]},{"name":"DHCP_PROPERTY_TYPE","features":[441]},{"name":"DHCP_RESERVATION_INFO_ARRAY","features":[441]},{"name":"DHCP_RESERVED_SCOPE","features":[441]},{"name":"DHCP_RESERVED_SCOPE6","features":[441]},{"name":"DHCP_SCAN_FLAG","features":[441]},{"name":"DHCP_SCAN_ITEM","features":[441]},{"name":"DHCP_SCAN_LIST","features":[441]},{"name":"DHCP_SEARCH_INFO","features":[441]},{"name":"DHCP_SEARCH_INFO_TYPE","features":[441]},{"name":"DHCP_SEARCH_INFO_TYPE_V6","features":[441]},{"name":"DHCP_SEARCH_INFO_V6","features":[441]},{"name":"DHCP_SEND_PACKET","features":[441]},{"name":"DHCP_SERVER_CONFIG_INFO","features":[441]},{"name":"DHCP_SERVER_CONFIG_INFO_V4","features":[305,441]},{"name":"DHCP_SERVER_CONFIG_INFO_V6","features":[305,441]},{"name":"DHCP_SERVER_CONFIG_INFO_VQ","features":[305,441]},{"name":"DHCP_SERVER_OPTIONS","features":[305,441]},{"name":"DHCP_SERVER_SPECIFIC_STRINGS","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_DATA","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V4","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V5","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_DATA_V6","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V4","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V5","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_INFO_ARRAY_V6","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_TYPE","features":[441]},{"name":"DHCP_SUBNET_ELEMENT_TYPE_V6","features":[441]},{"name":"DHCP_SUBNET_INFO","features":[441]},{"name":"DHCP_SUBNET_INFO_V6","features":[441]},{"name":"DHCP_SUBNET_INFO_VQ","features":[441]},{"name":"DHCP_SUBNET_INFO_VQ_FLAG_QUARANTINE","features":[441]},{"name":"DHCP_SUBNET_STATE","features":[441]},{"name":"DHCP_SUPER_SCOPE_TABLE","features":[441]},{"name":"DHCP_SUPER_SCOPE_TABLE_ENTRY","features":[441]},{"name":"DNS_FLAG_CLEANUP_EXPIRED","features":[441]},{"name":"DNS_FLAG_DISABLE_PTR_UPDATE","features":[441]},{"name":"DNS_FLAG_ENABLED","features":[441]},{"name":"DNS_FLAG_HAS_DNS_SUFFIX","features":[441]},{"name":"DNS_FLAG_UPDATE_BOTH_ALWAYS","features":[441]},{"name":"DNS_FLAG_UPDATE_DHCID","features":[441]},{"name":"DNS_FLAG_UPDATE_DOWNLEVEL","features":[441]},{"name":"DROPPACKET","features":[441]},{"name":"DWORD_DWORD","features":[441]},{"name":"Deny","features":[441]},{"name":"DhcpAddFilterV4","features":[305,441]},{"name":"DhcpAddSecurityGroup","features":[441]},{"name":"DhcpAddServer","features":[441]},{"name":"DhcpAddSubnetElement","features":[441]},{"name":"DhcpAddSubnetElementV4","features":[441]},{"name":"DhcpAddSubnetElementV5","features":[441]},{"name":"DhcpAddSubnetElementV6","features":[441]},{"name":"DhcpArrayTypeOption","features":[441]},{"name":"DhcpAttrFqdn","features":[441]},{"name":"DhcpAttrFqdnSingleLabel","features":[441]},{"name":"DhcpAttrHWAddr","features":[441]},{"name":"DhcpAttrOption","features":[441]},{"name":"DhcpAttrSubOption","features":[441]},{"name":"DhcpAuditLogGetParams","features":[441]},{"name":"DhcpAuditLogSetParams","features":[441]},{"name":"DhcpBinaryDataOption","features":[441]},{"name":"DhcpByteOption","features":[441]},{"name":"DhcpCApiCleanup","features":[441]},{"name":"DhcpCApiInitialize","features":[441]},{"name":"DhcpClientHardwareAddress","features":[441]},{"name":"DhcpClientIpAddress","features":[441]},{"name":"DhcpClientName","features":[441]},{"name":"DhcpCompBeginsWith","features":[441]},{"name":"DhcpCompEndsWith","features":[441]},{"name":"DhcpCompEqual","features":[441]},{"name":"DhcpCompNotBeginWith","features":[441]},{"name":"DhcpCompNotEndWith","features":[441]},{"name":"DhcpCompNotEqual","features":[441]},{"name":"DhcpCreateClass","features":[305,441]},{"name":"DhcpCreateClassV6","features":[305,441]},{"name":"DhcpCreateClientInfo","features":[441]},{"name":"DhcpCreateClientInfoV4","features":[441]},{"name":"DhcpCreateClientInfoVQ","features":[305,441]},{"name":"DhcpCreateOption","features":[441]},{"name":"DhcpCreateOptionV5","features":[441]},{"name":"DhcpCreateOptionV6","features":[441]},{"name":"DhcpCreateSubnet","features":[441]},{"name":"DhcpCreateSubnetV6","features":[441]},{"name":"DhcpCreateSubnetVQ","features":[441]},{"name":"DhcpDWordDWordOption","features":[441]},{"name":"DhcpDWordOption","features":[441]},{"name":"DhcpDatabaseFix","features":[441]},{"name":"DhcpDeRegisterParamChange","features":[441]},{"name":"DhcpDefaultOptions","features":[441]},{"name":"DhcpDefaultOptions6","features":[441]},{"name":"DhcpDeleteClass","features":[441]},{"name":"DhcpDeleteClassV6","features":[441]},{"name":"DhcpDeleteClientInfo","features":[441]},{"name":"DhcpDeleteClientInfoV6","features":[441]},{"name":"DhcpDeleteFilterV4","features":[305,441]},{"name":"DhcpDeleteServer","features":[441]},{"name":"DhcpDeleteSubnet","features":[441]},{"name":"DhcpDeleteSubnetV6","features":[441]},{"name":"DhcpDeleteSuperScopeV4","features":[441]},{"name":"DhcpDsCleanup","features":[441]},{"name":"DhcpDsInit","features":[441]},{"name":"DhcpEncapsulatedDataOption","features":[441]},{"name":"DhcpEnumClasses","features":[305,441]},{"name":"DhcpEnumClassesV6","features":[305,441]},{"name":"DhcpEnumFilterV4","features":[305,441]},{"name":"DhcpEnumOptionValues","features":[441]},{"name":"DhcpEnumOptionValuesV5","features":[441]},{"name":"DhcpEnumOptionValuesV6","features":[441]},{"name":"DhcpEnumOptions","features":[441]},{"name":"DhcpEnumOptionsV5","features":[441]},{"name":"DhcpEnumOptionsV6","features":[441]},{"name":"DhcpEnumServers","features":[441]},{"name":"DhcpEnumSubnetClients","features":[441]},{"name":"DhcpEnumSubnetClientsFilterStatusInfo","features":[305,441]},{"name":"DhcpEnumSubnetClientsV4","features":[441]},{"name":"DhcpEnumSubnetClientsV5","features":[441]},{"name":"DhcpEnumSubnetClientsV6","features":[441]},{"name":"DhcpEnumSubnetClientsVQ","features":[305,441]},{"name":"DhcpEnumSubnetElements","features":[441]},{"name":"DhcpEnumSubnetElementsV4","features":[441]},{"name":"DhcpEnumSubnetElementsV5","features":[441]},{"name":"DhcpEnumSubnetElementsV6","features":[441]},{"name":"DhcpEnumSubnets","features":[441]},{"name":"DhcpEnumSubnetsV6","features":[441]},{"name":"DhcpExcludedIpRanges","features":[441]},{"name":"DhcpFailoverForce","features":[441]},{"name":"DhcpFullForce","features":[441]},{"name":"DhcpGetAllOptionValues","features":[305,441]},{"name":"DhcpGetAllOptionValuesV6","features":[305,441]},{"name":"DhcpGetAllOptions","features":[441]},{"name":"DhcpGetAllOptionsV6","features":[441]},{"name":"DhcpGetClassInfo","features":[305,441]},{"name":"DhcpGetClientInfo","features":[441]},{"name":"DhcpGetClientInfoV4","features":[441]},{"name":"DhcpGetClientInfoV6","features":[441]},{"name":"DhcpGetClientInfoVQ","features":[305,441]},{"name":"DhcpGetClientOptions","features":[441]},{"name":"DhcpGetFilterV4","features":[305,441]},{"name":"DhcpGetMibInfo","features":[441]},{"name":"DhcpGetMibInfoV5","features":[441]},{"name":"DhcpGetMibInfoV6","features":[441]},{"name":"DhcpGetOptionInfo","features":[441]},{"name":"DhcpGetOptionInfoV5","features":[441]},{"name":"DhcpGetOptionInfoV6","features":[441]},{"name":"DhcpGetOptionValue","features":[441]},{"name":"DhcpGetOptionValueV5","features":[441]},{"name":"DhcpGetOptionValueV6","features":[441]},{"name":"DhcpGetOriginalSubnetMask","features":[441]},{"name":"DhcpGetServerBindingInfo","features":[305,441]},{"name":"DhcpGetServerBindingInfoV6","features":[305,441]},{"name":"DhcpGetServerSpecificStrings","features":[441]},{"name":"DhcpGetSubnetDelayOffer","features":[441]},{"name":"DhcpGetSubnetInfo","features":[441]},{"name":"DhcpGetSubnetInfoV6","features":[441]},{"name":"DhcpGetSubnetInfoVQ","features":[441]},{"name":"DhcpGetSuperScopeInfoV4","features":[441]},{"name":"DhcpGetThreadOptions","features":[441]},{"name":"DhcpGetVersion","features":[441]},{"name":"DhcpGlobalOptions","features":[441]},{"name":"DhcpGlobalOptions6","features":[441]},{"name":"DhcpHlprAddV4PolicyCondition","features":[305,441]},{"name":"DhcpHlprAddV4PolicyExpr","features":[305,441]},{"name":"DhcpHlprAddV4PolicyRange","features":[305,441]},{"name":"DhcpHlprCreateV4Policy","features":[305,441]},{"name":"DhcpHlprCreateV4PolicyEx","features":[305,441]},{"name":"DhcpHlprFindV4DhcpProperty","features":[441]},{"name":"DhcpHlprFreeV4DhcpProperty","features":[441]},{"name":"DhcpHlprFreeV4DhcpPropertyArray","features":[441]},{"name":"DhcpHlprFreeV4Policy","features":[305,441]},{"name":"DhcpHlprFreeV4PolicyArray","features":[305,441]},{"name":"DhcpHlprFreeV4PolicyEx","features":[305,441]},{"name":"DhcpHlprFreeV4PolicyExArray","features":[305,441]},{"name":"DhcpHlprIsV4PolicySingleUC","features":[305,441]},{"name":"DhcpHlprIsV4PolicyValid","features":[305,441]},{"name":"DhcpHlprIsV4PolicyWellFormed","features":[305,441]},{"name":"DhcpHlprModifyV4PolicyExpr","features":[305,441]},{"name":"DhcpHlprResetV4PolicyExpr","features":[305,441]},{"name":"DhcpIpAddressOption","features":[441]},{"name":"DhcpIpRanges","features":[441]},{"name":"DhcpIpRangesBootpOnly","features":[441]},{"name":"DhcpIpRangesDhcpBootp","features":[441]},{"name":"DhcpIpRangesDhcpOnly","features":[441]},{"name":"DhcpIpUsedClusters","features":[441]},{"name":"DhcpIpv6AddressOption","features":[441]},{"name":"DhcpLogicalAnd","features":[441]},{"name":"DhcpLogicalOr","features":[441]},{"name":"DhcpMScopeOptions","features":[441]},{"name":"DhcpModifyClass","features":[305,441]},{"name":"DhcpModifyClassV6","features":[305,441]},{"name":"DhcpNoForce","features":[441]},{"name":"DhcpPropIdClientAddressStateEx","features":[441]},{"name":"DhcpPropIdPolicyDnsSuffix","features":[441]},{"name":"DhcpPropTypeBinary","features":[441]},{"name":"DhcpPropTypeByte","features":[441]},{"name":"DhcpPropTypeDword","features":[441]},{"name":"DhcpPropTypeString","features":[441]},{"name":"DhcpPropTypeWord","features":[441]},{"name":"DhcpRegisterParamChange","features":[305,441]},{"name":"DhcpRegistryFix","features":[441]},{"name":"DhcpRemoveDNSRegistrations","features":[441]},{"name":"DhcpRemoveOption","features":[441]},{"name":"DhcpRemoveOptionV5","features":[441]},{"name":"DhcpRemoveOptionV6","features":[441]},{"name":"DhcpRemoveOptionValue","features":[441]},{"name":"DhcpRemoveOptionValueV5","features":[441]},{"name":"DhcpRemoveOptionValueV6","features":[441]},{"name":"DhcpRemoveSubnetElement","features":[441]},{"name":"DhcpRemoveSubnetElementV4","features":[441]},{"name":"DhcpRemoveSubnetElementV5","features":[441]},{"name":"DhcpRemoveSubnetElementV6","features":[441]},{"name":"DhcpRequestParams","features":[305,441]},{"name":"DhcpReservedIps","features":[441]},{"name":"DhcpReservedOptions","features":[441]},{"name":"DhcpReservedOptions6","features":[441]},{"name":"DhcpRpcFreeMemory","features":[441]},{"name":"DhcpScanDatabase","features":[441]},{"name":"DhcpScopeOptions6","features":[441]},{"name":"DhcpSecondaryHosts","features":[441]},{"name":"DhcpServerAuditlogParamsFree","features":[305,441]},{"name":"DhcpServerBackupDatabase","features":[441]},{"name":"DhcpServerGetConfig","features":[441]},{"name":"DhcpServerGetConfigV4","features":[305,441]},{"name":"DhcpServerGetConfigV6","features":[305,441]},{"name":"DhcpServerGetConfigVQ","features":[305,441]},{"name":"DhcpServerQueryAttribute","features":[305,441]},{"name":"DhcpServerQueryAttributes","features":[305,441]},{"name":"DhcpServerQueryDnsRegCredentials","features":[441]},{"name":"DhcpServerRedoAuthorization","features":[441]},{"name":"DhcpServerRestoreDatabase","features":[441]},{"name":"DhcpServerSetConfig","features":[441]},{"name":"DhcpServerSetConfigV4","features":[305,441]},{"name":"DhcpServerSetConfigV6","features":[305,441]},{"name":"DhcpServerSetConfigVQ","features":[305,441]},{"name":"DhcpServerSetDnsRegCredentials","features":[441]},{"name":"DhcpServerSetDnsRegCredentialsV5","features":[441]},{"name":"DhcpSetClientInfo","features":[441]},{"name":"DhcpSetClientInfoV4","features":[441]},{"name":"DhcpSetClientInfoV6","features":[441]},{"name":"DhcpSetClientInfoVQ","features":[305,441]},{"name":"DhcpSetFilterV4","features":[305,441]},{"name":"DhcpSetOptionInfo","features":[441]},{"name":"DhcpSetOptionInfoV5","features":[441]},{"name":"DhcpSetOptionInfoV6","features":[441]},{"name":"DhcpSetOptionValue","features":[441]},{"name":"DhcpSetOptionValueV5","features":[441]},{"name":"DhcpSetOptionValueV6","features":[441]},{"name":"DhcpSetOptionValues","features":[441]},{"name":"DhcpSetOptionValuesV5","features":[441]},{"name":"DhcpSetServerBindingInfo","features":[305,441]},{"name":"DhcpSetServerBindingInfoV6","features":[305,441]},{"name":"DhcpSetSubnetDelayOffer","features":[441]},{"name":"DhcpSetSubnetInfo","features":[441]},{"name":"DhcpSetSubnetInfoV6","features":[441]},{"name":"DhcpSetSubnetInfoVQ","features":[441]},{"name":"DhcpSetSuperScopeV4","features":[305,441]},{"name":"DhcpSetThreadOptions","features":[441]},{"name":"DhcpStatelessPurgeInterval","features":[441]},{"name":"DhcpStatelessStatus","features":[441]},{"name":"DhcpStringDataOption","features":[441]},{"name":"DhcpSubnetDisabled","features":[441]},{"name":"DhcpSubnetDisabledSwitched","features":[441]},{"name":"DhcpSubnetEnabled","features":[441]},{"name":"DhcpSubnetEnabledSwitched","features":[441]},{"name":"DhcpSubnetInvalidState","features":[441]},{"name":"DhcpSubnetOptions","features":[441]},{"name":"DhcpUnaryElementTypeOption","features":[441]},{"name":"DhcpUndoRequestParams","features":[441]},{"name":"DhcpUpdatePolicyDescr","features":[441]},{"name":"DhcpUpdatePolicyDnsSuffix","features":[441]},{"name":"DhcpUpdatePolicyExpr","features":[441]},{"name":"DhcpUpdatePolicyName","features":[441]},{"name":"DhcpUpdatePolicyOrder","features":[441]},{"name":"DhcpUpdatePolicyRanges","features":[441]},{"name":"DhcpUpdatePolicyStatus","features":[441]},{"name":"DhcpV4AddPolicyRange","features":[441]},{"name":"DhcpV4CreateClientInfo","features":[305,441]},{"name":"DhcpV4CreateClientInfoEx","features":[305,441]},{"name":"DhcpV4CreatePolicy","features":[305,441]},{"name":"DhcpV4CreatePolicyEx","features":[305,441]},{"name":"DhcpV4DeletePolicy","features":[305,441]},{"name":"DhcpV4EnumPolicies","features":[305,441]},{"name":"DhcpV4EnumPoliciesEx","features":[305,441]},{"name":"DhcpV4EnumSubnetClients","features":[305,441]},{"name":"DhcpV4EnumSubnetClientsEx","features":[305,441]},{"name":"DhcpV4EnumSubnetReservations","features":[441]},{"name":"DhcpV4FailoverAddScopeToRelationship","features":[441]},{"name":"DhcpV4FailoverCreateRelationship","features":[441]},{"name":"DhcpV4FailoverDeleteRelationship","features":[441]},{"name":"DhcpV4FailoverDeleteScopeFromRelationship","features":[441]},{"name":"DhcpV4FailoverEnumRelationship","features":[441]},{"name":"DhcpV4FailoverGetAddressStatus","features":[441]},{"name":"DhcpV4FailoverGetClientInfo","features":[305,441]},{"name":"DhcpV4FailoverGetRelationship","features":[441]},{"name":"DhcpV4FailoverGetScopeRelationship","features":[441]},{"name":"DhcpV4FailoverGetScopeStatistics","features":[441]},{"name":"DhcpV4FailoverGetSystemTime","features":[441]},{"name":"DhcpV4FailoverSetRelationship","features":[441]},{"name":"DhcpV4FailoverTriggerAddrAllocation","features":[441]},{"name":"DhcpV4GetAllOptionValues","features":[305,441]},{"name":"DhcpV4GetClientInfo","features":[305,441]},{"name":"DhcpV4GetClientInfoEx","features":[305,441]},{"name":"DhcpV4GetFreeIPAddress","features":[441]},{"name":"DhcpV4GetOptionValue","features":[441]},{"name":"DhcpV4GetPolicy","features":[305,441]},{"name":"DhcpV4GetPolicyEx","features":[305,441]},{"name":"DhcpV4QueryPolicyEnforcement","features":[305,441]},{"name":"DhcpV4RemoveOptionValue","features":[441]},{"name":"DhcpV4RemovePolicyRange","features":[441]},{"name":"DhcpV4SetOptionValue","features":[441]},{"name":"DhcpV4SetOptionValues","features":[441]},{"name":"DhcpV4SetPolicy","features":[305,441]},{"name":"DhcpV4SetPolicyEnforcement","features":[305,441]},{"name":"DhcpV4SetPolicyEx","features":[305,441]},{"name":"DhcpV6CreateClientInfo","features":[441]},{"name":"DhcpV6GetFreeIPAddress","features":[441]},{"name":"DhcpV6GetStatelessStatistics","features":[441]},{"name":"DhcpV6GetStatelessStoreParams","features":[305,441]},{"name":"DhcpV6SetStatelessStoreParams","features":[305,441]},{"name":"DhcpWordOption","features":[441]},{"name":"Dhcpv6CApiCleanup","features":[441]},{"name":"Dhcpv6CApiInitialize","features":[441]},{"name":"Dhcpv6ClientDUID","features":[441]},{"name":"Dhcpv6ClientIpAddress","features":[441]},{"name":"Dhcpv6ClientName","features":[441]},{"name":"Dhcpv6ExcludedIpRanges","features":[441]},{"name":"Dhcpv6IpRanges","features":[441]},{"name":"Dhcpv6ReleasePrefix","features":[441]},{"name":"Dhcpv6RenewPrefix","features":[441]},{"name":"Dhcpv6RequestParams","features":[305,441]},{"name":"Dhcpv6RequestPrefix","features":[441]},{"name":"Dhcpv6ReservedIps","features":[441]},{"name":"ERROR_DDS_CLASS_DOES_NOT_EXIST","features":[441]},{"name":"ERROR_DDS_CLASS_EXISTS","features":[441]},{"name":"ERROR_DDS_DHCP_SERVER_NOT_FOUND","features":[441]},{"name":"ERROR_DDS_NO_DHCP_ROOT","features":[441]},{"name":"ERROR_DDS_NO_DS_AVAILABLE","features":[441]},{"name":"ERROR_DDS_OPTION_ALREADY_EXISTS","features":[441]},{"name":"ERROR_DDS_OPTION_DOES_NOT_EXIST","features":[441]},{"name":"ERROR_DDS_POSSIBLE_RANGE_CONFLICT","features":[441]},{"name":"ERROR_DDS_RANGE_DOES_NOT_EXIST","features":[441]},{"name":"ERROR_DDS_RESERVATION_CONFLICT","features":[441]},{"name":"ERROR_DDS_RESERVATION_NOT_PRESENT","features":[441]},{"name":"ERROR_DDS_SERVER_ADDRESS_MISMATCH","features":[441]},{"name":"ERROR_DDS_SERVER_ALREADY_EXISTS","features":[441]},{"name":"ERROR_DDS_SERVER_DOES_NOT_EXIST","features":[441]},{"name":"ERROR_DDS_SUBNET_EXISTS","features":[441]},{"name":"ERROR_DDS_SUBNET_HAS_DIFF_SSCOPE","features":[441]},{"name":"ERROR_DDS_SUBNET_NOT_PRESENT","features":[441]},{"name":"ERROR_DDS_TOO_MANY_ERRORS","features":[441]},{"name":"ERROR_DDS_UNEXPECTED_ERROR","features":[441]},{"name":"ERROR_DHCP_ADDRESS_NOT_AVAILABLE","features":[441]},{"name":"ERROR_DHCP_CANNOT_MODIFY_BINDINGS","features":[441]},{"name":"ERROR_DHCP_CANT_CHANGE_ATTRIBUTE","features":[441]},{"name":"ERROR_DHCP_CLASS_ALREADY_EXISTS","features":[441]},{"name":"ERROR_DHCP_CLASS_NOT_FOUND","features":[441]},{"name":"ERROR_DHCP_CLIENT_EXISTS","features":[441]},{"name":"ERROR_DHCP_DATABASE_INIT_FAILED","features":[441]},{"name":"ERROR_DHCP_DEFAULT_SCOPE_EXITS","features":[441]},{"name":"ERROR_DHCP_DELETE_BUILTIN_CLASS","features":[441]},{"name":"ERROR_DHCP_ELEMENT_CANT_REMOVE","features":[441]},{"name":"ERROR_DHCP_EXEMPTION_EXISTS","features":[441]},{"name":"ERROR_DHCP_EXEMPTION_NOT_PRESENT","features":[441]},{"name":"ERROR_DHCP_FO_ADDSCOPE_LEASES_NOT_SYNCED","features":[441]},{"name":"ERROR_DHCP_FO_BOOT_NOT_SUPPORTED","features":[441]},{"name":"ERROR_DHCP_FO_FEATURE_NOT_SUPPORTED","features":[441]},{"name":"ERROR_DHCP_FO_IPRANGE_TYPE_CONV_ILLEGAL","features":[441]},{"name":"ERROR_DHCP_FO_MAX_ADD_SCOPES","features":[441]},{"name":"ERROR_DHCP_FO_MAX_RELATIONSHIPS","features":[441]},{"name":"ERROR_DHCP_FO_NOT_SUPPORTED","features":[441]},{"name":"ERROR_DHCP_FO_RANGE_PART_OF_REL","features":[441]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_DOES_NOT_EXIST","features":[441]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_EXISTS","features":[441]},{"name":"ERROR_DHCP_FO_RELATIONSHIP_NAME_TOO_LONG","features":[441]},{"name":"ERROR_DHCP_FO_RELATION_IS_SECONDARY","features":[441]},{"name":"ERROR_DHCP_FO_SCOPE_ALREADY_IN_RELATIONSHIP","features":[441]},{"name":"ERROR_DHCP_FO_SCOPE_NOT_IN_RELATIONSHIP","features":[441]},{"name":"ERROR_DHCP_FO_SCOPE_SYNC_IN_PROGRESS","features":[441]},{"name":"ERROR_DHCP_FO_STATE_NOT_NORMAL","features":[441]},{"name":"ERROR_DHCP_FO_TIME_OUT_OF_SYNC","features":[441]},{"name":"ERROR_DHCP_HARDWARE_ADDRESS_TYPE_ALREADY_EXEMPT","features":[441]},{"name":"ERROR_DHCP_INVALID_DELAY","features":[441]},{"name":"ERROR_DHCP_INVALID_DHCP_CLIENT","features":[441]},{"name":"ERROR_DHCP_INVALID_DHCP_MESSAGE","features":[441]},{"name":"ERROR_DHCP_INVALID_PARAMETER_OPTION32","features":[441]},{"name":"ERROR_DHCP_INVALID_POLICY_EXPRESSION","features":[441]},{"name":"ERROR_DHCP_INVALID_PROCESSING_ORDER","features":[441]},{"name":"ERROR_DHCP_INVALID_RANGE","features":[441]},{"name":"ERROR_DHCP_INVALID_SUBNET_PREFIX","features":[441]},{"name":"ERROR_DHCP_IPRANGE_CONV_ILLEGAL","features":[441]},{"name":"ERROR_DHCP_IPRANGE_EXITS","features":[441]},{"name":"ERROR_DHCP_IP_ADDRESS_IN_USE","features":[441]},{"name":"ERROR_DHCP_JET97_CONV_REQUIRED","features":[441]},{"name":"ERROR_DHCP_JET_CONV_REQUIRED","features":[441]},{"name":"ERROR_DHCP_JET_ERROR","features":[441]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_DOES_NOT_EXIST","features":[441]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_EXISTS","features":[441]},{"name":"ERROR_DHCP_LINKLAYER_ADDRESS_RESERVATION_EXISTS","features":[441]},{"name":"ERROR_DHCP_LOG_FILE_PATH_TOO_LONG","features":[441]},{"name":"ERROR_DHCP_MSCOPE_EXISTS","features":[441]},{"name":"ERROR_DHCP_NAP_NOT_SUPPORTED","features":[441]},{"name":"ERROR_DHCP_NETWORK_CHANGED","features":[441]},{"name":"ERROR_DHCP_NETWORK_INIT_FAILED","features":[441]},{"name":"ERROR_DHCP_NOT_RESERVED_CLIENT","features":[441]},{"name":"ERROR_DHCP_NO_ADMIN_PERMISSION","features":[441]},{"name":"ERROR_DHCP_OPTION_EXITS","features":[441]},{"name":"ERROR_DHCP_OPTION_NOT_PRESENT","features":[441]},{"name":"ERROR_DHCP_OPTION_TYPE_MISMATCH","features":[441]},{"name":"ERROR_DHCP_POLICY_BAD_PARENT_EXPR","features":[441]},{"name":"ERROR_DHCP_POLICY_EDIT_FQDN_UNSUPPORTED","features":[441]},{"name":"ERROR_DHCP_POLICY_EXISTS","features":[441]},{"name":"ERROR_DHCP_POLICY_FQDN_OPTION_UNSUPPORTED","features":[441]},{"name":"ERROR_DHCP_POLICY_FQDN_RANGE_UNSUPPORTED","features":[441]},{"name":"ERROR_DHCP_POLICY_NOT_FOUND","features":[441]},{"name":"ERROR_DHCP_POLICY_RANGE_BAD","features":[441]},{"name":"ERROR_DHCP_POLICY_RANGE_EXISTS","features":[441]},{"name":"ERROR_DHCP_PRIMARY_NOT_FOUND","features":[441]},{"name":"ERROR_DHCP_RANGE_EXTENDED","features":[441]},{"name":"ERROR_DHCP_RANGE_FULL","features":[441]},{"name":"ERROR_DHCP_RANGE_INVALID_IN_SERVER_POLICY","features":[441]},{"name":"ERROR_DHCP_RANGE_TOO_SMALL","features":[441]},{"name":"ERROR_DHCP_REACHED_END_OF_SELECTION","features":[441]},{"name":"ERROR_DHCP_REGISTRY_INIT_FAILED","features":[441]},{"name":"ERROR_DHCP_RESERVEDIP_EXITS","features":[441]},{"name":"ERROR_DHCP_RESERVED_CLIENT","features":[441]},{"name":"ERROR_DHCP_ROGUE_DS_CONFLICT","features":[441]},{"name":"ERROR_DHCP_ROGUE_DS_UNREACHABLE","features":[441]},{"name":"ERROR_DHCP_ROGUE_INIT_FAILED","features":[441]},{"name":"ERROR_DHCP_ROGUE_NOT_AUTHORIZED","features":[441]},{"name":"ERROR_DHCP_ROGUE_NOT_OUR_ENTERPRISE","features":[441]},{"name":"ERROR_DHCP_ROGUE_SAMSHUTDOWN","features":[441]},{"name":"ERROR_DHCP_ROGUE_STANDALONE_IN_DS","features":[441]},{"name":"ERROR_DHCP_RPC_INIT_FAILED","features":[441]},{"name":"ERROR_DHCP_SCOPE_NAME_TOO_LONG","features":[441]},{"name":"ERROR_DHCP_SERVER_NAME_NOT_RESOLVED","features":[441]},{"name":"ERROR_DHCP_SERVER_NOT_REACHABLE","features":[441]},{"name":"ERROR_DHCP_SERVER_NOT_RUNNING","features":[441]},{"name":"ERROR_DHCP_SERVICE_PAUSED","features":[441]},{"name":"ERROR_DHCP_SUBNET_EXISTS","features":[441]},{"name":"ERROR_DHCP_SUBNET_EXITS","features":[441]},{"name":"ERROR_DHCP_SUBNET_NOT_PRESENT","features":[441]},{"name":"ERROR_DHCP_SUPER_SCOPE_NAME_TOO_LONG","features":[441]},{"name":"ERROR_DHCP_UNDEFINED_HARDWARE_ADDRESS_TYPE","features":[441]},{"name":"ERROR_DHCP_UNSUPPORTED_CLIENT","features":[441]},{"name":"ERROR_EXTEND_TOO_SMALL","features":[441]},{"name":"ERROR_LAST_DHCP_SERVER_ERROR","features":[441]},{"name":"ERROR_MSCOPE_RANGE_TOO_SMALL","features":[441]},{"name":"ERROR_SCOPE_RANGE_POLICY_RANGE_CONFLICT","features":[441]},{"name":"ERROR_SERVER_INVALID_BOOT_FILE_TABLE","features":[441]},{"name":"ERROR_SERVER_UNKNOWN_BOOT_FILE_NAME","features":[441]},{"name":"EXEMPT","features":[441]},{"name":"FILTER_STATUS_FULL_MATCH_IN_ALLOW_LIST","features":[441]},{"name":"FILTER_STATUS_FULL_MATCH_IN_DENY_LIST","features":[441]},{"name":"FILTER_STATUS_NONE","features":[441]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_ALLOW_LIST","features":[441]},{"name":"FILTER_STATUS_WILDCARD_MATCH_IN_DENY_LIST","features":[441]},{"name":"FSM_STATE","features":[441]},{"name":"HWTYPE_ETHERNET_10MB","features":[441]},{"name":"HotStandby","features":[441]},{"name":"INIT","features":[441]},{"name":"LPDHCP_CONTROL","features":[441]},{"name":"LPDHCP_DELETE_CLIENT","features":[441]},{"name":"LPDHCP_DROP_SEND","features":[441]},{"name":"LPDHCP_ENTRY_POINT_FUNC","features":[305,441]},{"name":"LPDHCP_GIVE_ADDRESS","features":[441]},{"name":"LPDHCP_HANDLE_OPTIONS","features":[305,441]},{"name":"LPDHCP_NEWPKT","features":[305,441]},{"name":"LPDHCP_PROB","features":[441]},{"name":"LoadBalance","features":[441]},{"name":"MAC_ADDRESS_LENGTH","features":[441]},{"name":"MAX_PATTERN_LENGTH","features":[441]},{"name":"MCLT","features":[441]},{"name":"MODE","features":[441]},{"name":"NOQUARANTINE","features":[441]},{"name":"NOQUARINFO","features":[441]},{"name":"NORMAL","features":[441]},{"name":"NO_STATE","features":[441]},{"name":"OPTION_ALL_SUBNETS_MTU","features":[441]},{"name":"OPTION_ARP_CACHE_TIMEOUT","features":[441]},{"name":"OPTION_BE_A_MASK_SUPPLIER","features":[441]},{"name":"OPTION_BE_A_ROUTER","features":[441]},{"name":"OPTION_BOOTFILE_NAME","features":[441]},{"name":"OPTION_BOOT_FILE_SIZE","features":[441]},{"name":"OPTION_BROADCAST_ADDRESS","features":[441]},{"name":"OPTION_CLIENT_CLASS_INFO","features":[441]},{"name":"OPTION_CLIENT_ID","features":[441]},{"name":"OPTION_COOKIE_SERVERS","features":[441]},{"name":"OPTION_DEFAULT_TTL","features":[441]},{"name":"OPTION_DOMAIN_NAME","features":[441]},{"name":"OPTION_DOMAIN_NAME_SERVERS","features":[441]},{"name":"OPTION_END","features":[441]},{"name":"OPTION_ETHERNET_ENCAPSULATION","features":[441]},{"name":"OPTION_EXTENSIONS_PATH","features":[441]},{"name":"OPTION_HOST_NAME","features":[441]},{"name":"OPTION_IEN116_NAME_SERVERS","features":[441]},{"name":"OPTION_IMPRESS_SERVERS","features":[441]},{"name":"OPTION_KEEP_ALIVE_DATA_SIZE","features":[441]},{"name":"OPTION_KEEP_ALIVE_INTERVAL","features":[441]},{"name":"OPTION_LEASE_TIME","features":[441]},{"name":"OPTION_LOG_SERVERS","features":[441]},{"name":"OPTION_LPR_SERVERS","features":[441]},{"name":"OPTION_MAX_REASSEMBLY_SIZE","features":[441]},{"name":"OPTION_MERIT_DUMP_FILE","features":[441]},{"name":"OPTION_MESSAGE","features":[441]},{"name":"OPTION_MESSAGE_LENGTH","features":[441]},{"name":"OPTION_MESSAGE_TYPE","features":[441]},{"name":"OPTION_MSFT_IE_PROXY","features":[441]},{"name":"OPTION_MTU","features":[441]},{"name":"OPTION_NETBIOS_DATAGRAM_SERVER","features":[441]},{"name":"OPTION_NETBIOS_NAME_SERVER","features":[441]},{"name":"OPTION_NETBIOS_NODE_TYPE","features":[441]},{"name":"OPTION_NETBIOS_SCOPE_OPTION","features":[441]},{"name":"OPTION_NETWORK_INFO_SERVERS","features":[441]},{"name":"OPTION_NETWORK_INFO_SERVICE_DOM","features":[441]},{"name":"OPTION_NETWORK_TIME_SERVERS","features":[441]},{"name":"OPTION_NON_LOCAL_SOURCE_ROUTING","features":[441]},{"name":"OPTION_OK_TO_OVERLAY","features":[441]},{"name":"OPTION_PAD","features":[441]},{"name":"OPTION_PARAMETER_REQUEST_LIST","features":[441]},{"name":"OPTION_PERFORM_MASK_DISCOVERY","features":[441]},{"name":"OPTION_PERFORM_ROUTER_DISCOVERY","features":[441]},{"name":"OPTION_PMTU_AGING_TIMEOUT","features":[441]},{"name":"OPTION_PMTU_PLATEAU_TABLE","features":[441]},{"name":"OPTION_POLICY_FILTER_FOR_NLSR","features":[441]},{"name":"OPTION_REBIND_TIME","features":[441]},{"name":"OPTION_RENEWAL_TIME","features":[441]},{"name":"OPTION_REQUESTED_ADDRESS","features":[441]},{"name":"OPTION_RLP_SERVERS","features":[441]},{"name":"OPTION_ROOT_DISK","features":[441]},{"name":"OPTION_ROUTER_ADDRESS","features":[441]},{"name":"OPTION_ROUTER_SOLICITATION_ADDR","features":[441]},{"name":"OPTION_SERVER_IDENTIFIER","features":[441]},{"name":"OPTION_STATIC_ROUTES","features":[441]},{"name":"OPTION_SUBNET_MASK","features":[441]},{"name":"OPTION_SWAP_SERVER","features":[441]},{"name":"OPTION_TFTP_SERVER_NAME","features":[441]},{"name":"OPTION_TIME_OFFSET","features":[441]},{"name":"OPTION_TIME_SERVERS","features":[441]},{"name":"OPTION_TRAILERS","features":[441]},{"name":"OPTION_TTL","features":[441]},{"name":"OPTION_VENDOR_SPEC_INFO","features":[441]},{"name":"OPTION_XWINDOW_DISPLAY_MANAGER","features":[441]},{"name":"OPTION_XWINDOW_FONT_SERVER","features":[441]},{"name":"PARTNER_DOWN","features":[441]},{"name":"PAUSED","features":[441]},{"name":"PERCENTAGE","features":[441]},{"name":"POTENTIAL_CONFLICT","features":[441]},{"name":"PREVSTATE","features":[441]},{"name":"PROBATION","features":[441]},{"name":"PrimaryServer","features":[441]},{"name":"QUARANTINE_CONFIG_OPTION","features":[441]},{"name":"QUARANTINE_SCOPE_QUARPROFILE_OPTION","features":[441]},{"name":"QUARANTIN_OPTION_BASE","features":[441]},{"name":"QuarantineStatus","features":[441]},{"name":"RECOVER","features":[441]},{"name":"RECOVER_DONE","features":[441]},{"name":"RECOVER_WAIT","features":[441]},{"name":"RESOLUTION_INT","features":[441]},{"name":"RESTRICTEDACCESS","features":[441]},{"name":"SAFEPERIOD","features":[441]},{"name":"SCOPE_MIB_INFO","features":[441]},{"name":"SCOPE_MIB_INFO_V5","features":[441]},{"name":"SCOPE_MIB_INFO_V6","features":[441]},{"name":"SCOPE_MIB_INFO_VQ","features":[441]},{"name":"SHAREDSECRET","features":[441]},{"name":"SHUTDOWN","features":[441]},{"name":"STARTUP","features":[441]},{"name":"STATUS_NOPREFIX_AVAIL","features":[441]},{"name":"STATUS_NO_BINDING","features":[441]},{"name":"STATUS_NO_ERROR","features":[441]},{"name":"STATUS_UNSPECIFIED_FAILURE","features":[441]},{"name":"SecondaryServer","features":[441]},{"name":"Set_APIProtocolSupport","features":[441]},{"name":"Set_AuditLogState","features":[441]},{"name":"Set_BackupInterval","features":[441]},{"name":"Set_BackupPath","features":[441]},{"name":"Set_BootFileTable","features":[441]},{"name":"Set_DatabaseCleanupInterval","features":[441]},{"name":"Set_DatabaseLoggingFlag","features":[441]},{"name":"Set_DatabaseName","features":[441]},{"name":"Set_DatabasePath","features":[441]},{"name":"Set_DebugFlag","features":[441]},{"name":"Set_PingRetries","features":[441]},{"name":"Set_PreferredLifetime","features":[441]},{"name":"Set_PreferredLifetimeIATA","features":[441]},{"name":"Set_QuarantineDefFail","features":[441]},{"name":"Set_QuarantineON","features":[441]},{"name":"Set_RapidCommitFlag","features":[441]},{"name":"Set_RestoreFlag","features":[441]},{"name":"Set_T1","features":[441]},{"name":"Set_T2","features":[441]},{"name":"Set_UnicastFlag","features":[441]},{"name":"Set_ValidLifetime","features":[441]},{"name":"Set_ValidLifetimeIATA","features":[441]},{"name":"StatusCode","features":[441]},{"name":"V5_ADDRESS_BIT_BOTH_REC","features":[441]},{"name":"V5_ADDRESS_BIT_DELETED","features":[441]},{"name":"V5_ADDRESS_BIT_UNREGISTERED","features":[441]},{"name":"V5_ADDRESS_EX_BIT_DISABLE_PTR_RR","features":[441]},{"name":"V5_ADDRESS_STATE_ACTIVE","features":[441]},{"name":"V5_ADDRESS_STATE_DECLINED","features":[441]},{"name":"V5_ADDRESS_STATE_DOOM","features":[441]},{"name":"V5_ADDRESS_STATE_OFFERED","features":[441]},{"name":"WARNING_EXTENDED_LESS","features":[441]}],"446":[{"name":"DDR_MAX_IP_HINTS","features":[442]},{"name":"DNSREC_ADDITIONAL","features":[442]},{"name":"DNSREC_ANSWER","features":[442]},{"name":"DNSREC_AUTHORITY","features":[442]},{"name":"DNSREC_DELETE","features":[442]},{"name":"DNSREC_NOEXIST","features":[442]},{"name":"DNSREC_PREREQ","features":[442]},{"name":"DNSREC_QUESTION","features":[442]},{"name":"DNSREC_SECTION","features":[442]},{"name":"DNSREC_UPDATE","features":[442]},{"name":"DNSREC_ZONE","features":[442]},{"name":"DNSSEC_ALGORITHM_ECDSAP256_SHA256","features":[442]},{"name":"DNSSEC_ALGORITHM_ECDSAP384_SHA384","features":[442]},{"name":"DNSSEC_ALGORITHM_NULL","features":[442]},{"name":"DNSSEC_ALGORITHM_PRIVATE","features":[442]},{"name":"DNSSEC_ALGORITHM_RSAMD5","features":[442]},{"name":"DNSSEC_ALGORITHM_RSASHA1","features":[442]},{"name":"DNSSEC_ALGORITHM_RSASHA1_NSEC3","features":[442]},{"name":"DNSSEC_ALGORITHM_RSASHA256","features":[442]},{"name":"DNSSEC_ALGORITHM_RSASHA512","features":[442]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA1","features":[442]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA256","features":[442]},{"name":"DNSSEC_DIGEST_ALGORITHM_SHA384","features":[442]},{"name":"DNSSEC_KEY_FLAG_EXTEND","features":[442]},{"name":"DNSSEC_KEY_FLAG_FLAG10","features":[442]},{"name":"DNSSEC_KEY_FLAG_FLAG11","features":[442]},{"name":"DNSSEC_KEY_FLAG_FLAG2","features":[442]},{"name":"DNSSEC_KEY_FLAG_FLAG4","features":[442]},{"name":"DNSSEC_KEY_FLAG_FLAG5","features":[442]},{"name":"DNSSEC_KEY_FLAG_FLAG8","features":[442]},{"name":"DNSSEC_KEY_FLAG_FLAG9","features":[442]},{"name":"DNSSEC_KEY_FLAG_HOST","features":[442]},{"name":"DNSSEC_KEY_FLAG_NOAUTH","features":[442]},{"name":"DNSSEC_KEY_FLAG_NOCONF","features":[442]},{"name":"DNSSEC_KEY_FLAG_NTPE3","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG0","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG1","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG10","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG11","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG12","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG13","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG14","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG15","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG2","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG3","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG4","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG5","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG6","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG7","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG8","features":[442]},{"name":"DNSSEC_KEY_FLAG_SIG9","features":[442]},{"name":"DNSSEC_KEY_FLAG_USER","features":[442]},{"name":"DNSSEC_KEY_FLAG_ZONE","features":[442]},{"name":"DNSSEC_PROTOCOL_DNSSEC","features":[442]},{"name":"DNSSEC_PROTOCOL_EMAIL","features":[442]},{"name":"DNSSEC_PROTOCOL_IPSEC","features":[442]},{"name":"DNSSEC_PROTOCOL_NONE","features":[442]},{"name":"DNSSEC_PROTOCOL_TLS","features":[442]},{"name":"DNS_AAAA_DATA","features":[442]},{"name":"DNS_ADDR","features":[442]},{"name":"DNS_ADDRESS_STRING_LENGTH","features":[442]},{"name":"DNS_ADDR_ARRAY","features":[442]},{"name":"DNS_ADDR_MAX_SOCKADDR_LENGTH","features":[442]},{"name":"DNS_APPLICATION_SETTINGS","features":[442]},{"name":"DNS_APP_SETTINGS_EXCLUSIVE_SERVERS","features":[442]},{"name":"DNS_APP_SETTINGS_VERSION1","features":[442]},{"name":"DNS_ATMA_AESA_ADDR_LENGTH","features":[442]},{"name":"DNS_ATMA_DATA","features":[442]},{"name":"DNS_ATMA_FORMAT_AESA","features":[442]},{"name":"DNS_ATMA_FORMAT_E164","features":[442]},{"name":"DNS_ATMA_MAX_ADDR_LENGTH","features":[442]},{"name":"DNS_ATMA_MAX_RECORD_LENGTH","features":[442]},{"name":"DNS_A_DATA","features":[442]},{"name":"DNS_CHARSET","features":[442]},{"name":"DNS_CLASS_ALL","features":[442]},{"name":"DNS_CLASS_ANY","features":[442]},{"name":"DNS_CLASS_CHAOS","features":[442]},{"name":"DNS_CLASS_CSNET","features":[442]},{"name":"DNS_CLASS_HESIOD","features":[442]},{"name":"DNS_CLASS_INTERNET","features":[442]},{"name":"DNS_CLASS_NONE","features":[442]},{"name":"DNS_CLASS_UNICAST_RESPONSE","features":[442]},{"name":"DNS_COMPRESSED_QUESTION_NAME","features":[442]},{"name":"DNS_CONFIG_FLAG_ALLOC","features":[442]},{"name":"DNS_CONFIG_TYPE","features":[442]},{"name":"DNS_CONNECTION_IFINDEX_ENTRY","features":[442]},{"name":"DNS_CONNECTION_IFINDEX_LIST","features":[442]},{"name":"DNS_CONNECTION_NAME","features":[442]},{"name":"DNS_CONNECTION_NAME_LIST","features":[442]},{"name":"DNS_CONNECTION_NAME_MAX_LENGTH","features":[442]},{"name":"DNS_CONNECTION_POLICY_ENTRY","features":[442]},{"name":"DNS_CONNECTION_POLICY_ENTRY_LIST","features":[442]},{"name":"DNS_CONNECTION_POLICY_ENTRY_ONDEMAND","features":[442]},{"name":"DNS_CONNECTION_POLICY_TAG","features":[442]},{"name":"DNS_CONNECTION_PROXY_ELEMENT","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_CURRENT_VERSION","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_EX","features":[305,442]},{"name":"DNS_CONNECTION_PROXY_INFO_EXCEPTION_MAX_LENGTH","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_EXTRA_INFO_MAX_LENGTH","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_BYPASSLOCAL","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_FLAG_DISABLED","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_FRIENDLY_NAME_MAX_LENGTH","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_PASSWORD_MAX_LENGTH","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_SERVER_MAX_LENGTH","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_CONFIG","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_SCRIPT","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_SWITCH_WPAD","features":[442]},{"name":"DNS_CONNECTION_PROXY_INFO_USERNAME_MAX_LENGTH","features":[442]},{"name":"DNS_CONNECTION_PROXY_LIST","features":[442]},{"name":"DNS_CONNECTION_PROXY_TYPE","features":[442]},{"name":"DNS_CONNECTION_PROXY_TYPE_HTTP","features":[442]},{"name":"DNS_CONNECTION_PROXY_TYPE_NULL","features":[442]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS4","features":[442]},{"name":"DNS_CONNECTION_PROXY_TYPE_SOCKS5","features":[442]},{"name":"DNS_CONNECTION_PROXY_TYPE_WAP","features":[442]},{"name":"DNS_CUSTOM_SERVER","features":[442]},{"name":"DNS_CUSTOM_SERVER_TYPE_DOH","features":[442]},{"name":"DNS_CUSTOM_SERVER_TYPE_UDP","features":[442]},{"name":"DNS_CUSTOM_SERVER_UDP_FALLBACK","features":[442]},{"name":"DNS_DHCID_DATA","features":[442]},{"name":"DNS_DS_DATA","features":[442]},{"name":"DNS_FREE_TYPE","features":[442]},{"name":"DNS_HEADER","features":[442]},{"name":"DNS_HEADER_EXT","features":[442]},{"name":"DNS_KEY_DATA","features":[442]},{"name":"DNS_LOC_DATA","features":[442]},{"name":"DNS_MAX_IP4_REVERSE_NAME_BUFFER_LENGTH","features":[442]},{"name":"DNS_MAX_IP4_REVERSE_NAME_LENGTH","features":[442]},{"name":"DNS_MAX_IP6_REVERSE_NAME_BUFFER_LENGTH","features":[442]},{"name":"DNS_MAX_IP6_REVERSE_NAME_LENGTH","features":[442]},{"name":"DNS_MAX_LABEL_BUFFER_LENGTH","features":[442]},{"name":"DNS_MAX_LABEL_LENGTH","features":[442]},{"name":"DNS_MAX_NAME_BUFFER_LENGTH","features":[442]},{"name":"DNS_MAX_NAME_LENGTH","features":[442]},{"name":"DNS_MAX_REVERSE_NAME_BUFFER_LENGTH","features":[442]},{"name":"DNS_MAX_REVERSE_NAME_LENGTH","features":[442]},{"name":"DNS_MAX_TEXT_STRING_LENGTH","features":[442]},{"name":"DNS_MESSAGE_BUFFER","features":[442]},{"name":"DNS_MINFO_DATAA","features":[442]},{"name":"DNS_MINFO_DATAW","features":[442]},{"name":"DNS_MX_DATAA","features":[442]},{"name":"DNS_MX_DATAW","features":[442]},{"name":"DNS_NAME_FORMAT","features":[442]},{"name":"DNS_NAPTR_DATAA","features":[442]},{"name":"DNS_NAPTR_DATAW","features":[442]},{"name":"DNS_NSEC3PARAM_DATA","features":[442]},{"name":"DNS_NSEC3_DATA","features":[442]},{"name":"DNS_NSEC_DATAA","features":[442]},{"name":"DNS_NSEC_DATAW","features":[442]},{"name":"DNS_NULL_DATA","features":[442]},{"name":"DNS_NXT_DATAA","features":[442]},{"name":"DNS_NXT_DATAW","features":[442]},{"name":"DNS_OPCODE_IQUERY","features":[442]},{"name":"DNS_OPCODE_NOTIFY","features":[442]},{"name":"DNS_OPCODE_QUERY","features":[442]},{"name":"DNS_OPCODE_SERVER_STATUS","features":[442]},{"name":"DNS_OPCODE_UNKNOWN","features":[442]},{"name":"DNS_OPCODE_UPDATE","features":[442]},{"name":"DNS_OPT_DATA","features":[442]},{"name":"DNS_PORT_HOST_ORDER","features":[442]},{"name":"DNS_PORT_NET_ORDER","features":[442]},{"name":"DNS_PROTOCOL_DOH","features":[442]},{"name":"DNS_PROTOCOL_NO_WIRE","features":[442]},{"name":"DNS_PROTOCOL_TCP","features":[442]},{"name":"DNS_PROTOCOL_UDP","features":[442]},{"name":"DNS_PROTOCOL_UNSPECIFIED","features":[442]},{"name":"DNS_PROXY_COMPLETION_ROUTINE","features":[442]},{"name":"DNS_PROXY_INFORMATION","features":[442]},{"name":"DNS_PROXY_INFORMATION_DEFAULT_SETTINGS","features":[442]},{"name":"DNS_PROXY_INFORMATION_DIRECT","features":[442]},{"name":"DNS_PROXY_INFORMATION_DOES_NOT_EXIST","features":[442]},{"name":"DNS_PROXY_INFORMATION_PROXY_NAME","features":[442]},{"name":"DNS_PROXY_INFORMATION_TYPE","features":[442]},{"name":"DNS_PTR_DATAA","features":[442]},{"name":"DNS_PTR_DATAW","features":[442]},{"name":"DNS_QUERY_ACCEPT_TRUNCATED_RESPONSE","features":[442]},{"name":"DNS_QUERY_ADDRCONFIG","features":[442]},{"name":"DNS_QUERY_APPEND_MULTILABEL","features":[442]},{"name":"DNS_QUERY_BYPASS_CACHE","features":[442]},{"name":"DNS_QUERY_CACHE_ONLY","features":[442]},{"name":"DNS_QUERY_CANCEL","features":[442]},{"name":"DNS_QUERY_DISABLE_IDN_ENCODING","features":[442]},{"name":"DNS_QUERY_DNSSEC_CHECKING_DISABLED","features":[442]},{"name":"DNS_QUERY_DNSSEC_OK","features":[442]},{"name":"DNS_QUERY_DONT_RESET_TTL_VALUES","features":[442]},{"name":"DNS_QUERY_DUAL_ADDR","features":[442]},{"name":"DNS_QUERY_MULTICAST_ONLY","features":[442]},{"name":"DNS_QUERY_NO_HOSTS_FILE","features":[442]},{"name":"DNS_QUERY_NO_LOCAL_NAME","features":[442]},{"name":"DNS_QUERY_NO_MULTICAST","features":[442]},{"name":"DNS_QUERY_NO_NETBT","features":[442]},{"name":"DNS_QUERY_NO_RECURSION","features":[442]},{"name":"DNS_QUERY_NO_WIRE_QUERY","features":[442]},{"name":"DNS_QUERY_OPTIONS","features":[442]},{"name":"DNS_QUERY_RAW_CANCEL","features":[442]},{"name":"DNS_QUERY_RAW_COMPLETION_ROUTINE","features":[305,442]},{"name":"DNS_QUERY_RAW_OPTION_BEST_EFFORT_PARSE","features":[442]},{"name":"DNS_QUERY_RAW_REQUEST","features":[305,442]},{"name":"DNS_QUERY_RAW_REQUEST_VERSION1","features":[442]},{"name":"DNS_QUERY_RAW_RESULT","features":[305,442]},{"name":"DNS_QUERY_RAW_RESULTS_VERSION1","features":[442]},{"name":"DNS_QUERY_REQUEST","features":[305,442]},{"name":"DNS_QUERY_REQUEST3","features":[305,442]},{"name":"DNS_QUERY_REQUEST_VERSION1","features":[442]},{"name":"DNS_QUERY_REQUEST_VERSION2","features":[442]},{"name":"DNS_QUERY_REQUEST_VERSION3","features":[442]},{"name":"DNS_QUERY_RESERVED","features":[442]},{"name":"DNS_QUERY_RESULT","features":[305,442]},{"name":"DNS_QUERY_RESULTS_VERSION1","features":[442]},{"name":"DNS_QUERY_RETURN_MESSAGE","features":[442]},{"name":"DNS_QUERY_STANDARD","features":[442]},{"name":"DNS_QUERY_TREAT_AS_FQDN","features":[442]},{"name":"DNS_QUERY_USE_TCP_ONLY","features":[442]},{"name":"DNS_QUERY_WIRE_ONLY","features":[442]},{"name":"DNS_RCLASS_ALL","features":[442]},{"name":"DNS_RCLASS_ANY","features":[442]},{"name":"DNS_RCLASS_CHAOS","features":[442]},{"name":"DNS_RCLASS_CSNET","features":[442]},{"name":"DNS_RCLASS_HESIOD","features":[442]},{"name":"DNS_RCLASS_INTERNET","features":[442]},{"name":"DNS_RCLASS_MDNS_CACHE_FLUSH","features":[442]},{"name":"DNS_RCLASS_NONE","features":[442]},{"name":"DNS_RCLASS_UNICAST_RESPONSE","features":[442]},{"name":"DNS_RCODE_BADKEY","features":[442]},{"name":"DNS_RCODE_BADSIG","features":[442]},{"name":"DNS_RCODE_BADTIME","features":[442]},{"name":"DNS_RCODE_BADVERS","features":[442]},{"name":"DNS_RCODE_FORMAT_ERROR","features":[442]},{"name":"DNS_RCODE_FORMERR","features":[442]},{"name":"DNS_RCODE_MAX","features":[442]},{"name":"DNS_RCODE_NAME_ERROR","features":[442]},{"name":"DNS_RCODE_NOERROR","features":[442]},{"name":"DNS_RCODE_NOTAUTH","features":[442]},{"name":"DNS_RCODE_NOTIMPL","features":[442]},{"name":"DNS_RCODE_NOTZONE","features":[442]},{"name":"DNS_RCODE_NOT_IMPLEMENTED","features":[442]},{"name":"DNS_RCODE_NO_ERROR","features":[442]},{"name":"DNS_RCODE_NXDOMAIN","features":[442]},{"name":"DNS_RCODE_NXRRSET","features":[442]},{"name":"DNS_RCODE_REFUSED","features":[442]},{"name":"DNS_RCODE_SERVER_FAILURE","features":[442]},{"name":"DNS_RCODE_SERVFAIL","features":[442]},{"name":"DNS_RCODE_YXDOMAIN","features":[442]},{"name":"DNS_RCODE_YXRRSET","features":[442]},{"name":"DNS_RECORDA","features":[305,442]},{"name":"DNS_RECORDW","features":[305,442]},{"name":"DNS_RECORD_FLAGS","features":[442]},{"name":"DNS_RECORD_OPTW","features":[305,442]},{"name":"DNS_RFC_MAX_UDP_PACKET_LENGTH","features":[442]},{"name":"DNS_RRSET","features":[305,442]},{"name":"DNS_RTYPE_A","features":[442]},{"name":"DNS_RTYPE_A6","features":[442]},{"name":"DNS_RTYPE_AAAA","features":[442]},{"name":"DNS_RTYPE_AFSDB","features":[442]},{"name":"DNS_RTYPE_ALL","features":[442]},{"name":"DNS_RTYPE_ANY","features":[442]},{"name":"DNS_RTYPE_ATMA","features":[442]},{"name":"DNS_RTYPE_AXFR","features":[442]},{"name":"DNS_RTYPE_CERT","features":[442]},{"name":"DNS_RTYPE_CNAME","features":[442]},{"name":"DNS_RTYPE_DHCID","features":[442]},{"name":"DNS_RTYPE_DNAME","features":[442]},{"name":"DNS_RTYPE_DNSKEY","features":[442]},{"name":"DNS_RTYPE_DS","features":[442]},{"name":"DNS_RTYPE_EID","features":[442]},{"name":"DNS_RTYPE_GID","features":[442]},{"name":"DNS_RTYPE_GPOS","features":[442]},{"name":"DNS_RTYPE_HINFO","features":[442]},{"name":"DNS_RTYPE_ISDN","features":[442]},{"name":"DNS_RTYPE_IXFR","features":[442]},{"name":"DNS_RTYPE_KEY","features":[442]},{"name":"DNS_RTYPE_KX","features":[442]},{"name":"DNS_RTYPE_LOC","features":[442]},{"name":"DNS_RTYPE_MAILA","features":[442]},{"name":"DNS_RTYPE_MAILB","features":[442]},{"name":"DNS_RTYPE_MB","features":[442]},{"name":"DNS_RTYPE_MD","features":[442]},{"name":"DNS_RTYPE_MF","features":[442]},{"name":"DNS_RTYPE_MG","features":[442]},{"name":"DNS_RTYPE_MINFO","features":[442]},{"name":"DNS_RTYPE_MR","features":[442]},{"name":"DNS_RTYPE_MX","features":[442]},{"name":"DNS_RTYPE_NAPTR","features":[442]},{"name":"DNS_RTYPE_NIMLOC","features":[442]},{"name":"DNS_RTYPE_NS","features":[442]},{"name":"DNS_RTYPE_NSAP","features":[442]},{"name":"DNS_RTYPE_NSAPPTR","features":[442]},{"name":"DNS_RTYPE_NSEC","features":[442]},{"name":"DNS_RTYPE_NSEC3","features":[442]},{"name":"DNS_RTYPE_NSEC3PARAM","features":[442]},{"name":"DNS_RTYPE_NULL","features":[442]},{"name":"DNS_RTYPE_NXT","features":[442]},{"name":"DNS_RTYPE_OPT","features":[442]},{"name":"DNS_RTYPE_PTR","features":[442]},{"name":"DNS_RTYPE_PX","features":[442]},{"name":"DNS_RTYPE_RP","features":[442]},{"name":"DNS_RTYPE_RRSIG","features":[442]},{"name":"DNS_RTYPE_RT","features":[442]},{"name":"DNS_RTYPE_SIG","features":[442]},{"name":"DNS_RTYPE_SINK","features":[442]},{"name":"DNS_RTYPE_SOA","features":[442]},{"name":"DNS_RTYPE_SRV","features":[442]},{"name":"DNS_RTYPE_TEXT","features":[442]},{"name":"DNS_RTYPE_TKEY","features":[442]},{"name":"DNS_RTYPE_TLSA","features":[442]},{"name":"DNS_RTYPE_TSIG","features":[442]},{"name":"DNS_RTYPE_UID","features":[442]},{"name":"DNS_RTYPE_UINFO","features":[442]},{"name":"DNS_RTYPE_UNSPEC","features":[442]},{"name":"DNS_RTYPE_WINS","features":[442]},{"name":"DNS_RTYPE_WINSR","features":[442]},{"name":"DNS_RTYPE_WKS","features":[442]},{"name":"DNS_RTYPE_X25","features":[442]},{"name":"DNS_SECTION","features":[442]},{"name":"DNS_SERVICE_BROWSE_REQUEST","features":[305,442]},{"name":"DNS_SERVICE_CANCEL","features":[442]},{"name":"DNS_SERVICE_INSTANCE","features":[442]},{"name":"DNS_SERVICE_REGISTER_REQUEST","features":[305,442]},{"name":"DNS_SERVICE_RESOLVE_REQUEST","features":[442]},{"name":"DNS_SIG_DATAA","features":[442]},{"name":"DNS_SIG_DATAW","features":[442]},{"name":"DNS_SOA_DATAA","features":[442]},{"name":"DNS_SOA_DATAW","features":[442]},{"name":"DNS_SRV_DATAA","features":[442]},{"name":"DNS_SRV_DATAW","features":[442]},{"name":"DNS_SVCB_DATA","features":[442]},{"name":"DNS_SVCB_PARAM","features":[442]},{"name":"DNS_SVCB_PARAM_ALPN","features":[442]},{"name":"DNS_SVCB_PARAM_ALPN_ID","features":[442]},{"name":"DNS_SVCB_PARAM_IPV4","features":[442]},{"name":"DNS_SVCB_PARAM_IPV6","features":[442]},{"name":"DNS_SVCB_PARAM_MANDATORY","features":[442]},{"name":"DNS_SVCB_PARAM_TYPE","features":[442]},{"name":"DNS_SVCB_PARAM_UNKNOWN","features":[442]},{"name":"DNS_TKEY_DATAA","features":[305,442]},{"name":"DNS_TKEY_DATAW","features":[305,442]},{"name":"DNS_TKEY_MODE_DIFFIE_HELLMAN","features":[442]},{"name":"DNS_TKEY_MODE_GSS","features":[442]},{"name":"DNS_TKEY_MODE_RESOLVER_ASSIGN","features":[442]},{"name":"DNS_TKEY_MODE_SERVER_ASSIGN","features":[442]},{"name":"DNS_TLSA_DATA","features":[442]},{"name":"DNS_TSIG_DATAA","features":[305,442]},{"name":"DNS_TSIG_DATAW","features":[305,442]},{"name":"DNS_TXT_DATAA","features":[442]},{"name":"DNS_TXT_DATAW","features":[442]},{"name":"DNS_TYPE","features":[442]},{"name":"DNS_TYPE_A","features":[442]},{"name":"DNS_TYPE_A6","features":[442]},{"name":"DNS_TYPE_AAAA","features":[442]},{"name":"DNS_TYPE_ADDRS","features":[442]},{"name":"DNS_TYPE_AFSDB","features":[442]},{"name":"DNS_TYPE_ALL","features":[442]},{"name":"DNS_TYPE_ANY","features":[442]},{"name":"DNS_TYPE_ATMA","features":[442]},{"name":"DNS_TYPE_AXFR","features":[442]},{"name":"DNS_TYPE_CERT","features":[442]},{"name":"DNS_TYPE_CNAME","features":[442]},{"name":"DNS_TYPE_DHCID","features":[442]},{"name":"DNS_TYPE_DNAME","features":[442]},{"name":"DNS_TYPE_DNSKEY","features":[442]},{"name":"DNS_TYPE_DS","features":[442]},{"name":"DNS_TYPE_EID","features":[442]},{"name":"DNS_TYPE_GID","features":[442]},{"name":"DNS_TYPE_GPOS","features":[442]},{"name":"DNS_TYPE_HINFO","features":[442]},{"name":"DNS_TYPE_HTTPS","features":[442]},{"name":"DNS_TYPE_ISDN","features":[442]},{"name":"DNS_TYPE_IXFR","features":[442]},{"name":"DNS_TYPE_KEY","features":[442]},{"name":"DNS_TYPE_KX","features":[442]},{"name":"DNS_TYPE_LOC","features":[442]},{"name":"DNS_TYPE_MAILA","features":[442]},{"name":"DNS_TYPE_MAILB","features":[442]},{"name":"DNS_TYPE_MB","features":[442]},{"name":"DNS_TYPE_MD","features":[442]},{"name":"DNS_TYPE_MF","features":[442]},{"name":"DNS_TYPE_MG","features":[442]},{"name":"DNS_TYPE_MINFO","features":[442]},{"name":"DNS_TYPE_MR","features":[442]},{"name":"DNS_TYPE_MX","features":[442]},{"name":"DNS_TYPE_NAPTR","features":[442]},{"name":"DNS_TYPE_NBSTAT","features":[442]},{"name":"DNS_TYPE_NIMLOC","features":[442]},{"name":"DNS_TYPE_NS","features":[442]},{"name":"DNS_TYPE_NSAP","features":[442]},{"name":"DNS_TYPE_NSAPPTR","features":[442]},{"name":"DNS_TYPE_NSEC","features":[442]},{"name":"DNS_TYPE_NSEC3","features":[442]},{"name":"DNS_TYPE_NSEC3PARAM","features":[442]},{"name":"DNS_TYPE_NULL","features":[442]},{"name":"DNS_TYPE_NXT","features":[442]},{"name":"DNS_TYPE_OPT","features":[442]},{"name":"DNS_TYPE_PTR","features":[442]},{"name":"DNS_TYPE_PX","features":[442]},{"name":"DNS_TYPE_RP","features":[442]},{"name":"DNS_TYPE_RRSIG","features":[442]},{"name":"DNS_TYPE_RT","features":[442]},{"name":"DNS_TYPE_SIG","features":[442]},{"name":"DNS_TYPE_SINK","features":[442]},{"name":"DNS_TYPE_SOA","features":[442]},{"name":"DNS_TYPE_SRV","features":[442]},{"name":"DNS_TYPE_SVCB","features":[442]},{"name":"DNS_TYPE_TEXT","features":[442]},{"name":"DNS_TYPE_TKEY","features":[442]},{"name":"DNS_TYPE_TLSA","features":[442]},{"name":"DNS_TYPE_TSIG","features":[442]},{"name":"DNS_TYPE_UID","features":[442]},{"name":"DNS_TYPE_UINFO","features":[442]},{"name":"DNS_TYPE_UNSPEC","features":[442]},{"name":"DNS_TYPE_WINS","features":[442]},{"name":"DNS_TYPE_WINSR","features":[442]},{"name":"DNS_TYPE_WKS","features":[442]},{"name":"DNS_TYPE_X25","features":[442]},{"name":"DNS_TYPE_ZERO","features":[442]},{"name":"DNS_UNKNOWN_DATA","features":[442]},{"name":"DNS_UPDATE_CACHE_SECURITY_CONTEXT","features":[442]},{"name":"DNS_UPDATE_FORCE_SECURITY_NEGO","features":[442]},{"name":"DNS_UPDATE_REMOTE_SERVER","features":[442]},{"name":"DNS_UPDATE_RESERVED","features":[442]},{"name":"DNS_UPDATE_SECURITY_OFF","features":[442]},{"name":"DNS_UPDATE_SECURITY_ON","features":[442]},{"name":"DNS_UPDATE_SECURITY_ONLY","features":[442]},{"name":"DNS_UPDATE_SECURITY_USE_DEFAULT","features":[442]},{"name":"DNS_UPDATE_SKIP_NO_UPDATE_ADAPTERS","features":[442]},{"name":"DNS_UPDATE_TEST_USE_LOCAL_SYS_ACCT","features":[442]},{"name":"DNS_UPDATE_TRY_ALL_MASTER_SERVERS","features":[442]},{"name":"DNS_VALSVR_ERROR_INVALID_ADDR","features":[442]},{"name":"DNS_VALSVR_ERROR_INVALID_NAME","features":[442]},{"name":"DNS_VALSVR_ERROR_NO_AUTH","features":[442]},{"name":"DNS_VALSVR_ERROR_NO_RESPONSE","features":[442]},{"name":"DNS_VALSVR_ERROR_NO_TCP","features":[442]},{"name":"DNS_VALSVR_ERROR_REFUSED","features":[442]},{"name":"DNS_VALSVR_ERROR_UNKNOWN","features":[442]},{"name":"DNS_VALSVR_ERROR_UNREACHABLE","features":[442]},{"name":"DNS_WINSR_DATAA","features":[442]},{"name":"DNS_WINSR_DATAW","features":[442]},{"name":"DNS_WINS_DATA","features":[442]},{"name":"DNS_WINS_FLAG_LOCAL","features":[442]},{"name":"DNS_WINS_FLAG_SCOPE","features":[442]},{"name":"DNS_WIRE_QUESTION","features":[442]},{"name":"DNS_WIRE_RECORD","features":[442]},{"name":"DNS_WKS_DATA","features":[442]},{"name":"DnsAcquireContextHandle_A","features":[305,442]},{"name":"DnsAcquireContextHandle_W","features":[305,442]},{"name":"DnsCancelQuery","features":[442]},{"name":"DnsCancelQueryRaw","features":[442]},{"name":"DnsCharSetAnsi","features":[442]},{"name":"DnsCharSetUnicode","features":[442]},{"name":"DnsCharSetUnknown","features":[442]},{"name":"DnsCharSetUtf8","features":[442]},{"name":"DnsConfigAdapterDomainName_A","features":[442]},{"name":"DnsConfigAdapterDomainName_UTF8","features":[442]},{"name":"DnsConfigAdapterDomainName_W","features":[442]},{"name":"DnsConfigAdapterHostNameRegistrationEnabled","features":[442]},{"name":"DnsConfigAdapterInfo","features":[442]},{"name":"DnsConfigAddressRegistrationMaxCount","features":[442]},{"name":"DnsConfigDnsServerList","features":[442]},{"name":"DnsConfigFullHostName_A","features":[442]},{"name":"DnsConfigFullHostName_UTF8","features":[442]},{"name":"DnsConfigFullHostName_W","features":[442]},{"name":"DnsConfigHostName_A","features":[442]},{"name":"DnsConfigHostName_UTF8","features":[442]},{"name":"DnsConfigHostName_W","features":[442]},{"name":"DnsConfigNameServer","features":[442]},{"name":"DnsConfigPrimaryDomainName_A","features":[442]},{"name":"DnsConfigPrimaryDomainName_UTF8","features":[442]},{"name":"DnsConfigPrimaryDomainName_W","features":[442]},{"name":"DnsConfigPrimaryHostNameRegistrationEnabled","features":[442]},{"name":"DnsConfigSearchList","features":[442]},{"name":"DnsConnectionDeletePolicyEntries","features":[442]},{"name":"DnsConnectionDeleteProxyInfo","features":[442]},{"name":"DnsConnectionFreeNameList","features":[442]},{"name":"DnsConnectionFreeProxyInfo","features":[442]},{"name":"DnsConnectionFreeProxyInfoEx","features":[305,442]},{"name":"DnsConnectionFreeProxyList","features":[442]},{"name":"DnsConnectionGetNameList","features":[442]},{"name":"DnsConnectionGetProxyInfo","features":[442]},{"name":"DnsConnectionGetProxyInfoForHostUrl","features":[305,442]},{"name":"DnsConnectionGetProxyInfoForHostUrlEx","features":[305,442]},{"name":"DnsConnectionGetProxyList","features":[442]},{"name":"DnsConnectionSetPolicyEntries","features":[442]},{"name":"DnsConnectionSetProxyInfo","features":[442]},{"name":"DnsConnectionUpdateIfIndexTable","features":[442]},{"name":"DnsExtractRecordsFromMessage_UTF8","features":[305,442]},{"name":"DnsExtractRecordsFromMessage_W","features":[305,442]},{"name":"DnsFree","features":[442]},{"name":"DnsFreeCustomServers","features":[442]},{"name":"DnsFreeFlat","features":[442]},{"name":"DnsFreeParsedMessageFields","features":[442]},{"name":"DnsFreeProxyName","features":[442]},{"name":"DnsFreeRecordList","features":[442]},{"name":"DnsGetApplicationSettings","features":[442]},{"name":"DnsGetProxyInformation","features":[442]},{"name":"DnsModifyRecordsInSet_A","features":[305,442]},{"name":"DnsModifyRecordsInSet_UTF8","features":[305,442]},{"name":"DnsModifyRecordsInSet_W","features":[305,442]},{"name":"DnsNameCompare_A","features":[305,442]},{"name":"DnsNameCompare_W","features":[305,442]},{"name":"DnsNameDomain","features":[442]},{"name":"DnsNameDomainLabel","features":[442]},{"name":"DnsNameHostnameFull","features":[442]},{"name":"DnsNameHostnameLabel","features":[442]},{"name":"DnsNameSrvRecord","features":[442]},{"name":"DnsNameValidateTld","features":[442]},{"name":"DnsNameWildcard","features":[442]},{"name":"DnsQueryConfig","features":[442]},{"name":"DnsQueryEx","features":[305,442]},{"name":"DnsQueryRaw","features":[305,442]},{"name":"DnsQueryRawResultFree","features":[305,442]},{"name":"DnsQuery_A","features":[305,442]},{"name":"DnsQuery_UTF8","features":[305,442]},{"name":"DnsQuery_W","features":[305,442]},{"name":"DnsRecordCompare","features":[305,442]},{"name":"DnsRecordCopyEx","features":[305,442]},{"name":"DnsRecordSetCompare","features":[305,442]},{"name":"DnsRecordSetCopyEx","features":[305,442]},{"name":"DnsRecordSetDetach","features":[305,442]},{"name":"DnsReleaseContextHandle","features":[305,442]},{"name":"DnsReplaceRecordSetA","features":[305,442]},{"name":"DnsReplaceRecordSetUTF8","features":[305,442]},{"name":"DnsReplaceRecordSetW","features":[305,442]},{"name":"DnsSectionAddtional","features":[442]},{"name":"DnsSectionAnswer","features":[442]},{"name":"DnsSectionAuthority","features":[442]},{"name":"DnsSectionQuestion","features":[442]},{"name":"DnsServiceBrowse","features":[305,442]},{"name":"DnsServiceBrowseCancel","features":[442]},{"name":"DnsServiceConstructInstance","features":[442]},{"name":"DnsServiceCopyInstance","features":[442]},{"name":"DnsServiceDeRegister","features":[305,442]},{"name":"DnsServiceFreeInstance","features":[442]},{"name":"DnsServiceRegister","features":[305,442]},{"name":"DnsServiceRegisterCancel","features":[442]},{"name":"DnsServiceResolve","features":[442]},{"name":"DnsServiceResolveCancel","features":[442]},{"name":"DnsSetApplicationSettings","features":[442]},{"name":"DnsStartMulticastQuery","features":[305,442]},{"name":"DnsStopMulticastQuery","features":[442]},{"name":"DnsSvcbParamAlpn","features":[442]},{"name":"DnsSvcbParamDohPath","features":[442]},{"name":"DnsSvcbParamDohPathOpenDns","features":[442]},{"name":"DnsSvcbParamDohPathQuad9","features":[442]},{"name":"DnsSvcbParamEch","features":[442]},{"name":"DnsSvcbParamIpv4Hint","features":[442]},{"name":"DnsSvcbParamIpv6Hint","features":[442]},{"name":"DnsSvcbParamMandatory","features":[442]},{"name":"DnsSvcbParamNoDefaultAlpn","features":[442]},{"name":"DnsSvcbParamPort","features":[442]},{"name":"DnsValidateName_A","features":[442]},{"name":"DnsValidateName_UTF8","features":[442]},{"name":"DnsValidateName_W","features":[442]},{"name":"DnsWriteQuestionToBuffer_UTF8","features":[305,442]},{"name":"DnsWriteQuestionToBuffer_W","features":[305,442]},{"name":"IP4_ADDRESS_STRING_BUFFER_LENGTH","features":[442]},{"name":"IP4_ADDRESS_STRING_LENGTH","features":[442]},{"name":"IP4_ARRAY","features":[442]},{"name":"IP6_ADDRESS","features":[442]},{"name":"IP6_ADDRESS","features":[442]},{"name":"IP6_ADDRESS_STRING_BUFFER_LENGTH","features":[442]},{"name":"IP6_ADDRESS_STRING_LENGTH","features":[442]},{"name":"MDNS_QUERY_HANDLE","features":[442]},{"name":"MDNS_QUERY_REQUEST","features":[305,442]},{"name":"PDNS_QUERY_COMPLETION_ROUTINE","features":[305,442]},{"name":"PDNS_SERVICE_BROWSE_CALLBACK","features":[305,442]},{"name":"PDNS_SERVICE_REGISTER_COMPLETE","features":[442]},{"name":"PDNS_SERVICE_RESOLVE_COMPLETE","features":[442]},{"name":"PMDNS_QUERY_CALLBACK","features":[305,442]},{"name":"SIZEOF_IP4_ADDRESS","features":[442]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_CONNECTION_MANAGER","features":[442]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_DEFAULT","features":[442]},{"name":"TAG_DNS_CONNECTION_POLICY_TAG_WWWPT","features":[442]},{"name":"_DnsRecordOptA","features":[305,442]}],"447":[{"name":"ICW_ALREADYRUN","features":[443]},{"name":"ICW_CHECKSTATUS","features":[443]},{"name":"ICW_FULLPRESENT","features":[443]},{"name":"ICW_FULL_SMARTSTART","features":[443]},{"name":"ICW_LAUNCHEDFULL","features":[443]},{"name":"ICW_LAUNCHEDMANUAL","features":[443]},{"name":"ICW_LAUNCHFULL","features":[443]},{"name":"ICW_LAUNCHMANUAL","features":[443]},{"name":"ICW_MANUALPRESENT","features":[443]},{"name":"ICW_MAX_ACCTNAME","features":[443]},{"name":"ICW_MAX_EMAILADDR","features":[443]},{"name":"ICW_MAX_EMAILNAME","features":[443]},{"name":"ICW_MAX_LOGONNAME","features":[443]},{"name":"ICW_MAX_PASSWORD","features":[443]},{"name":"ICW_MAX_RASNAME","features":[443]},{"name":"ICW_MAX_SERVERNAME","features":[443]},{"name":"ICW_REGKEYCOMPLETED","features":[443]},{"name":"ICW_REGPATHSETTINGS","features":[443]},{"name":"ICW_USEDEFAULTS","features":[443]},{"name":"ICW_USE_SHELLNEXT","features":[443]},{"name":"PFNCHECKCONNECTIONWIZARD","features":[443]},{"name":"PFNSETSHELLNEXT","features":[443]}],"448":[{"name":"ANY_SIZE","features":[444]},{"name":"ARP_SEND_REPLY","features":[444]},{"name":"AddIPAddress","features":[444]},{"name":"BEST_IF","features":[444]},{"name":"BEST_ROUTE","features":[444]},{"name":"BROADCAST_NODETYPE","features":[444]},{"name":"CancelIPChangeNotify","features":[305,444,310]},{"name":"CancelIfTimestampConfigChange","features":[444]},{"name":"CancelMibChangeNotify2","features":[305,444]},{"name":"CaptureInterfaceHardwareCrossTimestamp","features":[444,319]},{"name":"ConvertCompartmentGuidToId","features":[305,444]},{"name":"ConvertCompartmentIdToGuid","features":[305,444]},{"name":"ConvertInterfaceAliasToLuid","features":[305,444,319]},{"name":"ConvertInterfaceGuidToLuid","features":[305,444,319]},{"name":"ConvertInterfaceIndexToLuid","features":[305,444,319]},{"name":"ConvertInterfaceLuidToAlias","features":[305,444,319]},{"name":"ConvertInterfaceLuidToGuid","features":[305,444,319]},{"name":"ConvertInterfaceLuidToIndex","features":[305,444,319]},{"name":"ConvertInterfaceLuidToNameA","features":[305,444,319]},{"name":"ConvertInterfaceLuidToNameW","features":[305,444,319]},{"name":"ConvertInterfaceNameToLuidA","features":[305,444,319]},{"name":"ConvertInterfaceNameToLuidW","features":[305,444,319]},{"name":"ConvertIpv4MaskToLength","features":[305,444]},{"name":"ConvertLengthToIpv4Mask","features":[305,444]},{"name":"CreateAnycastIpAddressEntry","features":[305,444,319,318]},{"name":"CreateIpForwardEntry","features":[444,318]},{"name":"CreateIpForwardEntry2","features":[305,444,319,318]},{"name":"CreateIpNetEntry","features":[444]},{"name":"CreateIpNetEntry2","features":[305,444,319,318]},{"name":"CreatePersistentTcpPortReservation","features":[444]},{"name":"CreatePersistentUdpPortReservation","features":[444]},{"name":"CreateProxyArpEntry","features":[444]},{"name":"CreateSortedAddressPairs","features":[305,444,318]},{"name":"CreateUnicastIpAddressEntry","features":[305,444,319,318]},{"name":"DEFAULT_MINIMUM_ENTITIES","features":[444]},{"name":"DEST_LONGER","features":[444]},{"name":"DEST_MATCHING","features":[444]},{"name":"DEST_SHORTER","features":[444]},{"name":"DNS_DDR_ADAPTER_ENABLE_DOH","features":[444]},{"name":"DNS_DDR_ADAPTER_ENABLE_UDP_FALLBACK","features":[444]},{"name":"DNS_DOH_AUTO_UPGRADE_SERVER","features":[444]},{"name":"DNS_DOH_POLICY_AUTO","features":[444]},{"name":"DNS_DOH_POLICY_DISABLE","features":[444]},{"name":"DNS_DOH_POLICY_NOT_CONFIGURED","features":[444]},{"name":"DNS_DOH_POLICY_REQUIRED","features":[444]},{"name":"DNS_DOH_SERVER_SETTINGS","features":[444]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE","features":[444]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_AUTO","features":[444]},{"name":"DNS_DOH_SERVER_SETTINGS_ENABLE_DDR","features":[444]},{"name":"DNS_DOH_SERVER_SETTINGS_FALLBACK_TO_UDP","features":[444]},{"name":"DNS_ENABLE_DDR","features":[444]},{"name":"DNS_ENABLE_DOH","features":[444]},{"name":"DNS_INTERFACE_SETTINGS","features":[444]},{"name":"DNS_INTERFACE_SETTINGS3","features":[444]},{"name":"DNS_INTERFACE_SETTINGS4","features":[444]},{"name":"DNS_INTERFACE_SETTINGS_EX","features":[444]},{"name":"DNS_INTERFACE_SETTINGS_VERSION1","features":[444]},{"name":"DNS_INTERFACE_SETTINGS_VERSION2","features":[444]},{"name":"DNS_INTERFACE_SETTINGS_VERSION3","features":[444]},{"name":"DNS_INTERFACE_SETTINGS_VERSION4","features":[444]},{"name":"DNS_SERVER_PROPERTY","features":[444]},{"name":"DNS_SERVER_PROPERTY_TYPE","features":[444]},{"name":"DNS_SERVER_PROPERTY_TYPES","features":[444]},{"name":"DNS_SERVER_PROPERTY_VERSION1","features":[444]},{"name":"DNS_SETTINGS","features":[444]},{"name":"DNS_SETTINGS2","features":[444]},{"name":"DNS_SETTINGS_ENABLE_LLMNR","features":[444]},{"name":"DNS_SETTINGS_QUERY_ADAPTER_NAME","features":[444]},{"name":"DNS_SETTINGS_VERSION1","features":[444]},{"name":"DNS_SETTINGS_VERSION2","features":[444]},{"name":"DNS_SETTING_DDR","features":[444]},{"name":"DNS_SETTING_DISABLE_UNCONSTRAINED_QUERIES","features":[444]},{"name":"DNS_SETTING_DOH","features":[444]},{"name":"DNS_SETTING_DOH_PROFILE","features":[444]},{"name":"DNS_SETTING_DOMAIN","features":[444]},{"name":"DNS_SETTING_ENCRYPTED_DNS_ADAPTER_FLAGS","features":[444]},{"name":"DNS_SETTING_HOSTNAME","features":[444]},{"name":"DNS_SETTING_IPV6","features":[444]},{"name":"DNS_SETTING_NAMESERVER","features":[444]},{"name":"DNS_SETTING_PROFILE_NAMESERVER","features":[444]},{"name":"DNS_SETTING_REGISTER_ADAPTER_NAME","features":[444]},{"name":"DNS_SETTING_REGISTRATION_ENABLED","features":[444]},{"name":"DNS_SETTING_SEARCHLIST","features":[444]},{"name":"DNS_SETTING_SUPPLEMENTAL_SEARCH_LIST","features":[444]},{"name":"DeleteAnycastIpAddressEntry","features":[305,444,319,318]},{"name":"DeleteIPAddress","features":[444]},{"name":"DeleteIpForwardEntry","features":[444,318]},{"name":"DeleteIpForwardEntry2","features":[305,444,319,318]},{"name":"DeleteIpNetEntry","features":[444]},{"name":"DeleteIpNetEntry2","features":[305,444,319,318]},{"name":"DeletePersistentTcpPortReservation","features":[444]},{"name":"DeletePersistentUdpPortReservation","features":[444]},{"name":"DeleteProxyArpEntry","features":[444]},{"name":"DeleteUnicastIpAddressEntry","features":[305,444,319,318]},{"name":"DisableMediaSense","features":[305,444,310]},{"name":"DnsServerDohProperty","features":[444]},{"name":"DnsServerInvalidProperty","features":[444]},{"name":"ERROR_BASE","features":[444]},{"name":"ERROR_IPV6_NOT_IMPLEMENTED","features":[444]},{"name":"EnableRouter","features":[305,444,310]},{"name":"FD_FLAGS_ALLFLAGS","features":[444]},{"name":"FD_FLAGS_NOSYN","features":[444]},{"name":"FILTER_ICMP_CODE_ANY","features":[444]},{"name":"FILTER_ICMP_TYPE_ANY","features":[444]},{"name":"FIXED_INFO_W2KSP1","features":[444]},{"name":"FlushIpNetTable","features":[444]},{"name":"FlushIpNetTable2","features":[305,444,318]},{"name":"FlushIpPathTable","features":[305,444,318]},{"name":"FreeDnsSettings","features":[444]},{"name":"FreeInterfaceDnsSettings","features":[444]},{"name":"FreeMibTable","features":[444]},{"name":"GAA_FLAG_INCLUDE_ALL_COMPARTMENTS","features":[444]},{"name":"GAA_FLAG_INCLUDE_ALL_INTERFACES","features":[444]},{"name":"GAA_FLAG_INCLUDE_GATEWAYS","features":[444]},{"name":"GAA_FLAG_INCLUDE_PREFIX","features":[444]},{"name":"GAA_FLAG_INCLUDE_TUNNEL_BINDINGORDER","features":[444]},{"name":"GAA_FLAG_INCLUDE_WINS_INFO","features":[444]},{"name":"GAA_FLAG_SKIP_ANYCAST","features":[444]},{"name":"GAA_FLAG_SKIP_DNS_INFO","features":[444]},{"name":"GAA_FLAG_SKIP_DNS_SERVER","features":[444]},{"name":"GAA_FLAG_SKIP_FRIENDLY_NAME","features":[444]},{"name":"GAA_FLAG_SKIP_MULTICAST","features":[444]},{"name":"GAA_FLAG_SKIP_UNICAST","features":[444]},{"name":"GET_ADAPTERS_ADDRESSES_FLAGS","features":[444]},{"name":"GF_FRAGCACHE","features":[444]},{"name":"GF_FRAGMENTS","features":[444]},{"name":"GF_STRONGHOST","features":[444]},{"name":"GLOBAL_FILTER","features":[444]},{"name":"GetAdapterIndex","features":[444]},{"name":"GetAdapterOrderMap","features":[444]},{"name":"GetAdaptersAddresses","features":[444,319,318]},{"name":"GetAdaptersInfo","features":[305,444]},{"name":"GetAnycastIpAddressEntry","features":[305,444,319,318]},{"name":"GetAnycastIpAddressTable","features":[305,444,319,318]},{"name":"GetBestInterface","features":[444]},{"name":"GetBestInterfaceEx","features":[444,318]},{"name":"GetBestRoute","features":[444,318]},{"name":"GetBestRoute2","features":[305,444,319,318]},{"name":"GetCurrentThreadCompartmentId","features":[305,444]},{"name":"GetCurrentThreadCompartmentScope","features":[444]},{"name":"GetDefaultCompartmentId","features":[305,444]},{"name":"GetDnsSettings","features":[305,444]},{"name":"GetExtendedTcpTable","features":[305,444]},{"name":"GetExtendedUdpTable","features":[305,444]},{"name":"GetFriendlyIfIndex","features":[444]},{"name":"GetIcmpStatistics","features":[444]},{"name":"GetIcmpStatisticsEx","features":[444]},{"name":"GetIfEntry","features":[444]},{"name":"GetIfEntry2","features":[305,444,319]},{"name":"GetIfEntry2Ex","features":[305,444,319]},{"name":"GetIfStackTable","features":[305,444]},{"name":"GetIfTable","features":[305,444]},{"name":"GetIfTable2","features":[305,444,319]},{"name":"GetIfTable2Ex","features":[305,444,319]},{"name":"GetInterfaceActiveTimestampCapabilities","features":[305,444,319]},{"name":"GetInterfaceCurrentTimestampCapabilities","features":[305,444,319]},{"name":"GetInterfaceDnsSettings","features":[305,444]},{"name":"GetInterfaceHardwareTimestampCapabilities","features":[305,444,319]},{"name":"GetInterfaceInfo","features":[444]},{"name":"GetInterfaceSupportedTimestampCapabilities","features":[305,444,319]},{"name":"GetInvertedIfStackTable","features":[305,444]},{"name":"GetIpAddrTable","features":[305,444]},{"name":"GetIpErrorString","features":[444]},{"name":"GetIpForwardEntry2","features":[305,444,319,318]},{"name":"GetIpForwardTable","features":[305,444,318]},{"name":"GetIpForwardTable2","features":[305,444,319,318]},{"name":"GetIpInterfaceEntry","features":[305,444,319,318]},{"name":"GetIpInterfaceTable","features":[305,444,319,318]},{"name":"GetIpNetEntry2","features":[305,444,319,318]},{"name":"GetIpNetTable","features":[305,444]},{"name":"GetIpNetTable2","features":[305,444,319,318]},{"name":"GetIpNetworkConnectionBandwidthEstimates","features":[305,444,318]},{"name":"GetIpPathEntry","features":[305,444,319,318]},{"name":"GetIpPathTable","features":[305,444,319,318]},{"name":"GetIpStatistics","features":[444]},{"name":"GetIpStatisticsEx","features":[444]},{"name":"GetJobCompartmentId","features":[305,444]},{"name":"GetMulticastIpAddressEntry","features":[305,444,319,318]},{"name":"GetMulticastIpAddressTable","features":[305,444,319,318]},{"name":"GetNetworkConnectivityHint","features":[305,444,318]},{"name":"GetNetworkConnectivityHintForInterface","features":[305,444,318]},{"name":"GetNetworkInformation","features":[305,444]},{"name":"GetNetworkParams","features":[305,444]},{"name":"GetNumberOfInterfaces","features":[444]},{"name":"GetOwnerModuleFromPidAndInfo","features":[444]},{"name":"GetOwnerModuleFromTcp6Entry","features":[444]},{"name":"GetOwnerModuleFromTcpEntry","features":[444]},{"name":"GetOwnerModuleFromUdp6Entry","features":[444]},{"name":"GetOwnerModuleFromUdpEntry","features":[444]},{"name":"GetPerAdapterInfo","features":[444]},{"name":"GetPerTcp6ConnectionEStats","features":[444,318]},{"name":"GetPerTcpConnectionEStats","features":[444]},{"name":"GetRTTAndHopCount","features":[305,444]},{"name":"GetSessionCompartmentId","features":[305,444]},{"name":"GetTcp6Table","features":[305,444,318]},{"name":"GetTcp6Table2","features":[305,444,318]},{"name":"GetTcpStatistics","features":[444]},{"name":"GetTcpStatisticsEx","features":[444]},{"name":"GetTcpStatisticsEx2","features":[444]},{"name":"GetTcpTable","features":[305,444]},{"name":"GetTcpTable2","features":[305,444]},{"name":"GetTeredoPort","features":[305,444]},{"name":"GetUdp6Table","features":[305,444,318]},{"name":"GetUdpStatistics","features":[444]},{"name":"GetUdpStatisticsEx","features":[444]},{"name":"GetUdpStatisticsEx2","features":[444]},{"name":"GetUdpTable","features":[305,444]},{"name":"GetUniDirectionalAdapterInfo","features":[444]},{"name":"GetUnicastIpAddressEntry","features":[305,444,319,318]},{"name":"GetUnicastIpAddressTable","features":[305,444,319,318]},{"name":"HIFTIMESTAMPCHANGE","features":[444]},{"name":"HYBRID_NODETYPE","features":[444]},{"name":"ICMP4_DST_UNREACH","features":[444]},{"name":"ICMP4_ECHO_REPLY","features":[444]},{"name":"ICMP4_ECHO_REQUEST","features":[444]},{"name":"ICMP4_MASK_REPLY","features":[444]},{"name":"ICMP4_MASK_REQUEST","features":[444]},{"name":"ICMP4_PARAM_PROB","features":[444]},{"name":"ICMP4_REDIRECT","features":[444]},{"name":"ICMP4_ROUTER_ADVERT","features":[444]},{"name":"ICMP4_ROUTER_SOLICIT","features":[444]},{"name":"ICMP4_SOURCE_QUENCH","features":[444]},{"name":"ICMP4_TIMESTAMP_REPLY","features":[444]},{"name":"ICMP4_TIMESTAMP_REQUEST","features":[444]},{"name":"ICMP4_TIME_EXCEEDED","features":[444]},{"name":"ICMP4_TYPE","features":[444]},{"name":"ICMP6_DST_UNREACH","features":[444]},{"name":"ICMP6_ECHO_REPLY","features":[444]},{"name":"ICMP6_ECHO_REQUEST","features":[444]},{"name":"ICMP6_INFOMSG_MASK","features":[444]},{"name":"ICMP6_MEMBERSHIP_QUERY","features":[444]},{"name":"ICMP6_MEMBERSHIP_REDUCTION","features":[444]},{"name":"ICMP6_MEMBERSHIP_REPORT","features":[444]},{"name":"ICMP6_PACKET_TOO_BIG","features":[444]},{"name":"ICMP6_PARAM_PROB","features":[444]},{"name":"ICMP6_TIME_EXCEEDED","features":[444]},{"name":"ICMP6_TYPE","features":[444]},{"name":"ICMP6_V2_MEMBERSHIP_REPORT","features":[444]},{"name":"ICMPV6_ECHO_REPLY_LH","features":[444]},{"name":"ICMP_ECHO_REPLY","features":[444]},{"name":"ICMP_ECHO_REPLY32","features":[444]},{"name":"ICMP_STATS","features":[444]},{"name":"IF_ACCESS_BROADCAST","features":[444]},{"name":"IF_ACCESS_LOOPBACK","features":[444]},{"name":"IF_ACCESS_POINTTOMULTIPOINT","features":[444]},{"name":"IF_ACCESS_POINTTOPOINT","features":[444]},{"name":"IF_ACCESS_POINT_TO_MULTI_POINT","features":[444]},{"name":"IF_ACCESS_POINT_TO_POINT","features":[444]},{"name":"IF_ACCESS_TYPE","features":[444]},{"name":"IF_ADMIN_STATUS_DOWN","features":[444]},{"name":"IF_ADMIN_STATUS_TESTING","features":[444]},{"name":"IF_ADMIN_STATUS_UP","features":[444]},{"name":"IF_CHECK_MCAST","features":[444]},{"name":"IF_CHECK_NONE","features":[444]},{"name":"IF_CHECK_SEND","features":[444]},{"name":"IF_CONNECTION_DEDICATED","features":[444]},{"name":"IF_CONNECTION_DEMAND","features":[444]},{"name":"IF_CONNECTION_PASSIVE","features":[444]},{"name":"IF_NUMBER","features":[444]},{"name":"IF_OPER_STATUS_CONNECTED","features":[444]},{"name":"IF_OPER_STATUS_CONNECTING","features":[444]},{"name":"IF_OPER_STATUS_DISCONNECTED","features":[444]},{"name":"IF_OPER_STATUS_NON_OPERATIONAL","features":[444]},{"name":"IF_OPER_STATUS_OPERATIONAL","features":[444]},{"name":"IF_OPER_STATUS_UNREACHABLE","features":[444]},{"name":"IF_ROW","features":[444]},{"name":"IF_STATUS","features":[444]},{"name":"IF_TABLE","features":[444]},{"name":"IF_TYPE_A12MPPSWITCH","features":[444]},{"name":"IF_TYPE_AAL2","features":[444]},{"name":"IF_TYPE_AAL5","features":[444]},{"name":"IF_TYPE_ADSL","features":[444]},{"name":"IF_TYPE_AFLANE_8023","features":[444]},{"name":"IF_TYPE_AFLANE_8025","features":[444]},{"name":"IF_TYPE_ARAP","features":[444]},{"name":"IF_TYPE_ARCNET","features":[444]},{"name":"IF_TYPE_ARCNET_PLUS","features":[444]},{"name":"IF_TYPE_ASYNC","features":[444]},{"name":"IF_TYPE_ATM","features":[444]},{"name":"IF_TYPE_ATM_DXI","features":[444]},{"name":"IF_TYPE_ATM_FUNI","features":[444]},{"name":"IF_TYPE_ATM_IMA","features":[444]},{"name":"IF_TYPE_ATM_LOGICAL","features":[444]},{"name":"IF_TYPE_ATM_RADIO","features":[444]},{"name":"IF_TYPE_ATM_SUBINTERFACE","features":[444]},{"name":"IF_TYPE_ATM_VCI_ENDPT","features":[444]},{"name":"IF_TYPE_ATM_VIRTUAL","features":[444]},{"name":"IF_TYPE_BASIC_ISDN","features":[444]},{"name":"IF_TYPE_BGP_POLICY_ACCOUNTING","features":[444]},{"name":"IF_TYPE_BSC","features":[444]},{"name":"IF_TYPE_CCTEMUL","features":[444]},{"name":"IF_TYPE_CES","features":[444]},{"name":"IF_TYPE_CHANNEL","features":[444]},{"name":"IF_TYPE_CNR","features":[444]},{"name":"IF_TYPE_COFFEE","features":[444]},{"name":"IF_TYPE_COMPOSITELINK","features":[444]},{"name":"IF_TYPE_DCN","features":[444]},{"name":"IF_TYPE_DDN_X25","features":[444]},{"name":"IF_TYPE_DIGITALPOWERLINE","features":[444]},{"name":"IF_TYPE_DIGITAL_WRAPPER_OVERHEAD_CHANNEL","features":[444]},{"name":"IF_TYPE_DLSW","features":[444]},{"name":"IF_TYPE_DOCSCABLE_DOWNSTREAM","features":[444]},{"name":"IF_TYPE_DOCSCABLE_MACLAYER","features":[444]},{"name":"IF_TYPE_DOCSCABLE_UPSTREAM","features":[444]},{"name":"IF_TYPE_DS0","features":[444]},{"name":"IF_TYPE_DS0_BUNDLE","features":[444]},{"name":"IF_TYPE_DS1","features":[444]},{"name":"IF_TYPE_DS1_FDL","features":[444]},{"name":"IF_TYPE_DS3","features":[444]},{"name":"IF_TYPE_DTM","features":[444]},{"name":"IF_TYPE_DVBRCC_DOWNSTREAM","features":[444]},{"name":"IF_TYPE_DVBRCC_MACLAYER","features":[444]},{"name":"IF_TYPE_DVBRCC_UPSTREAM","features":[444]},{"name":"IF_TYPE_DVB_ASI_IN","features":[444]},{"name":"IF_TYPE_DVB_ASI_OUT","features":[444]},{"name":"IF_TYPE_E1","features":[444]},{"name":"IF_TYPE_EON","features":[444]},{"name":"IF_TYPE_EPLRS","features":[444]},{"name":"IF_TYPE_ESCON","features":[444]},{"name":"IF_TYPE_ETHERNET_3MBIT","features":[444]},{"name":"IF_TYPE_ETHERNET_CSMACD","features":[444]},{"name":"IF_TYPE_FAST","features":[444]},{"name":"IF_TYPE_FASTETHER","features":[444]},{"name":"IF_TYPE_FASTETHER_FX","features":[444]},{"name":"IF_TYPE_FDDI","features":[444]},{"name":"IF_TYPE_FIBRECHANNEL","features":[444]},{"name":"IF_TYPE_FRAMERELAY","features":[444]},{"name":"IF_TYPE_FRAMERELAY_INTERCONNECT","features":[444]},{"name":"IF_TYPE_FRAMERELAY_MPI","features":[444]},{"name":"IF_TYPE_FRAMERELAY_SERVICE","features":[444]},{"name":"IF_TYPE_FRF16_MFR_BUNDLE","features":[444]},{"name":"IF_TYPE_FR_DLCI_ENDPT","features":[444]},{"name":"IF_TYPE_FR_FORWARD","features":[444]},{"name":"IF_TYPE_G703_2MB","features":[444]},{"name":"IF_TYPE_G703_64K","features":[444]},{"name":"IF_TYPE_GIGABITETHERNET","features":[444]},{"name":"IF_TYPE_GR303_IDT","features":[444]},{"name":"IF_TYPE_GR303_RDT","features":[444]},{"name":"IF_TYPE_H323_GATEKEEPER","features":[444]},{"name":"IF_TYPE_H323_PROXY","features":[444]},{"name":"IF_TYPE_HDH_1822","features":[444]},{"name":"IF_TYPE_HDLC","features":[444]},{"name":"IF_TYPE_HDSL2","features":[444]},{"name":"IF_TYPE_HIPERLAN2","features":[444]},{"name":"IF_TYPE_HIPPI","features":[444]},{"name":"IF_TYPE_HIPPIINTERFACE","features":[444]},{"name":"IF_TYPE_HOSTPAD","features":[444]},{"name":"IF_TYPE_HSSI","features":[444]},{"name":"IF_TYPE_HYPERCHANNEL","features":[444]},{"name":"IF_TYPE_IBM370PARCHAN","features":[444]},{"name":"IF_TYPE_IDSL","features":[444]},{"name":"IF_TYPE_IEEE1394","features":[444]},{"name":"IF_TYPE_IEEE80211","features":[444]},{"name":"IF_TYPE_IEEE80212","features":[444]},{"name":"IF_TYPE_IEEE802154","features":[444]},{"name":"IF_TYPE_IEEE80216_WMAN","features":[444]},{"name":"IF_TYPE_IEEE8023AD_LAG","features":[444]},{"name":"IF_TYPE_IF_GSN","features":[444]},{"name":"IF_TYPE_IMT","features":[444]},{"name":"IF_TYPE_INTERLEAVE","features":[444]},{"name":"IF_TYPE_IP","features":[444]},{"name":"IF_TYPE_IPFORWARD","features":[444]},{"name":"IF_TYPE_IPOVER_ATM","features":[444]},{"name":"IF_TYPE_IPOVER_CDLC","features":[444]},{"name":"IF_TYPE_IPOVER_CLAW","features":[444]},{"name":"IF_TYPE_IPSWITCH","features":[444]},{"name":"IF_TYPE_IS088023_CSMACD","features":[444]},{"name":"IF_TYPE_ISDN","features":[444]},{"name":"IF_TYPE_ISDN_S","features":[444]},{"name":"IF_TYPE_ISDN_U","features":[444]},{"name":"IF_TYPE_ISO88022_LLC","features":[444]},{"name":"IF_TYPE_ISO88024_TOKENBUS","features":[444]},{"name":"IF_TYPE_ISO88025R_DTR","features":[444]},{"name":"IF_TYPE_ISO88025_CRFPRINT","features":[444]},{"name":"IF_TYPE_ISO88025_FIBER","features":[444]},{"name":"IF_TYPE_ISO88025_TOKENRING","features":[444]},{"name":"IF_TYPE_ISO88026_MAN","features":[444]},{"name":"IF_TYPE_ISUP","features":[444]},{"name":"IF_TYPE_L2_VLAN","features":[444]},{"name":"IF_TYPE_L3_IPVLAN","features":[444]},{"name":"IF_TYPE_L3_IPXVLAN","features":[444]},{"name":"IF_TYPE_LAP_B","features":[444]},{"name":"IF_TYPE_LAP_D","features":[444]},{"name":"IF_TYPE_LAP_F","features":[444]},{"name":"IF_TYPE_LOCALTALK","features":[444]},{"name":"IF_TYPE_MEDIAMAILOVERIP","features":[444]},{"name":"IF_TYPE_MF_SIGLINK","features":[444]},{"name":"IF_TYPE_MIO_X25","features":[444]},{"name":"IF_TYPE_MODEM","features":[444]},{"name":"IF_TYPE_MPC","features":[444]},{"name":"IF_TYPE_MPLS","features":[444]},{"name":"IF_TYPE_MPLS_TUNNEL","features":[444]},{"name":"IF_TYPE_MSDSL","features":[444]},{"name":"IF_TYPE_MVL","features":[444]},{"name":"IF_TYPE_MYRINET","features":[444]},{"name":"IF_TYPE_NFAS","features":[444]},{"name":"IF_TYPE_NSIP","features":[444]},{"name":"IF_TYPE_OPTICAL_CHANNEL","features":[444]},{"name":"IF_TYPE_OPTICAL_TRANSPORT","features":[444]},{"name":"IF_TYPE_OTHER","features":[444]},{"name":"IF_TYPE_PARA","features":[444]},{"name":"IF_TYPE_PLC","features":[444]},{"name":"IF_TYPE_POS","features":[444]},{"name":"IF_TYPE_PPP","features":[444]},{"name":"IF_TYPE_PPPMULTILINKBUNDLE","features":[444]},{"name":"IF_TYPE_PRIMARY_ISDN","features":[444]},{"name":"IF_TYPE_PROP_BWA_P2MP","features":[444]},{"name":"IF_TYPE_PROP_CNLS","features":[444]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_DOWNSTREAM","features":[444]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_MACLAYER","features":[444]},{"name":"IF_TYPE_PROP_DOCS_WIRELESS_UPSTREAM","features":[444]},{"name":"IF_TYPE_PROP_MULTIPLEXOR","features":[444]},{"name":"IF_TYPE_PROP_POINT2POINT_SERIAL","features":[444]},{"name":"IF_TYPE_PROP_VIRTUAL","features":[444]},{"name":"IF_TYPE_PROP_WIRELESS_P2P","features":[444]},{"name":"IF_TYPE_PROTEON_10MBIT","features":[444]},{"name":"IF_TYPE_PROTEON_80MBIT","features":[444]},{"name":"IF_TYPE_QLLC","features":[444]},{"name":"IF_TYPE_RADIO_MAC","features":[444]},{"name":"IF_TYPE_RADSL","features":[444]},{"name":"IF_TYPE_REACH_DSL","features":[444]},{"name":"IF_TYPE_REGULAR_1822","features":[444]},{"name":"IF_TYPE_RFC1483","features":[444]},{"name":"IF_TYPE_RFC877_X25","features":[444]},{"name":"IF_TYPE_RS232","features":[444]},{"name":"IF_TYPE_RSRB","features":[444]},{"name":"IF_TYPE_SDLC","features":[444]},{"name":"IF_TYPE_SDSL","features":[444]},{"name":"IF_TYPE_SHDSL","features":[444]},{"name":"IF_TYPE_SIP","features":[444]},{"name":"IF_TYPE_SLIP","features":[444]},{"name":"IF_TYPE_SMDS_DXI","features":[444]},{"name":"IF_TYPE_SMDS_ICIP","features":[444]},{"name":"IF_TYPE_SOFTWARE_LOOPBACK","features":[444]},{"name":"IF_TYPE_SONET","features":[444]},{"name":"IF_TYPE_SONET_OVERHEAD_CHANNEL","features":[444]},{"name":"IF_TYPE_SONET_PATH","features":[444]},{"name":"IF_TYPE_SONET_VT","features":[444]},{"name":"IF_TYPE_SRP","features":[444]},{"name":"IF_TYPE_SS7_SIGLINK","features":[444]},{"name":"IF_TYPE_STACKTOSTACK","features":[444]},{"name":"IF_TYPE_STARLAN","features":[444]},{"name":"IF_TYPE_TDLC","features":[444]},{"name":"IF_TYPE_TERMPAD","features":[444]},{"name":"IF_TYPE_TR008","features":[444]},{"name":"IF_TYPE_TRANSPHDLC","features":[444]},{"name":"IF_TYPE_TUNNEL","features":[444]},{"name":"IF_TYPE_ULTRA","features":[444]},{"name":"IF_TYPE_USB","features":[444]},{"name":"IF_TYPE_V11","features":[444]},{"name":"IF_TYPE_V35","features":[444]},{"name":"IF_TYPE_V36","features":[444]},{"name":"IF_TYPE_V37","features":[444]},{"name":"IF_TYPE_VDSL","features":[444]},{"name":"IF_TYPE_VIRTUALIPADDRESS","features":[444]},{"name":"IF_TYPE_VOICEOVERATM","features":[444]},{"name":"IF_TYPE_VOICEOVERFRAMERELAY","features":[444]},{"name":"IF_TYPE_VOICE_EM","features":[444]},{"name":"IF_TYPE_VOICE_ENCAP","features":[444]},{"name":"IF_TYPE_VOICE_FXO","features":[444]},{"name":"IF_TYPE_VOICE_FXS","features":[444]},{"name":"IF_TYPE_VOICE_OVERIP","features":[444]},{"name":"IF_TYPE_WWANPP","features":[444]},{"name":"IF_TYPE_WWANPP2","features":[444]},{"name":"IF_TYPE_X213","features":[444]},{"name":"IF_TYPE_X25_HUNTGROUP","features":[444]},{"name":"IF_TYPE_X25_MLP","features":[444]},{"name":"IF_TYPE_X25_PLE","features":[444]},{"name":"IF_TYPE_XBOX_WIRELESS","features":[444]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP","features":[444]},{"name":"INTERFACE_HARDWARE_CROSSTIMESTAMP_VERSION_1","features":[444]},{"name":"INTERFACE_HARDWARE_TIMESTAMP_CAPABILITIES","features":[305,444]},{"name":"INTERFACE_SOFTWARE_TIMESTAMP_CAPABILITIES","features":[305,444]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES","features":[305,444]},{"name":"INTERFACE_TIMESTAMP_CAPABILITIES_VERSION_1","features":[444]},{"name":"INTERNAL_IF_OPER_STATUS","features":[444]},{"name":"IOCTL_ARP_SEND_REQUEST","features":[444]},{"name":"IOCTL_IP_ADDCHANGE_NOTIFY_REQUEST","features":[444]},{"name":"IOCTL_IP_GET_BEST_INTERFACE","features":[444]},{"name":"IOCTL_IP_INTERFACE_INFO","features":[444]},{"name":"IOCTL_IP_RTCHANGE_NOTIFY_REQUEST","features":[444]},{"name":"IOCTL_IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[444]},{"name":"IP6_STATS","features":[444]},{"name":"IPRTRMGR_PID","features":[444]},{"name":"IPV6_ADDRESS_EX","features":[444]},{"name":"IPV6_GLOBAL_INFO","features":[444]},{"name":"IPV6_ROUTE_INFO","features":[444]},{"name":"IP_ADAPTER_ADDRESSES_LH","features":[444,319,318]},{"name":"IP_ADAPTER_ADDRESSES_XP","features":[444,319,318]},{"name":"IP_ADAPTER_ADDRESS_DNS_ELIGIBLE","features":[444]},{"name":"IP_ADAPTER_ADDRESS_TRANSIENT","features":[444]},{"name":"IP_ADAPTER_ANYCAST_ADDRESS_XP","features":[444,318]},{"name":"IP_ADAPTER_DDNS_ENABLED","features":[444]},{"name":"IP_ADAPTER_DHCP_ENABLED","features":[444]},{"name":"IP_ADAPTER_DNS_SERVER_ADDRESS_XP","features":[444,318]},{"name":"IP_ADAPTER_DNS_SUFFIX","features":[444]},{"name":"IP_ADAPTER_GATEWAY_ADDRESS_LH","features":[444,318]},{"name":"IP_ADAPTER_INDEX_MAP","features":[444]},{"name":"IP_ADAPTER_INFO","features":[305,444]},{"name":"IP_ADAPTER_IPV4_ENABLED","features":[444]},{"name":"IP_ADAPTER_IPV6_ENABLED","features":[444]},{"name":"IP_ADAPTER_IPV6_MANAGE_ADDRESS_CONFIG","features":[444]},{"name":"IP_ADAPTER_IPV6_OTHER_STATEFUL_CONFIG","features":[444]},{"name":"IP_ADAPTER_MULTICAST_ADDRESS_XP","features":[444,318]},{"name":"IP_ADAPTER_NETBIOS_OVER_TCPIP_ENABLED","features":[444]},{"name":"IP_ADAPTER_NO_MULTICAST","features":[444]},{"name":"IP_ADAPTER_ORDER_MAP","features":[444]},{"name":"IP_ADAPTER_PREFIX_XP","features":[444,318]},{"name":"IP_ADAPTER_RECEIVE_ONLY","features":[444]},{"name":"IP_ADAPTER_REGISTER_ADAPTER_SUFFIX","features":[444]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_LH","features":[444,318]},{"name":"IP_ADAPTER_UNICAST_ADDRESS_XP","features":[444,318]},{"name":"IP_ADAPTER_WINS_SERVER_ADDRESS_LH","features":[444,318]},{"name":"IP_ADDRESS_PREFIX","features":[444,318]},{"name":"IP_ADDRESS_STRING","features":[444]},{"name":"IP_ADDRROW","features":[444]},{"name":"IP_ADDRTABLE","features":[444]},{"name":"IP_ADDR_ADDED","features":[444]},{"name":"IP_ADDR_DELETED","features":[444]},{"name":"IP_ADDR_STRING","features":[444]},{"name":"IP_BAD_DESTINATION","features":[444]},{"name":"IP_BAD_HEADER","features":[444]},{"name":"IP_BAD_OPTION","features":[444]},{"name":"IP_BAD_REQ","features":[444]},{"name":"IP_BAD_ROUTE","features":[444]},{"name":"IP_BIND_ADAPTER","features":[444]},{"name":"IP_BUF_TOO_SMALL","features":[444]},{"name":"IP_DEMAND_DIAL_FILTER_INFO","features":[444]},{"name":"IP_DEMAND_DIAL_FILTER_INFO_V6","features":[444]},{"name":"IP_DEST_ADDR_UNREACHABLE","features":[444]},{"name":"IP_DEST_HOST_UNREACHABLE","features":[444]},{"name":"IP_DEST_NET_UNREACHABLE","features":[444]},{"name":"IP_DEST_NO_ROUTE","features":[444]},{"name":"IP_DEST_PORT_UNREACHABLE","features":[444]},{"name":"IP_DEST_PROHIBITED","features":[444]},{"name":"IP_DEST_PROT_UNREACHABLE","features":[444]},{"name":"IP_DEST_SCOPE_MISMATCH","features":[444]},{"name":"IP_DEST_UNREACHABLE","features":[444]},{"name":"IP_DEVICE_DOES_NOT_EXIST","features":[444]},{"name":"IP_DUPLICATE_ADDRESS","features":[444]},{"name":"IP_DUPLICATE_IPADD","features":[444]},{"name":"IP_EXPORT_INCLUDED","features":[444]},{"name":"IP_FILTER_ENABLE_INFO","features":[444]},{"name":"IP_FILTER_ENABLE_INFO_V6","features":[444]},{"name":"IP_FLAG_DF","features":[444]},{"name":"IP_FLAG_REVERSE","features":[444]},{"name":"IP_FORWARDNUMBER","features":[444]},{"name":"IP_FORWARDROW","features":[444]},{"name":"IP_FORWARDTABLE","features":[444]},{"name":"IP_GENERAL_FAILURE","features":[444]},{"name":"IP_GENERAL_INFO_BASE","features":[444]},{"name":"IP_GLOBAL_INFO","features":[444]},{"name":"IP_HOP_LIMIT_EXCEEDED","features":[444]},{"name":"IP_HW_ERROR","features":[444]},{"name":"IP_ICMP_ERROR","features":[444]},{"name":"IP_IFFILTER_INFO","features":[444]},{"name":"IP_IFFILTER_INFO_V6","features":[444]},{"name":"IP_INTERFACE_INFO","features":[444]},{"name":"IP_INTERFACE_METRIC_CHANGE","features":[444]},{"name":"IP_INTERFACE_NAME_INFO_W2KSP1","features":[444]},{"name":"IP_INTERFACE_STATUS_INFO","features":[444]},{"name":"IP_INTERFACE_WOL_CAPABILITY_CHANGE","features":[444]},{"name":"IP_IN_FILTER_INFO","features":[444]},{"name":"IP_IN_FILTER_INFO_V6","features":[444]},{"name":"IP_IPINIP_CFG_INFO","features":[444]},{"name":"IP_MCAST_BOUNDARY_INFO","features":[444]},{"name":"IP_MCAST_COUNTER_INFO","features":[444]},{"name":"IP_MCAST_HEARBEAT_INFO","features":[444]},{"name":"IP_MCAST_LIMIT_INFO","features":[444]},{"name":"IP_MEDIA_CONNECT","features":[444]},{"name":"IP_MEDIA_DISCONNECT","features":[444]},{"name":"IP_MTU_CHANGE","features":[444]},{"name":"IP_NEGOTIATING_IPSEC","features":[444]},{"name":"IP_NETROW","features":[444]},{"name":"IP_NETTABLE","features":[444]},{"name":"IP_NO_RESOURCES","features":[444]},{"name":"IP_OPTION_INFORMATION","features":[444]},{"name":"IP_OPTION_INFORMATION32","features":[444]},{"name":"IP_OPTION_TOO_BIG","features":[444]},{"name":"IP_OUT_FILTER_INFO","features":[444]},{"name":"IP_OUT_FILTER_INFO_V6","features":[444]},{"name":"IP_PACKET_TOO_BIG","features":[444]},{"name":"IP_PARAMETER_PROBLEM","features":[444]},{"name":"IP_PARAM_PROBLEM","features":[444]},{"name":"IP_PENDING","features":[444]},{"name":"IP_PER_ADAPTER_INFO_W2KSP1","features":[444]},{"name":"IP_PROT_PRIORITY_INFO","features":[444]},{"name":"IP_PROT_PRIORITY_INFO_EX","features":[444]},{"name":"IP_REASSEMBLY_TIME_EXCEEDED","features":[444]},{"name":"IP_RECONFIG_SECFLTR","features":[444]},{"name":"IP_REQ_TIMED_OUT","features":[444]},{"name":"IP_ROUTER_DISC_INFO","features":[444]},{"name":"IP_ROUTER_MANAGER_VERSION","features":[444]},{"name":"IP_ROUTE_INFO","features":[444]},{"name":"IP_SOURCE_QUENCH","features":[444]},{"name":"IP_SPEC_MTU_CHANGE","features":[444]},{"name":"IP_STATS","features":[444]},{"name":"IP_STATUS_BASE","features":[444]},{"name":"IP_SUCCESS","features":[444]},{"name":"IP_TIME_EXCEEDED","features":[444]},{"name":"IP_TTL_EXPIRED_REASSEM","features":[444]},{"name":"IP_TTL_EXPIRED_TRANSIT","features":[444]},{"name":"IP_UNBIND_ADAPTER","features":[444]},{"name":"IP_UNIDIRECTIONAL_ADAPTER_ADDRESS","features":[444]},{"name":"IP_UNLOAD","features":[444]},{"name":"IP_UNRECOGNIZED_NEXT_HEADER","features":[444]},{"name":"Icmp6CreateFile","features":[305,444]},{"name":"Icmp6ParseReplies","features":[444]},{"name":"Icmp6SendEcho2","features":[305,444,318,310]},{"name":"IcmpCloseHandle","features":[305,444]},{"name":"IcmpCreateFile","features":[305,444]},{"name":"IcmpParseReplies","features":[444]},{"name":"IcmpSendEcho","features":[305,444]},{"name":"IcmpSendEcho2","features":[305,444,310]},{"name":"IcmpSendEcho2Ex","features":[305,444,310]},{"name":"InitializeIpForwardEntry","features":[305,444,319,318]},{"name":"InitializeIpInterfaceEntry","features":[305,444,319,318]},{"name":"InitializeUnicastIpAddressEntry","features":[305,444,319,318]},{"name":"IpReleaseAddress","features":[444]},{"name":"IpRenewAddress","features":[444]},{"name":"LB_DST_ADDR_USE_DSTADDR_FLAG","features":[444]},{"name":"LB_DST_ADDR_USE_SRCADDR_FLAG","features":[444]},{"name":"LB_DST_MASK_LATE_FLAG","features":[444]},{"name":"LB_SRC_ADDR_USE_DSTADDR_FLAG","features":[444]},{"name":"LB_SRC_ADDR_USE_SRCADDR_FLAG","features":[444]},{"name":"LB_SRC_MASK_LATE_FLAG","features":[444]},{"name":"LookupPersistentTcpPortReservation","features":[444]},{"name":"LookupPersistentUdpPortReservation","features":[444]},{"name":"MAXLEN_IFDESCR","features":[444]},{"name":"MAXLEN_PHYSADDR","features":[444]},{"name":"MAX_ADAPTER_ADDRESS_LENGTH","features":[444]},{"name":"MAX_ADAPTER_DESCRIPTION_LENGTH","features":[444]},{"name":"MAX_ADAPTER_NAME","features":[444]},{"name":"MAX_ADAPTER_NAME_LENGTH","features":[444]},{"name":"MAX_DHCPV6_DUID_LENGTH","features":[444]},{"name":"MAX_DNS_SUFFIX_STRING_LENGTH","features":[444]},{"name":"MAX_DOMAIN_NAME_LEN","features":[444]},{"name":"MAX_HOSTNAME_LEN","features":[444]},{"name":"MAX_IF_TYPE","features":[444]},{"name":"MAX_INTERFACE_NAME_LEN","features":[444]},{"name":"MAX_IP_STATUS","features":[444]},{"name":"MAX_MIB_OFFSET","features":[444]},{"name":"MAX_OPT_SIZE","features":[444]},{"name":"MAX_SCOPE_ID_LEN","features":[444]},{"name":"MAX_SCOPE_NAME_LEN","features":[444]},{"name":"MCAST_BOUNDARY","features":[444]},{"name":"MCAST_GLOBAL","features":[444]},{"name":"MCAST_IF_ENTRY","features":[444]},{"name":"MCAST_MFE","features":[444]},{"name":"MCAST_MFE_STATS","features":[444]},{"name":"MCAST_MFE_STATS_EX","features":[444]},{"name":"MCAST_SCOPE","features":[444]},{"name":"MIBICMPINFO","features":[444]},{"name":"MIBICMPSTATS","features":[444]},{"name":"MIBICMPSTATS_EX_XPSP1","features":[444]},{"name":"MIB_ANYCASTIPADDRESS_ROW","features":[444,319,318]},{"name":"MIB_ANYCASTIPADDRESS_TABLE","features":[444,319,318]},{"name":"MIB_BEST_IF","features":[444]},{"name":"MIB_BOUNDARYROW","features":[444]},{"name":"MIB_ICMP","features":[444]},{"name":"MIB_ICMP_EX_XPSP1","features":[444]},{"name":"MIB_IFNUMBER","features":[444]},{"name":"MIB_IFROW","features":[444]},{"name":"MIB_IFSTACK_ROW","features":[444]},{"name":"MIB_IFSTACK_TABLE","features":[444]},{"name":"MIB_IFSTATUS","features":[305,444]},{"name":"MIB_IFTABLE","features":[444]},{"name":"MIB_IF_ADMIN_STATUS_DOWN","features":[444]},{"name":"MIB_IF_ADMIN_STATUS_TESTING","features":[444]},{"name":"MIB_IF_ADMIN_STATUS_UP","features":[444]},{"name":"MIB_IF_ENTRY_LEVEL","features":[444]},{"name":"MIB_IF_ROW2","features":[444,319]},{"name":"MIB_IF_TABLE2","features":[444,319]},{"name":"MIB_IF_TABLE_LEVEL","features":[444]},{"name":"MIB_IF_TYPE_ETHERNET","features":[444]},{"name":"MIB_IF_TYPE_FDDI","features":[444]},{"name":"MIB_IF_TYPE_LOOPBACK","features":[444]},{"name":"MIB_IF_TYPE_OTHER","features":[444]},{"name":"MIB_IF_TYPE_PPP","features":[444]},{"name":"MIB_IF_TYPE_SLIP","features":[444]},{"name":"MIB_IF_TYPE_TOKENRING","features":[444]},{"name":"MIB_INVALID_TEREDO_PORT_NUMBER","features":[444]},{"name":"MIB_INVERTEDIFSTACK_ROW","features":[444]},{"name":"MIB_INVERTEDIFSTACK_TABLE","features":[444]},{"name":"MIB_IPADDRROW_W2K","features":[444]},{"name":"MIB_IPADDRROW_XP","features":[444]},{"name":"MIB_IPADDRTABLE","features":[444]},{"name":"MIB_IPADDR_DELETED","features":[444]},{"name":"MIB_IPADDR_DISCONNECTED","features":[444]},{"name":"MIB_IPADDR_DNS_ELIGIBLE","features":[444]},{"name":"MIB_IPADDR_DYNAMIC","features":[444]},{"name":"MIB_IPADDR_PRIMARY","features":[444]},{"name":"MIB_IPADDR_TRANSIENT","features":[444]},{"name":"MIB_IPDESTROW","features":[444,318]},{"name":"MIB_IPDESTTABLE","features":[444,318]},{"name":"MIB_IPFORWARDNUMBER","features":[444]},{"name":"MIB_IPFORWARDROW","features":[444,318]},{"name":"MIB_IPFORWARDTABLE","features":[444,318]},{"name":"MIB_IPFORWARD_ROW2","features":[305,444,319,318]},{"name":"MIB_IPFORWARD_TABLE2","features":[305,444,319,318]},{"name":"MIB_IPFORWARD_TYPE","features":[444]},{"name":"MIB_IPINTERFACE_ROW","features":[305,444,319,318]},{"name":"MIB_IPINTERFACE_TABLE","features":[305,444,319,318]},{"name":"MIB_IPMCAST_BOUNDARY","features":[444]},{"name":"MIB_IPMCAST_BOUNDARY_TABLE","features":[444]},{"name":"MIB_IPMCAST_GLOBAL","features":[444]},{"name":"MIB_IPMCAST_IF_ENTRY","features":[444]},{"name":"MIB_IPMCAST_IF_TABLE","features":[444]},{"name":"MIB_IPMCAST_MFE","features":[444]},{"name":"MIB_IPMCAST_MFE_STATS","features":[444]},{"name":"MIB_IPMCAST_MFE_STATS_EX_XP","features":[444]},{"name":"MIB_IPMCAST_OIF_STATS_LH","features":[444]},{"name":"MIB_IPMCAST_OIF_STATS_W2K","features":[444]},{"name":"MIB_IPMCAST_OIF_W2K","features":[444]},{"name":"MIB_IPMCAST_OIF_XP","features":[444]},{"name":"MIB_IPMCAST_SCOPE","features":[444]},{"name":"MIB_IPNETROW_LH","features":[444]},{"name":"MIB_IPNETROW_W2K","features":[444]},{"name":"MIB_IPNETTABLE","features":[444]},{"name":"MIB_IPNET_ROW2","features":[444,319,318]},{"name":"MIB_IPNET_TABLE2","features":[444,319,318]},{"name":"MIB_IPNET_TYPE","features":[444]},{"name":"MIB_IPNET_TYPE_DYNAMIC","features":[444]},{"name":"MIB_IPNET_TYPE_INVALID","features":[444]},{"name":"MIB_IPNET_TYPE_OTHER","features":[444]},{"name":"MIB_IPNET_TYPE_STATIC","features":[444]},{"name":"MIB_IPPATH_ROW","features":[305,444,319,318]},{"name":"MIB_IPPATH_TABLE","features":[305,444,319,318]},{"name":"MIB_IPROUTE_METRIC_UNUSED","features":[444]},{"name":"MIB_IPROUTE_TYPE_DIRECT","features":[444]},{"name":"MIB_IPROUTE_TYPE_INDIRECT","features":[444]},{"name":"MIB_IPROUTE_TYPE_INVALID","features":[444]},{"name":"MIB_IPROUTE_TYPE_OTHER","features":[444]},{"name":"MIB_IPSTATS_FORWARDING","features":[444]},{"name":"MIB_IPSTATS_LH","features":[444]},{"name":"MIB_IPSTATS_W2K","features":[444]},{"name":"MIB_IP_FORWARDING","features":[444]},{"name":"MIB_IP_NETWORK_CONNECTION_BANDWIDTH_ESTIMATES","features":[305,444,318]},{"name":"MIB_IP_NOT_FORWARDING","features":[444]},{"name":"MIB_MCAST_LIMIT_ROW","features":[444]},{"name":"MIB_MFE_STATS_TABLE","features":[444]},{"name":"MIB_MFE_STATS_TABLE_EX_XP","features":[444]},{"name":"MIB_MFE_TABLE","features":[444]},{"name":"MIB_MULTICASTIPADDRESS_ROW","features":[444,319,318]},{"name":"MIB_MULTICASTIPADDRESS_TABLE","features":[444,319,318]},{"name":"MIB_NOTIFICATION_TYPE","features":[444]},{"name":"MIB_OPAQUE_INFO","features":[444]},{"name":"MIB_OPAQUE_QUERY","features":[444]},{"name":"MIB_PROXYARP","features":[444]},{"name":"MIB_ROUTESTATE","features":[305,444]},{"name":"MIB_TCP6ROW","features":[444,318]},{"name":"MIB_TCP6ROW2","features":[444,318]},{"name":"MIB_TCP6ROW_OWNER_MODULE","features":[444]},{"name":"MIB_TCP6ROW_OWNER_PID","features":[444]},{"name":"MIB_TCP6TABLE","features":[444,318]},{"name":"MIB_TCP6TABLE2","features":[444,318]},{"name":"MIB_TCP6TABLE_OWNER_MODULE","features":[444]},{"name":"MIB_TCP6TABLE_OWNER_PID","features":[444]},{"name":"MIB_TCPROW2","features":[444]},{"name":"MIB_TCPROW_LH","features":[444]},{"name":"MIB_TCPROW_OWNER_MODULE","features":[444]},{"name":"MIB_TCPROW_OWNER_PID","features":[444]},{"name":"MIB_TCPROW_W2K","features":[444]},{"name":"MIB_TCPSTATS2","features":[444]},{"name":"MIB_TCPSTATS_LH","features":[444]},{"name":"MIB_TCPSTATS_W2K","features":[444]},{"name":"MIB_TCPTABLE","features":[444]},{"name":"MIB_TCPTABLE2","features":[444]},{"name":"MIB_TCPTABLE_OWNER_MODULE","features":[444]},{"name":"MIB_TCPTABLE_OWNER_PID","features":[444]},{"name":"MIB_TCP_RTO_CONSTANT","features":[444]},{"name":"MIB_TCP_RTO_OTHER","features":[444]},{"name":"MIB_TCP_RTO_RSRE","features":[444]},{"name":"MIB_TCP_RTO_VANJ","features":[444]},{"name":"MIB_TCP_STATE","features":[444]},{"name":"MIB_TCP_STATE_CLOSED","features":[444]},{"name":"MIB_TCP_STATE_CLOSE_WAIT","features":[444]},{"name":"MIB_TCP_STATE_CLOSING","features":[444]},{"name":"MIB_TCP_STATE_DELETE_TCB","features":[444]},{"name":"MIB_TCP_STATE_ESTAB","features":[444]},{"name":"MIB_TCP_STATE_FIN_WAIT1","features":[444]},{"name":"MIB_TCP_STATE_FIN_WAIT2","features":[444]},{"name":"MIB_TCP_STATE_LAST_ACK","features":[444]},{"name":"MIB_TCP_STATE_LISTEN","features":[444]},{"name":"MIB_TCP_STATE_RESERVED","features":[444]},{"name":"MIB_TCP_STATE_SYN_RCVD","features":[444]},{"name":"MIB_TCP_STATE_SYN_SENT","features":[444]},{"name":"MIB_TCP_STATE_TIME_WAIT","features":[444]},{"name":"MIB_UDP6ROW","features":[444,318]},{"name":"MIB_UDP6ROW2","features":[444]},{"name":"MIB_UDP6ROW_OWNER_MODULE","features":[444]},{"name":"MIB_UDP6ROW_OWNER_PID","features":[444]},{"name":"MIB_UDP6TABLE","features":[444,318]},{"name":"MIB_UDP6TABLE2","features":[444]},{"name":"MIB_UDP6TABLE_OWNER_MODULE","features":[444]},{"name":"MIB_UDP6TABLE_OWNER_PID","features":[444]},{"name":"MIB_UDPROW","features":[444]},{"name":"MIB_UDPROW2","features":[444]},{"name":"MIB_UDPROW_OWNER_MODULE","features":[444]},{"name":"MIB_UDPROW_OWNER_PID","features":[444]},{"name":"MIB_UDPSTATS","features":[444]},{"name":"MIB_UDPSTATS2","features":[444]},{"name":"MIB_UDPTABLE","features":[444]},{"name":"MIB_UDPTABLE2","features":[444]},{"name":"MIB_UDPTABLE_OWNER_MODULE","features":[444]},{"name":"MIB_UDPTABLE_OWNER_PID","features":[444]},{"name":"MIB_UNICASTIPADDRESS_ROW","features":[305,444,319,318]},{"name":"MIB_UNICASTIPADDRESS_TABLE","features":[305,444,319,318]},{"name":"MIB_USE_CURRENT_FORWARDING","features":[444]},{"name":"MIB_USE_CURRENT_TTL","features":[444]},{"name":"MIN_IF_TYPE","features":[444]},{"name":"MIXED_NODETYPE","features":[444]},{"name":"MibAddInstance","features":[444]},{"name":"MibDeleteInstance","features":[444]},{"name":"MibIfEntryNormal","features":[444]},{"name":"MibIfEntryNormalWithoutStatistics","features":[444]},{"name":"MibIfTableNormal","features":[444]},{"name":"MibIfTableNormalWithoutStatistics","features":[444]},{"name":"MibIfTableRaw","features":[444]},{"name":"MibInitialNotification","features":[444]},{"name":"MibParameterNotification","features":[444]},{"name":"ND_NEIGHBOR_ADVERT","features":[444]},{"name":"ND_NEIGHBOR_SOLICIT","features":[444]},{"name":"ND_REDIRECT","features":[444]},{"name":"ND_ROUTER_ADVERT","features":[444]},{"name":"ND_ROUTER_SOLICIT","features":[444]},{"name":"NET_ADDRESS_DNS_NAME","features":[444]},{"name":"NET_ADDRESS_FORMAT","features":[444]},{"name":"NET_ADDRESS_FORMAT_UNSPECIFIED","features":[444]},{"name":"NET_ADDRESS_INFO","features":[444,318]},{"name":"NET_ADDRESS_IPV4","features":[444]},{"name":"NET_ADDRESS_IPV6","features":[444]},{"name":"NET_STRING_IPV4_ADDRESS","features":[444]},{"name":"NET_STRING_IPV4_NETWORK","features":[444]},{"name":"NET_STRING_IPV4_SERVICE","features":[444]},{"name":"NET_STRING_IPV6_ADDRESS","features":[444]},{"name":"NET_STRING_IPV6_ADDRESS_NO_SCOPE","features":[444]},{"name":"NET_STRING_IPV6_NETWORK","features":[444]},{"name":"NET_STRING_IPV6_SERVICE","features":[444]},{"name":"NET_STRING_IPV6_SERVICE_NO_SCOPE","features":[444]},{"name":"NET_STRING_NAMED_ADDRESS","features":[444]},{"name":"NET_STRING_NAMED_SERVICE","features":[444]},{"name":"NUMBER_OF_EXPORTED_VARIABLES","features":[444]},{"name":"NhpAllocateAndGetInterfaceInfoFromStack","features":[305,444]},{"name":"NotifyAddrChange","features":[305,444,310]},{"name":"NotifyIfTimestampConfigChange","features":[444]},{"name":"NotifyIpInterfaceChange","features":[305,444,319,318]},{"name":"NotifyNetworkConnectivityHintChange","features":[305,444,318]},{"name":"NotifyRouteChange","features":[305,444,310]},{"name":"NotifyRouteChange2","features":[305,444,319,318]},{"name":"NotifyStableUnicastIpAddressTable","features":[305,444,319,318]},{"name":"NotifyTeredoPortChange","features":[305,444]},{"name":"NotifyUnicastIpAddressChange","features":[305,444,319,318]},{"name":"PEER_TO_PEER_NODETYPE","features":[444]},{"name":"PFADDRESSTYPE","features":[444]},{"name":"PFERROR_BUFFER_TOO_SMALL","features":[444]},{"name":"PFERROR_NO_FILTERS_GIVEN","features":[444]},{"name":"PFERROR_NO_PF_INTERFACE","features":[444]},{"name":"PFFORWARD_ACTION","features":[444]},{"name":"PFFRAMETYPE","features":[444]},{"name":"PFFT_FILTER","features":[444]},{"name":"PFFT_FRAG","features":[444]},{"name":"PFFT_SPOOF","features":[444]},{"name":"PFLOGFRAME","features":[444]},{"name":"PF_ACTION_DROP","features":[444]},{"name":"PF_ACTION_FORWARD","features":[444]},{"name":"PF_FILTER_DESCRIPTOR","features":[444]},{"name":"PF_FILTER_STATS","features":[444]},{"name":"PF_INTERFACE_STATS","features":[444]},{"name":"PF_IPV4","features":[444]},{"name":"PF_IPV6","features":[444]},{"name":"PF_LATEBIND_INFO","features":[444]},{"name":"PINTERFACE_TIMESTAMP_CONFIG_CHANGE_CALLBACK","features":[444]},{"name":"PIPFORWARD_CHANGE_CALLBACK","features":[305,444,319,318]},{"name":"PIPINTERFACE_CHANGE_CALLBACK","features":[305,444,319,318]},{"name":"PNETWORK_CONNECTIVITY_HINT_CHANGE_CALLBACK","features":[305,444,318]},{"name":"PROXY_ARP","features":[444]},{"name":"PSTABLE_UNICAST_IPADDRESS_TABLE_CALLBACK","features":[305,444,319,318]},{"name":"PTEREDO_PORT_CHANGE_CALLBACK","features":[444]},{"name":"PUNICAST_IPADDRESS_CHANGE_CALLBACK","features":[305,444,319,318]},{"name":"ParseNetworkString","features":[444,318]},{"name":"PfAddFiltersToInterface","features":[444]},{"name":"PfAddGlobalFilterToInterface","features":[444]},{"name":"PfBindInterfaceToIPAddress","features":[444]},{"name":"PfBindInterfaceToIndex","features":[444]},{"name":"PfCreateInterface","features":[305,444]},{"name":"PfDeleteInterface","features":[444]},{"name":"PfDeleteLog","features":[444]},{"name":"PfGetInterfaceStatistics","features":[305,444]},{"name":"PfMakeLog","features":[305,444]},{"name":"PfRebindFilters","features":[444]},{"name":"PfRemoveFilterHandles","features":[444]},{"name":"PfRemoveFiltersFromInterface","features":[444]},{"name":"PfRemoveGlobalFilterFromInterface","features":[444]},{"name":"PfSetLogBuffer","features":[444]},{"name":"PfTestPacket","features":[444]},{"name":"PfUnBindInterface","features":[444]},{"name":"ROUTE_LONGER","features":[444]},{"name":"ROUTE_MATCHING","features":[444]},{"name":"ROUTE_SHORTER","features":[444]},{"name":"ROUTE_STATE","features":[444]},{"name":"RegisterInterfaceTimestampConfigChange","features":[444]},{"name":"ResolveIpNetEntry2","features":[305,444,319,318]},{"name":"ResolveNeighbor","features":[444,318]},{"name":"RestoreMediaSense","features":[305,444,310]},{"name":"SendARP","features":[444]},{"name":"SetCurrentThreadCompartmentId","features":[305,444]},{"name":"SetCurrentThreadCompartmentScope","features":[305,444]},{"name":"SetDnsSettings","features":[305,444]},{"name":"SetIfEntry","features":[444]},{"name":"SetInterfaceDnsSettings","features":[305,444]},{"name":"SetIpForwardEntry","features":[444,318]},{"name":"SetIpForwardEntry2","features":[305,444,319,318]},{"name":"SetIpInterfaceEntry","features":[305,444,319,318]},{"name":"SetIpNetEntry","features":[444]},{"name":"SetIpNetEntry2","features":[305,444,319,318]},{"name":"SetIpStatistics","features":[444]},{"name":"SetIpStatisticsEx","features":[444]},{"name":"SetIpTTL","features":[444]},{"name":"SetJobCompartmentId","features":[305,444]},{"name":"SetNetworkInformation","features":[305,444]},{"name":"SetPerTcp6ConnectionEStats","features":[444,318]},{"name":"SetPerTcpConnectionEStats","features":[444]},{"name":"SetSessionCompartmentId","features":[305,444]},{"name":"SetTcpEntry","features":[444]},{"name":"SetUnicastIpAddressEntry","features":[305,444,319,318]},{"name":"TCP6_STATS","features":[444]},{"name":"TCPIP_OWNER_MODULE_BASIC_INFO","features":[444]},{"name":"TCPIP_OWNER_MODULE_INFO_BASIC","features":[444]},{"name":"TCPIP_OWNER_MODULE_INFO_CLASS","features":[444]},{"name":"TCPIP_OWNING_MODULE_SIZE","features":[444]},{"name":"TCP_BOOLEAN_OPTIONAL","features":[444]},{"name":"TCP_CONNECTION_OFFLOAD_STATE","features":[444]},{"name":"TCP_ESTATS_BANDWIDTH_ROD_v0","features":[305,444]},{"name":"TCP_ESTATS_BANDWIDTH_RW_v0","features":[444]},{"name":"TCP_ESTATS_DATA_ROD_v0","features":[444]},{"name":"TCP_ESTATS_DATA_RW_v0","features":[305,444]},{"name":"TCP_ESTATS_FINE_RTT_ROD_v0","features":[444]},{"name":"TCP_ESTATS_FINE_RTT_RW_v0","features":[305,444]},{"name":"TCP_ESTATS_OBS_REC_ROD_v0","features":[444]},{"name":"TCP_ESTATS_OBS_REC_RW_v0","features":[305,444]},{"name":"TCP_ESTATS_PATH_ROD_v0","features":[444]},{"name":"TCP_ESTATS_PATH_RW_v0","features":[305,444]},{"name":"TCP_ESTATS_REC_ROD_v0","features":[444]},{"name":"TCP_ESTATS_REC_RW_v0","features":[305,444]},{"name":"TCP_ESTATS_SEND_BUFF_ROD_v0","features":[444]},{"name":"TCP_ESTATS_SEND_BUFF_RW_v0","features":[305,444]},{"name":"TCP_ESTATS_SND_CONG_ROD_v0","features":[444]},{"name":"TCP_ESTATS_SND_CONG_ROS_v0","features":[444]},{"name":"TCP_ESTATS_SND_CONG_RW_v0","features":[305,444]},{"name":"TCP_ESTATS_SYN_OPTS_ROS_v0","features":[305,444]},{"name":"TCP_ESTATS_TYPE","features":[444]},{"name":"TCP_RESERVE_PORT_RANGE","features":[444]},{"name":"TCP_ROW","features":[444]},{"name":"TCP_RTO_ALGORITHM","features":[444]},{"name":"TCP_SOFT_ERROR","features":[444]},{"name":"TCP_STATS","features":[444]},{"name":"TCP_TABLE","features":[444]},{"name":"TCP_TABLE_BASIC_ALL","features":[444]},{"name":"TCP_TABLE_BASIC_CONNECTIONS","features":[444]},{"name":"TCP_TABLE_BASIC_LISTENER","features":[444]},{"name":"TCP_TABLE_CLASS","features":[444]},{"name":"TCP_TABLE_OWNER_MODULE_ALL","features":[444]},{"name":"TCP_TABLE_OWNER_MODULE_CONNECTIONS","features":[444]},{"name":"TCP_TABLE_OWNER_MODULE_LISTENER","features":[444]},{"name":"TCP_TABLE_OWNER_PID_ALL","features":[444]},{"name":"TCP_TABLE_OWNER_PID_CONNECTIONS","features":[444]},{"name":"TCP_TABLE_OWNER_PID_LISTENER","features":[444]},{"name":"TcpBoolOptDisabled","features":[444]},{"name":"TcpBoolOptEnabled","features":[444]},{"name":"TcpBoolOptUnchanged","features":[444]},{"name":"TcpConnectionEstatsBandwidth","features":[444]},{"name":"TcpConnectionEstatsData","features":[444]},{"name":"TcpConnectionEstatsFineRtt","features":[444]},{"name":"TcpConnectionEstatsMaximum","features":[444]},{"name":"TcpConnectionEstatsObsRec","features":[444]},{"name":"TcpConnectionEstatsPath","features":[444]},{"name":"TcpConnectionEstatsRec","features":[444]},{"name":"TcpConnectionEstatsSendBuff","features":[444]},{"name":"TcpConnectionEstatsSndCong","features":[444]},{"name":"TcpConnectionEstatsSynOpts","features":[444]},{"name":"TcpConnectionOffloadStateInHost","features":[444]},{"name":"TcpConnectionOffloadStateMax","features":[444]},{"name":"TcpConnectionOffloadStateOffloaded","features":[444]},{"name":"TcpConnectionOffloadStateOffloading","features":[444]},{"name":"TcpConnectionOffloadStateUploading","features":[444]},{"name":"TcpErrorAboveAckWindow","features":[444]},{"name":"TcpErrorAboveDataWindow","features":[444]},{"name":"TcpErrorAboveTsWindow","features":[444]},{"name":"TcpErrorBelowAckWindow","features":[444]},{"name":"TcpErrorBelowDataWindow","features":[444]},{"name":"TcpErrorBelowTsWindow","features":[444]},{"name":"TcpErrorDataChecksumError","features":[444]},{"name":"TcpErrorDataLengthError","features":[444]},{"name":"TcpErrorMaxSoftError","features":[444]},{"name":"TcpErrorNone","features":[444]},{"name":"TcpRtoAlgorithmConstant","features":[444]},{"name":"TcpRtoAlgorithmOther","features":[444]},{"name":"TcpRtoAlgorithmRsre","features":[444]},{"name":"TcpRtoAlgorithmVanj","features":[444]},{"name":"UDP6_STATS","features":[444]},{"name":"UDP_ROW","features":[444]},{"name":"UDP_STATS","features":[444]},{"name":"UDP_TABLE","features":[444]},{"name":"UDP_TABLE_BASIC","features":[444]},{"name":"UDP_TABLE_CLASS","features":[444]},{"name":"UDP_TABLE_OWNER_MODULE","features":[444]},{"name":"UDP_TABLE_OWNER_PID","features":[444]},{"name":"UnenableRouter","features":[305,444,310]},{"name":"UnregisterInterfaceTimestampConfigChange","features":[444]},{"name":"if_indextoname","features":[444]},{"name":"if_nametoindex","features":[444]}],"449":[{"name":"IDummyMBNUCMExt","features":[445,356]},{"name":"IMbnConnection","features":[445]},{"name":"IMbnConnectionContext","features":[445]},{"name":"IMbnConnectionContextEvents","features":[445]},{"name":"IMbnConnectionEvents","features":[445]},{"name":"IMbnConnectionManager","features":[445]},{"name":"IMbnConnectionManagerEvents","features":[445]},{"name":"IMbnConnectionProfile","features":[445]},{"name":"IMbnConnectionProfileEvents","features":[445]},{"name":"IMbnConnectionProfileManager","features":[445]},{"name":"IMbnConnectionProfileManagerEvents","features":[445]},{"name":"IMbnDeviceService","features":[445]},{"name":"IMbnDeviceServiceStateEvents","features":[445]},{"name":"IMbnDeviceServicesContext","features":[445]},{"name":"IMbnDeviceServicesEvents","features":[445]},{"name":"IMbnDeviceServicesManager","features":[445]},{"name":"IMbnInterface","features":[445]},{"name":"IMbnInterfaceEvents","features":[445]},{"name":"IMbnInterfaceManager","features":[445]},{"name":"IMbnInterfaceManagerEvents","features":[445]},{"name":"IMbnMultiCarrier","features":[445]},{"name":"IMbnMultiCarrierEvents","features":[445]},{"name":"IMbnPin","features":[445]},{"name":"IMbnPinEvents","features":[445]},{"name":"IMbnPinManager","features":[445]},{"name":"IMbnPinManagerEvents","features":[445]},{"name":"IMbnRadio","features":[445]},{"name":"IMbnRadioEvents","features":[445]},{"name":"IMbnRegistration","features":[445]},{"name":"IMbnRegistrationEvents","features":[445]},{"name":"IMbnServiceActivation","features":[445]},{"name":"IMbnServiceActivationEvents","features":[445]},{"name":"IMbnSignal","features":[445]},{"name":"IMbnSignalEvents","features":[445]},{"name":"IMbnSms","features":[445]},{"name":"IMbnSmsConfiguration","features":[445]},{"name":"IMbnSmsEvents","features":[445]},{"name":"IMbnSmsReadMsgPdu","features":[445]},{"name":"IMbnSmsReadMsgTextCdma","features":[445]},{"name":"IMbnSubscriberInformation","features":[445]},{"name":"IMbnVendorSpecificEvents","features":[445]},{"name":"IMbnVendorSpecificOperation","features":[445]},{"name":"MBN_ACCESSSTRING_LEN","features":[445]},{"name":"MBN_ACTIVATION_STATE","features":[445]},{"name":"MBN_ACTIVATION_STATE_ACTIVATED","features":[445]},{"name":"MBN_ACTIVATION_STATE_ACTIVATING","features":[445]},{"name":"MBN_ACTIVATION_STATE_DEACTIVATED","features":[445]},{"name":"MBN_ACTIVATION_STATE_DEACTIVATING","features":[445]},{"name":"MBN_ACTIVATION_STATE_NONE","features":[445]},{"name":"MBN_ATTEMPTS_REMAINING_UNKNOWN","features":[445]},{"name":"MBN_AUTH_PROTOCOL","features":[445]},{"name":"MBN_AUTH_PROTOCOL_CHAP","features":[445]},{"name":"MBN_AUTH_PROTOCOL_MSCHAPV2","features":[445]},{"name":"MBN_AUTH_PROTOCOL_NONE","features":[445]},{"name":"MBN_AUTH_PROTOCOL_PAP","features":[445]},{"name":"MBN_BAND_CLASS","features":[445]},{"name":"MBN_BAND_CLASS_0","features":[445]},{"name":"MBN_BAND_CLASS_CUSTOM","features":[445]},{"name":"MBN_BAND_CLASS_I","features":[445]},{"name":"MBN_BAND_CLASS_II","features":[445]},{"name":"MBN_BAND_CLASS_III","features":[445]},{"name":"MBN_BAND_CLASS_IV","features":[445]},{"name":"MBN_BAND_CLASS_IX","features":[445]},{"name":"MBN_BAND_CLASS_NONE","features":[445]},{"name":"MBN_BAND_CLASS_V","features":[445]},{"name":"MBN_BAND_CLASS_VI","features":[445]},{"name":"MBN_BAND_CLASS_VII","features":[445]},{"name":"MBN_BAND_CLASS_VIII","features":[445]},{"name":"MBN_BAND_CLASS_X","features":[445]},{"name":"MBN_BAND_CLASS_XI","features":[445]},{"name":"MBN_BAND_CLASS_XII","features":[445]},{"name":"MBN_BAND_CLASS_XIII","features":[445]},{"name":"MBN_BAND_CLASS_XIV","features":[445]},{"name":"MBN_BAND_CLASS_XV","features":[445]},{"name":"MBN_BAND_CLASS_XVI","features":[445]},{"name":"MBN_BAND_CLASS_XVII","features":[445]},{"name":"MBN_CDMA_DEFAULT_PROVIDER_ID","features":[445]},{"name":"MBN_CDMA_SHORT_MSG_SIZE_MAX","features":[445]},{"name":"MBN_CDMA_SHORT_MSG_SIZE_UNKNOWN","features":[445]},{"name":"MBN_CELLULAR_CLASS","features":[445]},{"name":"MBN_CELLULAR_CLASS_CDMA","features":[445]},{"name":"MBN_CELLULAR_CLASS_GSM","features":[445]},{"name":"MBN_CELLULAR_CLASS_NONE","features":[445]},{"name":"MBN_COMPRESSION","features":[445]},{"name":"MBN_COMPRESSION_ENABLE","features":[445]},{"name":"MBN_COMPRESSION_NONE","features":[445]},{"name":"MBN_CONNECTION_MODE","features":[445]},{"name":"MBN_CONNECTION_MODE_PROFILE","features":[445]},{"name":"MBN_CONNECTION_MODE_TMP_PROFILE","features":[445]},{"name":"MBN_CONTEXT","features":[445]},{"name":"MBN_CONTEXT_CONSTANTS","features":[445]},{"name":"MBN_CONTEXT_ID_APPEND","features":[445]},{"name":"MBN_CONTEXT_TYPE","features":[445]},{"name":"MBN_CONTEXT_TYPE_CUSTOM","features":[445]},{"name":"MBN_CONTEXT_TYPE_INTERNET","features":[445]},{"name":"MBN_CONTEXT_TYPE_NONE","features":[445]},{"name":"MBN_CONTEXT_TYPE_PURCHASE","features":[445]},{"name":"MBN_CONTEXT_TYPE_VIDEO_SHARE","features":[445]},{"name":"MBN_CONTEXT_TYPE_VOICE","features":[445]},{"name":"MBN_CONTEXT_TYPE_VPN","features":[445]},{"name":"MBN_CTRL_CAPS","features":[445]},{"name":"MBN_CTRL_CAPS_CDMA_MOBILE_IP","features":[445]},{"name":"MBN_CTRL_CAPS_CDMA_SIMPLE_IP","features":[445]},{"name":"MBN_CTRL_CAPS_HW_RADIO_SWITCH","features":[445]},{"name":"MBN_CTRL_CAPS_MODEL_MULTI_CARRIER","features":[445]},{"name":"MBN_CTRL_CAPS_MULTI_MODE","features":[445]},{"name":"MBN_CTRL_CAPS_NONE","features":[445]},{"name":"MBN_CTRL_CAPS_PROTECT_UNIQUEID","features":[445]},{"name":"MBN_CTRL_CAPS_REG_MANUAL","features":[445]},{"name":"MBN_CTRL_CAPS_USSD","features":[445]},{"name":"MBN_DATA_CLASS","features":[445]},{"name":"MBN_DATA_CLASS_1XEVDO","features":[445]},{"name":"MBN_DATA_CLASS_1XEVDO_REVA","features":[445]},{"name":"MBN_DATA_CLASS_1XEVDO_REVB","features":[445]},{"name":"MBN_DATA_CLASS_1XEVDV","features":[445]},{"name":"MBN_DATA_CLASS_1XRTT","features":[445]},{"name":"MBN_DATA_CLASS_3XRTT","features":[445]},{"name":"MBN_DATA_CLASS_5G_NSA","features":[445]},{"name":"MBN_DATA_CLASS_5G_SA","features":[445]},{"name":"MBN_DATA_CLASS_CUSTOM","features":[445]},{"name":"MBN_DATA_CLASS_EDGE","features":[445]},{"name":"MBN_DATA_CLASS_GPRS","features":[445]},{"name":"MBN_DATA_CLASS_HSDPA","features":[445]},{"name":"MBN_DATA_CLASS_HSUPA","features":[445]},{"name":"MBN_DATA_CLASS_LTE","features":[445]},{"name":"MBN_DATA_CLASS_NONE","features":[445]},{"name":"MBN_DATA_CLASS_UMB","features":[445]},{"name":"MBN_DATA_CLASS_UMTS","features":[445]},{"name":"MBN_DEVICEID_LEN","features":[445]},{"name":"MBN_DEVICE_SERVICE","features":[305,445]},{"name":"MBN_DEVICE_SERVICES_CAPABLE_INTERFACE_ARRIVAL","features":[445]},{"name":"MBN_DEVICE_SERVICES_CAPABLE_INTERFACE_REMOVAL","features":[445]},{"name":"MBN_DEVICE_SERVICES_INTERFACE_STATE","features":[445]},{"name":"MBN_DEVICE_SERVICE_SESSIONS_RESTORED","features":[445]},{"name":"MBN_DEVICE_SERVICE_SESSIONS_STATE","features":[445]},{"name":"MBN_ERROR_RATE_UNKNOWN","features":[445]},{"name":"MBN_FIRMWARE_LEN","features":[445]},{"name":"MBN_INTERFACE_CAPS","features":[445]},{"name":"MBN_INTERFACE_CAPS_CONSTANTS","features":[445]},{"name":"MBN_MANUFACTURER_LEN","features":[445]},{"name":"MBN_MESSAGE_INDEX_NONE","features":[445]},{"name":"MBN_MODEL_LEN","features":[445]},{"name":"MBN_MSG_STATUS","features":[445]},{"name":"MBN_MSG_STATUS_DRAFT","features":[445]},{"name":"MBN_MSG_STATUS_NEW","features":[445]},{"name":"MBN_MSG_STATUS_OLD","features":[445]},{"name":"MBN_MSG_STATUS_SENT","features":[445]},{"name":"MBN_PASSWORD_LEN","features":[445]},{"name":"MBN_PIN_CONSTANTS","features":[445]},{"name":"MBN_PIN_FORMAT","features":[445]},{"name":"MBN_PIN_FORMAT_ALPHANUMERIC","features":[445]},{"name":"MBN_PIN_FORMAT_NONE","features":[445]},{"name":"MBN_PIN_FORMAT_NUMERIC","features":[445]},{"name":"MBN_PIN_INFO","features":[445]},{"name":"MBN_PIN_LENGTH_UNKNOWN","features":[445]},{"name":"MBN_PIN_MODE","features":[445]},{"name":"MBN_PIN_MODE_DISABLED","features":[445]},{"name":"MBN_PIN_MODE_ENABLED","features":[445]},{"name":"MBN_PIN_STATE","features":[445]},{"name":"MBN_PIN_STATE_ENTER","features":[445]},{"name":"MBN_PIN_STATE_NONE","features":[445]},{"name":"MBN_PIN_STATE_UNBLOCK","features":[445]},{"name":"MBN_PIN_TYPE","features":[445]},{"name":"MBN_PIN_TYPE_CORPORATE_PIN","features":[445]},{"name":"MBN_PIN_TYPE_CUSTOM","features":[445]},{"name":"MBN_PIN_TYPE_DEVICE_FIRST_SIM_PIN","features":[445]},{"name":"MBN_PIN_TYPE_DEVICE_SIM_PIN","features":[445]},{"name":"MBN_PIN_TYPE_NETWORK_PIN","features":[445]},{"name":"MBN_PIN_TYPE_NETWORK_SUBSET_PIN","features":[445]},{"name":"MBN_PIN_TYPE_NONE","features":[445]},{"name":"MBN_PIN_TYPE_PIN1","features":[445]},{"name":"MBN_PIN_TYPE_PIN2","features":[445]},{"name":"MBN_PIN_TYPE_SUBSIDY_LOCK","features":[445]},{"name":"MBN_PIN_TYPE_SVC_PROVIDER_PIN","features":[445]},{"name":"MBN_PROVIDER","features":[445]},{"name":"MBN_PROVIDER2","features":[445]},{"name":"MBN_PROVIDERID_LEN","features":[445]},{"name":"MBN_PROVIDERNAME_LEN","features":[445]},{"name":"MBN_PROVIDER_CONSTANTS","features":[445]},{"name":"MBN_PROVIDER_STATE","features":[445]},{"name":"MBN_PROVIDER_STATE_FORBIDDEN","features":[445]},{"name":"MBN_PROVIDER_STATE_HOME","features":[445]},{"name":"MBN_PROVIDER_STATE_NONE","features":[445]},{"name":"MBN_PROVIDER_STATE_PREFERRED","features":[445]},{"name":"MBN_PROVIDER_STATE_PREFERRED_MULTICARRIER","features":[445]},{"name":"MBN_PROVIDER_STATE_REGISTERED","features":[445]},{"name":"MBN_PROVIDER_STATE_VISIBLE","features":[445]},{"name":"MBN_RADIO","features":[445]},{"name":"MBN_RADIO_OFF","features":[445]},{"name":"MBN_RADIO_ON","features":[445]},{"name":"MBN_READY_STATE","features":[445]},{"name":"MBN_READY_STATE_BAD_SIM","features":[445]},{"name":"MBN_READY_STATE_DEVICE_BLOCKED","features":[445]},{"name":"MBN_READY_STATE_DEVICE_LOCKED","features":[445]},{"name":"MBN_READY_STATE_FAILURE","features":[445]},{"name":"MBN_READY_STATE_INITIALIZED","features":[445]},{"name":"MBN_READY_STATE_NOT_ACTIVATED","features":[445]},{"name":"MBN_READY_STATE_NO_ESIM_PROFILE","features":[445]},{"name":"MBN_READY_STATE_OFF","features":[445]},{"name":"MBN_READY_STATE_SIM_NOT_INSERTED","features":[445]},{"name":"MBN_REGISTER_MODE","features":[445]},{"name":"MBN_REGISTER_MODE_AUTOMATIC","features":[445]},{"name":"MBN_REGISTER_MODE_MANUAL","features":[445]},{"name":"MBN_REGISTER_MODE_NONE","features":[445]},{"name":"MBN_REGISTER_STATE","features":[445]},{"name":"MBN_REGISTER_STATE_DENIED","features":[445]},{"name":"MBN_REGISTER_STATE_DEREGISTERED","features":[445]},{"name":"MBN_REGISTER_STATE_HOME","features":[445]},{"name":"MBN_REGISTER_STATE_NONE","features":[445]},{"name":"MBN_REGISTER_STATE_PARTNER","features":[445]},{"name":"MBN_REGISTER_STATE_ROAMING","features":[445]},{"name":"MBN_REGISTER_STATE_SEARCHING","features":[445]},{"name":"MBN_REGISTRATION_CONSTANTS","features":[445]},{"name":"MBN_ROAMTEXT_LEN","features":[445]},{"name":"MBN_RSSI_DEFAULT","features":[445]},{"name":"MBN_RSSI_DISABLE","features":[445]},{"name":"MBN_RSSI_UNKNOWN","features":[445]},{"name":"MBN_SIGNAL_CONSTANTS","features":[445]},{"name":"MBN_SMS_CAPS","features":[445]},{"name":"MBN_SMS_CAPS_NONE","features":[445]},{"name":"MBN_SMS_CAPS_PDU_RECEIVE","features":[445]},{"name":"MBN_SMS_CAPS_PDU_SEND","features":[445]},{"name":"MBN_SMS_CAPS_TEXT_RECEIVE","features":[445]},{"name":"MBN_SMS_CAPS_TEXT_SEND","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_7BIT_ASCII","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_EPM","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_GSM_7BIT","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_IA5","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_KOREAN","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_LATIN","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_LATIN_HEBREW","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_OCTET","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_SHIFT_JIS","features":[445]},{"name":"MBN_SMS_CDMA_ENCODING_UNICODE","features":[445]},{"name":"MBN_SMS_CDMA_LANG","features":[445]},{"name":"MBN_SMS_CDMA_LANG_CHINESE","features":[445]},{"name":"MBN_SMS_CDMA_LANG_ENGLISH","features":[445]},{"name":"MBN_SMS_CDMA_LANG_FRENCH","features":[445]},{"name":"MBN_SMS_CDMA_LANG_HEBREW","features":[445]},{"name":"MBN_SMS_CDMA_LANG_JAPANESE","features":[445]},{"name":"MBN_SMS_CDMA_LANG_KOREAN","features":[445]},{"name":"MBN_SMS_CDMA_LANG_NONE","features":[445]},{"name":"MBN_SMS_CDMA_LANG_SPANISH","features":[445]},{"name":"MBN_SMS_FILTER","features":[445]},{"name":"MBN_SMS_FLAG","features":[445]},{"name":"MBN_SMS_FLAG_ALL","features":[445]},{"name":"MBN_SMS_FLAG_DRAFT","features":[445]},{"name":"MBN_SMS_FLAG_INDEX","features":[445]},{"name":"MBN_SMS_FLAG_MESSAGE_STORE_FULL","features":[445]},{"name":"MBN_SMS_FLAG_NEW","features":[445]},{"name":"MBN_SMS_FLAG_NEW_MESSAGE","features":[445]},{"name":"MBN_SMS_FLAG_NONE","features":[445]},{"name":"MBN_SMS_FLAG_OLD","features":[445]},{"name":"MBN_SMS_FLAG_SENT","features":[445]},{"name":"MBN_SMS_FORMAT","features":[445]},{"name":"MBN_SMS_FORMAT_NONE","features":[445]},{"name":"MBN_SMS_FORMAT_PDU","features":[445]},{"name":"MBN_SMS_FORMAT_TEXT","features":[445]},{"name":"MBN_SMS_STATUS_FLAG","features":[445]},{"name":"MBN_SMS_STATUS_INFO","features":[445]},{"name":"MBN_USERNAME_LEN","features":[445]},{"name":"MBN_VOICE_CALL_STATE","features":[445]},{"name":"MBN_VOICE_CALL_STATE_HANGUP","features":[445]},{"name":"MBN_VOICE_CALL_STATE_IN_PROGRESS","features":[445]},{"name":"MBN_VOICE_CALL_STATE_NONE","features":[445]},{"name":"MBN_VOICE_CLASS","features":[445]},{"name":"MBN_VOICE_CLASS_NONE","features":[445]},{"name":"MBN_VOICE_CLASS_NO_VOICE","features":[445]},{"name":"MBN_VOICE_CLASS_SEPARATE_VOICE_DATA","features":[445]},{"name":"MBN_VOICE_CLASS_SIMULTANEOUS_VOICE_DATA","features":[445]},{"name":"MbnConnectionManager","features":[445]},{"name":"MbnConnectionProfileManager","features":[445]},{"name":"MbnDeviceServicesManager","features":[445]},{"name":"MbnInterfaceManager","features":[445]},{"name":"WWAEXT_SMS_CONSTANTS","features":[445]},{"name":"__DummyPinType__","features":[445]},{"name":"__mbnapi_ReferenceRemainingTypes__","features":[445]}],"450":[{"name":"IPNG_ADDRESS","features":[446]},{"name":"MCAST_API_CURRENT_VERSION","features":[446]},{"name":"MCAST_API_VERSION_0","features":[446]},{"name":"MCAST_API_VERSION_1","features":[446]},{"name":"MCAST_CLIENT_ID_LEN","features":[446]},{"name":"MCAST_CLIENT_UID","features":[446]},{"name":"MCAST_LEASE_REQUEST","features":[446]},{"name":"MCAST_LEASE_RESPONSE","features":[446]},{"name":"MCAST_SCOPE_CTX","features":[446]},{"name":"MCAST_SCOPE_ENTRY","features":[305,446]},{"name":"McastApiCleanup","features":[446]},{"name":"McastApiStartup","features":[446]},{"name":"McastEnumerateScopes","features":[305,446]},{"name":"McastGenUID","features":[446]},{"name":"McastReleaseAddress","features":[446]},{"name":"McastRenewAddress","features":[446]},{"name":"McastRequestAddress","features":[446]}],"451":[{"name":"AUTHENTICATE","features":[319]},{"name":"BSSID_INFO","features":[319]},{"name":"CLOCK_NETWORK_DERIVED","features":[319]},{"name":"CLOCK_PRECISION","features":[319]},{"name":"DD_NDIS_DEVICE_NAME","features":[319]},{"name":"DOT11_RSN_KCK_LENGTH","features":[319]},{"name":"DOT11_RSN_KEK_LENGTH","features":[319]},{"name":"DOT11_RSN_MAX_CIPHER_KEY_LENGTH","features":[319]},{"name":"EAPOL_REQUEST_ID_WOL_FLAG_MUST_ENCRYPT","features":[319]},{"name":"ENCRYPT","features":[319]},{"name":"ETHERNET_LENGTH_OF_ADDRESS","features":[319]},{"name":"GEN_GET_NETCARD_TIME","features":[319]},{"name":"GEN_GET_TIME_CAPS","features":[319]},{"name":"GUID_DEVINTERFACE_NET","features":[319]},{"name":"GUID_DEVINTERFACE_NETUIO","features":[319]},{"name":"GUID_NDIS_802_11_ADD_KEY","features":[319]},{"name":"GUID_NDIS_802_11_ADD_WEP","features":[319]},{"name":"GUID_NDIS_802_11_ASSOCIATION_INFORMATION","features":[319]},{"name":"GUID_NDIS_802_11_AUTHENTICATION_MODE","features":[319]},{"name":"GUID_NDIS_802_11_BSSID","features":[319]},{"name":"GUID_NDIS_802_11_BSSID_LIST","features":[319]},{"name":"GUID_NDIS_802_11_BSSID_LIST_SCAN","features":[319]},{"name":"GUID_NDIS_802_11_CONFIGURATION","features":[319]},{"name":"GUID_NDIS_802_11_DESIRED_RATES","features":[319]},{"name":"GUID_NDIS_802_11_DISASSOCIATE","features":[319]},{"name":"GUID_NDIS_802_11_FRAGMENTATION_THRESHOLD","features":[319]},{"name":"GUID_NDIS_802_11_INFRASTRUCTURE_MODE","features":[319]},{"name":"GUID_NDIS_802_11_MEDIA_STREAM_MODE","features":[319]},{"name":"GUID_NDIS_802_11_NETWORK_TYPES_SUPPORTED","features":[319]},{"name":"GUID_NDIS_802_11_NETWORK_TYPE_IN_USE","features":[319]},{"name":"GUID_NDIS_802_11_NUMBER_OF_ANTENNAS","features":[319]},{"name":"GUID_NDIS_802_11_POWER_MODE","features":[319]},{"name":"GUID_NDIS_802_11_PRIVACY_FILTER","features":[319]},{"name":"GUID_NDIS_802_11_RELOAD_DEFAULTS","features":[319]},{"name":"GUID_NDIS_802_11_REMOVE_KEY","features":[319]},{"name":"GUID_NDIS_802_11_REMOVE_WEP","features":[319]},{"name":"GUID_NDIS_802_11_RSSI","features":[319]},{"name":"GUID_NDIS_802_11_RSSI_TRIGGER","features":[319]},{"name":"GUID_NDIS_802_11_RTS_THRESHOLD","features":[319]},{"name":"GUID_NDIS_802_11_RX_ANTENNA_SELECTED","features":[319]},{"name":"GUID_NDIS_802_11_SSID","features":[319]},{"name":"GUID_NDIS_802_11_STATISTICS","features":[319]},{"name":"GUID_NDIS_802_11_SUPPORTED_RATES","features":[319]},{"name":"GUID_NDIS_802_11_TEST","features":[319]},{"name":"GUID_NDIS_802_11_TX_ANTENNA_SELECTED","features":[319]},{"name":"GUID_NDIS_802_11_TX_POWER_LEVEL","features":[319]},{"name":"GUID_NDIS_802_11_WEP_STATUS","features":[319]},{"name":"GUID_NDIS_802_3_CURRENT_ADDRESS","features":[319]},{"name":"GUID_NDIS_802_3_MAC_OPTIONS","features":[319]},{"name":"GUID_NDIS_802_3_MAXIMUM_LIST_SIZE","features":[319]},{"name":"GUID_NDIS_802_3_MULTICAST_LIST","features":[319]},{"name":"GUID_NDIS_802_3_PERMANENT_ADDRESS","features":[319]},{"name":"GUID_NDIS_802_3_RCV_ERROR_ALIGNMENT","features":[319]},{"name":"GUID_NDIS_802_3_XMIT_MORE_COLLISIONS","features":[319]},{"name":"GUID_NDIS_802_3_XMIT_ONE_COLLISION","features":[319]},{"name":"GUID_NDIS_802_5_CURRENT_ADDRESS","features":[319]},{"name":"GUID_NDIS_802_5_CURRENT_FUNCTIONAL","features":[319]},{"name":"GUID_NDIS_802_5_CURRENT_GROUP","features":[319]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATE","features":[319]},{"name":"GUID_NDIS_802_5_CURRENT_RING_STATUS","features":[319]},{"name":"GUID_NDIS_802_5_LAST_OPEN_STATUS","features":[319]},{"name":"GUID_NDIS_802_5_LINE_ERRORS","features":[319]},{"name":"GUID_NDIS_802_5_LOST_FRAMES","features":[319]},{"name":"GUID_NDIS_802_5_PERMANENT_ADDRESS","features":[319]},{"name":"GUID_NDIS_ENUMERATE_ADAPTER","features":[319]},{"name":"GUID_NDIS_ENUMERATE_ADAPTERS_EX","features":[319]},{"name":"GUID_NDIS_ENUMERATE_VC","features":[319]},{"name":"GUID_NDIS_GEN_CO_DRIVER_VERSION","features":[319]},{"name":"GUID_NDIS_GEN_CO_HARDWARE_STATUS","features":[319]},{"name":"GUID_NDIS_GEN_CO_LINK_SPEED","features":[319]},{"name":"GUID_NDIS_GEN_CO_MAC_OPTIONS","features":[319]},{"name":"GUID_NDIS_GEN_CO_MEDIA_CONNECT_STATUS","features":[319]},{"name":"GUID_NDIS_GEN_CO_MEDIA_IN_USE","features":[319]},{"name":"GUID_NDIS_GEN_CO_MEDIA_SUPPORTED","features":[319]},{"name":"GUID_NDIS_GEN_CO_MINIMUM_LINK_SPEED","features":[319]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_ERROR","features":[319]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_NO_BUFFER","features":[319]},{"name":"GUID_NDIS_GEN_CO_RCV_PDUS_OK","features":[319]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DESCRIPTION","features":[319]},{"name":"GUID_NDIS_GEN_CO_VENDOR_DRIVER_VERSION","features":[319]},{"name":"GUID_NDIS_GEN_CO_VENDOR_ID","features":[319]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_ERROR","features":[319]},{"name":"GUID_NDIS_GEN_CO_XMIT_PDUS_OK","features":[319]},{"name":"GUID_NDIS_GEN_CURRENT_LOOKAHEAD","features":[319]},{"name":"GUID_NDIS_GEN_CURRENT_PACKET_FILTER","features":[319]},{"name":"GUID_NDIS_GEN_DRIVER_VERSION","features":[319]},{"name":"GUID_NDIS_GEN_ENUMERATE_PORTS","features":[319]},{"name":"GUID_NDIS_GEN_HARDWARE_STATUS","features":[319]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION","features":[319]},{"name":"GUID_NDIS_GEN_INTERRUPT_MODERATION_PARAMETERS","features":[319]},{"name":"GUID_NDIS_GEN_LINK_PARAMETERS","features":[319]},{"name":"GUID_NDIS_GEN_LINK_SPEED","features":[319]},{"name":"GUID_NDIS_GEN_LINK_STATE","features":[319]},{"name":"GUID_NDIS_GEN_MAC_OPTIONS","features":[319]},{"name":"GUID_NDIS_GEN_MAXIMUM_FRAME_SIZE","features":[319]},{"name":"GUID_NDIS_GEN_MAXIMUM_LOOKAHEAD","features":[319]},{"name":"GUID_NDIS_GEN_MAXIMUM_SEND_PACKETS","features":[319]},{"name":"GUID_NDIS_GEN_MAXIMUM_TOTAL_SIZE","features":[319]},{"name":"GUID_NDIS_GEN_MEDIA_CONNECT_STATUS","features":[319]},{"name":"GUID_NDIS_GEN_MEDIA_IN_USE","features":[319]},{"name":"GUID_NDIS_GEN_MEDIA_SUPPORTED","features":[319]},{"name":"GUID_NDIS_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[319]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM","features":[319]},{"name":"GUID_NDIS_GEN_PHYSICAL_MEDIUM_EX","features":[319]},{"name":"GUID_NDIS_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[319]},{"name":"GUID_NDIS_GEN_PORT_STATE","features":[319]},{"name":"GUID_NDIS_GEN_RCV_ERROR","features":[319]},{"name":"GUID_NDIS_GEN_RCV_NO_BUFFER","features":[319]},{"name":"GUID_NDIS_GEN_RCV_OK","features":[319]},{"name":"GUID_NDIS_GEN_RECEIVE_BLOCK_SIZE","features":[319]},{"name":"GUID_NDIS_GEN_RECEIVE_BUFFER_SPACE","features":[319]},{"name":"GUID_NDIS_GEN_STATISTICS","features":[319]},{"name":"GUID_NDIS_GEN_TRANSMIT_BLOCK_SIZE","features":[319]},{"name":"GUID_NDIS_GEN_TRANSMIT_BUFFER_SPACE","features":[319]},{"name":"GUID_NDIS_GEN_VENDOR_DESCRIPTION","features":[319]},{"name":"GUID_NDIS_GEN_VENDOR_DRIVER_VERSION","features":[319]},{"name":"GUID_NDIS_GEN_VENDOR_ID","features":[319]},{"name":"GUID_NDIS_GEN_VLAN_ID","features":[319]},{"name":"GUID_NDIS_GEN_XMIT_ERROR","features":[319]},{"name":"GUID_NDIS_GEN_XMIT_OK","features":[319]},{"name":"GUID_NDIS_HD_SPLIT_CURRENT_CONFIG","features":[319]},{"name":"GUID_NDIS_HD_SPLIT_PARAMETERS","features":[319]},{"name":"GUID_NDIS_LAN_CLASS","features":[319]},{"name":"GUID_NDIS_NDK_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_NDK_STATE","features":[319]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_ARRIVAL","features":[319]},{"name":"GUID_NDIS_NOTIFY_ADAPTER_REMOVAL","features":[319]},{"name":"GUID_NDIS_NOTIFY_BIND","features":[319]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF","features":[319]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_OFF_EX","features":[319]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON","features":[319]},{"name":"GUID_NDIS_NOTIFY_DEVICE_POWER_ON_EX","features":[319]},{"name":"GUID_NDIS_NOTIFY_FILTER_ARRIVAL","features":[319]},{"name":"GUID_NDIS_NOTIFY_FILTER_REMOVAL","features":[319]},{"name":"GUID_NDIS_NOTIFY_UNBIND","features":[319]},{"name":"GUID_NDIS_NOTIFY_VC_ARRIVAL","features":[319]},{"name":"GUID_NDIS_NOTIFY_VC_REMOVAL","features":[319]},{"name":"GUID_NDIS_PM_ACTIVE_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_PM_ADMIN_CONFIG","features":[319]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_FILTERS","features":[319]},{"name":"GUID_NDIS_RECEIVE_FILTER_ENUM_QUEUES","features":[319]},{"name":"GUID_NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[319]},{"name":"GUID_NDIS_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_RECEIVE_FILTER_PARAMETERS","features":[319]},{"name":"GUID_NDIS_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[319]},{"name":"GUID_NDIS_RECEIVE_SCALE_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_RSS_ENABLED","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_COMPLETION","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_ASSOCIATION_START","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_COMPLETION","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_CONNECTION_START","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_DISASSOCIATION","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_LINK_QUALITY","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_MPDU_MAX_LENGTH_CHANGED","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_PHY_STATE_CHANGED","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_PMKID_CANDIDATE_LIST","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_COMPLETION","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_ROAMING_START","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_SCAN_CONFIRM","features":[319]},{"name":"GUID_NDIS_STATUS_DOT11_TKIPMIC_FAILURE","features":[319]},{"name":"GUID_NDIS_STATUS_EXTERNAL_CONNECTIVITY_CHANGE","features":[319]},{"name":"GUID_NDIS_STATUS_HD_SPLIT_CURRENT_CONFIG","features":[319]},{"name":"GUID_NDIS_STATUS_LINK_SPEED_CHANGE","features":[319]},{"name":"GUID_NDIS_STATUS_LINK_STATE","features":[319]},{"name":"GUID_NDIS_STATUS_MEDIA_CONNECT","features":[319]},{"name":"GUID_NDIS_STATUS_MEDIA_DISCONNECT","features":[319]},{"name":"GUID_NDIS_STATUS_MEDIA_SPECIFIC_INDICATION","features":[319]},{"name":"GUID_NDIS_STATUS_NETWORK_CHANGE","features":[319]},{"name":"GUID_NDIS_STATUS_OPER_STATUS","features":[319]},{"name":"GUID_NDIS_STATUS_PACKET_FILTER","features":[319]},{"name":"GUID_NDIS_STATUS_PM_OFFLOAD_REJECTED","features":[319]},{"name":"GUID_NDIS_STATUS_PM_WAKE_REASON","features":[319]},{"name":"GUID_NDIS_STATUS_PM_WOL_PATTERN_REJECTED","features":[319]},{"name":"GUID_NDIS_STATUS_PORT_STATE","features":[319]},{"name":"GUID_NDIS_STATUS_RESET_END","features":[319]},{"name":"GUID_NDIS_STATUS_RESET_START","features":[319]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_CURRENT_CONFIG","features":[319]},{"name":"GUID_NDIS_STATUS_TASK_OFFLOAD_HARDWARE_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[319]},{"name":"GUID_NDIS_STATUS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_SWITCH_MICROSOFT_VENDOR_ID","features":[319]},{"name":"GUID_NDIS_SWITCH_PORT_PROPERTY_PROFILE_ID_DEFAULT_EXTERNAL_NIC","features":[319]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[319]},{"name":"GUID_NDIS_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_TCP_OFFLOAD_CURRENT_CONFIG","features":[319]},{"name":"GUID_NDIS_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[319]},{"name":"GUID_NDIS_TCP_OFFLOAD_PARAMETERS","features":[319]},{"name":"GUID_NDIS_TCP_RSC_STATISTICS","features":[319]},{"name":"GUID_NDIS_WAKE_ON_MAGIC_PACKET_ONLY","features":[319]},{"name":"GUID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[319]},{"name":"GUID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[319]},{"name":"GUID_PM_ADD_PROTOCOL_OFFLOAD","features":[319]},{"name":"GUID_PM_ADD_WOL_PATTERN","features":[319]},{"name":"GUID_PM_CURRENT_CAPABILITIES","features":[319]},{"name":"GUID_PM_GET_PROTOCOL_OFFLOAD","features":[319]},{"name":"GUID_PM_HARDWARE_CAPABILITIES","features":[319]},{"name":"GUID_PM_PARAMETERS","features":[319]},{"name":"GUID_PM_PROTOCOL_OFFLOAD_LIST","features":[319]},{"name":"GUID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[319]},{"name":"GUID_PM_REMOVE_WOL_PATTERN","features":[319]},{"name":"GUID_PM_WOL_PATTERN_LIST","features":[319]},{"name":"GUID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[319]},{"name":"GUID_STATUS_MEDIA_SPECIFIC_INDICATION_EX","features":[319]},{"name":"IF_ADMINISTRATIVE_DEMANDDIAL","features":[319]},{"name":"IF_ADMINISTRATIVE_DISABLED","features":[319]},{"name":"IF_ADMINISTRATIVE_ENABLED","features":[319]},{"name":"IF_ADMINISTRATIVE_STATE","features":[319]},{"name":"IF_COUNTED_STRING_LH","features":[319]},{"name":"IF_MAX_PHYS_ADDRESS_LENGTH","features":[319]},{"name":"IF_MAX_STRING_SIZE","features":[319]},{"name":"IF_OPER_STATUS","features":[319]},{"name":"IF_PHYSICAL_ADDRESS_LH","features":[319]},{"name":"IOCTL_NDIS_RESERVED5","features":[319]},{"name":"IOCTL_NDIS_RESERVED6","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AND_TCP_CHECKSUM_COEXISTENCE","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AND_UDP_CHECKSUM_COEXISTENCE","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_128","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_192","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_AES_GCM_256","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_MD5","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_1","features":[319]},{"name":"IPSEC_OFFLOAD_V2_AUTHENTICATION_SHA_256","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_3_DES_CBC","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_128","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_192","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_CBC_256","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_128","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_192","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_AES_GCM_256","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_DES_CBC","features":[319]},{"name":"IPSEC_OFFLOAD_V2_ENCRYPTION_NONE","features":[319]},{"name":"IfOperStatusDormant","features":[319]},{"name":"IfOperStatusDown","features":[319]},{"name":"IfOperStatusLowerLayerDown","features":[319]},{"name":"IfOperStatusNotPresent","features":[319]},{"name":"IfOperStatusTesting","features":[319]},{"name":"IfOperStatusUnknown","features":[319]},{"name":"IfOperStatusUp","features":[319]},{"name":"MAXIMUM_IP_OPER_STATUS_ADDRESS_FAMILIES_SUPPORTED","features":[319]},{"name":"MediaConnectStateConnected","features":[319]},{"name":"MediaConnectStateDisconnected","features":[319]},{"name":"MediaConnectStateUnknown","features":[319]},{"name":"MediaDuplexStateFull","features":[319]},{"name":"MediaDuplexStateHalf","features":[319]},{"name":"MediaDuplexStateUnknown","features":[319]},{"name":"NDIS_802_11_AI_REQFI","features":[319]},{"name":"NDIS_802_11_AI_REQFI_CAPABILITIES","features":[319]},{"name":"NDIS_802_11_AI_REQFI_CURRENTAPADDRESS","features":[319]},{"name":"NDIS_802_11_AI_REQFI_LISTENINTERVAL","features":[319]},{"name":"NDIS_802_11_AI_RESFI","features":[319]},{"name":"NDIS_802_11_AI_RESFI_ASSOCIATIONID","features":[319]},{"name":"NDIS_802_11_AI_RESFI_CAPABILITIES","features":[319]},{"name":"NDIS_802_11_AI_RESFI_STATUSCODE","features":[319]},{"name":"NDIS_802_11_ASSOCIATION_INFORMATION","features":[319]},{"name":"NDIS_802_11_AUTHENTICATION_ENCRYPTION","features":[319]},{"name":"NDIS_802_11_AUTHENTICATION_EVENT","features":[319]},{"name":"NDIS_802_11_AUTHENTICATION_MODE","features":[319]},{"name":"NDIS_802_11_AUTHENTICATION_REQUEST","features":[319]},{"name":"NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS","features":[319]},{"name":"NDIS_802_11_AUTH_REQUEST_GROUP_ERROR","features":[319]},{"name":"NDIS_802_11_AUTH_REQUEST_KEYUPDATE","features":[319]},{"name":"NDIS_802_11_AUTH_REQUEST_PAIRWISE_ERROR","features":[319]},{"name":"NDIS_802_11_AUTH_REQUEST_REAUTH","features":[319]},{"name":"NDIS_802_11_BSSID_LIST","features":[319]},{"name":"NDIS_802_11_BSSID_LIST_EX","features":[319]},{"name":"NDIS_802_11_CAPABILITY","features":[319]},{"name":"NDIS_802_11_CONFIGURATION","features":[319]},{"name":"NDIS_802_11_CONFIGURATION_FH","features":[319]},{"name":"NDIS_802_11_FIXED_IEs","features":[319]},{"name":"NDIS_802_11_KEY","features":[319]},{"name":"NDIS_802_11_LENGTH_RATES","features":[319]},{"name":"NDIS_802_11_LENGTH_RATES_EX","features":[319]},{"name":"NDIS_802_11_LENGTH_SSID","features":[319]},{"name":"NDIS_802_11_MEDIA_STREAM_MODE","features":[319]},{"name":"NDIS_802_11_NETWORK_INFRASTRUCTURE","features":[319]},{"name":"NDIS_802_11_NETWORK_TYPE","features":[319]},{"name":"NDIS_802_11_NETWORK_TYPE_LIST","features":[319]},{"name":"NDIS_802_11_NON_BCAST_SSID_LIST","features":[319]},{"name":"NDIS_802_11_PMKID","features":[319]},{"name":"NDIS_802_11_PMKID_CANDIDATE_LIST","features":[319]},{"name":"NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED","features":[319]},{"name":"NDIS_802_11_POWER_MODE","features":[319]},{"name":"NDIS_802_11_PRIVACY_FILTER","features":[319]},{"name":"NDIS_802_11_RADIO_STATUS","features":[319]},{"name":"NDIS_802_11_RELOAD_DEFAULTS","features":[319]},{"name":"NDIS_802_11_REMOVE_KEY","features":[319]},{"name":"NDIS_802_11_SSID","features":[319]},{"name":"NDIS_802_11_STATISTICS","features":[319]},{"name":"NDIS_802_11_STATUS_INDICATION","features":[319]},{"name":"NDIS_802_11_STATUS_TYPE","features":[319]},{"name":"NDIS_802_11_TEST","features":[319]},{"name":"NDIS_802_11_VARIABLE_IEs","features":[319]},{"name":"NDIS_802_11_WEP","features":[319]},{"name":"NDIS_802_11_WEP_STATUS","features":[319]},{"name":"NDIS_802_3_MAC_OPTION_PRIORITY","features":[319]},{"name":"NDIS_802_5_RING_STATE","features":[319]},{"name":"NDIS_CO_DEVICE_PROFILE","features":[319]},{"name":"NDIS_CO_LINK_SPEED","features":[319]},{"name":"NDIS_CO_MAC_OPTION_DYNAMIC_LINK_SPEED","features":[319]},{"name":"NDIS_DEFAULT_RECEIVE_FILTER_ID","features":[319]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_GROUP_ID","features":[319]},{"name":"NDIS_DEFAULT_RECEIVE_QUEUE_ID","features":[319]},{"name":"NDIS_DEFAULT_SWITCH_ID","features":[319]},{"name":"NDIS_DEFAULT_VPORT_ID","features":[319]},{"name":"NDIS_DEVICE_POWER_STATE","features":[319]},{"name":"NDIS_DEVICE_TYPE_ENDPOINT","features":[319]},{"name":"NDIS_DEVICE_WAKE_ON_MAGIC_PACKET_ENABLE","features":[319]},{"name":"NDIS_DEVICE_WAKE_ON_PATTERN_MATCH_ENABLE","features":[319]},{"name":"NDIS_DEVICE_WAKE_UP_ENABLE","features":[319]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV4","features":[319]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_INNER_IPV6","features":[319]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_NOT_SUPPORTED","features":[319]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV4","features":[319]},{"name":"NDIS_ENCAPSULATED_PACKET_TASK_OFFLOAD_OUTER_IPV6","features":[319]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3","features":[319]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q","features":[319]},{"name":"NDIS_ENCAPSULATION_IEEE_802_3_P_AND_Q_IN_OOB","features":[319]},{"name":"NDIS_ENCAPSULATION_IEEE_LLC_SNAP_ROUTED","features":[319]},{"name":"NDIS_ENCAPSULATION_NOT_SUPPORTED","features":[319]},{"name":"NDIS_ENCAPSULATION_NULL","features":[319]},{"name":"NDIS_ENCAPSULATION_TYPE_GRE_MAC","features":[319]},{"name":"NDIS_ENCAPSULATION_TYPE_VXLAN","features":[319]},{"name":"NDIS_ETH_TYPE_802_1Q","features":[319]},{"name":"NDIS_ETH_TYPE_802_1X","features":[319]},{"name":"NDIS_ETH_TYPE_ARP","features":[319]},{"name":"NDIS_ETH_TYPE_IPV4","features":[319]},{"name":"NDIS_ETH_TYPE_IPV6","features":[319]},{"name":"NDIS_ETH_TYPE_SLOW_PROTOCOL","features":[319]},{"name":"NDIS_FDDI_ATTACHMENT_TYPE","features":[319]},{"name":"NDIS_FDDI_LCONNECTION_STATE","features":[319]},{"name":"NDIS_FDDI_RING_MGT_STATE","features":[319]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_GRE","features":[319]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_IP_IN_IP","features":[319]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NOT_ENCAPSULATED","features":[319]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_NVGRE","features":[319]},{"name":"NDIS_GFP_ENCAPSULATION_TYPE_VXLAN","features":[319]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_RDMA_FLOW","features":[319]},{"name":"NDIS_GFP_EXACT_MATCH_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_IS_TTL_ONE","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_IS_TTL_ONE","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_EXACT_MATCH_REVISION_1","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_IS_TTL_ONE","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_IS_TTL_ONE","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_GFP_HEADER_GROUP_WILDCARD_MATCH_REVISION_1","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_ESP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_ETHERNET","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_ICMP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV4","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_IPV6","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_GRE_ENCAP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_IP_IN_IP_ENCAP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_NO_ENCAP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_NVGRE_ENCAP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_TCP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_UDP","features":[319]},{"name":"NDIS_GFP_HEADER_PRESENT_VXLAN_ENCAP","features":[319]},{"name":"NDIS_GFP_UNDEFINED_PROFILE_ID","features":[319]},{"name":"NDIS_GFP_WILDCARD_MATCH_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_GFT_COUNTER_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_GFT_COUNTER_INFO_REVISION_1","features":[319]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_CLIENT_SPECIFIED_ADDRESS","features":[319]},{"name":"NDIS_GFT_COUNTER_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_GET_VALUES","features":[319]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_GFT_COUNTER_VALUE_ARRAY_UPDATE_MEMORY_MAPPED_COUNTERS","features":[319]},{"name":"NDIS_GFT_CUSTOM_ACTION_LAST_ACTION","features":[319]},{"name":"NDIS_GFT_CUSTOM_ACTION_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_GFT_CUSTOM_ACTION_REVISION_1","features":[319]},{"name":"NDIS_GFT_DELETE_PROFILE_ALL_PROFILES","features":[319]},{"name":"NDIS_GFT_DELETE_PROFILE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_GFT_DELETE_TABLE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_GFT_EMFE_ADD_IN_ACTIVATED_STATE","features":[319]},{"name":"NDIS_GFT_EMFE_ALL_VPORT_FLOW_ENTRIES","features":[319]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_FIN_FLAG_SET","features":[319]},{"name":"NDIS_GFT_EMFE_COPY_AFTER_TCP_RST_FLAG_SET","features":[319]},{"name":"NDIS_GFT_EMFE_COPY_ALL_PACKETS","features":[319]},{"name":"NDIS_GFT_EMFE_COPY_CONDITION_CHANGED","features":[319]},{"name":"NDIS_GFT_EMFE_COPY_FIRST_PACKET","features":[319]},{"name":"NDIS_GFT_EMFE_COPY_WHEN_TCP_FLAG_SET","features":[319]},{"name":"NDIS_GFT_EMFE_COUNTER_ALLOCATE","features":[319]},{"name":"NDIS_GFT_EMFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[319]},{"name":"NDIS_GFT_EMFE_COUNTER_MEMORY_MAPPED","features":[319]},{"name":"NDIS_GFT_EMFE_COUNTER_TRACK_TCP_FLOW","features":[319]},{"name":"NDIS_GFT_EMFE_CUSTOM_ACTION_PRESENT","features":[319]},{"name":"NDIS_GFT_EMFE_MATCH_AND_ACTION_MUST_BE_SUPPORTED","features":[319]},{"name":"NDIS_GFT_EMFE_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[319]},{"name":"NDIS_GFT_EMFE_RDMA_FLOW","features":[319]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_EMFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_EXACT_MATCH_FLOW_ENTRY_REVISION_1","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_NIC_SWITCH_FLOW_ENTRIES","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_TABLE_FLOW_ENTRIES","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ALL_VPORT_FLOW_ENTRIES","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_COUNTER_VALUES","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_DEFINED","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_ID_RANGE_DEFINED","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ALL_FLOW_ENTRIES","features":[319]},{"name":"NDIS_GFT_FLOW_ENTRY_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_GFT_FREE_COUNTER_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_DECREMENT_TTL_IF_NOT_ONE","features":[319]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_DECREMENT_TTL_IF_NOT_ONE","features":[319]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_GFT_HEADER_GROUP_TRANSPOSITION_REVISION_1","features":[319]},{"name":"NDIS_GFT_HEADER_TRANSPOSITION_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_GFT_HTP_COPY_ALL_PACKETS","features":[319]},{"name":"NDIS_GFT_HTP_COPY_FIRST_PACKET","features":[319]},{"name":"NDIS_GFT_HTP_COPY_WHEN_TCP_FLAG_SET","features":[319]},{"name":"NDIS_GFT_HTP_CUSTOM_ACTION_PRESENT","features":[319]},{"name":"NDIS_GFT_HTP_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[319]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_HTP_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_MAX_COUNTER_OBJECTS_PER_FLOW_ENTRY","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_8021P_PRIORITY_MASK","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ADD_FLOW_ENTRY_DEACTIVATED_PREFERRED","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_ALLOW","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_CLIENT_SPECIFIED_MEMORY_MAPPED_COUNTERS","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COMBINED_COUNTER_AND_STATE","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_ALL","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_FIRST","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_COPY_WHEN_TCP_FLAG_SET","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DESIGNATED_EXCEPTION_VPORT","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DROP","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_DSCP_MASK","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_AGGREGATE_COUNTERS","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_EXACT_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EGRESS_WILDCARD_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_EXACT_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_EGRESS_WILDCARD_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_EXACT_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_EXT_VPORT_INGRESS_WILDCARD_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_IGNORE_ACTION_SUPPORTED","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_AGGREGATE_COUNTERS","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_EXACT_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_INGRESS_WILDCARD_MATCH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_COUNTERS","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MEMORY_MAPPED_PAKCET_AND_BYTE_COUNTERS","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_AFTER_HEADER_TRANSPOSITION","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_META_ACTION_BEFORE_HEADER_TRANSPOSITION","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_MODIFY","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_FLOW_ENTRY_COUNTERS","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_PACKET_COUNTER_UPDATE","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PER_VPORT_EXCEPTION_VPORT","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_POP","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_PUSH","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_RATE_LIMITING_QUEUE_SUPPORTED","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_SAMPLE","features":[319]},{"name":"NDIS_GFT_OFFLOAD_CAPS_TRACK_TCP_FLOW_STATE","features":[319]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_CUSTOM_PROVIDER_RESERVED","features":[319]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_ENABLE_OFFLOAD","features":[319]},{"name":"NDIS_GFT_OFFLOAD_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_GFT_PROFILE_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_GFT_PROFILE_INFO_REVISION_1","features":[319]},{"name":"NDIS_GFT_RESERVED_CUSTOM_ACTIONS","features":[319]},{"name":"NDIS_GFT_STATISTICS_REVISION_1","features":[319]},{"name":"NDIS_GFT_TABLE_INCLUDE_EXTERNAL_VPPORT","features":[319]},{"name":"NDIS_GFT_TABLE_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_GFT_TABLE_INFO_REVISION_1","features":[319]},{"name":"NDIS_GFT_TABLE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_GFT_UNDEFINED_COUNTER_ID","features":[319]},{"name":"NDIS_GFT_UNDEFINED_CUSTOM_ACTION","features":[319]},{"name":"NDIS_GFT_UNDEFINED_FLOW_ENTRY_ID","features":[319]},{"name":"NDIS_GFT_UNDEFINED_TABLE_ID","features":[319]},{"name":"NDIS_GFT_VPORT_DSCP_FLAGS_CHANGED","features":[319]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_RX","features":[319]},{"name":"NDIS_GFT_VPORT_DSCP_GUARD_ENABLE_TX","features":[319]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_CHANGED","features":[319]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_RX","features":[319]},{"name":"NDIS_GFT_VPORT_DSCP_MASK_ENABLE_TX","features":[319]},{"name":"NDIS_GFT_VPORT_ENABLE","features":[319]},{"name":"NDIS_GFT_VPORT_ENABLE_STATE_CHANGED","features":[319]},{"name":"NDIS_GFT_VPORT_EXCEPTION_VPORT_CHANGED","features":[319]},{"name":"NDIS_GFT_VPORT_MAX_DSCP_MASK_COUNTER_OBJECTS","features":[319]},{"name":"NDIS_GFT_VPORT_MAX_PRIORITY_MASK_COUNTER_OBJECTS","features":[319]},{"name":"NDIS_GFT_VPORT_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_GFT_VPORT_PARAMS_CHANGE_MASK","features":[319]},{"name":"NDIS_GFT_VPORT_PARAMS_CUSTOM_PROVIDER_RESERVED","features":[319]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN","features":[319]},{"name":"NDIS_GFT_VPORT_PARSE_VXLAN_NOT_IN_SRC_PORT_RANGE","features":[319]},{"name":"NDIS_GFT_VPORT_PRIORITY_MASK_CHANGED","features":[319]},{"name":"NDIS_GFT_VPORT_SAMPLING_RATE_CHANGED","features":[319]},{"name":"NDIS_GFT_VPORT_VXLAN_SETTINGS_CHANGED","features":[319]},{"name":"NDIS_GFT_WCFE_ADD_IN_ACTIVATED_STATE","features":[319]},{"name":"NDIS_GFT_WCFE_COPY_ALL_PACKETS","features":[319]},{"name":"NDIS_GFT_WCFE_COUNTER_ALLOCATE","features":[319]},{"name":"NDIS_GFT_WCFE_COUNTER_CLIENT_SPECIFIED_ADDRESS","features":[319]},{"name":"NDIS_GFT_WCFE_COUNTER_MEMORY_MAPPED","features":[319]},{"name":"NDIS_GFT_WCFE_CUSTOM_ACTION_PRESENT","features":[319]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_EGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT","features":[319]},{"name":"NDIS_GFT_WCFE_REDIRECT_TO_INGRESS_QUEUE_OF_VPORT_IF_TTL_IS_ONE","features":[319]},{"name":"NDIS_GFT_WILDCARD_MATCH_FLOW_ENTRY_REVISION_1","features":[319]},{"name":"NDIS_GUID","features":[319]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP","features":[319]},{"name":"NDIS_HARDWARE_CROSSTIMESTAMP_REVISION_1","features":[319]},{"name":"NDIS_HARDWARE_STATUS","features":[319]},{"name":"NDIS_HASH_FUNCTION_MASK","features":[319]},{"name":"NDIS_HASH_IPV4","features":[319]},{"name":"NDIS_HASH_IPV6","features":[319]},{"name":"NDIS_HASH_IPV6_EX","features":[319]},{"name":"NDIS_HASH_TCP_IPV4","features":[319]},{"name":"NDIS_HASH_TCP_IPV6","features":[319]},{"name":"NDIS_HASH_TCP_IPV6_EX","features":[319]},{"name":"NDIS_HASH_TYPE_MASK","features":[319]},{"name":"NDIS_HASH_UDP_IPV4","features":[319]},{"name":"NDIS_HASH_UDP_IPV6","features":[319]},{"name":"NDIS_HASH_UDP_IPV6_EX","features":[319]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_HEADER_DATA_SPLIT","features":[319]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV4_OPTIONS","features":[319]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_IPV6_EXTENSION_HEADERS","features":[319]},{"name":"NDIS_HD_SPLIT_CAPS_SUPPORTS_TCP_OPTIONS","features":[319]},{"name":"NDIS_HD_SPLIT_COMBINE_ALL_HEADERS","features":[319]},{"name":"NDIS_HD_SPLIT_CURRENT_CONFIG_REVISION_1","features":[319]},{"name":"NDIS_HD_SPLIT_ENABLE_HEADER_DATA_SPLIT","features":[319]},{"name":"NDIS_HD_SPLIT_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_HYPERVISOR_INFO_FLAG_HYPERVISOR_PRESENT","features":[319]},{"name":"NDIS_HYPERVISOR_INFO_REVISION_1","features":[319]},{"name":"NDIS_INTERFACE_INFORMATION","features":[305,319]},{"name":"NDIS_INTERRUPT_MODERATION","features":[319]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_REINITIALIZE","features":[319]},{"name":"NDIS_INTERRUPT_MODERATION_CHANGE_NEEDS_RESET","features":[319]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS","features":[319]},{"name":"NDIS_INTERRUPT_MODERATION_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_IPSEC_OFFLOAD_V1","features":[319]},{"name":"NDIS_IP_OPER_STATE","features":[319]},{"name":"NDIS_IP_OPER_STATE_REVISION_1","features":[319]},{"name":"NDIS_IP_OPER_STATUS","features":[319]},{"name":"NDIS_IP_OPER_STATUS_INFO","features":[319]},{"name":"NDIS_IP_OPER_STATUS_INFO_REVISION_1","features":[319]},{"name":"NDIS_IRDA_PACKET_INFO","features":[319]},{"name":"NDIS_ISOLATION_NAME_MAX_STRING_SIZE","features":[319]},{"name":"NDIS_ISOLATION_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_LINK_PARAMETERS","features":[319]},{"name":"NDIS_LINK_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_LINK_SPEED","features":[319]},{"name":"NDIS_LINK_STATE","features":[319]},{"name":"NDIS_LINK_STATE_DUPLEX_AUTO_NEGOTIATED","features":[319]},{"name":"NDIS_LINK_STATE_PAUSE_FUNCTIONS_AUTO_NEGOTIATED","features":[319]},{"name":"NDIS_LINK_STATE_RCV_LINK_SPEED_AUTO_NEGOTIATED","features":[319]},{"name":"NDIS_LINK_STATE_REVISION_1","features":[319]},{"name":"NDIS_LINK_STATE_XMIT_LINK_SPEED_AUTO_NEGOTIATED","features":[319]},{"name":"NDIS_MAC_OPTION_8021P_PRIORITY","features":[319]},{"name":"NDIS_MAC_OPTION_8021Q_VLAN","features":[319]},{"name":"NDIS_MAC_OPTION_COPY_LOOKAHEAD_DATA","features":[319]},{"name":"NDIS_MAC_OPTION_EOTX_INDICATION","features":[319]},{"name":"NDIS_MAC_OPTION_FULL_DUPLEX","features":[319]},{"name":"NDIS_MAC_OPTION_NO_LOOPBACK","features":[319]},{"name":"NDIS_MAC_OPTION_RECEIVE_AT_DPC","features":[319]},{"name":"NDIS_MAC_OPTION_RECEIVE_SERIALIZED","features":[319]},{"name":"NDIS_MAC_OPTION_RESERVED","features":[319]},{"name":"NDIS_MAC_OPTION_SUPPORTS_MAC_ADDRESS_OVERWRITE","features":[319]},{"name":"NDIS_MAC_OPTION_TRANSFERS_NOT_PEND","features":[319]},{"name":"NDIS_MAXIMUM_PORTS","features":[319]},{"name":"NDIS_MEDIA_CAP_RECEIVE","features":[319]},{"name":"NDIS_MEDIA_CAP_TRANSMIT","features":[319]},{"name":"NDIS_MEDIA_STATE","features":[319]},{"name":"NDIS_MEDIUM","features":[319]},{"name":"NDIS_NDK_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_NDK_CONNECTIONS_REVISION_1","features":[319]},{"name":"NDIS_NDK_LOCAL_ENDPOINTS_REVISION_1","features":[319]},{"name":"NDIS_NDK_STATISTICS_INFO_REVISION_1","features":[319]},{"name":"NDIS_NETWORK_CHANGE_TYPE","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_2","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPABILITIES_REVISION_3","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_ASYMMETRIC_QUEUE_PAIRS_FOR_NONDEFAULT_VPORT_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_NIC_SWITCH_WITHOUT_IOV_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_PER_VPORT_INTERRUPT_MODERATION_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_ON_PF_VPORTS_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PARAMETERS_PER_PF_VPORT_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_FUNCTION_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_KEY_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_HASH_TYPE_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SIZE_RESTRICTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_RSS_PER_PF_VPORT_INDIRECTION_TABLE_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_SINGLE_VPORT_POOL","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_VF_RSS_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_CAPS_VLAN_SUPPORTED","features":[319]},{"name":"NDIS_NIC_SWITCH_DELETE_SWITCH_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_DELETE_VPORT_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_FREE_VF_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_INFO_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_CHANGE_MASK","features":[319]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_DEFAULT_NUMBER_OF_QUEUE_PAIRS_FOR_DEFAULT_VPORT","features":[319]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_NIC_SWITCH_PARAMETERS_SWITCH_NAME_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[319]},{"name":"NDIS_NIC_SWITCH_VF_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_VF_INFO_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_VF_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_FUNCTION","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_ENUM_ON_SPECIFIC_SWITCH","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_GFT_ENABLED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_LOOKAHEAD_SPLIT_ENABLED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_PACKET_DIRECT_RX_ONLY","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_INFO_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_CHANGE_MASK","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_ENFORCE_MAX_SG_LIST","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_FLAGS_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_INT_MOD_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_LOOKAHEAD_SPLIT_ENABLED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NAME_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NDK_PARAMS_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_NUM_QUEUE_PAIRS_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PACKET_DIRECT_RX_ONLY","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_PROCESSOR_AFFINITY_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_QOS_SQ_ID_CHANGED","features":[319]},{"name":"NDIS_NIC_SWITCH_VPORT_PARAMS_STATE_CHANGED","features":[319]},{"name":"NDIS_OBJECT_HEADER","features":[319]},{"name":"NDIS_OBJECT_REVISION_1","features":[319]},{"name":"NDIS_OBJECT_TYPE_BIND_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_CLIENT_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_CONFIGURATION_OBJECT","features":[319]},{"name":"NDIS_OBJECT_TYPE_CO_CALL_MANAGER_OPTIONAL_HANDLERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_CO_CLIENT_OPTIONAL_HANDLERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_CO_MINIPORT_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_CO_PROTOCOL_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_DEFAULT","features":[319]},{"name":"NDIS_OBJECT_TYPE_DEVICE_OBJECT_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_DRIVER_WRAPPER_OBJECT","features":[319]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTACH_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_FILTER_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_FILTER_DRIVER_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_FILTER_PARTIAL_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_FILTER_PAUSE_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_FILTER_RESTART_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_HD_SPLIT_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_NDK_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_PACKET_DIRECT_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DEVICE_POWER_NOTIFICATION","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INIT_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_INTERRUPT","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_PNP_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_MINIPORT_SS_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_NDK_PROVIDER_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_NSI_COMPARTMENT_RW_STRUCT","features":[319]},{"name":"NDIS_OBJECT_TYPE_NSI_INTERFACE_PERSIST_RW_STRUCT","features":[319]},{"name":"NDIS_OBJECT_TYPE_NSI_NETWORK_RW_STRUCT","features":[319]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD","features":[319]},{"name":"NDIS_OBJECT_TYPE_OFFLOAD_ENCAPSULATION","features":[319]},{"name":"NDIS_OBJECT_TYPE_OID_REQUEST","features":[319]},{"name":"NDIS_OBJECT_TYPE_OPEN_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_1","features":[319]},{"name":"NDIS_OBJECT_TYPE_PCI_DEVICE_CUSTOM_PROPERTIES_REVISION_2","features":[319]},{"name":"NDIS_OBJECT_TYPE_PD_RECEIVE_QUEUE","features":[319]},{"name":"NDIS_OBJECT_TYPE_PD_TRANSMIT_QUEUE","features":[319]},{"name":"NDIS_OBJECT_TYPE_PORT_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_PORT_STATE","features":[319]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_DRIVER_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_PROTOCOL_RESTART_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_PROVIDER_CHIMNEY_OFFLOAD_GENERIC_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_QOS_CAPABILITIES","features":[319]},{"name":"NDIS_OBJECT_TYPE_QOS_CLASSIFICATION_ELEMENT","features":[319]},{"name":"NDIS_OBJECT_TYPE_QOS_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_REQUEST_EX","features":[319]},{"name":"NDIS_OBJECT_TYPE_RESTART_GENERAL_ATTRIBUTES","features":[319]},{"name":"NDIS_OBJECT_TYPE_RSS_CAPABILITIES","features":[319]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_RSS_PARAMETERS_V2","features":[319]},{"name":"NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO","features":[319]},{"name":"NDIS_OBJECT_TYPE_RSS_SET_INDIRECTION_ENTRIES","features":[319]},{"name":"NDIS_OBJECT_TYPE_SG_DMA_DESCRIPTION","features":[319]},{"name":"NDIS_OBJECT_TYPE_SHARED_MEMORY_PROVIDER_CHARACTERISTICS","features":[319]},{"name":"NDIS_OBJECT_TYPE_STATUS_INDICATION","features":[319]},{"name":"NDIS_OBJECT_TYPE_SWITCH_OPTIONAL_HANDLERS","features":[319]},{"name":"NDIS_OBJECT_TYPE_TIMER_CHARACTERISTICS","features":[319]},{"name":"NDIS_OFFLOAD","features":[319]},{"name":"NDIS_OFFLOAD_FLAGS_GROUP_CHECKSUM_CAPABILITIES","features":[319]},{"name":"NDIS_OFFLOAD_NOT_SUPPORTED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_CONNECTION_OFFLOAD_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_AND_ESP_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_AH_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV1_ESP_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_AND_ESP_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_AH_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_IPSECV2_ESP_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_NO_CHANGE","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_3","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_4","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_REVISION_5","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_SKIP_REGISTRY_UPDATE","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_DISABLED","features":[319]},{"name":"NDIS_OFFLOAD_PARAMETERS_USO_ENABLED","features":[319]},{"name":"NDIS_OFFLOAD_REVISION_1","features":[319]},{"name":"NDIS_OFFLOAD_REVISION_2","features":[319]},{"name":"NDIS_OFFLOAD_REVISION_3","features":[319]},{"name":"NDIS_OFFLOAD_REVISION_4","features":[319]},{"name":"NDIS_OFFLOAD_REVISION_5","features":[319]},{"name":"NDIS_OFFLOAD_REVISION_6","features":[319]},{"name":"NDIS_OFFLOAD_REVISION_7","features":[319]},{"name":"NDIS_OFFLOAD_SET_NO_CHANGE","features":[319]},{"name":"NDIS_OFFLOAD_SET_OFF","features":[319]},{"name":"NDIS_OFFLOAD_SET_ON","features":[319]},{"name":"NDIS_OFFLOAD_SUPPORTED","features":[319]},{"name":"NDIS_OPER_STATE","features":[319]},{"name":"NDIS_OPER_STATE_REVISION_1","features":[319]},{"name":"NDIS_PACKET_TYPE_ALL_FUNCTIONAL","features":[319]},{"name":"NDIS_PACKET_TYPE_ALL_LOCAL","features":[319]},{"name":"NDIS_PACKET_TYPE_ALL_MULTICAST","features":[319]},{"name":"NDIS_PACKET_TYPE_BROADCAST","features":[319]},{"name":"NDIS_PACKET_TYPE_DIRECTED","features":[319]},{"name":"NDIS_PACKET_TYPE_FUNCTIONAL","features":[319]},{"name":"NDIS_PACKET_TYPE_GROUP","features":[319]},{"name":"NDIS_PACKET_TYPE_MAC_FRAME","features":[319]},{"name":"NDIS_PACKET_TYPE_MULTICAST","features":[319]},{"name":"NDIS_PACKET_TYPE_NO_LOCAL","features":[319]},{"name":"NDIS_PACKET_TYPE_PROMISCUOUS","features":[319]},{"name":"NDIS_PACKET_TYPE_SMT","features":[319]},{"name":"NDIS_PACKET_TYPE_SOURCE_ROUTING","features":[319]},{"name":"NDIS_PCI_DEVICE_CUSTOM_PROPERTIES","features":[319]},{"name":"NDIS_PD_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_PD_CAPS_DRAIN_NOTIFICATIONS_SUPPORTED","features":[319]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_COUNT_SUPPORTED","features":[319]},{"name":"NDIS_PD_CAPS_NOTIFICATION_MODERATION_INTERVAL_SUPPORTED","features":[319]},{"name":"NDIS_PD_CAPS_RECEIVE_FILTER_COUNTERS_SUPPORTED","features":[319]},{"name":"NDIS_PD_CONFIG_REVISION_1","features":[319]},{"name":"NDIS_PHYSICAL_MEDIUM","features":[319]},{"name":"NDIS_PM_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_PM_CAPABILITIES_REVISION_2","features":[319]},{"name":"NDIS_PM_MAX_PATTERN_ID","features":[319]},{"name":"NDIS_PM_MAX_STRING_SIZE","features":[319]},{"name":"NDIS_PM_PACKET_PATTERN","features":[319]},{"name":"NDIS_PM_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_PM_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_PM_PRIVATE_PATTERN_ID","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_ENABLED","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_80211_RSN_REKEY_SUPPORTED","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_ENABLED","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_ARP_SUPPORTED","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_ENABLED","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_NS_SUPPORTED","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_HIGHEST","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_LOWEST","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_PRIORITY_NORMAL","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[319]},{"name":"NDIS_PM_PROTOCOL_OFFLOAD_REVISION_2","features":[319]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_ENABLED","features":[319]},{"name":"NDIS_PM_SELECTIVE_SUSPEND_SUPPORTED","features":[319]},{"name":"NDIS_PM_WAKE_ON_LINK_CHANGE_ENABLED","features":[319]},{"name":"NDIS_PM_WAKE_ON_MEDIA_CONNECT_SUPPORTED","features":[319]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_ENABLED","features":[319]},{"name":"NDIS_PM_WAKE_ON_MEDIA_DISCONNECT_SUPPORTED","features":[319]},{"name":"NDIS_PM_WAKE_PACKET_INDICATION_SUPPORTED","features":[319]},{"name":"NDIS_PM_WAKE_PACKET_REVISION_1","features":[319]},{"name":"NDIS_PM_WAKE_REASON_REVISION_1","features":[319]},{"name":"NDIS_PM_WAKE_UP_CAPABILITIES","features":[319]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_ENABLED","features":[319]},{"name":"NDIS_PM_WOL_BITMAP_PATTERN_SUPPORTED","features":[319]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_ENABLED","features":[319]},{"name":"NDIS_PM_WOL_EAPOL_REQUEST_ID_MESSAGE_SUPPORTED","features":[319]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_ENABLED","features":[319]},{"name":"NDIS_PM_WOL_IPV4_DEST_ADDR_WILDCARD_SUPPORTED","features":[319]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_ENABLED","features":[319]},{"name":"NDIS_PM_WOL_IPV4_TCP_SYN_SUPPORTED","features":[319]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_ENABLED","features":[319]},{"name":"NDIS_PM_WOL_IPV6_DEST_ADDR_WILDCARD_SUPPORTED","features":[319]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_ENABLED","features":[319]},{"name":"NDIS_PM_WOL_IPV6_TCP_SYN_SUPPORTED","features":[319]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_ENABLED","features":[319]},{"name":"NDIS_PM_WOL_MAGIC_PACKET_SUPPORTED","features":[319]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_1","features":[319]},{"name":"NDIS_PM_WOL_PATTERN_REVISION_2","features":[319]},{"name":"NDIS_PM_WOL_PRIORITY_HIGHEST","features":[319]},{"name":"NDIS_PM_WOL_PRIORITY_LOWEST","features":[319]},{"name":"NDIS_PM_WOL_PRIORITY_NORMAL","features":[319]},{"name":"NDIS_PNP_CAPABILITIES","features":[319]},{"name":"NDIS_PNP_WAKE_UP_LINK_CHANGE","features":[319]},{"name":"NDIS_PNP_WAKE_UP_MAGIC_PACKET","features":[319]},{"name":"NDIS_PNP_WAKE_UP_PATTERN_MATCH","features":[319]},{"name":"NDIS_PORT","features":[319]},{"name":"NDIS_PORT_ARRAY","features":[319]},{"name":"NDIS_PORT_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS","features":[319]},{"name":"NDIS_PORT_AUTHENTICATION_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_PORT_AUTHORIZATION_STATE","features":[319]},{"name":"NDIS_PORT_CHARACTERISTICS","features":[319]},{"name":"NDIS_PORT_CHARACTERISTICS_REVISION_1","features":[319]},{"name":"NDIS_PORT_CHAR_USE_DEFAULT_AUTH_SETTINGS","features":[319]},{"name":"NDIS_PORT_CONTROL_STATE","features":[319]},{"name":"NDIS_PORT_STATE","features":[319]},{"name":"NDIS_PORT_STATE_REVISION_1","features":[319]},{"name":"NDIS_PORT_TYPE","features":[319]},{"name":"NDIS_PROCESSOR_VENDOR","features":[319]},{"name":"NDIS_PROTOCOL_ID_DEFAULT","features":[319]},{"name":"NDIS_PROTOCOL_ID_IP6","features":[319]},{"name":"NDIS_PROTOCOL_ID_IPX","features":[319]},{"name":"NDIS_PROTOCOL_ID_MASK","features":[319]},{"name":"NDIS_PROTOCOL_ID_MAX","features":[319]},{"name":"NDIS_PROTOCOL_ID_NBF","features":[319]},{"name":"NDIS_PROTOCOL_ID_TCP_IP","features":[319]},{"name":"NDIS_PROT_OPTION_ESTIMATED_LENGTH","features":[319]},{"name":"NDIS_PROT_OPTION_NO_LOOPBACK","features":[319]},{"name":"NDIS_PROT_OPTION_NO_RSVD_ON_RCVPKT","features":[319]},{"name":"NDIS_PROT_OPTION_SEND_RESTRICTED","features":[319]},{"name":"NDIS_QOS_ACTION_MAXIMUM","features":[319]},{"name":"NDIS_QOS_ACTION_PRIORITY","features":[319]},{"name":"NDIS_QOS_CAPABILITIES_CEE_DCBX_SUPPORTED","features":[319]},{"name":"NDIS_QOS_CAPABILITIES_IEEE_DCBX_SUPPORTED","features":[319]},{"name":"NDIS_QOS_CAPABILITIES_MACSEC_BYPASS_SUPPORTED","features":[319]},{"name":"NDIS_QOS_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_QOS_CAPABILITIES_STRICT_TSA_SUPPORTED","features":[319]},{"name":"NDIS_QOS_CLASSIFICATION_ELEMENT_REVISION_1","features":[319]},{"name":"NDIS_QOS_CLASSIFICATION_ENFORCED_BY_MINIPORT","features":[319]},{"name":"NDIS_QOS_CLASSIFICATION_SET_BY_MINIPORT_MASK","features":[319]},{"name":"NDIS_QOS_CONDITION_DEFAULT","features":[319]},{"name":"NDIS_QOS_CONDITION_ETHERTYPE","features":[319]},{"name":"NDIS_QOS_CONDITION_MAXIMUM","features":[319]},{"name":"NDIS_QOS_CONDITION_NETDIRECT_PORT","features":[319]},{"name":"NDIS_QOS_CONDITION_RESERVED","features":[319]},{"name":"NDIS_QOS_CONDITION_TCP_OR_UDP_PORT","features":[319]},{"name":"NDIS_QOS_CONDITION_TCP_PORT","features":[319]},{"name":"NDIS_QOS_CONDITION_UDP_PORT","features":[319]},{"name":"NDIS_QOS_DEFAULT_SQ_ID","features":[319]},{"name":"NDIS_QOS_MAXIMUM_PRIORITIES","features":[319]},{"name":"NDIS_QOS_MAXIMUM_TRAFFIC_CLASSES","features":[319]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_QOS_OFFLOAD_CAPABILITIES_REVISION_2","features":[319]},{"name":"NDIS_QOS_OFFLOAD_CAPS_GFT_SQ","features":[319]},{"name":"NDIS_QOS_OFFLOAD_CAPS_STANDARD_SQ","features":[319]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CHANGED","features":[319]},{"name":"NDIS_QOS_PARAMETERS_CLASSIFICATION_CONFIGURED","features":[319]},{"name":"NDIS_QOS_PARAMETERS_ETS_CHANGED","features":[319]},{"name":"NDIS_QOS_PARAMETERS_ETS_CONFIGURED","features":[319]},{"name":"NDIS_QOS_PARAMETERS_PFC_CHANGED","features":[319]},{"name":"NDIS_QOS_PARAMETERS_PFC_CONFIGURED","features":[319]},{"name":"NDIS_QOS_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_QOS_PARAMETERS_WILLING","features":[319]},{"name":"NDIS_QOS_SQ_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_QOS_SQ_PARAMETERS_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_QOS_SQ_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_QOS_SQ_RECEIVE_CAP_ENABLED","features":[319]},{"name":"NDIS_QOS_SQ_STATS_REVISION_1","features":[319]},{"name":"NDIS_QOS_SQ_TRANSMIT_CAP_ENABLED","features":[319]},{"name":"NDIS_QOS_SQ_TRANSMIT_RESERVATION_ENABLED","features":[319]},{"name":"NDIS_QOS_TSA_CBS","features":[319]},{"name":"NDIS_QOS_TSA_ETS","features":[319]},{"name":"NDIS_QOS_TSA_MAXIMUM","features":[319]},{"name":"NDIS_QOS_TSA_STRICT","features":[319]},{"name":"NDIS_RECEIVE_FILTER_ANY_VLAN_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_OPERATION_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SPA_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_ARP_HEADER_TPA_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_CAPABILITIES_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_FILTER_CLEAR_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_FOR_DEFAULT_QUEUE_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_DYNAMIC_PROCESSOR_AFFINITY_CHANGE_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_FIELD_MAC_HEADER_VLAN_UNTAGGED_OR_ZERO","features":[319]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_FIELD_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_FILTER_FLAGS_RESERVED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_GLOBAL_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_MIN_OF_QUEUES_MODE","features":[319]},{"name":"NDIS_RECEIVE_FILTER_IMPLAT_SUM_OF_QUEUES_MODE","features":[319]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_FILTER_INFO_ARRAY_VPORT_ID_SPECIFIED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_INFO_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_INTERRUPT_VECTOR_COALESCING_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_PROTOCOL_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_IPV4_HEADER_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_PROTOCOL_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_IPV6_HEADER_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_LOOKAHEAD_SPLIT_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_DEST_ADDR_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PACKET_TYPE_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PRIORITY_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_PROTOCOL_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SOURCE_ADDR_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MAC_HEADER_VLAN_ID_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MOVE_FILTER_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_MSI_X_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_FILTERS_ENABLED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_PACKET_COALESCING_SUPPORTED_ON_DEFAULT_QUEUE","features":[319]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION","features":[319]},{"name":"NDIS_RECEIVE_FILTER_PACKET_ENCAPSULATION_GRE","features":[319]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_FILTER_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_FILTER_RESERVED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_EQUAL_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_MASK_EQUAL_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_TEST_HEADER_FIELD_NOT_EQUAL_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_DEST_PORT_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_UDP_HEADER_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_VMQ_FILTERS_ENABLED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUES_ENABLED","features":[319]},{"name":"NDIS_RECEIVE_FILTER_VM_QUEUE_SUPPORTED","features":[319]},{"name":"NDIS_RECEIVE_HASH_FLAG_ENABLE_HASH","features":[319]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_INFO_UNCHANGED","features":[319]},{"name":"NDIS_RECEIVE_HASH_FLAG_HASH_KEY_UNCHANGED","features":[319]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS","features":[319]},{"name":"NDIS_RECEIVE_HASH_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_ALLOCATION_COMPLETE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_FREE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_INFO_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_INFO_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_CHANGE_MASK","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_FLAGS_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_INTERRUPT_COALESCING_DOMAIN_ID_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_LOOKAHEAD_SPLIT_REQUIRED","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_NAME_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PER_QUEUE_RECEIVE_INDICATION","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_PROCESSOR_AFFINITY_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_QOS_SQ_ID_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_REVISION_3","features":[319]},{"name":"NDIS_RECEIVE_QUEUE_PARAMETERS_SUGGESTED_RECV_BUFFER_NUMBERS_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES","features":[319]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_SCALE_CAPABILITIES_REVISION_3","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_REVISION_3","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAMETERS_V2_REVISION_1","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAM_ENABLE_RSS","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_INFO_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAM_HASH_KEY_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_ENTRIES_CHANGED","features":[319]},{"name":"NDIS_RECEIVE_SCALE_PARAM_NUMBER_OF_QUEUES_CHANGED","features":[319]},{"name":"NDIS_REQUEST_TYPE","features":[319]},{"name":"NDIS_RING_AUTO_REMOVAL_ERROR","features":[319]},{"name":"NDIS_RING_COUNTER_OVERFLOW","features":[319]},{"name":"NDIS_RING_HARD_ERROR","features":[319]},{"name":"NDIS_RING_LOBE_WIRE_FAULT","features":[319]},{"name":"NDIS_RING_REMOVE_RECEIVED","features":[319]},{"name":"NDIS_RING_RING_RECOVERY","features":[319]},{"name":"NDIS_RING_SIGNAL_LOSS","features":[319]},{"name":"NDIS_RING_SINGLE_STATION","features":[319]},{"name":"NDIS_RING_SOFT_ERROR","features":[319]},{"name":"NDIS_RING_TRANSMIT_BEACON","features":[319]},{"name":"NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1","features":[319]},{"name":"NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY_REVISION_1","features":[319]},{"name":"NDIS_RSC_STATISTICS_REVISION_1","features":[319]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_DPC","features":[319]},{"name":"NDIS_RSS_CAPS_CLASSIFICATION_AT_ISR","features":[319]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV4","features":[319]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6","features":[319]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_TCP_IPV6_EX","features":[319]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV4","features":[319]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6","features":[319]},{"name":"NDIS_RSS_CAPS_HASH_TYPE_UDP_IPV6_EX","features":[319]},{"name":"NDIS_RSS_CAPS_MESSAGE_SIGNALED_INTERRUPTS","features":[319]},{"name":"NDIS_RSS_CAPS_RSS_AVAILABLE_ON_PORTS","features":[319]},{"name":"NDIS_RSS_CAPS_SUPPORTS_INDEPENDENT_ENTRY_MOVE","features":[319]},{"name":"NDIS_RSS_CAPS_SUPPORTS_MSI_X","features":[319]},{"name":"NDIS_RSS_CAPS_USING_MSI_X","features":[319]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_1","features":[319]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_2","features":[319]},{"name":"NDIS_RSS_HASH_SECRET_KEY_MAX_SIZE_REVISION_3","features":[319]},{"name":"NDIS_RSS_HASH_SECRET_KEY_SIZE_REVISION_1","features":[319]},{"name":"NDIS_RSS_INDIRECTION_TABLE_MAX_SIZE_REVISION_1","features":[319]},{"name":"NDIS_RSS_INDIRECTION_TABLE_SIZE_REVISION_1","features":[319]},{"name":"NDIS_RSS_PARAM_FLAG_BASE_CPU_UNCHANGED","features":[319]},{"name":"NDIS_RSS_PARAM_FLAG_DEFAULT_PROCESSOR_UNCHANGED","features":[319]},{"name":"NDIS_RSS_PARAM_FLAG_DISABLE_RSS","features":[319]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_INFO_UNCHANGED","features":[319]},{"name":"NDIS_RSS_PARAM_FLAG_HASH_KEY_UNCHANGED","features":[319]},{"name":"NDIS_RSS_PARAM_FLAG_ITABLE_UNCHANGED","features":[319]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_1","features":[319]},{"name":"NDIS_RSS_PROCESSOR_INFO_REVISION_2","features":[319]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRIES_REVISION_1","features":[319]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_DEFAULT_PROCESSOR","features":[319]},{"name":"NDIS_RSS_SET_INDIRECTION_ENTRY_FLAG_PRIMARY_PROCESSOR","features":[319]},{"name":"NDIS_SIZEOF_NDIS_PM_PROTOCOL_OFFLOAD_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_BAR_RESOURCES_INFO_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_CAPS_PF_MINIPORT","features":[319]},{"name":"NDIS_SRIOV_CAPS_SRIOV_SUPPORTED","features":[319]},{"name":"NDIS_SRIOV_CAPS_VF_MINIPORT","features":[319]},{"name":"NDIS_SRIOV_CONFIG_STATE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_OVERLYING_ADAPTER_INFO_VERSION_1","features":[319]},{"name":"NDIS_SRIOV_PF_LUID_INFO_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_PROBED_BARS_INFO_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_READ_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_RESET_VF_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_SET_VF_POWER_STATE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_VF_INVALIDATE_CONFIG_BLOCK_INFO_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_VF_SERIAL_NUMBER_INFO_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_VF_VENDOR_DEVICE_ID_INFO_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_BLOCK_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SRIOV_WRITE_VF_CONFIG_SPACE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_RCV","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_BYTES_XMIT","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_RCV","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BROADCAST_FRAMES_XMIT","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_RCV","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_BYTES_XMIT","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_RCV","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_BYTES_XMIT","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_RCV","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_DIRECTED_FRAMES_XMIT","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_RCV","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_BYTES_XMIT","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_RCV","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_MULTICAST_FRAMES_XMIT","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_DISCARDS","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_RCV_ERROR","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_DISCARDS","features":[319]},{"name":"NDIS_STATISTICS_FLAGS_VALID_XMIT_ERROR","features":[319]},{"name":"NDIS_STATISTICS_INFO","features":[319]},{"name":"NDIS_STATISTICS_INFO_REVISION_1","features":[319]},{"name":"NDIS_STATISTICS_VALUE","features":[319]},{"name":"NDIS_STATISTICS_VALUE_EX","features":[319]},{"name":"NDIS_SUPPORTED_PAUSE_FUNCTIONS","features":[319]},{"name":"NDIS_SUPPORT_NDIS6","features":[319]},{"name":"NDIS_SUPPORT_NDIS61","features":[319]},{"name":"NDIS_SUPPORT_NDIS620","features":[319]},{"name":"NDIS_SUPPORT_NDIS630","features":[319]},{"name":"NDIS_SUPPORT_NDIS640","features":[319]},{"name":"NDIS_SUPPORT_NDIS650","features":[319]},{"name":"NDIS_SUPPORT_NDIS651","features":[319]},{"name":"NDIS_SUPPORT_NDIS660","features":[319]},{"name":"NDIS_SUPPORT_NDIS670","features":[319]},{"name":"NDIS_SUPPORT_NDIS680","features":[319]},{"name":"NDIS_SUPPORT_NDIS681","features":[319]},{"name":"NDIS_SUPPORT_NDIS682","features":[319]},{"name":"NDIS_SUPPORT_NDIS683","features":[319]},{"name":"NDIS_SUPPORT_NDIS684","features":[319]},{"name":"NDIS_SUPPORT_NDIS685","features":[319]},{"name":"NDIS_SUPPORT_NDIS686","features":[319]},{"name":"NDIS_SUPPORT_NDIS687","features":[319]},{"name":"NDIS_SWITCH_FEATURE_STATUS_CUSTOM_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_NIC_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_NIC_FLAGS_MAPPED_NIC_UPDATED","features":[319]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_INITIALIZING","features":[319]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED","features":[319]},{"name":"NDIS_SWITCH_NIC_FLAGS_NIC_SUSPENDED_LM","features":[319]},{"name":"NDIS_SWITCH_NIC_OID_REQUEST_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_NIC_PARAMETERS_REVISION_2","features":[319]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_NIC_SAVE_STATE_REVISION_2","features":[319]},{"name":"NDIS_SWITCH_OBJECT_SERIALIZATION_VERSION_1","features":[319]},{"name":"NDIS_SWITCH_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_ARRAY_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_CUSTOM_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_FEATURE_STATUS_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_RESTORING_PORT","features":[319]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_FLAG_UNTRUSTED_INTERNAL_PORT","features":[319]},{"name":"NDIS_SWITCH_PORT_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_CUSTOM_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_INFO_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ISOLATION_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_PROFILE_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_ROUTING_DOMAIN_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_SECURITY_REVISION_2","features":[319]},{"name":"NDIS_SWITCH_PORT_PROPERTY_VLAN_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PROPERTY_CUSTOM_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PROPERTY_DELETE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_INFO_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PROPERTY_ENUM_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SWITCH_PROPERTY_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_SYSTEM_PROCESSOR_INFO_EX_REVISION_1","features":[319]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD","features":[319]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_1","features":[319]},{"name":"NDIS_TCP_CONNECTION_OFFLOAD_REVISION_2","features":[319]},{"name":"NDIS_TCP_IP_CHECKSUM_OFFLOAD","features":[319]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V1","features":[319]},{"name":"NDIS_TCP_LARGE_SEND_OFFLOAD_V2","features":[319]},{"name":"NDIS_TCP_RECV_SEG_COALESC_OFFLOAD_REVISION_1","features":[319]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[319]},{"name":"NDIS_TIMEOUT_DPC_REQUEST_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_TIMESTAMP_CAPABILITIES","features":[305,319]},{"name":"NDIS_TIMESTAMP_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_TIMESTAMP_CAPABILITY_FLAGS","features":[305,319]},{"name":"NDIS_VAR_DATA_DESC","features":[319]},{"name":"NDIS_WAN_HEADER_FORMAT","features":[319]},{"name":"NDIS_WAN_MEDIUM_SUBTYPE","features":[319]},{"name":"NDIS_WAN_PROTOCOL_CAPS","features":[319]},{"name":"NDIS_WAN_QUALITY","features":[319]},{"name":"NDIS_WLAN_BSSID","features":[319]},{"name":"NDIS_WLAN_BSSID_EX","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_ENABLED","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_4WAY_HANDSHAKE_REQUEST_SUPPORTED","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_ENABLED","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_AP_ASSOCIATION_LOST_SUPPORTED","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_ENABLED","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_GTK_HANDSHAKE_ERROR_SUPPORTED","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_ENABLED","features":[319]},{"name":"NDIS_WLAN_WAKE_ON_NLO_DISCOVERY_SUPPORTED","features":[319]},{"name":"NDIS_WMI_DEFAULT_METHOD_ID","features":[319]},{"name":"NDIS_WMI_ENUM_ADAPTER","features":[319]},{"name":"NDIS_WMI_ENUM_ADAPTER_REVISION_1","features":[319]},{"name":"NDIS_WMI_EVENT_HEADER","features":[319]},{"name":"NDIS_WMI_EVENT_HEADER_REVISION_1","features":[319]},{"name":"NDIS_WMI_IPSEC_OFFLOAD_V1","features":[319]},{"name":"NDIS_WMI_METHOD_HEADER","features":[319]},{"name":"NDIS_WMI_METHOD_HEADER_REVISION_1","features":[319]},{"name":"NDIS_WMI_OBJECT_TYPE_ENUM_ADAPTER","features":[319]},{"name":"NDIS_WMI_OBJECT_TYPE_EVENT","features":[319]},{"name":"NDIS_WMI_OBJECT_TYPE_METHOD","features":[319]},{"name":"NDIS_WMI_OBJECT_TYPE_OUTPUT_INFO","features":[319]},{"name":"NDIS_WMI_OBJECT_TYPE_SET","features":[319]},{"name":"NDIS_WMI_OFFLOAD","features":[319]},{"name":"NDIS_WMI_OUTPUT_INFO","features":[319]},{"name":"NDIS_WMI_PM_ACTIVE_CAPABILITIES_REVISION_1","features":[319]},{"name":"NDIS_WMI_PM_ADMIN_CONFIG_REVISION_1","features":[319]},{"name":"NDIS_WMI_RECEIVE_QUEUE_INFO_REVISION_1","features":[319]},{"name":"NDIS_WMI_RECEIVE_QUEUE_PARAMETERS_REVISION_1","features":[319]},{"name":"NDIS_WMI_SET_HEADER","features":[319]},{"name":"NDIS_WMI_SET_HEADER_REVISION_1","features":[319]},{"name":"NDIS_WMI_TCP_CONNECTION_OFFLOAD","features":[319]},{"name":"NDIS_WMI_TCP_IP_CHECKSUM_OFFLOAD","features":[319]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V1","features":[319]},{"name":"NDIS_WMI_TCP_LARGE_SEND_OFFLOAD_V2","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_ENABLED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_PACKET_STATE_SUPPORTED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_ENABLED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_REGISTER_STATE_SUPPORTED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_ENABLED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_SMS_RECEIVE_SUPPORTED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_ENABLED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_UICC_CHANGE_SUPPORTED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_ENABLED","features":[319]},{"name":"NDIS_WWAN_WAKE_ON_USSD_RECEIVE_SUPPORTED","features":[319]},{"name":"NDK_ADAPTER_FLAG_CQ_INTERRUPT_MODERATION_SUPPORTED","features":[319]},{"name":"NDK_ADAPTER_FLAG_CQ_RESIZE_SUPPORTED","features":[319]},{"name":"NDK_ADAPTER_FLAG_IN_ORDER_DMA_SUPPORTED","features":[319]},{"name":"NDK_ADAPTER_FLAG_LOOPBACK_CONNECTIONS_SUPPORTED","features":[319]},{"name":"NDK_ADAPTER_FLAG_MULTI_ENGINE_SUPPORTED","features":[319]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_LOCAL_INVALIDATE_SUPPORTED","features":[319]},{"name":"NDK_ADAPTER_FLAG_RDMA_READ_SINK_NOT_REQUIRED","features":[319]},{"name":"NDK_ADAPTER_INFO","features":[319]},{"name":"NDK_RDMA_TECHNOLOGY","features":[319]},{"name":"NDK_VERSION","features":[319]},{"name":"NETWORK_ADDRESS","features":[319]},{"name":"NETWORK_ADDRESS_IP","features":[319]},{"name":"NETWORK_ADDRESS_IP6","features":[319]},{"name":"NETWORK_ADDRESS_IPX","features":[319]},{"name":"NETWORK_ADDRESS_LIST","features":[319]},{"name":"NET_IFLUID_UNSPECIFIED","features":[319]},{"name":"NET_IF_ACCESS_BROADCAST","features":[319]},{"name":"NET_IF_ACCESS_LOOPBACK","features":[319]},{"name":"NET_IF_ACCESS_MAXIMUM","features":[319]},{"name":"NET_IF_ACCESS_POINT_TO_MULTI_POINT","features":[319]},{"name":"NET_IF_ACCESS_POINT_TO_POINT","features":[319]},{"name":"NET_IF_ACCESS_TYPE","features":[319]},{"name":"NET_IF_ADMIN_STATUS","features":[319]},{"name":"NET_IF_ADMIN_STATUS_DOWN","features":[319]},{"name":"NET_IF_ADMIN_STATUS_TESTING","features":[319]},{"name":"NET_IF_ADMIN_STATUS_UP","features":[319]},{"name":"NET_IF_ALIAS_LH","features":[319]},{"name":"NET_IF_CONNECTION_DEDICATED","features":[319]},{"name":"NET_IF_CONNECTION_DEMAND","features":[319]},{"name":"NET_IF_CONNECTION_MAXIMUM","features":[319]},{"name":"NET_IF_CONNECTION_PASSIVE","features":[319]},{"name":"NET_IF_CONNECTION_TYPE","features":[319]},{"name":"NET_IF_DIRECTION_MAXIMUM","features":[319]},{"name":"NET_IF_DIRECTION_RECEIVEONLY","features":[319]},{"name":"NET_IF_DIRECTION_SENDONLY","features":[319]},{"name":"NET_IF_DIRECTION_SENDRECEIVE","features":[319]},{"name":"NET_IF_DIRECTION_TYPE","features":[319]},{"name":"NET_IF_MEDIA_CONNECT_STATE","features":[319]},{"name":"NET_IF_MEDIA_DUPLEX_STATE","features":[319]},{"name":"NET_IF_OID_COMPARTMENT_ID","features":[319]},{"name":"NET_IF_OID_IF_ALIAS","features":[319]},{"name":"NET_IF_OID_IF_ENTRY","features":[319]},{"name":"NET_IF_OID_NETWORK_GUID","features":[319]},{"name":"NET_IF_OPER_STATUS","features":[319]},{"name":"NET_IF_OPER_STATUS_DORMANT","features":[319]},{"name":"NET_IF_OPER_STATUS_DORMANT_LOW_POWER","features":[319]},{"name":"NET_IF_OPER_STATUS_DORMANT_PAUSED","features":[319]},{"name":"NET_IF_OPER_STATUS_DOWN","features":[319]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_AUTHENTICATED","features":[319]},{"name":"NET_IF_OPER_STATUS_DOWN_NOT_MEDIA_CONNECTED","features":[319]},{"name":"NET_IF_OPER_STATUS_LOWER_LAYER_DOWN","features":[319]},{"name":"NET_IF_OPER_STATUS_NOT_PRESENT","features":[319]},{"name":"NET_IF_OPER_STATUS_TESTING","features":[319]},{"name":"NET_IF_OPER_STATUS_UNKNOWN","features":[319]},{"name":"NET_IF_OPER_STATUS_UP","features":[319]},{"name":"NET_IF_RCV_ADDRESS_LH","features":[319]},{"name":"NET_IF_RCV_ADDRESS_TYPE","features":[319]},{"name":"NET_IF_RCV_ADDRESS_TYPE_NON_VOLATILE","features":[319]},{"name":"NET_IF_RCV_ADDRESS_TYPE_OTHER","features":[319]},{"name":"NET_IF_RCV_ADDRESS_TYPE_VOLATILE","features":[319]},{"name":"NET_LUID_LH","features":[319]},{"name":"NET_PHYSICAL_LOCATION_LH","features":[319]},{"name":"NET_SITEID_MAXSYSTEM","features":[319]},{"name":"NET_SITEID_MAXUSER","features":[319]},{"name":"NET_SITEID_UNSPECIFIED","features":[319]},{"name":"NIIF_FILTER_INTERFACE","features":[319]},{"name":"NIIF_HARDWARE_INTERFACE","features":[319]},{"name":"NIIF_NDIS_ENDPOINT_INTERFACE","features":[319]},{"name":"NIIF_NDIS_ISCSI_INTERFACE","features":[319]},{"name":"NIIF_NDIS_RESERVED1","features":[319]},{"name":"NIIF_NDIS_RESERVED2","features":[319]},{"name":"NIIF_NDIS_RESERVED3","features":[319]},{"name":"NIIF_NDIS_RESERVED4","features":[319]},{"name":"NIIF_NDIS_WDM_INTERFACE","features":[319]},{"name":"Ndis802_11AuthModeAutoSwitch","features":[319]},{"name":"Ndis802_11AuthModeMax","features":[319]},{"name":"Ndis802_11AuthModeOpen","features":[319]},{"name":"Ndis802_11AuthModeShared","features":[319]},{"name":"Ndis802_11AuthModeWPA","features":[319]},{"name":"Ndis802_11AuthModeWPA2","features":[319]},{"name":"Ndis802_11AuthModeWPA2PSK","features":[319]},{"name":"Ndis802_11AuthModeWPA3","features":[319]},{"name":"Ndis802_11AuthModeWPA3Ent","features":[319]},{"name":"Ndis802_11AuthModeWPA3Ent192","features":[319]},{"name":"Ndis802_11AuthModeWPA3SAE","features":[319]},{"name":"Ndis802_11AuthModeWPANone","features":[319]},{"name":"Ndis802_11AuthModeWPAPSK","features":[319]},{"name":"Ndis802_11AutoUnknown","features":[319]},{"name":"Ndis802_11Automode","features":[319]},{"name":"Ndis802_11DS","features":[319]},{"name":"Ndis802_11Encryption1Enabled","features":[319]},{"name":"Ndis802_11Encryption1KeyAbsent","features":[319]},{"name":"Ndis802_11Encryption2Enabled","features":[319]},{"name":"Ndis802_11Encryption2KeyAbsent","features":[319]},{"name":"Ndis802_11Encryption3Enabled","features":[319]},{"name":"Ndis802_11Encryption3KeyAbsent","features":[319]},{"name":"Ndis802_11EncryptionDisabled","features":[319]},{"name":"Ndis802_11EncryptionNotSupported","features":[319]},{"name":"Ndis802_11FH","features":[319]},{"name":"Ndis802_11IBSS","features":[319]},{"name":"Ndis802_11Infrastructure","features":[319]},{"name":"Ndis802_11InfrastructureMax","features":[319]},{"name":"Ndis802_11MediaStreamOff","features":[319]},{"name":"Ndis802_11MediaStreamOn","features":[319]},{"name":"Ndis802_11NetworkTypeMax","features":[319]},{"name":"Ndis802_11OFDM24","features":[319]},{"name":"Ndis802_11OFDM5","features":[319]},{"name":"Ndis802_11PowerModeCAM","features":[319]},{"name":"Ndis802_11PowerModeFast_PSP","features":[319]},{"name":"Ndis802_11PowerModeMAX_PSP","features":[319]},{"name":"Ndis802_11PowerModeMax","features":[319]},{"name":"Ndis802_11PrivFilter8021xWEP","features":[319]},{"name":"Ndis802_11PrivFilterAcceptAll","features":[319]},{"name":"Ndis802_11RadioStatusHardwareOff","features":[319]},{"name":"Ndis802_11RadioStatusHardwareSoftwareOff","features":[319]},{"name":"Ndis802_11RadioStatusMax","features":[319]},{"name":"Ndis802_11RadioStatusOn","features":[319]},{"name":"Ndis802_11RadioStatusSoftwareOff","features":[319]},{"name":"Ndis802_11ReloadWEPKeys","features":[319]},{"name":"Ndis802_11StatusTypeMax","features":[319]},{"name":"Ndis802_11StatusType_Authentication","features":[319]},{"name":"Ndis802_11StatusType_MediaStreamMode","features":[319]},{"name":"Ndis802_11StatusType_PMKID_CandidateList","features":[319]},{"name":"Ndis802_11WEPDisabled","features":[319]},{"name":"Ndis802_11WEPEnabled","features":[319]},{"name":"Ndis802_11WEPKeyAbsent","features":[319]},{"name":"Ndis802_11WEPNotSupported","features":[319]},{"name":"NdisDefinitelyNetworkChange","features":[319]},{"name":"NdisDeviceStateD0","features":[319]},{"name":"NdisDeviceStateD1","features":[319]},{"name":"NdisDeviceStateD2","features":[319]},{"name":"NdisDeviceStateD3","features":[319]},{"name":"NdisDeviceStateMaximum","features":[319]},{"name":"NdisDeviceStateUnspecified","features":[319]},{"name":"NdisFddiRingDetect","features":[319]},{"name":"NdisFddiRingDirected","features":[319]},{"name":"NdisFddiRingIsolated","features":[319]},{"name":"NdisFddiRingNonOperational","features":[319]},{"name":"NdisFddiRingNonOperationalDup","features":[319]},{"name":"NdisFddiRingOperational","features":[319]},{"name":"NdisFddiRingOperationalDup","features":[319]},{"name":"NdisFddiRingTrace","features":[319]},{"name":"NdisFddiStateActive","features":[319]},{"name":"NdisFddiStateBreak","features":[319]},{"name":"NdisFddiStateConnect","features":[319]},{"name":"NdisFddiStateJoin","features":[319]},{"name":"NdisFddiStateMaintenance","features":[319]},{"name":"NdisFddiStateNext","features":[319]},{"name":"NdisFddiStateOff","features":[319]},{"name":"NdisFddiStateSignal","features":[319]},{"name":"NdisFddiStateTrace","features":[319]},{"name":"NdisFddiStateVerify","features":[319]},{"name":"NdisFddiTypeCWrapA","features":[319]},{"name":"NdisFddiTypeCWrapB","features":[319]},{"name":"NdisFddiTypeCWrapS","features":[319]},{"name":"NdisFddiTypeIsolated","features":[319]},{"name":"NdisFddiTypeLocalA","features":[319]},{"name":"NdisFddiTypeLocalAB","features":[319]},{"name":"NdisFddiTypeLocalB","features":[319]},{"name":"NdisFddiTypeLocalS","features":[319]},{"name":"NdisFddiTypeThrough","features":[319]},{"name":"NdisFddiTypeWrapA","features":[319]},{"name":"NdisFddiTypeWrapAB","features":[319]},{"name":"NdisFddiTypeWrapB","features":[319]},{"name":"NdisFddiTypeWrapS","features":[319]},{"name":"NdisHardwareStatusClosing","features":[319]},{"name":"NdisHardwareStatusInitializing","features":[319]},{"name":"NdisHardwareStatusNotReady","features":[319]},{"name":"NdisHardwareStatusReady","features":[319]},{"name":"NdisHardwareStatusReset","features":[319]},{"name":"NdisHashFunctionReserved1","features":[319]},{"name":"NdisHashFunctionReserved2","features":[319]},{"name":"NdisHashFunctionReserved3","features":[319]},{"name":"NdisHashFunctionToeplitz","features":[319]},{"name":"NdisInterruptModerationDisabled","features":[319]},{"name":"NdisInterruptModerationEnabled","features":[319]},{"name":"NdisInterruptModerationNotSupported","features":[319]},{"name":"NdisInterruptModerationUnknown","features":[319]},{"name":"NdisMediaStateConnected","features":[319]},{"name":"NdisMediaStateDisconnected","features":[319]},{"name":"NdisMedium1394","features":[319]},{"name":"NdisMedium802_3","features":[319]},{"name":"NdisMedium802_5","features":[319]},{"name":"NdisMediumArcnet878_2","features":[319]},{"name":"NdisMediumArcnetRaw","features":[319]},{"name":"NdisMediumAtm","features":[319]},{"name":"NdisMediumBpc","features":[319]},{"name":"NdisMediumCoWan","features":[319]},{"name":"NdisMediumDix","features":[319]},{"name":"NdisMediumFddi","features":[319]},{"name":"NdisMediumIP","features":[319]},{"name":"NdisMediumInfiniBand","features":[319]},{"name":"NdisMediumIrda","features":[319]},{"name":"NdisMediumLocalTalk","features":[319]},{"name":"NdisMediumLoopback","features":[319]},{"name":"NdisMediumMax","features":[319]},{"name":"NdisMediumNative802_11","features":[319]},{"name":"NdisMediumTunnel","features":[319]},{"name":"NdisMediumWan","features":[319]},{"name":"NdisMediumWiMAX","features":[319]},{"name":"NdisMediumWirelessWan","features":[319]},{"name":"NdisNetworkChangeFromMediaConnect","features":[319]},{"name":"NdisNetworkChangeMax","features":[319]},{"name":"NdisPauseFunctionsReceiveOnly","features":[319]},{"name":"NdisPauseFunctionsSendAndReceive","features":[319]},{"name":"NdisPauseFunctionsSendOnly","features":[319]},{"name":"NdisPauseFunctionsUnknown","features":[319]},{"name":"NdisPauseFunctionsUnsupported","features":[319]},{"name":"NdisPhysicalMedium1394","features":[319]},{"name":"NdisPhysicalMedium802_3","features":[319]},{"name":"NdisPhysicalMedium802_5","features":[319]},{"name":"NdisPhysicalMediumBluetooth","features":[319]},{"name":"NdisPhysicalMediumCableModem","features":[319]},{"name":"NdisPhysicalMediumDSL","features":[319]},{"name":"NdisPhysicalMediumFibreChannel","features":[319]},{"name":"NdisPhysicalMediumInfiniband","features":[319]},{"name":"NdisPhysicalMediumIrda","features":[319]},{"name":"NdisPhysicalMediumMax","features":[319]},{"name":"NdisPhysicalMediumNative802_11","features":[319]},{"name":"NdisPhysicalMediumNative802_15_4","features":[319]},{"name":"NdisPhysicalMediumOther","features":[319]},{"name":"NdisPhysicalMediumPhoneLine","features":[319]},{"name":"NdisPhysicalMediumPowerLine","features":[319]},{"name":"NdisPhysicalMediumUWB","features":[319]},{"name":"NdisPhysicalMediumUnspecified","features":[319]},{"name":"NdisPhysicalMediumWiMax","features":[319]},{"name":"NdisPhysicalMediumWiredCoWan","features":[319]},{"name":"NdisPhysicalMediumWiredWAN","features":[319]},{"name":"NdisPhysicalMediumWirelessLan","features":[319]},{"name":"NdisPhysicalMediumWirelessWan","features":[319]},{"name":"NdisPortAuthorizationUnknown","features":[319]},{"name":"NdisPortAuthorized","features":[319]},{"name":"NdisPortControlStateControlled","features":[319]},{"name":"NdisPortControlStateUncontrolled","features":[319]},{"name":"NdisPortControlStateUnknown","features":[319]},{"name":"NdisPortReauthorizing","features":[319]},{"name":"NdisPortType8021xSupplicant","features":[319]},{"name":"NdisPortTypeBridge","features":[319]},{"name":"NdisPortTypeMax","features":[319]},{"name":"NdisPortTypeRasConnection","features":[319]},{"name":"NdisPortTypeUndefined","features":[319]},{"name":"NdisPortUnauthorized","features":[319]},{"name":"NdisPossibleNetworkChange","features":[319]},{"name":"NdisProcessorVendorAuthenticAMD","features":[319]},{"name":"NdisProcessorVendorGenuinIntel","features":[319]},{"name":"NdisProcessorVendorGenuineIntel","features":[319]},{"name":"NdisProcessorVendorUnknown","features":[319]},{"name":"NdisRequestClose","features":[319]},{"name":"NdisRequestGeneric1","features":[319]},{"name":"NdisRequestGeneric2","features":[319]},{"name":"NdisRequestGeneric3","features":[319]},{"name":"NdisRequestGeneric4","features":[319]},{"name":"NdisRequestOpen","features":[319]},{"name":"NdisRequestQueryInformation","features":[319]},{"name":"NdisRequestQueryStatistics","features":[319]},{"name":"NdisRequestReset","features":[319]},{"name":"NdisRequestSend","features":[319]},{"name":"NdisRequestSetInformation","features":[319]},{"name":"NdisRequestTransferData","features":[319]},{"name":"NdisRingStateClosed","features":[319]},{"name":"NdisRingStateClosing","features":[319]},{"name":"NdisRingStateOpenFailure","features":[319]},{"name":"NdisRingStateOpened","features":[319]},{"name":"NdisRingStateOpening","features":[319]},{"name":"NdisRingStateRingFailure","features":[319]},{"name":"NdisWanErrorControl","features":[319]},{"name":"NdisWanHeaderEthernet","features":[319]},{"name":"NdisWanHeaderNative","features":[319]},{"name":"NdisWanMediumAgileVPN","features":[319]},{"name":"NdisWanMediumAtm","features":[319]},{"name":"NdisWanMediumFrameRelay","features":[319]},{"name":"NdisWanMediumGre","features":[319]},{"name":"NdisWanMediumHub","features":[319]},{"name":"NdisWanMediumIrda","features":[319]},{"name":"NdisWanMediumIsdn","features":[319]},{"name":"NdisWanMediumL2TP","features":[319]},{"name":"NdisWanMediumPPTP","features":[319]},{"name":"NdisWanMediumParallel","features":[319]},{"name":"NdisWanMediumPppoe","features":[319]},{"name":"NdisWanMediumSSTP","features":[319]},{"name":"NdisWanMediumSW56K","features":[319]},{"name":"NdisWanMediumSerial","features":[319]},{"name":"NdisWanMediumSonet","features":[319]},{"name":"NdisWanMediumSubTypeMax","features":[319]},{"name":"NdisWanMediumX_25","features":[319]},{"name":"NdisWanRaw","features":[319]},{"name":"NdisWanReliable","features":[319]},{"name":"NdkInfiniBand","features":[319]},{"name":"NdkMaxTechnology","features":[319]},{"name":"NdkRoCE","features":[319]},{"name":"NdkRoCEv2","features":[319]},{"name":"NdkUndefined","features":[319]},{"name":"NdkiWarp","features":[319]},{"name":"OFFLOAD_ALGO_INFO","features":[319]},{"name":"OFFLOAD_CONF_ALGO","features":[319]},{"name":"OFFLOAD_INBOUND_SA","features":[319]},{"name":"OFFLOAD_INTEGRITY_ALGO","features":[319]},{"name":"OFFLOAD_IPSEC_ADD_SA","features":[305,319]},{"name":"OFFLOAD_IPSEC_ADD_UDPESP_SA","features":[305,319]},{"name":"OFFLOAD_IPSEC_CONF_3_DES","features":[319]},{"name":"OFFLOAD_IPSEC_CONF_DES","features":[319]},{"name":"OFFLOAD_IPSEC_CONF_MAX","features":[319]},{"name":"OFFLOAD_IPSEC_CONF_NONE","features":[319]},{"name":"OFFLOAD_IPSEC_CONF_RESERVED","features":[319]},{"name":"OFFLOAD_IPSEC_DELETE_SA","features":[305,319]},{"name":"OFFLOAD_IPSEC_DELETE_UDPESP_SA","features":[305,319]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MAX","features":[319]},{"name":"OFFLOAD_IPSEC_INTEGRITY_MD5","features":[319]},{"name":"OFFLOAD_IPSEC_INTEGRITY_NONE","features":[319]},{"name":"OFFLOAD_IPSEC_INTEGRITY_SHA","features":[319]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_ENTRY","features":[319]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_IKE","features":[319]},{"name":"OFFLOAD_IPSEC_UDPESP_ENCAPTYPE_OTHER","features":[319]},{"name":"OFFLOAD_MAX_SAS","features":[319]},{"name":"OFFLOAD_OPERATION_E","features":[319]},{"name":"OFFLOAD_OUTBOUND_SA","features":[319]},{"name":"OFFLOAD_SECURITY_ASSOCIATION","features":[319]},{"name":"OID_1394_LOCAL_NODE_INFO","features":[319]},{"name":"OID_1394_VC_INFO","features":[319]},{"name":"OID_802_11_ADD_KEY","features":[319]},{"name":"OID_802_11_ADD_WEP","features":[319]},{"name":"OID_802_11_ASSOCIATION_INFORMATION","features":[319]},{"name":"OID_802_11_AUTHENTICATION_MODE","features":[319]},{"name":"OID_802_11_BSSID","features":[319]},{"name":"OID_802_11_BSSID_LIST","features":[319]},{"name":"OID_802_11_BSSID_LIST_SCAN","features":[319]},{"name":"OID_802_11_CAPABILITY","features":[319]},{"name":"OID_802_11_CONFIGURATION","features":[319]},{"name":"OID_802_11_DESIRED_RATES","features":[319]},{"name":"OID_802_11_DISASSOCIATE","features":[319]},{"name":"OID_802_11_ENCRYPTION_STATUS","features":[319]},{"name":"OID_802_11_FRAGMENTATION_THRESHOLD","features":[319]},{"name":"OID_802_11_INFRASTRUCTURE_MODE","features":[319]},{"name":"OID_802_11_MEDIA_STREAM_MODE","features":[319]},{"name":"OID_802_11_NETWORK_TYPES_SUPPORTED","features":[319]},{"name":"OID_802_11_NETWORK_TYPE_IN_USE","features":[319]},{"name":"OID_802_11_NON_BCAST_SSID_LIST","features":[319]},{"name":"OID_802_11_NUMBER_OF_ANTENNAS","features":[319]},{"name":"OID_802_11_PMKID","features":[319]},{"name":"OID_802_11_POWER_MODE","features":[319]},{"name":"OID_802_11_PRIVACY_FILTER","features":[319]},{"name":"OID_802_11_RADIO_STATUS","features":[319]},{"name":"OID_802_11_RELOAD_DEFAULTS","features":[319]},{"name":"OID_802_11_REMOVE_KEY","features":[319]},{"name":"OID_802_11_REMOVE_WEP","features":[319]},{"name":"OID_802_11_RSSI","features":[319]},{"name":"OID_802_11_RSSI_TRIGGER","features":[319]},{"name":"OID_802_11_RTS_THRESHOLD","features":[319]},{"name":"OID_802_11_RX_ANTENNA_SELECTED","features":[319]},{"name":"OID_802_11_SSID","features":[319]},{"name":"OID_802_11_STATISTICS","features":[319]},{"name":"OID_802_11_SUPPORTED_RATES","features":[319]},{"name":"OID_802_11_TEST","features":[319]},{"name":"OID_802_11_TX_ANTENNA_SELECTED","features":[319]},{"name":"OID_802_11_TX_POWER_LEVEL","features":[319]},{"name":"OID_802_11_WEP_STATUS","features":[319]},{"name":"OID_802_3_ADD_MULTICAST_ADDRESS","features":[319]},{"name":"OID_802_3_CURRENT_ADDRESS","features":[319]},{"name":"OID_802_3_DELETE_MULTICAST_ADDRESS","features":[319]},{"name":"OID_802_3_MAC_OPTIONS","features":[319]},{"name":"OID_802_3_MAXIMUM_LIST_SIZE","features":[319]},{"name":"OID_802_3_MULTICAST_LIST","features":[319]},{"name":"OID_802_3_PERMANENT_ADDRESS","features":[319]},{"name":"OID_802_3_RCV_ERROR_ALIGNMENT","features":[319]},{"name":"OID_802_3_RCV_OVERRUN","features":[319]},{"name":"OID_802_3_XMIT_DEFERRED","features":[319]},{"name":"OID_802_3_XMIT_HEARTBEAT_FAILURE","features":[319]},{"name":"OID_802_3_XMIT_LATE_COLLISIONS","features":[319]},{"name":"OID_802_3_XMIT_MAX_COLLISIONS","features":[319]},{"name":"OID_802_3_XMIT_MORE_COLLISIONS","features":[319]},{"name":"OID_802_3_XMIT_ONE_COLLISION","features":[319]},{"name":"OID_802_3_XMIT_TIMES_CRS_LOST","features":[319]},{"name":"OID_802_3_XMIT_UNDERRUN","features":[319]},{"name":"OID_802_5_ABORT_DELIMETERS","features":[319]},{"name":"OID_802_5_AC_ERRORS","features":[319]},{"name":"OID_802_5_BURST_ERRORS","features":[319]},{"name":"OID_802_5_CURRENT_ADDRESS","features":[319]},{"name":"OID_802_5_CURRENT_FUNCTIONAL","features":[319]},{"name":"OID_802_5_CURRENT_GROUP","features":[319]},{"name":"OID_802_5_CURRENT_RING_STATE","features":[319]},{"name":"OID_802_5_CURRENT_RING_STATUS","features":[319]},{"name":"OID_802_5_FRAME_COPIED_ERRORS","features":[319]},{"name":"OID_802_5_FREQUENCY_ERRORS","features":[319]},{"name":"OID_802_5_INTERNAL_ERRORS","features":[319]},{"name":"OID_802_5_LAST_OPEN_STATUS","features":[319]},{"name":"OID_802_5_LINE_ERRORS","features":[319]},{"name":"OID_802_5_LOST_FRAMES","features":[319]},{"name":"OID_802_5_PERMANENT_ADDRESS","features":[319]},{"name":"OID_802_5_TOKEN_ERRORS","features":[319]},{"name":"OID_ARCNET_CURRENT_ADDRESS","features":[319]},{"name":"OID_ARCNET_PERMANENT_ADDRESS","features":[319]},{"name":"OID_ARCNET_RECONFIGURATIONS","features":[319]},{"name":"OID_ATM_ACQUIRE_ACCESS_NET_RESOURCES","features":[319]},{"name":"OID_ATM_ALIGNMENT_REQUIRED","features":[319]},{"name":"OID_ATM_ASSIGNED_VPI","features":[319]},{"name":"OID_ATM_CALL_ALERTING","features":[319]},{"name":"OID_ATM_CALL_NOTIFY","features":[319]},{"name":"OID_ATM_CALL_PROCEEDING","features":[319]},{"name":"OID_ATM_CELLS_HEC_ERROR","features":[319]},{"name":"OID_ATM_DIGITAL_BROADCAST_VPIVCI","features":[319]},{"name":"OID_ATM_GET_NEAREST_FLOW","features":[319]},{"name":"OID_ATM_HW_CURRENT_ADDRESS","features":[319]},{"name":"OID_ATM_ILMI_VPIVCI","features":[319]},{"name":"OID_ATM_LECS_ADDRESS","features":[319]},{"name":"OID_ATM_MAX_AAL0_PACKET_SIZE","features":[319]},{"name":"OID_ATM_MAX_AAL1_PACKET_SIZE","features":[319]},{"name":"OID_ATM_MAX_AAL34_PACKET_SIZE","features":[319]},{"name":"OID_ATM_MAX_AAL5_PACKET_SIZE","features":[319]},{"name":"OID_ATM_MAX_ACTIVE_VCI_BITS","features":[319]},{"name":"OID_ATM_MAX_ACTIVE_VCS","features":[319]},{"name":"OID_ATM_MAX_ACTIVE_VPI_BITS","features":[319]},{"name":"OID_ATM_MY_IP_NM_ADDRESS","features":[319]},{"name":"OID_ATM_PARTY_ALERTING","features":[319]},{"name":"OID_ATM_RCV_CELLS_DROPPED","features":[319]},{"name":"OID_ATM_RCV_CELLS_OK","features":[319]},{"name":"OID_ATM_RCV_INVALID_VPI_VCI","features":[319]},{"name":"OID_ATM_RCV_REASSEMBLY_ERROR","features":[319]},{"name":"OID_ATM_RELEASE_ACCESS_NET_RESOURCES","features":[319]},{"name":"OID_ATM_SERVICE_ADDRESS","features":[319]},{"name":"OID_ATM_SIGNALING_VPIVCI","features":[319]},{"name":"OID_ATM_SUPPORTED_AAL_TYPES","features":[319]},{"name":"OID_ATM_SUPPORTED_SERVICE_CATEGORY","features":[319]},{"name":"OID_ATM_SUPPORTED_VC_RATES","features":[319]},{"name":"OID_ATM_XMIT_CELLS_OK","features":[319]},{"name":"OID_CO_ADDRESS_CHANGE","features":[319]},{"name":"OID_CO_ADD_ADDRESS","features":[319]},{"name":"OID_CO_ADD_PVC","features":[319]},{"name":"OID_CO_AF_CLOSE","features":[319]},{"name":"OID_CO_DELETE_ADDRESS","features":[319]},{"name":"OID_CO_DELETE_PVC","features":[319]},{"name":"OID_CO_GET_ADDRESSES","features":[319]},{"name":"OID_CO_GET_CALL_INFORMATION","features":[319]},{"name":"OID_CO_SIGNALING_DISABLED","features":[319]},{"name":"OID_CO_SIGNALING_ENABLED","features":[319]},{"name":"OID_CO_TAPI_ADDRESS_CAPS","features":[319]},{"name":"OID_CO_TAPI_CM_CAPS","features":[319]},{"name":"OID_CO_TAPI_DONT_REPORT_DIGITS","features":[319]},{"name":"OID_CO_TAPI_GET_CALL_DIAGNOSTICS","features":[319]},{"name":"OID_CO_TAPI_LINE_CAPS","features":[319]},{"name":"OID_CO_TAPI_REPORT_DIGITS","features":[319]},{"name":"OID_CO_TAPI_TRANSLATE_NDIS_CALLPARAMS","features":[319]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_CALLPARAMS","features":[319]},{"name":"OID_CO_TAPI_TRANSLATE_TAPI_SAP","features":[319]},{"name":"OID_FDDI_ATTACHMENT_TYPE","features":[319]},{"name":"OID_FDDI_DOWNSTREAM_NODE_LONG","features":[319]},{"name":"OID_FDDI_FRAMES_LOST","features":[319]},{"name":"OID_FDDI_FRAME_ERRORS","features":[319]},{"name":"OID_FDDI_IF_ADMIN_STATUS","features":[319]},{"name":"OID_FDDI_IF_DESCR","features":[319]},{"name":"OID_FDDI_IF_IN_DISCARDS","features":[319]},{"name":"OID_FDDI_IF_IN_ERRORS","features":[319]},{"name":"OID_FDDI_IF_IN_NUCAST_PKTS","features":[319]},{"name":"OID_FDDI_IF_IN_OCTETS","features":[319]},{"name":"OID_FDDI_IF_IN_UCAST_PKTS","features":[319]},{"name":"OID_FDDI_IF_IN_UNKNOWN_PROTOS","features":[319]},{"name":"OID_FDDI_IF_LAST_CHANGE","features":[319]},{"name":"OID_FDDI_IF_MTU","features":[319]},{"name":"OID_FDDI_IF_OPER_STATUS","features":[319]},{"name":"OID_FDDI_IF_OUT_DISCARDS","features":[319]},{"name":"OID_FDDI_IF_OUT_ERRORS","features":[319]},{"name":"OID_FDDI_IF_OUT_NUCAST_PKTS","features":[319]},{"name":"OID_FDDI_IF_OUT_OCTETS","features":[319]},{"name":"OID_FDDI_IF_OUT_QLEN","features":[319]},{"name":"OID_FDDI_IF_OUT_UCAST_PKTS","features":[319]},{"name":"OID_FDDI_IF_PHYS_ADDRESS","features":[319]},{"name":"OID_FDDI_IF_SPECIFIC","features":[319]},{"name":"OID_FDDI_IF_SPEED","features":[319]},{"name":"OID_FDDI_IF_TYPE","features":[319]},{"name":"OID_FDDI_LCONNECTION_STATE","features":[319]},{"name":"OID_FDDI_LCT_FAILURES","features":[319]},{"name":"OID_FDDI_LEM_REJECTS","features":[319]},{"name":"OID_FDDI_LONG_CURRENT_ADDR","features":[319]},{"name":"OID_FDDI_LONG_MAX_LIST_SIZE","features":[319]},{"name":"OID_FDDI_LONG_MULTICAST_LIST","features":[319]},{"name":"OID_FDDI_LONG_PERMANENT_ADDR","features":[319]},{"name":"OID_FDDI_MAC_AVAILABLE_PATHS","features":[319]},{"name":"OID_FDDI_MAC_BRIDGE_FUNCTIONS","features":[319]},{"name":"OID_FDDI_MAC_COPIED_CT","features":[319]},{"name":"OID_FDDI_MAC_CURRENT_PATH","features":[319]},{"name":"OID_FDDI_MAC_DA_FLAG","features":[319]},{"name":"OID_FDDI_MAC_DOWNSTREAM_NBR","features":[319]},{"name":"OID_FDDI_MAC_DOWNSTREAM_PORT_TYPE","features":[319]},{"name":"OID_FDDI_MAC_DUP_ADDRESS_TEST","features":[319]},{"name":"OID_FDDI_MAC_ERROR_CT","features":[319]},{"name":"OID_FDDI_MAC_FRAME_CT","features":[319]},{"name":"OID_FDDI_MAC_FRAME_ERROR_FLAG","features":[319]},{"name":"OID_FDDI_MAC_FRAME_ERROR_RATIO","features":[319]},{"name":"OID_FDDI_MAC_FRAME_ERROR_THRESHOLD","features":[319]},{"name":"OID_FDDI_MAC_FRAME_STATUS_FUNCTIONS","features":[319]},{"name":"OID_FDDI_MAC_HARDWARE_PRESENT","features":[319]},{"name":"OID_FDDI_MAC_INDEX","features":[319]},{"name":"OID_FDDI_MAC_LATE_CT","features":[319]},{"name":"OID_FDDI_MAC_LONG_GRP_ADDRESS","features":[319]},{"name":"OID_FDDI_MAC_LOST_CT","features":[319]},{"name":"OID_FDDI_MAC_MA_UNITDATA_AVAILABLE","features":[319]},{"name":"OID_FDDI_MAC_MA_UNITDATA_ENABLE","features":[319]},{"name":"OID_FDDI_MAC_NOT_COPIED_CT","features":[319]},{"name":"OID_FDDI_MAC_NOT_COPIED_FLAG","features":[319]},{"name":"OID_FDDI_MAC_NOT_COPIED_RATIO","features":[319]},{"name":"OID_FDDI_MAC_NOT_COPIED_THRESHOLD","features":[319]},{"name":"OID_FDDI_MAC_OLD_DOWNSTREAM_NBR","features":[319]},{"name":"OID_FDDI_MAC_OLD_UPSTREAM_NBR","features":[319]},{"name":"OID_FDDI_MAC_REQUESTED_PATHS","features":[319]},{"name":"OID_FDDI_MAC_RING_OP_CT","features":[319]},{"name":"OID_FDDI_MAC_RMT_STATE","features":[319]},{"name":"OID_FDDI_MAC_SHORT_GRP_ADDRESS","features":[319]},{"name":"OID_FDDI_MAC_SMT_ADDRESS","features":[319]},{"name":"OID_FDDI_MAC_TOKEN_CT","features":[319]},{"name":"OID_FDDI_MAC_TRANSMIT_CT","features":[319]},{"name":"OID_FDDI_MAC_TVX_CAPABILITY","features":[319]},{"name":"OID_FDDI_MAC_TVX_EXPIRED_CT","features":[319]},{"name":"OID_FDDI_MAC_TVX_VALUE","features":[319]},{"name":"OID_FDDI_MAC_T_MAX","features":[319]},{"name":"OID_FDDI_MAC_T_MAX_CAPABILITY","features":[319]},{"name":"OID_FDDI_MAC_T_NEG","features":[319]},{"name":"OID_FDDI_MAC_T_PRI0","features":[319]},{"name":"OID_FDDI_MAC_T_PRI1","features":[319]},{"name":"OID_FDDI_MAC_T_PRI2","features":[319]},{"name":"OID_FDDI_MAC_T_PRI3","features":[319]},{"name":"OID_FDDI_MAC_T_PRI4","features":[319]},{"name":"OID_FDDI_MAC_T_PRI5","features":[319]},{"name":"OID_FDDI_MAC_T_PRI6","features":[319]},{"name":"OID_FDDI_MAC_T_REQ","features":[319]},{"name":"OID_FDDI_MAC_UNDA_FLAG","features":[319]},{"name":"OID_FDDI_MAC_UPSTREAM_NBR","features":[319]},{"name":"OID_FDDI_PATH_CONFIGURATION","features":[319]},{"name":"OID_FDDI_PATH_INDEX","features":[319]},{"name":"OID_FDDI_PATH_MAX_T_REQ","features":[319]},{"name":"OID_FDDI_PATH_RING_LATENCY","features":[319]},{"name":"OID_FDDI_PATH_SBA_AVAILABLE","features":[319]},{"name":"OID_FDDI_PATH_SBA_OVERHEAD","features":[319]},{"name":"OID_FDDI_PATH_SBA_PAYLOAD","features":[319]},{"name":"OID_FDDI_PATH_TRACE_STATUS","features":[319]},{"name":"OID_FDDI_PATH_TVX_LOWER_BOUND","features":[319]},{"name":"OID_FDDI_PATH_T_MAX_LOWER_BOUND","features":[319]},{"name":"OID_FDDI_PATH_T_R_MODE","features":[319]},{"name":"OID_FDDI_PORT_ACTION","features":[319]},{"name":"OID_FDDI_PORT_AVAILABLE_PATHS","features":[319]},{"name":"OID_FDDI_PORT_BS_FLAG","features":[319]},{"name":"OID_FDDI_PORT_CONNECTION_CAPABILITIES","features":[319]},{"name":"OID_FDDI_PORT_CONNECTION_POLICIES","features":[319]},{"name":"OID_FDDI_PORT_CONNNECT_STATE","features":[319]},{"name":"OID_FDDI_PORT_CURRENT_PATH","features":[319]},{"name":"OID_FDDI_PORT_EB_ERROR_CT","features":[319]},{"name":"OID_FDDI_PORT_HARDWARE_PRESENT","features":[319]},{"name":"OID_FDDI_PORT_INDEX","features":[319]},{"name":"OID_FDDI_PORT_LCT_FAIL_CT","features":[319]},{"name":"OID_FDDI_PORT_LEM_CT","features":[319]},{"name":"OID_FDDI_PORT_LEM_REJECT_CT","features":[319]},{"name":"OID_FDDI_PORT_LER_ALARM","features":[319]},{"name":"OID_FDDI_PORT_LER_CUTOFF","features":[319]},{"name":"OID_FDDI_PORT_LER_ESTIMATE","features":[319]},{"name":"OID_FDDI_PORT_LER_FLAG","features":[319]},{"name":"OID_FDDI_PORT_MAC_INDICATED","features":[319]},{"name":"OID_FDDI_PORT_MAC_LOOP_TIME","features":[319]},{"name":"OID_FDDI_PORT_MAC_PLACEMENT","features":[319]},{"name":"OID_FDDI_PORT_MAINT_LS","features":[319]},{"name":"OID_FDDI_PORT_MY_TYPE","features":[319]},{"name":"OID_FDDI_PORT_NEIGHBOR_TYPE","features":[319]},{"name":"OID_FDDI_PORT_PCM_STATE","features":[319]},{"name":"OID_FDDI_PORT_PC_LS","features":[319]},{"name":"OID_FDDI_PORT_PC_WITHHOLD","features":[319]},{"name":"OID_FDDI_PORT_PMD_CLASS","features":[319]},{"name":"OID_FDDI_PORT_REQUESTED_PATHS","features":[319]},{"name":"OID_FDDI_RING_MGT_STATE","features":[319]},{"name":"OID_FDDI_SHORT_CURRENT_ADDR","features":[319]},{"name":"OID_FDDI_SHORT_MAX_LIST_SIZE","features":[319]},{"name":"OID_FDDI_SHORT_MULTICAST_LIST","features":[319]},{"name":"OID_FDDI_SHORT_PERMANENT_ADDR","features":[319]},{"name":"OID_FDDI_SMT_AVAILABLE_PATHS","features":[319]},{"name":"OID_FDDI_SMT_BYPASS_PRESENT","features":[319]},{"name":"OID_FDDI_SMT_CF_STATE","features":[319]},{"name":"OID_FDDI_SMT_CONFIG_CAPABILITIES","features":[319]},{"name":"OID_FDDI_SMT_CONFIG_POLICY","features":[319]},{"name":"OID_FDDI_SMT_CONNECTION_POLICY","features":[319]},{"name":"OID_FDDI_SMT_ECM_STATE","features":[319]},{"name":"OID_FDDI_SMT_HI_VERSION_ID","features":[319]},{"name":"OID_FDDI_SMT_HOLD_STATE","features":[319]},{"name":"OID_FDDI_SMT_LAST_SET_STATION_ID","features":[319]},{"name":"OID_FDDI_SMT_LO_VERSION_ID","features":[319]},{"name":"OID_FDDI_SMT_MAC_CT","features":[319]},{"name":"OID_FDDI_SMT_MAC_INDEXES","features":[319]},{"name":"OID_FDDI_SMT_MANUFACTURER_DATA","features":[319]},{"name":"OID_FDDI_SMT_MASTER_CT","features":[319]},{"name":"OID_FDDI_SMT_MIB_VERSION_ID","features":[319]},{"name":"OID_FDDI_SMT_MSG_TIME_STAMP","features":[319]},{"name":"OID_FDDI_SMT_NON_MASTER_CT","features":[319]},{"name":"OID_FDDI_SMT_OP_VERSION_ID","features":[319]},{"name":"OID_FDDI_SMT_PEER_WRAP_FLAG","features":[319]},{"name":"OID_FDDI_SMT_PORT_INDEXES","features":[319]},{"name":"OID_FDDI_SMT_REMOTE_DISCONNECT_FLAG","features":[319]},{"name":"OID_FDDI_SMT_SET_COUNT","features":[319]},{"name":"OID_FDDI_SMT_STATION_ACTION","features":[319]},{"name":"OID_FDDI_SMT_STATION_ID","features":[319]},{"name":"OID_FDDI_SMT_STATION_STATUS","features":[319]},{"name":"OID_FDDI_SMT_STAT_RPT_POLICY","features":[319]},{"name":"OID_FDDI_SMT_TRACE_MAX_EXPIRATION","features":[319]},{"name":"OID_FDDI_SMT_TRANSITION_TIME_STAMP","features":[319]},{"name":"OID_FDDI_SMT_T_NOTIFY","features":[319]},{"name":"OID_FDDI_SMT_USER_DATA","features":[319]},{"name":"OID_FDDI_UPSTREAM_NODE_LONG","features":[319]},{"name":"OID_FFP_ADAPTER_STATS","features":[319]},{"name":"OID_FFP_CONTROL","features":[319]},{"name":"OID_FFP_DATA","features":[319]},{"name":"OID_FFP_DRIVER_STATS","features":[319]},{"name":"OID_FFP_FLUSH","features":[319]},{"name":"OID_FFP_PARAMS","features":[319]},{"name":"OID_FFP_SUPPORT","features":[319]},{"name":"OID_GEN_ADMIN_STATUS","features":[319]},{"name":"OID_GEN_ALIAS","features":[319]},{"name":"OID_GEN_BROADCAST_BYTES_RCV","features":[319]},{"name":"OID_GEN_BROADCAST_BYTES_XMIT","features":[319]},{"name":"OID_GEN_BROADCAST_FRAMES_RCV","features":[319]},{"name":"OID_GEN_BROADCAST_FRAMES_XMIT","features":[319]},{"name":"OID_GEN_BYTES_RCV","features":[319]},{"name":"OID_GEN_BYTES_XMIT","features":[319]},{"name":"OID_GEN_CO_BYTES_RCV","features":[319]},{"name":"OID_GEN_CO_BYTES_XMIT","features":[319]},{"name":"OID_GEN_CO_BYTES_XMIT_OUTSTANDING","features":[319]},{"name":"OID_GEN_CO_DEVICE_PROFILE","features":[319]},{"name":"OID_GEN_CO_DRIVER_VERSION","features":[319]},{"name":"OID_GEN_CO_GET_NETCARD_TIME","features":[319]},{"name":"OID_GEN_CO_GET_TIME_CAPS","features":[319]},{"name":"OID_GEN_CO_HARDWARE_STATUS","features":[319]},{"name":"OID_GEN_CO_LINK_SPEED","features":[319]},{"name":"OID_GEN_CO_MAC_OPTIONS","features":[319]},{"name":"OID_GEN_CO_MEDIA_CONNECT_STATUS","features":[319]},{"name":"OID_GEN_CO_MEDIA_IN_USE","features":[319]},{"name":"OID_GEN_CO_MEDIA_SUPPORTED","features":[319]},{"name":"OID_GEN_CO_MINIMUM_LINK_SPEED","features":[319]},{"name":"OID_GEN_CO_NETCARD_LOAD","features":[319]},{"name":"OID_GEN_CO_PROTOCOL_OPTIONS","features":[319]},{"name":"OID_GEN_CO_RCV_CRC_ERROR","features":[319]},{"name":"OID_GEN_CO_RCV_PDUS_ERROR","features":[319]},{"name":"OID_GEN_CO_RCV_PDUS_NO_BUFFER","features":[319]},{"name":"OID_GEN_CO_RCV_PDUS_OK","features":[319]},{"name":"OID_GEN_CO_SUPPORTED_GUIDS","features":[319]},{"name":"OID_GEN_CO_SUPPORTED_LIST","features":[319]},{"name":"OID_GEN_CO_TRANSMIT_QUEUE_LENGTH","features":[319]},{"name":"OID_GEN_CO_VENDOR_DESCRIPTION","features":[319]},{"name":"OID_GEN_CO_VENDOR_DRIVER_VERSION","features":[319]},{"name":"OID_GEN_CO_VENDOR_ID","features":[319]},{"name":"OID_GEN_CO_XMIT_PDUS_ERROR","features":[319]},{"name":"OID_GEN_CO_XMIT_PDUS_OK","features":[319]},{"name":"OID_GEN_CURRENT_LOOKAHEAD","features":[319]},{"name":"OID_GEN_CURRENT_PACKET_FILTER","features":[319]},{"name":"OID_GEN_DEVICE_PROFILE","features":[319]},{"name":"OID_GEN_DIRECTED_BYTES_RCV","features":[319]},{"name":"OID_GEN_DIRECTED_BYTES_XMIT","features":[319]},{"name":"OID_GEN_DIRECTED_FRAMES_RCV","features":[319]},{"name":"OID_GEN_DIRECTED_FRAMES_XMIT","features":[319]},{"name":"OID_GEN_DISCONTINUITY_TIME","features":[319]},{"name":"OID_GEN_DRIVER_VERSION","features":[319]},{"name":"OID_GEN_ENUMERATE_PORTS","features":[319]},{"name":"OID_GEN_FRIENDLY_NAME","features":[319]},{"name":"OID_GEN_GET_NETCARD_TIME","features":[319]},{"name":"OID_GEN_GET_TIME_CAPS","features":[319]},{"name":"OID_GEN_HARDWARE_STATUS","features":[319]},{"name":"OID_GEN_HD_SPLIT_CURRENT_CONFIG","features":[319]},{"name":"OID_GEN_HD_SPLIT_PARAMETERS","features":[319]},{"name":"OID_GEN_INIT_TIME_MS","features":[319]},{"name":"OID_GEN_INTERFACE_INFO","features":[319]},{"name":"OID_GEN_INTERRUPT_MODERATION","features":[319]},{"name":"OID_GEN_IP_OPER_STATUS","features":[319]},{"name":"OID_GEN_ISOLATION_PARAMETERS","features":[319]},{"name":"OID_GEN_LAST_CHANGE","features":[319]},{"name":"OID_GEN_LINK_PARAMETERS","features":[319]},{"name":"OID_GEN_LINK_SPEED","features":[319]},{"name":"OID_GEN_LINK_SPEED_EX","features":[319]},{"name":"OID_GEN_LINK_STATE","features":[319]},{"name":"OID_GEN_MACHINE_NAME","features":[319]},{"name":"OID_GEN_MAC_ADDRESS","features":[319]},{"name":"OID_GEN_MAC_OPTIONS","features":[319]},{"name":"OID_GEN_MAXIMUM_FRAME_SIZE","features":[319]},{"name":"OID_GEN_MAXIMUM_LOOKAHEAD","features":[319]},{"name":"OID_GEN_MAXIMUM_SEND_PACKETS","features":[319]},{"name":"OID_GEN_MAXIMUM_TOTAL_SIZE","features":[319]},{"name":"OID_GEN_MAX_LINK_SPEED","features":[319]},{"name":"OID_GEN_MEDIA_CAPABILITIES","features":[319]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS","features":[319]},{"name":"OID_GEN_MEDIA_CONNECT_STATUS_EX","features":[319]},{"name":"OID_GEN_MEDIA_DUPLEX_STATE","features":[319]},{"name":"OID_GEN_MEDIA_IN_USE","features":[319]},{"name":"OID_GEN_MEDIA_SENSE_COUNTS","features":[319]},{"name":"OID_GEN_MEDIA_SUPPORTED","features":[319]},{"name":"OID_GEN_MINIPORT_RESTART_ATTRIBUTES","features":[319]},{"name":"OID_GEN_MULTICAST_BYTES_RCV","features":[319]},{"name":"OID_GEN_MULTICAST_BYTES_XMIT","features":[319]},{"name":"OID_GEN_MULTICAST_FRAMES_RCV","features":[319]},{"name":"OID_GEN_MULTICAST_FRAMES_XMIT","features":[319]},{"name":"OID_GEN_NDIS_RESERVED_1","features":[319]},{"name":"OID_GEN_NDIS_RESERVED_2","features":[319]},{"name":"OID_GEN_NDIS_RESERVED_3","features":[319]},{"name":"OID_GEN_NDIS_RESERVED_4","features":[319]},{"name":"OID_GEN_NDIS_RESERVED_5","features":[319]},{"name":"OID_GEN_NDIS_RESERVED_6","features":[319]},{"name":"OID_GEN_NDIS_RESERVED_7","features":[319]},{"name":"OID_GEN_NETCARD_LOAD","features":[319]},{"name":"OID_GEN_NETWORK_LAYER_ADDRESSES","features":[319]},{"name":"OID_GEN_OPERATIONAL_STATUS","features":[319]},{"name":"OID_GEN_PCI_DEVICE_CUSTOM_PROPERTIES","features":[319]},{"name":"OID_GEN_PHYSICAL_MEDIUM","features":[319]},{"name":"OID_GEN_PHYSICAL_MEDIUM_EX","features":[319]},{"name":"OID_GEN_PORT_AUTHENTICATION_PARAMETERS","features":[319]},{"name":"OID_GEN_PORT_STATE","features":[319]},{"name":"OID_GEN_PROMISCUOUS_MODE","features":[319]},{"name":"OID_GEN_PROTOCOL_OPTIONS","features":[319]},{"name":"OID_GEN_RCV_CRC_ERROR","features":[319]},{"name":"OID_GEN_RCV_DISCARDS","features":[319]},{"name":"OID_GEN_RCV_ERROR","features":[319]},{"name":"OID_GEN_RCV_LINK_SPEED","features":[319]},{"name":"OID_GEN_RCV_NO_BUFFER","features":[319]},{"name":"OID_GEN_RCV_OK","features":[319]},{"name":"OID_GEN_RECEIVE_BLOCK_SIZE","features":[319]},{"name":"OID_GEN_RECEIVE_BUFFER_SPACE","features":[319]},{"name":"OID_GEN_RECEIVE_HASH","features":[319]},{"name":"OID_GEN_RECEIVE_SCALE_CAPABILITIES","features":[319]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS","features":[319]},{"name":"OID_GEN_RECEIVE_SCALE_PARAMETERS_V2","features":[319]},{"name":"OID_GEN_RESET_COUNTS","features":[319]},{"name":"OID_GEN_RNDIS_CONFIG_PARAMETER","features":[319]},{"name":"OID_GEN_RSS_SET_INDIRECTION_TABLE_ENTRIES","features":[319]},{"name":"OID_GEN_STATISTICS","features":[319]},{"name":"OID_GEN_SUPPORTED_GUIDS","features":[319]},{"name":"OID_GEN_SUPPORTED_LIST","features":[319]},{"name":"OID_GEN_TIMEOUT_DPC_REQUEST_CAPABILITIES","features":[319]},{"name":"OID_GEN_TRANSMIT_BLOCK_SIZE","features":[319]},{"name":"OID_GEN_TRANSMIT_BUFFER_SPACE","features":[319]},{"name":"OID_GEN_TRANSMIT_QUEUE_LENGTH","features":[319]},{"name":"OID_GEN_TRANSPORT_HEADER_OFFSET","features":[319]},{"name":"OID_GEN_UNKNOWN_PROTOS","features":[319]},{"name":"OID_GEN_VENDOR_DESCRIPTION","features":[319]},{"name":"OID_GEN_VENDOR_DRIVER_VERSION","features":[319]},{"name":"OID_GEN_VENDOR_ID","features":[319]},{"name":"OID_GEN_VLAN_ID","features":[319]},{"name":"OID_GEN_XMIT_DISCARDS","features":[319]},{"name":"OID_GEN_XMIT_ERROR","features":[319]},{"name":"OID_GEN_XMIT_LINK_SPEED","features":[319]},{"name":"OID_GEN_XMIT_OK","features":[319]},{"name":"OID_GFT_ACTIVATE_FLOW_ENTRIES","features":[319]},{"name":"OID_GFT_ADD_FLOW_ENTRIES","features":[319]},{"name":"OID_GFT_ALLOCATE_COUNTERS","features":[319]},{"name":"OID_GFT_COUNTER_VALUES","features":[319]},{"name":"OID_GFT_CREATE_LOGICAL_VPORT","features":[319]},{"name":"OID_GFT_CREATE_TABLE","features":[319]},{"name":"OID_GFT_CURRENT_CAPABILITIES","features":[319]},{"name":"OID_GFT_DEACTIVATE_FLOW_ENTRIES","features":[319]},{"name":"OID_GFT_DELETE_FLOW_ENTRIES","features":[319]},{"name":"OID_GFT_DELETE_LOGICAL_VPORT","features":[319]},{"name":"OID_GFT_DELETE_PROFILE","features":[319]},{"name":"OID_GFT_DELETE_TABLE","features":[319]},{"name":"OID_GFT_ENUM_COUNTERS","features":[319]},{"name":"OID_GFT_ENUM_FLOW_ENTRIES","features":[319]},{"name":"OID_GFT_ENUM_LOGICAL_VPORTS","features":[319]},{"name":"OID_GFT_ENUM_PROFILES","features":[319]},{"name":"OID_GFT_ENUM_TABLES","features":[319]},{"name":"OID_GFT_EXACT_MATCH_PROFILE","features":[319]},{"name":"OID_GFT_FLOW_ENTRY_PARAMETERS","features":[319]},{"name":"OID_GFT_FREE_COUNTERS","features":[319]},{"name":"OID_GFT_GLOBAL_PARAMETERS","features":[319]},{"name":"OID_GFT_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_GFT_HEADER_TRANSPOSITION_PROFILE","features":[319]},{"name":"OID_GFT_STATISTICS","features":[319]},{"name":"OID_GFT_VPORT_PARAMETERS","features":[319]},{"name":"OID_GFT_WILDCARD_MATCH_PROFILE","features":[319]},{"name":"OID_IP4_OFFLOAD_STATS","features":[319]},{"name":"OID_IP6_OFFLOAD_STATS","features":[319]},{"name":"OID_IRDA_EXTRA_RCV_BOFS","features":[319]},{"name":"OID_IRDA_LINK_SPEED","features":[319]},{"name":"OID_IRDA_MAX_RECEIVE_WINDOW_SIZE","features":[319]},{"name":"OID_IRDA_MAX_SEND_WINDOW_SIZE","features":[319]},{"name":"OID_IRDA_MAX_UNICAST_LIST_SIZE","features":[319]},{"name":"OID_IRDA_MEDIA_BUSY","features":[319]},{"name":"OID_IRDA_RATE_SNIFF","features":[319]},{"name":"OID_IRDA_RECEIVING","features":[319]},{"name":"OID_IRDA_RESERVED1","features":[319]},{"name":"OID_IRDA_RESERVED2","features":[319]},{"name":"OID_IRDA_SUPPORTED_SPEEDS","features":[319]},{"name":"OID_IRDA_TURNAROUND_TIME","features":[319]},{"name":"OID_IRDA_UNICAST_LIST","features":[319]},{"name":"OID_KDNET_ADD_PF","features":[319]},{"name":"OID_KDNET_ENUMERATE_PFS","features":[319]},{"name":"OID_KDNET_QUERY_PF_INFORMATION","features":[319]},{"name":"OID_KDNET_REMOVE_PF","features":[319]},{"name":"OID_LTALK_COLLISIONS","features":[319]},{"name":"OID_LTALK_CURRENT_NODE_ID","features":[319]},{"name":"OID_LTALK_DEFERS","features":[319]},{"name":"OID_LTALK_FCS_ERRORS","features":[319]},{"name":"OID_LTALK_IN_BROADCASTS","features":[319]},{"name":"OID_LTALK_IN_LENGTH_ERRORS","features":[319]},{"name":"OID_LTALK_NO_DATA_ERRORS","features":[319]},{"name":"OID_LTALK_OUT_NO_HANDLERS","features":[319]},{"name":"OID_LTALK_RANDOM_CTS_ERRORS","features":[319]},{"name":"OID_NDK_CONNECTIONS","features":[319]},{"name":"OID_NDK_LOCAL_ENDPOINTS","features":[319]},{"name":"OID_NDK_SET_STATE","features":[319]},{"name":"OID_NDK_STATISTICS","features":[319]},{"name":"OID_NIC_SWITCH_ALLOCATE_VF","features":[319]},{"name":"OID_NIC_SWITCH_CREATE_SWITCH","features":[319]},{"name":"OID_NIC_SWITCH_CREATE_VPORT","features":[319]},{"name":"OID_NIC_SWITCH_CURRENT_CAPABILITIES","features":[319]},{"name":"OID_NIC_SWITCH_DELETE_SWITCH","features":[319]},{"name":"OID_NIC_SWITCH_DELETE_VPORT","features":[319]},{"name":"OID_NIC_SWITCH_ENUM_SWITCHES","features":[319]},{"name":"OID_NIC_SWITCH_ENUM_VFS","features":[319]},{"name":"OID_NIC_SWITCH_ENUM_VPORTS","features":[319]},{"name":"OID_NIC_SWITCH_FREE_VF","features":[319]},{"name":"OID_NIC_SWITCH_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_NIC_SWITCH_PARAMETERS","features":[319]},{"name":"OID_NIC_SWITCH_VF_PARAMETERS","features":[319]},{"name":"OID_NIC_SWITCH_VPORT_PARAMETERS","features":[319]},{"name":"OID_OFFLOAD_ENCAPSULATION","features":[319]},{"name":"OID_PACKET_COALESCING_FILTER_MATCH_COUNT","features":[319]},{"name":"OID_PD_CLOSE_PROVIDER","features":[319]},{"name":"OID_PD_OPEN_PROVIDER","features":[319]},{"name":"OID_PD_QUERY_CURRENT_CONFIG","features":[319]},{"name":"OID_PM_ADD_PROTOCOL_OFFLOAD","features":[319]},{"name":"OID_PM_ADD_WOL_PATTERN","features":[319]},{"name":"OID_PM_CURRENT_CAPABILITIES","features":[319]},{"name":"OID_PM_GET_PROTOCOL_OFFLOAD","features":[319]},{"name":"OID_PM_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_PM_PARAMETERS","features":[319]},{"name":"OID_PM_PROTOCOL_OFFLOAD_LIST","features":[319]},{"name":"OID_PM_REMOVE_PROTOCOL_OFFLOAD","features":[319]},{"name":"OID_PM_REMOVE_WOL_PATTERN","features":[319]},{"name":"OID_PM_RESERVED_1","features":[319]},{"name":"OID_PM_WOL_PATTERN_LIST","features":[319]},{"name":"OID_PNP_ADD_WAKE_UP_PATTERN","features":[319]},{"name":"OID_PNP_CAPABILITIES","features":[319]},{"name":"OID_PNP_ENABLE_WAKE_UP","features":[319]},{"name":"OID_PNP_QUERY_POWER","features":[319]},{"name":"OID_PNP_REMOVE_WAKE_UP_PATTERN","features":[319]},{"name":"OID_PNP_SET_POWER","features":[319]},{"name":"OID_PNP_WAKE_UP_ERROR","features":[319]},{"name":"OID_PNP_WAKE_UP_OK","features":[319]},{"name":"OID_PNP_WAKE_UP_PATTERN_LIST","features":[319]},{"name":"OID_QOS_CURRENT_CAPABILITIES","features":[319]},{"name":"OID_QOS_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_QOS_OFFLOAD_CREATE_SQ","features":[319]},{"name":"OID_QOS_OFFLOAD_CURRENT_CAPABILITIES","features":[319]},{"name":"OID_QOS_OFFLOAD_DELETE_SQ","features":[319]},{"name":"OID_QOS_OFFLOAD_ENUM_SQS","features":[319]},{"name":"OID_QOS_OFFLOAD_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_QOS_OFFLOAD_SQ_STATS","features":[319]},{"name":"OID_QOS_OFFLOAD_UPDATE_SQ","features":[319]},{"name":"OID_QOS_OPERATIONAL_PARAMETERS","features":[319]},{"name":"OID_QOS_PARAMETERS","features":[319]},{"name":"OID_QOS_REMOTE_PARAMETERS","features":[319]},{"name":"OID_QOS_RESERVED1","features":[319]},{"name":"OID_QOS_RESERVED10","features":[319]},{"name":"OID_QOS_RESERVED11","features":[319]},{"name":"OID_QOS_RESERVED12","features":[319]},{"name":"OID_QOS_RESERVED13","features":[319]},{"name":"OID_QOS_RESERVED14","features":[319]},{"name":"OID_QOS_RESERVED15","features":[319]},{"name":"OID_QOS_RESERVED16","features":[319]},{"name":"OID_QOS_RESERVED17","features":[319]},{"name":"OID_QOS_RESERVED18","features":[319]},{"name":"OID_QOS_RESERVED19","features":[319]},{"name":"OID_QOS_RESERVED2","features":[319]},{"name":"OID_QOS_RESERVED20","features":[319]},{"name":"OID_QOS_RESERVED3","features":[319]},{"name":"OID_QOS_RESERVED4","features":[319]},{"name":"OID_QOS_RESERVED5","features":[319]},{"name":"OID_QOS_RESERVED6","features":[319]},{"name":"OID_QOS_RESERVED7","features":[319]},{"name":"OID_QOS_RESERVED8","features":[319]},{"name":"OID_QOS_RESERVED9","features":[319]},{"name":"OID_RECEIVE_FILTER_ALLOCATE_QUEUE","features":[319]},{"name":"OID_RECEIVE_FILTER_CLEAR_FILTER","features":[319]},{"name":"OID_RECEIVE_FILTER_CURRENT_CAPABILITIES","features":[319]},{"name":"OID_RECEIVE_FILTER_ENUM_FILTERS","features":[319]},{"name":"OID_RECEIVE_FILTER_ENUM_QUEUES","features":[319]},{"name":"OID_RECEIVE_FILTER_FREE_QUEUE","features":[319]},{"name":"OID_RECEIVE_FILTER_GLOBAL_PARAMETERS","features":[319]},{"name":"OID_RECEIVE_FILTER_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_RECEIVE_FILTER_MOVE_FILTER","features":[319]},{"name":"OID_RECEIVE_FILTER_PARAMETERS","features":[319]},{"name":"OID_RECEIVE_FILTER_QUEUE_ALLOCATION_COMPLETE","features":[319]},{"name":"OID_RECEIVE_FILTER_QUEUE_PARAMETERS","features":[319]},{"name":"OID_RECEIVE_FILTER_SET_FILTER","features":[319]},{"name":"OID_SRIOV_BAR_RESOURCES","features":[319]},{"name":"OID_SRIOV_CONFIG_STATE","features":[319]},{"name":"OID_SRIOV_CURRENT_CAPABILITIES","features":[319]},{"name":"OID_SRIOV_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_SRIOV_OVERLYING_ADAPTER_INFO","features":[319]},{"name":"OID_SRIOV_PF_LUID","features":[319]},{"name":"OID_SRIOV_PROBED_BARS","features":[319]},{"name":"OID_SRIOV_READ_VF_CONFIG_BLOCK","features":[319]},{"name":"OID_SRIOV_READ_VF_CONFIG_SPACE","features":[319]},{"name":"OID_SRIOV_RESET_VF","features":[319]},{"name":"OID_SRIOV_SET_VF_POWER_STATE","features":[319]},{"name":"OID_SRIOV_VF_INVALIDATE_CONFIG_BLOCK","features":[319]},{"name":"OID_SRIOV_VF_SERIAL_NUMBER","features":[319]},{"name":"OID_SRIOV_VF_VENDOR_DEVICE_ID","features":[319]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_BLOCK","features":[319]},{"name":"OID_SRIOV_WRITE_VF_CONFIG_SPACE","features":[319]},{"name":"OID_SWITCH_FEATURE_STATUS_QUERY","features":[319]},{"name":"OID_SWITCH_NIC_ARRAY","features":[319]},{"name":"OID_SWITCH_NIC_CONNECT","features":[319]},{"name":"OID_SWITCH_NIC_CREATE","features":[319]},{"name":"OID_SWITCH_NIC_DELETE","features":[319]},{"name":"OID_SWITCH_NIC_DIRECT_REQUEST","features":[319]},{"name":"OID_SWITCH_NIC_DISCONNECT","features":[319]},{"name":"OID_SWITCH_NIC_REQUEST","features":[319]},{"name":"OID_SWITCH_NIC_RESTORE","features":[319]},{"name":"OID_SWITCH_NIC_RESTORE_COMPLETE","features":[319]},{"name":"OID_SWITCH_NIC_RESUME","features":[319]},{"name":"OID_SWITCH_NIC_SAVE","features":[319]},{"name":"OID_SWITCH_NIC_SAVE_COMPLETE","features":[319]},{"name":"OID_SWITCH_NIC_SUSPEND","features":[319]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_FINISHED","features":[319]},{"name":"OID_SWITCH_NIC_SUSPENDED_LM_SOURCE_STARTED","features":[319]},{"name":"OID_SWITCH_NIC_UPDATED","features":[319]},{"name":"OID_SWITCH_PARAMETERS","features":[319]},{"name":"OID_SWITCH_PORT_ARRAY","features":[319]},{"name":"OID_SWITCH_PORT_CREATE","features":[319]},{"name":"OID_SWITCH_PORT_DELETE","features":[319]},{"name":"OID_SWITCH_PORT_FEATURE_STATUS_QUERY","features":[319]},{"name":"OID_SWITCH_PORT_PROPERTY_ADD","features":[319]},{"name":"OID_SWITCH_PORT_PROPERTY_DELETE","features":[319]},{"name":"OID_SWITCH_PORT_PROPERTY_ENUM","features":[319]},{"name":"OID_SWITCH_PORT_PROPERTY_UPDATE","features":[319]},{"name":"OID_SWITCH_PORT_TEARDOWN","features":[319]},{"name":"OID_SWITCH_PORT_UPDATED","features":[319]},{"name":"OID_SWITCH_PROPERTY_ADD","features":[319]},{"name":"OID_SWITCH_PROPERTY_DELETE","features":[319]},{"name":"OID_SWITCH_PROPERTY_ENUM","features":[319]},{"name":"OID_SWITCH_PROPERTY_UPDATE","features":[319]},{"name":"OID_TAPI_ACCEPT","features":[319]},{"name":"OID_TAPI_ANSWER","features":[319]},{"name":"OID_TAPI_CLOSE","features":[319]},{"name":"OID_TAPI_CLOSE_CALL","features":[319]},{"name":"OID_TAPI_CONDITIONAL_MEDIA_DETECTION","features":[319]},{"name":"OID_TAPI_CONFIG_DIALOG","features":[319]},{"name":"OID_TAPI_DEV_SPECIFIC","features":[319]},{"name":"OID_TAPI_DIAL","features":[319]},{"name":"OID_TAPI_DROP","features":[319]},{"name":"OID_TAPI_GATHER_DIGITS","features":[319]},{"name":"OID_TAPI_GET_ADDRESS_CAPS","features":[319]},{"name":"OID_TAPI_GET_ADDRESS_ID","features":[319]},{"name":"OID_TAPI_GET_ADDRESS_STATUS","features":[319]},{"name":"OID_TAPI_GET_CALL_ADDRESS_ID","features":[319]},{"name":"OID_TAPI_GET_CALL_INFO","features":[319]},{"name":"OID_TAPI_GET_CALL_STATUS","features":[319]},{"name":"OID_TAPI_GET_DEV_CAPS","features":[319]},{"name":"OID_TAPI_GET_DEV_CONFIG","features":[319]},{"name":"OID_TAPI_GET_EXTENSION_ID","features":[319]},{"name":"OID_TAPI_GET_ID","features":[319]},{"name":"OID_TAPI_GET_LINE_DEV_STATUS","features":[319]},{"name":"OID_TAPI_MAKE_CALL","features":[319]},{"name":"OID_TAPI_MONITOR_DIGITS","features":[319]},{"name":"OID_TAPI_NEGOTIATE_EXT_VERSION","features":[319]},{"name":"OID_TAPI_OPEN","features":[319]},{"name":"OID_TAPI_PROVIDER_INITIALIZE","features":[319]},{"name":"OID_TAPI_PROVIDER_SHUTDOWN","features":[319]},{"name":"OID_TAPI_SECURE_CALL","features":[319]},{"name":"OID_TAPI_SELECT_EXT_VERSION","features":[319]},{"name":"OID_TAPI_SEND_USER_USER_INFO","features":[319]},{"name":"OID_TAPI_SET_APP_SPECIFIC","features":[319]},{"name":"OID_TAPI_SET_CALL_PARAMS","features":[319]},{"name":"OID_TAPI_SET_DEFAULT_MEDIA_DETECTION","features":[319]},{"name":"OID_TAPI_SET_DEV_CONFIG","features":[319]},{"name":"OID_TAPI_SET_MEDIA_MODE","features":[319]},{"name":"OID_TAPI_SET_STATUS_MESSAGES","features":[319]},{"name":"OID_TCP4_OFFLOAD_STATS","features":[319]},{"name":"OID_TCP6_OFFLOAD_STATS","features":[319]},{"name":"OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG","features":[319]},{"name":"OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_TCP_CONNECTION_OFFLOAD_PARAMETERS","features":[319]},{"name":"OID_TCP_OFFLOAD_CURRENT_CONFIG","features":[319]},{"name":"OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES","features":[319]},{"name":"OID_TCP_OFFLOAD_PARAMETERS","features":[319]},{"name":"OID_TCP_RSC_STATISTICS","features":[319]},{"name":"OID_TCP_SAN_SUPPORT","features":[319]},{"name":"OID_TCP_TASK_IPSEC_ADD_SA","features":[319]},{"name":"OID_TCP_TASK_IPSEC_ADD_UDPESP_SA","features":[319]},{"name":"OID_TCP_TASK_IPSEC_DELETE_SA","features":[319]},{"name":"OID_TCP_TASK_IPSEC_DELETE_UDPESP_SA","features":[319]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA","features":[319]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_ADD_SA_EX","features":[319]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_DELETE_SA","features":[319]},{"name":"OID_TCP_TASK_IPSEC_OFFLOAD_V2_UPDATE_SA","features":[319]},{"name":"OID_TCP_TASK_OFFLOAD","features":[319]},{"name":"OID_TIMESTAMP_CAPABILITY","features":[319]},{"name":"OID_TIMESTAMP_CURRENT_CONFIG","features":[319]},{"name":"OID_TIMESTAMP_GET_CROSSTIMESTAMP","features":[319]},{"name":"OID_TUNNEL_INTERFACE_RELEASE_OID","features":[319]},{"name":"OID_TUNNEL_INTERFACE_SET_OID","features":[319]},{"name":"OID_VLAN_RESERVED1","features":[319]},{"name":"OID_VLAN_RESERVED2","features":[319]},{"name":"OID_VLAN_RESERVED3","features":[319]},{"name":"OID_VLAN_RESERVED4","features":[319]},{"name":"OID_WAN_CO_GET_COMP_INFO","features":[319]},{"name":"OID_WAN_CO_GET_INFO","features":[319]},{"name":"OID_WAN_CO_GET_LINK_INFO","features":[319]},{"name":"OID_WAN_CO_GET_STATS_INFO","features":[319]},{"name":"OID_WAN_CO_SET_COMP_INFO","features":[319]},{"name":"OID_WAN_CO_SET_LINK_INFO","features":[319]},{"name":"OID_WAN_CURRENT_ADDRESS","features":[319]},{"name":"OID_WAN_GET_BRIDGE_INFO","features":[319]},{"name":"OID_WAN_GET_COMP_INFO","features":[319]},{"name":"OID_WAN_GET_INFO","features":[319]},{"name":"OID_WAN_GET_LINK_INFO","features":[319]},{"name":"OID_WAN_GET_STATS_INFO","features":[319]},{"name":"OID_WAN_HEADER_FORMAT","features":[319]},{"name":"OID_WAN_LINE_COUNT","features":[319]},{"name":"OID_WAN_MEDIUM_SUBTYPE","features":[319]},{"name":"OID_WAN_PERMANENT_ADDRESS","features":[319]},{"name":"OID_WAN_PROTOCOL_CAPS","features":[319]},{"name":"OID_WAN_PROTOCOL_TYPE","features":[319]},{"name":"OID_WAN_QUALITY_OF_SERVICE","features":[319]},{"name":"OID_WAN_SET_BRIDGE_INFO","features":[319]},{"name":"OID_WAN_SET_COMP_INFO","features":[319]},{"name":"OID_WAN_SET_LINK_INFO","features":[319]},{"name":"OID_WWAN_AUTH_CHALLENGE","features":[319]},{"name":"OID_WWAN_BASE_STATIONS_INFO","features":[319]},{"name":"OID_WWAN_CONNECT","features":[319]},{"name":"OID_WWAN_CREATE_MAC","features":[319]},{"name":"OID_WWAN_DELETE_MAC","features":[319]},{"name":"OID_WWAN_DEVICE_BINDINGS","features":[319]},{"name":"OID_WWAN_DEVICE_CAPS","features":[319]},{"name":"OID_WWAN_DEVICE_CAPS_EX","features":[319]},{"name":"OID_WWAN_DEVICE_RESET","features":[319]},{"name":"OID_WWAN_DEVICE_SERVICE_COMMAND","features":[319]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION","features":[319]},{"name":"OID_WWAN_DEVICE_SERVICE_SESSION_WRITE","features":[319]},{"name":"OID_WWAN_DRIVER_CAPS","features":[319]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICES","features":[319]},{"name":"OID_WWAN_ENUMERATE_DEVICE_SERVICE_COMMANDS","features":[319]},{"name":"OID_WWAN_HOME_PROVIDER","features":[319]},{"name":"OID_WWAN_IMS_VOICE_STATE","features":[319]},{"name":"OID_WWAN_LOCATION_STATE","features":[319]},{"name":"OID_WWAN_LTE_ATTACH_CONFIG","features":[319]},{"name":"OID_WWAN_LTE_ATTACH_STATUS","features":[319]},{"name":"OID_WWAN_MBIM_VERSION","features":[319]},{"name":"OID_WWAN_MODEM_CONFIG_INFO","features":[319]},{"name":"OID_WWAN_MODEM_LOGGING_CONFIG","features":[319]},{"name":"OID_WWAN_MPDP","features":[319]},{"name":"OID_WWAN_NETWORK_BLACKLIST","features":[319]},{"name":"OID_WWAN_NETWORK_IDLE_HINT","features":[319]},{"name":"OID_WWAN_NETWORK_PARAMS","features":[319]},{"name":"OID_WWAN_NITZ","features":[319]},{"name":"OID_WWAN_PACKET_SERVICE","features":[319]},{"name":"OID_WWAN_PCO","features":[319]},{"name":"OID_WWAN_PIN","features":[319]},{"name":"OID_WWAN_PIN_EX","features":[319]},{"name":"OID_WWAN_PIN_EX2","features":[319]},{"name":"OID_WWAN_PIN_LIST","features":[319]},{"name":"OID_WWAN_PREFERRED_MULTICARRIER_PROVIDERS","features":[319]},{"name":"OID_WWAN_PREFERRED_PROVIDERS","features":[319]},{"name":"OID_WWAN_PRESHUTDOWN","features":[319]},{"name":"OID_WWAN_PROVISIONED_CONTEXTS","features":[319]},{"name":"OID_WWAN_PS_MEDIA_CONFIG","features":[319]},{"name":"OID_WWAN_RADIO_STATE","features":[319]},{"name":"OID_WWAN_READY_INFO","features":[319]},{"name":"OID_WWAN_REGISTER_PARAMS","features":[319]},{"name":"OID_WWAN_REGISTER_STATE","features":[319]},{"name":"OID_WWAN_REGISTER_STATE_EX","features":[319]},{"name":"OID_WWAN_SAR_CONFIG","features":[319]},{"name":"OID_WWAN_SAR_TRANSMISSION_STATUS","features":[319]},{"name":"OID_WWAN_SERVICE_ACTIVATION","features":[319]},{"name":"OID_WWAN_SIGNAL_STATE","features":[319]},{"name":"OID_WWAN_SIGNAL_STATE_EX","features":[319]},{"name":"OID_WWAN_SLOT_INFO_STATUS","features":[319]},{"name":"OID_WWAN_SMS_CONFIGURATION","features":[319]},{"name":"OID_WWAN_SMS_DELETE","features":[319]},{"name":"OID_WWAN_SMS_READ","features":[319]},{"name":"OID_WWAN_SMS_SEND","features":[319]},{"name":"OID_WWAN_SMS_STATUS","features":[319]},{"name":"OID_WWAN_SUBSCRIBE_DEVICE_SERVICE_EVENTS","features":[319]},{"name":"OID_WWAN_SYS_CAPS","features":[319]},{"name":"OID_WWAN_SYS_SLOTMAPPINGS","features":[319]},{"name":"OID_WWAN_UE_POLICY","features":[319]},{"name":"OID_WWAN_UICC_ACCESS_BINARY","features":[319]},{"name":"OID_WWAN_UICC_ACCESS_RECORD","features":[319]},{"name":"OID_WWAN_UICC_APDU","features":[319]},{"name":"OID_WWAN_UICC_APP_LIST","features":[319]},{"name":"OID_WWAN_UICC_ATR","features":[319]},{"name":"OID_WWAN_UICC_CLOSE_CHANNEL","features":[319]},{"name":"OID_WWAN_UICC_FILE_STATUS","features":[319]},{"name":"OID_WWAN_UICC_OPEN_CHANNEL","features":[319]},{"name":"OID_WWAN_UICC_RESET","features":[319]},{"name":"OID_WWAN_UICC_TERMINAL_CAPABILITY","features":[319]},{"name":"OID_WWAN_USSD","features":[319]},{"name":"OID_WWAN_VENDOR_SPECIFIC","features":[319]},{"name":"OID_WWAN_VISIBLE_PROVIDERS","features":[319]},{"name":"OID_XBOX_ACC_RESERVED0","features":[319]},{"name":"PMKID_CANDIDATE","features":[319]},{"name":"READABLE_LOCAL_CLOCK","features":[319]},{"name":"RECEIVE_TIME_INDICATION_CAPABLE","features":[319]},{"name":"TIMED_SEND_CAPABLE","features":[319]},{"name":"TIME_STAMP_CAPABLE","features":[319]},{"name":"TRANSPORT_HEADER_OFFSET","features":[319]},{"name":"TUNNEL_TYPE","features":[319]},{"name":"TUNNEL_TYPE_6TO4","features":[319]},{"name":"TUNNEL_TYPE_DIRECT","features":[319]},{"name":"TUNNEL_TYPE_IPHTTPS","features":[319]},{"name":"TUNNEL_TYPE_ISATAP","features":[319]},{"name":"TUNNEL_TYPE_NONE","features":[319]},{"name":"TUNNEL_TYPE_OTHER","features":[319]},{"name":"TUNNEL_TYPE_TEREDO","features":[319]},{"name":"UDP_ENCAP_TYPE","features":[319]},{"name":"UNSPECIFIED_NETWORK_GUID","features":[319]},{"name":"WAN_PROTOCOL_KEEPS_STATS","features":[319]},{"name":"fNDIS_GUID_ALLOW_READ","features":[319]},{"name":"fNDIS_GUID_ALLOW_WRITE","features":[319]},{"name":"fNDIS_GUID_ANSI_STRING","features":[319]},{"name":"fNDIS_GUID_ARRAY","features":[319]},{"name":"fNDIS_GUID_METHOD","features":[319]},{"name":"fNDIS_GUID_NDIS_RESERVED","features":[319]},{"name":"fNDIS_GUID_SUPPORT_COMMON_HEADER","features":[319]},{"name":"fNDIS_GUID_TO_OID","features":[319]},{"name":"fNDIS_GUID_TO_STATUS","features":[319]},{"name":"fNDIS_GUID_UNICODE_STRING","features":[319]}],"452":[{"name":"ACTION_HEADER","features":[447]},{"name":"ADAPTER_STATUS","features":[447]},{"name":"ALL_TRANSPORTS","features":[447]},{"name":"ASYNCH","features":[447]},{"name":"CALL_PENDING","features":[447]},{"name":"DEREGISTERED","features":[447]},{"name":"DUPLICATE","features":[447]},{"name":"DUPLICATE_DEREG","features":[447]},{"name":"FIND_NAME_BUFFER","features":[447]},{"name":"FIND_NAME_HEADER","features":[447]},{"name":"GROUP_NAME","features":[447]},{"name":"HANGUP_COMPLETE","features":[447]},{"name":"HANGUP_PENDING","features":[447]},{"name":"LANA_ENUM","features":[447]},{"name":"LISTEN_OUTSTANDING","features":[447]},{"name":"MAX_LANA","features":[447]},{"name":"MS_NBF","features":[447]},{"name":"NAME_BUFFER","features":[447]},{"name":"NAME_FLAGS_MASK","features":[447]},{"name":"NCB","features":[305,447]},{"name":"NCB","features":[305,447]},{"name":"NCBACTION","features":[447]},{"name":"NCBADDGRNAME","features":[447]},{"name":"NCBADDNAME","features":[447]},{"name":"NCBASTAT","features":[447]},{"name":"NCBCALL","features":[447]},{"name":"NCBCANCEL","features":[447]},{"name":"NCBCHAINSEND","features":[447]},{"name":"NCBCHAINSENDNA","features":[447]},{"name":"NCBDELNAME","features":[447]},{"name":"NCBDGRECV","features":[447]},{"name":"NCBDGRECVBC","features":[447]},{"name":"NCBDGSEND","features":[447]},{"name":"NCBDGSENDBC","features":[447]},{"name":"NCBENUM","features":[447]},{"name":"NCBFINDNAME","features":[447]},{"name":"NCBHANGUP","features":[447]},{"name":"NCBLANSTALERT","features":[447]},{"name":"NCBLISTEN","features":[447]},{"name":"NCBNAMSZ","features":[447]},{"name":"NCBRECV","features":[447]},{"name":"NCBRECVANY","features":[447]},{"name":"NCBRESET","features":[447]},{"name":"NCBSEND","features":[447]},{"name":"NCBSENDNA","features":[447]},{"name":"NCBSSTAT","features":[447]},{"name":"NCBTRACE","features":[447]},{"name":"NCBUNLINK","features":[447]},{"name":"NRC_ACTSES","features":[447]},{"name":"NRC_BADDR","features":[447]},{"name":"NRC_BRIDGE","features":[447]},{"name":"NRC_BUFLEN","features":[447]},{"name":"NRC_CANCEL","features":[447]},{"name":"NRC_CANOCCR","features":[447]},{"name":"NRC_CMDCAN","features":[447]},{"name":"NRC_CMDTMO","features":[447]},{"name":"NRC_DUPENV","features":[447]},{"name":"NRC_DUPNAME","features":[447]},{"name":"NRC_ENVNOTDEF","features":[447]},{"name":"NRC_GOODRET","features":[447]},{"name":"NRC_IFBUSY","features":[447]},{"name":"NRC_ILLCMD","features":[447]},{"name":"NRC_ILLNN","features":[447]},{"name":"NRC_INCOMP","features":[447]},{"name":"NRC_INUSE","features":[447]},{"name":"NRC_INVADDRESS","features":[447]},{"name":"NRC_INVDDID","features":[447]},{"name":"NRC_LOCKFAIL","features":[447]},{"name":"NRC_LOCTFUL","features":[447]},{"name":"NRC_MAXAPPS","features":[447]},{"name":"NRC_NAMCONF","features":[447]},{"name":"NRC_NAMERR","features":[447]},{"name":"NRC_NAMTFUL","features":[447]},{"name":"NRC_NOCALL","features":[447]},{"name":"NRC_NORES","features":[447]},{"name":"NRC_NORESOURCES","features":[447]},{"name":"NRC_NOSAPS","features":[447]},{"name":"NRC_NOWILD","features":[447]},{"name":"NRC_OPENERR","features":[447]},{"name":"NRC_OSRESNOTAV","features":[447]},{"name":"NRC_PENDING","features":[447]},{"name":"NRC_REMTFUL","features":[447]},{"name":"NRC_SABORT","features":[447]},{"name":"NRC_SCLOSED","features":[447]},{"name":"NRC_SNUMOUT","features":[447]},{"name":"NRC_SYSTEM","features":[447]},{"name":"NRC_TOOMANY","features":[447]},{"name":"Netbios","features":[305,447]},{"name":"REGISTERED","features":[447]},{"name":"REGISTERING","features":[447]},{"name":"SESSION_ABORTED","features":[447]},{"name":"SESSION_BUFFER","features":[447]},{"name":"SESSION_ESTABLISHED","features":[447]},{"name":"SESSION_HEADER","features":[447]},{"name":"UNIQUE_NAME","features":[447]}],"453":[{"name":"AA_AUDIT_ALL","features":[448]},{"name":"AA_A_ACL","features":[448]},{"name":"AA_A_CREATE","features":[448]},{"name":"AA_A_DELETE","features":[448]},{"name":"AA_A_OPEN","features":[448]},{"name":"AA_A_OWNER","features":[448]},{"name":"AA_A_WRITE","features":[448]},{"name":"AA_CLOSE","features":[448]},{"name":"AA_F_ACL","features":[448]},{"name":"AA_F_CREATE","features":[448]},{"name":"AA_F_DELETE","features":[448]},{"name":"AA_F_OPEN","features":[448]},{"name":"AA_F_WRITE","features":[448]},{"name":"AA_S_ACL","features":[448]},{"name":"AA_S_CREATE","features":[448]},{"name":"AA_S_DELETE","features":[448]},{"name":"AA_S_OPEN","features":[448]},{"name":"AA_S_WRITE","features":[448]},{"name":"ACCESS_ACCESS_LIST_PARMNUM","features":[448]},{"name":"ACCESS_ATTR_PARMNUM","features":[448]},{"name":"ACCESS_AUDIT","features":[448]},{"name":"ACCESS_COUNT_PARMNUM","features":[448]},{"name":"ACCESS_FAIL_ACL","features":[448]},{"name":"ACCESS_FAIL_DELETE","features":[448]},{"name":"ACCESS_FAIL_MASK","features":[448]},{"name":"ACCESS_FAIL_OPEN","features":[448]},{"name":"ACCESS_FAIL_SHIFT","features":[448]},{"name":"ACCESS_FAIL_WRITE","features":[448]},{"name":"ACCESS_GROUP","features":[448]},{"name":"ACCESS_INFO_0","features":[448]},{"name":"ACCESS_INFO_1","features":[448]},{"name":"ACCESS_INFO_1002","features":[448]},{"name":"ACCESS_LETTERS","features":[448]},{"name":"ACCESS_LIST","features":[448]},{"name":"ACCESS_NONE","features":[448]},{"name":"ACCESS_RESOURCE_NAME_PARMNUM","features":[448]},{"name":"ACCESS_SUCCESS_ACL","features":[448]},{"name":"ACCESS_SUCCESS_DELETE","features":[448]},{"name":"ACCESS_SUCCESS_MASK","features":[448]},{"name":"ACCESS_SUCCESS_OPEN","features":[448]},{"name":"ACCESS_SUCCESS_WRITE","features":[448]},{"name":"ACTION_ADMINUNLOCK","features":[448]},{"name":"ACTION_LOCKOUT","features":[448]},{"name":"ADMIN_OTHER_INFO","features":[448]},{"name":"AE_ACCLIM","features":[448]},{"name":"AE_ACCLIMITEXCD","features":[448]},{"name":"AE_ACCRESTRICT","features":[448]},{"name":"AE_ACLMOD","features":[448]},{"name":"AE_ACLMOD","features":[448]},{"name":"AE_ACLMODFAIL","features":[448]},{"name":"AE_ADD","features":[448]},{"name":"AE_ADMIN","features":[448]},{"name":"AE_ADMINDIS","features":[448]},{"name":"AE_ADMINPRIVREQD","features":[448]},{"name":"AE_ADMIN_CLOSE","features":[448]},{"name":"AE_AUTODIS","features":[448]},{"name":"AE_BADPW","features":[448]},{"name":"AE_CLOSEFILE","features":[448]},{"name":"AE_CLOSEFILE","features":[448]},{"name":"AE_CONNREJ","features":[448]},{"name":"AE_CONNREJ","features":[448]},{"name":"AE_CONNSTART","features":[448]},{"name":"AE_CONNSTART","features":[448]},{"name":"AE_CONNSTOP","features":[448]},{"name":"AE_CONNSTOP","features":[448]},{"name":"AE_DELETE","features":[448]},{"name":"AE_ERROR","features":[448]},{"name":"AE_GENERAL","features":[448]},{"name":"AE_GENERIC","features":[448]},{"name":"AE_GENERIC_TYPE","features":[448]},{"name":"AE_GUEST","features":[448]},{"name":"AE_LIM_DELETED","features":[448]},{"name":"AE_LIM_DISABLED","features":[448]},{"name":"AE_LIM_EXPIRED","features":[448]},{"name":"AE_LIM_INVAL_WKSTA","features":[448]},{"name":"AE_LIM_LOGONHOURS","features":[448]},{"name":"AE_LIM_UNKNOWN","features":[448]},{"name":"AE_LOCKOUT","features":[448]},{"name":"AE_LOCKOUT","features":[448]},{"name":"AE_MOD","features":[448]},{"name":"AE_NETLOGDENIED","features":[448]},{"name":"AE_NETLOGOFF","features":[448]},{"name":"AE_NETLOGOFF","features":[448]},{"name":"AE_NETLOGON","features":[448]},{"name":"AE_NETLOGON","features":[448]},{"name":"AE_NOACCESSPERM","features":[448]},{"name":"AE_NORMAL","features":[448]},{"name":"AE_NORMAL_CLOSE","features":[448]},{"name":"AE_RESACCESS","features":[448]},{"name":"AE_RESACCESS","features":[448]},{"name":"AE_RESACCESS2","features":[448]},{"name":"AE_RESACCESSREJ","features":[448]},{"name":"AE_RESACCESSREJ","features":[448]},{"name":"AE_SERVICESTAT","features":[448]},{"name":"AE_SERVICESTAT","features":[448]},{"name":"AE_SESSDIS","features":[448]},{"name":"AE_SESSLOGOFF","features":[448]},{"name":"AE_SESSLOGOFF","features":[448]},{"name":"AE_SESSLOGON","features":[448]},{"name":"AE_SESSLOGON","features":[448]},{"name":"AE_SESSPWERR","features":[448]},{"name":"AE_SESSPWERR","features":[448]},{"name":"AE_SES_CLOSE","features":[448]},{"name":"AE_SRVCONT","features":[448]},{"name":"AE_SRVPAUSED","features":[448]},{"name":"AE_SRVSTART","features":[448]},{"name":"AE_SRVSTATUS","features":[448]},{"name":"AE_SRVSTATUS","features":[448]},{"name":"AE_SRVSTOP","features":[448]},{"name":"AE_UASMOD","features":[448]},{"name":"AE_UASMOD","features":[448]},{"name":"AE_UAS_GROUP","features":[448]},{"name":"AE_UAS_MODALS","features":[448]},{"name":"AE_UAS_USER","features":[448]},{"name":"AE_UNSHARE","features":[448]},{"name":"AE_USER","features":[448]},{"name":"AE_USERLIMIT","features":[448]},{"name":"AF_OP","features":[448]},{"name":"AF_OP_ACCOUNTS","features":[448]},{"name":"AF_OP_COMM","features":[448]},{"name":"AF_OP_PRINT","features":[448]},{"name":"AF_OP_SERVER","features":[448]},{"name":"ALERTER_MAILSLOT","features":[448]},{"name":"ALERTSZ","features":[448]},{"name":"ALERT_ADMIN_EVENT","features":[448]},{"name":"ALERT_ERRORLOG_EVENT","features":[448]},{"name":"ALERT_MESSAGE_EVENT","features":[448]},{"name":"ALERT_PRINT_EVENT","features":[448]},{"name":"ALERT_USER_EVENT","features":[448]},{"name":"ALIGN_SHIFT","features":[448]},{"name":"ALIGN_SIZE","features":[448]},{"name":"ALLOCATE_RESPONSE","features":[448]},{"name":"AT_ENUM","features":[448]},{"name":"AT_INFO","features":[448]},{"name":"AUDIT_ENTRY","features":[448]},{"name":"BACKUP_MSG_FILENAME","features":[448]},{"name":"BIND_FLAGS1","features":[448]},{"name":"CLTYPE_LEN","features":[448]},{"name":"CNLEN","features":[448]},{"name":"COMPONENT_CHARACTERISTICS","features":[448]},{"name":"CONFIG_INFO_0","features":[448]},{"name":"COULD_NOT_VERIFY_VOLUMES","features":[448]},{"name":"CREATE_BYPASS_CSC","features":[448]},{"name":"CREATE_CRED_RESET","features":[448]},{"name":"CREATE_GLOBAL_MAPPING","features":[448]},{"name":"CREATE_NO_CONNECT","features":[448]},{"name":"CREATE_PERSIST_MAPPING","features":[448]},{"name":"CREATE_REQUIRE_CONNECTION_INTEGRITY","features":[448]},{"name":"CREATE_REQUIRE_CONNECTION_PRIVACY","features":[448]},{"name":"CREATE_WRITE_THROUGH_SEMANTICS","features":[448]},{"name":"CRYPT_KEY_LEN","features":[448]},{"name":"CRYPT_TXT_LEN","features":[448]},{"name":"DEFAULT_PAGES","features":[448]},{"name":"DEF_MAX_BADPW","features":[448]},{"name":"DEF_MAX_PWHIST","features":[448]},{"name":"DEF_MIN_PWLEN","features":[448]},{"name":"DEF_PWUNIQUENESS","features":[448]},{"name":"DEVLEN","features":[448]},{"name":"DFS_CONNECTION_FAILURE","features":[448]},{"name":"DFS_ERROR_ACTIVEDIRECTORY_OFFLINE","features":[448]},{"name":"DFS_ERROR_CLUSTERINFO_FAILED","features":[448]},{"name":"DFS_ERROR_COMPUTERINFO_FAILED","features":[448]},{"name":"DFS_ERROR_CREATEEVENT_FAILED","features":[448]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_FAILURE","features":[448]},{"name":"DFS_ERROR_CREATE_REPARSEPOINT_SUCCESS","features":[448]},{"name":"DFS_ERROR_CROSS_FOREST_TRUST_INFO_FAILED","features":[448]},{"name":"DFS_ERROR_DCINFO_FAILED","features":[448]},{"name":"DFS_ERROR_DSCONNECT_FAILED","features":[448]},{"name":"DFS_ERROR_DUPLICATE_LINK","features":[448]},{"name":"DFS_ERROR_HANDLENAMESPACE_FAILED","features":[448]},{"name":"DFS_ERROR_LINKS_OVERLAP","features":[448]},{"name":"DFS_ERROR_LINK_OVERLAP","features":[448]},{"name":"DFS_ERROR_MUTLIPLE_ROOTS_NOT_SUPPORTED","features":[448]},{"name":"DFS_ERROR_NO_DFS_DATA","features":[448]},{"name":"DFS_ERROR_ON_ROOT","features":[448]},{"name":"DFS_ERROR_OVERLAPPING_DIRECTORIES","features":[448]},{"name":"DFS_ERROR_PREFIXTABLE_FAILED","features":[448]},{"name":"DFS_ERROR_REFLECTIONENGINE_FAILED","features":[448]},{"name":"DFS_ERROR_REGISTERSTORE_FAILED","features":[448]},{"name":"DFS_ERROR_REMOVE_LINK_FAILED","features":[448]},{"name":"DFS_ERROR_RESYNCHRONIZE_FAILED","features":[448]},{"name":"DFS_ERROR_ROOTSYNCINIT_FAILED","features":[448]},{"name":"DFS_ERROR_SECURITYINIT_FAILED","features":[448]},{"name":"DFS_ERROR_SITECACHEINIT_FAILED","features":[448]},{"name":"DFS_ERROR_SITESUPPOR_FAILED","features":[448]},{"name":"DFS_ERROR_TARGET_LIST_INCORRECT","features":[448]},{"name":"DFS_ERROR_THREADINIT_FAILED","features":[448]},{"name":"DFS_ERROR_TOO_MANY_ERRORS","features":[448]},{"name":"DFS_ERROR_TRUSTED_DOMAIN_INFO_FAILED","features":[448]},{"name":"DFS_ERROR_UNSUPPORTED_FILESYSTEM","features":[448]},{"name":"DFS_ERROR_WINSOCKINIT_FAILED","features":[448]},{"name":"DFS_INFO_ACTIVEDIRECTORY_ONLINE","features":[448]},{"name":"DFS_INFO_CROSS_FOREST_TRUST_INFO_SUCCESS","features":[448]},{"name":"DFS_INFO_DOMAIN_REFERRAL_MIN_OVERFLOW","features":[448]},{"name":"DFS_INFO_DS_RECONNECTED","features":[448]},{"name":"DFS_INFO_FINISH_BUILDING_NAMESPACE","features":[448]},{"name":"DFS_INFO_FINISH_INIT","features":[448]},{"name":"DFS_INFO_RECONNECT_DATA","features":[448]},{"name":"DFS_INFO_TRUSTED_DOMAIN_INFO_SUCCESS","features":[448]},{"name":"DFS_INIT_SUCCESS","features":[448]},{"name":"DFS_MAX_DNR_ATTEMPTS","features":[448]},{"name":"DFS_OPEN_FAILURE","features":[448]},{"name":"DFS_REFERRAL_FAILURE","features":[448]},{"name":"DFS_REFERRAL_REQUEST","features":[448]},{"name":"DFS_REFERRAL_SUCCESS","features":[448]},{"name":"DFS_ROOT_SHARE_ACQUIRE_FAILED","features":[448]},{"name":"DFS_ROOT_SHARE_ACQUIRE_SUCCESS","features":[448]},{"name":"DFS_SPECIAL_REFERRAL_FAILURE","features":[448]},{"name":"DFS_WARN_DOMAIN_REFERRAL_OVERFLOW","features":[448]},{"name":"DFS_WARN_INCOMPLETE_MOVE","features":[448]},{"name":"DFS_WARN_METADATA_LINK_INFO_INVALID","features":[448]},{"name":"DFS_WARN_METADATA_LINK_TYPE_INCORRECT","features":[448]},{"name":"DNLEN","features":[448]},{"name":"DPP_ADVANCED","features":[448]},{"name":"DSREG_DEVICE_JOIN","features":[448]},{"name":"DSREG_JOIN_INFO","features":[305,448,389]},{"name":"DSREG_JOIN_TYPE","features":[448]},{"name":"DSREG_UNKNOWN_JOIN","features":[448]},{"name":"DSREG_USER_INFO","features":[448]},{"name":"DSREG_WORKPLACE_JOIN","features":[448]},{"name":"EBP_ABOVE","features":[448]},{"name":"EBP_BELOW","features":[448]},{"name":"ENCRYPTED_PWLEN","features":[448]},{"name":"ENUM_BINDING_PATHS_FLAGS","features":[448]},{"name":"ERRLOG2_BASE","features":[448]},{"name":"ERRLOG_BASE","features":[448]},{"name":"ERRLOG_OTHER_INFO","features":[448]},{"name":"ERROR_LOG","features":[448]},{"name":"EVENT_BAD_ACCOUNT_NAME","features":[448]},{"name":"EVENT_BAD_SERVICE_STATE","features":[448]},{"name":"EVENT_BOOT_SYSTEM_DRIVERS_FAILED","features":[448]},{"name":"EVENT_BOWSER_CANT_READ_REGISTRY","features":[448]},{"name":"EVENT_BOWSER_ELECTION_RECEIVED","features":[448]},{"name":"EVENT_BOWSER_ELECTION_SENT_FIND_MASTER_FAILED","features":[448]},{"name":"EVENT_BOWSER_ELECTION_SENT_GETBLIST_FAILED","features":[448]},{"name":"EVENT_BOWSER_GETBROWSERLIST_THRESHOLD_EXCEEDED","features":[448]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM","features":[448]},{"name":"EVENT_BOWSER_ILLEGAL_DATAGRAM_THRESHOLD","features":[448]},{"name":"EVENT_BOWSER_MAILSLOT_DATAGRAM_THRESHOLD_EXCEEDED","features":[448]},{"name":"EVENT_BOWSER_NAME_CONVERSION_FAILED","features":[448]},{"name":"EVENT_BOWSER_NON_MASTER_MASTER_ANNOUNCE","features":[448]},{"name":"EVENT_BOWSER_NON_PDC_WON_ELECTION","features":[448]},{"name":"EVENT_BOWSER_OLD_BACKUP_FOUND","features":[448]},{"name":"EVENT_BOWSER_OTHER_MASTER_ON_NET","features":[448]},{"name":"EVENT_BOWSER_PDC_LOST_ELECTION","features":[448]},{"name":"EVENT_BOWSER_PROMOTED_WHILE_ALREADY_MASTER","features":[448]},{"name":"EVENT_BRIDGE_ADAPTER_BIND_FAILED","features":[448]},{"name":"EVENT_BRIDGE_ADAPTER_FILTER_FAILED","features":[448]},{"name":"EVENT_BRIDGE_ADAPTER_LINK_SPEED_QUERY_FAILED","features":[448]},{"name":"EVENT_BRIDGE_ADAPTER_MAC_ADDR_QUERY_FAILED","features":[448]},{"name":"EVENT_BRIDGE_ADAPTER_NAME_QUERY_FAILED","features":[448]},{"name":"EVENT_BRIDGE_BUFFER_POOL_CREATION_FAILED","features":[448]},{"name":"EVENT_BRIDGE_DEVICE_CREATION_FAILED","features":[448]},{"name":"EVENT_BRIDGE_ETHERNET_NOT_OFFERED","features":[448]},{"name":"EVENT_BRIDGE_INIT_MALLOC_FAILED","features":[448]},{"name":"EVENT_BRIDGE_MINIPORT_INIT_FAILED","features":[448]},{"name":"EVENT_BRIDGE_MINIPORT_REGISTER_FAILED","features":[448]},{"name":"EVENT_BRIDGE_MINIPROT_DEVNAME_MISSING","features":[448]},{"name":"EVENT_BRIDGE_NO_BRIDGE_MAC_ADDR","features":[448]},{"name":"EVENT_BRIDGE_PACKET_POOL_CREATION_FAILED","features":[448]},{"name":"EVENT_BRIDGE_PROTOCOL_REGISTER_FAILED","features":[448]},{"name":"EVENT_BRIDGE_THREAD_CREATION_FAILED","features":[448]},{"name":"EVENT_BRIDGE_THREAD_REF_FAILED","features":[448]},{"name":"EVENT_BROWSER_BACKUP_STOPPED","features":[448]},{"name":"EVENT_BROWSER_DEPENDANT_SERVICE_FAILED","features":[448]},{"name":"EVENT_BROWSER_DOMAIN_LIST_FAILED","features":[448]},{"name":"EVENT_BROWSER_DOMAIN_LIST_RETRIEVED","features":[448]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STARTED","features":[448]},{"name":"EVENT_BROWSER_ELECTION_SENT_LANMAN_NT_STOPPED","features":[448]},{"name":"EVENT_BROWSER_ELECTION_SENT_ROLE_CHANGED","features":[448]},{"name":"EVENT_BROWSER_GETBLIST_RECEIVED_NOT_MASTER","features":[448]},{"name":"EVENT_BROWSER_ILLEGAL_CONFIG","features":[448]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED","features":[448]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_NO_MASTER","features":[448]},{"name":"EVENT_BROWSER_MASTER_PROMOTION_FAILED_STOPPING","features":[448]},{"name":"EVENT_BROWSER_NOT_STARTED_IPX_CONFIG_MISMATCH","features":[448]},{"name":"EVENT_BROWSER_OTHERDOMAIN_ADD_FAILED","features":[448]},{"name":"EVENT_BROWSER_ROLE_CHANGE_FAILED","features":[448]},{"name":"EVENT_BROWSER_SERVER_LIST_FAILED","features":[448]},{"name":"EVENT_BROWSER_SERVER_LIST_RETRIEVED","features":[448]},{"name":"EVENT_BROWSER_STATUS_BITS_UPDATE_FAILED","features":[448]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED","features":[448]},{"name":"EVENT_CALL_TO_FUNCTION_FAILED_II","features":[448]},{"name":"EVENT_CIRCULAR_DEPENDENCY_AUTO","features":[448]},{"name":"EVENT_CIRCULAR_DEPENDENCY_DEMAND","features":[448]},{"name":"EVENT_COMMAND_NOT_INTERACTIVE","features":[448]},{"name":"EVENT_COMMAND_START_FAILED","features":[448]},{"name":"EVENT_CONNECTION_TIMEOUT","features":[448]},{"name":"EVENT_ComputerNameChange","features":[448]},{"name":"EVENT_DAV_REDIR_DELAYED_WRITE_FAILED","features":[448]},{"name":"EVENT_DCOM_ASSERTION_FAILURE","features":[448]},{"name":"EVENT_DCOM_COMPLUS_DISABLED","features":[448]},{"name":"EVENT_DCOM_INVALID_ENDPOINT_DATA","features":[448]},{"name":"EVENT_DEPEND_ON_LATER_GROUP","features":[448]},{"name":"EVENT_DEPEND_ON_LATER_SERVICE","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT","features":[448]},{"name":"EVENT_DNSAPI_DEREGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_NOTSUPP","features":[448]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_OTHER","features":[448]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_REFUSED","features":[448]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SECURITY","features":[448]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_SERVERFAIL","features":[448]},{"name":"EVENT_DNSAPI_PTR_DEREGISTRATION_FAILED_TIMEOUT","features":[448]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_NOTSUPP","features":[448]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_OTHER","features":[448]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_REFUSED","features":[448]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SECURITY","features":[448]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_SERVERFAIL","features":[448]},{"name":"EVENT_DNSAPI_PTR_REGISTRATION_FAILED_TIMEOUT","features":[448]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER","features":[448]},{"name":"EVENT_DNSAPI_REGISTERED_ADAPTER_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_REGISTERED_PTR","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_NOTSUPP_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_OTHER_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_REFUSED_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SECURITY_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_SERVERFAIL_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT","features":[448]},{"name":"EVENT_DNSAPI_REGISTRATION_FAILED_TIMEOUT_PRIMARY_DN","features":[448]},{"name":"EVENT_DNSDomainNameChange","features":[448]},{"name":"EVENT_DNS_CACHE_NETWORK_PERF_WARNING","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_LOW_MEMORY","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_CONTROL","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DLL","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_DONE_EVENT","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_ENTRY","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_RPC","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_SHUTDOWN_NOTIFY","features":[448]},{"name":"EVENT_DNS_CACHE_START_FAILURE_NO_UPDATE","features":[448]},{"name":"EVENT_DNS_CACHE_UNABLE_TO_REACH_SERVER_WARNING","features":[448]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_SIZE_ZERO","features":[448]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_KEYNAME_TOO_LONG","features":[448]},{"name":"EVENT_EQOS_ERROR_MACHINE_POLICY_REFERESH","features":[448]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_ROOT_KEY","features":[448]},{"name":"EVENT_EQOS_ERROR_OPENING_MACHINE_POLICY_SUBKEY","features":[448]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_ROOT_KEY","features":[448]},{"name":"EVENT_EQOS_ERROR_OPENING_USER_POLICY_SUBKEY","features":[448]},{"name":"EVENT_EQOS_ERROR_PROCESSING_MACHINE_POLICY_FIELD","features":[448]},{"name":"EVENT_EQOS_ERROR_PROCESSING_USER_POLICY_FIELD","features":[448]},{"name":"EVENT_EQOS_ERROR_SETTING_APP_MARKING","features":[448]},{"name":"EVENT_EQOS_ERROR_SETTING_TCP_AUTOTUNING","features":[448]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_SIZE_ZERO","features":[448]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_KEYNAME_TOO_LONG","features":[448]},{"name":"EVENT_EQOS_ERROR_USER_POLICY_REFERESH","features":[448]},{"name":"EVENT_EQOS_INFO_APP_MARKING_ALLOWED","features":[448]},{"name":"EVENT_EQOS_INFO_APP_MARKING_IGNORED","features":[448]},{"name":"EVENT_EQOS_INFO_APP_MARKING_NOT_CONFIGURED","features":[448]},{"name":"EVENT_EQOS_INFO_LOCAL_SETTING_DONT_USE_NLA","features":[448]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_NO_CHANGE","features":[448]},{"name":"EVENT_EQOS_INFO_MACHINE_POLICY_REFRESH_WITH_CHANGE","features":[448]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_HIGHLY_RESTRICTED","features":[448]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NORMAL","features":[448]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_NOT_CONFIGURED","features":[448]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_OFF","features":[448]},{"name":"EVENT_EQOS_INFO_TCP_AUTOTUNING_RESTRICTED","features":[448]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_NO_CHANGE","features":[448]},{"name":"EVENT_EQOS_INFO_USER_POLICY_REFRESH_WITH_CHANGE","features":[448]},{"name":"EVENT_EQOS_URL_QOS_APPLICATION_CONFLICT","features":[448]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_CONFLICT","features":[448]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_NO_FULLPATH_APPNAME","features":[448]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_PROFILE_NOT_SPECIFIED","features":[448]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_QUOTA_EXCEEDED","features":[448]},{"name":"EVENT_EQOS_WARNING_MACHINE_POLICY_VERSION","features":[448]},{"name":"EVENT_EQOS_WARNING_TEST_1","features":[448]},{"name":"EVENT_EQOS_WARNING_TEST_2","features":[448]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_CONFLICT","features":[448]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_NO_FULLPATH_APPNAME","features":[448]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_PROFILE_NOT_SPECIFIED","features":[448]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_QUOTA_EXCEEDED","features":[448]},{"name":"EVENT_EQOS_WARNING_USER_POLICY_VERSION","features":[448]},{"name":"EVENT_EventLogProductInfo","features":[448]},{"name":"EVENT_EventlogAbnormalShutdown","features":[448]},{"name":"EVENT_EventlogStarted","features":[448]},{"name":"EVENT_EventlogStopped","features":[448]},{"name":"EVENT_EventlogUptime","features":[448]},{"name":"EVENT_FIRST_LOGON_FAILED","features":[448]},{"name":"EVENT_FIRST_LOGON_FAILED_II","features":[448]},{"name":"EVENT_FRS_ACCESS_CHECKS_DISABLED","features":[448]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_UNKNOWN","features":[448]},{"name":"EVENT_FRS_ACCESS_CHECKS_FAILED_USER","features":[448]},{"name":"EVENT_FRS_ASSERT","features":[448]},{"name":"EVENT_FRS_BAD_REG_DATA","features":[448]},{"name":"EVENT_FRS_CANNOT_COMMUNICATE","features":[448]},{"name":"EVENT_FRS_CANNOT_CREATE_UUID","features":[448]},{"name":"EVENT_FRS_CANNOT_START_BACKUP_RESTORE_IN_PROGRESS","features":[448]},{"name":"EVENT_FRS_CANT_OPEN_PREINSTALL","features":[448]},{"name":"EVENT_FRS_CANT_OPEN_STAGE","features":[448]},{"name":"EVENT_FRS_DATABASE_SPACE","features":[448]},{"name":"EVENT_FRS_DISK_WRITE_CACHE_ENABLED","features":[448]},{"name":"EVENT_FRS_DS_POLL_ERROR_SUMMARY","features":[448]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION","features":[448]},{"name":"EVENT_FRS_DUPLICATE_IN_CXTION_SYSVOL","features":[448]},{"name":"EVENT_FRS_ERROR","features":[448]},{"name":"EVENT_FRS_ERROR_REPLICA_SET_DELETED","features":[448]},{"name":"EVENT_FRS_HUGE_FILE","features":[448]},{"name":"EVENT_FRS_IN_ERROR_STATE","features":[448]},{"name":"EVENT_FRS_JET_1414","features":[448]},{"name":"EVENT_FRS_JOIN_FAIL_TIME_SKEW","features":[448]},{"name":"EVENT_FRS_LONG_JOIN","features":[448]},{"name":"EVENT_FRS_LONG_JOIN_DONE","features":[448]},{"name":"EVENT_FRS_MOVED_PREEXISTING","features":[448]},{"name":"EVENT_FRS_NO_DNS_ATTRIBUTE","features":[448]},{"name":"EVENT_FRS_NO_SID","features":[448]},{"name":"EVENT_FRS_OVERLAPS_LOGGING","features":[448]},{"name":"EVENT_FRS_OVERLAPS_OTHER_STAGE","features":[448]},{"name":"EVENT_FRS_OVERLAPS_ROOT","features":[448]},{"name":"EVENT_FRS_OVERLAPS_STAGE","features":[448]},{"name":"EVENT_FRS_OVERLAPS_WORKING","features":[448]},{"name":"EVENT_FRS_PREPARE_ROOT_FAILED","features":[448]},{"name":"EVENT_FRS_REPLICA_IN_JRNL_WRAP_ERROR","features":[448]},{"name":"EVENT_FRS_REPLICA_NO_ROOT_CHANGE","features":[448]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_FAIL","features":[448]},{"name":"EVENT_FRS_REPLICA_SET_CREATE_OK","features":[448]},{"name":"EVENT_FRS_REPLICA_SET_CXTIONS","features":[448]},{"name":"EVENT_FRS_RMTCO_TIME_SKEW","features":[448]},{"name":"EVENT_FRS_ROOT_HAS_MOVED","features":[448]},{"name":"EVENT_FRS_ROOT_NOT_VALID","features":[448]},{"name":"EVENT_FRS_STAGE_NOT_VALID","features":[448]},{"name":"EVENT_FRS_STAGING_AREA_FULL","features":[448]},{"name":"EVENT_FRS_STARTING","features":[448]},{"name":"EVENT_FRS_STOPPED","features":[448]},{"name":"EVENT_FRS_STOPPED_ASSERT","features":[448]},{"name":"EVENT_FRS_STOPPED_FORCE","features":[448]},{"name":"EVENT_FRS_STOPPING","features":[448]},{"name":"EVENT_FRS_SYSVOL_NOT_READY","features":[448]},{"name":"EVENT_FRS_SYSVOL_NOT_READY_PRIMARY","features":[448]},{"name":"EVENT_FRS_SYSVOL_READY","features":[448]},{"name":"EVENT_FRS_VOLUME_NOT_SUPPORTED","features":[448]},{"name":"EVENT_INVALID_DRIVER_DEPENDENCY","features":[448]},{"name":"EVENT_IPX_CREATE_DEVICE","features":[448]},{"name":"EVENT_IPX_ILLEGAL_CONFIG","features":[448]},{"name":"EVENT_IPX_INTERNAL_NET_INVALID","features":[448]},{"name":"EVENT_IPX_NEW_DEFAULT_TYPE","features":[448]},{"name":"EVENT_IPX_NO_ADAPTERS","features":[448]},{"name":"EVENT_IPX_NO_FRAME_TYPES","features":[448]},{"name":"EVENT_IPX_SAP_ANNOUNCE","features":[448]},{"name":"EVENT_NBT_BAD_BACKUP_WINS_ADDR","features":[448]},{"name":"EVENT_NBT_BAD_PRIMARY_WINS_ADDR","features":[448]},{"name":"EVENT_NBT_CREATE_ADDRESS","features":[448]},{"name":"EVENT_NBT_CREATE_CONNECTION","features":[448]},{"name":"EVENT_NBT_CREATE_DEVICE","features":[448]},{"name":"EVENT_NBT_CREATE_DRIVER","features":[448]},{"name":"EVENT_NBT_DUPLICATE_NAME","features":[448]},{"name":"EVENT_NBT_DUPLICATE_NAME_ERROR","features":[448]},{"name":"EVENT_NBT_NAME_RELEASE","features":[448]},{"name":"EVENT_NBT_NAME_SERVER_ADDRS","features":[448]},{"name":"EVENT_NBT_NON_OS_INIT","features":[448]},{"name":"EVENT_NBT_NO_BACKUP_WINS","features":[448]},{"name":"EVENT_NBT_NO_DEVICES","features":[448]},{"name":"EVENT_NBT_NO_RESOURCES","features":[448]},{"name":"EVENT_NBT_NO_WINS","features":[448]},{"name":"EVENT_NBT_OPEN_REG_LINKAGE","features":[448]},{"name":"EVENT_NBT_OPEN_REG_NAMESERVER","features":[448]},{"name":"EVENT_NBT_OPEN_REG_PARAMS","features":[448]},{"name":"EVENT_NBT_READ_BIND","features":[448]},{"name":"EVENT_NBT_READ_EXPORT","features":[448]},{"name":"EVENT_NBT_TIMERS","features":[448]},{"name":"EVENT_NDIS_ADAPTER_CHECK_ERROR","features":[448]},{"name":"EVENT_NDIS_ADAPTER_DISABLED","features":[448]},{"name":"EVENT_NDIS_ADAPTER_NOT_FOUND","features":[448]},{"name":"EVENT_NDIS_BAD_IO_BASE_ADDRESS","features":[448]},{"name":"EVENT_NDIS_BAD_VERSION","features":[448]},{"name":"EVENT_NDIS_CABLE_DISCONNECTED_ERROR","features":[448]},{"name":"EVENT_NDIS_DMA_CONFLICT","features":[448]},{"name":"EVENT_NDIS_DRIVER_FAILURE","features":[448]},{"name":"EVENT_NDIS_HARDWARE_FAILURE","features":[448]},{"name":"EVENT_NDIS_INTERRUPT_CONFLICT","features":[448]},{"name":"EVENT_NDIS_INTERRUPT_CONNECT","features":[448]},{"name":"EVENT_NDIS_INVALID_DOWNLOAD_FILE_ERROR","features":[448]},{"name":"EVENT_NDIS_INVALID_VALUE_FROM_ADAPTER","features":[448]},{"name":"EVENT_NDIS_IO_PORT_CONFLICT","features":[448]},{"name":"EVENT_NDIS_LOBE_FAILUE_ERROR","features":[448]},{"name":"EVENT_NDIS_MAXFRAMESIZE_ERROR","features":[448]},{"name":"EVENT_NDIS_MAXINTERNALBUFS_ERROR","features":[448]},{"name":"EVENT_NDIS_MAXMULTICAST_ERROR","features":[448]},{"name":"EVENT_NDIS_MAXRECEIVES_ERROR","features":[448]},{"name":"EVENT_NDIS_MAXTRANSMITS_ERROR","features":[448]},{"name":"EVENT_NDIS_MEMORY_CONFLICT","features":[448]},{"name":"EVENT_NDIS_MISSING_CONFIGURATION_PARAMETER","features":[448]},{"name":"EVENT_NDIS_NETWORK_ADDRESS","features":[448]},{"name":"EVENT_NDIS_OUT_OF_RESOURCE","features":[448]},{"name":"EVENT_NDIS_PORT_OR_DMA_CONFLICT","features":[448]},{"name":"EVENT_NDIS_PRODUCTID_ERROR","features":[448]},{"name":"EVENT_NDIS_RECEIVE_SPACE_SMALL","features":[448]},{"name":"EVENT_NDIS_REMOVE_RECEIVED_ERROR","features":[448]},{"name":"EVENT_NDIS_RESET_FAILURE_CORRECTION","features":[448]},{"name":"EVENT_NDIS_RESET_FAILURE_ERROR","features":[448]},{"name":"EVENT_NDIS_RESOURCE_CONFLICT","features":[448]},{"name":"EVENT_NDIS_SIGNAL_LOSS_ERROR","features":[448]},{"name":"EVENT_NDIS_TIMEOUT","features":[448]},{"name":"EVENT_NDIS_TOKEN_RING_CORRECTION","features":[448]},{"name":"EVENT_NDIS_UNSUPPORTED_CONFIGURATION","features":[448]},{"name":"EVENT_PS_ADMISSIONCONTROL_OVERFLOW","features":[448]},{"name":"EVENT_PS_BAD_BESTEFFORT_LIMIT","features":[448]},{"name":"EVENT_PS_BINDING_FAILED","features":[448]},{"name":"EVENT_PS_GPC_REGISTER_FAILED","features":[448]},{"name":"EVENT_PS_INIT_DEVICE_FAILED","features":[448]},{"name":"EVENT_PS_MISSING_ADAPTER_REGISTRY_DATA","features":[448]},{"name":"EVENT_PS_NETWORK_ADDRESS_FAIL","features":[448]},{"name":"EVENT_PS_NO_RESOURCES_FOR_INIT","features":[448]},{"name":"EVENT_PS_QUERY_OID_GEN_LINK_SPEED","features":[448]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_FRAME_SIZE","features":[448]},{"name":"EVENT_PS_QUERY_OID_GEN_MAXIMUM_TOTAL_SIZE","features":[448]},{"name":"EVENT_PS_REGISTER_ADDRESS_FAMILY_FAILED","features":[448]},{"name":"EVENT_PS_REGISTER_MINIPORT_FAILED","features":[448]},{"name":"EVENT_PS_REGISTER_PROTOCOL_FAILED","features":[448]},{"name":"EVENT_PS_RESOURCE_POOL","features":[448]},{"name":"EVENT_PS_WAN_LIMITED_BESTEFFORT","features":[448]},{"name":"EVENT_PS_WMI_INSTANCE_NAME_FAILED","features":[448]},{"name":"EVENT_RDR_AT_THREAD_MAX","features":[448]},{"name":"EVENT_RDR_CANT_BIND_TRANSPORT","features":[448]},{"name":"EVENT_RDR_CANT_BUILD_SMB_HEADER","features":[448]},{"name":"EVENT_RDR_CANT_CREATE_DEVICE","features":[448]},{"name":"EVENT_RDR_CANT_CREATE_THREAD","features":[448]},{"name":"EVENT_RDR_CANT_GET_SECURITY_CONTEXT","features":[448]},{"name":"EVENT_RDR_CANT_READ_REGISTRY","features":[448]},{"name":"EVENT_RDR_CANT_REGISTER_ADDRESS","features":[448]},{"name":"EVENT_RDR_CANT_SET_THREAD","features":[448]},{"name":"EVENT_RDR_CLOSE_BEHIND","features":[448]},{"name":"EVENT_RDR_CONNECTION","features":[448]},{"name":"EVENT_RDR_CONNECTION_REFERENCE","features":[448]},{"name":"EVENT_RDR_CONTEXTS","features":[448]},{"name":"EVENT_RDR_DELAYED_SET_ATTRIBUTES_FAILED","features":[448]},{"name":"EVENT_RDR_DELETEONCLOSE_FAILED","features":[448]},{"name":"EVENT_RDR_DISPOSITION","features":[448]},{"name":"EVENT_RDR_ENCRYPT","features":[448]},{"name":"EVENT_RDR_FAILED_UNLOCK","features":[448]},{"name":"EVENT_RDR_INVALID_LOCK_REPLY","features":[448]},{"name":"EVENT_RDR_INVALID_OPLOCK","features":[448]},{"name":"EVENT_RDR_INVALID_REPLY","features":[448]},{"name":"EVENT_RDR_INVALID_SMB","features":[448]},{"name":"EVENT_RDR_MAXCMDS","features":[448]},{"name":"EVENT_RDR_OPLOCK_SMB","features":[448]},{"name":"EVENT_RDR_PRIMARY_TRANSPORT_CONNECT_FAILED","features":[448]},{"name":"EVENT_RDR_RESOURCE_SHORTAGE","features":[448]},{"name":"EVENT_RDR_SECURITY_SIGNATURE_MISMATCH","features":[448]},{"name":"EVENT_RDR_SERVER_REFERENCE","features":[448]},{"name":"EVENT_RDR_SMB_REFERENCE","features":[448]},{"name":"EVENT_RDR_TIMEOUT","features":[448]},{"name":"EVENT_RDR_TIMEZONE_BIAS_TOO_LARGE","features":[448]},{"name":"EVENT_RDR_UNEXPECTED_ERROR","features":[448]},{"name":"EVENT_RDR_WRITE_BEHIND_FLUSH_FAILED","features":[448]},{"name":"EVENT_READFILE_TIMEOUT","features":[448]},{"name":"EVENT_REVERTED_TO_LASTKNOWNGOOD","features":[448]},{"name":"EVENT_RPCSS_ACTIVATION_ERROR","features":[448]},{"name":"EVENT_RPCSS_CREATEDEBUGGERPROCESS_FAILURE","features":[448]},{"name":"EVENT_RPCSS_CREATEPROCESS_FAILURE","features":[448]},{"name":"EVENT_RPCSS_DEFAULT_LAUNCH_ACCESS_DENIED","features":[448]},{"name":"EVENT_RPCSS_LAUNCH_ACCESS_DENIED","features":[448]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR","features":[448]},{"name":"EVENT_RPCSS_REMOTE_SIDE_ERROR_WITH_FILE","features":[448]},{"name":"EVENT_RPCSS_REMOTE_SIDE_UNAVAILABLE","features":[448]},{"name":"EVENT_RPCSS_RUNAS_CANT_LOGIN","features":[448]},{"name":"EVENT_RPCSS_RUNAS_CREATEPROCESS_FAILURE","features":[448]},{"name":"EVENT_RPCSS_SERVER_NOT_RESPONDING","features":[448]},{"name":"EVENT_RPCSS_SERVER_START_TIMEOUT","features":[448]},{"name":"EVENT_RPCSS_START_SERVICE_FAILURE","features":[448]},{"name":"EVENT_RPCSS_STOP_SERVICE_FAILURE","features":[448]},{"name":"EVENT_RUNNING_LASTKNOWNGOOD","features":[448]},{"name":"EVENT_SCOPE_LABEL_TOO_LONG","features":[448]},{"name":"EVENT_SCOPE_TOO_LONG","features":[448]},{"name":"EVENT_SECOND_LOGON_FAILED","features":[448]},{"name":"EVENT_SERVICE_CONFIG_BACKOUT_FAILED","features":[448]},{"name":"EVENT_SERVICE_CONTROL_SUCCESS","features":[448]},{"name":"EVENT_SERVICE_CRASH","features":[448]},{"name":"EVENT_SERVICE_CRASH_NO_ACTION","features":[448]},{"name":"EVENT_SERVICE_DIFFERENT_PID_CONNECTED","features":[448]},{"name":"EVENT_SERVICE_EXIT_FAILED","features":[448]},{"name":"EVENT_SERVICE_EXIT_FAILED_SPECIFIC","features":[448]},{"name":"EVENT_SERVICE_LOGON_TYPE_NOT_GRANTED","features":[448]},{"name":"EVENT_SERVICE_NOT_INTERACTIVE","features":[448]},{"name":"EVENT_SERVICE_RECOVERY_FAILED","features":[448]},{"name":"EVENT_SERVICE_SCESRV_FAILED","features":[448]},{"name":"EVENT_SERVICE_SHUTDOWN_FAILED","features":[448]},{"name":"EVENT_SERVICE_START_AT_BOOT_FAILED","features":[448]},{"name":"EVENT_SERVICE_START_FAILED","features":[448]},{"name":"EVENT_SERVICE_START_FAILED_GROUP","features":[448]},{"name":"EVENT_SERVICE_START_FAILED_II","features":[448]},{"name":"EVENT_SERVICE_START_FAILED_NONE","features":[448]},{"name":"EVENT_SERVICE_START_HUNG","features":[448]},{"name":"EVENT_SERVICE_START_TYPE_CHANGED","features":[448]},{"name":"EVENT_SERVICE_STATUS_SUCCESS","features":[448]},{"name":"EVENT_SERVICE_STOP_SUCCESS_WITH_REASON","features":[448]},{"name":"EVENT_SEVERE_SERVICE_FAILED","features":[448]},{"name":"EVENT_SRV_CANT_BIND_DUP_NAME","features":[448]},{"name":"EVENT_SRV_CANT_BIND_TO_TRANSPORT","features":[448]},{"name":"EVENT_SRV_CANT_CHANGE_DOMAIN_NAME","features":[448]},{"name":"EVENT_SRV_CANT_CREATE_DEVICE","features":[448]},{"name":"EVENT_SRV_CANT_CREATE_PROCESS","features":[448]},{"name":"EVENT_SRV_CANT_CREATE_THREAD","features":[448]},{"name":"EVENT_SRV_CANT_GROW_TABLE","features":[448]},{"name":"EVENT_SRV_CANT_LOAD_DRIVER","features":[448]},{"name":"EVENT_SRV_CANT_MAP_ERROR","features":[448]},{"name":"EVENT_SRV_CANT_OPEN_NPFS","features":[448]},{"name":"EVENT_SRV_CANT_RECREATE_SHARE","features":[448]},{"name":"EVENT_SRV_CANT_START_SCAVENGER","features":[448]},{"name":"EVENT_SRV_CANT_UNLOAD_DRIVER","features":[448]},{"name":"EVENT_SRV_DISK_FULL","features":[448]},{"name":"EVENT_SRV_DOS_ATTACK_DETECTED","features":[448]},{"name":"EVENT_SRV_INVALID_REGISTRY_VALUE","features":[448]},{"name":"EVENT_SRV_INVALID_REQUEST","features":[448]},{"name":"EVENT_SRV_INVALID_SD","features":[448]},{"name":"EVENT_SRV_IRP_STACK_SIZE","features":[448]},{"name":"EVENT_SRV_KEY_NOT_CREATED","features":[448]},{"name":"EVENT_SRV_KEY_NOT_FOUND","features":[448]},{"name":"EVENT_SRV_NETWORK_ERROR","features":[448]},{"name":"EVENT_SRV_NONPAGED_POOL_LIMIT","features":[448]},{"name":"EVENT_SRV_NO_BLOCKING_IO","features":[448]},{"name":"EVENT_SRV_NO_FREE_CONNECTIONS","features":[448]},{"name":"EVENT_SRV_NO_FREE_RAW_WORK_ITEM","features":[448]},{"name":"EVENT_SRV_NO_NONPAGED_POOL","features":[448]},{"name":"EVENT_SRV_NO_PAGED_POOL","features":[448]},{"name":"EVENT_SRV_NO_TRANSPORTS_BOUND","features":[448]},{"name":"EVENT_SRV_NO_VIRTUAL_MEMORY","features":[448]},{"name":"EVENT_SRV_NO_WORK_ITEM","features":[448]},{"name":"EVENT_SRV_OUT_OF_WORK_ITEM_DOS","features":[448]},{"name":"EVENT_SRV_PAGED_POOL_LIMIT","features":[448]},{"name":"EVENT_SRV_RESOURCE_SHORTAGE","features":[448]},{"name":"EVENT_SRV_SERVICE_FAILED","features":[448]},{"name":"EVENT_SRV_TOO_MANY_DOS","features":[448]},{"name":"EVENT_SRV_TXF_INIT_FAILED","features":[448]},{"name":"EVENT_SRV_UNEXPECTED_DISC","features":[448]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE","features":[448]},{"name":"EVENT_STREAMS_ALLOCB_FAILURE_CNT","features":[448]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE","features":[448]},{"name":"EVENT_STREAMS_ESBALLOC_FAILURE_CNT","features":[448]},{"name":"EVENT_STREAMS_STRLOG","features":[448]},{"name":"EVENT_TAKE_OWNERSHIP","features":[448]},{"name":"EVENT_TCPIP6_STARTED","features":[448]},{"name":"EVENT_TCPIP_ADAPTER_REG_FAILURE","features":[448]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT1","features":[448]},{"name":"EVENT_TCPIP_ADDRESS_CONFLICT2","features":[448]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ADDRESS_LIMIT_REACHED","features":[448]},{"name":"EVENT_TCPIP_AUTOCONFIGURED_ROUTE_LIMIT_REACHED","features":[448]},{"name":"EVENT_TCPIP_CREATE_DEVICE_FAILED","features":[448]},{"name":"EVENT_TCPIP_DHCP_INIT_FAILED","features":[448]},{"name":"EVENT_TCPIP_INTERFACE_BIND_FAILURE","features":[448]},{"name":"EVENT_TCPIP_INVALID_ADDRESS","features":[448]},{"name":"EVENT_TCPIP_INVALID_DEFAULT_GATEWAY","features":[448]},{"name":"EVENT_TCPIP_INVALID_MASK","features":[448]},{"name":"EVENT_TCPIP_IPV4_UNINSTALLED","features":[448]},{"name":"EVENT_TCPIP_IP_INIT_FAILED","features":[448]},{"name":"EVENT_TCPIP_MEDIA_CONNECT","features":[448]},{"name":"EVENT_TCPIP_MEDIA_DISCONNECT","features":[448]},{"name":"EVENT_TCPIP_NO_ADAPTER_RESOURCES","features":[448]},{"name":"EVENT_TCPIP_NO_ADDRESS_LIST","features":[448]},{"name":"EVENT_TCPIP_NO_BINDINGS","features":[448]},{"name":"EVENT_TCPIP_NO_MASK","features":[448]},{"name":"EVENT_TCPIP_NO_MASK_LIST","features":[448]},{"name":"EVENT_TCPIP_NO_RESOURCES_FOR_INIT","features":[448]},{"name":"EVENT_TCPIP_NTE_CONTEXT_LIST_FAILURE","features":[448]},{"name":"EVENT_TCPIP_OUT_OF_ORDER_FRAGMENTS_EXCEEDED","features":[448]},{"name":"EVENT_TCPIP_PCF_CLEAR_FILTER_FAILURE","features":[448]},{"name":"EVENT_TCPIP_PCF_MISSING_CAPABILITY","features":[448]},{"name":"EVENT_TCPIP_PCF_MULTICAST_OID_ISSUE","features":[448]},{"name":"EVENT_TCPIP_PCF_NO_ARP_FILTER","features":[448]},{"name":"EVENT_TCPIP_PCF_SET_FILTER_FAILURE","features":[448]},{"name":"EVENT_TCPIP_TCP_CONNECTIONS_PERF_IMPACTED","features":[448]},{"name":"EVENT_TCPIP_TCP_CONNECT_LIMIT_REACHED","features":[448]},{"name":"EVENT_TCPIP_TCP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[448]},{"name":"EVENT_TCPIP_TCP_INIT_FAILED","features":[448]},{"name":"EVENT_TCPIP_TCP_MPP_ATTACKS_DETECTED","features":[448]},{"name":"EVENT_TCPIP_TCP_TIME_WAIT_COLLISION","features":[448]},{"name":"EVENT_TCPIP_TCP_WSD_WS_RESTRICTED","features":[448]},{"name":"EVENT_TCPIP_TOO_MANY_GATEWAYS","features":[448]},{"name":"EVENT_TCPIP_TOO_MANY_NETS","features":[448]},{"name":"EVENT_TCPIP_UDP_GLOBAL_EPHEMERAL_PORT_SPACE_EXHAUSTED","features":[448]},{"name":"EVENT_TCPIP_UDP_LIMIT_REACHED","features":[448]},{"name":"EVENT_TRANSACT_INVALID","features":[448]},{"name":"EVENT_TRANSACT_TIMEOUT","features":[448]},{"name":"EVENT_TRANSPORT_ADAPTER_NOT_FOUND","features":[448]},{"name":"EVENT_TRANSPORT_BAD_PROTOCOL","features":[448]},{"name":"EVENT_TRANSPORT_BINDING_FAILED","features":[448]},{"name":"EVENT_TRANSPORT_QUERY_OID_FAILED","features":[448]},{"name":"EVENT_TRANSPORT_REGISTER_FAILED","features":[448]},{"name":"EVENT_TRANSPORT_RESOURCE_LIMIT","features":[448]},{"name":"EVENT_TRANSPORT_RESOURCE_POOL","features":[448]},{"name":"EVENT_TRANSPORT_RESOURCE_SPECIFIC","features":[448]},{"name":"EVENT_TRANSPORT_SET_OID_FAILED","features":[448]},{"name":"EVENT_TRANSPORT_TOO_MANY_LINKS","features":[448]},{"name":"EVENT_TRANSPORT_TRANSFER_DATA","features":[448]},{"name":"EVENT_TRK_INTERNAL_ERROR","features":[448]},{"name":"EVENT_TRK_SERVICE_CORRUPT_LOG","features":[448]},{"name":"EVENT_TRK_SERVICE_DUPLICATE_VOLIDS","features":[448]},{"name":"EVENT_TRK_SERVICE_MOVE_QUOTA_EXCEEDED","features":[448]},{"name":"EVENT_TRK_SERVICE_START_FAILURE","features":[448]},{"name":"EVENT_TRK_SERVICE_START_SUCCESS","features":[448]},{"name":"EVENT_TRK_SERVICE_VOLUME_CLAIM","features":[448]},{"name":"EVENT_TRK_SERVICE_VOLUME_CREATE","features":[448]},{"name":"EVENT_TRK_SERVICE_VOL_QUOTA_EXCEEDED","features":[448]},{"name":"EVENT_UP_DRIVER_ON_MP","features":[448]},{"name":"EVENT_WEBCLIENT_CLOSE_DELETE_FAILED","features":[448]},{"name":"EVENT_WEBCLIENT_CLOSE_PROPPATCH_FAILED","features":[448]},{"name":"EVENT_WEBCLIENT_CLOSE_PUT_FAILED","features":[448]},{"name":"EVENT_WEBCLIENT_SETINFO_PROPPATCH_FAILED","features":[448]},{"name":"EVENT_WINNAT_SESSION_LIMIT_REACHED","features":[448]},{"name":"EVENT_WINSOCK_CLOSESOCKET_STUCK","features":[448]},{"name":"EVENT_WINSOCK_TDI_FILTER_DETECTED","features":[448]},{"name":"EVENT_WSK_OWNINGTHREAD_PARAMETER_IGNORED","features":[448]},{"name":"EVLEN","features":[448]},{"name":"EXTRA_EXIT_POINT","features":[448]},{"name":"EXTRA_EXIT_POINT_DELETED","features":[448]},{"name":"EXTRA_EXIT_POINT_NOT_DELETED","features":[448]},{"name":"EXTRA_VOLUME","features":[448]},{"name":"EXTRA_VOLUME_DELETED","features":[448]},{"name":"EXTRA_VOLUME_NOT_DELETED","features":[448]},{"name":"FILTER_INTERDOMAIN_TRUST_ACCOUNT","features":[448]},{"name":"FILTER_NORMAL_ACCOUNT","features":[448]},{"name":"FILTER_SERVER_TRUST_ACCOUNT","features":[448]},{"name":"FILTER_TEMP_DUPLICATE_ACCOUNT","features":[448]},{"name":"FILTER_WORKSTATION_TRUST_ACCOUNT","features":[448]},{"name":"FLAT_STRING","features":[448]},{"name":"FORCE_LEVEL_FLAGS","features":[448]},{"name":"GNLEN","features":[448]},{"name":"GROUPIDMASK","features":[448]},{"name":"GROUP_ALL_PARMNUM","features":[448]},{"name":"GROUP_ATTRIBUTES_PARMNUM","features":[448]},{"name":"GROUP_COMMENT_PARMNUM","features":[448]},{"name":"GROUP_INFO_0","features":[448]},{"name":"GROUP_INFO_1","features":[448]},{"name":"GROUP_INFO_1002","features":[448]},{"name":"GROUP_INFO_1005","features":[448]},{"name":"GROUP_INFO_2","features":[448]},{"name":"GROUP_INFO_3","features":[448,308]},{"name":"GROUP_NAME_PARMNUM","features":[448]},{"name":"GROUP_SPECIALGRP_ADMINS","features":[448]},{"name":"GROUP_SPECIALGRP_GUESTS","features":[448]},{"name":"GROUP_SPECIALGRP_LOCAL","features":[448]},{"name":"GROUP_SPECIALGRP_USERS","features":[448]},{"name":"GROUP_USERS_INFO_0","features":[448]},{"name":"GROUP_USERS_INFO_1","features":[448]},{"name":"GetNetScheduleAccountInformation","features":[448]},{"name":"HARDWARE_ADDRESS","features":[448]},{"name":"HARDWARE_ADDRESS_LENGTH","features":[448]},{"name":"HELP_MSG_FILENAME","features":[448]},{"name":"HLOG","features":[448]},{"name":"IEnumNetCfgBindingInterface","features":[448]},{"name":"IEnumNetCfgBindingPath","features":[448]},{"name":"IEnumNetCfgComponent","features":[448]},{"name":"INTERFACE_INFO_REVISION_1","features":[448]},{"name":"INVALID_TRACEID","features":[448]},{"name":"INetCfg","features":[448]},{"name":"INetCfgBindingInterface","features":[448]},{"name":"INetCfgBindingPath","features":[448]},{"name":"INetCfgClass","features":[448]},{"name":"INetCfgClassSetup","features":[448]},{"name":"INetCfgClassSetup2","features":[448]},{"name":"INetCfgComponent","features":[448]},{"name":"INetCfgComponentBindings","features":[448]},{"name":"INetCfgComponentControl","features":[448]},{"name":"INetCfgComponentNotifyBinding","features":[448]},{"name":"INetCfgComponentNotifyGlobal","features":[448]},{"name":"INetCfgComponentPropertyUi","features":[448]},{"name":"INetCfgComponentSetup","features":[448]},{"name":"INetCfgComponentSysPrep","features":[448]},{"name":"INetCfgComponentUpperEdge","features":[448]},{"name":"INetCfgLock","features":[448]},{"name":"INetCfgPnpReconfigCallback","features":[448]},{"name":"INetCfgSysPrep","features":[448]},{"name":"INetLanConnectionUiInfo","features":[448]},{"name":"INetRasConnectionIpUiInfo","features":[448]},{"name":"IPX_PROTOCOL_BASE","features":[448]},{"name":"IPX_PROTOCOL_RIP","features":[448]},{"name":"IProvisioningDomain","features":[448]},{"name":"IProvisioningProfileWireless","features":[448]},{"name":"IR_PROMISCUOUS","features":[448]},{"name":"IR_PROMISCUOUS_MULTICAST","features":[448]},{"name":"I_NetLogonControl2","features":[448]},{"name":"JOB_ADD_CURRENT_DATE","features":[448]},{"name":"JOB_EXEC_ERROR","features":[448]},{"name":"JOB_NONINTERACTIVE","features":[448]},{"name":"JOB_RUNS_TODAY","features":[448]},{"name":"JOB_RUN_PERIODICALLY","features":[448]},{"name":"KNOWLEDGE_INCONSISTENCY_DETECTED","features":[448]},{"name":"LG_INCLUDE_INDIRECT","features":[448]},{"name":"LM20_CNLEN","features":[448]},{"name":"LM20_DEVLEN","features":[448]},{"name":"LM20_DNLEN","features":[448]},{"name":"LM20_GNLEN","features":[448]},{"name":"LM20_MAXCOMMENTSZ","features":[448]},{"name":"LM20_NNLEN","features":[448]},{"name":"LM20_PATHLEN","features":[448]},{"name":"LM20_PWLEN","features":[448]},{"name":"LM20_QNLEN","features":[448]},{"name":"LM20_SERVICE_ACTIVE","features":[448]},{"name":"LM20_SERVICE_CONTINUE_PENDING","features":[448]},{"name":"LM20_SERVICE_PAUSED","features":[448]},{"name":"LM20_SERVICE_PAUSE_PENDING","features":[448]},{"name":"LM20_SNLEN","features":[448]},{"name":"LM20_STXTLEN","features":[448]},{"name":"LM20_UNCLEN","features":[448]},{"name":"LM20_UNLEN","features":[448]},{"name":"LM_REDIR_FAILURE","features":[448]},{"name":"LOCALGROUP_COMMENT_PARMNUM","features":[448]},{"name":"LOCALGROUP_INFO_0","features":[448]},{"name":"LOCALGROUP_INFO_1","features":[448]},{"name":"LOCALGROUP_INFO_1002","features":[448]},{"name":"LOCALGROUP_MEMBERS_INFO_0","features":[448,308]},{"name":"LOCALGROUP_MEMBERS_INFO_1","features":[448,308]},{"name":"LOCALGROUP_MEMBERS_INFO_2","features":[448,308]},{"name":"LOCALGROUP_MEMBERS_INFO_3","features":[448]},{"name":"LOCALGROUP_NAME_PARMNUM","features":[448]},{"name":"LOCALGROUP_USERS_INFO_0","features":[448]},{"name":"LOGFLAGS_BACKWARD","features":[448]},{"name":"LOGFLAGS_FORWARD","features":[448]},{"name":"LOGFLAGS_SEEK","features":[448]},{"name":"LOWER_GET_HINT_MASK","features":[448]},{"name":"LOWER_HINT_MASK","features":[448]},{"name":"LogErrorA","features":[448]},{"name":"LogErrorW","features":[448]},{"name":"LogEventA","features":[448]},{"name":"LogEventW","features":[448]},{"name":"MACHINE_UNJOINED","features":[448]},{"name":"MAJOR_VERSION_MASK","features":[448]},{"name":"MAXCOMMENTSZ","features":[448]},{"name":"MAXPERMENTRIES","features":[448]},{"name":"MAX_LANMAN_MESSAGE_ID","features":[448]},{"name":"MAX_NERR","features":[448]},{"name":"MAX_PASSWD_LEN","features":[448]},{"name":"MAX_PREFERRED_LENGTH","features":[448]},{"name":"MAX_PROTOCOL_DLL_LEN","features":[448]},{"name":"MAX_PROTOCOL_NAME_LEN","features":[448]},{"name":"MESSAGE_FILENAME","features":[448]},{"name":"MFE_BOUNDARY_REACHED","features":[448]},{"name":"MFE_IIF","features":[448]},{"name":"MFE_NOT_FORWARDING","features":[448]},{"name":"MFE_NOT_LAST_HOP","features":[448]},{"name":"MFE_NO_ERROR","features":[448]},{"name":"MFE_NO_MULTICAST","features":[448]},{"name":"MFE_NO_ROUTE","features":[448]},{"name":"MFE_NO_SPACE","features":[448]},{"name":"MFE_OIF_PRUNED","features":[448]},{"name":"MFE_OLD_ROUTER","features":[448]},{"name":"MFE_PROHIBITED","features":[448]},{"name":"MFE_PRUNED_UPSTREAM","features":[448]},{"name":"MFE_REACHED_CORE","features":[448]},{"name":"MFE_WRONG_IF","features":[448]},{"name":"MIN_LANMAN_MESSAGE_ID","features":[448]},{"name":"MISSING_EXIT_POINT","features":[448]},{"name":"MISSING_EXIT_POINT_CREATED","features":[448]},{"name":"MISSING_EXIT_POINT_NOT_CREATED","features":[448]},{"name":"MISSING_VOLUME","features":[448]},{"name":"MISSING_VOLUME_CREATED","features":[448]},{"name":"MISSING_VOLUME_NOT_CREATED","features":[448]},{"name":"MODALS_DOMAIN_ID_PARMNUM","features":[448]},{"name":"MODALS_DOMAIN_NAME_PARMNUM","features":[448]},{"name":"MODALS_FORCE_LOGOFF_PARMNUM","features":[448]},{"name":"MODALS_LOCKOUT_DURATION_PARMNUM","features":[448]},{"name":"MODALS_LOCKOUT_OBSERVATION_WINDOW_PARMNUM","features":[448]},{"name":"MODALS_LOCKOUT_THRESHOLD_PARMNUM","features":[448]},{"name":"MODALS_MAX_PASSWD_AGE_PARMNUM","features":[448]},{"name":"MODALS_MIN_PASSWD_AGE_PARMNUM","features":[448]},{"name":"MODALS_MIN_PASSWD_LEN_PARMNUM","features":[448]},{"name":"MODALS_PASSWD_HIST_LEN_PARMNUM","features":[448]},{"name":"MODALS_PRIMARY_PARMNUM","features":[448]},{"name":"MODALS_ROLE_PARMNUM","features":[448]},{"name":"MPR_PROTOCOL_0","features":[448]},{"name":"MRINFO_DISABLED_FLAG","features":[448]},{"name":"MRINFO_DOWN_FLAG","features":[448]},{"name":"MRINFO_LEAF_FLAG","features":[448]},{"name":"MRINFO_PIM_FLAG","features":[448]},{"name":"MRINFO_QUERIER_FLAG","features":[448]},{"name":"MRINFO_TUNNEL_FLAG","features":[448]},{"name":"MSA_INFO_0","features":[448]},{"name":"MSA_INFO_LEVEL","features":[448]},{"name":"MSA_INFO_STATE","features":[448]},{"name":"MSGNAME_FORWARDED_FROM","features":[448]},{"name":"MSGNAME_FORWARDED_TO","features":[448]},{"name":"MSGNAME_NOT_FORWARDED","features":[448]},{"name":"MSG_INFO_0","features":[448]},{"name":"MSG_INFO_1","features":[448]},{"name":"MS_ROUTER_VERSION","features":[448]},{"name":"MprSetupProtocolEnum","features":[448]},{"name":"MprSetupProtocolFree","features":[448]},{"name":"MsaInfoCanInstall","features":[448]},{"name":"MsaInfoCannotInstall","features":[448]},{"name":"MsaInfoInstalled","features":[448]},{"name":"MsaInfoLevel0","features":[448]},{"name":"MsaInfoLevelMax","features":[448]},{"name":"MsaInfoNotExist","features":[448]},{"name":"MsaInfoNotService","features":[448]},{"name":"NCF_DONTEXPOSELOWER","features":[448]},{"name":"NCF_FILTER","features":[448]},{"name":"NCF_FIXED_BINDING","features":[448]},{"name":"NCF_HAS_UI","features":[448]},{"name":"NCF_HIDDEN","features":[448]},{"name":"NCF_HIDE_BINDING","features":[448]},{"name":"NCF_LOWER","features":[448]},{"name":"NCF_LW_FILTER","features":[448]},{"name":"NCF_MULTIPORT_INSTANCED_ADAPTER","features":[448]},{"name":"NCF_NDIS_PROTOCOL","features":[448]},{"name":"NCF_NOT_USER_REMOVABLE","features":[448]},{"name":"NCF_NO_SERVICE","features":[448]},{"name":"NCF_PHYSICAL","features":[448]},{"name":"NCF_SINGLE_INSTANCE","features":[448]},{"name":"NCF_SOFTWARE_ENUMERATED","features":[448]},{"name":"NCF_UPPER","features":[448]},{"name":"NCF_VIRTUAL","features":[448]},{"name":"NCN_ADD","features":[448]},{"name":"NCN_BINDING_PATH","features":[448]},{"name":"NCN_DISABLE","features":[448]},{"name":"NCN_ENABLE","features":[448]},{"name":"NCN_NET","features":[448]},{"name":"NCN_NETCLIENT","features":[448]},{"name":"NCN_NETSERVICE","features":[448]},{"name":"NCN_NETTRANS","features":[448]},{"name":"NCN_PROPERTYCHANGE","features":[448]},{"name":"NCN_REMOVE","features":[448]},{"name":"NCN_UPDATE","features":[448]},{"name":"NCPNP_RECONFIG_LAYER","features":[448]},{"name":"NCRL_NDIS","features":[448]},{"name":"NCRL_TDI","features":[448]},{"name":"NCRP_FLAGS","features":[448]},{"name":"NCRP_QUERY_PROPERTY_UI","features":[448]},{"name":"NCRP_SHOW_PROPERTY_UI","features":[448]},{"name":"NELOG_AT_Exec_Err","features":[448]},{"name":"NELOG_AT_cannot_read","features":[448]},{"name":"NELOG_AT_cannot_write","features":[448]},{"name":"NELOG_AT_sched_err","features":[448]},{"name":"NELOG_AT_schedule_file_created","features":[448]},{"name":"NELOG_Access_File_Bad","features":[448]},{"name":"NELOG_Build_Name","features":[448]},{"name":"NELOG_Cant_Make_Msg_File","features":[448]},{"name":"NELOG_DiskFT","features":[448]},{"name":"NELOG_DriverNotLoaded","features":[448]},{"name":"NELOG_Entries_Lost","features":[448]},{"name":"NELOG_Error_in_DLL","features":[448]},{"name":"NELOG_Exec_Netservr_NoMem","features":[448]},{"name":"NELOG_FT_ErrLog_Too_Large","features":[448]},{"name":"NELOG_FT_Update_In_Progress","features":[448]},{"name":"NELOG_FailedToGetComputerName","features":[448]},{"name":"NELOG_FailedToRegisterSC","features":[448]},{"name":"NELOG_FailedToSetServiceStatus","features":[448]},{"name":"NELOG_File_Changed","features":[448]},{"name":"NELOG_Files_Dont_Fit","features":[448]},{"name":"NELOG_HardErr_From_Server","features":[448]},{"name":"NELOG_HotFix","features":[448]},{"name":"NELOG_Init_Chardev_Err","features":[448]},{"name":"NELOG_Init_Exec_Fail","features":[448]},{"name":"NELOG_Init_OpenCreate_Err","features":[448]},{"name":"NELOG_Init_Seg_Overflow","features":[448]},{"name":"NELOG_Internal_Error","features":[448]},{"name":"NELOG_Invalid_Config_File","features":[448]},{"name":"NELOG_Invalid_Config_Line","features":[448]},{"name":"NELOG_Ioctl_Error","features":[448]},{"name":"NELOG_Joined_Domain","features":[448]},{"name":"NELOG_Joined_Workgroup","features":[448]},{"name":"NELOG_Lazy_Write_Err","features":[448]},{"name":"NELOG_LocalSecFail1","features":[448]},{"name":"NELOG_LocalSecFail2","features":[448]},{"name":"NELOG_LocalSecFail3","features":[448]},{"name":"NELOG_LocalSecGeneralFail","features":[448]},{"name":"NELOG_Mail_Slt_Err","features":[448]},{"name":"NELOG_Mailslot_err","features":[448]},{"name":"NELOG_Message_Send","features":[448]},{"name":"NELOG_Missing_Parameter","features":[448]},{"name":"NELOG_Msg_Log_Err","features":[448]},{"name":"NELOG_Msg_Sem_Shutdown","features":[448]},{"name":"NELOG_Msg_Shutdown","features":[448]},{"name":"NELOG_Msg_Unexpected_SMB_Type","features":[448]},{"name":"NELOG_Name_Expansion","features":[448]},{"name":"NELOG_Ncb_Error","features":[448]},{"name":"NELOG_Ncb_TooManyErr","features":[448]},{"name":"NELOG_NetBios","features":[448]},{"name":"NELOG_NetLogonFailedToInitializeAuthzRm","features":[448]},{"name":"NELOG_NetLogonFailedToInitializeRPCSD","features":[448]},{"name":"NELOG_NetWkSta_Internal_Error","features":[448]},{"name":"NELOG_NetWkSta_NCB_Err","features":[448]},{"name":"NELOG_NetWkSta_No_Resource","features":[448]},{"name":"NELOG_NetWkSta_Reset_Err","features":[448]},{"name":"NELOG_NetWkSta_SMB_Err","features":[448]},{"name":"NELOG_NetWkSta_Stuck_VC_Err","features":[448]},{"name":"NELOG_NetWkSta_Too_Many","features":[448]},{"name":"NELOG_NetWkSta_VC_Err","features":[448]},{"name":"NELOG_NetWkSta_Write_Behind_Err","features":[448]},{"name":"NELOG_Net_Not_Started","features":[448]},{"name":"NELOG_NetlogonAddNameFailure","features":[448]},{"name":"NELOG_NetlogonAuthDCFail","features":[448]},{"name":"NELOG_NetlogonAuthDomainDowngraded","features":[448]},{"name":"NELOG_NetlogonAuthNoDomainController","features":[448]},{"name":"NELOG_NetlogonAuthNoTrustLsaSecret","features":[448]},{"name":"NELOG_NetlogonAuthNoTrustSamAccount","features":[448]},{"name":"NELOG_NetlogonAuthNoUplevelDomainController","features":[448]},{"name":"NELOG_NetlogonBadSiteName","features":[448]},{"name":"NELOG_NetlogonBadSubnetName","features":[448]},{"name":"NELOG_NetlogonBrowserDriver","features":[448]},{"name":"NELOG_NetlogonChangeLogCorrupt","features":[448]},{"name":"NELOG_NetlogonDcOldSiteCovered","features":[448]},{"name":"NELOG_NetlogonDcSiteCovered","features":[448]},{"name":"NELOG_NetlogonDcSiteNotCovered","features":[448]},{"name":"NELOG_NetlogonDcSiteNotCoveredAuto","features":[448]},{"name":"NELOG_NetlogonDnsDeregAborted","features":[448]},{"name":"NELOG_NetlogonDnsHostNameLowerCasingFailed","features":[448]},{"name":"NELOG_NetlogonDownLevelLogoffFailed","features":[448]},{"name":"NELOG_NetlogonDownLevelLogonFailed","features":[448]},{"name":"NELOG_NetlogonDuplicateMachineAccounts","features":[448]},{"name":"NELOG_NetlogonDynamicDnsDeregisterFailure","features":[448]},{"name":"NELOG_NetlogonDynamicDnsFailure","features":[448]},{"name":"NELOG_NetlogonDynamicDnsRegisterFailure","features":[448]},{"name":"NELOG_NetlogonDynamicDnsServerFailure","features":[448]},{"name":"NELOG_NetlogonFailedAccountDelta","features":[448]},{"name":"NELOG_NetlogonFailedDnsHostNameUpdate","features":[448]},{"name":"NELOG_NetlogonFailedDomainDelta","features":[448]},{"name":"NELOG_NetlogonFailedFileCreate","features":[448]},{"name":"NELOG_NetlogonFailedGlobalGroupDelta","features":[448]},{"name":"NELOG_NetlogonFailedLocalGroupDelta","features":[448]},{"name":"NELOG_NetlogonFailedPolicyDelta","features":[448]},{"name":"NELOG_NetlogonFailedPrimary","features":[448]},{"name":"NELOG_NetlogonFailedSecretDelta","features":[448]},{"name":"NELOG_NetlogonFailedSpnUpdate","features":[448]},{"name":"NELOG_NetlogonFailedToAddAuthzRpcInterface","features":[448]},{"name":"NELOG_NetlogonFailedToAddRpcInterface","features":[448]},{"name":"NELOG_NetlogonFailedToCreateShare","features":[448]},{"name":"NELOG_NetlogonFailedToReadMailslot","features":[448]},{"name":"NELOG_NetlogonFailedToRegisterSC","features":[448]},{"name":"NELOG_NetlogonFailedToUpdateTrustList","features":[448]},{"name":"NELOG_NetlogonFailedTrustedDomainDelta","features":[448]},{"name":"NELOG_NetlogonFailedUserDelta","features":[448]},{"name":"NELOG_NetlogonFullSyncCallFailed","features":[448]},{"name":"NELOG_NetlogonFullSyncCallSuccess","features":[448]},{"name":"NELOG_NetlogonFullSyncFailed","features":[448]},{"name":"NELOG_NetlogonFullSyncSuccess","features":[448]},{"name":"NELOG_NetlogonGcOldSiteCovered","features":[448]},{"name":"NELOG_NetlogonGcSiteCovered","features":[448]},{"name":"NELOG_NetlogonGcSiteNotCovered","features":[448]},{"name":"NELOG_NetlogonGcSiteNotCoveredAuto","features":[448]},{"name":"NELOG_NetlogonGetSubnetToSite","features":[448]},{"name":"NELOG_NetlogonInvalidDwordParameterValue","features":[448]},{"name":"NELOG_NetlogonInvalidGenericParameterValue","features":[448]},{"name":"NELOG_NetlogonLanmanBdcsNotAllowed","features":[448]},{"name":"NELOG_NetlogonMachinePasswdSetSucceeded","features":[448]},{"name":"NELOG_NetlogonMsaPasswdSetSucceeded","features":[448]},{"name":"NELOG_NetlogonNTLogoffFailed","features":[448]},{"name":"NELOG_NetlogonNTLogonFailed","features":[448]},{"name":"NELOG_NetlogonNdncOldSiteCovered","features":[448]},{"name":"NELOG_NetlogonNdncSiteCovered","features":[448]},{"name":"NELOG_NetlogonNdncSiteNotCovered","features":[448]},{"name":"NELOG_NetlogonNdncSiteNotCoveredAuto","features":[448]},{"name":"NELOG_NetlogonNoAddressToSiteMapping","features":[448]},{"name":"NELOG_NetlogonNoDynamicDns","features":[448]},{"name":"NELOG_NetlogonNoDynamicDnsManual","features":[448]},{"name":"NELOG_NetlogonNoSiteForClient","features":[448]},{"name":"NELOG_NetlogonNoSiteForClients","features":[448]},{"name":"NELOG_NetlogonPartialSiteMappingForClients","features":[448]},{"name":"NELOG_NetlogonPartialSyncCallFailed","features":[448]},{"name":"NELOG_NetlogonPartialSyncCallSuccess","features":[448]},{"name":"NELOG_NetlogonPartialSyncFailed","features":[448]},{"name":"NELOG_NetlogonPartialSyncSuccess","features":[448]},{"name":"NELOG_NetlogonPasswdSetFailed","features":[448]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsDeregister","features":[448]},{"name":"NELOG_NetlogonRejectedRemoteDynamicDnsRegister","features":[448]},{"name":"NELOG_NetlogonRemoteDynamicDnsDeregisterFailure","features":[448]},{"name":"NELOG_NetlogonRemoteDynamicDnsRegisterFailure","features":[448]},{"name":"NELOG_NetlogonRemoteDynamicDnsUpdateRequestFailure","features":[448]},{"name":"NELOG_NetlogonRequireSignOrSealError","features":[448]},{"name":"NELOG_NetlogonRpcCallCancelled","features":[448]},{"name":"NELOG_NetlogonRpcPortRequestFailure","features":[448]},{"name":"NELOG_NetlogonSSIInitError","features":[448]},{"name":"NELOG_NetlogonServerAuthFailed","features":[448]},{"name":"NELOG_NetlogonServerAuthFailedNoAccount","features":[448]},{"name":"NELOG_NetlogonServerAuthNoTrustSamAccount","features":[448]},{"name":"NELOG_NetlogonSessionTypeWrong","features":[448]},{"name":"NELOG_NetlogonSpnCrackNamesFailure","features":[448]},{"name":"NELOG_NetlogonSpnMultipleSamAccountNames","features":[448]},{"name":"NELOG_NetlogonSyncError","features":[448]},{"name":"NELOG_NetlogonSystemError","features":[448]},{"name":"NELOG_NetlogonTooManyGlobalGroups","features":[448]},{"name":"NELOG_NetlogonTrackingError","features":[448]},{"name":"NELOG_NetlogonUserValidationReqInitialTimeOut","features":[448]},{"name":"NELOG_NetlogonUserValidationReqRecurringTimeOut","features":[448]},{"name":"NELOG_NetlogonUserValidationReqWaitInitialWarning","features":[448]},{"name":"NELOG_NetlogonUserValidationReqWaitRecurringWarning","features":[448]},{"name":"NELOG_NoTranportLoaded","features":[448]},{"name":"NELOG_OEM_Code","features":[448]},{"name":"NELOG_ReleaseMem_Alert","features":[448]},{"name":"NELOG_Remote_API","features":[448]},{"name":"NELOG_ReplAccessDenied","features":[448]},{"name":"NELOG_ReplBadExport","features":[448]},{"name":"NELOG_ReplBadImport","features":[448]},{"name":"NELOG_ReplBadMsg","features":[448]},{"name":"NELOG_ReplCannotMasterDir","features":[448]},{"name":"NELOG_ReplLogonFailed","features":[448]},{"name":"NELOG_ReplLostMaster","features":[448]},{"name":"NELOG_ReplMaxFiles","features":[448]},{"name":"NELOG_ReplMaxTreeDepth","features":[448]},{"name":"NELOG_ReplNetErr","features":[448]},{"name":"NELOG_ReplSignalFileErr","features":[448]},{"name":"NELOG_ReplSysErr","features":[448]},{"name":"NELOG_ReplUpdateError","features":[448]},{"name":"NELOG_ReplUserCurDir","features":[448]},{"name":"NELOG_ReplUserLoged","features":[448]},{"name":"NELOG_Resource_Shortage","features":[448]},{"name":"NELOG_RplAdapterResource","features":[448]},{"name":"NELOG_RplBackupDatabase","features":[448]},{"name":"NELOG_RplCheckConfigs","features":[448]},{"name":"NELOG_RplCheckSecurity","features":[448]},{"name":"NELOG_RplCreateProfiles","features":[448]},{"name":"NELOG_RplFileCopy","features":[448]},{"name":"NELOG_RplFileDelete","features":[448]},{"name":"NELOG_RplFilePerms","features":[448]},{"name":"NELOG_RplInitDatabase","features":[448]},{"name":"NELOG_RplInitRestoredDatabase","features":[448]},{"name":"NELOG_RplMessages","features":[448]},{"name":"NELOG_RplRegistry","features":[448]},{"name":"NELOG_RplReplaceRPLDISK","features":[448]},{"name":"NELOG_RplRestoreDatabaseFailure","features":[448]},{"name":"NELOG_RplRestoreDatabaseSuccess","features":[448]},{"name":"NELOG_RplSystem","features":[448]},{"name":"NELOG_RplUpgradeDBTo40","features":[448]},{"name":"NELOG_RplWkstaBbcFile","features":[448]},{"name":"NELOG_RplWkstaFileChecksum","features":[448]},{"name":"NELOG_RplWkstaFileLineCount","features":[448]},{"name":"NELOG_RplWkstaFileOpen","features":[448]},{"name":"NELOG_RplWkstaFileRead","features":[448]},{"name":"NELOG_RplWkstaFileSize","features":[448]},{"name":"NELOG_RplWkstaInternal","features":[448]},{"name":"NELOG_RplWkstaMemory","features":[448]},{"name":"NELOG_RplWkstaNetwork","features":[448]},{"name":"NELOG_RplWkstaTimeout","features":[448]},{"name":"NELOG_RplWkstaWrongVersion","features":[448]},{"name":"NELOG_RplXnsBoot","features":[448]},{"name":"NELOG_SMB_Illegal","features":[448]},{"name":"NELOG_Server_Lock_Failure","features":[448]},{"name":"NELOG_Service_Fail","features":[448]},{"name":"NELOG_Srv_Close_Failure","features":[448]},{"name":"NELOG_Srv_No_Mem_Grow","features":[448]},{"name":"NELOG_Srv_Thread_Failure","features":[448]},{"name":"NELOG_Srvnet_NB_Open","features":[448]},{"name":"NELOG_Srvnet_Not_Started","features":[448]},{"name":"NELOG_System_Error","features":[448]},{"name":"NELOG_System_Semaphore","features":[448]},{"name":"NELOG_UPS_CannotOpenDriver","features":[448]},{"name":"NELOG_UPS_CmdFileConfig","features":[448]},{"name":"NELOG_UPS_CmdFileError","features":[448]},{"name":"NELOG_UPS_CmdFileExec","features":[448]},{"name":"NELOG_UPS_PowerBack","features":[448]},{"name":"NELOG_UPS_PowerOut","features":[448]},{"name":"NELOG_UPS_Shutdown","features":[448]},{"name":"NELOG_Unable_To_Lock_Segment","features":[448]},{"name":"NELOG_Unable_To_Unlock_Segment","features":[448]},{"name":"NELOG_Uninstall_Service","features":[448]},{"name":"NELOG_VIO_POPUP_ERR","features":[448]},{"name":"NELOG_Wksta_Bad_Mailslot_SMB","features":[448]},{"name":"NELOG_Wksta_BiosThreadFailure","features":[448]},{"name":"NELOG_Wksta_Compname","features":[448]},{"name":"NELOG_Wksta_HostTab_Full","features":[448]},{"name":"NELOG_Wksta_Infoseg","features":[448]},{"name":"NELOG_Wksta_IniSeg","features":[448]},{"name":"NELOG_Wksta_SSIRelogon","features":[448]},{"name":"NELOG_Wksta_UASInit","features":[448]},{"name":"NELOG_Wrong_DLL_Version","features":[448]},{"name":"NERR_ACFFileIOFail","features":[448]},{"name":"NERR_ACFNoParent","features":[448]},{"name":"NERR_ACFNoRoom","features":[448]},{"name":"NERR_ACFNotFound","features":[448]},{"name":"NERR_ACFNotLoaded","features":[448]},{"name":"NERR_ACFTooManyLists","features":[448]},{"name":"NERR_AccountExpired","features":[448]},{"name":"NERR_AccountLockedOut","features":[448]},{"name":"NERR_AccountReuseBlockedByPolicy","features":[448]},{"name":"NERR_AccountUndefined","features":[448]},{"name":"NERR_AcctLimitExceeded","features":[448]},{"name":"NERR_ActiveConns","features":[448]},{"name":"NERR_AddForwarded","features":[448]},{"name":"NERR_AlertExists","features":[448]},{"name":"NERR_AlreadyCloudDomainJoined","features":[448]},{"name":"NERR_AlreadyExists","features":[448]},{"name":"NERR_AlreadyForwarded","features":[448]},{"name":"NERR_AlreadyLoggedOn","features":[448]},{"name":"NERR_BASE","features":[448]},{"name":"NERR_BadAsgType","features":[448]},{"name":"NERR_BadComponent","features":[448]},{"name":"NERR_BadControlRecv","features":[448]},{"name":"NERR_BadDest","features":[448]},{"name":"NERR_BadDev","features":[448]},{"name":"NERR_BadDevString","features":[448]},{"name":"NERR_BadDomainJoinInfo","features":[448]},{"name":"NERR_BadDosFunction","features":[448]},{"name":"NERR_BadDosRetCode","features":[448]},{"name":"NERR_BadEventName","features":[448]},{"name":"NERR_BadFileCheckSum","features":[448]},{"name":"NERR_BadOfflineJoinInfo","features":[448]},{"name":"NERR_BadPassword","features":[448]},{"name":"NERR_BadPasswordCore","features":[448]},{"name":"NERR_BadQueueDevString","features":[448]},{"name":"NERR_BadQueuePriority","features":[448]},{"name":"NERR_BadReceive","features":[448]},{"name":"NERR_BadRecipient","features":[448]},{"name":"NERR_BadServiceName","features":[448]},{"name":"NERR_BadServiceProgName","features":[448]},{"name":"NERR_BadSource","features":[448]},{"name":"NERR_BadTransactConfig","features":[448]},{"name":"NERR_BadUasConfig","features":[448]},{"name":"NERR_BadUsername","features":[448]},{"name":"NERR_BrowserConfiguredToNotRun","features":[448]},{"name":"NERR_BrowserNotStarted","features":[448]},{"name":"NERR_BrowserTableIncomplete","features":[448]},{"name":"NERR_BufTooSmall","features":[448]},{"name":"NERR_CallingRplSrvr","features":[448]},{"name":"NERR_CanNotGrowSegment","features":[448]},{"name":"NERR_CanNotGrowUASFile","features":[448]},{"name":"NERR_CannotUnjoinAadDomain","features":[448]},{"name":"NERR_CannotUpdateAadHostName","features":[448]},{"name":"NERR_CantConnectRplSrvr","features":[448]},{"name":"NERR_CantCreateJoinInfo","features":[448]},{"name":"NERR_CantLoadOfflineHive","features":[448]},{"name":"NERR_CantOpenImageFile","features":[448]},{"name":"NERR_CantType","features":[448]},{"name":"NERR_CantVerifyHostname","features":[448]},{"name":"NERR_CfgCompNotFound","features":[448]},{"name":"NERR_CfgParamNotFound","features":[448]},{"name":"NERR_ClientNameNotFound","features":[448]},{"name":"NERR_CommDevInUse","features":[448]},{"name":"NERR_ComputerAccountNotFound","features":[448]},{"name":"NERR_ConnectionInsecure","features":[448]},{"name":"NERR_DCNotFound","features":[448]},{"name":"NERR_DS8DCNotFound","features":[448]},{"name":"NERR_DS8DCRequired","features":[448]},{"name":"NERR_DS9DCNotFound","features":[448]},{"name":"NERR_DataTypeInvalid","features":[448]},{"name":"NERR_DatabaseUpToDate","features":[448]},{"name":"NERR_DefaultJoinRequired","features":[448]},{"name":"NERR_DelComputerName","features":[448]},{"name":"NERR_DeleteLater","features":[448]},{"name":"NERR_DestExists","features":[448]},{"name":"NERR_DestIdle","features":[448]},{"name":"NERR_DestInvalidOp","features":[448]},{"name":"NERR_DestInvalidState","features":[448]},{"name":"NERR_DestNoRoom","features":[448]},{"name":"NERR_DestNotFound","features":[448]},{"name":"NERR_DevInUse","features":[448]},{"name":"NERR_DevInvalidOpCode","features":[448]},{"name":"NERR_DevNotFound","features":[448]},{"name":"NERR_DevNotOpen","features":[448]},{"name":"NERR_DevNotRedirected","features":[448]},{"name":"NERR_DeviceIsShared","features":[448]},{"name":"NERR_DeviceNotShared","features":[448]},{"name":"NERR_DeviceShareConflict","features":[448]},{"name":"NERR_DfsAlreadyShared","features":[448]},{"name":"NERR_DfsBadRenamePath","features":[448]},{"name":"NERR_DfsCantCreateJunctionPoint","features":[448]},{"name":"NERR_DfsCantRemoveDfsRoot","features":[448]},{"name":"NERR_DfsCantRemoveLastServerShare","features":[448]},{"name":"NERR_DfsChildOrParentInDfs","features":[448]},{"name":"NERR_DfsCyclicalName","features":[448]},{"name":"NERR_DfsDataIsIdentical","features":[448]},{"name":"NERR_DfsDuplicateService","features":[448]},{"name":"NERR_DfsInconsistent","features":[448]},{"name":"NERR_DfsInternalCorruption","features":[448]},{"name":"NERR_DfsInternalError","features":[448]},{"name":"NERR_DfsLeafVolume","features":[448]},{"name":"NERR_DfsNoSuchServer","features":[448]},{"name":"NERR_DfsNoSuchShare","features":[448]},{"name":"NERR_DfsNoSuchVolume","features":[448]},{"name":"NERR_DfsNotALeafVolume","features":[448]},{"name":"NERR_DfsNotSupportedInServerDfs","features":[448]},{"name":"NERR_DfsServerNotDfsAware","features":[448]},{"name":"NERR_DfsServerUpgraded","features":[448]},{"name":"NERR_DfsVolumeAlreadyExists","features":[448]},{"name":"NERR_DfsVolumeDataCorrupt","features":[448]},{"name":"NERR_DfsVolumeHasMultipleServers","features":[448]},{"name":"NERR_DfsVolumeIsInterDfs","features":[448]},{"name":"NERR_DfsVolumeIsOffline","features":[448]},{"name":"NERR_DifferentServers","features":[448]},{"name":"NERR_DriverNotFound","features":[448]},{"name":"NERR_DupNameReboot","features":[448]},{"name":"NERR_DuplicateHostName","features":[448]},{"name":"NERR_DuplicateName","features":[448]},{"name":"NERR_DuplicateShare","features":[448]},{"name":"NERR_ErrCommRunSrv","features":[448]},{"name":"NERR_ErrorExecingGhost","features":[448]},{"name":"NERR_ExecFailure","features":[448]},{"name":"NERR_FileIdNotFound","features":[448]},{"name":"NERR_GroupExists","features":[448]},{"name":"NERR_GroupNotFound","features":[448]},{"name":"NERR_GrpMsgProcessor","features":[448]},{"name":"NERR_HostNameTooLong","features":[448]},{"name":"NERR_ImageParamErr","features":[448]},{"name":"NERR_InUseBySpooler","features":[448]},{"name":"NERR_IncompleteDel","features":[448]},{"name":"NERR_InternalError","features":[448]},{"name":"NERR_InvalidAPI","features":[448]},{"name":"NERR_InvalidComputer","features":[448]},{"name":"NERR_InvalidDatabase","features":[448]},{"name":"NERR_InvalidDevice","features":[448]},{"name":"NERR_InvalidLana","features":[448]},{"name":"NERR_InvalidLogSeek","features":[448]},{"name":"NERR_InvalidLogonHours","features":[448]},{"name":"NERR_InvalidMachineNameForJoin","features":[448]},{"name":"NERR_InvalidMaxUsers","features":[448]},{"name":"NERR_InvalidUASOp","features":[448]},{"name":"NERR_InvalidWorkgroupName","features":[448]},{"name":"NERR_InvalidWorkstation","features":[448]},{"name":"NERR_IsDfsShare","features":[448]},{"name":"NERR_ItemNotFound","features":[448]},{"name":"NERR_JobInvalidState","features":[448]},{"name":"NERR_JobNoRoom","features":[448]},{"name":"NERR_JobNotFound","features":[448]},{"name":"NERR_JoinPerformedMustRestart","features":[448]},{"name":"NERR_LDAPCapableDCRequired","features":[448]},{"name":"NERR_LanmanIniError","features":[448]},{"name":"NERR_LastAdmin","features":[448]},{"name":"NERR_LineTooLong","features":[448]},{"name":"NERR_LocalDrive","features":[448]},{"name":"NERR_LocalForward","features":[448]},{"name":"NERR_LogFileChanged","features":[448]},{"name":"NERR_LogFileCorrupt","features":[448]},{"name":"NERR_LogOverflow","features":[448]},{"name":"NERR_LogonDomainExists","features":[448]},{"name":"NERR_LogonNoUserPath","features":[448]},{"name":"NERR_LogonScriptError","features":[448]},{"name":"NERR_LogonServerConflict","features":[448]},{"name":"NERR_LogonServerNotFound","features":[448]},{"name":"NERR_LogonTrackingError","features":[448]},{"name":"NERR_LogonsPaused","features":[448]},{"name":"NERR_MaxLenExceeded","features":[448]},{"name":"NERR_MsgAlreadyStarted","features":[448]},{"name":"NERR_MsgInitFailed","features":[448]},{"name":"NERR_MsgNotStarted","features":[448]},{"name":"NERR_MultipleNets","features":[448]},{"name":"NERR_NameInUse","features":[448]},{"name":"NERR_NameNotForwarded","features":[448]},{"name":"NERR_NameNotFound","features":[448]},{"name":"NERR_NameUsesIncompatibleCodePage","features":[448]},{"name":"NERR_NetNameNotFound","features":[448]},{"name":"NERR_NetNotStarted","features":[448]},{"name":"NERR_NetlogonNotStarted","features":[448]},{"name":"NERR_NetworkError","features":[448]},{"name":"NERR_NoAlternateServers","features":[448]},{"name":"NERR_NoCommDevs","features":[448]},{"name":"NERR_NoComputerName","features":[448]},{"name":"NERR_NoForwardName","features":[448]},{"name":"NERR_NoJoinPending","features":[448]},{"name":"NERR_NoNetworkResource","features":[448]},{"name":"NERR_NoOfflineJoinInfo","features":[448]},{"name":"NERR_NoRoom","features":[448]},{"name":"NERR_NoRplBootSystem","features":[448]},{"name":"NERR_NoSuchAlert","features":[448]},{"name":"NERR_NoSuchConnection","features":[448]},{"name":"NERR_NoSuchServer","features":[448]},{"name":"NERR_NoSuchSession","features":[448]},{"name":"NERR_NonDosFloppyUsed","features":[448]},{"name":"NERR_NonValidatedLogon","features":[448]},{"name":"NERR_NotInCache","features":[448]},{"name":"NERR_NotInDispatchTbl","features":[448]},{"name":"NERR_NotLocalDomain","features":[448]},{"name":"NERR_NotLocalName","features":[448]},{"name":"NERR_NotLoggedOn","features":[448]},{"name":"NERR_NotPrimary","features":[448]},{"name":"NERR_OpenFiles","features":[448]},{"name":"NERR_PasswordCantChange","features":[448]},{"name":"NERR_PasswordExpired","features":[448]},{"name":"NERR_PasswordFilterError","features":[448]},{"name":"NERR_PasswordHistConflict","features":[448]},{"name":"NERR_PasswordMismatch","features":[448]},{"name":"NERR_PasswordMustChange","features":[448]},{"name":"NERR_PasswordNotComplexEnough","features":[448]},{"name":"NERR_PasswordTooLong","features":[448]},{"name":"NERR_PasswordTooRecent","features":[448]},{"name":"NERR_PasswordTooShort","features":[448]},{"name":"NERR_PausedRemote","features":[448]},{"name":"NERR_PersonalSku","features":[448]},{"name":"NERR_PlainTextSecretsRequired","features":[448]},{"name":"NERR_ProcNoRespond","features":[448]},{"name":"NERR_ProcNotFound","features":[448]},{"name":"NERR_ProfileCleanup","features":[448]},{"name":"NERR_ProfileFileTooBig","features":[448]},{"name":"NERR_ProfileLoadErr","features":[448]},{"name":"NERR_ProfileOffset","features":[448]},{"name":"NERR_ProfileSaveErr","features":[448]},{"name":"NERR_ProfileUnknownCmd","features":[448]},{"name":"NERR_ProgNeedsExtraMem","features":[448]},{"name":"NERR_ProvisioningBlobUnsupported","features":[448]},{"name":"NERR_QExists","features":[448]},{"name":"NERR_QInvalidState","features":[448]},{"name":"NERR_QNoRoom","features":[448]},{"name":"NERR_QNotFound","features":[448]},{"name":"NERR_QueueNotFound","features":[448]},{"name":"NERR_RPL_CONNECTED","features":[448]},{"name":"NERR_RedirectedPath","features":[448]},{"name":"NERR_RemoteBootFailed","features":[448]},{"name":"NERR_RemoteErr","features":[448]},{"name":"NERR_RemoteFull","features":[448]},{"name":"NERR_RemoteOnly","features":[448]},{"name":"NERR_ResourceExists","features":[448]},{"name":"NERR_ResourceNotFound","features":[448]},{"name":"NERR_RplAdapterInfoCorrupted","features":[448]},{"name":"NERR_RplAdapterNameUnavailable","features":[448]},{"name":"NERR_RplAdapterNotFound","features":[448]},{"name":"NERR_RplBackupDatabase","features":[448]},{"name":"NERR_RplBadDatabase","features":[448]},{"name":"NERR_RplBadRegistry","features":[448]},{"name":"NERR_RplBootInUse","features":[448]},{"name":"NERR_RplBootInfoCorrupted","features":[448]},{"name":"NERR_RplBootNameUnavailable","features":[448]},{"name":"NERR_RplBootNotFound","features":[448]},{"name":"NERR_RplBootRestart","features":[448]},{"name":"NERR_RplBootServiceTerm","features":[448]},{"name":"NERR_RplBootStartFailed","features":[448]},{"name":"NERR_RplCannotEnum","features":[448]},{"name":"NERR_RplConfigInfoCorrupted","features":[448]},{"name":"NERR_RplConfigNameUnavailable","features":[448]},{"name":"NERR_RplConfigNotEmpty","features":[448]},{"name":"NERR_RplConfigNotFound","features":[448]},{"name":"NERR_RplIncompatibleProfile","features":[448]},{"name":"NERR_RplInternal","features":[448]},{"name":"NERR_RplLoadrDiskErr","features":[448]},{"name":"NERR_RplLoadrNetBiosErr","features":[448]},{"name":"NERR_RplNeedsRPLUSERAcct","features":[448]},{"name":"NERR_RplNoAdaptersStarted","features":[448]},{"name":"NERR_RplNotRplServer","features":[448]},{"name":"NERR_RplProfileInfoCorrupted","features":[448]},{"name":"NERR_RplProfileNameUnavailable","features":[448]},{"name":"NERR_RplProfileNotEmpty","features":[448]},{"name":"NERR_RplProfileNotFound","features":[448]},{"name":"NERR_RplRplfilesShare","features":[448]},{"name":"NERR_RplSrvrCallFailed","features":[448]},{"name":"NERR_RplVendorInfoCorrupted","features":[448]},{"name":"NERR_RplVendorNameUnavailable","features":[448]},{"name":"NERR_RplVendorNotFound","features":[448]},{"name":"NERR_RplWkstaInfoCorrupted","features":[448]},{"name":"NERR_RplWkstaNameUnavailable","features":[448]},{"name":"NERR_RplWkstaNeedsUserAcct","features":[448]},{"name":"NERR_RplWkstaNotFound","features":[448]},{"name":"NERR_RunSrvPaused","features":[448]},{"name":"NERR_SameAsComputerName","features":[448]},{"name":"NERR_ServerNotStarted","features":[448]},{"name":"NERR_ServiceCtlBusy","features":[448]},{"name":"NERR_ServiceCtlNotValid","features":[448]},{"name":"NERR_ServiceCtlTimeout","features":[448]},{"name":"NERR_ServiceEntryLocked","features":[448]},{"name":"NERR_ServiceInstalled","features":[448]},{"name":"NERR_ServiceKillProc","features":[448]},{"name":"NERR_ServiceNotCtrl","features":[448]},{"name":"NERR_ServiceNotInstalled","features":[448]},{"name":"NERR_ServiceNotStarting","features":[448]},{"name":"NERR_ServiceTableFull","features":[448]},{"name":"NERR_ServiceTableLocked","features":[448]},{"name":"NERR_SetupAlreadyJoined","features":[448]},{"name":"NERR_SetupCheckDNSConfig","features":[448]},{"name":"NERR_SetupDomainController","features":[448]},{"name":"NERR_SetupNotJoined","features":[448]},{"name":"NERR_ShareMem","features":[448]},{"name":"NERR_ShareNotFound","features":[448]},{"name":"NERR_SourceIsDir","features":[448]},{"name":"NERR_SpeGroupOp","features":[448]},{"name":"NERR_SpoolNoMemory","features":[448]},{"name":"NERR_SpoolerNotLoaded","features":[448]},{"name":"NERR_StandaloneLogon","features":[448]},{"name":"NERR_StartingRplBoot","features":[448]},{"name":"NERR_Success","features":[448]},{"name":"NERR_SyncRequired","features":[448]},{"name":"NERR_TargetVersionUnsupported","features":[448]},{"name":"NERR_TimeDiffAtDC","features":[448]},{"name":"NERR_TmpFile","features":[448]},{"name":"NERR_TooManyAlerts","features":[448]},{"name":"NERR_TooManyConnections","features":[448]},{"name":"NERR_TooManyEntries","features":[448]},{"name":"NERR_TooManyFiles","features":[448]},{"name":"NERR_TooManyHostNames","features":[448]},{"name":"NERR_TooManyImageParams","features":[448]},{"name":"NERR_TooManyItems","features":[448]},{"name":"NERR_TooManyNames","features":[448]},{"name":"NERR_TooManyServers","features":[448]},{"name":"NERR_TooManySessions","features":[448]},{"name":"NERR_TooMuchData","features":[448]},{"name":"NERR_TruncatedBroadcast","features":[448]},{"name":"NERR_TryDownLevel","features":[448]},{"name":"NERR_UPSDriverNotStarted","features":[448]},{"name":"NERR_UPSInvalidCommPort","features":[448]},{"name":"NERR_UPSInvalidConfig","features":[448]},{"name":"NERR_UPSShutdownFailed","features":[448]},{"name":"NERR_UPSSignalAsserted","features":[448]},{"name":"NERR_UnableToAddName_F","features":[448]},{"name":"NERR_UnableToAddName_W","features":[448]},{"name":"NERR_UnableToDelName_F","features":[448]},{"name":"NERR_UnableToDelName_W","features":[448]},{"name":"NERR_UnknownDevDir","features":[448]},{"name":"NERR_UnknownServer","features":[448]},{"name":"NERR_UseNotFound","features":[448]},{"name":"NERR_UserExists","features":[448]},{"name":"NERR_UserInGroup","features":[448]},{"name":"NERR_UserLogon","features":[448]},{"name":"NERR_UserNotFound","features":[448]},{"name":"NERR_UserNotInGroup","features":[448]},{"name":"NERR_ValuesNotSet","features":[448]},{"name":"NERR_WkstaInconsistentState","features":[448]},{"name":"NERR_WkstaNotStarted","features":[448]},{"name":"NERR_WriteFault","features":[448]},{"name":"NETBIOS_NAME_LEN","features":[448]},{"name":"NETCFG_CLIENT_CID_MS_MSClient","features":[448]},{"name":"NETCFG_E_ACTIVE_RAS_CONNECTIONS","features":[448]},{"name":"NETCFG_E_ADAPTER_NOT_FOUND","features":[448]},{"name":"NETCFG_E_ALREADY_INITIALIZED","features":[448]},{"name":"NETCFG_E_COMPONENT_REMOVED_PENDING_REBOOT","features":[448]},{"name":"NETCFG_E_DUPLICATE_INSTANCEID","features":[448]},{"name":"NETCFG_E_IN_USE","features":[448]},{"name":"NETCFG_E_MAX_FILTER_LIMIT","features":[448]},{"name":"NETCFG_E_NEED_REBOOT","features":[448]},{"name":"NETCFG_E_NOT_INITIALIZED","features":[448]},{"name":"NETCFG_E_NO_WRITE_LOCK","features":[448]},{"name":"NETCFG_E_VMSWITCH_ACTIVE_OVER_ADAPTER","features":[448]},{"name":"NETCFG_SERVICE_CID_MS_NETBIOS","features":[448]},{"name":"NETCFG_SERVICE_CID_MS_PSCHED","features":[448]},{"name":"NETCFG_SERVICE_CID_MS_SERVER","features":[448]},{"name":"NETCFG_SERVICE_CID_MS_WLBS","features":[448]},{"name":"NETCFG_S_CAUSED_SETUP_CHANGE","features":[448]},{"name":"NETCFG_S_COMMIT_NOW","features":[448]},{"name":"NETCFG_S_DISABLE_QUERY","features":[448]},{"name":"NETCFG_S_REBOOT","features":[448]},{"name":"NETCFG_S_STILL_REFERENCED","features":[448]},{"name":"NETCFG_TRANS_CID_MS_APPLETALK","features":[448]},{"name":"NETCFG_TRANS_CID_MS_NETBEUI","features":[448]},{"name":"NETCFG_TRANS_CID_MS_NETMON","features":[448]},{"name":"NETCFG_TRANS_CID_MS_NWIPX","features":[448]},{"name":"NETCFG_TRANS_CID_MS_NWSPX","features":[448]},{"name":"NETCFG_TRANS_CID_MS_TCPIP","features":[448]},{"name":"NETLOGON_CONTROL_BACKUP_CHANGE_LOG","features":[448]},{"name":"NETLOGON_CONTROL_BREAKPOINT","features":[448]},{"name":"NETLOGON_CONTROL_CHANGE_PASSWORD","features":[448]},{"name":"NETLOGON_CONTROL_FIND_USER","features":[448]},{"name":"NETLOGON_CONTROL_FORCE_DNS_REG","features":[448]},{"name":"NETLOGON_CONTROL_PDC_REPLICATE","features":[448]},{"name":"NETLOGON_CONTROL_QUERY","features":[448]},{"name":"NETLOGON_CONTROL_QUERY_DNS_REG","features":[448]},{"name":"NETLOGON_CONTROL_QUERY_ENC_TYPES","features":[448]},{"name":"NETLOGON_CONTROL_REDISCOVER","features":[448]},{"name":"NETLOGON_CONTROL_REPLICATE","features":[448]},{"name":"NETLOGON_CONTROL_SET_DBFLAG","features":[448]},{"name":"NETLOGON_CONTROL_SYNCHRONIZE","features":[448]},{"name":"NETLOGON_CONTROL_TC_QUERY","features":[448]},{"name":"NETLOGON_CONTROL_TC_VERIFY","features":[448]},{"name":"NETLOGON_CONTROL_TRANSPORT_NOTIFY","features":[448]},{"name":"NETLOGON_CONTROL_TRUNCATE_LOG","features":[448]},{"name":"NETLOGON_CONTROL_UNLOAD_NETLOGON_DLL","features":[448]},{"name":"NETLOGON_DNS_UPDATE_FAILURE","features":[448]},{"name":"NETLOGON_FULL_SYNC_REPLICATION","features":[448]},{"name":"NETLOGON_HAS_IP","features":[448]},{"name":"NETLOGON_HAS_TIMESERV","features":[448]},{"name":"NETLOGON_INFO_1","features":[448]},{"name":"NETLOGON_INFO_2","features":[448]},{"name":"NETLOGON_INFO_3","features":[448]},{"name":"NETLOGON_INFO_4","features":[448]},{"name":"NETLOGON_REDO_NEEDED","features":[448]},{"name":"NETLOGON_REPLICATION_IN_PROGRESS","features":[448]},{"name":"NETLOGON_REPLICATION_NEEDED","features":[448]},{"name":"NETLOGON_VERIFY_STATUS_RETURNED","features":[448]},{"name":"NETLOG_NetlogonNonWindowsSupportsSecureRpc","features":[448]},{"name":"NETLOG_NetlogonRc4Allowed","features":[448]},{"name":"NETLOG_NetlogonRc4Denied","features":[448]},{"name":"NETLOG_NetlogonRpcBacklogLimitFailure","features":[448]},{"name":"NETLOG_NetlogonRpcBacklogLimitSet","features":[448]},{"name":"NETLOG_NetlogonRpcSigningClient","features":[448]},{"name":"NETLOG_NetlogonRpcSigningTrust","features":[448]},{"name":"NETLOG_NetlogonUnsecureRpcClient","features":[448]},{"name":"NETLOG_NetlogonUnsecureRpcMachineAllowedBySsdl","features":[448]},{"name":"NETLOG_NetlogonUnsecureRpcTrust","features":[448]},{"name":"NETLOG_NetlogonUnsecureRpcTrustAllowedBySsdl","features":[448]},{"name":"NETLOG_NetlogonUnsecuredRpcMachineTemporarilyAllowed","features":[448]},{"name":"NETLOG_PassThruFilterError_Request_AdminOverride","features":[448]},{"name":"NETLOG_PassThruFilterError_Request_Blocked","features":[448]},{"name":"NETLOG_PassThruFilterError_Summary_AdminOverride","features":[448]},{"name":"NETLOG_PassThruFilterError_Summary_Blocked","features":[448]},{"name":"NETMAN_VARTYPE_HARDWARE_ADDRESS","features":[448]},{"name":"NETMAN_VARTYPE_STRING","features":[448]},{"name":"NETMAN_VARTYPE_ULONG","features":[448]},{"name":"NETSETUP_ACCT_CREATE","features":[448]},{"name":"NETSETUP_ACCT_DELETE","features":[448]},{"name":"NETSETUP_ALT_SAMACCOUNTNAME","features":[448]},{"name":"NETSETUP_AMBIGUOUS_DC","features":[448]},{"name":"NETSETUP_DEFER_SPN_SET","features":[448]},{"name":"NETSETUP_DNS_NAME_CHANGES_ONLY","features":[448]},{"name":"NETSETUP_DOMAIN_JOIN_IF_JOINED","features":[448]},{"name":"NETSETUP_DONT_CONTROL_SERVICES","features":[448]},{"name":"NETSETUP_FORCE_SPN_SET","features":[448]},{"name":"NETSETUP_IGNORE_UNSUPPORTED_FLAGS","features":[448]},{"name":"NETSETUP_INSTALL_INVOCATION","features":[448]},{"name":"NETSETUP_JOIN_DC_ACCOUNT","features":[448]},{"name":"NETSETUP_JOIN_DOMAIN","features":[448]},{"name":"NETSETUP_JOIN_READONLY","features":[448]},{"name":"NETSETUP_JOIN_STATUS","features":[448]},{"name":"NETSETUP_JOIN_UNSECURE","features":[448]},{"name":"NETSETUP_JOIN_WITH_NEW_NAME","features":[448]},{"name":"NETSETUP_MACHINE_PWD_PASSED","features":[448]},{"name":"NETSETUP_NAME_TYPE","features":[448]},{"name":"NETSETUP_NO_ACCT_REUSE","features":[448]},{"name":"NETSETUP_NO_NETLOGON_CACHE","features":[448]},{"name":"NETSETUP_PROVISION","features":[448]},{"name":"NETSETUP_PROVISIONING_PARAMS","features":[448]},{"name":"NETSETUP_PROVISIONING_PARAMS_CURRENT_VERSION","features":[448]},{"name":"NETSETUP_PROVISIONING_PARAMS_WIN8_VERSION","features":[448]},{"name":"NETSETUP_PROVISION_CHECK_PWD_ONLY","features":[448]},{"name":"NETSETUP_PROVISION_DOWNLEVEL_PRIV_SUPPORT","features":[448]},{"name":"NETSETUP_PROVISION_ONLINE_CALLER","features":[448]},{"name":"NETSETUP_PROVISION_PERSISTENTSITE","features":[448]},{"name":"NETSETUP_PROVISION_REUSE_ACCOUNT","features":[448]},{"name":"NETSETUP_PROVISION_ROOT_CA_CERTS","features":[448]},{"name":"NETSETUP_PROVISION_SKIP_ACCOUNT_SEARCH","features":[448]},{"name":"NETSETUP_PROVISION_USE_DEFAULT_PASSWORD","features":[448]},{"name":"NETSETUP_SET_MACHINE_NAME","features":[448]},{"name":"NETSETUP_WIN9X_UPGRADE","features":[448]},{"name":"NETWORK_INSTALL_TIME","features":[448]},{"name":"NETWORK_NAME","features":[448]},{"name":"NETWORK_UPGRADE_TYPE","features":[448]},{"name":"NET_COMPUTER_NAME_TYPE","features":[448]},{"name":"NET_DFS_ENUM","features":[448]},{"name":"NET_DFS_ENUMEX","features":[448]},{"name":"NET_DISPLAY_GROUP","features":[448]},{"name":"NET_DISPLAY_MACHINE","features":[448]},{"name":"NET_DISPLAY_USER","features":[448]},{"name":"NET_IGNORE_UNSUPPORTED_FLAGS","features":[448]},{"name":"NET_JOIN_DOMAIN_JOIN_OPTIONS","features":[448]},{"name":"NET_REMOTE_COMPUTER_SUPPORTS_OPTIONS","features":[448]},{"name":"NET_REQUEST_PROVISION_OPTIONS","features":[448]},{"name":"NET_SERVER_TYPE","features":[448]},{"name":"NET_USER_ENUM_FILTER_FLAGS","features":[448]},{"name":"NET_VALIDATE_AUTHENTICATION_INPUT_ARG","features":[305,448]},{"name":"NET_VALIDATE_BAD_PASSWORD_COUNT","features":[448]},{"name":"NET_VALIDATE_BAD_PASSWORD_TIME","features":[448]},{"name":"NET_VALIDATE_LOCKOUT_TIME","features":[448]},{"name":"NET_VALIDATE_OUTPUT_ARG","features":[305,448]},{"name":"NET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG","features":[305,448]},{"name":"NET_VALIDATE_PASSWORD_HASH","features":[448]},{"name":"NET_VALIDATE_PASSWORD_HISTORY","features":[448]},{"name":"NET_VALIDATE_PASSWORD_HISTORY_LENGTH","features":[448]},{"name":"NET_VALIDATE_PASSWORD_LAST_SET","features":[448]},{"name":"NET_VALIDATE_PASSWORD_RESET_INPUT_ARG","features":[305,448]},{"name":"NET_VALIDATE_PASSWORD_TYPE","features":[448]},{"name":"NET_VALIDATE_PERSISTED_FIELDS","features":[305,448]},{"name":"NON_VALIDATED_LOGON","features":[448]},{"name":"NOT_A_DFS_PATH","features":[448]},{"name":"NO_PERMISSION_REQUIRED","features":[448]},{"name":"NSF_COMPONENT_UPDATE","features":[448]},{"name":"NSF_POSTSYSINSTALL","features":[448]},{"name":"NSF_PRIMARYINSTALL","features":[448]},{"name":"NSF_WIN16_UPGRADE","features":[448]},{"name":"NSF_WIN95_UPGRADE","features":[448]},{"name":"NSF_WINNT_SBS_UPGRADE","features":[448]},{"name":"NSF_WINNT_SVR_UPGRADE","features":[448]},{"name":"NSF_WINNT_WKS_UPGRADE","features":[448]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_CONN","features":[448]},{"name":"NTFRSPRF_COLLECT_RPC_BINDING_ERROR_SET","features":[448]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_CONN","features":[448]},{"name":"NTFRSPRF_COLLECT_RPC_CALL_ERROR_SET","features":[448]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_CONN","features":[448]},{"name":"NTFRSPRF_OPEN_RPC_BINDING_ERROR_SET","features":[448]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_CONN","features":[448]},{"name":"NTFRSPRF_OPEN_RPC_CALL_ERROR_SET","features":[448]},{"name":"NTFRSPRF_REGISTRY_ERROR_CONN","features":[448]},{"name":"NTFRSPRF_REGISTRY_ERROR_SET","features":[448]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_CONN","features":[448]},{"name":"NTFRSPRF_VIRTUALALLOC_ERROR_SET","features":[448]},{"name":"NULL_USERSETINFO_PASSWD","features":[448]},{"name":"NWSAP_DISPLAY_NAME","features":[448]},{"name":"NWSAP_EVENT_BADWANFILTER_VALUE","features":[448]},{"name":"NWSAP_EVENT_BIND_FAILED","features":[448]},{"name":"NWSAP_EVENT_CARDLISTEVENT_FAIL","features":[448]},{"name":"NWSAP_EVENT_CARDMALLOC_FAILED","features":[448]},{"name":"NWSAP_EVENT_CREATELPCEVENT_ERROR","features":[448]},{"name":"NWSAP_EVENT_CREATELPCPORT_ERROR","features":[448]},{"name":"NWSAP_EVENT_GETSOCKNAME_FAILED","features":[448]},{"name":"NWSAP_EVENT_HASHTABLE_MALLOC_FAILED","features":[448]},{"name":"NWSAP_EVENT_INVALID_FILTERNAME","features":[448]},{"name":"NWSAP_EVENT_KEY_NOT_FOUND","features":[448]},{"name":"NWSAP_EVENT_LPCHANDLEMEMORY_ERROR","features":[448]},{"name":"NWSAP_EVENT_LPCLISTENMEMORY_ERROR","features":[448]},{"name":"NWSAP_EVENT_NOCARDS","features":[448]},{"name":"NWSAP_EVENT_OPTBCASTINADDR_FAILED","features":[448]},{"name":"NWSAP_EVENT_OPTEXTENDEDADDR_FAILED","features":[448]},{"name":"NWSAP_EVENT_OPTMAXADAPTERNUM_ERROR","features":[448]},{"name":"NWSAP_EVENT_RECVSEM_FAIL","features":[448]},{"name":"NWSAP_EVENT_SDMDEVENT_FAIL","features":[448]},{"name":"NWSAP_EVENT_SENDEVENT_FAIL","features":[448]},{"name":"NWSAP_EVENT_SETOPTBCAST_FAILED","features":[448]},{"name":"NWSAP_EVENT_SOCKET_FAILED","features":[448]},{"name":"NWSAP_EVENT_STARTLPCWORKER_ERROR","features":[448]},{"name":"NWSAP_EVENT_STARTRECEIVE_ERROR","features":[448]},{"name":"NWSAP_EVENT_STARTWANCHECK_ERROR","features":[448]},{"name":"NWSAP_EVENT_STARTWANWORKER_ERROR","features":[448]},{"name":"NWSAP_EVENT_STARTWORKER_ERROR","features":[448]},{"name":"NWSAP_EVENT_TABLE_MALLOC_FAILED","features":[448]},{"name":"NWSAP_EVENT_THREADEVENT_FAIL","features":[448]},{"name":"NWSAP_EVENT_WANBIND_FAILED","features":[448]},{"name":"NWSAP_EVENT_WANEVENT_ERROR","features":[448]},{"name":"NWSAP_EVENT_WANHANDLEMEMORY_ERROR","features":[448]},{"name":"NWSAP_EVENT_WANSEM_FAIL","features":[448]},{"name":"NWSAP_EVENT_WANSOCKET_FAILED","features":[448]},{"name":"NWSAP_EVENT_WSASTARTUP_FAILED","features":[448]},{"name":"NetAccessAdd","features":[448]},{"name":"NetAccessDel","features":[448]},{"name":"NetAccessEnum","features":[448]},{"name":"NetAccessGetInfo","features":[448]},{"name":"NetAccessGetUserPerms","features":[448]},{"name":"NetAccessSetInfo","features":[448]},{"name":"NetAddAlternateComputerName","features":[448]},{"name":"NetAddServiceAccount","features":[305,448]},{"name":"NetAlertRaise","features":[448]},{"name":"NetAlertRaiseEx","features":[448]},{"name":"NetAllComputerNames","features":[448]},{"name":"NetAlternateComputerNames","features":[448]},{"name":"NetApiBufferAllocate","features":[448]},{"name":"NetApiBufferFree","features":[448]},{"name":"NetApiBufferReallocate","features":[448]},{"name":"NetApiBufferSize","features":[448]},{"name":"NetAuditClear","features":[448]},{"name":"NetAuditRead","features":[448]},{"name":"NetAuditWrite","features":[448]},{"name":"NetComputerNameTypeMax","features":[448]},{"name":"NetConfigGet","features":[448]},{"name":"NetConfigGetAll","features":[448]},{"name":"NetConfigSet","features":[448]},{"name":"NetCreateProvisioningPackage","features":[448]},{"name":"NetEnumerateComputerNames","features":[448]},{"name":"NetEnumerateServiceAccounts","features":[305,448]},{"name":"NetErrorLogClear","features":[448]},{"name":"NetErrorLogRead","features":[448]},{"name":"NetErrorLogWrite","features":[448]},{"name":"NetFreeAadJoinInformation","features":[305,448,389]},{"name":"NetGetAadJoinInformation","features":[305,448,389]},{"name":"NetGetAnyDCName","features":[448]},{"name":"NetGetDCName","features":[448]},{"name":"NetGetDisplayInformationIndex","features":[448]},{"name":"NetGetJoinInformation","features":[448]},{"name":"NetGetJoinableOUs","features":[448]},{"name":"NetGroupAdd","features":[448]},{"name":"NetGroupAddUser","features":[448]},{"name":"NetGroupDel","features":[448]},{"name":"NetGroupDelUser","features":[448]},{"name":"NetGroupEnum","features":[448]},{"name":"NetGroupGetInfo","features":[448]},{"name":"NetGroupGetUsers","features":[448]},{"name":"NetGroupSetInfo","features":[448]},{"name":"NetGroupSetUsers","features":[448]},{"name":"NetIsServiceAccount","features":[305,448]},{"name":"NetJoinDomain","features":[448]},{"name":"NetLocalGroupAdd","features":[448]},{"name":"NetLocalGroupAddMember","features":[448,308]},{"name":"NetLocalGroupAddMembers","features":[448]},{"name":"NetLocalGroupDel","features":[448]},{"name":"NetLocalGroupDelMember","features":[448,308]},{"name":"NetLocalGroupDelMembers","features":[448]},{"name":"NetLocalGroupEnum","features":[448]},{"name":"NetLocalGroupGetInfo","features":[448]},{"name":"NetLocalGroupGetMembers","features":[448]},{"name":"NetLocalGroupSetInfo","features":[448]},{"name":"NetLocalGroupSetMembers","features":[448]},{"name":"NetMessageBufferSend","features":[448]},{"name":"NetMessageNameAdd","features":[448]},{"name":"NetMessageNameDel","features":[448]},{"name":"NetMessageNameEnum","features":[448]},{"name":"NetMessageNameGetInfo","features":[448]},{"name":"NetPrimaryComputerName","features":[448]},{"name":"NetProvisionComputerAccount","features":[448]},{"name":"NetProvisioning","features":[448]},{"name":"NetQueryDisplayInformation","features":[448]},{"name":"NetQueryServiceAccount","features":[305,448]},{"name":"NetRemoteComputerSupports","features":[448]},{"name":"NetRemoteTOD","features":[448]},{"name":"NetRemoveAlternateComputerName","features":[448]},{"name":"NetRemoveServiceAccount","features":[305,448]},{"name":"NetRenameMachineInDomain","features":[448]},{"name":"NetReplExportDirAdd","features":[448]},{"name":"NetReplExportDirDel","features":[448]},{"name":"NetReplExportDirEnum","features":[448]},{"name":"NetReplExportDirGetInfo","features":[448]},{"name":"NetReplExportDirLock","features":[448]},{"name":"NetReplExportDirSetInfo","features":[448]},{"name":"NetReplExportDirUnlock","features":[448]},{"name":"NetReplGetInfo","features":[448]},{"name":"NetReplImportDirAdd","features":[448]},{"name":"NetReplImportDirDel","features":[448]},{"name":"NetReplImportDirEnum","features":[448]},{"name":"NetReplImportDirGetInfo","features":[448]},{"name":"NetReplImportDirLock","features":[448]},{"name":"NetReplImportDirUnlock","features":[448]},{"name":"NetReplSetInfo","features":[448]},{"name":"NetRequestOfflineDomainJoin","features":[448]},{"name":"NetRequestProvisioningPackageInstall","features":[448]},{"name":"NetScheduleJobAdd","features":[448]},{"name":"NetScheduleJobDel","features":[448]},{"name":"NetScheduleJobEnum","features":[448]},{"name":"NetScheduleJobGetInfo","features":[448]},{"name":"NetServerComputerNameAdd","features":[448]},{"name":"NetServerComputerNameDel","features":[448]},{"name":"NetServerDiskEnum","features":[448]},{"name":"NetServerEnum","features":[448]},{"name":"NetServerGetInfo","features":[448]},{"name":"NetServerSetInfo","features":[448]},{"name":"NetServerTransportAdd","features":[448]},{"name":"NetServerTransportAddEx","features":[448]},{"name":"NetServerTransportDel","features":[448]},{"name":"NetServerTransportEnum","features":[448]},{"name":"NetServiceControl","features":[448]},{"name":"NetServiceEnum","features":[448]},{"name":"NetServiceGetInfo","features":[448]},{"name":"NetServiceInstall","features":[448]},{"name":"NetSetPrimaryComputerName","features":[448]},{"name":"NetSetupDnsMachine","features":[448]},{"name":"NetSetupDomain","features":[448]},{"name":"NetSetupDomainName","features":[448]},{"name":"NetSetupMachine","features":[448]},{"name":"NetSetupNonExistentDomain","features":[448]},{"name":"NetSetupUnjoined","features":[448]},{"name":"NetSetupUnknown","features":[448]},{"name":"NetSetupUnknownStatus","features":[448]},{"name":"NetSetupWorkgroup","features":[448]},{"name":"NetSetupWorkgroupName","features":[448]},{"name":"NetUnjoinDomain","features":[448]},{"name":"NetUseAdd","features":[448]},{"name":"NetUseDel","features":[448]},{"name":"NetUseEnum","features":[448]},{"name":"NetUseGetInfo","features":[448]},{"name":"NetUserAdd","features":[448]},{"name":"NetUserChangePassword","features":[448]},{"name":"NetUserDel","features":[448]},{"name":"NetUserEnum","features":[448]},{"name":"NetUserGetGroups","features":[448]},{"name":"NetUserGetInfo","features":[448]},{"name":"NetUserGetLocalGroups","features":[448]},{"name":"NetUserModalsGet","features":[448]},{"name":"NetUserModalsSet","features":[448]},{"name":"NetUserSetGroups","features":[448]},{"name":"NetUserSetInfo","features":[448]},{"name":"NetValidateAuthentication","features":[448]},{"name":"NetValidateName","features":[448]},{"name":"NetValidatePasswordChange","features":[448]},{"name":"NetValidatePasswordPolicy","features":[448]},{"name":"NetValidatePasswordPolicyFree","features":[448]},{"name":"NetValidatePasswordReset","features":[448]},{"name":"NetWkstaGetInfo","features":[448]},{"name":"NetWkstaSetInfo","features":[448]},{"name":"NetWkstaTransportAdd","features":[448]},{"name":"NetWkstaTransportDel","features":[448]},{"name":"NetWkstaTransportEnum","features":[448]},{"name":"NetWkstaUserEnum","features":[448]},{"name":"NetWkstaUserGetInfo","features":[448]},{"name":"NetWkstaUserSetInfo","features":[448]},{"name":"OBO_COMPONENT","features":[448]},{"name":"OBO_SOFTWARE","features":[448]},{"name":"OBO_TOKEN","features":[305,448]},{"name":"OBO_TOKEN_TYPE","features":[448]},{"name":"OBO_USER","features":[448]},{"name":"OS2MSG_FILENAME","features":[448]},{"name":"PARMNUM_ALL","features":[448]},{"name":"PARMNUM_BASE_INFOLEVEL","features":[448]},{"name":"PARM_ERROR_NONE","features":[448]},{"name":"PARM_ERROR_UNKNOWN","features":[448]},{"name":"PASSWORD_EXPIRED","features":[448]},{"name":"PATHLEN","features":[448]},{"name":"PLATFORM_ID_DOS","features":[448]},{"name":"PLATFORM_ID_NT","features":[448]},{"name":"PLATFORM_ID_OS2","features":[448]},{"name":"PLATFORM_ID_OSF","features":[448]},{"name":"PLATFORM_ID_VMS","features":[448]},{"name":"PREFIX_MISMATCH","features":[448]},{"name":"PREFIX_MISMATCH_FIXED","features":[448]},{"name":"PREFIX_MISMATCH_NOT_FIXED","features":[448]},{"name":"PRINT_OTHER_INFO","features":[448]},{"name":"PRJOB_COMPLETE","features":[448]},{"name":"PRJOB_DELETED","features":[448]},{"name":"PRJOB_DESTNOPAPER","features":[448]},{"name":"PRJOB_DESTOFFLINE","features":[448]},{"name":"PRJOB_DESTPAUSED","features":[448]},{"name":"PRJOB_DEVSTATUS","features":[448]},{"name":"PRJOB_ERROR","features":[448]},{"name":"PRJOB_INTERV","features":[448]},{"name":"PRJOB_NOTIFY","features":[448]},{"name":"PRJOB_QSTATUS","features":[448]},{"name":"PRJOB_QS_PAUSED","features":[448]},{"name":"PRJOB_QS_PRINTING","features":[448]},{"name":"PRJOB_QS_QUEUED","features":[448]},{"name":"PRJOB_QS_SPOOLING","features":[448]},{"name":"PROTO_IPV6_DHCP","features":[448]},{"name":"PROTO_IP_ALG","features":[448]},{"name":"PROTO_IP_BGMP","features":[448]},{"name":"PROTO_IP_BOOTP","features":[448]},{"name":"PROTO_IP_DHCP_ALLOCATOR","features":[448]},{"name":"PROTO_IP_DIFFSERV","features":[448]},{"name":"PROTO_IP_DNS_PROXY","features":[448]},{"name":"PROTO_IP_DTP","features":[448]},{"name":"PROTO_IP_FTP","features":[448]},{"name":"PROTO_IP_H323","features":[448]},{"name":"PROTO_IP_IGMP","features":[448]},{"name":"PROTO_IP_MGM","features":[448]},{"name":"PROTO_IP_MSDP","features":[448]},{"name":"PROTO_IP_NAT","features":[448]},{"name":"PROTO_IP_VRRP","features":[448]},{"name":"PROTO_TYPE_MCAST","features":[448]},{"name":"PROTO_TYPE_MS0","features":[448]},{"name":"PROTO_TYPE_MS1","features":[448]},{"name":"PROTO_TYPE_UCAST","features":[448]},{"name":"PROTO_VENDOR_MS0","features":[448]},{"name":"PROTO_VENDOR_MS1","features":[448]},{"name":"PROTO_VENDOR_MS2","features":[448]},{"name":"PWLEN","features":[448]},{"name":"QNLEN","features":[448]},{"name":"RASCON_IPUI","features":[305,448]},{"name":"RASCON_UIINFO_FLAGS","features":[448]},{"name":"RCUIF_DEMAND_DIAL","features":[448]},{"name":"RCUIF_DISABLE_CLASS_BASED_ROUTE","features":[448]},{"name":"RCUIF_ENABLE_NBT","features":[448]},{"name":"RCUIF_NOT_ADMIN","features":[448]},{"name":"RCUIF_USE_DISABLE_REGISTER_DNS","features":[448]},{"name":"RCUIF_USE_HEADER_COMPRESSION","features":[448]},{"name":"RCUIF_USE_IPv4_EXPLICIT_METRIC","features":[448]},{"name":"RCUIF_USE_IPv4_NAME_SERVERS","features":[448]},{"name":"RCUIF_USE_IPv4_REMOTE_GATEWAY","features":[448]},{"name":"RCUIF_USE_IPv4_STATICADDRESS","features":[448]},{"name":"RCUIF_USE_IPv6_EXPLICIT_METRIC","features":[448]},{"name":"RCUIF_USE_IPv6_NAME_SERVERS","features":[448]},{"name":"RCUIF_USE_IPv6_REMOTE_GATEWAY","features":[448]},{"name":"RCUIF_USE_IPv6_STATICADDRESS","features":[448]},{"name":"RCUIF_USE_PRIVATE_DNS_SUFFIX","features":[448]},{"name":"RCUIF_VPN","features":[448]},{"name":"REGISTER_PROTOCOL_ENTRY_POINT_STRING","features":[448]},{"name":"REPL_EDIR_INFO_0","features":[448]},{"name":"REPL_EDIR_INFO_1","features":[448]},{"name":"REPL_EDIR_INFO_1000","features":[448]},{"name":"REPL_EDIR_INFO_1001","features":[448]},{"name":"REPL_EDIR_INFO_2","features":[448]},{"name":"REPL_EXPORT_EXTENT_INFOLEVEL","features":[448]},{"name":"REPL_EXPORT_INTEGRITY_INFOLEVEL","features":[448]},{"name":"REPL_EXTENT_FILE","features":[448]},{"name":"REPL_EXTENT_TREE","features":[448]},{"name":"REPL_GUARDTIME_INFOLEVEL","features":[448]},{"name":"REPL_IDIR_INFO_0","features":[448]},{"name":"REPL_IDIR_INFO_1","features":[448]},{"name":"REPL_INFO_0","features":[448]},{"name":"REPL_INFO_1000","features":[448]},{"name":"REPL_INFO_1001","features":[448]},{"name":"REPL_INFO_1002","features":[448]},{"name":"REPL_INFO_1003","features":[448]},{"name":"REPL_INTEGRITY_FILE","features":[448]},{"name":"REPL_INTEGRITY_TREE","features":[448]},{"name":"REPL_INTERVAL_INFOLEVEL","features":[448]},{"name":"REPL_PULSE_INFOLEVEL","features":[448]},{"name":"REPL_RANDOM_INFOLEVEL","features":[448]},{"name":"REPL_ROLE_BOTH","features":[448]},{"name":"REPL_ROLE_EXPORT","features":[448]},{"name":"REPL_ROLE_IMPORT","features":[448]},{"name":"REPL_STATE_NEVER_REPLICATED","features":[448]},{"name":"REPL_STATE_NO_MASTER","features":[448]},{"name":"REPL_STATE_NO_SYNC","features":[448]},{"name":"REPL_STATE_OK","features":[448]},{"name":"REPL_UNLOCK_FORCE","features":[448]},{"name":"REPL_UNLOCK_NOFORCE","features":[448]},{"name":"RF_ADD_ALL_INTERFACES","features":[448]},{"name":"RF_DEMAND_UPDATE_ROUTES","features":[448]},{"name":"RF_MULTICAST","features":[448]},{"name":"RF_POWER","features":[448]},{"name":"RF_ROUTING","features":[448]},{"name":"RF_ROUTINGV6","features":[448]},{"name":"RIS_INTERFACE_ADDRESS_CHANGE","features":[448]},{"name":"RIS_INTERFACE_DISABLED","features":[448]},{"name":"RIS_INTERFACE_ENABLED","features":[448]},{"name":"RIS_INTERFACE_MEDIA_ABSENT","features":[448]},{"name":"RIS_INTERFACE_MEDIA_PRESENT","features":[448]},{"name":"ROUTING_DOMAIN_INFO_REVISION_1","features":[448]},{"name":"RTR_INFO_BLOCK_HEADER","features":[448]},{"name":"RTR_INFO_BLOCK_VERSION","features":[448]},{"name":"RTR_TOC_ENTRY","features":[448]},{"name":"RTUTILS_MAX_PROTOCOL_DLL_LEN","features":[448]},{"name":"RTUTILS_MAX_PROTOCOL_NAME_LEN","features":[448]},{"name":"RouterAssert","features":[448]},{"name":"RouterGetErrorStringA","features":[448]},{"name":"RouterGetErrorStringW","features":[448]},{"name":"RouterLogDeregisterA","features":[305,448]},{"name":"RouterLogDeregisterW","features":[305,448]},{"name":"RouterLogEventA","features":[305,448]},{"name":"RouterLogEventDataA","features":[305,448]},{"name":"RouterLogEventDataW","features":[305,448]},{"name":"RouterLogEventExA","features":[305,448]},{"name":"RouterLogEventExW","features":[305,448]},{"name":"RouterLogEventStringA","features":[305,448]},{"name":"RouterLogEventStringW","features":[305,448]},{"name":"RouterLogEventValistExA","features":[305,448]},{"name":"RouterLogEventValistExW","features":[305,448]},{"name":"RouterLogEventW","features":[305,448]},{"name":"RouterLogRegisterA","features":[305,448]},{"name":"RouterLogRegisterW","features":[305,448]},{"name":"SERVCE_LM20_W32TIME","features":[448]},{"name":"SERVER_DISPLAY_NAME","features":[448]},{"name":"SERVER_INFO_100","features":[448]},{"name":"SERVER_INFO_1005","features":[448]},{"name":"SERVER_INFO_101","features":[448]},{"name":"SERVER_INFO_1010","features":[448]},{"name":"SERVER_INFO_1016","features":[448]},{"name":"SERVER_INFO_1017","features":[448]},{"name":"SERVER_INFO_1018","features":[448]},{"name":"SERVER_INFO_102","features":[448]},{"name":"SERVER_INFO_103","features":[305,448]},{"name":"SERVER_INFO_1107","features":[448]},{"name":"SERVER_INFO_1501","features":[448]},{"name":"SERVER_INFO_1502","features":[448]},{"name":"SERVER_INFO_1503","features":[448]},{"name":"SERVER_INFO_1506","features":[448]},{"name":"SERVER_INFO_1509","features":[448]},{"name":"SERVER_INFO_1510","features":[448]},{"name":"SERVER_INFO_1511","features":[448]},{"name":"SERVER_INFO_1512","features":[448]},{"name":"SERVER_INFO_1513","features":[448]},{"name":"SERVER_INFO_1514","features":[305,448]},{"name":"SERVER_INFO_1515","features":[305,448]},{"name":"SERVER_INFO_1516","features":[305,448]},{"name":"SERVER_INFO_1518","features":[305,448]},{"name":"SERVER_INFO_1520","features":[448]},{"name":"SERVER_INFO_1521","features":[448]},{"name":"SERVER_INFO_1522","features":[448]},{"name":"SERVER_INFO_1523","features":[448]},{"name":"SERVER_INFO_1524","features":[448]},{"name":"SERVER_INFO_1525","features":[448]},{"name":"SERVER_INFO_1528","features":[448]},{"name":"SERVER_INFO_1529","features":[448]},{"name":"SERVER_INFO_1530","features":[448]},{"name":"SERVER_INFO_1533","features":[448]},{"name":"SERVER_INFO_1534","features":[448]},{"name":"SERVER_INFO_1535","features":[448]},{"name":"SERVER_INFO_1536","features":[305,448]},{"name":"SERVER_INFO_1537","features":[305,448]},{"name":"SERVER_INFO_1538","features":[305,448]},{"name":"SERVER_INFO_1539","features":[305,448]},{"name":"SERVER_INFO_1540","features":[305,448]},{"name":"SERVER_INFO_1541","features":[305,448]},{"name":"SERVER_INFO_1542","features":[305,448]},{"name":"SERVER_INFO_1543","features":[448]},{"name":"SERVER_INFO_1544","features":[448]},{"name":"SERVER_INFO_1545","features":[448]},{"name":"SERVER_INFO_1546","features":[448]},{"name":"SERVER_INFO_1547","features":[448]},{"name":"SERVER_INFO_1548","features":[448]},{"name":"SERVER_INFO_1549","features":[448]},{"name":"SERVER_INFO_1550","features":[448]},{"name":"SERVER_INFO_1552","features":[448]},{"name":"SERVER_INFO_1553","features":[448]},{"name":"SERVER_INFO_1554","features":[448]},{"name":"SERVER_INFO_1555","features":[448]},{"name":"SERVER_INFO_1556","features":[448]},{"name":"SERVER_INFO_1557","features":[448]},{"name":"SERVER_INFO_1560","features":[448]},{"name":"SERVER_INFO_1561","features":[448]},{"name":"SERVER_INFO_1562","features":[448]},{"name":"SERVER_INFO_1563","features":[448]},{"name":"SERVER_INFO_1564","features":[448]},{"name":"SERVER_INFO_1565","features":[448]},{"name":"SERVER_INFO_1566","features":[305,448]},{"name":"SERVER_INFO_1567","features":[448]},{"name":"SERVER_INFO_1568","features":[448]},{"name":"SERVER_INFO_1569","features":[448]},{"name":"SERVER_INFO_1570","features":[448]},{"name":"SERVER_INFO_1571","features":[448]},{"name":"SERVER_INFO_1572","features":[448]},{"name":"SERVER_INFO_1573","features":[448]},{"name":"SERVER_INFO_1574","features":[448]},{"name":"SERVER_INFO_1575","features":[448]},{"name":"SERVER_INFO_1576","features":[448]},{"name":"SERVER_INFO_1577","features":[448]},{"name":"SERVER_INFO_1578","features":[448]},{"name":"SERVER_INFO_1579","features":[448]},{"name":"SERVER_INFO_1580","features":[448]},{"name":"SERVER_INFO_1581","features":[448]},{"name":"SERVER_INFO_1582","features":[448]},{"name":"SERVER_INFO_1583","features":[448]},{"name":"SERVER_INFO_1584","features":[448]},{"name":"SERVER_INFO_1585","features":[305,448]},{"name":"SERVER_INFO_1586","features":[448]},{"name":"SERVER_INFO_1587","features":[448]},{"name":"SERVER_INFO_1588","features":[448]},{"name":"SERVER_INFO_1590","features":[448]},{"name":"SERVER_INFO_1591","features":[448]},{"name":"SERVER_INFO_1592","features":[448]},{"name":"SERVER_INFO_1593","features":[448]},{"name":"SERVER_INFO_1594","features":[448]},{"name":"SERVER_INFO_1595","features":[448]},{"name":"SERVER_INFO_1596","features":[448]},{"name":"SERVER_INFO_1597","features":[448]},{"name":"SERVER_INFO_1598","features":[448]},{"name":"SERVER_INFO_1599","features":[305,448]},{"name":"SERVER_INFO_1600","features":[305,448]},{"name":"SERVER_INFO_1601","features":[448]},{"name":"SERVER_INFO_1602","features":[305,448]},{"name":"SERVER_INFO_402","features":[448]},{"name":"SERVER_INFO_403","features":[448]},{"name":"SERVER_INFO_502","features":[305,448]},{"name":"SERVER_INFO_503","features":[305,448]},{"name":"SERVER_INFO_598","features":[305,448]},{"name":"SERVER_INFO_599","features":[305,448]},{"name":"SERVER_INFO_HIDDEN","features":[448]},{"name":"SERVER_INFO_SECURITY","features":[448]},{"name":"SERVER_TRANSPORT_INFO_0","features":[448]},{"name":"SERVER_TRANSPORT_INFO_1","features":[448]},{"name":"SERVER_TRANSPORT_INFO_2","features":[448]},{"name":"SERVER_TRANSPORT_INFO_3","features":[448]},{"name":"SERVICE2_BASE","features":[448]},{"name":"SERVICE_ACCOUNT_FLAG_ADD_AGAINST_RODC","features":[448]},{"name":"SERVICE_ACCOUNT_FLAG_LINK_TO_HOST_ONLY","features":[448]},{"name":"SERVICE_ACCOUNT_FLAG_REMOVE_OFFLINE","features":[448]},{"name":"SERVICE_ACCOUNT_FLAG_UNLINK_FROM_HOST_ONLY","features":[448]},{"name":"SERVICE_ACCOUNT_PASSWORD","features":[448]},{"name":"SERVICE_ACCOUNT_SECRET_PREFIX","features":[448]},{"name":"SERVICE_ADWS","features":[448]},{"name":"SERVICE_AFP","features":[448]},{"name":"SERVICE_ALERTER","features":[448]},{"name":"SERVICE_BASE","features":[448]},{"name":"SERVICE_BROWSER","features":[448]},{"name":"SERVICE_CCP_CHKPT_NUM","features":[448]},{"name":"SERVICE_CCP_NO_HINT","features":[448]},{"name":"SERVICE_CCP_QUERY_HINT","features":[448]},{"name":"SERVICE_CCP_WAIT_TIME","features":[448]},{"name":"SERVICE_CTRL_CONTINUE","features":[448]},{"name":"SERVICE_CTRL_INTERROGATE","features":[448]},{"name":"SERVICE_CTRL_PAUSE","features":[448]},{"name":"SERVICE_CTRL_REDIR_COMM","features":[448]},{"name":"SERVICE_CTRL_REDIR_DISK","features":[448]},{"name":"SERVICE_CTRL_REDIR_PRINT","features":[448]},{"name":"SERVICE_CTRL_UNINSTALL","features":[448]},{"name":"SERVICE_DHCP","features":[448]},{"name":"SERVICE_DNS_CACHE","features":[448]},{"name":"SERVICE_DOS_ENCRYPTION","features":[448]},{"name":"SERVICE_DSROLE","features":[448]},{"name":"SERVICE_INFO_0","features":[448]},{"name":"SERVICE_INFO_1","features":[448]},{"name":"SERVICE_INFO_2","features":[448]},{"name":"SERVICE_INSTALLED","features":[448]},{"name":"SERVICE_INSTALL_PENDING","features":[448]},{"name":"SERVICE_INSTALL_STATE","features":[448]},{"name":"SERVICE_IP_CHKPT_NUM","features":[448]},{"name":"SERVICE_IP_NO_HINT","features":[448]},{"name":"SERVICE_IP_QUERY_HINT","features":[448]},{"name":"SERVICE_IP_WAITTIME_SHIFT","features":[448]},{"name":"SERVICE_IP_WAIT_TIME","features":[448]},{"name":"SERVICE_ISMSERV","features":[448]},{"name":"SERVICE_KDC","features":[448]},{"name":"SERVICE_LM20_AFP","features":[448]},{"name":"SERVICE_LM20_ALERTER","features":[448]},{"name":"SERVICE_LM20_BROWSER","features":[448]},{"name":"SERVICE_LM20_DHCP","features":[448]},{"name":"SERVICE_LM20_DSROLE","features":[448]},{"name":"SERVICE_LM20_ISMSERV","features":[448]},{"name":"SERVICE_LM20_KDC","features":[448]},{"name":"SERVICE_LM20_LMHOSTS","features":[448]},{"name":"SERVICE_LM20_MESSENGER","features":[448]},{"name":"SERVICE_LM20_NBT","features":[448]},{"name":"SERVICE_LM20_NETLOGON","features":[448]},{"name":"SERVICE_LM20_NETPOPUP","features":[448]},{"name":"SERVICE_LM20_NETRUN","features":[448]},{"name":"SERVICE_LM20_NTDS","features":[448]},{"name":"SERVICE_LM20_NTFRS","features":[448]},{"name":"SERVICE_LM20_NWSAP","features":[448]},{"name":"SERVICE_LM20_REPL","features":[448]},{"name":"SERVICE_LM20_RIPL","features":[448]},{"name":"SERVICE_LM20_RPCLOCATOR","features":[448]},{"name":"SERVICE_LM20_SCHEDULE","features":[448]},{"name":"SERVICE_LM20_SERVER","features":[448]},{"name":"SERVICE_LM20_SPOOLER","features":[448]},{"name":"SERVICE_LM20_SQLSERVER","features":[448]},{"name":"SERVICE_LM20_TCPIP","features":[448]},{"name":"SERVICE_LM20_TELNET","features":[448]},{"name":"SERVICE_LM20_TIMESOURCE","features":[448]},{"name":"SERVICE_LM20_TRKSVR","features":[448]},{"name":"SERVICE_LM20_TRKWKS","features":[448]},{"name":"SERVICE_LM20_UPS","features":[448]},{"name":"SERVICE_LM20_WORKSTATION","features":[448]},{"name":"SERVICE_LM20_XACTSRV","features":[448]},{"name":"SERVICE_LMHOSTS","features":[448]},{"name":"SERVICE_MAXTIME","features":[448]},{"name":"SERVICE_MESSENGER","features":[448]},{"name":"SERVICE_NBT","features":[448]},{"name":"SERVICE_NETLOGON","features":[448]},{"name":"SERVICE_NETPOPUP","features":[448]},{"name":"SERVICE_NETRUN","features":[448]},{"name":"SERVICE_NOT_PAUSABLE","features":[448]},{"name":"SERVICE_NOT_UNINSTALLABLE","features":[448]},{"name":"SERVICE_NTDS","features":[448]},{"name":"SERVICE_NTFRS","features":[448]},{"name":"SERVICE_NTIP_WAITTIME_SHIFT","features":[448]},{"name":"SERVICE_NTLMSSP","features":[448]},{"name":"SERVICE_NT_MAXTIME","features":[448]},{"name":"SERVICE_NWCS","features":[448]},{"name":"SERVICE_NWSAP","features":[448]},{"name":"SERVICE_PAUSABLE","features":[448]},{"name":"SERVICE_PAUSE_STATE","features":[448]},{"name":"SERVICE_REDIR_COMM_PAUSED","features":[448]},{"name":"SERVICE_REDIR_DISK_PAUSED","features":[448]},{"name":"SERVICE_REDIR_PAUSED","features":[448]},{"name":"SERVICE_REDIR_PRINT_PAUSED","features":[448]},{"name":"SERVICE_REPL","features":[448]},{"name":"SERVICE_RESRV_MASK","features":[448]},{"name":"SERVICE_RIPL","features":[448]},{"name":"SERVICE_RPCLOCATOR","features":[448]},{"name":"SERVICE_SCHEDULE","features":[448]},{"name":"SERVICE_SERVER","features":[448]},{"name":"SERVICE_SPOOLER","features":[448]},{"name":"SERVICE_SQLSERVER","features":[448]},{"name":"SERVICE_TCPIP","features":[448]},{"name":"SERVICE_TELNET","features":[448]},{"name":"SERVICE_TIMESOURCE","features":[448]},{"name":"SERVICE_TRKSVR","features":[448]},{"name":"SERVICE_TRKWKS","features":[448]},{"name":"SERVICE_UIC_AMBIGPARM","features":[448]},{"name":"SERVICE_UIC_BADPARMVAL","features":[448]},{"name":"SERVICE_UIC_CONFIG","features":[448]},{"name":"SERVICE_UIC_CONFLPARM","features":[448]},{"name":"SERVICE_UIC_DUPPARM","features":[448]},{"name":"SERVICE_UIC_EXEC","features":[448]},{"name":"SERVICE_UIC_FILE","features":[448]},{"name":"SERVICE_UIC_INTERNAL","features":[448]},{"name":"SERVICE_UIC_KILL","features":[448]},{"name":"SERVICE_UIC_MISSPARM","features":[448]},{"name":"SERVICE_UIC_M_ADDPAK","features":[448]},{"name":"SERVICE_UIC_M_ANNOUNCE","features":[448]},{"name":"SERVICE_UIC_M_DATABASE_ERROR","features":[448]},{"name":"SERVICE_UIC_M_DISK","features":[448]},{"name":"SERVICE_UIC_M_ERRLOG","features":[448]},{"name":"SERVICE_UIC_M_FILES","features":[448]},{"name":"SERVICE_UIC_M_FILE_UW","features":[448]},{"name":"SERVICE_UIC_M_LANGROUP","features":[448]},{"name":"SERVICE_UIC_M_LANROOT","features":[448]},{"name":"SERVICE_UIC_M_LAZY","features":[448]},{"name":"SERVICE_UIC_M_LOGS","features":[448]},{"name":"SERVICE_UIC_M_LSA_MACHINE_ACCT","features":[448]},{"name":"SERVICE_UIC_M_MEMORY","features":[448]},{"name":"SERVICE_UIC_M_MSGNAME","features":[448]},{"name":"SERVICE_UIC_M_NETLOGON_AUTH","features":[448]},{"name":"SERVICE_UIC_M_NETLOGON_DC_CFLCT","features":[448]},{"name":"SERVICE_UIC_M_NETLOGON_MPATH","features":[448]},{"name":"SERVICE_UIC_M_NETLOGON_NO_DC","features":[448]},{"name":"SERVICE_UIC_M_NULL","features":[448]},{"name":"SERVICE_UIC_M_PROCESSES","features":[448]},{"name":"SERVICE_UIC_M_REDIR","features":[448]},{"name":"SERVICE_UIC_M_SECURITY","features":[448]},{"name":"SERVICE_UIC_M_SEC_FILE_ERR","features":[448]},{"name":"SERVICE_UIC_M_SERVER","features":[448]},{"name":"SERVICE_UIC_M_SERVER_SEC_ERR","features":[448]},{"name":"SERVICE_UIC_M_THREADS","features":[448]},{"name":"SERVICE_UIC_M_UAS","features":[448]},{"name":"SERVICE_UIC_M_UAS_INVALID_ROLE","features":[448]},{"name":"SERVICE_UIC_M_UAS_MACHINE_ACCT","features":[448]},{"name":"SERVICE_UIC_M_UAS_PROLOG","features":[448]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NMEMB","features":[448]},{"name":"SERVICE_UIC_M_UAS_SERVERS_NOGRP","features":[448]},{"name":"SERVICE_UIC_M_WKSTA","features":[448]},{"name":"SERVICE_UIC_NORMAL","features":[448]},{"name":"SERVICE_UIC_RESOURCE","features":[448]},{"name":"SERVICE_UIC_SUBSERV","features":[448]},{"name":"SERVICE_UIC_SYSTEM","features":[448]},{"name":"SERVICE_UIC_UNKPARM","features":[448]},{"name":"SERVICE_UNINSTALLABLE","features":[448]},{"name":"SERVICE_UNINSTALLED","features":[448]},{"name":"SERVICE_UNINSTALL_PENDING","features":[448]},{"name":"SERVICE_UPS","features":[448]},{"name":"SERVICE_W32TIME","features":[448]},{"name":"SERVICE_WORKSTATION","features":[448]},{"name":"SERVICE_XACTSRV","features":[448]},{"name":"SESSION_CRYPT_KLEN","features":[448]},{"name":"SESSION_PWLEN","features":[448]},{"name":"SHPWLEN","features":[448]},{"name":"SMB_COMPRESSION_INFO","features":[305,448]},{"name":"SMB_TREE_CONNECT_PARAMETERS","features":[448]},{"name":"SMB_USE_OPTION_COMPRESSION_PARAMETERS","features":[448]},{"name":"SNLEN","features":[448]},{"name":"SRV_HASH_GENERATION_ACTIVE","features":[448]},{"name":"SRV_SUPPORT_HASH_GENERATION","features":[448]},{"name":"STD_ALERT","features":[448]},{"name":"STXTLEN","features":[448]},{"name":"SUPPORTS_ANY","features":[448]},{"name":"SUPPORTS_BINDING_INTERFACE_FLAGS","features":[448]},{"name":"SUPPORTS_LOCAL","features":[448]},{"name":"SUPPORTS_REMOTE_ADMIN_PROTOCOL","features":[448]},{"name":"SUPPORTS_RPC","features":[448]},{"name":"SUPPORTS_SAM_PROTOCOL","features":[448]},{"name":"SUPPORTS_UNICODE","features":[448]},{"name":"SVAUD_BADNETLOGON","features":[448]},{"name":"SVAUD_BADSESSLOGON","features":[448]},{"name":"SVAUD_BADUSE","features":[448]},{"name":"SVAUD_GOODNETLOGON","features":[448]},{"name":"SVAUD_GOODSESSLOGON","features":[448]},{"name":"SVAUD_GOODUSE","features":[448]},{"name":"SVAUD_LOGONLIM","features":[448]},{"name":"SVAUD_PERMISSIONS","features":[448]},{"name":"SVAUD_RESOURCE","features":[448]},{"name":"SVAUD_SERVICE","features":[448]},{"name":"SVAUD_USERLIST","features":[448]},{"name":"SVI1_NUM_ELEMENTS","features":[448]},{"name":"SVI2_NUM_ELEMENTS","features":[448]},{"name":"SVI3_NUM_ELEMENTS","features":[448]},{"name":"SVTI2_CLUSTER_DNN_NAME","features":[448]},{"name":"SVTI2_CLUSTER_NAME","features":[448]},{"name":"SVTI2_REMAP_PIPE_NAMES","features":[448]},{"name":"SVTI2_RESERVED1","features":[448]},{"name":"SVTI2_RESERVED2","features":[448]},{"name":"SVTI2_RESERVED3","features":[448]},{"name":"SVTI2_SCOPED_NAME","features":[448]},{"name":"SVTI2_UNICODE_TRANSPORT_ADDRESS","features":[448]},{"name":"SV_ACCEPTDOWNLEVELAPIS_PARMNUM","features":[448]},{"name":"SV_ACCESSALERT_PARMNUM","features":[448]},{"name":"SV_ACTIVELOCKS_PARMNUM","features":[448]},{"name":"SV_ALERTSCHEDULE_PARMNUM","features":[448]},{"name":"SV_ALERTSCHED_PARMNUM","features":[448]},{"name":"SV_ALERTS_PARMNUM","features":[448]},{"name":"SV_ALIST_MTIME_PARMNUM","features":[448]},{"name":"SV_ANNDELTA_PARMNUM","features":[448]},{"name":"SV_ANNOUNCE_PARMNUM","features":[448]},{"name":"SV_AUTOSHARESERVER_PARMNUM","features":[448]},{"name":"SV_AUTOSHAREWKS_PARMNUM","features":[448]},{"name":"SV_BALANCECOUNT_PARMNUM","features":[448]},{"name":"SV_CACHEDDIRECTORYLIMIT_PARMNUM","features":[448]},{"name":"SV_CACHEDOPENLIMIT_PARMNUM","features":[448]},{"name":"SV_CHDEVJOBS_PARMNUM","features":[448]},{"name":"SV_CHDEVQ_PARMNUM","features":[448]},{"name":"SV_COMMENT_PARMNUM","features":[448]},{"name":"SV_CONNECTIONLESSAUTODISC_PARMNUM","features":[448]},{"name":"SV_CONNECTIONNOSESSIONSTIMEOUT_PARMNUM","features":[448]},{"name":"SV_CONNECTIONS_PARMNUM","features":[448]},{"name":"SV_CRITICALTHREADS_PARMNUM","features":[448]},{"name":"SV_DISABLEDOS_PARMNUM","features":[448]},{"name":"SV_DISABLESTRICTNAMECHECKING_PARMNUM","features":[448]},{"name":"SV_DISC_PARMNUM","features":[448]},{"name":"SV_DISKALERT_PARMNUM","features":[448]},{"name":"SV_DISKSPACETHRESHOLD_PARMNUM","features":[448]},{"name":"SV_DOMAIN_PARMNUM","features":[448]},{"name":"SV_ENABLEAUTHENTICATEUSERSHARING_PARMNUM","features":[448]},{"name":"SV_ENABLECOMPRESSION_PARMNUM","features":[448]},{"name":"SV_ENABLEFCBOPENS_PARMNUM","features":[448]},{"name":"SV_ENABLEFORCEDLOGOFF_PARMNUM","features":[448]},{"name":"SV_ENABLEOPLOCKFORCECLOSE_PARMNUM","features":[448]},{"name":"SV_ENABLEOPLOCKS_PARMNUM","features":[448]},{"name":"SV_ENABLERAW_PARMNUM","features":[448]},{"name":"SV_ENABLESECURITYSIGNATURE_PARMNUM","features":[448]},{"name":"SV_ENABLESHAREDNETDRIVES_PARMNUM","features":[448]},{"name":"SV_ENABLESOFTCOMPAT_PARMNUM","features":[448]},{"name":"SV_ENABLEW9XSECURITYSIGNATURE_PARMNUM","features":[448]},{"name":"SV_ENABLEWFW311DIRECTIPX_PARMNUM","features":[448]},{"name":"SV_ENFORCEKERBEROSREAUTHENTICATION_PARMNUM","features":[448]},{"name":"SV_ERRORALERT_PARMNUM","features":[448]},{"name":"SV_ERRORTHRESHOLD_PARMNUM","features":[448]},{"name":"SV_GLIST_MTIME_PARMNUM","features":[448]},{"name":"SV_GUESTACC_PARMNUM","features":[448]},{"name":"SV_HIDDEN","features":[448]},{"name":"SV_HIDDEN_PARMNUM","features":[448]},{"name":"SV_IDLETHREADTIMEOUT_PARMNUM","features":[448]},{"name":"SV_INITCONNTABLE_PARMNUM","features":[448]},{"name":"SV_INITFILETABLE_PARMNUM","features":[448]},{"name":"SV_INITSEARCHTABLE_PARMNUM","features":[448]},{"name":"SV_INITSESSTABLE_PARMNUM","features":[448]},{"name":"SV_INITWORKITEMS_PARMNUM","features":[448]},{"name":"SV_IRPSTACKSIZE_PARMNUM","features":[448]},{"name":"SV_LANMASK_PARMNUM","features":[448]},{"name":"SV_LINKINFOVALIDTIME_PARMNUM","features":[448]},{"name":"SV_LMANNOUNCE_PARMNUM","features":[448]},{"name":"SV_LOCKVIOLATIONDELAY_PARMNUM","features":[448]},{"name":"SV_LOCKVIOLATIONOFFSET_PARMNUM","features":[448]},{"name":"SV_LOCKVIOLATIONRETRIES_PARMNUM","features":[448]},{"name":"SV_LOGONALERT_PARMNUM","features":[448]},{"name":"SV_LOWDISKSPACEMINIMUM_PARMNUM","features":[448]},{"name":"SV_MAXAUDITSZ_PARMNUM","features":[448]},{"name":"SV_MAXCOPYLENGTH_PARMNUM","features":[448]},{"name":"SV_MAXCOPYREADLEN_PARMNUM","features":[448]},{"name":"SV_MAXCOPYWRITELEN_PARMNUM","features":[448]},{"name":"SV_MAXFREECONNECTIONS_PARMNUM","features":[448]},{"name":"SV_MAXFREELFCBS_PARMNUM","features":[448]},{"name":"SV_MAXFREEMFCBS_PARMNUM","features":[448]},{"name":"SV_MAXFREEPAGEDPOOLCHUNKS_PARMNUM","features":[448]},{"name":"SV_MAXFREERFCBS_PARMNUM","features":[448]},{"name":"SV_MAXGLOBALOPENSEARCH_PARMNUM","features":[448]},{"name":"SV_MAXKEEPCOMPLSEARCH_PARMNUM","features":[448]},{"name":"SV_MAXKEEPSEARCH_PARMNUM","features":[448]},{"name":"SV_MAXLINKDELAY_PARMNUM","features":[448]},{"name":"SV_MAXMPXCT_PARMNUM","features":[448]},{"name":"SV_MAXNONPAGEDMEMORYUSAGE_PARMNUM","features":[448]},{"name":"SV_MAXPAGEDMEMORYUSAGE_PARMNUM","features":[448]},{"name":"SV_MAXPAGEDPOOLCHUNKSIZE_PARMNUM","features":[448]},{"name":"SV_MAXRAWBUFLEN_PARMNUM","features":[448]},{"name":"SV_MAXRAWWORKITEMS_PARMNUM","features":[448]},{"name":"SV_MAXTHREADSPERQUEUE_PARMNUM","features":[448]},{"name":"SV_MAXWORKITEMIDLETIME_PARMNUM","features":[448]},{"name":"SV_MAXWORKITEMS_PARMNUM","features":[448]},{"name":"SV_MAX_CMD_LEN","features":[448]},{"name":"SV_MAX_SRV_HEUR_LEN","features":[448]},{"name":"SV_MDLREADSWITCHOVER_PARMNUM","features":[448]},{"name":"SV_MINCLIENTBUFFERSIZE_PARMNUM","features":[448]},{"name":"SV_MINFREECONNECTIONS_PARMNUM","features":[448]},{"name":"SV_MINFREEWORKITEMS_PARMNUM","features":[448]},{"name":"SV_MINKEEPCOMPLSEARCH_PARMNUM","features":[448]},{"name":"SV_MINKEEPSEARCH_PARMNUM","features":[448]},{"name":"SV_MINLINKTHROUGHPUT_PARMNUM","features":[448]},{"name":"SV_MINPAGEDPOOLCHUNKSIZE_PARMNUM","features":[448]},{"name":"SV_MINRCVQUEUE_PARMNUM","features":[448]},{"name":"SV_NAME_PARMNUM","features":[448]},{"name":"SV_NETIOALERT_PARMNUM","features":[448]},{"name":"SV_NETWORKERRORTHRESHOLD_PARMNUM","features":[448]},{"name":"SV_NODISC","features":[448]},{"name":"SV_NUMADMIN_PARMNUM","features":[448]},{"name":"SV_NUMBIGBUF_PARMNUM","features":[448]},{"name":"SV_NUMBLOCKTHREADS_PARMNUM","features":[448]},{"name":"SV_NUMFILETASKS_PARMNUM","features":[448]},{"name":"SV_NUMREQBUF_PARMNUM","features":[448]},{"name":"SV_OPENFILES_PARMNUM","features":[448]},{"name":"SV_OPENSEARCH_PARMNUM","features":[448]},{"name":"SV_OPLOCKBREAKRESPONSEWAIT_PARMNUM","features":[448]},{"name":"SV_OPLOCKBREAKWAIT_PARMNUM","features":[448]},{"name":"SV_OTHERQUEUEAFFINITY_PARMNUM","features":[448]},{"name":"SV_PLATFORM_ID_NT","features":[448]},{"name":"SV_PLATFORM_ID_OS2","features":[448]},{"name":"SV_PLATFORM_ID_PARMNUM","features":[448]},{"name":"SV_PREFERREDAFFINITY_PARMNUM","features":[448]},{"name":"SV_PRODUCTTYPE_PARMNUM","features":[448]},{"name":"SV_QUEUESAMPLESECS_PARMNUM","features":[448]},{"name":"SV_RAWWORKITEMS_PARMNUM","features":[448]},{"name":"SV_REMOVEDUPLICATESEARCHES_PARMNUM","features":[448]},{"name":"SV_REQUIRESECURITYSIGNATURE_PARMNUM","features":[448]},{"name":"SV_RESTRICTNULLSESSACCESS_PARMNUM","features":[448]},{"name":"SV_SCAVQOSINFOUPDATETIME_PARMNUM","features":[448]},{"name":"SV_SCAVTIMEOUT_PARMNUM","features":[448]},{"name":"SV_SECURITY_PARMNUM","features":[448]},{"name":"SV_SENDSFROMPREFERREDPROCESSOR_PARMNUM","features":[448]},{"name":"SV_SERVERSIZE_PARMNUM","features":[448]},{"name":"SV_SESSCONNS_PARMNUM","features":[448]},{"name":"SV_SESSOPENS_PARMNUM","features":[448]},{"name":"SV_SESSREQS_PARMNUM","features":[448]},{"name":"SV_SESSUSERS_PARMNUM","features":[448]},{"name":"SV_SESSVCS_PARMNUM","features":[448]},{"name":"SV_SHARESECURITY","features":[448]},{"name":"SV_SHARES_PARMNUM","features":[448]},{"name":"SV_SHARINGVIOLATIONDELAY_PARMNUM","features":[448]},{"name":"SV_SHARINGVIOLATIONRETRIES_PARMNUM","features":[448]},{"name":"SV_SIZREQBUF_PARMNUM","features":[448]},{"name":"SV_SRVHEURISTICS_PARMNUM","features":[448]},{"name":"SV_THREADCOUNTADD_PARMNUM","features":[448]},{"name":"SV_THREADPRIORITY_PARMNUM","features":[448]},{"name":"SV_TIMESOURCE_PARMNUM","features":[448]},{"name":"SV_TYPE_AFP","features":[448]},{"name":"SV_TYPE_ALL","features":[448]},{"name":"SV_TYPE_ALTERNATE_XPORT","features":[448]},{"name":"SV_TYPE_BACKUP_BROWSER","features":[448]},{"name":"SV_TYPE_CLUSTER_NT","features":[448]},{"name":"SV_TYPE_CLUSTER_VS_NT","features":[448]},{"name":"SV_TYPE_DCE","features":[448]},{"name":"SV_TYPE_DFS","features":[448]},{"name":"SV_TYPE_DIALIN_SERVER","features":[448]},{"name":"SV_TYPE_DOMAIN_BAKCTRL","features":[448]},{"name":"SV_TYPE_DOMAIN_CTRL","features":[448]},{"name":"SV_TYPE_DOMAIN_ENUM","features":[448]},{"name":"SV_TYPE_DOMAIN_MASTER","features":[448]},{"name":"SV_TYPE_DOMAIN_MEMBER","features":[448]},{"name":"SV_TYPE_LOCAL_LIST_ONLY","features":[448]},{"name":"SV_TYPE_MASTER_BROWSER","features":[448]},{"name":"SV_TYPE_NOVELL","features":[448]},{"name":"SV_TYPE_NT","features":[448]},{"name":"SV_TYPE_PARMNUM","features":[448]},{"name":"SV_TYPE_POTENTIAL_BROWSER","features":[448]},{"name":"SV_TYPE_PRINTQ_SERVER","features":[448]},{"name":"SV_TYPE_SERVER","features":[448]},{"name":"SV_TYPE_SERVER_MFPN","features":[448]},{"name":"SV_TYPE_SERVER_NT","features":[448]},{"name":"SV_TYPE_SERVER_OSF","features":[448]},{"name":"SV_TYPE_SERVER_UNIX","features":[448]},{"name":"SV_TYPE_SERVER_VMS","features":[448]},{"name":"SV_TYPE_SQLSERVER","features":[448]},{"name":"SV_TYPE_TERMINALSERVER","features":[448]},{"name":"SV_TYPE_TIME_SOURCE","features":[448]},{"name":"SV_TYPE_WFW","features":[448]},{"name":"SV_TYPE_WINDOWS","features":[448]},{"name":"SV_TYPE_WORKSTATION","features":[448]},{"name":"SV_TYPE_XENIX_SERVER","features":[448]},{"name":"SV_ULIST_MTIME_PARMNUM","features":[448]},{"name":"SV_USERPATH_PARMNUM","features":[448]},{"name":"SV_USERSECURITY","features":[448]},{"name":"SV_USERS_PARMNUM","features":[448]},{"name":"SV_USERS_PER_LICENSE","features":[448]},{"name":"SV_VERSION_MAJOR_PARMNUM","features":[448]},{"name":"SV_VERSION_MINOR_PARMNUM","features":[448]},{"name":"SV_VISIBLE","features":[448]},{"name":"SV_XACTMEMSIZE_PARMNUM","features":[448]},{"name":"SW_AUTOPROF_LOAD_MASK","features":[448]},{"name":"SW_AUTOPROF_SAVE_MASK","features":[448]},{"name":"ServiceAccountPasswordGUID","features":[448]},{"name":"SetNetScheduleAccountInformation","features":[448]},{"name":"TIME_OF_DAY_INFO","features":[448]},{"name":"TITLE_SC_MESSAGE_BOX","features":[448]},{"name":"TRACE_NO_STDINFO","features":[448]},{"name":"TRACE_NO_SYNCH","features":[448]},{"name":"TRACE_USE_CONSOLE","features":[448]},{"name":"TRACE_USE_DATE","features":[448]},{"name":"TRACE_USE_FILE","features":[448]},{"name":"TRACE_USE_MASK","features":[448]},{"name":"TRACE_USE_MSEC","features":[448]},{"name":"TRANSPORT_INFO","features":[305,448]},{"name":"TRANSPORT_NAME_PARMNUM","features":[448]},{"name":"TRANSPORT_QUALITYOFSERVICE_PARMNUM","features":[448]},{"name":"TRANSPORT_TYPE","features":[448]},{"name":"TraceDeregisterA","features":[448]},{"name":"TraceDeregisterExA","features":[448]},{"name":"TraceDeregisterExW","features":[448]},{"name":"TraceDeregisterW","features":[448]},{"name":"TraceDumpExA","features":[305,448]},{"name":"TraceDumpExW","features":[305,448]},{"name":"TraceGetConsoleA","features":[305,448]},{"name":"TraceGetConsoleW","features":[305,448]},{"name":"TracePrintfA","features":[448]},{"name":"TracePrintfExA","features":[448]},{"name":"TracePrintfExW","features":[448]},{"name":"TracePrintfW","features":[448]},{"name":"TracePutsExA","features":[448]},{"name":"TracePutsExW","features":[448]},{"name":"TraceRegisterExA","features":[448]},{"name":"TraceRegisterExW","features":[448]},{"name":"TraceVprintfExA","features":[448]},{"name":"TraceVprintfExW","features":[448]},{"name":"UAS_ROLE_BACKUP","features":[448]},{"name":"UAS_ROLE_MEMBER","features":[448]},{"name":"UAS_ROLE_PRIMARY","features":[448]},{"name":"UAS_ROLE_STANDALONE","features":[448]},{"name":"UF_ACCOUNTDISABLE","features":[448]},{"name":"UF_DONT_EXPIRE_PASSWD","features":[448]},{"name":"UF_DONT_REQUIRE_PREAUTH","features":[448]},{"name":"UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[448]},{"name":"UF_HOMEDIR_REQUIRED","features":[448]},{"name":"UF_INTERDOMAIN_TRUST_ACCOUNT","features":[448]},{"name":"UF_LOCKOUT","features":[448]},{"name":"UF_MNS_LOGON_ACCOUNT","features":[448]},{"name":"UF_NORMAL_ACCOUNT","features":[448]},{"name":"UF_NOT_DELEGATED","features":[448]},{"name":"UF_NO_AUTH_DATA_REQUIRED","features":[448]},{"name":"UF_PARTIAL_SECRETS_ACCOUNT","features":[448]},{"name":"UF_PASSWD_CANT_CHANGE","features":[448]},{"name":"UF_PASSWD_NOTREQD","features":[448]},{"name":"UF_PASSWORD_EXPIRED","features":[448]},{"name":"UF_SCRIPT","features":[448]},{"name":"UF_SERVER_TRUST_ACCOUNT","features":[448]},{"name":"UF_SMARTCARD_REQUIRED","features":[448]},{"name":"UF_TEMP_DUPLICATE_ACCOUNT","features":[448]},{"name":"UF_TRUSTED_FOR_DELEGATION","features":[448]},{"name":"UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[448]},{"name":"UF_USE_AES_KEYS","features":[448]},{"name":"UF_USE_DES_KEY_ONLY","features":[448]},{"name":"UF_WORKSTATION_TRUST_ACCOUNT","features":[448]},{"name":"UNCLEN","features":[448]},{"name":"UNITS_PER_DAY","features":[448]},{"name":"UNLEN","features":[448]},{"name":"UPPER_GET_HINT_MASK","features":[448]},{"name":"UPPER_HINT_MASK","features":[448]},{"name":"USER_ACCOUNT_FLAGS","features":[448]},{"name":"USER_ACCT_EXPIRES_PARMNUM","features":[448]},{"name":"USER_AUTH_FLAGS_PARMNUM","features":[448]},{"name":"USER_CODE_PAGE_PARMNUM","features":[448]},{"name":"USER_COMMENT_PARMNUM","features":[448]},{"name":"USER_COUNTRY_CODE_PARMNUM","features":[448]},{"name":"USER_FLAGS_PARMNUM","features":[448]},{"name":"USER_FULL_NAME_PARMNUM","features":[448]},{"name":"USER_HOME_DIR_DRIVE_PARMNUM","features":[448]},{"name":"USER_HOME_DIR_PARMNUM","features":[448]},{"name":"USER_INFO_0","features":[448]},{"name":"USER_INFO_1","features":[448]},{"name":"USER_INFO_10","features":[448]},{"name":"USER_INFO_1003","features":[448]},{"name":"USER_INFO_1005","features":[448]},{"name":"USER_INFO_1006","features":[448]},{"name":"USER_INFO_1007","features":[448]},{"name":"USER_INFO_1008","features":[448]},{"name":"USER_INFO_1009","features":[448]},{"name":"USER_INFO_1010","features":[448]},{"name":"USER_INFO_1011","features":[448]},{"name":"USER_INFO_1012","features":[448]},{"name":"USER_INFO_1013","features":[448]},{"name":"USER_INFO_1014","features":[448]},{"name":"USER_INFO_1017","features":[448]},{"name":"USER_INFO_1018","features":[448]},{"name":"USER_INFO_1020","features":[448]},{"name":"USER_INFO_1023","features":[448]},{"name":"USER_INFO_1024","features":[448]},{"name":"USER_INFO_1025","features":[448]},{"name":"USER_INFO_1051","features":[448]},{"name":"USER_INFO_1052","features":[448]},{"name":"USER_INFO_1053","features":[448]},{"name":"USER_INFO_11","features":[448]},{"name":"USER_INFO_2","features":[448]},{"name":"USER_INFO_20","features":[448]},{"name":"USER_INFO_21","features":[448]},{"name":"USER_INFO_22","features":[448]},{"name":"USER_INFO_23","features":[448,308]},{"name":"USER_INFO_24","features":[305,448,308]},{"name":"USER_INFO_3","features":[448]},{"name":"USER_INFO_4","features":[448,308]},{"name":"USER_LAST_LOGOFF_PARMNUM","features":[448]},{"name":"USER_LAST_LOGON_PARMNUM","features":[448]},{"name":"USER_LOGON_HOURS_PARMNUM","features":[448]},{"name":"USER_LOGON_SERVER_PARMNUM","features":[448]},{"name":"USER_MAX_STORAGE_PARMNUM","features":[448]},{"name":"USER_MODALS_INFO_0","features":[448]},{"name":"USER_MODALS_INFO_1","features":[448]},{"name":"USER_MODALS_INFO_1001","features":[448]},{"name":"USER_MODALS_INFO_1002","features":[448]},{"name":"USER_MODALS_INFO_1003","features":[448]},{"name":"USER_MODALS_INFO_1004","features":[448]},{"name":"USER_MODALS_INFO_1005","features":[448]},{"name":"USER_MODALS_INFO_1006","features":[448]},{"name":"USER_MODALS_INFO_1007","features":[448]},{"name":"USER_MODALS_INFO_2","features":[448,308]},{"name":"USER_MODALS_INFO_3","features":[448]},{"name":"USER_MODALS_ROLES","features":[448]},{"name":"USER_NAME_PARMNUM","features":[448]},{"name":"USER_NUM_LOGONS_PARMNUM","features":[448]},{"name":"USER_OTHER_INFO","features":[448]},{"name":"USER_PAD_PW_COUNT_PARMNUM","features":[448]},{"name":"USER_PARMS_PARMNUM","features":[448]},{"name":"USER_PASSWORD_AGE_PARMNUM","features":[448]},{"name":"USER_PASSWORD_PARMNUM","features":[448]},{"name":"USER_PRIMARY_GROUP_PARMNUM","features":[448]},{"name":"USER_PRIV","features":[448]},{"name":"USER_PRIV_ADMIN","features":[448]},{"name":"USER_PRIV_GUEST","features":[448]},{"name":"USER_PRIV_MASK","features":[448]},{"name":"USER_PRIV_PARMNUM","features":[448]},{"name":"USER_PRIV_USER","features":[448]},{"name":"USER_PROFILE","features":[448]},{"name":"USER_PROFILE_PARMNUM","features":[448]},{"name":"USER_SCRIPT_PATH_PARMNUM","features":[448]},{"name":"USER_UNITS_PER_WEEK_PARMNUM","features":[448]},{"name":"USER_USR_COMMENT_PARMNUM","features":[448]},{"name":"USER_WORKSTATIONS_PARMNUM","features":[448]},{"name":"USE_ASGTYPE_PARMNUM","features":[448]},{"name":"USE_AUTHIDENTITY_PARMNUM","features":[448]},{"name":"USE_CHARDEV","features":[448]},{"name":"USE_CONN","features":[448]},{"name":"USE_DEFAULT_CREDENTIALS","features":[448]},{"name":"USE_DISCONN","features":[448]},{"name":"USE_DISKDEV","features":[448]},{"name":"USE_DOMAINNAME_PARMNUM","features":[448]},{"name":"USE_FLAGS_PARMNUM","features":[448]},{"name":"USE_FLAG_GLOBAL_MAPPING","features":[448]},{"name":"USE_FORCE","features":[448]},{"name":"USE_INFO_0","features":[448]},{"name":"USE_INFO_1","features":[448]},{"name":"USE_INFO_2","features":[448]},{"name":"USE_INFO_3","features":[448]},{"name":"USE_INFO_4","features":[448]},{"name":"USE_INFO_5","features":[448]},{"name":"USE_INFO_ASG_TYPE","features":[448]},{"name":"USE_IPC","features":[448]},{"name":"USE_LOCAL_PARMNUM","features":[448]},{"name":"USE_LOTS_OF_FORCE","features":[448]},{"name":"USE_NETERR","features":[448]},{"name":"USE_NOFORCE","features":[448]},{"name":"USE_OK","features":[448]},{"name":"USE_OPTIONS_PARMNUM","features":[448]},{"name":"USE_OPTION_DEFERRED_CONNECTION_PARAMETERS","features":[448]},{"name":"USE_OPTION_GENERIC","features":[448]},{"name":"USE_OPTION_PROPERTIES","features":[448]},{"name":"USE_OPTION_TRANSPORT_PARAMETERS","features":[448]},{"name":"USE_PASSWORD_PARMNUM","features":[448]},{"name":"USE_PAUSED","features":[448]},{"name":"USE_RECONN","features":[448]},{"name":"USE_REMOTE_PARMNUM","features":[448]},{"name":"USE_SD_PARMNUM","features":[448]},{"name":"USE_SESSLOST","features":[448]},{"name":"USE_SPECIFIC_TRANSPORT","features":[448]},{"name":"USE_SPOOLDEV","features":[448]},{"name":"USE_USERNAME_PARMNUM","features":[448]},{"name":"USE_WILDCARD","features":[448]},{"name":"UseTransportType_None","features":[448]},{"name":"UseTransportType_Quic","features":[448]},{"name":"UseTransportType_Wsk","features":[448]},{"name":"VALIDATED_LOGON","features":[448]},{"name":"VALID_LOGOFF","features":[448]},{"name":"WKSTA_BUFFERNAMEDPIPES_PARMNUM","features":[448]},{"name":"WKSTA_BUFFERREADONLYFILES_PARMNUM","features":[448]},{"name":"WKSTA_BUFFILESWITHDENYWRITE_PARMNUM","features":[448]},{"name":"WKSTA_CACHEFILETIMEOUT_PARMNUM","features":[448]},{"name":"WKSTA_CHARCOUNT_PARMNUM","features":[448]},{"name":"WKSTA_CHARTIME_PARMNUM","features":[448]},{"name":"WKSTA_CHARWAIT_PARMNUM","features":[448]},{"name":"WKSTA_COMPUTERNAME_PARMNUM","features":[448]},{"name":"WKSTA_DORMANTFILELIMIT_PARMNUM","features":[448]},{"name":"WKSTA_ERRLOGSZ_PARMNUM","features":[448]},{"name":"WKSTA_FORCECORECREATEMODE_PARMNUM","features":[448]},{"name":"WKSTA_INFO_100","features":[448]},{"name":"WKSTA_INFO_101","features":[448]},{"name":"WKSTA_INFO_1010","features":[448]},{"name":"WKSTA_INFO_1011","features":[448]},{"name":"WKSTA_INFO_1012","features":[448]},{"name":"WKSTA_INFO_1013","features":[448]},{"name":"WKSTA_INFO_1018","features":[448]},{"name":"WKSTA_INFO_102","features":[448]},{"name":"WKSTA_INFO_1023","features":[448]},{"name":"WKSTA_INFO_1027","features":[448]},{"name":"WKSTA_INFO_1028","features":[448]},{"name":"WKSTA_INFO_1032","features":[448]},{"name":"WKSTA_INFO_1033","features":[448]},{"name":"WKSTA_INFO_1041","features":[448]},{"name":"WKSTA_INFO_1042","features":[448]},{"name":"WKSTA_INFO_1043","features":[448]},{"name":"WKSTA_INFO_1044","features":[448]},{"name":"WKSTA_INFO_1045","features":[448]},{"name":"WKSTA_INFO_1046","features":[448]},{"name":"WKSTA_INFO_1047","features":[448]},{"name":"WKSTA_INFO_1048","features":[305,448]},{"name":"WKSTA_INFO_1049","features":[305,448]},{"name":"WKSTA_INFO_1050","features":[305,448]},{"name":"WKSTA_INFO_1051","features":[305,448]},{"name":"WKSTA_INFO_1052","features":[305,448]},{"name":"WKSTA_INFO_1053","features":[305,448]},{"name":"WKSTA_INFO_1054","features":[305,448]},{"name":"WKSTA_INFO_1055","features":[305,448]},{"name":"WKSTA_INFO_1056","features":[305,448]},{"name":"WKSTA_INFO_1057","features":[305,448]},{"name":"WKSTA_INFO_1058","features":[305,448]},{"name":"WKSTA_INFO_1059","features":[305,448]},{"name":"WKSTA_INFO_1060","features":[305,448]},{"name":"WKSTA_INFO_1061","features":[305,448]},{"name":"WKSTA_INFO_1062","features":[448]},{"name":"WKSTA_INFO_302","features":[448]},{"name":"WKSTA_INFO_402","features":[448]},{"name":"WKSTA_INFO_502","features":[305,448]},{"name":"WKSTA_KEEPCONN_PARMNUM","features":[448]},{"name":"WKSTA_KEEPSEARCH_PARMNUM","features":[448]},{"name":"WKSTA_LANGROUP_PARMNUM","features":[448]},{"name":"WKSTA_LANROOT_PARMNUM","features":[448]},{"name":"WKSTA_LOCKINCREMENT_PARMNUM","features":[448]},{"name":"WKSTA_LOCKMAXIMUM_PARMNUM","features":[448]},{"name":"WKSTA_LOCKQUOTA_PARMNUM","features":[448]},{"name":"WKSTA_LOGGED_ON_USERS_PARMNUM","features":[448]},{"name":"WKSTA_LOGON_DOMAIN_PARMNUM","features":[448]},{"name":"WKSTA_LOGON_SERVER_PARMNUM","features":[448]},{"name":"WKSTA_MAILSLOTS_PARMNUM","features":[448]},{"name":"WKSTA_MAXCMDS_PARMNUM","features":[448]},{"name":"WKSTA_MAXTHREADS_PARMNUM","features":[448]},{"name":"WKSTA_MAXWRKCACHE_PARMNUM","features":[448]},{"name":"WKSTA_NUMALERTS_PARMNUM","features":[448]},{"name":"WKSTA_NUMCHARBUF_PARMNUM","features":[448]},{"name":"WKSTA_NUMDGRAMBUF_PARMNUM","features":[448]},{"name":"WKSTA_NUMSERVICES_PARMNUM","features":[448]},{"name":"WKSTA_NUMWORKBUF_PARMNUM","features":[448]},{"name":"WKSTA_OTH_DOMAINS_PARMNUM","features":[448]},{"name":"WKSTA_PIPEINCREMENT_PARMNUM","features":[448]},{"name":"WKSTA_PIPEMAXIMUM_PARMNUM","features":[448]},{"name":"WKSTA_PLATFORM_ID_PARMNUM","features":[448]},{"name":"WKSTA_PRINTBUFTIME_PARMNUM","features":[448]},{"name":"WKSTA_READAHEADTHRUPUT_PARMNUM","features":[448]},{"name":"WKSTA_SESSTIMEOUT_PARMNUM","features":[448]},{"name":"WKSTA_SIZCHARBUF_PARMNUM","features":[448]},{"name":"WKSTA_SIZERROR_PARMNUM","features":[448]},{"name":"WKSTA_SIZWORKBUF_PARMNUM","features":[448]},{"name":"WKSTA_TRANSPORT_INFO_0","features":[305,448]},{"name":"WKSTA_USE512BYTESMAXTRANSFER_PARMNUM","features":[448]},{"name":"WKSTA_USECLOSEBEHIND_PARMNUM","features":[448]},{"name":"WKSTA_USEENCRYPTION_PARMNUM","features":[448]},{"name":"WKSTA_USELOCKANDREADANDUNLOCK_PARMNUM","features":[448]},{"name":"WKSTA_USEOPPORTUNISTICLOCKING_PARMNUM","features":[448]},{"name":"WKSTA_USERAWREAD_PARMNUM","features":[448]},{"name":"WKSTA_USERAWWRITE_PARMNUM","features":[448]},{"name":"WKSTA_USER_INFO_0","features":[448]},{"name":"WKSTA_USER_INFO_1","features":[448]},{"name":"WKSTA_USER_INFO_1101","features":[448]},{"name":"WKSTA_USEUNLOCKBEHIND_PARMNUM","features":[448]},{"name":"WKSTA_USEWRITERAWWITHDATA_PARMNUM","features":[448]},{"name":"WKSTA_UTILIZENTCACHING_PARMNUM","features":[448]},{"name":"WKSTA_VER_MAJOR_PARMNUM","features":[448]},{"name":"WKSTA_VER_MINOR_PARMNUM","features":[448]},{"name":"WKSTA_WRKHEURISTICS_PARMNUM","features":[448]},{"name":"WORKERFUNCTION","features":[448]},{"name":"WORKSTATION_DISPLAY_NAME","features":[448]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_SCHEMA","features":[448]},{"name":"WZC_PROFILE_API_ERROR_FAILED_TO_LOAD_XML","features":[448]},{"name":"WZC_PROFILE_API_ERROR_INTERNAL","features":[448]},{"name":"WZC_PROFILE_API_ERROR_NOT_SUPPORTED","features":[448]},{"name":"WZC_PROFILE_API_ERROR_XML_VALIDATION_FAILED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ALLOWED_KEY_REQUIRED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_1X_NOT_ENABLED_KEY_PROVIDED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_NOT_APPLICABLE","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_EAP_METHOD_REQUIRED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_AUTH_FOR_CONNECTION_TYPE","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_INVALID_ENCRYPTION_FOR_AUTHMODE","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_NOT_APPLICABLE","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_INDEX_REQUIRED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_KEY_REQUIRED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_ENCRYPTION_NOT_SUPPORTED","features":[448]},{"name":"WZC_PROFILE_CONFIG_ERROR_WPA_NOT_SUPPORTED","features":[448]},{"name":"WZC_PROFILE_SET_ERROR_DUPLICATE_NETWORK","features":[448]},{"name":"WZC_PROFILE_SET_ERROR_MEMORY_ALLOCATION","features":[448]},{"name":"WZC_PROFILE_SET_ERROR_READING_1X_CONFIG","features":[448]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_1X_CONFIG","features":[448]},{"name":"WZC_PROFILE_SET_ERROR_WRITING_WZC_CFG","features":[448]},{"name":"WZC_PROFILE_SUCCESS","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_1X_ENABLED","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_AUTHENTICATION","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_BAD_KEY_INDEX","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_BAD_NETWORK_KEY","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_BAD_SSID","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_BAD_VERSION","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_CONNECTION_TYPE","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_EAP_METHOD","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_ENCRYPTION","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_KEY_INDEX_RANGE","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_KEY_PROVIDED_AUTOMATICALLY","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_NO_VERSION","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_SSID_NOT_FOUND","features":[448]},{"name":"WZC_PROFILE_XML_ERROR_UNSUPPORTED_VERSION","features":[448]}],"454":[{"name":"CMD_ENTRY","features":[305,449]},{"name":"CMD_FLAG_HIDDEN","features":[449]},{"name":"CMD_FLAG_INTERACTIVE","features":[449]},{"name":"CMD_FLAG_LIMIT_MASK","features":[449]},{"name":"CMD_FLAG_LOCAL","features":[449]},{"name":"CMD_FLAG_ONLINE","features":[449]},{"name":"CMD_FLAG_PRIORITY","features":[449]},{"name":"CMD_FLAG_PRIVATE","features":[449]},{"name":"CMD_GROUP_ENTRY","features":[305,449]},{"name":"DEFAULT_CONTEXT_PRIORITY","features":[449]},{"name":"ERROR_CMD_NOT_FOUND","features":[449]},{"name":"ERROR_CONTEXT_ALREADY_REGISTERED","features":[449]},{"name":"ERROR_CONTINUE_IN_PARENT_CONTEXT","features":[449]},{"name":"ERROR_DLL_LOAD_FAILED","features":[449]},{"name":"ERROR_ENTRY_PT_NOT_FOUND","features":[449]},{"name":"ERROR_HELPER_ALREADY_REGISTERED","features":[449]},{"name":"ERROR_INIT_DISPLAY","features":[449]},{"name":"ERROR_INVALID_OPTION_TAG","features":[449]},{"name":"ERROR_INVALID_OPTION_VALUE","features":[449]},{"name":"ERROR_INVALID_SYNTAX","features":[449]},{"name":"ERROR_MISSING_OPTION","features":[449]},{"name":"ERROR_NO_CHANGE","features":[449]},{"name":"ERROR_NO_ENTRIES","features":[449]},{"name":"ERROR_NO_TAG","features":[449]},{"name":"ERROR_OKAY","features":[449]},{"name":"ERROR_PARSING_FAILURE","features":[449]},{"name":"ERROR_PROTOCOL_NOT_IN_TRANSPORT","features":[449]},{"name":"ERROR_SHOW_USAGE","features":[449]},{"name":"ERROR_SUPPRESS_OUTPUT","features":[449]},{"name":"ERROR_TAG_ALREADY_PRESENT","features":[449]},{"name":"ERROR_TRANSPORT_NOT_PRESENT","features":[449]},{"name":"GET_RESOURCE_STRING_FN_NAME","features":[449]},{"name":"MAX_NAME_LEN","features":[449]},{"name":"MatchEnumTag","features":[305,449]},{"name":"MatchToken","features":[305,449]},{"name":"NETSH_ARG_DELIMITER","features":[449]},{"name":"NETSH_CMD_DELIMITER","features":[449]},{"name":"NETSH_COMMIT","features":[449]},{"name":"NETSH_COMMIT_STATE","features":[449]},{"name":"NETSH_ERROR_BASE","features":[449]},{"name":"NETSH_ERROR_END","features":[449]},{"name":"NETSH_FLUSH","features":[449]},{"name":"NETSH_MAX_CMD_TOKEN_LENGTH","features":[449]},{"name":"NETSH_MAX_TOKEN_LENGTH","features":[449]},{"name":"NETSH_SAVE","features":[449]},{"name":"NETSH_UNCOMMIT","features":[449]},{"name":"NETSH_VERSION_50","features":[449]},{"name":"NS_CMD_FLAGS","features":[449]},{"name":"NS_CONTEXT_ATTRIBUTES","features":[305,449]},{"name":"NS_EVENTS","features":[449]},{"name":"NS_EVENT_FROM_N","features":[449]},{"name":"NS_EVENT_FROM_START","features":[449]},{"name":"NS_EVENT_LAST_N","features":[449]},{"name":"NS_EVENT_LAST_SECS","features":[449]},{"name":"NS_EVENT_LOOP","features":[449]},{"name":"NS_GET_EVENT_IDS_FN_NAME","features":[449]},{"name":"NS_HELPER_ATTRIBUTES","features":[449]},{"name":"NS_MODE_CHANGE","features":[449]},{"name":"NS_REQS","features":[449]},{"name":"NS_REQ_ALLOW_MULTIPLE","features":[449]},{"name":"NS_REQ_ONE_OR_MORE","features":[449]},{"name":"NS_REQ_PRESENT","features":[449]},{"name":"NS_REQ_ZERO","features":[449]},{"name":"PFN_CUSTOM_HELP","features":[305,449]},{"name":"PFN_HANDLE_CMD","features":[305,449]},{"name":"PGET_RESOURCE_STRING_FN","features":[449]},{"name":"PNS_CONTEXT_COMMIT_FN","features":[449]},{"name":"PNS_CONTEXT_CONNECT_FN","features":[449]},{"name":"PNS_CONTEXT_DUMP_FN","features":[449]},{"name":"PNS_DLL_INIT_FN","features":[449]},{"name":"PNS_DLL_STOP_FN","features":[449]},{"name":"PNS_HELPER_START_FN","features":[449]},{"name":"PNS_HELPER_STOP_FN","features":[449]},{"name":"PNS_OSVERSIONCHECK","features":[305,449]},{"name":"PreprocessCommand","features":[305,449]},{"name":"PrintError","features":[305,449]},{"name":"PrintMessage","features":[449]},{"name":"PrintMessageFromModule","features":[305,449]},{"name":"RegisterContext","features":[305,449]},{"name":"RegisterHelper","features":[449]},{"name":"TAG_TYPE","features":[305,449]},{"name":"TOKEN_VALUE","features":[449]}],"455":[{"name":"ATTRIBUTE_TYPE","features":[450]},{"name":"AT_BOOLEAN","features":[450]},{"name":"AT_GUID","features":[450]},{"name":"AT_INT16","features":[450]},{"name":"AT_INT32","features":[450]},{"name":"AT_INT64","features":[450]},{"name":"AT_INT8","features":[450]},{"name":"AT_INVALID","features":[450]},{"name":"AT_LIFE_TIME","features":[450]},{"name":"AT_OCTET_STRING","features":[450]},{"name":"AT_SOCKADDR","features":[450]},{"name":"AT_STRING","features":[450]},{"name":"AT_UINT16","features":[450]},{"name":"AT_UINT32","features":[450]},{"name":"AT_UINT64","features":[450]},{"name":"AT_UINT8","features":[450]},{"name":"DF_IMPERSONATION","features":[450]},{"name":"DF_TRACELESS","features":[450]},{"name":"DIAGNOSIS_STATUS","features":[450]},{"name":"DIAG_SOCKADDR","features":[450]},{"name":"DS_CONFIRMED","features":[450]},{"name":"DS_DEFERRED","features":[450]},{"name":"DS_INDETERMINATE","features":[450]},{"name":"DS_NOT_IMPLEMENTED","features":[450]},{"name":"DS_PASSTHROUGH","features":[450]},{"name":"DS_REJECTED","features":[450]},{"name":"DiagnosticsInfo","features":[450]},{"name":"HELPER_ATTRIBUTE","features":[305,450]},{"name":"HYPOTHESIS","features":[305,450]},{"name":"HelperAttributeInfo","features":[450]},{"name":"HypothesisResult","features":[305,450]},{"name":"INetDiagExtensibleHelper","features":[450]},{"name":"INetDiagHelper","features":[450]},{"name":"INetDiagHelperEx","features":[450]},{"name":"INetDiagHelperInfo","features":[450]},{"name":"INetDiagHelperUtilFactory","features":[450]},{"name":"LIFE_TIME","features":[305,450]},{"name":"NDF_ADD_CAPTURE_TRACE","features":[450]},{"name":"NDF_APPLY_INCLUSION_LIST_FILTER","features":[450]},{"name":"NDF_ERROR_START","features":[450]},{"name":"NDF_E_BAD_PARAM","features":[450]},{"name":"NDF_E_CANCELLED","features":[450]},{"name":"NDF_E_DISABLED","features":[450]},{"name":"NDF_E_LENGTH_EXCEEDED","features":[450]},{"name":"NDF_E_NOHELPERCLASS","features":[450]},{"name":"NDF_E_PROBLEM_PRESENT","features":[450]},{"name":"NDF_E_UNKNOWN","features":[450]},{"name":"NDF_E_VALIDATION","features":[450]},{"name":"NDF_INBOUND_FLAG_EDGETRAVERSAL","features":[450]},{"name":"NDF_INBOUND_FLAG_HEALTHCHECK","features":[450]},{"name":"NdfCancelIncident","features":[450]},{"name":"NdfCloseIncident","features":[450]},{"name":"NdfCreateConnectivityIncident","features":[450]},{"name":"NdfCreateDNSIncident","features":[450]},{"name":"NdfCreateGroupingIncident","features":[450,318]},{"name":"NdfCreateIncident","features":[305,450]},{"name":"NdfCreateNetConnectionIncident","features":[450]},{"name":"NdfCreatePnrpIncident","features":[305,450]},{"name":"NdfCreateSharingIncident","features":[450]},{"name":"NdfCreateWebIncident","features":[450]},{"name":"NdfCreateWebIncidentEx","features":[305,450]},{"name":"NdfCreateWinSockIncident","features":[450,318,308]},{"name":"NdfDiagnoseIncident","features":[450]},{"name":"NdfExecuteDiagnosis","features":[305,450]},{"name":"NdfGetTraceFile","features":[450]},{"name":"NdfRepairIncident","features":[450]},{"name":"OCTET_STRING","features":[450]},{"name":"PROBLEM_TYPE","features":[450]},{"name":"PT_DOWN_STREAM_HEALTH","features":[450]},{"name":"PT_HIGHER_UTILIZATION","features":[450]},{"name":"PT_HIGH_UTILIZATION","features":[450]},{"name":"PT_INVALID","features":[450]},{"name":"PT_LOWER_HEALTH","features":[450]},{"name":"PT_LOW_HEALTH","features":[450]},{"name":"PT_UP_STREAM_UTILIZATION","features":[450]},{"name":"RCF_ISCONFIRMED","features":[450]},{"name":"RCF_ISLEAF","features":[450]},{"name":"RCF_ISTHIRDPARTY","features":[450]},{"name":"REPAIR_RISK","features":[450]},{"name":"REPAIR_SCOPE","features":[450]},{"name":"REPAIR_STATUS","features":[450]},{"name":"RF_CONTACT_ADMIN","features":[450]},{"name":"RF_INFORMATION_ONLY","features":[450]},{"name":"RF_REPRO","features":[450]},{"name":"RF_RESERVED","features":[450]},{"name":"RF_RESERVED_CA","features":[450]},{"name":"RF_RESERVED_LNI","features":[450]},{"name":"RF_SHOW_EVENTS","features":[450]},{"name":"RF_UI_ONLY","features":[450]},{"name":"RF_USER_ACTION","features":[450]},{"name":"RF_USER_CONFIRMATION","features":[450]},{"name":"RF_VALIDATE_HELPTOPIC","features":[450]},{"name":"RF_WORKAROUND","features":[450]},{"name":"RR_NORISK","features":[450]},{"name":"RR_NOROLLBACK","features":[450]},{"name":"RR_ROLLBACK","features":[450]},{"name":"RS_APPLICATION","features":[450]},{"name":"RS_DEFERRED","features":[450]},{"name":"RS_NOT_IMPLEMENTED","features":[450]},{"name":"RS_PROCESS","features":[450]},{"name":"RS_REPAIRED","features":[450]},{"name":"RS_SYSTEM","features":[450]},{"name":"RS_UNREPAIRED","features":[450]},{"name":"RS_USER","features":[450]},{"name":"RS_USER_ACTION","features":[450]},{"name":"RepairInfo","features":[450]},{"name":"RepairInfoEx","features":[450]},{"name":"RootCauseInfo","features":[450]},{"name":"ShellCommandInfo","features":[450]},{"name":"UIT_DUI","features":[450]},{"name":"UIT_HELP_PANE","features":[450]},{"name":"UIT_INVALID","features":[450]},{"name":"UIT_NONE","features":[450]},{"name":"UIT_SHELL_COMMAND","features":[450]},{"name":"UI_INFO_TYPE","features":[450]},{"name":"UiInfo","features":[450]}],"456":[{"name":"ACCOUNTINGPROPERTIES","features":[451]},{"name":"ALLOWEDIN8021X","features":[451]},{"name":"ALLOWEDINCONDITION","features":[451]},{"name":"ALLOWEDINPROFILE","features":[451]},{"name":"ALLOWEDINPROXYCONDITION","features":[451]},{"name":"ALLOWEDINPROXYPROFILE","features":[451]},{"name":"ALLOWEDINVPNDIALUP","features":[451]},{"name":"ATTRIBUTEFILTER","features":[451]},{"name":"ATTRIBUTEID","features":[451]},{"name":"ATTRIBUTEINFO","features":[451]},{"name":"ATTRIBUTEPROPERTIES","features":[451]},{"name":"ATTRIBUTERESTRICTIONS","features":[451]},{"name":"ATTRIBUTESYNTAX","features":[451]},{"name":"ATTRIBUTE_FILTER_IEEE_802_1x","features":[451]},{"name":"ATTRIBUTE_FILTER_NONE","features":[451]},{"name":"ATTRIBUTE_FILTER_VPN_DIALUP","features":[451]},{"name":"ATTRIBUTE_MIN_VALUE","features":[451]},{"name":"ATTRIBUTE_UNDEFINED","features":[451]},{"name":"AUTHENTICATION_TYPE","features":[451]},{"name":"AUTHSRV_AUTHORIZATION_VALUE_W","features":[451]},{"name":"AUTHSRV_ENFORCE_NP_FOR_PAP_CHALLENGE_RESPONSE_VALUE_W","features":[451]},{"name":"AUTHSRV_EXTENSIONS_VALUE_W","features":[451]},{"name":"AUTHSRV_PARAMETERS_KEY_W","features":[451]},{"name":"CLIENTPROPERTIES","features":[451]},{"name":"CONDITIONPROPERTIES","features":[451]},{"name":"DATA_STORE_DIRECTORY","features":[451]},{"name":"DATA_STORE_LOCAL","features":[451]},{"name":"DESCRIPTION","features":[451]},{"name":"DICTIONARYPROPERTIES","features":[451]},{"name":"DOMAIN_TYPE_MIXED","features":[451]},{"name":"DOMAIN_TYPE_NONE","features":[451]},{"name":"DOMAIN_TYPE_NT4","features":[451]},{"name":"DOMAIN_TYPE_NT5","features":[451]},{"name":"IASCOMMONPROPERTIES","features":[451]},{"name":"IASCOMPONENTPROPERTIES","features":[451]},{"name":"IASDATASTORE","features":[451]},{"name":"IASDOMAINTYPE","features":[451]},{"name":"IASOSTYPE","features":[451]},{"name":"IASPROPERTIES","features":[451]},{"name":"IAS_ATTRIBUTE_ABSOLUTE_TIME","features":[451]},{"name":"IAS_ATTRIBUTE_ACCEPT_REASON_CODE","features":[451]},{"name":"IAS_ATTRIBUTE_ACCT_PROVIDER_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_ACCT_PROVIDER_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_ALLOWED_CERTIFICATE_EKU","features":[451]},{"name":"IAS_ATTRIBUTE_ALLOW_DIALIN","features":[451]},{"name":"IAS_ATTRIBUTE_AUTHENTICATION_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_AUTH_PROVIDER_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_AUTH_PROVIDER_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_CERTIFICATE_EKU","features":[451]},{"name":"IAS_ATTRIBUTE_CERTIFICATE_THUMBPRINT","features":[451]},{"name":"IAS_ATTRIBUTE_CLEAR_TEXT_PASSWORD","features":[451]},{"name":"IAS_ATTRIBUTE_CLIENT_IP_ADDRESS","features":[451]},{"name":"IAS_ATTRIBUTE_CLIENT_IPv6_ADDRESS","features":[451]},{"name":"IAS_ATTRIBUTE_CLIENT_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_CLIENT_PACKET_HEADER","features":[451]},{"name":"IAS_ATTRIBUTE_CLIENT_QUARANTINE_COMPATIBLE","features":[451]},{"name":"IAS_ATTRIBUTE_CLIENT_UDP_PORT","features":[451]},{"name":"IAS_ATTRIBUTE_CLIENT_VENDOR_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_EAP_CONFIG","features":[451]},{"name":"IAS_ATTRIBUTE_EAP_FRIENDLY_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_EAP_SESSION","features":[451]},{"name":"IAS_ATTRIBUTE_EAP_TYPEID","features":[451]},{"name":"IAS_ATTRIBUTE_EAP_TYPES_CONFIGURED_IN_PROXYPOLICY","features":[451]},{"name":"IAS_ATTRIBUTE_EXTENSION_STATE","features":[451]},{"name":"IAS_ATTRIBUTE_FULLY_QUALIFIED_MACHINE_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_FULLY_QUALIFIED_USER_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_GENERATE_CLASS_ATTRIBUTE","features":[451]},{"name":"IAS_ATTRIBUTE_GENERATE_SESSION_TIMEOUT","features":[451]},{"name":"IAS_ATTRIBUTE_IGNORE_USER_DIALIN_PROPERTIES","features":[451]},{"name":"IAS_ATTRIBUTE_IS_REPLAY","features":[451]},{"name":"IAS_ATTRIBUTE_LOGGING_RESULT","features":[451]},{"name":"IAS_ATTRIBUTE_MACHINE_INVENTORY","features":[451]},{"name":"IAS_ATTRIBUTE_MACHINE_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_MACHINE_NTGROUPS","features":[451]},{"name":"IAS_ATTRIBUTE_MACHINE_TOKEN_GROUPS","features":[451]},{"name":"IAS_ATTRIBUTE_MACHINE_TOKEN_SID","features":[451]},{"name":"IAS_ATTRIBUTE_MACHINE_VALIDATED","features":[451]},{"name":"IAS_ATTRIBUTE_MANIPULATION_RULE","features":[451]},{"name":"IAS_ATTRIBUTE_MANIPULATION_TARGET","features":[451]},{"name":"IAS_ATTRIBUTE_NAME_MAPPED","features":[451]},{"name":"IAS_ATTRIBUTE_NP_ALLOWED_EAP_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_NP_ALLOWED_PORT_TYPES","features":[451]},{"name":"IAS_ATTRIBUTE_NP_AUTHENTICATION_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_NP_CALLED_STATION_ID","features":[451]},{"name":"IAS_ATTRIBUTE_NP_CALLING_STATION_ID","features":[451]},{"name":"IAS_ATTRIBUTE_NP_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_NP_PEAPUPFRONT_ENABLED","features":[451]},{"name":"IAS_ATTRIBUTE_NP_TIME_OF_DAY","features":[451]},{"name":"IAS_ATTRIBUTE_NT4_ACCOUNT_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_NT4_HCAP_ACCOUNT_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_NT4_MACHINE_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_NTGROUPS","features":[451]},{"name":"IAS_ATTRIBUTE_ORIGINAL_USER_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_OVERRIDE_RAP_AUTH","features":[451]},{"name":"IAS_ATTRIBUTE_PACKET_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_PASSPORT_USER_MAPPING_UPN_SUFFIX","features":[451]},{"name":"IAS_ATTRIBUTE_PEAP_CHANNEL_UP","features":[451]},{"name":"IAS_ATTRIBUTE_PEAP_EMBEDDED_EAP_TYPEID","features":[451]},{"name":"IAS_ATTRIBUTE_PEAP_FAST_ROAMED_SESSION","features":[451]},{"name":"IAS_ATTRIBUTE_POLICY_ENFORCED","features":[451]},{"name":"IAS_ATTRIBUTE_POLICY_EVALUATED_SHV","features":[451]},{"name":"IAS_ATTRIBUTE_PROVIDER_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_PROVIDER_TYPE","features":[451]},{"name":"IAS_ATTRIBUTE_PROXY_EAP_CONFIG","features":[451]},{"name":"IAS_ATTRIBUTE_PROXY_POLICY_NAME","features":[451]},{"name":"IAS_ATTRIBUTE_PROXY_RETRY_COUNT","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_FIXUP_SERVERS","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_FIXUP_SERVERS_CONFIGURATION","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SESSION_HANDLE","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SESSION_ID","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SYSTEM_HEALTH_RESULT","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_SYSTEM_HEALTH_VALIDATORS","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_UPDATE_NON_COMPLIANT","features":[451]},{"name":"IAS_ATTRIBUTE_QUARANTINE_URL","features":[451]},{"name":"IAS_ATTRIBUTE_RADIUS_USERNAME_ENCODING_ASCII","features":[451]},{"name":"IAS_ATTRIBUTE_REASON_CODE","features":[451]},{"name":"IAS_ATTRIBUTE_REJECT_REASON_CODE","features":[451]},{"name":"IAS_ATTRIBUTE_REMOTE_RADIUS_TO_WINDOWS_USER_MAPPING","features":[451]},{"name":"IAS_ATTRIBUTE_REMOTE_SERVER_ADDRESS","features":[451]},{"name":"IAS_ATTRIBUTE_REQUEST_ID","features":[451]},{"name":"IAS_ATTRIBUTE_REQUEST_START_TIME","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_MACHINE_HEALTHCHECK_ONLY","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_NP_CALLING_STATION_ID","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_CALLBACK_NUMBER","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_INTERFACE_ID","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_IP_ADDRESS","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_IPv6_PREFIX","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_IPv6_ROUTE","features":[451]},{"name":"IAS_ATTRIBUTE_SAVED_RADIUS_FRAMED_ROUTE","features":[451]},{"name":"IAS_ATTRIBUTE_SERVER_IP_ADDRESS","features":[451]},{"name":"IAS_ATTRIBUTE_SERVER_IPv6_ADDRESS","features":[451]},{"name":"IAS_ATTRIBUTE_SESSION_TIMEOUT","features":[451]},{"name":"IAS_ATTRIBUTE_SHARED_SECRET","features":[451]},{"name":"IAS_ATTRIBUTE_SOH_CARRIER_EAPTLV","features":[451]},{"name":"IAS_ATTRIBUTE_TOKEN_GROUPS","features":[451]},{"name":"IAS_ATTRIBUTE_TUNNEL_TAG","features":[451]},{"name":"IAS_ATTRIBUTE_USER_NTGROUPS","features":[451]},{"name":"IAS_ATTRIBUTE_USER_TOKEN_GROUPS","features":[451]},{"name":"IAS_ATTRIBUTE_USER_TOKEN_SID","features":[451]},{"name":"IAS_AUTH_ARAP","features":[451]},{"name":"IAS_AUTH_CUSTOM","features":[451]},{"name":"IAS_AUTH_EAP","features":[451]},{"name":"IAS_AUTH_INVALID","features":[451]},{"name":"IAS_AUTH_MD5CHAP","features":[451]},{"name":"IAS_AUTH_MSCHAP","features":[451]},{"name":"IAS_AUTH_MSCHAP2","features":[451]},{"name":"IAS_AUTH_MSCHAP2_CPW","features":[451]},{"name":"IAS_AUTH_MSCHAP_CPW","features":[451]},{"name":"IAS_AUTH_NONE","features":[451]},{"name":"IAS_AUTH_PAP","features":[451]},{"name":"IAS_AUTH_PEAP","features":[451]},{"name":"IAS_IDENTITY_NO_DEFAULT","features":[451]},{"name":"IAS_LOGGING_DAILY","features":[451]},{"name":"IAS_LOGGING_MONTHLY","features":[451]},{"name":"IAS_LOGGING_UNLIMITED_SIZE","features":[451]},{"name":"IAS_LOGGING_WEEKLY","features":[451]},{"name":"IAS_LOGGING_WHEN_FILE_SIZE_REACHES","features":[451]},{"name":"IAS_SYNTAX_BOOLEAN","features":[451]},{"name":"IAS_SYNTAX_ENUMERATOR","features":[451]},{"name":"IAS_SYNTAX_INETADDR","features":[451]},{"name":"IAS_SYNTAX_INETADDR6","features":[451]},{"name":"IAS_SYNTAX_INTEGER","features":[451]},{"name":"IAS_SYNTAX_OCTETSTRING","features":[451]},{"name":"IAS_SYNTAX_PROVIDERSPECIFIC","features":[451]},{"name":"IAS_SYNTAX_STRING","features":[451]},{"name":"IAS_SYNTAX_UNSIGNEDINTEGER","features":[451]},{"name":"IAS_SYNTAX_UTCTIME","features":[451]},{"name":"IDENTITY_TYPE","features":[451]},{"name":"IPFILTERPROPERTIES","features":[451]},{"name":"ISdo","features":[451,356]},{"name":"ISdoCollection","features":[451,356]},{"name":"ISdoDictionaryOld","features":[451,356]},{"name":"ISdoMachine","features":[451,356]},{"name":"ISdoMachine2","features":[451,356]},{"name":"ISdoServiceControl","features":[451,356]},{"name":"ITemplateSdo","features":[451,356]},{"name":"LDAPNAME","features":[451]},{"name":"MS_ATTRIBUTE_ACCT_AUTH_TYPE","features":[451]},{"name":"MS_ATTRIBUTE_ACCT_EAP_TYPE","features":[451]},{"name":"MS_ATTRIBUTE_AFW_PROTECTION_LEVEL","features":[451]},{"name":"MS_ATTRIBUTE_AFW_QUARANTINE_ZONE","features":[451]},{"name":"MS_ATTRIBUTE_AZURE_POLICY_ID","features":[451]},{"name":"MS_ATTRIBUTE_CHAP2_CPW","features":[451]},{"name":"MS_ATTRIBUTE_CHAP2_RESPONSE","features":[451]},{"name":"MS_ATTRIBUTE_CHAP2_SUCCESS","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_CHALLENGE","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_CPW1","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_CPW2","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_DOMAIN","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_ERROR","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_LM_ENC_PW","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_MPPE_KEYS","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_NT_ENC_PW","features":[451]},{"name":"MS_ATTRIBUTE_CHAP_RESPONSE","features":[451]},{"name":"MS_ATTRIBUTE_EAP_TLV","features":[451]},{"name":"MS_ATTRIBUTE_EXTENDED_QUARANTINE_STATE","features":[451]},{"name":"MS_ATTRIBUTE_FILTER","features":[451]},{"name":"MS_ATTRIBUTE_HCAP_LOCATION_GROUP_NAME","features":[451]},{"name":"MS_ATTRIBUTE_HCAP_USER_GROUPS","features":[451]},{"name":"MS_ATTRIBUTE_HCAP_USER_NAME","features":[451]},{"name":"MS_ATTRIBUTE_IDENTITY_TYPE","features":[451]},{"name":"MS_ATTRIBUTE_IPV4_REMEDIATION_SERVERS","features":[451]},{"name":"MS_ATTRIBUTE_IPV6_REMEDIATION_SERVERS","features":[451]},{"name":"MS_ATTRIBUTE_IPv6_FILTER","features":[451]},{"name":"MS_ATTRIBUTE_MACHINE_NAME","features":[451]},{"name":"MS_ATTRIBUTE_MPPE_RECV_KEY","features":[451]},{"name":"MS_ATTRIBUTE_MPPE_SEND_KEY","features":[451]},{"name":"MS_ATTRIBUTE_NETWORK_ACCESS_SERVER_TYPE","features":[451]},{"name":"MS_ATTRIBUTE_NOT_QUARANTINE_CAPABLE","features":[451]},{"name":"MS_ATTRIBUTE_PRIMARY_DNS_SERVER","features":[451]},{"name":"MS_ATTRIBUTE_PRIMARY_NBNS_SERVER","features":[451]},{"name":"MS_ATTRIBUTE_QUARANTINE_GRACE_TIME","features":[451]},{"name":"MS_ATTRIBUTE_QUARANTINE_GRACE_TIME_CONFIGURATION","features":[451]},{"name":"MS_ATTRIBUTE_QUARANTINE_IPFILTER","features":[451]},{"name":"MS_ATTRIBUTE_QUARANTINE_SESSION_TIMEOUT","features":[451]},{"name":"MS_ATTRIBUTE_QUARANTINE_SOH","features":[451]},{"name":"MS_ATTRIBUTE_QUARANTINE_STATE","features":[451]},{"name":"MS_ATTRIBUTE_QUARANTINE_USER_CLASS","features":[451]},{"name":"MS_ATTRIBUTE_RAS_CLIENT_NAME","features":[451]},{"name":"MS_ATTRIBUTE_RAS_CLIENT_VERSION","features":[451]},{"name":"MS_ATTRIBUTE_RAS_CORRELATION_ID","features":[451]},{"name":"MS_ATTRIBUTE_RAS_ROUTING_DOMAIN_ID","features":[451]},{"name":"MS_ATTRIBUTE_RAS_VENDOR","features":[451]},{"name":"MS_ATTRIBUTE_RAS_VERSION","features":[451]},{"name":"MS_ATTRIBUTE_SECONDARY_DNS_SERVER","features":[451]},{"name":"MS_ATTRIBUTE_SECONDARY_NBNS_SERVER","features":[451]},{"name":"MS_ATTRIBUTE_SERVICE_CLASS","features":[451]},{"name":"MS_ATTRIBUTE_TSG_DEVICE_REDIRECTION","features":[451]},{"name":"MS_ATTRIBUTE_USER_IPv4_ADDRESS","features":[451]},{"name":"MS_ATTRIBUTE_USER_IPv6_ADDRESS","features":[451]},{"name":"MS_ATTRIBUTE_USER_SECURITY_IDENTITY","features":[451]},{"name":"MULTIVALUED","features":[451]},{"name":"NAME","features":[451]},{"name":"NAMESPROPERTIES","features":[451]},{"name":"NAPPROPERTIES","features":[451]},{"name":"NEW_LOG_FILE_FREQUENCY","features":[451]},{"name":"NTEVENTLOGPROPERTIES","features":[451]},{"name":"NTSAMPROPERTIES","features":[451]},{"name":"POLICYPROPERTIES","features":[451]},{"name":"PRADIUS_EXTENSION_FREE_ATTRIBUTES","features":[451]},{"name":"PRADIUS_EXTENSION_INIT","features":[451]},{"name":"PRADIUS_EXTENSION_PROCESS","features":[451]},{"name":"PRADIUS_EXTENSION_PROCESS_2","features":[451]},{"name":"PRADIUS_EXTENSION_PROCESS_EX","features":[451]},{"name":"PRADIUS_EXTENSION_TERM","features":[451]},{"name":"PROFILEPROPERTIES","features":[451]},{"name":"PROPERTY_ACCOUNTING_DISCARD_REQUEST_ON_FAILURE","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_ACCOUNTING","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_ACCOUNTING_INTERIM","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_AUTHENTICATION","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_AUTHENTICATION_INTERIM","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_DELETE_IF_FULL","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_ENABLE_LOGGING","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_FILE_DIRECTORY","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_FILE_IS_BACKUP","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_IAS1_FORMAT","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_OPEN_NEW_FREQUENCY","features":[451]},{"name":"PROPERTY_ACCOUNTING_LOG_OPEN_NEW_SIZE","features":[451]},{"name":"PROPERTY_ACCOUNTING_SQL_MAX_SESSIONS","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_8021X","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_CONDITION","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_PROFILE","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_PROXY_CONDITION","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_PROXY_PROFILE","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_IN_VPNDIALUP","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_LOG_ORDINAL","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ALLOW_MULTIPLE","features":[451]},{"name":"PROPERTY_ATTRIBUTE_DISPLAY_NAME","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ENUM_FILTERS","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ENUM_NAMES","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ENUM_VALUES","features":[451]},{"name":"PROPERTY_ATTRIBUTE_ID","features":[451]},{"name":"PROPERTY_ATTRIBUTE_IS_ENUMERABLE","features":[451]},{"name":"PROPERTY_ATTRIBUTE_SYNTAX","features":[451]},{"name":"PROPERTY_ATTRIBUTE_VALUE","features":[451]},{"name":"PROPERTY_ATTRIBUTE_VENDOR_ID","features":[451]},{"name":"PROPERTY_ATTRIBUTE_VENDOR_TYPE_ID","features":[451]},{"name":"PROPERTY_CLIENT_ADDRESS","features":[451]},{"name":"PROPERTY_CLIENT_ENABLED","features":[451]},{"name":"PROPERTY_CLIENT_NAS_MANUFACTURER","features":[451]},{"name":"PROPERTY_CLIENT_QUARANTINE_COMPATIBLE","features":[451]},{"name":"PROPERTY_CLIENT_REQUIRE_SIGNATURE","features":[451]},{"name":"PROPERTY_CLIENT_SECRET_TEMPLATE_GUID","features":[451]},{"name":"PROPERTY_CLIENT_SHARED_SECRET","features":[451]},{"name":"PROPERTY_CLIENT_UNUSED","features":[451]},{"name":"PROPERTY_COMPONENT_ID","features":[451]},{"name":"PROPERTY_COMPONENT_PROG_ID","features":[451]},{"name":"PROPERTY_COMPONENT_START","features":[451]},{"name":"PROPERTY_CONDITION_TEXT","features":[451]},{"name":"PROPERTY_DICTIONARY_ATTRIBUTES_COLLECTION","features":[451]},{"name":"PROPERTY_DICTIONARY_LOCATION","features":[451]},{"name":"PROPERTY_EVENTLOG_LOG_APPLICATION_EVENTS","features":[451]},{"name":"PROPERTY_EVENTLOG_LOG_DEBUG","features":[451]},{"name":"PROPERTY_EVENTLOG_LOG_MALFORMED","features":[451]},{"name":"PROPERTY_IAS_AUDITORS_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_POLICIES_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_PROFILES_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_PROTOCOLS_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_PROXYPOLICIES_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_PROXYPROFILES_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_RADIUSSERVERGROUPS_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_REMEDIATIONSERVERGROUPS_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_REQUESTHANDLERS_COLLECTION","features":[451]},{"name":"PROPERTY_IAS_SHVTEMPLATES_COLLECTION","features":[451]},{"name":"PROPERTY_IPFILTER_ATTRIBUTES_COLLECTION","features":[451]},{"name":"PROPERTY_NAMES_REALMS","features":[451]},{"name":"PROPERTY_NAP_POLICIES_COLLECTION","features":[451]},{"name":"PROPERTY_NAS_VENDOR_ID","features":[451]},{"name":"PROPERTY_NTSAM_ALLOW_LM_AUTHENTICATION","features":[451]},{"name":"PROPERTY_POLICY_ACTION","features":[451]},{"name":"PROPERTY_POLICY_CONDITIONS_COLLECTION","features":[451]},{"name":"PROPERTY_POLICY_CONSTRAINT","features":[451]},{"name":"PROPERTY_POLICY_ENABLED","features":[451]},{"name":"PROPERTY_POLICY_MERIT","features":[451]},{"name":"PROPERTY_POLICY_PROFILE_NAME","features":[451]},{"name":"PROPERTY_POLICY_SOURCETAG","features":[451]},{"name":"PROPERTY_POLICY_UNUSED0","features":[451]},{"name":"PROPERTY_POLICY_UNUSED1","features":[451]},{"name":"PROPERTY_PROFILE_ATTRIBUTES_COLLECTION","features":[451]},{"name":"PROPERTY_PROFILE_IPFILTER_TEMPLATE_GUID","features":[451]},{"name":"PROPERTY_PROTOCOL_REQUEST_HANDLER","features":[451]},{"name":"PROPERTY_PROTOCOL_START","features":[451]},{"name":"PROPERTY_RADIUSPROXY_SERVERGROUPS","features":[451]},{"name":"PROPERTY_RADIUSSERVERGROUP_SERVERS_COLLECTION","features":[451]},{"name":"PROPERTY_RADIUSSERVER_ACCT_PORT","features":[451]},{"name":"PROPERTY_RADIUSSERVER_ACCT_SECRET","features":[451]},{"name":"PROPERTY_RADIUSSERVER_ACCT_SECRET_TEMPLATE_GUID","features":[451]},{"name":"PROPERTY_RADIUSSERVER_ADDRESS","features":[451]},{"name":"PROPERTY_RADIUSSERVER_AUTH_PORT","features":[451]},{"name":"PROPERTY_RADIUSSERVER_AUTH_SECRET","features":[451]},{"name":"PROPERTY_RADIUSSERVER_AUTH_SECRET_TEMPLATE_GUID","features":[451]},{"name":"PROPERTY_RADIUSSERVER_BLACKOUT","features":[451]},{"name":"PROPERTY_RADIUSSERVER_FORWARD_ACCT_ONOFF","features":[451]},{"name":"PROPERTY_RADIUSSERVER_MAX_LOST","features":[451]},{"name":"PROPERTY_RADIUSSERVER_PRIORITY","features":[451]},{"name":"PROPERTY_RADIUSSERVER_SEND_SIGNATURE","features":[451]},{"name":"PROPERTY_RADIUSSERVER_TIMEOUT","features":[451]},{"name":"PROPERTY_RADIUSSERVER_WEIGHT","features":[451]},{"name":"PROPERTY_RADIUS_ACCOUNTING_PORT","features":[451]},{"name":"PROPERTY_RADIUS_AUTHENTICATION_PORT","features":[451]},{"name":"PROPERTY_RADIUS_CLIENTS_COLLECTION","features":[451]},{"name":"PROPERTY_RADIUS_VENDORS_COLLECTION","features":[451]},{"name":"PROPERTY_REMEDIATIONSERVERGROUP_SERVERS_COLLECTION","features":[451]},{"name":"PROPERTY_REMEDIATIONSERVERS_SERVERGROUPS","features":[451]},{"name":"PROPERTY_REMEDIATIONSERVER_ADDRESS","features":[451]},{"name":"PROPERTY_REMEDIATIONSERVER_FRIENDLY_NAME","features":[451]},{"name":"PROPERTY_SDO_CLASS","features":[451]},{"name":"PROPERTY_SDO_DATASTORE_NAME","features":[451]},{"name":"PROPERTY_SDO_DESCRIPTION","features":[451]},{"name":"PROPERTY_SDO_ID","features":[451]},{"name":"PROPERTY_SDO_NAME","features":[451]},{"name":"PROPERTY_SDO_OPAQUE","features":[451]},{"name":"PROPERTY_SDO_RESERVED","features":[451]},{"name":"PROPERTY_SDO_START","features":[451]},{"name":"PROPERTY_SDO_TEMPLATE_GUID","features":[451]},{"name":"PROPERTY_SHAREDSECRET_STRING","features":[451]},{"name":"PROPERTY_SHVCONFIG_LIST","features":[451]},{"name":"PROPERTY_SHV_COMBINATION_TYPE","features":[451]},{"name":"PROPERTY_SHV_LIST","features":[451]},{"name":"PROPERTY_SHV_TEMPLATES_COLLECTION","features":[451]},{"name":"PROPERTY_TEMPLATES_CLIENTS_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_IPFILTERS_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_POLICIES_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_PROFILES_COLLECTION","features":[451]},{"name":"PROPERTY_TEMPLATES_PROFILES_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_PROXYPOLICIES_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_PROXYPROFILES_COLLECTION","features":[451]},{"name":"PROPERTY_TEMPLATES_PROXYPROFILES_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_RADIUSSERVERS_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_REMEDIATIONSERVERGROUPS_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_SHAREDSECRETS_TEMPLATES","features":[451]},{"name":"PROPERTY_TEMPLATES_SHVTEMPLATES_TEMPLATES","features":[451]},{"name":"PROPERTY_USER_ALLOW_DIALIN","features":[451]},{"name":"PROPERTY_USER_CALLING_STATION_ID","features":[451]},{"name":"PROPERTY_USER_RADIUS_CALLBACK_NUMBER","features":[451]},{"name":"PROPERTY_USER_RADIUS_FRAMED_INTERFACE_ID","features":[451]},{"name":"PROPERTY_USER_RADIUS_FRAMED_IPV6_PREFIX","features":[451]},{"name":"PROPERTY_USER_RADIUS_FRAMED_IPV6_ROUTE","features":[451]},{"name":"PROPERTY_USER_RADIUS_FRAMED_IP_ADDRESS","features":[451]},{"name":"PROPERTY_USER_RADIUS_FRAMED_ROUTE","features":[451]},{"name":"PROPERTY_USER_SAVED_CALLING_STATION_ID","features":[451]},{"name":"PROPERTY_USER_SAVED_RADIUS_CALLBACK_NUMBER","features":[451]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_INTERFACE_ID","features":[451]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_IPV6_PREFIX","features":[451]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_IPV6_ROUTE","features":[451]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_IP_ADDRESS","features":[451]},{"name":"PROPERTY_USER_SAVED_RADIUS_FRAMED_ROUTE","features":[451]},{"name":"PROPERTY_USER_SERVICE_TYPE","features":[451]},{"name":"PROTOCOLPROPERTIES","features":[451]},{"name":"RADIUSPROPERTIES","features":[451]},{"name":"RADIUSPROXYPROPERTIES","features":[451]},{"name":"RADIUSSERVERGROUPPROPERTIES","features":[451]},{"name":"RADIUSSERVERPROPERTIES","features":[451]},{"name":"RADIUS_ACTION","features":[451]},{"name":"RADIUS_ATTRIBUTE","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_AUTHENTIC","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_DELAY_TIME","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_INPUT_OCTETS","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_INPUT_PACKETS","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_INTERIM_INTERVAL","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_LINK_COUNT","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_MULTI_SSN_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_OUTPUT_OCTETS","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_OUTPUT_PACKETS","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_SESSION_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_SESSION_TIME","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_STATUS_TYPE","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_TERMINATE_CAUSE","features":[451]},{"name":"RADIUS_ATTRIBUTE_ACCT_TUNNEL_CONN","features":[451]},{"name":"RADIUS_ATTRIBUTE_ARAP_CHALLENGE_RESPONSE","features":[451]},{"name":"RADIUS_ATTRIBUTE_ARAP_FEATURES","features":[451]},{"name":"RADIUS_ATTRIBUTE_ARAP_PASSWORD","features":[451]},{"name":"RADIUS_ATTRIBUTE_ARAP_SECURITY","features":[451]},{"name":"RADIUS_ATTRIBUTE_ARAP_SECURITY_DATA","features":[451]},{"name":"RADIUS_ATTRIBUTE_ARAP_ZONE_ACCESS","features":[451]},{"name":"RADIUS_ATTRIBUTE_ARRAY","features":[451]},{"name":"RADIUS_ATTRIBUTE_CALLBACK_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_CALLBACK_NUMBER","features":[451]},{"name":"RADIUS_ATTRIBUTE_CALLED_STATION_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_CALLING_STATION_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_CHAP_CHALLENGE","features":[451]},{"name":"RADIUS_ATTRIBUTE_CHAP_PASSWORD","features":[451]},{"name":"RADIUS_ATTRIBUTE_CLASS","features":[451]},{"name":"RADIUS_ATTRIBUTE_CONFIGURATION_TOKEN","features":[451]},{"name":"RADIUS_ATTRIBUTE_CONNECT_INFO","features":[451]},{"name":"RADIUS_ATTRIBUTE_EAP_MESSAGE","features":[451]},{"name":"RADIUS_ATTRIBUTE_FILTER_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_APPLETALK_LINK","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_APPLETALK_NET","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_APPLETALK_ZONE","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_COMPRESSION","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_INTERFACE_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPX_NETWORK","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IP_ADDRESS","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IP_NETMASK","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPv6_POOL","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPv6_PREFIX","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_IPv6_ROUTE","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_MTU","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_PROTOCOL","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_ROUTE","features":[451]},{"name":"RADIUS_ATTRIBUTE_FRAMED_ROUTING","features":[451]},{"name":"RADIUS_ATTRIBUTE_IDLE_TIMEOUT","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_IP_HOST","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_IPv6_HOST","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_GROUP","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_NODE","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_PORT","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_LAT_SERVICE","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_SERVICE","features":[451]},{"name":"RADIUS_ATTRIBUTE_LOGIN_TCP_PORT","features":[451]},{"name":"RADIUS_ATTRIBUTE_NAS_IDENTIFIER","features":[451]},{"name":"RADIUS_ATTRIBUTE_NAS_IP_ADDRESS","features":[451]},{"name":"RADIUS_ATTRIBUTE_NAS_IPv6_ADDRESS","features":[451]},{"name":"RADIUS_ATTRIBUTE_NAS_PORT","features":[451]},{"name":"RADIUS_ATTRIBUTE_NAS_PORT_TYPE","features":[451]},{"name":"RADIUS_ATTRIBUTE_PASSWORD_RETRY","features":[451]},{"name":"RADIUS_ATTRIBUTE_PORT_LIMIT","features":[451]},{"name":"RADIUS_ATTRIBUTE_PROMPT","features":[451]},{"name":"RADIUS_ATTRIBUTE_PROXY_STATE","features":[451]},{"name":"RADIUS_ATTRIBUTE_REPLY_MESSAGE","features":[451]},{"name":"RADIUS_ATTRIBUTE_SERVICE_TYPE","features":[451]},{"name":"RADIUS_ATTRIBUTE_SESSION_TIMEOUT","features":[451]},{"name":"RADIUS_ATTRIBUTE_SIGNATURE","features":[451]},{"name":"RADIUS_ATTRIBUTE_STATE","features":[451]},{"name":"RADIUS_ATTRIBUTE_TERMINATION_ACTION","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_ASSIGNMENT_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_CLIENT_ENDPT","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_MEDIUM_TYPE","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_PASSWORD","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_PREFERENCE","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_PVT_GROUP_ID","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_SERVER_ENDPT","features":[451]},{"name":"RADIUS_ATTRIBUTE_TUNNEL_TYPE","features":[451]},{"name":"RADIUS_ATTRIBUTE_TYPE","features":[451]},{"name":"RADIUS_ATTRIBUTE_UNASSIGNED1","features":[451]},{"name":"RADIUS_ATTRIBUTE_UNASSIGNED2","features":[451]},{"name":"RADIUS_ATTRIBUTE_USER_NAME","features":[451]},{"name":"RADIUS_ATTRIBUTE_USER_PASSWORD","features":[451]},{"name":"RADIUS_ATTRIBUTE_VENDOR_SPECIFIC","features":[451]},{"name":"RADIUS_AUTHENTICATION_PROVIDER","features":[451]},{"name":"RADIUS_CODE","features":[451]},{"name":"RADIUS_DATA_TYPE","features":[451]},{"name":"RADIUS_EXTENSION_CONTROL_BLOCK","features":[451]},{"name":"RADIUS_EXTENSION_FREE_ATTRIBUTES","features":[451]},{"name":"RADIUS_EXTENSION_INIT","features":[451]},{"name":"RADIUS_EXTENSION_POINT","features":[451]},{"name":"RADIUS_EXTENSION_PROCESS","features":[451]},{"name":"RADIUS_EXTENSION_PROCESS2","features":[451]},{"name":"RADIUS_EXTENSION_PROCESS_EX","features":[451]},{"name":"RADIUS_EXTENSION_TERM","features":[451]},{"name":"RADIUS_EXTENSION_VERSION","features":[451]},{"name":"RADIUS_REJECT_REASON_CODE","features":[451]},{"name":"RADIUS_VSA_FORMAT","features":[451]},{"name":"RAS_ATTRIBUTE_BAP_LINE_DOWN_LIMIT","features":[451]},{"name":"RAS_ATTRIBUTE_BAP_LINE_DOWN_TIME","features":[451]},{"name":"RAS_ATTRIBUTE_BAP_REQUIRED","features":[451]},{"name":"RAS_ATTRIBUTE_ENCRYPTION_POLICY","features":[451]},{"name":"RAS_ATTRIBUTE_ENCRYPTION_TYPE","features":[451]},{"name":"REMEDIATIONSERVERGROUPPROPERTIES","features":[451]},{"name":"REMEDIATIONSERVERPROPERTIES","features":[451]},{"name":"REMEDIATIONSERVERSPROPERTIES","features":[451]},{"name":"RESTRICTIONS","features":[451]},{"name":"SERVICE_TYPE","features":[451]},{"name":"SERVICE_TYPE_IAS","features":[451]},{"name":"SERVICE_TYPE_MAX","features":[451]},{"name":"SERVICE_TYPE_RAMGMTSVC","features":[451]},{"name":"SERVICE_TYPE_RAS","features":[451]},{"name":"SHAREDSECRETPROPERTIES","features":[451]},{"name":"SHVTEMPLATEPROPERTIES","features":[451]},{"name":"SHV_COMBINATION_TYPE","features":[451]},{"name":"SHV_COMBINATION_TYPE_ALL_FAIL","features":[451]},{"name":"SHV_COMBINATION_TYPE_ALL_PASS","features":[451]},{"name":"SHV_COMBINATION_TYPE_MAX","features":[451]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_FAIL","features":[451]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_INFECTED","features":[451]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_PASS","features":[451]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_TRANSITIONAL","features":[451]},{"name":"SHV_COMBINATION_TYPE_ONE_OR_MORE_UNKNOWN","features":[451]},{"name":"SYNTAX","features":[451]},{"name":"SYSTEM_TYPE_NT10_0_SERVER","features":[451]},{"name":"SYSTEM_TYPE_NT10_0_WORKSTATION","features":[451]},{"name":"SYSTEM_TYPE_NT4_SERVER","features":[451]},{"name":"SYSTEM_TYPE_NT4_WORKSTATION","features":[451]},{"name":"SYSTEM_TYPE_NT5_SERVER","features":[451]},{"name":"SYSTEM_TYPE_NT5_WORKSTATION","features":[451]},{"name":"SYSTEM_TYPE_NT6_1_SERVER","features":[451]},{"name":"SYSTEM_TYPE_NT6_1_WORKSTATION","features":[451]},{"name":"SYSTEM_TYPE_NT6_2_SERVER","features":[451]},{"name":"SYSTEM_TYPE_NT6_2_WORKSTATION","features":[451]},{"name":"SYSTEM_TYPE_NT6_3_SERVER","features":[451]},{"name":"SYSTEM_TYPE_NT6_3_WORKSTATION","features":[451]},{"name":"SYSTEM_TYPE_NT6_SERVER","features":[451]},{"name":"SYSTEM_TYPE_NT6_WORKSTATION","features":[451]},{"name":"SdoMachine","features":[451]},{"name":"TEMPLATESPROPERTIES","features":[451]},{"name":"USERPROPERTIES","features":[451]},{"name":"VENDORID","features":[451]},{"name":"VENDORPROPERTIES","features":[451]},{"name":"VENDORTYPE","features":[451]},{"name":"raAccept","features":[451]},{"name":"raContinue","features":[451]},{"name":"raReject","features":[451]},{"name":"rapMCIS","features":[451]},{"name":"rapNone","features":[451]},{"name":"rapODBC","features":[451]},{"name":"rapProxy","features":[451]},{"name":"rapUnknown","features":[451]},{"name":"rapUsersFile","features":[451]},{"name":"rapWindowsNT","features":[451]},{"name":"ratAcctAuthentic","features":[451]},{"name":"ratAcctDelayTime","features":[451]},{"name":"ratAcctInputOctets","features":[451]},{"name":"ratAcctInputPackets","features":[451]},{"name":"ratAcctOutputOctets","features":[451]},{"name":"ratAcctOutputPackets","features":[451]},{"name":"ratAcctSessionId","features":[451]},{"name":"ratAcctSessionTime","features":[451]},{"name":"ratAcctStatusType","features":[451]},{"name":"ratAcctTerminationCause","features":[451]},{"name":"ratAuthenticator","features":[451]},{"name":"ratCHAPChallenge","features":[451]},{"name":"ratCHAPPassword","features":[451]},{"name":"ratCRPPolicyName","features":[451]},{"name":"ratCallbackId","features":[451]},{"name":"ratCallbackNumber","features":[451]},{"name":"ratCalledStationId","features":[451]},{"name":"ratCallingStationId","features":[451]},{"name":"ratCertificateThumbprint","features":[451]},{"name":"ratClass","features":[451]},{"name":"ratClearTextPassword","features":[451]},{"name":"ratCode","features":[451]},{"name":"ratEAPTLV","features":[451]},{"name":"ratExtensionState","features":[451]},{"name":"ratFQUserName","features":[451]},{"name":"ratFilterId","features":[451]},{"name":"ratFramedAppleTalkLink","features":[451]},{"name":"ratFramedAppleTalkNetwork","features":[451]},{"name":"ratFramedAppleTalkZone","features":[451]},{"name":"ratFramedCompression","features":[451]},{"name":"ratFramedIPAddress","features":[451]},{"name":"ratFramedIPNetmask","features":[451]},{"name":"ratFramedIPXNetwork","features":[451]},{"name":"ratFramedIPv6Pool","features":[451]},{"name":"ratFramedIPv6Prefix","features":[451]},{"name":"ratFramedIPv6Route","features":[451]},{"name":"ratFramedInterfaceId","features":[451]},{"name":"ratFramedMTU","features":[451]},{"name":"ratFramedProtocol","features":[451]},{"name":"ratFramedRoute","features":[451]},{"name":"ratFramedRouting","features":[451]},{"name":"ratIdentifier","features":[451]},{"name":"ratIdleTimeout","features":[451]},{"name":"ratLoginIPHost","features":[451]},{"name":"ratLoginIPv6Host","features":[451]},{"name":"ratLoginLATGroup","features":[451]},{"name":"ratLoginLATNode","features":[451]},{"name":"ratLoginLATService","features":[451]},{"name":"ratLoginPort","features":[451]},{"name":"ratLoginService","features":[451]},{"name":"ratMediumType","features":[451]},{"name":"ratMinimum","features":[451]},{"name":"ratNASIPAddress","features":[451]},{"name":"ratNASIPv6Address","features":[451]},{"name":"ratNASIdentifier","features":[451]},{"name":"ratNASPort","features":[451]},{"name":"ratNASPortType","features":[451]},{"name":"ratPolicyName","features":[451]},{"name":"ratPortLimit","features":[451]},{"name":"ratProvider","features":[451]},{"name":"ratProviderName","features":[451]},{"name":"ratProxyState","features":[451]},{"name":"ratRejectReasonCode","features":[451]},{"name":"ratReplyMessage","features":[451]},{"name":"ratServiceType","features":[451]},{"name":"ratSessionTimeout","features":[451]},{"name":"ratSrcIPAddress","features":[451]},{"name":"ratSrcIPv6Address","features":[451]},{"name":"ratSrcPort","features":[451]},{"name":"ratState","features":[451]},{"name":"ratStrippedUserName","features":[451]},{"name":"ratTerminationAction","features":[451]},{"name":"ratTunnelPassword","features":[451]},{"name":"ratTunnelPrivateGroupID","features":[451]},{"name":"ratTunnelType","features":[451]},{"name":"ratUniqueId","features":[451]},{"name":"ratUserName","features":[451]},{"name":"ratUserPassword","features":[451]},{"name":"ratVendorSpecific","features":[451]},{"name":"rcAccessAccept","features":[451]},{"name":"rcAccessChallenge","features":[451]},{"name":"rcAccessReject","features":[451]},{"name":"rcAccessRequest","features":[451]},{"name":"rcAccountingRequest","features":[451]},{"name":"rcAccountingResponse","features":[451]},{"name":"rcDiscard","features":[451]},{"name":"rcUnknown","features":[451]},{"name":"rdtAddress","features":[451]},{"name":"rdtInteger","features":[451]},{"name":"rdtIpv6Address","features":[451]},{"name":"rdtString","features":[451]},{"name":"rdtTime","features":[451]},{"name":"rdtUnknown","features":[451]},{"name":"repAuthentication","features":[451]},{"name":"repAuthorization","features":[451]},{"name":"rrrcAccountDisabled","features":[451]},{"name":"rrrcAccountExpired","features":[451]},{"name":"rrrcAccountUnknown","features":[451]},{"name":"rrrcAuthenticationFailure","features":[451]},{"name":"rrrcUndefined","features":[451]}],"457":[{"name":"DRT_ACTIVE","features":[452]},{"name":"DRT_ADDRESS","features":[452,318]},{"name":"DRT_ADDRESS_FLAGS","features":[452]},{"name":"DRT_ADDRESS_FLAG_ACCEPTED","features":[452]},{"name":"DRT_ADDRESS_FLAG_BAD_VALIDATE_ID","features":[452]},{"name":"DRT_ADDRESS_FLAG_INQUIRE","features":[452]},{"name":"DRT_ADDRESS_FLAG_LOOP","features":[452]},{"name":"DRT_ADDRESS_FLAG_REJECTED","features":[452]},{"name":"DRT_ADDRESS_FLAG_SUSPECT_UNREGISTERED_ID","features":[452]},{"name":"DRT_ADDRESS_FLAG_TOO_BUSY","features":[452]},{"name":"DRT_ADDRESS_FLAG_UNREACHABLE","features":[452]},{"name":"DRT_ADDRESS_LIST","features":[452,318]},{"name":"DRT_ALONE","features":[452]},{"name":"DRT_BOOTSTRAP_PROVIDER","features":[452]},{"name":"DRT_BOOTSTRAP_RESOLVE_CALLBACK","features":[305,452,318]},{"name":"DRT_DATA","features":[452]},{"name":"DRT_EVENT_DATA","features":[452,318]},{"name":"DRT_EVENT_LEAFSET_KEY_CHANGED","features":[452]},{"name":"DRT_EVENT_REGISTRATION_STATE_CHANGED","features":[452]},{"name":"DRT_EVENT_STATUS_CHANGED","features":[452]},{"name":"DRT_EVENT_TYPE","features":[452]},{"name":"DRT_E_BOOTSTRAPPROVIDER_IN_USE","features":[452]},{"name":"DRT_E_BOOTSTRAPPROVIDER_NOT_ATTACHED","features":[452]},{"name":"DRT_E_CAPABILITY_MISMATCH","features":[452]},{"name":"DRT_E_DUPLICATE_KEY","features":[452]},{"name":"DRT_E_FAULTED","features":[452]},{"name":"DRT_E_INSUFFICIENT_BUFFER","features":[452]},{"name":"DRT_E_INVALID_ADDRESS","features":[452]},{"name":"DRT_E_INVALID_BOOTSTRAP_PROVIDER","features":[452]},{"name":"DRT_E_INVALID_CERT_CHAIN","features":[452]},{"name":"DRT_E_INVALID_INSTANCE_PREFIX","features":[452]},{"name":"DRT_E_INVALID_KEY","features":[452]},{"name":"DRT_E_INVALID_KEY_SIZE","features":[452]},{"name":"DRT_E_INVALID_MAX_ADDRESSES","features":[452]},{"name":"DRT_E_INVALID_MAX_ENDPOINTS","features":[452]},{"name":"DRT_E_INVALID_MESSAGE","features":[452]},{"name":"DRT_E_INVALID_PORT","features":[452]},{"name":"DRT_E_INVALID_SCOPE","features":[452]},{"name":"DRT_E_INVALID_SEARCH_INFO","features":[452]},{"name":"DRT_E_INVALID_SEARCH_RANGE","features":[452]},{"name":"DRT_E_INVALID_SECURITY_MODE","features":[452]},{"name":"DRT_E_INVALID_SECURITY_PROVIDER","features":[452]},{"name":"DRT_E_INVALID_SETTINGS","features":[452]},{"name":"DRT_E_INVALID_TRANSPORT_PROVIDER","features":[452]},{"name":"DRT_E_NO_ADDRESSES_AVAILABLE","features":[452]},{"name":"DRT_E_NO_MORE","features":[452]},{"name":"DRT_E_SEARCH_IN_PROGRESS","features":[452]},{"name":"DRT_E_SECURITYPROVIDER_IN_USE","features":[452]},{"name":"DRT_E_SECURITYPROVIDER_NOT_ATTACHED","features":[452]},{"name":"DRT_E_STILL_IN_USE","features":[452]},{"name":"DRT_E_TIMEOUT","features":[452]},{"name":"DRT_E_TRANSPORTPROVIDER_IN_USE","features":[452]},{"name":"DRT_E_TRANSPORTPROVIDER_NOT_ATTACHED","features":[452]},{"name":"DRT_E_TRANSPORT_ALREADY_BOUND","features":[452]},{"name":"DRT_E_TRANSPORT_ALREADY_EXISTS_FOR_SCOPE","features":[452]},{"name":"DRT_E_TRANSPORT_EXECUTING_CALLBACK","features":[452]},{"name":"DRT_E_TRANSPORT_INVALID_ARGUMENT","features":[452]},{"name":"DRT_E_TRANSPORT_NOT_BOUND","features":[452]},{"name":"DRT_E_TRANSPORT_NO_DEST_ADDRESSES","features":[452]},{"name":"DRT_E_TRANSPORT_SHUTTING_DOWN","features":[452]},{"name":"DRT_E_TRANSPORT_STILL_BOUND","features":[452]},{"name":"DRT_E_TRANSPORT_UNEXPECTED","features":[452]},{"name":"DRT_FAULTED","features":[452]},{"name":"DRT_GLOBAL_SCOPE","features":[452]},{"name":"DRT_LEAFSET_KEY_ADDED","features":[452]},{"name":"DRT_LEAFSET_KEY_CHANGE_TYPE","features":[452]},{"name":"DRT_LEAFSET_KEY_DELETED","features":[452]},{"name":"DRT_LINK_LOCAL_ISATAP_SCOPEID","features":[452]},{"name":"DRT_LINK_LOCAL_SCOPE","features":[452]},{"name":"DRT_MATCH_EXACT","features":[452]},{"name":"DRT_MATCH_INTERMEDIATE","features":[452]},{"name":"DRT_MATCH_NEAR","features":[452]},{"name":"DRT_MATCH_TYPE","features":[452]},{"name":"DRT_MAX_INSTANCE_PREFIX_LEN","features":[452]},{"name":"DRT_MAX_PAYLOAD_SIZE","features":[452]},{"name":"DRT_MAX_ROUTING_ADDRESSES","features":[452]},{"name":"DRT_MIN_ROUTING_ADDRESSES","features":[452]},{"name":"DRT_NO_NETWORK","features":[452]},{"name":"DRT_PAYLOAD_REVOKED","features":[452]},{"name":"DRT_REGISTRATION","features":[452]},{"name":"DRT_REGISTRATION_STATE","features":[452]},{"name":"DRT_REGISTRATION_STATE_UNRESOLVEABLE","features":[452]},{"name":"DRT_SCOPE","features":[452]},{"name":"DRT_SEARCH_INFO","features":[305,452]},{"name":"DRT_SEARCH_RESULT","features":[452]},{"name":"DRT_SECURE_CONFIDENTIALPAYLOAD","features":[452]},{"name":"DRT_SECURE_MEMBERSHIP","features":[452]},{"name":"DRT_SECURE_RESOLVE","features":[452]},{"name":"DRT_SECURITY_MODE","features":[452]},{"name":"DRT_SECURITY_PROVIDER","features":[452]},{"name":"DRT_SETTINGS","features":[452]},{"name":"DRT_SITE_LOCAL_SCOPE","features":[452]},{"name":"DRT_STATUS","features":[452]},{"name":"DRT_S_RETRY","features":[452]},{"name":"DrtClose","features":[452]},{"name":"DrtContinueSearch","features":[452]},{"name":"DrtCreateDerivedKey","features":[305,452,389]},{"name":"DrtCreateDerivedKeySecurityProvider","features":[305,452,389]},{"name":"DrtCreateDnsBootstrapResolver","features":[452]},{"name":"DrtCreateIpv6UdpTransport","features":[452]},{"name":"DrtCreateNullSecurityProvider","features":[452]},{"name":"DrtCreatePnrpBootstrapResolver","features":[305,452]},{"name":"DrtDeleteDerivedKeySecurityProvider","features":[452]},{"name":"DrtDeleteDnsBootstrapResolver","features":[452]},{"name":"DrtDeleteIpv6UdpTransport","features":[452]},{"name":"DrtDeleteNullSecurityProvider","features":[452]},{"name":"DrtDeletePnrpBootstrapResolver","features":[452]},{"name":"DrtEndSearch","features":[452]},{"name":"DrtGetEventData","features":[452,318]},{"name":"DrtGetEventDataSize","features":[452]},{"name":"DrtGetInstanceName","features":[452]},{"name":"DrtGetInstanceNameSize","features":[452]},{"name":"DrtGetSearchPath","features":[452,318]},{"name":"DrtGetSearchPathSize","features":[452]},{"name":"DrtGetSearchResult","features":[452]},{"name":"DrtGetSearchResultSize","features":[452]},{"name":"DrtOpen","features":[305,452]},{"name":"DrtRegisterKey","features":[452]},{"name":"DrtStartSearch","features":[305,452]},{"name":"DrtUnregisterKey","features":[452]},{"name":"DrtUpdateKey","features":[452]},{"name":"FACILITY_DRT","features":[452]},{"name":"MaximumPeerDistClientInfoByHandlesClass","features":[452]},{"name":"NS_PNRPCLOUD","features":[452]},{"name":"NS_PNRPNAME","features":[452]},{"name":"NS_PROVIDER_PNRPCLOUD","features":[452]},{"name":"NS_PROVIDER_PNRPNAME","features":[452]},{"name":"PEERDIST_CLIENT_BASIC_INFO","features":[305,452]},{"name":"PEERDIST_CLIENT_INFO_BY_HANDLE_CLASS","features":[452]},{"name":"PEERDIST_CONTENT_TAG","features":[452]},{"name":"PEERDIST_PUBLICATION_OPTIONS","features":[452]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION","features":[452]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_1","features":[452]},{"name":"PEERDIST_PUBLICATION_OPTIONS_VERSION_2","features":[452]},{"name":"PEERDIST_READ_TIMEOUT_DEFAULT","features":[452]},{"name":"PEERDIST_READ_TIMEOUT_LOCAL_CACHE_ONLY","features":[452]},{"name":"PEERDIST_RETRIEVAL_OPTIONS","features":[452]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION","features":[452]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_1","features":[452]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_2","features":[452]},{"name":"PEERDIST_RETRIEVAL_OPTIONS_CONTENTINFO_VERSION_VALUE","features":[452]},{"name":"PEERDIST_STATUS","features":[452]},{"name":"PEERDIST_STATUS_AVAILABLE","features":[452]},{"name":"PEERDIST_STATUS_DISABLED","features":[452]},{"name":"PEERDIST_STATUS_INFO","features":[452]},{"name":"PEERDIST_STATUS_UNAVAILABLE","features":[452]},{"name":"PEER_ADDRESS","features":[452,318]},{"name":"PEER_APPLICATION","features":[452]},{"name":"PEER_APPLICATION_ALL_USERS","features":[452]},{"name":"PEER_APPLICATION_CURRENT_USER","features":[452]},{"name":"PEER_APPLICATION_REGISTRATION_INFO","features":[452]},{"name":"PEER_APPLICATION_REGISTRATION_TYPE","features":[452]},{"name":"PEER_APP_LAUNCH_INFO","features":[305,452,318]},{"name":"PEER_CHANGE_ADDED","features":[452]},{"name":"PEER_CHANGE_DELETED","features":[452]},{"name":"PEER_CHANGE_TYPE","features":[452]},{"name":"PEER_CHANGE_UPDATED","features":[452]},{"name":"PEER_COLLAB_EVENT_DATA","features":[305,452,318]},{"name":"PEER_COLLAB_EVENT_REGISTRATION","features":[452]},{"name":"PEER_COLLAB_EVENT_TYPE","features":[452]},{"name":"PEER_COLLAB_OBJECTID_USER_PICTURE","features":[452]},{"name":"PEER_CONNECTED","features":[452]},{"name":"PEER_CONNECTION_DIRECT","features":[452]},{"name":"PEER_CONNECTION_FAILED","features":[452]},{"name":"PEER_CONNECTION_FLAGS","features":[452]},{"name":"PEER_CONNECTION_INFO","features":[452,318]},{"name":"PEER_CONNECTION_NEIGHBOR","features":[452]},{"name":"PEER_CONNECTION_STATUS","features":[452]},{"name":"PEER_CONTACT","features":[305,452]},{"name":"PEER_CREDENTIAL_INFO","features":[305,452,389]},{"name":"PEER_DATA","features":[452]},{"name":"PEER_DEFER_EXPIRATION","features":[452]},{"name":"PEER_DISABLE_PRESENCE","features":[452]},{"name":"PEER_DISCONNECTED","features":[452]},{"name":"PEER_ENDPOINT","features":[452,318]},{"name":"PEER_EVENT_APPLICATION_CHANGED_DATA","features":[305,452,318]},{"name":"PEER_EVENT_CONNECTION_CHANGE_DATA","features":[452]},{"name":"PEER_EVENT_ENDPOINT_APPLICATION_CHANGED","features":[452]},{"name":"PEER_EVENT_ENDPOINT_CHANGED","features":[452]},{"name":"PEER_EVENT_ENDPOINT_CHANGED_DATA","features":[305,452,318]},{"name":"PEER_EVENT_ENDPOINT_OBJECT_CHANGED","features":[452]},{"name":"PEER_EVENT_ENDPOINT_PRESENCE_CHANGED","features":[452]},{"name":"PEER_EVENT_INCOMING_DATA","features":[452]},{"name":"PEER_EVENT_MEMBER_CHANGE_DATA","features":[452]},{"name":"PEER_EVENT_MY_APPLICATION_CHANGED","features":[452]},{"name":"PEER_EVENT_MY_ENDPOINT_CHANGED","features":[452]},{"name":"PEER_EVENT_MY_OBJECT_CHANGED","features":[452]},{"name":"PEER_EVENT_MY_PRESENCE_CHANGED","features":[452]},{"name":"PEER_EVENT_NODE_CHANGE_DATA","features":[452]},{"name":"PEER_EVENT_OBJECT_CHANGED_DATA","features":[305,452,318]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED","features":[452]},{"name":"PEER_EVENT_PEOPLE_NEAR_ME_CHANGED_DATA","features":[452,318]},{"name":"PEER_EVENT_PRESENCE_CHANGED_DATA","features":[305,452,318]},{"name":"PEER_EVENT_RECORD_CHANGE_DATA","features":[452]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED","features":[452]},{"name":"PEER_EVENT_REQUEST_STATUS_CHANGED_DATA","features":[452,318]},{"name":"PEER_EVENT_SYNCHRONIZED_DATA","features":[452]},{"name":"PEER_EVENT_WATCHLIST_CHANGED","features":[452]},{"name":"PEER_EVENT_WATCHLIST_CHANGED_DATA","features":[305,452]},{"name":"PEER_E_ALREADY_EXISTS","features":[452]},{"name":"PEER_E_CLIENT_INVALID_COMPARTMENT_ID","features":[452]},{"name":"PEER_E_CLOUD_DISABLED","features":[452]},{"name":"PEER_E_CLOUD_IS_DEAD","features":[452]},{"name":"PEER_E_CLOUD_IS_SEARCH_ONLY","features":[452]},{"name":"PEER_E_CLOUD_NOT_FOUND","features":[452]},{"name":"PEER_E_DISK_FULL","features":[452]},{"name":"PEER_E_DUPLICATE_PEER_NAME","features":[452]},{"name":"PEER_E_INVALID_IDENTITY","features":[452]},{"name":"PEER_E_NOT_FOUND","features":[452]},{"name":"PEER_E_TOO_MUCH_LOAD","features":[452]},{"name":"PEER_GRAPH_EVENT_CONNECTION_REQUIRED","features":[452]},{"name":"PEER_GRAPH_EVENT_DATA","features":[452]},{"name":"PEER_GRAPH_EVENT_DIRECT_CONNECTION","features":[452]},{"name":"PEER_GRAPH_EVENT_INCOMING_DATA","features":[452]},{"name":"PEER_GRAPH_EVENT_NEIGHBOR_CONNECTION","features":[452]},{"name":"PEER_GRAPH_EVENT_NODE_CHANGED","features":[452]},{"name":"PEER_GRAPH_EVENT_PROPERTY_CHANGED","features":[452]},{"name":"PEER_GRAPH_EVENT_RECORD_CHANGED","features":[452]},{"name":"PEER_GRAPH_EVENT_REGISTRATION","features":[452]},{"name":"PEER_GRAPH_EVENT_STATUS_CHANGED","features":[452]},{"name":"PEER_GRAPH_EVENT_SYNCHRONIZED","features":[452]},{"name":"PEER_GRAPH_EVENT_TYPE","features":[452]},{"name":"PEER_GRAPH_PROPERTIES","features":[452]},{"name":"PEER_GRAPH_PROPERTY_DEFER_EXPIRATION","features":[452]},{"name":"PEER_GRAPH_PROPERTY_FLAGS","features":[452]},{"name":"PEER_GRAPH_PROPERTY_HEARTBEATS","features":[452]},{"name":"PEER_GRAPH_SCOPE","features":[452]},{"name":"PEER_GRAPH_SCOPE_ANY","features":[452]},{"name":"PEER_GRAPH_SCOPE_GLOBAL","features":[452]},{"name":"PEER_GRAPH_SCOPE_LINKLOCAL","features":[452]},{"name":"PEER_GRAPH_SCOPE_LOOPBACK","features":[452]},{"name":"PEER_GRAPH_SCOPE_SITELOCAL","features":[452]},{"name":"PEER_GRAPH_STATUS_FLAGS","features":[452]},{"name":"PEER_GRAPH_STATUS_HAS_CONNECTIONS","features":[452]},{"name":"PEER_GRAPH_STATUS_LISTENING","features":[452]},{"name":"PEER_GRAPH_STATUS_SYNCHRONIZED","features":[452]},{"name":"PEER_GROUP_AUTHENTICATION_SCHEME","features":[452]},{"name":"PEER_GROUP_EVENT_AUTHENTICATION_FAILED","features":[452]},{"name":"PEER_GROUP_EVENT_CONNECTION_FAILED","features":[452]},{"name":"PEER_GROUP_EVENT_DATA","features":[452]},{"name":"PEER_GROUP_EVENT_DIRECT_CONNECTION","features":[452]},{"name":"PEER_GROUP_EVENT_INCOMING_DATA","features":[452]},{"name":"PEER_GROUP_EVENT_MEMBER_CHANGED","features":[452]},{"name":"PEER_GROUP_EVENT_NEIGHBOR_CONNECTION","features":[452]},{"name":"PEER_GROUP_EVENT_PROPERTY_CHANGED","features":[452]},{"name":"PEER_GROUP_EVENT_RECORD_CHANGED","features":[452]},{"name":"PEER_GROUP_EVENT_REGISTRATION","features":[452]},{"name":"PEER_GROUP_EVENT_STATUS_CHANGED","features":[452]},{"name":"PEER_GROUP_EVENT_TYPE","features":[452]},{"name":"PEER_GROUP_GMC_AUTHENTICATION","features":[452]},{"name":"PEER_GROUP_ISSUE_CREDENTIAL_FLAGS","features":[452]},{"name":"PEER_GROUP_PASSWORD_AUTHENTICATION","features":[452]},{"name":"PEER_GROUP_PROPERTIES","features":[452]},{"name":"PEER_GROUP_PROPERTY_FLAGS","features":[452]},{"name":"PEER_GROUP_ROLE_ADMIN","features":[452]},{"name":"PEER_GROUP_ROLE_INVITING_MEMBER","features":[452]},{"name":"PEER_GROUP_ROLE_MEMBER","features":[452]},{"name":"PEER_GROUP_STATUS","features":[452]},{"name":"PEER_GROUP_STATUS_HAS_CONNECTIONS","features":[452]},{"name":"PEER_GROUP_STATUS_LISTENING","features":[452]},{"name":"PEER_GROUP_STORE_CREDENTIALS","features":[452]},{"name":"PEER_INVITATION","features":[452]},{"name":"PEER_INVITATION_INFO","features":[305,452,389]},{"name":"PEER_INVITATION_RESPONSE","features":[452]},{"name":"PEER_INVITATION_RESPONSE_ACCEPTED","features":[452]},{"name":"PEER_INVITATION_RESPONSE_DECLINED","features":[452]},{"name":"PEER_INVITATION_RESPONSE_ERROR","features":[452]},{"name":"PEER_INVITATION_RESPONSE_EXPIRED","features":[452]},{"name":"PEER_INVITATION_RESPONSE_TYPE","features":[452]},{"name":"PEER_MEMBER","features":[305,452,318,389]},{"name":"PEER_MEMBER_CHANGE_TYPE","features":[452]},{"name":"PEER_MEMBER_CONNECTED","features":[452]},{"name":"PEER_MEMBER_DATA_OPTIONAL","features":[452]},{"name":"PEER_MEMBER_DISCONNECTED","features":[452]},{"name":"PEER_MEMBER_FLAGS","features":[452]},{"name":"PEER_MEMBER_JOINED","features":[452]},{"name":"PEER_MEMBER_LEFT","features":[452]},{"name":"PEER_MEMBER_PRESENT","features":[452]},{"name":"PEER_MEMBER_UPDATED","features":[452]},{"name":"PEER_NAME_PAIR","features":[452]},{"name":"PEER_NODE_CHANGE_CONNECTED","features":[452]},{"name":"PEER_NODE_CHANGE_DISCONNECTED","features":[452]},{"name":"PEER_NODE_CHANGE_TYPE","features":[452]},{"name":"PEER_NODE_CHANGE_UPDATED","features":[452]},{"name":"PEER_NODE_INFO","features":[452,318]},{"name":"PEER_OBJECT","features":[452]},{"name":"PEER_PEOPLE_NEAR_ME","features":[452,318]},{"name":"PEER_PNRP_ALL_LINK_CLOUDS","features":[452]},{"name":"PEER_PNRP_CLOUD_INFO","features":[452]},{"name":"PEER_PNRP_ENDPOINT_INFO","features":[452,318]},{"name":"PEER_PNRP_REGISTRATION_INFO","features":[452,318]},{"name":"PEER_PRESENCE_AWAY","features":[452]},{"name":"PEER_PRESENCE_BE_RIGHT_BACK","features":[452]},{"name":"PEER_PRESENCE_BUSY","features":[452]},{"name":"PEER_PRESENCE_IDLE","features":[452]},{"name":"PEER_PRESENCE_INFO","features":[452]},{"name":"PEER_PRESENCE_OFFLINE","features":[452]},{"name":"PEER_PRESENCE_ONLINE","features":[452]},{"name":"PEER_PRESENCE_ON_THE_PHONE","features":[452]},{"name":"PEER_PRESENCE_OUT_TO_LUNCH","features":[452]},{"name":"PEER_PRESENCE_STATUS","features":[452]},{"name":"PEER_PUBLICATION_SCOPE","features":[452]},{"name":"PEER_PUBLICATION_SCOPE_ALL","features":[452]},{"name":"PEER_PUBLICATION_SCOPE_INTERNET","features":[452]},{"name":"PEER_PUBLICATION_SCOPE_NEAR_ME","features":[452]},{"name":"PEER_PUBLICATION_SCOPE_NONE","features":[452]},{"name":"PEER_RECORD","features":[305,452]},{"name":"PEER_RECORD_ADDED","features":[452]},{"name":"PEER_RECORD_CHANGE_TYPE","features":[452]},{"name":"PEER_RECORD_DELETED","features":[452]},{"name":"PEER_RECORD_EXPIRED","features":[452]},{"name":"PEER_RECORD_FLAGS","features":[452]},{"name":"PEER_RECORD_FLAG_AUTOREFRESH","features":[452]},{"name":"PEER_RECORD_FLAG_DELETED","features":[452]},{"name":"PEER_RECORD_UPDATED","features":[452]},{"name":"PEER_SECURITY_INTERFACE","features":[305,452]},{"name":"PEER_SIGNIN_ALL","features":[452]},{"name":"PEER_SIGNIN_FLAGS","features":[452]},{"name":"PEER_SIGNIN_INTERNET","features":[452]},{"name":"PEER_SIGNIN_NEAR_ME","features":[452]},{"name":"PEER_SIGNIN_NONE","features":[452]},{"name":"PEER_VERSION_DATA","features":[452]},{"name":"PEER_WATCH_ALLOWED","features":[452]},{"name":"PEER_WATCH_BLOCKED","features":[452]},{"name":"PEER_WATCH_PERMISSION","features":[452]},{"name":"PFNPEER_FREE_SECURITY_DATA","features":[452]},{"name":"PFNPEER_ON_PASSWORD_AUTH_FAILED","features":[452]},{"name":"PFNPEER_SECURE_RECORD","features":[305,452]},{"name":"PFNPEER_VALIDATE_RECORD","features":[305,452]},{"name":"PNRPCLOUDINFO","features":[452]},{"name":"PNRPINFO_HINT","features":[452]},{"name":"PNRPINFO_V1","features":[452,318]},{"name":"PNRPINFO_V2","features":[452,318,356]},{"name":"PNRP_CLOUD_FLAGS","features":[452]},{"name":"PNRP_CLOUD_FULL_PARTICIPANT","features":[452]},{"name":"PNRP_CLOUD_ID","features":[452]},{"name":"PNRP_CLOUD_NAME_LOCAL","features":[452]},{"name":"PNRP_CLOUD_NO_FLAGS","features":[452]},{"name":"PNRP_CLOUD_RESOLVE_ONLY","features":[452]},{"name":"PNRP_CLOUD_STATE","features":[452]},{"name":"PNRP_CLOUD_STATE_ACTIVE","features":[452]},{"name":"PNRP_CLOUD_STATE_ALONE","features":[452]},{"name":"PNRP_CLOUD_STATE_DEAD","features":[452]},{"name":"PNRP_CLOUD_STATE_DISABLED","features":[452]},{"name":"PNRP_CLOUD_STATE_NO_NET","features":[452]},{"name":"PNRP_CLOUD_STATE_SYNCHRONISING","features":[452]},{"name":"PNRP_CLOUD_STATE_VIRTUAL","features":[452]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE","features":[452]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_BINARY","features":[452]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_NONE","features":[452]},{"name":"PNRP_EXTENDED_PAYLOAD_TYPE_STRING","features":[452]},{"name":"PNRP_GLOBAL_SCOPE","features":[452]},{"name":"PNRP_LINK_LOCAL_SCOPE","features":[452]},{"name":"PNRP_MAX_ENDPOINT_ADDRESSES","features":[452]},{"name":"PNRP_MAX_EXTENDED_PAYLOAD_BYTES","features":[452]},{"name":"PNRP_REGISTERED_ID_STATE","features":[452]},{"name":"PNRP_REGISTERED_ID_STATE_OK","features":[452]},{"name":"PNRP_REGISTERED_ID_STATE_PROBLEM","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA_ANY_PEER_NAME","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA_DEFAULT","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_NON_CURRENT_PROCESS_PEER_NAME","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_PEER_NAME","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA_NEAREST_REMOTE_PEER_NAME","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA_NON_CURRENT_PROCESS_PEER_NAME","features":[452]},{"name":"PNRP_RESOLVE_CRITERIA_REMOTE_PEER_NAME","features":[452]},{"name":"PNRP_SCOPE","features":[452]},{"name":"PNRP_SCOPE_ANY","features":[452]},{"name":"PNRP_SITE_LOCAL_SCOPE","features":[452]},{"name":"PeerCollabAddContact","features":[305,452]},{"name":"PeerCollabAsyncInviteContact","features":[305,452,318]},{"name":"PeerCollabAsyncInviteEndpoint","features":[305,452,318]},{"name":"PeerCollabCancelInvitation","features":[305,452]},{"name":"PeerCollabCloseHandle","features":[305,452]},{"name":"PeerCollabDeleteContact","features":[452]},{"name":"PeerCollabDeleteEndpointData","features":[452,318]},{"name":"PeerCollabDeleteObject","features":[452]},{"name":"PeerCollabEnumApplicationRegistrationInfo","features":[452]},{"name":"PeerCollabEnumApplications","features":[452,318]},{"name":"PeerCollabEnumContacts","features":[452]},{"name":"PeerCollabEnumEndpoints","features":[305,452]},{"name":"PeerCollabEnumObjects","features":[452,318]},{"name":"PeerCollabEnumPeopleNearMe","features":[452]},{"name":"PeerCollabExportContact","features":[452]},{"name":"PeerCollabGetAppLaunchInfo","features":[305,452,318]},{"name":"PeerCollabGetApplicationRegistrationInfo","features":[452]},{"name":"PeerCollabGetContact","features":[305,452]},{"name":"PeerCollabGetEndpointName","features":[452]},{"name":"PeerCollabGetEventData","features":[305,452,318]},{"name":"PeerCollabGetInvitationResponse","features":[305,452]},{"name":"PeerCollabGetPresenceInfo","features":[452,318]},{"name":"PeerCollabGetSigninOptions","features":[452]},{"name":"PeerCollabInviteContact","features":[305,452,318]},{"name":"PeerCollabInviteEndpoint","features":[452,318]},{"name":"PeerCollabParseContact","features":[305,452]},{"name":"PeerCollabQueryContactData","features":[452,318]},{"name":"PeerCollabRefreshEndpointData","features":[452,318]},{"name":"PeerCollabRegisterApplication","features":[452]},{"name":"PeerCollabRegisterEvent","features":[305,452]},{"name":"PeerCollabSetEndpointName","features":[452]},{"name":"PeerCollabSetObject","features":[452]},{"name":"PeerCollabSetPresenceInfo","features":[452]},{"name":"PeerCollabShutdown","features":[452]},{"name":"PeerCollabSignin","features":[305,452]},{"name":"PeerCollabSignout","features":[452]},{"name":"PeerCollabStartup","features":[452]},{"name":"PeerCollabSubscribeEndpointData","features":[452,318]},{"name":"PeerCollabUnregisterApplication","features":[452]},{"name":"PeerCollabUnregisterEvent","features":[452]},{"name":"PeerCollabUnsubscribeEndpointData","features":[452,318]},{"name":"PeerCollabUpdateContact","features":[305,452]},{"name":"PeerCreatePeerName","features":[452]},{"name":"PeerDistClientAddContentInformation","features":[305,452,310]},{"name":"PeerDistClientAddData","features":[305,452,310]},{"name":"PeerDistClientBasicInfo","features":[452]},{"name":"PeerDistClientBlockRead","features":[305,452,310]},{"name":"PeerDistClientCancelAsyncOperation","features":[305,452,310]},{"name":"PeerDistClientCloseContent","features":[452]},{"name":"PeerDistClientCompleteContentInformation","features":[305,452,310]},{"name":"PeerDistClientFlushContent","features":[305,452,310]},{"name":"PeerDistClientGetInformationByHandle","features":[452]},{"name":"PeerDistClientOpenContent","features":[305,452]},{"name":"PeerDistClientStreamRead","features":[305,452,310]},{"name":"PeerDistGetOverlappedResult","features":[305,452,310]},{"name":"PeerDistGetStatus","features":[452]},{"name":"PeerDistGetStatusEx","features":[452]},{"name":"PeerDistRegisterForStatusChangeNotification","features":[305,452,310]},{"name":"PeerDistRegisterForStatusChangeNotificationEx","features":[305,452,310]},{"name":"PeerDistServerCancelAsyncOperation","features":[305,452,310]},{"name":"PeerDistServerCloseContentInformation","features":[452]},{"name":"PeerDistServerCloseStreamHandle","features":[452]},{"name":"PeerDistServerOpenContentInformation","features":[305,452]},{"name":"PeerDistServerOpenContentInformationEx","features":[305,452]},{"name":"PeerDistServerPublishAddToStream","features":[305,452,310]},{"name":"PeerDistServerPublishCompleteStream","features":[305,452,310]},{"name":"PeerDistServerPublishStream","features":[305,452]},{"name":"PeerDistServerRetrieveContentInformation","features":[305,452,310]},{"name":"PeerDistServerUnpublish","features":[452]},{"name":"PeerDistShutdown","features":[452]},{"name":"PeerDistStartup","features":[452]},{"name":"PeerDistUnregisterForStatusChangeNotification","features":[452]},{"name":"PeerEndEnumeration","features":[452]},{"name":"PeerEnumGroups","features":[452]},{"name":"PeerEnumIdentities","features":[452]},{"name":"PeerFreeData","features":[452]},{"name":"PeerGetItemCount","features":[452]},{"name":"PeerGetNextItem","features":[452]},{"name":"PeerGraphAddRecord","features":[305,452]},{"name":"PeerGraphClose","features":[452]},{"name":"PeerGraphCloseDirectConnection","features":[452]},{"name":"PeerGraphConnect","features":[452,318]},{"name":"PeerGraphCreate","features":[305,452]},{"name":"PeerGraphDelete","features":[452]},{"name":"PeerGraphDeleteRecord","features":[305,452]},{"name":"PeerGraphEndEnumeration","features":[452]},{"name":"PeerGraphEnumConnections","features":[452]},{"name":"PeerGraphEnumNodes","features":[452]},{"name":"PeerGraphEnumRecords","features":[452]},{"name":"PeerGraphExportDatabase","features":[452]},{"name":"PeerGraphFreeData","features":[452]},{"name":"PeerGraphGetEventData","features":[452]},{"name":"PeerGraphGetItemCount","features":[452]},{"name":"PeerGraphGetNextItem","features":[452]},{"name":"PeerGraphGetNodeInfo","features":[452,318]},{"name":"PeerGraphGetProperties","features":[452]},{"name":"PeerGraphGetRecord","features":[305,452]},{"name":"PeerGraphGetStatus","features":[452]},{"name":"PeerGraphImportDatabase","features":[452]},{"name":"PeerGraphListen","features":[452]},{"name":"PeerGraphOpen","features":[305,452]},{"name":"PeerGraphOpenDirectConnection","features":[452,318]},{"name":"PeerGraphPeerTimeToUniversalTime","features":[305,452]},{"name":"PeerGraphRegisterEvent","features":[305,452]},{"name":"PeerGraphSearchRecords","features":[452]},{"name":"PeerGraphSendData","features":[452]},{"name":"PeerGraphSetNodeAttributes","features":[452]},{"name":"PeerGraphSetPresence","features":[305,452]},{"name":"PeerGraphSetProperties","features":[452]},{"name":"PeerGraphShutdown","features":[452]},{"name":"PeerGraphStartup","features":[452]},{"name":"PeerGraphUniversalTimeToPeerTime","features":[305,452]},{"name":"PeerGraphUnregisterEvent","features":[452]},{"name":"PeerGraphUpdateRecord","features":[305,452]},{"name":"PeerGraphValidateDeferredRecords","features":[452]},{"name":"PeerGroupAddRecord","features":[305,452]},{"name":"PeerGroupClose","features":[452]},{"name":"PeerGroupCloseDirectConnection","features":[452]},{"name":"PeerGroupConnect","features":[452]},{"name":"PeerGroupConnectByAddress","features":[452,318]},{"name":"PeerGroupCreate","features":[452]},{"name":"PeerGroupCreateInvitation","features":[305,452]},{"name":"PeerGroupCreatePasswordInvitation","features":[452]},{"name":"PeerGroupDelete","features":[452]},{"name":"PeerGroupDeleteRecord","features":[452]},{"name":"PeerGroupEnumConnections","features":[452]},{"name":"PeerGroupEnumMembers","features":[452]},{"name":"PeerGroupEnumRecords","features":[452]},{"name":"PeerGroupExportConfig","features":[452]},{"name":"PeerGroupExportDatabase","features":[452]},{"name":"PeerGroupGetEventData","features":[452]},{"name":"PeerGroupGetProperties","features":[452]},{"name":"PeerGroupGetRecord","features":[305,452]},{"name":"PeerGroupGetStatus","features":[452]},{"name":"PeerGroupImportConfig","features":[305,452]},{"name":"PeerGroupImportDatabase","features":[452]},{"name":"PeerGroupIssueCredentials","features":[305,452,389]},{"name":"PeerGroupJoin","features":[452]},{"name":"PeerGroupOpen","features":[452]},{"name":"PeerGroupOpenDirectConnection","features":[452,318]},{"name":"PeerGroupParseInvitation","features":[305,452,389]},{"name":"PeerGroupPasswordJoin","features":[452]},{"name":"PeerGroupPeerTimeToUniversalTime","features":[305,452]},{"name":"PeerGroupRegisterEvent","features":[305,452]},{"name":"PeerGroupResumePasswordAuthentication","features":[452]},{"name":"PeerGroupSearchRecords","features":[452]},{"name":"PeerGroupSendData","features":[452]},{"name":"PeerGroupSetProperties","features":[452]},{"name":"PeerGroupShutdown","features":[452]},{"name":"PeerGroupStartup","features":[452]},{"name":"PeerGroupUniversalTimeToPeerTime","features":[305,452]},{"name":"PeerGroupUnregisterEvent","features":[452]},{"name":"PeerGroupUpdateRecord","features":[305,452]},{"name":"PeerHostNameToPeerName","features":[452]},{"name":"PeerIdentityCreate","features":[452]},{"name":"PeerIdentityDelete","features":[452]},{"name":"PeerIdentityExport","features":[452]},{"name":"PeerIdentityGetCryptKey","features":[452]},{"name":"PeerIdentityGetDefault","features":[452]},{"name":"PeerIdentityGetFriendlyName","features":[452]},{"name":"PeerIdentityGetXML","features":[452]},{"name":"PeerIdentityImport","features":[452]},{"name":"PeerIdentitySetFriendlyName","features":[452]},{"name":"PeerNameToPeerHostName","features":[452]},{"name":"PeerPnrpEndResolve","features":[452]},{"name":"PeerPnrpGetCloudInfo","features":[452]},{"name":"PeerPnrpGetEndpoint","features":[452,318]},{"name":"PeerPnrpRegister","features":[452,318]},{"name":"PeerPnrpResolve","features":[452,318]},{"name":"PeerPnrpShutdown","features":[452]},{"name":"PeerPnrpStartResolve","features":[305,452]},{"name":"PeerPnrpStartup","features":[452]},{"name":"PeerPnrpUnregister","features":[452]},{"name":"PeerPnrpUpdateRegistration","features":[452,318]},{"name":"SVCID_PNRPCLOUD","features":[452]},{"name":"SVCID_PNRPNAME_V1","features":[452]},{"name":"SVCID_PNRPNAME_V2","features":[452]},{"name":"WSA_PNRP_CLIENT_INVALID_COMPARTMENT_ID","features":[452]},{"name":"WSA_PNRP_CLOUD_DISABLED","features":[452]},{"name":"WSA_PNRP_CLOUD_IS_DEAD","features":[452]},{"name":"WSA_PNRP_CLOUD_IS_SEARCH_ONLY","features":[452]},{"name":"WSA_PNRP_CLOUD_NOT_FOUND","features":[452]},{"name":"WSA_PNRP_DUPLICATE_PEER_NAME","features":[452]},{"name":"WSA_PNRP_ERROR_BASE","features":[452]},{"name":"WSA_PNRP_INVALID_IDENTITY","features":[452]},{"name":"WSA_PNRP_TOO_MUCH_LOAD","features":[452]},{"name":"WSZ_SCOPE_GLOBAL","features":[452]},{"name":"WSZ_SCOPE_LINKLOCAL","features":[452]},{"name":"WSZ_SCOPE_SITELOCAL","features":[452]}],"458":[{"name":"ABLE_TO_RECV_RSVP","features":[453]},{"name":"ADDRESS_LIST_DESCRIPTOR","features":[319,453]},{"name":"ADM_CTRL_FAILED","features":[453]},{"name":"ADSPEC","features":[453]},{"name":"AD_FLAG_BREAK_BIT","features":[453]},{"name":"AD_GENERAL_PARAMS","features":[453]},{"name":"AD_GUARANTEED","features":[453]},{"name":"ALLOWED_TO_SEND_DATA","features":[453]},{"name":"ANY_DEST_ADDR","features":[453]},{"name":"CBADMITRESULT","features":[453]},{"name":"CBGETRSVPOBJECTS","features":[453]},{"name":"CONTROLLED_DELAY_SERV","features":[453]},{"name":"CONTROLLED_LOAD_SERV","features":[453]},{"name":"CONTROL_SERVICE","features":[453]},{"name":"CREDENTIAL_SUB_TYPE_ASCII_ID","features":[453]},{"name":"CREDENTIAL_SUB_TYPE_KERBEROS_TKT","features":[453]},{"name":"CREDENTIAL_SUB_TYPE_PGP_CERT","features":[453]},{"name":"CREDENTIAL_SUB_TYPE_UNICODE_ID","features":[453]},{"name":"CREDENTIAL_SUB_TYPE_X509_V3_CERT","features":[453]},{"name":"CURRENT_TCI_VERSION","features":[453]},{"name":"CtrlLoadFlowspec","features":[453]},{"name":"DD_TCP_DEVICE_NAME","features":[453]},{"name":"DUP_RESULTS","features":[453]},{"name":"END_TO_END_QOSABILITY","features":[453]},{"name":"ENUMERATION_BUFFER","features":[453,318]},{"name":"ERROR_ADDRESS_TYPE_NOT_SUPPORTED","features":[453]},{"name":"ERROR_DS_MAPPING_EXISTS","features":[453]},{"name":"ERROR_DUPLICATE_FILTER","features":[453]},{"name":"ERROR_FILTER_CONFLICT","features":[453]},{"name":"ERROR_INCOMPATABLE_QOS","features":[453]},{"name":"ERROR_INCOMPATIBLE_TCI_VERSION","features":[453]},{"name":"ERROR_INVALID_ADDRESS_TYPE","features":[453]},{"name":"ERROR_INVALID_DIFFSERV_FLOW","features":[453]},{"name":"ERROR_INVALID_DS_CLASS","features":[453]},{"name":"ERROR_INVALID_FLOW_MODE","features":[453]},{"name":"ERROR_INVALID_PEAK_RATE","features":[453]},{"name":"ERROR_INVALID_QOS_PRIORITY","features":[453]},{"name":"ERROR_INVALID_SD_MODE","features":[453]},{"name":"ERROR_INVALID_SERVICE_TYPE","features":[453]},{"name":"ERROR_INVALID_SHAPE_RATE","features":[453]},{"name":"ERROR_INVALID_TOKEN_RATE","features":[453]},{"name":"ERROR_INVALID_TRAFFIC_CLASS","features":[453]},{"name":"ERROR_NO_MORE_INFO","features":[453]},{"name":"ERROR_SPEC","features":[453,318]},{"name":"ERROR_SPECF_InPlace","features":[453]},{"name":"ERROR_SPECF_NotGuilty","features":[453]},{"name":"ERROR_TC_NOT_SUPPORTED","features":[453]},{"name":"ERROR_TC_OBJECT_LENGTH_INVALID","features":[453]},{"name":"ERROR_TC_SUPPORTED_OBJECTS_EXIST","features":[453]},{"name":"ERROR_TOO_MANY_CLIENTS","features":[453]},{"name":"ERR_FORWARD_OK","features":[453]},{"name":"ERR_Usage_globl","features":[453]},{"name":"ERR_Usage_local","features":[453]},{"name":"ERR_Usage_serv","features":[453]},{"name":"ERR_global_mask","features":[453]},{"name":"EXPIRED_CREDENTIAL","features":[453]},{"name":"Error_Spec_IPv4","features":[453,318]},{"name":"FILTERSPECV4","features":[453]},{"name":"FILTERSPECV4_GPI","features":[453]},{"name":"FILTERSPECV6","features":[453]},{"name":"FILTERSPECV6_FLOW","features":[453]},{"name":"FILTERSPECV6_GPI","features":[453]},{"name":"FILTERSPEC_END","features":[453]},{"name":"FILTER_SPEC","features":[453,318]},{"name":"FLOWDESCRIPTOR","features":[453,318]},{"name":"FLOW_DESC","features":[453,318]},{"name":"FLOW_DURATION","features":[453]},{"name":"FORCE_IMMEDIATE_REFRESH","features":[453]},{"name":"FSCTL_TCP_BASE","features":[453]},{"name":"FVEB_UNLOCK_FLAG_AUK_OSFVEINFO","features":[453]},{"name":"FVEB_UNLOCK_FLAG_CACHED","features":[453]},{"name":"FVEB_UNLOCK_FLAG_EXTERNAL","features":[453]},{"name":"FVEB_UNLOCK_FLAG_MEDIA","features":[453]},{"name":"FVEB_UNLOCK_FLAG_NBP","features":[453]},{"name":"FVEB_UNLOCK_FLAG_NONE","features":[453]},{"name":"FVEB_UNLOCK_FLAG_PASSPHRASE","features":[453]},{"name":"FVEB_UNLOCK_FLAG_PIN","features":[453]},{"name":"FVEB_UNLOCK_FLAG_RECOVERY","features":[453]},{"name":"FVEB_UNLOCK_FLAG_TPM","features":[453]},{"name":"FilterType","features":[453]},{"name":"Filter_Spec_IPv4","features":[453,318]},{"name":"Filter_Spec_IPv4GPI","features":[453,318]},{"name":"GENERAL_INFO","features":[453]},{"name":"GQOS_API","features":[453]},{"name":"GQOS_ERRORCODE_UNKNOWN","features":[453]},{"name":"GQOS_ERRORVALUE_UNKNOWN","features":[453]},{"name":"GQOS_KERNEL_TC","features":[453]},{"name":"GQOS_KERNEL_TC_SYS","features":[453]},{"name":"GQOS_NET_ADMISSION","features":[453]},{"name":"GQOS_NET_POLICY","features":[453]},{"name":"GQOS_NO_ERRORCODE","features":[453]},{"name":"GQOS_NO_ERRORVALUE","features":[453]},{"name":"GQOS_RSVP","features":[453]},{"name":"GQOS_RSVP_SYS","features":[453]},{"name":"GUARANTEED_SERV","features":[453]},{"name":"GUAR_ADSPARM_C","features":[453]},{"name":"GUAR_ADSPARM_Csum","features":[453]},{"name":"GUAR_ADSPARM_Ctot","features":[453]},{"name":"GUAR_ADSPARM_D","features":[453]},{"name":"GUAR_ADSPARM_Dsum","features":[453]},{"name":"GUAR_ADSPARM_Dtot","features":[453]},{"name":"GUID_QOS_BESTEFFORT_BANDWIDTH","features":[453]},{"name":"GUID_QOS_ENABLE_AVG_STATS","features":[453]},{"name":"GUID_QOS_ENABLE_WINDOW_ADJUSTMENT","features":[453]},{"name":"GUID_QOS_FLOW_8021P_CONFORMING","features":[453]},{"name":"GUID_QOS_FLOW_8021P_NONCONFORMING","features":[453]},{"name":"GUID_QOS_FLOW_COUNT","features":[453]},{"name":"GUID_QOS_FLOW_IP_CONFORMING","features":[453]},{"name":"GUID_QOS_FLOW_IP_NONCONFORMING","features":[453]},{"name":"GUID_QOS_FLOW_MODE","features":[453]},{"name":"GUID_QOS_ISSLOW_FLOW","features":[453]},{"name":"GUID_QOS_LATENCY","features":[453]},{"name":"GUID_QOS_MAX_OUTSTANDING_SENDS","features":[453]},{"name":"GUID_QOS_NON_BESTEFFORT_LIMIT","features":[453]},{"name":"GUID_QOS_REMAINING_BANDWIDTH","features":[453]},{"name":"GUID_QOS_STATISTICS_BUFFER","features":[453]},{"name":"GUID_QOS_TIMER_RESOLUTION","features":[453]},{"name":"Gads_parms_t","features":[453]},{"name":"GenAdspecParams","features":[453]},{"name":"GenTspec","features":[453]},{"name":"GenTspecParms","features":[453]},{"name":"GuarFlowSpec","features":[453]},{"name":"GuarRspec","features":[453]},{"name":"HIGHLY_DELAY_SENSITIVE","features":[453]},{"name":"HSP_UPGRADE_IMAGEDATA","features":[453]},{"name":"IDENTITY_CHANGED","features":[453]},{"name":"IDPE_ATTR","features":[453]},{"name":"ID_ERROR_OBJECT","features":[453]},{"name":"IF_MIB_STATS_ID","features":[453]},{"name":"INFO_NOT_AVAILABLE","features":[453]},{"name":"INSUFFICIENT_PRIVILEGES","features":[453]},{"name":"INTSERV_VERSION0","features":[453]},{"name":"INTSERV_VERS_MASK","features":[453]},{"name":"INV_LPM_HANDLE","features":[453]},{"name":"INV_REQ_HANDLE","features":[453]},{"name":"INV_RESULTS","features":[453]},{"name":"IN_ADDR_IPV4","features":[453]},{"name":"IN_ADDR_IPV6","features":[453]},{"name":"IPX_PATTERN","features":[453]},{"name":"IP_INTFC_INFO_ID","features":[453]},{"name":"IP_MIB_ADDRTABLE_ENTRY_ID","features":[453]},{"name":"IP_MIB_STATS_ID","features":[453]},{"name":"IP_PATTERN","features":[453]},{"name":"ISPH_FLG_INV","features":[453]},{"name":"ISSH_BREAK_BIT","features":[453]},{"name":"IS_ADSPEC_BODY","features":[453]},{"name":"IS_FLOWSPEC","features":[453]},{"name":"IS_GUAR_RSPEC","features":[453]},{"name":"IS_WKP_COMPOSED_MTU","features":[453]},{"name":"IS_WKP_HOP_CNT","features":[453]},{"name":"IS_WKP_MIN_LATENCY","features":[453]},{"name":"IS_WKP_PATH_BW","features":[453]},{"name":"IS_WKP_Q_TSPEC","features":[453]},{"name":"IS_WKP_TB_TSPEC","features":[453]},{"name":"IntServFlowSpec","features":[453]},{"name":"IntServMainHdr","features":[453]},{"name":"IntServParmHdr","features":[453]},{"name":"IntServServiceHdr","features":[453]},{"name":"IntServTspecBody","features":[453]},{"name":"LINE_RATE","features":[453]},{"name":"LOCAL_QOSABILITY","features":[453]},{"name":"LOCAL_TRAFFIC_CONTROL","features":[453]},{"name":"LPMIPTABLE","features":[453,318]},{"name":"LPM_API_VERSION_1","features":[453]},{"name":"LPM_HANDLE","features":[453]},{"name":"LPM_INIT_INFO","features":[453]},{"name":"LPM_OK","features":[453]},{"name":"LPM_PE_ALL_TYPES","features":[453]},{"name":"LPM_PE_APP_IDENTITY","features":[453]},{"name":"LPM_PE_USER_IDENTITY","features":[453]},{"name":"LPM_RESULT_DEFER","features":[453]},{"name":"LPM_RESULT_READY","features":[453]},{"name":"LPM_TIME_OUT","features":[453]},{"name":"LPV_DONT_CARE","features":[453]},{"name":"LPV_DROP_MSG","features":[453]},{"name":"LPV_MAX_PRIORITY","features":[453]},{"name":"LPV_MIN_PRIORITY","features":[453]},{"name":"LPV_REJECT","features":[453]},{"name":"LPV_RESERVED","features":[453]},{"name":"MAX_HSP_UPGRADE_FILENAME_LENGTH","features":[453]},{"name":"MAX_PHYSADDR_SIZE","features":[453]},{"name":"MAX_STRING_LENGTH","features":[453]},{"name":"MODERATELY_DELAY_SENSITIVE","features":[453]},{"name":"OSDEVICE_TYPE_BLOCKIO_CDROM","features":[453]},{"name":"OSDEVICE_TYPE_BLOCKIO_FILE","features":[453]},{"name":"OSDEVICE_TYPE_BLOCKIO_HARDDISK","features":[453]},{"name":"OSDEVICE_TYPE_BLOCKIO_PARTITION","features":[453]},{"name":"OSDEVICE_TYPE_BLOCKIO_RAMDISK","features":[453]},{"name":"OSDEVICE_TYPE_BLOCKIO_REMOVABLEDISK","features":[453]},{"name":"OSDEVICE_TYPE_BLOCKIO_VIRTUALHARDDISK","features":[453]},{"name":"OSDEVICE_TYPE_CIMFS","features":[453]},{"name":"OSDEVICE_TYPE_COMPOSITE","features":[453]},{"name":"OSDEVICE_TYPE_SERIAL","features":[453]},{"name":"OSDEVICE_TYPE_UDP","features":[453]},{"name":"OSDEVICE_TYPE_UNKNOWN","features":[453]},{"name":"OSDEVICE_TYPE_VMBUS","features":[453]},{"name":"Opt_Distinct","features":[453]},{"name":"Opt_Explicit","features":[453]},{"name":"Opt_Share_mask","features":[453]},{"name":"Opt_Shared","features":[453]},{"name":"Opt_SndSel_mask","features":[453]},{"name":"Opt_Wildcard","features":[453]},{"name":"PALLOCMEM","features":[453]},{"name":"PARAM_BUFFER","features":[453]},{"name":"PCM_VERSION_1","features":[453]},{"name":"PE_ATTRIB_TYPE_CREDENTIAL","features":[453]},{"name":"PE_ATTRIB_TYPE_POLICY_LOCATOR","features":[453]},{"name":"PE_TYPE_APPID","features":[453]},{"name":"PFREEMEM","features":[453]},{"name":"POLICY_DATA","features":[453]},{"name":"POLICY_DECISION","features":[453]},{"name":"POLICY_ELEMENT","features":[453]},{"name":"POLICY_ERRV_CRAZY_FLOWSPEC","features":[453]},{"name":"POLICY_ERRV_EXPIRED_CREDENTIALS","features":[453]},{"name":"POLICY_ERRV_EXPIRED_USER_TOKEN","features":[453]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_GLOBAL_DEF_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_DEF_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_DEF_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_GLOBAL_GRP_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_GRP_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_GRP_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_UNAUTH_USER_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_GLOBAL_USER_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_USER_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_GLOBAL_USER_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_IDENTITY_CHANGED","features":[453]},{"name":"POLICY_ERRV_INSUFFICIENT_PRIVILEGES","features":[453]},{"name":"POLICY_ERRV_NO_ACCEPTS","features":[453]},{"name":"POLICY_ERRV_NO_MEMORY","features":[453]},{"name":"POLICY_ERRV_NO_MORE_INFO","features":[453]},{"name":"POLICY_ERRV_NO_PRIVILEGES","features":[453]},{"name":"POLICY_ERRV_NO_RESOURCES","features":[453]},{"name":"POLICY_ERRV_PRE_EMPTED","features":[453]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_SUBNET_DEF_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_DEF_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_DEF_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_SUBNET_GRP_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_GRP_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_GRP_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_UNAUTH_USER_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_COUNT","features":[453]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_DURATION","features":[453]},{"name":"POLICY_ERRV_SUBNET_USER_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_USER_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_FLOW_RATE","features":[453]},{"name":"POLICY_ERRV_SUBNET_USER_SUM_PEAK_RATE","features":[453]},{"name":"POLICY_ERRV_UNKNOWN","features":[453]},{"name":"POLICY_ERRV_UNKNOWN_USER","features":[453]},{"name":"POLICY_ERRV_UNSUPPORTED_CREDENTIAL_TYPE","features":[453]},{"name":"POLICY_ERRV_USER_CHANGED","features":[453]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN","features":[453]},{"name":"POLICY_LOCATOR_SUB_TYPE_ASCII_DN_ENC","features":[453]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN","features":[453]},{"name":"POLICY_LOCATOR_SUB_TYPE_UNICODE_DN_ENC","features":[453]},{"name":"POSITIVE_INFINITY_RATE","features":[453]},{"name":"PREDICTIVE_SERV","features":[453]},{"name":"QOSAddSocketToFlow","features":[305,453,318]},{"name":"QOSCancel","features":[305,453,310]},{"name":"QOSCloseHandle","features":[305,453]},{"name":"QOSCreateHandle","features":[305,453]},{"name":"QOSEnumerateFlows","features":[305,453]},{"name":"QOSFlowRateCongestion","features":[453]},{"name":"QOSFlowRateContentChange","features":[453]},{"name":"QOSFlowRateHigherContentEncoding","features":[453]},{"name":"QOSFlowRateNotApplicable","features":[453]},{"name":"QOSFlowRateUserCaused","features":[453]},{"name":"QOSNotifyAvailable","features":[453]},{"name":"QOSNotifyCongested","features":[453]},{"name":"QOSNotifyFlow","features":[305,453,310]},{"name":"QOSNotifyUncongested","features":[453]},{"name":"QOSQueryFlow","features":[305,453,310]},{"name":"QOSQueryFlowFundamentals","features":[453]},{"name":"QOSQueryOutgoingRate","features":[453]},{"name":"QOSQueryPacketPriority","features":[453]},{"name":"QOSRemoveSocketFromFlow","features":[305,453,318]},{"name":"QOSSPBASE","features":[453]},{"name":"QOSSP_ERR_BASE","features":[453]},{"name":"QOSSetFlow","features":[305,453,310]},{"name":"QOSSetOutgoingDSCPValue","features":[453]},{"name":"QOSSetOutgoingRate","features":[453]},{"name":"QOSSetTrafficType","features":[453]},{"name":"QOSShapeAndMark","features":[453]},{"name":"QOSShapeOnly","features":[453]},{"name":"QOSStartTrackingClient","features":[305,453,318]},{"name":"QOSStopTrackingClient","features":[305,453,318]},{"name":"QOSTrafficTypeAudioVideo","features":[453]},{"name":"QOSTrafficTypeBackground","features":[453]},{"name":"QOSTrafficTypeBestEffort","features":[453]},{"name":"QOSTrafficTypeControl","features":[453]},{"name":"QOSTrafficTypeExcellentEffort","features":[453]},{"name":"QOSTrafficTypeVoice","features":[453]},{"name":"QOSUseNonConformantMarkings","features":[453]},{"name":"QOS_DESTADDR","features":[453,318]},{"name":"QOS_DIFFSERV","features":[453]},{"name":"QOS_DIFFSERV_RULE","features":[453]},{"name":"QOS_DS_CLASS","features":[453]},{"name":"QOS_FLOWRATE_OUTGOING","features":[453]},{"name":"QOS_FLOWRATE_REASON","features":[453]},{"name":"QOS_FLOW_FUNDAMENTALS","features":[305,453]},{"name":"QOS_FRIENDLY_NAME","features":[453]},{"name":"QOS_GENERAL_ID_BASE","features":[453]},{"name":"QOS_MAX_OBJECT_STRING_LENGTH","features":[453]},{"name":"QOS_NON_ADAPTIVE_FLOW","features":[453]},{"name":"QOS_NOTIFY_FLOW","features":[453]},{"name":"QOS_NOT_SPECIFIED","features":[453]},{"name":"QOS_OBJECT_HDR","features":[453]},{"name":"QOS_OUTGOING_DEFAULT_MINIMUM_BANDWIDTH","features":[453]},{"name":"QOS_PACKET_PRIORITY","features":[453]},{"name":"QOS_QUERYFLOW_FRESH","features":[453]},{"name":"QOS_QUERY_FLOW","features":[453]},{"name":"QOS_SD_MODE","features":[453]},{"name":"QOS_SET_FLOW","features":[453]},{"name":"QOS_SHAPING","features":[453]},{"name":"QOS_SHAPING_RATE","features":[453]},{"name":"QOS_TCP_TRAFFIC","features":[453]},{"name":"QOS_TRAFFIC_CLASS","features":[453]},{"name":"QOS_TRAFFIC_GENERAL_ID_BASE","features":[453]},{"name":"QOS_TRAFFIC_TYPE","features":[453]},{"name":"QOS_VERSION","features":[453]},{"name":"QUALITATIVE_SERV","features":[453]},{"name":"QualAppFlowSpec","features":[453]},{"name":"QualTspec","features":[453]},{"name":"QualTspecParms","features":[453]},{"name":"RCVD_PATH_TEAR","features":[453]},{"name":"RCVD_RESV_TEAR","features":[453]},{"name":"RESOURCES_ALLOCATED","features":[453]},{"name":"RESOURCES_MODIFIED","features":[453]},{"name":"RESV_STYLE","features":[453]},{"name":"RHANDLE","features":[453]},{"name":"RSVP_ADSPEC","features":[453]},{"name":"RSVP_DEFAULT_STYLE","features":[453]},{"name":"RSVP_Err_ADMISSION","features":[453]},{"name":"RSVP_Err_AMBIG_FILTER","features":[453]},{"name":"RSVP_Err_API_ERROR","features":[453]},{"name":"RSVP_Err_BAD_DSTPORT","features":[453]},{"name":"RSVP_Err_BAD_SNDPORT","features":[453]},{"name":"RSVP_Err_BAD_STYLE","features":[453]},{"name":"RSVP_Err_NONE","features":[453]},{"name":"RSVP_Err_NO_PATH","features":[453]},{"name":"RSVP_Err_NO_SENDER","features":[453]},{"name":"RSVP_Err_POLICY","features":[453]},{"name":"RSVP_Err_PREEMPTED","features":[453]},{"name":"RSVP_Err_RSVP_SYS_ERROR","features":[453]},{"name":"RSVP_Err_TC_ERROR","features":[453]},{"name":"RSVP_Err_TC_SYS_ERROR","features":[453]},{"name":"RSVP_Err_UNKNOWN_CTYPE","features":[453]},{"name":"RSVP_Err_UNKNOWN_STYLE","features":[453]},{"name":"RSVP_Err_UNKN_OBJ_CLASS","features":[453]},{"name":"RSVP_Erv_API","features":[453]},{"name":"RSVP_Erv_Bandwidth","features":[453]},{"name":"RSVP_Erv_Bucket_szie","features":[453]},{"name":"RSVP_Erv_Conflict_Serv","features":[453]},{"name":"RSVP_Erv_Crazy_Flowspec","features":[453]},{"name":"RSVP_Erv_Crazy_Tspec","features":[453]},{"name":"RSVP_Erv_DelayBnd","features":[453]},{"name":"RSVP_Erv_Flow_Rate","features":[453]},{"name":"RSVP_Erv_MEMORY","features":[453]},{"name":"RSVP_Erv_MTU","features":[453]},{"name":"RSVP_Erv_Min_Policied_size","features":[453]},{"name":"RSVP_Erv_No_Serv","features":[453]},{"name":"RSVP_Erv_Nonev","features":[453]},{"name":"RSVP_Erv_Other","features":[453]},{"name":"RSVP_Erv_Peak_Rate","features":[453]},{"name":"RSVP_FILTERSPEC","features":[453]},{"name":"RSVP_FILTERSPEC_V4","features":[453]},{"name":"RSVP_FILTERSPEC_V4_GPI","features":[453]},{"name":"RSVP_FILTERSPEC_V6","features":[453]},{"name":"RSVP_FILTERSPEC_V6_FLOW","features":[453]},{"name":"RSVP_FILTERSPEC_V6_GPI","features":[453]},{"name":"RSVP_FIXED_FILTER_STYLE","features":[453]},{"name":"RSVP_HOP","features":[453,318]},{"name":"RSVP_MSG_OBJS","features":[453,318]},{"name":"RSVP_OBJECT_ID_BASE","features":[453]},{"name":"RSVP_PATH","features":[453]},{"name":"RSVP_PATH_ERR","features":[453]},{"name":"RSVP_PATH_TEAR","features":[453]},{"name":"RSVP_POLICY","features":[453]},{"name":"RSVP_POLICY_INFO","features":[453]},{"name":"RSVP_RESERVE_INFO","features":[453,318]},{"name":"RSVP_RESV","features":[453]},{"name":"RSVP_RESV_ERR","features":[453]},{"name":"RSVP_RESV_TEAR","features":[453]},{"name":"RSVP_SCOPE","features":[453,318]},{"name":"RSVP_SESSION","features":[453,318]},{"name":"RSVP_SHARED_EXPLICIT_STYLE","features":[453]},{"name":"RSVP_STATUS_INFO","features":[453]},{"name":"RSVP_WILDCARD_STYLE","features":[453]},{"name":"RsvpObjHdr","features":[453]},{"name":"Rsvp_Hop_IPv4","features":[453,318]},{"name":"SENDER_TSPEC","features":[453]},{"name":"SERVICETYPE_BESTEFFORT","features":[453]},{"name":"SERVICETYPE_CONTROLLEDLOAD","features":[453]},{"name":"SERVICETYPE_GENERAL_INFORMATION","features":[453]},{"name":"SERVICETYPE_GUARANTEED","features":[453]},{"name":"SERVICETYPE_NETWORK_CONTROL","features":[453]},{"name":"SERVICETYPE_NETWORK_UNAVAILABLE","features":[453]},{"name":"SERVICETYPE_NOCHANGE","features":[453]},{"name":"SERVICETYPE_NONCONFORMING","features":[453]},{"name":"SERVICETYPE_NOTRAFFIC","features":[453]},{"name":"SERVICETYPE_QUALITATIVE","features":[453]},{"name":"SERVICE_BESTEFFORT","features":[453]},{"name":"SERVICE_CONTROLLEDLOAD","features":[453]},{"name":"SERVICE_GUARANTEED","features":[453]},{"name":"SERVICE_NO_QOS_SIGNALING","features":[453]},{"name":"SERVICE_NO_TRAFFIC_CONTROL","features":[453]},{"name":"SERVICE_QUALITATIVE","features":[453]},{"name":"SESSFLG_E_Police","features":[453]},{"name":"SIPAERROR_FIRMWAREFAILURE","features":[453]},{"name":"SIPAERROR_INTERNALFAILURE","features":[453]},{"name":"SIPAEVENTTYPE_AGGREGATION","features":[453]},{"name":"SIPAEVENTTYPE_AUTHORITY","features":[453]},{"name":"SIPAEVENTTYPE_CONTAINER","features":[453]},{"name":"SIPAEVENTTYPE_DRTM","features":[453]},{"name":"SIPAEVENTTYPE_ELAM","features":[453]},{"name":"SIPAEVENTTYPE_ERROR","features":[453]},{"name":"SIPAEVENTTYPE_INFORMATION","features":[453]},{"name":"SIPAEVENTTYPE_KSR","features":[453]},{"name":"SIPAEVENTTYPE_LOADEDMODULE","features":[453]},{"name":"SIPAEVENTTYPE_NONMEASURED","features":[453]},{"name":"SIPAEVENTTYPE_OSPARAMETER","features":[453]},{"name":"SIPAEVENTTYPE_PREOSPARAMETER","features":[453]},{"name":"SIPAEVENTTYPE_TRUSTPOINT","features":[453]},{"name":"SIPAEVENTTYPE_VBS","features":[453]},{"name":"SIPAEVENT_APPLICATION_RETURN","features":[453]},{"name":"SIPAEVENT_APPLICATION_SVN","features":[453]},{"name":"SIPAEVENT_AUTHENTICODEHASH","features":[453]},{"name":"SIPAEVENT_AUTHORITYISSUER","features":[453]},{"name":"SIPAEVENT_AUTHORITYPUBKEY","features":[453]},{"name":"SIPAEVENT_AUTHORITYPUBLISHER","features":[453]},{"name":"SIPAEVENT_AUTHORITYSERIAL","features":[453]},{"name":"SIPAEVENT_AUTHORITYSHA1THUMBPRINT","features":[453]},{"name":"SIPAEVENT_BITLOCKER_UNLOCK","features":[453]},{"name":"SIPAEVENT_BOOTCOUNTER","features":[453]},{"name":"SIPAEVENT_BOOTDEBUGGING","features":[453]},{"name":"SIPAEVENT_BOOT_REVOCATION_LIST","features":[453]},{"name":"SIPAEVENT_CODEINTEGRITY","features":[453]},{"name":"SIPAEVENT_COUNTERID","features":[453]},{"name":"SIPAEVENT_DATAEXECUTIONPREVENTION","features":[453]},{"name":"SIPAEVENT_DRIVER_LOAD_POLICY","features":[453]},{"name":"SIPAEVENT_DRTM_AMD_SMM_HASH","features":[453]},{"name":"SIPAEVENT_DRTM_AMD_SMM_SIGNER_KEY","features":[453]},{"name":"SIPAEVENT_DRTM_SMM_LEVEL","features":[453]},{"name":"SIPAEVENT_DRTM_STATE_AUTH","features":[453]},{"name":"SIPAEVENT_DUMPS_DISABLED","features":[453]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_ENABLED","features":[453]},{"name":"SIPAEVENT_DUMP_ENCRYPTION_KEY_DIGEST","features":[453]},{"name":"SIPAEVENT_ELAM_CONFIGURATION","features":[453]},{"name":"SIPAEVENT_ELAM_KEYNAME","features":[453]},{"name":"SIPAEVENT_ELAM_MEASURED","features":[453]},{"name":"SIPAEVENT_ELAM_POLICY","features":[453]},{"name":"SIPAEVENT_EVENTCOUNTER","features":[453]},{"name":"SIPAEVENT_FILEPATH","features":[453]},{"name":"SIPAEVENT_FLIGHTSIGNING","features":[453]},{"name":"SIPAEVENT_HASHALGORITHMID","features":[453]},{"name":"SIPAEVENT_HIBERNATION_DISABLED","features":[453]},{"name":"SIPAEVENT_HYPERVISOR_BOOT_DMA_PROTECTION","features":[453]},{"name":"SIPAEVENT_HYPERVISOR_DEBUG","features":[453]},{"name":"SIPAEVENT_HYPERVISOR_IOMMU_POLICY","features":[453]},{"name":"SIPAEVENT_HYPERVISOR_LAUNCH_TYPE","features":[453]},{"name":"SIPAEVENT_HYPERVISOR_MMIO_NX_POLICY","features":[453]},{"name":"SIPAEVENT_HYPERVISOR_MSR_FILTER_POLICY","features":[453]},{"name":"SIPAEVENT_HYPERVISOR_PATH","features":[453]},{"name":"SIPAEVENT_IMAGEBASE","features":[453]},{"name":"SIPAEVENT_IMAGESIZE","features":[453]},{"name":"SIPAEVENT_IMAGEVALIDATED","features":[453]},{"name":"SIPAEVENT_INFORMATION","features":[453]},{"name":"SIPAEVENT_KSR_SIGNATURE","features":[453]},{"name":"SIPAEVENT_KSR_SIGNATURE_PAYLOAD","features":[453]},{"name":"SIPAEVENT_LSAISO_CONFIG","features":[453]},{"name":"SIPAEVENT_MODULE_HSP","features":[453]},{"name":"SIPAEVENT_MODULE_SVN","features":[453]},{"name":"SIPAEVENT_MORBIT_API_STATUS","features":[453]},{"name":"SIPAEVENT_MORBIT_NOT_CANCELABLE","features":[453]},{"name":"SIPAEVENT_NOAUTHORITY","features":[453]},{"name":"SIPAEVENT_OSDEVICE","features":[453]},{"name":"SIPAEVENT_OSKERNELDEBUG","features":[453]},{"name":"SIPAEVENT_OS_REVOCATION_LIST","features":[453]},{"name":"SIPAEVENT_PAGEFILE_ENCRYPTION_ENABLED","features":[453]},{"name":"SIPAEVENT_PHYSICALADDRESSEXTENSION","features":[453]},{"name":"SIPAEVENT_REVOCATION_LIST_PAYLOAD","features":[453]},{"name":"SIPAEVENT_SAFEMODE","features":[453]},{"name":"SIPAEVENT_SBCP_INFO","features":[453]},{"name":"SIPAEVENT_SBCP_INFO_PAYLOAD_V1","features":[453]},{"name":"SIPAEVENT_SI_POLICY","features":[453]},{"name":"SIPAEVENT_SI_POLICY_PAYLOAD","features":[453]},{"name":"SIPAEVENT_SMT_STATUS","features":[453]},{"name":"SIPAEVENT_SVN_CHAIN_STATUS","features":[453]},{"name":"SIPAEVENT_SYSTEMROOT","features":[453]},{"name":"SIPAEVENT_TESTSIGNING","features":[453]},{"name":"SIPAEVENT_TRANSFER_CONTROL","features":[453]},{"name":"SIPAEVENT_VBS_DUMP_USES_AMEROOT","features":[453]},{"name":"SIPAEVENT_VBS_HVCI_POLICY","features":[453]},{"name":"SIPAEVENT_VBS_IOMMU_REQUIRED","features":[453]},{"name":"SIPAEVENT_VBS_MANDATORY_ENFORCEMENT","features":[453]},{"name":"SIPAEVENT_VBS_MICROSOFT_BOOT_CHAIN_REQUIRED","features":[453]},{"name":"SIPAEVENT_VBS_MMIO_NX_REQUIRED","features":[453]},{"name":"SIPAEVENT_VBS_MSR_FILTERING_REQUIRED","features":[453]},{"name":"SIPAEVENT_VBS_SECUREBOOT_REQUIRED","features":[453]},{"name":"SIPAEVENT_VBS_VSM_NOSECRETS_ENFORCED","features":[453]},{"name":"SIPAEVENT_VBS_VSM_REQUIRED","features":[453]},{"name":"SIPAEVENT_VSM_IDKS_INFO","features":[453]},{"name":"SIPAEVENT_VSM_IDK_INFO","features":[453]},{"name":"SIPAEVENT_VSM_IDK_INFO_PAYLOAD","features":[453]},{"name":"SIPAEVENT_VSM_IDK_RSA_INFO","features":[453]},{"name":"SIPAEVENT_VSM_LAUNCH_TYPE","features":[453]},{"name":"SIPAEVENT_WINPE","features":[453]},{"name":"SIPAEV_ACTION","features":[453]},{"name":"SIPAEV_AMD_SL_EVENT_BASE","features":[453]},{"name":"SIPAEV_AMD_SL_LOAD","features":[453]},{"name":"SIPAEV_AMD_SL_LOAD_1","features":[453]},{"name":"SIPAEV_AMD_SL_PSP_FW_SPLT","features":[453]},{"name":"SIPAEV_AMD_SL_PUB_KEY","features":[453]},{"name":"SIPAEV_AMD_SL_SEPARATOR","features":[453]},{"name":"SIPAEV_AMD_SL_SVN","features":[453]},{"name":"SIPAEV_AMD_SL_TSME_RB_FUSE","features":[453]},{"name":"SIPAEV_COMPACT_HASH","features":[453]},{"name":"SIPAEV_CPU_MICROCODE","features":[453]},{"name":"SIPAEV_EFI_ACTION","features":[453]},{"name":"SIPAEV_EFI_BOOT_SERVICES_APPLICATION","features":[453]},{"name":"SIPAEV_EFI_BOOT_SERVICES_DRIVER","features":[453]},{"name":"SIPAEV_EFI_EVENT_BASE","features":[453]},{"name":"SIPAEV_EFI_GPT_EVENT","features":[453]},{"name":"SIPAEV_EFI_HANDOFF_TABLES","features":[453]},{"name":"SIPAEV_EFI_HANDOFF_TABLES2","features":[453]},{"name":"SIPAEV_EFI_HCRTM_EVENT","features":[453]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB","features":[453]},{"name":"SIPAEV_EFI_PLATFORM_FIRMWARE_BLOB2","features":[453]},{"name":"SIPAEV_EFI_RUNTIME_SERVICES_DRIVER","features":[453]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_BLOB","features":[453]},{"name":"SIPAEV_EFI_SPDM_FIRMWARE_CONFIG","features":[453]},{"name":"SIPAEV_EFI_VARIABLE_AUTHORITY","features":[453]},{"name":"SIPAEV_EFI_VARIABLE_BOOT","features":[453]},{"name":"SIPAEV_EFI_VARIABLE_BOOT2","features":[453]},{"name":"SIPAEV_EFI_VARIABLE_DRIVER_CONFIG","features":[453]},{"name":"SIPAEV_EVENT_TAG","features":[453]},{"name":"SIPAEV_IPL","features":[453]},{"name":"SIPAEV_IPL_PARTITION_DATA","features":[453]},{"name":"SIPAEV_NONHOST_CODE","features":[453]},{"name":"SIPAEV_NONHOST_CONFIG","features":[453]},{"name":"SIPAEV_NONHOST_INFO","features":[453]},{"name":"SIPAEV_NO_ACTION","features":[453]},{"name":"SIPAEV_OMIT_BOOT_DEVICE_EVENTS","features":[453]},{"name":"SIPAEV_PLATFORM_CONFIG_FLAGS","features":[453]},{"name":"SIPAEV_POST_CODE","features":[453]},{"name":"SIPAEV_PREBOOT_CERT","features":[453]},{"name":"SIPAEV_SEPARATOR","features":[453]},{"name":"SIPAEV_S_CRTM_CONTENTS","features":[453]},{"name":"SIPAEV_S_CRTM_VERSION","features":[453]},{"name":"SIPAEV_TABLE_OF_DEVICES","features":[453]},{"name":"SIPAEV_TXT_BIOSAC_REG_DATA","features":[453]},{"name":"SIPAEV_TXT_BOOT_POL_HASH","features":[453]},{"name":"SIPAEV_TXT_BPM_HASH","features":[453]},{"name":"SIPAEV_TXT_BPM_INFO_HASH","features":[453]},{"name":"SIPAEV_TXT_CAP_VALUE","features":[453]},{"name":"SIPAEV_TXT_COLD_BOOT_BIOS_HASH","features":[453]},{"name":"SIPAEV_TXT_COMBINED_HASH","features":[453]},{"name":"SIPAEV_TXT_CPU_SCRTM_STAT","features":[453]},{"name":"SIPAEV_TXT_ELEMENTS_HASH","features":[453]},{"name":"SIPAEV_TXT_EVENT_BASE","features":[453]},{"name":"SIPAEV_TXT_HASH_START","features":[453]},{"name":"SIPAEV_TXT_KM_HASH","features":[453]},{"name":"SIPAEV_TXT_KM_INFO_HASH","features":[453]},{"name":"SIPAEV_TXT_LCP_AUTHORITIES_HASH","features":[453]},{"name":"SIPAEV_TXT_LCP_CONTROL_HASH","features":[453]},{"name":"SIPAEV_TXT_LCP_DETAILS_HASH","features":[453]},{"name":"SIPAEV_TXT_LCP_HASH","features":[453]},{"name":"SIPAEV_TXT_MLE_HASH","features":[453]},{"name":"SIPAEV_TXT_NV_INFO_HASH","features":[453]},{"name":"SIPAEV_TXT_OSSINITDATA_CAP_HASH","features":[453]},{"name":"SIPAEV_TXT_PCR_MAPPING","features":[453]},{"name":"SIPAEV_TXT_RANDOM_VALUE","features":[453]},{"name":"SIPAEV_TXT_SINIT_PUBKEY_HASH","features":[453]},{"name":"SIPAEV_TXT_STM_HASH","features":[453]},{"name":"SIPAEV_UNUSED","features":[453]},{"name":"SIPAHDRSIGNATURE","features":[453]},{"name":"SIPAKSRHDRSIGNATURE","features":[453]},{"name":"SIPALOGVERSION","features":[453]},{"name":"STATE_TIMEOUT","features":[453]},{"name":"Scope_list_ipv4","features":[453,318]},{"name":"Session_IPv4","features":[453,318]},{"name":"TCBASE","features":[453]},{"name":"TCG_PCClientPCREventStruct","features":[453]},{"name":"TCG_PCClientTaggedEventStruct","features":[453]},{"name":"TCI_ADD_FLOW_COMPLETE_HANDLER","features":[305,453]},{"name":"TCI_CLIENT_FUNC_LIST","features":[305,453]},{"name":"TCI_DEL_FLOW_COMPLETE_HANDLER","features":[305,453]},{"name":"TCI_MOD_FLOW_COMPLETE_HANDLER","features":[305,453]},{"name":"TCI_NOTIFY_HANDLER","features":[305,453]},{"name":"TC_GEN_FILTER","features":[453]},{"name":"TC_GEN_FLOW","features":[453,318]},{"name":"TC_IFC_DESCRIPTOR","features":[319,453]},{"name":"TC_NONCONF_BORROW","features":[453]},{"name":"TC_NONCONF_BORROW_PLUS","features":[453]},{"name":"TC_NONCONF_DISCARD","features":[453]},{"name":"TC_NONCONF_SHAPE","features":[453]},{"name":"TC_NOTIFY_FLOW_CLOSE","features":[453]},{"name":"TC_NOTIFY_IFC_CHANGE","features":[453]},{"name":"TC_NOTIFY_IFC_CLOSE","features":[453]},{"name":"TC_NOTIFY_IFC_UP","features":[453]},{"name":"TC_NOTIFY_PARAM_CHANGED","features":[453]},{"name":"TC_SUPPORTED_INFO_BUFFER","features":[319,453]},{"name":"TcAddFilter","features":[305,453]},{"name":"TcAddFlow","features":[305,453,318]},{"name":"TcCloseInterface","features":[305,453]},{"name":"TcDeleteFilter","features":[305,453]},{"name":"TcDeleteFlow","features":[305,453]},{"name":"TcDeregisterClient","features":[305,453]},{"name":"TcEnumerateFlows","features":[305,453,318]},{"name":"TcEnumerateInterfaces","features":[305,319,453]},{"name":"TcGetFlowNameA","features":[305,453]},{"name":"TcGetFlowNameW","features":[305,453]},{"name":"TcModifyFlow","features":[305,453,318]},{"name":"TcOpenInterfaceA","features":[305,453]},{"name":"TcOpenInterfaceW","features":[305,453]},{"name":"TcQueryFlowA","features":[453]},{"name":"TcQueryFlowW","features":[453]},{"name":"TcQueryInterface","features":[305,453]},{"name":"TcRegisterClient","features":[305,453]},{"name":"TcSetFlowA","features":[453]},{"name":"TcSetFlowW","features":[453]},{"name":"TcSetInterface","features":[305,453]},{"name":"UNSUPPORTED_CREDENTIAL_TYPE","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_256","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_384","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA3_512","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_1","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_256","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_384","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SHA_2_512","features":[453]},{"name":"WBCL_DIGEST_ALG_BITMAP_SM3_256","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_256","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_384","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SHA3_512","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SHA_1","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_256","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_384","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SHA_2_512","features":[453]},{"name":"WBCL_DIGEST_ALG_ID_SM3_256","features":[453]},{"name":"WBCL_HASH_LEN_SHA1","features":[453]},{"name":"WBCL_Iterator","features":[453]},{"name":"WBCL_LogHdr","features":[453]},{"name":"WBCL_MAX_HSP_UPGRADE_HASH_LEN","features":[453]},{"name":"class_ADSPEC","features":[453]},{"name":"class_CONFIRM","features":[453]},{"name":"class_ERROR_SPEC","features":[453]},{"name":"class_FILTER_SPEC","features":[453]},{"name":"class_FLOWSPEC","features":[453]},{"name":"class_INTEGRITY","features":[453]},{"name":"class_IS_FLOWSPEC","features":[453]},{"name":"class_MAX","features":[453]},{"name":"class_NULL","features":[453]},{"name":"class_POLICY_DATA","features":[453]},{"name":"class_RSVP_HOP","features":[453]},{"name":"class_SCOPE","features":[453]},{"name":"class_SENDER_TEMPLATE","features":[453]},{"name":"class_SENDER_TSPEC","features":[453]},{"name":"class_SESSION","features":[453]},{"name":"class_SESSION_GROUP","features":[453]},{"name":"class_STYLE","features":[453]},{"name":"class_TIME_VALUES","features":[453]},{"name":"ctype_ADSPEC_INTSERV","features":[453]},{"name":"ctype_ERROR_SPEC_ipv4","features":[453]},{"name":"ctype_FILTER_SPEC_ipv4","features":[453]},{"name":"ctype_FILTER_SPEC_ipv4GPI","features":[453]},{"name":"ctype_FLOWSPEC_Intserv0","features":[453]},{"name":"ctype_POLICY_DATA","features":[453]},{"name":"ctype_RSVP_HOP_ipv4","features":[453]},{"name":"ctype_SCOPE_list_ipv4","features":[453]},{"name":"ctype_SENDER_TEMPLATE_ipv4","features":[453]},{"name":"ctype_SENDER_TEMPLATE_ipv4GPI","features":[453]},{"name":"ctype_SENDER_TSPEC","features":[453]},{"name":"ctype_SESSION_ipv4","features":[453]},{"name":"ctype_SESSION_ipv4GPI","features":[453]},{"name":"ctype_STYLE","features":[453]},{"name":"int_serv_wkp","features":[453]},{"name":"ioctl_code","features":[453]},{"name":"mCOMPANY","features":[453]},{"name":"mIOC_IN","features":[453]},{"name":"mIOC_OUT","features":[453]},{"name":"mIOC_VENDOR","features":[453]}],"459":[{"name":"ALLOW_NO_AUTH","features":[454]},{"name":"ALL_SOURCES","features":[454]},{"name":"ANY_SOURCE","features":[454]},{"name":"ATADDRESSLEN","features":[454]},{"name":"AUTH_VALIDATION_EX","features":[305,454]},{"name":"DO_NOT_ALLOW_NO_AUTH","features":[454]},{"name":"ERROR_ACCESSING_TCPCFGDLL","features":[454]},{"name":"ERROR_ACCT_DISABLED","features":[454]},{"name":"ERROR_ACCT_EXPIRED","features":[454]},{"name":"ERROR_ACTION_REQUIRED","features":[454]},{"name":"ERROR_ALLOCATING_MEMORY","features":[454]},{"name":"ERROR_ALREADY_DISCONNECTING","features":[454]},{"name":"ERROR_ASYNC_REQUEST_PENDING","features":[454]},{"name":"ERROR_AUTHENTICATION_FAILURE","features":[454]},{"name":"ERROR_AUTH_INTERNAL","features":[454]},{"name":"ERROR_AUTOMATIC_VPN_FAILED","features":[454]},{"name":"ERROR_BAD_ADDRESS_SPECIFIED","features":[454]},{"name":"ERROR_BAD_CALLBACK_NUMBER","features":[454]},{"name":"ERROR_BAD_PHONE_NUMBER","features":[454]},{"name":"ERROR_BAD_STRING","features":[454]},{"name":"ERROR_BAD_USAGE_IN_INI_FILE","features":[454]},{"name":"ERROR_BIPLEX_PORT_NOT_AVAILABLE","features":[454]},{"name":"ERROR_BLOCKED","features":[454]},{"name":"ERROR_BROADBAND_ACTIVE","features":[454]},{"name":"ERROR_BROADBAND_NO_NIC","features":[454]},{"name":"ERROR_BROADBAND_TIMEOUT","features":[454]},{"name":"ERROR_BUFFER_INVALID","features":[454]},{"name":"ERROR_BUFFER_TOO_SMALL","features":[454]},{"name":"ERROR_BUNDLE_NOT_FOUND","features":[454]},{"name":"ERROR_CANNOT_DELETE","features":[454]},{"name":"ERROR_CANNOT_DO_CUSTOMDIAL","features":[454]},{"name":"ERROR_CANNOT_FIND_PHONEBOOK_ENTRY","features":[454]},{"name":"ERROR_CANNOT_GET_LANA","features":[454]},{"name":"ERROR_CANNOT_INITIATE_MOBIKE_UPDATE","features":[454]},{"name":"ERROR_CANNOT_LOAD_PHONEBOOK","features":[454]},{"name":"ERROR_CANNOT_LOAD_STRING","features":[454]},{"name":"ERROR_CANNOT_OPEN_PHONEBOOK","features":[454]},{"name":"ERROR_CANNOT_PROJECT_CLIENT","features":[454]},{"name":"ERROR_CANNOT_SET_PORT_INFO","features":[454]},{"name":"ERROR_CANNOT_SHARE_CONNECTION","features":[454]},{"name":"ERROR_CANNOT_USE_LOGON_CREDENTIALS","features":[454]},{"name":"ERROR_CANNOT_WRITE_PHONEBOOK","features":[454]},{"name":"ERROR_CERT_FOR_ENCRYPTION_NOT_FOUND","features":[454]},{"name":"ERROR_CHANGING_PASSWORD","features":[454]},{"name":"ERROR_CMD_TOO_LONG","features":[454]},{"name":"ERROR_CONGESTION","features":[454]},{"name":"ERROR_CONNECTING_DEVICE_NOT_FOUND","features":[454]},{"name":"ERROR_CONNECTION_ALREADY_SHARED","features":[454]},{"name":"ERROR_CONNECTION_REJECT","features":[454]},{"name":"ERROR_CORRUPT_PHONEBOOK","features":[454]},{"name":"ERROR_DCB_NOT_FOUND","features":[454]},{"name":"ERROR_DEFAULTOFF_MACRO_NOT_FOUND","features":[454]},{"name":"ERROR_DEVICENAME_NOT_FOUND","features":[454]},{"name":"ERROR_DEVICENAME_TOO_LONG","features":[454]},{"name":"ERROR_DEVICETYPE_DOES_NOT_EXIST","features":[454]},{"name":"ERROR_DEVICE_COMPLIANCE","features":[454]},{"name":"ERROR_DEVICE_DOES_NOT_EXIST","features":[454]},{"name":"ERROR_DEVICE_NOT_READY","features":[454]},{"name":"ERROR_DIAL_ALREADY_IN_PROGRESS","features":[454]},{"name":"ERROR_DISCONNECTION","features":[454]},{"name":"ERROR_DNSNAME_NOT_RESOLVABLE","features":[454]},{"name":"ERROR_DONOTDISTURB","features":[454]},{"name":"ERROR_EAPTLS_CACHE_CREDENTIALS_INVALID","features":[454]},{"name":"ERROR_EAPTLS_PASSWD_INVALID","features":[454]},{"name":"ERROR_EAPTLS_SCARD_CACHE_CREDENTIALS_INVALID","features":[454]},{"name":"ERROR_EAP_METHOD_DOES_NOT_SUPPORT_SSO","features":[454]},{"name":"ERROR_EAP_METHOD_NOT_INSTALLED","features":[454]},{"name":"ERROR_EAP_METHOD_OPERATION_NOT_SUPPORTED","features":[454]},{"name":"ERROR_EAP_SERVER_CERT_EXPIRED","features":[454]},{"name":"ERROR_EAP_SERVER_CERT_INVALID","features":[454]},{"name":"ERROR_EAP_SERVER_CERT_OTHER_ERROR","features":[454]},{"name":"ERROR_EAP_SERVER_CERT_REVOKED","features":[454]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_INVALID","features":[454]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NAME_REQUIRED","features":[454]},{"name":"ERROR_EAP_SERVER_ROOT_CERT_NOT_FOUND","features":[454]},{"name":"ERROR_EAP_USER_CERT_EXPIRED","features":[454]},{"name":"ERROR_EAP_USER_CERT_INVALID","features":[454]},{"name":"ERROR_EAP_USER_CERT_OTHER_ERROR","features":[454]},{"name":"ERROR_EAP_USER_CERT_REVOKED","features":[454]},{"name":"ERROR_EAP_USER_ROOT_CERT_EXPIRED","features":[454]},{"name":"ERROR_EAP_USER_ROOT_CERT_INVALID","features":[454]},{"name":"ERROR_EAP_USER_ROOT_CERT_NOT_FOUND","features":[454]},{"name":"ERROR_EMPTY_INI_FILE","features":[454]},{"name":"ERROR_EVENT_INVALID","features":[454]},{"name":"ERROR_FAILED_CP_REQUIRED","features":[454]},{"name":"ERROR_FAILED_TO_ENCRYPT","features":[454]},{"name":"ERROR_FAST_USER_SWITCH","features":[454]},{"name":"ERROR_FEATURE_DEPRECATED","features":[454]},{"name":"ERROR_FILE_COULD_NOT_BE_OPENED","features":[454]},{"name":"ERROR_FROM_DEVICE","features":[454]},{"name":"ERROR_HANGUP_FAILED","features":[454]},{"name":"ERROR_HARDWARE_FAILURE","features":[454]},{"name":"ERROR_HIBERNATION","features":[454]},{"name":"ERROR_IDLE_TIMEOUT","features":[454]},{"name":"ERROR_IKEV2_PSK_INTERFACE_ALREADY_EXISTS","features":[454]},{"name":"ERROR_INCOMPATIBLE","features":[454]},{"name":"ERROR_INTERACTIVE_MODE","features":[454]},{"name":"ERROR_INTERNAL_ADDRESS_FAILURE","features":[454]},{"name":"ERROR_INVALID_AUTH_STATE","features":[454]},{"name":"ERROR_INVALID_CALLBACK_NUMBER","features":[454]},{"name":"ERROR_INVALID_COMPRESSION_SPECIFIED","features":[454]},{"name":"ERROR_INVALID_DESTINATION_IP","features":[454]},{"name":"ERROR_INVALID_FUNCTION_FOR_ENTRY","features":[454]},{"name":"ERROR_INVALID_INTERFACE_CONFIG","features":[454]},{"name":"ERROR_INVALID_MSCHAPV2_CONFIG","features":[454]},{"name":"ERROR_INVALID_PEAP_COOKIE_ATTRIBUTES","features":[454]},{"name":"ERROR_INVALID_PEAP_COOKIE_CONFIG","features":[454]},{"name":"ERROR_INVALID_PEAP_COOKIE_USER","features":[454]},{"name":"ERROR_INVALID_PORT_HANDLE","features":[454]},{"name":"ERROR_INVALID_PREFERENCES","features":[454]},{"name":"ERROR_INVALID_SERVER_CERT","features":[454]},{"name":"ERROR_INVALID_SIZE","features":[454]},{"name":"ERROR_INVALID_SMM","features":[454]},{"name":"ERROR_INVALID_TUNNELID","features":[454]},{"name":"ERROR_INVALID_VPNSTRATEGY","features":[454]},{"name":"ERROR_IN_COMMAND","features":[454]},{"name":"ERROR_IPSEC_SERVICE_STOPPED","features":[454]},{"name":"ERROR_IPXCP_DIALOUT_ALREADY_ACTIVE","features":[454]},{"name":"ERROR_IPXCP_NET_NUMBER_CONFLICT","features":[454]},{"name":"ERROR_IPXCP_NO_DIALIN_CONFIGURED","features":[454]},{"name":"ERROR_IPXCP_NO_DIALOUT_CONFIGURED","features":[454]},{"name":"ERROR_IP_CONFIGURATION","features":[454]},{"name":"ERROR_KEY_NOT_FOUND","features":[454]},{"name":"ERROR_LINE_BUSY","features":[454]},{"name":"ERROR_LINK_FAILURE","features":[454]},{"name":"ERROR_MACRO_NOT_DEFINED","features":[454]},{"name":"ERROR_MACRO_NOT_FOUND","features":[454]},{"name":"ERROR_MESSAGE_MACRO_NOT_FOUND","features":[454]},{"name":"ERROR_MOBIKE_DISABLED","features":[454]},{"name":"ERROR_NAME_EXISTS_ON_NET","features":[454]},{"name":"ERROR_NETBIOS_ERROR","features":[454]},{"name":"ERROR_NOT_BINARY_MACRO","features":[454]},{"name":"ERROR_NOT_NAP_CAPABLE","features":[454]},{"name":"ERROR_NO_ACTIVE_ISDN_LINES","features":[454]},{"name":"ERROR_NO_ANSWER","features":[454]},{"name":"ERROR_NO_CARRIER","features":[454]},{"name":"ERROR_NO_CERTIFICATE","features":[454]},{"name":"ERROR_NO_COMMAND_FOUND","features":[454]},{"name":"ERROR_NO_CONNECTION","features":[454]},{"name":"ERROR_NO_DIALIN_PERMISSION","features":[454]},{"name":"ERROR_NO_DIALTONE","features":[454]},{"name":"ERROR_NO_DIFF_USER_AT_LOGON","features":[454]},{"name":"ERROR_NO_EAPTLS_CERTIFICATE","features":[454]},{"name":"ERROR_NO_ENDPOINTS","features":[454]},{"name":"ERROR_NO_IP_ADDRESSES","features":[454]},{"name":"ERROR_NO_IP_RAS_ADAPTER","features":[454]},{"name":"ERROR_NO_ISDN_CHANNELS_AVAILABLE","features":[454]},{"name":"ERROR_NO_LOCAL_ENCRYPTION","features":[454]},{"name":"ERROR_NO_MAC_FOR_PORT","features":[454]},{"name":"ERROR_NO_REG_CERT_AT_LOGON","features":[454]},{"name":"ERROR_NO_REMOTE_ENCRYPTION","features":[454]},{"name":"ERROR_NO_RESPONSES","features":[454]},{"name":"ERROR_NO_SMART_CARD_READER","features":[454]},{"name":"ERROR_NUMBERCHANGED","features":[454]},{"name":"ERROR_OAKLEY_ATTRIB_FAIL","features":[454]},{"name":"ERROR_OAKLEY_AUTH_FAIL","features":[454]},{"name":"ERROR_OAKLEY_ERROR","features":[454]},{"name":"ERROR_OAKLEY_GENERAL_PROCESSING","features":[454]},{"name":"ERROR_OAKLEY_NO_CERT","features":[454]},{"name":"ERROR_OAKLEY_NO_PEER_CERT","features":[454]},{"name":"ERROR_OAKLEY_NO_POLICY","features":[454]},{"name":"ERROR_OAKLEY_TIMED_OUT","features":[454]},{"name":"ERROR_OUTOFORDER","features":[454]},{"name":"ERROR_OUT_OF_BUFFERS","features":[454]},{"name":"ERROR_OVERRUN","features":[454]},{"name":"ERROR_PARTIAL_RESPONSE_LOOPING","features":[454]},{"name":"ERROR_PASSWD_EXPIRED","features":[454]},{"name":"ERROR_PEAP_CRYPTOBINDING_INVALID","features":[454]},{"name":"ERROR_PEAP_CRYPTOBINDING_NOTRECEIVED","features":[454]},{"name":"ERROR_PEAP_IDENTITY_MISMATCH","features":[454]},{"name":"ERROR_PEAP_SERVER_REJECTED_CLIENT_TLV","features":[454]},{"name":"ERROR_PHONE_NUMBER_TOO_LONG","features":[454]},{"name":"ERROR_PLUGIN_NOT_INSTALLED","features":[454]},{"name":"ERROR_PORT_ALREADY_OPEN","features":[454]},{"name":"ERROR_PORT_DISCONNECTED","features":[454]},{"name":"ERROR_PORT_NOT_AVAILABLE","features":[454]},{"name":"ERROR_PORT_NOT_CONFIGURED","features":[454]},{"name":"ERROR_PORT_NOT_CONNECTED","features":[454]},{"name":"ERROR_PORT_NOT_FOUND","features":[454]},{"name":"ERROR_PORT_NOT_OPEN","features":[454]},{"name":"ERROR_PORT_OR_DEVICE","features":[454]},{"name":"ERROR_PPP_CP_REJECTED","features":[454]},{"name":"ERROR_PPP_INVALID_PACKET","features":[454]},{"name":"ERROR_PPP_LCP_TERMINATED","features":[454]},{"name":"ERROR_PPP_LOOPBACK_DETECTED","features":[454]},{"name":"ERROR_PPP_NCP_TERMINATED","features":[454]},{"name":"ERROR_PPP_NOT_CONVERGING","features":[454]},{"name":"ERROR_PPP_NO_ADDRESS_ASSIGNED","features":[454]},{"name":"ERROR_PPP_NO_PROTOCOLS_CONFIGURED","features":[454]},{"name":"ERROR_PPP_NO_RESPONSE","features":[454]},{"name":"ERROR_PPP_REMOTE_TERMINATED","features":[454]},{"name":"ERROR_PPP_REQUIRED_ADDRESS_REJECTED","features":[454]},{"name":"ERROR_PPP_TIMEOUT","features":[454]},{"name":"ERROR_PROJECTION_NOT_COMPLETE","features":[454]},{"name":"ERROR_PROTOCOL_ENGINE_DISABLED","features":[454]},{"name":"ERROR_PROTOCOL_NOT_CONFIGURED","features":[454]},{"name":"ERROR_RASAUTO_CANNOT_INITIALIZE","features":[454]},{"name":"ERROR_RASMAN_CANNOT_INITIALIZE","features":[454]},{"name":"ERROR_RASMAN_SERVICE_STOPPED","features":[454]},{"name":"ERROR_RASQEC_CONN_DOESNOTEXIST","features":[454]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_CONNECTED","features":[454]},{"name":"ERROR_RASQEC_NAPAGENT_NOT_ENABLED","features":[454]},{"name":"ERROR_RASQEC_RESOURCE_CREATION_FAILED","features":[454]},{"name":"ERROR_RASQEC_TIMEOUT","features":[454]},{"name":"ERROR_READING_DEFAULTOFF","features":[454]},{"name":"ERROR_READING_DEVICENAME","features":[454]},{"name":"ERROR_READING_DEVICETYPE","features":[454]},{"name":"ERROR_READING_INI_FILE","features":[454]},{"name":"ERROR_READING_MAXCARRIERBPS","features":[454]},{"name":"ERROR_READING_MAXCONNECTBPS","features":[454]},{"name":"ERROR_READING_SCARD","features":[454]},{"name":"ERROR_READING_SECTIONNAME","features":[454]},{"name":"ERROR_READING_USAGE","features":[454]},{"name":"ERROR_RECV_BUF_FULL","features":[454]},{"name":"ERROR_REMOTE_DISCONNECTION","features":[454]},{"name":"ERROR_REMOTE_REQUIRES_ENCRYPTION","features":[454]},{"name":"ERROR_REQUEST_TIMEOUT","features":[454]},{"name":"ERROR_RESTRICTED_LOGON_HOURS","features":[454]},{"name":"ERROR_ROUTE_NOT_ALLOCATED","features":[454]},{"name":"ERROR_ROUTE_NOT_AVAILABLE","features":[454]},{"name":"ERROR_SCRIPT_SYNTAX","features":[454]},{"name":"ERROR_SERVER_GENERAL_NET_FAILURE","features":[454]},{"name":"ERROR_SERVER_NOT_RESPONDING","features":[454]},{"name":"ERROR_SERVER_OUT_OF_RESOURCES","features":[454]},{"name":"ERROR_SERVER_POLICY","features":[454]},{"name":"ERROR_SHARE_CONNECTION_FAILED","features":[454]},{"name":"ERROR_SHARING_ADDRESS_EXISTS","features":[454]},{"name":"ERROR_SHARING_CHANGE_FAILED","features":[454]},{"name":"ERROR_SHARING_HOST_ADDRESS_CONFLICT","features":[454]},{"name":"ERROR_SHARING_MULTIPLE_ADDRESSES","features":[454]},{"name":"ERROR_SHARING_NO_PRIVATE_LAN","features":[454]},{"name":"ERROR_SHARING_PRIVATE_INSTALL","features":[454]},{"name":"ERROR_SHARING_ROUTER_INSTALL","features":[454]},{"name":"ERROR_SHARING_RRAS_CONFLICT","features":[454]},{"name":"ERROR_SLIP_REQUIRES_IP","features":[454]},{"name":"ERROR_SMART_CARD_REQUIRED","features":[454]},{"name":"ERROR_SMM_TIMEOUT","features":[454]},{"name":"ERROR_SMM_UNINITIALIZED","features":[454]},{"name":"ERROR_SSO_CERT_MISSING","features":[454]},{"name":"ERROR_SSTP_COOKIE_SET_FAILURE","features":[454]},{"name":"ERROR_STATE_MACHINES_ALREADY_STARTED","features":[454]},{"name":"ERROR_STATE_MACHINES_NOT_STARTED","features":[454]},{"name":"ERROR_SYSTEM_SUSPENDED","features":[454]},{"name":"ERROR_TAPI_CONFIGURATION","features":[454]},{"name":"ERROR_TEMPFAILURE","features":[454]},{"name":"ERROR_TOO_MANY_LINE_ERRORS","features":[454]},{"name":"ERROR_TS_UNACCEPTABLE","features":[454]},{"name":"ERROR_UNABLE_TO_AUTHENTICATE_SERVER","features":[454]},{"name":"ERROR_UNEXPECTED_RESPONSE","features":[454]},{"name":"ERROR_UNKNOWN","features":[454]},{"name":"ERROR_UNKNOWN_DEVICE_TYPE","features":[454]},{"name":"ERROR_UNKNOWN_FRAMED_PROTOCOL","features":[454]},{"name":"ERROR_UNKNOWN_RESPONSE_KEY","features":[454]},{"name":"ERROR_UNKNOWN_SERVICE_TYPE","features":[454]},{"name":"ERROR_UNRECOGNIZED_RESPONSE","features":[454]},{"name":"ERROR_UNSUPPORTED_BPS","features":[454]},{"name":"ERROR_UPDATECONNECTION_REQUEST_IN_PROCESS","features":[454]},{"name":"ERROR_USER_DISCONNECTION","features":[454]},{"name":"ERROR_USER_LOGOFF","features":[454]},{"name":"ERROR_VALIDATING_SERVER_CERT","features":[454]},{"name":"ERROR_VOICE_ANSWER","features":[454]},{"name":"ERROR_VPN_BAD_CERT","features":[454]},{"name":"ERROR_VPN_BAD_PSK","features":[454]},{"name":"ERROR_VPN_DISCONNECT","features":[454]},{"name":"ERROR_VPN_GRE_BLOCKED","features":[454]},{"name":"ERROR_VPN_PLUGIN_GENERIC","features":[454]},{"name":"ERROR_VPN_REFUSED","features":[454]},{"name":"ERROR_VPN_TIMEOUT","features":[454]},{"name":"ERROR_WRITING_DEFAULTOFF","features":[454]},{"name":"ERROR_WRITING_DEVICENAME","features":[454]},{"name":"ERROR_WRITING_DEVICETYPE","features":[454]},{"name":"ERROR_WRITING_INITBPS","features":[454]},{"name":"ERROR_WRITING_MAXCARRIERBPS","features":[454]},{"name":"ERROR_WRITING_MAXCONNECTBPS","features":[454]},{"name":"ERROR_WRITING_SECTIONNAME","features":[454]},{"name":"ERROR_WRITING_USAGE","features":[454]},{"name":"ERROR_WRONG_DEVICE_ATTACHED","features":[454]},{"name":"ERROR_WRONG_INFO_SPECIFIED","features":[454]},{"name":"ERROR_WRONG_KEY_SPECIFIED","features":[454]},{"name":"ERROR_WRONG_MODULE","features":[454]},{"name":"ERROR_WRONG_TUNNEL_TYPE","features":[454]},{"name":"ERROR_X25_DIAGNOSTIC","features":[454]},{"name":"ET_None","features":[454]},{"name":"ET_Optional","features":[454]},{"name":"ET_Require","features":[454]},{"name":"ET_RequireMax","features":[454]},{"name":"GRE_CONFIG_PARAMS0","features":[454]},{"name":"HRASCONN","features":[454]},{"name":"IKEV2_CONFIG_PARAMS","features":[305,454,389]},{"name":"IKEV2_ID_PAYLOAD_TYPE","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_DN","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_DER_ASN1_GN","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_FQDN","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_ID_IPV6_ADDR","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_INVALID","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_IPV4_ADDR","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_KEY_ID","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_MAX","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED1","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED2","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED3","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RESERVED4","features":[454]},{"name":"IKEV2_ID_PAYLOAD_TYPE_RFC822_ADDR","features":[454]},{"name":"IKEV2_PROJECTION_INFO","features":[454]},{"name":"IKEV2_PROJECTION_INFO2","features":[454]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS2","features":[454,389]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS3","features":[305,454,389]},{"name":"IKEV2_TUNNEL_CONFIG_PARAMS4","features":[305,454,389]},{"name":"IPADDRESSLEN","features":[454]},{"name":"IPV6_ADDRESS_LEN_IN_BYTES","features":[454]},{"name":"IPXADDRESSLEN","features":[454]},{"name":"L2TP_CONFIG_PARAMS0","features":[454]},{"name":"L2TP_CONFIG_PARAMS1","features":[454]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS1","features":[454]},{"name":"L2TP_TUNNEL_CONFIG_PARAMS2","features":[454]},{"name":"MAXIPADRESSLEN","features":[454]},{"name":"MAX_SSTP_HASH_SIZE","features":[454]},{"name":"METHOD_BGP4_AS_PATH","features":[454]},{"name":"METHOD_BGP4_NEXTHOP_ATTR","features":[454]},{"name":"METHOD_BGP4_PA_ORIGIN","features":[454]},{"name":"METHOD_BGP4_PEER_ID","features":[454]},{"name":"METHOD_RIP2_NEIGHBOUR_ADDR","features":[454]},{"name":"METHOD_RIP2_OUTBOUND_INTF","features":[454]},{"name":"METHOD_RIP2_ROUTE_TAG","features":[454]},{"name":"METHOD_RIP2_ROUTE_TIMESTAMP","features":[454]},{"name":"METHOD_TYPE_ALL_METHODS","features":[454]},{"name":"MGM_ENUM_TYPES","features":[454]},{"name":"MGM_FORWARD_STATE_FLAG","features":[454]},{"name":"MGM_IF_ENTRY","features":[305,454]},{"name":"MGM_JOIN_STATE_FLAG","features":[454]},{"name":"MGM_MFE_STATS_0","features":[454]},{"name":"MGM_MFE_STATS_1","features":[454]},{"name":"MPRAPI_ADMIN_DLL_CALLBACKS","features":[305,454,318]},{"name":"MPRAPI_ADMIN_DLL_VERSION_1","features":[454]},{"name":"MPRAPI_ADMIN_DLL_VERSION_2","features":[454]},{"name":"MPRAPI_IF_CUSTOM_CONFIG_FOR_IKEV2","features":[454]},{"name":"MPRAPI_IKEV2_AUTH_USING_CERT","features":[454]},{"name":"MPRAPI_IKEV2_AUTH_USING_EAP","features":[454]},{"name":"MPRAPI_IKEV2_PROJECTION_INFO_TYPE","features":[454]},{"name":"MPRAPI_IKEV2_SET_TUNNEL_CONFIG_PARAMS","features":[454]},{"name":"MPRAPI_L2TP_SET_TUNNEL_CONFIG_PARAMS","features":[454]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_1","features":[454]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_2","features":[454]},{"name":"MPRAPI_MPR_IF_CUSTOM_CONFIG_OBJECT_REVISION_3","features":[454]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_1","features":[454]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_2","features":[454]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_3","features":[454]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_4","features":[454]},{"name":"MPRAPI_MPR_SERVER_OBJECT_REVISION_5","features":[454]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_1","features":[454]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_2","features":[454]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_3","features":[454]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_4","features":[454]},{"name":"MPRAPI_MPR_SERVER_SET_CONFIG_OBJECT_REVISION_5","features":[454]},{"name":"MPRAPI_OBJECT_HEADER","features":[454]},{"name":"MPRAPI_OBJECT_TYPE","features":[454]},{"name":"MPRAPI_OBJECT_TYPE_AUTH_VALIDATION_OBJECT","features":[454]},{"name":"MPRAPI_OBJECT_TYPE_IF_CUSTOM_CONFIG_OBJECT","features":[454]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_OBJECT","features":[454]},{"name":"MPRAPI_OBJECT_TYPE_MPR_SERVER_SET_CONFIG_OBJECT","features":[454]},{"name":"MPRAPI_OBJECT_TYPE_RAS_CONNECTION_OBJECT","features":[454]},{"name":"MPRAPI_OBJECT_TYPE_UPDATE_CONNECTION_OBJECT","features":[454]},{"name":"MPRAPI_PPP_PROJECTION_INFO_TYPE","features":[454]},{"name":"MPRAPI_RAS_CONNECTION_OBJECT_REVISION_1","features":[454]},{"name":"MPRAPI_RAS_UPDATE_CONNECTION_OBJECT_REVISION_1","features":[454]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_GRE","features":[454]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_IKEV2","features":[454]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_L2TP","features":[454]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_PPTP","features":[454]},{"name":"MPRAPI_SET_CONFIG_PROTOCOL_FOR_SSTP","features":[454]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS0","features":[305,454,389]},{"name":"MPRAPI_TUNNEL_CONFIG_PARAMS1","features":[305,454,389]},{"name":"MPRDM_DialAll","features":[454]},{"name":"MPRDM_DialAsNeeded","features":[454]},{"name":"MPRDM_DialFirst","features":[454]},{"name":"MPRDT_Atm","features":[454]},{"name":"MPRDT_FrameRelay","features":[454]},{"name":"MPRDT_Generic","features":[454]},{"name":"MPRDT_Irda","features":[454]},{"name":"MPRDT_Isdn","features":[454]},{"name":"MPRDT_Modem","features":[454]},{"name":"MPRDT_Pad","features":[454]},{"name":"MPRDT_Parallel","features":[454]},{"name":"MPRDT_SW56","features":[454]},{"name":"MPRDT_Serial","features":[454]},{"name":"MPRDT_Sonet","features":[454]},{"name":"MPRDT_Vpn","features":[454]},{"name":"MPRDT_X25","features":[454]},{"name":"MPRET_Direct","features":[454]},{"name":"MPRET_Phone","features":[454]},{"name":"MPRET_Vpn","features":[454]},{"name":"MPRIDS_Disabled","features":[454]},{"name":"MPRIDS_UseGlobalValue","features":[454]},{"name":"MPRIO_DisableLcpExtensions","features":[454]},{"name":"MPRIO_IpHeaderCompression","features":[454]},{"name":"MPRIO_IpSecPreSharedKey","features":[454]},{"name":"MPRIO_NetworkLogon","features":[454]},{"name":"MPRIO_PromoteAlternates","features":[454]},{"name":"MPRIO_RemoteDefaultGateway","features":[454]},{"name":"MPRIO_RequireCHAP","features":[454]},{"name":"MPRIO_RequireDataEncryption","features":[454]},{"name":"MPRIO_RequireEAP","features":[454]},{"name":"MPRIO_RequireEncryptedPw","features":[454]},{"name":"MPRIO_RequireMachineCertificates","features":[454]},{"name":"MPRIO_RequireMsCHAP","features":[454]},{"name":"MPRIO_RequireMsCHAP2","features":[454]},{"name":"MPRIO_RequireMsEncryptedPw","features":[454]},{"name":"MPRIO_RequirePAP","features":[454]},{"name":"MPRIO_RequireSPAP","features":[454]},{"name":"MPRIO_SecureLocalFiles","features":[454]},{"name":"MPRIO_SharedPhoneNumbers","features":[454]},{"name":"MPRIO_SpecificIpAddr","features":[454]},{"name":"MPRIO_SpecificNameServers","features":[454]},{"name":"MPRIO_SwCompression","features":[454]},{"name":"MPRIO_UsePreSharedKeyForIkev2Initiator","features":[454]},{"name":"MPRIO_UsePreSharedKeyForIkev2Responder","features":[454]},{"name":"MPRNP_Ip","features":[454]},{"name":"MPRNP_Ipv6","features":[454]},{"name":"MPRNP_Ipx","features":[454]},{"name":"MPR_CERT_EKU","features":[305,454]},{"name":"MPR_CREDENTIALSEX_0","features":[454]},{"name":"MPR_CREDENTIALSEX_1","features":[454]},{"name":"MPR_DEVICE_0","features":[454]},{"name":"MPR_DEVICE_1","features":[454]},{"name":"MPR_ENABLE_RAS_ON_DEVICE","features":[454]},{"name":"MPR_ENABLE_ROUTING_ON_DEVICE","features":[454]},{"name":"MPR_ET","features":[454]},{"name":"MPR_ET_None","features":[454]},{"name":"MPR_ET_Optional","features":[454]},{"name":"MPR_ET_Require","features":[454]},{"name":"MPR_ET_RequireMax","features":[454]},{"name":"MPR_FILTER_0","features":[305,454]},{"name":"MPR_IFTRANSPORT_0","features":[305,454]},{"name":"MPR_IF_CUSTOMINFOEX0","features":[454,389]},{"name":"MPR_IF_CUSTOMINFOEX1","features":[454,389]},{"name":"MPR_IF_CUSTOMINFOEX2","features":[454,318,389]},{"name":"MPR_INTERFACE_0","features":[305,454]},{"name":"MPR_INTERFACE_1","features":[305,454]},{"name":"MPR_INTERFACE_2","features":[305,454]},{"name":"MPR_INTERFACE_3","features":[305,454,318]},{"name":"MPR_INTERFACE_ADMIN_DISABLED","features":[454]},{"name":"MPR_INTERFACE_CONNECTION_FAILURE","features":[454]},{"name":"MPR_INTERFACE_DIALOUT_HOURS_RESTRICTION","features":[454]},{"name":"MPR_INTERFACE_DIAL_MODE","features":[454]},{"name":"MPR_INTERFACE_NO_DEVICE","features":[454]},{"name":"MPR_INTERFACE_NO_MEDIA_SENSE","features":[454]},{"name":"MPR_INTERFACE_OUT_OF_RESOURCES","features":[454]},{"name":"MPR_INTERFACE_SERVICE_PAUSED","features":[454]},{"name":"MPR_IPINIP_INTERFACE_0","features":[454]},{"name":"MPR_MaxAreaCode","features":[454]},{"name":"MPR_MaxCallbackNumber","features":[454]},{"name":"MPR_MaxDeviceName","features":[454]},{"name":"MPR_MaxDeviceType","features":[454]},{"name":"MPR_MaxEntryName","features":[454]},{"name":"MPR_MaxFacilities","features":[454]},{"name":"MPR_MaxIpAddress","features":[454]},{"name":"MPR_MaxIpxAddress","features":[454]},{"name":"MPR_MaxPadType","features":[454]},{"name":"MPR_MaxPhoneNumber","features":[454]},{"name":"MPR_MaxUserData","features":[454]},{"name":"MPR_MaxX25Address","features":[454]},{"name":"MPR_SERVER_0","features":[305,454]},{"name":"MPR_SERVER_1","features":[454]},{"name":"MPR_SERVER_2","features":[454]},{"name":"MPR_SERVER_EX0","features":[305,454,389]},{"name":"MPR_SERVER_EX1","features":[305,454,389]},{"name":"MPR_SERVER_SET_CONFIG_EX0","features":[305,454,389]},{"name":"MPR_SERVER_SET_CONFIG_EX1","features":[305,454,389]},{"name":"MPR_TRANSPORT_0","features":[305,454]},{"name":"MPR_VPN_TRAFFIC_SELECTOR","features":[454,318]},{"name":"MPR_VPN_TRAFFIC_SELECTORS","features":[454,318]},{"name":"MPR_VPN_TS_IPv4_ADDR_RANGE","features":[454]},{"name":"MPR_VPN_TS_IPv6_ADDR_RANGE","features":[454]},{"name":"MPR_VPN_TS_TYPE","features":[454]},{"name":"MPR_VS","features":[454]},{"name":"MPR_VS_Default","features":[454]},{"name":"MPR_VS_Ikev2First","features":[454]},{"name":"MPR_VS_Ikev2Only","features":[454]},{"name":"MPR_VS_L2tpFirst","features":[454]},{"name":"MPR_VS_L2tpOnly","features":[454]},{"name":"MPR_VS_PptpFirst","features":[454]},{"name":"MPR_VS_PptpOnly","features":[454]},{"name":"MgmAddGroupMembershipEntry","features":[305,454]},{"name":"MgmDeRegisterMProtocol","features":[305,454]},{"name":"MgmDeleteGroupMembershipEntry","features":[305,454]},{"name":"MgmGetFirstMfe","features":[454]},{"name":"MgmGetFirstMfeStats","features":[454]},{"name":"MgmGetMfe","features":[444,454]},{"name":"MgmGetMfeStats","features":[444,454]},{"name":"MgmGetNextMfe","features":[444,454]},{"name":"MgmGetNextMfeStats","features":[444,454]},{"name":"MgmGetProtocolOnInterface","features":[454]},{"name":"MgmGroupEnumerationEnd","features":[305,454]},{"name":"MgmGroupEnumerationGetNext","features":[305,454]},{"name":"MgmGroupEnumerationStart","features":[305,454]},{"name":"MgmRegisterMProtocol","features":[305,454]},{"name":"MgmReleaseInterfaceOwnership","features":[305,454]},{"name":"MgmTakeInterfaceOwnership","features":[305,454]},{"name":"MprAdminBufferFree","features":[454]},{"name":"MprAdminConnectionClearStats","features":[305,454]},{"name":"MprAdminConnectionEnum","features":[454]},{"name":"MprAdminConnectionEnumEx","features":[305,454]},{"name":"MprAdminConnectionGetInfo","features":[305,454]},{"name":"MprAdminConnectionGetInfoEx","features":[305,454]},{"name":"MprAdminConnectionRemoveQuarantine","features":[305,454]},{"name":"MprAdminDeregisterConnectionNotification","features":[305,454]},{"name":"MprAdminDeviceEnum","features":[454]},{"name":"MprAdminEstablishDomainRasServer","features":[305,454]},{"name":"MprAdminGetErrorString","features":[454]},{"name":"MprAdminGetPDCServer","features":[454]},{"name":"MprAdminInterfaceConnect","features":[305,454]},{"name":"MprAdminInterfaceCreate","features":[305,454]},{"name":"MprAdminInterfaceDelete","features":[305,454]},{"name":"MprAdminInterfaceDeviceGetInfo","features":[305,454]},{"name":"MprAdminInterfaceDeviceSetInfo","features":[305,454]},{"name":"MprAdminInterfaceDisconnect","features":[305,454]},{"name":"MprAdminInterfaceEnum","features":[454]},{"name":"MprAdminInterfaceGetCredentials","features":[454]},{"name":"MprAdminInterfaceGetCredentialsEx","features":[305,454]},{"name":"MprAdminInterfaceGetCustomInfoEx","features":[305,454,318,389]},{"name":"MprAdminInterfaceGetHandle","features":[305,454]},{"name":"MprAdminInterfaceGetInfo","features":[305,454]},{"name":"MprAdminInterfaceQueryUpdateResult","features":[305,454]},{"name":"MprAdminInterfaceSetCredentials","features":[454]},{"name":"MprAdminInterfaceSetCredentialsEx","features":[305,454]},{"name":"MprAdminInterfaceSetCustomInfoEx","features":[305,454,318,389]},{"name":"MprAdminInterfaceSetInfo","features":[305,454]},{"name":"MprAdminInterfaceTransportAdd","features":[305,454]},{"name":"MprAdminInterfaceTransportGetInfo","features":[305,454]},{"name":"MprAdminInterfaceTransportRemove","features":[305,454]},{"name":"MprAdminInterfaceTransportSetInfo","features":[305,454]},{"name":"MprAdminInterfaceUpdatePhonebookInfo","features":[305,454]},{"name":"MprAdminInterfaceUpdateRoutes","features":[305,454]},{"name":"MprAdminIsDomainRasServer","features":[305,454]},{"name":"MprAdminIsServiceInitialized","features":[305,454]},{"name":"MprAdminIsServiceRunning","features":[305,454]},{"name":"MprAdminMIBBufferFree","features":[454]},{"name":"MprAdminMIBEntryCreate","features":[454]},{"name":"MprAdminMIBEntryDelete","features":[454]},{"name":"MprAdminMIBEntryGet","features":[454]},{"name":"MprAdminMIBEntryGetFirst","features":[454]},{"name":"MprAdminMIBEntryGetNext","features":[454]},{"name":"MprAdminMIBEntrySet","features":[454]},{"name":"MprAdminMIBServerConnect","features":[454]},{"name":"MprAdminMIBServerDisconnect","features":[454]},{"name":"MprAdminPortClearStats","features":[305,454]},{"name":"MprAdminPortDisconnect","features":[305,454]},{"name":"MprAdminPortEnum","features":[305,454]},{"name":"MprAdminPortGetInfo","features":[305,454]},{"name":"MprAdminPortReset","features":[305,454]},{"name":"MprAdminRegisterConnectionNotification","features":[305,454]},{"name":"MprAdminSendUserMessage","features":[305,454]},{"name":"MprAdminServerConnect","features":[454]},{"name":"MprAdminServerDisconnect","features":[454]},{"name":"MprAdminServerGetCredentials","features":[454]},{"name":"MprAdminServerGetInfo","features":[454]},{"name":"MprAdminServerGetInfoEx","features":[305,454,389]},{"name":"MprAdminServerSetCredentials","features":[454]},{"name":"MprAdminServerSetInfo","features":[454]},{"name":"MprAdminServerSetInfoEx","features":[305,454,389]},{"name":"MprAdminTransportCreate","features":[454]},{"name":"MprAdminTransportGetInfo","features":[454]},{"name":"MprAdminTransportSetInfo","features":[454]},{"name":"MprAdminUpdateConnection","features":[305,454]},{"name":"MprAdminUserGetInfo","features":[454]},{"name":"MprAdminUserSetInfo","features":[454]},{"name":"MprConfigBufferFree","features":[454]},{"name":"MprConfigFilterGetInfo","features":[305,454]},{"name":"MprConfigFilterSetInfo","features":[305,454]},{"name":"MprConfigGetFriendlyName","features":[305,454]},{"name":"MprConfigGetGuidName","features":[305,454]},{"name":"MprConfigInterfaceCreate","features":[305,454]},{"name":"MprConfigInterfaceDelete","features":[305,454]},{"name":"MprConfigInterfaceEnum","features":[305,454]},{"name":"MprConfigInterfaceGetCustomInfoEx","features":[305,454,318,389]},{"name":"MprConfigInterfaceGetHandle","features":[305,454]},{"name":"MprConfigInterfaceGetInfo","features":[305,454]},{"name":"MprConfigInterfaceSetCustomInfoEx","features":[305,454,318,389]},{"name":"MprConfigInterfaceSetInfo","features":[305,454]},{"name":"MprConfigInterfaceTransportAdd","features":[305,454]},{"name":"MprConfigInterfaceTransportEnum","features":[305,454]},{"name":"MprConfigInterfaceTransportGetHandle","features":[305,454]},{"name":"MprConfigInterfaceTransportGetInfo","features":[305,454]},{"name":"MprConfigInterfaceTransportRemove","features":[305,454]},{"name":"MprConfigInterfaceTransportSetInfo","features":[305,454]},{"name":"MprConfigServerBackup","features":[305,454]},{"name":"MprConfigServerConnect","features":[305,454]},{"name":"MprConfigServerDisconnect","features":[305,454]},{"name":"MprConfigServerGetInfo","features":[305,454]},{"name":"MprConfigServerGetInfoEx","features":[305,454,389]},{"name":"MprConfigServerInstall","features":[454]},{"name":"MprConfigServerRefresh","features":[305,454]},{"name":"MprConfigServerRestore","features":[305,454]},{"name":"MprConfigServerSetInfo","features":[454]},{"name":"MprConfigServerSetInfoEx","features":[305,454,389]},{"name":"MprConfigTransportCreate","features":[305,454]},{"name":"MprConfigTransportDelete","features":[305,454]},{"name":"MprConfigTransportEnum","features":[305,454]},{"name":"MprConfigTransportGetHandle","features":[305,454]},{"name":"MprConfigTransportGetInfo","features":[305,454]},{"name":"MprConfigTransportSetInfo","features":[305,454]},{"name":"MprInfoBlockAdd","features":[454]},{"name":"MprInfoBlockFind","features":[454]},{"name":"MprInfoBlockQuerySize","features":[454]},{"name":"MprInfoBlockRemove","features":[454]},{"name":"MprInfoBlockSet","features":[454]},{"name":"MprInfoCreate","features":[454]},{"name":"MprInfoDelete","features":[454]},{"name":"MprInfoDuplicate","features":[454]},{"name":"MprInfoRemoveAll","features":[454]},{"name":"ORASADFUNC","features":[305,454]},{"name":"PENDING","features":[454]},{"name":"PFNRASFREEBUFFER","features":[454]},{"name":"PFNRASGETBUFFER","features":[454]},{"name":"PFNRASRECEIVEBUFFER","features":[305,454]},{"name":"PFNRASRETRIEVEBUFFER","features":[305,454]},{"name":"PFNRASSENDBUFFER","features":[305,454]},{"name":"PFNRASSETCOMMSETTINGS","features":[305,454]},{"name":"PID_ATALK","features":[454]},{"name":"PID_IP","features":[454]},{"name":"PID_IPV6","features":[454]},{"name":"PID_IPX","features":[454]},{"name":"PID_NBF","features":[454]},{"name":"PMGM_CREATION_ALERT_CALLBACK","features":[305,454]},{"name":"PMGM_DISABLE_IGMP_CALLBACK","features":[454]},{"name":"PMGM_ENABLE_IGMP_CALLBACK","features":[454]},{"name":"PMGM_JOIN_ALERT_CALLBACK","features":[305,454]},{"name":"PMGM_LOCAL_JOIN_CALLBACK","features":[454]},{"name":"PMGM_LOCAL_LEAVE_CALLBACK","features":[454]},{"name":"PMGM_PRUNE_ALERT_CALLBACK","features":[305,454]},{"name":"PMGM_RPF_CALLBACK","features":[454]},{"name":"PMGM_WRONG_IF_CALLBACK","features":[454]},{"name":"PMPRADMINACCEPTNEWCONNECTION","features":[305,454]},{"name":"PMPRADMINACCEPTNEWCONNECTION2","features":[305,454]},{"name":"PMPRADMINACCEPTNEWCONNECTION3","features":[305,454]},{"name":"PMPRADMINACCEPTNEWCONNECTIONEX","features":[305,454]},{"name":"PMPRADMINACCEPTNEWLINK","features":[305,454]},{"name":"PMPRADMINACCEPTREAUTHENTICATION","features":[305,454]},{"name":"PMPRADMINACCEPTREAUTHENTICATIONEX","features":[305,454]},{"name":"PMPRADMINACCEPTTUNNELENDPOINTCHANGEEX","features":[305,454]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION","features":[305,454]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION2","features":[305,454]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATION3","features":[305,454]},{"name":"PMPRADMINCONNECTIONHANGUPNOTIFICATIONEX","features":[305,454]},{"name":"PMPRADMINGETIPADDRESSFORUSER","features":[305,454]},{"name":"PMPRADMINGETIPV6ADDRESSFORUSER","features":[305,454,318]},{"name":"PMPRADMINLINKHANGUPNOTIFICATION","features":[305,454]},{"name":"PMPRADMINRASVALIDATEPREAUTHENTICATEDCONNECTIONEX","features":[305,454]},{"name":"PMPRADMINRELEASEIPADRESS","features":[454]},{"name":"PMPRADMINRELEASEIPV6ADDRESSFORUSER","features":[454,318]},{"name":"PMPRADMINTERMINATEDLL","features":[454]},{"name":"PPP_ATCP_INFO","features":[454]},{"name":"PPP_CCP_COMPRESSION","features":[454]},{"name":"PPP_CCP_ENCRYPTION128BIT","features":[454]},{"name":"PPP_CCP_ENCRYPTION40BIT","features":[454]},{"name":"PPP_CCP_ENCRYPTION40BITOLD","features":[454]},{"name":"PPP_CCP_ENCRYPTION56BIT","features":[454]},{"name":"PPP_CCP_HISTORYLESS","features":[454]},{"name":"PPP_CCP_INFO","features":[454]},{"name":"PPP_INFO","features":[454]},{"name":"PPP_INFO_2","features":[454]},{"name":"PPP_INFO_3","features":[454]},{"name":"PPP_IPCP_INFO","features":[454]},{"name":"PPP_IPCP_INFO2","features":[454]},{"name":"PPP_IPCP_VJ","features":[454]},{"name":"PPP_IPV6_CP_INFO","features":[454]},{"name":"PPP_IPXCP_INFO","features":[454]},{"name":"PPP_LCP","features":[454]},{"name":"PPP_LCP_3_DES","features":[454]},{"name":"PPP_LCP_ACFC","features":[454]},{"name":"PPP_LCP_AES_128","features":[454]},{"name":"PPP_LCP_AES_192","features":[454]},{"name":"PPP_LCP_AES_256","features":[454]},{"name":"PPP_LCP_CHAP","features":[454]},{"name":"PPP_LCP_CHAP_MD5","features":[454]},{"name":"PPP_LCP_CHAP_MS","features":[454]},{"name":"PPP_LCP_CHAP_MSV2","features":[454]},{"name":"PPP_LCP_DES_56","features":[454]},{"name":"PPP_LCP_EAP","features":[454]},{"name":"PPP_LCP_GCM_AES_128","features":[454]},{"name":"PPP_LCP_GCM_AES_192","features":[454]},{"name":"PPP_LCP_GCM_AES_256","features":[454]},{"name":"PPP_LCP_INFO","features":[454]},{"name":"PPP_LCP_INFO_AUTH_DATA","features":[454]},{"name":"PPP_LCP_MULTILINK_FRAMING","features":[454]},{"name":"PPP_LCP_PAP","features":[454]},{"name":"PPP_LCP_PFC","features":[454]},{"name":"PPP_LCP_SPAP","features":[454]},{"name":"PPP_LCP_SSHF","features":[454]},{"name":"PPP_NBFCP_INFO","features":[454]},{"name":"PPP_PROJECTION_INFO","features":[454]},{"name":"PPP_PROJECTION_INFO2","features":[454]},{"name":"PPTP_CONFIG_PARAMS","features":[454]},{"name":"PROJECTION_INFO","features":[454]},{"name":"PROJECTION_INFO2","features":[454]},{"name":"PROJECTION_INFO_TYPE_IKEv2","features":[454]},{"name":"PROJECTION_INFO_TYPE_PPP","features":[454]},{"name":"RASADFLG_PositionDlg","features":[454]},{"name":"RASADFUNCA","features":[305,454]},{"name":"RASADFUNCW","features":[305,454]},{"name":"RASADPARAMS","features":[305,454]},{"name":"RASADP_ConnectionQueryTimeout","features":[454]},{"name":"RASADP_DisableConnectionQuery","features":[454]},{"name":"RASADP_FailedConnectionTimeout","features":[454]},{"name":"RASADP_LoginSessionDisable","features":[454]},{"name":"RASADP_SavedAddressesLimit","features":[454]},{"name":"RASAMBA","features":[454]},{"name":"RASAMBW","features":[454]},{"name":"RASAPIVERSION","features":[454]},{"name":"RASAPIVERSION_500","features":[454]},{"name":"RASAPIVERSION_501","features":[454]},{"name":"RASAPIVERSION_600","features":[454]},{"name":"RASAPIVERSION_601","features":[454]},{"name":"RASAUTODIALENTRYA","features":[454]},{"name":"RASAUTODIALENTRYW","features":[454]},{"name":"RASBASE","features":[454]},{"name":"RASBASEEND","features":[454]},{"name":"RASCCPCA_MPPC","features":[454]},{"name":"RASCCPCA_STAC","features":[454]},{"name":"RASCCPO_Compression","features":[454]},{"name":"RASCCPO_Encryption128bit","features":[454]},{"name":"RASCCPO_Encryption40bit","features":[454]},{"name":"RASCCPO_Encryption56bit","features":[454]},{"name":"RASCCPO_HistoryLess","features":[454]},{"name":"RASCF_AllUsers","features":[454]},{"name":"RASCF_GlobalCreds","features":[454]},{"name":"RASCF_OwnerKnown","features":[454]},{"name":"RASCF_OwnerMatch","features":[454]},{"name":"RASCM_DDMPreSharedKey","features":[454]},{"name":"RASCM_DefaultCreds","features":[454]},{"name":"RASCM_Domain","features":[454]},{"name":"RASCM_Password","features":[454]},{"name":"RASCM_PreSharedKey","features":[454]},{"name":"RASCM_ServerPreSharedKey","features":[454]},{"name":"RASCM_UserName","features":[454]},{"name":"RASCN_BandwidthAdded","features":[454]},{"name":"RASCN_BandwidthRemoved","features":[454]},{"name":"RASCN_Connection","features":[454]},{"name":"RASCN_Disconnection","features":[454]},{"name":"RASCN_Dormant","features":[454]},{"name":"RASCN_EPDGPacketArrival","features":[454]},{"name":"RASCN_ReConnection","features":[454]},{"name":"RASCOMMSETTINGS","features":[454]},{"name":"RASCONNA","features":[305,454]},{"name":"RASCONNA","features":[305,454]},{"name":"RASCONNSTATE","features":[454]},{"name":"RASCONNSTATUSA","features":[454,318]},{"name":"RASCONNSTATUSW","features":[454,318]},{"name":"RASCONNSUBSTATE","features":[454]},{"name":"RASCONNW","features":[305,454]},{"name":"RASCONNW","features":[305,454]},{"name":"RASCREDENTIALSA","features":[454]},{"name":"RASCREDENTIALSW","features":[454]},{"name":"RASCSS_DONE","features":[454]},{"name":"RASCSS_Dormant","features":[454]},{"name":"RASCSS_None","features":[454]},{"name":"RASCSS_Reconnected","features":[454]},{"name":"RASCSS_Reconnecting","features":[454]},{"name":"RASCS_AllDevicesConnected","features":[454]},{"name":"RASCS_ApplySettings","features":[454]},{"name":"RASCS_AuthAck","features":[454]},{"name":"RASCS_AuthCallback","features":[454]},{"name":"RASCS_AuthChangePassword","features":[454]},{"name":"RASCS_AuthLinkSpeed","features":[454]},{"name":"RASCS_AuthNotify","features":[454]},{"name":"RASCS_AuthProject","features":[454]},{"name":"RASCS_AuthRetry","features":[454]},{"name":"RASCS_Authenticate","features":[454]},{"name":"RASCS_Authenticated","features":[454]},{"name":"RASCS_CallbackComplete","features":[454]},{"name":"RASCS_CallbackSetByCaller","features":[454]},{"name":"RASCS_ConnectDevice","features":[454]},{"name":"RASCS_Connected","features":[454]},{"name":"RASCS_DONE","features":[454]},{"name":"RASCS_DeviceConnected","features":[454]},{"name":"RASCS_Disconnected","features":[454]},{"name":"RASCS_Interactive","features":[454]},{"name":"RASCS_InvokeEapUI","features":[454]},{"name":"RASCS_LogonNetwork","features":[454]},{"name":"RASCS_OpenPort","features":[454]},{"name":"RASCS_PAUSED","features":[454]},{"name":"RASCS_PasswordExpired","features":[454]},{"name":"RASCS_PortOpened","features":[454]},{"name":"RASCS_PrepareForCallback","features":[454]},{"name":"RASCS_Projected","features":[454]},{"name":"RASCS_ReAuthenticate","features":[454]},{"name":"RASCS_RetryAuthentication","features":[454]},{"name":"RASCS_StartAuthentication","features":[454]},{"name":"RASCS_SubEntryConnected","features":[454]},{"name":"RASCS_SubEntryDisconnected","features":[454]},{"name":"RASCS_WaitForCallback","features":[454]},{"name":"RASCS_WaitForModemReset","features":[454]},{"name":"RASCTRYINFO","features":[454]},{"name":"RASCUSTOMSCRIPTEXTENSIONS","features":[305,454]},{"name":"RASDDFLAG_AoacRedial","features":[454]},{"name":"RASDDFLAG_LinkFailure","features":[454]},{"name":"RASDDFLAG_NoPrompt","features":[454]},{"name":"RASDDFLAG_PositionDlg","features":[454]},{"name":"RASDEVINFOA","features":[454]},{"name":"RASDEVINFOW","features":[454]},{"name":"RASDEVSPECIFICINFO","features":[454]},{"name":"RASDEVSPECIFICINFO","features":[454]},{"name":"RASDIALDLG","features":[305,454]},{"name":"RASDIALEVENT","features":[454]},{"name":"RASDIALEXTENSIONS","features":[305,454]},{"name":"RASDIALFUNC","features":[454]},{"name":"RASDIALFUNC1","features":[454]},{"name":"RASDIALFUNC2","features":[454]},{"name":"RASDIALPARAMSA","features":[454]},{"name":"RASDIALPARAMSA","features":[454]},{"name":"RASDIALPARAMSW","features":[454]},{"name":"RASDIALPARAMSW","features":[454]},{"name":"RASDT_Atm","features":[454]},{"name":"RASDT_FrameRelay","features":[454]},{"name":"RASDT_Generic","features":[454]},{"name":"RASDT_Irda","features":[454]},{"name":"RASDT_Isdn","features":[454]},{"name":"RASDT_Modem","features":[454]},{"name":"RASDT_PPPoE","features":[454]},{"name":"RASDT_Pad","features":[454]},{"name":"RASDT_Parallel","features":[454]},{"name":"RASDT_SW56","features":[454]},{"name":"RASDT_Serial","features":[454]},{"name":"RASDT_Sonet","features":[454]},{"name":"RASDT_Vpn","features":[454]},{"name":"RASDT_X25","features":[454]},{"name":"RASEAPF_Logon","features":[454]},{"name":"RASEAPF_NonInteractive","features":[454]},{"name":"RASEAPF_Preview","features":[454]},{"name":"RASEAPINFO","features":[454]},{"name":"RASEAPUSERIDENTITYA","features":[454]},{"name":"RASEAPUSERIDENTITYW","features":[454]},{"name":"RASEDFLAG_CloneEntry","features":[454]},{"name":"RASEDFLAG_IncomingConnection","features":[454]},{"name":"RASEDFLAG_InternetEntry","features":[454]},{"name":"RASEDFLAG_NAT","features":[454]},{"name":"RASEDFLAG_NewBroadbandEntry","features":[454]},{"name":"RASEDFLAG_NewDirectEntry","features":[454]},{"name":"RASEDFLAG_NewEntry","features":[454]},{"name":"RASEDFLAG_NewPhoneEntry","features":[454]},{"name":"RASEDFLAG_NewTunnelEntry","features":[454]},{"name":"RASEDFLAG_NoRename","features":[454]},{"name":"RASEDFLAG_PositionDlg","features":[454]},{"name":"RASEDFLAG_ShellOwned","features":[454]},{"name":"RASEDM_DialAll","features":[454]},{"name":"RASEDM_DialAsNeeded","features":[454]},{"name":"RASENTRYA","features":[305,454,318]},{"name":"RASENTRYDLGA","features":[305,454]},{"name":"RASENTRYDLGA","features":[305,454]},{"name":"RASENTRYDLGW","features":[305,454]},{"name":"RASENTRYDLGW","features":[305,454]},{"name":"RASENTRYNAMEA","features":[454]},{"name":"RASENTRYNAMEW","features":[454]},{"name":"RASENTRYW","features":[305,454,318]},{"name":"RASENTRY_DIAL_MODE","features":[454]},{"name":"RASEO2_AuthTypeIsOtp","features":[454]},{"name":"RASEO2_AutoTriggerCapable","features":[454]},{"name":"RASEO2_CacheCredentials","features":[454]},{"name":"RASEO2_DisableClassBasedStaticRoute","features":[454]},{"name":"RASEO2_DisableIKENameEkuCheck","features":[454]},{"name":"RASEO2_DisableMobility","features":[454]},{"name":"RASEO2_DisableNbtOverIP","features":[454]},{"name":"RASEO2_DontNegotiateMultilink","features":[454]},{"name":"RASEO2_DontUseRasCredentials","features":[454]},{"name":"RASEO2_IPv4ExplicitMetric","features":[454]},{"name":"RASEO2_IPv6ExplicitMetric","features":[454]},{"name":"RASEO2_IPv6RemoteDefaultGateway","features":[454]},{"name":"RASEO2_IPv6SpecificNameServers","features":[454]},{"name":"RASEO2_Internet","features":[454]},{"name":"RASEO2_IsAlwaysOn","features":[454]},{"name":"RASEO2_IsPrivateNetwork","features":[454]},{"name":"RASEO2_IsThirdPartyProfile","features":[454]},{"name":"RASEO2_PlumbIKEv2TSAsRoutes","features":[454]},{"name":"RASEO2_ReconnectIfDropped","features":[454]},{"name":"RASEO2_RegisterIpWithDNS","features":[454]},{"name":"RASEO2_RequireMachineCertificates","features":[454]},{"name":"RASEO2_SecureClientForMSNet","features":[454]},{"name":"RASEO2_SecureFileAndPrint","features":[454]},{"name":"RASEO2_SecureRoutingCompartment","features":[454]},{"name":"RASEO2_SharePhoneNumbers","features":[454]},{"name":"RASEO2_SpecificIPv6Addr","features":[454]},{"name":"RASEO2_UseDNSSuffixForRegistration","features":[454]},{"name":"RASEO2_UseGlobalDeviceSettings","features":[454]},{"name":"RASEO2_UsePreSharedKey","features":[454]},{"name":"RASEO2_UsePreSharedKeyForIkev2Initiator","features":[454]},{"name":"RASEO2_UsePreSharedKeyForIkev2Responder","features":[454]},{"name":"RASEO2_UseTypicalSettings","features":[454]},{"name":"RASEO_Custom","features":[454]},{"name":"RASEO_CustomScript","features":[454]},{"name":"RASEO_DisableLcpExtensions","features":[454]},{"name":"RASEO_IpHeaderCompression","features":[454]},{"name":"RASEO_ModemLights","features":[454]},{"name":"RASEO_NetworkLogon","features":[454]},{"name":"RASEO_PreviewDomain","features":[454]},{"name":"RASEO_PreviewPhoneNumber","features":[454]},{"name":"RASEO_PreviewUserPw","features":[454]},{"name":"RASEO_PromoteAlternates","features":[454]},{"name":"RASEO_RemoteDefaultGateway","features":[454]},{"name":"RASEO_RequireCHAP","features":[454]},{"name":"RASEO_RequireDataEncryption","features":[454]},{"name":"RASEO_RequireEAP","features":[454]},{"name":"RASEO_RequireEncryptedPw","features":[454]},{"name":"RASEO_RequireMsCHAP","features":[454]},{"name":"RASEO_RequireMsCHAP2","features":[454]},{"name":"RASEO_RequireMsEncryptedPw","features":[454]},{"name":"RASEO_RequirePAP","features":[454]},{"name":"RASEO_RequireSPAP","features":[454]},{"name":"RASEO_RequireW95MSCHAP","features":[454]},{"name":"RASEO_SecureLocalFiles","features":[454]},{"name":"RASEO_SharedPhoneNumbers","features":[454]},{"name":"RASEO_ShowDialingProgress","features":[454]},{"name":"RASEO_SpecificIpAddr","features":[454]},{"name":"RASEO_SpecificNameServers","features":[454]},{"name":"RASEO_SwCompression","features":[454]},{"name":"RASEO_TerminalAfterDial","features":[454]},{"name":"RASEO_TerminalBeforeDial","features":[454]},{"name":"RASEO_UseCountryAndAreaCodes","features":[454]},{"name":"RASEO_UseLogonCredentials","features":[454]},{"name":"RASET_Broadband","features":[454]},{"name":"RASET_Direct","features":[454]},{"name":"RASET_Internet","features":[454]},{"name":"RASET_Phone","features":[454]},{"name":"RASET_Vpn","features":[454]},{"name":"RASFP_Ppp","features":[454]},{"name":"RASFP_Ras","features":[454]},{"name":"RASFP_Slip","features":[454]},{"name":"RASIDS_Disabled","features":[454]},{"name":"RASIDS_UseGlobalValue","features":[454]},{"name":"RASIKEV2_PROJECTION_INFO","features":[454,318]},{"name":"RASIKEV2_PROJECTION_INFO","features":[454,318]},{"name":"RASIKEV_PROJECTION_INFO_FLAGS","features":[454]},{"name":"RASIKEv2_AUTH_EAP","features":[454]},{"name":"RASIKEv2_AUTH_MACHINECERTIFICATES","features":[454]},{"name":"RASIKEv2_AUTH_PSK","features":[454]},{"name":"RASIKEv2_FLAGS_BEHIND_NAT","features":[454]},{"name":"RASIKEv2_FLAGS_MOBIKESUPPORTED","features":[454]},{"name":"RASIKEv2_FLAGS_SERVERBEHIND_NAT","features":[454]},{"name":"RASIPADDR","features":[454]},{"name":"RASIPO_VJ","features":[454]},{"name":"RASIPXW","features":[454]},{"name":"RASLCPAD_CHAP_MD5","features":[454]},{"name":"RASLCPAD_CHAP_MS","features":[454]},{"name":"RASLCPAD_CHAP_MSV2","features":[454]},{"name":"RASLCPAP_CHAP","features":[454]},{"name":"RASLCPAP_EAP","features":[454]},{"name":"RASLCPAP_PAP","features":[454]},{"name":"RASLCPAP_SPAP","features":[454]},{"name":"RASLCPO_3_DES","features":[454]},{"name":"RASLCPO_ACFC","features":[454]},{"name":"RASLCPO_AES_128","features":[454]},{"name":"RASLCPO_AES_192","features":[454]},{"name":"RASLCPO_AES_256","features":[454]},{"name":"RASLCPO_DES_56","features":[454]},{"name":"RASLCPO_GCM_AES_128","features":[454]},{"name":"RASLCPO_GCM_AES_192","features":[454]},{"name":"RASLCPO_GCM_AES_256","features":[454]},{"name":"RASLCPO_PFC","features":[454]},{"name":"RASLCPO_SSHF","features":[454]},{"name":"RASNAP_ProbationTime","features":[454]},{"name":"RASNOUSERA","features":[454]},{"name":"RASNOUSERW","features":[454]},{"name":"RASNOUSER_SmartCard","features":[454]},{"name":"RASNP_Ip","features":[454]},{"name":"RASNP_Ipv6","features":[454]},{"name":"RASNP_Ipx","features":[454]},{"name":"RASNP_NetBEUI","features":[454]},{"name":"RASPBDEVENT_AddEntry","features":[454]},{"name":"RASPBDEVENT_DialEntry","features":[454]},{"name":"RASPBDEVENT_EditEntry","features":[454]},{"name":"RASPBDEVENT_EditGlobals","features":[454]},{"name":"RASPBDEVENT_NoUser","features":[454]},{"name":"RASPBDEVENT_NoUserEdit","features":[454]},{"name":"RASPBDEVENT_RemoveEntry","features":[454]},{"name":"RASPBDFLAG_ForceCloseOnDial","features":[454]},{"name":"RASPBDFLAG_NoUser","features":[454]},{"name":"RASPBDFLAG_PositionDlg","features":[454]},{"name":"RASPBDFLAG_UpdateDefaults","features":[454]},{"name":"RASPBDLGA","features":[305,454]},{"name":"RASPBDLGA","features":[305,454]},{"name":"RASPBDLGFUNCA","features":[454]},{"name":"RASPBDLGFUNCW","features":[454]},{"name":"RASPBDLGW","features":[305,454]},{"name":"RASPBDLGW","features":[305,454]},{"name":"RASPPPCCP","features":[454]},{"name":"RASPPPIPA","features":[454]},{"name":"RASPPPIPV6","features":[454]},{"name":"RASPPPIPW","features":[454]},{"name":"RASPPPIPXA","features":[454]},{"name":"RASPPPLCPA","features":[305,454]},{"name":"RASPPPLCPW","features":[305,454]},{"name":"RASPPPNBFA","features":[454]},{"name":"RASPPPNBFW","features":[454]},{"name":"RASPPP_PROJECTION_INFO","features":[305,454,318]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_DATA","features":[454]},{"name":"RASPPP_PROJECTION_INFO_SERVER_AUTH_PROTOCOL","features":[454]},{"name":"RASPRIV2_DialinPolicy","features":[454]},{"name":"RASPRIV_AdminSetCallback","features":[454]},{"name":"RASPRIV_CallerSetCallback","features":[454]},{"name":"RASPRIV_DialinPrivilege","features":[454]},{"name":"RASPRIV_NoCallback","features":[454]},{"name":"RASPROJECTION","features":[454]},{"name":"RASPROJECTION_INFO_TYPE","features":[454]},{"name":"RASP_Amb","features":[454]},{"name":"RASP_PppCcp","features":[454]},{"name":"RASP_PppIp","features":[454]},{"name":"RASP_PppIpv6","features":[454]},{"name":"RASP_PppIpx","features":[454]},{"name":"RASP_PppLcp","features":[454]},{"name":"RASP_PppNbf","features":[454]},{"name":"RASSECURITYPROC","features":[454]},{"name":"RASSUBENTRYA","features":[454]},{"name":"RASSUBENTRYW","features":[454]},{"name":"RASTUNNELENDPOINT","features":[454,318]},{"name":"RASTUNNELENDPOINT_IPv4","features":[454]},{"name":"RASTUNNELENDPOINT_IPv6","features":[454]},{"name":"RASTUNNELENDPOINT_UNKNOWN","features":[454]},{"name":"RASUPDATECONN","features":[454,318]},{"name":"RAS_CONNECTION_0","features":[305,454]},{"name":"RAS_CONNECTION_1","features":[305,454]},{"name":"RAS_CONNECTION_2","features":[305,454]},{"name":"RAS_CONNECTION_3","features":[305,454]},{"name":"RAS_CONNECTION_4","features":[305,454]},{"name":"RAS_CONNECTION_EX","features":[305,454]},{"name":"RAS_FLAGS","features":[454]},{"name":"RAS_FLAGS_ARAP_CONNECTION","features":[454]},{"name":"RAS_FLAGS_DORMANT","features":[454]},{"name":"RAS_FLAGS_IKEV2_CONNECTION","features":[454]},{"name":"RAS_FLAGS_MESSENGER_PRESENT","features":[454]},{"name":"RAS_FLAGS_PPP_CONNECTION","features":[454]},{"name":"RAS_FLAGS_QUARANTINE_PRESENT","features":[454]},{"name":"RAS_FLAGS_RAS_CONNECTION","features":[454]},{"name":"RAS_HARDWARE_CONDITION","features":[454]},{"name":"RAS_HARDWARE_FAILURE","features":[454]},{"name":"RAS_HARDWARE_OPERATIONAL","features":[454]},{"name":"RAS_MaxAreaCode","features":[454]},{"name":"RAS_MaxCallbackNumber","features":[454]},{"name":"RAS_MaxDeviceName","features":[454]},{"name":"RAS_MaxDeviceType","features":[454]},{"name":"RAS_MaxDnsSuffix","features":[454]},{"name":"RAS_MaxEntryName","features":[454]},{"name":"RAS_MaxFacilities","features":[454]},{"name":"RAS_MaxIDSize","features":[454]},{"name":"RAS_MaxIpAddress","features":[454]},{"name":"RAS_MaxIpxAddress","features":[454]},{"name":"RAS_MaxPadType","features":[454]},{"name":"RAS_MaxPhoneNumber","features":[454]},{"name":"RAS_MaxReplyMessage","features":[454]},{"name":"RAS_MaxUserData","features":[454]},{"name":"RAS_MaxX25Address","features":[454]},{"name":"RAS_PORT_0","features":[305,454]},{"name":"RAS_PORT_1","features":[305,454]},{"name":"RAS_PORT_2","features":[305,454]},{"name":"RAS_PORT_AUTHENTICATED","features":[454]},{"name":"RAS_PORT_AUTHENTICATING","features":[454]},{"name":"RAS_PORT_CALLING_BACK","features":[454]},{"name":"RAS_PORT_CONDITION","features":[454]},{"name":"RAS_PORT_DISCONNECTED","features":[454]},{"name":"RAS_PORT_INITIALIZING","features":[454]},{"name":"RAS_PORT_LISTENING","features":[454]},{"name":"RAS_PORT_NON_OPERATIONAL","features":[454]},{"name":"RAS_PROJECTION_INFO","features":[305,454,318]},{"name":"RAS_QUARANTINE_STATE","features":[454]},{"name":"RAS_QUAR_STATE_NORMAL","features":[454]},{"name":"RAS_QUAR_STATE_NOT_CAPABLE","features":[454]},{"name":"RAS_QUAR_STATE_PROBATION","features":[454]},{"name":"RAS_QUAR_STATE_QUARANTINE","features":[454]},{"name":"RAS_SECURITY_INFO","features":[454]},{"name":"RAS_STATS","features":[454]},{"name":"RAS_UPDATE_CONNECTION","features":[454]},{"name":"RAS_USER_0","features":[454]},{"name":"RAS_USER_1","features":[454]},{"name":"RCD_AllUsers","features":[454]},{"name":"RCD_Eap","features":[454]},{"name":"RCD_Logon","features":[454]},{"name":"RCD_SingleUser","features":[454]},{"name":"RDEOPT_CustomDial","features":[454]},{"name":"RDEOPT_DisableConnectedUI","features":[454]},{"name":"RDEOPT_DisableReconnect","features":[454]},{"name":"RDEOPT_DisableReconnectUI","features":[454]},{"name":"RDEOPT_EapInfoCryptInCapable","features":[454]},{"name":"RDEOPT_IgnoreModemSpeaker","features":[454]},{"name":"RDEOPT_IgnoreSoftwareCompression","features":[454]},{"name":"RDEOPT_InvokeAutoTriggerCredentialUI","features":[454]},{"name":"RDEOPT_NoUser","features":[454]},{"name":"RDEOPT_PauseOnScript","features":[454]},{"name":"RDEOPT_PausedStates","features":[454]},{"name":"RDEOPT_Router","features":[454]},{"name":"RDEOPT_SetModemSpeaker","features":[454]},{"name":"RDEOPT_SetSoftwareCompression","features":[454]},{"name":"RDEOPT_UseCustomScripting","features":[454]},{"name":"RDEOPT_UsePrefixSuffix","features":[454]},{"name":"REN_AllUsers","features":[454]},{"name":"REN_User","features":[454]},{"name":"ROUTER_CONNECTION_STATE","features":[454]},{"name":"ROUTER_CUSTOM_IKEv2_POLICY0","features":[454]},{"name":"ROUTER_IF_STATE_CONNECTED","features":[454]},{"name":"ROUTER_IF_STATE_CONNECTING","features":[454]},{"name":"ROUTER_IF_STATE_DISCONNECTED","features":[454]},{"name":"ROUTER_IF_STATE_UNREACHABLE","features":[454]},{"name":"ROUTER_IF_TYPE_CLIENT","features":[454]},{"name":"ROUTER_IF_TYPE_DEDICATED","features":[454]},{"name":"ROUTER_IF_TYPE_DIALOUT","features":[454]},{"name":"ROUTER_IF_TYPE_FULL_ROUTER","features":[454]},{"name":"ROUTER_IF_TYPE_HOME_ROUTER","features":[454]},{"name":"ROUTER_IF_TYPE_INTERNAL","features":[454]},{"name":"ROUTER_IF_TYPE_LOOPBACK","features":[454]},{"name":"ROUTER_IF_TYPE_MAX","features":[454]},{"name":"ROUTER_IF_TYPE_TUNNEL1","features":[454]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG0","features":[454,389]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG1","features":[454,389]},{"name":"ROUTER_IKEv2_IF_CUSTOM_CONFIG2","features":[454,318,389]},{"name":"ROUTER_INTERFACE_TYPE","features":[454]},{"name":"ROUTING_PROTOCOL_CONFIG","features":[305,454]},{"name":"RRAS_SERVICE_NAME","features":[454]},{"name":"RTM_BLOCK_METHODS","features":[454]},{"name":"RTM_CHANGE_NOTIFICATION","features":[454]},{"name":"RTM_CHANGE_TYPE_ALL","features":[454]},{"name":"RTM_CHANGE_TYPE_BEST","features":[454]},{"name":"RTM_CHANGE_TYPE_FORWARDING","features":[454]},{"name":"RTM_DEST_FLAG_DONT_FORWARD","features":[454]},{"name":"RTM_DEST_FLAG_FWD_ENGIN_ADD","features":[454]},{"name":"RTM_DEST_FLAG_NATURAL_NET","features":[454]},{"name":"RTM_DEST_INFO","features":[305,454]},{"name":"RTM_ENTITY_DEREGISTERED","features":[454]},{"name":"RTM_ENTITY_EXPORT_METHOD","features":[454]},{"name":"RTM_ENTITY_EXPORT_METHODS","features":[454]},{"name":"RTM_ENTITY_ID","features":[454]},{"name":"RTM_ENTITY_INFO","features":[454]},{"name":"RTM_ENTITY_METHOD_INPUT","features":[454]},{"name":"RTM_ENTITY_METHOD_OUTPUT","features":[454]},{"name":"RTM_ENTITY_REGISTERED","features":[454]},{"name":"RTM_ENUM_ALL_DESTS","features":[454]},{"name":"RTM_ENUM_ALL_ROUTES","features":[454]},{"name":"RTM_ENUM_NEXT","features":[454]},{"name":"RTM_ENUM_OWN_DESTS","features":[454]},{"name":"RTM_ENUM_OWN_ROUTES","features":[454]},{"name":"RTM_ENUM_RANGE","features":[454]},{"name":"RTM_ENUM_START","features":[454]},{"name":"RTM_EVENT_CALLBACK","features":[454]},{"name":"RTM_EVENT_TYPE","features":[454]},{"name":"RTM_MATCH_FULL","features":[454]},{"name":"RTM_MATCH_INTERFACE","features":[454]},{"name":"RTM_MATCH_NEIGHBOUR","features":[454]},{"name":"RTM_MATCH_NEXTHOP","features":[454]},{"name":"RTM_MATCH_NONE","features":[454]},{"name":"RTM_MATCH_OWNER","features":[454]},{"name":"RTM_MATCH_PREF","features":[454]},{"name":"RTM_MAX_ADDRESS_SIZE","features":[454]},{"name":"RTM_MAX_VIEWS","features":[454]},{"name":"RTM_NET_ADDRESS","features":[454]},{"name":"RTM_NEXTHOP_CHANGE_NEW","features":[454]},{"name":"RTM_NEXTHOP_FLAGS_DOWN","features":[454]},{"name":"RTM_NEXTHOP_FLAGS_REMOTE","features":[454]},{"name":"RTM_NEXTHOP_INFO","features":[454]},{"name":"RTM_NEXTHOP_LIST","features":[454]},{"name":"RTM_NEXTHOP_STATE_CREATED","features":[454]},{"name":"RTM_NEXTHOP_STATE_DELETED","features":[454]},{"name":"RTM_NOTIFY_ONLY_MARKED_DESTS","features":[454]},{"name":"RTM_NUM_CHANGE_TYPES","features":[454]},{"name":"RTM_PREF_INFO","features":[454]},{"name":"RTM_REGN_PROFILE","features":[454]},{"name":"RTM_RESUME_METHODS","features":[454]},{"name":"RTM_ROUTE_CHANGE_BEST","features":[454]},{"name":"RTM_ROUTE_CHANGE_FIRST","features":[454]},{"name":"RTM_ROUTE_CHANGE_NEW","features":[454]},{"name":"RTM_ROUTE_EXPIRED","features":[454]},{"name":"RTM_ROUTE_FLAGS_BLACKHOLE","features":[454]},{"name":"RTM_ROUTE_FLAGS_DISCARD","features":[454]},{"name":"RTM_ROUTE_FLAGS_INACTIVE","features":[454]},{"name":"RTM_ROUTE_FLAGS_LIMITED_BC","features":[454]},{"name":"RTM_ROUTE_FLAGS_LOCAL","features":[454]},{"name":"RTM_ROUTE_FLAGS_LOCAL_MCAST","features":[454]},{"name":"RTM_ROUTE_FLAGS_LOOPBACK","features":[454]},{"name":"RTM_ROUTE_FLAGS_MARTIAN","features":[454]},{"name":"RTM_ROUTE_FLAGS_MCAST","features":[454]},{"name":"RTM_ROUTE_FLAGS_MYSELF","features":[454]},{"name":"RTM_ROUTE_FLAGS_ONES_NETBC","features":[454]},{"name":"RTM_ROUTE_FLAGS_ONES_SUBNETBC","features":[454]},{"name":"RTM_ROUTE_FLAGS_REMOTE","features":[454]},{"name":"RTM_ROUTE_FLAGS_ZEROS_NETBC","features":[454]},{"name":"RTM_ROUTE_FLAGS_ZEROS_SUBNETBC","features":[454]},{"name":"RTM_ROUTE_INFO","features":[454]},{"name":"RTM_ROUTE_STATE_CREATED","features":[454]},{"name":"RTM_ROUTE_STATE_DELETED","features":[454]},{"name":"RTM_ROUTE_STATE_DELETING","features":[454]},{"name":"RTM_VIEW_ID_MCAST","features":[454]},{"name":"RTM_VIEW_ID_UCAST","features":[454]},{"name":"RTM_VIEW_MASK_ALL","features":[454]},{"name":"RTM_VIEW_MASK_ANY","features":[454]},{"name":"RTM_VIEW_MASK_MCAST","features":[454]},{"name":"RTM_VIEW_MASK_NONE","features":[454]},{"name":"RTM_VIEW_MASK_SIZE","features":[454]},{"name":"RTM_VIEW_MASK_UCAST","features":[454]},{"name":"RasClearConnectionStatistics","features":[454]},{"name":"RasClearLinkStatistics","features":[454]},{"name":"RasConnectionNotificationA","features":[305,454]},{"name":"RasConnectionNotificationW","features":[305,454]},{"name":"RasCreatePhonebookEntryA","features":[305,454]},{"name":"RasCreatePhonebookEntryW","features":[305,454]},{"name":"RasCustomDeleteEntryNotifyFn","features":[454]},{"name":"RasCustomDialDlgFn","features":[305,454]},{"name":"RasCustomDialFn","features":[305,454]},{"name":"RasCustomEntryDlgFn","features":[305,454]},{"name":"RasCustomHangUpFn","features":[454]},{"name":"RasCustomScriptExecuteFn","features":[305,454]},{"name":"RasDeleteEntryA","features":[454]},{"name":"RasDeleteEntryW","features":[454]},{"name":"RasDeleteSubEntryA","features":[454]},{"name":"RasDeleteSubEntryW","features":[454]},{"name":"RasDialA","features":[305,454]},{"name":"RasDialDlgA","features":[305,454]},{"name":"RasDialDlgW","features":[305,454]},{"name":"RasDialW","features":[305,454]},{"name":"RasEditPhonebookEntryA","features":[305,454]},{"name":"RasEditPhonebookEntryW","features":[305,454]},{"name":"RasEntryDlgA","features":[305,454]},{"name":"RasEntryDlgW","features":[305,454]},{"name":"RasEnumAutodialAddressesA","features":[454]},{"name":"RasEnumAutodialAddressesW","features":[454]},{"name":"RasEnumConnectionsA","features":[305,454]},{"name":"RasEnumConnectionsW","features":[305,454]},{"name":"RasEnumDevicesA","features":[454]},{"name":"RasEnumDevicesW","features":[454]},{"name":"RasEnumEntriesA","features":[454]},{"name":"RasEnumEntriesW","features":[454]},{"name":"RasFreeEapUserIdentityA","features":[454]},{"name":"RasFreeEapUserIdentityW","features":[454]},{"name":"RasGetAutodialAddressA","features":[454]},{"name":"RasGetAutodialAddressW","features":[454]},{"name":"RasGetAutodialEnableA","features":[305,454]},{"name":"RasGetAutodialEnableW","features":[305,454]},{"name":"RasGetAutodialParamA","features":[454]},{"name":"RasGetAutodialParamW","features":[454]},{"name":"RasGetConnectStatusA","features":[454,318]},{"name":"RasGetConnectStatusW","features":[454,318]},{"name":"RasGetConnectionStatistics","features":[454]},{"name":"RasGetCountryInfoA","features":[454]},{"name":"RasGetCountryInfoW","features":[454]},{"name":"RasGetCredentialsA","features":[454]},{"name":"RasGetCredentialsW","features":[454]},{"name":"RasGetCustomAuthDataA","features":[454]},{"name":"RasGetCustomAuthDataW","features":[454]},{"name":"RasGetEapUserDataA","features":[305,454]},{"name":"RasGetEapUserDataW","features":[305,454]},{"name":"RasGetEapUserIdentityA","features":[305,454]},{"name":"RasGetEapUserIdentityW","features":[305,454]},{"name":"RasGetEntryDialParamsA","features":[305,454]},{"name":"RasGetEntryDialParamsW","features":[305,454]},{"name":"RasGetEntryPropertiesA","features":[305,454,318]},{"name":"RasGetEntryPropertiesW","features":[305,454,318]},{"name":"RasGetErrorStringA","features":[454]},{"name":"RasGetErrorStringW","features":[454]},{"name":"RasGetLinkStatistics","features":[454]},{"name":"RasGetPCscf","features":[454]},{"name":"RasGetProjectionInfoA","features":[454]},{"name":"RasGetProjectionInfoEx","features":[305,454,318]},{"name":"RasGetProjectionInfoW","features":[454]},{"name":"RasGetSubEntryHandleA","features":[454]},{"name":"RasGetSubEntryHandleW","features":[454]},{"name":"RasGetSubEntryPropertiesA","features":[454]},{"name":"RasGetSubEntryPropertiesW","features":[454]},{"name":"RasHangUpA","features":[454]},{"name":"RasHangUpW","features":[454]},{"name":"RasInvokeEapUI","features":[305,454]},{"name":"RasPhonebookDlgA","features":[305,454]},{"name":"RasPhonebookDlgW","features":[305,454]},{"name":"RasRenameEntryA","features":[454]},{"name":"RasRenameEntryW","features":[454]},{"name":"RasSetAutodialAddressA","features":[454]},{"name":"RasSetAutodialAddressW","features":[454]},{"name":"RasSetAutodialEnableA","features":[305,454]},{"name":"RasSetAutodialEnableW","features":[305,454]},{"name":"RasSetAutodialParamA","features":[454]},{"name":"RasSetAutodialParamW","features":[454]},{"name":"RasSetCredentialsA","features":[305,454]},{"name":"RasSetCredentialsW","features":[305,454]},{"name":"RasSetCustomAuthDataA","features":[454]},{"name":"RasSetCustomAuthDataW","features":[454]},{"name":"RasSetEapUserDataA","features":[305,454]},{"name":"RasSetEapUserDataW","features":[305,454]},{"name":"RasSetEntryDialParamsA","features":[305,454]},{"name":"RasSetEntryDialParamsW","features":[305,454]},{"name":"RasSetEntryPropertiesA","features":[305,454,318]},{"name":"RasSetEntryPropertiesW","features":[305,454,318]},{"name":"RasSetSubEntryPropertiesA","features":[454]},{"name":"RasSetSubEntryPropertiesW","features":[454]},{"name":"RasUpdateConnection","features":[454,318]},{"name":"RasValidateEntryNameA","features":[454]},{"name":"RasValidateEntryNameW","features":[454]},{"name":"RtmAddNextHop","features":[454]},{"name":"RtmAddRouteToDest","features":[454]},{"name":"RtmBlockMethods","features":[305,454]},{"name":"RtmConvertIpv6AddressAndLengthToNetAddress","features":[454,318]},{"name":"RtmConvertNetAddressToIpv6AddressAndLength","features":[454,318]},{"name":"RtmCreateDestEnum","features":[454]},{"name":"RtmCreateNextHopEnum","features":[454]},{"name":"RtmCreateRouteEnum","features":[454]},{"name":"RtmCreateRouteList","features":[454]},{"name":"RtmCreateRouteListEnum","features":[454]},{"name":"RtmDeleteEnumHandle","features":[454]},{"name":"RtmDeleteNextHop","features":[454]},{"name":"RtmDeleteRouteList","features":[454]},{"name":"RtmDeleteRouteToDest","features":[454]},{"name":"RtmDeregisterEntity","features":[454]},{"name":"RtmDeregisterFromChangeNotification","features":[454]},{"name":"RtmFindNextHop","features":[454]},{"name":"RtmGetChangeStatus","features":[305,454]},{"name":"RtmGetChangedDests","features":[305,454]},{"name":"RtmGetDestInfo","features":[305,454]},{"name":"RtmGetEntityInfo","features":[454]},{"name":"RtmGetEntityMethods","features":[454]},{"name":"RtmGetEnumDests","features":[305,454]},{"name":"RtmGetEnumNextHops","features":[454]},{"name":"RtmGetEnumRoutes","features":[454]},{"name":"RtmGetExactMatchDestination","features":[305,454]},{"name":"RtmGetExactMatchRoute","features":[454]},{"name":"RtmGetLessSpecificDestination","features":[305,454]},{"name":"RtmGetListEnumRoutes","features":[454]},{"name":"RtmGetMostSpecificDestination","features":[305,454]},{"name":"RtmGetNextHopInfo","features":[454]},{"name":"RtmGetNextHopPointer","features":[454]},{"name":"RtmGetOpaqueInformationPointer","features":[454]},{"name":"RtmGetRegisteredEntities","features":[454]},{"name":"RtmGetRouteInfo","features":[454]},{"name":"RtmGetRoutePointer","features":[454]},{"name":"RtmHoldDestination","features":[454]},{"name":"RtmIgnoreChangedDests","features":[454]},{"name":"RtmInsertInRouteList","features":[454]},{"name":"RtmInvokeMethod","features":[454]},{"name":"RtmIsBestRoute","features":[454]},{"name":"RtmIsMarkedForChangeNotification","features":[305,454]},{"name":"RtmLockDestination","features":[305,454]},{"name":"RtmLockNextHop","features":[305,454]},{"name":"RtmLockRoute","features":[305,454]},{"name":"RtmMarkDestForChangeNotification","features":[305,454]},{"name":"RtmReferenceHandles","features":[305,454]},{"name":"RtmRegisterEntity","features":[305,454]},{"name":"RtmRegisterForChangeNotification","features":[454]},{"name":"RtmReleaseChangedDests","features":[305,454]},{"name":"RtmReleaseDestInfo","features":[305,454]},{"name":"RtmReleaseDests","features":[305,454]},{"name":"RtmReleaseEntities","features":[454]},{"name":"RtmReleaseEntityInfo","features":[454]},{"name":"RtmReleaseNextHopInfo","features":[454]},{"name":"RtmReleaseNextHops","features":[454]},{"name":"RtmReleaseRouteInfo","features":[454]},{"name":"RtmReleaseRoutes","features":[454]},{"name":"RtmUpdateAndUnlockRoute","features":[454]},{"name":"SECURITYMSG_ERROR","features":[454]},{"name":"SECURITYMSG_FAILURE","features":[454]},{"name":"SECURITYMSG_SUCCESS","features":[454]},{"name":"SECURITY_MESSAGE","features":[454]},{"name":"SECURITY_MESSAGE_MSG_ID","features":[454]},{"name":"SOURCE_GROUP_ENTRY","features":[454]},{"name":"SSTP_CERT_INFO","features":[305,454,389]},{"name":"SSTP_CONFIG_PARAMS","features":[305,454,389]},{"name":"VPN_TS_IP_ADDRESS","features":[454,318]},{"name":"VS_Default","features":[454]},{"name":"VS_GREOnly","features":[454]},{"name":"VS_Ikev2First","features":[454]},{"name":"VS_Ikev2Only","features":[454]},{"name":"VS_Ikev2Sstp","features":[454]},{"name":"VS_L2tpFirst","features":[454]},{"name":"VS_L2tpOnly","features":[454]},{"name":"VS_L2tpSstp","features":[454]},{"name":"VS_PptpFirst","features":[454]},{"name":"VS_PptpOnly","features":[454]},{"name":"VS_PptpSstp","features":[454]},{"name":"VS_ProtocolList","features":[454]},{"name":"VS_SstpFirst","features":[454]},{"name":"VS_SstpOnly","features":[454]},{"name":"WARNING_MSG_ALIAS_NOT_ADDED","features":[454]},{"name":"WM_RASDIALEVENT","features":[454]}],"460":[{"name":"ASN_APPLICATION","features":[455]},{"name":"ASN_CONSTRUCTOR","features":[455]},{"name":"ASN_CONTEXT","features":[455]},{"name":"ASN_CONTEXTSPECIFIC","features":[455]},{"name":"ASN_PRIMATIVE","features":[455]},{"name":"ASN_PRIMITIVE","features":[455]},{"name":"ASN_PRIVATE","features":[455]},{"name":"ASN_UNIVERSAL","features":[455]},{"name":"AsnAny","features":[305,455]},{"name":"AsnObjectIdentifier","features":[455]},{"name":"AsnObjectIdentifier","features":[455]},{"name":"AsnOctetString","features":[305,455]},{"name":"AsnOctetString","features":[305,455]},{"name":"DEFAULT_SNMPTRAP_PORT_IPX","features":[455]},{"name":"DEFAULT_SNMPTRAP_PORT_UDP","features":[455]},{"name":"DEFAULT_SNMP_PORT_IPX","features":[455]},{"name":"DEFAULT_SNMP_PORT_UDP","features":[455]},{"name":"MAXOBJIDSIZE","features":[455]},{"name":"MAXOBJIDSTRSIZE","features":[455]},{"name":"MAXVENDORINFO","features":[455]},{"name":"MGMCTL_SETAGENTPORT","features":[455]},{"name":"PFNSNMPCLEANUPEX","features":[455]},{"name":"PFNSNMPEXTENSIONCLOSE","features":[455]},{"name":"PFNSNMPEXTENSIONINIT","features":[305,455]},{"name":"PFNSNMPEXTENSIONINITEX","features":[305,455]},{"name":"PFNSNMPEXTENSIONMONITOR","features":[305,455]},{"name":"PFNSNMPEXTENSIONQUERY","features":[305,455]},{"name":"PFNSNMPEXTENSIONQUERYEX","features":[305,455]},{"name":"PFNSNMPEXTENSIONTRAP","features":[305,455]},{"name":"PFNSNMPSTARTUPEX","features":[455]},{"name":"SNMPAPI_ALLOC_ERROR","features":[455]},{"name":"SNMPAPI_CALLBACK","features":[305,455]},{"name":"SNMPAPI_CONTEXT_INVALID","features":[455]},{"name":"SNMPAPI_CONTEXT_UNKNOWN","features":[455]},{"name":"SNMPAPI_ENTITY_INVALID","features":[455]},{"name":"SNMPAPI_ENTITY_UNKNOWN","features":[455]},{"name":"SNMPAPI_ERROR","features":[455]},{"name":"SNMPAPI_FAILURE","features":[455]},{"name":"SNMPAPI_HWND_INVALID","features":[455]},{"name":"SNMPAPI_INDEX_INVALID","features":[455]},{"name":"SNMPAPI_M2M_SUPPORT","features":[455]},{"name":"SNMPAPI_MESSAGE_INVALID","features":[455]},{"name":"SNMPAPI_MODE_INVALID","features":[455]},{"name":"SNMPAPI_NOERROR","features":[455]},{"name":"SNMPAPI_NOOP","features":[455]},{"name":"SNMPAPI_NOT_INITIALIZED","features":[455]},{"name":"SNMPAPI_NO_SUPPORT","features":[455]},{"name":"SNMPAPI_OFF","features":[455]},{"name":"SNMPAPI_OID_INVALID","features":[455]},{"name":"SNMPAPI_ON","features":[455]},{"name":"SNMPAPI_OPERATION_INVALID","features":[455]},{"name":"SNMPAPI_OTHER_ERROR","features":[455]},{"name":"SNMPAPI_OUTPUT_TRUNCATED","features":[455]},{"name":"SNMPAPI_PDU_INVALID","features":[455]},{"name":"SNMPAPI_SESSION_INVALID","features":[455]},{"name":"SNMPAPI_SIZE_INVALID","features":[455]},{"name":"SNMPAPI_SUCCESS","features":[455]},{"name":"SNMPAPI_SYNTAX_INVALID","features":[455]},{"name":"SNMPAPI_TL_INVALID_PARAM","features":[455]},{"name":"SNMPAPI_TL_IN_USE","features":[455]},{"name":"SNMPAPI_TL_NOT_AVAILABLE","features":[455]},{"name":"SNMPAPI_TL_NOT_INITIALIZED","features":[455]},{"name":"SNMPAPI_TL_NOT_SUPPORTED","features":[455]},{"name":"SNMPAPI_TL_OTHER","features":[455]},{"name":"SNMPAPI_TL_PDU_TOO_BIG","features":[455]},{"name":"SNMPAPI_TL_RESOURCE_ERROR","features":[455]},{"name":"SNMPAPI_TL_SRC_INVALID","features":[455]},{"name":"SNMPAPI_TL_TIMEOUT","features":[455]},{"name":"SNMPAPI_TL_UNDELIVERABLE","features":[455]},{"name":"SNMPAPI_TRANSLATED","features":[455]},{"name":"SNMPAPI_UNTRANSLATED_V1","features":[455]},{"name":"SNMPAPI_UNTRANSLATED_V2","features":[455]},{"name":"SNMPAPI_V1_SUPPORT","features":[455]},{"name":"SNMPAPI_V2_SUPPORT","features":[455]},{"name":"SNMPAPI_VBL_INVALID","features":[455]},{"name":"SNMPLISTEN_ALL_ADDR","features":[455]},{"name":"SNMPLISTEN_USEENTITY_ADDR","features":[455]},{"name":"SNMP_ACCESS_NONE","features":[455]},{"name":"SNMP_ACCESS_NOTIFY","features":[455]},{"name":"SNMP_ACCESS_READ_CREATE","features":[455]},{"name":"SNMP_ACCESS_READ_ONLY","features":[455]},{"name":"SNMP_ACCESS_READ_WRITE","features":[455]},{"name":"SNMP_API_TRANSLATE_MODE","features":[455]},{"name":"SNMP_AUTHAPI_INVALID_MSG_TYPE","features":[455]},{"name":"SNMP_AUTHAPI_INVALID_VERSION","features":[455]},{"name":"SNMP_AUTHAPI_TRIV_AUTH_FAILED","features":[455]},{"name":"SNMP_BERAPI_INVALID_LENGTH","features":[455]},{"name":"SNMP_BERAPI_INVALID_OBJELEM","features":[455]},{"name":"SNMP_BERAPI_INVALID_TAG","features":[455]},{"name":"SNMP_BERAPI_OVERFLOW","features":[455]},{"name":"SNMP_BERAPI_SHORT_BUFFER","features":[455]},{"name":"SNMP_ERROR","features":[455]},{"name":"SNMP_ERRORSTATUS_AUTHORIZATIONERROR","features":[455]},{"name":"SNMP_ERRORSTATUS_BADVALUE","features":[455]},{"name":"SNMP_ERRORSTATUS_COMMITFAILED","features":[455]},{"name":"SNMP_ERRORSTATUS_GENERR","features":[455]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTNAME","features":[455]},{"name":"SNMP_ERRORSTATUS_INCONSISTENTVALUE","features":[455]},{"name":"SNMP_ERRORSTATUS_NOACCESS","features":[455]},{"name":"SNMP_ERRORSTATUS_NOCREATION","features":[455]},{"name":"SNMP_ERRORSTATUS_NOERROR","features":[455]},{"name":"SNMP_ERRORSTATUS_NOSUCHNAME","features":[455]},{"name":"SNMP_ERRORSTATUS_NOTWRITABLE","features":[455]},{"name":"SNMP_ERRORSTATUS_READONLY","features":[455]},{"name":"SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE","features":[455]},{"name":"SNMP_ERRORSTATUS_TOOBIG","features":[455]},{"name":"SNMP_ERRORSTATUS_UNDOFAILED","features":[455]},{"name":"SNMP_ERRORSTATUS_WRONGENCODING","features":[455]},{"name":"SNMP_ERRORSTATUS_WRONGLENGTH","features":[455]},{"name":"SNMP_ERRORSTATUS_WRONGTYPE","features":[455]},{"name":"SNMP_ERRORSTATUS_WRONGVALUE","features":[455]},{"name":"SNMP_ERROR_AUTHORIZATIONERROR","features":[455]},{"name":"SNMP_ERROR_BADVALUE","features":[455]},{"name":"SNMP_ERROR_COMMITFAILED","features":[455]},{"name":"SNMP_ERROR_GENERR","features":[455]},{"name":"SNMP_ERROR_INCONSISTENTNAME","features":[455]},{"name":"SNMP_ERROR_INCONSISTENTVALUE","features":[455]},{"name":"SNMP_ERROR_NOACCESS","features":[455]},{"name":"SNMP_ERROR_NOCREATION","features":[455]},{"name":"SNMP_ERROR_NOERROR","features":[455]},{"name":"SNMP_ERROR_NOSUCHNAME","features":[455]},{"name":"SNMP_ERROR_NOTWRITABLE","features":[455]},{"name":"SNMP_ERROR_READONLY","features":[455]},{"name":"SNMP_ERROR_RESOURCEUNAVAILABLE","features":[455]},{"name":"SNMP_ERROR_STATUS","features":[455]},{"name":"SNMP_ERROR_TOOBIG","features":[455]},{"name":"SNMP_ERROR_UNDOFAILED","features":[455]},{"name":"SNMP_ERROR_WRONGENCODING","features":[455]},{"name":"SNMP_ERROR_WRONGLENGTH","features":[455]},{"name":"SNMP_ERROR_WRONGTYPE","features":[455]},{"name":"SNMP_ERROR_WRONGVALUE","features":[455]},{"name":"SNMP_EXTENSION_GET","features":[455]},{"name":"SNMP_EXTENSION_GET_NEXT","features":[455]},{"name":"SNMP_EXTENSION_REQUEST_TYPE","features":[455]},{"name":"SNMP_EXTENSION_SET_CLEANUP","features":[455]},{"name":"SNMP_EXTENSION_SET_COMMIT","features":[455]},{"name":"SNMP_EXTENSION_SET_TEST","features":[455]},{"name":"SNMP_EXTENSION_SET_UNDO","features":[455]},{"name":"SNMP_GENERICTRAP","features":[455]},{"name":"SNMP_GENERICTRAP_AUTHFAILURE","features":[455]},{"name":"SNMP_GENERICTRAP_COLDSTART","features":[455]},{"name":"SNMP_GENERICTRAP_EGPNEIGHLOSS","features":[455]},{"name":"SNMP_GENERICTRAP_ENTERSPECIFIC","features":[455]},{"name":"SNMP_GENERICTRAP_LINKDOWN","features":[455]},{"name":"SNMP_GENERICTRAP_LINKUP","features":[455]},{"name":"SNMP_GENERICTRAP_WARMSTART","features":[455]},{"name":"SNMP_LOG","features":[455]},{"name":"SNMP_LOG_ERROR","features":[455]},{"name":"SNMP_LOG_FATAL","features":[455]},{"name":"SNMP_LOG_SILENT","features":[455]},{"name":"SNMP_LOG_TRACE","features":[455]},{"name":"SNMP_LOG_VERBOSE","features":[455]},{"name":"SNMP_LOG_WARNING","features":[455]},{"name":"SNMP_MAX_OID_LEN","features":[455]},{"name":"SNMP_MEM_ALLOC_ERROR","features":[455]},{"name":"SNMP_MGMTAPI_AGAIN","features":[455]},{"name":"SNMP_MGMTAPI_INVALID_BUFFER","features":[455]},{"name":"SNMP_MGMTAPI_INVALID_CTL","features":[455]},{"name":"SNMP_MGMTAPI_INVALID_SESSION","features":[455]},{"name":"SNMP_MGMTAPI_NOTRAPS","features":[455]},{"name":"SNMP_MGMTAPI_SELECT_FDERRORS","features":[455]},{"name":"SNMP_MGMTAPI_TIMEOUT","features":[455]},{"name":"SNMP_MGMTAPI_TRAP_DUPINIT","features":[455]},{"name":"SNMP_MGMTAPI_TRAP_ERRORS","features":[455]},{"name":"SNMP_OUTPUT_LOG_TYPE","features":[455]},{"name":"SNMP_OUTPUT_TO_CONSOLE","features":[455]},{"name":"SNMP_OUTPUT_TO_DEBUGGER","features":[455]},{"name":"SNMP_OUTPUT_TO_EVENTLOG","features":[455]},{"name":"SNMP_OUTPUT_TO_LOGFILE","features":[455]},{"name":"SNMP_PDUAPI_INVALID_ES","features":[455]},{"name":"SNMP_PDUAPI_INVALID_GT","features":[455]},{"name":"SNMP_PDUAPI_UNRECOGNIZED_PDU","features":[455]},{"name":"SNMP_PDU_GET","features":[455]},{"name":"SNMP_PDU_GETBULK","features":[455]},{"name":"SNMP_PDU_GETNEXT","features":[455]},{"name":"SNMP_PDU_RESPONSE","features":[455]},{"name":"SNMP_PDU_SET","features":[455]},{"name":"SNMP_PDU_TRAP","features":[455]},{"name":"SNMP_PDU_TYPE","features":[455]},{"name":"SNMP_STATUS","features":[455]},{"name":"SNMP_TRAP_AUTHFAIL","features":[455]},{"name":"SNMP_TRAP_COLDSTART","features":[455]},{"name":"SNMP_TRAP_EGPNEIGHBORLOSS","features":[455]},{"name":"SNMP_TRAP_ENTERPRISESPECIFIC","features":[455]},{"name":"SNMP_TRAP_LINKDOWN","features":[455]},{"name":"SNMP_TRAP_LINKUP","features":[455]},{"name":"SNMP_TRAP_WARMSTART","features":[455]},{"name":"SnmpCancelMsg","features":[455]},{"name":"SnmpCleanup","features":[455]},{"name":"SnmpCleanupEx","features":[455]},{"name":"SnmpClose","features":[455]},{"name":"SnmpContextToStr","features":[455]},{"name":"SnmpCountVbl","features":[455]},{"name":"SnmpCreatePdu","features":[455]},{"name":"SnmpCreateSession","features":[305,455]},{"name":"SnmpCreateVbl","features":[455]},{"name":"SnmpDecodeMsg","features":[455]},{"name":"SnmpDeleteVb","features":[455]},{"name":"SnmpDuplicatePdu","features":[455]},{"name":"SnmpDuplicateVbl","features":[455]},{"name":"SnmpEncodeMsg","features":[455]},{"name":"SnmpEntityToStr","features":[455]},{"name":"SnmpFreeContext","features":[455]},{"name":"SnmpFreeDescriptor","features":[455]},{"name":"SnmpFreeEntity","features":[455]},{"name":"SnmpFreePdu","features":[455]},{"name":"SnmpFreeVbl","features":[455]},{"name":"SnmpGetLastError","features":[455]},{"name":"SnmpGetPduData","features":[455]},{"name":"SnmpGetRetransmitMode","features":[455]},{"name":"SnmpGetRetry","features":[455]},{"name":"SnmpGetTimeout","features":[455]},{"name":"SnmpGetTranslateMode","features":[455]},{"name":"SnmpGetVb","features":[455]},{"name":"SnmpGetVendorInfo","features":[455]},{"name":"SnmpListen","features":[455]},{"name":"SnmpListenEx","features":[455]},{"name":"SnmpMgrClose","features":[305,455]},{"name":"SnmpMgrCtl","features":[305,455]},{"name":"SnmpMgrGetTrap","features":[305,455]},{"name":"SnmpMgrGetTrapEx","features":[305,455]},{"name":"SnmpMgrOidToStr","features":[305,455]},{"name":"SnmpMgrOpen","features":[455]},{"name":"SnmpMgrRequest","features":[305,455]},{"name":"SnmpMgrStrToOid","features":[305,455]},{"name":"SnmpMgrTrapListen","features":[305,455]},{"name":"SnmpOidCompare","features":[455]},{"name":"SnmpOidCopy","features":[455]},{"name":"SnmpOidToStr","features":[455]},{"name":"SnmpOpen","features":[305,455]},{"name":"SnmpRecvMsg","features":[455]},{"name":"SnmpRegister","features":[455]},{"name":"SnmpSendMsg","features":[455]},{"name":"SnmpSetPduData","features":[455]},{"name":"SnmpSetPort","features":[455]},{"name":"SnmpSetRetransmitMode","features":[455]},{"name":"SnmpSetRetry","features":[455]},{"name":"SnmpSetTimeout","features":[455]},{"name":"SnmpSetTranslateMode","features":[455]},{"name":"SnmpSetVb","features":[455]},{"name":"SnmpStartup","features":[455]},{"name":"SnmpStartupEx","features":[455]},{"name":"SnmpStrToContext","features":[455]},{"name":"SnmpStrToEntity","features":[455]},{"name":"SnmpStrToOid","features":[455]},{"name":"SnmpSvcGetUptime","features":[455]},{"name":"SnmpSvcSetLogLevel","features":[455]},{"name":"SnmpSvcSetLogType","features":[455]},{"name":"SnmpUtilAsnAnyCpy","features":[305,455]},{"name":"SnmpUtilAsnAnyFree","features":[305,455]},{"name":"SnmpUtilDbgPrint","features":[455]},{"name":"SnmpUtilIdsToA","features":[455]},{"name":"SnmpUtilMemAlloc","features":[455]},{"name":"SnmpUtilMemFree","features":[455]},{"name":"SnmpUtilMemReAlloc","features":[455]},{"name":"SnmpUtilOctetsCmp","features":[305,455]},{"name":"SnmpUtilOctetsCpy","features":[305,455]},{"name":"SnmpUtilOctetsFree","features":[305,455]},{"name":"SnmpUtilOctetsNCmp","features":[305,455]},{"name":"SnmpUtilOidAppend","features":[455]},{"name":"SnmpUtilOidCmp","features":[455]},{"name":"SnmpUtilOidCpy","features":[455]},{"name":"SnmpUtilOidFree","features":[455]},{"name":"SnmpUtilOidNCmp","features":[455]},{"name":"SnmpUtilOidToA","features":[455]},{"name":"SnmpUtilPrintAsnAny","features":[305,455]},{"name":"SnmpUtilPrintOid","features":[455]},{"name":"SnmpUtilVarBindCpy","features":[305,455]},{"name":"SnmpUtilVarBindFree","features":[305,455]},{"name":"SnmpUtilVarBindListCpy","features":[305,455]},{"name":"SnmpUtilVarBindListFree","features":[305,455]},{"name":"SnmpVarBind","features":[305,455]},{"name":"SnmpVarBindList","features":[305,455]},{"name":"SnmpVarBindList","features":[305,455]},{"name":"smiCNTR64","features":[455]},{"name":"smiOCTETS","features":[455]},{"name":"smiOID","features":[455]},{"name":"smiVALUE","features":[455]},{"name":"smiVENDORINFO","features":[455]}],"461":[{"name":"CONNDLG_CONN_POINT","features":[456]},{"name":"CONNDLG_HIDE_BOX","features":[456]},{"name":"CONNDLG_NOT_PERSIST","features":[456]},{"name":"CONNDLG_PERSIST","features":[456]},{"name":"CONNDLG_RO_PATH","features":[456]},{"name":"CONNDLG_USE_MRU","features":[456]},{"name":"CONNECTDLGSTRUCTA","features":[305,456]},{"name":"CONNECTDLGSTRUCTW","features":[305,456]},{"name":"CONNECTDLGSTRUCT_FLAGS","features":[456]},{"name":"CONNECT_CMD_SAVECRED","features":[456]},{"name":"CONNECT_COMMANDLINE","features":[456]},{"name":"CONNECT_CRED_RESET","features":[456]},{"name":"CONNECT_CURRENT_MEDIA","features":[456]},{"name":"CONNECT_DEFERRED","features":[456]},{"name":"CONNECT_GLOBAL_MAPPING","features":[456]},{"name":"CONNECT_INTERACTIVE","features":[456]},{"name":"CONNECT_LOCALDRIVE","features":[456]},{"name":"CONNECT_NEED_DRIVE","features":[456]},{"name":"CONNECT_PROMPT","features":[456]},{"name":"CONNECT_REDIRECT","features":[456]},{"name":"CONNECT_REFCOUNT","features":[456]},{"name":"CONNECT_REQUIRE_INTEGRITY","features":[456]},{"name":"CONNECT_REQUIRE_PRIVACY","features":[456]},{"name":"CONNECT_RESERVED","features":[456]},{"name":"CONNECT_TEMPORARY","features":[456]},{"name":"CONNECT_UPDATE_PROFILE","features":[456]},{"name":"CONNECT_UPDATE_RECENT","features":[456]},{"name":"CONNECT_WRITE_THROUGH_SEMANTICS","features":[456]},{"name":"DISCDLGSTRUCTA","features":[305,456]},{"name":"DISCDLGSTRUCTW","features":[305,456]},{"name":"DISCDLGSTRUCT_FLAGS","features":[456]},{"name":"DISC_NO_FORCE","features":[456]},{"name":"DISC_UPDATE_PROFILE","features":[456]},{"name":"MultinetGetConnectionPerformanceA","features":[456]},{"name":"MultinetGetConnectionPerformanceW","features":[456]},{"name":"NETCONNECTINFOSTRUCT","features":[456]},{"name":"NETINFOSTRUCT","features":[305,456]},{"name":"NETINFOSTRUCT_CHARACTERISTICS","features":[456]},{"name":"NETINFO_DISKRED","features":[456]},{"name":"NETINFO_DLL16","features":[456]},{"name":"NETINFO_PRINTERRED","features":[456]},{"name":"NETPROPERTY_PERSISTENT","features":[456]},{"name":"NETRESOURCEA","features":[456]},{"name":"NETRESOURCEW","features":[456]},{"name":"NETWORK_NAME_FORMAT_FLAGS","features":[456]},{"name":"NET_CONNECT_FLAGS","features":[456]},{"name":"NET_RESOURCE_SCOPE","features":[456]},{"name":"NET_RESOURCE_TYPE","features":[456]},{"name":"NOTIFYADD","features":[305,456]},{"name":"NOTIFYCANCEL","features":[305,456]},{"name":"NOTIFYINFO","features":[456]},{"name":"NOTIFY_POST","features":[456]},{"name":"NOTIFY_PRE","features":[456]},{"name":"NPAddConnection","features":[456]},{"name":"NPAddConnection3","features":[305,456]},{"name":"NPAddConnection4","features":[305,456]},{"name":"NPCancelConnection","features":[305,456]},{"name":"NPCancelConnection2","features":[305,456]},{"name":"NPCloseEnum","features":[305,456]},{"name":"NPDIRECTORY_NOTIFY_OPERATION","features":[456]},{"name":"NPEnumResource","features":[305,456]},{"name":"NPFormatNetworkName","features":[456]},{"name":"NPGetCaps","features":[456]},{"name":"NPGetConnection","features":[456]},{"name":"NPGetConnection3","features":[456]},{"name":"NPGetConnectionPerformance","features":[456]},{"name":"NPGetPersistentUseOptionsForConnection","features":[456]},{"name":"NPGetResourceInformation","features":[456]},{"name":"NPGetResourceParent","features":[456]},{"name":"NPGetUniversalName","features":[456]},{"name":"NPGetUser","features":[456]},{"name":"NPOpenEnum","features":[305,456]},{"name":"NP_PROPERTY_DIALOG_SELECTION","features":[456]},{"name":"PF_AddConnectNotify","features":[305,456]},{"name":"PF_CancelConnectNotify","features":[305,456]},{"name":"PF_NPAddConnection","features":[456]},{"name":"PF_NPAddConnection3","features":[305,456]},{"name":"PF_NPAddConnection4","features":[305,456]},{"name":"PF_NPCancelConnection","features":[305,456]},{"name":"PF_NPCancelConnection2","features":[305,456]},{"name":"PF_NPCloseEnum","features":[305,456]},{"name":"PF_NPDeviceMode","features":[305,456]},{"name":"PF_NPDirectoryNotify","features":[305,456]},{"name":"PF_NPEnumResource","features":[305,456]},{"name":"PF_NPFMXEditPerm","features":[305,456]},{"name":"PF_NPFMXGetPermCaps","features":[456]},{"name":"PF_NPFMXGetPermHelp","features":[305,456]},{"name":"PF_NPFormatNetworkName","features":[456]},{"name":"PF_NPGetCaps","features":[456]},{"name":"PF_NPGetConnection","features":[456]},{"name":"PF_NPGetConnection3","features":[456]},{"name":"PF_NPGetConnectionPerformance","features":[456]},{"name":"PF_NPGetDirectoryType","features":[305,456]},{"name":"PF_NPGetPersistentUseOptionsForConnection","features":[456]},{"name":"PF_NPGetPropertyText","features":[456]},{"name":"PF_NPGetResourceInformation","features":[456]},{"name":"PF_NPGetResourceParent","features":[456]},{"name":"PF_NPGetUniversalName","features":[456]},{"name":"PF_NPGetUser","features":[456]},{"name":"PF_NPLogonNotify","features":[305,456]},{"name":"PF_NPOpenEnum","features":[305,456]},{"name":"PF_NPPasswordChangeNotify","features":[456]},{"name":"PF_NPPropertyDialog","features":[305,456]},{"name":"PF_NPSearchDialog","features":[305,456]},{"name":"REMOTE_NAME_INFOA","features":[456]},{"name":"REMOTE_NAME_INFOW","features":[456]},{"name":"REMOTE_NAME_INFO_LEVEL","features":[456]},{"name":"RESOURCEDISPLAYTYPE_DIRECTORY","features":[456]},{"name":"RESOURCEDISPLAYTYPE_NDSCONTAINER","features":[456]},{"name":"RESOURCEDISPLAYTYPE_NETWORK","features":[456]},{"name":"RESOURCEDISPLAYTYPE_ROOT","features":[456]},{"name":"RESOURCEDISPLAYTYPE_SHAREADMIN","features":[456]},{"name":"RESOURCETYPE_ANY","features":[456]},{"name":"RESOURCETYPE_DISK","features":[456]},{"name":"RESOURCETYPE_PRINT","features":[456]},{"name":"RESOURCETYPE_RESERVED","features":[456]},{"name":"RESOURCETYPE_UNKNOWN","features":[456]},{"name":"RESOURCEUSAGE_ALL","features":[456]},{"name":"RESOURCEUSAGE_ATTACHED","features":[456]},{"name":"RESOURCEUSAGE_CONNECTABLE","features":[456]},{"name":"RESOURCEUSAGE_CONTAINER","features":[456]},{"name":"RESOURCEUSAGE_NOLOCALDEVICE","features":[456]},{"name":"RESOURCEUSAGE_NONE","features":[456]},{"name":"RESOURCEUSAGE_RESERVED","features":[456]},{"name":"RESOURCEUSAGE_SIBLING","features":[456]},{"name":"RESOURCE_CONNECTED","features":[456]},{"name":"RESOURCE_CONTEXT","features":[456]},{"name":"RESOURCE_GLOBALNET","features":[456]},{"name":"RESOURCE_RECENT","features":[456]},{"name":"RESOURCE_REMEMBERED","features":[456]},{"name":"UNC_INFO_LEVEL","features":[456]},{"name":"UNIVERSAL_NAME_INFOA","features":[456]},{"name":"UNIVERSAL_NAME_INFOW","features":[456]},{"name":"UNIVERSAL_NAME_INFO_LEVEL","features":[456]},{"name":"WNCON_DYNAMIC","features":[456]},{"name":"WNCON_FORNETCARD","features":[456]},{"name":"WNCON_NOTROUTED","features":[456]},{"name":"WNCON_SLOWLINK","features":[456]},{"name":"WNDN_MKDIR","features":[456]},{"name":"WNDN_MVDIR","features":[456]},{"name":"WNDN_RMDIR","features":[456]},{"name":"WNDT_NETWORK","features":[456]},{"name":"WNDT_NORMAL","features":[456]},{"name":"WNET_OPEN_ENUM_USAGE","features":[456]},{"name":"WNFMT_ABBREVIATED","features":[456]},{"name":"WNFMT_CONNECTION","features":[456]},{"name":"WNFMT_INENUM","features":[456]},{"name":"WNFMT_MULTILINE","features":[456]},{"name":"WNGETCON_CONNECTED","features":[456]},{"name":"WNGETCON_DISCONNECTED","features":[456]},{"name":"WNNC_ADMIN","features":[456]},{"name":"WNNC_ADM_DIRECTORYNOTIFY","features":[456]},{"name":"WNNC_ADM_GETDIRECTORYTYPE","features":[456]},{"name":"WNNC_CONNECTION","features":[456]},{"name":"WNNC_CONNECTION_FLAGS","features":[456]},{"name":"WNNC_CON_ADDCONNECTION","features":[456]},{"name":"WNNC_CON_ADDCONNECTION3","features":[456]},{"name":"WNNC_CON_ADDCONNECTION4","features":[456]},{"name":"WNNC_CON_CANCELCONNECTION","features":[456]},{"name":"WNNC_CON_CANCELCONNECTION2","features":[456]},{"name":"WNNC_CON_DEFER","features":[456]},{"name":"WNNC_CON_GETCONNECTIONS","features":[456]},{"name":"WNNC_CON_GETPERFORMANCE","features":[456]},{"name":"WNNC_DIALOG","features":[456]},{"name":"WNNC_DLG_DEVICEMODE","features":[456]},{"name":"WNNC_DLG_FORMATNETWORKNAME","features":[456]},{"name":"WNNC_DLG_GETRESOURCEINFORMATION","features":[456]},{"name":"WNNC_DLG_GETRESOURCEPARENT","features":[456]},{"name":"WNNC_DLG_PERMISSIONEDITOR","features":[456]},{"name":"WNNC_DLG_PROPERTYDIALOG","features":[456]},{"name":"WNNC_DLG_SEARCHDIALOG","features":[456]},{"name":"WNNC_DRIVER_VERSION","features":[456]},{"name":"WNNC_ENUMERATION","features":[456]},{"name":"WNNC_ENUM_CONTEXT","features":[456]},{"name":"WNNC_ENUM_GLOBAL","features":[456]},{"name":"WNNC_ENUM_LOCAL","features":[456]},{"name":"WNNC_ENUM_SHAREABLE","features":[456]},{"name":"WNNC_NET_NONE","features":[456]},{"name":"WNNC_NET_TYPE","features":[456]},{"name":"WNNC_SPEC_VERSION","features":[456]},{"name":"WNNC_SPEC_VERSION51","features":[456]},{"name":"WNNC_START","features":[456]},{"name":"WNNC_USER","features":[456]},{"name":"WNNC_USR_GETUSER","features":[456]},{"name":"WNNC_WAIT_FOR_START","features":[456]},{"name":"WNPERMC_AUDIT","features":[456]},{"name":"WNPERMC_OWNER","features":[456]},{"name":"WNPERMC_PERM","features":[456]},{"name":"WNPERM_DLG","features":[456]},{"name":"WNPERM_DLG_AUDIT","features":[456]},{"name":"WNPERM_DLG_OWNER","features":[456]},{"name":"WNPERM_DLG_PERM","features":[456]},{"name":"WNPS_DIR","features":[456]},{"name":"WNPS_FILE","features":[456]},{"name":"WNPS_MULT","features":[456]},{"name":"WNSRCH_REFRESH_FIRST_LEVEL","features":[456]},{"name":"WNTYPE_COMM","features":[456]},{"name":"WNTYPE_DRIVE","features":[456]},{"name":"WNTYPE_FILE","features":[456]},{"name":"WNTYPE_PRINTER","features":[456]},{"name":"WN_CREDENTIAL_CLASS","features":[456]},{"name":"WN_NETWORK_CLASS","features":[456]},{"name":"WN_NT_PASSWORD_CHANGED","features":[456]},{"name":"WN_PRIMARY_AUTHENT_CLASS","features":[456]},{"name":"WN_SERVICE_CLASS","features":[456]},{"name":"WN_VALID_LOGON_ACCOUNT","features":[456]},{"name":"WNetAddConnection2A","features":[305,456]},{"name":"WNetAddConnection2W","features":[305,456]},{"name":"WNetAddConnection3A","features":[305,456]},{"name":"WNetAddConnection3W","features":[305,456]},{"name":"WNetAddConnection4A","features":[305,456]},{"name":"WNetAddConnection4W","features":[305,456]},{"name":"WNetAddConnectionA","features":[305,456]},{"name":"WNetAddConnectionW","features":[305,456]},{"name":"WNetCancelConnection2A","features":[305,456]},{"name":"WNetCancelConnection2W","features":[305,456]},{"name":"WNetCancelConnectionA","features":[305,456]},{"name":"WNetCancelConnectionW","features":[305,456]},{"name":"WNetCloseEnum","features":[305,456]},{"name":"WNetConnectionDialog","features":[305,456]},{"name":"WNetConnectionDialog1A","features":[305,456]},{"name":"WNetConnectionDialog1W","features":[305,456]},{"name":"WNetDisconnectDialog","features":[305,456]},{"name":"WNetDisconnectDialog1A","features":[305,456]},{"name":"WNetDisconnectDialog1W","features":[305,456]},{"name":"WNetEnumResourceA","features":[305,456]},{"name":"WNetEnumResourceW","features":[305,456]},{"name":"WNetGetConnectionA","features":[305,456]},{"name":"WNetGetConnectionW","features":[305,456]},{"name":"WNetGetLastErrorA","features":[305,456]},{"name":"WNetGetLastErrorW","features":[305,456]},{"name":"WNetGetNetworkInformationA","features":[305,456]},{"name":"WNetGetNetworkInformationW","features":[305,456]},{"name":"WNetGetProviderNameA","features":[305,456]},{"name":"WNetGetProviderNameW","features":[305,456]},{"name":"WNetGetResourceInformationA","features":[305,456]},{"name":"WNetGetResourceInformationW","features":[305,456]},{"name":"WNetGetResourceParentA","features":[305,456]},{"name":"WNetGetResourceParentW","features":[305,456]},{"name":"WNetGetUniversalNameA","features":[305,456]},{"name":"WNetGetUniversalNameW","features":[305,456]},{"name":"WNetGetUserA","features":[305,456]},{"name":"WNetGetUserW","features":[305,456]},{"name":"WNetOpenEnumA","features":[305,456]},{"name":"WNetOpenEnumW","features":[305,456]},{"name":"WNetSetLastErrorA","features":[456]},{"name":"WNetSetLastErrorW","features":[456]},{"name":"WNetUseConnection4A","features":[305,456]},{"name":"WNetUseConnection4W","features":[305,456]},{"name":"WNetUseConnectionA","features":[305,456]},{"name":"WNetUseConnectionW","features":[305,456]}],"462":[{"name":"AUTHNEXTSTEP","features":[457]},{"name":"CancelRequest","features":[457]},{"name":"DAV_AUTHN_SCHEME_BASIC","features":[457]},{"name":"DAV_AUTHN_SCHEME_CERT","features":[457]},{"name":"DAV_AUTHN_SCHEME_DIGEST","features":[457]},{"name":"DAV_AUTHN_SCHEME_FBA","features":[457]},{"name":"DAV_AUTHN_SCHEME_NEGOTIATE","features":[457]},{"name":"DAV_AUTHN_SCHEME_NTLM","features":[457]},{"name":"DAV_AUTHN_SCHEME_PASSPORT","features":[457]},{"name":"DAV_CALLBACK_AUTH_BLOB","features":[457]},{"name":"DAV_CALLBACK_AUTH_UNP","features":[457]},{"name":"DAV_CALLBACK_CRED","features":[305,457]},{"name":"DavAddConnection","features":[305,457]},{"name":"DavCancelConnectionsToServer","features":[305,457]},{"name":"DavDeleteConnection","features":[305,457]},{"name":"DavFlushFile","features":[305,457]},{"name":"DavGetExtendedError","features":[305,457]},{"name":"DavGetHTTPFromUNCPath","features":[457]},{"name":"DavGetTheLockOwnerOfTheFile","features":[457]},{"name":"DavGetUNCFromHTTPPath","features":[457]},{"name":"DavInvalidateCache","features":[457]},{"name":"DavRegisterAuthCallback","features":[305,457]},{"name":"DavUnregisterAuthCallback","features":[457]},{"name":"DefaultBehavior","features":[457]},{"name":"PFNDAVAUTHCALLBACK","features":[305,457]},{"name":"PFNDAVAUTHCALLBACK_FREECRED","features":[457]},{"name":"RetryRequest","features":[457]}],"463":[{"name":"CH_DESCRIPTION_TYPE","features":[458]},{"name":"DEVPKEY_InfraCast_AccessPointBssid","features":[303,458]},{"name":"DEVPKEY_InfraCast_ChallengeAep","features":[303,458]},{"name":"DEVPKEY_InfraCast_DevnodeAep","features":[303,458]},{"name":"DEVPKEY_InfraCast_HostName_ResolutionMode","features":[303,458]},{"name":"DEVPKEY_InfraCast_PinSupported","features":[303,458]},{"name":"DEVPKEY_InfraCast_RtspTcpConnectionParametersSupported","features":[303,458]},{"name":"DEVPKEY_InfraCast_SinkHostName","features":[303,458]},{"name":"DEVPKEY_InfraCast_SinkIpAddress","features":[303,458]},{"name":"DEVPKEY_InfraCast_StreamSecuritySupported","features":[303,458]},{"name":"DEVPKEY_InfraCast_Supported","features":[303,458]},{"name":"DEVPKEY_PciDevice_AERCapabilityPresent","features":[303,458]},{"name":"DEVPKEY_PciDevice_AcsCapabilityRegister","features":[303,458]},{"name":"DEVPKEY_PciDevice_AcsCompatibleUpHierarchy","features":[303,458]},{"name":"DEVPKEY_PciDevice_AcsSupport","features":[303,458]},{"name":"DEVPKEY_PciDevice_AriSupport","features":[303,458]},{"name":"DEVPKEY_PciDevice_AtomicsSupported","features":[303,458]},{"name":"DEVPKEY_PciDevice_AtsSupport","features":[303,458]},{"name":"DEVPKEY_PciDevice_BarTypes","features":[303,458]},{"name":"DEVPKEY_PciDevice_BaseClass","features":[303,458]},{"name":"DEVPKEY_PciDevice_Correctable_Error_Mask","features":[303,458]},{"name":"DEVPKEY_PciDevice_CurrentLinkSpeed","features":[303,458]},{"name":"DEVPKEY_PciDevice_CurrentLinkWidth","features":[303,458]},{"name":"DEVPKEY_PciDevice_CurrentPayloadSize","features":[303,458]},{"name":"DEVPKEY_PciDevice_CurrentSpeedAndMode","features":[303,458]},{"name":"DEVPKEY_PciDevice_D3ColdSupport","features":[303,458]},{"name":"DEVPKEY_PciDevice_DeviceType","features":[303,458]},{"name":"DEVPKEY_PciDevice_ECRC_Errors","features":[303,458]},{"name":"DEVPKEY_PciDevice_Error_Reporting","features":[303,458]},{"name":"DEVPKEY_PciDevice_ExpressSpecVersion","features":[303,458]},{"name":"DEVPKEY_PciDevice_FirmwareErrorHandling","features":[303,458]},{"name":"DEVPKEY_PciDevice_InterruptMessageMaximum","features":[303,458]},{"name":"DEVPKEY_PciDevice_InterruptSupport","features":[303,458]},{"name":"DEVPKEY_PciDevice_Label_Id","features":[303,458]},{"name":"DEVPKEY_PciDevice_Label_String","features":[303,458]},{"name":"DEVPKEY_PciDevice_MaxLinkSpeed","features":[303,458]},{"name":"DEVPKEY_PciDevice_MaxLinkWidth","features":[303,458]},{"name":"DEVPKEY_PciDevice_MaxPayloadSize","features":[303,458]},{"name":"DEVPKEY_PciDevice_MaxReadRequestSize","features":[303,458]},{"name":"DEVPKEY_PciDevice_OnPostPath","features":[303,458]},{"name":"DEVPKEY_PciDevice_ParentSerialNumber","features":[303,458]},{"name":"DEVPKEY_PciDevice_ProgIf","features":[303,458]},{"name":"DEVPKEY_PciDevice_RequiresReservedMemoryRegion","features":[303,458]},{"name":"DEVPKEY_PciDevice_RootError_Reporting","features":[303,458]},{"name":"DEVPKEY_PciDevice_S0WakeupSupported","features":[303,458]},{"name":"DEVPKEY_PciDevice_SerialNumber","features":[303,458]},{"name":"DEVPKEY_PciDevice_SriovSupport","features":[303,458]},{"name":"DEVPKEY_PciDevice_SubClass","features":[303,458]},{"name":"DEVPKEY_PciDevice_SupportedLinkSubState","features":[303,458]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Mask","features":[303,458]},{"name":"DEVPKEY_PciDevice_Uncorrectable_Error_Severity","features":[303,458]},{"name":"DEVPKEY_PciDevice_UsbComponentRelation","features":[303,458]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortSpecificAttributes","features":[303,458]},{"name":"DEVPKEY_PciDevice_UsbDvsecPortType","features":[303,458]},{"name":"DEVPKEY_PciDevice_UsbHostRouterName","features":[303,458]},{"name":"DEVPKEY_PciRootBus_ASPMSupport","features":[303,458]},{"name":"DEVPKEY_PciRootBus_ClockPowerManagementSupport","features":[303,458]},{"name":"DEVPKEY_PciRootBus_CurrentSpeedAndMode","features":[303,458]},{"name":"DEVPKEY_PciRootBus_DeviceIDMessagingCapable","features":[303,458]},{"name":"DEVPKEY_PciRootBus_ExtendedConfigAvailable","features":[303,458]},{"name":"DEVPKEY_PciRootBus_ExtendedPCIConfigOpRegionSupport","features":[303,458]},{"name":"DEVPKEY_PciRootBus_MSISupport","features":[303,458]},{"name":"DEVPKEY_PciRootBus_NativePciExpressControl","features":[303,458]},{"name":"DEVPKEY_PciRootBus_PCIExpressAERControl","features":[303,458]},{"name":"DEVPKEY_PciRootBus_PCIExpressCapabilityControl","features":[303,458]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativeHotPlugControl","features":[303,458]},{"name":"DEVPKEY_PciRootBus_PCIExpressNativePMEControl","features":[303,458]},{"name":"DEVPKEY_PciRootBus_PCISegmentGroupsSupport","features":[303,458]},{"name":"DEVPKEY_PciRootBus_SHPCNativeHotPlugControl","features":[303,458]},{"name":"DEVPKEY_PciRootBus_SecondaryBusWidth","features":[303,458]},{"name":"DEVPKEY_PciRootBus_SecondaryInterface","features":[303,458]},{"name":"DEVPKEY_PciRootBus_SupportedSpeedsAndModes","features":[303,458]},{"name":"DEVPKEY_PciRootBus_SystemMsiSupport","features":[303,458]},{"name":"DEVPKEY_WiFiDirectServices_AdvertisementId","features":[303,458]},{"name":"DEVPKEY_WiFiDirectServices_RequestServiceInformation","features":[303,458]},{"name":"DEVPKEY_WiFiDirectServices_ServiceAddress","features":[303,458]},{"name":"DEVPKEY_WiFiDirectServices_ServiceConfigMethods","features":[303,458]},{"name":"DEVPKEY_WiFiDirectServices_ServiceInformation","features":[303,458]},{"name":"DEVPKEY_WiFiDirectServices_ServiceName","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_DeviceAddress","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_DeviceAddressCopy","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_FoundWsbService","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_GroupId","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_InformationElements","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_InterfaceAddress","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_InterfaceGuid","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_IsConnected","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_IsDMGCapable","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_IsLegacyDevice","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_IsMiracastLCPSupported","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_IsRecentlyAssociated","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_IsVisible","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_LinkQuality","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_MiracastVersion","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_Miracast_SessionMgmtControlPort","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_NoMiracastAutoProject","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_RtspTcpConnectionParametersSupported","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_Service_Aeps","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_Services","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_SupportedChannelList","features":[303,458]},{"name":"DEVPKEY_WiFiDirect_TransientAssociation","features":[303,458]},{"name":"DEVPKEY_WiFi_InterfaceGuid","features":[303,458]},{"name":"DEVPROP_PCIDEVICE_ACSCOMPATIBLEUPHIERARCHY","features":[458]},{"name":"DEVPROP_PCIDEVICE_ACSSUPPORT","features":[458]},{"name":"DEVPROP_PCIDEVICE_CURRENTSPEEDANDMODE","features":[458]},{"name":"DEVPROP_PCIDEVICE_DEVICEBRIDGETYPE","features":[458]},{"name":"DEVPROP_PCIDEVICE_INTERRUPTTYPE","features":[458]},{"name":"DEVPROP_PCIDEVICE_SRIOVSUPPORT","features":[458]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKSPEED","features":[458]},{"name":"DEVPROP_PCIEXPRESSDEVICE_LINKWIDTH","features":[458]},{"name":"DEVPROP_PCIEXPRESSDEVICE_PAYLOADORREQUESTSIZE","features":[458]},{"name":"DEVPROP_PCIEXPRESSDEVICE_SPEC_VERSION","features":[458]},{"name":"DEVPROP_PCIROOTBUS_BUSWIDTH","features":[458]},{"name":"DEVPROP_PCIROOTBUS_CURRENTSPEEDANDMODE","features":[458]},{"name":"DEVPROP_PCIROOTBUS_SECONDARYINTERFACE","features":[458]},{"name":"DEVPROP_PCIROOTBUS_SUPPORTEDSPEEDSANDMODES","features":[458]},{"name":"DISCOVERY_FILTER_BITMASK_ANY","features":[458]},{"name":"DISCOVERY_FILTER_BITMASK_DEVICE","features":[458]},{"name":"DISCOVERY_FILTER_BITMASK_GO","features":[458]},{"name":"DOT11EXTIHV_ADAPTER_RESET","features":[305,458]},{"name":"DOT11EXTIHV_CONTROL","features":[305,458]},{"name":"DOT11EXTIHV_CREATE_DISCOVERY_PROFILES","features":[305,458,459]},{"name":"DOT11EXTIHV_DEINIT_ADAPTER","features":[305,458]},{"name":"DOT11EXTIHV_DEINIT_SERVICE","features":[458]},{"name":"DOT11EXTIHV_GET_VERSION_INFO","features":[458]},{"name":"DOT11EXTIHV_INIT_ADAPTER","features":[305,458]},{"name":"DOT11EXTIHV_INIT_SERVICE","features":[305,319,458,459,460]},{"name":"DOT11EXTIHV_INIT_VIRTUAL_STATION","features":[305,458]},{"name":"DOT11EXTIHV_IS_UI_REQUEST_PENDING","features":[305,458]},{"name":"DOT11EXTIHV_ONEX_INDICATE_RESULT","features":[305,458,459]},{"name":"DOT11EXTIHV_PERFORM_CAPABILITY_MATCH","features":[305,458,459]},{"name":"DOT11EXTIHV_PERFORM_POST_ASSOCIATE","features":[305,319,458]},{"name":"DOT11EXTIHV_PERFORM_PRE_ASSOCIATE","features":[305,458,459]},{"name":"DOT11EXTIHV_PROCESS_SESSION_CHANGE","features":[458,460]},{"name":"DOT11EXTIHV_PROCESS_UI_RESPONSE","features":[458]},{"name":"DOT11EXTIHV_QUERY_UI_REQUEST","features":[305,458]},{"name":"DOT11EXTIHV_RECEIVE_INDICATION","features":[305,458]},{"name":"DOT11EXTIHV_RECEIVE_PACKET","features":[305,458]},{"name":"DOT11EXTIHV_SEND_PACKET_COMPLETION","features":[305,458]},{"name":"DOT11EXTIHV_STOP_POST_ASSOCIATE","features":[305,458]},{"name":"DOT11EXTIHV_VALIDATE_PROFILE","features":[305,458,459]},{"name":"DOT11EXT_ALLOCATE_BUFFER","features":[458]},{"name":"DOT11EXT_APIS","features":[305,319,458,459]},{"name":"DOT11EXT_FREE_BUFFER","features":[458]},{"name":"DOT11EXT_GET_PROFILE_CUSTOM_USER_DATA","features":[305,458]},{"name":"DOT11EXT_IHV_CONNECTION_PHASE","features":[458]},{"name":"DOT11EXT_IHV_CONNECTIVITY_PROFILE","features":[458]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE","features":[305,458]},{"name":"DOT11EXT_IHV_DISCOVERY_PROFILE_LIST","features":[305,458]},{"name":"DOT11EXT_IHV_HANDLERS","features":[305,319,458,459,460]},{"name":"DOT11EXT_IHV_INDICATION_TYPE","features":[458]},{"name":"DOT11EXT_IHV_PARAMS","features":[305,458,459]},{"name":"DOT11EXT_IHV_PROFILE_PARAMS","features":[305,458,459]},{"name":"DOT11EXT_IHV_SECURITY_PROFILE","features":[305,458]},{"name":"DOT11EXT_IHV_SSID_LIST","features":[458]},{"name":"DOT11EXT_IHV_UI_REQUEST","features":[458]},{"name":"DOT11EXT_NIC_SPECIFIC_EXTENSION","features":[305,458]},{"name":"DOT11EXT_ONEX_START","features":[305,458,459]},{"name":"DOT11EXT_ONEX_STOP","features":[305,458]},{"name":"DOT11EXT_POST_ASSOCIATE_COMPLETION","features":[305,458]},{"name":"DOT11EXT_PRE_ASSOCIATE_COMPLETION","features":[305,458]},{"name":"DOT11EXT_PROCESS_ONEX_PACKET","features":[305,458]},{"name":"DOT11EXT_PSK_MAX_LENGTH","features":[458]},{"name":"DOT11EXT_QUERY_VIRTUAL_STATION_PROPERTIES","features":[305,458]},{"name":"DOT11EXT_RELEASE_VIRTUAL_STATION","features":[305,458]},{"name":"DOT11EXT_REQUEST_VIRTUAL_STATION","features":[305,458]},{"name":"DOT11EXT_SEND_NOTIFICATION","features":[305,458]},{"name":"DOT11EXT_SEND_PACKET","features":[305,458]},{"name":"DOT11EXT_SEND_UI_REQUEST","features":[305,458]},{"name":"DOT11EXT_SET_AUTH_ALGORITHM","features":[305,458]},{"name":"DOT11EXT_SET_CURRENT_PROFILE","features":[305,458]},{"name":"DOT11EXT_SET_DEFAULT_KEY","features":[305,319,458]},{"name":"DOT11EXT_SET_DEFAULT_KEY_ID","features":[305,458]},{"name":"DOT11EXT_SET_ETHERTYPE_HANDLING","features":[305,458]},{"name":"DOT11EXT_SET_EXCLUDE_UNENCRYPTED","features":[305,458]},{"name":"DOT11EXT_SET_KEY_MAPPING_KEY","features":[305,458]},{"name":"DOT11EXT_SET_MULTICAST_CIPHER_ALGORITHM","features":[305,458]},{"name":"DOT11EXT_SET_PROFILE_CUSTOM_USER_DATA","features":[305,458]},{"name":"DOT11EXT_SET_UNICAST_CIPHER_ALGORITHM","features":[305,458]},{"name":"DOT11EXT_SET_VIRTUAL_STATION_AP_PROPERTIES","features":[305,458]},{"name":"DOT11EXT_VIRTUAL_STATION_APIS","features":[305,458]},{"name":"DOT11EXT_VIRTUAL_STATION_AP_PROPERTY","features":[305,458]},{"name":"DOT11_ACCESSNETWORKOPTIONS","features":[458]},{"name":"DOT11_AC_PARAM","features":[458]},{"name":"DOT11_ADAPTER","features":[458]},{"name":"DOT11_ADDITIONAL_IE","features":[319,458]},{"name":"DOT11_ADDITIONAL_IE_REVISION_1","features":[458]},{"name":"DOT11_ADHOC_AUTH_ALGORITHM","features":[458]},{"name":"DOT11_ADHOC_AUTH_ALGO_80211_OPEN","features":[458]},{"name":"DOT11_ADHOC_AUTH_ALGO_INVALID","features":[458]},{"name":"DOT11_ADHOC_AUTH_ALGO_RSNA_PSK","features":[458]},{"name":"DOT11_ADHOC_CIPHER_ALGORITHM","features":[458]},{"name":"DOT11_ADHOC_CIPHER_ALGO_CCMP","features":[458]},{"name":"DOT11_ADHOC_CIPHER_ALGO_INVALID","features":[458]},{"name":"DOT11_ADHOC_CIPHER_ALGO_NONE","features":[458]},{"name":"DOT11_ADHOC_CIPHER_ALGO_WEP","features":[458]},{"name":"DOT11_ADHOC_CONNECT_FAIL_DOMAIN_MISMATCH","features":[458]},{"name":"DOT11_ADHOC_CONNECT_FAIL_OTHER","features":[458]},{"name":"DOT11_ADHOC_CONNECT_FAIL_PASSPHRASE_MISMATCH","features":[458]},{"name":"DOT11_ADHOC_CONNECT_FAIL_REASON","features":[458]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS","features":[458]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTED","features":[458]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_CONNECTING","features":[458]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_DISCONNECTED","features":[458]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_FORMED","features":[458]},{"name":"DOT11_ADHOC_NETWORK_CONNECTION_STATUS_INVALID","features":[458]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS","features":[305,319,458]},{"name":"DOT11_ANQP_QUERY_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_ANQP_QUERY_RESULT","features":[458]},{"name":"DOT11_AP_JOIN_REQUEST","features":[458]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS","features":[305,319,458]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_ASSOCIATION_COMPLETION_PARAMETERS_REVISION_2","features":[458]},{"name":"DOT11_ASSOCIATION_INFO_EX","features":[458]},{"name":"DOT11_ASSOCIATION_INFO_LIST","features":[319,458]},{"name":"DOT11_ASSOCIATION_INFO_LIST_REVISION_1","features":[458]},{"name":"DOT11_ASSOCIATION_PARAMS","features":[319,458]},{"name":"DOT11_ASSOCIATION_PARAMS_REVISION_1","features":[458]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS","features":[319,458]},{"name":"DOT11_ASSOCIATION_START_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_ASSOCIATION_STATE","features":[458]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OS","features":[458]},{"name":"DOT11_ASSOC_ERROR_SOURCE_OTHER","features":[458]},{"name":"DOT11_ASSOC_ERROR_SOURCE_REMOTE","features":[458]},{"name":"DOT11_ASSOC_STATUS_SUCCESS","features":[458]},{"name":"DOT11_AUTH_ALGORITHM","features":[458]},{"name":"DOT11_AUTH_ALGORITHM_LIST","features":[319,458]},{"name":"DOT11_AUTH_ALGORITHM_LIST_REVISION_1","features":[458]},{"name":"DOT11_AUTH_ALGO_80211_OPEN","features":[458]},{"name":"DOT11_AUTH_ALGO_80211_SHARED_KEY","features":[458]},{"name":"DOT11_AUTH_ALGO_IHV_END","features":[458]},{"name":"DOT11_AUTH_ALGO_IHV_START","features":[458]},{"name":"DOT11_AUTH_ALGO_MICHAEL","features":[458]},{"name":"DOT11_AUTH_ALGO_OWE","features":[458]},{"name":"DOT11_AUTH_ALGO_RSNA","features":[458]},{"name":"DOT11_AUTH_ALGO_RSNA_PSK","features":[458]},{"name":"DOT11_AUTH_ALGO_WPA","features":[458]},{"name":"DOT11_AUTH_ALGO_WPA3","features":[458]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT","features":[458]},{"name":"DOT11_AUTH_ALGO_WPA3_ENT_192","features":[458]},{"name":"DOT11_AUTH_ALGO_WPA3_SAE","features":[458]},{"name":"DOT11_AUTH_ALGO_WPA_NONE","features":[458]},{"name":"DOT11_AUTH_ALGO_WPA_PSK","features":[458]},{"name":"DOT11_AUTH_CIPHER_PAIR","features":[458]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST","features":[319,458]},{"name":"DOT11_AUTH_CIPHER_PAIR_LIST_REVISION_1","features":[458]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST","features":[319,458]},{"name":"DOT11_AVAILABLE_CHANNEL_LIST_REVISION_1","features":[458]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST","features":[319,458]},{"name":"DOT11_AVAILABLE_FREQUENCY_LIST_REVISION_1","features":[458]},{"name":"DOT11_BAND","features":[458]},{"name":"DOT11_BSSID_CANDIDATE","features":[458]},{"name":"DOT11_BSSID_LIST","features":[319,458]},{"name":"DOT11_BSSID_LIST_REVISION_1","features":[458]},{"name":"DOT11_BSS_DESCRIPTION","features":[458]},{"name":"DOT11_BSS_ENTRY","features":[305,458]},{"name":"DOT11_BSS_ENTRY_BYTE_ARRAY_REVISION_1","features":[458]},{"name":"DOT11_BSS_ENTRY_PHY_SPECIFIC_INFO","features":[458]},{"name":"DOT11_BSS_LIST","features":[458]},{"name":"DOT11_BSS_TYPE","features":[458]},{"name":"DOT11_BYTE_ARRAY","features":[319,458]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS","features":[319,458]},{"name":"DOT11_CAN_SUSTAIN_AP_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_END","features":[458]},{"name":"DOT11_CAN_SUSTAIN_AP_REASON_IHV_START","features":[458]},{"name":"DOT11_CAPABILITY_CHANNEL_AGILITY","features":[458]},{"name":"DOT11_CAPABILITY_DSSSOFDM","features":[458]},{"name":"DOT11_CAPABILITY_INFO_CF_POLLABLE","features":[458]},{"name":"DOT11_CAPABILITY_INFO_CF_POLL_REQ","features":[458]},{"name":"DOT11_CAPABILITY_INFO_ESS","features":[458]},{"name":"DOT11_CAPABILITY_INFO_IBSS","features":[458]},{"name":"DOT11_CAPABILITY_INFO_PRIVACY","features":[458]},{"name":"DOT11_CAPABILITY_PBCC","features":[458]},{"name":"DOT11_CAPABILITY_SHORT_PREAMBLE","features":[458]},{"name":"DOT11_CAPABILITY_SHORT_SLOT_TIME","features":[458]},{"name":"DOT11_CCA_MODE_CS_ONLY","features":[458]},{"name":"DOT11_CCA_MODE_CS_WITH_TIMER","features":[458]},{"name":"DOT11_CCA_MODE_ED_ONLY","features":[458]},{"name":"DOT11_CCA_MODE_ED_and_CS","features":[458]},{"name":"DOT11_CCA_MODE_HRCS_AND_ED","features":[458]},{"name":"DOT11_CHANNEL_HINT","features":[458]},{"name":"DOT11_CIPHER_ALGORITHM","features":[458]},{"name":"DOT11_CIPHER_ALGORITHM_LIST","features":[319,458]},{"name":"DOT11_CIPHER_ALGORITHM_LIST_REVISION_1","features":[458]},{"name":"DOT11_CIPHER_ALGO_BIP","features":[458]},{"name":"DOT11_CIPHER_ALGO_BIP_CMAC_256","features":[458]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_128","features":[458]},{"name":"DOT11_CIPHER_ALGO_BIP_GMAC_256","features":[458]},{"name":"DOT11_CIPHER_ALGO_CCMP","features":[458]},{"name":"DOT11_CIPHER_ALGO_CCMP_256","features":[458]},{"name":"DOT11_CIPHER_ALGO_GCMP","features":[458]},{"name":"DOT11_CIPHER_ALGO_GCMP_256","features":[458]},{"name":"DOT11_CIPHER_ALGO_IHV_END","features":[458]},{"name":"DOT11_CIPHER_ALGO_IHV_START","features":[458]},{"name":"DOT11_CIPHER_ALGO_NONE","features":[458]},{"name":"DOT11_CIPHER_ALGO_RSN_USE_GROUP","features":[458]},{"name":"DOT11_CIPHER_ALGO_TKIP","features":[458]},{"name":"DOT11_CIPHER_ALGO_WEP","features":[458]},{"name":"DOT11_CIPHER_ALGO_WEP104","features":[458]},{"name":"DOT11_CIPHER_ALGO_WEP40","features":[458]},{"name":"DOT11_CIPHER_ALGO_WPA_USE_GROUP","features":[458]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE","features":[305,319,458]},{"name":"DOT11_CIPHER_DEFAULT_KEY_VALUE_REVISION_1","features":[458]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE","features":[305,458]},{"name":"DOT11_CIPHER_KEY_MAPPING_KEY_VALUE_BYTE_ARRAY_REVISION_1","features":[458]},{"name":"DOT11_CONF_ALGO_TKIP","features":[458]},{"name":"DOT11_CONF_ALGO_WEP_RC4","features":[458]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS","features":[319,458]},{"name":"DOT11_CONNECTION_COMPLETION_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_CONNECTION_START_PARAMETERS","features":[319,458]},{"name":"DOT11_CONNECTION_START_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_CONNECTION_STATUS_SUCCESS","features":[458]},{"name":"DOT11_COUNTERS_ENTRY","features":[458]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST","features":[319,458]},{"name":"DOT11_COUNTRY_OR_REGION_STRING_LIST_REVISION_1","features":[458]},{"name":"DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[458]},{"name":"DOT11_CURRENT_OPERATION_MODE","features":[458]},{"name":"DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[305,458]},{"name":"DOT11_DATA_RATE_MAPPING_ENTRY","features":[458]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE","features":[319,458]},{"name":"DOT11_DATA_RATE_MAPPING_TABLE_REVISION_1","features":[458]},{"name":"DOT11_DEFAULT_WEP_OFFLOAD","features":[305,458]},{"name":"DOT11_DEFAULT_WEP_UPLOAD","features":[305,458]},{"name":"DOT11_DEVICE_ENTRY_BYTE_ARRAY_REVISION_1","features":[458]},{"name":"DOT11_DIRECTION","features":[458]},{"name":"DOT11_DIR_BOTH","features":[458]},{"name":"DOT11_DIR_INBOUND","features":[458]},{"name":"DOT11_DIR_OUTBOUND","features":[458]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST","features":[319,458]},{"name":"DOT11_DISASSOCIATE_PEER_REQUEST_REVISION_1","features":[458]},{"name":"DOT11_DISASSOCIATION_PARAMETERS","features":[319,458]},{"name":"DOT11_DISASSOCIATION_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_DIVERSITY_SELECTION_RX","features":[305,458]},{"name":"DOT11_DIVERSITY_SELECTION_RX_LIST","features":[305,458]},{"name":"DOT11_DIVERSITY_SUPPORT","features":[458]},{"name":"DOT11_DS_CHANGED","features":[458]},{"name":"DOT11_DS_INFO","features":[458]},{"name":"DOT11_DS_UNCHANGED","features":[458]},{"name":"DOT11_DS_UNKNOWN","features":[458]},{"name":"DOT11_EAP_RESULT","features":[458,459]},{"name":"DOT11_ENCAP_802_1H","features":[458]},{"name":"DOT11_ENCAP_ENTRY","features":[458]},{"name":"DOT11_ENCAP_RFC_1042","features":[458]},{"name":"DOT11_ERP_PHY_ATTRIBUTES","features":[305,458]},{"name":"DOT11_EXEMPT_ALWAYS","features":[458]},{"name":"DOT11_EXEMPT_BOTH","features":[458]},{"name":"DOT11_EXEMPT_MULTICAST","features":[458]},{"name":"DOT11_EXEMPT_NO_EXEMPTION","features":[458]},{"name":"DOT11_EXEMPT_ON_KEY_MAPPING_KEY_UNAVAILABLE","features":[458]},{"name":"DOT11_EXEMPT_UNICAST","features":[458]},{"name":"DOT11_EXTAP_ATTRIBUTES","features":[305,319,458]},{"name":"DOT11_EXTAP_ATTRIBUTES_REVISION_1","features":[458]},{"name":"DOT11_EXTAP_RECV_CONTEXT_REVISION_1","features":[458]},{"name":"DOT11_EXTAP_SEND_CONTEXT_REVISION_1","features":[458]},{"name":"DOT11_EXTSTA_ATTRIBUTES","features":[305,319,458]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_1","features":[458]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_2","features":[458]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_3","features":[458]},{"name":"DOT11_EXTSTA_ATTRIBUTES_REVISION_4","features":[458]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_CERTIFIED","features":[458]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_OID_SUPPORTED","features":[458]},{"name":"DOT11_EXTSTA_ATTRIBUTES_SAFEMODE_RESERVED","features":[458]},{"name":"DOT11_EXTSTA_CAPABILITY","features":[319,458]},{"name":"DOT11_EXTSTA_CAPABILITY_REVISION_1","features":[458]},{"name":"DOT11_EXTSTA_RECV_CONTEXT","features":[319,458]},{"name":"DOT11_EXTSTA_RECV_CONTEXT_REVISION_1","features":[458]},{"name":"DOT11_EXTSTA_SEND_CONTEXT","features":[319,458]},{"name":"DOT11_EXTSTA_SEND_CONTEXT_REVISION_1","features":[458]},{"name":"DOT11_FLAGS_80211B_CHANNEL_AGILITY","features":[458]},{"name":"DOT11_FLAGS_80211B_PBCC","features":[458]},{"name":"DOT11_FLAGS_80211B_SHORT_PREAMBLE","features":[458]},{"name":"DOT11_FLAGS_80211G_BARKER_PREAMBLE_MODE","features":[458]},{"name":"DOT11_FLAGS_80211G_DSSS_OFDM","features":[458]},{"name":"DOT11_FLAGS_80211G_NON_ERP_PRESENT","features":[458]},{"name":"DOT11_FLAGS_80211G_USE_PROTECTION","features":[458]},{"name":"DOT11_FLAGS_PS_ON","features":[458]},{"name":"DOT11_FRAGMENT_DESCRIPTOR","features":[458]},{"name":"DOT11_FREQUENCY_BANDS_LOWER","features":[458]},{"name":"DOT11_FREQUENCY_BANDS_MIDDLE","features":[458]},{"name":"DOT11_FREQUENCY_BANDS_UPPER","features":[458]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_GO_NEGOTIATION_CONFIRMATION_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_GO_NEGOTIATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_GO_NEGOTIATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_HESSID_LENGTH","features":[458]},{"name":"DOT11_HOPPING_PATTERN_ENTRY","features":[458]},{"name":"DOT11_HOPPING_PATTERN_ENTRY_LIST","features":[458]},{"name":"DOT11_HOP_ALGO_ADOPTED","features":[458]},{"name":"DOT11_HRDSSS_PHY_ATTRIBUTES","features":[305,458]},{"name":"DOT11_HR_CCA_MODE_CS_AND_ED","features":[458]},{"name":"DOT11_HR_CCA_MODE_CS_ONLY","features":[458]},{"name":"DOT11_HR_CCA_MODE_CS_WITH_TIMER","features":[458]},{"name":"DOT11_HR_CCA_MODE_ED_ONLY","features":[458]},{"name":"DOT11_HR_CCA_MODE_HRCS_AND_ED","features":[458]},{"name":"DOT11_HW_DEFRAGMENTATION_SUPPORTED","features":[458]},{"name":"DOT11_HW_FRAGMENTATION_SUPPORTED","features":[458]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_RX","features":[458]},{"name":"DOT11_HW_MSDU_AUTH_SUPPORTED_TX","features":[458]},{"name":"DOT11_HW_WEP_SUPPORTED_RX","features":[458]},{"name":"DOT11_HW_WEP_SUPPORTED_TX","features":[458]},{"name":"DOT11_IBSS_PARAMS","features":[305,319,458]},{"name":"DOT11_IBSS_PARAMS_REVISION_1","features":[458]},{"name":"DOT11_IHV_VERSION_INFO","features":[458]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS","features":[305,319,458]},{"name":"DOT11_INCOMING_ASSOC_COMPLETION_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_INCOMING_ASSOC_DECISION","features":[305,319,458]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_1","features":[458]},{"name":"DOT11_INCOMING_ASSOC_DECISION_REVISION_2","features":[458]},{"name":"DOT11_INCOMING_ASSOC_DECISION_V2","features":[305,319,458]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS","features":[305,319,458]},{"name":"DOT11_INCOMING_ASSOC_REQUEST_RECEIVED_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS","features":[319,458]},{"name":"DOT11_INCOMING_ASSOC_STARTED_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_INVALID_CHANNEL_NUMBER","features":[458]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_INVITATION_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_INVITATION_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_IV48_COUNTER","features":[458]},{"name":"DOT11_JOIN_REQUEST","features":[458]},{"name":"DOT11_KEY_ALGO_BIP","features":[458]},{"name":"DOT11_KEY_ALGO_BIP_GMAC_256","features":[458]},{"name":"DOT11_KEY_ALGO_CCMP","features":[458]},{"name":"DOT11_KEY_ALGO_GCMP","features":[458]},{"name":"DOT11_KEY_ALGO_GCMP_256","features":[458]},{"name":"DOT11_KEY_ALGO_TKIP_MIC","features":[458]},{"name":"DOT11_KEY_DIRECTION","features":[458]},{"name":"DOT11_LINK_QUALITY_ENTRY","features":[458]},{"name":"DOT11_LINK_QUALITY_PARAMETERS","features":[319,458]},{"name":"DOT11_LINK_QUALITY_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_MAC_ADDRESS_LIST","features":[319,458]},{"name":"DOT11_MAC_ADDRESS_LIST_REVISION_1","features":[458]},{"name":"DOT11_MAC_FRAME_STATISTICS","features":[458]},{"name":"DOT11_MAC_INFO","features":[458]},{"name":"DOT11_MAC_PARAMETERS","features":[319,458]},{"name":"DOT11_MAC_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_MANUFACTURING_CALLBACK_PARAMETERS","features":[319,458]},{"name":"DOT11_MANUFACTURING_CALLBACK_REVISION_1","features":[458]},{"name":"DOT11_MANUFACTURING_CALLBACK_TYPE","features":[458]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_QUERY_ADC","features":[458]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_RX","features":[305,458]},{"name":"DOT11_MANUFACTURING_FUNCTIONAL_TEST_TX","features":[305,458]},{"name":"DOT11_MANUFACTURING_SELF_TEST_QUERY_RESULTS","features":[305,458]},{"name":"DOT11_MANUFACTURING_SELF_TEST_SET_PARAMS","features":[458]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE","features":[458]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_BT_COEXISTENCE","features":[458]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_INTERFACE","features":[458]},{"name":"DOT11_MANUFACTURING_SELF_TEST_TYPE_RF_INTERFACE","features":[458]},{"name":"DOT11_MANUFACTURING_TEST","features":[458]},{"name":"DOT11_MANUFACTURING_TEST_QUERY_DATA","features":[458]},{"name":"DOT11_MANUFACTURING_TEST_REVISION_1","features":[458]},{"name":"DOT11_MANUFACTURING_TEST_SET_DATA","features":[458]},{"name":"DOT11_MANUFACTURING_TEST_SLEEP","features":[458]},{"name":"DOT11_MANUFACTURING_TEST_TYPE","features":[458]},{"name":"DOT11_MAX_CHANNEL_HINTS","features":[458]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY","features":[458]},{"name":"DOT11_MAX_NUM_DEFAULT_KEY_MFP","features":[458]},{"name":"DOT11_MAX_NUM_OF_FRAGMENTS","features":[458]},{"name":"DOT11_MAX_PDU_SIZE","features":[458]},{"name":"DOT11_MAX_REQUESTED_SERVICE_INFORMATION_LENGTH","features":[458]},{"name":"DOT11_MD_CAPABILITY_ENTRY_LIST","features":[458]},{"name":"DOT11_MIN_PDU_SIZE","features":[458]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION","features":[319,458]},{"name":"DOT11_MPDU_MAX_LENGTH_INDICATION_REVISION_1","features":[458]},{"name":"DOT11_MSONEX_FAILURE","features":[458]},{"name":"DOT11_MSONEX_IN_PROGRESS","features":[458]},{"name":"DOT11_MSONEX_RESULT","features":[458]},{"name":"DOT11_MSONEX_RESULT_PARAMS","features":[458,459]},{"name":"DOT11_MSONEX_SUCCESS","features":[458]},{"name":"DOT11_MSSECURITY_SETTINGS","features":[305,458,459]},{"name":"DOT11_MULTI_DOMAIN_CAPABILITY_ENTRY","features":[458]},{"name":"DOT11_NETWORK","features":[458]},{"name":"DOT11_NETWORK_LIST","features":[458]},{"name":"DOT11_NIC_SPECIFIC_EXTENSION","features":[458]},{"name":"DOT11_NLO_FLAG_SCAN_AT_SYSTEM_RESUME","features":[458]},{"name":"DOT11_NLO_FLAG_SCAN_ON_AOAC_PLATFORM","features":[458]},{"name":"DOT11_NLO_FLAG_STOP_NLO_INDICATION","features":[458]},{"name":"DOT11_OFDM_PHY_ATTRIBUTES","features":[458]},{"name":"DOT11_OFFLOAD_CAPABILITY","features":[458]},{"name":"DOT11_OFFLOAD_NETWORK","features":[458]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_INFO","features":[319,458]},{"name":"DOT11_OFFLOAD_NETWORK_LIST_REVISION_1","features":[458]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS","features":[319,458]},{"name":"DOT11_OFFLOAD_NETWORK_STATUS_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_OFFLOAD_TYPE","features":[458]},{"name":"DOT11_OI","features":[458]},{"name":"DOT11_OI_MAX_LENGTH","features":[458]},{"name":"DOT11_OI_MIN_LENGTH","features":[458]},{"name":"DOT11_OPERATION_MODE_AP","features":[458]},{"name":"DOT11_OPERATION_MODE_CAPABILITY","features":[458]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_AP","features":[458]},{"name":"DOT11_OPERATION_MODE_EXTENSIBLE_STATION","features":[458]},{"name":"DOT11_OPERATION_MODE_MANUFACTURING","features":[458]},{"name":"DOT11_OPERATION_MODE_NETWORK_MONITOR","features":[458]},{"name":"DOT11_OPERATION_MODE_STATION","features":[458]},{"name":"DOT11_OPERATION_MODE_UNKNOWN","features":[458]},{"name":"DOT11_OPERATION_MODE_WFD_CLIENT","features":[458]},{"name":"DOT11_OPERATION_MODE_WFD_DEVICE","features":[458]},{"name":"DOT11_OPERATION_MODE_WFD_GROUP_OWNER","features":[458]},{"name":"DOT11_OPTIONAL_CAPABILITY","features":[305,458]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_CTRL","features":[458]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_DATA","features":[458]},{"name":"DOT11_PACKET_TYPE_ALL_MULTICAST_MGMT","features":[458]},{"name":"DOT11_PACKET_TYPE_BROADCAST_CTRL","features":[458]},{"name":"DOT11_PACKET_TYPE_BROADCAST_DATA","features":[458]},{"name":"DOT11_PACKET_TYPE_BROADCAST_MGMT","features":[458]},{"name":"DOT11_PACKET_TYPE_DIRECTED_CTRL","features":[458]},{"name":"DOT11_PACKET_TYPE_DIRECTED_DATA","features":[458]},{"name":"DOT11_PACKET_TYPE_DIRECTED_MGMT","features":[458]},{"name":"DOT11_PACKET_TYPE_MULTICAST_CTRL","features":[458]},{"name":"DOT11_PACKET_TYPE_MULTICAST_DATA","features":[458]},{"name":"DOT11_PACKET_TYPE_MULTICAST_MGMT","features":[458]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_CTRL","features":[458]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_DATA","features":[458]},{"name":"DOT11_PACKET_TYPE_PROMISCUOUS_MGMT","features":[458]},{"name":"DOT11_PEER_INFO","features":[305,458]},{"name":"DOT11_PEER_INFO_LIST","features":[305,319,458]},{"name":"DOT11_PEER_INFO_LIST_REVISION_1","features":[458]},{"name":"DOT11_PEER_STATISTICS","features":[458]},{"name":"DOT11_PER_MSDU_COUNTERS","features":[458]},{"name":"DOT11_PHY_ATTRIBUTES","features":[305,319,458]},{"name":"DOT11_PHY_ATTRIBUTES_REVISION_1","features":[458]},{"name":"DOT11_PHY_FRAME_STATISTICS","features":[458]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS","features":[319,458]},{"name":"DOT11_PHY_FREQUENCY_ADOPTED_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_PHY_ID_LIST","features":[319,458]},{"name":"DOT11_PHY_ID_LIST_REVISION_1","features":[458]},{"name":"DOT11_PHY_STATE_PARAMETERS","features":[305,319,458]},{"name":"DOT11_PHY_STATE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_PHY_TYPE","features":[458]},{"name":"DOT11_PHY_TYPE_INFO","features":[305,458]},{"name":"DOT11_PHY_TYPE_LIST","features":[319,458]},{"name":"DOT11_PHY_TYPE_LIST_REVISION_1","features":[458]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS","features":[319,458]},{"name":"DOT11_PMKID_CANDIDATE_LIST_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_PMKID_ENTRY","features":[458]},{"name":"DOT11_PMKID_LIST","features":[319,458]},{"name":"DOT11_PMKID_LIST_REVISION_1","features":[458]},{"name":"DOT11_PORT_STATE","features":[305,458]},{"name":"DOT11_PORT_STATE_NOTIFICATION","features":[305,319,458]},{"name":"DOT11_PORT_STATE_NOTIFICATION_REVISION_1","features":[458]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_INFO","features":[305,319,458]},{"name":"DOT11_POWER_MGMT_AUTO_MODE_ENABLED_REVISION_1","features":[458]},{"name":"DOT11_POWER_MGMT_MODE","features":[305,458]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO","features":[319,458]},{"name":"DOT11_POWER_MGMT_MODE_STATUS_INFO_REVISION_1","features":[458]},{"name":"DOT11_POWER_MODE","features":[458]},{"name":"DOT11_POWER_MODE_REASON","features":[458]},{"name":"DOT11_POWER_SAVE_LEVEL_FAST_PSP","features":[458]},{"name":"DOT11_POWER_SAVE_LEVEL_MAX_PSP","features":[458]},{"name":"DOT11_POWER_SAVING_FAST_PSP","features":[458]},{"name":"DOT11_POWER_SAVING_MAXIMUM_LEVEL","features":[458]},{"name":"DOT11_POWER_SAVING_MAX_PSP","features":[458]},{"name":"DOT11_POWER_SAVING_NO_POWER_SAVING","features":[458]},{"name":"DOT11_PRIORITY_CONTENTION","features":[458]},{"name":"DOT11_PRIORITY_CONTENTION_FREE","features":[458]},{"name":"DOT11_PRIVACY_EXEMPTION","features":[458]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST","features":[319,458]},{"name":"DOT11_PRIVACY_EXEMPTION_LIST_REVISION_1","features":[458]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_PROVISION_DISCOVERY_REQUEST_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_PROVISION_DISCOVERY_RESPONSE_SEND_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_PSD_IE_MAX_DATA_SIZE","features":[458]},{"name":"DOT11_PSD_IE_MAX_ENTRY_NUMBER","features":[458]},{"name":"DOT11_QOS_PARAMS","features":[319,458]},{"name":"DOT11_QOS_PARAMS_REVISION_1","features":[458]},{"name":"DOT11_QOS_TX_DURATION","features":[458]},{"name":"DOT11_QOS_TX_MEDIUM_TIME","features":[458]},{"name":"DOT11_RADIO_STATE","features":[458]},{"name":"DOT11_RATE_SET","features":[458]},{"name":"DOT11_RATE_SET_MAX_LENGTH","features":[458]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[319,458]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[319,458]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[319,458]},{"name":"DOT11_RECEIVED_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS","features":[319,458]},{"name":"DOT11_RECEIVED_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS","features":[319,458]},{"name":"DOT11_RECEIVED_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[319,458]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[319,458]},{"name":"DOT11_RECEIVED_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RECV_CONTEXT_REVISION_1","features":[458]},{"name":"DOT11_RECV_EXTENSION_INFO","features":[305,458]},{"name":"DOT11_RECV_EXTENSION_INFO_V2","features":[305,458]},{"name":"DOT11_RECV_SENSITIVITY","features":[458]},{"name":"DOT11_RECV_SENSITIVITY_LIST","features":[458]},{"name":"DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[458]},{"name":"DOT11_REG_DOMAIN_DOC","features":[458]},{"name":"DOT11_REG_DOMAIN_ETSI","features":[458]},{"name":"DOT11_REG_DOMAIN_FCC","features":[458]},{"name":"DOT11_REG_DOMAIN_FRANCE","features":[458]},{"name":"DOT11_REG_DOMAIN_MKK","features":[458]},{"name":"DOT11_REG_DOMAIN_OTHER","features":[458]},{"name":"DOT11_REG_DOMAIN_SPAIN","features":[458]},{"name":"DOT11_REG_DOMAIN_VALUE","features":[458]},{"name":"DOT11_RESET_REQUEST","features":[305,458]},{"name":"DOT11_RESET_TYPE","features":[458]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS","features":[319,458]},{"name":"DOT11_ROAMING_COMPLETION_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_ROAMING_START_PARAMETERS","features":[319,458]},{"name":"DOT11_ROAMING_START_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_RSSI_RANGE","features":[458]},{"name":"DOT11_SCAN_REQUEST","features":[305,458]},{"name":"DOT11_SCAN_REQUEST_V2","features":[305,458]},{"name":"DOT11_SCAN_TYPE","features":[458]},{"name":"DOT11_SECURITY_PACKET_HEADER","features":[458]},{"name":"DOT11_SEND_CONTEXT_REVISION_1","features":[458]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS","features":[305,319,458]},{"name":"DOT11_SEND_GO_NEGOTIATION_CONFIRMATION_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS","features":[319,458]},{"name":"DOT11_SEND_GO_NEGOTIATION_REQUEST_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS","features":[305,319,458]},{"name":"DOT11_SEND_GO_NEGOTIATION_RESPONSE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS","features":[305,319,458]},{"name":"DOT11_SEND_INVITATION_REQUEST_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS","features":[305,319,458]},{"name":"DOT11_SEND_INVITATION_RESPONSE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS","features":[305,319,458]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_REQUEST_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS","features":[319,458]},{"name":"DOT11_SEND_PROVISION_DISCOVERY_RESPONSE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_SERVICE_CLASS_REORDERABLE_MULTICAST","features":[458]},{"name":"DOT11_SERVICE_CLASS_STRICTLY_ORDERED","features":[458]},{"name":"DOT11_SSID","features":[458]},{"name":"DOT11_SSID_LIST","features":[319,458]},{"name":"DOT11_SSID_LIST_REVISION_1","features":[458]},{"name":"DOT11_SSID_MAX_LENGTH","features":[458]},{"name":"DOT11_START_REQUEST","features":[458]},{"name":"DOT11_STATISTICS","features":[319,458]},{"name":"DOT11_STATISTICS_REVISION_1","features":[458]},{"name":"DOT11_STATUS_AP_JOIN_CONFIRM","features":[458]},{"name":"DOT11_STATUS_AUTH_FAILED","features":[458]},{"name":"DOT11_STATUS_AUTH_NOT_VERIFIED","features":[458]},{"name":"DOT11_STATUS_AUTH_VERIFIED","features":[458]},{"name":"DOT11_STATUS_ENCRYPTION_FAILED","features":[458]},{"name":"DOT11_STATUS_EXCESSIVE_DATA_LENGTH","features":[458]},{"name":"DOT11_STATUS_GENERATE_AUTH_FAILED","features":[458]},{"name":"DOT11_STATUS_ICV_VERIFIED","features":[458]},{"name":"DOT11_STATUS_INDICATION","features":[458]},{"name":"DOT11_STATUS_JOIN_CONFIRM","features":[458]},{"name":"DOT11_STATUS_MPDU_MAX_LENGTH_CHANGED","features":[458]},{"name":"DOT11_STATUS_PACKET_NOT_REASSEMBLED","features":[458]},{"name":"DOT11_STATUS_PACKET_REASSEMBLED","features":[458]},{"name":"DOT11_STATUS_PS_LIFETIME_EXPIRED","features":[458]},{"name":"DOT11_STATUS_RESET_CONFIRM","features":[458]},{"name":"DOT11_STATUS_RETRY_LIMIT_EXCEEDED","features":[458]},{"name":"DOT11_STATUS_SCAN_CONFIRM","features":[458]},{"name":"DOT11_STATUS_START_CONFIRM","features":[458]},{"name":"DOT11_STATUS_SUCCESS","features":[458]},{"name":"DOT11_STATUS_UNAVAILABLE_BSS","features":[458]},{"name":"DOT11_STATUS_UNAVAILABLE_PRIORITY","features":[458]},{"name":"DOT11_STATUS_UNAVAILABLE_SERVICE_CLASS","features":[458]},{"name":"DOT11_STATUS_UNSUPPORTED_PRIORITY","features":[458]},{"name":"DOT11_STATUS_UNSUPPORTED_SERVICE_CLASS","features":[458]},{"name":"DOT11_STATUS_WEP_KEY_UNAVAILABLE","features":[458]},{"name":"DOT11_STATUS_XMIT_MSDU_TIMER_EXPIRED","features":[458]},{"name":"DOT11_STOP_AP_PARAMETERS","features":[319,458]},{"name":"DOT11_STOP_AP_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_STOP_AP_REASON_AP_ACTIVE","features":[458]},{"name":"DOT11_STOP_AP_REASON_CHANNEL_NOT_AVAILABLE","features":[458]},{"name":"DOT11_STOP_AP_REASON_FREQUENCY_NOT_AVAILABLE","features":[458]},{"name":"DOT11_STOP_AP_REASON_IHV_END","features":[458]},{"name":"DOT11_STOP_AP_REASON_IHV_START","features":[458]},{"name":"DOT11_SUPPORTED_ANTENNA","features":[305,458]},{"name":"DOT11_SUPPORTED_ANTENNA_LIST","features":[305,458]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE","features":[458]},{"name":"DOT11_SUPPORTED_DATA_RATES_VALUE_V2","features":[458]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL","features":[458]},{"name":"DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[458]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY","features":[458]},{"name":"DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[458]},{"name":"DOT11_SUPPORTED_PHY_TYPES","features":[458]},{"name":"DOT11_SUPPORTED_POWER_LEVELS","features":[458]},{"name":"DOT11_TEMP_TYPE","features":[458]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS","features":[305,319,458]},{"name":"DOT11_TKIPMIC_FAILURE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_UPDATE_IE","features":[458]},{"name":"DOT11_UPDATE_IE_OP","features":[458]},{"name":"DOT11_VENUEINFO","features":[458]},{"name":"DOT11_VWIFI_ATTRIBUTES","features":[319,458]},{"name":"DOT11_VWIFI_ATTRIBUTES_REVISION_1","features":[458]},{"name":"DOT11_VWIFI_COMBINATION","features":[319,458]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_1","features":[458]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_2","features":[458]},{"name":"DOT11_VWIFI_COMBINATION_REVISION_3","features":[458]},{"name":"DOT11_VWIFI_COMBINATION_V2","features":[319,458]},{"name":"DOT11_VWIFI_COMBINATION_V3","features":[319,458]},{"name":"DOT11_WEP_OFFLOAD","features":[305,458]},{"name":"DOT11_WEP_UPLOAD","features":[305,458]},{"name":"DOT11_WFD_ADDITIONAL_IE","features":[319,458]},{"name":"DOT11_WFD_ADDITIONAL_IE_REVISION_1","features":[458]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_DESCRIPTOR","features":[458]},{"name":"DOT11_WFD_ADVERTISED_SERVICE_LIST","features":[458]},{"name":"DOT11_WFD_ADVERTISEMENT_ID","features":[458]},{"name":"DOT11_WFD_APS2_SERVICE_TYPE_MAX_LENGTH","features":[458]},{"name":"DOT11_WFD_ASP2_INSTANCE_NAME_MAX_LENGTH","features":[458]},{"name":"DOT11_WFD_ATTRIBUTES","features":[305,319,458]},{"name":"DOT11_WFD_ATTRIBUTES_REVISION_1","features":[458]},{"name":"DOT11_WFD_CHANNEL","features":[458]},{"name":"DOT11_WFD_CONFIGURATION_TIMEOUT","features":[458]},{"name":"DOT11_WFD_DEVICE_AUTO_AVAILABILITY","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONCURRENT_OPERATION","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG","features":[305,319,458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_CONFIG_REVISION_1","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_CLIENT_DISCOVERABILITY","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_DEVICE_LIMIT","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INFRASTRUCTURE_MANAGED","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_P2P_INVITATION_PROCEDURE","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_6","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_RESERVED_7","features":[458]},{"name":"DOT11_WFD_DEVICE_CAPABILITY_SERVICE_DISCOVERY","features":[458]},{"name":"DOT11_WFD_DEVICE_ENTRY","features":[458]},{"name":"DOT11_WFD_DEVICE_HIGH_AVAILABILITY","features":[458]},{"name":"DOT11_WFD_DEVICE_INFO","features":[319,458]},{"name":"DOT11_WFD_DEVICE_INFO_REVISION_1","features":[458]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL","features":[319,458]},{"name":"DOT11_WFD_DEVICE_LISTEN_CHANNEL_REVISION_1","features":[458]},{"name":"DOT11_WFD_DEVICE_NOT_DISCOVERABLE","features":[458]},{"name":"DOT11_WFD_DEVICE_TYPE","features":[458]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_MAX_LIST_SIZE","features":[458]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS","features":[319,458]},{"name":"DOT11_WFD_DISCOVER_COMPLETE_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_WFD_DISCOVER_DEVICE_FILTER","features":[458]},{"name":"DOT11_WFD_DISCOVER_REQUEST","features":[305,319,458]},{"name":"DOT11_WFD_DISCOVER_REQUEST_REVISION_1","features":[458]},{"name":"DOT11_WFD_DISCOVER_TYPE","features":[458]},{"name":"DOT11_WFD_GO_INTENT","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_CROSS_CONNECTION_SUPPORTED","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_EAPOL_KEY_IP_ADDRESS_ALLOCATION_SUPPORTED","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_LIMIT_REACHED","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_GROUP_OWNER","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_INTRABSS_DISTRIBUTION_SUPPORTED","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_IN_GROUP_FORMATION","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_NONE","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_GROUP","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_PERSISTENT_RECONNECT_SUPPORTED","features":[458]},{"name":"DOT11_WFD_GROUP_CAPABILITY_RESERVED_7","features":[458]},{"name":"DOT11_WFD_GROUP_ID","features":[458]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS","features":[305,319,458]},{"name":"DOT11_WFD_GROUP_JOIN_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG","features":[305,319,458]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_1","features":[458]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_REVISION_2","features":[458]},{"name":"DOT11_WFD_GROUP_OWNER_CAPABILITY_CONFIG_V2","features":[305,319,458]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS","features":[319,458]},{"name":"DOT11_WFD_GROUP_START_PARAMETERS_REVISION_1","features":[458]},{"name":"DOT11_WFD_INVITATION_FLAGS","features":[458]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_FROM_WLAN_CROSS_CONNECTION_POLICY","features":[458]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_INFRASTRUCTURE_MANAGED_POLICY","features":[458]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_NOT_MANAGED_INFRASTRUCTURE_CAPABLE","features":[458]},{"name":"DOT11_WFD_MINOR_REASON_DISASSOCIATED_WFD_COEXISTENCE_POLICY","features":[458]},{"name":"DOT11_WFD_MINOR_REASON_SUCCESS","features":[458]},{"name":"DOT11_WFD_SCAN_TYPE","features":[458]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST","features":[319,458]},{"name":"DOT11_WFD_SECONDARY_DEVICE_TYPE_LIST_REVISION_1","features":[458]},{"name":"DOT11_WFD_SERVICE_HASH_LIST","features":[458]},{"name":"DOT11_WFD_SERVICE_INFORMATION_MAX_LENGTH","features":[458]},{"name":"DOT11_WFD_SERVICE_NAME_MAX_LENGTH","features":[458]},{"name":"DOT11_WFD_SESSION_ID","features":[458]},{"name":"DOT11_WFD_SESSION_INFO","features":[458]},{"name":"DOT11_WFD_SESSION_INFO_MAX_LENGTH","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PARAMETERS","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_INCOMPATIBLE_PROVISIONING_METHOD","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_INFORMATION_IS_UNAVAILABLE","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_INVALID_PARAMETERS","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_LIMIT_REACHED","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_MATCHING_MAX_INTENT","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_NO_COMMON_CHANNELS","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_PREVIOUS_PROTOCOL_ERROR","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_REJECTED_BY_USER","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_UNABLE_TO_ACCOMODATE_REQUEST","features":[458]},{"name":"DOT11_WFD_STATUS_FAILED_UNKNOWN_WFD_GROUP","features":[458]},{"name":"DOT11_WFD_STATUS_SUCCESS","features":[458]},{"name":"DOT11_WFD_STATUS_SUCCESS_ACCEPTED_BY_USER","features":[458]},{"name":"DOT11_WME_AC_PARAMETERS","features":[458]},{"name":"DOT11_WME_AC_PARAMETERS_LIST","features":[458]},{"name":"DOT11_WME_PACKET","features":[458]},{"name":"DOT11_WME_UPDATE_IE","features":[458]},{"name":"DOT11_WPA_TSC","features":[305,458]},{"name":"DOT11_WPS_CONFIG_METHOD","features":[458]},{"name":"DOT11_WPS_CONFIG_METHOD_DISPLAY","features":[458]},{"name":"DOT11_WPS_CONFIG_METHOD_KEYPAD","features":[458]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_INTERFACE","features":[458]},{"name":"DOT11_WPS_CONFIG_METHOD_NFC_TAG","features":[458]},{"name":"DOT11_WPS_CONFIG_METHOD_NULL","features":[458]},{"name":"DOT11_WPS_CONFIG_METHOD_PUSHBUTTON","features":[458]},{"name":"DOT11_WPS_CONFIG_METHOD_WFDS_DEFAULT","features":[458]},{"name":"DOT11_WPS_DEVICE_NAME","features":[458]},{"name":"DOT11_WPS_DEVICE_NAME_MAX_LENGTH","features":[458]},{"name":"DOT11_WPS_DEVICE_PASSWORD_ID","features":[458]},{"name":"DOT11_WPS_MAX_MODEL_NAME_LENGTH","features":[458]},{"name":"DOT11_WPS_MAX_MODEL_NUMBER_LENGTH","features":[458]},{"name":"DOT11_WPS_MAX_PASSKEY_LENGTH","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_DEFAULT","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_MACHINE_SPECIFIED","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_NFC_CONNECTION_HANDOVER","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MAX","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_OOB_RANGE_MIN","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_PUSHBUTTON","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_REGISTRAR_SPECIFIED","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_REKEY","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_USER_SPECIFIED","features":[458]},{"name":"DOT11_WPS_PASSWORD_ID_WFD_SERVICES","features":[458]},{"name":"DOT11_WPS_VERSION_1_0","features":[458]},{"name":"DOT11_WPS_VERSION_2_0","features":[458]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Enhanced","features":[458]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NoP2PSupported","features":[458]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_NotSupported","features":[458]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_SingleFunctionSupported","features":[458]},{"name":"DevProp_PciDevice_AcsCompatibleUpHierarchy_Supported","features":[458]},{"name":"DevProp_PciDevice_AcsSupport_Missing","features":[458]},{"name":"DevProp_PciDevice_AcsSupport_NotNeeded","features":[458]},{"name":"DevProp_PciDevice_AcsSupport_Present","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciConventional","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciExpressDownstreamSwitchPort","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciExpressEventCollector","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciExpressRootPort","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciExpressToPciXBridge","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciExpressTreatedAsPci","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciExpressUpstreamSwitchPort","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciX","features":[458]},{"name":"DevProp_PciDevice_BridgeType_PciXToExpressBridge","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_100Mhz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_133MHZ","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_66Mhz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_100Mhz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_133Mhz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode1_ECC_66Mhz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_100MHz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_133MHz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_266_66MHz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_100MHz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_133MHz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode2_533_66MHz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_PciX_Mode_Conventional_Pci","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_33MHz","features":[458]},{"name":"DevProp_PciDevice_CurrentSpeedAndMode_Pci_Conventional_66MHz","features":[458]},{"name":"DevProp_PciDevice_DeviceType_PciConventional","features":[458]},{"name":"DevProp_PciDevice_DeviceType_PciExpressEndpoint","features":[458]},{"name":"DevProp_PciDevice_DeviceType_PciExpressLegacyEndpoint","features":[458]},{"name":"DevProp_PciDevice_DeviceType_PciExpressRootComplexIntegratedEndpoint","features":[458]},{"name":"DevProp_PciDevice_DeviceType_PciExpressTreatedAsPci","features":[458]},{"name":"DevProp_PciDevice_DeviceType_PciX","features":[458]},{"name":"DevProp_PciDevice_InterruptType_LineBased","features":[458]},{"name":"DevProp_PciDevice_InterruptType_Msi","features":[458]},{"name":"DevProp_PciDevice_InterruptType_MsiX","features":[458]},{"name":"DevProp_PciDevice_SriovSupport_DidntGetVfBarSpace","features":[458]},{"name":"DevProp_PciDevice_SriovSupport_MissingAcs","features":[458]},{"name":"DevProp_PciDevice_SriovSupport_MissingPfDriver","features":[458]},{"name":"DevProp_PciDevice_SriovSupport_NoBusResource","features":[458]},{"name":"DevProp_PciDevice_SriovSupport_Ok","features":[458]},{"name":"DevProp_PciExpressDevice_LinkSpeed_Five_Gbps","features":[458]},{"name":"DevProp_PciExpressDevice_LinkSpeed_TwoAndHalf_Gbps","features":[458]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_1","features":[458]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_12","features":[458]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_16","features":[458]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_2","features":[458]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_32","features":[458]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_4","features":[458]},{"name":"DevProp_PciExpressDevice_LinkWidth_By_8","features":[458]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_1024Bytes","features":[458]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_128Bytes","features":[458]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_2048Bytes","features":[458]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_256Bytes","features":[458]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_4096Bytes","features":[458]},{"name":"DevProp_PciExpressDevice_PayloadOrRequestSize_512Bytes","features":[458]},{"name":"DevProp_PciExpressDevice_Spec_Version_10","features":[458]},{"name":"DevProp_PciExpressDevice_Spec_Version_11","features":[458]},{"name":"DevProp_PciRootBus_BusWidth_32Bits","features":[458]},{"name":"DevProp_PciRootBus_BusWidth_64Bits","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_33Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_Conventional_66Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_100Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_133Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_266_Mode2_66Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_100Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_133Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_533_Mode2_66Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_100Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_133Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_66Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_100Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_133Mhz","features":[458]},{"name":"DevProp_PciRootBus_CurrentSpeedAndMode_Pci_X_Mode1_ECC_66Mhz","features":[458]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciConventional","features":[458]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciExpress","features":[458]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode1","features":[458]},{"name":"DevProp_PciRootBus_SecondaryInterface_PciXMode2","features":[458]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_33Mhz","features":[458]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_Conventional_66Mhz","features":[458]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_133Mhz","features":[458]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_266Mhz","features":[458]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_533Mhz","features":[458]},{"name":"DevProp_PciRootBus_SupportedSpeedsAndModes_Pci_X_66Mhz","features":[458]},{"name":"Dot11AdHocManager","features":[458]},{"name":"GUID_AEPSERVICE_WIFIDIRECT_DEVICE","features":[458]},{"name":"GUID_DEVINTERFACE_ASP_INFRA_DEVICE","features":[458]},{"name":"GUID_DEVINTERFACE_WIFIDIRECT_DEVICE","features":[458]},{"name":"IDot11AdHocInterface","features":[458]},{"name":"IDot11AdHocInterfaceNotificationSink","features":[458]},{"name":"IDot11AdHocManager","features":[458]},{"name":"IDot11AdHocManagerNotificationSink","features":[458]},{"name":"IDot11AdHocNetwork","features":[458]},{"name":"IDot11AdHocNetworkNotificationSink","features":[458]},{"name":"IDot11AdHocSecuritySettings","features":[458]},{"name":"IEnumDot11AdHocInterfaces","features":[458]},{"name":"IEnumDot11AdHocNetworks","features":[458]},{"name":"IEnumDot11AdHocSecuritySettings","features":[458]},{"name":"IHV_INIT_FUNCTION_NAME","features":[458]},{"name":"IHV_INIT_VS_FUNCTION_NAME","features":[458]},{"name":"IHV_VERSION_FUNCTION_NAME","features":[458]},{"name":"IndicationTypeLinkQuality","features":[458]},{"name":"IndicationTypeNicSpecificNotification","features":[458]},{"name":"IndicationTypePhyStateChange","features":[458]},{"name":"IndicationTypePmkidCandidateList","features":[458]},{"name":"IndicationTypeTkipMicFailure","features":[458]},{"name":"L2_NOTIFICATION_CODE_GROUP_SIZE","features":[458]},{"name":"L2_NOTIFICATION_CODE_PUBLIC_BEGIN","features":[458]},{"name":"L2_NOTIFICATION_DATA","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_ALL","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_DOT3_AUTO_CONFIG","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_NONE","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_ONEX","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_SECURITY","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WCM","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WCM_CSP","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WFD","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_ACM","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_DEVICE_SERVICE","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_HNWK","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_IHV","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_MSM","features":[458]},{"name":"L2_NOTIFICATION_SOURCE_WLAN_SECURITY","features":[458]},{"name":"L2_PROFILE_MAX_NAME_LENGTH","features":[458]},{"name":"L2_REASON_CODE_DOT11_AC_BASE","features":[458]},{"name":"L2_REASON_CODE_DOT11_MSM_BASE","features":[458]},{"name":"L2_REASON_CODE_DOT11_SECURITY_BASE","features":[458]},{"name":"L2_REASON_CODE_DOT3_AC_BASE","features":[458]},{"name":"L2_REASON_CODE_DOT3_MSM_BASE","features":[458]},{"name":"L2_REASON_CODE_GEN_BASE","features":[458]},{"name":"L2_REASON_CODE_GROUP_SIZE","features":[458]},{"name":"L2_REASON_CODE_IHV_BASE","features":[458]},{"name":"L2_REASON_CODE_ONEX_BASE","features":[458]},{"name":"L2_REASON_CODE_PROFILE_BASE","features":[458]},{"name":"L2_REASON_CODE_PROFILE_MISSING","features":[458]},{"name":"L2_REASON_CODE_RESERVED_BASE","features":[458]},{"name":"L2_REASON_CODE_SUCCESS","features":[458]},{"name":"L2_REASON_CODE_UNKNOWN","features":[458]},{"name":"L2_REASON_CODE_WIMAX_BASE","features":[458]},{"name":"MAX_NUM_SUPPORTED_RATES","features":[458]},{"name":"MAX_NUM_SUPPORTED_RATES_V2","features":[458]},{"name":"MS_MAX_PROFILE_NAME_LENGTH","features":[458]},{"name":"MS_PROFILE_GROUP_POLICY","features":[458]},{"name":"MS_PROFILE_USER","features":[458]},{"name":"NDIS_PACKET_TYPE_802_11_ALL_MULTICAST_DATA","features":[458]},{"name":"NDIS_PACKET_TYPE_802_11_BROADCAST_DATA","features":[458]},{"name":"NDIS_PACKET_TYPE_802_11_DIRECTED_DATA","features":[458]},{"name":"NDIS_PACKET_TYPE_802_11_MULTICAST_DATA","features":[458]},{"name":"NDIS_PACKET_TYPE_802_11_PROMISCUOUS_DATA","features":[458]},{"name":"OID_DOT11_AP_JOIN_REQUEST","features":[458]},{"name":"OID_DOT11_ATIM_WINDOW","features":[458]},{"name":"OID_DOT11_BEACON_PERIOD","features":[458]},{"name":"OID_DOT11_CCA_MODE_SUPPORTED","features":[458]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MAX","features":[458]},{"name":"OID_DOT11_CCA_WATCHDOG_COUNT_MIN","features":[458]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MAX","features":[458]},{"name":"OID_DOT11_CCA_WATCHDOG_TIMER_MIN","features":[458]},{"name":"OID_DOT11_CFP_MAX_DURATION","features":[458]},{"name":"OID_DOT11_CFP_PERIOD","features":[458]},{"name":"OID_DOT11_CF_POLLABLE","features":[458]},{"name":"OID_DOT11_CHANNEL_AGILITY_ENABLED","features":[458]},{"name":"OID_DOT11_CHANNEL_AGILITY_PRESENT","features":[458]},{"name":"OID_DOT11_COUNTERS_ENTRY","features":[458]},{"name":"OID_DOT11_COUNTRY_STRING","features":[458]},{"name":"OID_DOT11_CURRENT_ADDRESS","features":[458]},{"name":"OID_DOT11_CURRENT_CCA_MODE","features":[458]},{"name":"OID_DOT11_CURRENT_CHANNEL","features":[458]},{"name":"OID_DOT11_CURRENT_CHANNEL_NUMBER","features":[458]},{"name":"OID_DOT11_CURRENT_DWELL_TIME","features":[458]},{"name":"OID_DOT11_CURRENT_FREQUENCY","features":[458]},{"name":"OID_DOT11_CURRENT_INDEX","features":[458]},{"name":"OID_DOT11_CURRENT_OFFLOAD_CAPABILITY","features":[458]},{"name":"OID_DOT11_CURRENT_OPERATION_MODE","features":[458]},{"name":"OID_DOT11_CURRENT_OPTIONAL_CAPABILITY","features":[458]},{"name":"OID_DOT11_CURRENT_PACKET_FILTER","features":[458]},{"name":"OID_DOT11_CURRENT_PATTERN","features":[458]},{"name":"OID_DOT11_CURRENT_PHY_TYPE","features":[458]},{"name":"OID_DOT11_CURRENT_REG_DOMAIN","features":[458]},{"name":"OID_DOT11_CURRENT_RX_ANTENNA","features":[458]},{"name":"OID_DOT11_CURRENT_SET","features":[458]},{"name":"OID_DOT11_CURRENT_TX_ANTENNA","features":[458]},{"name":"OID_DOT11_CURRENT_TX_POWER_LEVEL","features":[458]},{"name":"OID_DOT11_DEFAULT_WEP_OFFLOAD","features":[458]},{"name":"OID_DOT11_DEFAULT_WEP_UPLOAD","features":[458]},{"name":"OID_DOT11_DIVERSITY_SELECTION_RX","features":[458]},{"name":"OID_DOT11_DIVERSITY_SUPPORT","features":[458]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_ENABLED","features":[458]},{"name":"OID_DOT11_DSSS_OFDM_OPTION_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_DTIM_PERIOD","features":[458]},{"name":"OID_DOT11_ED_THRESHOLD","features":[458]},{"name":"OID_DOT11_EHCC_CAPABILITY_ENABLED","features":[458]},{"name":"OID_DOT11_EHCC_CAPABILITY_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_EHCC_NUMBER_OF_CHANNELS_FAMILY_INDEX","features":[458]},{"name":"OID_DOT11_EHCC_PRIME_RADIX","features":[458]},{"name":"OID_DOT11_ERP_PBCC_OPTION_ENABLED","features":[458]},{"name":"OID_DOT11_ERP_PBCC_OPTION_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_FRAGMENTATION_THRESHOLD","features":[458]},{"name":"OID_DOT11_FREQUENCY_BANDS_SUPPORTED","features":[458]},{"name":"OID_DOT11_HOPPING_PATTERN","features":[458]},{"name":"OID_DOT11_HOP_ALGORITHM_ADOPTED","features":[458]},{"name":"OID_DOT11_HOP_MODULUS","features":[458]},{"name":"OID_DOT11_HOP_OFFSET","features":[458]},{"name":"OID_DOT11_HOP_TIME","features":[458]},{"name":"OID_DOT11_HR_CCA_MODE_SUPPORTED","features":[458]},{"name":"OID_DOT11_JOIN_REQUEST","features":[458]},{"name":"OID_DOT11_LONG_RETRY_LIMIT","features":[458]},{"name":"OID_DOT11_MAC_ADDRESS","features":[458]},{"name":"OID_DOT11_MAXIMUM_LIST_SIZE","features":[458]},{"name":"OID_DOT11_MAX_DWELL_TIME","features":[458]},{"name":"OID_DOT11_MAX_MAC_ADDRESS_STATES","features":[458]},{"name":"OID_DOT11_MAX_RECEIVE_LIFETIME","features":[458]},{"name":"OID_DOT11_MAX_TRANSMIT_MSDU_LIFETIME","features":[458]},{"name":"OID_DOT11_MEDIUM_OCCUPANCY_LIMIT","features":[458]},{"name":"OID_DOT11_MPDU_MAX_LENGTH","features":[458]},{"name":"OID_DOT11_MULTICAST_LIST","features":[458]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY","features":[458]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_ENABLED","features":[458]},{"name":"OID_DOT11_MULTI_DOMAIN_CAPABILITY_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_NDIS_START","features":[458]},{"name":"OID_DOT11_NIC_POWER_STATE","features":[458]},{"name":"OID_DOT11_NIC_SPECIFIC_EXTENSION","features":[458]},{"name":"OID_DOT11_NUMBER_OF_HOPPING_SETS","features":[458]},{"name":"OID_DOT11_OFFLOAD_CAPABILITY","features":[458]},{"name":"OID_DOT11_OPERATIONAL_RATE_SET","features":[458]},{"name":"OID_DOT11_OPERATION_MODE_CAPABILITY","features":[458]},{"name":"OID_DOT11_OPTIONAL_CAPABILITY","features":[458]},{"name":"OID_DOT11_PBCC_OPTION_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_PERMANENT_ADDRESS","features":[458]},{"name":"OID_DOT11_POWER_MGMT_MODE","features":[458]},{"name":"OID_DOT11_PRIVATE_OIDS_START","features":[458]},{"name":"OID_DOT11_QOS_TX_DURATION","features":[458]},{"name":"OID_DOT11_QOS_TX_MEDIUM_TIME","features":[458]},{"name":"OID_DOT11_QOS_TX_QUEUES_SUPPORTED","features":[458]},{"name":"OID_DOT11_RANDOM_TABLE_FIELD_NUMBER","features":[458]},{"name":"OID_DOT11_RANDOM_TABLE_FLAG","features":[458]},{"name":"OID_DOT11_RECV_SENSITIVITY_LIST","features":[458]},{"name":"OID_DOT11_REG_DOMAINS_SUPPORT_VALUE","features":[458]},{"name":"OID_DOT11_RESET_REQUEST","features":[458]},{"name":"OID_DOT11_RF_USAGE","features":[458]},{"name":"OID_DOT11_RSSI_RANGE","features":[458]},{"name":"OID_DOT11_RTS_THRESHOLD","features":[458]},{"name":"OID_DOT11_SCAN_REQUEST","features":[458]},{"name":"OID_DOT11_SHORT_PREAMBLE_OPTION_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_SHORT_RETRY_LIMIT","features":[458]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_ENABLED","features":[458]},{"name":"OID_DOT11_SHORT_SLOT_TIME_OPTION_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_START_REQUEST","features":[458]},{"name":"OID_DOT11_STATION_ID","features":[458]},{"name":"OID_DOT11_SUPPORTED_DATA_RATES_VALUE","features":[458]},{"name":"OID_DOT11_SUPPORTED_DSSS_CHANNEL_LIST","features":[458]},{"name":"OID_DOT11_SUPPORTED_OFDM_FREQUENCY_LIST","features":[458]},{"name":"OID_DOT11_SUPPORTED_PHY_TYPES","features":[458]},{"name":"OID_DOT11_SUPPORTED_POWER_LEVELS","features":[458]},{"name":"OID_DOT11_SUPPORTED_RX_ANTENNA","features":[458]},{"name":"OID_DOT11_SUPPORTED_TX_ANTENNA","features":[458]},{"name":"OID_DOT11_TEMP_TYPE","features":[458]},{"name":"OID_DOT11_TI_THRESHOLD","features":[458]},{"name":"OID_DOT11_UPDATE_IE","features":[458]},{"name":"OID_DOT11_WEP_ICV_ERROR_COUNT","features":[458]},{"name":"OID_DOT11_WEP_OFFLOAD","features":[458]},{"name":"OID_DOT11_WEP_UPLOAD","features":[458]},{"name":"OID_DOT11_WME_AC_PARAMETERS","features":[458]},{"name":"OID_DOT11_WME_ENABLED","features":[458]},{"name":"OID_DOT11_WME_IMPLEMENTED","features":[458]},{"name":"OID_DOT11_WME_UPDATE_IE","features":[458]},{"name":"OID_DOT11_WPA_TSC","features":[458]},{"name":"ONEX_AUTHENTICATOR_NO_LONGER_PRESENT","features":[458]},{"name":"ONEX_AUTH_IDENTITY","features":[458]},{"name":"ONEX_AUTH_PARAMS","features":[305,458]},{"name":"ONEX_AUTH_RESTART_REASON","features":[458]},{"name":"ONEX_AUTH_STATUS","features":[458]},{"name":"ONEX_EAP_ERROR","features":[458,459]},{"name":"ONEX_EAP_FAILURE_RECEIVED","features":[458]},{"name":"ONEX_EAP_METHOD_BACKEND_SUPPORT","features":[458]},{"name":"ONEX_IDENTITY_NOT_FOUND","features":[458]},{"name":"ONEX_NOTIFICATION_TYPE","features":[458]},{"name":"ONEX_NO_RESPONSE_TO_IDENTITY","features":[458]},{"name":"ONEX_PROFILE_DISALLOWED_EAP_TYPE","features":[458]},{"name":"ONEX_PROFILE_EXPIRED_EXPLICIT_CREDENTIALS","features":[458]},{"name":"ONEX_PROFILE_INVALID_AUTH_MODE","features":[458]},{"name":"ONEX_PROFILE_INVALID_EAP_CONNECTION_PROPERTIES","features":[458]},{"name":"ONEX_PROFILE_INVALID_EAP_TYPE_OR_FLAG","features":[458]},{"name":"ONEX_PROFILE_INVALID_EXPLICIT_CREDENTIALS","features":[458]},{"name":"ONEX_PROFILE_INVALID_LENGTH","features":[458]},{"name":"ONEX_PROFILE_INVALID_ONEX_FLAGS","features":[458]},{"name":"ONEX_PROFILE_INVALID_SUPPLICANT_MODE","features":[458]},{"name":"ONEX_PROFILE_INVALID_TIMER_VALUE","features":[458]},{"name":"ONEX_PROFILE_VERSION_NOT_SUPPORTED","features":[458]},{"name":"ONEX_REASON_CODE","features":[458]},{"name":"ONEX_REASON_CODE_SUCCESS","features":[458]},{"name":"ONEX_REASON_START","features":[458]},{"name":"ONEX_RESULT_UPDATE_DATA","features":[305,458]},{"name":"ONEX_STATUS","features":[458]},{"name":"ONEX_UI_CANCELLED","features":[458]},{"name":"ONEX_UI_DISABLED","features":[458]},{"name":"ONEX_UI_FAILURE","features":[458]},{"name":"ONEX_UI_NOT_PERMITTED","features":[458]},{"name":"ONEX_UNABLE_TO_IDENTIFY_USER","features":[458]},{"name":"ONEX_USER_INFO","features":[458]},{"name":"ONEX_VARIABLE_BLOB","features":[458]},{"name":"OneXAuthFailure","features":[458]},{"name":"OneXAuthIdentityExplicitUser","features":[458]},{"name":"OneXAuthIdentityGuest","features":[458]},{"name":"OneXAuthIdentityInvalid","features":[458]},{"name":"OneXAuthIdentityMachine","features":[458]},{"name":"OneXAuthIdentityNone","features":[458]},{"name":"OneXAuthIdentityUser","features":[458]},{"name":"OneXAuthInProgress","features":[458]},{"name":"OneXAuthInvalid","features":[458]},{"name":"OneXAuthNoAuthenticatorFound","features":[458]},{"name":"OneXAuthNotStarted","features":[458]},{"name":"OneXAuthSuccess","features":[458]},{"name":"OneXEapMethodBackendSupportUnknown","features":[458]},{"name":"OneXEapMethodBackendSupported","features":[458]},{"name":"OneXEapMethodBackendUnsupported","features":[458]},{"name":"OneXNotificationTypeAuthRestarted","features":[458]},{"name":"OneXNotificationTypeEventInvalid","features":[458]},{"name":"OneXNotificationTypeResultUpdate","features":[458]},{"name":"OneXNumNotifications","features":[458]},{"name":"OneXPublicNotificationBase","features":[458]},{"name":"OneXRestartReasonAltCredsTrial","features":[458]},{"name":"OneXRestartReasonInvalid","features":[458]},{"name":"OneXRestartReasonMsmInitiated","features":[458]},{"name":"OneXRestartReasonOneXAuthTimeout","features":[458]},{"name":"OneXRestartReasonOneXConfigurationChanged","features":[458]},{"name":"OneXRestartReasonOneXHeldStateTimeout","features":[458]},{"name":"OneXRestartReasonOneXUserChanged","features":[458]},{"name":"OneXRestartReasonPeerInitiated","features":[458]},{"name":"OneXRestartReasonQuarantineStateChanged","features":[458]},{"name":"WDIAG_IHV_WLAN_ID","features":[458]},{"name":"WDIAG_IHV_WLAN_ID_FLAG_SECURITY_ENABLED","features":[458]},{"name":"WFDCancelOpenSession","features":[305,458]},{"name":"WFDCloseHandle","features":[305,458]},{"name":"WFDCloseSession","features":[305,458]},{"name":"WFDOpenHandle","features":[305,458]},{"name":"WFDOpenLegacySession","features":[305,458]},{"name":"WFDSVC_CONNECTION_CAPABILITY","features":[305,458]},{"name":"WFDSVC_CONNECTION_CAPABILITY_CLIENT","features":[458]},{"name":"WFDSVC_CONNECTION_CAPABILITY_GO","features":[458]},{"name":"WFDSVC_CONNECTION_CAPABILITY_NEW","features":[458]},{"name":"WFDStartOpenSession","features":[305,458]},{"name":"WFDUpdateDeviceVisibility","features":[458]},{"name":"WFD_API_VERSION","features":[458]},{"name":"WFD_API_VERSION_1_0","features":[458]},{"name":"WFD_GROUP_ID","features":[458]},{"name":"WFD_OPEN_SESSION_COMPLETE_CALLBACK","features":[305,458]},{"name":"WFD_ROLE_TYPE","features":[458]},{"name":"WFD_ROLE_TYPE_CLIENT","features":[458]},{"name":"WFD_ROLE_TYPE_DEVICE","features":[458]},{"name":"WFD_ROLE_TYPE_GROUP_OWNER","features":[458]},{"name":"WFD_ROLE_TYPE_MAX","features":[458]},{"name":"WFD_ROLE_TYPE_NONE","features":[458]},{"name":"WLAN_ADHOC_NETWORK_STATE","features":[458]},{"name":"WLAN_API_VERSION","features":[458]},{"name":"WLAN_API_VERSION_1_0","features":[458]},{"name":"WLAN_API_VERSION_2_0","features":[458]},{"name":"WLAN_ASSOCIATION_ATTRIBUTES","features":[458]},{"name":"WLAN_AUTH_CIPHER_PAIR_LIST","features":[458]},{"name":"WLAN_AUTOCONF_OPCODE","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK","features":[305,458]},{"name":"WLAN_AVAILABLE_NETWORK_ANQP_SUPPORTED","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_AUTO_CONNECT_FAILED","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_CONNECTED","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_CONSOLE_USER_PROFILE","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_HAS_PROFILE","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_DOMAIN","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ENABLED","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_HOTSPOT2_ROAMING","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_ADHOC_PROFILES","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_INCLUDE_ALL_MANUAL_HIDDEN_PROFILES","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_INTERWORKING_SUPPORTED","features":[458]},{"name":"WLAN_AVAILABLE_NETWORK_LIST","features":[305,458]},{"name":"WLAN_AVAILABLE_NETWORK_LIST_V2","features":[305,458]},{"name":"WLAN_AVAILABLE_NETWORK_V2","features":[305,458]},{"name":"WLAN_BSS_ENTRY","features":[305,458]},{"name":"WLAN_BSS_LIST","features":[305,458]},{"name":"WLAN_CONNECTION_ADHOC_JOIN_ONLY","features":[458]},{"name":"WLAN_CONNECTION_ATTRIBUTES","features":[305,458]},{"name":"WLAN_CONNECTION_EAPOL_PASSTHROUGH","features":[458]},{"name":"WLAN_CONNECTION_HIDDEN_NETWORK","features":[458]},{"name":"WLAN_CONNECTION_IGNORE_PRIVACY_BIT","features":[458]},{"name":"WLAN_CONNECTION_MODE","features":[458]},{"name":"WLAN_CONNECTION_NOTIFICATION_ADHOC_NETWORK_FORMED","features":[458]},{"name":"WLAN_CONNECTION_NOTIFICATION_CONSOLE_USER_PROFILE","features":[458]},{"name":"WLAN_CONNECTION_NOTIFICATION_DATA","features":[305,458]},{"name":"WLAN_CONNECTION_NOTIFICATION_FLAGS","features":[458]},{"name":"WLAN_CONNECTION_PARAMETERS","features":[319,458]},{"name":"WLAN_CONNECTION_PARAMETERS_V2","features":[319,458]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE","features":[458]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_CONNECTION_MODE_AUTO","features":[458]},{"name":"WLAN_CONNECTION_PERSIST_DISCOVERY_PROFILE_OVERWRITE_EXISTING","features":[458]},{"name":"WLAN_COUNTRY_OR_REGION_STRING_LIST","features":[458]},{"name":"WLAN_DEVICE_SERVICE_GUID_LIST","features":[458]},{"name":"WLAN_DEVICE_SERVICE_NOTIFICATION_DATA","features":[458]},{"name":"WLAN_FILTER_LIST_TYPE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_CONNECTION_SETTINGS","features":[458]},{"name":"WLAN_HOSTED_NETWORK_DATA_PEER_STATE_CHANGE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_NOTIFICATION_CODE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_OPCODE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_PEER_AUTH_STATE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_PEER_STATE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_RADIO_STATE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_REASON","features":[458]},{"name":"WLAN_HOSTED_NETWORK_SECURITY_SETTINGS","features":[458]},{"name":"WLAN_HOSTED_NETWORK_STATE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_STATE_CHANGE","features":[458]},{"name":"WLAN_HOSTED_NETWORK_STATUS","features":[458]},{"name":"WLAN_IHV_CONTROL_TYPE","features":[458]},{"name":"WLAN_INTERFACE_CAPABILITY","features":[305,458]},{"name":"WLAN_INTERFACE_INFO","features":[458]},{"name":"WLAN_INTERFACE_INFO_LIST","features":[458]},{"name":"WLAN_INTERFACE_STATE","features":[458]},{"name":"WLAN_INTERFACE_TYPE","features":[458]},{"name":"WLAN_INTF_OPCODE","features":[458]},{"name":"WLAN_MAC_FRAME_STATISTICS","features":[458]},{"name":"WLAN_MAX_NAME_LENGTH","features":[458]},{"name":"WLAN_MAX_PHY_INDEX","features":[458]},{"name":"WLAN_MAX_PHY_TYPE_NUMBER","features":[458]},{"name":"WLAN_MSM_NOTIFICATION_DATA","features":[305,458]},{"name":"WLAN_NOTIFICATION_ACM","features":[458]},{"name":"WLAN_NOTIFICATION_CALLBACK","features":[458]},{"name":"WLAN_NOTIFICATION_MSM","features":[458]},{"name":"WLAN_NOTIFICATION_SECURITY","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCES","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_ACM","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_ALL","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_DEVICE_SERVICE","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_HNWK","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_IHV","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_MSM","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_NONE","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_ONEX","features":[458]},{"name":"WLAN_NOTIFICATION_SOURCE_SECURITY","features":[458]},{"name":"WLAN_OPCODE_VALUE_TYPE","features":[458]},{"name":"WLAN_OPERATIONAL_STATE","features":[458]},{"name":"WLAN_PHY_FRAME_STATISTICS","features":[458]},{"name":"WLAN_PHY_RADIO_STATE","features":[458]},{"name":"WLAN_POWER_SETTING","features":[458]},{"name":"WLAN_PROFILE_CONNECTION_MODE_AUTO","features":[458]},{"name":"WLAN_PROFILE_CONNECTION_MODE_SET_BY_CLIENT","features":[458]},{"name":"WLAN_PROFILE_GET_PLAINTEXT_KEY","features":[458]},{"name":"WLAN_PROFILE_GROUP_POLICY","features":[458]},{"name":"WLAN_PROFILE_INFO","features":[458]},{"name":"WLAN_PROFILE_INFO_LIST","features":[458]},{"name":"WLAN_PROFILE_USER","features":[458]},{"name":"WLAN_RADIO_STATE","features":[458]},{"name":"WLAN_RATE_SET","features":[458]},{"name":"WLAN_RAW_DATA","features":[458]},{"name":"WLAN_RAW_DATA_LIST","features":[458]},{"name":"WLAN_REASON_CODE_AC_BASE","features":[458]},{"name":"WLAN_REASON_CODE_AC_CONNECT_BASE","features":[458]},{"name":"WLAN_REASON_CODE_AC_END","features":[458]},{"name":"WLAN_REASON_CODE_ADHOC_SECURITY_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED","features":[458]},{"name":"WLAN_REASON_CODE_AP_PROFILE_NOT_ALLOWED_FOR_CLIENT","features":[458]},{"name":"WLAN_REASON_CODE_AP_STARTING_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_ASSOCIATION_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_ASSOCIATION_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_AUTO_AP_PROFILE_NOT_ALLOWED","features":[458]},{"name":"WLAN_REASON_CODE_AUTO_CONNECTION_NOT_ALLOWED","features":[458]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_ADHOC","features":[458]},{"name":"WLAN_REASON_CODE_AUTO_SWITCH_SET_FOR_MANUAL_CONNECTION","features":[458]},{"name":"WLAN_REASON_CODE_BAD_MAX_NUMBER_OF_CLIENTS_FOR_AP","features":[458]},{"name":"WLAN_REASON_CODE_BASE","features":[458]},{"name":"WLAN_REASON_CODE_BSS_TYPE_NOT_ALLOWED","features":[458]},{"name":"WLAN_REASON_CODE_BSS_TYPE_UNMATCH","features":[458]},{"name":"WLAN_REASON_CODE_CONFLICT_SECURITY","features":[458]},{"name":"WLAN_REASON_CODE_CONNECT_CALL_FAIL","features":[458]},{"name":"WLAN_REASON_CODE_DATARATE_UNMATCH","features":[458]},{"name":"WLAN_REASON_CODE_DISCONNECT_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_DRIVER_DISCONNECTED","features":[458]},{"name":"WLAN_REASON_CODE_DRIVER_OPERATION_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_GP_DENIED","features":[458]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_DENIED","features":[458]},{"name":"WLAN_REASON_CODE_HOTSPOT2_PROFILE_NOT_ALLOWED","features":[458]},{"name":"WLAN_REASON_CODE_IHV_CONNECTIVITY_NOT_SUPPORTED","features":[458]},{"name":"WLAN_REASON_CODE_IHV_NOT_AVAILABLE","features":[458]},{"name":"WLAN_REASON_CODE_IHV_NOT_RESPONDING","features":[458]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISMATCH","features":[458]},{"name":"WLAN_REASON_CODE_IHV_OUI_MISSING","features":[458]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_NOT_SUPPORTED","features":[458]},{"name":"WLAN_REASON_CODE_IHV_SECURITY_ONEX_MISSING","features":[458]},{"name":"WLAN_REASON_CODE_IHV_SETTINGS_MISSING","features":[458]},{"name":"WLAN_REASON_CODE_INTERNAL_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_INVALID_ADHOC_CONNECTION_MODE","features":[458]},{"name":"WLAN_REASON_CODE_INVALID_BSS_TYPE","features":[458]},{"name":"WLAN_REASON_CODE_INVALID_CHANNEL","features":[458]},{"name":"WLAN_REASON_CODE_INVALID_PHY_TYPE","features":[458]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_NAME","features":[458]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_SCHEMA","features":[458]},{"name":"WLAN_REASON_CODE_INVALID_PROFILE_TYPE","features":[458]},{"name":"WLAN_REASON_CODE_IN_BLOCKED_LIST","features":[458]},{"name":"WLAN_REASON_CODE_IN_FAILED_LIST","features":[458]},{"name":"WLAN_REASON_CODE_KEY_MISMATCH","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_START_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_SUCCESS_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_AUTH_WCN_COMPLETED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_BASE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CANCELLED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_DISCOVERY","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_MFP_NW_NIC","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NETWORK","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_NIC","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_AUTH","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_CIPHER","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NIC","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CAPABILITY_PROFILE_SAFE_MODE_NW","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_CONNECT_BASE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_DOWNGRADE_DETECTED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_END","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_FORCED_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_GRP_KEY","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_KEY_DATA","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_G1_MISSING_MGMT_GRP_KEY","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_FORMAT","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_START_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_KEY_SUCCESS_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_IE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_M2_MISSING_KEY_DATA","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_GRP_KEY","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_IE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_KEY_DATA","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_MISSING_MGMT_GRP_KEY","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_M3_TOO_MANY_RSNIE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_MAX","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_MIN","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_MIXED_CELL","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_NIC_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_AUTHENTICATOR","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_NO_PAIRWISE_KEY","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PEER_INDICATED_INSECURE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_AUTH_TIMERS_INVALID","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_DUPLICATE_AUTH_CIPHER","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_AUTH_CIPHER","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_GKEY_INTV","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_KEY_INDEX","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_MODE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_SIZE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PMKCACHE_TTL","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_MODE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_INVALID_PREAUTH_THROTTLE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEYMATERIAL_CHAR","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_LENGTH","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_KEY_UNMAPPED_CHAR","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_NO_AUTH_CIPHER_SPECIFIED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_DISABLED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_ONEX_ENABLED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PASSPHRASE_CHAR","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PREAUTH_ONLY_ENABLED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_LENGTH","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_PSK_PRESENT","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_RAWDATA_INVALID","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_SAFE_MODE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_TOO_MANY_AUTH_CIPHER_SPECIFIED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_AUTH","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_UNSUPPORTED_CIPHER","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PROFILE_WRONG_KEYTYPE","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PR_IE_MATCHING","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_PSK_MISMATCH_SUSPECTED","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_SEC_IE_MATCHING","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_TRANSITION_NETWORK","features":[458]},{"name":"WLAN_REASON_CODE_MSMSEC_UI_REQUEST_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_MSM_BASE","features":[458]},{"name":"WLAN_REASON_CODE_MSM_CONNECT_BASE","features":[458]},{"name":"WLAN_REASON_CODE_MSM_END","features":[458]},{"name":"WLAN_REASON_CODE_MSM_SECURITY_MISSING","features":[458]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_AVAILABLE","features":[458]},{"name":"WLAN_REASON_CODE_NETWORK_NOT_COMPATIBLE","features":[458]},{"name":"WLAN_REASON_CODE_NON_BROADCAST_SET_FOR_ADHOC","features":[458]},{"name":"WLAN_REASON_CODE_NOT_VISIBLE","features":[458]},{"name":"WLAN_REASON_CODE_NO_AUTO_CONNECTION","features":[458]},{"name":"WLAN_REASON_CODE_NO_VISIBLE_AP","features":[458]},{"name":"WLAN_REASON_CODE_OPERATION_MODE_NOT_SUPPORTED","features":[458]},{"name":"WLAN_REASON_CODE_PHY_TYPE_UNMATCH","features":[458]},{"name":"WLAN_REASON_CODE_PRE_SECURITY_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_PROFILE_BASE","features":[458]},{"name":"WLAN_REASON_CODE_PROFILE_CHANGED_OR_DELETED","features":[458]},{"name":"WLAN_REASON_CODE_PROFILE_CONNECT_BASE","features":[458]},{"name":"WLAN_REASON_CODE_PROFILE_END","features":[458]},{"name":"WLAN_REASON_CODE_PROFILE_MISSING","features":[458]},{"name":"WLAN_REASON_CODE_PROFILE_NOT_COMPATIBLE","features":[458]},{"name":"WLAN_REASON_CODE_PROFILE_SSID_INVALID","features":[458]},{"name":"WLAN_REASON_CODE_RANGE_SIZE","features":[458]},{"name":"WLAN_REASON_CODE_RESERVED_BASE","features":[458]},{"name":"WLAN_REASON_CODE_RESERVED_END","features":[458]},{"name":"WLAN_REASON_CODE_ROAMING_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_ROAMING_SECURITY_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_SCAN_CALL_FAIL","features":[458]},{"name":"WLAN_REASON_CODE_SECURITY_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_SECURITY_MISSING","features":[458]},{"name":"WLAN_REASON_CODE_SECURITY_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_SSID_LIST_TOO_LONG","features":[458]},{"name":"WLAN_REASON_CODE_START_SECURITY_FAILURE","features":[458]},{"name":"WLAN_REASON_CODE_SUCCESS","features":[458]},{"name":"WLAN_REASON_CODE_TOO_MANY_SECURITY_ATTEMPTS","features":[458]},{"name":"WLAN_REASON_CODE_TOO_MANY_SSID","features":[458]},{"name":"WLAN_REASON_CODE_UI_REQUEST_TIMEOUT","features":[458]},{"name":"WLAN_REASON_CODE_UNKNOWN","features":[458]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET","features":[458]},{"name":"WLAN_REASON_CODE_UNSUPPORTED_SECURITY_SET_BY_OS","features":[458]},{"name":"WLAN_REASON_CODE_USER_CANCELLED","features":[458]},{"name":"WLAN_REASON_CODE_USER_DENIED","features":[458]},{"name":"WLAN_REASON_CODE_USER_NOT_RESPOND","features":[458]},{"name":"WLAN_SECURABLE_OBJECT","features":[458]},{"name":"WLAN_SECURABLE_OBJECT_COUNT","features":[458]},{"name":"WLAN_SECURITY_ATTRIBUTES","features":[305,458]},{"name":"WLAN_SET_EAPHOST_DATA_ALL_USERS","features":[458]},{"name":"WLAN_SET_EAPHOST_FLAGS","features":[458]},{"name":"WLAN_STATISTICS","features":[458]},{"name":"WLAN_UI_API_INITIAL_VERSION","features":[458]},{"name":"WLAN_UI_API_VERSION","features":[458]},{"name":"WLAdvPage","features":[458]},{"name":"WLConnectionPage","features":[458]},{"name":"WLSecurityPage","features":[458]},{"name":"WL_DISPLAY_PAGES","features":[458]},{"name":"WlanAllocateMemory","features":[458]},{"name":"WlanCloseHandle","features":[305,458]},{"name":"WlanConnect","features":[305,319,458]},{"name":"WlanConnect2","features":[305,319,458]},{"name":"WlanDeleteProfile","features":[305,458]},{"name":"WlanDeviceServiceCommand","features":[305,458]},{"name":"WlanDisconnect","features":[305,458]},{"name":"WlanEnumInterfaces","features":[305,458]},{"name":"WlanExtractPsdIEDataList","features":[305,458]},{"name":"WlanFreeMemory","features":[458]},{"name":"WlanGetAvailableNetworkList","features":[305,458]},{"name":"WlanGetAvailableNetworkList2","features":[305,458]},{"name":"WlanGetFilterList","features":[305,458]},{"name":"WlanGetInterfaceCapability","features":[305,458]},{"name":"WlanGetNetworkBssList","features":[305,458]},{"name":"WlanGetProfile","features":[305,458]},{"name":"WlanGetProfileCustomUserData","features":[305,458]},{"name":"WlanGetProfileList","features":[305,458]},{"name":"WlanGetSecuritySettings","features":[305,458]},{"name":"WlanGetSupportedDeviceServices","features":[305,458]},{"name":"WlanHostedNetworkForceStart","features":[305,458]},{"name":"WlanHostedNetworkForceStop","features":[305,458]},{"name":"WlanHostedNetworkInitSettings","features":[305,458]},{"name":"WlanHostedNetworkQueryProperty","features":[305,458]},{"name":"WlanHostedNetworkQuerySecondaryKey","features":[305,458]},{"name":"WlanHostedNetworkQueryStatus","features":[305,458]},{"name":"WlanHostedNetworkRefreshSecuritySettings","features":[305,458]},{"name":"WlanHostedNetworkSetProperty","features":[305,458]},{"name":"WlanHostedNetworkSetSecondaryKey","features":[305,458]},{"name":"WlanHostedNetworkStartUsing","features":[305,458]},{"name":"WlanHostedNetworkStopUsing","features":[305,458]},{"name":"WlanIhvControl","features":[305,458]},{"name":"WlanOpenHandle","features":[305,458]},{"name":"WlanQueryAutoConfigParameter","features":[305,458]},{"name":"WlanQueryInterface","features":[305,458]},{"name":"WlanReasonCodeToString","features":[458]},{"name":"WlanRegisterDeviceServiceNotification","features":[305,458]},{"name":"WlanRegisterNotification","features":[305,458]},{"name":"WlanRegisterVirtualStationNotification","features":[305,458]},{"name":"WlanRenameProfile","features":[305,458]},{"name":"WlanSaveTemporaryProfile","features":[305,458]},{"name":"WlanScan","features":[305,458]},{"name":"WlanSetAutoConfigParameter","features":[305,458]},{"name":"WlanSetFilterList","features":[305,458]},{"name":"WlanSetInterface","features":[305,458]},{"name":"WlanSetProfile","features":[305,458]},{"name":"WlanSetProfileCustomUserData","features":[305,458]},{"name":"WlanSetProfileEapUserData","features":[305,458,459]},{"name":"WlanSetProfileEapXmlUserData","features":[305,458]},{"name":"WlanSetProfileList","features":[305,458]},{"name":"WlanSetProfilePosition","features":[305,458]},{"name":"WlanSetPsdIEDataList","features":[305,458]},{"name":"WlanSetSecuritySettings","features":[305,458]},{"name":"WlanUIEditProfile","features":[305,458]},{"name":"ch_description_type_center_frequency","features":[458]},{"name":"ch_description_type_logical","features":[458]},{"name":"ch_description_type_phy_specific","features":[458]},{"name":"connection_phase_any","features":[458]},{"name":"connection_phase_initial_connection","features":[458]},{"name":"connection_phase_post_l3_connection","features":[458]},{"name":"dot11_AC_param_BE","features":[458]},{"name":"dot11_AC_param_BK","features":[458]},{"name":"dot11_AC_param_VI","features":[458]},{"name":"dot11_AC_param_VO","features":[458]},{"name":"dot11_AC_param_max","features":[458]},{"name":"dot11_ANQP_query_result_access_issues","features":[458]},{"name":"dot11_ANQP_query_result_advertisement_protocol_not_supported_on_remote","features":[458]},{"name":"dot11_ANQP_query_result_advertisement_server_not_responding","features":[458]},{"name":"dot11_ANQP_query_result_failure","features":[458]},{"name":"dot11_ANQP_query_result_gas_protocol_failure","features":[458]},{"name":"dot11_ANQP_query_result_resources","features":[458]},{"name":"dot11_ANQP_query_result_success","features":[458]},{"name":"dot11_ANQP_query_result_timed_out","features":[458]},{"name":"dot11_BSS_type_any","features":[458]},{"name":"dot11_BSS_type_independent","features":[458]},{"name":"dot11_BSS_type_infrastructure","features":[458]},{"name":"dot11_assoc_state_auth_assoc","features":[458]},{"name":"dot11_assoc_state_auth_unassoc","features":[458]},{"name":"dot11_assoc_state_unauth_unassoc","features":[458]},{"name":"dot11_assoc_state_zero","features":[458]},{"name":"dot11_band_2p4g","features":[458]},{"name":"dot11_band_4p9g","features":[458]},{"name":"dot11_band_5g","features":[458]},{"name":"dot11_diversity_support_dynamic","features":[458]},{"name":"dot11_diversity_support_fixedlist","features":[458]},{"name":"dot11_diversity_support_notsupported","features":[458]},{"name":"dot11_diversity_support_unknown","features":[458]},{"name":"dot11_hop_algo_current","features":[458]},{"name":"dot11_hop_algo_hcc","features":[458]},{"name":"dot11_hop_algo_hop_index","features":[458]},{"name":"dot11_key_direction_both","features":[458]},{"name":"dot11_key_direction_inbound","features":[458]},{"name":"dot11_key_direction_outbound","features":[458]},{"name":"dot11_manufacturing_callback_IHV_end","features":[458]},{"name":"dot11_manufacturing_callback_IHV_start","features":[458]},{"name":"dot11_manufacturing_callback_self_test_complete","features":[458]},{"name":"dot11_manufacturing_callback_sleep_complete","features":[458]},{"name":"dot11_manufacturing_callback_unknown","features":[458]},{"name":"dot11_manufacturing_test_IHV_end","features":[458]},{"name":"dot11_manufacturing_test_IHV_start","features":[458]},{"name":"dot11_manufacturing_test_awake","features":[458]},{"name":"dot11_manufacturing_test_query_adc","features":[458]},{"name":"dot11_manufacturing_test_query_data","features":[458]},{"name":"dot11_manufacturing_test_rx","features":[458]},{"name":"dot11_manufacturing_test_self_query_result","features":[458]},{"name":"dot11_manufacturing_test_self_start","features":[458]},{"name":"dot11_manufacturing_test_set_data","features":[458]},{"name":"dot11_manufacturing_test_sleep","features":[458]},{"name":"dot11_manufacturing_test_tx","features":[458]},{"name":"dot11_manufacturing_test_unknown","features":[458]},{"name":"dot11_offload_type_auth","features":[458]},{"name":"dot11_offload_type_wep","features":[458]},{"name":"dot11_phy_type_IHV_end","features":[458]},{"name":"dot11_phy_type_IHV_start","features":[458]},{"name":"dot11_phy_type_any","features":[458]},{"name":"dot11_phy_type_dmg","features":[458]},{"name":"dot11_phy_type_dsss","features":[458]},{"name":"dot11_phy_type_eht","features":[458]},{"name":"dot11_phy_type_erp","features":[458]},{"name":"dot11_phy_type_fhss","features":[458]},{"name":"dot11_phy_type_he","features":[458]},{"name":"dot11_phy_type_hrdsss","features":[458]},{"name":"dot11_phy_type_ht","features":[458]},{"name":"dot11_phy_type_irbaseband","features":[458]},{"name":"dot11_phy_type_ofdm","features":[458]},{"name":"dot11_phy_type_unknown","features":[458]},{"name":"dot11_phy_type_vht","features":[458]},{"name":"dot11_power_mode_active","features":[458]},{"name":"dot11_power_mode_powersave","features":[458]},{"name":"dot11_power_mode_reason_compliant_AP","features":[458]},{"name":"dot11_power_mode_reason_compliant_WFD_device","features":[458]},{"name":"dot11_power_mode_reason_legacy_WFD_device","features":[458]},{"name":"dot11_power_mode_reason_no_change","features":[458]},{"name":"dot11_power_mode_reason_noncompliant_AP","features":[458]},{"name":"dot11_power_mode_reason_others","features":[458]},{"name":"dot11_power_mode_unknown","features":[458]},{"name":"dot11_radio_state_off","features":[458]},{"name":"dot11_radio_state_on","features":[458]},{"name":"dot11_radio_state_unknown","features":[458]},{"name":"dot11_reset_type_mac","features":[458]},{"name":"dot11_reset_type_phy","features":[458]},{"name":"dot11_reset_type_phy_and_mac","features":[458]},{"name":"dot11_scan_type_active","features":[458]},{"name":"dot11_scan_type_auto","features":[458]},{"name":"dot11_scan_type_forced","features":[458]},{"name":"dot11_scan_type_passive","features":[458]},{"name":"dot11_temp_type_1","features":[458]},{"name":"dot11_temp_type_2","features":[458]},{"name":"dot11_temp_type_unknown","features":[458]},{"name":"dot11_update_ie_op_create_replace","features":[458]},{"name":"dot11_update_ie_op_delete","features":[458]},{"name":"dot11_wfd_discover_type_auto","features":[458]},{"name":"dot11_wfd_discover_type_find_only","features":[458]},{"name":"dot11_wfd_discover_type_forced","features":[458]},{"name":"dot11_wfd_discover_type_scan_only","features":[458]},{"name":"dot11_wfd_discover_type_scan_social_channels","features":[458]},{"name":"dot11_wfd_scan_type_active","features":[458]},{"name":"dot11_wfd_scan_type_auto","features":[458]},{"name":"dot11_wfd_scan_type_passive","features":[458]},{"name":"wlan_adhoc_network_state_connected","features":[458]},{"name":"wlan_adhoc_network_state_formed","features":[458]},{"name":"wlan_autoconf_opcode_allow_explicit_creds","features":[458]},{"name":"wlan_autoconf_opcode_allow_virtual_station_extensibility","features":[458]},{"name":"wlan_autoconf_opcode_block_period","features":[458]},{"name":"wlan_autoconf_opcode_end","features":[458]},{"name":"wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks","features":[458]},{"name":"wlan_autoconf_opcode_power_setting","features":[458]},{"name":"wlan_autoconf_opcode_show_denied_networks","features":[458]},{"name":"wlan_autoconf_opcode_start","features":[458]},{"name":"wlan_connection_mode_auto","features":[458]},{"name":"wlan_connection_mode_discovery_secure","features":[458]},{"name":"wlan_connection_mode_discovery_unsecure","features":[458]},{"name":"wlan_connection_mode_invalid","features":[458]},{"name":"wlan_connection_mode_profile","features":[458]},{"name":"wlan_connection_mode_temporary_profile","features":[458]},{"name":"wlan_filter_list_type_gp_deny","features":[458]},{"name":"wlan_filter_list_type_gp_permit","features":[458]},{"name":"wlan_filter_list_type_user_deny","features":[458]},{"name":"wlan_filter_list_type_user_permit","features":[458]},{"name":"wlan_hosted_network_active","features":[458]},{"name":"wlan_hosted_network_idle","features":[458]},{"name":"wlan_hosted_network_opcode_connection_settings","features":[458]},{"name":"wlan_hosted_network_opcode_enable","features":[458]},{"name":"wlan_hosted_network_opcode_security_settings","features":[458]},{"name":"wlan_hosted_network_opcode_station_profile","features":[458]},{"name":"wlan_hosted_network_peer_state_authenticated","features":[458]},{"name":"wlan_hosted_network_peer_state_change","features":[458]},{"name":"wlan_hosted_network_peer_state_invalid","features":[458]},{"name":"wlan_hosted_network_radio_state_change","features":[458]},{"name":"wlan_hosted_network_reason_ap_start_failed","features":[458]},{"name":"wlan_hosted_network_reason_bad_parameters","features":[458]},{"name":"wlan_hosted_network_reason_client_abort","features":[458]},{"name":"wlan_hosted_network_reason_crypt_error","features":[458]},{"name":"wlan_hosted_network_reason_device_change","features":[458]},{"name":"wlan_hosted_network_reason_elevation_required","features":[458]},{"name":"wlan_hosted_network_reason_gp_denied","features":[458]},{"name":"wlan_hosted_network_reason_impersonation","features":[458]},{"name":"wlan_hosted_network_reason_incompatible_connection_started","features":[458]},{"name":"wlan_hosted_network_reason_incompatible_connection_stopped","features":[458]},{"name":"wlan_hosted_network_reason_insufficient_resources","features":[458]},{"name":"wlan_hosted_network_reason_interface_available","features":[458]},{"name":"wlan_hosted_network_reason_interface_unavailable","features":[458]},{"name":"wlan_hosted_network_reason_miniport_started","features":[458]},{"name":"wlan_hosted_network_reason_miniport_stopped","features":[458]},{"name":"wlan_hosted_network_reason_peer_arrived","features":[458]},{"name":"wlan_hosted_network_reason_peer_departed","features":[458]},{"name":"wlan_hosted_network_reason_peer_timeout","features":[458]},{"name":"wlan_hosted_network_reason_persistence_failed","features":[458]},{"name":"wlan_hosted_network_reason_properties_change","features":[458]},{"name":"wlan_hosted_network_reason_read_only","features":[458]},{"name":"wlan_hosted_network_reason_service_available_on_virtual_station","features":[458]},{"name":"wlan_hosted_network_reason_service_shutting_down","features":[458]},{"name":"wlan_hosted_network_reason_service_unavailable","features":[458]},{"name":"wlan_hosted_network_reason_stop_before_start","features":[458]},{"name":"wlan_hosted_network_reason_success","features":[458]},{"name":"wlan_hosted_network_reason_unspecified","features":[458]},{"name":"wlan_hosted_network_reason_user_action","features":[458]},{"name":"wlan_hosted_network_reason_virtual_station_blocking_use","features":[458]},{"name":"wlan_hosted_network_state_change","features":[458]},{"name":"wlan_hosted_network_unavailable","features":[458]},{"name":"wlan_ihv_control_type_driver","features":[458]},{"name":"wlan_ihv_control_type_service","features":[458]},{"name":"wlan_interface_state_ad_hoc_network_formed","features":[458]},{"name":"wlan_interface_state_associating","features":[458]},{"name":"wlan_interface_state_authenticating","features":[458]},{"name":"wlan_interface_state_connected","features":[458]},{"name":"wlan_interface_state_disconnected","features":[458]},{"name":"wlan_interface_state_disconnecting","features":[458]},{"name":"wlan_interface_state_discovering","features":[458]},{"name":"wlan_interface_state_not_ready","features":[458]},{"name":"wlan_interface_type_emulated_802_11","features":[458]},{"name":"wlan_interface_type_invalid","features":[458]},{"name":"wlan_interface_type_native_802_11","features":[458]},{"name":"wlan_intf_opcode_autoconf_enabled","features":[458]},{"name":"wlan_intf_opcode_autoconf_end","features":[458]},{"name":"wlan_intf_opcode_autoconf_start","features":[458]},{"name":"wlan_intf_opcode_background_scan_enabled","features":[458]},{"name":"wlan_intf_opcode_bss_type","features":[458]},{"name":"wlan_intf_opcode_certified_safe_mode","features":[458]},{"name":"wlan_intf_opcode_channel_number","features":[458]},{"name":"wlan_intf_opcode_current_connection","features":[458]},{"name":"wlan_intf_opcode_current_operation_mode","features":[458]},{"name":"wlan_intf_opcode_hosted_network_capable","features":[458]},{"name":"wlan_intf_opcode_ihv_end","features":[458]},{"name":"wlan_intf_opcode_ihv_start","features":[458]},{"name":"wlan_intf_opcode_interface_state","features":[458]},{"name":"wlan_intf_opcode_management_frame_protection_capable","features":[458]},{"name":"wlan_intf_opcode_media_streaming_mode","features":[458]},{"name":"wlan_intf_opcode_msm_end","features":[458]},{"name":"wlan_intf_opcode_msm_start","features":[458]},{"name":"wlan_intf_opcode_radio_state","features":[458]},{"name":"wlan_intf_opcode_rssi","features":[458]},{"name":"wlan_intf_opcode_secondary_sta_interfaces","features":[458]},{"name":"wlan_intf_opcode_secondary_sta_synchronized_connections","features":[458]},{"name":"wlan_intf_opcode_security_end","features":[458]},{"name":"wlan_intf_opcode_security_start","features":[458]},{"name":"wlan_intf_opcode_statistics","features":[458]},{"name":"wlan_intf_opcode_supported_adhoc_auth_cipher_pairs","features":[458]},{"name":"wlan_intf_opcode_supported_country_or_region_string_list","features":[458]},{"name":"wlan_intf_opcode_supported_infrastructure_auth_cipher_pairs","features":[458]},{"name":"wlan_intf_opcode_supported_safe_mode","features":[458]},{"name":"wlan_notification_acm_adhoc_network_state_change","features":[458]},{"name":"wlan_notification_acm_autoconf_disabled","features":[458]},{"name":"wlan_notification_acm_autoconf_enabled","features":[458]},{"name":"wlan_notification_acm_background_scan_disabled","features":[458]},{"name":"wlan_notification_acm_background_scan_enabled","features":[458]},{"name":"wlan_notification_acm_bss_type_change","features":[458]},{"name":"wlan_notification_acm_connection_attempt_fail","features":[458]},{"name":"wlan_notification_acm_connection_complete","features":[458]},{"name":"wlan_notification_acm_connection_start","features":[458]},{"name":"wlan_notification_acm_disconnected","features":[458]},{"name":"wlan_notification_acm_disconnecting","features":[458]},{"name":"wlan_notification_acm_end","features":[458]},{"name":"wlan_notification_acm_filter_list_change","features":[458]},{"name":"wlan_notification_acm_interface_arrival","features":[458]},{"name":"wlan_notification_acm_interface_removal","features":[458]},{"name":"wlan_notification_acm_network_available","features":[458]},{"name":"wlan_notification_acm_network_not_available","features":[458]},{"name":"wlan_notification_acm_operational_state_change","features":[458]},{"name":"wlan_notification_acm_power_setting_change","features":[458]},{"name":"wlan_notification_acm_profile_blocked","features":[458]},{"name":"wlan_notification_acm_profile_change","features":[458]},{"name":"wlan_notification_acm_profile_name_change","features":[458]},{"name":"wlan_notification_acm_profile_unblocked","features":[458]},{"name":"wlan_notification_acm_profiles_exhausted","features":[458]},{"name":"wlan_notification_acm_scan_complete","features":[458]},{"name":"wlan_notification_acm_scan_fail","features":[458]},{"name":"wlan_notification_acm_scan_list_refresh","features":[458]},{"name":"wlan_notification_acm_screen_power_change","features":[458]},{"name":"wlan_notification_acm_start","features":[458]},{"name":"wlan_notification_msm_adapter_operation_mode_change","features":[458]},{"name":"wlan_notification_msm_adapter_removal","features":[458]},{"name":"wlan_notification_msm_associated","features":[458]},{"name":"wlan_notification_msm_associating","features":[458]},{"name":"wlan_notification_msm_authenticating","features":[458]},{"name":"wlan_notification_msm_connected","features":[458]},{"name":"wlan_notification_msm_disassociating","features":[458]},{"name":"wlan_notification_msm_disconnected","features":[458]},{"name":"wlan_notification_msm_end","features":[458]},{"name":"wlan_notification_msm_link_degraded","features":[458]},{"name":"wlan_notification_msm_link_improved","features":[458]},{"name":"wlan_notification_msm_peer_join","features":[458]},{"name":"wlan_notification_msm_peer_leave","features":[458]},{"name":"wlan_notification_msm_radio_state_change","features":[458]},{"name":"wlan_notification_msm_roaming_end","features":[458]},{"name":"wlan_notification_msm_roaming_start","features":[458]},{"name":"wlan_notification_msm_signal_quality_change","features":[458]},{"name":"wlan_notification_msm_start","features":[458]},{"name":"wlan_notification_security_end","features":[458]},{"name":"wlan_notification_security_start","features":[458]},{"name":"wlan_opcode_value_type_invalid","features":[458]},{"name":"wlan_opcode_value_type_query_only","features":[458]},{"name":"wlan_opcode_value_type_set_by_group_policy","features":[458]},{"name":"wlan_opcode_value_type_set_by_user","features":[458]},{"name":"wlan_operational_state_going_off","features":[458]},{"name":"wlan_operational_state_going_on","features":[458]},{"name":"wlan_operational_state_off","features":[458]},{"name":"wlan_operational_state_on","features":[458]},{"name":"wlan_operational_state_unknown","features":[458]},{"name":"wlan_power_setting_invalid","features":[458]},{"name":"wlan_power_setting_low_saving","features":[458]},{"name":"wlan_power_setting_maximum_saving","features":[458]},{"name":"wlan_power_setting_medium_saving","features":[458]},{"name":"wlan_power_setting_no_saving","features":[458]},{"name":"wlan_secure_ac_enabled","features":[458]},{"name":"wlan_secure_add_new_all_user_profiles","features":[458]},{"name":"wlan_secure_add_new_per_user_profiles","features":[458]},{"name":"wlan_secure_all_user_profiles_order","features":[458]},{"name":"wlan_secure_bc_scan_enabled","features":[458]},{"name":"wlan_secure_bss_type","features":[458]},{"name":"wlan_secure_current_operation_mode","features":[458]},{"name":"wlan_secure_deny_list","features":[458]},{"name":"wlan_secure_get_plaintext_key","features":[458]},{"name":"wlan_secure_hosted_network_elevated_access","features":[458]},{"name":"wlan_secure_ihv_control","features":[458]},{"name":"wlan_secure_interface_properties","features":[458]},{"name":"wlan_secure_media_streaming_mode_enabled","features":[458]},{"name":"wlan_secure_permit_list","features":[458]},{"name":"wlan_secure_show_denied","features":[458]},{"name":"wlan_secure_virtual_station_extensibility","features":[458]},{"name":"wlan_secure_wfd_elevated_access","features":[458]}],"464":[{"name":"IWCNConnectNotify","features":[461]},{"name":"IWCNDevice","features":[461]},{"name":"PKEY_WCN_DeviceType_Category","features":[461,376]},{"name":"PKEY_WCN_DeviceType_SubCategory","features":[461,376]},{"name":"PKEY_WCN_DeviceType_SubCategoryOUI","features":[461,376]},{"name":"PKEY_WCN_SSID","features":[461,376]},{"name":"SID_WcnProvider","features":[461]},{"name":"WCNDeviceObject","features":[461]},{"name":"WCN_API_MAX_BUFFER_SIZE","features":[461]},{"name":"WCN_ATTRIBUTE_TYPE","features":[461]},{"name":"WCN_E_AUTHENTICATION_FAILED","features":[461]},{"name":"WCN_E_CONNECTION_REJECTED","features":[461]},{"name":"WCN_E_PEER_NOT_FOUND","features":[461]},{"name":"WCN_E_PROTOCOL_ERROR","features":[461]},{"name":"WCN_E_SESSION_TIMEDOUT","features":[461]},{"name":"WCN_FLAG_AUTHENTICATED_VE","features":[461]},{"name":"WCN_FLAG_DISCOVERY_VE","features":[461]},{"name":"WCN_FLAG_ENCRYPTED_VE","features":[461]},{"name":"WCN_MICROSOFT_VENDOR_ID","features":[461]},{"name":"WCN_NO_SUBTYPE","features":[461]},{"name":"WCN_NUM_ATTRIBUTE_TYPES","features":[461]},{"name":"WCN_PASSWORD_TYPE","features":[461]},{"name":"WCN_PASSWORD_TYPE_OOB_SPECIFIED","features":[461]},{"name":"WCN_PASSWORD_TYPE_PIN","features":[461]},{"name":"WCN_PASSWORD_TYPE_PIN_REGISTRAR_SPECIFIED","features":[461]},{"name":"WCN_PASSWORD_TYPE_PUSH_BUTTON","features":[461]},{"name":"WCN_PASSWORD_TYPE_WFDS","features":[461]},{"name":"WCN_QUERY_CONSTRAINT_USE_SOFTAP","features":[461]},{"name":"WCN_SESSION_STATUS","features":[461]},{"name":"WCN_SESSION_STATUS_FAILURE_GENERIC","features":[461]},{"name":"WCN_SESSION_STATUS_FAILURE_TIMEOUT","features":[461]},{"name":"WCN_SESSION_STATUS_SUCCESS","features":[461]},{"name":"WCN_TYPE_802_1X_ENABLED","features":[461]},{"name":"WCN_TYPE_APPLICATION_EXTENSION","features":[461]},{"name":"WCN_TYPE_APPSESSIONKEY","features":[461]},{"name":"WCN_TYPE_AP_CHANNEL","features":[461]},{"name":"WCN_TYPE_AP_SETUP_LOCKED","features":[461]},{"name":"WCN_TYPE_ASSOCIATION_STATE","features":[461]},{"name":"WCN_TYPE_AUTHENTICATION_TYPE","features":[461]},{"name":"WCN_TYPE_AUTHENTICATION_TYPE_FLAGS","features":[461]},{"name":"WCN_TYPE_AUTHENTICATOR","features":[461]},{"name":"WCN_TYPE_AUTHORIZED_MACS","features":[461]},{"name":"WCN_TYPE_BSSID","features":[461]},{"name":"WCN_TYPE_CONFIGURATION_ERROR","features":[461]},{"name":"WCN_TYPE_CONFIG_METHODS","features":[461]},{"name":"WCN_TYPE_CONFIRMATION_URL4","features":[461]},{"name":"WCN_TYPE_CONFIRMATION_URL6","features":[461]},{"name":"WCN_TYPE_CONNECTION_TYPE","features":[461]},{"name":"WCN_TYPE_CONNECTION_TYPE_FLAGS","features":[461]},{"name":"WCN_TYPE_CREDENTIAL","features":[461]},{"name":"WCN_TYPE_CURRENT_SSID","features":[461]},{"name":"WCN_TYPE_DEVICE_NAME","features":[461]},{"name":"WCN_TYPE_DEVICE_PASSWORD_ID","features":[461]},{"name":"WCN_TYPE_DOT11_MAC_ADDRESS","features":[461]},{"name":"WCN_TYPE_EAP_IDENTITY","features":[461]},{"name":"WCN_TYPE_EAP_TYPE","features":[461]},{"name":"WCN_TYPE_ENCRYPTED_SETTINGS","features":[461]},{"name":"WCN_TYPE_ENCRYPTION_TYPE","features":[461]},{"name":"WCN_TYPE_ENCRYPTION_TYPE_FLAGS","features":[461]},{"name":"WCN_TYPE_ENROLLEE_NONCE","features":[461]},{"name":"WCN_TYPE_E_HASH1","features":[461]},{"name":"WCN_TYPE_E_HASH2","features":[461]},{"name":"WCN_TYPE_E_SNONCE1","features":[461]},{"name":"WCN_TYPE_E_SNONCE2","features":[461]},{"name":"WCN_TYPE_FEATURE_ID","features":[461]},{"name":"WCN_TYPE_IDENTITY","features":[461]},{"name":"WCN_TYPE_IDENTITY_PROOF","features":[461]},{"name":"WCN_TYPE_INITIALIZATION_VECTOR","features":[461]},{"name":"WCN_TYPE_KEY_IDENTIFIER","features":[461]},{"name":"WCN_TYPE_KEY_LIFETIME","features":[461]},{"name":"WCN_TYPE_KEY_PROVIDED_AUTOMATICALLY","features":[461]},{"name":"WCN_TYPE_KEY_WRAP_AUTHENTICATOR","features":[461]},{"name":"WCN_TYPE_MAC_ADDRESS","features":[461]},{"name":"WCN_TYPE_MANUFACTURER","features":[461]},{"name":"WCN_TYPE_MESSAGE_COUNTER","features":[461]},{"name":"WCN_TYPE_MESSAGE_TYPE","features":[461]},{"name":"WCN_TYPE_MODEL_NAME","features":[461]},{"name":"WCN_TYPE_MODEL_NUMBER","features":[461]},{"name":"WCN_TYPE_NETWORK_INDEX","features":[461]},{"name":"WCN_TYPE_NETWORK_KEY","features":[461]},{"name":"WCN_TYPE_NETWORK_KEY_INDEX","features":[461]},{"name":"WCN_TYPE_NETWORK_KEY_SHAREABLE","features":[461]},{"name":"WCN_TYPE_NEW_DEVICE_NAME","features":[461]},{"name":"WCN_TYPE_NEW_PASSWORD","features":[461]},{"name":"WCN_TYPE_OOB_DEVICE_PASSWORD","features":[461]},{"name":"WCN_TYPE_OS_VERSION","features":[461]},{"name":"WCN_TYPE_PERMITTED_CONFIG_METHODS","features":[461]},{"name":"WCN_TYPE_PORTABLE_DEVICE","features":[461]},{"name":"WCN_TYPE_POWER_LEVEL","features":[461]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE","features":[461]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE_CATEGORY","features":[461]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE_SUBCATEGORY","features":[461]},{"name":"WCN_TYPE_PRIMARY_DEVICE_TYPE_SUBCATEGORY_OUI","features":[461]},{"name":"WCN_TYPE_PSK_CURRENT","features":[461]},{"name":"WCN_TYPE_PSK_MAX","features":[461]},{"name":"WCN_TYPE_PUBLIC_KEY","features":[461]},{"name":"WCN_TYPE_PUBLIC_KEY_HASH","features":[461]},{"name":"WCN_TYPE_RADIO_ENABLED","features":[461]},{"name":"WCN_TYPE_REBOOT","features":[461]},{"name":"WCN_TYPE_REGISTRAR_CURRENT","features":[461]},{"name":"WCN_TYPE_REGISTRAR_ESTABLISHED","features":[461]},{"name":"WCN_TYPE_REGISTRAR_LIST","features":[461]},{"name":"WCN_TYPE_REGISTRAR_MAX","features":[461]},{"name":"WCN_TYPE_REGISTRAR_NONCE","features":[461]},{"name":"WCN_TYPE_REKEY_KEY","features":[461]},{"name":"WCN_TYPE_REQUESTED_DEVICE_TYPE","features":[461]},{"name":"WCN_TYPE_REQUEST_TO_ENROLL","features":[461]},{"name":"WCN_TYPE_REQUEST_TYPE","features":[461]},{"name":"WCN_TYPE_RESPONSE_TYPE","features":[461]},{"name":"WCN_TYPE_RF_BANDS","features":[461]},{"name":"WCN_TYPE_R_HASH1","features":[461]},{"name":"WCN_TYPE_R_HASH2","features":[461]},{"name":"WCN_TYPE_R_SNONCE1","features":[461]},{"name":"WCN_TYPE_R_SNONCE2","features":[461]},{"name":"WCN_TYPE_SECONDARY_DEVICE_TYPE_LIST","features":[461]},{"name":"WCN_TYPE_SELECTED_REGISTRAR","features":[461]},{"name":"WCN_TYPE_SELECTED_REGISTRAR_CONFIG_METHODS","features":[461]},{"name":"WCN_TYPE_SERIAL_NUMBER","features":[461]},{"name":"WCN_TYPE_SETTINGS_DELAY_TIME","features":[461]},{"name":"WCN_TYPE_SSID","features":[461]},{"name":"WCN_TYPE_TOTAL_NETWORKS","features":[461]},{"name":"WCN_TYPE_UUID","features":[461]},{"name":"WCN_TYPE_UUID_E","features":[461]},{"name":"WCN_TYPE_UUID_R","features":[461]},{"name":"WCN_TYPE_VENDOR_EXTENSION","features":[461]},{"name":"WCN_TYPE_VENDOR_EXTENSION_WFA","features":[461]},{"name":"WCN_TYPE_VERSION","features":[461]},{"name":"WCN_TYPE_VERSION2","features":[461]},{"name":"WCN_TYPE_WEPTRANSMITKEY","features":[461]},{"name":"WCN_TYPE_WI_FI_PROTECTED_SETUP_STATE","features":[461]},{"name":"WCN_TYPE_X_509_CERTIFICATE","features":[461]},{"name":"WCN_TYPE_X_509_CERTIFICATE_REQUEST","features":[461]},{"name":"WCN_VALUE_AS_ASSOCIATION_FAILURE","features":[461]},{"name":"WCN_VALUE_AS_CONFIGURATION_FAILURE","features":[461]},{"name":"WCN_VALUE_AS_CONNECTION_SUCCESS","features":[461]},{"name":"WCN_VALUE_AS_IP_FAILURE","features":[461]},{"name":"WCN_VALUE_AS_NOT_ASSOCIATED","features":[461]},{"name":"WCN_VALUE_AT_OPEN","features":[461]},{"name":"WCN_VALUE_AT_SHARED","features":[461]},{"name":"WCN_VALUE_AT_WPA","features":[461]},{"name":"WCN_VALUE_AT_WPA2","features":[461]},{"name":"WCN_VALUE_AT_WPA2PSK","features":[461]},{"name":"WCN_VALUE_AT_WPAPSK","features":[461]},{"name":"WCN_VALUE_AT_WPAWPA2PSK_MIXED","features":[461]},{"name":"WCN_VALUE_CE_2_4_CHANNEL_NOT_SUPPORTED","features":[461]},{"name":"WCN_VALUE_CE_5_0_CHANNEL_NOT_SUPPORTED","features":[461]},{"name":"WCN_VALUE_CE_COULD_NOT_CONNECT_TO_REGISTRAR","features":[461]},{"name":"WCN_VALUE_CE_DECRYPTION_CRC_FAILURE","features":[461]},{"name":"WCN_VALUE_CE_DEVICE_BUSY","features":[461]},{"name":"WCN_VALUE_CE_DEVICE_PASSWORD_AUTH_FAILURE","features":[461]},{"name":"WCN_VALUE_CE_FAILED_DHCP_CONFIG","features":[461]},{"name":"WCN_VALUE_CE_IP_ADDRESS_CONFLICT","features":[461]},{"name":"WCN_VALUE_CE_MESSAGE_TIMEOUT","features":[461]},{"name":"WCN_VALUE_CE_MULTIPLE_PBC_SESSIONS_DETECTED","features":[461]},{"name":"WCN_VALUE_CE_NETWORK_ASSOCIATION_FAILURE","features":[461]},{"name":"WCN_VALUE_CE_NETWORK_AUTHENTICATION_FAILURE","features":[461]},{"name":"WCN_VALUE_CE_NO_DHCP_RESPONSE","features":[461]},{"name":"WCN_VALUE_CE_NO_ERROR","features":[461]},{"name":"WCN_VALUE_CE_OOB_INTERFACE_READ_ERROR","features":[461]},{"name":"WCN_VALUE_CE_REGISTRATION_SESSION_TIMEOUT","features":[461]},{"name":"WCN_VALUE_CE_ROGUE_ACTIVITY_SUSPECTED","features":[461]},{"name":"WCN_VALUE_CE_SETUP_LOCKED","features":[461]},{"name":"WCN_VALUE_CE_SIGNAL_TOO_WEAK","features":[461]},{"name":"WCN_VALUE_CM_DISPLAY","features":[461]},{"name":"WCN_VALUE_CM_ETHERNET","features":[461]},{"name":"WCN_VALUE_CM_EXTERNAL_NFC","features":[461]},{"name":"WCN_VALUE_CM_INTEGRATED_NFC","features":[461]},{"name":"WCN_VALUE_CM_KEYPAD","features":[461]},{"name":"WCN_VALUE_CM_LABEL","features":[461]},{"name":"WCN_VALUE_CM_NFC_INTERFACE","features":[461]},{"name":"WCN_VALUE_CM_PHYS_DISPLAY","features":[461]},{"name":"WCN_VALUE_CM_PHYS_PUSHBUTTON","features":[461]},{"name":"WCN_VALUE_CM_PUSHBUTTON","features":[461]},{"name":"WCN_VALUE_CM_USBA","features":[461]},{"name":"WCN_VALUE_CM_VIRT_DISPLAY","features":[461]},{"name":"WCN_VALUE_CM_VIRT_PUSHBUTTON","features":[461]},{"name":"WCN_VALUE_CT_ESS","features":[461]},{"name":"WCN_VALUE_CT_IBSS","features":[461]},{"name":"WCN_VALUE_DP_DEFAULT","features":[461]},{"name":"WCN_VALUE_DP_MACHINE_SPECIFIED","features":[461]},{"name":"WCN_VALUE_DP_NFC_CONNECTION_HANDOVER","features":[461]},{"name":"WCN_VALUE_DP_OUTOFBAND_MAX","features":[461]},{"name":"WCN_VALUE_DP_OUTOFBAND_MIN","features":[461]},{"name":"WCN_VALUE_DP_PUSHBUTTON","features":[461]},{"name":"WCN_VALUE_DP_REGISTRAR_SPECIFIED","features":[461]},{"name":"WCN_VALUE_DP_REKEY","features":[461]},{"name":"WCN_VALUE_DP_USER_SPECIFIED","features":[461]},{"name":"WCN_VALUE_DP_WFD_SERVICES","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_AUDIO_DEVICE","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_CAMERA","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_COMPUTER","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_DISPLAY","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_GAMING_DEVICE","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_INPUT_DEVICE","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_MULTIMEDIA_DEVICE","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_NETWORK_INFRASTRUCTURE","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_OTHER","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_PRINTER","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_STORAGE","features":[461]},{"name":"WCN_VALUE_DT_CATEGORY_TELEPHONE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__HEADPHONES","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__HEADSET","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__HOMETHEATER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__MICROPHONE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__PMP","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__SPEAKERS","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_AUDIO_DEVICE__TUNER_RECEIVER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__SECURITY_CAMERA","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__STILL_CAMERA","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__VIDEO_CAMERA","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_CAMERA__WEB_CAMERA","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__DESKTOP","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__MEDIACENTER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__MID","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__NETBOOK","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__NOTEBOOK","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__PC","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__SERVER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_COMPUTER__ULTRAMOBILEPC","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__MONITOR","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__PICTURE_FRAME","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__PROJECTOR","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_DISPLAY__TELEVISION","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__CONSOLE_ADAPT","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__PLAYSTATION","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__PORTABLE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__XBOX","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_GAMING_DEVICE__XBOX360","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__BARCODEREADER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__BIOMETRICREADER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__GAMECONTROLLER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__JOYSTICK","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__KEYBOARD","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__MOUSE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__REMOTE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__TOUCHSCREEN","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_INPUT_DEVICE__TRACKBALL","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__DAR","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__MCX","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__MEDIA_SERVER_ADAPT_EXT","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__PVP","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__PVR","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_MULTIMEDIA_DEVICE__SETTOPBOX","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__AP","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__BRIDGE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__GATEWAY","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__ROUTER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_NETWORK_INFRASTRUCUTURE__SWITCH","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__ALLINONE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__COPIER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__FAX","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__PRINTER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_PRINTER__SCANNER","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_STORAGE__NAS","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__PHONE_DUALMODE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__PHONE_SINGLEMODE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__SMARTPHONE_DUALMODE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__SMARTPHONE_SINGLEMODE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_TELEPHONE__WINDOWS_MOBILE","features":[461]},{"name":"WCN_VALUE_DT_SUBTYPE_WIFI_OUI","features":[461]},{"name":"WCN_VALUE_ET_AES","features":[461]},{"name":"WCN_VALUE_ET_NONE","features":[461]},{"name":"WCN_VALUE_ET_TKIP","features":[461]},{"name":"WCN_VALUE_ET_TKIP_AES_MIXED","features":[461]},{"name":"WCN_VALUE_ET_WEP","features":[461]},{"name":"WCN_VALUE_FALSE","features":[461]},{"name":"WCN_VALUE_MT_ACK","features":[461]},{"name":"WCN_VALUE_MT_BEACON","features":[461]},{"name":"WCN_VALUE_MT_DONE","features":[461]},{"name":"WCN_VALUE_MT_M1","features":[461]},{"name":"WCN_VALUE_MT_M2","features":[461]},{"name":"WCN_VALUE_MT_M2D","features":[461]},{"name":"WCN_VALUE_MT_M3","features":[461]},{"name":"WCN_VALUE_MT_M4","features":[461]},{"name":"WCN_VALUE_MT_M5","features":[461]},{"name":"WCN_VALUE_MT_M6","features":[461]},{"name":"WCN_VALUE_MT_M7","features":[461]},{"name":"WCN_VALUE_MT_M8","features":[461]},{"name":"WCN_VALUE_MT_NACK","features":[461]},{"name":"WCN_VALUE_MT_PROBE_REQUEST","features":[461]},{"name":"WCN_VALUE_MT_PROBE_RESPONSE","features":[461]},{"name":"WCN_VALUE_RB_24GHZ","features":[461]},{"name":"WCN_VALUE_RB_50GHZ","features":[461]},{"name":"WCN_VALUE_ReqT_ENROLLEE_INFO","features":[461]},{"name":"WCN_VALUE_ReqT_ENROLLEE_OPEN_1X","features":[461]},{"name":"WCN_VALUE_ReqT_MANAGER_REGISTRAR","features":[461]},{"name":"WCN_VALUE_ReqT_REGISTRAR","features":[461]},{"name":"WCN_VALUE_RspT_AP","features":[461]},{"name":"WCN_VALUE_RspT_ENROLLEE_INFO","features":[461]},{"name":"WCN_VALUE_RspT_ENROLLEE_OPEN_1X","features":[461]},{"name":"WCN_VALUE_RspT_REGISTRAR","features":[461]},{"name":"WCN_VALUE_SS_CONFIGURED","features":[461]},{"name":"WCN_VALUE_SS_NOT_CONFIGURED","features":[461]},{"name":"WCN_VALUE_SS_RESERVED00","features":[461]},{"name":"WCN_VALUE_TRUE","features":[461]},{"name":"WCN_VALUE_TYPE_ASSOCIATION_STATE","features":[461]},{"name":"WCN_VALUE_TYPE_AUTHENTICATION_TYPE","features":[461]},{"name":"WCN_VALUE_TYPE_BOOLEAN","features":[461]},{"name":"WCN_VALUE_TYPE_CONFIGURATION_ERROR","features":[461]},{"name":"WCN_VALUE_TYPE_CONFIG_METHODS","features":[461]},{"name":"WCN_VALUE_TYPE_CONNECTION_TYPE","features":[461]},{"name":"WCN_VALUE_TYPE_DEVICE_PASSWORD_ID","features":[461]},{"name":"WCN_VALUE_TYPE_ENCRYPTION_TYPE","features":[461]},{"name":"WCN_VALUE_TYPE_MESSAGE_TYPE","features":[461]},{"name":"WCN_VALUE_TYPE_PRIMARY_DEVICE_TYPE","features":[461]},{"name":"WCN_VALUE_TYPE_REQUEST_TYPE","features":[461]},{"name":"WCN_VALUE_TYPE_RESPONSE_TYPE","features":[461]},{"name":"WCN_VALUE_TYPE_RF_BANDS","features":[461]},{"name":"WCN_VALUE_TYPE_VERSION","features":[461]},{"name":"WCN_VALUE_TYPE_WI_FI_PROTECTED_SETUP_STATE","features":[461]},{"name":"WCN_VALUE_VERSION_1_0","features":[461]},{"name":"WCN_VALUE_VERSION_2_0","features":[461]},{"name":"WCN_VENDOR_EXTENSION_SPEC","features":[461]}],"465":[{"name":"FreeInterfaceContextTable","features":[305,462]},{"name":"GetInterfaceContextTableForHostName","features":[305,462]},{"name":"NET_INTERFACE_CONTEXT","features":[462]},{"name":"NET_INTERFACE_CONTEXT_TABLE","features":[305,462]},{"name":"NET_INTERFACE_FLAG_CONNECT_IF_NEEDED","features":[462]},{"name":"NET_INTERFACE_FLAG_NONE","features":[462]},{"name":"ONDEMAND_NOTIFICATION_CALLBACK","features":[462]},{"name":"OnDemandGetRoutingHint","features":[462]},{"name":"OnDemandRegisterNotification","features":[305,462]},{"name":"OnDemandUnRegisterNotification","features":[305,462]},{"name":"WCM_API_VERSION","features":[462]},{"name":"WCM_API_VERSION_1_0","features":[462]},{"name":"WCM_BILLING_CYCLE_INFO","features":[305,462]},{"name":"WCM_CONNECTION_COST","features":[462]},{"name":"WCM_CONNECTION_COST_APPROACHINGDATALIMIT","features":[462]},{"name":"WCM_CONNECTION_COST_CONGESTED","features":[462]},{"name":"WCM_CONNECTION_COST_DATA","features":[462]},{"name":"WCM_CONNECTION_COST_FIXED","features":[462]},{"name":"WCM_CONNECTION_COST_OVERDATALIMIT","features":[462]},{"name":"WCM_CONNECTION_COST_ROAMING","features":[462]},{"name":"WCM_CONNECTION_COST_SOURCE","features":[462]},{"name":"WCM_CONNECTION_COST_SOURCE_DEFAULT","features":[462]},{"name":"WCM_CONNECTION_COST_SOURCE_GP","features":[462]},{"name":"WCM_CONNECTION_COST_SOURCE_OPERATOR","features":[462]},{"name":"WCM_CONNECTION_COST_SOURCE_USER","features":[462]},{"name":"WCM_CONNECTION_COST_UNKNOWN","features":[462]},{"name":"WCM_CONNECTION_COST_UNRESTRICTED","features":[462]},{"name":"WCM_CONNECTION_COST_VARIABLE","features":[462]},{"name":"WCM_DATAPLAN_STATUS","features":[305,462]},{"name":"WCM_MAX_PROFILE_NAME","features":[462]},{"name":"WCM_MEDIA_TYPE","features":[462]},{"name":"WCM_POLICY_VALUE","features":[305,462]},{"name":"WCM_PROFILE_INFO","features":[462]},{"name":"WCM_PROFILE_INFO_LIST","features":[462]},{"name":"WCM_PROPERTY","features":[462]},{"name":"WCM_TIME_INTERVAL","features":[462]},{"name":"WCM_UNKNOWN_DATAPLAN_STATUS","features":[462]},{"name":"WCM_USAGE_DATA","features":[305,462]},{"name":"WcmFreeMemory","features":[462]},{"name":"WcmGetProfileList","features":[462]},{"name":"WcmQueryProperty","features":[462]},{"name":"WcmSetProfileList","features":[305,462]},{"name":"WcmSetProperty","features":[462]},{"name":"wcm_global_property_domain_policy","features":[462]},{"name":"wcm_global_property_minimize_policy","features":[462]},{"name":"wcm_global_property_powermanagement_policy","features":[462]},{"name":"wcm_global_property_roaming_policy","features":[462]},{"name":"wcm_intf_property_connection_cost","features":[462]},{"name":"wcm_intf_property_dataplan_status","features":[462]},{"name":"wcm_intf_property_hotspot_profile","features":[462]},{"name":"wcm_media_ethernet","features":[462]},{"name":"wcm_media_invalid","features":[462]},{"name":"wcm_media_max","features":[462]},{"name":"wcm_media_mbn","features":[462]},{"name":"wcm_media_unknown","features":[462]},{"name":"wcm_media_wlan","features":[462]}],"466":[{"name":"DL_ADDRESS_TYPE","features":[321]},{"name":"DlBroadcast","features":[321]},{"name":"DlMulticast","features":[321]},{"name":"DlUnicast","features":[321]},{"name":"FWPM_ACTION0","features":[321]},{"name":"FWPM_ACTRL_ADD","features":[321]},{"name":"FWPM_ACTRL_ADD_LINK","features":[321]},{"name":"FWPM_ACTRL_BEGIN_READ_TXN","features":[321]},{"name":"FWPM_ACTRL_BEGIN_WRITE_TXN","features":[321]},{"name":"FWPM_ACTRL_CLASSIFY","features":[321]},{"name":"FWPM_ACTRL_ENUM","features":[321]},{"name":"FWPM_ACTRL_OPEN","features":[321]},{"name":"FWPM_ACTRL_READ","features":[321]},{"name":"FWPM_ACTRL_READ_STATS","features":[321]},{"name":"FWPM_ACTRL_SUBSCRIBE","features":[321]},{"name":"FWPM_ACTRL_WRITE","features":[321]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT","features":[321]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT_SERVER","features":[321]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_INTERNET_PRIVATE_NETWORK","features":[321]},{"name":"FWPM_APPC_NETWORK_CAPABILITY_TYPE","features":[321]},{"name":"FWPM_AUTO_WEIGHT_BITS","features":[321]},{"name":"FWPM_CALLOUT0","features":[321]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_1","features":[321]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_2","features":[321]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_3","features":[321]},{"name":"FWPM_CALLOUT_BUILT_IN_RESERVED_4","features":[321]},{"name":"FWPM_CALLOUT_CHANGE0","features":[321]},{"name":"FWPM_CALLOUT_CHANGE_CALLBACK0","features":[321]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_LISTEN_V4","features":[321]},{"name":"FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_RESOURCE_ASSIGNMENT_V4","features":[321]},{"name":"FWPM_CALLOUT_ENUM_TEMPLATE0","features":[321]},{"name":"FWPM_CALLOUT_FLAG_PERSISTENT","features":[321]},{"name":"FWPM_CALLOUT_FLAG_REGISTERED","features":[321]},{"name":"FWPM_CALLOUT_FLAG_USES_PROVIDER_CONTEXT","features":[321]},{"name":"FWPM_CALLOUT_HTTP_TEMPLATE_SSL_HANDSHAKE","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_ALE_CONNECT_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V6","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V4","features":[321]},{"name":"FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V6","features":[321]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_SUBSCRIPTION0","features":[321]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V4","features":[321]},{"name":"FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V6","features":[321]},{"name":"FWPM_CALLOUT_TEREDO_ALE_LISTEN_V6","features":[321]},{"name":"FWPM_CALLOUT_TEREDO_ALE_RESOURCE_ASSIGNMENT_V6","features":[321]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V4_SILENT_DROP","features":[321]},{"name":"FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V6_SILENT_DROP","features":[321]},{"name":"FWPM_CHANGE_ADD","features":[321]},{"name":"FWPM_CHANGE_DELETE","features":[321]},{"name":"FWPM_CHANGE_TYPE","features":[321]},{"name":"FWPM_CHANGE_TYPE_MAX","features":[321]},{"name":"FWPM_CLASSIFY_OPTION0","features":[321,308]},{"name":"FWPM_CLASSIFY_OPTIONS0","features":[321,308]},{"name":"FWPM_CLASSIFY_OPTIONS_CONTEXT","features":[321]},{"name":"FWPM_CONDITION_ALE_APP_ID","features":[321]},{"name":"FWPM_CONDITION_ALE_EFFECTIVE_NAME","features":[321]},{"name":"FWPM_CONDITION_ALE_NAP_CONTEXT","features":[321]},{"name":"FWPM_CONDITION_ALE_ORIGINAL_APP_ID","features":[321]},{"name":"FWPM_CONDITION_ALE_PACKAGE_ID","features":[321]},{"name":"FWPM_CONDITION_ALE_PROMISCUOUS_MODE","features":[321]},{"name":"FWPM_CONDITION_ALE_REAUTH_REASON","features":[321]},{"name":"FWPM_CONDITION_ALE_REMOTE_MACHINE_ID","features":[321]},{"name":"FWPM_CONDITION_ALE_REMOTE_USER_ID","features":[321]},{"name":"FWPM_CONDITION_ALE_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[321]},{"name":"FWPM_CONDITION_ALE_SIO_FIREWALL_SYSTEM_PORT","features":[321]},{"name":"FWPM_CONDITION_ALE_USER_ID","features":[321]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_PROFILE_ID","features":[321]},{"name":"FWPM_CONDITION_ARRIVAL_INTERFACE_TYPE","features":[321]},{"name":"FWPM_CONDITION_ARRIVAL_TUNNEL_TYPE","features":[321]},{"name":"FWPM_CONDITION_AUTHENTICATION_TYPE","features":[321]},{"name":"FWPM_CONDITION_CLIENT_CERT_KEY_LENGTH","features":[321]},{"name":"FWPM_CONDITION_CLIENT_CERT_OID","features":[321]},{"name":"FWPM_CONDITION_CLIENT_TOKEN","features":[321]},{"name":"FWPM_CONDITION_COMPARTMENT_ID","features":[321]},{"name":"FWPM_CONDITION_CURRENT_PROFILE_ID","features":[321]},{"name":"FWPM_CONDITION_DCOM_APP_ID","features":[321]},{"name":"FWPM_CONDITION_DESTINATION_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_DESTINATION_SUB_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_DIRECTION","features":[321]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_ADDRESS_TYPE","features":[321]},{"name":"FWPM_CONDITION_EMBEDDED_LOCAL_PORT","features":[321]},{"name":"FWPM_CONDITION_EMBEDDED_PROTOCOL","features":[321]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_EMBEDDED_REMOTE_PORT","features":[321]},{"name":"FWPM_CONDITION_ETHER_TYPE","features":[321]},{"name":"FWPM_CONDITION_FLAGS","features":[321]},{"name":"FWPM_CONDITION_IMAGE_NAME","features":[321]},{"name":"FWPM_CONDITION_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_INTERFACE_MAC_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_INTERFACE_QUARANTINE_EPOCH","features":[321]},{"name":"FWPM_CONDITION_INTERFACE_TYPE","features":[321]},{"name":"FWPM_CONDITION_IPSEC_POLICY_KEY","features":[321]},{"name":"FWPM_CONDITION_IPSEC_SECURITY_REALM_ID","features":[321]},{"name":"FWPM_CONDITION_IP_ARRIVAL_INTERFACE","features":[321]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_IP_DESTINATION_ADDRESS_TYPE","features":[321]},{"name":"FWPM_CONDITION_IP_DESTINATION_PORT","features":[321]},{"name":"FWPM_CONDITION_IP_FORWARD_INTERFACE","features":[321]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_TYPE","features":[321]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V4","features":[321]},{"name":"FWPM_CONDITION_IP_LOCAL_ADDRESS_V6","features":[321]},{"name":"FWPM_CONDITION_IP_LOCAL_INTERFACE","features":[321]},{"name":"FWPM_CONDITION_IP_LOCAL_PORT","features":[321]},{"name":"FWPM_CONDITION_IP_NEXTHOP_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_IP_NEXTHOP_INTERFACE","features":[321]},{"name":"FWPM_CONDITION_IP_PHYSICAL_ARRIVAL_INTERFACE","features":[321]},{"name":"FWPM_CONDITION_IP_PHYSICAL_NEXTHOP_INTERFACE","features":[321]},{"name":"FWPM_CONDITION_IP_PROTOCOL","features":[321]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V4","features":[321]},{"name":"FWPM_CONDITION_IP_REMOTE_ADDRESS_V6","features":[321]},{"name":"FWPM_CONDITION_IP_REMOTE_PORT","features":[321]},{"name":"FWPM_CONDITION_IP_SOURCE_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_IP_SOURCE_PORT","features":[321]},{"name":"FWPM_CONDITION_KM_AUTH_NAP_CONTEXT","features":[321]},{"name":"FWPM_CONDITION_KM_MODE","features":[321]},{"name":"FWPM_CONDITION_KM_TYPE","features":[321]},{"name":"FWPM_CONDITION_L2_FLAGS","features":[321]},{"name":"FWPM_CONDITION_LOCAL_INTERFACE_PROFILE_ID","features":[321]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_MAC_DESTINATION_ADDRESS_TYPE","features":[321]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_MAC_LOCAL_ADDRESS_TYPE","features":[321]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_MAC_REMOTE_ADDRESS_TYPE","features":[321]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS","features":[321]},{"name":"FWPM_CONDITION_MAC_SOURCE_ADDRESS_TYPE","features":[321]},{"name":"FWPM_CONDITION_NDIS_MEDIA_TYPE","features":[321]},{"name":"FWPM_CONDITION_NDIS_PHYSICAL_MEDIA_TYPE","features":[321]},{"name":"FWPM_CONDITION_NDIS_PORT","features":[321]},{"name":"FWPM_CONDITION_NET_EVENT_TYPE","features":[321]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_PROFILE_ID","features":[321]},{"name":"FWPM_CONDITION_NEXTHOP_INTERFACE_TYPE","features":[321]},{"name":"FWPM_CONDITION_NEXTHOP_SUB_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_NEXTHOP_TUNNEL_TYPE","features":[321]},{"name":"FWPM_CONDITION_ORIGINAL_ICMP_TYPE","features":[321]},{"name":"FWPM_CONDITION_ORIGINAL_PROFILE_ID","features":[321]},{"name":"FWPM_CONDITION_PEER_NAME","features":[321]},{"name":"FWPM_CONDITION_PIPE","features":[321]},{"name":"FWPM_CONDITION_PROCESS_WITH_RPC_IF_UUID","features":[321]},{"name":"FWPM_CONDITION_QM_MODE","features":[321]},{"name":"FWPM_CONDITION_REAUTHORIZE_REASON","features":[321]},{"name":"FWPM_CONDITION_REMOTE_ID","features":[321]},{"name":"FWPM_CONDITION_REMOTE_USER_TOKEN","features":[321]},{"name":"FWPM_CONDITION_RESERVED0","features":[321]},{"name":"FWPM_CONDITION_RESERVED1","features":[321]},{"name":"FWPM_CONDITION_RESERVED10","features":[321]},{"name":"FWPM_CONDITION_RESERVED11","features":[321]},{"name":"FWPM_CONDITION_RESERVED12","features":[321]},{"name":"FWPM_CONDITION_RESERVED13","features":[321]},{"name":"FWPM_CONDITION_RESERVED14","features":[321]},{"name":"FWPM_CONDITION_RESERVED15","features":[321]},{"name":"FWPM_CONDITION_RESERVED2","features":[321]},{"name":"FWPM_CONDITION_RESERVED3","features":[321]},{"name":"FWPM_CONDITION_RESERVED4","features":[321]},{"name":"FWPM_CONDITION_RESERVED5","features":[321]},{"name":"FWPM_CONDITION_RESERVED6","features":[321]},{"name":"FWPM_CONDITION_RESERVED7","features":[321]},{"name":"FWPM_CONDITION_RESERVED8","features":[321]},{"name":"FWPM_CONDITION_RESERVED9","features":[321]},{"name":"FWPM_CONDITION_RPC_AUTH_LEVEL","features":[321]},{"name":"FWPM_CONDITION_RPC_AUTH_TYPE","features":[321]},{"name":"FWPM_CONDITION_RPC_EP_FLAGS","features":[321]},{"name":"FWPM_CONDITION_RPC_EP_VALUE","features":[321]},{"name":"FWPM_CONDITION_RPC_IF_FLAG","features":[321]},{"name":"FWPM_CONDITION_RPC_IF_UUID","features":[321]},{"name":"FWPM_CONDITION_RPC_IF_VERSION","features":[321]},{"name":"FWPM_CONDITION_RPC_PROTOCOL","features":[321]},{"name":"FWPM_CONDITION_RPC_PROXY_AUTH_TYPE","features":[321]},{"name":"FWPM_CONDITION_RPC_SERVER_NAME","features":[321]},{"name":"FWPM_CONDITION_RPC_SERVER_PORT","features":[321]},{"name":"FWPM_CONDITION_SEC_ENCRYPT_ALGORITHM","features":[321]},{"name":"FWPM_CONDITION_SEC_KEY_SIZE","features":[321]},{"name":"FWPM_CONDITION_SOURCE_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_SOURCE_SUB_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_SUB_INTERFACE_INDEX","features":[321]},{"name":"FWPM_CONDITION_TUNNEL_TYPE","features":[321]},{"name":"FWPM_CONDITION_VLAN_ID","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_ID","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_TYPE","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_DESTINATION_VM_ID","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_ID","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_NETWORK_TYPE","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_ID","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_TYPE","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_SOURCE_VM_ID","features":[321]},{"name":"FWPM_CONDITION_VSWITCH_TENANT_NETWORK_ID","features":[321]},{"name":"FWPM_CONNECTION0","features":[305,321]},{"name":"FWPM_CONNECTION_CALLBACK0","features":[305,321]},{"name":"FWPM_CONNECTION_ENUM_FLAG_QUERY_BYTES_TRANSFERRED","features":[321]},{"name":"FWPM_CONNECTION_ENUM_TEMPLATE0","features":[321]},{"name":"FWPM_CONNECTION_EVENT_ADD","features":[321]},{"name":"FWPM_CONNECTION_EVENT_DELETE","features":[321]},{"name":"FWPM_CONNECTION_EVENT_MAX","features":[321]},{"name":"FWPM_CONNECTION_EVENT_TYPE","features":[321]},{"name":"FWPM_CONNECTION_SUBSCRIPTION0","features":[321]},{"name":"FWPM_DISPLAY_DATA0","features":[321]},{"name":"FWPM_DYNAMIC_KEYWORD_CALLBACK0","features":[321]},{"name":"FWPM_ENGINE_COLLECT_NET_EVENTS","features":[321]},{"name":"FWPM_ENGINE_MONITOR_IPSEC_CONNECTIONS","features":[321]},{"name":"FWPM_ENGINE_NAME_CACHE","features":[321]},{"name":"FWPM_ENGINE_NET_EVENT_MATCH_ANY_KEYWORDS","features":[321]},{"name":"FWPM_ENGINE_OPTION","features":[321]},{"name":"FWPM_ENGINE_OPTION_MAX","features":[321]},{"name":"FWPM_ENGINE_OPTION_PACKET_BATCH_INBOUND","features":[321]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_FORWARD","features":[321]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_INBOUND","features":[321]},{"name":"FWPM_ENGINE_OPTION_PACKET_QUEUE_NONE","features":[321]},{"name":"FWPM_ENGINE_PACKET_QUEUING","features":[321]},{"name":"FWPM_ENGINE_TXN_WATCHDOG_TIMEOUT_IN_MSEC","features":[321]},{"name":"FWPM_FIELD0","features":[321]},{"name":"FWPM_FIELD_FLAGS","features":[321]},{"name":"FWPM_FIELD_IP_ADDRESS","features":[321]},{"name":"FWPM_FIELD_RAW_DATA","features":[321]},{"name":"FWPM_FIELD_TYPE","features":[321]},{"name":"FWPM_FIELD_TYPE_MAX","features":[321]},{"name":"FWPM_FILTER0","features":[321,308]},{"name":"FWPM_FILTER_CHANGE0","features":[321]},{"name":"FWPM_FILTER_CHANGE_CALLBACK0","features":[321]},{"name":"FWPM_FILTER_CONDITION0","features":[321,308]},{"name":"FWPM_FILTER_ENUM_TEMPLATE0","features":[321,308]},{"name":"FWPM_FILTER_FLAGS","features":[321]},{"name":"FWPM_FILTER_FLAG_BOOTTIME","features":[321]},{"name":"FWPM_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[321]},{"name":"FWPM_FILTER_FLAG_DISABLED","features":[321]},{"name":"FWPM_FILTER_FLAG_GAMEOS_ONLY","features":[321]},{"name":"FWPM_FILTER_FLAG_HAS_PROVIDER_CONTEXT","features":[321]},{"name":"FWPM_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[321]},{"name":"FWPM_FILTER_FLAG_INDEXED","features":[321]},{"name":"FWPM_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[321]},{"name":"FWPM_FILTER_FLAG_NONE","features":[321]},{"name":"FWPM_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[321]},{"name":"FWPM_FILTER_FLAG_PERSISTENT","features":[321]},{"name":"FWPM_FILTER_FLAG_RESERVED0","features":[321]},{"name":"FWPM_FILTER_FLAG_RESERVED1","features":[321]},{"name":"FWPM_FILTER_FLAG_SILENT_MODE","features":[321]},{"name":"FWPM_FILTER_FLAG_SYSTEMOS_ONLY","features":[321]},{"name":"FWPM_FILTER_SUBSCRIPTION0","features":[321,308]},{"name":"FWPM_GENERAL_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_AUTHIP_MM_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_AUTHIP_QM_TRANSPORT_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_AUTHIP_QM_TUNNEL_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_DOSP_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_IKEV2_MM_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_IKEV2_QM_TRANSPORT_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_IKEV2_QM_TUNNEL_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_IKE_MM_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_IKE_QM_TRANSPORT_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_IKE_QM_TUNNEL_CONTEXT","features":[321]},{"name":"FWPM_IPSEC_KEYING_CONTEXT","features":[321]},{"name":"FWPM_KEYING_MODULE_AUTHIP","features":[321]},{"name":"FWPM_KEYING_MODULE_IKE","features":[321]},{"name":"FWPM_KEYING_MODULE_IKEV2","features":[321]},{"name":"FWPM_LAYER0","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_CONNECT_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_LISTEN_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6","features":[321]},{"name":"FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V4","features":[321]},{"name":"FWPM_LAYER_ALE_BIND_REDIRECT_V6","features":[321]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V4","features":[321]},{"name":"FWPM_LAYER_ALE_CONNECT_REDIRECT_V6","features":[321]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V4","features":[321]},{"name":"FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V6","features":[321]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4","features":[321]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6","features":[321]},{"name":"FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4","features":[321]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6","features":[321]},{"name":"FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V4","features":[321]},{"name":"FWPM_LAYER_ALE_RESOURCE_RELEASE_V6","features":[321]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4","features":[321]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6","features":[321]},{"name":"FWPM_LAYER_DATAGRAM_DATA_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_ETHERNET","features":[321]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V4","features":[321]},{"name":"FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V6","features":[321]},{"name":"FWPM_LAYER_ENUM_TEMPLATE0","features":[321]},{"name":"FWPM_LAYER_FLAG_BUFFERED","features":[321]},{"name":"FWPM_LAYER_FLAG_BUILTIN","features":[321]},{"name":"FWPM_LAYER_FLAG_CLASSIFY_MOSTLY","features":[321]},{"name":"FWPM_LAYER_FLAG_KERNEL","features":[321]},{"name":"FWPM_LAYER_IKEEXT_V4","features":[321]},{"name":"FWPM_LAYER_IKEEXT_V6","features":[321]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4","features":[321]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6","features":[321]},{"name":"FWPM_LAYER_INBOUND_ICMP_ERROR_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4","features":[321]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6","features":[321]},{"name":"FWPM_LAYER_INBOUND_IPPACKET_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_ETHERNET","features":[321]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE","features":[321]},{"name":"FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE_FAST","features":[321]},{"name":"FWPM_LAYER_INBOUND_RESERVED2","features":[321]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_FAST","features":[321]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4","features":[321]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6","features":[321]},{"name":"FWPM_LAYER_INBOUND_TRANSPORT_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_ETHERNET","features":[321]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V4","features":[321]},{"name":"FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V6","features":[321]},{"name":"FWPM_LAYER_IPFORWARD_V4","features":[321]},{"name":"FWPM_LAYER_IPFORWARD_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_IPFORWARD_V6","features":[321]},{"name":"FWPM_LAYER_IPFORWARD_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V4","features":[321]},{"name":"FWPM_LAYER_IPSEC_KM_DEMUX_V6","features":[321]},{"name":"FWPM_LAYER_IPSEC_V4","features":[321]},{"name":"FWPM_LAYER_IPSEC_V6","features":[321]},{"name":"FWPM_LAYER_KM_AUTHORIZATION","features":[321]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V4","features":[321]},{"name":"FWPM_LAYER_NAME_RESOLUTION_CACHE_V6","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_IPPACKET_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_ETHERNET","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE_FAST","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V4","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V6","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_FAST","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6","features":[321]},{"name":"FWPM_LAYER_OUTBOUND_TRANSPORT_V6_DISCARD","features":[321]},{"name":"FWPM_LAYER_RPC_EPMAP","features":[321]},{"name":"FWPM_LAYER_RPC_EP_ADD","features":[321]},{"name":"FWPM_LAYER_RPC_PROXY_CONN","features":[321]},{"name":"FWPM_LAYER_RPC_PROXY_IF","features":[321]},{"name":"FWPM_LAYER_RPC_UM","features":[321]},{"name":"FWPM_LAYER_STATISTICS0","features":[321]},{"name":"FWPM_LAYER_STREAM_PACKET_V4","features":[321]},{"name":"FWPM_LAYER_STREAM_PACKET_V6","features":[321]},{"name":"FWPM_LAYER_STREAM_V4","features":[321]},{"name":"FWPM_LAYER_STREAM_V4_DISCARD","features":[321]},{"name":"FWPM_LAYER_STREAM_V6","features":[321]},{"name":"FWPM_LAYER_STREAM_V6_DISCARD","features":[321]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_CONTEXT","features":[321]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTING0","features":[321,308]},{"name":"FWPM_NETWORK_CONNECTION_POLICY_SETTINGS0","features":[321,308]},{"name":"FWPM_NET_EVENT0","features":[305,321,308]},{"name":"FWPM_NET_EVENT1","features":[305,321,308]},{"name":"FWPM_NET_EVENT2","features":[305,321,308]},{"name":"FWPM_NET_EVENT3","features":[305,321,308]},{"name":"FWPM_NET_EVENT4","features":[305,321,308]},{"name":"FWPM_NET_EVENT5","features":[305,321,308]},{"name":"FWPM_NET_EVENT_CALLBACK0","features":[305,321,308]},{"name":"FWPM_NET_EVENT_CALLBACK1","features":[305,321,308]},{"name":"FWPM_NET_EVENT_CALLBACK2","features":[305,321,308]},{"name":"FWPM_NET_EVENT_CALLBACK3","features":[305,321,308]},{"name":"FWPM_NET_EVENT_CALLBACK4","features":[305,321,308]},{"name":"FWPM_NET_EVENT_CAPABILITY_ALLOW0","features":[305,321]},{"name":"FWPM_NET_EVENT_CAPABILITY_DROP0","features":[305,321]},{"name":"FWPM_NET_EVENT_CLASSIFY_ALLOW0","features":[305,321]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP0","features":[321]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP1","features":[305,321]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP2","features":[305,321]},{"name":"FWPM_NET_EVENT_CLASSIFY_DROP_MAC0","features":[305,321]},{"name":"FWPM_NET_EVENT_ENUM_TEMPLATE0","features":[305,321,308]},{"name":"FWPM_NET_EVENT_FLAG_APP_ID_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_EFFECTIVE_NAME_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_ENTERPRISE_ID_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_IP_PROTOCOL_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_IP_VERSION_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_ADDR_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_LOCAL_PORT_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_PACKAGE_ID_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_POLICY_FLAGS_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_REAUTH_REASON_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_ADDR_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_REMOTE_PORT_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_SCOPE_ID_SET","features":[321]},{"name":"FWPM_NET_EVENT_FLAG_USER_ID_SET","features":[321]},{"name":"FWPM_NET_EVENT_HEADER0","features":[305,321,308]},{"name":"FWPM_NET_EVENT_HEADER1","features":[305,321,308]},{"name":"FWPM_NET_EVENT_HEADER2","features":[305,321,308]},{"name":"FWPM_NET_EVENT_HEADER3","features":[305,321,308]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE0","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE1","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_BENIGN","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_MULTIPLE","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE0","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE1","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE2","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_BENIGN","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_MULTIPLE","features":[321]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE0","features":[321,308]},{"name":"FWPM_NET_EVENT_IKEEXT_QM_FAILURE1","features":[321,308]},{"name":"FWPM_NET_EVENT_IPSEC_DOSP_DROP0","features":[321]},{"name":"FWPM_NET_EVENT_IPSEC_KERNEL_DROP0","features":[321]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_ALLOW","features":[321]},{"name":"FWPM_NET_EVENT_KEYWORD_CAPABILITY_DROP","features":[321]},{"name":"FWPM_NET_EVENT_KEYWORD_CLASSIFY_ALLOW","features":[321]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_BCAST","features":[321]},{"name":"FWPM_NET_EVENT_KEYWORD_INBOUND_MCAST","features":[321]},{"name":"FWPM_NET_EVENT_KEYWORD_PORT_SCANNING_DROP","features":[321]},{"name":"FWPM_NET_EVENT_LPM_PACKET_ARRIVAL0","features":[321]},{"name":"FWPM_NET_EVENT_SUBSCRIPTION0","features":[305,321,308]},{"name":"FWPM_NET_EVENT_TYPE","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_ALLOW","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_CAPABILITY_DROP","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_ALLOW","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_CLASSIFY_DROP_MAC","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_EM_FAILURE","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_MM_FAILURE","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_IKEEXT_QM_FAILURE","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_DOSP_DROP","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_IPSEC_KERNEL_DROP","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_LPM_PACKET_ARRIVAL","features":[321]},{"name":"FWPM_NET_EVENT_TYPE_MAX","features":[321]},{"name":"FWPM_PROVIDER0","features":[321]},{"name":"FWPM_PROVIDER_CHANGE0","features":[321]},{"name":"FWPM_PROVIDER_CHANGE_CALLBACK0","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT0","features":[321,308]},{"name":"FWPM_PROVIDER_CONTEXT1","features":[321,308]},{"name":"FWPM_PROVIDER_CONTEXT2","features":[321,308]},{"name":"FWPM_PROVIDER_CONTEXT3","features":[321,308]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE0","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_CHANGE_CALLBACK0","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_DOWNLEVEL","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_FLAG_PERSISTENT","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_AUTHIP","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_IPSEC","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE","features":[321]},{"name":"FWPM_PROVIDER_CONTEXT_TYPE_MAX","features":[321]},{"name":"FWPM_PROVIDER_ENUM_TEMPLATE0","features":[321]},{"name":"FWPM_PROVIDER_FLAG_DISABLED","features":[321]},{"name":"FWPM_PROVIDER_FLAG_PERSISTENT","features":[321]},{"name":"FWPM_PROVIDER_IKEEXT","features":[321]},{"name":"FWPM_PROVIDER_IPSEC_DOSP_CONFIG","features":[321]},{"name":"FWPM_PROVIDER_MPSSVC_APP_ISOLATION","features":[321]},{"name":"FWPM_PROVIDER_MPSSVC_EDP","features":[321]},{"name":"FWPM_PROVIDER_MPSSVC_TENANT_RESTRICTIONS","features":[321]},{"name":"FWPM_PROVIDER_MPSSVC_WF","features":[321]},{"name":"FWPM_PROVIDER_MPSSVC_WSH","features":[321]},{"name":"FWPM_PROVIDER_SUBSCRIPTION0","features":[321]},{"name":"FWPM_PROVIDER_TCP_CHIMNEY_OFFLOAD","features":[321]},{"name":"FWPM_PROVIDER_TCP_TEMPLATES","features":[321]},{"name":"FWPM_SERVICE_RUNNING","features":[321]},{"name":"FWPM_SERVICE_START_PENDING","features":[321]},{"name":"FWPM_SERVICE_STATE","features":[321]},{"name":"FWPM_SERVICE_STATE_MAX","features":[321]},{"name":"FWPM_SERVICE_STOPPED","features":[321]},{"name":"FWPM_SERVICE_STOP_PENDING","features":[321]},{"name":"FWPM_SESSION0","features":[305,321,308]},{"name":"FWPM_SESSION_ENUM_TEMPLATE0","features":[321]},{"name":"FWPM_SESSION_FLAG_DYNAMIC","features":[321]},{"name":"FWPM_SESSION_FLAG_RESERVED","features":[321]},{"name":"FWPM_STATISTICS0","features":[321]},{"name":"FWPM_SUBLAYER0","features":[321]},{"name":"FWPM_SUBLAYER_CHANGE0","features":[321]},{"name":"FWPM_SUBLAYER_CHANGE_CALLBACK0","features":[321]},{"name":"FWPM_SUBLAYER_ENUM_TEMPLATE0","features":[321]},{"name":"FWPM_SUBLAYER_FLAG_PERSISTENT","features":[321]},{"name":"FWPM_SUBLAYER_INSPECTION","features":[321]},{"name":"FWPM_SUBLAYER_IPSEC_DOSP","features":[321]},{"name":"FWPM_SUBLAYER_IPSEC_FORWARD_OUTBOUND_TUNNEL","features":[321]},{"name":"FWPM_SUBLAYER_IPSEC_SECURITY_REALM","features":[321]},{"name":"FWPM_SUBLAYER_IPSEC_TUNNEL","features":[321]},{"name":"FWPM_SUBLAYER_LIPS","features":[321]},{"name":"FWPM_SUBLAYER_MPSSVC_APP_ISOLATION","features":[321]},{"name":"FWPM_SUBLAYER_MPSSVC_EDP","features":[321]},{"name":"FWPM_SUBLAYER_MPSSVC_QUARANTINE","features":[321]},{"name":"FWPM_SUBLAYER_MPSSVC_TENANT_RESTRICTIONS","features":[321]},{"name":"FWPM_SUBLAYER_MPSSVC_WF","features":[321]},{"name":"FWPM_SUBLAYER_MPSSVC_WSH","features":[321]},{"name":"FWPM_SUBLAYER_RPC_AUDIT","features":[321]},{"name":"FWPM_SUBLAYER_SECURE_SOCKET","features":[321]},{"name":"FWPM_SUBLAYER_SUBSCRIPTION0","features":[321]},{"name":"FWPM_SUBLAYER_TCP_CHIMNEY_OFFLOAD","features":[321]},{"name":"FWPM_SUBLAYER_TCP_TEMPLATES","features":[321]},{"name":"FWPM_SUBLAYER_TEREDO","features":[321]},{"name":"FWPM_SUBLAYER_UNIVERSAL","features":[321]},{"name":"FWPM_SUBSCRIPTION_FLAGS","features":[321]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_ADD","features":[321]},{"name":"FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_DELETE","features":[321]},{"name":"FWPM_SYSTEM_PORTS0","features":[321]},{"name":"FWPM_SYSTEM_PORTS_BY_TYPE0","features":[321]},{"name":"FWPM_SYSTEM_PORTS_CALLBACK0","features":[321]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_IN","features":[321]},{"name":"FWPM_SYSTEM_PORT_IPHTTPS_OUT","features":[321]},{"name":"FWPM_SYSTEM_PORT_RPC_EPMAP","features":[321]},{"name":"FWPM_SYSTEM_PORT_TEREDO","features":[321]},{"name":"FWPM_SYSTEM_PORT_TYPE","features":[321]},{"name":"FWPM_SYSTEM_PORT_TYPE_MAX","features":[321]},{"name":"FWPM_TUNNEL_FLAG_ENABLE_VIRTUAL_IF_TUNNELING","features":[321]},{"name":"FWPM_TUNNEL_FLAG_POINT_TO_POINT","features":[321]},{"name":"FWPM_TUNNEL_FLAG_RESERVED0","features":[321]},{"name":"FWPM_TXN_READ_ONLY","features":[321]},{"name":"FWPM_VSWITCH_EVENT0","features":[305,321]},{"name":"FWPM_VSWITCH_EVENT_CALLBACK0","features":[305,321]},{"name":"FWPM_VSWITCH_EVENT_DISABLED_FOR_INSPECTION","features":[321]},{"name":"FWPM_VSWITCH_EVENT_ENABLED_FOR_INSPECTION","features":[321]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ADD_TO_INCOMPLETE_LAYER","features":[321]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_NOT_IN_REQUIRED_POSITION","features":[321]},{"name":"FWPM_VSWITCH_EVENT_FILTER_ENGINE_REORDER","features":[321]},{"name":"FWPM_VSWITCH_EVENT_MAX","features":[321]},{"name":"FWPM_VSWITCH_EVENT_SUBSCRIPTION0","features":[321]},{"name":"FWPM_VSWITCH_EVENT_TYPE","features":[321]},{"name":"FWPM_WEIGHT_RANGE_IKE_EXEMPTIONS","features":[321]},{"name":"FWPM_WEIGHT_RANGE_IPSEC","features":[321]},{"name":"FWPS_ALE_ENDPOINT_FLAG_IPSEC_SECURED","features":[321]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ABSORB","features":[321]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_CHECK","features":[321]},{"name":"FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_POSSIBLE","features":[321]},{"name":"FWPS_CLASSIFY_OUT_FLAG_BUFFER_LIMIT_REACHED","features":[321]},{"name":"FWPS_CLASSIFY_OUT_FLAG_NO_MORE_DATA","features":[321]},{"name":"FWPS_FILTER_FLAG_CLEAR_ACTION_RIGHT","features":[321]},{"name":"FWPS_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT","features":[321]},{"name":"FWPS_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE","features":[321]},{"name":"FWPS_FILTER_FLAG_OR_CONDITIONS","features":[321]},{"name":"FWPS_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED","features":[321]},{"name":"FWPS_FILTER_FLAG_RESERVED0","features":[321]},{"name":"FWPS_FILTER_FLAG_RESERVED1","features":[321]},{"name":"FWPS_FILTER_FLAG_SILENT_MODE","features":[321]},{"name":"FWPS_INCOMING_FLAG_ABSORB","features":[321]},{"name":"FWPS_INCOMING_FLAG_CACHE_SAFE","features":[321]},{"name":"FWPS_INCOMING_FLAG_CONNECTION_FAILING_INDICATION","features":[321]},{"name":"FWPS_INCOMING_FLAG_ENFORCE_QUERY","features":[321]},{"name":"FWPS_INCOMING_FLAG_IS_LOCAL_ONLY_FLOW","features":[321]},{"name":"FWPS_INCOMING_FLAG_IS_LOOSE_SOURCE_FLOW","features":[321]},{"name":"FWPS_INCOMING_FLAG_MID_STREAM_INSPECTION","features":[321]},{"name":"FWPS_INCOMING_FLAG_RECLASSIFY","features":[321]},{"name":"FWPS_INCOMING_FLAG_RESERVED0","features":[321]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV4_FRAMING","features":[321]},{"name":"FWPS_L2_INCOMING_FLAG_IS_RAW_IPV6_FRAMING","features":[321]},{"name":"FWPS_L2_INCOMING_FLAG_RECLASSIFY_MULTI_DESTINATION","features":[321]},{"name":"FWPS_L2_METADATA_FIELD_ETHERNET_MAC_HEADER_SIZE","features":[321]},{"name":"FWPS_L2_METADATA_FIELD_RESERVED","features":[321]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_DESTINATION_PORT_ID","features":[321]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_PACKET_CONTEXT","features":[321]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_NIC_INDEX","features":[321]},{"name":"FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_PORT_ID","features":[321]},{"name":"FWPS_L2_METADATA_FIELD_WIFI_OPERATION_MODE","features":[321]},{"name":"FWPS_METADATA_FIELD_ALE_CLASSIFY_REQUIRED","features":[321]},{"name":"FWPS_METADATA_FIELD_COMPARTMENT_ID","features":[321]},{"name":"FWPS_METADATA_FIELD_COMPLETION_HANDLE","features":[321]},{"name":"FWPS_METADATA_FIELD_DESTINATION_INTERFACE_INDEX","features":[321]},{"name":"FWPS_METADATA_FIELD_DESTINATION_PREFIX","features":[321]},{"name":"FWPS_METADATA_FIELD_DISCARD_REASON","features":[321]},{"name":"FWPS_METADATA_FIELD_ETHER_FRAME_LENGTH","features":[321]},{"name":"FWPS_METADATA_FIELD_FLOW_HANDLE","features":[321]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_INBOUND_PASS_THRU","features":[321]},{"name":"FWPS_METADATA_FIELD_FORWARD_LAYER_OUTBOUND_PASS_THRU","features":[321]},{"name":"FWPS_METADATA_FIELD_FRAGMENT_DATA","features":[321]},{"name":"FWPS_METADATA_FIELD_ICMP_ID_AND_SEQUENCE","features":[321]},{"name":"FWPS_METADATA_FIELD_IP_HEADER_SIZE","features":[321]},{"name":"FWPS_METADATA_FIELD_LOCAL_REDIRECT_TARGET_PID","features":[321]},{"name":"FWPS_METADATA_FIELD_ORIGINAL_DESTINATION","features":[321]},{"name":"FWPS_METADATA_FIELD_PACKET_DIRECTION","features":[321]},{"name":"FWPS_METADATA_FIELD_PACKET_SYSTEM_CRITICAL","features":[321]},{"name":"FWPS_METADATA_FIELD_PARENT_ENDPOINT_HANDLE","features":[321]},{"name":"FWPS_METADATA_FIELD_PATH_MTU","features":[321]},{"name":"FWPS_METADATA_FIELD_PROCESS_ID","features":[321]},{"name":"FWPS_METADATA_FIELD_PROCESS_PATH","features":[321]},{"name":"FWPS_METADATA_FIELD_REDIRECT_RECORD_HANDLE","features":[321]},{"name":"FWPS_METADATA_FIELD_REMOTE_SCOPE_ID","features":[321]},{"name":"FWPS_METADATA_FIELD_RESERVED","features":[321]},{"name":"FWPS_METADATA_FIELD_SOURCE_INTERFACE_INDEX","features":[321]},{"name":"FWPS_METADATA_FIELD_SUB_PROCESS_TAG","features":[321]},{"name":"FWPS_METADATA_FIELD_SYSTEM_FLAGS","features":[321]},{"name":"FWPS_METADATA_FIELD_TOKEN","features":[321]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_CONTROL_DATA","features":[321]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_ENDPOINT_HANDLE","features":[321]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_INCLUDE_HEADER","features":[321]},{"name":"FWPS_METADATA_FIELD_TRANSPORT_HEADER_SIZE","features":[321]},{"name":"FWPS_RIGHT_ACTION_WRITE","features":[321]},{"name":"FWP_ACTION_BLOCK","features":[321]},{"name":"FWP_ACTION_CALLOUT_INSPECTION","features":[321]},{"name":"FWP_ACTION_CALLOUT_TERMINATING","features":[321]},{"name":"FWP_ACTION_CALLOUT_UNKNOWN","features":[321]},{"name":"FWP_ACTION_CONTINUE","features":[321]},{"name":"FWP_ACTION_FLAG_CALLOUT","features":[321]},{"name":"FWP_ACTION_FLAG_NON_TERMINATING","features":[321]},{"name":"FWP_ACTION_FLAG_TERMINATING","features":[321]},{"name":"FWP_ACTION_NONE","features":[321]},{"name":"FWP_ACTION_NONE_NO_MATCH","features":[321]},{"name":"FWP_ACTION_PERMIT","features":[321]},{"name":"FWP_ACTION_TYPE","features":[321]},{"name":"FWP_ACTRL_MATCH_FILTER","features":[321]},{"name":"FWP_AF","features":[321]},{"name":"FWP_AF_ETHER","features":[321]},{"name":"FWP_AF_INET","features":[321]},{"name":"FWP_AF_INET6","features":[321]},{"name":"FWP_AF_NONE","features":[321]},{"name":"FWP_BYTEMAP_ARRAY64_SIZE","features":[321]},{"name":"FWP_BYTE_ARRAY16","features":[321]},{"name":"FWP_BYTE_ARRAY16_TYPE","features":[321]},{"name":"FWP_BYTE_ARRAY6","features":[321]},{"name":"FWP_BYTE_ARRAY6_SIZE","features":[321]},{"name":"FWP_BYTE_ARRAY6_TYPE","features":[321]},{"name":"FWP_BYTE_BLOB","features":[321]},{"name":"FWP_BYTE_BLOB_TYPE","features":[321]},{"name":"FWP_CALLOUT_FLAG_ALLOW_L2_BATCH_CLASSIFY","features":[321]},{"name":"FWP_CALLOUT_FLAG_ALLOW_MID_STREAM_INSPECTION","features":[321]},{"name":"FWP_CALLOUT_FLAG_ALLOW_OFFLOAD","features":[321]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RECLASSIFY","features":[321]},{"name":"FWP_CALLOUT_FLAG_ALLOW_RSC","features":[321]},{"name":"FWP_CALLOUT_FLAG_ALLOW_URO","features":[321]},{"name":"FWP_CALLOUT_FLAG_ALLOW_USO","features":[321]},{"name":"FWP_CALLOUT_FLAG_CONDITIONAL_ON_FLOW","features":[321]},{"name":"FWP_CALLOUT_FLAG_ENABLE_COMMIT_ADD_NOTIFY","features":[321]},{"name":"FWP_CALLOUT_FLAG_RESERVED1","features":[321]},{"name":"FWP_CALLOUT_FLAG_RESERVED2","features":[321]},{"name":"FWP_CLASSIFY_OPTION_LOCAL_ONLY_MAPPING","features":[321]},{"name":"FWP_CLASSIFY_OPTION_LOOSE_SOURCE_MAPPING","features":[321]},{"name":"FWP_CLASSIFY_OPTION_MAX","features":[321]},{"name":"FWP_CLASSIFY_OPTION_MCAST_BCAST_LIFETIME","features":[321]},{"name":"FWP_CLASSIFY_OPTION_MULTICAST_STATE","features":[321]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_MM_POLICY_KEY","features":[321]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_QM_POLICY_KEY","features":[321]},{"name":"FWP_CLASSIFY_OPTION_SECURE_SOCKET_SECURITY_FLAGS","features":[321]},{"name":"FWP_CLASSIFY_OPTION_TYPE","features":[321]},{"name":"FWP_CLASSIFY_OPTION_UNICAST_LIFETIME","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_APPCONTAINER_LOOPBACK","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_AUTH_FW","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_CONNECTION_REDIRECTED","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_FRAGMENT_GROUP","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_HONORING_POLICY_AUTHORIZE","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_IMPLICIT_BIND","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_INBOUND_PASS_THRU","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_NATT_RECLASSIFY","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_IPSEC_SECURED","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_LOOPBACK","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_NAME_APP_SPECIFIED","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_NON_APPCONTAINER_LOOPBACK","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_OUTBOUND_PASS_THRU","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_PROMISCUOUS","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_PROXY_CONNECTION","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_RAW_ENDPOINT","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_REASSEMBLED","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_REAUTHORIZE","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_RECLASSIFY","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_RESERVED","features":[321]},{"name":"FWP_CONDITION_FLAG_IS_WILDCARD_BIND","features":[321]},{"name":"FWP_CONDITION_FLAG_REQUIRES_ALE_CLASSIFY","features":[321]},{"name":"FWP_CONDITION_L2_IF_CONNECTOR_PRESENT","features":[321]},{"name":"FWP_CONDITION_L2_IS_IP_FRAGMENT_GROUP","features":[321]},{"name":"FWP_CONDITION_L2_IS_MALFORMED_PACKET","features":[321]},{"name":"FWP_CONDITION_L2_IS_MOBILE_BROADBAND","features":[321]},{"name":"FWP_CONDITION_L2_IS_NATIVE_ETHERNET","features":[321]},{"name":"FWP_CONDITION_L2_IS_VM2VM","features":[321]},{"name":"FWP_CONDITION_L2_IS_WIFI","features":[321]},{"name":"FWP_CONDITION_L2_IS_WIFI_DIRECT_DATA","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CHECK_OFFLOAD","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_CLASSIFY_COMPLETION","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_EDP_POLICY_CHANGED","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_IPSEC_PROPERTIES_CHANGED","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_MID_STREAM_INSPECTION","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_ARRIVAL_INTERFACE","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_INBOUND_MCAST_BCAST_PACKET","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_NEW_NEXTHOP_INTERFACE","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_POLICY_CHANGE","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROFILE_CROSSING","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_PROXY_HANDLE_CHANGED","features":[321]},{"name":"FWP_CONDITION_REAUTHORIZE_REASON_SOCKET_PROPERTY_CHANGED","features":[321]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_ALLOW_EDGE_TRAFFIC","features":[321]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_DENY_EDGE_TRAFFIC","features":[321]},{"name":"FWP_CONDITION_SOCKET_PROPERTY_FLAG_IS_SYSTEM_PORT_RPC","features":[321]},{"name":"FWP_CONDITION_VALUE0","features":[321,308]},{"name":"FWP_DATA_TYPE","features":[321]},{"name":"FWP_DATA_TYPE_MAX","features":[321]},{"name":"FWP_DIRECTION","features":[321]},{"name":"FWP_DIRECTION_INBOUND","features":[321]},{"name":"FWP_DIRECTION_MAX","features":[321]},{"name":"FWP_DIRECTION_OUTBOUND","features":[321]},{"name":"FWP_DOUBLE","features":[321]},{"name":"FWP_EMPTY","features":[321]},{"name":"FWP_ETHER_ENCAP_METHOD","features":[321]},{"name":"FWP_ETHER_ENCAP_METHOD_ETHER_V2","features":[321]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP","features":[321]},{"name":"FWP_ETHER_ENCAP_METHOD_SNAP_W_OUI_ZERO","features":[321]},{"name":"FWP_FILTER_ENUM_FLAG_BEST_TERMINATING_MATCH","features":[321]},{"name":"FWP_FILTER_ENUM_FLAG_BOOTTIME_ONLY","features":[321]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_BOOTTIME","features":[321]},{"name":"FWP_FILTER_ENUM_FLAG_INCLUDE_DISABLED","features":[321]},{"name":"FWP_FILTER_ENUM_FLAG_RESERVED1","features":[321]},{"name":"FWP_FILTER_ENUM_FLAG_SORTED","features":[321]},{"name":"FWP_FILTER_ENUM_FULLY_CONTAINED","features":[321]},{"name":"FWP_FILTER_ENUM_OVERLAPPING","features":[321]},{"name":"FWP_FILTER_ENUM_TYPE","features":[321]},{"name":"FWP_FILTER_ENUM_TYPE_MAX","features":[321]},{"name":"FWP_FLOAT","features":[321]},{"name":"FWP_INT16","features":[321]},{"name":"FWP_INT32","features":[321]},{"name":"FWP_INT64","features":[321]},{"name":"FWP_INT8","features":[321]},{"name":"FWP_IP_VERSION","features":[321]},{"name":"FWP_IP_VERSION_MAX","features":[321]},{"name":"FWP_IP_VERSION_NONE","features":[321]},{"name":"FWP_IP_VERSION_V4","features":[321]},{"name":"FWP_IP_VERSION_V6","features":[321]},{"name":"FWP_MATCH_EQUAL","features":[321]},{"name":"FWP_MATCH_EQUAL_CASE_INSENSITIVE","features":[321]},{"name":"FWP_MATCH_FLAGS_ALL_SET","features":[321]},{"name":"FWP_MATCH_FLAGS_ANY_SET","features":[321]},{"name":"FWP_MATCH_FLAGS_NONE_SET","features":[321]},{"name":"FWP_MATCH_GREATER","features":[321]},{"name":"FWP_MATCH_GREATER_OR_EQUAL","features":[321]},{"name":"FWP_MATCH_LESS","features":[321]},{"name":"FWP_MATCH_LESS_OR_EQUAL","features":[321]},{"name":"FWP_MATCH_NOT_EQUAL","features":[321]},{"name":"FWP_MATCH_NOT_PREFIX","features":[321]},{"name":"FWP_MATCH_PREFIX","features":[321]},{"name":"FWP_MATCH_RANGE","features":[321]},{"name":"FWP_MATCH_TYPE","features":[321]},{"name":"FWP_MATCH_TYPE_MAX","features":[321]},{"name":"FWP_NETWORK_CONNECTION_POLICY_MAX","features":[321]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP","features":[321]},{"name":"FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP_INTERFACE","features":[321]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE","features":[321]},{"name":"FWP_NETWORK_CONNECTION_POLICY_SOURCE_ADDRESS","features":[321]},{"name":"FWP_OPTION_VALUE_ALLOW_GLOBAL_MULTICAST_STATE","features":[321]},{"name":"FWP_OPTION_VALUE_ALLOW_MULTICAST_STATE","features":[321]},{"name":"FWP_OPTION_VALUE_DENY_MULTICAST_STATE","features":[321]},{"name":"FWP_OPTION_VALUE_DISABLE_LOCAL_ONLY_MAPPING","features":[321]},{"name":"FWP_OPTION_VALUE_DISABLE_LOOSE_SOURCE","features":[321]},{"name":"FWP_OPTION_VALUE_ENABLE_LOCAL_ONLY_MAPPING","features":[321]},{"name":"FWP_OPTION_VALUE_ENABLE_LOOSE_SOURCE","features":[321]},{"name":"FWP_RANGE0","features":[321,308]},{"name":"FWP_RANGE_TYPE","features":[321]},{"name":"FWP_SECURITY_DESCRIPTOR_TYPE","features":[321]},{"name":"FWP_SID","features":[321]},{"name":"FWP_SINGLE_DATA_TYPE_MAX","features":[321]},{"name":"FWP_TOKEN_ACCESS_INFORMATION_TYPE","features":[321]},{"name":"FWP_TOKEN_INFORMATION","features":[321,308]},{"name":"FWP_TOKEN_INFORMATION_TYPE","features":[321]},{"name":"FWP_UINT16","features":[321]},{"name":"FWP_UINT32","features":[321]},{"name":"FWP_UINT64","features":[321]},{"name":"FWP_UINT8","features":[321]},{"name":"FWP_UNICODE_STRING_TYPE","features":[321]},{"name":"FWP_V4_ADDR_AND_MASK","features":[321]},{"name":"FWP_V4_ADDR_MASK","features":[321]},{"name":"FWP_V6_ADDR_AND_MASK","features":[321]},{"name":"FWP_V6_ADDR_MASK","features":[321]},{"name":"FWP_V6_ADDR_SIZE","features":[321]},{"name":"FWP_VALUE0","features":[321,308]},{"name":"FWP_VSWITCH_NETWORK_TYPE","features":[321]},{"name":"FWP_VSWITCH_NETWORK_TYPE_EXTERNAL","features":[321]},{"name":"FWP_VSWITCH_NETWORK_TYPE_INTERNAL","features":[321]},{"name":"FWP_VSWITCH_NETWORK_TYPE_PRIVATE","features":[321]},{"name":"FWP_VSWITCH_NETWORK_TYPE_UNKNOWN","features":[321]},{"name":"FwpmCalloutAdd0","features":[305,321,308]},{"name":"FwpmCalloutCreateEnumHandle0","features":[305,321]},{"name":"FwpmCalloutDeleteById0","features":[305,321]},{"name":"FwpmCalloutDeleteByKey0","features":[305,321]},{"name":"FwpmCalloutDestroyEnumHandle0","features":[305,321]},{"name":"FwpmCalloutEnum0","features":[305,321]},{"name":"FwpmCalloutGetById0","features":[305,321]},{"name":"FwpmCalloutGetByKey0","features":[305,321]},{"name":"FwpmCalloutGetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmCalloutSetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmCalloutSubscribeChanges0","features":[305,321]},{"name":"FwpmCalloutSubscriptionsGet0","features":[305,321]},{"name":"FwpmCalloutUnsubscribeChanges0","features":[305,321]},{"name":"FwpmConnectionCreateEnumHandle0","features":[305,321]},{"name":"FwpmConnectionDestroyEnumHandle0","features":[305,321]},{"name":"FwpmConnectionEnum0","features":[305,321]},{"name":"FwpmConnectionGetById0","features":[305,321]},{"name":"FwpmConnectionGetSecurityInfo0","features":[305,321,308]},{"name":"FwpmConnectionSetSecurityInfo0","features":[305,321,308]},{"name":"FwpmConnectionSubscribe0","features":[305,321]},{"name":"FwpmConnectionUnsubscribe0","features":[305,321]},{"name":"FwpmDynamicKeywordSubscribe0","features":[305,321]},{"name":"FwpmDynamicKeywordUnsubscribe0","features":[305,321]},{"name":"FwpmEngineClose0","features":[305,321]},{"name":"FwpmEngineGetOption0","features":[305,321,308]},{"name":"FwpmEngineGetSecurityInfo0","features":[305,321,308]},{"name":"FwpmEngineOpen0","features":[305,321,308,322]},{"name":"FwpmEngineSetOption0","features":[305,321,308]},{"name":"FwpmEngineSetSecurityInfo0","features":[305,321,308]},{"name":"FwpmFilterAdd0","features":[305,321,308]},{"name":"FwpmFilterCreateEnumHandle0","features":[305,321,308]},{"name":"FwpmFilterDeleteById0","features":[305,321]},{"name":"FwpmFilterDeleteByKey0","features":[305,321]},{"name":"FwpmFilterDestroyEnumHandle0","features":[305,321]},{"name":"FwpmFilterEnum0","features":[305,321,308]},{"name":"FwpmFilterGetById0","features":[305,321,308]},{"name":"FwpmFilterGetByKey0","features":[305,321,308]},{"name":"FwpmFilterGetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmFilterSetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmFilterSubscribeChanges0","features":[305,321,308]},{"name":"FwpmFilterSubscriptionsGet0","features":[305,321,308]},{"name":"FwpmFilterUnsubscribeChanges0","features":[305,321]},{"name":"FwpmFreeMemory0","features":[321]},{"name":"FwpmGetAppIdFromFileName0","features":[321]},{"name":"FwpmIPsecTunnelAdd0","features":[305,321,308]},{"name":"FwpmIPsecTunnelAdd1","features":[305,321,308]},{"name":"FwpmIPsecTunnelAdd2","features":[305,321,308]},{"name":"FwpmIPsecTunnelAdd3","features":[305,321,308]},{"name":"FwpmIPsecTunnelDeleteByKey0","features":[305,321]},{"name":"FwpmLayerCreateEnumHandle0","features":[305,321]},{"name":"FwpmLayerDestroyEnumHandle0","features":[305,321]},{"name":"FwpmLayerEnum0","features":[305,321]},{"name":"FwpmLayerGetById0","features":[305,321]},{"name":"FwpmLayerGetByKey0","features":[305,321]},{"name":"FwpmLayerGetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmLayerSetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmNetEventCreateEnumHandle0","features":[305,321,308]},{"name":"FwpmNetEventDestroyEnumHandle0","features":[305,321]},{"name":"FwpmNetEventEnum0","features":[305,321,308]},{"name":"FwpmNetEventEnum1","features":[305,321,308]},{"name":"FwpmNetEventEnum2","features":[305,321,308]},{"name":"FwpmNetEventEnum3","features":[305,321,308]},{"name":"FwpmNetEventEnum4","features":[305,321,308]},{"name":"FwpmNetEventEnum5","features":[305,321,308]},{"name":"FwpmNetEventSubscribe0","features":[305,321,308]},{"name":"FwpmNetEventSubscribe1","features":[305,321,308]},{"name":"FwpmNetEventSubscribe2","features":[305,321,308]},{"name":"FwpmNetEventSubscribe3","features":[305,321,308]},{"name":"FwpmNetEventSubscribe4","features":[305,321,308]},{"name":"FwpmNetEventSubscriptionsGet0","features":[305,321,308]},{"name":"FwpmNetEventUnsubscribe0","features":[305,321]},{"name":"FwpmNetEventsGetSecurityInfo0","features":[305,321,308]},{"name":"FwpmNetEventsSetSecurityInfo0","features":[305,321,308]},{"name":"FwpmProviderAdd0","features":[305,321,308]},{"name":"FwpmProviderContextAdd0","features":[305,321,308]},{"name":"FwpmProviderContextAdd1","features":[305,321,308]},{"name":"FwpmProviderContextAdd2","features":[305,321,308]},{"name":"FwpmProviderContextAdd3","features":[305,321,308]},{"name":"FwpmProviderContextCreateEnumHandle0","features":[305,321]},{"name":"FwpmProviderContextDeleteById0","features":[305,321]},{"name":"FwpmProviderContextDeleteByKey0","features":[305,321]},{"name":"FwpmProviderContextDestroyEnumHandle0","features":[305,321]},{"name":"FwpmProviderContextEnum0","features":[305,321,308]},{"name":"FwpmProviderContextEnum1","features":[305,321,308]},{"name":"FwpmProviderContextEnum2","features":[305,321,308]},{"name":"FwpmProviderContextEnum3","features":[305,321,308]},{"name":"FwpmProviderContextGetById0","features":[305,321,308]},{"name":"FwpmProviderContextGetById1","features":[305,321,308]},{"name":"FwpmProviderContextGetById2","features":[305,321,308]},{"name":"FwpmProviderContextGetById3","features":[305,321,308]},{"name":"FwpmProviderContextGetByKey0","features":[305,321,308]},{"name":"FwpmProviderContextGetByKey1","features":[305,321,308]},{"name":"FwpmProviderContextGetByKey2","features":[305,321,308]},{"name":"FwpmProviderContextGetByKey3","features":[305,321,308]},{"name":"FwpmProviderContextGetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmProviderContextSetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmProviderContextSubscribeChanges0","features":[305,321]},{"name":"FwpmProviderContextSubscriptionsGet0","features":[305,321]},{"name":"FwpmProviderContextUnsubscribeChanges0","features":[305,321]},{"name":"FwpmProviderCreateEnumHandle0","features":[305,321]},{"name":"FwpmProviderDeleteByKey0","features":[305,321]},{"name":"FwpmProviderDestroyEnumHandle0","features":[305,321]},{"name":"FwpmProviderEnum0","features":[305,321]},{"name":"FwpmProviderGetByKey0","features":[305,321]},{"name":"FwpmProviderGetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmProviderSetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmProviderSubscribeChanges0","features":[305,321]},{"name":"FwpmProviderSubscriptionsGet0","features":[305,321]},{"name":"FwpmProviderUnsubscribeChanges0","features":[305,321]},{"name":"FwpmSessionCreateEnumHandle0","features":[305,321]},{"name":"FwpmSessionDestroyEnumHandle0","features":[305,321]},{"name":"FwpmSessionEnum0","features":[305,321,308]},{"name":"FwpmSubLayerAdd0","features":[305,321,308]},{"name":"FwpmSubLayerCreateEnumHandle0","features":[305,321]},{"name":"FwpmSubLayerDeleteByKey0","features":[305,321]},{"name":"FwpmSubLayerDestroyEnumHandle0","features":[305,321]},{"name":"FwpmSubLayerEnum0","features":[305,321]},{"name":"FwpmSubLayerGetByKey0","features":[305,321]},{"name":"FwpmSubLayerGetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmSubLayerSetSecurityInfoByKey0","features":[305,321,308]},{"name":"FwpmSubLayerSubscribeChanges0","features":[305,321]},{"name":"FwpmSubLayerSubscriptionsGet0","features":[305,321]},{"name":"FwpmSubLayerUnsubscribeChanges0","features":[305,321]},{"name":"FwpmSystemPortsGet0","features":[305,321]},{"name":"FwpmSystemPortsSubscribe0","features":[305,321]},{"name":"FwpmSystemPortsUnsubscribe0","features":[305,321]},{"name":"FwpmTransactionAbort0","features":[305,321]},{"name":"FwpmTransactionBegin0","features":[305,321]},{"name":"FwpmTransactionCommit0","features":[305,321]},{"name":"FwpmvSwitchEventSubscribe0","features":[305,321]},{"name":"FwpmvSwitchEventUnsubscribe0","features":[305,321]},{"name":"FwpmvSwitchEventsGetSecurityInfo0","features":[305,321,308]},{"name":"FwpmvSwitchEventsSetSecurityInfo0","features":[305,321,308]},{"name":"IKEEXT_ANONYMOUS","features":[321]},{"name":"IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE","features":[321]},{"name":"IKEEXT_AUTHENTICATION_METHOD0","features":[321]},{"name":"IKEEXT_AUTHENTICATION_METHOD1","features":[321]},{"name":"IKEEXT_AUTHENTICATION_METHOD2","features":[321]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE","features":[321]},{"name":"IKEEXT_AUTHENTICATION_METHOD_TYPE_MAX","features":[321]},{"name":"IKEEXT_CERTIFICATE","features":[321]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION0","features":[321]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION1","features":[321]},{"name":"IKEEXT_CERTIFICATE_AUTHENTICATION2","features":[321]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL0","features":[321]},{"name":"IKEEXT_CERTIFICATE_CREDENTIAL1","features":[321]},{"name":"IKEEXT_CERTIFICATE_CRITERIA0","features":[321]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P256","features":[321]},{"name":"IKEEXT_CERTIFICATE_ECDSA_P384","features":[321]},{"name":"IKEEXT_CERT_AUTH","features":[321]},{"name":"IKEEXT_CERT_AUTH_ALLOW_HTTP_CERT_LOOKUP","features":[321]},{"name":"IKEEXT_CERT_AUTH_DISABLE_SSL_CERT_VALIDATION","features":[321]},{"name":"IKEEXT_CERT_AUTH_ENABLE_CRL_CHECK_STRONG","features":[321]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_CRL_CHECK","features":[321]},{"name":"IKEEXT_CERT_AUTH_FLAG_DISABLE_REQUEST_PAYLOAD","features":[321]},{"name":"IKEEXT_CERT_AUTH_FLAG_SSL_ONE_WAY","features":[321]},{"name":"IKEEXT_CERT_AUTH_URL_CONTAINS_BUNDLE","features":[321]},{"name":"IKEEXT_CERT_CONFIG_ENTERPRISE_STORE","features":[321]},{"name":"IKEEXT_CERT_CONFIG_EXPLICIT_TRUST_LIST","features":[321]},{"name":"IKEEXT_CERT_CONFIG_TRUSTED_ROOT_STORE","features":[321]},{"name":"IKEEXT_CERT_CONFIG_TYPE","features":[321]},{"name":"IKEEXT_CERT_CONFIG_TYPE_MAX","features":[321]},{"name":"IKEEXT_CERT_CONFIG_UNSPECIFIED","features":[321]},{"name":"IKEEXT_CERT_CREDENTIAL_FLAG_NAP_CERT","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_CN","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_DC","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_DNS","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_NAME_TYPE_MAX","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_O","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_OU","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_RFC822","features":[321]},{"name":"IKEEXT_CERT_CRITERIA_UPN","features":[321]},{"name":"IKEEXT_CERT_EKUS0","features":[321]},{"name":"IKEEXT_CERT_FLAGS","features":[321]},{"name":"IKEEXT_CERT_FLAG_DISABLE_REQUEST_PAYLOAD","features":[321]},{"name":"IKEEXT_CERT_FLAG_ENABLE_ACCOUNT_MAPPING","features":[321]},{"name":"IKEEXT_CERT_FLAG_FOLLOW_RENEWAL_CERTIFICATE","features":[321]},{"name":"IKEEXT_CERT_FLAG_IGNORE_INIT_CERT_MAP_FAILURE","features":[321]},{"name":"IKEEXT_CERT_FLAG_INTERMEDIATE_CA","features":[321]},{"name":"IKEEXT_CERT_FLAG_PREFER_NAP_CERTIFICATE_OUTBOUND","features":[321]},{"name":"IKEEXT_CERT_FLAG_SELECT_NAP_CERTIFICATE","features":[321]},{"name":"IKEEXT_CERT_FLAG_USE_NAP_CERTIFICATE","features":[321]},{"name":"IKEEXT_CERT_FLAG_VERIFY_NAP_CERTIFICATE","features":[321]},{"name":"IKEEXT_CERT_HASH_LEN","features":[321]},{"name":"IKEEXT_CERT_NAME0","features":[321]},{"name":"IKEEXT_CERT_ROOT_CONFIG0","features":[321]},{"name":"IKEEXT_CIPHER_3DES","features":[321]},{"name":"IKEEXT_CIPHER_AES_128","features":[321]},{"name":"IKEEXT_CIPHER_AES_192","features":[321]},{"name":"IKEEXT_CIPHER_AES_256","features":[321]},{"name":"IKEEXT_CIPHER_AES_GCM_128_16ICV","features":[321]},{"name":"IKEEXT_CIPHER_AES_GCM_256_16ICV","features":[321]},{"name":"IKEEXT_CIPHER_ALGORITHM0","features":[321]},{"name":"IKEEXT_CIPHER_DES","features":[321]},{"name":"IKEEXT_CIPHER_TYPE","features":[321]},{"name":"IKEEXT_CIPHER_TYPE_MAX","features":[321]},{"name":"IKEEXT_COMMON_STATISTICS0","features":[321]},{"name":"IKEEXT_COMMON_STATISTICS1","features":[321]},{"name":"IKEEXT_COOKIE_PAIR0","features":[321]},{"name":"IKEEXT_CREDENTIAL0","features":[321]},{"name":"IKEEXT_CREDENTIAL1","features":[321]},{"name":"IKEEXT_CREDENTIAL2","features":[321]},{"name":"IKEEXT_CREDENTIALS0","features":[321]},{"name":"IKEEXT_CREDENTIALS1","features":[321]},{"name":"IKEEXT_CREDENTIALS2","features":[321]},{"name":"IKEEXT_CREDENTIAL_PAIR0","features":[321]},{"name":"IKEEXT_CREDENTIAL_PAIR1","features":[321]},{"name":"IKEEXT_CREDENTIAL_PAIR2","features":[321]},{"name":"IKEEXT_DH_ECP_256","features":[321]},{"name":"IKEEXT_DH_ECP_384","features":[321]},{"name":"IKEEXT_DH_GROUP","features":[321]},{"name":"IKEEXT_DH_GROUP_1","features":[321]},{"name":"IKEEXT_DH_GROUP_14","features":[321]},{"name":"IKEEXT_DH_GROUP_2","features":[321]},{"name":"IKEEXT_DH_GROUP_2048","features":[321]},{"name":"IKEEXT_DH_GROUP_24","features":[321]},{"name":"IKEEXT_DH_GROUP_MAX","features":[321]},{"name":"IKEEXT_DH_GROUP_NONE","features":[321]},{"name":"IKEEXT_EAP","features":[321]},{"name":"IKEEXT_EAP_AUTHENTICATION0","features":[321]},{"name":"IKEEXT_EAP_AUTHENTICATION_FLAGS","features":[321]},{"name":"IKEEXT_EAP_FLAG_LOCAL_AUTH_ONLY","features":[321]},{"name":"IKEEXT_EAP_FLAG_REMOTE_AUTH_ONLY","features":[321]},{"name":"IKEEXT_EM_POLICY0","features":[321]},{"name":"IKEEXT_EM_POLICY1","features":[321]},{"name":"IKEEXT_EM_POLICY2","features":[321]},{"name":"IKEEXT_EM_SA_STATE","features":[321]},{"name":"IKEEXT_EM_SA_STATE_AUTH_COMPLETE","features":[321]},{"name":"IKEEXT_EM_SA_STATE_COMPLETE","features":[321]},{"name":"IKEEXT_EM_SA_STATE_FINAL","features":[321]},{"name":"IKEEXT_EM_SA_STATE_MAX","features":[321]},{"name":"IKEEXT_EM_SA_STATE_NONE","features":[321]},{"name":"IKEEXT_EM_SA_STATE_SENT_ATTS","features":[321]},{"name":"IKEEXT_EM_SA_STATE_SSPI_SENT","features":[321]},{"name":"IKEEXT_IMPERSONATION_MAX","features":[321]},{"name":"IKEEXT_IMPERSONATION_NONE","features":[321]},{"name":"IKEEXT_IMPERSONATION_SOCKET_PRINCIPAL","features":[321]},{"name":"IKEEXT_INTEGRITY_ALGORITHM0","features":[321]},{"name":"IKEEXT_INTEGRITY_MD5","features":[321]},{"name":"IKEEXT_INTEGRITY_SHA1","features":[321]},{"name":"IKEEXT_INTEGRITY_SHA_256","features":[321]},{"name":"IKEEXT_INTEGRITY_SHA_384","features":[321]},{"name":"IKEEXT_INTEGRITY_TYPE","features":[321]},{"name":"IKEEXT_INTEGRITY_TYPE_MAX","features":[321]},{"name":"IKEEXT_IPV6_CGA","features":[321]},{"name":"IKEEXT_IPV6_CGA_AUTHENTICATION0","features":[321]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS0","features":[321]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS1","features":[321]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS0","features":[321]},{"name":"IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS1","features":[321]},{"name":"IKEEXT_KERBEROS","features":[321]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION0","features":[321]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION1","features":[321]},{"name":"IKEEXT_KERBEROS_AUTHENTICATION_FLAGS","features":[321]},{"name":"IKEEXT_KERB_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[321]},{"name":"IKEEXT_KERB_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[321]},{"name":"IKEEXT_KERB_AUTH_FORCE_PROXY_ON_INITIATOR","features":[321]},{"name":"IKEEXT_KEYMODULE_STATISTICS0","features":[321]},{"name":"IKEEXT_KEYMODULE_STATISTICS1","features":[321]},{"name":"IKEEXT_KEY_MODULE_AUTHIP","features":[321]},{"name":"IKEEXT_KEY_MODULE_IKE","features":[321]},{"name":"IKEEXT_KEY_MODULE_IKEV2","features":[321]},{"name":"IKEEXT_KEY_MODULE_MAX","features":[321]},{"name":"IKEEXT_KEY_MODULE_TYPE","features":[321]},{"name":"IKEEXT_MM_SA_STATE","features":[321]},{"name":"IKEEXT_MM_SA_STATE_COMPLETE","features":[321]},{"name":"IKEEXT_MM_SA_STATE_FINAL","features":[321]},{"name":"IKEEXT_MM_SA_STATE_FINAL_SENT","features":[321]},{"name":"IKEEXT_MM_SA_STATE_MAX","features":[321]},{"name":"IKEEXT_MM_SA_STATE_NONE","features":[321]},{"name":"IKEEXT_MM_SA_STATE_SA_SENT","features":[321]},{"name":"IKEEXT_MM_SA_STATE_SSPI_SENT","features":[321]},{"name":"IKEEXT_NAME_CREDENTIAL0","features":[321]},{"name":"IKEEXT_NTLM_V2","features":[321]},{"name":"IKEEXT_NTLM_V2_AUTHENTICATION0","features":[321]},{"name":"IKEEXT_NTLM_V2_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS","features":[321]},{"name":"IKEEXT_POLICY0","features":[321]},{"name":"IKEEXT_POLICY1","features":[321]},{"name":"IKEEXT_POLICY2","features":[321]},{"name":"IKEEXT_POLICY_ENABLE_IKEV2_FRAGMENTATION","features":[321]},{"name":"IKEEXT_POLICY_FLAG","features":[321]},{"name":"IKEEXT_POLICY_FLAG_DISABLE_DIAGNOSTICS","features":[321]},{"name":"IKEEXT_POLICY_FLAG_ENABLE_OPTIONAL_DH","features":[321]},{"name":"IKEEXT_POLICY_FLAG_IMS_VPN","features":[321]},{"name":"IKEEXT_POLICY_FLAG_MOBIKE_NOT_SUPPORTED","features":[321]},{"name":"IKEEXT_POLICY_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[321]},{"name":"IKEEXT_POLICY_FLAG_NO_MACHINE_LUID_VERIFY","features":[321]},{"name":"IKEEXT_POLICY_FLAG_SITE_TO_SITE","features":[321]},{"name":"IKEEXT_POLICY_SUPPORT_LOW_POWER_MODE","features":[321]},{"name":"IKEEXT_PRESHARED_KEY","features":[321]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION0","features":[321]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION1","features":[321]},{"name":"IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS","features":[321]},{"name":"IKEEXT_PROPOSAL0","features":[321]},{"name":"IKEEXT_PSK_FLAG_LOCAL_AUTH_ONLY","features":[321]},{"name":"IKEEXT_PSK_FLAG_REMOTE_AUTH_ONLY","features":[321]},{"name":"IKEEXT_QM_SA_STATE","features":[321]},{"name":"IKEEXT_QM_SA_STATE_COMPLETE","features":[321]},{"name":"IKEEXT_QM_SA_STATE_FINAL","features":[321]},{"name":"IKEEXT_QM_SA_STATE_INITIAL","features":[321]},{"name":"IKEEXT_QM_SA_STATE_MAX","features":[321]},{"name":"IKEEXT_QM_SA_STATE_NONE","features":[321]},{"name":"IKEEXT_RESERVED","features":[321]},{"name":"IKEEXT_RESERVED_AUTHENTICATION0","features":[321]},{"name":"IKEEXT_RESERVED_AUTHENTICATION_FLAGS","features":[321]},{"name":"IKEEXT_RESERVED_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION","features":[321]},{"name":"IKEEXT_SA_DETAILS0","features":[321]},{"name":"IKEEXT_SA_DETAILS1","features":[321]},{"name":"IKEEXT_SA_DETAILS2","features":[321]},{"name":"IKEEXT_SA_ENUM_TEMPLATE0","features":[321,308]},{"name":"IKEEXT_SA_ROLE","features":[321]},{"name":"IKEEXT_SA_ROLE_INITIATOR","features":[321]},{"name":"IKEEXT_SA_ROLE_MAX","features":[321]},{"name":"IKEEXT_SA_ROLE_RESPONDER","features":[321]},{"name":"IKEEXT_SSL","features":[321]},{"name":"IKEEXT_SSL_ECDSA_P256","features":[321]},{"name":"IKEEXT_SSL_ECDSA_P384","features":[321]},{"name":"IKEEXT_STATISTICS0","features":[321]},{"name":"IKEEXT_STATISTICS1","features":[321]},{"name":"IKEEXT_TRAFFIC0","features":[321]},{"name":"IPSEC_ADDRESS_INFO0","features":[321]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS0","features":[321]},{"name":"IPSEC_AGGREGATE_DROP_PACKET_STATISTICS1","features":[321]},{"name":"IPSEC_AGGREGATE_SA_STATISTICS0","features":[321]},{"name":"IPSEC_AH_DROP_PACKET_STATISTICS0","features":[321]},{"name":"IPSEC_AUTH_AES_128","features":[321]},{"name":"IPSEC_AUTH_AES_192","features":[321]},{"name":"IPSEC_AUTH_AES_256","features":[321]},{"name":"IPSEC_AUTH_AND_CIPHER_TRANSFORM0","features":[321]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_128","features":[321]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_192","features":[321]},{"name":"IPSEC_AUTH_CONFIG_GCM_AES_256","features":[321]},{"name":"IPSEC_AUTH_CONFIG_HMAC_MD5_96","features":[321]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_1_96","features":[321]},{"name":"IPSEC_AUTH_CONFIG_HMAC_SHA_256_128","features":[321]},{"name":"IPSEC_AUTH_CONFIG_MAX","features":[321]},{"name":"IPSEC_AUTH_MAX","features":[321]},{"name":"IPSEC_AUTH_MD5","features":[321]},{"name":"IPSEC_AUTH_SHA_1","features":[321]},{"name":"IPSEC_AUTH_SHA_256","features":[321]},{"name":"IPSEC_AUTH_TRANSFORM0","features":[321]},{"name":"IPSEC_AUTH_TRANSFORM_ID0","features":[321]},{"name":"IPSEC_AUTH_TYPE","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_CBC_3DES","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_128","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_192","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_CBC_AES_256","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_CBC_DES","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_128","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_192","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_GCM_AES_256","features":[321]},{"name":"IPSEC_CIPHER_CONFIG_MAX","features":[321]},{"name":"IPSEC_CIPHER_TRANSFORM0","features":[321]},{"name":"IPSEC_CIPHER_TRANSFORM_ID0","features":[321]},{"name":"IPSEC_CIPHER_TYPE","features":[321]},{"name":"IPSEC_CIPHER_TYPE_3DES","features":[321]},{"name":"IPSEC_CIPHER_TYPE_AES_128","features":[321]},{"name":"IPSEC_CIPHER_TYPE_AES_192","features":[321]},{"name":"IPSEC_CIPHER_TYPE_AES_256","features":[321]},{"name":"IPSEC_CIPHER_TYPE_DES","features":[321]},{"name":"IPSEC_CIPHER_TYPE_MAX","features":[321]},{"name":"IPSEC_DOSP_DSCP_DISABLE_VALUE","features":[321]},{"name":"IPSEC_DOSP_FLAGS","features":[321]},{"name":"IPSEC_DOSP_FLAG_DISABLE_AUTHIP","features":[321]},{"name":"IPSEC_DOSP_FLAG_DISABLE_DEFAULT_BLOCK","features":[321]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV1","features":[321]},{"name":"IPSEC_DOSP_FLAG_ENABLE_IKEV2","features":[321]},{"name":"IPSEC_DOSP_FLAG_FILTER_BLOCK","features":[321]},{"name":"IPSEC_DOSP_FLAG_FILTER_EXEMPT","features":[321]},{"name":"IPSEC_DOSP_OPTIONS0","features":[321]},{"name":"IPSEC_DOSP_RATE_LIMIT_DISABLE_VALUE","features":[321]},{"name":"IPSEC_DOSP_STATE0","features":[321]},{"name":"IPSEC_DOSP_STATE_ENUM_TEMPLATE0","features":[321]},{"name":"IPSEC_DOSP_STATISTICS0","features":[321]},{"name":"IPSEC_ESP_DROP_PACKET_STATISTICS0","features":[321]},{"name":"IPSEC_FAILURE_ME","features":[321]},{"name":"IPSEC_FAILURE_NONE","features":[321]},{"name":"IPSEC_FAILURE_PEER","features":[321]},{"name":"IPSEC_FAILURE_POINT","features":[321]},{"name":"IPSEC_FAILURE_POINT_MAX","features":[321]},{"name":"IPSEC_GETSPI0","features":[321]},{"name":"IPSEC_GETSPI1","features":[321]},{"name":"IPSEC_ID0","features":[321]},{"name":"IPSEC_KEYING_POLICY0","features":[321]},{"name":"IPSEC_KEYING_POLICY1","features":[321]},{"name":"IPSEC_KEYING_POLICY_FLAG_TERMINATING_MATCH","features":[321]},{"name":"IPSEC_KEYMODULE_STATE0","features":[321]},{"name":"IPSEC_KEY_MANAGER0","features":[321]},{"name":"IPSEC_KEY_MANAGER_CALLBACKS0","features":[305,321,308]},{"name":"IPSEC_KEY_MANAGER_DICTATE_KEY0","features":[305,321,308]},{"name":"IPSEC_KEY_MANAGER_FLAG_DICTATE_KEY","features":[321]},{"name":"IPSEC_KEY_MANAGER_KEY_DICTATION_CHECK0","features":[305,321]},{"name":"IPSEC_KEY_MANAGER_NOTIFY_KEY0","features":[321,308]},{"name":"IPSEC_PFS_1","features":[321]},{"name":"IPSEC_PFS_14","features":[321]},{"name":"IPSEC_PFS_2","features":[321]},{"name":"IPSEC_PFS_2048","features":[321]},{"name":"IPSEC_PFS_24","features":[321]},{"name":"IPSEC_PFS_ECP_256","features":[321]},{"name":"IPSEC_PFS_ECP_384","features":[321]},{"name":"IPSEC_PFS_GROUP","features":[321]},{"name":"IPSEC_PFS_MAX","features":[321]},{"name":"IPSEC_PFS_MM","features":[321]},{"name":"IPSEC_PFS_NONE","features":[321]},{"name":"IPSEC_POLICY_FLAG","features":[321]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH1","features":[321]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH2","features":[321]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH3","features":[321]},{"name":"IPSEC_POLICY_FLAG_BANDWIDTH4","features":[321]},{"name":"IPSEC_POLICY_FLAG_CLEAR_DF_ON_TUNNEL","features":[321]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_BYTE_LIFETIME","features":[321]},{"name":"IPSEC_POLICY_FLAG_DONT_NEGOTIATE_SECOND_LIFETIME","features":[321]},{"name":"IPSEC_POLICY_FLAG_ENABLE_SERVER_ADDR_ASSIGNMENT","features":[321]},{"name":"IPSEC_POLICY_FLAG_ENABLE_V6_IN_V4_TUNNELING","features":[321]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_DICTATE_KEY","features":[321]},{"name":"IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_NOTIFY_KEY","features":[321]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_GENERAL_NAT_TRAVERSAL","features":[321]},{"name":"IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_PEER_BEHIND_NAT","features":[321]},{"name":"IPSEC_POLICY_FLAG_ND_BOUNDARY","features":[321]},{"name":"IPSEC_POLICY_FLAG_ND_SECURE","features":[321]},{"name":"IPSEC_POLICY_FLAG_RESERVED1","features":[321]},{"name":"IPSEC_POLICY_FLAG_SITE_TO_SITE_TUNNEL","features":[321]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_ALLOW_OUTBOUND_CLEAR_CONNECTION","features":[321]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ALREADY_SECURE_CONNECTION","features":[321]},{"name":"IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ICMPV6","features":[321]},{"name":"IPSEC_PROPOSAL0","features":[321]},{"name":"IPSEC_SA0","features":[321]},{"name":"IPSEC_SA_AUTH_AND_CIPHER_INFORMATION0","features":[321]},{"name":"IPSEC_SA_AUTH_INFORMATION0","features":[321]},{"name":"IPSEC_SA_BUNDLE0","features":[321]},{"name":"IPSEC_SA_BUNDLE1","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAGS","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_ALLOW_NULL_TARGET_NAME_MATCH","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_ASSUME_UDP_CONTEXT_OUTBOUND","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_CLEAR_DF_ON_TUNNEL","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_ENABLE_OPTIONAL_ASYMMETRIC_IDLE","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_INBOUND_CONNECTIONS","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORCE_OUTBOUND_CONNECTIONS","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_FORWARD_PATH_INITIATOR","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_GUARANTEE_ENCRYPTION","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_IP_IN_IP_PKT","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOCALLY_DICTATED_KEYS","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_LOW_POWER_MODE_SUPPORT","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_BOUNDARY","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_BOUNDARY","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_PEER_NAT_BOUNDARY","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_ND_SECURE","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_NLB","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_EXPLICIT_CRED_MATCH","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_IMPERSONATION_LUID_VERIFY","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_NO_MACHINE_LUID_VERIFY","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_PEER_SUPPORTS_GUARANTEE_ENCRYPTION","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_SA_OFFLOADED","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_SUPPRESS_DUPLICATE_DELETION","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH1","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH2","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH3","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH4","features":[321]},{"name":"IPSEC_SA_BUNDLE_FLAG_USING_DICTATED_KEYS","features":[321]},{"name":"IPSEC_SA_CIPHER_INFORMATION0","features":[321]},{"name":"IPSEC_SA_CONTEXT0","features":[321,308]},{"name":"IPSEC_SA_CONTEXT1","features":[321,308]},{"name":"IPSEC_SA_CONTEXT_CALLBACK0","features":[321]},{"name":"IPSEC_SA_CONTEXT_CHANGE0","features":[321]},{"name":"IPSEC_SA_CONTEXT_ENUM_TEMPLATE0","features":[321,308]},{"name":"IPSEC_SA_CONTEXT_EVENT_ADD","features":[321]},{"name":"IPSEC_SA_CONTEXT_EVENT_DELETE","features":[321]},{"name":"IPSEC_SA_CONTEXT_EVENT_MAX","features":[321]},{"name":"IPSEC_SA_CONTEXT_EVENT_TYPE0","features":[321]},{"name":"IPSEC_SA_CONTEXT_SUBSCRIPTION0","features":[321,308]},{"name":"IPSEC_SA_DETAILS0","features":[321,308]},{"name":"IPSEC_SA_DETAILS1","features":[321,308]},{"name":"IPSEC_SA_ENUM_TEMPLATE0","features":[321]},{"name":"IPSEC_SA_IDLE_TIMEOUT0","features":[321]},{"name":"IPSEC_SA_LIFETIME0","features":[321]},{"name":"IPSEC_SA_TRANSFORM0","features":[321]},{"name":"IPSEC_STATISTICS0","features":[321]},{"name":"IPSEC_STATISTICS1","features":[321]},{"name":"IPSEC_TOKEN0","features":[321]},{"name":"IPSEC_TOKEN_MODE","features":[321]},{"name":"IPSEC_TOKEN_MODE_EXTENDED","features":[321]},{"name":"IPSEC_TOKEN_MODE_MAIN","features":[321]},{"name":"IPSEC_TOKEN_MODE_MAX","features":[321]},{"name":"IPSEC_TOKEN_PRINCIPAL","features":[321]},{"name":"IPSEC_TOKEN_PRINCIPAL_LOCAL","features":[321]},{"name":"IPSEC_TOKEN_PRINCIPAL_MAX","features":[321]},{"name":"IPSEC_TOKEN_PRINCIPAL_PEER","features":[321]},{"name":"IPSEC_TOKEN_TYPE","features":[321]},{"name":"IPSEC_TOKEN_TYPE_IMPERSONATION","features":[321]},{"name":"IPSEC_TOKEN_TYPE_MACHINE","features":[321]},{"name":"IPSEC_TOKEN_TYPE_MAX","features":[321]},{"name":"IPSEC_TRAFFIC0","features":[321]},{"name":"IPSEC_TRAFFIC1","features":[321]},{"name":"IPSEC_TRAFFIC_SELECTOR0","features":[321]},{"name":"IPSEC_TRAFFIC_SELECTOR_POLICY0","features":[321]},{"name":"IPSEC_TRAFFIC_STATISTICS0","features":[321]},{"name":"IPSEC_TRAFFIC_STATISTICS1","features":[321]},{"name":"IPSEC_TRAFFIC_TYPE","features":[321]},{"name":"IPSEC_TRAFFIC_TYPE_MAX","features":[321]},{"name":"IPSEC_TRAFFIC_TYPE_TRANSPORT","features":[321]},{"name":"IPSEC_TRAFFIC_TYPE_TUNNEL","features":[321]},{"name":"IPSEC_TRANSFORM_AH","features":[321]},{"name":"IPSEC_TRANSFORM_ESP_AUTH","features":[321]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_AND_CIPHER","features":[321]},{"name":"IPSEC_TRANSFORM_ESP_AUTH_FW","features":[321]},{"name":"IPSEC_TRANSFORM_ESP_CIPHER","features":[321]},{"name":"IPSEC_TRANSFORM_TYPE","features":[321]},{"name":"IPSEC_TRANSFORM_TYPE_MAX","features":[321]},{"name":"IPSEC_TRANSPORT_POLICY0","features":[321]},{"name":"IPSEC_TRANSPORT_POLICY1","features":[321]},{"name":"IPSEC_TRANSPORT_POLICY2","features":[321]},{"name":"IPSEC_TUNNEL_ENDPOINT0","features":[321]},{"name":"IPSEC_TUNNEL_ENDPOINTS0","features":[321]},{"name":"IPSEC_TUNNEL_ENDPOINTS1","features":[321]},{"name":"IPSEC_TUNNEL_ENDPOINTS2","features":[321]},{"name":"IPSEC_TUNNEL_POLICY0","features":[321]},{"name":"IPSEC_TUNNEL_POLICY1","features":[321]},{"name":"IPSEC_TUNNEL_POLICY2","features":[321]},{"name":"IPSEC_TUNNEL_POLICY3","features":[321]},{"name":"IPSEC_V4_UDP_ENCAPSULATION0","features":[321]},{"name":"IPSEC_VIRTUAL_IF_TUNNEL_INFO0","features":[321]},{"name":"IPsecDospGetSecurityInfo0","features":[305,321,308]},{"name":"IPsecDospGetStatistics0","features":[305,321]},{"name":"IPsecDospSetSecurityInfo0","features":[305,321,308]},{"name":"IPsecDospStateCreateEnumHandle0","features":[305,321]},{"name":"IPsecDospStateDestroyEnumHandle0","features":[305,321]},{"name":"IPsecDospStateEnum0","features":[305,321]},{"name":"IPsecGetStatistics0","features":[305,321]},{"name":"IPsecGetStatistics1","features":[305,321]},{"name":"IPsecKeyManagerAddAndRegister0","features":[305,321,308]},{"name":"IPsecKeyManagerGetSecurityInfoByKey0","features":[305,321,308]},{"name":"IPsecKeyManagerSetSecurityInfoByKey0","features":[305,321,308]},{"name":"IPsecKeyManagerUnregisterAndDelete0","features":[305,321]},{"name":"IPsecKeyManagersGet0","features":[305,321]},{"name":"IPsecSaContextAddInbound0","features":[305,321]},{"name":"IPsecSaContextAddInbound1","features":[305,321]},{"name":"IPsecSaContextAddOutbound0","features":[305,321]},{"name":"IPsecSaContextAddOutbound1","features":[305,321]},{"name":"IPsecSaContextCreate0","features":[305,321]},{"name":"IPsecSaContextCreate1","features":[305,321]},{"name":"IPsecSaContextCreateEnumHandle0","features":[305,321,308]},{"name":"IPsecSaContextDeleteById0","features":[305,321]},{"name":"IPsecSaContextDestroyEnumHandle0","features":[305,321]},{"name":"IPsecSaContextEnum0","features":[305,321,308]},{"name":"IPsecSaContextEnum1","features":[305,321,308]},{"name":"IPsecSaContextExpire0","features":[305,321]},{"name":"IPsecSaContextGetById0","features":[305,321,308]},{"name":"IPsecSaContextGetById1","features":[305,321,308]},{"name":"IPsecSaContextGetSpi0","features":[305,321]},{"name":"IPsecSaContextGetSpi1","features":[305,321]},{"name":"IPsecSaContextSetSpi0","features":[305,321]},{"name":"IPsecSaContextSubscribe0","features":[305,321,308]},{"name":"IPsecSaContextSubscriptionsGet0","features":[305,321,308]},{"name":"IPsecSaContextUnsubscribe0","features":[305,321]},{"name":"IPsecSaContextUpdate0","features":[305,321,308]},{"name":"IPsecSaCreateEnumHandle0","features":[305,321]},{"name":"IPsecSaDbGetSecurityInfo0","features":[305,321,308]},{"name":"IPsecSaDbSetSecurityInfo0","features":[305,321,308]},{"name":"IPsecSaDestroyEnumHandle0","features":[305,321]},{"name":"IPsecSaEnum0","features":[305,321,308]},{"name":"IPsecSaEnum1","features":[305,321,308]},{"name":"IkeextGetStatistics0","features":[305,321]},{"name":"IkeextGetStatistics1","features":[305,321]},{"name":"IkeextSaCreateEnumHandle0","features":[305,321,308]},{"name":"IkeextSaDbGetSecurityInfo0","features":[305,321,308]},{"name":"IkeextSaDbSetSecurityInfo0","features":[305,321,308]},{"name":"IkeextSaDeleteById0","features":[305,321]},{"name":"IkeextSaDestroyEnumHandle0","features":[305,321]},{"name":"IkeextSaEnum0","features":[305,321]},{"name":"IkeextSaEnum1","features":[305,321]},{"name":"IkeextSaEnum2","features":[305,321]},{"name":"IkeextSaGetById0","features":[305,321]},{"name":"IkeextSaGetById1","features":[305,321]},{"name":"IkeextSaGetById2","features":[305,321]}],"467":[{"name":"FW_DYNAMIC_KEYWORD_ADDRESS0","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_DATA0","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_ALL","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_AUTO_RESOLVE","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_ENUM_FLAGS_NON_AUTO_RESOLVE","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ADDRESS_FLAGS_AUTO_RESOLVE","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_INVALID","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_LOCAL","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_MDM","features":[463]},{"name":"FW_DYNAMIC_KEYWORD_ORIGIN_TYPE","features":[463]},{"name":"ICSSC_DEFAULT","features":[463]},{"name":"ICSSC_ENABLED","features":[463]},{"name":"ICSSHARINGTYPE_PRIVATE","features":[463]},{"name":"ICSSHARINGTYPE_PUBLIC","features":[463]},{"name":"ICSTT_IPADDRESS","features":[463]},{"name":"ICSTT_NAME","features":[463]},{"name":"ICS_TARGETTYPE","features":[463]},{"name":"IDynamicPortMapping","features":[463,356]},{"name":"IDynamicPortMappingCollection","features":[463,356]},{"name":"IEnumNetConnection","features":[463]},{"name":"IEnumNetSharingEveryConnection","features":[463]},{"name":"IEnumNetSharingPortMapping","features":[463]},{"name":"IEnumNetSharingPrivateConnection","features":[463]},{"name":"IEnumNetSharingPublicConnection","features":[463]},{"name":"INATEventManager","features":[463,356]},{"name":"INATExternalIPAddressCallback","features":[463]},{"name":"INATNumberOfEntriesCallback","features":[463]},{"name":"INET_FIREWALL_AC_BINARIES","features":[463]},{"name":"INET_FIREWALL_AC_BINARY","features":[463]},{"name":"INET_FIREWALL_AC_CAPABILITIES","features":[463,308]},{"name":"INET_FIREWALL_AC_CHANGE","features":[463,308]},{"name":"INET_FIREWALL_AC_CHANGE_CREATE","features":[463]},{"name":"INET_FIREWALL_AC_CHANGE_DELETE","features":[463]},{"name":"INET_FIREWALL_AC_CHANGE_INVALID","features":[463]},{"name":"INET_FIREWALL_AC_CHANGE_MAX","features":[463]},{"name":"INET_FIREWALL_AC_CHANGE_TYPE","features":[463]},{"name":"INET_FIREWALL_AC_CREATION_TYPE","features":[463]},{"name":"INET_FIREWALL_AC_MAX","features":[463]},{"name":"INET_FIREWALL_AC_NONE","features":[463]},{"name":"INET_FIREWALL_AC_PACKAGE_ID_ONLY","features":[463]},{"name":"INET_FIREWALL_APP_CONTAINER","features":[463,308]},{"name":"INetConnection","features":[463]},{"name":"INetConnectionConnectUi","features":[463]},{"name":"INetConnectionManager","features":[463]},{"name":"INetConnectionProps","features":[463,356]},{"name":"INetFwAuthorizedApplication","features":[463,356]},{"name":"INetFwAuthorizedApplications","features":[463,356]},{"name":"INetFwIcmpSettings","features":[463,356]},{"name":"INetFwMgr","features":[463,356]},{"name":"INetFwOpenPort","features":[463,356]},{"name":"INetFwOpenPorts","features":[463,356]},{"name":"INetFwPolicy","features":[463,356]},{"name":"INetFwPolicy2","features":[463,356]},{"name":"INetFwProduct","features":[463,356]},{"name":"INetFwProducts","features":[463,356]},{"name":"INetFwProfile","features":[463,356]},{"name":"INetFwRemoteAdminSettings","features":[463,356]},{"name":"INetFwRule","features":[463,356]},{"name":"INetFwRule2","features":[463,356]},{"name":"INetFwRule3","features":[463,356]},{"name":"INetFwRules","features":[463,356]},{"name":"INetFwService","features":[463,356]},{"name":"INetFwServiceRestriction","features":[463,356]},{"name":"INetFwServices","features":[463,356]},{"name":"INetSharingConfiguration","features":[463,356]},{"name":"INetSharingEveryConnectionCollection","features":[463,356]},{"name":"INetSharingManager","features":[463,356]},{"name":"INetSharingPortMapping","features":[463,356]},{"name":"INetSharingPortMappingCollection","features":[463,356]},{"name":"INetSharingPortMappingProps","features":[463,356]},{"name":"INetSharingPrivateConnectionCollection","features":[463,356]},{"name":"INetSharingPublicConnectionCollection","features":[463,356]},{"name":"IStaticPortMapping","features":[463,356]},{"name":"IStaticPortMappingCollection","features":[463,356]},{"name":"IUPnPNAT","features":[463,356]},{"name":"NCCF_ALLOW_DUPLICATION","features":[463]},{"name":"NCCF_ALLOW_REMOVAL","features":[463]},{"name":"NCCF_ALLOW_RENAME","features":[463]},{"name":"NCCF_ALL_USERS","features":[463]},{"name":"NCCF_BLUETOOTH_MASK","features":[463]},{"name":"NCCF_BRANDED","features":[463]},{"name":"NCCF_BRIDGED","features":[463]},{"name":"NCCF_DEFAULT","features":[463]},{"name":"NCCF_FIREWALLED","features":[463]},{"name":"NCCF_HOMENET_CAPABLE","features":[463]},{"name":"NCCF_HOSTED_NETWORK","features":[463]},{"name":"NCCF_INCOMING_ONLY","features":[463]},{"name":"NCCF_LAN_MASK","features":[463]},{"name":"NCCF_NONE","features":[463]},{"name":"NCCF_OUTGOING_ONLY","features":[463]},{"name":"NCCF_QUARANTINED","features":[463]},{"name":"NCCF_RESERVED","features":[463]},{"name":"NCCF_SHARED","features":[463]},{"name":"NCCF_SHARED_PRIVATE","features":[463]},{"name":"NCCF_VIRTUAL_STATION","features":[463]},{"name":"NCCF_WIFI_DIRECT","features":[463]},{"name":"NCME_DEFAULT","features":[463]},{"name":"NCME_HIDDEN","features":[463]},{"name":"NCM_BRIDGE","features":[463]},{"name":"NCM_DIRECT","features":[463]},{"name":"NCM_ISDN","features":[463]},{"name":"NCM_LAN","features":[463]},{"name":"NCM_NONE","features":[463]},{"name":"NCM_PHONE","features":[463]},{"name":"NCM_PPPOE","features":[463]},{"name":"NCM_SHAREDACCESSHOST_LAN","features":[463]},{"name":"NCM_SHAREDACCESSHOST_RAS","features":[463]},{"name":"NCM_TUNNEL","features":[463]},{"name":"NCS_ACTION_REQUIRED","features":[463]},{"name":"NCS_ACTION_REQUIRED_RETRY","features":[463]},{"name":"NCS_AUTHENTICATING","features":[463]},{"name":"NCS_AUTHENTICATION_FAILED","features":[463]},{"name":"NCS_AUTHENTICATION_SUCCEEDED","features":[463]},{"name":"NCS_CONNECTED","features":[463]},{"name":"NCS_CONNECTING","features":[463]},{"name":"NCS_CONNECT_FAILED","features":[463]},{"name":"NCS_CREDENTIALS_REQUIRED","features":[463]},{"name":"NCS_DISCONNECTED","features":[463]},{"name":"NCS_DISCONNECTING","features":[463]},{"name":"NCS_HARDWARE_DISABLED","features":[463]},{"name":"NCS_HARDWARE_MALFUNCTION","features":[463]},{"name":"NCS_HARDWARE_NOT_PRESENT","features":[463]},{"name":"NCS_INVALID_ADDRESS","features":[463]},{"name":"NCS_MEDIA_DISCONNECTED","features":[463]},{"name":"NCT_BRIDGE","features":[463]},{"name":"NCT_DIRECT_CONNECT","features":[463]},{"name":"NCT_INBOUND","features":[463]},{"name":"NCT_INTERNET","features":[463]},{"name":"NCT_LAN","features":[463]},{"name":"NCT_PHONE","features":[463]},{"name":"NCT_TUNNEL","features":[463]},{"name":"NCUC_DEFAULT","features":[463]},{"name":"NCUC_ENABLE_DISABLE","features":[463]},{"name":"NCUC_NO_UI","features":[463]},{"name":"NETCONMGR_ENUM_FLAGS","features":[463]},{"name":"NETCONUI_CONNECT_FLAGS","features":[463]},{"name":"NETCON_CHARACTERISTIC_FLAGS","features":[463]},{"name":"NETCON_MAX_NAME_LEN","features":[463]},{"name":"NETCON_MEDIATYPE","features":[463]},{"name":"NETCON_PROPERTIES","features":[463]},{"name":"NETCON_STATUS","features":[463]},{"name":"NETCON_TYPE","features":[463]},{"name":"NETISO_ERROR_TYPE","features":[463]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT","features":[463]},{"name":"NETISO_ERROR_TYPE_INTERNET_CLIENT_SERVER","features":[463]},{"name":"NETISO_ERROR_TYPE_MAX","features":[463]},{"name":"NETISO_ERROR_TYPE_NONE","features":[463]},{"name":"NETISO_ERROR_TYPE_PRIVATE_NETWORK","features":[463]},{"name":"NETISO_FLAG","features":[463]},{"name":"NETISO_FLAG_FORCE_COMPUTE_BINARIES","features":[463]},{"name":"NETISO_FLAG_MAX","features":[463]},{"name":"NETISO_GEID_FOR_NEUTRAL_AWARE","features":[463]},{"name":"NETISO_GEID_FOR_WDAG","features":[463]},{"name":"NET_FW_ACTION","features":[463]},{"name":"NET_FW_ACTION_ALLOW","features":[463]},{"name":"NET_FW_ACTION_BLOCK","features":[463]},{"name":"NET_FW_ACTION_MAX","features":[463]},{"name":"NET_FW_AUTHENTICATE_AND_ENCRYPT","features":[463]},{"name":"NET_FW_AUTHENTICATE_AND_NEGOTIATE_ENCRYPTION","features":[463]},{"name":"NET_FW_AUTHENTICATE_NONE","features":[463]},{"name":"NET_FW_AUTHENTICATE_NO_ENCAPSULATION","features":[463]},{"name":"NET_FW_AUTHENTICATE_TYPE","features":[463]},{"name":"NET_FW_AUTHENTICATE_WITH_INTEGRITY","features":[463]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE","features":[463]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_ALLOW","features":[463]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_APP","features":[463]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DEFER_TO_USER","features":[463]},{"name":"NET_FW_EDGE_TRAVERSAL_TYPE_DENY","features":[463]},{"name":"NET_FW_IP_PROTOCOL","features":[463]},{"name":"NET_FW_IP_PROTOCOL_ANY","features":[463]},{"name":"NET_FW_IP_PROTOCOL_TCP","features":[463]},{"name":"NET_FW_IP_PROTOCOL_UDP","features":[463]},{"name":"NET_FW_IP_VERSION","features":[463]},{"name":"NET_FW_IP_VERSION_ANY","features":[463]},{"name":"NET_FW_IP_VERSION_MAX","features":[463]},{"name":"NET_FW_IP_VERSION_V4","features":[463]},{"name":"NET_FW_IP_VERSION_V6","features":[463]},{"name":"NET_FW_MODIFY_STATE","features":[463]},{"name":"NET_FW_MODIFY_STATE_GP_OVERRIDE","features":[463]},{"name":"NET_FW_MODIFY_STATE_INBOUND_BLOCKED","features":[463]},{"name":"NET_FW_MODIFY_STATE_OK","features":[463]},{"name":"NET_FW_POLICY_EFFECTIVE","features":[463]},{"name":"NET_FW_POLICY_GROUP","features":[463]},{"name":"NET_FW_POLICY_LOCAL","features":[463]},{"name":"NET_FW_POLICY_TYPE","features":[463]},{"name":"NET_FW_POLICY_TYPE_MAX","features":[463]},{"name":"NET_FW_PROFILE2_ALL","features":[463]},{"name":"NET_FW_PROFILE2_DOMAIN","features":[463]},{"name":"NET_FW_PROFILE2_PRIVATE","features":[463]},{"name":"NET_FW_PROFILE2_PUBLIC","features":[463]},{"name":"NET_FW_PROFILE_CURRENT","features":[463]},{"name":"NET_FW_PROFILE_DOMAIN","features":[463]},{"name":"NET_FW_PROFILE_STANDARD","features":[463]},{"name":"NET_FW_PROFILE_TYPE","features":[463]},{"name":"NET_FW_PROFILE_TYPE2","features":[463]},{"name":"NET_FW_PROFILE_TYPE_MAX","features":[463]},{"name":"NET_FW_RULE_CATEGORY","features":[463]},{"name":"NET_FW_RULE_CATEGORY_BOOT","features":[463]},{"name":"NET_FW_RULE_CATEGORY_CONSEC","features":[463]},{"name":"NET_FW_RULE_CATEGORY_FIREWALL","features":[463]},{"name":"NET_FW_RULE_CATEGORY_MAX","features":[463]},{"name":"NET_FW_RULE_CATEGORY_STEALTH","features":[463]},{"name":"NET_FW_RULE_DIRECTION","features":[463]},{"name":"NET_FW_RULE_DIR_IN","features":[463]},{"name":"NET_FW_RULE_DIR_MAX","features":[463]},{"name":"NET_FW_RULE_DIR_OUT","features":[463]},{"name":"NET_FW_SCOPE","features":[463]},{"name":"NET_FW_SCOPE_ALL","features":[463]},{"name":"NET_FW_SCOPE_CUSTOM","features":[463]},{"name":"NET_FW_SCOPE_LOCAL_SUBNET","features":[463]},{"name":"NET_FW_SCOPE_MAX","features":[463]},{"name":"NET_FW_SERVICE_FILE_AND_PRINT","features":[463]},{"name":"NET_FW_SERVICE_NONE","features":[463]},{"name":"NET_FW_SERVICE_REMOTE_DESKTOP","features":[463]},{"name":"NET_FW_SERVICE_TYPE","features":[463]},{"name":"NET_FW_SERVICE_TYPE_MAX","features":[463]},{"name":"NET_FW_SERVICE_UPNP","features":[463]},{"name":"NcFreeNetconProperties","features":[463]},{"name":"NcIsValidConnectionName","features":[305,463]},{"name":"NetFwAuthorizedApplication","features":[463]},{"name":"NetFwMgr","features":[463]},{"name":"NetFwOpenPort","features":[463]},{"name":"NetFwPolicy2","features":[463]},{"name":"NetFwProduct","features":[463]},{"name":"NetFwProducts","features":[463]},{"name":"NetFwRule","features":[463]},{"name":"NetSharingManager","features":[463]},{"name":"NetworkIsolationDiagnoseConnectFailureAndGetInfo","features":[463]},{"name":"NetworkIsolationEnumAppContainers","features":[463,308]},{"name":"NetworkIsolationEnumerateAppContainerRules","features":[463,415]},{"name":"NetworkIsolationFreeAppContainers","features":[463,308]},{"name":"NetworkIsolationGetAppContainerConfig","features":[463,308]},{"name":"NetworkIsolationGetEnterpriseIdAsync","features":[305,463]},{"name":"NetworkIsolationGetEnterpriseIdClose","features":[305,463]},{"name":"NetworkIsolationRegisterForAppContainerChanges","features":[305,463,308]},{"name":"NetworkIsolationSetAppContainerConfig","features":[463,308]},{"name":"NetworkIsolationSetupAppContainerBinaries","features":[305,463,308]},{"name":"NetworkIsolationUnregisterForAppContainerChanges","features":[305,463]},{"name":"PAC_CHANGES_CALLBACK_FN","features":[463,308]},{"name":"PFN_FWADDDYNAMICKEYWORDADDRESS0","features":[463]},{"name":"PFN_FWDELETEDYNAMICKEYWORDADDRESS0","features":[463]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSBYID0","features":[463]},{"name":"PFN_FWENUMDYNAMICKEYWORDADDRESSESBYTYPE0","features":[463]},{"name":"PFN_FWFREEDYNAMICKEYWORDADDRESSDATA0","features":[463]},{"name":"PFN_FWUPDATEDYNAMICKEYWORDADDRESS0","features":[305,463]},{"name":"PNETISO_EDP_ID_CALLBACK_FN","features":[463]},{"name":"SHARINGCONNECTIONTYPE","features":[463]},{"name":"SHARINGCONNECTION_ENUM_FLAGS","features":[463]},{"name":"S_OBJECT_NO_LONGER_VALID","features":[463]},{"name":"UPnPNAT","features":[463]}],"468":[{"name":"WNV_API_MAJOR_VERSION_1","features":[464]},{"name":"WNV_API_MINOR_VERSION_0","features":[464]},{"name":"WNV_CA_NOTIFICATION_TYPE","features":[464]},{"name":"WNV_CUSTOMER_ADDRESS_CHANGE_PARAM","features":[464,318]},{"name":"WNV_IP_ADDRESS","features":[464,318]},{"name":"WNV_NOTIFICATION_PARAM","features":[464]},{"name":"WNV_NOTIFICATION_TYPE","features":[464]},{"name":"WNV_OBJECT_CHANGE_PARAM","features":[464,318]},{"name":"WNV_OBJECT_HEADER","features":[464]},{"name":"WNV_OBJECT_TYPE","features":[464]},{"name":"WNV_POLICY_MISMATCH_PARAM","features":[464,318]},{"name":"WNV_PROVIDER_ADDRESS_CHANGE_PARAM","features":[464,318]},{"name":"WNV_REDIRECT_PARAM","features":[464,318]},{"name":"WnvCustomerAddressAdded","features":[464]},{"name":"WnvCustomerAddressDeleted","features":[464]},{"name":"WnvCustomerAddressMax","features":[464]},{"name":"WnvCustomerAddressMoved","features":[464]},{"name":"WnvCustomerAddressType","features":[464]},{"name":"WnvNotificationTypeMax","features":[464]},{"name":"WnvObjectChangeType","features":[464]},{"name":"WnvObjectTypeMax","features":[464]},{"name":"WnvOpen","features":[305,464]},{"name":"WnvPolicyMismatchType","features":[464]},{"name":"WnvProviderAddressType","features":[464]},{"name":"WnvRedirectType","features":[464]},{"name":"WnvRequestNotification","features":[305,464,310]}],"469":[{"name":"ACTRL_DS_CONTROL_ACCESS","features":[465]},{"name":"ACTRL_DS_CREATE_CHILD","features":[465]},{"name":"ACTRL_DS_DELETE_CHILD","features":[465]},{"name":"ACTRL_DS_DELETE_TREE","features":[465]},{"name":"ACTRL_DS_LIST","features":[465]},{"name":"ACTRL_DS_LIST_OBJECT","features":[465]},{"name":"ACTRL_DS_OPEN","features":[465]},{"name":"ACTRL_DS_READ_PROP","features":[465]},{"name":"ACTRL_DS_SELF","features":[465]},{"name":"ACTRL_DS_WRITE_PROP","features":[465]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_MUTUAL_AUTH_REQUIRED","features":[465]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE","features":[465]},{"name":"ADAM_REPL_AUTHENTICATION_MODE_NEGOTIATE_PASS_THROUGH","features":[465]},{"name":"ADAM_SCP_FSMO_NAMING_STRING","features":[465]},{"name":"ADAM_SCP_FSMO_NAMING_STRING_W","features":[465]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING","features":[465]},{"name":"ADAM_SCP_FSMO_SCHEMA_STRING_W","features":[465]},{"name":"ADAM_SCP_FSMO_STRING","features":[465]},{"name":"ADAM_SCP_FSMO_STRING_W","features":[465]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING","features":[465]},{"name":"ADAM_SCP_INSTANCE_NAME_STRING_W","features":[465]},{"name":"ADAM_SCP_PARTITION_STRING","features":[465]},{"name":"ADAM_SCP_PARTITION_STRING_W","features":[465]},{"name":"ADAM_SCP_SITE_NAME_STRING","features":[465]},{"name":"ADAM_SCP_SITE_NAME_STRING_W","features":[465]},{"name":"ADSIPROP_ADSIFLAG","features":[465]},{"name":"ADSIPROP_ASYNCHRONOUS","features":[465]},{"name":"ADSIPROP_ATTRIBTYPES_ONLY","features":[465]},{"name":"ADSIPROP_CACHE_RESULTS","features":[465]},{"name":"ADSIPROP_CHASE_REFERRALS","features":[465]},{"name":"ADSIPROP_DEREF_ALIASES","features":[465]},{"name":"ADSIPROP_PAGED_TIME_LIMIT","features":[465]},{"name":"ADSIPROP_PAGESIZE","features":[465]},{"name":"ADSIPROP_SEARCH_SCOPE","features":[465]},{"name":"ADSIPROP_SIZE_LIMIT","features":[465]},{"name":"ADSIPROP_SORT_ON","features":[465]},{"name":"ADSIPROP_TIMEOUT","features":[465]},{"name":"ADSIPROP_TIME_LIMIT","features":[465]},{"name":"ADSI_DIALECT_ENUM","features":[465]},{"name":"ADSI_DIALECT_LDAP","features":[465]},{"name":"ADSI_DIALECT_SQL","features":[465]},{"name":"ADSPROPERROR","features":[305,465]},{"name":"ADSPROPINITPARAMS","features":[305,465]},{"name":"ADSTYPE","features":[465]},{"name":"ADSTYPE_BACKLINK","features":[465]},{"name":"ADSTYPE_BOOLEAN","features":[465]},{"name":"ADSTYPE_CASEIGNORE_LIST","features":[465]},{"name":"ADSTYPE_CASE_EXACT_STRING","features":[465]},{"name":"ADSTYPE_CASE_IGNORE_STRING","features":[465]},{"name":"ADSTYPE_DN_STRING","features":[465]},{"name":"ADSTYPE_DN_WITH_BINARY","features":[465]},{"name":"ADSTYPE_DN_WITH_STRING","features":[465]},{"name":"ADSTYPE_EMAIL","features":[465]},{"name":"ADSTYPE_FAXNUMBER","features":[465]},{"name":"ADSTYPE_HOLD","features":[465]},{"name":"ADSTYPE_INTEGER","features":[465]},{"name":"ADSTYPE_INVALID","features":[465]},{"name":"ADSTYPE_LARGE_INTEGER","features":[465]},{"name":"ADSTYPE_NETADDRESS","features":[465]},{"name":"ADSTYPE_NT_SECURITY_DESCRIPTOR","features":[465]},{"name":"ADSTYPE_NUMERIC_STRING","features":[465]},{"name":"ADSTYPE_OBJECT_CLASS","features":[465]},{"name":"ADSTYPE_OCTET_LIST","features":[465]},{"name":"ADSTYPE_OCTET_STRING","features":[465]},{"name":"ADSTYPE_PATH","features":[465]},{"name":"ADSTYPE_POSTALADDRESS","features":[465]},{"name":"ADSTYPE_PRINTABLE_STRING","features":[465]},{"name":"ADSTYPE_PROV_SPECIFIC","features":[465]},{"name":"ADSTYPE_REPLICAPOINTER","features":[465]},{"name":"ADSTYPE_TIMESTAMP","features":[465]},{"name":"ADSTYPE_TYPEDNAME","features":[465]},{"name":"ADSTYPE_UNKNOWN","features":[465]},{"name":"ADSTYPE_UTC_TIME","features":[465]},{"name":"ADSVALUE","features":[305,465]},{"name":"ADS_ACEFLAG_ENUM","features":[465]},{"name":"ADS_ACEFLAG_FAILED_ACCESS","features":[465]},{"name":"ADS_ACEFLAG_INHERITED_ACE","features":[465]},{"name":"ADS_ACEFLAG_INHERIT_ACE","features":[465]},{"name":"ADS_ACEFLAG_INHERIT_ONLY_ACE","features":[465]},{"name":"ADS_ACEFLAG_NO_PROPAGATE_INHERIT_ACE","features":[465]},{"name":"ADS_ACEFLAG_SUCCESSFUL_ACCESS","features":[465]},{"name":"ADS_ACEFLAG_VALID_INHERIT_FLAGS","features":[465]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED","features":[465]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK","features":[465]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_CALLBACK_OBJECT","features":[465]},{"name":"ADS_ACETYPE_ACCESS_ALLOWED_OBJECT","features":[465]},{"name":"ADS_ACETYPE_ACCESS_DENIED","features":[465]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK","features":[465]},{"name":"ADS_ACETYPE_ACCESS_DENIED_CALLBACK_OBJECT","features":[465]},{"name":"ADS_ACETYPE_ACCESS_DENIED_OBJECT","features":[465]},{"name":"ADS_ACETYPE_ENUM","features":[465]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK","features":[465]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_CALLBACK_OBJECT","features":[465]},{"name":"ADS_ACETYPE_SYSTEM_ALARM_OBJECT","features":[465]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT","features":[465]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK","features":[465]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_CALLBACK_OBJECT","features":[465]},{"name":"ADS_ACETYPE_SYSTEM_AUDIT_OBJECT","features":[465]},{"name":"ADS_ATTR_APPEND","features":[465]},{"name":"ADS_ATTR_CLEAR","features":[465]},{"name":"ADS_ATTR_DEF","features":[305,465]},{"name":"ADS_ATTR_DELETE","features":[465]},{"name":"ADS_ATTR_INFO","features":[305,465]},{"name":"ADS_ATTR_UPDATE","features":[465]},{"name":"ADS_AUTHENTICATION_ENUM","features":[465]},{"name":"ADS_AUTH_RESERVED","features":[465]},{"name":"ADS_BACKLINK","features":[465]},{"name":"ADS_CASEIGNORE_LIST","features":[465]},{"name":"ADS_CHASE_REFERRALS_ALWAYS","features":[465]},{"name":"ADS_CHASE_REFERRALS_ENUM","features":[465]},{"name":"ADS_CHASE_REFERRALS_EXTERNAL","features":[465]},{"name":"ADS_CHASE_REFERRALS_NEVER","features":[465]},{"name":"ADS_CHASE_REFERRALS_SUBORDINATE","features":[465]},{"name":"ADS_CLASS_DEF","features":[305,465]},{"name":"ADS_DEREFENUM","features":[465]},{"name":"ADS_DEREF_ALWAYS","features":[465]},{"name":"ADS_DEREF_FINDING","features":[465]},{"name":"ADS_DEREF_NEVER","features":[465]},{"name":"ADS_DEREF_SEARCHING","features":[465]},{"name":"ADS_DISPLAY_ENUM","features":[465]},{"name":"ADS_DISPLAY_FULL","features":[465]},{"name":"ADS_DISPLAY_VALUE_ONLY","features":[465]},{"name":"ADS_DN_WITH_BINARY","features":[465]},{"name":"ADS_DN_WITH_STRING","features":[465]},{"name":"ADS_EMAIL","features":[465]},{"name":"ADS_ESCAPEDMODE_DEFAULT","features":[465]},{"name":"ADS_ESCAPEDMODE_OFF","features":[465]},{"name":"ADS_ESCAPEDMODE_OFF_EX","features":[465]},{"name":"ADS_ESCAPEDMODE_ON","features":[465]},{"name":"ADS_ESCAPE_MODE_ENUM","features":[465]},{"name":"ADS_EXT_INITCREDENTIALS","features":[465]},{"name":"ADS_EXT_INITIALIZE_COMPLETE","features":[465]},{"name":"ADS_EXT_MAXEXTDISPID","features":[465]},{"name":"ADS_EXT_MINEXTDISPID","features":[465]},{"name":"ADS_FAST_BIND","features":[465]},{"name":"ADS_FAXNUMBER","features":[465]},{"name":"ADS_FLAGTYPE_ENUM","features":[465]},{"name":"ADS_FLAG_INHERITED_OBJECT_TYPE_PRESENT","features":[465]},{"name":"ADS_FLAG_OBJECT_TYPE_PRESENT","features":[465]},{"name":"ADS_FORMAT_ENUM","features":[465]},{"name":"ADS_FORMAT_LEAF","features":[465]},{"name":"ADS_FORMAT_PROVIDER","features":[465]},{"name":"ADS_FORMAT_SERVER","features":[465]},{"name":"ADS_FORMAT_WINDOWS","features":[465]},{"name":"ADS_FORMAT_WINDOWS_DN","features":[465]},{"name":"ADS_FORMAT_WINDOWS_NO_SERVER","features":[465]},{"name":"ADS_FORMAT_WINDOWS_PARENT","features":[465]},{"name":"ADS_FORMAT_X500","features":[465]},{"name":"ADS_FORMAT_X500_DN","features":[465]},{"name":"ADS_FORMAT_X500_NO_SERVER","features":[465]},{"name":"ADS_FORMAT_X500_PARENT","features":[465]},{"name":"ADS_GROUP_TYPE_DOMAIN_LOCAL_GROUP","features":[465]},{"name":"ADS_GROUP_TYPE_ENUM","features":[465]},{"name":"ADS_GROUP_TYPE_GLOBAL_GROUP","features":[465]},{"name":"ADS_GROUP_TYPE_LOCAL_GROUP","features":[465]},{"name":"ADS_GROUP_TYPE_SECURITY_ENABLED","features":[465]},{"name":"ADS_GROUP_TYPE_UNIVERSAL_GROUP","features":[465]},{"name":"ADS_HOLD","features":[465]},{"name":"ADS_NAME_INITTYPE_DOMAIN","features":[465]},{"name":"ADS_NAME_INITTYPE_ENUM","features":[465]},{"name":"ADS_NAME_INITTYPE_GC","features":[465]},{"name":"ADS_NAME_INITTYPE_SERVER","features":[465]},{"name":"ADS_NAME_TYPE_1779","features":[465]},{"name":"ADS_NAME_TYPE_CANONICAL","features":[465]},{"name":"ADS_NAME_TYPE_CANONICAL_EX","features":[465]},{"name":"ADS_NAME_TYPE_DISPLAY","features":[465]},{"name":"ADS_NAME_TYPE_DOMAIN_SIMPLE","features":[465]},{"name":"ADS_NAME_TYPE_ENTERPRISE_SIMPLE","features":[465]},{"name":"ADS_NAME_TYPE_ENUM","features":[465]},{"name":"ADS_NAME_TYPE_GUID","features":[465]},{"name":"ADS_NAME_TYPE_NT4","features":[465]},{"name":"ADS_NAME_TYPE_SERVICE_PRINCIPAL_NAME","features":[465]},{"name":"ADS_NAME_TYPE_SID_OR_SID_HISTORY_NAME","features":[465]},{"name":"ADS_NAME_TYPE_UNKNOWN","features":[465]},{"name":"ADS_NAME_TYPE_USER_PRINCIPAL_NAME","features":[465]},{"name":"ADS_NETADDRESS","features":[465]},{"name":"ADS_NO_AUTHENTICATION","features":[465]},{"name":"ADS_NO_REFERRAL_CHASING","features":[465]},{"name":"ADS_NT_SECURITY_DESCRIPTOR","features":[465]},{"name":"ADS_OBJECT_INFO","features":[465]},{"name":"ADS_OCTET_LIST","features":[465]},{"name":"ADS_OCTET_STRING","features":[465]},{"name":"ADS_OPTION_ACCUMULATIVE_MODIFICATION","features":[465]},{"name":"ADS_OPTION_ENUM","features":[465]},{"name":"ADS_OPTION_MUTUAL_AUTH_STATUS","features":[465]},{"name":"ADS_OPTION_PAGE_SIZE","features":[465]},{"name":"ADS_OPTION_PASSWORD_METHOD","features":[465]},{"name":"ADS_OPTION_PASSWORD_PORTNUMBER","features":[465]},{"name":"ADS_OPTION_QUOTA","features":[465]},{"name":"ADS_OPTION_REFERRALS","features":[465]},{"name":"ADS_OPTION_SECURITY_MASK","features":[465]},{"name":"ADS_OPTION_SERVERNAME","features":[465]},{"name":"ADS_OPTION_SKIP_SID_LOOKUP","features":[465]},{"name":"ADS_PASSWORD_ENCODE_CLEAR","features":[465]},{"name":"ADS_PASSWORD_ENCODE_REQUIRE_SSL","features":[465]},{"name":"ADS_PASSWORD_ENCODING_ENUM","features":[465]},{"name":"ADS_PATH","features":[465]},{"name":"ADS_PATHTYPE_ENUM","features":[465]},{"name":"ADS_PATH_FILE","features":[465]},{"name":"ADS_PATH_FILESHARE","features":[465]},{"name":"ADS_PATH_REGISTRY","features":[465]},{"name":"ADS_POSTALADDRESS","features":[465]},{"name":"ADS_PREFERENCES_ENUM","features":[465]},{"name":"ADS_PROMPT_CREDENTIALS","features":[465]},{"name":"ADS_PROPERTY_APPEND","features":[465]},{"name":"ADS_PROPERTY_CLEAR","features":[465]},{"name":"ADS_PROPERTY_DELETE","features":[465]},{"name":"ADS_PROPERTY_OPERATION_ENUM","features":[465]},{"name":"ADS_PROPERTY_UPDATE","features":[465]},{"name":"ADS_PROV_SPECIFIC","features":[465]},{"name":"ADS_READONLY_SERVER","features":[465]},{"name":"ADS_REPLICAPOINTER","features":[465]},{"name":"ADS_RIGHTS_ENUM","features":[465]},{"name":"ADS_RIGHT_ACCESS_SYSTEM_SECURITY","features":[465]},{"name":"ADS_RIGHT_ACTRL_DS_LIST","features":[465]},{"name":"ADS_RIGHT_DELETE","features":[465]},{"name":"ADS_RIGHT_DS_CONTROL_ACCESS","features":[465]},{"name":"ADS_RIGHT_DS_CREATE_CHILD","features":[465]},{"name":"ADS_RIGHT_DS_DELETE_CHILD","features":[465]},{"name":"ADS_RIGHT_DS_DELETE_TREE","features":[465]},{"name":"ADS_RIGHT_DS_LIST_OBJECT","features":[465]},{"name":"ADS_RIGHT_DS_READ_PROP","features":[465]},{"name":"ADS_RIGHT_DS_SELF","features":[465]},{"name":"ADS_RIGHT_DS_WRITE_PROP","features":[465]},{"name":"ADS_RIGHT_GENERIC_ALL","features":[465]},{"name":"ADS_RIGHT_GENERIC_EXECUTE","features":[465]},{"name":"ADS_RIGHT_GENERIC_READ","features":[465]},{"name":"ADS_RIGHT_GENERIC_WRITE","features":[465]},{"name":"ADS_RIGHT_READ_CONTROL","features":[465]},{"name":"ADS_RIGHT_SYNCHRONIZE","features":[465]},{"name":"ADS_RIGHT_WRITE_DAC","features":[465]},{"name":"ADS_RIGHT_WRITE_OWNER","features":[465]},{"name":"ADS_SCOPEENUM","features":[465]},{"name":"ADS_SCOPE_BASE","features":[465]},{"name":"ADS_SCOPE_ONELEVEL","features":[465]},{"name":"ADS_SCOPE_SUBTREE","features":[465]},{"name":"ADS_SD_CONTROL_ENUM","features":[465]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERITED","features":[465]},{"name":"ADS_SD_CONTROL_SE_DACL_AUTO_INHERIT_REQ","features":[465]},{"name":"ADS_SD_CONTROL_SE_DACL_DEFAULTED","features":[465]},{"name":"ADS_SD_CONTROL_SE_DACL_PRESENT","features":[465]},{"name":"ADS_SD_CONTROL_SE_DACL_PROTECTED","features":[465]},{"name":"ADS_SD_CONTROL_SE_GROUP_DEFAULTED","features":[465]},{"name":"ADS_SD_CONTROL_SE_OWNER_DEFAULTED","features":[465]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERITED","features":[465]},{"name":"ADS_SD_CONTROL_SE_SACL_AUTO_INHERIT_REQ","features":[465]},{"name":"ADS_SD_CONTROL_SE_SACL_DEFAULTED","features":[465]},{"name":"ADS_SD_CONTROL_SE_SACL_PRESENT","features":[465]},{"name":"ADS_SD_CONTROL_SE_SACL_PROTECTED","features":[465]},{"name":"ADS_SD_CONTROL_SE_SELF_RELATIVE","features":[465]},{"name":"ADS_SD_FORMAT_ENUM","features":[465]},{"name":"ADS_SD_FORMAT_HEXSTRING","features":[465]},{"name":"ADS_SD_FORMAT_IID","features":[465]},{"name":"ADS_SD_FORMAT_RAW","features":[465]},{"name":"ADS_SD_REVISION_DS","features":[465]},{"name":"ADS_SD_REVISION_ENUM","features":[465]},{"name":"ADS_SEARCHPREF_ASYNCHRONOUS","features":[465]},{"name":"ADS_SEARCHPREF_ATTRIBTYPES_ONLY","features":[465]},{"name":"ADS_SEARCHPREF_ATTRIBUTE_QUERY","features":[465]},{"name":"ADS_SEARCHPREF_CACHE_RESULTS","features":[465]},{"name":"ADS_SEARCHPREF_CHASE_REFERRALS","features":[465]},{"name":"ADS_SEARCHPREF_DEREF_ALIASES","features":[465]},{"name":"ADS_SEARCHPREF_DIRSYNC","features":[465]},{"name":"ADS_SEARCHPREF_DIRSYNC_FLAG","features":[465]},{"name":"ADS_SEARCHPREF_ENUM","features":[465]},{"name":"ADS_SEARCHPREF_EXTENDED_DN","features":[465]},{"name":"ADS_SEARCHPREF_INFO","features":[305,465]},{"name":"ADS_SEARCHPREF_PAGED_TIME_LIMIT","features":[465]},{"name":"ADS_SEARCHPREF_PAGESIZE","features":[465]},{"name":"ADS_SEARCHPREF_SEARCH_SCOPE","features":[465]},{"name":"ADS_SEARCHPREF_SECURITY_MASK","features":[465]},{"name":"ADS_SEARCHPREF_SIZE_LIMIT","features":[465]},{"name":"ADS_SEARCHPREF_SORT_ON","features":[465]},{"name":"ADS_SEARCHPREF_TIMEOUT","features":[465]},{"name":"ADS_SEARCHPREF_TIME_LIMIT","features":[465]},{"name":"ADS_SEARCHPREF_TOMBSTONE","features":[465]},{"name":"ADS_SEARCHPREF_VLV","features":[465]},{"name":"ADS_SEARCH_COLUMN","features":[305,465]},{"name":"ADS_SEARCH_HANDLE","features":[465]},{"name":"ADS_SECURE_AUTHENTICATION","features":[465]},{"name":"ADS_SECURITY_INFO_DACL","features":[465]},{"name":"ADS_SECURITY_INFO_ENUM","features":[465]},{"name":"ADS_SECURITY_INFO_GROUP","features":[465]},{"name":"ADS_SECURITY_INFO_OWNER","features":[465]},{"name":"ADS_SECURITY_INFO_SACL","features":[465]},{"name":"ADS_SERVER_BIND","features":[465]},{"name":"ADS_SETTYPE_DN","features":[465]},{"name":"ADS_SETTYPE_ENUM","features":[465]},{"name":"ADS_SETTYPE_FULL","features":[465]},{"name":"ADS_SETTYPE_PROVIDER","features":[465]},{"name":"ADS_SETTYPE_SERVER","features":[465]},{"name":"ADS_SORTKEY","features":[305,465]},{"name":"ADS_STATUSENUM","features":[465]},{"name":"ADS_STATUS_INVALID_SEARCHPREF","features":[465]},{"name":"ADS_STATUS_INVALID_SEARCHPREFVALUE","features":[465]},{"name":"ADS_STATUS_S_OK","features":[465]},{"name":"ADS_SYSTEMFLAG_ATTR_IS_CONSTRUCTED","features":[465]},{"name":"ADS_SYSTEMFLAG_ATTR_NOT_REPLICATED","features":[465]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_LIMITED_MOVE","features":[465]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_MOVE","features":[465]},{"name":"ADS_SYSTEMFLAG_CONFIG_ALLOW_RENAME","features":[465]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_DOMAIN","features":[465]},{"name":"ADS_SYSTEMFLAG_CR_NTDS_NC","features":[465]},{"name":"ADS_SYSTEMFLAG_DISALLOW_DELETE","features":[465]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_MOVE","features":[465]},{"name":"ADS_SYSTEMFLAG_DOMAIN_DISALLOW_RENAME","features":[465]},{"name":"ADS_SYSTEMFLAG_ENUM","features":[465]},{"name":"ADS_TIMESTAMP","features":[465]},{"name":"ADS_TYPEDNAME","features":[465]},{"name":"ADS_UF_ACCOUNTDISABLE","features":[465]},{"name":"ADS_UF_DONT_EXPIRE_PASSWD","features":[465]},{"name":"ADS_UF_DONT_REQUIRE_PREAUTH","features":[465]},{"name":"ADS_UF_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[465]},{"name":"ADS_UF_HOMEDIR_REQUIRED","features":[465]},{"name":"ADS_UF_INTERDOMAIN_TRUST_ACCOUNT","features":[465]},{"name":"ADS_UF_LOCKOUT","features":[465]},{"name":"ADS_UF_MNS_LOGON_ACCOUNT","features":[465]},{"name":"ADS_UF_NORMAL_ACCOUNT","features":[465]},{"name":"ADS_UF_NOT_DELEGATED","features":[465]},{"name":"ADS_UF_PASSWD_CANT_CHANGE","features":[465]},{"name":"ADS_UF_PASSWD_NOTREQD","features":[465]},{"name":"ADS_UF_PASSWORD_EXPIRED","features":[465]},{"name":"ADS_UF_SCRIPT","features":[465]},{"name":"ADS_UF_SERVER_TRUST_ACCOUNT","features":[465]},{"name":"ADS_UF_SMARTCARD_REQUIRED","features":[465]},{"name":"ADS_UF_TEMP_DUPLICATE_ACCOUNT","features":[465]},{"name":"ADS_UF_TRUSTED_FOR_DELEGATION","features":[465]},{"name":"ADS_UF_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[465]},{"name":"ADS_UF_USE_DES_KEY_ONLY","features":[465]},{"name":"ADS_UF_WORKSTATION_TRUST_ACCOUNT","features":[465]},{"name":"ADS_USER_FLAG_ENUM","features":[465]},{"name":"ADS_USE_DELEGATION","features":[465]},{"name":"ADS_USE_ENCRYPTION","features":[465]},{"name":"ADS_USE_SEALING","features":[465]},{"name":"ADS_USE_SIGNING","features":[465]},{"name":"ADS_USE_SSL","features":[465]},{"name":"ADS_VLV","features":[465]},{"name":"ADSystemInfo","features":[465]},{"name":"ADsBuildEnumerator","features":[465,356,415]},{"name":"ADsBuildVarArrayInt","features":[465]},{"name":"ADsBuildVarArrayStr","features":[465]},{"name":"ADsDecodeBinaryData","features":[465]},{"name":"ADsEncodeBinaryData","features":[465]},{"name":"ADsEnumerateNext","features":[465,415]},{"name":"ADsFreeEnumerator","features":[465,415]},{"name":"ADsGetLastError","features":[465]},{"name":"ADsGetObject","features":[465]},{"name":"ADsOpenObject","features":[465]},{"name":"ADsPropCheckIfWritable","features":[305,465]},{"name":"ADsPropCreateNotifyObj","features":[305,465,356]},{"name":"ADsPropGetInitInfo","features":[305,465]},{"name":"ADsPropSendErrorMessage","features":[305,465]},{"name":"ADsPropSetHwnd","features":[305,465]},{"name":"ADsPropSetHwndWithTitle","features":[305,465]},{"name":"ADsPropShowErrorDialog","features":[305,465]},{"name":"ADsSecurityUtility","features":[465]},{"name":"ADsSetLastError","features":[465]},{"name":"AccessControlEntry","features":[465]},{"name":"AccessControlList","features":[465]},{"name":"AdsFreeAdsValues","features":[305,465]},{"name":"AdsTypeToPropVariant","features":[305,465]},{"name":"AllocADsMem","features":[465]},{"name":"AllocADsStr","features":[465]},{"name":"BackLink","features":[465]},{"name":"BinarySDToSecurityDescriptor","features":[465,308]},{"name":"CFSTR_DSDISPLAYSPECOPTIONS","features":[465]},{"name":"CFSTR_DSOBJECTNAMES","features":[465]},{"name":"CFSTR_DSOP_DS_SELECTION_LIST","features":[465]},{"name":"CFSTR_DSPROPERTYPAGEINFO","features":[465]},{"name":"CFSTR_DSQUERYPARAMS","features":[465]},{"name":"CFSTR_DSQUERYSCOPE","features":[465]},{"name":"CFSTR_DS_DISPLAY_SPEC_OPTIONS","features":[465]},{"name":"CLSID_CommonQuery","features":[465]},{"name":"CLSID_DsAdminCreateObj","features":[465]},{"name":"CLSID_DsDisplaySpecifier","features":[465]},{"name":"CLSID_DsDomainTreeBrowser","features":[465]},{"name":"CLSID_DsFindAdvanced","features":[465]},{"name":"CLSID_DsFindComputer","features":[465]},{"name":"CLSID_DsFindContainer","features":[465]},{"name":"CLSID_DsFindDomainController","features":[465]},{"name":"CLSID_DsFindFrsMembers","features":[465]},{"name":"CLSID_DsFindObjects","features":[465]},{"name":"CLSID_DsFindPeople","features":[465]},{"name":"CLSID_DsFindPrinter","features":[465]},{"name":"CLSID_DsFindVolume","features":[465]},{"name":"CLSID_DsFindWriteableDomainController","features":[465]},{"name":"CLSID_DsFolderProperties","features":[465]},{"name":"CLSID_DsObjectPicker","features":[465]},{"name":"CLSID_DsPropertyPages","features":[465]},{"name":"CLSID_DsQuery","features":[465]},{"name":"CLSID_MicrosoftDS","features":[465]},{"name":"CQFF_ISOPTIONAL","features":[465]},{"name":"CQFF_NOGLOBALPAGES","features":[465]},{"name":"CQFORM","features":[465,367]},{"name":"CQPAGE","features":[305,465,367]},{"name":"CQPM_CLEARFORM","features":[465]},{"name":"CQPM_ENABLE","features":[465]},{"name":"CQPM_GETPARAMETERS","features":[465]},{"name":"CQPM_HANDLERSPECIFIC","features":[465]},{"name":"CQPM_HELP","features":[465]},{"name":"CQPM_INITIALIZE","features":[465]},{"name":"CQPM_PERSIST","features":[465]},{"name":"CQPM_RELEASE","features":[465]},{"name":"CQPM_SETDEFAULTPARAMETERS","features":[465]},{"name":"CaseIgnoreList","features":[465]},{"name":"DBDTF_RETURNEXTERNAL","features":[465]},{"name":"DBDTF_RETURNFQDN","features":[465]},{"name":"DBDTF_RETURNINBOUND","features":[465]},{"name":"DBDTF_RETURNINOUTBOUND","features":[465]},{"name":"DBDTF_RETURNMIXEDDOMAINS","features":[465]},{"name":"DNWithBinary","features":[465]},{"name":"DNWithString","features":[465]},{"name":"DOMAINDESC","features":[305,465]},{"name":"DOMAIN_CONTROLLER_INFOA","features":[465]},{"name":"DOMAIN_CONTROLLER_INFOW","features":[465]},{"name":"DOMAIN_TREE","features":[305,465]},{"name":"DSA_NEWOBJ_CTX_CLEANUP","features":[465]},{"name":"DSA_NEWOBJ_CTX_COMMIT","features":[465]},{"name":"DSA_NEWOBJ_CTX_POSTCOMMIT","features":[465]},{"name":"DSA_NEWOBJ_CTX_PRECOMMIT","features":[465]},{"name":"DSA_NEWOBJ_DISPINFO","features":[465,367]},{"name":"DSA_NOTIFY_DEL","features":[465]},{"name":"DSA_NOTIFY_FLAG_ADDITIONAL_DATA","features":[465]},{"name":"DSA_NOTIFY_FLAG_FORCE_ADDITIONAL_DATA","features":[465]},{"name":"DSA_NOTIFY_MOV","features":[465]},{"name":"DSA_NOTIFY_PROP","features":[465]},{"name":"DSA_NOTIFY_REN","features":[465]},{"name":"DSBF_DISPLAYNAME","features":[465]},{"name":"DSBF_ICONLOCATION","features":[465]},{"name":"DSBF_STATE","features":[465]},{"name":"DSBID_BANNER","features":[465]},{"name":"DSBID_CONTAINERLIST","features":[465]},{"name":"DSBITEMA","features":[465]},{"name":"DSBITEMW","features":[465]},{"name":"DSBI_CHECKBOXES","features":[465]},{"name":"DSBI_DONTSIGNSEAL","features":[465]},{"name":"DSBI_ENTIREDIRECTORY","features":[465]},{"name":"DSBI_EXPANDONOPEN","features":[465]},{"name":"DSBI_HASCREDENTIALS","features":[465]},{"name":"DSBI_IGNORETREATASLEAF","features":[465]},{"name":"DSBI_INCLUDEHIDDEN","features":[465]},{"name":"DSBI_NOBUTTONS","features":[465]},{"name":"DSBI_NOLINES","features":[465]},{"name":"DSBI_NOLINESATROOT","features":[465]},{"name":"DSBI_NOROOT","features":[465]},{"name":"DSBI_RETURNOBJECTCLASS","features":[465]},{"name":"DSBI_RETURN_FORMAT","features":[465]},{"name":"DSBI_SIMPLEAUTHENTICATE","features":[465]},{"name":"DSBM_CHANGEIMAGESTATE","features":[465]},{"name":"DSBM_CONTEXTMENU","features":[465]},{"name":"DSBM_HELP","features":[465]},{"name":"DSBM_QUERYINSERT","features":[465]},{"name":"DSBM_QUERYINSERTA","features":[465]},{"name":"DSBM_QUERYINSERTW","features":[465]},{"name":"DSBROWSEINFOA","features":[305,465,466]},{"name":"DSBROWSEINFOW","features":[305,465,466]},{"name":"DSBS_CHECKED","features":[465]},{"name":"DSBS_HIDDEN","features":[465]},{"name":"DSBS_ROOT","features":[465]},{"name":"DSB_MAX_DISPLAYNAME_CHARS","features":[465]},{"name":"DSCCIF_HASWIZARDDIALOG","features":[465]},{"name":"DSCCIF_HASWIZARDPRIMARYPAGE","features":[465]},{"name":"DSCLASSCREATIONINFO","features":[465]},{"name":"DSCOLUMN","features":[465]},{"name":"DSDISPLAYSPECOPTIONS","features":[465]},{"name":"DSDSOF_DONTSIGNSEAL","features":[465]},{"name":"DSDSOF_DSAVAILABLE","features":[465]},{"name":"DSDSOF_HASUSERANDSERVERINFO","features":[465]},{"name":"DSDSOF_SIMPLEAUTHENTICATE","features":[465]},{"name":"DSECAF_NOTLISTED","features":[465]},{"name":"DSGIF_DEFAULTISCONTAINER","features":[465]},{"name":"DSGIF_GETDEFAULTICON","features":[465]},{"name":"DSGIF_ISDISABLED","features":[465]},{"name":"DSGIF_ISMASK","features":[465]},{"name":"DSGIF_ISNORMAL","features":[465]},{"name":"DSGIF_ISOPEN","features":[465]},{"name":"DSICCF_IGNORETREATASLEAF","features":[465]},{"name":"DSOBJECT","features":[465]},{"name":"DSOBJECTNAMES","features":[465]},{"name":"DSOBJECT_ISCONTAINER","features":[465]},{"name":"DSOBJECT_READONLYPAGES","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_APP_PACKAGES","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_ALL_WELLKNOWN_SIDS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_ANONYMOUS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_AUTHENTICATED_USER","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_BATCH","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_COMPUTERS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_GROUP","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_CREATOR_OWNER","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_DIALUP","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_EXCLUDE_BUILTIN_GROUPS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_GLOBAL_GROUPS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_IIS_APP_POOL","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERACTIVE","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_INTERNET_USER","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_ACCOUNTS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_GROUPS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_LOGON","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_LOCAL_SERVICE","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_NETWORK_SERVICE","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_OWNER_RIGHTS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_REMOTE_LOGON","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICE","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_SERVICES","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_SYSTEM","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_TERMINAL_SERVER","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_THIS_ORG_CERT","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_USERS","features":[465]},{"name":"DSOP_DOWNLEVEL_FILTER_WORLD","features":[465]},{"name":"DSOP_FILTER_BUILTIN_GROUPS","features":[465]},{"name":"DSOP_FILTER_COMPUTERS","features":[465]},{"name":"DSOP_FILTER_CONTACTS","features":[465]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_DL","features":[465]},{"name":"DSOP_FILTER_DOMAIN_LOCAL_GROUPS_SE","features":[465]},{"name":"DSOP_FILTER_FLAGS","features":[465]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_DL","features":[465]},{"name":"DSOP_FILTER_GLOBAL_GROUPS_SE","features":[465]},{"name":"DSOP_FILTER_INCLUDE_ADVANCED_VIEW","features":[465]},{"name":"DSOP_FILTER_PASSWORDSETTINGS_OBJECTS","features":[465]},{"name":"DSOP_FILTER_SERVICE_ACCOUNTS","features":[465]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_DL","features":[465]},{"name":"DSOP_FILTER_UNIVERSAL_GROUPS_SE","features":[465]},{"name":"DSOP_FILTER_USERS","features":[465]},{"name":"DSOP_FILTER_WELL_KNOWN_PRINCIPALS","features":[465]},{"name":"DSOP_FLAG_MULTISELECT","features":[465]},{"name":"DSOP_FLAG_SKIP_TARGET_COMPUTER_DC_CHECK","features":[465]},{"name":"DSOP_INIT_INFO","features":[465]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_COMPUTERS","features":[465]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_CONTACTS","features":[465]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_GROUPS","features":[465]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_PASSWORDSETTINGS_OBJECTS","features":[465]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_SERVICE_ACCOUNTS","features":[465]},{"name":"DSOP_SCOPE_FLAG_DEFAULT_FILTER_USERS","features":[465]},{"name":"DSOP_SCOPE_FLAG_STARTING_SCOPE","features":[465]},{"name":"DSOP_SCOPE_FLAG_WANT_DOWNLEVEL_BUILTIN_PATH","features":[465]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_GC","features":[465]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_LDAP","features":[465]},{"name":"DSOP_SCOPE_FLAG_WANT_PROVIDER_WINNT","features":[465]},{"name":"DSOP_SCOPE_FLAG_WANT_SID_PATH","features":[465]},{"name":"DSOP_SCOPE_INIT_INFO","features":[465]},{"name":"DSOP_SCOPE_TYPE_DOWNLEVEL_JOINED_DOMAIN","features":[465]},{"name":"DSOP_SCOPE_TYPE_ENTERPRISE_DOMAIN","features":[465]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_DOWNLEVEL_DOMAIN","features":[465]},{"name":"DSOP_SCOPE_TYPE_EXTERNAL_UPLEVEL_DOMAIN","features":[465]},{"name":"DSOP_SCOPE_TYPE_GLOBAL_CATALOG","features":[465]},{"name":"DSOP_SCOPE_TYPE_TARGET_COMPUTER","features":[465]},{"name":"DSOP_SCOPE_TYPE_UPLEVEL_JOINED_DOMAIN","features":[465]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_DOWNLEVEL_SCOPE","features":[465]},{"name":"DSOP_SCOPE_TYPE_USER_ENTERED_UPLEVEL_SCOPE","features":[465]},{"name":"DSOP_SCOPE_TYPE_WORKGROUP","features":[465]},{"name":"DSOP_UPLEVEL_FILTER_FLAGS","features":[465]},{"name":"DSPROPERTYPAGEINFO","features":[465]},{"name":"DSPROP_ATTRCHANGED_MSG","features":[465]},{"name":"DSPROVIDER_ADVANCED","features":[465]},{"name":"DSPROVIDER_AD_LDS","features":[465]},{"name":"DSPROVIDER_UNUSED_0","features":[465]},{"name":"DSPROVIDER_UNUSED_1","features":[465]},{"name":"DSPROVIDER_UNUSED_2","features":[465]},{"name":"DSPROVIDER_UNUSED_3","features":[465]},{"name":"DSQPF_ENABLEADMINFEATURES","features":[465]},{"name":"DSQPF_ENABLEADVANCEDFEATURES","features":[465]},{"name":"DSQPF_HASCREDENTIALS","features":[465]},{"name":"DSQPF_NOCHOOSECOLUMNS","features":[465]},{"name":"DSQPF_NOSAVE","features":[465]},{"name":"DSQPF_SAVELOCATION","features":[465]},{"name":"DSQPF_SHOWHIDDENOBJECTS","features":[465]},{"name":"DSQPM_GETCLASSLIST","features":[465]},{"name":"DSQPM_HELPTOPICS","features":[465]},{"name":"DSQUERYCLASSLIST","features":[465]},{"name":"DSQUERYINITPARAMS","features":[465]},{"name":"DSQUERYPARAMS","features":[305,465]},{"name":"DSROLE_MACHINE_ROLE","features":[465]},{"name":"DSROLE_OPERATION_STATE","features":[465]},{"name":"DSROLE_OPERATION_STATE_INFO","features":[465]},{"name":"DSROLE_PRIMARY_DOMAIN_GUID_PRESENT","features":[465]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_BASIC","features":[465]},{"name":"DSROLE_PRIMARY_DOMAIN_INFO_LEVEL","features":[465]},{"name":"DSROLE_PRIMARY_DS_MIXED_MODE","features":[465]},{"name":"DSROLE_PRIMARY_DS_READONLY","features":[465]},{"name":"DSROLE_PRIMARY_DS_RUNNING","features":[465]},{"name":"DSROLE_SERVER_STATE","features":[465]},{"name":"DSROLE_UPGRADE_IN_PROGRESS","features":[465]},{"name":"DSROLE_UPGRADE_STATUS_INFO","features":[465]},{"name":"DSSSF_DONTSIGNSEAL","features":[465]},{"name":"DSSSF_DSAVAILABLE","features":[465]},{"name":"DSSSF_SIMPLEAUTHENTICATE","features":[465]},{"name":"DS_AVOID_SELF","features":[465]},{"name":"DS_BACKGROUND_ONLY","features":[465]},{"name":"DS_BEHAVIOR_LONGHORN","features":[465]},{"name":"DS_BEHAVIOR_WIN2000","features":[465]},{"name":"DS_BEHAVIOR_WIN2003","features":[465]},{"name":"DS_BEHAVIOR_WIN2003_WITH_MIXED_DOMAINS","features":[465]},{"name":"DS_BEHAVIOR_WIN2008","features":[465]},{"name":"DS_BEHAVIOR_WIN2008R2","features":[465]},{"name":"DS_BEHAVIOR_WIN2012","features":[465]},{"name":"DS_BEHAVIOR_WIN2012R2","features":[465]},{"name":"DS_BEHAVIOR_WIN2016","features":[465]},{"name":"DS_BEHAVIOR_WIN7","features":[465]},{"name":"DS_BEHAVIOR_WIN8","features":[465]},{"name":"DS_BEHAVIOR_WINBLUE","features":[465]},{"name":"DS_BEHAVIOR_WINTHRESHOLD","features":[465]},{"name":"DS_CANONICAL_NAME","features":[465]},{"name":"DS_CANONICAL_NAME_EX","features":[465]},{"name":"DS_CLOSEST_FLAG","features":[465]},{"name":"DS_DIRECTORY_SERVICE_10_REQUIRED","features":[465]},{"name":"DS_DIRECTORY_SERVICE_6_REQUIRED","features":[465]},{"name":"DS_DIRECTORY_SERVICE_8_REQUIRED","features":[465]},{"name":"DS_DIRECTORY_SERVICE_9_REQUIRED","features":[465]},{"name":"DS_DIRECTORY_SERVICE_PREFERRED","features":[465]},{"name":"DS_DIRECTORY_SERVICE_REQUIRED","features":[465]},{"name":"DS_DISPLAY_NAME","features":[465]},{"name":"DS_DNS_CONTROLLER_FLAG","features":[465]},{"name":"DS_DNS_DOMAIN_FLAG","features":[465]},{"name":"DS_DNS_DOMAIN_NAME","features":[465]},{"name":"DS_DNS_FOREST_FLAG","features":[465]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1A","features":[305,465]},{"name":"DS_DOMAIN_CONTROLLER_INFO_1W","features":[305,465]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2A","features":[305,465]},{"name":"DS_DOMAIN_CONTROLLER_INFO_2W","features":[305,465]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3A","features":[305,465]},{"name":"DS_DOMAIN_CONTROLLER_INFO_3W","features":[305,465]},{"name":"DS_DOMAIN_DIRECT_INBOUND","features":[465]},{"name":"DS_DOMAIN_DIRECT_OUTBOUND","features":[465]},{"name":"DS_DOMAIN_IN_FOREST","features":[465]},{"name":"DS_DOMAIN_NATIVE_MODE","features":[465]},{"name":"DS_DOMAIN_PRIMARY","features":[465]},{"name":"DS_DOMAIN_TREE_ROOT","features":[465]},{"name":"DS_DOMAIN_TRUSTSA","features":[465,308]},{"name":"DS_DOMAIN_TRUSTSW","features":[465,308]},{"name":"DS_DS_10_FLAG","features":[465]},{"name":"DS_DS_8_FLAG","features":[465]},{"name":"DS_DS_9_FLAG","features":[465]},{"name":"DS_DS_FLAG","features":[465]},{"name":"DS_EXIST_ADVISORY_MODE","features":[465]},{"name":"DS_FORCE_REDISCOVERY","features":[465]},{"name":"DS_FQDN_1779_NAME","features":[465]},{"name":"DS_FULL_SECRET_DOMAIN_6_FLAG","features":[465]},{"name":"DS_GC_FLAG","features":[465]},{"name":"DS_GC_SERVER_REQUIRED","features":[465]},{"name":"DS_GFTI_UPDATE_TDO","features":[465]},{"name":"DS_GFTI_VALID_FLAGS","features":[465]},{"name":"DS_GOOD_TIMESERV_FLAG","features":[465]},{"name":"DS_GOOD_TIMESERV_PREFERRED","features":[465]},{"name":"DS_INSTANCETYPE_IS_NC_HEAD","features":[465]},{"name":"DS_INSTANCETYPE_NC_COMING","features":[465]},{"name":"DS_INSTANCETYPE_NC_GOING","features":[465]},{"name":"DS_INSTANCETYPE_NC_IS_WRITEABLE","features":[465]},{"name":"DS_IP_REQUIRED","features":[465]},{"name":"DS_IS_DNS_NAME","features":[465]},{"name":"DS_IS_FLAT_NAME","features":[465]},{"name":"DS_KCC_FLAG_ASYNC_OP","features":[465]},{"name":"DS_KCC_FLAG_DAMPED","features":[465]},{"name":"DS_KCC_TASKID","features":[465]},{"name":"DS_KCC_TASKID_UPDATE_TOPOLOGY","features":[465]},{"name":"DS_KDC_FLAG","features":[465]},{"name":"DS_KDC_REQUIRED","features":[465]},{"name":"DS_KEY_LIST_FLAG","features":[465]},{"name":"DS_KEY_LIST_SUPPORT_REQUIRED","features":[465]},{"name":"DS_LDAP_FLAG","features":[465]},{"name":"DS_LIST_ACCOUNT_OBJECT_FOR_SERVER","features":[465]},{"name":"DS_LIST_DNS_HOST_NAME_FOR_SERVER","features":[465]},{"name":"DS_LIST_DSA_OBJECT_FOR_SERVER","features":[465]},{"name":"DS_MANGLE_FOR","features":[465]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_DELETION","features":[465]},{"name":"DS_MANGLE_OBJECT_RDN_FOR_NAME_CONFLICT","features":[465]},{"name":"DS_MANGLE_UNKNOWN","features":[465]},{"name":"DS_NAME_ERROR","features":[465]},{"name":"DS_NAME_ERROR_DOMAIN_ONLY","features":[465]},{"name":"DS_NAME_ERROR_NOT_FOUND","features":[465]},{"name":"DS_NAME_ERROR_NOT_UNIQUE","features":[465]},{"name":"DS_NAME_ERROR_NO_MAPPING","features":[465]},{"name":"DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING","features":[465]},{"name":"DS_NAME_ERROR_RESOLVING","features":[465]},{"name":"DS_NAME_ERROR_TRUST_REFERRAL","features":[465]},{"name":"DS_NAME_FLAGS","features":[465]},{"name":"DS_NAME_FLAG_EVAL_AT_DC","features":[465]},{"name":"DS_NAME_FLAG_GCVERIFY","features":[465]},{"name":"DS_NAME_FLAG_SYNTACTICAL_ONLY","features":[465]},{"name":"DS_NAME_FLAG_TRUST_REFERRAL","features":[465]},{"name":"DS_NAME_FORMAT","features":[465]},{"name":"DS_NAME_NO_ERROR","features":[465]},{"name":"DS_NAME_NO_FLAGS","features":[465]},{"name":"DS_NAME_RESULTA","features":[465]},{"name":"DS_NAME_RESULTW","features":[465]},{"name":"DS_NAME_RESULT_ITEMA","features":[465]},{"name":"DS_NAME_RESULT_ITEMW","features":[465]},{"name":"DS_NDNC_FLAG","features":[465]},{"name":"DS_NOTIFY_AFTER_SITE_RECORDS","features":[465]},{"name":"DS_NT4_ACCOUNT_NAME","features":[465]},{"name":"DS_ONLY_DO_SITE_NAME","features":[465]},{"name":"DS_ONLY_LDAP_NEEDED","features":[465]},{"name":"DS_PDC_FLAG","features":[465]},{"name":"DS_PDC_REQUIRED","features":[465]},{"name":"DS_PING_FLAGS","features":[465]},{"name":"DS_PROP_ADMIN_PREFIX","features":[465]},{"name":"DS_PROP_SHELL_PREFIX","features":[465]},{"name":"DS_REPADD_ASYNCHRONOUS_OPERATION","features":[465]},{"name":"DS_REPADD_ASYNCHRONOUS_REPLICA","features":[465]},{"name":"DS_REPADD_CRITICAL","features":[465]},{"name":"DS_REPADD_DISABLE_NOTIFICATION","features":[465]},{"name":"DS_REPADD_DISABLE_PERIODIC","features":[465]},{"name":"DS_REPADD_INITIAL","features":[465]},{"name":"DS_REPADD_INTERSITE_MESSAGING","features":[465]},{"name":"DS_REPADD_NEVER_NOTIFY","features":[465]},{"name":"DS_REPADD_NONGC_RO_REPLICA","features":[465]},{"name":"DS_REPADD_PERIODIC","features":[465]},{"name":"DS_REPADD_SELECT_SECRETS","features":[465]},{"name":"DS_REPADD_TWO_WAY","features":[465]},{"name":"DS_REPADD_USE_COMPRESSION","features":[465]},{"name":"DS_REPADD_WRITEABLE","features":[465]},{"name":"DS_REPDEL_ASYNCHRONOUS_OPERATION","features":[465]},{"name":"DS_REPDEL_IGNORE_ERRORS","features":[465]},{"name":"DS_REPDEL_INTERSITE_MESSAGING","features":[465]},{"name":"DS_REPDEL_LOCAL_ONLY","features":[465]},{"name":"DS_REPDEL_NO_SOURCE","features":[465]},{"name":"DS_REPDEL_REF_OK","features":[465]},{"name":"DS_REPDEL_WRITEABLE","features":[465]},{"name":"DS_REPL_ATTR_META_DATA","features":[305,465]},{"name":"DS_REPL_ATTR_META_DATA_2","features":[305,465]},{"name":"DS_REPL_ATTR_META_DATA_BLOB","features":[305,465]},{"name":"DS_REPL_ATTR_VALUE_META_DATA","features":[305,465]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_2","features":[305,465]},{"name":"DS_REPL_ATTR_VALUE_META_DATA_EXT","features":[305,465]},{"name":"DS_REPL_CURSOR","features":[465]},{"name":"DS_REPL_CURSORS","features":[465]},{"name":"DS_REPL_CURSORS_2","features":[305,465]},{"name":"DS_REPL_CURSORS_3W","features":[305,465]},{"name":"DS_REPL_CURSOR_2","features":[305,465]},{"name":"DS_REPL_CURSOR_3W","features":[305,465]},{"name":"DS_REPL_CURSOR_BLOB","features":[305,465]},{"name":"DS_REPL_INFO_CURSORS_2_FOR_NC","features":[465]},{"name":"DS_REPL_INFO_CURSORS_3_FOR_NC","features":[465]},{"name":"DS_REPL_INFO_CURSORS_FOR_NC","features":[465]},{"name":"DS_REPL_INFO_FLAG_IMPROVE_LINKED_ATTRS","features":[465]},{"name":"DS_REPL_INFO_KCC_DSA_CONNECT_FAILURES","features":[465]},{"name":"DS_REPL_INFO_KCC_DSA_LINK_FAILURES","features":[465]},{"name":"DS_REPL_INFO_METADATA_2_FOR_ATTR_VALUE","features":[465]},{"name":"DS_REPL_INFO_METADATA_2_FOR_OBJ","features":[465]},{"name":"DS_REPL_INFO_METADATA_EXT_FOR_ATTR_VALUE","features":[465]},{"name":"DS_REPL_INFO_METADATA_FOR_ATTR_VALUE","features":[465]},{"name":"DS_REPL_INFO_METADATA_FOR_OBJ","features":[465]},{"name":"DS_REPL_INFO_NEIGHBORS","features":[465]},{"name":"DS_REPL_INFO_PENDING_OPS","features":[465]},{"name":"DS_REPL_INFO_TYPE","features":[465]},{"name":"DS_REPL_INFO_TYPE_MAX","features":[465]},{"name":"DS_REPL_KCC_DSA_FAILURESW","features":[305,465]},{"name":"DS_REPL_KCC_DSA_FAILUREW","features":[305,465]},{"name":"DS_REPL_KCC_DSA_FAILUREW_BLOB","features":[305,465]},{"name":"DS_REPL_NBR_COMPRESS_CHANGES","features":[465]},{"name":"DS_REPL_NBR_DISABLE_SCHEDULED_SYNC","features":[465]},{"name":"DS_REPL_NBR_DO_SCHEDULED_SYNCS","features":[465]},{"name":"DS_REPL_NBR_FULL_SYNC_IN_PROGRESS","features":[465]},{"name":"DS_REPL_NBR_FULL_SYNC_NEXT_PACKET","features":[465]},{"name":"DS_REPL_NBR_GCSPN","features":[465]},{"name":"DS_REPL_NBR_IGNORE_CHANGE_NOTIFICATIONS","features":[465]},{"name":"DS_REPL_NBR_NEVER_SYNCED","features":[465]},{"name":"DS_REPL_NBR_NONGC_RO_REPLICA","features":[465]},{"name":"DS_REPL_NBR_NO_CHANGE_NOTIFICATIONS","features":[465]},{"name":"DS_REPL_NBR_PARTIAL_ATTRIBUTE_SET","features":[465]},{"name":"DS_REPL_NBR_PREEMPTED","features":[465]},{"name":"DS_REPL_NBR_RETURN_OBJECT_PARENTS","features":[465]},{"name":"DS_REPL_NBR_SELECT_SECRETS","features":[465]},{"name":"DS_REPL_NBR_SYNC_ON_STARTUP","features":[465]},{"name":"DS_REPL_NBR_TWO_WAY_SYNC","features":[465]},{"name":"DS_REPL_NBR_USE_ASYNC_INTERSITE_TRANSPORT","features":[465]},{"name":"DS_REPL_NBR_WRITEABLE","features":[465]},{"name":"DS_REPL_NEIGHBORSW","features":[305,465]},{"name":"DS_REPL_NEIGHBORW","features":[305,465]},{"name":"DS_REPL_NEIGHBORW_BLOB","features":[305,465]},{"name":"DS_REPL_OBJ_META_DATA","features":[305,465]},{"name":"DS_REPL_OBJ_META_DATA_2","features":[305,465]},{"name":"DS_REPL_OPW","features":[305,465]},{"name":"DS_REPL_OPW_BLOB","features":[305,465]},{"name":"DS_REPL_OP_TYPE","features":[465]},{"name":"DS_REPL_OP_TYPE_ADD","features":[465]},{"name":"DS_REPL_OP_TYPE_DELETE","features":[465]},{"name":"DS_REPL_OP_TYPE_MODIFY","features":[465]},{"name":"DS_REPL_OP_TYPE_SYNC","features":[465]},{"name":"DS_REPL_OP_TYPE_UPDATE_REFS","features":[465]},{"name":"DS_REPL_PENDING_OPSW","features":[305,465]},{"name":"DS_REPL_QUEUE_STATISTICSW","features":[305,465]},{"name":"DS_REPL_VALUE_META_DATA","features":[305,465]},{"name":"DS_REPL_VALUE_META_DATA_2","features":[305,465]},{"name":"DS_REPL_VALUE_META_DATA_BLOB","features":[305,465]},{"name":"DS_REPL_VALUE_META_DATA_BLOB_EXT","features":[305,465]},{"name":"DS_REPL_VALUE_META_DATA_EXT","features":[305,465]},{"name":"DS_REPMOD_ASYNCHRONOUS_OPERATION","features":[465]},{"name":"DS_REPMOD_UPDATE_ADDRESS","features":[465]},{"name":"DS_REPMOD_UPDATE_FLAGS","features":[465]},{"name":"DS_REPMOD_UPDATE_INSTANCE","features":[465]},{"name":"DS_REPMOD_UPDATE_RESULT","features":[465]},{"name":"DS_REPMOD_UPDATE_SCHEDULE","features":[465]},{"name":"DS_REPMOD_UPDATE_TRANSPORT","features":[465]},{"name":"DS_REPMOD_WRITEABLE","features":[465]},{"name":"DS_REPSYNCALL_ABORT_IF_SERVER_UNAVAILABLE","features":[465]},{"name":"DS_REPSYNCALL_CROSS_SITE_BOUNDARIES","features":[465]},{"name":"DS_REPSYNCALL_DO_NOT_SYNC","features":[465]},{"name":"DS_REPSYNCALL_ERRINFOA","features":[465]},{"name":"DS_REPSYNCALL_ERRINFOW","features":[465]},{"name":"DS_REPSYNCALL_ERROR","features":[465]},{"name":"DS_REPSYNCALL_EVENT","features":[465]},{"name":"DS_REPSYNCALL_EVENT_ERROR","features":[465]},{"name":"DS_REPSYNCALL_EVENT_FINISHED","features":[465]},{"name":"DS_REPSYNCALL_EVENT_SYNC_COMPLETED","features":[465]},{"name":"DS_REPSYNCALL_EVENT_SYNC_STARTED","features":[465]},{"name":"DS_REPSYNCALL_ID_SERVERS_BY_DN","features":[465]},{"name":"DS_REPSYNCALL_NO_OPTIONS","features":[465]},{"name":"DS_REPSYNCALL_PUSH_CHANGES_OUTWARD","features":[465]},{"name":"DS_REPSYNCALL_SERVER_UNREACHABLE","features":[465]},{"name":"DS_REPSYNCALL_SKIP_INITIAL_CHECK","features":[465]},{"name":"DS_REPSYNCALL_SYNCA","features":[465]},{"name":"DS_REPSYNCALL_SYNCW","features":[465]},{"name":"DS_REPSYNCALL_SYNC_ADJACENT_SERVERS_ONLY","features":[465]},{"name":"DS_REPSYNCALL_UPDATEA","features":[465]},{"name":"DS_REPSYNCALL_UPDATEW","features":[465]},{"name":"DS_REPSYNCALL_WIN32_ERROR_CONTACTING_SERVER","features":[465]},{"name":"DS_REPSYNCALL_WIN32_ERROR_REPLICATING","features":[465]},{"name":"DS_REPSYNC_ABANDONED","features":[465]},{"name":"DS_REPSYNC_ADD_REFERENCE","features":[465]},{"name":"DS_REPSYNC_ASYNCHRONOUS_OPERATION","features":[465]},{"name":"DS_REPSYNC_ASYNCHRONOUS_REPLICA","features":[465]},{"name":"DS_REPSYNC_CRITICAL","features":[465]},{"name":"DS_REPSYNC_FORCE","features":[465]},{"name":"DS_REPSYNC_FULL","features":[465]},{"name":"DS_REPSYNC_FULL_IN_PROGRESS","features":[465]},{"name":"DS_REPSYNC_INITIAL","features":[465]},{"name":"DS_REPSYNC_INITIAL_IN_PROGRESS","features":[465]},{"name":"DS_REPSYNC_INTERSITE_MESSAGING","features":[465]},{"name":"DS_REPSYNC_NEVER_COMPLETED","features":[465]},{"name":"DS_REPSYNC_NEVER_NOTIFY","features":[465]},{"name":"DS_REPSYNC_NONGC_RO_REPLICA","features":[465]},{"name":"DS_REPSYNC_NOTIFICATION","features":[465]},{"name":"DS_REPSYNC_NO_DISCARD","features":[465]},{"name":"DS_REPSYNC_PARTIAL_ATTRIBUTE_SET","features":[465]},{"name":"DS_REPSYNC_PERIODIC","features":[465]},{"name":"DS_REPSYNC_PREEMPTED","features":[465]},{"name":"DS_REPSYNC_REQUEUE","features":[465]},{"name":"DS_REPSYNC_SELECT_SECRETS","features":[465]},{"name":"DS_REPSYNC_TWO_WAY","features":[465]},{"name":"DS_REPSYNC_URGENT","features":[465]},{"name":"DS_REPSYNC_USE_COMPRESSION","features":[465]},{"name":"DS_REPSYNC_WRITEABLE","features":[465]},{"name":"DS_REPUPD_ADD_REFERENCE","features":[465]},{"name":"DS_REPUPD_ASYNCHRONOUS_OPERATION","features":[465]},{"name":"DS_REPUPD_DELETE_REFERENCE","features":[465]},{"name":"DS_REPUPD_REFERENCE_GCSPN","features":[465]},{"name":"DS_REPUPD_WRITEABLE","features":[465]},{"name":"DS_RETURN_DNS_NAME","features":[465]},{"name":"DS_RETURN_FLAT_NAME","features":[465]},{"name":"DS_ROLE_DOMAIN_OWNER","features":[465]},{"name":"DS_ROLE_INFRASTRUCTURE_OWNER","features":[465]},{"name":"DS_ROLE_PDC_OWNER","features":[465]},{"name":"DS_ROLE_RID_OWNER","features":[465]},{"name":"DS_ROLE_SCHEMA_OWNER","features":[465]},{"name":"DS_SCHEMA_GUID_ATTR","features":[465]},{"name":"DS_SCHEMA_GUID_ATTR_SET","features":[465]},{"name":"DS_SCHEMA_GUID_CLASS","features":[465]},{"name":"DS_SCHEMA_GUID_CONTROL_RIGHT","features":[465]},{"name":"DS_SCHEMA_GUID_MAPA","features":[465]},{"name":"DS_SCHEMA_GUID_MAPW","features":[465]},{"name":"DS_SCHEMA_GUID_NOT_FOUND","features":[465]},{"name":"DS_SELECTION","features":[465]},{"name":"DS_SELECTION_LIST","features":[465]},{"name":"DS_SELECT_SECRET_DOMAIN_6_FLAG","features":[465]},{"name":"DS_SERVICE_PRINCIPAL_NAME","features":[465]},{"name":"DS_SID_OR_SID_HISTORY_NAME","features":[465]},{"name":"DS_SITE_COST_INFO","features":[465]},{"name":"DS_SPN_ADD_SPN_OP","features":[465]},{"name":"DS_SPN_DELETE_SPN_OP","features":[465]},{"name":"DS_SPN_DNS_HOST","features":[465]},{"name":"DS_SPN_DN_HOST","features":[465]},{"name":"DS_SPN_DOMAIN","features":[465]},{"name":"DS_SPN_NAME_TYPE","features":[465]},{"name":"DS_SPN_NB_DOMAIN","features":[465]},{"name":"DS_SPN_NB_HOST","features":[465]},{"name":"DS_SPN_REPLACE_SPN_OP","features":[465]},{"name":"DS_SPN_SERVICE","features":[465]},{"name":"DS_SPN_WRITE_OP","features":[465]},{"name":"DS_SYNCED_EVENT_NAME","features":[465]},{"name":"DS_SYNCED_EVENT_NAME_W","features":[465]},{"name":"DS_TIMESERV_FLAG","features":[465]},{"name":"DS_TIMESERV_REQUIRED","features":[465]},{"name":"DS_TRY_NEXTCLOSEST_SITE","features":[465]},{"name":"DS_UNIQUE_ID_NAME","features":[465]},{"name":"DS_UNKNOWN_NAME","features":[465]},{"name":"DS_USER_PRINCIPAL_NAME","features":[465]},{"name":"DS_WEB_SERVICE_REQUIRED","features":[465]},{"name":"DS_WRITABLE_FLAG","features":[465]},{"name":"DS_WRITABLE_REQUIRED","features":[465]},{"name":"DS_WS_FLAG","features":[465]},{"name":"DsAddSidHistoryA","features":[305,465]},{"name":"DsAddSidHistoryW","features":[305,465]},{"name":"DsAddressToSiteNamesA","features":[465,318]},{"name":"DsAddressToSiteNamesExA","features":[465,318]},{"name":"DsAddressToSiteNamesExW","features":[465,318]},{"name":"DsAddressToSiteNamesW","features":[465,318]},{"name":"DsBindA","features":[305,465]},{"name":"DsBindByInstanceA","features":[305,465]},{"name":"DsBindByInstanceW","features":[305,465]},{"name":"DsBindToISTGA","features":[305,465]},{"name":"DsBindToISTGW","features":[305,465]},{"name":"DsBindW","features":[305,465]},{"name":"DsBindWithCredA","features":[305,465]},{"name":"DsBindWithCredW","features":[305,465]},{"name":"DsBindWithSpnA","features":[305,465]},{"name":"DsBindWithSpnExA","features":[305,465]},{"name":"DsBindWithSpnExW","features":[305,465]},{"name":"DsBindWithSpnW","features":[305,465]},{"name":"DsBindingSetTimeout","features":[305,465]},{"name":"DsBrowseForContainerA","features":[305,465,466]},{"name":"DsBrowseForContainerW","features":[305,465,466]},{"name":"DsClientMakeSpnForTargetServerA","features":[465]},{"name":"DsClientMakeSpnForTargetServerW","features":[465]},{"name":"DsCrackNamesA","features":[305,465]},{"name":"DsCrackNamesW","features":[305,465]},{"name":"DsCrackSpn2A","features":[465]},{"name":"DsCrackSpn2W","features":[465]},{"name":"DsCrackSpn3W","features":[465]},{"name":"DsCrackSpn4W","features":[465]},{"name":"DsCrackSpnA","features":[465]},{"name":"DsCrackSpnW","features":[465]},{"name":"DsCrackUnquotedMangledRdnA","features":[305,465]},{"name":"DsCrackUnquotedMangledRdnW","features":[305,465]},{"name":"DsDeregisterDnsHostRecordsA","features":[465]},{"name":"DsDeregisterDnsHostRecordsW","features":[465]},{"name":"DsEnumerateDomainTrustsA","features":[465,308]},{"name":"DsEnumerateDomainTrustsW","features":[465,308]},{"name":"DsFreeDomainControllerInfoA","features":[465]},{"name":"DsFreeDomainControllerInfoW","features":[465]},{"name":"DsFreeNameResultA","features":[465]},{"name":"DsFreeNameResultW","features":[465]},{"name":"DsFreePasswordCredentials","features":[465]},{"name":"DsFreeSchemaGuidMapA","features":[465]},{"name":"DsFreeSchemaGuidMapW","features":[465]},{"name":"DsFreeSpnArrayA","features":[465]},{"name":"DsFreeSpnArrayW","features":[465]},{"name":"DsGetDcCloseW","features":[305,465]},{"name":"DsGetDcNameA","features":[465]},{"name":"DsGetDcNameW","features":[465]},{"name":"DsGetDcNextA","features":[305,465,318]},{"name":"DsGetDcNextW","features":[305,465,318]},{"name":"DsGetDcOpenA","features":[305,465]},{"name":"DsGetDcOpenW","features":[305,465]},{"name":"DsGetDcSiteCoverageA","features":[465]},{"name":"DsGetDcSiteCoverageW","features":[465]},{"name":"DsGetDomainControllerInfoA","features":[305,465]},{"name":"DsGetDomainControllerInfoW","features":[305,465]},{"name":"DsGetForestTrustInformationW","features":[465,326]},{"name":"DsGetFriendlyClassName","features":[465]},{"name":"DsGetIcon","features":[465,367]},{"name":"DsGetRdnW","features":[465]},{"name":"DsGetSiteNameA","features":[465]},{"name":"DsGetSiteNameW","features":[465]},{"name":"DsGetSpnA","features":[465]},{"name":"DsGetSpnW","features":[465]},{"name":"DsInheritSecurityIdentityA","features":[305,465]},{"name":"DsInheritSecurityIdentityW","features":[305,465]},{"name":"DsIsMangledDnA","features":[305,465]},{"name":"DsIsMangledDnW","features":[305,465]},{"name":"DsIsMangledRdnValueA","features":[305,465]},{"name":"DsIsMangledRdnValueW","features":[305,465]},{"name":"DsListDomainsInSiteA","features":[305,465]},{"name":"DsListDomainsInSiteW","features":[305,465]},{"name":"DsListInfoForServerA","features":[305,465]},{"name":"DsListInfoForServerW","features":[305,465]},{"name":"DsListRolesA","features":[305,465]},{"name":"DsListRolesW","features":[305,465]},{"name":"DsListServersForDomainInSiteA","features":[305,465]},{"name":"DsListServersForDomainInSiteW","features":[305,465]},{"name":"DsListServersInSiteA","features":[305,465]},{"name":"DsListServersInSiteW","features":[305,465]},{"name":"DsListSitesA","features":[305,465]},{"name":"DsListSitesW","features":[305,465]},{"name":"DsMakePasswordCredentialsA","features":[465]},{"name":"DsMakePasswordCredentialsW","features":[465]},{"name":"DsMakeSpnA","features":[465]},{"name":"DsMakeSpnW","features":[465]},{"name":"DsMapSchemaGuidsA","features":[305,465]},{"name":"DsMapSchemaGuidsW","features":[305,465]},{"name":"DsMergeForestTrustInformationW","features":[465,326]},{"name":"DsQuerySitesByCostA","features":[305,465]},{"name":"DsQuerySitesByCostW","features":[305,465]},{"name":"DsQuerySitesFree","features":[465]},{"name":"DsQuoteRdnValueA","features":[465]},{"name":"DsQuoteRdnValueW","features":[465]},{"name":"DsRemoveDsDomainA","features":[305,465]},{"name":"DsRemoveDsDomainW","features":[305,465]},{"name":"DsRemoveDsServerA","features":[305,465]},{"name":"DsRemoveDsServerW","features":[305,465]},{"name":"DsReplicaAddA","features":[305,465]},{"name":"DsReplicaAddW","features":[305,465]},{"name":"DsReplicaConsistencyCheck","features":[305,465]},{"name":"DsReplicaDelA","features":[305,465]},{"name":"DsReplicaDelW","features":[305,465]},{"name":"DsReplicaFreeInfo","features":[465]},{"name":"DsReplicaGetInfo2W","features":[305,465]},{"name":"DsReplicaGetInfoW","features":[305,465]},{"name":"DsReplicaModifyA","features":[305,465]},{"name":"DsReplicaModifyW","features":[305,465]},{"name":"DsReplicaSyncA","features":[305,465]},{"name":"DsReplicaSyncAllA","features":[305,465]},{"name":"DsReplicaSyncAllW","features":[305,465]},{"name":"DsReplicaSyncW","features":[305,465]},{"name":"DsReplicaUpdateRefsA","features":[305,465]},{"name":"DsReplicaUpdateRefsW","features":[305,465]},{"name":"DsReplicaVerifyObjectsA","features":[305,465]},{"name":"DsReplicaVerifyObjectsW","features":[305,465]},{"name":"DsRoleFreeMemory","features":[465]},{"name":"DsRoleGetPrimaryDomainInformation","features":[465]},{"name":"DsRoleOperationActive","features":[465]},{"name":"DsRoleOperationIdle","features":[465]},{"name":"DsRoleOperationNeedReboot","features":[465]},{"name":"DsRoleOperationState","features":[465]},{"name":"DsRolePrimaryDomainInfoBasic","features":[465]},{"name":"DsRoleServerBackup","features":[465]},{"name":"DsRoleServerPrimary","features":[465]},{"name":"DsRoleServerUnknown","features":[465]},{"name":"DsRoleUpgradeStatus","features":[465]},{"name":"DsRole_RoleBackupDomainController","features":[465]},{"name":"DsRole_RoleMemberServer","features":[465]},{"name":"DsRole_RoleMemberWorkstation","features":[465]},{"name":"DsRole_RolePrimaryDomainController","features":[465]},{"name":"DsRole_RoleStandaloneServer","features":[465]},{"name":"DsRole_RoleStandaloneWorkstation","features":[465]},{"name":"DsServerRegisterSpnA","features":[465]},{"name":"DsServerRegisterSpnW","features":[465]},{"name":"DsUnBindA","features":[305,465]},{"name":"DsUnBindW","features":[305,465]},{"name":"DsUnquoteRdnValueA","features":[465]},{"name":"DsUnquoteRdnValueW","features":[465]},{"name":"DsValidateSubnetNameA","features":[465]},{"name":"DsValidateSubnetNameW","features":[465]},{"name":"DsWriteAccountSpnA","features":[305,465]},{"name":"DsWriteAccountSpnW","features":[305,465]},{"name":"Email","features":[465]},{"name":"FACILITY_BACKUP","features":[465]},{"name":"FACILITY_NTDSB","features":[465]},{"name":"FACILITY_SYSTEM","features":[465]},{"name":"FLAG_DISABLABLE_OPTIONAL_FEATURE","features":[465]},{"name":"FLAG_DOMAIN_OPTIONAL_FEATURE","features":[465]},{"name":"FLAG_FOREST_OPTIONAL_FEATURE","features":[465]},{"name":"FLAG_SERVER_OPTIONAL_FEATURE","features":[465]},{"name":"FRSCONN_MAX_PRIORITY","features":[465]},{"name":"FRSCONN_PRIORITY_MASK","features":[465]},{"name":"FaxNumber","features":[465]},{"name":"FreeADsMem","features":[305,465]},{"name":"FreeADsStr","features":[305,465]},{"name":"GUID_COMPUTRS_CONTAINER_A","features":[465]},{"name":"GUID_COMPUTRS_CONTAINER_W","features":[465]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_A","features":[465]},{"name":"GUID_DELETED_OBJECTS_CONTAINER_W","features":[465]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_A","features":[465]},{"name":"GUID_DOMAIN_CONTROLLERS_CONTAINER_W","features":[465]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_A","features":[465]},{"name":"GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_W","features":[465]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_A","features":[465]},{"name":"GUID_INFRASTRUCTURE_CONTAINER_W","features":[465]},{"name":"GUID_KEYS_CONTAINER_W","features":[465]},{"name":"GUID_LOSTANDFOUND_CONTAINER_A","features":[465]},{"name":"GUID_LOSTANDFOUND_CONTAINER_W","features":[465]},{"name":"GUID_MANAGED_SERVICE_ACCOUNTS_CONTAINER_W","features":[465]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_A","features":[465]},{"name":"GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_W","features":[465]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_A","features":[465]},{"name":"GUID_NTDS_QUOTAS_CONTAINER_W","features":[465]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_A","features":[465]},{"name":"GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_W","features":[465]},{"name":"GUID_PROGRAM_DATA_CONTAINER_A","features":[465]},{"name":"GUID_PROGRAM_DATA_CONTAINER_W","features":[465]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_A","features":[465]},{"name":"GUID_RECYCLE_BIN_OPTIONAL_FEATURE_W","features":[465]},{"name":"GUID_SYSTEMS_CONTAINER_A","features":[465]},{"name":"GUID_SYSTEMS_CONTAINER_W","features":[465]},{"name":"GUID_USERS_CONTAINER_A","features":[465]},{"name":"GUID_USERS_CONTAINER_W","features":[465]},{"name":"Hold","features":[465]},{"name":"IADs","features":[465,356]},{"name":"IADsADSystemInfo","features":[465,356]},{"name":"IADsAccessControlEntry","features":[465,356]},{"name":"IADsAccessControlList","features":[465,356]},{"name":"IADsAcl","features":[465,356]},{"name":"IADsAggregatee","features":[465]},{"name":"IADsAggregator","features":[465]},{"name":"IADsBackLink","features":[465,356]},{"name":"IADsCaseIgnoreList","features":[465,356]},{"name":"IADsClass","features":[465,356]},{"name":"IADsCollection","features":[465,356]},{"name":"IADsComputer","features":[465,356]},{"name":"IADsComputerOperations","features":[465,356]},{"name":"IADsContainer","features":[465,356]},{"name":"IADsDNWithBinary","features":[465,356]},{"name":"IADsDNWithString","features":[465,356]},{"name":"IADsDeleteOps","features":[465,356]},{"name":"IADsDomain","features":[465,356]},{"name":"IADsEmail","features":[465,356]},{"name":"IADsExtension","features":[465]},{"name":"IADsFaxNumber","features":[465,356]},{"name":"IADsFileService","features":[465,356]},{"name":"IADsFileServiceOperations","features":[465,356]},{"name":"IADsFileShare","features":[465,356]},{"name":"IADsGroup","features":[465,356]},{"name":"IADsHold","features":[465,356]},{"name":"IADsLargeInteger","features":[465,356]},{"name":"IADsLocality","features":[465,356]},{"name":"IADsMembers","features":[465,356]},{"name":"IADsNameTranslate","features":[465,356]},{"name":"IADsNamespaces","features":[465,356]},{"name":"IADsNetAddress","features":[465,356]},{"name":"IADsO","features":[465,356]},{"name":"IADsOU","features":[465,356]},{"name":"IADsObjectOptions","features":[465,356]},{"name":"IADsOctetList","features":[465,356]},{"name":"IADsOpenDSObject","features":[465,356]},{"name":"IADsPath","features":[465,356]},{"name":"IADsPathname","features":[465,356]},{"name":"IADsPostalAddress","features":[465,356]},{"name":"IADsPrintJob","features":[465,356]},{"name":"IADsPrintJobOperations","features":[465,356]},{"name":"IADsPrintQueue","features":[465,356]},{"name":"IADsPrintQueueOperations","features":[465,356]},{"name":"IADsProperty","features":[465,356]},{"name":"IADsPropertyEntry","features":[465,356]},{"name":"IADsPropertyList","features":[465,356]},{"name":"IADsPropertyValue","features":[465,356]},{"name":"IADsPropertyValue2","features":[465,356]},{"name":"IADsReplicaPointer","features":[465,356]},{"name":"IADsResource","features":[465,356]},{"name":"IADsSecurityDescriptor","features":[465,356]},{"name":"IADsSecurityUtility","features":[465,356]},{"name":"IADsService","features":[465,356]},{"name":"IADsServiceOperations","features":[465,356]},{"name":"IADsSession","features":[465,356]},{"name":"IADsSyntax","features":[465,356]},{"name":"IADsTimestamp","features":[465,356]},{"name":"IADsTypedName","features":[465,356]},{"name":"IADsUser","features":[465,356]},{"name":"IADsWinNTSystemInfo","features":[465,356]},{"name":"ICommonQuery","features":[465]},{"name":"IDirectoryObject","features":[465]},{"name":"IDirectorySchemaMgmt","features":[465]},{"name":"IDirectorySearch","features":[465]},{"name":"IDsAdminCreateObj","features":[465]},{"name":"IDsAdminNewObj","features":[465]},{"name":"IDsAdminNewObjExt","features":[465]},{"name":"IDsAdminNewObjPrimarySite","features":[465]},{"name":"IDsAdminNotifyHandler","features":[465]},{"name":"IDsBrowseDomainTree","features":[465]},{"name":"IDsDisplaySpecifier","features":[465]},{"name":"IDsObjectPicker","features":[465]},{"name":"IDsObjectPickerCredentials","features":[465]},{"name":"IPersistQuery","features":[465,356]},{"name":"IPrivateDispatch","features":[465]},{"name":"IPrivateUnknown","features":[465]},{"name":"IQueryForm","features":[465]},{"name":"LPCQADDFORMSPROC","features":[305,465,367]},{"name":"LPCQADDPAGESPROC","features":[305,465,367]},{"name":"LPCQPAGEPROC","features":[305,465,367]},{"name":"LPDSENUMATTRIBUTES","features":[305,465]},{"name":"LargeInteger","features":[465]},{"name":"NTDSAPI_BIND_ALLOW_DELEGATION","features":[465]},{"name":"NTDSAPI_BIND_FIND_BINDING","features":[465]},{"name":"NTDSAPI_BIND_FORCE_KERBEROS","features":[465]},{"name":"NTDSCONN_KCC_GC_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_INTERSITE_GC_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_INTERSITE_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_MINIMIZE_HOPS_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_NO_REASON","features":[465]},{"name":"NTDSCONN_KCC_OSCILLATING_CONNECTION_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_REDUNDANT_SERVER_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_RING_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_SERVER_FAILOVER_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_SITE_FAILOVER_TOPOLOGY","features":[465]},{"name":"NTDSCONN_KCC_STALE_SERVERS_TOPOLOGY","features":[465]},{"name":"NTDSCONN_OPT_DISABLE_INTERSITE_COMPRESSION","features":[465]},{"name":"NTDSCONN_OPT_IGNORE_SCHEDULE_MASK","features":[465]},{"name":"NTDSCONN_OPT_IS_GENERATED","features":[465]},{"name":"NTDSCONN_OPT_OVERRIDE_NOTIFY_DEFAULT","features":[465]},{"name":"NTDSCONN_OPT_RODC_TOPOLOGY","features":[465]},{"name":"NTDSCONN_OPT_TWOWAY_SYNC","features":[465]},{"name":"NTDSCONN_OPT_USER_OWNED_SCHEDULE","features":[465]},{"name":"NTDSCONN_OPT_USE_NOTIFY","features":[465]},{"name":"NTDSDSA_OPT_BLOCK_RPC","features":[465]},{"name":"NTDSDSA_OPT_DISABLE_INBOUND_REPL","features":[465]},{"name":"NTDSDSA_OPT_DISABLE_NTDSCONN_XLATE","features":[465]},{"name":"NTDSDSA_OPT_DISABLE_OUTBOUND_REPL","features":[465]},{"name":"NTDSDSA_OPT_DISABLE_SPN_REGISTRATION","features":[465]},{"name":"NTDSDSA_OPT_GENERATE_OWN_TOPO","features":[465]},{"name":"NTDSDSA_OPT_IS_GC","features":[465]},{"name":"NTDSSETTINGS_DEFAULT_SERVER_REDUNDANCY","features":[465]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_W2K_ELECTION","features":[465]},{"name":"NTDSSETTINGS_OPT_FORCE_KCC_WHISTLER_BEHAVIOR","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_AUTO_TOPOLOGY_DISABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_GROUP_CACHING_ENABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_INTER_SITE_AUTO_TOPOLOGY_DISABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_RAND_BH_SELECTION_DISABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_REDUNDANT_SERVER_TOPOLOGY_ENABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_SCHEDULE_HASHING_ENABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_CLEANUP_DISABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_DETECT_STALE_DISABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_IS_TOPL_MIN_HOPS_DISABLED","features":[465]},{"name":"NTDSSETTINGS_OPT_W2K3_BRIDGES_REQUIRED","features":[465]},{"name":"NTDSSETTINGS_OPT_W2K3_IGNORE_SCHEDULES","features":[465]},{"name":"NTDSSITECONN_OPT_DISABLE_COMPRESSION","features":[465]},{"name":"NTDSSITECONN_OPT_TWOWAY_SYNC","features":[465]},{"name":"NTDSSITECONN_OPT_USE_NOTIFY","features":[465]},{"name":"NTDSSITELINK_OPT_DISABLE_COMPRESSION","features":[465]},{"name":"NTDSSITELINK_OPT_TWOWAY_SYNC","features":[465]},{"name":"NTDSSITELINK_OPT_USE_NOTIFY","features":[465]},{"name":"NTDSTRANSPORT_OPT_BRIDGES_REQUIRED","features":[465]},{"name":"NTDSTRANSPORT_OPT_IGNORE_SCHEDULES","features":[465]},{"name":"NameTranslate","features":[465]},{"name":"NetAddress","features":[465]},{"name":"OPENQUERYWINDOW","features":[465,429]},{"name":"OQWF_DEFAULTFORM","features":[465]},{"name":"OQWF_HIDEMENUS","features":[465]},{"name":"OQWF_HIDESEARCHUI","features":[465]},{"name":"OQWF_ISSUEONOPEN","features":[465]},{"name":"OQWF_LOADQUERY","features":[465]},{"name":"OQWF_OKCANCEL","features":[465]},{"name":"OQWF_PARAMISPROPERTYBAG","features":[465]},{"name":"OQWF_REMOVEFORMS","features":[465]},{"name":"OQWF_REMOVESCOPES","features":[465]},{"name":"OQWF_SAVEQUERYONOK","features":[465]},{"name":"OQWF_SHOWOPTIONAL","features":[465]},{"name":"OQWF_SINGLESELECT","features":[465]},{"name":"OctetList","features":[465]},{"name":"Path","features":[465]},{"name":"Pathname","features":[465]},{"name":"PostalAddress","features":[465]},{"name":"PropVariantToAdsType","features":[305,465]},{"name":"PropertyEntry","features":[465]},{"name":"PropertyValue","features":[465]},{"name":"QUERYFORM_CHANGESFORMLIST","features":[465]},{"name":"QUERYFORM_CHANGESOPTFORMLIST","features":[465]},{"name":"ReallocADsMem","features":[465]},{"name":"ReallocADsStr","features":[305,465]},{"name":"ReplicaPointer","features":[465]},{"name":"SCHEDULE","features":[465]},{"name":"SCHEDULE_BANDWIDTH","features":[465]},{"name":"SCHEDULE_HEADER","features":[465]},{"name":"SCHEDULE_INTERVAL","features":[465]},{"name":"SCHEDULE_PRIORITY","features":[465]},{"name":"SecurityDescriptor","features":[465]},{"name":"SecurityDescriptorToBinarySD","features":[465,308]},{"name":"Timestamp","features":[465]},{"name":"TypedName","features":[465]},{"name":"WM_ADSPROP_NOTIFY_APPLY","features":[465]},{"name":"WM_ADSPROP_NOTIFY_CHANGE","features":[465]},{"name":"WM_ADSPROP_NOTIFY_ERROR","features":[465]},{"name":"WM_ADSPROP_NOTIFY_EXIT","features":[465]},{"name":"WM_ADSPROP_NOTIFY_FOREGROUND","features":[465]},{"name":"WM_ADSPROP_NOTIFY_PAGEHWND","features":[465]},{"name":"WM_ADSPROP_NOTIFY_PAGEINIT","features":[465]},{"name":"WM_ADSPROP_NOTIFY_SETFOCUS","features":[465]},{"name":"WinNTSystemInfo","features":[465]},{"name":"hrAccessDenied","features":[465]},{"name":"hrAfterInitialization","features":[465]},{"name":"hrAlreadyInitialized","features":[465]},{"name":"hrAlreadyOpen","features":[465]},{"name":"hrAlreadyPrepared","features":[465]},{"name":"hrBFInUse","features":[465]},{"name":"hrBFNotSynchronous","features":[465]},{"name":"hrBFPageNotFound","features":[465]},{"name":"hrBackupDirectoryNotEmpty","features":[465]},{"name":"hrBackupInProgress","features":[465]},{"name":"hrBackupNotAllowedYet","features":[465]},{"name":"hrBadBackupDatabaseSize","features":[465]},{"name":"hrBadCheckpointSignature","features":[465]},{"name":"hrBadColumnId","features":[465]},{"name":"hrBadDbSignature","features":[465]},{"name":"hrBadItagSequence","features":[465]},{"name":"hrBadLogSignature","features":[465]},{"name":"hrBadLogVersion","features":[465]},{"name":"hrBufferTooSmall","features":[465]},{"name":"hrBufferTruncated","features":[465]},{"name":"hrCannotBeTagged","features":[465]},{"name":"hrCannotRename","features":[465]},{"name":"hrCheckpointCorrupt","features":[465]},{"name":"hrCircularLogging","features":[465]},{"name":"hrColumn2ndSysMaint","features":[465]},{"name":"hrColumnCannotIndex","features":[465]},{"name":"hrColumnDoesNotFit","features":[465]},{"name":"hrColumnDuplicate","features":[465]},{"name":"hrColumnInUse","features":[465]},{"name":"hrColumnIndexed","features":[465]},{"name":"hrColumnLong","features":[465]},{"name":"hrColumnMaxTruncated","features":[465]},{"name":"hrColumnNotFound","features":[465]},{"name":"hrColumnNotUpdatable","features":[465]},{"name":"hrColumnNull","features":[465]},{"name":"hrColumnSetNull","features":[465]},{"name":"hrColumnTooBig","features":[465]},{"name":"hrCommunicationError","features":[465]},{"name":"hrConsistentTimeMismatch","features":[465]},{"name":"hrContainerNotEmpty","features":[465]},{"name":"hrContentsExpired","features":[465]},{"name":"hrCouldNotConnect","features":[465]},{"name":"hrCreateIndexFailed","features":[465]},{"name":"hrCurrencyStackOutOfMemory","features":[465]},{"name":"hrDatabaseAttached","features":[465]},{"name":"hrDatabaseCorrupted","features":[465]},{"name":"hrDatabaseDuplicate","features":[465]},{"name":"hrDatabaseInUse","features":[465]},{"name":"hrDatabaseInconsistent","features":[465]},{"name":"hrDatabaseInvalidName","features":[465]},{"name":"hrDatabaseInvalidPages","features":[465]},{"name":"hrDatabaseLocked","features":[465]},{"name":"hrDatabaseNotFound","features":[465]},{"name":"hrDeleteBackupFileFail","features":[465]},{"name":"hrDensityInvalid","features":[465]},{"name":"hrDiskFull","features":[465]},{"name":"hrDiskIO","features":[465]},{"name":"hrError","features":[465]},{"name":"hrExistingLogFileHasBadSignature","features":[465]},{"name":"hrExistingLogFileIsNotContiguous","features":[465]},{"name":"hrFLDKeyTooBig","features":[465]},{"name":"hrFLDNullKey","features":[465]},{"name":"hrFLDTooManySegments","features":[465]},{"name":"hrFeatureNotAvailable","features":[465]},{"name":"hrFileAccessDenied","features":[465]},{"name":"hrFileClose","features":[465]},{"name":"hrFileNotFound","features":[465]},{"name":"hrFileOpenReadOnly","features":[465]},{"name":"hrFullBackupNotTaken","features":[465]},{"name":"hrGivenLogFileHasBadSignature","features":[465]},{"name":"hrGivenLogFileIsNotContiguous","features":[465]},{"name":"hrIllegalOperation","features":[465]},{"name":"hrInTransaction","features":[465]},{"name":"hrIncrementalBackupDisabled","features":[465]},{"name":"hrIndexCantBuild","features":[465]},{"name":"hrIndexDuplicate","features":[465]},{"name":"hrIndexHasClustered","features":[465]},{"name":"hrIndexHasPrimary","features":[465]},{"name":"hrIndexInUse","features":[465]},{"name":"hrIndexInvalidDef","features":[465]},{"name":"hrIndexMustStay","features":[465]},{"name":"hrIndexNotFound","features":[465]},{"name":"hrInvalidBackup","features":[465]},{"name":"hrInvalidBackupSequence","features":[465]},{"name":"hrInvalidBookmark","features":[465]},{"name":"hrInvalidBufferSize","features":[465]},{"name":"hrInvalidCodePage","features":[465]},{"name":"hrInvalidColumnType","features":[465]},{"name":"hrInvalidCountry","features":[465]},{"name":"hrInvalidDatabase","features":[465]},{"name":"hrInvalidDatabaseId","features":[465]},{"name":"hrInvalidFilename","features":[465]},{"name":"hrInvalidHandle","features":[465]},{"name":"hrInvalidLanguageId","features":[465]},{"name":"hrInvalidLogSequence","features":[465]},{"name":"hrInvalidName","features":[465]},{"name":"hrInvalidObject","features":[465]},{"name":"hrInvalidOnSort","features":[465]},{"name":"hrInvalidOperation","features":[465]},{"name":"hrInvalidParam","features":[465]},{"name":"hrInvalidParameter","features":[465]},{"name":"hrInvalidPath","features":[465]},{"name":"hrInvalidRecips","features":[465]},{"name":"hrInvalidSesid","features":[465]},{"name":"hrInvalidTableId","features":[465]},{"name":"hrKeyChanged","features":[465]},{"name":"hrKeyDuplicate","features":[465]},{"name":"hrKeyIsMade","features":[465]},{"name":"hrKeyNotMade","features":[465]},{"name":"hrLogBufferTooSmall","features":[465]},{"name":"hrLogCorrupted","features":[465]},{"name":"hrLogDiskFull","features":[465]},{"name":"hrLogFileCorrupt","features":[465]},{"name":"hrLogFileNotFound","features":[465]},{"name":"hrLogSequenceEnd","features":[465]},{"name":"hrLogWriteFail","features":[465]},{"name":"hrLoggingDisabled","features":[465]},{"name":"hrMakeBackupDirectoryFail","features":[465]},{"name":"hrMissingExpiryToken","features":[465]},{"name":"hrMissingFullBackup","features":[465]},{"name":"hrMissingLogFile","features":[465]},{"name":"hrMissingPreviousLogFile","features":[465]},{"name":"hrMissingRestoreLogFiles","features":[465]},{"name":"hrNoBackup","features":[465]},{"name":"hrNoBackupDirectory","features":[465]},{"name":"hrNoCurrentIndex","features":[465]},{"name":"hrNoCurrentRecord","features":[465]},{"name":"hrNoFullRestore","features":[465]},{"name":"hrNoIdleActivity","features":[465]},{"name":"hrNoWriteLock","features":[465]},{"name":"hrNone","features":[465]},{"name":"hrNotInTransaction","features":[465]},{"name":"hrNotInitialized","features":[465]},{"name":"hrNullInvalid","features":[465]},{"name":"hrNullKeyDisallowed","features":[465]},{"name":"hrNyi","features":[465]},{"name":"hrObjectDuplicate","features":[465]},{"name":"hrObjectNotFound","features":[465]},{"name":"hrOutOfBuffers","features":[465]},{"name":"hrOutOfCursors","features":[465]},{"name":"hrOutOfDatabaseSpace","features":[465]},{"name":"hrOutOfFileHandles","features":[465]},{"name":"hrOutOfMemory","features":[465]},{"name":"hrOutOfSessions","features":[465]},{"name":"hrOutOfThreads","features":[465]},{"name":"hrPMRecDeleted","features":[465]},{"name":"hrPatchFileMismatch","features":[465]},{"name":"hrPermissionDenied","features":[465]},{"name":"hrReadVerifyFailure","features":[465]},{"name":"hrRecordClusteredChanged","features":[465]},{"name":"hrRecordDeleted","features":[465]},{"name":"hrRecordNotFound","features":[465]},{"name":"hrRecordTooBig","features":[465]},{"name":"hrRecoveredWithErrors","features":[465]},{"name":"hrRemainingVersions","features":[465]},{"name":"hrRestoreInProgress","features":[465]},{"name":"hrRestoreLogTooHigh","features":[465]},{"name":"hrRestoreLogTooLow","features":[465]},{"name":"hrRestoreMapExists","features":[465]},{"name":"hrSeekNotEqual","features":[465]},{"name":"hrSessionWriteConflict","features":[465]},{"name":"hrTableDuplicate","features":[465]},{"name":"hrTableEmpty","features":[465]},{"name":"hrTableInUse","features":[465]},{"name":"hrTableLocked","features":[465]},{"name":"hrTableNotEmpty","features":[465]},{"name":"hrTaggedNotNULL","features":[465]},{"name":"hrTempFileOpenError","features":[465]},{"name":"hrTermInProgress","features":[465]},{"name":"hrTooManyActiveUsers","features":[465]},{"name":"hrTooManyAttachedDatabases","features":[465]},{"name":"hrTooManyColumns","features":[465]},{"name":"hrTooManyIO","features":[465]},{"name":"hrTooManyIndexes","features":[465]},{"name":"hrTooManyKeys","features":[465]},{"name":"hrTooManyOpenDatabases","features":[465]},{"name":"hrTooManyOpenIndexes","features":[465]},{"name":"hrTooManyOpenTables","features":[465]},{"name":"hrTooManySorts","features":[465]},{"name":"hrTransTooDeep","features":[465]},{"name":"hrUnknownExpiryTokenFormat","features":[465]},{"name":"hrUpdateNotPrepared","features":[465]},{"name":"hrVersionStoreOutOfMemory","features":[465]},{"name":"hrWriteConflict","features":[465]},{"name":"hrerrDataHasChanged","features":[465]},{"name":"hrwrnDataHasChanged","features":[465]}],"470":[{"name":"AsyncIBackgroundCopyCallback","features":[467]},{"name":"BG_AUTH_CREDENTIALS","features":[467]},{"name":"BG_AUTH_CREDENTIALS_UNION","features":[467]},{"name":"BG_AUTH_SCHEME","features":[467]},{"name":"BG_AUTH_SCHEME_BASIC","features":[467]},{"name":"BG_AUTH_SCHEME_DIGEST","features":[467]},{"name":"BG_AUTH_SCHEME_NEGOTIATE","features":[467]},{"name":"BG_AUTH_SCHEME_NTLM","features":[467]},{"name":"BG_AUTH_SCHEME_PASSPORT","features":[467]},{"name":"BG_AUTH_TARGET","features":[467]},{"name":"BG_AUTH_TARGET_PROXY","features":[467]},{"name":"BG_AUTH_TARGET_SERVER","features":[467]},{"name":"BG_BASIC_CREDENTIALS","features":[467]},{"name":"BG_CERT_STORE_LOCATION","features":[467]},{"name":"BG_CERT_STORE_LOCATION_CURRENT_SERVICE","features":[467]},{"name":"BG_CERT_STORE_LOCATION_CURRENT_USER","features":[467]},{"name":"BG_CERT_STORE_LOCATION_CURRENT_USER_GROUP_POLICY","features":[467]},{"name":"BG_CERT_STORE_LOCATION_LOCAL_MACHINE","features":[467]},{"name":"BG_CERT_STORE_LOCATION_LOCAL_MACHINE_ENTERPRISE","features":[467]},{"name":"BG_CERT_STORE_LOCATION_LOCAL_MACHINE_GROUP_POLICY","features":[467]},{"name":"BG_CERT_STORE_LOCATION_SERVICES","features":[467]},{"name":"BG_CERT_STORE_LOCATION_USERS","features":[467]},{"name":"BG_COPY_FILE_ALL","features":[467]},{"name":"BG_COPY_FILE_DACL","features":[467]},{"name":"BG_COPY_FILE_GROUP","features":[467]},{"name":"BG_COPY_FILE_OWNER","features":[467]},{"name":"BG_COPY_FILE_SACL","features":[467]},{"name":"BG_DISABLE_BRANCH_CACHE","features":[467]},{"name":"BG_ENABLE_PEERCACHING_CLIENT","features":[467]},{"name":"BG_ENABLE_PEERCACHING_SERVER","features":[467]},{"name":"BG_ERROR_CONTEXT","features":[467]},{"name":"BG_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER","features":[467]},{"name":"BG_ERROR_CONTEXT_GENERAL_TRANSPORT","features":[467]},{"name":"BG_ERROR_CONTEXT_LOCAL_FILE","features":[467]},{"name":"BG_ERROR_CONTEXT_NONE","features":[467]},{"name":"BG_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION","features":[467]},{"name":"BG_ERROR_CONTEXT_REMOTE_APPLICATION","features":[467]},{"name":"BG_ERROR_CONTEXT_REMOTE_FILE","features":[467]},{"name":"BG_ERROR_CONTEXT_SERVER_CERTIFICATE_CALLBACK","features":[467]},{"name":"BG_ERROR_CONTEXT_UNKNOWN","features":[467]},{"name":"BG_E_APP_PACKAGE_NOT_FOUND","features":[467]},{"name":"BG_E_APP_PACKAGE_SCENARIO_NOT_SUPPORTED","features":[467]},{"name":"BG_E_BLOCKED_BY_BACKGROUND_ACCESS_POLICY","features":[467]},{"name":"BG_E_BLOCKED_BY_BATTERY_POLICY","features":[467]},{"name":"BG_E_BLOCKED_BY_BATTERY_SAVER","features":[467]},{"name":"BG_E_BLOCKED_BY_COST_TRANSFER_POLICY","features":[467]},{"name":"BG_E_BLOCKED_BY_GAME_MODE","features":[467]},{"name":"BG_E_BLOCKED_BY_POLICY","features":[467]},{"name":"BG_E_BLOCKED_BY_SYSTEM_POLICY","features":[467]},{"name":"BG_E_BUSYCACHERECORD","features":[467]},{"name":"BG_E_CLIENT_SERVER_PROTOCOL_MISMATCH","features":[467]},{"name":"BG_E_COMMIT_IN_PROGRESS","features":[467]},{"name":"BG_E_CONNECTION_CLOSED","features":[467]},{"name":"BG_E_CONNECT_FAILURE","features":[467]},{"name":"BG_E_DATABASE_CORRUPT","features":[467]},{"name":"BG_E_DESTINATION_LOCKED","features":[467]},{"name":"BG_E_DISCOVERY_IN_PROGRESS","features":[467]},{"name":"BG_E_EMPTY","features":[467]},{"name":"BG_E_ERROR_CONTEXT_GENERAL_QUEUE_MANAGER","features":[467]},{"name":"BG_E_ERROR_CONTEXT_GENERAL_TRANSPORT","features":[467]},{"name":"BG_E_ERROR_CONTEXT_LOCAL_FILE","features":[467]},{"name":"BG_E_ERROR_CONTEXT_QUEUE_MANAGER_NOTIFICATION","features":[467]},{"name":"BG_E_ERROR_CONTEXT_REMOTE_APPLICATION","features":[467]},{"name":"BG_E_ERROR_CONTEXT_REMOTE_FILE","features":[467]},{"name":"BG_E_ERROR_CONTEXT_SERVER_CERTIFICATE_CALLBACK","features":[467]},{"name":"BG_E_ERROR_CONTEXT_UNKNOWN","features":[467]},{"name":"BG_E_ERROR_INFORMATION_UNAVAILABLE","features":[467]},{"name":"BG_E_FILE_NOT_AVAILABLE","features":[467]},{"name":"BG_E_FILE_NOT_FOUND","features":[467]},{"name":"BG_E_HTTP_ERROR_100","features":[467]},{"name":"BG_E_HTTP_ERROR_101","features":[467]},{"name":"BG_E_HTTP_ERROR_200","features":[467]},{"name":"BG_E_HTTP_ERROR_201","features":[467]},{"name":"BG_E_HTTP_ERROR_202","features":[467]},{"name":"BG_E_HTTP_ERROR_203","features":[467]},{"name":"BG_E_HTTP_ERROR_204","features":[467]},{"name":"BG_E_HTTP_ERROR_205","features":[467]},{"name":"BG_E_HTTP_ERROR_206","features":[467]},{"name":"BG_E_HTTP_ERROR_300","features":[467]},{"name":"BG_E_HTTP_ERROR_301","features":[467]},{"name":"BG_E_HTTP_ERROR_302","features":[467]},{"name":"BG_E_HTTP_ERROR_303","features":[467]},{"name":"BG_E_HTTP_ERROR_304","features":[467]},{"name":"BG_E_HTTP_ERROR_305","features":[467]},{"name":"BG_E_HTTP_ERROR_307","features":[467]},{"name":"BG_E_HTTP_ERROR_400","features":[467]},{"name":"BG_E_HTTP_ERROR_401","features":[467]},{"name":"BG_E_HTTP_ERROR_402","features":[467]},{"name":"BG_E_HTTP_ERROR_403","features":[467]},{"name":"BG_E_HTTP_ERROR_404","features":[467]},{"name":"BG_E_HTTP_ERROR_405","features":[467]},{"name":"BG_E_HTTP_ERROR_406","features":[467]},{"name":"BG_E_HTTP_ERROR_407","features":[467]},{"name":"BG_E_HTTP_ERROR_408","features":[467]},{"name":"BG_E_HTTP_ERROR_409","features":[467]},{"name":"BG_E_HTTP_ERROR_410","features":[467]},{"name":"BG_E_HTTP_ERROR_411","features":[467]},{"name":"BG_E_HTTP_ERROR_412","features":[467]},{"name":"BG_E_HTTP_ERROR_413","features":[467]},{"name":"BG_E_HTTP_ERROR_414","features":[467]},{"name":"BG_E_HTTP_ERROR_415","features":[467]},{"name":"BG_E_HTTP_ERROR_416","features":[467]},{"name":"BG_E_HTTP_ERROR_417","features":[467]},{"name":"BG_E_HTTP_ERROR_449","features":[467]},{"name":"BG_E_HTTP_ERROR_500","features":[467]},{"name":"BG_E_HTTP_ERROR_501","features":[467]},{"name":"BG_E_HTTP_ERROR_502","features":[467]},{"name":"BG_E_HTTP_ERROR_503","features":[467]},{"name":"BG_E_HTTP_ERROR_504","features":[467]},{"name":"BG_E_HTTP_ERROR_505","features":[467]},{"name":"BG_E_INSUFFICIENT_HTTP_SUPPORT","features":[467]},{"name":"BG_E_INSUFFICIENT_RANGE_SUPPORT","features":[467]},{"name":"BG_E_INVALID_AUTH_SCHEME","features":[467]},{"name":"BG_E_INVALID_AUTH_TARGET","features":[467]},{"name":"BG_E_INVALID_CREDENTIALS","features":[467]},{"name":"BG_E_INVALID_HASH_ALGORITHM","features":[467]},{"name":"BG_E_INVALID_PROXY_INFO","features":[467]},{"name":"BG_E_INVALID_RANGE","features":[467]},{"name":"BG_E_INVALID_SERVER_RESPONSE","features":[467]},{"name":"BG_E_INVALID_STATE","features":[467]},{"name":"BG_E_LOCAL_FILE_CHANGED","features":[467]},{"name":"BG_E_MAXDOWNLOAD_TIMEOUT","features":[467]},{"name":"BG_E_MAX_DOWNLOAD_SIZE_INVALID_VALUE","features":[467]},{"name":"BG_E_MAX_DOWNLOAD_SIZE_LIMIT_REACHED","features":[467]},{"name":"BG_E_MISSING_FILE_SIZE","features":[467]},{"name":"BG_E_NETWORK_DISCONNECTED","features":[467]},{"name":"BG_E_NEW_OWNER_DIFF_MAPPING","features":[467]},{"name":"BG_E_NEW_OWNER_NO_FILE_ACCESS","features":[467]},{"name":"BG_E_NOT_FOUND","features":[467]},{"name":"BG_E_NOT_SUPPORTED_WITH_CUSTOM_HTTP_METHOD","features":[467]},{"name":"BG_E_NO_PROGRESS","features":[467]},{"name":"BG_E_OVERLAPPING_RANGES","features":[467]},{"name":"BG_E_PASSWORD_TOO_LARGE","features":[467]},{"name":"BG_E_PEERCACHING_DISABLED","features":[467]},{"name":"BG_E_PROPERTY_SUPPORTED_FOR_DOWNLOAD_JOBS_ONLY","features":[467]},{"name":"BG_E_PROTOCOL_NOT_AVAILABLE","features":[467]},{"name":"BG_E_PROXY_BYPASS_LIST_TOO_LARGE","features":[467]},{"name":"BG_E_PROXY_LIST_TOO_LARGE","features":[467]},{"name":"BG_E_RANDOM_ACCESS_NOT_SUPPORTED","features":[467]},{"name":"BG_E_READ_ONLY_PROPERTY","features":[467]},{"name":"BG_E_READ_ONLY_PROPERTY_AFTER_ADDFILE","features":[467]},{"name":"BG_E_READ_ONLY_PROPERTY_AFTER_RESUME","features":[467]},{"name":"BG_E_READ_ONLY_WHEN_JOB_ACTIVE","features":[467]},{"name":"BG_E_RECORD_DELETED","features":[467]},{"name":"BG_E_REMOTE_FILE_CHANGED","features":[467]},{"name":"BG_E_REMOTE_NOT_SUPPORTED","features":[467]},{"name":"BG_E_SERVER_CERT_VALIDATION_INTERFACE_REQUIRED","features":[467]},{"name":"BG_E_SERVER_EXECUTE_ENABLE","features":[467]},{"name":"BG_E_SESSION_NOT_FOUND","features":[467]},{"name":"BG_E_STANDBY_MODE","features":[467]},{"name":"BG_E_STRING_TOO_LONG","features":[467]},{"name":"BG_E_TEST_OPTION_BLOCKED_DOWNLOAD","features":[467]},{"name":"BG_E_TOKEN_REQUIRED","features":[467]},{"name":"BG_E_TOO_LARGE","features":[467]},{"name":"BG_E_TOO_MANY_FILES","features":[467]},{"name":"BG_E_TOO_MANY_FILES_IN_JOB","features":[467]},{"name":"BG_E_TOO_MANY_JOBS_PER_MACHINE","features":[467]},{"name":"BG_E_TOO_MANY_JOBS_PER_USER","features":[467]},{"name":"BG_E_TOO_MANY_RANGES_IN_FILE","features":[467]},{"name":"BG_E_UNKNOWN_PROPERTY_ID","features":[467]},{"name":"BG_E_UNSUPPORTED_JOB_CONFIGURATION","features":[467]},{"name":"BG_E_UPNP_ERROR","features":[467]},{"name":"BG_E_USERNAME_TOO_LARGE","features":[467]},{"name":"BG_E_USE_STORED_CREDENTIALS_NOT_SUPPORTED","features":[467]},{"name":"BG_E_VALIDATION_FAILED","features":[467]},{"name":"BG_E_VOLUME_CHANGED","features":[467]},{"name":"BG_E_WATCHDOG_TIMEOUT","features":[467]},{"name":"BG_FILE_INFO","features":[467]},{"name":"BG_FILE_PROGRESS","features":[305,467]},{"name":"BG_FILE_RANGE","features":[467]},{"name":"BG_HTTP_REDIRECT_POLICY_ALLOW_HTTPS_TO_HTTP","features":[467]},{"name":"BG_HTTP_REDIRECT_POLICY_ALLOW_REPORT","features":[467]},{"name":"BG_HTTP_REDIRECT_POLICY_ALLOW_SILENT","features":[467]},{"name":"BG_HTTP_REDIRECT_POLICY_DISALLOW","features":[467]},{"name":"BG_HTTP_REDIRECT_POLICY_MASK","features":[467]},{"name":"BG_JOB_DISABLE_BRANCH_CACHE","features":[467]},{"name":"BG_JOB_ENABLE_PEERCACHING_CLIENT","features":[467]},{"name":"BG_JOB_ENABLE_PEERCACHING_SERVER","features":[467]},{"name":"BG_JOB_ENUM_ALL_USERS","features":[467]},{"name":"BG_JOB_PRIORITY","features":[467]},{"name":"BG_JOB_PRIORITY_FOREGROUND","features":[467]},{"name":"BG_JOB_PRIORITY_HIGH","features":[467]},{"name":"BG_JOB_PRIORITY_LOW","features":[467]},{"name":"BG_JOB_PRIORITY_NORMAL","features":[467]},{"name":"BG_JOB_PROGRESS","features":[467]},{"name":"BG_JOB_PROXY_USAGE","features":[467]},{"name":"BG_JOB_PROXY_USAGE_AUTODETECT","features":[467]},{"name":"BG_JOB_PROXY_USAGE_NO_PROXY","features":[467]},{"name":"BG_JOB_PROXY_USAGE_OVERRIDE","features":[467]},{"name":"BG_JOB_PROXY_USAGE_PRECONFIG","features":[467]},{"name":"BG_JOB_REPLY_PROGRESS","features":[467]},{"name":"BG_JOB_STATE","features":[467]},{"name":"BG_JOB_STATE_ACKNOWLEDGED","features":[467]},{"name":"BG_JOB_STATE_CANCELLED","features":[467]},{"name":"BG_JOB_STATE_CONNECTING","features":[467]},{"name":"BG_JOB_STATE_ERROR","features":[467]},{"name":"BG_JOB_STATE_QUEUED","features":[467]},{"name":"BG_JOB_STATE_SUSPENDED","features":[467]},{"name":"BG_JOB_STATE_TRANSFERRED","features":[467]},{"name":"BG_JOB_STATE_TRANSFERRING","features":[467]},{"name":"BG_JOB_STATE_TRANSIENT_ERROR","features":[467]},{"name":"BG_JOB_TIMES","features":[305,467]},{"name":"BG_JOB_TYPE","features":[467]},{"name":"BG_JOB_TYPE_DOWNLOAD","features":[467]},{"name":"BG_JOB_TYPE_UPLOAD","features":[467]},{"name":"BG_JOB_TYPE_UPLOAD_REPLY","features":[467]},{"name":"BG_NOTIFY_DISABLE","features":[467]},{"name":"BG_NOTIFY_FILE_RANGES_TRANSFERRED","features":[467]},{"name":"BG_NOTIFY_FILE_TRANSFERRED","features":[467]},{"name":"BG_NOTIFY_JOB_ERROR","features":[467]},{"name":"BG_NOTIFY_JOB_MODIFICATION","features":[467]},{"name":"BG_NOTIFY_JOB_TRANSFERRED","features":[467]},{"name":"BG_SSL_ENABLE_CRL_CHECK","features":[467]},{"name":"BG_SSL_IGNORE_CERT_CN_INVALID","features":[467]},{"name":"BG_SSL_IGNORE_CERT_DATE_INVALID","features":[467]},{"name":"BG_SSL_IGNORE_CERT_WRONG_USAGE","features":[467]},{"name":"BG_SSL_IGNORE_UNKNOWN_CA","features":[467]},{"name":"BG_S_ERROR_CONTEXT_NONE","features":[467]},{"name":"BG_S_OVERRIDDEN_BY_POLICY","features":[467]},{"name":"BG_S_PARTIAL_COMPLETE","features":[467]},{"name":"BG_S_PROXY_CHANGED","features":[467]},{"name":"BG_S_UNABLE_TO_DELETE_FILES","features":[467]},{"name":"BG_TOKEN","features":[467]},{"name":"BG_TOKEN_LOCAL_FILE","features":[467]},{"name":"BG_TOKEN_NETWORK","features":[467]},{"name":"BITSExtensionSetupFactory","features":[467]},{"name":"BITS_COST_OPTION_IGNORE_CONGESTION","features":[467]},{"name":"BITS_COST_STATE_BELOW_CAP","features":[467]},{"name":"BITS_COST_STATE_CAPPED_USAGE_UNKNOWN","features":[467]},{"name":"BITS_COST_STATE_NEAR_CAP","features":[467]},{"name":"BITS_COST_STATE_OVERCAP_CHARGED","features":[467]},{"name":"BITS_COST_STATE_OVERCAP_THROTTLED","features":[467]},{"name":"BITS_COST_STATE_RESERVED","features":[467]},{"name":"BITS_COST_STATE_ROAMING","features":[467]},{"name":"BITS_COST_STATE_UNRESTRICTED","features":[467]},{"name":"BITS_COST_STATE_USAGE_BASED","features":[467]},{"name":"BITS_FILE_PROPERTY_ID","features":[467]},{"name":"BITS_FILE_PROPERTY_ID_HTTP_RESPONSE_HEADERS","features":[467]},{"name":"BITS_FILE_PROPERTY_VALUE","features":[467]},{"name":"BITS_JOB_PROPERTY_DYNAMIC_CONTENT","features":[467]},{"name":"BITS_JOB_PROPERTY_HIGH_PERFORMANCE","features":[467]},{"name":"BITS_JOB_PROPERTY_ID","features":[467]},{"name":"BITS_JOB_PROPERTY_ID_COST_FLAGS","features":[467]},{"name":"BITS_JOB_PROPERTY_MAX_DOWNLOAD_SIZE","features":[467]},{"name":"BITS_JOB_PROPERTY_MINIMUM_NOTIFICATION_INTERVAL_MS","features":[467]},{"name":"BITS_JOB_PROPERTY_NOTIFICATION_CLSID","features":[467]},{"name":"BITS_JOB_PROPERTY_ON_DEMAND_MODE","features":[467]},{"name":"BITS_JOB_PROPERTY_USE_STORED_CREDENTIALS","features":[467]},{"name":"BITS_JOB_PROPERTY_VALUE","features":[305,467]},{"name":"BITS_JOB_TRANSFER_POLICY","features":[467]},{"name":"BITS_JOB_TRANSFER_POLICY_ALWAYS","features":[467]},{"name":"BITS_JOB_TRANSFER_POLICY_NOT_ROAMING","features":[467]},{"name":"BITS_JOB_TRANSFER_POLICY_NO_SURCHARGE","features":[467]},{"name":"BITS_JOB_TRANSFER_POLICY_STANDARD","features":[467]},{"name":"BITS_JOB_TRANSFER_POLICY_UNRESTRICTED","features":[467]},{"name":"BITS_MC_FAILED_TO_START","features":[467]},{"name":"BITS_MC_FATAL_IGD_ERROR","features":[467]},{"name":"BITS_MC_FILE_DELETION_FAILED","features":[467]},{"name":"BITS_MC_FILE_DELETION_FAILED_MORE","features":[467]},{"name":"BITS_MC_JOB_CANCELLED","features":[467]},{"name":"BITS_MC_JOB_NOTIFICATION_FAILURE","features":[467]},{"name":"BITS_MC_JOB_PROPERTY_CHANGE","features":[467]},{"name":"BITS_MC_JOB_SCAVENGED","features":[467]},{"name":"BITS_MC_JOB_TAKE_OWNERSHIP","features":[467]},{"name":"BITS_MC_PEERCACHING_PORT","features":[467]},{"name":"BITS_MC_STATE_FILE_CORRUPT","features":[467]},{"name":"BITS_MC_WSD_PORT","features":[467]},{"name":"BackgroundCopyManager","features":[467]},{"name":"BackgroundCopyManager10_1","features":[467]},{"name":"BackgroundCopyManager10_2","features":[467]},{"name":"BackgroundCopyManager10_3","features":[467]},{"name":"BackgroundCopyManager1_5","features":[467]},{"name":"BackgroundCopyManager2_0","features":[467]},{"name":"BackgroundCopyManager2_5","features":[467]},{"name":"BackgroundCopyManager3_0","features":[467]},{"name":"BackgroundCopyManager4_0","features":[467]},{"name":"BackgroundCopyManager5_0","features":[467]},{"name":"BackgroundCopyQMgr","features":[467]},{"name":"FILESETINFO","features":[467]},{"name":"GROUPPROP","features":[467]},{"name":"GROUPPROP_DESCRIPTION","features":[467]},{"name":"GROUPPROP_DISPLAYNAME","features":[467]},{"name":"GROUPPROP_LOCALUSERID","features":[467]},{"name":"GROUPPROP_LOCALUSERPWD","features":[467]},{"name":"GROUPPROP_NOTIFYCLSID","features":[467]},{"name":"GROUPPROP_NOTIFYFLAGS","features":[467]},{"name":"GROUPPROP_PRIORITY","features":[467]},{"name":"GROUPPROP_PROGRESSPERCENT","features":[467]},{"name":"GROUPPROP_PROGRESSSIZE","features":[467]},{"name":"GROUPPROP_PROGRESSTIME","features":[467]},{"name":"GROUPPROP_PROTOCOLFLAGS","features":[467]},{"name":"GROUPPROP_REMOTEUSERID","features":[467]},{"name":"GROUPPROP_REMOTEUSERPWD","features":[467]},{"name":"IBITSExtensionSetup","features":[467,356]},{"name":"IBITSExtensionSetupFactory","features":[467,356]},{"name":"IBackgroundCopyCallback","features":[467]},{"name":"IBackgroundCopyCallback1","features":[467]},{"name":"IBackgroundCopyCallback2","features":[467]},{"name":"IBackgroundCopyCallback3","features":[467]},{"name":"IBackgroundCopyError","features":[467]},{"name":"IBackgroundCopyFile","features":[467]},{"name":"IBackgroundCopyFile2","features":[467]},{"name":"IBackgroundCopyFile3","features":[467]},{"name":"IBackgroundCopyFile4","features":[467]},{"name":"IBackgroundCopyFile5","features":[467]},{"name":"IBackgroundCopyFile6","features":[467]},{"name":"IBackgroundCopyGroup","features":[467]},{"name":"IBackgroundCopyJob","features":[467]},{"name":"IBackgroundCopyJob1","features":[467]},{"name":"IBackgroundCopyJob2","features":[467]},{"name":"IBackgroundCopyJob3","features":[467]},{"name":"IBackgroundCopyJob4","features":[467]},{"name":"IBackgroundCopyJob5","features":[467]},{"name":"IBackgroundCopyJobHttpOptions","features":[467]},{"name":"IBackgroundCopyJobHttpOptions2","features":[467]},{"name":"IBackgroundCopyJobHttpOptions3","features":[467]},{"name":"IBackgroundCopyManager","features":[467]},{"name":"IBackgroundCopyQMgr","features":[467]},{"name":"IBackgroundCopyServerCertificateValidationCallback","features":[467]},{"name":"IBitsPeer","features":[467]},{"name":"IBitsPeerCacheAdministration","features":[467]},{"name":"IBitsPeerCacheRecord","features":[467]},{"name":"IBitsTokenOptions","features":[467]},{"name":"IEnumBackgroundCopyFiles","features":[467]},{"name":"IEnumBackgroundCopyGroups","features":[467]},{"name":"IEnumBackgroundCopyJobs","features":[467]},{"name":"IEnumBackgroundCopyJobs1","features":[467]},{"name":"IEnumBitsPeerCacheRecords","features":[467]},{"name":"IEnumBitsPeers","features":[467]},{"name":"QM_E_DOWNLOADER_UNAVAILABLE","features":[467]},{"name":"QM_E_INVALID_STATE","features":[467]},{"name":"QM_E_ITEM_NOT_FOUND","features":[467]},{"name":"QM_E_SERVICE_UNAVAILABLE","features":[467]},{"name":"QM_NOTIFY_DISABLE_NOTIFY","features":[467]},{"name":"QM_NOTIFY_FILE_DONE","features":[467]},{"name":"QM_NOTIFY_GROUP_DONE","features":[467]},{"name":"QM_NOTIFY_JOB_DONE","features":[467]},{"name":"QM_NOTIFY_USE_PROGRESSEX","features":[467]},{"name":"QM_PROGRESS_PERCENT_DONE","features":[467]},{"name":"QM_PROGRESS_SIZE_DONE","features":[467]},{"name":"QM_PROGRESS_TIME_DONE","features":[467]},{"name":"QM_PROTOCOL_CUSTOM","features":[467]},{"name":"QM_PROTOCOL_FTP","features":[467]},{"name":"QM_PROTOCOL_HTTP","features":[467]},{"name":"QM_PROTOCOL_SMB","features":[467]},{"name":"QM_STATUS_FILE_COMPLETE","features":[467]},{"name":"QM_STATUS_FILE_INCOMPLETE","features":[467]},{"name":"QM_STATUS_GROUP_COMPLETE","features":[467]},{"name":"QM_STATUS_GROUP_ERROR","features":[467]},{"name":"QM_STATUS_GROUP_FOREGROUND","features":[467]},{"name":"QM_STATUS_GROUP_INCOMPLETE","features":[467]},{"name":"QM_STATUS_GROUP_SUSPENDED","features":[467]},{"name":"QM_STATUS_JOB_COMPLETE","features":[467]},{"name":"QM_STATUS_JOB_ERROR","features":[467]},{"name":"QM_STATUS_JOB_FOREGROUND","features":[467]},{"name":"QM_STATUS_JOB_INCOMPLETE","features":[467]}],"471":[{"name":"AddClusterGroupDependency","features":[468]},{"name":"AddClusterGroupDependencyEx","features":[468]},{"name":"AddClusterGroupSetDependency","features":[468]},{"name":"AddClusterGroupSetDependencyEx","features":[468]},{"name":"AddClusterGroupToGroupSetDependency","features":[468]},{"name":"AddClusterGroupToGroupSetDependencyEx","features":[468]},{"name":"AddClusterNode","features":[305,468]},{"name":"AddClusterNodeEx","features":[305,468]},{"name":"AddClusterResourceDependency","features":[468]},{"name":"AddClusterResourceDependencyEx","features":[468]},{"name":"AddClusterResourceNode","features":[468]},{"name":"AddClusterResourceNodeEx","features":[468]},{"name":"AddClusterStorageNode","features":[305,468]},{"name":"AddCrossClusterGroupSetDependency","features":[468]},{"name":"AddResourceToClusterSharedVolumes","features":[468]},{"name":"BackupClusterDatabase","features":[468]},{"name":"BitLockerDecrypted","features":[468]},{"name":"BitLockerDecrypting","features":[468]},{"name":"BitLockerEnabled","features":[468]},{"name":"BitLockerPaused","features":[468]},{"name":"BitLockerStopped","features":[468]},{"name":"BitlockerEncrypted","features":[468]},{"name":"BitlockerEncrypting","features":[468]},{"name":"CA_UPGRADE_VERSION","features":[468]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT","features":[468]},{"name":"CLCTL_ADD_CRYPTO_CHECKPOINT_EX","features":[468]},{"name":"CLCTL_ADD_DEPENDENCY","features":[468]},{"name":"CLCTL_ADD_OWNER","features":[468]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT","features":[468]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_32BIT","features":[468]},{"name":"CLCTL_ADD_REGISTRY_CHECKPOINT_64BIT","features":[468]},{"name":"CLCTL_BATCH_BLOCK_KEY","features":[468]},{"name":"CLCTL_BATCH_UNBLOCK_KEY","features":[468]},{"name":"CLCTL_BLOCK_GEM_SEND_RECV","features":[468]},{"name":"CLCTL_CHECK_DRAIN_VETO","features":[468]},{"name":"CLCTL_CHECK_VOTER_DOWN","features":[468]},{"name":"CLCTL_CHECK_VOTER_DOWN_WITNESS","features":[468]},{"name":"CLCTL_CHECK_VOTER_EVICT","features":[468]},{"name":"CLCTL_CHECK_VOTER_EVICT_WITNESS","features":[468]},{"name":"CLCTL_CLEAR_NODE_CONNECTION_INFO","features":[468]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[468]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[468]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[468]},{"name":"CLCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[468]},{"name":"CLCTL_CLUSTER_BASE","features":[468]},{"name":"CLCTL_CLUSTER_NAME_CHANGED","features":[468]},{"name":"CLCTL_CLUSTER_VERSION_CHANGED","features":[468]},{"name":"CLCTL_CODES","features":[468]},{"name":"CLCTL_DELETE","features":[468]},{"name":"CLCTL_DELETE_CRYPTO_CHECKPOINT","features":[468]},{"name":"CLCTL_DELETE_REGISTRY_CHECKPOINT","features":[468]},{"name":"CLCTL_DISABLE_SHARED_VOLUME_DIRECTIO","features":[468]},{"name":"CLCTL_ENABLE_SHARED_VOLUME_DIRECTIO","features":[468]},{"name":"CLCTL_ENUM_AFFINITY_RULE_NAMES","features":[468]},{"name":"CLCTL_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLCTL_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLCTL_EVICT_NODE","features":[468]},{"name":"CLCTL_FILESERVER_SHARE_ADD","features":[468]},{"name":"CLCTL_FILESERVER_SHARE_DEL","features":[468]},{"name":"CLCTL_FILESERVER_SHARE_MODIFY","features":[468]},{"name":"CLCTL_FILESERVER_SHARE_REPORT","features":[468]},{"name":"CLCTL_FIXUP_ON_UPGRADE","features":[468]},{"name":"CLCTL_FORCE_DB_FLUSH","features":[468]},{"name":"CLCTL_FORCE_QUORUM","features":[468]},{"name":"CLCTL_FSWITNESS_GET_EPOCH_INFO","features":[468]},{"name":"CLCTL_FSWITNESS_RELEASE_LOCK","features":[468]},{"name":"CLCTL_FSWITNESS_SET_EPOCH_INFO","features":[468]},{"name":"CLCTL_GET_ARB_TIMEOUT","features":[468]},{"name":"CLCTL_GET_CHARACTERISTICS","features":[468]},{"name":"CLCTL_GET_CLASS_INFO","features":[468]},{"name":"CLCTL_GET_CLUSDB_TIMESTAMP","features":[468]},{"name":"CLCTL_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[468]},{"name":"CLCTL_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLCTL_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLCTL_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[468]},{"name":"CLCTL_GET_CRYPTO_CHECKPOINTS","features":[468]},{"name":"CLCTL_GET_DNS_NAME","features":[468]},{"name":"CLCTL_GET_FAILURE_INFO","features":[468]},{"name":"CLCTL_GET_FLAGS","features":[468]},{"name":"CLCTL_GET_FQDN","features":[468]},{"name":"CLCTL_GET_GEMID_VECTOR","features":[468]},{"name":"CLCTL_GET_GUM_LOCK_OWNER","features":[468]},{"name":"CLCTL_GET_ID","features":[468]},{"name":"CLCTL_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[468]},{"name":"CLCTL_GET_LOADBAL_PROCESS_LIST","features":[468]},{"name":"CLCTL_GET_NAME","features":[468]},{"name":"CLCTL_GET_NETWORK","features":[468]},{"name":"CLCTL_GET_NETWORK_NAME","features":[468]},{"name":"CLCTL_GET_NODE","features":[468]},{"name":"CLCTL_GET_NODES_IN_FD","features":[468]},{"name":"CLCTL_GET_OPERATION_CONTEXT","features":[468]},{"name":"CLCTL_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLCTL_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLCTL_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[468]},{"name":"CLCTL_GET_REGISTRY_CHECKPOINTS","features":[468]},{"name":"CLCTL_GET_REQUIRED_DEPENDENCIES","features":[468]},{"name":"CLCTL_GET_RESOURCE_TYPE","features":[468]},{"name":"CLCTL_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLCTL_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLCTL_GET_SHARED_VOLUME_ID","features":[468]},{"name":"CLCTL_GET_STATE_CHANGE_TIME","features":[468]},{"name":"CLCTL_GET_STORAGE_CONFIGURATION","features":[468]},{"name":"CLCTL_GET_STORAGE_CONFIG_ATTRIBUTES","features":[468]},{"name":"CLCTL_GET_STUCK_NODES","features":[468]},{"name":"CLCTL_GLOBAL_SHIFT","features":[468]},{"name":"CLCTL_GROUPSET_GET_GROUPS","features":[468]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[468]},{"name":"CLCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[468]},{"name":"CLCTL_GROUP_GET_LAST_MOVE_TIME","features":[468]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPS","features":[468]},{"name":"CLCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[468]},{"name":"CLCTL_GROUP_SET_CCF_FROM_MASTER","features":[468]},{"name":"CLCTL_HOLD_IO","features":[468]},{"name":"CLCTL_INITIALIZE","features":[468]},{"name":"CLCTL_INJECT_GEM_FAULT","features":[468]},{"name":"CLCTL_INSTALL_NODE","features":[468]},{"name":"CLCTL_INTERNAL_SHIFT","features":[468]},{"name":"CLCTL_INTRODUCE_GEM_REPAIR_DELAY","features":[468]},{"name":"CLCTL_IPADDRESS_RELEASE_LEASE","features":[468]},{"name":"CLCTL_IPADDRESS_RENEW_LEASE","features":[468]},{"name":"CLCTL_IS_FEATURE_INSTALLED","features":[468]},{"name":"CLCTL_IS_QUORUM_BLOCKED","features":[468]},{"name":"CLCTL_IS_S2D_FEATURE_SUPPORTED","features":[468]},{"name":"CLCTL_JOINING_GROUP","features":[468]},{"name":"CLCTL_LEAVING_GROUP","features":[468]},{"name":"CLCTL_MODIFY_SHIFT","features":[468]},{"name":"CLCTL_NETNAME_CREDS_NOTIFYCAM","features":[468]},{"name":"CLCTL_NETNAME_DELETE_CO","features":[468]},{"name":"CLCTL_NETNAME_GET_OU_FOR_VCO","features":[468]},{"name":"CLCTL_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[468]},{"name":"CLCTL_NETNAME_REGISTER_DNS_RECORDS","features":[468]},{"name":"CLCTL_NETNAME_REPAIR_VCO","features":[468]},{"name":"CLCTL_NETNAME_RESET_VCO","features":[468]},{"name":"CLCTL_NETNAME_SET_PWD_INFO","features":[468]},{"name":"CLCTL_NETNAME_SET_PWD_INFOEX","features":[468]},{"name":"CLCTL_NETNAME_VALIDATE_VCO","features":[468]},{"name":"CLCTL_NOTIFY_DRAIN_COMPLETE","features":[468]},{"name":"CLCTL_NOTIFY_INFRASTRUCTURE_SOFS_CHANGED","features":[468]},{"name":"CLCTL_NOTIFY_MONITOR_SHUTTING_DOWN","features":[468]},{"name":"CLCTL_NOTIFY_OWNER_CHANGE","features":[468]},{"name":"CLCTL_NOTIFY_QUORUM_STATUS","features":[468]},{"name":"CLCTL_POOL_GET_DRIVE_INFO","features":[468]},{"name":"CLCTL_PROVIDER_STATE_CHANGE","features":[468]},{"name":"CLCTL_QUERY_DELETE","features":[468]},{"name":"CLCTL_QUERY_MAINTENANCE_MODE","features":[468]},{"name":"CLCTL_RELOAD_AUTOLOGGER_CONFIG","features":[468]},{"name":"CLCTL_REMOVE_DEPENDENCY","features":[468]},{"name":"CLCTL_REMOVE_NODE","features":[468]},{"name":"CLCTL_REMOVE_OWNER","features":[468]},{"name":"CLCTL_REPLICATION_ADD_REPLICATION_GROUP","features":[468]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[468]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[468]},{"name":"CLCTL_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[468]},{"name":"CLCTL_REPLICATION_GET_LOG_INFO","features":[468]},{"name":"CLCTL_REPLICATION_GET_LOG_VOLUME","features":[468]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_DISKS","features":[468]},{"name":"CLCTL_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[468]},{"name":"CLCTL_REPLICATION_GET_REPLICA_VOLUMES","features":[468]},{"name":"CLCTL_REPLICATION_GET_RESOURCE_GROUP","features":[468]},{"name":"CLCTL_RESOURCE_PREPARE_UPGRADE","features":[468]},{"name":"CLCTL_RESOURCE_UPGRADE_COMPLETED","features":[468]},{"name":"CLCTL_RESOURCE_UPGRADE_DLL","features":[468]},{"name":"CLCTL_RESUME_IO","features":[468]},{"name":"CLCTL_RW_MODIFY_NOOP","features":[468]},{"name":"CLCTL_SCALEOUT_COMMAND","features":[468]},{"name":"CLCTL_SCALEOUT_CONTROL","features":[468]},{"name":"CLCTL_SCALEOUT_GET_CLUSTERS","features":[468]},{"name":"CLCTL_SEND_DUMMY_GEM_MESSAGES","features":[468]},{"name":"CLCTL_SET_ACCOUNT_ACCESS","features":[468]},{"name":"CLCTL_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[468]},{"name":"CLCTL_SET_CLUSTER_S2D_ENABLED","features":[468]},{"name":"CLCTL_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLCTL_SET_CSV_MAINTENANCE_MODE","features":[468]},{"name":"CLCTL_SET_DNS_DOMAIN","features":[468]},{"name":"CLCTL_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[468]},{"name":"CLCTL_SET_MAINTENANCE_MODE","features":[468]},{"name":"CLCTL_SET_NAME","features":[468]},{"name":"CLCTL_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLCTL_SET_SHARED_VOLUME_BACKUP_MODE","features":[468]},{"name":"CLCTL_SET_STORAGE_CONFIGURATION","features":[468]},{"name":"CLCTL_SHUTDOWN","features":[468]},{"name":"CLCTL_STARTING_PHASE1","features":[468]},{"name":"CLCTL_STARTING_PHASE2","features":[468]},{"name":"CLCTL_STATE_CHANGE_REASON","features":[468]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS","features":[468]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX","features":[468]},{"name":"CLCTL_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[468]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHINFO","features":[468]},{"name":"CLCTL_STORAGE_GET_CLUSBFLT_PATHS","features":[468]},{"name":"CLCTL_STORAGE_GET_CLUSPORT_DISK_COUNT","features":[468]},{"name":"CLCTL_STORAGE_GET_DIRTY","features":[468]},{"name":"CLCTL_STORAGE_GET_DISKID","features":[468]},{"name":"CLCTL_STORAGE_GET_DISK_INFO","features":[468]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX","features":[468]},{"name":"CLCTL_STORAGE_GET_DISK_INFO_EX2","features":[468]},{"name":"CLCTL_STORAGE_GET_DISK_NUMBER_INFO","features":[468]},{"name":"CLCTL_STORAGE_GET_DRIVELETTERS","features":[468]},{"name":"CLCTL_STORAGE_GET_MOUNTPOINTS","features":[468]},{"name":"CLCTL_STORAGE_GET_PHYSICAL_DISK_INFO","features":[468]},{"name":"CLCTL_STORAGE_GET_RESOURCEID","features":[468]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_INFO","features":[468]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[468]},{"name":"CLCTL_STORAGE_GET_SHARED_VOLUME_STATES","features":[468]},{"name":"CLCTL_STORAGE_IS_CLUSTERABLE","features":[468]},{"name":"CLCTL_STORAGE_IS_CSV_FILE","features":[468]},{"name":"CLCTL_STORAGE_IS_PATH_VALID","features":[468]},{"name":"CLCTL_STORAGE_IS_SHARED_VOLUME","features":[468]},{"name":"CLCTL_STORAGE_REMAP_DRIVELETTER","features":[468]},{"name":"CLCTL_STORAGE_REMOVE_VM_OWNERSHIP","features":[468]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME","features":[468]},{"name":"CLCTL_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[468]},{"name":"CLCTL_STORAGE_SET_DRIVELETTER","features":[468]},{"name":"CLCTL_STORAGE_SYNC_CLUSDISK_DB","features":[468]},{"name":"CLCTL_UNDELETE","features":[468]},{"name":"CLCTL_UNKNOWN","features":[468]},{"name":"CLCTL_USER_SHIFT","features":[468]},{"name":"CLCTL_VALIDATE_CHANGE_GROUP","features":[468]},{"name":"CLCTL_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLCTL_VALIDATE_DIRECTORY","features":[468]},{"name":"CLCTL_VALIDATE_NETNAME","features":[468]},{"name":"CLCTL_VALIDATE_PATH","features":[468]},{"name":"CLCTL_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLOUD_WITNESS_CONTAINER_NAME","features":[468]},{"name":"CLRES_CALLBACK_FUNCTION_TABLE","features":[305,468]},{"name":"CLRES_FUNCTION_TABLE","features":[305,468,366]},{"name":"CLRES_V1_FUNCTIONS","features":[305,468,366]},{"name":"CLRES_V2_FUNCTIONS","features":[305,468,366]},{"name":"CLRES_V3_FUNCTIONS","features":[305,468,366]},{"name":"CLRES_V4_FUNCTIONS","features":[305,468,366]},{"name":"CLRES_VERSION_V1_00","features":[468]},{"name":"CLRES_VERSION_V2_00","features":[468]},{"name":"CLRES_VERSION_V3_00","features":[468]},{"name":"CLRES_VERSION_V4_00","features":[468]},{"name":"CLUADMEX_OBJECT_TYPE","features":[468]},{"name":"CLUADMEX_OT_CLUSTER","features":[468]},{"name":"CLUADMEX_OT_GROUP","features":[468]},{"name":"CLUADMEX_OT_NETINTERFACE","features":[468]},{"name":"CLUADMEX_OT_NETWORK","features":[468]},{"name":"CLUADMEX_OT_NODE","features":[468]},{"name":"CLUADMEX_OT_NONE","features":[468]},{"name":"CLUADMEX_OT_RESOURCE","features":[468]},{"name":"CLUADMEX_OT_RESOURCETYPE","features":[468]},{"name":"CLUSAPI_CHANGE_ACCESS","features":[468]},{"name":"CLUSAPI_CHANGE_RESOURCE_GROUP_FORCE_MOVE_TO_CSV","features":[468]},{"name":"CLUSAPI_GROUP_MOVE_FAILBACK","features":[468]},{"name":"CLUSAPI_GROUP_MOVE_HIGH_PRIORITY_START","features":[468]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_AFFINITY_RULE","features":[468]},{"name":"CLUSAPI_GROUP_MOVE_IGNORE_RESOURCE_STATUS","features":[468]},{"name":"CLUSAPI_GROUP_MOVE_QUEUE_ENABLED","features":[468]},{"name":"CLUSAPI_GROUP_MOVE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[468]},{"name":"CLUSAPI_GROUP_OFFLINE_IGNORE_RESOURCE_STATUS","features":[468]},{"name":"CLUSAPI_GROUP_ONLINE_BEST_POSSIBLE_NODE","features":[468]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_AFFINITY_RULE","features":[468]},{"name":"CLUSAPI_GROUP_ONLINE_IGNORE_RESOURCE_STATUS","features":[468]},{"name":"CLUSAPI_GROUP_ONLINE_SYNCHRONOUS","features":[468]},{"name":"CLUSAPI_NODE_AVOID_PLACEMENT","features":[468]},{"name":"CLUSAPI_NODE_PAUSE_REMAIN_ON_PAUSED_NODE_ON_MOVE_ERROR","features":[468]},{"name":"CLUSAPI_NODE_PAUSE_RETRY_DRAIN_ON_FAILURE","features":[468]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_PINNED_VMS_ONLY","features":[468]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_STORAGE","features":[468]},{"name":"CLUSAPI_NODE_RESUME_FAILBACK_VMS","features":[468]},{"name":"CLUSAPI_NO_ACCESS","features":[468]},{"name":"CLUSAPI_READ_ACCESS","features":[468]},{"name":"CLUSAPI_REASON_HANDLER","features":[305,468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_FORCE_WITH_TERMINATION","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_IGNORE_RESOURCE_STATUS","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_DELETED","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_BEING_RESTARTED","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_MOVING","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_NONE","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_PREEMPTED","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_SHUTTING_DOWN","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_UNKNOWN","features":[468]},{"name":"CLUSAPI_RESOURCE_OFFLINE_REASON_USER_REQUESTED","features":[468]},{"name":"CLUSAPI_RESOURCE_ONLINE_BEST_POSSIBLE_NODE","features":[468]},{"name":"CLUSAPI_RESOURCE_ONLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[468]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_AFFINITY_RULE","features":[468]},{"name":"CLUSAPI_RESOURCE_ONLINE_IGNORE_RESOURCE_STATUS","features":[468]},{"name":"CLUSAPI_RESOURCE_ONLINE_NECESSARY_FOR_QUORUM","features":[468]},{"name":"CLUSAPI_VALID_CHANGE_RESOURCE_GROUP_FLAGS","features":[468]},{"name":"CLUSAPI_VERSION","features":[468]},{"name":"CLUSAPI_VERSION_NI","features":[468]},{"name":"CLUSAPI_VERSION_RS3","features":[468]},{"name":"CLUSAPI_VERSION_SERVER2008","features":[468]},{"name":"CLUSAPI_VERSION_SERVER2008R2","features":[468]},{"name":"CLUSAPI_VERSION_WINDOWS8","features":[468]},{"name":"CLUSAPI_VERSION_WINDOWSBLUE","features":[468]},{"name":"CLUSAPI_VERSION_WINTHRESHOLD","features":[468]},{"name":"CLUSCTL_ACCESS_MODE_MASK","features":[468]},{"name":"CLUSCTL_ACCESS_SHIFT","features":[468]},{"name":"CLUSCTL_AFFINITYRULE_CODES","features":[468]},{"name":"CLUSCTL_AFFINITYRULE_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_AFFINITYRULE_GET_GROUPNAMES","features":[468]},{"name":"CLUSCTL_AFFINITYRULE_GET_ID","features":[468]},{"name":"CLUSCTL_AFFINITYRULE_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_AFFINITYRULE_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS","features":[468]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_TYPE_VALIDATE_CREDENTIALS_WITH_KEY","features":[468]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_KEY","features":[468]},{"name":"CLUSCTL_CLOUD_WITNESS_RESOURCE_UPDATE_TOKEN","features":[468]},{"name":"CLUSCTL_CLUSTER_BATCH_BLOCK_KEY","features":[468]},{"name":"CLUSCTL_CLUSTER_BATCH_UNBLOCK_KEY","features":[468]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN","features":[468]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_DOWN_WITNESS","features":[468]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT","features":[468]},{"name":"CLUSCTL_CLUSTER_CHECK_VOTER_EVICT_WITNESS","features":[468]},{"name":"CLUSCTL_CLUSTER_CLEAR_NODE_CONNECTION_INFO","features":[468]},{"name":"CLUSCTL_CLUSTER_CODES","features":[468]},{"name":"CLUSCTL_CLUSTER_ENUM_AFFINITY_RULE_NAMES","features":[468]},{"name":"CLUSCTL_CLUSTER_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_FORCE_FLUSH_DB","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_CLMUSR_TOKEN","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_CLUSDB_TIMESTAMP","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_FQDN","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_GUM_LOCK_OWNER","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_NODES_IN_FD","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_SHARED_VOLUME_ID","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIGURATION","features":[468]},{"name":"CLUSCTL_CLUSTER_GET_STORAGE_CONFIG_ATTRIBUTES","features":[468]},{"name":"CLUSCTL_CLUSTER_RELOAD_AUTOLOGGER_CONFIG","features":[468]},{"name":"CLUSCTL_CLUSTER_REMOVE_NODE","features":[468]},{"name":"CLUSCTL_CLUSTER_SET_ACCOUNT_ACCESS","features":[468]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_CACHE_METADATA_RESERVE_BYTES","features":[468]},{"name":"CLUSCTL_CLUSTER_SET_CLUSTER_S2D_ENABLED","features":[468]},{"name":"CLUSCTL_CLUSTER_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_SET_DNS_DOMAIN","features":[468]},{"name":"CLUSCTL_CLUSTER_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_SET_STORAGE_CONFIGURATION","features":[468]},{"name":"CLUSCTL_CLUSTER_SHUTDOWN","features":[468]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME","features":[468]},{"name":"CLUSCTL_CLUSTER_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[468]},{"name":"CLUSCTL_CLUSTER_UNKNOWN","features":[468]},{"name":"CLUSCTL_CLUSTER_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_CLUSTER_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_CONTROL_CODE_MASK","features":[468]},{"name":"CLUSCTL_FUNCTION_SHIFT","features":[468]},{"name":"CLUSCTL_GET_OPERATION_CONTEXT_PARAMS_VERSION_1","features":[468]},{"name":"CLUSCTL_GROUPSET_CODES","features":[468]},{"name":"CLUSCTL_GROUPSET_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUPSET_GET_GROUPS","features":[468]},{"name":"CLUSCTL_GROUPSET_GET_ID","features":[468]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPS","features":[468]},{"name":"CLUSCTL_GROUPSET_GET_PROVIDER_GROUPSETS","features":[468]},{"name":"CLUSCTL_GROUPSET_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUPSET_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_CODES","features":[468]},{"name":"CLUSCTL_GROUP_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_GET_CHARACTERISTICS","features":[468]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_GROUP_GET_FAILURE_INFO","features":[468]},{"name":"CLUSCTL_GROUP_GET_FLAGS","features":[468]},{"name":"CLUSCTL_GROUP_GET_ID","features":[468]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME","features":[468]},{"name":"CLUSCTL_GROUP_GET_LAST_MOVE_TIME_OUTPUT","features":[305,468]},{"name":"CLUSCTL_GROUP_GET_NAME","features":[468]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPS","features":[468]},{"name":"CLUSCTL_GROUP_GET_PROVIDER_GROUPSETS","features":[468]},{"name":"CLUSCTL_GROUP_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_QUERY_DELETE","features":[468]},{"name":"CLUSCTL_GROUP_SET_CCF_FROM_MASTER","features":[468]},{"name":"CLUSCTL_GROUP_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_UNKNOWN","features":[468]},{"name":"CLUSCTL_GROUP_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_GROUP_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_CODES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_CHARACTERISTICS","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_FLAGS","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_ID","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_NAME","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_NETWORK","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_NODE","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_UNKNOWN","features":[468]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETINTERFACE_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_CODES","features":[468]},{"name":"CLUSCTL_NETWORK_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_GET_CHARACTERISTICS","features":[468]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_NETWORK_GET_FLAGS","features":[468]},{"name":"CLUSCTL_NETWORK_GET_ID","features":[468]},{"name":"CLUSCTL_NETWORK_GET_NAME","features":[468]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_NETWORK_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_UNKNOWN","features":[468]},{"name":"CLUSCTL_NETWORK_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NETWORK_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_BLOCK_GEM_SEND_RECV","features":[468]},{"name":"CLUSCTL_NODE_CODES","features":[468]},{"name":"CLUSCTL_NODE_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_GET_CHARACTERISTICS","features":[468]},{"name":"CLUSCTL_NODE_GET_CLUSTER_SERVICE_ACCOUNT_NAME","features":[468]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_NODE_GET_FLAGS","features":[468]},{"name":"CLUSCTL_NODE_GET_GEMID_VECTOR","features":[468]},{"name":"CLUSCTL_NODE_GET_ID","features":[468]},{"name":"CLUSCTL_NODE_GET_NAME","features":[468]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_NODE_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_GET_STUCK_NODES","features":[468]},{"name":"CLUSCTL_NODE_INJECT_GEM_FAULT","features":[468]},{"name":"CLUSCTL_NODE_INTRODUCE_GEM_REPAIR_DELAY","features":[468]},{"name":"CLUSCTL_NODE_SEND_DUMMY_GEM_MESSAGES","features":[468]},{"name":"CLUSCTL_NODE_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_UNKNOWN","features":[468]},{"name":"CLUSCTL_NODE_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_NODE_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_OBJECT_MASK","features":[468]},{"name":"CLUSCTL_OBJECT_SHIFT","features":[468]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT","features":[468]},{"name":"CLUSCTL_RESOURCE_ADD_CRYPTO_CHECKPOINT_EX","features":[468]},{"name":"CLUSCTL_RESOURCE_ADD_DEPENDENCY","features":[468]},{"name":"CLUSCTL_RESOURCE_ADD_OWNER","features":[468]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT","features":[468]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_32BIT","features":[468]},{"name":"CLUSCTL_RESOURCE_ADD_REGISTRY_CHECKPOINT_64BIT","features":[468]},{"name":"CLUSCTL_RESOURCE_CHECK_DRAIN_VETO","features":[468]},{"name":"CLUSCTL_RESOURCE_CLUSTER_NAME_CHANGED","features":[468]},{"name":"CLUSCTL_RESOURCE_CLUSTER_VERSION_CHANGED","features":[468]},{"name":"CLUSCTL_RESOURCE_CODES","features":[468]},{"name":"CLUSCTL_RESOURCE_DELETE","features":[468]},{"name":"CLUSCTL_RESOURCE_DELETE_CRYPTO_CHECKPOINT","features":[468]},{"name":"CLUSCTL_RESOURCE_DELETE_REGISTRY_CHECKPOINT","features":[468]},{"name":"CLUSCTL_RESOURCE_DISABLE_SHARED_VOLUME_DIRECTIO","features":[468]},{"name":"CLUSCTL_RESOURCE_ENABLE_SHARED_VOLUME_DIRECTIO","features":[468]},{"name":"CLUSCTL_RESOURCE_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_EVICT_NODE","features":[468]},{"name":"CLUSCTL_RESOURCE_FORCE_QUORUM","features":[468]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_GET_EPOCH_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_RELEASE_LOCK","features":[468]},{"name":"CLUSCTL_RESOURCE_FSWITNESS_SET_EPOCH_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_CHARACTERISTICS","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_CLASS_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_CRYPTO_CHECKPOINTS","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_DNS_NAME","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_FAILURE_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_FLAGS","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_ID","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_INFRASTRUCTURE_SOFS_BUFFER","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_LOADBAL_PROCESS_LIST","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_NAME","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_NETWORK_NAME","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_NODES_IN_FD","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_OPERATION_CONTEXT","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_REGISTRY_CHECKPOINTS","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_REQUIRED_DEPENDENCIES","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_RESOURCE_TYPE","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_GET_STATE_CHANGE_TIME","features":[468]},{"name":"CLUSCTL_RESOURCE_INITIALIZE","features":[468]},{"name":"CLUSCTL_RESOURCE_INSTALL_NODE","features":[468]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RELEASE_LEASE","features":[468]},{"name":"CLUSCTL_RESOURCE_IPADDRESS_RENEW_LEASE","features":[468]},{"name":"CLUSCTL_RESOURCE_IS_QUORUM_BLOCKED","features":[468]},{"name":"CLUSCTL_RESOURCE_JOINING_GROUP","features":[468]},{"name":"CLUSCTL_RESOURCE_LEAVING_GROUP","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_CREDS_NOTIFYCAM","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_DELETE_CO","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_GET_VIRTUAL_SERVER_TOKEN","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_REGISTER_DNS_RECORDS","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_REPAIR_VCO","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_RESET_VCO","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_SET_PWD_INFOEX","features":[468]},{"name":"CLUSCTL_RESOURCE_NETNAME_VALIDATE_VCO","features":[468]},{"name":"CLUSCTL_RESOURCE_NOTIFY_DRAIN_COMPLETE","features":[468]},{"name":"CLUSCTL_RESOURCE_NOTIFY_OWNER_CHANGE","features":[468]},{"name":"CLUSCTL_RESOURCE_NOTIFY_QUORUM_STATUS","features":[468]},{"name":"CLUSCTL_RESOURCE_POOL_GET_DRIVE_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_PREPARE_UPGRADE","features":[468]},{"name":"CLUSCTL_RESOURCE_PROVIDER_STATE_CHANGE","features":[468]},{"name":"CLUSCTL_RESOURCE_QUERY_DELETE","features":[468]},{"name":"CLUSCTL_RESOURCE_QUERY_MAINTENANCE_MODE","features":[468]},{"name":"CLUSCTL_RESOURCE_REMOVE_DEPENDENCY","features":[468]},{"name":"CLUSCTL_RESOURCE_REMOVE_OWNER","features":[468]},{"name":"CLUSCTL_RESOURCE_RLUA_GET_VIRTUAL_SERVER_TOKEN","features":[468]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_RLUA_SET_PWD_INFOEX","features":[468]},{"name":"CLUSCTL_RESOURCE_RW_MODIFY_NOOP","features":[468]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_COMMAND","features":[468]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_CONTROL","features":[468]},{"name":"CLUSCTL_RESOURCE_SCALEOUT_GET_CLUSTERS","features":[468]},{"name":"CLUSCTL_RESOURCE_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_SET_CSV_MAINTENANCE_MODE","features":[468]},{"name":"CLUSCTL_RESOURCE_SET_INFRASTRUCTURE_SOFS_BUFFER","features":[468]},{"name":"CLUSCTL_RESOURCE_SET_MAINTENANCE_MODE","features":[468]},{"name":"CLUSCTL_RESOURCE_SET_NAME","features":[468]},{"name":"CLUSCTL_RESOURCE_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_SET_SHARED_VOLUME_BACKUP_MODE","features":[468]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON","features":[468]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_STRUCT","features":[468]},{"name":"CLUSCTL_RESOURCE_STATE_CHANGE_REASON_VERSION_1","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DIRTY","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISKID","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO_EX2","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_DISK_NUMBER_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_MOUNTPOINTS","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_PARTITION_NAMES","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_GET_SHARED_VOLUME_STATES","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_PATH_VALID","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_IS_SHARED_VOLUME","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_RENAME_SHARED_VOLUME_GUID","features":[468]},{"name":"CLUSCTL_RESOURCE_STORAGE_SET_DRIVELETTER","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_CHECK_DRAIN_VETO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_CLUSTER_VERSION_CHANGED","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_CODES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_ENUM_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_EVICT_NODE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_FIXUP_ON_UPGRADE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_DIRECTORY","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_APP_VALIDATE_PATH","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GEN_SCRIPT_VALIDATE_PATH","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_ARB_TIMEOUT","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CHARACTERISTICS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CLASS_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_COMMON_RESOURCE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_CRYPTO_CHECKPOINTS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_FLAGS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_PRIVATE_RESOURCE_PROPERTY_FMTS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REGISTRY_CHECKPOINTS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_REQUIRED_DEPENDENCIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_GET_RO_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_HOLD_IO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_INSTALL_NODE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_GET_OU_FOR_VCO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_NETNAME_VALIDATE_NETNAME","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_DRAIN_COMPLETE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_NOTIFY_MONITOR_SHUTTING_DOWN","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_PREPARE_UPGRADE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_QUERY_DELETE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_ADD_REPLICATION_GROUP","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_LOGDISKS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_SOURCE_DATADISKS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_ELIGIBLE_TARGET_DATADISKS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_LOG_VOLUME","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_DISKS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICATED_PARTITION_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_REPLICA_VOLUMES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_REPLICATION_GET_RESOURCE_GROUP","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_RESUME_IO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_SET_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_ADD_VOLUME_INFO","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_FILTER_BY_POOL","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_FLAG_INCLUDE_NON_SHARED_DISKS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INPUT","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS_EX2_INT","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DISKID","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_DRIVELETTERS","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_GET_RESOURCEID","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CLUSTERABLE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_IS_CSV_FILE","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMAP_DRIVELETTER","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_REMOVE_VM_OWNERSHIP","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_STORAGE_SYNC_CLUSDISK_DB","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_UNKNOWN","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_UPGRADE_COMPLETED","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_TYPE_WITNESS_VALIDATE_PATH","features":[468]},{"name":"CLUSCTL_RESOURCE_UNDELETE","features":[468]},{"name":"CLUSCTL_RESOURCE_UNKNOWN","features":[468]},{"name":"CLUSCTL_RESOURCE_UPGRADE_COMPLETED","features":[468]},{"name":"CLUSCTL_RESOURCE_UPGRADE_DLL","features":[468]},{"name":"CLUSCTL_RESOURCE_VALIDATE_CHANGE_GROUP","features":[468]},{"name":"CLUSCTL_RESOURCE_VALIDATE_COMMON_PROPERTIES","features":[468]},{"name":"CLUSCTL_RESOURCE_VALIDATE_PRIVATE_PROPERTIES","features":[468]},{"name":"CLUSGROUPSET_STATUS_APPLICATION_READY","features":[468]},{"name":"CLUSGROUPSET_STATUS_GROUPS_ONLINE","features":[468]},{"name":"CLUSGROUPSET_STATUS_GROUPS_PENDING","features":[468]},{"name":"CLUSGROUPSET_STATUS_OS_HEARTBEAT","features":[468]},{"name":"CLUSGROUP_TYPE","features":[468]},{"name":"CLUSGRP_STATUS_APPLICATION_READY","features":[468]},{"name":"CLUSGRP_STATUS_EMBEDDED_FAILURE","features":[468]},{"name":"CLUSGRP_STATUS_LOCKED_MODE","features":[468]},{"name":"CLUSGRP_STATUS_NETWORK_FAILURE","features":[468]},{"name":"CLUSGRP_STATUS_OFFLINE_DUE_TO_ANTIAFFINITY_CONFLICT","features":[468]},{"name":"CLUSGRP_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[468]},{"name":"CLUSGRP_STATUS_OS_HEARTBEAT","features":[468]},{"name":"CLUSGRP_STATUS_PHYSICAL_RESOURCES_LACKING","features":[468]},{"name":"CLUSGRP_STATUS_PREEMPTED","features":[468]},{"name":"CLUSGRP_STATUS_UNMONITORED","features":[468]},{"name":"CLUSGRP_STATUS_WAITING_FOR_DEPENDENCIES","features":[468]},{"name":"CLUSGRP_STATUS_WAITING_IN_QUEUE_FOR_MOVE","features":[468]},{"name":"CLUSGRP_STATUS_WAITING_TO_START","features":[468]},{"name":"CLUSPROP_BINARY","features":[468]},{"name":"CLUSPROP_BUFFER_HELPER","features":[305,468,308]},{"name":"CLUSPROP_DWORD","features":[468]},{"name":"CLUSPROP_FILETIME","features":[305,468]},{"name":"CLUSPROP_FORMAT_BINARY","features":[468]},{"name":"CLUSPROP_FORMAT_DWORD","features":[468]},{"name":"CLUSPROP_FORMAT_EXPANDED_SZ","features":[468]},{"name":"CLUSPROP_FORMAT_EXPAND_SZ","features":[468]},{"name":"CLUSPROP_FORMAT_FILETIME","features":[468]},{"name":"CLUSPROP_FORMAT_LARGE_INTEGER","features":[468]},{"name":"CLUSPROP_FORMAT_LONG","features":[468]},{"name":"CLUSPROP_FORMAT_MULTI_SZ","features":[468]},{"name":"CLUSPROP_FORMAT_PROPERTY_LIST","features":[468]},{"name":"CLUSPROP_FORMAT_SECURITY_DESCRIPTOR","features":[468]},{"name":"CLUSPROP_FORMAT_SZ","features":[468]},{"name":"CLUSPROP_FORMAT_ULARGE_INTEGER","features":[468]},{"name":"CLUSPROP_FORMAT_UNKNOWN","features":[468]},{"name":"CLUSPROP_FORMAT_USER","features":[468]},{"name":"CLUSPROP_FORMAT_VALUE_LIST","features":[468]},{"name":"CLUSPROP_FORMAT_WORD","features":[468]},{"name":"CLUSPROP_FTSET_INFO","features":[468]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS","features":[468]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_DISABLED","features":[468]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_ENABLED","features":[468]},{"name":"CLUSPROP_IPADDR_ENABLENETBIOS_TRACK_NIC","features":[468]},{"name":"CLUSPROP_LARGE_INTEGER","features":[468]},{"name":"CLUSPROP_LIST","features":[468]},{"name":"CLUSPROP_LONG","features":[468]},{"name":"CLUSPROP_PARTITION_INFO","features":[468]},{"name":"CLUSPROP_PARTITION_INFO_EX","features":[468]},{"name":"CLUSPROP_PARTITION_INFO_EX2","features":[468]},{"name":"CLUSPROP_PIFLAGS","features":[468]},{"name":"CLUSPROP_PIFLAG_DEFAULT_QUORUM","features":[468]},{"name":"CLUSPROP_PIFLAG_ENCRYPTION_ENABLED","features":[468]},{"name":"CLUSPROP_PIFLAG_RAW","features":[468]},{"name":"CLUSPROP_PIFLAG_REMOVABLE","features":[468]},{"name":"CLUSPROP_PIFLAG_STICKY","features":[468]},{"name":"CLUSPROP_PIFLAG_UNKNOWN","features":[468]},{"name":"CLUSPROP_PIFLAG_USABLE","features":[468]},{"name":"CLUSPROP_PIFLAG_USABLE_FOR_CSV","features":[468]},{"name":"CLUSPROP_REQUIRED_DEPENDENCY","features":[468]},{"name":"CLUSPROP_RESOURCE_CLASS","features":[468]},{"name":"CLUSPROP_RESOURCE_CLASS_INFO","features":[468]},{"name":"CLUSPROP_SCSI_ADDRESS","features":[468]},{"name":"CLUSPROP_SECURITY_DESCRIPTOR","features":[468,308]},{"name":"CLUSPROP_SYNTAX","features":[468]},{"name":"CLUSPROP_SYNTAX_DISK_GUID","features":[468]},{"name":"CLUSPROP_SYNTAX_DISK_NUMBER","features":[468]},{"name":"CLUSPROP_SYNTAX_DISK_SERIALNUMBER","features":[468]},{"name":"CLUSPROP_SYNTAX_DISK_SIGNATURE","features":[468]},{"name":"CLUSPROP_SYNTAX_DISK_SIZE","features":[468]},{"name":"CLUSPROP_SYNTAX_ENDMARK","features":[468]},{"name":"CLUSPROP_SYNTAX_FTSET_INFO","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_BINARY","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_DWORD","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPANDED_SZ","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_EXPAND_SZ","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_FILETIME","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LARGE_INTEGER","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_LONG","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_MULTI_SZ","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_PROPERTY_LIST","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SECURITY_DESCRIPTOR","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_SZ","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_ULARGE_INTEGER","features":[468]},{"name":"CLUSPROP_SYNTAX_LIST_VALUE_WORD","features":[468]},{"name":"CLUSPROP_SYNTAX_NAME","features":[468]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO","features":[468]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX","features":[468]},{"name":"CLUSPROP_SYNTAX_PARTITION_INFO_EX2","features":[468]},{"name":"CLUSPROP_SYNTAX_RESCLASS","features":[468]},{"name":"CLUSPROP_SYNTAX_SCSI_ADDRESS","features":[468]},{"name":"CLUSPROP_SYNTAX_STORAGE_DEVICE_ID_DESCRIPTOR","features":[468]},{"name":"CLUSPROP_SZ","features":[468]},{"name":"CLUSPROP_TYPE_DISK_GUID","features":[468]},{"name":"CLUSPROP_TYPE_DISK_NUMBER","features":[468]},{"name":"CLUSPROP_TYPE_DISK_SERIALNUMBER","features":[468]},{"name":"CLUSPROP_TYPE_DISK_SIZE","features":[468]},{"name":"CLUSPROP_TYPE_ENDMARK","features":[468]},{"name":"CLUSPROP_TYPE_FTSET_INFO","features":[468]},{"name":"CLUSPROP_TYPE_LIST_VALUE","features":[468]},{"name":"CLUSPROP_TYPE_NAME","features":[468]},{"name":"CLUSPROP_TYPE_PARTITION_INFO","features":[468]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX","features":[468]},{"name":"CLUSPROP_TYPE_PARTITION_INFO_EX2","features":[468]},{"name":"CLUSPROP_TYPE_RESCLASS","features":[468]},{"name":"CLUSPROP_TYPE_RESERVED1","features":[468]},{"name":"CLUSPROP_TYPE_SCSI_ADDRESS","features":[468]},{"name":"CLUSPROP_TYPE_SIGNATURE","features":[468]},{"name":"CLUSPROP_TYPE_STORAGE_DEVICE_ID_DESCRIPTOR","features":[468]},{"name":"CLUSPROP_TYPE_UNKNOWN","features":[468]},{"name":"CLUSPROP_TYPE_USER","features":[468]},{"name":"CLUSPROP_ULARGE_INTEGER","features":[468]},{"name":"CLUSPROP_VALUE","features":[468]},{"name":"CLUSPROP_WORD","features":[468]},{"name":"CLUSREG_COMMAND_NONE","features":[468]},{"name":"CLUSREG_CONDITION_EXISTS","features":[468]},{"name":"CLUSREG_CONDITION_IS_EQUAL","features":[468]},{"name":"CLUSREG_CONDITION_IS_GREATER_THAN","features":[468]},{"name":"CLUSREG_CONDITION_IS_LESS_THAN","features":[468]},{"name":"CLUSREG_CONDITION_IS_NOT_EQUAL","features":[468]},{"name":"CLUSREG_CONDITION_KEY_EXISTS","features":[468]},{"name":"CLUSREG_CONDITION_KEY_NOT_EXISTS","features":[468]},{"name":"CLUSREG_CONDITION_NOT_EXISTS","features":[468]},{"name":"CLUSREG_CONTROL_COMMAND","features":[468]},{"name":"CLUSREG_CREATE_KEY","features":[468]},{"name":"CLUSREG_DATABASE_ISOLATE_READ","features":[468]},{"name":"CLUSREG_DATABASE_SYNC_WRITE_TO_ALL_NODES","features":[468]},{"name":"CLUSREG_DELETE_KEY","features":[468]},{"name":"CLUSREG_DELETE_VALUE","features":[468]},{"name":"CLUSREG_KEYNAME_OBJECTGUIDS","features":[468]},{"name":"CLUSREG_LAST_COMMAND","features":[468]},{"name":"CLUSREG_NAME_AFFINITYRULE_ENABLED","features":[468]},{"name":"CLUSREG_NAME_AFFINITYRULE_GROUPS","features":[468]},{"name":"CLUSREG_NAME_AFFINITYRULE_NAME","features":[468]},{"name":"CLUSREG_NAME_AFFINITYRULE_TYPE","features":[468]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ACCOUNT_NAME","features":[468]},{"name":"CLUSREG_NAME_CLOUDWITNESS_CONTAINER_NAME","features":[468]},{"name":"CLUSREG_NAME_CLOUDWITNESS_ENDPOINT_INFO","features":[468]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_KEY","features":[468]},{"name":"CLUSREG_NAME_CLOUDWITNESS_PRIMARY_TOKEN","features":[468]},{"name":"CLUSREG_NAME_CLUS_DEFAULT_NETWORK_ROLE","features":[468]},{"name":"CLUSREG_NAME_CLUS_DESC","features":[468]},{"name":"CLUSREG_NAME_CLUS_SD","features":[468]},{"name":"CLUSREG_NAME_CROSS_SITE_DELAY","features":[468]},{"name":"CLUSREG_NAME_CROSS_SITE_THRESHOLD","features":[468]},{"name":"CLUSREG_NAME_CROSS_SUBNET_DELAY","features":[468]},{"name":"CLUSREG_NAME_CROSS_SUBNET_THRESHOLD","features":[468]},{"name":"CLUSREG_NAME_CSV_BLOCK_CACHE","features":[468]},{"name":"CLUSREG_NAME_CSV_MDS_SD","features":[468]},{"name":"CLUSREG_NAME_DATABASE_READ_WRITE_MODE","features":[468]},{"name":"CLUSREG_NAME_DDA_DEVICE_ALLOCATIONS","features":[468]},{"name":"CLUSREG_NAME_DHCP_BACKUP_PATH","features":[468]},{"name":"CLUSREG_NAME_DHCP_DATABASE_PATH","features":[468]},{"name":"CLUSREG_NAME_DRAIN_ON_SHUTDOWN","features":[468]},{"name":"CLUSREG_NAME_ENABLED_EVENT_LOGS","features":[468]},{"name":"CLUSREG_NAME_FAILOVER_MOVE_MIGRATION_TYPE","features":[468]},{"name":"CLUSREG_NAME_FILESHR_CA_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_FILESHR_HIDE_SUBDIR_SHARES","features":[468]},{"name":"CLUSREG_NAME_FILESHR_IS_DFS_ROOT","features":[468]},{"name":"CLUSREG_NAME_FILESHR_MAX_USERS","features":[468]},{"name":"CLUSREG_NAME_FILESHR_PATH","features":[468]},{"name":"CLUSREG_NAME_FILESHR_QOS_FLOWSCOPE","features":[468]},{"name":"CLUSREG_NAME_FILESHR_QOS_POLICYID","features":[468]},{"name":"CLUSREG_NAME_FILESHR_REMARK","features":[468]},{"name":"CLUSREG_NAME_FILESHR_SD","features":[468]},{"name":"CLUSREG_NAME_FILESHR_SERVER_NAME","features":[468]},{"name":"CLUSREG_NAME_FILESHR_SHARE_FLAGS","features":[468]},{"name":"CLUSREG_NAME_FILESHR_SHARE_NAME","features":[468]},{"name":"CLUSREG_NAME_FILESHR_SHARE_SUBDIRS","features":[468]},{"name":"CLUSREG_NAME_FIXQUORUM","features":[468]},{"name":"CLUSREG_NAME_FSWITNESS_ARB_DELAY","features":[468]},{"name":"CLUSREG_NAME_FSWITNESS_IMPERSONATE_CNO","features":[468]},{"name":"CLUSREG_NAME_FSWITNESS_SHARE_PATH","features":[468]},{"name":"CLUSREG_NAME_FUNCTIONAL_LEVEL","features":[468]},{"name":"CLUSREG_NAME_GENAPP_COMMAND_LINE","features":[468]},{"name":"CLUSREG_NAME_GENAPP_CURRENT_DIRECTORY","features":[468]},{"name":"CLUSREG_NAME_GENAPP_USE_NETWORK_NAME","features":[468]},{"name":"CLUSREG_NAME_GENSCRIPT_SCRIPT_FILEPATH","features":[468]},{"name":"CLUSREG_NAME_GENSVC_SERVICE_NAME","features":[468]},{"name":"CLUSREG_NAME_GENSVC_STARTUP_PARAMS","features":[468]},{"name":"CLUSREG_NAME_GENSVC_USE_NETWORK_NAME","features":[468]},{"name":"CLUSREG_NAME_GPUP_DEVICE_ALLOCATIONS","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_AVAILABILITY_SET_INDEX_TO_NODE_MAPPING","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_FAULT_DOMAINS","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_IS_AVAILABILITY_SET","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_IS_GLOBAL","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_NAME","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_RESERVE_NODE","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_COUNT","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_DELAY","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_STARTUP_SETTING","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_STATUS_INFORMATION","features":[468]},{"name":"CLUSREG_NAME_GROUPSET_UPDATE_DOMAINS","features":[468]},{"name":"CLUSREG_NAME_GROUP_DEPENDENCY_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_GRP_ANTI_AFFINITY_CLASS_NAME","features":[468]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH","features":[468]},{"name":"CLUSREG_NAME_GRP_CCF_EPOCH_HIGH","features":[468]},{"name":"CLUSREG_NAME_GRP_COLD_START_SETTING","features":[468]},{"name":"CLUSREG_NAME_GRP_DEFAULT_OWNER","features":[468]},{"name":"CLUSREG_NAME_GRP_DESC","features":[468]},{"name":"CLUSREG_NAME_GRP_FAILBACK_TYPE","features":[468]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_END","features":[468]},{"name":"CLUSREG_NAME_GRP_FAILBACK_WIN_START","features":[468]},{"name":"CLUSREG_NAME_GRP_FAILOVER_PERIOD","features":[468]},{"name":"CLUSREG_NAME_GRP_FAILOVER_THRESHOLD","features":[468]},{"name":"CLUSREG_NAME_GRP_FAULT_DOMAIN","features":[468]},{"name":"CLUSREG_NAME_GRP_LOCK_MOVE","features":[468]},{"name":"CLUSREG_NAME_GRP_NAME","features":[468]},{"name":"CLUSREG_NAME_GRP_PERSISTENT_STATE","features":[468]},{"name":"CLUSREG_NAME_GRP_PLACEMENT_OPTIONS","features":[468]},{"name":"CLUSREG_NAME_GRP_PREFERRED_SITE","features":[468]},{"name":"CLUSREG_NAME_GRP_PRIORITY","features":[468]},{"name":"CLUSREG_NAME_GRP_RESILIENCY_PERIOD","features":[468]},{"name":"CLUSREG_NAME_GRP_START_DELAY","features":[468]},{"name":"CLUSREG_NAME_GRP_STATUS_INFORMATION","features":[468]},{"name":"CLUSREG_NAME_GRP_TYPE","features":[468]},{"name":"CLUSREG_NAME_GRP_UPDATE_DOMAIN","features":[468]},{"name":"CLUSREG_NAME_IGNORE_PERSISTENT_STATE","features":[468]},{"name":"CLUSREG_NAME_IPADDR_ADDRESS","features":[468]},{"name":"CLUSREG_NAME_IPADDR_DHCP_ADDRESS","features":[468]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SERVER","features":[468]},{"name":"CLUSREG_NAME_IPADDR_DHCP_SUBNET_MASK","features":[468]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_DHCP","features":[468]},{"name":"CLUSREG_NAME_IPADDR_ENABLE_NETBIOS","features":[468]},{"name":"CLUSREG_NAME_IPADDR_LEASE_OBTAINED_TIME","features":[468]},{"name":"CLUSREG_NAME_IPADDR_LEASE_TERMINATES_TIME","features":[468]},{"name":"CLUSREG_NAME_IPADDR_NETWORK","features":[468]},{"name":"CLUSREG_NAME_IPADDR_OVERRIDE_ADDRMATCH","features":[468]},{"name":"CLUSREG_NAME_IPADDR_PROBE_FAILURE_THRESHOLD","features":[468]},{"name":"CLUSREG_NAME_IPADDR_PROBE_PORT","features":[468]},{"name":"CLUSREG_NAME_IPADDR_SHARED_NETNAME","features":[468]},{"name":"CLUSREG_NAME_IPADDR_SUBNET_MASK","features":[468]},{"name":"CLUSREG_NAME_IPADDR_T1","features":[468]},{"name":"CLUSREG_NAME_IPADDR_T2","features":[468]},{"name":"CLUSREG_NAME_IPV6_NATIVE_ADDRESS","features":[468]},{"name":"CLUSREG_NAME_IPV6_NATIVE_NETWORK","features":[468]},{"name":"CLUSREG_NAME_IPV6_NATIVE_PREFIX_LENGTH","features":[468]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_ADDRESS","features":[468]},{"name":"CLUSREG_NAME_IPV6_TUNNEL_TUNNELTYPE","features":[468]},{"name":"CLUSREG_NAME_LAST_RECENT_EVENTS_RESET_TIME","features":[468]},{"name":"CLUSREG_NAME_LOG_FILE_PATH","features":[468]},{"name":"CLUSREG_NAME_MESSAGE_BUFFER_LENGTH","features":[468]},{"name":"CLUSREG_NAME_MIXED_MODE","features":[468]},{"name":"CLUSREG_NAME_NETFT_IPSEC_ENABLED","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_ID","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_ADAPTER_NAME","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_ADDRESS","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_DESC","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_DHCP_ENABLED","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_IPV4_ADDRESSES","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_IPV6_ADDRESSES","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_NAME","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_NETWORK","features":[468]},{"name":"CLUSREG_NAME_NETIFACE_NODE","features":[468]},{"name":"CLUSREG_NAME_NETNAME_AD_AWARE","features":[468]},{"name":"CLUSREG_NAME_NETNAME_ALIASES","features":[468]},{"name":"CLUSREG_NAME_NETNAME_CONTAINERGUID","features":[468]},{"name":"CLUSREG_NAME_NETNAME_CREATING_DC","features":[468]},{"name":"CLUSREG_NAME_NETNAME_DNN_DISABLE_CLONES","features":[468]},{"name":"CLUSREG_NAME_NETNAME_DNS_NAME","features":[468]},{"name":"CLUSREG_NAME_NETNAME_DNS_SUFFIX","features":[468]},{"name":"CLUSREG_NAME_NETNAME_EXCLUDE_NETWORKS","features":[468]},{"name":"CLUSREG_NAME_NETNAME_HOST_TTL","features":[468]},{"name":"CLUSREG_NAME_NETNAME_IN_USE_NETWORKS","features":[468]},{"name":"CLUSREG_NAME_NETNAME_LAST_DNS_UPDATE","features":[468]},{"name":"CLUSREG_NAME_NETNAME_NAME","features":[468]},{"name":"CLUSREG_NAME_NETNAME_OBJECT_ID","features":[468]},{"name":"CLUSREG_NAME_NETNAME_PUBLISH_PTR","features":[468]},{"name":"CLUSREG_NAME_NETNAME_REGISTER_ALL_IP","features":[468]},{"name":"CLUSREG_NAME_NETNAME_REMAP_PIPE_NAMES","features":[468]},{"name":"CLUSREG_NAME_NETNAME_REMOVEVCO_ONDELETE","features":[468]},{"name":"CLUSREG_NAME_NETNAME_RESOURCE_DATA","features":[468]},{"name":"CLUSREG_NAME_NETNAME_STATUS_DNS","features":[468]},{"name":"CLUSREG_NAME_NETNAME_STATUS_KERBEROS","features":[468]},{"name":"CLUSREG_NAME_NETNAME_STATUS_NETBIOS","features":[468]},{"name":"CLUSREG_NAME_NETNAME_VCO_CONTAINER","features":[468]},{"name":"CLUSREG_NAME_NET_ADDRESS","features":[468]},{"name":"CLUSREG_NAME_NET_ADDRESS_MASK","features":[468]},{"name":"CLUSREG_NAME_NET_AUTOMETRIC","features":[468]},{"name":"CLUSREG_NAME_NET_DESC","features":[468]},{"name":"CLUSREG_NAME_NET_IPV4_ADDRESSES","features":[468]},{"name":"CLUSREG_NAME_NET_IPV4_PREFIXLENGTHS","features":[468]},{"name":"CLUSREG_NAME_NET_IPV6_ADDRESSES","features":[468]},{"name":"CLUSREG_NAME_NET_IPV6_PREFIXLENGTHS","features":[468]},{"name":"CLUSREG_NAME_NET_METRIC","features":[468]},{"name":"CLUSREG_NAME_NET_NAME","features":[468]},{"name":"CLUSREG_NAME_NET_RDMA_CAPABLE","features":[468]},{"name":"CLUSREG_NAME_NET_ROLE","features":[468]},{"name":"CLUSREG_NAME_NET_RSS_CAPABLE","features":[468]},{"name":"CLUSREG_NAME_NET_SPEED","features":[468]},{"name":"CLUSREG_NAME_NODE_BUILD_NUMBER","features":[468]},{"name":"CLUSREG_NAME_NODE_CSDVERSION","features":[468]},{"name":"CLUSREG_NAME_NODE_DESC","features":[468]},{"name":"CLUSREG_NAME_NODE_DRAIN_STATUS","features":[468]},{"name":"CLUSREG_NAME_NODE_DRAIN_TARGET","features":[468]},{"name":"CLUSREG_NAME_NODE_DYNAMIC_WEIGHT","features":[468]},{"name":"CLUSREG_NAME_NODE_FAULT_DOMAIN","features":[468]},{"name":"CLUSREG_NAME_NODE_FDID","features":[468]},{"name":"CLUSREG_NAME_NODE_HIGHEST_VERSION","features":[468]},{"name":"CLUSREG_NAME_NODE_IS_PRIMARY","features":[468]},{"name":"CLUSREG_NAME_NODE_LOWEST_VERSION","features":[468]},{"name":"CLUSREG_NAME_NODE_MAJOR_VERSION","features":[468]},{"name":"CLUSREG_NAME_NODE_MANUFACTURER","features":[468]},{"name":"CLUSREG_NAME_NODE_MINOR_VERSION","features":[468]},{"name":"CLUSREG_NAME_NODE_MODEL","features":[468]},{"name":"CLUSREG_NAME_NODE_NAME","features":[468]},{"name":"CLUSREG_NAME_NODE_NEEDS_PQ","features":[468]},{"name":"CLUSREG_NAME_NODE_SERIALNUMBER","features":[468]},{"name":"CLUSREG_NAME_NODE_STATUS_INFO","features":[468]},{"name":"CLUSREG_NAME_NODE_UNIQUEID","features":[468]},{"name":"CLUSREG_NAME_NODE_WEIGHT","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_CSVBLOCKCACHE","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTAGELIMIT","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_CSVSNAPSHOTDIFFAREASIZE","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_CSVWRITETHROUGH","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBINTERVAL","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKARBTYPE","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKGUID","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDGUID","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIDTYPE","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKIODELAY","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKPATH","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRECOVERYACTION","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRELOAD","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKRUNCHKDSK","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKSIGNATURE","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKUNIQUEIDS","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_DISKVOLUMEINFO","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_FASTONLINEARBITRATE","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_MAINTMODE","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_MIGRATEFIXUP","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_SPACEIDGUID","features":[468]},{"name":"CLUSREG_NAME_PHYSDISK_VOLSNAPACTIVATETIMEOUT","features":[468]},{"name":"CLUSREG_NAME_PLACEMENT_OPTIONS","features":[468]},{"name":"CLUSREG_NAME_PLUMB_ALL_CROSS_SUBNET_ROUTES","features":[468]},{"name":"CLUSREG_NAME_PREVENTQUORUM","features":[468]},{"name":"CLUSREG_NAME_PRTSPOOL_DEFAULT_SPOOL_DIR","features":[468]},{"name":"CLUSREG_NAME_PRTSPOOL_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_QUARANTINE_DURATION","features":[468]},{"name":"CLUSREG_NAME_QUARANTINE_THRESHOLD","features":[468]},{"name":"CLUSREG_NAME_QUORUM_ARBITRATION_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_RESILIENCY_DEFAULT_SECONDS","features":[468]},{"name":"CLUSREG_NAME_RESILIENCY_LEVEL","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_ADMIN_EXTENSIONS","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_DEADLOCK_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_DESC","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_DLL_NAME","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_LOG_QUERY","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_POLICY","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_DUMP_SERVICES","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_ENABLED_EVENT_LOGS","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_IS_ALIVE","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_LOOKS_ALIVE","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_MAX_MONITORS","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_NAME","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_PENDING_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_WPR_PROFILES","features":[468]},{"name":"CLUSREG_NAME_RESTYPE_WPR_START_AFTER","features":[468]},{"name":"CLUSREG_NAME_RES_DATA1","features":[468]},{"name":"CLUSREG_NAME_RES_DATA2","features":[468]},{"name":"CLUSREG_NAME_RES_DEADLOCK_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_RES_DESC","features":[468]},{"name":"CLUSREG_NAME_RES_EMBEDDED_FAILURE_ACTION","features":[468]},{"name":"CLUSREG_NAME_RES_IS_ALIVE","features":[468]},{"name":"CLUSREG_NAME_RES_LAST_OPERATION_STATUS_CODE","features":[468]},{"name":"CLUSREG_NAME_RES_LOOKS_ALIVE","features":[468]},{"name":"CLUSREG_NAME_RES_MONITOR_PID","features":[468]},{"name":"CLUSREG_NAME_RES_NAME","features":[468]},{"name":"CLUSREG_NAME_RES_PENDING_TIMEOUT","features":[468]},{"name":"CLUSREG_NAME_RES_PERSISTENT_STATE","features":[468]},{"name":"CLUSREG_NAME_RES_RESTART_ACTION","features":[468]},{"name":"CLUSREG_NAME_RES_RESTART_DELAY","features":[468]},{"name":"CLUSREG_NAME_RES_RESTART_PERIOD","features":[468]},{"name":"CLUSREG_NAME_RES_RESTART_THRESHOLD","features":[468]},{"name":"CLUSREG_NAME_RES_RETRY_PERIOD_ON_FAILURE","features":[468]},{"name":"CLUSREG_NAME_RES_SEPARATE_MONITOR","features":[468]},{"name":"CLUSREG_NAME_RES_STATUS","features":[468]},{"name":"CLUSREG_NAME_RES_STATUS_INFORMATION","features":[468]},{"name":"CLUSREG_NAME_RES_TYPE","features":[468]},{"name":"CLUSREG_NAME_ROUTE_HISTORY_LENGTH","features":[468]},{"name":"CLUSREG_NAME_SAME_SUBNET_DELAY","features":[468]},{"name":"CLUSREG_NAME_SAME_SUBNET_THRESHOLD","features":[468]},{"name":"CLUSREG_NAME_SHUTDOWN_TIMEOUT_MINUTES","features":[468]},{"name":"CLUSREG_NAME_SOFS_SMBASYMMETRYMODE","features":[468]},{"name":"CLUSREG_NAME_START_MEMORY","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_DESCRIPTION","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_HEALTH","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_NAME","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLARBITRATE","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLCONSUMEDCAPACITY","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDESC","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLDRIVEIDS","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLHEALTH","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLIDGUID","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLNAME","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMSHARE","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLQUORUMUSERACCOUNT","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLREEVALTIMEOUT","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLSTATE","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_POOLTOTALCAPACITY","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_PROVISIONING","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYCOLUMNS","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYINTERLEAVE","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_RESILIENCYTYPE","features":[468]},{"name":"CLUSREG_NAME_STORAGESPACE_STATE","features":[468]},{"name":"CLUSREG_NAME_UPGRADE_VERSION","features":[468]},{"name":"CLUSREG_NAME_VIP_ADAPTER_NAME","features":[468]},{"name":"CLUSREG_NAME_VIP_ADDRESS","features":[468]},{"name":"CLUSREG_NAME_VIP_PREFIX_LENGTH","features":[468]},{"name":"CLUSREG_NAME_VIP_RDID","features":[468]},{"name":"CLUSREG_NAME_VIP_VSID","features":[468]},{"name":"CLUSREG_NAME_VIRTUAL_NUMA_COUNT","features":[468]},{"name":"CLUSREG_NAME_VSSTASK_APPNAME","features":[468]},{"name":"CLUSREG_NAME_VSSTASK_APPPARAMS","features":[468]},{"name":"CLUSREG_NAME_VSSTASK_CURRENTDIRECTORY","features":[468]},{"name":"CLUSREG_NAME_VSSTASK_TRIGGERARRAY","features":[468]},{"name":"CLUSREG_NAME_WINS_BACKUP_PATH","features":[468]},{"name":"CLUSREG_NAME_WINS_DATABASE_PATH","features":[468]},{"name":"CLUSREG_NAME_WITNESS_DYNAMIC_WEIGHT","features":[468]},{"name":"CLUSREG_READ_ERROR","features":[468]},{"name":"CLUSREG_READ_KEY","features":[468]},{"name":"CLUSREG_READ_VALUE","features":[468]},{"name":"CLUSREG_SET_KEY_SECURITY","features":[468]},{"name":"CLUSREG_SET_VALUE","features":[468]},{"name":"CLUSREG_VALUE_DELETED","features":[468]},{"name":"CLUSRESDLL_STATUS_DO_NOT_COLLECT_WER_REPORT","features":[468]},{"name":"CLUSRESDLL_STATUS_DUMP_NOW","features":[468]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_MEMORY","features":[468]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_OTHER_RESOURCES","features":[468]},{"name":"CLUSRESDLL_STATUS_INSUFFICIENT_PROCESSOR","features":[468]},{"name":"CLUSRESDLL_STATUS_INVALID_PARAMETERS","features":[468]},{"name":"CLUSRESDLL_STATUS_NETWORK_NOT_AVAILABLE","features":[468]},{"name":"CLUSRESDLL_STATUS_OFFLINE_BUSY","features":[468]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_REJECTED","features":[468]},{"name":"CLUSRESDLL_STATUS_OFFLINE_DESTINATION_THROTTLED","features":[468]},{"name":"CLUSRESDLL_STATUS_OFFLINE_SOURCE_THROTTLED","features":[468]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_OFFLINE_CALLS","features":[468]},{"name":"CLUSRES_DISABLE_WPR_WATCHDOG_FOR_ONLINE_CALLS","features":[468]},{"name":"CLUSRES_NAME_GET_OPERATION_CONTEXT_FLAGS","features":[468]},{"name":"CLUSRES_STATUS_APPLICATION_READY","features":[468]},{"name":"CLUSRES_STATUS_EMBEDDED_FAILURE","features":[468]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_CPU","features":[468]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_GENERIC_RESOURCES","features":[468]},{"name":"CLUSRES_STATUS_FAILED_DUE_TO_INSUFFICIENT_MEMORY","features":[468]},{"name":"CLUSRES_STATUS_LOCKED_MODE","features":[468]},{"name":"CLUSRES_STATUS_NETWORK_FAILURE","features":[468]},{"name":"CLUSRES_STATUS_OFFLINE_NOT_LOCAL_DISK_OWNER","features":[468]},{"name":"CLUSRES_STATUS_OS_HEARTBEAT","features":[468]},{"name":"CLUSRES_STATUS_UNMONITORED","features":[468]},{"name":"CLUSTERSET_OBJECT_TYPE","features":[468]},{"name":"CLUSTERSET_OBJECT_TYPE_DATABASE","features":[468]},{"name":"CLUSTERSET_OBJECT_TYPE_MEMBER","features":[468]},{"name":"CLUSTERSET_OBJECT_TYPE_NONE","features":[468]},{"name":"CLUSTERSET_OBJECT_TYPE_WORKLOAD","features":[468]},{"name":"CLUSTERVERSIONINFO","features":[468]},{"name":"CLUSTERVERSIONINFO_NT4","features":[468]},{"name":"CLUSTER_ADD_EVICT_DELAY","features":[468]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG","features":[305,468]},{"name":"CLUSTER_AVAILABILITY_SET_CONFIG_V1","features":[468]},{"name":"CLUSTER_BATCH_COMMAND","features":[468]},{"name":"CLUSTER_CHANGE","features":[468]},{"name":"CLUSTER_CHANGE_ALL","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_GROUP_ADDED_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_HANDLE_CLOSE_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_LOST_NOTIFICATIONS_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_MEMBERSHIP_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_NETWORK_ADDED_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_NODE_ADDED_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_PROPERTY","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_RECONNECT_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_RENAME_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_RESOURCE_TYPE_ADDED_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_UPGRADED_V2","features":[468]},{"name":"CLUSTER_CHANGE_CLUSTER_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_DELETED_v2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENCIES_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_DEPENDENTS_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_ADDED","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_GROUP_REMOVED","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_HANDLE_CLOSE_v2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUPSET_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_ADDED","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_DELETED","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_DELETED_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_HANDLE_CLOSE_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_OWNER_NODE_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_PREFERRED_OWNERS_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_PROPERTY","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_ADDED_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_GAINED_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_RESOURCE_LOST_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_STATE","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_GROUP_V2","features":[468]},{"name":"CLUSTER_CHANGE_HANDLE_CLOSE","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ADDED","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_DELETED_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_HANDLE_CLOSE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_PROPERTY","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETINTERFACE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_ADDED","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_DELETED_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_HANDLE_CLOSE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_PROPERTY","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_STATE","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NETWORK_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_ADDED","features":[468]},{"name":"CLUSTER_CHANGE_NODE_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_DELETED","features":[468]},{"name":"CLUSTER_CHANGE_NODE_DELETED_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_GROUP_GAINED_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_GROUP_LOST_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_HANDLE_CLOSE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_NETINTERFACE_ADDED_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_PROPERTY","features":[468]},{"name":"CLUSTER_CHANGE_NODE_STATE","features":[468]},{"name":"CLUSTER_CHANGE_NODE_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_UPGRADE_PHASE_V2","features":[468]},{"name":"CLUSTER_CHANGE_NODE_V2","features":[468]},{"name":"CLUSTER_CHANGE_QUORUM_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_QUORUM_STATE","features":[468]},{"name":"CLUSTER_CHANGE_QUORUM_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_QUORUM_V2","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_ATTRIBUTES_V2","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_HANDLE_CLOSE_V2","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_NAME_V2","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_SUBTREE_V2","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_V2","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE","features":[468]},{"name":"CLUSTER_CHANGE_REGISTRY_VALUE_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_ADDED","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_DELETED_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENCIES_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_DEPENDENTS_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_DLL_UPGRADED_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_HANDLE_CLOSE_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_OWNER_GROUP_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_POSSIBLE_OWNERS_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_PROPERTY","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TERMINAL_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ADDED","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_COMMON_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DELETED_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_DLL_UPGRADED_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_POSSIBLE_OWNERS_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PRIVATE_PROPERTY_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_PROPERTY","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_TYPE_V2","features":[468]},{"name":"CLUSTER_CHANGE_RESOURCE_V2","features":[468]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ADDED_V2","features":[468]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_ALL_V2","features":[468]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_REMOVED_V2","features":[468]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_STATE_V2","features":[468]},{"name":"CLUSTER_CHANGE_SHARED_VOLUME_V2","features":[468]},{"name":"CLUSTER_CHANGE_SPACEPORT_CUSTOM_PNP_V2","features":[468]},{"name":"CLUSTER_CHANGE_SPACEPORT_V2","features":[468]},{"name":"CLUSTER_CHANGE_UPGRADE_ALL","features":[468]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_COMMIT","features":[468]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_POSTCOMMIT","features":[468]},{"name":"CLUSTER_CHANGE_UPGRADE_NODE_PREPARE","features":[468]},{"name":"CLUSTER_CLOUD_TYPE","features":[468]},{"name":"CLUSTER_CLOUD_TYPE_AZURE","features":[468]},{"name":"CLUSTER_CLOUD_TYPE_MIXED","features":[468]},{"name":"CLUSTER_CLOUD_TYPE_NONE","features":[468]},{"name":"CLUSTER_CLOUD_TYPE_UNKNOWN","features":[468]},{"name":"CLUSTER_CONFIGURED","features":[468]},{"name":"CLUSTER_CONTROL_OBJECT","features":[468]},{"name":"CLUSTER_CREATE_GROUP_INFO","features":[468]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION","features":[468]},{"name":"CLUSTER_CREATE_GROUP_INFO_VERSION_1","features":[468]},{"name":"CLUSTER_CSA_VSS_STATE","features":[468]},{"name":"CLUSTER_CSV_COMPATIBLE_FILTERS","features":[468]},{"name":"CLUSTER_CSV_INCOMPATIBLE_FILTERS","features":[468]},{"name":"CLUSTER_CSV_VOLUME_FAULT_STATE","features":[468]},{"name":"CLUSTER_DELETE_ACCESS_CONTROL_ENTRY","features":[468]},{"name":"CLUSTER_ENFORCED_ANTIAFFINITY","features":[468]},{"name":"CLUSTER_ENUM","features":[468]},{"name":"CLUSTER_ENUM_ALL","features":[468]},{"name":"CLUSTER_ENUM_GROUP","features":[468]},{"name":"CLUSTER_ENUM_INTERNAL_NETWORK","features":[468]},{"name":"CLUSTER_ENUM_ITEM","features":[468]},{"name":"CLUSTER_ENUM_ITEM_VERSION","features":[468]},{"name":"CLUSTER_ENUM_ITEM_VERSION_1","features":[468]},{"name":"CLUSTER_ENUM_NETINTERFACE","features":[468]},{"name":"CLUSTER_ENUM_NETWORK","features":[468]},{"name":"CLUSTER_ENUM_NODE","features":[468]},{"name":"CLUSTER_ENUM_RESOURCE","features":[468]},{"name":"CLUSTER_ENUM_RESTYPE","features":[468]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_GROUP","features":[468]},{"name":"CLUSTER_ENUM_SHARED_VOLUME_RESOURCE","features":[468]},{"name":"CLUSTER_GROUP_AUTOFAILBACK_TYPE","features":[468]},{"name":"CLUSTER_GROUP_ENUM","features":[468]},{"name":"CLUSTER_GROUP_ENUM_ALL","features":[468]},{"name":"CLUSTER_GROUP_ENUM_CONTAINS","features":[468]},{"name":"CLUSTER_GROUP_ENUM_ITEM","features":[468]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION","features":[468]},{"name":"CLUSTER_GROUP_ENUM_ITEM_VERSION_1","features":[468]},{"name":"CLUSTER_GROUP_ENUM_NODES","features":[468]},{"name":"CLUSTER_GROUP_PRIORITY","features":[468]},{"name":"CLUSTER_GROUP_STATE","features":[468]},{"name":"CLUSTER_GROUP_WAIT_DELAY","features":[468]},{"name":"CLUSTER_HANG_RECOVERY_ACTION_KEYNAME","features":[468]},{"name":"CLUSTER_HANG_TIMEOUT_KEYNAME","features":[468]},{"name":"CLUSTER_HEALTH_FAULT","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ARGS","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ARRAY","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_DESCRIPTION_LABEL","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ERRORCODE_LABEL","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ERRORTYPE_LABEL","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_FLAGS_LABEL","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ID","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_ID_LABEL","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_PROPERTY_NAME","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_PROVIDER_LABEL","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED","features":[468]},{"name":"CLUSTER_HEALTH_FAULT_RESERVED_LABEL","features":[468]},{"name":"CLUSTER_INSTALLED","features":[468]},{"name":"CLUSTER_IP_ENTRY","features":[468]},{"name":"CLUSTER_MEMBERSHIP_INFO","features":[305,468]},{"name":"CLUSTER_MGMT_POINT_RESTYPE","features":[468]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_AUTO","features":[468]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_DNN","features":[468]},{"name":"CLUSTER_MGMT_POINT_RESTYPE_SNN","features":[468]},{"name":"CLUSTER_MGMT_POINT_TYPE","features":[468]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO","features":[468]},{"name":"CLUSTER_MGMT_POINT_TYPE_CNO_ONLY","features":[468]},{"name":"CLUSTER_MGMT_POINT_TYPE_DNS_ONLY","features":[468]},{"name":"CLUSTER_MGMT_POINT_TYPE_NONE","features":[468]},{"name":"CLUSTER_NAME_AUTO_BALANCER_LEVEL","features":[468]},{"name":"CLUSTER_NAME_AUTO_BALANCER_MODE","features":[468]},{"name":"CLUSTER_NAME_PREFERRED_SITE","features":[468]},{"name":"CLUSTER_NETINTERFACE_STATE","features":[468]},{"name":"CLUSTER_NETWORK_ENUM","features":[468]},{"name":"CLUSTER_NETWORK_ENUM_ALL","features":[468]},{"name":"CLUSTER_NETWORK_ENUM_NETINTERFACES","features":[468]},{"name":"CLUSTER_NETWORK_ROLE","features":[468]},{"name":"CLUSTER_NETWORK_STATE","features":[468]},{"name":"CLUSTER_NODE_DRAIN_STATUS","features":[468]},{"name":"CLUSTER_NODE_ENUM","features":[468]},{"name":"CLUSTER_NODE_ENUM_ALL","features":[468]},{"name":"CLUSTER_NODE_ENUM_GROUPS","features":[468]},{"name":"CLUSTER_NODE_ENUM_NETINTERFACES","features":[468]},{"name":"CLUSTER_NODE_ENUM_PREFERRED_GROUPS","features":[468]},{"name":"CLUSTER_NODE_RESUME_FAILBACK_TYPE","features":[468]},{"name":"CLUSTER_NODE_STATE","features":[468]},{"name":"CLUSTER_NODE_STATUS","features":[468]},{"name":"CLUSTER_NOTIFICATIONS_V1","features":[468]},{"name":"CLUSTER_NOTIFICATIONS_V2","features":[468]},{"name":"CLUSTER_NOTIFICATIONS_VERSION","features":[468]},{"name":"CLUSTER_OBJECT_TYPE","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_AFFINITYRULE","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_CLUSTER","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_FAULTDOMAIN","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_GROUP","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_GROUPSET","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_NETWORK_INTERFACE","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_NODE","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_NONE","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_QUORUM","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_REGISTRY","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_RESOURCE_TYPE","features":[468]},{"name":"CLUSTER_OBJECT_TYPE_SHARED_VOLUME","features":[468]},{"name":"CLUSTER_PROPERTY_FORMAT","features":[468]},{"name":"CLUSTER_PROPERTY_SYNTAX","features":[468]},{"name":"CLUSTER_PROPERTY_TYPE","features":[468]},{"name":"CLUSTER_QUORUM_LOST","features":[468]},{"name":"CLUSTER_QUORUM_MAINTAINED","features":[468]},{"name":"CLUSTER_QUORUM_TYPE","features":[468]},{"name":"CLUSTER_QUORUM_VALUE","features":[468]},{"name":"CLUSTER_READ_BATCH_COMMAND","features":[468]},{"name":"CLUSTER_REG_COMMAND","features":[468]},{"name":"CLUSTER_REQUEST_REPLY_TIMEOUT","features":[468]},{"name":"CLUSTER_RESOURCE_APPLICATION_STATE","features":[468]},{"name":"CLUSTER_RESOURCE_CLASS","features":[468]},{"name":"CLUSTER_RESOURCE_CREATE_FLAGS","features":[468]},{"name":"CLUSTER_RESOURCE_DEFAULT_MONITOR","features":[468]},{"name":"CLUSTER_RESOURCE_EMBEDDED_FAILURE_ACTION","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM_ALL","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM_DEPENDS","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM_ITEM_VERSION_1","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM_NODES","features":[468]},{"name":"CLUSTER_RESOURCE_ENUM_PROVIDES","features":[468]},{"name":"CLUSTER_RESOURCE_RESTART_ACTION","features":[468]},{"name":"CLUSTER_RESOURCE_SEPARATE_MONITOR","features":[468]},{"name":"CLUSTER_RESOURCE_STATE","features":[468]},{"name":"CLUSTER_RESOURCE_STATE_CHANGE_REASON","features":[468]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM","features":[468]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_ALL","features":[468]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_NODES","features":[468]},{"name":"CLUSTER_RESOURCE_TYPE_ENUM_RESOURCES","features":[468]},{"name":"CLUSTER_RESOURCE_TYPE_SPECIFIC_V2","features":[468]},{"name":"CLUSTER_RESOURCE_VALID_FLAGS","features":[468]},{"name":"CLUSTER_ROLE","features":[468]},{"name":"CLUSTER_ROLE_STATE","features":[468]},{"name":"CLUSTER_RUNNING","features":[468]},{"name":"CLUSTER_S2D_BUS_TYPES","features":[468]},{"name":"CLUSTER_S2D_CACHE_BEHAVIOR_FLAGS","features":[468]},{"name":"CLUSTER_S2D_CACHE_DESIRED_STATE","features":[468]},{"name":"CLUSTER_S2D_CACHE_FLASH_RESERVE_PERCENT","features":[468]},{"name":"CLUSTER_S2D_CACHE_METADATA_RESERVE","features":[468]},{"name":"CLUSTER_S2D_CACHE_PAGE_SIZE_KBYTES","features":[468]},{"name":"CLUSTER_S2D_ENABLED","features":[468]},{"name":"CLUSTER_S2D_IO_LATENCY_THRESHOLD","features":[468]},{"name":"CLUSTER_S2D_OPTIMIZATIONS","features":[468]},{"name":"CLUSTER_SETUP_PHASE","features":[468]},{"name":"CLUSTER_SETUP_PHASE_SEVERITY","features":[468]},{"name":"CLUSTER_SETUP_PHASE_TYPE","features":[468]},{"name":"CLUSTER_SET_ACCESS_TYPE_ALLOWED","features":[468]},{"name":"CLUSTER_SET_ACCESS_TYPE_DENIED","features":[468]},{"name":"CLUSTER_SET_PASSWORD_STATUS","features":[305,468]},{"name":"CLUSTER_SHARED_VOLUMES_ROOT","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_BACKUP_STATE","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_GUID_INPUT","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_GUID_NAME","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_NAME","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_TYPE","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_RENAME_INPUT_VOLUME","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_SNAPSHOT_STATE","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_STATE","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_STATE_INFO_EX","features":[468]},{"name":"CLUSTER_SHARED_VOLUME_VSS_WRITER_OPERATION_TIMEOUT","features":[468]},{"name":"CLUSTER_STORAGENODE_STATE","features":[468]},{"name":"CLUSTER_UPGRADE_PHASE","features":[468]},{"name":"CLUSTER_VALIDATE_CSV_FILENAME","features":[468]},{"name":"CLUSTER_VALIDATE_DIRECTORY","features":[468]},{"name":"CLUSTER_VALIDATE_NETNAME","features":[468]},{"name":"CLUSTER_VALIDATE_PATH","features":[468]},{"name":"CLUSTER_VERSION_FLAG_MIXED_MODE","features":[468]},{"name":"CLUSTER_VERSION_UNKNOWN","features":[468]},{"name":"CLUSTER_WITNESS_DATABASE_WRITE_TIMEOUT","features":[468]},{"name":"CLUSTER_WITNESS_FAILED_RESTART_INTERVAL","features":[468]},{"name":"CLUS_ACCESS_ANY","features":[468]},{"name":"CLUS_ACCESS_READ","features":[468]},{"name":"CLUS_ACCESS_WRITE","features":[468]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_FAULT_DOMAIN","features":[468]},{"name":"CLUS_AFFINITY_RULE_DIFFERENT_NODE","features":[468]},{"name":"CLUS_AFFINITY_RULE_MAX","features":[468]},{"name":"CLUS_AFFINITY_RULE_MIN","features":[468]},{"name":"CLUS_AFFINITY_RULE_NONE","features":[468]},{"name":"CLUS_AFFINITY_RULE_SAME_FAULT_DOMAIN","features":[468]},{"name":"CLUS_AFFINITY_RULE_SAME_NODE","features":[468]},{"name":"CLUS_AFFINITY_RULE_TYPE","features":[468]},{"name":"CLUS_CHARACTERISTICS","features":[468]},{"name":"CLUS_CHAR_BROADCAST_DELETE","features":[468]},{"name":"CLUS_CHAR_CLONES","features":[468]},{"name":"CLUS_CHAR_COEXIST_IN_SHARED_VOLUME_GROUP","features":[468]},{"name":"CLUS_CHAR_DELETE_REQUIRES_ALL_NODES","features":[468]},{"name":"CLUS_CHAR_DRAIN_LOCAL_OFFLINE","features":[468]},{"name":"CLUS_CHAR_INFRASTRUCTURE","features":[468]},{"name":"CLUS_CHAR_LOCAL_QUORUM","features":[468]},{"name":"CLUS_CHAR_LOCAL_QUORUM_DEBUG","features":[468]},{"name":"CLUS_CHAR_MONITOR_DETACH","features":[468]},{"name":"CLUS_CHAR_MONITOR_REATTACH","features":[468]},{"name":"CLUS_CHAR_NOTIFY_NEW_OWNER","features":[468]},{"name":"CLUS_CHAR_NOT_PREEMPTABLE","features":[468]},{"name":"CLUS_CHAR_OPERATION_CONTEXT","features":[468]},{"name":"CLUS_CHAR_PLACEMENT_DATA","features":[468]},{"name":"CLUS_CHAR_QUORUM","features":[468]},{"name":"CLUS_CHAR_REQUIRES_STATE_CHANGE_REASON","features":[468]},{"name":"CLUS_CHAR_SINGLE_CLUSTER_INSTANCE","features":[468]},{"name":"CLUS_CHAR_SINGLE_GROUP_INSTANCE","features":[468]},{"name":"CLUS_CHAR_SUPPORTS_UNMONITORED_STATE","features":[468]},{"name":"CLUS_CHAR_UNKNOWN","features":[468]},{"name":"CLUS_CHAR_VETO_DRAIN","features":[468]},{"name":"CLUS_CHKDSK_INFO","features":[468]},{"name":"CLUS_CREATE_CRYPT_CONTAINER_NOT_FOUND","features":[468]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_INPUT","features":[468]},{"name":"CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT","features":[468]},{"name":"CLUS_CSV_MAINTENANCE_MODE_INFO","features":[305,468]},{"name":"CLUS_CSV_VOLUME_INFO","features":[468]},{"name":"CLUS_CSV_VOLUME_NAME","features":[468]},{"name":"CLUS_DISK_NUMBER_INFO","features":[468]},{"name":"CLUS_DNN_LEADER_STATUS","features":[305,468]},{"name":"CLUS_DNN_SODAFS_CLONE_STATUS","features":[468]},{"name":"CLUS_FLAGS","features":[468]},{"name":"CLUS_FLAG_CORE","features":[468]},{"name":"CLUS_FORCE_QUORUM_INFO","features":[468]},{"name":"CLUS_FTSET_INFO","features":[468]},{"name":"CLUS_GLOBAL","features":[468]},{"name":"CLUS_GROUP_DO_NOT_START","features":[468]},{"name":"CLUS_GROUP_START_ALLOWED","features":[468]},{"name":"CLUS_GROUP_START_ALWAYS","features":[468]},{"name":"CLUS_GROUP_START_SETTING","features":[468]},{"name":"CLUS_GRP_MOVE_ALLOWED","features":[468]},{"name":"CLUS_GRP_MOVE_LOCKED","features":[468]},{"name":"CLUS_HYBRID_QUORUM","features":[468]},{"name":"CLUS_MAINTENANCE_MODE_INFO","features":[305,468]},{"name":"CLUS_MAINTENANCE_MODE_INFOEX","features":[305,468]},{"name":"CLUS_MODIFY","features":[468]},{"name":"CLUS_NAME_RES_TYPE_CLUSTER_GROUPID","features":[468]},{"name":"CLUS_NAME_RES_TYPE_DATA_RESID","features":[468]},{"name":"CLUS_NAME_RES_TYPE_LOG_MULTIPLE","features":[468]},{"name":"CLUS_NAME_RES_TYPE_LOG_RESID","features":[468]},{"name":"CLUS_NAME_RES_TYPE_LOG_VOLUME","features":[468]},{"name":"CLUS_NAME_RES_TYPE_MINIMUM_LOG_SIZE","features":[468]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUPID","features":[468]},{"name":"CLUS_NAME_RES_TYPE_REPLICATION_GROUP_TYPE","features":[468]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_RESID","features":[468]},{"name":"CLUS_NAME_RES_TYPE_SOURCE_VOLUMES","features":[468]},{"name":"CLUS_NAME_RES_TYPE_TARGET_RESID","features":[468]},{"name":"CLUS_NAME_RES_TYPE_TARGET_VOLUMES","features":[468]},{"name":"CLUS_NAME_RES_TYPE_UNIT_LOG_SIZE_CHANGE","features":[468]},{"name":"CLUS_NETNAME_IP_INFO_ENTRY","features":[468]},{"name":"CLUS_NETNAME_IP_INFO_FOR_MULTICHANNEL","features":[468]},{"name":"CLUS_NETNAME_PWD_INFO","features":[468]},{"name":"CLUS_NETNAME_PWD_INFOEX","features":[468]},{"name":"CLUS_NETNAME_VS_TOKEN_INFO","features":[305,468]},{"name":"CLUS_NODE_MAJORITY_QUORUM","features":[468]},{"name":"CLUS_NOT_GLOBAL","features":[468]},{"name":"CLUS_NO_MODIFY","features":[468]},{"name":"CLUS_OBJECT_AFFINITYRULE","features":[468]},{"name":"CLUS_OBJECT_CLUSTER","features":[468]},{"name":"CLUS_OBJECT_GROUP","features":[468]},{"name":"CLUS_OBJECT_GROUPSET","features":[468]},{"name":"CLUS_OBJECT_INVALID","features":[468]},{"name":"CLUS_OBJECT_NETINTERFACE","features":[468]},{"name":"CLUS_OBJECT_NETWORK","features":[468]},{"name":"CLUS_OBJECT_NODE","features":[468]},{"name":"CLUS_OBJECT_RESOURCE","features":[468]},{"name":"CLUS_OBJECT_RESOURCE_TYPE","features":[468]},{"name":"CLUS_OBJECT_USER","features":[468]},{"name":"CLUS_PARTITION_INFO","features":[468]},{"name":"CLUS_PARTITION_INFO_EX","features":[468]},{"name":"CLUS_PARTITION_INFO_EX2","features":[468]},{"name":"CLUS_PROVIDER_STATE_CHANGE_INFO","features":[468]},{"name":"CLUS_RESCLASS_NETWORK","features":[468]},{"name":"CLUS_RESCLASS_STORAGE","features":[468]},{"name":"CLUS_RESCLASS_UNKNOWN","features":[468]},{"name":"CLUS_RESCLASS_USER","features":[468]},{"name":"CLUS_RESDLL_OFFLINE_DO_NOT_UPDATE_PERSISTENT_STATE","features":[468]},{"name":"CLUS_RESDLL_OFFLINE_DUE_TO_EMBEDDED_FAILURE","features":[468]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_NETWORK_CONNECTIVITY","features":[468]},{"name":"CLUS_RESDLL_OFFLINE_IGNORE_RESOURCE_STATUS","features":[468]},{"name":"CLUS_RESDLL_OFFLINE_QUEUE_ENABLED","features":[468]},{"name":"CLUS_RESDLL_OFFLINE_RETURNING_TO_SOURCE_NODE_BECAUSE_OF_ERROR","features":[468]},{"name":"CLUS_RESDLL_OFFLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[468]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_NETWORK_CONNECTIVITY","features":[468]},{"name":"CLUS_RESDLL_ONLINE_IGNORE_RESOURCE_STATUS","features":[468]},{"name":"CLUS_RESDLL_ONLINE_RECOVER_MONITOR_STATE","features":[468]},{"name":"CLUS_RESDLL_ONLINE_RESTORE_ONLINE_STATE","features":[468]},{"name":"CLUS_RESDLL_ONLINE_RETURN_TO_SOURCE_NODE_ON_ERROR","features":[468]},{"name":"CLUS_RESDLL_OPEN_DONT_DELETE_TEMP_DISK","features":[468]},{"name":"CLUS_RESDLL_OPEN_RECOVER_MONITOR_STATE","features":[468]},{"name":"CLUS_RESOURCE_CLASS_INFO","features":[468]},{"name":"CLUS_RESSUBCLASS","features":[468]},{"name":"CLUS_RESSUBCLASS_NETWORK","features":[468]},{"name":"CLUS_RESSUBCLASS_NETWORK_INTERNET_PROTOCOL","features":[468]},{"name":"CLUS_RESSUBCLASS_SHARED","features":[468]},{"name":"CLUS_RESSUBCLASS_STORAGE","features":[468]},{"name":"CLUS_RESSUBCLASS_STORAGE_DISK","features":[468]},{"name":"CLUS_RESSUBCLASS_STORAGE_REPLICATION","features":[468]},{"name":"CLUS_RESSUBCLASS_STORAGE_SHARED_BUS","features":[468]},{"name":"CLUS_RESTYPE_NAME_CAU","features":[468]},{"name":"CLUS_RESTYPE_NAME_CLOUD_WITNESS","features":[468]},{"name":"CLUS_RESTYPE_NAME_CONTAINER","features":[468]},{"name":"CLUS_RESTYPE_NAME_CROSS_CLUSTER","features":[468]},{"name":"CLUS_RESTYPE_NAME_DFS","features":[468]},{"name":"CLUS_RESTYPE_NAME_DFSR","features":[468]},{"name":"CLUS_RESTYPE_NAME_DHCP","features":[468]},{"name":"CLUS_RESTYPE_NAME_DNN","features":[468]},{"name":"CLUS_RESTYPE_NAME_FILESERVER","features":[468]},{"name":"CLUS_RESTYPE_NAME_FILESHR","features":[468]},{"name":"CLUS_RESTYPE_NAME_FSWITNESS","features":[468]},{"name":"CLUS_RESTYPE_NAME_GENAPP","features":[468]},{"name":"CLUS_RESTYPE_NAME_GENSCRIPT","features":[468]},{"name":"CLUS_RESTYPE_NAME_GENSVC","features":[468]},{"name":"CLUS_RESTYPE_NAME_HARDDISK","features":[468]},{"name":"CLUS_RESTYPE_NAME_HCSVM","features":[468]},{"name":"CLUS_RESTYPE_NAME_HEALTH_SERVICE","features":[468]},{"name":"CLUS_RESTYPE_NAME_IPADDR","features":[468]},{"name":"CLUS_RESTYPE_NAME_IPV6_NATIVE","features":[468]},{"name":"CLUS_RESTYPE_NAME_IPV6_TUNNEL","features":[468]},{"name":"CLUS_RESTYPE_NAME_ISCSITARGET","features":[468]},{"name":"CLUS_RESTYPE_NAME_ISNS","features":[468]},{"name":"CLUS_RESTYPE_NAME_MSDTC","features":[468]},{"name":"CLUS_RESTYPE_NAME_MSMQ","features":[468]},{"name":"CLUS_RESTYPE_NAME_MSMQ_TRIGGER","features":[468]},{"name":"CLUS_RESTYPE_NAME_NAT","features":[468]},{"name":"CLUS_RESTYPE_NAME_NETNAME","features":[468]},{"name":"CLUS_RESTYPE_NAME_NETWORK_FILE_SYSTEM","features":[468]},{"name":"CLUS_RESTYPE_NAME_NEW_MSMQ","features":[468]},{"name":"CLUS_RESTYPE_NAME_NFS","features":[468]},{"name":"CLUS_RESTYPE_NAME_NFS_MSNS","features":[468]},{"name":"CLUS_RESTYPE_NAME_NFS_V2","features":[468]},{"name":"CLUS_RESTYPE_NAME_NV_PROVIDER_ADDRESS","features":[468]},{"name":"CLUS_RESTYPE_NAME_PHYS_DISK","features":[468]},{"name":"CLUS_RESTYPE_NAME_PRTSPLR","features":[468]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_MASTER","features":[468]},{"name":"CLUS_RESTYPE_NAME_SCALEOUT_WORKER","features":[468]},{"name":"CLUS_RESTYPE_NAME_SDDC_MANAGEMENT","features":[468]},{"name":"CLUS_RESTYPE_NAME_SODAFILESERVER","features":[468]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POLICIES","features":[468]},{"name":"CLUS_RESTYPE_NAME_STORAGE_POOL","features":[468]},{"name":"CLUS_RESTYPE_NAME_STORAGE_REPLICA","features":[468]},{"name":"CLUS_RESTYPE_NAME_STORQOS","features":[468]},{"name":"CLUS_RESTYPE_NAME_TASKSCHEDULER","features":[468]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV4","features":[468]},{"name":"CLUS_RESTYPE_NAME_VIRTUAL_IPV6","features":[468]},{"name":"CLUS_RESTYPE_NAME_VM","features":[468]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_BROKER","features":[468]},{"name":"CLUS_RESTYPE_NAME_VMREPLICA_COORDINATOR","features":[468]},{"name":"CLUS_RESTYPE_NAME_VM_CONFIG","features":[468]},{"name":"CLUS_RESTYPE_NAME_VM_WMI","features":[468]},{"name":"CLUS_RESTYPE_NAME_VSSTASK","features":[468]},{"name":"CLUS_RESTYPE_NAME_WINS","features":[468]},{"name":"CLUS_RES_NAME_SCALEOUT_MASTER","features":[468]},{"name":"CLUS_RES_NAME_SCALEOUT_WORKER","features":[468]},{"name":"CLUS_SCSI_ADDRESS","features":[468]},{"name":"CLUS_SET_MAINTENANCE_MODE_INPUT","features":[305,468]},{"name":"CLUS_SHARED_VOLUME_BACKUP_MODE","features":[468]},{"name":"CLUS_STARTING_PARAMS","features":[305,468]},{"name":"CLUS_STORAGE_GET_AVAILABLE_DRIVELETTERS","features":[468]},{"name":"CLUS_STORAGE_REMAP_DRIVELETTER","features":[468]},{"name":"CLUS_STORAGE_SET_DRIVELETTER","features":[468]},{"name":"CLUS_WORKER","features":[305,468]},{"name":"CREATEDC_PRESENT","features":[468]},{"name":"CREATE_CLUSTER_CONFIG","features":[305,468]},{"name":"CREATE_CLUSTER_MAJOR_VERSION_MASK","features":[468]},{"name":"CREATE_CLUSTER_NAME_ACCOUNT","features":[305,468]},{"name":"CREATE_CLUSTER_VERSION","features":[468]},{"name":"CTCTL_GET_FAULT_DOMAIN_STATE","features":[468]},{"name":"CTCTL_GET_ROUTESTATUS_BASIC","features":[468]},{"name":"CTCTL_GET_ROUTESTATUS_EXTENDED","features":[468]},{"name":"CanResourceBeDependent","features":[305,468]},{"name":"CancelClusterGroupOperation","features":[468]},{"name":"ChangeClusterResourceGroup","features":[468]},{"name":"ChangeClusterResourceGroupEx","features":[468]},{"name":"ChangeClusterResourceGroupEx2","features":[468]},{"name":"CloseCluster","features":[305,468]},{"name":"CloseClusterCryptProvider","features":[468]},{"name":"CloseClusterGroup","features":[305,468]},{"name":"CloseClusterGroupSet","features":[305,468]},{"name":"CloseClusterNetInterface","features":[305,468]},{"name":"CloseClusterNetwork","features":[305,468]},{"name":"CloseClusterNode","features":[305,468]},{"name":"CloseClusterNotifyPort","features":[305,468]},{"name":"CloseClusterResource","features":[305,468]},{"name":"ClusAddClusterHealthFault","features":[468]},{"name":"ClusApplication","features":[468]},{"name":"ClusCryptoKeys","features":[468]},{"name":"ClusDisk","features":[468]},{"name":"ClusDisks","features":[468]},{"name":"ClusGetClusterHealthFaults","features":[468]},{"name":"ClusGroupTypeAvailableStorage","features":[468]},{"name":"ClusGroupTypeClusterUpdateAgent","features":[468]},{"name":"ClusGroupTypeCoreCluster","features":[468]},{"name":"ClusGroupTypeCoreSddc","features":[468]},{"name":"ClusGroupTypeCrossClusterOrchestrator","features":[468]},{"name":"ClusGroupTypeDhcpServer","features":[468]},{"name":"ClusGroupTypeDtc","features":[468]},{"name":"ClusGroupTypeFileServer","features":[468]},{"name":"ClusGroupTypeGenericApplication","features":[468]},{"name":"ClusGroupTypeGenericScript","features":[468]},{"name":"ClusGroupTypeGenericService","features":[468]},{"name":"ClusGroupTypeIScsiNameService","features":[468]},{"name":"ClusGroupTypeIScsiTarget","features":[468]},{"name":"ClusGroupTypeInfrastructureFileServer","features":[468]},{"name":"ClusGroupTypeMsmq","features":[468]},{"name":"ClusGroupTypePrintServer","features":[468]},{"name":"ClusGroupTypeScaleoutCluster","features":[468]},{"name":"ClusGroupTypeScaleoutFileServer","features":[468]},{"name":"ClusGroupTypeSharedVolume","features":[468]},{"name":"ClusGroupTypeStandAloneDfs","features":[468]},{"name":"ClusGroupTypeStoragePool","features":[468]},{"name":"ClusGroupTypeStorageReplica","features":[468]},{"name":"ClusGroupTypeTaskScheduler","features":[468]},{"name":"ClusGroupTypeTemporary","features":[468]},{"name":"ClusGroupTypeTsSessionBroker","features":[468]},{"name":"ClusGroupTypeUnknown","features":[468]},{"name":"ClusGroupTypeVMReplicaBroker","features":[468]},{"name":"ClusGroupTypeVMReplicaCoordinator","features":[468]},{"name":"ClusGroupTypeVirtualMachine","features":[468]},{"name":"ClusGroupTypeWins","features":[468]},{"name":"ClusNetInterface","features":[468]},{"name":"ClusNetInterfaces","features":[468]},{"name":"ClusNetwork","features":[468]},{"name":"ClusNetworkNetInterfaces","features":[468]},{"name":"ClusNetworks","features":[468]},{"name":"ClusNode","features":[468]},{"name":"ClusNodeNetInterfaces","features":[468]},{"name":"ClusNodes","features":[468]},{"name":"ClusPartition","features":[468]},{"name":"ClusPartitionEx","features":[468]},{"name":"ClusPartitions","features":[468]},{"name":"ClusProperties","features":[468]},{"name":"ClusProperty","features":[468]},{"name":"ClusPropertyValue","features":[468]},{"name":"ClusPropertyValueData","features":[468]},{"name":"ClusPropertyValues","features":[468]},{"name":"ClusRefObject","features":[468]},{"name":"ClusRegistryKeys","features":[468]},{"name":"ClusRemoveClusterHealthFault","features":[468]},{"name":"ClusResDependencies","features":[468]},{"name":"ClusResDependents","features":[468]},{"name":"ClusResGroup","features":[468]},{"name":"ClusResGroupPreferredOwnerNodes","features":[468]},{"name":"ClusResGroupResources","features":[468]},{"name":"ClusResGroups","features":[468]},{"name":"ClusResPossibleOwnerNodes","features":[468]},{"name":"ClusResType","features":[468]},{"name":"ClusResTypePossibleOwnerNodes","features":[468]},{"name":"ClusResTypeResources","features":[468]},{"name":"ClusResTypes","features":[468]},{"name":"ClusResource","features":[468]},{"name":"ClusResources","features":[468]},{"name":"ClusScsiAddress","features":[468]},{"name":"ClusVersion","features":[468]},{"name":"ClusWorkerCheckTerminate","features":[305,468]},{"name":"ClusWorkerCreate","features":[305,468]},{"name":"ClusWorkerTerminate","features":[305,468]},{"name":"ClusWorkerTerminateEx","features":[305,468]},{"name":"ClusWorkersTerminate","features":[305,468]},{"name":"ClusapiSetReasonHandler","features":[305,468]},{"name":"Cluster","features":[468]},{"name":"ClusterAddGroupToAffinityRule","features":[468]},{"name":"ClusterAddGroupToGroupSet","features":[468]},{"name":"ClusterAddGroupToGroupSetWithDomains","features":[468]},{"name":"ClusterAddGroupToGroupSetWithDomainsEx","features":[468]},{"name":"ClusterAffinityRuleControl","features":[468]},{"name":"ClusterClearBackupStateForSharedVolume","features":[468]},{"name":"ClusterCloseEnum","features":[468]},{"name":"ClusterCloseEnumEx","features":[468]},{"name":"ClusterControl","features":[468]},{"name":"ClusterControlEx","features":[468]},{"name":"ClusterCreateAffinityRule","features":[468]},{"name":"ClusterDecrypt","features":[468]},{"name":"ClusterEncrypt","features":[468]},{"name":"ClusterEnum","features":[468]},{"name":"ClusterEnumEx","features":[468]},{"name":"ClusterGetEnumCount","features":[468]},{"name":"ClusterGetEnumCountEx","features":[468]},{"name":"ClusterGetVolumeNameForVolumeMountPoint","features":[305,468]},{"name":"ClusterGetVolumePathName","features":[305,468]},{"name":"ClusterGroupAllowFailback","features":[468]},{"name":"ClusterGroupCloseEnum","features":[468]},{"name":"ClusterGroupCloseEnumEx","features":[468]},{"name":"ClusterGroupControl","features":[468]},{"name":"ClusterGroupControlEx","features":[468]},{"name":"ClusterGroupEnum","features":[468]},{"name":"ClusterGroupEnumEx","features":[468]},{"name":"ClusterGroupFailbackTypeCount","features":[468]},{"name":"ClusterGroupFailed","features":[468]},{"name":"ClusterGroupGetEnumCount","features":[468]},{"name":"ClusterGroupGetEnumCountEx","features":[468]},{"name":"ClusterGroupOffline","features":[468]},{"name":"ClusterGroupOnline","features":[468]},{"name":"ClusterGroupOpenEnum","features":[468]},{"name":"ClusterGroupOpenEnumEx","features":[468]},{"name":"ClusterGroupPartialOnline","features":[468]},{"name":"ClusterGroupPending","features":[468]},{"name":"ClusterGroupPreventFailback","features":[468]},{"name":"ClusterGroupSetCloseEnum","features":[468]},{"name":"ClusterGroupSetControl","features":[468]},{"name":"ClusterGroupSetControlEx","features":[468]},{"name":"ClusterGroupSetEnum","features":[468]},{"name":"ClusterGroupSetGetEnumCount","features":[468]},{"name":"ClusterGroupSetOpenEnum","features":[468]},{"name":"ClusterGroupStateUnknown","features":[468]},{"name":"ClusterIsPathOnSharedVolume","features":[305,468]},{"name":"ClusterNames","features":[468]},{"name":"ClusterNetInterfaceCloseEnum","features":[468]},{"name":"ClusterNetInterfaceControl","features":[468]},{"name":"ClusterNetInterfaceControlEx","features":[468]},{"name":"ClusterNetInterfaceEnum","features":[468]},{"name":"ClusterNetInterfaceFailed","features":[468]},{"name":"ClusterNetInterfaceOpenEnum","features":[468]},{"name":"ClusterNetInterfaceStateUnknown","features":[468]},{"name":"ClusterNetInterfaceUnavailable","features":[468]},{"name":"ClusterNetInterfaceUnreachable","features":[468]},{"name":"ClusterNetInterfaceUp","features":[468]},{"name":"ClusterNetworkCloseEnum","features":[468]},{"name":"ClusterNetworkControl","features":[468]},{"name":"ClusterNetworkControlEx","features":[468]},{"name":"ClusterNetworkDown","features":[468]},{"name":"ClusterNetworkEnum","features":[468]},{"name":"ClusterNetworkGetEnumCount","features":[468]},{"name":"ClusterNetworkOpenEnum","features":[468]},{"name":"ClusterNetworkPartitioned","features":[468]},{"name":"ClusterNetworkRoleClientAccess","features":[468]},{"name":"ClusterNetworkRoleInternalAndClient","features":[468]},{"name":"ClusterNetworkRoleInternalUse","features":[468]},{"name":"ClusterNetworkRoleNone","features":[468]},{"name":"ClusterNetworkStateUnknown","features":[468]},{"name":"ClusterNetworkUnavailable","features":[468]},{"name":"ClusterNetworkUp","features":[468]},{"name":"ClusterNodeCloseEnum","features":[468]},{"name":"ClusterNodeCloseEnumEx","features":[468]},{"name":"ClusterNodeControl","features":[468]},{"name":"ClusterNodeControlEx","features":[468]},{"name":"ClusterNodeDown","features":[468]},{"name":"ClusterNodeDrainStatusCount","features":[468]},{"name":"ClusterNodeEnum","features":[468]},{"name":"ClusterNodeEnumEx","features":[468]},{"name":"ClusterNodeGetEnumCount","features":[468]},{"name":"ClusterNodeGetEnumCountEx","features":[468]},{"name":"ClusterNodeJoining","features":[468]},{"name":"ClusterNodeOpenEnum","features":[468]},{"name":"ClusterNodeOpenEnumEx","features":[468]},{"name":"ClusterNodePaused","features":[468]},{"name":"ClusterNodeReplacement","features":[468]},{"name":"ClusterNodeResumeFailbackTypeCount","features":[468]},{"name":"ClusterNodeStateUnknown","features":[468]},{"name":"ClusterNodeUp","features":[468]},{"name":"ClusterOpenEnum","features":[468]},{"name":"ClusterOpenEnumEx","features":[468]},{"name":"ClusterPrepareSharedVolumeForBackup","features":[468]},{"name":"ClusterRegBatchAddCommand","features":[468]},{"name":"ClusterRegBatchCloseNotification","features":[468]},{"name":"ClusterRegBatchReadCommand","features":[468]},{"name":"ClusterRegCloseBatch","features":[305,468]},{"name":"ClusterRegCloseBatchEx","features":[468]},{"name":"ClusterRegCloseBatchNotifyPort","features":[468]},{"name":"ClusterRegCloseKey","features":[468,366]},{"name":"ClusterRegCloseReadBatch","features":[468]},{"name":"ClusterRegCloseReadBatchEx","features":[468]},{"name":"ClusterRegCloseReadBatchReply","features":[468]},{"name":"ClusterRegCreateBatch","features":[468,366]},{"name":"ClusterRegCreateBatchNotifyPort","features":[468,366]},{"name":"ClusterRegCreateKey","features":[305,468,308,366]},{"name":"ClusterRegCreateKeyEx","features":[305,468,308,366]},{"name":"ClusterRegCreateReadBatch","features":[468,366]},{"name":"ClusterRegDeleteKey","features":[468,366]},{"name":"ClusterRegDeleteKeyEx","features":[468,366]},{"name":"ClusterRegDeleteValue","features":[468,366]},{"name":"ClusterRegDeleteValueEx","features":[468,366]},{"name":"ClusterRegEnumKey","features":[305,468,366]},{"name":"ClusterRegEnumValue","features":[468,366]},{"name":"ClusterRegGetBatchNotification","features":[468]},{"name":"ClusterRegGetKeySecurity","features":[468,308,366]},{"name":"ClusterRegOpenKey","features":[468,366]},{"name":"ClusterRegQueryInfoKey","features":[305,468,366]},{"name":"ClusterRegQueryValue","features":[468,366]},{"name":"ClusterRegReadBatchAddCommand","features":[468]},{"name":"ClusterRegReadBatchReplyNextCommand","features":[468]},{"name":"ClusterRegSetKeySecurity","features":[468,308,366]},{"name":"ClusterRegSetKeySecurityEx","features":[468,308,366]},{"name":"ClusterRegSetValue","features":[468,366]},{"name":"ClusterRegSetValueEx","features":[468,366]},{"name":"ClusterRegSyncDatabase","features":[468]},{"name":"ClusterRemoveAffinityRule","features":[468]},{"name":"ClusterRemoveGroupFromAffinityRule","features":[468]},{"name":"ClusterRemoveGroupFromGroupSet","features":[468]},{"name":"ClusterRemoveGroupFromGroupSetEx","features":[468]},{"name":"ClusterResourceApplicationOSHeartBeat","features":[468]},{"name":"ClusterResourceApplicationReady","features":[468]},{"name":"ClusterResourceApplicationStateUnknown","features":[468]},{"name":"ClusterResourceCloseEnum","features":[468]},{"name":"ClusterResourceCloseEnumEx","features":[468]},{"name":"ClusterResourceControl","features":[468]},{"name":"ClusterResourceControlAsUser","features":[468]},{"name":"ClusterResourceControlAsUserEx","features":[468]},{"name":"ClusterResourceControlEx","features":[468]},{"name":"ClusterResourceDontRestart","features":[468]},{"name":"ClusterResourceEmbeddedFailureActionLogOnly","features":[468]},{"name":"ClusterResourceEmbeddedFailureActionNone","features":[468]},{"name":"ClusterResourceEmbeddedFailureActionRecover","features":[468]},{"name":"ClusterResourceEnum","features":[468]},{"name":"ClusterResourceEnumEx","features":[468]},{"name":"ClusterResourceFailed","features":[468]},{"name":"ClusterResourceGetEnumCount","features":[468]},{"name":"ClusterResourceGetEnumCountEx","features":[468]},{"name":"ClusterResourceInherited","features":[468]},{"name":"ClusterResourceInitializing","features":[468]},{"name":"ClusterResourceOffline","features":[468]},{"name":"ClusterResourceOfflinePending","features":[468]},{"name":"ClusterResourceOnline","features":[468]},{"name":"ClusterResourceOnlinePending","features":[468]},{"name":"ClusterResourceOpenEnum","features":[468]},{"name":"ClusterResourceOpenEnumEx","features":[468]},{"name":"ClusterResourcePending","features":[468]},{"name":"ClusterResourceRestartActionCount","features":[468]},{"name":"ClusterResourceRestartNoNotify","features":[468]},{"name":"ClusterResourceRestartNotify","features":[468]},{"name":"ClusterResourceStateUnknown","features":[468]},{"name":"ClusterResourceTypeCloseEnum","features":[468]},{"name":"ClusterResourceTypeControl","features":[468]},{"name":"ClusterResourceTypeControlAsUser","features":[468]},{"name":"ClusterResourceTypeControlAsUserEx","features":[468]},{"name":"ClusterResourceTypeControlEx","features":[468]},{"name":"ClusterResourceTypeEnum","features":[468]},{"name":"ClusterResourceTypeGetEnumCount","features":[468]},{"name":"ClusterResourceTypeOpenEnum","features":[468]},{"name":"ClusterRoleClustered","features":[468]},{"name":"ClusterRoleDFSReplicatedFolder","features":[468]},{"name":"ClusterRoleDHCP","features":[468]},{"name":"ClusterRoleDTC","features":[468]},{"name":"ClusterRoleDistributedFileSystem","features":[468]},{"name":"ClusterRoleDistributedNetworkName","features":[468]},{"name":"ClusterRoleFileServer","features":[468]},{"name":"ClusterRoleFileShare","features":[468]},{"name":"ClusterRoleFileShareWitness","features":[468]},{"name":"ClusterRoleGenericApplication","features":[468]},{"name":"ClusterRoleGenericScript","features":[468]},{"name":"ClusterRoleGenericService","features":[468]},{"name":"ClusterRoleHardDisk","features":[468]},{"name":"ClusterRoleIPAddress","features":[468]},{"name":"ClusterRoleIPV6Address","features":[468]},{"name":"ClusterRoleIPV6TunnelAddress","features":[468]},{"name":"ClusterRoleISCSINameServer","features":[468]},{"name":"ClusterRoleISCSITargetServer","features":[468]},{"name":"ClusterRoleMSMQ","features":[468]},{"name":"ClusterRoleNFS","features":[468]},{"name":"ClusterRoleNetworkFileSystem","features":[468]},{"name":"ClusterRoleNetworkName","features":[468]},{"name":"ClusterRolePhysicalDisk","features":[468]},{"name":"ClusterRolePrintServer","features":[468]},{"name":"ClusterRoleSODAFileServer","features":[468]},{"name":"ClusterRoleStandAloneNamespaceServer","features":[468]},{"name":"ClusterRoleStoragePool","features":[468]},{"name":"ClusterRoleTaskScheduler","features":[468]},{"name":"ClusterRoleUnclustered","features":[468]},{"name":"ClusterRoleUnknown","features":[468]},{"name":"ClusterRoleVirtualMachine","features":[468]},{"name":"ClusterRoleVirtualMachineConfiguration","features":[468]},{"name":"ClusterRoleVirtualMachineReplicaBroker","features":[468]},{"name":"ClusterRoleVolumeShadowCopyServiceTask","features":[468]},{"name":"ClusterRoleWINS","features":[468]},{"name":"ClusterSetAccountAccess","features":[468]},{"name":"ClusterSetupPhaseAddClusterProperties","features":[468]},{"name":"ClusterSetupPhaseAddNodeToCluster","features":[468]},{"name":"ClusterSetupPhaseCleanupCOs","features":[468]},{"name":"ClusterSetupPhaseCleanupNode","features":[468]},{"name":"ClusterSetupPhaseClusterGroupOnline","features":[468]},{"name":"ClusterSetupPhaseConfigureClusSvc","features":[468]},{"name":"ClusterSetupPhaseConfigureClusterAccount","features":[468]},{"name":"ClusterSetupPhaseContinue","features":[468]},{"name":"ClusterSetupPhaseCoreGroupCleanup","features":[468]},{"name":"ClusterSetupPhaseCreateClusterAccount","features":[468]},{"name":"ClusterSetupPhaseCreateGroups","features":[468]},{"name":"ClusterSetupPhaseCreateIPAddressResources","features":[468]},{"name":"ClusterSetupPhaseCreateNetworkName","features":[468]},{"name":"ClusterSetupPhaseCreateResourceTypes","features":[468]},{"name":"ClusterSetupPhaseDeleteGroup","features":[468]},{"name":"ClusterSetupPhaseEnd","features":[468]},{"name":"ClusterSetupPhaseEvictNode","features":[468]},{"name":"ClusterSetupPhaseFailureCleanup","features":[468]},{"name":"ClusterSetupPhaseFatal","features":[468]},{"name":"ClusterSetupPhaseFormingCluster","features":[468]},{"name":"ClusterSetupPhaseGettingCurrentMembership","features":[468]},{"name":"ClusterSetupPhaseInformational","features":[468]},{"name":"ClusterSetupPhaseInitialize","features":[468]},{"name":"ClusterSetupPhaseMoveGroup","features":[468]},{"name":"ClusterSetupPhaseNodeUp","features":[468]},{"name":"ClusterSetupPhaseOfflineGroup","features":[468]},{"name":"ClusterSetupPhaseQueryClusterNameAccount","features":[468]},{"name":"ClusterSetupPhaseReport","features":[468]},{"name":"ClusterSetupPhaseStart","features":[468]},{"name":"ClusterSetupPhaseStartingClusSvc","features":[468]},{"name":"ClusterSetupPhaseValidateClusDisk","features":[468]},{"name":"ClusterSetupPhaseValidateClusterNameAccount","features":[468]},{"name":"ClusterSetupPhaseValidateNetft","features":[468]},{"name":"ClusterSetupPhaseValidateNodeState","features":[468]},{"name":"ClusterSetupPhaseWarning","features":[468]},{"name":"ClusterSharedVolumeHWSnapshotCompleted","features":[468]},{"name":"ClusterSharedVolumePrepareForFreeze","features":[468]},{"name":"ClusterSharedVolumePrepareForHWSnapshot","features":[468]},{"name":"ClusterSharedVolumeRenameInputTypeNone","features":[468]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeGuid","features":[468]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeId","features":[468]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeName","features":[468]},{"name":"ClusterSharedVolumeRenameInputTypeVolumeOffset","features":[468]},{"name":"ClusterSharedVolumeSetSnapshotState","features":[468]},{"name":"ClusterSharedVolumeSnapshotStateUnknown","features":[468]},{"name":"ClusterStateNotConfigured","features":[468]},{"name":"ClusterStateNotInstalled","features":[468]},{"name":"ClusterStateNotRunning","features":[468]},{"name":"ClusterStateRunning","features":[468]},{"name":"ClusterStorageNodeDown","features":[468]},{"name":"ClusterStorageNodePaused","features":[468]},{"name":"ClusterStorageNodeStarting","features":[468]},{"name":"ClusterStorageNodeStateUnknown","features":[468]},{"name":"ClusterStorageNodeStopping","features":[468]},{"name":"ClusterStorageNodeUp","features":[468]},{"name":"ClusterUpgradeFunctionalLevel","features":[305,468]},{"name":"ClusterUpgradePhaseInitialize","features":[468]},{"name":"ClusterUpgradePhaseInstallingNewComponents","features":[468]},{"name":"ClusterUpgradePhaseUpgradeComplete","features":[468]},{"name":"ClusterUpgradePhaseUpgradingComponents","features":[468]},{"name":"ClusterUpgradePhaseValidatingUpgrade","features":[468]},{"name":"CreateCluster","features":[305,468]},{"name":"CreateClusterAvailabilitySet","features":[305,468]},{"name":"CreateClusterGroup","features":[468]},{"name":"CreateClusterGroupEx","features":[468]},{"name":"CreateClusterGroupSet","features":[468]},{"name":"CreateClusterNameAccount","features":[305,468]},{"name":"CreateClusterNotifyPort","features":[468]},{"name":"CreateClusterNotifyPortV2","features":[468]},{"name":"CreateClusterResource","features":[468]},{"name":"CreateClusterResourceEx","features":[468]},{"name":"CreateClusterResourceType","features":[468]},{"name":"CreateClusterResourceTypeEx","features":[468]},{"name":"DNS_LENGTH","features":[468]},{"name":"DeleteClusterGroup","features":[468]},{"name":"DeleteClusterGroupEx","features":[468]},{"name":"DeleteClusterGroupSet","features":[468]},{"name":"DeleteClusterGroupSetEx","features":[468]},{"name":"DeleteClusterResource","features":[468]},{"name":"DeleteClusterResourceEx","features":[468]},{"name":"DeleteClusterResourceType","features":[468]},{"name":"DeleteClusterResourceTypeEx","features":[468]},{"name":"DestroyCluster","features":[305,468]},{"name":"DestroyClusterGroup","features":[468]},{"name":"DestroyClusterGroupEx","features":[468]},{"name":"DetermineCNOResTypeFromCluster","features":[468]},{"name":"DetermineCNOResTypeFromNodelist","features":[468]},{"name":"DetermineClusterCloudTypeFromCluster","features":[468]},{"name":"DetermineClusterCloudTypeFromNodelist","features":[468]},{"name":"DoNotFailbackGroups","features":[468]},{"name":"DomainNames","features":[468]},{"name":"ENABLE_CLUSTER_SHARED_VOLUMES","features":[468]},{"name":"EvictClusterNode","features":[468]},{"name":"EvictClusterNodeEx","features":[468]},{"name":"EvictClusterNodeEx2","features":[468]},{"name":"FAILURE_TYPE","features":[468]},{"name":"FAILURE_TYPE_EMBEDDED","features":[468]},{"name":"FAILURE_TYPE_GENERAL","features":[468]},{"name":"FAILURE_TYPE_NETWORK_LOSS","features":[468]},{"name":"FE_UPGRADE_VERSION","features":[468]},{"name":"FILESHARE_CHANGE","features":[468]},{"name":"FILESHARE_CHANGE_ADD","features":[468]},{"name":"FILESHARE_CHANGE_DEL","features":[468]},{"name":"FILESHARE_CHANGE_ENUM","features":[468]},{"name":"FILESHARE_CHANGE_LIST","features":[468]},{"name":"FILESHARE_CHANGE_MODIFY","features":[468]},{"name":"FILESHARE_CHANGE_NONE","features":[468]},{"name":"FailClusterResource","features":[468]},{"name":"FailClusterResourceEx","features":[468]},{"name":"FailbackGroupsImmediately","features":[468]},{"name":"FailbackGroupsPerPolicy","features":[468]},{"name":"FreeClusterCrypt","features":[468]},{"name":"FreeClusterHealthFault","features":[468]},{"name":"FreeClusterHealthFaultArray","features":[468]},{"name":"GET_OPERATION_CONTEXT_PARAMS","features":[468]},{"name":"GROUPSET_READY_SETTING_APPLICATION_READY","features":[468]},{"name":"GROUPSET_READY_SETTING_DELAY","features":[468]},{"name":"GROUPSET_READY_SETTING_ONLINE","features":[468]},{"name":"GROUPSET_READY_SETTING_OS_HEARTBEAT","features":[468]},{"name":"GROUP_FAILURE_INFO","features":[468]},{"name":"GROUP_FAILURE_INFO_BUFFER","features":[468]},{"name":"GROUP_FAILURE_INFO_VERSION_1","features":[468]},{"name":"GRP_PLACEMENT_OPTIONS","features":[468]},{"name":"GRP_PLACEMENT_OPTIONS_ALL","features":[468]},{"name":"GRP_PLACEMENT_OPTIONS_DEFAULT","features":[468]},{"name":"GRP_PLACEMENT_OPTIONS_DISABLE_AUTOBALANCING","features":[468]},{"name":"GRP_PLACEMENT_OPTIONS_MIN_VALUE","features":[468]},{"name":"GUID_PRESENT","features":[468]},{"name":"GetClusterFromGroup","features":[468]},{"name":"GetClusterFromNetInterface","features":[468]},{"name":"GetClusterFromNetwork","features":[468]},{"name":"GetClusterFromNode","features":[468]},{"name":"GetClusterFromResource","features":[468]},{"name":"GetClusterGroupKey","features":[468,366]},{"name":"GetClusterGroupState","features":[468]},{"name":"GetClusterInformation","features":[468]},{"name":"GetClusterKey","features":[468,366]},{"name":"GetClusterNetInterface","features":[468]},{"name":"GetClusterNetInterfaceKey","features":[468,366]},{"name":"GetClusterNetInterfaceState","features":[468]},{"name":"GetClusterNetworkId","features":[468]},{"name":"GetClusterNetworkKey","features":[468,366]},{"name":"GetClusterNetworkState","features":[468]},{"name":"GetClusterNodeId","features":[468]},{"name":"GetClusterNodeKey","features":[468,366]},{"name":"GetClusterNodeState","features":[468]},{"name":"GetClusterNotify","features":[468]},{"name":"GetClusterNotifyV2","features":[468]},{"name":"GetClusterQuorumResource","features":[468]},{"name":"GetClusterResourceDependencyExpression","features":[468]},{"name":"GetClusterResourceKey","features":[468,366]},{"name":"GetClusterResourceNetworkName","features":[305,468]},{"name":"GetClusterResourceState","features":[468]},{"name":"GetClusterResourceTypeKey","features":[468,366]},{"name":"GetNodeCloudTypeDW","features":[468]},{"name":"GetNodeClusterState","features":[468]},{"name":"GetNotifyEventHandle","features":[305,468]},{"name":"HCHANGE","features":[468]},{"name":"HCI_UPGRADE_BIT","features":[468]},{"name":"HCLUSCRYPTPROVIDER","features":[468]},{"name":"HCLUSENUM","features":[468]},{"name":"HCLUSENUMEX","features":[468]},{"name":"HCLUSTER","features":[468]},{"name":"HGROUP","features":[468]},{"name":"HGROUPENUM","features":[468]},{"name":"HGROUPENUMEX","features":[468]},{"name":"HGROUPSET","features":[468]},{"name":"HGROUPSETENUM","features":[468]},{"name":"HNETINTERFACE","features":[468]},{"name":"HNETINTERFACEENUM","features":[468]},{"name":"HNETWORK","features":[468]},{"name":"HNETWORKENUM","features":[468]},{"name":"HNODE","features":[468]},{"name":"HNODEENUM","features":[468]},{"name":"HNODEENUMEX","features":[468]},{"name":"HREGBATCH","features":[468]},{"name":"HREGBATCHNOTIFICATION","features":[468]},{"name":"HREGBATCHPORT","features":[468]},{"name":"HREGREADBATCH","features":[468]},{"name":"HREGREADBATCHREPLY","features":[468]},{"name":"HRESENUM","features":[468]},{"name":"HRESENUMEX","features":[468]},{"name":"HRESOURCE","features":[468]},{"name":"HRESTYPEENUM","features":[468]},{"name":"IGetClusterDataInfo","features":[468]},{"name":"IGetClusterGroupInfo","features":[468]},{"name":"IGetClusterNetInterfaceInfo","features":[468]},{"name":"IGetClusterNetworkInfo","features":[468]},{"name":"IGetClusterNodeInfo","features":[468]},{"name":"IGetClusterObjectInfo","features":[468]},{"name":"IGetClusterResourceInfo","features":[468]},{"name":"IGetClusterUIInfo","features":[468]},{"name":"ISClusApplication","features":[468,356]},{"name":"ISClusCryptoKeys","features":[468,356]},{"name":"ISClusDisk","features":[468,356]},{"name":"ISClusDisks","features":[468,356]},{"name":"ISClusNetInterface","features":[468,356]},{"name":"ISClusNetInterfaces","features":[468,356]},{"name":"ISClusNetwork","features":[468,356]},{"name":"ISClusNetworkNetInterfaces","features":[468,356]},{"name":"ISClusNetworks","features":[468,356]},{"name":"ISClusNode","features":[468,356]},{"name":"ISClusNodeNetInterfaces","features":[468,356]},{"name":"ISClusNodes","features":[468,356]},{"name":"ISClusPartition","features":[468,356]},{"name":"ISClusPartitionEx","features":[468,356]},{"name":"ISClusPartitions","features":[468,356]},{"name":"ISClusProperties","features":[468,356]},{"name":"ISClusProperty","features":[468,356]},{"name":"ISClusPropertyValue","features":[468,356]},{"name":"ISClusPropertyValueData","features":[468,356]},{"name":"ISClusPropertyValues","features":[468,356]},{"name":"ISClusRefObject","features":[468,356]},{"name":"ISClusRegistryKeys","features":[468,356]},{"name":"ISClusResDependencies","features":[468,356]},{"name":"ISClusResDependents","features":[468,356]},{"name":"ISClusResGroup","features":[468,356]},{"name":"ISClusResGroupPreferredOwnerNodes","features":[468,356]},{"name":"ISClusResGroupResources","features":[468,356]},{"name":"ISClusResGroups","features":[468,356]},{"name":"ISClusResPossibleOwnerNodes","features":[468,356]},{"name":"ISClusResType","features":[468,356]},{"name":"ISClusResTypePossibleOwnerNodes","features":[468,356]},{"name":"ISClusResTypeResources","features":[468,356]},{"name":"ISClusResTypes","features":[468,356]},{"name":"ISClusResource","features":[468,356]},{"name":"ISClusResources","features":[468,356]},{"name":"ISClusScsiAddress","features":[468,356]},{"name":"ISClusVersion","features":[468,356]},{"name":"ISCluster","features":[468,356]},{"name":"ISClusterNames","features":[468,356]},{"name":"ISDomainNames","features":[468,356]},{"name":"IWCContextMenuCallback","features":[468]},{"name":"IWCPropertySheetCallback","features":[468]},{"name":"IWCWizard97Callback","features":[468]},{"name":"IWCWizardCallback","features":[468]},{"name":"IWEExtendContextMenu","features":[468]},{"name":"IWEExtendPropertySheet","features":[468]},{"name":"IWEExtendWizard","features":[468]},{"name":"IWEExtendWizard97","features":[468]},{"name":"IWEInvokeCommand","features":[468]},{"name":"InitializeClusterHealthFault","features":[468]},{"name":"InitializeClusterHealthFaultArray","features":[468]},{"name":"IsFileOnClusterSharedVolume","features":[305,468]},{"name":"LOCKED_MODE_FLAGS_DONT_REMOVE_FROM_MOVE_QUEUE","features":[468]},{"name":"LOG_ERROR","features":[468]},{"name":"LOG_INFORMATION","features":[468]},{"name":"LOG_LEVEL","features":[468]},{"name":"LOG_SEVERE","features":[468]},{"name":"LOG_WARNING","features":[468]},{"name":"LPGROUP_CALLBACK_EX","features":[468]},{"name":"LPNODE_CALLBACK","features":[468]},{"name":"LPRESOURCE_CALLBACK","features":[468]},{"name":"LPRESOURCE_CALLBACK_EX","features":[468]},{"name":"MAINTENANCE_MODE_TYPE_ENUM","features":[468]},{"name":"MAINTENANCE_MODE_V2_SIG","features":[468]},{"name":"MAX_CLUSTERNAME_LENGTH","features":[468]},{"name":"MAX_CO_PASSWORD_LENGTH","features":[468]},{"name":"MAX_CO_PASSWORD_LENGTHEX","features":[468]},{"name":"MAX_CO_PASSWORD_STORAGEEX","features":[468]},{"name":"MAX_CREATINGDC_LENGTH","features":[468]},{"name":"MAX_OBJECTID","features":[468]},{"name":"MINIMUM_NEVER_PREEMPT_PRIORITY","features":[468]},{"name":"MINIMUM_PREEMPTOR_PRIORITY","features":[468]},{"name":"MN_UPGRADE_VERSION","features":[468]},{"name":"MONITOR_STATE","features":[305,468]},{"name":"MaintenanceModeTypeDisableIsAliveCheck","features":[468]},{"name":"MaintenanceModeTypeOfflineResource","features":[468]},{"name":"MaintenanceModeTypeUnclusterResource","features":[468]},{"name":"ModifyQuorum","features":[468]},{"name":"MoveClusterGroup","features":[468]},{"name":"MoveClusterGroupEx","features":[468]},{"name":"MoveClusterGroupEx2","features":[468]},{"name":"NINETEEN_H1_UPGRADE_VERSION","features":[468]},{"name":"NINETEEN_H2_UPGRADE_VERSION","features":[468]},{"name":"NI_UPGRADE_VERSION","features":[468]},{"name":"NNLEN","features":[468]},{"name":"NODE_CLUSTER_STATE","features":[468]},{"name":"NOTIFY_FILTER_AND_TYPE","features":[468]},{"name":"NT10_MAJOR_VERSION","features":[468]},{"name":"NT11_MAJOR_VERSION","features":[468]},{"name":"NT12_MAJOR_VERSION","features":[468]},{"name":"NT13_MAJOR_VERSION","features":[468]},{"name":"NT4SP4_MAJOR_VERSION","features":[468]},{"name":"NT4_MAJOR_VERSION","features":[468]},{"name":"NT51_MAJOR_VERSION","features":[468]},{"name":"NT5_MAJOR_VERSION","features":[468]},{"name":"NT6_MAJOR_VERSION","features":[468]},{"name":"NT7_MAJOR_VERSION","features":[468]},{"name":"NT8_MAJOR_VERSION","features":[468]},{"name":"NT9_MAJOR_VERSION","features":[468]},{"name":"NodeDrainStatusCompleted","features":[468]},{"name":"NodeDrainStatusFailed","features":[468]},{"name":"NodeDrainStatusInProgress","features":[468]},{"name":"NodeDrainStatusNotInitiated","features":[468]},{"name":"NodeStatusAvoidPlacement","features":[468]},{"name":"NodeStatusDrainCompleted","features":[468]},{"name":"NodeStatusDrainFailed","features":[468]},{"name":"NodeStatusDrainInProgress","features":[468]},{"name":"NodeStatusIsolated","features":[468]},{"name":"NodeStatusMax","features":[468]},{"name":"NodeStatusNormal","features":[468]},{"name":"NodeStatusQuarantined","features":[468]},{"name":"NodeUtilizationInfoElement","features":[468]},{"name":"OfflineClusterGroup","features":[468]},{"name":"OfflineClusterGroupEx","features":[468]},{"name":"OfflineClusterGroupEx2","features":[468]},{"name":"OfflineClusterResource","features":[468]},{"name":"OfflineClusterResourceEx","features":[468]},{"name":"OfflineClusterResourceEx2","features":[468]},{"name":"OnlineClusterGroup","features":[468]},{"name":"OnlineClusterGroupEx","features":[468]},{"name":"OnlineClusterGroupEx2","features":[468]},{"name":"OnlineClusterResource","features":[468]},{"name":"OnlineClusterResourceEx","features":[468]},{"name":"OnlineClusterResourceEx2","features":[468]},{"name":"OpenCluster","features":[468]},{"name":"OpenClusterCryptProvider","features":[468]},{"name":"OpenClusterCryptProviderEx","features":[468]},{"name":"OpenClusterEx","features":[468]},{"name":"OpenClusterGroup","features":[468]},{"name":"OpenClusterGroupEx","features":[468]},{"name":"OpenClusterGroupSet","features":[468]},{"name":"OpenClusterNetInterface","features":[468]},{"name":"OpenClusterNetInterfaceEx","features":[468]},{"name":"OpenClusterNetwork","features":[468]},{"name":"OpenClusterNetworkEx","features":[468]},{"name":"OpenClusterNode","features":[468]},{"name":"OpenClusterNodeById","features":[468]},{"name":"OpenClusterNodeEx","features":[468]},{"name":"OpenClusterResource","features":[468]},{"name":"OpenClusterResourceEx","features":[468]},{"name":"OperationalQuorum","features":[468]},{"name":"PARBITRATE_ROUTINE","features":[468]},{"name":"PARM_WPR_WATCHDOG_FOR_CURRENT_RESOURCE_CALL_ROUTINE","features":[468]},{"name":"PBEGIN_RESCALL_AS_USER_ROUTINE","features":[305,468]},{"name":"PBEGIN_RESCALL_ROUTINE","features":[305,468]},{"name":"PBEGIN_RESTYPECALL_AS_USER_ROUTINE","features":[305,468]},{"name":"PBEGIN_RESTYPECALL_ROUTINE","features":[305,468]},{"name":"PCANCEL_ROUTINE","features":[468]},{"name":"PCHANGE_RESOURCE_PROCESS_FOR_DUMPS","features":[305,468]},{"name":"PCHANGE_RES_TYPE_PROCESS_FOR_DUMPS","features":[305,468]},{"name":"PCLOSE_CLUSTER_CRYPT_PROVIDER","features":[468]},{"name":"PCLOSE_ROUTINE","features":[468]},{"name":"PCLUSAPIClusWorkerCheckTerminate","features":[305,468]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE","features":[305,468]},{"name":"PCLUSAPI_ADD_CLUSTER_NODE_EX","features":[305,468]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE","features":[468]},{"name":"PCLUSAPI_ADD_CLUSTER_RESOURCE_NODE_EX","features":[468]},{"name":"PCLUSAPI_ADD_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_ADD_RESOURCE_TO_CLUSTER_SHARED_VOLUMES","features":[468]},{"name":"PCLUSAPI_BACKUP_CLUSTER_DATABASE","features":[468]},{"name":"PCLUSAPI_CAN_RESOURCE_BE_DEPENDENT","features":[305,468]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP","features":[468]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX","features":[468]},{"name":"PCLUSAPI_CHANGE_CLUSTER_RESOURCE_GROUP_EX2","features":[468]},{"name":"PCLUSAPI_CLOSE_CLUSTER","features":[305,468]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP","features":[305,468]},{"name":"PCLUSAPI_CLOSE_CLUSTER_GROUP_GROUPSET","features":[305,468]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NETWORK","features":[305,468]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NET_INTERFACE","features":[305,468]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NODE","features":[305,468]},{"name":"PCLUSAPI_CLOSE_CLUSTER_NOTIFY_PORT","features":[305,468]},{"name":"PCLUSAPI_CLOSE_CLUSTER_RESOURCE","features":[305,468]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_AFFINITY_RULE","features":[468]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUPSET_WITH_DOMAINS_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_ADD_GROUP_TO_GROUP_GROUPSET","features":[468]},{"name":"PCLUSAPI_CLUSTER_AFFINITY_RULE_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_CLOSE_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_CREATE_AFFINITY_RULE","features":[468]},{"name":"PCLUSAPI_CLUSTER_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT","features":[468]},{"name":"PCLUSAPI_CLUSTER_GET_ENUM_COUNT_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_CLOSE_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_GET_ENUM_COUNT_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_GROUPSET_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_GROUP_OPEN_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CLOSE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_NETWORK_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_NETWORK_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_NETWORK_GET_ENUM_COUNT","features":[468]},{"name":"PCLUSAPI_CLUSTER_NETWORK_OPEN_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_NET_INTERFACE_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_CLOSE_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_GET_ENUM_COUNT_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_NODE_OPEN_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_OPEN_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_REG_CLOSE_KEY","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_BATCH","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY","features":[305,468,308,366]},{"name":"PCLUSAPI_CLUSTER_REG_CREATE_KEY_EX","features":[305,468,308,366]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_KEY_EX","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_DELETE_VALUE_EX","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_KEY","features":[305,468,366]},{"name":"PCLUSAPI_CLUSTER_REG_ENUM_VALUE","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_GET_KEY_SECURITY","features":[468,308,366]},{"name":"PCLUSAPI_CLUSTER_REG_OPEN_KEY","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_INFO_KEY","features":[305,468,366]},{"name":"PCLUSAPI_CLUSTER_REG_QUERY_VALUE","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY","features":[468,308,366]},{"name":"PCLUSAPI_CLUSTER_REG_SET_KEY_SECURITY_EX","features":[468,308,366]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_SET_VALUE_EX","features":[468,366]},{"name":"PCLUSAPI_CLUSTER_REG_SYNC_DATABASE","features":[468]},{"name":"PCLUSAPI_CLUSTER_REMOVE_AFFINITY_RULE","features":[468]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_AFFINITY_RULE","features":[468]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET","features":[468]},{"name":"PCLUSAPI_CLUSTER_REMOVE_GROUP_FROM_GROUPSET_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CLOSE_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_AS_USER_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_GET_ENUM_COUNT_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_OPEN_ENUM_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CLOSE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_AS_USER_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_CONTROL_EX","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_GET_ENUM_COUNT","features":[468]},{"name":"PCLUSAPI_CLUSTER_RESOURCE_TYPE_OPEN_ENUM","features":[468]},{"name":"PCLUSAPI_CLUSTER_UPGRADE","features":[305,468]},{"name":"PCLUSAPI_CLUS_WORKER_CREATE","features":[305,468]},{"name":"PCLUSAPI_CLUS_WORKER_TERMINATE","features":[305,468]},{"name":"PCLUSAPI_CREATE_CLUSTER","features":[305,468]},{"name":"PCLUSAPI_CREATE_CLUSTER_AVAILABILITY_SET","features":[305,468]},{"name":"PCLUSAPI_CREATE_CLUSTER_CNOLESS","features":[305,468]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUPEX","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_GROUP_GROUPSET","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_NAME_ACCOUNT","features":[305,468]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_NOTIFY_PORT_V2","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_EX","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE","features":[468]},{"name":"PCLUSAPI_CREATE_CLUSTER_RESOURCE_TYPE_EX","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_EX","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_GROUP_GROUPSET_EX","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_EX","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE","features":[468]},{"name":"PCLUSAPI_DELETE_CLUSTER_RESOURCE_TYPE_EX","features":[468]},{"name":"PCLUSAPI_DESTROY_CLUSTER","features":[305,468]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP","features":[468]},{"name":"PCLUSAPI_DESTROY_CLUSTER_GROUP_EX","features":[468]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE","features":[468]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX","features":[468]},{"name":"PCLUSAPI_EVICT_CLUSTER_NODE_EX2","features":[468]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE","features":[468]},{"name":"PCLUSAPI_FAIL_CLUSTER_RESOURCE_EX","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_GROUP_GROUPSET","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NETWORK","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NET_INTERFACE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_NODE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_FROM_RESOURCE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_KEY","features":[468,366]},{"name":"PCLUSAPI_GET_CLUSTER_GROUP_STATE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_INFORMATION","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_KEY","features":[468,366]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_ID","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_KEY","features":[468,366]},{"name":"PCLUSAPI_GET_CLUSTER_NETWORK_STATE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_KEY","features":[468,366]},{"name":"PCLUSAPI_GET_CLUSTER_NET_INTERFACE_STATE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_ID","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_KEY","features":[468,366]},{"name":"PCLUSAPI_GET_CLUSTER_NODE_STATE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_NOTIFY_V2","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_QUORUM_RESOURCE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_KEY","features":[468,366]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_NETWORK_NAME","features":[305,468]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_STATE","features":[468]},{"name":"PCLUSAPI_GET_CLUSTER_RESOURCE_TYPE_KEY","features":[468,366]},{"name":"PCLUSAPI_GET_NODE_CLUSTER_STATE","features":[468]},{"name":"PCLUSAPI_GET_NOTIFY_EVENT_HANDLE_V2","features":[305,468]},{"name":"PCLUSAPI_IS_FILE_ON_CLUSTER_SHARED_VOLUME","features":[305,468]},{"name":"PCLUSAPI_MOVE_CLUSTER_GROUP","features":[468]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_GROUP","features":[468]},{"name":"PCLUSAPI_OFFLINE_CLUSTER_RESOURCE","features":[468]},{"name":"PCLUSAPI_ONLINE_CLUSTER_GROUP","features":[468]},{"name":"PCLUSAPI_ONLINE_CLUSTER_RESOURCE","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_EX","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_EX","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_GROUP_GROUPSET","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETINTERFACE_EX","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_NETWORK_EX","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_NET_INTERFACE","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_NODE_EX","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE","features":[468]},{"name":"PCLUSAPI_OPEN_CLUSTER_RESOURCE_EX","features":[468]},{"name":"PCLUSAPI_OPEN_NODE_BY_ID","features":[468]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE","features":[468]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX","features":[305,468]},{"name":"PCLUSAPI_PAUSE_CLUSTER_NODE_EX2","features":[305,468]},{"name":"PCLUSAPI_PFN_REASON_HANDLER","features":[305,468]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY","features":[305,468]},{"name":"PCLUSAPI_REGISTER_CLUSTER_NOTIFY_V2","features":[305,468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_GROUP_TO_GROUP_GROUPSET_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_NAME_ACCOUNT","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_DEPENDENCY_EX","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE","features":[468]},{"name":"PCLUSAPI_REMOVE_CLUSTER_RESOURCE_NODE_EX","features":[468]},{"name":"PCLUSAPI_REMOVE_CROSS_CLUSTER_GROUPSET_DEPENDENCY","features":[468]},{"name":"PCLUSAPI_REMOVE_RESOURCE_FROM_CLUSTER_SHARED_VOLUMES","features":[468]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE","features":[468]},{"name":"PCLUSAPI_RESTART_CLUSTER_RESOURCE_EX","features":[468]},{"name":"PCLUSAPI_RESTORE_CLUSTER_DATABASE","features":[305,468]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE","features":[468]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX","features":[468]},{"name":"PCLUSAPI_RESUME_CLUSTER_NODE_EX2","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_GROUPSET_DEPENDENCY_EXPRESSION_EX","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NAME_EX","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_GROUP_NODE_LIST_EX","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_NAME_EX","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_NAME_EX","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_NETWORK_PRIORITY_ORDER","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_QUORUM_RESOURCE_EX","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_DEPENDENCY_EXPRESSION","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_RESOURCE_NAME_EX","features":[468]},{"name":"PCLUSAPI_SET_CLUSTER_SERVICE_ACCOUNT_PASSWORD","features":[305,468]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION","features":[468]},{"name":"PCLUSAPI_SET_GROUP_DEPENDENCY_EXPRESSION_EX","features":[468]},{"name":"PCLUSAPI_SET_REASON_HANDLER","features":[305,468]},{"name":"PCLUSAPI_SHARED_VOLUME_SET_SNAPSHOT_STATE","features":[468]},{"name":"PCLUSAPI_SetClusterName","features":[468]},{"name":"PCLUSTER_CLEAR_BACKUP_STATE_FOR_SHARED_VOLUME","features":[468]},{"name":"PCLUSTER_DECRYPT","features":[468]},{"name":"PCLUSTER_ENCRYPT","features":[468]},{"name":"PCLUSTER_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[305,468]},{"name":"PCLUSTER_GET_VOLUME_PATH_NAME","features":[305,468]},{"name":"PCLUSTER_IS_PATH_ON_SHARED_VOLUME","features":[305,468]},{"name":"PCLUSTER_PREPARE_SHARED_VOLUME_FOR_BACKUP","features":[468]},{"name":"PCLUSTER_REG_BATCH_ADD_COMMAND","features":[468]},{"name":"PCLUSTER_REG_BATCH_CLOSE_NOTIFICATION","features":[468]},{"name":"PCLUSTER_REG_BATCH_READ_COMMAND","features":[468]},{"name":"PCLUSTER_REG_CLOSE_BATCH","features":[305,468]},{"name":"PCLUSTER_REG_CLOSE_BATCH_NOTIFY_PORT","features":[468]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH","features":[468]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_EX","features":[468]},{"name":"PCLUSTER_REG_CLOSE_READ_BATCH_REPLY","features":[468]},{"name":"PCLUSTER_REG_CREATE_BATCH_NOTIFY_PORT","features":[468,366]},{"name":"PCLUSTER_REG_CREATE_READ_BATCH","features":[468,366]},{"name":"PCLUSTER_REG_GET_BATCH_NOTIFICATION","features":[468]},{"name":"PCLUSTER_REG_READ_BATCH_ADD_COMMAND","features":[468]},{"name":"PCLUSTER_REG_READ_BATCH_REPLY_NEXT_COMMAND","features":[468]},{"name":"PCLUSTER_SETUP_PROGRESS_CALLBACK","features":[305,468]},{"name":"PCLUSTER_SET_ACCOUNT_ACCESS","features":[468]},{"name":"PCLUSTER_UPGRADE_PROGRESS_CALLBACK","features":[305,468]},{"name":"PEND_CONTROL_CALL","features":[468]},{"name":"PEND_TYPE_CONTROL_CALL","features":[468]},{"name":"PEXTEND_RES_CONTROL_CALL","features":[468]},{"name":"PEXTEND_RES_TYPE_CONTROL_CALL","features":[468]},{"name":"PFREE_CLUSTER_CRYPT","features":[468]},{"name":"PIS_ALIVE_ROUTINE","features":[305,468]},{"name":"PLACEMENT_OPTIONS","features":[468]},{"name":"PLACEMENT_OPTIONS_ALL","features":[468]},{"name":"PLACEMENT_OPTIONS_AVAILABILITY_SET_DOMAIN_AFFINITY","features":[468]},{"name":"PLACEMENT_OPTIONS_CONSIDER_OFFLINE_VMS","features":[468]},{"name":"PLACEMENT_OPTIONS_DEFAULT_PLACEMENT_OPTIONS","features":[468]},{"name":"PLACEMENT_OPTIONS_DISABLE_CSV_VM_DEPENDENCY","features":[468]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_AVAILABILTY_SET_VMS_WITH_EXISTING_TEMP_DISK","features":[468]},{"name":"PLACEMENT_OPTIONS_DONT_RESUME_VMS_WITH_EXISTING_TEMP_DISK","features":[468]},{"name":"PLACEMENT_OPTIONS_DONT_USE_CPU","features":[468]},{"name":"PLACEMENT_OPTIONS_DONT_USE_LOCAL_TEMP_DISK","features":[468]},{"name":"PLACEMENT_OPTIONS_DONT_USE_MEMORY","features":[468]},{"name":"PLACEMENT_OPTIONS_MIN_VALUE","features":[468]},{"name":"PLACEMENT_OPTIONS_SAVE_AVAILABILTY_SET_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[468]},{"name":"PLACEMENT_OPTIONS_SAVE_VMS_WITH_LOCAL_DISK_ON_DRAIN_OVERWRITE","features":[468]},{"name":"PLOG_EVENT_ROUTINE","features":[468]},{"name":"PLOOKS_ALIVE_ROUTINE","features":[305,468]},{"name":"POFFLINE_ROUTINE","features":[468]},{"name":"POFFLINE_V2_ROUTINE","features":[468]},{"name":"PONLINE_ROUTINE","features":[305,468]},{"name":"PONLINE_V2_ROUTINE","features":[305,468]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDER","features":[468]},{"name":"POPEN_CLUSTER_CRYPT_PROVIDEREX","features":[468]},{"name":"POPEN_ROUTINE","features":[468,366]},{"name":"POPEN_V2_ROUTINE","features":[468,366]},{"name":"POST_UPGRADE_VERSION_INFO","features":[468]},{"name":"PQUERY_APPINSTANCE_VERSION","features":[305,468]},{"name":"PQUORUM_RESOURCE_LOST","features":[468]},{"name":"PRAISE_RES_TYPE_NOTIFICATION","features":[468]},{"name":"PREGISTER_APPINSTANCE","features":[305,468]},{"name":"PREGISTER_APPINSTANCE_VERSION","features":[468]},{"name":"PRELEASE_ROUTINE","features":[468]},{"name":"PREQUEST_DUMP_ROUTINE","features":[305,468]},{"name":"PRESET_ALL_APPINSTANCE_VERSIONS","features":[468]},{"name":"PRESOURCE_CONTROL_ROUTINE","features":[468]},{"name":"PRESOURCE_TYPE_CONTROL_ROUTINE","features":[468]},{"name":"PRESUTIL_ADD_UNKNOWN_PROPERTIES","features":[305,468,366]},{"name":"PRESUTIL_CREATE_DIRECTORY_TREE","features":[468]},{"name":"PRESUTIL_DUP_PARAMETER_BLOCK","features":[305,468]},{"name":"PRESUTIL_DUP_STRING","features":[468]},{"name":"PRESUTIL_ENUM_PRIVATE_PROPERTIES","features":[468,366]},{"name":"PRESUTIL_ENUM_PROPERTIES","features":[305,468]},{"name":"PRESUTIL_ENUM_RESOURCES","features":[468]},{"name":"PRESUTIL_ENUM_RESOURCES_EX","features":[468]},{"name":"PRESUTIL_ENUM_RESOURCES_EX2","features":[468]},{"name":"PRESUTIL_EXPAND_ENVIRONMENT_STRINGS","features":[468]},{"name":"PRESUTIL_FIND_BINARY_PROPERTY","features":[468]},{"name":"PRESUTIL_FIND_DEPENDENT_DISK_RESOURCE_DRIVE_LETTER","features":[468]},{"name":"PRESUTIL_FIND_DWORD_PROPERTY","features":[468]},{"name":"PRESUTIL_FIND_EXPANDED_SZ_PROPERTY","features":[468]},{"name":"PRESUTIL_FIND_EXPAND_SZ_PROPERTY","features":[468]},{"name":"PRESUTIL_FIND_FILETIME_PROPERTY","features":[305,468]},{"name":"PRESUTIL_FIND_LONG_PROPERTY","features":[468]},{"name":"PRESUTIL_FIND_MULTI_SZ_PROPERTY","features":[468]},{"name":"PRESUTIL_FIND_SZ_PROPERTY","features":[468]},{"name":"PRESUTIL_FIND_ULARGEINTEGER_PROPERTY","features":[468]},{"name":"PRESUTIL_FREE_ENVIRONMENT","features":[468]},{"name":"PRESUTIL_FREE_PARAMETER_BLOCK","features":[305,468]},{"name":"PRESUTIL_GET_ALL_PROPERTIES","features":[305,468,366]},{"name":"PRESUTIL_GET_BINARY_PROPERTY","features":[468]},{"name":"PRESUTIL_GET_BINARY_VALUE","features":[468,366]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES","features":[468]},{"name":"PRESUTIL_GET_CORE_CLUSTER_RESOURCES_EX","features":[468]},{"name":"PRESUTIL_GET_DWORD_PROPERTY","features":[468]},{"name":"PRESUTIL_GET_DWORD_VALUE","features":[468,366]},{"name":"PRESUTIL_GET_ENVIRONMENT_WITH_NET_NAME","features":[468]},{"name":"PRESUTIL_GET_EXPAND_SZ_VALUE","features":[305,468,366]},{"name":"PRESUTIL_GET_FILETIME_PROPERTY","features":[305,468]},{"name":"PRESUTIL_GET_LONG_PROPERTY","features":[468]},{"name":"PRESUTIL_GET_MULTI_SZ_PROPERTY","features":[468]},{"name":"PRESUTIL_GET_PRIVATE_PROPERTIES","features":[468,366]},{"name":"PRESUTIL_GET_PROPERTIES","features":[305,468,366]},{"name":"PRESUTIL_GET_PROPERTIES_TO_PARAMETER_BLOCK","features":[305,468,366]},{"name":"PRESUTIL_GET_PROPERTY","features":[305,468,366]},{"name":"PRESUTIL_GET_PROPERTY_FORMATS","features":[305,468]},{"name":"PRESUTIL_GET_PROPERTY_SIZE","features":[305,468,366]},{"name":"PRESUTIL_GET_QWORD_VALUE","features":[468,366]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY","features":[305,468]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS","features":[305,468]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_CLASS_EX","features":[305,468]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME","features":[305,468]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_BY_NAME_EX","features":[305,468]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENCY_EX","features":[305,468]},{"name":"PRESUTIL_GET_RESOURCE_DEPENDENTIP_ADDRESS_PROPS","features":[468]},{"name":"PRESUTIL_GET_RESOURCE_NAME","features":[468]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY","features":[468]},{"name":"PRESUTIL_GET_RESOURCE_NAME_DEPENDENCY_EX","features":[468]},{"name":"PRESUTIL_GET_SZ_PROPERTY","features":[468]},{"name":"PRESUTIL_GET_SZ_VALUE","features":[468,366]},{"name":"PRESUTIL_IS_PATH_VALID","features":[305,468]},{"name":"PRESUTIL_IS_RESOURCE_CLASS_EQUAL","features":[305,468]},{"name":"PRESUTIL_PROPERTY_LIST_FROM_PARAMETER_BLOCK","features":[305,468]},{"name":"PRESUTIL_REMOVE_RESOURCE_SERVICE_ENVIRONMENT","features":[468]},{"name":"PRESUTIL_RESOURCES_EQUAL","features":[305,468]},{"name":"PRESUTIL_RESOURCE_TYPES_EQUAL","features":[305,468]},{"name":"PRESUTIL_SET_BINARY_VALUE","features":[468,366]},{"name":"PRESUTIL_SET_DWORD_VALUE","features":[468,366]},{"name":"PRESUTIL_SET_EXPAND_SZ_VALUE","features":[468,366]},{"name":"PRESUTIL_SET_MULTI_SZ_VALUE","features":[468,366]},{"name":"PRESUTIL_SET_PRIVATE_PROPERTY_LIST","features":[468,366]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK","features":[305,468,366]},{"name":"PRESUTIL_SET_PROPERTY_PARAMETER_BLOCK_EX","features":[305,468,366]},{"name":"PRESUTIL_SET_PROPERTY_TABLE","features":[305,468,366]},{"name":"PRESUTIL_SET_PROPERTY_TABLE_EX","features":[305,468,366]},{"name":"PRESUTIL_SET_QWORD_VALUE","features":[468,366]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_ENVIRONMENT","features":[468]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS","features":[468,469]},{"name":"PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX","features":[468,469]},{"name":"PRESUTIL_SET_SZ_VALUE","features":[468,366]},{"name":"PRESUTIL_SET_UNKNOWN_PROPERTIES","features":[305,468,366]},{"name":"PRESUTIL_START_RESOURCE_SERVICE","features":[468,469]},{"name":"PRESUTIL_STOP_RESOURCE_SERVICE","features":[468]},{"name":"PRESUTIL_STOP_SERVICE","features":[468,469]},{"name":"PRESUTIL_TERMINATE_SERVICE_PROCESS_FROM_RES_DLL","features":[305,468]},{"name":"PRESUTIL_VERIFY_PRIVATE_PROPERTY_LIST","features":[468]},{"name":"PRESUTIL_VERIFY_PROPERTY_TABLE","features":[305,468]},{"name":"PRESUTIL_VERIFY_RESOURCE_SERVICE","features":[468]},{"name":"PRESUTIL_VERIFY_SERVICE","features":[468,469]},{"name":"PRES_UTIL_VERIFY_SHUTDOWN_SAFE","features":[468]},{"name":"PSET_INTERNAL_STATE","features":[305,468]},{"name":"PSET_RESOURCE_INMEMORY_NODELOCAL_PROPERTIES_ROUTINE","features":[468]},{"name":"PSET_RESOURCE_LOCKED_MODE_EX_ROUTINE","features":[305,468]},{"name":"PSET_RESOURCE_LOCKED_MODE_ROUTINE","features":[305,468]},{"name":"PSET_RESOURCE_STATUS_ROUTINE","features":[305,468]},{"name":"PSET_RESOURCE_STATUS_ROUTINE_EX","features":[305,468]},{"name":"PSET_RESOURCE_WPR_POLICY_ROUTINE","features":[468]},{"name":"PSIGNAL_FAILURE_ROUTINE","features":[468]},{"name":"PSTARTUP_EX_ROUTINE","features":[305,468,366]},{"name":"PSTARTUP_ROUTINE","features":[305,468,366]},{"name":"PTERMINATE_ROUTINE","features":[468]},{"name":"PWORKER_START_ROUTINE","features":[305,468]},{"name":"PauseClusterNode","features":[468]},{"name":"PauseClusterNodeEx","features":[305,468]},{"name":"PauseClusterNodeEx2","features":[305,468]},{"name":"PaxosTagCStruct","features":[468]},{"name":"PriorityDisabled","features":[468]},{"name":"PriorityHigh","features":[468]},{"name":"PriorityLow","features":[468]},{"name":"PriorityMedium","features":[468]},{"name":"QueryAppInstanceVersion","features":[305,468]},{"name":"RESDLL_CONTEXT_OPERATION_TYPE","features":[468]},{"name":"RESOURCE_EXIT_STATE","features":[468]},{"name":"RESOURCE_FAILURE_INFO","features":[468]},{"name":"RESOURCE_FAILURE_INFO_BUFFER","features":[468]},{"name":"RESOURCE_FAILURE_INFO_VERSION_1","features":[468]},{"name":"RESOURCE_MONITOR_STATE","features":[468]},{"name":"RESOURCE_STATUS","features":[305,468]},{"name":"RESOURCE_STATUS_EX","features":[305,468]},{"name":"RESOURCE_TERMINAL_FAILURE_INFO_BUFFER","features":[305,468]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_CLUSSVC_CRASH","features":[468]},{"name":"RESTYPE_MONITOR_SHUTTING_DOWN_NODE_STOP","features":[468]},{"name":"RESUTIL_FILETIME_DATA","features":[305,468]},{"name":"RESUTIL_LARGEINT_DATA","features":[468]},{"name":"RESUTIL_PROPERTY_ITEM","features":[305,468]},{"name":"RESUTIL_PROPITEM_IN_MEMORY","features":[468]},{"name":"RESUTIL_PROPITEM_READ_ONLY","features":[468]},{"name":"RESUTIL_PROPITEM_REQUIRED","features":[468]},{"name":"RESUTIL_PROPITEM_SIGNED","features":[468]},{"name":"RESUTIL_ULARGEINT_DATA","features":[468]},{"name":"RS3_UPGRADE_VERSION","features":[468]},{"name":"RS4_UPGRADE_VERSION","features":[468]},{"name":"RS5_UPGRADE_VERSION","features":[468]},{"name":"RedirectedIOReasonBitLockerInitializing","features":[468]},{"name":"RedirectedIOReasonFileSystemTiering","features":[468]},{"name":"RedirectedIOReasonMax","features":[468]},{"name":"RedirectedIOReasonReFs","features":[468]},{"name":"RedirectedIOReasonUnsafeFileSystemFilter","features":[468]},{"name":"RedirectedIOReasonUnsafeVolumeFilter","features":[468]},{"name":"RedirectedIOReasonUserRequest","features":[468]},{"name":"RegisterAppInstance","features":[305,468]},{"name":"RegisterAppInstanceVersion","features":[468]},{"name":"RegisterClusterNotify","features":[305,468]},{"name":"RegisterClusterNotifyV2","features":[305,468]},{"name":"RegisterClusterResourceTypeNotifyV2","features":[468]},{"name":"RemoveClusterGroupDependency","features":[468]},{"name":"RemoveClusterGroupDependencyEx","features":[468]},{"name":"RemoveClusterGroupSetDependency","features":[468]},{"name":"RemoveClusterGroupSetDependencyEx","features":[468]},{"name":"RemoveClusterGroupToGroupSetDependency","features":[468]},{"name":"RemoveClusterGroupToGroupSetDependencyEx","features":[468]},{"name":"RemoveClusterNameAccount","features":[305,468]},{"name":"RemoveClusterResourceDependency","features":[468]},{"name":"RemoveClusterResourceDependencyEx","features":[468]},{"name":"RemoveClusterResourceNode","features":[468]},{"name":"RemoveClusterResourceNodeEx","features":[468]},{"name":"RemoveClusterStorageNode","features":[468]},{"name":"RemoveCrossClusterGroupSetDependency","features":[468]},{"name":"RemoveResourceFromClusterSharedVolumes","features":[468]},{"name":"ResUtilAddUnknownProperties","features":[305,468,366]},{"name":"ResUtilCreateDirectoryTree","features":[468]},{"name":"ResUtilDupGroup","features":[468]},{"name":"ResUtilDupParameterBlock","features":[305,468]},{"name":"ResUtilDupResource","features":[468]},{"name":"ResUtilDupString","features":[468]},{"name":"ResUtilEnumGroups","features":[468]},{"name":"ResUtilEnumGroupsEx","features":[468]},{"name":"ResUtilEnumPrivateProperties","features":[468,366]},{"name":"ResUtilEnumProperties","features":[305,468]},{"name":"ResUtilEnumResources","features":[468]},{"name":"ResUtilEnumResourcesEx","features":[468]},{"name":"ResUtilEnumResourcesEx2","features":[468]},{"name":"ResUtilExpandEnvironmentStrings","features":[468]},{"name":"ResUtilFindBinaryProperty","features":[468]},{"name":"ResUtilFindDependentDiskResourceDriveLetter","features":[468]},{"name":"ResUtilFindDwordProperty","features":[468]},{"name":"ResUtilFindExpandSzProperty","features":[468]},{"name":"ResUtilFindExpandedSzProperty","features":[468]},{"name":"ResUtilFindFileTimeProperty","features":[305,468]},{"name":"ResUtilFindLongProperty","features":[468]},{"name":"ResUtilFindMultiSzProperty","features":[468]},{"name":"ResUtilFindSzProperty","features":[468]},{"name":"ResUtilFindULargeIntegerProperty","features":[468]},{"name":"ResUtilFreeEnvironment","features":[468]},{"name":"ResUtilFreeParameterBlock","features":[305,468]},{"name":"ResUtilGetAllProperties","features":[305,468,366]},{"name":"ResUtilGetBinaryProperty","features":[468]},{"name":"ResUtilGetBinaryValue","features":[468,366]},{"name":"ResUtilGetClusterGroupType","features":[468]},{"name":"ResUtilGetClusterId","features":[468]},{"name":"ResUtilGetClusterRoleState","features":[468]},{"name":"ResUtilGetCoreClusterResources","features":[468]},{"name":"ResUtilGetCoreClusterResourcesEx","features":[468]},{"name":"ResUtilGetCoreGroup","features":[468]},{"name":"ResUtilGetDwordProperty","features":[468]},{"name":"ResUtilGetDwordValue","features":[468,366]},{"name":"ResUtilGetEnvironmentWithNetName","features":[468]},{"name":"ResUtilGetFileTimeProperty","features":[305,468]},{"name":"ResUtilGetLongProperty","features":[468]},{"name":"ResUtilGetMultiSzProperty","features":[468]},{"name":"ResUtilGetPrivateProperties","features":[468,366]},{"name":"ResUtilGetProperties","features":[305,468,366]},{"name":"ResUtilGetPropertiesToParameterBlock","features":[305,468,366]},{"name":"ResUtilGetProperty","features":[305,468,366]},{"name":"ResUtilGetPropertyFormats","features":[305,468]},{"name":"ResUtilGetPropertySize","features":[305,468,366]},{"name":"ResUtilGetQwordValue","features":[468,366]},{"name":"ResUtilGetResourceDependency","features":[305,468]},{"name":"ResUtilGetResourceDependencyByClass","features":[305,468]},{"name":"ResUtilGetResourceDependencyByClassEx","features":[305,468]},{"name":"ResUtilGetResourceDependencyByName","features":[305,468]},{"name":"ResUtilGetResourceDependencyByNameEx","features":[305,468]},{"name":"ResUtilGetResourceDependencyEx","features":[305,468]},{"name":"ResUtilGetResourceDependentIPAddressProps","features":[468]},{"name":"ResUtilGetResourceName","features":[468]},{"name":"ResUtilGetResourceNameDependency","features":[468]},{"name":"ResUtilGetResourceNameDependencyEx","features":[468]},{"name":"ResUtilGetSzProperty","features":[468]},{"name":"ResUtilGetSzValue","features":[468,366]},{"name":"ResUtilGroupsEqual","features":[305,468]},{"name":"ResUtilIsPathValid","features":[305,468]},{"name":"ResUtilIsResourceClassEqual","features":[305,468]},{"name":"ResUtilLeftPaxosIsLessThanRight","features":[305,468]},{"name":"ResUtilNodeEnum","features":[468]},{"name":"ResUtilPaxosComparer","features":[305,468]},{"name":"ResUtilPropertyListFromParameterBlock","features":[305,468]},{"name":"ResUtilRemoveResourceServiceEnvironment","features":[468]},{"name":"ResUtilResourceDepEnum","features":[468]},{"name":"ResUtilResourceTypesEqual","features":[305,468]},{"name":"ResUtilResourcesEqual","features":[305,468]},{"name":"ResUtilSetBinaryValue","features":[468,366]},{"name":"ResUtilSetDwordValue","features":[468,366]},{"name":"ResUtilSetExpandSzValue","features":[468,366]},{"name":"ResUtilSetMultiSzValue","features":[468,366]},{"name":"ResUtilSetPrivatePropertyList","features":[468,366]},{"name":"ResUtilSetPropertyParameterBlock","features":[305,468,366]},{"name":"ResUtilSetPropertyParameterBlockEx","features":[305,468,366]},{"name":"ResUtilSetPropertyTable","features":[305,468,366]},{"name":"ResUtilSetPropertyTableEx","features":[305,468,366]},{"name":"ResUtilSetQwordValue","features":[468,366]},{"name":"ResUtilSetResourceServiceEnvironment","features":[468]},{"name":"ResUtilSetResourceServiceStartParameters","features":[468,469]},{"name":"ResUtilSetResourceServiceStartParametersEx","features":[468,469]},{"name":"ResUtilSetSzValue","features":[468,366]},{"name":"ResUtilSetUnknownProperties","features":[305,468,366]},{"name":"ResUtilSetValueEx","features":[468,366]},{"name":"ResUtilStartResourceService","features":[468,469]},{"name":"ResUtilStopResourceService","features":[468]},{"name":"ResUtilStopService","features":[468,469]},{"name":"ResUtilTerminateServiceProcessFromResDll","features":[305,468]},{"name":"ResUtilVerifyPrivatePropertyList","features":[468]},{"name":"ResUtilVerifyPropertyTable","features":[305,468]},{"name":"ResUtilVerifyResourceService","features":[468]},{"name":"ResUtilVerifyService","features":[468,469]},{"name":"ResUtilVerifyShutdownSafe","features":[468]},{"name":"ResUtilsDeleteKeyTree","features":[305,468,366]},{"name":"ResdllContextOperationTypeDrain","features":[468]},{"name":"ResdllContextOperationTypeDrainFailure","features":[468]},{"name":"ResdllContextOperationTypeEmbeddedFailure","features":[468]},{"name":"ResdllContextOperationTypeFailback","features":[468]},{"name":"ResdllContextOperationTypeNetworkDisconnect","features":[468]},{"name":"ResdllContextOperationTypeNetworkDisconnectMoveRetry","features":[468]},{"name":"ResdllContextOperationTypePreemption","features":[468]},{"name":"ResetAllAppInstanceVersions","features":[468]},{"name":"ResourceExitStateContinue","features":[468]},{"name":"ResourceExitStateMax","features":[468]},{"name":"ResourceExitStateTerminate","features":[468]},{"name":"ResourceUtilizationInfoElement","features":[468]},{"name":"RestartClusterResource","features":[468]},{"name":"RestartClusterResourceEx","features":[468]},{"name":"RestoreClusterDatabase","features":[305,468]},{"name":"ResumeClusterNode","features":[468]},{"name":"ResumeClusterNodeEx","features":[468]},{"name":"ResumeClusterNodeEx2","features":[468]},{"name":"RmonArbitrateResource","features":[468]},{"name":"RmonDeadlocked","features":[468]},{"name":"RmonDeletingResource","features":[468]},{"name":"RmonIdle","features":[468]},{"name":"RmonInitializing","features":[468]},{"name":"RmonInitializingResource","features":[468]},{"name":"RmonIsAlivePoll","features":[468]},{"name":"RmonLooksAlivePoll","features":[468]},{"name":"RmonOfflineResource","features":[468]},{"name":"RmonOnlineResource","features":[468]},{"name":"RmonReleaseResource","features":[468]},{"name":"RmonResourceControl","features":[468]},{"name":"RmonResourceTypeControl","features":[468]},{"name":"RmonShutdownResource","features":[468]},{"name":"RmonStartingResource","features":[468]},{"name":"RmonTerminateResource","features":[468]},{"name":"SET_APPINSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[468]},{"name":"SET_APP_INSTANCE_CSV_FLAGS","features":[305,468]},{"name":"SR_DISK_REPLICATION_ELIGIBLE","features":[468]},{"name":"SR_REPLICATED_DISK_TYPE","features":[468]},{"name":"SR_REPLICATED_PARTITION_DISALLOW_MULTINODE_IO","features":[468]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP","features":[305,468]},{"name":"SR_RESOURCE_TYPE_ADD_REPLICATION_GROUP_RESULT","features":[468]},{"name":"SR_RESOURCE_TYPE_DISK_INFO","features":[468]},{"name":"SR_RESOURCE_TYPE_ELIGIBLE_DISKS_RESULT","features":[468]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_LOGDISKS","features":[305,468]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_SOURCE_DATADISKS","features":[305,468]},{"name":"SR_RESOURCE_TYPE_QUERY_ELIGIBLE_TARGET_DATADISKS","features":[305,468]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISK","features":[468]},{"name":"SR_RESOURCE_TYPE_REPLICATED_DISKS_RESULT","features":[468]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_ARRAY","features":[468]},{"name":"SR_RESOURCE_TYPE_REPLICATED_PARTITION_INFO","features":[468]},{"name":"STARTUP_EX_ROUTINE","features":[468]},{"name":"STARTUP_ROUTINE","features":[468]},{"name":"SetAppInstanceCsvFlags","features":[305,468]},{"name":"SetClusterGroupName","features":[468]},{"name":"SetClusterGroupNameEx","features":[468]},{"name":"SetClusterGroupNodeList","features":[468]},{"name":"SetClusterGroupNodeListEx","features":[468]},{"name":"SetClusterGroupSetDependencyExpression","features":[468]},{"name":"SetClusterGroupSetDependencyExpressionEx","features":[468]},{"name":"SetClusterName","features":[468]},{"name":"SetClusterNameEx","features":[468]},{"name":"SetClusterNetworkName","features":[468]},{"name":"SetClusterNetworkNameEx","features":[468]},{"name":"SetClusterNetworkPriorityOrder","features":[468]},{"name":"SetClusterQuorumResource","features":[468]},{"name":"SetClusterQuorumResourceEx","features":[468]},{"name":"SetClusterResourceDependencyExpression","features":[468]},{"name":"SetClusterResourceName","features":[468]},{"name":"SetClusterResourceNameEx","features":[468]},{"name":"SetClusterServiceAccountPassword","features":[305,468]},{"name":"SetGroupDependencyExpression","features":[468]},{"name":"SetGroupDependencyExpressionEx","features":[468]},{"name":"SharedVolumeStateActive","features":[468]},{"name":"SharedVolumeStateActiveRedirected","features":[468]},{"name":"SharedVolumeStateActiveVolumeRedirected","features":[468]},{"name":"SharedVolumeStatePaused","features":[468]},{"name":"SharedVolumeStateUnavailable","features":[468]},{"name":"SrDiskReplicationEligibleAlreadyInReplication","features":[468]},{"name":"SrDiskReplicationEligibleFileSystemNotSupported","features":[468]},{"name":"SrDiskReplicationEligibleInSameSite","features":[468]},{"name":"SrDiskReplicationEligibleInsufficientFreeSpace","features":[468]},{"name":"SrDiskReplicationEligibleNone","features":[468]},{"name":"SrDiskReplicationEligibleNotGpt","features":[468]},{"name":"SrDiskReplicationEligibleNotInSameSite","features":[468]},{"name":"SrDiskReplicationEligibleOffline","features":[468]},{"name":"SrDiskReplicationEligibleOther","features":[468]},{"name":"SrDiskReplicationEligiblePartitionLayoutMismatch","features":[468]},{"name":"SrDiskReplicationEligibleSameAsSpecifiedDisk","features":[468]},{"name":"SrDiskReplicationEligibleYes","features":[468]},{"name":"SrReplicatedDiskTypeDestination","features":[468]},{"name":"SrReplicatedDiskTypeLogDestination","features":[468]},{"name":"SrReplicatedDiskTypeLogNotInParthership","features":[468]},{"name":"SrReplicatedDiskTypeLogSource","features":[468]},{"name":"SrReplicatedDiskTypeNone","features":[468]},{"name":"SrReplicatedDiskTypeNotInParthership","features":[468]},{"name":"SrReplicatedDiskTypeOther","features":[468]},{"name":"SrReplicatedDiskTypeSource","features":[468]},{"name":"USE_CLIENT_ACCESS_NETWORKS_FOR_CSV","features":[468]},{"name":"VM_RESDLL_CONTEXT","features":[468]},{"name":"VmResdllContextLiveMigration","features":[468]},{"name":"VmResdllContextSave","features":[468]},{"name":"VmResdllContextShutdown","features":[468]},{"name":"VmResdllContextShutdownForce","features":[468]},{"name":"VmResdllContextTurnOff","features":[468]},{"name":"VolumeBackupInProgress","features":[468]},{"name":"VolumeBackupNone","features":[468]},{"name":"VolumeRedirectedIOReasonMax","features":[468]},{"name":"VolumeRedirectedIOReasonNoDiskConnectivity","features":[468]},{"name":"VolumeRedirectedIOReasonStorageSpaceNotAttached","features":[468]},{"name":"VolumeRedirectedIOReasonVolumeReplicationEnabled","features":[468]},{"name":"VolumeStateDismounted","features":[468]},{"name":"VolumeStateInMaintenance","features":[468]},{"name":"VolumeStateNoAccess","features":[468]},{"name":"VolumeStateNoDirectIO","features":[468]},{"name":"VolumeStateNoFaults","features":[468]},{"name":"WS2016_RTM_UPGRADE_VERSION","features":[468]},{"name":"WS2016_TP4_UPGRADE_VERSION","features":[468]},{"name":"WS2016_TP5_UPGRADE_VERSION","features":[468]},{"name":"WitnessTagHelper","features":[468]},{"name":"WitnessTagUpdateHelper","features":[468]},{"name":"eResourceStateChangeReasonFailedMove","features":[468]},{"name":"eResourceStateChangeReasonFailover","features":[468]},{"name":"eResourceStateChangeReasonMove","features":[468]},{"name":"eResourceStateChangeReasonRundown","features":[468]},{"name":"eResourceStateChangeReasonShutdown","features":[468]},{"name":"eResourceStateChangeReasonUnknown","features":[468]}],"472":[{"name":"CacheRangeChunkSize","features":[470]},{"name":"CreateRequestQueueExternalIdProperty","features":[470]},{"name":"CreateRequestQueueMax","features":[470]},{"name":"DelegateRequestDelegateUrlProperty","features":[470]},{"name":"DelegateRequestReservedProperty","features":[470]},{"name":"ExParamTypeErrorHeaders","features":[470]},{"name":"ExParamTypeHttp2SettingsLimits","features":[470]},{"name":"ExParamTypeHttp2Window","features":[470]},{"name":"ExParamTypeHttpPerformance","features":[470]},{"name":"ExParamTypeMax","features":[470]},{"name":"ExParamTypeTlsRestrictions","features":[470]},{"name":"ExParamTypeTlsSessionTicketKeys","features":[470]},{"name":"HTTP2_SETTINGS_LIMITS_PARAM","features":[470]},{"name":"HTTP2_WINDOW_SIZE_PARAM","features":[470]},{"name":"HTTPAPI_VERSION","features":[470]},{"name":"HTTP_503_RESPONSE_VERBOSITY","features":[470]},{"name":"HTTP_AUTHENTICATION_HARDENING_LEVELS","features":[470]},{"name":"HTTP_AUTH_ENABLE_BASIC","features":[470]},{"name":"HTTP_AUTH_ENABLE_DIGEST","features":[470]},{"name":"HTTP_AUTH_ENABLE_KERBEROS","features":[470]},{"name":"HTTP_AUTH_ENABLE_NEGOTIATE","features":[470]},{"name":"HTTP_AUTH_ENABLE_NTLM","features":[470]},{"name":"HTTP_AUTH_EX_FLAG_CAPTURE_CREDENTIAL","features":[470]},{"name":"HTTP_AUTH_EX_FLAG_ENABLE_KERBEROS_CREDENTIAL_CACHING","features":[470]},{"name":"HTTP_AUTH_STATUS","features":[470]},{"name":"HTTP_BANDWIDTH_LIMIT_INFO","features":[470]},{"name":"HTTP_BINDING_INFO","features":[305,470]},{"name":"HTTP_BYTE_RANGE","features":[470]},{"name":"HTTP_CACHE_POLICY","features":[470]},{"name":"HTTP_CACHE_POLICY_TYPE","features":[470]},{"name":"HTTP_CHANNEL_BIND_CLIENT_SERVICE","features":[470]},{"name":"HTTP_CHANNEL_BIND_DOTLESS_SERVICE","features":[470]},{"name":"HTTP_CHANNEL_BIND_INFO","features":[470]},{"name":"HTTP_CHANNEL_BIND_NO_SERVICE_NAME_CHECK","features":[470]},{"name":"HTTP_CHANNEL_BIND_PROXY","features":[470]},{"name":"HTTP_CHANNEL_BIND_PROXY_COHOSTING","features":[470]},{"name":"HTTP_CHANNEL_BIND_SECURE_CHANNEL_TOKEN","features":[470]},{"name":"HTTP_CONNECTION_LIMIT_INFO","features":[470]},{"name":"HTTP_COOKED_URL","features":[470]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_CONTROLLER","features":[470]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_DELEGATION","features":[470]},{"name":"HTTP_CREATE_REQUEST_QUEUE_FLAG_OPEN_EXISTING","features":[470]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID","features":[470]},{"name":"HTTP_CREATE_REQUEST_QUEUE_PROPERTY_INFO","features":[470]},{"name":"HTTP_DATA_CHUNK","features":[305,470]},{"name":"HTTP_DATA_CHUNK_TYPE","features":[470]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_ID","features":[470]},{"name":"HTTP_DELEGATE_REQUEST_PROPERTY_INFO","features":[470]},{"name":"HTTP_DEMAND_CBT","features":[470]},{"name":"HTTP_ENABLED_STATE","features":[470]},{"name":"HTTP_ERROR_HEADERS_PARAM","features":[470]},{"name":"HTTP_FEATURE_ID","features":[470]},{"name":"HTTP_FLOWRATE_INFO","features":[470]},{"name":"HTTP_FLUSH_RESPONSE_FLAG_RECURSIVE","features":[470]},{"name":"HTTP_HEADER_ID","features":[470]},{"name":"HTTP_INITIALIZE","features":[470]},{"name":"HTTP_INITIALIZE_CONFIG","features":[470]},{"name":"HTTP_INITIALIZE_SERVER","features":[470]},{"name":"HTTP_KNOWN_HEADER","features":[470]},{"name":"HTTP_LISTEN_ENDPOINT_INFO","features":[305,470]},{"name":"HTTP_LOGGING_FLAG_LOCAL_TIME_ROLLOVER","features":[470]},{"name":"HTTP_LOGGING_FLAG_LOG_ERRORS_ONLY","features":[470]},{"name":"HTTP_LOGGING_FLAG_LOG_SUCCESS_ONLY","features":[470]},{"name":"HTTP_LOGGING_FLAG_USE_UTF8_CONVERSION","features":[470]},{"name":"HTTP_LOGGING_INFO","features":[470,308]},{"name":"HTTP_LOGGING_ROLLOVER_TYPE","features":[470]},{"name":"HTTP_LOGGING_TYPE","features":[470]},{"name":"HTTP_LOG_DATA","features":[470]},{"name":"HTTP_LOG_DATA_TYPE","features":[470]},{"name":"HTTP_LOG_FIELDS_DATA","features":[470]},{"name":"HTTP_LOG_FIELD_BYTES_RECV","features":[470]},{"name":"HTTP_LOG_FIELD_BYTES_SENT","features":[470]},{"name":"HTTP_LOG_FIELD_CLIENT_IP","features":[470]},{"name":"HTTP_LOG_FIELD_CLIENT_PORT","features":[470]},{"name":"HTTP_LOG_FIELD_COMPUTER_NAME","features":[470]},{"name":"HTTP_LOG_FIELD_COOKIE","features":[470]},{"name":"HTTP_LOG_FIELD_CORRELATION_ID","features":[470]},{"name":"HTTP_LOG_FIELD_DATE","features":[470]},{"name":"HTTP_LOG_FIELD_FAULT_CODE","features":[470]},{"name":"HTTP_LOG_FIELD_HOST","features":[470]},{"name":"HTTP_LOG_FIELD_METHOD","features":[470]},{"name":"HTTP_LOG_FIELD_QUEUE_NAME","features":[470]},{"name":"HTTP_LOG_FIELD_REASON","features":[470]},{"name":"HTTP_LOG_FIELD_REFERER","features":[470]},{"name":"HTTP_LOG_FIELD_SERVER_IP","features":[470]},{"name":"HTTP_LOG_FIELD_SERVER_PORT","features":[470]},{"name":"HTTP_LOG_FIELD_SITE_ID","features":[470]},{"name":"HTTP_LOG_FIELD_SITE_NAME","features":[470]},{"name":"HTTP_LOG_FIELD_STATUS","features":[470]},{"name":"HTTP_LOG_FIELD_STREAM_ID","features":[470]},{"name":"HTTP_LOG_FIELD_STREAM_ID_EX","features":[470]},{"name":"HTTP_LOG_FIELD_SUB_STATUS","features":[470]},{"name":"HTTP_LOG_FIELD_TIME","features":[470]},{"name":"HTTP_LOG_FIELD_TIME_TAKEN","features":[470]},{"name":"HTTP_LOG_FIELD_TRANSPORT_TYPE","features":[470]},{"name":"HTTP_LOG_FIELD_URI","features":[470]},{"name":"HTTP_LOG_FIELD_URI_QUERY","features":[470]},{"name":"HTTP_LOG_FIELD_URI_STEM","features":[470]},{"name":"HTTP_LOG_FIELD_USER_AGENT","features":[470]},{"name":"HTTP_LOG_FIELD_USER_NAME","features":[470]},{"name":"HTTP_LOG_FIELD_VERSION","features":[470]},{"name":"HTTP_LOG_FIELD_WIN32_STATUS","features":[470]},{"name":"HTTP_MAX_SERVER_QUEUE_LENGTH","features":[470]},{"name":"HTTP_MIN_SERVER_QUEUE_LENGTH","features":[470]},{"name":"HTTP_MULTIPLE_KNOWN_HEADERS","features":[470]},{"name":"HTTP_PERFORMANCE_PARAM","features":[470]},{"name":"HTTP_PERFORMANCE_PARAM_TYPE","features":[470]},{"name":"HTTP_PROPERTY_FLAGS","features":[470]},{"name":"HTTP_PROTECTION_LEVEL_INFO","features":[470]},{"name":"HTTP_PROTECTION_LEVEL_TYPE","features":[470]},{"name":"HTTP_QOS_SETTING_INFO","features":[470]},{"name":"HTTP_QOS_SETTING_TYPE","features":[470]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_QUIC","features":[470]},{"name":"HTTP_QUERY_REQUEST_QUALIFIER_TCP","features":[470]},{"name":"HTTP_QUIC_API_TIMINGS","features":[470]},{"name":"HTTP_QUIC_CONNECTION_API_TIMINGS","features":[470]},{"name":"HTTP_QUIC_STREAM_API_TIMINGS","features":[470]},{"name":"HTTP_QUIC_STREAM_REQUEST_STATS","features":[470]},{"name":"HTTP_RECEIVE_FULL_CHAIN","features":[470]},{"name":"HTTP_RECEIVE_HTTP_REQUEST_FLAGS","features":[470]},{"name":"HTTP_RECEIVE_REQUEST_ENTITY_BODY_FLAG_FILL_BUFFER","features":[470]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_COPY_BODY","features":[470]},{"name":"HTTP_RECEIVE_REQUEST_FLAG_FLUSH_BODY","features":[470]},{"name":"HTTP_RECEIVE_SECURE_CHANNEL_TOKEN","features":[470]},{"name":"HTTP_REQUEST_AUTH_FLAG_TOKEN_FOR_CACHED_CRED","features":[470]},{"name":"HTTP_REQUEST_AUTH_INFO","features":[305,470]},{"name":"HTTP_REQUEST_AUTH_TYPE","features":[470]},{"name":"HTTP_REQUEST_CHANNEL_BIND_STATUS","features":[470]},{"name":"HTTP_REQUEST_FLAG_HTTP2","features":[470]},{"name":"HTTP_REQUEST_FLAG_HTTP3","features":[470]},{"name":"HTTP_REQUEST_FLAG_IP_ROUTED","features":[470]},{"name":"HTTP_REQUEST_FLAG_MORE_ENTITY_BODY_EXISTS","features":[470]},{"name":"HTTP_REQUEST_HEADERS","features":[470]},{"name":"HTTP_REQUEST_INFO","features":[470]},{"name":"HTTP_REQUEST_INFO_TYPE","features":[470]},{"name":"HTTP_REQUEST_PROPERTY","features":[470]},{"name":"HTTP_REQUEST_PROPERTY_SNI","features":[470]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_NO_SNI","features":[470]},{"name":"HTTP_REQUEST_PROPERTY_SNI_FLAG_SNI_USED","features":[470]},{"name":"HTTP_REQUEST_PROPERTY_SNI_HOST_MAX_LENGTH","features":[470]},{"name":"HTTP_REQUEST_PROPERTY_STREAM_ERROR","features":[470]},{"name":"HTTP_REQUEST_SIZING_INFO","features":[470]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_FIRST_REQUEST","features":[470]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TCP_FAST_OPEN","features":[470]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_FALSE_START","features":[470]},{"name":"HTTP_REQUEST_SIZING_INFO_FLAG_TLS_SESSION_RESUMPTION","features":[470]},{"name":"HTTP_REQUEST_SIZING_TYPE","features":[470]},{"name":"HTTP_REQUEST_TIMING_INFO","features":[470]},{"name":"HTTP_REQUEST_TIMING_TYPE","features":[470]},{"name":"HTTP_REQUEST_TOKEN_BINDING_INFO","features":[470]},{"name":"HTTP_REQUEST_V1","features":[305,470,318]},{"name":"HTTP_REQUEST_V2","features":[305,470,318]},{"name":"HTTP_RESPONSE_FLAG_MORE_ENTITY_BODY_EXISTS","features":[470]},{"name":"HTTP_RESPONSE_FLAG_MULTIPLE_ENCODINGS_AVAILABLE","features":[470]},{"name":"HTTP_RESPONSE_HEADERS","features":[470]},{"name":"HTTP_RESPONSE_INFO","features":[470]},{"name":"HTTP_RESPONSE_INFO_FLAGS_PRESERVE_ORDER","features":[470]},{"name":"HTTP_RESPONSE_INFO_TYPE","features":[470]},{"name":"HTTP_RESPONSE_V1","features":[305,470]},{"name":"HTTP_RESPONSE_V2","features":[305,470]},{"name":"HTTP_SCHEME","features":[470]},{"name":"HTTP_SEND_RESPONSE_FLAG_BUFFER_DATA","features":[470]},{"name":"HTTP_SEND_RESPONSE_FLAG_DISCONNECT","features":[470]},{"name":"HTTP_SEND_RESPONSE_FLAG_ENABLE_NAGLING","features":[470]},{"name":"HTTP_SEND_RESPONSE_FLAG_GOAWAY","features":[470]},{"name":"HTTP_SEND_RESPONSE_FLAG_MORE_DATA","features":[470]},{"name":"HTTP_SEND_RESPONSE_FLAG_OPAQUE","features":[470]},{"name":"HTTP_SEND_RESPONSE_FLAG_PROCESS_RANGES","features":[470]},{"name":"HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS","features":[470]},{"name":"HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS","features":[470]},{"name":"HTTP_SERVER_AUTHENTICATION_INFO","features":[305,470]},{"name":"HTTP_SERVER_PROPERTY","features":[470]},{"name":"HTTP_SERVICE_BINDING_A","features":[470]},{"name":"HTTP_SERVICE_BINDING_BASE","features":[470]},{"name":"HTTP_SERVICE_BINDING_TYPE","features":[470]},{"name":"HTTP_SERVICE_BINDING_W","features":[470]},{"name":"HTTP_SERVICE_CONFIG_CACHE_KEY","features":[470]},{"name":"HTTP_SERVICE_CONFIG_CACHE_SET","features":[470]},{"name":"HTTP_SERVICE_CONFIG_ID","features":[470]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_PARAM","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_IP_LISTEN_QUERY","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_QUERY_TYPE","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SETTING_KEY","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SETTING_SET","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_KEY","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_QUERY_EX","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_CCS_SET_EX","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_HTTP2","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_LEGACY_TLS","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_OCSP_STAPLING","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_QUIC","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_SESSION_ID","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS12","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_DISABLE_TLS13","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_CLIENT_CORRELATION","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_SESSION_TICKET","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_ENABLE_TOKEN_BINDING","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_LOG_EXTENDED_EVENTS","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NEGOTIATE_CLIENT_CERT","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_NO_RAW_FILTER","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_REJECT","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_FLAG_USE_DS_MAPPER","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_KEY_EX","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_PARAM_EX","features":[470]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_QUERY_EX","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_SET_EX","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_KEY","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_QUERY_EX","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_SSL_SNI_SET_EX","features":[470,318]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_KEY","features":[470]},{"name":"HTTP_SERVICE_CONFIG_TIMEOUT_SET","features":[470]},{"name":"HTTP_SERVICE_CONFIG_URLACL_KEY","features":[470]},{"name":"HTTP_SERVICE_CONFIG_URLACL_PARAM","features":[470]},{"name":"HTTP_SERVICE_CONFIG_URLACL_QUERY","features":[470]},{"name":"HTTP_SERVICE_CONFIG_URLACL_SET","features":[470]},{"name":"HTTP_SSL_CLIENT_CERT_INFO","features":[305,470]},{"name":"HTTP_SSL_INFO","features":[305,470]},{"name":"HTTP_SSL_PROTOCOL_INFO","features":[470]},{"name":"HTTP_SSL_SERVICE_CONFIG_EX_PARAM_TYPE","features":[470]},{"name":"HTTP_STATE_INFO","features":[470]},{"name":"HTTP_TIMEOUT_LIMIT_INFO","features":[470]},{"name":"HTTP_TLS_RESTRICTIONS_PARAM","features":[470]},{"name":"HTTP_TLS_SESSION_TICKET_KEYS_PARAM","features":[470]},{"name":"HTTP_TRANSPORT_ADDRESS","features":[470,318]},{"name":"HTTP_UNKNOWN_HEADER","features":[470]},{"name":"HTTP_URL_FLAG_REMOVE_ALL","features":[470]},{"name":"HTTP_VERB","features":[470]},{"name":"HTTP_VERSION","features":[470]},{"name":"HTTP_VERSION","features":[470]},{"name":"HTTP_WSK_API_TIMINGS","features":[470]},{"name":"HeaderWaitTimeout","features":[470]},{"name":"Http503ResponseVerbosityBasic","features":[470]},{"name":"Http503ResponseVerbosityFull","features":[470]},{"name":"Http503ResponseVerbosityLimited","features":[470]},{"name":"HttpAddFragmentToCache","features":[305,470,310]},{"name":"HttpAddUrl","features":[305,470]},{"name":"HttpAddUrlToUrlGroup","features":[470]},{"name":"HttpAuthStatusFailure","features":[470]},{"name":"HttpAuthStatusNotAuthenticated","features":[470]},{"name":"HttpAuthStatusSuccess","features":[470]},{"name":"HttpAuthenticationHardeningLegacy","features":[470]},{"name":"HttpAuthenticationHardeningMedium","features":[470]},{"name":"HttpAuthenticationHardeningStrict","features":[470]},{"name":"HttpCachePolicyMaximum","features":[470]},{"name":"HttpCachePolicyNocache","features":[470]},{"name":"HttpCachePolicyTimeToLive","features":[470]},{"name":"HttpCachePolicyUserInvalidates","features":[470]},{"name":"HttpCancelHttpRequest","features":[305,470,310]},{"name":"HttpCloseRequestQueue","features":[305,470]},{"name":"HttpCloseServerSession","features":[470]},{"name":"HttpCloseUrlGroup","features":[470]},{"name":"HttpCreateHttpHandle","features":[305,470]},{"name":"HttpCreateRequestQueue","features":[305,470,308]},{"name":"HttpCreateServerSession","features":[470]},{"name":"HttpCreateUrlGroup","features":[470]},{"name":"HttpDataChunkFromFileHandle","features":[470]},{"name":"HttpDataChunkFromFragmentCache","features":[470]},{"name":"HttpDataChunkFromFragmentCacheEx","features":[470]},{"name":"HttpDataChunkFromMemory","features":[470]},{"name":"HttpDataChunkMaximum","features":[470]},{"name":"HttpDataChunkTrailers","features":[470]},{"name":"HttpDeclarePush","features":[305,470]},{"name":"HttpDelegateRequestEx","features":[305,470]},{"name":"HttpDeleteServiceConfiguration","features":[305,470,310]},{"name":"HttpEnabledStateActive","features":[470]},{"name":"HttpEnabledStateInactive","features":[470]},{"name":"HttpFeatureApiTimings","features":[470]},{"name":"HttpFeatureDelegateEx","features":[470]},{"name":"HttpFeatureHttp3","features":[470]},{"name":"HttpFeatureLast","features":[470]},{"name":"HttpFeatureResponseTrailers","features":[470]},{"name":"HttpFeatureUnknown","features":[470]},{"name":"HttpFeaturemax","features":[470]},{"name":"HttpFindUrlGroupId","features":[305,470]},{"name":"HttpFlushResponseCache","features":[305,470,310]},{"name":"HttpGetExtension","features":[470]},{"name":"HttpHeaderAccept","features":[470]},{"name":"HttpHeaderAcceptCharset","features":[470]},{"name":"HttpHeaderAcceptEncoding","features":[470]},{"name":"HttpHeaderAcceptLanguage","features":[470]},{"name":"HttpHeaderAcceptRanges","features":[470]},{"name":"HttpHeaderAge","features":[470]},{"name":"HttpHeaderAllow","features":[470]},{"name":"HttpHeaderAuthorization","features":[470]},{"name":"HttpHeaderCacheControl","features":[470]},{"name":"HttpHeaderConnection","features":[470]},{"name":"HttpHeaderContentEncoding","features":[470]},{"name":"HttpHeaderContentLanguage","features":[470]},{"name":"HttpHeaderContentLength","features":[470]},{"name":"HttpHeaderContentLocation","features":[470]},{"name":"HttpHeaderContentMd5","features":[470]},{"name":"HttpHeaderContentRange","features":[470]},{"name":"HttpHeaderContentType","features":[470]},{"name":"HttpHeaderCookie","features":[470]},{"name":"HttpHeaderDate","features":[470]},{"name":"HttpHeaderEtag","features":[470]},{"name":"HttpHeaderExpect","features":[470]},{"name":"HttpHeaderExpires","features":[470]},{"name":"HttpHeaderFrom","features":[470]},{"name":"HttpHeaderHost","features":[470]},{"name":"HttpHeaderIfMatch","features":[470]},{"name":"HttpHeaderIfModifiedSince","features":[470]},{"name":"HttpHeaderIfNoneMatch","features":[470]},{"name":"HttpHeaderIfRange","features":[470]},{"name":"HttpHeaderIfUnmodifiedSince","features":[470]},{"name":"HttpHeaderKeepAlive","features":[470]},{"name":"HttpHeaderLastModified","features":[470]},{"name":"HttpHeaderLocation","features":[470]},{"name":"HttpHeaderMaxForwards","features":[470]},{"name":"HttpHeaderMaximum","features":[470]},{"name":"HttpHeaderPragma","features":[470]},{"name":"HttpHeaderProxyAuthenticate","features":[470]},{"name":"HttpHeaderProxyAuthorization","features":[470]},{"name":"HttpHeaderRange","features":[470]},{"name":"HttpHeaderReferer","features":[470]},{"name":"HttpHeaderRequestMaximum","features":[470]},{"name":"HttpHeaderResponseMaximum","features":[470]},{"name":"HttpHeaderRetryAfter","features":[470]},{"name":"HttpHeaderServer","features":[470]},{"name":"HttpHeaderSetCookie","features":[470]},{"name":"HttpHeaderTe","features":[470]},{"name":"HttpHeaderTrailer","features":[470]},{"name":"HttpHeaderTransferEncoding","features":[470]},{"name":"HttpHeaderTranslate","features":[470]},{"name":"HttpHeaderUpgrade","features":[470]},{"name":"HttpHeaderUserAgent","features":[470]},{"name":"HttpHeaderVary","features":[470]},{"name":"HttpHeaderVia","features":[470]},{"name":"HttpHeaderWarning","features":[470]},{"name":"HttpHeaderWwwAuthenticate","features":[470]},{"name":"HttpInitialize","features":[470]},{"name":"HttpIsFeatureSupported","features":[305,470]},{"name":"HttpLogDataTypeFields","features":[470]},{"name":"HttpLoggingRolloverDaily","features":[470]},{"name":"HttpLoggingRolloverHourly","features":[470]},{"name":"HttpLoggingRolloverMonthly","features":[470]},{"name":"HttpLoggingRolloverSize","features":[470]},{"name":"HttpLoggingRolloverWeekly","features":[470]},{"name":"HttpLoggingTypeIIS","features":[470]},{"name":"HttpLoggingTypeNCSA","features":[470]},{"name":"HttpLoggingTypeRaw","features":[470]},{"name":"HttpLoggingTypeW3C","features":[470]},{"name":"HttpNone","features":[470]},{"name":"HttpPrepareUrl","features":[470]},{"name":"HttpProtectionLevelEdgeRestricted","features":[470]},{"name":"HttpProtectionLevelRestricted","features":[470]},{"name":"HttpProtectionLevelUnrestricted","features":[470]},{"name":"HttpQosSettingTypeBandwidth","features":[470]},{"name":"HttpQosSettingTypeConnectionLimit","features":[470]},{"name":"HttpQosSettingTypeFlowRate","features":[470]},{"name":"HttpQueryRequestQueueProperty","features":[305,470]},{"name":"HttpQueryServerSessionProperty","features":[470]},{"name":"HttpQueryServiceConfiguration","features":[305,470,310]},{"name":"HttpQueryUrlGroupProperty","features":[470]},{"name":"HttpReadFragmentFromCache","features":[305,470,310]},{"name":"HttpReceiveClientCertificate","features":[305,470,310]},{"name":"HttpReceiveHttpRequest","features":[305,470,318,310]},{"name":"HttpReceiveRequestEntityBody","features":[305,470,310]},{"name":"HttpRemoveUrl","features":[305,470]},{"name":"HttpRemoveUrlFromUrlGroup","features":[470]},{"name":"HttpRequestAuthTypeBasic","features":[470]},{"name":"HttpRequestAuthTypeDigest","features":[470]},{"name":"HttpRequestAuthTypeKerberos","features":[470]},{"name":"HttpRequestAuthTypeNTLM","features":[470]},{"name":"HttpRequestAuthTypeNegotiate","features":[470]},{"name":"HttpRequestAuthTypeNone","features":[470]},{"name":"HttpRequestInfoTypeAuth","features":[470]},{"name":"HttpRequestInfoTypeChannelBind","features":[470]},{"name":"HttpRequestInfoTypeQuicStats","features":[470]},{"name":"HttpRequestInfoTypeRequestSizing","features":[470]},{"name":"HttpRequestInfoTypeRequestTiming","features":[470]},{"name":"HttpRequestInfoTypeSslProtocol","features":[470]},{"name":"HttpRequestInfoTypeSslTokenBinding","features":[470]},{"name":"HttpRequestInfoTypeSslTokenBindingDraft","features":[470]},{"name":"HttpRequestInfoTypeTcpInfoV0","features":[470]},{"name":"HttpRequestInfoTypeTcpInfoV1","features":[470]},{"name":"HttpRequestPropertyIsb","features":[470]},{"name":"HttpRequestPropertyQuicApiTimings","features":[470]},{"name":"HttpRequestPropertyQuicStats","features":[470]},{"name":"HttpRequestPropertySni","features":[470]},{"name":"HttpRequestPropertyStreamError","features":[470]},{"name":"HttpRequestPropertyTcpInfoV0","features":[470]},{"name":"HttpRequestPropertyTcpInfoV1","features":[470]},{"name":"HttpRequestPropertyWskApiTimings","features":[470]},{"name":"HttpRequestSizingTypeHeaders","features":[470]},{"name":"HttpRequestSizingTypeMax","features":[470]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ClientData","features":[470]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg1ServerData","features":[470]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ClientData","features":[470]},{"name":"HttpRequestSizingTypeTlsHandshakeLeg2ServerData","features":[470]},{"name":"HttpRequestTimingTypeConnectionStart","features":[470]},{"name":"HttpRequestTimingTypeDataStart","features":[470]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeEnd","features":[470]},{"name":"HttpRequestTimingTypeHttp2HeaderDecodeStart","features":[470]},{"name":"HttpRequestTimingTypeHttp2StreamStart","features":[470]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeEnd","features":[470]},{"name":"HttpRequestTimingTypeHttp3HeaderDecodeStart","features":[470]},{"name":"HttpRequestTimingTypeHttp3StreamStart","features":[470]},{"name":"HttpRequestTimingTypeMax","features":[470]},{"name":"HttpRequestTimingTypeRequestDeliveredForDelegation","features":[470]},{"name":"HttpRequestTimingTypeRequestDeliveredForIO","features":[470]},{"name":"HttpRequestTimingTypeRequestDeliveredForInspection","features":[470]},{"name":"HttpRequestTimingTypeRequestHeaderParseEnd","features":[470]},{"name":"HttpRequestTimingTypeRequestHeaderParseStart","features":[470]},{"name":"HttpRequestTimingTypeRequestQueuedForDelegation","features":[470]},{"name":"HttpRequestTimingTypeRequestQueuedForIO","features":[470]},{"name":"HttpRequestTimingTypeRequestQueuedForInspection","features":[470]},{"name":"HttpRequestTimingTypeRequestReturnedAfterDelegation","features":[470]},{"name":"HttpRequestTimingTypeRequestReturnedAfterInspection","features":[470]},{"name":"HttpRequestTimingTypeRequestRoutingEnd","features":[470]},{"name":"HttpRequestTimingTypeRequestRoutingStart","features":[470]},{"name":"HttpRequestTimingTypeTlsAttributesQueryEnd","features":[470]},{"name":"HttpRequestTimingTypeTlsAttributesQueryStart","features":[470]},{"name":"HttpRequestTimingTypeTlsCertificateLoadEnd","features":[470]},{"name":"HttpRequestTimingTypeTlsCertificateLoadStart","features":[470]},{"name":"HttpRequestTimingTypeTlsClientCertQueryEnd","features":[470]},{"name":"HttpRequestTimingTypeTlsClientCertQueryStart","features":[470]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1End","features":[470]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg1Start","features":[470]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2End","features":[470]},{"name":"HttpRequestTimingTypeTlsHandshakeLeg2Start","features":[470]},{"name":"HttpResponseInfoTypeAuthenticationProperty","features":[470]},{"name":"HttpResponseInfoTypeChannelBind","features":[470]},{"name":"HttpResponseInfoTypeMultipleKnownHeaders","features":[470]},{"name":"HttpResponseInfoTypeQoSProperty","features":[470]},{"name":"HttpSchemeHttp","features":[470]},{"name":"HttpSchemeHttps","features":[470]},{"name":"HttpSchemeMaximum","features":[470]},{"name":"HttpSendHttpResponse","features":[305,470,310]},{"name":"HttpSendResponseEntityBody","features":[305,470,310]},{"name":"HttpServer503VerbosityProperty","features":[470]},{"name":"HttpServerAuthenticationProperty","features":[470]},{"name":"HttpServerBindingProperty","features":[470]},{"name":"HttpServerChannelBindProperty","features":[470]},{"name":"HttpServerDelegationProperty","features":[470]},{"name":"HttpServerExtendedAuthenticationProperty","features":[470]},{"name":"HttpServerListenEndpointProperty","features":[470]},{"name":"HttpServerLoggingProperty","features":[470]},{"name":"HttpServerProtectionLevelProperty","features":[470]},{"name":"HttpServerQosProperty","features":[470]},{"name":"HttpServerQueueLengthProperty","features":[470]},{"name":"HttpServerStateProperty","features":[470]},{"name":"HttpServerTimeoutsProperty","features":[470]},{"name":"HttpServiceBindingTypeA","features":[470]},{"name":"HttpServiceBindingTypeNone","features":[470]},{"name":"HttpServiceBindingTypeW","features":[470]},{"name":"HttpServiceConfigCache","features":[470]},{"name":"HttpServiceConfigIPListenList","features":[470]},{"name":"HttpServiceConfigMax","features":[470]},{"name":"HttpServiceConfigQueryExact","features":[470]},{"name":"HttpServiceConfigQueryMax","features":[470]},{"name":"HttpServiceConfigQueryNext","features":[470]},{"name":"HttpServiceConfigSSLCertInfo","features":[470]},{"name":"HttpServiceConfigSetting","features":[470]},{"name":"HttpServiceConfigSslCcsCertInfo","features":[470]},{"name":"HttpServiceConfigSslCcsCertInfoEx","features":[470]},{"name":"HttpServiceConfigSslCertInfoEx","features":[470]},{"name":"HttpServiceConfigSslScopedCcsCertInfo","features":[470]},{"name":"HttpServiceConfigSslScopedCcsCertInfoEx","features":[470]},{"name":"HttpServiceConfigSslSniCertInfo","features":[470]},{"name":"HttpServiceConfigSslSniCertInfoEx","features":[470]},{"name":"HttpServiceConfigTimeout","features":[470]},{"name":"HttpServiceConfigUrlAclInfo","features":[470]},{"name":"HttpSetRequestProperty","features":[305,470,310]},{"name":"HttpSetRequestQueueProperty","features":[305,470]},{"name":"HttpSetServerSessionProperty","features":[470]},{"name":"HttpSetServiceConfiguration","features":[305,470,310]},{"name":"HttpSetUrlGroupProperty","features":[470]},{"name":"HttpShutdownRequestQueue","features":[305,470]},{"name":"HttpTerminate","features":[470]},{"name":"HttpTlsThrottle","features":[470]},{"name":"HttpUpdateServiceConfiguration","features":[305,470,310]},{"name":"HttpVerbCONNECT","features":[470]},{"name":"HttpVerbCOPY","features":[470]},{"name":"HttpVerbDELETE","features":[470]},{"name":"HttpVerbGET","features":[470]},{"name":"HttpVerbHEAD","features":[470]},{"name":"HttpVerbInvalid","features":[470]},{"name":"HttpVerbLOCK","features":[470]},{"name":"HttpVerbMKCOL","features":[470]},{"name":"HttpVerbMOVE","features":[470]},{"name":"HttpVerbMaximum","features":[470]},{"name":"HttpVerbOPTIONS","features":[470]},{"name":"HttpVerbPOST","features":[470]},{"name":"HttpVerbPROPFIND","features":[470]},{"name":"HttpVerbPROPPATCH","features":[470]},{"name":"HttpVerbPUT","features":[470]},{"name":"HttpVerbSEARCH","features":[470]},{"name":"HttpVerbTRACE","features":[470]},{"name":"HttpVerbTRACK","features":[470]},{"name":"HttpVerbUNLOCK","features":[470]},{"name":"HttpVerbUnknown","features":[470]},{"name":"HttpVerbUnparsed","features":[470]},{"name":"HttpWaitForDemandStart","features":[305,470,310]},{"name":"HttpWaitForDisconnect","features":[305,470,310]},{"name":"HttpWaitForDisconnectEx","features":[305,470,310]},{"name":"IdleConnectionTimeout","features":[470]},{"name":"MaxCacheResponseSize","features":[470]},{"name":"PerformanceParamAggressiveICW","features":[470]},{"name":"PerformanceParamDecryptOnSspiThread","features":[470]},{"name":"PerformanceParamMax","features":[470]},{"name":"PerformanceParamMaxConcurrentClientStreams","features":[470]},{"name":"PerformanceParamMaxReceiveBufferSize","features":[470]},{"name":"PerformanceParamMaxSendBufferSize","features":[470]},{"name":"PerformanceParamSendBufferingFlags","features":[470]}],"473":[{"name":"BerElement","features":[471]},{"name":"DBGPRINT","features":[471]},{"name":"DEREFERENCECONNECTION","features":[471]},{"name":"LAPI_MAJOR_VER1","features":[471]},{"name":"LAPI_MINOR_VER1","features":[471]},{"name":"LBER_DEFAULT","features":[471]},{"name":"LBER_ERROR","features":[471]},{"name":"LBER_TRANSLATE_STRINGS","features":[471]},{"name":"LBER_USE_DER","features":[471]},{"name":"LBER_USE_INDEFINITE_LEN","features":[471]},{"name":"LDAP","features":[471]},{"name":"LDAPAPIFeatureInfoA","features":[471]},{"name":"LDAPAPIFeatureInfoW","features":[471]},{"name":"LDAPAPIInfoA","features":[471]},{"name":"LDAPAPIInfoW","features":[471]},{"name":"LDAPControlA","features":[305,471]},{"name":"LDAPControlW","features":[305,471]},{"name":"LDAPMessage","features":[305,471]},{"name":"LDAPModA","features":[471]},{"name":"LDAPModW","features":[471]},{"name":"LDAPSortKeyA","features":[305,471]},{"name":"LDAPSortKeyW","features":[305,471]},{"name":"LDAPVLVInfo","features":[471]},{"name":"LDAP_ABANDON_CMD","features":[471]},{"name":"LDAP_ADD_CMD","features":[471]},{"name":"LDAP_ADMIN_LIMIT_EXCEEDED","features":[471]},{"name":"LDAP_AFFECTS_MULTIPLE_DSAS","features":[471]},{"name":"LDAP_ALIAS_DEREF_PROBLEM","features":[471]},{"name":"LDAP_ALIAS_PROBLEM","features":[471]},{"name":"LDAP_ALREADY_EXISTS","features":[471]},{"name":"LDAP_API_FEATURE_VIRTUAL_LIST_VIEW","features":[471]},{"name":"LDAP_API_INFO_VERSION","features":[471]},{"name":"LDAP_API_VERSION","features":[471]},{"name":"LDAP_ATTRIBUTE_OR_VALUE_EXISTS","features":[471]},{"name":"LDAP_AUTH_METHOD_NOT_SUPPORTED","features":[471]},{"name":"LDAP_AUTH_OTHERKIND","features":[471]},{"name":"LDAP_AUTH_SASL","features":[471]},{"name":"LDAP_AUTH_SIMPLE","features":[471]},{"name":"LDAP_AUTH_UNKNOWN","features":[471]},{"name":"LDAP_BERVAL","features":[471]},{"name":"LDAP_BIND_CMD","features":[471]},{"name":"LDAP_BUSY","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V51_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V60_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID_W","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID","features":[471]},{"name":"LDAP_CAP_ACTIVE_DIRECTORY_W8_OID_W","features":[471]},{"name":"LDAP_CHASE_EXTERNAL_REFERRALS","features":[471]},{"name":"LDAP_CHASE_SUBORDINATE_REFERRALS","features":[471]},{"name":"LDAP_CLIENT_LOOP","features":[471]},{"name":"LDAP_COMPARE_CMD","features":[471]},{"name":"LDAP_COMPARE_FALSE","features":[471]},{"name":"LDAP_COMPARE_TRUE","features":[471]},{"name":"LDAP_CONFIDENTIALITY_REQUIRED","features":[471]},{"name":"LDAP_CONNECT_ERROR","features":[471]},{"name":"LDAP_CONSTRAINT_VIOLATION","features":[471]},{"name":"LDAP_CONTROL_NOT_FOUND","features":[471]},{"name":"LDAP_CONTROL_REFERRALS","features":[471]},{"name":"LDAP_CONTROL_REFERRALS_W","features":[471]},{"name":"LDAP_CONTROL_VLVREQUEST","features":[471]},{"name":"LDAP_CONTROL_VLVREQUEST_W","features":[471]},{"name":"LDAP_CONTROL_VLVRESPONSE","features":[471]},{"name":"LDAP_CONTROL_VLVRESPONSE_W","features":[471]},{"name":"LDAP_DECODING_ERROR","features":[471]},{"name":"LDAP_DELETE_CMD","features":[471]},{"name":"LDAP_DEREF_ALWAYS","features":[471]},{"name":"LDAP_DEREF_FINDING","features":[471]},{"name":"LDAP_DEREF_NEVER","features":[471]},{"name":"LDAP_DEREF_SEARCHING","features":[471]},{"name":"LDAP_DIRSYNC_ANCESTORS_FIRST_ORDER","features":[471]},{"name":"LDAP_DIRSYNC_INCREMENTAL_VALUES","features":[471]},{"name":"LDAP_DIRSYNC_OBJECT_SECURITY","features":[471]},{"name":"LDAP_DIRSYNC_PUBLIC_DATA_ONLY","features":[471]},{"name":"LDAP_DIRSYNC_ROPAS_DATA_ONLY","features":[471]},{"name":"LDAP_ENCODING_ERROR","features":[471]},{"name":"LDAP_EXTENDED_CMD","features":[471]},{"name":"LDAP_FEATURE_INFO_VERSION","features":[471]},{"name":"LDAP_FILTER_AND","features":[471]},{"name":"LDAP_FILTER_APPROX","features":[471]},{"name":"LDAP_FILTER_EQUALITY","features":[471]},{"name":"LDAP_FILTER_ERROR","features":[471]},{"name":"LDAP_FILTER_EXTENSIBLE","features":[471]},{"name":"LDAP_FILTER_GE","features":[471]},{"name":"LDAP_FILTER_LE","features":[471]},{"name":"LDAP_FILTER_NOT","features":[471]},{"name":"LDAP_FILTER_OR","features":[471]},{"name":"LDAP_FILTER_PRESENT","features":[471]},{"name":"LDAP_FILTER_SUBSTRINGS","features":[471]},{"name":"LDAP_GC_PORT","features":[471]},{"name":"LDAP_INAPPROPRIATE_AUTH","features":[471]},{"name":"LDAP_INAPPROPRIATE_MATCHING","features":[471]},{"name":"LDAP_INSUFFICIENT_RIGHTS","features":[471]},{"name":"LDAP_INVALID_CMD","features":[471]},{"name":"LDAP_INVALID_CREDENTIALS","features":[471]},{"name":"LDAP_INVALID_DN_SYNTAX","features":[471]},{"name":"LDAP_INVALID_RES","features":[471]},{"name":"LDAP_INVALID_SYNTAX","features":[471]},{"name":"LDAP_IS_LEAF","features":[471]},{"name":"LDAP_LOCAL_ERROR","features":[471]},{"name":"LDAP_LOOP_DETECT","features":[471]},{"name":"LDAP_MATCHING_RULE_BIT_AND","features":[471]},{"name":"LDAP_MATCHING_RULE_BIT_AND_W","features":[471]},{"name":"LDAP_MATCHING_RULE_BIT_OR","features":[471]},{"name":"LDAP_MATCHING_RULE_BIT_OR_W","features":[471]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX","features":[471]},{"name":"LDAP_MATCHING_RULE_DN_BINARY_COMPLEX_W","features":[471]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION","features":[471]},{"name":"LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION_W","features":[471]},{"name":"LDAP_MODIFY_CMD","features":[471]},{"name":"LDAP_MODRDN_CMD","features":[471]},{"name":"LDAP_MOD_ADD","features":[471]},{"name":"LDAP_MOD_BVALUES","features":[471]},{"name":"LDAP_MOD_DELETE","features":[471]},{"name":"LDAP_MOD_REPLACE","features":[471]},{"name":"LDAP_MORE_RESULTS_TO_RETURN","features":[471]},{"name":"LDAP_MSG_ALL","features":[471]},{"name":"LDAP_MSG_ONE","features":[471]},{"name":"LDAP_MSG_RECEIVED","features":[471]},{"name":"LDAP_NAMING_VIOLATION","features":[471]},{"name":"LDAP_NOT_ALLOWED_ON_NONLEAF","features":[471]},{"name":"LDAP_NOT_ALLOWED_ON_RDN","features":[471]},{"name":"LDAP_NOT_SUPPORTED","features":[471]},{"name":"LDAP_NO_LIMIT","features":[471]},{"name":"LDAP_NO_MEMORY","features":[471]},{"name":"LDAP_NO_OBJECT_CLASS_MODS","features":[471]},{"name":"LDAP_NO_RESULTS_RETURNED","features":[471]},{"name":"LDAP_NO_SUCH_ATTRIBUTE","features":[471]},{"name":"LDAP_NO_SUCH_OBJECT","features":[471]},{"name":"LDAP_OBJECT_CLASS_VIOLATION","features":[471]},{"name":"LDAP_OFFSET_RANGE_ERROR","features":[471]},{"name":"LDAP_OPATT_ABANDON_REPL","features":[471]},{"name":"LDAP_OPATT_ABANDON_REPL_W","features":[471]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER","features":[471]},{"name":"LDAP_OPATT_BECOME_DOM_MASTER_W","features":[471]},{"name":"LDAP_OPATT_BECOME_PDC","features":[471]},{"name":"LDAP_OPATT_BECOME_PDC_W","features":[471]},{"name":"LDAP_OPATT_BECOME_RID_MASTER","features":[471]},{"name":"LDAP_OPATT_BECOME_RID_MASTER_W","features":[471]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER","features":[471]},{"name":"LDAP_OPATT_BECOME_SCHEMA_MASTER_W","features":[471]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT","features":[471]},{"name":"LDAP_OPATT_CONFIG_NAMING_CONTEXT_W","features":[471]},{"name":"LDAP_OPATT_CURRENT_TIME","features":[471]},{"name":"LDAP_OPATT_CURRENT_TIME_W","features":[471]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT","features":[471]},{"name":"LDAP_OPATT_DEFAULT_NAMING_CONTEXT_W","features":[471]},{"name":"LDAP_OPATT_DNS_HOST_NAME","features":[471]},{"name":"LDAP_OPATT_DNS_HOST_NAME_W","features":[471]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION","features":[471]},{"name":"LDAP_OPATT_DO_GARBAGE_COLLECTION_W","features":[471]},{"name":"LDAP_OPATT_DS_SERVICE_NAME","features":[471]},{"name":"LDAP_OPATT_DS_SERVICE_NAME_W","features":[471]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE","features":[471]},{"name":"LDAP_OPATT_FIXUP_INHERITANCE_W","features":[471]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN","features":[471]},{"name":"LDAP_OPATT_HIGHEST_COMMITTED_USN_W","features":[471]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL","features":[471]},{"name":"LDAP_OPATT_INVALIDATE_RID_POOL_W","features":[471]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME","features":[471]},{"name":"LDAP_OPATT_LDAP_SERVICE_NAME_W","features":[471]},{"name":"LDAP_OPATT_NAMING_CONTEXTS","features":[471]},{"name":"LDAP_OPATT_NAMING_CONTEXTS_W","features":[471]},{"name":"LDAP_OPATT_RECALC_HIERARCHY","features":[471]},{"name":"LDAP_OPATT_RECALC_HIERARCHY_W","features":[471]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT","features":[471]},{"name":"LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT_W","features":[471]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT","features":[471]},{"name":"LDAP_OPATT_SCHEMA_NAMING_CONTEXT_W","features":[471]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW","features":[471]},{"name":"LDAP_OPATT_SCHEMA_UPDATE_NOW_W","features":[471]},{"name":"LDAP_OPATT_SERVER_NAME","features":[471]},{"name":"LDAP_OPATT_SERVER_NAME_W","features":[471]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY","features":[471]},{"name":"LDAP_OPATT_SUBSCHEMA_SUBENTRY_W","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_CAPABILITIES_W","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_CONTROL_W","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_POLICIES_W","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_LDAP_VERSION_W","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM","features":[471]},{"name":"LDAP_OPATT_SUPPORTED_SASL_MECHANISM_W","features":[471]},{"name":"LDAP_OPERATIONS_ERROR","features":[471]},{"name":"LDAP_OPT_API_FEATURE_INFO","features":[471]},{"name":"LDAP_OPT_API_INFO","features":[471]},{"name":"LDAP_OPT_AREC_EXCLUSIVE","features":[471]},{"name":"LDAP_OPT_AUTO_RECONNECT","features":[471]},{"name":"LDAP_OPT_CACHE_ENABLE","features":[471]},{"name":"LDAP_OPT_CACHE_FN_PTRS","features":[471]},{"name":"LDAP_OPT_CACHE_STRATEGY","features":[471]},{"name":"LDAP_OPT_CHASE_REFERRALS","features":[471]},{"name":"LDAP_OPT_CLDAP_TIMEOUT","features":[471]},{"name":"LDAP_OPT_CLDAP_TRIES","features":[471]},{"name":"LDAP_OPT_CLIENT_CERTIFICATE","features":[471]},{"name":"LDAP_OPT_DEREF","features":[471]},{"name":"LDAP_OPT_DESC","features":[471]},{"name":"LDAP_OPT_DNS","features":[471]},{"name":"LDAP_OPT_DNSDOMAIN_NAME","features":[471]},{"name":"LDAP_OPT_ENCRYPT","features":[471]},{"name":"LDAP_OPT_ERROR_NUMBER","features":[471]},{"name":"LDAP_OPT_ERROR_STRING","features":[471]},{"name":"LDAP_OPT_FAST_CONCURRENT_BIND","features":[471]},{"name":"LDAP_OPT_GETDSNAME_FLAGS","features":[471]},{"name":"LDAP_OPT_HOST_NAME","features":[471]},{"name":"LDAP_OPT_HOST_REACHABLE","features":[471]},{"name":"LDAP_OPT_IO_FN_PTRS","features":[471]},{"name":"LDAP_OPT_PING_KEEP_ALIVE","features":[471]},{"name":"LDAP_OPT_PING_LIMIT","features":[471]},{"name":"LDAP_OPT_PING_WAIT_TIME","features":[471]},{"name":"LDAP_OPT_PROMPT_CREDENTIALS","features":[471]},{"name":"LDAP_OPT_PROTOCOL_VERSION","features":[471]},{"name":"LDAP_OPT_REBIND_ARG","features":[471]},{"name":"LDAP_OPT_REBIND_FN","features":[471]},{"name":"LDAP_OPT_REFERRALS","features":[471]},{"name":"LDAP_OPT_REFERRAL_CALLBACK","features":[471]},{"name":"LDAP_OPT_REFERRAL_HOP_LIMIT","features":[471]},{"name":"LDAP_OPT_REF_DEREF_CONN_PER_MSG","features":[471]},{"name":"LDAP_OPT_RESTART","features":[471]},{"name":"LDAP_OPT_RETURN_REFS","features":[471]},{"name":"LDAP_OPT_ROOTDSE_CACHE","features":[471]},{"name":"LDAP_OPT_SASL_METHOD","features":[471]},{"name":"LDAP_OPT_SCH_FLAGS","features":[471]},{"name":"LDAP_OPT_SECURITY_CONTEXT","features":[471]},{"name":"LDAP_OPT_SEND_TIMEOUT","features":[471]},{"name":"LDAP_OPT_SERVER_CERTIFICATE","features":[471]},{"name":"LDAP_OPT_SERVER_ERROR","features":[471]},{"name":"LDAP_OPT_SERVER_EXT_ERROR","features":[471]},{"name":"LDAP_OPT_SIGN","features":[471]},{"name":"LDAP_OPT_SIZELIMIT","features":[471]},{"name":"LDAP_OPT_SOCKET_BIND_ADDRESSES","features":[471]},{"name":"LDAP_OPT_SSL","features":[471]},{"name":"LDAP_OPT_SSL_INFO","features":[471]},{"name":"LDAP_OPT_SSPI_FLAGS","features":[471]},{"name":"LDAP_OPT_TCP_KEEPALIVE","features":[471]},{"name":"LDAP_OPT_THREAD_FN_PTRS","features":[471]},{"name":"LDAP_OPT_TIMELIMIT","features":[471]},{"name":"LDAP_OPT_TLS","features":[471]},{"name":"LDAP_OPT_TLS_INFO","features":[471]},{"name":"LDAP_OPT_VERSION","features":[471]},{"name":"LDAP_OTHER","features":[471]},{"name":"LDAP_PAGED_RESULT_OID_STRING","features":[471]},{"name":"LDAP_PAGED_RESULT_OID_STRING_W","features":[471]},{"name":"LDAP_PARAM_ERROR","features":[471]},{"name":"LDAP_PARTIAL_RESULTS","features":[471]},{"name":"LDAP_POLICYHINT_APPLY_FULLPWDPOLICY","features":[471]},{"name":"LDAP_PORT","features":[471]},{"name":"LDAP_PROTOCOL_ERROR","features":[471]},{"name":"LDAP_REFERRAL","features":[471]},{"name":"LDAP_REFERRAL_CALLBACK","features":[305,471]},{"name":"LDAP_REFERRAL_LIMIT_EXCEEDED","features":[471]},{"name":"LDAP_REFERRAL_V2","features":[471]},{"name":"LDAP_RESULTS_TOO_LARGE","features":[471]},{"name":"LDAP_RES_ADD","features":[471]},{"name":"LDAP_RES_ANY","features":[471]},{"name":"LDAP_RES_BIND","features":[471]},{"name":"LDAP_RES_COMPARE","features":[471]},{"name":"LDAP_RES_DELETE","features":[471]},{"name":"LDAP_RES_EXTENDED","features":[471]},{"name":"LDAP_RES_MODIFY","features":[471]},{"name":"LDAP_RES_MODRDN","features":[471]},{"name":"LDAP_RES_REFERRAL","features":[471]},{"name":"LDAP_RES_SEARCH_ENTRY","features":[471]},{"name":"LDAP_RES_SEARCH_RESULT","features":[471]},{"name":"LDAP_RES_SESSION","features":[471]},{"name":"LDAP_RETCODE","features":[471]},{"name":"LDAP_SASL_BIND_IN_PROGRESS","features":[471]},{"name":"LDAP_SCOPE_BASE","features":[471]},{"name":"LDAP_SCOPE_ONELEVEL","features":[471]},{"name":"LDAP_SCOPE_SUBTREE","features":[471]},{"name":"LDAP_SEARCH_CMD","features":[471]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID","features":[471]},{"name":"LDAP_SEARCH_HINT_INDEX_ONLY_OID_W","features":[471]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID","features":[471]},{"name":"LDAP_SEARCH_HINT_REQUIRED_INDEX_OID_W","features":[471]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID","features":[471]},{"name":"LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID_W","features":[471]},{"name":"LDAP_SERVER_ASQ_OID","features":[471]},{"name":"LDAP_SERVER_ASQ_OID_W","features":[471]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID","features":[471]},{"name":"LDAP_SERVER_BATCH_REQUEST_OID_W","features":[471]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID","features":[471]},{"name":"LDAP_SERVER_BYPASS_QUOTA_OID_W","features":[471]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID","features":[471]},{"name":"LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID_W","features":[471]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID","features":[471]},{"name":"LDAP_SERVER_DIRSYNC_EX_OID_W","features":[471]},{"name":"LDAP_SERVER_DIRSYNC_OID","features":[471]},{"name":"LDAP_SERVER_DIRSYNC_OID_W","features":[471]},{"name":"LDAP_SERVER_DN_INPUT_OID","features":[471]},{"name":"LDAP_SERVER_DN_INPUT_OID_W","features":[471]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID","features":[471]},{"name":"LDAP_SERVER_DOMAIN_SCOPE_OID_W","features":[471]},{"name":"LDAP_SERVER_DOWN","features":[471]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID","features":[471]},{"name":"LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID_W","features":[471]},{"name":"LDAP_SERVER_EXTENDED_DN_OID","features":[471]},{"name":"LDAP_SERVER_EXTENDED_DN_OID_W","features":[471]},{"name":"LDAP_SERVER_FAST_BIND_OID","features":[471]},{"name":"LDAP_SERVER_FAST_BIND_OID_W","features":[471]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID","features":[471]},{"name":"LDAP_SERVER_FORCE_UPDATE_OID_W","features":[471]},{"name":"LDAP_SERVER_GET_STATS_OID","features":[471]},{"name":"LDAP_SERVER_GET_STATS_OID_W","features":[471]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID","features":[471]},{"name":"LDAP_SERVER_LAZY_COMMIT_OID_W","features":[471]},{"name":"LDAP_SERVER_LINK_TTL_OID","features":[471]},{"name":"LDAP_SERVER_LINK_TTL_OID_W","features":[471]},{"name":"LDAP_SERVER_NOTIFICATION_OID","features":[471]},{"name":"LDAP_SERVER_NOTIFICATION_OID_W","features":[471]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID","features":[471]},{"name":"LDAP_SERVER_PERMISSIVE_MODIFY_OID_W","features":[471]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID","features":[471]},{"name":"LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID_W","features":[471]},{"name":"LDAP_SERVER_POLICY_HINTS_OID","features":[471]},{"name":"LDAP_SERVER_POLICY_HINTS_OID_W","features":[471]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID","features":[471]},{"name":"LDAP_SERVER_QUOTA_CONTROL_OID_W","features":[471]},{"name":"LDAP_SERVER_RANGE_OPTION_OID","features":[471]},{"name":"LDAP_SERVER_RANGE_OPTION_OID_W","features":[471]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID","features":[471]},{"name":"LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID_W","features":[471]},{"name":"LDAP_SERVER_RESP_SORT_OID","features":[471]},{"name":"LDAP_SERVER_RESP_SORT_OID_W","features":[471]},{"name":"LDAP_SERVER_SD_FLAGS_OID","features":[471]},{"name":"LDAP_SERVER_SD_FLAGS_OID_W","features":[471]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID","features":[471]},{"name":"LDAP_SERVER_SEARCH_HINTS_OID_W","features":[471]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID","features":[471]},{"name":"LDAP_SERVER_SEARCH_OPTIONS_OID_W","features":[471]},{"name":"LDAP_SERVER_SET_OWNER_OID","features":[471]},{"name":"LDAP_SERVER_SET_OWNER_OID_W","features":[471]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID","features":[471]},{"name":"LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID_W","features":[471]},{"name":"LDAP_SERVER_SHOW_DELETED_OID","features":[471]},{"name":"LDAP_SERVER_SHOW_DELETED_OID_W","features":[471]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID","features":[471]},{"name":"LDAP_SERVER_SHOW_RECYCLED_OID_W","features":[471]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID","features":[471]},{"name":"LDAP_SERVER_SHUTDOWN_NOTIFY_OID_W","features":[471]},{"name":"LDAP_SERVER_SORT_OID","features":[471]},{"name":"LDAP_SERVER_SORT_OID_W","features":[471]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID","features":[471]},{"name":"LDAP_SERVER_TREE_DELETE_EX_OID_W","features":[471]},{"name":"LDAP_SERVER_TREE_DELETE_OID","features":[471]},{"name":"LDAP_SERVER_TREE_DELETE_OID_W","features":[471]},{"name":"LDAP_SERVER_UPDATE_STATS_OID","features":[471]},{"name":"LDAP_SERVER_UPDATE_STATS_OID_W","features":[471]},{"name":"LDAP_SERVER_VERIFY_NAME_OID","features":[471]},{"name":"LDAP_SERVER_VERIFY_NAME_OID_W","features":[471]},{"name":"LDAP_SERVER_WHO_AM_I_OID","features":[471]},{"name":"LDAP_SERVER_WHO_AM_I_OID_W","features":[471]},{"name":"LDAP_SESSION_CMD","features":[471]},{"name":"LDAP_SIZELIMIT_EXCEEDED","features":[471]},{"name":"LDAP_SORT_CONTROL_MISSING","features":[471]},{"name":"LDAP_SSL_GC_PORT","features":[471]},{"name":"LDAP_SSL_PORT","features":[471]},{"name":"LDAP_START_TLS_OID","features":[471]},{"name":"LDAP_START_TLS_OID_W","features":[471]},{"name":"LDAP_STRONG_AUTH_REQUIRED","features":[471]},{"name":"LDAP_SUBSTRING_ANY","features":[471]},{"name":"LDAP_SUBSTRING_FINAL","features":[471]},{"name":"LDAP_SUBSTRING_INITIAL","features":[471]},{"name":"LDAP_SUCCESS","features":[471]},{"name":"LDAP_TIMELIMIT_EXCEEDED","features":[471]},{"name":"LDAP_TIMEOUT","features":[471]},{"name":"LDAP_TIMEVAL","features":[471]},{"name":"LDAP_TTL_EXTENDED_OP_OID","features":[471]},{"name":"LDAP_TTL_EXTENDED_OP_OID_W","features":[471]},{"name":"LDAP_UNAVAILABLE","features":[471]},{"name":"LDAP_UNAVAILABLE_CRIT_EXTENSION","features":[471]},{"name":"LDAP_UNBIND_CMD","features":[471]},{"name":"LDAP_UNDEFINED_TYPE","features":[471]},{"name":"LDAP_UNICODE","features":[471]},{"name":"LDAP_UNWILLING_TO_PERFORM","features":[471]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID","features":[471]},{"name":"LDAP_UPDATE_STATS_INVOCATIONID_OID_W","features":[471]},{"name":"LDAP_UPDATE_STATS_USN_OID","features":[471]},{"name":"LDAP_UPDATE_STATS_USN_OID_W","features":[471]},{"name":"LDAP_USER_CANCELLED","features":[471]},{"name":"LDAP_VENDOR_NAME","features":[471]},{"name":"LDAP_VENDOR_NAME_W","features":[471]},{"name":"LDAP_VENDOR_VERSION","features":[471]},{"name":"LDAP_VERSION","features":[471]},{"name":"LDAP_VERSION1","features":[471]},{"name":"LDAP_VERSION2","features":[471]},{"name":"LDAP_VERSION3","features":[471]},{"name":"LDAP_VERSION_INFO","features":[471]},{"name":"LDAP_VERSION_MAX","features":[471]},{"name":"LDAP_VERSION_MIN","features":[471]},{"name":"LDAP_VIRTUAL_LIST_VIEW_ERROR","features":[471]},{"name":"LDAP_VLVINFO_VERSION","features":[471]},{"name":"LdapGetLastError","features":[471]},{"name":"LdapMapErrorToWin32","features":[305,471]},{"name":"LdapUTF8ToUnicode","features":[471]},{"name":"LdapUnicodeToUTF8","features":[471]},{"name":"NOTIFYOFNEWCONNECTION","features":[305,471]},{"name":"PLDAPSearch","features":[471]},{"name":"QUERYCLIENTCERT","features":[305,471,326,389]},{"name":"QUERYFORCONNECTION","features":[471]},{"name":"SERVER_SEARCH_FLAG_DOMAIN_SCOPE","features":[471]},{"name":"SERVER_SEARCH_FLAG_PHANTOM_ROOT","features":[471]},{"name":"VERIFYSERVERCERT","features":[305,471,389]},{"name":"ber_alloc_t","features":[471]},{"name":"ber_bvdup","features":[471]},{"name":"ber_bvecfree","features":[471]},{"name":"ber_bvfree","features":[471]},{"name":"ber_first_element","features":[471]},{"name":"ber_flatten","features":[471]},{"name":"ber_free","features":[471]},{"name":"ber_init","features":[471]},{"name":"ber_next_element","features":[471]},{"name":"ber_peek_tag","features":[471]},{"name":"ber_printf","features":[471]},{"name":"ber_scanf","features":[471]},{"name":"ber_skip_tag","features":[471]},{"name":"cldap_open","features":[471]},{"name":"cldap_openA","features":[471]},{"name":"cldap_openW","features":[471]},{"name":"ldap_abandon","features":[471]},{"name":"ldap_add","features":[471]},{"name":"ldap_addA","features":[471]},{"name":"ldap_addW","features":[471]},{"name":"ldap_add_ext","features":[305,471]},{"name":"ldap_add_extA","features":[305,471]},{"name":"ldap_add_extW","features":[305,471]},{"name":"ldap_add_ext_s","features":[305,471]},{"name":"ldap_add_ext_sA","features":[305,471]},{"name":"ldap_add_ext_sW","features":[305,471]},{"name":"ldap_add_s","features":[471]},{"name":"ldap_add_sA","features":[471]},{"name":"ldap_add_sW","features":[471]},{"name":"ldap_bind","features":[471]},{"name":"ldap_bindA","features":[471]},{"name":"ldap_bindW","features":[471]},{"name":"ldap_bind_s","features":[471]},{"name":"ldap_bind_sA","features":[471]},{"name":"ldap_bind_sW","features":[471]},{"name":"ldap_check_filterA","features":[471]},{"name":"ldap_check_filterW","features":[471]},{"name":"ldap_cleanup","features":[305,471]},{"name":"ldap_close_extended_op","features":[471]},{"name":"ldap_compare","features":[471]},{"name":"ldap_compareA","features":[471]},{"name":"ldap_compareW","features":[471]},{"name":"ldap_compare_ext","features":[305,471]},{"name":"ldap_compare_extA","features":[305,471]},{"name":"ldap_compare_extW","features":[305,471]},{"name":"ldap_compare_ext_s","features":[305,471]},{"name":"ldap_compare_ext_sA","features":[305,471]},{"name":"ldap_compare_ext_sW","features":[305,471]},{"name":"ldap_compare_s","features":[471]},{"name":"ldap_compare_sA","features":[471]},{"name":"ldap_compare_sW","features":[471]},{"name":"ldap_conn_from_msg","features":[305,471]},{"name":"ldap_connect","features":[471]},{"name":"ldap_control_free","features":[305,471]},{"name":"ldap_control_freeA","features":[305,471]},{"name":"ldap_control_freeW","features":[305,471]},{"name":"ldap_controls_free","features":[305,471]},{"name":"ldap_controls_freeA","features":[305,471]},{"name":"ldap_controls_freeW","features":[305,471]},{"name":"ldap_count_entries","features":[305,471]},{"name":"ldap_count_references","features":[305,471]},{"name":"ldap_count_values","features":[471]},{"name":"ldap_count_valuesA","features":[471]},{"name":"ldap_count_valuesW","features":[471]},{"name":"ldap_count_values_len","features":[471]},{"name":"ldap_create_page_control","features":[305,471]},{"name":"ldap_create_page_controlA","features":[305,471]},{"name":"ldap_create_page_controlW","features":[305,471]},{"name":"ldap_create_sort_control","features":[305,471]},{"name":"ldap_create_sort_controlA","features":[305,471]},{"name":"ldap_create_sort_controlW","features":[305,471]},{"name":"ldap_create_vlv_controlA","features":[305,471]},{"name":"ldap_create_vlv_controlW","features":[305,471]},{"name":"ldap_delete","features":[471]},{"name":"ldap_deleteA","features":[471]},{"name":"ldap_deleteW","features":[471]},{"name":"ldap_delete_ext","features":[305,471]},{"name":"ldap_delete_extA","features":[305,471]},{"name":"ldap_delete_extW","features":[305,471]},{"name":"ldap_delete_ext_s","features":[305,471]},{"name":"ldap_delete_ext_sA","features":[305,471]},{"name":"ldap_delete_ext_sW","features":[305,471]},{"name":"ldap_delete_s","features":[471]},{"name":"ldap_delete_sA","features":[471]},{"name":"ldap_delete_sW","features":[471]},{"name":"ldap_dn2ufn","features":[471]},{"name":"ldap_dn2ufnA","features":[471]},{"name":"ldap_dn2ufnW","features":[471]},{"name":"ldap_encode_sort_controlA","features":[305,471]},{"name":"ldap_encode_sort_controlW","features":[305,471]},{"name":"ldap_err2string","features":[471]},{"name":"ldap_err2stringA","features":[471]},{"name":"ldap_err2stringW","features":[471]},{"name":"ldap_escape_filter_element","features":[471]},{"name":"ldap_escape_filter_elementA","features":[471]},{"name":"ldap_escape_filter_elementW","features":[471]},{"name":"ldap_explode_dn","features":[471]},{"name":"ldap_explode_dnA","features":[471]},{"name":"ldap_explode_dnW","features":[471]},{"name":"ldap_extended_operation","features":[305,471]},{"name":"ldap_extended_operationA","features":[305,471]},{"name":"ldap_extended_operationW","features":[305,471]},{"name":"ldap_extended_operation_sA","features":[305,471]},{"name":"ldap_extended_operation_sW","features":[305,471]},{"name":"ldap_first_attribute","features":[305,471]},{"name":"ldap_first_attributeA","features":[305,471]},{"name":"ldap_first_attributeW","features":[305,471]},{"name":"ldap_first_entry","features":[305,471]},{"name":"ldap_first_reference","features":[305,471]},{"name":"ldap_free_controls","features":[305,471]},{"name":"ldap_free_controlsA","features":[305,471]},{"name":"ldap_free_controlsW","features":[305,471]},{"name":"ldap_get_dn","features":[305,471]},{"name":"ldap_get_dnA","features":[305,471]},{"name":"ldap_get_dnW","features":[305,471]},{"name":"ldap_get_next_page","features":[471]},{"name":"ldap_get_next_page_s","features":[305,471]},{"name":"ldap_get_option","features":[471]},{"name":"ldap_get_optionW","features":[471]},{"name":"ldap_get_paged_count","features":[305,471]},{"name":"ldap_get_values","features":[305,471]},{"name":"ldap_get_valuesA","features":[305,471]},{"name":"ldap_get_valuesW","features":[305,471]},{"name":"ldap_get_values_len","features":[305,471]},{"name":"ldap_get_values_lenA","features":[305,471]},{"name":"ldap_get_values_lenW","features":[305,471]},{"name":"ldap_init","features":[471]},{"name":"ldap_initA","features":[471]},{"name":"ldap_initW","features":[471]},{"name":"ldap_memfree","features":[471]},{"name":"ldap_memfreeA","features":[471]},{"name":"ldap_memfreeW","features":[471]},{"name":"ldap_modify","features":[471]},{"name":"ldap_modifyA","features":[471]},{"name":"ldap_modifyW","features":[471]},{"name":"ldap_modify_ext","features":[305,471]},{"name":"ldap_modify_extA","features":[305,471]},{"name":"ldap_modify_extW","features":[305,471]},{"name":"ldap_modify_ext_s","features":[305,471]},{"name":"ldap_modify_ext_sA","features":[305,471]},{"name":"ldap_modify_ext_sW","features":[305,471]},{"name":"ldap_modify_s","features":[471]},{"name":"ldap_modify_sA","features":[471]},{"name":"ldap_modify_sW","features":[471]},{"name":"ldap_modrdn","features":[471]},{"name":"ldap_modrdn2","features":[471]},{"name":"ldap_modrdn2A","features":[471]},{"name":"ldap_modrdn2W","features":[471]},{"name":"ldap_modrdn2_s","features":[471]},{"name":"ldap_modrdn2_sA","features":[471]},{"name":"ldap_modrdn2_sW","features":[471]},{"name":"ldap_modrdnA","features":[471]},{"name":"ldap_modrdnW","features":[471]},{"name":"ldap_modrdn_s","features":[471]},{"name":"ldap_modrdn_sA","features":[471]},{"name":"ldap_modrdn_sW","features":[471]},{"name":"ldap_msgfree","features":[305,471]},{"name":"ldap_next_attribute","features":[305,471]},{"name":"ldap_next_attributeA","features":[305,471]},{"name":"ldap_next_attributeW","features":[305,471]},{"name":"ldap_next_entry","features":[305,471]},{"name":"ldap_next_reference","features":[305,471]},{"name":"ldap_open","features":[471]},{"name":"ldap_openA","features":[471]},{"name":"ldap_openW","features":[471]},{"name":"ldap_parse_extended_resultA","features":[305,471]},{"name":"ldap_parse_extended_resultW","features":[305,471]},{"name":"ldap_parse_page_control","features":[305,471]},{"name":"ldap_parse_page_controlA","features":[305,471]},{"name":"ldap_parse_page_controlW","features":[305,471]},{"name":"ldap_parse_reference","features":[305,471]},{"name":"ldap_parse_referenceA","features":[305,471]},{"name":"ldap_parse_referenceW","features":[305,471]},{"name":"ldap_parse_result","features":[305,471]},{"name":"ldap_parse_resultA","features":[305,471]},{"name":"ldap_parse_resultW","features":[305,471]},{"name":"ldap_parse_sort_control","features":[305,471]},{"name":"ldap_parse_sort_controlA","features":[305,471]},{"name":"ldap_parse_sort_controlW","features":[305,471]},{"name":"ldap_parse_vlv_controlA","features":[305,471]},{"name":"ldap_parse_vlv_controlW","features":[305,471]},{"name":"ldap_perror","features":[471]},{"name":"ldap_rename_ext","features":[305,471]},{"name":"ldap_rename_extA","features":[305,471]},{"name":"ldap_rename_extW","features":[305,471]},{"name":"ldap_rename_ext_s","features":[305,471]},{"name":"ldap_rename_ext_sA","features":[305,471]},{"name":"ldap_rename_ext_sW","features":[305,471]},{"name":"ldap_result","features":[305,471]},{"name":"ldap_result2error","features":[305,471]},{"name":"ldap_sasl_bindA","features":[305,471]},{"name":"ldap_sasl_bindW","features":[305,471]},{"name":"ldap_sasl_bind_sA","features":[305,471]},{"name":"ldap_sasl_bind_sW","features":[305,471]},{"name":"ldap_search","features":[471]},{"name":"ldap_searchA","features":[471]},{"name":"ldap_searchW","features":[471]},{"name":"ldap_search_abandon_page","features":[471]},{"name":"ldap_search_ext","features":[305,471]},{"name":"ldap_search_extA","features":[305,471]},{"name":"ldap_search_extW","features":[305,471]},{"name":"ldap_search_ext_s","features":[305,471]},{"name":"ldap_search_ext_sA","features":[305,471]},{"name":"ldap_search_ext_sW","features":[305,471]},{"name":"ldap_search_init_page","features":[305,471]},{"name":"ldap_search_init_pageA","features":[305,471]},{"name":"ldap_search_init_pageW","features":[305,471]},{"name":"ldap_search_s","features":[305,471]},{"name":"ldap_search_sA","features":[305,471]},{"name":"ldap_search_sW","features":[305,471]},{"name":"ldap_search_st","features":[305,471]},{"name":"ldap_search_stA","features":[305,471]},{"name":"ldap_search_stW","features":[305,471]},{"name":"ldap_set_dbg_flags","features":[471]},{"name":"ldap_set_dbg_routine","features":[471]},{"name":"ldap_set_option","features":[471]},{"name":"ldap_set_optionW","features":[471]},{"name":"ldap_simple_bind","features":[471]},{"name":"ldap_simple_bindA","features":[471]},{"name":"ldap_simple_bindW","features":[471]},{"name":"ldap_simple_bind_s","features":[471]},{"name":"ldap_simple_bind_sA","features":[471]},{"name":"ldap_simple_bind_sW","features":[471]},{"name":"ldap_sslinit","features":[471]},{"name":"ldap_sslinitA","features":[471]},{"name":"ldap_sslinitW","features":[471]},{"name":"ldap_start_tls_sA","features":[305,471]},{"name":"ldap_start_tls_sW","features":[305,471]},{"name":"ldap_startup","features":[305,471]},{"name":"ldap_stop_tls_s","features":[305,471]},{"name":"ldap_ufn2dn","features":[471]},{"name":"ldap_ufn2dnA","features":[471]},{"name":"ldap_ufn2dnW","features":[471]},{"name":"ldap_unbind","features":[471]},{"name":"ldap_unbind_s","features":[471]},{"name":"ldap_value_free","features":[471]},{"name":"ldap_value_freeA","features":[471]},{"name":"ldap_value_freeW","features":[471]},{"name":"ldap_value_free_len","features":[471]}],"474":[{"name":"IEnumNetworkConnections","features":[472,356]},{"name":"IEnumNetworks","features":[472,356]},{"name":"INetwork","features":[472,356]},{"name":"INetwork2","features":[472,356]},{"name":"INetworkConnection","features":[472,356]},{"name":"INetworkConnection2","features":[472,356]},{"name":"INetworkConnectionCost","features":[472]},{"name":"INetworkConnectionCostEvents","features":[472]},{"name":"INetworkConnectionEvents","features":[472]},{"name":"INetworkCostManager","features":[472]},{"name":"INetworkCostManagerEvents","features":[472]},{"name":"INetworkEvents","features":[472]},{"name":"INetworkListManager","features":[472,356]},{"name":"INetworkListManagerEvents","features":[472]},{"name":"NA_AllowMerge","features":[472]},{"name":"NA_CategoryReadOnly","features":[472]},{"name":"NA_CategorySetByPolicy","features":[472]},{"name":"NA_DescriptionReadOnly","features":[472]},{"name":"NA_DescriptionSetByPolicy","features":[472]},{"name":"NA_DomainAuthenticationFailed","features":[472]},{"name":"NA_IconReadOnly","features":[472]},{"name":"NA_IconSetByPolicy","features":[472]},{"name":"NA_InternetConnectivityV4","features":[472]},{"name":"NA_InternetConnectivityV6","features":[472]},{"name":"NA_NameReadOnly","features":[472]},{"name":"NA_NameSetByPolicy","features":[472]},{"name":"NA_NetworkClass","features":[472]},{"name":"NLM_CONNECTION_COST","features":[472]},{"name":"NLM_CONNECTION_COST_APPROACHINGDATALIMIT","features":[472]},{"name":"NLM_CONNECTION_COST_CONGESTED","features":[472]},{"name":"NLM_CONNECTION_COST_FIXED","features":[472]},{"name":"NLM_CONNECTION_COST_OVERDATALIMIT","features":[472]},{"name":"NLM_CONNECTION_COST_ROAMING","features":[472]},{"name":"NLM_CONNECTION_COST_UNKNOWN","features":[472]},{"name":"NLM_CONNECTION_COST_UNRESTRICTED","features":[472]},{"name":"NLM_CONNECTION_COST_VARIABLE","features":[472]},{"name":"NLM_CONNECTION_PROPERTY_CHANGE","features":[472]},{"name":"NLM_CONNECTION_PROPERTY_CHANGE_AUTHENTICATION","features":[472]},{"name":"NLM_CONNECTIVITY","features":[472]},{"name":"NLM_CONNECTIVITY_DISCONNECTED","features":[472]},{"name":"NLM_CONNECTIVITY_IPV4_INTERNET","features":[472]},{"name":"NLM_CONNECTIVITY_IPV4_LOCALNETWORK","features":[472]},{"name":"NLM_CONNECTIVITY_IPV4_NOTRAFFIC","features":[472]},{"name":"NLM_CONNECTIVITY_IPV4_SUBNET","features":[472]},{"name":"NLM_CONNECTIVITY_IPV6_INTERNET","features":[472]},{"name":"NLM_CONNECTIVITY_IPV6_LOCALNETWORK","features":[472]},{"name":"NLM_CONNECTIVITY_IPV6_NOTRAFFIC","features":[472]},{"name":"NLM_CONNECTIVITY_IPV6_SUBNET","features":[472]},{"name":"NLM_DATAPLAN_STATUS","features":[305,472]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND","features":[472]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND_LDAP","features":[472]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND_NONE","features":[472]},{"name":"NLM_DOMAIN_AUTHENTICATION_KIND_TLS","features":[472]},{"name":"NLM_DOMAIN_TYPE","features":[472]},{"name":"NLM_DOMAIN_TYPE_DOMAIN_AUTHENTICATED","features":[472]},{"name":"NLM_DOMAIN_TYPE_DOMAIN_NETWORK","features":[472]},{"name":"NLM_DOMAIN_TYPE_NON_DOMAIN_NETWORK","features":[472]},{"name":"NLM_ENUM_NETWORK","features":[472]},{"name":"NLM_ENUM_NETWORK_ALL","features":[472]},{"name":"NLM_ENUM_NETWORK_CONNECTED","features":[472]},{"name":"NLM_ENUM_NETWORK_DISCONNECTED","features":[472]},{"name":"NLM_INTERNET_CONNECTIVITY","features":[472]},{"name":"NLM_INTERNET_CONNECTIVITY_CORPORATE","features":[472]},{"name":"NLM_INTERNET_CONNECTIVITY_PROXIED","features":[472]},{"name":"NLM_INTERNET_CONNECTIVITY_WEBHIJACK","features":[472]},{"name":"NLM_MAX_ADDRESS_LIST_SIZE","features":[472]},{"name":"NLM_NETWORK_CATEGORY","features":[472]},{"name":"NLM_NETWORK_CATEGORY_DOMAIN_AUTHENTICATED","features":[472]},{"name":"NLM_NETWORK_CATEGORY_PRIVATE","features":[472]},{"name":"NLM_NETWORK_CATEGORY_PUBLIC","features":[472]},{"name":"NLM_NETWORK_CLASS","features":[472]},{"name":"NLM_NETWORK_IDENTIFIED","features":[472]},{"name":"NLM_NETWORK_IDENTIFYING","features":[472]},{"name":"NLM_NETWORK_PROPERTY_CHANGE","features":[472]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_CATEGORY_VALUE","features":[472]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_CONNECTION","features":[472]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_DESCRIPTION","features":[472]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_ICON","features":[472]},{"name":"NLM_NETWORK_PROPERTY_CHANGE_NAME","features":[472]},{"name":"NLM_NETWORK_UNIDENTIFIED","features":[472]},{"name":"NLM_SIMULATED_PROFILE_INFO","features":[472]},{"name":"NLM_SOCKADDR","features":[472]},{"name":"NLM_UNKNOWN_DATAPLAN_STATUS","features":[472]},{"name":"NLM_USAGE_DATA","features":[305,472]},{"name":"NetworkListManager","features":[472]}],"475":[{"name":"FindSimilarFileIndexResults","features":[473]},{"name":"FindSimilarResults","features":[473]},{"name":"GeneratorParametersType","features":[473]},{"name":"IFindSimilarResults","features":[473]},{"name":"IRdcComparator","features":[473]},{"name":"IRdcFileReader","features":[473]},{"name":"IRdcFileWriter","features":[473]},{"name":"IRdcGenerator","features":[473]},{"name":"IRdcGeneratorFilterMaxParameters","features":[473]},{"name":"IRdcGeneratorParameters","features":[473]},{"name":"IRdcLibrary","features":[473]},{"name":"IRdcSignatureReader","features":[473]},{"name":"IRdcSimilarityGenerator","features":[473]},{"name":"ISimilarity","features":[473]},{"name":"ISimilarityFileIdTable","features":[473]},{"name":"ISimilarityReportProgress","features":[473]},{"name":"ISimilarityTableDumpState","features":[473]},{"name":"ISimilarityTraitsMappedView","features":[473]},{"name":"ISimilarityTraitsMapping","features":[473]},{"name":"ISimilarityTraitsTable","features":[473]},{"name":"MSRDC_DEFAULT_COMPAREBUFFER","features":[473]},{"name":"MSRDC_DEFAULT_HASHWINDOWSIZE_1","features":[473]},{"name":"MSRDC_DEFAULT_HASHWINDOWSIZE_N","features":[473]},{"name":"MSRDC_DEFAULT_HORIZONSIZE_1","features":[473]},{"name":"MSRDC_DEFAULT_HORIZONSIZE_N","features":[473]},{"name":"MSRDC_MAXIMUM_COMPAREBUFFER","features":[473]},{"name":"MSRDC_MAXIMUM_DEPTH","features":[473]},{"name":"MSRDC_MAXIMUM_HASHWINDOWSIZE","features":[473]},{"name":"MSRDC_MAXIMUM_HORIZONSIZE","features":[473]},{"name":"MSRDC_MAXIMUM_MATCHESREQUIRED","features":[473]},{"name":"MSRDC_MAXIMUM_TRAITVALUE","features":[473]},{"name":"MSRDC_MINIMUM_COMPAREBUFFER","features":[473]},{"name":"MSRDC_MINIMUM_COMPATIBLE_APP_VERSION","features":[473]},{"name":"MSRDC_MINIMUM_DEPTH","features":[473]},{"name":"MSRDC_MINIMUM_HASHWINDOWSIZE","features":[473]},{"name":"MSRDC_MINIMUM_HORIZONSIZE","features":[473]},{"name":"MSRDC_MINIMUM_INPUTBUFFERSIZE","features":[473]},{"name":"MSRDC_MINIMUM_MATCHESREQUIRED","features":[473]},{"name":"MSRDC_SIGNATURE_HASHSIZE","features":[473]},{"name":"MSRDC_VERSION","features":[473]},{"name":"RDCE_TABLE_CORRUPT","features":[473]},{"name":"RDCE_TABLE_FULL","features":[473]},{"name":"RDCGENTYPE_FilterMax","features":[473]},{"name":"RDCGENTYPE_Unused","features":[473]},{"name":"RDCMAPPING_ReadOnly","features":[473]},{"name":"RDCMAPPING_ReadWrite","features":[473]},{"name":"RDCMAPPING_Undefined","features":[473]},{"name":"RDCNEED_SEED","features":[473]},{"name":"RDCNEED_SEED_MAX","features":[473]},{"name":"RDCNEED_SOURCE","features":[473]},{"name":"RDCNEED_TARGET","features":[473]},{"name":"RDCTABLE_Existing","features":[473]},{"name":"RDCTABLE_InvalidOrUnknown","features":[473]},{"name":"RDCTABLE_New","features":[473]},{"name":"RDC_Aborted","features":[473]},{"name":"RDC_ApplicationError","features":[473]},{"name":"RDC_DataMissingOrCorrupt","features":[473]},{"name":"RDC_DataTooManyRecords","features":[473]},{"name":"RDC_ErrorCode","features":[473]},{"name":"RDC_FileChecksumMismatch","features":[473]},{"name":"RDC_HeaderMissingOrCorrupt","features":[473]},{"name":"RDC_HeaderVersionNewer","features":[473]},{"name":"RDC_HeaderVersionOlder","features":[473]},{"name":"RDC_HeaderWrongType","features":[473]},{"name":"RDC_NoError","features":[473]},{"name":"RDC_Win32Error","features":[473]},{"name":"RdcBufferPointer","features":[473]},{"name":"RdcComparator","features":[473]},{"name":"RdcCreatedTables","features":[473]},{"name":"RdcFileReader","features":[473]},{"name":"RdcGenerator","features":[473]},{"name":"RdcGeneratorFilterMaxParameters","features":[473]},{"name":"RdcGeneratorParameters","features":[473]},{"name":"RdcLibrary","features":[473]},{"name":"RdcMappingAccessMode","features":[473]},{"name":"RdcNeed","features":[473]},{"name":"RdcNeedPointer","features":[473]},{"name":"RdcNeedType","features":[473]},{"name":"RdcSignature","features":[473]},{"name":"RdcSignaturePointer","features":[473]},{"name":"RdcSignatureReader","features":[473]},{"name":"RdcSimilarityGenerator","features":[473]},{"name":"Similarity","features":[473]},{"name":"SimilarityData","features":[473]},{"name":"SimilarityDumpData","features":[473]},{"name":"SimilarityFileId","features":[473]},{"name":"SimilarityFileIdMaxSize","features":[473]},{"name":"SimilarityFileIdMinSize","features":[473]},{"name":"SimilarityFileIdTable","features":[473]},{"name":"SimilarityMappedViewInfo","features":[473]},{"name":"SimilarityReportProgress","features":[473]},{"name":"SimilarityTableDumpState","features":[473]},{"name":"SimilarityTraitsMappedView","features":[473]},{"name":"SimilarityTraitsMapping","features":[473]},{"name":"SimilarityTraitsTable","features":[473]}],"476":[{"name":"WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_ACTION","features":[474]},{"name":"WEB_SOCKET_ACTION_QUEUE","features":[474]},{"name":"WEB_SOCKET_ALLOCATED_BUFFER_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_ALL_ACTION_QUEUE","features":[474]},{"name":"WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[474]},{"name":"WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[474]},{"name":"WEB_SOCKET_BUFFER","features":[474]},{"name":"WEB_SOCKET_BUFFER_TYPE","features":[474]},{"name":"WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[474]},{"name":"WEB_SOCKET_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_DISABLE_MASKING_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_DISABLE_UTF8_VERIFICATION_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_ENDPOINT_UNAVAILABLE_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_HANDLE","features":[474]},{"name":"WEB_SOCKET_HTTP_HEADER","features":[474]},{"name":"WEB_SOCKET_INDICATE_RECEIVE_COMPLETE_ACTION","features":[474]},{"name":"WEB_SOCKET_INDICATE_SEND_COMPLETE_ACTION","features":[474]},{"name":"WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_KEEPALIVE_INTERVAL_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[474]},{"name":"WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_NO_ACTION","features":[474]},{"name":"WEB_SOCKET_PING_PONG_BUFFER_TYPE","features":[474]},{"name":"WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_PROPERTY","features":[474]},{"name":"WEB_SOCKET_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_RECEIVE_ACTION_QUEUE","features":[474]},{"name":"WEB_SOCKET_RECEIVE_BUFFER_SIZE_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_RECEIVE_FROM_NETWORK_ACTION","features":[474]},{"name":"WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_SEND_ACTION_QUEUE","features":[474]},{"name":"WEB_SOCKET_SEND_BUFFER_SIZE_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_SEND_TO_NETWORK_ACTION","features":[474]},{"name":"WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_SUPPORTED_VERSIONS_PROPERTY_TYPE","features":[474]},{"name":"WEB_SOCKET_UNSOLICITED_PONG_BUFFER_TYPE","features":[474]},{"name":"WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[474]},{"name":"WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[474]},{"name":"WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[474]},{"name":"WebSocketAbortHandle","features":[474]},{"name":"WebSocketBeginClientHandshake","features":[474]},{"name":"WebSocketBeginServerHandshake","features":[474]},{"name":"WebSocketCompleteAction","features":[474]},{"name":"WebSocketCreateClientHandle","features":[474]},{"name":"WebSocketCreateServerHandle","features":[474]},{"name":"WebSocketDeleteHandle","features":[474]},{"name":"WebSocketEndClientHandshake","features":[474]},{"name":"WebSocketEndServerHandshake","features":[474]},{"name":"WebSocketGetAction","features":[474]},{"name":"WebSocketGetGlobalProperty","features":[474]},{"name":"WebSocketReceive","features":[474]},{"name":"WebSocketSend","features":[474]}],"477":[{"name":"API_GET_PROXY_FOR_URL","features":[475]},{"name":"API_GET_PROXY_SETTINGS","features":[475]},{"name":"API_QUERY_DATA_AVAILABLE","features":[475]},{"name":"API_READ_DATA","features":[475]},{"name":"API_RECEIVE_RESPONSE","features":[475]},{"name":"API_SEND_REQUEST","features":[475]},{"name":"API_WRITE_DATA","features":[475]},{"name":"AutoLogonPolicy_Always","features":[475]},{"name":"AutoLogonPolicy_Never","features":[475]},{"name":"AutoLogonPolicy_OnlyIfBypassProxy","features":[475]},{"name":"ERROR_WINHTTP_AUTODETECTION_FAILED","features":[475]},{"name":"ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR","features":[475]},{"name":"ERROR_WINHTTP_BAD_AUTO_PROXY_SCRIPT","features":[475]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_OPEN","features":[475]},{"name":"ERROR_WINHTTP_CANNOT_CALL_AFTER_SEND","features":[475]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_OPEN","features":[475]},{"name":"ERROR_WINHTTP_CANNOT_CALL_BEFORE_SEND","features":[475]},{"name":"ERROR_WINHTTP_CANNOT_CONNECT","features":[475]},{"name":"ERROR_WINHTTP_CHUNKED_ENCODING_HEADER_SIZE_OVERFLOW","features":[475]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED","features":[475]},{"name":"ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[475]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_ACCESS_PRIVATE_KEY","features":[475]},{"name":"ERROR_WINHTTP_CLIENT_CERT_NO_PRIVATE_KEY","features":[475]},{"name":"ERROR_WINHTTP_CONNECTION_ERROR","features":[475]},{"name":"ERROR_WINHTTP_FEATURE_DISABLED","features":[475]},{"name":"ERROR_WINHTTP_GLOBAL_CALLBACK_FAILED","features":[475]},{"name":"ERROR_WINHTTP_HEADER_ALREADY_EXISTS","features":[475]},{"name":"ERROR_WINHTTP_HEADER_COUNT_EXCEEDED","features":[475]},{"name":"ERROR_WINHTTP_HEADER_NOT_FOUND","features":[475]},{"name":"ERROR_WINHTTP_HEADER_SIZE_OVERFLOW","features":[475]},{"name":"ERROR_WINHTTP_HTTP_PROTOCOL_MISMATCH","features":[475]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_STATE","features":[475]},{"name":"ERROR_WINHTTP_INCORRECT_HANDLE_TYPE","features":[475]},{"name":"ERROR_WINHTTP_INTERNAL_ERROR","features":[475]},{"name":"ERROR_WINHTTP_INVALID_HEADER","features":[475]},{"name":"ERROR_WINHTTP_INVALID_OPTION","features":[475]},{"name":"ERROR_WINHTTP_INVALID_QUERY_REQUEST","features":[475]},{"name":"ERROR_WINHTTP_INVALID_SERVER_RESPONSE","features":[475]},{"name":"ERROR_WINHTTP_INVALID_URL","features":[475]},{"name":"ERROR_WINHTTP_LOGIN_FAILURE","features":[475]},{"name":"ERROR_WINHTTP_NAME_NOT_RESOLVED","features":[475]},{"name":"ERROR_WINHTTP_NOT_INITIALIZED","features":[475]},{"name":"ERROR_WINHTTP_OPERATION_CANCELLED","features":[475]},{"name":"ERROR_WINHTTP_OPTION_NOT_SETTABLE","features":[475]},{"name":"ERROR_WINHTTP_OUT_OF_HANDLES","features":[475]},{"name":"ERROR_WINHTTP_REDIRECT_FAILED","features":[475]},{"name":"ERROR_WINHTTP_RESEND_REQUEST","features":[475]},{"name":"ERROR_WINHTTP_RESERVED_189","features":[475]},{"name":"ERROR_WINHTTP_RESPONSE_DRAIN_OVERFLOW","features":[475]},{"name":"ERROR_WINHTTP_SCRIPT_EXECUTION_ERROR","features":[475]},{"name":"ERROR_WINHTTP_SECURE_CERT_CN_INVALID","features":[475]},{"name":"ERROR_WINHTTP_SECURE_CERT_DATE_INVALID","features":[475]},{"name":"ERROR_WINHTTP_SECURE_CERT_REVOKED","features":[475]},{"name":"ERROR_WINHTTP_SECURE_CERT_REV_FAILED","features":[475]},{"name":"ERROR_WINHTTP_SECURE_CERT_WRONG_USAGE","features":[475]},{"name":"ERROR_WINHTTP_SECURE_CHANNEL_ERROR","features":[475]},{"name":"ERROR_WINHTTP_SECURE_FAILURE","features":[475]},{"name":"ERROR_WINHTTP_SECURE_FAILURE_PROXY","features":[475]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CA","features":[475]},{"name":"ERROR_WINHTTP_SECURE_INVALID_CERT","features":[475]},{"name":"ERROR_WINHTTP_SHUTDOWN","features":[475]},{"name":"ERROR_WINHTTP_TIMEOUT","features":[475]},{"name":"ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT","features":[475]},{"name":"ERROR_WINHTTP_UNHANDLED_SCRIPT_TYPE","features":[475]},{"name":"ERROR_WINHTTP_UNRECOGNIZED_SCHEME","features":[475]},{"name":"HTTPREQUEST_PROXYSETTING_DEFAULT","features":[475]},{"name":"HTTPREQUEST_PROXYSETTING_DIRECT","features":[475]},{"name":"HTTPREQUEST_PROXYSETTING_PRECONFIG","features":[475]},{"name":"HTTPREQUEST_PROXYSETTING_PROXY","features":[475]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_PROXY","features":[475]},{"name":"HTTPREQUEST_SETCREDENTIALS_FOR_SERVER","features":[475]},{"name":"HTTP_STATUS_ACCEPTED","features":[475]},{"name":"HTTP_STATUS_AMBIGUOUS","features":[475]},{"name":"HTTP_STATUS_BAD_GATEWAY","features":[475]},{"name":"HTTP_STATUS_BAD_METHOD","features":[475]},{"name":"HTTP_STATUS_BAD_REQUEST","features":[475]},{"name":"HTTP_STATUS_CONFLICT","features":[475]},{"name":"HTTP_STATUS_CONTINUE","features":[475]},{"name":"HTTP_STATUS_CREATED","features":[475]},{"name":"HTTP_STATUS_DENIED","features":[475]},{"name":"HTTP_STATUS_FIRST","features":[475]},{"name":"HTTP_STATUS_FORBIDDEN","features":[475]},{"name":"HTTP_STATUS_GATEWAY_TIMEOUT","features":[475]},{"name":"HTTP_STATUS_GONE","features":[475]},{"name":"HTTP_STATUS_LAST","features":[475]},{"name":"HTTP_STATUS_LENGTH_REQUIRED","features":[475]},{"name":"HTTP_STATUS_MOVED","features":[475]},{"name":"HTTP_STATUS_NONE_ACCEPTABLE","features":[475]},{"name":"HTTP_STATUS_NOT_FOUND","features":[475]},{"name":"HTTP_STATUS_NOT_MODIFIED","features":[475]},{"name":"HTTP_STATUS_NOT_SUPPORTED","features":[475]},{"name":"HTTP_STATUS_NO_CONTENT","features":[475]},{"name":"HTTP_STATUS_OK","features":[475]},{"name":"HTTP_STATUS_PARTIAL","features":[475]},{"name":"HTTP_STATUS_PARTIAL_CONTENT","features":[475]},{"name":"HTTP_STATUS_PAYMENT_REQ","features":[475]},{"name":"HTTP_STATUS_PERMANENT_REDIRECT","features":[475]},{"name":"HTTP_STATUS_PRECOND_FAILED","features":[475]},{"name":"HTTP_STATUS_PROXY_AUTH_REQ","features":[475]},{"name":"HTTP_STATUS_REDIRECT","features":[475]},{"name":"HTTP_STATUS_REDIRECT_KEEP_VERB","features":[475]},{"name":"HTTP_STATUS_REDIRECT_METHOD","features":[475]},{"name":"HTTP_STATUS_REQUEST_TIMEOUT","features":[475]},{"name":"HTTP_STATUS_REQUEST_TOO_LARGE","features":[475]},{"name":"HTTP_STATUS_RESET_CONTENT","features":[475]},{"name":"HTTP_STATUS_RETRY_WITH","features":[475]},{"name":"HTTP_STATUS_SERVER_ERROR","features":[475]},{"name":"HTTP_STATUS_SERVICE_UNAVAIL","features":[475]},{"name":"HTTP_STATUS_SWITCH_PROTOCOLS","features":[475]},{"name":"HTTP_STATUS_UNSUPPORTED_MEDIA","features":[475]},{"name":"HTTP_STATUS_URI_TOO_LONG","features":[475]},{"name":"HTTP_STATUS_USE_PROXY","features":[475]},{"name":"HTTP_STATUS_VERSION_NOT_SUP","features":[475]},{"name":"HTTP_STATUS_WEBDAV_MULTI_STATUS","features":[475]},{"name":"HTTP_VERSION_INFO","features":[475]},{"name":"ICU_BROWSER_MODE","features":[475]},{"name":"ICU_DECODE","features":[475]},{"name":"ICU_ENCODE_PERCENT","features":[475]},{"name":"ICU_ENCODE_SPACES_ONLY","features":[475]},{"name":"ICU_ESCAPE","features":[475]},{"name":"ICU_ESCAPE_AUTHORITY","features":[475]},{"name":"ICU_NO_ENCODE","features":[475]},{"name":"ICU_NO_META","features":[475]},{"name":"ICU_REJECT_USERPWD","features":[475]},{"name":"INTERNET_DEFAULT_HTTPS_PORT","features":[475]},{"name":"INTERNET_DEFAULT_HTTP_PORT","features":[475]},{"name":"INTERNET_DEFAULT_PORT","features":[475]},{"name":"IWinHttpRequest","features":[475,356]},{"name":"IWinHttpRequestEvents","features":[475]},{"name":"NETWORKING_KEY_BUFSIZE","features":[475]},{"name":"SECURITY_FLAG_IGNORE_CERT_CN_INVALID","features":[475]},{"name":"SECURITY_FLAG_IGNORE_CERT_DATE_INVALID","features":[475]},{"name":"SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE","features":[475]},{"name":"SECURITY_FLAG_IGNORE_UNKNOWN_CA","features":[475]},{"name":"SECURITY_FLAG_SECURE","features":[475]},{"name":"SECURITY_FLAG_STRENGTH_MEDIUM","features":[475]},{"name":"SECURITY_FLAG_STRENGTH_STRONG","features":[475]},{"name":"SECURITY_FLAG_STRENGTH_WEAK","features":[475]},{"name":"SecureProtocol_ALL","features":[475]},{"name":"SecureProtocol_SSL2","features":[475]},{"name":"SecureProtocol_SSL3","features":[475]},{"name":"SecureProtocol_TLS1","features":[475]},{"name":"SecureProtocol_TLS1_1","features":[475]},{"name":"SecureProtocol_TLS1_2","features":[475]},{"name":"SslErrorFlag_CertCNInvalid","features":[475]},{"name":"SslErrorFlag_CertDateInvalid","features":[475]},{"name":"SslErrorFlag_CertWrongUsage","features":[475]},{"name":"SslErrorFlag_Ignore_All","features":[475]},{"name":"SslErrorFlag_UnknownCA","features":[475]},{"name":"URL_COMPONENTS","features":[475]},{"name":"WINHTTP_ACCESS_TYPE","features":[475]},{"name":"WINHTTP_ACCESS_TYPE_AUTOMATIC_PROXY","features":[475]},{"name":"WINHTTP_ACCESS_TYPE_DEFAULT_PROXY","features":[475]},{"name":"WINHTTP_ACCESS_TYPE_NAMED_PROXY","features":[475]},{"name":"WINHTTP_ACCESS_TYPE_NO_PROXY","features":[475]},{"name":"WINHTTP_ADDREQ_FLAGS_MASK","features":[475]},{"name":"WINHTTP_ADDREQ_FLAG_ADD","features":[475]},{"name":"WINHTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[475]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE","features":[475]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[475]},{"name":"WINHTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[475]},{"name":"WINHTTP_ADDREQ_FLAG_REPLACE","features":[475]},{"name":"WINHTTP_ADDREQ_INDEX_MASK","features":[475]},{"name":"WINHTTP_ASYNC_RESULT","features":[475]},{"name":"WINHTTP_AUTH_SCHEME_BASIC","features":[475]},{"name":"WINHTTP_AUTH_SCHEME_DIGEST","features":[475]},{"name":"WINHTTP_AUTH_SCHEME_NEGOTIATE","features":[475]},{"name":"WINHTTP_AUTH_SCHEME_NTLM","features":[475]},{"name":"WINHTTP_AUTH_SCHEME_PASSPORT","features":[475]},{"name":"WINHTTP_AUTH_TARGET_PROXY","features":[475]},{"name":"WINHTTP_AUTH_TARGET_SERVER","features":[475]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_DEFAULT","features":[475]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_HIGH","features":[475]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_LOW","features":[475]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MAX","features":[475]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_MEDIUM","features":[475]},{"name":"WINHTTP_AUTOLOGON_SECURITY_LEVEL_PROXY_ONLY","features":[475]},{"name":"WINHTTP_AUTOPROXY_ALLOW_AUTOCONFIG","features":[475]},{"name":"WINHTTP_AUTOPROXY_ALLOW_CM","features":[475]},{"name":"WINHTTP_AUTOPROXY_ALLOW_STATIC","features":[475]},{"name":"WINHTTP_AUTOPROXY_AUTO_DETECT","features":[475]},{"name":"WINHTTP_AUTOPROXY_CONFIG_URL","features":[475]},{"name":"WINHTTP_AUTOPROXY_HOST_KEEPCASE","features":[475]},{"name":"WINHTTP_AUTOPROXY_HOST_LOWERCASE","features":[475]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_CLIENT","features":[475]},{"name":"WINHTTP_AUTOPROXY_NO_CACHE_SVC","features":[475]},{"name":"WINHTTP_AUTOPROXY_NO_DIRECTACCESS","features":[475]},{"name":"WINHTTP_AUTOPROXY_OPTIONS","features":[305,475]},{"name":"WINHTTP_AUTOPROXY_RUN_INPROCESS","features":[475]},{"name":"WINHTTP_AUTOPROXY_RUN_OUTPROCESS_ONLY","features":[475]},{"name":"WINHTTP_AUTOPROXY_SORT_RESULTS","features":[475]},{"name":"WINHTTP_AUTOPROXY_USE_INTERFACE_CONFIG","features":[475]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DHCP","features":[475]},{"name":"WINHTTP_AUTO_DETECT_TYPE_DNS_A","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_ALL_NOTIFICATIONS","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_DATA_AVAILABLE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_DETECTING_PROXY","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYFORURL_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_GETPROXYSETTINGS_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_HEADERS_AVAILABLE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_INTERMEDIATE_RESPONSE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_READ_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_REDIRECT","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_REQUEST_ERROR","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_SECURE_FAILURE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_SENDREQUEST_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_FLAG_WRITE_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSE_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_CLOSING_CONNECTION","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTED_TO_SERVER","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTING_TO_SERVER","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_CONNECTION_CLOSED","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_DATA_AVAILABLE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_DETECTING_PROXY","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_CN_INVALID","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_DATE_INVALID","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REVOKED","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_REV_FAILED","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_CERT_WRONG_USAGE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CA","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_INVALID_CERT","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_FLAG_SECURITY_CHANNEL_ERROR","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYFORURL_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_GETPROXYSETTINGS_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CLOSING","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_HANDLE_CREATED","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_HEADERS_AVAILABLE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_INTERMEDIATE_RESPONSE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_NAME_RESOLVED","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_READ_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_RECEIVING_RESPONSE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_REDIRECT","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_ERROR","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_REQUEST_SENT","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_RESOLVING_NAME","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_RESPONSE_RECEIVED","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_SECURE_FAILURE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_SENDING_REQUEST","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_SENDREQUEST_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_READ_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_SETTINGS_WRITE_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_SHUTDOWN_COMPLETE","features":[475]},{"name":"WINHTTP_CALLBACK_STATUS_WRITE_COMPLETE","features":[475]},{"name":"WINHTTP_CERTIFICATE_INFO","features":[305,475]},{"name":"WINHTTP_CONNECTION_GROUP","features":[475]},{"name":"WINHTTP_CONNECTION_INFO","features":[475,318]},{"name":"WINHTTP_CONNECTION_INFO","features":[475,318]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_408","features":[475]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_SSL_HANDSHAKE","features":[475]},{"name":"WINHTTP_CONNECTION_RETRY_CONDITION_STALE_CONNECTION","features":[475]},{"name":"WINHTTP_CONNS_PER_SERVER_UNLIMITED","features":[475]},{"name":"WINHTTP_CREDS","features":[475]},{"name":"WINHTTP_CREDS_AUTHSCHEME","features":[475]},{"name":"WINHTTP_CREDS_EX","features":[475]},{"name":"WINHTTP_CURRENT_USER_IE_PROXY_CONFIG","features":[305,475]},{"name":"WINHTTP_DECOMPRESSION_FLAG_DEFLATE","features":[475]},{"name":"WINHTTP_DECOMPRESSION_FLAG_GZIP","features":[475]},{"name":"WINHTTP_DISABLE_AUTHENTICATION","features":[475]},{"name":"WINHTTP_DISABLE_COOKIES","features":[475]},{"name":"WINHTTP_DISABLE_KEEP_ALIVE","features":[475]},{"name":"WINHTTP_DISABLE_PASSPORT_AUTH","features":[475]},{"name":"WINHTTP_DISABLE_PASSPORT_KEYRING","features":[475]},{"name":"WINHTTP_DISABLE_REDIRECTS","features":[475]},{"name":"WINHTTP_DISABLE_SPN_SERVER_PORT","features":[475]},{"name":"WINHTTP_ENABLE_PASSPORT_AUTH","features":[475]},{"name":"WINHTTP_ENABLE_PASSPORT_KEYRING","features":[475]},{"name":"WINHTTP_ENABLE_SPN_SERVER_PORT","features":[475]},{"name":"WINHTTP_ENABLE_SSL_REVERT_IMPERSONATION","features":[475]},{"name":"WINHTTP_ENABLE_SSL_REVOCATION","features":[475]},{"name":"WINHTTP_ERROR_BASE","features":[475]},{"name":"WINHTTP_ERROR_LAST","features":[475]},{"name":"WINHTTP_EXTENDED_HEADER","features":[475]},{"name":"WINHTTP_EXTENDED_HEADER_FLAG_UNICODE","features":[475]},{"name":"WINHTTP_FAILED_CONNECTION_RETRIES","features":[475]},{"name":"WINHTTP_FEATURE_ADD_REQUEST_HEADERS_EX","features":[475]},{"name":"WINHTTP_FEATURE_BACKGROUND_CONNECTIONS","features":[475]},{"name":"WINHTTP_FEATURE_CONNECTION_GUID","features":[475]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V0","features":[475]},{"name":"WINHTTP_FEATURE_CONNECTION_STATS_V1","features":[475]},{"name":"WINHTTP_FEATURE_DISABLE_CERT_CHAIN_BUILDING","features":[475]},{"name":"WINHTTP_FEATURE_DISABLE_PROXY_AUTH_SCHEMES","features":[475]},{"name":"WINHTTP_FEATURE_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[475]},{"name":"WINHTTP_FEATURE_DISABLE_STREAM_QUEUE","features":[475]},{"name":"WINHTTP_FEATURE_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[475]},{"name":"WINHTTP_FEATURE_EXPIRE_CONNECTION","features":[475]},{"name":"WINHTTP_FEATURE_EXTENDED_HEADER_FLAG_UNICODE","features":[475]},{"name":"WINHTTP_FEATURE_FAILED_CONNECTION_RETRIES","features":[475]},{"name":"WINHTTP_FEATURE_FIRST_AVAILABLE_CONNECTION","features":[475]},{"name":"WINHTTP_FEATURE_FLAG_AUTOMATIC_CHUNKING","features":[475]},{"name":"WINHTTP_FEATURE_FLAG_SECURE_DEFAULTS","features":[475]},{"name":"WINHTTP_FEATURE_FREE_QUERY_CONNECTION_GROUP_RESULT","features":[475]},{"name":"WINHTTP_FEATURE_HTTP2_KEEPALIVE","features":[475]},{"name":"WINHTTP_FEATURE_HTTP2_PLUS_TRANSFER_ENCODING","features":[475]},{"name":"WINHTTP_FEATURE_HTTP2_RECEIVE_WINDOW","features":[475]},{"name":"WINHTTP_FEATURE_HTTP3_HANDSHAKE_TIMEOUT","features":[475]},{"name":"WINHTTP_FEATURE_HTTP3_INITIAL_RTT","features":[475]},{"name":"WINHTTP_FEATURE_HTTP3_KEEPALIVE","features":[475]},{"name":"WINHTTP_FEATURE_HTTP3_STREAM_ERROR_CODE","features":[475]},{"name":"WINHTTP_FEATURE_HTTP_PROTOCOL_REQUIRED","features":[475]},{"name":"WINHTTP_FEATURE_IGNORE_CERT_REVOCATION_OFFLINE","features":[475]},{"name":"WINHTTP_FEATURE_IPV6_FAST_FALLBACK","features":[475]},{"name":"WINHTTP_FEATURE_IS_FEATURE_SUPPORTED","features":[475]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID","features":[475]},{"name":"WINHTTP_FEATURE_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[475]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP","features":[475]},{"name":"WINHTTP_FEATURE_QUERY_CONNECTION_GROUP_FLAG_INSECURE","features":[475]},{"name":"WINHTTP_FEATURE_QUERY_EX_ALL_HEADERS","features":[475]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_TRAILERS","features":[475]},{"name":"WINHTTP_FEATURE_QUERY_FLAG_WIRE_ENCODING","features":[475]},{"name":"WINHTTP_FEATURE_QUERY_HEADERS_EX","features":[475]},{"name":"WINHTTP_FEATURE_QUIC_STATS","features":[475]},{"name":"WINHTTP_FEATURE_READ_DATA_EX","features":[475]},{"name":"WINHTTP_FEATURE_READ_DATA_EX_FLAG_FILL_BUFFER","features":[475]},{"name":"WINHTTP_FEATURE_REFERER_TOKEN_BINDING_HOSTNAME","features":[475]},{"name":"WINHTTP_FEATURE_REQUEST_ANNOTATION","features":[475]},{"name":"WINHTTP_FEATURE_REQUEST_STATS","features":[475]},{"name":"WINHTTP_FEATURE_REQUEST_TIMES","features":[475]},{"name":"WINHTTP_FEATURE_REQUIRE_STREAM_END","features":[475]},{"name":"WINHTTP_FEATURE_RESOLUTION_HOSTNAME","features":[475]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG","features":[475]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[475]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[475]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[475]},{"name":"WINHTTP_FEATURE_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[475]},{"name":"WINHTTP_FEATURE_REVERT_IMPERSONATION_SERVER_CERT","features":[475]},{"name":"WINHTTP_FEATURE_SECURITY_FLAG_IGNORE_ALL_CERT_ERRORS","features":[475]},{"name":"WINHTTP_FEATURE_SECURITY_INFO","features":[475]},{"name":"WINHTTP_FEATURE_SERVER_CERT_CHAIN_CONTEXT","features":[475]},{"name":"WINHTTP_FEATURE_SET_PROXY_SETINGS_PER_USER","features":[475]},{"name":"WINHTTP_FEATURE_SET_TOKEN_BINDING","features":[475]},{"name":"WINHTTP_FEATURE_STREAM_ERROR_CODE","features":[475]},{"name":"WINHTTP_FEATURE_TCP_FAST_OPEN","features":[475]},{"name":"WINHTTP_FEATURE_TCP_KEEPALIVE","features":[475]},{"name":"WINHTTP_FEATURE_TCP_PRIORITY_STATUS","features":[475]},{"name":"WINHTTP_FEATURE_TLS_FALSE_START","features":[475]},{"name":"WINHTTP_FEATURE_TLS_PROTOCOL_INSECURE_FALLBACK","features":[475]},{"name":"WINHTTP_FEATURE_TOKEN_BINDING_PUBLIC_KEY","features":[475]},{"name":"WINHTTP_FLAG_ASYNC","features":[475]},{"name":"WINHTTP_FLAG_AUTOMATIC_CHUNKING","features":[475]},{"name":"WINHTTP_FLAG_BYPASS_PROXY_CACHE","features":[475]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE","features":[475]},{"name":"WINHTTP_FLAG_ESCAPE_DISABLE_QUERY","features":[475]},{"name":"WINHTTP_FLAG_ESCAPE_PERCENT","features":[475]},{"name":"WINHTTP_FLAG_NULL_CODEPAGE","features":[475]},{"name":"WINHTTP_FLAG_REFRESH","features":[475]},{"name":"WINHTTP_FLAG_SECURE","features":[475]},{"name":"WINHTTP_FLAG_SECURE_DEFAULTS","features":[475]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL2","features":[475]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_SSL3","features":[475]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1","features":[475]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1","features":[475]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2","features":[475]},{"name":"WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3","features":[475]},{"name":"WINHTTP_HANDLE_TYPE_CONNECT","features":[475]},{"name":"WINHTTP_HANDLE_TYPE_PROXY_RESOLVER","features":[475]},{"name":"WINHTTP_HANDLE_TYPE_REQUEST","features":[475]},{"name":"WINHTTP_HANDLE_TYPE_SESSION","features":[475]},{"name":"WINHTTP_HANDLE_TYPE_WEBSOCKET","features":[475]},{"name":"WINHTTP_HEADER_NAME","features":[475]},{"name":"WINHTTP_HOST_CONNECTION_GROUP","features":[475]},{"name":"WINHTTP_HTTP2_RECEIVE_WINDOW","features":[475]},{"name":"WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH","features":[475]},{"name":"WINHTTP_INTERNET_SCHEME","features":[475]},{"name":"WINHTTP_INTERNET_SCHEME_FTP","features":[475]},{"name":"WINHTTP_INTERNET_SCHEME_HTTP","features":[475]},{"name":"WINHTTP_INTERNET_SCHEME_HTTPS","features":[475]},{"name":"WINHTTP_INTERNET_SCHEME_SOCKS","features":[475]},{"name":"WINHTTP_LAST_OPTION","features":[475]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[475]},{"name":"WINHTTP_MATCH_CONNECTION_GUID","features":[475]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAGS_MASK","features":[475]},{"name":"WINHTTP_MATCH_CONNECTION_GUID_FLAG_REQUIRE_MARKED_CONNECTION","features":[475]},{"name":"WINHTTP_OPEN_REQUEST_FLAGS","features":[475]},{"name":"WINHTTP_OPTION_ASSURED_NON_BLOCKING_CALLBACKS","features":[475]},{"name":"WINHTTP_OPTION_AUTOLOGON_POLICY","features":[475]},{"name":"WINHTTP_OPTION_BACKGROUND_CONNECTIONS","features":[475]},{"name":"WINHTTP_OPTION_CALLBACK","features":[475]},{"name":"WINHTTP_OPTION_CLIENT_CERT_CONTEXT","features":[475]},{"name":"WINHTTP_OPTION_CLIENT_CERT_ISSUER_LIST","features":[475]},{"name":"WINHTTP_OPTION_CODEPAGE","features":[475]},{"name":"WINHTTP_OPTION_CONFIGURE_PASSPORT_AUTH","features":[475]},{"name":"WINHTTP_OPTION_CONNECTION_FILTER","features":[475]},{"name":"WINHTTP_OPTION_CONNECTION_GUID","features":[475]},{"name":"WINHTTP_OPTION_CONNECTION_INFO","features":[475]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V0","features":[475]},{"name":"WINHTTP_OPTION_CONNECTION_STATS_V1","features":[475]},{"name":"WINHTTP_OPTION_CONNECT_RETRIES","features":[475]},{"name":"WINHTTP_OPTION_CONNECT_TIMEOUT","features":[475]},{"name":"WINHTTP_OPTION_CONTEXT_VALUE","features":[475]},{"name":"WINHTTP_OPTION_DECOMPRESSION","features":[475]},{"name":"WINHTTP_OPTION_DISABLE_CERT_CHAIN_BUILDING","features":[475]},{"name":"WINHTTP_OPTION_DISABLE_FEATURE","features":[475]},{"name":"WINHTTP_OPTION_DISABLE_GLOBAL_POOLING","features":[475]},{"name":"WINHTTP_OPTION_DISABLE_PROXY_AUTH_SCHEMES","features":[475]},{"name":"WINHTTP_OPTION_DISABLE_SECURE_PROTOCOL_FALLBACK","features":[475]},{"name":"WINHTTP_OPTION_DISABLE_STREAM_QUEUE","features":[475]},{"name":"WINHTTP_OPTION_ENABLETRACING","features":[475]},{"name":"WINHTTP_OPTION_ENABLE_FEATURE","features":[475]},{"name":"WINHTTP_OPTION_ENABLE_HTTP2_PLUS_CLIENT_CERT","features":[475]},{"name":"WINHTTP_OPTION_ENABLE_HTTP_PROTOCOL","features":[475]},{"name":"WINHTTP_OPTION_ENCODE_EXTRA","features":[475]},{"name":"WINHTTP_OPTION_EXPIRE_CONNECTION","features":[475]},{"name":"WINHTTP_OPTION_EXTENDED_ERROR","features":[475]},{"name":"WINHTTP_OPTION_FAILED_CONNECTION_RETRIES","features":[475]},{"name":"WINHTTP_OPTION_FEATURE_SUPPORTED","features":[475]},{"name":"WINHTTP_OPTION_FIRST_AVAILABLE_CONNECTION","features":[475]},{"name":"WINHTTP_OPTION_GLOBAL_PROXY_CREDS","features":[475]},{"name":"WINHTTP_OPTION_GLOBAL_SERVER_CREDS","features":[475]},{"name":"WINHTTP_OPTION_HANDLE_TYPE","features":[475]},{"name":"WINHTTP_OPTION_HTTP2_KEEPALIVE","features":[475]},{"name":"WINHTTP_OPTION_HTTP2_PLUS_TRANSFER_ENCODING","features":[475]},{"name":"WINHTTP_OPTION_HTTP2_RECEIVE_WINDOW","features":[475]},{"name":"WINHTTP_OPTION_HTTP3_HANDSHAKE_TIMEOUT","features":[475]},{"name":"WINHTTP_OPTION_HTTP3_INITIAL_RTT","features":[475]},{"name":"WINHTTP_OPTION_HTTP3_KEEPALIVE","features":[475]},{"name":"WINHTTP_OPTION_HTTP3_STREAM_ERROR_CODE","features":[475]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_REQUIRED","features":[475]},{"name":"WINHTTP_OPTION_HTTP_PROTOCOL_USED","features":[475]},{"name":"WINHTTP_OPTION_HTTP_VERSION","features":[475]},{"name":"WINHTTP_OPTION_IGNORE_CERT_REVOCATION_OFFLINE","features":[475]},{"name":"WINHTTP_OPTION_IPV6_FAST_FALLBACK","features":[475]},{"name":"WINHTTP_OPTION_IS_PROXY_CONNECT_RESPONSE","features":[475]},{"name":"WINHTTP_OPTION_KDC_PROXY_SETTINGS","features":[475]},{"name":"WINHTTP_OPTION_MATCH_CONNECTION_GUID","features":[475]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[475]},{"name":"WINHTTP_OPTION_MAX_CONNS_PER_SERVER","features":[475]},{"name":"WINHTTP_OPTION_MAX_HTTP_AUTOMATIC_REDIRECTS","features":[475]},{"name":"WINHTTP_OPTION_MAX_HTTP_STATUS_CONTINUE","features":[475]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_DRAIN_SIZE","features":[475]},{"name":"WINHTTP_OPTION_MAX_RESPONSE_HEADER_SIZE","features":[475]},{"name":"WINHTTP_OPTION_NETWORK_INTERFACE_AFFINITY","features":[475]},{"name":"WINHTTP_OPTION_PARENT_HANDLE","features":[475]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_TEXT","features":[475]},{"name":"WINHTTP_OPTION_PASSPORT_COBRANDING_URL","features":[475]},{"name":"WINHTTP_OPTION_PASSPORT_RETURN_URL","features":[475]},{"name":"WINHTTP_OPTION_PASSPORT_SIGN_OUT","features":[475]},{"name":"WINHTTP_OPTION_PASSWORD","features":[475]},{"name":"WINHTTP_OPTION_PROXY","features":[475]},{"name":"WINHTTP_OPTION_PROXY_DISABLE_SERVICE_CALLS","features":[475]},{"name":"WINHTTP_OPTION_PROXY_PASSWORD","features":[475]},{"name":"WINHTTP_OPTION_PROXY_RESULT_ENTRY","features":[475]},{"name":"WINHTTP_OPTION_PROXY_SPN_USED","features":[475]},{"name":"WINHTTP_OPTION_PROXY_USERNAME","features":[475]},{"name":"WINHTTP_OPTION_QUIC_STATS","features":[475]},{"name":"WINHTTP_OPTION_READ_BUFFER_SIZE","features":[475]},{"name":"WINHTTP_OPTION_RECEIVE_PROXY_CONNECT_RESPONSE","features":[475]},{"name":"WINHTTP_OPTION_RECEIVE_RESPONSE_TIMEOUT","features":[475]},{"name":"WINHTTP_OPTION_RECEIVE_TIMEOUT","features":[475]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY","features":[475]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_ALWAYS","features":[475]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DEFAULT","features":[475]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_DISALLOW_HTTPS_TO_HTTP","features":[475]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_LAST","features":[475]},{"name":"WINHTTP_OPTION_REDIRECT_POLICY_NEVER","features":[475]},{"name":"WINHTTP_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[475]},{"name":"WINHTTP_OPTION_REJECT_USERPWD_IN_URL","features":[475]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION","features":[475]},{"name":"WINHTTP_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[475]},{"name":"WINHTTP_OPTION_REQUEST_PRIORITY","features":[475]},{"name":"WINHTTP_OPTION_REQUEST_STATS","features":[475]},{"name":"WINHTTP_OPTION_REQUEST_TIMES","features":[475]},{"name":"WINHTTP_OPTION_REQUIRE_STREAM_END","features":[475]},{"name":"WINHTTP_OPTION_RESOLUTION_HOSTNAME","features":[475]},{"name":"WINHTTP_OPTION_RESOLVER_CACHE_CONFIG","features":[475]},{"name":"WINHTTP_OPTION_RESOLVE_TIMEOUT","features":[475]},{"name":"WINHTTP_OPTION_REVERT_IMPERSONATION_SERVER_CERT","features":[475]},{"name":"WINHTTP_OPTION_SECURE_PROTOCOLS","features":[475]},{"name":"WINHTTP_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[475]},{"name":"WINHTTP_OPTION_SECURITY_FLAGS","features":[475]},{"name":"WINHTTP_OPTION_SECURITY_INFO","features":[475]},{"name":"WINHTTP_OPTION_SECURITY_KEY_BITNESS","features":[475]},{"name":"WINHTTP_OPTION_SEND_TIMEOUT","features":[475]},{"name":"WINHTTP_OPTION_SERVER_CBT","features":[475]},{"name":"WINHTTP_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[475]},{"name":"WINHTTP_OPTION_SERVER_CERT_CONTEXT","features":[475]},{"name":"WINHTTP_OPTION_SERVER_SPN_USED","features":[475]},{"name":"WINHTTP_OPTION_SET_TOKEN_BINDING","features":[475]},{"name":"WINHTTP_OPTION_SPN","features":[475]},{"name":"WINHTTP_OPTION_SPN_MASK","features":[475]},{"name":"WINHTTP_OPTION_STREAM_ERROR_CODE","features":[475]},{"name":"WINHTTP_OPTION_TCP_FAST_OPEN","features":[475]},{"name":"WINHTTP_OPTION_TCP_KEEPALIVE","features":[475]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_HINT","features":[475]},{"name":"WINHTTP_OPTION_TCP_PRIORITY_STATUS","features":[475]},{"name":"WINHTTP_OPTION_TLS_FALSE_START","features":[475]},{"name":"WINHTTP_OPTION_TLS_PROTOCOL_INSECURE_FALLBACK","features":[475]},{"name":"WINHTTP_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[475]},{"name":"WINHTTP_OPTION_UNLOAD_NOTIFY_EVENT","features":[475]},{"name":"WINHTTP_OPTION_UNSAFE_HEADER_PARSING","features":[475]},{"name":"WINHTTP_OPTION_UPGRADE_TO_WEB_SOCKET","features":[475]},{"name":"WINHTTP_OPTION_URL","features":[475]},{"name":"WINHTTP_OPTION_USERNAME","features":[475]},{"name":"WINHTTP_OPTION_USER_AGENT","features":[475]},{"name":"WINHTTP_OPTION_USE_GLOBAL_SERVER_CREDENTIALS","features":[475]},{"name":"WINHTTP_OPTION_USE_SESSION_SCH_CRED","features":[475]},{"name":"WINHTTP_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[475]},{"name":"WINHTTP_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[475]},{"name":"WINHTTP_OPTION_WEB_SOCKET_RECEIVE_BUFFER_SIZE","features":[475]},{"name":"WINHTTP_OPTION_WEB_SOCKET_SEND_BUFFER_SIZE","features":[475]},{"name":"WINHTTP_OPTION_WORKER_THREAD_COUNT","features":[475]},{"name":"WINHTTP_OPTION_WRITE_BUFFER_SIZE","features":[475]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP2","features":[475]},{"name":"WINHTTP_PROTOCOL_FLAG_HTTP3","features":[475]},{"name":"WINHTTP_PROXY_CHANGE_CALLBACK","features":[475]},{"name":"WINHTTP_PROXY_DISABLE_AUTH_LOCAL_SERVICE","features":[475]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_BASIC","features":[475]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_DIGEST","features":[475]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_KERBEROS","features":[475]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NEGOTIATE","features":[475]},{"name":"WINHTTP_PROXY_DISABLE_SCHEME_NTLM","features":[475]},{"name":"WINHTTP_PROXY_INFO","features":[475]},{"name":"WINHTTP_PROXY_NETWORKING_KEY","features":[475]},{"name":"WINHTTP_PROXY_NOTIFY_CHANGE","features":[475]},{"name":"WINHTTP_PROXY_RESULT","features":[305,475]},{"name":"WINHTTP_PROXY_RESULT_ENTRY","features":[305,475]},{"name":"WINHTTP_PROXY_RESULT_EX","features":[305,475]},{"name":"WINHTTP_PROXY_SETTINGS","features":[305,475]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[475]},{"name":"WINHTTP_PROXY_SETTINGS_EX","features":[475]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[475]},{"name":"WINHTTP_PROXY_SETTINGS_PARAM","features":[475]},{"name":"WINHTTP_PROXY_SETTINGS_TYPE","features":[475]},{"name":"WINHTTP_PROXY_TYPE_AUTO_DETECT","features":[475]},{"name":"WINHTTP_PROXY_TYPE_AUTO_PROXY_URL","features":[475]},{"name":"WINHTTP_PROXY_TYPE_DIRECT","features":[475]},{"name":"WINHTTP_PROXY_TYPE_PROXY","features":[475]},{"name":"WINHTTP_QUERY_ACCEPT","features":[475]},{"name":"WINHTTP_QUERY_ACCEPT_CHARSET","features":[475]},{"name":"WINHTTP_QUERY_ACCEPT_ENCODING","features":[475]},{"name":"WINHTTP_QUERY_ACCEPT_LANGUAGE","features":[475]},{"name":"WINHTTP_QUERY_ACCEPT_RANGES","features":[475]},{"name":"WINHTTP_QUERY_AGE","features":[475]},{"name":"WINHTTP_QUERY_ALLOW","features":[475]},{"name":"WINHTTP_QUERY_AUTHENTICATION_INFO","features":[475]},{"name":"WINHTTP_QUERY_AUTHORIZATION","features":[475]},{"name":"WINHTTP_QUERY_CACHE_CONTROL","features":[475]},{"name":"WINHTTP_QUERY_CONNECTION","features":[475]},{"name":"WINHTTP_QUERY_CONNECTION_GROUP_RESULT","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_BASE","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_DESCRIPTION","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_DISPOSITION","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_ENCODING","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_ID","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_LANGUAGE","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_LENGTH","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_LOCATION","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_MD5","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_RANGE","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[475]},{"name":"WINHTTP_QUERY_CONTENT_TYPE","features":[475]},{"name":"WINHTTP_QUERY_COOKIE","features":[475]},{"name":"WINHTTP_QUERY_COST","features":[475]},{"name":"WINHTTP_QUERY_CUSTOM","features":[475]},{"name":"WINHTTP_QUERY_DATE","features":[475]},{"name":"WINHTTP_QUERY_DERIVED_FROM","features":[475]},{"name":"WINHTTP_QUERY_ETAG","features":[475]},{"name":"WINHTTP_QUERY_EXPECT","features":[475]},{"name":"WINHTTP_QUERY_EXPIRES","features":[475]},{"name":"WINHTTP_QUERY_EX_ALL_HEADERS","features":[475]},{"name":"WINHTTP_QUERY_FLAG_NUMBER","features":[475]},{"name":"WINHTTP_QUERY_FLAG_NUMBER64","features":[475]},{"name":"WINHTTP_QUERY_FLAG_REQUEST_HEADERS","features":[475]},{"name":"WINHTTP_QUERY_FLAG_SYSTEMTIME","features":[475]},{"name":"WINHTTP_QUERY_FLAG_TRAILERS","features":[475]},{"name":"WINHTTP_QUERY_FLAG_WIRE_ENCODING","features":[475]},{"name":"WINHTTP_QUERY_FORWARDED","features":[475]},{"name":"WINHTTP_QUERY_FROM","features":[475]},{"name":"WINHTTP_QUERY_HOST","features":[475]},{"name":"WINHTTP_QUERY_IF_MATCH","features":[475]},{"name":"WINHTTP_QUERY_IF_MODIFIED_SINCE","features":[475]},{"name":"WINHTTP_QUERY_IF_NONE_MATCH","features":[475]},{"name":"WINHTTP_QUERY_IF_RANGE","features":[475]},{"name":"WINHTTP_QUERY_IF_UNMODIFIED_SINCE","features":[475]},{"name":"WINHTTP_QUERY_LAST_MODIFIED","features":[475]},{"name":"WINHTTP_QUERY_LINK","features":[475]},{"name":"WINHTTP_QUERY_LOCATION","features":[475]},{"name":"WINHTTP_QUERY_MAX","features":[475]},{"name":"WINHTTP_QUERY_MAX_FORWARDS","features":[475]},{"name":"WINHTTP_QUERY_MESSAGE_ID","features":[475]},{"name":"WINHTTP_QUERY_MIME_VERSION","features":[475]},{"name":"WINHTTP_QUERY_ORIG_URI","features":[475]},{"name":"WINHTTP_QUERY_PASSPORT_CONFIG","features":[475]},{"name":"WINHTTP_QUERY_PASSPORT_URLS","features":[475]},{"name":"WINHTTP_QUERY_PRAGMA","features":[475]},{"name":"WINHTTP_QUERY_PROXY_AUTHENTICATE","features":[475]},{"name":"WINHTTP_QUERY_PROXY_AUTHORIZATION","features":[475]},{"name":"WINHTTP_QUERY_PROXY_CONNECTION","features":[475]},{"name":"WINHTTP_QUERY_PROXY_SUPPORT","features":[475]},{"name":"WINHTTP_QUERY_PUBLIC","features":[475]},{"name":"WINHTTP_QUERY_RANGE","features":[475]},{"name":"WINHTTP_QUERY_RAW_HEADERS","features":[475]},{"name":"WINHTTP_QUERY_RAW_HEADERS_CRLF","features":[475]},{"name":"WINHTTP_QUERY_REFERER","features":[475]},{"name":"WINHTTP_QUERY_REFRESH","features":[475]},{"name":"WINHTTP_QUERY_REQUEST_METHOD","features":[475]},{"name":"WINHTTP_QUERY_RETRY_AFTER","features":[475]},{"name":"WINHTTP_QUERY_SERVER","features":[475]},{"name":"WINHTTP_QUERY_SET_COOKIE","features":[475]},{"name":"WINHTTP_QUERY_STATUS_CODE","features":[475]},{"name":"WINHTTP_QUERY_STATUS_TEXT","features":[475]},{"name":"WINHTTP_QUERY_TITLE","features":[475]},{"name":"WINHTTP_QUERY_TRANSFER_ENCODING","features":[475]},{"name":"WINHTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[475]},{"name":"WINHTTP_QUERY_UPGRADE","features":[475]},{"name":"WINHTTP_QUERY_URI","features":[475]},{"name":"WINHTTP_QUERY_USER_AGENT","features":[475]},{"name":"WINHTTP_QUERY_VARY","features":[475]},{"name":"WINHTTP_QUERY_VERSION","features":[475]},{"name":"WINHTTP_QUERY_VIA","features":[475]},{"name":"WINHTTP_QUERY_WARNING","features":[475]},{"name":"WINHTTP_QUERY_WWW_AUTHENTICATE","features":[475]},{"name":"WINHTTP_REQUEST_STATS","features":[475]},{"name":"WINHTTP_REQUEST_STATS","features":[475]},{"name":"WINHTTP_REQUEST_STAT_ENTRY","features":[475]},{"name":"WINHTTP_REQUEST_STAT_FLAG_FIRST_REQUEST","features":[475]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_FALSE_START","features":[475]},{"name":"WINHTTP_REQUEST_STAT_FLAG_PROXY_TLS_SESSION_RESUMPTION","features":[475]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TCP_FAST_OPEN","features":[475]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_FALSE_START","features":[475]},{"name":"WINHTTP_REQUEST_STAT_FLAG_TLS_SESSION_RESUMPTION","features":[475]},{"name":"WINHTTP_REQUEST_TIMES","features":[475]},{"name":"WINHTTP_REQUEST_TIMES","features":[475]},{"name":"WINHTTP_REQUEST_TIME_ENTRY","features":[475]},{"name":"WINHTTP_RESET_ALL","features":[475]},{"name":"WINHTTP_RESET_DISCARD_RESOLVERS","features":[475]},{"name":"WINHTTP_RESET_NOTIFY_NETWORK_CHANGED","features":[475]},{"name":"WINHTTP_RESET_OUT_OF_PROC","features":[475]},{"name":"WINHTTP_RESET_SCRIPT_CACHE","features":[475]},{"name":"WINHTTP_RESET_STATE","features":[475]},{"name":"WINHTTP_RESET_SWPAD_ALL","features":[475]},{"name":"WINHTTP_RESET_SWPAD_CURRENT_NETWORK","features":[475]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[475]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG","features":[475]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_BYPASS_CACHE","features":[475]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_CONN_USE_TTL","features":[475]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_SOFT_LIMIT","features":[475]},{"name":"WINHTTP_RESOLVER_CACHE_CONFIG_FLAG_USE_DNS_TTL","features":[475]},{"name":"WINHTTP_SECURE_DNS_SETTING","features":[475]},{"name":"WINHTTP_STATUS_CALLBACK","features":[475]},{"name":"WINHTTP_TIME_FORMAT_BUFSIZE","features":[475]},{"name":"WINHTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_ASYNC_RESULT","features":[475]},{"name":"WINHTTP_WEB_SOCKET_BINARY_FRAGMENT_BUFFER_TYPE","features":[475]},{"name":"WINHTTP_WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE","features":[475]},{"name":"WINHTTP_WEB_SOCKET_BUFFER_TYPE","features":[475]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_BUFFER_TYPE","features":[475]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_OPERATION","features":[475]},{"name":"WINHTTP_WEB_SOCKET_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[475]},{"name":"WINHTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[475]},{"name":"WINHTTP_WEB_SOCKET_OPERATION","features":[475]},{"name":"WINHTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[475]},{"name":"WINHTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_SEND_OPERATION","features":[475]},{"name":"WINHTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[475]},{"name":"WINHTTP_WEB_SOCKET_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[475]},{"name":"WINHTTP_WEB_SOCKET_UTF8_FRAGMENT_BUFFER_TYPE","features":[475]},{"name":"WINHTTP_WEB_SOCKET_UTF8_MESSAGE_BUFFER_TYPE","features":[475]},{"name":"WIN_HTTP_CREATE_URL_FLAGS","features":[475]},{"name":"WinHttpAddRequestHeaders","features":[305,475]},{"name":"WinHttpAddRequestHeadersEx","features":[475]},{"name":"WinHttpCheckPlatform","features":[305,475]},{"name":"WinHttpCloseHandle","features":[305,475]},{"name":"WinHttpConnect","features":[475]},{"name":"WinHttpConnectFailureCount","features":[475]},{"name":"WinHttpConnectionAcquireEnd","features":[475]},{"name":"WinHttpConnectionAcquireStart","features":[475]},{"name":"WinHttpConnectionAcquireWaitEnd","features":[475]},{"name":"WinHttpConnectionEstablishmentEnd","features":[475]},{"name":"WinHttpConnectionEstablishmentStart","features":[475]},{"name":"WinHttpCrackUrl","features":[305,475]},{"name":"WinHttpCreateProxyResolver","features":[475]},{"name":"WinHttpCreateUrl","features":[305,475]},{"name":"WinHttpDetectAutoProxyConfigUrl","features":[305,475]},{"name":"WinHttpFreeProxyResult","features":[305,475]},{"name":"WinHttpFreeProxyResultEx","features":[305,475]},{"name":"WinHttpFreeProxySettings","features":[305,475]},{"name":"WinHttpFreeProxySettingsEx","features":[475]},{"name":"WinHttpFreeQueryConnectionGroupResult","features":[475]},{"name":"WinHttpGetDefaultProxyConfiguration","features":[305,475]},{"name":"WinHttpGetIEProxyConfigForCurrentUser","features":[305,475]},{"name":"WinHttpGetProxyForUrl","features":[305,475]},{"name":"WinHttpGetProxyForUrlEx","features":[305,475]},{"name":"WinHttpGetProxyForUrlEx2","features":[305,475]},{"name":"WinHttpGetProxyResult","features":[305,475]},{"name":"WinHttpGetProxyResultEx","features":[305,475]},{"name":"WinHttpGetProxySettingsEx","features":[475]},{"name":"WinHttpGetProxySettingsResultEx","features":[475]},{"name":"WinHttpGetProxySettingsVersion","features":[475]},{"name":"WinHttpNameResolutionEnd","features":[475]},{"name":"WinHttpNameResolutionStart","features":[475]},{"name":"WinHttpOpen","features":[475]},{"name":"WinHttpOpenRequest","features":[475]},{"name":"WinHttpProxyDetectionEnd","features":[475]},{"name":"WinHttpProxyDetectionStart","features":[475]},{"name":"WinHttpProxyFailureCount","features":[475]},{"name":"WinHttpProxySettingsTypeUnknown","features":[475]},{"name":"WinHttpProxySettingsTypeWsa","features":[475]},{"name":"WinHttpProxySettingsTypeWsl","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg1End","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Size","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg1Start","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg2End","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Size","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg2Start","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg3End","features":[475]},{"name":"WinHttpProxyTlsHandshakeClientLeg3Start","features":[475]},{"name":"WinHttpProxyTlsHandshakeServerLeg1Size","features":[475]},{"name":"WinHttpProxyTlsHandshakeServerLeg2Size","features":[475]},{"name":"WinHttpProxyTunnelEnd","features":[475]},{"name":"WinHttpProxyTunnelStart","features":[475]},{"name":"WinHttpQueryAuthSchemes","features":[305,475]},{"name":"WinHttpQueryConnectionGroup","features":[475]},{"name":"WinHttpQueryDataAvailable","features":[305,475]},{"name":"WinHttpQueryHeaders","features":[305,475]},{"name":"WinHttpQueryHeadersEx","features":[475]},{"name":"WinHttpQueryOption","features":[305,475]},{"name":"WinHttpReadData","features":[305,475]},{"name":"WinHttpReadDataEx","features":[475]},{"name":"WinHttpReadProxySettings","features":[305,475]},{"name":"WinHttpReceiveResponse","features":[305,475]},{"name":"WinHttpReceiveResponseBodyDecompressionDelta","features":[475]},{"name":"WinHttpReceiveResponseEnd","features":[475]},{"name":"WinHttpReceiveResponseHeadersDecompressionEnd","features":[475]},{"name":"WinHttpReceiveResponseHeadersDecompressionStart","features":[475]},{"name":"WinHttpReceiveResponseHeadersEnd","features":[475]},{"name":"WinHttpReceiveResponseStart","features":[475]},{"name":"WinHttpRegisterProxyChangeNotification","features":[475]},{"name":"WinHttpRequest","features":[475]},{"name":"WinHttpRequestAutoLogonPolicy","features":[475]},{"name":"WinHttpRequestHeadersCompressedSize","features":[475]},{"name":"WinHttpRequestHeadersSize","features":[475]},{"name":"WinHttpRequestOption","features":[475]},{"name":"WinHttpRequestOption_EnableCertificateRevocationCheck","features":[475]},{"name":"WinHttpRequestOption_EnableHttp1_1","features":[475]},{"name":"WinHttpRequestOption_EnableHttpsToHttpRedirects","features":[475]},{"name":"WinHttpRequestOption_EnablePassportAuthentication","features":[475]},{"name":"WinHttpRequestOption_EnableRedirects","features":[475]},{"name":"WinHttpRequestOption_EnableTracing","features":[475]},{"name":"WinHttpRequestOption_EscapePercentInURL","features":[475]},{"name":"WinHttpRequestOption_MaxAutomaticRedirects","features":[475]},{"name":"WinHttpRequestOption_MaxResponseDrainSize","features":[475]},{"name":"WinHttpRequestOption_MaxResponseHeaderSize","features":[475]},{"name":"WinHttpRequestOption_RejectUserpwd","features":[475]},{"name":"WinHttpRequestOption_RevertImpersonationOverSsl","features":[475]},{"name":"WinHttpRequestOption_SecureProtocols","features":[475]},{"name":"WinHttpRequestOption_SelectCertificate","features":[475]},{"name":"WinHttpRequestOption_SslErrorIgnoreFlags","features":[475]},{"name":"WinHttpRequestOption_URL","features":[475]},{"name":"WinHttpRequestOption_URLCodePage","features":[475]},{"name":"WinHttpRequestOption_UrlEscapeDisable","features":[475]},{"name":"WinHttpRequestOption_UrlEscapeDisableQuery","features":[475]},{"name":"WinHttpRequestOption_UserAgentString","features":[475]},{"name":"WinHttpRequestSecureProtocols","features":[475]},{"name":"WinHttpRequestSslErrorFlags","features":[475]},{"name":"WinHttpRequestStatLast","features":[475]},{"name":"WinHttpRequestStatMax","features":[475]},{"name":"WinHttpRequestTimeLast","features":[475]},{"name":"WinHttpRequestTimeMax","features":[475]},{"name":"WinHttpResetAutoProxy","features":[475]},{"name":"WinHttpResponseBodyCompressedSize","features":[475]},{"name":"WinHttpResponseBodySize","features":[475]},{"name":"WinHttpResponseHeadersCompressedSize","features":[475]},{"name":"WinHttpResponseHeadersSize","features":[475]},{"name":"WinHttpSecureDnsSettingDefault","features":[475]},{"name":"WinHttpSecureDnsSettingForcePlaintext","features":[475]},{"name":"WinHttpSecureDnsSettingMax","features":[475]},{"name":"WinHttpSecureDnsSettingRequireEncryption","features":[475]},{"name":"WinHttpSecureDnsSettingTryEncryptionWithFallback","features":[475]},{"name":"WinHttpSendRequest","features":[305,475]},{"name":"WinHttpSendRequestEnd","features":[475]},{"name":"WinHttpSendRequestHeadersCompressionEnd","features":[475]},{"name":"WinHttpSendRequestHeadersCompressionStart","features":[475]},{"name":"WinHttpSendRequestHeadersEnd","features":[475]},{"name":"WinHttpSendRequestStart","features":[475]},{"name":"WinHttpSetCredentials","features":[305,475]},{"name":"WinHttpSetDefaultProxyConfiguration","features":[305,475]},{"name":"WinHttpSetOption","features":[305,475]},{"name":"WinHttpSetProxySettingsPerUser","features":[305,475]},{"name":"WinHttpSetStatusCallback","features":[475]},{"name":"WinHttpSetTimeouts","features":[305,475]},{"name":"WinHttpStreamWaitEnd","features":[475]},{"name":"WinHttpStreamWaitStart","features":[475]},{"name":"WinHttpTimeFromSystemTime","features":[305,475]},{"name":"WinHttpTimeToSystemTime","features":[305,475]},{"name":"WinHttpTlsHandshakeClientLeg1End","features":[475]},{"name":"WinHttpTlsHandshakeClientLeg1Size","features":[475]},{"name":"WinHttpTlsHandshakeClientLeg1Start","features":[475]},{"name":"WinHttpTlsHandshakeClientLeg2End","features":[475]},{"name":"WinHttpTlsHandshakeClientLeg2Size","features":[475]},{"name":"WinHttpTlsHandshakeClientLeg2Start","features":[475]},{"name":"WinHttpTlsHandshakeClientLeg3End","features":[475]},{"name":"WinHttpTlsHandshakeClientLeg3Start","features":[475]},{"name":"WinHttpTlsHandshakeServerLeg1Size","features":[475]},{"name":"WinHttpTlsHandshakeServerLeg2Size","features":[475]},{"name":"WinHttpUnregisterProxyChangeNotification","features":[475]},{"name":"WinHttpWebSocketClose","features":[475]},{"name":"WinHttpWebSocketCompleteUpgrade","features":[475]},{"name":"WinHttpWebSocketQueryCloseStatus","features":[475]},{"name":"WinHttpWebSocketReceive","features":[475]},{"name":"WinHttpWebSocketSend","features":[475]},{"name":"WinHttpWebSocketShutdown","features":[475]},{"name":"WinHttpWriteData","features":[305,475]},{"name":"WinHttpWriteProxySettings","features":[305,475]}],"478":[{"name":"ANY_CACHE_ENTRY","features":[476]},{"name":"APP_CACHE_DOWNLOAD_ENTRY","features":[476]},{"name":"APP_CACHE_DOWNLOAD_LIST","features":[476]},{"name":"APP_CACHE_ENTRY_TYPE_EXPLICIT","features":[476]},{"name":"APP_CACHE_ENTRY_TYPE_FALLBACK","features":[476]},{"name":"APP_CACHE_ENTRY_TYPE_FOREIGN","features":[476]},{"name":"APP_CACHE_ENTRY_TYPE_MANIFEST","features":[476]},{"name":"APP_CACHE_ENTRY_TYPE_MASTER","features":[476]},{"name":"APP_CACHE_FINALIZE_STATE","features":[476]},{"name":"APP_CACHE_GROUP_INFO","features":[305,476]},{"name":"APP_CACHE_GROUP_LIST","features":[305,476]},{"name":"APP_CACHE_LOOKUP_NO_MASTER_ONLY","features":[476]},{"name":"APP_CACHE_STATE","features":[476]},{"name":"AUTH_FLAG_DISABLE_BASIC_CLEARCHANNEL","features":[476]},{"name":"AUTH_FLAG_DISABLE_NEGOTIATE","features":[476]},{"name":"AUTH_FLAG_DISABLE_SERVER_AUTH","features":[476]},{"name":"AUTH_FLAG_ENABLE_NEGOTIATE","features":[476]},{"name":"AUTH_FLAG_RESET","features":[476]},{"name":"AUTODIAL_MODE_ALWAYS","features":[476]},{"name":"AUTODIAL_MODE_NEVER","features":[476]},{"name":"AUTODIAL_MODE_NO_NETWORK_PRESENT","features":[476]},{"name":"AUTO_PROXY_FLAG_ALWAYS_DETECT","features":[476]},{"name":"AUTO_PROXY_FLAG_CACHE_INIT_RUN","features":[476]},{"name":"AUTO_PROXY_FLAG_DETECTION_RUN","features":[476]},{"name":"AUTO_PROXY_FLAG_DETECTION_SUSPECT","features":[476]},{"name":"AUTO_PROXY_FLAG_DONT_CACHE_PROXY_RESULT","features":[476]},{"name":"AUTO_PROXY_FLAG_MIGRATED","features":[476]},{"name":"AUTO_PROXY_FLAG_USER_SET","features":[476]},{"name":"AUTO_PROXY_SCRIPT_BUFFER","features":[476]},{"name":"AppCacheCheckManifest","features":[476]},{"name":"AppCacheCloseHandle","features":[476]},{"name":"AppCacheCreateAndCommitFile","features":[476]},{"name":"AppCacheDeleteGroup","features":[476]},{"name":"AppCacheDeleteIEGroup","features":[476]},{"name":"AppCacheDuplicateHandle","features":[476]},{"name":"AppCacheFinalize","features":[476]},{"name":"AppCacheFinalizeStateComplete","features":[476]},{"name":"AppCacheFinalizeStateIncomplete","features":[476]},{"name":"AppCacheFinalizeStateManifestChange","features":[476]},{"name":"AppCacheFreeDownloadList","features":[476]},{"name":"AppCacheFreeGroupList","features":[305,476]},{"name":"AppCacheFreeIESpace","features":[305,476]},{"name":"AppCacheFreeSpace","features":[305,476]},{"name":"AppCacheGetDownloadList","features":[476]},{"name":"AppCacheGetFallbackUrl","features":[476]},{"name":"AppCacheGetGroupList","features":[305,476]},{"name":"AppCacheGetIEGroupList","features":[305,476]},{"name":"AppCacheGetInfo","features":[305,476]},{"name":"AppCacheGetManifestUrl","features":[476]},{"name":"AppCacheLookup","features":[476]},{"name":"AppCacheStateNoUpdateNeeded","features":[476]},{"name":"AppCacheStateUpdateNeeded","features":[476]},{"name":"AppCacheStateUpdateNeededMasterOnly","features":[476]},{"name":"AppCacheStateUpdateNeededNew","features":[476]},{"name":"AutoProxyHelperFunctions","features":[476]},{"name":"AutoProxyHelperVtbl","features":[476]},{"name":"CACHEGROUP_ATTRIBUTE_BASIC","features":[476]},{"name":"CACHEGROUP_ATTRIBUTE_FLAG","features":[476]},{"name":"CACHEGROUP_ATTRIBUTE_GET_ALL","features":[476]},{"name":"CACHEGROUP_ATTRIBUTE_GROUPNAME","features":[476]},{"name":"CACHEGROUP_ATTRIBUTE_QUOTA","features":[476]},{"name":"CACHEGROUP_ATTRIBUTE_STORAGE","features":[476]},{"name":"CACHEGROUP_ATTRIBUTE_TYPE","features":[476]},{"name":"CACHEGROUP_FLAG_FLUSHURL_ONDELETE","features":[476]},{"name":"CACHEGROUP_FLAG_GIDONLY","features":[476]},{"name":"CACHEGROUP_FLAG_NONPURGEABLE","features":[476]},{"name":"CACHEGROUP_FLAG_VALID","features":[476]},{"name":"CACHEGROUP_ID_BUILTIN_STICKY","features":[476]},{"name":"CACHEGROUP_SEARCH_ALL","features":[476]},{"name":"CACHEGROUP_SEARCH_BYURL","features":[476]},{"name":"CACHEGROUP_TYPE_INVALID","features":[476]},{"name":"CACHE_CONFIG","features":[476]},{"name":"CACHE_CONFIG_APPCONTAINER_CONTENT_QUOTA_FC","features":[476]},{"name":"CACHE_CONFIG_APPCONTAINER_TOTAL_CONTENT_QUOTA_FC","features":[476]},{"name":"CACHE_CONFIG_CONTENT_PATHS_FC","features":[476]},{"name":"CACHE_CONFIG_CONTENT_QUOTA_FC","features":[476]},{"name":"CACHE_CONFIG_CONTENT_USAGE_FC","features":[476]},{"name":"CACHE_CONFIG_COOKIES_PATHS_FC","features":[476]},{"name":"CACHE_CONFIG_DISK_CACHE_PATHS_FC","features":[476]},{"name":"CACHE_CONFIG_FORCE_CLEANUP_FC","features":[476]},{"name":"CACHE_CONFIG_HISTORY_PATHS_FC","features":[476]},{"name":"CACHE_CONFIG_QUOTA_FC","features":[476]},{"name":"CACHE_CONFIG_STICKY_CONTENT_USAGE_FC","features":[476]},{"name":"CACHE_CONFIG_SYNC_MODE_FC","features":[476]},{"name":"CACHE_CONFIG_TOTAL_CONTENT_QUOTA_FC","features":[476]},{"name":"CACHE_CONFIG_USER_MODE_FC","features":[476]},{"name":"CACHE_ENTRY_ACCTIME_FC","features":[476]},{"name":"CACHE_ENTRY_ATTRIBUTE_FC","features":[476]},{"name":"CACHE_ENTRY_EXEMPT_DELTA_FC","features":[476]},{"name":"CACHE_ENTRY_EXPTIME_FC","features":[476]},{"name":"CACHE_ENTRY_HEADERINFO_FC","features":[476]},{"name":"CACHE_ENTRY_HITRATE_FC","features":[476]},{"name":"CACHE_ENTRY_MODIFY_DATA_FC","features":[476]},{"name":"CACHE_ENTRY_MODTIME_FC","features":[476]},{"name":"CACHE_ENTRY_SYNCTIME_FC","features":[476]},{"name":"CACHE_ENTRY_TYPE_FC","features":[476]},{"name":"CACHE_FIND_CONTAINER_RETURN_NOCHANGE","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_READ_COUNT_SINCE_LAST_SCAVENGE","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_12","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_13","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_15","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_16","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_17","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_18","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_19","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_20","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_23","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_24","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_25","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_26","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_28","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_29","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_30","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_RESERVED_31","features":[476]},{"name":"CACHE_HEADER_DATA_CACHE_WRITE_COUNT_SINCE_LAST_SCAVENGE","features":[476]},{"name":"CACHE_HEADER_DATA_CONLIST_CHANGE_COUNT","features":[476]},{"name":"CACHE_HEADER_DATA_COOKIE_CHANGE_COUNT","features":[476]},{"name":"CACHE_HEADER_DATA_CURRENT_SETTINGS_VERSION","features":[476]},{"name":"CACHE_HEADER_DATA_DOWNLOAD_PARTIAL","features":[476]},{"name":"CACHE_HEADER_DATA_GID_HIGH","features":[476]},{"name":"CACHE_HEADER_DATA_GID_LOW","features":[476]},{"name":"CACHE_HEADER_DATA_HSTS_CHANGE_COUNT","features":[476]},{"name":"CACHE_HEADER_DATA_LAST","features":[476]},{"name":"CACHE_HEADER_DATA_LAST_SCAVENGE_TIMESTAMP","features":[476]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_FILTER","features":[476]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_HWND","features":[476]},{"name":"CACHE_HEADER_DATA_NOTIFICATION_MESG","features":[476]},{"name":"CACHE_HEADER_DATA_ROOTGROUP_OFFSET","features":[476]},{"name":"CACHE_HEADER_DATA_ROOT_GROUPLIST_OFFSET","features":[476]},{"name":"CACHE_HEADER_DATA_ROOT_LEAK_OFFSET","features":[476]},{"name":"CACHE_HEADER_DATA_SSL_STATE_COUNT","features":[476]},{"name":"CACHE_NOTIFY_ADD_URL","features":[476]},{"name":"CACHE_NOTIFY_DELETE_ALL","features":[476]},{"name":"CACHE_NOTIFY_DELETE_URL","features":[476]},{"name":"CACHE_NOTIFY_FILTER_CHANGED","features":[476]},{"name":"CACHE_NOTIFY_SET_OFFLINE","features":[476]},{"name":"CACHE_NOTIFY_SET_ONLINE","features":[476]},{"name":"CACHE_NOTIFY_UPDATE_URL","features":[476]},{"name":"CACHE_NOTIFY_URL_SET_STICKY","features":[476]},{"name":"CACHE_NOTIFY_URL_UNSET_STICKY","features":[476]},{"name":"CACHE_OPERATOR","features":[305,476]},{"name":"COOKIE_ACCEPTED_CACHE_ENTRY","features":[476]},{"name":"COOKIE_ALLOW","features":[476]},{"name":"COOKIE_ALLOW_ALL","features":[476]},{"name":"COOKIE_CACHE_ENTRY","features":[476]},{"name":"COOKIE_DLG_INFO","features":[305,476]},{"name":"COOKIE_DONT_ALLOW","features":[476]},{"name":"COOKIE_DONT_ALLOW_ALL","features":[476]},{"name":"COOKIE_DOWNGRADED_CACHE_ENTRY","features":[476]},{"name":"COOKIE_LEASHED_CACHE_ENTRY","features":[476]},{"name":"COOKIE_OP_3RD_PARTY","features":[476]},{"name":"COOKIE_OP_GET","features":[476]},{"name":"COOKIE_OP_MODIFY","features":[476]},{"name":"COOKIE_OP_PERSISTENT","features":[476]},{"name":"COOKIE_OP_SESSION","features":[476]},{"name":"COOKIE_OP_SET","features":[476]},{"name":"COOKIE_REJECTED_CACHE_ENTRY","features":[476]},{"name":"COOKIE_STATE_ACCEPT","features":[476]},{"name":"COOKIE_STATE_DOWNGRADE","features":[476]},{"name":"COOKIE_STATE_LB","features":[476]},{"name":"COOKIE_STATE_LEASH","features":[476]},{"name":"COOKIE_STATE_MAX","features":[476]},{"name":"COOKIE_STATE_PROMPT","features":[476]},{"name":"COOKIE_STATE_REJECT","features":[476]},{"name":"COOKIE_STATE_UB","features":[476]},{"name":"COOKIE_STATE_UNKNOWN","features":[476]},{"name":"CommitUrlCacheEntryA","features":[305,476]},{"name":"CommitUrlCacheEntryBinaryBlob","features":[305,476]},{"name":"CommitUrlCacheEntryW","features":[305,476]},{"name":"ConnectionEstablishmentEnd","features":[476]},{"name":"ConnectionEstablishmentStart","features":[476]},{"name":"CookieDecision","features":[305,476]},{"name":"CreateMD5SSOHash","features":[305,476]},{"name":"CreateUrlCacheContainerA","features":[305,476]},{"name":"CreateUrlCacheContainerW","features":[305,476]},{"name":"CreateUrlCacheEntryA","features":[305,476]},{"name":"CreateUrlCacheEntryExW","features":[305,476]},{"name":"CreateUrlCacheEntryW","features":[305,476]},{"name":"CreateUrlCacheGroup","features":[476]},{"name":"DIALENG_OperationComplete","features":[476]},{"name":"DIALENG_RedialAttempt","features":[476]},{"name":"DIALENG_RedialWait","features":[476]},{"name":"DIALPROP_DOMAIN","features":[476]},{"name":"DIALPROP_LASTERROR","features":[476]},{"name":"DIALPROP_PASSWORD","features":[476]},{"name":"DIALPROP_PHONENUMBER","features":[476]},{"name":"DIALPROP_REDIALCOUNT","features":[476]},{"name":"DIALPROP_REDIALINTERVAL","features":[476]},{"name":"DIALPROP_RESOLVEDPHONE","features":[476]},{"name":"DIALPROP_SAVEPASSWORD","features":[476]},{"name":"DIALPROP_USERNAME","features":[476]},{"name":"DLG_FLAGS_INSECURE_FALLBACK","features":[476]},{"name":"DLG_FLAGS_INVALID_CA","features":[476]},{"name":"DLG_FLAGS_SEC_CERT_CN_INVALID","features":[476]},{"name":"DLG_FLAGS_SEC_CERT_DATE_INVALID","features":[476]},{"name":"DLG_FLAGS_SEC_CERT_REV_FAILED","features":[476]},{"name":"DLG_FLAGS_WEAK_SIGNATURE","features":[476]},{"name":"DOWNLOAD_CACHE_ENTRY","features":[476]},{"name":"DUO_PROTOCOL_FLAG_SPDY3","features":[476]},{"name":"DUO_PROTOCOL_MASK","features":[476]},{"name":"DeleteIE3Cache","features":[305,476]},{"name":"DeleteUrlCacheContainerA","features":[305,476]},{"name":"DeleteUrlCacheContainerW","features":[305,476]},{"name":"DeleteUrlCacheEntry","features":[305,476]},{"name":"DeleteUrlCacheEntryA","features":[305,476]},{"name":"DeleteUrlCacheEntryW","features":[305,476]},{"name":"DeleteUrlCacheGroup","features":[305,476]},{"name":"DeleteWpadCacheForNetworks","features":[305,476]},{"name":"DetectAutoProxyUrl","features":[305,476]},{"name":"DoConnectoidsExist","features":[305,476]},{"name":"EDITED_CACHE_ENTRY","features":[476]},{"name":"ERROR_FTP_DROPPED","features":[476]},{"name":"ERROR_FTP_NO_PASSIVE_MODE","features":[476]},{"name":"ERROR_FTP_TRANSFER_IN_PROGRESS","features":[476]},{"name":"ERROR_GOPHER_ATTRIBUTE_NOT_FOUND","features":[476]},{"name":"ERROR_GOPHER_DATA_ERROR","features":[476]},{"name":"ERROR_GOPHER_END_OF_DATA","features":[476]},{"name":"ERROR_GOPHER_INCORRECT_LOCATOR_TYPE","features":[476]},{"name":"ERROR_GOPHER_INVALID_LOCATOR","features":[476]},{"name":"ERROR_GOPHER_NOT_FILE","features":[476]},{"name":"ERROR_GOPHER_NOT_GOPHER_PLUS","features":[476]},{"name":"ERROR_GOPHER_PROTOCOL_ERROR","features":[476]},{"name":"ERROR_GOPHER_UNKNOWN_LOCATOR","features":[476]},{"name":"ERROR_HTTP_COOKIE_DECLINED","features":[476]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION","features":[476]},{"name":"ERROR_HTTP_COOKIE_NEEDS_CONFIRMATION_EX","features":[476]},{"name":"ERROR_HTTP_DOWNLEVEL_SERVER","features":[476]},{"name":"ERROR_HTTP_HEADER_ALREADY_EXISTS","features":[476]},{"name":"ERROR_HTTP_HEADER_NOT_FOUND","features":[476]},{"name":"ERROR_HTTP_HSTS_REDIRECT_REQUIRED","features":[476]},{"name":"ERROR_HTTP_INVALID_HEADER","features":[476]},{"name":"ERROR_HTTP_INVALID_QUERY_REQUEST","features":[476]},{"name":"ERROR_HTTP_INVALID_SERVER_RESPONSE","features":[476]},{"name":"ERROR_HTTP_NOT_REDIRECTED","features":[476]},{"name":"ERROR_HTTP_PUSH_ENABLE_FAILED","features":[476]},{"name":"ERROR_HTTP_PUSH_RETRY_NOT_SUPPORTED","features":[476]},{"name":"ERROR_HTTP_PUSH_STATUS_CODE_NOT_SUPPORTED","features":[476]},{"name":"ERROR_HTTP_REDIRECT_FAILED","features":[476]},{"name":"ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION","features":[476]},{"name":"ERROR_INTERNET_ASYNC_THREAD_FAILED","features":[476]},{"name":"ERROR_INTERNET_BAD_AUTO_PROXY_SCRIPT","features":[476]},{"name":"ERROR_INTERNET_BAD_OPTION_LENGTH","features":[476]},{"name":"ERROR_INTERNET_BAD_REGISTRY_PARAMETER","features":[476]},{"name":"ERROR_INTERNET_CACHE_SUCCESS","features":[476]},{"name":"ERROR_INTERNET_CANNOT_CONNECT","features":[476]},{"name":"ERROR_INTERNET_CHG_POST_IS_NON_SECURE","features":[476]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED","features":[476]},{"name":"ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED_PROXY","features":[476]},{"name":"ERROR_INTERNET_CLIENT_AUTH_NOT_SETUP","features":[476]},{"name":"ERROR_INTERNET_CONNECTION_ABORTED","features":[476]},{"name":"ERROR_INTERNET_CONNECTION_AVAILABLE","features":[476]},{"name":"ERROR_INTERNET_CONNECTION_RESET","features":[476]},{"name":"ERROR_INTERNET_DECODING_FAILED","features":[476]},{"name":"ERROR_INTERNET_DIALOG_PENDING","features":[476]},{"name":"ERROR_INTERNET_DISALLOW_INPRIVATE","features":[476]},{"name":"ERROR_INTERNET_DISCONNECTED","features":[476]},{"name":"ERROR_INTERNET_EXTENDED_ERROR","features":[476]},{"name":"ERROR_INTERNET_FAILED_DUETOSECURITYCHECK","features":[476]},{"name":"ERROR_INTERNET_FEATURE_DISABLED","features":[476]},{"name":"ERROR_INTERNET_FORCE_RETRY","features":[476]},{"name":"ERROR_INTERNET_FORTEZZA_LOGIN_NEEDED","features":[476]},{"name":"ERROR_INTERNET_GLOBAL_CALLBACK_FAILED","features":[476]},{"name":"ERROR_INTERNET_HANDLE_EXISTS","features":[476]},{"name":"ERROR_INTERNET_HTTPS_HTTP_SUBMIT_REDIR","features":[476]},{"name":"ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR","features":[476]},{"name":"ERROR_INTERNET_HTTP_PROTOCOL_MISMATCH","features":[476]},{"name":"ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR","features":[476]},{"name":"ERROR_INTERNET_INCORRECT_FORMAT","features":[476]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_STATE","features":[476]},{"name":"ERROR_INTERNET_INCORRECT_HANDLE_TYPE","features":[476]},{"name":"ERROR_INTERNET_INCORRECT_PASSWORD","features":[476]},{"name":"ERROR_INTERNET_INCORRECT_USER_NAME","features":[476]},{"name":"ERROR_INTERNET_INSECURE_FALLBACK_REQUIRED","features":[476]},{"name":"ERROR_INTERNET_INSERT_CDROM","features":[476]},{"name":"ERROR_INTERNET_INTERNAL_ERROR","features":[476]},{"name":"ERROR_INTERNET_INTERNAL_SOCKET_ERROR","features":[476]},{"name":"ERROR_INTERNET_INVALID_CA","features":[476]},{"name":"ERROR_INTERNET_INVALID_OPERATION","features":[476]},{"name":"ERROR_INTERNET_INVALID_OPTION","features":[476]},{"name":"ERROR_INTERNET_INVALID_PROXY_REQUEST","features":[476]},{"name":"ERROR_INTERNET_INVALID_URL","features":[476]},{"name":"ERROR_INTERNET_ITEM_NOT_FOUND","features":[476]},{"name":"ERROR_INTERNET_LOGIN_FAILURE","features":[476]},{"name":"ERROR_INTERNET_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[476]},{"name":"ERROR_INTERNET_MIXED_SECURITY","features":[476]},{"name":"ERROR_INTERNET_NAME_NOT_RESOLVED","features":[476]},{"name":"ERROR_INTERNET_NEED_MSN_SSPI_PKG","features":[476]},{"name":"ERROR_INTERNET_NEED_UI","features":[476]},{"name":"ERROR_INTERNET_NOT_INITIALIZED","features":[476]},{"name":"ERROR_INTERNET_NOT_PROXY_REQUEST","features":[476]},{"name":"ERROR_INTERNET_NO_CALLBACK","features":[476]},{"name":"ERROR_INTERNET_NO_CM_CONNECTION","features":[476]},{"name":"ERROR_INTERNET_NO_CONTEXT","features":[476]},{"name":"ERROR_INTERNET_NO_DIRECT_ACCESS","features":[476]},{"name":"ERROR_INTERNET_NO_KNOWN_SERVERS","features":[476]},{"name":"ERROR_INTERNET_NO_NEW_CONTAINERS","features":[476]},{"name":"ERROR_INTERNET_NO_PING_SUPPORT","features":[476]},{"name":"ERROR_INTERNET_OFFLINE","features":[476]},{"name":"ERROR_INTERNET_OPERATION_CANCELLED","features":[476]},{"name":"ERROR_INTERNET_OPTION_NOT_SETTABLE","features":[476]},{"name":"ERROR_INTERNET_OUT_OF_HANDLES","features":[476]},{"name":"ERROR_INTERNET_PING_FAILED","features":[476]},{"name":"ERROR_INTERNET_POST_IS_NON_SECURE","features":[476]},{"name":"ERROR_INTERNET_PROTOCOL_NOT_FOUND","features":[476]},{"name":"ERROR_INTERNET_PROXY_ALERT","features":[476]},{"name":"ERROR_INTERNET_PROXY_SERVER_UNREACHABLE","features":[476]},{"name":"ERROR_INTERNET_REDIRECT_SCHEME_CHANGE","features":[476]},{"name":"ERROR_INTERNET_REGISTRY_VALUE_NOT_FOUND","features":[476]},{"name":"ERROR_INTERNET_REQUEST_PENDING","features":[476]},{"name":"ERROR_INTERNET_RETRY_DIALOG","features":[476]},{"name":"ERROR_INTERNET_SECURE_FAILURE_PROXY","features":[476]},{"name":"ERROR_INTERNET_SECURITY_CHANNEL_ERROR","features":[476]},{"name":"ERROR_INTERNET_SEC_CERT_CN_INVALID","features":[476]},{"name":"ERROR_INTERNET_SEC_CERT_DATE_INVALID","features":[476]},{"name":"ERROR_INTERNET_SEC_CERT_ERRORS","features":[476]},{"name":"ERROR_INTERNET_SEC_CERT_NO_REV","features":[476]},{"name":"ERROR_INTERNET_SEC_CERT_REVOKED","features":[476]},{"name":"ERROR_INTERNET_SEC_CERT_REV_FAILED","features":[476]},{"name":"ERROR_INTERNET_SEC_CERT_WEAK_SIGNATURE","features":[476]},{"name":"ERROR_INTERNET_SEC_INVALID_CERT","features":[476]},{"name":"ERROR_INTERNET_SERVER_UNREACHABLE","features":[476]},{"name":"ERROR_INTERNET_SHUTDOWN","features":[476]},{"name":"ERROR_INTERNET_SOURCE_PORT_IN_USE","features":[476]},{"name":"ERROR_INTERNET_TCPIP_NOT_INSTALLED","features":[476]},{"name":"ERROR_INTERNET_TIMEOUT","features":[476]},{"name":"ERROR_INTERNET_UNABLE_TO_CACHE_FILE","features":[476]},{"name":"ERROR_INTERNET_UNABLE_TO_DOWNLOAD_SCRIPT","features":[476]},{"name":"ERROR_INTERNET_UNRECOGNIZED_SCHEME","features":[476]},{"name":"ExportCookieFileA","features":[305,476]},{"name":"ExportCookieFileW","features":[305,476]},{"name":"FLAGS_ERROR_UI_FILTER_FOR_ERRORS","features":[476]},{"name":"FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS","features":[476]},{"name":"FLAGS_ERROR_UI_FLAGS_GENERATE_DATA","features":[476]},{"name":"FLAGS_ERROR_UI_FLAGS_NO_UI","features":[476]},{"name":"FLAGS_ERROR_UI_SERIALIZE_DIALOGS","features":[476]},{"name":"FLAGS_ERROR_UI_SHOW_IDN_HOSTNAME","features":[476]},{"name":"FLAG_ICC_FORCE_CONNECTION","features":[476]},{"name":"FORTCMD","features":[476]},{"name":"FORTCMD_CHG_PERSONALITY","features":[476]},{"name":"FORTCMD_LOGOFF","features":[476]},{"name":"FORTCMD_LOGON","features":[476]},{"name":"FORTSTAT","features":[476]},{"name":"FORTSTAT_INSTALLED","features":[476]},{"name":"FORTSTAT_LOGGEDON","features":[476]},{"name":"FTP_FLAGS","features":[476]},{"name":"FTP_TRANSFER_TYPE_ASCII","features":[476]},{"name":"FTP_TRANSFER_TYPE_BINARY","features":[476]},{"name":"FTP_TRANSFER_TYPE_UNKNOWN","features":[476]},{"name":"FindCloseUrlCache","features":[305,476]},{"name":"FindFirstUrlCacheContainerA","features":[305,476]},{"name":"FindFirstUrlCacheContainerW","features":[305,476]},{"name":"FindFirstUrlCacheEntryA","features":[305,476]},{"name":"FindFirstUrlCacheEntryExA","features":[305,476]},{"name":"FindFirstUrlCacheEntryExW","features":[305,476]},{"name":"FindFirstUrlCacheEntryW","features":[305,476]},{"name":"FindFirstUrlCacheGroup","features":[305,476]},{"name":"FindNextUrlCacheContainerA","features":[305,476]},{"name":"FindNextUrlCacheContainerW","features":[305,476]},{"name":"FindNextUrlCacheEntryA","features":[305,476]},{"name":"FindNextUrlCacheEntryExA","features":[305,476]},{"name":"FindNextUrlCacheEntryExW","features":[305,476]},{"name":"FindNextUrlCacheEntryW","features":[305,476]},{"name":"FindNextUrlCacheGroup","features":[305,476]},{"name":"FindP3PPolicySymbol","features":[476]},{"name":"FreeUrlCacheSpaceA","features":[305,476]},{"name":"FreeUrlCacheSpaceW","features":[305,476]},{"name":"FtpCommandA","features":[305,476]},{"name":"FtpCommandW","features":[305,476]},{"name":"FtpCreateDirectoryA","features":[305,476]},{"name":"FtpCreateDirectoryW","features":[305,476]},{"name":"FtpDeleteFileA","features":[305,476]},{"name":"FtpDeleteFileW","features":[305,476]},{"name":"FtpFindFirstFileA","features":[305,476,324]},{"name":"FtpFindFirstFileW","features":[305,476,324]},{"name":"FtpGetCurrentDirectoryA","features":[305,476]},{"name":"FtpGetCurrentDirectoryW","features":[305,476]},{"name":"FtpGetFileA","features":[305,476]},{"name":"FtpGetFileEx","features":[305,476]},{"name":"FtpGetFileSize","features":[476]},{"name":"FtpGetFileW","features":[305,476]},{"name":"FtpOpenFileA","features":[476]},{"name":"FtpOpenFileW","features":[476]},{"name":"FtpPutFileA","features":[305,476]},{"name":"FtpPutFileEx","features":[305,476]},{"name":"FtpPutFileW","features":[305,476]},{"name":"FtpRemoveDirectoryA","features":[305,476]},{"name":"FtpRemoveDirectoryW","features":[305,476]},{"name":"FtpRenameFileA","features":[305,476]},{"name":"FtpRenameFileW","features":[305,476]},{"name":"FtpSetCurrentDirectoryA","features":[305,476]},{"name":"FtpSetCurrentDirectoryW","features":[305,476]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE","features":[476]},{"name":"GOPHER_ABSTRACT_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_ABSTRACT_CATEGORY","features":[476]},{"name":"GOPHER_ADMIN_ATTRIBUTE","features":[476]},{"name":"GOPHER_ADMIN_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_ADMIN_CATEGORY","features":[476]},{"name":"GOPHER_ASK_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_ATTRIBUTE_ENUMERATOR","features":[305,476]},{"name":"GOPHER_ATTRIBUTE_ID_ABSTRACT","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_ADMIN","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_ALL","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_BASE","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_GEOG","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_LOCATION","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_MOD_DATE","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_ORG","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_PROVIDER","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_RANGE","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_SCORE","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_SITE","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_TIMEZONE","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_TREEWALK","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_TTL","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_UNKNOWN","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_VERSION","features":[476]},{"name":"GOPHER_ATTRIBUTE_ID_VIEW","features":[476]},{"name":"GOPHER_ATTRIBUTE_TYPE","features":[305,476]},{"name":"GOPHER_CATEGORY_ID_ABSTRACT","features":[476]},{"name":"GOPHER_CATEGORY_ID_ADMIN","features":[476]},{"name":"GOPHER_CATEGORY_ID_ALL","features":[476]},{"name":"GOPHER_CATEGORY_ID_ASK","features":[476]},{"name":"GOPHER_CATEGORY_ID_INFO","features":[476]},{"name":"GOPHER_CATEGORY_ID_UNKNOWN","features":[476]},{"name":"GOPHER_CATEGORY_ID_VERONICA","features":[476]},{"name":"GOPHER_CATEGORY_ID_VIEWS","features":[476]},{"name":"GOPHER_FIND_DATAA","features":[305,476]},{"name":"GOPHER_FIND_DATAW","features":[305,476]},{"name":"GOPHER_GEOGRAPHICAL_LOCATION_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_GEOG_ATTRIBUTE","features":[476]},{"name":"GOPHER_INFO_CATEGORY","features":[476]},{"name":"GOPHER_LOCATION_ATTRIBUTE","features":[476]},{"name":"GOPHER_LOCATION_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE","features":[476]},{"name":"GOPHER_MOD_DATE_ATTRIBUTE_TYPE","features":[305,476]},{"name":"GOPHER_ORGANIZATION_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_ORG_ATTRIBUTE","features":[476]},{"name":"GOPHER_PROVIDER_ATTRIBUTE","features":[476]},{"name":"GOPHER_PROVIDER_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_RANGE_ATTRIBUTE","features":[476]},{"name":"GOPHER_SCORE_ATTRIBUTE","features":[476]},{"name":"GOPHER_SCORE_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_SCORE_RANGE_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_SITE_ATTRIBUTE","features":[476]},{"name":"GOPHER_SITE_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE","features":[476]},{"name":"GOPHER_TIMEZONE_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_TREEWALK_ATTRIBUTE","features":[476]},{"name":"GOPHER_TTL_ATTRIBUTE","features":[476]},{"name":"GOPHER_TTL_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_TYPE","features":[476]},{"name":"GOPHER_TYPE_ASK","features":[476]},{"name":"GOPHER_TYPE_BINARY","features":[476]},{"name":"GOPHER_TYPE_BITMAP","features":[476]},{"name":"GOPHER_TYPE_CALENDAR","features":[476]},{"name":"GOPHER_TYPE_CSO","features":[476]},{"name":"GOPHER_TYPE_DIRECTORY","features":[476]},{"name":"GOPHER_TYPE_DOS_ARCHIVE","features":[476]},{"name":"GOPHER_TYPE_ERROR","features":[476]},{"name":"GOPHER_TYPE_GIF","features":[476]},{"name":"GOPHER_TYPE_GOPHER_PLUS","features":[476]},{"name":"GOPHER_TYPE_HTML","features":[476]},{"name":"GOPHER_TYPE_IMAGE","features":[476]},{"name":"GOPHER_TYPE_INDEX_SERVER","features":[476]},{"name":"GOPHER_TYPE_INLINE","features":[476]},{"name":"GOPHER_TYPE_MAC_BINHEX","features":[476]},{"name":"GOPHER_TYPE_MOVIE","features":[476]},{"name":"GOPHER_TYPE_PDF","features":[476]},{"name":"GOPHER_TYPE_REDUNDANT","features":[476]},{"name":"GOPHER_TYPE_SOUND","features":[476]},{"name":"GOPHER_TYPE_TELNET","features":[476]},{"name":"GOPHER_TYPE_TEXT_FILE","features":[476]},{"name":"GOPHER_TYPE_TN3270","features":[476]},{"name":"GOPHER_TYPE_UNIX_UUENCODED","features":[476]},{"name":"GOPHER_TYPE_UNKNOWN","features":[476]},{"name":"GOPHER_UNKNOWN_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_VERONICA_ATTRIBUTE_TYPE","features":[305,476]},{"name":"GOPHER_VERONICA_CATEGORY","features":[476]},{"name":"GOPHER_VERSION_ATTRIBUTE","features":[476]},{"name":"GOPHER_VERSION_ATTRIBUTE_TYPE","features":[476]},{"name":"GOPHER_VIEWS_CATEGORY","features":[476]},{"name":"GOPHER_VIEW_ATTRIBUTE","features":[476]},{"name":"GOPHER_VIEW_ATTRIBUTE_TYPE","features":[476]},{"name":"GROUPNAME_MAX_LENGTH","features":[476]},{"name":"GROUP_OWNER_STORAGE_SIZE","features":[476]},{"name":"GetDiskInfoA","features":[305,476]},{"name":"GetUrlCacheConfigInfoA","features":[305,476]},{"name":"GetUrlCacheConfigInfoW","features":[305,476]},{"name":"GetUrlCacheEntryBinaryBlob","features":[305,476]},{"name":"GetUrlCacheEntryInfoA","features":[305,476]},{"name":"GetUrlCacheEntryInfoExA","features":[305,476]},{"name":"GetUrlCacheEntryInfoExW","features":[305,476]},{"name":"GetUrlCacheEntryInfoW","features":[305,476]},{"name":"GetUrlCacheGroupAttributeA","features":[305,476]},{"name":"GetUrlCacheGroupAttributeW","features":[305,476]},{"name":"GetUrlCacheHeaderData","features":[305,476]},{"name":"GopherCreateLocatorA","features":[305,476]},{"name":"GopherCreateLocatorW","features":[305,476]},{"name":"GopherFindFirstFileA","features":[305,476]},{"name":"GopherFindFirstFileW","features":[305,476]},{"name":"GopherGetAttributeA","features":[305,476]},{"name":"GopherGetAttributeW","features":[305,476]},{"name":"GopherGetLocatorTypeA","features":[305,476]},{"name":"GopherGetLocatorTypeW","features":[305,476]},{"name":"GopherOpenFileA","features":[476]},{"name":"GopherOpenFileW","features":[476]},{"name":"HSR_ASYNC","features":[476]},{"name":"HSR_CHUNKED","features":[476]},{"name":"HSR_DOWNLOAD","features":[476]},{"name":"HSR_INITIATE","features":[476]},{"name":"HSR_SYNC","features":[476]},{"name":"HSR_USE_CONTEXT","features":[476]},{"name":"HTTP_1_1_CACHE_ENTRY","features":[476]},{"name":"HTTP_ADDREQ_FLAG","features":[476]},{"name":"HTTP_ADDREQ_FLAGS_MASK","features":[476]},{"name":"HTTP_ADDREQ_FLAG_ADD","features":[476]},{"name":"HTTP_ADDREQ_FLAG_ADD_IF_NEW","features":[476]},{"name":"HTTP_ADDREQ_FLAG_ALLOW_EMPTY_VALUES","features":[476]},{"name":"HTTP_ADDREQ_FLAG_COALESCE","features":[476]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_COMMA","features":[476]},{"name":"HTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON","features":[476]},{"name":"HTTP_ADDREQ_FLAG_REPLACE","features":[476]},{"name":"HTTP_ADDREQ_FLAG_RESPONSE_HEADERS","features":[476]},{"name":"HTTP_ADDREQ_INDEX_MASK","features":[476]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE","features":[476]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_CROSS_SITE_LAX","features":[476]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_MAX","features":[476]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_SAME_SITE","features":[476]},{"name":"HTTP_COOKIES_SAME_SITE_LEVEL_UNKNOWN","features":[476]},{"name":"HTTP_MAJOR_VERSION","features":[476]},{"name":"HTTP_MINOR_VERSION","features":[476]},{"name":"HTTP_POLICY_EXTENSION_INIT","features":[476]},{"name":"HTTP_POLICY_EXTENSION_SHUTDOWN","features":[476]},{"name":"HTTP_POLICY_EXTENSION_TYPE","features":[476]},{"name":"HTTP_POLICY_EXTENSION_VERSION","features":[476]},{"name":"HTTP_PROTOCOL_FLAG_HTTP2","features":[476]},{"name":"HTTP_PROTOCOL_MASK","features":[476]},{"name":"HTTP_PUSH_NOTIFICATION_STATUS","features":[305,476]},{"name":"HTTP_PUSH_TRANSPORT_SETTING","features":[476]},{"name":"HTTP_PUSH_WAIT_HANDLE","features":[476]},{"name":"HTTP_PUSH_WAIT_TYPE","features":[476]},{"name":"HTTP_QUERY_ACCEPT","features":[476]},{"name":"HTTP_QUERY_ACCEPT_CHARSET","features":[476]},{"name":"HTTP_QUERY_ACCEPT_ENCODING","features":[476]},{"name":"HTTP_QUERY_ACCEPT_LANGUAGE","features":[476]},{"name":"HTTP_QUERY_ACCEPT_RANGES","features":[476]},{"name":"HTTP_QUERY_AGE","features":[476]},{"name":"HTTP_QUERY_ALLOW","features":[476]},{"name":"HTTP_QUERY_AUTHENTICATION_INFO","features":[476]},{"name":"HTTP_QUERY_AUTHORIZATION","features":[476]},{"name":"HTTP_QUERY_CACHE_CONTROL","features":[476]},{"name":"HTTP_QUERY_CONNECTION","features":[476]},{"name":"HTTP_QUERY_CONTENT_BASE","features":[476]},{"name":"HTTP_QUERY_CONTENT_DESCRIPTION","features":[476]},{"name":"HTTP_QUERY_CONTENT_DISPOSITION","features":[476]},{"name":"HTTP_QUERY_CONTENT_ENCODING","features":[476]},{"name":"HTTP_QUERY_CONTENT_ID","features":[476]},{"name":"HTTP_QUERY_CONTENT_LANGUAGE","features":[476]},{"name":"HTTP_QUERY_CONTENT_LENGTH","features":[476]},{"name":"HTTP_QUERY_CONTENT_LOCATION","features":[476]},{"name":"HTTP_QUERY_CONTENT_MD5","features":[476]},{"name":"HTTP_QUERY_CONTENT_RANGE","features":[476]},{"name":"HTTP_QUERY_CONTENT_TRANSFER_ENCODING","features":[476]},{"name":"HTTP_QUERY_CONTENT_TYPE","features":[476]},{"name":"HTTP_QUERY_COOKIE","features":[476]},{"name":"HTTP_QUERY_COST","features":[476]},{"name":"HTTP_QUERY_CUSTOM","features":[476]},{"name":"HTTP_QUERY_DATE","features":[476]},{"name":"HTTP_QUERY_DEFAULT_STYLE","features":[476]},{"name":"HTTP_QUERY_DERIVED_FROM","features":[476]},{"name":"HTTP_QUERY_DO_NOT_TRACK","features":[476]},{"name":"HTTP_QUERY_ECHO_HEADERS","features":[476]},{"name":"HTTP_QUERY_ECHO_HEADERS_CRLF","features":[476]},{"name":"HTTP_QUERY_ECHO_REPLY","features":[476]},{"name":"HTTP_QUERY_ECHO_REQUEST","features":[476]},{"name":"HTTP_QUERY_ETAG","features":[476]},{"name":"HTTP_QUERY_EXPECT","features":[476]},{"name":"HTTP_QUERY_EXPIRES","features":[476]},{"name":"HTTP_QUERY_FLAG_COALESCE","features":[476]},{"name":"HTTP_QUERY_FLAG_COALESCE_WITH_COMMA","features":[476]},{"name":"HTTP_QUERY_FLAG_NUMBER","features":[476]},{"name":"HTTP_QUERY_FLAG_NUMBER64","features":[476]},{"name":"HTTP_QUERY_FLAG_REQUEST_HEADERS","features":[476]},{"name":"HTTP_QUERY_FLAG_SYSTEMTIME","features":[476]},{"name":"HTTP_QUERY_FORWARDED","features":[476]},{"name":"HTTP_QUERY_FROM","features":[476]},{"name":"HTTP_QUERY_HOST","features":[476]},{"name":"HTTP_QUERY_HTTP2_SETTINGS","features":[476]},{"name":"HTTP_QUERY_IF_MATCH","features":[476]},{"name":"HTTP_QUERY_IF_MODIFIED_SINCE","features":[476]},{"name":"HTTP_QUERY_IF_NONE_MATCH","features":[476]},{"name":"HTTP_QUERY_IF_RANGE","features":[476]},{"name":"HTTP_QUERY_IF_UNMODIFIED_SINCE","features":[476]},{"name":"HTTP_QUERY_INCLUDE_REFERER_TOKEN_BINDING_ID","features":[476]},{"name":"HTTP_QUERY_INCLUDE_REFERRED_TOKEN_BINDING_ID","features":[476]},{"name":"HTTP_QUERY_KEEP_ALIVE","features":[476]},{"name":"HTTP_QUERY_LAST_MODIFIED","features":[476]},{"name":"HTTP_QUERY_LINK","features":[476]},{"name":"HTTP_QUERY_LOCATION","features":[476]},{"name":"HTTP_QUERY_MAX","features":[476]},{"name":"HTTP_QUERY_MAX_FORWARDS","features":[476]},{"name":"HTTP_QUERY_MESSAGE_ID","features":[476]},{"name":"HTTP_QUERY_MIME_VERSION","features":[476]},{"name":"HTTP_QUERY_ORIG_URI","features":[476]},{"name":"HTTP_QUERY_P3P","features":[476]},{"name":"HTTP_QUERY_PASSPORT_CONFIG","features":[476]},{"name":"HTTP_QUERY_PASSPORT_URLS","features":[476]},{"name":"HTTP_QUERY_PRAGMA","features":[476]},{"name":"HTTP_QUERY_PROXY_AUTHENTICATE","features":[476]},{"name":"HTTP_QUERY_PROXY_AUTHORIZATION","features":[476]},{"name":"HTTP_QUERY_PROXY_CONNECTION","features":[476]},{"name":"HTTP_QUERY_PROXY_SUPPORT","features":[476]},{"name":"HTTP_QUERY_PUBLIC","features":[476]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS","features":[476]},{"name":"HTTP_QUERY_PUBLIC_KEY_PINS_REPORT_ONLY","features":[476]},{"name":"HTTP_QUERY_RANGE","features":[476]},{"name":"HTTP_QUERY_RAW_HEADERS","features":[476]},{"name":"HTTP_QUERY_RAW_HEADERS_CRLF","features":[476]},{"name":"HTTP_QUERY_REFERER","features":[476]},{"name":"HTTP_QUERY_REFRESH","features":[476]},{"name":"HTTP_QUERY_REQUEST_METHOD","features":[476]},{"name":"HTTP_QUERY_RETRY_AFTER","features":[476]},{"name":"HTTP_QUERY_SERVER","features":[476]},{"name":"HTTP_QUERY_SET_COOKIE","features":[476]},{"name":"HTTP_QUERY_SET_COOKIE2","features":[476]},{"name":"HTTP_QUERY_STATUS_CODE","features":[476]},{"name":"HTTP_QUERY_STATUS_TEXT","features":[476]},{"name":"HTTP_QUERY_STRICT_TRANSPORT_SECURITY","features":[476]},{"name":"HTTP_QUERY_TITLE","features":[476]},{"name":"HTTP_QUERY_TOKEN_BINDING","features":[476]},{"name":"HTTP_QUERY_TRANSFER_ENCODING","features":[476]},{"name":"HTTP_QUERY_TRANSLATE","features":[476]},{"name":"HTTP_QUERY_UNLESS_MODIFIED_SINCE","features":[476]},{"name":"HTTP_QUERY_UPGRADE","features":[476]},{"name":"HTTP_QUERY_URI","features":[476]},{"name":"HTTP_QUERY_USER_AGENT","features":[476]},{"name":"HTTP_QUERY_VARY","features":[476]},{"name":"HTTP_QUERY_VERSION","features":[476]},{"name":"HTTP_QUERY_VIA","features":[476]},{"name":"HTTP_QUERY_WARNING","features":[476]},{"name":"HTTP_QUERY_WWW_AUTHENTICATE","features":[476]},{"name":"HTTP_QUERY_X_CONTENT_TYPE_OPTIONS","features":[476]},{"name":"HTTP_QUERY_X_FRAME_OPTIONS","features":[476]},{"name":"HTTP_QUERY_X_P2P_PEERDIST","features":[476]},{"name":"HTTP_QUERY_X_UA_COMPATIBLE","features":[476]},{"name":"HTTP_QUERY_X_XSS_PROTECTION","features":[476]},{"name":"HTTP_REQUEST_TIMES","features":[476]},{"name":"HTTP_STATUS_MISDIRECTED_REQUEST","features":[476]},{"name":"HTTP_VERSIONA","features":[476]},{"name":"HTTP_VERSIONW","features":[476]},{"name":"HTTP_WEB_SOCKET_ABORTED_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_ASYNC_RESULT","features":[476]},{"name":"HTTP_WEB_SOCKET_BINARY_FRAGMENT_TYPE","features":[476]},{"name":"HTTP_WEB_SOCKET_BINARY_MESSAGE_TYPE","features":[476]},{"name":"HTTP_WEB_SOCKET_BUFFER_TYPE","features":[476]},{"name":"HTTP_WEB_SOCKET_CLOSE_OPERATION","features":[476]},{"name":"HTTP_WEB_SOCKET_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_CLOSE_TYPE","features":[476]},{"name":"HTTP_WEB_SOCKET_EMPTY_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_ENDPOINT_TERMINATED_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_INVALID_DATA_TYPE_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_INVALID_PAYLOAD_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_MAX_CLOSE_REASON_LENGTH","features":[476]},{"name":"HTTP_WEB_SOCKET_MESSAGE_TOO_BIG_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_MIN_KEEPALIVE_VALUE","features":[476]},{"name":"HTTP_WEB_SOCKET_OPERATION","features":[476]},{"name":"HTTP_WEB_SOCKET_PING_TYPE","features":[476]},{"name":"HTTP_WEB_SOCKET_POLICY_VIOLATION_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_PROTOCOL_ERROR_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_RECEIVE_OPERATION","features":[476]},{"name":"HTTP_WEB_SOCKET_SECURE_HANDSHAKE_ERROR_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_SEND_OPERATION","features":[476]},{"name":"HTTP_WEB_SOCKET_SERVER_ERROR_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_SHUTDOWN_OPERATION","features":[476]},{"name":"HTTP_WEB_SOCKET_SUCCESS_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_UNSUPPORTED_EXTENSIONS_CLOSE_STATUS","features":[476]},{"name":"HTTP_WEB_SOCKET_UTF8_FRAGMENT_TYPE","features":[476]},{"name":"HTTP_WEB_SOCKET_UTF8_MESSAGE_TYPE","features":[476]},{"name":"HttpAddRequestHeadersA","features":[305,476]},{"name":"HttpAddRequestHeadersW","features":[305,476]},{"name":"HttpCheckDavComplianceA","features":[305,476]},{"name":"HttpCheckDavComplianceW","features":[305,476]},{"name":"HttpCloseDependencyHandle","features":[476]},{"name":"HttpDuplicateDependencyHandle","features":[476]},{"name":"HttpEndRequestA","features":[305,476]},{"name":"HttpEndRequestW","features":[305,476]},{"name":"HttpGetServerCredentials","features":[476]},{"name":"HttpIndicatePageLoadComplete","features":[476]},{"name":"HttpIsHostHstsEnabled","features":[305,476]},{"name":"HttpOpenDependencyHandle","features":[305,476]},{"name":"HttpOpenRequestA","features":[476]},{"name":"HttpOpenRequestW","features":[476]},{"name":"HttpPushClose","features":[476]},{"name":"HttpPushEnable","features":[476]},{"name":"HttpPushWait","features":[305,476]},{"name":"HttpPushWaitEnableComplete","features":[476]},{"name":"HttpPushWaitReceiveComplete","features":[476]},{"name":"HttpPushWaitSendComplete","features":[476]},{"name":"HttpQueryInfoA","features":[305,476]},{"name":"HttpQueryInfoW","features":[305,476]},{"name":"HttpRequestTimeMax","features":[476]},{"name":"HttpSendRequestA","features":[305,476]},{"name":"HttpSendRequestExA","features":[305,476]},{"name":"HttpSendRequestExW","features":[305,476]},{"name":"HttpSendRequestW","features":[305,476]},{"name":"HttpWebSocketClose","features":[305,476]},{"name":"HttpWebSocketCompleteUpgrade","features":[476]},{"name":"HttpWebSocketQueryCloseStatus","features":[305,476]},{"name":"HttpWebSocketReceive","features":[305,476]},{"name":"HttpWebSocketSend","features":[305,476]},{"name":"HttpWebSocketShutdown","features":[305,476]},{"name":"ICU_USERNAME","features":[476]},{"name":"IDENTITY_CACHE_ENTRY","features":[476]},{"name":"IDSI_FLAG_KEEP_ALIVE","features":[476]},{"name":"IDSI_FLAG_PROXY","features":[476]},{"name":"IDSI_FLAG_SECURE","features":[476]},{"name":"IDSI_FLAG_TUNNEL","features":[476]},{"name":"IDialBranding","features":[476]},{"name":"IDialEngine","features":[476]},{"name":"IDialEventSink","features":[476]},{"name":"IMMUTABLE_CACHE_ENTRY","features":[476]},{"name":"INSTALLED_CACHE_ENTRY","features":[476]},{"name":"INTERENT_GOONLINE_MASK","features":[476]},{"name":"INTERENT_GOONLINE_NOPROMPT","features":[476]},{"name":"INTERENT_GOONLINE_REFRESH","features":[476]},{"name":"INTERNET_ACCESS_TYPE","features":[476]},{"name":"INTERNET_ASYNC_RESULT","features":[476]},{"name":"INTERNET_AUTH_NOTIFY_DATA","features":[476]},{"name":"INTERNET_AUTH_SCHEME_BASIC","features":[476]},{"name":"INTERNET_AUTH_SCHEME_DIGEST","features":[476]},{"name":"INTERNET_AUTH_SCHEME_KERBEROS","features":[476]},{"name":"INTERNET_AUTH_SCHEME_NEGOTIATE","features":[476]},{"name":"INTERNET_AUTH_SCHEME_NTLM","features":[476]},{"name":"INTERNET_AUTH_SCHEME_PASSPORT","features":[476]},{"name":"INTERNET_AUTH_SCHEME_UNKNOWN","features":[476]},{"name":"INTERNET_AUTODIAL","features":[476]},{"name":"INTERNET_AUTODIAL_FAILIFSECURITYCHECK","features":[476]},{"name":"INTERNET_AUTODIAL_FORCE_ONLINE","features":[476]},{"name":"INTERNET_AUTODIAL_FORCE_UNATTENDED","features":[476]},{"name":"INTERNET_AUTODIAL_OVERRIDE_NET_PRESENT","features":[476]},{"name":"INTERNET_AUTOPROXY_INIT_DEFAULT","features":[476]},{"name":"INTERNET_AUTOPROXY_INIT_DOWNLOADSYNC","features":[476]},{"name":"INTERNET_AUTOPROXY_INIT_ONLYQUERY","features":[476]},{"name":"INTERNET_AUTOPROXY_INIT_QUERYSTATE","features":[476]},{"name":"INTERNET_BUFFERSA","features":[476]},{"name":"INTERNET_BUFFERSW","features":[476]},{"name":"INTERNET_CACHE_CONFIG_INFOA","features":[305,476]},{"name":"INTERNET_CACHE_CONFIG_INFOW","features":[305,476]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYA","features":[476]},{"name":"INTERNET_CACHE_CONFIG_PATH_ENTRYW","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_AUTODELETE","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_BLOOM_FILTER","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_INFOA","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_INFOW","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_MAP_ENABLED","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_NODESKTOPINIT","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_NOSUBDIRS","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_RESERVED1","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ","features":[476]},{"name":"INTERNET_CACHE_CONTAINER_SHARE_READ_WRITE","features":[476]},{"name":"INTERNET_CACHE_ENTRY_INFOA","features":[305,476]},{"name":"INTERNET_CACHE_ENTRY_INFOW","features":[305,476]},{"name":"INTERNET_CACHE_FLAG_ADD_FILENAME_ONLY","features":[476]},{"name":"INTERNET_CACHE_FLAG_ALLOW_COLLISIONS","features":[476]},{"name":"INTERNET_CACHE_FLAG_ENTRY_OR_MAPPING","features":[476]},{"name":"INTERNET_CACHE_FLAG_GET_STRUCT_ONLY","features":[476]},{"name":"INTERNET_CACHE_FLAG_INSTALLED_ENTRY","features":[476]},{"name":"INTERNET_CACHE_GROUP_ADD","features":[476]},{"name":"INTERNET_CACHE_GROUP_INFOA","features":[476]},{"name":"INTERNET_CACHE_GROUP_INFOW","features":[476]},{"name":"INTERNET_CACHE_GROUP_REMOVE","features":[476]},{"name":"INTERNET_CACHE_TIMESTAMPS","features":[305,476]},{"name":"INTERNET_CALLBACK_COOKIE","features":[305,476]},{"name":"INTERNET_CERTIFICATE_INFO","features":[305,476]},{"name":"INTERNET_CONNECTED_INFO","features":[476]},{"name":"INTERNET_CONNECTION","features":[476]},{"name":"INTERNET_CONNECTION_CONFIGURED","features":[476]},{"name":"INTERNET_CONNECTION_LAN","features":[476]},{"name":"INTERNET_CONNECTION_MODEM","features":[476]},{"name":"INTERNET_CONNECTION_MODEM_BUSY","features":[476]},{"name":"INTERNET_CONNECTION_OFFLINE","features":[476]},{"name":"INTERNET_CONNECTION_PROXY","features":[476]},{"name":"INTERNET_COOKIE","features":[305,476]},{"name":"INTERNET_COOKIE2","features":[305,476]},{"name":"INTERNET_COOKIE_ALL_COOKIES","features":[476]},{"name":"INTERNET_COOKIE_APPLY_HOST_ONLY","features":[476]},{"name":"INTERNET_COOKIE_APPLY_P3P","features":[476]},{"name":"INTERNET_COOKIE_ECTX_3RDPARTY","features":[476]},{"name":"INTERNET_COOKIE_EDGE_COOKIES","features":[476]},{"name":"INTERNET_COOKIE_EVALUATE_P3P","features":[476]},{"name":"INTERNET_COOKIE_FLAGS","features":[476]},{"name":"INTERNET_COOKIE_HOST_ONLY","features":[476]},{"name":"INTERNET_COOKIE_HOST_ONLY_APPLIED","features":[476]},{"name":"INTERNET_COOKIE_HTTPONLY","features":[476]},{"name":"INTERNET_COOKIE_IE6","features":[476]},{"name":"INTERNET_COOKIE_IS_LEGACY","features":[476]},{"name":"INTERNET_COOKIE_IS_RESTRICTED","features":[476]},{"name":"INTERNET_COOKIE_IS_SECURE","features":[476]},{"name":"INTERNET_COOKIE_IS_SESSION","features":[476]},{"name":"INTERNET_COOKIE_NON_SCRIPT","features":[476]},{"name":"INTERNET_COOKIE_NO_CALLBACK","features":[476]},{"name":"INTERNET_COOKIE_P3P_ENABLED","features":[476]},{"name":"INTERNET_COOKIE_PERSISTENT_HOST_ONLY","features":[476]},{"name":"INTERNET_COOKIE_PROMPT_REQUIRED","features":[476]},{"name":"INTERNET_COOKIE_RESTRICTED_ZONE","features":[476]},{"name":"INTERNET_COOKIE_SAME_SITE_LAX","features":[476]},{"name":"INTERNET_COOKIE_SAME_SITE_LEVEL_CROSS_SITE","features":[476]},{"name":"INTERNET_COOKIE_SAME_SITE_STRICT","features":[476]},{"name":"INTERNET_COOKIE_THIRD_PARTY","features":[476]},{"name":"INTERNET_CREDENTIALS","features":[305,476]},{"name":"INTERNET_CUSTOMDIAL_CAN_HANGUP","features":[476]},{"name":"INTERNET_CUSTOMDIAL_CONNECT","features":[476]},{"name":"INTERNET_CUSTOMDIAL_DISCONNECT","features":[476]},{"name":"INTERNET_CUSTOMDIAL_SAFE_FOR_UNATTENDED","features":[476]},{"name":"INTERNET_CUSTOMDIAL_SHOWOFFLINE","features":[476]},{"name":"INTERNET_CUSTOMDIAL_UNATTENDED","features":[476]},{"name":"INTERNET_CUSTOMDIAL_WILL_SUPPLY_STATE","features":[476]},{"name":"INTERNET_DEFAULT_FTP_PORT","features":[476]},{"name":"INTERNET_DEFAULT_GOPHER_PORT","features":[476]},{"name":"INTERNET_DEFAULT_SOCKS_PORT","features":[476]},{"name":"INTERNET_DIAGNOSTIC_SOCKET_INFO","features":[476]},{"name":"INTERNET_DIALSTATE_DISCONNECTED","features":[476]},{"name":"INTERNET_DIAL_FORCE_PROMPT","features":[476]},{"name":"INTERNET_DIAL_SHOW_OFFLINE","features":[476]},{"name":"INTERNET_DIAL_UNATTENDED","features":[476]},{"name":"INTERNET_DOWNLOAD_MODE_HANDLE","features":[305,476]},{"name":"INTERNET_END_BROWSER_SESSION_DATA","features":[476]},{"name":"INTERNET_ERROR_BASE","features":[476]},{"name":"INTERNET_ERROR_LAST","features":[476]},{"name":"INTERNET_ERROR_MASK_COMBINED_SEC_CERT","features":[476]},{"name":"INTERNET_ERROR_MASK_INSERT_CDROM","features":[476]},{"name":"INTERNET_ERROR_MASK_LOGIN_FAILURE_DISPLAY_ENTITY_BODY","features":[476]},{"name":"INTERNET_ERROR_MASK_NEED_MSN_SSPI_PKG","features":[476]},{"name":"INTERNET_FIRST_OPTION","features":[476]},{"name":"INTERNET_FLAG_ASYNC","features":[476]},{"name":"INTERNET_FLAG_BGUPDATE","features":[476]},{"name":"INTERNET_FLAG_CACHE_ASYNC","features":[476]},{"name":"INTERNET_FLAG_CACHE_IF_NET_FAIL","features":[476]},{"name":"INTERNET_FLAG_DONT_CACHE","features":[476]},{"name":"INTERNET_FLAG_EXISTING_CONNECT","features":[476]},{"name":"INTERNET_FLAG_FORMS_SUBMIT","features":[476]},{"name":"INTERNET_FLAG_FROM_CACHE","features":[476]},{"name":"INTERNET_FLAG_FTP_FOLDER_VIEW","features":[476]},{"name":"INTERNET_FLAG_FWD_BACK","features":[476]},{"name":"INTERNET_FLAG_HYPERLINK","features":[476]},{"name":"INTERNET_FLAG_IDN_DIRECT","features":[476]},{"name":"INTERNET_FLAG_IDN_PROXY","features":[476]},{"name":"INTERNET_FLAG_IGNORE_CERT_CN_INVALID","features":[476]},{"name":"INTERNET_FLAG_IGNORE_CERT_DATE_INVALID","features":[476]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[476]},{"name":"INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[476]},{"name":"INTERNET_FLAG_KEEP_CONNECTION","features":[476]},{"name":"INTERNET_FLAG_MAKE_PERSISTENT","features":[476]},{"name":"INTERNET_FLAG_MUST_CACHE_REQUEST","features":[476]},{"name":"INTERNET_FLAG_NEED_FILE","features":[476]},{"name":"INTERNET_FLAG_NO_AUTH","features":[476]},{"name":"INTERNET_FLAG_NO_AUTO_REDIRECT","features":[476]},{"name":"INTERNET_FLAG_NO_CACHE_WRITE","features":[476]},{"name":"INTERNET_FLAG_NO_COOKIES","features":[476]},{"name":"INTERNET_FLAG_NO_UI","features":[476]},{"name":"INTERNET_FLAG_OFFLINE","features":[476]},{"name":"INTERNET_FLAG_PASSIVE","features":[476]},{"name":"INTERNET_FLAG_PRAGMA_NOCACHE","features":[476]},{"name":"INTERNET_FLAG_RAW_DATA","features":[476]},{"name":"INTERNET_FLAG_READ_PREFETCH","features":[476]},{"name":"INTERNET_FLAG_RELOAD","features":[476]},{"name":"INTERNET_FLAG_RESTRICTED_ZONE","features":[476]},{"name":"INTERNET_FLAG_RESYNCHRONIZE","features":[476]},{"name":"INTERNET_FLAG_SECURE","features":[476]},{"name":"INTERNET_FLAG_TRANSFER_ASCII","features":[476]},{"name":"INTERNET_FLAG_TRANSFER_BINARY","features":[476]},{"name":"INTERNET_GLOBAL_CALLBACK_DETECTING_PROXY","features":[476]},{"name":"INTERNET_GLOBAL_CALLBACK_SENDING_HTTP_HEADERS","features":[476]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_FTP","features":[476]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_GOPHER","features":[476]},{"name":"INTERNET_HANDLE_TYPE_CONNECT_HTTP","features":[476]},{"name":"INTERNET_HANDLE_TYPE_FILE_REQUEST","features":[476]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE","features":[476]},{"name":"INTERNET_HANDLE_TYPE_FTP_FILE_HTML","features":[476]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND","features":[476]},{"name":"INTERNET_HANDLE_TYPE_FTP_FIND_HTML","features":[476]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE","features":[476]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FILE_HTML","features":[476]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND","features":[476]},{"name":"INTERNET_HANDLE_TYPE_GOPHER_FIND_HTML","features":[476]},{"name":"INTERNET_HANDLE_TYPE_HTTP_REQUEST","features":[476]},{"name":"INTERNET_HANDLE_TYPE_INTERNET","features":[476]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_CONTENT","features":[476]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_COOKIES","features":[476]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_DATA","features":[476]},{"name":"INTERNET_IDENTITY_FLAG_CLEAR_HISTORY","features":[476]},{"name":"INTERNET_IDENTITY_FLAG_PRIVATE_CACHE","features":[476]},{"name":"INTERNET_IDENTITY_FLAG_SHARED_CACHE","features":[476]},{"name":"INTERNET_INTERNAL_ERROR_BASE","features":[476]},{"name":"INTERNET_INVALID_PORT_NUMBER","features":[476]},{"name":"INTERNET_KEEP_ALIVE_DISABLED","features":[476]},{"name":"INTERNET_KEEP_ALIVE_ENABLED","features":[476]},{"name":"INTERNET_KEEP_ALIVE_UNKNOWN","features":[476]},{"name":"INTERNET_LAST_OPTION","features":[476]},{"name":"INTERNET_LAST_OPTION_INTERNAL","features":[476]},{"name":"INTERNET_MAX_HOST_NAME_LENGTH","features":[476]},{"name":"INTERNET_MAX_PASSWORD_LENGTH","features":[476]},{"name":"INTERNET_MAX_PORT_NUMBER_LENGTH","features":[476]},{"name":"INTERNET_MAX_PORT_NUMBER_VALUE","features":[476]},{"name":"INTERNET_MAX_USER_NAME_LENGTH","features":[476]},{"name":"INTERNET_NO_CALLBACK","features":[476]},{"name":"INTERNET_OPEN_TYPE_DIRECT","features":[476]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG","features":[476]},{"name":"INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY","features":[476]},{"name":"INTERNET_OPEN_TYPE_PROXY","features":[476]},{"name":"INTERNET_OPTION_ACTIVATE_WORKER_THREADS","features":[476]},{"name":"INTERNET_OPTION_ACTIVITY_ID","features":[476]},{"name":"INTERNET_OPTION_ALLOW_FAILED_CONNECT_CONTENT","features":[476]},{"name":"INTERNET_OPTION_ALLOW_INSECURE_FALLBACK","features":[476]},{"name":"INTERNET_OPTION_ALTER_IDENTITY","features":[476]},{"name":"INTERNET_OPTION_APP_CACHE","features":[476]},{"name":"INTERNET_OPTION_ASYNC","features":[476]},{"name":"INTERNET_OPTION_ASYNC_ID","features":[476]},{"name":"INTERNET_OPTION_ASYNC_PRIORITY","features":[476]},{"name":"INTERNET_OPTION_AUTH_FLAGS","features":[476]},{"name":"INTERNET_OPTION_AUTH_SCHEME_SELECTED","features":[476]},{"name":"INTERNET_OPTION_AUTODIAL_CONNECTION","features":[476]},{"name":"INTERNET_OPTION_AUTODIAL_HWND","features":[476]},{"name":"INTERNET_OPTION_AUTODIAL_MODE","features":[476]},{"name":"INTERNET_OPTION_BACKGROUND_CONNECTIONS","features":[476]},{"name":"INTERNET_OPTION_BYPASS_EDITED_ENTRY","features":[476]},{"name":"INTERNET_OPTION_CACHE_ENTRY_EXTRA_DATA","features":[476]},{"name":"INTERNET_OPTION_CACHE_PARTITION","features":[476]},{"name":"INTERNET_OPTION_CACHE_STREAM_HANDLE","features":[476]},{"name":"INTERNET_OPTION_CACHE_TIMESTAMPS","features":[476]},{"name":"INTERNET_OPTION_CALLBACK","features":[476]},{"name":"INTERNET_OPTION_CALLBACK_FILTER","features":[476]},{"name":"INTERNET_OPTION_CALLER_MODULE","features":[476]},{"name":"INTERNET_OPTION_CANCEL_CACHE_WRITE","features":[476]},{"name":"INTERNET_OPTION_CERT_ERROR_FLAGS","features":[476]},{"name":"INTERNET_OPTION_CHUNK_ENCODE_REQUEST","features":[476]},{"name":"INTERNET_OPTION_CLIENT_CERT_CONTEXT","features":[476]},{"name":"INTERNET_OPTION_CLIENT_CERT_ISSUER_LIST","features":[476]},{"name":"INTERNET_OPTION_CM_HANDLE_COPY_REF","features":[476]},{"name":"INTERNET_OPTION_CODEPAGE","features":[476]},{"name":"INTERNET_OPTION_CODEPAGE_EXTRA","features":[476]},{"name":"INTERNET_OPTION_CODEPAGE_PATH","features":[476]},{"name":"INTERNET_OPTION_COMPRESSED_CONTENT_LENGTH","features":[476]},{"name":"INTERNET_OPTION_CONNECTED_STATE","features":[476]},{"name":"INTERNET_OPTION_CONNECTION_FILTER","features":[476]},{"name":"INTERNET_OPTION_CONNECTION_INFO","features":[476]},{"name":"INTERNET_OPTION_CONNECT_BACKOFF","features":[476]},{"name":"INTERNET_OPTION_CONNECT_LIMIT","features":[476]},{"name":"INTERNET_OPTION_CONNECT_RETRIES","features":[476]},{"name":"INTERNET_OPTION_CONNECT_TIME","features":[476]},{"name":"INTERNET_OPTION_CONNECT_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_CONTEXT_VALUE","features":[476]},{"name":"INTERNET_OPTION_CONTEXT_VALUE_OLD","features":[476]},{"name":"INTERNET_OPTION_CONTROL_RECEIVE_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_CONTROL_SEND_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_COOKIES_3RD_PARTY","features":[476]},{"name":"INTERNET_OPTION_COOKIES_APPLY_HOST_ONLY","features":[476]},{"name":"INTERNET_OPTION_COOKIES_SAME_SITE_LEVEL","features":[476]},{"name":"INTERNET_OPTION_DATAFILE_EXT","features":[476]},{"name":"INTERNET_OPTION_DATAFILE_NAME","features":[476]},{"name":"INTERNET_OPTION_DATA_RECEIVE_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_DATA_SEND_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_DEPENDENCY_HANDLE","features":[476]},{"name":"INTERNET_OPTION_DETECT_POST_SEND","features":[476]},{"name":"INTERNET_OPTION_DIAGNOSTIC_SOCKET_INFO","features":[476]},{"name":"INTERNET_OPTION_DIGEST_AUTH_UNLOAD","features":[476]},{"name":"INTERNET_OPTION_DISABLE_AUTODIAL","features":[476]},{"name":"INTERNET_OPTION_DISABLE_INSECURE_FALLBACK","features":[476]},{"name":"INTERNET_OPTION_DISABLE_NTLM_PREAUTH","features":[476]},{"name":"INTERNET_OPTION_DISABLE_PASSPORT_AUTH","features":[476]},{"name":"INTERNET_OPTION_DISABLE_PROXY_LINK_LOCAL_NAME_RESOLUTION","features":[476]},{"name":"INTERNET_OPTION_DISALLOW_PREMATURE_EOF","features":[476]},{"name":"INTERNET_OPTION_DISCONNECTED_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE","features":[476]},{"name":"INTERNET_OPTION_DOWNLOAD_MODE_HANDLE","features":[476]},{"name":"INTERNET_OPTION_DO_NOT_TRACK","features":[476]},{"name":"INTERNET_OPTION_DUO_USED","features":[476]},{"name":"INTERNET_OPTION_EDGE_COOKIES","features":[476]},{"name":"INTERNET_OPTION_EDGE_COOKIES_TEMP","features":[476]},{"name":"INTERNET_OPTION_EDGE_MODE","features":[476]},{"name":"INTERNET_OPTION_ENABLE_DUO","features":[476]},{"name":"INTERNET_OPTION_ENABLE_HEADER_CALLBACKS","features":[476]},{"name":"INTERNET_OPTION_ENABLE_HTTP_PROTOCOL","features":[476]},{"name":"INTERNET_OPTION_ENABLE_PASSPORT_AUTH","features":[476]},{"name":"INTERNET_OPTION_ENABLE_REDIRECT_CACHE_READ","features":[476]},{"name":"INTERNET_OPTION_ENABLE_TEST_SIGNING","features":[476]},{"name":"INTERNET_OPTION_ENABLE_WBOEXT","features":[476]},{"name":"INTERNET_OPTION_ENABLE_ZLIB_DEFLATE","features":[476]},{"name":"INTERNET_OPTION_ENCODE_EXTRA","features":[476]},{"name":"INTERNET_OPTION_ENCODE_FALLBACK_FOR_REDIRECT_URI","features":[476]},{"name":"INTERNET_OPTION_END_BROWSER_SESSION","features":[476]},{"name":"INTERNET_OPTION_ENTERPRISE_CONTEXT","features":[476]},{"name":"INTERNET_OPTION_ERROR_MASK","features":[476]},{"name":"INTERNET_OPTION_EXEMPT_CONNECTION_LIMIT","features":[476]},{"name":"INTERNET_OPTION_EXTENDED_CALLBACKS","features":[476]},{"name":"INTERNET_OPTION_EXTENDED_ERROR","features":[476]},{"name":"INTERNET_OPTION_FAIL_ON_CACHE_WRITE_ERROR","features":[476]},{"name":"INTERNET_OPTION_FALSE_START","features":[476]},{"name":"INTERNET_OPTION_FLUSH_STATE","features":[476]},{"name":"INTERNET_OPTION_FORCE_DECODE","features":[476]},{"name":"INTERNET_OPTION_FROM_CACHE_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_GLOBAL_CALLBACK","features":[476]},{"name":"INTERNET_OPTION_HANDLE_TYPE","features":[476]},{"name":"INTERNET_OPTION_HIBERNATE_INACTIVE_WORKER_THREADS","features":[476]},{"name":"INTERNET_OPTION_HSTS","features":[476]},{"name":"INTERNET_OPTION_HTTP_09","features":[476]},{"name":"INTERNET_OPTION_HTTP_DECODING","features":[476]},{"name":"INTERNET_OPTION_HTTP_PROTOCOL_USED","features":[476]},{"name":"INTERNET_OPTION_HTTP_VERSION","features":[476]},{"name":"INTERNET_OPTION_IDENTITY","features":[476]},{"name":"INTERNET_OPTION_IDLE_STATE","features":[476]},{"name":"INTERNET_OPTION_IDN","features":[476]},{"name":"INTERNET_OPTION_IGNORE_CERT_ERROR_FLAGS","features":[476]},{"name":"INTERNET_OPTION_IGNORE_OFFLINE","features":[476]},{"name":"INTERNET_OPTION_KEEP_CONNECTION","features":[476]},{"name":"INTERNET_OPTION_LINE_STATE","features":[476]},{"name":"INTERNET_OPTION_LISTEN_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER","features":[476]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_PROXY","features":[476]},{"name":"INTERNET_OPTION_MAX_CONNS_PER_SERVER","features":[476]},{"name":"INTERNET_OPTION_MAX_QUERY_BUFFER_SIZE","features":[476]},{"name":"INTERNET_OPTION_NET_SPEED","features":[476]},{"name":"INTERNET_OPTION_NOCACHE_WRITE_IN_PRIVATE","features":[476]},{"name":"INTERNET_OPTION_NOTIFY_SENDING_COOKIE","features":[476]},{"name":"INTERNET_OPTION_NO_HTTP_SERVER_AUTH","features":[476]},{"name":"INTERNET_OPTION_OFFLINE_MODE","features":[476]},{"name":"INTERNET_OPTION_OFFLINE_SEMANTICS","features":[476]},{"name":"INTERNET_OPTION_OFFLINE_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_OPT_IN_WEAK_SIGNATURE","features":[476]},{"name":"INTERNET_OPTION_ORIGINAL_CONNECT_FLAGS","features":[476]},{"name":"INTERNET_OPTION_PARENT_HANDLE","features":[476]},{"name":"INTERNET_OPTION_PARSE_LINE_FOLDING","features":[476]},{"name":"INTERNET_OPTION_PASSWORD","features":[476]},{"name":"INTERNET_OPTION_PER_CONNECTION_OPTION","features":[476]},{"name":"INTERNET_OPTION_POLICY","features":[476]},{"name":"INTERNET_OPTION_PRESERVE_REFERER_ON_HTTPS_TO_HTTP_REDIRECT","features":[476]},{"name":"INTERNET_OPTION_PRESERVE_REQUEST_SERVER_CREDENTIALS_ON_REDIRECT","features":[476]},{"name":"INTERNET_OPTION_PROXY","features":[476]},{"name":"INTERNET_OPTION_PROXY_AUTH_SCHEME","features":[476]},{"name":"INTERNET_OPTION_PROXY_CREDENTIALS","features":[476]},{"name":"INTERNET_OPTION_PROXY_FROM_REQUEST","features":[476]},{"name":"INTERNET_OPTION_PROXY_PASSWORD","features":[476]},{"name":"INTERNET_OPTION_PROXY_SETTINGS_CHANGED","features":[476]},{"name":"INTERNET_OPTION_PROXY_USERNAME","features":[476]},{"name":"INTERNET_OPTION_READ_BUFFER_SIZE","features":[476]},{"name":"INTERNET_OPTION_RECEIVE_THROUGHPUT","features":[476]},{"name":"INTERNET_OPTION_RECEIVE_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_REFERER_TOKEN_BINDING_HOSTNAME","features":[476]},{"name":"INTERNET_OPTION_REFRESH","features":[476]},{"name":"INTERNET_OPTION_REMOVE_IDENTITY","features":[476]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION","features":[476]},{"name":"INTERNET_OPTION_REQUEST_ANNOTATION_MAX_LENGTH","features":[476]},{"name":"INTERNET_OPTION_REQUEST_FLAGS","features":[476]},{"name":"INTERNET_OPTION_REQUEST_PRIORITY","features":[476]},{"name":"INTERNET_OPTION_REQUEST_TIMES","features":[476]},{"name":"INTERNET_OPTION_RESET","features":[476]},{"name":"INTERNET_OPTION_RESET_URLCACHE_SESSION","features":[476]},{"name":"INTERNET_OPTION_RESPONSE_RESUMABLE","features":[476]},{"name":"INTERNET_OPTION_RESTORE_WORKER_THREAD_DEFAULTS","features":[476]},{"name":"INTERNET_OPTION_SECONDARY_CACHE_KEY","features":[476]},{"name":"INTERNET_OPTION_SECURE_FAILURE","features":[476]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE","features":[476]},{"name":"INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT","features":[476]},{"name":"INTERNET_OPTION_SECURITY_CONNECTION_INFO","features":[476]},{"name":"INTERNET_OPTION_SECURITY_FLAGS","features":[476]},{"name":"INTERNET_OPTION_SECURITY_KEY_BITNESS","features":[476]},{"name":"INTERNET_OPTION_SECURITY_SELECT_CLIENT_CERT","features":[476]},{"name":"INTERNET_OPTION_SEND_THROUGHPUT","features":[476]},{"name":"INTERNET_OPTION_SEND_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY","features":[476]},{"name":"INTERNET_OPTION_SERVER_ADDRESS_INFO","features":[476]},{"name":"INTERNET_OPTION_SERVER_AUTH_SCHEME","features":[476]},{"name":"INTERNET_OPTION_SERVER_CERT_CHAIN_CONTEXT","features":[476]},{"name":"INTERNET_OPTION_SERVER_CREDENTIALS","features":[476]},{"name":"INTERNET_OPTION_SESSION_START_TIME","features":[476]},{"name":"INTERNET_OPTION_SETTINGS_CHANGED","features":[476]},{"name":"INTERNET_OPTION_SET_IN_PRIVATE","features":[476]},{"name":"INTERNET_OPTION_SOCKET_NODELAY","features":[476]},{"name":"INTERNET_OPTION_SOCKET_NOTIFICATION_IOCTL","features":[476]},{"name":"INTERNET_OPTION_SOCKET_SEND_BUFFER_LENGTH","features":[476]},{"name":"INTERNET_OPTION_SOURCE_PORT","features":[476]},{"name":"INTERNET_OPTION_SUPPRESS_BEHAVIOR","features":[476]},{"name":"INTERNET_OPTION_SUPPRESS_SERVER_AUTH","features":[476]},{"name":"INTERNET_OPTION_SYNC_MODE_AUTOMATIC_SESSION_DISABLED","features":[476]},{"name":"INTERNET_OPTION_TCP_FAST_OPEN","features":[476]},{"name":"INTERNET_OPTION_TIMED_CONNECTION_LIMIT_BYPASS","features":[476]},{"name":"INTERNET_OPTION_TOKEN_BINDING_PUBLIC_KEY","features":[476]},{"name":"INTERNET_OPTION_TUNNEL_ONLY","features":[476]},{"name":"INTERNET_OPTION_UNLOAD_NOTIFY_EVENT","features":[476]},{"name":"INTERNET_OPTION_UPGRADE_TO_WEB_SOCKET","features":[476]},{"name":"INTERNET_OPTION_URL","features":[476]},{"name":"INTERNET_OPTION_USERNAME","features":[476]},{"name":"INTERNET_OPTION_USER_AGENT","features":[476]},{"name":"INTERNET_OPTION_USER_PASS_SERVER_ONLY","features":[476]},{"name":"INTERNET_OPTION_USE_FIRST_AVAILABLE_CONNECTION","features":[476]},{"name":"INTERNET_OPTION_USE_MODIFIED_HEADER_FILTER","features":[476]},{"name":"INTERNET_OPTION_VERSION","features":[476]},{"name":"INTERNET_OPTION_WEB_SOCKET_CLOSE_TIMEOUT","features":[476]},{"name":"INTERNET_OPTION_WEB_SOCKET_KEEPALIVE_INTERVAL","features":[476]},{"name":"INTERNET_OPTION_WPAD_SLEEP","features":[476]},{"name":"INTERNET_OPTION_WRITE_BUFFER_SIZE","features":[476]},{"name":"INTERNET_OPTION_WWA_MODE","features":[476]},{"name":"INTERNET_PER_CONN","features":[476]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_TIME","features":[476]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_LAST_DETECT_URL","features":[476]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_RELOAD_DELAY_MINS","features":[476]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_SECONDARY_URL","features":[476]},{"name":"INTERNET_PER_CONN_AUTOCONFIG_URL","features":[476]},{"name":"INTERNET_PER_CONN_AUTODISCOVERY_FLAGS","features":[476]},{"name":"INTERNET_PER_CONN_FLAGS","features":[476]},{"name":"INTERNET_PER_CONN_FLAGS_UI","features":[476]},{"name":"INTERNET_PER_CONN_OPTIONA","features":[305,476]},{"name":"INTERNET_PER_CONN_OPTIONW","features":[305,476]},{"name":"INTERNET_PER_CONN_OPTION_LISTA","features":[305,476]},{"name":"INTERNET_PER_CONN_OPTION_LISTW","features":[305,476]},{"name":"INTERNET_PER_CONN_PROXY_BYPASS","features":[476]},{"name":"INTERNET_PER_CONN_PROXY_SERVER","features":[476]},{"name":"INTERNET_PREFETCH_ABORTED","features":[476]},{"name":"INTERNET_PREFETCH_COMPLETE","features":[476]},{"name":"INTERNET_PREFETCH_PROGRESS","features":[476]},{"name":"INTERNET_PREFETCH_STATUS","features":[476]},{"name":"INTERNET_PRIORITY_FOREGROUND","features":[476]},{"name":"INTERNET_PROXY_INFO","features":[476]},{"name":"INTERNET_RAS_INSTALLED","features":[476]},{"name":"INTERNET_REQFLAG_ASYNC","features":[476]},{"name":"INTERNET_REQFLAG_CACHE_WRITE_DISABLED","features":[476]},{"name":"INTERNET_REQFLAG_FROM_APP_CACHE","features":[476]},{"name":"INTERNET_REQFLAG_FROM_CACHE","features":[476]},{"name":"INTERNET_REQFLAG_NET_TIMEOUT","features":[476]},{"name":"INTERNET_REQFLAG_NO_HEADERS","features":[476]},{"name":"INTERNET_REQFLAG_PASSIVE","features":[476]},{"name":"INTERNET_REQFLAG_VIA_PROXY","features":[476]},{"name":"INTERNET_RFC1123_BUFSIZE","features":[476]},{"name":"INTERNET_RFC1123_FORMAT","features":[476]},{"name":"INTERNET_SCHEME","features":[476]},{"name":"INTERNET_SCHEME_DEFAULT","features":[476]},{"name":"INTERNET_SCHEME_FILE","features":[476]},{"name":"INTERNET_SCHEME_FIRST","features":[476]},{"name":"INTERNET_SCHEME_FTP","features":[476]},{"name":"INTERNET_SCHEME_GOPHER","features":[476]},{"name":"INTERNET_SCHEME_HTTP","features":[476]},{"name":"INTERNET_SCHEME_HTTPS","features":[476]},{"name":"INTERNET_SCHEME_JAVASCRIPT","features":[476]},{"name":"INTERNET_SCHEME_LAST","features":[476]},{"name":"INTERNET_SCHEME_MAILTO","features":[476]},{"name":"INTERNET_SCHEME_NEWS","features":[476]},{"name":"INTERNET_SCHEME_PARTIAL","features":[476]},{"name":"INTERNET_SCHEME_RES","features":[476]},{"name":"INTERNET_SCHEME_SOCKS","features":[476]},{"name":"INTERNET_SCHEME_UNKNOWN","features":[476]},{"name":"INTERNET_SCHEME_VBSCRIPT","features":[476]},{"name":"INTERNET_SECURITY_CONNECTION_INFO","features":[305,476,326,389]},{"name":"INTERNET_SECURITY_INFO","features":[305,476,326,389]},{"name":"INTERNET_SERVER_CONNECTION_STATE","features":[305,476]},{"name":"INTERNET_SERVICE_FTP","features":[476]},{"name":"INTERNET_SERVICE_GOPHER","features":[476]},{"name":"INTERNET_SERVICE_HTTP","features":[476]},{"name":"INTERNET_SERVICE_URL","features":[476]},{"name":"INTERNET_STATE","features":[476]},{"name":"INTERNET_STATE_BUSY","features":[476]},{"name":"INTERNET_STATE_CONNECTED","features":[476]},{"name":"INTERNET_STATE_DISCONNECTED","features":[476]},{"name":"INTERNET_STATE_DISCONNECTED_BY_USER","features":[476]},{"name":"INTERNET_STATE_IDLE","features":[476]},{"name":"INTERNET_STATUS_CLOSING_CONNECTION","features":[476]},{"name":"INTERNET_STATUS_CONNECTED_TO_SERVER","features":[476]},{"name":"INTERNET_STATUS_CONNECTING_TO_SERVER","features":[476]},{"name":"INTERNET_STATUS_CONNECTION_CLOSED","features":[476]},{"name":"INTERNET_STATUS_COOKIE","features":[476]},{"name":"INTERNET_STATUS_COOKIE_HISTORY","features":[476]},{"name":"INTERNET_STATUS_COOKIE_RECEIVED","features":[476]},{"name":"INTERNET_STATUS_COOKIE_SENT","features":[476]},{"name":"INTERNET_STATUS_CTL_RESPONSE_RECEIVED","features":[476]},{"name":"INTERNET_STATUS_DETECTING_PROXY","features":[476]},{"name":"INTERNET_STATUS_END_BROWSER_SESSION","features":[476]},{"name":"INTERNET_STATUS_FILTER_CLOSED","features":[476]},{"name":"INTERNET_STATUS_FILTER_CLOSING","features":[476]},{"name":"INTERNET_STATUS_FILTER_CONNECTED","features":[476]},{"name":"INTERNET_STATUS_FILTER_CONNECTING","features":[476]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CLOSING","features":[476]},{"name":"INTERNET_STATUS_FILTER_HANDLE_CREATED","features":[476]},{"name":"INTERNET_STATUS_FILTER_PREFETCH","features":[476]},{"name":"INTERNET_STATUS_FILTER_RECEIVED","features":[476]},{"name":"INTERNET_STATUS_FILTER_RECEIVING","features":[476]},{"name":"INTERNET_STATUS_FILTER_REDIRECT","features":[476]},{"name":"INTERNET_STATUS_FILTER_RESOLVED","features":[476]},{"name":"INTERNET_STATUS_FILTER_RESOLVING","features":[476]},{"name":"INTERNET_STATUS_FILTER_SENDING","features":[476]},{"name":"INTERNET_STATUS_FILTER_SENT","features":[476]},{"name":"INTERNET_STATUS_FILTER_STATE_CHANGE","features":[476]},{"name":"INTERNET_STATUS_HANDLE_CLOSING","features":[476]},{"name":"INTERNET_STATUS_HANDLE_CREATED","features":[476]},{"name":"INTERNET_STATUS_INTERMEDIATE_RESPONSE","features":[476]},{"name":"INTERNET_STATUS_NAME_RESOLVED","features":[476]},{"name":"INTERNET_STATUS_P3P_HEADER","features":[476]},{"name":"INTERNET_STATUS_P3P_POLICYREF","features":[476]},{"name":"INTERNET_STATUS_PREFETCH","features":[476]},{"name":"INTERNET_STATUS_PRIVACY_IMPACTED","features":[476]},{"name":"INTERNET_STATUS_PROXY_CREDENTIALS","features":[476]},{"name":"INTERNET_STATUS_RECEIVING_RESPONSE","features":[476]},{"name":"INTERNET_STATUS_REDIRECT","features":[476]},{"name":"INTERNET_STATUS_REQUEST_COMPLETE","features":[476]},{"name":"INTERNET_STATUS_REQUEST_HEADERS_SET","features":[476]},{"name":"INTERNET_STATUS_REQUEST_SENT","features":[476]},{"name":"INTERNET_STATUS_RESOLVING_NAME","features":[476]},{"name":"INTERNET_STATUS_RESPONSE_HEADERS_SET","features":[476]},{"name":"INTERNET_STATUS_RESPONSE_RECEIVED","features":[476]},{"name":"INTERNET_STATUS_SENDING_COOKIE","features":[476]},{"name":"INTERNET_STATUS_SENDING_REQUEST","features":[476]},{"name":"INTERNET_STATUS_SERVER_CONNECTION_STATE","features":[476]},{"name":"INTERNET_STATUS_SERVER_CREDENTIALS","features":[476]},{"name":"INTERNET_STATUS_STATE_CHANGE","features":[476]},{"name":"INTERNET_STATUS_USER_INPUT_REQUIRED","features":[476]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST","features":[476]},{"name":"INTERNET_SUPPRESS_COOKIE_PERSIST_RESET","features":[476]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY","features":[476]},{"name":"INTERNET_SUPPRESS_COOKIE_POLICY_RESET","features":[476]},{"name":"INTERNET_SUPPRESS_RESET_ALL","features":[476]},{"name":"INTERNET_VERSION_INFO","features":[476]},{"name":"IProofOfPossessionCookieInfoManager","features":[476]},{"name":"IProofOfPossessionCookieInfoManager2","features":[476]},{"name":"IRF_ASYNC","features":[476]},{"name":"IRF_NO_WAIT","features":[476]},{"name":"IRF_SYNC","features":[476]},{"name":"IRF_USE_CONTEXT","features":[476]},{"name":"ISO_FORCE_DISCONNECTED","features":[476]},{"name":"ISO_FORCE_OFFLINE","features":[476]},{"name":"ISO_GLOBAL","features":[476]},{"name":"ISO_REGISTRY","features":[476]},{"name":"ImportCookieFileA","features":[305,476]},{"name":"ImportCookieFileW","features":[305,476]},{"name":"IncomingCookieState","features":[476]},{"name":"IncrementUrlCacheHeaderData","features":[305,476]},{"name":"InternalInternetGetCookie","features":[476]},{"name":"InternetAlgIdToStringA","features":[305,476,389]},{"name":"InternetAlgIdToStringW","features":[305,476,389]},{"name":"InternetAttemptConnect","features":[476]},{"name":"InternetAutodial","features":[305,476]},{"name":"InternetAutodialHangup","features":[305,476]},{"name":"InternetCanonicalizeUrlA","features":[305,476]},{"name":"InternetCanonicalizeUrlW","features":[305,476]},{"name":"InternetCheckConnectionA","features":[305,476]},{"name":"InternetCheckConnectionW","features":[305,476]},{"name":"InternetClearAllPerSiteCookieDecisions","features":[305,476]},{"name":"InternetCloseHandle","features":[305,476]},{"name":"InternetCombineUrlA","features":[305,476]},{"name":"InternetCombineUrlW","features":[305,476]},{"name":"InternetConfirmZoneCrossing","features":[305,476]},{"name":"InternetConfirmZoneCrossingA","features":[305,476]},{"name":"InternetConfirmZoneCrossingW","features":[305,476]},{"name":"InternetConnectA","features":[476]},{"name":"InternetConnectW","features":[476]},{"name":"InternetConvertUrlFromWireToWideChar","features":[305,476]},{"name":"InternetCookieHistory","features":[305,476]},{"name":"InternetCookieState","features":[476]},{"name":"InternetCrackUrlA","features":[305,475,476]},{"name":"InternetCrackUrlW","features":[305,475,476]},{"name":"InternetCreateUrlA","features":[305,476]},{"name":"InternetCreateUrlW","features":[305,476]},{"name":"InternetDial","features":[305,476]},{"name":"InternetDialA","features":[305,476]},{"name":"InternetDialW","features":[305,476]},{"name":"InternetEnumPerSiteCookieDecisionA","features":[305,476]},{"name":"InternetEnumPerSiteCookieDecisionW","features":[305,476]},{"name":"InternetErrorDlg","features":[305,476]},{"name":"InternetFindNextFileA","features":[305,476]},{"name":"InternetFindNextFileW","features":[305,476]},{"name":"InternetFortezzaCommand","features":[305,476]},{"name":"InternetFreeCookies","features":[305,476]},{"name":"InternetFreeProxyInfoList","features":[305,476]},{"name":"InternetGetConnectedState","features":[305,476]},{"name":"InternetGetConnectedStateEx","features":[305,476]},{"name":"InternetGetConnectedStateExA","features":[305,476]},{"name":"InternetGetConnectedStateExW","features":[305,476]},{"name":"InternetGetCookieA","features":[305,476]},{"name":"InternetGetCookieEx2","features":[305,476]},{"name":"InternetGetCookieExA","features":[305,476]},{"name":"InternetGetCookieExW","features":[305,476]},{"name":"InternetGetCookieW","features":[305,476]},{"name":"InternetGetLastResponseInfoA","features":[305,476]},{"name":"InternetGetLastResponseInfoW","features":[305,476]},{"name":"InternetGetPerSiteCookieDecisionA","features":[305,476]},{"name":"InternetGetPerSiteCookieDecisionW","features":[305,476]},{"name":"InternetGetProxyForUrl","features":[305,476]},{"name":"InternetGetSecurityInfoByURL","features":[305,476,389]},{"name":"InternetGetSecurityInfoByURLA","features":[305,476,389]},{"name":"InternetGetSecurityInfoByURLW","features":[305,476,389]},{"name":"InternetGoOnline","features":[305,476]},{"name":"InternetGoOnlineA","features":[305,476]},{"name":"InternetGoOnlineW","features":[305,476]},{"name":"InternetHangUp","features":[476]},{"name":"InternetInitializeAutoProxyDll","features":[305,476]},{"name":"InternetLockRequestFile","features":[305,476]},{"name":"InternetOpenA","features":[476]},{"name":"InternetOpenUrlA","features":[476]},{"name":"InternetOpenUrlW","features":[476]},{"name":"InternetOpenW","features":[476]},{"name":"InternetQueryDataAvailable","features":[305,476]},{"name":"InternetQueryFortezzaStatus","features":[305,476]},{"name":"InternetQueryOptionA","features":[305,476]},{"name":"InternetQueryOptionW","features":[305,476]},{"name":"InternetReadFile","features":[305,476]},{"name":"InternetReadFileExA","features":[305,476]},{"name":"InternetReadFileExW","features":[305,476]},{"name":"InternetSecurityProtocolToStringA","features":[305,476]},{"name":"InternetSecurityProtocolToStringW","features":[305,476]},{"name":"InternetSetCookieA","features":[305,476]},{"name":"InternetSetCookieEx2","features":[305,476]},{"name":"InternetSetCookieExA","features":[476]},{"name":"InternetSetCookieExW","features":[476]},{"name":"InternetSetCookieW","features":[305,476]},{"name":"InternetSetDialState","features":[305,476]},{"name":"InternetSetDialStateA","features":[305,476]},{"name":"InternetSetDialStateW","features":[305,476]},{"name":"InternetSetFilePointer","features":[476]},{"name":"InternetSetOptionA","features":[305,476]},{"name":"InternetSetOptionExA","features":[305,476]},{"name":"InternetSetOptionExW","features":[305,476]},{"name":"InternetSetOptionW","features":[305,476]},{"name":"InternetSetPerSiteCookieDecisionA","features":[305,476]},{"name":"InternetSetPerSiteCookieDecisionW","features":[305,476]},{"name":"InternetSetStatusCallback","features":[476]},{"name":"InternetSetStatusCallbackA","features":[476]},{"name":"InternetSetStatusCallbackW","features":[476]},{"name":"InternetShowSecurityInfoByURL","features":[305,476]},{"name":"InternetShowSecurityInfoByURLA","features":[305,476]},{"name":"InternetShowSecurityInfoByURLW","features":[305,476]},{"name":"InternetTimeFromSystemTime","features":[305,476]},{"name":"InternetTimeFromSystemTimeA","features":[305,476]},{"name":"InternetTimeFromSystemTimeW","features":[305,476]},{"name":"InternetTimeToSystemTime","features":[305,476]},{"name":"InternetTimeToSystemTimeA","features":[305,476]},{"name":"InternetTimeToSystemTimeW","features":[305,476]},{"name":"InternetUnlockRequestFile","features":[305,476]},{"name":"InternetWriteFile","features":[305,476]},{"name":"InternetWriteFileExA","features":[305,476]},{"name":"InternetWriteFileExW","features":[305,476]},{"name":"IsDomainLegalCookieDomainA","features":[305,476]},{"name":"IsDomainLegalCookieDomainW","features":[305,476]},{"name":"IsHostInProxyBypassList","features":[305,476]},{"name":"IsProfilesEnabled","features":[305,476]},{"name":"IsUrlCacheEntryExpiredA","features":[305,476]},{"name":"IsUrlCacheEntryExpiredW","features":[305,476]},{"name":"LOCAL_NAMESPACE_PREFIX","features":[476]},{"name":"LOCAL_NAMESPACE_PREFIX_W","features":[476]},{"name":"LPINTERNET_STATUS_CALLBACK","features":[476]},{"name":"LoadUrlCacheContent","features":[305,476]},{"name":"MAX_CACHE_ENTRY_INFO_SIZE","features":[476]},{"name":"MAX_GOPHER_ATTRIBUTE_NAME","features":[476]},{"name":"MAX_GOPHER_CATEGORY_NAME","features":[476]},{"name":"MAX_GOPHER_DISPLAY_TEXT","features":[476]},{"name":"MAX_GOPHER_HOST_NAME","features":[476]},{"name":"MAX_GOPHER_SELECTOR_TEXT","features":[476]},{"name":"MIN_GOPHER_ATTRIBUTE_LENGTH","features":[476]},{"name":"MUST_REVALIDATE_CACHE_ENTRY","features":[476]},{"name":"MaxPrivacySettings","features":[476]},{"name":"NORMAL_CACHE_ENTRY","features":[476]},{"name":"NameResolutionEnd","features":[476]},{"name":"NameResolutionStart","features":[476]},{"name":"OTHER_USER_CACHE_ENTRY","features":[476]},{"name":"OutgoingCookieState","features":[476]},{"name":"PENDING_DELETE_CACHE_ENTRY","features":[476]},{"name":"PFN_AUTH_NOTIFY","features":[476]},{"name":"PFN_DIAL_HANDLER","features":[305,476]},{"name":"POLICY_EXTENSION_TYPE_NONE","features":[476]},{"name":"POLICY_EXTENSION_TYPE_WINHTTP","features":[476]},{"name":"POLICY_EXTENSION_TYPE_WININET","features":[476]},{"name":"POLICY_EXTENSION_VERSION1","features":[476]},{"name":"POST_CHECK_CACHE_ENTRY","features":[476]},{"name":"POST_RESPONSE_CACHE_ENTRY","features":[476]},{"name":"PRIVACY_IMPACTED_CACHE_ENTRY","features":[476]},{"name":"PRIVACY_MODE_CACHE_ENTRY","features":[476]},{"name":"PRIVACY_TEMPLATE_ADVANCED","features":[476]},{"name":"PRIVACY_TEMPLATE_CUSTOM","features":[476]},{"name":"PRIVACY_TEMPLATE_HIGH","features":[476]},{"name":"PRIVACY_TEMPLATE_LOW","features":[476]},{"name":"PRIVACY_TEMPLATE_MAX","features":[476]},{"name":"PRIVACY_TEMPLATE_MEDIUM","features":[476]},{"name":"PRIVACY_TEMPLATE_MEDIUM_HIGH","features":[476]},{"name":"PRIVACY_TEMPLATE_MEDIUM_LOW","features":[476]},{"name":"PRIVACY_TEMPLATE_NO_COOKIES","features":[476]},{"name":"PRIVACY_TYPE_FIRST_PARTY","features":[476]},{"name":"PRIVACY_TYPE_THIRD_PARTY","features":[476]},{"name":"PROXY_AUTO_DETECT_TYPE","features":[476]},{"name":"PROXY_AUTO_DETECT_TYPE_DHCP","features":[476]},{"name":"PROXY_AUTO_DETECT_TYPE_DNS_A","features":[476]},{"name":"PROXY_TYPE_AUTO_DETECT","features":[476]},{"name":"PROXY_TYPE_AUTO_PROXY_URL","features":[476]},{"name":"PROXY_TYPE_DIRECT","features":[476]},{"name":"PROXY_TYPE_PROXY","features":[476]},{"name":"ParseX509EncodedCertificateForListBoxEntry","features":[476]},{"name":"PerformOperationOverUrlCacheA","features":[305,476]},{"name":"PrivacyGetZonePreferenceW","features":[476]},{"name":"PrivacySetZonePreferenceW","features":[476]},{"name":"ProofOfPossessionCookieInfo","features":[476]},{"name":"ProofOfPossessionCookieInfoManager","features":[476]},{"name":"REDIRECT_CACHE_ENTRY","features":[476]},{"name":"REGSTR_DIAL_AUTOCONNECT","features":[476]},{"name":"REGSTR_LEASH_LEGACY_COOKIES","features":[476]},{"name":"REQUEST_TIMES","features":[476]},{"name":"ReadGuidsForConnectedNetworks","features":[305,476]},{"name":"ReadUrlCacheEntryStream","features":[305,476]},{"name":"ReadUrlCacheEntryStreamEx","features":[305,476]},{"name":"RegisterUrlCacheNotification","features":[305,476]},{"name":"ResumeSuspendedDownload","features":[305,476]},{"name":"RetrieveUrlCacheEntryFileA","features":[305,476]},{"name":"RetrieveUrlCacheEntryFileW","features":[305,476]},{"name":"RetrieveUrlCacheEntryStreamA","features":[305,476]},{"name":"RetrieveUrlCacheEntryStreamW","features":[305,476]},{"name":"RunOnceUrlCache","features":[305,476]},{"name":"SECURITY_FLAG_128BIT","features":[476]},{"name":"SECURITY_FLAG_40BIT","features":[476]},{"name":"SECURITY_FLAG_56BIT","features":[476]},{"name":"SECURITY_FLAG_FORTEZZA","features":[476]},{"name":"SECURITY_FLAG_IETFSSL4","features":[476]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTP","features":[476]},{"name":"SECURITY_FLAG_IGNORE_REDIRECT_TO_HTTPS","features":[476]},{"name":"SECURITY_FLAG_IGNORE_REVOCATION","features":[476]},{"name":"SECURITY_FLAG_IGNORE_WEAK_SIGNATURE","features":[476]},{"name":"SECURITY_FLAG_IGNORE_WRONG_USAGE","features":[476]},{"name":"SECURITY_FLAG_NORMALBITNESS","features":[476]},{"name":"SECURITY_FLAG_OPT_IN_WEAK_SIGNATURE","features":[476]},{"name":"SECURITY_FLAG_PCT","features":[476]},{"name":"SECURITY_FLAG_PCT4","features":[476]},{"name":"SECURITY_FLAG_SSL","features":[476]},{"name":"SECURITY_FLAG_SSL3","features":[476]},{"name":"SECURITY_FLAG_UNKNOWNBIT","features":[476]},{"name":"SHORTPATH_CACHE_ENTRY","features":[476]},{"name":"SPARSE_CACHE_ENTRY","features":[476]},{"name":"STATIC_CACHE_ENTRY","features":[476]},{"name":"STICKY_CACHE_ENTRY","features":[476]},{"name":"SetUrlCacheConfigInfoA","features":[305,476]},{"name":"SetUrlCacheConfigInfoW","features":[305,476]},{"name":"SetUrlCacheEntryGroup","features":[305,476]},{"name":"SetUrlCacheEntryGroupA","features":[305,476]},{"name":"SetUrlCacheEntryGroupW","features":[305,476]},{"name":"SetUrlCacheEntryInfoA","features":[305,476]},{"name":"SetUrlCacheEntryInfoW","features":[305,476]},{"name":"SetUrlCacheGroupAttributeA","features":[305,476]},{"name":"SetUrlCacheGroupAttributeW","features":[305,476]},{"name":"SetUrlCacheHeaderData","features":[305,476]},{"name":"ShowClientAuthCerts","features":[305,476]},{"name":"ShowSecurityInfo","features":[305,476,326,389]},{"name":"ShowX509EncodedCertificate","features":[305,476]},{"name":"TLSHandshakeEnd","features":[476]},{"name":"TLSHandshakeStart","features":[476]},{"name":"TRACK_OFFLINE_CACHE_ENTRY","features":[476]},{"name":"TRACK_ONLINE_CACHE_ENTRY","features":[476]},{"name":"URLCACHE_ENTRY_INFO","features":[305,476]},{"name":"URLHISTORY_CACHE_ENTRY","features":[476]},{"name":"URL_CACHE_LIMIT_TYPE","features":[476]},{"name":"URL_COMPONENTSA","features":[476]},{"name":"URL_COMPONENTSW","features":[476]},{"name":"UnlockUrlCacheEntryFile","features":[305,476]},{"name":"UnlockUrlCacheEntryFileA","features":[305,476]},{"name":"UnlockUrlCacheEntryFileW","features":[305,476]},{"name":"UnlockUrlCacheEntryStream","features":[305,476]},{"name":"UpdateUrlCacheContentPath","features":[305,476]},{"name":"UrlCacheCheckEntriesExist","features":[305,476]},{"name":"UrlCacheCloseEntryHandle","features":[476]},{"name":"UrlCacheContainerSetEntryMaximumAge","features":[476]},{"name":"UrlCacheCreateContainer","features":[476]},{"name":"UrlCacheFindFirstEntry","features":[305,476]},{"name":"UrlCacheFindNextEntry","features":[305,476]},{"name":"UrlCacheFreeEntryInfo","features":[305,476]},{"name":"UrlCacheFreeGlobalSpace","features":[476]},{"name":"UrlCacheGetContentPaths","features":[476]},{"name":"UrlCacheGetEntryInfo","features":[305,476]},{"name":"UrlCacheGetGlobalCacheSize","features":[476]},{"name":"UrlCacheGetGlobalLimit","features":[476]},{"name":"UrlCacheLimitTypeAppContainer","features":[476]},{"name":"UrlCacheLimitTypeAppContainerTotal","features":[476]},{"name":"UrlCacheLimitTypeIE","features":[476]},{"name":"UrlCacheLimitTypeIETotal","features":[476]},{"name":"UrlCacheLimitTypeNum","features":[476]},{"name":"UrlCacheReadEntryStream","features":[476]},{"name":"UrlCacheReloadSettings","features":[476]},{"name":"UrlCacheRetrieveEntryFile","features":[305,476]},{"name":"UrlCacheRetrieveEntryStream","features":[305,476]},{"name":"UrlCacheServer","features":[476]},{"name":"UrlCacheSetGlobalLimit","features":[476]},{"name":"UrlCacheUpdateEntryExtraData","features":[476]},{"name":"WININET_API_FLAG_ASYNC","features":[476]},{"name":"WININET_API_FLAG_SYNC","features":[476]},{"name":"WININET_API_FLAG_USE_CONTEXT","features":[476]},{"name":"WININET_PROXY_INFO","features":[305,476]},{"name":"WININET_PROXY_INFO_LIST","features":[305,476]},{"name":"WININET_SYNC_MODE","features":[476]},{"name":"WININET_SYNC_MODE_ALWAYS","features":[476]},{"name":"WININET_SYNC_MODE_AUTOMATIC","features":[476]},{"name":"WININET_SYNC_MODE_DEFAULT","features":[476]},{"name":"WININET_SYNC_MODE_NEVER","features":[476]},{"name":"WININET_SYNC_MODE_ONCE_PER_SESSION","features":[476]},{"name":"WININET_SYNC_MODE_ON_EXPIRY","features":[476]},{"name":"WPAD_CACHE_DELETE","features":[476]},{"name":"WPAD_CACHE_DELETE_ALL","features":[476]},{"name":"WPAD_CACHE_DELETE_CURRENT","features":[476]},{"name":"XDR_CACHE_ENTRY","features":[476]},{"name":"pfnInternetDeInitializeAutoProxyDll","features":[305,476]},{"name":"pfnInternetGetProxyInfo","features":[305,476]},{"name":"pfnInternetInitializeAutoProxyDll","features":[305,476]}],"479":[{"name":"AAL5_MODE_MESSAGE","features":[318]},{"name":"AAL5_MODE_STREAMING","features":[318]},{"name":"AAL5_PARAMETERS","features":[318]},{"name":"AAL5_SSCS_FRAME_RELAY","features":[318]},{"name":"AAL5_SSCS_NULL","features":[318]},{"name":"AAL5_SSCS_SSCOP_ASSURED","features":[318]},{"name":"AAL5_SSCS_SSCOP_NON_ASSURED","features":[318]},{"name":"AALTYPE_5","features":[318]},{"name":"AALTYPE_USER","features":[318]},{"name":"AALUSER_PARAMETERS","features":[318]},{"name":"AAL_PARAMETERS_IE","features":[318]},{"name":"AAL_TYPE","features":[318]},{"name":"ADDRESS_FAMILY","features":[318]},{"name":"ADDRINFOA","features":[318]},{"name":"ADDRINFOEX2A","features":[318]},{"name":"ADDRINFOEX2W","features":[318]},{"name":"ADDRINFOEX3","features":[318]},{"name":"ADDRINFOEX4","features":[305,318]},{"name":"ADDRINFOEX5","features":[305,318]},{"name":"ADDRINFOEX6","features":[305,318]},{"name":"ADDRINFOEXA","features":[318]},{"name":"ADDRINFOEXW","features":[318]},{"name":"ADDRINFOEX_VERSION_2","features":[318]},{"name":"ADDRINFOEX_VERSION_3","features":[318]},{"name":"ADDRINFOEX_VERSION_4","features":[318]},{"name":"ADDRINFOEX_VERSION_5","features":[318]},{"name":"ADDRINFOEX_VERSION_6","features":[318]},{"name":"ADDRINFOW","features":[318]},{"name":"ADDRINFO_DNS_SERVER","features":[318]},{"name":"ADDR_ANY","features":[318]},{"name":"AFPROTOCOLS","features":[318]},{"name":"AF_12844","features":[318]},{"name":"AF_APPLETALK","features":[318]},{"name":"AF_ATM","features":[318]},{"name":"AF_BAN","features":[318]},{"name":"AF_CCITT","features":[318]},{"name":"AF_CHAOS","features":[318]},{"name":"AF_CLUSTER","features":[318]},{"name":"AF_DATAKIT","features":[318]},{"name":"AF_DECnet","features":[318]},{"name":"AF_DLI","features":[318]},{"name":"AF_ECMA","features":[318]},{"name":"AF_FIREFOX","features":[318]},{"name":"AF_HYLINK","features":[318]},{"name":"AF_HYPERV","features":[318]},{"name":"AF_ICLFXBM","features":[318]},{"name":"AF_IMPLINK","features":[318]},{"name":"AF_INET","features":[318]},{"name":"AF_INET6","features":[318]},{"name":"AF_IPX","features":[318]},{"name":"AF_IRDA","features":[318]},{"name":"AF_ISO","features":[318]},{"name":"AF_LAT","features":[318]},{"name":"AF_LINK","features":[318]},{"name":"AF_MAX","features":[318]},{"name":"AF_NETBIOS","features":[318]},{"name":"AF_NETDES","features":[318]},{"name":"AF_NS","features":[318]},{"name":"AF_OSI","features":[318]},{"name":"AF_PUP","features":[318]},{"name":"AF_SNA","features":[318]},{"name":"AF_TCNMESSAGE","features":[318]},{"name":"AF_TCNPROCESS","features":[318]},{"name":"AF_UNIX","features":[318]},{"name":"AF_UNKNOWN1","features":[318]},{"name":"AF_UNSPEC","features":[318]},{"name":"AF_VOICEVIEW","features":[318]},{"name":"AI_ADDRCONFIG","features":[318]},{"name":"AI_ALL","features":[318]},{"name":"AI_BYPASS_DNS_CACHE","features":[318]},{"name":"AI_CANONNAME","features":[318]},{"name":"AI_DISABLE_IDN_ENCODING","features":[318]},{"name":"AI_DNS_ONLY","features":[318]},{"name":"AI_DNS_RESPONSE_HOSTFILE","features":[318]},{"name":"AI_DNS_RESPONSE_SECURE","features":[318]},{"name":"AI_DNS_SERVER_TYPE_DOH","features":[318]},{"name":"AI_DNS_SERVER_TYPE_UDP","features":[318]},{"name":"AI_DNS_SERVER_UDP_FALLBACK","features":[318]},{"name":"AI_EXCLUSIVE_CUSTOM_SERVERS","features":[318]},{"name":"AI_EXTENDED","features":[318]},{"name":"AI_FILESERVER","features":[318]},{"name":"AI_FORCE_CLEAR_TEXT","features":[318]},{"name":"AI_FQDN","features":[318]},{"name":"AI_NON_AUTHORITATIVE","features":[318]},{"name":"AI_NUMERICHOST","features":[318]},{"name":"AI_NUMERICSERV","features":[318]},{"name":"AI_PASSIVE","features":[318]},{"name":"AI_REQUIRE_SECURE","features":[318]},{"name":"AI_RESOLUTION_HANDLE","features":[318]},{"name":"AI_RETURN_PREFERRED_NAMES","features":[318]},{"name":"AI_RETURN_RESPONSE_FLAGS","features":[318]},{"name":"AI_RETURN_TTL","features":[318]},{"name":"AI_SECURE","features":[318]},{"name":"AI_SECURE_WITH_FALLBACK","features":[318]},{"name":"AI_V4MAPPED","features":[318]},{"name":"ARP_HARDWARE_TYPE","features":[318]},{"name":"ARP_HEADER","features":[318]},{"name":"ARP_HW_802","features":[318]},{"name":"ARP_HW_ENET","features":[318]},{"name":"ARP_OPCODE","features":[318]},{"name":"ARP_REQUEST","features":[318]},{"name":"ARP_RESPONSE","features":[318]},{"name":"ASSOCIATE_NAMERES_CONTEXT","features":[318]},{"name":"ASSOCIATE_NAMERES_CONTEXT_INPUT","features":[318]},{"name":"ATMPROTO_AAL1","features":[318]},{"name":"ATMPROTO_AAL2","features":[318]},{"name":"ATMPROTO_AAL34","features":[318]},{"name":"ATMPROTO_AAL5","features":[318]},{"name":"ATMPROTO_AALUSER","features":[318]},{"name":"ATM_ADDRESS","features":[318]},{"name":"ATM_ADDR_SIZE","features":[318]},{"name":"ATM_AESA","features":[318]},{"name":"ATM_BHLI","features":[318]},{"name":"ATM_BLLI","features":[318]},{"name":"ATM_BLLI_IE","features":[318]},{"name":"ATM_BROADBAND_BEARER_CAPABILITY_IE","features":[318]},{"name":"ATM_CALLING_PARTY_NUMBER_IE","features":[318]},{"name":"ATM_CAUSE_IE","features":[318]},{"name":"ATM_CONNECTION_ID","features":[318]},{"name":"ATM_E164","features":[318]},{"name":"ATM_NSAP","features":[318]},{"name":"ATM_PVC_PARAMS","features":[318]},{"name":"ATM_QOS_CLASS_IE","features":[318]},{"name":"ATM_TD","features":[305,318]},{"name":"ATM_TRAFFIC_DESCRIPTOR_IE","features":[305,318]},{"name":"ATM_TRANSIT_NETWORK_SELECTION_IE","features":[318]},{"name":"AcceptEx","features":[305,318,310]},{"name":"BASE_PROTOCOL","features":[318]},{"name":"BCOB_A","features":[318]},{"name":"BCOB_C","features":[318]},{"name":"BCOB_X","features":[318]},{"name":"BHLI_HighLayerProfile","features":[318]},{"name":"BHLI_ISO","features":[318]},{"name":"BHLI_UserSpecific","features":[318]},{"name":"BHLI_VendorSpecificAppId","features":[318]},{"name":"BIGENDIAN","features":[318]},{"name":"BITS_PER_BYTE","features":[318]},{"name":"BLLI_L2_ELAPB","features":[318]},{"name":"BLLI_L2_HDLC_ABM","features":[318]},{"name":"BLLI_L2_HDLC_ARM","features":[318]},{"name":"BLLI_L2_HDLC_NRM","features":[318]},{"name":"BLLI_L2_ISO_1745","features":[318]},{"name":"BLLI_L2_ISO_7776","features":[318]},{"name":"BLLI_L2_LLC","features":[318]},{"name":"BLLI_L2_MODE_EXT","features":[318]},{"name":"BLLI_L2_MODE_NORMAL","features":[318]},{"name":"BLLI_L2_Q921","features":[318]},{"name":"BLLI_L2_Q922","features":[318]},{"name":"BLLI_L2_USER_SPECIFIED","features":[318]},{"name":"BLLI_L2_X25L","features":[318]},{"name":"BLLI_L2_X25M","features":[318]},{"name":"BLLI_L2_X75","features":[318]},{"name":"BLLI_L3_IPI_IP","features":[318]},{"name":"BLLI_L3_IPI_SNAP","features":[318]},{"name":"BLLI_L3_ISO_8208","features":[318]},{"name":"BLLI_L3_ISO_TR9577","features":[318]},{"name":"BLLI_L3_MODE_EXT","features":[318]},{"name":"BLLI_L3_MODE_NORMAL","features":[318]},{"name":"BLLI_L3_PACKET_1024","features":[318]},{"name":"BLLI_L3_PACKET_128","features":[318]},{"name":"BLLI_L3_PACKET_16","features":[318]},{"name":"BLLI_L3_PACKET_2048","features":[318]},{"name":"BLLI_L3_PACKET_256","features":[318]},{"name":"BLLI_L3_PACKET_32","features":[318]},{"name":"BLLI_L3_PACKET_4096","features":[318]},{"name":"BLLI_L3_PACKET_512","features":[318]},{"name":"BLLI_L3_PACKET_64","features":[318]},{"name":"BLLI_L3_SIO_8473","features":[318]},{"name":"BLLI_L3_T70","features":[318]},{"name":"BLLI_L3_USER_SPECIFIED","features":[318]},{"name":"BLLI_L3_X223","features":[318]},{"name":"BLLI_L3_X25","features":[318]},{"name":"BYTE_ORDER","features":[318]},{"name":"CAUSE_AAL_PARAMETERS_UNSUPPORTED","features":[318]},{"name":"CAUSE_ACCESS_INFORMAION_DISCARDED","features":[318]},{"name":"CAUSE_BEARER_CAPABILITY_UNAUTHORIZED","features":[318]},{"name":"CAUSE_BEARER_CAPABILITY_UNAVAILABLE","features":[318]},{"name":"CAUSE_BEARER_CAPABILITY_UNIMPLEMENTED","features":[318]},{"name":"CAUSE_CALL_REJECTED","features":[318]},{"name":"CAUSE_CHANNEL_NONEXISTENT","features":[318]},{"name":"CAUSE_COND_PERMANENT","features":[318]},{"name":"CAUSE_COND_TRANSIENT","features":[318]},{"name":"CAUSE_COND_UNKNOWN","features":[318]},{"name":"CAUSE_DESTINATION_OUT_OF_ORDER","features":[318]},{"name":"CAUSE_INCOMPATIBLE_DESTINATION","features":[318]},{"name":"CAUSE_INCORRECT_MESSAGE_LENGTH","features":[318]},{"name":"CAUSE_INVALID_CALL_REFERENCE","features":[318]},{"name":"CAUSE_INVALID_ENDPOINT_REFERENCE","features":[318]},{"name":"CAUSE_INVALID_IE_CONTENTS","features":[318]},{"name":"CAUSE_INVALID_NUMBER_FORMAT","features":[318]},{"name":"CAUSE_INVALID_STATE_FOR_MESSAGE","features":[318]},{"name":"CAUSE_INVALID_TRANSIT_NETWORK_SELECTION","features":[318]},{"name":"CAUSE_LOC_BEYOND_INTERWORKING","features":[318]},{"name":"CAUSE_LOC_INTERNATIONAL_NETWORK","features":[318]},{"name":"CAUSE_LOC_PRIVATE_LOCAL","features":[318]},{"name":"CAUSE_LOC_PRIVATE_REMOTE","features":[318]},{"name":"CAUSE_LOC_PUBLIC_LOCAL","features":[318]},{"name":"CAUSE_LOC_PUBLIC_REMOTE","features":[318]},{"name":"CAUSE_LOC_TRANSIT_NETWORK","features":[318]},{"name":"CAUSE_LOC_USER","features":[318]},{"name":"CAUSE_MANDATORY_IE_MISSING","features":[318]},{"name":"CAUSE_NA_ABNORMAL","features":[318]},{"name":"CAUSE_NA_NORMAL","features":[318]},{"name":"CAUSE_NETWORK_OUT_OF_ORDER","features":[318]},{"name":"CAUSE_NORMAL_CALL_CLEARING","features":[318]},{"name":"CAUSE_NORMAL_UNSPECIFIED","features":[318]},{"name":"CAUSE_NO_ROUTE_TO_DESTINATION","features":[318]},{"name":"CAUSE_NO_ROUTE_TO_TRANSIT_NETWORK","features":[318]},{"name":"CAUSE_NO_USER_RESPONDING","features":[318]},{"name":"CAUSE_NO_VPI_VCI_AVAILABLE","features":[318]},{"name":"CAUSE_NUMBER_CHANGED","features":[318]},{"name":"CAUSE_OPTION_UNAVAILABLE","features":[318]},{"name":"CAUSE_PROTOCOL_ERROR","features":[318]},{"name":"CAUSE_PU_PROVIDER","features":[318]},{"name":"CAUSE_PU_USER","features":[318]},{"name":"CAUSE_QOS_UNAVAILABLE","features":[318]},{"name":"CAUSE_REASON_IE_INSUFFICIENT","features":[318]},{"name":"CAUSE_REASON_IE_MISSING","features":[318]},{"name":"CAUSE_REASON_USER","features":[318]},{"name":"CAUSE_RECOVERY_ON_TIMEOUT","features":[318]},{"name":"CAUSE_RESOURCE_UNAVAILABLE","features":[318]},{"name":"CAUSE_STATUS_ENQUIRY_RESPONSE","features":[318]},{"name":"CAUSE_TEMPORARY_FAILURE","features":[318]},{"name":"CAUSE_TOO_MANY_PENDING_ADD_PARTY","features":[318]},{"name":"CAUSE_UNALLOCATED_NUMBER","features":[318]},{"name":"CAUSE_UNIMPLEMENTED_IE","features":[318]},{"name":"CAUSE_UNIMPLEMENTED_MESSAGE_TYPE","features":[318]},{"name":"CAUSE_UNSUPPORTED_TRAFFIC_PARAMETERS","features":[318]},{"name":"CAUSE_USER_BUSY","features":[318]},{"name":"CAUSE_USER_CELL_RATE_UNAVAILABLE","features":[318]},{"name":"CAUSE_USER_REJECTS_CLIR","features":[318]},{"name":"CAUSE_VPI_VCI_UNACCEPTABLE","features":[318]},{"name":"CAUSE_VPI_VCI_UNAVAILABLE","features":[318]},{"name":"CF_ACCEPT","features":[318]},{"name":"CF_DEFER","features":[318]},{"name":"CF_REJECT","features":[318]},{"name":"CLIP_NOT","features":[318]},{"name":"CLIP_SUS","features":[318]},{"name":"CMSGHDR","features":[318]},{"name":"COMP_EQUAL","features":[318]},{"name":"COMP_NOTLESS","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_HARDWARE_SLOT_ALLOCATED","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_INVALID","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_POLICY_ERROR","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SERVICE_UNAVAILABLE","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SOFTWARE_SLOT_ALLOCATED","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_SYSTEM_ERROR","features":[318]},{"name":"CONTROL_CHANNEL_TRIGGER_STATUS_TRANSPORT_DISCONNECTED","features":[318]},{"name":"CSADDR_INFO","features":[318]},{"name":"DE_REUSE_SOCKET","features":[318]},{"name":"DL_ADDRESS_LENGTH_MAXIMUM","features":[318]},{"name":"DL_EI48","features":[318]},{"name":"DL_EI64","features":[318]},{"name":"DL_EUI48","features":[318]},{"name":"DL_EUI64","features":[318]},{"name":"DL_HEADER_LENGTH_MAXIMUM","features":[318]},{"name":"DL_OUI","features":[318]},{"name":"DL_TEREDO_ADDRESS","features":[318]},{"name":"DL_TEREDO_ADDRESS_PRV","features":[318]},{"name":"DL_TUNNEL_ADDRESS","features":[318,311]},{"name":"ETHERNET_HEADER","features":[318]},{"name":"ETHERNET_TYPE_802_1AD","features":[318]},{"name":"ETHERNET_TYPE_802_1Q","features":[318]},{"name":"ETHERNET_TYPE_ARP","features":[318]},{"name":"ETHERNET_TYPE_IPV4","features":[318]},{"name":"ETHERNET_TYPE_IPV6","features":[318]},{"name":"ETHERNET_TYPE_MINIMUM","features":[318]},{"name":"ETH_LENGTH_OF_HEADER","features":[318]},{"name":"ETH_LENGTH_OF_SNAP_HEADER","features":[318]},{"name":"ETH_LENGTH_OF_VLAN_HEADER","features":[318]},{"name":"EXT_LEN_UNIT","features":[318]},{"name":"E_WINDOW_ADVANCE_BY_TIME","features":[318]},{"name":"E_WINDOW_USE_AS_DATA_CACHE","features":[318]},{"name":"EnumProtocolsA","features":[318]},{"name":"EnumProtocolsW","features":[318]},{"name":"FALLBACK_INDEX","features":[318]},{"name":"FD_ACCEPT","features":[318]},{"name":"FD_ACCEPT_BIT","features":[318]},{"name":"FD_ADDRESS_LIST_CHANGE_BIT","features":[318]},{"name":"FD_CLOSE","features":[318]},{"name":"FD_CLOSE_BIT","features":[318]},{"name":"FD_CONNECT","features":[318]},{"name":"FD_CONNECT_BIT","features":[318]},{"name":"FD_GROUP_QOS_BIT","features":[318]},{"name":"FD_MAX_EVENTS","features":[318]},{"name":"FD_OOB","features":[318]},{"name":"FD_OOB_BIT","features":[318]},{"name":"FD_QOS_BIT","features":[318]},{"name":"FD_READ","features":[318]},{"name":"FD_READ_BIT","features":[318]},{"name":"FD_ROUTING_INTERFACE_CHANGE_BIT","features":[318]},{"name":"FD_SET","features":[318]},{"name":"FD_SETSIZE","features":[318]},{"name":"FD_WRITE","features":[318]},{"name":"FD_WRITE_BIT","features":[318]},{"name":"FIOASYNC","features":[318]},{"name":"FIONBIO","features":[318]},{"name":"FIONREAD","features":[318]},{"name":"FLOWSPEC","features":[318]},{"name":"FROM_PROTOCOL_INFO","features":[318]},{"name":"FallbackIndexMax","features":[318]},{"name":"FallbackIndexTcpFastopen","features":[318]},{"name":"FreeAddrInfoEx","features":[318]},{"name":"FreeAddrInfoExW","features":[318]},{"name":"FreeAddrInfoW","features":[318]},{"name":"GAI_STRERROR_BUFFER_SIZE","features":[318]},{"name":"GROUP_FILTER","features":[318]},{"name":"GROUP_REQ","features":[318]},{"name":"GROUP_SOURCE_REQ","features":[318]},{"name":"GetAcceptExSockaddrs","features":[318]},{"name":"GetAddrInfoExA","features":[305,318,310]},{"name":"GetAddrInfoExCancel","features":[305,318]},{"name":"GetAddrInfoExOverlappedResult","features":[305,318,310]},{"name":"GetAddrInfoExW","features":[305,318,310]},{"name":"GetAddrInfoW","features":[318]},{"name":"GetAddressByNameA","features":[305,318]},{"name":"GetAddressByNameW","features":[305,318]},{"name":"GetHostNameW","features":[318]},{"name":"GetNameByTypeA","features":[318]},{"name":"GetNameByTypeW","features":[318]},{"name":"GetNameInfoW","features":[318]},{"name":"GetServiceA","features":[305,318]},{"name":"GetServiceW","features":[305,318]},{"name":"GetTypeByNameA","features":[318]},{"name":"GetTypeByNameW","features":[318]},{"name":"HOSTENT","features":[318]},{"name":"IAS_ATTRIB_INT","features":[318]},{"name":"IAS_ATTRIB_NO_ATTRIB","features":[318]},{"name":"IAS_ATTRIB_NO_CLASS","features":[318]},{"name":"IAS_ATTRIB_OCTETSEQ","features":[318]},{"name":"IAS_ATTRIB_STR","features":[318]},{"name":"IAS_MAX_ATTRIBNAME","features":[318]},{"name":"IAS_MAX_CLASSNAME","features":[318]},{"name":"IAS_MAX_OCTET_STRING","features":[318]},{"name":"IAS_MAX_USER_STRING","features":[318]},{"name":"ICMP4_TIME_EXCEED_CODE","features":[318]},{"name":"ICMP4_TIME_EXCEED_REASSEMBLY","features":[318]},{"name":"ICMP4_TIME_EXCEED_TRANSIT","features":[318]},{"name":"ICMP4_UNREACH_ADMIN","features":[318]},{"name":"ICMP4_UNREACH_CODE","features":[318]},{"name":"ICMP4_UNREACH_FRAG_NEEDED","features":[318]},{"name":"ICMP4_UNREACH_HOST","features":[318]},{"name":"ICMP4_UNREACH_HOST_ADMIN","features":[318]},{"name":"ICMP4_UNREACH_HOST_TOS","features":[318]},{"name":"ICMP4_UNREACH_HOST_UNKNOWN","features":[318]},{"name":"ICMP4_UNREACH_ISOLATED","features":[318]},{"name":"ICMP4_UNREACH_NET","features":[318]},{"name":"ICMP4_UNREACH_NET_ADMIN","features":[318]},{"name":"ICMP4_UNREACH_NET_TOS","features":[318]},{"name":"ICMP4_UNREACH_NET_UNKNOWN","features":[318]},{"name":"ICMP4_UNREACH_PORT","features":[318]},{"name":"ICMP4_UNREACH_PROTOCOL","features":[318]},{"name":"ICMP4_UNREACH_SOURCEROUTE_FAILED","features":[318]},{"name":"ICMP6_DST_UNREACH_ADDR","features":[318]},{"name":"ICMP6_DST_UNREACH_ADMIN","features":[318]},{"name":"ICMP6_DST_UNREACH_BEYONDSCOPE","features":[318]},{"name":"ICMP6_DST_UNREACH_NOPORT","features":[318]},{"name":"ICMP6_DST_UNREACH_NOROUTE","features":[318]},{"name":"ICMP6_PARAMPROB_FIRSTFRAGMENT","features":[318]},{"name":"ICMP6_PARAMPROB_HEADER","features":[318]},{"name":"ICMP6_PARAMPROB_NEXTHEADER","features":[318]},{"name":"ICMP6_PARAMPROB_OPTION","features":[318]},{"name":"ICMP6_TIME_EXCEED_REASSEMBLY","features":[318]},{"name":"ICMP6_TIME_EXCEED_TRANSIT","features":[318]},{"name":"ICMPV4_ADDRESS_MASK_MESSAGE","features":[318]},{"name":"ICMPV4_INVALID_PREFERENCE_LEVEL","features":[318]},{"name":"ICMPV4_ROUTER_ADVERT_ENTRY","features":[318]},{"name":"ICMPV4_ROUTER_ADVERT_HEADER","features":[318]},{"name":"ICMPV4_ROUTER_SOLICIT","features":[318]},{"name":"ICMPV4_TIMESTAMP_MESSAGE","features":[318]},{"name":"ICMPV6_ECHO_REQUEST_FLAG_REVERSE","features":[318]},{"name":"ICMP_ERROR_INFO","features":[318]},{"name":"ICMP_HEADER","features":[318]},{"name":"ICMP_MESSAGE","features":[318]},{"name":"IE_AALParameters","features":[318]},{"name":"IE_BHLI","features":[318]},{"name":"IE_BLLI","features":[318]},{"name":"IE_BroadbandBearerCapability","features":[318]},{"name":"IE_CalledPartyNumber","features":[318]},{"name":"IE_CalledPartySubaddress","features":[318]},{"name":"IE_CallingPartyNumber","features":[318]},{"name":"IE_CallingPartySubaddress","features":[318]},{"name":"IE_Cause","features":[318]},{"name":"IE_QOSClass","features":[318]},{"name":"IE_TrafficDescriptor","features":[318]},{"name":"IE_TransitNetworkSelection","features":[318]},{"name":"IFF_BROADCAST","features":[318]},{"name":"IFF_LOOPBACK","features":[318]},{"name":"IFF_MULTICAST","features":[318]},{"name":"IFF_POINTTOPOINT","features":[318]},{"name":"IFF_UP","features":[318]},{"name":"IGMPV3_QUERY_HEADER","features":[318]},{"name":"IGMPV3_REPORT_HEADER","features":[318]},{"name":"IGMPV3_REPORT_RECORD_HEADER","features":[318]},{"name":"IGMP_HEADER","features":[318]},{"name":"IGMP_LEAVE_GROUP_TYPE","features":[318]},{"name":"IGMP_MAX_RESP_CODE_TYPE","features":[318]},{"name":"IGMP_MAX_RESP_CODE_TYPE_FLOAT","features":[318]},{"name":"IGMP_MAX_RESP_CODE_TYPE_NORMAL","features":[318]},{"name":"IGMP_QUERY_TYPE","features":[318]},{"name":"IGMP_VERSION1_REPORT_TYPE","features":[318]},{"name":"IGMP_VERSION2_REPORT_TYPE","features":[318]},{"name":"IGMP_VERSION3_REPORT_TYPE","features":[318]},{"name":"IMPLINK_HIGHEXPER","features":[318]},{"name":"IMPLINK_IP","features":[318]},{"name":"IMPLINK_LOWEXPER","features":[318]},{"name":"IN4ADDR_ANY","features":[318]},{"name":"IN4ADDR_BROADCAST","features":[318]},{"name":"IN4ADDR_LINKLOCALPREFIX_LENGTH","features":[318]},{"name":"IN4ADDR_LOOPBACK","features":[318]},{"name":"IN4ADDR_LOOPBACKPREFIX_LENGTH","features":[318]},{"name":"IN4ADDR_MULTICASTPREFIX_LENGTH","features":[318]},{"name":"IN6ADDR_6TO4PREFIX_LENGTH","features":[318]},{"name":"IN6ADDR_LINKLOCALPREFIX_LENGTH","features":[318]},{"name":"IN6ADDR_MULTICASTPREFIX_LENGTH","features":[318]},{"name":"IN6ADDR_SOLICITEDNODEMULTICASTPREFIX_LENGTH","features":[318]},{"name":"IN6ADDR_TEREDOPREFIX_LENGTH","features":[318]},{"name":"IN6ADDR_V4MAPPEDPREFIX_LENGTH","features":[318]},{"name":"IN6_ADDR","features":[318]},{"name":"IN6_EMBEDDEDV4_BITS_IN_BYTE","features":[318]},{"name":"IN6_EMBEDDEDV4_UOCTET_POSITION","features":[318]},{"name":"IN6_PKTINFO","features":[318]},{"name":"IN6_PKTINFO_EX","features":[318]},{"name":"INADDR_ANY","features":[318]},{"name":"INADDR_BROADCAST","features":[318]},{"name":"INADDR_LOOPBACK","features":[318]},{"name":"INADDR_NONE","features":[318]},{"name":"INCL_WINSOCK_API_PROTOTYPES","features":[318]},{"name":"INCL_WINSOCK_API_TYPEDEFS","features":[318]},{"name":"INET6_ADDRSTRLEN","features":[318]},{"name":"INET_ADDRSTRLEN","features":[318]},{"name":"INET_PORT_RANGE","features":[318]},{"name":"INET_PORT_RESERVATION_INFORMATION","features":[318]},{"name":"INET_PORT_RESERVATION_INSTANCE","features":[318]},{"name":"INET_PORT_RESERVATION_TOKEN","features":[318]},{"name":"INTERFACE_INFO","features":[318]},{"name":"INTERFACE_INFO_EX","features":[318]},{"name":"INVALID_SOCKET","features":[318]},{"name":"IN_ADDR","features":[318]},{"name":"IN_CLASSA_HOST","features":[318]},{"name":"IN_CLASSA_MAX","features":[318]},{"name":"IN_CLASSA_NET","features":[318]},{"name":"IN_CLASSA_NSHIFT","features":[318]},{"name":"IN_CLASSB_HOST","features":[318]},{"name":"IN_CLASSB_MAX","features":[318]},{"name":"IN_CLASSB_NET","features":[318]},{"name":"IN_CLASSB_NSHIFT","features":[318]},{"name":"IN_CLASSC_HOST","features":[318]},{"name":"IN_CLASSC_NET","features":[318]},{"name":"IN_CLASSC_NSHIFT","features":[318]},{"name":"IN_CLASSD_HOST","features":[318]},{"name":"IN_CLASSD_NET","features":[318]},{"name":"IN_CLASSD_NSHIFT","features":[318]},{"name":"IN_PKTINFO","features":[318]},{"name":"IN_PKTINFO_EX","features":[318]},{"name":"IN_RECVERR","features":[318]},{"name":"IOCPARM_MASK","features":[318]},{"name":"IOC_IN","features":[318]},{"name":"IOC_INOUT","features":[318]},{"name":"IOC_OUT","features":[318]},{"name":"IOC_PROTOCOL","features":[318]},{"name":"IOC_UNIX","features":[318]},{"name":"IOC_VENDOR","features":[318]},{"name":"IOC_VOID","features":[318]},{"name":"IOC_WS2","features":[318]},{"name":"IP4_OFF_MASK","features":[318]},{"name":"IP6F_MORE_FRAG","features":[318]},{"name":"IP6F_OFF_MASK","features":[318]},{"name":"IP6F_RESERVED_MASK","features":[318]},{"name":"IP6OPT_JUMBO","features":[318]},{"name":"IP6OPT_MUTABLE","features":[318]},{"name":"IP6OPT_NSAP_ADDR","features":[318]},{"name":"IP6OPT_PAD1","features":[318]},{"name":"IP6OPT_PADN","features":[318]},{"name":"IP6OPT_ROUTER_ALERT","features":[318]},{"name":"IP6OPT_TUNNEL_LIMIT","features":[318]},{"name":"IP6OPT_TYPE_DISCARD","features":[318]},{"name":"IP6OPT_TYPE_FORCEICMP","features":[318]},{"name":"IP6OPT_TYPE_ICMP","features":[318]},{"name":"IP6OPT_TYPE_SKIP","features":[318]},{"name":"IP6T_SO_ORIGINAL_DST","features":[318]},{"name":"IPPORT_BIFFUDP","features":[318]},{"name":"IPPORT_CHARGEN","features":[318]},{"name":"IPPORT_CMDSERVER","features":[318]},{"name":"IPPORT_DAYTIME","features":[318]},{"name":"IPPORT_DISCARD","features":[318]},{"name":"IPPORT_DYNAMIC_MAX","features":[318]},{"name":"IPPORT_DYNAMIC_MIN","features":[318]},{"name":"IPPORT_ECHO","features":[318]},{"name":"IPPORT_EFSSERVER","features":[318]},{"name":"IPPORT_EPMAP","features":[318]},{"name":"IPPORT_EXECSERVER","features":[318]},{"name":"IPPORT_FINGER","features":[318]},{"name":"IPPORT_FTP","features":[318]},{"name":"IPPORT_FTP_DATA","features":[318]},{"name":"IPPORT_HTTPS","features":[318]},{"name":"IPPORT_IMAP","features":[318]},{"name":"IPPORT_IMAP3","features":[318]},{"name":"IPPORT_LDAP","features":[318]},{"name":"IPPORT_LOGINSERVER","features":[318]},{"name":"IPPORT_MICROSOFT_DS","features":[318]},{"name":"IPPORT_MSP","features":[318]},{"name":"IPPORT_MTP","features":[318]},{"name":"IPPORT_NAMESERVER","features":[318]},{"name":"IPPORT_NETBIOS_DGM","features":[318]},{"name":"IPPORT_NETBIOS_NS","features":[318]},{"name":"IPPORT_NETBIOS_SSN","features":[318]},{"name":"IPPORT_NETSTAT","features":[318]},{"name":"IPPORT_NTP","features":[318]},{"name":"IPPORT_POP3","features":[318]},{"name":"IPPORT_QOTD","features":[318]},{"name":"IPPORT_REGISTERED_MAX","features":[318]},{"name":"IPPORT_REGISTERED_MIN","features":[318]},{"name":"IPPORT_RESERVED","features":[318]},{"name":"IPPORT_RJE","features":[318]},{"name":"IPPORT_ROUTESERVER","features":[318]},{"name":"IPPORT_SMTP","features":[318]},{"name":"IPPORT_SNMP","features":[318]},{"name":"IPPORT_SNMP_TRAP","features":[318]},{"name":"IPPORT_SUPDUP","features":[318]},{"name":"IPPORT_SYSTAT","features":[318]},{"name":"IPPORT_TCPMUX","features":[318]},{"name":"IPPORT_TELNET","features":[318]},{"name":"IPPORT_TFTP","features":[318]},{"name":"IPPORT_TIMESERVER","features":[318]},{"name":"IPPORT_TTYLINK","features":[318]},{"name":"IPPORT_WHOIS","features":[318]},{"name":"IPPORT_WHOSERVER","features":[318]},{"name":"IPPROTO","features":[318]},{"name":"IPPROTO_AH","features":[318]},{"name":"IPPROTO_CBT","features":[318]},{"name":"IPPROTO_DSTOPTS","features":[318]},{"name":"IPPROTO_EGP","features":[318]},{"name":"IPPROTO_ESP","features":[318]},{"name":"IPPROTO_FRAGMENT","features":[318]},{"name":"IPPROTO_GGP","features":[318]},{"name":"IPPROTO_HOPOPTS","features":[318]},{"name":"IPPROTO_ICLFXBM","features":[318]},{"name":"IPPROTO_ICMP","features":[318]},{"name":"IPPROTO_ICMPV6","features":[318]},{"name":"IPPROTO_IDP","features":[318]},{"name":"IPPROTO_IGMP","features":[318]},{"name":"IPPROTO_IGP","features":[318]},{"name":"IPPROTO_IP","features":[318]},{"name":"IPPROTO_IPV4","features":[318]},{"name":"IPPROTO_IPV6","features":[318]},{"name":"IPPROTO_L2TP","features":[318]},{"name":"IPPROTO_MAX","features":[318]},{"name":"IPPROTO_ND","features":[318]},{"name":"IPPROTO_NONE","features":[318]},{"name":"IPPROTO_PGM","features":[318]},{"name":"IPPROTO_PIM","features":[318]},{"name":"IPPROTO_PUP","features":[318]},{"name":"IPPROTO_RAW","features":[318]},{"name":"IPPROTO_RDP","features":[318]},{"name":"IPPROTO_RESERVED_IPSEC","features":[318]},{"name":"IPPROTO_RESERVED_IPSECOFFLOAD","features":[318]},{"name":"IPPROTO_RESERVED_MAX","features":[318]},{"name":"IPPROTO_RESERVED_RAW","features":[318]},{"name":"IPPROTO_RESERVED_WNV","features":[318]},{"name":"IPPROTO_RM","features":[318]},{"name":"IPPROTO_ROUTING","features":[318]},{"name":"IPPROTO_SCTP","features":[318]},{"name":"IPPROTO_ST","features":[318]},{"name":"IPPROTO_TCP","features":[318]},{"name":"IPPROTO_UDP","features":[318]},{"name":"IPTLS_METADATA","features":[318]},{"name":"IPV4_HEADER","features":[318]},{"name":"IPV4_MAX_MINIMUM_MTU","features":[318]},{"name":"IPV4_MINIMUM_MTU","features":[318]},{"name":"IPV4_MIN_MINIMUM_MTU","features":[318]},{"name":"IPV4_OPTION_HEADER","features":[318]},{"name":"IPV4_OPTION_TYPE","features":[318]},{"name":"IPV4_ROUTING_HEADER","features":[318]},{"name":"IPV4_TIMESTAMP_OPTION","features":[318]},{"name":"IPV4_VERSION","features":[318]},{"name":"IPV6_ADD_IFLIST","features":[318]},{"name":"IPV6_ADD_MEMBERSHIP","features":[318]},{"name":"IPV6_CHECKSUM","features":[318]},{"name":"IPV6_DEL_IFLIST","features":[318]},{"name":"IPV6_DONTFRAG","features":[318]},{"name":"IPV6_DROP_MEMBERSHIP","features":[318]},{"name":"IPV6_ECN","features":[318]},{"name":"IPV6_ECN_MASK","features":[318]},{"name":"IPV6_ECN_SHIFT","features":[318]},{"name":"IPV6_EXTENSION_HEADER","features":[318]},{"name":"IPV6_FLOW_LABEL_MASK","features":[318]},{"name":"IPV6_FRAGMENT_HEADER","features":[318]},{"name":"IPV6_FULL_TRAFFIC_CLASS_MASK","features":[318]},{"name":"IPV6_GET_IFLIST","features":[318]},{"name":"IPV6_HDRINCL","features":[318]},{"name":"IPV6_HEADER","features":[318]},{"name":"IPV6_HOPLIMIT","features":[318]},{"name":"IPV6_HOPOPTS","features":[318]},{"name":"IPV6_IFLIST","features":[318]},{"name":"IPV6_JOIN_GROUP","features":[318]},{"name":"IPV6_LEAVE_GROUP","features":[318]},{"name":"IPV6_MINIMUM_MTU","features":[318]},{"name":"IPV6_MREQ","features":[318]},{"name":"IPV6_MTU","features":[318]},{"name":"IPV6_MTU_DISCOVER","features":[318]},{"name":"IPV6_MULTICAST_HOPS","features":[318]},{"name":"IPV6_MULTICAST_IF","features":[318]},{"name":"IPV6_MULTICAST_LOOP","features":[318]},{"name":"IPV6_NEIGHBOR_ADVERTISEMENT_FLAGS","features":[318]},{"name":"IPV6_NRT_INTERFACE","features":[318]},{"name":"IPV6_OPTION_HEADER","features":[318]},{"name":"IPV6_OPTION_JUMBOGRAM","features":[318]},{"name":"IPV6_OPTION_ROUTER_ALERT","features":[318]},{"name":"IPV6_OPTION_TYPE","features":[318]},{"name":"IPV6_PKTINFO","features":[318]},{"name":"IPV6_PKTINFO_EX","features":[318]},{"name":"IPV6_PROTECTION_LEVEL","features":[318]},{"name":"IPV6_RECVDSTADDR","features":[318]},{"name":"IPV6_RECVECN","features":[318]},{"name":"IPV6_RECVERR","features":[318]},{"name":"IPV6_RECVIF","features":[318]},{"name":"IPV6_RECVRTHDR","features":[318]},{"name":"IPV6_RECVTCLASS","features":[318]},{"name":"IPV6_ROUTER_ADVERTISEMENT_FLAGS","features":[318]},{"name":"IPV6_ROUTING_HEADER","features":[318]},{"name":"IPV6_RTHDR","features":[318]},{"name":"IPV6_TCLASS","features":[318]},{"name":"IPV6_TRAFFIC_CLASS_MASK","features":[318]},{"name":"IPV6_UNICAST_HOPS","features":[318]},{"name":"IPV6_UNICAST_IF","features":[318]},{"name":"IPV6_USER_MTU","features":[318]},{"name":"IPV6_V6ONLY","features":[318]},{"name":"IPV6_VERSION","features":[318]},{"name":"IPV6_WFP_REDIRECT_CONTEXT","features":[318]},{"name":"IPV6_WFP_REDIRECT_RECORDS","features":[318]},{"name":"IPX_ADDRESS","features":[318]},{"name":"IPX_ADDRESS_DATA","features":[305,318]},{"name":"IPX_ADDRESS_NOTIFY","features":[318]},{"name":"IPX_DSTYPE","features":[318]},{"name":"IPX_EXTENDED_ADDRESS","features":[318]},{"name":"IPX_FILTERPTYPE","features":[318]},{"name":"IPX_GETNETINFO","features":[318]},{"name":"IPX_GETNETINFO_NORIP","features":[318]},{"name":"IPX_IMMEDIATESPXACK","features":[318]},{"name":"IPX_MAXSIZE","features":[318]},{"name":"IPX_MAX_ADAPTER_NUM","features":[318]},{"name":"IPX_NETNUM_DATA","features":[318]},{"name":"IPX_PTYPE","features":[318]},{"name":"IPX_RECEIVE_BROADCAST","features":[318]},{"name":"IPX_RECVHDR","features":[318]},{"name":"IPX_RERIPNETNUMBER","features":[318]},{"name":"IPX_SPXCONNSTATUS_DATA","features":[318]},{"name":"IPX_SPXGETCONNECTIONSTATUS","features":[318]},{"name":"IPX_STOPFILTERPTYPE","features":[318]},{"name":"IP_ADD_IFLIST","features":[318]},{"name":"IP_ADD_MEMBERSHIP","features":[318]},{"name":"IP_ADD_SOURCE_MEMBERSHIP","features":[318]},{"name":"IP_BLOCK_SOURCE","features":[318]},{"name":"IP_DEFAULT_MULTICAST_LOOP","features":[318]},{"name":"IP_DEFAULT_MULTICAST_TTL","features":[318]},{"name":"IP_DEL_IFLIST","features":[318]},{"name":"IP_DONTFRAGMENT","features":[318]},{"name":"IP_DROP_MEMBERSHIP","features":[318]},{"name":"IP_DROP_SOURCE_MEMBERSHIP","features":[318]},{"name":"IP_ECN","features":[318]},{"name":"IP_GET_IFLIST","features":[318]},{"name":"IP_HDRINCL","features":[318]},{"name":"IP_HOPLIMIT","features":[318]},{"name":"IP_IFLIST","features":[318]},{"name":"IP_MAX_MEMBERSHIPS","features":[318]},{"name":"IP_MREQ","features":[318]},{"name":"IP_MREQ_SOURCE","features":[318]},{"name":"IP_MSFILTER","features":[318]},{"name":"IP_MTU","features":[318]},{"name":"IP_MTU_DISCOVER","features":[318]},{"name":"IP_MULTICAST_IF","features":[318]},{"name":"IP_MULTICAST_LOOP","features":[318]},{"name":"IP_MULTICAST_TTL","features":[318]},{"name":"IP_NRT_INTERFACE","features":[318]},{"name":"IP_OPTIONS","features":[318]},{"name":"IP_OPTION_TIMESTAMP_ADDRESS","features":[318]},{"name":"IP_OPTION_TIMESTAMP_FLAGS","features":[318]},{"name":"IP_OPTION_TIMESTAMP_ONLY","features":[318]},{"name":"IP_OPTION_TIMESTAMP_SPECIFIC_ADDRESS","features":[318]},{"name":"IP_OPT_EOL","features":[318]},{"name":"IP_OPT_LSRR","features":[318]},{"name":"IP_OPT_MULTIDEST","features":[318]},{"name":"IP_OPT_NOP","features":[318]},{"name":"IP_OPT_ROUTER_ALERT","features":[318]},{"name":"IP_OPT_RR","features":[318]},{"name":"IP_OPT_SECURITY","features":[318]},{"name":"IP_OPT_SID","features":[318]},{"name":"IP_OPT_SSRR","features":[318]},{"name":"IP_OPT_TS","features":[318]},{"name":"IP_ORIGINAL_ARRIVAL_IF","features":[318]},{"name":"IP_PKTINFO","features":[318]},{"name":"IP_PKTINFO_EX","features":[318]},{"name":"IP_PMTUDISC_DO","features":[318]},{"name":"IP_PMTUDISC_DONT","features":[318]},{"name":"IP_PMTUDISC_MAX","features":[318]},{"name":"IP_PMTUDISC_NOT_SET","features":[318]},{"name":"IP_PMTUDISC_PROBE","features":[318]},{"name":"IP_PROTECTION_LEVEL","features":[318]},{"name":"IP_RECEIVE_BROADCAST","features":[318]},{"name":"IP_RECVDSTADDR","features":[318]},{"name":"IP_RECVECN","features":[318]},{"name":"IP_RECVERR","features":[318]},{"name":"IP_RECVIF","features":[318]},{"name":"IP_RECVRTHDR","features":[318]},{"name":"IP_RECVTCLASS","features":[318]},{"name":"IP_RECVTOS","features":[318]},{"name":"IP_RECVTTL","features":[318]},{"name":"IP_RTHDR","features":[318]},{"name":"IP_TCLASS","features":[318]},{"name":"IP_TOS","features":[318]},{"name":"IP_TTL","features":[318]},{"name":"IP_UNBLOCK_SOURCE","features":[318]},{"name":"IP_UNICAST_IF","features":[318]},{"name":"IP_UNSPECIFIED_HOP_LIMIT","features":[318]},{"name":"IP_UNSPECIFIED_TYPE_OF_SERVICE","features":[318]},{"name":"IP_UNSPECIFIED_USER_MTU","features":[318]},{"name":"IP_USER_MTU","features":[318]},{"name":"IP_VER_MASK","features":[318]},{"name":"IP_WFP_REDIRECT_CONTEXT","features":[318]},{"name":"IP_WFP_REDIRECT_RECORDS","features":[318]},{"name":"IRDA_PROTO_SOCK_STREAM","features":[318]},{"name":"IRLMP_9WIRE_MODE","features":[318]},{"name":"IRLMP_DISCOVERY_MODE","features":[318]},{"name":"IRLMP_ENUMDEVICES","features":[318]},{"name":"IRLMP_EXCLUSIVE_MODE","features":[318]},{"name":"IRLMP_IAS_QUERY","features":[318]},{"name":"IRLMP_IAS_SET","features":[318]},{"name":"IRLMP_IRLPT_MODE","features":[318]},{"name":"IRLMP_PARAMETERS","features":[318]},{"name":"IRLMP_SEND_PDU_LEN","features":[318]},{"name":"IRLMP_SHARP_MODE","features":[318]},{"name":"IRLMP_TINYTP_MODE","features":[318]},{"name":"ISOPROTO_CLNP","features":[318]},{"name":"ISOPROTO_CLTP","features":[318]},{"name":"ISOPROTO_ESIS","features":[318]},{"name":"ISOPROTO_INACT_NL","features":[318]},{"name":"ISOPROTO_INTRAISIS","features":[318]},{"name":"ISOPROTO_TP","features":[318]},{"name":"ISOPROTO_TP0","features":[318]},{"name":"ISOPROTO_TP1","features":[318]},{"name":"ISOPROTO_TP2","features":[318]},{"name":"ISOPROTO_TP3","features":[318]},{"name":"ISOPROTO_TP4","features":[318]},{"name":"ISOPROTO_X25","features":[318]},{"name":"ISO_EXP_DATA_NUSE","features":[318]},{"name":"ISO_EXP_DATA_USE","features":[318]},{"name":"ISO_HIERARCHICAL","features":[318]},{"name":"ISO_MAX_ADDR_LENGTH","features":[318]},{"name":"ISO_NON_HIERARCHICAL","features":[318]},{"name":"InetNtopW","features":[318]},{"name":"InetPtonW","features":[318]},{"name":"IpDadStateDeprecated","features":[318]},{"name":"IpDadStateDuplicate","features":[318]},{"name":"IpDadStateInvalid","features":[318]},{"name":"IpDadStatePreferred","features":[318]},{"name":"IpDadStateTentative","features":[318]},{"name":"IpPrefixOriginDhcp","features":[318]},{"name":"IpPrefixOriginManual","features":[318]},{"name":"IpPrefixOriginOther","features":[318]},{"name":"IpPrefixOriginRouterAdvertisement","features":[318]},{"name":"IpPrefixOriginUnchanged","features":[318]},{"name":"IpPrefixOriginWellKnown","features":[318]},{"name":"IpSuffixOriginDhcp","features":[318]},{"name":"IpSuffixOriginLinkLayerAddress","features":[318]},{"name":"IpSuffixOriginManual","features":[318]},{"name":"IpSuffixOriginOther","features":[318]},{"name":"IpSuffixOriginRandom","features":[318]},{"name":"IpSuffixOriginUnchanged","features":[318]},{"name":"IpSuffixOriginWellKnown","features":[318]},{"name":"JL_BOTH","features":[318]},{"name":"JL_RECEIVER_ONLY","features":[318]},{"name":"JL_SENDER_ONLY","features":[318]},{"name":"LAYERED_PROTOCOL","features":[318]},{"name":"LINGER","features":[318]},{"name":"LITTLEENDIAN","features":[318]},{"name":"LM_BAUD_115200","features":[318]},{"name":"LM_BAUD_1152K","features":[318]},{"name":"LM_BAUD_1200","features":[318]},{"name":"LM_BAUD_16M","features":[318]},{"name":"LM_BAUD_19200","features":[318]},{"name":"LM_BAUD_2400","features":[318]},{"name":"LM_BAUD_38400","features":[318]},{"name":"LM_BAUD_4M","features":[318]},{"name":"LM_BAUD_57600","features":[318]},{"name":"LM_BAUD_576K","features":[318]},{"name":"LM_BAUD_9600","features":[318]},{"name":"LM_HB1_Computer","features":[318]},{"name":"LM_HB1_Fax","features":[318]},{"name":"LM_HB1_LANAccess","features":[318]},{"name":"LM_HB1_Modem","features":[318]},{"name":"LM_HB1_PDA_Palmtop","features":[318]},{"name":"LM_HB1_PnP","features":[318]},{"name":"LM_HB1_Printer","features":[318]},{"name":"LM_HB2_FileServer","features":[318]},{"name":"LM_HB2_Telephony","features":[318]},{"name":"LM_HB_Extension","features":[318]},{"name":"LM_IRPARMS","features":[318]},{"name":"LOG2_BITS_PER_BYTE","features":[318]},{"name":"LPBLOCKINGCALLBACK","features":[305,318]},{"name":"LPCONDITIONPROC","features":[318]},{"name":"LPFN_ACCEPTEX","features":[305,318,310]},{"name":"LPFN_CONNECTEX","features":[305,318,310]},{"name":"LPFN_DISCONNECTEX","features":[305,318,310]},{"name":"LPFN_GETACCEPTEXSOCKADDRS","features":[318]},{"name":"LPFN_NSPAPI","features":[318]},{"name":"LPFN_RIOCLOSECOMPLETIONQUEUE","features":[318]},{"name":"LPFN_RIOCREATECOMPLETIONQUEUE","features":[305,318]},{"name":"LPFN_RIOCREATEREQUESTQUEUE","features":[318]},{"name":"LPFN_RIODEQUEUECOMPLETION","features":[318]},{"name":"LPFN_RIODEREGISTERBUFFER","features":[318]},{"name":"LPFN_RIONOTIFY","features":[318]},{"name":"LPFN_RIORECEIVE","features":[305,318]},{"name":"LPFN_RIORECEIVEEX","features":[318]},{"name":"LPFN_RIOREGISTERBUFFER","features":[318]},{"name":"LPFN_RIORESIZECOMPLETIONQUEUE","features":[305,318]},{"name":"LPFN_RIORESIZEREQUESTQUEUE","features":[305,318]},{"name":"LPFN_RIOSEND","features":[305,318]},{"name":"LPFN_RIOSENDEX","features":[305,318]},{"name":"LPFN_TRANSMITFILE","features":[305,318,310]},{"name":"LPFN_TRANSMITPACKETS","features":[305,318,310]},{"name":"LPFN_WSAPOLL","features":[318]},{"name":"LPFN_WSARECVMSG","features":[305,318,310]},{"name":"LPFN_WSASENDMSG","features":[305,318,310]},{"name":"LPLOOKUPSERVICE_COMPLETION_ROUTINE","features":[305,318,310]},{"name":"LPNSPCLEANUP","features":[318]},{"name":"LPNSPGETSERVICECLASSINFO","features":[318]},{"name":"LPNSPINSTALLSERVICECLASS","features":[318]},{"name":"LPNSPIOCTL","features":[305,318,310]},{"name":"LPNSPLOOKUPSERVICEBEGIN","features":[305,318,356]},{"name":"LPNSPLOOKUPSERVICEEND","features":[305,318]},{"name":"LPNSPLOOKUPSERVICENEXT","features":[305,318,356]},{"name":"LPNSPREMOVESERVICECLASS","features":[318]},{"name":"LPNSPSETSERVICE","features":[318,356]},{"name":"LPNSPSTARTUP","features":[305,318,356,310]},{"name":"LPNSPV2CLEANUP","features":[318]},{"name":"LPNSPV2CLIENTSESSIONRUNDOWN","features":[318]},{"name":"LPNSPV2LOOKUPSERVICEBEGIN","features":[305,318,356]},{"name":"LPNSPV2LOOKUPSERVICEEND","features":[305,318]},{"name":"LPNSPV2LOOKUPSERVICENEXTEX","features":[305,318,356]},{"name":"LPNSPV2SETSERVICEEX","features":[305,318,356]},{"name":"LPNSPV2STARTUP","features":[318]},{"name":"LPSERVICE_CALLBACK_PROC","features":[305,318]},{"name":"LPWPUCLOSEEVENT","features":[305,318]},{"name":"LPWPUCLOSESOCKETHANDLE","features":[318]},{"name":"LPWPUCLOSETHREAD","features":[305,318]},{"name":"LPWPUCOMPLETEOVERLAPPEDREQUEST","features":[305,318,310]},{"name":"LPWPUCREATEEVENT","features":[318]},{"name":"LPWPUCREATESOCKETHANDLE","features":[318]},{"name":"LPWPUFDISSET","features":[318]},{"name":"LPWPUGETPROVIDERPATH","features":[318]},{"name":"LPWPUMODIFYIFSHANDLE","features":[318]},{"name":"LPWPUOPENCURRENTTHREAD","features":[305,318]},{"name":"LPWPUPOSTMESSAGE","features":[305,318]},{"name":"LPWPUQUERYBLOCKINGCALLBACK","features":[305,318]},{"name":"LPWPUQUERYSOCKETHANDLECONTEXT","features":[318]},{"name":"LPWPUQUEUEAPC","features":[305,318]},{"name":"LPWPURESETEVENT","features":[305,318]},{"name":"LPWPUSETEVENT","features":[305,318]},{"name":"LPWSAOVERLAPPED_COMPLETION_ROUTINE","features":[305,318,310]},{"name":"LPWSAUSERAPC","features":[318]},{"name":"LPWSCDEINSTALLPROVIDER","features":[318]},{"name":"LPWSCENABLENSPROVIDER","features":[305,318]},{"name":"LPWSCENUMPROTOCOLS","features":[318]},{"name":"LPWSCGETPROVIDERPATH","features":[318]},{"name":"LPWSCINSTALLNAMESPACE","features":[318]},{"name":"LPWSCINSTALLPROVIDER","features":[318]},{"name":"LPWSCUNINSTALLNAMESPACE","features":[318]},{"name":"LPWSCUPDATEPROVIDER","features":[318]},{"name":"LPWSCWRITENAMESPACEORDER","features":[318]},{"name":"LPWSCWRITEPROVIDERORDER","features":[318]},{"name":"LPWSPACCEPT","features":[318]},{"name":"LPWSPADDRESSTOSTRING","features":[318]},{"name":"LPWSPASYNCSELECT","features":[305,318]},{"name":"LPWSPBIND","features":[318]},{"name":"LPWSPCANCELBLOCKINGCALL","features":[318]},{"name":"LPWSPCLEANUP","features":[318]},{"name":"LPWSPCLOSESOCKET","features":[318]},{"name":"LPWSPCONNECT","features":[318]},{"name":"LPWSPDUPLICATESOCKET","features":[318]},{"name":"LPWSPENUMNETWORKEVENTS","features":[305,318]},{"name":"LPWSPEVENTSELECT","features":[318]},{"name":"LPWSPGETOVERLAPPEDRESULT","features":[305,318,310]},{"name":"LPWSPGETPEERNAME","features":[318]},{"name":"LPWSPGETQOSBYNAME","features":[305,318]},{"name":"LPWSPGETSOCKNAME","features":[318]},{"name":"LPWSPGETSOCKOPT","features":[318]},{"name":"LPWSPIOCTL","features":[305,318,310]},{"name":"LPWSPJOINLEAF","features":[318]},{"name":"LPWSPLISTEN","features":[318]},{"name":"LPWSPRECV","features":[305,318,310]},{"name":"LPWSPRECVDISCONNECT","features":[318]},{"name":"LPWSPRECVFROM","features":[305,318,310]},{"name":"LPWSPSELECT","features":[318]},{"name":"LPWSPSEND","features":[305,318,310]},{"name":"LPWSPSENDDISCONNECT","features":[318]},{"name":"LPWSPSENDTO","features":[305,318,310]},{"name":"LPWSPSETSOCKOPT","features":[318]},{"name":"LPWSPSHUTDOWN","features":[318]},{"name":"LPWSPSOCKET","features":[318]},{"name":"LPWSPSTARTUP","features":[305,318,310]},{"name":"LPWSPSTRINGTOADDRESS","features":[318]},{"name":"LSP_CRYPTO_COMPRESS","features":[318]},{"name":"LSP_FIREWALL","features":[318]},{"name":"LSP_INBOUND_MODIFY","features":[318]},{"name":"LSP_INSPECTOR","features":[318]},{"name":"LSP_LOCAL_CACHE","features":[318]},{"name":"LSP_OUTBOUND_MODIFY","features":[318]},{"name":"LSP_PROXY","features":[318]},{"name":"LSP_REDIRECTOR","features":[318]},{"name":"LSP_SYSTEM","features":[318]},{"name":"LUP_ADDRCONFIG","features":[318]},{"name":"LUP_API_ANSI","features":[318]},{"name":"LUP_CONTAINERS","features":[318]},{"name":"LUP_DEEP","features":[318]},{"name":"LUP_DISABLE_IDN_ENCODING","features":[318]},{"name":"LUP_DNS_ONLY","features":[318]},{"name":"LUP_DUAL_ADDR","features":[318]},{"name":"LUP_EXCLUSIVE_CUSTOM_SERVERS","features":[318]},{"name":"LUP_EXTENDED_QUERYSET","features":[318]},{"name":"LUP_FILESERVER","features":[318]},{"name":"LUP_FLUSHCACHE","features":[318]},{"name":"LUP_FLUSHPREVIOUS","features":[318]},{"name":"LUP_FORCE_CLEAR_TEXT","features":[318]},{"name":"LUP_NEAREST","features":[318]},{"name":"LUP_NOCONTAINERS","features":[318]},{"name":"LUP_NON_AUTHORITATIVE","features":[318]},{"name":"LUP_REQUIRE_SECURE","features":[318]},{"name":"LUP_RESOLUTION_HANDLE","features":[318]},{"name":"LUP_RES_SERVICE","features":[318]},{"name":"LUP_RETURN_ADDR","features":[318]},{"name":"LUP_RETURN_ALIASES","features":[318]},{"name":"LUP_RETURN_ALL","features":[318]},{"name":"LUP_RETURN_BLOB","features":[318]},{"name":"LUP_RETURN_COMMENT","features":[318]},{"name":"LUP_RETURN_NAME","features":[318]},{"name":"LUP_RETURN_PREFERRED_NAMES","features":[318]},{"name":"LUP_RETURN_QUERY_STRING","features":[318]},{"name":"LUP_RETURN_RESPONSE_FLAGS","features":[318]},{"name":"LUP_RETURN_TTL","features":[318]},{"name":"LUP_RETURN_TYPE","features":[318]},{"name":"LUP_RETURN_VERSION","features":[318]},{"name":"LUP_SECURE","features":[318]},{"name":"LUP_SECURE_WITH_FALLBACK","features":[318]},{"name":"LinkLocalAlwaysOff","features":[318]},{"name":"LinkLocalAlwaysOn","features":[318]},{"name":"LinkLocalDelayed","features":[318]},{"name":"LinkLocalUnchanged","features":[318]},{"name":"LmCharSetASCII","features":[318]},{"name":"LmCharSetISO_8859_1","features":[318]},{"name":"LmCharSetISO_8859_2","features":[318]},{"name":"LmCharSetISO_8859_3","features":[318]},{"name":"LmCharSetISO_8859_4","features":[318]},{"name":"LmCharSetISO_8859_5","features":[318]},{"name":"LmCharSetISO_8859_6","features":[318]},{"name":"LmCharSetISO_8859_7","features":[318]},{"name":"LmCharSetISO_8859_8","features":[318]},{"name":"LmCharSetISO_8859_9","features":[318]},{"name":"LmCharSetUNICODE","features":[318]},{"name":"MAXGETHOSTSTRUCT","features":[318]},{"name":"MAX_IPV4_HLEN","features":[318]},{"name":"MAX_IPV4_PACKET","features":[318]},{"name":"MAX_IPV6_PAYLOAD","features":[318]},{"name":"MAX_MCAST_TTL","features":[318]},{"name":"MAX_PROTOCOL_CHAIN","features":[318]},{"name":"MAX_WINDOW_INCREMENT_PERCENTAGE","features":[318]},{"name":"MCAST_BLOCK_SOURCE","features":[318]},{"name":"MCAST_EXCLUDE","features":[318]},{"name":"MCAST_INCLUDE","features":[318]},{"name":"MCAST_JOIN_GROUP","features":[318]},{"name":"MCAST_JOIN_SOURCE_GROUP","features":[318]},{"name":"MCAST_LEAVE_GROUP","features":[318]},{"name":"MCAST_LEAVE_SOURCE_GROUP","features":[318]},{"name":"MCAST_UNBLOCK_SOURCE","features":[318]},{"name":"MIB_IPPROTO_BBN","features":[318]},{"name":"MIB_IPPROTO_BGP","features":[318]},{"name":"MIB_IPPROTO_CISCO","features":[318]},{"name":"MIB_IPPROTO_DHCP","features":[318]},{"name":"MIB_IPPROTO_DVMRP","features":[318]},{"name":"MIB_IPPROTO_EGP","features":[318]},{"name":"MIB_IPPROTO_EIGRP","features":[318]},{"name":"MIB_IPPROTO_ES_IS","features":[318]},{"name":"MIB_IPPROTO_GGP","features":[318]},{"name":"MIB_IPPROTO_HELLO","features":[318]},{"name":"MIB_IPPROTO_ICMP","features":[318]},{"name":"MIB_IPPROTO_IDPR","features":[318]},{"name":"MIB_IPPROTO_IS_IS","features":[318]},{"name":"MIB_IPPROTO_LOCAL","features":[318]},{"name":"MIB_IPPROTO_NETMGMT","features":[318]},{"name":"MIB_IPPROTO_NT_AUTOSTATIC","features":[318]},{"name":"MIB_IPPROTO_NT_STATIC","features":[318]},{"name":"MIB_IPPROTO_NT_STATIC_NON_DOD","features":[318]},{"name":"MIB_IPPROTO_OSPF","features":[318]},{"name":"MIB_IPPROTO_OTHER","features":[318]},{"name":"MIB_IPPROTO_RIP","features":[318]},{"name":"MIB_IPPROTO_RPL","features":[318]},{"name":"MIT_GUID","features":[318]},{"name":"MIT_IF_LUID","features":[318]},{"name":"MLDV2_QUERY_HEADER","features":[318]},{"name":"MLDV2_REPORT_HEADER","features":[318]},{"name":"MLDV2_REPORT_RECORD_HEADER","features":[318]},{"name":"MLD_HEADER","features":[318]},{"name":"MLD_MAX_RESP_CODE_TYPE","features":[318]},{"name":"MLD_MAX_RESP_CODE_TYPE_FLOAT","features":[318]},{"name":"MLD_MAX_RESP_CODE_TYPE_NORMAL","features":[318]},{"name":"MSG_BCAST","features":[318]},{"name":"MSG_CTRUNC","features":[318]},{"name":"MSG_DONTROUTE","features":[318]},{"name":"MSG_ERRQUEUE","features":[318]},{"name":"MSG_INTERRUPT","features":[318]},{"name":"MSG_MAXIOVLEN","features":[318]},{"name":"MSG_MCAST","features":[318]},{"name":"MSG_OOB","features":[318]},{"name":"MSG_PARTIAL","features":[318]},{"name":"MSG_PEEK","features":[318]},{"name":"MSG_PUSH_IMMEDIATE","features":[318]},{"name":"MSG_TRUNC","features":[318]},{"name":"MSG_WAITALL","features":[318]},{"name":"MULTICAST_MODE_TYPE","features":[318]},{"name":"NAPI_DOMAIN_DESCRIPTION_BLOB","features":[318]},{"name":"NAPI_PROVIDER_INSTALLATION_BLOB","features":[318]},{"name":"NAPI_PROVIDER_LEVEL","features":[318]},{"name":"NAPI_PROVIDER_TYPE","features":[318]},{"name":"ND_NA_FLAG_OVERRIDE","features":[318]},{"name":"ND_NA_FLAG_ROUTER","features":[318]},{"name":"ND_NA_FLAG_SOLICITED","features":[318]},{"name":"ND_NEIGHBOR_ADVERT_HEADER","features":[318]},{"name":"ND_NEIGHBOR_SOLICIT_HEADER","features":[318]},{"name":"ND_OPTION_DNSSL","features":[318]},{"name":"ND_OPTION_HDR","features":[318]},{"name":"ND_OPTION_MTU","features":[318]},{"name":"ND_OPTION_PREFIX_INFO","features":[318]},{"name":"ND_OPTION_RDNSS","features":[318]},{"name":"ND_OPTION_RD_HDR","features":[318]},{"name":"ND_OPTION_ROUTE_INFO","features":[318]},{"name":"ND_OPTION_TYPE","features":[318]},{"name":"ND_OPT_ADVERTISEMENT_INTERVAL","features":[318]},{"name":"ND_OPT_DNSSL","features":[318]},{"name":"ND_OPT_DNSSL_MIN_LEN","features":[318]},{"name":"ND_OPT_HOME_AGENT_INFORMATION","features":[318]},{"name":"ND_OPT_MTU","features":[318]},{"name":"ND_OPT_NBMA_SHORTCUT_LIMIT","features":[318]},{"name":"ND_OPT_PI_FLAG_AUTO","features":[318]},{"name":"ND_OPT_PI_FLAG_ONLINK","features":[318]},{"name":"ND_OPT_PI_FLAG_ROUTE","features":[318]},{"name":"ND_OPT_PI_FLAG_ROUTER_ADDR","features":[318]},{"name":"ND_OPT_PI_FLAG_SITE_PREFIX","features":[318]},{"name":"ND_OPT_PREFIX_INFORMATION","features":[318]},{"name":"ND_OPT_RDNSS","features":[318]},{"name":"ND_OPT_RDNSS_MIN_LEN","features":[318]},{"name":"ND_OPT_REDIRECTED_HEADER","features":[318]},{"name":"ND_OPT_RI_FLAG_PREFERENCE","features":[318]},{"name":"ND_OPT_ROUTE_INFO","features":[318]},{"name":"ND_OPT_SOURCE_ADDR_LIST","features":[318]},{"name":"ND_OPT_SOURCE_LINKADDR","features":[318]},{"name":"ND_OPT_TARGET_ADDR_LIST","features":[318]},{"name":"ND_OPT_TARGET_LINKADDR","features":[318]},{"name":"ND_RA_FLAG_HOME_AGENT","features":[318]},{"name":"ND_RA_FLAG_MANAGED","features":[318]},{"name":"ND_RA_FLAG_OTHER","features":[318]},{"name":"ND_RA_FLAG_PREFERENCE","features":[318]},{"name":"ND_REDIRECT_HEADER","features":[318]},{"name":"ND_ROUTER_ADVERT_HEADER","features":[318]},{"name":"ND_ROUTER_SOLICIT_HEADER","features":[318]},{"name":"NETBIOS_GROUP_NAME","features":[318]},{"name":"NETBIOS_NAME_LENGTH","features":[318]},{"name":"NETBIOS_TYPE_QUICK_GROUP","features":[318]},{"name":"NETBIOS_TYPE_QUICK_UNIQUE","features":[318]},{"name":"NETBIOS_UNIQUE_NAME","features":[318]},{"name":"NETRESOURCE2A","features":[318]},{"name":"NETRESOURCE2W","features":[318]},{"name":"NI_DGRAM","features":[318]},{"name":"NI_MAXHOST","features":[318]},{"name":"NI_MAXSERV","features":[318]},{"name":"NI_NAMEREQD","features":[318]},{"name":"NI_NOFQDN","features":[318]},{"name":"NI_NUMERICHOST","features":[318]},{"name":"NI_NUMERICSERV","features":[318]},{"name":"NLA_802_1X_LOCATION","features":[318]},{"name":"NLA_ALLUSERS_NETWORK","features":[318]},{"name":"NLA_BLOB","features":[318]},{"name":"NLA_BLOB_DATA_TYPE","features":[318]},{"name":"NLA_CONNECTIVITY","features":[318]},{"name":"NLA_CONNECTIVITY_TYPE","features":[318]},{"name":"NLA_FRIENDLY_NAME","features":[318]},{"name":"NLA_ICS","features":[318]},{"name":"NLA_INTERFACE","features":[318]},{"name":"NLA_INTERNET","features":[318]},{"name":"NLA_INTERNET_NO","features":[318]},{"name":"NLA_INTERNET_UNKNOWN","features":[318]},{"name":"NLA_INTERNET_YES","features":[318]},{"name":"NLA_NAMESPACE_GUID","features":[318]},{"name":"NLA_NETWORK_AD_HOC","features":[318]},{"name":"NLA_NETWORK_MANAGED","features":[318]},{"name":"NLA_NETWORK_UNKNOWN","features":[318]},{"name":"NLA_NETWORK_UNMANAGED","features":[318]},{"name":"NLA_RAW_DATA","features":[318]},{"name":"NLA_SERVICE_CLASS_GUID","features":[318]},{"name":"NL_ADDRESS_TYPE","features":[318]},{"name":"NL_BANDWIDTH_FLAG","features":[318]},{"name":"NL_BANDWIDTH_INFORMATION","features":[305,318]},{"name":"NL_DAD_STATE","features":[318]},{"name":"NL_INTERFACE_NETWORK_CATEGORY_STATE","features":[318]},{"name":"NL_INTERFACE_OFFLOAD_ROD","features":[318]},{"name":"NL_LINK_LOCAL_ADDRESS_BEHAVIOR","features":[318]},{"name":"NL_NEIGHBOR_STATE","features":[318]},{"name":"NL_NETWORK_CATEGORY","features":[318]},{"name":"NL_NETWORK_CONNECTIVITY_COST_HINT","features":[318]},{"name":"NL_NETWORK_CONNECTIVITY_HINT","features":[305,318]},{"name":"NL_NETWORK_CONNECTIVITY_LEVEL_HINT","features":[318]},{"name":"NL_PATH_BANDWIDTH_ROD","features":[305,318]},{"name":"NL_PREFIX_ORIGIN","features":[318]},{"name":"NL_ROUTER_DISCOVERY_BEHAVIOR","features":[318]},{"name":"NL_ROUTE_ORIGIN","features":[318]},{"name":"NL_ROUTE_PROTOCOL","features":[318]},{"name":"NL_SUFFIX_ORIGIN","features":[318]},{"name":"NPI_MODULEID","features":[305,318]},{"name":"NPI_MODULEID_TYPE","features":[318]},{"name":"NSPROTO_IPX","features":[318]},{"name":"NSPROTO_SPX","features":[318]},{"name":"NSPROTO_SPXII","features":[318]},{"name":"NSPV2_ROUTINE","features":[305,318,356]},{"name":"NSP_NOTIFY_APC","features":[318]},{"name":"NSP_NOTIFY_EVENT","features":[318]},{"name":"NSP_NOTIFY_HWND","features":[318]},{"name":"NSP_NOTIFY_IMMEDIATELY","features":[318]},{"name":"NSP_NOTIFY_PORT","features":[318]},{"name":"NSP_ROUTINE","features":[305,318,356,310]},{"name":"NSTYPE_DYNAMIC","features":[318]},{"name":"NSTYPE_ENUMERABLE","features":[318]},{"name":"NSTYPE_HIERARCHICAL","features":[318]},{"name":"NSTYPE_WORKGROUP","features":[318]},{"name":"NS_ALL","features":[318]},{"name":"NS_DEFAULT","features":[318]},{"name":"NS_DHCP","features":[318]},{"name":"NS_DNS","features":[318]},{"name":"NS_EMAIL","features":[318]},{"name":"NS_INFOA","features":[318]},{"name":"NS_INFOW","features":[318]},{"name":"NS_LOCALNAME","features":[318]},{"name":"NS_MS","features":[318]},{"name":"NS_NBP","features":[318]},{"name":"NS_NDS","features":[318]},{"name":"NS_NETBT","features":[318]},{"name":"NS_NETDES","features":[318]},{"name":"NS_NIS","features":[318]},{"name":"NS_NISPLUS","features":[318]},{"name":"NS_NLA","features":[318]},{"name":"NS_NTDS","features":[318]},{"name":"NS_PEER_BROWSE","features":[318]},{"name":"NS_SAP","features":[318]},{"name":"NS_SERVICE_INFOA","features":[318,356]},{"name":"NS_SERVICE_INFOW","features":[318,356]},{"name":"NS_SLP","features":[318]},{"name":"NS_STDA","features":[318]},{"name":"NS_TCPIP_HOSTS","features":[318]},{"name":"NS_TCPIP_LOCAL","features":[318]},{"name":"NS_VNS","features":[318]},{"name":"NS_WINS","features":[318]},{"name":"NS_WRQ","features":[318]},{"name":"NS_X500","features":[318]},{"name":"NetworkCategoryDomainAuthenticated","features":[318]},{"name":"NetworkCategoryPrivate","features":[318]},{"name":"NetworkCategoryPublic","features":[318]},{"name":"NetworkCategoryUnchanged","features":[318]},{"name":"NetworkCategoryUnknown","features":[318]},{"name":"NetworkConnectivityCostHintFixed","features":[318]},{"name":"NetworkConnectivityCostHintUnknown","features":[318]},{"name":"NetworkConnectivityCostHintUnrestricted","features":[318]},{"name":"NetworkConnectivityCostHintVariable","features":[318]},{"name":"NetworkConnectivityLevelHintConstrainedInternetAccess","features":[318]},{"name":"NetworkConnectivityLevelHintHidden","features":[318]},{"name":"NetworkConnectivityLevelHintInternetAccess","features":[318]},{"name":"NetworkConnectivityLevelHintLocalAccess","features":[318]},{"name":"NetworkConnectivityLevelHintNone","features":[318]},{"name":"NetworkConnectivityLevelHintUnknown","features":[318]},{"name":"NlatAnycast","features":[318]},{"name":"NlatBroadcast","features":[318]},{"name":"NlatInvalid","features":[318]},{"name":"NlatMulticast","features":[318]},{"name":"NlatUnicast","features":[318]},{"name":"NlatUnspecified","features":[318]},{"name":"NlbwDisabled","features":[318]},{"name":"NlbwEnabled","features":[318]},{"name":"NlbwUnchanged","features":[318]},{"name":"NldsDeprecated","features":[318]},{"name":"NldsDuplicate","features":[318]},{"name":"NldsInvalid","features":[318]},{"name":"NldsPreferred","features":[318]},{"name":"NldsTentative","features":[318]},{"name":"NlincCategoryStateMax","features":[318]},{"name":"NlincCategoryUnknown","features":[318]},{"name":"NlincDomainAuthenticated","features":[318]},{"name":"NlincPrivate","features":[318]},{"name":"NlincPublic","features":[318]},{"name":"NlnsDelay","features":[318]},{"name":"NlnsIncomplete","features":[318]},{"name":"NlnsMaximum","features":[318]},{"name":"NlnsPermanent","features":[318]},{"name":"NlnsProbe","features":[318]},{"name":"NlnsReachable","features":[318]},{"name":"NlnsStale","features":[318]},{"name":"NlnsUnreachable","features":[318]},{"name":"Nlro6to4","features":[318]},{"name":"NlroDHCP","features":[318]},{"name":"NlroManual","features":[318]},{"name":"NlroRouterAdvertisement","features":[318]},{"name":"NlroWellKnown","features":[318]},{"name":"NlsoDhcp","features":[318]},{"name":"NlsoLinkLayerAddress","features":[318]},{"name":"NlsoManual","features":[318]},{"name":"NlsoOther","features":[318]},{"name":"NlsoRandom","features":[318]},{"name":"NlsoWellKnown","features":[318]},{"name":"PFL_HIDDEN","features":[318]},{"name":"PFL_MATCHES_PROTOCOL_ZERO","features":[318]},{"name":"PFL_MULTIPLE_PROTO_ENTRIES","features":[318]},{"name":"PFL_NETWORKDIRECT_PROVIDER","features":[318]},{"name":"PFL_RECOMMENDED_PROTO_ENTRY","features":[318]},{"name":"PF_APPLETALK","features":[318]},{"name":"PF_ATM","features":[318]},{"name":"PF_BAN","features":[318]},{"name":"PF_CCITT","features":[318]},{"name":"PF_CHAOS","features":[318]},{"name":"PF_DATAKIT","features":[318]},{"name":"PF_DECnet","features":[318]},{"name":"PF_DLI","features":[318]},{"name":"PF_ECMA","features":[318]},{"name":"PF_FIREFOX","features":[318]},{"name":"PF_HYLINK","features":[318]},{"name":"PF_IMPLINK","features":[318]},{"name":"PF_IPX","features":[318]},{"name":"PF_IRDA","features":[318]},{"name":"PF_ISO","features":[318]},{"name":"PF_LAT","features":[318]},{"name":"PF_MAX","features":[318]},{"name":"PF_NS","features":[318]},{"name":"PF_OSI","features":[318]},{"name":"PF_PUP","features":[318]},{"name":"PF_SNA","features":[318]},{"name":"PF_UNIX","features":[318]},{"name":"PF_UNKNOWN1","features":[318]},{"name":"PF_VOICEVIEW","features":[318]},{"name":"PI_ALLOWED","features":[318]},{"name":"PI_NUMBER_NOT_AVAILABLE","features":[318]},{"name":"PI_RESTRICTED","features":[318]},{"name":"PMTUD_STATE","features":[318]},{"name":"POLLERR","features":[318]},{"name":"POLLHUP","features":[318]},{"name":"POLLIN","features":[318]},{"name":"POLLNVAL","features":[318]},{"name":"POLLOUT","features":[318]},{"name":"POLLPRI","features":[318]},{"name":"POLLRDBAND","features":[318]},{"name":"POLLRDNORM","features":[318]},{"name":"POLLWRBAND","features":[318]},{"name":"POLLWRNORM","features":[318]},{"name":"PRIORITY_STATUS","features":[318]},{"name":"PROP_ADDRESSES","features":[318]},{"name":"PROP_ALL","features":[318]},{"name":"PROP_COMMENT","features":[318]},{"name":"PROP_DISPLAY_HINT","features":[318]},{"name":"PROP_LOCALE","features":[318]},{"name":"PROP_MACHINE","features":[318]},{"name":"PROP_SD","features":[318]},{"name":"PROP_START_TIME","features":[318]},{"name":"PROP_VERSION","features":[318]},{"name":"PROTECTION_LEVEL_DEFAULT","features":[318]},{"name":"PROTECTION_LEVEL_EDGERESTRICTED","features":[318]},{"name":"PROTECTION_LEVEL_RESTRICTED","features":[318]},{"name":"PROTECTION_LEVEL_UNRESTRICTED","features":[318]},{"name":"PROTOCOL_INFOA","features":[318]},{"name":"PROTOCOL_INFOW","features":[318]},{"name":"PROTOENT","features":[318]},{"name":"PROTO_IP_BBN","features":[318]},{"name":"PROTO_IP_BGP","features":[318]},{"name":"PROTO_IP_CISCO","features":[318]},{"name":"PROTO_IP_DHCP","features":[318]},{"name":"PROTO_IP_DVMRP","features":[318]},{"name":"PROTO_IP_EGP","features":[318]},{"name":"PROTO_IP_EIGRP","features":[318]},{"name":"PROTO_IP_ES_IS","features":[318]},{"name":"PROTO_IP_GGP","features":[318]},{"name":"PROTO_IP_HELLO","features":[318]},{"name":"PROTO_IP_ICMP","features":[318]},{"name":"PROTO_IP_IDPR","features":[318]},{"name":"PROTO_IP_IS_IS","features":[318]},{"name":"PROTO_IP_LOCAL","features":[318]},{"name":"PROTO_IP_NETMGMT","features":[318]},{"name":"PROTO_IP_NT_AUTOSTATIC","features":[318]},{"name":"PROTO_IP_NT_STATIC","features":[318]},{"name":"PROTO_IP_NT_STATIC_NON_DOD","features":[318]},{"name":"PROTO_IP_OSPF","features":[318]},{"name":"PROTO_IP_OTHER","features":[318]},{"name":"PROTO_IP_RIP","features":[318]},{"name":"PROTO_IP_RPL","features":[318]},{"name":"PVD_CONFIG","features":[318]},{"name":"ProcessSocketNotifications","features":[305,318,310]},{"name":"ProviderInfoAudit","features":[318]},{"name":"ProviderInfoLspCategories","features":[318]},{"name":"ProviderLevel_None","features":[318]},{"name":"ProviderLevel_Primary","features":[318]},{"name":"ProviderLevel_Secondary","features":[318]},{"name":"ProviderType_Application","features":[318]},{"name":"ProviderType_Service","features":[318]},{"name":"Q2931_IE","features":[318]},{"name":"Q2931_IE_TYPE","features":[318]},{"name":"QOS","features":[318]},{"name":"QOS_CLASS0","features":[318]},{"name":"QOS_CLASS1","features":[318]},{"name":"QOS_CLASS2","features":[318]},{"name":"QOS_CLASS3","features":[318]},{"name":"QOS_CLASS4","features":[318]},{"name":"RCVALL_IF","features":[318]},{"name":"RCVALL_IPLEVEL","features":[318]},{"name":"RCVALL_OFF","features":[318]},{"name":"RCVALL_ON","features":[318]},{"name":"RCVALL_SOCKETLEVELONLY","features":[318]},{"name":"RCVALL_VALUE","features":[318]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY","features":[318]},{"name":"REAL_TIME_NOTIFICATION_CAPABILITY_EX","features":[318]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT","features":[318]},{"name":"REAL_TIME_NOTIFICATION_SETTING_INPUT_EX","features":[305,318]},{"name":"REAL_TIME_NOTIFICATION_SETTING_OUTPUT","features":[318]},{"name":"RESOURCEDISPLAYTYPE_DOMAIN","features":[318]},{"name":"RESOURCEDISPLAYTYPE_FILE","features":[318]},{"name":"RESOURCEDISPLAYTYPE_GENERIC","features":[318]},{"name":"RESOURCEDISPLAYTYPE_GROUP","features":[318]},{"name":"RESOURCEDISPLAYTYPE_SERVER","features":[318]},{"name":"RESOURCEDISPLAYTYPE_SHARE","features":[318]},{"name":"RESOURCEDISPLAYTYPE_TREE","features":[318]},{"name":"RESOURCE_DISPLAY_TYPE","features":[318]},{"name":"RESULT_IS_ADDED","features":[318]},{"name":"RESULT_IS_ALIAS","features":[318]},{"name":"RESULT_IS_CHANGED","features":[318]},{"name":"RESULT_IS_DELETED","features":[318]},{"name":"RES_FIND_MULTIPLE","features":[318]},{"name":"RES_FLUSH_CACHE","features":[318]},{"name":"RES_SERVICE","features":[318]},{"name":"RES_SOFT_SEARCH","features":[318]},{"name":"RES_UNUSED_1","features":[318]},{"name":"RIORESULT","features":[318]},{"name":"RIO_BUF","features":[318]},{"name":"RIO_BUFFERID","features":[318]},{"name":"RIO_CMSG_BUFFER","features":[318]},{"name":"RIO_CORRUPT_CQ","features":[318]},{"name":"RIO_CQ","features":[318]},{"name":"RIO_EVENT_COMPLETION","features":[318]},{"name":"RIO_EXTENSION_FUNCTION_TABLE","features":[305,318]},{"name":"RIO_IOCP_COMPLETION","features":[318]},{"name":"RIO_MAX_CQ_SIZE","features":[318]},{"name":"RIO_MSG_COMMIT_ONLY","features":[318]},{"name":"RIO_MSG_DEFER","features":[318]},{"name":"RIO_MSG_DONT_NOTIFY","features":[318]},{"name":"RIO_MSG_WAITALL","features":[318]},{"name":"RIO_NOTIFICATION_COMPLETION","features":[305,318]},{"name":"RIO_NOTIFICATION_COMPLETION_TYPE","features":[318]},{"name":"RIO_RQ","features":[318]},{"name":"RM_ADD_RECEIVE_IF","features":[318]},{"name":"RM_DEL_RECEIVE_IF","features":[318]},{"name":"RM_FEC_INFO","features":[305,318]},{"name":"RM_FLUSHCACHE","features":[318]},{"name":"RM_HIGH_SPEED_INTRANET_OPT","features":[318]},{"name":"RM_LATEJOIN","features":[318]},{"name":"RM_OPTIONSBASE","features":[318]},{"name":"RM_RATE_WINDOW_SIZE","features":[318]},{"name":"RM_RECEIVER_STATISTICS","features":[318]},{"name":"RM_RECEIVER_STATS","features":[318]},{"name":"RM_SENDER_STATISTICS","features":[318]},{"name":"RM_SENDER_STATS","features":[318]},{"name":"RM_SENDER_WINDOW_ADVANCE_METHOD","features":[318]},{"name":"RM_SEND_WINDOW","features":[318]},{"name":"RM_SEND_WINDOW_ADV_RATE","features":[318]},{"name":"RM_SET_MCAST_TTL","features":[318]},{"name":"RM_SET_MESSAGE_BOUNDARY","features":[318]},{"name":"RM_SET_SEND_IF","features":[318]},{"name":"RM_USE_FEC","features":[318]},{"name":"RNRSERVICE_DELETE","features":[318]},{"name":"RNRSERVICE_DEREGISTER","features":[318]},{"name":"RNRSERVICE_REGISTER","features":[318]},{"name":"RSS_SCALABILITY_INFO","features":[305,318]},{"name":"RouteProtocolBbn","features":[318]},{"name":"RouteProtocolBgp","features":[318]},{"name":"RouteProtocolCisco","features":[318]},{"name":"RouteProtocolDhcp","features":[318]},{"name":"RouteProtocolDvmrp","features":[318]},{"name":"RouteProtocolEgp","features":[318]},{"name":"RouteProtocolEigrp","features":[318]},{"name":"RouteProtocolEsIs","features":[318]},{"name":"RouteProtocolGgp","features":[318]},{"name":"RouteProtocolHello","features":[318]},{"name":"RouteProtocolIcmp","features":[318]},{"name":"RouteProtocolIdpr","features":[318]},{"name":"RouteProtocolIsIs","features":[318]},{"name":"RouteProtocolLocal","features":[318]},{"name":"RouteProtocolNetMgmt","features":[318]},{"name":"RouteProtocolOspf","features":[318]},{"name":"RouteProtocolOther","features":[318]},{"name":"RouteProtocolRip","features":[318]},{"name":"RouteProtocolRpl","features":[318]},{"name":"RouterDiscoveryDhcp","features":[318]},{"name":"RouterDiscoveryDisabled","features":[318]},{"name":"RouterDiscoveryEnabled","features":[318]},{"name":"RouterDiscoveryUnchanged","features":[318]},{"name":"RtlEthernetAddressToStringA","features":[318]},{"name":"RtlEthernetAddressToStringW","features":[318]},{"name":"RtlEthernetStringToAddressA","features":[318]},{"name":"RtlEthernetStringToAddressW","features":[318]},{"name":"RtlIpv4AddressToStringA","features":[318]},{"name":"RtlIpv4AddressToStringExA","features":[318]},{"name":"RtlIpv4AddressToStringExW","features":[318]},{"name":"RtlIpv4AddressToStringW","features":[318]},{"name":"RtlIpv4StringToAddressA","features":[305,318]},{"name":"RtlIpv4StringToAddressExA","features":[305,318]},{"name":"RtlIpv4StringToAddressExW","features":[305,318]},{"name":"RtlIpv4StringToAddressW","features":[305,318]},{"name":"RtlIpv6AddressToStringA","features":[318]},{"name":"RtlIpv6AddressToStringExA","features":[318]},{"name":"RtlIpv6AddressToStringExW","features":[318]},{"name":"RtlIpv6AddressToStringW","features":[318]},{"name":"RtlIpv6StringToAddressA","features":[318]},{"name":"RtlIpv6StringToAddressExA","features":[318]},{"name":"RtlIpv6StringToAddressExW","features":[318]},{"name":"RtlIpv6StringToAddressW","features":[318]},{"name":"SAP_FIELD_ABSENT","features":[318]},{"name":"SAP_FIELD_ANY","features":[318]},{"name":"SAP_FIELD_ANY_AESA_REST","features":[318]},{"name":"SAP_FIELD_ANY_AESA_SEL","features":[318]},{"name":"SCOPE_ID","features":[318]},{"name":"SCOPE_LEVEL","features":[318]},{"name":"SD_BOTH","features":[318]},{"name":"SD_RECEIVE","features":[318]},{"name":"SD_SEND","features":[318]},{"name":"SECURITY_PROTOCOL_NONE","features":[318]},{"name":"SENDER_DEFAULT_LATE_JOINER_PERCENTAGE","features":[318]},{"name":"SENDER_DEFAULT_RATE_KBITS_PER_SEC","features":[318]},{"name":"SENDER_DEFAULT_WINDOW_ADV_PERCENTAGE","features":[318]},{"name":"SENDER_MAX_LATE_JOINER_PERCENTAGE","features":[318]},{"name":"SEND_RECV_FLAGS","features":[318]},{"name":"SERVENT","features":[318]},{"name":"SERVENT","features":[318]},{"name":"SERVICE_ADDRESS","features":[318]},{"name":"SERVICE_ADDRESSES","features":[318]},{"name":"SERVICE_ADDRESS_FLAG_RPC_CN","features":[318]},{"name":"SERVICE_ADDRESS_FLAG_RPC_DG","features":[318]},{"name":"SERVICE_ADDRESS_FLAG_RPC_NB","features":[318]},{"name":"SERVICE_ADD_TYPE","features":[318]},{"name":"SERVICE_ASYNC_INFO","features":[305,318]},{"name":"SERVICE_DELETE_TYPE","features":[318]},{"name":"SERVICE_DEREGISTER","features":[318]},{"name":"SERVICE_FLAG_DEFER","features":[318]},{"name":"SERVICE_FLAG_HARD","features":[318]},{"name":"SERVICE_FLUSH","features":[318]},{"name":"SERVICE_INFOA","features":[318,356]},{"name":"SERVICE_INFOW","features":[318,356]},{"name":"SERVICE_LOCAL","features":[318]},{"name":"SERVICE_MULTIPLE","features":[318]},{"name":"SERVICE_REGISTER","features":[318]},{"name":"SERVICE_RESOURCE","features":[318]},{"name":"SERVICE_SERVICE","features":[318]},{"name":"SERVICE_TYPE_INFO","features":[318]},{"name":"SERVICE_TYPE_INFO_ABSA","features":[318]},{"name":"SERVICE_TYPE_INFO_ABSW","features":[318]},{"name":"SERVICE_TYPE_VALUE","features":[318]},{"name":"SERVICE_TYPE_VALUE_ABSA","features":[318]},{"name":"SERVICE_TYPE_VALUE_ABSW","features":[318]},{"name":"SERVICE_TYPE_VALUE_CONN","features":[318]},{"name":"SERVICE_TYPE_VALUE_CONNA","features":[318]},{"name":"SERVICE_TYPE_VALUE_CONNW","features":[318]},{"name":"SERVICE_TYPE_VALUE_IPXPORTA","features":[318]},{"name":"SERVICE_TYPE_VALUE_IPXPORTW","features":[318]},{"name":"SERVICE_TYPE_VALUE_OBJECTID","features":[318]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDA","features":[318]},{"name":"SERVICE_TYPE_VALUE_OBJECTIDW","features":[318]},{"name":"SERVICE_TYPE_VALUE_SAPID","features":[318]},{"name":"SERVICE_TYPE_VALUE_SAPIDA","features":[318]},{"name":"SERVICE_TYPE_VALUE_SAPIDW","features":[318]},{"name":"SERVICE_TYPE_VALUE_TCPPORT","features":[318]},{"name":"SERVICE_TYPE_VALUE_TCPPORTA","features":[318]},{"name":"SERVICE_TYPE_VALUE_TCPPORTW","features":[318]},{"name":"SERVICE_TYPE_VALUE_UDPPORT","features":[318]},{"name":"SERVICE_TYPE_VALUE_UDPPORTA","features":[318]},{"name":"SERVICE_TYPE_VALUE_UDPPORTW","features":[318]},{"name":"SET_SERVICE_OPERATION","features":[318]},{"name":"SET_SERVICE_PARTIAL_SUCCESS","features":[318]},{"name":"SG_CONSTRAINED_GROUP","features":[318]},{"name":"SG_UNCONSTRAINED_GROUP","features":[318]},{"name":"SIOCATMARK","features":[318]},{"name":"SIOCGHIWAT","features":[318]},{"name":"SIOCGLOWAT","features":[318]},{"name":"SIOCSHIWAT","features":[318]},{"name":"SIOCSLOWAT","features":[318]},{"name":"SIO_ABSORB_RTRALERT","features":[318]},{"name":"SIO_ACQUIRE_PORT_RESERVATION","features":[318]},{"name":"SIO_ADDRESS_LIST_CHANGE","features":[318]},{"name":"SIO_ADDRESS_LIST_QUERY","features":[318]},{"name":"SIO_ADDRESS_LIST_SORT","features":[318]},{"name":"SIO_AF_UNIX_GETPEERPID","features":[318]},{"name":"SIO_AF_UNIX_SETBINDPARENTPATH","features":[318]},{"name":"SIO_AF_UNIX_SETCONNPARENTPATH","features":[318]},{"name":"SIO_APPLY_TRANSPORT_SETTING","features":[318]},{"name":"SIO_ASSOCIATE_HANDLE","features":[318]},{"name":"SIO_ASSOCIATE_PORT_RESERVATION","features":[318]},{"name":"SIO_ASSOCIATE_PVC","features":[318]},{"name":"SIO_BASE_HANDLE","features":[318]},{"name":"SIO_BSP_HANDLE","features":[318]},{"name":"SIO_BSP_HANDLE_POLL","features":[318]},{"name":"SIO_BSP_HANDLE_SELECT","features":[318]},{"name":"SIO_CPU_AFFINITY","features":[318]},{"name":"SIO_DELETE_PEER_TARGET_NAME","features":[318]},{"name":"SIO_ENABLE_CIRCULAR_QUEUEING","features":[318]},{"name":"SIO_EXT_POLL","features":[318]},{"name":"SIO_EXT_SELECT","features":[318]},{"name":"SIO_EXT_SENDMSG","features":[318]},{"name":"SIO_FIND_ROUTE","features":[318]},{"name":"SIO_FLUSH","features":[318]},{"name":"SIO_GET_ATM_ADDRESS","features":[318]},{"name":"SIO_GET_ATM_CONNECTION_ID","features":[318]},{"name":"SIO_GET_BROADCAST_ADDRESS","features":[318]},{"name":"SIO_GET_EXTENSION_FUNCTION_POINTER","features":[318]},{"name":"SIO_GET_GROUP_QOS","features":[318]},{"name":"SIO_GET_MULTIPLE_EXTENSION_FUNCTION_POINTER","features":[318]},{"name":"SIO_GET_NUMBER_OF_ATM_DEVICES","features":[318]},{"name":"SIO_GET_QOS","features":[318]},{"name":"SIO_GET_TX_TIMESTAMP","features":[318]},{"name":"SIO_INDEX_ADD_MCAST","features":[318]},{"name":"SIO_INDEX_BIND","features":[318]},{"name":"SIO_INDEX_DEL_MCAST","features":[318]},{"name":"SIO_INDEX_MCASTIF","features":[318]},{"name":"SIO_KEEPALIVE_VALS","features":[318]},{"name":"SIO_LIMIT_BROADCASTS","features":[318]},{"name":"SIO_LOOPBACK_FAST_PATH","features":[318]},{"name":"SIO_MULTICAST_SCOPE","features":[318]},{"name":"SIO_MULTIPOINT_LOOPBACK","features":[318]},{"name":"SIO_NSP_NOTIFY_CHANGE","features":[318]},{"name":"SIO_PRIORITY_HINT","features":[318]},{"name":"SIO_QUERY_RSS_PROCESSOR_INFO","features":[318]},{"name":"SIO_QUERY_RSS_SCALABILITY_INFO","features":[318]},{"name":"SIO_QUERY_SECURITY","features":[318]},{"name":"SIO_QUERY_TARGET_PNP_HANDLE","features":[318]},{"name":"SIO_QUERY_TRANSPORT_SETTING","features":[318]},{"name":"SIO_QUERY_WFP_ALE_ENDPOINT_HANDLE","features":[318]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_CONTEXT","features":[318]},{"name":"SIO_QUERY_WFP_CONNECTION_REDIRECT_RECORDS","features":[318]},{"name":"SIO_RCVALL","features":[318]},{"name":"SIO_RCVALL_IF","features":[318]},{"name":"SIO_RCVALL_IGMPMCAST","features":[318]},{"name":"SIO_RCVALL_MCAST","features":[318]},{"name":"SIO_RCVALL_MCAST_IF","features":[318]},{"name":"SIO_RELEASE_PORT_RESERVATION","features":[318]},{"name":"SIO_RESERVED_1","features":[318]},{"name":"SIO_RESERVED_2","features":[318]},{"name":"SIO_ROUTING_INTERFACE_CHANGE","features":[318]},{"name":"SIO_ROUTING_INTERFACE_QUERY","features":[318]},{"name":"SIO_SET_COMPATIBILITY_MODE","features":[318]},{"name":"SIO_SET_GROUP_QOS","features":[318]},{"name":"SIO_SET_PEER_TARGET_NAME","features":[318]},{"name":"SIO_SET_PRIORITY_HINT","features":[318]},{"name":"SIO_SET_QOS","features":[318]},{"name":"SIO_SET_SECURITY","features":[318]},{"name":"SIO_SET_WFP_CONNECTION_REDIRECT_RECORDS","features":[318]},{"name":"SIO_SOCKET_CLOSE_NOTIFY","features":[318]},{"name":"SIO_SOCKET_USAGE_NOTIFICATION","features":[318]},{"name":"SIO_TCP_INFO","features":[318]},{"name":"SIO_TCP_INITIAL_RTO","features":[318]},{"name":"SIO_TCP_SET_ACK_FREQUENCY","features":[318]},{"name":"SIO_TCP_SET_ICW","features":[318]},{"name":"SIO_TIMESTAMPING","features":[318]},{"name":"SIO_TRANSLATE_HANDLE","features":[318]},{"name":"SIO_UCAST_IF","features":[318]},{"name":"SIO_UDP_CONNRESET","features":[318]},{"name":"SIO_UDP_NETRESET","features":[318]},{"name":"SIZEOF_IP_OPT_ROUTERALERT","features":[318]},{"name":"SIZEOF_IP_OPT_ROUTING_HEADER","features":[318]},{"name":"SIZEOF_IP_OPT_SECURITY","features":[318]},{"name":"SIZEOF_IP_OPT_STREAMIDENTIFIER","features":[318]},{"name":"SIZEOF_IP_OPT_TIMESTAMP_HEADER","features":[318]},{"name":"SI_NETWORK","features":[318]},{"name":"SI_USER_FAILED","features":[318]},{"name":"SI_USER_NOT_SCREENED","features":[318]},{"name":"SI_USER_PASSED","features":[318]},{"name":"SNAP_CONTROL","features":[318]},{"name":"SNAP_DSAP","features":[318]},{"name":"SNAP_HEADER","features":[318]},{"name":"SNAP_OUI","features":[318]},{"name":"SNAP_SSAP","features":[318]},{"name":"SOCKADDR","features":[318]},{"name":"SOCKADDR_ATM","features":[318]},{"name":"SOCKADDR_DL","features":[318]},{"name":"SOCKADDR_IN","features":[318]},{"name":"SOCKADDR_IN6","features":[318]},{"name":"SOCKADDR_IN6_PAIR","features":[318]},{"name":"SOCKADDR_IN6_W2KSP1","features":[318]},{"name":"SOCKADDR_INET","features":[318]},{"name":"SOCKADDR_IPX","features":[318]},{"name":"SOCKADDR_IRDA","features":[318]},{"name":"SOCKADDR_NB","features":[318]},{"name":"SOCKADDR_STORAGE","features":[318]},{"name":"SOCKADDR_STORAGE_XP","features":[318]},{"name":"SOCKADDR_TP","features":[318]},{"name":"SOCKADDR_UN","features":[318]},{"name":"SOCKADDR_VNS","features":[318]},{"name":"SOCKET","features":[318]},{"name":"SOCKET_ADDRESS","features":[318]},{"name":"SOCKET_ADDRESS_LIST","features":[318]},{"name":"SOCKET_DEFAULT2_QM_POLICY","features":[318]},{"name":"SOCKET_ERROR","features":[318]},{"name":"SOCKET_INFO_CONNECTION_ENCRYPTED","features":[318]},{"name":"SOCKET_INFO_CONNECTION_IMPERSONATED","features":[318]},{"name":"SOCKET_INFO_CONNECTION_SECURED","features":[318]},{"name":"SOCKET_PEER_TARGET_NAME","features":[318]},{"name":"SOCKET_PRIORITY_HINT","features":[318]},{"name":"SOCKET_PROCESSOR_AFFINITY","features":[318,311]},{"name":"SOCKET_QUERY_IPSEC2_ABORT_CONNECTION_ON_FIELD_CHANGE","features":[318]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_MM_SA_ID","features":[318]},{"name":"SOCKET_QUERY_IPSEC2_FIELD_MASK_QM_SA_ID","features":[318]},{"name":"SOCKET_SECURITY_PROTOCOL","features":[318]},{"name":"SOCKET_SECURITY_PROTOCOL_DEFAULT","features":[318]},{"name":"SOCKET_SECURITY_PROTOCOL_INVALID","features":[318]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC","features":[318]},{"name":"SOCKET_SECURITY_PROTOCOL_IPSEC2","features":[318]},{"name":"SOCKET_SECURITY_QUERY_INFO","features":[318]},{"name":"SOCKET_SECURITY_QUERY_INFO_IPSEC2","features":[318]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE","features":[318]},{"name":"SOCKET_SECURITY_QUERY_TEMPLATE_IPSEC2","features":[318]},{"name":"SOCKET_SECURITY_SETTINGS","features":[318]},{"name":"SOCKET_SECURITY_SETTINGS_IPSEC","features":[318]},{"name":"SOCKET_SETTINGS_ALLOW_INSECURE","features":[318]},{"name":"SOCKET_SETTINGS_GUARANTEE_ENCRYPTION","features":[318]},{"name":"SOCKET_SETTINGS_IPSEC_ALLOW_FIRST_INBOUND_PKT_UNENCRYPTED","features":[318]},{"name":"SOCKET_SETTINGS_IPSEC_OPTIONAL_PEER_NAME_VERIFICATION","features":[318]},{"name":"SOCKET_SETTINGS_IPSEC_PEER_NAME_IS_RAW_FORMAT","features":[318]},{"name":"SOCKET_SETTINGS_IPSEC_SKIP_FILTER_INSTANTIATION","features":[318]},{"name":"SOCKET_USAGE_TYPE","features":[318]},{"name":"SOCK_DGRAM","features":[318]},{"name":"SOCK_NOTIFY_EVENT_ERR","features":[318]},{"name":"SOCK_NOTIFY_EVENT_HANGUP","features":[318]},{"name":"SOCK_NOTIFY_EVENT_IN","features":[318]},{"name":"SOCK_NOTIFY_EVENT_OUT","features":[318]},{"name":"SOCK_NOTIFY_EVENT_REMOVE","features":[318]},{"name":"SOCK_NOTIFY_OP_DISABLE","features":[318]},{"name":"SOCK_NOTIFY_OP_ENABLE","features":[318]},{"name":"SOCK_NOTIFY_OP_NONE","features":[318]},{"name":"SOCK_NOTIFY_OP_REMOVE","features":[318]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_HANGUP","features":[318]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_IN","features":[318]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_NONE","features":[318]},{"name":"SOCK_NOTIFY_REGISTER_EVENT_OUT","features":[318]},{"name":"SOCK_NOTIFY_REGISTRATION","features":[318]},{"name":"SOCK_NOTIFY_TRIGGER_EDGE","features":[318]},{"name":"SOCK_NOTIFY_TRIGGER_LEVEL","features":[318]},{"name":"SOCK_NOTIFY_TRIGGER_ONESHOT","features":[318]},{"name":"SOCK_NOTIFY_TRIGGER_PERSISTENT","features":[318]},{"name":"SOCK_RAW","features":[318]},{"name":"SOCK_RDM","features":[318]},{"name":"SOCK_SEQPACKET","features":[318]},{"name":"SOCK_STREAM","features":[318]},{"name":"SOL_IP","features":[318]},{"name":"SOL_IPV6","features":[318]},{"name":"SOL_IRLMP","features":[318]},{"name":"SOL_SOCKET","features":[318]},{"name":"SOMAXCONN","features":[318]},{"name":"SO_ACCEPTCONN","features":[318]},{"name":"SO_BROADCAST","features":[318]},{"name":"SO_BSP_STATE","features":[318]},{"name":"SO_COMPARTMENT_ID","features":[318]},{"name":"SO_CONDITIONAL_ACCEPT","features":[318]},{"name":"SO_CONNDATA","features":[318]},{"name":"SO_CONNDATALEN","features":[318]},{"name":"SO_CONNECT_TIME","features":[318]},{"name":"SO_CONNOPT","features":[318]},{"name":"SO_CONNOPTLEN","features":[318]},{"name":"SO_DEBUG","features":[318]},{"name":"SO_DISCDATA","features":[318]},{"name":"SO_DISCDATALEN","features":[318]},{"name":"SO_DISCOPT","features":[318]},{"name":"SO_DISCOPTLEN","features":[318]},{"name":"SO_DONTLINGER","features":[318]},{"name":"SO_DONTROUTE","features":[318]},{"name":"SO_ERROR","features":[318]},{"name":"SO_EXCLUSIVEADDRUSE","features":[318]},{"name":"SO_GROUP_ID","features":[318]},{"name":"SO_GROUP_PRIORITY","features":[318]},{"name":"SO_KEEPALIVE","features":[318]},{"name":"SO_LINGER","features":[318]},{"name":"SO_MAXDG","features":[318]},{"name":"SO_MAXPATHDG","features":[318]},{"name":"SO_MAX_MSG_SIZE","features":[318]},{"name":"SO_OOBINLINE","features":[318]},{"name":"SO_OPENTYPE","features":[318]},{"name":"SO_ORIGINAL_DST","features":[318]},{"name":"SO_PAUSE_ACCEPT","features":[318]},{"name":"SO_PORT_SCALABILITY","features":[318]},{"name":"SO_PROTOCOL_INFO","features":[318]},{"name":"SO_PROTOCOL_INFOA","features":[318]},{"name":"SO_PROTOCOL_INFOW","features":[318]},{"name":"SO_RANDOMIZE_PORT","features":[318]},{"name":"SO_RCVBUF","features":[318]},{"name":"SO_RCVLOWAT","features":[318]},{"name":"SO_RCVTIMEO","features":[318]},{"name":"SO_REUSEADDR","features":[318]},{"name":"SO_REUSE_MULTICASTPORT","features":[318]},{"name":"SO_REUSE_UNICASTPORT","features":[318]},{"name":"SO_SNDBUF","features":[318]},{"name":"SO_SNDLOWAT","features":[318]},{"name":"SO_SNDTIMEO","features":[318]},{"name":"SO_SYNCHRONOUS_ALERT","features":[318]},{"name":"SO_SYNCHRONOUS_NONALERT","features":[318]},{"name":"SO_TIMESTAMP","features":[318]},{"name":"SO_TIMESTAMP_ID","features":[318]},{"name":"SO_TYPE","features":[318]},{"name":"SO_UPDATE_ACCEPT_CONTEXT","features":[318]},{"name":"SO_UPDATE_CONNECT_CONTEXT","features":[318]},{"name":"SO_USELOOPBACK","features":[318]},{"name":"SYSTEM_CRITICAL_SOCKET","features":[318]},{"name":"ScopeLevelAdmin","features":[318]},{"name":"ScopeLevelCount","features":[318]},{"name":"ScopeLevelGlobal","features":[318]},{"name":"ScopeLevelInterface","features":[318]},{"name":"ScopeLevelLink","features":[318]},{"name":"ScopeLevelOrganization","features":[318]},{"name":"ScopeLevelSite","features":[318]},{"name":"ScopeLevelSubnet","features":[318]},{"name":"SetAddrInfoExA","features":[305,318,356,310]},{"name":"SetAddrInfoExW","features":[305,318,356,310]},{"name":"SetServiceA","features":[305,318,356]},{"name":"SetServiceW","features":[305,318,356]},{"name":"SetSocketMediaStreamingMode","features":[305,318]},{"name":"SocketMaximumPriorityHintType","features":[318]},{"name":"SocketPriorityHintLow","features":[318]},{"name":"SocketPriorityHintNormal","features":[318]},{"name":"SocketPriorityHintVeryLow","features":[318]},{"name":"TCPSTATE","features":[318]},{"name":"TCPSTATE_CLOSED","features":[318]},{"name":"TCPSTATE_CLOSE_WAIT","features":[318]},{"name":"TCPSTATE_CLOSING","features":[318]},{"name":"TCPSTATE_ESTABLISHED","features":[318]},{"name":"TCPSTATE_FIN_WAIT_1","features":[318]},{"name":"TCPSTATE_FIN_WAIT_2","features":[318]},{"name":"TCPSTATE_LAST_ACK","features":[318]},{"name":"TCPSTATE_LISTEN","features":[318]},{"name":"TCPSTATE_MAX","features":[318]},{"name":"TCPSTATE_SYN_RCVD","features":[318]},{"name":"TCPSTATE_SYN_SENT","features":[318]},{"name":"TCPSTATE_TIME_WAIT","features":[318]},{"name":"TCP_ACK_FREQUENCY_PARAMETERS","features":[318]},{"name":"TCP_ATMARK","features":[318]},{"name":"TCP_BSDURGENT","features":[318]},{"name":"TCP_CONGESTION_ALGORITHM","features":[318]},{"name":"TCP_DELAY_FIN_ACK","features":[318]},{"name":"TCP_EXPEDITED_1122","features":[318]},{"name":"TCP_FAIL_CONNECT_ON_ICMP_ERROR","features":[318]},{"name":"TCP_FASTOPEN","features":[318]},{"name":"TCP_HDR","features":[318]},{"name":"TCP_ICMP_ERROR_INFO","features":[318]},{"name":"TCP_ICW_LEVEL","features":[318]},{"name":"TCP_ICW_LEVEL_AGGRESSIVE","features":[318]},{"name":"TCP_ICW_LEVEL_COMPAT","features":[318]},{"name":"TCP_ICW_LEVEL_DEFAULT","features":[318]},{"name":"TCP_ICW_LEVEL_EXPERIMENTAL","features":[318]},{"name":"TCP_ICW_LEVEL_HIGH","features":[318]},{"name":"TCP_ICW_LEVEL_MAX","features":[318]},{"name":"TCP_ICW_LEVEL_VERY_HIGH","features":[318]},{"name":"TCP_ICW_PARAMETERS","features":[318]},{"name":"TCP_INFO_v0","features":[305,318]},{"name":"TCP_INFO_v1","features":[305,318]},{"name":"TCP_INITIAL_RTO_DEFAULT_MAX_SYN_RETRANSMISSIONS","features":[318]},{"name":"TCP_INITIAL_RTO_DEFAULT_RTT","features":[318]},{"name":"TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS","features":[318]},{"name":"TCP_INITIAL_RTO_PARAMETERS","features":[318]},{"name":"TCP_INITIAL_RTO_UNSPECIFIED_MAX_SYN_RETRANSMISSIONS","features":[318]},{"name":"TCP_KEEPALIVE","features":[318]},{"name":"TCP_KEEPCNT","features":[318]},{"name":"TCP_KEEPIDLE","features":[318]},{"name":"TCP_KEEPINTVL","features":[318]},{"name":"TCP_MAXRT","features":[318]},{"name":"TCP_MAXRTMS","features":[318]},{"name":"TCP_MAXSEG","features":[318]},{"name":"TCP_NODELAY","features":[318]},{"name":"TCP_NOSYNRETRIES","features":[318]},{"name":"TCP_NOURG","features":[318]},{"name":"TCP_OFFLOAD_NOT_PREFERRED","features":[318]},{"name":"TCP_OFFLOAD_NO_PREFERENCE","features":[318]},{"name":"TCP_OFFLOAD_PREFERENCE","features":[318]},{"name":"TCP_OFFLOAD_PREFERRED","features":[318]},{"name":"TCP_OPT_FASTOPEN","features":[318]},{"name":"TCP_OPT_MSS","features":[318]},{"name":"TCP_OPT_SACK","features":[318]},{"name":"TCP_OPT_SACK_PERMITTED","features":[318]},{"name":"TCP_OPT_TS","features":[318]},{"name":"TCP_OPT_UNKNOWN","features":[318]},{"name":"TCP_OPT_WS","features":[318]},{"name":"TCP_STDURG","features":[318]},{"name":"TCP_TIMESTAMPS","features":[318]},{"name":"TF_DISCONNECT","features":[318]},{"name":"TF_REUSE_SOCKET","features":[318]},{"name":"TF_USE_DEFAULT_WORKER","features":[318]},{"name":"TF_USE_KERNEL_APC","features":[318]},{"name":"TF_USE_SYSTEM_THREAD","features":[318]},{"name":"TF_WRITE_BEHIND","features":[318]},{"name":"TH_ACK","features":[318]},{"name":"TH_CWR","features":[318]},{"name":"TH_ECE","features":[318]},{"name":"TH_FIN","features":[318]},{"name":"TH_NETDEV","features":[318]},{"name":"TH_OPT_EOL","features":[318]},{"name":"TH_OPT_FASTOPEN","features":[318]},{"name":"TH_OPT_MSS","features":[318]},{"name":"TH_OPT_NOP","features":[318]},{"name":"TH_OPT_SACK","features":[318]},{"name":"TH_OPT_SACK_PERMITTED","features":[318]},{"name":"TH_OPT_TS","features":[318]},{"name":"TH_OPT_WS","features":[318]},{"name":"TH_PSH","features":[318]},{"name":"TH_RST","features":[318]},{"name":"TH_SYN","features":[318]},{"name":"TH_TAPI","features":[318]},{"name":"TH_URG","features":[318]},{"name":"TIMESTAMPING_CONFIG","features":[318]},{"name":"TIMESTAMPING_FLAG_RX","features":[318]},{"name":"TIMESTAMPING_FLAG_TX","features":[318]},{"name":"TIMEVAL","features":[318]},{"name":"TNS_PLAN_CARRIER_ID_CODE","features":[318]},{"name":"TNS_TYPE_NATIONAL","features":[318]},{"name":"TP_DISCONNECT","features":[318]},{"name":"TP_ELEMENT_EOP","features":[318]},{"name":"TP_ELEMENT_FILE","features":[318]},{"name":"TP_ELEMENT_MEMORY","features":[318]},{"name":"TP_REUSE_SOCKET","features":[318]},{"name":"TP_USE_DEFAULT_WORKER","features":[318]},{"name":"TP_USE_KERNEL_APC","features":[318]},{"name":"TP_USE_SYSTEM_THREAD","features":[318]},{"name":"TRANSMIT_FILE_BUFFERS","features":[318]},{"name":"TRANSMIT_PACKETS_ELEMENT","features":[305,318]},{"name":"TRANSPORT_SETTING_ID","features":[318]},{"name":"TR_END_TO_END","features":[318]},{"name":"TR_NOIND","features":[318]},{"name":"TR_NO_END_TO_END","features":[318]},{"name":"TT_CBR","features":[318]},{"name":"TT_NOIND","features":[318]},{"name":"TT_VBR","features":[318]},{"name":"TUNNEL_SUB_TYPE","features":[318]},{"name":"TUNNEL_SUB_TYPE_CP","features":[318]},{"name":"TUNNEL_SUB_TYPE_HA","features":[318]},{"name":"TUNNEL_SUB_TYPE_IPTLS","features":[318]},{"name":"TUNNEL_SUB_TYPE_NONE","features":[318]},{"name":"TransmitFile","features":[305,318,310]},{"name":"UDP_CHECKSUM_COVERAGE","features":[318]},{"name":"UDP_COALESCED_INFO","features":[318]},{"name":"UDP_NOCHECKSUM","features":[318]},{"name":"UDP_RECV_MAX_COALESCED_SIZE","features":[318]},{"name":"UDP_SEND_MSG_SIZE","features":[318]},{"name":"UNIX_PATH_MAX","features":[318]},{"name":"UP_P2MP","features":[318]},{"name":"UP_P2P","features":[318]},{"name":"VLAN_TAG","features":[318]},{"name":"VNSPROTO_IPC","features":[318]},{"name":"VNSPROTO_RELIABLE_IPC","features":[318]},{"name":"VNSPROTO_SPP","features":[318]},{"name":"WCE_AF_IRDA","features":[318]},{"name":"WCE_DEVICELIST","features":[318]},{"name":"WCE_IRDA_DEVICE_INFO","features":[318]},{"name":"WCE_PF_IRDA","features":[318]},{"name":"WINDOWS_AF_IRDA","features":[318]},{"name":"WINDOWS_DEVICELIST","features":[318]},{"name":"WINDOWS_IAS_QUERY","features":[318]},{"name":"WINDOWS_IAS_SET","features":[318]},{"name":"WINDOWS_IRDA_DEVICE_INFO","features":[318]},{"name":"WINDOWS_PF_IRDA","features":[318]},{"name":"WINSOCK_SHUTDOWN_HOW","features":[318]},{"name":"WINSOCK_SOCKET_TYPE","features":[318]},{"name":"WPUCompleteOverlappedRequest","features":[305,318,310]},{"name":"WSAAccept","features":[318]},{"name":"WSAAddressToStringA","features":[318]},{"name":"WSAAddressToStringW","features":[318]},{"name":"WSAAdvertiseProvider","features":[305,318,356]},{"name":"WSAAsyncGetHostByAddr","features":[305,318]},{"name":"WSAAsyncGetHostByName","features":[305,318]},{"name":"WSAAsyncGetProtoByName","features":[305,318]},{"name":"WSAAsyncGetProtoByNumber","features":[305,318]},{"name":"WSAAsyncGetServByName","features":[305,318]},{"name":"WSAAsyncGetServByPort","features":[305,318]},{"name":"WSAAsyncSelect","features":[305,318]},{"name":"WSABASEERR","features":[318]},{"name":"WSABUF","features":[318]},{"name":"WSACOMPLETION","features":[305,318,310]},{"name":"WSACOMPLETIONTYPE","features":[318]},{"name":"WSACancelAsyncRequest","features":[305,318]},{"name":"WSACancelBlockingCall","features":[318]},{"name":"WSACleanup","features":[318]},{"name":"WSACloseEvent","features":[305,318]},{"name":"WSAConnect","features":[318]},{"name":"WSAConnectByList","features":[305,318,310]},{"name":"WSAConnectByNameA","features":[305,318,310]},{"name":"WSAConnectByNameW","features":[305,318,310]},{"name":"WSACreateEvent","features":[318]},{"name":"WSADATA","features":[318]},{"name":"WSADATA","features":[318]},{"name":"WSADESCRIPTION_LEN","features":[318]},{"name":"WSADeleteSocketPeerTargetName","features":[305,318,310]},{"name":"WSADuplicateSocketA","features":[318]},{"name":"WSADuplicateSocketW","features":[318]},{"name":"WSAEACCES","features":[318]},{"name":"WSAEADDRINUSE","features":[318]},{"name":"WSAEADDRNOTAVAIL","features":[318]},{"name":"WSAEAFNOSUPPORT","features":[318]},{"name":"WSAEALREADY","features":[318]},{"name":"WSAEBADF","features":[318]},{"name":"WSAECANCELLED","features":[318]},{"name":"WSAECOMPARATOR","features":[318]},{"name":"WSAECONNABORTED","features":[318]},{"name":"WSAECONNREFUSED","features":[318]},{"name":"WSAECONNRESET","features":[318]},{"name":"WSAEDESTADDRREQ","features":[318]},{"name":"WSAEDISCON","features":[318]},{"name":"WSAEDQUOT","features":[318]},{"name":"WSAEFAULT","features":[318]},{"name":"WSAEHOSTDOWN","features":[318]},{"name":"WSAEHOSTUNREACH","features":[318]},{"name":"WSAEINPROGRESS","features":[318]},{"name":"WSAEINTR","features":[318]},{"name":"WSAEINVAL","features":[318]},{"name":"WSAEINVALIDPROCTABLE","features":[318]},{"name":"WSAEINVALIDPROVIDER","features":[318]},{"name":"WSAEISCONN","features":[318]},{"name":"WSAELOOP","features":[318]},{"name":"WSAEMFILE","features":[318]},{"name":"WSAEMSGSIZE","features":[318]},{"name":"WSAENAMETOOLONG","features":[318]},{"name":"WSAENETDOWN","features":[318]},{"name":"WSAENETRESET","features":[318]},{"name":"WSAENETUNREACH","features":[318]},{"name":"WSAENOBUFS","features":[318]},{"name":"WSAENOMORE","features":[318]},{"name":"WSAENOPROTOOPT","features":[318]},{"name":"WSAENOTCONN","features":[318]},{"name":"WSAENOTEMPTY","features":[318]},{"name":"WSAENOTSOCK","features":[318]},{"name":"WSAEOPNOTSUPP","features":[318]},{"name":"WSAEPFNOSUPPORT","features":[318]},{"name":"WSAEPROCLIM","features":[318]},{"name":"WSAEPROTONOSUPPORT","features":[318]},{"name":"WSAEPROTOTYPE","features":[318]},{"name":"WSAEPROVIDERFAILEDINIT","features":[318]},{"name":"WSAEREFUSED","features":[318]},{"name":"WSAEREMOTE","features":[318]},{"name":"WSAESETSERVICEOP","features":[318]},{"name":"WSAESHUTDOWN","features":[318]},{"name":"WSAESOCKTNOSUPPORT","features":[318]},{"name":"WSAESTALE","features":[318]},{"name":"WSAETIMEDOUT","features":[318]},{"name":"WSAETOOMANYREFS","features":[318]},{"name":"WSAEUSERS","features":[318]},{"name":"WSAEVENT","features":[318]},{"name":"WSAEWOULDBLOCK","features":[318]},{"name":"WSAEnumNameSpaceProvidersA","features":[305,318]},{"name":"WSAEnumNameSpaceProvidersExA","features":[305,318,356]},{"name":"WSAEnumNameSpaceProvidersExW","features":[305,318,356]},{"name":"WSAEnumNameSpaceProvidersW","features":[305,318]},{"name":"WSAEnumNetworkEvents","features":[318]},{"name":"WSAEnumProtocolsA","features":[318]},{"name":"WSAEnumProtocolsW","features":[318]},{"name":"WSAEventSelect","features":[318]},{"name":"WSAGetLastError","features":[318]},{"name":"WSAGetOverlappedResult","features":[305,318,310]},{"name":"WSAGetQOSByName","features":[305,318]},{"name":"WSAGetServiceClassInfoA","features":[318]},{"name":"WSAGetServiceClassInfoW","features":[318]},{"name":"WSAGetServiceClassNameByClassIdA","features":[318]},{"name":"WSAGetServiceClassNameByClassIdW","features":[318]},{"name":"WSAHOST_NOT_FOUND","features":[318]},{"name":"WSAHtonl","features":[318]},{"name":"WSAHtons","features":[318]},{"name":"WSAID_ACCEPTEX","features":[318]},{"name":"WSAID_CONNECTEX","features":[318]},{"name":"WSAID_DISCONNECTEX","features":[318]},{"name":"WSAID_GETACCEPTEXSOCKADDRS","features":[318]},{"name":"WSAID_MULTIPLE_RIO","features":[318]},{"name":"WSAID_TRANSMITFILE","features":[318]},{"name":"WSAID_TRANSMITPACKETS","features":[318]},{"name":"WSAID_WSAPOLL","features":[318]},{"name":"WSAID_WSARECVMSG","features":[318]},{"name":"WSAID_WSASENDMSG","features":[318]},{"name":"WSAImpersonateSocketPeer","features":[318]},{"name":"WSAInstallServiceClassA","features":[318]},{"name":"WSAInstallServiceClassW","features":[318]},{"name":"WSAIoctl","features":[305,318,310]},{"name":"WSAIsBlocking","features":[305,318]},{"name":"WSAJoinLeaf","features":[318]},{"name":"WSALookupServiceBeginA","features":[305,318,356]},{"name":"WSALookupServiceBeginW","features":[305,318,356]},{"name":"WSALookupServiceEnd","features":[305,318]},{"name":"WSALookupServiceNextA","features":[305,318,356]},{"name":"WSALookupServiceNextW","features":[305,318,356]},{"name":"WSAMSG","features":[318]},{"name":"WSANAMESPACE_INFOA","features":[305,318]},{"name":"WSANAMESPACE_INFOEXA","features":[305,318,356]},{"name":"WSANAMESPACE_INFOEXW","features":[305,318,356]},{"name":"WSANAMESPACE_INFOW","features":[305,318]},{"name":"WSANETWORKEVENTS","features":[318]},{"name":"WSANOTINITIALISED","features":[318]},{"name":"WSANO_DATA","features":[318]},{"name":"WSANO_RECOVERY","features":[318]},{"name":"WSANSCLASSINFOA","features":[318]},{"name":"WSANSCLASSINFOW","features":[318]},{"name":"WSANSPIoctl","features":[305,318,310]},{"name":"WSANtohl","features":[318]},{"name":"WSANtohs","features":[318]},{"name":"WSAPOLLDATA","features":[318]},{"name":"WSAPOLLFD","features":[318]},{"name":"WSAPOLL_EVENT_FLAGS","features":[318]},{"name":"WSAPROTOCOLCHAIN","features":[318]},{"name":"WSAPROTOCOL_INFOA","features":[318]},{"name":"WSAPROTOCOL_INFOW","features":[318]},{"name":"WSAPROTOCOL_LEN","features":[318]},{"name":"WSAPoll","features":[318]},{"name":"WSAProviderCompleteAsyncCall","features":[305,318]},{"name":"WSAProviderConfigChange","features":[305,318,310]},{"name":"WSAQUERYSET2A","features":[318,356]},{"name":"WSAQUERYSET2W","features":[318,356]},{"name":"WSAQUERYSETA","features":[318,356]},{"name":"WSAQUERYSETW","features":[318,356]},{"name":"WSAQuerySocketSecurity","features":[305,318,310]},{"name":"WSARecv","features":[305,318,310]},{"name":"WSARecvDisconnect","features":[318]},{"name":"WSARecvEx","features":[318]},{"name":"WSARecvFrom","features":[305,318,310]},{"name":"WSARemoveServiceClass","features":[318]},{"name":"WSAResetEvent","features":[305,318]},{"name":"WSARevertImpersonation","features":[318]},{"name":"WSASENDMSG","features":[305,318,310]},{"name":"WSASERVICECLASSINFOA","features":[318]},{"name":"WSASERVICECLASSINFOW","features":[318]},{"name":"WSASERVICE_NOT_FOUND","features":[318]},{"name":"WSASYSCALLFAILURE","features":[318]},{"name":"WSASYSNOTREADY","features":[318]},{"name":"WSASYS_STATUS_LEN","features":[318]},{"name":"WSASend","features":[305,318,310]},{"name":"WSASendDisconnect","features":[318]},{"name":"WSASendMsg","features":[305,318,310]},{"name":"WSASendTo","features":[305,318,310]},{"name":"WSASetBlockingHook","features":[305,318]},{"name":"WSASetEvent","features":[305,318]},{"name":"WSASetLastError","features":[318]},{"name":"WSASetServiceA","features":[318,356]},{"name":"WSASetServiceW","features":[318,356]},{"name":"WSASetSocketPeerTargetName","features":[305,318,310]},{"name":"WSASetSocketSecurity","features":[305,318,310]},{"name":"WSASocketA","features":[318]},{"name":"WSASocketW","features":[318]},{"name":"WSAStartup","features":[318]},{"name":"WSAStringToAddressA","features":[318]},{"name":"WSAStringToAddressW","features":[318]},{"name":"WSATHREADID","features":[305,318]},{"name":"WSATRY_AGAIN","features":[318]},{"name":"WSATYPE_NOT_FOUND","features":[318]},{"name":"WSAUnadvertiseProvider","features":[318]},{"name":"WSAUnhookBlockingHook","features":[318]},{"name":"WSAVERNOTSUPPORTED","features":[318]},{"name":"WSAVERSION","features":[318]},{"name":"WSAWaitForMultipleEvents","features":[305,318]},{"name":"WSA_COMPATIBILITY_BEHAVIOR_ID","features":[318]},{"name":"WSA_COMPATIBILITY_MODE","features":[318]},{"name":"WSA_ERROR","features":[318]},{"name":"WSA_E_CANCELLED","features":[318]},{"name":"WSA_E_NO_MORE","features":[318]},{"name":"WSA_FLAG_ACCESS_SYSTEM_SECURITY","features":[318]},{"name":"WSA_FLAG_MULTIPOINT_C_LEAF","features":[318]},{"name":"WSA_FLAG_MULTIPOINT_C_ROOT","features":[318]},{"name":"WSA_FLAG_MULTIPOINT_D_LEAF","features":[318]},{"name":"WSA_FLAG_MULTIPOINT_D_ROOT","features":[318]},{"name":"WSA_FLAG_NO_HANDLE_INHERIT","features":[318]},{"name":"WSA_FLAG_OVERLAPPED","features":[318]},{"name":"WSA_FLAG_REGISTERED_IO","features":[318]},{"name":"WSA_INFINITE","features":[318]},{"name":"WSA_INVALID_EVENT","features":[318]},{"name":"WSA_INVALID_HANDLE","features":[318]},{"name":"WSA_INVALID_PARAMETER","features":[318]},{"name":"WSA_IO_INCOMPLETE","features":[318]},{"name":"WSA_IO_PENDING","features":[318]},{"name":"WSA_IPSEC_NAME_POLICY_ERROR","features":[318]},{"name":"WSA_MAXIMUM_WAIT_EVENTS","features":[318]},{"name":"WSA_NOT_ENOUGH_MEMORY","features":[318]},{"name":"WSA_OPERATION_ABORTED","features":[318]},{"name":"WSA_QOS_ADMISSION_FAILURE","features":[318]},{"name":"WSA_QOS_BAD_OBJECT","features":[318]},{"name":"WSA_QOS_BAD_STYLE","features":[318]},{"name":"WSA_QOS_EFILTERCOUNT","features":[318]},{"name":"WSA_QOS_EFILTERSTYLE","features":[318]},{"name":"WSA_QOS_EFILTERTYPE","features":[318]},{"name":"WSA_QOS_EFLOWCOUNT","features":[318]},{"name":"WSA_QOS_EFLOWDESC","features":[318]},{"name":"WSA_QOS_EFLOWSPEC","features":[318]},{"name":"WSA_QOS_EOBJLENGTH","features":[318]},{"name":"WSA_QOS_EPOLICYOBJ","features":[318]},{"name":"WSA_QOS_EPROVSPECBUF","features":[318]},{"name":"WSA_QOS_EPSFILTERSPEC","features":[318]},{"name":"WSA_QOS_EPSFLOWSPEC","features":[318]},{"name":"WSA_QOS_ESDMODEOBJ","features":[318]},{"name":"WSA_QOS_ESERVICETYPE","features":[318]},{"name":"WSA_QOS_ESHAPERATEOBJ","features":[318]},{"name":"WSA_QOS_EUNKOWNPSOBJ","features":[318]},{"name":"WSA_QOS_GENERIC_ERROR","features":[318]},{"name":"WSA_QOS_NO_RECEIVERS","features":[318]},{"name":"WSA_QOS_NO_SENDERS","features":[318]},{"name":"WSA_QOS_POLICY_FAILURE","features":[318]},{"name":"WSA_QOS_RECEIVERS","features":[318]},{"name":"WSA_QOS_REQUEST_CONFIRMED","features":[318]},{"name":"WSA_QOS_RESERVED_PETYPE","features":[318]},{"name":"WSA_QOS_SENDERS","features":[318]},{"name":"WSA_QOS_TRAFFIC_CTRL_ERROR","features":[318]},{"name":"WSA_SECURE_HOST_NOT_FOUND","features":[318]},{"name":"WSA_WAIT_EVENT_0","features":[318]},{"name":"WSA_WAIT_FAILED","features":[318]},{"name":"WSA_WAIT_IO_COMPLETION","features":[318]},{"name":"WSA_WAIT_TIMEOUT","features":[318]},{"name":"WSCDeinstallProvider","features":[318]},{"name":"WSCDeinstallProvider32","features":[318]},{"name":"WSCEnableNSProvider","features":[305,318]},{"name":"WSCEnableNSProvider32","features":[305,318]},{"name":"WSCEnumNameSpaceProviders32","features":[305,318]},{"name":"WSCEnumNameSpaceProvidersEx32","features":[305,318,356]},{"name":"WSCEnumProtocols","features":[318]},{"name":"WSCEnumProtocols32","features":[318]},{"name":"WSCGetApplicationCategory","features":[318]},{"name":"WSCGetProviderInfo","features":[318]},{"name":"WSCGetProviderInfo32","features":[318]},{"name":"WSCGetProviderPath","features":[318]},{"name":"WSCGetProviderPath32","features":[318]},{"name":"WSCInstallNameSpace","features":[318]},{"name":"WSCInstallNameSpace32","features":[318]},{"name":"WSCInstallNameSpaceEx","features":[318,356]},{"name":"WSCInstallNameSpaceEx32","features":[318,356]},{"name":"WSCInstallProvider","features":[318]},{"name":"WSCInstallProvider64_32","features":[318]},{"name":"WSCInstallProviderAndChains64_32","features":[318]},{"name":"WSCSetApplicationCategory","features":[318]},{"name":"WSCSetProviderInfo","features":[318]},{"name":"WSCSetProviderInfo32","features":[318]},{"name":"WSCUnInstallNameSpace","features":[318]},{"name":"WSCUnInstallNameSpace32","features":[318]},{"name":"WSCUpdateProvider","features":[318]},{"name":"WSCUpdateProvider32","features":[318]},{"name":"WSCWriteNameSpaceOrder","features":[318]},{"name":"WSCWriteNameSpaceOrder32","features":[318]},{"name":"WSCWriteProviderOrder","features":[318]},{"name":"WSCWriteProviderOrder32","features":[318]},{"name":"WSC_PROVIDER_AUDIT_INFO","features":[318]},{"name":"WSC_PROVIDER_INFO_TYPE","features":[318]},{"name":"WSK_SO_BASE","features":[318]},{"name":"WSPDATA","features":[318]},{"name":"WSPDESCRIPTION_LEN","features":[318]},{"name":"WSPPROC_TABLE","features":[305,318,310]},{"name":"WSPUPCALLTABLE","features":[305,318]},{"name":"WSS_OPERATION_IN_PROGRESS","features":[318]},{"name":"WsaBehaviorAll","features":[318]},{"name":"WsaBehaviorAutoTuning","features":[318]},{"name":"WsaBehaviorReceiveBuffering","features":[318]},{"name":"XP1_CONNECTIONLESS","features":[318]},{"name":"XP1_CONNECT_DATA","features":[318]},{"name":"XP1_DISCONNECT_DATA","features":[318]},{"name":"XP1_EXPEDITED_DATA","features":[318]},{"name":"XP1_GRACEFUL_CLOSE","features":[318]},{"name":"XP1_GUARANTEED_DELIVERY","features":[318]},{"name":"XP1_GUARANTEED_ORDER","features":[318]},{"name":"XP1_IFS_HANDLES","features":[318]},{"name":"XP1_INTERRUPT","features":[318]},{"name":"XP1_MESSAGE_ORIENTED","features":[318]},{"name":"XP1_MULTIPOINT_CONTROL_PLANE","features":[318]},{"name":"XP1_MULTIPOINT_DATA_PLANE","features":[318]},{"name":"XP1_PARTIAL_MESSAGE","features":[318]},{"name":"XP1_PSEUDO_STREAM","features":[318]},{"name":"XP1_QOS_SUPPORTED","features":[318]},{"name":"XP1_SAN_SUPPORT_SDP","features":[318]},{"name":"XP1_SUPPORT_BROADCAST","features":[318]},{"name":"XP1_SUPPORT_MULTIPOINT","features":[318]},{"name":"XP1_UNI_RECV","features":[318]},{"name":"XP1_UNI_SEND","features":[318]},{"name":"XP_BANDWIDTH_ALLOCATION","features":[318]},{"name":"XP_CONNECTIONLESS","features":[318]},{"name":"XP_CONNECT_DATA","features":[318]},{"name":"XP_DISCONNECT_DATA","features":[318]},{"name":"XP_ENCRYPTS","features":[318]},{"name":"XP_EXPEDITED_DATA","features":[318]},{"name":"XP_FRAGMENTATION","features":[318]},{"name":"XP_GRACEFUL_CLOSE","features":[318]},{"name":"XP_GUARANTEED_DELIVERY","features":[318]},{"name":"XP_GUARANTEED_ORDER","features":[318]},{"name":"XP_MESSAGE_ORIENTED","features":[318]},{"name":"XP_PSEUDO_STREAM","features":[318]},{"name":"XP_SUPPORTS_BROADCAST","features":[318]},{"name":"XP_SUPPORTS_MULTICAST","features":[318]},{"name":"_BIG_ENDIAN","features":[318]},{"name":"_LITTLE_ENDIAN","features":[318]},{"name":"_PDP_ENDIAN","features":[318]},{"name":"_SS_MAXSIZE","features":[318]},{"name":"__WSAFDIsSet","features":[318]},{"name":"accept","features":[318]},{"name":"bind","features":[318]},{"name":"closesocket","features":[318]},{"name":"connect","features":[318]},{"name":"eWINDOW_ADVANCE_METHOD","features":[318]},{"name":"freeaddrinfo","features":[318]},{"name":"getaddrinfo","features":[318]},{"name":"gethostbyaddr","features":[318]},{"name":"gethostbyname","features":[318]},{"name":"gethostname","features":[318]},{"name":"getnameinfo","features":[318]},{"name":"getpeername","features":[318]},{"name":"getprotobyname","features":[318]},{"name":"getprotobynumber","features":[318]},{"name":"getservbyname","features":[318]},{"name":"getservbyport","features":[318]},{"name":"getsockname","features":[318]},{"name":"getsockopt","features":[318]},{"name":"htonl","features":[318]},{"name":"htons","features":[318]},{"name":"inet_addr","features":[318]},{"name":"inet_ntoa","features":[318]},{"name":"inet_ntop","features":[318]},{"name":"inet_pton","features":[318]},{"name":"ioctlsocket","features":[318]},{"name":"listen","features":[318]},{"name":"netent","features":[318]},{"name":"ntohl","features":[318]},{"name":"ntohs","features":[318]},{"name":"recv","features":[318]},{"name":"recvfrom","features":[318]},{"name":"select","features":[318]},{"name":"send","features":[318]},{"name":"sendto","features":[318]},{"name":"setsockopt","features":[318]},{"name":"shutdown","features":[318]},{"name":"sockaddr_gen","features":[318]},{"name":"sockaddr_in6_old","features":[318]},{"name":"socket","features":[318]},{"name":"socklen_t","features":[318]},{"name":"sockproto","features":[318]},{"name":"tcp_keepalive","features":[318]}],"480":[{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA","features":[477]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_CURRENT_VERSION","features":[477]},{"name":"CTAPCBOR_HYBRID_STORAGE_LINKED_DATA_VERSION_1","features":[477]},{"name":"IContentPrefetcherTaskTrigger","features":[477]},{"name":"WEBAUTHN_API_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_API_VERSION_1","features":[477]},{"name":"WEBAUTHN_API_VERSION_2","features":[477]},{"name":"WEBAUTHN_API_VERSION_3","features":[477]},{"name":"WEBAUTHN_API_VERSION_4","features":[477]},{"name":"WEBAUTHN_API_VERSION_5","features":[477]},{"name":"WEBAUTHN_API_VERSION_6","features":[477]},{"name":"WEBAUTHN_API_VERSION_7","features":[477]},{"name":"WEBAUTHN_ASSERTION","features":[477]},{"name":"WEBAUTHN_ASSERTION_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_ASSERTION_VERSION_1","features":[477]},{"name":"WEBAUTHN_ASSERTION_VERSION_2","features":[477]},{"name":"WEBAUTHN_ASSERTION_VERSION_3","features":[477]},{"name":"WEBAUTHN_ASSERTION_VERSION_4","features":[477]},{"name":"WEBAUTHN_ASSERTION_VERSION_5","features":[477]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_ANY","features":[477]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_DIRECT","features":[477]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_INDIRECT","features":[477]},{"name":"WEBAUTHN_ATTESTATION_CONVEYANCE_PREFERENCE_NONE","features":[477]},{"name":"WEBAUTHN_ATTESTATION_DECODE_COMMON","features":[477]},{"name":"WEBAUTHN_ATTESTATION_DECODE_NONE","features":[477]},{"name":"WEBAUTHN_ATTESTATION_TYPE_NONE","features":[477]},{"name":"WEBAUTHN_ATTESTATION_TYPE_PACKED","features":[477]},{"name":"WEBAUTHN_ATTESTATION_TYPE_TPM","features":[477]},{"name":"WEBAUTHN_ATTESTATION_TYPE_U2F","features":[477]},{"name":"WEBAUTHN_ATTESTATION_VER_TPM_2_0","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_ANY","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_CROSS_PLATFORM_U2F_V2","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_ATTACHMENT_PLATFORM","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS","features":[305,477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_1","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_2","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_3","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_4","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_5","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_6","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_GET_ASSERTION_OPTIONS_VERSION_7","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_HMAC_SECRET_VALUES_FLAG","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS","features":[305,477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_1","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_2","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_3","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_4","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_5","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_6","features":[477]},{"name":"WEBAUTHN_AUTHENTICATOR_MAKE_CREDENTIAL_OPTIONS_VERSION_7","features":[477]},{"name":"WEBAUTHN_CLIENT_DATA","features":[477]},{"name":"WEBAUTHN_CLIENT_DATA_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_COMMON_ATTESTATION","features":[477]},{"name":"WEBAUTHN_COMMON_ATTESTATION_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P256_WITH_SHA256","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P384_WITH_SHA384","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_ECDSA_P521_WITH_SHA512","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA256","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA384","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSASSA_PKCS1_V1_5_WITH_SHA512","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA256","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA384","features":[477]},{"name":"WEBAUTHN_COSE_ALGORITHM_RSA_PSS_WITH_SHA512","features":[477]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER","features":[477]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETERS","features":[477]},{"name":"WEBAUTHN_COSE_CREDENTIAL_PARAMETER_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_CREDENTIAL","features":[477]},{"name":"WEBAUTHN_CREDENTIALS","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION","features":[305,477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_1","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_2","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_3","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_4","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_5","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_ATTESTATION_VERSION_6","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS","features":[305,477]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_LIST","features":[305,477]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_1","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_DETAILS_VERSION_2","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_EX","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_EX_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_LIST","features":[477]},{"name":"WEBAUTHN_CREDENTIAL_TYPE_PUBLIC_KEY","features":[477]},{"name":"WEBAUTHN_CRED_BLOB_EXTENSION","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_DELETE","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_GET","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_NONE","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_OPERATION_SET","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_AUTHENTICATOR_ERROR","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_DATA","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_INVALID_PARAMETER","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_LACK_OF_SPACE","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_MULTIPLE_CREDENTIALS","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NONE","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_FOUND","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_NOT_SUPPORTED","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_PLATFORM_ERROR","features":[477]},{"name":"WEBAUTHN_CRED_LARGE_BLOB_STATUS_SUCCESS","features":[477]},{"name":"WEBAUTHN_CRED_PROTECT_EXTENSION_IN","features":[305,477]},{"name":"WEBAUTHN_CRED_WITH_HMAC_SECRET_SALT","features":[477]},{"name":"WEBAUTHN_CTAP_ONE_HMAC_SECRET_LENGTH","features":[477]},{"name":"WEBAUTHN_CTAP_TRANSPORT_BLE","features":[477]},{"name":"WEBAUTHN_CTAP_TRANSPORT_FLAGS_MASK","features":[477]},{"name":"WEBAUTHN_CTAP_TRANSPORT_HYBRID","features":[477]},{"name":"WEBAUTHN_CTAP_TRANSPORT_INTERNAL","features":[477]},{"name":"WEBAUTHN_CTAP_TRANSPORT_NFC","features":[477]},{"name":"WEBAUTHN_CTAP_TRANSPORT_TEST","features":[477]},{"name":"WEBAUTHN_CTAP_TRANSPORT_USB","features":[477]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_NONE","features":[477]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_PLATFORM_MANAGED","features":[477]},{"name":"WEBAUTHN_ENTERPRISE_ATTESTATION_VENDOR_FACILITATED","features":[477]},{"name":"WEBAUTHN_EXTENSION","features":[477]},{"name":"WEBAUTHN_EXTENSIONS","features":[477]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_BLOB","features":[477]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_CRED_PROTECT","features":[477]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_HMAC_SECRET","features":[477]},{"name":"WEBAUTHN_EXTENSIONS_IDENTIFIER_MIN_PIN_LENGTH","features":[477]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS","features":[305,477]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_GET_CREDENTIALS_OPTIONS_VERSION_1","features":[477]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_256","features":[477]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_384","features":[477]},{"name":"WEBAUTHN_HASH_ALGORITHM_SHA_512","features":[477]},{"name":"WEBAUTHN_HMAC_SECRET_SALT","features":[477]},{"name":"WEBAUTHN_HMAC_SECRET_SALT_VALUES","features":[477]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_NONE","features":[477]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_PREFERRED","features":[477]},{"name":"WEBAUTHN_LARGE_BLOB_SUPPORT_REQUIRED","features":[477]},{"name":"WEBAUTHN_MAX_USER_ID_LENGTH","features":[477]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION","features":[477]},{"name":"WEBAUTHN_RP_ENTITY_INFORMATION_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION","features":[477]},{"name":"WEBAUTHN_USER_ENTITY_INFORMATION_CURRENT_VERSION","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_ANY","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_OPTIONAL_WITH_CREDENTIAL_ID_LIST","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIRED","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_ANY","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_DISCOURAGED","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_PREFERRED","features":[477]},{"name":"WEBAUTHN_USER_VERIFICATION_REQUIREMENT_REQUIRED","features":[477]},{"name":"WEBAUTHN_X5C","features":[477]},{"name":"WS_ABANDON_MESSAGE_CALLBACK","features":[477]},{"name":"WS_ABORT_CHANNEL_CALLBACK","features":[477]},{"name":"WS_ABORT_LISTENER_CALLBACK","features":[477]},{"name":"WS_ACCEPT_CHANNEL_CALLBACK","features":[477]},{"name":"WS_ACTION_HEADER","features":[477]},{"name":"WS_ADDRESSING_VERSION","features":[477]},{"name":"WS_ADDRESSING_VERSION_0_9","features":[477]},{"name":"WS_ADDRESSING_VERSION_1_0","features":[477]},{"name":"WS_ADDRESSING_VERSION_TRANSPORT","features":[477]},{"name":"WS_ANY_ATTRIBUTE","features":[305,477]},{"name":"WS_ANY_ATTRIBUTES","features":[305,477]},{"name":"WS_ANY_ATTRIBUTES_FIELD_MAPPING","features":[477]},{"name":"WS_ANY_ATTRIBUTES_TYPE","features":[477]},{"name":"WS_ANY_CONTENT_FIELD_MAPPING","features":[477]},{"name":"WS_ANY_ELEMENT_FIELD_MAPPING","features":[477]},{"name":"WS_ANY_ELEMENT_TYPE_MAPPING","features":[477]},{"name":"WS_ASYNC_CALLBACK","features":[477]},{"name":"WS_ASYNC_CONTEXT","features":[477]},{"name":"WS_ASYNC_FUNCTION","features":[477]},{"name":"WS_ASYNC_OPERATION","features":[477]},{"name":"WS_ASYNC_STATE","features":[477]},{"name":"WS_ATTRIBUTE_DESCRIPTION","features":[305,477]},{"name":"WS_ATTRIBUTE_FIELD_MAPPING","features":[477]},{"name":"WS_ATTRIBUTE_TYPE_MAPPING","features":[477]},{"name":"WS_AUTO_COOKIE_MODE","features":[477]},{"name":"WS_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_BLANK_MESSAGE","features":[477]},{"name":"WS_BOOL_DESCRIPTION","features":[305,477]},{"name":"WS_BOOL_TYPE","features":[477]},{"name":"WS_BOOL_VALUE_TYPE","features":[477]},{"name":"WS_BUFFERED_TRANSFER_MODE","features":[477]},{"name":"WS_BUFFERS","features":[477]},{"name":"WS_BYTES","features":[477]},{"name":"WS_BYTES_DESCRIPTION","features":[477]},{"name":"WS_BYTES_TYPE","features":[477]},{"name":"WS_BYTE_ARRAY_DESCRIPTION","features":[477]},{"name":"WS_BYTE_ARRAY_TYPE","features":[477]},{"name":"WS_CALLBACK_MODEL","features":[477]},{"name":"WS_CALL_PROPERTY","features":[477]},{"name":"WS_CALL_PROPERTY_CALL_ID","features":[477]},{"name":"WS_CALL_PROPERTY_CHECK_MUST_UNDERSTAND","features":[477]},{"name":"WS_CALL_PROPERTY_ID","features":[477]},{"name":"WS_CALL_PROPERTY_RECEIVE_MESSAGE_CONTEXT","features":[477]},{"name":"WS_CALL_PROPERTY_SEND_MESSAGE_CONTEXT","features":[477]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[477]},{"name":"WS_CAPI_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[477]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK","features":[305,477,389]},{"name":"WS_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[305,477,389]},{"name":"WS_CERT_CREDENTIAL","features":[477]},{"name":"WS_CERT_CREDENTIAL_TYPE","features":[477]},{"name":"WS_CERT_ENDPOINT_IDENTITY","features":[477]},{"name":"WS_CERT_ENDPOINT_IDENTITY_TYPE","features":[477]},{"name":"WS_CERT_FAILURE_CN_MISMATCH","features":[477]},{"name":"WS_CERT_FAILURE_INVALID_DATE","features":[477]},{"name":"WS_CERT_FAILURE_REVOCATION_OFFLINE","features":[477]},{"name":"WS_CERT_FAILURE_UNTRUSTED_ROOT","features":[477]},{"name":"WS_CERT_FAILURE_WRONG_USAGE","features":[477]},{"name":"WS_CERT_ISSUER_LIST_NOTIFICATION_CALLBACK","features":[477,326,389]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[477]},{"name":"WS_CERT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR","features":[305,477,389]},{"name":"WS_CERT_SIGNED_SAML_AUTHENTICATOR_TYPE","features":[477]},{"name":"WS_CHANNEL","features":[477]},{"name":"WS_CHANNEL_BINDING","features":[477]},{"name":"WS_CHANNEL_DECODER","features":[477]},{"name":"WS_CHANNEL_ENCODER","features":[477]},{"name":"WS_CHANNEL_PROPERTIES","features":[477]},{"name":"WS_CHANNEL_PROPERTY","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ADDRESSING_VERSION","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ALLOW_UNSECURED_FAULTS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ASYNC_CALLBACK_MODEL","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CHANNEL_TYPE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CLOSE_TIMEOUT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CONNECT_TIMEOUT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CONSTRAINT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_COOKIE_MODE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_CALLBACKS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_INSTANCE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_CHANNEL_PARAMETERS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_CUSTOM_HTTP_PROXY","features":[477]},{"name":"WS_CHANNEL_PROPERTY_DECODER","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_HTTP_REDIRECT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ENABLE_TIMEOUTS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ENCODER","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ENCODING","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ENVELOPE_VERSION","features":[477]},{"name":"WS_CHANNEL_PROPERTY_FAULTS_AS_ERRORS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_HTTP_CONNECTION_ID","features":[477]},{"name":"WS_CHANNEL_PROPERTY_HTTP_MESSAGE_MAPPING","features":[477]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SETTING_MODE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_HTTP_PROXY_SPN","features":[477]},{"name":"WS_CHANNEL_PROPERTY_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_HTTP_SERVER_SPN","features":[477]},{"name":"WS_CHANNEL_PROPERTY_ID","features":[477]},{"name":"WS_CHANNEL_PROPERTY_IP_VERSION","features":[477]},{"name":"WS_CHANNEL_PROPERTY_IS_SESSION_SHUT_DOWN","features":[477]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_INTERVAL","features":[477]},{"name":"WS_CHANNEL_PROPERTY_KEEP_ALIVE_TIME","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MAX_BUFFERED_MESSAGE_SIZE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_REQUEST_HEADERS_BUFFER_SIZE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MAX_HTTP_SERVER_CONNECTIONS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MAX_SESSION_DICTIONARY_SIZE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_FLUSH_SIZE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_MESSAGE_SIZE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MAX_STREAMED_START_SIZE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_HOPS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_MULTICAST_INTERFACE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_NO_DELAY","features":[477]},{"name":"WS_CHANNEL_PROPERTY_PROTECTION_LEVEL","features":[477]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_RESPONSE_TIMEOUT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_RECEIVE_TIMEOUT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_ADDRESS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_REMOTE_IP_ADDRESS","features":[477]},{"name":"WS_CHANNEL_PROPERTY_RESOLVE_TIMEOUT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_SEND_KEEP_ALIVES","features":[477]},{"name":"WS_CHANNEL_PROPERTY_SEND_TIMEOUT","features":[477]},{"name":"WS_CHANNEL_PROPERTY_STATE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_TRANSFER_MODE","features":[477]},{"name":"WS_CHANNEL_PROPERTY_TRANSPORT_URL","features":[477]},{"name":"WS_CHANNEL_PROPERTY_TRIM_BUFFERED_MESSAGE_SIZE","features":[477]},{"name":"WS_CHANNEL_STATE","features":[477]},{"name":"WS_CHANNEL_STATE_ACCEPTING","features":[477]},{"name":"WS_CHANNEL_STATE_CLOSED","features":[477]},{"name":"WS_CHANNEL_STATE_CLOSING","features":[477]},{"name":"WS_CHANNEL_STATE_CREATED","features":[477]},{"name":"WS_CHANNEL_STATE_FAULTED","features":[477]},{"name":"WS_CHANNEL_STATE_OPEN","features":[477]},{"name":"WS_CHANNEL_STATE_OPENING","features":[477]},{"name":"WS_CHANNEL_TYPE","features":[477]},{"name":"WS_CHANNEL_TYPE_DUPLEX","features":[477]},{"name":"WS_CHANNEL_TYPE_DUPLEX_SESSION","features":[477]},{"name":"WS_CHANNEL_TYPE_INPUT","features":[477]},{"name":"WS_CHANNEL_TYPE_INPUT_SESSION","features":[477]},{"name":"WS_CHANNEL_TYPE_OUTPUT","features":[477]},{"name":"WS_CHANNEL_TYPE_OUTPUT_SESSION","features":[477]},{"name":"WS_CHANNEL_TYPE_REPLY","features":[477]},{"name":"WS_CHANNEL_TYPE_REQUEST","features":[477]},{"name":"WS_CHANNEL_TYPE_SESSION","features":[477]},{"name":"WS_CHARSET","features":[477]},{"name":"WS_CHARSET_AUTO","features":[477]},{"name":"WS_CHARSET_UTF16BE","features":[477]},{"name":"WS_CHARSET_UTF16LE","features":[477]},{"name":"WS_CHARSET_UTF8","features":[477]},{"name":"WS_CHAR_ARRAY_DESCRIPTION","features":[477]},{"name":"WS_CHAR_ARRAY_TYPE","features":[477]},{"name":"WS_CLOSE_CHANNEL_CALLBACK","features":[477]},{"name":"WS_CLOSE_LISTENER_CALLBACK","features":[477]},{"name":"WS_CONTRACT_DESCRIPTION","features":[305,477]},{"name":"WS_COOKIE_MODE","features":[477]},{"name":"WS_CREATE_CHANNEL_CALLBACK","features":[477]},{"name":"WS_CREATE_CHANNEL_FOR_LISTENER_CALLBACK","features":[477]},{"name":"WS_CREATE_DECODER_CALLBACK","features":[477]},{"name":"WS_CREATE_ENCODER_CALLBACK","features":[477]},{"name":"WS_CREATE_LISTENER_CALLBACK","features":[477]},{"name":"WS_CUSTOM_CERT_CREDENTIAL","features":[305,477,326,389]},{"name":"WS_CUSTOM_CERT_CREDENTIAL_TYPE","features":[477]},{"name":"WS_CUSTOM_CHANNEL_BINDING","features":[477]},{"name":"WS_CUSTOM_CHANNEL_CALLBACKS","features":[477]},{"name":"WS_CUSTOM_HTTP_PROXY","features":[477]},{"name":"WS_CUSTOM_LISTENER_CALLBACKS","features":[477]},{"name":"WS_CUSTOM_TYPE","features":[477]},{"name":"WS_CUSTOM_TYPE_DESCRIPTION","features":[305,477]},{"name":"WS_DATETIME","features":[477]},{"name":"WS_DATETIME_DESCRIPTION","features":[477]},{"name":"WS_DATETIME_FORMAT","features":[477]},{"name":"WS_DATETIME_FORMAT_LOCAL","features":[477]},{"name":"WS_DATETIME_FORMAT_NONE","features":[477]},{"name":"WS_DATETIME_FORMAT_UTC","features":[477]},{"name":"WS_DATETIME_TYPE","features":[477]},{"name":"WS_DATETIME_VALUE_TYPE","features":[477]},{"name":"WS_DECIMAL_DESCRIPTION","features":[305,477]},{"name":"WS_DECIMAL_TYPE","features":[477]},{"name":"WS_DECIMAL_VALUE_TYPE","features":[477]},{"name":"WS_DECODER_DECODE_CALLBACK","features":[477]},{"name":"WS_DECODER_END_CALLBACK","features":[477]},{"name":"WS_DECODER_GET_CONTENT_TYPE_CALLBACK","features":[477]},{"name":"WS_DECODER_START_CALLBACK","features":[477]},{"name":"WS_DEFAULT_VALUE","features":[477]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[477]},{"name":"WS_DEFAULT_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[477]},{"name":"WS_DESCRIPTION_TYPE","features":[477]},{"name":"WS_DISALLOWED_USER_AGENT_SUBSTRINGS","features":[477]},{"name":"WS_DNS_ENDPOINT_IDENTITY","features":[477]},{"name":"WS_DNS_ENDPOINT_IDENTITY_TYPE","features":[477]},{"name":"WS_DOUBLE_DESCRIPTION","features":[477]},{"name":"WS_DOUBLE_TYPE","features":[477]},{"name":"WS_DOUBLE_VALUE_TYPE","features":[477]},{"name":"WS_DUPLICATE_MESSAGE","features":[477]},{"name":"WS_DURATION","features":[305,477]},{"name":"WS_DURATION_COMPARISON_CALLBACK","features":[305,477]},{"name":"WS_DURATION_DESCRIPTION","features":[305,477]},{"name":"WS_DURATION_TYPE","features":[477]},{"name":"WS_DURATION_VALUE_TYPE","features":[477]},{"name":"WS_DYNAMIC_STRING_CALLBACK","features":[305,477]},{"name":"WS_ELEMENT_CHOICE_FIELD_MAPPING","features":[477]},{"name":"WS_ELEMENT_CONTENT_TYPE_MAPPING","features":[477]},{"name":"WS_ELEMENT_DESCRIPTION","features":[305,477]},{"name":"WS_ELEMENT_FIELD_MAPPING","features":[477]},{"name":"WS_ELEMENT_TYPE_MAPPING","features":[477]},{"name":"WS_ENCODER_ENCODE_CALLBACK","features":[477]},{"name":"WS_ENCODER_END_CALLBACK","features":[477]},{"name":"WS_ENCODER_GET_CONTENT_TYPE_CALLBACK","features":[477]},{"name":"WS_ENCODER_START_CALLBACK","features":[477]},{"name":"WS_ENCODING","features":[477]},{"name":"WS_ENCODING_RAW","features":[477]},{"name":"WS_ENCODING_XML_BINARY_1","features":[477]},{"name":"WS_ENCODING_XML_BINARY_SESSION_1","features":[477]},{"name":"WS_ENCODING_XML_MTOM_UTF16BE","features":[477]},{"name":"WS_ENCODING_XML_MTOM_UTF16LE","features":[477]},{"name":"WS_ENCODING_XML_MTOM_UTF8","features":[477]},{"name":"WS_ENCODING_XML_UTF16BE","features":[477]},{"name":"WS_ENCODING_XML_UTF16LE","features":[477]},{"name":"WS_ENCODING_XML_UTF8","features":[477]},{"name":"WS_ENDPOINT_ADDRESS","features":[477]},{"name":"WS_ENDPOINT_ADDRESS_DESCRIPTION","features":[477]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_METADATA_ADDRESS","features":[477]},{"name":"WS_ENDPOINT_ADDRESS_EXTENSION_TYPE","features":[477]},{"name":"WS_ENDPOINT_ADDRESS_TYPE","features":[477]},{"name":"WS_ENDPOINT_IDENTITY","features":[477]},{"name":"WS_ENDPOINT_IDENTITY_TYPE","features":[477]},{"name":"WS_ENDPOINT_POLICY_EXTENSION","features":[305,477]},{"name":"WS_ENDPOINT_POLICY_EXTENSION_TYPE","features":[477]},{"name":"WS_ENUM_DESCRIPTION","features":[305,477]},{"name":"WS_ENUM_TYPE","features":[477]},{"name":"WS_ENUM_VALUE","features":[305,477]},{"name":"WS_ENVELOPE_VERSION","features":[477]},{"name":"WS_ENVELOPE_VERSION_NONE","features":[477]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_1","features":[477]},{"name":"WS_ENVELOPE_VERSION_SOAP_1_2","features":[477]},{"name":"WS_ERROR","features":[477]},{"name":"WS_ERROR_PROPERTY","features":[477]},{"name":"WS_ERROR_PROPERTY_ID","features":[477]},{"name":"WS_ERROR_PROPERTY_LANGID","features":[477]},{"name":"WS_ERROR_PROPERTY_ORIGINAL_ERROR_CODE","features":[477]},{"name":"WS_ERROR_PROPERTY_STRING_COUNT","features":[477]},{"name":"WS_EXCEPTION_CODE","features":[477]},{"name":"WS_EXCEPTION_CODE_INTERNAL_FAILURE","features":[477]},{"name":"WS_EXCEPTION_CODE_USAGE_FAILURE","features":[477]},{"name":"WS_EXCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[477]},{"name":"WS_EXCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[477]},{"name":"WS_EXTENDED_PROTECTION_POLICY","features":[477]},{"name":"WS_EXTENDED_PROTECTION_POLICY_ALWAYS","features":[477]},{"name":"WS_EXTENDED_PROTECTION_POLICY_NEVER","features":[477]},{"name":"WS_EXTENDED_PROTECTION_POLICY_WHEN_SUPPORTED","features":[477]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO","features":[477]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_BOUND_SERVER","features":[477]},{"name":"WS_EXTENDED_PROTECTION_SCENARIO_TERMINATED_SSL","features":[477]},{"name":"WS_FAULT","features":[305,477]},{"name":"WS_FAULT_CODE","features":[305,477]},{"name":"WS_FAULT_DESCRIPTION","features":[477]},{"name":"WS_FAULT_DETAIL_DESCRIPTION","features":[305,477]},{"name":"WS_FAULT_DISCLOSURE","features":[477]},{"name":"WS_FAULT_ERROR_PROPERTY_ACTION","features":[477]},{"name":"WS_FAULT_ERROR_PROPERTY_FAULT","features":[477]},{"name":"WS_FAULT_ERROR_PROPERTY_HEADER","features":[477]},{"name":"WS_FAULT_ERROR_PROPERTY_ID","features":[477]},{"name":"WS_FAULT_MESSAGE","features":[477]},{"name":"WS_FAULT_REASON","features":[477]},{"name":"WS_FAULT_TO_HEADER","features":[477]},{"name":"WS_FAULT_TYPE","features":[477]},{"name":"WS_FIELD_DESCRIPTION","features":[305,477]},{"name":"WS_FIELD_MAPPING","features":[477]},{"name":"WS_FIELD_NILLABLE","features":[477]},{"name":"WS_FIELD_NILLABLE_ITEM","features":[477]},{"name":"WS_FIELD_OPTIONAL","features":[477]},{"name":"WS_FIELD_OTHER_NAMESPACE","features":[477]},{"name":"WS_FIELD_POINTER","features":[477]},{"name":"WS_FLOAT_DESCRIPTION","features":[477]},{"name":"WS_FLOAT_TYPE","features":[477]},{"name":"WS_FLOAT_VALUE_TYPE","features":[477]},{"name":"WS_FREE_CHANNEL_CALLBACK","features":[477]},{"name":"WS_FREE_DECODER_CALLBACK","features":[477]},{"name":"WS_FREE_ENCODER_CALLBACK","features":[477]},{"name":"WS_FREE_LISTENER_CALLBACK","features":[477]},{"name":"WS_FROM_HEADER","features":[477]},{"name":"WS_FULL_FAULT_DISCLOSURE","features":[477]},{"name":"WS_GET_CERT_CALLBACK","features":[305,477,389]},{"name":"WS_GET_CHANNEL_PROPERTY_CALLBACK","features":[477]},{"name":"WS_GET_LISTENER_PROPERTY_CALLBACK","features":[477]},{"name":"WS_GUID_DESCRIPTION","features":[477]},{"name":"WS_GUID_TYPE","features":[477]},{"name":"WS_GUID_VALUE_TYPE","features":[477]},{"name":"WS_HEADER_TYPE","features":[477]},{"name":"WS_HEAP","features":[477]},{"name":"WS_HEAP_PROPERTIES","features":[477]},{"name":"WS_HEAP_PROPERTY","features":[477]},{"name":"WS_HEAP_PROPERTY_ACTUAL_SIZE","features":[477]},{"name":"WS_HEAP_PROPERTY_ID","features":[477]},{"name":"WS_HEAP_PROPERTY_MAX_SIZE","features":[477]},{"name":"WS_HEAP_PROPERTY_REQUESTED_SIZE","features":[477]},{"name":"WS_HEAP_PROPERTY_TRIM_SIZE","features":[477]},{"name":"WS_HOST_NAMES","features":[477]},{"name":"WS_HTTPS_URL","features":[477]},{"name":"WS_HTTP_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_CHANNEL_BINDING","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_BASIC","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_DIGEST","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NEGOTIATE","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NONE","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_NTLM","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SCHEME_PASSPORT","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_TARGET","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_PROXY","features":[477]},{"name":"WS_HTTP_HEADER_AUTH_TARGET_SERVICE","features":[477]},{"name":"WS_HTTP_HEADER_MAPPING","features":[305,477]},{"name":"WS_HTTP_HEADER_MAPPING_COMMA_SEPARATOR","features":[477]},{"name":"WS_HTTP_HEADER_MAPPING_QUOTED_VALUE","features":[477]},{"name":"WS_HTTP_HEADER_MAPPING_SEMICOLON_SEPARATOR","features":[477]},{"name":"WS_HTTP_MESSAGE_MAPPING","features":[305,477]},{"name":"WS_HTTP_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_PROXY_SETTING_MODE","features":[477]},{"name":"WS_HTTP_PROXY_SETTING_MODE_AUTO","features":[477]},{"name":"WS_HTTP_PROXY_SETTING_MODE_CUSTOM","features":[477]},{"name":"WS_HTTP_PROXY_SETTING_MODE_NONE","features":[477]},{"name":"WS_HTTP_REDIRECT_CALLBACK","features":[477]},{"name":"WS_HTTP_REDIRECT_CALLBACK_CONTEXT","features":[477]},{"name":"WS_HTTP_REQUEST_MAPPING_VERB","features":[477]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_CODE","features":[477]},{"name":"WS_HTTP_RESPONSE_MAPPING_STATUS_TEXT","features":[477]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_SSL_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_SSL_HEADER_AUTH_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_SSL_HEADER_AUTH_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_SSL_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_SSL_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_SSL_USERNAME_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_SSL_USERNAME_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[477]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_HTTP_SSL_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[477]},{"name":"WS_HTTP_URL","features":[477]},{"name":"WS_INCLUSIVE_WITH_COMMENTS_XML_CANONICALIZATION_ALGORITHM","features":[477]},{"name":"WS_INCLUSIVE_XML_CANONICALIZATION_ALGORITHM","features":[477]},{"name":"WS_INT16_DESCRIPTION","features":[477]},{"name":"WS_INT16_TYPE","features":[477]},{"name":"WS_INT16_VALUE_TYPE","features":[477]},{"name":"WS_INT32_DESCRIPTION","features":[477]},{"name":"WS_INT32_TYPE","features":[477]},{"name":"WS_INT32_VALUE_TYPE","features":[477]},{"name":"WS_INT64_DESCRIPTION","features":[477]},{"name":"WS_INT64_TYPE","features":[477]},{"name":"WS_INT64_VALUE_TYPE","features":[477]},{"name":"WS_INT8_DESCRIPTION","features":[477]},{"name":"WS_INT8_TYPE","features":[477]},{"name":"WS_INT8_VALUE_TYPE","features":[477]},{"name":"WS_IP_VERSION","features":[477]},{"name":"WS_IP_VERSION_4","features":[477]},{"name":"WS_IP_VERSION_6","features":[477]},{"name":"WS_IP_VERSION_AUTO","features":[477]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[305,477]},{"name":"WS_ISSUED_TOKEN_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_IS_DEFAULT_VALUE_CALLBACK","features":[305,477]},{"name":"WS_ITEM_RANGE","features":[477]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING","features":[477]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[477]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[477]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[477]},{"name":"WS_KERBEROS_APREQ_MESSAGE_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_LISTENER","features":[477]},{"name":"WS_LISTENER_PROPERTIES","features":[477]},{"name":"WS_LISTENER_PROPERTY","features":[477]},{"name":"WS_LISTENER_PROPERTY_ASYNC_CALLBACK_MODEL","features":[477]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_BINDING","features":[477]},{"name":"WS_LISTENER_PROPERTY_CHANNEL_TYPE","features":[477]},{"name":"WS_LISTENER_PROPERTY_CLOSE_TIMEOUT","features":[477]},{"name":"WS_LISTENER_PROPERTY_CONNECT_TIMEOUT","features":[477]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_CALLBACKS","features":[477]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_INSTANCE","features":[477]},{"name":"WS_LISTENER_PROPERTY_CUSTOM_LISTENER_PARAMETERS","features":[477]},{"name":"WS_LISTENER_PROPERTY_DISALLOWED_USER_AGENT","features":[477]},{"name":"WS_LISTENER_PROPERTY_ID","features":[477]},{"name":"WS_LISTENER_PROPERTY_IP_VERSION","features":[477]},{"name":"WS_LISTENER_PROPERTY_IS_MULTICAST","features":[477]},{"name":"WS_LISTENER_PROPERTY_LISTEN_BACKLOG","features":[477]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_INTERFACES","features":[477]},{"name":"WS_LISTENER_PROPERTY_MULTICAST_LOOPBACK","features":[477]},{"name":"WS_LISTENER_PROPERTY_STATE","features":[477]},{"name":"WS_LISTENER_PROPERTY_TO_HEADER_MATCHING_OPTIONS","features":[477]},{"name":"WS_LISTENER_PROPERTY_TRANSPORT_URL_MATCHING_OPTIONS","features":[477]},{"name":"WS_LISTENER_STATE","features":[477]},{"name":"WS_LISTENER_STATE_CLOSED","features":[477]},{"name":"WS_LISTENER_STATE_CLOSING","features":[477]},{"name":"WS_LISTENER_STATE_CREATED","features":[477]},{"name":"WS_LISTENER_STATE_FAULTED","features":[477]},{"name":"WS_LISTENER_STATE_OPEN","features":[477]},{"name":"WS_LISTENER_STATE_OPENING","features":[477]},{"name":"WS_LONG_CALLBACK","features":[477]},{"name":"WS_MANUAL_COOKIE_MODE","features":[477]},{"name":"WS_MATCH_URL_DNS_FULLY_QUALIFIED_HOST","features":[477]},{"name":"WS_MATCH_URL_DNS_HOST","features":[477]},{"name":"WS_MATCH_URL_EXACT_PATH","features":[477]},{"name":"WS_MATCH_URL_HOST_ADDRESSES","features":[477]},{"name":"WS_MATCH_URL_LOCAL_HOST","features":[477]},{"name":"WS_MATCH_URL_NETBIOS_HOST","features":[477]},{"name":"WS_MATCH_URL_NO_QUERY","features":[477]},{"name":"WS_MATCH_URL_PORT","features":[477]},{"name":"WS_MATCH_URL_PREFIX_PATH","features":[477]},{"name":"WS_MATCH_URL_THIS_HOST","features":[477]},{"name":"WS_MESSAGE","features":[477]},{"name":"WS_MESSAGE_DESCRIPTION","features":[305,477]},{"name":"WS_MESSAGE_DONE_CALLBACK","features":[477]},{"name":"WS_MESSAGE_ID_HEADER","features":[477]},{"name":"WS_MESSAGE_INITIALIZATION","features":[477]},{"name":"WS_MESSAGE_PROPERTIES","features":[477]},{"name":"WS_MESSAGE_PROPERTY","features":[477]},{"name":"WS_MESSAGE_PROPERTY_ADDRESSING_VERSION","features":[477]},{"name":"WS_MESSAGE_PROPERTY_BODY_READER","features":[477]},{"name":"WS_MESSAGE_PROPERTY_BODY_WRITER","features":[477]},{"name":"WS_MESSAGE_PROPERTY_ENCODED_CERT","features":[477]},{"name":"WS_MESSAGE_PROPERTY_ENVELOPE_VERSION","features":[477]},{"name":"WS_MESSAGE_PROPERTY_HEADER_BUFFER","features":[477]},{"name":"WS_MESSAGE_PROPERTY_HEADER_POSITION","features":[477]},{"name":"WS_MESSAGE_PROPERTY_HEAP","features":[477]},{"name":"WS_MESSAGE_PROPERTY_HEAP_PROPERTIES","features":[477]},{"name":"WS_MESSAGE_PROPERTY_HTTP_HEADER_AUTH_WINDOWS_TOKEN","features":[477]},{"name":"WS_MESSAGE_PROPERTY_ID","features":[477]},{"name":"WS_MESSAGE_PROPERTY_IS_ADDRESSED","features":[477]},{"name":"WS_MESSAGE_PROPERTY_IS_FAULT","features":[477]},{"name":"WS_MESSAGE_PROPERTY_MAX_PROCESSED_HEADERS","features":[477]},{"name":"WS_MESSAGE_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[477]},{"name":"WS_MESSAGE_PROPERTY_PROTECTION_LEVEL","features":[477]},{"name":"WS_MESSAGE_PROPERTY_SAML_ASSERTION","features":[477]},{"name":"WS_MESSAGE_PROPERTY_SECURITY_CONTEXT","features":[477]},{"name":"WS_MESSAGE_PROPERTY_STATE","features":[477]},{"name":"WS_MESSAGE_PROPERTY_TRANSPORT_SECURITY_WINDOWS_TOKEN","features":[477]},{"name":"WS_MESSAGE_PROPERTY_USERNAME","features":[477]},{"name":"WS_MESSAGE_PROPERTY_XML_READER_PROPERTIES","features":[477]},{"name":"WS_MESSAGE_PROPERTY_XML_WRITER_PROPERTIES","features":[477]},{"name":"WS_MESSAGE_SECURITY_USAGE","features":[477]},{"name":"WS_MESSAGE_STATE","features":[477]},{"name":"WS_MESSAGE_STATE_DONE","features":[477]},{"name":"WS_MESSAGE_STATE_EMPTY","features":[477]},{"name":"WS_MESSAGE_STATE_INITIALIZED","features":[477]},{"name":"WS_MESSAGE_STATE_READING","features":[477]},{"name":"WS_MESSAGE_STATE_WRITING","features":[477]},{"name":"WS_METADATA","features":[477]},{"name":"WS_METADATA_ENDPOINT","features":[305,477]},{"name":"WS_METADATA_ENDPOINTS","features":[305,477]},{"name":"WS_METADATA_EXCHANGE_TYPE","features":[477]},{"name":"WS_METADATA_EXCHANGE_TYPE_HTTP_GET","features":[477]},{"name":"WS_METADATA_EXCHANGE_TYPE_MEX","features":[477]},{"name":"WS_METADATA_EXCHANGE_TYPE_NONE","features":[477]},{"name":"WS_METADATA_PROPERTY","features":[477]},{"name":"WS_METADATA_PROPERTY_HEAP_PROPERTIES","features":[477]},{"name":"WS_METADATA_PROPERTY_HEAP_REQUESTED_SIZE","features":[477]},{"name":"WS_METADATA_PROPERTY_HOST_NAMES","features":[477]},{"name":"WS_METADATA_PROPERTY_ID","features":[477]},{"name":"WS_METADATA_PROPERTY_MAX_DOCUMENTS","features":[477]},{"name":"WS_METADATA_PROPERTY_POLICY_PROPERTIES","features":[477]},{"name":"WS_METADATA_PROPERTY_STATE","features":[477]},{"name":"WS_METADATA_PROPERTY_VERIFY_HOST_NAMES","features":[477]},{"name":"WS_METADATA_STATE","features":[477]},{"name":"WS_METADATA_STATE_CREATED","features":[477]},{"name":"WS_METADATA_STATE_FAULTED","features":[477]},{"name":"WS_METADATA_STATE_RESOLVED","features":[477]},{"name":"WS_MINIMAL_FAULT_DISCLOSURE","features":[477]},{"name":"WS_MOVE_TO","features":[477]},{"name":"WS_MOVE_TO_BOF","features":[477]},{"name":"WS_MOVE_TO_CHILD_ELEMENT","features":[477]},{"name":"WS_MOVE_TO_CHILD_NODE","features":[477]},{"name":"WS_MOVE_TO_END_ELEMENT","features":[477]},{"name":"WS_MOVE_TO_EOF","features":[477]},{"name":"WS_MOVE_TO_FIRST_NODE","features":[477]},{"name":"WS_MOVE_TO_NEXT_ELEMENT","features":[477]},{"name":"WS_MOVE_TO_NEXT_NODE","features":[477]},{"name":"WS_MOVE_TO_PARENT_ELEMENT","features":[477]},{"name":"WS_MOVE_TO_PREVIOUS_ELEMENT","features":[477]},{"name":"WS_MOVE_TO_PREVIOUS_NODE","features":[477]},{"name":"WS_MOVE_TO_ROOT_ELEMENT","features":[477]},{"name":"WS_MUST_UNDERSTAND_HEADER_ATTRIBUTE","features":[477]},{"name":"WS_NAMEDPIPE_CHANNEL_BINDING","features":[477]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING","features":[477]},{"name":"WS_NAMEDPIPE_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE","features":[477,389]},{"name":"WS_NCRYPT_ASYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[477]},{"name":"WS_NETPIPE_URL","features":[477]},{"name":"WS_NETTCP_URL","features":[477]},{"name":"WS_NON_RPC_LITERAL_OPERATION","features":[477]},{"name":"WS_NO_FIELD_MAPPING","features":[477]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[477]},{"name":"WS_OPAQUE_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[477]},{"name":"WS_OPEN_CHANNEL_CALLBACK","features":[477]},{"name":"WS_OPEN_LISTENER_CALLBACK","features":[477]},{"name":"WS_OPERATION_CANCEL_CALLBACK","features":[477]},{"name":"WS_OPERATION_CONTEXT","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CHANNEL_USER_STATE","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_CONTRACT_DESCRIPTION","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ENDPOINT_ADDRESS","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HEAP","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_HOST_USER_STATE","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_ID","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_INPUT_MESSAGE","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_LISTENER","features":[477]},{"name":"WS_OPERATION_CONTEXT_PROPERTY_OUTPUT_MESSAGE","features":[477]},{"name":"WS_OPERATION_DESCRIPTION","features":[305,477]},{"name":"WS_OPERATION_FREE_STATE_CALLBACK","features":[477]},{"name":"WS_OPERATION_STYLE","features":[477]},{"name":"WS_PARAMETER_DESCRIPTION","features":[477]},{"name":"WS_PARAMETER_TYPE","features":[477]},{"name":"WS_PARAMETER_TYPE_ARRAY","features":[477]},{"name":"WS_PARAMETER_TYPE_ARRAY_COUNT","features":[477]},{"name":"WS_PARAMETER_TYPE_MESSAGES","features":[477]},{"name":"WS_PARAMETER_TYPE_NORMAL","features":[477]},{"name":"WS_POLICY","features":[477]},{"name":"WS_POLICY_CONSTRAINTS","features":[477]},{"name":"WS_POLICY_EXTENSION","features":[477]},{"name":"WS_POLICY_EXTENSION_TYPE","features":[477]},{"name":"WS_POLICY_PROPERTIES","features":[477]},{"name":"WS_POLICY_PROPERTY","features":[477]},{"name":"WS_POLICY_PROPERTY_ID","features":[477]},{"name":"WS_POLICY_PROPERTY_MAX_ALTERNATIVES","features":[477]},{"name":"WS_POLICY_PROPERTY_MAX_DEPTH","features":[477]},{"name":"WS_POLICY_PROPERTY_MAX_EXTENSIONS","features":[477]},{"name":"WS_POLICY_PROPERTY_STATE","features":[477]},{"name":"WS_POLICY_STATE","features":[477]},{"name":"WS_POLICY_STATE_CREATED","features":[477]},{"name":"WS_POLICY_STATE_FAULTED","features":[477]},{"name":"WS_PROTECTION_LEVEL","features":[477]},{"name":"WS_PROTECTION_LEVEL_NONE","features":[477]},{"name":"WS_PROTECTION_LEVEL_SIGN","features":[477]},{"name":"WS_PROTECTION_LEVEL_SIGN_AND_ENCRYPT","features":[477]},{"name":"WS_PROXY_FAULT_LANG_ID","features":[477]},{"name":"WS_PROXY_MESSAGE_CALLBACK","features":[477]},{"name":"WS_PROXY_MESSAGE_CALLBACK_CONTEXT","features":[477]},{"name":"WS_PROXY_PROPERTY","features":[477]},{"name":"WS_PROXY_PROPERTY_CALL_TIMEOUT","features":[477]},{"name":"WS_PROXY_PROPERTY_ID","features":[477]},{"name":"WS_PROXY_PROPERTY_MAX_CALL_POOL_SIZE","features":[477]},{"name":"WS_PROXY_PROPERTY_MAX_CLOSE_TIMEOUT","features":[477]},{"name":"WS_PROXY_PROPERTY_MAX_PENDING_CALLS","features":[477]},{"name":"WS_PROXY_PROPERTY_MESSAGE_PROPERTIES","features":[477]},{"name":"WS_PROXY_PROPERTY_STATE","features":[477]},{"name":"WS_PULL_BYTES_CALLBACK","features":[477]},{"name":"WS_PUSH_BYTES_CALLBACK","features":[477]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE","features":[477]},{"name":"WS_RAW_SYMMETRIC_SECURITY_KEY_HANDLE_TYPE","features":[477]},{"name":"WS_READ_CALLBACK","features":[477]},{"name":"WS_READ_MESSAGE_END_CALLBACK","features":[477]},{"name":"WS_READ_MESSAGE_START_CALLBACK","features":[477]},{"name":"WS_READ_NILLABLE_POINTER","features":[477]},{"name":"WS_READ_NILLABLE_VALUE","features":[477]},{"name":"WS_READ_OPTION","features":[477]},{"name":"WS_READ_OPTIONAL_POINTER","features":[477]},{"name":"WS_READ_REQUIRED_POINTER","features":[477]},{"name":"WS_READ_REQUIRED_VALUE","features":[477]},{"name":"WS_READ_TYPE_CALLBACK","features":[477]},{"name":"WS_RECEIVE_OPTION","features":[477]},{"name":"WS_RECEIVE_OPTIONAL_MESSAGE","features":[477]},{"name":"WS_RECEIVE_REQUIRED_MESSAGE","features":[477]},{"name":"WS_RELATES_TO_HEADER","features":[477]},{"name":"WS_RELAY_HEADER_ATTRIBUTE","features":[477]},{"name":"WS_REPEATING_ANY_ELEMENT_FIELD_MAPPING","features":[477]},{"name":"WS_REPEATING_ELEMENT_CHOICE_FIELD_MAPPING","features":[477]},{"name":"WS_REPEATING_ELEMENT_FIELD_MAPPING","features":[477]},{"name":"WS_REPEATING_HEADER","features":[477]},{"name":"WS_REPEATING_HEADER_OPTION","features":[477]},{"name":"WS_REPLY_MESSAGE","features":[477]},{"name":"WS_REPLY_TO_HEADER","features":[477]},{"name":"WS_REQUEST_MESSAGE","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_ISSUE","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_NEW_CONTEXT","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_ACTION_RENEW_CONTEXT","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_APPLIES_TO","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_BEARER_KEY_TYPE_VERSION","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_CONSTRAINT","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_EXISTING_TOKEN","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ID","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_ENTROPY","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_SIZE","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_KEY_TYPE","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_ISSUED_TOKEN_TYPE","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_LOCAL_REQUEST_PARAMETERS","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_MESSAGE_PROPERTIES","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_REQUEST_ACTION","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SECURE_CONVERSATION_VERSION","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_SERVICE_REQUEST_PARAMETERS","features":[477]},{"name":"WS_REQUEST_SECURITY_TOKEN_PROPERTY_TRUST_VERSION","features":[477]},{"name":"WS_RESET_CHANNEL_CALLBACK","features":[477]},{"name":"WS_RESET_LISTENER_CALLBACK","features":[477]},{"name":"WS_RPC_LITERAL_OPERATION","features":[477]},{"name":"WS_RSA_ENDPOINT_IDENTITY","features":[477]},{"name":"WS_RSA_ENDPOINT_IDENTITY_TYPE","features":[477]},{"name":"WS_SAML_AUTHENTICATOR","features":[477]},{"name":"WS_SAML_AUTHENTICATOR_TYPE","features":[477]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING","features":[477]},{"name":"WS_SAML_MESSAGE_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_SECURE_CONVERSATION_VERSION","features":[477]},{"name":"WS_SECURE_CONVERSATION_VERSION_1_3","features":[477]},{"name":"WS_SECURE_CONVERSATION_VERSION_FEBRUARY_2005","features":[477]},{"name":"WS_SECURE_PROTOCOL","features":[477]},{"name":"WS_SECURE_PROTOCOL_SSL2","features":[477]},{"name":"WS_SECURE_PROTOCOL_SSL3","features":[477]},{"name":"WS_SECURE_PROTOCOL_TLS1_0","features":[477]},{"name":"WS_SECURE_PROTOCOL_TLS1_1","features":[477]},{"name":"WS_SECURE_PROTOCOL_TLS1_2","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_1_5","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_KEYWRAP_RSA_OAEP","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_DSA_SHA1","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA1","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_256","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_384","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ASYMMETRIC_SIGNATURE_RSA_SHA_512","features":[477]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE","features":[477]},{"name":"WS_SECURITY_ALGORITHM_CANONICALIZATION_EXCLUSIVE_WITH_COMMENTS","features":[477]},{"name":"WS_SECURITY_ALGORITHM_DEFAULT","features":[477]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA1","features":[477]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_256","features":[477]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_384","features":[477]},{"name":"WS_SECURITY_ALGORITHM_DIGEST_SHA_512","features":[477]},{"name":"WS_SECURITY_ALGORITHM_ID","features":[477]},{"name":"WS_SECURITY_ALGORITHM_KEY_DERIVATION_P_SHA1","features":[477]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY","features":[477]},{"name":"WS_SECURITY_ALGORITHM_PROPERTY_ID","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_RSA15","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC128_SHA256_RSA15","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_RSA15","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC192_SHA256_RSA15","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_RSA15","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SUITE_NAME_BASIC256_SHA256_RSA15","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA1","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_256","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_384","features":[477]},{"name":"WS_SECURITY_ALGORITHM_SYMMETRIC_SIGNATURE_HMAC_SHA_512","features":[477]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION","features":[477]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ERRATA_01","features":[477]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SCHEMA","features":[477]},{"name":"WS_SECURITY_BEARER_KEY_TYPE_VERSION_1_3_ORIGINAL_SPECIFICATION","features":[477]},{"name":"WS_SECURITY_BINDING","features":[477]},{"name":"WS_SECURITY_BINDING_CONSTRAINT","features":[477]},{"name":"WS_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTIES","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOWED_IMPERSONATION_LEVEL","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_ALLOW_ANONYMOUS_CLIENTS","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERTIFICATE_VALIDATION_CALLBACK_CONTEXT","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_CERT_FAILURES_TO_IGNORE","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_CONSTRAINT","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISABLE_CERT_REVOCATION_CHECK","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_DISALLOWED_SECURE_PROTOCOLS","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_BASIC_REALM","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_DOMAIN","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_DIGEST_REALM","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_SCHEME","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_HTTP_HEADER_AUTH_TARGET","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_ID","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_MESSAGE_PROPERTIES","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SERVER_AUTH","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_REQUIRE_SSL_CLIENT_CERT","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURE_CONVERSATION_VERSION","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_ENTROPY_MODE","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_KEY_SIZE","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_ACTIVE_CONTEXTS","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_MAX_PENDING_CONTEXTS","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_RENEWAL_INTERVAL","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_ROLLOVER_INTERVAL","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_SECURITY_CONTEXT_SUPPORT_RENEW","features":[477]},{"name":"WS_SECURITY_BINDING_PROPERTY_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[477]},{"name":"WS_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_SECURITY_CONSTRAINTS","features":[477]},{"name":"WS_SECURITY_CONTEXT","features":[477]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING","features":[477]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[477]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[477]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[477]},{"name":"WS_SECURITY_CONTEXT_MESSAGE_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_SECURITY_CONTEXT_PROPERTY","features":[477]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_ID","features":[477]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_IDENTIFIER","features":[477]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_MESSAGE_SECURITY_WINDOWS_TOKEN","features":[477]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_SAML_ASSERTION","features":[477]},{"name":"WS_SECURITY_CONTEXT_PROPERTY_USERNAME","features":[477]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[477]},{"name":"WS_SECURITY_CONTEXT_SECURITY_BINDING_TEMPLATE","features":[477]},{"name":"WS_SECURITY_DESCRIPTION","features":[477]},{"name":"WS_SECURITY_HEADER_LAYOUT","features":[477]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX","features":[477]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_FIRST","features":[477]},{"name":"WS_SECURITY_HEADER_LAYOUT_LAX_WITH_TIMESTAMP_LAST","features":[477]},{"name":"WS_SECURITY_HEADER_LAYOUT_STRICT","features":[477]},{"name":"WS_SECURITY_HEADER_VERSION","features":[477]},{"name":"WS_SECURITY_HEADER_VERSION_1_0","features":[477]},{"name":"WS_SECURITY_HEADER_VERSION_1_1","features":[477]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE","features":[477]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_CLIENT_ONLY","features":[477]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_COMBINED","features":[477]},{"name":"WS_SECURITY_KEY_ENTROPY_MODE_SERVER_ONLY","features":[477]},{"name":"WS_SECURITY_KEY_HANDLE","features":[477]},{"name":"WS_SECURITY_KEY_HANDLE_TYPE","features":[477]},{"name":"WS_SECURITY_KEY_TYPE","features":[477]},{"name":"WS_SECURITY_KEY_TYPE_ASYMMETRIC","features":[477]},{"name":"WS_SECURITY_KEY_TYPE_NONE","features":[477]},{"name":"WS_SECURITY_KEY_TYPE_SYMMETRIC","features":[477]},{"name":"WS_SECURITY_PROPERTIES","features":[477]},{"name":"WS_SECURITY_PROPERTY","features":[477]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE","features":[477]},{"name":"WS_SECURITY_PROPERTY_ALGORITHM_SUITE_NAME","features":[477]},{"name":"WS_SECURITY_PROPERTY_CONSTRAINT","features":[477]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_POLICY","features":[477]},{"name":"WS_SECURITY_PROPERTY_EXTENDED_PROTECTION_SCENARIO","features":[477]},{"name":"WS_SECURITY_PROPERTY_ID","features":[477]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_CLOCK_SKEW","features":[477]},{"name":"WS_SECURITY_PROPERTY_MAX_ALLOWED_LATENCY","features":[477]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_LAYOUT","features":[477]},{"name":"WS_SECURITY_PROPERTY_SECURITY_HEADER_VERSION","features":[477]},{"name":"WS_SECURITY_PROPERTY_SERVICE_IDENTITIES","features":[477]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_USAGE","features":[477]},{"name":"WS_SECURITY_PROPERTY_TIMESTAMP_VALIDITY_DURATION","features":[477]},{"name":"WS_SECURITY_PROPERTY_TRANSPORT_PROTECTION_LEVEL","features":[477]},{"name":"WS_SECURITY_TIMESTAMP_USAGE","features":[477]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_ALWAYS","features":[477]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_NEVER","features":[477]},{"name":"WS_SECURITY_TIMESTAMP_USAGE_REQUESTS_ONLY","features":[477]},{"name":"WS_SECURITY_TOKEN","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE_XML","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_ID","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_KEY_TYPE","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SERIALIZED_XML","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_SYMMETRIC_KEY","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE_XML","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[477]},{"name":"WS_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[477]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE","features":[477]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_CERT_THUMBPRINT","features":[477]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_LOCAL_ID","features":[477]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SAML_ASSERTION_ID","features":[477]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_SECURITY_CONTEXT_ID","features":[477]},{"name":"WS_SECURITY_TOKEN_REFERENCE_MODE_XML_BUFFER","features":[477]},{"name":"WS_SERVICE_ACCEPT_CHANNEL_CALLBACK","features":[477]},{"name":"WS_SERVICE_CANCEL_REASON","features":[477]},{"name":"WS_SERVICE_CHANNEL_FAULTED","features":[477]},{"name":"WS_SERVICE_CLOSE_CHANNEL_CALLBACK","features":[477]},{"name":"WS_SERVICE_CONTRACT","features":[305,477]},{"name":"WS_SERVICE_ENDPOINT","features":[305,477]},{"name":"WS_SERVICE_ENDPOINT_METADATA","features":[305,477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ACCEPT_CHANNEL_CALLBACK","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_MAX_SIZE","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_BODY_HEAP_TRIM_SIZE","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CHECK_MUST_UNDERSTAND","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_CLOSE_CHANNEL_CALLBACK","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_ID","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_LISTENER_PROPERTIES","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_ACCEPTING_CHANNELS","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CALL_POOL_SIZE","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNELS","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CHANNEL_POOL_SIZE","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MAX_CONCURRENCY","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_MESSAGE_PROPERTIES","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_TYPE","features":[477]},{"name":"WS_SERVICE_ENDPOINT_PROPERTY_METADATA_EXCHANGE_URL_SUFFIX","features":[477]},{"name":"WS_SERVICE_HOST","features":[477]},{"name":"WS_SERVICE_HOST_ABORT","features":[477]},{"name":"WS_SERVICE_HOST_STATE","features":[477]},{"name":"WS_SERVICE_HOST_STATE_CLOSED","features":[477]},{"name":"WS_SERVICE_HOST_STATE_CLOSING","features":[477]},{"name":"WS_SERVICE_HOST_STATE_CREATED","features":[477]},{"name":"WS_SERVICE_HOST_STATE_FAULTED","features":[477]},{"name":"WS_SERVICE_HOST_STATE_OPEN","features":[477]},{"name":"WS_SERVICE_HOST_STATE_OPENING","features":[477]},{"name":"WS_SERVICE_MESSAGE_RECEIVE_CALLBACK","features":[477]},{"name":"WS_SERVICE_METADATA","features":[305,477]},{"name":"WS_SERVICE_METADATA_DOCUMENT","features":[305,477]},{"name":"WS_SERVICE_OPERATION_MESSAGE_NILLABLE_ELEMENT","features":[477]},{"name":"WS_SERVICE_PROPERTY","features":[477]},{"name":"WS_SERVICE_PROPERTY_ACCEPT_CALLBACK","features":[477]},{"name":"WS_SERVICE_PROPERTY_CLOSE_CALLBACK","features":[477]},{"name":"WS_SERVICE_PROPERTY_CLOSE_TIMEOUT","features":[477]},{"name":"WS_SERVICE_PROPERTY_FAULT_DISCLOSURE","features":[477]},{"name":"WS_SERVICE_PROPERTY_FAULT_LANGID","features":[477]},{"name":"WS_SERVICE_PROPERTY_HOST_STATE","features":[477]},{"name":"WS_SERVICE_PROPERTY_HOST_USER_STATE","features":[477]},{"name":"WS_SERVICE_PROPERTY_ID","features":[477]},{"name":"WS_SERVICE_PROPERTY_METADATA","features":[477]},{"name":"WS_SERVICE_PROXY","features":[477]},{"name":"WS_SERVICE_PROXY_STATE","features":[477]},{"name":"WS_SERVICE_PROXY_STATE_CLOSED","features":[477]},{"name":"WS_SERVICE_PROXY_STATE_CLOSING","features":[477]},{"name":"WS_SERVICE_PROXY_STATE_CREATED","features":[477]},{"name":"WS_SERVICE_PROXY_STATE_FAULTED","features":[477]},{"name":"WS_SERVICE_PROXY_STATE_OPEN","features":[477]},{"name":"WS_SERVICE_PROXY_STATE_OPENING","features":[477]},{"name":"WS_SERVICE_SECURITY_CALLBACK","features":[305,477]},{"name":"WS_SERVICE_SECURITY_IDENTITIES","features":[477]},{"name":"WS_SERVICE_STUB_CALLBACK","features":[477]},{"name":"WS_SET_CHANNEL_PROPERTY_CALLBACK","features":[477]},{"name":"WS_SET_LISTENER_PROPERTY_CALLBACK","features":[477]},{"name":"WS_SHORT_CALLBACK","features":[477]},{"name":"WS_SHUTDOWN_SESSION_CHANNEL_CALLBACK","features":[477]},{"name":"WS_SINGLETON_HEADER","features":[477]},{"name":"WS_SOAPUDP_URL","features":[477]},{"name":"WS_SPN_ENDPOINT_IDENTITY","features":[477]},{"name":"WS_SPN_ENDPOINT_IDENTITY_TYPE","features":[477]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING","features":[477]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[305,477]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[477]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[477]},{"name":"WS_SSL_TRANSPORT_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_SSPI_TRANSPORT_SECURITY_BINDING_POLICY_DESCRIPTION","features":[477]},{"name":"WS_STREAMED_INPUT_TRANSFER_MODE","features":[477]},{"name":"WS_STREAMED_OUTPUT_TRANSFER_MODE","features":[477]},{"name":"WS_STREAMED_TRANSFER_MODE","features":[477]},{"name":"WS_STRING","features":[477]},{"name":"WS_STRING_DESCRIPTION","features":[477]},{"name":"WS_STRING_TYPE","features":[477]},{"name":"WS_STRING_USERNAME_CREDENTIAL","features":[477]},{"name":"WS_STRING_USERNAME_CREDENTIAL_TYPE","features":[477]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[477]},{"name":"WS_STRING_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[477]},{"name":"WS_STRUCT_ABSTRACT","features":[477]},{"name":"WS_STRUCT_DESCRIPTION","features":[305,477]},{"name":"WS_STRUCT_IGNORE_TRAILING_ELEMENT_CONTENT","features":[477]},{"name":"WS_STRUCT_IGNORE_UNHANDLED_ATTRIBUTES","features":[477]},{"name":"WS_STRUCT_TYPE","features":[477]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL","features":[477]},{"name":"WS_SUBJECT_NAME_CERT_CREDENTIAL_TYPE","features":[477]},{"name":"WS_SUPPORTING_MESSAGE_SECURITY_USAGE","features":[477]},{"name":"WS_TCP_BINDING_TEMPLATE","features":[477]},{"name":"WS_TCP_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_TCP_CHANNEL_BINDING","features":[477]},{"name":"WS_TCP_POLICY_DESCRIPTION","features":[477]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE","features":[477]},{"name":"WS_TCP_SSPI_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE","features":[477]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_POLICY_DESCRIPTION","features":[477]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[477]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_TCP_SSPI_KERBEROS_APREQ_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[477]},{"name":"WS_TCP_SSPI_POLICY_DESCRIPTION","features":[477]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING","features":[477]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT","features":[477]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TEMPLATE","features":[477]},{"name":"WS_TCP_SSPI_TRANSPORT_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE","features":[477]},{"name":"WS_TCP_SSPI_USERNAME_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_TCP_SSPI_USERNAME_POLICY_DESCRIPTION","features":[477]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE","features":[477]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_BINDING_TEMPLATE_TYPE","features":[477]},{"name":"WS_TCP_SSPI_USERNAME_SECURITY_CONTEXT_POLICY_DESCRIPTION","features":[477]},{"name":"WS_TEXT_FIELD_MAPPING","features":[477]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL","features":[477]},{"name":"WS_THUMBPRINT_CERT_CREDENTIAL_TYPE","features":[477]},{"name":"WS_TIMESPAN","features":[477]},{"name":"WS_TIMESPAN_DESCRIPTION","features":[477]},{"name":"WS_TIMESPAN_TYPE","features":[477]},{"name":"WS_TIMESPAN_VALUE_TYPE","features":[477]},{"name":"WS_TO_HEADER","features":[477]},{"name":"WS_TRACE_API","features":[477]},{"name":"WS_TRACE_API_ABANDON_MESSAGE","features":[477]},{"name":"WS_TRACE_API_ABORT_CALL","features":[477]},{"name":"WS_TRACE_API_ABORT_CHANNEL","features":[477]},{"name":"WS_TRACE_API_ABORT_LISTENER","features":[477]},{"name":"WS_TRACE_API_ABORT_SERVICE_HOST","features":[477]},{"name":"WS_TRACE_API_ABORT_SERVICE_PROXY","features":[477]},{"name":"WS_TRACE_API_ACCEPT_CHANNEL","features":[477]},{"name":"WS_TRACE_API_ADDRESS_MESSAGE","features":[477]},{"name":"WS_TRACE_API_ADD_CUSTOM_HEADER","features":[477]},{"name":"WS_TRACE_API_ADD_ERROR_STRING","features":[477]},{"name":"WS_TRACE_API_ADD_MAPPED_HEADER","features":[477]},{"name":"WS_TRACE_API_ALLOC","features":[477]},{"name":"WS_TRACE_API_ASYNC_EXECUTE","features":[477]},{"name":"WS_TRACE_API_CALL","features":[477]},{"name":"WS_TRACE_API_CHECK_MUST_UNDERSTAND_HEADERS","features":[477]},{"name":"WS_TRACE_API_CLOSE_CHANNEL","features":[477]},{"name":"WS_TRACE_API_CLOSE_LISTENER","features":[477]},{"name":"WS_TRACE_API_CLOSE_SERVICE_HOST","features":[477]},{"name":"WS_TRACE_API_CLOSE_SERVICE_PROXY","features":[477]},{"name":"WS_TRACE_API_COMBINE_URL","features":[477]},{"name":"WS_TRACE_API_COPY_ERROR","features":[477]},{"name":"WS_TRACE_API_COPY_NODE","features":[477]},{"name":"WS_TRACE_API_CREATE_CHANNEL","features":[477]},{"name":"WS_TRACE_API_CREATE_CHANNEL_FOR_LISTENER","features":[477]},{"name":"WS_TRACE_API_CREATE_ERROR","features":[477]},{"name":"WS_TRACE_API_CREATE_FAULT_FROM_ERROR","features":[477]},{"name":"WS_TRACE_API_CREATE_HEAP","features":[477]},{"name":"WS_TRACE_API_CREATE_LISTENER","features":[477]},{"name":"WS_TRACE_API_CREATE_MESSAGE","features":[477]},{"name":"WS_TRACE_API_CREATE_MESSAGE_FOR_CHANNEL","features":[477]},{"name":"WS_TRACE_API_CREATE_METADATA","features":[477]},{"name":"WS_TRACE_API_CREATE_READER","features":[477]},{"name":"WS_TRACE_API_CREATE_SERVICE_HOST","features":[477]},{"name":"WS_TRACE_API_CREATE_SERVICE_PROXY","features":[477]},{"name":"WS_TRACE_API_CREATE_WRITER","features":[477]},{"name":"WS_TRACE_API_CREATE_XML_BUFFER","features":[477]},{"name":"WS_TRACE_API_CREATE_XML_SECURITY_TOKEN","features":[477]},{"name":"WS_TRACE_API_DATETIME_TO_FILETIME","features":[477]},{"name":"WS_TRACE_API_DECODE_URL","features":[477]},{"name":"WS_TRACE_API_DUMP_MEMORY","features":[477]},{"name":"WS_TRACE_API_ENCODE_URL","features":[477]},{"name":"WS_TRACE_API_END_READER_CANONICALIZATION","features":[477]},{"name":"WS_TRACE_API_END_WRITER_CANONICALIZATION","features":[477]},{"name":"WS_TRACE_API_FILETIME_TO_DATETIME","features":[477]},{"name":"WS_TRACE_API_FILL_BODY","features":[477]},{"name":"WS_TRACE_API_FILL_READER","features":[477]},{"name":"WS_TRACE_API_FIND_ATTRIBUTE","features":[477]},{"name":"WS_TRACE_API_FLUSH_BODY","features":[477]},{"name":"WS_TRACE_API_FLUSH_WRITER","features":[477]},{"name":"WS_TRACE_API_FREE_CHANNEL","features":[477]},{"name":"WS_TRACE_API_FREE_ERROR","features":[477]},{"name":"WS_TRACE_API_FREE_HEAP","features":[477]},{"name":"WS_TRACE_API_FREE_LISTENER","features":[477]},{"name":"WS_TRACE_API_FREE_MESSAGE","features":[477]},{"name":"WS_TRACE_API_FREE_METADATA","features":[477]},{"name":"WS_TRACE_API_FREE_SECURITY_TOKEN","features":[477]},{"name":"WS_TRACE_API_FREE_SERVICE_HOST","features":[477]},{"name":"WS_TRACE_API_FREE_SERVICE_PROXY","features":[477]},{"name":"WS_TRACE_API_FREE_XML_READER","features":[477]},{"name":"WS_TRACE_API_FREE_XML_WRITER","features":[477]},{"name":"WS_TRACE_API_GET_CHANNEL_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_CONTEXT_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_CUSTOM_HEADER","features":[477]},{"name":"WS_TRACE_API_GET_DICTIONARY","features":[477]},{"name":"WS_TRACE_API_GET_ERROR_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_ERROR_STRING","features":[477]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_DETAIL","features":[477]},{"name":"WS_TRACE_API_GET_FAULT_ERROR_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_HEADER","features":[477]},{"name":"WS_TRACE_API_GET_HEADER_ATTRIBUTES","features":[477]},{"name":"WS_TRACE_API_GET_HEAP_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_LISTENER_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_MAPPED_HEADER","features":[477]},{"name":"WS_TRACE_API_GET_MESSAGE_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_METADATA_ENDPOINTS","features":[477]},{"name":"WS_TRACE_API_GET_METADATA_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_MISSING_METADATA_DOCUMENT_ADDRESS","features":[477]},{"name":"WS_TRACE_API_GET_POLICY_ALTERNATIVE_COUNT","features":[477]},{"name":"WS_TRACE_API_GET_POLICY_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_READER_NODE","features":[477]},{"name":"WS_TRACE_API_GET_READER_POSITION","features":[477]},{"name":"WS_TRACE_API_GET_READER_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_SECURITY_CONTEXT_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_SECURITY_TOKEN_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_SERVICE_HOST_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_SERVICE_PROXY_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_WRITER_POSITION","features":[477]},{"name":"WS_TRACE_API_GET_WRITER_PROPERTY","features":[477]},{"name":"WS_TRACE_API_GET_XML_ATTRIBUTE","features":[477]},{"name":"WS_TRACE_API_INITIALIZE_MESSAGE","features":[477]},{"name":"WS_TRACE_API_MARK_HEADER_AS_UNDERSTOOD","features":[477]},{"name":"WS_TRACE_API_MATCH_POLICY_ALTERNATIVE","features":[477]},{"name":"WS_TRACE_API_MOVE_READER","features":[477]},{"name":"WS_TRACE_API_MOVE_WRITER","features":[477]},{"name":"WS_TRACE_API_NAMESPACE_FROM_PREFIX","features":[477]},{"name":"WS_TRACE_API_NONE","features":[477]},{"name":"WS_TRACE_API_OPEN_CHANNEL","features":[477]},{"name":"WS_TRACE_API_OPEN_LISTENER","features":[477]},{"name":"WS_TRACE_API_OPEN_SERVICE_HOST","features":[477]},{"name":"WS_TRACE_API_OPEN_SERVICE_PROXY","features":[477]},{"name":"WS_TRACE_API_PREFIX_FROM_NAMESPACE","features":[477]},{"name":"WS_TRACE_API_PULL_BYTES","features":[477]},{"name":"WS_TRACE_API_PUSH_BYTES","features":[477]},{"name":"WS_TRACE_API_READ_ARRAY","features":[477]},{"name":"WS_TRACE_API_READ_ATTRIBUTE_TYPE","features":[477]},{"name":"WS_TRACE_API_READ_BODY","features":[477]},{"name":"WS_TRACE_API_READ_BYTES","features":[477]},{"name":"WS_TRACE_API_READ_CHARS","features":[477]},{"name":"WS_TRACE_API_READ_CHARS_UTF8","features":[477]},{"name":"WS_TRACE_API_READ_ELEMENT_TYPE","features":[477]},{"name":"WS_TRACE_API_READ_ELEMENT_VALUE","features":[477]},{"name":"WS_TRACE_API_READ_ENDPOINT_ADDRESS_EXTENSION","features":[477]},{"name":"WS_TRACE_API_READ_END_ATTRIBUTE","features":[477]},{"name":"WS_TRACE_API_READ_END_ELEMENT","features":[477]},{"name":"WS_TRACE_API_READ_ENVELOPE_END","features":[477]},{"name":"WS_TRACE_API_READ_ENVELOPE_START","features":[477]},{"name":"WS_TRACE_API_READ_MESSAGE_END","features":[477]},{"name":"WS_TRACE_API_READ_MESSAGE_START","features":[477]},{"name":"WS_TRACE_API_READ_METADATA","features":[477]},{"name":"WS_TRACE_API_READ_NODE","features":[477]},{"name":"WS_TRACE_API_READ_QUALIFIED_NAME","features":[477]},{"name":"WS_TRACE_API_READ_START_ATTRIBUTE","features":[477]},{"name":"WS_TRACE_API_READ_START_ELEMENT","features":[477]},{"name":"WS_TRACE_API_READ_TO_START_ELEMENT","features":[477]},{"name":"WS_TRACE_API_READ_TYPE","features":[477]},{"name":"WS_TRACE_API_READ_XML_BUFFER","features":[477]},{"name":"WS_TRACE_API_READ_XML_BUFFER_FROM_BYTES","features":[477]},{"name":"WS_TRACE_API_RECEIVE_MESSAGE","features":[477]},{"name":"WS_TRACE_API_REMOVE_CUSTOM_HEADER","features":[477]},{"name":"WS_TRACE_API_REMOVE_HEADER","features":[477]},{"name":"WS_TRACE_API_REMOVE_MAPPED_HEADER","features":[477]},{"name":"WS_TRACE_API_REMOVE_NODE","features":[477]},{"name":"WS_TRACE_API_REQUEST_REPLY","features":[477]},{"name":"WS_TRACE_API_REQUEST_SECURITY_TOKEN","features":[477]},{"name":"WS_TRACE_API_RESET_CHANNEL","features":[477]},{"name":"WS_TRACE_API_RESET_ERROR","features":[477]},{"name":"WS_TRACE_API_RESET_HEAP","features":[477]},{"name":"WS_TRACE_API_RESET_LISTENER","features":[477]},{"name":"WS_TRACE_API_RESET_MESSAGE","features":[477]},{"name":"WS_TRACE_API_RESET_METADATA","features":[477]},{"name":"WS_TRACE_API_RESET_SERVICE_HOST","features":[477]},{"name":"WS_TRACE_API_RESET_SERVICE_PROXY","features":[477]},{"name":"WS_TRACE_API_REVOKE_SECURITY_CONTEXT","features":[477]},{"name":"WS_TRACE_API_SEND_FAULT_MESSAGE_FOR_ERROR","features":[477]},{"name":"WS_TRACE_API_SEND_MESSAGE","features":[477]},{"name":"WS_TRACE_API_SEND_REPLY_MESSAGE","features":[477]},{"name":"WS_TRACE_API_SERVICE_REGISTER_FOR_CANCEL","features":[477]},{"name":"WS_TRACE_API_SET_AUTOFAIL","features":[477]},{"name":"WS_TRACE_API_SET_CHANNEL_PROPERTY","features":[477]},{"name":"WS_TRACE_API_SET_ERROR_PROPERTY","features":[477]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_DETAIL","features":[477]},{"name":"WS_TRACE_API_SET_FAULT_ERROR_PROPERTY","features":[477]},{"name":"WS_TRACE_API_SET_HEADER","features":[477]},{"name":"WS_TRACE_API_SET_INPUT","features":[477]},{"name":"WS_TRACE_API_SET_INPUT_TO_BUFFER","features":[477]},{"name":"WS_TRACE_API_SET_LISTENER_PROPERTY","features":[477]},{"name":"WS_TRACE_API_SET_MESSAGE_PROPERTY","features":[477]},{"name":"WS_TRACE_API_SET_OUTPUT","features":[477]},{"name":"WS_TRACE_API_SET_OUTPUT_TO_BUFFER","features":[477]},{"name":"WS_TRACE_API_SET_READER_POSITION","features":[477]},{"name":"WS_TRACE_API_SET_WRITER_POSITION","features":[477]},{"name":"WS_TRACE_API_SHUTDOWN_SESSION_CHANNEL","features":[477]},{"name":"WS_TRACE_API_SKIP_NODE","features":[477]},{"name":"WS_TRACE_API_START_READER_CANONICALIZATION","features":[477]},{"name":"WS_TRACE_API_START_WRITER_CANONICALIZATION","features":[477]},{"name":"WS_TRACE_API_TRIM_XML_WHITESPACE","features":[477]},{"name":"WS_TRACE_API_VERIFY_XML_NCNAME","features":[477]},{"name":"WS_TRACE_API_WRITE_ARRAY","features":[477]},{"name":"WS_TRACE_API_WRITE_ATTRIBUTE_TYPE","features":[477]},{"name":"WS_TRACE_API_WRITE_BODY","features":[477]},{"name":"WS_TRACE_API_WRITE_BYTES","features":[477]},{"name":"WS_TRACE_API_WRITE_CHARS","features":[477]},{"name":"WS_TRACE_API_WRITE_CHARS_UTF8","features":[477]},{"name":"WS_TRACE_API_WRITE_ELEMENT_TYPE","features":[477]},{"name":"WS_TRACE_API_WRITE_END_ATTRIBUTE","features":[477]},{"name":"WS_TRACE_API_WRITE_END_CDATA","features":[477]},{"name":"WS_TRACE_API_WRITE_END_ELEMENT","features":[477]},{"name":"WS_TRACE_API_WRITE_END_START_ELEMENT","features":[477]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_END","features":[477]},{"name":"WS_TRACE_API_WRITE_ENVELOPE_START","features":[477]},{"name":"WS_TRACE_API_WRITE_MESSAGE_END","features":[477]},{"name":"WS_TRACE_API_WRITE_MESSAGE_START","features":[477]},{"name":"WS_TRACE_API_WRITE_NODE","features":[477]},{"name":"WS_TRACE_API_WRITE_QUALIFIED_NAME","features":[477]},{"name":"WS_TRACE_API_WRITE_START_ATTRIBUTE","features":[477]},{"name":"WS_TRACE_API_WRITE_START_CDATA","features":[477]},{"name":"WS_TRACE_API_WRITE_START_ELEMENT","features":[477]},{"name":"WS_TRACE_API_WRITE_TEXT","features":[477]},{"name":"WS_TRACE_API_WRITE_TYPE","features":[477]},{"name":"WS_TRACE_API_WRITE_VALUE","features":[477]},{"name":"WS_TRACE_API_WRITE_XMLNS_ATTRIBUTE","features":[477]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER","features":[477]},{"name":"WS_TRACE_API_WRITE_XML_BUFFER_TO_BYTES","features":[477]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_HOST_FROM_TEMPLATE","features":[477]},{"name":"WS_TRACE_API_WS_CREATE_SERVICE_PROXY_FROM_TEMPLATE","features":[477]},{"name":"WS_TRACE_API_XML_STRING_EQUALS","features":[477]},{"name":"WS_TRANSFER_MODE","features":[477]},{"name":"WS_TRUST_VERSION","features":[477]},{"name":"WS_TRUST_VERSION_1_3","features":[477]},{"name":"WS_TRUST_VERSION_FEBRUARY_2005","features":[477]},{"name":"WS_TYPE","features":[477]},{"name":"WS_TYPE_ATTRIBUTE_FIELD_MAPPING","features":[477]},{"name":"WS_TYPE_MAPPING","features":[477]},{"name":"WS_UDP_CHANNEL_BINDING","features":[477]},{"name":"WS_UINT16_DESCRIPTION","features":[477]},{"name":"WS_UINT16_TYPE","features":[477]},{"name":"WS_UINT16_VALUE_TYPE","features":[477]},{"name":"WS_UINT32_DESCRIPTION","features":[477]},{"name":"WS_UINT32_TYPE","features":[477]},{"name":"WS_UINT32_VALUE_TYPE","features":[477]},{"name":"WS_UINT64_DESCRIPTION","features":[477]},{"name":"WS_UINT64_TYPE","features":[477]},{"name":"WS_UINT64_VALUE_TYPE","features":[477]},{"name":"WS_UINT8_DESCRIPTION","features":[477]},{"name":"WS_UINT8_TYPE","features":[477]},{"name":"WS_UINT8_VALUE_TYPE","features":[477]},{"name":"WS_UNION_DESCRIPTION","features":[305,477]},{"name":"WS_UNION_FIELD_DESCRIPTION","features":[305,477]},{"name":"WS_UNION_TYPE","features":[477]},{"name":"WS_UNIQUE_ID","features":[477]},{"name":"WS_UNIQUE_ID_DESCRIPTION","features":[477]},{"name":"WS_UNIQUE_ID_TYPE","features":[477]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY","features":[477]},{"name":"WS_UNKNOWN_ENDPOINT_IDENTITY_TYPE","features":[477]},{"name":"WS_UPN_ENDPOINT_IDENTITY","features":[477]},{"name":"WS_UPN_ENDPOINT_IDENTITY_TYPE","features":[477]},{"name":"WS_URL","features":[477]},{"name":"WS_URL_FLAGS_ALLOW_HOST_WILDCARDS","features":[477]},{"name":"WS_URL_FLAGS_NO_PATH_COLLAPSE","features":[477]},{"name":"WS_URL_FLAGS_ZERO_TERMINATE","features":[477]},{"name":"WS_URL_HTTPS_SCHEME_TYPE","features":[477]},{"name":"WS_URL_HTTP_SCHEME_TYPE","features":[477]},{"name":"WS_URL_NETPIPE_SCHEME_TYPE","features":[477]},{"name":"WS_URL_NETTCP_SCHEME_TYPE","features":[477]},{"name":"WS_URL_SCHEME_TYPE","features":[477]},{"name":"WS_URL_SOAPUDP_SCHEME_TYPE","features":[477]},{"name":"WS_USERNAME_CREDENTIAL","features":[477]},{"name":"WS_USERNAME_CREDENTIAL_TYPE","features":[477]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING","features":[477]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT","features":[477]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_CONSTRAINT_TYPE","features":[477]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_POLICY_DESCRIPTION","features":[477]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TEMPLATE","features":[477]},{"name":"WS_USERNAME_MESSAGE_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_UTF8_ARRAY_DESCRIPTION","features":[477]},{"name":"WS_UTF8_ARRAY_TYPE","features":[477]},{"name":"WS_VALIDATE_PASSWORD_CALLBACK","features":[477]},{"name":"WS_VALIDATE_SAML_CALLBACK","features":[477]},{"name":"WS_VALUE_TYPE","features":[477]},{"name":"WS_VOID_DESCRIPTION","features":[477]},{"name":"WS_VOID_TYPE","features":[477]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL","features":[477]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_CREDENTIAL_TYPE","features":[477]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE","features":[477]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_KERBEROS","features":[477]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_NTLM","features":[477]},{"name":"WS_WINDOWS_INTEGRATED_AUTH_PACKAGE_SPNEGO","features":[477]},{"name":"WS_WRITE_CALLBACK","features":[477]},{"name":"WS_WRITE_MESSAGE_END_CALLBACK","features":[477]},{"name":"WS_WRITE_MESSAGE_START_CALLBACK","features":[477]},{"name":"WS_WRITE_NILLABLE_POINTER","features":[477]},{"name":"WS_WRITE_NILLABLE_VALUE","features":[477]},{"name":"WS_WRITE_OPTION","features":[477]},{"name":"WS_WRITE_REQUIRED_POINTER","features":[477]},{"name":"WS_WRITE_REQUIRED_VALUE","features":[477]},{"name":"WS_WRITE_TYPE_CALLBACK","features":[477]},{"name":"WS_WSZ_DESCRIPTION","features":[477]},{"name":"WS_WSZ_TYPE","features":[477]},{"name":"WS_XML_ATTRIBUTE","features":[305,477]},{"name":"WS_XML_ATTRIBUTE_FIELD_MAPPING","features":[477]},{"name":"WS_XML_BASE64_TEXT","features":[477]},{"name":"WS_XML_BOOL_TEXT","features":[305,477]},{"name":"WS_XML_BUFFER","features":[477]},{"name":"WS_XML_BUFFER_PROPERTY","features":[477]},{"name":"WS_XML_BUFFER_PROPERTY_ID","features":[477]},{"name":"WS_XML_BUFFER_TYPE","features":[477]},{"name":"WS_XML_CANONICALIZATION_ALGORITHM","features":[477]},{"name":"WS_XML_CANONICALIZATION_INCLUSIVE_PREFIXES","features":[305,477]},{"name":"WS_XML_CANONICALIZATION_PROPERTY","features":[477]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ALGORITHM","features":[477]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_ID","features":[477]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_INCLUSIVE_PREFIXES","features":[477]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OMITTED_ELEMENT","features":[477]},{"name":"WS_XML_CANONICALIZATION_PROPERTY_OUTPUT_BUFFER_SIZE","features":[477]},{"name":"WS_XML_COMMENT_NODE","features":[305,477]},{"name":"WS_XML_DATETIME_TEXT","features":[477]},{"name":"WS_XML_DECIMAL_TEXT","features":[305,477]},{"name":"WS_XML_DICTIONARY","features":[305,477]},{"name":"WS_XML_DOUBLE_TEXT","features":[477]},{"name":"WS_XML_ELEMENT_NODE","features":[305,477]},{"name":"WS_XML_FLOAT_TEXT","features":[477]},{"name":"WS_XML_GUID_TEXT","features":[477]},{"name":"WS_XML_INT32_TEXT","features":[477]},{"name":"WS_XML_INT64_TEXT","features":[477]},{"name":"WS_XML_LIST_TEXT","features":[477]},{"name":"WS_XML_NODE","features":[477]},{"name":"WS_XML_NODE_POSITION","features":[477]},{"name":"WS_XML_NODE_TYPE","features":[477]},{"name":"WS_XML_NODE_TYPE_BOF","features":[477]},{"name":"WS_XML_NODE_TYPE_CDATA","features":[477]},{"name":"WS_XML_NODE_TYPE_COMMENT","features":[477]},{"name":"WS_XML_NODE_TYPE_ELEMENT","features":[477]},{"name":"WS_XML_NODE_TYPE_END_CDATA","features":[477]},{"name":"WS_XML_NODE_TYPE_END_ELEMENT","features":[477]},{"name":"WS_XML_NODE_TYPE_EOF","features":[477]},{"name":"WS_XML_NODE_TYPE_TEXT","features":[477]},{"name":"WS_XML_QNAME","features":[305,477]},{"name":"WS_XML_QNAME_DESCRIPTION","features":[477]},{"name":"WS_XML_QNAME_TEXT","features":[305,477]},{"name":"WS_XML_QNAME_TYPE","features":[477]},{"name":"WS_XML_READER","features":[477]},{"name":"WS_XML_READER_BINARY_ENCODING","features":[305,477]},{"name":"WS_XML_READER_BUFFER_INPUT","features":[477]},{"name":"WS_XML_READER_ENCODING","features":[477]},{"name":"WS_XML_READER_ENCODING_TYPE","features":[477]},{"name":"WS_XML_READER_ENCODING_TYPE_BINARY","features":[477]},{"name":"WS_XML_READER_ENCODING_TYPE_MTOM","features":[477]},{"name":"WS_XML_READER_ENCODING_TYPE_RAW","features":[477]},{"name":"WS_XML_READER_ENCODING_TYPE_TEXT","features":[477]},{"name":"WS_XML_READER_INPUT","features":[477]},{"name":"WS_XML_READER_INPUT_TYPE","features":[477]},{"name":"WS_XML_READER_INPUT_TYPE_BUFFER","features":[477]},{"name":"WS_XML_READER_INPUT_TYPE_STREAM","features":[477]},{"name":"WS_XML_READER_MTOM_ENCODING","features":[305,477]},{"name":"WS_XML_READER_PROPERTIES","features":[477]},{"name":"WS_XML_READER_PROPERTY","features":[477]},{"name":"WS_XML_READER_PROPERTY_ALLOW_FRAGMENT","features":[477]},{"name":"WS_XML_READER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[477]},{"name":"WS_XML_READER_PROPERTY_CHARSET","features":[477]},{"name":"WS_XML_READER_PROPERTY_COLUMN","features":[477]},{"name":"WS_XML_READER_PROPERTY_ID","features":[477]},{"name":"WS_XML_READER_PROPERTY_IN_ATTRIBUTE","features":[477]},{"name":"WS_XML_READER_PROPERTY_MAX_ATTRIBUTES","features":[477]},{"name":"WS_XML_READER_PROPERTY_MAX_DEPTH","features":[477]},{"name":"WS_XML_READER_PROPERTY_MAX_MIME_PARTS","features":[477]},{"name":"WS_XML_READER_PROPERTY_MAX_NAMESPACES","features":[477]},{"name":"WS_XML_READER_PROPERTY_READ_DECLARATION","features":[477]},{"name":"WS_XML_READER_PROPERTY_ROW","features":[477]},{"name":"WS_XML_READER_PROPERTY_STREAM_BUFFER_SIZE","features":[477]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_MIME_HEADERS_SIZE","features":[477]},{"name":"WS_XML_READER_PROPERTY_STREAM_MAX_ROOT_MIME_PART_SIZE","features":[477]},{"name":"WS_XML_READER_PROPERTY_UTF8_TRIM_SIZE","features":[477]},{"name":"WS_XML_READER_RAW_ENCODING","features":[477]},{"name":"WS_XML_READER_STREAM_INPUT","features":[477]},{"name":"WS_XML_READER_TEXT_ENCODING","features":[477]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY","features":[477]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ATTACHED_REFERENCE","features":[477]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_ID","features":[477]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_UNATTACHED_REFERENCE","features":[477]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_FROM_TIME","features":[477]},{"name":"WS_XML_SECURITY_TOKEN_PROPERTY_VALID_TILL_TIME","features":[477]},{"name":"WS_XML_STRING","features":[305,477]},{"name":"WS_XML_STRING_DESCRIPTION","features":[477]},{"name":"WS_XML_STRING_TYPE","features":[477]},{"name":"WS_XML_TEXT","features":[477]},{"name":"WS_XML_TEXT_NODE","features":[477]},{"name":"WS_XML_TEXT_TYPE","features":[477]},{"name":"WS_XML_TEXT_TYPE_BASE64","features":[477]},{"name":"WS_XML_TEXT_TYPE_BOOL","features":[477]},{"name":"WS_XML_TEXT_TYPE_DATETIME","features":[477]},{"name":"WS_XML_TEXT_TYPE_DECIMAL","features":[477]},{"name":"WS_XML_TEXT_TYPE_DOUBLE","features":[477]},{"name":"WS_XML_TEXT_TYPE_FLOAT","features":[477]},{"name":"WS_XML_TEXT_TYPE_GUID","features":[477]},{"name":"WS_XML_TEXT_TYPE_INT32","features":[477]},{"name":"WS_XML_TEXT_TYPE_INT64","features":[477]},{"name":"WS_XML_TEXT_TYPE_LIST","features":[477]},{"name":"WS_XML_TEXT_TYPE_QNAME","features":[477]},{"name":"WS_XML_TEXT_TYPE_TIMESPAN","features":[477]},{"name":"WS_XML_TEXT_TYPE_UINT64","features":[477]},{"name":"WS_XML_TEXT_TYPE_UNIQUE_ID","features":[477]},{"name":"WS_XML_TEXT_TYPE_UTF16","features":[477]},{"name":"WS_XML_TEXT_TYPE_UTF8","features":[477]},{"name":"WS_XML_TIMESPAN_TEXT","features":[477]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING","features":[477]},{"name":"WS_XML_TOKEN_MESSAGE_SECURITY_BINDING_TYPE","features":[477]},{"name":"WS_XML_UINT64_TEXT","features":[477]},{"name":"WS_XML_UNIQUE_ID_TEXT","features":[477]},{"name":"WS_XML_UTF16_TEXT","features":[477]},{"name":"WS_XML_UTF8_TEXT","features":[305,477]},{"name":"WS_XML_WRITER","features":[477]},{"name":"WS_XML_WRITER_BINARY_ENCODING","features":[305,477]},{"name":"WS_XML_WRITER_BUFFER_OUTPUT","features":[477]},{"name":"WS_XML_WRITER_ENCODING","features":[477]},{"name":"WS_XML_WRITER_ENCODING_TYPE","features":[477]},{"name":"WS_XML_WRITER_ENCODING_TYPE_BINARY","features":[477]},{"name":"WS_XML_WRITER_ENCODING_TYPE_MTOM","features":[477]},{"name":"WS_XML_WRITER_ENCODING_TYPE_RAW","features":[477]},{"name":"WS_XML_WRITER_ENCODING_TYPE_TEXT","features":[477]},{"name":"WS_XML_WRITER_MTOM_ENCODING","features":[305,477]},{"name":"WS_XML_WRITER_OUTPUT","features":[477]},{"name":"WS_XML_WRITER_OUTPUT_TYPE","features":[477]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_BUFFER","features":[477]},{"name":"WS_XML_WRITER_OUTPUT_TYPE_STREAM","features":[477]},{"name":"WS_XML_WRITER_PROPERTIES","features":[477]},{"name":"WS_XML_WRITER_PROPERTY","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_FRAGMENT","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_ALLOW_INVALID_CHARACTER_REFERENCES","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_BUFFERS","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_MAX_SIZE","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_BUFFER_TRIM_SIZE","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_BYTES","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_TO_CLOSE","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_BYTES_WRITTEN","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_CHARSET","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_COMPRESS_EMPTY_ELEMENTS","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_EMIT_UNCOMPRESSED_EMPTY_ELEMENTS","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_ID","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_INDENT","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_INITIAL_BUFFER","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_IN_ATTRIBUTE","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_MAX_ATTRIBUTES","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_MAX_DEPTH","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_MAX_MIME_PARTS_BUFFER_SIZE","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_MAX_NAMESPACES","features":[477]},{"name":"WS_XML_WRITER_PROPERTY_WRITE_DECLARATION","features":[477]},{"name":"WS_XML_WRITER_RAW_ENCODING","features":[477]},{"name":"WS_XML_WRITER_STREAM_OUTPUT","features":[477]},{"name":"WS_XML_WRITER_TEXT_ENCODING","features":[477]},{"name":"WebAuthNAuthenticatorGetAssertion","features":[305,477]},{"name":"WebAuthNAuthenticatorMakeCredential","features":[305,477]},{"name":"WebAuthNCancelCurrentOperation","features":[477]},{"name":"WebAuthNDeletePlatformCredential","features":[477]},{"name":"WebAuthNFreeAssertion","features":[477]},{"name":"WebAuthNFreeCredentialAttestation","features":[305,477]},{"name":"WebAuthNFreePlatformCredentialList","features":[305,477]},{"name":"WebAuthNGetApiVersionNumber","features":[477]},{"name":"WebAuthNGetCancellationId","features":[477]},{"name":"WebAuthNGetErrorName","features":[477]},{"name":"WebAuthNGetPlatformCredentialList","features":[305,477]},{"name":"WebAuthNGetW3CExceptionDOMError","features":[477]},{"name":"WebAuthNIsUserVerifyingPlatformAuthenticatorAvailable","features":[305,477]},{"name":"WsAbandonCall","features":[477]},{"name":"WsAbandonMessage","features":[477]},{"name":"WsAbortChannel","features":[477]},{"name":"WsAbortListener","features":[477]},{"name":"WsAbortServiceHost","features":[477]},{"name":"WsAbortServiceProxy","features":[477]},{"name":"WsAcceptChannel","features":[477]},{"name":"WsAddCustomHeader","features":[305,477]},{"name":"WsAddErrorString","features":[477]},{"name":"WsAddMappedHeader","features":[305,477]},{"name":"WsAddressMessage","features":[477]},{"name":"WsAlloc","features":[477]},{"name":"WsAsyncExecute","features":[477]},{"name":"WsCall","features":[305,477]},{"name":"WsCheckMustUnderstandHeaders","features":[477]},{"name":"WsCloseChannel","features":[477]},{"name":"WsCloseListener","features":[477]},{"name":"WsCloseServiceHost","features":[477]},{"name":"WsCloseServiceProxy","features":[477]},{"name":"WsCombineUrl","features":[477]},{"name":"WsCopyError","features":[477]},{"name":"WsCopyNode","features":[477]},{"name":"WsCreateChannel","features":[477]},{"name":"WsCreateChannelForListener","features":[477]},{"name":"WsCreateError","features":[477]},{"name":"WsCreateFaultFromError","features":[305,477]},{"name":"WsCreateHeap","features":[477]},{"name":"WsCreateListener","features":[477]},{"name":"WsCreateMessage","features":[477]},{"name":"WsCreateMessageForChannel","features":[477]},{"name":"WsCreateMetadata","features":[477]},{"name":"WsCreateReader","features":[477]},{"name":"WsCreateServiceEndpointFromTemplate","features":[305,477]},{"name":"WsCreateServiceHost","features":[305,477]},{"name":"WsCreateServiceProxy","features":[477]},{"name":"WsCreateServiceProxyFromTemplate","features":[477]},{"name":"WsCreateWriter","features":[477]},{"name":"WsCreateXmlBuffer","features":[477]},{"name":"WsCreateXmlSecurityToken","features":[477]},{"name":"WsDateTimeToFileTime","features":[305,477]},{"name":"WsDecodeUrl","features":[477]},{"name":"WsEncodeUrl","features":[477]},{"name":"WsEndReaderCanonicalization","features":[477]},{"name":"WsEndWriterCanonicalization","features":[477]},{"name":"WsFileTimeToDateTime","features":[305,477]},{"name":"WsFillBody","features":[477]},{"name":"WsFillReader","features":[477]},{"name":"WsFindAttribute","features":[305,477]},{"name":"WsFlushBody","features":[477]},{"name":"WsFlushWriter","features":[477]},{"name":"WsFreeChannel","features":[477]},{"name":"WsFreeError","features":[477]},{"name":"WsFreeHeap","features":[477]},{"name":"WsFreeListener","features":[477]},{"name":"WsFreeMessage","features":[477]},{"name":"WsFreeMetadata","features":[477]},{"name":"WsFreeReader","features":[477]},{"name":"WsFreeSecurityToken","features":[477]},{"name":"WsFreeServiceHost","features":[477]},{"name":"WsFreeServiceProxy","features":[477]},{"name":"WsFreeWriter","features":[477]},{"name":"WsGetChannelProperty","features":[477]},{"name":"WsGetCustomHeader","features":[305,477]},{"name":"WsGetDictionary","features":[305,477]},{"name":"WsGetErrorProperty","features":[477]},{"name":"WsGetErrorString","features":[477]},{"name":"WsGetFaultErrorDetail","features":[305,477]},{"name":"WsGetFaultErrorProperty","features":[477]},{"name":"WsGetHeader","features":[477]},{"name":"WsGetHeaderAttributes","features":[477]},{"name":"WsGetHeapProperty","features":[477]},{"name":"WsGetListenerProperty","features":[477]},{"name":"WsGetMappedHeader","features":[305,477]},{"name":"WsGetMessageProperty","features":[477]},{"name":"WsGetMetadataEndpoints","features":[305,477]},{"name":"WsGetMetadataProperty","features":[477]},{"name":"WsGetMissingMetadataDocumentAddress","features":[477]},{"name":"WsGetNamespaceFromPrefix","features":[305,477]},{"name":"WsGetOperationContextProperty","features":[477]},{"name":"WsGetPolicyAlternativeCount","features":[477]},{"name":"WsGetPolicyProperty","features":[477]},{"name":"WsGetPrefixFromNamespace","features":[305,477]},{"name":"WsGetReaderNode","features":[477]},{"name":"WsGetReaderPosition","features":[477]},{"name":"WsGetReaderProperty","features":[477]},{"name":"WsGetSecurityContextProperty","features":[477]},{"name":"WsGetSecurityTokenProperty","features":[477]},{"name":"WsGetServiceHostProperty","features":[477]},{"name":"WsGetServiceProxyProperty","features":[477]},{"name":"WsGetWriterPosition","features":[477]},{"name":"WsGetWriterProperty","features":[477]},{"name":"WsGetXmlAttribute","features":[305,477]},{"name":"WsInitializeMessage","features":[477]},{"name":"WsMarkHeaderAsUnderstood","features":[477]},{"name":"WsMatchPolicyAlternative","features":[305,477]},{"name":"WsMoveReader","features":[305,477]},{"name":"WsMoveWriter","features":[305,477]},{"name":"WsOpenChannel","features":[477]},{"name":"WsOpenListener","features":[477]},{"name":"WsOpenServiceHost","features":[477]},{"name":"WsOpenServiceProxy","features":[477]},{"name":"WsPullBytes","features":[477]},{"name":"WsPushBytes","features":[477]},{"name":"WsReadArray","features":[305,477]},{"name":"WsReadAttribute","features":[305,477]},{"name":"WsReadBody","features":[305,477]},{"name":"WsReadBytes","features":[477]},{"name":"WsReadChars","features":[477]},{"name":"WsReadCharsUtf8","features":[477]},{"name":"WsReadElement","features":[305,477]},{"name":"WsReadEndAttribute","features":[477]},{"name":"WsReadEndElement","features":[477]},{"name":"WsReadEndpointAddressExtension","features":[477]},{"name":"WsReadEnvelopeEnd","features":[477]},{"name":"WsReadEnvelopeStart","features":[477]},{"name":"WsReadMessageEnd","features":[477]},{"name":"WsReadMessageStart","features":[477]},{"name":"WsReadMetadata","features":[477]},{"name":"WsReadNode","features":[477]},{"name":"WsReadQualifiedName","features":[305,477]},{"name":"WsReadStartAttribute","features":[477]},{"name":"WsReadStartElement","features":[477]},{"name":"WsReadToStartElement","features":[305,477]},{"name":"WsReadType","features":[477]},{"name":"WsReadValue","features":[477]},{"name":"WsReadXmlBuffer","features":[477]},{"name":"WsReadXmlBufferFromBytes","features":[477]},{"name":"WsReceiveMessage","features":[305,477]},{"name":"WsRegisterOperationForCancel","features":[477]},{"name":"WsRemoveCustomHeader","features":[305,477]},{"name":"WsRemoveHeader","features":[477]},{"name":"WsRemoveMappedHeader","features":[305,477]},{"name":"WsRemoveNode","features":[477]},{"name":"WsRequestReply","features":[305,477]},{"name":"WsRequestSecurityToken","features":[477]},{"name":"WsResetChannel","features":[477]},{"name":"WsResetError","features":[477]},{"name":"WsResetHeap","features":[477]},{"name":"WsResetListener","features":[477]},{"name":"WsResetMessage","features":[477]},{"name":"WsResetMetadata","features":[477]},{"name":"WsResetServiceHost","features":[477]},{"name":"WsResetServiceProxy","features":[477]},{"name":"WsRevokeSecurityContext","features":[477]},{"name":"WsSendFaultMessageForError","features":[477]},{"name":"WsSendMessage","features":[305,477]},{"name":"WsSendReplyMessage","features":[305,477]},{"name":"WsSetChannelProperty","features":[477]},{"name":"WsSetErrorProperty","features":[477]},{"name":"WsSetFaultErrorDetail","features":[305,477]},{"name":"WsSetFaultErrorProperty","features":[477]},{"name":"WsSetHeader","features":[477]},{"name":"WsSetInput","features":[477]},{"name":"WsSetInputToBuffer","features":[477]},{"name":"WsSetListenerProperty","features":[477]},{"name":"WsSetMessageProperty","features":[477]},{"name":"WsSetOutput","features":[477]},{"name":"WsSetOutputToBuffer","features":[477]},{"name":"WsSetReaderPosition","features":[477]},{"name":"WsSetWriterPosition","features":[477]},{"name":"WsShutdownSessionChannel","features":[477]},{"name":"WsSkipNode","features":[477]},{"name":"WsStartReaderCanonicalization","features":[477]},{"name":"WsStartWriterCanonicalization","features":[477]},{"name":"WsTrimXmlWhitespace","features":[477]},{"name":"WsVerifyXmlNCName","features":[477]},{"name":"WsWriteArray","features":[305,477]},{"name":"WsWriteAttribute","features":[305,477]},{"name":"WsWriteBody","features":[305,477]},{"name":"WsWriteBytes","features":[477]},{"name":"WsWriteChars","features":[477]},{"name":"WsWriteCharsUtf8","features":[477]},{"name":"WsWriteElement","features":[305,477]},{"name":"WsWriteEndAttribute","features":[477]},{"name":"WsWriteEndCData","features":[477]},{"name":"WsWriteEndElement","features":[477]},{"name":"WsWriteEndStartElement","features":[477]},{"name":"WsWriteEnvelopeEnd","features":[477]},{"name":"WsWriteEnvelopeStart","features":[477]},{"name":"WsWriteMessageEnd","features":[477]},{"name":"WsWriteMessageStart","features":[477]},{"name":"WsWriteNode","features":[477]},{"name":"WsWriteQualifiedName","features":[305,477]},{"name":"WsWriteStartAttribute","features":[305,477]},{"name":"WsWriteStartCData","features":[477]},{"name":"WsWriteStartElement","features":[305,477]},{"name":"WsWriteText","features":[477]},{"name":"WsWriteType","features":[477]},{"name":"WsWriteValue","features":[477]},{"name":"WsWriteXmlBuffer","features":[477]},{"name":"WsWriteXmlBufferToBytes","features":[477]},{"name":"WsWriteXmlnsAttribute","features":[305,477]},{"name":"WsXmlStringEquals","features":[305,477]}],"481":[{"name":"ACCESS_ALLOWED_ACE","features":[308]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE","features":[308]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE","features":[308]},{"name":"ACCESS_ALLOWED_OBJECT_ACE","features":[308]},{"name":"ACCESS_DENIED_ACE","features":[308]},{"name":"ACCESS_DENIED_CALLBACK_ACE","features":[308]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE","features":[308]},{"name":"ACCESS_DENIED_OBJECT_ACE","features":[308]},{"name":"ACCESS_REASONS","features":[308]},{"name":"ACE_FLAGS","features":[308]},{"name":"ACE_HEADER","features":[308]},{"name":"ACE_INHERITED_OBJECT_TYPE_PRESENT","features":[308]},{"name":"ACE_OBJECT_TYPE_PRESENT","features":[308]},{"name":"ACE_REVISION","features":[308]},{"name":"ACL","features":[308]},{"name":"ACL_INFORMATION_CLASS","features":[308]},{"name":"ACL_REVISION","features":[308]},{"name":"ACL_REVISION_DS","features":[308]},{"name":"ACL_REVISION_INFORMATION","features":[308]},{"name":"ACL_SIZE_INFORMATION","features":[308]},{"name":"ATTRIBUTE_SECURITY_INFORMATION","features":[308]},{"name":"AUDIT_EVENT_TYPE","features":[308]},{"name":"AccessCheck","features":[305,308]},{"name":"AccessCheckAndAuditAlarmA","features":[305,308]},{"name":"AccessCheckAndAuditAlarmW","features":[305,308]},{"name":"AccessCheckByType","features":[305,308]},{"name":"AccessCheckByTypeAndAuditAlarmA","features":[305,308]},{"name":"AccessCheckByTypeAndAuditAlarmW","features":[305,308]},{"name":"AccessCheckByTypeResultList","features":[305,308]},{"name":"AccessCheckByTypeResultListAndAuditAlarmA","features":[305,308]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleA","features":[305,308]},{"name":"AccessCheckByTypeResultListAndAuditAlarmByHandleW","features":[305,308]},{"name":"AccessCheckByTypeResultListAndAuditAlarmW","features":[305,308]},{"name":"AclRevisionInformation","features":[308]},{"name":"AclSizeInformation","features":[308]},{"name":"AddAccessAllowedAce","features":[305,308]},{"name":"AddAccessAllowedAceEx","features":[305,308]},{"name":"AddAccessAllowedObjectAce","features":[305,308]},{"name":"AddAccessDeniedAce","features":[305,308]},{"name":"AddAccessDeniedAceEx","features":[305,308]},{"name":"AddAccessDeniedObjectAce","features":[305,308]},{"name":"AddAce","features":[305,308]},{"name":"AddAuditAccessAce","features":[305,308]},{"name":"AddAuditAccessAceEx","features":[305,308]},{"name":"AddAuditAccessObjectAce","features":[305,308]},{"name":"AddConditionalAce","features":[305,308]},{"name":"AddMandatoryAce","features":[305,308]},{"name":"AddResourceAttributeAce","features":[305,308]},{"name":"AddScopedPolicyIDAce","features":[305,308]},{"name":"AdjustTokenGroups","features":[305,308]},{"name":"AdjustTokenPrivileges","features":[305,308]},{"name":"AllocateAndInitializeSid","features":[305,308]},{"name":"AllocateLocallyUniqueId","features":[305,308]},{"name":"AreAllAccessesGranted","features":[305,308]},{"name":"AreAnyAccessesGranted","features":[305,308]},{"name":"AuditEventDirectoryServiceAccess","features":[308]},{"name":"AuditEventObjectAccess","features":[308]},{"name":"BACKUP_SECURITY_INFORMATION","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_DISABLED_BY_DEFAULT","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FLAGS","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_MANDATORY","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INT64","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_SID","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_STRING","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_USE_FOR_DENY_ONLY","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_V1","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[308]},{"name":"CLAIM_SECURITY_ATTRIBUTE_VALUE_TYPE","features":[308]},{"name":"CONTAINER_INHERIT_ACE","features":[308]},{"name":"CREATE_RESTRICTED_TOKEN_FLAGS","features":[308]},{"name":"CVT_SECONDS","features":[308]},{"name":"CheckTokenCapability","features":[305,308]},{"name":"CheckTokenMembership","features":[305,308]},{"name":"CheckTokenMembershipEx","features":[305,308]},{"name":"ConvertToAutoInheritPrivateObjectSecurity","features":[305,308]},{"name":"CopySid","features":[305,308]},{"name":"CreatePrivateObjectSecurity","features":[305,308]},{"name":"CreatePrivateObjectSecurityEx","features":[305,308]},{"name":"CreatePrivateObjectSecurityWithMultipleInheritance","features":[305,308]},{"name":"CreateRestrictedToken","features":[305,308]},{"name":"CreateWellKnownSid","features":[305,308]},{"name":"DACL_SECURITY_INFORMATION","features":[308]},{"name":"DISABLE_MAX_PRIVILEGE","features":[308]},{"name":"DeleteAce","features":[305,308]},{"name":"DeriveCapabilitySidsFromName","features":[305,308]},{"name":"DestroyPrivateObjectSecurity","features":[305,308]},{"name":"DuplicateToken","features":[305,308]},{"name":"DuplicateTokenEx","features":[305,308]},{"name":"ENUM_PERIOD","features":[308]},{"name":"ENUM_PERIOD_DAYS","features":[308]},{"name":"ENUM_PERIOD_HOURS","features":[308]},{"name":"ENUM_PERIOD_INVALID","features":[308]},{"name":"ENUM_PERIOD_MINUTES","features":[308]},{"name":"ENUM_PERIOD_MONTHS","features":[308]},{"name":"ENUM_PERIOD_SECONDS","features":[308]},{"name":"ENUM_PERIOD_WEEKS","features":[308]},{"name":"ENUM_PERIOD_YEARS","features":[308]},{"name":"EqualDomainSid","features":[305,308]},{"name":"EqualPrefixSid","features":[305,308]},{"name":"EqualSid","features":[305,308]},{"name":"FAILED_ACCESS_ACE_FLAG","features":[308]},{"name":"FindFirstFreeAce","features":[305,308]},{"name":"FreeSid","features":[308]},{"name":"GENERIC_MAPPING","features":[308]},{"name":"GROUP_SECURITY_INFORMATION","features":[308]},{"name":"GetAce","features":[305,308]},{"name":"GetAclInformation","features":[305,308]},{"name":"GetAppContainerAce","features":[305,308]},{"name":"GetCachedSigningLevel","features":[305,308]},{"name":"GetFileSecurityA","features":[305,308]},{"name":"GetFileSecurityW","features":[305,308]},{"name":"GetKernelObjectSecurity","features":[305,308]},{"name":"GetLengthSid","features":[308]},{"name":"GetPrivateObjectSecurity","features":[305,308]},{"name":"GetSecurityDescriptorControl","features":[305,308]},{"name":"GetSecurityDescriptorDacl","features":[305,308]},{"name":"GetSecurityDescriptorGroup","features":[305,308]},{"name":"GetSecurityDescriptorLength","features":[308]},{"name":"GetSecurityDescriptorOwner","features":[305,308]},{"name":"GetSecurityDescriptorRMControl","features":[308]},{"name":"GetSecurityDescriptorSacl","features":[305,308]},{"name":"GetSidIdentifierAuthority","features":[308]},{"name":"GetSidLengthRequired","features":[308]},{"name":"GetSidSubAuthority","features":[308]},{"name":"GetSidSubAuthorityCount","features":[308]},{"name":"GetTokenInformation","features":[305,308]},{"name":"GetUserObjectSecurity","features":[305,308]},{"name":"GetWindowsAccountDomainSid","features":[305,308]},{"name":"INHERITED_ACE","features":[308]},{"name":"INHERIT_NO_PROPAGATE","features":[308]},{"name":"INHERIT_ONLY","features":[308]},{"name":"INHERIT_ONLY_ACE","features":[308]},{"name":"ImpersonateAnonymousToken","features":[305,308]},{"name":"ImpersonateLoggedOnUser","features":[305,308]},{"name":"ImpersonateSelf","features":[305,308]},{"name":"InitializeAcl","features":[305,308]},{"name":"InitializeSecurityDescriptor","features":[305,308]},{"name":"InitializeSid","features":[305,308]},{"name":"IsTokenRestricted","features":[305,308]},{"name":"IsValidAcl","features":[305,308]},{"name":"IsValidSecurityDescriptor","features":[305,308]},{"name":"IsValidSid","features":[305,308]},{"name":"IsWellKnownSid","features":[305,308]},{"name":"LABEL_SECURITY_INFORMATION","features":[308]},{"name":"LLFILETIME","features":[305,308]},{"name":"LOGON32_LOGON","features":[308]},{"name":"LOGON32_LOGON_BATCH","features":[308]},{"name":"LOGON32_LOGON_INTERACTIVE","features":[308]},{"name":"LOGON32_LOGON_NETWORK","features":[308]},{"name":"LOGON32_LOGON_NETWORK_CLEARTEXT","features":[308]},{"name":"LOGON32_LOGON_NEW_CREDENTIALS","features":[308]},{"name":"LOGON32_LOGON_SERVICE","features":[308]},{"name":"LOGON32_LOGON_UNLOCK","features":[308]},{"name":"LOGON32_PROVIDER","features":[308]},{"name":"LOGON32_PROVIDER_DEFAULT","features":[308]},{"name":"LOGON32_PROVIDER_WINNT40","features":[308]},{"name":"LOGON32_PROVIDER_WINNT50","features":[308]},{"name":"LUA_TOKEN","features":[308]},{"name":"LUID_AND_ATTRIBUTES","features":[305,308]},{"name":"LogonUserA","features":[305,308]},{"name":"LogonUserExA","features":[305,308]},{"name":"LogonUserExW","features":[305,308]},{"name":"LogonUserW","features":[305,308]},{"name":"LookupAccountNameA","features":[305,308]},{"name":"LookupAccountNameW","features":[305,308]},{"name":"LookupAccountSidA","features":[305,308]},{"name":"LookupAccountSidW","features":[305,308]},{"name":"LookupPrivilegeDisplayNameA","features":[305,308]},{"name":"LookupPrivilegeDisplayNameW","features":[305,308]},{"name":"LookupPrivilegeNameA","features":[305,308]},{"name":"LookupPrivilegeNameW","features":[305,308]},{"name":"LookupPrivilegeValueA","features":[305,308]},{"name":"LookupPrivilegeValueW","features":[305,308]},{"name":"MANDATORY_LEVEL","features":[308]},{"name":"MakeAbsoluteSD","features":[305,308]},{"name":"MakeSelfRelativeSD","features":[305,308]},{"name":"MandatoryLevelCount","features":[308]},{"name":"MandatoryLevelHigh","features":[308]},{"name":"MandatoryLevelLow","features":[308]},{"name":"MandatoryLevelMedium","features":[308]},{"name":"MandatoryLevelSecureProcess","features":[308]},{"name":"MandatoryLevelSystem","features":[308]},{"name":"MandatoryLevelUntrusted","features":[308]},{"name":"MapGenericMask","features":[308]},{"name":"MaxTokenInfoClass","features":[308]},{"name":"NCRYPT_DESCRIPTOR_HANDLE","features":[308]},{"name":"NCRYPT_STREAM_HANDLE","features":[308]},{"name":"NO_INHERITANCE","features":[308]},{"name":"NO_PROPAGATE_INHERIT_ACE","features":[308]},{"name":"OBJECT_INHERIT_ACE","features":[308]},{"name":"OBJECT_SECURITY_INFORMATION","features":[308]},{"name":"OBJECT_TYPE_LIST","features":[308]},{"name":"OWNER_SECURITY_INFORMATION","features":[308]},{"name":"ObjectCloseAuditAlarmA","features":[305,308]},{"name":"ObjectCloseAuditAlarmW","features":[305,308]},{"name":"ObjectDeleteAuditAlarmA","features":[305,308]},{"name":"ObjectDeleteAuditAlarmW","features":[305,308]},{"name":"ObjectOpenAuditAlarmA","features":[305,308]},{"name":"ObjectOpenAuditAlarmW","features":[305,308]},{"name":"ObjectPrivilegeAuditAlarmA","features":[305,308]},{"name":"ObjectPrivilegeAuditAlarmW","features":[305,308]},{"name":"PLSA_AP_CALL_PACKAGE_UNTRUSTED","features":[305,308]},{"name":"PRIVILEGE_SET","features":[305,308]},{"name":"PROTECTED_DACL_SECURITY_INFORMATION","features":[308]},{"name":"PROTECTED_SACL_SECURITY_INFORMATION","features":[308]},{"name":"PSECURITY_DESCRIPTOR","features":[308]},{"name":"PSID","features":[308]},{"name":"PrivilegeCheck","features":[305,308]},{"name":"PrivilegedServiceAuditAlarmA","features":[305,308]},{"name":"PrivilegedServiceAuditAlarmW","features":[305,308]},{"name":"QUOTA_LIMITS","features":[308]},{"name":"QuerySecurityAccessMask","features":[308]},{"name":"RevertToSelf","features":[305,308]},{"name":"RtlConvertSidToUnicodeString","features":[305,308]},{"name":"RtlNormalizeSecurityDescriptor","features":[305,308]},{"name":"SACL_SECURITY_INFORMATION","features":[308]},{"name":"SAFER_LEVEL_HANDLE","features":[308]},{"name":"SANDBOX_INERT","features":[308]},{"name":"SCOPE_SECURITY_INFORMATION","features":[308]},{"name":"SECURITY_APP_PACKAGE_AUTHORITY","features":[308]},{"name":"SECURITY_ATTRIBUTES","features":[305,308]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY","features":[308]},{"name":"SECURITY_AUTO_INHERIT_FLAGS","features":[308]},{"name":"SECURITY_CAPABILITIES","features":[308]},{"name":"SECURITY_CREATOR_SID_AUTHORITY","features":[308]},{"name":"SECURITY_DESCRIPTOR","features":[308]},{"name":"SECURITY_DESCRIPTOR_CONTROL","features":[308]},{"name":"SECURITY_DESCRIPTOR_RELATIVE","features":[308]},{"name":"SECURITY_DYNAMIC_TRACKING","features":[305,308]},{"name":"SECURITY_IMPERSONATION_LEVEL","features":[308]},{"name":"SECURITY_LOCAL_SID_AUTHORITY","features":[308]},{"name":"SECURITY_MANDATORY_LABEL_AUTHORITY","features":[308]},{"name":"SECURITY_MAX_SID_SIZE","features":[308]},{"name":"SECURITY_NON_UNIQUE_AUTHORITY","features":[308]},{"name":"SECURITY_NT_AUTHORITY","features":[308]},{"name":"SECURITY_NULL_SID_AUTHORITY","features":[308]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY","features":[308]},{"name":"SECURITY_QUALITY_OF_SERVICE","features":[305,308]},{"name":"SECURITY_RESOURCE_MANAGER_AUTHORITY","features":[308]},{"name":"SECURITY_SCOPED_POLICY_ID_AUTHORITY","features":[308]},{"name":"SECURITY_STATIC_TRACKING","features":[305,308]},{"name":"SECURITY_WORLD_SID_AUTHORITY","features":[308]},{"name":"SEC_THREAD_START","features":[308]},{"name":"SEF_AVOID_OWNER_CHECK","features":[308]},{"name":"SEF_AVOID_OWNER_RESTRICTION","features":[308]},{"name":"SEF_AVOID_PRIVILEGE_CHECK","features":[308]},{"name":"SEF_DACL_AUTO_INHERIT","features":[308]},{"name":"SEF_DEFAULT_DESCRIPTOR_FOR_OBJECT","features":[308]},{"name":"SEF_DEFAULT_GROUP_FROM_PARENT","features":[308]},{"name":"SEF_DEFAULT_OWNER_FROM_PARENT","features":[308]},{"name":"SEF_MACL_NO_EXECUTE_UP","features":[308]},{"name":"SEF_MACL_NO_READ_UP","features":[308]},{"name":"SEF_MACL_NO_WRITE_UP","features":[308]},{"name":"SEF_SACL_AUTO_INHERIT","features":[308]},{"name":"SE_ACCESS_REPLY","features":[305,308]},{"name":"SE_ACCESS_REQUEST","features":[308]},{"name":"SE_ASSIGNPRIMARYTOKEN_NAME","features":[308]},{"name":"SE_AUDIT_NAME","features":[308]},{"name":"SE_BACKUP_NAME","features":[308]},{"name":"SE_CHANGE_NOTIFY_NAME","features":[308]},{"name":"SE_CREATE_GLOBAL_NAME","features":[308]},{"name":"SE_CREATE_PAGEFILE_NAME","features":[308]},{"name":"SE_CREATE_PERMANENT_NAME","features":[308]},{"name":"SE_CREATE_SYMBOLIC_LINK_NAME","features":[308]},{"name":"SE_CREATE_TOKEN_NAME","features":[308]},{"name":"SE_DACL_AUTO_INHERITED","features":[308]},{"name":"SE_DACL_AUTO_INHERIT_REQ","features":[308]},{"name":"SE_DACL_DEFAULTED","features":[308]},{"name":"SE_DACL_PRESENT","features":[308]},{"name":"SE_DACL_PROTECTED","features":[308]},{"name":"SE_DEBUG_NAME","features":[308]},{"name":"SE_DELEGATE_SESSION_USER_IMPERSONATE_NAME","features":[308]},{"name":"SE_ENABLE_DELEGATION_NAME","features":[308]},{"name":"SE_GROUP_DEFAULTED","features":[308]},{"name":"SE_IMPERSONATE_NAME","features":[308]},{"name":"SE_IMPERSONATION_STATE","features":[305,308]},{"name":"SE_INCREASE_QUOTA_NAME","features":[308]},{"name":"SE_INC_BASE_PRIORITY_NAME","features":[308]},{"name":"SE_INC_WORKING_SET_NAME","features":[308]},{"name":"SE_LOAD_DRIVER_NAME","features":[308]},{"name":"SE_LOCK_MEMORY_NAME","features":[308]},{"name":"SE_MACHINE_ACCOUNT_NAME","features":[308]},{"name":"SE_MANAGE_VOLUME_NAME","features":[308]},{"name":"SE_OWNER_DEFAULTED","features":[308]},{"name":"SE_PRIVILEGE_ENABLED","features":[308]},{"name":"SE_PRIVILEGE_ENABLED_BY_DEFAULT","features":[308]},{"name":"SE_PRIVILEGE_REMOVED","features":[308]},{"name":"SE_PRIVILEGE_USED_FOR_ACCESS","features":[308]},{"name":"SE_PROF_SINGLE_PROCESS_NAME","features":[308]},{"name":"SE_RELABEL_NAME","features":[308]},{"name":"SE_REMOTE_SHUTDOWN_NAME","features":[308]},{"name":"SE_RESTORE_NAME","features":[308]},{"name":"SE_RM_CONTROL_VALID","features":[308]},{"name":"SE_SACL_AUTO_INHERITED","features":[308]},{"name":"SE_SACL_AUTO_INHERIT_REQ","features":[308]},{"name":"SE_SACL_DEFAULTED","features":[308]},{"name":"SE_SACL_PRESENT","features":[308]},{"name":"SE_SACL_PROTECTED","features":[308]},{"name":"SE_SECURITY_DESCRIPTOR","features":[308]},{"name":"SE_SECURITY_NAME","features":[308]},{"name":"SE_SELF_RELATIVE","features":[308]},{"name":"SE_SHUTDOWN_NAME","features":[308]},{"name":"SE_SID","features":[308]},{"name":"SE_SYNC_AGENT_NAME","features":[308]},{"name":"SE_SYSTEMTIME_NAME","features":[308]},{"name":"SE_SYSTEM_ENVIRONMENT_NAME","features":[308]},{"name":"SE_SYSTEM_PROFILE_NAME","features":[308]},{"name":"SE_TAKE_OWNERSHIP_NAME","features":[308]},{"name":"SE_TCB_NAME","features":[308]},{"name":"SE_TIME_ZONE_NAME","features":[308]},{"name":"SE_TRUSTED_CREDMAN_ACCESS_NAME","features":[308]},{"name":"SE_UNDOCK_NAME","features":[308]},{"name":"SE_UNSOLICITED_INPUT_NAME","features":[308]},{"name":"SID","features":[308]},{"name":"SID_AND_ATTRIBUTES","features":[308]},{"name":"SID_AND_ATTRIBUTES_HASH","features":[308]},{"name":"SID_IDENTIFIER_AUTHORITY","features":[308]},{"name":"SID_NAME_USE","features":[308]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_NOT_VALIDATED","features":[308]},{"name":"SIGNING_LEVEL_FILE_CACHE_FLAG_VALIDATE_ONLY","features":[308]},{"name":"SIGNING_LEVEL_MICROSOFT","features":[308]},{"name":"SUB_CONTAINERS_AND_OBJECTS_INHERIT","features":[308]},{"name":"SUB_CONTAINERS_ONLY_INHERIT","features":[308]},{"name":"SUB_OBJECTS_ONLY_INHERIT","features":[308]},{"name":"SUCCESSFUL_ACCESS_ACE_FLAG","features":[308]},{"name":"SYSTEM_ACCESS_FILTER_ACE","features":[308]},{"name":"SYSTEM_ALARM_ACE","features":[308]},{"name":"SYSTEM_ALARM_CALLBACK_ACE","features":[308]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE","features":[308]},{"name":"SYSTEM_ALARM_OBJECT_ACE","features":[308]},{"name":"SYSTEM_AUDIT_ACE","features":[308]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE","features":[308]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE","features":[308]},{"name":"SYSTEM_AUDIT_OBJECT_ACE","features":[308]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_FLAGS","features":[308]},{"name":"SYSTEM_MANDATORY_LABEL_ACE","features":[308]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE","features":[308]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE","features":[308]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE","features":[308]},{"name":"SecurityAnonymous","features":[308]},{"name":"SecurityDelegation","features":[308]},{"name":"SecurityIdentification","features":[308]},{"name":"SecurityImpersonation","features":[308]},{"name":"SetAclInformation","features":[305,308]},{"name":"SetCachedSigningLevel","features":[305,308]},{"name":"SetFileSecurityA","features":[305,308]},{"name":"SetFileSecurityW","features":[305,308]},{"name":"SetKernelObjectSecurity","features":[305,308]},{"name":"SetPrivateObjectSecurity","features":[305,308]},{"name":"SetPrivateObjectSecurityEx","features":[305,308]},{"name":"SetSecurityAccessMask","features":[308]},{"name":"SetSecurityDescriptorControl","features":[305,308]},{"name":"SetSecurityDescriptorDacl","features":[305,308]},{"name":"SetSecurityDescriptorGroup","features":[305,308]},{"name":"SetSecurityDescriptorOwner","features":[305,308]},{"name":"SetSecurityDescriptorRMControl","features":[308]},{"name":"SetSecurityDescriptorSacl","features":[305,308]},{"name":"SetTokenInformation","features":[305,308]},{"name":"SetUserObjectSecurity","features":[305,308]},{"name":"SidTypeAlias","features":[308]},{"name":"SidTypeComputer","features":[308]},{"name":"SidTypeDeletedAccount","features":[308]},{"name":"SidTypeDomain","features":[308]},{"name":"SidTypeGroup","features":[308]},{"name":"SidTypeInvalid","features":[308]},{"name":"SidTypeLabel","features":[308]},{"name":"SidTypeLogonSession","features":[308]},{"name":"SidTypeUnknown","features":[308]},{"name":"SidTypeUser","features":[308]},{"name":"SidTypeWellKnownGroup","features":[308]},{"name":"TOKEN_ACCESS_INFORMATION","features":[305,308]},{"name":"TOKEN_ACCESS_MASK","features":[308]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE","features":[308]},{"name":"TOKEN_ACCESS_PSEUDO_HANDLE_WIN8","features":[308]},{"name":"TOKEN_ACCESS_SYSTEM_SECURITY","features":[308]},{"name":"TOKEN_ADJUST_DEFAULT","features":[308]},{"name":"TOKEN_ADJUST_GROUPS","features":[308]},{"name":"TOKEN_ADJUST_PRIVILEGES","features":[308]},{"name":"TOKEN_ADJUST_SESSIONID","features":[308]},{"name":"TOKEN_ALL_ACCESS","features":[308]},{"name":"TOKEN_APPCONTAINER_INFORMATION","features":[308]},{"name":"TOKEN_ASSIGN_PRIMARY","features":[308]},{"name":"TOKEN_AUDIT_POLICY","features":[308]},{"name":"TOKEN_CONTROL","features":[305,308]},{"name":"TOKEN_DEFAULT_DACL","features":[308]},{"name":"TOKEN_DELETE","features":[308]},{"name":"TOKEN_DEVICE_CLAIMS","features":[308]},{"name":"TOKEN_DUPLICATE","features":[308]},{"name":"TOKEN_ELEVATION","features":[308]},{"name":"TOKEN_ELEVATION_TYPE","features":[308]},{"name":"TOKEN_EXECUTE","features":[308]},{"name":"TOKEN_GROUPS","features":[308]},{"name":"TOKEN_GROUPS_AND_PRIVILEGES","features":[305,308]},{"name":"TOKEN_IMPERSONATE","features":[308]},{"name":"TOKEN_INFORMATION_CLASS","features":[308]},{"name":"TOKEN_LINKED_TOKEN","features":[305,308]},{"name":"TOKEN_MANDATORY_LABEL","features":[308]},{"name":"TOKEN_MANDATORY_POLICY","features":[308]},{"name":"TOKEN_MANDATORY_POLICY_ID","features":[308]},{"name":"TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN","features":[308]},{"name":"TOKEN_MANDATORY_POLICY_NO_WRITE_UP","features":[308]},{"name":"TOKEN_MANDATORY_POLICY_OFF","features":[308]},{"name":"TOKEN_MANDATORY_POLICY_VALID_MASK","features":[308]},{"name":"TOKEN_ORIGIN","features":[305,308]},{"name":"TOKEN_OWNER","features":[308]},{"name":"TOKEN_PRIMARY_GROUP","features":[308]},{"name":"TOKEN_PRIVILEGES","features":[305,308]},{"name":"TOKEN_PRIVILEGES_ATTRIBUTES","features":[308]},{"name":"TOKEN_QUERY","features":[308]},{"name":"TOKEN_QUERY_SOURCE","features":[308]},{"name":"TOKEN_READ","features":[308]},{"name":"TOKEN_READ_CONTROL","features":[308]},{"name":"TOKEN_SOURCE","features":[305,308]},{"name":"TOKEN_STATISTICS","features":[305,308]},{"name":"TOKEN_TRUST_CONSTRAINT_MASK","features":[308]},{"name":"TOKEN_TYPE","features":[308]},{"name":"TOKEN_USER","features":[308]},{"name":"TOKEN_USER_CLAIMS","features":[308]},{"name":"TOKEN_WRITE","features":[308]},{"name":"TOKEN_WRITE_DAC","features":[308]},{"name":"TOKEN_WRITE_OWNER","features":[308]},{"name":"TokenAccessInformation","features":[308]},{"name":"TokenAppContainerNumber","features":[308]},{"name":"TokenAppContainerSid","features":[308]},{"name":"TokenAuditPolicy","features":[308]},{"name":"TokenBnoIsolation","features":[308]},{"name":"TokenCapabilities","features":[308]},{"name":"TokenChildProcessFlags","features":[308]},{"name":"TokenDefaultDacl","features":[308]},{"name":"TokenDeviceClaimAttributes","features":[308]},{"name":"TokenDeviceGroups","features":[308]},{"name":"TokenElevation","features":[308]},{"name":"TokenElevationType","features":[308]},{"name":"TokenElevationTypeDefault","features":[308]},{"name":"TokenElevationTypeFull","features":[308]},{"name":"TokenElevationTypeLimited","features":[308]},{"name":"TokenGroups","features":[308]},{"name":"TokenGroupsAndPrivileges","features":[308]},{"name":"TokenHasRestrictions","features":[308]},{"name":"TokenImpersonation","features":[308]},{"name":"TokenImpersonationLevel","features":[308]},{"name":"TokenIntegrityLevel","features":[308]},{"name":"TokenIsAppContainer","features":[308]},{"name":"TokenIsAppSilo","features":[308]},{"name":"TokenIsLessPrivilegedAppContainer","features":[308]},{"name":"TokenIsRestricted","features":[308]},{"name":"TokenIsSandboxed","features":[308]},{"name":"TokenLinkedToken","features":[308]},{"name":"TokenLogonSid","features":[308]},{"name":"TokenMandatoryPolicy","features":[308]},{"name":"TokenOrigin","features":[308]},{"name":"TokenOwner","features":[308]},{"name":"TokenPrimary","features":[308]},{"name":"TokenPrimaryGroup","features":[308]},{"name":"TokenPrivateNameSpace","features":[308]},{"name":"TokenPrivileges","features":[308]},{"name":"TokenProcessTrustLevel","features":[308]},{"name":"TokenRestrictedDeviceClaimAttributes","features":[308]},{"name":"TokenRestrictedDeviceGroups","features":[308]},{"name":"TokenRestrictedSids","features":[308]},{"name":"TokenRestrictedUserClaimAttributes","features":[308]},{"name":"TokenSandBoxInert","features":[308]},{"name":"TokenSecurityAttributes","features":[308]},{"name":"TokenSessionId","features":[308]},{"name":"TokenSessionReference","features":[308]},{"name":"TokenSingletonAttributes","features":[308]},{"name":"TokenSource","features":[308]},{"name":"TokenStatistics","features":[308]},{"name":"TokenType","features":[308]},{"name":"TokenUIAccess","features":[308]},{"name":"TokenUser","features":[308]},{"name":"TokenUserClaimAttributes","features":[308]},{"name":"TokenVirtualizationAllowed","features":[308]},{"name":"TokenVirtualizationEnabled","features":[308]},{"name":"UNPROTECTED_DACL_SECURITY_INFORMATION","features":[308]},{"name":"UNPROTECTED_SACL_SECURITY_INFORMATION","features":[308]},{"name":"WELL_KNOWN_SID_TYPE","features":[308]},{"name":"WRITE_RESTRICTED","features":[308]},{"name":"WinAccountAdministratorSid","features":[308]},{"name":"WinAccountCertAdminsSid","features":[308]},{"name":"WinAccountCloneableControllersSid","features":[308]},{"name":"WinAccountComputersSid","features":[308]},{"name":"WinAccountControllersSid","features":[308]},{"name":"WinAccountDefaultSystemManagedSid","features":[308]},{"name":"WinAccountDomainAdminsSid","features":[308]},{"name":"WinAccountDomainGuestsSid","features":[308]},{"name":"WinAccountDomainUsersSid","features":[308]},{"name":"WinAccountEnterpriseAdminsSid","features":[308]},{"name":"WinAccountEnterpriseKeyAdminsSid","features":[308]},{"name":"WinAccountGuestSid","features":[308]},{"name":"WinAccountKeyAdminsSid","features":[308]},{"name":"WinAccountKrbtgtSid","features":[308]},{"name":"WinAccountPolicyAdminsSid","features":[308]},{"name":"WinAccountProtectedUsersSid","features":[308]},{"name":"WinAccountRasAndIasServersSid","features":[308]},{"name":"WinAccountReadonlyControllersSid","features":[308]},{"name":"WinAccountSchemaAdminsSid","features":[308]},{"name":"WinAnonymousSid","features":[308]},{"name":"WinApplicationPackageAuthoritySid","features":[308]},{"name":"WinAuthenticatedUserSid","features":[308]},{"name":"WinAuthenticationAuthorityAssertedSid","features":[308]},{"name":"WinAuthenticationFreshKeyAuthSid","features":[308]},{"name":"WinAuthenticationKeyPropertyAttestationSid","features":[308]},{"name":"WinAuthenticationKeyPropertyMFASid","features":[308]},{"name":"WinAuthenticationKeyTrustSid","features":[308]},{"name":"WinAuthenticationServiceAssertedSid","features":[308]},{"name":"WinBatchSid","features":[308]},{"name":"WinBuiltinAccessControlAssistanceOperatorsSid","features":[308]},{"name":"WinBuiltinAccountOperatorsSid","features":[308]},{"name":"WinBuiltinAdministratorsSid","features":[308]},{"name":"WinBuiltinAnyPackageSid","features":[308]},{"name":"WinBuiltinAuthorizationAccessSid","features":[308]},{"name":"WinBuiltinBackupOperatorsSid","features":[308]},{"name":"WinBuiltinCertSvcDComAccessGroup","features":[308]},{"name":"WinBuiltinCryptoOperatorsSid","features":[308]},{"name":"WinBuiltinDCOMUsersSid","features":[308]},{"name":"WinBuiltinDefaultSystemManagedGroupSid","features":[308]},{"name":"WinBuiltinDeviceOwnersSid","features":[308]},{"name":"WinBuiltinDomainSid","features":[308]},{"name":"WinBuiltinEventLogReadersGroup","features":[308]},{"name":"WinBuiltinGuestsSid","features":[308]},{"name":"WinBuiltinHyperVAdminsSid","features":[308]},{"name":"WinBuiltinIUsersSid","features":[308]},{"name":"WinBuiltinIncomingForestTrustBuildersSid","features":[308]},{"name":"WinBuiltinNetworkConfigurationOperatorsSid","features":[308]},{"name":"WinBuiltinPerfLoggingUsersSid","features":[308]},{"name":"WinBuiltinPerfMonitoringUsersSid","features":[308]},{"name":"WinBuiltinPowerUsersSid","features":[308]},{"name":"WinBuiltinPreWindows2000CompatibleAccessSid","features":[308]},{"name":"WinBuiltinPrintOperatorsSid","features":[308]},{"name":"WinBuiltinRDSEndpointServersSid","features":[308]},{"name":"WinBuiltinRDSManagementServersSid","features":[308]},{"name":"WinBuiltinRDSRemoteAccessServersSid","features":[308]},{"name":"WinBuiltinRemoteDesktopUsersSid","features":[308]},{"name":"WinBuiltinRemoteManagementUsersSid","features":[308]},{"name":"WinBuiltinReplicatorSid","features":[308]},{"name":"WinBuiltinStorageReplicaAdminsSid","features":[308]},{"name":"WinBuiltinSystemOperatorsSid","features":[308]},{"name":"WinBuiltinTerminalServerLicenseServersSid","features":[308]},{"name":"WinBuiltinUsersSid","features":[308]},{"name":"WinCacheablePrincipalsGroupSid","features":[308]},{"name":"WinCapabilityAppointmentsSid","features":[308]},{"name":"WinCapabilityContactsSid","features":[308]},{"name":"WinCapabilityDocumentsLibrarySid","features":[308]},{"name":"WinCapabilityEnterpriseAuthenticationSid","features":[308]},{"name":"WinCapabilityInternetClientServerSid","features":[308]},{"name":"WinCapabilityInternetClientSid","features":[308]},{"name":"WinCapabilityMusicLibrarySid","features":[308]},{"name":"WinCapabilityPicturesLibrarySid","features":[308]},{"name":"WinCapabilityPrivateNetworkClientServerSid","features":[308]},{"name":"WinCapabilityRemovableStorageSid","features":[308]},{"name":"WinCapabilitySharedUserCertificatesSid","features":[308]},{"name":"WinCapabilityVideosLibrarySid","features":[308]},{"name":"WinConsoleLogonSid","features":[308]},{"name":"WinCreatorGroupServerSid","features":[308]},{"name":"WinCreatorGroupSid","features":[308]},{"name":"WinCreatorOwnerRightsSid","features":[308]},{"name":"WinCreatorOwnerServerSid","features":[308]},{"name":"WinCreatorOwnerSid","features":[308]},{"name":"WinDialupSid","features":[308]},{"name":"WinDigestAuthenticationSid","features":[308]},{"name":"WinEnterpriseControllersSid","features":[308]},{"name":"WinEnterpriseReadonlyControllersSid","features":[308]},{"name":"WinHighLabelSid","features":[308]},{"name":"WinIUserSid","features":[308]},{"name":"WinInteractiveSid","features":[308]},{"name":"WinLocalAccountAndAdministratorSid","features":[308]},{"name":"WinLocalAccountSid","features":[308]},{"name":"WinLocalLogonSid","features":[308]},{"name":"WinLocalServiceSid","features":[308]},{"name":"WinLocalSid","features":[308]},{"name":"WinLocalSystemSid","features":[308]},{"name":"WinLogonIdsSid","features":[308]},{"name":"WinLowLabelSid","features":[308]},{"name":"WinMediumLabelSid","features":[308]},{"name":"WinMediumPlusLabelSid","features":[308]},{"name":"WinNTLMAuthenticationSid","features":[308]},{"name":"WinNetworkServiceSid","features":[308]},{"name":"WinNetworkSid","features":[308]},{"name":"WinNewEnterpriseReadonlyControllersSid","features":[308]},{"name":"WinNonCacheablePrincipalsGroupSid","features":[308]},{"name":"WinNtAuthoritySid","features":[308]},{"name":"WinNullSid","features":[308]},{"name":"WinOtherOrganizationSid","features":[308]},{"name":"WinProxySid","features":[308]},{"name":"WinRemoteLogonIdSid","features":[308]},{"name":"WinRestrictedCodeSid","features":[308]},{"name":"WinSChannelAuthenticationSid","features":[308]},{"name":"WinSelfSid","features":[308]},{"name":"WinServiceSid","features":[308]},{"name":"WinSystemLabelSid","features":[308]},{"name":"WinTerminalServerSid","features":[308]},{"name":"WinThisOrganizationCertificateSid","features":[308]},{"name":"WinThisOrganizationSid","features":[308]},{"name":"WinUntrustedLabelSid","features":[308]},{"name":"WinUserModeDriversSid","features":[308]},{"name":"WinWorldSid","features":[308]},{"name":"WinWriteRestrictedCodeSid","features":[308]},{"name":"cwcFILENAMESUFFIXMAX","features":[308]},{"name":"cwcHRESULTSTRING","features":[308]},{"name":"szLBRACE","features":[308]},{"name":"szLPAREN","features":[308]},{"name":"szRBRACE","features":[308]},{"name":"szRPAREN","features":[308]},{"name":"wszCERTENROLLSHAREPATH","features":[308]},{"name":"wszFCSAPARM_CERTFILENAMESUFFIX","features":[308]},{"name":"wszFCSAPARM_CONFIGDN","features":[308]},{"name":"wszFCSAPARM_CRLDELTAFILENAMESUFFIX","features":[308]},{"name":"wszFCSAPARM_CRLFILENAMESUFFIX","features":[308]},{"name":"wszFCSAPARM_DOMAINDN","features":[308]},{"name":"wszFCSAPARM_DSCACERTATTRIBUTE","features":[308]},{"name":"wszFCSAPARM_DSCRLATTRIBUTE","features":[308]},{"name":"wszFCSAPARM_DSCROSSCERTPAIRATTRIBUTE","features":[308]},{"name":"wszFCSAPARM_DSKRACERTATTRIBUTE","features":[308]},{"name":"wszFCSAPARM_DSUSERCERTATTRIBUTE","features":[308]},{"name":"wszFCSAPARM_SANITIZEDCANAME","features":[308]},{"name":"wszFCSAPARM_SANITIZEDCANAMEHASH","features":[308]},{"name":"wszFCSAPARM_SERVERDNSNAME","features":[308]},{"name":"wszFCSAPARM_SERVERSHORTNAME","features":[308]},{"name":"wszLBRACE","features":[308]},{"name":"wszLPAREN","features":[308]},{"name":"wszRBRACE","features":[308]},{"name":"wszRPAREN","features":[308]}],"482":[{"name":"SAFER_CODE_PROPERTIES_V1","features":[305,478,389]},{"name":"SAFER_CODE_PROPERTIES_V2","features":[305,478,389]},{"name":"SAFER_COMPUTE_TOKEN_FROM_LEVEL_FLAGS","features":[478]},{"name":"SAFER_CRITERIA_APPX_PACKAGE","features":[478]},{"name":"SAFER_CRITERIA_AUTHENTICODE","features":[478]},{"name":"SAFER_CRITERIA_IMAGEHASH","features":[478]},{"name":"SAFER_CRITERIA_IMAGEPATH","features":[478]},{"name":"SAFER_CRITERIA_IMAGEPATH_NT","features":[478]},{"name":"SAFER_CRITERIA_NOSIGNEDHASH","features":[478]},{"name":"SAFER_CRITERIA_URLZONE","features":[478]},{"name":"SAFER_HASH_IDENTIFICATION","features":[305,478,389]},{"name":"SAFER_HASH_IDENTIFICATION2","features":[305,478,389]},{"name":"SAFER_IDENTIFICATION_HEADER","features":[305,478]},{"name":"SAFER_IDENTIFICATION_TYPES","features":[478]},{"name":"SAFER_LEVELID_CONSTRAINED","features":[478]},{"name":"SAFER_LEVELID_DISALLOWED","features":[478]},{"name":"SAFER_LEVELID_FULLYTRUSTED","features":[478]},{"name":"SAFER_LEVELID_NORMALUSER","features":[478]},{"name":"SAFER_LEVELID_UNTRUSTED","features":[478]},{"name":"SAFER_LEVEL_OPEN","features":[478]},{"name":"SAFER_MAX_DESCRIPTION_SIZE","features":[478]},{"name":"SAFER_MAX_FRIENDLYNAME_SIZE","features":[478]},{"name":"SAFER_MAX_HASH_SIZE","features":[478]},{"name":"SAFER_OBJECT_INFO_CLASS","features":[478]},{"name":"SAFER_PATHNAME_IDENTIFICATION","features":[305,478]},{"name":"SAFER_POLICY_BLOCK_CLIENT_UI","features":[478]},{"name":"SAFER_POLICY_HASH_DUPLICATE","features":[478]},{"name":"SAFER_POLICY_INFO_CLASS","features":[478]},{"name":"SAFER_POLICY_JOBID_CONSTRAINED","features":[478]},{"name":"SAFER_POLICY_JOBID_MASK","features":[478]},{"name":"SAFER_POLICY_JOBID_UNTRUSTED","features":[478]},{"name":"SAFER_POLICY_ONLY_AUDIT","features":[478]},{"name":"SAFER_POLICY_ONLY_EXES","features":[478]},{"name":"SAFER_POLICY_SANDBOX_INERT","features":[478]},{"name":"SAFER_POLICY_UIFLAGS_HIDDEN","features":[478]},{"name":"SAFER_POLICY_UIFLAGS_INFORMATION_PROMPT","features":[478]},{"name":"SAFER_POLICY_UIFLAGS_MASK","features":[478]},{"name":"SAFER_POLICY_UIFLAGS_OPTION_PROMPT","features":[478]},{"name":"SAFER_SCOPEID_MACHINE","features":[478]},{"name":"SAFER_SCOPEID_USER","features":[478]},{"name":"SAFER_TOKEN_COMPARE_ONLY","features":[478]},{"name":"SAFER_TOKEN_MAKE_INERT","features":[478]},{"name":"SAFER_TOKEN_NULL_IF_EQUAL","features":[478]},{"name":"SAFER_TOKEN_WANT_FLAGS","features":[478]},{"name":"SAFER_URLZONE_IDENTIFICATION","features":[305,478]},{"name":"SRP_POLICY_APPX","features":[478]},{"name":"SRP_POLICY_DLL","features":[478]},{"name":"SRP_POLICY_EXE","features":[478]},{"name":"SRP_POLICY_MANAGEDINSTALLER","features":[478]},{"name":"SRP_POLICY_MSI","features":[478]},{"name":"SRP_POLICY_NOV2","features":[478]},{"name":"SRP_POLICY_SCRIPT","features":[478]},{"name":"SRP_POLICY_SHELL","features":[478]},{"name":"SRP_POLICY_WLDPCONFIGCI","features":[478]},{"name":"SRP_POLICY_WLDPMSI","features":[478]},{"name":"SRP_POLICY_WLDPSCRIPT","features":[478]},{"name":"SaferCloseLevel","features":[305,478]},{"name":"SaferComputeTokenFromLevel","features":[305,478]},{"name":"SaferCreateLevel","features":[305,478]},{"name":"SaferGetLevelInformation","features":[305,478]},{"name":"SaferGetPolicyInformation","features":[305,478]},{"name":"SaferIdentifyLevel","features":[305,478,389]},{"name":"SaferIdentityDefault","features":[478]},{"name":"SaferIdentityTypeCertificate","features":[478]},{"name":"SaferIdentityTypeImageHash","features":[478]},{"name":"SaferIdentityTypeImageName","features":[478]},{"name":"SaferIdentityTypeUrlZone","features":[478]},{"name":"SaferObjectAllIdentificationGuids","features":[478]},{"name":"SaferObjectBuiltin","features":[478]},{"name":"SaferObjectDefaultOwner","features":[478]},{"name":"SaferObjectDeletedPrivileges","features":[478]},{"name":"SaferObjectDescription","features":[478]},{"name":"SaferObjectDisableMaxPrivilege","features":[478]},{"name":"SaferObjectDisallowed","features":[478]},{"name":"SaferObjectExtendedError","features":[478]},{"name":"SaferObjectFriendlyName","features":[478]},{"name":"SaferObjectInvertDeletedPrivileges","features":[478]},{"name":"SaferObjectLevelId","features":[478]},{"name":"SaferObjectRestrictedSidsAdded","features":[478]},{"name":"SaferObjectRestrictedSidsInverted","features":[478]},{"name":"SaferObjectScopeId","features":[478]},{"name":"SaferObjectSidsToDisable","features":[478]},{"name":"SaferObjectSingleIdentification","features":[478]},{"name":"SaferPolicyAuthenticodeEnabled","features":[478]},{"name":"SaferPolicyDefaultLevel","features":[478]},{"name":"SaferPolicyDefaultLevelFlags","features":[478]},{"name":"SaferPolicyEnableTransparentEnforcement","features":[478]},{"name":"SaferPolicyEvaluateUserScope","features":[478]},{"name":"SaferPolicyLevelList","features":[478]},{"name":"SaferPolicyScopeFlags","features":[478]},{"name":"SaferRecordEventLogEntry","features":[305,478]},{"name":"SaferSetLevelInformation","features":[305,478]},{"name":"SaferSetPolicyInformation","features":[305,478]},{"name":"SaferiIsExecutableFileType","features":[305,478]}],"483":[{"name":"ACCEPT_SECURITY_CONTEXT_FN","features":[326,479]},{"name":"ACCOUNT_ADJUST_PRIVILEGES","features":[326]},{"name":"ACCOUNT_ADJUST_QUOTAS","features":[326]},{"name":"ACCOUNT_ADJUST_SYSTEM_ACCESS","features":[326]},{"name":"ACCOUNT_VIEW","features":[326]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_A","features":[326,479]},{"name":"ACQUIRE_CREDENTIALS_HANDLE_FN_W","features":[326,479]},{"name":"ADD_CREDENTIALS_FN_A","features":[326,479]},{"name":"ADD_CREDENTIALS_FN_W","features":[326,479]},{"name":"APPLY_CONTROL_TOKEN_FN","features":[326,479]},{"name":"ASC_REQ_ALLOCATE_MEMORY","features":[326]},{"name":"ASC_REQ_ALLOW_CONTEXT_REPLAY","features":[326]},{"name":"ASC_REQ_ALLOW_MISSING_BINDINGS","features":[326]},{"name":"ASC_REQ_ALLOW_NON_USER_LOGONS","features":[326]},{"name":"ASC_REQ_ALLOW_NULL_SESSION","features":[326]},{"name":"ASC_REQ_CALL_LEVEL","features":[326]},{"name":"ASC_REQ_CONFIDENTIALITY","features":[326]},{"name":"ASC_REQ_CONNECTION","features":[326]},{"name":"ASC_REQ_DATAGRAM","features":[326]},{"name":"ASC_REQ_DELEGATE","features":[326]},{"name":"ASC_REQ_EXTENDED_ERROR","features":[326]},{"name":"ASC_REQ_FLAGS","features":[326]},{"name":"ASC_REQ_FRAGMENT_SUPPLIED","features":[326]},{"name":"ASC_REQ_FRAGMENT_TO_FIT","features":[326]},{"name":"ASC_REQ_HIGH_FLAGS","features":[326]},{"name":"ASC_REQ_IDENTIFY","features":[326]},{"name":"ASC_REQ_INTEGRITY","features":[326]},{"name":"ASC_REQ_LICENSING","features":[326]},{"name":"ASC_REQ_MESSAGES","features":[326]},{"name":"ASC_REQ_MUTUAL_AUTH","features":[326]},{"name":"ASC_REQ_NO_TOKEN","features":[326]},{"name":"ASC_REQ_PROXY_BINDINGS","features":[326]},{"name":"ASC_REQ_REPLAY_DETECT","features":[326]},{"name":"ASC_REQ_SEQUENCE_DETECT","features":[326]},{"name":"ASC_REQ_SESSION_TICKET","features":[326]},{"name":"ASC_REQ_STREAM","features":[326]},{"name":"ASC_REQ_USE_DCE_STYLE","features":[326]},{"name":"ASC_REQ_USE_SESSION_KEY","features":[326]},{"name":"ASC_RET_ALLOCATED_MEMORY","features":[326]},{"name":"ASC_RET_ALLOW_CONTEXT_REPLAY","features":[326]},{"name":"ASC_RET_ALLOW_NON_USER_LOGONS","features":[326]},{"name":"ASC_RET_CALL_LEVEL","features":[326]},{"name":"ASC_RET_CONFIDENTIALITY","features":[326]},{"name":"ASC_RET_CONNECTION","features":[326]},{"name":"ASC_RET_DATAGRAM","features":[326]},{"name":"ASC_RET_DELEGATE","features":[326]},{"name":"ASC_RET_EXTENDED_ERROR","features":[326]},{"name":"ASC_RET_FRAGMENT_ONLY","features":[326]},{"name":"ASC_RET_IDENTIFY","features":[326]},{"name":"ASC_RET_INTEGRITY","features":[326]},{"name":"ASC_RET_LICENSING","features":[326]},{"name":"ASC_RET_MESSAGES","features":[326]},{"name":"ASC_RET_MUTUAL_AUTH","features":[326]},{"name":"ASC_RET_NO_ADDITIONAL_TOKEN","features":[326]},{"name":"ASC_RET_NO_TOKEN","features":[326]},{"name":"ASC_RET_NULL_SESSION","features":[326]},{"name":"ASC_RET_REPLAY_DETECT","features":[326]},{"name":"ASC_RET_SEQUENCE_DETECT","features":[326]},{"name":"ASC_RET_SESSION_TICKET","features":[326]},{"name":"ASC_RET_STREAM","features":[326]},{"name":"ASC_RET_THIRD_LEG_FAILED","features":[326]},{"name":"ASC_RET_USED_DCE_STYLE","features":[326]},{"name":"ASC_RET_USE_SESSION_KEY","features":[326]},{"name":"AUDIT_ENUMERATE_USERS","features":[326]},{"name":"AUDIT_POLICY_INFORMATION","features":[326]},{"name":"AUDIT_QUERY_MISC_POLICY","features":[326]},{"name":"AUDIT_QUERY_SYSTEM_POLICY","features":[326]},{"name":"AUDIT_QUERY_USER_POLICY","features":[326]},{"name":"AUDIT_SET_MISC_POLICY","features":[326]},{"name":"AUDIT_SET_SYSTEM_POLICY","features":[326]},{"name":"AUDIT_SET_USER_POLICY","features":[326]},{"name":"AUTH_REQ_ALLOW_ENC_TKT_IN_SKEY","features":[326]},{"name":"AUTH_REQ_ALLOW_FORWARDABLE","features":[326]},{"name":"AUTH_REQ_ALLOW_NOADDRESS","features":[326]},{"name":"AUTH_REQ_ALLOW_POSTDATE","features":[326]},{"name":"AUTH_REQ_ALLOW_PROXIABLE","features":[326]},{"name":"AUTH_REQ_ALLOW_RENEWABLE","features":[326]},{"name":"AUTH_REQ_ALLOW_S4U_DELEGATE","features":[326]},{"name":"AUTH_REQ_ALLOW_VALIDATE","features":[326]},{"name":"AUTH_REQ_OK_AS_DELEGATE","features":[326]},{"name":"AUTH_REQ_PREAUTH_REQUIRED","features":[326]},{"name":"AUTH_REQ_TRANSITIVE_TRUST","features":[326]},{"name":"AUTH_REQ_VALIDATE_CLIENT","features":[326]},{"name":"AcceptSecurityContext","features":[326,479]},{"name":"AccountDomainInformation","features":[326]},{"name":"AcquireCredentialsHandleA","features":[326,479]},{"name":"AcquireCredentialsHandleW","features":[326,479]},{"name":"AddCredentialsA","features":[326,479]},{"name":"AddCredentialsW","features":[326,479]},{"name":"AddSecurityPackageA","features":[326]},{"name":"AddSecurityPackageW","features":[326]},{"name":"ApplyControlToken","features":[326,479]},{"name":"AuditCategoryAccountLogon","features":[326]},{"name":"AuditCategoryAccountManagement","features":[326]},{"name":"AuditCategoryDetailedTracking","features":[326]},{"name":"AuditCategoryDirectoryServiceAccess","features":[326]},{"name":"AuditCategoryLogon","features":[326]},{"name":"AuditCategoryObjectAccess","features":[326]},{"name":"AuditCategoryPolicyChange","features":[326]},{"name":"AuditCategoryPrivilegeUse","features":[326]},{"name":"AuditCategorySystem","features":[326]},{"name":"AuditComputeEffectivePolicyBySid","features":[305,326]},{"name":"AuditComputeEffectivePolicyByToken","features":[305,326]},{"name":"AuditEnumerateCategories","features":[305,326]},{"name":"AuditEnumeratePerUserPolicy","features":[305,326]},{"name":"AuditEnumerateSubCategories","features":[305,326]},{"name":"AuditFree","features":[326]},{"name":"AuditLookupCategoryGuidFromCategoryId","features":[305,326]},{"name":"AuditLookupCategoryIdFromCategoryGuid","features":[305,326]},{"name":"AuditLookupCategoryNameA","features":[305,326]},{"name":"AuditLookupCategoryNameW","features":[305,326]},{"name":"AuditLookupSubCategoryNameA","features":[305,326]},{"name":"AuditLookupSubCategoryNameW","features":[305,326]},{"name":"AuditQueryGlobalSaclA","features":[305,326]},{"name":"AuditQueryGlobalSaclW","features":[305,326]},{"name":"AuditQueryPerUserPolicy","features":[305,326]},{"name":"AuditQuerySecurity","features":[305,326]},{"name":"AuditQuerySystemPolicy","features":[305,326]},{"name":"AuditSetGlobalSaclA","features":[305,326]},{"name":"AuditSetGlobalSaclW","features":[305,326]},{"name":"AuditSetPerUserPolicy","features":[305,326]},{"name":"AuditSetSecurity","features":[305,326]},{"name":"AuditSetSystemPolicy","features":[305,326]},{"name":"Audit_AccountLogon","features":[326]},{"name":"Audit_AccountLogon_CredentialValidation","features":[326]},{"name":"Audit_AccountLogon_KerbCredentialValidation","features":[326]},{"name":"Audit_AccountLogon_Kerberos","features":[326]},{"name":"Audit_AccountLogon_Others","features":[326]},{"name":"Audit_AccountManagement","features":[326]},{"name":"Audit_AccountManagement_ApplicationGroup","features":[326]},{"name":"Audit_AccountManagement_ComputerAccount","features":[326]},{"name":"Audit_AccountManagement_DistributionGroup","features":[326]},{"name":"Audit_AccountManagement_Others","features":[326]},{"name":"Audit_AccountManagement_SecurityGroup","features":[326]},{"name":"Audit_AccountManagement_UserAccount","features":[326]},{"name":"Audit_DSAccess_DSAccess","features":[326]},{"name":"Audit_DetailedTracking","features":[326]},{"name":"Audit_DetailedTracking_DpapiActivity","features":[326]},{"name":"Audit_DetailedTracking_PnpActivity","features":[326]},{"name":"Audit_DetailedTracking_ProcessCreation","features":[326]},{"name":"Audit_DetailedTracking_ProcessTermination","features":[326]},{"name":"Audit_DetailedTracking_RpcCall","features":[326]},{"name":"Audit_DetailedTracking_TokenRightAdjusted","features":[326]},{"name":"Audit_DirectoryServiceAccess","features":[326]},{"name":"Audit_DsAccess_AdAuditChanges","features":[326]},{"name":"Audit_Ds_DetailedReplication","features":[326]},{"name":"Audit_Ds_Replication","features":[326]},{"name":"Audit_Logon","features":[326]},{"name":"Audit_Logon_AccountLockout","features":[326]},{"name":"Audit_Logon_Claims","features":[326]},{"name":"Audit_Logon_Groups","features":[326]},{"name":"Audit_Logon_IPSecMainMode","features":[326]},{"name":"Audit_Logon_IPSecQuickMode","features":[326]},{"name":"Audit_Logon_IPSecUserMode","features":[326]},{"name":"Audit_Logon_Logoff","features":[326]},{"name":"Audit_Logon_Logon","features":[326]},{"name":"Audit_Logon_NPS","features":[326]},{"name":"Audit_Logon_Others","features":[326]},{"name":"Audit_Logon_SpecialLogon","features":[326]},{"name":"Audit_ObjectAccess","features":[326]},{"name":"Audit_ObjectAccess_ApplicationGenerated","features":[326]},{"name":"Audit_ObjectAccess_CbacStaging","features":[326]},{"name":"Audit_ObjectAccess_CertificationServices","features":[326]},{"name":"Audit_ObjectAccess_DetailedFileShare","features":[326]},{"name":"Audit_ObjectAccess_FileSystem","features":[326]},{"name":"Audit_ObjectAccess_FirewallConnection","features":[326]},{"name":"Audit_ObjectAccess_FirewallPacketDrops","features":[326]},{"name":"Audit_ObjectAccess_Handle","features":[326]},{"name":"Audit_ObjectAccess_Kernel","features":[326]},{"name":"Audit_ObjectAccess_Other","features":[326]},{"name":"Audit_ObjectAccess_Registry","features":[326]},{"name":"Audit_ObjectAccess_RemovableStorage","features":[326]},{"name":"Audit_ObjectAccess_Sam","features":[326]},{"name":"Audit_ObjectAccess_Share","features":[326]},{"name":"Audit_PolicyChange","features":[326]},{"name":"Audit_PolicyChange_AuditPolicy","features":[326]},{"name":"Audit_PolicyChange_AuthenticationPolicy","features":[326]},{"name":"Audit_PolicyChange_AuthorizationPolicy","features":[326]},{"name":"Audit_PolicyChange_MpsscvRulePolicy","features":[326]},{"name":"Audit_PolicyChange_Others","features":[326]},{"name":"Audit_PolicyChange_WfpIPSecPolicy","features":[326]},{"name":"Audit_PrivilegeUse","features":[326]},{"name":"Audit_PrivilegeUse_NonSensitive","features":[326]},{"name":"Audit_PrivilegeUse_Others","features":[326]},{"name":"Audit_PrivilegeUse_Sensitive","features":[326]},{"name":"Audit_System","features":[326]},{"name":"Audit_System_IPSecDriverEvents","features":[326]},{"name":"Audit_System_Integrity","features":[326]},{"name":"Audit_System_Others","features":[326]},{"name":"Audit_System_SecurityStateChange","features":[326]},{"name":"Audit_System_SecuritySubsystemExtension","features":[326]},{"name":"CENTRAL_ACCESS_POLICY","features":[326]},{"name":"CENTRAL_ACCESS_POLICY_ENTRY","features":[326]},{"name":"CENTRAL_ACCESS_POLICY_OWNER_RIGHTS_PRESENT_FLAG","features":[326]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_FLAG","features":[326]},{"name":"CENTRAL_ACCESS_POLICY_STAGED_OWNER_RIGHTS_PRESENT_FLAG","features":[326]},{"name":"CHANGE_PASSWORD_FN_A","features":[305,326]},{"name":"CHANGE_PASSWORD_FN_W","features":[305,326]},{"name":"CLEAR_BLOCK","features":[326]},{"name":"CLEAR_BLOCK_LENGTH","features":[326]},{"name":"CLOUDAP_NAME","features":[326]},{"name":"CLOUDAP_NAME_W","features":[326]},{"name":"COMPLETE_AUTH_TOKEN_FN","features":[326,479]},{"name":"CREDP_FLAGS_CLEAR_PASSWORD","features":[326]},{"name":"CREDP_FLAGS_DONT_CACHE_TI","features":[326]},{"name":"CREDP_FLAGS_IN_PROCESS","features":[326]},{"name":"CREDP_FLAGS_TRUSTED_CALLER","features":[326]},{"name":"CREDP_FLAGS_USER_ENCRYPTED_PASSWORD","features":[326]},{"name":"CREDP_FLAGS_USE_MIDL_HEAP","features":[326]},{"name":"CREDP_FLAGS_VALIDATE_PROXY_TARGET","features":[326]},{"name":"CRED_FETCH","features":[326]},{"name":"CRED_MARSHALED_TI_SIZE_SIZE","features":[326]},{"name":"CRYPTO_SETTINGS","features":[326]},{"name":"CYPHER_BLOCK_LENGTH","features":[326]},{"name":"CertHashInfo","features":[326]},{"name":"ChangeAccountPasswordA","features":[305,326]},{"name":"ChangeAccountPasswordW","features":[305,326]},{"name":"ClOUDAP_NAME_A","features":[326]},{"name":"CollisionOther","features":[326]},{"name":"CollisionTdo","features":[326]},{"name":"CollisionXref","features":[326]},{"name":"CompleteAuthToken","features":[326,479]},{"name":"CredFetchDPAPI","features":[326]},{"name":"CredFetchDefault","features":[326]},{"name":"CredFetchForced","features":[326]},{"name":"CredFreeCredentialsFn","features":[305,326,479]},{"name":"CredMarshalTargetInfo","features":[305,326,479]},{"name":"CredReadDomainCredentialsFn","features":[305,326,479]},{"name":"CredReadFn","features":[305,326,479]},{"name":"CredUnmarshalTargetInfo","features":[305,326,479]},{"name":"CredWriteFn","features":[305,326,479]},{"name":"CrediUnmarshalandDecodeStringFn","features":[305,326]},{"name":"DECRYPT_MESSAGE_FN","features":[326,479]},{"name":"DEFAULT_TLS_SSP_NAME","features":[326]},{"name":"DEFAULT_TLS_SSP_NAME_A","features":[326]},{"name":"DEFAULT_TLS_SSP_NAME_W","features":[326]},{"name":"DELETE_SECURITY_CONTEXT_FN","features":[326,479]},{"name":"DOMAIN_LOCKOUT_ADMINS","features":[326]},{"name":"DOMAIN_NO_LM_OWF_CHANGE","features":[326]},{"name":"DOMAIN_PASSWORD_COMPLEX","features":[326]},{"name":"DOMAIN_PASSWORD_INFORMATION","features":[326]},{"name":"DOMAIN_PASSWORD_NO_ANON_CHANGE","features":[326]},{"name":"DOMAIN_PASSWORD_NO_CLEAR_CHANGE","features":[326]},{"name":"DOMAIN_PASSWORD_PROPERTIES","features":[326]},{"name":"DOMAIN_PASSWORD_STORE_CLEARTEXT","features":[326]},{"name":"DOMAIN_REFUSE_PASSWORD_CHANGE","features":[326]},{"name":"DS_INET_ADDRESS","features":[326]},{"name":"DS_NETBIOS_ADDRESS","features":[326]},{"name":"DS_UNKNOWN_ADDRESS_TYPE","features":[326]},{"name":"DecryptMessage","features":[326,479]},{"name":"DeleteSecurityContext","features":[326,479]},{"name":"DeleteSecurityPackageA","features":[326]},{"name":"DeleteSecurityPackageW","features":[326]},{"name":"DeprecatedIUMCredKey","features":[326]},{"name":"DnsDomainInformation","features":[326]},{"name":"DomainUserCredKey","features":[326]},{"name":"ENABLE_TLS_CLIENT_EARLY_START","features":[326]},{"name":"ENCRYPTED_CREDENTIALW","features":[305,326,479]},{"name":"ENCRYPT_MESSAGE_FN","features":[326,479]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_A","features":[326]},{"name":"ENUMERATE_SECURITY_PACKAGES_FN_W","features":[326]},{"name":"EXPORT_SECURITY_CONTEXT_FLAGS","features":[326]},{"name":"EXPORT_SECURITY_CONTEXT_FN","features":[326,479]},{"name":"EXTENDED_NAME_FORMAT","features":[326]},{"name":"E_RM_UNKNOWN_ERROR","features":[326]},{"name":"EncryptMessage","features":[326,479]},{"name":"EnumerateSecurityPackagesA","features":[326]},{"name":"EnumerateSecurityPackagesW","features":[326]},{"name":"ExportSecurityContext","features":[326,479]},{"name":"ExternallySuppliedCredKey","features":[326]},{"name":"FACILITY_SL_ITF","features":[326]},{"name":"FREE_CONTEXT_BUFFER_FN","features":[326]},{"name":"FREE_CREDENTIALS_HANDLE_FN","features":[326,479]},{"name":"ForestTrustBinaryInfo","features":[326]},{"name":"ForestTrustDomainInfo","features":[326]},{"name":"ForestTrustRecordTypeLast","features":[326]},{"name":"ForestTrustScannerInfo","features":[326]},{"name":"ForestTrustTopLevelName","features":[326]},{"name":"ForestTrustTopLevelNameEx","features":[326]},{"name":"FreeContextBuffer","features":[326]},{"name":"FreeCredentialsHandle","features":[326,479]},{"name":"GetComputerObjectNameA","features":[305,326]},{"name":"GetComputerObjectNameW","features":[305,326]},{"name":"GetUserNameExA","features":[305,326]},{"name":"GetUserNameExW","features":[305,326]},{"name":"ICcgDomainAuthCredentials","features":[326]},{"name":"ID_CAP_SLAPI","features":[326]},{"name":"IMPERSONATE_SECURITY_CONTEXT_FN","features":[326,479]},{"name":"IMPORT_SECURITY_CONTEXT_FN_A","features":[326,479]},{"name":"IMPORT_SECURITY_CONTEXT_FN_W","features":[326,479]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_A","features":[326,479]},{"name":"INITIALIZE_SECURITY_CONTEXT_FN_W","features":[326,479]},{"name":"INIT_SECURITY_INTERFACE_A","features":[305,326,479]},{"name":"INIT_SECURITY_INTERFACE_W","features":[305,326,479]},{"name":"ISC_REQ_ALLOCATE_MEMORY","features":[326]},{"name":"ISC_REQ_CALL_LEVEL","features":[326]},{"name":"ISC_REQ_CONFIDENTIALITY","features":[326]},{"name":"ISC_REQ_CONFIDENTIALITY_ONLY","features":[326]},{"name":"ISC_REQ_CONNECTION","features":[326]},{"name":"ISC_REQ_DATAGRAM","features":[326]},{"name":"ISC_REQ_DEFERRED_CRED_VALIDATION","features":[326]},{"name":"ISC_REQ_DELEGATE","features":[326]},{"name":"ISC_REQ_EXTENDED_ERROR","features":[326]},{"name":"ISC_REQ_FLAGS","features":[326]},{"name":"ISC_REQ_FORWARD_CREDENTIALS","features":[326]},{"name":"ISC_REQ_FRAGMENT_SUPPLIED","features":[326]},{"name":"ISC_REQ_FRAGMENT_TO_FIT","features":[326]},{"name":"ISC_REQ_HIGH_FLAGS","features":[326]},{"name":"ISC_REQ_IDENTIFY","features":[326]},{"name":"ISC_REQ_INTEGRITY","features":[326]},{"name":"ISC_REQ_MANUAL_CRED_VALIDATION","features":[326]},{"name":"ISC_REQ_MESSAGES","features":[326]},{"name":"ISC_REQ_MUTUAL_AUTH","features":[326]},{"name":"ISC_REQ_NO_INTEGRITY","features":[326]},{"name":"ISC_REQ_NO_POST_HANDSHAKE_AUTH","features":[326]},{"name":"ISC_REQ_NULL_SESSION","features":[326]},{"name":"ISC_REQ_PROMPT_FOR_CREDS","features":[326]},{"name":"ISC_REQ_REPLAY_DETECT","features":[326]},{"name":"ISC_REQ_RESERVED1","features":[326]},{"name":"ISC_REQ_SEQUENCE_DETECT","features":[326]},{"name":"ISC_REQ_STREAM","features":[326]},{"name":"ISC_REQ_UNVERIFIED_TARGET_NAME","features":[326]},{"name":"ISC_REQ_USE_DCE_STYLE","features":[326]},{"name":"ISC_REQ_USE_HTTP_STYLE","features":[326]},{"name":"ISC_REQ_USE_SESSION_KEY","features":[326]},{"name":"ISC_REQ_USE_SUPPLIED_CREDS","features":[326]},{"name":"ISC_RET_ALLOCATED_MEMORY","features":[326]},{"name":"ISC_RET_CALL_LEVEL","features":[326]},{"name":"ISC_RET_CONFIDENTIALITY","features":[326]},{"name":"ISC_RET_CONFIDENTIALITY_ONLY","features":[326]},{"name":"ISC_RET_CONNECTION","features":[326]},{"name":"ISC_RET_DATAGRAM","features":[326]},{"name":"ISC_RET_DEFERRED_CRED_VALIDATION","features":[326]},{"name":"ISC_RET_DELEGATE","features":[326]},{"name":"ISC_RET_EXTENDED_ERROR","features":[326]},{"name":"ISC_RET_FORWARD_CREDENTIALS","features":[326]},{"name":"ISC_RET_FRAGMENT_ONLY","features":[326]},{"name":"ISC_RET_IDENTIFY","features":[326]},{"name":"ISC_RET_INTEGRITY","features":[326]},{"name":"ISC_RET_INTERMEDIATE_RETURN","features":[326]},{"name":"ISC_RET_MANUAL_CRED_VALIDATION","features":[326]},{"name":"ISC_RET_MESSAGES","features":[326]},{"name":"ISC_RET_MUTUAL_AUTH","features":[326]},{"name":"ISC_RET_NO_ADDITIONAL_TOKEN","features":[326]},{"name":"ISC_RET_NO_POST_HANDSHAKE_AUTH","features":[326]},{"name":"ISC_RET_NULL_SESSION","features":[326]},{"name":"ISC_RET_REAUTHENTICATION","features":[326]},{"name":"ISC_RET_REPLAY_DETECT","features":[326]},{"name":"ISC_RET_RESERVED1","features":[326]},{"name":"ISC_RET_SEQUENCE_DETECT","features":[326]},{"name":"ISC_RET_STREAM","features":[326]},{"name":"ISC_RET_USED_COLLECTED_CREDS","features":[326]},{"name":"ISC_RET_USED_DCE_STYLE","features":[326]},{"name":"ISC_RET_USED_HTTP_STYLE","features":[326]},{"name":"ISC_RET_USED_SUPPLIED_CREDS","features":[326]},{"name":"ISC_RET_USE_SESSION_KEY","features":[326]},{"name":"ISSP_LEVEL","features":[326]},{"name":"ISSP_MODE","features":[326]},{"name":"ImpersonateSecurityContext","features":[326,479]},{"name":"ImportSecurityContextA","features":[326,479]},{"name":"ImportSecurityContextW","features":[326,479]},{"name":"InitSecurityInterfaceA","features":[305,326,479]},{"name":"InitSecurityInterfaceW","features":[305,326,479]},{"name":"InitializeSecurityContextA","features":[326,479]},{"name":"InitializeSecurityContextW","features":[326,479]},{"name":"InvalidCredKey","features":[326]},{"name":"KDC_PROXY_CACHE_ENTRY_DATA","features":[305,326]},{"name":"KDC_PROXY_SETTINGS_FLAGS_FORCEPROXY","features":[326]},{"name":"KDC_PROXY_SETTINGS_V1","features":[326]},{"name":"KERBEROS_REVISION","features":[326]},{"name":"KERBEROS_VERSION","features":[326]},{"name":"KERB_ADDRESS_TYPE","features":[326]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_EX_REQUEST","features":[326]},{"name":"KERB_ADD_BINDING_CACHE_ENTRY_REQUEST","features":[326]},{"name":"KERB_ADD_CREDENTIALS_REQUEST","features":[305,326]},{"name":"KERB_ADD_CREDENTIALS_REQUEST_EX","features":[305,326]},{"name":"KERB_AUTH_DATA","features":[326]},{"name":"KERB_BINDING_CACHE_ENTRY_DATA","features":[326]},{"name":"KERB_CERTIFICATE_HASHINFO","features":[326]},{"name":"KERB_CERTIFICATE_INFO","features":[326]},{"name":"KERB_CERTIFICATE_INFO_TYPE","features":[326]},{"name":"KERB_CERTIFICATE_LOGON","features":[326]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[326]},{"name":"KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[326]},{"name":"KERB_CERTIFICATE_S4U_LOGON","features":[326]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_DUPLICATES","features":[326]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[326]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_FAIL_IF_NT_AUTH_POLICY_REQUIRED","features":[326]},{"name":"KERB_CERTIFICATE_S4U_LOGON_FLAG_IDENTIFY","features":[326]},{"name":"KERB_CERTIFICATE_UNLOCK_LOGON","features":[305,326]},{"name":"KERB_CHANGEPASSWORD_REQUEST","features":[305,326]},{"name":"KERB_CHECKSUM_CRC32","features":[326]},{"name":"KERB_CHECKSUM_DES_MAC","features":[326]},{"name":"KERB_CHECKSUM_DES_MAC_MD5","features":[326]},{"name":"KERB_CHECKSUM_HMAC_MD5","features":[326]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128","features":[326]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES128_Ki","features":[326]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256","features":[326]},{"name":"KERB_CHECKSUM_HMAC_SHA1_96_AES256_Ki","features":[326]},{"name":"KERB_CHECKSUM_KRB_DES_MAC","features":[326]},{"name":"KERB_CHECKSUM_KRB_DES_MAC_K","features":[326]},{"name":"KERB_CHECKSUM_LM","features":[326]},{"name":"KERB_CHECKSUM_MD25","features":[326]},{"name":"KERB_CHECKSUM_MD4","features":[326]},{"name":"KERB_CHECKSUM_MD5","features":[326]},{"name":"KERB_CHECKSUM_MD5_DES","features":[326]},{"name":"KERB_CHECKSUM_MD5_HMAC","features":[326]},{"name":"KERB_CHECKSUM_NONE","features":[326]},{"name":"KERB_CHECKSUM_RC4_MD5","features":[326]},{"name":"KERB_CHECKSUM_REAL_CRC32","features":[326]},{"name":"KERB_CHECKSUM_SHA1","features":[326]},{"name":"KERB_CHECKSUM_SHA1_NEW","features":[326]},{"name":"KERB_CHECKSUM_SHA256","features":[326]},{"name":"KERB_CHECKSUM_SHA384","features":[326]},{"name":"KERB_CHECKSUM_SHA512","features":[326]},{"name":"KERB_CLEANUP_MACHINE_PKINIT_CREDS_REQUEST","features":[305,326]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA","features":[326]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_V0","features":[326]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_DATA_VERSION","features":[326]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_REQUEST","features":[305,326]},{"name":"KERB_CLOUD_KERBEROS_DEBUG_RESPONSE","features":[326]},{"name":"KERB_CRYPTO_KEY","features":[326]},{"name":"KERB_CRYPTO_KEY32","features":[326]},{"name":"KERB_CRYPTO_KEY_TYPE","features":[326]},{"name":"KERB_DECRYPT_FLAG_DEFAULT_KEY","features":[326]},{"name":"KERB_DECRYPT_REQUEST","features":[305,326]},{"name":"KERB_DECRYPT_RESPONSE","features":[326]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96","features":[326]},{"name":"KERB_ETYPE_AES128_CTS_HMAC_SHA1_96_PLAIN","features":[326]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96","features":[326]},{"name":"KERB_ETYPE_AES256_CTS_HMAC_SHA1_96_PLAIN","features":[326]},{"name":"KERB_ETYPE_DEFAULT","features":[326]},{"name":"KERB_ETYPE_DES3_CBC_MD5","features":[326]},{"name":"KERB_ETYPE_DES3_CBC_SHA1","features":[326]},{"name":"KERB_ETYPE_DES3_CBC_SHA1_KD","features":[326]},{"name":"KERB_ETYPE_DES_CBC_CRC","features":[326]},{"name":"KERB_ETYPE_DES_CBC_MD4","features":[326]},{"name":"KERB_ETYPE_DES_CBC_MD5","features":[326]},{"name":"KERB_ETYPE_DES_CBC_MD5_NT","features":[326]},{"name":"KERB_ETYPE_DES_EDE3_CBC_ENV","features":[326]},{"name":"KERB_ETYPE_DES_PLAIN","features":[326]},{"name":"KERB_ETYPE_DSA_SHA1_CMS","features":[326]},{"name":"KERB_ETYPE_DSA_SIGN","features":[326]},{"name":"KERB_ETYPE_NULL","features":[326]},{"name":"KERB_ETYPE_PKCS7_PUB","features":[326]},{"name":"KERB_ETYPE_RC2_CBC_ENV","features":[326]},{"name":"KERB_ETYPE_RC4_HMAC_NT","features":[326]},{"name":"KERB_ETYPE_RC4_HMAC_NT_EXP","features":[326]},{"name":"KERB_ETYPE_RC4_HMAC_OLD","features":[326]},{"name":"KERB_ETYPE_RC4_HMAC_OLD_EXP","features":[326]},{"name":"KERB_ETYPE_RC4_LM","features":[326]},{"name":"KERB_ETYPE_RC4_MD4","features":[326]},{"name":"KERB_ETYPE_RC4_PLAIN","features":[326]},{"name":"KERB_ETYPE_RC4_PLAIN2","features":[326]},{"name":"KERB_ETYPE_RC4_PLAIN_EXP","features":[326]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD","features":[326]},{"name":"KERB_ETYPE_RC4_PLAIN_OLD_EXP","features":[326]},{"name":"KERB_ETYPE_RC4_SHA","features":[326]},{"name":"KERB_ETYPE_RSA_ENV","features":[326]},{"name":"KERB_ETYPE_RSA_ES_OEAP_ENV","features":[326]},{"name":"KERB_ETYPE_RSA_MD5_CMS","features":[326]},{"name":"KERB_ETYPE_RSA_PRIV","features":[326]},{"name":"KERB_ETYPE_RSA_PUB","features":[326]},{"name":"KERB_ETYPE_RSA_PUB_MD5","features":[326]},{"name":"KERB_ETYPE_RSA_PUB_SHA1","features":[326]},{"name":"KERB_ETYPE_RSA_SHA1_CMS","features":[326]},{"name":"KERB_EXTERNAL_NAME","features":[326]},{"name":"KERB_EXTERNAL_TICKET","features":[326]},{"name":"KERB_INTERACTIVE_LOGON","features":[326]},{"name":"KERB_INTERACTIVE_PROFILE","features":[326]},{"name":"KERB_INTERACTIVE_UNLOCK_LOGON","features":[305,326]},{"name":"KERB_LOGON_FLAG_ALLOW_EXPIRED_TICKET","features":[326]},{"name":"KERB_LOGON_FLAG_REDIRECTED","features":[326]},{"name":"KERB_LOGON_SUBMIT_TYPE","features":[326]},{"name":"KERB_NET_ADDRESS","features":[326]},{"name":"KERB_NET_ADDRESSES","features":[326]},{"name":"KERB_PROFILE_BUFFER_TYPE","features":[326]},{"name":"KERB_PROTOCOL_MESSAGE_TYPE","features":[326]},{"name":"KERB_PURGE_ALL_TICKETS","features":[326]},{"name":"KERB_PURGE_BINDING_CACHE_REQUEST","features":[326]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_REQUEST","features":[305,326]},{"name":"KERB_PURGE_KDC_PROXY_CACHE_RESPONSE","features":[326]},{"name":"KERB_PURGE_TKT_CACHE_EX_REQUEST","features":[305,326]},{"name":"KERB_PURGE_TKT_CACHE_REQUEST","features":[305,326]},{"name":"KERB_QUERY_BINDING_CACHE_REQUEST","features":[326]},{"name":"KERB_QUERY_BINDING_CACHE_RESPONSE","features":[326]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_REQUEST","features":[326]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE","features":[326]},{"name":"KERB_QUERY_DOMAIN_EXTENDED_POLICIES_RESPONSE_FLAG_DAC_DISABLED","features":[326]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_REQUEST","features":[305,326]},{"name":"KERB_QUERY_KDC_PROXY_CACHE_RESPONSE","features":[305,326]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_REQUEST","features":[305,326]},{"name":"KERB_QUERY_S4U2PROXY_CACHE_RESPONSE","features":[305,326]},{"name":"KERB_QUERY_TKT_CACHE_EX2_RESPONSE","features":[326]},{"name":"KERB_QUERY_TKT_CACHE_EX3_RESPONSE","features":[326]},{"name":"KERB_QUERY_TKT_CACHE_EX_RESPONSE","features":[326]},{"name":"KERB_QUERY_TKT_CACHE_REQUEST","features":[305,326]},{"name":"KERB_QUERY_TKT_CACHE_RESPONSE","features":[326]},{"name":"KERB_REFRESH_POLICY_KDC","features":[326]},{"name":"KERB_REFRESH_POLICY_KERBEROS","features":[326]},{"name":"KERB_REFRESH_POLICY_REQUEST","features":[326]},{"name":"KERB_REFRESH_POLICY_RESPONSE","features":[326]},{"name":"KERB_REFRESH_SCCRED_GETTGT","features":[326]},{"name":"KERB_REFRESH_SCCRED_RELEASE","features":[326]},{"name":"KERB_REFRESH_SCCRED_REQUEST","features":[305,326]},{"name":"KERB_REQUEST_ADD_CREDENTIAL","features":[326]},{"name":"KERB_REQUEST_FLAGS","features":[326]},{"name":"KERB_REQUEST_REMOVE_CREDENTIAL","features":[326]},{"name":"KERB_REQUEST_REPLACE_CREDENTIAL","features":[326]},{"name":"KERB_RETRIEVE_KEY_TAB_REQUEST","features":[326]},{"name":"KERB_RETRIEVE_KEY_TAB_RESPONSE","features":[326]},{"name":"KERB_RETRIEVE_TICKET_AS_KERB_CRED","features":[326]},{"name":"KERB_RETRIEVE_TICKET_CACHE_TICKET","features":[326]},{"name":"KERB_RETRIEVE_TICKET_DEFAULT","features":[326]},{"name":"KERB_RETRIEVE_TICKET_DONT_USE_CACHE","features":[326]},{"name":"KERB_RETRIEVE_TICKET_MAX_LIFETIME","features":[326]},{"name":"KERB_RETRIEVE_TICKET_USE_CACHE_ONLY","features":[326]},{"name":"KERB_RETRIEVE_TICKET_USE_CREDHANDLE","features":[326]},{"name":"KERB_RETRIEVE_TICKET_WITH_SEC_CRED","features":[326]},{"name":"KERB_RETRIEVE_TKT_REQUEST","features":[305,326,479]},{"name":"KERB_RETRIEVE_TKT_RESPONSE","features":[326]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO","features":[305,326]},{"name":"KERB_S4U2PROXY_CACHE_ENTRY_INFO_FLAG_NEGATIVE","features":[326]},{"name":"KERB_S4U2PROXY_CRED","features":[305,326]},{"name":"KERB_S4U2PROXY_CRED_FLAG_NEGATIVE","features":[326]},{"name":"KERB_S4U_LOGON","features":[326]},{"name":"KERB_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[326]},{"name":"KERB_S4U_LOGON_FLAG_IDENTIFY","features":[326]},{"name":"KERB_SETPASSWORD_EX_REQUEST","features":[305,326,479]},{"name":"KERB_SETPASSWORD_REQUEST","features":[305,326,479]},{"name":"KERB_SETPASS_USE_CREDHANDLE","features":[326]},{"name":"KERB_SETPASS_USE_LOGONID","features":[326]},{"name":"KERB_SMART_CARD_LOGON","features":[326]},{"name":"KERB_SMART_CARD_PROFILE","features":[326]},{"name":"KERB_SMART_CARD_UNLOCK_LOGON","features":[305,326]},{"name":"KERB_SUBMIT_TKT_REQUEST","features":[305,326]},{"name":"KERB_TICKET_CACHE_INFO","features":[326]},{"name":"KERB_TICKET_CACHE_INFO_EX","features":[326]},{"name":"KERB_TICKET_CACHE_INFO_EX2","features":[326]},{"name":"KERB_TICKET_CACHE_INFO_EX3","features":[326]},{"name":"KERB_TICKET_FLAGS","features":[326]},{"name":"KERB_TICKET_FLAGS_cname_in_pa_data","features":[326]},{"name":"KERB_TICKET_FLAGS_enc_pa_rep","features":[326]},{"name":"KERB_TICKET_FLAGS_forwardable","features":[326]},{"name":"KERB_TICKET_FLAGS_forwarded","features":[326]},{"name":"KERB_TICKET_FLAGS_hw_authent","features":[326]},{"name":"KERB_TICKET_FLAGS_initial","features":[326]},{"name":"KERB_TICKET_FLAGS_invalid","features":[326]},{"name":"KERB_TICKET_FLAGS_may_postdate","features":[326]},{"name":"KERB_TICKET_FLAGS_name_canonicalize","features":[326]},{"name":"KERB_TICKET_FLAGS_ok_as_delegate","features":[326]},{"name":"KERB_TICKET_FLAGS_postdated","features":[326]},{"name":"KERB_TICKET_FLAGS_pre_authent","features":[326]},{"name":"KERB_TICKET_FLAGS_proxiable","features":[326]},{"name":"KERB_TICKET_FLAGS_proxy","features":[326]},{"name":"KERB_TICKET_FLAGS_renewable","features":[326]},{"name":"KERB_TICKET_FLAGS_reserved","features":[326]},{"name":"KERB_TICKET_FLAGS_reserved1","features":[326]},{"name":"KERB_TICKET_LOGON","features":[326]},{"name":"KERB_TICKET_PROFILE","features":[326]},{"name":"KERB_TICKET_UNLOCK_LOGON","features":[305,326]},{"name":"KERB_TRANSFER_CRED_CLEANUP_CREDENTIALS","features":[326]},{"name":"KERB_TRANSFER_CRED_REQUEST","features":[305,326]},{"name":"KERB_TRANSFER_CRED_WITH_TICKETS","features":[326]},{"name":"KERB_USE_DEFAULT_TICKET_FLAGS","features":[326]},{"name":"KERB_WRAP_NO_ENCRYPT","features":[326]},{"name":"KERN_CONTEXT_CERT_INFO_V1","features":[326]},{"name":"KRB_ANONYMOUS_STRING","features":[326]},{"name":"KRB_NT_ENTERPRISE_PRINCIPAL","features":[326]},{"name":"KRB_NT_ENT_PRINCIPAL_AND_ID","features":[326]},{"name":"KRB_NT_MS_BRANCH_ID","features":[326]},{"name":"KRB_NT_MS_PRINCIPAL","features":[326]},{"name":"KRB_NT_MS_PRINCIPAL_AND_ID","features":[326]},{"name":"KRB_NT_PRINCIPAL","features":[326]},{"name":"KRB_NT_PRINCIPAL_AND_ID","features":[326]},{"name":"KRB_NT_SRV_HST","features":[326]},{"name":"KRB_NT_SRV_INST","features":[326]},{"name":"KRB_NT_SRV_INST_AND_ID","features":[326]},{"name":"KRB_NT_SRV_XHST","features":[326]},{"name":"KRB_NT_UID","features":[326]},{"name":"KRB_NT_UNKNOWN","features":[326]},{"name":"KRB_NT_WELLKNOWN","features":[326]},{"name":"KRB_NT_X500_PRINCIPAL","features":[326]},{"name":"KRB_WELLKNOWN_STRING","features":[326]},{"name":"KSEC_CONTEXT_TYPE","features":[326]},{"name":"KSEC_LIST_ENTRY","features":[326,311]},{"name":"KSecNonPaged","features":[326]},{"name":"KSecPaged","features":[326]},{"name":"KerbAddBindingCacheEntryExMessage","features":[326]},{"name":"KerbAddBindingCacheEntryMessage","features":[326]},{"name":"KerbAddExtraCredentialsExMessage","features":[326]},{"name":"KerbAddExtraCredentialsMessage","features":[326]},{"name":"KerbCertificateLogon","features":[326]},{"name":"KerbCertificateS4ULogon","features":[326]},{"name":"KerbCertificateUnlockLogon","features":[326]},{"name":"KerbChangeMachinePasswordMessage","features":[326]},{"name":"KerbChangePasswordMessage","features":[326]},{"name":"KerbCleanupMachinePkinitCredsMessage","features":[326]},{"name":"KerbDebugRequestMessage","features":[326]},{"name":"KerbDecryptDataMessage","features":[326]},{"name":"KerbInteractiveLogon","features":[326]},{"name":"KerbInteractiveProfile","features":[326]},{"name":"KerbLuidLogon","features":[326]},{"name":"KerbNoElevationLogon","features":[326]},{"name":"KerbPinKdcMessage","features":[326]},{"name":"KerbPrintCloudKerberosDebugMessage","features":[326]},{"name":"KerbProxyLogon","features":[326]},{"name":"KerbPurgeBindingCacheMessage","features":[326]},{"name":"KerbPurgeKdcProxyCacheMessage","features":[326]},{"name":"KerbPurgeTicketCacheExMessage","features":[326]},{"name":"KerbPurgeTicketCacheMessage","features":[326]},{"name":"KerbQueryBindingCacheMessage","features":[326]},{"name":"KerbQueryDomainExtendedPoliciesMessage","features":[326]},{"name":"KerbQueryKdcProxyCacheMessage","features":[326]},{"name":"KerbQueryS4U2ProxyCacheMessage","features":[326]},{"name":"KerbQuerySupplementalCredentialsMessage","features":[326]},{"name":"KerbQueryTicketCacheEx2Message","features":[326]},{"name":"KerbQueryTicketCacheEx3Message","features":[326]},{"name":"KerbQueryTicketCacheExMessage","features":[326]},{"name":"KerbQueryTicketCacheMessage","features":[326]},{"name":"KerbRefreshPolicyMessage","features":[326]},{"name":"KerbRefreshSmartcardCredentialsMessage","features":[326]},{"name":"KerbRetrieveEncodedTicketMessage","features":[326]},{"name":"KerbRetrieveKeyTabMessage","features":[326]},{"name":"KerbRetrieveTicketMessage","features":[326]},{"name":"KerbS4ULogon","features":[326]},{"name":"KerbSetPasswordExMessage","features":[326]},{"name":"KerbSetPasswordMessage","features":[326]},{"name":"KerbSmartCardLogon","features":[326]},{"name":"KerbSmartCardProfile","features":[326]},{"name":"KerbSmartCardUnlockLogon","features":[326]},{"name":"KerbSubmitTicketMessage","features":[326]},{"name":"KerbTicketLogon","features":[326]},{"name":"KerbTicketProfile","features":[326]},{"name":"KerbTicketUnlockLogon","features":[326]},{"name":"KerbTransferCredentialsMessage","features":[326]},{"name":"KerbUnpinAllKdcsMessage","features":[326]},{"name":"KerbUpdateAddressesMessage","features":[326]},{"name":"KerbVerifyCredentialsMessage","features":[326]},{"name":"KerbVerifyPacMessage","features":[326]},{"name":"KerbWorkstationUnlockLogon","features":[326]},{"name":"KspCompleteTokenFn","features":[305,326]},{"name":"KspDeleteContextFn","features":[305,326]},{"name":"KspGetTokenFn","features":[305,326]},{"name":"KspInitContextFn","features":[305,326]},{"name":"KspInitPackageFn","features":[305,326,311]},{"name":"KspMakeSignatureFn","features":[305,326]},{"name":"KspMapHandleFn","features":[305,326]},{"name":"KspQueryAttributesFn","features":[305,326]},{"name":"KspSealMessageFn","features":[305,326]},{"name":"KspSerializeAuthDataFn","features":[305,326]},{"name":"KspSetPagingModeFn","features":[305,326]},{"name":"KspUnsealMessageFn","features":[305,326]},{"name":"KspVerifySignatureFn","features":[305,326]},{"name":"LCRED_CRED_EXISTS","features":[326]},{"name":"LCRED_STATUS_NOCRED","features":[326]},{"name":"LCRED_STATUS_UNKNOWN_ISSUER","features":[326]},{"name":"LOGON_CACHED_ACCOUNT","features":[326]},{"name":"LOGON_EXTRA_SIDS","features":[326]},{"name":"LOGON_GRACE_LOGON","features":[326]},{"name":"LOGON_GUEST","features":[326]},{"name":"LOGON_HOURS","features":[326]},{"name":"LOGON_LM_V2","features":[326]},{"name":"LOGON_MANAGED_SERVICE","features":[326]},{"name":"LOGON_NOENCRYPTION","features":[326]},{"name":"LOGON_NO_ELEVATION","features":[326]},{"name":"LOGON_NO_OPTIMIZED","features":[326]},{"name":"LOGON_NTLMV2_ENABLED","features":[326]},{"name":"LOGON_NTLM_V2","features":[326]},{"name":"LOGON_NT_V2","features":[326]},{"name":"LOGON_OPTIMIZED","features":[326]},{"name":"LOGON_PKINIT","features":[326]},{"name":"LOGON_PROFILE_PATH_RETURNED","features":[326]},{"name":"LOGON_RESOURCE_GROUPS","features":[326]},{"name":"LOGON_SERVER_TRUST_ACCOUNT","features":[326]},{"name":"LOGON_SUBAUTH_SESSION_KEY","features":[326]},{"name":"LOGON_USED_LM_PASSWORD","features":[326]},{"name":"LOGON_WINLOGON","features":[326]},{"name":"LOOKUP_TRANSLATE_NAMES","features":[326]},{"name":"LOOKUP_VIEW_LOCAL_INFORMATION","features":[326]},{"name":"LSAD_AES_BLOCK_SIZE","features":[326]},{"name":"LSAD_AES_CRYPT_SHA512_HASH_SIZE","features":[326]},{"name":"LSAD_AES_KEY_SIZE","features":[326]},{"name":"LSAD_AES_SALT_SIZE","features":[326]},{"name":"LSASETCAPS_RELOAD_FLAG","features":[326]},{"name":"LSASETCAPS_VALID_FLAG_MASK","features":[326]},{"name":"LSA_ADT_LEGACY_SECURITY_SOURCE_NAME","features":[326]},{"name":"LSA_ADT_SECURITY_SOURCE_NAME","features":[326]},{"name":"LSA_AP_NAME_CALL_PACKAGE","features":[326]},{"name":"LSA_AP_NAME_CALL_PACKAGE_PASSTHROUGH","features":[326]},{"name":"LSA_AP_NAME_CALL_PACKAGE_UNTRUSTED","features":[326]},{"name":"LSA_AP_NAME_INITIALIZE_PACKAGE","features":[326]},{"name":"LSA_AP_NAME_LOGON_TERMINATED","features":[326]},{"name":"LSA_AP_NAME_LOGON_USER","features":[326]},{"name":"LSA_AP_NAME_LOGON_USER_EX","features":[326]},{"name":"LSA_AP_NAME_LOGON_USER_EX2","features":[326]},{"name":"LSA_AP_POST_LOGON_USER","features":[305,326]},{"name":"LSA_AUTH_INFORMATION","features":[326]},{"name":"LSA_AUTH_INFORMATION_AUTH_TYPE","features":[326]},{"name":"LSA_CALL_LICENSE_SERVER","features":[326]},{"name":"LSA_DISPATCH_TABLE","features":[305,326]},{"name":"LSA_ENUMERATION_INFORMATION","features":[326]},{"name":"LSA_FOREST_TRUST_BINARY_DATA","features":[326]},{"name":"LSA_FOREST_TRUST_COLLISION_INFORMATION","features":[326]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD","features":[326]},{"name":"LSA_FOREST_TRUST_COLLISION_RECORD_TYPE","features":[326]},{"name":"LSA_FOREST_TRUST_DOMAIN_INFO","features":[326]},{"name":"LSA_FOREST_TRUST_INFORMATION","features":[326]},{"name":"LSA_FOREST_TRUST_INFORMATION2","features":[326]},{"name":"LSA_FOREST_TRUST_RECORD","features":[326]},{"name":"LSA_FOREST_TRUST_RECORD2","features":[326]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE","features":[326]},{"name":"LSA_FOREST_TRUST_RECORD_TYPE_UNRECOGNIZED","features":[326]},{"name":"LSA_FOREST_TRUST_SCANNER_INFO","features":[326]},{"name":"LSA_FTRECORD_DISABLED_REASONS","features":[326]},{"name":"LSA_GLOBAL_SECRET_PREFIX","features":[326]},{"name":"LSA_GLOBAL_SECRET_PREFIX_LENGTH","features":[326]},{"name":"LSA_HANDLE","features":[326]},{"name":"LSA_LAST_INTER_LOGON_INFO","features":[326]},{"name":"LSA_LOCAL_SECRET_PREFIX","features":[326]},{"name":"LSA_LOCAL_SECRET_PREFIX_LENGTH","features":[326]},{"name":"LSA_LOOKUP_DISALLOW_CONNECTED_ACCOUNT_INTERNET_SID","features":[326]},{"name":"LSA_LOOKUP_DOMAIN_INFO_CLASS","features":[326]},{"name":"LSA_LOOKUP_ISOLATED_AS_LOCAL","features":[326]},{"name":"LSA_LOOKUP_PREFER_INTERNET_NAMES","features":[326]},{"name":"LSA_MACHINE_SECRET_PREFIX","features":[326]},{"name":"LSA_MAXIMUM_ENUMERATION_LENGTH","features":[326]},{"name":"LSA_MAXIMUM_SID_COUNT","features":[326]},{"name":"LSA_MODE_INDIVIDUAL_ACCOUNTS","features":[326]},{"name":"LSA_MODE_LOG_FULL","features":[326]},{"name":"LSA_MODE_MANDATORY_ACCESS","features":[326]},{"name":"LSA_MODE_PASSWORD_PROTECTED","features":[326]},{"name":"LSA_NB_DISABLED_ADMIN","features":[326]},{"name":"LSA_NB_DISABLED_CONFLICT","features":[326]},{"name":"LSA_OBJECT_ATTRIBUTES","features":[305,326]},{"name":"LSA_QUERY_CLIENT_PRELOGON_SESSION_ID","features":[326]},{"name":"LSA_REFERENCED_DOMAIN_LIST","features":[326]},{"name":"LSA_SCANNER_INFO_ADMIN_ALL_FLAGS","features":[326]},{"name":"LSA_SCANNER_INFO_DISABLE_AUTH_TARGET_VALIDATION","features":[326]},{"name":"LSA_SECPKG_FUNCTION_TABLE","features":[305,326,479,340]},{"name":"LSA_SECRET_MAXIMUM_COUNT","features":[326]},{"name":"LSA_SECRET_MAXIMUM_LENGTH","features":[326]},{"name":"LSA_SID_DISABLED_ADMIN","features":[326]},{"name":"LSA_SID_DISABLED_CONFLICT","features":[326]},{"name":"LSA_STRING","features":[326]},{"name":"LSA_TLN_DISABLED_ADMIN","features":[326]},{"name":"LSA_TLN_DISABLED_CONFLICT","features":[326]},{"name":"LSA_TLN_DISABLED_NEW","features":[326]},{"name":"LSA_TOKEN_INFORMATION_NULL","features":[326]},{"name":"LSA_TOKEN_INFORMATION_TYPE","features":[326]},{"name":"LSA_TOKEN_INFORMATION_V1","features":[305,326]},{"name":"LSA_TOKEN_INFORMATION_V3","features":[305,326]},{"name":"LSA_TRANSLATED_NAME","features":[326]},{"name":"LSA_TRANSLATED_SID","features":[326]},{"name":"LSA_TRANSLATED_SID2","features":[326]},{"name":"LSA_TRUST_INFORMATION","features":[326]},{"name":"LSA_UNICODE_STRING","features":[326]},{"name":"LocalUserCredKey","features":[326]},{"name":"LsaAddAccountRights","features":[305,326]},{"name":"LsaCallAuthenticationPackage","features":[305,326]},{"name":"LsaClose","features":[305,326]},{"name":"LsaConnectUntrusted","features":[305,326]},{"name":"LsaCreateTrustedDomainEx","features":[305,326]},{"name":"LsaDeleteTrustedDomain","features":[305,326]},{"name":"LsaDeregisterLogonProcess","features":[305,326]},{"name":"LsaEnumerateAccountRights","features":[305,326]},{"name":"LsaEnumerateAccountsWithUserRight","features":[305,326]},{"name":"LsaEnumerateLogonSessions","features":[305,326]},{"name":"LsaEnumerateTrustedDomains","features":[305,326]},{"name":"LsaEnumerateTrustedDomainsEx","features":[305,326]},{"name":"LsaFreeMemory","features":[305,326]},{"name":"LsaFreeReturnBuffer","features":[305,326]},{"name":"LsaGetAppliedCAPIDs","features":[305,326]},{"name":"LsaGetLogonSessionData","features":[305,326]},{"name":"LsaLogonUser","features":[305,326]},{"name":"LsaLookupAuthenticationPackage","features":[305,326]},{"name":"LsaLookupNames","features":[305,326]},{"name":"LsaLookupNames2","features":[305,326]},{"name":"LsaLookupSids","features":[305,326]},{"name":"LsaLookupSids2","features":[305,326]},{"name":"LsaNtStatusToWinError","features":[305,326]},{"name":"LsaOpenPolicy","features":[305,326]},{"name":"LsaOpenTrustedDomainByName","features":[305,326]},{"name":"LsaQueryCAPs","features":[305,326]},{"name":"LsaQueryDomainInformationPolicy","features":[305,326]},{"name":"LsaQueryForestTrustInformation","features":[305,326]},{"name":"LsaQueryForestTrustInformation2","features":[305,326]},{"name":"LsaQueryInformationPolicy","features":[305,326]},{"name":"LsaQueryTrustedDomainInfo","features":[305,326]},{"name":"LsaQueryTrustedDomainInfoByName","features":[305,326]},{"name":"LsaRegisterLogonProcess","features":[305,326]},{"name":"LsaRegisterPolicyChangeNotification","features":[305,326]},{"name":"LsaRemoveAccountRights","features":[305,326]},{"name":"LsaRetrievePrivateData","features":[305,326]},{"name":"LsaSetCAPs","features":[305,326]},{"name":"LsaSetDomainInformationPolicy","features":[305,326]},{"name":"LsaSetForestTrustInformation","features":[305,326]},{"name":"LsaSetForestTrustInformation2","features":[305,326]},{"name":"LsaSetInformationPolicy","features":[305,326]},{"name":"LsaSetTrustedDomainInfoByName","features":[305,326]},{"name":"LsaSetTrustedDomainInformation","features":[305,326]},{"name":"LsaStorePrivateData","features":[305,326]},{"name":"LsaTokenInformationNull","features":[326]},{"name":"LsaTokenInformationV1","features":[326]},{"name":"LsaTokenInformationV2","features":[326]},{"name":"LsaTokenInformationV3","features":[326]},{"name":"LsaUnregisterPolicyChangeNotification","features":[305,326]},{"name":"MAKE_SIGNATURE_FN","features":[326,479]},{"name":"MAXIMUM_CAPES_PER_CAP","features":[326]},{"name":"MAX_CRED_SIZE","features":[326]},{"name":"MAX_PROTOCOL_ID_SIZE","features":[326]},{"name":"MAX_RECORDS_IN_FOREST_TRUST_INFO","features":[326]},{"name":"MAX_USER_RECORDS","features":[326]},{"name":"MICROSOFT_KERBEROS_NAME","features":[326]},{"name":"MICROSOFT_KERBEROS_NAME_A","features":[326]},{"name":"MICROSOFT_KERBEROS_NAME_W","features":[326]},{"name":"MSV1_0","features":[326]},{"name":"MSV1_0_ALLOW_FORCE_GUEST","features":[326]},{"name":"MSV1_0_ALLOW_MSVCHAPV2","features":[326]},{"name":"MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT","features":[326]},{"name":"MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT","features":[326]},{"name":"MSV1_0_AVID","features":[326]},{"name":"MSV1_0_AV_FLAG_FORCE_GUEST","features":[326]},{"name":"MSV1_0_AV_FLAG_MIC_HANDSHAKE_MESSAGES","features":[326]},{"name":"MSV1_0_AV_FLAG_UNVERIFIED_TARGET","features":[326]},{"name":"MSV1_0_AV_PAIR","features":[326]},{"name":"MSV1_0_CHALLENGE_LENGTH","features":[326]},{"name":"MSV1_0_CHANGEPASSWORD_REQUEST","features":[305,326]},{"name":"MSV1_0_CHANGEPASSWORD_RESPONSE","features":[305,326]},{"name":"MSV1_0_CHECK_LOGONHOURS_FOR_S4U","features":[326]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_ALLOWED","features":[326]},{"name":"MSV1_0_CLEARTEXT_PASSWORD_SUPPLIED","features":[326]},{"name":"MSV1_0_CREDENTIAL_KEY","features":[326]},{"name":"MSV1_0_CREDENTIAL_KEY_LENGTH","features":[326]},{"name":"MSV1_0_CREDENTIAL_KEY_TYPE","features":[326]},{"name":"MSV1_0_CRED_CREDKEY_PRESENT","features":[326]},{"name":"MSV1_0_CRED_LM_PRESENT","features":[326]},{"name":"MSV1_0_CRED_NT_PRESENT","features":[326]},{"name":"MSV1_0_CRED_REMOVED","features":[326]},{"name":"MSV1_0_CRED_SHA_PRESENT","features":[326]},{"name":"MSV1_0_CRED_VERSION","features":[326]},{"name":"MSV1_0_CRED_VERSION_ARSO","features":[326]},{"name":"MSV1_0_CRED_VERSION_INVALID","features":[326]},{"name":"MSV1_0_CRED_VERSION_IUM","features":[326]},{"name":"MSV1_0_CRED_VERSION_REMOTE","features":[326]},{"name":"MSV1_0_CRED_VERSION_RESERVED_1","features":[326]},{"name":"MSV1_0_CRED_VERSION_V2","features":[326]},{"name":"MSV1_0_CRED_VERSION_V3","features":[326]},{"name":"MSV1_0_DISABLE_PERSONAL_FALLBACK","features":[326]},{"name":"MSV1_0_DONT_TRY_GUEST_ACCOUNT","features":[326]},{"name":"MSV1_0_GUEST_LOGON","features":[326]},{"name":"MSV1_0_INTERACTIVE_LOGON","features":[326]},{"name":"MSV1_0_INTERACTIVE_PROFILE","features":[326]},{"name":"MSV1_0_INTERNET_DOMAIN","features":[326]},{"name":"MSV1_0_IUM_SUPPLEMENTAL_CREDENTIAL","features":[326]},{"name":"MSV1_0_LANMAN_SESSION_KEY_LENGTH","features":[326]},{"name":"MSV1_0_LM20_LOGON","features":[326]},{"name":"MSV1_0_LM20_LOGON_PROFILE","features":[326]},{"name":"MSV1_0_LOGON_SUBMIT_TYPE","features":[326]},{"name":"MSV1_0_MAX_AVL_SIZE","features":[326]},{"name":"MSV1_0_MAX_NTLM3_LIFE","features":[326]},{"name":"MSV1_0_MNS_LOGON","features":[326]},{"name":"MSV1_0_NTLM3_OWF_LENGTH","features":[326]},{"name":"MSV1_0_NTLM3_RESPONSE","features":[326]},{"name":"MSV1_0_NTLM3_RESPONSE_LENGTH","features":[326]},{"name":"MSV1_0_OWF_PASSWORD_LENGTH","features":[326]},{"name":"MSV1_0_PACKAGE_NAME","features":[326]},{"name":"MSV1_0_PACKAGE_NAMEW","features":[326]},{"name":"MSV1_0_PASSTHROUGH_REQUEST","features":[326]},{"name":"MSV1_0_PASSTHROUGH_RESPONSE","features":[326]},{"name":"MSV1_0_PASSTHRU","features":[326]},{"name":"MSV1_0_PROFILE_BUFFER_TYPE","features":[326]},{"name":"MSV1_0_PROTOCOL_MESSAGE_TYPE","features":[326]},{"name":"MSV1_0_REMOTE_SUPPLEMENTAL_CREDENTIAL","features":[326]},{"name":"MSV1_0_RETURN_PASSWORD_EXPIRY","features":[326]},{"name":"MSV1_0_RETURN_PROFILE_PATH","features":[326]},{"name":"MSV1_0_RETURN_USER_PARAMETERS","features":[326]},{"name":"MSV1_0_S4U2SELF","features":[326]},{"name":"MSV1_0_S4U_LOGON","features":[326]},{"name":"MSV1_0_S4U_LOGON_FLAG_CHECK_LOGONHOURS","features":[326]},{"name":"MSV1_0_SHA_PASSWORD_LENGTH","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_EX","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_IIS","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_RAS","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_DLL_SHIFT","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_FLAGS","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_KEY","features":[326]},{"name":"MSV1_0_SUBAUTHENTICATION_VALUE","features":[326]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_DISABLED","features":[326]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_EXPIRY","features":[326]},{"name":"MSV1_0_SUBAUTH_ACCOUNT_TYPE","features":[326]},{"name":"MSV1_0_SUBAUTH_LOCKOUT","features":[326]},{"name":"MSV1_0_SUBAUTH_LOGON","features":[326]},{"name":"MSV1_0_SUBAUTH_LOGON_HOURS","features":[326]},{"name":"MSV1_0_SUBAUTH_PASSWORD","features":[326]},{"name":"MSV1_0_SUBAUTH_PASSWORD_EXPIRY","features":[326]},{"name":"MSV1_0_SUBAUTH_REQUEST","features":[326]},{"name":"MSV1_0_SUBAUTH_RESPONSE","features":[326]},{"name":"MSV1_0_SUBAUTH_WORKSTATIONS","features":[326]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL","features":[326]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V2","features":[326]},{"name":"MSV1_0_SUPPLEMENTAL_CREDENTIAL_V3","features":[326]},{"name":"MSV1_0_TRY_GUEST_ACCOUNT_ONLY","features":[326]},{"name":"MSV1_0_TRY_SPECIFIED_DOMAIN_ONLY","features":[326]},{"name":"MSV1_0_UPDATE_LOGON_STATISTICS","features":[326]},{"name":"MSV1_0_USER_SESSION_KEY_LENGTH","features":[326]},{"name":"MSV1_0_USE_CLIENT_CHALLENGE","features":[326]},{"name":"MSV1_0_USE_DOMAIN_FOR_ROUTING_ONLY","features":[326]},{"name":"MSV1_0_VALIDATION_INFO","features":[305,326,480]},{"name":"MSV1_0_VALIDATION_KICKOFF_TIME","features":[326]},{"name":"MSV1_0_VALIDATION_LOGOFF_TIME","features":[326]},{"name":"MSV1_0_VALIDATION_LOGON_DOMAIN","features":[326]},{"name":"MSV1_0_VALIDATION_LOGON_SERVER","features":[326]},{"name":"MSV1_0_VALIDATION_SESSION_KEY","features":[326]},{"name":"MSV1_0_VALIDATION_USER_FLAGS","features":[326]},{"name":"MSV1_0_VALIDATION_USER_ID","features":[326]},{"name":"MSV_SUBAUTH_LOGON_PARAMETER_CONTROL","features":[326]},{"name":"MSV_SUB_AUTHENTICATION_FILTER","features":[326]},{"name":"MSV_SUPPLEMENTAL_CREDENTIAL_FLAGS","features":[326]},{"name":"MakeSignature","features":[326,479]},{"name":"MsV1_0CacheLogon","features":[326]},{"name":"MsV1_0CacheLookup","features":[326]},{"name":"MsV1_0CacheLookupEx","features":[326]},{"name":"MsV1_0ChangeCachedPassword","features":[326]},{"name":"MsV1_0ChangePassword","features":[326]},{"name":"MsV1_0ClearCachedCredentials","features":[326]},{"name":"MsV1_0ConfigLocalAliases","features":[326]},{"name":"MsV1_0DecryptDpapiMasterKey","features":[326]},{"name":"MsV1_0DeleteTbalSecrets","features":[326]},{"name":"MsV1_0DeriveCredential","features":[326]},{"name":"MsV1_0EnumerateUsers","features":[326]},{"name":"MsV1_0GenericPassthrough","features":[326]},{"name":"MsV1_0GetCredentialKey","features":[326]},{"name":"MsV1_0GetStrongCredentialKey","features":[326]},{"name":"MsV1_0GetUserInfo","features":[326]},{"name":"MsV1_0InteractiveLogon","features":[326]},{"name":"MsV1_0InteractiveProfile","features":[326]},{"name":"MsV1_0Lm20ChallengeRequest","features":[326]},{"name":"MsV1_0Lm20GetChallengeResponse","features":[326]},{"name":"MsV1_0Lm20Logon","features":[326]},{"name":"MsV1_0Lm20LogonProfile","features":[326]},{"name":"MsV1_0LookupToken","features":[326]},{"name":"MsV1_0LuidLogon","features":[326]},{"name":"MsV1_0NetworkLogon","features":[326]},{"name":"MsV1_0NoElevationLogon","features":[326]},{"name":"MsV1_0ProvisionTbal","features":[326]},{"name":"MsV1_0ReLogonUsers","features":[326]},{"name":"MsV1_0S4ULogon","features":[326]},{"name":"MsV1_0SetProcessOption","features":[326]},{"name":"MsV1_0SetThreadOption","features":[326]},{"name":"MsV1_0SmartCardProfile","features":[326]},{"name":"MsV1_0SubAuth","features":[326]},{"name":"MsV1_0SubAuthLogon","features":[326]},{"name":"MsV1_0TransferCred","features":[326]},{"name":"MsV1_0ValidateAuth","features":[326]},{"name":"MsV1_0VirtualLogon","features":[326]},{"name":"MsV1_0WorkstationUnlockLogon","features":[326]},{"name":"MsvAvChannelBindings","features":[326]},{"name":"MsvAvDnsComputerName","features":[326]},{"name":"MsvAvDnsDomainName","features":[326]},{"name":"MsvAvDnsTreeName","features":[326]},{"name":"MsvAvEOL","features":[326]},{"name":"MsvAvFlags","features":[326]},{"name":"MsvAvNbComputerName","features":[326]},{"name":"MsvAvNbDomainName","features":[326]},{"name":"MsvAvRestrictions","features":[326]},{"name":"MsvAvTargetName","features":[326]},{"name":"MsvAvTimestamp","features":[326]},{"name":"NEGOSSP_NAME","features":[326]},{"name":"NEGOSSP_NAME_A","features":[326]},{"name":"NEGOSSP_NAME_W","features":[326]},{"name":"NEGOTIATE_ALLOW_NTLM","features":[326]},{"name":"NEGOTIATE_CALLER_NAME_REQUEST","features":[305,326]},{"name":"NEGOTIATE_CALLER_NAME_RESPONSE","features":[326]},{"name":"NEGOTIATE_MAX_PREFIX","features":[326]},{"name":"NEGOTIATE_MESSAGES","features":[326]},{"name":"NEGOTIATE_NEG_NTLM","features":[326]},{"name":"NEGOTIATE_PACKAGE_PREFIX","features":[326]},{"name":"NEGOTIATE_PACKAGE_PREFIXES","features":[326]},{"name":"NETLOGON_GENERIC_INFO","features":[326]},{"name":"NETLOGON_INTERACTIVE_INFO","features":[326,480]},{"name":"NETLOGON_LOGON_IDENTITY_INFO","features":[326]},{"name":"NETLOGON_LOGON_INFO_CLASS","features":[326]},{"name":"NETLOGON_NETWORK_INFO","features":[326]},{"name":"NETLOGON_SERVICE_INFO","features":[326,480]},{"name":"NGC_DATA_FLAG_IS_CLOUD_TRUST_CRED","features":[326]},{"name":"NGC_DATA_FLAG_IS_SMARTCARD_DATA","features":[326]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_CHECK_DUPLICATES","features":[326]},{"name":"NGC_DATA_FLAG_KERB_CERTIFICATE_LOGON_FLAG_USE_CERTIFICATE_INFO","features":[326]},{"name":"NOTIFIER_FLAG_NEW_THREAD","features":[326]},{"name":"NOTIFIER_FLAG_ONE_SHOT","features":[326]},{"name":"NOTIFIER_FLAG_SECONDS","features":[326]},{"name":"NOTIFIER_TYPE_HANDLE_WAIT","features":[326]},{"name":"NOTIFIER_TYPE_IMMEDIATE","features":[326]},{"name":"NOTIFIER_TYPE_INTERVAL","features":[326]},{"name":"NOTIFIER_TYPE_NOTIFY_EVENT","features":[326]},{"name":"NOTIFIER_TYPE_STATE_CHANGE","features":[326]},{"name":"NOTIFY_CLASS_DOMAIN_CHANGE","features":[326]},{"name":"NOTIFY_CLASS_PACKAGE_CHANGE","features":[326]},{"name":"NOTIFY_CLASS_REGISTRY_CHANGE","features":[326]},{"name":"NOTIFY_CLASS_ROLE_CHANGE","features":[326]},{"name":"NO_LONG_NAMES","features":[326]},{"name":"NTLMSP_NAME","features":[326]},{"name":"NTLMSP_NAME_A","features":[326]},{"name":"NameCanonical","features":[326]},{"name":"NameCanonicalEx","features":[326]},{"name":"NameDisplay","features":[326]},{"name":"NameDnsDomain","features":[326]},{"name":"NameFullyQualifiedDN","features":[326]},{"name":"NameGivenName","features":[326]},{"name":"NameSamCompatible","features":[326]},{"name":"NameServicePrincipal","features":[326]},{"name":"NameSurname","features":[326]},{"name":"NameUniqueId","features":[326]},{"name":"NameUnknown","features":[326]},{"name":"NameUserPrincipal","features":[326]},{"name":"NegCallPackageMax","features":[326]},{"name":"NegEnumPackagePrefixes","features":[326]},{"name":"NegGetCallerName","features":[326]},{"name":"NegMsgReserved1","features":[326]},{"name":"NegTransferCredentials","features":[326]},{"name":"NetlogonGenericInformation","features":[326]},{"name":"NetlogonInteractiveInformation","features":[326]},{"name":"NetlogonInteractiveTransitiveInformation","features":[326]},{"name":"NetlogonNetworkInformation","features":[326]},{"name":"NetlogonNetworkTransitiveInformation","features":[326]},{"name":"NetlogonServiceInformation","features":[326]},{"name":"NetlogonServiceTransitiveInformation","features":[326]},{"name":"PCT1SP_NAME","features":[326]},{"name":"PCT1SP_NAME_A","features":[326]},{"name":"PCT1SP_NAME_W","features":[326]},{"name":"PER_USER_AUDIT_FAILURE_EXCLUDE","features":[326]},{"name":"PER_USER_AUDIT_FAILURE_INCLUDE","features":[326]},{"name":"PER_USER_AUDIT_NONE","features":[326]},{"name":"PER_USER_AUDIT_SUCCESS_EXCLUDE","features":[326]},{"name":"PER_USER_AUDIT_SUCCESS_INCLUDE","features":[326]},{"name":"PER_USER_POLICY_UNCHANGED","features":[326]},{"name":"PKSEC_CREATE_CONTEXT_LIST","features":[326]},{"name":"PKSEC_DEREFERENCE_LIST_ENTRY","features":[326,311]},{"name":"PKSEC_INSERT_LIST_ENTRY","features":[326,311]},{"name":"PKSEC_LOCATE_PKG_BY_ID","features":[326]},{"name":"PKSEC_REFERENCE_LIST_ENTRY","features":[305,326,311]},{"name":"PKSEC_SERIALIZE_SCHANNEL_AUTH_DATA","features":[305,326]},{"name":"PKSEC_SERIALIZE_WINNT_AUTH_DATA","features":[305,326]},{"name":"PKU2U_CERTIFICATE_S4U_LOGON","features":[326]},{"name":"PKU2U_CERT_BLOB","features":[326]},{"name":"PKU2U_CREDUI_CONTEXT","features":[326]},{"name":"PKU2U_LOGON_SUBMIT_TYPE","features":[326]},{"name":"PKU2U_PACKAGE_NAME","features":[326]},{"name":"PKU2U_PACKAGE_NAME_A","features":[326]},{"name":"PKU2U_PACKAGE_NAME_W","features":[326]},{"name":"PLSA_ADD_CREDENTIAL","features":[305,326]},{"name":"PLSA_ALLOCATE_CLIENT_BUFFER","features":[305,326]},{"name":"PLSA_ALLOCATE_LSA_HEAP","features":[326]},{"name":"PLSA_ALLOCATE_PRIVATE_HEAP","features":[326]},{"name":"PLSA_ALLOCATE_SHARED_MEMORY","features":[326]},{"name":"PLSA_AP_CALL_PACKAGE","features":[305,326]},{"name":"PLSA_AP_CALL_PACKAGE_PASSTHROUGH","features":[305,326]},{"name":"PLSA_AP_INITIALIZE_PACKAGE","features":[305,326]},{"name":"PLSA_AP_LOGON_TERMINATED","features":[305,326]},{"name":"PLSA_AP_LOGON_USER","features":[305,326]},{"name":"PLSA_AP_LOGON_USER_EX","features":[305,326]},{"name":"PLSA_AP_LOGON_USER_EX2","features":[305,326]},{"name":"PLSA_AP_LOGON_USER_EX3","features":[305,326]},{"name":"PLSA_AP_POST_LOGON_USER_SURROGATE","features":[305,326]},{"name":"PLSA_AP_PRE_LOGON_USER_SURROGATE","features":[305,326]},{"name":"PLSA_AUDIT_ACCOUNT_LOGON","features":[305,326]},{"name":"PLSA_AUDIT_LOGON","features":[305,326]},{"name":"PLSA_AUDIT_LOGON_EX","features":[305,326]},{"name":"PLSA_CALLBACK_FUNCTION","features":[305,326]},{"name":"PLSA_CALL_PACKAGE","features":[305,326]},{"name":"PLSA_CALL_PACKAGEEX","features":[305,326]},{"name":"PLSA_CALL_PACKAGE_PASSTHROUGH","features":[305,326]},{"name":"PLSA_CANCEL_NOTIFICATION","features":[305,326]},{"name":"PLSA_CHECK_PROTECTED_USER_BY_TOKEN","features":[305,326]},{"name":"PLSA_CLIENT_CALLBACK","features":[305,326]},{"name":"PLSA_CLOSE_SAM_USER","features":[305,326]},{"name":"PLSA_CONVERT_AUTH_DATA_TO_TOKEN","features":[305,326]},{"name":"PLSA_COPY_FROM_CLIENT_BUFFER","features":[305,326]},{"name":"PLSA_COPY_TO_CLIENT_BUFFER","features":[305,326]},{"name":"PLSA_CRACK_SINGLE_NAME","features":[305,326]},{"name":"PLSA_CREATE_LOGON_SESSION","features":[305,326]},{"name":"PLSA_CREATE_SHARED_MEMORY","features":[326]},{"name":"PLSA_CREATE_THREAD","features":[305,326,340]},{"name":"PLSA_CREATE_TOKEN","features":[305,326]},{"name":"PLSA_CREATE_TOKEN_EX","features":[305,326]},{"name":"PLSA_DELETE_CREDENTIAL","features":[305,326]},{"name":"PLSA_DELETE_LOGON_SESSION","features":[305,326]},{"name":"PLSA_DELETE_SHARED_MEMORY","features":[305,326]},{"name":"PLSA_DUPLICATE_HANDLE","features":[305,326]},{"name":"PLSA_EXPAND_AUTH_DATA_FOR_DOMAIN","features":[305,326]},{"name":"PLSA_FREE_CLIENT_BUFFER","features":[305,326]},{"name":"PLSA_FREE_LSA_HEAP","features":[326]},{"name":"PLSA_FREE_PRIVATE_HEAP","features":[326]},{"name":"PLSA_FREE_SHARED_MEMORY","features":[326]},{"name":"PLSA_GET_APP_MODE_INFO","features":[305,326]},{"name":"PLSA_GET_AUTH_DATA_FOR_USER","features":[305,326]},{"name":"PLSA_GET_CALL_INFO","features":[305,326]},{"name":"PLSA_GET_CLIENT_INFO","features":[305,326]},{"name":"PLSA_GET_CLIENT_INFO_EX","features":[305,326]},{"name":"PLSA_GET_CREDENTIALS","features":[305,326]},{"name":"PLSA_GET_EXTENDED_CALL_FLAGS","features":[305,326]},{"name":"PLSA_GET_SERVICE_ACCOUNT_PASSWORD","features":[305,326]},{"name":"PLSA_GET_USER_AUTH_DATA","features":[305,326]},{"name":"PLSA_GET_USER_CREDENTIALS","features":[305,326]},{"name":"PLSA_IMPERSONATE_CLIENT","features":[305,326]},{"name":"PLSA_LOCATE_PKG_BY_ID","features":[326]},{"name":"PLSA_MAP_BUFFER","features":[305,326]},{"name":"PLSA_OPEN_SAM_USER","features":[305,326]},{"name":"PLSA_OPEN_TOKEN_BY_LOGON_ID","features":[305,326]},{"name":"PLSA_PROTECT_MEMORY","features":[326]},{"name":"PLSA_QUERY_CLIENT_REQUEST","features":[305,326]},{"name":"PLSA_REDIRECTED_LOGON_CALLBACK","features":[305,326]},{"name":"PLSA_REDIRECTED_LOGON_CLEANUP_CALLBACK","features":[305,326]},{"name":"PLSA_REDIRECTED_LOGON_GET_LOGON_CREDS","features":[305,326]},{"name":"PLSA_REDIRECTED_LOGON_GET_SID","features":[305,326]},{"name":"PLSA_REDIRECTED_LOGON_GET_SUPP_CREDS","features":[305,326]},{"name":"PLSA_REDIRECTED_LOGON_INIT","features":[305,326]},{"name":"PLSA_REGISTER_CALLBACK","features":[305,326]},{"name":"PLSA_REGISTER_NOTIFICATION","features":[305,326,340]},{"name":"PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS","features":[305,326]},{"name":"PLSA_SET_APP_MODE_INFO","features":[305,326]},{"name":"PLSA_UNLOAD_PACKAGE","features":[305,326]},{"name":"PLSA_UPDATE_PRIMARY_CREDENTIALS","features":[305,326]},{"name":"POLICY_ACCOUNT_DOMAIN_INFO","features":[326]},{"name":"POLICY_AUDIT_CATEGORIES_INFO","features":[326]},{"name":"POLICY_AUDIT_EVENTS_INFO","features":[305,326]},{"name":"POLICY_AUDIT_EVENT_FAILURE","features":[326]},{"name":"POLICY_AUDIT_EVENT_NONE","features":[326]},{"name":"POLICY_AUDIT_EVENT_SUCCESS","features":[326]},{"name":"POLICY_AUDIT_EVENT_TYPE","features":[326]},{"name":"POLICY_AUDIT_EVENT_UNCHANGED","features":[326]},{"name":"POLICY_AUDIT_FULL_QUERY_INFO","features":[305,326]},{"name":"POLICY_AUDIT_FULL_SET_INFO","features":[305,326]},{"name":"POLICY_AUDIT_LOG_ADMIN","features":[326]},{"name":"POLICY_AUDIT_LOG_INFO","features":[305,326]},{"name":"POLICY_AUDIT_SID_ARRAY","features":[326]},{"name":"POLICY_AUDIT_SUBCATEGORIES_INFO","features":[326]},{"name":"POLICY_CREATE_ACCOUNT","features":[326]},{"name":"POLICY_CREATE_PRIVILEGE","features":[326]},{"name":"POLICY_CREATE_SECRET","features":[326]},{"name":"POLICY_DEFAULT_QUOTA_INFO","features":[326]},{"name":"POLICY_DNS_DOMAIN_INFO","features":[326]},{"name":"POLICY_DOMAIN_EFS_INFO","features":[326]},{"name":"POLICY_DOMAIN_INFORMATION_CLASS","features":[326]},{"name":"POLICY_DOMAIN_KERBEROS_TICKET_INFO","features":[326]},{"name":"POLICY_GET_PRIVATE_INFORMATION","features":[326]},{"name":"POLICY_INFORMATION_CLASS","features":[326]},{"name":"POLICY_KERBEROS_VALIDATE_CLIENT","features":[326]},{"name":"POLICY_LOOKUP_NAMES","features":[326]},{"name":"POLICY_LSA_SERVER_ROLE","features":[326]},{"name":"POLICY_LSA_SERVER_ROLE_INFO","features":[326]},{"name":"POLICY_MACHINE_ACCT_INFO","features":[326]},{"name":"POLICY_MACHINE_ACCT_INFO2","features":[326]},{"name":"POLICY_MODIFICATION_INFO","features":[326]},{"name":"POLICY_NOTIFICATION","features":[326]},{"name":"POLICY_NOTIFICATION_INFORMATION_CLASS","features":[326]},{"name":"POLICY_PD_ACCOUNT_INFO","features":[326]},{"name":"POLICY_PRIMARY_DOMAIN_INFO","features":[326]},{"name":"POLICY_QOS_ALLOW_LOCAL_ROOT_CERT_STORE","features":[326]},{"name":"POLICY_QOS_DHCP_SERVER_ALLOWED","features":[326]},{"name":"POLICY_QOS_INBOUND_CONFIDENTIALITY","features":[326]},{"name":"POLICY_QOS_INBOUND_INTEGRITY","features":[326]},{"name":"POLICY_QOS_OUTBOUND_CONFIDENTIALITY","features":[326]},{"name":"POLICY_QOS_OUTBOUND_INTEGRITY","features":[326]},{"name":"POLICY_QOS_RAS_SERVER_ALLOWED","features":[326]},{"name":"POLICY_QOS_SCHANNEL_REQUIRED","features":[326]},{"name":"POLICY_REPLICA_SOURCE_INFO","features":[326]},{"name":"POLICY_SERVER_ADMIN","features":[326]},{"name":"POLICY_SET_AUDIT_REQUIREMENTS","features":[326]},{"name":"POLICY_SET_DEFAULT_QUOTA_LIMITS","features":[326]},{"name":"POLICY_TRUST_ADMIN","features":[326]},{"name":"POLICY_VIEW_AUDIT_INFORMATION","features":[326]},{"name":"POLICY_VIEW_LOCAL_INFORMATION","features":[326]},{"name":"PRIMARY_CRED_ARSO_LOGON","features":[326]},{"name":"PRIMARY_CRED_AUTH_ID","features":[326]},{"name":"PRIMARY_CRED_CACHED_INTERACTIVE_LOGON","features":[326]},{"name":"PRIMARY_CRED_CACHED_LOGON","features":[326]},{"name":"PRIMARY_CRED_CLEAR_PASSWORD","features":[326]},{"name":"PRIMARY_CRED_DO_NOT_SPLIT","features":[326]},{"name":"PRIMARY_CRED_ENCRYPTED_CREDGUARD_PASSWORD","features":[326]},{"name":"PRIMARY_CRED_ENTERPRISE_INTERNET_USER","features":[326]},{"name":"PRIMARY_CRED_EX","features":[326]},{"name":"PRIMARY_CRED_FOR_PASSWORD_CHANGE","features":[326]},{"name":"PRIMARY_CRED_INTERACTIVE_FIDO_LOGON","features":[326]},{"name":"PRIMARY_CRED_INTERACTIVE_NGC_LOGON","features":[326]},{"name":"PRIMARY_CRED_INTERACTIVE_SMARTCARD_LOGON","features":[326]},{"name":"PRIMARY_CRED_INTERNET_USER","features":[326]},{"name":"PRIMARY_CRED_LOGON_LUA","features":[326]},{"name":"PRIMARY_CRED_LOGON_NO_TCB","features":[326]},{"name":"PRIMARY_CRED_LOGON_PACKAGE_SHIFT","features":[326]},{"name":"PRIMARY_CRED_OWF_PASSWORD","features":[326]},{"name":"PRIMARY_CRED_PACKAGE_MASK","features":[326]},{"name":"PRIMARY_CRED_PACKED_CREDS","features":[326]},{"name":"PRIMARY_CRED_PROTECTED_USER","features":[326]},{"name":"PRIMARY_CRED_REFRESH_NEEDED","features":[326]},{"name":"PRIMARY_CRED_RESTRICTED_TS","features":[326]},{"name":"PRIMARY_CRED_SUPPLEMENTAL","features":[326]},{"name":"PRIMARY_CRED_TRANSFER","features":[326]},{"name":"PRIMARY_CRED_UPDATE","features":[326]},{"name":"PSAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[326]},{"name":"PSAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[305,326]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[305,326]},{"name":"PSAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[305,326]},{"name":"PSAM_INIT_NOTIFICATION_ROUTINE","features":[305,326]},{"name":"PSAM_PASSWORD_FILTER_ROUTINE","features":[305,326]},{"name":"PSAM_PASSWORD_NOTIFICATION_ROUTINE","features":[305,326]},{"name":"PctPublicKey","features":[326]},{"name":"Pku2uCertificateS4ULogon","features":[326]},{"name":"PolicyAccountDomainInformation","features":[326]},{"name":"PolicyAuditEventsInformation","features":[326]},{"name":"PolicyAuditFullQueryInformation","features":[326]},{"name":"PolicyAuditFullSetInformation","features":[326]},{"name":"PolicyAuditLogInformation","features":[326]},{"name":"PolicyDefaultQuotaInformation","features":[326]},{"name":"PolicyDnsDomainInformation","features":[326]},{"name":"PolicyDnsDomainInformationInt","features":[326]},{"name":"PolicyDomainEfsInformation","features":[326]},{"name":"PolicyDomainKerberosTicketInformation","features":[326]},{"name":"PolicyLastEntry","features":[326]},{"name":"PolicyLocalAccountDomainInformation","features":[326]},{"name":"PolicyLsaServerRoleInformation","features":[326]},{"name":"PolicyMachineAccountInformation","features":[326]},{"name":"PolicyMachineAccountInformation2","features":[326]},{"name":"PolicyModificationInformation","features":[326]},{"name":"PolicyNotifyAccountDomainInformation","features":[326]},{"name":"PolicyNotifyAuditEventsInformation","features":[326]},{"name":"PolicyNotifyDnsDomainInformation","features":[326]},{"name":"PolicyNotifyDomainEfsInformation","features":[326]},{"name":"PolicyNotifyDomainKerberosTicketInformation","features":[326]},{"name":"PolicyNotifyGlobalSaclInformation","features":[326]},{"name":"PolicyNotifyMachineAccountPasswordInformation","features":[326]},{"name":"PolicyNotifyMax","features":[326]},{"name":"PolicyNotifyServerRoleInformation","features":[326]},{"name":"PolicyPdAccountInformation","features":[326]},{"name":"PolicyPrimaryDomainInformation","features":[326]},{"name":"PolicyReplicaSourceInformation","features":[326]},{"name":"PolicyServerRoleBackup","features":[326]},{"name":"PolicyServerRolePrimary","features":[326]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_A","features":[326,479]},{"name":"QUERY_CONTEXT_ATTRIBUTES_EX_FN_W","features":[326,479]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_A","features":[326,479]},{"name":"QUERY_CONTEXT_ATTRIBUTES_FN_W","features":[326,479]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_A","features":[326,479]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_EX_FN_W","features":[326,479]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_A","features":[326,479]},{"name":"QUERY_CREDENTIALS_ATTRIBUTES_FN_W","features":[326,479]},{"name":"QUERY_SECURITY_CONTEXT_TOKEN_FN","features":[326,479]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_A","features":[326]},{"name":"QUERY_SECURITY_PACKAGE_INFO_FN_W","features":[326]},{"name":"QueryContextAttributesA","features":[326,479]},{"name":"QueryContextAttributesExA","features":[326,479]},{"name":"QueryContextAttributesExW","features":[326,479]},{"name":"QueryContextAttributesW","features":[326,479]},{"name":"QueryCredentialsAttributesA","features":[326,479]},{"name":"QueryCredentialsAttributesExA","features":[326,479]},{"name":"QueryCredentialsAttributesExW","features":[326,479]},{"name":"QueryCredentialsAttributesW","features":[326,479]},{"name":"QuerySecurityContextToken","features":[326,479]},{"name":"QuerySecurityPackageInfoA","features":[326]},{"name":"QuerySecurityPackageInfoW","features":[326]},{"name":"RCRED_CRED_EXISTS","features":[326]},{"name":"RCRED_STATUS_NOCRED","features":[326]},{"name":"RCRED_STATUS_UNKNOWN_ISSUER","features":[326]},{"name":"REVERT_SECURITY_CONTEXT_FN","features":[326,479]},{"name":"RTL_ENCRYPT_MEMORY_SIZE","features":[326]},{"name":"RTL_ENCRYPT_OPTION_CROSS_PROCESS","features":[326]},{"name":"RTL_ENCRYPT_OPTION_FOR_SYSTEM","features":[326]},{"name":"RTL_ENCRYPT_OPTION_SAME_LOGON","features":[326]},{"name":"RevertSecurityContext","features":[326,479]},{"name":"RtlDecryptMemory","features":[305,326]},{"name":"RtlEncryptMemory","features":[305,326]},{"name":"RtlGenRandom","features":[305,326]},{"name":"SAM_CREDENTIAL_UPDATE_FREE_ROUTINE","features":[326]},{"name":"SAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE","features":[326]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE","features":[326]},{"name":"SAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE","features":[326]},{"name":"SAM_DAYS_PER_WEEK","features":[326]},{"name":"SAM_INIT_NOTIFICATION_ROUTINE","features":[326]},{"name":"SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE","features":[326]},{"name":"SAM_PASSWORD_FILTER_ROUTINE","features":[326]},{"name":"SAM_REGISTER_MAPPING_ELEMENT","features":[305,326]},{"name":"SAM_REGISTER_MAPPING_LIST","features":[305,326]},{"name":"SAM_REGISTER_MAPPING_TABLE","features":[305,326]},{"name":"SASL_AUTHZID_STATE","features":[326]},{"name":"SASL_OPTION_AUTHZ_PROCESSING","features":[326]},{"name":"SASL_OPTION_AUTHZ_STRING","features":[326]},{"name":"SASL_OPTION_RECV_SIZE","features":[326]},{"name":"SASL_OPTION_SEND_SIZE","features":[326]},{"name":"SCHANNEL_ALERT","features":[326]},{"name":"SCHANNEL_ALERT_TOKEN","features":[326]},{"name":"SCHANNEL_ALERT_TOKEN_ALERT_TYPE","features":[326]},{"name":"SCHANNEL_CERT_HASH","features":[326]},{"name":"SCHANNEL_CERT_HASH_STORE","features":[326]},{"name":"SCHANNEL_CLIENT_SIGNATURE","features":[326,389]},{"name":"SCHANNEL_CRED","features":[305,326,389]},{"name":"SCHANNEL_CRED_FLAGS","features":[326]},{"name":"SCHANNEL_CRED_VERSION","features":[326]},{"name":"SCHANNEL_NAME","features":[326]},{"name":"SCHANNEL_NAME_A","features":[326]},{"name":"SCHANNEL_NAME_W","features":[326]},{"name":"SCHANNEL_RENEGOTIATE","features":[326]},{"name":"SCHANNEL_SECRET_PRIVKEY","features":[326]},{"name":"SCHANNEL_SECRET_TYPE_CAPI","features":[326]},{"name":"SCHANNEL_SESSION","features":[326]},{"name":"SCHANNEL_SESSION_TOKEN","features":[326]},{"name":"SCHANNEL_SESSION_TOKEN_FLAGS","features":[326]},{"name":"SCHANNEL_SHUTDOWN","features":[326]},{"name":"SCH_ALLOW_NULL_ENCRYPTION","features":[326]},{"name":"SCH_CRED","features":[326]},{"name":"SCH_CREDENTIALS","features":[305,326,389]},{"name":"SCH_CREDENTIALS_VERSION","features":[326]},{"name":"SCH_CRED_AUTO_CRED_VALIDATION","features":[326]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL","features":[326]},{"name":"SCH_CRED_CACHE_ONLY_URL_RETRIEVAL_ON_CREATE","features":[326]},{"name":"SCH_CRED_CERT_CONTEXT","features":[326]},{"name":"SCH_CRED_DEFERRED_CRED_VALIDATION","features":[326]},{"name":"SCH_CRED_DISABLE_RECONNECTS","features":[326]},{"name":"SCH_CRED_FORMAT_CERT_CONTEXT","features":[326]},{"name":"SCH_CRED_FORMAT_CERT_HASH","features":[326]},{"name":"SCH_CRED_FORMAT_CERT_HASH_STORE","features":[326]},{"name":"SCH_CRED_IGNORE_NO_REVOCATION_CHECK","features":[326]},{"name":"SCH_CRED_IGNORE_REVOCATION_OFFLINE","features":[326]},{"name":"SCH_CRED_MANUAL_CRED_VALIDATION","features":[326]},{"name":"SCH_CRED_MAX_STORE_NAME_SIZE","features":[326]},{"name":"SCH_CRED_MAX_SUPPORTED_ALGS","features":[326]},{"name":"SCH_CRED_MAX_SUPPORTED_ALPN_IDS","features":[326]},{"name":"SCH_CRED_MAX_SUPPORTED_CERTS","features":[326]},{"name":"SCH_CRED_MAX_SUPPORTED_CHAINING_MODES","features":[326]},{"name":"SCH_CRED_MAX_SUPPORTED_CRYPTO_SETTINGS","features":[326]},{"name":"SCH_CRED_MAX_SUPPORTED_PARAMETERS","features":[326]},{"name":"SCH_CRED_MEMORY_STORE_CERT","features":[326]},{"name":"SCH_CRED_NO_DEFAULT_CREDS","features":[326]},{"name":"SCH_CRED_NO_SERVERNAME_CHECK","features":[326]},{"name":"SCH_CRED_NO_SYSTEM_MAPPER","features":[326]},{"name":"SCH_CRED_PUBLIC_CERTCHAIN","features":[326]},{"name":"SCH_CRED_RESTRICTED_ROOTS","features":[326]},{"name":"SCH_CRED_REVOCATION_CHECK_CACHE_ONLY","features":[326]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN","features":[326]},{"name":"SCH_CRED_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[326]},{"name":"SCH_CRED_REVOCATION_CHECK_END_CERT","features":[326]},{"name":"SCH_CRED_SECRET_CAPI","features":[326]},{"name":"SCH_CRED_SECRET_PRIVKEY","features":[326]},{"name":"SCH_CRED_SNI_CREDENTIAL","features":[326]},{"name":"SCH_CRED_SNI_ENABLE_OCSP","features":[326]},{"name":"SCH_CRED_USE_DEFAULT_CREDS","features":[326]},{"name":"SCH_CRED_V1","features":[326]},{"name":"SCH_CRED_V2","features":[326]},{"name":"SCH_CRED_V3","features":[326]},{"name":"SCH_CRED_VERSION","features":[326]},{"name":"SCH_CRED_X509_CAPI","features":[326]},{"name":"SCH_CRED_X509_CERTCHAIN","features":[326]},{"name":"SCH_DISABLE_RECONNECTS","features":[326]},{"name":"SCH_EXTENSIONS_OPTIONS_NONE","features":[326]},{"name":"SCH_EXTENSION_DATA","features":[326]},{"name":"SCH_MACHINE_CERT_HASH","features":[326]},{"name":"SCH_MAX_EXT_SUBSCRIPTIONS","features":[326]},{"name":"SCH_NO_RECORD_HEADER","features":[326]},{"name":"SCH_SEND_AUX_RECORD","features":[326]},{"name":"SCH_SEND_ROOT_CERT","features":[326]},{"name":"SCH_USE_DTLS_ONLY","features":[326]},{"name":"SCH_USE_PRESHAREDKEY_ONLY","features":[326]},{"name":"SCH_USE_STRONG_CRYPTO","features":[326]},{"name":"SECBUFFER_ALERT","features":[326]},{"name":"SECBUFFER_APPLICATION_PROTOCOLS","features":[326]},{"name":"SECBUFFER_ATTRMASK","features":[326]},{"name":"SECBUFFER_CERTIFICATE_REQUEST_CONTEXT","features":[326]},{"name":"SECBUFFER_CHANGE_PASS_RESPONSE","features":[326]},{"name":"SECBUFFER_CHANNEL_BINDINGS","features":[326]},{"name":"SECBUFFER_CHANNEL_BINDINGS_RESULT","features":[326]},{"name":"SECBUFFER_DATA","features":[326]},{"name":"SECBUFFER_DTLS_MTU","features":[326]},{"name":"SECBUFFER_EMPTY","features":[326]},{"name":"SECBUFFER_EXTRA","features":[326]},{"name":"SECBUFFER_FLAGS","features":[326]},{"name":"SECBUFFER_KERNEL_MAP","features":[326]},{"name":"SECBUFFER_MECHLIST","features":[326]},{"name":"SECBUFFER_MECHLIST_SIGNATURE","features":[326]},{"name":"SECBUFFER_MISSING","features":[326]},{"name":"SECBUFFER_NEGOTIATION_INFO","features":[326]},{"name":"SECBUFFER_PADDING","features":[326]},{"name":"SECBUFFER_PKG_PARAMS","features":[326]},{"name":"SECBUFFER_PRESHARED_KEY","features":[326]},{"name":"SECBUFFER_PRESHARED_KEY_IDENTITY","features":[326]},{"name":"SECBUFFER_READONLY","features":[326]},{"name":"SECBUFFER_READONLY_WITH_CHECKSUM","features":[326]},{"name":"SECBUFFER_RESERVED","features":[326]},{"name":"SECBUFFER_SEND_GENERIC_TLS_EXTENSION","features":[326]},{"name":"SECBUFFER_SRTP_MASTER_KEY_IDENTIFIER","features":[326]},{"name":"SECBUFFER_SRTP_PROTECTION_PROFILES","features":[326]},{"name":"SECBUFFER_STREAM","features":[326]},{"name":"SECBUFFER_STREAM_HEADER","features":[326]},{"name":"SECBUFFER_STREAM_TRAILER","features":[326]},{"name":"SECBUFFER_SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[326]},{"name":"SECBUFFER_TARGET","features":[326]},{"name":"SECBUFFER_TARGET_HOST","features":[326]},{"name":"SECBUFFER_TOKEN","features":[326]},{"name":"SECBUFFER_TOKEN_BINDING","features":[326]},{"name":"SECBUFFER_TRAFFIC_SECRETS","features":[326]},{"name":"SECBUFFER_UNMAPPED","features":[326]},{"name":"SECBUFFER_VERSION","features":[326]},{"name":"SECPKGCONTEXT_CIPHERINFO_V1","features":[326]},{"name":"SECPKGCONTEXT_CONNECTION_INFO_EX_V1","features":[326]},{"name":"SECPKG_ANSI_ATTRIBUTE","features":[326]},{"name":"SECPKG_APP_MODE_INFO","features":[305,326]},{"name":"SECPKG_ATTR","features":[326]},{"name":"SECPKG_ATTR_ACCESS_TOKEN","features":[326]},{"name":"SECPKG_ATTR_APPLICATION_PROTOCOL","features":[326]},{"name":"SECPKG_ATTR_APP_DATA","features":[326]},{"name":"SECPKG_ATTR_AUTHENTICATION_ID","features":[326]},{"name":"SECPKG_ATTR_AUTHORITY","features":[326]},{"name":"SECPKG_ATTR_CC_POLICY_RESULT","features":[326]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT","features":[326]},{"name":"SECPKG_ATTR_CERT_CHECK_RESULT_INPROC","features":[326]},{"name":"SECPKG_ATTR_CERT_TRUST_STATUS","features":[326]},{"name":"SECPKG_ATTR_CIPHER_INFO","features":[326]},{"name":"SECPKG_ATTR_CIPHER_STRENGTHS","features":[326]},{"name":"SECPKG_ATTR_CLIENT_CERT_POLICY","features":[326]},{"name":"SECPKG_ATTR_CLIENT_SPECIFIED_TARGET","features":[326]},{"name":"SECPKG_ATTR_CONNECTION_INFO","features":[326]},{"name":"SECPKG_ATTR_CONNECTION_INFO_EX","features":[326]},{"name":"SECPKG_ATTR_CONTEXT_DELETED","features":[326]},{"name":"SECPKG_ATTR_CREDENTIAL_NAME","features":[326]},{"name":"SECPKG_ATTR_CREDS","features":[326]},{"name":"SECPKG_ATTR_CREDS_2","features":[326]},{"name":"SECPKG_ATTR_C_ACCESS_TOKEN","features":[326]},{"name":"SECPKG_ATTR_C_FULL_ACCESS_TOKEN","features":[326]},{"name":"SECPKG_ATTR_DCE_INFO","features":[326]},{"name":"SECPKG_ATTR_DTLS_MTU","features":[326]},{"name":"SECPKG_ATTR_EAP_KEY_BLOCK","features":[326]},{"name":"SECPKG_ATTR_EAP_PRF_INFO","features":[326]},{"name":"SECPKG_ATTR_EARLY_START","features":[326]},{"name":"SECPKG_ATTR_ENDPOINT_BINDINGS","features":[326]},{"name":"SECPKG_ATTR_FLAGS","features":[326]},{"name":"SECPKG_ATTR_ISSUER_LIST","features":[326]},{"name":"SECPKG_ATTR_ISSUER_LIST_EX","features":[326]},{"name":"SECPKG_ATTR_IS_LOOPBACK","features":[326]},{"name":"SECPKG_ATTR_KEYING_MATERIAL","features":[326]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INFO","features":[326]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_INPROC","features":[326]},{"name":"SECPKG_ATTR_KEYING_MATERIAL_TOKEN_BINDING","features":[326]},{"name":"SECPKG_ATTR_KEY_INFO","features":[326]},{"name":"SECPKG_ATTR_LAST_CLIENT_TOKEN_STATUS","features":[326]},{"name":"SECPKG_ATTR_LCT_STATUS","features":[326]},{"name":"SECPKG_ATTR_LIFESPAN","features":[326]},{"name":"SECPKG_ATTR_LOCAL_CERT_CONTEXT","features":[326]},{"name":"SECPKG_ATTR_LOCAL_CERT_INFO","features":[326]},{"name":"SECPKG_ATTR_LOCAL_CRED","features":[326]},{"name":"SECPKG_ATTR_LOGOFF_TIME","features":[326]},{"name":"SECPKG_ATTR_MAPPED_CRED_ATTR","features":[326]},{"name":"SECPKG_ATTR_NAMES","features":[326]},{"name":"SECPKG_ATTR_NATIVE_NAMES","features":[326]},{"name":"SECPKG_ATTR_NEGOTIATED_TLS_EXTENSIONS","features":[326]},{"name":"SECPKG_ATTR_NEGOTIATION_INFO","features":[326]},{"name":"SECPKG_ATTR_NEGOTIATION_PACKAGE","features":[326]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_KERBEROS","features":[326]},{"name":"SECPKG_ATTR_NEGO_INFO_FLAG_NO_NTLM","features":[326]},{"name":"SECPKG_ATTR_NEGO_KEYS","features":[326]},{"name":"SECPKG_ATTR_NEGO_PKG_INFO","features":[326]},{"name":"SECPKG_ATTR_NEGO_STATUS","features":[326]},{"name":"SECPKG_ATTR_PACKAGE_INFO","features":[326]},{"name":"SECPKG_ATTR_PASSWORD_EXPIRY","features":[326]},{"name":"SECPKG_ATTR_PROMPTING_NEEDED","features":[326]},{"name":"SECPKG_ATTR_PROTO_INFO","features":[326]},{"name":"SECPKG_ATTR_REMOTE_CERTIFICATES","features":[326]},{"name":"SECPKG_ATTR_REMOTE_CERT_CHAIN","features":[326]},{"name":"SECPKG_ATTR_REMOTE_CERT_CONTEXT","features":[326]},{"name":"SECPKG_ATTR_REMOTE_CRED","features":[326]},{"name":"SECPKG_ATTR_ROOT_STORE","features":[326]},{"name":"SECPKG_ATTR_SASL_CONTEXT","features":[326]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT","features":[326]},{"name":"SECPKG_ATTR_SERIALIZED_REMOTE_CERT_CONTEXT_INPROC","features":[326]},{"name":"SECPKG_ATTR_SERVER_AUTH_FLAGS","features":[326]},{"name":"SECPKG_ATTR_SESSION_INFO","features":[326]},{"name":"SECPKG_ATTR_SESSION_KEY","features":[326]},{"name":"SECPKG_ATTR_SESSION_TICKET_KEYS","features":[326]},{"name":"SECPKG_ATTR_SIZES","features":[326]},{"name":"SECPKG_ATTR_SRTP_PARAMETERS","features":[326]},{"name":"SECPKG_ATTR_STREAM_SIZES","features":[326]},{"name":"SECPKG_ATTR_SUBJECT_SECURITY_ATTRIBUTES","features":[326]},{"name":"SECPKG_ATTR_SUPPORTED_ALGS","features":[326]},{"name":"SECPKG_ATTR_SUPPORTED_PROTOCOLS","features":[326]},{"name":"SECPKG_ATTR_SUPPORTED_SIGNATURES","features":[326]},{"name":"SECPKG_ATTR_TARGET","features":[326]},{"name":"SECPKG_ATTR_TARGET_INFORMATION","features":[326]},{"name":"SECPKG_ATTR_THUNK_ALL","features":[326]},{"name":"SECPKG_ATTR_TOKEN_BINDING","features":[326]},{"name":"SECPKG_ATTR_UI_INFO","features":[326]},{"name":"SECPKG_ATTR_UNIQUE_BINDINGS","features":[326]},{"name":"SECPKG_ATTR_USER_FLAGS","features":[326]},{"name":"SECPKG_ATTR_USE_NCRYPT","features":[326]},{"name":"SECPKG_ATTR_USE_VALIDATED","features":[326]},{"name":"SECPKG_BYTE_VECTOR","features":[326]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER","features":[326]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_AUTHCAPABLE","features":[326]},{"name":"SECPKG_CALLFLAGS_APPCONTAINER_UPNCAPABLE","features":[326]},{"name":"SECPKG_CALLFLAGS_FORCE_SUPPLIED","features":[326]},{"name":"SECPKG_CALL_ANSI","features":[326]},{"name":"SECPKG_CALL_ASYNC_UPDATE","features":[326]},{"name":"SECPKG_CALL_BUFFER_MARSHAL","features":[326]},{"name":"SECPKG_CALL_CLEANUP","features":[326]},{"name":"SECPKG_CALL_CLOUDAP_CONNECT","features":[326]},{"name":"SECPKG_CALL_INFO","features":[326]},{"name":"SECPKG_CALL_IN_PROC","features":[326]},{"name":"SECPKG_CALL_IS_TCB","features":[326]},{"name":"SECPKG_CALL_KERNEL_MODE","features":[326]},{"name":"SECPKG_CALL_NEGO","features":[326]},{"name":"SECPKG_CALL_NEGO_EXTENDER","features":[326]},{"name":"SECPKG_CALL_NETWORK_ONLY","features":[326]},{"name":"SECPKG_CALL_PACKAGE_MESSAGE_TYPE","features":[326]},{"name":"SECPKG_CALL_PACKAGE_PIN_DC_REQUEST","features":[326]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST","features":[305,326]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_CLEANUP_CREDENTIALS","features":[326]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_OPTIMISTIC_LOGON","features":[326]},{"name":"SECPKG_CALL_PACKAGE_TRANSFER_CRED_REQUEST_FLAG_TO_SSO_SESSION","features":[326]},{"name":"SECPKG_CALL_PACKAGE_UNPIN_ALL_DCS_REQUEST","features":[326]},{"name":"SECPKG_CALL_PROCESS_TERM","features":[326]},{"name":"SECPKG_CALL_RECURSIVE","features":[326]},{"name":"SECPKG_CALL_SYSTEM_PROC","features":[326]},{"name":"SECPKG_CALL_THREAD_TERM","features":[326]},{"name":"SECPKG_CALL_UNLOCK","features":[326]},{"name":"SECPKG_CALL_URGENT","features":[326]},{"name":"SECPKG_CALL_WINLOGON","features":[326]},{"name":"SECPKG_CALL_WOWA32","features":[326]},{"name":"SECPKG_CALL_WOWCLIENT","features":[326]},{"name":"SECPKG_CALL_WOWX86","features":[326]},{"name":"SECPKG_CLIENT_INFO","features":[305,326]},{"name":"SECPKG_CLIENT_INFO_EX","features":[305,326]},{"name":"SECPKG_CLIENT_PROCESS_TERMINATED","features":[326]},{"name":"SECPKG_CLIENT_THREAD_TERMINATED","features":[326]},{"name":"SECPKG_CONTEXT_EXPORT_DELETE_OLD","features":[326]},{"name":"SECPKG_CONTEXT_EXPORT_RESET_NEW","features":[326]},{"name":"SECPKG_CONTEXT_EXPORT_TO_KERNEL","features":[326]},{"name":"SECPKG_CONTEXT_THUNKS","features":[326]},{"name":"SECPKG_CRED","features":[326]},{"name":"SECPKG_CREDENTIAL","features":[305,326]},{"name":"SECPKG_CREDENTIAL_ATTRIBUTE","features":[326]},{"name":"SECPKG_CREDENTIAL_FLAGS_CALLER_HAS_TCB","features":[326]},{"name":"SECPKG_CREDENTIAL_FLAGS_CREDMAN_CRED","features":[326]},{"name":"SECPKG_CREDENTIAL_VERSION","features":[326]},{"name":"SECPKG_CRED_ATTR_CERT","features":[326]},{"name":"SECPKG_CRED_ATTR_KDC_PROXY_SETTINGS","features":[326]},{"name":"SECPKG_CRED_ATTR_NAMES","features":[326]},{"name":"SECPKG_CRED_ATTR_PAC_BYPASS","features":[326]},{"name":"SECPKG_CRED_ATTR_SSI_PROVIDER","features":[326]},{"name":"SECPKG_CRED_AUTOLOGON_RESTRICTED","features":[326]},{"name":"SECPKG_CRED_BOTH","features":[326]},{"name":"SECPKG_CRED_CLASS","features":[326]},{"name":"SECPKG_CRED_DEFAULT","features":[326]},{"name":"SECPKG_CRED_INBOUND","features":[326]},{"name":"SECPKG_CRED_OUTBOUND","features":[326]},{"name":"SECPKG_CRED_PROCESS_POLICY_ONLY","features":[326]},{"name":"SECPKG_CRED_RESERVED","features":[326]},{"name":"SECPKG_DLL_FUNCTIONS","features":[305,326]},{"name":"SECPKG_EVENT_NOTIFY","features":[326]},{"name":"SECPKG_EVENT_PACKAGE_CHANGE","features":[326]},{"name":"SECPKG_EVENT_ROLE_CHANGE","features":[326]},{"name":"SECPKG_EXTENDED_INFORMATION","features":[326]},{"name":"SECPKG_EXTENDED_INFORMATION_CLASS","features":[326]},{"name":"SECPKG_EXTRA_OIDS","features":[326]},{"name":"SECPKG_FLAG_ACCEPT_WIN32_NAME","features":[326]},{"name":"SECPKG_FLAG_APPCONTAINER_CHECKS","features":[326]},{"name":"SECPKG_FLAG_APPCONTAINER_PASSTHROUGH","features":[326]},{"name":"SECPKG_FLAG_APPLY_LOOPBACK","features":[326]},{"name":"SECPKG_FLAG_ASCII_BUFFERS","features":[326]},{"name":"SECPKG_FLAG_CLIENT_ONLY","features":[326]},{"name":"SECPKG_FLAG_CONNECTION","features":[326]},{"name":"SECPKG_FLAG_CREDENTIAL_ISOLATION_ENABLED","features":[326]},{"name":"SECPKG_FLAG_DATAGRAM","features":[326]},{"name":"SECPKG_FLAG_DELEGATION","features":[326]},{"name":"SECPKG_FLAG_EXTENDED_ERROR","features":[326]},{"name":"SECPKG_FLAG_FRAGMENT","features":[326]},{"name":"SECPKG_FLAG_GSS_COMPATIBLE","features":[326]},{"name":"SECPKG_FLAG_IMPERSONATION","features":[326]},{"name":"SECPKG_FLAG_INTEGRITY","features":[326]},{"name":"SECPKG_FLAG_LOGON","features":[326]},{"name":"SECPKG_FLAG_MULTI_REQUIRED","features":[326]},{"name":"SECPKG_FLAG_MUTUAL_AUTH","features":[326]},{"name":"SECPKG_FLAG_NEGOTIABLE","features":[326]},{"name":"SECPKG_FLAG_NEGOTIABLE2","features":[326]},{"name":"SECPKG_FLAG_NEGO_EXTENDER","features":[326]},{"name":"SECPKG_FLAG_PRIVACY","features":[326]},{"name":"SECPKG_FLAG_READONLY_WITH_CHECKSUM","features":[326]},{"name":"SECPKG_FLAG_RESTRICTED_TOKENS","features":[326]},{"name":"SECPKG_FLAG_STREAM","features":[326]},{"name":"SECPKG_FLAG_TOKEN_ONLY","features":[326]},{"name":"SECPKG_FUNCTION_TABLE","features":[305,326,479,340]},{"name":"SECPKG_GSS_INFO","features":[326]},{"name":"SECPKG_ID_NONE","features":[326]},{"name":"SECPKG_INTERFACE_VERSION","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_10","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_11","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_2","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_3","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_4","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_5","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_6","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_7","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_8","features":[326]},{"name":"SECPKG_INTERFACE_VERSION_9","features":[326]},{"name":"SECPKG_KERNEL_FUNCTIONS","features":[305,326,311]},{"name":"SECPKG_KERNEL_FUNCTION_TABLE","features":[305,326,311]},{"name":"SECPKG_LSAMODEINIT_NAME","features":[326]},{"name":"SECPKG_MAX_OID_LENGTH","features":[326]},{"name":"SECPKG_MSVAV_FLAGS_VALID","features":[326]},{"name":"SECPKG_MSVAV_TIMESTAMP_VALID","features":[326]},{"name":"SECPKG_MUTUAL_AUTH_LEVEL","features":[326]},{"name":"SECPKG_NAME_TYPE","features":[326]},{"name":"SECPKG_NEGO2_INFO","features":[326]},{"name":"SECPKG_NEGOTIATION_COMPLETE","features":[326]},{"name":"SECPKG_NEGOTIATION_DIRECT","features":[326]},{"name":"SECPKG_NEGOTIATION_IN_PROGRESS","features":[326]},{"name":"SECPKG_NEGOTIATION_OPTIMISTIC","features":[326]},{"name":"SECPKG_NEGOTIATION_TRY_MULTICRED","features":[326]},{"name":"SECPKG_NTLM_TARGETINFO","features":[305,326]},{"name":"SECPKG_OPTIONS_PERMANENT","features":[326]},{"name":"SECPKG_OPTIONS_TYPE_LSA","features":[326]},{"name":"SECPKG_OPTIONS_TYPE_SSPI","features":[326]},{"name":"SECPKG_OPTIONS_TYPE_UNKNOWN","features":[326]},{"name":"SECPKG_PACKAGE_CHANGE_LOAD","features":[326]},{"name":"SECPKG_PACKAGE_CHANGE_SELECT","features":[326]},{"name":"SECPKG_PACKAGE_CHANGE_TYPE","features":[326]},{"name":"SECPKG_PACKAGE_CHANGE_UNLOAD","features":[326]},{"name":"SECPKG_PARAMETERS","features":[326]},{"name":"SECPKG_POST_LOGON_USER_INFO","features":[305,326]},{"name":"SECPKG_PRIMARY_CRED","features":[305,326]},{"name":"SECPKG_PRIMARY_CRED_EX","features":[305,326]},{"name":"SECPKG_PRIMARY_CRED_EX_FLAGS_EX_DELEGATION_TOKEN","features":[326]},{"name":"SECPKG_REDIRECTED_LOGON_BUFFER","features":[305,326]},{"name":"SECPKG_REDIRECTED_LOGON_GUID_INITIALIZER","features":[326]},{"name":"SECPKG_SERIALIZED_OID","features":[326]},{"name":"SECPKG_SESSIONINFO_TYPE","features":[326]},{"name":"SECPKG_SHORT_VECTOR","features":[326]},{"name":"SECPKG_STATE_CRED_ISOLATION_ENABLED","features":[326]},{"name":"SECPKG_STATE_DOMAIN_CONTROLLER","features":[326]},{"name":"SECPKG_STATE_ENCRYPTION_PERMITTED","features":[326]},{"name":"SECPKG_STATE_RESERVED_1","features":[326]},{"name":"SECPKG_STATE_STANDALONE","features":[326]},{"name":"SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED","features":[326]},{"name":"SECPKG_STATE_WORKSTATION","features":[326]},{"name":"SECPKG_SUPPLEMENTAL_CRED","features":[326]},{"name":"SECPKG_SUPPLEMENTAL_CRED_ARRAY","features":[326]},{"name":"SECPKG_SUPPLIED_CREDENTIAL","features":[326]},{"name":"SECPKG_SURROGATE_LOGON","features":[305,326]},{"name":"SECPKG_SURROGATE_LOGON_ENTRY","features":[326]},{"name":"SECPKG_SURROGATE_LOGON_VERSION_1","features":[326]},{"name":"SECPKG_TARGETINFO","features":[326]},{"name":"SECPKG_UNICODE_ATTRIBUTE","features":[326]},{"name":"SECPKG_USERMODEINIT_NAME","features":[326]},{"name":"SECPKG_USER_FUNCTION_TABLE","features":[305,326]},{"name":"SECPKG_WOW_CLIENT_DLL","features":[326]},{"name":"SECQOP_WRAP_NO_ENCRYPT","features":[326]},{"name":"SECQOP_WRAP_OOB_DATA","features":[326]},{"name":"SECRET_QUERY_VALUE","features":[326]},{"name":"SECRET_SET_VALUE","features":[326]},{"name":"SECURITY_ENTRYPOINT","features":[326]},{"name":"SECURITY_ENTRYPOINT16","features":[326]},{"name":"SECURITY_ENTRYPOINT_ANSI","features":[326]},{"name":"SECURITY_ENTRYPOINT_ANSIA","features":[326]},{"name":"SECURITY_ENTRYPOINT_ANSIW","features":[326]},{"name":"SECURITY_LOGON_SESSION_DATA","features":[305,326]},{"name":"SECURITY_LOGON_TYPE","features":[326]},{"name":"SECURITY_NATIVE_DREP","features":[326]},{"name":"SECURITY_NETWORK_DREP","features":[326]},{"name":"SECURITY_PACKAGE_OPTIONS","features":[326]},{"name":"SECURITY_PACKAGE_OPTIONS_TYPE","features":[326]},{"name":"SECURITY_STRING","features":[326]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION","features":[326]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_2","features":[326]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_3","features":[326]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_4","features":[326]},{"name":"SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION_5","features":[326]},{"name":"SECURITY_USER_DATA","features":[326]},{"name":"SEC_APPLICATION_PROTOCOLS","features":[326]},{"name":"SEC_APPLICATION_PROTOCOL_LIST","features":[326]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_EXT","features":[326]},{"name":"SEC_APPLICATION_PROTOCOL_NEGOTIATION_STATUS","features":[326]},{"name":"SEC_CERTIFICATE_REQUEST_CONTEXT","features":[326]},{"name":"SEC_CHANNEL_BINDINGS","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_AUDIT_BINDINGS","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_EX","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_ABSENT","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_CLIENT_SUPPORT","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISMATCH","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_NOTVALID_MISSING","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MATCHED","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_MISSING","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_RESULT_VALID_PROXY","features":[326]},{"name":"SEC_CHANNEL_BINDINGS_VALID_FLAGS","features":[326]},{"name":"SEC_DTLS_MTU","features":[326]},{"name":"SEC_FLAGS","features":[326]},{"name":"SEC_GET_KEY_FN","features":[326]},{"name":"SEC_NEGOTIATION_INFO","features":[326]},{"name":"SEC_PRESHAREDKEY","features":[326]},{"name":"SEC_PRESHAREDKEY_IDENTITY","features":[326]},{"name":"SEC_SRTP_MASTER_KEY_IDENTIFIER","features":[326]},{"name":"SEC_SRTP_PROTECTION_PROFILES","features":[326]},{"name":"SEC_TOKEN_BINDING","features":[326]},{"name":"SEC_TRAFFIC_SECRETS","features":[326]},{"name":"SEC_TRAFFIC_SECRET_TYPE","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY32","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_FOR_SYSTEM","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_LOGON","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_ENCRYPT_SAME_PROCESS","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX2","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_EX32","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXA","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_EXW","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_ID_PROVIDER","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_DOMAIN","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_NULL_USER","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_PROCESS_ENCRYPTED","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_RESERVED","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_NO_CHECKBOX","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_BY_CALLER","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_SAVE_CRED_CHECKED","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SSPIPFC_USE_MASK","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_ENCRYPTED","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_SYSTEM_PROTECTED","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_FLAGS_USER_PROTECTED","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_INFO","features":[326,322]},{"name":"SEC_WINNT_AUTH_IDENTITY_MARSHALLED","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_ONLY","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION","features":[326]},{"name":"SEC_WINNT_AUTH_IDENTITY_VERSION_2","features":[326]},{"name":"SEND_GENERIC_TLS_EXTENSION","features":[326]},{"name":"SESSION_TICKET_INFO_V0","features":[326]},{"name":"SESSION_TICKET_INFO_VERSION","features":[326]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_A","features":[326,479]},{"name":"SET_CONTEXT_ATTRIBUTES_FN_W","features":[326,479]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_A","features":[326,479]},{"name":"SET_CREDENTIALS_ATTRIBUTES_FN_W","features":[326,479]},{"name":"SE_ADT_ACCESS_REASON","features":[326]},{"name":"SE_ADT_CLAIMS","features":[326]},{"name":"SE_ADT_OBJECT_ONLY","features":[326]},{"name":"SE_ADT_OBJECT_TYPE","features":[326]},{"name":"SE_ADT_PARAMETERS_SELF_RELATIVE","features":[326]},{"name":"SE_ADT_PARAMETERS_SEND_TO_LSA","features":[326]},{"name":"SE_ADT_PARAMETER_ARRAY","features":[326]},{"name":"SE_ADT_PARAMETER_ARRAY_ENTRY","features":[326]},{"name":"SE_ADT_PARAMETER_ARRAY_EX","features":[326]},{"name":"SE_ADT_PARAMETER_EXTENSIBLE_AUDIT","features":[326]},{"name":"SE_ADT_PARAMETER_GENERIC_AUDIT","features":[326]},{"name":"SE_ADT_PARAMETER_TYPE","features":[326]},{"name":"SE_ADT_PARAMETER_WRITE_SYNCHRONOUS","features":[326]},{"name":"SE_ADT_POLICY_AUDIT_EVENT_TYPE_EX_BEGIN","features":[326]},{"name":"SE_BATCH_LOGON_NAME","features":[326]},{"name":"SE_DENY_BATCH_LOGON_NAME","features":[326]},{"name":"SE_DENY_INTERACTIVE_LOGON_NAME","features":[326]},{"name":"SE_DENY_NETWORK_LOGON_NAME","features":[326]},{"name":"SE_DENY_REMOTE_INTERACTIVE_LOGON_NAME","features":[326]},{"name":"SE_DENY_SERVICE_LOGON_NAME","features":[326]},{"name":"SE_INTERACTIVE_LOGON_NAME","features":[326]},{"name":"SE_MAX_AUDIT_PARAMETERS","features":[326]},{"name":"SE_MAX_GENERIC_AUDIT_PARAMETERS","features":[326]},{"name":"SE_NETWORK_LOGON_NAME","features":[326]},{"name":"SE_REMOTE_INTERACTIVE_LOGON_NAME","features":[326]},{"name":"SE_SERVICE_LOGON_NAME","features":[326]},{"name":"SLAcquireGenuineTicket","features":[326]},{"name":"SLActivateProduct","features":[326]},{"name":"SLClose","features":[326]},{"name":"SLConsumeRight","features":[326]},{"name":"SLDATATYPE","features":[326]},{"name":"SLDepositOfflineConfirmationId","features":[326]},{"name":"SLDepositOfflineConfirmationIdEx","features":[326]},{"name":"SLFireEvent","features":[326]},{"name":"SLGenerateOfflineInstallationId","features":[326]},{"name":"SLGenerateOfflineInstallationIdEx","features":[326]},{"name":"SLGetApplicationInformation","features":[326]},{"name":"SLGetGenuineInformation","features":[326]},{"name":"SLGetInstalledProductKeyIds","features":[326]},{"name":"SLGetLicense","features":[326]},{"name":"SLGetLicenseFileId","features":[326]},{"name":"SLGetLicenseInformation","features":[326]},{"name":"SLGetLicensingStatusInformation","features":[326]},{"name":"SLGetPKeyId","features":[326]},{"name":"SLGetPKeyInformation","features":[326]},{"name":"SLGetPolicyInformation","features":[326]},{"name":"SLGetPolicyInformationDWORD","features":[326]},{"name":"SLGetProductSkuInformation","features":[326]},{"name":"SLGetReferralInformation","features":[326]},{"name":"SLGetSLIDList","features":[326]},{"name":"SLGetServerStatus","features":[326]},{"name":"SLGetServiceInformation","features":[326]},{"name":"SLGetWindowsInformation","features":[326]},{"name":"SLGetWindowsInformationDWORD","features":[326]},{"name":"SLIDTYPE","features":[326]},{"name":"SLInstallLicense","features":[326]},{"name":"SLInstallProofOfPurchase","features":[326]},{"name":"SLIsGenuineLocal","features":[326]},{"name":"SLLICENSINGSTATUS","features":[326]},{"name":"SLOpen","features":[326]},{"name":"SLQueryLicenseValueFromApp","features":[326]},{"name":"SLREFERRALTYPE","features":[326]},{"name":"SLRegisterEvent","features":[305,326]},{"name":"SLSetCurrentProductKey","features":[326]},{"name":"SLSetGenuineInformation","features":[326]},{"name":"SLUninstallLicense","features":[326]},{"name":"SLUninstallProofOfPurchase","features":[326]},{"name":"SLUnregisterEvent","features":[305,326]},{"name":"SL_ACTIVATION_INFO_HEADER","features":[326]},{"name":"SL_ACTIVATION_TYPE","features":[326]},{"name":"SL_ACTIVATION_TYPE_ACTIVE_DIRECTORY","features":[326]},{"name":"SL_ACTIVATION_TYPE_DEFAULT","features":[326]},{"name":"SL_AD_ACTIVATION_INFO","features":[326]},{"name":"SL_CLIENTAPI_ZONE","features":[326]},{"name":"SL_DATA_BINARY","features":[326]},{"name":"SL_DATA_DWORD","features":[326]},{"name":"SL_DATA_MULTI_SZ","features":[326]},{"name":"SL_DATA_NONE","features":[326]},{"name":"SL_DATA_SUM","features":[326]},{"name":"SL_DATA_SZ","features":[326]},{"name":"SL_DEFAULT_MIGRATION_ENCRYPTOR_URI","features":[326]},{"name":"SL_EVENT_LICENSING_STATE_CHANGED","features":[326]},{"name":"SL_EVENT_POLICY_CHANGED","features":[326]},{"name":"SL_EVENT_USER_NOTIFICATION","features":[326]},{"name":"SL_E_ACTIVATION_IN_PROGRESS","features":[326]},{"name":"SL_E_APPLICATION_POLICIES_MISSING","features":[326]},{"name":"SL_E_APPLICATION_POLICIES_NOT_LOADED","features":[326]},{"name":"SL_E_AUTHN_CANT_VERIFY","features":[326]},{"name":"SL_E_AUTHN_CHALLENGE_NOT_SET","features":[326]},{"name":"SL_E_AUTHN_MISMATCHED_KEY","features":[326]},{"name":"SL_E_AUTHN_WRONG_VERSION","features":[326]},{"name":"SL_E_BASE_SKU_NOT_AVAILABLE","features":[326]},{"name":"SL_E_BIOS_KEY","features":[326]},{"name":"SL_E_BLOCKED_PRODUCT_KEY","features":[326]},{"name":"SL_E_CHPA_ACTCONFIG_ID_NOT_FOUND","features":[326]},{"name":"SL_E_CHPA_BINDING_MAPPING_NOT_FOUND","features":[326]},{"name":"SL_E_CHPA_BINDING_NOT_FOUND","features":[326]},{"name":"SL_E_CHPA_BUSINESS_RULE_INPUT_NOT_FOUND","features":[326]},{"name":"SL_E_CHPA_DATABASE_ERROR","features":[326]},{"name":"SL_E_CHPA_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[326]},{"name":"SL_E_CHPA_DIGITALMARKER_INVALID_BINDING","features":[326]},{"name":"SL_E_CHPA_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[326]},{"name":"SL_E_CHPA_DMAK_LIMIT_EXCEEDED","features":[326]},{"name":"SL_E_CHPA_DYNAMICALLY_BLOCKED_PRODUCT_KEY","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCTKEY_BINDING","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_DELETE_PRODUCT_KEY_PROPERTY","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCTKEY_BINDING","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_PROPERTY","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_INSERT_PRODUCT_KEY_RECORD","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_PROCESS_PRODUCT_KEY_BINDINGS_XML","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCTKEY_BINDING","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_PROPERTY","features":[326]},{"name":"SL_E_CHPA_FAILED_TO_UPDATE_PRODUCT_KEY_RECORD","features":[326]},{"name":"SL_E_CHPA_GENERAL_ERROR","features":[326]},{"name":"SL_E_CHPA_INVALID_ACTCONFIG_ID","features":[326]},{"name":"SL_E_CHPA_INVALID_ARGUMENT","features":[326]},{"name":"SL_E_CHPA_INVALID_BINDING","features":[326]},{"name":"SL_E_CHPA_INVALID_BINDING_URI","features":[326]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA","features":[326]},{"name":"SL_E_CHPA_INVALID_PRODUCT_DATA_ID","features":[326]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY","features":[326]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_CHAR","features":[326]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_FORMAT","features":[326]},{"name":"SL_E_CHPA_INVALID_PRODUCT_KEY_LENGTH","features":[326]},{"name":"SL_E_CHPA_MAXIMUM_UNLOCK_EXCEEDED","features":[326]},{"name":"SL_E_CHPA_MSCH_RESPONSE_NOT_AVAILABLE_VGA","features":[326]},{"name":"SL_E_CHPA_NETWORK_ERROR","features":[326]},{"name":"SL_E_CHPA_NO_RULES_TO_ACTIVATE","features":[326]},{"name":"SL_E_CHPA_NULL_VALUE_FOR_PROPERTY_NAME_OR_ID","features":[326]},{"name":"SL_E_CHPA_OEM_SLP_COA0","features":[326]},{"name":"SL_E_CHPA_OVERRIDE_REQUEST_NOT_FOUND","features":[326]},{"name":"SL_E_CHPA_PRODUCT_KEY_BEING_USED","features":[326]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED","features":[326]},{"name":"SL_E_CHPA_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[326]},{"name":"SL_E_CHPA_PRODUCT_KEY_OUT_OF_RANGE","features":[326]},{"name":"SL_E_CHPA_REISSUANCE_LIMIT_NOT_FOUND","features":[326]},{"name":"SL_E_CHPA_RESPONSE_NOT_AVAILABLE","features":[326]},{"name":"SL_E_CHPA_SYSTEM_ERROR","features":[326]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[326]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[326]},{"name":"SL_E_CHPA_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[326]},{"name":"SL_E_CHPA_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[326]},{"name":"SL_E_CHPA_UNKNOWN_PRODUCT_KEY_TYPE","features":[326]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_ID","features":[326]},{"name":"SL_E_CHPA_UNKNOWN_PROPERTY_NAME","features":[326]},{"name":"SL_E_CHPA_UNSUPPORTED_PRODUCT_KEY","features":[326]},{"name":"SL_E_CIDIID_INVALID_CHECK_DIGITS","features":[326]},{"name":"SL_E_CIDIID_INVALID_DATA","features":[326]},{"name":"SL_E_CIDIID_INVALID_DATA_LENGTH","features":[326]},{"name":"SL_E_CIDIID_INVALID_VERSION","features":[326]},{"name":"SL_E_CIDIID_MISMATCHED","features":[326]},{"name":"SL_E_CIDIID_MISMATCHED_PKEY","features":[326]},{"name":"SL_E_CIDIID_NOT_BOUND","features":[326]},{"name":"SL_E_CIDIID_NOT_DEPOSITED","features":[326]},{"name":"SL_E_CIDIID_VERSION_NOT_SUPPORTED","features":[326]},{"name":"SL_E_DATATYPE_MISMATCHED","features":[326]},{"name":"SL_E_DECRYPTION_LICENSES_NOT_AVAILABLE","features":[326]},{"name":"SL_E_DEPENDENT_PROPERTY_NOT_SET","features":[326]},{"name":"SL_E_DOWNLEVEL_SETUP_KEY","features":[326]},{"name":"SL_E_DUPLICATE_POLICY","features":[326]},{"name":"SL_E_EDITION_MISMATCHED","features":[326]},{"name":"SL_E_ENGINE_DETECTED_EXPLOIT","features":[326]},{"name":"SL_E_EUL_CONSUMPTION_FAILED","features":[326]},{"name":"SL_E_EUL_NOT_AVAILABLE","features":[326]},{"name":"SL_E_EVALUATION_FAILED","features":[326]},{"name":"SL_E_EVENT_ALREADY_REGISTERED","features":[326]},{"name":"SL_E_EVENT_NOT_REGISTERED","features":[326]},{"name":"SL_E_EXTERNAL_SIGNATURE_NOT_FOUND","features":[326]},{"name":"SL_E_GRACE_TIME_EXPIRED","features":[326]},{"name":"SL_E_HEALTH_CHECK_FAILED_MUI_FILES","features":[326]},{"name":"SL_E_HEALTH_CHECK_FAILED_NEUTRAL_FILES","features":[326]},{"name":"SL_E_HWID_CHANGED","features":[326]},{"name":"SL_E_HWID_ERROR","features":[326]},{"name":"SL_E_IA_ID_MISMATCH","features":[326]},{"name":"SL_E_IA_INVALID_VIRTUALIZATION_PLATFORM","features":[326]},{"name":"SL_E_IA_MACHINE_NOT_BOUND","features":[326]},{"name":"SL_E_IA_PARENT_PARTITION_NOT_ACTIVATED","features":[326]},{"name":"SL_E_IA_THROTTLE_LIMIT_EXCEEDED","features":[326]},{"name":"SL_E_INTERNAL_ERROR","features":[326]},{"name":"SL_E_INVALID_AD_DATA","features":[326]},{"name":"SL_E_INVALID_BINDING_BLOB","features":[326]},{"name":"SL_E_INVALID_CLIENT_TOKEN","features":[326]},{"name":"SL_E_INVALID_CONTEXT","features":[326]},{"name":"SL_E_INVALID_CONTEXT_DATA","features":[326]},{"name":"SL_E_INVALID_EVENT_ID","features":[326]},{"name":"SL_E_INVALID_FILE_HASH","features":[326]},{"name":"SL_E_INVALID_GUID","features":[326]},{"name":"SL_E_INVALID_HASH","features":[326]},{"name":"SL_E_INVALID_LICENSE","features":[326]},{"name":"SL_E_INVALID_LICENSE_STATE","features":[326]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE","features":[326]},{"name":"SL_E_INVALID_LICENSE_STATE_BREACH_GRACE_EXPIRED","features":[326]},{"name":"SL_E_INVALID_OEM_OR_VOLUME_BINDING_DATA","features":[326]},{"name":"SL_E_INVALID_OFFLINE_BLOB","features":[326]},{"name":"SL_E_INVALID_OSVERSION_TEMPLATEID","features":[326]},{"name":"SL_E_INVALID_OS_FOR_PRODUCT_KEY","features":[326]},{"name":"SL_E_INVALID_PACKAGE","features":[326]},{"name":"SL_E_INVALID_PACKAGE_VERSION","features":[326]},{"name":"SL_E_INVALID_PKEY","features":[326]},{"name":"SL_E_INVALID_PRODUCT_KEY","features":[326]},{"name":"SL_E_INVALID_PRODUCT_KEY_TYPE","features":[326]},{"name":"SL_E_INVALID_RSDP_COUNT","features":[326]},{"name":"SL_E_INVALID_RULESET_RULE","features":[326]},{"name":"SL_E_INVALID_RUNNING_MODE","features":[326]},{"name":"SL_E_INVALID_TEMPLATE_ID","features":[326]},{"name":"SL_E_INVALID_TOKEN_DATA","features":[326]},{"name":"SL_E_INVALID_USE_OF_ADD_ON_PKEY","features":[326]},{"name":"SL_E_INVALID_XML_BLOB","features":[326]},{"name":"SL_E_IP_LOCATION_FALIED","features":[326]},{"name":"SL_E_ISSUANCE_LICENSE_NOT_INSTALLED","features":[326]},{"name":"SL_E_LICENSE_AUTHORIZATION_FAILED","features":[326]},{"name":"SL_E_LICENSE_DECRYPTION_FAILED","features":[326]},{"name":"SL_E_LICENSE_FILE_NOT_INSTALLED","features":[326]},{"name":"SL_E_LICENSE_INVALID_ADDON_INFO","features":[326]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_DUPLICATED","features":[326]},{"name":"SL_E_LICENSE_MANAGEMENT_DATA_NOT_FOUND","features":[326]},{"name":"SL_E_LICENSE_NOT_BOUND","features":[326]},{"name":"SL_E_LICENSE_SERVER_URL_NOT_FOUND","features":[326]},{"name":"SL_E_LICENSE_SIGNATURE_VERIFICATION_FAILED","features":[326]},{"name":"SL_E_LUA_ACCESSDENIED","features":[326]},{"name":"SL_E_MISMATCHED_APPID","features":[326]},{"name":"SL_E_MISMATCHED_KEY_TYPES","features":[326]},{"name":"SL_E_MISMATCHED_PID","features":[326]},{"name":"SL_E_MISMATCHED_PKEY_RANGE","features":[326]},{"name":"SL_E_MISMATCHED_PRODUCT_SKU","features":[326]},{"name":"SL_E_MISMATCHED_SECURITY_PROCESSOR","features":[326]},{"name":"SL_E_MISSING_OVERRIDE_ONLY_ATTRIBUTE","features":[326]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED","features":[326]},{"name":"SL_E_NONGENUINE_GRACE_TIME_EXPIRED_2","features":[326]},{"name":"SL_E_NON_GENUINE_STATUS_LAST","features":[326]},{"name":"SL_E_NOTIFICATION_BREACH_DETECTED","features":[326]},{"name":"SL_E_NOTIFICATION_GRACE_EXPIRED","features":[326]},{"name":"SL_E_NOTIFICATION_OTHER_REASONS","features":[326]},{"name":"SL_E_NOT_ACTIVATED","features":[326]},{"name":"SL_E_NOT_EVALUATED","features":[326]},{"name":"SL_E_NOT_GENUINE","features":[326]},{"name":"SL_E_NOT_SUPPORTED","features":[326]},{"name":"SL_E_NO_PID_CONFIG_DATA","features":[326]},{"name":"SL_E_NO_PRODUCT_KEY_FOUND","features":[326]},{"name":"SL_E_OEM_KEY_EDITION_MISMATCH","features":[326]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_NOT_FOUND","features":[326]},{"name":"SL_E_OFFLINE_GENUINE_BLOB_REVOKED","features":[326]},{"name":"SL_E_OFFLINE_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[326]},{"name":"SL_E_OPERATION_NOT_ALLOWED","features":[326]},{"name":"SL_E_OUT_OF_TOLERANCE","features":[326]},{"name":"SL_E_PKEY_INTERNAL_ERROR","features":[326]},{"name":"SL_E_PKEY_INVALID_ALGORITHM","features":[326]},{"name":"SL_E_PKEY_INVALID_CONFIG","features":[326]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE1","features":[326]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE2","features":[326]},{"name":"SL_E_PKEY_INVALID_KEYCHANGE3","features":[326]},{"name":"SL_E_PKEY_INVALID_UNIQUEID","features":[326]},{"name":"SL_E_PKEY_INVALID_UPGRADE","features":[326]},{"name":"SL_E_PKEY_NOT_INSTALLED","features":[326]},{"name":"SL_E_PLUGIN_INVALID_MANIFEST","features":[326]},{"name":"SL_E_PLUGIN_NOT_REGISTERED","features":[326]},{"name":"SL_E_POLICY_CACHE_INVALID","features":[326]},{"name":"SL_E_POLICY_OTHERINFO_MISMATCH","features":[326]},{"name":"SL_E_PRODUCT_KEY_INSTALLATION_NOT_ALLOWED","features":[326]},{"name":"SL_E_PRODUCT_SKU_NOT_INSTALLED","features":[326]},{"name":"SL_E_PRODUCT_UNIQUENESS_GROUP_ID_INVALID","features":[326]},{"name":"SL_E_PROXY_KEY_NOT_FOUND","features":[326]},{"name":"SL_E_PROXY_POLICY_NOT_UPDATED","features":[326]},{"name":"SL_E_PUBLISHING_LICENSE_NOT_INSTALLED","features":[326]},{"name":"SL_E_RAC_NOT_AVAILABLE","features":[326]},{"name":"SL_E_RIGHT_NOT_CONSUMED","features":[326]},{"name":"SL_E_RIGHT_NOT_GRANTED","features":[326]},{"name":"SL_E_SECURE_STORE_ID_MISMATCH","features":[326]},{"name":"SL_E_SERVICE_RUNNING","features":[326]},{"name":"SL_E_SERVICE_STOPPING","features":[326]},{"name":"SL_E_SFS_BAD_TOKEN_EXT","features":[326]},{"name":"SL_E_SFS_BAD_TOKEN_NAME","features":[326]},{"name":"SL_E_SFS_DUPLICATE_TOKEN_NAME","features":[326]},{"name":"SL_E_SFS_FILE_READ_ERROR","features":[326]},{"name":"SL_E_SFS_FILE_WRITE_ERROR","features":[326]},{"name":"SL_E_SFS_INVALID_FD_TABLE","features":[326]},{"name":"SL_E_SFS_INVALID_FILE_POSITION","features":[326]},{"name":"SL_E_SFS_INVALID_FS_HEADER","features":[326]},{"name":"SL_E_SFS_INVALID_FS_VERSION","features":[326]},{"name":"SL_E_SFS_INVALID_SYNC","features":[326]},{"name":"SL_E_SFS_INVALID_TOKEN_DATA_HASH","features":[326]},{"name":"SL_E_SFS_INVALID_TOKEN_DESCRIPTOR","features":[326]},{"name":"SL_E_SFS_NO_ACTIVE_TRANSACTION","features":[326]},{"name":"SL_E_SFS_TOKEN_SIZE_MISMATCH","features":[326]},{"name":"SL_E_SLP_BAD_FORMAT","features":[326]},{"name":"SL_E_SLP_INVALID_MARKER_VERSION","features":[326]},{"name":"SL_E_SLP_MISSING_ACPI_SLIC","features":[326]},{"name":"SL_E_SLP_MISSING_SLP_MARKER","features":[326]},{"name":"SL_E_SLP_NOT_SIGNED","features":[326]},{"name":"SL_E_SLP_OEM_CERT_MISSING","features":[326]},{"name":"SL_E_SOFTMOD_EXPLOIT_DETECTED","features":[326]},{"name":"SL_E_SPC_NOT_AVAILABLE","features":[326]},{"name":"SL_E_SRV_AUTHORIZATION_FAILED","features":[326]},{"name":"SL_E_SRV_BUSINESS_TOKEN_ENTRY_NOT_FOUND","features":[326]},{"name":"SL_E_SRV_CLIENT_CLOCK_OUT_OF_SYNC","features":[326]},{"name":"SL_E_SRV_GENERAL_ERROR","features":[326]},{"name":"SL_E_SRV_INVALID_BINDING","features":[326]},{"name":"SL_E_SRV_INVALID_LICENSE_STRUCTURE","features":[326]},{"name":"SL_E_SRV_INVALID_PAYLOAD","features":[326]},{"name":"SL_E_SRV_INVALID_PRODUCT_KEY_LICENSE","features":[326]},{"name":"SL_E_SRV_INVALID_PUBLISH_LICENSE","features":[326]},{"name":"SL_E_SRV_INVALID_RIGHTS_ACCOUNT_LICENSE","features":[326]},{"name":"SL_E_SRV_INVALID_SECURITY_PROCESSOR_LICENSE","features":[326]},{"name":"SL_E_SRV_SERVER_PONG","features":[326]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_AUTHORIZED","features":[326]},{"name":"SL_E_STORE_UPGRADE_TOKEN_NOT_PRS_SIGNED","features":[326]},{"name":"SL_E_STORE_UPGRADE_TOKEN_REQUIRED","features":[326]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_EDITION","features":[326]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_PID","features":[326]},{"name":"SL_E_STORE_UPGRADE_TOKEN_WRONG_VERSION","features":[326]},{"name":"SL_E_TAMPER_DETECTED","features":[326]},{"name":"SL_E_TAMPER_RECOVERY_REQUIRES_ACTIVATION","features":[326]},{"name":"SL_E_TKA_CERT_CNG_NOT_AVAILABLE","features":[326]},{"name":"SL_E_TKA_CERT_NOT_FOUND","features":[326]},{"name":"SL_E_TKA_CHALLENGE_EXPIRED","features":[326]},{"name":"SL_E_TKA_CHALLENGE_MISMATCH","features":[326]},{"name":"SL_E_TKA_CRITERIA_MISMATCH","features":[326]},{"name":"SL_E_TKA_FAILED_GRANT_PARSING","features":[326]},{"name":"SL_E_TKA_GRANT_NOT_FOUND","features":[326]},{"name":"SL_E_TKA_INVALID_BLOB","features":[326]},{"name":"SL_E_TKA_INVALID_CERTIFICATE","features":[326]},{"name":"SL_E_TKA_INVALID_CERT_CHAIN","features":[326]},{"name":"SL_E_TKA_INVALID_SKU_ID","features":[326]},{"name":"SL_E_TKA_INVALID_SMARTCARD","features":[326]},{"name":"SL_E_TKA_INVALID_THUMBPRINT","features":[326]},{"name":"SL_E_TKA_SILENT_ACTIVATION_FAILURE","features":[326]},{"name":"SL_E_TKA_SOFT_CERT_DISALLOWED","features":[326]},{"name":"SL_E_TKA_SOFT_CERT_INVALID","features":[326]},{"name":"SL_E_TKA_TAMPERED_CERT_CHAIN","features":[326]},{"name":"SL_E_TKA_THUMBPRINT_CERT_NOT_FOUND","features":[326]},{"name":"SL_E_TKA_TPID_MISMATCH","features":[326]},{"name":"SL_E_TOKEN_STORE_INVALID_STATE","features":[326]},{"name":"SL_E_TOKSTO_ALREADY_INITIALIZED","features":[326]},{"name":"SL_E_TOKSTO_CANT_ACQUIRE_MUTEX","features":[326]},{"name":"SL_E_TOKSTO_CANT_CREATE_FILE","features":[326]},{"name":"SL_E_TOKSTO_CANT_CREATE_MUTEX","features":[326]},{"name":"SL_E_TOKSTO_CANT_PARSE_PROPERTIES","features":[326]},{"name":"SL_E_TOKSTO_CANT_READ_FILE","features":[326]},{"name":"SL_E_TOKSTO_CANT_WRITE_TO_FILE","features":[326]},{"name":"SL_E_TOKSTO_INVALID_FILE","features":[326]},{"name":"SL_E_TOKSTO_NOT_INITIALIZED","features":[326]},{"name":"SL_E_TOKSTO_NO_ID_SET","features":[326]},{"name":"SL_E_TOKSTO_NO_PROPERTIES","features":[326]},{"name":"SL_E_TOKSTO_NO_TOKEN_DATA","features":[326]},{"name":"SL_E_TOKSTO_PROPERTY_NOT_FOUND","features":[326]},{"name":"SL_E_TOKSTO_TOKEN_NOT_FOUND","features":[326]},{"name":"SL_E_USE_LICENSE_NOT_INSTALLED","features":[326]},{"name":"SL_E_VALIDATION_BLOB_PARAM_NOT_FOUND","features":[326]},{"name":"SL_E_VALIDATION_BLOCKED_PRODUCT_KEY","features":[326]},{"name":"SL_E_VALIDATION_INVALID_PRODUCT_KEY","features":[326]},{"name":"SL_E_VALIDITY_PERIOD_EXPIRED","features":[326]},{"name":"SL_E_VALIDITY_TIME_EXPIRED","features":[326]},{"name":"SL_E_VALUE_NOT_FOUND","features":[326]},{"name":"SL_E_VL_AD_AO_NAME_TOO_LONG","features":[326]},{"name":"SL_E_VL_AD_AO_NOT_FOUND","features":[326]},{"name":"SL_E_VL_AD_SCHEMA_VERSION_NOT_SUPPORTED","features":[326]},{"name":"SL_E_VL_BINDING_SERVICE_NOT_ENABLED","features":[326]},{"name":"SL_E_VL_BINDING_SERVICE_UNAVAILABLE","features":[326]},{"name":"SL_E_VL_INFO_PRODUCT_USER_RIGHT","features":[326]},{"name":"SL_E_VL_INVALID_TIMESTAMP","features":[326]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_ID_MISMATCH","features":[326]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_NOT_ACTIVATED","features":[326]},{"name":"SL_E_VL_KEY_MANAGEMENT_SERVICE_VM_NOT_SUPPORTED","features":[326]},{"name":"SL_E_VL_MACHINE_NOT_BOUND","features":[326]},{"name":"SL_E_VL_NOT_ENOUGH_COUNT","features":[326]},{"name":"SL_E_VL_NOT_WINDOWS_SLP","features":[326]},{"name":"SL_E_WINDOWS_INVALID_LICENSE_STATE","features":[326]},{"name":"SL_E_WINDOWS_VERSION_MISMATCH","features":[326]},{"name":"SL_GENUINE_STATE","features":[326]},{"name":"SL_GEN_STATE_INVALID_LICENSE","features":[326]},{"name":"SL_GEN_STATE_IS_GENUINE","features":[326]},{"name":"SL_GEN_STATE_LAST","features":[326]},{"name":"SL_GEN_STATE_OFFLINE","features":[326]},{"name":"SL_GEN_STATE_TAMPERED","features":[326]},{"name":"SL_ID_ALL_LICENSES","features":[326]},{"name":"SL_ID_ALL_LICENSE_FILES","features":[326]},{"name":"SL_ID_APPLICATION","features":[326]},{"name":"SL_ID_LAST","features":[326]},{"name":"SL_ID_LICENSE","features":[326]},{"name":"SL_ID_LICENSE_FILE","features":[326]},{"name":"SL_ID_PKEY","features":[326]},{"name":"SL_ID_PRODUCT_SKU","features":[326]},{"name":"SL_ID_STORE_TOKEN","features":[326]},{"name":"SL_INFO_KEY_ACTIVE_PLUGINS","features":[326]},{"name":"SL_INFO_KEY_AUTHOR","features":[326]},{"name":"SL_INFO_KEY_BIOS_OA2_MINOR_VERSION","features":[326]},{"name":"SL_INFO_KEY_BIOS_PKEY","features":[326]},{"name":"SL_INFO_KEY_BIOS_PKEY_DESCRIPTION","features":[326]},{"name":"SL_INFO_KEY_BIOS_PKEY_PKPN","features":[326]},{"name":"SL_INFO_KEY_BIOS_SLIC_STATE","features":[326]},{"name":"SL_INFO_KEY_CHANNEL","features":[326]},{"name":"SL_INFO_KEY_DESCRIPTION","features":[326]},{"name":"SL_INFO_KEY_DIGITAL_PID","features":[326]},{"name":"SL_INFO_KEY_DIGITAL_PID2","features":[326]},{"name":"SL_INFO_KEY_IS_KMS","features":[326]},{"name":"SL_INFO_KEY_IS_PRS","features":[326]},{"name":"SL_INFO_KEY_KMS_CURRENT_COUNT","features":[326]},{"name":"SL_INFO_KEY_KMS_FAILED_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_KMS_LICENSED_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_KMS_NON_GENUINE_GRACE_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_KMS_NOTIFICATION_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_KMS_OOB_GRACE_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_KMS_OOT_GRACE_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_KMS_REQUIRED_CLIENT_COUNT","features":[326]},{"name":"SL_INFO_KEY_KMS_TOTAL_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_KMS_UNLICENSED_REQUESTS","features":[326]},{"name":"SL_INFO_KEY_LICENSE_TYPE","features":[326]},{"name":"SL_INFO_KEY_LICENSOR_URL","features":[326]},{"name":"SL_INFO_KEY_NAME","features":[326]},{"name":"SL_INFO_KEY_PARTIAL_PRODUCT_KEY","features":[326]},{"name":"SL_INFO_KEY_PRODUCT_KEY_ACTIVATION_URL","features":[326]},{"name":"SL_INFO_KEY_PRODUCT_SKU_ID","features":[326]},{"name":"SL_INFO_KEY_RIGHT_ACCOUNT_ACTIVATION_URL","features":[326]},{"name":"SL_INFO_KEY_SECURE_PROCESSOR_ACTIVATION_URL","features":[326]},{"name":"SL_INFO_KEY_SECURE_STORE_ID","features":[326]},{"name":"SL_INFO_KEY_SYSTEM_STATE","features":[326]},{"name":"SL_INFO_KEY_USE_LICENSE_ACTIVATION_URL","features":[326]},{"name":"SL_INFO_KEY_VERSION","features":[326]},{"name":"SL_INTERNAL_ZONE","features":[326]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD","features":[326]},{"name":"SL_I_NONGENUINE_GRACE_PERIOD_2","features":[326]},{"name":"SL_I_OOB_GRACE_PERIOD","features":[326]},{"name":"SL_I_OOT_GRACE_PERIOD","features":[326]},{"name":"SL_I_PERPETUAL_OOB_GRACE_PERIOD","features":[326]},{"name":"SL_I_STORE_BASED_ACTIVATION","features":[326]},{"name":"SL_I_TIMEBASED_EXTENDED_GRACE_PERIOD","features":[326]},{"name":"SL_I_TIMEBASED_VALIDITY_PERIOD","features":[326]},{"name":"SL_LICENSING_STATUS","features":[326]},{"name":"SL_LICENSING_STATUS_IN_GRACE_PERIOD","features":[326]},{"name":"SL_LICENSING_STATUS_LAST","features":[326]},{"name":"SL_LICENSING_STATUS_LICENSED","features":[326]},{"name":"SL_LICENSING_STATUS_NOTIFICATION","features":[326]},{"name":"SL_LICENSING_STATUS_UNLICENSED","features":[326]},{"name":"SL_MDOLLAR_ZONE","features":[326]},{"name":"SL_MSCH_ZONE","features":[326]},{"name":"SL_NONGENUINE_UI_OPTIONS","features":[326]},{"name":"SL_PKEY_DETECT","features":[326]},{"name":"SL_PKEY_MS2005","features":[326]},{"name":"SL_PKEY_MS2009","features":[326]},{"name":"SL_POLICY_EVALUATION_MODE_ENABLED","features":[326]},{"name":"SL_PROP_ACTIVATION_VALIDATION_IN_PROGRESS","features":[326]},{"name":"SL_PROP_BRT_COMMIT","features":[326]},{"name":"SL_PROP_BRT_DATA","features":[326]},{"name":"SL_PROP_GENUINE_RESULT","features":[326]},{"name":"SL_PROP_GET_GENUINE_AUTHZ","features":[326]},{"name":"SL_PROP_GET_GENUINE_SERVER_AUTHZ","features":[326]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_HRESULT","features":[326]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_SERVER_FLAGS","features":[326]},{"name":"SL_PROP_LAST_ACT_ATTEMPT_TIME","features":[326]},{"name":"SL_PROP_NONGENUINE_GRACE_FLAG","features":[326]},{"name":"SL_REARM_REBOOT_REQUIRED","features":[326]},{"name":"SL_REFERRALTYPE_APPID","features":[326]},{"name":"SL_REFERRALTYPE_BEST_MATCH","features":[326]},{"name":"SL_REFERRALTYPE_OVERRIDE_APPID","features":[326]},{"name":"SL_REFERRALTYPE_OVERRIDE_SKUID","features":[326]},{"name":"SL_REFERRALTYPE_SKUID","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_CHECK_DIGITS","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_DATA_LENGTH","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_CIDIID_INVALID_VERSION","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_BINDING_NOT_CONFIGURED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_DIGITALMARKER_INVALID_BINDING","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_EXTENSION_LIMIT_EXCEEDED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_LIMIT_EXCEEDED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_DMAK_OVERRIDE_LIMIT_REACHED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_FREE_OFFER_EXPIRED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ACTCONFIG_ID","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_ARGUMENT","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_BINDING_URI","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_DATA_ID","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_FORMAT","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_INVALID_PRODUCT_KEY_LENGTH","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_MAXIMUM_UNLOCK_EXCEEDED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_NO_RULES_TO_ACTIVATE","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OEM_SLP_COA0","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_BLOCKED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DEVICE_THROTTLED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_DONOR_HWID_NO_ENTITLEMENT","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GENERIC_ERROR","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_GP_DISABLED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_HARDWARE_BLOCKED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_BLOCKED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_LICENSE_THROTTLED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NOT_ADMIN","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_NO_ASSOCIATION","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_BLOCKED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_OSR_USER_THROTTLED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_BLOCKED_IPLOCATION","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_PRODUCT_KEY_OUT_OF_RANGE","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_ROT_OVERRIDE_LIMIT_REACHED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_AFTER_END_DATE","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_BEFORE_START_DATE","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_ACTIVATION_NOT_AVAILABLE","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_TIMEBASED_PRODUCT_KEY_NOT_CONFIGURED","features":[326]},{"name":"SL_REMAPPING_MDOLLAR_UNSUPPORTED_PRODUCT_KEY","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_BAD_GET_INFO_QUERY","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_HANDLE_NOT_COMMITED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_ALGORITHM_TYPE","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_HANDLE","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_KEY_LENGTH","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_INVALID_LICENSE","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_NO_AES_PROVIDER","features":[326]},{"name":"SL_REMAPPING_SP_PUB_API_TOO_MANY_LOADED_ENVIRONMENTS","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_HASH_FINALIZED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCK","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_BLOCKLENGTH","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHER","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_CIPHERMODE","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_FORMAT","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_KEYLENGTH","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_PADDING","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURE","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_INVALID_SIGNATURELENGTH","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_AVAILABLE","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_KEY_NOT_FOUND","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_NOT_BLOCK_ALIGNED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_ATTRIBUTEID","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_HASHID","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_KEYID","features":[326]},{"name":"SL_REMAPPING_SP_PUB_CRYPTO_UNKNOWN_PROVIDERID","features":[326]},{"name":"SL_REMAPPING_SP_PUB_GENERAL_NOT_INITIALIZED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_IDENTICAL","features":[326]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_POLICY_CHANGED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER","features":[326]},{"name":"SL_REMAPPING_SP_PUB_KM_CACHE_TAMPER_RESTORE_FAILED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_PROXY_SOFT_TAMPER","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_MODULE_AUTHENTICATION","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TAMPER_SECURITY_PROCESSOR_PATCHED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TIMER_ALREADY_EXISTS","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TIMER_EXPIRED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NAME_SIZE_TOO_BIG","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TIMER_NOT_FOUND","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TIMER_READ_ONLY","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TRUSTED_TIME_OK","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_ACCESS_DENIED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_NOT_FOUND","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_ATTRIBUTE_READ_ONLY","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_DATA_SIZE_TOO_BIG","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_ALREADY_EXISTS","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_NOT_FOUND","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_KEY_SIZE_TOO_BIG","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_ENTRY_READ_ONLY","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_FULL","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_INVALID_HW_BINDING","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_MAX_REARM_REACHED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_IN_USE","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_NAMESPACE_NOT_FOUND","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_REARMED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_RECREATED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_GENERATION","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_BREADCRUMB_LOAD_INVALID","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_BREADCRUMB_MISMATCH","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_DATA_VERSION_MISMATCH","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_INVALID_DATA","features":[326]},{"name":"SL_REMAPPING_SP_PUB_TS_TAMPERED_NO_DATA","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_ALREADY_EXISTS","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_DEBUGGER_DETECTED","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_GENERIC_FAILURE","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_INSUFFICIENT_BUFFER","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDARG","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_INVALIDDATA","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_CALL","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_INVALID_SPAPI_VERSION","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_NO_MORE_DATA","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_PUSHKEY_CONFLICT","features":[326]},{"name":"SL_REMAPPING_SP_STATUS_SYSTEM_TIME_SKEWED","features":[326]},{"name":"SL_SERVER_ZONE","features":[326]},{"name":"SL_SYSTEM_POLICY_INFORMATION","features":[326]},{"name":"SL_SYSTEM_STATE_REBOOT_POLICY_FOUND","features":[326]},{"name":"SL_SYSTEM_STATE_TAMPERED","features":[326]},{"name":"SPP_MIGRATION_GATHER_ACTIVATED_WINDOWS_STATE","features":[326]},{"name":"SPP_MIGRATION_GATHER_ALL","features":[326]},{"name":"SPP_MIGRATION_GATHER_MIGRATABLE_APPS","features":[326]},{"name":"SP_ACCEPT_CREDENTIALS_NAME","features":[326]},{"name":"SP_PROT_ALL","features":[326]},{"name":"SP_PROT_DTLS1_0_CLIENT","features":[326]},{"name":"SP_PROT_DTLS1_0_SERVER","features":[326]},{"name":"SP_PROT_DTLS1_2_CLIENT","features":[326]},{"name":"SP_PROT_DTLS1_2_SERVER","features":[326]},{"name":"SP_PROT_DTLS_CLIENT","features":[326]},{"name":"SP_PROT_DTLS_SERVER","features":[326]},{"name":"SP_PROT_NONE","features":[326]},{"name":"SP_PROT_PCT1_CLIENT","features":[326]},{"name":"SP_PROT_PCT1_SERVER","features":[326]},{"name":"SP_PROT_SSL2_CLIENT","features":[326]},{"name":"SP_PROT_SSL2_SERVER","features":[326]},{"name":"SP_PROT_SSL3_CLIENT","features":[326]},{"name":"SP_PROT_SSL3_SERVER","features":[326]},{"name":"SP_PROT_TLS1_0_CLIENT","features":[326]},{"name":"SP_PROT_TLS1_0_SERVER","features":[326]},{"name":"SP_PROT_TLS1_1_CLIENT","features":[326]},{"name":"SP_PROT_TLS1_1_SERVER","features":[326]},{"name":"SP_PROT_TLS1_2_CLIENT","features":[326]},{"name":"SP_PROT_TLS1_2_SERVER","features":[326]},{"name":"SP_PROT_TLS1_3PLUS_CLIENT","features":[326]},{"name":"SP_PROT_TLS1_3PLUS_SERVER","features":[326]},{"name":"SP_PROT_TLS1_3_CLIENT","features":[326]},{"name":"SP_PROT_TLS1_3_SERVER","features":[326]},{"name":"SP_PROT_TLS1_CLIENT","features":[326]},{"name":"SP_PROT_TLS1_SERVER","features":[326]},{"name":"SP_PROT_UNI_CLIENT","features":[326]},{"name":"SP_PROT_UNI_SERVER","features":[326]},{"name":"SR_SECURITY_DESCRIPTOR","features":[326]},{"name":"SSL2SP_NAME","features":[326]},{"name":"SSL2SP_NAME_A","features":[326]},{"name":"SSL2SP_NAME_W","features":[326]},{"name":"SSL3SP_NAME","features":[326]},{"name":"SSL3SP_NAME_A","features":[326]},{"name":"SSL3SP_NAME_W","features":[326]},{"name":"SSL_CRACK_CERTIFICATE_FN","features":[305,326,389]},{"name":"SSL_CRACK_CERTIFICATE_NAME","features":[326]},{"name":"SSL_CREDENTIAL_CERTIFICATE","features":[326]},{"name":"SSL_EMPTY_CACHE_FN_A","features":[305,326]},{"name":"SSL_EMPTY_CACHE_FN_W","features":[305,326]},{"name":"SSL_FREE_CERTIFICATE_FN","features":[305,326,389]},{"name":"SSL_FREE_CERTIFICATE_NAME","features":[326]},{"name":"SSL_SESSION_DISABLE_RECONNECTS","features":[326]},{"name":"SSL_SESSION_ENABLE_RECONNECTS","features":[326]},{"name":"SSL_SESSION_RECONNECT","features":[326]},{"name":"SSPIPFC_CREDPROV_DO_NOT_LOAD","features":[326]},{"name":"SSPIPFC_CREDPROV_DO_NOT_SAVE","features":[326]},{"name":"SSPIPFC_NO_CHECKBOX","features":[326]},{"name":"SSPIPFC_SAVE_CRED_BY_CALLER","features":[326]},{"name":"SSPIPFC_USE_CREDUIBROKER","features":[326]},{"name":"SUBSCRIBE_GENERIC_TLS_EXTENSION","features":[326]},{"name":"SZ_ALG_MAX_SIZE","features":[326]},{"name":"SaslAcceptSecurityContext","features":[326,479]},{"name":"SaslEnumerateProfilesA","features":[326]},{"name":"SaslEnumerateProfilesW","features":[326]},{"name":"SaslGetContextOption","features":[326,479]},{"name":"SaslGetProfilePackageA","features":[326]},{"name":"SaslGetProfilePackageW","features":[326]},{"name":"SaslIdentifyPackageA","features":[326]},{"name":"SaslIdentifyPackageW","features":[326]},{"name":"SaslInitializeSecurityContextA","features":[326,479]},{"name":"SaslInitializeSecurityContextW","features":[326,479]},{"name":"SaslSetContextOption","features":[326,479]},{"name":"Sasl_AuthZIDForbidden","features":[326]},{"name":"Sasl_AuthZIDProcessed","features":[326]},{"name":"SchGetExtensionsOptions","features":[326]},{"name":"SeAdtParmTypeAccessMask","features":[326]},{"name":"SeAdtParmTypeAccessReason","features":[326]},{"name":"SeAdtParmTypeClaims","features":[326]},{"name":"SeAdtParmTypeDateTime","features":[326]},{"name":"SeAdtParmTypeDuration","features":[326]},{"name":"SeAdtParmTypeFileSpec","features":[326]},{"name":"SeAdtParmTypeGuid","features":[326]},{"name":"SeAdtParmTypeHexInt64","features":[326]},{"name":"SeAdtParmTypeHexUlong","features":[326]},{"name":"SeAdtParmTypeLogonHours","features":[326]},{"name":"SeAdtParmTypeLogonId","features":[326]},{"name":"SeAdtParmTypeLogonIdAsSid","features":[326]},{"name":"SeAdtParmTypeLogonIdEx","features":[326]},{"name":"SeAdtParmTypeLogonIdNoSid","features":[326]},{"name":"SeAdtParmTypeLuid","features":[326]},{"name":"SeAdtParmTypeMessage","features":[326]},{"name":"SeAdtParmTypeMultiSzString","features":[326]},{"name":"SeAdtParmTypeNoLogonId","features":[326]},{"name":"SeAdtParmTypeNoUac","features":[326]},{"name":"SeAdtParmTypeNone","features":[326]},{"name":"SeAdtParmTypeObjectTypes","features":[326]},{"name":"SeAdtParmTypePrivs","features":[326]},{"name":"SeAdtParmTypePtr","features":[326]},{"name":"SeAdtParmTypeResourceAttribute","features":[326]},{"name":"SeAdtParmTypeSD","features":[326]},{"name":"SeAdtParmTypeSid","features":[326]},{"name":"SeAdtParmTypeSidList","features":[326]},{"name":"SeAdtParmTypeSockAddr","features":[326]},{"name":"SeAdtParmTypeSockAddrNoPort","features":[326]},{"name":"SeAdtParmTypeStagingReason","features":[326]},{"name":"SeAdtParmTypeString","features":[326]},{"name":"SeAdtParmTypeStringList","features":[326]},{"name":"SeAdtParmTypeTime","features":[326]},{"name":"SeAdtParmTypeUlong","features":[326]},{"name":"SeAdtParmTypeUlongNoConv","features":[326]},{"name":"SeAdtParmTypeUserAccountControl","features":[326]},{"name":"SecApplicationProtocolNegotiationExt_ALPN","features":[326]},{"name":"SecApplicationProtocolNegotiationExt_NPN","features":[326]},{"name":"SecApplicationProtocolNegotiationExt_None","features":[326]},{"name":"SecApplicationProtocolNegotiationStatus_None","features":[326]},{"name":"SecApplicationProtocolNegotiationStatus_SelectedClientOnly","features":[326]},{"name":"SecApplicationProtocolNegotiationStatus_Success","features":[326]},{"name":"SecBuffer","features":[326]},{"name":"SecBufferDesc","features":[326]},{"name":"SecDelegationType","features":[326]},{"name":"SecDirectory","features":[326]},{"name":"SecFull","features":[326]},{"name":"SecNameAlternateId","features":[326]},{"name":"SecNameDN","features":[326]},{"name":"SecNameFlat","features":[326]},{"name":"SecNameSPN","features":[326]},{"name":"SecNameSamCompatible","features":[326]},{"name":"SecObject","features":[326]},{"name":"SecPkgAttrLastClientTokenMaybe","features":[326]},{"name":"SecPkgAttrLastClientTokenNo","features":[326]},{"name":"SecPkgAttrLastClientTokenYes","features":[326]},{"name":"SecPkgCallPackageMaxMessage","features":[326]},{"name":"SecPkgCallPackageMinMessage","features":[326]},{"name":"SecPkgCallPackagePinDcMessage","features":[326]},{"name":"SecPkgCallPackageTransferCredMessage","features":[326]},{"name":"SecPkgCallPackageUnpinAllDcsMessage","features":[326]},{"name":"SecPkgContext_AccessToken","features":[326]},{"name":"SecPkgContext_ApplicationProtocol","features":[326]},{"name":"SecPkgContext_AuthorityA","features":[326]},{"name":"SecPkgContext_AuthorityW","features":[326]},{"name":"SecPkgContext_AuthzID","features":[326]},{"name":"SecPkgContext_Bindings","features":[326]},{"name":"SecPkgContext_CertInfo","features":[326]},{"name":"SecPkgContext_CertificateValidationResult","features":[326]},{"name":"SecPkgContext_Certificates","features":[326]},{"name":"SecPkgContext_CipherInfo","features":[326]},{"name":"SecPkgContext_ClientCertPolicyResult","features":[326]},{"name":"SecPkgContext_ClientSpecifiedTarget","features":[326]},{"name":"SecPkgContext_ConnectionInfo","features":[326,389]},{"name":"SecPkgContext_ConnectionInfoEx","features":[326]},{"name":"SecPkgContext_CredInfo","features":[326]},{"name":"SecPkgContext_CredentialNameA","features":[326]},{"name":"SecPkgContext_CredentialNameW","features":[326]},{"name":"SecPkgContext_DceInfo","features":[326]},{"name":"SecPkgContext_EapKeyBlock","features":[326]},{"name":"SecPkgContext_EapPrfInfo","features":[326]},{"name":"SecPkgContext_EarlyStart","features":[326]},{"name":"SecPkgContext_Flags","features":[326]},{"name":"SecPkgContext_IssuerListInfoEx","features":[326,389]},{"name":"SecPkgContext_KeyInfoA","features":[326]},{"name":"SecPkgContext_KeyInfoW","features":[326]},{"name":"SecPkgContext_KeyingMaterial","features":[326]},{"name":"SecPkgContext_KeyingMaterialInfo","features":[326]},{"name":"SecPkgContext_KeyingMaterial_Inproc","features":[326]},{"name":"SecPkgContext_LastClientTokenStatus","features":[326]},{"name":"SecPkgContext_Lifespan","features":[326]},{"name":"SecPkgContext_LocalCredentialInfo","features":[326]},{"name":"SecPkgContext_LogoffTime","features":[326]},{"name":"SecPkgContext_MappedCredAttr","features":[326]},{"name":"SecPkgContext_NamesA","features":[326]},{"name":"SecPkgContext_NamesW","features":[326]},{"name":"SecPkgContext_NativeNamesA","features":[326]},{"name":"SecPkgContext_NativeNamesW","features":[326]},{"name":"SecPkgContext_NegoKeys","features":[326]},{"name":"SecPkgContext_NegoPackageInfo","features":[326]},{"name":"SecPkgContext_NegoStatus","features":[326]},{"name":"SecPkgContext_NegotiatedTlsExtensions","features":[326]},{"name":"SecPkgContext_NegotiationInfoA","features":[326]},{"name":"SecPkgContext_NegotiationInfoW","features":[326]},{"name":"SecPkgContext_PackageInfoA","features":[326]},{"name":"SecPkgContext_PackageInfoW","features":[326]},{"name":"SecPkgContext_PasswordExpiry","features":[326]},{"name":"SecPkgContext_ProtoInfoA","features":[326]},{"name":"SecPkgContext_ProtoInfoW","features":[326]},{"name":"SecPkgContext_RemoteCredentialInfo","features":[326]},{"name":"SecPkgContext_SaslContext","features":[326]},{"name":"SecPkgContext_SessionAppData","features":[326]},{"name":"SecPkgContext_SessionInfo","features":[326]},{"name":"SecPkgContext_SessionKey","features":[326]},{"name":"SecPkgContext_Sizes","features":[326]},{"name":"SecPkgContext_SrtpParameters","features":[326]},{"name":"SecPkgContext_StreamSizes","features":[326]},{"name":"SecPkgContext_SubjectAttributes","features":[326]},{"name":"SecPkgContext_SupportedSignatures","features":[326]},{"name":"SecPkgContext_Target","features":[326]},{"name":"SecPkgContext_TargetInformation","features":[326]},{"name":"SecPkgContext_TokenBinding","features":[326]},{"name":"SecPkgContext_UiInfo","features":[305,326]},{"name":"SecPkgContext_UserFlags","features":[326]},{"name":"SecPkgCredClass_Ephemeral","features":[326]},{"name":"SecPkgCredClass_Explicit","features":[326]},{"name":"SecPkgCredClass_None","features":[326]},{"name":"SecPkgCredClass_PersistedGeneric","features":[326]},{"name":"SecPkgCredClass_PersistedSpecific","features":[326]},{"name":"SecPkgCred_CipherStrengths","features":[326]},{"name":"SecPkgCred_ClientCertPolicy","features":[305,326]},{"name":"SecPkgCred_SessionTicketKey","features":[326]},{"name":"SecPkgCred_SessionTicketKeys","features":[326]},{"name":"SecPkgCred_SupportedAlgs","features":[326,389]},{"name":"SecPkgCred_SupportedProtocols","features":[326]},{"name":"SecPkgCredentials_Cert","features":[326]},{"name":"SecPkgCredentials_KdcProxySettingsW","features":[326]},{"name":"SecPkgCredentials_NamesA","features":[326]},{"name":"SecPkgCredentials_NamesW","features":[326]},{"name":"SecPkgCredentials_SSIProviderA","features":[326]},{"name":"SecPkgCredentials_SSIProviderW","features":[326]},{"name":"SecPkgInfoA","features":[326]},{"name":"SecPkgInfoW","features":[326]},{"name":"SecService","features":[326]},{"name":"SecSessionPrimaryCred","features":[326]},{"name":"SecTrafficSecret_Client","features":[326]},{"name":"SecTrafficSecret_None","features":[326]},{"name":"SecTrafficSecret_Server","features":[326]},{"name":"SecTree","features":[326]},{"name":"SecpkgContextThunks","features":[326]},{"name":"SecpkgExtraOids","features":[326]},{"name":"SecpkgGssInfo","features":[326]},{"name":"SecpkgMaxInfo","features":[326]},{"name":"SecpkgMutualAuthLevel","features":[326]},{"name":"SecpkgNego2Info","features":[326]},{"name":"SecpkgWowClientDll","features":[326]},{"name":"SecurityFunctionTableA","features":[305,326,479]},{"name":"SecurityFunctionTableW","features":[305,326,479]},{"name":"SendSAS","features":[305,326]},{"name":"SetContextAttributesA","features":[326,479]},{"name":"SetContextAttributesW","features":[326,479]},{"name":"SetCredentialsAttributesA","features":[326,479]},{"name":"SetCredentialsAttributesW","features":[326,479]},{"name":"SpAcceptCredentialsFn","features":[305,326]},{"name":"SpAcceptLsaModeContextFn","features":[305,326]},{"name":"SpAcquireCredentialsHandleFn","features":[305,326]},{"name":"SpAddCredentialsFn","features":[305,326]},{"name":"SpApplyControlTokenFn","features":[305,326]},{"name":"SpChangeAccountPasswordFn","features":[305,326]},{"name":"SpCompleteAuthTokenFn","features":[305,326]},{"name":"SpDeleteContextFn","features":[305,326]},{"name":"SpDeleteCredentialsFn","features":[305,326]},{"name":"SpExchangeMetaDataFn","features":[305,326]},{"name":"SpExportSecurityContextFn","features":[305,326]},{"name":"SpExtractTargetInfoFn","features":[305,326]},{"name":"SpFormatCredentialsFn","features":[305,326]},{"name":"SpFreeCredentialsHandleFn","features":[305,326]},{"name":"SpGetContextTokenFn","features":[305,326]},{"name":"SpGetCredUIContextFn","features":[305,326]},{"name":"SpGetCredentialsFn","features":[305,326]},{"name":"SpGetExtendedInformationFn","features":[305,326]},{"name":"SpGetInfoFn","features":[305,326]},{"name":"SpGetRemoteCredGuardLogonBufferFn","features":[305,326]},{"name":"SpGetRemoteCredGuardSupplementalCredsFn","features":[305,326]},{"name":"SpGetTbalSupplementalCredsFn","features":[305,326]},{"name":"SpGetUserInfoFn","features":[305,326]},{"name":"SpImportSecurityContextFn","features":[305,326]},{"name":"SpInitLsaModeContextFn","features":[305,326]},{"name":"SpInitUserModeContextFn","features":[305,326]},{"name":"SpInitializeFn","features":[305,326,479,340]},{"name":"SpInstanceInitFn","features":[305,326]},{"name":"SpLsaModeInitializeFn","features":[305,326,479,340]},{"name":"SpMakeSignatureFn","features":[305,326]},{"name":"SpMarshalAttributeDataFn","features":[305,326]},{"name":"SpMarshallSupplementalCredsFn","features":[305,326]},{"name":"SpQueryContextAttributesFn","features":[305,326]},{"name":"SpQueryCredentialsAttributesFn","features":[305,326]},{"name":"SpQueryMetaDataFn","features":[305,326]},{"name":"SpSaveCredentialsFn","features":[305,326]},{"name":"SpSealMessageFn","features":[305,326]},{"name":"SpSetContextAttributesFn","features":[305,326]},{"name":"SpSetCredentialsAttributesFn","features":[305,326]},{"name":"SpSetExtendedInformationFn","features":[305,326]},{"name":"SpShutdownFn","features":[305,326]},{"name":"SpUnsealMessageFn","features":[305,326]},{"name":"SpUpdateCredentialsFn","features":[305,326]},{"name":"SpUserModeInitializeFn","features":[305,326]},{"name":"SpValidateTargetInfoFn","features":[305,326]},{"name":"SpVerifySignatureFn","features":[305,326]},{"name":"SslCrackCertificate","features":[305,326,389]},{"name":"SslDeserializeCertificateStore","features":[305,326,389]},{"name":"SslDeserializeCertificateStoreFn","features":[305,326,389]},{"name":"SslEmptyCacheA","features":[305,326]},{"name":"SslEmptyCacheW","features":[305,326]},{"name":"SslFreeCertificate","features":[305,326,389]},{"name":"SslGenerateRandomBits","features":[326]},{"name":"SslGetExtensions","features":[326]},{"name":"SslGetExtensionsFn","features":[326]},{"name":"SslGetMaximumKeySize","features":[326]},{"name":"SslGetServerIdentity","features":[326]},{"name":"SslGetServerIdentityFn","features":[326]},{"name":"SspiCompareAuthIdentities","features":[305,326]},{"name":"SspiCopyAuthIdentity","features":[326]},{"name":"SspiDecryptAuthIdentity","features":[326]},{"name":"SspiDecryptAuthIdentityEx","features":[326]},{"name":"SspiEncodeAuthIdentityAsStrings","features":[326]},{"name":"SspiEncodeStringsAsAuthIdentity","features":[326]},{"name":"SspiEncryptAuthIdentity","features":[326]},{"name":"SspiEncryptAuthIdentityEx","features":[326]},{"name":"SspiExcludePackage","features":[326]},{"name":"SspiFreeAuthIdentity","features":[326]},{"name":"SspiGetTargetHostName","features":[326]},{"name":"SspiIsAuthIdentityEncrypted","features":[305,326]},{"name":"SspiIsPromptingNeeded","features":[305,326]},{"name":"SspiLocalFree","features":[326]},{"name":"SspiMarshalAuthIdentity","features":[326]},{"name":"SspiPrepareForCredRead","features":[326]},{"name":"SspiPrepareForCredWrite","features":[326]},{"name":"SspiPromptForCredentialsA","features":[326]},{"name":"SspiPromptForCredentialsW","features":[326]},{"name":"SspiSetChannelBindingFlags","features":[326]},{"name":"SspiUnmarshalAuthIdentity","features":[326]},{"name":"SspiValidateAuthIdentity","features":[326]},{"name":"SspiZeroAuthIdentity","features":[326]},{"name":"TLS1SP_NAME","features":[326]},{"name":"TLS1SP_NAME_A","features":[326]},{"name":"TLS1SP_NAME_W","features":[326]},{"name":"TLS1_ALERT_ACCESS_DENIED","features":[326]},{"name":"TLS1_ALERT_BAD_CERTIFICATE","features":[326]},{"name":"TLS1_ALERT_BAD_RECORD_MAC","features":[326]},{"name":"TLS1_ALERT_CERTIFICATE_EXPIRED","features":[326]},{"name":"TLS1_ALERT_CERTIFICATE_REVOKED","features":[326]},{"name":"TLS1_ALERT_CERTIFICATE_UNKNOWN","features":[326]},{"name":"TLS1_ALERT_CLOSE_NOTIFY","features":[326]},{"name":"TLS1_ALERT_DECODE_ERROR","features":[326]},{"name":"TLS1_ALERT_DECOMPRESSION_FAIL","features":[326]},{"name":"TLS1_ALERT_DECRYPTION_FAILED","features":[326]},{"name":"TLS1_ALERT_DECRYPT_ERROR","features":[326]},{"name":"TLS1_ALERT_EXPORT_RESTRICTION","features":[326]},{"name":"TLS1_ALERT_FATAL","features":[326]},{"name":"TLS1_ALERT_HANDSHAKE_FAILURE","features":[326]},{"name":"TLS1_ALERT_ILLEGAL_PARAMETER","features":[326]},{"name":"TLS1_ALERT_INSUFFIENT_SECURITY","features":[326]},{"name":"TLS1_ALERT_INTERNAL_ERROR","features":[326]},{"name":"TLS1_ALERT_NO_APP_PROTOCOL","features":[326]},{"name":"TLS1_ALERT_NO_RENEGOTIATION","features":[326]},{"name":"TLS1_ALERT_PROTOCOL_VERSION","features":[326]},{"name":"TLS1_ALERT_RECORD_OVERFLOW","features":[326]},{"name":"TLS1_ALERT_UNEXPECTED_MESSAGE","features":[326]},{"name":"TLS1_ALERT_UNKNOWN_CA","features":[326]},{"name":"TLS1_ALERT_UNKNOWN_PSK_IDENTITY","features":[326]},{"name":"TLS1_ALERT_UNSUPPORTED_CERT","features":[326]},{"name":"TLS1_ALERT_UNSUPPORTED_EXT","features":[326]},{"name":"TLS1_ALERT_USER_CANCELED","features":[326]},{"name":"TLS1_ALERT_WARNING","features":[326]},{"name":"TLS_EXTENSION_SUBSCRIPTION","features":[326]},{"name":"TLS_PARAMETERS","features":[326]},{"name":"TLS_PARAMS_OPTIONAL","features":[326]},{"name":"TOKENBINDING_EXTENSION_FORMAT","features":[326]},{"name":"TOKENBINDING_EXTENSION_FORMAT_UNDEFINED","features":[326]},{"name":"TOKENBINDING_IDENTIFIER","features":[326]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE","features":[326]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ANYEXISTING","features":[326]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_ECDSAP256","features":[326]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PKCS","features":[326]},{"name":"TOKENBINDING_KEY_PARAMETERS_TYPE_RSA2048_PSS","features":[326]},{"name":"TOKENBINDING_KEY_TYPES","features":[326]},{"name":"TOKENBINDING_RESULT_DATA","features":[326]},{"name":"TOKENBINDING_RESULT_LIST","features":[326]},{"name":"TOKENBINDING_TYPE","features":[326]},{"name":"TOKENBINDING_TYPE_PROVIDED","features":[326]},{"name":"TOKENBINDING_TYPE_REFERRED","features":[326]},{"name":"TRUSTED_CONTROLLERS_INFO","features":[326]},{"name":"TRUSTED_DOMAIN_AUTH_INFORMATION","features":[326]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION","features":[326]},{"name":"TRUSTED_DOMAIN_FULL_INFORMATION2","features":[326]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX","features":[326]},{"name":"TRUSTED_DOMAIN_INFORMATION_EX2","features":[326]},{"name":"TRUSTED_DOMAIN_NAME_INFO","features":[326]},{"name":"TRUSTED_DOMAIN_SUPPORTED_ENCRYPTION_TYPES","features":[326]},{"name":"TRUSTED_DOMAIN_TRUST_ATTRIBUTES","features":[326]},{"name":"TRUSTED_DOMAIN_TRUST_DIRECTION","features":[326]},{"name":"TRUSTED_DOMAIN_TRUST_TYPE","features":[326]},{"name":"TRUSTED_INFORMATION_CLASS","features":[326]},{"name":"TRUSTED_PASSWORD_INFO","features":[326]},{"name":"TRUSTED_POSIX_OFFSET_INFO","features":[326]},{"name":"TRUSTED_QUERY_AUTH","features":[326]},{"name":"TRUSTED_QUERY_CONTROLLERS","features":[326]},{"name":"TRUSTED_QUERY_DOMAIN_NAME","features":[326]},{"name":"TRUSTED_QUERY_POSIX","features":[326]},{"name":"TRUSTED_SET_AUTH","features":[326]},{"name":"TRUSTED_SET_CONTROLLERS","features":[326]},{"name":"TRUSTED_SET_POSIX","features":[326]},{"name":"TRUST_ATTRIBUTES_USER","features":[326]},{"name":"TRUST_ATTRIBUTES_VALID","features":[326]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION","features":[326]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_ENABLE_TGT_DELEGATION","features":[326]},{"name":"TRUST_ATTRIBUTE_CROSS_ORGANIZATION_NO_TGT_DELEGATION","features":[326]},{"name":"TRUST_ATTRIBUTE_DISABLE_AUTH_TARGET_VALIDATION","features":[326]},{"name":"TRUST_ATTRIBUTE_FILTER_SIDS","features":[326]},{"name":"TRUST_ATTRIBUTE_FOREST_TRANSITIVE","features":[326]},{"name":"TRUST_ATTRIBUTE_NON_TRANSITIVE","features":[326]},{"name":"TRUST_ATTRIBUTE_PIM_TRUST","features":[326]},{"name":"TRUST_ATTRIBUTE_QUARANTINED_DOMAIN","features":[326]},{"name":"TRUST_ATTRIBUTE_TREAT_AS_EXTERNAL","features":[326]},{"name":"TRUST_ATTRIBUTE_TREE_PARENT","features":[326]},{"name":"TRUST_ATTRIBUTE_TREE_ROOT","features":[326]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_AES_KEYS","features":[326]},{"name":"TRUST_ATTRIBUTE_TRUST_USES_RC4_ENCRYPTION","features":[326]},{"name":"TRUST_ATTRIBUTE_UPLEVEL_ONLY","features":[326]},{"name":"TRUST_ATTRIBUTE_WITHIN_FOREST","features":[326]},{"name":"TRUST_AUTH_TYPE_CLEAR","features":[326]},{"name":"TRUST_AUTH_TYPE_NONE","features":[326]},{"name":"TRUST_AUTH_TYPE_NT4OWF","features":[326]},{"name":"TRUST_AUTH_TYPE_VERSION","features":[326]},{"name":"TRUST_DIRECTION_BIDIRECTIONAL","features":[326]},{"name":"TRUST_DIRECTION_DISABLED","features":[326]},{"name":"TRUST_DIRECTION_INBOUND","features":[326]},{"name":"TRUST_DIRECTION_OUTBOUND","features":[326]},{"name":"TRUST_TYPE_AAD","features":[326]},{"name":"TRUST_TYPE_DCE","features":[326]},{"name":"TRUST_TYPE_DOWNLEVEL","features":[326]},{"name":"TRUST_TYPE_MIT","features":[326]},{"name":"TRUST_TYPE_UPLEVEL","features":[326]},{"name":"TlsHashAlgorithm_Md5","features":[326]},{"name":"TlsHashAlgorithm_None","features":[326]},{"name":"TlsHashAlgorithm_Sha1","features":[326]},{"name":"TlsHashAlgorithm_Sha224","features":[326]},{"name":"TlsHashAlgorithm_Sha256","features":[326]},{"name":"TlsHashAlgorithm_Sha384","features":[326]},{"name":"TlsHashAlgorithm_Sha512","features":[326]},{"name":"TlsParametersCngAlgUsageCertSig","features":[326]},{"name":"TlsParametersCngAlgUsageCipher","features":[326]},{"name":"TlsParametersCngAlgUsageDigest","features":[326]},{"name":"TlsParametersCngAlgUsageKeyExchange","features":[326]},{"name":"TlsParametersCngAlgUsageSignature","features":[326]},{"name":"TlsSignatureAlgorithm_Anonymous","features":[326]},{"name":"TlsSignatureAlgorithm_Dsa","features":[326]},{"name":"TlsSignatureAlgorithm_Ecdsa","features":[326]},{"name":"TlsSignatureAlgorithm_Rsa","features":[326]},{"name":"TokenBindingDeleteAllBindings","features":[326]},{"name":"TokenBindingDeleteBinding","features":[326]},{"name":"TokenBindingGenerateBinding","features":[326]},{"name":"TokenBindingGenerateID","features":[326]},{"name":"TokenBindingGenerateIDForUri","features":[326]},{"name":"TokenBindingGenerateMessage","features":[326]},{"name":"TokenBindingGetHighestSupportedVersion","features":[326]},{"name":"TokenBindingGetKeyTypesClient","features":[326]},{"name":"TokenBindingGetKeyTypesServer","features":[326]},{"name":"TokenBindingVerifyMessage","features":[326]},{"name":"TranslateNameA","features":[305,326]},{"name":"TranslateNameW","features":[305,326]},{"name":"TrustedControllersInformation","features":[326]},{"name":"TrustedDomainAuthInformation","features":[326]},{"name":"TrustedDomainAuthInformationInternal","features":[326]},{"name":"TrustedDomainAuthInformationInternalAes","features":[326]},{"name":"TrustedDomainFullInformation","features":[326]},{"name":"TrustedDomainFullInformation2Internal","features":[326]},{"name":"TrustedDomainFullInformationInternal","features":[326]},{"name":"TrustedDomainFullInformationInternalAes","features":[326]},{"name":"TrustedDomainInformationBasic","features":[326]},{"name":"TrustedDomainInformationEx","features":[326]},{"name":"TrustedDomainInformationEx2Internal","features":[326]},{"name":"TrustedDomainNameInformation","features":[326]},{"name":"TrustedDomainSupportedEncryptionTypes","features":[326]},{"name":"TrustedPasswordInformation","features":[326]},{"name":"TrustedPosixOffsetInformation","features":[326]},{"name":"UNDERSTANDS_LONG_NAMES","features":[326]},{"name":"UNISP_NAME","features":[326]},{"name":"UNISP_NAME_A","features":[326]},{"name":"UNISP_NAME_W","features":[326]},{"name":"UNISP_RPC_ID","features":[326]},{"name":"USER_ACCOUNT_AUTO_LOCKED","features":[326]},{"name":"USER_ACCOUNT_DISABLED","features":[326]},{"name":"USER_ALL_INFORMATION","features":[305,326]},{"name":"USER_ALL_PARAMETERS","features":[326]},{"name":"USER_DONT_EXPIRE_PASSWORD","features":[326]},{"name":"USER_DONT_REQUIRE_PREAUTH","features":[326]},{"name":"USER_ENCRYPTED_TEXT_PASSWORD_ALLOWED","features":[326]},{"name":"USER_HOME_DIRECTORY_REQUIRED","features":[326]},{"name":"USER_INTERDOMAIN_TRUST_ACCOUNT","features":[326]},{"name":"USER_MNS_LOGON_ACCOUNT","features":[326]},{"name":"USER_NORMAL_ACCOUNT","features":[326]},{"name":"USER_NOT_DELEGATED","features":[326]},{"name":"USER_NO_AUTH_DATA_REQUIRED","features":[326]},{"name":"USER_PARTIAL_SECRETS_ACCOUNT","features":[326]},{"name":"USER_PASSWORD_EXPIRED","features":[326]},{"name":"USER_PASSWORD_NOT_REQUIRED","features":[326]},{"name":"USER_SERVER_TRUST_ACCOUNT","features":[326]},{"name":"USER_SESSION_KEY","features":[326,480]},{"name":"USER_SMARTCARD_REQUIRED","features":[326]},{"name":"USER_TEMP_DUPLICATE_ACCOUNT","features":[326]},{"name":"USER_TRUSTED_FOR_DELEGATION","features":[326]},{"name":"USER_TRUSTED_TO_AUTHENTICATE_FOR_DELEGATION","features":[326]},{"name":"USER_USE_AES_KEYS","features":[326]},{"name":"USER_USE_DES_KEY_ONLY","features":[326]},{"name":"USER_WORKSTATION_TRUST_ACCOUNT","features":[326]},{"name":"VERIFY_SIGNATURE_FN","features":[326,479]},{"name":"VerifySignature","features":[326,479]},{"name":"WDIGEST_SP_NAME","features":[326]},{"name":"WDIGEST_SP_NAME_A","features":[326]},{"name":"WDIGEST_SP_NAME_W","features":[326]},{"name":"WINDOWS_SLID","features":[326]},{"name":"X509Certificate","features":[305,326,389]},{"name":"_FACILITY_WINDOWS_STORE","features":[326]},{"name":"_HMAPPER","features":[326]},{"name":"eTlsAlgorithmUsage","features":[326]},{"name":"eTlsHashAlgorithm","features":[326]},{"name":"eTlsSignatureAlgorithm","features":[326]}],"484":[{"name":"ACCOUNT_STATE","features":[481]},{"name":"AsyncIAssociatedIdentityProvider","features":[481]},{"name":"AsyncIConnectedIdentityProvider","features":[481]},{"name":"AsyncIIdentityAdvise","features":[481]},{"name":"AsyncIIdentityAuthentication","features":[481]},{"name":"AsyncIIdentityProvider","features":[481]},{"name":"AsyncIIdentityStore","features":[481]},{"name":"AsyncIIdentityStoreEx","features":[481]},{"name":"CIdentityProfileHandler","features":[481]},{"name":"CONNECTING","features":[481]},{"name":"CONNECT_COMPLETED","features":[481]},{"name":"CoClassIdentityStore","features":[481]},{"name":"IAssociatedIdentityProvider","features":[481]},{"name":"IConnectedIdentityProvider","features":[481]},{"name":"IDENTITIES_ALL","features":[481]},{"name":"IDENTITIES_ME_ONLY","features":[481]},{"name":"IDENTITY_ASSOCIATED","features":[481]},{"name":"IDENTITY_CONNECTED","features":[481]},{"name":"IDENTITY_CREATED","features":[481]},{"name":"IDENTITY_DELETED","features":[481]},{"name":"IDENTITY_DISASSOCIATED","features":[481]},{"name":"IDENTITY_DISCONNECTED","features":[481]},{"name":"IDENTITY_IMPORTED","features":[481]},{"name":"IDENTITY_KEYWORD_ASSOCIATED","features":[481]},{"name":"IDENTITY_KEYWORD_CONNECTED","features":[481]},{"name":"IDENTITY_KEYWORD_HOMEGROUP","features":[481]},{"name":"IDENTITY_KEYWORD_LOCAL","features":[481]},{"name":"IDENTITY_PROPCHANGED","features":[481]},{"name":"IDENTITY_TYPE","features":[481]},{"name":"IDENTITY_URL","features":[481]},{"name":"IDENTITY_URL_ACCOUNT_SETTINGS","features":[481]},{"name":"IDENTITY_URL_CHANGE_PASSWORD_WIZARD","features":[481]},{"name":"IDENTITY_URL_CONNECT_WIZARD","features":[481]},{"name":"IDENTITY_URL_CREATE_ACCOUNT_WIZARD","features":[481]},{"name":"IDENTITY_URL_IFEXISTS_WIZARD","features":[481]},{"name":"IDENTITY_URL_RESTORE_WIZARD","features":[481]},{"name":"IDENTITY_URL_SIGN_IN_WIZARD","features":[481]},{"name":"IIdentityAdvise","features":[481]},{"name":"IIdentityAuthentication","features":[481]},{"name":"IIdentityProvider","features":[481]},{"name":"IIdentityStore","features":[481]},{"name":"IIdentityStoreEx","features":[481]},{"name":"IdentityUpdateEvent","features":[481]},{"name":"NOT_CONNECTED","features":[481]},{"name":"OID_OAssociatedIdentityProviderObject","features":[481]},{"name":"STR_COMPLETE_ACCOUNT","features":[481]},{"name":"STR_MODERN_SETTINGS_ADD_USER","features":[481]},{"name":"STR_NTH_USER_FIRST_AUTH","features":[481]},{"name":"STR_OUT_OF_BOX_EXPERIENCE","features":[481]},{"name":"STR_OUT_OF_BOX_UPGRADE_EXPERIENCE","features":[481]},{"name":"STR_PROPERTY_STORE","features":[481]},{"name":"STR_USER_NAME","features":[481]}],"485":[{"name":"ACCCTRL_DEFAULT_PROVIDER","features":[482]},{"name":"ACCCTRL_DEFAULT_PROVIDERA","features":[482]},{"name":"ACCCTRL_DEFAULT_PROVIDERW","features":[482]},{"name":"ACCESS_MODE","features":[482]},{"name":"ACTRL_ACCESSA","features":[482]},{"name":"ACTRL_ACCESSW","features":[482]},{"name":"ACTRL_ACCESS_ALLOWED","features":[482]},{"name":"ACTRL_ACCESS_DENIED","features":[482]},{"name":"ACTRL_ACCESS_ENTRYA","features":[482]},{"name":"ACTRL_ACCESS_ENTRYW","features":[482]},{"name":"ACTRL_ACCESS_ENTRY_ACCESS_FLAGS","features":[482]},{"name":"ACTRL_ACCESS_ENTRY_LISTA","features":[482]},{"name":"ACTRL_ACCESS_ENTRY_LISTW","features":[482]},{"name":"ACTRL_ACCESS_INFOA","features":[482]},{"name":"ACTRL_ACCESS_INFOW","features":[482]},{"name":"ACTRL_ACCESS_NO_OPTIONS","features":[482]},{"name":"ACTRL_ACCESS_PROTECTED","features":[482]},{"name":"ACTRL_ACCESS_SUPPORTS_OBJECT_ENTRIES","features":[482]},{"name":"ACTRL_AUDIT_FAILURE","features":[482]},{"name":"ACTRL_AUDIT_SUCCESS","features":[482]},{"name":"ACTRL_CHANGE_ACCESS","features":[482]},{"name":"ACTRL_CHANGE_OWNER","features":[482]},{"name":"ACTRL_CONTROL_INFOA","features":[482]},{"name":"ACTRL_CONTROL_INFOW","features":[482]},{"name":"ACTRL_DELETE","features":[482]},{"name":"ACTRL_DIR_CREATE_CHILD","features":[482]},{"name":"ACTRL_DIR_CREATE_OBJECT","features":[482]},{"name":"ACTRL_DIR_DELETE_CHILD","features":[482]},{"name":"ACTRL_DIR_LIST","features":[482]},{"name":"ACTRL_DIR_TRAVERSE","features":[482]},{"name":"ACTRL_FILE_APPEND","features":[482]},{"name":"ACTRL_FILE_CREATE_PIPE","features":[482]},{"name":"ACTRL_FILE_EXECUTE","features":[482]},{"name":"ACTRL_FILE_READ","features":[482]},{"name":"ACTRL_FILE_READ_ATTRIB","features":[482]},{"name":"ACTRL_FILE_READ_PROP","features":[482]},{"name":"ACTRL_FILE_WRITE","features":[482]},{"name":"ACTRL_FILE_WRITE_ATTRIB","features":[482]},{"name":"ACTRL_FILE_WRITE_PROP","features":[482]},{"name":"ACTRL_KERNEL_ALERT","features":[482]},{"name":"ACTRL_KERNEL_CONTROL","features":[482]},{"name":"ACTRL_KERNEL_DIMPERSONATE","features":[482]},{"name":"ACTRL_KERNEL_DUP_HANDLE","features":[482]},{"name":"ACTRL_KERNEL_GET_CONTEXT","features":[482]},{"name":"ACTRL_KERNEL_GET_INFO","features":[482]},{"name":"ACTRL_KERNEL_IMPERSONATE","features":[482]},{"name":"ACTRL_KERNEL_PROCESS","features":[482]},{"name":"ACTRL_KERNEL_SET_CONTEXT","features":[482]},{"name":"ACTRL_KERNEL_SET_INFO","features":[482]},{"name":"ACTRL_KERNEL_TERMINATE","features":[482]},{"name":"ACTRL_KERNEL_THREAD","features":[482]},{"name":"ACTRL_KERNEL_TOKEN","features":[482]},{"name":"ACTRL_KERNEL_VM","features":[482]},{"name":"ACTRL_KERNEL_VM_READ","features":[482]},{"name":"ACTRL_KERNEL_VM_WRITE","features":[482]},{"name":"ACTRL_OVERLAPPED","features":[305,482]},{"name":"ACTRL_PERM_1","features":[482]},{"name":"ACTRL_PERM_10","features":[482]},{"name":"ACTRL_PERM_11","features":[482]},{"name":"ACTRL_PERM_12","features":[482]},{"name":"ACTRL_PERM_13","features":[482]},{"name":"ACTRL_PERM_14","features":[482]},{"name":"ACTRL_PERM_15","features":[482]},{"name":"ACTRL_PERM_16","features":[482]},{"name":"ACTRL_PERM_17","features":[482]},{"name":"ACTRL_PERM_18","features":[482]},{"name":"ACTRL_PERM_19","features":[482]},{"name":"ACTRL_PERM_2","features":[482]},{"name":"ACTRL_PERM_20","features":[482]},{"name":"ACTRL_PERM_3","features":[482]},{"name":"ACTRL_PERM_4","features":[482]},{"name":"ACTRL_PERM_5","features":[482]},{"name":"ACTRL_PERM_6","features":[482]},{"name":"ACTRL_PERM_7","features":[482]},{"name":"ACTRL_PERM_8","features":[482]},{"name":"ACTRL_PERM_9","features":[482]},{"name":"ACTRL_PRINT_JADMIN","features":[482]},{"name":"ACTRL_PRINT_PADMIN","features":[482]},{"name":"ACTRL_PRINT_PUSE","features":[482]},{"name":"ACTRL_PRINT_SADMIN","features":[482]},{"name":"ACTRL_PRINT_SLIST","features":[482]},{"name":"ACTRL_PROPERTY_ENTRYA","features":[482]},{"name":"ACTRL_PROPERTY_ENTRYW","features":[482]},{"name":"ACTRL_READ_CONTROL","features":[482]},{"name":"ACTRL_REG_CREATE_CHILD","features":[482]},{"name":"ACTRL_REG_LINK","features":[482]},{"name":"ACTRL_REG_LIST","features":[482]},{"name":"ACTRL_REG_NOTIFY","features":[482]},{"name":"ACTRL_REG_QUERY","features":[482]},{"name":"ACTRL_REG_SET","features":[482]},{"name":"ACTRL_RESERVED","features":[482]},{"name":"ACTRL_STD_RIGHTS_ALL","features":[482]},{"name":"ACTRL_SVC_GET_INFO","features":[482]},{"name":"ACTRL_SVC_INTERROGATE","features":[482]},{"name":"ACTRL_SVC_LIST","features":[482]},{"name":"ACTRL_SVC_PAUSE","features":[482]},{"name":"ACTRL_SVC_SET_INFO","features":[482]},{"name":"ACTRL_SVC_START","features":[482]},{"name":"ACTRL_SVC_STATUS","features":[482]},{"name":"ACTRL_SVC_STOP","features":[482]},{"name":"ACTRL_SVC_UCONTROL","features":[482]},{"name":"ACTRL_SYNCHRONIZE","features":[482]},{"name":"ACTRL_SYSTEM_ACCESS","features":[482]},{"name":"ACTRL_WIN_CLIPBRD","features":[482]},{"name":"ACTRL_WIN_CREATE","features":[482]},{"name":"ACTRL_WIN_EXIT","features":[482]},{"name":"ACTRL_WIN_GLOBAL_ATOMS","features":[482]},{"name":"ACTRL_WIN_LIST","features":[482]},{"name":"ACTRL_WIN_LIST_DESK","features":[482]},{"name":"ACTRL_WIN_READ_ATTRIBS","features":[482]},{"name":"ACTRL_WIN_SCREEN","features":[482]},{"name":"ACTRL_WIN_WRITE_ATTRIBS","features":[482]},{"name":"APF_AuditFailure","features":[482]},{"name":"APF_AuditSuccess","features":[482]},{"name":"APF_ValidFlags","features":[482]},{"name":"APT_Guid","features":[482]},{"name":"APT_Int64","features":[482]},{"name":"APT_IpAddress","features":[482]},{"name":"APT_LogonId","features":[482]},{"name":"APT_LogonIdWithSid","features":[482]},{"name":"APT_Luid","features":[482]},{"name":"APT_None","features":[482]},{"name":"APT_ObjectTypeList","features":[482]},{"name":"APT_Pointer","features":[482]},{"name":"APT_Sid","features":[482]},{"name":"APT_String","features":[482]},{"name":"APT_Time","features":[482]},{"name":"APT_Ulong","features":[482]},{"name":"AP_ParamTypeBits","features":[482]},{"name":"AP_ParamTypeMask","features":[482]},{"name":"AUDIT_IP_ADDRESS","features":[482]},{"name":"AUDIT_OBJECT_TYPE","features":[482]},{"name":"AUDIT_OBJECT_TYPES","features":[482]},{"name":"AUDIT_PARAM","features":[482]},{"name":"AUDIT_PARAMS","features":[482]},{"name":"AUDIT_PARAM_TYPE","features":[482]},{"name":"AUDIT_TYPE_LEGACY","features":[482]},{"name":"AUDIT_TYPE_WMI","features":[482]},{"name":"AUTHZP_WPD_EVENT","features":[482]},{"name":"AUTHZ_ACCESS_CHECK_FLAGS","features":[482]},{"name":"AUTHZ_ACCESS_CHECK_NO_DEEP_COPY_SD","features":[482]},{"name":"AUTHZ_ACCESS_CHECK_RESULTS_HANDLE","features":[482]},{"name":"AUTHZ_ACCESS_REPLY","features":[482]},{"name":"AUTHZ_ACCESS_REQUEST","features":[482]},{"name":"AUTHZ_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[482]},{"name":"AUTHZ_AUDIT_EVENT_HANDLE","features":[482]},{"name":"AUTHZ_AUDIT_EVENT_INFORMATION_CLASS","features":[482]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_HANDLE","features":[482]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_LEGACY","features":[482]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_OLD","features":[305,482]},{"name":"AUTHZ_AUDIT_EVENT_TYPE_UNION","features":[482]},{"name":"AUTHZ_AUDIT_INSTANCE_INFORMATION","features":[482]},{"name":"AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE","features":[482]},{"name":"AUTHZ_CLIENT_CONTEXT_HANDLE","features":[482]},{"name":"AUTHZ_COMPUTE_PRIVILEGES","features":[482]},{"name":"AUTHZ_CONTEXT_INFORMATION_CLASS","features":[482]},{"name":"AUTHZ_FLAG_ALLOW_MULTIPLE_SOURCE_INSTANCES","features":[482]},{"name":"AUTHZ_GENERATE_FAILURE_AUDIT","features":[482]},{"name":"AUTHZ_GENERATE_RESULTS","features":[482]},{"name":"AUTHZ_GENERATE_SUCCESS_AUDIT","features":[482]},{"name":"AUTHZ_INITIALIZE_OBJECT_ACCESS_AUDIT_EVENT_FLAGS","features":[482]},{"name":"AUTHZ_INIT_INFO","features":[305,482]},{"name":"AUTHZ_INIT_INFO_VERSION_V1","features":[482]},{"name":"AUTHZ_MIGRATED_LEGACY_PUBLISHER","features":[482]},{"name":"AUTHZ_NO_ALLOC_STRINGS","features":[482]},{"name":"AUTHZ_NO_FAILURE_AUDIT","features":[482]},{"name":"AUTHZ_NO_SUCCESS_AUDIT","features":[482]},{"name":"AUTHZ_REGISTRATION_OBJECT_TYPE_NAME_OFFSET","features":[482]},{"name":"AUTHZ_REQUIRE_S4U_LOGON","features":[482]},{"name":"AUTHZ_RESOURCE_MANAGER_FLAGS","features":[482]},{"name":"AUTHZ_RESOURCE_MANAGER_HANDLE","features":[482]},{"name":"AUTHZ_RM_FLAG_INITIALIZE_UNDER_IMPERSONATION","features":[482]},{"name":"AUTHZ_RM_FLAG_NO_AUDIT","features":[482]},{"name":"AUTHZ_RM_FLAG_NO_CENTRAL_ACCESS_POLICIES","features":[482]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT","features":[482]},{"name":"AUTHZ_RPC_INIT_INFO_CLIENT_VERSION_V1","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FLAGS","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_FQBN_VALUE","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_NON_INHERITABLE","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OCTET_STRING_VALUE","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_ADD","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_DELETE","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_NONE","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_OPERATION_REPLACE_ALL","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_BOOLEAN","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_FQBN","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INT64","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_OCTET_STRING","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_SID","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_STRING","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_TYPE_UINT64","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_V1","features":[482]},{"name":"AUTHZ_SECURITY_ATTRIBUTE_VALUE_CASE_SENSITIVE","features":[482]},{"name":"AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE","features":[482]},{"name":"AUTHZ_SID_OPERATION","features":[482]},{"name":"AUTHZ_SID_OPERATION_ADD","features":[482]},{"name":"AUTHZ_SID_OPERATION_DELETE","features":[482]},{"name":"AUTHZ_SID_OPERATION_NONE","features":[482]},{"name":"AUTHZ_SID_OPERATION_REPLACE","features":[482]},{"name":"AUTHZ_SID_OPERATION_REPLACE_ALL","features":[482]},{"name":"AUTHZ_SKIP_TOKEN_GROUPS","features":[482]},{"name":"AUTHZ_SOURCE_SCHEMA_REGISTRATION","features":[482]},{"name":"AUTHZ_WPD_CATEGORY_FLAG","features":[482]},{"name":"AZ_AZSTORE_DEFAULT_DOMAIN_TIMEOUT","features":[482]},{"name":"AZ_AZSTORE_DEFAULT_MAX_SCRIPT_ENGINES","features":[482]},{"name":"AZ_AZSTORE_DEFAULT_SCRIPT_ENGINE_TIMEOUT","features":[482]},{"name":"AZ_AZSTORE_FLAG_AUDIT_IS_CRITICAL","features":[482]},{"name":"AZ_AZSTORE_FLAG_BATCH_UPDATE","features":[482]},{"name":"AZ_AZSTORE_FLAG_CREATE","features":[482]},{"name":"AZ_AZSTORE_FLAG_MANAGE_ONLY_PASSIVE_SUBMIT","features":[482]},{"name":"AZ_AZSTORE_FLAG_MANAGE_STORE_ONLY","features":[482]},{"name":"AZ_AZSTORE_FORCE_APPLICATION_CLOSE","features":[482]},{"name":"AZ_AZSTORE_MIN_DOMAIN_TIMEOUT","features":[482]},{"name":"AZ_AZSTORE_MIN_SCRIPT_ENGINE_TIMEOUT","features":[482]},{"name":"AZ_AZSTORE_NT6_FUNCTION_LEVEL","features":[482]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUPS_STORE_LEVEL_ONLY","features":[482]},{"name":"AZ_CLIENT_CONTEXT_GET_GROUP_RECURSIVE","features":[482]},{"name":"AZ_CLIENT_CONTEXT_SKIP_GROUP","features":[482]},{"name":"AZ_CLIENT_CONTEXT_SKIP_LDAP_QUERY","features":[482]},{"name":"AZ_GROUPTYPE_BASIC","features":[482]},{"name":"AZ_GROUPTYPE_BIZRULE","features":[482]},{"name":"AZ_GROUPTYPE_LDAP_QUERY","features":[482]},{"name":"AZ_MAX_APPLICATION_DATA_LENGTH","features":[482]},{"name":"AZ_MAX_APPLICATION_NAME_LENGTH","features":[482]},{"name":"AZ_MAX_APPLICATION_VERSION_LENGTH","features":[482]},{"name":"AZ_MAX_BIZRULE_STRING","features":[482]},{"name":"AZ_MAX_DESCRIPTION_LENGTH","features":[482]},{"name":"AZ_MAX_GROUP_BIZRULE_IMPORTED_PATH_LENGTH","features":[482]},{"name":"AZ_MAX_GROUP_BIZRULE_LANGUAGE_LENGTH","features":[482]},{"name":"AZ_MAX_GROUP_BIZRULE_LENGTH","features":[482]},{"name":"AZ_MAX_GROUP_LDAP_QUERY_LENGTH","features":[482]},{"name":"AZ_MAX_GROUP_NAME_LENGTH","features":[482]},{"name":"AZ_MAX_NAME_LENGTH","features":[482]},{"name":"AZ_MAX_OPERATION_NAME_LENGTH","features":[482]},{"name":"AZ_MAX_POLICY_URL_LENGTH","features":[482]},{"name":"AZ_MAX_ROLE_NAME_LENGTH","features":[482]},{"name":"AZ_MAX_SCOPE_NAME_LENGTH","features":[482]},{"name":"AZ_MAX_TASK_BIZRULE_IMPORTED_PATH_LENGTH","features":[482]},{"name":"AZ_MAX_TASK_BIZRULE_LANGUAGE_LENGTH","features":[482]},{"name":"AZ_MAX_TASK_BIZRULE_LENGTH","features":[482]},{"name":"AZ_MAX_TASK_NAME_LENGTH","features":[482]},{"name":"AZ_PROP_APPLICATION_AUTHZ_INTERFACE_CLSID","features":[482]},{"name":"AZ_PROP_APPLICATION_BIZRULE_ENABLED","features":[482]},{"name":"AZ_PROP_APPLICATION_DATA","features":[482]},{"name":"AZ_PROP_APPLICATION_NAME","features":[482]},{"name":"AZ_PROP_APPLICATION_VERSION","features":[482]},{"name":"AZ_PROP_APPLY_STORE_SACL","features":[482]},{"name":"AZ_PROP_AZSTORE_DOMAIN_TIMEOUT","features":[482]},{"name":"AZ_PROP_AZSTORE_MAJOR_VERSION","features":[482]},{"name":"AZ_PROP_AZSTORE_MAX_SCRIPT_ENGINES","features":[482]},{"name":"AZ_PROP_AZSTORE_MINOR_VERSION","features":[482]},{"name":"AZ_PROP_AZSTORE_SCRIPT_ENGINE_TIMEOUT","features":[482]},{"name":"AZ_PROP_AZSTORE_TARGET_MACHINE","features":[482]},{"name":"AZ_PROP_AZTORE_IS_ADAM_INSTANCE","features":[482]},{"name":"AZ_PROP_CHILD_CREATE","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_LDAP_QUERY_DN","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_ROLE_FOR_ACCESS_CHECK","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_CANONICAL","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DISPLAY","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DN","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_DNS_SAM_COMPAT","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_GUID","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_SAM_COMPAT","features":[482]},{"name":"AZ_PROP_CLIENT_CONTEXT_USER_UPN","features":[482]},{"name":"AZ_PROP_CONSTANTS","features":[482]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS","features":[482]},{"name":"AZ_PROP_DELEGATED_POLICY_USERS_NAME","features":[482]},{"name":"AZ_PROP_DESCRIPTION","features":[482]},{"name":"AZ_PROP_GENERATE_AUDITS","features":[482]},{"name":"AZ_PROP_GROUP_APP_MEMBERS","features":[482]},{"name":"AZ_PROP_GROUP_APP_NON_MEMBERS","features":[482]},{"name":"AZ_PROP_GROUP_BIZRULE","features":[482]},{"name":"AZ_PROP_GROUP_BIZRULE_IMPORTED_PATH","features":[482]},{"name":"AZ_PROP_GROUP_BIZRULE_LANGUAGE","features":[482]},{"name":"AZ_PROP_GROUP_LDAP_QUERY","features":[482]},{"name":"AZ_PROP_GROUP_MEMBERS","features":[482]},{"name":"AZ_PROP_GROUP_MEMBERS_NAME","features":[482]},{"name":"AZ_PROP_GROUP_NON_MEMBERS","features":[482]},{"name":"AZ_PROP_GROUP_NON_MEMBERS_NAME","features":[482]},{"name":"AZ_PROP_GROUP_TYPE","features":[482]},{"name":"AZ_PROP_NAME","features":[482]},{"name":"AZ_PROP_OPERATION_ID","features":[482]},{"name":"AZ_PROP_POLICY_ADMINS","features":[482]},{"name":"AZ_PROP_POLICY_ADMINS_NAME","features":[482]},{"name":"AZ_PROP_POLICY_READERS","features":[482]},{"name":"AZ_PROP_POLICY_READERS_NAME","features":[482]},{"name":"AZ_PROP_ROLE_APP_MEMBERS","features":[482]},{"name":"AZ_PROP_ROLE_MEMBERS","features":[482]},{"name":"AZ_PROP_ROLE_MEMBERS_NAME","features":[482]},{"name":"AZ_PROP_ROLE_OPERATIONS","features":[482]},{"name":"AZ_PROP_ROLE_TASKS","features":[482]},{"name":"AZ_PROP_SCOPE_BIZRULES_WRITABLE","features":[482]},{"name":"AZ_PROP_SCOPE_CAN_BE_DELEGATED","features":[482]},{"name":"AZ_PROP_TASK_BIZRULE","features":[482]},{"name":"AZ_PROP_TASK_BIZRULE_IMPORTED_PATH","features":[482]},{"name":"AZ_PROP_TASK_BIZRULE_LANGUAGE","features":[482]},{"name":"AZ_PROP_TASK_IS_ROLE_DEFINITION","features":[482]},{"name":"AZ_PROP_TASK_OPERATIONS","features":[482]},{"name":"AZ_PROP_TASK_TASKS","features":[482]},{"name":"AZ_PROP_WRITABLE","features":[482]},{"name":"AZ_SUBMIT_FLAG_ABORT","features":[482]},{"name":"AZ_SUBMIT_FLAG_FLUSH","features":[482]},{"name":"AuthzAccessCheck","features":[305,482]},{"name":"AuthzAddSidsToContext","features":[305,482]},{"name":"AuthzAuditEventInfoAdditionalInfo","features":[482]},{"name":"AuthzAuditEventInfoFlags","features":[482]},{"name":"AuthzAuditEventInfoObjectName","features":[482]},{"name":"AuthzAuditEventInfoObjectType","features":[482]},{"name":"AuthzAuditEventInfoOperationType","features":[482]},{"name":"AuthzCachedAccessCheck","features":[305,482]},{"name":"AuthzContextInfoAll","features":[482]},{"name":"AuthzContextInfoAppContainerSid","features":[482]},{"name":"AuthzContextInfoAuthenticationId","features":[482]},{"name":"AuthzContextInfoCapabilitySids","features":[482]},{"name":"AuthzContextInfoDeviceClaims","features":[482]},{"name":"AuthzContextInfoDeviceSids","features":[482]},{"name":"AuthzContextInfoExpirationTime","features":[482]},{"name":"AuthzContextInfoGroupsSids","features":[482]},{"name":"AuthzContextInfoIdentifier","features":[482]},{"name":"AuthzContextInfoPrivileges","features":[482]},{"name":"AuthzContextInfoRestrictedSids","features":[482]},{"name":"AuthzContextInfoSecurityAttributes","features":[482]},{"name":"AuthzContextInfoServerContext","features":[482]},{"name":"AuthzContextInfoSource","features":[482]},{"name":"AuthzContextInfoUserClaims","features":[482]},{"name":"AuthzContextInfoUserSid","features":[482]},{"name":"AuthzEnumerateSecurityEventSources","features":[305,482]},{"name":"AuthzEvaluateSacl","features":[305,482]},{"name":"AuthzFreeAuditEvent","features":[305,482]},{"name":"AuthzFreeCentralAccessPolicyCache","features":[305,482]},{"name":"AuthzFreeContext","features":[305,482]},{"name":"AuthzFreeHandle","features":[305,482]},{"name":"AuthzFreeResourceManager","features":[305,482]},{"name":"AuthzGetInformationFromContext","features":[305,482]},{"name":"AuthzInitializeCompoundContext","features":[305,482]},{"name":"AuthzInitializeContextFromAuthzContext","features":[305,482]},{"name":"AuthzInitializeContextFromSid","features":[305,482]},{"name":"AuthzInitializeContextFromToken","features":[305,482]},{"name":"AuthzInitializeObjectAccessAuditEvent","features":[305,482]},{"name":"AuthzInitializeObjectAccessAuditEvent2","features":[305,482]},{"name":"AuthzInitializeRemoteResourceManager","features":[305,482]},{"name":"AuthzInitializeResourceManager","features":[305,482]},{"name":"AuthzInitializeResourceManagerEx","features":[305,482]},{"name":"AuthzInstallSecurityEventSource","features":[305,482]},{"name":"AuthzModifyClaims","features":[305,482]},{"name":"AuthzModifySecurityAttributes","features":[305,482]},{"name":"AuthzModifySids","features":[305,482]},{"name":"AuthzOpenObjectAudit","features":[305,482]},{"name":"AuthzRegisterCapChangeNotification","features":[305,482,340]},{"name":"AuthzRegisterSecurityEventSource","features":[305,482]},{"name":"AuthzReportSecurityEvent","features":[305,482]},{"name":"AuthzReportSecurityEventFromParams","features":[305,482]},{"name":"AuthzSetAppContainerInformation","features":[305,482]},{"name":"AuthzUninstallSecurityEventSource","features":[305,482]},{"name":"AuthzUnregisterCapChangeNotification","features":[305,482]},{"name":"AuthzUnregisterSecurityEventSource","features":[305,482]},{"name":"AzAuthorizationStore","features":[482]},{"name":"AzBizRuleContext","features":[482]},{"name":"AzPrincipalLocator","features":[482]},{"name":"BuildExplicitAccessWithNameA","features":[482]},{"name":"BuildExplicitAccessWithNameW","features":[482]},{"name":"BuildImpersonateExplicitAccessWithNameA","features":[482]},{"name":"BuildImpersonateExplicitAccessWithNameW","features":[482]},{"name":"BuildImpersonateTrusteeA","features":[482]},{"name":"BuildImpersonateTrusteeW","features":[482]},{"name":"BuildSecurityDescriptorA","features":[305,482]},{"name":"BuildSecurityDescriptorW","features":[305,482]},{"name":"BuildTrusteeWithNameA","features":[482]},{"name":"BuildTrusteeWithNameW","features":[482]},{"name":"BuildTrusteeWithObjectsAndNameA","features":[482]},{"name":"BuildTrusteeWithObjectsAndNameW","features":[482]},{"name":"BuildTrusteeWithObjectsAndSidA","features":[482]},{"name":"BuildTrusteeWithObjectsAndSidW","features":[482]},{"name":"BuildTrusteeWithSidA","features":[482]},{"name":"BuildTrusteeWithSidW","features":[482]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorA","features":[305,482]},{"name":"ConvertSecurityDescriptorToStringSecurityDescriptorW","features":[305,482]},{"name":"ConvertSidToStringSidA","features":[305,482]},{"name":"ConvertSidToStringSidW","features":[305,482]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorA","features":[305,482]},{"name":"ConvertStringSecurityDescriptorToSecurityDescriptorW","features":[305,482]},{"name":"ConvertStringSidToSidA","features":[305,482]},{"name":"ConvertStringSidToSidW","features":[305,482]},{"name":"DENY_ACCESS","features":[482]},{"name":"EXPLICIT_ACCESS_A","features":[482]},{"name":"EXPLICIT_ACCESS_W","features":[482]},{"name":"FN_OBJECT_MGR_FUNCTS","features":[482]},{"name":"FN_PROGRESS","features":[305,482]},{"name":"FreeInheritedFromArray","features":[305,482]},{"name":"GRANT_ACCESS","features":[482]},{"name":"GetAuditedPermissionsFromAclA","features":[305,482]},{"name":"GetAuditedPermissionsFromAclW","features":[305,482]},{"name":"GetEffectiveRightsFromAclA","features":[305,482]},{"name":"GetEffectiveRightsFromAclW","features":[305,482]},{"name":"GetExplicitEntriesFromAclA","features":[305,482]},{"name":"GetExplicitEntriesFromAclW","features":[305,482]},{"name":"GetInheritanceSourceA","features":[305,482]},{"name":"GetInheritanceSourceW","features":[305,482]},{"name":"GetMultipleTrusteeA","features":[482]},{"name":"GetMultipleTrusteeOperationA","features":[482]},{"name":"GetMultipleTrusteeOperationW","features":[482]},{"name":"GetMultipleTrusteeW","features":[482]},{"name":"GetNamedSecurityInfoA","features":[305,482]},{"name":"GetNamedSecurityInfoW","features":[305,482]},{"name":"GetSecurityInfo","features":[305,482]},{"name":"GetTrusteeFormA","features":[482]},{"name":"GetTrusteeFormW","features":[482]},{"name":"GetTrusteeNameA","features":[482]},{"name":"GetTrusteeNameW","features":[482]},{"name":"GetTrusteeTypeA","features":[482]},{"name":"GetTrusteeTypeW","features":[482]},{"name":"IAzApplication","features":[482,356]},{"name":"IAzApplication2","features":[482,356]},{"name":"IAzApplication3","features":[482,356]},{"name":"IAzApplicationGroup","features":[482,356]},{"name":"IAzApplicationGroup2","features":[482,356]},{"name":"IAzApplicationGroups","features":[482,356]},{"name":"IAzApplications","features":[482,356]},{"name":"IAzAuthorizationStore","features":[482,356]},{"name":"IAzAuthorizationStore2","features":[482,356]},{"name":"IAzAuthorizationStore3","features":[482,356]},{"name":"IAzBizRuleContext","features":[482,356]},{"name":"IAzBizRuleInterfaces","features":[482,356]},{"name":"IAzBizRuleParameters","features":[482,356]},{"name":"IAzClientContext","features":[482,356]},{"name":"IAzClientContext2","features":[482,356]},{"name":"IAzClientContext3","features":[482,356]},{"name":"IAzNameResolver","features":[482,356]},{"name":"IAzObjectPicker","features":[482,356]},{"name":"IAzOperation","features":[482,356]},{"name":"IAzOperation2","features":[482,356]},{"name":"IAzOperations","features":[482,356]},{"name":"IAzPrincipalLocator","features":[482,356]},{"name":"IAzRole","features":[482,356]},{"name":"IAzRoleAssignment","features":[482,356]},{"name":"IAzRoleAssignments","features":[482,356]},{"name":"IAzRoleDefinition","features":[482,356]},{"name":"IAzRoleDefinitions","features":[482,356]},{"name":"IAzRoles","features":[482,356]},{"name":"IAzScope","features":[482,356]},{"name":"IAzScope2","features":[482,356]},{"name":"IAzScopes","features":[482,356]},{"name":"IAzTask","features":[482,356]},{"name":"IAzTask2","features":[482,356]},{"name":"IAzTasks","features":[482,356]},{"name":"INHERITED_ACCESS_ENTRY","features":[482]},{"name":"INHERITED_FROMA","features":[482]},{"name":"INHERITED_FROMW","features":[482]},{"name":"INHERITED_GRANDPARENT","features":[482]},{"name":"INHERITED_PARENT","features":[482]},{"name":"LookupSecurityDescriptorPartsA","features":[305,482]},{"name":"LookupSecurityDescriptorPartsW","features":[305,482]},{"name":"MULTIPLE_TRUSTEE_OPERATION","features":[482]},{"name":"NOT_USED_ACCESS","features":[482]},{"name":"NO_MULTIPLE_TRUSTEE","features":[482]},{"name":"OBJECTS_AND_NAME_A","features":[482]},{"name":"OBJECTS_AND_NAME_W","features":[482]},{"name":"OBJECTS_AND_SID","features":[482]},{"name":"OLESCRIPT_E_SYNTAX","features":[482]},{"name":"PFN_AUTHZ_COMPUTE_DYNAMIC_GROUPS","features":[305,482]},{"name":"PFN_AUTHZ_DYNAMIC_ACCESS_CHECK","features":[305,482]},{"name":"PFN_AUTHZ_FREE_CENTRAL_ACCESS_POLICY","features":[482]},{"name":"PFN_AUTHZ_FREE_DYNAMIC_GROUPS","features":[482]},{"name":"PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY","features":[305,482]},{"name":"PROG_INVOKE_SETTING","features":[482]},{"name":"ProgressCancelOperation","features":[482]},{"name":"ProgressInvokeEveryObject","features":[482]},{"name":"ProgressInvokeNever","features":[482]},{"name":"ProgressInvokeOnError","features":[482]},{"name":"ProgressInvokePrePostError","features":[482]},{"name":"ProgressRetryOperation","features":[482]},{"name":"REVOKE_ACCESS","features":[482]},{"name":"SDDL_ACCESS_ALLOWED","features":[482]},{"name":"SDDL_ACCESS_CONTROL_ASSISTANCE_OPS","features":[482]},{"name":"SDDL_ACCESS_DENIED","features":[482]},{"name":"SDDL_ACCESS_FILTER","features":[482]},{"name":"SDDL_ACCOUNT_OPERATORS","features":[482]},{"name":"SDDL_ACE_BEGIN","features":[482]},{"name":"SDDL_ACE_COND_ATTRIBUTE_PREFIX","features":[482]},{"name":"SDDL_ACE_COND_BEGIN","features":[482]},{"name":"SDDL_ACE_COND_BLOB_PREFIX","features":[482]},{"name":"SDDL_ACE_COND_DEVICE_ATTRIBUTE_PREFIX","features":[482]},{"name":"SDDL_ACE_COND_END","features":[482]},{"name":"SDDL_ACE_COND_RESOURCE_ATTRIBUTE_PREFIX","features":[482]},{"name":"SDDL_ACE_COND_SID_PREFIX","features":[482]},{"name":"SDDL_ACE_COND_TOKEN_ATTRIBUTE_PREFIX","features":[482]},{"name":"SDDL_ACE_COND_USER_ATTRIBUTE_PREFIX","features":[482]},{"name":"SDDL_ACE_END","features":[482]},{"name":"SDDL_ALARM","features":[482]},{"name":"SDDL_ALIAS_PREW2KCOMPACC","features":[482]},{"name":"SDDL_ALIAS_SIZE","features":[482]},{"name":"SDDL_ALL_APP_PACKAGES","features":[482]},{"name":"SDDL_ANONYMOUS","features":[482]},{"name":"SDDL_AUDIT","features":[482]},{"name":"SDDL_AUDIT_FAILURE","features":[482]},{"name":"SDDL_AUDIT_SUCCESS","features":[482]},{"name":"SDDL_AUTHENTICATED_USERS","features":[482]},{"name":"SDDL_AUTHORITY_ASSERTED","features":[482]},{"name":"SDDL_AUTO_INHERITED","features":[482]},{"name":"SDDL_AUTO_INHERIT_REQ","features":[482]},{"name":"SDDL_BACKUP_OPERATORS","features":[482]},{"name":"SDDL_BLOB","features":[482]},{"name":"SDDL_BOOLEAN","features":[482]},{"name":"SDDL_BUILTIN_ADMINISTRATORS","features":[482]},{"name":"SDDL_BUILTIN_GUESTS","features":[482]},{"name":"SDDL_BUILTIN_USERS","features":[482]},{"name":"SDDL_CALLBACK_ACCESS_ALLOWED","features":[482]},{"name":"SDDL_CALLBACK_ACCESS_DENIED","features":[482]},{"name":"SDDL_CALLBACK_AUDIT","features":[482]},{"name":"SDDL_CALLBACK_OBJECT_ACCESS_ALLOWED","features":[482]},{"name":"SDDL_CERTSVC_DCOM_ACCESS","features":[482]},{"name":"SDDL_CERT_SERV_ADMINISTRATORS","features":[482]},{"name":"SDDL_CLONEABLE_CONTROLLERS","features":[482]},{"name":"SDDL_CONTAINER_INHERIT","features":[482]},{"name":"SDDL_CONTROL_ACCESS","features":[482]},{"name":"SDDL_CREATE_CHILD","features":[482]},{"name":"SDDL_CREATOR_GROUP","features":[482]},{"name":"SDDL_CREATOR_OWNER","features":[482]},{"name":"SDDL_CRITICAL","features":[482]},{"name":"SDDL_CRYPTO_OPERATORS","features":[482]},{"name":"SDDL_DACL","features":[482]},{"name":"SDDL_DELETE_CHILD","features":[482]},{"name":"SDDL_DELETE_TREE","features":[482]},{"name":"SDDL_DELIMINATOR","features":[482]},{"name":"SDDL_DOMAIN_ADMINISTRATORS","features":[482]},{"name":"SDDL_DOMAIN_COMPUTERS","features":[482]},{"name":"SDDL_DOMAIN_DOMAIN_CONTROLLERS","features":[482]},{"name":"SDDL_DOMAIN_GUESTS","features":[482]},{"name":"SDDL_DOMAIN_USERS","features":[482]},{"name":"SDDL_ENTERPRISE_ADMINS","features":[482]},{"name":"SDDL_ENTERPRISE_DOMAIN_CONTROLLERS","features":[482]},{"name":"SDDL_ENTERPRISE_KEY_ADMINS","features":[482]},{"name":"SDDL_ENTERPRISE_RO_DCs","features":[482]},{"name":"SDDL_EVENT_LOG_READERS","features":[482]},{"name":"SDDL_EVERYONE","features":[482]},{"name":"SDDL_FILE_ALL","features":[482]},{"name":"SDDL_FILE_EXECUTE","features":[482]},{"name":"SDDL_FILE_READ","features":[482]},{"name":"SDDL_FILE_WRITE","features":[482]},{"name":"SDDL_GENERIC_ALL","features":[482]},{"name":"SDDL_GENERIC_EXECUTE","features":[482]},{"name":"SDDL_GENERIC_READ","features":[482]},{"name":"SDDL_GENERIC_WRITE","features":[482]},{"name":"SDDL_GROUP","features":[482]},{"name":"SDDL_GROUP_POLICY_ADMINS","features":[482]},{"name":"SDDL_HYPER_V_ADMINS","features":[482]},{"name":"SDDL_IIS_USERS","features":[482]},{"name":"SDDL_INHERITED","features":[482]},{"name":"SDDL_INHERIT_ONLY","features":[482]},{"name":"SDDL_INT","features":[482]},{"name":"SDDL_INTERACTIVE","features":[482]},{"name":"SDDL_KEY_ADMINS","features":[482]},{"name":"SDDL_KEY_ALL","features":[482]},{"name":"SDDL_KEY_EXECUTE","features":[482]},{"name":"SDDL_KEY_READ","features":[482]},{"name":"SDDL_KEY_WRITE","features":[482]},{"name":"SDDL_LIST_CHILDREN","features":[482]},{"name":"SDDL_LIST_OBJECT","features":[482]},{"name":"SDDL_LOCAL_ADMIN","features":[482]},{"name":"SDDL_LOCAL_GUEST","features":[482]},{"name":"SDDL_LOCAL_SERVICE","features":[482]},{"name":"SDDL_LOCAL_SYSTEM","features":[482]},{"name":"SDDL_MANDATORY_LABEL","features":[482]},{"name":"SDDL_ML_HIGH","features":[482]},{"name":"SDDL_ML_LOW","features":[482]},{"name":"SDDL_ML_MEDIUM","features":[482]},{"name":"SDDL_ML_MEDIUM_PLUS","features":[482]},{"name":"SDDL_ML_SYSTEM","features":[482]},{"name":"SDDL_NETWORK","features":[482]},{"name":"SDDL_NETWORK_CONFIGURATION_OPS","features":[482]},{"name":"SDDL_NETWORK_SERVICE","features":[482]},{"name":"SDDL_NO_EXECUTE_UP","features":[482]},{"name":"SDDL_NO_PROPAGATE","features":[482]},{"name":"SDDL_NO_READ_UP","features":[482]},{"name":"SDDL_NO_WRITE_UP","features":[482]},{"name":"SDDL_NULL_ACL","features":[482]},{"name":"SDDL_OBJECT_ACCESS_ALLOWED","features":[482]},{"name":"SDDL_OBJECT_ACCESS_DENIED","features":[482]},{"name":"SDDL_OBJECT_ALARM","features":[482]},{"name":"SDDL_OBJECT_AUDIT","features":[482]},{"name":"SDDL_OBJECT_INHERIT","features":[482]},{"name":"SDDL_OWNER","features":[482]},{"name":"SDDL_OWNER_RIGHTS","features":[482]},{"name":"SDDL_PERFLOG_USERS","features":[482]},{"name":"SDDL_PERFMON_USERS","features":[482]},{"name":"SDDL_PERSONAL_SELF","features":[482]},{"name":"SDDL_POWER_USERS","features":[482]},{"name":"SDDL_PRINTER_OPERATORS","features":[482]},{"name":"SDDL_PROCESS_TRUST_LABEL","features":[482]},{"name":"SDDL_PROTECTED","features":[482]},{"name":"SDDL_PROTECTED_USERS","features":[482]},{"name":"SDDL_RAS_SERVERS","features":[482]},{"name":"SDDL_RDS_ENDPOINT_SERVERS","features":[482]},{"name":"SDDL_RDS_MANAGEMENT_SERVERS","features":[482]},{"name":"SDDL_RDS_REMOTE_ACCESS_SERVERS","features":[482]},{"name":"SDDL_READ_CONTROL","features":[482]},{"name":"SDDL_READ_PROPERTY","features":[482]},{"name":"SDDL_REMOTE_DESKTOP","features":[482]},{"name":"SDDL_REMOTE_MANAGEMENT_USERS","features":[482]},{"name":"SDDL_REPLICATOR","features":[482]},{"name":"SDDL_RESOURCE_ATTRIBUTE","features":[482]},{"name":"SDDL_RESTRICTED_CODE","features":[482]},{"name":"SDDL_REVISION","features":[482]},{"name":"SDDL_REVISION_1","features":[482]},{"name":"SDDL_SACL","features":[482]},{"name":"SDDL_SCHEMA_ADMINISTRATORS","features":[482]},{"name":"SDDL_SCOPED_POLICY_ID","features":[482]},{"name":"SDDL_SELF_WRITE","features":[482]},{"name":"SDDL_SEPERATOR","features":[482]},{"name":"SDDL_SERVER_OPERATORS","features":[482]},{"name":"SDDL_SERVICE","features":[482]},{"name":"SDDL_SERVICE_ASSERTED","features":[482]},{"name":"SDDL_SID","features":[482]},{"name":"SDDL_SPACE","features":[482]},{"name":"SDDL_STANDARD_DELETE","features":[482]},{"name":"SDDL_TRUST_PROTECTED_FILTER","features":[482]},{"name":"SDDL_UINT","features":[482]},{"name":"SDDL_USER_MODE_DRIVERS","features":[482]},{"name":"SDDL_WRITE_DAC","features":[482]},{"name":"SDDL_WRITE_OWNER","features":[482]},{"name":"SDDL_WRITE_PROPERTY","features":[482]},{"name":"SDDL_WRITE_RESTRICTED_CODE","features":[482]},{"name":"SDDL_WSTRING","features":[482]},{"name":"SET_ACCESS","features":[482]},{"name":"SET_AUDIT_FAILURE","features":[482]},{"name":"SET_AUDIT_SUCCESS","features":[482]},{"name":"SE_DS_OBJECT","features":[482]},{"name":"SE_DS_OBJECT_ALL","features":[482]},{"name":"SE_FILE_OBJECT","features":[482]},{"name":"SE_KERNEL_OBJECT","features":[482]},{"name":"SE_LMSHARE","features":[482]},{"name":"SE_OBJECT_TYPE","features":[482]},{"name":"SE_PRINTER","features":[482]},{"name":"SE_PROVIDER_DEFINED_OBJECT","features":[482]},{"name":"SE_REGISTRY_KEY","features":[482]},{"name":"SE_REGISTRY_WOW64_32KEY","features":[482]},{"name":"SE_REGISTRY_WOW64_64KEY","features":[482]},{"name":"SE_SERVICE","features":[482]},{"name":"SE_UNKNOWN_OBJECT_TYPE","features":[482]},{"name":"SE_WINDOW_OBJECT","features":[482]},{"name":"SE_WMIGUID_OBJECT","features":[482]},{"name":"SetEntriesInAclA","features":[305,482]},{"name":"SetEntriesInAclW","features":[305,482]},{"name":"SetNamedSecurityInfoA","features":[305,482]},{"name":"SetNamedSecurityInfoW","features":[305,482]},{"name":"SetSecurityInfo","features":[305,482]},{"name":"TREE_SEC_INFO","features":[482]},{"name":"TREE_SEC_INFO_RESET","features":[482]},{"name":"TREE_SEC_INFO_RESET_KEEP_EXPLICIT","features":[482]},{"name":"TREE_SEC_INFO_SET","features":[482]},{"name":"TRUSTEE_A","features":[482]},{"name":"TRUSTEE_ACCESSA","features":[482]},{"name":"TRUSTEE_ACCESSW","features":[482]},{"name":"TRUSTEE_ACCESS_ALL","features":[482]},{"name":"TRUSTEE_ACCESS_ALLOWED","features":[482]},{"name":"TRUSTEE_ACCESS_EXPLICIT","features":[482]},{"name":"TRUSTEE_ACCESS_READ","features":[482]},{"name":"TRUSTEE_ACCESS_WRITE","features":[482]},{"name":"TRUSTEE_BAD_FORM","features":[482]},{"name":"TRUSTEE_FORM","features":[482]},{"name":"TRUSTEE_IS_ALIAS","features":[482]},{"name":"TRUSTEE_IS_COMPUTER","features":[482]},{"name":"TRUSTEE_IS_DELETED","features":[482]},{"name":"TRUSTEE_IS_DOMAIN","features":[482]},{"name":"TRUSTEE_IS_GROUP","features":[482]},{"name":"TRUSTEE_IS_IMPERSONATE","features":[482]},{"name":"TRUSTEE_IS_INVALID","features":[482]},{"name":"TRUSTEE_IS_NAME","features":[482]},{"name":"TRUSTEE_IS_OBJECTS_AND_NAME","features":[482]},{"name":"TRUSTEE_IS_OBJECTS_AND_SID","features":[482]},{"name":"TRUSTEE_IS_SID","features":[482]},{"name":"TRUSTEE_IS_UNKNOWN","features":[482]},{"name":"TRUSTEE_IS_USER","features":[482]},{"name":"TRUSTEE_IS_WELL_KNOWN_GROUP","features":[482]},{"name":"TRUSTEE_TYPE","features":[482]},{"name":"TRUSTEE_W","features":[482]},{"name":"TreeResetNamedSecurityInfoA","features":[305,482]},{"name":"TreeResetNamedSecurityInfoW","features":[305,482]},{"name":"TreeSetNamedSecurityInfoA","features":[305,482]},{"name":"TreeSetNamedSecurityInfoW","features":[305,482]},{"name":"_AUTHZ_SS_MAXSIZE","features":[482]}],"486":[{"name":"CFSTR_ACLUI_SID_INFO_LIST","features":[483]},{"name":"CreateSecurityPage","features":[483,355]},{"name":"DOBJ_COND_NTACLS","features":[483]},{"name":"DOBJ_RES_CONT","features":[483]},{"name":"DOBJ_RES_ROOT","features":[483]},{"name":"DOBJ_RIBBON_LAUNCH","features":[483]},{"name":"DOBJ_VOL_NTACLS","features":[483]},{"name":"EFFPERM_RESULT_LIST","features":[305,483]},{"name":"EditSecurity","features":[305,483]},{"name":"EditSecurityAdvanced","features":[305,483]},{"name":"IEffectivePermission","features":[483]},{"name":"IEffectivePermission2","features":[483]},{"name":"ISecurityInformation","features":[483]},{"name":"ISecurityInformation2","features":[483]},{"name":"ISecurityInformation3","features":[483]},{"name":"ISecurityInformation4","features":[483]},{"name":"ISecurityObjectTypeInfo","features":[483]},{"name":"SECURITY_INFO_PAGE_FLAGS","features":[483]},{"name":"SECURITY_OBJECT","features":[305,483]},{"name":"SECURITY_OBJECT_ID_CENTRAL_ACCESS_RULE","features":[483]},{"name":"SECURITY_OBJECT_ID_CENTRAL_POLICY","features":[483]},{"name":"SECURITY_OBJECT_ID_OBJECT_SD","features":[483]},{"name":"SECURITY_OBJECT_ID_SHARE","features":[483]},{"name":"SID_INFO","features":[483]},{"name":"SID_INFO_LIST","features":[483]},{"name":"SI_ACCESS","features":[483]},{"name":"SI_ACCESS_CONTAINER","features":[483]},{"name":"SI_ACCESS_GENERAL","features":[483]},{"name":"SI_ACCESS_PROPERTY","features":[483]},{"name":"SI_ACCESS_SPECIFIC","features":[483]},{"name":"SI_ADVANCED","features":[483]},{"name":"SI_AUDITS_ELEVATION_REQUIRED","features":[483]},{"name":"SI_CONTAINER","features":[483]},{"name":"SI_DISABLE_DENY_ACE","features":[483]},{"name":"SI_EDIT_AUDITS","features":[483]},{"name":"SI_EDIT_EFFECTIVE","features":[483]},{"name":"SI_EDIT_OWNER","features":[483]},{"name":"SI_EDIT_PERMS","features":[483]},{"name":"SI_EDIT_PROPERTIES","features":[483]},{"name":"SI_ENABLE_CENTRAL_POLICY","features":[483]},{"name":"SI_ENABLE_EDIT_ATTRIBUTE_CONDITION","features":[483]},{"name":"SI_INHERIT_TYPE","features":[483]},{"name":"SI_MAY_WRITE","features":[483]},{"name":"SI_NO_ACL_PROTECT","features":[483]},{"name":"SI_NO_ADDITIONAL_PERMISSION","features":[483]},{"name":"SI_NO_TREE_APPLY","features":[483]},{"name":"SI_OBJECT_GUID","features":[483]},{"name":"SI_OBJECT_INFO","features":[305,483]},{"name":"SI_OBJECT_INFO_FLAGS","features":[483]},{"name":"SI_OWNER_ELEVATION_REQUIRED","features":[483]},{"name":"SI_OWNER_READONLY","features":[483]},{"name":"SI_OWNER_RECURSE","features":[483]},{"name":"SI_PAGE_ACTIVATED","features":[483]},{"name":"SI_PAGE_ADVPERM","features":[483]},{"name":"SI_PAGE_AUDIT","features":[483]},{"name":"SI_PAGE_EFFECTIVE","features":[483]},{"name":"SI_PAGE_OWNER","features":[483]},{"name":"SI_PAGE_PERM","features":[483]},{"name":"SI_PAGE_SHARE","features":[483]},{"name":"SI_PAGE_TAKEOWNERSHIP","features":[483]},{"name":"SI_PAGE_TITLE","features":[483]},{"name":"SI_PAGE_TYPE","features":[483]},{"name":"SI_PERMS_ELEVATION_REQUIRED","features":[483]},{"name":"SI_READONLY","features":[483]},{"name":"SI_RESET","features":[483]},{"name":"SI_RESET_DACL","features":[483]},{"name":"SI_RESET_DACL_TREE","features":[483]},{"name":"SI_RESET_OWNER","features":[483]},{"name":"SI_RESET_SACL","features":[483]},{"name":"SI_RESET_SACL_TREE","features":[483]},{"name":"SI_SCOPE_ELEVATION_REQUIRED","features":[483]},{"name":"SI_SERVER_IS_DC","features":[483]},{"name":"SI_SHOW_AUDIT_ACTIVATED","features":[483]},{"name":"SI_SHOW_CENTRAL_POLICY_ACTIVATED","features":[483]},{"name":"SI_SHOW_DEFAULT","features":[483]},{"name":"SI_SHOW_EFFECTIVE_ACTIVATED","features":[483]},{"name":"SI_SHOW_OWNER_ACTIVATED","features":[483]},{"name":"SI_SHOW_PERM_ACTIVATED","features":[483]},{"name":"SI_SHOW_SHARE_ACTIVATED","features":[483]},{"name":"SI_VIEW_ONLY","features":[483]}],"487":[{"name":"CCF_SCESVC_ATTACHMENT","features":[484]},{"name":"CCF_SCESVC_ATTACHMENT_DATA","features":[484]},{"name":"ISceSvcAttachmentData","features":[484]},{"name":"ISceSvcAttachmentPersistInfo","features":[484]},{"name":"PFSCE_FREE_INFO","features":[484]},{"name":"PFSCE_LOG_INFO","features":[484]},{"name":"PFSCE_QUERY_INFO","features":[305,484]},{"name":"PFSCE_SET_INFO","features":[305,484]},{"name":"PF_ConfigAnalyzeService","features":[305,484]},{"name":"PF_UpdateService","features":[305,484]},{"name":"SCESTATUS_ACCESS_DENIED","features":[484]},{"name":"SCESTATUS_ALREADY_RUNNING","features":[484]},{"name":"SCESTATUS_BAD_FORMAT","features":[484]},{"name":"SCESTATUS_BUFFER_TOO_SMALL","features":[484]},{"name":"SCESTATUS_CANT_DELETE","features":[484]},{"name":"SCESTATUS_EXCEPTION_IN_SERVER","features":[484]},{"name":"SCESTATUS_INVALID_DATA","features":[484]},{"name":"SCESTATUS_INVALID_PARAMETER","features":[484]},{"name":"SCESTATUS_MOD_NOT_FOUND","features":[484]},{"name":"SCESTATUS_NOT_ENOUGH_RESOURCE","features":[484]},{"name":"SCESTATUS_NO_MAPPING","features":[484]},{"name":"SCESTATUS_NO_TEMPLATE_GIVEN","features":[484]},{"name":"SCESTATUS_OBJECT_EXIST","features":[484]},{"name":"SCESTATUS_OTHER_ERROR","features":[484]},{"name":"SCESTATUS_PREFIX_OVERFLOW","features":[484]},{"name":"SCESTATUS_PROFILE_NOT_FOUND","features":[484]},{"name":"SCESTATUS_RECORD_NOT_FOUND","features":[484]},{"name":"SCESTATUS_SERVICE_NOT_SUPPORT","features":[484]},{"name":"SCESTATUS_SUCCESS","features":[484]},{"name":"SCESTATUS_TRUST_FAIL","features":[484]},{"name":"SCESVC_ANALYSIS_INFO","features":[484]},{"name":"SCESVC_ANALYSIS_LINE","features":[484]},{"name":"SCESVC_CALLBACK_INFO","features":[305,484]},{"name":"SCESVC_CONFIGURATION_INFO","features":[484]},{"name":"SCESVC_CONFIGURATION_LINE","features":[484]},{"name":"SCESVC_ENUMERATION_MAX","features":[484]},{"name":"SCESVC_INFO_TYPE","features":[484]},{"name":"SCE_LOG_ERR_LEVEL","features":[484]},{"name":"SCE_LOG_LEVEL_ALWAYS","features":[484]},{"name":"SCE_LOG_LEVEL_DEBUG","features":[484]},{"name":"SCE_LOG_LEVEL_DETAIL","features":[484]},{"name":"SCE_LOG_LEVEL_ERROR","features":[484]},{"name":"SCE_ROOT_PATH","features":[484]},{"name":"SceSvcAnalysisInfo","features":[484]},{"name":"SceSvcConfigurationInfo","features":[484]},{"name":"SceSvcInternalUse","features":[484]},{"name":"SceSvcMergedPolicyInfo","features":[484]},{"name":"cNodetypeSceAnalysisServices","features":[484]},{"name":"cNodetypeSceEventLog","features":[484]},{"name":"cNodetypeSceTemplateServices","features":[484]},{"name":"lstruuidNodetypeSceAnalysisServices","features":[484]},{"name":"lstruuidNodetypeSceEventLog","features":[484]},{"name":"lstruuidNodetypeSceTemplateServices","features":[484]},{"name":"struuidNodetypeSceAnalysisServices","features":[484]},{"name":"struuidNodetypeSceEventLog","features":[484]},{"name":"struuidNodetypeSceTemplateServices","features":[484]}],"488":[{"name":"BINARY_BLOB_CREDENTIAL_INFO","features":[479]},{"name":"BinaryBlobCredential","features":[479]},{"name":"BinaryBlobForSystem","features":[479]},{"name":"CERT_CREDENTIAL_INFO","features":[479]},{"name":"CERT_HASH_LENGTH","features":[479]},{"name":"CREDENTIALA","features":[305,479]},{"name":"CREDENTIALW","features":[305,479]},{"name":"CREDENTIAL_ATTRIBUTEA","features":[479]},{"name":"CREDENTIAL_ATTRIBUTEW","features":[479]},{"name":"CREDENTIAL_TARGET_INFORMATIONA","features":[479]},{"name":"CREDENTIAL_TARGET_INFORMATIONW","features":[479]},{"name":"CREDSPP_SUBMIT_TYPE","features":[479]},{"name":"CREDSSP_CRED","features":[479]},{"name":"CREDSSP_CRED_EX","features":[479]},{"name":"CREDSSP_CRED_EX_VERSION","features":[479]},{"name":"CREDSSP_FLAG_REDIRECT","features":[479]},{"name":"CREDSSP_NAME","features":[479]},{"name":"CREDSSP_SERVER_AUTH_CERTIFICATE","features":[479]},{"name":"CREDSSP_SERVER_AUTH_LOOPBACK","features":[479]},{"name":"CREDSSP_SERVER_AUTH_NEGOTIATE","features":[479]},{"name":"CREDUIWIN_AUTHPACKAGE_ONLY","features":[479]},{"name":"CREDUIWIN_CHECKBOX","features":[479]},{"name":"CREDUIWIN_DOWNLEVEL_HELLO_AS_SMART_CARD","features":[479]},{"name":"CREDUIWIN_ENUMERATE_ADMINS","features":[479]},{"name":"CREDUIWIN_ENUMERATE_CURRENT_USER","features":[479]},{"name":"CREDUIWIN_FLAGS","features":[479]},{"name":"CREDUIWIN_GENERIC","features":[479]},{"name":"CREDUIWIN_IGNORE_CLOUDAUTHORITY_NAME","features":[479]},{"name":"CREDUIWIN_IN_CRED_ONLY","features":[479]},{"name":"CREDUIWIN_PACK_32_WOW","features":[479]},{"name":"CREDUIWIN_PREPROMPTING","features":[479]},{"name":"CREDUIWIN_SECURE_PROMPT","features":[479]},{"name":"CREDUI_FLAGS","features":[479]},{"name":"CREDUI_FLAGS_ALWAYS_SHOW_UI","features":[479]},{"name":"CREDUI_FLAGS_COMPLETE_USERNAME","features":[479]},{"name":"CREDUI_FLAGS_DO_NOT_PERSIST","features":[479]},{"name":"CREDUI_FLAGS_EXCLUDE_CERTIFICATES","features":[479]},{"name":"CREDUI_FLAGS_EXPECT_CONFIRMATION","features":[479]},{"name":"CREDUI_FLAGS_GENERIC_CREDENTIALS","features":[479]},{"name":"CREDUI_FLAGS_INCORRECT_PASSWORD","features":[479]},{"name":"CREDUI_FLAGS_KEEP_USERNAME","features":[479]},{"name":"CREDUI_FLAGS_PASSWORD_ONLY_OK","features":[479]},{"name":"CREDUI_FLAGS_PERSIST","features":[479]},{"name":"CREDUI_FLAGS_REQUEST_ADMINISTRATOR","features":[479]},{"name":"CREDUI_FLAGS_REQUIRE_CERTIFICATE","features":[479]},{"name":"CREDUI_FLAGS_REQUIRE_SMARTCARD","features":[479]},{"name":"CREDUI_FLAGS_SERVER_CREDENTIAL","features":[479]},{"name":"CREDUI_FLAGS_SHOW_SAVE_CHECK_BOX","features":[479]},{"name":"CREDUI_FLAGS_USERNAME_TARGET_CREDENTIALS","features":[479]},{"name":"CREDUI_FLAGS_VALIDATE_USERNAME","features":[479]},{"name":"CREDUI_INFOA","features":[305,316,479]},{"name":"CREDUI_INFOW","features":[305,316,479]},{"name":"CREDUI_MAX_CAPTION_LENGTH","features":[479]},{"name":"CREDUI_MAX_DOMAIN_TARGET_LENGTH","features":[479]},{"name":"CREDUI_MAX_GENERIC_TARGET_LENGTH","features":[479]},{"name":"CREDUI_MAX_MESSAGE_LENGTH","features":[479]},{"name":"CREDUI_MAX_USERNAME_LENGTH","features":[479]},{"name":"CRED_ALLOW_NAME_RESOLUTION","features":[479]},{"name":"CRED_CACHE_TARGET_INFORMATION","features":[479]},{"name":"CRED_ENUMERATE_ALL_CREDENTIALS","features":[479]},{"name":"CRED_ENUMERATE_FLAGS","features":[479]},{"name":"CRED_FLAGS","features":[479]},{"name":"CRED_FLAGS_NGC_CERT","features":[479]},{"name":"CRED_FLAGS_OWF_CRED_BLOB","features":[479]},{"name":"CRED_FLAGS_PASSWORD_FOR_CERT","features":[479]},{"name":"CRED_FLAGS_PROMPT_NOW","features":[479]},{"name":"CRED_FLAGS_REQUIRE_CONFIRMATION","features":[479]},{"name":"CRED_FLAGS_USERNAME_TARGET","features":[479]},{"name":"CRED_FLAGS_VALID_FLAGS","features":[479]},{"name":"CRED_FLAGS_VALID_INPUT_FLAGS","features":[479]},{"name":"CRED_FLAGS_VSM_PROTECTED","features":[479]},{"name":"CRED_FLAGS_WILDCARD_MATCH","features":[479]},{"name":"CRED_LOGON_TYPES_MASK","features":[479]},{"name":"CRED_MARSHAL_TYPE","features":[479]},{"name":"CRED_MAX_ATTRIBUTES","features":[479]},{"name":"CRED_MAX_CREDENTIAL_BLOB_SIZE","features":[479]},{"name":"CRED_MAX_DOMAIN_TARGET_NAME_LENGTH","features":[479]},{"name":"CRED_MAX_GENERIC_TARGET_NAME_LENGTH","features":[479]},{"name":"CRED_MAX_STRING_LENGTH","features":[479]},{"name":"CRED_MAX_TARGETNAME_ATTRIBUTE_LENGTH","features":[479]},{"name":"CRED_MAX_TARGETNAME_NAMESPACE_LENGTH","features":[479]},{"name":"CRED_MAX_USERNAME_LENGTH","features":[479]},{"name":"CRED_MAX_VALUE_SIZE","features":[479]},{"name":"CRED_PACK_FLAGS","features":[479]},{"name":"CRED_PACK_GENERIC_CREDENTIALS","features":[479]},{"name":"CRED_PACK_ID_PROVIDER_CREDENTIALS","features":[479]},{"name":"CRED_PACK_PROTECTED_CREDENTIALS","features":[479]},{"name":"CRED_PACK_WOW_BUFFER","features":[479]},{"name":"CRED_PERSIST","features":[479]},{"name":"CRED_PERSIST_ENTERPRISE","features":[479]},{"name":"CRED_PERSIST_LOCAL_MACHINE","features":[479]},{"name":"CRED_PERSIST_NONE","features":[479]},{"name":"CRED_PERSIST_SESSION","features":[479]},{"name":"CRED_PRESERVE_CREDENTIAL_BLOB","features":[479]},{"name":"CRED_PROTECTION_TYPE","features":[479]},{"name":"CRED_PROTECT_AS_SELF","features":[479]},{"name":"CRED_PROTECT_TO_SYSTEM","features":[479]},{"name":"CRED_SESSION_WILDCARD_NAME","features":[479]},{"name":"CRED_SESSION_WILDCARD_NAME_A","features":[479]},{"name":"CRED_SESSION_WILDCARD_NAME_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_BATCH_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NAME_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_NETWORK_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_SERVICE_W","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_A","features":[479]},{"name":"CRED_TARGETNAME_ATTRIBUTE_TARGET_W","features":[479]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE","features":[479]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_A","features":[479]},{"name":"CRED_TARGETNAME_DOMAIN_NAMESPACE_W","features":[479]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_A","features":[479]},{"name":"CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_W","features":[479]},{"name":"CRED_TI_CREATE_EXPLICIT_CRED","features":[479]},{"name":"CRED_TI_DNSTREE_IS_DFS_SERVER","features":[479]},{"name":"CRED_TI_DOMAIN_FORMAT_UNKNOWN","features":[479]},{"name":"CRED_TI_ONLY_PASSWORD_REQUIRED","features":[479]},{"name":"CRED_TI_SERVER_FORMAT_UNKNOWN","features":[479]},{"name":"CRED_TI_USERNAME_TARGET","features":[479]},{"name":"CRED_TI_VALID_FLAGS","features":[479]},{"name":"CRED_TI_WORKGROUP_MEMBER","features":[479]},{"name":"CRED_TYPE","features":[479]},{"name":"CRED_TYPE_DOMAIN_CERTIFICATE","features":[479]},{"name":"CRED_TYPE_DOMAIN_EXTENDED","features":[479]},{"name":"CRED_TYPE_DOMAIN_PASSWORD","features":[479]},{"name":"CRED_TYPE_DOMAIN_VISIBLE_PASSWORD","features":[479]},{"name":"CRED_TYPE_GENERIC","features":[479]},{"name":"CRED_TYPE_GENERIC_CERTIFICATE","features":[479]},{"name":"CRED_TYPE_MAXIMUM","features":[479]},{"name":"CRED_TYPE_MAXIMUM_EX","features":[479]},{"name":"CRED_UNPROTECT_ALLOW_TO_SYSTEM","features":[479]},{"name":"CRED_UNPROTECT_AS_SELF","features":[479]},{"name":"CertCredential","features":[479]},{"name":"CredDeleteA","features":[305,479]},{"name":"CredDeleteW","features":[305,479]},{"name":"CredEnumerateA","features":[305,479]},{"name":"CredEnumerateW","features":[305,479]},{"name":"CredFindBestCredentialA","features":[305,479]},{"name":"CredFindBestCredentialW","features":[305,479]},{"name":"CredForSystemProtection","features":[479]},{"name":"CredFree","features":[479]},{"name":"CredGetSessionTypes","features":[305,479]},{"name":"CredGetTargetInfoA","features":[305,479]},{"name":"CredGetTargetInfoW","features":[305,479]},{"name":"CredIsMarshaledCredentialA","features":[305,479]},{"name":"CredIsMarshaledCredentialW","features":[305,479]},{"name":"CredIsProtectedA","features":[305,479]},{"name":"CredIsProtectedW","features":[305,479]},{"name":"CredMarshalCredentialA","features":[305,479]},{"name":"CredMarshalCredentialW","features":[305,479]},{"name":"CredPackAuthenticationBufferA","features":[305,479]},{"name":"CredPackAuthenticationBufferW","features":[305,479]},{"name":"CredProtectA","features":[305,479]},{"name":"CredProtectW","features":[305,479]},{"name":"CredReadA","features":[305,479]},{"name":"CredReadDomainCredentialsA","features":[305,479]},{"name":"CredReadDomainCredentialsW","features":[305,479]},{"name":"CredReadW","features":[305,479]},{"name":"CredRenameA","features":[305,479]},{"name":"CredRenameW","features":[305,479]},{"name":"CredTrustedProtection","features":[479]},{"name":"CredUICmdLinePromptForCredentialsA","features":[305,479]},{"name":"CredUICmdLinePromptForCredentialsW","features":[305,479]},{"name":"CredUIConfirmCredentialsA","features":[305,479]},{"name":"CredUIConfirmCredentialsW","features":[305,479]},{"name":"CredUIParseUserNameA","features":[305,479]},{"name":"CredUIParseUserNameW","features":[305,479]},{"name":"CredUIPromptForCredentialsA","features":[305,316,479]},{"name":"CredUIPromptForCredentialsW","features":[305,316,479]},{"name":"CredUIPromptForWindowsCredentialsA","features":[305,316,479]},{"name":"CredUIPromptForWindowsCredentialsW","features":[305,316,479]},{"name":"CredUIReadSSOCredW","features":[479]},{"name":"CredUIStoreSSOCredW","features":[305,479]},{"name":"CredUnPackAuthenticationBufferA","features":[305,479]},{"name":"CredUnPackAuthenticationBufferW","features":[305,479]},{"name":"CredUnmarshalCredentialA","features":[305,479]},{"name":"CredUnmarshalCredentialW","features":[305,479]},{"name":"CredUnprotectA","features":[305,479]},{"name":"CredUnprotectW","features":[305,479]},{"name":"CredUnprotected","features":[479]},{"name":"CredUserProtection","features":[479]},{"name":"CredWriteA","features":[305,479]},{"name":"CredWriteDomainCredentialsA","features":[305,479]},{"name":"CredWriteDomainCredentialsW","features":[305,479]},{"name":"CredWriteW","features":[305,479]},{"name":"CredsspCertificateCreds","features":[479]},{"name":"CredsspCredEx","features":[479]},{"name":"CredsspPasswordCreds","features":[479]},{"name":"CredsspSchannelCreds","features":[479]},{"name":"CredsspSubmitBufferBoth","features":[479]},{"name":"CredsspSubmitBufferBothOld","features":[479]},{"name":"FILE_DEVICE_SMARTCARD","features":[479]},{"name":"GUID_DEVINTERFACE_SMARTCARD_READER","features":[479]},{"name":"GetOpenCardNameA","features":[305,479]},{"name":"GetOpenCardNameW","features":[305,479]},{"name":"KeyCredentialManagerFreeInformation","features":[479]},{"name":"KeyCredentialManagerGetInformation","features":[479]},{"name":"KeyCredentialManagerGetOperationErrorStates","features":[305,479]},{"name":"KeyCredentialManagerInfo","features":[479]},{"name":"KeyCredentialManagerOperationErrorStateCertificateFailure","features":[479]},{"name":"KeyCredentialManagerOperationErrorStateDeviceJoinFailure","features":[479]},{"name":"KeyCredentialManagerOperationErrorStateHardwareFailure","features":[479]},{"name":"KeyCredentialManagerOperationErrorStateNone","features":[479]},{"name":"KeyCredentialManagerOperationErrorStatePinExistsFailure","features":[479]},{"name":"KeyCredentialManagerOperationErrorStatePolicyFailure","features":[479]},{"name":"KeyCredentialManagerOperationErrorStateRemoteSessionFailure","features":[479]},{"name":"KeyCredentialManagerOperationErrorStateTokenFailure","features":[479]},{"name":"KeyCredentialManagerOperationErrorStates","features":[479]},{"name":"KeyCredentialManagerOperationType","features":[479]},{"name":"KeyCredentialManagerPinChange","features":[479]},{"name":"KeyCredentialManagerPinReset","features":[479]},{"name":"KeyCredentialManagerProvisioning","features":[479]},{"name":"KeyCredentialManagerShowUIOperation","features":[305,479]},{"name":"LPOCNCHKPROC","features":[305,479]},{"name":"LPOCNCONNPROCA","features":[479]},{"name":"LPOCNCONNPROCW","features":[479]},{"name":"LPOCNDSCPROC","features":[479]},{"name":"MAXIMUM_ATTR_STRING_LENGTH","features":[479]},{"name":"MAXIMUM_SMARTCARD_READERS","features":[479]},{"name":"OPENCARDNAMEA","features":[305,479]},{"name":"OPENCARDNAMEW","features":[305,479]},{"name":"OPENCARDNAME_EXA","features":[305,479,367]},{"name":"OPENCARDNAME_EXW","features":[305,479,367]},{"name":"OPENCARD_SEARCH_CRITERIAA","features":[305,479]},{"name":"OPENCARD_SEARCH_CRITERIAW","features":[305,479]},{"name":"READER_SEL_REQUEST","features":[479]},{"name":"READER_SEL_REQUEST_MATCH_TYPE","features":[479]},{"name":"READER_SEL_RESPONSE","features":[479]},{"name":"RSR_MATCH_TYPE_ALL_CARDS","features":[479]},{"name":"RSR_MATCH_TYPE_READER_AND_CONTAINER","features":[479]},{"name":"RSR_MATCH_TYPE_SERIAL_NUMBER","features":[479]},{"name":"SCARD_ABSENT","features":[479]},{"name":"SCARD_ALL_READERS","features":[479]},{"name":"SCARD_ATRMASK","features":[479]},{"name":"SCARD_ATR_LENGTH","features":[479]},{"name":"SCARD_AUDIT_CHV_FAILURE","features":[479]},{"name":"SCARD_AUDIT_CHV_SUCCESS","features":[479]},{"name":"SCARD_CLASS_COMMUNICATIONS","features":[479]},{"name":"SCARD_CLASS_ICC_STATE","features":[479]},{"name":"SCARD_CLASS_IFD_PROTOCOL","features":[479]},{"name":"SCARD_CLASS_MECHANICAL","features":[479]},{"name":"SCARD_CLASS_PERF","features":[479]},{"name":"SCARD_CLASS_POWER_MGMT","features":[479]},{"name":"SCARD_CLASS_PROTOCOL","features":[479]},{"name":"SCARD_CLASS_SECURITY","features":[479]},{"name":"SCARD_CLASS_SYSTEM","features":[479]},{"name":"SCARD_CLASS_VENDOR_DEFINED","features":[479]},{"name":"SCARD_CLASS_VENDOR_INFO","features":[479]},{"name":"SCARD_COLD_RESET","features":[479]},{"name":"SCARD_DEFAULT_READERS","features":[479]},{"name":"SCARD_EJECT_CARD","features":[479]},{"name":"SCARD_IO_REQUEST","features":[479]},{"name":"SCARD_LEAVE_CARD","features":[479]},{"name":"SCARD_LOCAL_READERS","features":[479]},{"name":"SCARD_NEGOTIABLE","features":[479]},{"name":"SCARD_POWERED","features":[479]},{"name":"SCARD_POWER_DOWN","features":[479]},{"name":"SCARD_PRESENT","features":[479]},{"name":"SCARD_PROTOCOL_DEFAULT","features":[479]},{"name":"SCARD_PROTOCOL_OPTIMAL","features":[479]},{"name":"SCARD_PROTOCOL_RAW","features":[479]},{"name":"SCARD_PROTOCOL_T0","features":[479]},{"name":"SCARD_PROTOCOL_T1","features":[479]},{"name":"SCARD_PROTOCOL_UNDEFINED","features":[479]},{"name":"SCARD_PROVIDER_CSP","features":[479]},{"name":"SCARD_PROVIDER_KSP","features":[479]},{"name":"SCARD_PROVIDER_PRIMARY","features":[479]},{"name":"SCARD_READERSTATEA","features":[479]},{"name":"SCARD_READERSTATEW","features":[479]},{"name":"SCARD_READER_CONFISCATES","features":[479]},{"name":"SCARD_READER_CONTACTLESS","features":[479]},{"name":"SCARD_READER_EJECTS","features":[479]},{"name":"SCARD_READER_SWALLOWS","features":[479]},{"name":"SCARD_READER_TYPE_EMBEDDEDSE","features":[479]},{"name":"SCARD_READER_TYPE_IDE","features":[479]},{"name":"SCARD_READER_TYPE_KEYBOARD","features":[479]},{"name":"SCARD_READER_TYPE_NFC","features":[479]},{"name":"SCARD_READER_TYPE_NGC","features":[479]},{"name":"SCARD_READER_TYPE_PARALELL","features":[479]},{"name":"SCARD_READER_TYPE_PCMCIA","features":[479]},{"name":"SCARD_READER_TYPE_SCSI","features":[479]},{"name":"SCARD_READER_TYPE_SERIAL","features":[479]},{"name":"SCARD_READER_TYPE_TPM","features":[479]},{"name":"SCARD_READER_TYPE_UICC","features":[479]},{"name":"SCARD_READER_TYPE_USB","features":[479]},{"name":"SCARD_READER_TYPE_VENDOR","features":[479]},{"name":"SCARD_RESET_CARD","features":[479]},{"name":"SCARD_SCOPE","features":[479]},{"name":"SCARD_SCOPE_SYSTEM","features":[479]},{"name":"SCARD_SCOPE_TERMINAL","features":[479]},{"name":"SCARD_SCOPE_USER","features":[479]},{"name":"SCARD_SHARE_DIRECT","features":[479]},{"name":"SCARD_SHARE_EXCLUSIVE","features":[479]},{"name":"SCARD_SHARE_SHARED","features":[479]},{"name":"SCARD_SPECIFIC","features":[479]},{"name":"SCARD_STATE","features":[479]},{"name":"SCARD_STATE_ATRMATCH","features":[479]},{"name":"SCARD_STATE_CHANGED","features":[479]},{"name":"SCARD_STATE_EMPTY","features":[479]},{"name":"SCARD_STATE_EXCLUSIVE","features":[479]},{"name":"SCARD_STATE_IGNORE","features":[479]},{"name":"SCARD_STATE_INUSE","features":[479]},{"name":"SCARD_STATE_MUTE","features":[479]},{"name":"SCARD_STATE_PRESENT","features":[479]},{"name":"SCARD_STATE_UNAVAILABLE","features":[479]},{"name":"SCARD_STATE_UNAWARE","features":[479]},{"name":"SCARD_STATE_UNKNOWN","features":[479]},{"name":"SCARD_STATE_UNPOWERED","features":[479]},{"name":"SCARD_SWALLOWED","features":[479]},{"name":"SCARD_SYSTEM_READERS","features":[479]},{"name":"SCARD_T0_CMD_LENGTH","features":[479]},{"name":"SCARD_T0_COMMAND","features":[479]},{"name":"SCARD_T0_HEADER_LENGTH","features":[479]},{"name":"SCARD_T0_REQUEST","features":[479]},{"name":"SCARD_T1_EPILOGUE_LENGTH","features":[479]},{"name":"SCARD_T1_EPILOGUE_LENGTH_LRC","features":[479]},{"name":"SCARD_T1_MAX_IFS","features":[479]},{"name":"SCARD_T1_PROLOGUE_LENGTH","features":[479]},{"name":"SCARD_T1_REQUEST","features":[479]},{"name":"SCARD_UNKNOWN","features":[479]},{"name":"SCARD_UNPOWER_CARD","features":[479]},{"name":"SCARD_WARM_RESET","features":[479]},{"name":"SCERR_NOCARDNAME","features":[479]},{"name":"SCERR_NOGUIDS","features":[479]},{"name":"SC_DLG_FORCE_UI","features":[479]},{"name":"SC_DLG_MINIMAL_UI","features":[479]},{"name":"SC_DLG_NO_UI","features":[479]},{"name":"SCardAccessStartedEvent","features":[305,479]},{"name":"SCardAddReaderToGroupA","features":[479]},{"name":"SCardAddReaderToGroupW","features":[479]},{"name":"SCardAudit","features":[479]},{"name":"SCardBeginTransaction","features":[479]},{"name":"SCardCancel","features":[479]},{"name":"SCardConnectA","features":[479]},{"name":"SCardConnectW","features":[479]},{"name":"SCardControl","features":[479]},{"name":"SCardDisconnect","features":[479]},{"name":"SCardDlgExtendedError","features":[479]},{"name":"SCardEndTransaction","features":[479]},{"name":"SCardEstablishContext","features":[479]},{"name":"SCardForgetCardTypeA","features":[479]},{"name":"SCardForgetCardTypeW","features":[479]},{"name":"SCardForgetReaderA","features":[479]},{"name":"SCardForgetReaderGroupA","features":[479]},{"name":"SCardForgetReaderGroupW","features":[479]},{"name":"SCardForgetReaderW","features":[479]},{"name":"SCardFreeMemory","features":[479]},{"name":"SCardGetAttrib","features":[479]},{"name":"SCardGetCardTypeProviderNameA","features":[479]},{"name":"SCardGetCardTypeProviderNameW","features":[479]},{"name":"SCardGetDeviceTypeIdA","features":[479]},{"name":"SCardGetDeviceTypeIdW","features":[479]},{"name":"SCardGetProviderIdA","features":[479]},{"name":"SCardGetProviderIdW","features":[479]},{"name":"SCardGetReaderDeviceInstanceIdA","features":[479]},{"name":"SCardGetReaderDeviceInstanceIdW","features":[479]},{"name":"SCardGetReaderIconA","features":[479]},{"name":"SCardGetReaderIconW","features":[479]},{"name":"SCardGetStatusChangeA","features":[479]},{"name":"SCardGetStatusChangeW","features":[479]},{"name":"SCardGetTransmitCount","features":[479]},{"name":"SCardIntroduceCardTypeA","features":[479]},{"name":"SCardIntroduceCardTypeW","features":[479]},{"name":"SCardIntroduceReaderA","features":[479]},{"name":"SCardIntroduceReaderGroupA","features":[479]},{"name":"SCardIntroduceReaderGroupW","features":[479]},{"name":"SCardIntroduceReaderW","features":[479]},{"name":"SCardIsValidContext","features":[479]},{"name":"SCardListCardsA","features":[479]},{"name":"SCardListCardsW","features":[479]},{"name":"SCardListInterfacesA","features":[479]},{"name":"SCardListInterfacesW","features":[479]},{"name":"SCardListReaderGroupsA","features":[479]},{"name":"SCardListReaderGroupsW","features":[479]},{"name":"SCardListReadersA","features":[479]},{"name":"SCardListReadersW","features":[479]},{"name":"SCardListReadersWithDeviceInstanceIdA","features":[479]},{"name":"SCardListReadersWithDeviceInstanceIdW","features":[479]},{"name":"SCardLocateCardsA","features":[479]},{"name":"SCardLocateCardsByATRA","features":[479]},{"name":"SCardLocateCardsByATRW","features":[479]},{"name":"SCardLocateCardsW","features":[479]},{"name":"SCardReadCacheA","features":[479]},{"name":"SCardReadCacheW","features":[479]},{"name":"SCardReconnect","features":[479]},{"name":"SCardReleaseContext","features":[479]},{"name":"SCardReleaseStartedEvent","features":[479]},{"name":"SCardRemoveReaderFromGroupA","features":[479]},{"name":"SCardRemoveReaderFromGroupW","features":[479]},{"name":"SCardSetAttrib","features":[479]},{"name":"SCardSetCardTypeProviderNameA","features":[479]},{"name":"SCardSetCardTypeProviderNameW","features":[479]},{"name":"SCardState","features":[479]},{"name":"SCardStatusA","features":[479]},{"name":"SCardStatusW","features":[479]},{"name":"SCardTransmit","features":[479]},{"name":"SCardUIDlgSelectCardA","features":[305,479,367]},{"name":"SCardUIDlgSelectCardW","features":[305,479,367]},{"name":"SCardWriteCacheA","features":[479]},{"name":"SCardWriteCacheW","features":[479]},{"name":"SECPKG_ALT_ATTR","features":[479]},{"name":"SECPKG_ATTR_C_FULL_IDENT_TOKEN","features":[479]},{"name":"STATUS_ACCOUNT_DISABLED","features":[305,479]},{"name":"STATUS_ACCOUNT_EXPIRED","features":[305,479]},{"name":"STATUS_ACCOUNT_LOCKED_OUT","features":[305,479]},{"name":"STATUS_ACCOUNT_RESTRICTION","features":[305,479]},{"name":"STATUS_AUTHENTICATION_FIREWALL_FAILED","features":[305,479]},{"name":"STATUS_DOWNGRADE_DETECTED","features":[305,479]},{"name":"STATUS_LOGON_FAILURE","features":[305,479]},{"name":"STATUS_LOGON_TYPE_NOT_GRANTED","features":[305,479]},{"name":"STATUS_NO_SUCH_LOGON_SESSION","features":[305,479]},{"name":"STATUS_NO_SUCH_USER","features":[305,479]},{"name":"STATUS_PASSWORD_EXPIRED","features":[305,479]},{"name":"STATUS_PASSWORD_MUST_CHANGE","features":[305,479]},{"name":"STATUS_WRONG_PASSWORD","features":[305,479]},{"name":"SecHandle","features":[479]},{"name":"SecPkgContext_ClientCreds","features":[479]},{"name":"TS_SSP_NAME","features":[479]},{"name":"TS_SSP_NAME_A","features":[479]},{"name":"USERNAME_TARGET_CREDENTIAL_INFO","features":[479]},{"name":"UsernameForPackedCredentials","features":[479]},{"name":"UsernameTargetCredential","features":[479]},{"name":"szOID_TS_KP_TS_SERVER_AUTH","features":[479]}],"489":[{"name":"ALG_CLASS_ALL","features":[389]},{"name":"ALG_CLASS_ANY","features":[389]},{"name":"ALG_CLASS_DATA_ENCRYPT","features":[389]},{"name":"ALG_CLASS_HASH","features":[389]},{"name":"ALG_CLASS_KEY_EXCHANGE","features":[389]},{"name":"ALG_CLASS_MSG_ENCRYPT","features":[389]},{"name":"ALG_CLASS_SIGNATURE","features":[389]},{"name":"ALG_ID","features":[389]},{"name":"ALG_SID_3DES","features":[389]},{"name":"ALG_SID_3DES_112","features":[389]},{"name":"ALG_SID_AES","features":[389]},{"name":"ALG_SID_AES_128","features":[389]},{"name":"ALG_SID_AES_192","features":[389]},{"name":"ALG_SID_AES_256","features":[389]},{"name":"ALG_SID_AGREED_KEY_ANY","features":[389]},{"name":"ALG_SID_ANY","features":[389]},{"name":"ALG_SID_CAST","features":[389]},{"name":"ALG_SID_CYLINK_MEK","features":[389]},{"name":"ALG_SID_DES","features":[389]},{"name":"ALG_SID_DESX","features":[389]},{"name":"ALG_SID_DH_EPHEM","features":[389]},{"name":"ALG_SID_DH_SANDF","features":[389]},{"name":"ALG_SID_DSS_ANY","features":[389]},{"name":"ALG_SID_DSS_DMS","features":[389]},{"name":"ALG_SID_DSS_PKCS","features":[389]},{"name":"ALG_SID_ECDH","features":[389]},{"name":"ALG_SID_ECDH_EPHEM","features":[389]},{"name":"ALG_SID_ECDSA","features":[389]},{"name":"ALG_SID_ECMQV","features":[389]},{"name":"ALG_SID_EXAMPLE","features":[389]},{"name":"ALG_SID_HASH_REPLACE_OWF","features":[389]},{"name":"ALG_SID_HMAC","features":[389]},{"name":"ALG_SID_IDEA","features":[389]},{"name":"ALG_SID_KEA","features":[389]},{"name":"ALG_SID_MAC","features":[389]},{"name":"ALG_SID_MD2","features":[389]},{"name":"ALG_SID_MD4","features":[389]},{"name":"ALG_SID_MD5","features":[389]},{"name":"ALG_SID_PCT1_MASTER","features":[389]},{"name":"ALG_SID_RC2","features":[389]},{"name":"ALG_SID_RC4","features":[389]},{"name":"ALG_SID_RC5","features":[389]},{"name":"ALG_SID_RIPEMD","features":[389]},{"name":"ALG_SID_RIPEMD160","features":[389]},{"name":"ALG_SID_RSA_ANY","features":[389]},{"name":"ALG_SID_RSA_ENTRUST","features":[389]},{"name":"ALG_SID_RSA_MSATWORK","features":[389]},{"name":"ALG_SID_RSA_PGP","features":[389]},{"name":"ALG_SID_RSA_PKCS","features":[389]},{"name":"ALG_SID_SAFERSK128","features":[389]},{"name":"ALG_SID_SAFERSK64","features":[389]},{"name":"ALG_SID_SCHANNEL_ENC_KEY","features":[389]},{"name":"ALG_SID_SCHANNEL_MAC_KEY","features":[389]},{"name":"ALG_SID_SCHANNEL_MASTER_HASH","features":[389]},{"name":"ALG_SID_SEAL","features":[389]},{"name":"ALG_SID_SHA","features":[389]},{"name":"ALG_SID_SHA1","features":[389]},{"name":"ALG_SID_SHA_256","features":[389]},{"name":"ALG_SID_SHA_384","features":[389]},{"name":"ALG_SID_SHA_512","features":[389]},{"name":"ALG_SID_SKIPJACK","features":[389]},{"name":"ALG_SID_SSL2_MASTER","features":[389]},{"name":"ALG_SID_SSL3SHAMD5","features":[389]},{"name":"ALG_SID_SSL3_MASTER","features":[389]},{"name":"ALG_SID_TEK","features":[389]},{"name":"ALG_SID_THIRDPARTY_ANY","features":[389]},{"name":"ALG_SID_TLS1PRF","features":[389]},{"name":"ALG_SID_TLS1_MASTER","features":[389]},{"name":"ALG_TYPE_ANY","features":[389]},{"name":"ALG_TYPE_BLOCK","features":[389]},{"name":"ALG_TYPE_DH","features":[389]},{"name":"ALG_TYPE_DSS","features":[389]},{"name":"ALG_TYPE_ECDH","features":[389]},{"name":"ALG_TYPE_RSA","features":[389]},{"name":"ALG_TYPE_SECURECHANNEL","features":[389]},{"name":"ALG_TYPE_STREAM","features":[389]},{"name":"ALG_TYPE_THIRDPARTY","features":[389]},{"name":"AT_ECDHE_P256","features":[389]},{"name":"AT_ECDHE_P384","features":[389]},{"name":"AT_ECDHE_P521","features":[389]},{"name":"AT_ECDSA_P256","features":[389]},{"name":"AT_ECDSA_P384","features":[389]},{"name":"AT_ECDSA_P521","features":[389]},{"name":"AT_KEYEXCHANGE","features":[389]},{"name":"AT_SIGNATURE","features":[389]},{"name":"AUDIT_CARD_DELETE","features":[389]},{"name":"AUDIT_CARD_IMPORT","features":[389]},{"name":"AUDIT_CARD_WRITTEN","features":[389]},{"name":"AUDIT_SERVICE_IDLE_STOP","features":[389]},{"name":"AUDIT_STORE_DELETE","features":[389]},{"name":"AUDIT_STORE_EXPORT","features":[389]},{"name":"AUDIT_STORE_IMPORT","features":[389]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_PARA","features":[389]},{"name":"AUTHENTICODE_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[305,389]},{"name":"AUTHENTICODE_TS_EXTRA_CERT_CHAIN_POLICY_PARA","features":[305,389]},{"name":"AUTHTYPE_CLIENT","features":[389]},{"name":"AUTHTYPE_SERVER","features":[389]},{"name":"AdminCreateDeleteDirAc","features":[389]},{"name":"AdminReadWriteAc","features":[389]},{"name":"AdministratorPin","features":[389]},{"name":"AlphaNumericPinType","features":[389]},{"name":"AuthenticationPin","features":[389]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_CA_FLAG","features":[389]},{"name":"BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_END_ENTITY_FLAG","features":[389]},{"name":"BCRYPTBUFFER_VERSION","features":[389]},{"name":"BCRYPTGENRANDOM_FLAGS","features":[389]},{"name":"BCRYPT_3DES_112_ALGORITHM","features":[389]},{"name":"BCRYPT_3DES_112_CBC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_3DES_112_CFB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_3DES_112_ECB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_3DES_ALGORITHM","features":[389]},{"name":"BCRYPT_3DES_CBC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_3DES_CFB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_3DES_ECB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_ALGORITHM","features":[389]},{"name":"BCRYPT_AES_CBC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_CCM_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_CFB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_CMAC_ALGORITHM","features":[389]},{"name":"BCRYPT_AES_CMAC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_ECB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_GCM_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_GMAC_ALGORITHM","features":[389]},{"name":"BCRYPT_AES_GMAC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_AES_WRAP_KEY_BLOB","features":[389]},{"name":"BCRYPT_ALGORITHM_IDENTIFIER","features":[389]},{"name":"BCRYPT_ALGORITHM_NAME","features":[389]},{"name":"BCRYPT_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ALG_HANDLE_HMAC_FLAG","features":[389]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_FUNCTION_TABLE","features":[305,389]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[389]},{"name":"BCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[389]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO","features":[389]},{"name":"BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO_VERSION","features":[389]},{"name":"BCRYPT_AUTH_MODE_CHAIN_CALLS_FLAG","features":[389]},{"name":"BCRYPT_AUTH_MODE_IN_PROGRESS_FLAG","features":[389]},{"name":"BCRYPT_AUTH_TAG_LENGTH","features":[389]},{"name":"BCRYPT_BLOCK_LENGTH","features":[389]},{"name":"BCRYPT_BLOCK_PADDING","features":[389]},{"name":"BCRYPT_BLOCK_SIZE_LIST","features":[389]},{"name":"BCRYPT_BUFFERS_LOCKED_FLAG","features":[389]},{"name":"BCRYPT_CAPI_AES_FLAG","features":[389]},{"name":"BCRYPT_CAPI_KDF_ALGORITHM","features":[389]},{"name":"BCRYPT_CAPI_KDF_ALG_HANDLE","features":[389]},{"name":"BCRYPT_CHACHA20_POLY1305_ALGORITHM","features":[389]},{"name":"BCRYPT_CHACHA20_POLY1305_ALG_HANDLE","features":[389]},{"name":"BCRYPT_CHAINING_MODE","features":[389]},{"name":"BCRYPT_CHAIN_MODE_CBC","features":[389]},{"name":"BCRYPT_CHAIN_MODE_CCM","features":[389]},{"name":"BCRYPT_CHAIN_MODE_CFB","features":[389]},{"name":"BCRYPT_CHAIN_MODE_ECB","features":[389]},{"name":"BCRYPT_CHAIN_MODE_GCM","features":[389]},{"name":"BCRYPT_CHAIN_MODE_NA","features":[389]},{"name":"BCRYPT_CIPHER_FUNCTION_TABLE","features":[305,389]},{"name":"BCRYPT_CIPHER_INTERFACE","features":[389]},{"name":"BCRYPT_CIPHER_OPERATION","features":[389]},{"name":"BCRYPT_COPY_AFTER_PADDING_CHECK_FAILURE_FLAG","features":[389]},{"name":"BCRYPT_DESX_ALGORITHM","features":[389]},{"name":"BCRYPT_DESX_CBC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DESX_CFB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DESX_ECB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DES_ALGORITHM","features":[389]},{"name":"BCRYPT_DES_CBC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DES_CFB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DES_ECB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DH_ALGORITHM","features":[389]},{"name":"BCRYPT_DH_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DH_KEY_BLOB","features":[389]},{"name":"BCRYPT_DH_KEY_BLOB_MAGIC","features":[389]},{"name":"BCRYPT_DH_PARAMETERS","features":[389]},{"name":"BCRYPT_DH_PARAMETERS_MAGIC","features":[389]},{"name":"BCRYPT_DH_PARAMETER_HEADER","features":[389]},{"name":"BCRYPT_DH_PRIVATE_BLOB","features":[389]},{"name":"BCRYPT_DH_PRIVATE_MAGIC","features":[389]},{"name":"BCRYPT_DH_PUBLIC_BLOB","features":[389]},{"name":"BCRYPT_DH_PUBLIC_MAGIC","features":[389]},{"name":"BCRYPT_DSA_ALGORITHM","features":[389]},{"name":"BCRYPT_DSA_ALG_HANDLE","features":[389]},{"name":"BCRYPT_DSA_KEY_BLOB","features":[389]},{"name":"BCRYPT_DSA_KEY_BLOB_V2","features":[389]},{"name":"BCRYPT_DSA_MAGIC","features":[389]},{"name":"BCRYPT_DSA_PARAMETERS","features":[389]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC","features":[389]},{"name":"BCRYPT_DSA_PARAMETERS_MAGIC_V2","features":[389]},{"name":"BCRYPT_DSA_PARAMETER_HEADER","features":[389]},{"name":"BCRYPT_DSA_PARAMETER_HEADER_V2","features":[389]},{"name":"BCRYPT_DSA_PRIVATE_BLOB","features":[389]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC","features":[389]},{"name":"BCRYPT_DSA_PRIVATE_MAGIC_V2","features":[389]},{"name":"BCRYPT_DSA_PUBLIC_BLOB","features":[389]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC","features":[389]},{"name":"BCRYPT_DSA_PUBLIC_MAGIC_V2","features":[389]},{"name":"BCRYPT_ECCFULLKEY_BLOB","features":[389]},{"name":"BCRYPT_ECCFULLPRIVATE_BLOB","features":[389]},{"name":"BCRYPT_ECCFULLPUBLIC_BLOB","features":[389]},{"name":"BCRYPT_ECCKEY_BLOB","features":[389]},{"name":"BCRYPT_ECCPRIVATE_BLOB","features":[389]},{"name":"BCRYPT_ECCPUBLIC_BLOB","features":[389]},{"name":"BCRYPT_ECC_CURVE_25519","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP160T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP192T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP224T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP256T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP320T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP384T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_BRAINPOOLP512T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_EC192WAPI","features":[389]},{"name":"BCRYPT_ECC_CURVE_NAME","features":[389]},{"name":"BCRYPT_ECC_CURVE_NAMES","features":[389]},{"name":"BCRYPT_ECC_CURVE_NAME_LIST","features":[389]},{"name":"BCRYPT_ECC_CURVE_NISTP192","features":[389]},{"name":"BCRYPT_ECC_CURVE_NISTP224","features":[389]},{"name":"BCRYPT_ECC_CURVE_NISTP256","features":[389]},{"name":"BCRYPT_ECC_CURVE_NISTP384","features":[389]},{"name":"BCRYPT_ECC_CURVE_NISTP521","features":[389]},{"name":"BCRYPT_ECC_CURVE_NUMSP256T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_NUMSP384T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_NUMSP512T1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP160K1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP160R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP160R2","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP192K1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP192R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP224K1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP224R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP256K1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP256R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP384R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_SECP521R1","features":[389]},{"name":"BCRYPT_ECC_CURVE_WTLS12","features":[389]},{"name":"BCRYPT_ECC_CURVE_WTLS7","features":[389]},{"name":"BCRYPT_ECC_CURVE_WTLS9","features":[389]},{"name":"BCRYPT_ECC_CURVE_X962P192V1","features":[389]},{"name":"BCRYPT_ECC_CURVE_X962P192V2","features":[389]},{"name":"BCRYPT_ECC_CURVE_X962P192V3","features":[389]},{"name":"BCRYPT_ECC_CURVE_X962P239V1","features":[389]},{"name":"BCRYPT_ECC_CURVE_X962P239V2","features":[389]},{"name":"BCRYPT_ECC_CURVE_X962P239V3","features":[389]},{"name":"BCRYPT_ECC_CURVE_X962P256V1","features":[389]},{"name":"BCRYPT_ECC_FULLKEY_BLOB_V1","features":[389]},{"name":"BCRYPT_ECC_PARAMETERS","features":[389]},{"name":"BCRYPT_ECC_PARAMETERS_MAGIC","features":[389]},{"name":"BCRYPT_ECC_PARAMETER_HEADER","features":[389]},{"name":"BCRYPT_ECC_PARAMETER_HEADER_V1","features":[389]},{"name":"BCRYPT_ECC_PRIME_MONTGOMERY_CURVE","features":[389]},{"name":"BCRYPT_ECC_PRIME_SHORT_WEIERSTRASS_CURVE","features":[389]},{"name":"BCRYPT_ECC_PRIME_TWISTED_EDWARDS_CURVE","features":[389]},{"name":"BCRYPT_ECDH_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDH_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDH_P256_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDH_P256_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDH_P384_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDH_P384_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDH_P521_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDH_P521_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDH_PRIVATE_GENERIC_MAGIC","features":[389]},{"name":"BCRYPT_ECDH_PRIVATE_P256_MAGIC","features":[389]},{"name":"BCRYPT_ECDH_PRIVATE_P384_MAGIC","features":[389]},{"name":"BCRYPT_ECDH_PRIVATE_P521_MAGIC","features":[389]},{"name":"BCRYPT_ECDH_PUBLIC_GENERIC_MAGIC","features":[389]},{"name":"BCRYPT_ECDH_PUBLIC_P256_MAGIC","features":[389]},{"name":"BCRYPT_ECDH_PUBLIC_P384_MAGIC","features":[389]},{"name":"BCRYPT_ECDH_PUBLIC_P521_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDSA_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDSA_P256_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDSA_P256_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDSA_P384_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDSA_P384_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDSA_P521_ALGORITHM","features":[389]},{"name":"BCRYPT_ECDSA_P521_ALG_HANDLE","features":[389]},{"name":"BCRYPT_ECDSA_PRIVATE_GENERIC_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_PRIVATE_P256_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_PRIVATE_P384_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_PRIVATE_P521_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_PUBLIC_GENERIC_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_PUBLIC_P256_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_PUBLIC_P384_MAGIC","features":[389]},{"name":"BCRYPT_ECDSA_PUBLIC_P521_MAGIC","features":[389]},{"name":"BCRYPT_EFFECTIVE_KEY_LENGTH","features":[389]},{"name":"BCRYPT_ENABLE_INCOMPATIBLE_FIPS_CHECKS","features":[389]},{"name":"BCRYPT_EXTENDED_KEYSIZE","features":[389]},{"name":"BCRYPT_FLAGS","features":[389]},{"name":"BCRYPT_GENERATE_IV","features":[389]},{"name":"BCRYPT_GLOBAL_PARAMETERS","features":[389]},{"name":"BCRYPT_HANDLE","features":[389]},{"name":"BCRYPT_HASH_BLOCK_LENGTH","features":[389]},{"name":"BCRYPT_HASH_FUNCTION_TABLE","features":[305,389]},{"name":"BCRYPT_HASH_HANDLE","features":[389]},{"name":"BCRYPT_HASH_INTERFACE","features":[389]},{"name":"BCRYPT_HASH_INTERFACE_MAJORVERSION_2","features":[389]},{"name":"BCRYPT_HASH_LENGTH","features":[389]},{"name":"BCRYPT_HASH_OID_LIST","features":[389]},{"name":"BCRYPT_HASH_OPERATION","features":[389]},{"name":"BCRYPT_HASH_OPERATION_FINISH_HASH","features":[389]},{"name":"BCRYPT_HASH_OPERATION_HASH_DATA","features":[389]},{"name":"BCRYPT_HASH_OPERATION_TYPE","features":[389]},{"name":"BCRYPT_HASH_REUSABLE_FLAG","features":[389]},{"name":"BCRYPT_HKDF_ALGORITHM","features":[389]},{"name":"BCRYPT_HKDF_ALG_HANDLE","features":[389]},{"name":"BCRYPT_HKDF_HASH_ALGORITHM","features":[389]},{"name":"BCRYPT_HKDF_PRK_AND_FINALIZE","features":[389]},{"name":"BCRYPT_HKDF_SALT_AND_FINALIZE","features":[389]},{"name":"BCRYPT_HMAC_MD2_ALG_HANDLE","features":[389]},{"name":"BCRYPT_HMAC_MD4_ALG_HANDLE","features":[389]},{"name":"BCRYPT_HMAC_MD5_ALG_HANDLE","features":[389]},{"name":"BCRYPT_HMAC_SHA1_ALG_HANDLE","features":[389]},{"name":"BCRYPT_HMAC_SHA256_ALG_HANDLE","features":[389]},{"name":"BCRYPT_HMAC_SHA384_ALG_HANDLE","features":[389]},{"name":"BCRYPT_HMAC_SHA512_ALG_HANDLE","features":[389]},{"name":"BCRYPT_INITIALIZATION_VECTOR","features":[389]},{"name":"BCRYPT_INTERFACE","features":[389]},{"name":"BCRYPT_INTERFACE_VERSION","features":[389]},{"name":"BCRYPT_IS_IFX_TPM_WEAK_KEY","features":[389]},{"name":"BCRYPT_IS_KEYED_HASH","features":[389]},{"name":"BCRYPT_IS_REUSABLE_HASH","features":[389]},{"name":"BCRYPT_KDF_HASH","features":[389]},{"name":"BCRYPT_KDF_HKDF","features":[389]},{"name":"BCRYPT_KDF_HMAC","features":[389]},{"name":"BCRYPT_KDF_RAW_SECRET","features":[389]},{"name":"BCRYPT_KDF_SP80056A_CONCAT","features":[389]},{"name":"BCRYPT_KDF_TLS_PRF","features":[389]},{"name":"BCRYPT_KEY_BLOB","features":[389]},{"name":"BCRYPT_KEY_DATA_BLOB","features":[389]},{"name":"BCRYPT_KEY_DATA_BLOB_HEADER","features":[389]},{"name":"BCRYPT_KEY_DATA_BLOB_MAGIC","features":[389]},{"name":"BCRYPT_KEY_DATA_BLOB_VERSION1","features":[389]},{"name":"BCRYPT_KEY_DERIVATION_FUNCTION_TABLE","features":[305,389]},{"name":"BCRYPT_KEY_DERIVATION_INTERFACE","features":[389]},{"name":"BCRYPT_KEY_DERIVATION_OPERATION","features":[389]},{"name":"BCRYPT_KEY_HANDLE","features":[389]},{"name":"BCRYPT_KEY_LENGTH","features":[389]},{"name":"BCRYPT_KEY_LENGTHS","features":[389]},{"name":"BCRYPT_KEY_LENGTHS_STRUCT","features":[389]},{"name":"BCRYPT_KEY_OBJECT_LENGTH","features":[389]},{"name":"BCRYPT_KEY_STRENGTH","features":[389]},{"name":"BCRYPT_KEY_VALIDATION_RANGE","features":[389]},{"name":"BCRYPT_KEY_VALIDATION_RANGE_AND_ORDER","features":[389]},{"name":"BCRYPT_KEY_VALIDATION_REGENERATE","features":[389]},{"name":"BCRYPT_MD2_ALGORITHM","features":[389]},{"name":"BCRYPT_MD2_ALG_HANDLE","features":[389]},{"name":"BCRYPT_MD4_ALGORITHM","features":[389]},{"name":"BCRYPT_MD4_ALG_HANDLE","features":[389]},{"name":"BCRYPT_MD5_ALGORITHM","features":[389]},{"name":"BCRYPT_MD5_ALG_HANDLE","features":[389]},{"name":"BCRYPT_MESSAGE_BLOCK_LENGTH","features":[389]},{"name":"BCRYPT_MULTI_FLAG","features":[389]},{"name":"BCRYPT_MULTI_HASH_OPERATION","features":[389]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH","features":[389]},{"name":"BCRYPT_MULTI_OBJECT_LENGTH_STRUCT","features":[389]},{"name":"BCRYPT_MULTI_OPERATION_TYPE","features":[389]},{"name":"BCRYPT_NO_CURVE_GENERATION_ALG_ID","features":[389]},{"name":"BCRYPT_NO_KEY_VALIDATION","features":[389]},{"name":"BCRYPT_OAEP_PADDING_INFO","features":[389]},{"name":"BCRYPT_OBJECT_ALIGNMENT","features":[389]},{"name":"BCRYPT_OBJECT_LENGTH","features":[389]},{"name":"BCRYPT_OID","features":[389]},{"name":"BCRYPT_OID_LIST","features":[389]},{"name":"BCRYPT_OPAQUE_KEY_BLOB","features":[389]},{"name":"BCRYPT_OPEN_ALGORITHM_PROVIDER_FLAGS","features":[389]},{"name":"BCRYPT_OPERATION","features":[389]},{"name":"BCRYPT_OPERATION_TYPE_HASH","features":[389]},{"name":"BCRYPT_PADDING_SCHEMES","features":[389]},{"name":"BCRYPT_PAD_NONE","features":[389]},{"name":"BCRYPT_PAD_OAEP","features":[389]},{"name":"BCRYPT_PAD_PKCS1","features":[389]},{"name":"BCRYPT_PAD_PKCS1_OPTIONAL_HASH_OID","features":[389]},{"name":"BCRYPT_PAD_PSS","features":[389]},{"name":"BCRYPT_PBKDF2_ALGORITHM","features":[389]},{"name":"BCRYPT_PBKDF2_ALG_HANDLE","features":[389]},{"name":"BCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[389]},{"name":"BCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[389]},{"name":"BCRYPT_PKCS1_PADDING_INFO","features":[389]},{"name":"BCRYPT_PRIMITIVE_TYPE","features":[389]},{"name":"BCRYPT_PRIVATE_KEY","features":[389]},{"name":"BCRYPT_PRIVATE_KEY_BLOB","features":[389]},{"name":"BCRYPT_PRIVATE_KEY_FLAG","features":[389]},{"name":"BCRYPT_PROVIDER_HANDLE","features":[389]},{"name":"BCRYPT_PROVIDER_NAME","features":[389]},{"name":"BCRYPT_PROV_DISPATCH","features":[389]},{"name":"BCRYPT_PSS_PADDING_INFO","features":[389]},{"name":"BCRYPT_PUBLIC_KEY_BLOB","features":[389]},{"name":"BCRYPT_PUBLIC_KEY_FLAG","features":[389]},{"name":"BCRYPT_PUBLIC_KEY_LENGTH","features":[389]},{"name":"BCRYPT_QUERY_PROVIDER_MODE","features":[389]},{"name":"BCRYPT_RC2_ALGORITHM","features":[389]},{"name":"BCRYPT_RC2_CBC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_RC2_CFB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_RC2_ECB_ALG_HANDLE","features":[389]},{"name":"BCRYPT_RC4_ALGORITHM","features":[389]},{"name":"BCRYPT_RC4_ALG_HANDLE","features":[389]},{"name":"BCRYPT_RESOLVE_PROVIDERS_FLAGS","features":[389]},{"name":"BCRYPT_RNG_ALGORITHM","features":[389]},{"name":"BCRYPT_RNG_ALG_HANDLE","features":[389]},{"name":"BCRYPT_RNG_DUAL_EC_ALGORITHM","features":[389]},{"name":"BCRYPT_RNG_FIPS186_DSA_ALGORITHM","features":[389]},{"name":"BCRYPT_RNG_FUNCTION_TABLE","features":[305,389]},{"name":"BCRYPT_RNG_INTERFACE","features":[389]},{"name":"BCRYPT_RNG_OPERATION","features":[389]},{"name":"BCRYPT_RNG_USE_ENTROPY_IN_BUFFER","features":[389]},{"name":"BCRYPT_RSAFULLPRIVATE_BLOB","features":[389]},{"name":"BCRYPT_RSAFULLPRIVATE_MAGIC","features":[389]},{"name":"BCRYPT_RSAKEY_BLOB","features":[389]},{"name":"BCRYPT_RSAKEY_BLOB_MAGIC","features":[389]},{"name":"BCRYPT_RSAPRIVATE_BLOB","features":[389]},{"name":"BCRYPT_RSAPRIVATE_MAGIC","features":[389]},{"name":"BCRYPT_RSAPUBLIC_BLOB","features":[389]},{"name":"BCRYPT_RSAPUBLIC_MAGIC","features":[389]},{"name":"BCRYPT_RSA_ALGORITHM","features":[389]},{"name":"BCRYPT_RSA_ALG_HANDLE","features":[389]},{"name":"BCRYPT_RSA_SIGN_ALGORITHM","features":[389]},{"name":"BCRYPT_RSA_SIGN_ALG_HANDLE","features":[389]},{"name":"BCRYPT_SECRET_AGREEMENT_FUNCTION_TABLE","features":[305,389]},{"name":"BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[389]},{"name":"BCRYPT_SECRET_AGREEMENT_OPERATION","features":[389]},{"name":"BCRYPT_SECRET_HANDLE","features":[389]},{"name":"BCRYPT_SHA1_ALGORITHM","features":[389]},{"name":"BCRYPT_SHA1_ALG_HANDLE","features":[389]},{"name":"BCRYPT_SHA256_ALGORITHM","features":[389]},{"name":"BCRYPT_SHA256_ALG_HANDLE","features":[389]},{"name":"BCRYPT_SHA384_ALGORITHM","features":[389]},{"name":"BCRYPT_SHA384_ALG_HANDLE","features":[389]},{"name":"BCRYPT_SHA512_ALGORITHM","features":[389]},{"name":"BCRYPT_SHA512_ALG_HANDLE","features":[389]},{"name":"BCRYPT_SIGNATURE_FUNCTION_TABLE","features":[305,389]},{"name":"BCRYPT_SIGNATURE_INTERFACE","features":[389]},{"name":"BCRYPT_SIGNATURE_LENGTH","features":[389]},{"name":"BCRYPT_SIGNATURE_OPERATION","features":[389]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[389]},{"name":"BCRYPT_SP800108_CTR_HMAC_ALG_HANDLE","features":[389]},{"name":"BCRYPT_SP80056A_CONCAT_ALGORITHM","features":[389]},{"name":"BCRYPT_SP80056A_CONCAT_ALG_HANDLE","features":[389]},{"name":"BCRYPT_SUPPORTED_PAD_OAEP","features":[389]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_ENC","features":[389]},{"name":"BCRYPT_SUPPORTED_PAD_PKCS1_SIG","features":[389]},{"name":"BCRYPT_SUPPORTED_PAD_PSS","features":[389]},{"name":"BCRYPT_SUPPORTED_PAD_ROUTER","features":[389]},{"name":"BCRYPT_TABLE","features":[389]},{"name":"BCRYPT_TLS1_1_KDF_ALGORITHM","features":[389]},{"name":"BCRYPT_TLS1_1_KDF_ALG_HANDLE","features":[389]},{"name":"BCRYPT_TLS1_2_KDF_ALGORITHM","features":[389]},{"name":"BCRYPT_TLS1_2_KDF_ALG_HANDLE","features":[389]},{"name":"BCRYPT_TLS_CBC_HMAC_VERIFY_FLAG","features":[389]},{"name":"BCRYPT_USE_SYSTEM_PREFERRED_RNG","features":[389]},{"name":"BCRYPT_XTS_AES_ALGORITHM","features":[389]},{"name":"BCRYPT_XTS_AES_ALG_HANDLE","features":[389]},{"name":"BCryptAddContextFunction","features":[305,389]},{"name":"BCryptBuffer","features":[389]},{"name":"BCryptBufferDesc","features":[389]},{"name":"BCryptCloseAlgorithmProvider","features":[305,389]},{"name":"BCryptCloseAlgorithmProviderFn","features":[305,389]},{"name":"BCryptConfigureContext","features":[305,389]},{"name":"BCryptConfigureContextFunction","features":[305,389]},{"name":"BCryptCreateContext","features":[305,389]},{"name":"BCryptCreateHash","features":[305,389]},{"name":"BCryptCreateHashFn","features":[305,389]},{"name":"BCryptCreateMultiHash","features":[305,389]},{"name":"BCryptCreateMultiHashFn","features":[305,389]},{"name":"BCryptDecrypt","features":[305,389]},{"name":"BCryptDecryptFn","features":[305,389]},{"name":"BCryptDeleteContext","features":[305,389]},{"name":"BCryptDeriveKey","features":[305,389]},{"name":"BCryptDeriveKeyCapi","features":[305,389]},{"name":"BCryptDeriveKeyCapiFn","features":[305,389]},{"name":"BCryptDeriveKeyFn","features":[305,389]},{"name":"BCryptDeriveKeyPBKDF2","features":[305,389]},{"name":"BCryptDeriveKeyPBKDF2Fn","features":[305,389]},{"name":"BCryptDestroyHash","features":[305,389]},{"name":"BCryptDestroyHashFn","features":[305,389]},{"name":"BCryptDestroyKey","features":[305,389]},{"name":"BCryptDestroyKeyFn","features":[305,389]},{"name":"BCryptDestroySecret","features":[305,389]},{"name":"BCryptDestroySecretFn","features":[305,389]},{"name":"BCryptDuplicateHash","features":[305,389]},{"name":"BCryptDuplicateHashFn","features":[305,389]},{"name":"BCryptDuplicateKey","features":[305,389]},{"name":"BCryptDuplicateKeyFn","features":[305,389]},{"name":"BCryptEncrypt","features":[305,389]},{"name":"BCryptEncryptFn","features":[305,389]},{"name":"BCryptEnumAlgorithms","features":[305,389]},{"name":"BCryptEnumContextFunctionProviders","features":[305,389]},{"name":"BCryptEnumContextFunctions","features":[305,389]},{"name":"BCryptEnumContexts","features":[305,389]},{"name":"BCryptEnumProviders","features":[305,389]},{"name":"BCryptEnumRegisteredProviders","features":[305,389]},{"name":"BCryptExportKey","features":[305,389]},{"name":"BCryptExportKeyFn","features":[305,389]},{"name":"BCryptFinalizeKeyPair","features":[305,389]},{"name":"BCryptFinalizeKeyPairFn","features":[305,389]},{"name":"BCryptFinishHash","features":[305,389]},{"name":"BCryptFinishHashFn","features":[305,389]},{"name":"BCryptFreeBuffer","features":[389]},{"name":"BCryptFreeBufferFn","features":[389]},{"name":"BCryptGenRandom","features":[305,389]},{"name":"BCryptGenRandomFn","features":[305,389]},{"name":"BCryptGenerateKeyPair","features":[305,389]},{"name":"BCryptGenerateKeyPairFn","features":[305,389]},{"name":"BCryptGenerateSymmetricKey","features":[305,389]},{"name":"BCryptGenerateSymmetricKeyFn","features":[305,389]},{"name":"BCryptGetFipsAlgorithmMode","features":[305,389]},{"name":"BCryptGetProperty","features":[305,389]},{"name":"BCryptGetPropertyFn","features":[305,389]},{"name":"BCryptHash","features":[305,389]},{"name":"BCryptHashData","features":[305,389]},{"name":"BCryptHashDataFn","features":[305,389]},{"name":"BCryptImportKey","features":[305,389]},{"name":"BCryptImportKeyFn","features":[305,389]},{"name":"BCryptImportKeyPair","features":[305,389]},{"name":"BCryptImportKeyPairFn","features":[305,389]},{"name":"BCryptKeyDerivation","features":[305,389]},{"name":"BCryptKeyDerivationFn","features":[305,389]},{"name":"BCryptOpenAlgorithmProvider","features":[305,389]},{"name":"BCryptOpenAlgorithmProviderFn","features":[305,389]},{"name":"BCryptProcessMultiOperations","features":[305,389]},{"name":"BCryptProcessMultiOperationsFn","features":[305,389]},{"name":"BCryptQueryContextConfiguration","features":[305,389]},{"name":"BCryptQueryContextFunctionConfiguration","features":[305,389]},{"name":"BCryptQueryContextFunctionProperty","features":[305,389]},{"name":"BCryptQueryProviderRegistration","features":[305,389]},{"name":"BCryptRegisterConfigChangeNotify","features":[305,389]},{"name":"BCryptRemoveContextFunction","features":[305,389]},{"name":"BCryptResolveProviders","features":[305,389]},{"name":"BCryptSecretAgreement","features":[305,389]},{"name":"BCryptSecretAgreementFn","features":[305,389]},{"name":"BCryptSetContextFunctionProperty","features":[305,389]},{"name":"BCryptSetProperty","features":[305,389]},{"name":"BCryptSetPropertyFn","features":[305,389]},{"name":"BCryptSignHash","features":[305,389]},{"name":"BCryptSignHashFn","features":[305,389]},{"name":"BCryptUnregisterConfigChangeNotify","features":[305,389]},{"name":"BCryptVerifySignature","features":[305,389]},{"name":"BCryptVerifySignatureFn","features":[305,389]},{"name":"CALG_3DES","features":[389]},{"name":"CALG_3DES_112","features":[389]},{"name":"CALG_AES","features":[389]},{"name":"CALG_AES_128","features":[389]},{"name":"CALG_AES_192","features":[389]},{"name":"CALG_AES_256","features":[389]},{"name":"CALG_AGREEDKEY_ANY","features":[389]},{"name":"CALG_CYLINK_MEK","features":[389]},{"name":"CALG_DES","features":[389]},{"name":"CALG_DESX","features":[389]},{"name":"CALG_DH_EPHEM","features":[389]},{"name":"CALG_DH_SF","features":[389]},{"name":"CALG_DSS_SIGN","features":[389]},{"name":"CALG_ECDH","features":[389]},{"name":"CALG_ECDH_EPHEM","features":[389]},{"name":"CALG_ECDSA","features":[389]},{"name":"CALG_ECMQV","features":[389]},{"name":"CALG_HASH_REPLACE_OWF","features":[389]},{"name":"CALG_HMAC","features":[389]},{"name":"CALG_HUGHES_MD5","features":[389]},{"name":"CALG_KEA_KEYX","features":[389]},{"name":"CALG_MAC","features":[389]},{"name":"CALG_MD2","features":[389]},{"name":"CALG_MD4","features":[389]},{"name":"CALG_MD5","features":[389]},{"name":"CALG_NO_SIGN","features":[389]},{"name":"CALG_NULLCIPHER","features":[389]},{"name":"CALG_OID_INFO_CNG_ONLY","features":[389]},{"name":"CALG_OID_INFO_PARAMETERS","features":[389]},{"name":"CALG_PCT1_MASTER","features":[389]},{"name":"CALG_RC2","features":[389]},{"name":"CALG_RC4","features":[389]},{"name":"CALG_RC5","features":[389]},{"name":"CALG_RSA_KEYX","features":[389]},{"name":"CALG_RSA_SIGN","features":[389]},{"name":"CALG_SCHANNEL_ENC_KEY","features":[389]},{"name":"CALG_SCHANNEL_MAC_KEY","features":[389]},{"name":"CALG_SCHANNEL_MASTER_HASH","features":[389]},{"name":"CALG_SEAL","features":[389]},{"name":"CALG_SHA","features":[389]},{"name":"CALG_SHA1","features":[389]},{"name":"CALG_SHA_256","features":[389]},{"name":"CALG_SHA_384","features":[389]},{"name":"CALG_SHA_512","features":[389]},{"name":"CALG_SKIPJACK","features":[389]},{"name":"CALG_SSL2_MASTER","features":[389]},{"name":"CALG_SSL3_MASTER","features":[389]},{"name":"CALG_SSL3_SHAMD5","features":[389]},{"name":"CALG_TEK","features":[389]},{"name":"CALG_THIRDPARTY_CIPHER","features":[389]},{"name":"CALG_THIRDPARTY_HASH","features":[389]},{"name":"CALG_THIRDPARTY_KEY_EXCHANGE","features":[389]},{"name":"CALG_THIRDPARTY_SIGNATURE","features":[389]},{"name":"CALG_TLS1PRF","features":[389]},{"name":"CALG_TLS1_MASTER","features":[389]},{"name":"CARD_3DES_112_ALGORITHM","features":[389]},{"name":"CARD_3DES_ALGORITHM","features":[389]},{"name":"CARD_AES_ALGORITHM","features":[389]},{"name":"CARD_ASYMMETRIC_OPERATION","features":[389]},{"name":"CARD_AUTHENTICATE","features":[389]},{"name":"CARD_AUTHENTICATE_CURRENT_VERSION","features":[389]},{"name":"CARD_AUTHENTICATE_GENERATE_SESSION_PIN","features":[389]},{"name":"CARD_AUTHENTICATE_PIN_CHALLENGE_RESPONSE","features":[389]},{"name":"CARD_AUTHENTICATE_PIN_PIN","features":[389]},{"name":"CARD_AUTHENTICATE_RESPONSE","features":[389]},{"name":"CARD_AUTHENTICATE_RESPONSE_CURRENT_VERSION","features":[389]},{"name":"CARD_AUTHENTICATE_RESPONSE_VERSION_SEVEN","features":[389]},{"name":"CARD_AUTHENTICATE_SESSION_PIN","features":[389]},{"name":"CARD_AUTHENTICATE_VERSION_SEVEN","features":[389]},{"name":"CARD_BUFFER_SIZE_ONLY","features":[389]},{"name":"CARD_CACHE_FILE_CURRENT_VERSION","features":[389]},{"name":"CARD_CACHE_FILE_FORMAT","features":[389]},{"name":"CARD_CAPABILITIES","features":[305,389]},{"name":"CARD_CAPABILITIES_CURRENT_VERSION","features":[389]},{"name":"CARD_CHAIN_MODE_CBC","features":[389]},{"name":"CARD_CHANGE_AUTHENTICATOR","features":[389]},{"name":"CARD_CHANGE_AUTHENTICATOR_CURRENT_VERSION","features":[389]},{"name":"CARD_CHANGE_AUTHENTICATOR_RESPONSE","features":[389]},{"name":"CARD_CHANGE_AUTHENTICATOR_RESPONSE_CURRENT_VERSION","features":[389]},{"name":"CARD_CHANGE_AUTHENTICATOR_RESPONSE_VERSION_SEVEN","features":[389]},{"name":"CARD_CHANGE_AUTHENTICATOR_VERSION_SEVEN","features":[389]},{"name":"CARD_CIPHER_OPERATION","features":[389]},{"name":"CARD_CREATE_CONTAINER_KEY_GEN","features":[389]},{"name":"CARD_CREATE_CONTAINER_KEY_IMPORT","features":[389]},{"name":"CARD_DATA","features":[305,389]},{"name":"CARD_DATA_CURRENT_VERSION","features":[389]},{"name":"CARD_DATA_VALUE_UNKNOWN","features":[389]},{"name":"CARD_DATA_VERSION_FIVE","features":[389]},{"name":"CARD_DATA_VERSION_FOUR","features":[389]},{"name":"CARD_DATA_VERSION_SEVEN","features":[389]},{"name":"CARD_DATA_VERSION_SIX","features":[389]},{"name":"CARD_DERIVE_KEY","features":[389]},{"name":"CARD_DERIVE_KEY_CURRENT_VERSION","features":[389]},{"name":"CARD_DERIVE_KEY_VERSION","features":[389]},{"name":"CARD_DERIVE_KEY_VERSION_TWO","features":[389]},{"name":"CARD_DH_AGREEMENT_INFO","features":[389]},{"name":"CARD_DH_AGREEMENT_INFO_VERSION","features":[389]},{"name":"CARD_DIRECTORY_ACCESS_CONDITION","features":[389]},{"name":"CARD_ENCRYPTED_DATA","features":[389]},{"name":"CARD_FILE_ACCESS_CONDITION","features":[389]},{"name":"CARD_FILE_INFO","features":[389]},{"name":"CARD_FILE_INFO_CURRENT_VERSION","features":[389]},{"name":"CARD_FREE_SPACE_INFO","features":[389]},{"name":"CARD_FREE_SPACE_INFO_CURRENT_VERSION","features":[389]},{"name":"CARD_IMPORT_KEYPAIR","features":[389]},{"name":"CARD_IMPORT_KEYPAIR_CURRENT_VERSION","features":[389]},{"name":"CARD_IMPORT_KEYPAIR_VERSION_SEVEN","features":[389]},{"name":"CARD_KEY_IMPORT_ECC_KEYEST","features":[389]},{"name":"CARD_KEY_IMPORT_PLAIN_TEXT","features":[389]},{"name":"CARD_KEY_IMPORT_RSA_KEYEST","features":[389]},{"name":"CARD_KEY_IMPORT_SHARED_SYMMETRIC","features":[389]},{"name":"CARD_KEY_SIZES","features":[389]},{"name":"CARD_KEY_SIZES_CURRENT_VERSION","features":[389]},{"name":"CARD_PADDING_INFO_PRESENT","features":[389]},{"name":"CARD_PADDING_NONE","features":[389]},{"name":"CARD_PADDING_OAEP","features":[389]},{"name":"CARD_PADDING_PKCS1","features":[389]},{"name":"CARD_PADDING_PSS","features":[389]},{"name":"CARD_PIN_SILENT_CONTEXT","features":[389]},{"name":"CARD_PIN_STRENGTH_PLAINTEXT","features":[389]},{"name":"CARD_PIN_STRENGTH_SESSION_PIN","features":[389]},{"name":"CARD_RETURN_KEY_HANDLE","features":[389]},{"name":"CARD_RSA_DECRYPT_INFO","features":[389]},{"name":"CARD_RSA_KEY_DECRYPT_INFO_CURRENT_VERSION","features":[389]},{"name":"CARD_RSA_KEY_DECRYPT_INFO_VERSION_ONE","features":[389]},{"name":"CARD_RSA_KEY_DECRYPT_INFO_VERSION_TWO","features":[389]},{"name":"CARD_SECURE_KEY_INJECTION_NO_CARD_MODE","features":[389]},{"name":"CARD_SIGNING_INFO","features":[389]},{"name":"CARD_SIGNING_INFO_BASIC_VERSION","features":[389]},{"name":"CARD_SIGNING_INFO_CURRENT_VERSION","features":[389]},{"name":"CASetupProperty","features":[389]},{"name":"CCP_ASSOCIATED_ECDH_KEY","features":[389]},{"name":"CCP_CONTAINER_INFO","features":[389]},{"name":"CCP_PIN_IDENTIFIER","features":[389]},{"name":"CCertSrvSetup","features":[389]},{"name":"CCertSrvSetupKeyInformation","features":[389]},{"name":"CCertificateEnrollmentPolicyServerSetup","features":[389]},{"name":"CCertificateEnrollmentServerSetup","features":[389]},{"name":"CEPSetupProperty","features":[389]},{"name":"CERTIFICATE_CHAIN_BLOB","features":[389]},{"name":"CERT_ACCESS_DESCRIPTION","features":[389]},{"name":"CERT_ACCESS_STATE_GP_SYSTEM_STORE_FLAG","features":[389]},{"name":"CERT_ACCESS_STATE_LM_SYSTEM_STORE_FLAG","features":[389]},{"name":"CERT_ACCESS_STATE_PROP_ID","features":[389]},{"name":"CERT_ACCESS_STATE_SHARED_USER_FLAG","features":[389]},{"name":"CERT_ACCESS_STATE_SYSTEM_STORE_FLAG","features":[389]},{"name":"CERT_ACCESS_STATE_WRITE_PERSIST_FLAG","features":[389]},{"name":"CERT_AIA_URL_RETRIEVED_PROP_ID","features":[389]},{"name":"CERT_ALT_NAME_EDI_PARTY_NAME","features":[389]},{"name":"CERT_ALT_NAME_ENTRY","features":[389]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_MASK","features":[389]},{"name":"CERT_ALT_NAME_ENTRY_ERR_INDEX_SHIFT","features":[389]},{"name":"CERT_ALT_NAME_INFO","features":[389]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_MASK","features":[389]},{"name":"CERT_ALT_NAME_VALUE_ERR_INDEX_SHIFT","features":[389]},{"name":"CERT_ALT_NAME_X400_ADDRESS","features":[389]},{"name":"CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[389]},{"name":"CERT_ARCHIVED_PROP_ID","features":[389]},{"name":"CERT_AUTHORITY_INFO_ACCESS","features":[389]},{"name":"CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[389]},{"name":"CERT_AUTHORITY_KEY_ID2_INFO","features":[389]},{"name":"CERT_AUTHORITY_KEY_ID_INFO","features":[389]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_PARTIAL_CHAIN_LOGGING_FLAG","features":[389]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_DISABLE_UNTRUSTED_ROOT_LOGGING_FLAG","features":[389]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[389]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_FLAGS_VALUE_NAME","features":[389]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[389]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[389]},{"name":"CERT_AUTH_ROOT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[389]},{"name":"CERT_AUTH_ROOT_CAB_FILENAME","features":[389]},{"name":"CERT_AUTH_ROOT_CERT_EXT","features":[389]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME","features":[389]},{"name":"CERT_AUTH_ROOT_CTL_FILENAME_A","features":[389]},{"name":"CERT_AUTH_ROOT_SEQ_FILENAME","features":[389]},{"name":"CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[389]},{"name":"CERT_AUTO_ENROLL_PROP_ID","features":[389]},{"name":"CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[389]},{"name":"CERT_AUTO_UPDATE_DISABLE_RANDOM_QUERY_STRING_FLAG","features":[389]},{"name":"CERT_AUTO_UPDATE_ROOT_DIR_URL_VALUE_NAME","features":[389]},{"name":"CERT_AUTO_UPDATE_SYNC_FROM_DIR_URL_VALUE_NAME","features":[389]},{"name":"CERT_BACKED_UP_PROP_ID","features":[389]},{"name":"CERT_BASIC_CONSTRAINTS2_INFO","features":[305,389]},{"name":"CERT_BASIC_CONSTRAINTS_INFO","features":[305,389]},{"name":"CERT_BIOMETRIC_DATA","features":[389]},{"name":"CERT_BIOMETRIC_DATA_TYPE","features":[389]},{"name":"CERT_BIOMETRIC_EXT_INFO","features":[389]},{"name":"CERT_BIOMETRIC_OID_DATA_CHOICE","features":[389]},{"name":"CERT_BIOMETRIC_PICTURE_TYPE","features":[389]},{"name":"CERT_BIOMETRIC_PREDEFINED_DATA_CHOICE","features":[389]},{"name":"CERT_BIOMETRIC_SIGNATURE_TYPE","features":[389]},{"name":"CERT_BUNDLE_CERTIFICATE","features":[389]},{"name":"CERT_BUNDLE_CRL","features":[389]},{"name":"CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG","features":[389]},{"name":"CERT_CA_DISABLE_CRL_PROP_ID","features":[389]},{"name":"CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[389]},{"name":"CERT_CA_SUBJECT_FLAG","features":[389]},{"name":"CERT_CEP_PROP_ID","features":[389]},{"name":"CERT_CHAIN","features":[389]},{"name":"CERT_CHAIN_AUTO_CURRENT_USER","features":[389]},{"name":"CERT_CHAIN_AUTO_FLAGS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_AUTO_FLUSH_DISABLE_FLAG","features":[389]},{"name":"CERT_CHAIN_AUTO_FLUSH_FIRST_DELTA_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_AUTO_FLUSH_NEXT_DELTA_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_AUTO_HPKP_RULE_INFO","features":[389]},{"name":"CERT_CHAIN_AUTO_IMPERSONATED","features":[389]},{"name":"CERT_CHAIN_AUTO_LOCAL_MACHINE","features":[389]},{"name":"CERT_CHAIN_AUTO_LOG_CREATE_FLAG","features":[389]},{"name":"CERT_CHAIN_AUTO_LOG_FILE_NAME_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_AUTO_LOG_FLUSH_FLAG","features":[389]},{"name":"CERT_CHAIN_AUTO_LOG_FREE_FLAG","features":[389]},{"name":"CERT_CHAIN_AUTO_NETWORK_INFO","features":[389]},{"name":"CERT_CHAIN_AUTO_PINRULE_INFO","features":[389]},{"name":"CERT_CHAIN_AUTO_PROCESS_INFO","features":[389]},{"name":"CERT_CHAIN_AUTO_SERIAL_LOCAL_MACHINE","features":[389]},{"name":"CERT_CHAIN_CACHE_END_CERT","features":[389]},{"name":"CERT_CHAIN_CACHE_ONLY_URL_RETRIEVAL","features":[389]},{"name":"CERT_CHAIN_CACHE_RESYNC_FILETIME_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_CONFIG_REGPATH","features":[389]},{"name":"CERT_CHAIN_CONTEXT","features":[305,389]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_DEFAULT","features":[389]},{"name":"CERT_CHAIN_CRL_VALIDITY_EXT_PERIOD_HOURS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_CROSS_CERT_DOWNLOAD_INTERVAL_HOURS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_DEFAULT_CONFIG_SUBDIR","features":[389]},{"name":"CERT_CHAIN_DISABLE_AIA","features":[389]},{"name":"CERT_CHAIN_DISABLE_AIA_URL_RETRIEVAL_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_DISABLE_ALL_EKU_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_AUTH_ROOT_AUTO_UPDATE","features":[389]},{"name":"CERT_CHAIN_DISABLE_AUTO_FLUSH_PROCESS_NAME_LIST_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_DISABLE_CA_NAME_CONSTRAINTS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_DISABLE_CODE_SIGNING_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_ECC_PARA_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_FILE_HASH_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_MANDATORY_BASIC_CONSTRAINTS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_DISABLE_MD2_MD4","features":[389]},{"name":"CERT_CHAIN_DISABLE_MOTW_CODE_SIGNING_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_MOTW_FILE_HASH_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_HASH_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_MOTW_TIMESTAMP_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_MY_PEER_TRUST","features":[389]},{"name":"CERT_CHAIN_DISABLE_OPT_IN_SERVER_AUTH_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_PASS1_QUALITY_FILTERING","features":[389]},{"name":"CERT_CHAIN_DISABLE_SERIAL_CHAIN_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_DISABLE_SERVER_AUTH_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_SYNC_WITH_SSL_TIME_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_HASH_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_TIMESTAMP_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_DISABLE_UNSUPPORTED_CRITICAL_EXTENSIONS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_ELEMENT","features":[305,389]},{"name":"CERT_CHAIN_ENABLE_ALL_EKU_HYGIENE_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_CACHE_AUTO_UPDATE","features":[389]},{"name":"CERT_CHAIN_ENABLE_CODE_SIGNING_HYGIENE_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_DISALLOWED_CA","features":[389]},{"name":"CERT_CHAIN_ENABLE_MD2_MD4_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_MOTW_CODE_SIGNING_HYGIENE_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_MOTW_TIMESTAMP_HYGIENE_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_ONLY_WEAK_LOGGING_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_PEER_TRUST","features":[389]},{"name":"CERT_CHAIN_ENABLE_SERVER_AUTH_HYGIENE_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_SHARE_STORE","features":[389]},{"name":"CERT_CHAIN_ENABLE_TIMESTAMP_HYGIENE_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_WEAK_LOGGING_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_WEAK_RSA_ROOT_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_WEAK_SETTINGS_FLAG","features":[389]},{"name":"CERT_CHAIN_ENABLE_WEAK_SIGNATURE_FLAGS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_ENGINE_CONFIG","features":[389]},{"name":"CERT_CHAIN_EXCLUSIVE_ENABLE_CA_FLAG","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG","features":[389]},{"name":"CERT_CHAIN_FIND_BY_ISSUER_PARA","features":[305,389]},{"name":"CERT_CHAIN_HAS_MOTW","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_DEFAULT","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_COUNT_IN_CERT_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_DEFAULT","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_DEFAULT","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_CERT_COUNT_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_DEFAULT","features":[389]},{"name":"CERT_CHAIN_MAX_AIA_URL_RETRIEVAL_COUNT_PER_CHAIN_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DEFAULT","features":[389]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_DISABLE","features":[389]},{"name":"CERT_CHAIN_MAX_SSL_TIME_UPDATED_EVENT_COUNT_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_MAX_URL_RETRIEVAL_BYTE_COUNT_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_MIN_PUB_KEY_BIT_LENGTH_DISABLE","features":[389]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DEFAULT","features":[389]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_DISABLE","features":[389]},{"name":"CERT_CHAIN_MIN_RSA_PUB_KEY_BIT_LENGTH_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_MOTW_IGNORE_AFTER_TIME_WEAK_FLAG","features":[389]},{"name":"CERT_CHAIN_OCSP_VALIDITY_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_ONLY_ADDITIONAL_AND_AUTH_ROOT","features":[389]},{"name":"CERT_CHAIN_OPTIONS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_OPTION_DISABLE_AIA_URL_RETRIEVAL","features":[389]},{"name":"CERT_CHAIN_OPTION_ENABLE_SIA_URL_RETRIEVAL","features":[389]},{"name":"CERT_CHAIN_OPT_IN_WEAK_FLAGS","features":[389]},{"name":"CERT_CHAIN_OPT_IN_WEAK_SIGNATURE","features":[389]},{"name":"CERT_CHAIN_PARA","features":[389]},{"name":"CERT_CHAIN_POLICY_ALLOW_TESTROOT_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_ALLOW_UNKNOWN_CA_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE","features":[389]},{"name":"CERT_CHAIN_POLICY_AUTHENTICODE_TS","features":[389]},{"name":"CERT_CHAIN_POLICY_BASE","features":[389]},{"name":"CERT_CHAIN_POLICY_BASIC_CONSTRAINTS","features":[389]},{"name":"CERT_CHAIN_POLICY_EV","features":[389]},{"name":"CERT_CHAIN_POLICY_FLAGS","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_NOT_TIME_VALID_FLAGS","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_ALL_REV_UNKNOWN_FLAGS","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_CA_REV_UNKNOWN_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_NOT_TIME_VALID_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_CTL_SIGNER_REV_UNKNOWN_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_END_REV_UNKNOWN_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_BASIC_CONSTRAINTS_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_NAME_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_INVALID_POLICY_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_SUPPORTED_CRITICAL_EXT_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_NESTED_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_NOT_TIME_VALID_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_PEER_TRUST_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_ROOT_REV_UNKNOWN_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_WEAK_SIGNATURE_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_IGNORE_WRONG_USAGE_FLAG","features":[389]},{"name":"CERT_CHAIN_POLICY_MICROSOFT_ROOT","features":[389]},{"name":"CERT_CHAIN_POLICY_NT_AUTH","features":[389]},{"name":"CERT_CHAIN_POLICY_PARA","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_F12","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ERROR_LEVEL","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_F12_NONE_CATEGORY","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_F12_ROOT_PROGRAM_CATEGORY","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_F12_SUCCESS_LEVEL","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WARNING_LEVEL","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_F12_WEAK_CRYPTO_CATEGORY","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_HPKP_HEADER","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_ERROR","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MISMATCH_WARNING","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_ERROR","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_MITM_WARNING","features":[389]},{"name":"CERT_CHAIN_POLICY_SSL_KEY_PIN_SUCCESS","features":[389]},{"name":"CERT_CHAIN_POLICY_STATUS","features":[389]},{"name":"CERT_CHAIN_POLICY_THIRD_PARTY_ROOT","features":[389]},{"name":"CERT_CHAIN_POLICY_TRUST_TESTROOT_FLAG","features":[389]},{"name":"CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS","features":[389]},{"name":"CERT_CHAIN_REVOCATION_ACCUMULATIVE_TIMEOUT","features":[389]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CACHE_ONLY","features":[389]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN","features":[389]},{"name":"CERT_CHAIN_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[389]},{"name":"CERT_CHAIN_REVOCATION_CHECK_END_CERT","features":[389]},{"name":"CERT_CHAIN_REVOCATION_CHECK_OCSP_CERT","features":[389]},{"name":"CERT_CHAIN_REV_ACCUMULATIVE_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_SERIAL_CHAIN_LOG_FILE_NAME_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_SSL_HANDSHAKE_LOG_FILE_NAME_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_STRONG_SIGN_DISABLE_END_CHECK_FLAG","features":[389]},{"name":"CERT_CHAIN_THREAD_STORE_SYNC","features":[389]},{"name":"CERT_CHAIN_TIMESTAMP_TIME","features":[389]},{"name":"CERT_CHAIN_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_USE_LOCAL_MACHINE_STORE","features":[389]},{"name":"CERT_CHAIN_WEAK_AFTER_TIME_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_ALL_CONFIG_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_FILE_HASH_AFTER_TIME_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_FLAGS_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_HYGIENE_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_MIN_BIT_LENGTH_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_PREFIX_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_RSA_PUB_KEY_TIME_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_SHA256_ALLOW_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_SIGNATURE_LOG_DIR_VALUE_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_THIRD_PARTY_CONFIG_NAME","features":[389]},{"name":"CERT_CHAIN_WEAK_TIMESTAMP_HASH_AFTER_TIME_NAME","features":[389]},{"name":"CERT_CLOSE_STORE_CHECK_FLAG","features":[389]},{"name":"CERT_CLOSE_STORE_FORCE_FLAG","features":[389]},{"name":"CERT_CLR_DELETE_KEY_PROP_ID","features":[389]},{"name":"CERT_COMPARE_ANY","features":[389]},{"name":"CERT_COMPARE_ATTR","features":[389]},{"name":"CERT_COMPARE_CERT_ID","features":[389]},{"name":"CERT_COMPARE_CROSS_CERT_DIST_POINTS","features":[389]},{"name":"CERT_COMPARE_CTL_USAGE","features":[389]},{"name":"CERT_COMPARE_ENHKEY_USAGE","features":[389]},{"name":"CERT_COMPARE_EXISTING","features":[389]},{"name":"CERT_COMPARE_HASH","features":[389]},{"name":"CERT_COMPARE_HASH_STR","features":[389]},{"name":"CERT_COMPARE_HAS_PRIVATE_KEY","features":[389]},{"name":"CERT_COMPARE_ISSUER_OF","features":[389]},{"name":"CERT_COMPARE_KEY_IDENTIFIER","features":[389]},{"name":"CERT_COMPARE_KEY_SPEC","features":[389]},{"name":"CERT_COMPARE_MASK","features":[389]},{"name":"CERT_COMPARE_MD5_HASH","features":[389]},{"name":"CERT_COMPARE_NAME","features":[389]},{"name":"CERT_COMPARE_NAME_STR_A","features":[389]},{"name":"CERT_COMPARE_NAME_STR_W","features":[389]},{"name":"CERT_COMPARE_PROPERTY","features":[389]},{"name":"CERT_COMPARE_PUBKEY_MD5_HASH","features":[389]},{"name":"CERT_COMPARE_PUBLIC_KEY","features":[389]},{"name":"CERT_COMPARE_SHA1_HASH","features":[389]},{"name":"CERT_COMPARE_SHIFT","features":[389]},{"name":"CERT_COMPARE_SIGNATURE_HASH","features":[389]},{"name":"CERT_COMPARE_SUBJECT_CERT","features":[389]},{"name":"CERT_COMPARE_SUBJECT_INFO_ACCESS","features":[389]},{"name":"CERT_CONTEXT","features":[305,389]},{"name":"CERT_CONTEXT_REVOCATION_TYPE","features":[389]},{"name":"CERT_CONTROL_STORE_FLAGS","features":[389]},{"name":"CERT_CREATE_CONTEXT_NOCOPY_FLAG","features":[389]},{"name":"CERT_CREATE_CONTEXT_NO_ENTRY_FLAG","features":[389]},{"name":"CERT_CREATE_CONTEXT_NO_HCRYPTMSG_FLAG","features":[389]},{"name":"CERT_CREATE_CONTEXT_PARA","features":[305,389]},{"name":"CERT_CREATE_CONTEXT_SORTED_FLAG","features":[389]},{"name":"CERT_CREATE_SELFSIGN_FLAGS","features":[389]},{"name":"CERT_CREATE_SELFSIGN_NO_KEY_INFO","features":[389]},{"name":"CERT_CREATE_SELFSIGN_NO_SIGN","features":[389]},{"name":"CERT_CRL_CONTEXT_PAIR","features":[305,389]},{"name":"CERT_CRL_SIGN_KEY_USAGE","features":[389]},{"name":"CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[389]},{"name":"CERT_CTL_USAGE_PROP_ID","features":[389]},{"name":"CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[389]},{"name":"CERT_DATE_STAMP_PROP_ID","features":[389]},{"name":"CERT_DECIPHER_ONLY_KEY_USAGE","features":[389]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_SIGN","features":[389]},{"name":"CERT_DEFAULT_OID_PUBLIC_KEY_XCHG","features":[389]},{"name":"CERT_DESCRIPTION_PROP_ID","features":[389]},{"name":"CERT_DH_PARAMETERS","features":[389]},{"name":"CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[389]},{"name":"CERT_DISABLE_PIN_RULES_AUTO_UPDATE_VALUE_NAME","features":[389]},{"name":"CERT_DISABLE_ROOT_AUTO_UPDATE_VALUE_NAME","features":[389]},{"name":"CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[389]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[389]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[389]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_LIST_IDENTIFIER","features":[389]},{"name":"CERT_DISALLOWED_CERT_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[389]},{"name":"CERT_DISALLOWED_CERT_CAB_FILENAME","features":[389]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME","features":[389]},{"name":"CERT_DISALLOWED_CERT_CTL_FILENAME_A","features":[389]},{"name":"CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[389]},{"name":"CERT_DISALLOWED_FILETIME_PROP_ID","features":[389]},{"name":"CERT_DSS_PARAMETERS","features":[389]},{"name":"CERT_DSS_R_LEN","features":[389]},{"name":"CERT_DSS_S_LEN","features":[389]},{"name":"CERT_ECC_SIGNATURE","features":[389]},{"name":"CERT_EFSBLOB_VALUE_NAME","features":[389]},{"name":"CERT_EFS_PROP_ID","features":[389]},{"name":"CERT_ENABLE_DISALLOWED_CERT_AUTO_UPDATE_VALUE_NAME","features":[389]},{"name":"CERT_ENCIPHER_ONLY_KEY_USAGE","features":[389]},{"name":"CERT_ENCODING_TYPE_MASK","features":[389]},{"name":"CERT_END_ENTITY_SUBJECT_FLAG","features":[389]},{"name":"CERT_ENHKEY_USAGE_PROP_ID","features":[389]},{"name":"CERT_ENROLLMENT_PROP_ID","features":[389]},{"name":"CERT_EXCLUDED_SUBTREE_BIT","features":[389]},{"name":"CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[389]},{"name":"CERT_EXTENSION","features":[305,389]},{"name":"CERT_EXTENSIONS","features":[305,389]},{"name":"CERT_FILE_HASH_USE_TYPE","features":[389]},{"name":"CERT_FILE_STORE_COMMIT_ENABLE_FLAG","features":[389]},{"name":"CERT_FIND_ANY","features":[389]},{"name":"CERT_FIND_CERT_ID","features":[389]},{"name":"CERT_FIND_CHAIN_IN_STORE_FLAGS","features":[389]},{"name":"CERT_FIND_CROSS_CERT_DIST_POINTS","features":[389]},{"name":"CERT_FIND_CTL_USAGE","features":[389]},{"name":"CERT_FIND_ENHKEY_USAGE","features":[389]},{"name":"CERT_FIND_EXISTING","features":[389]},{"name":"CERT_FIND_EXT_ONLY_CTL_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_FLAGS","features":[389]},{"name":"CERT_FIND_HASH","features":[389]},{"name":"CERT_FIND_HASH_STR","features":[389]},{"name":"CERT_FIND_HAS_PRIVATE_KEY","features":[389]},{"name":"CERT_FIND_ISSUER_ATTR","features":[389]},{"name":"CERT_FIND_ISSUER_NAME","features":[389]},{"name":"CERT_FIND_ISSUER_OF","features":[389]},{"name":"CERT_FIND_ISSUER_STR","features":[389]},{"name":"CERT_FIND_ISSUER_STR_A","features":[389]},{"name":"CERT_FIND_ISSUER_STR_W","features":[389]},{"name":"CERT_FIND_KEY_IDENTIFIER","features":[389]},{"name":"CERT_FIND_KEY_SPEC","features":[389]},{"name":"CERT_FIND_MD5_HASH","features":[389]},{"name":"CERT_FIND_NO_CTL_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_NO_ENHKEY_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_OPTIONAL_CTL_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_OR_CTL_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_OR_ENHKEY_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_PROPERTY","features":[389]},{"name":"CERT_FIND_PROP_ONLY_CTL_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_PROP_ONLY_ENHKEY_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_PUBKEY_MD5_HASH","features":[389]},{"name":"CERT_FIND_PUBLIC_KEY","features":[389]},{"name":"CERT_FIND_SHA1_HASH","features":[389]},{"name":"CERT_FIND_SIGNATURE_HASH","features":[389]},{"name":"CERT_FIND_SUBJECT_ATTR","features":[389]},{"name":"CERT_FIND_SUBJECT_CERT","features":[389]},{"name":"CERT_FIND_SUBJECT_INFO_ACCESS","features":[389]},{"name":"CERT_FIND_SUBJECT_NAME","features":[389]},{"name":"CERT_FIND_SUBJECT_STR","features":[389]},{"name":"CERT_FIND_SUBJECT_STR_A","features":[389]},{"name":"CERT_FIND_SUBJECT_STR_W","features":[389]},{"name":"CERT_FIND_TYPE","features":[389]},{"name":"CERT_FIND_VALID_CTL_USAGE_FLAG","features":[389]},{"name":"CERT_FIND_VALID_ENHKEY_USAGE_FLAG","features":[389]},{"name":"CERT_FIRST_RESERVED_PROP_ID","features":[389]},{"name":"CERT_FIRST_USER_PROP_ID","features":[389]},{"name":"CERT_FORTEZZA_DATA_PROP","features":[389]},{"name":"CERT_FORTEZZA_DATA_PROP_ID","features":[389]},{"name":"CERT_FRIENDLY_NAME_PROP_ID","features":[389]},{"name":"CERT_GENERAL_SUBTREE","features":[305,389]},{"name":"CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH","features":[389]},{"name":"CERT_HASHED_URL","features":[389]},{"name":"CERT_HASH_PROP_ID","features":[389]},{"name":"CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[389]},{"name":"CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[389]},{"name":"CERT_ID","features":[389]},{"name":"CERT_ID_ISSUER_SERIAL_NUMBER","features":[389]},{"name":"CERT_ID_KEY_IDENTIFIER","features":[389]},{"name":"CERT_ID_OPTION","features":[389]},{"name":"CERT_ID_SHA1_HASH","features":[389]},{"name":"CERT_IE30_RESERVED_PROP_ID","features":[389]},{"name":"CERT_IE_DIRTY_FLAGS_REGPATH","features":[389]},{"name":"CERT_INFO","features":[305,389]},{"name":"CERT_INFO_EXTENSION_FLAG","features":[389]},{"name":"CERT_INFO_ISSUER_FLAG","features":[389]},{"name":"CERT_INFO_ISSUER_UNIQUE_ID_FLAG","features":[389]},{"name":"CERT_INFO_NOT_AFTER_FLAG","features":[389]},{"name":"CERT_INFO_NOT_BEFORE_FLAG","features":[389]},{"name":"CERT_INFO_SERIAL_NUMBER_FLAG","features":[389]},{"name":"CERT_INFO_SIGNATURE_ALGORITHM_FLAG","features":[389]},{"name":"CERT_INFO_SUBJECT_FLAG","features":[389]},{"name":"CERT_INFO_SUBJECT_PUBLIC_KEY_INFO_FLAG","features":[389]},{"name":"CERT_INFO_SUBJECT_UNIQUE_ID_FLAG","features":[389]},{"name":"CERT_INFO_VERSION_FLAG","features":[389]},{"name":"CERT_ISOLATED_KEY_PROP_ID","features":[389]},{"name":"CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[389]},{"name":"CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[389]},{"name":"CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[389]},{"name":"CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[389]},{"name":"CERT_ISSUER_SERIAL_NUMBER","features":[389]},{"name":"CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[389]},{"name":"CERT_KEYGEN_REQUEST_INFO","features":[389]},{"name":"CERT_KEYGEN_REQUEST_V1","features":[389]},{"name":"CERT_KEY_AGREEMENT_KEY_USAGE","features":[389]},{"name":"CERT_KEY_ATTRIBUTES_INFO","features":[305,389]},{"name":"CERT_KEY_CERT_SIGN_KEY_USAGE","features":[389]},{"name":"CERT_KEY_CLASSIFICATION_PROP_ID","features":[389]},{"name":"CERT_KEY_CONTEXT","features":[389]},{"name":"CERT_KEY_CONTEXT_PROP_ID","features":[389]},{"name":"CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[389]},{"name":"CERT_KEY_IDENTIFIER_PROP_ID","features":[389]},{"name":"CERT_KEY_PROV_HANDLE_PROP_ID","features":[389]},{"name":"CERT_KEY_PROV_INFO_PROP_ID","features":[389]},{"name":"CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[389]},{"name":"CERT_KEY_SPEC","features":[389]},{"name":"CERT_KEY_SPEC_PROP_ID","features":[389]},{"name":"CERT_KEY_USAGE_RESTRICTION_INFO","features":[389]},{"name":"CERT_LAST_RESERVED_PROP_ID","features":[389]},{"name":"CERT_LAST_USER_PROP_ID","features":[389]},{"name":"CERT_LDAP_STORE_AREC_EXCLUSIVE_FLAG","features":[389]},{"name":"CERT_LDAP_STORE_OPENED_FLAG","features":[389]},{"name":"CERT_LDAP_STORE_OPENED_PARA","features":[389]},{"name":"CERT_LDAP_STORE_SIGN_FLAG","features":[389]},{"name":"CERT_LDAP_STORE_UNBIND_FLAG","features":[389]},{"name":"CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH","features":[389]},{"name":"CERT_LOGOTYPE_AUDIO","features":[389]},{"name":"CERT_LOGOTYPE_AUDIO_INFO","features":[389]},{"name":"CERT_LOGOTYPE_BITS_IMAGE_RESOLUTION_CHOICE","features":[389]},{"name":"CERT_LOGOTYPE_CHOICE","features":[389]},{"name":"CERT_LOGOTYPE_COLOR_IMAGE_INFO_CHOICE","features":[389]},{"name":"CERT_LOGOTYPE_DATA","features":[389]},{"name":"CERT_LOGOTYPE_DETAILS","features":[389]},{"name":"CERT_LOGOTYPE_DIRECT_INFO_CHOICE","features":[389]},{"name":"CERT_LOGOTYPE_EXT_INFO","features":[389]},{"name":"CERT_LOGOTYPE_GRAY_SCALE_IMAGE_INFO_CHOICE","features":[389]},{"name":"CERT_LOGOTYPE_IMAGE","features":[389]},{"name":"CERT_LOGOTYPE_IMAGE_INFO","features":[389]},{"name":"CERT_LOGOTYPE_IMAGE_INFO_TYPE","features":[389]},{"name":"CERT_LOGOTYPE_INDIRECT_INFO_CHOICE","features":[389]},{"name":"CERT_LOGOTYPE_INFO","features":[389]},{"name":"CERT_LOGOTYPE_NO_IMAGE_RESOLUTION_CHOICE","features":[389]},{"name":"CERT_LOGOTYPE_OPTION","features":[389]},{"name":"CERT_LOGOTYPE_REFERENCE","features":[389]},{"name":"CERT_LOGOTYPE_TABLE_SIZE_IMAGE_RESOLUTION_CHOICE","features":[389]},{"name":"CERT_MD5_HASH_PROP_ID","features":[389]},{"name":"CERT_NAME_ATTR_TYPE","features":[389]},{"name":"CERT_NAME_CONSTRAINTS_INFO","features":[305,389]},{"name":"CERT_NAME_DISABLE_IE4_UTF8_FLAG","features":[389]},{"name":"CERT_NAME_DNS_TYPE","features":[389]},{"name":"CERT_NAME_EMAIL_TYPE","features":[389]},{"name":"CERT_NAME_FRIENDLY_DISPLAY_TYPE","features":[389]},{"name":"CERT_NAME_INFO","features":[389]},{"name":"CERT_NAME_ISSUER_FLAG","features":[389]},{"name":"CERT_NAME_RDN_TYPE","features":[389]},{"name":"CERT_NAME_SEARCH_ALL_NAMES_FLAG","features":[389]},{"name":"CERT_NAME_SIMPLE_DISPLAY_TYPE","features":[389]},{"name":"CERT_NAME_STR_COMMA_FLAG","features":[389]},{"name":"CERT_NAME_STR_CRLF_FLAG","features":[389]},{"name":"CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[389]},{"name":"CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[389]},{"name":"CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[389]},{"name":"CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[389]},{"name":"CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[389]},{"name":"CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[389]},{"name":"CERT_NAME_STR_FORWARD_FLAG","features":[389]},{"name":"CERT_NAME_STR_NO_PLUS_FLAG","features":[389]},{"name":"CERT_NAME_STR_NO_QUOTING_FLAG","features":[389]},{"name":"CERT_NAME_STR_REVERSE_FLAG","features":[389]},{"name":"CERT_NAME_STR_SEMICOLON_FLAG","features":[389]},{"name":"CERT_NAME_UPN_TYPE","features":[389]},{"name":"CERT_NAME_URL_TYPE","features":[389]},{"name":"CERT_NAME_VALUE","features":[389]},{"name":"CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[389]},{"name":"CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[389]},{"name":"CERT_NCRYPT_KEY_SPEC","features":[389]},{"name":"CERT_NEW_KEY_PROP_ID","features":[389]},{"name":"CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[389]},{"name":"CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[389]},{"name":"CERT_NON_REPUDIATION_KEY_USAGE","features":[389]},{"name":"CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[389]},{"name":"CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[389]},{"name":"CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[389]},{"name":"CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[389]},{"name":"CERT_OCM_SUBCOMPONENTS_LOCAL_MACHINE_REGPATH","features":[389]},{"name":"CERT_OCM_SUBCOMPONENTS_ROOT_AUTO_UPDATE_VALUE_NAME","features":[389]},{"name":"CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[389]},{"name":"CERT_OCSP_MUST_STAPLE_PROP_ID","features":[389]},{"name":"CERT_OCSP_RESPONSE_PROP_ID","features":[389]},{"name":"CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[389]},{"name":"CERT_OID_NAME_STR","features":[389]},{"name":"CERT_OPEN_STORE_FLAGS","features":[389]},{"name":"CERT_OR_CRL_BLOB","features":[389]},{"name":"CERT_OR_CRL_BUNDLE","features":[389]},{"name":"CERT_OTHER_LOGOTYPE_INFO","features":[389]},{"name":"CERT_OTHER_NAME","features":[389]},{"name":"CERT_PAIR","features":[389]},{"name":"CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG","features":[389]},{"name":"CERT_PHYSICAL_STORE_AUTH_ROOT_NAME","features":[389]},{"name":"CERT_PHYSICAL_STORE_DEFAULT_NAME","features":[389]},{"name":"CERT_PHYSICAL_STORE_DS_USER_CERTIFICATE_NAME","features":[389]},{"name":"CERT_PHYSICAL_STORE_ENTERPRISE_NAME","features":[389]},{"name":"CERT_PHYSICAL_STORE_GROUP_POLICY_NAME","features":[389]},{"name":"CERT_PHYSICAL_STORE_INFO","features":[389]},{"name":"CERT_PHYSICAL_STORE_INSERT_COMPUTER_NAME_ENABLE_FLAG","features":[389]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_GROUP_POLICY_NAME","features":[389]},{"name":"CERT_PHYSICAL_STORE_LOCAL_MACHINE_NAME","features":[389]},{"name":"CERT_PHYSICAL_STORE_OPEN_DISABLE_FLAG","features":[389]},{"name":"CERT_PHYSICAL_STORE_PREDEFINED_ENUM_FLAG","features":[389]},{"name":"CERT_PHYSICAL_STORE_REMOTE_OPEN_DISABLE_FLAG","features":[389]},{"name":"CERT_PHYSICAL_STORE_SMART_CARD_NAME","features":[389]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_ENCODED_CTL_VALUE_NAME","features":[389]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LAST_SYNC_TIME_VALUE_NAME","features":[389]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_LIST_IDENTIFIER","features":[389]},{"name":"CERT_PIN_RULES_AUTO_UPDATE_SYNC_DELTA_TIME_VALUE_NAME","features":[389]},{"name":"CERT_PIN_RULES_CAB_FILENAME","features":[389]},{"name":"CERT_PIN_RULES_CTL_FILENAME","features":[389]},{"name":"CERT_PIN_RULES_CTL_FILENAME_A","features":[389]},{"name":"CERT_PIN_SHA256_HASH_PROP_ID","features":[389]},{"name":"CERT_POLICIES_INFO","features":[389]},{"name":"CERT_POLICY95_QUALIFIER1","features":[389]},{"name":"CERT_POLICY_CONSTRAINTS_INFO","features":[305,389]},{"name":"CERT_POLICY_ID","features":[389]},{"name":"CERT_POLICY_INFO","features":[389]},{"name":"CERT_POLICY_MAPPING","features":[389]},{"name":"CERT_POLICY_MAPPINGS_INFO","features":[389]},{"name":"CERT_POLICY_QUALIFIER_INFO","features":[389]},{"name":"CERT_POLICY_QUALIFIER_NOTICE_REFERENCE","features":[389]},{"name":"CERT_POLICY_QUALIFIER_USER_NOTICE","features":[389]},{"name":"CERT_PRIVATE_KEY_VALIDITY","features":[305,389]},{"name":"CERT_PROT_ROOT_DISABLE_CURRENT_USER_FLAG","features":[389]},{"name":"CERT_PROT_ROOT_DISABLE_LM_AUTH_FLAG","features":[389]},{"name":"CERT_PROT_ROOT_DISABLE_NOT_DEFINED_NAME_CONSTRAINT_FLAG","features":[389]},{"name":"CERT_PROT_ROOT_DISABLE_NT_AUTH_REQUIRED_FLAG","features":[389]},{"name":"CERT_PROT_ROOT_DISABLE_PEER_TRUST","features":[389]},{"name":"CERT_PROT_ROOT_FLAGS_VALUE_NAME","features":[389]},{"name":"CERT_PROT_ROOT_INHIBIT_ADD_AT_INIT_FLAG","features":[389]},{"name":"CERT_PROT_ROOT_INHIBIT_PURGE_LM_FLAG","features":[389]},{"name":"CERT_PROT_ROOT_ONLY_LM_GPT_FLAG","features":[389]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME","features":[389]},{"name":"CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME_A","features":[389]},{"name":"CERT_PUBKEY_ALG_PARA_PROP_ID","features":[389]},{"name":"CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[389]},{"name":"CERT_PUBLIC_KEY_INFO","features":[389]},{"name":"CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[389]},{"name":"CERT_PVK_FILE_PROP_ID","features":[389]},{"name":"CERT_QC_STATEMENT","features":[389]},{"name":"CERT_QC_STATEMENTS_EXT_INFO","features":[389]},{"name":"CERT_QUERY_CONTENT_CERT","features":[389]},{"name":"CERT_QUERY_CONTENT_CERT_PAIR","features":[389]},{"name":"CERT_QUERY_CONTENT_CRL","features":[389]},{"name":"CERT_QUERY_CONTENT_CTL","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_ALL_ISSUER_CERT","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_CERT_PAIR","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_CRL","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_CTL","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_PFX_AND_LOAD","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS10","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_SIGNED_EMBED","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_PKCS7_UNSIGNED","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CERT","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CRL","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_CTL","features":[389]},{"name":"CERT_QUERY_CONTENT_FLAG_SERIALIZED_STORE","features":[389]},{"name":"CERT_QUERY_CONTENT_PFX","features":[389]},{"name":"CERT_QUERY_CONTENT_PFX_AND_LOAD","features":[389]},{"name":"CERT_QUERY_CONTENT_PKCS10","features":[389]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED","features":[389]},{"name":"CERT_QUERY_CONTENT_PKCS7_SIGNED_EMBED","features":[389]},{"name":"CERT_QUERY_CONTENT_PKCS7_UNSIGNED","features":[389]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CERT","features":[389]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CRL","features":[389]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_CTL","features":[389]},{"name":"CERT_QUERY_CONTENT_SERIALIZED_STORE","features":[389]},{"name":"CERT_QUERY_CONTENT_TYPE","features":[389]},{"name":"CERT_QUERY_CONTENT_TYPE_FLAGS","features":[389]},{"name":"CERT_QUERY_ENCODING_TYPE","features":[389]},{"name":"CERT_QUERY_FORMAT_ASN_ASCII_HEX_ENCODED","features":[389]},{"name":"CERT_QUERY_FORMAT_BASE64_ENCODED","features":[389]},{"name":"CERT_QUERY_FORMAT_BINARY","features":[389]},{"name":"CERT_QUERY_FORMAT_FLAG_ALL","features":[389]},{"name":"CERT_QUERY_FORMAT_FLAG_ASN_ASCII_HEX_ENCODED","features":[389]},{"name":"CERT_QUERY_FORMAT_FLAG_BASE64_ENCODED","features":[389]},{"name":"CERT_QUERY_FORMAT_FLAG_BINARY","features":[389]},{"name":"CERT_QUERY_FORMAT_TYPE","features":[389]},{"name":"CERT_QUERY_FORMAT_TYPE_FLAGS","features":[389]},{"name":"CERT_QUERY_OBJECT_BLOB","features":[389]},{"name":"CERT_QUERY_OBJECT_FILE","features":[389]},{"name":"CERT_QUERY_OBJECT_TYPE","features":[389]},{"name":"CERT_RDN","features":[389]},{"name":"CERT_RDN_ANY_TYPE","features":[389]},{"name":"CERT_RDN_ATTR","features":[389]},{"name":"CERT_RDN_ATTR_VALUE_TYPE","features":[389]},{"name":"CERT_RDN_BMP_STRING","features":[389]},{"name":"CERT_RDN_DISABLE_CHECK_TYPE_FLAG","features":[389]},{"name":"CERT_RDN_DISABLE_IE4_UTF8_FLAG","features":[389]},{"name":"CERT_RDN_ENABLE_PUNYCODE_FLAG","features":[389]},{"name":"CERT_RDN_ENABLE_T61_UNICODE_FLAG","features":[389]},{"name":"CERT_RDN_ENABLE_UTF8_UNICODE_FLAG","features":[389]},{"name":"CERT_RDN_ENCODED_BLOB","features":[389]},{"name":"CERT_RDN_FLAGS_MASK","features":[389]},{"name":"CERT_RDN_FORCE_UTF8_UNICODE_FLAG","features":[389]},{"name":"CERT_RDN_GENERAL_STRING","features":[389]},{"name":"CERT_RDN_GRAPHIC_STRING","features":[389]},{"name":"CERT_RDN_IA5_STRING","features":[389]},{"name":"CERT_RDN_INT4_STRING","features":[389]},{"name":"CERT_RDN_ISO646_STRING","features":[389]},{"name":"CERT_RDN_NUMERIC_STRING","features":[389]},{"name":"CERT_RDN_OCTET_STRING","features":[389]},{"name":"CERT_RDN_PRINTABLE_STRING","features":[389]},{"name":"CERT_RDN_T61_STRING","features":[389]},{"name":"CERT_RDN_TELETEX_STRING","features":[389]},{"name":"CERT_RDN_TYPE_MASK","features":[389]},{"name":"CERT_RDN_UNICODE_STRING","features":[389]},{"name":"CERT_RDN_UNIVERSAL_STRING","features":[389]},{"name":"CERT_RDN_UTF8_STRING","features":[389]},{"name":"CERT_RDN_VIDEOTEX_STRING","features":[389]},{"name":"CERT_RDN_VISIBLE_STRING","features":[389]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_FLAG","features":[389]},{"name":"CERT_REGISTRY_STORE_CLIENT_GPT_PARA","features":[389,366]},{"name":"CERT_REGISTRY_STORE_EXTERNAL_FLAG","features":[389]},{"name":"CERT_REGISTRY_STORE_LM_GPT_FLAG","features":[389]},{"name":"CERT_REGISTRY_STORE_MY_IE_DIRTY_FLAG","features":[389]},{"name":"CERT_REGISTRY_STORE_REMOTE_FLAG","features":[389]},{"name":"CERT_REGISTRY_STORE_ROAMING_FLAG","features":[389]},{"name":"CERT_REGISTRY_STORE_ROAMING_PARA","features":[389,366]},{"name":"CERT_REGISTRY_STORE_SERIALIZED_FLAG","features":[389]},{"name":"CERT_RENEWAL_PROP_ID","features":[389]},{"name":"CERT_REQUEST_INFO","features":[389]},{"name":"CERT_REQUEST_ORIGINATOR_PROP_ID","features":[389]},{"name":"CERT_REQUEST_V1","features":[389]},{"name":"CERT_RETRIEVE_BIOMETRIC_PREDEFINED_BASE_TYPE","features":[389]},{"name":"CERT_RETRIEVE_COMMUNITY_LOGO","features":[389]},{"name":"CERT_RETRIEVE_ISSUER_LOGO","features":[389]},{"name":"CERT_RETRIEVE_SUBJECT_LOGO","features":[389]},{"name":"CERT_RETR_BEHAVIOR_FILE_VALUE_NAME","features":[389]},{"name":"CERT_RETR_BEHAVIOR_INET_AUTH_VALUE_NAME","features":[389]},{"name":"CERT_RETR_BEHAVIOR_INET_STATUS_VALUE_NAME","features":[389]},{"name":"CERT_RETR_BEHAVIOR_LDAP_VALUE_NAME","features":[389]},{"name":"CERT_REVOCATION_CHAIN_PARA","features":[305,389]},{"name":"CERT_REVOCATION_CRL_INFO","features":[305,389]},{"name":"CERT_REVOCATION_INFO","features":[305,389]},{"name":"CERT_REVOCATION_PARA","features":[305,389]},{"name":"CERT_REVOCATION_STATUS","features":[305,389]},{"name":"CERT_REVOCATION_STATUS_REASON","features":[389]},{"name":"CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[389]},{"name":"CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[389]},{"name":"CERT_ROOT_PROGRAM_FLAGS","features":[389]},{"name":"CERT_ROOT_PROGRAM_FLAG_ADDRESS","features":[389]},{"name":"CERT_ROOT_PROGRAM_FLAG_LSC","features":[389]},{"name":"CERT_ROOT_PROGRAM_FLAG_ORG","features":[389]},{"name":"CERT_ROOT_PROGRAM_FLAG_OU","features":[389]},{"name":"CERT_ROOT_PROGRAM_FLAG_SUBJECT_LOGO","features":[389]},{"name":"CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[389]},{"name":"CERT_RSA_PUBLIC_KEY_OBJID","features":[389]},{"name":"CERT_SCARD_PIN_ID_PROP_ID","features":[389]},{"name":"CERT_SCARD_PIN_INFO_PROP_ID","features":[389]},{"name":"CERT_SCEP_CA_CERT_PROP_ID","features":[389]},{"name":"CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[389]},{"name":"CERT_SCEP_FLAGS_PROP_ID","features":[389]},{"name":"CERT_SCEP_GUID_PROP_ID","features":[389]},{"name":"CERT_SCEP_NONCE_PROP_ID","features":[389]},{"name":"CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[389]},{"name":"CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[389]},{"name":"CERT_SCEP_SERVER_CERTS_PROP_ID","features":[389]},{"name":"CERT_SCEP_SIGNER_CERT_PROP_ID","features":[389]},{"name":"CERT_SELECT_ALLOW_DUPLICATES","features":[389]},{"name":"CERT_SELECT_ALLOW_EXPIRED","features":[389]},{"name":"CERT_SELECT_BY_ENHKEY_USAGE","features":[389]},{"name":"CERT_SELECT_BY_EXTENSION","features":[389]},{"name":"CERT_SELECT_BY_FRIENDLYNAME","features":[389]},{"name":"CERT_SELECT_BY_ISSUER_ATTR","features":[389]},{"name":"CERT_SELECT_BY_ISSUER_DISPLAYNAME","features":[389]},{"name":"CERT_SELECT_BY_ISSUER_NAME","features":[389]},{"name":"CERT_SELECT_BY_KEY_USAGE","features":[389]},{"name":"CERT_SELECT_BY_POLICY_OID","features":[389]},{"name":"CERT_SELECT_BY_PROV_NAME","features":[389]},{"name":"CERT_SELECT_BY_PUBLIC_KEY","features":[389]},{"name":"CERT_SELECT_BY_SUBJECT_ATTR","features":[389]},{"name":"CERT_SELECT_BY_SUBJECT_HOST_NAME","features":[389]},{"name":"CERT_SELECT_BY_THUMBPRINT","features":[389]},{"name":"CERT_SELECT_BY_TLS_SIGNATURES","features":[389]},{"name":"CERT_SELECT_CHAIN_PARA","features":[305,389]},{"name":"CERT_SELECT_CRITERIA","features":[389]},{"name":"CERT_SELECT_CRITERIA_TYPE","features":[389]},{"name":"CERT_SELECT_DISALLOW_SELFSIGNED","features":[389]},{"name":"CERT_SELECT_HARDWARE_ONLY","features":[389]},{"name":"CERT_SELECT_HAS_KEY_FOR_KEY_EXCHANGE","features":[389]},{"name":"CERT_SELECT_HAS_KEY_FOR_SIGNATURE","features":[389]},{"name":"CERT_SELECT_HAS_PRIVATE_KEY","features":[389]},{"name":"CERT_SELECT_IGNORE_AUTOSELECT","features":[389]},{"name":"CERT_SELECT_MAX_PARA","features":[389]},{"name":"CERT_SELECT_TRUSTED_ROOT","features":[389]},{"name":"CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[389]},{"name":"CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[389]},{"name":"CERT_SERIAL_CHAIN_PROP_ID","features":[389]},{"name":"CERT_SERVER_OCSP_RESPONSE_ASYNC_FLAG","features":[389]},{"name":"CERT_SERVER_OCSP_RESPONSE_CONTEXT","features":[389]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA","features":[305,389]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_READ_FLAG","features":[389]},{"name":"CERT_SERVER_OCSP_RESPONSE_OPEN_PARA_WRITE_FLAG","features":[389]},{"name":"CERT_SET_KEY_CONTEXT_PROP_ID","features":[389]},{"name":"CERT_SET_KEY_PROV_HANDLE_PROP_ID","features":[389]},{"name":"CERT_SET_PROPERTY_IGNORE_PERSIST_ERROR_FLAG","features":[389]},{"name":"CERT_SET_PROPERTY_INHIBIT_PERSIST_FLAG","features":[389]},{"name":"CERT_SHA1_HASH_PROP_ID","features":[389]},{"name":"CERT_SHA256_HASH_PROP_ID","features":[389]},{"name":"CERT_SIGNATURE_HASH_PROP_ID","features":[389]},{"name":"CERT_SIGNED_CONTENT_INFO","features":[389]},{"name":"CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[389]},{"name":"CERT_SIMPLE_CHAIN","features":[305,389]},{"name":"CERT_SIMPLE_NAME_STR","features":[389]},{"name":"CERT_SMART_CARD_DATA_PROP_ID","features":[389]},{"name":"CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[389]},{"name":"CERT_SMART_CARD_READER_PROP_ID","features":[389]},{"name":"CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[389]},{"name":"CERT_SOURCE_LOCATION_PROP_ID","features":[389]},{"name":"CERT_SOURCE_URL_PROP_ID","features":[389]},{"name":"CERT_SRV_OCSP_RESP_MAX_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_SRV_OCSP_RESP_MAX_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_SRV_OCSP_RESP_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_SRV_OCSP_RESP_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_DEFAULT","features":[389]},{"name":"CERT_SRV_OCSP_RESP_MIN_SYNC_CERT_FILE_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_SRV_OCSP_RESP_MIN_VALIDITY_SECONDS_VALUE_NAME","features":[389]},{"name":"CERT_SRV_OCSP_RESP_URL_RETRIEVAL_TIMEOUT_MILLISECONDS_VALUE_NAME","features":[389]},{"name":"CERT_STORE_ADD_ALWAYS","features":[389]},{"name":"CERT_STORE_ADD_NEW","features":[389]},{"name":"CERT_STORE_ADD_NEWER","features":[389]},{"name":"CERT_STORE_ADD_NEWER_INHERIT_PROPERTIES","features":[389]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING","features":[389]},{"name":"CERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES","features":[389]},{"name":"CERT_STORE_ADD_USE_EXISTING","features":[389]},{"name":"CERT_STORE_BACKUP_RESTORE_FLAG","features":[389]},{"name":"CERT_STORE_BASE_CRL_FLAG","features":[389]},{"name":"CERT_STORE_CERTIFICATE_CONTEXT","features":[389]},{"name":"CERT_STORE_CREATE_NEW_FLAG","features":[389]},{"name":"CERT_STORE_CRL_CONTEXT","features":[389]},{"name":"CERT_STORE_CTL_CONTEXT","features":[389]},{"name":"CERT_STORE_CTRL_AUTO_RESYNC","features":[389]},{"name":"CERT_STORE_CTRL_CANCEL_NOTIFY","features":[389]},{"name":"CERT_STORE_CTRL_COMMIT","features":[389]},{"name":"CERT_STORE_CTRL_COMMIT_CLEAR_FLAG","features":[389]},{"name":"CERT_STORE_CTRL_COMMIT_FORCE_FLAG","features":[389]},{"name":"CERT_STORE_CTRL_INHIBIT_DUPLICATE_HANDLE_FLAG","features":[389]},{"name":"CERT_STORE_CTRL_NOTIFY_CHANGE","features":[389]},{"name":"CERT_STORE_CTRL_RESYNC","features":[389]},{"name":"CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG","features":[389]},{"name":"CERT_STORE_DELETE_FLAG","features":[389]},{"name":"CERT_STORE_DELTA_CRL_FLAG","features":[389]},{"name":"CERT_STORE_ENUM_ARCHIVED_FLAG","features":[389]},{"name":"CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[389]},{"name":"CERT_STORE_MANIFOLD_FLAG","features":[389]},{"name":"CERT_STORE_MAXIMUM_ALLOWED_FLAG","features":[389]},{"name":"CERT_STORE_NO_CRL_FLAG","features":[389]},{"name":"CERT_STORE_NO_CRYPT_RELEASE_FLAG","features":[389]},{"name":"CERT_STORE_NO_ISSUER_FLAG","features":[389]},{"name":"CERT_STORE_OPEN_EXISTING_FLAG","features":[389]},{"name":"CERT_STORE_PROV_CLOSE_FUNC","features":[389]},{"name":"CERT_STORE_PROV_COLLECTION","features":[389]},{"name":"CERT_STORE_PROV_CONTROL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_DELETED_FLAG","features":[389]},{"name":"CERT_STORE_PROV_DELETE_CERT_FUNC","features":[389]},{"name":"CERT_STORE_PROV_DELETE_CRL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_DELETE_CTL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_EXTERNAL_FLAG","features":[389]},{"name":"CERT_STORE_PROV_FILE","features":[389]},{"name":"CERT_STORE_PROV_FILENAME","features":[389]},{"name":"CERT_STORE_PROV_FILENAME_A","features":[389]},{"name":"CERT_STORE_PROV_FILENAME_W","features":[389]},{"name":"CERT_STORE_PROV_FIND_CERT_FUNC","features":[389]},{"name":"CERT_STORE_PROV_FIND_CRL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_FIND_CTL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_FIND_INFO","features":[389]},{"name":"CERT_STORE_PROV_FLAGS","features":[389]},{"name":"CERT_STORE_PROV_FREE_FIND_CERT_FUNC","features":[389]},{"name":"CERT_STORE_PROV_FREE_FIND_CRL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_FREE_FIND_CTL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_GET_CERT_PROPERTY_FUNC","features":[389]},{"name":"CERT_STORE_PROV_GET_CRL_PROPERTY_FUNC","features":[389]},{"name":"CERT_STORE_PROV_GET_CTL_PROPERTY_FUNC","features":[389]},{"name":"CERT_STORE_PROV_GP_SYSTEM_STORE_FLAG","features":[389]},{"name":"CERT_STORE_PROV_INFO","features":[389]},{"name":"CERT_STORE_PROV_LDAP","features":[389]},{"name":"CERT_STORE_PROV_LDAP_W","features":[389]},{"name":"CERT_STORE_PROV_LM_SYSTEM_STORE_FLAG","features":[389]},{"name":"CERT_STORE_PROV_MEMORY","features":[389]},{"name":"CERT_STORE_PROV_MSG","features":[389]},{"name":"CERT_STORE_PROV_NO_PERSIST_FLAG","features":[389]},{"name":"CERT_STORE_PROV_PHYSICAL","features":[389]},{"name":"CERT_STORE_PROV_PHYSICAL_W","features":[389]},{"name":"CERT_STORE_PROV_PKCS12","features":[389]},{"name":"CERT_STORE_PROV_PKCS7","features":[389]},{"name":"CERT_STORE_PROV_READ_CERT_FUNC","features":[389]},{"name":"CERT_STORE_PROV_READ_CRL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_READ_CTL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_REG","features":[389]},{"name":"CERT_STORE_PROV_SERIALIZED","features":[389]},{"name":"CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC","features":[389]},{"name":"CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC","features":[389]},{"name":"CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC","features":[389]},{"name":"CERT_STORE_PROV_SHARED_USER_FLAG","features":[389]},{"name":"CERT_STORE_PROV_SMART_CARD","features":[389]},{"name":"CERT_STORE_PROV_SMART_CARD_W","features":[389]},{"name":"CERT_STORE_PROV_SYSTEM","features":[389]},{"name":"CERT_STORE_PROV_SYSTEM_A","features":[389]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY","features":[389]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_A","features":[389]},{"name":"CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[389]},{"name":"CERT_STORE_PROV_SYSTEM_STORE_FLAG","features":[389]},{"name":"CERT_STORE_PROV_SYSTEM_W","features":[389]},{"name":"CERT_STORE_PROV_WRITE_ADD_FLAG","features":[389]},{"name":"CERT_STORE_PROV_WRITE_CERT_FUNC","features":[389]},{"name":"CERT_STORE_PROV_WRITE_CRL_FUNC","features":[389]},{"name":"CERT_STORE_PROV_WRITE_CTL_FUNC","features":[389]},{"name":"CERT_STORE_READONLY_FLAG","features":[389]},{"name":"CERT_STORE_REVOCATION_FLAG","features":[389]},{"name":"CERT_STORE_SAVE_AS","features":[389]},{"name":"CERT_STORE_SAVE_AS_PKCS12","features":[389]},{"name":"CERT_STORE_SAVE_AS_PKCS7","features":[389]},{"name":"CERT_STORE_SAVE_AS_STORE","features":[389]},{"name":"CERT_STORE_SAVE_TO","features":[389]},{"name":"CERT_STORE_SAVE_TO_FILE","features":[389]},{"name":"CERT_STORE_SAVE_TO_FILENAME","features":[389]},{"name":"CERT_STORE_SAVE_TO_FILENAME_A","features":[389]},{"name":"CERT_STORE_SAVE_TO_FILENAME_W","features":[389]},{"name":"CERT_STORE_SAVE_TO_MEMORY","features":[389]},{"name":"CERT_STORE_SET_LOCALIZED_NAME_FLAG","features":[389]},{"name":"CERT_STORE_SHARE_CONTEXT_FLAG","features":[389]},{"name":"CERT_STORE_SHARE_STORE_FLAG","features":[389]},{"name":"CERT_STORE_SIGNATURE_FLAG","features":[389]},{"name":"CERT_STORE_TIME_VALIDITY_FLAG","features":[389]},{"name":"CERT_STORE_UNSAFE_PHYSICAL_FLAG","features":[389]},{"name":"CERT_STORE_UPDATE_KEYID_FLAG","features":[389]},{"name":"CERT_STRING_TYPE","features":[389]},{"name":"CERT_STRONG_SIGN_ECDSA_ALGORITHM","features":[389]},{"name":"CERT_STRONG_SIGN_ENABLE_CRL_CHECK","features":[389]},{"name":"CERT_STRONG_SIGN_ENABLE_OCSP_CHECK","features":[389]},{"name":"CERT_STRONG_SIGN_FLAGS","features":[389]},{"name":"CERT_STRONG_SIGN_OID_INFO_CHOICE","features":[389]},{"name":"CERT_STRONG_SIGN_PARA","features":[389]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO","features":[389]},{"name":"CERT_STRONG_SIGN_SERIALIZED_INFO_CHOICE","features":[389]},{"name":"CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[389]},{"name":"CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[389]},{"name":"CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[389]},{"name":"CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[389]},{"name":"CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[389]},{"name":"CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[389]},{"name":"CERT_SUPPORTED_ALGORITHM_INFO","features":[389]},{"name":"CERT_SYSTEM_STORE_CURRENT_SERVICE_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER","features":[389]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_CURRENT_USER_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_DEFER_READ_FLAG","features":[389]},{"name":"CERT_SYSTEM_STORE_FLAGS","features":[389]},{"name":"CERT_SYSTEM_STORE_INFO","features":[389]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE","features":[389]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_LOCAL_MACHINE_WCOS_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_LOCATION_MASK","features":[389]},{"name":"CERT_SYSTEM_STORE_LOCATION_SHIFT","features":[389]},{"name":"CERT_SYSTEM_STORE_MASK","features":[389]},{"name":"CERT_SYSTEM_STORE_RELOCATE_FLAG","features":[389]},{"name":"CERT_SYSTEM_STORE_RELOCATE_PARA","features":[389,366]},{"name":"CERT_SYSTEM_STORE_SERVICES_ID","features":[389]},{"name":"CERT_SYSTEM_STORE_UNPROTECTED_FLAG","features":[389]},{"name":"CERT_SYSTEM_STORE_USERS_ID","features":[389]},{"name":"CERT_TEMPLATE_EXT","features":[305,389]},{"name":"CERT_TIMESTAMP_HASH_USE_TYPE","features":[389]},{"name":"CERT_TPM_SPECIFICATION_INFO","features":[389]},{"name":"CERT_TRUST_AUTO_UPDATE_CA_REVOCATION","features":[389]},{"name":"CERT_TRUST_AUTO_UPDATE_END_REVOCATION","features":[389]},{"name":"CERT_TRUST_BEFORE_DISALLOWED_CA_FILETIME","features":[389]},{"name":"CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID","features":[389]},{"name":"CERT_TRUST_CTL_IS_NOT_TIME_VALID","features":[389]},{"name":"CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE","features":[389]},{"name":"CERT_TRUST_HAS_ALLOW_WEAK_SIGNATURE","features":[389]},{"name":"CERT_TRUST_HAS_AUTO_UPDATE_WEAK_SIGNATURE","features":[389]},{"name":"CERT_TRUST_HAS_CRL_VALIDITY_EXTENDED","features":[389]},{"name":"CERT_TRUST_HAS_EXACT_MATCH_ISSUER","features":[389]},{"name":"CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT","features":[389]},{"name":"CERT_TRUST_HAS_ISSUANCE_CHAIN_POLICY","features":[389]},{"name":"CERT_TRUST_HAS_KEY_MATCH_ISSUER","features":[389]},{"name":"CERT_TRUST_HAS_NAME_MATCH_ISSUER","features":[389]},{"name":"CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT","features":[389]},{"name":"CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT","features":[389]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT","features":[389]},{"name":"CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT","features":[389]},{"name":"CERT_TRUST_HAS_PREFERRED_ISSUER","features":[389]},{"name":"CERT_TRUST_HAS_VALID_NAME_CONSTRAINTS","features":[389]},{"name":"CERT_TRUST_HAS_WEAK_HYGIENE","features":[389]},{"name":"CERT_TRUST_HAS_WEAK_SIGNATURE","features":[389]},{"name":"CERT_TRUST_INVALID_BASIC_CONSTRAINTS","features":[389]},{"name":"CERT_TRUST_INVALID_EXTENSION","features":[389]},{"name":"CERT_TRUST_INVALID_NAME_CONSTRAINTS","features":[389]},{"name":"CERT_TRUST_INVALID_POLICY_CONSTRAINTS","features":[389]},{"name":"CERT_TRUST_IS_CA_TRUSTED","features":[389]},{"name":"CERT_TRUST_IS_COMPLEX_CHAIN","features":[389]},{"name":"CERT_TRUST_IS_CYCLIC","features":[389]},{"name":"CERT_TRUST_IS_EXPLICIT_DISTRUST","features":[389]},{"name":"CERT_TRUST_IS_FROM_EXCLUSIVE_TRUST_STORE","features":[389]},{"name":"CERT_TRUST_IS_KEY_ROLLOVER","features":[389]},{"name":"CERT_TRUST_IS_NOT_SIGNATURE_VALID","features":[389]},{"name":"CERT_TRUST_IS_NOT_TIME_NESTED","features":[389]},{"name":"CERT_TRUST_IS_NOT_TIME_VALID","features":[389]},{"name":"CERT_TRUST_IS_NOT_VALID_FOR_USAGE","features":[389]},{"name":"CERT_TRUST_IS_OFFLINE_REVOCATION","features":[389]},{"name":"CERT_TRUST_IS_PARTIAL_CHAIN","features":[389]},{"name":"CERT_TRUST_IS_PEER_TRUSTED","features":[389]},{"name":"CERT_TRUST_IS_REVOKED","features":[389]},{"name":"CERT_TRUST_IS_SELF_SIGNED","features":[389]},{"name":"CERT_TRUST_IS_UNTRUSTED_ROOT","features":[389]},{"name":"CERT_TRUST_LIST_INFO","features":[305,389]},{"name":"CERT_TRUST_NO_ERROR","features":[389]},{"name":"CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY","features":[389]},{"name":"CERT_TRUST_NO_OCSP_FAILOVER_TO_CRL","features":[389]},{"name":"CERT_TRUST_NO_TIME_CHECK","features":[389]},{"name":"CERT_TRUST_PUB_ALLOW_END_USER_TRUST","features":[389]},{"name":"CERT_TRUST_PUB_ALLOW_ENTERPRISE_ADMIN_TRUST","features":[389]},{"name":"CERT_TRUST_PUB_ALLOW_MACHINE_ADMIN_TRUST","features":[389]},{"name":"CERT_TRUST_PUB_ALLOW_TRUST_MASK","features":[389]},{"name":"CERT_TRUST_PUB_AUTHENTICODE_FLAGS_VALUE_NAME","features":[389]},{"name":"CERT_TRUST_PUB_CHECK_PUBLISHER_REV_FLAG","features":[389]},{"name":"CERT_TRUST_PUB_CHECK_TIMESTAMP_REV_FLAG","features":[389]},{"name":"CERT_TRUST_REVOCATION_STATUS_UNKNOWN","features":[389]},{"name":"CERT_TRUST_SSL_HANDSHAKE_OCSP","features":[389]},{"name":"CERT_TRUST_SSL_RECONNECT_OCSP","features":[389]},{"name":"CERT_TRUST_SSL_TIME_VALID","features":[389]},{"name":"CERT_TRUST_SSL_TIME_VALID_OCSP","features":[389]},{"name":"CERT_TRUST_STATUS","features":[389]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_MASK","features":[389]},{"name":"CERT_UNICODE_ATTR_ERR_INDEX_SHIFT","features":[389]},{"name":"CERT_UNICODE_IS_RDN_ATTRS_FLAG","features":[389]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_MASK","features":[389]},{"name":"CERT_UNICODE_RDN_ERR_INDEX_SHIFT","features":[389]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_MASK","features":[389]},{"name":"CERT_UNICODE_VALUE_ERR_INDEX_SHIFT","features":[389]},{"name":"CERT_USAGE_MATCH","features":[389]},{"name":"CERT_V1","features":[389]},{"name":"CERT_V2","features":[389]},{"name":"CERT_V3","features":[389]},{"name":"CERT_VERIFY_ALLOW_MORE_USAGE_FLAG","features":[389]},{"name":"CERT_VERIFY_CACHE_ONLY_BASED_REVOCATION","features":[389]},{"name":"CERT_VERIFY_INHIBIT_CTL_UPDATE_FLAG","features":[389]},{"name":"CERT_VERIFY_NO_TIME_CHECK_FLAG","features":[389]},{"name":"CERT_VERIFY_REV_ACCUMULATIVE_TIMEOUT_FLAG","features":[389]},{"name":"CERT_VERIFY_REV_CHAIN_FLAG","features":[389]},{"name":"CERT_VERIFY_REV_NO_OCSP_FAILOVER_TO_CRL_FLAG","features":[389]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_FLAG","features":[389]},{"name":"CERT_VERIFY_REV_SERVER_OCSP_WIRE_ONLY_FLAG","features":[389]},{"name":"CERT_VERIFY_TRUSTED_SIGNERS_FLAG","features":[389]},{"name":"CERT_VERIFY_UPDATED_CTL_FLAG","features":[389]},{"name":"CERT_X500_NAME_STR","features":[389]},{"name":"CERT_X942_DH_PARAMETERS","features":[389]},{"name":"CERT_X942_DH_VALIDATION_PARAMS","features":[389]},{"name":"CERT_XML_NAME_STR","features":[389]},{"name":"CESSetupProperty","features":[389]},{"name":"CKP_BLOCK_LENGTH","features":[389]},{"name":"CKP_CHAINING_MODE","features":[389]},{"name":"CKP_INITIALIZATION_VECTOR","features":[389]},{"name":"CLAIMLIST","features":[389]},{"name":"CLMD_FILE_TAG_CARD_AUTH_CERT","features":[389]},{"name":"CLMD_FILE_TAG_CARD_CAPABILITY_CONTAINER","features":[389]},{"name":"CLMD_FILE_TAG_CHUID","features":[389]},{"name":"CLMD_FILE_TAG_FACIAL_IMAGE","features":[389]},{"name":"CLMD_FILE_TAG_FINGERPRINT","features":[389]},{"name":"CLMD_FILE_TAG_FIRST_RETIRED_KEY_MGMT_KEY","features":[389]},{"name":"CLMD_FILE_TAG_KEY_HISTORY","features":[389]},{"name":"CLMD_FILE_TAG_KEY_MGMT_CERT","features":[389]},{"name":"CLMD_FILE_TAG_LAST_RETIRED_KEY_MGMT_KEY","features":[389]},{"name":"CLMD_FILE_TAG_PIV_AUTH_CERT","features":[389]},{"name":"CLMD_FILE_TAG_PRINTED_INFORMATION","features":[389]},{"name":"CLMD_FILE_TAG_SECURITY_OBJECT","features":[389]},{"name":"CLMD_FILE_TAG_SIG_CERT","features":[389]},{"name":"CLMD_FILE_TAG_UNSIGNED_CHUID","features":[389]},{"name":"CLMD_PIV_CERT_DATA","features":[389]},{"name":"CLMD_PIV_CERT_DATA_CURRENT_VERSION","features":[389]},{"name":"CLMD_PIV_GENERATE_ASYMMETRIC_KEY","features":[389]},{"name":"CLMD_PIV_GENERATE_ASYMMETRIC_KEY_CURRENT_VERSION","features":[389]},{"name":"CLMD_PIV_PUBLIC_KEY_DATA","features":[389]},{"name":"CLMD_PIV_PUBLIC_KEY_DATA_CURRENT_VERSION","features":[389]},{"name":"CMC_ADD_ATTRIBUTES","features":[389]},{"name":"CMC_ADD_ATTRIBUTES_INFO","features":[389]},{"name":"CMC_ADD_EXTENSIONS","features":[389]},{"name":"CMC_ADD_EXTENSIONS_INFO","features":[305,389]},{"name":"CMC_DATA","features":[389]},{"name":"CMC_DATA_INFO","features":[389]},{"name":"CMC_FAIL_BAD_ALG","features":[389]},{"name":"CMC_FAIL_BAD_CERT_ID","features":[389]},{"name":"CMC_FAIL_BAD_IDENTITY","features":[389]},{"name":"CMC_FAIL_BAD_MESSAGE_CHECK","features":[389]},{"name":"CMC_FAIL_BAD_REQUEST","features":[389]},{"name":"CMC_FAIL_BAD_TIME","features":[389]},{"name":"CMC_FAIL_INTERNAL_CA_ERROR","features":[389]},{"name":"CMC_FAIL_MUST_ARCHIVE_KEYS","features":[389]},{"name":"CMC_FAIL_NO_KEY_REUSE","features":[389]},{"name":"CMC_FAIL_POP_FAILED","features":[389]},{"name":"CMC_FAIL_POP_REQUIRED","features":[389]},{"name":"CMC_FAIL_TRY_LATER","features":[389]},{"name":"CMC_FAIL_UNSUPORTED_EXT","features":[389]},{"name":"CMC_OTHER_INFO_FAIL_CHOICE","features":[389]},{"name":"CMC_OTHER_INFO_NO_CHOICE","features":[389]},{"name":"CMC_OTHER_INFO_PEND_CHOICE","features":[389]},{"name":"CMC_PEND_INFO","features":[305,389]},{"name":"CMC_RESPONSE","features":[389]},{"name":"CMC_RESPONSE_INFO","features":[389]},{"name":"CMC_STATUS","features":[389]},{"name":"CMC_STATUS_CONFIRM_REQUIRED","features":[389]},{"name":"CMC_STATUS_FAILED","features":[389]},{"name":"CMC_STATUS_INFO","features":[305,389]},{"name":"CMC_STATUS_NO_SUPPORT","features":[389]},{"name":"CMC_STATUS_PENDING","features":[389]},{"name":"CMC_STATUS_SUCCESS","features":[389]},{"name":"CMC_TAGGED_ATTRIBUTE","features":[389]},{"name":"CMC_TAGGED_CERT_REQUEST","features":[389]},{"name":"CMC_TAGGED_CERT_REQUEST_CHOICE","features":[389]},{"name":"CMC_TAGGED_CONTENT_INFO","features":[389]},{"name":"CMC_TAGGED_OTHER_MSG","features":[389]},{"name":"CMC_TAGGED_REQUEST","features":[389]},{"name":"CMSCEPSetup","features":[389]},{"name":"CMSG_ATTR_CERT_COUNT_PARAM","features":[389]},{"name":"CMSG_ATTR_CERT_PARAM","features":[389]},{"name":"CMSG_AUTHENTICATED_ATTRIBUTES_FLAG","features":[389]},{"name":"CMSG_BARE_CONTENT_FLAG","features":[389]},{"name":"CMSG_BARE_CONTENT_PARAM","features":[389]},{"name":"CMSG_CERT_COUNT_PARAM","features":[389]},{"name":"CMSG_CERT_PARAM","features":[389]},{"name":"CMSG_CMS_ENCAPSULATED_CONTENT_FLAG","features":[389]},{"name":"CMSG_CMS_ENCAPSULATED_CTL_FLAG","features":[389]},{"name":"CMSG_CMS_RECIPIENT_COUNT_PARAM","features":[389]},{"name":"CMSG_CMS_RECIPIENT_ENCRYPTED_KEY_INDEX_PARAM","features":[389]},{"name":"CMSG_CMS_RECIPIENT_INDEX_PARAM","features":[389]},{"name":"CMSG_CMS_RECIPIENT_INFO","features":[305,389]},{"name":"CMSG_CMS_RECIPIENT_INFO_PARAM","features":[389]},{"name":"CMSG_CMS_SIGNER_INFO","features":[389]},{"name":"CMSG_CMS_SIGNER_INFO_PARAM","features":[389]},{"name":"CMSG_CNG_CONTENT_DECRYPT_INFO","features":[389]},{"name":"CMSG_COMPUTED_HASH_PARAM","features":[389]},{"name":"CMSG_CONTENTS_OCTETS_FLAG","features":[389]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_OBJID_FLAG","features":[389]},{"name":"CMSG_CONTENT_ENCRYPT_FREE_PARA_FLAG","features":[389]},{"name":"CMSG_CONTENT_ENCRYPT_INFO","features":[305,389]},{"name":"CMSG_CONTENT_ENCRYPT_PAD_ENCODED_LEN_FLAG","features":[389]},{"name":"CMSG_CONTENT_ENCRYPT_RELEASE_CONTEXT_FLAG","features":[389]},{"name":"CMSG_CONTENT_PARAM","features":[389]},{"name":"CMSG_CRL_COUNT_PARAM","features":[389]},{"name":"CMSG_CRL_PARAM","features":[389]},{"name":"CMSG_CRYPT_RELEASE_CONTEXT_FLAG","features":[389]},{"name":"CMSG_CTRL_ADD_ATTR_CERT","features":[389]},{"name":"CMSG_CTRL_ADD_CERT","features":[389]},{"name":"CMSG_CTRL_ADD_CMS_SIGNER_INFO","features":[389]},{"name":"CMSG_CTRL_ADD_CRL","features":[389]},{"name":"CMSG_CTRL_ADD_SIGNER","features":[389]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR","features":[389]},{"name":"CMSG_CTRL_ADD_SIGNER_UNAUTH_ATTR_PARA","features":[389]},{"name":"CMSG_CTRL_DECRYPT","features":[389]},{"name":"CMSG_CTRL_DECRYPT_PARA","features":[389]},{"name":"CMSG_CTRL_DEL_ATTR_CERT","features":[389]},{"name":"CMSG_CTRL_DEL_CERT","features":[389]},{"name":"CMSG_CTRL_DEL_CRL","features":[389]},{"name":"CMSG_CTRL_DEL_SIGNER","features":[389]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR","features":[389]},{"name":"CMSG_CTRL_DEL_SIGNER_UNAUTH_ATTR_PARA","features":[389]},{"name":"CMSG_CTRL_ENABLE_STRONG_SIGNATURE","features":[389]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT","features":[389]},{"name":"CMSG_CTRL_KEY_AGREE_DECRYPT_PARA","features":[305,389]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT","features":[389]},{"name":"CMSG_CTRL_KEY_TRANS_DECRYPT_PARA","features":[389]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT","features":[389]},{"name":"CMSG_CTRL_MAIL_LIST_DECRYPT_PARA","features":[305,389]},{"name":"CMSG_CTRL_VERIFY_HASH","features":[389]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE","features":[389]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX","features":[389]},{"name":"CMSG_CTRL_VERIFY_SIGNATURE_EX_PARA","features":[389]},{"name":"CMSG_DATA","features":[389]},{"name":"CMSG_DEFAULT_INSTALLABLE_FUNC_OID","features":[389]},{"name":"CMSG_DETACHED_FLAG","features":[389]},{"name":"CMSG_ENCODED_MESSAGE","features":[389]},{"name":"CMSG_ENCODED_SIGNER","features":[389]},{"name":"CMSG_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[389]},{"name":"CMSG_ENCODE_SORTED_CTL_FLAG","features":[389]},{"name":"CMSG_ENCODING_TYPE_MASK","features":[389]},{"name":"CMSG_ENCRYPTED","features":[389]},{"name":"CMSG_ENCRYPTED_DIGEST","features":[389]},{"name":"CMSG_ENCRYPTED_ENCODE_INFO","features":[389]},{"name":"CMSG_ENCRYPT_PARAM","features":[389]},{"name":"CMSG_ENVELOPED","features":[389]},{"name":"CMSG_ENVELOPED_DATA_CMS_VERSION","features":[389]},{"name":"CMSG_ENVELOPED_DATA_PKCS_1_5_VERSION","features":[389]},{"name":"CMSG_ENVELOPED_DATA_V0","features":[389]},{"name":"CMSG_ENVELOPED_DATA_V2","features":[389]},{"name":"CMSG_ENVELOPED_ENCODE_INFO","features":[305,389]},{"name":"CMSG_ENVELOPED_RECIPIENT_V0","features":[389]},{"name":"CMSG_ENVELOPED_RECIPIENT_V2","features":[389]},{"name":"CMSG_ENVELOPED_RECIPIENT_V3","features":[389]},{"name":"CMSG_ENVELOPED_RECIPIENT_V4","features":[389]},{"name":"CMSG_ENVELOPE_ALGORITHM_PARAM","features":[389]},{"name":"CMSG_HASHED","features":[389]},{"name":"CMSG_HASHED_DATA_CMS_VERSION","features":[389]},{"name":"CMSG_HASHED_DATA_PKCS_1_5_VERSION","features":[389]},{"name":"CMSG_HASHED_DATA_V0","features":[389]},{"name":"CMSG_HASHED_DATA_V2","features":[389]},{"name":"CMSG_HASHED_ENCODE_INFO","features":[389]},{"name":"CMSG_HASH_ALGORITHM_PARAM","features":[389]},{"name":"CMSG_HASH_DATA_PARAM","features":[389]},{"name":"CMSG_INDEFINITE_LENGTH","features":[389]},{"name":"CMSG_INNER_CONTENT_TYPE_PARAM","features":[389]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_MATERIAL_FLAG","features":[389]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_OBJID_FLAG","features":[389]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PARA_FLAG","features":[389]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_ALG_FLAG","features":[389]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_BITS_FLAG","features":[389]},{"name":"CMSG_KEY_AGREE_ENCRYPT_FREE_PUBKEY_PARA_FLAG","features":[389]},{"name":"CMSG_KEY_AGREE_ENCRYPT_INFO","features":[389]},{"name":"CMSG_KEY_AGREE_EPHEMERAL_KEY_CHOICE","features":[389]},{"name":"CMSG_KEY_AGREE_KEY_ENCRYPT_INFO","features":[389]},{"name":"CMSG_KEY_AGREE_OPTION","features":[389]},{"name":"CMSG_KEY_AGREE_ORIGINATOR","features":[389]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_CERT","features":[389]},{"name":"CMSG_KEY_AGREE_ORIGINATOR_PUBLIC_KEY","features":[389]},{"name":"CMSG_KEY_AGREE_RECIPIENT","features":[389]},{"name":"CMSG_KEY_AGREE_RECIPIENT_ENCODE_INFO","features":[305,389]},{"name":"CMSG_KEY_AGREE_RECIPIENT_INFO","features":[305,389]},{"name":"CMSG_KEY_AGREE_STATIC_KEY_CHOICE","features":[389]},{"name":"CMSG_KEY_AGREE_VERSION","features":[389]},{"name":"CMSG_KEY_TRANS_CMS_VERSION","features":[389]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_OBJID_FLAG","features":[389]},{"name":"CMSG_KEY_TRANS_ENCRYPT_FREE_PARA_FLAG","features":[389]},{"name":"CMSG_KEY_TRANS_ENCRYPT_INFO","features":[389]},{"name":"CMSG_KEY_TRANS_PKCS_1_5_VERSION","features":[389]},{"name":"CMSG_KEY_TRANS_RECIPIENT","features":[389]},{"name":"CMSG_KEY_TRANS_RECIPIENT_ENCODE_INFO","features":[389]},{"name":"CMSG_KEY_TRANS_RECIPIENT_INFO","features":[389]},{"name":"CMSG_LENGTH_ONLY_FLAG","features":[389]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_OBJID_FLAG","features":[389]},{"name":"CMSG_MAIL_LIST_ENCRYPT_FREE_PARA_FLAG","features":[389]},{"name":"CMSG_MAIL_LIST_ENCRYPT_INFO","features":[389]},{"name":"CMSG_MAIL_LIST_HANDLE_KEY_CHOICE","features":[389]},{"name":"CMSG_MAIL_LIST_RECIPIENT","features":[389]},{"name":"CMSG_MAIL_LIST_RECIPIENT_ENCODE_INFO","features":[305,389]},{"name":"CMSG_MAIL_LIST_RECIPIENT_INFO","features":[305,389]},{"name":"CMSG_MAIL_LIST_VERSION","features":[389]},{"name":"CMSG_MAX_LENGTH_FLAG","features":[389]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_AGREE_FUNC","features":[389]},{"name":"CMSG_OID_CAPI1_EXPORT_KEY_TRANS_FUNC","features":[389]},{"name":"CMSG_OID_CAPI1_EXPORT_MAIL_LIST_FUNC","features":[389]},{"name":"CMSG_OID_CAPI1_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[389]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_AGREE_FUNC","features":[389]},{"name":"CMSG_OID_CAPI1_IMPORT_KEY_TRANS_FUNC","features":[389]},{"name":"CMSG_OID_CAPI1_IMPORT_MAIL_LIST_FUNC","features":[389]},{"name":"CMSG_OID_CNG_EXPORT_KEY_AGREE_FUNC","features":[389]},{"name":"CMSG_OID_CNG_EXPORT_KEY_TRANS_FUNC","features":[389]},{"name":"CMSG_OID_CNG_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[389]},{"name":"CMSG_OID_CNG_IMPORT_CONTENT_ENCRYPT_KEY_FUNC","features":[389]},{"name":"CMSG_OID_CNG_IMPORT_KEY_AGREE_FUNC","features":[389]},{"name":"CMSG_OID_CNG_IMPORT_KEY_TRANS_FUNC","features":[389]},{"name":"CMSG_OID_EXPORT_ENCRYPT_KEY_FUNC","features":[389]},{"name":"CMSG_OID_EXPORT_KEY_AGREE_FUNC","features":[389]},{"name":"CMSG_OID_EXPORT_KEY_TRANS_FUNC","features":[389]},{"name":"CMSG_OID_EXPORT_MAIL_LIST_FUNC","features":[389]},{"name":"CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC","features":[389]},{"name":"CMSG_OID_GEN_ENCRYPT_KEY_FUNC","features":[389]},{"name":"CMSG_OID_IMPORT_ENCRYPT_KEY_FUNC","features":[389]},{"name":"CMSG_OID_IMPORT_KEY_AGREE_FUNC","features":[389]},{"name":"CMSG_OID_IMPORT_KEY_TRANS_FUNC","features":[389]},{"name":"CMSG_OID_IMPORT_MAIL_LIST_FUNC","features":[389]},{"name":"CMSG_RC2_AUX_INFO","features":[389]},{"name":"CMSG_RC4_AUX_INFO","features":[389]},{"name":"CMSG_RC4_NO_SALT_FLAG","features":[389]},{"name":"CMSG_RECIPIENT_COUNT_PARAM","features":[389]},{"name":"CMSG_RECIPIENT_ENCODE_INFO","features":[305,389]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_ENCODE_INFO","features":[305,389]},{"name":"CMSG_RECIPIENT_ENCRYPTED_KEY_INFO","features":[305,389]},{"name":"CMSG_RECIPIENT_INDEX_PARAM","features":[389]},{"name":"CMSG_RECIPIENT_INFO_PARAM","features":[389]},{"name":"CMSG_SIGNED","features":[389]},{"name":"CMSG_SIGNED_AND_ENVELOPED","features":[389]},{"name":"CMSG_SIGNED_AND_ENVELOPED_ENCODE_INFO","features":[305,389]},{"name":"CMSG_SIGNED_DATA_CMS_VERSION","features":[389]},{"name":"CMSG_SIGNED_DATA_NO_SIGN_FLAG","features":[389]},{"name":"CMSG_SIGNED_DATA_PKCS_1_5_VERSION","features":[389]},{"name":"CMSG_SIGNED_DATA_V1","features":[389]},{"name":"CMSG_SIGNED_DATA_V3","features":[389]},{"name":"CMSG_SIGNED_ENCODE_INFO","features":[305,389]},{"name":"CMSG_SIGNER_AUTH_ATTR_PARAM","features":[389]},{"name":"CMSG_SIGNER_CERT_ID_PARAM","features":[389]},{"name":"CMSG_SIGNER_CERT_INFO_PARAM","features":[389]},{"name":"CMSG_SIGNER_COUNT_PARAM","features":[389]},{"name":"CMSG_SIGNER_ENCODE_INFO","features":[305,389]},{"name":"CMSG_SIGNER_HASH_ALGORITHM_PARAM","features":[389]},{"name":"CMSG_SIGNER_INFO","features":[389]},{"name":"CMSG_SIGNER_INFO_CMS_VERSION","features":[389]},{"name":"CMSG_SIGNER_INFO_PARAM","features":[389]},{"name":"CMSG_SIGNER_INFO_PKCS_1_5_VERSION","features":[389]},{"name":"CMSG_SIGNER_INFO_V1","features":[389]},{"name":"CMSG_SIGNER_INFO_V3","features":[389]},{"name":"CMSG_SIGNER_ONLY_FLAG","features":[389]},{"name":"CMSG_SIGNER_UNAUTH_ATTR_PARAM","features":[389]},{"name":"CMSG_SP3_COMPATIBLE_AUX_INFO","features":[389]},{"name":"CMSG_SP3_COMPATIBLE_ENCRYPT_FLAG","features":[389]},{"name":"CMSG_STREAM_INFO","features":[305,389]},{"name":"CMSG_TRUSTED_SIGNER_FLAG","features":[389]},{"name":"CMSG_TYPE_PARAM","features":[389]},{"name":"CMSG_UNPROTECTED_ATTR_PARAM","features":[389]},{"name":"CMSG_USE_SIGNER_INDEX_FLAG","features":[389]},{"name":"CMSG_VERIFY_COUNTER_SIGN_ENABLE_STRONG_FLAG","features":[389]},{"name":"CMSG_VERIFY_SIGNER_CERT","features":[389]},{"name":"CMSG_VERIFY_SIGNER_CHAIN","features":[389]},{"name":"CMSG_VERIFY_SIGNER_NULL","features":[389]},{"name":"CMSG_VERIFY_SIGNER_PUBKEY","features":[389]},{"name":"CMSG_VERSION_PARAM","features":[389]},{"name":"CMS_DH_KEY_INFO","features":[389]},{"name":"CMS_KEY_INFO","features":[389]},{"name":"CMS_SIGNER_INFO","features":[389]},{"name":"CNG_RSA_PRIVATE_KEY_BLOB","features":[389]},{"name":"CNG_RSA_PUBLIC_KEY_BLOB","features":[389]},{"name":"CONTAINER_INFO","features":[389]},{"name":"CONTAINER_INFO_CURRENT_VERSION","features":[389]},{"name":"CONTAINER_MAP_DEFAULT_CONTAINER","features":[389]},{"name":"CONTAINER_MAP_RECORD","features":[389]},{"name":"CONTAINER_MAP_VALID_CONTAINER","features":[389]},{"name":"CONTEXT_OID_CAPI2_ANY","features":[389]},{"name":"CONTEXT_OID_CERTIFICATE","features":[389]},{"name":"CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC","features":[389]},{"name":"CONTEXT_OID_CRL","features":[389]},{"name":"CONTEXT_OID_CTL","features":[389]},{"name":"CONTEXT_OID_OCSP_RESP","features":[389]},{"name":"CONTEXT_OID_PKCS7","features":[389]},{"name":"CPS_URLS","features":[389]},{"name":"CP_CACHE_MODE_GLOBAL_CACHE","features":[389]},{"name":"CP_CACHE_MODE_NO_CACHE","features":[389]},{"name":"CP_CACHE_MODE_SESSION_ONLY","features":[389]},{"name":"CP_CARD_AUTHENTICATED_STATE","features":[389]},{"name":"CP_CARD_CACHE_MODE","features":[389]},{"name":"CP_CARD_CAPABILITIES","features":[389]},{"name":"CP_CARD_FREE_SPACE","features":[389]},{"name":"CP_CARD_GUID","features":[389]},{"name":"CP_CARD_KEYSIZES","features":[389]},{"name":"CP_CARD_LIST_PINS","features":[389]},{"name":"CP_CARD_PIN_INFO","features":[389]},{"name":"CP_CARD_PIN_STRENGTH_CHANGE","features":[389]},{"name":"CP_CARD_PIN_STRENGTH_UNBLOCK","features":[389]},{"name":"CP_CARD_PIN_STRENGTH_VERIFY","features":[389]},{"name":"CP_CARD_PIV","features":[389]},{"name":"CP_CARD_READ_ONLY","features":[389]},{"name":"CP_CARD_SERIAL_NO","features":[389]},{"name":"CP_CHAINING_MODES","features":[389]},{"name":"CP_ENUM_ALGORITHMS","features":[389]},{"name":"CP_KEY_IMPORT_SUPPORT","features":[389]},{"name":"CP_PADDING_SCHEMES","features":[389]},{"name":"CP_PARENT_WINDOW","features":[389]},{"name":"CP_PIN_CONTEXT_STRING","features":[389]},{"name":"CP_PIV_CARD_CAPABILITY_CONTAINER","features":[389]},{"name":"CP_PIV_CARD_HOLDER_UNIQUE_IDENTIFIER","features":[389]},{"name":"CP_PIV_CARD_HOLDER_UNSIGNED_UNIQUE_IDENTIFIER","features":[389]},{"name":"CP_PIV_CERTIFICATE","features":[389]},{"name":"CP_PIV_FACIAL_IMAGE","features":[389]},{"name":"CP_PIV_FINGERPRINT","features":[389]},{"name":"CP_PIV_GENERATE_KEY","features":[389]},{"name":"CP_PIV_KEY_HISTORY_OBJECT","features":[389]},{"name":"CP_PIV_PRINTED_INFORMATION","features":[389]},{"name":"CP_PIV_PUBLIC_KEY","features":[389]},{"name":"CP_PIV_SECURITY_OBJECT","features":[389]},{"name":"CP_SUPPORTS_WIN_X509_ENROLLMENT","features":[389]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS","features":[389]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_A","features":[389]},{"name":"CREDENTIAL_OID_PASSWORD_CREDENTIALS_W","features":[389]},{"name":"CRL_CONTEXT","features":[305,389]},{"name":"CRL_DIST_POINT","features":[389]},{"name":"CRL_DIST_POINTS_INFO","features":[389]},{"name":"CRL_DIST_POINT_ERR_CRL_ISSUER_BIT","features":[389]},{"name":"CRL_DIST_POINT_ERR_INDEX_MASK","features":[389]},{"name":"CRL_DIST_POINT_ERR_INDEX_SHIFT","features":[389]},{"name":"CRL_DIST_POINT_FULL_NAME","features":[389]},{"name":"CRL_DIST_POINT_ISSUER_RDN_NAME","features":[389]},{"name":"CRL_DIST_POINT_NAME","features":[389]},{"name":"CRL_DIST_POINT_NO_NAME","features":[389]},{"name":"CRL_ENTRY","features":[305,389]},{"name":"CRL_FIND_ANY","features":[389]},{"name":"CRL_FIND_EXISTING","features":[389]},{"name":"CRL_FIND_ISSUED_BY","features":[389]},{"name":"CRL_FIND_ISSUED_BY_AKI_FLAG","features":[389]},{"name":"CRL_FIND_ISSUED_BY_BASE_FLAG","features":[389]},{"name":"CRL_FIND_ISSUED_BY_DELTA_FLAG","features":[389]},{"name":"CRL_FIND_ISSUED_BY_SIGNATURE_FLAG","features":[389]},{"name":"CRL_FIND_ISSUED_FOR","features":[389]},{"name":"CRL_FIND_ISSUED_FOR_PARA","features":[305,389]},{"name":"CRL_FIND_ISSUED_FOR_SET_STRONG_PROPERTIES_FLAG","features":[389]},{"name":"CRL_INFO","features":[305,389]},{"name":"CRL_ISSUING_DIST_POINT","features":[305,389]},{"name":"CRL_REASON_AA_COMPROMISE","features":[389]},{"name":"CRL_REASON_AA_COMPROMISE_FLAG","features":[389]},{"name":"CRL_REASON_AFFILIATION_CHANGED","features":[389]},{"name":"CRL_REASON_AFFILIATION_CHANGED_FLAG","features":[389]},{"name":"CRL_REASON_CA_COMPROMISE","features":[389]},{"name":"CRL_REASON_CA_COMPROMISE_FLAG","features":[389]},{"name":"CRL_REASON_CERTIFICATE_HOLD","features":[389]},{"name":"CRL_REASON_CERTIFICATE_HOLD_FLAG","features":[389]},{"name":"CRL_REASON_CESSATION_OF_OPERATION","features":[389]},{"name":"CRL_REASON_CESSATION_OF_OPERATION_FLAG","features":[389]},{"name":"CRL_REASON_KEY_COMPROMISE","features":[389]},{"name":"CRL_REASON_KEY_COMPROMISE_FLAG","features":[389]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN","features":[389]},{"name":"CRL_REASON_PRIVILEGE_WITHDRAWN_FLAG","features":[389]},{"name":"CRL_REASON_REMOVE_FROM_CRL","features":[389]},{"name":"CRL_REASON_SUPERSEDED","features":[389]},{"name":"CRL_REASON_SUPERSEDED_FLAG","features":[389]},{"name":"CRL_REASON_UNSPECIFIED","features":[389]},{"name":"CRL_REASON_UNUSED_FLAG","features":[389]},{"name":"CRL_REVOCATION_INFO","features":[305,389]},{"name":"CRL_V1","features":[389]},{"name":"CRL_V2","features":[389]},{"name":"CROSS_CERT_DIST_POINTS_INFO","features":[389]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_MASK","features":[389]},{"name":"CROSS_CERT_DIST_POINT_ERR_INDEX_SHIFT","features":[389]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_DEFAULT","features":[389]},{"name":"CRYPTNET_CACHED_OCSP_SWITCH_TO_CRL_COUNT_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_BEFORE_OCSP_ENABLE","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_DISABLE_INFORMATION_EVENTS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_LOG_FILE_NAME_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_MAX_AGE_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_PROCESS_NAME_LIST_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_BEFORE_NEXT_UPDATE_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_PUBLISH_RANDOM_INTERVAL_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_TIMEOUT_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_CRL_PRE_FETCH_URL_LIST_VALUE_NAME","features":[389]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_DEFAULT","features":[389]},{"name":"CRYPTNET_MAX_CACHED_OCSP_PER_CRL_COUNT_VALUE_NAME","features":[389]},{"name":"CRYPTNET_OCSP_AFTER_CRL_DISABLE","features":[389]},{"name":"CRYPTNET_PRE_FETCH_AFTER_CURRENT_TIME_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_DEFAULT","features":[389]},{"name":"CRYPTNET_PRE_FETCH_AFTER_PUBLISH_PRE_FETCH_DIVISOR_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[389]},{"name":"CRYPTNET_PRE_FETCH_BEFORE_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_MAX_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_MAX_MAX_AGE_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_MIN_AFTER_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_MIN_BEFORE_NEXT_UPDATE_PRE_FETCH_PERIOD_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_MIN_MAX_AGE_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_MIN_OCSP_VALIDITY_PERIOD_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_RETRIEVAL_TIMEOUT_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_DEFAULT","features":[389]},{"name":"CRYPTNET_PRE_FETCH_SCAN_AFTER_TRIGGER_DELAY_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_DISABLE","features":[389]},{"name":"CRYPTNET_PRE_FETCH_TRIGGER_PERIOD_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_DEFAULT","features":[389]},{"name":"CRYPTNET_PRE_FETCH_VALIDITY_PERIOD_AFTER_NEXT_UPDATE_PRE_FETCH_DIVISOR_VALUE_NAME","features":[389]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH","features":[389]},{"name":"CRYPTNET_URL_CACHE_DEFAULT_FLUSH_EXEMPT_SECONDS_VALUE_NAME","features":[389]},{"name":"CRYPTNET_URL_CACHE_DISABLE_FLUSH","features":[389]},{"name":"CRYPTNET_URL_CACHE_FLUSH_INFO","features":[305,389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_AUTOROOT_CAB","features":[389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_BLOB","features":[389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_CRL","features":[389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_DISALLOWED_CERT_CAB","features":[389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_INFO","features":[305,389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_NONE","features":[389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_OCSP","features":[389]},{"name":"CRYPTNET_URL_CACHE_PRE_FETCH_PIN_RULES_CAB","features":[389]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_HTTP","features":[389]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_INFO","features":[305,389]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_NONE","features":[389]},{"name":"CRYPTNET_URL_CACHE_RESPONSE_VALIDATED","features":[389]},{"name":"CRYPTPROTECTMEMORY_BLOCK_SIZE","features":[389]},{"name":"CRYPTPROTECTMEMORY_CROSS_PROCESS","features":[389]},{"name":"CRYPTPROTECTMEMORY_SAME_LOGON","features":[389]},{"name":"CRYPTPROTECTMEMORY_SAME_PROCESS","features":[389]},{"name":"CRYPTPROTECT_AUDIT","features":[389]},{"name":"CRYPTPROTECT_CRED_REGENERATE","features":[389]},{"name":"CRYPTPROTECT_CRED_SYNC","features":[389]},{"name":"CRYPTPROTECT_DEFAULT_PROVIDER","features":[389]},{"name":"CRYPTPROTECT_FIRST_RESERVED_FLAGVAL","features":[389]},{"name":"CRYPTPROTECT_LAST_RESERVED_FLAGVAL","features":[389]},{"name":"CRYPTPROTECT_LOCAL_MACHINE","features":[389]},{"name":"CRYPTPROTECT_NO_RECOVERY","features":[389]},{"name":"CRYPTPROTECT_PROMPTSTRUCT","features":[305,389]},{"name":"CRYPTPROTECT_PROMPT_ON_PROTECT","features":[389]},{"name":"CRYPTPROTECT_PROMPT_ON_UNPROTECT","features":[389]},{"name":"CRYPTPROTECT_PROMPT_REQUIRE_STRONG","features":[389]},{"name":"CRYPTPROTECT_PROMPT_RESERVED","features":[389]},{"name":"CRYPTPROTECT_PROMPT_STRONG","features":[389]},{"name":"CRYPTPROTECT_UI_FORBIDDEN","features":[389]},{"name":"CRYPTPROTECT_VERIFY_PROTECTION","features":[389]},{"name":"CRYPT_3DES_KEY_STATE","features":[389]},{"name":"CRYPT_ACCUMULATIVE_TIMEOUT","features":[389]},{"name":"CRYPT_ACQUIRE_ALLOW_NCRYPT_KEY_FLAG","features":[389]},{"name":"CRYPT_ACQUIRE_CACHE_FLAG","features":[389]},{"name":"CRYPT_ACQUIRE_COMPARE_KEY_FLAG","features":[389]},{"name":"CRYPT_ACQUIRE_FLAGS","features":[389]},{"name":"CRYPT_ACQUIRE_NCRYPT_KEY_FLAGS_MASK","features":[389]},{"name":"CRYPT_ACQUIRE_NO_HEALING","features":[389]},{"name":"CRYPT_ACQUIRE_ONLY_NCRYPT_KEY_FLAG","features":[389]},{"name":"CRYPT_ACQUIRE_PREFER_NCRYPT_KEY_FLAG","features":[389]},{"name":"CRYPT_ACQUIRE_SILENT_FLAG","features":[389]},{"name":"CRYPT_ACQUIRE_USE_PROV_INFO_FLAG","features":[389]},{"name":"CRYPT_ACQUIRE_WINDOW_HANDLE_FLAG","features":[389]},{"name":"CRYPT_AES_128_KEY_STATE","features":[389]},{"name":"CRYPT_AES_256_KEY_STATE","features":[389]},{"name":"CRYPT_AIA_RETRIEVAL","features":[389]},{"name":"CRYPT_ALGORITHM_IDENTIFIER","features":[389]},{"name":"CRYPT_ALL_FUNCTIONS","features":[389]},{"name":"CRYPT_ALL_PROVIDERS","features":[389]},{"name":"CRYPT_ANY","features":[389]},{"name":"CRYPT_ARCHIVABLE","features":[389]},{"name":"CRYPT_ARCHIVE","features":[389]},{"name":"CRYPT_ASN_ENCODING","features":[389]},{"name":"CRYPT_ASYNC_RETRIEVAL","features":[389]},{"name":"CRYPT_ASYNC_RETRIEVAL_COMPLETION","features":[389]},{"name":"CRYPT_ATTRIBUTE","features":[389]},{"name":"CRYPT_ATTRIBUTES","features":[389]},{"name":"CRYPT_ATTRIBUTE_TYPE_VALUE","features":[389]},{"name":"CRYPT_BIT_BLOB","features":[389]},{"name":"CRYPT_BLOB_ARRAY","features":[389]},{"name":"CRYPT_BLOB_VER3","features":[389]},{"name":"CRYPT_CACHE_ONLY_RETRIEVAL","features":[389]},{"name":"CRYPT_CHECK_FRESHNESS_TIME_VALIDITY","features":[389]},{"name":"CRYPT_CONTENT_INFO","features":[389]},{"name":"CRYPT_CONTENT_INFO_SEQUENCE_OF_ANY","features":[389]},{"name":"CRYPT_CONTEXTS","features":[389]},{"name":"CRYPT_CONTEXT_CONFIG","features":[389]},{"name":"CRYPT_CONTEXT_CONFIG_FLAGS","features":[389]},{"name":"CRYPT_CONTEXT_FUNCTIONS","features":[389]},{"name":"CRYPT_CONTEXT_FUNCTION_CONFIG","features":[389]},{"name":"CRYPT_CONTEXT_FUNCTION_PROVIDERS","features":[389]},{"name":"CRYPT_CREATE_IV","features":[389]},{"name":"CRYPT_CREATE_NEW_FLUSH_ENTRY","features":[389]},{"name":"CRYPT_CREATE_SALT","features":[389]},{"name":"CRYPT_CREDENTIALS","features":[389]},{"name":"CRYPT_CSP_PROVIDER","features":[389]},{"name":"CRYPT_DATA_KEY","features":[389]},{"name":"CRYPT_DECODE_ALLOC_FLAG","features":[389]},{"name":"CRYPT_DECODE_ENABLE_PUNYCODE_FLAG","features":[389]},{"name":"CRYPT_DECODE_ENABLE_UTF8PERCENT_FLAG","features":[389]},{"name":"CRYPT_DECODE_NOCOPY_FLAG","features":[389]},{"name":"CRYPT_DECODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[389]},{"name":"CRYPT_DECODE_PARA","features":[389]},{"name":"CRYPT_DECODE_SHARE_OID_STRING_FLAG","features":[389]},{"name":"CRYPT_DECODE_TO_BE_SIGNED_FLAG","features":[389]},{"name":"CRYPT_DECRYPT","features":[389]},{"name":"CRYPT_DECRYPT_MESSAGE_PARA","features":[389]},{"name":"CRYPT_DECRYPT_RSA_NO_PADDING_CHECK","features":[389]},{"name":"CRYPT_DEFAULT_CONTAINER_OPTIONAL","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT_AUTO_RELEASE_FLAG","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT_CERT_SIGN_OID","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT_FLAGS","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_CERT_SIGN_OID","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT_MULTI_OID_PARA","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT_PROCESS_FLAG","features":[389]},{"name":"CRYPT_DEFAULT_CONTEXT_TYPE","features":[389]},{"name":"CRYPT_DEFAULT_OID","features":[389]},{"name":"CRYPT_DELETEKEYSET","features":[389]},{"name":"CRYPT_DELETE_DEFAULT","features":[389]},{"name":"CRYPT_DELETE_KEYSET","features":[389]},{"name":"CRYPT_DESTROYKEY","features":[389]},{"name":"CRYPT_DES_KEY_STATE","features":[389]},{"name":"CRYPT_DOMAIN","features":[389]},{"name":"CRYPT_DONT_CACHE_RESULT","features":[389]},{"name":"CRYPT_DONT_CHECK_TIME_VALIDITY","features":[389]},{"name":"CRYPT_DONT_VERIFY_SIGNATURE","features":[389]},{"name":"CRYPT_ECC_CMS_SHARED_INFO","features":[389]},{"name":"CRYPT_ECC_CMS_SHARED_INFO_SUPPPUBINFO_BYTE_LENGTH","features":[389]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO","features":[389]},{"name":"CRYPT_ECC_PRIVATE_KEY_INFO_v1","features":[389]},{"name":"CRYPT_ENABLE_FILE_RETRIEVAL","features":[389]},{"name":"CRYPT_ENABLE_SSL_REVOCATION_RETRIEVAL","features":[389]},{"name":"CRYPT_ENCODE_ALLOC_FLAG","features":[389]},{"name":"CRYPT_ENCODE_DECODE_NONE","features":[389]},{"name":"CRYPT_ENCODE_ENABLE_PUNYCODE_FLAG","features":[389]},{"name":"CRYPT_ENCODE_ENABLE_UTF8PERCENT_FLAG","features":[389]},{"name":"CRYPT_ENCODE_NO_SIGNATURE_BYTE_REVERSAL_FLAG","features":[389]},{"name":"CRYPT_ENCODE_OBJECT_FLAGS","features":[389]},{"name":"CRYPT_ENCODE_PARA","features":[389]},{"name":"CRYPT_ENCRYPT","features":[389]},{"name":"CRYPT_ENCRYPTED_PRIVATE_KEY_INFO","features":[389]},{"name":"CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[389]},{"name":"CRYPT_ENCRYPT_MESSAGE_PARA","features":[389]},{"name":"CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[389]},{"name":"CRYPT_ENROLLMENT_NAME_VALUE_PAIR","features":[389]},{"name":"CRYPT_EXCLUSIVE","features":[389]},{"name":"CRYPT_EXPORT","features":[389]},{"name":"CRYPT_EXPORTABLE","features":[389]},{"name":"CRYPT_EXPORT_KEY","features":[389]},{"name":"CRYPT_EXTERNAL_SIGNATURE_LENGTH","features":[389]},{"name":"CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[389]},{"name":"CRYPT_FAILED","features":[389]},{"name":"CRYPT_FASTSGC","features":[389]},{"name":"CRYPT_FIND_FLAGS","features":[389]},{"name":"CRYPT_FIND_MACHINE_KEYSET_FLAG","features":[389]},{"name":"CRYPT_FIND_SILENT_KEYSET_FLAG","features":[389]},{"name":"CRYPT_FIND_USER_KEYSET_FLAG","features":[389]},{"name":"CRYPT_FIRST","features":[389]},{"name":"CRYPT_FIRST_ALG_OID_GROUP_ID","features":[389]},{"name":"CRYPT_FLAG_IPSEC","features":[389]},{"name":"CRYPT_FLAG_PCT1","features":[389]},{"name":"CRYPT_FLAG_SIGNING","features":[389]},{"name":"CRYPT_FLAG_SSL2","features":[389]},{"name":"CRYPT_FLAG_SSL3","features":[389]},{"name":"CRYPT_FLAG_TLS1","features":[389]},{"name":"CRYPT_FORCE_KEY_PROTECTION_HIGH","features":[389]},{"name":"CRYPT_FORMAT_COMMA","features":[389]},{"name":"CRYPT_FORMAT_CRLF","features":[389]},{"name":"CRYPT_FORMAT_OID","features":[389]},{"name":"CRYPT_FORMAT_RDN_CRLF","features":[389]},{"name":"CRYPT_FORMAT_RDN_REVERSE","features":[389]},{"name":"CRYPT_FORMAT_RDN_SEMICOLON","features":[389]},{"name":"CRYPT_FORMAT_RDN_UNQUOTE","features":[389]},{"name":"CRYPT_FORMAT_SEMICOLON","features":[389]},{"name":"CRYPT_FORMAT_SIMPLE","features":[389]},{"name":"CRYPT_FORMAT_STR_MULTI_LINE","features":[389]},{"name":"CRYPT_FORMAT_STR_NO_HEX","features":[389]},{"name":"CRYPT_FORMAT_X509","features":[389]},{"name":"CRYPT_GET_INSTALLED_OID_FUNC_FLAG","features":[389]},{"name":"CRYPT_GET_TIME_VALID_OBJECT_EXTRA_INFO","features":[305,389]},{"name":"CRYPT_GET_URL_FLAGS","features":[389]},{"name":"CRYPT_GET_URL_FROM_AUTH_ATTRIBUTE","features":[389]},{"name":"CRYPT_GET_URL_FROM_EXTENSION","features":[389]},{"name":"CRYPT_GET_URL_FROM_PROPERTY","features":[389]},{"name":"CRYPT_GET_URL_FROM_UNAUTH_ATTRIBUTE","features":[389]},{"name":"CRYPT_HASH_ALG_OID_GROUP_ID","features":[389]},{"name":"CRYPT_HASH_INFO","features":[389]},{"name":"CRYPT_HASH_MESSAGE_PARA","features":[389]},{"name":"CRYPT_HTTP_POST_RETRIEVAL","features":[389]},{"name":"CRYPT_IMAGE_REF","features":[389]},{"name":"CRYPT_IMAGE_REF_FLAGS","features":[389]},{"name":"CRYPT_IMAGE_REG","features":[389]},{"name":"CRYPT_IMPL_HARDWARE","features":[389]},{"name":"CRYPT_IMPL_MIXED","features":[389]},{"name":"CRYPT_IMPL_REMOVABLE","features":[389]},{"name":"CRYPT_IMPL_SOFTWARE","features":[389]},{"name":"CRYPT_IMPL_UNKNOWN","features":[389]},{"name":"CRYPT_IMPORT_KEY","features":[389]},{"name":"CRYPT_IMPORT_PUBLIC_KEY_FLAGS","features":[389]},{"name":"CRYPT_INITIATOR","features":[389]},{"name":"CRYPT_INSTALL_OID_FUNC_BEFORE_FLAG","features":[389]},{"name":"CRYPT_INSTALL_OID_INFO_BEFORE_FLAG","features":[389]},{"name":"CRYPT_INTEGER_BLOB","features":[389]},{"name":"CRYPT_INTERFACE_REG","features":[389]},{"name":"CRYPT_IPSEC_HMAC_KEY","features":[389]},{"name":"CRYPT_KDF_OID_GROUP_ID","features":[389]},{"name":"CRYPT_KEEP_TIME_VALID","features":[389]},{"name":"CRYPT_KEK","features":[389]},{"name":"CRYPT_KEYID_ALLOC_FLAG","features":[389]},{"name":"CRYPT_KEYID_DELETE_FLAG","features":[389]},{"name":"CRYPT_KEYID_MACHINE_FLAG","features":[389]},{"name":"CRYPT_KEYID_SET_NEW_FLAG","features":[389]},{"name":"CRYPT_KEY_FLAGS","features":[389]},{"name":"CRYPT_KEY_PARAM_ID","features":[389]},{"name":"CRYPT_KEY_PROV_INFO","features":[389]},{"name":"CRYPT_KEY_PROV_PARAM","features":[389]},{"name":"CRYPT_KEY_SIGN_MESSAGE_PARA","features":[389]},{"name":"CRYPT_KEY_VERIFY_MESSAGE_PARA","features":[389]},{"name":"CRYPT_KM","features":[389]},{"name":"CRYPT_LAST_ALG_OID_GROUP_ID","features":[389]},{"name":"CRYPT_LAST_OID_GROUP_ID","features":[389]},{"name":"CRYPT_LDAP_AREC_EXCLUSIVE_RETRIEVAL","features":[389]},{"name":"CRYPT_LDAP_INSERT_ENTRY_ATTRIBUTE","features":[389]},{"name":"CRYPT_LDAP_SCOPE_BASE_ONLY_RETRIEVAL","features":[389]},{"name":"CRYPT_LDAP_SIGN_RETRIEVAL","features":[389]},{"name":"CRYPT_LITTLE_ENDIAN","features":[389]},{"name":"CRYPT_LOCAL","features":[389]},{"name":"CRYPT_LOCALIZED_NAME_ENCODING_TYPE","features":[389]},{"name":"CRYPT_LOCALIZED_NAME_OID","features":[389]},{"name":"CRYPT_MAC","features":[389]},{"name":"CRYPT_MACHINE_DEFAULT","features":[389]},{"name":"CRYPT_MACHINE_KEYSET","features":[389]},{"name":"CRYPT_MAC_RESOURCE","features":[389]},{"name":"CRYPT_MAC_RESOURCE_NUMBER","features":[389]},{"name":"CRYPT_MASK_GEN_ALGORITHM","features":[389]},{"name":"CRYPT_MATCH_ANY_ENCODING_TYPE","features":[389]},{"name":"CRYPT_MAX_PROVIDER_ID","features":[389]},{"name":"CRYPT_MESSAGE_BARE_CONTENT_OUT_FLAG","features":[389]},{"name":"CRYPT_MESSAGE_ENCAPSULATED_CONTENT_OUT_FLAG","features":[389]},{"name":"CRYPT_MESSAGE_KEYID_RECIPIENT_FLAG","features":[389]},{"name":"CRYPT_MESSAGE_KEYID_SIGNER_FLAG","features":[389]},{"name":"CRYPT_MESSAGE_SILENT_KEYSET_FLAG","features":[389]},{"name":"CRYPT_MIN_DEPENDENCIES","features":[389]},{"name":"CRYPT_MM","features":[389]},{"name":"CRYPT_MODE_CBC","features":[389]},{"name":"CRYPT_MODE_CBCI","features":[389]},{"name":"CRYPT_MODE_CBCOFM","features":[389]},{"name":"CRYPT_MODE_CBCOFMI","features":[389]},{"name":"CRYPT_MODE_CFB","features":[389]},{"name":"CRYPT_MODE_CFBP","features":[389]},{"name":"CRYPT_MODE_CTS","features":[389]},{"name":"CRYPT_MODE_ECB","features":[389]},{"name":"CRYPT_MODE_OFB","features":[389]},{"name":"CRYPT_MODE_OFBP","features":[389]},{"name":"CRYPT_MSG_TYPE","features":[389]},{"name":"CRYPT_NDR_ENCODING","features":[389]},{"name":"CRYPT_NEWKEYSET","features":[389]},{"name":"CRYPT_NEXT","features":[389]},{"name":"CRYPT_NOHASHOID","features":[389]},{"name":"CRYPT_NOT_MODIFIED_RETRIEVAL","features":[389]},{"name":"CRYPT_NO_AUTH_RETRIEVAL","features":[389]},{"name":"CRYPT_NO_OCSP_FAILOVER_TO_CRL_RETRIEVAL","features":[389]},{"name":"CRYPT_NO_SALT","features":[389]},{"name":"CRYPT_OAEP","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_FIRST_RESERVED_USER_NAME_TYPE","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_NAME_TYPE","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_LAST_RESERVED_USER_NAME_TYPE","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_PROVIDER_TABLE","features":[305,389]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_DLL_UNLOAD","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_PROCESS_EXIT","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_REASON","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SERVICE_STOP","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_RELEASE_SYSTEM_SHUTDOWN","features":[389]},{"name":"CRYPT_OBJECT_LOCATOR_SPN_NAME_TYPE","features":[389]},{"name":"CRYPT_OBJID_TABLE","features":[389]},{"name":"CRYPT_OCSP_ONLY_RETRIEVAL","features":[389]},{"name":"CRYPT_OFFLINE_CHECK_RETRIEVAL","features":[389]},{"name":"CRYPT_OID_CREATE_COM_OBJECT_FUNC","features":[389]},{"name":"CRYPT_OID_DECODE_OBJECT_EX_FUNC","features":[389]},{"name":"CRYPT_OID_DECODE_OBJECT_FUNC","features":[389]},{"name":"CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[389]},{"name":"CRYPT_OID_ENCODE_OBJECT_EX_FUNC","features":[389]},{"name":"CRYPT_OID_ENCODE_OBJECT_FUNC","features":[389]},{"name":"CRYPT_OID_ENUM_PHYSICAL_STORE_FUNC","features":[389]},{"name":"CRYPT_OID_ENUM_SYSTEM_STORE_FUNC","features":[389]},{"name":"CRYPT_OID_EXPORT_PRIVATE_KEY_INFO_FUNC","features":[389]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[389]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[389]},{"name":"CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FUNC","features":[389]},{"name":"CRYPT_OID_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[389]},{"name":"CRYPT_OID_FIND_LOCALIZED_NAME_FUNC","features":[389]},{"name":"CRYPT_OID_FIND_OID_INFO_FUNC","features":[389]},{"name":"CRYPT_OID_FORMAT_OBJECT_FUNC","features":[389]},{"name":"CRYPT_OID_FUNC_ENTRY","features":[389]},{"name":"CRYPT_OID_IMPORT_PRIVATE_KEY_INFO_FUNC","features":[389]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[389]},{"name":"CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_FUNC","features":[389]},{"name":"CRYPT_OID_INFO","features":[389]},{"name":"CRYPT_OID_INFO_ALGID_KEY","features":[389]},{"name":"CRYPT_OID_INFO_CNG_ALGID_KEY","features":[389]},{"name":"CRYPT_OID_INFO_CNG_SIGN_KEY","features":[389]},{"name":"CRYPT_OID_INFO_ECC_PARAMETERS_ALGORITHM","features":[389]},{"name":"CRYPT_OID_INFO_ECC_WRAP_PARAMETERS_ALGORITHM","features":[389]},{"name":"CRYPT_OID_INFO_HASH_PARAMETERS_ALGORITHM","features":[389]},{"name":"CRYPT_OID_INFO_MGF1_PARAMETERS_ALGORITHM","features":[389]},{"name":"CRYPT_OID_INFO_NAME_KEY","features":[389]},{"name":"CRYPT_OID_INFO_NO_PARAMETERS_ALGORITHM","features":[389]},{"name":"CRYPT_OID_INFO_NO_SIGN_ALGORITHM","features":[389]},{"name":"CRYPT_OID_INFO_OAEP_PARAMETERS_ALGORITHM","features":[389]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[389]},{"name":"CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[389]},{"name":"CRYPT_OID_INFO_OID_KEY","features":[389]},{"name":"CRYPT_OID_INFO_OID_KEY_FLAGS_MASK","features":[389]},{"name":"CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[389]},{"name":"CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[389]},{"name":"CRYPT_OID_INFO_SIGN_KEY","features":[389]},{"name":"CRYPT_OID_INHIBIT_SIGNATURE_FORMAT_FLAG","features":[389]},{"name":"CRYPT_OID_NO_NULL_ALGORITHM_PARA_FLAG","features":[389]},{"name":"CRYPT_OID_OPEN_STORE_PROV_FUNC","features":[389]},{"name":"CRYPT_OID_OPEN_SYSTEM_STORE_PROV_FUNC","features":[389]},{"name":"CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[389]},{"name":"CRYPT_OID_PUBKEY_ENCRYPT_ONLY_FLAG","features":[389]},{"name":"CRYPT_OID_PUBKEY_SIGN_ONLY_FLAG","features":[389]},{"name":"CRYPT_OID_REGISTER_PHYSICAL_STORE_FUNC","features":[389]},{"name":"CRYPT_OID_REGISTER_SYSTEM_STORE_FUNC","features":[389]},{"name":"CRYPT_OID_REGPATH","features":[389]},{"name":"CRYPT_OID_REG_DLL_VALUE_NAME","features":[389]},{"name":"CRYPT_OID_REG_ENCODING_TYPE_PREFIX","features":[389]},{"name":"CRYPT_OID_REG_FLAGS_VALUE_NAME","features":[389]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME","features":[389]},{"name":"CRYPT_OID_REG_FUNC_NAME_VALUE_NAME_A","features":[389]},{"name":"CRYPT_OID_SIGN_AND_ENCODE_HASH_FUNC","features":[389]},{"name":"CRYPT_OID_SYSTEM_STORE_LOCATION_VALUE_NAME","features":[389]},{"name":"CRYPT_OID_UNREGISTER_PHYSICAL_STORE_FUNC","features":[389]},{"name":"CRYPT_OID_UNREGISTER_SYSTEM_STORE_FUNC","features":[389]},{"name":"CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[389]},{"name":"CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[389]},{"name":"CRYPT_OID_USE_PUBKEY_PARA_FOR_PKCS7_FLAG","features":[389]},{"name":"CRYPT_OID_VERIFY_CERTIFICATE_CHAIN_POLICY_FUNC","features":[389]},{"name":"CRYPT_OID_VERIFY_CTL_USAGE_FUNC","features":[389]},{"name":"CRYPT_OID_VERIFY_ENCODED_SIGNATURE_FUNC","features":[389]},{"name":"CRYPT_OID_VERIFY_REVOCATION_FUNC","features":[389]},{"name":"CRYPT_ONLINE","features":[389]},{"name":"CRYPT_OVERRIDE","features":[389]},{"name":"CRYPT_OVERWRITE","features":[389]},{"name":"CRYPT_OWF_REPL_LM_HASH","features":[389]},{"name":"CRYPT_PARAM_ASYNC_RETRIEVAL_COMPLETION","features":[389]},{"name":"CRYPT_PARAM_CANCEL_ASYNC_RETRIEVAL","features":[389]},{"name":"CRYPT_PASSWORD_CREDENTIALSA","features":[389]},{"name":"CRYPT_PASSWORD_CREDENTIALSW","features":[389]},{"name":"CRYPT_PKCS12_PBE_PARAMS","features":[389]},{"name":"CRYPT_PKCS8_EXPORT_PARAMS","features":[305,389]},{"name":"CRYPT_PKCS8_IMPORT_PARAMS","features":[305,389]},{"name":"CRYPT_POLICY_OID_GROUP_ID","features":[389]},{"name":"CRYPT_PREGEN","features":[389]},{"name":"CRYPT_PRIORITY_BOTTOM","features":[389]},{"name":"CRYPT_PRIORITY_TOP","features":[389]},{"name":"CRYPT_PRIVATE_KEY_INFO","features":[389]},{"name":"CRYPT_PROCESS_ISOLATE","features":[389]},{"name":"CRYPT_PROPERTY_REF","features":[389]},{"name":"CRYPT_PROVIDERS","features":[389]},{"name":"CRYPT_PROVIDER_IOCTL__GET_SCHANNEL_INTERFACE","features":[389]},{"name":"CRYPT_PROVIDER_REF","features":[389]},{"name":"CRYPT_PROVIDER_REFS","features":[389]},{"name":"CRYPT_PROVIDER_REG","features":[389]},{"name":"CRYPT_PROVSTRUC_VERSION_V3","features":[389]},{"name":"CRYPT_PROXY_CACHE_RETRIEVAL","features":[389]},{"name":"CRYPT_PSOURCE_ALGORITHM","features":[389]},{"name":"CRYPT_PSTORE","features":[389]},{"name":"CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[389]},{"name":"CRYPT_RANDOM_QUERY_STRING_RETRIEVAL","features":[389]},{"name":"CRYPT_RC2_128BIT_VERSION","features":[389]},{"name":"CRYPT_RC2_40BIT_VERSION","features":[389]},{"name":"CRYPT_RC2_56BIT_VERSION","features":[389]},{"name":"CRYPT_RC2_64BIT_VERSION","features":[389]},{"name":"CRYPT_RC2_CBC_PARAMETERS","features":[305,389]},{"name":"CRYPT_RC4_KEY_STATE","features":[389]},{"name":"CRYPT_RDN_ATTR_OID_GROUP_ID","features":[389]},{"name":"CRYPT_READ","features":[389]},{"name":"CRYPT_RECIPIENT","features":[389]},{"name":"CRYPT_REGISTER_FIRST_INDEX","features":[389]},{"name":"CRYPT_REGISTER_LAST_INDEX","features":[389]},{"name":"CRYPT_RETRIEVE_AUX_INFO","features":[305,389]},{"name":"CRYPT_RETRIEVE_MAX_ERROR_CONTENT_LENGTH","features":[389]},{"name":"CRYPT_RETRIEVE_MULTIPLE_OBJECTS","features":[389]},{"name":"CRYPT_RETURN_HWND","features":[305,389]},{"name":"CRYPT_RSAES_OAEP_PARAMETERS","features":[389]},{"name":"CRYPT_RSA_SSA_PSS_PARAMETERS","features":[389]},{"name":"CRYPT_SECRETDIGEST","features":[389]},{"name":"CRYPT_SEC_DESCR","features":[389]},{"name":"CRYPT_SEQUENCE_OF_ANY","features":[389]},{"name":"CRYPT_SERVER","features":[389]},{"name":"CRYPT_SET_HASH_PARAM","features":[389]},{"name":"CRYPT_SET_PROV_PARAM_ID","features":[389]},{"name":"CRYPT_SF","features":[389]},{"name":"CRYPT_SGC","features":[389]},{"name":"CRYPT_SGCKEY","features":[389]},{"name":"CRYPT_SGC_ENUM","features":[389]},{"name":"CRYPT_SIGN_ALG_OID_GROUP_ID","features":[389]},{"name":"CRYPT_SIGN_MESSAGE_PARA","features":[305,389]},{"name":"CRYPT_SIG_RESOURCE","features":[389]},{"name":"CRYPT_SIG_RESOURCE_NUMBER","features":[389]},{"name":"CRYPT_SIG_RESOURCE_VERSION","features":[389]},{"name":"CRYPT_SILENT","features":[389]},{"name":"CRYPT_SMART_CARD_ROOT_INFO","features":[389]},{"name":"CRYPT_SMIME_CAPABILITIES","features":[389]},{"name":"CRYPT_SMIME_CAPABILITY","features":[389]},{"name":"CRYPT_SORTED_CTL_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[389]},{"name":"CRYPT_SSL2_FALLBACK","features":[389]},{"name":"CRYPT_STICKY_CACHE_RETRIEVAL","features":[389]},{"name":"CRYPT_STRING","features":[389]},{"name":"CRYPT_STRING_ANY","features":[389]},{"name":"CRYPT_STRING_BASE64","features":[389]},{"name":"CRYPT_STRING_BASE64HEADER","features":[389]},{"name":"CRYPT_STRING_BASE64REQUESTHEADER","features":[389]},{"name":"CRYPT_STRING_BASE64URI","features":[389]},{"name":"CRYPT_STRING_BASE64X509CRLHEADER","features":[389]},{"name":"CRYPT_STRING_BASE64_ANY","features":[389]},{"name":"CRYPT_STRING_BINARY","features":[389]},{"name":"CRYPT_STRING_ENCODEMASK","features":[389]},{"name":"CRYPT_STRING_HASHDATA","features":[389]},{"name":"CRYPT_STRING_HEX","features":[389]},{"name":"CRYPT_STRING_HEXADDR","features":[389]},{"name":"CRYPT_STRING_HEXASCII","features":[389]},{"name":"CRYPT_STRING_HEXASCIIADDR","features":[389]},{"name":"CRYPT_STRING_HEXRAW","features":[389]},{"name":"CRYPT_STRING_HEX_ANY","features":[389]},{"name":"CRYPT_STRING_NOCR","features":[389]},{"name":"CRYPT_STRING_NOCRLF","features":[389]},{"name":"CRYPT_STRING_PERCENTESCAPE","features":[389]},{"name":"CRYPT_STRING_RESERVED100","features":[389]},{"name":"CRYPT_STRING_RESERVED200","features":[389]},{"name":"CRYPT_STRING_STRICT","features":[389]},{"name":"CRYPT_SUCCEED","features":[389]},{"name":"CRYPT_TEMPLATE_OID_GROUP_ID","features":[389]},{"name":"CRYPT_TIMESTAMP_ACCURACY","features":[389]},{"name":"CRYPT_TIMESTAMP_CONTEXT","features":[305,389]},{"name":"CRYPT_TIMESTAMP_INFO","features":[305,389]},{"name":"CRYPT_TIMESTAMP_PARA","features":[305,389]},{"name":"CRYPT_TIMESTAMP_REQUEST","features":[305,389]},{"name":"CRYPT_TIMESTAMP_RESPONSE","features":[389]},{"name":"CRYPT_TIMESTAMP_RESPONSE_STATUS","features":[389]},{"name":"CRYPT_TIMESTAMP_VERSION","features":[389]},{"name":"CRYPT_TIME_STAMP_REQUEST_INFO","features":[389]},{"name":"CRYPT_TYPE2_FORMAT","features":[389]},{"name":"CRYPT_UI_PROMPT","features":[389]},{"name":"CRYPT_UM","features":[389]},{"name":"CRYPT_UNICODE_NAME_DECODE_DISABLE_IE4_UTF8_FLAG","features":[389]},{"name":"CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG","features":[389]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG","features":[389]},{"name":"CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG","features":[389]},{"name":"CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG","features":[389]},{"name":"CRYPT_UPDATE_KEY","features":[389]},{"name":"CRYPT_URL_ARRAY","features":[389]},{"name":"CRYPT_URL_INFO","features":[389]},{"name":"CRYPT_USERDATA","features":[389]},{"name":"CRYPT_USER_DEFAULT","features":[389]},{"name":"CRYPT_USER_KEYSET","features":[389]},{"name":"CRYPT_USER_PROTECTED","features":[389]},{"name":"CRYPT_USER_PROTECTED_STRONG","features":[389]},{"name":"CRYPT_VERIFYCONTEXT","features":[389]},{"name":"CRYPT_VERIFY_CERT_FLAGS","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_CHECK_WEAK_HASH_FLAG","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_DISABLE_MD2_MD4_FLAG","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_CHAIN","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_NULL","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_ISSUER_PUBKEY","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_RETURN_STRONG_PROPERTIES_FLAG","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_SET_STRONG_PROPERTIES_FLAG","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_STRONG_PROPERTIES_INFO","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_BLOB","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_CRL","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_SUBJECT_OCSP_BASIC_SIGNED_RESPONSE","features":[389]},{"name":"CRYPT_VERIFY_CERT_SIGN_WEAK_HASH_INFO","features":[389]},{"name":"CRYPT_VERIFY_CONTEXT_SIGNATURE","features":[389]},{"name":"CRYPT_VERIFY_DATA_HASH","features":[389]},{"name":"CRYPT_VERIFY_IMAGE_A","features":[305,389]},{"name":"CRYPT_VERIFY_IMAGE_W","features":[305,389]},{"name":"CRYPT_VERIFY_MESSAGE_PARA","features":[305,389]},{"name":"CRYPT_VOLATILE","features":[389]},{"name":"CRYPT_WIRE_ONLY_RETRIEVAL","features":[389]},{"name":"CRYPT_WRITE","features":[389]},{"name":"CRYPT_X931_FORMAT","features":[389]},{"name":"CRYPT_X942_COUNTER_BYTE_LENGTH","features":[389]},{"name":"CRYPT_X942_KEY_LENGTH_BYTE_LENGTH","features":[389]},{"name":"CRYPT_X942_OTHER_INFO","features":[389]},{"name":"CRYPT_XML_ALGORITHM","features":[389]},{"name":"CRYPT_XML_ALGORITHM_INFO","features":[389]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_ALGID","features":[389]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_CNG_SIGN_ALGID","features":[389]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_NAME","features":[389]},{"name":"CRYPT_XML_ALGORITHM_INFO_FIND_BY_URI","features":[389]},{"name":"CRYPT_XML_BLOB","features":[389]},{"name":"CRYPT_XML_BLOB_MAX","features":[389]},{"name":"CRYPT_XML_CHARSET","features":[389]},{"name":"CRYPT_XML_CHARSET_AUTO","features":[389]},{"name":"CRYPT_XML_CHARSET_UTF16BE","features":[389]},{"name":"CRYPT_XML_CHARSET_UTF16LE","features":[389]},{"name":"CRYPT_XML_CHARSET_UTF8","features":[389]},{"name":"CRYPT_XML_CRYPTOGRAPHIC_INTERFACE","features":[389]},{"name":"CRYPT_XML_DATA_BLOB","features":[389]},{"name":"CRYPT_XML_DATA_PROVIDER","features":[389]},{"name":"CRYPT_XML_DIGEST_REFERENCE_DATA_TRANSFORMED","features":[389]},{"name":"CRYPT_XML_DIGEST_VALUE_MAX","features":[389]},{"name":"CRYPT_XML_DOC_CTXT","features":[389]},{"name":"CRYPT_XML_E_ALGORITHM","features":[389]},{"name":"CRYPT_XML_E_BASE","features":[389]},{"name":"CRYPT_XML_E_ENCODING","features":[389]},{"name":"CRYPT_XML_E_HANDLE","features":[389]},{"name":"CRYPT_XML_E_HASH_FAILED","features":[389]},{"name":"CRYPT_XML_E_INVALID_DIGEST","features":[389]},{"name":"CRYPT_XML_E_INVALID_KEYVALUE","features":[389]},{"name":"CRYPT_XML_E_INVALID_SIGNATURE","features":[389]},{"name":"CRYPT_XML_E_LARGE","features":[389]},{"name":"CRYPT_XML_E_LAST","features":[389]},{"name":"CRYPT_XML_E_NON_UNIQUE_ID","features":[389]},{"name":"CRYPT_XML_E_OPERATION","features":[389]},{"name":"CRYPT_XML_E_SIGNER","features":[389]},{"name":"CRYPT_XML_E_SIGN_FAILED","features":[389]},{"name":"CRYPT_XML_E_TOO_MANY_SIGNATURES","features":[389]},{"name":"CRYPT_XML_E_TOO_MANY_TRANSFORMS","features":[389]},{"name":"CRYPT_XML_E_TRANSFORM","features":[389]},{"name":"CRYPT_XML_E_UNEXPECTED_XML","features":[389]},{"name":"CRYPT_XML_E_UNRESOLVED_REFERENCE","features":[389]},{"name":"CRYPT_XML_E_VERIFY_FAILED","features":[389]},{"name":"CRYPT_XML_FLAGS","features":[389]},{"name":"CRYPT_XML_FLAG_ADD_OBJECT_CREATE_COPY","features":[389]},{"name":"CRYPT_XML_FLAG_ALWAYS_RETURN_ENCODED_OBJECT","features":[389]},{"name":"CRYPT_XML_FLAG_CREATE_REFERENCE_AS_OBJECT","features":[389]},{"name":"CRYPT_XML_FLAG_DISABLE_EXTENSIONS","features":[389]},{"name":"CRYPT_XML_FLAG_ECDSA_DSIG11","features":[389]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NAME_FORMAT","features":[389]},{"name":"CRYPT_XML_FLAG_ENFORCE_ID_NCNAME_FORMAT","features":[389]},{"name":"CRYPT_XML_FLAG_NO_SERIALIZE","features":[389]},{"name":"CRYPT_XML_GROUP_ID","features":[389]},{"name":"CRYPT_XML_GROUP_ID_HASH","features":[389]},{"name":"CRYPT_XML_GROUP_ID_SIGN","features":[389]},{"name":"CRYPT_XML_ID_MAX","features":[389]},{"name":"CRYPT_XML_ISSUER_SERIAL","features":[389]},{"name":"CRYPT_XML_KEYINFO_PARAM","features":[389]},{"name":"CRYPT_XML_KEYINFO_SPEC","features":[389]},{"name":"CRYPT_XML_KEYINFO_SPEC_ENCODED","features":[389]},{"name":"CRYPT_XML_KEYINFO_SPEC_NONE","features":[389]},{"name":"CRYPT_XML_KEYINFO_SPEC_PARAM","features":[389]},{"name":"CRYPT_XML_KEYINFO_TYPE","features":[389]},{"name":"CRYPT_XML_KEYINFO_TYPE_CUSTOM","features":[389]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYNAME","features":[389]},{"name":"CRYPT_XML_KEYINFO_TYPE_KEYVALUE","features":[389]},{"name":"CRYPT_XML_KEYINFO_TYPE_RETRIEVAL","features":[389]},{"name":"CRYPT_XML_KEYINFO_TYPE_X509DATA","features":[389]},{"name":"CRYPT_XML_KEY_DSA_KEY_VALUE","features":[389]},{"name":"CRYPT_XML_KEY_ECDSA_KEY_VALUE","features":[389]},{"name":"CRYPT_XML_KEY_INFO","features":[389]},{"name":"CRYPT_XML_KEY_INFO_ITEM","features":[389]},{"name":"CRYPT_XML_KEY_RSA_KEY_VALUE","features":[389]},{"name":"CRYPT_XML_KEY_VALUE","features":[389]},{"name":"CRYPT_XML_KEY_VALUE_TYPE","features":[389]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_CUSTOM","features":[389]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_DSA","features":[389]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_ECDSA","features":[389]},{"name":"CRYPT_XML_KEY_VALUE_TYPE_RSA","features":[389]},{"name":"CRYPT_XML_OBJECT","features":[389]},{"name":"CRYPT_XML_OBJECTS_MAX","features":[389]},{"name":"CRYPT_XML_PROPERTY","features":[389]},{"name":"CRYPT_XML_PROPERTY_DOC_DECLARATION","features":[389]},{"name":"CRYPT_XML_PROPERTY_ID","features":[389]},{"name":"CRYPT_XML_PROPERTY_MAX_HEAP_SIZE","features":[389]},{"name":"CRYPT_XML_PROPERTY_MAX_SIGNATURES","features":[389]},{"name":"CRYPT_XML_PROPERTY_SIGNATURE_LOCATION","features":[389]},{"name":"CRYPT_XML_PROPERTY_XML_OUTPUT_CHARSET","features":[389]},{"name":"CRYPT_XML_REFERENCE","features":[389]},{"name":"CRYPT_XML_REFERENCES","features":[389]},{"name":"CRYPT_XML_REFERENCES_MAX","features":[389]},{"name":"CRYPT_XML_SIGNATURE","features":[389]},{"name":"CRYPT_XML_SIGNATURES_MAX","features":[389]},{"name":"CRYPT_XML_SIGNATURE_VALUE_MAX","features":[389]},{"name":"CRYPT_XML_SIGNED_INFO","features":[389]},{"name":"CRYPT_XML_SIGN_ADD_KEYVALUE","features":[389]},{"name":"CRYPT_XML_STATUS","features":[389]},{"name":"CRYPT_XML_STATUS_DIGESTING","features":[389]},{"name":"CRYPT_XML_STATUS_DIGEST_VALID","features":[389]},{"name":"CRYPT_XML_STATUS_ERROR_DIGEST_INVALID","features":[389]},{"name":"CRYPT_XML_STATUS_ERROR_KEYINFO_NOT_PARSED","features":[389]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_RESOLVED","features":[389]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_ALGORITHM","features":[389]},{"name":"CRYPT_XML_STATUS_ERROR_NOT_SUPPORTED_TRANSFORM","features":[389]},{"name":"CRYPT_XML_STATUS_ERROR_SIGNATURE_INVALID","features":[389]},{"name":"CRYPT_XML_STATUS_ERROR_STATUS","features":[389]},{"name":"CRYPT_XML_STATUS_INFO_STATUS","features":[389]},{"name":"CRYPT_XML_STATUS_INTERNAL_REFERENCE","features":[389]},{"name":"CRYPT_XML_STATUS_KEY_AVAILABLE","features":[389]},{"name":"CRYPT_XML_STATUS_NO_ERROR","features":[389]},{"name":"CRYPT_XML_STATUS_OPENED_TO_ENCODE","features":[389]},{"name":"CRYPT_XML_STATUS_SIGNATURE_VALID","features":[389]},{"name":"CRYPT_XML_TRANSFORM_CHAIN_CONFIG","features":[389]},{"name":"CRYPT_XML_TRANSFORM_FLAGS","features":[389]},{"name":"CRYPT_XML_TRANSFORM_INFO","features":[389]},{"name":"CRYPT_XML_TRANSFORM_MAX","features":[389]},{"name":"CRYPT_XML_TRANSFORM_ON_NODESET","features":[389]},{"name":"CRYPT_XML_TRANSFORM_ON_STREAM","features":[389]},{"name":"CRYPT_XML_TRANSFORM_URI_QUERY_STRING","features":[389]},{"name":"CRYPT_XML_X509DATA","features":[389]},{"name":"CRYPT_XML_X509DATA_ITEM","features":[389]},{"name":"CRYPT_XML_X509DATA_TYPE","features":[389]},{"name":"CRYPT_XML_X509DATA_TYPE_CERTIFICATE","features":[389]},{"name":"CRYPT_XML_X509DATA_TYPE_CRL","features":[389]},{"name":"CRYPT_XML_X509DATA_TYPE_CUSTOM","features":[389]},{"name":"CRYPT_XML_X509DATA_TYPE_ISSUER_SERIAL","features":[389]},{"name":"CRYPT_XML_X509DATA_TYPE_SKI","features":[389]},{"name":"CRYPT_XML_X509DATA_TYPE_SUBJECT_NAME","features":[389]},{"name":"CRYPT_Y_ONLY","features":[389]},{"name":"CSF_AUTHENTICATE","features":[389]},{"name":"CSF_CHANGE_AUTHENTICATOR","features":[389]},{"name":"CSF_IMPORT_KEYPAIR","features":[389]},{"name":"CTL_ANY_SUBJECT_INFO","features":[389]},{"name":"CTL_ANY_SUBJECT_TYPE","features":[389]},{"name":"CTL_CERT_SUBJECT_TYPE","features":[389]},{"name":"CTL_CONTEXT","features":[305,389]},{"name":"CTL_ENTRY","features":[389]},{"name":"CTL_ENTRY_FROM_PROP_CHAIN_FLAG","features":[389]},{"name":"CTL_FIND_ANY","features":[389]},{"name":"CTL_FIND_EXISTING","features":[389]},{"name":"CTL_FIND_MD5_HASH","features":[389]},{"name":"CTL_FIND_NO_LIST_ID_CBDATA","features":[389]},{"name":"CTL_FIND_SAME_USAGE_FLAG","features":[389]},{"name":"CTL_FIND_SHA1_HASH","features":[389]},{"name":"CTL_FIND_SUBJECT","features":[389]},{"name":"CTL_FIND_SUBJECT_PARA","features":[305,389]},{"name":"CTL_FIND_USAGE","features":[389]},{"name":"CTL_FIND_USAGE_PARA","features":[305,389]},{"name":"CTL_INFO","features":[305,389]},{"name":"CTL_USAGE","features":[389]},{"name":"CTL_USAGE_MATCH","features":[389]},{"name":"CTL_V1","features":[389]},{"name":"CTL_VERIFY_USAGE_PARA","features":[389]},{"name":"CTL_VERIFY_USAGE_STATUS","features":[305,389]},{"name":"CUR_BLOB_VERSION","features":[389]},{"name":"CUR_OFFLOAD_VERSION","features":[389]},{"name":"CertAddCRLContextToStore","features":[305,389]},{"name":"CertAddCRLLinkToStore","features":[305,389]},{"name":"CertAddCTLContextToStore","features":[305,389]},{"name":"CertAddCTLLinkToStore","features":[305,389]},{"name":"CertAddCertificateContextToStore","features":[305,389]},{"name":"CertAddCertificateLinkToStore","features":[305,389]},{"name":"CertAddEncodedCRLToStore","features":[305,389]},{"name":"CertAddEncodedCTLToStore","features":[305,389]},{"name":"CertAddEncodedCertificateToStore","features":[305,389]},{"name":"CertAddEncodedCertificateToSystemStoreA","features":[305,389]},{"name":"CertAddEncodedCertificateToSystemStoreW","features":[305,389]},{"name":"CertAddEnhancedKeyUsageIdentifier","features":[305,389]},{"name":"CertAddRefServerOcspResponse","features":[389]},{"name":"CertAddRefServerOcspResponseContext","features":[389]},{"name":"CertAddSerializedElementToStore","features":[305,389]},{"name":"CertAddStoreToCollection","features":[305,389]},{"name":"CertAlgIdToOID","features":[389]},{"name":"CertCloseServerOcspResponse","features":[389]},{"name":"CertCloseStore","features":[305,389]},{"name":"CertCompareCertificate","features":[305,389]},{"name":"CertCompareCertificateName","features":[305,389]},{"name":"CertCompareIntegerBlob","features":[305,389]},{"name":"CertComparePublicKeyInfo","features":[305,389]},{"name":"CertControlStore","features":[305,389]},{"name":"CertCreateCRLContext","features":[305,389]},{"name":"CertCreateCTLContext","features":[305,389]},{"name":"CertCreateCTLEntryFromCertificateContextProperties","features":[305,389]},{"name":"CertCreateCertificateChainEngine","features":[305,389]},{"name":"CertCreateCertificateContext","features":[305,389]},{"name":"CertCreateContext","features":[305,389]},{"name":"CertCreateSelfSignCertificate","features":[305,389]},{"name":"CertDeleteCRLFromStore","features":[305,389]},{"name":"CertDeleteCTLFromStore","features":[305,389]},{"name":"CertDeleteCertificateFromStore","features":[305,389]},{"name":"CertDuplicateCRLContext","features":[305,389]},{"name":"CertDuplicateCTLContext","features":[305,389]},{"name":"CertDuplicateCertificateChain","features":[305,389]},{"name":"CertDuplicateCertificateContext","features":[305,389]},{"name":"CertDuplicateStore","features":[389]},{"name":"CertEnumCRLContextProperties","features":[305,389]},{"name":"CertEnumCRLsInStore","features":[305,389]},{"name":"CertEnumCTLContextProperties","features":[305,389]},{"name":"CertEnumCTLsInStore","features":[305,389]},{"name":"CertEnumCertificateContextProperties","features":[305,389]},{"name":"CertEnumCertificatesInStore","features":[305,389]},{"name":"CertEnumPhysicalStore","features":[305,389]},{"name":"CertEnumSubjectInSortedCTL","features":[305,389]},{"name":"CertEnumSystemStore","features":[305,389]},{"name":"CertEnumSystemStoreLocation","features":[305,389]},{"name":"CertFindAttribute","features":[389]},{"name":"CertFindCRLInStore","features":[305,389]},{"name":"CertFindCTLInStore","features":[305,389]},{"name":"CertFindCertificateInCRL","features":[305,389]},{"name":"CertFindCertificateInStore","features":[305,389]},{"name":"CertFindChainInStore","features":[305,389]},{"name":"CertFindExtension","features":[305,389]},{"name":"CertFindRDNAttr","features":[389]},{"name":"CertFindSubjectInCTL","features":[305,389]},{"name":"CertFindSubjectInSortedCTL","features":[305,389]},{"name":"CertFreeCRLContext","features":[305,389]},{"name":"CertFreeCTLContext","features":[305,389]},{"name":"CertFreeCertificateChain","features":[305,389]},{"name":"CertFreeCertificateChainEngine","features":[389]},{"name":"CertFreeCertificateChainList","features":[305,389]},{"name":"CertFreeCertificateContext","features":[305,389]},{"name":"CertFreeServerOcspResponseContext","features":[389]},{"name":"CertGetCRLContextProperty","features":[305,389]},{"name":"CertGetCRLFromStore","features":[305,389]},{"name":"CertGetCTLContextProperty","features":[305,389]},{"name":"CertGetCertificateChain","features":[305,389]},{"name":"CertGetCertificateContextProperty","features":[305,389]},{"name":"CertGetEnhancedKeyUsage","features":[305,389]},{"name":"CertGetIntendedKeyUsage","features":[305,389]},{"name":"CertGetIssuerCertificateFromStore","features":[305,389]},{"name":"CertGetNameStringA","features":[305,389]},{"name":"CertGetNameStringW","features":[305,389]},{"name":"CertGetPublicKeyLength","features":[389]},{"name":"CertGetServerOcspResponseContext","features":[389]},{"name":"CertGetStoreProperty","features":[305,389]},{"name":"CertGetSubjectCertificateFromStore","features":[305,389]},{"name":"CertGetValidUsages","features":[305,389]},{"name":"CertIsRDNAttrsInCertificateName","features":[305,389]},{"name":"CertIsStrongHashToSign","features":[305,389]},{"name":"CertIsValidCRLForCertificate","features":[305,389]},{"name":"CertIsWeakHash","features":[305,389]},{"name":"CertKeyType","features":[389]},{"name":"CertNameToStrA","features":[389]},{"name":"CertNameToStrW","features":[389]},{"name":"CertOIDToAlgId","features":[389]},{"name":"CertOpenServerOcspResponse","features":[305,389]},{"name":"CertOpenStore","features":[389]},{"name":"CertOpenSystemStoreA","features":[389]},{"name":"CertOpenSystemStoreW","features":[389]},{"name":"CertRDNValueToStrA","features":[389]},{"name":"CertRDNValueToStrW","features":[389]},{"name":"CertRegisterPhysicalStore","features":[305,389]},{"name":"CertRegisterSystemStore","features":[305,389]},{"name":"CertRemoveEnhancedKeyUsageIdentifier","features":[305,389]},{"name":"CertRemoveStoreFromCollection","features":[389]},{"name":"CertResyncCertificateChainEngine","features":[305,389]},{"name":"CertRetrieveLogoOrBiometricInfo","features":[305,389]},{"name":"CertSaveStore","features":[305,389]},{"name":"CertSelectCertificateChains","features":[305,389]},{"name":"CertSerializeCRLStoreElement","features":[305,389]},{"name":"CertSerializeCTLStoreElement","features":[305,389]},{"name":"CertSerializeCertificateStoreElement","features":[305,389]},{"name":"CertSetCRLContextProperty","features":[305,389]},{"name":"CertSetCTLContextProperty","features":[305,389]},{"name":"CertSetCertificateContextPropertiesFromCTLEntry","features":[305,389]},{"name":"CertSetCertificateContextProperty","features":[305,389]},{"name":"CertSetEnhancedKeyUsage","features":[305,389]},{"name":"CertSetStoreProperty","features":[305,389]},{"name":"CertStrToNameA","features":[305,389]},{"name":"CertStrToNameW","features":[305,389]},{"name":"CertUnregisterPhysicalStore","features":[305,389]},{"name":"CertUnregisterSystemStore","features":[305,389]},{"name":"CertVerifyCRLRevocation","features":[305,389]},{"name":"CertVerifyCRLTimeValidity","features":[305,389]},{"name":"CertVerifyCTLUsage","features":[305,389]},{"name":"CertVerifyCertificateChainPolicy","features":[305,389]},{"name":"CertVerifyRevocation","features":[305,389]},{"name":"CertVerifySubjectCertificateContext","features":[305,389]},{"name":"CertVerifyTimeValidity","features":[305,389]},{"name":"CertVerifyValidityNesting","features":[305,389]},{"name":"ChallengeResponsePinType","features":[389]},{"name":"CloseCryptoHandle","features":[389]},{"name":"CryptAcquireCertificatePrivateKey","features":[305,389]},{"name":"CryptAcquireContextA","features":[305,389]},{"name":"CryptAcquireContextW","features":[305,389]},{"name":"CryptBinaryToStringA","features":[305,389]},{"name":"CryptBinaryToStringW","features":[305,389]},{"name":"CryptCloseAsyncHandle","features":[305,389]},{"name":"CryptContextAddRef","features":[305,389]},{"name":"CryptCreateAsyncHandle","features":[305,389]},{"name":"CryptCreateHash","features":[305,389]},{"name":"CryptCreateKeyIdentifierFromCSP","features":[305,389]},{"name":"CryptDecodeMessage","features":[305,389]},{"name":"CryptDecodeObject","features":[305,389]},{"name":"CryptDecodeObjectEx","features":[305,389]},{"name":"CryptDecrypt","features":[305,389]},{"name":"CryptDecryptAndVerifyMessageSignature","features":[305,389]},{"name":"CryptDecryptMessage","features":[305,389]},{"name":"CryptDeriveKey","features":[305,389]},{"name":"CryptDestroyHash","features":[305,389]},{"name":"CryptDestroyKey","features":[305,389]},{"name":"CryptDuplicateHash","features":[305,389]},{"name":"CryptDuplicateKey","features":[305,389]},{"name":"CryptEncodeObject","features":[305,389]},{"name":"CryptEncodeObjectEx","features":[305,389]},{"name":"CryptEncrypt","features":[305,389]},{"name":"CryptEncryptMessage","features":[305,389]},{"name":"CryptEnumKeyIdentifierProperties","features":[305,389]},{"name":"CryptEnumOIDFunction","features":[305,389]},{"name":"CryptEnumOIDInfo","features":[305,389]},{"name":"CryptEnumProviderTypesA","features":[305,389]},{"name":"CryptEnumProviderTypesW","features":[305,389]},{"name":"CryptEnumProvidersA","features":[305,389]},{"name":"CryptEnumProvidersW","features":[305,389]},{"name":"CryptExportKey","features":[305,389]},{"name":"CryptExportPKCS8","features":[305,389]},{"name":"CryptExportPublicKeyInfo","features":[305,389]},{"name":"CryptExportPublicKeyInfoEx","features":[305,389]},{"name":"CryptExportPublicKeyInfoFromBCryptKeyHandle","features":[305,389]},{"name":"CryptFindCertificateKeyProvInfo","features":[305,389]},{"name":"CryptFindLocalizedName","features":[389]},{"name":"CryptFindOIDInfo","features":[389]},{"name":"CryptFormatObject","features":[305,389]},{"name":"CryptFreeOIDFunctionAddress","features":[305,389]},{"name":"CryptGenKey","features":[305,389]},{"name":"CryptGenRandom","features":[305,389]},{"name":"CryptGetAsyncParam","features":[305,389]},{"name":"CryptGetDefaultOIDDllList","features":[305,389]},{"name":"CryptGetDefaultOIDFunctionAddress","features":[305,389]},{"name":"CryptGetDefaultProviderA","features":[305,389]},{"name":"CryptGetDefaultProviderW","features":[305,389]},{"name":"CryptGetHashParam","features":[305,389]},{"name":"CryptGetKeyIdentifierProperty","features":[305,389]},{"name":"CryptGetKeyParam","features":[305,389]},{"name":"CryptGetMessageCertificates","features":[389]},{"name":"CryptGetMessageSignerCount","features":[389]},{"name":"CryptGetOIDFunctionAddress","features":[305,389]},{"name":"CryptGetOIDFunctionValue","features":[305,389]},{"name":"CryptGetObjectUrl","features":[305,389]},{"name":"CryptGetProvParam","features":[305,389]},{"name":"CryptGetUserKey","features":[305,389]},{"name":"CryptHashCertificate","features":[305,389]},{"name":"CryptHashCertificate2","features":[305,389]},{"name":"CryptHashData","features":[305,389]},{"name":"CryptHashMessage","features":[305,389]},{"name":"CryptHashPublicKeyInfo","features":[305,389]},{"name":"CryptHashSessionKey","features":[305,389]},{"name":"CryptHashToBeSigned","features":[305,389]},{"name":"CryptImportKey","features":[305,389]},{"name":"CryptImportPKCS8","features":[305,389]},{"name":"CryptImportPublicKeyInfo","features":[305,389]},{"name":"CryptImportPublicKeyInfoEx","features":[305,389]},{"name":"CryptImportPublicKeyInfoEx2","features":[305,389]},{"name":"CryptInitOIDFunctionSet","features":[389]},{"name":"CryptInstallCancelRetrieval","features":[305,389]},{"name":"CryptInstallDefaultContext","features":[305,389]},{"name":"CryptInstallOIDFunctionAddress","features":[305,389]},{"name":"CryptMemAlloc","features":[389]},{"name":"CryptMemFree","features":[389]},{"name":"CryptMemRealloc","features":[389]},{"name":"CryptMsgCalculateEncodedLength","features":[389]},{"name":"CryptMsgClose","features":[305,389]},{"name":"CryptMsgControl","features":[305,389]},{"name":"CryptMsgCountersign","features":[305,389]},{"name":"CryptMsgCountersignEncoded","features":[305,389]},{"name":"CryptMsgDuplicate","features":[389]},{"name":"CryptMsgEncodeAndSignCTL","features":[305,389]},{"name":"CryptMsgGetAndVerifySigner","features":[305,389]},{"name":"CryptMsgGetParam","features":[305,389]},{"name":"CryptMsgOpenToDecode","features":[305,389]},{"name":"CryptMsgOpenToEncode","features":[305,389]},{"name":"CryptMsgSignCTL","features":[305,389]},{"name":"CryptMsgUpdate","features":[305,389]},{"name":"CryptMsgVerifyCountersignatureEncoded","features":[305,389]},{"name":"CryptMsgVerifyCountersignatureEncodedEx","features":[305,389]},{"name":"CryptProtectData","features":[305,389]},{"name":"CryptProtectMemory","features":[305,389]},{"name":"CryptQueryObject","features":[305,389]},{"name":"CryptRegisterDefaultOIDFunction","features":[305,389]},{"name":"CryptRegisterOIDFunction","features":[305,389]},{"name":"CryptRegisterOIDInfo","features":[305,389]},{"name":"CryptReleaseContext","features":[305,389]},{"name":"CryptRetrieveObjectByUrlA","features":[305,389]},{"name":"CryptRetrieveObjectByUrlW","features":[305,389]},{"name":"CryptRetrieveTimeStamp","features":[305,389]},{"name":"CryptSetAsyncParam","features":[305,389]},{"name":"CryptSetHashParam","features":[305,389]},{"name":"CryptSetKeyIdentifierProperty","features":[305,389]},{"name":"CryptSetKeyParam","features":[305,389]},{"name":"CryptSetOIDFunctionValue","features":[305,389,366]},{"name":"CryptSetProvParam","features":[305,389]},{"name":"CryptSetProviderA","features":[305,389]},{"name":"CryptSetProviderExA","features":[305,389]},{"name":"CryptSetProviderExW","features":[305,389]},{"name":"CryptSetProviderW","features":[305,389]},{"name":"CryptSignAndEncodeCertificate","features":[305,389]},{"name":"CryptSignAndEncryptMessage","features":[305,389]},{"name":"CryptSignCertificate","features":[305,389]},{"name":"CryptSignHashA","features":[305,389]},{"name":"CryptSignHashW","features":[305,389]},{"name":"CryptSignMessage","features":[305,389]},{"name":"CryptSignMessageWithKey","features":[305,389]},{"name":"CryptStringToBinaryA","features":[305,389]},{"name":"CryptStringToBinaryW","features":[305,389]},{"name":"CryptUninstallCancelRetrieval","features":[305,389]},{"name":"CryptUninstallDefaultContext","features":[305,389]},{"name":"CryptUnprotectData","features":[305,389]},{"name":"CryptUnprotectMemory","features":[305,389]},{"name":"CryptUnregisterDefaultOIDFunction","features":[305,389]},{"name":"CryptUnregisterOIDFunction","features":[305,389]},{"name":"CryptUnregisterOIDInfo","features":[305,389]},{"name":"CryptUpdateProtectedState","features":[305,389]},{"name":"CryptVerifyCertificateSignature","features":[305,389]},{"name":"CryptVerifyCertificateSignatureEx","features":[305,389]},{"name":"CryptVerifyDetachedMessageHash","features":[305,389]},{"name":"CryptVerifyDetachedMessageSignature","features":[305,389]},{"name":"CryptVerifyMessageHash","features":[305,389]},{"name":"CryptVerifyMessageSignature","features":[305,389]},{"name":"CryptVerifyMessageSignatureWithKey","features":[305,389]},{"name":"CryptVerifySignatureA","features":[305,389]},{"name":"CryptVerifySignatureW","features":[305,389]},{"name":"CryptVerifyTimeStampSignature","features":[305,389]},{"name":"CryptXmlAddObject","features":[389]},{"name":"CryptXmlClose","features":[389]},{"name":"CryptXmlCreateReference","features":[389]},{"name":"CryptXmlDigestReference","features":[389]},{"name":"CryptXmlDllCloseDigest","features":[389]},{"name":"CryptXmlDllCreateDigest","features":[389]},{"name":"CryptXmlDllCreateKey","features":[389]},{"name":"CryptXmlDllDigestData","features":[389]},{"name":"CryptXmlDllEncodeAlgorithm","features":[389]},{"name":"CryptXmlDllEncodeKeyValue","features":[389]},{"name":"CryptXmlDllFinalizeDigest","features":[389]},{"name":"CryptXmlDllGetAlgorithmInfo","features":[389]},{"name":"CryptXmlDllGetInterface","features":[389]},{"name":"CryptXmlDllSignData","features":[389]},{"name":"CryptXmlDllVerifySignature","features":[389]},{"name":"CryptXmlEncode","features":[389]},{"name":"CryptXmlEnumAlgorithmInfo","features":[305,389]},{"name":"CryptXmlFindAlgorithmInfo","features":[389]},{"name":"CryptXmlGetAlgorithmInfo","features":[389]},{"name":"CryptXmlGetDocContext","features":[389]},{"name":"CryptXmlGetReference","features":[389]},{"name":"CryptXmlGetSignature","features":[389]},{"name":"CryptXmlGetStatus","features":[389]},{"name":"CryptXmlGetTransforms","features":[389]},{"name":"CryptXmlImportPublicKey","features":[389]},{"name":"CryptXmlOpenToDecode","features":[389]},{"name":"CryptXmlOpenToEncode","features":[389]},{"name":"CryptXmlSetHMACSecret","features":[389]},{"name":"CryptXmlSign","features":[389]},{"name":"CryptXmlVerifySignature","features":[389]},{"name":"DSAFIPSVERSION_ENUM","features":[389]},{"name":"DSA_FIPS186_2","features":[389]},{"name":"DSA_FIPS186_3","features":[389]},{"name":"DSA_HASH_ALGORITHM_SHA1","features":[389]},{"name":"DSA_HASH_ALGORITHM_SHA256","features":[389]},{"name":"DSA_HASH_ALGORITHM_SHA512","features":[389]},{"name":"DSSSEED","features":[389]},{"name":"DTLS1_0_PROTOCOL_VERSION","features":[389]},{"name":"DTLS1_2_PROTOCOL_VERSION","features":[389]},{"name":"Decrypt","features":[305,389]},{"name":"DigitalSignaturePin","features":[389]},{"name":"Direction","features":[389]},{"name":"DirectionDecrypt","features":[389]},{"name":"DirectionEncrypt","features":[389]},{"name":"ECC_CMS_SHARED_INFO","features":[389]},{"name":"ECC_CURVE_ALG_ID_ENUM","features":[389]},{"name":"ECC_CURVE_TYPE_ENUM","features":[389]},{"name":"ENDPOINTADDRESS","features":[389]},{"name":"ENDPOINTADDRESS2","features":[389]},{"name":"ENUM_CEPSETUPPROP_AUTHENTICATION","features":[389]},{"name":"ENUM_CEPSETUPPROP_CAINFORMATION","features":[389]},{"name":"ENUM_CEPSETUPPROP_CHALLENGEURL","features":[389]},{"name":"ENUM_CEPSETUPPROP_EXCHANGEKEYINFORMATION","features":[389]},{"name":"ENUM_CEPSETUPPROP_KEYBASED_RENEWAL","features":[389]},{"name":"ENUM_CEPSETUPPROP_MSCEPURL","features":[389]},{"name":"ENUM_CEPSETUPPROP_RANAME_CITY","features":[389]},{"name":"ENUM_CEPSETUPPROP_RANAME_CN","features":[389]},{"name":"ENUM_CEPSETUPPROP_RANAME_COMPANY","features":[389]},{"name":"ENUM_CEPSETUPPROP_RANAME_COUNTRY","features":[389]},{"name":"ENUM_CEPSETUPPROP_RANAME_DEPT","features":[389]},{"name":"ENUM_CEPSETUPPROP_RANAME_EMAIL","features":[389]},{"name":"ENUM_CEPSETUPPROP_RANAME_STATE","features":[389]},{"name":"ENUM_CEPSETUPPROP_SIGNINGKEYINFORMATION","features":[389]},{"name":"ENUM_CEPSETUPPROP_SSLCERTHASH","features":[389]},{"name":"ENUM_CEPSETUPPROP_URL","features":[389]},{"name":"ENUM_CEPSETUPPROP_USECHALLENGE","features":[389]},{"name":"ENUM_CEPSETUPPROP_USELOCALSYSTEM","features":[389]},{"name":"ENUM_CESSETUPPROP_ALLOW_KEYBASED_RENEWAL","features":[389]},{"name":"ENUM_CESSETUPPROP_AUTHENTICATION","features":[389]},{"name":"ENUM_CESSETUPPROP_CACONFIG","features":[389]},{"name":"ENUM_CESSETUPPROP_RENEWALONLY","features":[389]},{"name":"ENUM_CESSETUPPROP_SSLCERTHASH","features":[389]},{"name":"ENUM_CESSETUPPROP_URL","features":[389]},{"name":"ENUM_CESSETUPPROP_USE_IISAPPPOOLIDENTITY","features":[389]},{"name":"ENUM_SETUPPROP_CADSSUFFIX","features":[389]},{"name":"ENUM_SETUPPROP_CAKEYINFORMATION","features":[389]},{"name":"ENUM_SETUPPROP_CANAME","features":[389]},{"name":"ENUM_SETUPPROP_CATYPE","features":[389]},{"name":"ENUM_SETUPPROP_DATABASEDIRECTORY","features":[389]},{"name":"ENUM_SETUPPROP_EXPIRATIONDATE","features":[389]},{"name":"ENUM_SETUPPROP_INTERACTIVE","features":[389]},{"name":"ENUM_SETUPPROP_INVALID","features":[389]},{"name":"ENUM_SETUPPROP_LOGDIRECTORY","features":[389]},{"name":"ENUM_SETUPPROP_PARENTCAMACHINE","features":[389]},{"name":"ENUM_SETUPPROP_PARENTCANAME","features":[389]},{"name":"ENUM_SETUPPROP_PRESERVEDATABASE","features":[389]},{"name":"ENUM_SETUPPROP_REQUESTFILE","features":[389]},{"name":"ENUM_SETUPPROP_SHAREDFOLDER","features":[389]},{"name":"ENUM_SETUPPROP_VALIDITYPERIOD","features":[389]},{"name":"ENUM_SETUPPROP_VALIDITYPERIODUNIT","features":[389]},{"name":"ENUM_SETUPPROP_WEBCAMACHINE","features":[389]},{"name":"ENUM_SETUPPROP_WEBCANAME","features":[389]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_PARA","features":[389]},{"name":"EV_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[389]},{"name":"EXPORT_PRIVATE_KEYS","features":[389]},{"name":"EXPO_OFFLOAD_FUNC_NAME","features":[389]},{"name":"EXPO_OFFLOAD_REG_VALUE","features":[389]},{"name":"E_ICARD_ARGUMENT","features":[389]},{"name":"E_ICARD_COMMUNICATION","features":[389]},{"name":"E_ICARD_DATA_ACCESS","features":[389]},{"name":"E_ICARD_EXPORT","features":[389]},{"name":"E_ICARD_FAIL","features":[389]},{"name":"E_ICARD_FAILED_REQUIRED_CLAIMS","features":[389]},{"name":"E_ICARD_IDENTITY","features":[389]},{"name":"E_ICARD_IMPORT","features":[389]},{"name":"E_ICARD_INFORMATIONCARD","features":[389]},{"name":"E_ICARD_INVALID_PROOF_KEY","features":[389]},{"name":"E_ICARD_LOGOVALIDATION","features":[389]},{"name":"E_ICARD_MISSING_APPLIESTO","features":[389]},{"name":"E_ICARD_PASSWORDVALIDATION","features":[389]},{"name":"E_ICARD_POLICY","features":[389]},{"name":"E_ICARD_PROCESSDIED","features":[389]},{"name":"E_ICARD_REFRESH_REQUIRED","features":[389]},{"name":"E_ICARD_REQUEST","features":[389]},{"name":"E_ICARD_SERVICE","features":[389]},{"name":"E_ICARD_SERVICEBUSY","features":[389]},{"name":"E_ICARD_SHUTTINGDOWN","features":[389]},{"name":"E_ICARD_STOREKEY","features":[389]},{"name":"E_ICARD_STORE_IMPORT","features":[389]},{"name":"E_ICARD_TOKENCREATION","features":[389]},{"name":"E_ICARD_TRUSTEXCHANGE","features":[389]},{"name":"E_ICARD_UI_INITIALIZATION","features":[389]},{"name":"E_ICARD_UNKNOWN_REFERENCE","features":[389]},{"name":"E_ICARD_UNTRUSTED","features":[389]},{"name":"E_ICARD_USERCANCELLED","features":[389]},{"name":"EmptyPinType","features":[389]},{"name":"Encrypt","features":[305,389]},{"name":"EncryptionPin","features":[389]},{"name":"EveryoneReadAdminWriteAc","features":[389]},{"name":"EveryoneReadUserWriteAc","features":[389]},{"name":"ExternalPinType","features":[389]},{"name":"FindCertsByIssuer","features":[389]},{"name":"FreeToken","features":[305,389]},{"name":"GENERIC_XML_TOKEN","features":[305,389]},{"name":"GenerateDerivedKey","features":[389]},{"name":"GetAsymmetricEncryptionInterfaceFn","features":[305,389]},{"name":"GetBrowserToken","features":[389]},{"name":"GetCipherInterfaceFn","features":[305,389]},{"name":"GetCryptoTransform","features":[389]},{"name":"GetHashInterfaceFn","features":[305,389]},{"name":"GetKeyDerivationInterfaceFn","features":[305,389]},{"name":"GetKeyStorageInterface","features":[305,389]},{"name":"GetKeyStorageInterfaceFn","features":[305,389]},{"name":"GetKeyedHash","features":[389]},{"name":"GetRngInterfaceFn","features":[305,389]},{"name":"GetSChannelInterface","features":[305,389]},{"name":"GetSChannelInterfaceFn","features":[305,389]},{"name":"GetSecretAgreementInterfaceFn","features":[305,389]},{"name":"GetSignatureInterfaceFn","features":[305,389]},{"name":"GetToken","features":[305,389]},{"name":"HASHALGORITHM_ENUM","features":[389]},{"name":"HCERTCHAINENGINE","features":[389]},{"name":"HCERTSTORE","features":[389]},{"name":"HCERTSTOREPROV","features":[389]},{"name":"HCRYPTASYNC","features":[389]},{"name":"HCRYPTPROV_LEGACY","features":[389]},{"name":"HCRYPTPROV_OR_NCRYPT_KEY_HANDLE","features":[389]},{"name":"HMAC_INFO","features":[389]},{"name":"HP_ALGID","features":[389]},{"name":"HP_HASHSIZE","features":[389]},{"name":"HP_HASHVAL","features":[389]},{"name":"HP_HMAC_INFO","features":[389]},{"name":"HP_TLS1PRF_LABEL","features":[389]},{"name":"HP_TLS1PRF_SEED","features":[389]},{"name":"HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE","features":[389]},{"name":"HTTPSPolicyCallbackData","features":[389]},{"name":"HandleType","features":[389]},{"name":"HashCore","features":[389]},{"name":"HashFinal","features":[389]},{"name":"ICertSrvSetup","features":[389,356]},{"name":"ICertSrvSetupKeyInformation","features":[389,356]},{"name":"ICertSrvSetupKeyInformationCollection","features":[389,356]},{"name":"ICertificateEnrollmentPolicyServerSetup","features":[389,356]},{"name":"ICertificateEnrollmentServerSetup","features":[389,356]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_1","features":[389]},{"name":"IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_2","features":[389]},{"name":"IFX_RSA_KEYGEN_VUL_NOT_AFFECTED","features":[389]},{"name":"IMSCEPSetup","features":[389,356]},{"name":"INFORMATIONCARD_ASYMMETRIC_CRYPTO_PARAMETERS","features":[389]},{"name":"INFORMATIONCARD_CRYPTO_HANDLE","features":[389]},{"name":"INFORMATIONCARD_HASH_CRYPTO_PARAMETERS","features":[305,389]},{"name":"INFORMATIONCARD_SYMMETRIC_CRYPTO_PARAMETERS","features":[389]},{"name":"INFORMATIONCARD_TRANSFORM_CRYPTO_PARAMETERS","features":[305,389]},{"name":"INTERNATIONAL_USAGE","features":[389]},{"name":"ImportInformationCard","features":[389]},{"name":"InFileSignatureResource","features":[389]},{"name":"InvalidAc","features":[389]},{"name":"InvalidDirAc","features":[389]},{"name":"KDF_ALGORITHMID","features":[389]},{"name":"KDF_CONTEXT","features":[389]},{"name":"KDF_GENERIC_PARAMETER","features":[389]},{"name":"KDF_HASH_ALGORITHM","features":[389]},{"name":"KDF_HKDF_INFO","features":[389]},{"name":"KDF_HKDF_SALT","features":[389]},{"name":"KDF_HMAC_KEY","features":[389]},{"name":"KDF_ITERATION_COUNT","features":[389]},{"name":"KDF_KEYBITLENGTH","features":[389]},{"name":"KDF_LABEL","features":[389]},{"name":"KDF_PARTYUINFO","features":[389]},{"name":"KDF_PARTYVINFO","features":[389]},{"name":"KDF_SALT","features":[389]},{"name":"KDF_SECRET_APPEND","features":[389]},{"name":"KDF_SECRET_HANDLE","features":[389]},{"name":"KDF_SECRET_PREPEND","features":[389]},{"name":"KDF_SUPPPRIVINFO","features":[389]},{"name":"KDF_SUPPPUBINFO","features":[389]},{"name":"KDF_TLS_PRF_LABEL","features":[389]},{"name":"KDF_TLS_PRF_PROTOCOL","features":[389]},{"name":"KDF_TLS_PRF_SEED","features":[389]},{"name":"KDF_USE_SECRET_AS_HMAC_KEY_FLAG","features":[389]},{"name":"KEYSTATEBLOB","features":[389]},{"name":"KEY_LENGTH_MASK","features":[389]},{"name":"KEY_TYPE_SUBTYPE","features":[389]},{"name":"KP_ADMIN_PIN","features":[389]},{"name":"KP_ALGID","features":[389]},{"name":"KP_BLOCKLEN","features":[389]},{"name":"KP_CERTIFICATE","features":[389]},{"name":"KP_CLEAR_KEY","features":[389]},{"name":"KP_CLIENT_RANDOM","features":[389]},{"name":"KP_CMS_DH_KEY_INFO","features":[389]},{"name":"KP_CMS_KEY_INFO","features":[389]},{"name":"KP_EFFECTIVE_KEYLEN","features":[389]},{"name":"KP_G","features":[389]},{"name":"KP_GET_USE_COUNT","features":[389]},{"name":"KP_HIGHEST_VERSION","features":[389]},{"name":"KP_INFO","features":[389]},{"name":"KP_IV","features":[389]},{"name":"KP_KEYEXCHANGE_PIN","features":[389]},{"name":"KP_KEYLEN","features":[389]},{"name":"KP_KEYVAL","features":[389]},{"name":"KP_MODE","features":[389]},{"name":"KP_MODE_BITS","features":[389]},{"name":"KP_OAEP_PARAMS","features":[389]},{"name":"KP_P","features":[389]},{"name":"KP_PADDING","features":[389]},{"name":"KP_PERMISSIONS","features":[389]},{"name":"KP_PIN_ID","features":[389]},{"name":"KP_PIN_INFO","features":[389]},{"name":"KP_PRECOMP_MD5","features":[389]},{"name":"KP_PRECOMP_SHA","features":[389]},{"name":"KP_PREHASH","features":[389]},{"name":"KP_PUB_EX_LEN","features":[389]},{"name":"KP_PUB_EX_VAL","features":[389]},{"name":"KP_PUB_PARAMS","features":[389]},{"name":"KP_Q","features":[389]},{"name":"KP_RA","features":[389]},{"name":"KP_RB","features":[389]},{"name":"KP_ROUNDS","features":[389]},{"name":"KP_RP","features":[389]},{"name":"KP_SALT","features":[389]},{"name":"KP_SALT_EX","features":[389]},{"name":"KP_SCHANNEL_ALG","features":[389]},{"name":"KP_SERVER_RANDOM","features":[389]},{"name":"KP_SIGNATURE_PIN","features":[389]},{"name":"KP_VERIFY_PARAMS","features":[389]},{"name":"KP_X","features":[389]},{"name":"KP_Y","features":[389]},{"name":"KeyTypeHardware","features":[389]},{"name":"KeyTypeOther","features":[389]},{"name":"KeyTypePassport","features":[389]},{"name":"KeyTypePassportRemote","features":[389]},{"name":"KeyTypePassportSmartCard","features":[389]},{"name":"KeyTypePhysicalSmartCard","features":[389]},{"name":"KeyTypeSelfSigned","features":[389]},{"name":"KeyTypeSoftware","features":[389]},{"name":"KeyTypeVirtualSmartCard","features":[389]},{"name":"LEGACY_DH_PRIVATE_BLOB","features":[389]},{"name":"LEGACY_DH_PUBLIC_BLOB","features":[389]},{"name":"LEGACY_DSA_PRIVATE_BLOB","features":[389]},{"name":"LEGACY_DSA_PUBLIC_BLOB","features":[389]},{"name":"LEGACY_DSA_V2_PRIVATE_BLOB","features":[389]},{"name":"LEGACY_DSA_V2_PUBLIC_BLOB","features":[389]},{"name":"LEGACY_RSAPRIVATE_BLOB","features":[389]},{"name":"LEGACY_RSAPUBLIC_BLOB","features":[389]},{"name":"MAXUIDLEN","features":[389]},{"name":"MAX_CONTAINER_NAME_LEN","features":[389]},{"name":"MAX_PINS","features":[389]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_CHECK_APPLICATION_ROOT_FLAG","features":[389]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_DISABLE_FLIGHT_ROOT_FLAG","features":[389]},{"name":"MICROSOFT_ROOT_CERT_CHAIN_POLICY_ENABLE_TEST_ROOT_FLAG","features":[389]},{"name":"MSCEPSetupProperty","features":[389]},{"name":"MSCRYPT_ECC_MAX_CURVE_NAME_LENGTH","features":[389]},{"name":"MSCRYPT_ECC_MAX_OID_LENGTH","features":[389]},{"name":"MS_DEF_DH_SCHANNEL_PROV","features":[389]},{"name":"MS_DEF_DH_SCHANNEL_PROV_A","features":[389]},{"name":"MS_DEF_DH_SCHANNEL_PROV_W","features":[389]},{"name":"MS_DEF_DSS_DH_PROV","features":[389]},{"name":"MS_DEF_DSS_DH_PROV_A","features":[389]},{"name":"MS_DEF_DSS_DH_PROV_W","features":[389]},{"name":"MS_DEF_DSS_PROV","features":[389]},{"name":"MS_DEF_DSS_PROV_A","features":[389]},{"name":"MS_DEF_DSS_PROV_W","features":[389]},{"name":"MS_DEF_PROV","features":[389]},{"name":"MS_DEF_PROV_A","features":[389]},{"name":"MS_DEF_PROV_W","features":[389]},{"name":"MS_DEF_RSA_SCHANNEL_PROV","features":[389]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_A","features":[389]},{"name":"MS_DEF_RSA_SCHANNEL_PROV_W","features":[389]},{"name":"MS_DEF_RSA_SIG_PROV","features":[389]},{"name":"MS_DEF_RSA_SIG_PROV_A","features":[389]},{"name":"MS_DEF_RSA_SIG_PROV_W","features":[389]},{"name":"MS_ENHANCED_PROV","features":[389]},{"name":"MS_ENHANCED_PROV_A","features":[389]},{"name":"MS_ENHANCED_PROV_W","features":[389]},{"name":"MS_ENH_DSS_DH_PROV","features":[389]},{"name":"MS_ENH_DSS_DH_PROV_A","features":[389]},{"name":"MS_ENH_DSS_DH_PROV_W","features":[389]},{"name":"MS_ENH_RSA_AES_PROV","features":[389]},{"name":"MS_ENH_RSA_AES_PROV_A","features":[389]},{"name":"MS_ENH_RSA_AES_PROV_W","features":[389]},{"name":"MS_ENH_RSA_AES_PROV_XP","features":[389]},{"name":"MS_ENH_RSA_AES_PROV_XP_A","features":[389]},{"name":"MS_ENH_RSA_AES_PROV_XP_W","features":[389]},{"name":"MS_KEY_PROTECTION_PROVIDER","features":[389]},{"name":"MS_KEY_STORAGE_PROVIDER","features":[389]},{"name":"MS_NGC_KEY_STORAGE_PROVIDER","features":[389]},{"name":"MS_PLATFORM_CRYPTO_PROVIDER","features":[389]},{"name":"MS_PLATFORM_KEY_STORAGE_PROVIDER","features":[389]},{"name":"MS_PRIMITIVE_PROVIDER","features":[389]},{"name":"MS_SCARD_PROV","features":[389]},{"name":"MS_SCARD_PROV_A","features":[389]},{"name":"MS_SCARD_PROV_W","features":[389]},{"name":"MS_SCHANNEL_PROVIDER","features":[389]},{"name":"MS_SMART_CARD_KEY_STORAGE_PROVIDER","features":[389]},{"name":"MS_STRONG_PROV","features":[389]},{"name":"MS_STRONG_PROV_A","features":[389]},{"name":"MS_STRONG_PROV_W","features":[389]},{"name":"ManageCardSpace","features":[389]},{"name":"NCRYPTBUFFER_ATTESTATIONSTATEMENT_BLOB","features":[389]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_CHALLENGE_REQUIRED","features":[389]},{"name":"NCRYPTBUFFER_ATTESTATION_CLAIM_TYPE","features":[389]},{"name":"NCRYPTBUFFER_CERT_BLOB","features":[389]},{"name":"NCRYPTBUFFER_CLAIM_IDBINDING_NONCE","features":[389]},{"name":"NCRYPTBUFFER_CLAIM_KEYATTESTATION_NONCE","features":[389]},{"name":"NCRYPTBUFFER_DATA","features":[389]},{"name":"NCRYPTBUFFER_ECC_CURVE_NAME","features":[389]},{"name":"NCRYPTBUFFER_ECC_PARAMETERS","features":[389]},{"name":"NCRYPTBUFFER_EMPTY","features":[389]},{"name":"NCRYPTBUFFER_KEY_PROPERTY_FLAGS","features":[389]},{"name":"NCRYPTBUFFER_PKCS_ALG_ID","features":[389]},{"name":"NCRYPTBUFFER_PKCS_ALG_OID","features":[389]},{"name":"NCRYPTBUFFER_PKCS_ALG_PARAM","features":[389]},{"name":"NCRYPTBUFFER_PKCS_ATTRS","features":[389]},{"name":"NCRYPTBUFFER_PKCS_KEY_NAME","features":[389]},{"name":"NCRYPTBUFFER_PKCS_OID","features":[389]},{"name":"NCRYPTBUFFER_PKCS_SECRET","features":[389]},{"name":"NCRYPTBUFFER_PROTECTION_DESCRIPTOR_STRING","features":[389]},{"name":"NCRYPTBUFFER_PROTECTION_FLAGS","features":[389]},{"name":"NCRYPTBUFFER_SSL_CLEAR_KEY","features":[389]},{"name":"NCRYPTBUFFER_SSL_CLIENT_RANDOM","features":[389]},{"name":"NCRYPTBUFFER_SSL_HIGHEST_VERSION","features":[389]},{"name":"NCRYPTBUFFER_SSL_KEY_ARG_DATA","features":[389]},{"name":"NCRYPTBUFFER_SSL_SERVER_RANDOM","features":[389]},{"name":"NCRYPTBUFFER_SSL_SESSION_HASH","features":[389]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_NONCE","features":[389]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_PCR_MASK","features":[389]},{"name":"NCRYPTBUFFER_TPM_PLATFORM_CLAIM_STATIC_CREATE","features":[389]},{"name":"NCRYPTBUFFER_TPM_SEAL_NO_DA_PROTECTION","features":[389]},{"name":"NCRYPTBUFFER_TPM_SEAL_PASSWORD","features":[389]},{"name":"NCRYPTBUFFER_TPM_SEAL_POLICYINFO","features":[389]},{"name":"NCRYPTBUFFER_TPM_SEAL_TICKET","features":[389]},{"name":"NCRYPTBUFFER_VERSION","features":[389]},{"name":"NCRYPTBUFFER_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[389]},{"name":"NCRYPT_3DES_112_ALGORITHM","features":[389]},{"name":"NCRYPT_3DES_ALGORITHM","features":[389]},{"name":"NCRYPT_AES_ALGORITHM","features":[389]},{"name":"NCRYPT_AES_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_ALGORITHM_GROUP_PROPERTY","features":[389]},{"name":"NCRYPT_ALGORITHM_NAME_CLASS","features":[389]},{"name":"NCRYPT_ALGORITHM_PROPERTY","features":[389]},{"name":"NCRYPT_ALLOC_PARA","features":[389]},{"name":"NCRYPT_ALLOW_ALL_USAGES","features":[389]},{"name":"NCRYPT_ALLOW_ARCHIVING_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_DECRYPT_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_EXPORT_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_SIGNING_FLAG","features":[389]},{"name":"NCRYPT_ALLOW_SILENT_KEY_ACCESS","features":[389]},{"name":"NCRYPT_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[389]},{"name":"NCRYPT_ASSOCIATED_ECDH_KEY","features":[389]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[389]},{"name":"NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[389]},{"name":"NCRYPT_ATTESTATION_FLAG","features":[389]},{"name":"NCRYPT_AUTHORITY_KEY_FLAG","features":[389]},{"name":"NCRYPT_AUTH_TAG_LENGTH","features":[389]},{"name":"NCRYPT_BLOCK_LENGTH_PROPERTY","features":[389]},{"name":"NCRYPT_CAPI_KDF_ALGORITHM","features":[389]},{"name":"NCRYPT_CERTIFICATE_PROPERTY","features":[389]},{"name":"NCRYPT_CHAINING_MODE_PROPERTY","features":[389]},{"name":"NCRYPT_CHANGEPASSWORD_PROPERTY","features":[389]},{"name":"NCRYPT_CIPHER_BLOCK_PADDING_FLAG","features":[389]},{"name":"NCRYPT_CIPHER_KEY_BLOB","features":[389]},{"name":"NCRYPT_CIPHER_KEY_BLOB_MAGIC","features":[389]},{"name":"NCRYPT_CIPHER_NO_PADDING_FLAG","features":[389]},{"name":"NCRYPT_CIPHER_OPERATION","features":[389]},{"name":"NCRYPT_CIPHER_OTHER_PADDING_FLAG","features":[389]},{"name":"NCRYPT_CIPHER_PADDING_INFO","features":[389]},{"name":"NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[389]},{"name":"NCRYPT_CLAIM_AUTHORITY_ONLY","features":[389]},{"name":"NCRYPT_CLAIM_PLATFORM","features":[389]},{"name":"NCRYPT_CLAIM_SUBJECT_ONLY","features":[389]},{"name":"NCRYPT_CLAIM_UNKNOWN","features":[389]},{"name":"NCRYPT_CLAIM_VSM_KEY_ATTESTATION_STATEMENT","features":[389]},{"name":"NCRYPT_CLAIM_WEB_AUTH_SUBJECT_ONLY","features":[389]},{"name":"NCRYPT_DESCR_DELIMITER_AND","features":[389]},{"name":"NCRYPT_DESCR_DELIMITER_OR","features":[389]},{"name":"NCRYPT_DESCR_EQUAL","features":[389]},{"name":"NCRYPT_DESX_ALGORITHM","features":[389]},{"name":"NCRYPT_DES_ALGORITHM","features":[389]},{"name":"NCRYPT_DES_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_DH_ALGORITHM","features":[389]},{"name":"NCRYPT_DH_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_DH_PARAMETERS_PROPERTY","features":[389]},{"name":"NCRYPT_DISMISS_UI_TIMEOUT_SEC_PROPERTY","features":[389]},{"name":"NCRYPT_DO_NOT_FINALIZE_FLAG","features":[389]},{"name":"NCRYPT_DSA_ALGORITHM","features":[389]},{"name":"NCRYPT_DSA_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_ECC_CURVE_NAME_LIST_PROPERTY","features":[389]},{"name":"NCRYPT_ECC_CURVE_NAME_PROPERTY","features":[389]},{"name":"NCRYPT_ECC_PARAMETERS_PROPERTY","features":[389]},{"name":"NCRYPT_ECDH_ALGORITHM","features":[389]},{"name":"NCRYPT_ECDH_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_ECDH_P256_ALGORITHM","features":[389]},{"name":"NCRYPT_ECDH_P384_ALGORITHM","features":[389]},{"name":"NCRYPT_ECDH_P521_ALGORITHM","features":[389]},{"name":"NCRYPT_ECDSA_ALGORITHM","features":[389]},{"name":"NCRYPT_ECDSA_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_ECDSA_P256_ALGORITHM","features":[389]},{"name":"NCRYPT_ECDSA_P384_ALGORITHM","features":[389]},{"name":"NCRYPT_ECDSA_P521_ALGORITHM","features":[389]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_ENVELOPE","features":[389]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER","features":[389]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_CURRENT_VERSION","features":[389]},{"name":"NCRYPT_EXPORTED_ISOLATED_KEY_HEADER_V0","features":[389]},{"name":"NCRYPT_EXPORT_LEGACY_FLAG","features":[389]},{"name":"NCRYPT_EXPORT_POLICY_PROPERTY","features":[389]},{"name":"NCRYPT_EXTENDED_ERRORS_FLAG","features":[389]},{"name":"NCRYPT_FLAGS","features":[389]},{"name":"NCRYPT_HANDLE","features":[389]},{"name":"NCRYPT_HASH_HANDLE","features":[389]},{"name":"NCRYPT_HASH_OPERATION","features":[389]},{"name":"NCRYPT_HMAC_SHA256_ALGORITHM","features":[389]},{"name":"NCRYPT_IGNORE_DEVICE_STATE_FLAG","features":[389]},{"name":"NCRYPT_IMPL_HARDWARE_FLAG","features":[389]},{"name":"NCRYPT_IMPL_HARDWARE_RNG_FLAG","features":[389]},{"name":"NCRYPT_IMPL_REMOVABLE_FLAG","features":[389]},{"name":"NCRYPT_IMPL_SOFTWARE_FLAG","features":[389]},{"name":"NCRYPT_IMPL_TYPE_PROPERTY","features":[389]},{"name":"NCRYPT_IMPL_VIRTUAL_ISOLATION_FLAG","features":[389]},{"name":"NCRYPT_INITIALIZATION_VECTOR","features":[389]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES","features":[389]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_CURRENT_VERSION","features":[389]},{"name":"NCRYPT_ISOLATED_KEY_ATTESTED_ATTRIBUTES_V0","features":[389]},{"name":"NCRYPT_ISOLATED_KEY_ENVELOPE_BLOB","features":[389]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_CREATED_IN_ISOLATION","features":[389]},{"name":"NCRYPT_ISOLATED_KEY_FLAG_IMPORT_ONLY","features":[389]},{"name":"NCRYPT_KDF_KEY_BLOB","features":[389]},{"name":"NCRYPT_KDF_KEY_BLOB_MAGIC","features":[389]},{"name":"NCRYPT_KDF_SECRET_VALUE","features":[389]},{"name":"NCRYPT_KEY_ACCESS_POLICY_BLOB","features":[389]},{"name":"NCRYPT_KEY_ACCESS_POLICY_PROPERTY","features":[389]},{"name":"NCRYPT_KEY_ACCESS_POLICY_VERSION","features":[389]},{"name":"NCRYPT_KEY_ATTEST_MAGIC","features":[389]},{"name":"NCRYPT_KEY_ATTEST_PADDING_INFO","features":[389]},{"name":"NCRYPT_KEY_BLOB_HEADER","features":[389]},{"name":"NCRYPT_KEY_DERIVATION_GROUP","features":[389]},{"name":"NCRYPT_KEY_DERIVATION_INTERFACE","features":[389]},{"name":"NCRYPT_KEY_DERIVATION_OPERATION","features":[389]},{"name":"NCRYPT_KEY_HANDLE","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_CERTIFICATE","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCAL","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_LOCKEDCREDENTIALS","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SDDL","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_SID","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_ALGORITHM_WEBCREDENTIALS","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_CERT_CERTBLOB","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_CERT_HASHID","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_INTERFACE","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_LOGON","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_MACHINE","features":[389]},{"name":"NCRYPT_KEY_PROTECTION_LOCAL_USER","features":[389]},{"name":"NCRYPT_KEY_STORAGE_ALGORITHM","features":[389]},{"name":"NCRYPT_KEY_STORAGE_FUNCTION_TABLE","features":[305,389]},{"name":"NCRYPT_KEY_STORAGE_INTERFACE","features":[389]},{"name":"NCRYPT_KEY_TYPE_PROPERTY","features":[389]},{"name":"NCRYPT_KEY_USAGE_PROPERTY","features":[389]},{"name":"NCRYPT_LAST_MODIFIED_PROPERTY","features":[389]},{"name":"NCRYPT_LENGTHS_PROPERTY","features":[389]},{"name":"NCRYPT_LENGTH_PROPERTY","features":[389]},{"name":"NCRYPT_MACHINE_KEY_FLAG","features":[389]},{"name":"NCRYPT_MAX_ALG_ID_LENGTH","features":[389]},{"name":"NCRYPT_MAX_KEY_NAME_LENGTH","features":[389]},{"name":"NCRYPT_MAX_NAME_LENGTH_PROPERTY","features":[389]},{"name":"NCRYPT_MAX_PROPERTY_DATA","features":[389]},{"name":"NCRYPT_MAX_PROPERTY_NAME","features":[389]},{"name":"NCRYPT_MD2_ALGORITHM","features":[389]},{"name":"NCRYPT_MD4_ALGORITHM","features":[389]},{"name":"NCRYPT_MD5_ALGORITHM","features":[389]},{"name":"NCRYPT_NAMED_DESCRIPTOR_FLAG","features":[389]},{"name":"NCRYPT_NAME_PROPERTY","features":[389]},{"name":"NCRYPT_NO_CACHED_PASSWORD","features":[389]},{"name":"NCRYPT_NO_KEY_VALIDATION","features":[389]},{"name":"NCRYPT_NO_PADDING_FLAG","features":[389]},{"name":"NCRYPT_OPAQUETRANSPORT_BLOB","features":[389]},{"name":"NCRYPT_OPERATION","features":[389]},{"name":"NCRYPT_OVERWRITE_KEY_FLAG","features":[389]},{"name":"NCRYPT_PAD_CIPHER_FLAG","features":[389]},{"name":"NCRYPT_PAD_OAEP_FLAG","features":[389]},{"name":"NCRYPT_PAD_PKCS1_FLAG","features":[389]},{"name":"NCRYPT_PAD_PSS_FLAG","features":[389]},{"name":"NCRYPT_PBKDF2_ALGORITHM","features":[389]},{"name":"NCRYPT_PCP_ALTERNATE_KEY_STORAGE_LOCATION_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_CHANGEPASSWORD_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_ECC_EKCERT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_ECC_EKNVCERT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_ECC_EKPUB_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_EKCERT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_EKNVCERT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_EKPUB_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_ENCRYPTION_KEY","features":[389]},{"name":"NCRYPT_PCP_EXPORT_ALLOWED_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_HMACVERIFICATION_KEY","features":[389]},{"name":"NCRYPT_PCP_HMAC_AUTH_NONCE","features":[389]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYINFO","features":[389]},{"name":"NCRYPT_PCP_HMAC_AUTH_POLICYREF","features":[389]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE","features":[389]},{"name":"NCRYPT_PCP_HMAC_AUTH_SIGNATURE_INFO","features":[389]},{"name":"NCRYPT_PCP_HMAC_AUTH_TICKET","features":[389]},{"name":"NCRYPT_PCP_IDENTITY_KEY","features":[389]},{"name":"NCRYPT_PCP_INTERMEDIATE_CA_EKCERT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_KEYATTESTATION_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_KEY_CREATIONHASH_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_KEY_CREATIONTICKET_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_KEY_USAGE_POLICY_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_MIGRATIONPASSWORD_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_NO_DA_PROTECTION_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PASSWORD_REQUIRED_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PCRTABLE_ALGORITHM_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PCRTABLE_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PLATFORMHANDLE_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRALGID_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGESTLIST_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRDIGEST_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PLATFORM_BINDING_PCRMASK_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PLATFORM_TYPE_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PROVIDERHANDLE_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PROVIDER_VERSION_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_PSS_SALT_SIZE_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_INFO","features":[389]},{"name":"NCRYPT_PCP_RAW_POLICYDIGEST_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_RSA_EKCERT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_RSA_EKNVCERT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_RSA_EKPUB_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_RSA_SCHEME_HASH_ALG_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_RSA_SCHEME_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_SESSIONID_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_SIGNATURE_KEY","features":[389]},{"name":"NCRYPT_PCP_SRKPUB_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_STORAGEPARENT_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_STORAGE_KEY","features":[389]},{"name":"NCRYPT_PCP_SYMMETRIC_KEYBITS_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM12_IDACTIVATION_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_DYNAMIC_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM12_IDBINDING_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM2BNAME_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_INFO","features":[389]},{"name":"NCRYPT_PCP_TPM_FW_VERSION_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_PROHIBITED_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM_IFX_RSA_KEYGEN_VULNERABILITY_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM_MANUFACTURER_ID_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM_VERSION_PROPERTY","features":[389]},{"name":"NCRYPT_PCP_TPM_WEB_AUTHN_ATTESTATION_STATEMENT","features":[389]},{"name":"NCRYPT_PCP_USAGEAUTH_PROPERTY","features":[389]},{"name":"NCRYPT_PERSIST_FLAG","features":[389]},{"name":"NCRYPT_PERSIST_ONLY_FLAG","features":[389]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_IMAGE_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_STATUS_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_BYTE_LENGTH","features":[389]},{"name":"NCRYPT_PIN_CACHE_APPLICATION_TICKET_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_CLEAR_FOR_CALLING_PROCESS_OPTION","features":[389]},{"name":"NCRYPT_PIN_CACHE_CLEAR_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_DISABLE_DPL_FLAG","features":[389]},{"name":"NCRYPT_PIN_CACHE_FLAGS_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_FREE_APPLICATION_TICKET_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_IS_GESTURE_REQUIRED_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_PIN_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_CACHE_REQUIRE_GESTURE_FLAG","features":[389]},{"name":"NCRYPT_PIN_PROMPT_PROPERTY","features":[389]},{"name":"NCRYPT_PIN_PROPERTY","features":[389]},{"name":"NCRYPT_PKCS7_ENVELOPE_BLOB","features":[389]},{"name":"NCRYPT_PKCS8_PRIVATE_KEY_BLOB","features":[389]},{"name":"NCRYPT_PLATFORM_ATTEST_MAGIC","features":[389]},{"name":"NCRYPT_PLATFORM_ATTEST_PADDING_INFO","features":[389]},{"name":"NCRYPT_PREFER_VIRTUAL_ISOLATION_FLAG","features":[389]},{"name":"NCRYPT_PROTECTED_KEY_BLOB","features":[389]},{"name":"NCRYPT_PROTECTED_KEY_BLOB_MAGIC","features":[389]},{"name":"NCRYPT_PROTECTION_INFO_TYPE_DESCRIPTOR_STRING","features":[389]},{"name":"NCRYPT_PROTECT_STREAM_INFO","features":[305,389]},{"name":"NCRYPT_PROTECT_STREAM_INFO_EX","features":[305,389]},{"name":"NCRYPT_PROTECT_TO_LOCAL_SYSTEM","features":[389]},{"name":"NCRYPT_PROVIDER_HANDLE_PROPERTY","features":[389]},{"name":"NCRYPT_PROV_HANDLE","features":[389]},{"name":"NCRYPT_PUBLIC_LENGTH_PROPERTY","features":[389]},{"name":"NCRYPT_RC2_ALGORITHM","features":[389]},{"name":"NCRYPT_RC2_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_READER_ICON_PROPERTY","features":[389]},{"name":"NCRYPT_READER_PROPERTY","features":[389]},{"name":"NCRYPT_REGISTER_NOTIFY_FLAG","features":[389]},{"name":"NCRYPT_REQUIRE_KDS_LRPC_BIND_FLAG","features":[389]},{"name":"NCRYPT_ROOT_CERTSTORE_PROPERTY","features":[389]},{"name":"NCRYPT_RSA_ALGORITHM","features":[389]},{"name":"NCRYPT_RSA_ALGORITHM_GROUP","features":[389]},{"name":"NCRYPT_RSA_SIGN_ALGORITHM","features":[389]},{"name":"NCRYPT_SCARD_NGC_KEY_NAME","features":[389]},{"name":"NCRYPT_SCARD_PIN_ID","features":[389]},{"name":"NCRYPT_SCARD_PIN_INFO","features":[389]},{"name":"NCRYPT_SCHANNEL_INTERFACE","features":[389]},{"name":"NCRYPT_SCHANNEL_SIGNATURE_INTERFACE","features":[389]},{"name":"NCRYPT_SEALING_FLAG","features":[389]},{"name":"NCRYPT_SECRET_AGREEMENT_INTERFACE","features":[389]},{"name":"NCRYPT_SECRET_AGREEMENT_OPERATION","features":[389]},{"name":"NCRYPT_SECRET_HANDLE","features":[389]},{"name":"NCRYPT_SECURE_PIN_PROPERTY","features":[389]},{"name":"NCRYPT_SECURITY_DESCR_PROPERTY","features":[389]},{"name":"NCRYPT_SECURITY_DESCR_SUPPORT_PROPERTY","features":[389]},{"name":"NCRYPT_SHA1_ALGORITHM","features":[389]},{"name":"NCRYPT_SHA256_ALGORITHM","features":[389]},{"name":"NCRYPT_SHA384_ALGORITHM","features":[389]},{"name":"NCRYPT_SHA512_ALGORITHM","features":[389]},{"name":"NCRYPT_SIGNATURE_INTERFACE","features":[389]},{"name":"NCRYPT_SIGNATURE_LENGTH_PROPERTY","features":[389]},{"name":"NCRYPT_SIGNATURE_OPERATION","features":[389]},{"name":"NCRYPT_SILENT_FLAG","features":[389]},{"name":"NCRYPT_SMARTCARD_GUID_PROPERTY","features":[389]},{"name":"NCRYPT_SP800108_CTR_HMAC_ALGORITHM","features":[389]},{"name":"NCRYPT_SP80056A_CONCAT_ALGORITHM","features":[389]},{"name":"NCRYPT_SSL_CIPHER_LENGTHS","features":[389]},{"name":"NCRYPT_SSL_CIPHER_LENGTHS_BLOCK_PADDING","features":[389]},{"name":"NCRYPT_SSL_CIPHER_SUITE","features":[389]},{"name":"NCRYPT_SSL_CIPHER_SUITE_EX","features":[389]},{"name":"NCRYPT_SSL_CIPHER_SUITE_EX_VERSION","features":[389]},{"name":"NCRYPT_SSL_CLIENT_FLAG","features":[389]},{"name":"NCRYPT_SSL_EAP_FAST_ID","features":[389]},{"name":"NCRYPT_SSL_EAP_ID","features":[389]},{"name":"NCRYPT_SSL_EAP_PRF_FIELD","features":[389]},{"name":"NCRYPT_SSL_EAP_TTLSV0_CHLNG_ID","features":[389]},{"name":"NCRYPT_SSL_EAP_TTLSV0_ID","features":[389]},{"name":"NCRYPT_SSL_ECC_CURVE","features":[389]},{"name":"NCRYPT_SSL_EXTERNAL_PSK_FLAG","features":[389]},{"name":"NCRYPT_SSL_FUNCTION_TABLE","features":[305,389]},{"name":"NCRYPT_SSL_MAX_NAME_SIZE","features":[389]},{"name":"NCRYPT_SSL_RESUMPTION_PSK_FLAG","features":[389]},{"name":"NCRYPT_SSL_SERVER_FLAG","features":[389]},{"name":"NCRYPT_SSL_SIGN_INCLUDE_HASHOID","features":[389]},{"name":"NCRYPT_SSL_SIGN_USE_PSS_PADDING","features":[389]},{"name":"NCRYPT_SUPPORTED_LENGTHS","features":[389]},{"name":"NCRYPT_TPM12_PROVIDER","features":[389]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB","features":[389]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_HEADER","features":[389]},{"name":"NCRYPT_TPM_LOADABLE_KEY_BLOB_MAGIC","features":[389]},{"name":"NCRYPT_TPM_PAD_PSS_IGNORE_SALT","features":[389]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT","features":[389]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[389]},{"name":"NCRYPT_TPM_PLATFORM_ATTESTATION_STATEMENT_V0","features":[389]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_HASHSIZE","features":[389]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_MAXIMUM","features":[389]},{"name":"NCRYPT_TPM_PSS_SALT_SIZE_UNKNOWN","features":[389]},{"name":"NCRYPT_TREAT_NIST_AS_GENERIC_ECC_FLAG","features":[389]},{"name":"NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[389]},{"name":"NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[389]},{"name":"NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[389]},{"name":"NCRYPT_UI_POLICY","features":[389]},{"name":"NCRYPT_UI_POLICY_BLOB","features":[389]},{"name":"NCRYPT_UI_POLICY_PROPERTY","features":[389]},{"name":"NCRYPT_UI_PROTECT_KEY_FLAG","features":[389]},{"name":"NCRYPT_UNIQUE_NAME_PROPERTY","features":[389]},{"name":"NCRYPT_UNPROTECT_NO_DECRYPT","features":[389]},{"name":"NCRYPT_UNREGISTER_NOTIFY_FLAG","features":[389]},{"name":"NCRYPT_USER_CERTSTORE_PROPERTY","features":[389]},{"name":"NCRYPT_USE_CONTEXT_PROPERTY","features":[389]},{"name":"NCRYPT_USE_COUNT_ENABLED_PROPERTY","features":[389]},{"name":"NCRYPT_USE_COUNT_PROPERTY","features":[389]},{"name":"NCRYPT_USE_PER_BOOT_KEY_FLAG","features":[389]},{"name":"NCRYPT_USE_PER_BOOT_KEY_PROPERTY","features":[389]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_FLAG","features":[389]},{"name":"NCRYPT_USE_VIRTUAL_ISOLATION_PROPERTY","features":[389]},{"name":"NCRYPT_VERSION_PROPERTY","features":[389]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS","features":[389]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_CURRENT_VERSION","features":[389]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS_V0","features":[389]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT","features":[389]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_CURRENT_VERSION","features":[389]},{"name":"NCRYPT_VSM_KEY_ATTESTATION_STATEMENT_V0","features":[389]},{"name":"NCRYPT_WINDOW_HANDLE_PROPERTY","features":[389]},{"name":"NCRYPT_WRITE_KEY_TO_LEGACY_STORE_FLAG","features":[389]},{"name":"NCryptAlgorithmName","features":[389]},{"name":"NCryptCloseProtectionDescriptor","features":[389]},{"name":"NCryptCreateClaim","features":[389]},{"name":"NCryptCreateClaimFn","features":[389]},{"name":"NCryptCreatePersistedKey","features":[389]},{"name":"NCryptCreatePersistedKeyFn","features":[389]},{"name":"NCryptCreateProtectionDescriptor","features":[389]},{"name":"NCryptDecrypt","features":[389]},{"name":"NCryptDecryptFn","features":[389]},{"name":"NCryptDeleteKey","features":[389]},{"name":"NCryptDeleteKeyFn","features":[389]},{"name":"NCryptDeriveKey","features":[389]},{"name":"NCryptDeriveKeyFn","features":[389]},{"name":"NCryptEncrypt","features":[389]},{"name":"NCryptEncryptFn","features":[389]},{"name":"NCryptEnumAlgorithms","features":[389]},{"name":"NCryptEnumAlgorithmsFn","features":[389]},{"name":"NCryptEnumKeys","features":[389]},{"name":"NCryptEnumKeysFn","features":[389]},{"name":"NCryptEnumStorageProviders","features":[389]},{"name":"NCryptEnumStorageProvidersFn","features":[389]},{"name":"NCryptExportKey","features":[389]},{"name":"NCryptExportKeyFn","features":[389]},{"name":"NCryptFinalizeKey","features":[389]},{"name":"NCryptFinalizeKeyFn","features":[389]},{"name":"NCryptFreeBuffer","features":[389]},{"name":"NCryptFreeBufferFn","features":[389]},{"name":"NCryptFreeKeyFn","features":[389]},{"name":"NCryptFreeObject","features":[389]},{"name":"NCryptFreeProviderFn","features":[389]},{"name":"NCryptFreeSecretFn","features":[389]},{"name":"NCryptGetKeyPropertyFn","features":[389]},{"name":"NCryptGetProperty","features":[389]},{"name":"NCryptGetProtectionDescriptorInfo","features":[389]},{"name":"NCryptGetProviderPropertyFn","features":[389]},{"name":"NCryptImportKey","features":[389]},{"name":"NCryptImportKeyFn","features":[389]},{"name":"NCryptIsAlgSupported","features":[389]},{"name":"NCryptIsAlgSupportedFn","features":[389]},{"name":"NCryptIsKeyHandle","features":[305,389]},{"name":"NCryptKeyDerivation","features":[389]},{"name":"NCryptKeyDerivationFn","features":[389]},{"name":"NCryptKeyName","features":[389]},{"name":"NCryptNotifyChangeKey","features":[305,389]},{"name":"NCryptNotifyChangeKeyFn","features":[305,389]},{"name":"NCryptOpenKey","features":[389]},{"name":"NCryptOpenKeyFn","features":[389]},{"name":"NCryptOpenStorageProvider","features":[389]},{"name":"NCryptOpenStorageProviderFn","features":[389]},{"name":"NCryptPromptUserFn","features":[389]},{"name":"NCryptProtectSecret","features":[305,389]},{"name":"NCryptProviderName","features":[389]},{"name":"NCryptQueryProtectionDescriptorName","features":[389]},{"name":"NCryptRegisterProtectionDescriptorName","features":[389]},{"name":"NCryptSecretAgreement","features":[389]},{"name":"NCryptSecretAgreementFn","features":[389]},{"name":"NCryptSetKeyPropertyFn","features":[389]},{"name":"NCryptSetProperty","features":[389]},{"name":"NCryptSetProviderPropertyFn","features":[389]},{"name":"NCryptSignHash","features":[389]},{"name":"NCryptSignHashFn","features":[389]},{"name":"NCryptStreamClose","features":[389]},{"name":"NCryptStreamOpenToProtect","features":[305,389]},{"name":"NCryptStreamOpenToUnprotect","features":[305,389]},{"name":"NCryptStreamOpenToUnprotectEx","features":[305,389]},{"name":"NCryptStreamUpdate","features":[305,389]},{"name":"NCryptTranslateHandle","features":[389]},{"name":"NCryptUnprotectSecret","features":[305,389]},{"name":"NCryptVerifyClaim","features":[389]},{"name":"NCryptVerifyClaimFn","features":[389]},{"name":"NCryptVerifySignature","features":[389]},{"name":"NCryptVerifySignatureFn","features":[389]},{"name":"NETSCAPE_SIGN_CA_CERT_TYPE","features":[389]},{"name":"NETSCAPE_SIGN_CERT_TYPE","features":[389]},{"name":"NETSCAPE_SMIME_CA_CERT_TYPE","features":[389]},{"name":"NETSCAPE_SMIME_CERT_TYPE","features":[389]},{"name":"NETSCAPE_SSL_CA_CERT_TYPE","features":[389]},{"name":"NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE","features":[389]},{"name":"NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE","features":[389]},{"name":"NonRepudiationPin","features":[389]},{"name":"OCSP_BASIC_BY_KEY_RESPONDER_ID","features":[389]},{"name":"OCSP_BASIC_BY_NAME_RESPONDER_ID","features":[389]},{"name":"OCSP_BASIC_GOOD_CERT_STATUS","features":[389]},{"name":"OCSP_BASIC_RESPONSE","features":[389]},{"name":"OCSP_BASIC_RESPONSE_ENTRY","features":[305,389]},{"name":"OCSP_BASIC_RESPONSE_INFO","features":[305,389]},{"name":"OCSP_BASIC_RESPONSE_V1","features":[389]},{"name":"OCSP_BASIC_REVOKED_CERT_STATUS","features":[389]},{"name":"OCSP_BASIC_REVOKED_INFO","features":[305,389]},{"name":"OCSP_BASIC_SIGNED_RESPONSE","features":[389]},{"name":"OCSP_BASIC_SIGNED_RESPONSE_INFO","features":[389]},{"name":"OCSP_BASIC_UNKNOWN_CERT_STATUS","features":[389]},{"name":"OCSP_CERT_ID","features":[389]},{"name":"OCSP_INTERNAL_ERROR_RESPONSE","features":[389]},{"name":"OCSP_MALFORMED_REQUEST_RESPONSE","features":[389]},{"name":"OCSP_REQUEST","features":[389]},{"name":"OCSP_REQUEST_ENTRY","features":[305,389]},{"name":"OCSP_REQUEST_INFO","features":[305,389]},{"name":"OCSP_REQUEST_V1","features":[389]},{"name":"OCSP_RESPONSE","features":[389]},{"name":"OCSP_RESPONSE_INFO","features":[389]},{"name":"OCSP_SIGNATURE_INFO","features":[389]},{"name":"OCSP_SIGNED_REQUEST","features":[389]},{"name":"OCSP_SIGNED_REQUEST_INFO","features":[389]},{"name":"OCSP_SIG_REQUIRED_RESPONSE","features":[389]},{"name":"OCSP_SUCCESSFUL_RESPONSE","features":[389]},{"name":"OCSP_TRY_LATER_RESPONSE","features":[389]},{"name":"OCSP_UNAUTHORIZED_RESPONSE","features":[389]},{"name":"OFFLOAD_PRIVATE_KEY","features":[389]},{"name":"OPAQUEKEYBLOB","features":[389]},{"name":"PCRYPT_DECRYPT_PRIVATE_KEY_FUNC","features":[305,389]},{"name":"PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC","features":[305,389]},{"name":"PCRYPT_RESOLVE_HCRYPTPROV_FUNC","features":[305,389]},{"name":"PFNCryptStreamOutputCallback","features":[305,389]},{"name":"PFNCryptStreamOutputCallbackEx","features":[305,389]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN","features":[305,389]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX","features":[305,389]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_EX_WITHFILEHANDLE","features":[305,389]},{"name":"PFN_AUTHENTICODE_DIGEST_SIGN_WITHFILEHANDLE","features":[305,389]},{"name":"PFN_CANCEL_ASYNC_RETRIEVAL_FUNC","features":[305,389]},{"name":"PFN_CARD_ACQUIRE_CONTEXT","features":[305,389]},{"name":"PFN_CARD_AUTHENTICATE_CHALLENGE","features":[305,389]},{"name":"PFN_CARD_AUTHENTICATE_EX","features":[305,389]},{"name":"PFN_CARD_AUTHENTICATE_PIN","features":[305,389]},{"name":"PFN_CARD_CHANGE_AUTHENTICATOR","features":[305,389]},{"name":"PFN_CARD_CHANGE_AUTHENTICATOR_EX","features":[305,389]},{"name":"PFN_CARD_CONSTRUCT_DH_AGREEMENT","features":[305,389]},{"name":"PFN_CARD_CREATE_CONTAINER","features":[305,389]},{"name":"PFN_CARD_CREATE_CONTAINER_EX","features":[305,389]},{"name":"PFN_CARD_CREATE_DIRECTORY","features":[305,389]},{"name":"PFN_CARD_CREATE_FILE","features":[305,389]},{"name":"PFN_CARD_DEAUTHENTICATE","features":[305,389]},{"name":"PFN_CARD_DEAUTHENTICATE_EX","features":[305,389]},{"name":"PFN_CARD_DELETE_CONTAINER","features":[305,389]},{"name":"PFN_CARD_DELETE_CONTEXT","features":[305,389]},{"name":"PFN_CARD_DELETE_DIRECTORY","features":[305,389]},{"name":"PFN_CARD_DELETE_FILE","features":[305,389]},{"name":"PFN_CARD_DERIVE_KEY","features":[305,389]},{"name":"PFN_CARD_DESTROY_DH_AGREEMENT","features":[305,389]},{"name":"PFN_CARD_DESTROY_KEY","features":[305,389]},{"name":"PFN_CARD_ENUM_FILES","features":[305,389]},{"name":"PFN_CARD_GET_ALGORITHM_PROPERTY","features":[305,389]},{"name":"PFN_CARD_GET_CHALLENGE","features":[305,389]},{"name":"PFN_CARD_GET_CHALLENGE_EX","features":[305,389]},{"name":"PFN_CARD_GET_CONTAINER_INFO","features":[305,389]},{"name":"PFN_CARD_GET_CONTAINER_PROPERTY","features":[305,389]},{"name":"PFN_CARD_GET_FILE_INFO","features":[305,389]},{"name":"PFN_CARD_GET_KEY_PROPERTY","features":[305,389]},{"name":"PFN_CARD_GET_PROPERTY","features":[305,389]},{"name":"PFN_CARD_GET_SHARED_KEY_HANDLE","features":[305,389]},{"name":"PFN_CARD_IMPORT_SESSION_KEY","features":[305,389]},{"name":"PFN_CARD_PROCESS_ENCRYPTED_DATA","features":[305,389]},{"name":"PFN_CARD_QUERY_CAPABILITIES","features":[305,389]},{"name":"PFN_CARD_QUERY_FREE_SPACE","features":[305,389]},{"name":"PFN_CARD_QUERY_KEY_SIZES","features":[305,389]},{"name":"PFN_CARD_READ_FILE","features":[305,389]},{"name":"PFN_CARD_RSA_DECRYPT","features":[305,389]},{"name":"PFN_CARD_SET_CONTAINER_PROPERTY","features":[305,389]},{"name":"PFN_CARD_SET_KEY_PROPERTY","features":[305,389]},{"name":"PFN_CARD_SET_PROPERTY","features":[305,389]},{"name":"PFN_CARD_SIGN_DATA","features":[305,389]},{"name":"PFN_CARD_UNBLOCK_PIN","features":[305,389]},{"name":"PFN_CARD_WRITE_FILE","features":[305,389]},{"name":"PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK","features":[305,389]},{"name":"PFN_CERT_CREATE_CONTEXT_SORT_FUNC","features":[305,389]},{"name":"PFN_CERT_DLL_OPEN_STORE_PROV_FUNC","features":[305,389]},{"name":"PFN_CERT_ENUM_PHYSICAL_STORE","features":[305,389]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE","features":[305,389]},{"name":"PFN_CERT_ENUM_SYSTEM_STORE_LOCATION","features":[305,389]},{"name":"PFN_CERT_IS_WEAK_HASH","features":[305,389]},{"name":"PFN_CERT_SERVER_OCSP_RESPONSE_UPDATE_CALLBACK","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_CLOSE","features":[389]},{"name":"PFN_CERT_STORE_PROV_CONTROL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_DELETE_CERT","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_DELETE_CRL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_DELETE_CTL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_FIND_CERT","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_FIND_CRL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_FIND_CTL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CERT","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CRL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_FREE_FIND_CTL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_GET_CERT_PROPERTY","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_GET_CRL_PROPERTY","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_GET_CTL_PROPERTY","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_READ_CERT","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_READ_CRL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_READ_CTL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_SET_CERT_PROPERTY","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_SET_CRL_PROPERTY","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_SET_CTL_PROPERTY","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_WRITE_CERT","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_WRITE_CRL","features":[305,389]},{"name":"PFN_CERT_STORE_PROV_WRITE_CTL","features":[305,389]},{"name":"PFN_CMSG_ALLOC","features":[389]},{"name":"PFN_CMSG_CNG_IMPORT_CONTENT_ENCRYPT_KEY","features":[305,389]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_AGREE","features":[305,389]},{"name":"PFN_CMSG_CNG_IMPORT_KEY_TRANS","features":[305,389]},{"name":"PFN_CMSG_EXPORT_ENCRYPT_KEY","features":[305,389]},{"name":"PFN_CMSG_EXPORT_KEY_AGREE","features":[305,389]},{"name":"PFN_CMSG_EXPORT_KEY_TRANS","features":[305,389]},{"name":"PFN_CMSG_EXPORT_MAIL_LIST","features":[305,389]},{"name":"PFN_CMSG_FREE","features":[389]},{"name":"PFN_CMSG_GEN_CONTENT_ENCRYPT_KEY","features":[305,389]},{"name":"PFN_CMSG_GEN_ENCRYPT_KEY","features":[305,389]},{"name":"PFN_CMSG_IMPORT_ENCRYPT_KEY","features":[305,389]},{"name":"PFN_CMSG_IMPORT_KEY_AGREE","features":[305,389]},{"name":"PFN_CMSG_IMPORT_KEY_TRANS","features":[305,389]},{"name":"PFN_CMSG_IMPORT_MAIL_LIST","features":[305,389]},{"name":"PFN_CMSG_STREAM_OUTPUT","features":[305,389]},{"name":"PFN_CRYPT_ALLOC","features":[389]},{"name":"PFN_CRYPT_ASYNC_PARAM_FREE_FUNC","features":[389]},{"name":"PFN_CRYPT_ASYNC_RETRIEVAL_COMPLETION_FUNC","features":[389]},{"name":"PFN_CRYPT_CANCEL_RETRIEVAL","features":[305,389]},{"name":"PFN_CRYPT_ENUM_KEYID_PROP","features":[305,389]},{"name":"PFN_CRYPT_ENUM_OID_FUNC","features":[305,389]},{"name":"PFN_CRYPT_ENUM_OID_INFO","features":[305,389]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[305,389]},{"name":"PFN_CRYPT_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC","features":[305,389]},{"name":"PFN_CRYPT_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC","features":[305,389]},{"name":"PFN_CRYPT_FREE","features":[389]},{"name":"PFN_CRYPT_GET_SIGNER_CERTIFICATE","features":[305,389]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FLUSH","features":[305,389]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE","features":[389]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_IDENTIFIER","features":[389]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_FREE_PASSWORD","features":[389]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_GET","features":[305,389]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_INITIALIZE","features":[305,389]},{"name":"PFN_CRYPT_OBJECT_LOCATOR_PROVIDER_RELEASE","features":[389]},{"name":"PFN_CRYPT_SIGN_AND_ENCODE_HASH_FUNC","features":[305,389]},{"name":"PFN_CRYPT_VERIFY_ENCODED_SIGNATURE_FUNC","features":[305,389]},{"name":"PFN_CRYPT_XML_CREATE_TRANSFORM","features":[389]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_CLOSE","features":[389]},{"name":"PFN_CRYPT_XML_DATA_PROVIDER_READ","features":[389]},{"name":"PFN_CRYPT_XML_ENUM_ALG_INFO","features":[305,389]},{"name":"PFN_CRYPT_XML_WRITE_CALLBACK","features":[389]},{"name":"PFN_CSP_ALLOC","features":[389]},{"name":"PFN_CSP_CACHE_ADD_FILE","features":[389]},{"name":"PFN_CSP_CACHE_DELETE_FILE","features":[389]},{"name":"PFN_CSP_CACHE_LOOKUP_FILE","features":[389]},{"name":"PFN_CSP_FREE","features":[389]},{"name":"PFN_CSP_GET_DH_AGREEMENT","features":[305,389]},{"name":"PFN_CSP_PAD_DATA","features":[389]},{"name":"PFN_CSP_REALLOC","features":[389]},{"name":"PFN_CSP_UNPAD_DATA","features":[389]},{"name":"PFN_EXPORT_PRIV_KEY_FUNC","features":[305,389]},{"name":"PFN_FREE_ENCODED_OBJECT_FUNC","features":[389]},{"name":"PFN_IMPORT_PRIV_KEY_FUNC","features":[305,389]},{"name":"PFN_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC","features":[305,389]},{"name":"PFN_MD_ENCRYPT_DATA","features":[305,389]},{"name":"PFN_MD_IMPORT_SESSION_KEY","features":[305,389]},{"name":"PFN_NCRYPT_ALLOC","features":[389]},{"name":"PFN_NCRYPT_FREE","features":[389]},{"name":"PFN_OFFLOAD_MOD_EXPO","features":[305,389]},{"name":"PFXExportCertStore","features":[305,389]},{"name":"PFXExportCertStoreEx","features":[305,389]},{"name":"PFXImportCertStore","features":[389]},{"name":"PFXIsPFXBlob","features":[305,389]},{"name":"PFXVerifyPassword","features":[305,389]},{"name":"PIN_CACHE_POLICY","features":[389]},{"name":"PIN_CACHE_POLICY_CURRENT_VERSION","features":[389]},{"name":"PIN_CACHE_POLICY_TYPE","features":[389]},{"name":"PIN_CHANGE_FLAG_CHANGEPIN","features":[389]},{"name":"PIN_CHANGE_FLAG_UNBLOCK","features":[389]},{"name":"PIN_INFO","features":[389]},{"name":"PIN_INFO_CURRENT_VERSION","features":[389]},{"name":"PIN_INFO_REQUIRE_SECURE_ENTRY","features":[389]},{"name":"PIN_SET_ALL_ROLES","features":[389]},{"name":"PIN_SET_NONE","features":[389]},{"name":"PKCS12_ALLOW_OVERWRITE_KEY","features":[389]},{"name":"PKCS12_ALWAYS_CNG_KSP","features":[389]},{"name":"PKCS12_CONFIG_REGPATH","features":[389]},{"name":"PKCS12_DISABLE_ENCRYPT_CERTIFICATES","features":[389]},{"name":"PKCS12_ENCRYPT_CERTIFICATES","features":[389]},{"name":"PKCS12_ENCRYPT_CERTIFICATES_VALUE_NAME","features":[389]},{"name":"PKCS12_EXPORT_ECC_CURVE_OID","features":[389]},{"name":"PKCS12_EXPORT_ECC_CURVE_PARAMETERS","features":[389]},{"name":"PKCS12_EXPORT_PBES2_PARAMS","features":[389]},{"name":"PKCS12_EXPORT_RESERVED_MASK","features":[389]},{"name":"PKCS12_EXPORT_SILENT","features":[389]},{"name":"PKCS12_IMPORT_RESERVED_MASK","features":[389]},{"name":"PKCS12_IMPORT_SILENT","features":[389]},{"name":"PKCS12_INCLUDE_EXTENDED_PROPERTIES","features":[389]},{"name":"PKCS12_NO_PERSIST_KEY","features":[389]},{"name":"PKCS12_ONLY_CERTIFICATES","features":[389]},{"name":"PKCS12_ONLY_CERTIFICATES_CONTAINER_NAME","features":[389]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_NAME","features":[389]},{"name":"PKCS12_ONLY_CERTIFICATES_PROVIDER_TYPE","features":[389]},{"name":"PKCS12_ONLY_NOT_ENCRYPTED_CERTIFICATES","features":[389]},{"name":"PKCS12_PBES2_ALG_AES256_SHA256","features":[389]},{"name":"PKCS12_PBES2_EXPORT_PARAMS","features":[389]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA1","features":[389]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA256","features":[389]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA384","features":[389]},{"name":"PKCS12_PBKDF2_ID_HMAC_SHA512","features":[389]},{"name":"PKCS12_PREFER_CNG_KSP","features":[389]},{"name":"PKCS12_PROTECT_TO_DOMAIN_SIDS","features":[389]},{"name":"PKCS12_VIRTUAL_ISOLATION_KEY","features":[389]},{"name":"PKCS5_PADDING","features":[389]},{"name":"PKCS7_SIGNER_INFO","features":[389]},{"name":"PKCS_7_ASN_ENCODING","features":[389]},{"name":"PKCS_7_NDR_ENCODING","features":[389]},{"name":"PKCS_ATTRIBUTE","features":[389]},{"name":"PKCS_ATTRIBUTES","features":[389]},{"name":"PKCS_CONTENT_INFO","features":[389]},{"name":"PKCS_CONTENT_INFO_SEQUENCE_OF_ANY","features":[389]},{"name":"PKCS_CTL","features":[389]},{"name":"PKCS_ENCRYPTED_PRIVATE_KEY_INFO","features":[389]},{"name":"PKCS_PRIVATE_KEY_INFO","features":[389]},{"name":"PKCS_RC2_CBC_PARAMETERS","features":[389]},{"name":"PKCS_RSAES_OAEP_PARAMETERS","features":[389]},{"name":"PKCS_RSA_PRIVATE_KEY","features":[389]},{"name":"PKCS_RSA_SSA_PSS_PARAMETERS","features":[389]},{"name":"PKCS_RSA_SSA_PSS_TRAILER_FIELD_BC","features":[389]},{"name":"PKCS_SMIME_CAPABILITIES","features":[389]},{"name":"PKCS_SORTED_CTL","features":[389]},{"name":"PKCS_TIME_REQUEST","features":[389]},{"name":"PKCS_UTC_TIME","features":[389]},{"name":"PLAINTEXTKEYBLOB","features":[389]},{"name":"POLICY_ELEMENT","features":[305,389]},{"name":"PP_ADMIN_PIN","features":[389]},{"name":"PP_APPLI_CERT","features":[389]},{"name":"PP_CERTCHAIN","features":[389]},{"name":"PP_CHANGE_PASSWORD","features":[389]},{"name":"PP_CLIENT_HWND","features":[389]},{"name":"PP_CONTAINER","features":[389]},{"name":"PP_CONTEXT_INFO","features":[389]},{"name":"PP_CRYPT_COUNT_KEY_USE","features":[389]},{"name":"PP_DELETEKEY","features":[389]},{"name":"PP_DISMISS_PIN_UI_SEC","features":[389]},{"name":"PP_ENUMALGS","features":[389]},{"name":"PP_ENUMALGS_EX","features":[389]},{"name":"PP_ENUMCONTAINERS","features":[389]},{"name":"PP_ENUMELECTROOTS","features":[389]},{"name":"PP_ENUMEX_SIGNING_PROT","features":[389]},{"name":"PP_ENUMMANDROOTS","features":[389]},{"name":"PP_IMPTYPE","features":[389]},{"name":"PP_IS_PFX_EPHEMERAL","features":[389]},{"name":"PP_KEYEXCHANGE_ALG","features":[389]},{"name":"PP_KEYEXCHANGE_KEYSIZE","features":[389]},{"name":"PP_KEYEXCHANGE_PIN","features":[389]},{"name":"PP_KEYSET_SEC_DESCR","features":[389]},{"name":"PP_KEYSET_TYPE","features":[389]},{"name":"PP_KEYSPEC","features":[389]},{"name":"PP_KEYSTORAGE","features":[389]},{"name":"PP_KEYX_KEYSIZE_INC","features":[389]},{"name":"PP_KEY_TYPE_SUBTYPE","features":[389]},{"name":"PP_NAME","features":[389]},{"name":"PP_PIN_PROMPT_STRING","features":[389]},{"name":"PP_PROVTYPE","features":[389]},{"name":"PP_ROOT_CERTSTORE","features":[389]},{"name":"PP_SECURE_KEYEXCHANGE_PIN","features":[389]},{"name":"PP_SECURE_SIGNATURE_PIN","features":[389]},{"name":"PP_SESSION_KEYSIZE","features":[389]},{"name":"PP_SGC_INFO","features":[389]},{"name":"PP_SIGNATURE_ALG","features":[389]},{"name":"PP_SIGNATURE_KEYSIZE","features":[389]},{"name":"PP_SIGNATURE_PIN","features":[389]},{"name":"PP_SIG_KEYSIZE_INC","features":[389]},{"name":"PP_SMARTCARD_GUID","features":[389]},{"name":"PP_SMARTCARD_READER","features":[389]},{"name":"PP_SMARTCARD_READER_ICON","features":[389]},{"name":"PP_SYM_KEYSIZE","features":[389]},{"name":"PP_UI_PROMPT","features":[389]},{"name":"PP_UNIQUE_CONTAINER","features":[389]},{"name":"PP_USER_CERTSTORE","features":[389]},{"name":"PP_USE_HARDWARE_RNG","features":[389]},{"name":"PP_VERSION","features":[389]},{"name":"PRIVATEKEYBLOB","features":[389]},{"name":"PRIVKEYVER3","features":[389]},{"name":"PROV_DH_SCHANNEL","features":[389]},{"name":"PROV_DSS","features":[389]},{"name":"PROV_DSS_DH","features":[389]},{"name":"PROV_EC_ECDSA_FULL","features":[389]},{"name":"PROV_EC_ECDSA_SIG","features":[389]},{"name":"PROV_EC_ECNRA_FULL","features":[389]},{"name":"PROV_EC_ECNRA_SIG","features":[389]},{"name":"PROV_ENUMALGS","features":[389]},{"name":"PROV_ENUMALGS_EX","features":[389]},{"name":"PROV_FORTEZZA","features":[389]},{"name":"PROV_INTEL_SEC","features":[389]},{"name":"PROV_MS_EXCHANGE","features":[389]},{"name":"PROV_REPLACE_OWF","features":[389]},{"name":"PROV_RNG","features":[389]},{"name":"PROV_RSA_AES","features":[389]},{"name":"PROV_RSA_FULL","features":[389]},{"name":"PROV_RSA_SCHANNEL","features":[389]},{"name":"PROV_RSA_SIG","features":[389]},{"name":"PROV_SPYRUS_LYNKS","features":[389]},{"name":"PROV_SSL","features":[389]},{"name":"PROV_STT_ACQ","features":[389]},{"name":"PROV_STT_BRND","features":[389]},{"name":"PROV_STT_ISS","features":[389]},{"name":"PROV_STT_MER","features":[389]},{"name":"PROV_STT_ROOT","features":[389]},{"name":"PUBKEY","features":[389]},{"name":"PUBKEYVER3","features":[389]},{"name":"PUBLICKEYBLOB","features":[389]},{"name":"PUBLICKEYBLOBEX","features":[389]},{"name":"PUBLICKEYSTRUC","features":[389]},{"name":"PVK_TYPE_FILE_NAME","features":[389]},{"name":"PVK_TYPE_KEYCONTAINER","features":[389]},{"name":"PaddingMode","features":[389]},{"name":"PinCacheAlwaysPrompt","features":[389]},{"name":"PinCacheNone","features":[389]},{"name":"PinCacheNormal","features":[389]},{"name":"PinCacheTimed","features":[389]},{"name":"PrimaryCardPin","features":[389]},{"name":"ProcessPrng","features":[305,389]},{"name":"RANDOM_PADDING","features":[389]},{"name":"RECIPIENTPOLICY","features":[389]},{"name":"RECIPIENTPOLICY2","features":[389]},{"name":"RECIPIENTPOLICYV1","features":[389]},{"name":"RECIPIENTPOLICYV2","features":[389]},{"name":"REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY","features":[389]},{"name":"REPORT_NO_PRIVATE_KEY","features":[389]},{"name":"REVOCATION_OID_CRL_REVOCATION","features":[389]},{"name":"ROLE_ADMIN","features":[389]},{"name":"ROLE_EVERYONE","features":[389]},{"name":"ROLE_PIN_ALWAYS","features":[389]},{"name":"ROLE_PUK","features":[389]},{"name":"ROLE_USER","features":[389]},{"name":"ROOT_INFO_LUID","features":[389]},{"name":"RSA1024BIT_KEY","features":[389]},{"name":"RSAPUBKEY","features":[389]},{"name":"RSA_CSP_PUBLICKEYBLOB","features":[389]},{"name":"SCARD_PROVIDER_CARD_MODULE","features":[389]},{"name":"SCHANNEL_ALG","features":[389]},{"name":"SCHANNEL_ENC_KEY","features":[389]},{"name":"SCHANNEL_MAC_KEY","features":[389]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC","features":[389]},{"name":"SCHEME_OID_RETRIEVE_ENCODED_OBJECT_FUNC","features":[389]},{"name":"SECRET_PURPOSE","features":[389]},{"name":"SECRET_TYPE","features":[389]},{"name":"SIGNATURE_RESOURCE_NUMBER","features":[389]},{"name":"SIGNER_ATTR_AUTHCODE","features":[305,389]},{"name":"SIGNER_AUTHCODE_ATTR","features":[389]},{"name":"SIGNER_BLOB_INFO","features":[389]},{"name":"SIGNER_CERT","features":[305,389]},{"name":"SIGNER_CERT_CHOICE","features":[389]},{"name":"SIGNER_CERT_POLICY","features":[389]},{"name":"SIGNER_CERT_POLICY_CHAIN","features":[389]},{"name":"SIGNER_CERT_POLICY_CHAIN_NO_ROOT","features":[389]},{"name":"SIGNER_CERT_POLICY_SPC","features":[389]},{"name":"SIGNER_CERT_POLICY_STORE","features":[389]},{"name":"SIGNER_CERT_SPC_CHAIN","features":[389]},{"name":"SIGNER_CERT_SPC_FILE","features":[389]},{"name":"SIGNER_CERT_STORE","features":[389]},{"name":"SIGNER_CERT_STORE_INFO","features":[305,389]},{"name":"SIGNER_CONTEXT","features":[389]},{"name":"SIGNER_DIGEST_SIGN_INFO","features":[305,389]},{"name":"SIGNER_DIGEST_SIGN_INFO_V1","features":[305,389]},{"name":"SIGNER_DIGEST_SIGN_INFO_V2","features":[305,389]},{"name":"SIGNER_FILE_INFO","features":[305,389]},{"name":"SIGNER_NO_ATTR","features":[389]},{"name":"SIGNER_PRIVATE_KEY_CHOICE","features":[389]},{"name":"SIGNER_PROVIDER_INFO","features":[389]},{"name":"SIGNER_SIGNATURE_ATTRIBUTE_CHOICE","features":[389]},{"name":"SIGNER_SIGNATURE_INFO","features":[305,389]},{"name":"SIGNER_SIGN_FLAGS","features":[389]},{"name":"SIGNER_SPC_CHAIN_INFO","features":[389]},{"name":"SIGNER_SUBJECT_BLOB","features":[389]},{"name":"SIGNER_SUBJECT_CHOICE","features":[389]},{"name":"SIGNER_SUBJECT_FILE","features":[389]},{"name":"SIGNER_SUBJECT_INFO","features":[305,389]},{"name":"SIGNER_TIMESTAMP_AUTHENTICODE","features":[389]},{"name":"SIGNER_TIMESTAMP_FLAGS","features":[389]},{"name":"SIGNER_TIMESTAMP_RFC3161","features":[389]},{"name":"SIG_APPEND","features":[389]},{"name":"SIMPLEBLOB","features":[389]},{"name":"SITE_PIN_RULES_ALL_SUBDOMAINS_FLAG","features":[389]},{"name":"SORTED_CTL_EXT_HASHED_SUBJECT_IDENTIFIER_FLAG","features":[389]},{"name":"SPC_DIGEST_GENERATE_FLAG","features":[389]},{"name":"SPC_DIGEST_SIGN_EX_FLAG","features":[389]},{"name":"SPC_DIGEST_SIGN_FLAG","features":[389]},{"name":"SPC_EXC_PE_PAGE_HASHES_FLAG","features":[389]},{"name":"SPC_INC_PE_DEBUG_INFO_FLAG","features":[389]},{"name":"SPC_INC_PE_IMPORT_ADDR_TABLE_FLAG","features":[389]},{"name":"SPC_INC_PE_PAGE_HASHES_FLAG","features":[389]},{"name":"SPC_INC_PE_RESOURCES_FLAG","features":[389]},{"name":"SSL2_PROTOCOL_VERSION","features":[389]},{"name":"SSL3_PROTOCOL_VERSION","features":[389]},{"name":"SSL_CK_DES_192_EDE3_CBC_WITH_MD5","features":[389]},{"name":"SSL_CK_DES_64_CBC_WITH_MD5","features":[389]},{"name":"SSL_CK_IDEA_128_CBC_WITH_MD5","features":[389]},{"name":"SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5","features":[389]},{"name":"SSL_CK_RC2_128_CBC_WITH_MD5","features":[389]},{"name":"SSL_CK_RC4_128_EXPORT40_WITH_MD5","features":[389]},{"name":"SSL_CK_RC4_128_WITH_MD5","features":[389]},{"name":"SSL_ECCKEY_BLOB","features":[389]},{"name":"SSL_ECCPUBLIC_BLOB","features":[389]},{"name":"SSL_ECDSA_ALGORITHM","features":[389]},{"name":"SSL_F12_ERROR_TEXT_LENGTH","features":[389]},{"name":"SSL_F12_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[389]},{"name":"SSL_HPKP_HEADER_COUNT","features":[389]},{"name":"SSL_HPKP_HEADER_EXTRA_CERT_CHAIN_POLICY_PARA","features":[389]},{"name":"SSL_HPKP_PKP_HEADER_INDEX","features":[389]},{"name":"SSL_HPKP_PKP_RO_HEADER_INDEX","features":[389]},{"name":"SSL_KEY_PIN_ERROR_TEXT_LENGTH","features":[389]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_PARA","features":[389]},{"name":"SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_STATUS","features":[389]},{"name":"SSL_KEY_TYPE_PROPERTY","features":[389]},{"name":"SSL_OBJECT_LOCATOR_CERT_VALIDATION_CONFIG_FUNC","features":[389]},{"name":"SSL_OBJECT_LOCATOR_ISSUER_LIST_FUNC","features":[389]},{"name":"SSL_OBJECT_LOCATOR_PFX_FUNC","features":[389]},{"name":"SYMMETRICWRAPKEYBLOB","features":[389]},{"name":"SignError","features":[389]},{"name":"SignHash","features":[389]},{"name":"SignerFreeSignerContext","features":[389]},{"name":"SignerSign","features":[305,389]},{"name":"SignerSignEx","features":[305,389]},{"name":"SignerSignEx2","features":[305,389]},{"name":"SignerSignEx3","features":[305,389]},{"name":"SignerTimeStamp","features":[305,389]},{"name":"SignerTimeStampEx","features":[305,389]},{"name":"SignerTimeStampEx2","features":[305,389]},{"name":"SignerTimeStampEx3","features":[305,389]},{"name":"SslChangeNotify","features":[305,389]},{"name":"SslComputeClientAuthHash","features":[389]},{"name":"SslComputeClientAuthHashFn","features":[389]},{"name":"SslComputeEapKeyBlock","features":[389]},{"name":"SslComputeEapKeyBlockFn","features":[389]},{"name":"SslComputeFinishedHash","features":[389]},{"name":"SslComputeFinishedHashFn","features":[389]},{"name":"SslComputeSessionHash","features":[389]},{"name":"SslComputeSessionHashFn","features":[389]},{"name":"SslCreateClientAuthHash","features":[389]},{"name":"SslCreateClientAuthHashFn","features":[389]},{"name":"SslCreateEphemeralKey","features":[389]},{"name":"SslCreateEphemeralKeyFn","features":[389]},{"name":"SslCreateHandshakeHash","features":[389]},{"name":"SslCreateHandshakeHashFn","features":[389]},{"name":"SslDecrementProviderReferenceCount","features":[389]},{"name":"SslDecryptPacket","features":[389]},{"name":"SslDecryptPacketFn","features":[389]},{"name":"SslDuplicateTranscriptHash","features":[389]},{"name":"SslDuplicateTranscriptHashFn","features":[389]},{"name":"SslEncryptPacket","features":[389]},{"name":"SslEncryptPacketFn","features":[389]},{"name":"SslEnumCipherSuites","features":[389]},{"name":"SslEnumCipherSuitesEx","features":[389]},{"name":"SslEnumCipherSuitesExFn","features":[389]},{"name":"SslEnumCipherSuitesFn","features":[389]},{"name":"SslEnumEccCurves","features":[389]},{"name":"SslEnumEccCurvesFn","features":[389]},{"name":"SslEnumProtocolProviders","features":[389]},{"name":"SslExpandBinderKey","features":[389]},{"name":"SslExpandBinderKeyFn","features":[389]},{"name":"SslExpandExporterMasterKey","features":[389]},{"name":"SslExpandExporterMasterKeyFn","features":[389]},{"name":"SslExpandPreSharedKey","features":[389]},{"name":"SslExpandPreSharedKeyFn","features":[389]},{"name":"SslExpandResumptionMasterKey","features":[389]},{"name":"SslExpandResumptionMasterKeyFn","features":[389]},{"name":"SslExpandTrafficKeys","features":[389]},{"name":"SslExpandTrafficKeysFn","features":[389]},{"name":"SslExpandWriteKey","features":[389]},{"name":"SslExpandWriteKeyFn","features":[389]},{"name":"SslExportKey","features":[389]},{"name":"SslExportKeyFn","features":[389]},{"name":"SslExportKeyingMaterial","features":[389]},{"name":"SslExportKeyingMaterialFn","features":[389]},{"name":"SslExtractEarlyKey","features":[389]},{"name":"SslExtractEarlyKeyFn","features":[389]},{"name":"SslExtractHandshakeKey","features":[389]},{"name":"SslExtractHandshakeKeyFn","features":[389]},{"name":"SslExtractMasterKey","features":[389]},{"name":"SslExtractMasterKeyFn","features":[389]},{"name":"SslFreeBuffer","features":[389]},{"name":"SslFreeBufferFn","features":[389]},{"name":"SslFreeObject","features":[389]},{"name":"SslFreeObjectFn","features":[389]},{"name":"SslGenerateMasterKey","features":[389]},{"name":"SslGenerateMasterKeyFn","features":[389]},{"name":"SslGeneratePreMasterKey","features":[389]},{"name":"SslGeneratePreMasterKeyFn","features":[389]},{"name":"SslGenerateSessionKeys","features":[389]},{"name":"SslGenerateSessionKeysFn","features":[389]},{"name":"SslGetCipherSuitePRFHashAlgorithm","features":[389]},{"name":"SslGetCipherSuitePRFHashAlgorithmFn","features":[389]},{"name":"SslGetKeyProperty","features":[389]},{"name":"SslGetKeyPropertyFn","features":[389]},{"name":"SslGetProviderProperty","features":[389]},{"name":"SslGetProviderPropertyFn","features":[389]},{"name":"SslHashHandshake","features":[389]},{"name":"SslHashHandshakeFn","features":[389]},{"name":"SslImportKey","features":[389]},{"name":"SslImportKeyFn","features":[389]},{"name":"SslImportMasterKey","features":[389]},{"name":"SslImportMasterKeyFn","features":[389]},{"name":"SslIncrementProviderReferenceCount","features":[389]},{"name":"SslInitializeInterfaceFn","features":[305,389]},{"name":"SslLookupCipherLengths","features":[389]},{"name":"SslLookupCipherLengthsFn","features":[389]},{"name":"SslLookupCipherSuiteInfo","features":[389]},{"name":"SslLookupCipherSuiteInfoFn","features":[389]},{"name":"SslOpenPrivateKey","features":[305,389]},{"name":"SslOpenPrivateKeyFn","features":[305,389]},{"name":"SslOpenProvider","features":[389]},{"name":"SslOpenProviderFn","features":[389]},{"name":"SslSignHash","features":[389]},{"name":"SslSignHashFn","features":[389]},{"name":"SslVerifySignature","features":[389]},{"name":"SslVerifySignatureFn","features":[389]},{"name":"SystemPrng","features":[305,389]},{"name":"TIMESTAMP_DONT_HASH_DATA","features":[389]},{"name":"TIMESTAMP_FAILURE_BAD_ALG","features":[389]},{"name":"TIMESTAMP_FAILURE_BAD_FORMAT","features":[389]},{"name":"TIMESTAMP_FAILURE_BAD_REQUEST","features":[389]},{"name":"TIMESTAMP_FAILURE_EXTENSION_NOT_SUPPORTED","features":[389]},{"name":"TIMESTAMP_FAILURE_INFO_NOT_AVAILABLE","features":[389]},{"name":"TIMESTAMP_FAILURE_POLICY_NOT_SUPPORTED","features":[389]},{"name":"TIMESTAMP_FAILURE_SYSTEM_FAILURE","features":[389]},{"name":"TIMESTAMP_FAILURE_TIME_NOT_AVAILABLE","features":[389]},{"name":"TIMESTAMP_INFO","features":[389]},{"name":"TIMESTAMP_NO_AUTH_RETRIEVAL","features":[389]},{"name":"TIMESTAMP_REQUEST","features":[389]},{"name":"TIMESTAMP_RESPONSE","features":[389]},{"name":"TIMESTAMP_STATUS_GRANTED","features":[389]},{"name":"TIMESTAMP_STATUS_GRANTED_WITH_MODS","features":[389]},{"name":"TIMESTAMP_STATUS_REJECTED","features":[389]},{"name":"TIMESTAMP_STATUS_REVOCATION_WARNING","features":[389]},{"name":"TIMESTAMP_STATUS_REVOKED","features":[389]},{"name":"TIMESTAMP_STATUS_WAITING","features":[389]},{"name":"TIMESTAMP_VERIFY_CONTEXT_SIGNATURE","features":[389]},{"name":"TIMESTAMP_VERSION","features":[389]},{"name":"TIME_VALID_OID_FLUSH_CRL","features":[389]},{"name":"TIME_VALID_OID_FLUSH_CRL_FROM_CERT","features":[389]},{"name":"TIME_VALID_OID_FLUSH_CTL","features":[389]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CERT","features":[389]},{"name":"TIME_VALID_OID_FLUSH_FRESHEST_CRL_FROM_CRL","features":[389]},{"name":"TIME_VALID_OID_FLUSH_OBJECT_FUNC","features":[389]},{"name":"TIME_VALID_OID_GET_CRL","features":[389]},{"name":"TIME_VALID_OID_GET_CRL_FROM_CERT","features":[389]},{"name":"TIME_VALID_OID_GET_CTL","features":[389]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CERT","features":[389]},{"name":"TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CRL","features":[389]},{"name":"TIME_VALID_OID_GET_OBJECT_FUNC","features":[389]},{"name":"TLS1_0_PROTOCOL_VERSION","features":[389]},{"name":"TLS1_1_PROTOCOL_VERSION","features":[389]},{"name":"TLS1_2_PROTOCOL_VERSION","features":[389]},{"name":"TLS1_3_PROTOCOL_VERSION","features":[389]},{"name":"TLS1_PROTOCOL_VERSION","features":[389]},{"name":"TLS_AES_128_GCM_SHA256","features":[389]},{"name":"TLS_AES_256_GCM_SHA384","features":[389]},{"name":"TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA","features":[389]},{"name":"TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA","features":[389]},{"name":"TLS_DHE_DSS_WITH_AES_128_CBC_SHA","features":[389]},{"name":"TLS_DHE_DSS_WITH_AES_128_CBC_SHA256","features":[389]},{"name":"TLS_DHE_DSS_WITH_AES_256_CBC_SHA","features":[389]},{"name":"TLS_DHE_DSS_WITH_AES_256_CBC_SHA256","features":[389]},{"name":"TLS_DHE_DSS_WITH_DES_CBC_SHA","features":[389]},{"name":"TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA","features":[389]},{"name":"TLS_DHE_RSA_WITH_AES_128_CBC_SHA","features":[389]},{"name":"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256","features":[389]},{"name":"TLS_DHE_RSA_WITH_AES_256_CBC_SHA","features":[389]},{"name":"TLS_DHE_RSA_WITH_AES_256_GCM_SHA384","features":[389]},{"name":"TLS_ECC_P256_CURVE_KEY_TYPE","features":[389]},{"name":"TLS_ECC_P384_CURVE_KEY_TYPE","features":[389]},{"name":"TLS_ECC_P521_CURVE_KEY_TYPE","features":[389]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA","features":[389]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256","features":[389]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","features":[389]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA","features":[389]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384","features":[389]},{"name":"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384","features":[389]},{"name":"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA","features":[389]},{"name":"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256","features":[389]},{"name":"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256","features":[389]},{"name":"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA","features":[389]},{"name":"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384","features":[389]},{"name":"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384","features":[389]},{"name":"TLS_PSK_EXCHANGE","features":[389]},{"name":"TLS_PSK_WITH_AES_128_CBC_SHA256","features":[389]},{"name":"TLS_PSK_WITH_AES_128_GCM_SHA256","features":[389]},{"name":"TLS_PSK_WITH_AES_256_CBC_SHA384","features":[389]},{"name":"TLS_PSK_WITH_AES_256_GCM_SHA384","features":[389]},{"name":"TLS_PSK_WITH_NULL_SHA256","features":[389]},{"name":"TLS_PSK_WITH_NULL_SHA384","features":[389]},{"name":"TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA","features":[389]},{"name":"TLS_RSA_EXPORT1024_WITH_RC4_56_SHA","features":[389]},{"name":"TLS_RSA_EXPORT_WITH_RC4_40_MD5","features":[389]},{"name":"TLS_RSA_PSK_EXCHANGE","features":[389]},{"name":"TLS_RSA_WITH_3DES_EDE_CBC_SHA","features":[389]},{"name":"TLS_RSA_WITH_AES_128_CBC_SHA","features":[389]},{"name":"TLS_RSA_WITH_AES_128_CBC_SHA256","features":[389]},{"name":"TLS_RSA_WITH_AES_128_GCM_SHA256","features":[389]},{"name":"TLS_RSA_WITH_AES_256_CBC_SHA","features":[389]},{"name":"TLS_RSA_WITH_AES_256_CBC_SHA256","features":[389]},{"name":"TLS_RSA_WITH_AES_256_GCM_SHA384","features":[389]},{"name":"TLS_RSA_WITH_DES_CBC_SHA","features":[389]},{"name":"TLS_RSA_WITH_NULL_MD5","features":[389]},{"name":"TLS_RSA_WITH_NULL_SHA","features":[389]},{"name":"TLS_RSA_WITH_NULL_SHA256","features":[389]},{"name":"TLS_RSA_WITH_RC4_128_MD5","features":[389]},{"name":"TLS_RSA_WITH_RC4_128_SHA","features":[389]},{"name":"TPM_RSA_SRK_SEAL_KEY","features":[389]},{"name":"TransformBlock","features":[389]},{"name":"TransformFinalBlock","features":[389]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT","features":[389]},{"name":"URL_OID_CERTIFICATE_CRL_DIST_POINT_AND_OCSP","features":[389]},{"name":"URL_OID_CERTIFICATE_FRESHEST_CRL","features":[389]},{"name":"URL_OID_CERTIFICATE_ISSUER","features":[389]},{"name":"URL_OID_CERTIFICATE_OCSP","features":[389]},{"name":"URL_OID_CERTIFICATE_OCSP_AND_CRL_DIST_POINT","features":[389]},{"name":"URL_OID_CERTIFICATE_ONLY_OCSP","features":[389]},{"name":"URL_OID_CRL_FRESHEST_CRL","features":[389]},{"name":"URL_OID_CRL_ISSUER","features":[389]},{"name":"URL_OID_CROSS_CERT_DIST_POINT","features":[389]},{"name":"URL_OID_CROSS_CERT_SUBJECT_INFO_ACCESS","features":[389]},{"name":"URL_OID_CTL_ISSUER","features":[389]},{"name":"URL_OID_CTL_NEXT_UPDATE","features":[389]},{"name":"URL_OID_GET_OBJECT_URL_FUNC","features":[389]},{"name":"USAGE_MATCH_TYPE_AND","features":[389]},{"name":"USAGE_MATCH_TYPE_OR","features":[389]},{"name":"UnblockOnlyPin","features":[389]},{"name":"UnknownAc","features":[389]},{"name":"UserCreateDeleteDirAc","features":[389]},{"name":"UserReadWriteAc","features":[389]},{"name":"UserWriteExecuteAc","features":[389]},{"name":"VTableProvStruc","features":[305,389]},{"name":"VTableProvStrucW","features":[305,389]},{"name":"VerifyHash","features":[305,389]},{"name":"X509_ALGORITHM_IDENTIFIER","features":[389]},{"name":"X509_ALTERNATE_NAME","features":[389]},{"name":"X509_ANY_STRING","features":[389]},{"name":"X509_ASN_ENCODING","features":[389]},{"name":"X509_AUTHORITY_INFO_ACCESS","features":[389]},{"name":"X509_AUTHORITY_KEY_ID","features":[389]},{"name":"X509_AUTHORITY_KEY_ID2","features":[389]},{"name":"X509_BASIC_CONSTRAINTS","features":[389]},{"name":"X509_BASIC_CONSTRAINTS2","features":[389]},{"name":"X509_BIOMETRIC_EXT","features":[389]},{"name":"X509_BITS","features":[389]},{"name":"X509_BITS_WITHOUT_TRAILING_ZEROES","features":[389]},{"name":"X509_CERT","features":[389]},{"name":"X509_CERTIFICATE_TEMPLATE","features":[389]},{"name":"X509_CERT_BUNDLE","features":[389]},{"name":"X509_CERT_CRL_TO_BE_SIGNED","features":[389]},{"name":"X509_CERT_PAIR","features":[389]},{"name":"X509_CERT_POLICIES","features":[389]},{"name":"X509_CERT_REQUEST_TO_BE_SIGNED","features":[389]},{"name":"X509_CERT_TO_BE_SIGNED","features":[389]},{"name":"X509_CHOICE_OF_TIME","features":[389]},{"name":"X509_CRL_DIST_POINTS","features":[389]},{"name":"X509_CRL_REASON_CODE","features":[389]},{"name":"X509_CROSS_CERT_DIST_POINTS","features":[389]},{"name":"X509_DH_PARAMETERS","features":[389]},{"name":"X509_DH_PUBLICKEY","features":[389]},{"name":"X509_DSS_PARAMETERS","features":[389]},{"name":"X509_DSS_PUBLICKEY","features":[389]},{"name":"X509_DSS_SIGNATURE","features":[389]},{"name":"X509_ECC_PARAMETERS","features":[389]},{"name":"X509_ECC_PRIVATE_KEY","features":[389]},{"name":"X509_ECC_SIGNATURE","features":[389]},{"name":"X509_ENHANCED_KEY_USAGE","features":[389]},{"name":"X509_ENUMERATED","features":[389]},{"name":"X509_EXTENSIONS","features":[389]},{"name":"X509_INTEGER","features":[389]},{"name":"X509_ISSUING_DIST_POINT","features":[389]},{"name":"X509_KEYGEN_REQUEST_TO_BE_SIGNED","features":[389]},{"name":"X509_KEY_ATTRIBUTES","features":[389]},{"name":"X509_KEY_USAGE","features":[389]},{"name":"X509_KEY_USAGE_RESTRICTION","features":[389]},{"name":"X509_LOGOTYPE_EXT","features":[389]},{"name":"X509_MULTI_BYTE_INTEGER","features":[389]},{"name":"X509_MULTI_BYTE_UINT","features":[389]},{"name":"X509_NAME","features":[389]},{"name":"X509_NAME_CONSTRAINTS","features":[389]},{"name":"X509_NAME_VALUE","features":[389]},{"name":"X509_NDR_ENCODING","features":[389]},{"name":"X509_OBJECT_IDENTIFIER","features":[389]},{"name":"X509_OCTET_STRING","features":[389]},{"name":"X509_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[389]},{"name":"X509_POLICY_CONSTRAINTS","features":[389]},{"name":"X509_POLICY_MAPPINGS","features":[389]},{"name":"X509_PUBLIC_KEY_INFO","features":[389]},{"name":"X509_QC_STATEMENTS_EXT","features":[389]},{"name":"X509_SEQUENCE_OF_ANY","features":[389]},{"name":"X509_SUBJECT_DIR_ATTRS","features":[389]},{"name":"X509_SUBJECT_INFO_ACCESS","features":[389]},{"name":"X509_UNICODE_ANY_STRING","features":[389]},{"name":"X509_UNICODE_NAME","features":[389]},{"name":"X509_UNICODE_NAME_VALUE","features":[389]},{"name":"X942_DH_PARAMETERS","features":[389]},{"name":"X942_OTHER_INFO","features":[389]},{"name":"ZERO_PADDING","features":[389]},{"name":"cPRIV_KEY_CACHE_MAX_ITEMS_DEFAULT","features":[389]},{"name":"cPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS_DEFAULT","features":[389]},{"name":"dwFORCE_KEY_PROTECTION_DISABLED","features":[389]},{"name":"dwFORCE_KEY_PROTECTION_HIGH","features":[389]},{"name":"dwFORCE_KEY_PROTECTION_USER_SELECT","features":[389]},{"name":"szBASE_CSP_DIR","features":[389]},{"name":"szCACHE_FILE","features":[389]},{"name":"szCARD_IDENTIFIER_FILE","features":[389]},{"name":"szCONTAINER_MAP_FILE","features":[389]},{"name":"szFORCE_KEY_PROTECTION","features":[389]},{"name":"szINTERMEDIATE_CERTS_DIR","features":[389]},{"name":"szKEY_CACHE_ENABLED","features":[389]},{"name":"szKEY_CACHE_SECONDS","features":[389]},{"name":"szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS","features":[389]},{"name":"szOIDVerisign_FailInfo","features":[389]},{"name":"szOIDVerisign_MessageType","features":[389]},{"name":"szOIDVerisign_PkiStatus","features":[389]},{"name":"szOIDVerisign_RecipientNonce","features":[389]},{"name":"szOIDVerisign_SenderNonce","features":[389]},{"name":"szOIDVerisign_TransactionID","features":[389]},{"name":"szOID_ANSI_X942","features":[389]},{"name":"szOID_ANSI_X942_DH","features":[389]},{"name":"szOID_ANY_APPLICATION_POLICY","features":[389]},{"name":"szOID_ANY_CERT_POLICY","features":[389]},{"name":"szOID_ANY_ENHANCED_KEY_USAGE","features":[389]},{"name":"szOID_APPLICATION_CERT_POLICIES","features":[389]},{"name":"szOID_APPLICATION_POLICY_CONSTRAINTS","features":[389]},{"name":"szOID_APPLICATION_POLICY_MAPPINGS","features":[389]},{"name":"szOID_ARCHIVED_KEY_ATTR","features":[389]},{"name":"szOID_ARCHIVED_KEY_CERT_HASH","features":[389]},{"name":"szOID_ATTEST_WHQL_CRYPTO","features":[389]},{"name":"szOID_ATTR_PLATFORM_SPECIFICATION","features":[389]},{"name":"szOID_ATTR_SUPPORTED_ALGORITHMS","features":[389]},{"name":"szOID_ATTR_TPM_SECURITY_ASSERTIONS","features":[389]},{"name":"szOID_ATTR_TPM_SPECIFICATION","features":[389]},{"name":"szOID_AUTHORITY_INFO_ACCESS","features":[389]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER","features":[389]},{"name":"szOID_AUTHORITY_KEY_IDENTIFIER2","features":[389]},{"name":"szOID_AUTHORITY_REVOCATION_LIST","features":[389]},{"name":"szOID_AUTO_ENROLL_CTL_USAGE","features":[389]},{"name":"szOID_BACKGROUND_OTHER_LOGOTYPE","features":[389]},{"name":"szOID_BASIC_CONSTRAINTS","features":[389]},{"name":"szOID_BASIC_CONSTRAINTS2","features":[389]},{"name":"szOID_BIOMETRIC_EXT","features":[389]},{"name":"szOID_BIOMETRIC_SIGNING","features":[389]},{"name":"szOID_BUSINESS_CATEGORY","features":[389]},{"name":"szOID_CA_CERTIFICATE","features":[389]},{"name":"szOID_CERTIFICATE_REVOCATION_LIST","features":[389]},{"name":"szOID_CERTIFICATE_TEMPLATE","features":[389]},{"name":"szOID_CERTSRV_CA_VERSION","features":[389]},{"name":"szOID_CERTSRV_CROSSCA_VERSION","features":[389]},{"name":"szOID_CERTSRV_PREVIOUS_CERT_HASH","features":[389]},{"name":"szOID_CERT_DISALLOWED_CA_FILETIME_PROP_ID","features":[389]},{"name":"szOID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[389]},{"name":"szOID_CERT_EXTENSIONS","features":[389]},{"name":"szOID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[389]},{"name":"szOID_CERT_KEY_IDENTIFIER_PROP_ID","features":[389]},{"name":"szOID_CERT_MANIFOLD","features":[389]},{"name":"szOID_CERT_MD5_HASH_PROP_ID","features":[389]},{"name":"szOID_CERT_POLICIES","features":[389]},{"name":"szOID_CERT_POLICIES_95","features":[389]},{"name":"szOID_CERT_POLICIES_95_QUALIFIER1","features":[389]},{"name":"szOID_CERT_PROP_ID_PREFIX","features":[389]},{"name":"szOID_CERT_SIGNATURE_HASH_PROP_ID","features":[389]},{"name":"szOID_CERT_STRONG_KEY_OS_1","features":[389]},{"name":"szOID_CERT_STRONG_KEY_OS_CURRENT","features":[389]},{"name":"szOID_CERT_STRONG_KEY_OS_PREFIX","features":[389]},{"name":"szOID_CERT_STRONG_SIGN_OS_1","features":[389]},{"name":"szOID_CERT_STRONG_SIGN_OS_CURRENT","features":[389]},{"name":"szOID_CERT_STRONG_SIGN_OS_PREFIX","features":[389]},{"name":"szOID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[389]},{"name":"szOID_CMC","features":[389]},{"name":"szOID_CMC_ADD_ATTRIBUTES","features":[389]},{"name":"szOID_CMC_ADD_EXTENSIONS","features":[389]},{"name":"szOID_CMC_DATA_RETURN","features":[389]},{"name":"szOID_CMC_DECRYPTED_POP","features":[389]},{"name":"szOID_CMC_ENCRYPTED_POP","features":[389]},{"name":"szOID_CMC_GET_CERT","features":[389]},{"name":"szOID_CMC_GET_CRL","features":[389]},{"name":"szOID_CMC_IDENTIFICATION","features":[389]},{"name":"szOID_CMC_IDENTITY_PROOF","features":[389]},{"name":"szOID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[389]},{"name":"szOID_CMC_ID_POP_LINK_RANDOM","features":[389]},{"name":"szOID_CMC_ID_POP_LINK_WITNESS","features":[389]},{"name":"szOID_CMC_LRA_POP_WITNESS","features":[389]},{"name":"szOID_CMC_QUERY_PENDING","features":[389]},{"name":"szOID_CMC_RECIPIENT_NONCE","features":[389]},{"name":"szOID_CMC_REG_INFO","features":[389]},{"name":"szOID_CMC_RESPONSE_INFO","features":[389]},{"name":"szOID_CMC_REVOKE_REQUEST","features":[389]},{"name":"szOID_CMC_SENDER_NONCE","features":[389]},{"name":"szOID_CMC_STATUS_INFO","features":[389]},{"name":"szOID_CMC_TRANSACTION_ID","features":[389]},{"name":"szOID_CN_ECDSA_SHA256","features":[389]},{"name":"szOID_COMMON_NAME","features":[389]},{"name":"szOID_COUNTRY_NAME","features":[389]},{"name":"szOID_CRL_DIST_POINTS","features":[389]},{"name":"szOID_CRL_NEXT_PUBLISH","features":[389]},{"name":"szOID_CRL_NUMBER","features":[389]},{"name":"szOID_CRL_REASON_CODE","features":[389]},{"name":"szOID_CRL_SELF_CDP","features":[389]},{"name":"szOID_CRL_VIRTUAL_BASE","features":[389]},{"name":"szOID_CROSS_CERTIFICATE_PAIR","features":[389]},{"name":"szOID_CROSS_CERT_DIST_POINTS","features":[389]},{"name":"szOID_CTL","features":[389]},{"name":"szOID_CT_CERT_SCTLIST","features":[389]},{"name":"szOID_CT_PKI_DATA","features":[389]},{"name":"szOID_CT_PKI_RESPONSE","features":[389]},{"name":"szOID_DELTA_CRL_INDICATOR","features":[389]},{"name":"szOID_DESCRIPTION","features":[389]},{"name":"szOID_DESTINATION_INDICATOR","features":[389]},{"name":"szOID_DEVICE_SERIAL_NUMBER","features":[389]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[389]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[389]},{"name":"szOID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[389]},{"name":"szOID_DISALLOWED_HASH","features":[389]},{"name":"szOID_DISALLOWED_LIST","features":[389]},{"name":"szOID_DN_QUALIFIER","features":[389]},{"name":"szOID_DOMAIN_COMPONENT","features":[389]},{"name":"szOID_DRM","features":[389]},{"name":"szOID_DRM_INDIVIDUALIZATION","features":[389]},{"name":"szOID_DS","features":[389]},{"name":"szOID_DSALG","features":[389]},{"name":"szOID_DSALG_CRPT","features":[389]},{"name":"szOID_DSALG_HASH","features":[389]},{"name":"szOID_DSALG_RSA","features":[389]},{"name":"szOID_DSALG_SIGN","features":[389]},{"name":"szOID_DS_EMAIL_REPLICATION","features":[389]},{"name":"szOID_DYNAMIC_CODE_GEN_SIGNER","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160R1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP160T1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192R1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP192T1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224R1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP224T1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256R1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP256T1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320R1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP320T1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384R1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP384T1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512R1","features":[389]},{"name":"szOID_ECC_CURVE_BRAINPOOLP512T1","features":[389]},{"name":"szOID_ECC_CURVE_EC192WAPI","features":[389]},{"name":"szOID_ECC_CURVE_NISTP192","features":[389]},{"name":"szOID_ECC_CURVE_NISTP224","features":[389]},{"name":"szOID_ECC_CURVE_NISTP256","features":[389]},{"name":"szOID_ECC_CURVE_NISTP384","features":[389]},{"name":"szOID_ECC_CURVE_NISTP521","features":[389]},{"name":"szOID_ECC_CURVE_P256","features":[389]},{"name":"szOID_ECC_CURVE_P384","features":[389]},{"name":"szOID_ECC_CURVE_P521","features":[389]},{"name":"szOID_ECC_CURVE_SECP160K1","features":[389]},{"name":"szOID_ECC_CURVE_SECP160R1","features":[389]},{"name":"szOID_ECC_CURVE_SECP160R2","features":[389]},{"name":"szOID_ECC_CURVE_SECP192K1","features":[389]},{"name":"szOID_ECC_CURVE_SECP192R1","features":[389]},{"name":"szOID_ECC_CURVE_SECP224K1","features":[389]},{"name":"szOID_ECC_CURVE_SECP224R1","features":[389]},{"name":"szOID_ECC_CURVE_SECP256K1","features":[389]},{"name":"szOID_ECC_CURVE_SECP256R1","features":[389]},{"name":"szOID_ECC_CURVE_SECP384R1","features":[389]},{"name":"szOID_ECC_CURVE_SECP521R1","features":[389]},{"name":"szOID_ECC_CURVE_WTLS12","features":[389]},{"name":"szOID_ECC_CURVE_WTLS7","features":[389]},{"name":"szOID_ECC_CURVE_WTLS9","features":[389]},{"name":"szOID_ECC_CURVE_X962P192V1","features":[389]},{"name":"szOID_ECC_CURVE_X962P192V2","features":[389]},{"name":"szOID_ECC_CURVE_X962P192V3","features":[389]},{"name":"szOID_ECC_CURVE_X962P239V1","features":[389]},{"name":"szOID_ECC_CURVE_X962P239V2","features":[389]},{"name":"szOID_ECC_CURVE_X962P239V3","features":[389]},{"name":"szOID_ECC_CURVE_X962P256V1","features":[389]},{"name":"szOID_ECC_PUBLIC_KEY","features":[389]},{"name":"szOID_ECDSA_SHA1","features":[389]},{"name":"szOID_ECDSA_SHA256","features":[389]},{"name":"szOID_ECDSA_SHA384","features":[389]},{"name":"szOID_ECDSA_SHA512","features":[389]},{"name":"szOID_ECDSA_SPECIFIED","features":[389]},{"name":"szOID_EFS_RECOVERY","features":[389]},{"name":"szOID_EMBEDDED_NT_CRYPTO","features":[389]},{"name":"szOID_ENCLAVE_SIGNING","features":[389]},{"name":"szOID_ENCRYPTED_KEY_HASH","features":[389]},{"name":"szOID_ENHANCED_KEY_USAGE","features":[389]},{"name":"szOID_ENROLLMENT_AGENT","features":[389]},{"name":"szOID_ENROLLMENT_CSP_PROVIDER","features":[389]},{"name":"szOID_ENROLLMENT_NAME_VALUE_PAIR","features":[389]},{"name":"szOID_ENROLL_AIK_INFO","features":[389]},{"name":"szOID_ENROLL_ATTESTATION_CHALLENGE","features":[389]},{"name":"szOID_ENROLL_ATTESTATION_STATEMENT","features":[389]},{"name":"szOID_ENROLL_CAXCHGCERT_HASH","features":[389]},{"name":"szOID_ENROLL_CERTTYPE_EXTENSION","features":[389]},{"name":"szOID_ENROLL_EKPUB_CHALLENGE","features":[389]},{"name":"szOID_ENROLL_EKVERIFYCERT","features":[389]},{"name":"szOID_ENROLL_EKVERIFYCREDS","features":[389]},{"name":"szOID_ENROLL_EKVERIFYKEY","features":[389]},{"name":"szOID_ENROLL_EK_CA_KEYID","features":[389]},{"name":"szOID_ENROLL_EK_INFO","features":[389]},{"name":"szOID_ENROLL_ENCRYPTION_ALGORITHM","features":[389]},{"name":"szOID_ENROLL_KEY_AFFINITY","features":[389]},{"name":"szOID_ENROLL_KSP_NAME","features":[389]},{"name":"szOID_ENROLL_SCEP_CHALLENGE_ANSWER","features":[389]},{"name":"szOID_ENROLL_SCEP_CLIENT_REQUEST","features":[389]},{"name":"szOID_ENROLL_SCEP_ERROR","features":[389]},{"name":"szOID_ENROLL_SCEP_SERVER_MESSAGE","features":[389]},{"name":"szOID_ENROLL_SCEP_SERVER_SECRET","features":[389]},{"name":"szOID_ENROLL_SCEP_SERVER_STATE","features":[389]},{"name":"szOID_ENROLL_SCEP_SIGNER_HASH","features":[389]},{"name":"szOID_ENTERPRISE_OID_ROOT","features":[389]},{"name":"szOID_EV_RDN_COUNTRY","features":[389]},{"name":"szOID_EV_RDN_LOCALE","features":[389]},{"name":"szOID_EV_RDN_STATE_OR_PROVINCE","features":[389]},{"name":"szOID_EV_WHQL_CRYPTO","features":[389]},{"name":"szOID_FACSIMILE_TELEPHONE_NUMBER","features":[389]},{"name":"szOID_FRESHEST_CRL","features":[389]},{"name":"szOID_GIVEN_NAME","features":[389]},{"name":"szOID_HPKP_DOMAIN_NAME_CTL","features":[389]},{"name":"szOID_HPKP_HEADER_VALUE_CTL","features":[389]},{"name":"szOID_INFOSEC","features":[389]},{"name":"szOID_INFOSEC_SuiteAConfidentiality","features":[389]},{"name":"szOID_INFOSEC_SuiteAIntegrity","features":[389]},{"name":"szOID_INFOSEC_SuiteAKMandSig","features":[389]},{"name":"szOID_INFOSEC_SuiteAKeyManagement","features":[389]},{"name":"szOID_INFOSEC_SuiteASignature","features":[389]},{"name":"szOID_INFOSEC_SuiteATokenProtection","features":[389]},{"name":"szOID_INFOSEC_mosaicConfidentiality","features":[389]},{"name":"szOID_INFOSEC_mosaicIntegrity","features":[389]},{"name":"szOID_INFOSEC_mosaicKMandSig","features":[389]},{"name":"szOID_INFOSEC_mosaicKMandUpdSig","features":[389]},{"name":"szOID_INFOSEC_mosaicKeyManagement","features":[389]},{"name":"szOID_INFOSEC_mosaicSignature","features":[389]},{"name":"szOID_INFOSEC_mosaicTokenProtection","features":[389]},{"name":"szOID_INFOSEC_mosaicUpdatedInteg","features":[389]},{"name":"szOID_INFOSEC_mosaicUpdatedSig","features":[389]},{"name":"szOID_INFOSEC_sdnsConfidentiality","features":[389]},{"name":"szOID_INFOSEC_sdnsIntegrity","features":[389]},{"name":"szOID_INFOSEC_sdnsKMandSig","features":[389]},{"name":"szOID_INFOSEC_sdnsKeyManagement","features":[389]},{"name":"szOID_INFOSEC_sdnsSignature","features":[389]},{"name":"szOID_INFOSEC_sdnsTokenProtection","features":[389]},{"name":"szOID_INHIBIT_ANY_POLICY","features":[389]},{"name":"szOID_INITIALS","features":[389]},{"name":"szOID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[389]},{"name":"szOID_INTERNATIONAL_ISDN_NUMBER","features":[389]},{"name":"szOID_IPSEC_KP_IKE_INTERMEDIATE","features":[389]},{"name":"szOID_ISSUED_CERT_HASH","features":[389]},{"name":"szOID_ISSUER_ALT_NAME","features":[389]},{"name":"szOID_ISSUER_ALT_NAME2","features":[389]},{"name":"szOID_ISSUING_DIST_POINT","features":[389]},{"name":"szOID_IUM_SIGNING","features":[389]},{"name":"szOID_KEYID_RDN","features":[389]},{"name":"szOID_KEY_ATTRIBUTES","features":[389]},{"name":"szOID_KEY_USAGE","features":[389]},{"name":"szOID_KEY_USAGE_RESTRICTION","features":[389]},{"name":"szOID_KP_CA_EXCHANGE","features":[389]},{"name":"szOID_KP_CSP_SIGNATURE","features":[389]},{"name":"szOID_KP_CTL_USAGE_SIGNING","features":[389]},{"name":"szOID_KP_DOCUMENT_SIGNING","features":[389]},{"name":"szOID_KP_EFS","features":[389]},{"name":"szOID_KP_FLIGHT_SIGNING","features":[389]},{"name":"szOID_KP_KERNEL_MODE_CODE_SIGNING","features":[389]},{"name":"szOID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[389]},{"name":"szOID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[389]},{"name":"szOID_KP_KEY_RECOVERY","features":[389]},{"name":"szOID_KP_KEY_RECOVERY_AGENT","features":[389]},{"name":"szOID_KP_LIFETIME_SIGNING","features":[389]},{"name":"szOID_KP_MOBILE_DEVICE_SOFTWARE","features":[389]},{"name":"szOID_KP_PRIVACY_CA","features":[389]},{"name":"szOID_KP_QUALIFIED_SUBORDINATION","features":[389]},{"name":"szOID_KP_SMARTCARD_LOGON","features":[389]},{"name":"szOID_KP_SMART_DISPLAY","features":[389]},{"name":"szOID_KP_TIME_STAMP_SIGNING","features":[389]},{"name":"szOID_KP_TPM_AIK_CERTIFICATE","features":[389]},{"name":"szOID_KP_TPM_EK_CERTIFICATE","features":[389]},{"name":"szOID_KP_TPM_PLATFORM_CERTIFICATE","features":[389]},{"name":"szOID_LEGACY_POLICY_MAPPINGS","features":[389]},{"name":"szOID_LICENSES","features":[389]},{"name":"szOID_LICENSE_SERVER","features":[389]},{"name":"szOID_LOCALITY_NAME","features":[389]},{"name":"szOID_LOCAL_MACHINE_KEYSET","features":[389]},{"name":"szOID_LOGOTYPE_EXT","features":[389]},{"name":"szOID_LOYALTY_OTHER_LOGOTYPE","features":[389]},{"name":"szOID_MEMBER","features":[389]},{"name":"szOID_MICROSOFT_PUBLISHER_SIGNER","features":[389]},{"name":"szOID_NAME_CONSTRAINTS","features":[389]},{"name":"szOID_NETSCAPE","features":[389]},{"name":"szOID_NETSCAPE_BASE_URL","features":[389]},{"name":"szOID_NETSCAPE_CA_POLICY_URL","features":[389]},{"name":"szOID_NETSCAPE_CA_REVOCATION_URL","features":[389]},{"name":"szOID_NETSCAPE_CERT_EXTENSION","features":[389]},{"name":"szOID_NETSCAPE_CERT_RENEWAL_URL","features":[389]},{"name":"szOID_NETSCAPE_CERT_SEQUENCE","features":[389]},{"name":"szOID_NETSCAPE_CERT_TYPE","features":[389]},{"name":"szOID_NETSCAPE_COMMENT","features":[389]},{"name":"szOID_NETSCAPE_DATA_TYPE","features":[389]},{"name":"szOID_NETSCAPE_REVOCATION_URL","features":[389]},{"name":"szOID_NETSCAPE_SSL_SERVER_NAME","features":[389]},{"name":"szOID_NEXT_UPDATE_LOCATION","features":[389]},{"name":"szOID_NIST_AES128_CBC","features":[389]},{"name":"szOID_NIST_AES128_WRAP","features":[389]},{"name":"szOID_NIST_AES192_CBC","features":[389]},{"name":"szOID_NIST_AES192_WRAP","features":[389]},{"name":"szOID_NIST_AES256_CBC","features":[389]},{"name":"szOID_NIST_AES256_WRAP","features":[389]},{"name":"szOID_NIST_sha256","features":[389]},{"name":"szOID_NIST_sha384","features":[389]},{"name":"szOID_NIST_sha512","features":[389]},{"name":"szOID_NT5_CRYPTO","features":[389]},{"name":"szOID_NTDS_CA_SECURITY_EXT","features":[389]},{"name":"szOID_NTDS_OBJECTSID","features":[389]},{"name":"szOID_NTDS_REPLICATION","features":[389]},{"name":"szOID_NT_PRINCIPAL_NAME","features":[389]},{"name":"szOID_OEM_WHQL_CRYPTO","features":[389]},{"name":"szOID_OIW","features":[389]},{"name":"szOID_OIWDIR","features":[389]},{"name":"szOID_OIWDIR_CRPT","features":[389]},{"name":"szOID_OIWDIR_HASH","features":[389]},{"name":"szOID_OIWDIR_SIGN","features":[389]},{"name":"szOID_OIWDIR_md2","features":[389]},{"name":"szOID_OIWDIR_md2RSA","features":[389]},{"name":"szOID_OIWSEC","features":[389]},{"name":"szOID_OIWSEC_desCBC","features":[389]},{"name":"szOID_OIWSEC_desCFB","features":[389]},{"name":"szOID_OIWSEC_desECB","features":[389]},{"name":"szOID_OIWSEC_desEDE","features":[389]},{"name":"szOID_OIWSEC_desMAC","features":[389]},{"name":"szOID_OIWSEC_desOFB","features":[389]},{"name":"szOID_OIWSEC_dhCommMod","features":[389]},{"name":"szOID_OIWSEC_dsa","features":[389]},{"name":"szOID_OIWSEC_dsaComm","features":[389]},{"name":"szOID_OIWSEC_dsaCommSHA","features":[389]},{"name":"szOID_OIWSEC_dsaCommSHA1","features":[389]},{"name":"szOID_OIWSEC_dsaSHA1","features":[389]},{"name":"szOID_OIWSEC_keyHashSeal","features":[389]},{"name":"szOID_OIWSEC_md2RSASign","features":[389]},{"name":"szOID_OIWSEC_md4RSA","features":[389]},{"name":"szOID_OIWSEC_md4RSA2","features":[389]},{"name":"szOID_OIWSEC_md5RSA","features":[389]},{"name":"szOID_OIWSEC_md5RSASign","features":[389]},{"name":"szOID_OIWSEC_mdc2","features":[389]},{"name":"szOID_OIWSEC_mdc2RSA","features":[389]},{"name":"szOID_OIWSEC_rsaSign","features":[389]},{"name":"szOID_OIWSEC_rsaXchg","features":[389]},{"name":"szOID_OIWSEC_sha","features":[389]},{"name":"szOID_OIWSEC_sha1","features":[389]},{"name":"szOID_OIWSEC_sha1RSASign","features":[389]},{"name":"szOID_OIWSEC_shaDSA","features":[389]},{"name":"szOID_OIWSEC_shaRSA","features":[389]},{"name":"szOID_ORGANIZATIONAL_UNIT_NAME","features":[389]},{"name":"szOID_ORGANIZATION_NAME","features":[389]},{"name":"szOID_OS_VERSION","features":[389]},{"name":"szOID_OWNER","features":[389]},{"name":"szOID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[389]},{"name":"szOID_PIN_RULES_CTL","features":[389]},{"name":"szOID_PIN_RULES_DOMAIN_NAME","features":[389]},{"name":"szOID_PIN_RULES_EXT","features":[389]},{"name":"szOID_PIN_RULES_LOG_END_DATE_EXT","features":[389]},{"name":"szOID_PIN_RULES_SIGNER","features":[389]},{"name":"szOID_PKCS","features":[389]},{"name":"szOID_PKCS_1","features":[389]},{"name":"szOID_PKCS_10","features":[389]},{"name":"szOID_PKCS_12","features":[389]},{"name":"szOID_PKCS_12_EXTENDED_ATTRIBUTES","features":[389]},{"name":"szOID_PKCS_12_FRIENDLY_NAME_ATTR","features":[389]},{"name":"szOID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[389]},{"name":"szOID_PKCS_12_LOCAL_KEY_ID","features":[389]},{"name":"szOID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[389]},{"name":"szOID_PKCS_12_PbeIds","features":[389]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC2","features":[389]},{"name":"szOID_PKCS_12_pbeWithSHA1And128BitRC4","features":[389]},{"name":"szOID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[389]},{"name":"szOID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[389]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC2","features":[389]},{"name":"szOID_PKCS_12_pbeWithSHA1And40BitRC4","features":[389]},{"name":"szOID_PKCS_2","features":[389]},{"name":"szOID_PKCS_3","features":[389]},{"name":"szOID_PKCS_4","features":[389]},{"name":"szOID_PKCS_5","features":[389]},{"name":"szOID_PKCS_5_PBES2","features":[389]},{"name":"szOID_PKCS_5_PBKDF2","features":[389]},{"name":"szOID_PKCS_6","features":[389]},{"name":"szOID_PKCS_7","features":[389]},{"name":"szOID_PKCS_7_DATA","features":[389]},{"name":"szOID_PKCS_7_DIGESTED","features":[389]},{"name":"szOID_PKCS_7_ENCRYPTED","features":[389]},{"name":"szOID_PKCS_7_ENVELOPED","features":[389]},{"name":"szOID_PKCS_7_SIGNED","features":[389]},{"name":"szOID_PKCS_7_SIGNEDANDENVELOPED","features":[389]},{"name":"szOID_PKCS_8","features":[389]},{"name":"szOID_PKCS_9","features":[389]},{"name":"szOID_PKCS_9_CONTENT_TYPE","features":[389]},{"name":"szOID_PKCS_9_MESSAGE_DIGEST","features":[389]},{"name":"szOID_PKINIT_KP_KDC","features":[389]},{"name":"szOID_PKIX","features":[389]},{"name":"szOID_PKIX_ACC_DESCR","features":[389]},{"name":"szOID_PKIX_CA_ISSUERS","features":[389]},{"name":"szOID_PKIX_CA_REPOSITORY","features":[389]},{"name":"szOID_PKIX_KP","features":[389]},{"name":"szOID_PKIX_KP_CLIENT_AUTH","features":[389]},{"name":"szOID_PKIX_KP_CODE_SIGNING","features":[389]},{"name":"szOID_PKIX_KP_EMAIL_PROTECTION","features":[389]},{"name":"szOID_PKIX_KP_IPSEC_END_SYSTEM","features":[389]},{"name":"szOID_PKIX_KP_IPSEC_TUNNEL","features":[389]},{"name":"szOID_PKIX_KP_IPSEC_USER","features":[389]},{"name":"szOID_PKIX_KP_OCSP_SIGNING","features":[389]},{"name":"szOID_PKIX_KP_SERVER_AUTH","features":[389]},{"name":"szOID_PKIX_KP_TIMESTAMP_SIGNING","features":[389]},{"name":"szOID_PKIX_NO_SIGNATURE","features":[389]},{"name":"szOID_PKIX_OCSP","features":[389]},{"name":"szOID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[389]},{"name":"szOID_PKIX_OCSP_NOCHECK","features":[389]},{"name":"szOID_PKIX_OCSP_NONCE","features":[389]},{"name":"szOID_PKIX_PE","features":[389]},{"name":"szOID_PKIX_POLICY_QUALIFIER_CPS","features":[389]},{"name":"szOID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[389]},{"name":"szOID_PKIX_TIME_STAMPING","features":[389]},{"name":"szOID_PLATFORM_MANIFEST_BINARY_ID","features":[389]},{"name":"szOID_POLICY_CONSTRAINTS","features":[389]},{"name":"szOID_POLICY_MAPPINGS","features":[389]},{"name":"szOID_POSTAL_ADDRESS","features":[389]},{"name":"szOID_POSTAL_CODE","features":[389]},{"name":"szOID_POST_OFFICE_BOX","features":[389]},{"name":"szOID_PREFERRED_DELIVERY_METHOD","features":[389]},{"name":"szOID_PRESENTATION_ADDRESS","features":[389]},{"name":"szOID_PRIVATEKEY_USAGE_PERIOD","features":[389]},{"name":"szOID_PRODUCT_UPDATE","features":[389]},{"name":"szOID_PROTECTED_PROCESS_LIGHT_SIGNER","features":[389]},{"name":"szOID_PROTECTED_PROCESS_SIGNER","features":[389]},{"name":"szOID_QC_EU_COMPLIANCE","features":[389]},{"name":"szOID_QC_SSCD","features":[389]},{"name":"szOID_QC_STATEMENTS_EXT","features":[389]},{"name":"szOID_RDN_DUMMY_SIGNER","features":[389]},{"name":"szOID_RDN_TCG_PLATFORM_MANUFACTURER","features":[389]},{"name":"szOID_RDN_TCG_PLATFORM_MODEL","features":[389]},{"name":"szOID_RDN_TCG_PLATFORM_VERSION","features":[389]},{"name":"szOID_RDN_TPM_MANUFACTURER","features":[389]},{"name":"szOID_RDN_TPM_MODEL","features":[389]},{"name":"szOID_RDN_TPM_VERSION","features":[389]},{"name":"szOID_REASON_CODE_HOLD","features":[389]},{"name":"szOID_REGISTERED_ADDRESS","features":[389]},{"name":"szOID_REMOVE_CERTIFICATE","features":[389]},{"name":"szOID_RENEWAL_CERTIFICATE","features":[389]},{"name":"szOID_REQUEST_CLIENT_INFO","features":[389]},{"name":"szOID_REQUIRE_CERT_CHAIN_POLICY","features":[389]},{"name":"szOID_REVOKED_LIST_SIGNER","features":[389]},{"name":"szOID_RFC3161_counterSign","features":[389]},{"name":"szOID_RFC3161v21_counterSign","features":[389]},{"name":"szOID_RFC3161v21_thumbprints","features":[389]},{"name":"szOID_ROLE_OCCUPANT","features":[389]},{"name":"szOID_ROOT_LIST_SIGNER","features":[389]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[389]},{"name":"szOID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[389]},{"name":"szOID_ROOT_PROGRAM_FLAGS","features":[389]},{"name":"szOID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[389]},{"name":"szOID_RSA","features":[389]},{"name":"szOID_RSAES_OAEP","features":[389]},{"name":"szOID_RSA_DES_EDE3_CBC","features":[389]},{"name":"szOID_RSA_DH","features":[389]},{"name":"szOID_RSA_ENCRYPT","features":[389]},{"name":"szOID_RSA_HASH","features":[389]},{"name":"szOID_RSA_MD2","features":[389]},{"name":"szOID_RSA_MD2RSA","features":[389]},{"name":"szOID_RSA_MD4","features":[389]},{"name":"szOID_RSA_MD4RSA","features":[389]},{"name":"szOID_RSA_MD5","features":[389]},{"name":"szOID_RSA_MD5RSA","features":[389]},{"name":"szOID_RSA_MGF1","features":[389]},{"name":"szOID_RSA_PSPECIFIED","features":[389]},{"name":"szOID_RSA_RC2CBC","features":[389]},{"name":"szOID_RSA_RC4","features":[389]},{"name":"szOID_RSA_RC5_CBCPad","features":[389]},{"name":"szOID_RSA_RSA","features":[389]},{"name":"szOID_RSA_SETOAEP_RSA","features":[389]},{"name":"szOID_RSA_SHA1RSA","features":[389]},{"name":"szOID_RSA_SHA256RSA","features":[389]},{"name":"szOID_RSA_SHA384RSA","features":[389]},{"name":"szOID_RSA_SHA512RSA","features":[389]},{"name":"szOID_RSA_SMIMECapabilities","features":[389]},{"name":"szOID_RSA_SMIMEalg","features":[389]},{"name":"szOID_RSA_SMIMEalgCMS3DESwrap","features":[389]},{"name":"szOID_RSA_SMIMEalgCMSRC2wrap","features":[389]},{"name":"szOID_RSA_SMIMEalgESDH","features":[389]},{"name":"szOID_RSA_SSA_PSS","features":[389]},{"name":"szOID_RSA_certExtensions","features":[389]},{"name":"szOID_RSA_challengePwd","features":[389]},{"name":"szOID_RSA_contentType","features":[389]},{"name":"szOID_RSA_counterSign","features":[389]},{"name":"szOID_RSA_data","features":[389]},{"name":"szOID_RSA_digestedData","features":[389]},{"name":"szOID_RSA_emailAddr","features":[389]},{"name":"szOID_RSA_encryptedData","features":[389]},{"name":"szOID_RSA_envelopedData","features":[389]},{"name":"szOID_RSA_extCertAttrs","features":[389]},{"name":"szOID_RSA_hashedData","features":[389]},{"name":"szOID_RSA_messageDigest","features":[389]},{"name":"szOID_RSA_preferSignedData","features":[389]},{"name":"szOID_RSA_signEnvData","features":[389]},{"name":"szOID_RSA_signedData","features":[389]},{"name":"szOID_RSA_signingTime","features":[389]},{"name":"szOID_RSA_unstructAddr","features":[389]},{"name":"szOID_RSA_unstructName","features":[389]},{"name":"szOID_SEARCH_GUIDE","features":[389]},{"name":"szOID_SEE_ALSO","features":[389]},{"name":"szOID_SERIALIZED","features":[389]},{"name":"szOID_SERVER_GATED_CRYPTO","features":[389]},{"name":"szOID_SGC_NETSCAPE","features":[389]},{"name":"szOID_SITE_PIN_RULES_FLAGS_ATTR","features":[389]},{"name":"szOID_SITE_PIN_RULES_INDEX_ATTR","features":[389]},{"name":"szOID_SORTED_CTL","features":[389]},{"name":"szOID_STATE_OR_PROVINCE_NAME","features":[389]},{"name":"szOID_STREET_ADDRESS","features":[389]},{"name":"szOID_SUBJECT_ALT_NAME","features":[389]},{"name":"szOID_SUBJECT_ALT_NAME2","features":[389]},{"name":"szOID_SUBJECT_DIR_ATTRS","features":[389]},{"name":"szOID_SUBJECT_INFO_ACCESS","features":[389]},{"name":"szOID_SUBJECT_KEY_IDENTIFIER","features":[389]},{"name":"szOID_SUPPORTED_APPLICATION_CONTEXT","features":[389]},{"name":"szOID_SUR_NAME","features":[389]},{"name":"szOID_SYNC_ROOT_CTL_EXT","features":[389]},{"name":"szOID_TELEPHONE_NUMBER","features":[389]},{"name":"szOID_TELETEXT_TERMINAL_IDENTIFIER","features":[389]},{"name":"szOID_TELEX_NUMBER","features":[389]},{"name":"szOID_TIMESTAMP_TOKEN","features":[389]},{"name":"szOID_TITLE","features":[389]},{"name":"szOID_TLS_FEATURES_EXT","features":[389]},{"name":"szOID_USER_CERTIFICATE","features":[389]},{"name":"szOID_USER_PASSWORD","features":[389]},{"name":"szOID_VERISIGN_BITSTRING_6_13","features":[389]},{"name":"szOID_VERISIGN_ISS_STRONG_CRYPTO","features":[389]},{"name":"szOID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[389]},{"name":"szOID_VERISIGN_PRIVATE_6_9","features":[389]},{"name":"szOID_WHQL_CRYPTO","features":[389]},{"name":"szOID_WINDOWS_KITS_SIGNER","features":[389]},{"name":"szOID_WINDOWS_RT_SIGNER","features":[389]},{"name":"szOID_WINDOWS_SOFTWARE_EXTENSION_SIGNER","features":[389]},{"name":"szOID_WINDOWS_STORE_SIGNER","features":[389]},{"name":"szOID_WINDOWS_TCB_SIGNER","features":[389]},{"name":"szOID_WINDOWS_THIRD_PARTY_COMPONENT_SIGNER","features":[389]},{"name":"szOID_X21_ADDRESS","features":[389]},{"name":"szOID_X957","features":[389]},{"name":"szOID_X957_DSA","features":[389]},{"name":"szOID_X957_SHA1DSA","features":[389]},{"name":"szOID_YESNO_TRUST_ATTR","features":[389]},{"name":"szPRIV_KEY_CACHE_MAX_ITEMS","features":[389]},{"name":"szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS","features":[389]},{"name":"szROOT_STORE_FILE","features":[389]},{"name":"szUSER_KEYEXCHANGE_CERT_PREFIX","features":[389]},{"name":"szUSER_KEYEXCHANGE_PRIVATE_KEY_PREFIX","features":[389]},{"name":"szUSER_KEYEXCHANGE_PUBLIC_KEY_PREFIX","features":[389]},{"name":"szUSER_SIGNATURE_CERT_PREFIX","features":[389]},{"name":"szUSER_SIGNATURE_PRIVATE_KEY_PREFIX","features":[389]},{"name":"szUSER_SIGNATURE_PUBLIC_KEY_PREFIX","features":[389]},{"name":"sz_CERT_STORE_PROV_COLLECTION","features":[389]},{"name":"sz_CERT_STORE_PROV_FILENAME","features":[389]},{"name":"sz_CERT_STORE_PROV_FILENAME_W","features":[389]},{"name":"sz_CERT_STORE_PROV_LDAP","features":[389]},{"name":"sz_CERT_STORE_PROV_LDAP_W","features":[389]},{"name":"sz_CERT_STORE_PROV_MEMORY","features":[389]},{"name":"sz_CERT_STORE_PROV_PHYSICAL","features":[389]},{"name":"sz_CERT_STORE_PROV_PHYSICAL_W","features":[389]},{"name":"sz_CERT_STORE_PROV_PKCS12","features":[389]},{"name":"sz_CERT_STORE_PROV_PKCS7","features":[389]},{"name":"sz_CERT_STORE_PROV_SERIALIZED","features":[389]},{"name":"sz_CERT_STORE_PROV_SMART_CARD","features":[389]},{"name":"sz_CERT_STORE_PROV_SMART_CARD_W","features":[389]},{"name":"sz_CERT_STORE_PROV_SYSTEM","features":[389]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY","features":[389]},{"name":"sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W","features":[389]},{"name":"sz_CERT_STORE_PROV_SYSTEM_W","features":[389]},{"name":"wszCARD_USER_ADMIN","features":[389]},{"name":"wszCARD_USER_EVERYONE","features":[389]},{"name":"wszCARD_USER_USER","features":[389]},{"name":"wszURI_CANONICALIZATION_C14N","features":[389]},{"name":"wszURI_CANONICALIZATION_C14NC","features":[389]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14N","features":[389]},{"name":"wszURI_CANONICALIZATION_EXSLUSIVE_C14NC","features":[389]},{"name":"wszURI_NTDS_OBJECTSID_PREFIX","features":[389]},{"name":"wszURI_TRANSFORM_XPATH","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_BASE64","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_DSA_SHA1","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA1","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA256","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA384","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_ECDSA_SHA512","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA1","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA256","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA384","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_HMAC_SHA512","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA1","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA256","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA384","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_RSA_SHA512","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_SHA1","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_SHA256","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_SHA384","features":[389]},{"name":"wszURI_XMLNS_DIGSIG_SHA512","features":[389]},{"name":"wszURI_XMLNS_TRANSFORM_BASE64","features":[389]},{"name":"wszURI_XMLNS_TRANSFORM_ENVELOPED","features":[389]},{"name":"wszXMLNS_DIGSIG","features":[389]},{"name":"wszXMLNS_DIGSIG_Id","features":[389]},{"name":"wszXMLNS_DIGSIG_SignatureProperties","features":[389]}],"490":[{"name":"CATALOG_INFO","features":[485]},{"name":"CRYPTCATATTRIBUTE","features":[485]},{"name":"CRYPTCATCDF","features":[305,485]},{"name":"CRYPTCATMEMBER","features":[305,485,486]},{"name":"CRYPTCATSTORE","features":[305,485]},{"name":"CRYPTCAT_ADDCATALOG_HARDLINK","features":[485]},{"name":"CRYPTCAT_ADDCATALOG_NONE","features":[485]},{"name":"CRYPTCAT_ATTR_AUTHENTICATED","features":[485]},{"name":"CRYPTCAT_ATTR_DATAASCII","features":[485]},{"name":"CRYPTCAT_ATTR_DATABASE64","features":[485]},{"name":"CRYPTCAT_ATTR_DATAREPLACE","features":[485]},{"name":"CRYPTCAT_ATTR_NAMEASCII","features":[485]},{"name":"CRYPTCAT_ATTR_NAMEOBJID","features":[485]},{"name":"CRYPTCAT_ATTR_NO_AUTO_COMPAT_ENTRY","features":[485]},{"name":"CRYPTCAT_ATTR_UNAUTHENTICATED","features":[485]},{"name":"CRYPTCAT_E_AREA_ATTRIBUTE","features":[485]},{"name":"CRYPTCAT_E_AREA_HEADER","features":[485]},{"name":"CRYPTCAT_E_AREA_MEMBER","features":[485]},{"name":"CRYPTCAT_E_CDF_ATTR_TOOFEWVALUES","features":[485]},{"name":"CRYPTCAT_E_CDF_ATTR_TYPECOMBO","features":[485]},{"name":"CRYPTCAT_E_CDF_BAD_GUID_CONV","features":[485]},{"name":"CRYPTCAT_E_CDF_DUPLICATE","features":[485]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILENOTFOUND","features":[485]},{"name":"CRYPTCAT_E_CDF_MEMBER_FILE_PATH","features":[485]},{"name":"CRYPTCAT_E_CDF_MEMBER_INDIRECTDATA","features":[485]},{"name":"CRYPTCAT_E_CDF_TAGNOTFOUND","features":[485]},{"name":"CRYPTCAT_E_CDF_UNSUPPORTED","features":[485]},{"name":"CRYPTCAT_FILEEXT","features":[485]},{"name":"CRYPTCAT_MAX_MEMBERTAG","features":[485]},{"name":"CRYPTCAT_MEMBER_SORTED","features":[485]},{"name":"CRYPTCAT_OPEN_ALWAYS","features":[485]},{"name":"CRYPTCAT_OPEN_CREATENEW","features":[485]},{"name":"CRYPTCAT_OPEN_EXCLUDE_PAGE_HASHES","features":[485]},{"name":"CRYPTCAT_OPEN_EXISTING","features":[485]},{"name":"CRYPTCAT_OPEN_FLAGS","features":[485]},{"name":"CRYPTCAT_OPEN_FLAGS_MASK","features":[485]},{"name":"CRYPTCAT_OPEN_INCLUDE_PAGE_HASHES","features":[485]},{"name":"CRYPTCAT_OPEN_NO_CONTENT_HCRYPTMSG","features":[485]},{"name":"CRYPTCAT_OPEN_SORTED","features":[485]},{"name":"CRYPTCAT_OPEN_VERIFYSIGHASH","features":[485]},{"name":"CRYPTCAT_VERSION","features":[485]},{"name":"CRYPTCAT_VERSION_1","features":[485]},{"name":"CRYPTCAT_VERSION_2","features":[485]},{"name":"CryptCATAdminAcquireContext","features":[305,485]},{"name":"CryptCATAdminAcquireContext2","features":[305,485]},{"name":"CryptCATAdminAddCatalog","features":[485]},{"name":"CryptCATAdminCalcHashFromFileHandle","features":[305,485]},{"name":"CryptCATAdminCalcHashFromFileHandle2","features":[305,485]},{"name":"CryptCATAdminEnumCatalogFromHash","features":[485]},{"name":"CryptCATAdminPauseServiceForBackup","features":[305,485]},{"name":"CryptCATAdminReleaseCatalogContext","features":[305,485]},{"name":"CryptCATAdminReleaseContext","features":[305,485]},{"name":"CryptCATAdminRemoveCatalog","features":[305,485]},{"name":"CryptCATAdminResolveCatalogPath","features":[305,485]},{"name":"CryptCATAllocSortedMemberInfo","features":[305,485,486]},{"name":"CryptCATCDFClose","features":[305,485]},{"name":"CryptCATCDFEnumAttributes","features":[305,485,486]},{"name":"CryptCATCDFEnumCatAttributes","features":[305,485]},{"name":"CryptCATCDFEnumMembers","features":[305,485,486]},{"name":"CryptCATCDFOpen","features":[305,485]},{"name":"CryptCATCatalogInfoFromContext","features":[305,485]},{"name":"CryptCATClose","features":[305,485]},{"name":"CryptCATEnumerateAttr","features":[305,485,486]},{"name":"CryptCATEnumerateCatAttr","features":[305,485]},{"name":"CryptCATEnumerateMember","features":[305,485,486]},{"name":"CryptCATFreeSortedMemberInfo","features":[305,485,486]},{"name":"CryptCATGetAttrInfo","features":[305,485,486]},{"name":"CryptCATGetCatAttrInfo","features":[305,485]},{"name":"CryptCATGetMemberInfo","features":[305,485,486]},{"name":"CryptCATHandleFromStore","features":[305,485]},{"name":"CryptCATOpen","features":[305,485]},{"name":"CryptCATPersistStore","features":[305,485]},{"name":"CryptCATPutAttrInfo","features":[305,485,486]},{"name":"CryptCATPutCatAttrInfo","features":[305,485]},{"name":"CryptCATPutMemberInfo","features":[305,485,486]},{"name":"CryptCATStoreFromHandle","features":[305,485]},{"name":"IsCatalogFile","features":[305,485]},{"name":"MS_ADDINFO_CATALOGMEMBER","features":[305,485,486]},{"name":"PFN_CDF_PARSE_ERROR_CALLBACK","features":[485]},{"name":"szOID_CATALOG_LIST","features":[485]},{"name":"szOID_CATALOG_LIST_MEMBER","features":[485]},{"name":"szOID_CATALOG_LIST_MEMBER2","features":[485]}],"491":[{"name":"ADDED_CERT_TYPE","features":[487]},{"name":"AlgorithmFlags","features":[487]},{"name":"AlgorithmFlagsNone","features":[487]},{"name":"AlgorithmFlagsWrap","features":[487]},{"name":"AlgorithmOperationFlags","features":[487]},{"name":"AlgorithmType","features":[487]},{"name":"AllowNoOutstandingRequest","features":[487]},{"name":"AllowNone","features":[487]},{"name":"AllowUntrustedCertificate","features":[487]},{"name":"AllowUntrustedRoot","features":[487]},{"name":"AllowedKeySignature","features":[487]},{"name":"AllowedNullSignature","features":[487]},{"name":"AlternativeNameType","features":[487]},{"name":"CAIF_DSENTRY","features":[487]},{"name":"CAIF_LOCAL","features":[487]},{"name":"CAIF_REGISTRY","features":[487]},{"name":"CAIF_REGISTRYPARENT","features":[487]},{"name":"CAIF_SHAREDFOLDERENTRY","features":[487]},{"name":"CAINFO","features":[487]},{"name":"CAPATHLENGTH_INFINITE","features":[487]},{"name":"CAPropCertificate","features":[487]},{"name":"CAPropCertificateTypes","features":[487]},{"name":"CAPropCommonName","features":[487]},{"name":"CAPropDNSName","features":[487]},{"name":"CAPropDescription","features":[487]},{"name":"CAPropDistinguishedName","features":[487]},{"name":"CAPropRenewalOnly","features":[487]},{"name":"CAPropSanitizedName","features":[487]},{"name":"CAPropSanitizedShortName","features":[487]},{"name":"CAPropSecurity","features":[487]},{"name":"CAPropSiteName","features":[487]},{"name":"CAPropWebServers","features":[487]},{"name":"CA_ACCESS_ADMIN","features":[487]},{"name":"CA_ACCESS_AUDITOR","features":[487]},{"name":"CA_ACCESS_ENROLL","features":[487]},{"name":"CA_ACCESS_MASKROLES","features":[487]},{"name":"CA_ACCESS_OFFICER","features":[487]},{"name":"CA_ACCESS_OPERATOR","features":[487]},{"name":"CA_ACCESS_READ","features":[487]},{"name":"CA_CRL_BASE","features":[487]},{"name":"CA_CRL_DELTA","features":[487]},{"name":"CA_CRL_REPUBLISH","features":[487]},{"name":"CA_DISP_ERROR","features":[487]},{"name":"CA_DISP_INCOMPLETE","features":[487]},{"name":"CA_DISP_INVALID","features":[487]},{"name":"CA_DISP_REVOKED","features":[487]},{"name":"CA_DISP_UNDER_SUBMISSION","features":[487]},{"name":"CA_DISP_VALID","features":[487]},{"name":"CAlternativeName","features":[487]},{"name":"CAlternativeNames","features":[487]},{"name":"CBinaryConverter","features":[487]},{"name":"CCLOCKSKEWMINUTESDEFAULT","features":[487]},{"name":"CC_DEFAULTCONFIG","features":[487]},{"name":"CC_FIRSTCONFIG","features":[487]},{"name":"CC_LOCALACTIVECONFIG","features":[487]},{"name":"CC_LOCALCONFIG","features":[487]},{"name":"CC_UIPICKCONFIG","features":[487]},{"name":"CC_UIPICKCONFIGSKIPLOCALCA","features":[487]},{"name":"CCertAdmin","features":[487]},{"name":"CCertConfig","features":[487]},{"name":"CCertEncodeAltName","features":[487]},{"name":"CCertEncodeBitString","features":[487]},{"name":"CCertEncodeCRLDistInfo","features":[487]},{"name":"CCertEncodeDateArray","features":[487]},{"name":"CCertEncodeLongArray","features":[487]},{"name":"CCertEncodeStringArray","features":[487]},{"name":"CCertGetConfig","features":[487]},{"name":"CCertProperties","features":[487]},{"name":"CCertProperty","features":[487]},{"name":"CCertPropertyArchived","features":[487]},{"name":"CCertPropertyArchivedKeyHash","features":[487]},{"name":"CCertPropertyAutoEnroll","features":[487]},{"name":"CCertPropertyBackedUp","features":[487]},{"name":"CCertPropertyDescription","features":[487]},{"name":"CCertPropertyEnrollment","features":[487]},{"name":"CCertPropertyEnrollmentPolicyServer","features":[487]},{"name":"CCertPropertyFriendlyName","features":[487]},{"name":"CCertPropertyKeyProvInfo","features":[487]},{"name":"CCertPropertyRenewal","features":[487]},{"name":"CCertPropertyRequestOriginator","features":[487]},{"name":"CCertPropertySHA1Hash","features":[487]},{"name":"CCertRequest","features":[487]},{"name":"CCertServerExit","features":[487]},{"name":"CCertServerPolicy","features":[487]},{"name":"CCertView","features":[487]},{"name":"CCertificateAttestationChallenge","features":[487]},{"name":"CCertificatePolicies","features":[487]},{"name":"CCertificatePolicy","features":[487]},{"name":"CCryptAttribute","features":[487]},{"name":"CCryptAttributes","features":[487]},{"name":"CCspInformation","features":[487]},{"name":"CCspInformations","features":[487]},{"name":"CCspStatus","features":[487]},{"name":"CDR_EXPIRED","features":[487]},{"name":"CDR_REQUEST_LAST_CHANGED","features":[487]},{"name":"CERTADMIN_GET_ROLES_FLAGS","features":[487]},{"name":"CERTENROLL_INDEX_BASE","features":[487]},{"name":"CERTENROLL_OBJECTID","features":[487]},{"name":"CERTENROLL_PROPERTYID","features":[487]},{"name":"CERTTRANSBLOB","features":[487]},{"name":"CERTVIEWRESTRICTION","features":[487]},{"name":"CERT_ALT_NAME","features":[487]},{"name":"CERT_ALT_NAME_DIRECTORY_NAME","features":[487]},{"name":"CERT_ALT_NAME_DNS_NAME","features":[487]},{"name":"CERT_ALT_NAME_IP_ADDRESS","features":[487]},{"name":"CERT_ALT_NAME_OTHER_NAME","features":[487]},{"name":"CERT_ALT_NAME_REGISTERED_ID","features":[487]},{"name":"CERT_ALT_NAME_RFC822_NAME","features":[487]},{"name":"CERT_ALT_NAME_URL","features":[487]},{"name":"CERT_CREATE_REQUEST_FLAGS","features":[487]},{"name":"CERT_DELETE_ROW_FLAGS","features":[487]},{"name":"CERT_EXIT_EVENT_MASK","features":[487]},{"name":"CERT_GET_CONFIG_FLAGS","features":[487]},{"name":"CERT_IMPORT_FLAGS","features":[487]},{"name":"CERT_PROPERTY_TYPE","features":[487]},{"name":"CERT_REQUEST_OUT_TYPE","features":[487]},{"name":"CERT_VIEW_COLUMN_INDEX","features":[487]},{"name":"CERT_VIEW_SEEK_OPERATOR_FLAGS","features":[487]},{"name":"CEnroll","features":[487]},{"name":"CEnroll2","features":[487]},{"name":"CMM_READONLY","features":[487]},{"name":"CMM_REFRESHONLY","features":[487]},{"name":"CObjectId","features":[487]},{"name":"CObjectIds","features":[487]},{"name":"CPF_BADURL_ERROR","features":[487]},{"name":"CPF_BASE","features":[487]},{"name":"CPF_CASTORE_ERROR","features":[487]},{"name":"CPF_COMPLETE","features":[487]},{"name":"CPF_DELTA","features":[487]},{"name":"CPF_FILE_ERROR","features":[487]},{"name":"CPF_FTP_ERROR","features":[487]},{"name":"CPF_HTTP_ERROR","features":[487]},{"name":"CPF_LDAP_ERROR","features":[487]},{"name":"CPF_MANUAL","features":[487]},{"name":"CPF_POSTPONED_BASE_FILE_ERROR","features":[487]},{"name":"CPF_POSTPONED_BASE_LDAP_ERROR","features":[487]},{"name":"CPF_SHADOW","features":[487]},{"name":"CPF_SIGNATURE_ERROR","features":[487]},{"name":"CPolicyQualifier","features":[487]},{"name":"CPolicyQualifiers","features":[487]},{"name":"CRLF_ALLOW_REQUEST_ATTRIBUTE_SUBJECT","features":[487]},{"name":"CRLF_BUILD_ROOTCA_CRLENTRIES_BASEDONKEY","features":[487]},{"name":"CRLF_CRLNUMBER_CRITICAL","features":[487]},{"name":"CRLF_DELETE_EXPIRED_CRLS","features":[487]},{"name":"CRLF_DELTA_USE_OLDEST_UNEXPIRED_BASE","features":[487]},{"name":"CRLF_DISABLE_CHAIN_VERIFICATION","features":[487]},{"name":"CRLF_DISABLE_RDN_REORDER","features":[487]},{"name":"CRLF_DISABLE_ROOT_CROSS_CERTS","features":[487]},{"name":"CRLF_ENFORCE_ENROLLMENT_AGENT","features":[487]},{"name":"CRLF_IGNORE_CROSS_CERT_TRUST_ERROR","features":[487]},{"name":"CRLF_IGNORE_INVALID_POLICIES","features":[487]},{"name":"CRLF_IGNORE_UNKNOWN_CMC_ATTRIBUTES","features":[487]},{"name":"CRLF_LOG_FULL_RESPONSE","features":[487]},{"name":"CRLF_PRESERVE_EXPIRED_CA_CERTS","features":[487]},{"name":"CRLF_PRESERVE_REVOKED_CA_CERTS","features":[487]},{"name":"CRLF_PUBLISH_EXPIRED_CERT_CRLS","features":[487]},{"name":"CRLF_REBUILD_MODIFIED_SUBJECT_ONLY","features":[487]},{"name":"CRLF_REVCHECK_IGNORE_NOREVCHECK","features":[487]},{"name":"CRLF_REVCHECK_IGNORE_OFFLINE","features":[487]},{"name":"CRLF_SAVE_FAILED_CERTS","features":[487]},{"name":"CRLF_USE_CROSS_CERT_TEMPLATE","features":[487]},{"name":"CRLF_USE_XCHG_CERT_TEMPLATE","features":[487]},{"name":"CRLRevocationReason","features":[487]},{"name":"CRYPT_ENUM_ALL_PROVIDERS","features":[487]},{"name":"CR_DISP","features":[487]},{"name":"CR_DISP_DENIED","features":[487]},{"name":"CR_DISP_ERROR","features":[487]},{"name":"CR_DISP_INCOMPLETE","features":[487]},{"name":"CR_DISP_ISSUED","features":[487]},{"name":"CR_DISP_ISSUED_OUT_OF_BAND","features":[487]},{"name":"CR_DISP_REVOKED","features":[487]},{"name":"CR_DISP_UNDER_SUBMISSION","features":[487]},{"name":"CR_FLG_CACROSSCERT","features":[487]},{"name":"CR_FLG_CAXCHGCERT","features":[487]},{"name":"CR_FLG_CHALLENGEPENDING","features":[487]},{"name":"CR_FLG_CHALLENGESATISFIED","features":[487]},{"name":"CR_FLG_DEFINEDCACERT","features":[487]},{"name":"CR_FLG_ENFORCEUTF8","features":[487]},{"name":"CR_FLG_ENROLLONBEHALFOF","features":[487]},{"name":"CR_FLG_FORCETELETEX","features":[487]},{"name":"CR_FLG_FORCEUTF8","features":[487]},{"name":"CR_FLG_PUBLISHERROR","features":[487]},{"name":"CR_FLG_RENEWAL","features":[487]},{"name":"CR_FLG_SUBJECTUNMODIFIED","features":[487]},{"name":"CR_FLG_TRUSTEKCERT","features":[487]},{"name":"CR_FLG_TRUSTEKKEY","features":[487]},{"name":"CR_FLG_TRUSTONUSE","features":[487]},{"name":"CR_FLG_VALIDENCRYPTEDKEYHASH","features":[487]},{"name":"CR_GEMT_DEFAULT","features":[487]},{"name":"CR_GEMT_HRESULT_STRING","features":[487]},{"name":"CR_GEMT_HTTP_ERROR","features":[487]},{"name":"CR_IN_BASE64","features":[487]},{"name":"CR_IN_BASE64HEADER","features":[487]},{"name":"CR_IN_BINARY","features":[487]},{"name":"CR_IN_CERTIFICATETRANSPARENCY","features":[487]},{"name":"CR_IN_CHALLENGERESPONSE","features":[487]},{"name":"CR_IN_CLIENTIDNONE","features":[487]},{"name":"CR_IN_CMC","features":[487]},{"name":"CR_IN_CONNECTONLY","features":[487]},{"name":"CR_IN_CRLS","features":[487]},{"name":"CR_IN_ENCODEANY","features":[487]},{"name":"CR_IN_ENCODEMASK","features":[487]},{"name":"CR_IN_FORMATANY","features":[487]},{"name":"CR_IN_FORMATMASK","features":[487]},{"name":"CR_IN_FULLRESPONSE","features":[487]},{"name":"CR_IN_HTTP","features":[487]},{"name":"CR_IN_KEYGEN","features":[487]},{"name":"CR_IN_MACHINE","features":[487]},{"name":"CR_IN_PKCS10","features":[487]},{"name":"CR_IN_PKCS7","features":[487]},{"name":"CR_IN_RETURNCHALLENGE","features":[487]},{"name":"CR_IN_ROBO","features":[487]},{"name":"CR_IN_RPC","features":[487]},{"name":"CR_IN_SCEP","features":[487]},{"name":"CR_IN_SCEPPOST","features":[487]},{"name":"CR_IN_SIGNEDCERTIFICATETIMESTAMPLIST","features":[487]},{"name":"CR_OUT_BASE64","features":[487]},{"name":"CR_OUT_BASE64HEADER","features":[487]},{"name":"CR_OUT_BASE64REQUESTHEADER","features":[487]},{"name":"CR_OUT_BASE64X509CRLHEADER","features":[487]},{"name":"CR_OUT_BINARY","features":[487]},{"name":"CR_OUT_CHAIN","features":[487]},{"name":"CR_OUT_CRLS","features":[487]},{"name":"CR_OUT_ENCODEMASK","features":[487]},{"name":"CR_OUT_HEX","features":[487]},{"name":"CR_OUT_HEXADDR","features":[487]},{"name":"CR_OUT_HEXASCII","features":[487]},{"name":"CR_OUT_HEXASCIIADDR","features":[487]},{"name":"CR_OUT_HEXRAW","features":[487]},{"name":"CR_OUT_NOCR","features":[487]},{"name":"CR_OUT_NOCRLF","features":[487]},{"name":"CR_PROP_ADVANCEDSERVER","features":[487]},{"name":"CR_PROP_BASECRL","features":[487]},{"name":"CR_PROP_BASECRLPUBLISHSTATUS","features":[487]},{"name":"CR_PROP_CABACKWARDCROSSCERT","features":[487]},{"name":"CR_PROP_CABACKWARDCROSSCERTSTATE","features":[487]},{"name":"CR_PROP_CACERTSTATE","features":[487]},{"name":"CR_PROP_CACERTSTATUSCODE","features":[487]},{"name":"CR_PROP_CACERTVERSION","features":[487]},{"name":"CR_PROP_CAFORWARDCROSSCERT","features":[487]},{"name":"CR_PROP_CAFORWARDCROSSCERTSTATE","features":[487]},{"name":"CR_PROP_CANAME","features":[487]},{"name":"CR_PROP_CAPROPIDMAX","features":[487]},{"name":"CR_PROP_CASIGCERT","features":[487]},{"name":"CR_PROP_CASIGCERTCHAIN","features":[487]},{"name":"CR_PROP_CASIGCERTCOUNT","features":[487]},{"name":"CR_PROP_CASIGCERTCRLCHAIN","features":[487]},{"name":"CR_PROP_CATYPE","features":[487]},{"name":"CR_PROP_CAXCHGCERT","features":[487]},{"name":"CR_PROP_CAXCHGCERTCHAIN","features":[487]},{"name":"CR_PROP_CAXCHGCERTCOUNT","features":[487]},{"name":"CR_PROP_CAXCHGCERTCRLCHAIN","features":[487]},{"name":"CR_PROP_CERTAIAOCSPURLS","features":[487]},{"name":"CR_PROP_CERTAIAURLS","features":[487]},{"name":"CR_PROP_CERTCDPURLS","features":[487]},{"name":"CR_PROP_CRLSTATE","features":[487]},{"name":"CR_PROP_DELTACRL","features":[487]},{"name":"CR_PROP_DELTACRLPUBLISHSTATUS","features":[487]},{"name":"CR_PROP_DNSNAME","features":[487]},{"name":"CR_PROP_EXITCOUNT","features":[487]},{"name":"CR_PROP_EXITDESCRIPTION","features":[487]},{"name":"CR_PROP_FILEVERSION","features":[487]},{"name":"CR_PROP_KRACERT","features":[487]},{"name":"CR_PROP_KRACERTCOUNT","features":[487]},{"name":"CR_PROP_KRACERTSTATE","features":[487]},{"name":"CR_PROP_KRACERTUSEDCOUNT","features":[487]},{"name":"CR_PROP_LOCALENAME","features":[487]},{"name":"CR_PROP_NONE","features":[487]},{"name":"CR_PROP_PARENTCA","features":[487]},{"name":"CR_PROP_POLICYDESCRIPTION","features":[487]},{"name":"CR_PROP_PRODUCTVERSION","features":[487]},{"name":"CR_PROP_ROLESEPARATIONENABLED","features":[487]},{"name":"CR_PROP_SANITIZEDCANAME","features":[487]},{"name":"CR_PROP_SANITIZEDCASHORTNAME","features":[487]},{"name":"CR_PROP_SCEPMAX","features":[487]},{"name":"CR_PROP_SCEPMIN","features":[487]},{"name":"CR_PROP_SCEPSERVERCAPABILITIES","features":[487]},{"name":"CR_PROP_SCEPSERVERCERTS","features":[487]},{"name":"CR_PROP_SCEPSERVERCERTSCHAIN","features":[487]},{"name":"CR_PROP_SHAREDFOLDER","features":[487]},{"name":"CR_PROP_SUBJECTTEMPLATE_OIDS","features":[487]},{"name":"CR_PROP_TEMPLATES","features":[487]},{"name":"CSBACKUP_DISABLE_INCREMENTAL","features":[487]},{"name":"CSBACKUP_TYPE","features":[487]},{"name":"CSBACKUP_TYPE_FULL","features":[487]},{"name":"CSBACKUP_TYPE_LOGS_ONLY","features":[487]},{"name":"CSBACKUP_TYPE_MASK","features":[487]},{"name":"CSBFT_DATABASE_DIRECTORY","features":[487]},{"name":"CSBFT_DIRECTORY","features":[487]},{"name":"CSBFT_LOG_DIRECTORY","features":[487]},{"name":"CSCONTROL_RESTART","features":[487]},{"name":"CSCONTROL_SHUTDOWN","features":[487]},{"name":"CSCONTROL_SUSPEND","features":[487]},{"name":"CSEDB_RSTMAPW","features":[487]},{"name":"CSRESTORE_TYPE_CATCHUP","features":[487]},{"name":"CSRESTORE_TYPE_FULL","features":[487]},{"name":"CSRESTORE_TYPE_MASK","features":[487]},{"name":"CSRESTORE_TYPE_ONLINE","features":[487]},{"name":"CSURL_ADDTOCERTCDP","features":[487]},{"name":"CSURL_ADDTOCERTOCSP","features":[487]},{"name":"CSURL_ADDTOCRLCDP","features":[487]},{"name":"CSURL_ADDTOFRESHESTCRL","features":[487]},{"name":"CSURL_ADDTOIDP","features":[487]},{"name":"CSURL_PUBLISHRETRY","features":[487]},{"name":"CSURL_SERVERPUBLISH","features":[487]},{"name":"CSURL_SERVERPUBLISHDELTA","features":[487]},{"name":"CSVER_MAJOR","features":[487]},{"name":"CSVER_MAJOR_LONGHORN","features":[487]},{"name":"CSVER_MAJOR_THRESHOLD","features":[487]},{"name":"CSVER_MAJOR_WHISTLER","features":[487]},{"name":"CSVER_MAJOR_WIN2K","features":[487]},{"name":"CSVER_MAJOR_WIN7","features":[487]},{"name":"CSVER_MAJOR_WIN8","features":[487]},{"name":"CSVER_MAJOR_WINBLUE","features":[487]},{"name":"CSVER_MINOR","features":[487]},{"name":"CSVER_MINOR_LONGHORN_BETA1","features":[487]},{"name":"CSVER_MINOR_THRESHOLD","features":[487]},{"name":"CSVER_MINOR_WHISTLER_BETA2","features":[487]},{"name":"CSVER_MINOR_WHISTLER_BETA3","features":[487]},{"name":"CSVER_MINOR_WIN2K","features":[487]},{"name":"CSVER_MINOR_WIN7","features":[487]},{"name":"CSVER_MINOR_WIN8","features":[487]},{"name":"CSVER_MINOR_WINBLUE","features":[487]},{"name":"CSignerCertificate","features":[487]},{"name":"CSmimeCapabilities","features":[487]},{"name":"CSmimeCapability","features":[487]},{"name":"CVIEWAGEMINUTESDEFAULT","features":[487]},{"name":"CVRC_COLUMN","features":[487]},{"name":"CVRC_COLUMN_MASK","features":[487]},{"name":"CVRC_COLUMN_RESULT","features":[487]},{"name":"CVRC_COLUMN_SCHEMA","features":[487]},{"name":"CVRC_COLUMN_VALUE","features":[487]},{"name":"CVRC_TABLE","features":[487]},{"name":"CVRC_TABLE_ATTRIBUTES","features":[487]},{"name":"CVRC_TABLE_CRL","features":[487]},{"name":"CVRC_TABLE_EXTENSIONS","features":[487]},{"name":"CVRC_TABLE_MASK","features":[487]},{"name":"CVRC_TABLE_REQCERT","features":[487]},{"name":"CVRC_TABLE_SHIFT","features":[487]},{"name":"CVR_SEEK_EQ","features":[487]},{"name":"CVR_SEEK_GE","features":[487]},{"name":"CVR_SEEK_GT","features":[487]},{"name":"CVR_SEEK_LE","features":[487]},{"name":"CVR_SEEK_LT","features":[487]},{"name":"CVR_SEEK_MASK","features":[487]},{"name":"CVR_SEEK_NODELTA","features":[487]},{"name":"CVR_SEEK_NONE","features":[487]},{"name":"CVR_SORT_ASCEND","features":[487]},{"name":"CVR_SORT_DESCEND","features":[487]},{"name":"CVR_SORT_NONE","features":[487]},{"name":"CV_COLUMN_ATTRIBUTE_DEFAULT","features":[487]},{"name":"CV_COLUMN_CRL_DEFAULT","features":[487]},{"name":"CV_COLUMN_EXTENSION_DEFAULT","features":[487]},{"name":"CV_COLUMN_LOG_DEFAULT","features":[487]},{"name":"CV_COLUMN_LOG_FAILED_DEFAULT","features":[487]},{"name":"CV_COLUMN_LOG_REVOKED_DEFAULT","features":[487]},{"name":"CV_COLUMN_QUEUE_DEFAULT","features":[487]},{"name":"CV_OUT_BASE64","features":[487]},{"name":"CV_OUT_BASE64HEADER","features":[487]},{"name":"CV_OUT_BASE64REQUESTHEADER","features":[487]},{"name":"CV_OUT_BASE64X509CRLHEADER","features":[487]},{"name":"CV_OUT_BINARY","features":[487]},{"name":"CV_OUT_ENCODEMASK","features":[487]},{"name":"CV_OUT_HEX","features":[487]},{"name":"CV_OUT_HEXADDR","features":[487]},{"name":"CV_OUT_HEXASCII","features":[487]},{"name":"CV_OUT_HEXASCIIADDR","features":[487]},{"name":"CV_OUT_HEXRAW","features":[487]},{"name":"CV_OUT_NOCR","features":[487]},{"name":"CV_OUT_NOCRLF","features":[487]},{"name":"CX500DistinguishedName","features":[487]},{"name":"CX509Attribute","features":[487]},{"name":"CX509AttributeArchiveKey","features":[487]},{"name":"CX509AttributeArchiveKeyHash","features":[487]},{"name":"CX509AttributeClientId","features":[487]},{"name":"CX509AttributeCspProvider","features":[487]},{"name":"CX509AttributeExtensions","features":[487]},{"name":"CX509AttributeOSVersion","features":[487]},{"name":"CX509AttributeRenewalCertificate","features":[487]},{"name":"CX509Attributes","features":[487]},{"name":"CX509CertificateRequestCertificate","features":[487]},{"name":"CX509CertificateRequestCmc","features":[487]},{"name":"CX509CertificateRequestPkcs10","features":[487]},{"name":"CX509CertificateRequestPkcs7","features":[487]},{"name":"CX509CertificateRevocationList","features":[487]},{"name":"CX509CertificateRevocationListEntries","features":[487]},{"name":"CX509CertificateRevocationListEntry","features":[487]},{"name":"CX509CertificateTemplateADWritable","features":[487]},{"name":"CX509EndorsementKey","features":[487]},{"name":"CX509Enrollment","features":[487]},{"name":"CX509EnrollmentHelper","features":[487]},{"name":"CX509EnrollmentPolicyActiveDirectory","features":[487]},{"name":"CX509EnrollmentPolicyWebService","features":[487]},{"name":"CX509EnrollmentWebClassFactory","features":[487]},{"name":"CX509Extension","features":[487]},{"name":"CX509ExtensionAlternativeNames","features":[487]},{"name":"CX509ExtensionAuthorityKeyIdentifier","features":[487]},{"name":"CX509ExtensionBasicConstraints","features":[487]},{"name":"CX509ExtensionCertificatePolicies","features":[487]},{"name":"CX509ExtensionEnhancedKeyUsage","features":[487]},{"name":"CX509ExtensionKeyUsage","features":[487]},{"name":"CX509ExtensionMSApplicationPolicies","features":[487]},{"name":"CX509ExtensionSmimeCapabilities","features":[487]},{"name":"CX509ExtensionSubjectKeyIdentifier","features":[487]},{"name":"CX509ExtensionTemplate","features":[487]},{"name":"CX509ExtensionTemplateName","features":[487]},{"name":"CX509Extensions","features":[487]},{"name":"CX509MachineEnrollmentFactory","features":[487]},{"name":"CX509NameValuePair","features":[487]},{"name":"CX509PolicyServerListManager","features":[487]},{"name":"CX509PolicyServerUrl","features":[487]},{"name":"CX509PrivateKey","features":[487]},{"name":"CX509PublicKey","features":[487]},{"name":"CX509SCEPEnrollment","features":[487]},{"name":"CX509SCEPEnrollmentHelper","features":[487]},{"name":"CertSrvBackupClose","features":[487]},{"name":"CertSrvBackupEnd","features":[487]},{"name":"CertSrvBackupFree","features":[487]},{"name":"CertSrvBackupGetBackupLogsW","features":[487]},{"name":"CertSrvBackupGetDatabaseNamesW","features":[487]},{"name":"CertSrvBackupGetDynamicFileListW","features":[487]},{"name":"CertSrvBackupOpenFileW","features":[487]},{"name":"CertSrvBackupPrepareW","features":[487]},{"name":"CertSrvBackupRead","features":[487]},{"name":"CertSrvBackupTruncateLogs","features":[487]},{"name":"CertSrvIsServerOnlineW","features":[305,487]},{"name":"CertSrvRestoreEnd","features":[487]},{"name":"CertSrvRestoreGetDatabaseLocationsW","features":[487]},{"name":"CertSrvRestorePrepareW","features":[487]},{"name":"CertSrvRestoreRegisterComplete","features":[487]},{"name":"CertSrvRestoreRegisterThroughFile","features":[487]},{"name":"CertSrvRestoreRegisterW","features":[487]},{"name":"CertSrvServerControlW","features":[487]},{"name":"ClientIdAutoEnroll","features":[487]},{"name":"ClientIdAutoEnroll2003","features":[487]},{"name":"ClientIdCertReq","features":[487]},{"name":"ClientIdCertReq2003","features":[487]},{"name":"ClientIdDefaultRequest","features":[487]},{"name":"ClientIdEOBO","features":[487]},{"name":"ClientIdNone","features":[487]},{"name":"ClientIdRequestWizard","features":[487]},{"name":"ClientIdTest","features":[487]},{"name":"ClientIdUserStart","features":[487]},{"name":"ClientIdWinRT","features":[487]},{"name":"ClientIdWizard2003","features":[487]},{"name":"ClientIdXEnroll2003","features":[487]},{"name":"CommitFlagDeleteTemplate","features":[487]},{"name":"CommitFlagSaveTemplateGenerateOID","features":[487]},{"name":"CommitFlagSaveTemplateOverwrite","features":[487]},{"name":"CommitFlagSaveTemplateUseCurrentOID","features":[487]},{"name":"CommitTemplateFlags","features":[487]},{"name":"ContextAdministratorForceMachine","features":[487]},{"name":"ContextMachine","features":[487]},{"name":"ContextNone","features":[487]},{"name":"ContextUser","features":[487]},{"name":"DBFLAGS_CHECKPOINTDEPTH60MB","features":[487]},{"name":"DBFLAGS_CIRCULARLOGGING","features":[487]},{"name":"DBFLAGS_CREATEIFNEEDED","features":[487]},{"name":"DBFLAGS_DISABLESNAPSHOTBACKUP","features":[487]},{"name":"DBFLAGS_ENABLEVOLATILEREQUESTS","features":[487]},{"name":"DBFLAGS_LAZYFLUSH","features":[487]},{"name":"DBFLAGS_LOGBUFFERSHUGE","features":[487]},{"name":"DBFLAGS_LOGBUFFERSLARGE","features":[487]},{"name":"DBFLAGS_LOGFILESIZE16MB","features":[487]},{"name":"DBFLAGS_MAXCACHESIZEX100","features":[487]},{"name":"DBFLAGS_MULTITHREADTRANSACTIONS","features":[487]},{"name":"DBFLAGS_READONLY","features":[487]},{"name":"DBG_CERTSRV","features":[487]},{"name":"DBSESSIONCOUNTDEFAULT","features":[487]},{"name":"DB_DISP_ACTIVE","features":[487]},{"name":"DB_DISP_CA_CERT","features":[487]},{"name":"DB_DISP_CA_CERT_CHAIN","features":[487]},{"name":"DB_DISP_DENIED","features":[487]},{"name":"DB_DISP_ERROR","features":[487]},{"name":"DB_DISP_FOREIGN","features":[487]},{"name":"DB_DISP_ISSUED","features":[487]},{"name":"DB_DISP_KRA_CERT","features":[487]},{"name":"DB_DISP_LOG_FAILED_MIN","features":[487]},{"name":"DB_DISP_LOG_MIN","features":[487]},{"name":"DB_DISP_PENDING","features":[487]},{"name":"DB_DISP_QUEUE_MAX","features":[487]},{"name":"DB_DISP_REVOKED","features":[487]},{"name":"DefaultNone","features":[487]},{"name":"DefaultPolicyServer","features":[487]},{"name":"DelayRetryAction","features":[487]},{"name":"DelayRetryLong","features":[487]},{"name":"DelayRetryNone","features":[487]},{"name":"DelayRetryPastSuccess","features":[487]},{"name":"DelayRetryShort","features":[487]},{"name":"DelayRetrySuccess","features":[487]},{"name":"DelayRetryUnknown","features":[487]},{"name":"DisableGroupPolicyList","features":[487]},{"name":"DisableUserServerList","features":[487]},{"name":"DisplayNo","features":[487]},{"name":"DisplayYes","features":[487]},{"name":"EANR_SUPPRESS_IA5CONVERSION","features":[487]},{"name":"EAN_NAMEOBJECTID","features":[487]},{"name":"EDITF_ADDOLDCERTTYPE","features":[487]},{"name":"EDITF_ADDOLDKEYUSAGE","features":[487]},{"name":"EDITF_ATTRIBUTECA","features":[487]},{"name":"EDITF_ATTRIBUTEEKU","features":[487]},{"name":"EDITF_ATTRIBUTEENDDATE","features":[487]},{"name":"EDITF_ATTRIBUTESUBJECTALTNAME2","features":[487]},{"name":"EDITF_AUDITCERTTEMPLATELOAD","features":[487]},{"name":"EDITF_BASICCONSTRAINTSCA","features":[487]},{"name":"EDITF_BASICCONSTRAINTSCRITICAL","features":[487]},{"name":"EDITF_DISABLEEXTENSIONLIST","features":[487]},{"name":"EDITF_DISABLELDAPPACKAGELIST","features":[487]},{"name":"EDITF_DISABLEOLDOSCNUPN","features":[487]},{"name":"EDITF_EMAILOPTIONAL","features":[487]},{"name":"EDITF_ENABLEAKICRITICAL","features":[487]},{"name":"EDITF_ENABLEAKIISSUERNAME","features":[487]},{"name":"EDITF_ENABLEAKIISSUERSERIAL","features":[487]},{"name":"EDITF_ENABLEAKIKEYID","features":[487]},{"name":"EDITF_ENABLECHASECLIENTDC","features":[487]},{"name":"EDITF_ENABLEDEFAULTSMIME","features":[487]},{"name":"EDITF_ENABLEKEYENCIPHERMENTCACERT","features":[487]},{"name":"EDITF_ENABLELDAPREFERRALS","features":[487]},{"name":"EDITF_ENABLEOCSPREVNOCHECK","features":[487]},{"name":"EDITF_ENABLERENEWONBEHALFOF","features":[487]},{"name":"EDITF_ENABLEREQUESTEXTENSIONS","features":[487]},{"name":"EDITF_ENABLEUPNMAP","features":[487]},{"name":"EDITF_IGNOREREQUESTERGROUP","features":[487]},{"name":"EDITF_REQUESTEXTENSIONLIST","features":[487]},{"name":"EDITF_SERVERUPGRADED","features":[487]},{"name":"ENUMEXT_OBJECTID","features":[487]},{"name":"ENUM_CATYPES","features":[487]},{"name":"ENUM_CERT_COLUMN_VALUE_FLAGS","features":[487]},{"name":"ENUM_ENTERPRISE_ROOTCA","features":[487]},{"name":"ENUM_ENTERPRISE_SUBCA","features":[487]},{"name":"ENUM_STANDALONE_ROOTCA","features":[487]},{"name":"ENUM_STANDALONE_SUBCA","features":[487]},{"name":"ENUM_UNKNOWN_CA","features":[487]},{"name":"EXITEVENT_CERTDENIED","features":[487]},{"name":"EXITEVENT_CERTIMPORTED","features":[487]},{"name":"EXITEVENT_CERTISSUED","features":[487]},{"name":"EXITEVENT_CERTPENDING","features":[487]},{"name":"EXITEVENT_CERTRETRIEVEPENDING","features":[487]},{"name":"EXITEVENT_CERTREVOKED","features":[487]},{"name":"EXITEVENT_CRLISSUED","features":[487]},{"name":"EXITEVENT_INVALID","features":[487]},{"name":"EXITEVENT_SHUTDOWN","features":[487]},{"name":"EXITEVENT_STARTUP","features":[487]},{"name":"EXITPUB_ACTIVEDIRECTORY","features":[487]},{"name":"EXITPUB_DEFAULT_ENTERPRISE","features":[487]},{"name":"EXITPUB_DEFAULT_STANDALONE","features":[487]},{"name":"EXITPUB_FILE","features":[487]},{"name":"EXITPUB_REMOVEOLDCERTS","features":[487]},{"name":"EXTENSION_CRITICAL_FLAG","features":[487]},{"name":"EXTENSION_DELETE_FLAG","features":[487]},{"name":"EXTENSION_DISABLE_FLAG","features":[487]},{"name":"EXTENSION_ORIGIN_ADMIN","features":[487]},{"name":"EXTENSION_ORIGIN_CACERT","features":[487]},{"name":"EXTENSION_ORIGIN_CMC","features":[487]},{"name":"EXTENSION_ORIGIN_IMPORTEDCERT","features":[487]},{"name":"EXTENSION_ORIGIN_MASK","features":[487]},{"name":"EXTENSION_ORIGIN_PKCS7","features":[487]},{"name":"EXTENSION_ORIGIN_POLICY","features":[487]},{"name":"EXTENSION_ORIGIN_RENEWALCERT","features":[487]},{"name":"EXTENSION_ORIGIN_REQUEST","features":[487]},{"name":"EXTENSION_ORIGIN_SERVER","features":[487]},{"name":"EXTENSION_POLICY_MASK","features":[487]},{"name":"EncodingType","features":[487]},{"name":"EnrollDenied","features":[487]},{"name":"EnrollError","features":[487]},{"name":"EnrollPended","features":[487]},{"name":"EnrollPrompt","features":[487]},{"name":"EnrollSkipped","features":[487]},{"name":"EnrollUIDeferredEnrollmentRequired","features":[487]},{"name":"EnrollUnknown","features":[487]},{"name":"Enrolled","features":[487]},{"name":"EnrollmentAddOCSPNoCheck","features":[487]},{"name":"EnrollmentAddTemplateName","features":[487]},{"name":"EnrollmentAllowEnrollOnBehalfOf","features":[487]},{"name":"EnrollmentAutoEnrollment","features":[487]},{"name":"EnrollmentAutoEnrollmentCheckUserDSCertificate","features":[487]},{"name":"EnrollmentCAProperty","features":[487]},{"name":"EnrollmentCertificateIssuancePoliciesFromRequest","features":[487]},{"name":"EnrollmentDisplayStatus","features":[487]},{"name":"EnrollmentDomainAuthenticationNotRequired","features":[487]},{"name":"EnrollmentEnrollStatus","features":[487]},{"name":"EnrollmentIncludeBasicConstraintsForEECerts","features":[487]},{"name":"EnrollmentIncludeSymmetricAlgorithms","features":[487]},{"name":"EnrollmentNoRevocationInfoInCerts","features":[487]},{"name":"EnrollmentPendAllRequests","features":[487]},{"name":"EnrollmentPolicyFlags","features":[487]},{"name":"EnrollmentPolicyServerPropertyFlags","features":[487]},{"name":"EnrollmentPreviousApprovalKeyBasedValidateReenrollment","features":[487]},{"name":"EnrollmentPreviousApprovalValidateReenrollment","features":[487]},{"name":"EnrollmentPublishToDS","features":[487]},{"name":"EnrollmentPublishToKRAContainer","features":[487]},{"name":"EnrollmentRemoveInvalidCertificateFromPersonalStore","features":[487]},{"name":"EnrollmentReuseKeyOnFullSmartCard","features":[487]},{"name":"EnrollmentSelectionStatus","features":[487]},{"name":"EnrollmentSkipAutoRenewal","features":[487]},{"name":"EnrollmentTemplateProperty","features":[487]},{"name":"EnrollmentUserInteractionRequired","features":[487]},{"name":"ExportCAs","features":[487]},{"name":"ExportOIDs","features":[487]},{"name":"ExportTemplates","features":[487]},{"name":"FNCERTSRVBACKUPCLOSE","features":[487]},{"name":"FNCERTSRVBACKUPEND","features":[487]},{"name":"FNCERTSRVBACKUPFREE","features":[487]},{"name":"FNCERTSRVBACKUPGETBACKUPLOGSW","features":[487]},{"name":"FNCERTSRVBACKUPGETDATABASENAMESW","features":[487]},{"name":"FNCERTSRVBACKUPGETDYNAMICFILELISTW","features":[487]},{"name":"FNCERTSRVBACKUPOPENFILEW","features":[487]},{"name":"FNCERTSRVBACKUPPREPAREW","features":[487]},{"name":"FNCERTSRVBACKUPREAD","features":[487]},{"name":"FNCERTSRVBACKUPTRUNCATELOGS","features":[487]},{"name":"FNCERTSRVISSERVERONLINEW","features":[305,487]},{"name":"FNCERTSRVRESTOREEND","features":[487]},{"name":"FNCERTSRVRESTOREGETDATABASELOCATIONSW","features":[487]},{"name":"FNCERTSRVRESTOREPREPAREW","features":[487]},{"name":"FNCERTSRVRESTOREREGISTERCOMPLETE","features":[487]},{"name":"FNCERTSRVRESTOREREGISTERW","features":[487]},{"name":"FNCERTSRVSERVERCONTROLW","features":[487]},{"name":"FNIMPORTPFXTOPROVIDER","features":[305,487]},{"name":"FNIMPORTPFXTOPROVIDERFREEDATA","features":[305,487]},{"name":"FR_PROP_ATTESTATIONCHALLENGE","features":[487]},{"name":"FR_PROP_ATTESTATIONPROVIDERNAME","features":[487]},{"name":"FR_PROP_BODYPARTSTRING","features":[487]},{"name":"FR_PROP_CAEXCHANGECERTIFICATE","features":[487]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECHAIN","features":[487]},{"name":"FR_PROP_CAEXCHANGECERTIFICATECRLCHAIN","features":[487]},{"name":"FR_PROP_CAEXCHANGECERTIFICATEHASH","features":[487]},{"name":"FR_PROP_CLAIMCHALLENGE","features":[487]},{"name":"FR_PROP_ENCRYPTEDKEYHASH","features":[487]},{"name":"FR_PROP_FAILINFO","features":[487]},{"name":"FR_PROP_FULLRESPONSE","features":[487]},{"name":"FR_PROP_FULLRESPONSENOPKCS7","features":[487]},{"name":"FR_PROP_ISSUEDCERTIFICATE","features":[487]},{"name":"FR_PROP_ISSUEDCERTIFICATECHAIN","features":[487]},{"name":"FR_PROP_ISSUEDCERTIFICATECRLCHAIN","features":[487]},{"name":"FR_PROP_ISSUEDCERTIFICATEHASH","features":[487]},{"name":"FR_PROP_NONE","features":[487]},{"name":"FR_PROP_OTHERINFOCHOICE","features":[487]},{"name":"FR_PROP_PENDINFOTIME","features":[487]},{"name":"FR_PROP_PENDINFOTOKEN","features":[487]},{"name":"FR_PROP_STATUS","features":[487]},{"name":"FR_PROP_STATUSINFOCOUNT","features":[487]},{"name":"FR_PROP_STATUSSTRING","features":[487]},{"name":"FULL_RESPONSE_PROPERTY_ID","features":[487]},{"name":"GeneralCA","features":[487]},{"name":"GeneralCrossCA","features":[487]},{"name":"GeneralDefault","features":[487]},{"name":"GeneralDonotPersist","features":[487]},{"name":"GeneralMachineType","features":[487]},{"name":"GeneralModified","features":[487]},{"name":"IAlternativeName","features":[487,356]},{"name":"IAlternativeNames","features":[487,356]},{"name":"IBinaryConverter","features":[487,356]},{"name":"IBinaryConverter2","features":[487,356]},{"name":"ICEnroll","features":[487,356]},{"name":"ICEnroll2","features":[487,356]},{"name":"ICEnroll3","features":[487,356]},{"name":"ICEnroll4","features":[487,356]},{"name":"ICF_ALLOWFOREIGN","features":[487]},{"name":"ICF_EXISTINGROW","features":[487]},{"name":"ICertAdmin","features":[487,356]},{"name":"ICertAdmin2","features":[487,356]},{"name":"ICertConfig","features":[487,356]},{"name":"ICertConfig2","features":[487,356]},{"name":"ICertEncodeAltName","features":[487,356]},{"name":"ICertEncodeAltName2","features":[487,356]},{"name":"ICertEncodeBitString","features":[487,356]},{"name":"ICertEncodeBitString2","features":[487,356]},{"name":"ICertEncodeCRLDistInfo","features":[487,356]},{"name":"ICertEncodeCRLDistInfo2","features":[487,356]},{"name":"ICertEncodeDateArray","features":[487,356]},{"name":"ICertEncodeDateArray2","features":[487,356]},{"name":"ICertEncodeLongArray","features":[487,356]},{"name":"ICertEncodeLongArray2","features":[487,356]},{"name":"ICertEncodeStringArray","features":[487,356]},{"name":"ICertEncodeStringArray2","features":[487,356]},{"name":"ICertExit","features":[487,356]},{"name":"ICertExit2","features":[487,356]},{"name":"ICertGetConfig","features":[487,356]},{"name":"ICertManageModule","features":[487,356]},{"name":"ICertPolicy","features":[487,356]},{"name":"ICertPolicy2","features":[487,356]},{"name":"ICertProperties","features":[487,356]},{"name":"ICertProperty","features":[487,356]},{"name":"ICertPropertyArchived","features":[487,356]},{"name":"ICertPropertyArchivedKeyHash","features":[487,356]},{"name":"ICertPropertyAutoEnroll","features":[487,356]},{"name":"ICertPropertyBackedUp","features":[487,356]},{"name":"ICertPropertyDescription","features":[487,356]},{"name":"ICertPropertyEnrollment","features":[487,356]},{"name":"ICertPropertyEnrollmentPolicyServer","features":[487,356]},{"name":"ICertPropertyFriendlyName","features":[487,356]},{"name":"ICertPropertyKeyProvInfo","features":[487,356]},{"name":"ICertPropertyRenewal","features":[487,356]},{"name":"ICertPropertyRequestOriginator","features":[487,356]},{"name":"ICertPropertySHA1Hash","features":[487,356]},{"name":"ICertRequest","features":[487,356]},{"name":"ICertRequest2","features":[487,356]},{"name":"ICertRequest3","features":[487,356]},{"name":"ICertRequestD","features":[487]},{"name":"ICertRequestD2","features":[487]},{"name":"ICertServerExit","features":[487,356]},{"name":"ICertServerPolicy","features":[487,356]},{"name":"ICertView","features":[487,356]},{"name":"ICertView2","features":[487,356]},{"name":"ICertificateAttestationChallenge","features":[487,356]},{"name":"ICertificateAttestationChallenge2","features":[487,356]},{"name":"ICertificatePolicies","features":[487,356]},{"name":"ICertificatePolicy","features":[487,356]},{"name":"ICertificationAuthorities","features":[487,356]},{"name":"ICertificationAuthority","features":[487,356]},{"name":"ICryptAttribute","features":[487,356]},{"name":"ICryptAttributes","features":[487,356]},{"name":"ICspAlgorithm","features":[487,356]},{"name":"ICspAlgorithms","features":[487,356]},{"name":"ICspInformation","features":[487,356]},{"name":"ICspInformations","features":[487,356]},{"name":"ICspStatus","features":[487,356]},{"name":"ICspStatuses","features":[487,356]},{"name":"IEnroll","features":[487]},{"name":"IEnroll2","features":[487]},{"name":"IEnroll4","features":[487]},{"name":"IEnumCERTVIEWATTRIBUTE","features":[487,356]},{"name":"IEnumCERTVIEWCOLUMN","features":[487,356]},{"name":"IEnumCERTVIEWEXTENSION","features":[487,356]},{"name":"IEnumCERTVIEWROW","features":[487,356]},{"name":"IF_ENABLEADMINASAUDITOR","features":[487]},{"name":"IF_ENABLEEXITKEYRETRIEVAL","features":[487]},{"name":"IF_ENFORCEENCRYPTICERTADMIN","features":[487]},{"name":"IF_ENFORCEENCRYPTICERTREQUEST","features":[487]},{"name":"IF_LOCKICERTREQUEST","features":[487]},{"name":"IF_NOLOCALICERTADMIN","features":[487]},{"name":"IF_NOLOCALICERTADMINBACKUP","features":[487]},{"name":"IF_NOLOCALICERTREQUEST","features":[487]},{"name":"IF_NOREMOTEICERTADMIN","features":[487]},{"name":"IF_NOREMOTEICERTADMINBACKUP","features":[487]},{"name":"IF_NOREMOTEICERTREQUEST","features":[487]},{"name":"IF_NORPCICERTREQUEST","features":[487]},{"name":"IF_NOSNAPSHOTBACKUP","features":[487]},{"name":"IKF_OVERWRITE","features":[487]},{"name":"INDESPolicy","features":[487]},{"name":"IOCSPAdmin","features":[487,356]},{"name":"IOCSPCAConfiguration","features":[487,356]},{"name":"IOCSPCAConfigurationCollection","features":[487,356]},{"name":"IOCSPProperty","features":[487,356]},{"name":"IOCSPPropertyCollection","features":[487,356]},{"name":"IObjectId","features":[487,356]},{"name":"IObjectIds","features":[487,356]},{"name":"IPolicyQualifier","features":[487,356]},{"name":"IPolicyQualifiers","features":[487,356]},{"name":"ISSCERT_DEFAULT_DS","features":[487]},{"name":"ISSCERT_DEFAULT_NODS","features":[487]},{"name":"ISSCERT_ENABLE","features":[487]},{"name":"ISSCERT_FILEURL_OLD","features":[487]},{"name":"ISSCERT_FTPURL_OLD","features":[487]},{"name":"ISSCERT_HTTPURL_OLD","features":[487]},{"name":"ISSCERT_LDAPURL_OLD","features":[487]},{"name":"ISSCERT_URLMASK_OLD","features":[487]},{"name":"ISignerCertificate","features":[487,356]},{"name":"ISignerCertificates","features":[487,356]},{"name":"ISmimeCapabilities","features":[487,356]},{"name":"ISmimeCapability","features":[487,356]},{"name":"IX500DistinguishedName","features":[487,356]},{"name":"IX509Attribute","features":[487,356]},{"name":"IX509AttributeArchiveKey","features":[487,356]},{"name":"IX509AttributeArchiveKeyHash","features":[487,356]},{"name":"IX509AttributeClientId","features":[487,356]},{"name":"IX509AttributeCspProvider","features":[487,356]},{"name":"IX509AttributeExtensions","features":[487,356]},{"name":"IX509AttributeOSVersion","features":[487,356]},{"name":"IX509AttributeRenewalCertificate","features":[487,356]},{"name":"IX509Attributes","features":[487,356]},{"name":"IX509CertificateRequest","features":[487,356]},{"name":"IX509CertificateRequestCertificate","features":[487,356]},{"name":"IX509CertificateRequestCertificate2","features":[487,356]},{"name":"IX509CertificateRequestCmc","features":[487,356]},{"name":"IX509CertificateRequestCmc2","features":[487,356]},{"name":"IX509CertificateRequestPkcs10","features":[487,356]},{"name":"IX509CertificateRequestPkcs10V2","features":[487,356]},{"name":"IX509CertificateRequestPkcs10V3","features":[487,356]},{"name":"IX509CertificateRequestPkcs10V4","features":[487,356]},{"name":"IX509CertificateRequestPkcs7","features":[487,356]},{"name":"IX509CertificateRequestPkcs7V2","features":[487,356]},{"name":"IX509CertificateRevocationList","features":[487,356]},{"name":"IX509CertificateRevocationListEntries","features":[487,356]},{"name":"IX509CertificateRevocationListEntry","features":[487,356]},{"name":"IX509CertificateTemplate","features":[487,356]},{"name":"IX509CertificateTemplateWritable","features":[487,356]},{"name":"IX509CertificateTemplates","features":[487,356]},{"name":"IX509EndorsementKey","features":[487,356]},{"name":"IX509Enrollment","features":[487,356]},{"name":"IX509Enrollment2","features":[487,356]},{"name":"IX509EnrollmentHelper","features":[487,356]},{"name":"IX509EnrollmentPolicyServer","features":[487,356]},{"name":"IX509EnrollmentStatus","features":[487,356]},{"name":"IX509EnrollmentWebClassFactory","features":[487,356]},{"name":"IX509Extension","features":[487,356]},{"name":"IX509ExtensionAlternativeNames","features":[487,356]},{"name":"IX509ExtensionAuthorityKeyIdentifier","features":[487,356]},{"name":"IX509ExtensionBasicConstraints","features":[487,356]},{"name":"IX509ExtensionCertificatePolicies","features":[487,356]},{"name":"IX509ExtensionEnhancedKeyUsage","features":[487,356]},{"name":"IX509ExtensionKeyUsage","features":[487,356]},{"name":"IX509ExtensionMSApplicationPolicies","features":[487,356]},{"name":"IX509ExtensionSmimeCapabilities","features":[487,356]},{"name":"IX509ExtensionSubjectKeyIdentifier","features":[487,356]},{"name":"IX509ExtensionTemplate","features":[487,356]},{"name":"IX509ExtensionTemplateName","features":[487,356]},{"name":"IX509Extensions","features":[487,356]},{"name":"IX509MachineEnrollmentFactory","features":[487,356]},{"name":"IX509NameValuePair","features":[487,356]},{"name":"IX509NameValuePairs","features":[487,356]},{"name":"IX509PolicyServerListManager","features":[487,356]},{"name":"IX509PolicyServerUrl","features":[487,356]},{"name":"IX509PrivateKey","features":[487,356]},{"name":"IX509PrivateKey2","features":[487,356]},{"name":"IX509PublicKey","features":[487,356]},{"name":"IX509SCEPEnrollment","features":[487,356]},{"name":"IX509SCEPEnrollment2","features":[487,356]},{"name":"IX509SCEPEnrollmentHelper","features":[487,356]},{"name":"IX509SignatureInformation","features":[487,356]},{"name":"ImportExportable","features":[487]},{"name":"ImportExportableEncrypted","features":[487]},{"name":"ImportForceOverwrite","features":[487]},{"name":"ImportInstallCertificate","features":[487]},{"name":"ImportInstallChain","features":[487]},{"name":"ImportInstallChainAndRoot","features":[487]},{"name":"ImportMachineContext","features":[487]},{"name":"ImportNoUserProtected","features":[487]},{"name":"ImportNone","features":[487]},{"name":"ImportPFXFlags","features":[487]},{"name":"ImportSaveProperties","features":[487]},{"name":"ImportSilent","features":[487]},{"name":"ImportUserProtected","features":[487]},{"name":"ImportUserProtectedHigh","features":[487]},{"name":"InheritDefault","features":[487]},{"name":"InheritExtensionsFlag","features":[487]},{"name":"InheritKeyMask","features":[487]},{"name":"InheritNewDefaultKey","features":[487]},{"name":"InheritNewSimilarKey","features":[487]},{"name":"InheritNone","features":[487]},{"name":"InheritPrivateKey","features":[487]},{"name":"InheritPublicKey","features":[487]},{"name":"InheritRenewalCertificateFlag","features":[487]},{"name":"InheritReserved80000000","features":[487]},{"name":"InheritSubjectAltNameFlag","features":[487]},{"name":"InheritSubjectFlag","features":[487]},{"name":"InheritTemplateFlag","features":[487]},{"name":"InheritValidityPeriodFlag","features":[487]},{"name":"InnerRequestLevel","features":[487]},{"name":"InstallResponseRestrictionFlags","features":[487]},{"name":"KRAF_DISABLEUSEDEFAULTPROVIDER","features":[487]},{"name":"KRAF_ENABLEARCHIVEALL","features":[487]},{"name":"KRAF_ENABLEFOREIGN","features":[487]},{"name":"KRAF_SAVEBADREQUESTKEY","features":[487]},{"name":"KRA_DISP_EXPIRED","features":[487]},{"name":"KRA_DISP_INVALID","features":[487]},{"name":"KRA_DISP_NOTFOUND","features":[487]},{"name":"KRA_DISP_NOTLOADED","features":[487]},{"name":"KRA_DISP_REVOKED","features":[487]},{"name":"KRA_DISP_UNTRUSTED","features":[487]},{"name":"KRA_DISP_VALID","features":[487]},{"name":"KR_ENABLE_MACHINE","features":[487]},{"name":"KR_ENABLE_USER","features":[487]},{"name":"KeyAttestationClaimType","features":[487]},{"name":"KeyIdentifierHashAlgorithm","features":[487]},{"name":"LDAPF_SIGNDISABLE","features":[487]},{"name":"LDAPF_SSLENABLE","features":[487]},{"name":"LevelInnermost","features":[487]},{"name":"LevelNext","features":[487]},{"name":"LevelSafe","features":[487]},{"name":"LevelUnsafe","features":[487]},{"name":"LoadOptionCacheOnly","features":[487]},{"name":"LoadOptionDefault","features":[487]},{"name":"LoadOptionRegisterForADChanges","features":[487]},{"name":"LoadOptionReload","features":[487]},{"name":"OCSPAdmin","features":[487]},{"name":"OCSPPropertyCollection","features":[487]},{"name":"OCSPRequestFlag","features":[487]},{"name":"OCSPSigningFlag","features":[487]},{"name":"OCSP_RF_REJECT_SIGNED_REQUESTS","features":[487]},{"name":"OCSP_SF_ALLOW_NONCE_EXTENSION","features":[487]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTOENROLLMENT","features":[487]},{"name":"OCSP_SF_ALLOW_SIGNINGCERT_AUTORENEWAL","features":[487]},{"name":"OCSP_SF_AUTODISCOVER_SIGNINGCERT","features":[487]},{"name":"OCSP_SF_FORCE_SIGNINGCERT_ISSUER_ISCA","features":[487]},{"name":"OCSP_SF_MANUAL_ASSIGN_SIGNINGCERT","features":[487]},{"name":"OCSP_SF_RESPONDER_ID_KEYHASH","features":[487]},{"name":"OCSP_SF_RESPONDER_ID_NAME","features":[487]},{"name":"OCSP_SF_SILENT","features":[487]},{"name":"OCSP_SF_USE_CACERT","features":[487]},{"name":"ObjectIdGroupId","features":[487]},{"name":"ObjectIdPublicKeyFlags","features":[487]},{"name":"PENDING_REQUEST_DESIRED_PROPERTY","features":[487]},{"name":"PFXExportChainNoRoot","features":[487]},{"name":"PFXExportChainWithRoot","features":[487]},{"name":"PFXExportEEOnly","features":[487]},{"name":"PFXExportOptions","features":[487]},{"name":"PROCFLG_ENFORCEGOODKEYS","features":[487]},{"name":"PROCFLG_NONE","features":[487]},{"name":"PROPCALLER_ADMIN","features":[487]},{"name":"PROPCALLER_EXIT","features":[487]},{"name":"PROPCALLER_MASK","features":[487]},{"name":"PROPCALLER_POLICY","features":[487]},{"name":"PROPCALLER_REQUEST","features":[487]},{"name":"PROPCALLER_SERVER","features":[487]},{"name":"PROPFLAGS_INDEXED","features":[487]},{"name":"PROPTYPE_BINARY","features":[487]},{"name":"PROPTYPE_DATE","features":[487]},{"name":"PROPTYPE_LONG","features":[487]},{"name":"PROPTYPE_MASK","features":[487]},{"name":"PROPTYPE_STRING","features":[487]},{"name":"Pkcs10AllowedSignatureTypes","features":[487]},{"name":"PolicyQualifierType","features":[487]},{"name":"PolicyQualifierTypeFlags","features":[487]},{"name":"PolicyQualifierTypeUnknown","features":[487]},{"name":"PolicyQualifierTypeUrl","features":[487]},{"name":"PolicyQualifierTypeUserNotice","features":[487]},{"name":"PolicyServerUrlFlags","features":[487]},{"name":"PolicyServerUrlPropertyID","features":[487]},{"name":"PrivateKeyAttestMask","features":[487]},{"name":"PrivateKeyAttestNone","features":[487]},{"name":"PrivateKeyAttestPreferred","features":[487]},{"name":"PrivateKeyAttestRequired","features":[487]},{"name":"PrivateKeyAttestWithoutPolicy","features":[487]},{"name":"PrivateKeyClientVersionMask","features":[487]},{"name":"PrivateKeyClientVersionShift","features":[487]},{"name":"PrivateKeyEKTrustOnUse","features":[487]},{"name":"PrivateKeyEKValidateCert","features":[487]},{"name":"PrivateKeyEKValidateKey","features":[487]},{"name":"PrivateKeyExportable","features":[487]},{"name":"PrivateKeyHelloKspKey","features":[487]},{"name":"PrivateKeyHelloLogonKey","features":[487]},{"name":"PrivateKeyRequireAlternateSignatureAlgorithm","features":[487]},{"name":"PrivateKeyRequireArchival","features":[487]},{"name":"PrivateKeyRequireSameKeyRenewal","features":[487]},{"name":"PrivateKeyRequireStrongKeyProtection","features":[487]},{"name":"PrivateKeyServerVersionMask","features":[487]},{"name":"PrivateKeyServerVersionShift","features":[487]},{"name":"PrivateKeyUseLegacyProvider","features":[487]},{"name":"PsFriendlyName","features":[487]},{"name":"PsPolicyID","features":[487]},{"name":"PsfAllowUnTrustedCA","features":[487]},{"name":"PsfAutoEnrollmentEnabled","features":[487]},{"name":"PsfLocationGroupPolicy","features":[487]},{"name":"PsfLocationRegistry","features":[487]},{"name":"PsfNone","features":[487]},{"name":"PsfUseClientId","features":[487]},{"name":"PstAcquirePrivateKey","features":[305,487]},{"name":"PstGetCertificateChain","features":[305,326,487]},{"name":"PstGetCertificates","features":[305,487]},{"name":"PstGetTrustAnchors","features":[305,326,487]},{"name":"PstGetTrustAnchorsEx","features":[305,326,487]},{"name":"PstGetUserNameForCertificate","features":[305,487]},{"name":"PstMapCertificate","features":[305,326,487]},{"name":"PstValidate","features":[305,487]},{"name":"REQDISP_DEFAULT_ENTERPRISE","features":[487]},{"name":"REQDISP_DENY","features":[487]},{"name":"REQDISP_ISSUE","features":[487]},{"name":"REQDISP_MASK","features":[487]},{"name":"REQDISP_PENDING","features":[487]},{"name":"REQDISP_PENDINGFIRST","features":[487]},{"name":"REQDISP_USEREQUESTATTRIBUTE","features":[487]},{"name":"REVEXT_ASPENABLE","features":[487]},{"name":"REVEXT_CDPENABLE","features":[487]},{"name":"REVEXT_CDPFILEURL_OLD","features":[487]},{"name":"REVEXT_CDPFTPURL_OLD","features":[487]},{"name":"REVEXT_CDPHTTPURL_OLD","features":[487]},{"name":"REVEXT_CDPLDAPURL_OLD","features":[487]},{"name":"REVEXT_CDPURLMASK_OLD","features":[487]},{"name":"REVEXT_DEFAULT_DS","features":[487]},{"name":"REVEXT_DEFAULT_NODS","features":[487]},{"name":"RequestClientInfoClientId","features":[487]},{"name":"SCEPDispositionFailure","features":[487]},{"name":"SCEPDispositionPending","features":[487]},{"name":"SCEPDispositionPendingChallenge","features":[487]},{"name":"SCEPDispositionSuccess","features":[487]},{"name":"SCEPDispositionUnknown","features":[487]},{"name":"SCEPFailBadAlgorithm","features":[487]},{"name":"SCEPFailBadCertId","features":[487]},{"name":"SCEPFailBadMessageCheck","features":[487]},{"name":"SCEPFailBadRequest","features":[487]},{"name":"SCEPFailBadTime","features":[487]},{"name":"SCEPFailUnknown","features":[487]},{"name":"SCEPMessageCertResponse","features":[487]},{"name":"SCEPMessageClaimChallengeAnswer","features":[487]},{"name":"SCEPMessageGetCRL","features":[487]},{"name":"SCEPMessageGetCert","features":[487]},{"name":"SCEPMessageGetCertInitial","features":[487]},{"name":"SCEPMessagePKCSRequest","features":[487]},{"name":"SCEPMessageUnknown","features":[487]},{"name":"SCEPProcessDefault","features":[487]},{"name":"SCEPProcessSkipCertInstall","features":[487]},{"name":"SETUP_ATTEMPT_VROOT_CREATE","features":[487]},{"name":"SETUP_CLIENT_FLAG","features":[487]},{"name":"SETUP_CREATEDB_FLAG","features":[487]},{"name":"SETUP_DCOM_SECURITY_UPDATED_FLAG","features":[487]},{"name":"SETUP_DENIED_FLAG","features":[487]},{"name":"SETUP_FORCECRL_FLAG","features":[487]},{"name":"SETUP_ONLINE_FLAG","features":[487]},{"name":"SETUP_REQUEST_FLAG","features":[487]},{"name":"SETUP_SECURITY_CHANGED","features":[487]},{"name":"SETUP_SERVER_FLAG","features":[487]},{"name":"SETUP_SERVER_IS_UP_TO_DATE_FLAG","features":[487]},{"name":"SETUP_SERVER_UPGRADED_FLAG","features":[487]},{"name":"SETUP_SUSPEND_FLAG","features":[487]},{"name":"SETUP_UPDATE_CAOBJECT_SVRTYPE","features":[487]},{"name":"SETUP_W2K_SECURITY_NOT_UPGRADED_FLAG","features":[487]},{"name":"SKIHashCapiSha1","features":[487]},{"name":"SKIHashDefault","features":[487]},{"name":"SKIHashHPKP","features":[487]},{"name":"SKIHashSha1","features":[487]},{"name":"SKIHashSha256","features":[487]},{"name":"SelectedNo","features":[487]},{"name":"SelectedYes","features":[487]},{"name":"SubjectAlternativeNameEnrolleeSupplies","features":[487]},{"name":"SubjectAlternativeNameRequireDNS","features":[487]},{"name":"SubjectAlternativeNameRequireDirectoryGUID","features":[487]},{"name":"SubjectAlternativeNameRequireDomainDNS","features":[487]},{"name":"SubjectAlternativeNameRequireEmail","features":[487]},{"name":"SubjectAlternativeNameRequireSPN","features":[487]},{"name":"SubjectAlternativeNameRequireUPN","features":[487]},{"name":"SubjectNameAndAlternativeNameOldCertSupplies","features":[487]},{"name":"SubjectNameEnrolleeSupplies","features":[487]},{"name":"SubjectNameRequireCommonName","features":[487]},{"name":"SubjectNameRequireDNS","features":[487]},{"name":"SubjectNameRequireDirectoryPath","features":[487]},{"name":"SubjectNameRequireEmail","features":[487]},{"name":"TP_MACHINEPOLICY","features":[487]},{"name":"TemplatePropAsymmetricAlgorithm","features":[487]},{"name":"TemplatePropCertificatePolicies","features":[487]},{"name":"TemplatePropCommonName","features":[487]},{"name":"TemplatePropCryptoProviders","features":[487]},{"name":"TemplatePropDescription","features":[487]},{"name":"TemplatePropEKUs","features":[487]},{"name":"TemplatePropEnrollmentFlags","features":[487]},{"name":"TemplatePropExtensions","features":[487]},{"name":"TemplatePropFriendlyName","features":[487]},{"name":"TemplatePropGeneralFlags","features":[487]},{"name":"TemplatePropHashAlgorithm","features":[487]},{"name":"TemplatePropKeySecurityDescriptor","features":[487]},{"name":"TemplatePropKeySpec","features":[487]},{"name":"TemplatePropKeyUsage","features":[487]},{"name":"TemplatePropMajorRevision","features":[487]},{"name":"TemplatePropMinimumKeySize","features":[487]},{"name":"TemplatePropMinorRevision","features":[487]},{"name":"TemplatePropOID","features":[487]},{"name":"TemplatePropPrivateKeyFlags","features":[487]},{"name":"TemplatePropRACertificatePolicies","features":[487]},{"name":"TemplatePropRAEKUs","features":[487]},{"name":"TemplatePropRASignatureCount","features":[487]},{"name":"TemplatePropRenewalPeriod","features":[487]},{"name":"TemplatePropSchemaVersion","features":[487]},{"name":"TemplatePropSecurityDescriptor","features":[487]},{"name":"TemplatePropSubjectNameFlags","features":[487]},{"name":"TemplatePropSupersede","features":[487]},{"name":"TemplatePropSymmetricAlgorithm","features":[487]},{"name":"TemplatePropSymmetricKeyLength","features":[487]},{"name":"TemplatePropV1ApplicationPolicy","features":[487]},{"name":"TemplatePropValidityPeriod","features":[487]},{"name":"TypeAny","features":[487]},{"name":"TypeCertificate","features":[487]},{"name":"TypeCmc","features":[487]},{"name":"TypePkcs10","features":[487]},{"name":"TypePkcs7","features":[487]},{"name":"VR_INSTANT_BAD","features":[487]},{"name":"VR_INSTANT_OK","features":[487]},{"name":"VR_PENDING","features":[487]},{"name":"VerifyAllowUI","features":[487]},{"name":"VerifyNone","features":[487]},{"name":"VerifySilent","features":[487]},{"name":"VerifySmartCardNone","features":[487]},{"name":"VerifySmartCardSilent","features":[487]},{"name":"WebEnrollmentFlags","features":[487]},{"name":"WebSecurityLevel","features":[487]},{"name":"X500NameFlags","features":[487]},{"name":"X509AuthAnonymous","features":[487]},{"name":"X509AuthCertificate","features":[487]},{"name":"X509AuthKerberos","features":[487]},{"name":"X509AuthNone","features":[487]},{"name":"X509AuthUsername","features":[487]},{"name":"X509CertificateEnrollmentContext","features":[487]},{"name":"X509CertificateTemplateEnrollmentFlag","features":[487]},{"name":"X509CertificateTemplateGeneralFlag","features":[487]},{"name":"X509CertificateTemplatePrivateKeyFlag","features":[487]},{"name":"X509CertificateTemplateSubjectNameFlag","features":[487]},{"name":"X509EnrollmentAuthFlags","features":[487]},{"name":"X509EnrollmentPolicyExportFlags","features":[487]},{"name":"X509EnrollmentPolicyLoadOption","features":[487]},{"name":"X509HardwareKeyUsageFlags","features":[487]},{"name":"X509KeyParametersExportType","features":[487]},{"name":"X509KeySpec","features":[487]},{"name":"X509KeyUsageFlags","features":[487]},{"name":"X509PrivateKeyExportFlags","features":[487]},{"name":"X509PrivateKeyProtection","features":[487]},{"name":"X509PrivateKeyUsageFlags","features":[487]},{"name":"X509PrivateKeyVerify","features":[487]},{"name":"X509ProviderType","features":[487]},{"name":"X509RequestInheritOptions","features":[487]},{"name":"X509RequestType","features":[487]},{"name":"X509SCEPDisposition","features":[487]},{"name":"X509SCEPFailInfo","features":[487]},{"name":"X509SCEPMessageType","features":[487]},{"name":"X509SCEPProcessMessageFlags","features":[487]},{"name":"XCN_AT_KEYEXCHANGE","features":[487]},{"name":"XCN_AT_NONE","features":[487]},{"name":"XCN_AT_SIGNATURE","features":[487]},{"name":"XCN_BCRYPT_ASYMMETRIC_ENCRYPTION_INTERFACE","features":[487]},{"name":"XCN_BCRYPT_CIPHER_INTERFACE","features":[487]},{"name":"XCN_BCRYPT_HASH_INTERFACE","features":[487]},{"name":"XCN_BCRYPT_KEY_DERIVATION_INTERFACE","features":[487]},{"name":"XCN_BCRYPT_RNG_INTERFACE","features":[487]},{"name":"XCN_BCRYPT_SECRET_AGREEMENT_INTERFACE","features":[487]},{"name":"XCN_BCRYPT_SIGNATURE_INTERFACE","features":[487]},{"name":"XCN_BCRYPT_UNKNOWN_INTERFACE","features":[487]},{"name":"XCN_CERT_ACCESS_STATE_PROP_ID","features":[487]},{"name":"XCN_CERT_AIA_URL_RETRIEVED_PROP_ID","features":[487]},{"name":"XCN_CERT_ALT_NAME_DIRECTORY_NAME","features":[487]},{"name":"XCN_CERT_ALT_NAME_DNS_NAME","features":[487]},{"name":"XCN_CERT_ALT_NAME_EDI_PARTY_NAME","features":[487]},{"name":"XCN_CERT_ALT_NAME_GUID","features":[487]},{"name":"XCN_CERT_ALT_NAME_IP_ADDRESS","features":[487]},{"name":"XCN_CERT_ALT_NAME_OTHER_NAME","features":[487]},{"name":"XCN_CERT_ALT_NAME_REGISTERED_ID","features":[487]},{"name":"XCN_CERT_ALT_NAME_RFC822_NAME","features":[487]},{"name":"XCN_CERT_ALT_NAME_UNKNOWN","features":[487]},{"name":"XCN_CERT_ALT_NAME_URL","features":[487]},{"name":"XCN_CERT_ALT_NAME_USER_PRINCIPLE_NAME","features":[487]},{"name":"XCN_CERT_ALT_NAME_X400_ADDRESS","features":[487]},{"name":"XCN_CERT_ARCHIVED_KEY_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_ARCHIVED_PROP_ID","features":[487]},{"name":"XCN_CERT_AUTHORITY_INFO_ACCESS_PROP_ID","features":[487]},{"name":"XCN_CERT_AUTH_ROOT_SHA256_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_AUTO_ENROLL_PROP_ID","features":[487]},{"name":"XCN_CERT_AUTO_ENROLL_RETRY_PROP_ID","features":[487]},{"name":"XCN_CERT_BACKED_UP_PROP_ID","features":[487]},{"name":"XCN_CERT_CA_DISABLE_CRL_PROP_ID","features":[487]},{"name":"XCN_CERT_CA_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[487]},{"name":"XCN_CERT_CEP_PROP_ID","features":[487]},{"name":"XCN_CERT_CERT_NOT_BEFORE_ENHKEY_USAGE_PROP_ID","features":[487]},{"name":"XCN_CERT_CLR_DELETE_KEY_PROP_ID","features":[487]},{"name":"XCN_CERT_CRL_SIGN_KEY_USAGE","features":[487]},{"name":"XCN_CERT_CROSS_CERT_DIST_POINTS_PROP_ID","features":[487]},{"name":"XCN_CERT_CTL_USAGE_PROP_ID","features":[487]},{"name":"XCN_CERT_DATA_ENCIPHERMENT_KEY_USAGE","features":[487]},{"name":"XCN_CERT_DATE_STAMP_PROP_ID","features":[487]},{"name":"XCN_CERT_DECIPHER_ONLY_KEY_USAGE","features":[487]},{"name":"XCN_CERT_DESCRIPTION_PROP_ID","features":[487]},{"name":"XCN_CERT_DIGITAL_SIGNATURE_KEY_USAGE","features":[487]},{"name":"XCN_CERT_DISALLOWED_ENHKEY_USAGE_PROP_ID","features":[487]},{"name":"XCN_CERT_DISALLOWED_FILETIME_PROP_ID","features":[487]},{"name":"XCN_CERT_EFS_PROP_ID","features":[487]},{"name":"XCN_CERT_ENCIPHER_ONLY_KEY_USAGE","features":[487]},{"name":"XCN_CERT_ENHKEY_USAGE_PROP_ID","features":[487]},{"name":"XCN_CERT_ENROLLMENT_PROP_ID","features":[487]},{"name":"XCN_CERT_EXTENDED_ERROR_INFO_PROP_ID","features":[487]},{"name":"XCN_CERT_FIRST_RESERVED_PROP_ID","features":[487]},{"name":"XCN_CERT_FIRST_USER_PROP_ID","features":[487]},{"name":"XCN_CERT_FORTEZZA_DATA_PROP_ID","features":[487]},{"name":"XCN_CERT_FRIENDLY_NAME_PROP_ID","features":[487]},{"name":"XCN_CERT_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_HCRYPTPROV_OR_NCRYPT_KEY_HANDLE_PROP_ID","features":[487]},{"name":"XCN_CERT_HCRYPTPROV_TRANSFER_PROP_ID","features":[487]},{"name":"XCN_CERT_IE30_RESERVED_PROP_ID","features":[487]},{"name":"XCN_CERT_ISOLATED_KEY_PROP_ID","features":[487]},{"name":"XCN_CERT_ISSUER_CHAIN_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[487]},{"name":"XCN_CERT_ISSUER_CHAIN_SIGN_HASH_CNG_ALG_PROP_ID","features":[487]},{"name":"XCN_CERT_ISSUER_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_ISSUER_PUB_KEY_BIT_LENGTH_PROP_ID","features":[487]},{"name":"XCN_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_KEY_AGREEMENT_KEY_USAGE","features":[487]},{"name":"XCN_CERT_KEY_CERT_SIGN_KEY_USAGE","features":[487]},{"name":"XCN_CERT_KEY_CLASSIFICATION_PROP_ID","features":[487]},{"name":"XCN_CERT_KEY_CONTEXT_PROP_ID","features":[487]},{"name":"XCN_CERT_KEY_ENCIPHERMENT_KEY_USAGE","features":[487]},{"name":"XCN_CERT_KEY_IDENTIFIER_PROP_ID","features":[487]},{"name":"XCN_CERT_KEY_PROV_HANDLE_PROP_ID","features":[487]},{"name":"XCN_CERT_KEY_PROV_INFO_PROP_ID","features":[487]},{"name":"XCN_CERT_KEY_REPAIR_ATTEMPTED_PROP_ID","features":[487]},{"name":"XCN_CERT_KEY_SPEC_PROP_ID","features":[487]},{"name":"XCN_CERT_LAST_RESERVED_PROP_ID","features":[487]},{"name":"XCN_CERT_LAST_USER_PROP_ID","features":[487]},{"name":"XCN_CERT_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_NAME_STR_AMBIGUOUS_SEPARATOR_FLAGS","features":[487]},{"name":"XCN_CERT_NAME_STR_COMMA_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_CRLF_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_DISABLE_UTF8_DIR_STR_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_DS_ESCAPED","features":[487]},{"name":"XCN_CERT_NAME_STR_ENABLE_PUNYCODE_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_FORCE_UTF8_DIR_STR_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_FORWARD_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_NONE","features":[487]},{"name":"XCN_CERT_NAME_STR_NO_PLUS_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_NO_QUOTING_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_REVERSE_FLAG","features":[487]},{"name":"XCN_CERT_NAME_STR_SEMICOLON_FLAG","features":[487]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_PROP_ID","features":[487]},{"name":"XCN_CERT_NCRYPT_KEY_HANDLE_TRANSFER_PROP_ID","features":[487]},{"name":"XCN_CERT_NEW_KEY_PROP_ID","features":[487]},{"name":"XCN_CERT_NEXT_UPDATE_LOCATION_PROP_ID","features":[487]},{"name":"XCN_CERT_NONCOMPLIANT_ROOT_URL_PROP_ID","features":[487]},{"name":"XCN_CERT_NON_REPUDIATION_KEY_USAGE","features":[487]},{"name":"XCN_CERT_NOT_BEFORE_FILETIME_PROP_ID","features":[487]},{"name":"XCN_CERT_NO_AUTO_EXPIRE_CHECK_PROP_ID","features":[487]},{"name":"XCN_CERT_NO_EXPIRE_NOTIFICATION_PROP_ID","features":[487]},{"name":"XCN_CERT_NO_KEY_USAGE","features":[487]},{"name":"XCN_CERT_OCSP_CACHE_PREFIX_PROP_ID","features":[487]},{"name":"XCN_CERT_OCSP_RESPONSE_PROP_ID","features":[487]},{"name":"XCN_CERT_OFFLINE_CRL_SIGN_KEY_USAGE","features":[487]},{"name":"XCN_CERT_OID_NAME_STR","features":[487]},{"name":"XCN_CERT_PIN_SHA256_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_PUBKEY_ALG_PARA_PROP_ID","features":[487]},{"name":"XCN_CERT_PUBKEY_HASH_RESERVED_PROP_ID","features":[487]},{"name":"XCN_CERT_PUB_KEY_CNG_ALG_BIT_LENGTH_PROP_ID","features":[487]},{"name":"XCN_CERT_PVK_FILE_PROP_ID","features":[487]},{"name":"XCN_CERT_RENEWAL_PROP_ID","features":[487]},{"name":"XCN_CERT_REQUEST_ORIGINATOR_PROP_ID","features":[487]},{"name":"XCN_CERT_ROOT_PROGRAM_CERT_POLICIES_PROP_ID","features":[487]},{"name":"XCN_CERT_ROOT_PROGRAM_CHAIN_POLICIES_PROP_ID","features":[487]},{"name":"XCN_CERT_ROOT_PROGRAM_NAME_CONSTRAINTS_PROP_ID","features":[487]},{"name":"XCN_CERT_SCARD_PIN_ID_PROP_ID","features":[487]},{"name":"XCN_CERT_SCARD_PIN_INFO_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_CA_CERT_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_ENCRYPT_HASH_CNG_ALG_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_FLAGS_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_GUID_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_NONCE_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_RA_ENCRYPTION_CERT_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_RA_SIGNATURE_CERT_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_SERVER_CERTS_PROP_ID","features":[487]},{"name":"XCN_CERT_SCEP_SIGNER_CERT_PROP_ID","features":[487]},{"name":"XCN_CERT_SEND_AS_TRUSTED_ISSUER_PROP_ID","features":[487]},{"name":"XCN_CERT_SERIALIZABLE_KEY_CONTEXT_PROP_ID","features":[487]},{"name":"XCN_CERT_SERIAL_CHAIN_PROP_ID","features":[487]},{"name":"XCN_CERT_SHA1_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_SHA256_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_SIGNATURE_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_SIGN_HASH_CNG_ALG_PROP_ID","features":[487]},{"name":"XCN_CERT_SIMPLE_NAME_STR","features":[487]},{"name":"XCN_CERT_SMART_CARD_DATA_PROP_ID","features":[487]},{"name":"XCN_CERT_SMART_CARD_READER_NON_REMOVABLE_PROP_ID","features":[487]},{"name":"XCN_CERT_SMART_CARD_READER_PROP_ID","features":[487]},{"name":"XCN_CERT_SMART_CARD_ROOT_INFO_PROP_ID","features":[487]},{"name":"XCN_CERT_SOURCE_LOCATION_PROP_ID","features":[487]},{"name":"XCN_CERT_SOURCE_URL_PROP_ID","features":[487]},{"name":"XCN_CERT_STORE_LOCALIZED_NAME_PROP_ID","features":[487]},{"name":"XCN_CERT_SUBJECT_DISABLE_CRL_PROP_ID","features":[487]},{"name":"XCN_CERT_SUBJECT_INFO_ACCESS_PROP_ID","features":[487]},{"name":"XCN_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID","features":[487]},{"name":"XCN_CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID","features":[487]},{"name":"XCN_CERT_X500_NAME_STR","features":[487]},{"name":"XCN_CERT_XML_NAME_STR","features":[487]},{"name":"XCN_CRL_REASON_AA_COMPROMISE","features":[487]},{"name":"XCN_CRL_REASON_AFFILIATION_CHANGED","features":[487]},{"name":"XCN_CRL_REASON_CA_COMPROMISE","features":[487]},{"name":"XCN_CRL_REASON_CERTIFICATE_HOLD","features":[487]},{"name":"XCN_CRL_REASON_CESSATION_OF_OPERATION","features":[487]},{"name":"XCN_CRL_REASON_KEY_COMPROMISE","features":[487]},{"name":"XCN_CRL_REASON_PRIVILEGE_WITHDRAWN","features":[487]},{"name":"XCN_CRL_REASON_REMOVE_FROM_CRL","features":[487]},{"name":"XCN_CRL_REASON_SUPERSEDED","features":[487]},{"name":"XCN_CRL_REASON_UNSPECIFIED","features":[487]},{"name":"XCN_CRYPT_ANY_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_ENCRYPT_ALG_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_ENHKEY_USAGE_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_EXT_OR_ATTR_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_FIRST_ALG_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_GROUP_ID_MASK","features":[487]},{"name":"XCN_CRYPT_HASH_ALG_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_KDF_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_KEY_LENGTH_MASK","features":[487]},{"name":"XCN_CRYPT_LAST_ALG_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_LAST_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_OID_DISABLE_SEARCH_DS_FLAG","features":[487]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_MASK","features":[487]},{"name":"XCN_CRYPT_OID_INFO_OID_GROUP_BIT_LEN_SHIFT","features":[487]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ANY","features":[487]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_ENCRYPT_KEY_FLAG","features":[487]},{"name":"XCN_CRYPT_OID_INFO_PUBKEY_SIGN_KEY_FLAG","features":[487]},{"name":"XCN_CRYPT_OID_PREFER_CNG_ALGID_FLAG","features":[487]},{"name":"XCN_CRYPT_OID_USE_CURVE_NAME_FOR_ENCODE_FLAG","features":[487]},{"name":"XCN_CRYPT_OID_USE_CURVE_NONE","features":[487]},{"name":"XCN_CRYPT_OID_USE_CURVE_PARAMETERS_FOR_ENCODE_FLAG","features":[487]},{"name":"XCN_CRYPT_POLICY_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_PUBKEY_ALG_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_RDN_ATTR_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_SIGN_ALG_OID_GROUP_ID","features":[487]},{"name":"XCN_CRYPT_STRING_ANY","features":[487]},{"name":"XCN_CRYPT_STRING_BASE64","features":[487]},{"name":"XCN_CRYPT_STRING_BASE64HEADER","features":[487]},{"name":"XCN_CRYPT_STRING_BASE64REQUESTHEADER","features":[487]},{"name":"XCN_CRYPT_STRING_BASE64URI","features":[487]},{"name":"XCN_CRYPT_STRING_BASE64X509CRLHEADER","features":[487]},{"name":"XCN_CRYPT_STRING_BASE64_ANY","features":[487]},{"name":"XCN_CRYPT_STRING_BINARY","features":[487]},{"name":"XCN_CRYPT_STRING_CHAIN","features":[487]},{"name":"XCN_CRYPT_STRING_ENCODEMASK","features":[487]},{"name":"XCN_CRYPT_STRING_HASHDATA","features":[487]},{"name":"XCN_CRYPT_STRING_HEX","features":[487]},{"name":"XCN_CRYPT_STRING_HEXADDR","features":[487]},{"name":"XCN_CRYPT_STRING_HEXASCII","features":[487]},{"name":"XCN_CRYPT_STRING_HEXASCIIADDR","features":[487]},{"name":"XCN_CRYPT_STRING_HEXRAW","features":[487]},{"name":"XCN_CRYPT_STRING_HEX_ANY","features":[487]},{"name":"XCN_CRYPT_STRING_NOCR","features":[487]},{"name":"XCN_CRYPT_STRING_NOCRLF","features":[487]},{"name":"XCN_CRYPT_STRING_PERCENTESCAPE","features":[487]},{"name":"XCN_CRYPT_STRING_STRICT","features":[487]},{"name":"XCN_CRYPT_STRING_TEXT","features":[487]},{"name":"XCN_CRYPT_TEMPLATE_OID_GROUP_ID","features":[487]},{"name":"XCN_NCRYPT_ALLOW_ALL_USAGES","features":[487]},{"name":"XCN_NCRYPT_ALLOW_ARCHIVING_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_DECRYPT_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_EXPORT_NONE","features":[487]},{"name":"XCN_NCRYPT_ALLOW_KEY_AGREEMENT_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_KEY_IMPORT_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_ARCHIVING_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_PLAINTEXT_EXPORT_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_SIGNING_FLAG","features":[487]},{"name":"XCN_NCRYPT_ALLOW_USAGES_NONE","features":[487]},{"name":"XCN_NCRYPT_ANY_ASYMMETRIC_OPERATION","features":[487]},{"name":"XCN_NCRYPT_ASYMMETRIC_ENCRYPTION_OPERATION","features":[487]},{"name":"XCN_NCRYPT_CIPHER_OPERATION","features":[487]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_AND_SUBJECT","features":[487]},{"name":"XCN_NCRYPT_CLAIM_AUTHORITY_ONLY","features":[487]},{"name":"XCN_NCRYPT_CLAIM_NONE","features":[487]},{"name":"XCN_NCRYPT_CLAIM_SUBJECT_ONLY","features":[487]},{"name":"XCN_NCRYPT_CLAIM_UNKNOWN","features":[487]},{"name":"XCN_NCRYPT_EXACT_MATCH_OPERATION","features":[487]},{"name":"XCN_NCRYPT_HASH_OPERATION","features":[487]},{"name":"XCN_NCRYPT_KEY_DERIVATION_OPERATION","features":[487]},{"name":"XCN_NCRYPT_NO_OPERATION","features":[487]},{"name":"XCN_NCRYPT_PCP_ENCRYPTION_KEY","features":[487]},{"name":"XCN_NCRYPT_PCP_GENERIC_KEY","features":[487]},{"name":"XCN_NCRYPT_PCP_IDENTITY_KEY","features":[487]},{"name":"XCN_NCRYPT_PCP_NONE","features":[487]},{"name":"XCN_NCRYPT_PCP_SIGNATURE_KEY","features":[487]},{"name":"XCN_NCRYPT_PCP_STORAGE_KEY","features":[487]},{"name":"XCN_NCRYPT_PREFERENCE_MASK_OPERATION","features":[487]},{"name":"XCN_NCRYPT_PREFER_NON_SIGNATURE_OPERATION","features":[487]},{"name":"XCN_NCRYPT_PREFER_SIGNATURE_ONLY_OPERATION","features":[487]},{"name":"XCN_NCRYPT_RNG_OPERATION","features":[487]},{"name":"XCN_NCRYPT_SECRET_AGREEMENT_OPERATION","features":[487]},{"name":"XCN_NCRYPT_SIGNATURE_OPERATION","features":[487]},{"name":"XCN_NCRYPT_TPM12_PROVIDER","features":[487]},{"name":"XCN_NCRYPT_UI_APPCONTAINER_ACCESS_MEDIUM_FLAG","features":[487]},{"name":"XCN_NCRYPT_UI_FINGERPRINT_PROTECTION_FLAG","features":[487]},{"name":"XCN_NCRYPT_UI_FORCE_HIGH_PROTECTION_FLAG","features":[487]},{"name":"XCN_NCRYPT_UI_NO_PROTECTION_FLAG","features":[487]},{"name":"XCN_NCRYPT_UI_PROTECT_KEY_FLAG","features":[487]},{"name":"XCN_OIDVerisign_FailInfo","features":[487]},{"name":"XCN_OIDVerisign_MessageType","features":[487]},{"name":"XCN_OIDVerisign_PkiStatus","features":[487]},{"name":"XCN_OIDVerisign_RecipientNonce","features":[487]},{"name":"XCN_OIDVerisign_SenderNonce","features":[487]},{"name":"XCN_OIDVerisign_TransactionID","features":[487]},{"name":"XCN_OID_ANSI_X942","features":[487]},{"name":"XCN_OID_ANSI_X942_DH","features":[487]},{"name":"XCN_OID_ANY_APPLICATION_POLICY","features":[487]},{"name":"XCN_OID_ANY_CERT_POLICY","features":[487]},{"name":"XCN_OID_ANY_ENHANCED_KEY_USAGE","features":[487]},{"name":"XCN_OID_APPLICATION_CERT_POLICIES","features":[487]},{"name":"XCN_OID_APPLICATION_POLICY_CONSTRAINTS","features":[487]},{"name":"XCN_OID_APPLICATION_POLICY_MAPPINGS","features":[487]},{"name":"XCN_OID_ARCHIVED_KEY_ATTR","features":[487]},{"name":"XCN_OID_ARCHIVED_KEY_CERT_HASH","features":[487]},{"name":"XCN_OID_ATTR_SUPPORTED_ALGORITHMS","features":[487]},{"name":"XCN_OID_ATTR_TPM_SECURITY_ASSERTIONS","features":[487]},{"name":"XCN_OID_ATTR_TPM_SPECIFICATION","features":[487]},{"name":"XCN_OID_AUTHORITY_INFO_ACCESS","features":[487]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER","features":[487]},{"name":"XCN_OID_AUTHORITY_KEY_IDENTIFIER2","features":[487]},{"name":"XCN_OID_AUTHORITY_REVOCATION_LIST","features":[487]},{"name":"XCN_OID_AUTO_ENROLL_CTL_USAGE","features":[487]},{"name":"XCN_OID_BACKGROUND_OTHER_LOGOTYPE","features":[487]},{"name":"XCN_OID_BASIC_CONSTRAINTS","features":[487]},{"name":"XCN_OID_BASIC_CONSTRAINTS2","features":[487]},{"name":"XCN_OID_BIOMETRIC_EXT","features":[487]},{"name":"XCN_OID_BUSINESS_CATEGORY","features":[487]},{"name":"XCN_OID_CA_CERTIFICATE","features":[487]},{"name":"XCN_OID_CERTIFICATE_REVOCATION_LIST","features":[487]},{"name":"XCN_OID_CERTIFICATE_TEMPLATE","features":[487]},{"name":"XCN_OID_CERTSRV_CA_VERSION","features":[487]},{"name":"XCN_OID_CERTSRV_CROSSCA_VERSION","features":[487]},{"name":"XCN_OID_CERTSRV_PREVIOUS_CERT_HASH","features":[487]},{"name":"XCN_OID_CERT_DISALLOWED_FILETIME_PROP_ID","features":[487]},{"name":"XCN_OID_CERT_EXTENSIONS","features":[487]},{"name":"XCN_OID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_OID_CERT_KEY_IDENTIFIER_PROP_ID","features":[487]},{"name":"XCN_OID_CERT_MANIFOLD","features":[487]},{"name":"XCN_OID_CERT_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_OID_CERT_POLICIES","features":[487]},{"name":"XCN_OID_CERT_POLICIES_95","features":[487]},{"name":"XCN_OID_CERT_POLICIES_95_QUALIFIER1","features":[487]},{"name":"XCN_OID_CERT_PROP_ID_PREFIX","features":[487]},{"name":"XCN_OID_CERT_SIGNATURE_HASH_PROP_ID","features":[487]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_1","features":[487]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_CURRENT","features":[487]},{"name":"XCN_OID_CERT_STRONG_KEY_OS_PREFIX","features":[487]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_1","features":[487]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_CURRENT","features":[487]},{"name":"XCN_OID_CERT_STRONG_SIGN_OS_PREFIX","features":[487]},{"name":"XCN_OID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID","features":[487]},{"name":"XCN_OID_CMC","features":[487]},{"name":"XCN_OID_CMC_ADD_ATTRIBUTES","features":[487]},{"name":"XCN_OID_CMC_ADD_EXTENSIONS","features":[487]},{"name":"XCN_OID_CMC_DATA_RETURN","features":[487]},{"name":"XCN_OID_CMC_DECRYPTED_POP","features":[487]},{"name":"XCN_OID_CMC_ENCRYPTED_POP","features":[487]},{"name":"XCN_OID_CMC_GET_CERT","features":[487]},{"name":"XCN_OID_CMC_GET_CRL","features":[487]},{"name":"XCN_OID_CMC_IDENTIFICATION","features":[487]},{"name":"XCN_OID_CMC_IDENTITY_PROOF","features":[487]},{"name":"XCN_OID_CMC_ID_CONFIRM_CERT_ACCEPTANCE","features":[487]},{"name":"XCN_OID_CMC_ID_POP_LINK_RANDOM","features":[487]},{"name":"XCN_OID_CMC_ID_POP_LINK_WITNESS","features":[487]},{"name":"XCN_OID_CMC_LRA_POP_WITNESS","features":[487]},{"name":"XCN_OID_CMC_QUERY_PENDING","features":[487]},{"name":"XCN_OID_CMC_RECIPIENT_NONCE","features":[487]},{"name":"XCN_OID_CMC_REG_INFO","features":[487]},{"name":"XCN_OID_CMC_RESPONSE_INFO","features":[487]},{"name":"XCN_OID_CMC_REVOKE_REQUEST","features":[487]},{"name":"XCN_OID_CMC_SENDER_NONCE","features":[487]},{"name":"XCN_OID_CMC_STATUS_INFO","features":[487]},{"name":"XCN_OID_CMC_TRANSACTION_ID","features":[487]},{"name":"XCN_OID_COMMON_NAME","features":[487]},{"name":"XCN_OID_COUNTRY_NAME","features":[487]},{"name":"XCN_OID_CRL_DIST_POINTS","features":[487]},{"name":"XCN_OID_CRL_NEXT_PUBLISH","features":[487]},{"name":"XCN_OID_CRL_NUMBER","features":[487]},{"name":"XCN_OID_CRL_REASON_CODE","features":[487]},{"name":"XCN_OID_CRL_SELF_CDP","features":[487]},{"name":"XCN_OID_CRL_VIRTUAL_BASE","features":[487]},{"name":"XCN_OID_CROSS_CERTIFICATE_PAIR","features":[487]},{"name":"XCN_OID_CROSS_CERT_DIST_POINTS","features":[487]},{"name":"XCN_OID_CTL","features":[487]},{"name":"XCN_OID_CT_PKI_DATA","features":[487]},{"name":"XCN_OID_CT_PKI_RESPONSE","features":[487]},{"name":"XCN_OID_DELTA_CRL_INDICATOR","features":[487]},{"name":"XCN_OID_DESCRIPTION","features":[487]},{"name":"XCN_OID_DESTINATION_INDICATOR","features":[487]},{"name":"XCN_OID_DEVICE_SERIAL_NUMBER","features":[487]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA1_KDF","features":[487]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA256_KDF","features":[487]},{"name":"XCN_OID_DH_SINGLE_PASS_STDDH_SHA384_KDF","features":[487]},{"name":"XCN_OID_DISALLOWED_HASH","features":[487]},{"name":"XCN_OID_DISALLOWED_LIST","features":[487]},{"name":"XCN_OID_DN_QUALIFIER","features":[487]},{"name":"XCN_OID_DOMAIN_COMPONENT","features":[487]},{"name":"XCN_OID_DRM","features":[487]},{"name":"XCN_OID_DRM_INDIVIDUALIZATION","features":[487]},{"name":"XCN_OID_DS","features":[487]},{"name":"XCN_OID_DSALG","features":[487]},{"name":"XCN_OID_DSALG_CRPT","features":[487]},{"name":"XCN_OID_DSALG_HASH","features":[487]},{"name":"XCN_OID_DSALG_RSA","features":[487]},{"name":"XCN_OID_DSALG_SIGN","features":[487]},{"name":"XCN_OID_DS_EMAIL_REPLICATION","features":[487]},{"name":"XCN_OID_ECC_CURVE_P256","features":[487]},{"name":"XCN_OID_ECC_CURVE_P384","features":[487]},{"name":"XCN_OID_ECC_CURVE_P521","features":[487]},{"name":"XCN_OID_ECC_PUBLIC_KEY","features":[487]},{"name":"XCN_OID_ECDSA_SHA1","features":[487]},{"name":"XCN_OID_ECDSA_SHA256","features":[487]},{"name":"XCN_OID_ECDSA_SHA384","features":[487]},{"name":"XCN_OID_ECDSA_SHA512","features":[487]},{"name":"XCN_OID_ECDSA_SPECIFIED","features":[487]},{"name":"XCN_OID_EFS_RECOVERY","features":[487]},{"name":"XCN_OID_EMBEDDED_NT_CRYPTO","features":[487]},{"name":"XCN_OID_ENCRYPTED_KEY_HASH","features":[487]},{"name":"XCN_OID_ENHANCED_KEY_USAGE","features":[487]},{"name":"XCN_OID_ENROLLMENT_AGENT","features":[487]},{"name":"XCN_OID_ENROLLMENT_CSP_PROVIDER","features":[487]},{"name":"XCN_OID_ENROLLMENT_NAME_VALUE_PAIR","features":[487]},{"name":"XCN_OID_ENROLL_ATTESTATION_CHALLENGE","features":[487]},{"name":"XCN_OID_ENROLL_ATTESTATION_STATEMENT","features":[487]},{"name":"XCN_OID_ENROLL_CAXCHGCERT_HASH","features":[487]},{"name":"XCN_OID_ENROLL_CERTTYPE_EXTENSION","features":[487]},{"name":"XCN_OID_ENROLL_EKPUB_CHALLENGE","features":[487]},{"name":"XCN_OID_ENROLL_EKVERIFYCERT","features":[487]},{"name":"XCN_OID_ENROLL_EKVERIFYCREDS","features":[487]},{"name":"XCN_OID_ENROLL_EKVERIFYKEY","features":[487]},{"name":"XCN_OID_ENROLL_EK_INFO","features":[487]},{"name":"XCN_OID_ENROLL_ENCRYPTION_ALGORITHM","features":[487]},{"name":"XCN_OID_ENROLL_KSP_NAME","features":[487]},{"name":"XCN_OID_ENROLL_SCEP_ERROR","features":[487]},{"name":"XCN_OID_ENTERPRISE_OID_ROOT","features":[487]},{"name":"XCN_OID_EV_RDN_COUNTRY","features":[487]},{"name":"XCN_OID_EV_RDN_LOCALE","features":[487]},{"name":"XCN_OID_EV_RDN_STATE_OR_PROVINCE","features":[487]},{"name":"XCN_OID_FACSIMILE_TELEPHONE_NUMBER","features":[487]},{"name":"XCN_OID_FRESHEST_CRL","features":[487]},{"name":"XCN_OID_GIVEN_NAME","features":[487]},{"name":"XCN_OID_INFOSEC","features":[487]},{"name":"XCN_OID_INFOSEC_SuiteAConfidentiality","features":[487]},{"name":"XCN_OID_INFOSEC_SuiteAIntegrity","features":[487]},{"name":"XCN_OID_INFOSEC_SuiteAKMandSig","features":[487]},{"name":"XCN_OID_INFOSEC_SuiteAKeyManagement","features":[487]},{"name":"XCN_OID_INFOSEC_SuiteASignature","features":[487]},{"name":"XCN_OID_INFOSEC_SuiteATokenProtection","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicConfidentiality","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicIntegrity","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicKMandSig","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicKMandUpdSig","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicKeyManagement","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicSignature","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicTokenProtection","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedInteg","features":[487]},{"name":"XCN_OID_INFOSEC_mosaicUpdatedSig","features":[487]},{"name":"XCN_OID_INFOSEC_sdnsConfidentiality","features":[487]},{"name":"XCN_OID_INFOSEC_sdnsIntegrity","features":[487]},{"name":"XCN_OID_INFOSEC_sdnsKMandSig","features":[487]},{"name":"XCN_OID_INFOSEC_sdnsKeyManagement","features":[487]},{"name":"XCN_OID_INFOSEC_sdnsSignature","features":[487]},{"name":"XCN_OID_INFOSEC_sdnsTokenProtection","features":[487]},{"name":"XCN_OID_INHIBIT_ANY_POLICY","features":[487]},{"name":"XCN_OID_INITIALS","features":[487]},{"name":"XCN_OID_INTERNATIONALIZED_EMAIL_ADDRESS","features":[487]},{"name":"XCN_OID_INTERNATIONAL_ISDN_NUMBER","features":[487]},{"name":"XCN_OID_IPSEC_KP_IKE_INTERMEDIATE","features":[487]},{"name":"XCN_OID_ISSUED_CERT_HASH","features":[487]},{"name":"XCN_OID_ISSUER_ALT_NAME","features":[487]},{"name":"XCN_OID_ISSUER_ALT_NAME2","features":[487]},{"name":"XCN_OID_ISSUING_DIST_POINT","features":[487]},{"name":"XCN_OID_KEYID_RDN","features":[487]},{"name":"XCN_OID_KEY_ATTRIBUTES","features":[487]},{"name":"XCN_OID_KEY_USAGE","features":[487]},{"name":"XCN_OID_KEY_USAGE_RESTRICTION","features":[487]},{"name":"XCN_OID_KP_CA_EXCHANGE","features":[487]},{"name":"XCN_OID_KP_CSP_SIGNATURE","features":[487]},{"name":"XCN_OID_KP_CTL_USAGE_SIGNING","features":[487]},{"name":"XCN_OID_KP_DOCUMENT_SIGNING","features":[487]},{"name":"XCN_OID_KP_EFS","features":[487]},{"name":"XCN_OID_KP_KERNEL_MODE_CODE_SIGNING","features":[487]},{"name":"XCN_OID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING","features":[487]},{"name":"XCN_OID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING","features":[487]},{"name":"XCN_OID_KP_KEY_RECOVERY","features":[487]},{"name":"XCN_OID_KP_KEY_RECOVERY_AGENT","features":[487]},{"name":"XCN_OID_KP_LIFETIME_SIGNING","features":[487]},{"name":"XCN_OID_KP_MOBILE_DEVICE_SOFTWARE","features":[487]},{"name":"XCN_OID_KP_QUALIFIED_SUBORDINATION","features":[487]},{"name":"XCN_OID_KP_SMARTCARD_LOGON","features":[487]},{"name":"XCN_OID_KP_SMART_DISPLAY","features":[487]},{"name":"XCN_OID_KP_TIME_STAMP_SIGNING","features":[487]},{"name":"XCN_OID_KP_TPM_AIK_CERTIFICATE","features":[487]},{"name":"XCN_OID_KP_TPM_EK_CERTIFICATE","features":[487]},{"name":"XCN_OID_KP_TPM_PLATFORM_CERTIFICATE","features":[487]},{"name":"XCN_OID_LEGACY_POLICY_MAPPINGS","features":[487]},{"name":"XCN_OID_LICENSES","features":[487]},{"name":"XCN_OID_LICENSE_SERVER","features":[487]},{"name":"XCN_OID_LOCALITY_NAME","features":[487]},{"name":"XCN_OID_LOCAL_MACHINE_KEYSET","features":[487]},{"name":"XCN_OID_LOGOTYPE_EXT","features":[487]},{"name":"XCN_OID_LOYALTY_OTHER_LOGOTYPE","features":[487]},{"name":"XCN_OID_MEMBER","features":[487]},{"name":"XCN_OID_NAME_CONSTRAINTS","features":[487]},{"name":"XCN_OID_NETSCAPE","features":[487]},{"name":"XCN_OID_NETSCAPE_BASE_URL","features":[487]},{"name":"XCN_OID_NETSCAPE_CA_POLICY_URL","features":[487]},{"name":"XCN_OID_NETSCAPE_CA_REVOCATION_URL","features":[487]},{"name":"XCN_OID_NETSCAPE_CERT_EXTENSION","features":[487]},{"name":"XCN_OID_NETSCAPE_CERT_RENEWAL_URL","features":[487]},{"name":"XCN_OID_NETSCAPE_CERT_SEQUENCE","features":[487]},{"name":"XCN_OID_NETSCAPE_CERT_TYPE","features":[487]},{"name":"XCN_OID_NETSCAPE_COMMENT","features":[487]},{"name":"XCN_OID_NETSCAPE_DATA_TYPE","features":[487]},{"name":"XCN_OID_NETSCAPE_REVOCATION_URL","features":[487]},{"name":"XCN_OID_NETSCAPE_SSL_SERVER_NAME","features":[487]},{"name":"XCN_OID_NEXT_UPDATE_LOCATION","features":[487]},{"name":"XCN_OID_NIST_AES128_CBC","features":[487]},{"name":"XCN_OID_NIST_AES128_WRAP","features":[487]},{"name":"XCN_OID_NIST_AES192_CBC","features":[487]},{"name":"XCN_OID_NIST_AES192_WRAP","features":[487]},{"name":"XCN_OID_NIST_AES256_CBC","features":[487]},{"name":"XCN_OID_NIST_AES256_WRAP","features":[487]},{"name":"XCN_OID_NIST_sha256","features":[487]},{"name":"XCN_OID_NIST_sha384","features":[487]},{"name":"XCN_OID_NIST_sha512","features":[487]},{"name":"XCN_OID_NONE","features":[487]},{"name":"XCN_OID_NT5_CRYPTO","features":[487]},{"name":"XCN_OID_NTDS_REPLICATION","features":[487]},{"name":"XCN_OID_NT_PRINCIPAL_NAME","features":[487]},{"name":"XCN_OID_OEM_WHQL_CRYPTO","features":[487]},{"name":"XCN_OID_OIW","features":[487]},{"name":"XCN_OID_OIWDIR","features":[487]},{"name":"XCN_OID_OIWDIR_CRPT","features":[487]},{"name":"XCN_OID_OIWDIR_HASH","features":[487]},{"name":"XCN_OID_OIWDIR_SIGN","features":[487]},{"name":"XCN_OID_OIWDIR_md2","features":[487]},{"name":"XCN_OID_OIWDIR_md2RSA","features":[487]},{"name":"XCN_OID_OIWSEC","features":[487]},{"name":"XCN_OID_OIWSEC_desCBC","features":[487]},{"name":"XCN_OID_OIWSEC_desCFB","features":[487]},{"name":"XCN_OID_OIWSEC_desECB","features":[487]},{"name":"XCN_OID_OIWSEC_desEDE","features":[487]},{"name":"XCN_OID_OIWSEC_desMAC","features":[487]},{"name":"XCN_OID_OIWSEC_desOFB","features":[487]},{"name":"XCN_OID_OIWSEC_dhCommMod","features":[487]},{"name":"XCN_OID_OIWSEC_dsa","features":[487]},{"name":"XCN_OID_OIWSEC_dsaComm","features":[487]},{"name":"XCN_OID_OIWSEC_dsaCommSHA","features":[487]},{"name":"XCN_OID_OIWSEC_dsaCommSHA1","features":[487]},{"name":"XCN_OID_OIWSEC_dsaSHA1","features":[487]},{"name":"XCN_OID_OIWSEC_keyHashSeal","features":[487]},{"name":"XCN_OID_OIWSEC_md2RSASign","features":[487]},{"name":"XCN_OID_OIWSEC_md4RSA","features":[487]},{"name":"XCN_OID_OIWSEC_md4RSA2","features":[487]},{"name":"XCN_OID_OIWSEC_md5RSA","features":[487]},{"name":"XCN_OID_OIWSEC_md5RSASign","features":[487]},{"name":"XCN_OID_OIWSEC_mdc2","features":[487]},{"name":"XCN_OID_OIWSEC_mdc2RSA","features":[487]},{"name":"XCN_OID_OIWSEC_rsaSign","features":[487]},{"name":"XCN_OID_OIWSEC_rsaXchg","features":[487]},{"name":"XCN_OID_OIWSEC_sha","features":[487]},{"name":"XCN_OID_OIWSEC_sha1","features":[487]},{"name":"XCN_OID_OIWSEC_sha1RSASign","features":[487]},{"name":"XCN_OID_OIWSEC_shaDSA","features":[487]},{"name":"XCN_OID_OIWSEC_shaRSA","features":[487]},{"name":"XCN_OID_ORGANIZATIONAL_UNIT_NAME","features":[487]},{"name":"XCN_OID_ORGANIZATION_NAME","features":[487]},{"name":"XCN_OID_OS_VERSION","features":[487]},{"name":"XCN_OID_OWNER","features":[487]},{"name":"XCN_OID_PHYSICAL_DELIVERY_OFFICE_NAME","features":[487]},{"name":"XCN_OID_PKCS","features":[487]},{"name":"XCN_OID_PKCS_1","features":[487]},{"name":"XCN_OID_PKCS_10","features":[487]},{"name":"XCN_OID_PKCS_12","features":[487]},{"name":"XCN_OID_PKCS_12_EXTENDED_ATTRIBUTES","features":[487]},{"name":"XCN_OID_PKCS_12_FRIENDLY_NAME_ATTR","features":[487]},{"name":"XCN_OID_PKCS_12_KEY_PROVIDER_NAME_ATTR","features":[487]},{"name":"XCN_OID_PKCS_12_LOCAL_KEY_ID","features":[487]},{"name":"XCN_OID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID","features":[487]},{"name":"XCN_OID_PKCS_12_PbeIds","features":[487]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC2","features":[487]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And128BitRC4","features":[487]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And2KeyTripleDES","features":[487]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And3KeyTripleDES","features":[487]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC2","features":[487]},{"name":"XCN_OID_PKCS_12_pbeWithSHA1And40BitRC4","features":[487]},{"name":"XCN_OID_PKCS_2","features":[487]},{"name":"XCN_OID_PKCS_3","features":[487]},{"name":"XCN_OID_PKCS_4","features":[487]},{"name":"XCN_OID_PKCS_5","features":[487]},{"name":"XCN_OID_PKCS_6","features":[487]},{"name":"XCN_OID_PKCS_7","features":[487]},{"name":"XCN_OID_PKCS_7_DATA","features":[487]},{"name":"XCN_OID_PKCS_7_DIGESTED","features":[487]},{"name":"XCN_OID_PKCS_7_ENCRYPTED","features":[487]},{"name":"XCN_OID_PKCS_7_ENVELOPED","features":[487]},{"name":"XCN_OID_PKCS_7_SIGNED","features":[487]},{"name":"XCN_OID_PKCS_7_SIGNEDANDENVELOPED","features":[487]},{"name":"XCN_OID_PKCS_8","features":[487]},{"name":"XCN_OID_PKCS_9","features":[487]},{"name":"XCN_OID_PKCS_9_CONTENT_TYPE","features":[487]},{"name":"XCN_OID_PKCS_9_MESSAGE_DIGEST","features":[487]},{"name":"XCN_OID_PKINIT_KP_KDC","features":[487]},{"name":"XCN_OID_PKIX","features":[487]},{"name":"XCN_OID_PKIX_ACC_DESCR","features":[487]},{"name":"XCN_OID_PKIX_CA_ISSUERS","features":[487]},{"name":"XCN_OID_PKIX_CA_REPOSITORY","features":[487]},{"name":"XCN_OID_PKIX_KP","features":[487]},{"name":"XCN_OID_PKIX_KP_CLIENT_AUTH","features":[487]},{"name":"XCN_OID_PKIX_KP_CODE_SIGNING","features":[487]},{"name":"XCN_OID_PKIX_KP_EMAIL_PROTECTION","features":[487]},{"name":"XCN_OID_PKIX_KP_IPSEC_END_SYSTEM","features":[487]},{"name":"XCN_OID_PKIX_KP_IPSEC_TUNNEL","features":[487]},{"name":"XCN_OID_PKIX_KP_IPSEC_USER","features":[487]},{"name":"XCN_OID_PKIX_KP_OCSP_SIGNING","features":[487]},{"name":"XCN_OID_PKIX_KP_SERVER_AUTH","features":[487]},{"name":"XCN_OID_PKIX_KP_TIMESTAMP_SIGNING","features":[487]},{"name":"XCN_OID_PKIX_NO_SIGNATURE","features":[487]},{"name":"XCN_OID_PKIX_OCSP","features":[487]},{"name":"XCN_OID_PKIX_OCSP_BASIC_SIGNED_RESPONSE","features":[487]},{"name":"XCN_OID_PKIX_OCSP_NOCHECK","features":[487]},{"name":"XCN_OID_PKIX_OCSP_NONCE","features":[487]},{"name":"XCN_OID_PKIX_PE","features":[487]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_CPS","features":[487]},{"name":"XCN_OID_PKIX_POLICY_QUALIFIER_USERNOTICE","features":[487]},{"name":"XCN_OID_PKIX_TIME_STAMPING","features":[487]},{"name":"XCN_OID_POLICY_CONSTRAINTS","features":[487]},{"name":"XCN_OID_POLICY_MAPPINGS","features":[487]},{"name":"XCN_OID_POSTAL_ADDRESS","features":[487]},{"name":"XCN_OID_POSTAL_CODE","features":[487]},{"name":"XCN_OID_POST_OFFICE_BOX","features":[487]},{"name":"XCN_OID_PREFERRED_DELIVERY_METHOD","features":[487]},{"name":"XCN_OID_PRESENTATION_ADDRESS","features":[487]},{"name":"XCN_OID_PRIVATEKEY_USAGE_PERIOD","features":[487]},{"name":"XCN_OID_PRODUCT_UPDATE","features":[487]},{"name":"XCN_OID_QC_EU_COMPLIANCE","features":[487]},{"name":"XCN_OID_QC_SSCD","features":[487]},{"name":"XCN_OID_QC_STATEMENTS_EXT","features":[487]},{"name":"XCN_OID_RDN_DUMMY_SIGNER","features":[487]},{"name":"XCN_OID_RDN_TPM_MANUFACTURER","features":[487]},{"name":"XCN_OID_RDN_TPM_MODEL","features":[487]},{"name":"XCN_OID_RDN_TPM_VERSION","features":[487]},{"name":"XCN_OID_REASON_CODE_HOLD","features":[487]},{"name":"XCN_OID_REGISTERED_ADDRESS","features":[487]},{"name":"XCN_OID_REMOVE_CERTIFICATE","features":[487]},{"name":"XCN_OID_RENEWAL_CERTIFICATE","features":[487]},{"name":"XCN_OID_REQUEST_CLIENT_INFO","features":[487]},{"name":"XCN_OID_REQUIRE_CERT_CHAIN_POLICY","features":[487]},{"name":"XCN_OID_REVOKED_LIST_SIGNER","features":[487]},{"name":"XCN_OID_RFC3161_counterSign","features":[487]},{"name":"XCN_OID_ROLE_OCCUPANT","features":[487]},{"name":"XCN_OID_ROOT_LIST_SIGNER","features":[487]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION","features":[487]},{"name":"XCN_OID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION","features":[487]},{"name":"XCN_OID_ROOT_PROGRAM_FLAGS","features":[487]},{"name":"XCN_OID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL","features":[487]},{"name":"XCN_OID_RSA","features":[487]},{"name":"XCN_OID_RSAES_OAEP","features":[487]},{"name":"XCN_OID_RSA_DES_EDE3_CBC","features":[487]},{"name":"XCN_OID_RSA_DH","features":[487]},{"name":"XCN_OID_RSA_ENCRYPT","features":[487]},{"name":"XCN_OID_RSA_HASH","features":[487]},{"name":"XCN_OID_RSA_MD2","features":[487]},{"name":"XCN_OID_RSA_MD2RSA","features":[487]},{"name":"XCN_OID_RSA_MD4","features":[487]},{"name":"XCN_OID_RSA_MD4RSA","features":[487]},{"name":"XCN_OID_RSA_MD5","features":[487]},{"name":"XCN_OID_RSA_MD5RSA","features":[487]},{"name":"XCN_OID_RSA_MGF1","features":[487]},{"name":"XCN_OID_RSA_PSPECIFIED","features":[487]},{"name":"XCN_OID_RSA_RC2CBC","features":[487]},{"name":"XCN_OID_RSA_RC4","features":[487]},{"name":"XCN_OID_RSA_RC5_CBCPad","features":[487]},{"name":"XCN_OID_RSA_RSA","features":[487]},{"name":"XCN_OID_RSA_SETOAEP_RSA","features":[487]},{"name":"XCN_OID_RSA_SHA1RSA","features":[487]},{"name":"XCN_OID_RSA_SHA256RSA","features":[487]},{"name":"XCN_OID_RSA_SHA384RSA","features":[487]},{"name":"XCN_OID_RSA_SHA512RSA","features":[487]},{"name":"XCN_OID_RSA_SMIMECapabilities","features":[487]},{"name":"XCN_OID_RSA_SMIMEalg","features":[487]},{"name":"XCN_OID_RSA_SMIMEalgCMS3DESwrap","features":[487]},{"name":"XCN_OID_RSA_SMIMEalgCMSRC2wrap","features":[487]},{"name":"XCN_OID_RSA_SMIMEalgESDH","features":[487]},{"name":"XCN_OID_RSA_SSA_PSS","features":[487]},{"name":"XCN_OID_RSA_certExtensions","features":[487]},{"name":"XCN_OID_RSA_challengePwd","features":[487]},{"name":"XCN_OID_RSA_contentType","features":[487]},{"name":"XCN_OID_RSA_counterSign","features":[487]},{"name":"XCN_OID_RSA_data","features":[487]},{"name":"XCN_OID_RSA_digestedData","features":[487]},{"name":"XCN_OID_RSA_emailAddr","features":[487]},{"name":"XCN_OID_RSA_encryptedData","features":[487]},{"name":"XCN_OID_RSA_envelopedData","features":[487]},{"name":"XCN_OID_RSA_extCertAttrs","features":[487]},{"name":"XCN_OID_RSA_hashedData","features":[487]},{"name":"XCN_OID_RSA_messageDigest","features":[487]},{"name":"XCN_OID_RSA_preferSignedData","features":[487]},{"name":"XCN_OID_RSA_signEnvData","features":[487]},{"name":"XCN_OID_RSA_signedData","features":[487]},{"name":"XCN_OID_RSA_signingTime","features":[487]},{"name":"XCN_OID_RSA_unstructAddr","features":[487]},{"name":"XCN_OID_RSA_unstructName","features":[487]},{"name":"XCN_OID_SEARCH_GUIDE","features":[487]},{"name":"XCN_OID_SEE_ALSO","features":[487]},{"name":"XCN_OID_SERIALIZED","features":[487]},{"name":"XCN_OID_SERVER_GATED_CRYPTO","features":[487]},{"name":"XCN_OID_SGC_NETSCAPE","features":[487]},{"name":"XCN_OID_SORTED_CTL","features":[487]},{"name":"XCN_OID_STATE_OR_PROVINCE_NAME","features":[487]},{"name":"XCN_OID_STREET_ADDRESS","features":[487]},{"name":"XCN_OID_SUBJECT_ALT_NAME","features":[487]},{"name":"XCN_OID_SUBJECT_ALT_NAME2","features":[487]},{"name":"XCN_OID_SUBJECT_DIR_ATTRS","features":[487]},{"name":"XCN_OID_SUBJECT_INFO_ACCESS","features":[487]},{"name":"XCN_OID_SUBJECT_KEY_IDENTIFIER","features":[487]},{"name":"XCN_OID_SUPPORTED_APPLICATION_CONTEXT","features":[487]},{"name":"XCN_OID_SUR_NAME","features":[487]},{"name":"XCN_OID_TELEPHONE_NUMBER","features":[487]},{"name":"XCN_OID_TELETEXT_TERMINAL_IDENTIFIER","features":[487]},{"name":"XCN_OID_TELEX_NUMBER","features":[487]},{"name":"XCN_OID_TIMESTAMP_TOKEN","features":[487]},{"name":"XCN_OID_TITLE","features":[487]},{"name":"XCN_OID_USER_CERTIFICATE","features":[487]},{"name":"XCN_OID_USER_PASSWORD","features":[487]},{"name":"XCN_OID_VERISIGN_BITSTRING_6_13","features":[487]},{"name":"XCN_OID_VERISIGN_ISS_STRONG_CRYPTO","features":[487]},{"name":"XCN_OID_VERISIGN_ONSITE_JURISDICTION_HASH","features":[487]},{"name":"XCN_OID_VERISIGN_PRIVATE_6_9","features":[487]},{"name":"XCN_OID_WHQL_CRYPTO","features":[487]},{"name":"XCN_OID_X21_ADDRESS","features":[487]},{"name":"XCN_OID_X957","features":[487]},{"name":"XCN_OID_X957_DSA","features":[487]},{"name":"XCN_OID_X957_SHA1DSA","features":[487]},{"name":"XCN_OID_YESNO_TRUST_ATTR","features":[487]},{"name":"XCN_PROPERTYID_NONE","features":[487]},{"name":"XCN_PROV_DH_SCHANNEL","features":[487]},{"name":"XCN_PROV_DSS","features":[487]},{"name":"XCN_PROV_DSS_DH","features":[487]},{"name":"XCN_PROV_EC_ECDSA_FULL","features":[487]},{"name":"XCN_PROV_EC_ECDSA_SIG","features":[487]},{"name":"XCN_PROV_EC_ECNRA_FULL","features":[487]},{"name":"XCN_PROV_EC_ECNRA_SIG","features":[487]},{"name":"XCN_PROV_FORTEZZA","features":[487]},{"name":"XCN_PROV_INTEL_SEC","features":[487]},{"name":"XCN_PROV_MS_EXCHANGE","features":[487]},{"name":"XCN_PROV_NONE","features":[487]},{"name":"XCN_PROV_REPLACE_OWF","features":[487]},{"name":"XCN_PROV_RNG","features":[487]},{"name":"XCN_PROV_RSA_AES","features":[487]},{"name":"XCN_PROV_RSA_FULL","features":[487]},{"name":"XCN_PROV_RSA_SCHANNEL","features":[487]},{"name":"XCN_PROV_RSA_SIG","features":[487]},{"name":"XCN_PROV_SPYRUS_LYNKS","features":[487]},{"name":"XCN_PROV_SSL","features":[487]},{"name":"XECI_AUTOENROLL","features":[487]},{"name":"XECI_CERTREQ","features":[487]},{"name":"XECI_DISABLE","features":[487]},{"name":"XECI_REQWIZARD","features":[487]},{"name":"XECI_XENROLL","features":[487]},{"name":"XECP_STRING_PROPERTY","features":[487]},{"name":"XECR_CMC","features":[487]},{"name":"XECR_PKCS10_V1_5","features":[487]},{"name":"XECR_PKCS10_V2_0","features":[487]},{"name":"XECR_PKCS7","features":[487]},{"name":"XECT_EXTENSION_V1","features":[487]},{"name":"XECT_EXTENSION_V2","features":[487]},{"name":"XEKL_KEYSIZE","features":[487]},{"name":"XEKL_KEYSIZE_DEFAULT","features":[487]},{"name":"XEKL_KEYSIZE_INC","features":[487]},{"name":"XEKL_KEYSIZE_MAX","features":[487]},{"name":"XEKL_KEYSIZE_MIN","features":[487]},{"name":"XEKL_KEYSPEC","features":[487]},{"name":"XEKL_KEYSPEC_KEYX","features":[487]},{"name":"XEKL_KEYSPEC_SIG","features":[487]},{"name":"XEPR_CADNS","features":[487]},{"name":"XEPR_CAFRIENDLYNAME","features":[487]},{"name":"XEPR_CANAME","features":[487]},{"name":"XEPR_DATE","features":[487]},{"name":"XEPR_ENUM_FIRST","features":[487]},{"name":"XEPR_HASH","features":[487]},{"name":"XEPR_REQUESTID","features":[487]},{"name":"XEPR_TEMPLATENAME","features":[487]},{"name":"XEPR_V1TEMPLATENAME","features":[487]},{"name":"XEPR_V2TEMPLATEOID","features":[487]},{"name":"XEPR_VERSION","features":[487]},{"name":"dwCAXCHGOVERLAPPERIODCOUNTDEFAULT","features":[487]},{"name":"dwCAXCHGVALIDITYPERIODCOUNTDEFAULT","features":[487]},{"name":"dwCRLDELTAOVERLAPPERIODCOUNTDEFAULT","features":[487]},{"name":"dwCRLDELTAPERIODCOUNTDEFAULT","features":[487]},{"name":"dwCRLOVERLAPPERIODCOUNTDEFAULT","features":[487]},{"name":"dwCRLPERIODCOUNTDEFAULT","features":[487]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ENTERPRISE","features":[487]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_ROOT","features":[487]},{"name":"dwVALIDITYPERIODCOUNTDEFAULT_STANDALONE","features":[487]},{"name":"szBACKUPANNOTATION","features":[487]},{"name":"szDBBASENAMEPARM","features":[487]},{"name":"szNAMESEPARATORDEFAULT","features":[487]},{"name":"szPROPASNTAG","features":[487]},{"name":"szRESTOREANNOTATION","features":[487]},{"name":"wszAT_EKCERTINF","features":[487]},{"name":"wszAT_TESTROOT","features":[487]},{"name":"wszCAPOLICYFILE","features":[487]},{"name":"wszCERTEXITMODULE_POSTFIX","features":[487]},{"name":"wszCERTIFICATETRANSPARENCYFLAGS","features":[487]},{"name":"wszCERTMANAGE_SUFFIX","features":[487]},{"name":"wszCERTPOLICYMODULE_POSTFIX","features":[487]},{"name":"wszCERT_TYPE","features":[487]},{"name":"wszCERT_TYPE_CLIENT","features":[487]},{"name":"wszCERT_TYPE_CODESIGN","features":[487]},{"name":"wszCERT_TYPE_CUSTOMER","features":[487]},{"name":"wszCERT_TYPE_MERCHANT","features":[487]},{"name":"wszCERT_TYPE_PAYMENT","features":[487]},{"name":"wszCERT_TYPE_SERVER","features":[487]},{"name":"wszCERT_VERSION","features":[487]},{"name":"wszCERT_VERSION_1","features":[487]},{"name":"wszCERT_VERSION_2","features":[487]},{"name":"wszCERT_VERSION_3","features":[487]},{"name":"wszCLASS_CERTADMIN","features":[487]},{"name":"wszCLASS_CERTCONFIG","features":[487]},{"name":"wszCLASS_CERTDBMEM","features":[487]},{"name":"wszCLASS_CERTENCODE","features":[487]},{"name":"wszCLASS_CERTGETCONFIG","features":[487]},{"name":"wszCLASS_CERTREQUEST","features":[487]},{"name":"wszCLASS_CERTSERVEREXIT","features":[487]},{"name":"wszCLASS_CERTSERVERPOLICY","features":[487]},{"name":"wszCLASS_CERTVIEW","features":[487]},{"name":"wszCMM_PROP_COPYRIGHT","features":[487]},{"name":"wszCMM_PROP_DESCRIPTION","features":[487]},{"name":"wszCMM_PROP_DISPLAY_HWND","features":[487]},{"name":"wszCMM_PROP_FILEVER","features":[487]},{"name":"wszCMM_PROP_ISMULTITHREADED","features":[487]},{"name":"wszCMM_PROP_NAME","features":[487]},{"name":"wszCMM_PROP_PRODUCTVER","features":[487]},{"name":"wszCNGENCRYPTIONALGORITHM","features":[487]},{"name":"wszCNGHASHALGORITHM","features":[487]},{"name":"wszCNGPUBLICKEYALGORITHM","features":[487]},{"name":"wszCONFIG_AUTHORITY","features":[487]},{"name":"wszCONFIG_COMMENT","features":[487]},{"name":"wszCONFIG_COMMONNAME","features":[487]},{"name":"wszCONFIG_CONFIG","features":[487]},{"name":"wszCONFIG_COUNTRY","features":[487]},{"name":"wszCONFIG_DESCRIPTION","features":[487]},{"name":"wszCONFIG_EXCHANGECERTIFICATE","features":[487]},{"name":"wszCONFIG_FLAGS","features":[487]},{"name":"wszCONFIG_LOCALITY","features":[487]},{"name":"wszCONFIG_ORGANIZATION","features":[487]},{"name":"wszCONFIG_ORGUNIT","features":[487]},{"name":"wszCONFIG_SANITIZEDNAME","features":[487]},{"name":"wszCONFIG_SANITIZEDSHORTNAME","features":[487]},{"name":"wszCONFIG_SERVER","features":[487]},{"name":"wszCONFIG_SHORTNAME","features":[487]},{"name":"wszCONFIG_SIGNATURECERTIFICATE","features":[487]},{"name":"wszCONFIG_STATE","features":[487]},{"name":"wszCONFIG_WEBENROLLMENTSERVERS","features":[487]},{"name":"wszCRLPUBLISHRETRYCOUNT","features":[487]},{"name":"wszCRTFILENAMEEXT","features":[487]},{"name":"wszDATFILENAMEEXT","features":[487]},{"name":"wszDBBACKUPCERTBACKDAT","features":[487]},{"name":"wszDBBACKUPSUBDIR","features":[487]},{"name":"wszDBFILENAMEEXT","features":[487]},{"name":"wszENCRYPTIONALGORITHM","features":[487]},{"name":"wszENROLLMENTAGENTRIGHTS","features":[487]},{"name":"wszHASHALGORITHM","features":[487]},{"name":"wszINFKEY_ALTERNATESIGNATUREALGORITHM","features":[487]},{"name":"wszINFKEY_ATTESTPRIVATEKEY","features":[487]},{"name":"wszINFKEY_CACAPABILITIES","features":[487]},{"name":"wszINFKEY_CACERTS","features":[487]},{"name":"wszINFKEY_CATHUMBPRINT","features":[487]},{"name":"wszINFKEY_CCDPSYNCDELTATIME","features":[487]},{"name":"wszINFKEY_CHALLENGEPASSWORD","features":[487]},{"name":"wszINFKEY_CONTINUE","features":[487]},{"name":"wszINFKEY_CRITICAL","features":[487]},{"name":"wszINFKEY_CRLDELTAPERIODCOUNT","features":[487]},{"name":"wszINFKEY_CRLDELTAPERIODSTRING","features":[487]},{"name":"wszINFKEY_CRLPERIODCOUNT","features":[487]},{"name":"wszINFKEY_CRLPERIODSTRING","features":[487]},{"name":"wszINFKEY_DIRECTORYNAME","features":[487]},{"name":"wszINFKEY_DNS","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERSTYPE","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS_A","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS_B","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS_BASE","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS_COFACTOR","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS_ORDER","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS_P","features":[487]},{"name":"wszINFKEY_ECCKEYPARAMETERS_SEED","features":[487]},{"name":"wszINFKEY_EMAIL","features":[487]},{"name":"wszINFKEY_EMPTY","features":[487]},{"name":"wszINFKEY_ENABLEKEYCOUNTING","features":[487]},{"name":"wszINFKEY_ENCRYPTIONALGORITHM","features":[487]},{"name":"wszINFKEY_ENCRYPTIONLENGTH","features":[487]},{"name":"wszINFKEY_EXCLUDE","features":[487]},{"name":"wszINFKEY_EXPORTABLE","features":[487]},{"name":"wszINFKEY_EXPORTABLEENCRYPTED","features":[487]},{"name":"wszINFKEY_FLAGS","features":[487]},{"name":"wszINFKEY_FORCEUTF8","features":[487]},{"name":"wszINFKEY_FRIENDLYNAME","features":[487]},{"name":"wszINFKEY_HASHALGORITHM","features":[487]},{"name":"wszINFKEY_INCLUDE","features":[487]},{"name":"wszINFKEY_INHIBITPOLICYMAPPING","features":[487]},{"name":"wszINFKEY_IPADDRESS","features":[487]},{"name":"wszINFKEY_KEYALGORITHM","features":[487]},{"name":"wszINFKEY_KEYALGORITHMPARMETERS","features":[487]},{"name":"wszINFKEY_KEYCONTAINER","features":[487]},{"name":"wszINFKEY_KEYLENGTH","features":[487]},{"name":"wszINFKEY_KEYPROTECTION","features":[487]},{"name":"wszINFKEY_KEYUSAGEEXTENSION","features":[487]},{"name":"wszINFKEY_KEYUSAGEPROPERTY","features":[487]},{"name":"wszINFKEY_LEGACYKEYSPEC","features":[487]},{"name":"wszINFKEY_LOADDEFAULTTEMPLATES","features":[487]},{"name":"wszINFKEY_MACHINEKEYSET","features":[487]},{"name":"wszINFKEY_NOTAFTER","features":[487]},{"name":"wszINFKEY_NOTBEFORE","features":[487]},{"name":"wszINFKEY_NOTICE","features":[487]},{"name":"wszINFKEY_OID","features":[487]},{"name":"wszINFKEY_OTHERNAME","features":[487]},{"name":"wszINFKEY_PATHLENGTH","features":[487]},{"name":"wszINFKEY_POLICIES","features":[487]},{"name":"wszINFKEY_PRIVATEKEYARCHIVE","features":[487]},{"name":"wszINFKEY_PROVIDERNAME","features":[487]},{"name":"wszINFKEY_PROVIDERTYPE","features":[487]},{"name":"wszINFKEY_PUBLICKEY","features":[487]},{"name":"wszINFKEY_PUBLICKEYPARAMETERS","features":[487]},{"name":"wszINFKEY_READERNAME","features":[487]},{"name":"wszINFKEY_REGISTEREDID","features":[487]},{"name":"wszINFKEY_RENEWALCERT","features":[487]},{"name":"wszINFKEY_RENEWALKEYLENGTH","features":[487]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODCOUNT","features":[487]},{"name":"wszINFKEY_RENEWALVALIDITYPERIODSTRING","features":[487]},{"name":"wszINFKEY_REQUESTTYPE","features":[487]},{"name":"wszINFKEY_REQUIREEXPLICITPOLICY","features":[487]},{"name":"wszINFKEY_SECURITYDESCRIPTOR","features":[487]},{"name":"wszINFKEY_SERIALNUMBER","features":[487]},{"name":"wszINFKEY_SHOWALLCSPS","features":[487]},{"name":"wszINFKEY_SILENT","features":[487]},{"name":"wszINFKEY_SMIME","features":[487]},{"name":"wszINFKEY_SUBJECT","features":[487]},{"name":"wszINFKEY_SUBJECTNAMEFLAGS","features":[487]},{"name":"wszINFKEY_SUBTREE","features":[487]},{"name":"wszINFKEY_SUPPRESSDEFAULTS","features":[487]},{"name":"wszINFKEY_UICONTEXTMESSAGE","features":[487]},{"name":"wszINFKEY_UPN","features":[487]},{"name":"wszINFKEY_URL","features":[487]},{"name":"wszINFKEY_USEEXISTINGKEY","features":[487]},{"name":"wszINFKEY_USERPROTECTED","features":[487]},{"name":"wszINFKEY_UTF8","features":[487]},{"name":"wszINFKEY_X500NAMEFLAGS","features":[487]},{"name":"wszINFSECTION_AIA","features":[487]},{"name":"wszINFSECTION_APPLICATIONPOLICYCONSTRAINTS","features":[487]},{"name":"wszINFSECTION_APPLICATIONPOLICYMAPPINGS","features":[487]},{"name":"wszINFSECTION_APPLICATIONPOLICYSTATEMENT","features":[487]},{"name":"wszINFSECTION_BASICCONSTRAINTS","features":[487]},{"name":"wszINFSECTION_CAPOLICY","features":[487]},{"name":"wszINFSECTION_CCDP","features":[487]},{"name":"wszINFSECTION_CDP","features":[487]},{"name":"wszINFSECTION_CERTSERVER","features":[487]},{"name":"wszINFSECTION_EKU","features":[487]},{"name":"wszINFSECTION_EXTENSIONS","features":[487]},{"name":"wszINFSECTION_NAMECONSTRAINTS","features":[487]},{"name":"wszINFSECTION_NEWREQUEST","features":[487]},{"name":"wszINFSECTION_POLICYCONSTRAINTS","features":[487]},{"name":"wszINFSECTION_POLICYMAPPINGS","features":[487]},{"name":"wszINFSECTION_POLICYSTATEMENT","features":[487]},{"name":"wszINFSECTION_PROPERTIES","features":[487]},{"name":"wszINFSECTION_REQUESTATTRIBUTES","features":[487]},{"name":"wszINFVALUE_ENDORSEMENTKEY","features":[487]},{"name":"wszINFVALUE_REQUESTTYPE_CERT","features":[487]},{"name":"wszINFVALUE_REQUESTTYPE_CMC","features":[487]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS10","features":[487]},{"name":"wszINFVALUE_REQUESTTYPE_PKCS7","features":[487]},{"name":"wszINFVALUE_REQUESTTYPE_SCEP","features":[487]},{"name":"wszLDAPSESSIONOPTIONVALUE","features":[487]},{"name":"wszLOCALIZEDTIMEPERIODUNITS","features":[487]},{"name":"wszLOGFILENAMEEXT","features":[487]},{"name":"wszLOGPATH","features":[487]},{"name":"wszMACHINEKEYSET","features":[487]},{"name":"wszMICROSOFTCERTMODULE_PREFIX","features":[487]},{"name":"wszNETSCAPEREVOCATIONTYPE","features":[487]},{"name":"wszOCSPCAPROP_CACERTIFICATE","features":[487]},{"name":"wszOCSPCAPROP_CACONFIG","features":[487]},{"name":"wszOCSPCAPROP_CSPNAME","features":[487]},{"name":"wszOCSPCAPROP_ERRORCODE","features":[487]},{"name":"wszOCSPCAPROP_HASHALGORITHMID","features":[487]},{"name":"wszOCSPCAPROP_KEYSPEC","features":[487]},{"name":"wszOCSPCAPROP_LOCALREVOCATIONINFORMATION","features":[487]},{"name":"wszOCSPCAPROP_PROVIDERCLSID","features":[487]},{"name":"wszOCSPCAPROP_PROVIDERPROPERTIES","features":[487]},{"name":"wszOCSPCAPROP_REMINDERDURATION","features":[487]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATE","features":[487]},{"name":"wszOCSPCAPROP_SIGNINGCERTIFICATETEMPLATE","features":[487]},{"name":"wszOCSPCAPROP_SIGNINGFLAGS","features":[487]},{"name":"wszOCSPCOMMONPROP_MAXINCOMINGMESSAGESIZE","features":[487]},{"name":"wszOCSPCOMMONPROP_MAXNUMOFREQUESTENTRIES","features":[487]},{"name":"wszOCSPCOMMONPROP_REQFLAGS","features":[487]},{"name":"wszOCSPISAPIPROP_DEBUG","features":[487]},{"name":"wszOCSPISAPIPROP_MAXAGE","features":[487]},{"name":"wszOCSPISAPIPROP_MAXNUMOFCACHEENTRIES","features":[487]},{"name":"wszOCSPISAPIPROP_NUMOFBACKENDCONNECTIONS","features":[487]},{"name":"wszOCSPISAPIPROP_NUMOFTHREADS","features":[487]},{"name":"wszOCSPISAPIPROP_REFRESHRATE","features":[487]},{"name":"wszOCSPISAPIPROP_VIRTUALROOTNAME","features":[487]},{"name":"wszOCSPPROP_ARRAYCONTROLLER","features":[487]},{"name":"wszOCSPPROP_ARRAYMEMBERS","features":[487]},{"name":"wszOCSPPROP_AUDITFILTER","features":[487]},{"name":"wszOCSPPROP_DEBUG","features":[487]},{"name":"wszOCSPPROP_ENROLLPOLLINTERVAL","features":[487]},{"name":"wszOCSPPROP_LOGLEVEL","features":[487]},{"name":"wszOCSPREVPROP_BASECRL","features":[487]},{"name":"wszOCSPREVPROP_BASECRLURLS","features":[487]},{"name":"wszOCSPREVPROP_CRLURLTIMEOUT","features":[487]},{"name":"wszOCSPREVPROP_DELTACRL","features":[487]},{"name":"wszOCSPREVPROP_DELTACRLURLS","features":[487]},{"name":"wszOCSPREVPROP_ERRORCODE","features":[487]},{"name":"wszOCSPREVPROP_REFRESHTIMEOUT","features":[487]},{"name":"wszOCSPREVPROP_SERIALNUMBERSDIRS","features":[487]},{"name":"wszPERIODDAYS","features":[487]},{"name":"wszPERIODHOURS","features":[487]},{"name":"wszPERIODMINUTES","features":[487]},{"name":"wszPERIODMONTHS","features":[487]},{"name":"wszPERIODSECONDS","features":[487]},{"name":"wszPERIODWEEKS","features":[487]},{"name":"wszPERIODYEARS","features":[487]},{"name":"wszPFXFILENAMEEXT","features":[487]},{"name":"wszPROPATTESTATIONCHALLENGE","features":[487]},{"name":"wszPROPATTRIBNAME","features":[487]},{"name":"wszPROPATTRIBREQUESTID","features":[487]},{"name":"wszPROPATTRIBVALUE","features":[487]},{"name":"wszPROPCALLERNAME","features":[487]},{"name":"wszPROPCATYPE","features":[487]},{"name":"wszPROPCERTCLIENTMACHINE","features":[487]},{"name":"wszPROPCERTCOUNT","features":[487]},{"name":"wszPROPCERTIFICATEENROLLMENTFLAGS","features":[487]},{"name":"wszPROPCERTIFICATEGENERALFLAGS","features":[487]},{"name":"wszPROPCERTIFICATEHASH","features":[487]},{"name":"wszPROPCERTIFICATENOTAFTERDATE","features":[487]},{"name":"wszPROPCERTIFICATENOTBEFOREDATE","features":[487]},{"name":"wszPROPCERTIFICATEPRIVATEKEYFLAGS","features":[487]},{"name":"wszPROPCERTIFICATEPUBLICKEYALGORITHM","features":[487]},{"name":"wszPROPCERTIFICATEPUBLICKEYLENGTH","features":[487]},{"name":"wszPROPCERTIFICATERAWPUBLICKEY","features":[487]},{"name":"wszPROPCERTIFICATERAWPUBLICKEYALGORITHMPARAMETERS","features":[487]},{"name":"wszPROPCERTIFICATERAWSMIMECAPABILITIES","features":[487]},{"name":"wszPROPCERTIFICATEREQUESTID","features":[487]},{"name":"wszPROPCERTIFICATESERIALNUMBER","features":[487]},{"name":"wszPROPCERTIFICATESUBJECTKEYIDENTIFIER","features":[487]},{"name":"wszPROPCERTIFICATETEMPLATE","features":[487]},{"name":"wszPROPCERTIFICATETYPE","features":[487]},{"name":"wszPROPCERTIFICATEUPN","features":[487]},{"name":"wszPROPCERTSTATE","features":[487]},{"name":"wszPROPCERTSUFFIX","features":[487]},{"name":"wszPROPCERTTEMPLATE","features":[487]},{"name":"wszPROPCERTTYPE","features":[487]},{"name":"wszPROPCERTUSAGE","features":[487]},{"name":"wszPROPCHALLENGE","features":[487]},{"name":"wszPROPCLIENTBROWSERMACHINE","features":[487]},{"name":"wszPROPCLIENTDCDNS","features":[487]},{"name":"wszPROPCOMMONNAME","features":[487]},{"name":"wszPROPCONFIGDN","features":[487]},{"name":"wszPROPCOUNTRY","features":[487]},{"name":"wszPROPCRITICALTAG","features":[487]},{"name":"wszPROPCRLCOUNT","features":[487]},{"name":"wszPROPCRLEFFECTIVE","features":[487]},{"name":"wszPROPCRLINDEX","features":[487]},{"name":"wszPROPCRLLASTPUBLISHED","features":[487]},{"name":"wszPROPCRLMINBASE","features":[487]},{"name":"wszPROPCRLNAMEID","features":[487]},{"name":"wszPROPCRLNEXTPUBLISH","features":[487]},{"name":"wszPROPCRLNEXTUPDATE","features":[487]},{"name":"wszPROPCRLNUMBER","features":[487]},{"name":"wszPROPCRLPROPAGATIONCOMPLETE","features":[487]},{"name":"wszPROPCRLPUBLISHATTEMPTS","features":[487]},{"name":"wszPROPCRLPUBLISHERROR","features":[487]},{"name":"wszPROPCRLPUBLISHFLAGS","features":[487]},{"name":"wszPROPCRLPUBLISHSTATUSCODE","features":[487]},{"name":"wszPROPCRLRAWCRL","features":[487]},{"name":"wszPROPCRLROWID","features":[487]},{"name":"wszPROPCRLSTATE","features":[487]},{"name":"wszPROPCRLSUFFIX","features":[487]},{"name":"wszPROPCRLTHISPUBLISH","features":[487]},{"name":"wszPROPCRLTHISUPDATE","features":[487]},{"name":"wszPROPCROSSFOREST","features":[487]},{"name":"wszPROPDCNAME","features":[487]},{"name":"wszPROPDECIMALTAG","features":[487]},{"name":"wszPROPDELTACRLSDISABLED","features":[487]},{"name":"wszPROPDEVICESERIALNUMBER","features":[487]},{"name":"wszPROPDISPOSITION","features":[487]},{"name":"wszPROPDISPOSITIONDENY","features":[487]},{"name":"wszPROPDISPOSITIONPENDING","features":[487]},{"name":"wszPROPDISTINGUISHEDNAME","features":[487]},{"name":"wszPROPDN","features":[487]},{"name":"wszPROPDNS","features":[487]},{"name":"wszPROPDOMAINCOMPONENT","features":[487]},{"name":"wszPROPDOMAINDN","features":[487]},{"name":"wszPROPEMAIL","features":[487]},{"name":"wszPROPENDORSEMENTCERTIFICATEHASH","features":[487]},{"name":"wszPROPENDORSEMENTKEYHASH","features":[487]},{"name":"wszPROPEVENTLOGERROR","features":[487]},{"name":"wszPROPEVENTLOGEXHAUSTIVE","features":[487]},{"name":"wszPROPEVENTLOGTERSE","features":[487]},{"name":"wszPROPEVENTLOGVERBOSE","features":[487]},{"name":"wszPROPEVENTLOGWARNING","features":[487]},{"name":"wszPROPEXITCERTFILE","features":[487]},{"name":"wszPROPEXPECTEDCHALLENGE","features":[487]},{"name":"wszPROPEXPIRATIONDATE","features":[487]},{"name":"wszPROPEXTFLAGS","features":[487]},{"name":"wszPROPEXTNAME","features":[487]},{"name":"wszPROPEXTRAWVALUE","features":[487]},{"name":"wszPROPEXTREQUESTID","features":[487]},{"name":"wszPROPFILETAG","features":[487]},{"name":"wszPROPGIVENNAME","features":[487]},{"name":"wszPROPGUID","features":[487]},{"name":"wszPROPHEXTAG","features":[487]},{"name":"wszPROPINITIALS","features":[487]},{"name":"wszPROPIPADDRESS","features":[487]},{"name":"wszPROPKEYARCHIVED","features":[487]},{"name":"wszPROPLOCALITY","features":[487]},{"name":"wszPROPLOGLEVEL","features":[487]},{"name":"wszPROPMACHINEDNSNAME","features":[487]},{"name":"wszPROPMODULEREGLOC","features":[487]},{"name":"wszPROPNAMETYPE","features":[487]},{"name":"wszPROPOCTETTAG","features":[487]},{"name":"wszPROPOFFICER","features":[487]},{"name":"wszPROPOID","features":[487]},{"name":"wszPROPORGANIZATION","features":[487]},{"name":"wszPROPORGUNIT","features":[487]},{"name":"wszPROPPUBLISHEXPIREDCERTINCRL","features":[487]},{"name":"wszPROPRAWCACERTIFICATE","features":[487]},{"name":"wszPROPRAWCERTIFICATE","features":[487]},{"name":"wszPROPRAWCRL","features":[487]},{"name":"wszPROPRAWDELTACRL","features":[487]},{"name":"wszPROPRAWNAME","features":[487]},{"name":"wszPROPRAWPRECERTIFICATE","features":[487]},{"name":"wszPROPREQUESTARCHIVEDKEY","features":[487]},{"name":"wszPROPREQUESTATTRIBUTES","features":[487]},{"name":"wszPROPREQUESTCSPPROVIDER","features":[487]},{"name":"wszPROPREQUESTDISPOSITION","features":[487]},{"name":"wszPROPREQUESTDISPOSITIONMESSAGE","features":[487]},{"name":"wszPROPREQUESTDOT","features":[487]},{"name":"wszPROPREQUESTERCAACCESS","features":[487]},{"name":"wszPROPREQUESTERDN","features":[487]},{"name":"wszPROPREQUESTERNAME","features":[487]},{"name":"wszPROPREQUESTERNAMEFROMOLDCERTIFICATE","features":[487]},{"name":"wszPROPREQUESTERSAMNAME","features":[487]},{"name":"wszPROPREQUESTERUPN","features":[487]},{"name":"wszPROPREQUESTFLAGS","features":[487]},{"name":"wszPROPREQUESTKEYRECOVERYHASHES","features":[487]},{"name":"wszPROPREQUESTMACHINEDNS","features":[487]},{"name":"wszPROPREQUESTOSVERSION","features":[487]},{"name":"wszPROPREQUESTRAWARCHIVEDKEY","features":[487]},{"name":"wszPROPREQUESTRAWOLDCERTIFICATE","features":[487]},{"name":"wszPROPREQUESTRAWREQUEST","features":[487]},{"name":"wszPROPREQUESTREQUESTID","features":[487]},{"name":"wszPROPREQUESTRESOLVEDWHEN","features":[487]},{"name":"wszPROPREQUESTREVOKEDEFFECTIVEWHEN","features":[487]},{"name":"wszPROPREQUESTREVOKEDREASON","features":[487]},{"name":"wszPROPREQUESTREVOKEDWHEN","features":[487]},{"name":"wszPROPREQUESTSTATUSCODE","features":[487]},{"name":"wszPROPREQUESTSUBMITTEDWHEN","features":[487]},{"name":"wszPROPREQUESTTYPE","features":[487]},{"name":"wszPROPSANITIZEDCANAME","features":[487]},{"name":"wszPROPSANITIZEDSHORTNAME","features":[487]},{"name":"wszPROPSEAUDITFILTER","features":[487]},{"name":"wszPROPSEAUDITID","features":[487]},{"name":"wszPROPSERVERUPGRADED","features":[487]},{"name":"wszPROPSESSIONCOUNT","features":[487]},{"name":"wszPROPSIGNERAPPLICATIONPOLICIES","features":[487]},{"name":"wszPROPSIGNERPOLICIES","features":[487]},{"name":"wszPROPSTATE","features":[487]},{"name":"wszPROPSTREETADDRESS","features":[487]},{"name":"wszPROPSUBJECTALTNAME2","features":[487]},{"name":"wszPROPSUBJECTDOT","features":[487]},{"name":"wszPROPSURNAME","features":[487]},{"name":"wszPROPTEMPLATECHANGESEQUENCENUMBER","features":[487]},{"name":"wszPROPTEXTTAG","features":[487]},{"name":"wszPROPTITLE","features":[487]},{"name":"wszPROPUNSTRUCTUREDADDRESS","features":[487]},{"name":"wszPROPUNSTRUCTUREDNAME","features":[487]},{"name":"wszPROPUPN","features":[487]},{"name":"wszPROPURL","features":[487]},{"name":"wszPROPUSEDS","features":[487]},{"name":"wszPROPUSERDN","features":[487]},{"name":"wszPROPUTF8TAG","features":[487]},{"name":"wszPROPVALIDITYPERIODCOUNT","features":[487]},{"name":"wszPROPVALIDITYPERIODSTRING","features":[487]},{"name":"wszPROPVOLATILEMODE","features":[487]},{"name":"wszREGACTIVE","features":[487]},{"name":"wszREGAELOGLEVEL_OLD","features":[487]},{"name":"wszREGAIKCLOUDCAURL","features":[487]},{"name":"wszREGAIKKEYALGORITHM","features":[487]},{"name":"wszREGAIKKEYLENGTH","features":[487]},{"name":"wszREGALLPROVIDERS","features":[487]},{"name":"wszREGALTERNATEPUBLISHDOMAINS","features":[487]},{"name":"wszREGALTERNATESIGNATUREALGORITHM","features":[487]},{"name":"wszREGAUDITFILTER","features":[487]},{"name":"wszREGB2ICERTMANAGEMODULE","features":[487]},{"name":"wszREGBACKUPLOGDIRECTORY","features":[487]},{"name":"wszREGCACERTFILENAME","features":[487]},{"name":"wszREGCACERTHASH","features":[487]},{"name":"wszREGCACERTPUBLICATIONURLS","features":[487]},{"name":"wszREGCADESCRIPTION","features":[487]},{"name":"wszREGCAPATHLENGTH","features":[487]},{"name":"wszREGCASECURITY","features":[487]},{"name":"wszREGCASERIALNUMBER","features":[487]},{"name":"wszREGCASERVERNAME","features":[487]},{"name":"wszREGCATYPE","features":[487]},{"name":"wszREGCAUSEDS","features":[487]},{"name":"wszREGCAXCHGCERTHASH","features":[487]},{"name":"wszREGCAXCHGOVERLAPPERIODCOUNT","features":[487]},{"name":"wszREGCAXCHGOVERLAPPERIODSTRING","features":[487]},{"name":"wszREGCAXCHGVALIDITYPERIODCOUNT","features":[487]},{"name":"wszREGCAXCHGVALIDITYPERIODSTRING","features":[487]},{"name":"wszREGCERTENROLLCOMPATIBLE","features":[487]},{"name":"wszREGCERTIFICATETRANSPARENCYINFOOID","features":[487]},{"name":"wszREGCERTPUBLISHFLAGS","features":[487]},{"name":"wszREGCERTSRVDEBUG","features":[487]},{"name":"wszREGCHECKPOINTFILE","features":[487]},{"name":"wszREGCLOCKSKEWMINUTES","features":[487]},{"name":"wszREGCOMMONNAME","features":[487]},{"name":"wszREGCRLATTEMPTREPUBLISH","features":[487]},{"name":"wszREGCRLDELTANEXTPUBLISH","features":[487]},{"name":"wszREGCRLDELTAOVERLAPPERIODCOUNT","features":[487]},{"name":"wszREGCRLDELTAOVERLAPPERIODSTRING","features":[487]},{"name":"wszREGCRLDELTAPERIODCOUNT","features":[487]},{"name":"wszREGCRLDELTAPERIODSTRING","features":[487]},{"name":"wszREGCRLEDITFLAGS","features":[487]},{"name":"wszREGCRLFLAGS","features":[487]},{"name":"wszREGCRLNEXTPUBLISH","features":[487]},{"name":"wszREGCRLOVERLAPPERIODCOUNT","features":[487]},{"name":"wszREGCRLOVERLAPPERIODSTRING","features":[487]},{"name":"wszREGCRLPATH_OLD","features":[487]},{"name":"wszREGCRLPERIODCOUNT","features":[487]},{"name":"wszREGCRLPERIODSTRING","features":[487]},{"name":"wszREGCRLPUBLICATIONURLS","features":[487]},{"name":"wszREGDATABASERECOVERED","features":[487]},{"name":"wszREGDBDIRECTORY","features":[487]},{"name":"wszREGDBFLAGS","features":[487]},{"name":"wszREGDBLASTFULLBACKUP","features":[487]},{"name":"wszREGDBLASTINCREMENTALBACKUP","features":[487]},{"name":"wszREGDBLASTRECOVERY","features":[487]},{"name":"wszREGDBLOGDIRECTORY","features":[487]},{"name":"wszREGDBMAXREADSESSIONCOUNT","features":[487]},{"name":"wszREGDBSESSIONCOUNT","features":[487]},{"name":"wszREGDBSYSDIRECTORY","features":[487]},{"name":"wszREGDBTEMPDIRECTORY","features":[487]},{"name":"wszREGDEFAULTSMIME","features":[487]},{"name":"wszREGDIRECTORY","features":[487]},{"name":"wszREGDISABLEEXTENSIONLIST","features":[487]},{"name":"wszREGDSCONFIGDN","features":[487]},{"name":"wszREGDSDOMAINDN","features":[487]},{"name":"wszREGEDITFLAGS","features":[487]},{"name":"wszREGEKPUBLISTDIRECTORIES","features":[487]},{"name":"wszREGEKUOIDSFORPUBLISHEXPIREDCERTINCRL","features":[487]},{"name":"wszREGEKUOIDSFORVOLATILEREQUESTS","features":[487]},{"name":"wszREGENABLED","features":[487]},{"name":"wszREGENABLEDEKUFORDEFINEDCACERT","features":[487]},{"name":"wszREGENABLEENROLLEEREQUESTEXTENSIONLIST","features":[487]},{"name":"wszREGENABLEREQUESTEXTENSIONLIST","features":[487]},{"name":"wszREGENFORCEX500NAMELENGTHS","features":[487]},{"name":"wszREGENROLLFLAGS","features":[487]},{"name":"wszREGEXITBODYARG","features":[487]},{"name":"wszREGEXITBODYFORMAT","features":[487]},{"name":"wszREGEXITCRLISSUEDKEY","features":[487]},{"name":"wszREGEXITDENIEDKEY","features":[487]},{"name":"wszREGEXITIMPORTEDKEY","features":[487]},{"name":"wszREGEXITISSUEDKEY","features":[487]},{"name":"wszREGEXITPENDINGKEY","features":[487]},{"name":"wszREGEXITPROPNOTFOUND","features":[487]},{"name":"wszREGEXITREVOKEDKEY","features":[487]},{"name":"wszREGEXITSHUTDOWNKEY","features":[487]},{"name":"wszREGEXITSMTPAUTHENTICATE","features":[487]},{"name":"wszREGEXITSMTPCC","features":[487]},{"name":"wszREGEXITSMTPEVENTFILTER","features":[487]},{"name":"wszREGEXITSMTPFROM","features":[487]},{"name":"wszREGEXITSMTPKEY","features":[487]},{"name":"wszREGEXITSMTPSERVER","features":[487]},{"name":"wszREGEXITSMTPTEMPLATES","features":[487]},{"name":"wszREGEXITSMTPTO","features":[487]},{"name":"wszREGEXITSTARTUPKEY","features":[487]},{"name":"wszREGEXITTITLEARG","features":[487]},{"name":"wszREGEXITTITLEFORMAT","features":[487]},{"name":"wszREGFILEISSUERCERTURL_OLD","features":[487]},{"name":"wszREGFILEREVOCATIONCRLURL_OLD","features":[487]},{"name":"wszREGFORCETELETEX","features":[487]},{"name":"wszREGFTPISSUERCERTURL_OLD","features":[487]},{"name":"wszREGFTPREVOCATIONCRLURL_OLD","features":[487]},{"name":"wszREGHIGHLOGNUMBER","features":[487]},{"name":"wszREGHIGHSERIAL","features":[487]},{"name":"wszREGINTERFACEFLAGS","features":[487]},{"name":"wszREGISSUERCERTURLFLAGS","features":[487]},{"name":"wszREGISSUERCERTURL_OLD","features":[487]},{"name":"wszREGKEYBASE","features":[487]},{"name":"wszREGKEYCERTSVCPATH","features":[487]},{"name":"wszREGKEYCONFIG","features":[487]},{"name":"wszREGKEYCSP","features":[487]},{"name":"wszREGKEYDBPARAMETERS","features":[487]},{"name":"wszREGKEYENCRYPTIONCSP","features":[487]},{"name":"wszREGKEYENROLLMENT","features":[487]},{"name":"wszREGKEYEXITMODULES","features":[487]},{"name":"wszREGKEYGROUPPOLICYENROLLMENT","features":[487]},{"name":"wszREGKEYNOSYSTEMCERTSVCPATH","features":[487]},{"name":"wszREGKEYPOLICYMODULES","features":[487]},{"name":"wszREGKEYREPAIR","features":[487]},{"name":"wszREGKEYRESTOREINPROGRESS","features":[487]},{"name":"wszREGKEYSIZE","features":[487]},{"name":"wszREGKRACERTCOUNT","features":[487]},{"name":"wszREGKRACERTHASH","features":[487]},{"name":"wszREGKRAFLAGS","features":[487]},{"name":"wszREGLDAPFLAGS","features":[487]},{"name":"wszREGLDAPISSUERCERTURL_OLD","features":[487]},{"name":"wszREGLDAPREVOCATIONCRLURL_OLD","features":[487]},{"name":"wszREGLDAPREVOCATIONDNTEMPLATE_OLD","features":[487]},{"name":"wszREGLDAPREVOCATIONDN_OLD","features":[487]},{"name":"wszREGLDAPSESSIONOPTIONS","features":[487]},{"name":"wszREGLOGLEVEL","features":[487]},{"name":"wszREGLOGPATH","features":[487]},{"name":"wszREGLOWLOGNUMBER","features":[487]},{"name":"wszREGMAXINCOMINGALLOCSIZE","features":[487]},{"name":"wszREGMAXINCOMINGMESSAGESIZE","features":[487]},{"name":"wszREGMAXPENDINGREQUESTDAYS","features":[487]},{"name":"wszREGMAXSCTLISTSIZE","features":[487]},{"name":"wszREGNAMESEPARATOR","features":[487]},{"name":"wszREGNETSCAPECERTTYPE","features":[487]},{"name":"wszREGOFFICERRIGHTS","features":[487]},{"name":"wszREGPARENTCAMACHINE","features":[487]},{"name":"wszREGPARENTCANAME","features":[487]},{"name":"wszREGPOLICYFLAGS","features":[487]},{"name":"wszREGPRESERVESCEPDUMMYCERTS","features":[487]},{"name":"wszREGPROCESSINGFLAGS","features":[487]},{"name":"wszREGPROVIDER","features":[487]},{"name":"wszREGPROVIDERTYPE","features":[487]},{"name":"wszREGREQUESTDISPOSITION","features":[487]},{"name":"wszREGREQUESTFILENAME","features":[487]},{"name":"wszREGREQUESTID","features":[487]},{"name":"wszREGREQUESTKEYCONTAINER","features":[487]},{"name":"wszREGREQUESTKEYINDEX","features":[487]},{"name":"wszREGRESTOREMAP","features":[487]},{"name":"wszREGRESTOREMAPCOUNT","features":[487]},{"name":"wszREGRESTORESTATUS","features":[487]},{"name":"wszREGREVOCATIONCRLURL_OLD","features":[487]},{"name":"wszREGREVOCATIONTYPE","features":[487]},{"name":"wszREGREVOCATIONURL","features":[487]},{"name":"wszREGROLESEPARATIONENABLED","features":[487]},{"name":"wszREGSETUPSTATUS","features":[487]},{"name":"wszREGSP4DEFAULTCONFIGURATION","features":[487]},{"name":"wszREGSP4KEYSETNAME","features":[487]},{"name":"wszREGSP4NAMES","features":[487]},{"name":"wszREGSP4QUERIES","features":[487]},{"name":"wszREGSP4SUBJECTNAMESEPARATOR","features":[487]},{"name":"wszREGSUBJECTALTNAME","features":[487]},{"name":"wszREGSUBJECTALTNAME2","features":[487]},{"name":"wszREGSUBJECTTEMPLATE","features":[487]},{"name":"wszREGSYMMETRICKEYSIZE","features":[487]},{"name":"wszREGUNICODE","features":[487]},{"name":"wszREGUPNMAP","features":[487]},{"name":"wszREGUSEDEFINEDCACERTINREQ","features":[487]},{"name":"wszREGVALIDITYPERIODCOUNT","features":[487]},{"name":"wszREGVALIDITYPERIODSTRING","features":[487]},{"name":"wszREGVERIFYFLAGS","features":[487]},{"name":"wszREGVERSION","features":[487]},{"name":"wszREGVIEWAGEMINUTES","features":[487]},{"name":"wszREGVIEWIDLEMINUTES","features":[487]},{"name":"wszREGWEBCLIENTCAMACHINE","features":[487]},{"name":"wszREGWEBCLIENTCANAME","features":[487]},{"name":"wszREGWEBCLIENTCATYPE","features":[487]},{"name":"wszSECUREDATTRIBUTES","features":[487]},{"name":"wszSERVICE_NAME","features":[487]},{"name":"wszzDEFAULTSIGNEDATTRIBUTES","features":[487]}],"492":[{"name":"CryptSIPAddProvider","features":[305,486]},{"name":"CryptSIPCreateIndirectData","features":[305,485,486]},{"name":"CryptSIPGetCaps","features":[305,485,486]},{"name":"CryptSIPGetSealedDigest","features":[305,485,486]},{"name":"CryptSIPGetSignedDataMsg","features":[305,485,486]},{"name":"CryptSIPLoad","features":[305,485,486]},{"name":"CryptSIPPutSignedDataMsg","features":[305,485,486]},{"name":"CryptSIPRemoveProvider","features":[305,486]},{"name":"CryptSIPRemoveSignedDataMsg","features":[305,485,486]},{"name":"CryptSIPRetrieveSubjectGuid","features":[305,486]},{"name":"CryptSIPRetrieveSubjectGuidForCatalogFile","features":[305,486]},{"name":"CryptSIPVerifyIndirectData","features":[305,485,486]},{"name":"MSSIP_ADDINFO_BLOB","features":[486]},{"name":"MSSIP_ADDINFO_CATMEMBER","features":[486]},{"name":"MSSIP_ADDINFO_FLAT","features":[486]},{"name":"MSSIP_ADDINFO_NONE","features":[486]},{"name":"MSSIP_ADDINFO_NONMSSIP","features":[486]},{"name":"MSSIP_FLAGS_MULTI_HASH","features":[486]},{"name":"MSSIP_FLAGS_PROHIBIT_RESIZE_ON_CREATE","features":[486]},{"name":"MSSIP_FLAGS_USE_CATALOG","features":[486]},{"name":"MS_ADDINFO_BLOB","features":[486]},{"name":"MS_ADDINFO_FLAT","features":[486]},{"name":"SIP_ADD_NEWPROVIDER","features":[486]},{"name":"SIP_CAP_FLAG_SEALING","features":[486]},{"name":"SIP_CAP_SET_CUR_VER","features":[486]},{"name":"SIP_CAP_SET_V2","features":[305,486]},{"name":"SIP_CAP_SET_V3","features":[305,486]},{"name":"SIP_CAP_SET_VERSION_2","features":[486]},{"name":"SIP_CAP_SET_VERSION_3","features":[486]},{"name":"SIP_DISPATCH_INFO","features":[305,485,486]},{"name":"SIP_INDIRECT_DATA","features":[486]},{"name":"SIP_MAX_MAGIC_NUMBER","features":[486]},{"name":"SIP_SUBJECTINFO","features":[305,485,486]},{"name":"SPC_MARKER_CHECK_CURRENTLY_SUPPORTED_FLAGS","features":[486]},{"name":"SPC_MARKER_CHECK_SKIP_SIP_INDIRECT_DATA_FLAG","features":[486]},{"name":"SPC_RELAXED_PE_MARKER_CHECK","features":[486]},{"name":"pCryptSIPCreateIndirectData","features":[305,485,486]},{"name":"pCryptSIPGetCaps","features":[305,485,486]},{"name":"pCryptSIPGetSealedDigest","features":[305,485,486]},{"name":"pCryptSIPGetSignedDataMsg","features":[305,485,486]},{"name":"pCryptSIPPutSignedDataMsg","features":[305,485,486]},{"name":"pCryptSIPRemoveSignedDataMsg","features":[305,485,486]},{"name":"pCryptSIPVerifyIndirectData","features":[305,485,486]},{"name":"pfnIsFileSupported","features":[305,486]},{"name":"pfnIsFileSupportedName","features":[305,486]}],"493":[{"name":"ACTION_REVOCATION_DEFAULT_CACHE","features":[488]},{"name":"ACTION_REVOCATION_DEFAULT_ONLINE","features":[488]},{"name":"CERTVIEW_CRYPTUI_LPARAM","features":[488]},{"name":"CERT_CERTIFICATE_ACTION_VERIFY","features":[488]},{"name":"CERT_CREDENTIAL_PROVIDER_ID","features":[488]},{"name":"CERT_DISPWELL_DISTRUST_ADD_CA_CERT","features":[488]},{"name":"CERT_DISPWELL_DISTRUST_ADD_LEAF_CERT","features":[488]},{"name":"CERT_DISPWELL_DISTRUST_CA_CERT","features":[488]},{"name":"CERT_DISPWELL_DISTRUST_LEAF_CERT","features":[488]},{"name":"CERT_DISPWELL_SELECT","features":[488]},{"name":"CERT_DISPWELL_TRUST_ADD_CA_CERT","features":[488]},{"name":"CERT_DISPWELL_TRUST_ADD_LEAF_CERT","features":[488]},{"name":"CERT_DISPWELL_TRUST_CA_CERT","features":[488]},{"name":"CERT_DISPWELL_TRUST_LEAF_CERT","features":[488]},{"name":"CERT_FILTER_DATA","features":[488]},{"name":"CERT_FILTER_EXTENSION_MATCH","features":[488]},{"name":"CERT_FILTER_INCLUDE_V1_CERTS","features":[488]},{"name":"CERT_FILTER_ISSUER_CERTS_ONLY","features":[488]},{"name":"CERT_FILTER_KEY_EXISTS","features":[488]},{"name":"CERT_FILTER_LEAF_CERTS_ONLY","features":[488]},{"name":"CERT_FILTER_OP_EQUALITY","features":[488]},{"name":"CERT_FILTER_OP_EXISTS","features":[488]},{"name":"CERT_FILTER_OP_NOT_EXISTS","features":[488]},{"name":"CERT_FILTER_VALID_SIGNATURE","features":[488]},{"name":"CERT_FILTER_VALID_TIME_RANGE","features":[488]},{"name":"CERT_SELECTUI_INPUT","features":[305,488]},{"name":"CERT_SELECT_STRUCT_A","features":[305,488]},{"name":"CERT_SELECT_STRUCT_FLAGS","features":[488]},{"name":"CERT_SELECT_STRUCT_W","features":[305,488]},{"name":"CERT_TRUST_DO_FULL_SEARCH","features":[488]},{"name":"CERT_TRUST_DO_FULL_TRUST","features":[488]},{"name":"CERT_TRUST_MASK","features":[488]},{"name":"CERT_TRUST_PERMIT_MISSING_CRLS","features":[488]},{"name":"CERT_VALIDITY_AFTER_END","features":[488]},{"name":"CERT_VALIDITY_BEFORE_START","features":[488]},{"name":"CERT_VALIDITY_CERTIFICATE_REVOKED","features":[488]},{"name":"CERT_VALIDITY_CRL_OUT_OF_DATE","features":[488]},{"name":"CERT_VALIDITY_EXPLICITLY_DISTRUSTED","features":[488]},{"name":"CERT_VALIDITY_EXTENDED_USAGE_FAILURE","features":[488]},{"name":"CERT_VALIDITY_ISSUER_DISTRUST","features":[488]},{"name":"CERT_VALIDITY_ISSUER_INVALID","features":[488]},{"name":"CERT_VALIDITY_KEY_USAGE_EXT_FAILURE","features":[488]},{"name":"CERT_VALIDITY_MASK_TRUST","features":[488]},{"name":"CERT_VALIDITY_MASK_VALIDITY","features":[488]},{"name":"CERT_VALIDITY_NAME_CONSTRAINTS_FAILURE","features":[488]},{"name":"CERT_VALIDITY_NO_CRL_FOUND","features":[488]},{"name":"CERT_VALIDITY_NO_ISSUER_CERT_FOUND","features":[488]},{"name":"CERT_VALIDITY_NO_TRUST_DATA","features":[488]},{"name":"CERT_VALIDITY_OTHER_ERROR","features":[488]},{"name":"CERT_VALIDITY_OTHER_EXTENSION_FAILURE","features":[488]},{"name":"CERT_VALIDITY_PERIOD_NESTING_FAILURE","features":[488]},{"name":"CERT_VALIDITY_SIGNATURE_FAILS","features":[488]},{"name":"CERT_VALIDITY_UNKNOWN_CRITICAL_EXTENSION","features":[488]},{"name":"CERT_VERIFY_CERTIFICATE_TRUST","features":[305,488]},{"name":"CERT_VIEWPROPERTIES_STRUCT_A","features":[305,316,488,355,367]},{"name":"CERT_VIEWPROPERTIES_STRUCT_FLAGS","features":[488]},{"name":"CERT_VIEWPROPERTIES_STRUCT_W","features":[305,316,488,355,367]},{"name":"CM_ADD_CERT_STORES","features":[488]},{"name":"CM_ENABLEHOOK","features":[488]},{"name":"CM_ENABLETEMPLATE","features":[488]},{"name":"CM_HIDE_ADVANCEPAGE","features":[488]},{"name":"CM_HIDE_DETAILPAGE","features":[488]},{"name":"CM_HIDE_TRUSTPAGE","features":[488]},{"name":"CM_NO_EDITTRUST","features":[488]},{"name":"CM_NO_NAMECHANGE","features":[488]},{"name":"CM_SHOW_HELP","features":[488]},{"name":"CM_SHOW_HELPICON","features":[488]},{"name":"CM_VIEWFLAGS_MASK","features":[488]},{"name":"CRYPTDLG_ACTION_MASK","features":[488]},{"name":"CRYPTDLG_CACHE_ONLY_URL_RETRIEVAL","features":[488]},{"name":"CRYPTDLG_DISABLE_AIA","features":[488]},{"name":"CRYPTDLG_POLICY_MASK","features":[488]},{"name":"CRYPTDLG_REVOCATION_CACHE","features":[488]},{"name":"CRYPTDLG_REVOCATION_DEFAULT","features":[488]},{"name":"CRYPTDLG_REVOCATION_NONE","features":[488]},{"name":"CRYPTDLG_REVOCATION_ONLINE","features":[488]},{"name":"CRYPTUI_ACCEPT_DECLINE_STYLE","features":[488]},{"name":"CRYPTUI_CACHE_ONLY_URL_RETRIEVAL","features":[488]},{"name":"CRYPTUI_CERT_MGR_PUBLISHER_TAB","features":[488]},{"name":"CRYPTUI_CERT_MGR_SINGLE_TAB_FLAG","features":[488]},{"name":"CRYPTUI_CERT_MGR_STRUCT","features":[305,488]},{"name":"CRYPTUI_CERT_MGR_TAB_MASK","features":[488]},{"name":"CRYPTUI_DISABLE_ADDTOSTORE","features":[488]},{"name":"CRYPTUI_DISABLE_EDITPROPERTIES","features":[488]},{"name":"CRYPTUI_DISABLE_EXPORT","features":[488]},{"name":"CRYPTUI_DISABLE_HTMLLINK","features":[488]},{"name":"CRYPTUI_DISABLE_ISSUERSTATEMENT","features":[488]},{"name":"CRYPTUI_DONT_OPEN_STORES","features":[488]},{"name":"CRYPTUI_ENABLE_ADDTOSTORE","features":[488]},{"name":"CRYPTUI_ENABLE_EDITPROPERTIES","features":[488]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECKING","features":[488]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN","features":[488]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[488]},{"name":"CRYPTUI_ENABLE_REVOCATION_CHECK_END_CERT","features":[488]},{"name":"CRYPTUI_HIDE_DETAILPAGE","features":[488]},{"name":"CRYPTUI_HIDE_HIERARCHYPAGE","features":[488]},{"name":"CRYPTUI_IGNORE_UNTRUSTED_ROOT","features":[488]},{"name":"CRYPTUI_INITDIALOG_STRUCT","features":[305,488]},{"name":"CRYPTUI_ONLY_OPEN_ROOT_STORE","features":[488]},{"name":"CRYPTUI_SELECT_EXPIRATION_COLUMN","features":[488]},{"name":"CRYPTUI_SELECT_FRIENDLYNAME_COLUMN","features":[488]},{"name":"CRYPTUI_SELECT_INTENDEDUSE_COLUMN","features":[488]},{"name":"CRYPTUI_SELECT_ISSUEDBY_COLUMN","features":[488]},{"name":"CRYPTUI_SELECT_ISSUEDTO_COLUMN","features":[488]},{"name":"CRYPTUI_SELECT_LOCATION_COLUMN","features":[488]},{"name":"CRYPTUI_VIEWCERTIFICATE_FLAGS","features":[488]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTA","features":[305,316,485,486,488,489,355,367]},{"name":"CRYPTUI_VIEWCERTIFICATE_STRUCTW","features":[305,316,485,486,488,489,355,367]},{"name":"CRYPTUI_WARN_REMOTE_TRUST","features":[488]},{"name":"CRYPTUI_WARN_UNTRUSTED_ROOT","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_ADDITIONAL_CERT_CHOICE","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_CHAIN_NO_ROOT","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_ADD_NONE","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_BLOB_INFO","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CERT_PVK_INFO","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_COMMERCIAL","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_CONTEXT","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXCLUDE_PAGE_HASHES","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_EXTENDED_INFO","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INCLUDE_PAGE_HASHES","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INDIVIDUAL","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_INFO","features":[305,488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_NONE","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_FILE_INFO","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_OPTION","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_PVK_PROV","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SIG_TYPE","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_STORE_INFO","features":[305,488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_BLOB","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_FILE","features":[488]},{"name":"CRYPTUI_WIZ_DIGITAL_SIGN_SUBJECT_NONE","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_CERTCONTEXT_INFO","features":[305,488]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_CONTEXT","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_CERT_STORE_CERTIFICATES_ONLY","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_CRL_CONTEXT","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_CTL_CONTEXT","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_BASE64","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CRL","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_CTL","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_DER","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PFX","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_PKCS7","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_FORMAT_SERIALIZED_CERT_STORE","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_INFO","features":[305,488]},{"name":"CRYPTUI_WIZ_EXPORT_NO_DELETE_PRIVATE_KEY","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_PRIVATE_KEY","features":[488]},{"name":"CRYPTUI_WIZ_EXPORT_SUBJECT","features":[488]},{"name":"CRYPTUI_WIZ_FLAGS","features":[488]},{"name":"CRYPTUI_WIZ_IGNORE_NO_UI_FLAG_FOR_CSPS","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CERT","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CRL","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_ALLOW_CTL","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_NO_CHANGE_DEST_STORE","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_REMOTE_DEST_STORE","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_SRC_INFO","features":[305,488]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_CONTEXT","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_STORE","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CRL_CONTEXT","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_CTL_CONTEXT","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_FILE","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_SUBJECT_OPTION","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_TO_CURRENTUSER","features":[488]},{"name":"CRYPTUI_WIZ_IMPORT_TO_LOCALMACHINE","features":[488]},{"name":"CRYPTUI_WIZ_NO_UI","features":[488]},{"name":"CRYPTUI_WIZ_NO_UI_EXCEPT_CSP","features":[488]},{"name":"CRYTPDLG_FLAGS_MASK","features":[488]},{"name":"CSS_ALLOWMULTISELECT","features":[488]},{"name":"CSS_ENABLEHOOK","features":[488]},{"name":"CSS_ENABLETEMPLATE","features":[488]},{"name":"CSS_ENABLETEMPLATEHANDLE","features":[488]},{"name":"CSS_HIDE_PROPERTIES","features":[488]},{"name":"CSS_SELECTCERT_MASK","features":[488]},{"name":"CSS_SHOW_HELP","features":[488]},{"name":"CTL_MODIFY_REQUEST","features":[305,488]},{"name":"CTL_MODIFY_REQUEST_ADD_NOT_TRUSTED","features":[488]},{"name":"CTL_MODIFY_REQUEST_ADD_TRUSTED","features":[488]},{"name":"CTL_MODIFY_REQUEST_OPERATION","features":[488]},{"name":"CTL_MODIFY_REQUEST_REMOVE","features":[488]},{"name":"CertSelectionGetSerializedBlob","features":[305,488]},{"name":"CryptUIDlgCertMgr","features":[305,488]},{"name":"CryptUIDlgSelectCertificateFromStore","features":[305,488]},{"name":"CryptUIDlgViewCertificateA","features":[305,316,485,486,488,489,355,367]},{"name":"CryptUIDlgViewCertificateW","features":[305,316,485,486,488,489,355,367]},{"name":"CryptUIDlgViewContext","features":[305,488]},{"name":"CryptUIWizDigitalSign","features":[305,488]},{"name":"CryptUIWizExport","features":[305,488]},{"name":"CryptUIWizFreeDigitalSignContext","features":[305,488]},{"name":"CryptUIWizImport","features":[305,488]},{"name":"PFNCFILTERPROC","features":[305,488]},{"name":"PFNCMFILTERPROC","features":[305,488]},{"name":"PFNCMHOOKPROC","features":[305,488]},{"name":"PFNTRUSTHELPER","features":[305,488]},{"name":"POLICY_IGNORE_NON_CRITICAL_BC","features":[488]},{"name":"SELCERT_ALGORITHM","features":[488]},{"name":"SELCERT_CERTLIST","features":[488]},{"name":"SELCERT_FINEPRINT","features":[488]},{"name":"SELCERT_ISSUED_TO","features":[488]},{"name":"SELCERT_PROPERTIES","features":[488]},{"name":"SELCERT_SERIAL_NUM","features":[488]},{"name":"SELCERT_THUMBPRINT","features":[488]},{"name":"SELCERT_VALIDITY","features":[488]},{"name":"szCERT_CERTIFICATE_ACTION_VERIFY","features":[488]}],"494":[{"name":"AllUserData","features":[490]},{"name":"CurrentUserData","features":[490]},{"name":"DIAGNOSTIC_DATA_EVENT_BINARY_STATS","features":[490]},{"name":"DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION","features":[490]},{"name":"DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION","features":[490]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION","features":[490]},{"name":"DIAGNOSTIC_DATA_EVENT_TAG_STATS","features":[490]},{"name":"DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION","features":[490]},{"name":"DIAGNOSTIC_DATA_GENERAL_STATS","features":[490]},{"name":"DIAGNOSTIC_DATA_RECORD","features":[305,490]},{"name":"DIAGNOSTIC_DATA_SEARCH_CRITERIA","features":[305,490]},{"name":"DIAGNOSTIC_REPORT_DATA","features":[305,490]},{"name":"DIAGNOSTIC_REPORT_PARAMETER","features":[490]},{"name":"DIAGNOSTIC_REPORT_SIGNATURE","features":[490]},{"name":"DdqAccessLevel","features":[490]},{"name":"DdqCancelDiagnosticRecordOperation","features":[490]},{"name":"DdqCloseSession","features":[490]},{"name":"DdqCreateSession","features":[490]},{"name":"DdqExtractDiagnosticReport","features":[490]},{"name":"DdqFreeDiagnosticRecordLocaleTags","features":[490]},{"name":"DdqFreeDiagnosticRecordPage","features":[490]},{"name":"DdqFreeDiagnosticRecordProducerCategories","features":[490]},{"name":"DdqFreeDiagnosticRecordProducers","features":[490]},{"name":"DdqFreeDiagnosticReport","features":[490]},{"name":"DdqGetDiagnosticDataAccessLevelAllowed","features":[490]},{"name":"DdqGetDiagnosticRecordAtIndex","features":[305,490]},{"name":"DdqGetDiagnosticRecordBinaryDistribution","features":[490]},{"name":"DdqGetDiagnosticRecordCategoryAtIndex","features":[490]},{"name":"DdqGetDiagnosticRecordCategoryCount","features":[490]},{"name":"DdqGetDiagnosticRecordCount","features":[490]},{"name":"DdqGetDiagnosticRecordLocaleTagAtIndex","features":[490]},{"name":"DdqGetDiagnosticRecordLocaleTagCount","features":[490]},{"name":"DdqGetDiagnosticRecordLocaleTags","features":[490]},{"name":"DdqGetDiagnosticRecordPage","features":[305,490]},{"name":"DdqGetDiagnosticRecordPayload","features":[490]},{"name":"DdqGetDiagnosticRecordProducerAtIndex","features":[490]},{"name":"DdqGetDiagnosticRecordProducerCategories","features":[490]},{"name":"DdqGetDiagnosticRecordProducerCount","features":[490]},{"name":"DdqGetDiagnosticRecordProducers","features":[490]},{"name":"DdqGetDiagnosticRecordStats","features":[305,490]},{"name":"DdqGetDiagnosticRecordSummary","features":[490]},{"name":"DdqGetDiagnosticRecordTagDistribution","features":[490]},{"name":"DdqGetDiagnosticReport","features":[490]},{"name":"DdqGetDiagnosticReportAtIndex","features":[305,490]},{"name":"DdqGetDiagnosticReportCount","features":[490]},{"name":"DdqGetDiagnosticReportStoreReportCount","features":[490]},{"name":"DdqGetSessionAccessLevel","features":[490]},{"name":"DdqGetTranscriptConfiguration","features":[490]},{"name":"DdqIsDiagnosticRecordSampledIn","features":[305,490]},{"name":"DdqSetTranscriptConfiguration","features":[490]},{"name":"HDIAGNOSTIC_DATA_QUERY_SESSION","features":[490]},{"name":"HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION","features":[490]},{"name":"HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION","features":[490]},{"name":"HDIAGNOSTIC_EVENT_TAG_DESCRIPTION","features":[490]},{"name":"HDIAGNOSTIC_RECORD","features":[490]},{"name":"HDIAGNOSTIC_REPORT","features":[490]},{"name":"NoData","features":[490]}],"495":[{"name":"DSCreateISecurityInfoObject","features":[305,483,491]},{"name":"DSCreateISecurityInfoObjectEx","features":[305,483,491]},{"name":"DSCreateSecurityPage","features":[305,491,355]},{"name":"DSEditSecurity","features":[305,491]},{"name":"DSSI_IS_ROOT","features":[491]},{"name":"DSSI_NO_ACCESS_CHECK","features":[491]},{"name":"DSSI_NO_EDIT_OWNER","features":[491]},{"name":"DSSI_NO_EDIT_SACL","features":[491]},{"name":"DSSI_NO_FILTER","features":[491]},{"name":"DSSI_NO_READONLY_MESSAGE","features":[491]},{"name":"DSSI_READ_ONLY","features":[491]},{"name":"PFNDSCREATEISECINFO","features":[305,483,491]},{"name":"PFNDSCREATEISECINFOEX","features":[305,483,491]},{"name":"PFNDSCREATESECPAGE","features":[305,491,355]},{"name":"PFNDSEDITSECURITY","features":[305,491]},{"name":"PFNREADOBJECTSECURITY","features":[305,491]},{"name":"PFNWRITEOBJECTSECURITY","features":[305,491]}],"496":[{"name":"ENTERPRISE_DATA_POLICIES","features":[492]},{"name":"ENTERPRISE_POLICY_ALLOWED","features":[492]},{"name":"ENTERPRISE_POLICY_ENLIGHTENED","features":[492]},{"name":"ENTERPRISE_POLICY_EXEMPT","features":[492]},{"name":"ENTERPRISE_POLICY_NONE","features":[492]},{"name":"FILE_UNPROTECT_OPTIONS","features":[492]},{"name":"HTHREAD_NETWORK_CONTEXT","features":[305,492]},{"name":"IProtectionPolicyManagerInterop","features":[492]},{"name":"IProtectionPolicyManagerInterop2","features":[492]},{"name":"IProtectionPolicyManagerInterop3","features":[492]},{"name":"ProtectFileToEnterpriseIdentity","features":[492]},{"name":"SRPHOSTING_TYPE","features":[492]},{"name":"SRPHOSTING_TYPE_NONE","features":[492]},{"name":"SRPHOSTING_TYPE_WINHTTP","features":[492]},{"name":"SRPHOSTING_TYPE_WININET","features":[492]},{"name":"SRPHOSTING_VERSION","features":[492]},{"name":"SRPHOSTING_VERSION1","features":[492]},{"name":"SrpCloseThreadNetworkContext","features":[305,492]},{"name":"SrpCreateThreadNetworkContext","features":[305,492]},{"name":"SrpDisablePermissiveModeFileEncryption","features":[492]},{"name":"SrpDoesPolicyAllowAppExecution","features":[305,492,493]},{"name":"SrpEnablePermissiveModeFileEncryption","features":[492]},{"name":"SrpGetEnterpriseIds","features":[305,492]},{"name":"SrpGetEnterprisePolicy","features":[305,492]},{"name":"SrpHostingInitialize","features":[492]},{"name":"SrpHostingTerminate","features":[492]},{"name":"SrpIsTokenService","features":[305,492]},{"name":"SrpSetTokenEnterpriseId","features":[305,492]},{"name":"UnprotectFile","features":[492]}],"497":[{"name":"CERTIFICATE_HASH_LENGTH","features":[459]},{"name":"EAPACTION_Authenticate","features":[459]},{"name":"EAPACTION_Done","features":[459]},{"name":"EAPACTION_IndicateIdentity","features":[459]},{"name":"EAPACTION_IndicateTLV","features":[459]},{"name":"EAPACTION_NoAction","features":[459]},{"name":"EAPACTION_Send","features":[459]},{"name":"EAPACTION_SendAndDone","features":[459]},{"name":"EAPACTION_SendWithTimeout","features":[459]},{"name":"EAPACTION_SendWithTimeoutInteractive","features":[459]},{"name":"EAPCODE_Failure","features":[459]},{"name":"EAPCODE_Request","features":[459]},{"name":"EAPCODE_Response","features":[459]},{"name":"EAPCODE_Success","features":[459]},{"name":"EAPHOST_AUTH_INFO","features":[459]},{"name":"EAPHOST_AUTH_STATUS","features":[459]},{"name":"EAPHOST_IDENTITY_UI_PARAMS","features":[459]},{"name":"EAPHOST_INTERACTIVE_UI_PARAMS","features":[459]},{"name":"EAPHOST_METHOD_API_VERSION","features":[459]},{"name":"EAPHOST_PEER_API_VERSION","features":[459]},{"name":"EAP_ATTRIBUTE","features":[459]},{"name":"EAP_ATTRIBUTES","features":[459]},{"name":"EAP_ATTRIBUTE_TYPE","features":[459]},{"name":"EAP_AUTHENTICATOR_METHOD_ROUTINES","features":[459]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT","features":[459]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_BASIC","features":[459]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_INTERACTIVE","features":[459]},{"name":"EAP_AUTHENTICATOR_SEND_TIMEOUT_NONE","features":[459]},{"name":"EAP_AUTHENTICATOR_VALUENAME_CONFIGUI","features":[459]},{"name":"EAP_AUTHENTICATOR_VALUENAME_DLL_PATH","features":[459]},{"name":"EAP_AUTHENTICATOR_VALUENAME_FRIENDLY_NAME","features":[459]},{"name":"EAP_AUTHENTICATOR_VALUENAME_PROPERTIES","features":[459]},{"name":"EAP_CERTIFICATE_CREDENTIAL","features":[459]},{"name":"EAP_CONFIG_INPUT_FIELD_ARRAY","features":[459]},{"name":"EAP_CONFIG_INPUT_FIELD_DATA","features":[459]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_DEFAULT","features":[459]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[459]},{"name":"EAP_CONFIG_INPUT_FIELD_PROPS_NON_PERSIST","features":[459]},{"name":"EAP_CONFIG_INPUT_FIELD_TYPE","features":[459]},{"name":"EAP_CREDENTIAL_VERSION","features":[459]},{"name":"EAP_CRED_EXPIRY_REQ","features":[459]},{"name":"EAP_EMPTY_CREDENTIAL","features":[459]},{"name":"EAP_ERROR","features":[459]},{"name":"EAP_E_AUTHENTICATION_FAILED","features":[459]},{"name":"EAP_E_CERT_STORE_INACCESSIBLE","features":[459]},{"name":"EAP_E_EAPHOST_EAPQEC_INACCESSIBLE","features":[459]},{"name":"EAP_E_EAPHOST_FIRST","features":[459]},{"name":"EAP_E_EAPHOST_IDENTITY_UNKNOWN","features":[459]},{"name":"EAP_E_EAPHOST_LAST","features":[459]},{"name":"EAP_E_EAPHOST_METHOD_INVALID_PACKET","features":[459]},{"name":"EAP_E_EAPHOST_METHOD_NOT_INSTALLED","features":[459]},{"name":"EAP_E_EAPHOST_METHOD_OPERATION_NOT_SUPPORTED","features":[459]},{"name":"EAP_E_EAPHOST_REMOTE_INVALID_PACKET","features":[459]},{"name":"EAP_E_EAPHOST_THIRDPARTY_METHOD_HOST_RESET","features":[459]},{"name":"EAP_E_EAPHOST_XML_MALFORMED","features":[459]},{"name":"EAP_E_METHOD_CONFIG_DOES_NOT_SUPPORT_SSO","features":[459]},{"name":"EAP_E_NO_SMART_CARD_READER","features":[459]},{"name":"EAP_E_SERVER_CERT_EXPIRED","features":[459]},{"name":"EAP_E_SERVER_CERT_INVALID","features":[459]},{"name":"EAP_E_SERVER_CERT_NOT_FOUND","features":[459]},{"name":"EAP_E_SERVER_CERT_OTHER_ERROR","features":[459]},{"name":"EAP_E_SERVER_CERT_REVOKED","features":[459]},{"name":"EAP_E_SERVER_FIRST","features":[459]},{"name":"EAP_E_SERVER_LAST","features":[459]},{"name":"EAP_E_SERVER_ROOT_CERT_FIRST","features":[459]},{"name":"EAP_E_SERVER_ROOT_CERT_INVALID","features":[459]},{"name":"EAP_E_SERVER_ROOT_CERT_LAST","features":[459]},{"name":"EAP_E_SERVER_ROOT_CERT_NAME_REQUIRED","features":[459]},{"name":"EAP_E_SERVER_ROOT_CERT_NOT_FOUND","features":[459]},{"name":"EAP_E_SIM_NOT_VALID","features":[459]},{"name":"EAP_E_USER_CERT_EXPIRED","features":[459]},{"name":"EAP_E_USER_CERT_INVALID","features":[459]},{"name":"EAP_E_USER_CERT_NOT_FOUND","features":[459]},{"name":"EAP_E_USER_CERT_OTHER_ERROR","features":[459]},{"name":"EAP_E_USER_CERT_REJECTED","features":[459]},{"name":"EAP_E_USER_CERT_REVOKED","features":[459]},{"name":"EAP_E_USER_CREDENTIALS_REJECTED","features":[459]},{"name":"EAP_E_USER_FIRST","features":[459]},{"name":"EAP_E_USER_LAST","features":[459]},{"name":"EAP_E_USER_NAME_PASSWORD_REJECTED","features":[459]},{"name":"EAP_E_USER_ROOT_CERT_EXPIRED","features":[459]},{"name":"EAP_E_USER_ROOT_CERT_FIRST","features":[459]},{"name":"EAP_E_USER_ROOT_CERT_INVALID","features":[459]},{"name":"EAP_E_USER_ROOT_CERT_LAST","features":[459]},{"name":"EAP_E_USER_ROOT_CERT_NOT_FOUND","features":[459]},{"name":"EAP_FLAG_CONFG_READONLY","features":[459]},{"name":"EAP_FLAG_FULL_AUTH","features":[459]},{"name":"EAP_FLAG_GUEST_ACCESS","features":[459]},{"name":"EAP_FLAG_LOGON","features":[459]},{"name":"EAP_FLAG_MACHINE_AUTH","features":[459]},{"name":"EAP_FLAG_NON_INTERACTIVE","features":[459]},{"name":"EAP_FLAG_ONLY_EAP_TLS","features":[459]},{"name":"EAP_FLAG_PREFER_ALT_CREDENTIALS","features":[459]},{"name":"EAP_FLAG_PREVIEW","features":[459]},{"name":"EAP_FLAG_PRE_LOGON","features":[459]},{"name":"EAP_FLAG_RESUME_FROM_HIBERNATE","features":[459]},{"name":"EAP_FLAG_Reserved1","features":[459]},{"name":"EAP_FLAG_Reserved2","features":[459]},{"name":"EAP_FLAG_Reserved3","features":[459]},{"name":"EAP_FLAG_Reserved4","features":[459]},{"name":"EAP_FLAG_Reserved5","features":[459]},{"name":"EAP_FLAG_Reserved6","features":[459]},{"name":"EAP_FLAG_Reserved7","features":[459]},{"name":"EAP_FLAG_Reserved8","features":[459]},{"name":"EAP_FLAG_Reserved9","features":[459]},{"name":"EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[459]},{"name":"EAP_FLAG_SUPRESS_UI","features":[459]},{"name":"EAP_FLAG_USER_AUTH","features":[459]},{"name":"EAP_FLAG_VPN","features":[459]},{"name":"EAP_GROUP_MASK","features":[459]},{"name":"EAP_INTERACTIVE_UI_DATA","features":[459]},{"name":"EAP_INTERACTIVE_UI_DATA_TYPE","features":[459]},{"name":"EAP_INTERACTIVE_UI_DATA_VERSION","features":[459]},{"name":"EAP_INVALID_PACKET","features":[459]},{"name":"EAP_I_EAPHOST_EAP_NEGOTIATION_FAILED","features":[459]},{"name":"EAP_I_EAPHOST_FIRST","features":[459]},{"name":"EAP_I_EAPHOST_LAST","features":[459]},{"name":"EAP_I_USER_ACCOUNT_OTHER_ERROR","features":[459]},{"name":"EAP_I_USER_FIRST","features":[459]},{"name":"EAP_I_USER_LAST","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_CONFIG_IS_IDENTITY_PRIVACY","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_ACTION","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_AUTHENTICATE","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_DISCARD","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_HANDLE_IDENTITY","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESPOND","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_RESULT","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESPONSE_SEND","features":[459]},{"name":"EAP_METHOD_AUTHENTICATOR_RESULT","features":[305,459]},{"name":"EAP_METHOD_INFO","features":[459]},{"name":"EAP_METHOD_INFO_ARRAY","features":[459]},{"name":"EAP_METHOD_INFO_ARRAY_EX","features":[459]},{"name":"EAP_METHOD_INFO_EX","features":[459]},{"name":"EAP_METHOD_INVALID_PACKET","features":[459]},{"name":"EAP_METHOD_PROPERTY","features":[305,459]},{"name":"EAP_METHOD_PROPERTY_ARRAY","features":[305,459]},{"name":"EAP_METHOD_PROPERTY_TYPE","features":[459]},{"name":"EAP_METHOD_PROPERTY_VALUE","features":[305,459]},{"name":"EAP_METHOD_PROPERTY_VALUE_BOOL","features":[305,459]},{"name":"EAP_METHOD_PROPERTY_VALUE_DWORD","features":[459]},{"name":"EAP_METHOD_PROPERTY_VALUE_STRING","features":[459]},{"name":"EAP_METHOD_PROPERTY_VALUE_TYPE","features":[459]},{"name":"EAP_METHOD_TYPE","features":[459]},{"name":"EAP_PEER_FLAG_GUEST_ACCESS","features":[459]},{"name":"EAP_PEER_FLAG_HEALTH_STATE_CHANGE","features":[459]},{"name":"EAP_PEER_METHOD_ROUTINES","features":[459]},{"name":"EAP_PEER_VALUENAME_CONFIGUI","features":[459]},{"name":"EAP_PEER_VALUENAME_DLL_PATH","features":[459]},{"name":"EAP_PEER_VALUENAME_FRIENDLY_NAME","features":[459]},{"name":"EAP_PEER_VALUENAME_IDENTITY","features":[459]},{"name":"EAP_PEER_VALUENAME_INTERACTIVEUI","features":[459]},{"name":"EAP_PEER_VALUENAME_INVOKE_NAMEDLG","features":[459]},{"name":"EAP_PEER_VALUENAME_INVOKE_PWDDLG","features":[459]},{"name":"EAP_PEER_VALUENAME_PROPERTIES","features":[459]},{"name":"EAP_PEER_VALUENAME_REQUIRE_CONFIGUI","features":[459]},{"name":"EAP_REGISTRY_LOCATION","features":[459]},{"name":"EAP_SIM_CREDENTIAL","features":[459]},{"name":"EAP_TYPE","features":[459]},{"name":"EAP_UI_DATA_FORMAT","features":[459]},{"name":"EAP_UI_INPUT_FIELD_PROPS_DEFAULT","features":[459]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_DISPLAYABLE","features":[459]},{"name":"EAP_UI_INPUT_FIELD_PROPS_NON_PERSIST","features":[459]},{"name":"EAP_UI_INPUT_FIELD_PROPS_READ_ONLY","features":[459]},{"name":"EAP_USERNAME_PASSWORD_CREDENTIAL","features":[459]},{"name":"EAP_VALUENAME_PROPERTIES","features":[459]},{"name":"EAP_WINLOGON_CREDENTIAL","features":[459]},{"name":"EapCertificateCredential","features":[459]},{"name":"EapCode","features":[459]},{"name":"EapCodeFailure","features":[459]},{"name":"EapCodeMaximum","features":[459]},{"name":"EapCodeMinimum","features":[459]},{"name":"EapCodeRequest","features":[459]},{"name":"EapCodeResponse","features":[459]},{"name":"EapCodeSuccess","features":[459]},{"name":"EapConfigInputEdit","features":[459]},{"name":"EapConfigInputNetworkPassword","features":[459]},{"name":"EapConfigInputNetworkUsername","features":[459]},{"name":"EapConfigInputPSK","features":[459]},{"name":"EapConfigInputPassword","features":[459]},{"name":"EapConfigInputPin","features":[459]},{"name":"EapConfigInputUsername","features":[459]},{"name":"EapConfigSmartCardError","features":[459]},{"name":"EapConfigSmartCardUsername","features":[459]},{"name":"EapCredExpiryReq","features":[459]},{"name":"EapCredExpiryResp","features":[459]},{"name":"EapCredLogonReq","features":[459]},{"name":"EapCredLogonResp","features":[459]},{"name":"EapCredReq","features":[459]},{"name":"EapCredResp","features":[459]},{"name":"EapCredential","features":[459]},{"name":"EapCredentialType","features":[459]},{"name":"EapCredentialTypeData","features":[459]},{"name":"EapHostAuthFailed","features":[459]},{"name":"EapHostAuthIdentityExchange","features":[459]},{"name":"EapHostAuthInProgress","features":[459]},{"name":"EapHostAuthNegotiatingType","features":[459]},{"name":"EapHostAuthNotStarted","features":[459]},{"name":"EapHostAuthSucceeded","features":[459]},{"name":"EapHostInvalidSession","features":[459]},{"name":"EapHostNapInfo","features":[459]},{"name":"EapHostPeerAuthParams","features":[459]},{"name":"EapHostPeerAuthStatus","features":[459]},{"name":"EapHostPeerBeginSession","features":[305,459]},{"name":"EapHostPeerClearConnection","features":[459]},{"name":"EapHostPeerConfigBlob2Xml","features":[358,459,356]},{"name":"EapHostPeerConfigXml2Blob","features":[358,459,356]},{"name":"EapHostPeerCredentialsXml2Blob","features":[358,459,356]},{"name":"EapHostPeerEndSession","features":[459]},{"name":"EapHostPeerFreeEapError","features":[459]},{"name":"EapHostPeerFreeErrorMemory","features":[459]},{"name":"EapHostPeerFreeMemory","features":[459]},{"name":"EapHostPeerFreeRuntimeMemory","features":[459]},{"name":"EapHostPeerGetAuthStatus","features":[459]},{"name":"EapHostPeerGetDataToUnplumbCredentials","features":[305,459]},{"name":"EapHostPeerGetEncryptedPassword","features":[459]},{"name":"EapHostPeerGetIdentity","features":[305,459]},{"name":"EapHostPeerGetMethodProperties","features":[305,459]},{"name":"EapHostPeerGetMethods","features":[459]},{"name":"EapHostPeerGetResponseAttributes","features":[459]},{"name":"EapHostPeerGetResult","features":[305,459]},{"name":"EapHostPeerGetSendPacket","features":[459]},{"name":"EapHostPeerGetUIContext","features":[459]},{"name":"EapHostPeerIdentity","features":[459]},{"name":"EapHostPeerIdentityExtendedInfo","features":[459]},{"name":"EapHostPeerInitialize","features":[459]},{"name":"EapHostPeerInvokeConfigUI","features":[305,459]},{"name":"EapHostPeerInvokeIdentityUI","features":[305,459]},{"name":"EapHostPeerInvokeInteractiveUI","features":[305,459]},{"name":"EapHostPeerMethodResult","features":[305,459]},{"name":"EapHostPeerMethodResultAltSuccessReceived","features":[459]},{"name":"EapHostPeerMethodResultFromMethod","features":[459]},{"name":"EapHostPeerMethodResultReason","features":[459]},{"name":"EapHostPeerMethodResultTimeout","features":[459]},{"name":"EapHostPeerProcessReceivedPacket","features":[459]},{"name":"EapHostPeerQueryCredentialInputFields","features":[305,459]},{"name":"EapHostPeerQueryInteractiveUIInputFields","features":[459]},{"name":"EapHostPeerQueryUIBlobFromInteractiveUIInputFields","features":[459]},{"name":"EapHostPeerQueryUserBlobFromCredentialInputFields","features":[305,459]},{"name":"EapHostPeerResponseAction","features":[459]},{"name":"EapHostPeerResponseDiscard","features":[459]},{"name":"EapHostPeerResponseInvokeUi","features":[459]},{"name":"EapHostPeerResponseNone","features":[459]},{"name":"EapHostPeerResponseRespond","features":[459]},{"name":"EapHostPeerResponseResult","features":[459]},{"name":"EapHostPeerResponseSend","features":[459]},{"name":"EapHostPeerResponseStartAuthentication","features":[459]},{"name":"EapHostPeerSetResponseAttributes","features":[459]},{"name":"EapHostPeerSetUIContext","features":[459]},{"name":"EapHostPeerUninitialize","features":[459]},{"name":"EapPacket","features":[459]},{"name":"EapPeerMethodOutput","features":[305,459]},{"name":"EapPeerMethodResponseAction","features":[459]},{"name":"EapPeerMethodResponseActionDiscard","features":[459]},{"name":"EapPeerMethodResponseActionInvokeUI","features":[459]},{"name":"EapPeerMethodResponseActionNone","features":[459]},{"name":"EapPeerMethodResponseActionRespond","features":[459]},{"name":"EapPeerMethodResponseActionResult","features":[459]},{"name":"EapPeerMethodResponseActionSend","features":[459]},{"name":"EapPeerMethodResult","features":[305,389,459]},{"name":"EapPeerMethodResultFailure","features":[459]},{"name":"EapPeerMethodResultReason","features":[459]},{"name":"EapPeerMethodResultSuccess","features":[459]},{"name":"EapPeerMethodResultUnknown","features":[459]},{"name":"EapSimCredential","features":[459]},{"name":"EapUsernamePasswordCredential","features":[459]},{"name":"FACILITY_EAP_MESSAGE","features":[459]},{"name":"GUID_EapHost_Cause_CertStoreInaccessible","features":[459]},{"name":"GUID_EapHost_Cause_EapNegotiationFailed","features":[459]},{"name":"GUID_EapHost_Cause_EapQecInaccessible","features":[459]},{"name":"GUID_EapHost_Cause_Generic_AuthFailure","features":[459]},{"name":"GUID_EapHost_Cause_IdentityUnknown","features":[459]},{"name":"GUID_EapHost_Cause_MethodDLLNotFound","features":[459]},{"name":"GUID_EapHost_Cause_MethodDoesNotSupportOperation","features":[459]},{"name":"GUID_EapHost_Cause_Method_Config_Does_Not_Support_Sso","features":[459]},{"name":"GUID_EapHost_Cause_No_SmartCardReader_Found","features":[459]},{"name":"GUID_EapHost_Cause_Server_CertExpired","features":[459]},{"name":"GUID_EapHost_Cause_Server_CertInvalid","features":[459]},{"name":"GUID_EapHost_Cause_Server_CertNotFound","features":[459]},{"name":"GUID_EapHost_Cause_Server_CertOtherError","features":[459]},{"name":"GUID_EapHost_Cause_Server_CertRevoked","features":[459]},{"name":"GUID_EapHost_Cause_Server_Root_CertNameRequired","features":[459]},{"name":"GUID_EapHost_Cause_Server_Root_CertNotFound","features":[459]},{"name":"GUID_EapHost_Cause_SimNotValid","features":[459]},{"name":"GUID_EapHost_Cause_ThirdPartyMethod_Host_Reset","features":[459]},{"name":"GUID_EapHost_Cause_User_Account_OtherProblem","features":[459]},{"name":"GUID_EapHost_Cause_User_CertExpired","features":[459]},{"name":"GUID_EapHost_Cause_User_CertInvalid","features":[459]},{"name":"GUID_EapHost_Cause_User_CertNotFound","features":[459]},{"name":"GUID_EapHost_Cause_User_CertOtherError","features":[459]},{"name":"GUID_EapHost_Cause_User_CertRejected","features":[459]},{"name":"GUID_EapHost_Cause_User_CertRevoked","features":[459]},{"name":"GUID_EapHost_Cause_User_CredsRejected","features":[459]},{"name":"GUID_EapHost_Cause_User_Root_CertExpired","features":[459]},{"name":"GUID_EapHost_Cause_User_Root_CertInvalid","features":[459]},{"name":"GUID_EapHost_Cause_User_Root_CertNotFound","features":[459]},{"name":"GUID_EapHost_Cause_XmlMalformed","features":[459]},{"name":"GUID_EapHost_Default","features":[459]},{"name":"GUID_EapHost_Help_ObtainingCerts","features":[459]},{"name":"GUID_EapHost_Help_Troubleshooting","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_AuthFailure","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertNameAbsent","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_CertStoreInaccessible","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_IdentityUnknown","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserAccount","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_InvalidUserCert","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_MethodNotFound","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_NegotiationFailed","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_NoSmartCardReader","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertInvalid","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootCertNotFound","features":[459]},{"name":"GUID_EapHost_Repair_ContactAdmin_RootExpired","features":[459]},{"name":"GUID_EapHost_Repair_ContactSysadmin","features":[459]},{"name":"GUID_EapHost_Repair_Method_Not_Support_Sso","features":[459]},{"name":"GUID_EapHost_Repair_No_ValidSim_Found","features":[459]},{"name":"GUID_EapHost_Repair_RestartNap","features":[459]},{"name":"GUID_EapHost_Repair_Retry_Authentication","features":[459]},{"name":"GUID_EapHost_Repair_Server_ClientSelectServerCert","features":[459]},{"name":"GUID_EapHost_Repair_User_AuthFailure","features":[459]},{"name":"GUID_EapHost_Repair_User_GetNewCert","features":[459]},{"name":"GUID_EapHost_Repair_User_SelectValidCert","features":[459]},{"name":"IAccountingProviderConfig","features":[459]},{"name":"IAuthenticationProviderConfig","features":[459]},{"name":"IEAPProviderConfig","features":[459]},{"name":"IEAPProviderConfig2","features":[459]},{"name":"IEAPProviderConfig3","features":[459]},{"name":"IRouterProtocolConfig","features":[459]},{"name":"ISOLATION_STATE","features":[459]},{"name":"ISOLATION_STATE_IN_PROBATION","features":[459]},{"name":"ISOLATION_STATE_NOT_RESTRICTED","features":[459]},{"name":"ISOLATION_STATE_RESTRICTED_ACCESS","features":[459]},{"name":"ISOLATION_STATE_UNKNOWN","features":[459]},{"name":"LEGACY_IDENTITY_UI_PARAMS","features":[459]},{"name":"LEGACY_INTERACTIVE_UI_PARAMS","features":[459]},{"name":"MAXEAPCODE","features":[459]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_LENGTH","features":[459]},{"name":"MAX_EAP_CONFIG_INPUT_FIELD_VALUE_LENGTH","features":[459]},{"name":"NCRYPT_PIN_CACHE_PIN_BYTE_LENGTH","features":[459]},{"name":"NgcTicketContext","features":[305,389,459]},{"name":"NotificationHandler","features":[459]},{"name":"PPP_EAP_ACTION","features":[459]},{"name":"PPP_EAP_INFO","features":[459]},{"name":"PPP_EAP_INPUT","features":[305,459]},{"name":"PPP_EAP_OUTPUT","features":[305,389,459]},{"name":"PPP_EAP_PACKET","features":[459]},{"name":"RAS_AUTH_ATTRIBUTE","features":[459]},{"name":"RAS_AUTH_ATTRIBUTE_TYPE","features":[459]},{"name":"RAS_EAP_FLAG_8021X_AUTH","features":[459]},{"name":"RAS_EAP_FLAG_ALTERNATIVE_USER_DB","features":[459]},{"name":"RAS_EAP_FLAG_CONFG_READONLY","features":[459]},{"name":"RAS_EAP_FLAG_FIRST_LINK","features":[459]},{"name":"RAS_EAP_FLAG_GUEST_ACCESS","features":[459]},{"name":"RAS_EAP_FLAG_HOSTED_IN_PEAP","features":[459]},{"name":"RAS_EAP_FLAG_LOGON","features":[459]},{"name":"RAS_EAP_FLAG_MACHINE_AUTH","features":[459]},{"name":"RAS_EAP_FLAG_NON_INTERACTIVE","features":[459]},{"name":"RAS_EAP_FLAG_PEAP_FORCE_FULL_AUTH","features":[459]},{"name":"RAS_EAP_FLAG_PEAP_UPFRONT","features":[459]},{"name":"RAS_EAP_FLAG_PREVIEW","features":[459]},{"name":"RAS_EAP_FLAG_PRE_LOGON","features":[459]},{"name":"RAS_EAP_FLAG_RESERVED","features":[459]},{"name":"RAS_EAP_FLAG_RESUME_FROM_HIBERNATE","features":[459]},{"name":"RAS_EAP_FLAG_ROUTER","features":[459]},{"name":"RAS_EAP_FLAG_SAVE_CREDMAN","features":[459]},{"name":"RAS_EAP_FLAG_SERVER_VALIDATION_REQUIRED","features":[459]},{"name":"RAS_EAP_REGISTRY_LOCATION","features":[459]},{"name":"RAS_EAP_ROLE_AUTHENTICATEE","features":[459]},{"name":"RAS_EAP_ROLE_AUTHENTICATOR","features":[459]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_EAP","features":[459]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_PEAP","features":[459]},{"name":"RAS_EAP_ROLE_EXCLUDE_IN_VPN","features":[459]},{"name":"RAS_EAP_VALUENAME_CONFIGUI","features":[459]},{"name":"RAS_EAP_VALUENAME_CONFIG_CLSID","features":[459]},{"name":"RAS_EAP_VALUENAME_DEFAULT_DATA","features":[459]},{"name":"RAS_EAP_VALUENAME_ENCRYPTION","features":[459]},{"name":"RAS_EAP_VALUENAME_FILTER_INNERMETHODS","features":[459]},{"name":"RAS_EAP_VALUENAME_FRIENDLY_NAME","features":[459]},{"name":"RAS_EAP_VALUENAME_IDENTITY","features":[459]},{"name":"RAS_EAP_VALUENAME_INTERACTIVEUI","features":[459]},{"name":"RAS_EAP_VALUENAME_INVOKE_NAMEDLG","features":[459]},{"name":"RAS_EAP_VALUENAME_INVOKE_PWDDLG","features":[459]},{"name":"RAS_EAP_VALUENAME_ISTUNNEL_METHOD","features":[459]},{"name":"RAS_EAP_VALUENAME_PATH","features":[459]},{"name":"RAS_EAP_VALUENAME_PER_POLICY_CONFIG","features":[459]},{"name":"RAS_EAP_VALUENAME_REQUIRE_CONFIGUI","features":[459]},{"name":"RAS_EAP_VALUENAME_ROLES_SUPPORTED","features":[459]},{"name":"RAS_EAP_VALUENAME_STANDALONE_SUPPORTED","features":[459]},{"name":"eapPropCertifiedMethod","features":[459]},{"name":"eapPropChannelBinding","features":[459]},{"name":"eapPropCipherSuiteNegotiation","features":[459]},{"name":"eapPropConfidentiality","features":[459]},{"name":"eapPropCryptoBinding","features":[459]},{"name":"eapPropDictionaryAttackResistance","features":[459]},{"name":"eapPropFastReconnect","features":[459]},{"name":"eapPropFragmentation","features":[459]},{"name":"eapPropHiddenMethod","features":[459]},{"name":"eapPropIdentityPrivacy","features":[459]},{"name":"eapPropIntegrity","features":[459]},{"name":"eapPropKeyDerivation","features":[459]},{"name":"eapPropKeyStrength1024","features":[459]},{"name":"eapPropKeyStrength128","features":[459]},{"name":"eapPropKeyStrength256","features":[459]},{"name":"eapPropKeyStrength512","features":[459]},{"name":"eapPropKeyStrength64","features":[459]},{"name":"eapPropMachineAuth","features":[459]},{"name":"eapPropMethodChaining","features":[459]},{"name":"eapPropMppeEncryption","features":[459]},{"name":"eapPropMutualAuth","features":[459]},{"name":"eapPropNap","features":[459]},{"name":"eapPropReplayProtection","features":[459]},{"name":"eapPropReserved","features":[459]},{"name":"eapPropSessionIndependence","features":[459]},{"name":"eapPropSharedStateEquivalence","features":[459]},{"name":"eapPropStandalone","features":[459]},{"name":"eapPropSupportsConfig","features":[459]},{"name":"eapPropTunnelMethod","features":[459]},{"name":"eapPropUserAuth","features":[459]},{"name":"eatARAPChallengeResponse","features":[459]},{"name":"eatARAPFeatures","features":[459]},{"name":"eatARAPGuestLogon","features":[459]},{"name":"eatARAPPassword","features":[459]},{"name":"eatARAPSecurity","features":[459]},{"name":"eatARAPSecurityData","features":[459]},{"name":"eatARAPZoneAccess","features":[459]},{"name":"eatAcctAuthentic","features":[459]},{"name":"eatAcctDelayTime","features":[459]},{"name":"eatAcctEventTimeStamp","features":[459]},{"name":"eatAcctInputOctets","features":[459]},{"name":"eatAcctInputPackets","features":[459]},{"name":"eatAcctInterimInterval","features":[459]},{"name":"eatAcctLinkCount","features":[459]},{"name":"eatAcctMultiSessionId","features":[459]},{"name":"eatAcctOutputOctets","features":[459]},{"name":"eatAcctOutputPackets","features":[459]},{"name":"eatAcctSessionId","features":[459]},{"name":"eatAcctSessionTime","features":[459]},{"name":"eatAcctStatusType","features":[459]},{"name":"eatAcctTerminateCause","features":[459]},{"name":"eatCallbackId","features":[459]},{"name":"eatCallbackNumber","features":[459]},{"name":"eatCalledStationId","features":[459]},{"name":"eatCallingStationId","features":[459]},{"name":"eatCertificateOID","features":[459]},{"name":"eatCertificateThumbprint","features":[459]},{"name":"eatClass","features":[459]},{"name":"eatClearTextPassword","features":[459]},{"name":"eatConfigurationToken","features":[459]},{"name":"eatConnectInfo","features":[459]},{"name":"eatCredentialsChanged","features":[459]},{"name":"eatEAPConfiguration","features":[459]},{"name":"eatEAPMessage","features":[459]},{"name":"eatEAPTLV","features":[459]},{"name":"eatEMSK","features":[459]},{"name":"eatFastRoamedSession","features":[459]},{"name":"eatFilterId","features":[459]},{"name":"eatFramedAppleTalkLink","features":[459]},{"name":"eatFramedAppleTalkNetwork","features":[459]},{"name":"eatFramedAppleTalkZone","features":[459]},{"name":"eatFramedCompression","features":[459]},{"name":"eatFramedIPAddress","features":[459]},{"name":"eatFramedIPNetmask","features":[459]},{"name":"eatFramedIPXNetwork","features":[459]},{"name":"eatFramedIPv6Pool","features":[459]},{"name":"eatFramedIPv6Prefix","features":[459]},{"name":"eatFramedIPv6Route","features":[459]},{"name":"eatFramedInterfaceId","features":[459]},{"name":"eatFramedMTU","features":[459]},{"name":"eatFramedProtocol","features":[459]},{"name":"eatFramedRoute","features":[459]},{"name":"eatFramedRouting","features":[459]},{"name":"eatIdleTimeout","features":[459]},{"name":"eatInnerEapMethodType","features":[459]},{"name":"eatLoginIPHost","features":[459]},{"name":"eatLoginIPv6Host","features":[459]},{"name":"eatLoginLATGroup","features":[459]},{"name":"eatLoginLATNode","features":[459]},{"name":"eatLoginLATPort","features":[459]},{"name":"eatLoginLATService","features":[459]},{"name":"eatLoginService","features":[459]},{"name":"eatLoginTCPPort","features":[459]},{"name":"eatMD5CHAPChallenge","features":[459]},{"name":"eatMD5CHAPPassword","features":[459]},{"name":"eatMethodId","features":[459]},{"name":"eatMinimum","features":[459]},{"name":"eatNASIPAddress","features":[459]},{"name":"eatNASIPv6Address","features":[459]},{"name":"eatNASIdentifier","features":[459]},{"name":"eatNASPort","features":[459]},{"name":"eatNASPortType","features":[459]},{"name":"eatPEAPEmbeddedEAPTypeId","features":[459]},{"name":"eatPEAPFastRoamedSession","features":[459]},{"name":"eatPasswordRetry","features":[459]},{"name":"eatPeerId","features":[459]},{"name":"eatPortLimit","features":[459]},{"name":"eatPrompt","features":[459]},{"name":"eatProxyState","features":[459]},{"name":"eatQuarantineSoH","features":[459]},{"name":"eatReplyMessage","features":[459]},{"name":"eatReserved","features":[459]},{"name":"eatServerId","features":[459]},{"name":"eatServiceType","features":[459]},{"name":"eatSessionId","features":[459]},{"name":"eatSessionTimeout","features":[459]},{"name":"eatSignature","features":[459]},{"name":"eatState","features":[459]},{"name":"eatTerminationAction","features":[459]},{"name":"eatTunnelClientEndpoint","features":[459]},{"name":"eatTunnelMediumType","features":[459]},{"name":"eatTunnelServerEndpoint","features":[459]},{"name":"eatTunnelType","features":[459]},{"name":"eatUnassigned17","features":[459]},{"name":"eatUnassigned21","features":[459]},{"name":"eatUserName","features":[459]},{"name":"eatUserPassword","features":[459]},{"name":"eatVendorSpecific","features":[459]},{"name":"emptLegacyMethodPropertyFlag","features":[459]},{"name":"emptPropCertifiedMethod","features":[459]},{"name":"emptPropChannelBinding","features":[459]},{"name":"emptPropCipherSuiteNegotiation","features":[459]},{"name":"emptPropConfidentiality","features":[459]},{"name":"emptPropCryptoBinding","features":[459]},{"name":"emptPropDictionaryAttackResistance","features":[459]},{"name":"emptPropFastReconnect","features":[459]},{"name":"emptPropFragmentation","features":[459]},{"name":"emptPropHiddenMethod","features":[459]},{"name":"emptPropIdentityPrivacy","features":[459]},{"name":"emptPropIntegrity","features":[459]},{"name":"emptPropKeyDerivation","features":[459]},{"name":"emptPropKeyStrength1024","features":[459]},{"name":"emptPropKeyStrength128","features":[459]},{"name":"emptPropKeyStrength256","features":[459]},{"name":"emptPropKeyStrength512","features":[459]},{"name":"emptPropKeyStrength64","features":[459]},{"name":"emptPropMachineAuth","features":[459]},{"name":"emptPropMethodChaining","features":[459]},{"name":"emptPropMppeEncryption","features":[459]},{"name":"emptPropMutualAuth","features":[459]},{"name":"emptPropNap","features":[459]},{"name":"emptPropReplayProtection","features":[459]},{"name":"emptPropSessionIndependence","features":[459]},{"name":"emptPropSharedStateEquivalence","features":[459]},{"name":"emptPropStandalone","features":[459]},{"name":"emptPropSupportsConfig","features":[459]},{"name":"emptPropTunnelMethod","features":[459]},{"name":"emptPropUserAuth","features":[459]},{"name":"emptPropVendorSpecific","features":[459]},{"name":"empvtBool","features":[459]},{"name":"empvtDword","features":[459]},{"name":"empvtString","features":[459]},{"name":"raatARAPChallenge","features":[459]},{"name":"raatARAPChallengeResponse","features":[459]},{"name":"raatARAPFeatures","features":[459]},{"name":"raatARAPGuestLogon","features":[459]},{"name":"raatARAPNewPassword","features":[459]},{"name":"raatARAPOldPassword","features":[459]},{"name":"raatARAPPassword","features":[459]},{"name":"raatARAPPasswordChangeReason","features":[459]},{"name":"raatARAPSecurity","features":[459]},{"name":"raatARAPSecurityData","features":[459]},{"name":"raatARAPZoneAccess","features":[459]},{"name":"raatAcctAuthentic","features":[459]},{"name":"raatAcctDelayTime","features":[459]},{"name":"raatAcctEventTimeStamp","features":[459]},{"name":"raatAcctInputOctets","features":[459]},{"name":"raatAcctInputPackets","features":[459]},{"name":"raatAcctInterimInterval","features":[459]},{"name":"raatAcctLinkCount","features":[459]},{"name":"raatAcctMultiSessionId","features":[459]},{"name":"raatAcctOutputOctets","features":[459]},{"name":"raatAcctOutputPackets","features":[459]},{"name":"raatAcctSessionId","features":[459]},{"name":"raatAcctSessionTime","features":[459]},{"name":"raatAcctStatusType","features":[459]},{"name":"raatAcctTerminateCause","features":[459]},{"name":"raatCallbackId","features":[459]},{"name":"raatCallbackNumber","features":[459]},{"name":"raatCalledStationId","features":[459]},{"name":"raatCallingStationId","features":[459]},{"name":"raatCertificateOID","features":[459]},{"name":"raatCertificateThumbprint","features":[459]},{"name":"raatClass","features":[459]},{"name":"raatConfigurationToken","features":[459]},{"name":"raatConnectInfo","features":[459]},{"name":"raatCredentialsChanged","features":[459]},{"name":"raatEAPConfiguration","features":[459]},{"name":"raatEAPMessage","features":[459]},{"name":"raatEAPTLV","features":[459]},{"name":"raatEMSK","features":[459]},{"name":"raatFastRoamedSession","features":[459]},{"name":"raatFilterId","features":[459]},{"name":"raatFramedAppleTalkLink","features":[459]},{"name":"raatFramedAppleTalkNetwork","features":[459]},{"name":"raatFramedAppleTalkZone","features":[459]},{"name":"raatFramedCompression","features":[459]},{"name":"raatFramedIPAddress","features":[459]},{"name":"raatFramedIPNetmask","features":[459]},{"name":"raatFramedIPXNetwork","features":[459]},{"name":"raatFramedIPv6Pool","features":[459]},{"name":"raatFramedIPv6Prefix","features":[459]},{"name":"raatFramedIPv6Route","features":[459]},{"name":"raatFramedInterfaceId","features":[459]},{"name":"raatFramedMTU","features":[459]},{"name":"raatFramedProtocol","features":[459]},{"name":"raatFramedRoute","features":[459]},{"name":"raatFramedRouting","features":[459]},{"name":"raatIdleTimeout","features":[459]},{"name":"raatInnerEAPTypeId","features":[459]},{"name":"raatLoginIPHost","features":[459]},{"name":"raatLoginIPv6Host","features":[459]},{"name":"raatLoginLATGroup","features":[459]},{"name":"raatLoginLATNode","features":[459]},{"name":"raatLoginLATPort","features":[459]},{"name":"raatLoginLATService","features":[459]},{"name":"raatLoginService","features":[459]},{"name":"raatLoginTCPPort","features":[459]},{"name":"raatMD5CHAPChallenge","features":[459]},{"name":"raatMD5CHAPPassword","features":[459]},{"name":"raatMethodId","features":[459]},{"name":"raatMinimum","features":[459]},{"name":"raatNASIPAddress","features":[459]},{"name":"raatNASIPv6Address","features":[459]},{"name":"raatNASIdentifier","features":[459]},{"name":"raatNASPort","features":[459]},{"name":"raatNASPortType","features":[459]},{"name":"raatPEAPEmbeddedEAPTypeId","features":[459]},{"name":"raatPEAPFastRoamedSession","features":[459]},{"name":"raatPasswordRetry","features":[459]},{"name":"raatPeerId","features":[459]},{"name":"raatPortLimit","features":[459]},{"name":"raatPrompt","features":[459]},{"name":"raatProxyState","features":[459]},{"name":"raatReplyMessage","features":[459]},{"name":"raatReserved","features":[459]},{"name":"raatServerId","features":[459]},{"name":"raatServiceType","features":[459]},{"name":"raatSessionId","features":[459]},{"name":"raatSessionTimeout","features":[459]},{"name":"raatSignature","features":[459]},{"name":"raatState","features":[459]},{"name":"raatTerminationAction","features":[459]},{"name":"raatTunnelClientEndpoint","features":[459]},{"name":"raatTunnelMediumType","features":[459]},{"name":"raatTunnelServerEndpoint","features":[459]},{"name":"raatTunnelType","features":[459]},{"name":"raatUnassigned17","features":[459]},{"name":"raatUnassigned21","features":[459]},{"name":"raatUserName","features":[459]},{"name":"raatUserPassword","features":[459]},{"name":"raatVendorSpecific","features":[459]}],"498":[{"name":"CreateAppContainerProfile","features":[494]},{"name":"DeleteAppContainerProfile","features":[494]},{"name":"DeriveAppContainerSidFromAppContainerName","features":[494]},{"name":"DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName","features":[494]},{"name":"GetAppContainerFolderPath","features":[494]},{"name":"GetAppContainerNamedObjectPath","features":[305,494]},{"name":"GetAppContainerRegistryLocation","features":[494,366]},{"name":"IIsolatedAppLauncher","features":[494]},{"name":"IIsolatedProcessLauncher","features":[494]},{"name":"IIsolatedProcessLauncher2","features":[494]},{"name":"IsCrossIsolatedEnvironmentClipboardContent","features":[305,494]},{"name":"IsProcessInIsolatedContainer","features":[305,494]},{"name":"IsProcessInIsolatedWindowsEnvironment","features":[305,494]},{"name":"IsProcessInWDAGContainer","features":[305,494]},{"name":"IsolatedAppLauncher","features":[494]},{"name":"IsolatedAppLauncherTelemetryParameters","features":[305,494]},{"name":"WDAG_CLIPBOARD_TAG","features":[494]}],"499":[{"name":"LicenseKeyAlreadyExists","features":[495]},{"name":"LicenseKeyCorrupted","features":[495]},{"name":"LicenseKeyNotFound","features":[495]},{"name":"LicenseKeyUnprotected","features":[495]},{"name":"LicenseProtectionStatus","features":[495]},{"name":"RegisterLicenseKeyWithExpiration","features":[495]},{"name":"Success","features":[495]},{"name":"ValidateLicenseKeyProtection","features":[305,495]}],"500":[{"name":"ComponentTypeEnforcementClientRp","features":[496]},{"name":"ComponentTypeEnforcementClientSoH","features":[496]},{"name":"CorrelationId","features":[305,496]},{"name":"CountedString","features":[496]},{"name":"ExtendedIsolationState","features":[496]},{"name":"FailureCategory","features":[496]},{"name":"FailureCategoryMapping","features":[305,496]},{"name":"FixupInfo","features":[496]},{"name":"FixupState","features":[496]},{"name":"Ipv4Address","features":[496]},{"name":"Ipv6Address","features":[496]},{"name":"IsolationInfo","features":[305,496]},{"name":"IsolationInfoEx","features":[305,496]},{"name":"IsolationState","features":[496]},{"name":"NapComponentRegistrationInfo","features":[305,496]},{"name":"NapNotifyType","features":[496]},{"name":"NapTracingLevel","features":[496]},{"name":"NetworkSoH","features":[496]},{"name":"PrivateData","features":[496]},{"name":"RemoteConfigurationType","features":[496]},{"name":"ResultCodes","features":[496]},{"name":"SoH","features":[496]},{"name":"SoHAttribute","features":[496]},{"name":"SystemHealthAgentState","features":[496]},{"name":"extendedIsolationStateInfected","features":[496]},{"name":"extendedIsolationStateNoData","features":[496]},{"name":"extendedIsolationStateTransition","features":[496]},{"name":"extendedIsolationStateUnknown","features":[496]},{"name":"failureCategoryClientCommunication","features":[496]},{"name":"failureCategoryClientComponent","features":[496]},{"name":"failureCategoryCount","features":[496]},{"name":"failureCategoryNone","features":[496]},{"name":"failureCategoryOther","features":[496]},{"name":"failureCategoryServerCommunication","features":[496]},{"name":"failureCategoryServerComponent","features":[496]},{"name":"fixupStateCouldNotUpdate","features":[496]},{"name":"fixupStateInProgress","features":[496]},{"name":"fixupStateSuccess","features":[496]},{"name":"freshSoHRequest","features":[496]},{"name":"isolationStateInProbation","features":[496]},{"name":"isolationStateNotRestricted","features":[496]},{"name":"isolationStateRestrictedAccess","features":[496]},{"name":"maxConnectionCountPerEnforcer","features":[496]},{"name":"maxEnforcerCount","features":[496]},{"name":"maxNetworkSoHSize","features":[496]},{"name":"maxPrivateDataSize","features":[496]},{"name":"maxSoHAttributeCount","features":[496]},{"name":"maxSoHAttributeSize","features":[496]},{"name":"maxStringLength","features":[496]},{"name":"maxSystemHealthEntityCount","features":[496]},{"name":"minNetworkSoHSize","features":[496]},{"name":"napNotifyTypeQuarState","features":[496]},{"name":"napNotifyTypeServiceState","features":[496]},{"name":"napNotifyTypeUnknown","features":[496]},{"name":"percentageNotSupported","features":[496]},{"name":"remoteConfigTypeConfigBlob","features":[496]},{"name":"remoteConfigTypeMachine","features":[496]},{"name":"shaFixup","features":[496]},{"name":"tracingLevelAdvanced","features":[496]},{"name":"tracingLevelBasic","features":[496]},{"name":"tracingLevelDebug","features":[496]},{"name":"tracingLevelUndefined","features":[496]}],"501":[{"name":"ITpmVirtualSmartCardManager","features":[497]},{"name":"ITpmVirtualSmartCardManager2","features":[497]},{"name":"ITpmVirtualSmartCardManager3","features":[497]},{"name":"ITpmVirtualSmartCardManagerStatusCallback","features":[497]},{"name":"RemoteTpmVirtualSmartCardManager","features":[497]},{"name":"TPMVSCMGR_ERROR","features":[497]},{"name":"TPMVSCMGR_ERROR_CARD_CREATE","features":[497]},{"name":"TPMVSCMGR_ERROR_CARD_DESTROY","features":[497]},{"name":"TPMVSCMGR_ERROR_GENERATE_FILESYSTEM","features":[497]},{"name":"TPMVSCMGR_ERROR_GENERATE_LOCATE_READER","features":[497]},{"name":"TPMVSCMGR_ERROR_IMPERSONATION","features":[497]},{"name":"TPMVSCMGR_ERROR_PIN_COMPLEXITY","features":[497]},{"name":"TPMVSCMGR_ERROR_READER_COUNT_LIMIT","features":[497]},{"name":"TPMVSCMGR_ERROR_TERMINAL_SERVICES_SESSION","features":[497]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_CREATE","features":[497]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_DESTROY","features":[497]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_INITIALIZE","features":[497]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_READ_PROPERTY","features":[497]},{"name":"TPMVSCMGR_ERROR_VGIDSSIMULATOR_WRITE_PROPERTY","features":[497]},{"name":"TPMVSCMGR_ERROR_VREADER_CREATE","features":[497]},{"name":"TPMVSCMGR_ERROR_VREADER_DESTROY","features":[497]},{"name":"TPMVSCMGR_ERROR_VREADER_INITIALIZE","features":[497]},{"name":"TPMVSCMGR_ERROR_VTPMSMARTCARD_CREATE","features":[497]},{"name":"TPMVSCMGR_ERROR_VTPMSMARTCARD_DESTROY","features":[497]},{"name":"TPMVSCMGR_ERROR_VTPMSMARTCARD_INITIALIZE","features":[497]},{"name":"TPMVSCMGR_STATUS","features":[497]},{"name":"TPMVSCMGR_STATUS_CARD_CREATED","features":[497]},{"name":"TPMVSCMGR_STATUS_CARD_DESTROYED","features":[497]},{"name":"TPMVSCMGR_STATUS_GENERATE_AUTHENTICATING","features":[497]},{"name":"TPMVSCMGR_STATUS_GENERATE_RUNNING","features":[497]},{"name":"TPMVSCMGR_STATUS_GENERATE_WAITING","features":[497]},{"name":"TPMVSCMGR_STATUS_VGIDSSIMULATOR_CREATING","features":[497]},{"name":"TPMVSCMGR_STATUS_VGIDSSIMULATOR_DESTROYING","features":[497]},{"name":"TPMVSCMGR_STATUS_VGIDSSIMULATOR_INITIALIZING","features":[497]},{"name":"TPMVSCMGR_STATUS_VREADER_CREATING","features":[497]},{"name":"TPMVSCMGR_STATUS_VREADER_DESTROYING","features":[497]},{"name":"TPMVSCMGR_STATUS_VREADER_INITIALIZING","features":[497]},{"name":"TPMVSCMGR_STATUS_VTPMSMARTCARD_CREATING","features":[497]},{"name":"TPMVSCMGR_STATUS_VTPMSMARTCARD_DESTROYING","features":[497]},{"name":"TPMVSCMGR_STATUS_VTPMSMARTCARD_INITIALIZING","features":[497]},{"name":"TPMVSC_ATTESTATION_AIK_AND_CERTIFICATE","features":[497]},{"name":"TPMVSC_ATTESTATION_AIK_ONLY","features":[497]},{"name":"TPMVSC_ATTESTATION_NONE","features":[497]},{"name":"TPMVSC_ATTESTATION_TYPE","features":[497]},{"name":"TPMVSC_DEFAULT_ADMIN_ALGORITHM_ID","features":[497]},{"name":"TpmVirtualSmartCardManager","features":[497]}],"502":[{"name":"CAT_MEMBERINFO","features":[489]},{"name":"CAT_MEMBERINFO2","features":[489]},{"name":"CAT_MEMBERINFO2_OBJID","features":[489]},{"name":"CAT_MEMBERINFO2_STRUCT","features":[489]},{"name":"CAT_MEMBERINFO_OBJID","features":[489]},{"name":"CAT_MEMBERINFO_STRUCT","features":[489]},{"name":"CAT_NAMEVALUE","features":[389,489]},{"name":"CAT_NAMEVALUE_OBJID","features":[489]},{"name":"CAT_NAMEVALUE_STRUCT","features":[489]},{"name":"CCPI_RESULT_ALLOW","features":[489]},{"name":"CCPI_RESULT_AUDIT","features":[489]},{"name":"CCPI_RESULT_DENY","features":[489]},{"name":"CERT_CONFIDENCE_AUTHIDEXT","features":[489]},{"name":"CERT_CONFIDENCE_HIGHEST","features":[489]},{"name":"CERT_CONFIDENCE_HYGIENE","features":[489]},{"name":"CERT_CONFIDENCE_SIG","features":[489]},{"name":"CERT_CONFIDENCE_TIME","features":[489]},{"name":"CERT_CONFIDENCE_TIMENEST","features":[489]},{"name":"CONFIG_CI_ACTION_VERIFY","features":[489]},{"name":"CONFIG_CI_PROV_INFO","features":[305,389,489]},{"name":"CONFIG_CI_PROV_INFO_RESULT","features":[305,489]},{"name":"CONFIG_CI_PROV_INFO_RESULT2","features":[305,489]},{"name":"CPD_CHOICE_SIP","features":[489]},{"name":"CPD_RETURN_LOWER_QUALITY_CHAINS","features":[489]},{"name":"CPD_REVOCATION_CHECK_CHAIN","features":[489]},{"name":"CPD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[489]},{"name":"CPD_REVOCATION_CHECK_END_CERT","features":[489]},{"name":"CPD_REVOCATION_CHECK_NONE","features":[489]},{"name":"CPD_RFC3161v21","features":[489]},{"name":"CPD_UISTATE_MODE_ALLOW","features":[489]},{"name":"CPD_UISTATE_MODE_BLOCK","features":[489]},{"name":"CPD_UISTATE_MODE_MASK","features":[489]},{"name":"CPD_UISTATE_MODE_PROMPT","features":[489]},{"name":"CPD_USE_NT5_CHAIN_FLAG","features":[489]},{"name":"CRYPT_PROVIDER_CERT","features":[305,389,489]},{"name":"CRYPT_PROVIDER_DATA","features":[305,485,486,489]},{"name":"CRYPT_PROVIDER_DEFUSAGE","features":[489]},{"name":"CRYPT_PROVIDER_FUNCTIONS","features":[305,485,486,489]},{"name":"CRYPT_PROVIDER_PRIVDATA","features":[489]},{"name":"CRYPT_PROVIDER_REGDEFUSAGE","features":[489]},{"name":"CRYPT_PROVIDER_SGNR","features":[305,389,489]},{"name":"CRYPT_PROVIDER_SIGSTATE","features":[305,389,489]},{"name":"CRYPT_PROVUI_DATA","features":[489]},{"name":"CRYPT_PROVUI_FUNCS","features":[305,485,486,489]},{"name":"CRYPT_REGISTER_ACTIONID","features":[489]},{"name":"CRYPT_TRUST_REG_ENTRY","features":[489]},{"name":"DRIVER_ACTION_VERIFY","features":[489]},{"name":"DRIVER_CLEANUPPOLICY_FUNCTION","features":[489]},{"name":"DRIVER_FINALPOLPROV_FUNCTION","features":[489]},{"name":"DRIVER_INITPROV_FUNCTION","features":[489]},{"name":"DRIVER_VER_INFO","features":[305,389,489]},{"name":"DRIVER_VER_MAJORMINOR","features":[489]},{"name":"DWACTION_ALLOCANDFILL","features":[489]},{"name":"DWACTION_FREE","features":[489]},{"name":"GENERIC_CHAIN_CERTTRUST_FUNCTION","features":[489]},{"name":"GENERIC_CHAIN_FINALPOLICY_FUNCTION","features":[489]},{"name":"HTTPSPROV_ACTION","features":[489]},{"name":"HTTPS_CERTTRUST_FUNCTION","features":[489]},{"name":"HTTPS_CHKCERT_FUNCTION","features":[489]},{"name":"HTTPS_FINALPOLICY_FUNCTION","features":[489]},{"name":"INTENT_TO_SEAL_ATTRIBUTE","features":[305,489]},{"name":"INTENT_TO_SEAL_ATTRIBUTE_STRUCT","features":[489]},{"name":"OFFICESIGN_ACTION_VERIFY","features":[489]},{"name":"OFFICE_CLEANUPPOLICY_FUNCTION","features":[489]},{"name":"OFFICE_INITPROV_FUNCTION","features":[489]},{"name":"OFFICE_POLICY_PROVIDER_DLL_NAME","features":[489]},{"name":"OpenPersonalTrustDBDialog","features":[305,489]},{"name":"OpenPersonalTrustDBDialogEx","features":[305,489]},{"name":"PFN_ALLOCANDFILLDEFUSAGE","features":[305,489]},{"name":"PFN_CPD_ADD_CERT","features":[305,485,486,489]},{"name":"PFN_CPD_ADD_PRIVDATA","features":[305,485,486,489]},{"name":"PFN_CPD_ADD_SGNR","features":[305,485,486,489]},{"name":"PFN_CPD_ADD_STORE","features":[305,485,486,489]},{"name":"PFN_CPD_MEM_ALLOC","features":[489]},{"name":"PFN_CPD_MEM_FREE","features":[489]},{"name":"PFN_FREEDEFUSAGE","features":[305,489]},{"name":"PFN_PROVIDER_CERTCHKPOLICY_CALL","features":[305,485,486,489]},{"name":"PFN_PROVIDER_CERTTRUST_CALL","features":[305,485,486,489]},{"name":"PFN_PROVIDER_CLEANUP_CALL","features":[305,485,486,489]},{"name":"PFN_PROVIDER_FINALPOLICY_CALL","features":[305,485,486,489]},{"name":"PFN_PROVIDER_INIT_CALL","features":[305,485,486,489]},{"name":"PFN_PROVIDER_OBJTRUST_CALL","features":[305,485,486,489]},{"name":"PFN_PROVIDER_SIGTRUST_CALL","features":[305,485,486,489]},{"name":"PFN_PROVIDER_TESTFINALPOLICY_CALL","features":[305,485,486,489]},{"name":"PFN_PROVUI_CALL","features":[305,485,486,489]},{"name":"PFN_WTD_GENERIC_CHAIN_POLICY_CALLBACK","features":[305,485,486,489]},{"name":"PROVDATA_SIP","features":[305,485,486,489]},{"name":"SEALING_SIGNATURE_ATTRIBUTE","features":[389,489]},{"name":"SEALING_SIGNATURE_ATTRIBUTE_STRUCT","features":[489]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE","features":[389,489]},{"name":"SEALING_TIMESTAMP_ATTRIBUTE_STRUCT","features":[489]},{"name":"SGNR_TYPE_TIMESTAMP","features":[489]},{"name":"SPC_CAB_DATA_OBJID","features":[489]},{"name":"SPC_CAB_DATA_STRUCT","features":[489]},{"name":"SPC_CERT_EXTENSIONS_OBJID","features":[489]},{"name":"SPC_COMMERCIAL_SP_KEY_PURPOSE_OBJID","features":[489]},{"name":"SPC_COMMON_NAME_OBJID","features":[489]},{"name":"SPC_ENCRYPTED_DIGEST_RETRY_COUNT_OBJID","features":[489]},{"name":"SPC_FILE_LINK_CHOICE","features":[489]},{"name":"SPC_FINANCIAL_CRITERIA","features":[305,489]},{"name":"SPC_FINANCIAL_CRITERIA_OBJID","features":[489]},{"name":"SPC_FINANCIAL_CRITERIA_STRUCT","features":[489]},{"name":"SPC_GLUE_RDN_OBJID","features":[489]},{"name":"SPC_IMAGE","features":[389,489]},{"name":"SPC_INDIRECT_DATA_CONTENT","features":[389,489]},{"name":"SPC_INDIRECT_DATA_CONTENT_STRUCT","features":[489]},{"name":"SPC_INDIRECT_DATA_OBJID","features":[489]},{"name":"SPC_INDIVIDUAL_SP_KEY_PURPOSE_OBJID","features":[489]},{"name":"SPC_JAVA_CLASS_DATA_OBJID","features":[489]},{"name":"SPC_JAVA_CLASS_DATA_STRUCT","features":[489]},{"name":"SPC_LINK","features":[389,489]},{"name":"SPC_LINK_OBJID","features":[489]},{"name":"SPC_LINK_STRUCT","features":[489]},{"name":"SPC_MINIMAL_CRITERIA_OBJID","features":[489]},{"name":"SPC_MINIMAL_CRITERIA_STRUCT","features":[489]},{"name":"SPC_MONIKER_LINK_CHOICE","features":[489]},{"name":"SPC_NATURAL_AUTH_PLUGIN_OBJID","features":[489]},{"name":"SPC_PE_IMAGE_DATA","features":[389,489]},{"name":"SPC_PE_IMAGE_DATA_OBJID","features":[489]},{"name":"SPC_PE_IMAGE_DATA_STRUCT","features":[489]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V1_OBJID","features":[489]},{"name":"SPC_PE_IMAGE_PAGE_HASHES_V2_OBJID","features":[489]},{"name":"SPC_RAW_FILE_DATA_OBJID","features":[489]},{"name":"SPC_RELAXED_PE_MARKER_CHECK_OBJID","features":[489]},{"name":"SPC_SERIALIZED_OBJECT","features":[389,489]},{"name":"SPC_SIGINFO","features":[489]},{"name":"SPC_SIGINFO_OBJID","features":[489]},{"name":"SPC_SIGINFO_STRUCT","features":[489]},{"name":"SPC_SP_AGENCY_INFO","features":[389,489]},{"name":"SPC_SP_AGENCY_INFO_OBJID","features":[489]},{"name":"SPC_SP_AGENCY_INFO_STRUCT","features":[489]},{"name":"SPC_SP_OPUS_INFO","features":[389,489]},{"name":"SPC_SP_OPUS_INFO_OBJID","features":[489]},{"name":"SPC_SP_OPUS_INFO_STRUCT","features":[489]},{"name":"SPC_STATEMENT_TYPE","features":[489]},{"name":"SPC_STATEMENT_TYPE_OBJID","features":[489]},{"name":"SPC_STATEMENT_TYPE_STRUCT","features":[489]},{"name":"SPC_STRUCTURED_STORAGE_DATA_OBJID","features":[489]},{"name":"SPC_TIME_STAMP_REQUEST_OBJID","features":[489]},{"name":"SPC_URL_LINK_CHOICE","features":[489]},{"name":"SPC_UUID_LENGTH","features":[489]},{"name":"SPC_WINDOWS_HELLO_COMPATIBILITY_OBJID","features":[489]},{"name":"SP_CHKCERT_FUNCTION","features":[489]},{"name":"SP_CLEANUPPOLICY_FUNCTION","features":[489]},{"name":"SP_FINALPOLICY_FUNCTION","features":[489]},{"name":"SP_GENERIC_CERT_INIT_FUNCTION","features":[489]},{"name":"SP_INIT_FUNCTION","features":[489]},{"name":"SP_OBJTRUST_FUNCTION","features":[489]},{"name":"SP_POLICY_PROVIDER_DLL_NAME","features":[489]},{"name":"SP_SIGTRUST_FUNCTION","features":[489]},{"name":"SP_TESTDUMPPOLICY_FUNCTION_TEST","features":[489]},{"name":"TRUSTERROR_MAX_STEPS","features":[489]},{"name":"TRUSTERROR_STEP_CATALOGFILE","features":[489]},{"name":"TRUSTERROR_STEP_CERTSTORE","features":[489]},{"name":"TRUSTERROR_STEP_FILEIO","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_CERTCHKPROV","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_CERTPROV","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_INITPROV","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_OBJPROV","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_POLICYPROV","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_SIGPROV","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_UIPROV","features":[489]},{"name":"TRUSTERROR_STEP_FINAL_WVTINIT","features":[489]},{"name":"TRUSTERROR_STEP_MESSAGE","features":[489]},{"name":"TRUSTERROR_STEP_MSG_CERTCHAIN","features":[489]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGCERT","features":[489]},{"name":"TRUSTERROR_STEP_MSG_COUNTERSIGINFO","features":[489]},{"name":"TRUSTERROR_STEP_MSG_INNERCNT","features":[489]},{"name":"TRUSTERROR_STEP_MSG_INNERCNTTYPE","features":[489]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCERT","features":[489]},{"name":"TRUSTERROR_STEP_MSG_SIGNERCOUNT","features":[489]},{"name":"TRUSTERROR_STEP_MSG_SIGNERINFO","features":[489]},{"name":"TRUSTERROR_STEP_MSG_STORE","features":[489]},{"name":"TRUSTERROR_STEP_SIP","features":[489]},{"name":"TRUSTERROR_STEP_SIPSUBJINFO","features":[489]},{"name":"TRUSTERROR_STEP_VERIFY_MSGHASH","features":[489]},{"name":"TRUSTERROR_STEP_VERIFY_MSGINDIRECTDATA","features":[489]},{"name":"TRUSTERROR_STEP_WVTPARAMS","features":[489]},{"name":"WINTRUST_ACTION_GENERIC_CERT_VERIFY","features":[489]},{"name":"WINTRUST_ACTION_GENERIC_CHAIN_VERIFY","features":[489]},{"name":"WINTRUST_ACTION_GENERIC_VERIFY_V2","features":[489]},{"name":"WINTRUST_ACTION_TRUSTPROVIDER_TEST","features":[489]},{"name":"WINTRUST_BLOB_INFO","features":[489]},{"name":"WINTRUST_CATALOG_INFO","features":[305,389,489]},{"name":"WINTRUST_CERT_INFO","features":[305,389,489]},{"name":"WINTRUST_CONFIG_REGPATH","features":[489]},{"name":"WINTRUST_DATA","features":[305,389,489]},{"name":"WINTRUST_DATA_PROVIDER_FLAGS","features":[489]},{"name":"WINTRUST_DATA_REVOCATION_CHECKS","features":[489]},{"name":"WINTRUST_DATA_STATE_ACTION","features":[489]},{"name":"WINTRUST_DATA_UICHOICE","features":[489]},{"name":"WINTRUST_DATA_UICONTEXT","features":[489]},{"name":"WINTRUST_DATA_UNION_CHOICE","features":[489]},{"name":"WINTRUST_FILE_INFO","features":[305,489]},{"name":"WINTRUST_GET_DEFAULT_FOR_USAGE_ACTION","features":[489]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_DEFAULT","features":[489]},{"name":"WINTRUST_MAX_HASH_BYTES_TO_MAP_VALUE_NAME","features":[489]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_DEFAULT","features":[489]},{"name":"WINTRUST_MAX_HEADER_BYTES_TO_MAP_VALUE_NAME","features":[489]},{"name":"WINTRUST_POLICY_FLAGS","features":[489]},{"name":"WINTRUST_SGNR_INFO","features":[389,489]},{"name":"WINTRUST_SIGNATURE_SETTINGS","features":[389,489]},{"name":"WINTRUST_SIGNATURE_SETTINGS_FLAGS","features":[489]},{"name":"WIN_CERTIFICATE","features":[489]},{"name":"WIN_CERT_REVISION_1_0","features":[489]},{"name":"WIN_CERT_REVISION_2_0","features":[489]},{"name":"WIN_CERT_TYPE_PKCS_SIGNED_DATA","features":[489]},{"name":"WIN_CERT_TYPE_RESERVED_1","features":[489]},{"name":"WIN_CERT_TYPE_TS_STACK_SIGNED","features":[489]},{"name":"WIN_CERT_TYPE_X509","features":[489]},{"name":"WIN_SPUB_ACTION_NT_ACTIVATE_IMAGE","features":[489]},{"name":"WIN_SPUB_ACTION_PUBLISHED_SOFTWARE","features":[489]},{"name":"WIN_SPUB_ACTION_TRUSTED_PUBLISHER","features":[489]},{"name":"WIN_SPUB_TRUSTED_PUBLISHER_DATA","features":[305,489]},{"name":"WIN_TRUST_ACTDATA_CONTEXT_WITH_SUBJECT","features":[305,489]},{"name":"WIN_TRUST_ACTDATA_SUBJECT_ONLY","features":[489]},{"name":"WIN_TRUST_SUBJECT_FILE","features":[305,489]},{"name":"WIN_TRUST_SUBJECT_FILE_AND_DISPLAY","features":[305,489]},{"name":"WIN_TRUST_SUBJTYPE_CABINET","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_CABINETEX","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASS","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_JAVA_CLASSEX","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_OLE_STORAGE","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGE","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_PE_IMAGEEX","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILE","features":[489]},{"name":"WIN_TRUST_SUBJTYPE_RAW_FILEEX","features":[489]},{"name":"WSS_CERTTRUST_SUPPORT","features":[489]},{"name":"WSS_GET_SECONDARY_SIG_COUNT","features":[489]},{"name":"WSS_INPUT_FLAG_MASK","features":[489]},{"name":"WSS_OBJTRUST_SUPPORT","features":[489]},{"name":"WSS_OUTPUT_FLAG_MASK","features":[489]},{"name":"WSS_OUT_FILE_SUPPORTS_SEAL","features":[489]},{"name":"WSS_OUT_HAS_SEALING_INTENT","features":[489]},{"name":"WSS_OUT_SEALING_STATUS_VERIFIED","features":[489]},{"name":"WSS_SIGTRUST_SUPPORT","features":[489]},{"name":"WSS_VERIFY_SEALING","features":[489]},{"name":"WSS_VERIFY_SPECIFIC","features":[489]},{"name":"WTCI_DONT_OPEN_STORES","features":[489]},{"name":"WTCI_OPEN_ONLY_ROOT","features":[489]},{"name":"WTCI_USE_LOCAL_MACHINE","features":[489]},{"name":"WTD_CACHE_ONLY_URL_RETRIEVAL","features":[489]},{"name":"WTD_CHOICE_BLOB","features":[489]},{"name":"WTD_CHOICE_CATALOG","features":[489]},{"name":"WTD_CHOICE_CERT","features":[489]},{"name":"WTD_CHOICE_FILE","features":[489]},{"name":"WTD_CHOICE_SIGNER","features":[489]},{"name":"WTD_CODE_INTEGRITY_DRIVER_MODE","features":[489]},{"name":"WTD_DISABLE_MD2_MD4","features":[489]},{"name":"WTD_GENERIC_CHAIN_POLICY_CREATE_INFO","features":[389,489]},{"name":"WTD_GENERIC_CHAIN_POLICY_DATA","features":[305,485,486,489]},{"name":"WTD_GENERIC_CHAIN_POLICY_SIGNER_INFO","features":[305,389,489]},{"name":"WTD_HASH_ONLY_FLAG","features":[489]},{"name":"WTD_LIFETIME_SIGNING_FLAG","features":[489]},{"name":"WTD_MOTW","features":[489]},{"name":"WTD_NO_IE4_CHAIN_FLAG","features":[489]},{"name":"WTD_NO_POLICY_USAGE_FLAG","features":[489]},{"name":"WTD_PROV_FLAGS_MASK","features":[489]},{"name":"WTD_REVOCATION_CHECK_CHAIN","features":[489]},{"name":"WTD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT","features":[489]},{"name":"WTD_REVOCATION_CHECK_END_CERT","features":[489]},{"name":"WTD_REVOCATION_CHECK_NONE","features":[489]},{"name":"WTD_REVOKE_NONE","features":[489]},{"name":"WTD_REVOKE_WHOLECHAIN","features":[489]},{"name":"WTD_SAFER_FLAG","features":[489]},{"name":"WTD_STATEACTION_AUTO_CACHE","features":[489]},{"name":"WTD_STATEACTION_AUTO_CACHE_FLUSH","features":[489]},{"name":"WTD_STATEACTION_CLOSE","features":[489]},{"name":"WTD_STATEACTION_IGNORE","features":[489]},{"name":"WTD_STATEACTION_VERIFY","features":[489]},{"name":"WTD_UICONTEXT_EXECUTE","features":[489]},{"name":"WTD_UICONTEXT_INSTALL","features":[489]},{"name":"WTD_UI_ALL","features":[489]},{"name":"WTD_UI_NOBAD","features":[489]},{"name":"WTD_UI_NOGOOD","features":[489]},{"name":"WTD_UI_NONE","features":[489]},{"name":"WTD_USE_DEFAULT_OSVER_CHECK","features":[489]},{"name":"WTD_USE_IE4_TRUST_FLAG","features":[489]},{"name":"WTHelperCertCheckValidSignature","features":[305,485,486,489]},{"name":"WTHelperCertIsSelfSigned","features":[305,389,489]},{"name":"WTHelperGetProvCertFromChain","features":[305,389,489]},{"name":"WTHelperGetProvPrivateDataFromChain","features":[305,485,486,489]},{"name":"WTHelperGetProvSignerFromChain","features":[305,485,486,489]},{"name":"WTHelperProvDataFromStateData","features":[305,485,486,489]},{"name":"WTPF_ALLOWONLYPERTRUST","features":[489]},{"name":"WTPF_IGNOREEXPIRATION","features":[489]},{"name":"WTPF_IGNOREREVOCATIONONTS","features":[489]},{"name":"WTPF_IGNOREREVOKATION","features":[489]},{"name":"WTPF_OFFLINEOKNBU_COM","features":[489]},{"name":"WTPF_OFFLINEOKNBU_IND","features":[489]},{"name":"WTPF_OFFLINEOK_COM","features":[489]},{"name":"WTPF_OFFLINEOK_IND","features":[489]},{"name":"WTPF_TESTCANBEVALID","features":[489]},{"name":"WTPF_TRUSTTEST","features":[489]},{"name":"WTPF_VERIFY_V1_OFF","features":[489]},{"name":"WT_ADD_ACTION_ID_RET_RESULT_FLAG","features":[489]},{"name":"WT_CURRENT_VERSION","features":[489]},{"name":"WT_PROVIDER_CERTTRUST_FUNCTION","features":[489]},{"name":"WT_PROVIDER_DLL_NAME","features":[489]},{"name":"WT_TRUSTDBDIALOG_NO_UI_FLAG","features":[489]},{"name":"WT_TRUSTDBDIALOG_ONLY_PUB_TAB_FLAG","features":[489]},{"name":"WT_TRUSTDBDIALOG_WRITE_IEAK_STORE_FLAG","features":[489]},{"name":"WT_TRUSTDBDIALOG_WRITE_LEGACY_REG_FLAG","features":[489]},{"name":"WinVerifyTrust","features":[305,489]},{"name":"WinVerifyTrustEx","features":[305,389,489]},{"name":"WintrustAddActionID","features":[305,489]},{"name":"WintrustAddDefaultForUsage","features":[305,489]},{"name":"WintrustGetDefaultForUsage","features":[305,489]},{"name":"WintrustGetRegPolicyFlags","features":[489]},{"name":"WintrustLoadFunctionPointers","features":[305,485,486,489]},{"name":"WintrustRemoveActionID","features":[305,489]},{"name":"WintrustSetDefaultIncludePEPageHashes","features":[305,489]},{"name":"WintrustSetRegPolicyFlags","features":[305,489]},{"name":"szOID_ENHANCED_HASH","features":[489]},{"name":"szOID_INTENT_TO_SEAL","features":[489]},{"name":"szOID_NESTED_SIGNATURE","features":[489]},{"name":"szOID_PKCS_9_SEQUENCE_NUMBER","features":[489]},{"name":"szOID_SEALING_SIGNATURE","features":[489]},{"name":"szOID_SEALING_TIMESTAMP","features":[489]},{"name":"szOID_TRUSTED_CLIENT_AUTH_CA_LIST","features":[489]},{"name":"szOID_TRUSTED_CODESIGNING_CA_LIST","features":[489]},{"name":"szOID_TRUSTED_SERVER_AUTH_CA_LIST","features":[489]}],"503":[{"name":"PFNMSGECALLBACK","features":[305,498]},{"name":"PWLX_ASSIGN_SHELL_PROTECTION","features":[305,498]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY","features":[305,498]},{"name":"PWLX_CHANGE_PASSWORD_NOTIFY_EX","features":[305,498]},{"name":"PWLX_CLOSE_USER_DESKTOP","features":[305,498,499]},{"name":"PWLX_CREATE_USER_DESKTOP","features":[305,498,499]},{"name":"PWLX_DIALOG_BOX","features":[305,498,367]},{"name":"PWLX_DIALOG_BOX_INDIRECT","features":[305,498,367]},{"name":"PWLX_DIALOG_BOX_INDIRECT_PARAM","features":[305,498,367]},{"name":"PWLX_DIALOG_BOX_PARAM","features":[305,498,367]},{"name":"PWLX_DISCONNECT","features":[305,498]},{"name":"PWLX_GET_OPTION","features":[305,498]},{"name":"PWLX_GET_SOURCE_DESKTOP","features":[305,498,499]},{"name":"PWLX_MESSAGE_BOX","features":[305,498]},{"name":"PWLX_QUERY_CLIENT_CREDENTIALS","features":[305,498]},{"name":"PWLX_QUERY_CONSOLESWITCH_CREDENTIALS","features":[305,498]},{"name":"PWLX_QUERY_IC_CREDENTIALS","features":[305,498]},{"name":"PWLX_QUERY_TERMINAL_SERVICES_DATA","features":[305,498]},{"name":"PWLX_QUERY_TS_LOGON_CREDENTIALS","features":[305,498]},{"name":"PWLX_SAS_NOTIFY","features":[305,498]},{"name":"PWLX_SET_CONTEXT_POINTER","features":[305,498]},{"name":"PWLX_SET_OPTION","features":[305,498]},{"name":"PWLX_SET_RETURN_DESKTOP","features":[305,498,499]},{"name":"PWLX_SET_TIMEOUT","features":[305,498]},{"name":"PWLX_SWITCH_DESKTOP_TO_USER","features":[305,498]},{"name":"PWLX_SWITCH_DESKTOP_TO_WINLOGON","features":[305,498]},{"name":"PWLX_USE_CTRL_ALT_DEL","features":[305,498]},{"name":"PWLX_WIN31_MIGRATE","features":[305,498]},{"name":"STATUSMSG_OPTION_NOANIMATION","features":[498]},{"name":"STATUSMSG_OPTION_SETFOREGROUND","features":[498]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V1_0","features":[305,498]},{"name":"WLX_CLIENT_CREDENTIALS_INFO_V2_0","features":[305,498]},{"name":"WLX_CONSOLESWITCHCREDENTIAL_TYPE_V1_0","features":[498]},{"name":"WLX_CONSOLESWITCH_CREDENTIALS_INFO_V1_0","features":[305,498]},{"name":"WLX_CREATE_INSTANCE_ONLY","features":[498]},{"name":"WLX_CREATE_USER","features":[498]},{"name":"WLX_CREDENTIAL_TYPE_V1_0","features":[498]},{"name":"WLX_CREDENTIAL_TYPE_V2_0","features":[498]},{"name":"WLX_CURRENT_VERSION","features":[498]},{"name":"WLX_DESKTOP","features":[498,499]},{"name":"WLX_DESKTOP_HANDLE","features":[498]},{"name":"WLX_DESKTOP_NAME","features":[498]},{"name":"WLX_DIRECTORY_LENGTH","features":[498]},{"name":"WLX_DISPATCH_VERSION_1_0","features":[305,498,367]},{"name":"WLX_DISPATCH_VERSION_1_1","features":[305,498,499,367]},{"name":"WLX_DISPATCH_VERSION_1_2","features":[305,498,499,367]},{"name":"WLX_DISPATCH_VERSION_1_3","features":[305,498,499,367]},{"name":"WLX_DISPATCH_VERSION_1_4","features":[305,498,499,367]},{"name":"WLX_DLG_INPUT_TIMEOUT","features":[498]},{"name":"WLX_DLG_SAS","features":[498]},{"name":"WLX_DLG_SCREEN_SAVER_TIMEOUT","features":[498]},{"name":"WLX_DLG_USER_LOGOFF","features":[498]},{"name":"WLX_LOGON_OPT_NO_PROFILE","features":[498]},{"name":"WLX_MPR_NOTIFY_INFO","features":[498]},{"name":"WLX_NOTIFICATION_INFO","features":[305,498,499]},{"name":"WLX_OPTION_CONTEXT_POINTER","features":[498]},{"name":"WLX_OPTION_DISPATCH_TABLE_SIZE","features":[498]},{"name":"WLX_OPTION_FORCE_LOGOFF_TIME","features":[498]},{"name":"WLX_OPTION_IGNORE_AUTO_LOGON","features":[498]},{"name":"WLX_OPTION_NO_SWITCH_ON_SAS","features":[498]},{"name":"WLX_OPTION_SMART_CARD_INFO","features":[498]},{"name":"WLX_OPTION_SMART_CARD_PRESENT","features":[498]},{"name":"WLX_OPTION_USE_CTRL_ALT_DEL","features":[498]},{"name":"WLX_OPTION_USE_SMART_CARD","features":[498]},{"name":"WLX_PROFILE_TYPE_V1_0","features":[498]},{"name":"WLX_PROFILE_TYPE_V2_0","features":[498]},{"name":"WLX_PROFILE_V1_0","features":[498]},{"name":"WLX_PROFILE_V2_0","features":[498]},{"name":"WLX_SAS_ACTION_DELAYED_FORCE_LOGOFF","features":[498]},{"name":"WLX_SAS_ACTION_FORCE_LOGOFF","features":[498]},{"name":"WLX_SAS_ACTION_LOCK_WKSTA","features":[498]},{"name":"WLX_SAS_ACTION_LOGOFF","features":[498]},{"name":"WLX_SAS_ACTION_LOGON","features":[498]},{"name":"WLX_SAS_ACTION_NONE","features":[498]},{"name":"WLX_SAS_ACTION_PWD_CHANGED","features":[498]},{"name":"WLX_SAS_ACTION_RECONNECTED","features":[498]},{"name":"WLX_SAS_ACTION_SHUTDOWN","features":[498]},{"name":"WLX_SAS_ACTION_SHUTDOWN_HIBERNATE","features":[498]},{"name":"WLX_SAS_ACTION_SHUTDOWN_POWER_OFF","features":[498]},{"name":"WLX_SAS_ACTION_SHUTDOWN_REBOOT","features":[498]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP","features":[498]},{"name":"WLX_SAS_ACTION_SHUTDOWN_SLEEP2","features":[498]},{"name":"WLX_SAS_ACTION_SWITCH_CONSOLE","features":[498]},{"name":"WLX_SAS_ACTION_TASKLIST","features":[498]},{"name":"WLX_SAS_ACTION_UNLOCK_WKSTA","features":[498]},{"name":"WLX_SAS_TYPE_AUTHENTICATED","features":[498]},{"name":"WLX_SAS_TYPE_CTRL_ALT_DEL","features":[498]},{"name":"WLX_SAS_TYPE_MAX_MSFT_VALUE","features":[498]},{"name":"WLX_SAS_TYPE_SCRNSVR_ACTIVITY","features":[498]},{"name":"WLX_SAS_TYPE_SCRNSVR_TIMEOUT","features":[498]},{"name":"WLX_SAS_TYPE_SC_FIRST_READER_ARRIVED","features":[498]},{"name":"WLX_SAS_TYPE_SC_INSERT","features":[498]},{"name":"WLX_SAS_TYPE_SC_LAST_READER_REMOVED","features":[498]},{"name":"WLX_SAS_TYPE_SC_REMOVE","features":[498]},{"name":"WLX_SAS_TYPE_SWITCHUSER","features":[498]},{"name":"WLX_SAS_TYPE_TIMEOUT","features":[498]},{"name":"WLX_SAS_TYPE_USER_LOGOFF","features":[498]},{"name":"WLX_SC_NOTIFICATION_INFO","features":[498]},{"name":"WLX_SHUTDOWN_TYPE","features":[498]},{"name":"WLX_TERMINAL_SERVICES_DATA","features":[498]},{"name":"WLX_VERSION_1_0","features":[498]},{"name":"WLX_VERSION_1_1","features":[498]},{"name":"WLX_VERSION_1_2","features":[498]},{"name":"WLX_VERSION_1_3","features":[498]},{"name":"WLX_VERSION_1_4","features":[498]},{"name":"WLX_WM_SAS","features":[498]}],"504":[{"name":"CB_MAX_CABINET_NAME","features":[500]},{"name":"CB_MAX_CAB_PATH","features":[500]},{"name":"CB_MAX_DISK","features":[500]},{"name":"CB_MAX_DISK_NAME","features":[500]},{"name":"CB_MAX_FILENAME","features":[500]},{"name":"CCAB","features":[500]},{"name":"ERF","features":[305,500]},{"name":"FCIAddFile","features":[305,500]},{"name":"FCICreate","features":[305,500]},{"name":"FCIDestroy","features":[305,500]},{"name":"FCIERROR","features":[500]},{"name":"FCIERR_ALLOC_FAIL","features":[500]},{"name":"FCIERR_BAD_COMPR_TYPE","features":[500]},{"name":"FCIERR_CAB_FILE","features":[500]},{"name":"FCIERR_CAB_FORMAT_LIMIT","features":[500]},{"name":"FCIERR_MCI_FAIL","features":[500]},{"name":"FCIERR_NONE","features":[500]},{"name":"FCIERR_OPEN_SRC","features":[500]},{"name":"FCIERR_READ_SRC","features":[500]},{"name":"FCIERR_TEMP_FILE","features":[500]},{"name":"FCIERR_USER_ABORT","features":[500]},{"name":"FCIFlushCabinet","features":[305,500]},{"name":"FCIFlushFolder","features":[305,500]},{"name":"FDICABINETINFO","features":[305,500]},{"name":"FDICREATE_CPU_TYPE","features":[500]},{"name":"FDICopy","features":[305,500]},{"name":"FDICreate","features":[305,500]},{"name":"FDIDECRYPT","features":[305,500]},{"name":"FDIDECRYPTTYPE","features":[500]},{"name":"FDIDestroy","features":[305,500]},{"name":"FDIERROR","features":[500]},{"name":"FDIERROR_ALLOC_FAIL","features":[500]},{"name":"FDIERROR_BAD_COMPR_TYPE","features":[500]},{"name":"FDIERROR_CABINET_NOT_FOUND","features":[500]},{"name":"FDIERROR_CORRUPT_CABINET","features":[500]},{"name":"FDIERROR_EOF","features":[500]},{"name":"FDIERROR_MDI_FAIL","features":[500]},{"name":"FDIERROR_NONE","features":[500]},{"name":"FDIERROR_NOT_A_CABINET","features":[500]},{"name":"FDIERROR_RESERVE_MISMATCH","features":[500]},{"name":"FDIERROR_TARGET_FILE","features":[500]},{"name":"FDIERROR_UNKNOWN_CABINET_VERSION","features":[500]},{"name":"FDIERROR_USER_ABORT","features":[500]},{"name":"FDIERROR_WRONG_CABINET","features":[500]},{"name":"FDIIsCabinet","features":[305,500]},{"name":"FDINOTIFICATION","features":[500]},{"name":"FDINOTIFICATIONTYPE","features":[500]},{"name":"FDISPILLFILE","features":[500]},{"name":"FDISPILLFILE","features":[500]},{"name":"FDITruncateCabinet","features":[305,500]},{"name":"INCLUDED_FCI","features":[500]},{"name":"INCLUDED_FDI","features":[500]},{"name":"INCLUDED_TYPES_FCI_FDI","features":[500]},{"name":"PFNALLOC","features":[500]},{"name":"PFNCLOSE","features":[500]},{"name":"PFNFCIALLOC","features":[500]},{"name":"PFNFCICLOSE","features":[500]},{"name":"PFNFCIDELETE","features":[500]},{"name":"PFNFCIFILEPLACED","features":[305,500]},{"name":"PFNFCIFREE","features":[500]},{"name":"PFNFCIGETNEXTCABINET","features":[305,500]},{"name":"PFNFCIGETOPENINFO","features":[500]},{"name":"PFNFCIGETTEMPFILE","features":[305,500]},{"name":"PFNFCIOPEN","features":[500]},{"name":"PFNFCIREAD","features":[500]},{"name":"PFNFCISEEK","features":[500]},{"name":"PFNFCISTATUS","features":[500]},{"name":"PFNFCIWRITE","features":[500]},{"name":"PFNFDIDECRYPT","features":[305,500]},{"name":"PFNFDINOTIFY","features":[500]},{"name":"PFNFREE","features":[500]},{"name":"PFNOPEN","features":[500]},{"name":"PFNREAD","features":[500]},{"name":"PFNSEEK","features":[500]},{"name":"PFNWRITE","features":[500]},{"name":"_A_EXEC","features":[500]},{"name":"_A_NAME_IS_UTF","features":[500]},{"name":"cpu80286","features":[500]},{"name":"cpu80386","features":[500]},{"name":"cpuUNKNOWN","features":[500]},{"name":"fdidtDECRYPT","features":[500]},{"name":"fdidtNEW_CABINET","features":[500]},{"name":"fdidtNEW_FOLDER","features":[500]},{"name":"fdintCABINET_INFO","features":[500]},{"name":"fdintCLOSE_FILE_INFO","features":[500]},{"name":"fdintCOPY_FILE","features":[500]},{"name":"fdintENUMERATE","features":[500]},{"name":"fdintNEXT_CABINET","features":[500]},{"name":"fdintPARTIAL_FILE","features":[500]},{"name":"statusCabinet","features":[500]},{"name":"statusFile","features":[500]},{"name":"statusFolder","features":[500]},{"name":"tcompBAD","features":[500]},{"name":"tcompLZX_WINDOW_HI","features":[500]},{"name":"tcompLZX_WINDOW_LO","features":[500]},{"name":"tcompMASK_LZX_WINDOW","features":[500]},{"name":"tcompMASK_QUANTUM_LEVEL","features":[500]},{"name":"tcompMASK_QUANTUM_MEM","features":[500]},{"name":"tcompMASK_RESERVED","features":[500]},{"name":"tcompMASK_TYPE","features":[500]},{"name":"tcompQUANTUM_LEVEL_HI","features":[500]},{"name":"tcompQUANTUM_LEVEL_LO","features":[500]},{"name":"tcompQUANTUM_MEM_HI","features":[500]},{"name":"tcompQUANTUM_MEM_LO","features":[500]},{"name":"tcompSHIFT_LZX_WINDOW","features":[500]},{"name":"tcompSHIFT_QUANTUM_LEVEL","features":[500]},{"name":"tcompSHIFT_QUANTUM_MEM","features":[500]},{"name":"tcompTYPE_LZX","features":[500]},{"name":"tcompTYPE_MSZIP","features":[500]},{"name":"tcompTYPE_NONE","features":[500]},{"name":"tcompTYPE_QUANTUM","features":[500]}],"505":[{"name":"CF_CALLBACK","features":[501,502]},{"name":"CF_CALLBACK_CANCEL_FLAGS","features":[501]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_ABORTED","features":[501]},{"name":"CF_CALLBACK_CANCEL_FLAG_IO_TIMEOUT","features":[501]},{"name":"CF_CALLBACK_CANCEL_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAGS","features":[501]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_DELETED","features":[501]},{"name":"CF_CALLBACK_CLOSE_COMPLETION_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAGS","features":[501]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_BACKGROUND","features":[501]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_DEHYDRATED","features":[501]},{"name":"CF_CALLBACK_DEHYDRATE_COMPLETION_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_DEHYDRATE_FLAGS","features":[501]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_BACKGROUND","features":[501]},{"name":"CF_CALLBACK_DEHYDRATE_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_DEHYDRATION_REASON","features":[501]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_NONE","features":[501]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_INACTIVITY","features":[501]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_LOW_SPACE","features":[501]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_SYSTEM_OS_UPGRADE","features":[501]},{"name":"CF_CALLBACK_DEHYDRATION_REASON_USER_MANUAL","features":[501]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAGS","features":[501]},{"name":"CF_CALLBACK_DELETE_COMPLETION_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_DELETE_FLAGS","features":[501]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_DIRECTORY","features":[501]},{"name":"CF_CALLBACK_DELETE_FLAG_IS_UNDELETE","features":[501]},{"name":"CF_CALLBACK_DELETE_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_FETCH_DATA_FLAGS","features":[501]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_EXPLICIT_HYDRATION","features":[501]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_FETCH_DATA_FLAG_RECOVERY","features":[501]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAGS","features":[501]},{"name":"CF_CALLBACK_FETCH_PLACEHOLDERS_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_INFO","features":[501,502]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAGS","features":[501]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNKNOWN","features":[501]},{"name":"CF_CALLBACK_OPEN_COMPLETION_FLAG_PLACEHOLDER_UNSUPPORTED","features":[501]},{"name":"CF_CALLBACK_PARAMETERS","features":[501]},{"name":"CF_CALLBACK_REGISTRATION","features":[501,502]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAGS","features":[501]},{"name":"CF_CALLBACK_RENAME_COMPLETION_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_RENAME_FLAGS","features":[501]},{"name":"CF_CALLBACK_RENAME_FLAG_IS_DIRECTORY","features":[501]},{"name":"CF_CALLBACK_RENAME_FLAG_NONE","features":[501]},{"name":"CF_CALLBACK_RENAME_FLAG_SOURCE_IN_SCOPE","features":[501]},{"name":"CF_CALLBACK_RENAME_FLAG_TARGET_IN_SCOPE","features":[501]},{"name":"CF_CALLBACK_TYPE","features":[501]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_DATA","features":[501]},{"name":"CF_CALLBACK_TYPE_CANCEL_FETCH_PLACEHOLDERS","features":[501]},{"name":"CF_CALLBACK_TYPE_FETCH_DATA","features":[501]},{"name":"CF_CALLBACK_TYPE_FETCH_PLACEHOLDERS","features":[501]},{"name":"CF_CALLBACK_TYPE_NONE","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DEHYDRATE_COMPLETION","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_DELETE_COMPLETION","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_CLOSE_COMPLETION","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_FILE_OPEN_COMPLETION","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME","features":[501]},{"name":"CF_CALLBACK_TYPE_NOTIFY_RENAME_COMPLETION","features":[501]},{"name":"CF_CALLBACK_TYPE_VALIDATE_DATA","features":[501]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAGS","features":[501]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_EXPLICIT_HYDRATION","features":[501]},{"name":"CF_CALLBACK_VALIDATE_DATA_FLAG_NONE","features":[501]},{"name":"CF_CONNECTION_KEY","features":[501]},{"name":"CF_CONNECT_FLAGS","features":[501]},{"name":"CF_CONNECT_FLAG_BLOCK_SELF_IMPLICIT_HYDRATION","features":[501]},{"name":"CF_CONNECT_FLAG_NONE","features":[501]},{"name":"CF_CONNECT_FLAG_REQUIRE_FULL_FILE_PATH","features":[501]},{"name":"CF_CONNECT_FLAG_REQUIRE_PROCESS_INFO","features":[501]},{"name":"CF_CONVERT_FLAGS","features":[501]},{"name":"CF_CONVERT_FLAG_ALWAYS_FULL","features":[501]},{"name":"CF_CONVERT_FLAG_DEHYDRATE","features":[501]},{"name":"CF_CONVERT_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[501]},{"name":"CF_CONVERT_FLAG_FORCE_CONVERT_TO_CLOUD_FILE","features":[501]},{"name":"CF_CONVERT_FLAG_MARK_IN_SYNC","features":[501]},{"name":"CF_CONVERT_FLAG_NONE","features":[501]},{"name":"CF_CREATE_FLAGS","features":[501]},{"name":"CF_CREATE_FLAG_NONE","features":[501]},{"name":"CF_CREATE_FLAG_STOP_ON_ERROR","features":[501]},{"name":"CF_DEHYDRATE_FLAGS","features":[501]},{"name":"CF_DEHYDRATE_FLAG_BACKGROUND","features":[501]},{"name":"CF_DEHYDRATE_FLAG_NONE","features":[501]},{"name":"CF_FILE_RANGE","features":[501]},{"name":"CF_FS_METADATA","features":[501,324]},{"name":"CF_HARDLINK_POLICY","features":[501]},{"name":"CF_HARDLINK_POLICY_ALLOWED","features":[501]},{"name":"CF_HARDLINK_POLICY_NONE","features":[501]},{"name":"CF_HYDRATE_FLAGS","features":[501]},{"name":"CF_HYDRATE_FLAG_NONE","features":[501]},{"name":"CF_HYDRATION_POLICY","features":[501]},{"name":"CF_HYDRATION_POLICY_ALWAYS_FULL","features":[501]},{"name":"CF_HYDRATION_POLICY_FULL","features":[501]},{"name":"CF_HYDRATION_POLICY_MODIFIER","features":[501]},{"name":"CF_HYDRATION_POLICY_MODIFIER_ALLOW_FULL_RESTART_HYDRATION","features":[501]},{"name":"CF_HYDRATION_POLICY_MODIFIER_AUTO_DEHYDRATION_ALLOWED","features":[501]},{"name":"CF_HYDRATION_POLICY_MODIFIER_NONE","features":[501]},{"name":"CF_HYDRATION_POLICY_MODIFIER_STREAMING_ALLOWED","features":[501]},{"name":"CF_HYDRATION_POLICY_MODIFIER_VALIDATION_REQUIRED","features":[501]},{"name":"CF_HYDRATION_POLICY_PARTIAL","features":[501]},{"name":"CF_HYDRATION_POLICY_PRIMARY","features":[501]},{"name":"CF_HYDRATION_POLICY_PROGRESSIVE","features":[501]},{"name":"CF_INSYNC_POLICY","features":[501]},{"name":"CF_INSYNC_POLICY_NONE","features":[501]},{"name":"CF_INSYNC_POLICY_PRESERVE_INSYNC_FOR_SYNC_ENGINE","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_ALL","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_ALL","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_CREATION_TIME","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_HIDDEN_ATTRIBUTE","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_LAST_WRITE_TIME","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_READONLY_ATTRIBUTE","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_DIRECTORY_SYSTEM_ATTRIBUTE","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_ALL","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_CREATION_TIME","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_HIDDEN_ATTRIBUTE","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_LAST_WRITE_TIME","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_READONLY_ATTRIBUTE","features":[501]},{"name":"CF_INSYNC_POLICY_TRACK_FILE_SYSTEM_ATTRIBUTE","features":[501]},{"name":"CF_IN_SYNC_STATE","features":[501]},{"name":"CF_IN_SYNC_STATE_IN_SYNC","features":[501]},{"name":"CF_IN_SYNC_STATE_NOT_IN_SYNC","features":[501]},{"name":"CF_MAX_PRIORITY_HINT","features":[501]},{"name":"CF_MAX_PROVIDER_NAME_LENGTH","features":[501]},{"name":"CF_MAX_PROVIDER_VERSION_LENGTH","features":[501]},{"name":"CF_OPEN_FILE_FLAGS","features":[501]},{"name":"CF_OPEN_FILE_FLAG_DELETE_ACCESS","features":[501]},{"name":"CF_OPEN_FILE_FLAG_EXCLUSIVE","features":[501]},{"name":"CF_OPEN_FILE_FLAG_FOREGROUND","features":[501]},{"name":"CF_OPEN_FILE_FLAG_NONE","features":[501]},{"name":"CF_OPEN_FILE_FLAG_WRITE_ACCESS","features":[501]},{"name":"CF_OPERATION_ACK_DATA_FLAGS","features":[501]},{"name":"CF_OPERATION_ACK_DATA_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAGS","features":[501]},{"name":"CF_OPERATION_ACK_DEHYDRATE_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_ACK_DELETE_FLAGS","features":[501]},{"name":"CF_OPERATION_ACK_DELETE_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_ACK_RENAME_FLAGS","features":[501]},{"name":"CF_OPERATION_ACK_RENAME_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_INFO","features":[501,502]},{"name":"CF_OPERATION_PARAMETERS","features":[305,501,324]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAGS","features":[501]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_MARK_IN_SYNC","features":[501]},{"name":"CF_OPERATION_RESTART_HYDRATION_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAGS","features":[501]},{"name":"CF_OPERATION_RETRIEVE_DATA_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAGS","features":[501]},{"name":"CF_OPERATION_TRANSFER_DATA_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAGS","features":[501]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[501]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_NONE","features":[501]},{"name":"CF_OPERATION_TRANSFER_PLACEHOLDERS_FLAG_STOP_ON_ERROR","features":[501]},{"name":"CF_OPERATION_TYPE","features":[501]},{"name":"CF_OPERATION_TYPE_ACK_DATA","features":[501]},{"name":"CF_OPERATION_TYPE_ACK_DEHYDRATE","features":[501]},{"name":"CF_OPERATION_TYPE_ACK_DELETE","features":[501]},{"name":"CF_OPERATION_TYPE_ACK_RENAME","features":[501]},{"name":"CF_OPERATION_TYPE_RESTART_HYDRATION","features":[501]},{"name":"CF_OPERATION_TYPE_RETRIEVE_DATA","features":[501]},{"name":"CF_OPERATION_TYPE_TRANSFER_DATA","features":[501]},{"name":"CF_OPERATION_TYPE_TRANSFER_PLACEHOLDERS","features":[501]},{"name":"CF_PIN_STATE","features":[501]},{"name":"CF_PIN_STATE_EXCLUDED","features":[501]},{"name":"CF_PIN_STATE_INHERIT","features":[501]},{"name":"CF_PIN_STATE_PINNED","features":[501]},{"name":"CF_PIN_STATE_UNPINNED","features":[501]},{"name":"CF_PIN_STATE_UNSPECIFIED","features":[501]},{"name":"CF_PLACEHOLDER_BASIC_INFO","features":[501]},{"name":"CF_PLACEHOLDER_CREATE_FLAGS","features":[501]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_ALWAYS_FULL","features":[501]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[501]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_MARK_IN_SYNC","features":[501]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_NONE","features":[501]},{"name":"CF_PLACEHOLDER_CREATE_FLAG_SUPERSEDE","features":[501]},{"name":"CF_PLACEHOLDER_CREATE_INFO","features":[501,324]},{"name":"CF_PLACEHOLDER_INFO_BASIC","features":[501]},{"name":"CF_PLACEHOLDER_INFO_CLASS","features":[501]},{"name":"CF_PLACEHOLDER_INFO_STANDARD","features":[501]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY","features":[501]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CONVERT_TO_UNRESTRICTED","features":[501]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_CREATE_UNRESTRICTED","features":[501]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_DEFAULT","features":[501]},{"name":"CF_PLACEHOLDER_MANAGEMENT_POLICY_UPDATE_UNRESTRICTED","features":[501]},{"name":"CF_PLACEHOLDER_MAX_FILE_IDENTITY_LENGTH","features":[501]},{"name":"CF_PLACEHOLDER_RANGE_INFO_CLASS","features":[501]},{"name":"CF_PLACEHOLDER_RANGE_INFO_MODIFIED","features":[501]},{"name":"CF_PLACEHOLDER_RANGE_INFO_ONDISK","features":[501]},{"name":"CF_PLACEHOLDER_RANGE_INFO_VALIDATED","features":[501]},{"name":"CF_PLACEHOLDER_STANDARD_INFO","features":[501]},{"name":"CF_PLACEHOLDER_STATE","features":[501]},{"name":"CF_PLACEHOLDER_STATE_ESSENTIAL_PROP_PRESENT","features":[501]},{"name":"CF_PLACEHOLDER_STATE_INVALID","features":[501]},{"name":"CF_PLACEHOLDER_STATE_IN_SYNC","features":[501]},{"name":"CF_PLACEHOLDER_STATE_NO_STATES","features":[501]},{"name":"CF_PLACEHOLDER_STATE_PARTIAL","features":[501]},{"name":"CF_PLACEHOLDER_STATE_PARTIALLY_ON_DISK","features":[501]},{"name":"CF_PLACEHOLDER_STATE_PLACEHOLDER","features":[501]},{"name":"CF_PLACEHOLDER_STATE_SYNC_ROOT","features":[501]},{"name":"CF_PLATFORM_INFO","features":[501]},{"name":"CF_POPULATION_POLICY","features":[501]},{"name":"CF_POPULATION_POLICY_ALWAYS_FULL","features":[501]},{"name":"CF_POPULATION_POLICY_FULL","features":[501]},{"name":"CF_POPULATION_POLICY_MODIFIER","features":[501]},{"name":"CF_POPULATION_POLICY_MODIFIER_NONE","features":[501]},{"name":"CF_POPULATION_POLICY_PARTIAL","features":[501]},{"name":"CF_POPULATION_POLICY_PRIMARY","features":[501]},{"name":"CF_PROCESS_INFO","features":[501]},{"name":"CF_PROVIDER_STATUS_CLEAR_FLAGS","features":[501]},{"name":"CF_PROVIDER_STATUS_CONNECTIVITY_LOST","features":[501]},{"name":"CF_PROVIDER_STATUS_DISCONNECTED","features":[501]},{"name":"CF_PROVIDER_STATUS_ERROR","features":[501]},{"name":"CF_PROVIDER_STATUS_IDLE","features":[501]},{"name":"CF_PROVIDER_STATUS_POPULATE_CONTENT","features":[501]},{"name":"CF_PROVIDER_STATUS_POPULATE_METADATA","features":[501]},{"name":"CF_PROVIDER_STATUS_POPULATE_NAMESPACE","features":[501]},{"name":"CF_PROVIDER_STATUS_SYNC_FULL","features":[501]},{"name":"CF_PROVIDER_STATUS_SYNC_INCREMENTAL","features":[501]},{"name":"CF_PROVIDER_STATUS_TERMINATED","features":[501]},{"name":"CF_REGISTER_FLAGS","features":[501]},{"name":"CF_REGISTER_FLAG_DISABLE_ON_DEMAND_POPULATION_ON_ROOT","features":[501]},{"name":"CF_REGISTER_FLAG_MARK_IN_SYNC_ON_ROOT","features":[501]},{"name":"CF_REGISTER_FLAG_NONE","features":[501]},{"name":"CF_REGISTER_FLAG_UPDATE","features":[501]},{"name":"CF_REQUEST_KEY_DEFAULT","features":[501]},{"name":"CF_REVERT_FLAGS","features":[501]},{"name":"CF_REVERT_FLAG_NONE","features":[501]},{"name":"CF_SET_IN_SYNC_FLAGS","features":[501]},{"name":"CF_SET_IN_SYNC_FLAG_NONE","features":[501]},{"name":"CF_SET_PIN_FLAGS","features":[501]},{"name":"CF_SET_PIN_FLAG_NONE","features":[501]},{"name":"CF_SET_PIN_FLAG_RECURSE","features":[501]},{"name":"CF_SET_PIN_FLAG_RECURSE_ONLY","features":[501]},{"name":"CF_SET_PIN_FLAG_RECURSE_STOP_ON_ERROR","features":[501]},{"name":"CF_SYNC_POLICIES","features":[501]},{"name":"CF_SYNC_PROVIDER_STATUS","features":[501]},{"name":"CF_SYNC_REGISTRATION","features":[501]},{"name":"CF_SYNC_ROOT_BASIC_INFO","features":[501]},{"name":"CF_SYNC_ROOT_INFO_BASIC","features":[501]},{"name":"CF_SYNC_ROOT_INFO_CLASS","features":[501]},{"name":"CF_SYNC_ROOT_INFO_PROVIDER","features":[501]},{"name":"CF_SYNC_ROOT_INFO_STANDARD","features":[501]},{"name":"CF_SYNC_ROOT_PROVIDER_INFO","features":[501]},{"name":"CF_SYNC_ROOT_STANDARD_INFO","features":[501]},{"name":"CF_SYNC_STATUS","features":[501]},{"name":"CF_UPDATE_FLAGS","features":[501]},{"name":"CF_UPDATE_FLAG_ALLOW_PARTIAL","features":[501]},{"name":"CF_UPDATE_FLAG_ALWAYS_FULL","features":[501]},{"name":"CF_UPDATE_FLAG_CLEAR_IN_SYNC","features":[501]},{"name":"CF_UPDATE_FLAG_DEHYDRATE","features":[501]},{"name":"CF_UPDATE_FLAG_DISABLE_ON_DEMAND_POPULATION","features":[501]},{"name":"CF_UPDATE_FLAG_ENABLE_ON_DEMAND_POPULATION","features":[501]},{"name":"CF_UPDATE_FLAG_MARK_IN_SYNC","features":[501]},{"name":"CF_UPDATE_FLAG_NONE","features":[501]},{"name":"CF_UPDATE_FLAG_PASSTHROUGH_FS_METADATA","features":[501]},{"name":"CF_UPDATE_FLAG_REMOVE_FILE_IDENTITY","features":[501]},{"name":"CF_UPDATE_FLAG_REMOVE_PROPERTY","features":[501]},{"name":"CF_UPDATE_FLAG_VERIFY_IN_SYNC","features":[501]},{"name":"CfCloseHandle","features":[305,501]},{"name":"CfConnectSyncRoot","features":[501,502]},{"name":"CfConvertToPlaceholder","features":[305,501,310]},{"name":"CfCreatePlaceholders","features":[501,324]},{"name":"CfDehydratePlaceholder","features":[305,501,310]},{"name":"CfDisconnectSyncRoot","features":[501]},{"name":"CfExecute","features":[305,501,324,502]},{"name":"CfGetCorrelationVector","features":[305,501,502]},{"name":"CfGetPlaceholderInfo","features":[305,501]},{"name":"CfGetPlaceholderRangeInfo","features":[305,501]},{"name":"CfGetPlaceholderRangeInfoForHydration","features":[501]},{"name":"CfGetPlaceholderStateFromAttributeTag","features":[501]},{"name":"CfGetPlaceholderStateFromFileInfo","features":[501,324]},{"name":"CfGetPlaceholderStateFromFindData","features":[305,501,324]},{"name":"CfGetPlatformInfo","features":[501]},{"name":"CfGetSyncRootInfoByHandle","features":[305,501]},{"name":"CfGetSyncRootInfoByPath","features":[501]},{"name":"CfGetTransferKey","features":[305,501]},{"name":"CfGetWin32HandleFromProtectedHandle","features":[305,501]},{"name":"CfHydratePlaceholder","features":[305,501,310]},{"name":"CfOpenFileWithOplock","features":[305,501]},{"name":"CfQuerySyncProviderStatus","features":[501]},{"name":"CfReferenceProtectedHandle","features":[305,501]},{"name":"CfRegisterSyncRoot","features":[501]},{"name":"CfReleaseProtectedHandle","features":[305,501]},{"name":"CfReleaseTransferKey","features":[305,501]},{"name":"CfReportProviderProgress","features":[501]},{"name":"CfReportProviderProgress2","features":[501]},{"name":"CfReportSyncStatus","features":[501]},{"name":"CfRevertPlaceholder","features":[305,501,310]},{"name":"CfSetCorrelationVector","features":[305,501,502]},{"name":"CfSetInSyncState","features":[305,501]},{"name":"CfSetPinState","features":[305,501,310]},{"name":"CfUnregisterSyncRoot","features":[501]},{"name":"CfUpdatePlaceholder","features":[305,501,324,310]},{"name":"CfUpdateSyncProviderStatus","features":[501]}],"506":[{"name":"COMPRESSOR_HANDLE","features":[503]},{"name":"COMPRESS_ALGORITHM","features":[503]},{"name":"COMPRESS_ALGORITHM_INVALID","features":[503]},{"name":"COMPRESS_ALGORITHM_LZMS","features":[503]},{"name":"COMPRESS_ALGORITHM_MAX","features":[503]},{"name":"COMPRESS_ALGORITHM_MSZIP","features":[503]},{"name":"COMPRESS_ALGORITHM_NULL","features":[503]},{"name":"COMPRESS_ALGORITHM_XPRESS","features":[503]},{"name":"COMPRESS_ALGORITHM_XPRESS_HUFF","features":[503]},{"name":"COMPRESS_ALLOCATION_ROUTINES","features":[503]},{"name":"COMPRESS_INFORMATION_CLASS","features":[503]},{"name":"COMPRESS_INFORMATION_CLASS_BLOCK_SIZE","features":[503]},{"name":"COMPRESS_INFORMATION_CLASS_INVALID","features":[503]},{"name":"COMPRESS_INFORMATION_CLASS_LEVEL","features":[503]},{"name":"COMPRESS_RAW","features":[503]},{"name":"CloseCompressor","features":[305,503]},{"name":"CloseDecompressor","features":[305,503]},{"name":"Compress","features":[305,503]},{"name":"CreateCompressor","features":[305,503]},{"name":"CreateDecompressor","features":[305,503]},{"name":"DECOMPRESSOR_HANDLE","features":[503]},{"name":"Decompress","features":[305,503]},{"name":"PFN_COMPRESS_ALLOCATE","features":[503]},{"name":"PFN_COMPRESS_FREE","features":[503]},{"name":"QueryCompressorInformation","features":[305,503]},{"name":"QueryDecompressorInformation","features":[305,503]},{"name":"ResetCompressor","features":[305,503]},{"name":"ResetDecompressor","features":[305,503]},{"name":"SetCompressorInformation","features":[305,503]},{"name":"SetDecompressorInformation","features":[305,503]}],"507":[{"name":"DDP_FILE_EXTENT","features":[504]},{"name":"DEDUP_BACKUP_SUPPORT_PARAM_TYPE","features":[504]},{"name":"DEDUP_CHUNKLIB_MAX_CHUNKS_ENUM","features":[504]},{"name":"DEDUP_CHUNK_INFO_HASH32","features":[504]},{"name":"DEDUP_CONTAINER_EXTENT","features":[504]},{"name":"DEDUP_PT_AvgChunkSizeBytes","features":[504]},{"name":"DEDUP_PT_DisableStrongHashComputation","features":[504]},{"name":"DEDUP_PT_InvariantChunking","features":[504]},{"name":"DEDUP_PT_MaxChunkSizeBytes","features":[504]},{"name":"DEDUP_PT_MinChunkSizeBytes","features":[504]},{"name":"DEDUP_RECONSTRUCT_OPTIMIZED","features":[504]},{"name":"DEDUP_RECONSTRUCT_UNOPTIMIZED","features":[504]},{"name":"DEDUP_SET_PARAM_TYPE","features":[504]},{"name":"DedupBackupSupport","features":[504]},{"name":"DedupChunk","features":[504]},{"name":"DedupChunkFlags","features":[504]},{"name":"DedupChunkFlags_Compressed","features":[504]},{"name":"DedupChunkFlags_None","features":[504]},{"name":"DedupChunkingAlgorithm","features":[504]},{"name":"DedupChunkingAlgorithm_Unknonwn","features":[504]},{"name":"DedupChunkingAlgorithm_V1","features":[504]},{"name":"DedupCompressionAlgorithm","features":[504]},{"name":"DedupCompressionAlgorithm_Unknonwn","features":[504]},{"name":"DedupCompressionAlgorithm_Xpress","features":[504]},{"name":"DedupDataPort","features":[504]},{"name":"DedupDataPortManagerOption","features":[504]},{"name":"DedupDataPortManagerOption_AutoStart","features":[504]},{"name":"DedupDataPortManagerOption_None","features":[504]},{"name":"DedupDataPortManagerOption_SkipReconciliation","features":[504]},{"name":"DedupDataPortRequestStatus","features":[504]},{"name":"DedupDataPortRequestStatus_Complete","features":[504]},{"name":"DedupDataPortRequestStatus_Failed","features":[504]},{"name":"DedupDataPortRequestStatus_Partial","features":[504]},{"name":"DedupDataPortRequestStatus_Processing","features":[504]},{"name":"DedupDataPortRequestStatus_Queued","features":[504]},{"name":"DedupDataPortRequestStatus_Unknown","features":[504]},{"name":"DedupDataPortVolumeStatus","features":[504]},{"name":"DedupDataPortVolumeStatus_Initializing","features":[504]},{"name":"DedupDataPortVolumeStatus_Maintenance","features":[504]},{"name":"DedupDataPortVolumeStatus_NotAvailable","features":[504]},{"name":"DedupDataPortVolumeStatus_NotEnabled","features":[504]},{"name":"DedupDataPortVolumeStatus_Ready","features":[504]},{"name":"DedupDataPortVolumeStatus_Shutdown","features":[504]},{"name":"DedupDataPortVolumeStatus_Unknown","features":[504]},{"name":"DedupHash","features":[504]},{"name":"DedupHashingAlgorithm","features":[504]},{"name":"DedupHashingAlgorithm_Unknonwn","features":[504]},{"name":"DedupHashingAlgorithm_V1","features":[504]},{"name":"DedupStream","features":[504]},{"name":"DedupStreamEntry","features":[504]},{"name":"IDedupBackupSupport","features":[504]},{"name":"IDedupChunkLibrary","features":[504]},{"name":"IDedupDataPort","features":[504]},{"name":"IDedupDataPortManager","features":[504]},{"name":"IDedupIterateChunksHash32","features":[504]},{"name":"IDedupReadFileCallback","features":[504]}],"508":[{"name":"DFS_ADD_VOLUME","features":[505]},{"name":"DFS_FORCE_REMOVE","features":[505]},{"name":"DFS_GET_PKT_ENTRY_STATE_ARG","features":[505]},{"name":"DFS_INFO_1","features":[505]},{"name":"DFS_INFO_100","features":[505]},{"name":"DFS_INFO_101","features":[505]},{"name":"DFS_INFO_102","features":[505]},{"name":"DFS_INFO_103","features":[505]},{"name":"DFS_INFO_104","features":[505]},{"name":"DFS_INFO_105","features":[505]},{"name":"DFS_INFO_106","features":[505]},{"name":"DFS_INFO_107","features":[308,505]},{"name":"DFS_INFO_150","features":[308,505]},{"name":"DFS_INFO_1_32","features":[505]},{"name":"DFS_INFO_2","features":[505]},{"name":"DFS_INFO_200","features":[505]},{"name":"DFS_INFO_2_32","features":[505]},{"name":"DFS_INFO_3","features":[505]},{"name":"DFS_INFO_300","features":[505]},{"name":"DFS_INFO_3_32","features":[505]},{"name":"DFS_INFO_4","features":[505]},{"name":"DFS_INFO_4_32","features":[505]},{"name":"DFS_INFO_5","features":[505]},{"name":"DFS_INFO_50","features":[505]},{"name":"DFS_INFO_6","features":[505]},{"name":"DFS_INFO_7","features":[505]},{"name":"DFS_INFO_8","features":[308,505]},{"name":"DFS_INFO_9","features":[308,505]},{"name":"DFS_MOVE_FLAG_REPLACE_IF_EXISTS","features":[505]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN","features":[505]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_COMBINED","features":[505]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_DOMAIN","features":[505]},{"name":"DFS_NAMESPACE_VERSION_ORIGIN_SERVER","features":[505]},{"name":"DFS_PROPERTY_FLAG_ABDE","features":[505]},{"name":"DFS_PROPERTY_FLAG_CLUSTER_ENABLED","features":[505]},{"name":"DFS_PROPERTY_FLAG_INSITE_REFERRALS","features":[505]},{"name":"DFS_PROPERTY_FLAG_ROOT_SCALABILITY","features":[505]},{"name":"DFS_PROPERTY_FLAG_SITE_COSTING","features":[505]},{"name":"DFS_PROPERTY_FLAG_TARGET_FAILBACK","features":[505]},{"name":"DFS_RESTORE_VOLUME","features":[505]},{"name":"DFS_SITELIST_INFO","features":[505]},{"name":"DFS_SITENAME_INFO","features":[505]},{"name":"DFS_SITE_PRIMARY","features":[505]},{"name":"DFS_STORAGE_FLAVOR_UNUSED2","features":[505]},{"name":"DFS_STORAGE_INFO","features":[505]},{"name":"DFS_STORAGE_INFO_0_32","features":[505]},{"name":"DFS_STORAGE_INFO_1","features":[505]},{"name":"DFS_STORAGE_STATES","features":[505]},{"name":"DFS_STORAGE_STATE_ACTIVE","features":[505]},{"name":"DFS_STORAGE_STATE_OFFLINE","features":[505]},{"name":"DFS_STORAGE_STATE_ONLINE","features":[505]},{"name":"DFS_SUPPORTED_NAMESPACE_VERSION_INFO","features":[505]},{"name":"DFS_TARGET_PRIORITY","features":[505]},{"name":"DFS_TARGET_PRIORITY_CLASS","features":[505]},{"name":"DFS_VOLUME_FLAVORS","features":[505]},{"name":"DFS_VOLUME_FLAVOR_AD_BLOB","features":[505]},{"name":"DFS_VOLUME_FLAVOR_STANDALONE","features":[505]},{"name":"DFS_VOLUME_FLAVOR_UNUSED1","features":[505]},{"name":"DFS_VOLUME_STATES","features":[505]},{"name":"DFS_VOLUME_STATE_FORCE_SYNC","features":[505]},{"name":"DFS_VOLUME_STATE_INCONSISTENT","features":[505]},{"name":"DFS_VOLUME_STATE_OFFLINE","features":[505]},{"name":"DFS_VOLUME_STATE_OK","features":[505]},{"name":"DFS_VOLUME_STATE_ONLINE","features":[505]},{"name":"DFS_VOLUME_STATE_RESYNCHRONIZE","features":[505]},{"name":"DFS_VOLUME_STATE_STANDBY","features":[505]},{"name":"DfsGlobalHighPriorityClass","features":[505]},{"name":"DfsGlobalLowPriorityClass","features":[505]},{"name":"DfsInvalidPriorityClass","features":[505]},{"name":"DfsSiteCostHighPriorityClass","features":[505]},{"name":"DfsSiteCostLowPriorityClass","features":[505]},{"name":"DfsSiteCostNormalPriorityClass","features":[505]},{"name":"FSCTL_DFS_BASE","features":[505]},{"name":"FSCTL_DFS_GET_PKT_ENTRY_STATE","features":[505]},{"name":"NET_DFS_SETDC_FLAGS","features":[505]},{"name":"NET_DFS_SETDC_INITPKT","features":[505]},{"name":"NET_DFS_SETDC_TIMEOUT","features":[505]},{"name":"NetDfsAdd","features":[505]},{"name":"NetDfsAddFtRoot","features":[505]},{"name":"NetDfsAddRootTarget","features":[505]},{"name":"NetDfsAddStdRoot","features":[505]},{"name":"NetDfsEnum","features":[505]},{"name":"NetDfsGetClientInfo","features":[505]},{"name":"NetDfsGetFtContainerSecurity","features":[308,505]},{"name":"NetDfsGetInfo","features":[505]},{"name":"NetDfsGetSecurity","features":[308,505]},{"name":"NetDfsGetStdContainerSecurity","features":[308,505]},{"name":"NetDfsGetSupportedNamespaceVersion","features":[505]},{"name":"NetDfsMove","features":[505]},{"name":"NetDfsRemove","features":[505]},{"name":"NetDfsRemoveFtRoot","features":[505]},{"name":"NetDfsRemoveFtRootForced","features":[505]},{"name":"NetDfsRemoveRootTarget","features":[505]},{"name":"NetDfsRemoveStdRoot","features":[505]},{"name":"NetDfsSetClientInfo","features":[505]},{"name":"NetDfsSetFtContainerSecurity","features":[308,505]},{"name":"NetDfsSetInfo","features":[505]},{"name":"NetDfsSetSecurity","features":[308,505]},{"name":"NetDfsSetStdContainerSecurity","features":[308,505]}],"509":[{"name":"ACT_AUTHORIZATION_STATE","features":[506]},{"name":"ACT_AUTHORIZATION_STATE_VALUE","features":[506]},{"name":"ACT_AUTHORIZED","features":[506]},{"name":"ACT_AUTHORIZE_ON_RESUME","features":[506]},{"name":"ACT_AUTHORIZE_ON_SESSION_UNLOCK","features":[506]},{"name":"ACT_UNAUTHORIZED","features":[506]},{"name":"ACT_UNAUTHORIZE_ON_SESSION_LOCK","features":[506]},{"name":"ACT_UNAUTHORIZE_ON_SUSPEND","features":[506]},{"name":"APPUSERMODEL_STARTPINOPTION_DEFAULT","features":[506]},{"name":"APPUSERMODEL_STARTPINOPTION_NOPINONINSTALL","features":[506]},{"name":"APPUSERMODEL_STARTPINOPTION_USERPINNED","features":[506]},{"name":"AUDIO_CHANNELCOUNT_MONO","features":[506]},{"name":"AUDIO_CHANNELCOUNT_STEREO","features":[506]},{"name":"BLUETOOTH_ADDRESS_TYPE_PUBLIC","features":[506]},{"name":"BLUETOOTH_ADDRESS_TYPE_RANDOM","features":[506]},{"name":"BLUETOOTH_CACHED_MODE_UNCACHED","features":[506]},{"name":"BLUETOOTH_CACHE_MODE_CACHED","features":[506]},{"name":"CERT_CAPABILITY_ASYMMETRIC_KEY_CRYPTOGRAPHY","features":[506]},{"name":"CERT_CAPABILITY_CERTIFICATE_SUPPORT","features":[506]},{"name":"CERT_CAPABILITY_HASH_ALG","features":[506]},{"name":"CERT_CAPABILITY_OPTIONAL_FEATURES","features":[506]},{"name":"CERT_CAPABILITY_SIGNATURE_ALG","features":[506]},{"name":"CERT_MAX_CAPABILITY","features":[506]},{"name":"CERT_RSASSA_PSS_SHA1_OID","features":[506]},{"name":"CERT_RSASSA_PSS_SHA256_OID","features":[506]},{"name":"CERT_RSASSA_PSS_SHA384_OID","features":[506]},{"name":"CERT_RSASSA_PSS_SHA512_OID","features":[506]},{"name":"CERT_RSA_1024_OID","features":[506]},{"name":"CERT_RSA_2048_OID","features":[506]},{"name":"CERT_RSA_3072_OID","features":[506]},{"name":"CERT_TYPE_ASCh","features":[506]},{"name":"CERT_TYPE_ASCm","features":[506]},{"name":"CERT_TYPE_EMPTY","features":[506]},{"name":"CERT_TYPE_HCh","features":[506]},{"name":"CERT_TYPE_PCp","features":[506]},{"name":"CERT_TYPE_SIGNER","features":[506]},{"name":"CERT_VALIDATION_POLICY_BASIC","features":[506]},{"name":"CERT_VALIDATION_POLICY_EXTENDED","features":[506]},{"name":"CERT_VALIDATION_POLICY_NONE","features":[506]},{"name":"CERT_VALIDATION_POLICY_RESERVED","features":[506]},{"name":"CREATOROPENWITHUIOPTION_HIDDEN","features":[506]},{"name":"CREATOROPENWITHUIOPTION_VISIBLE","features":[506]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_AUTHENTICATED","features":[506]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_AUTHENTICATION_DENIED","features":[506]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_DEVICE_ERROR","features":[506]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_NOT_AUTHENTICATED","features":[506]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_NO_AUTHENTICATION_REQUIRED","features":[506]},{"name":"ENHANCED_STORAGE_AUTHN_STATE_UNKNOWN","features":[506]},{"name":"ENHANCED_STORAGE_CAPABILITY_ASYMMETRIC_KEY_CRYPTOGRAPHY","features":[506,376]},{"name":"ENHANCED_STORAGE_CAPABILITY_CERTIFICATE_EXTENSION_PARSING","features":[506,376]},{"name":"ENHANCED_STORAGE_CAPABILITY_HASH_ALGS","features":[506,376]},{"name":"ENHANCED_STORAGE_CAPABILITY_RENDER_USER_DATA_UNUSABLE","features":[506,376]},{"name":"ENHANCED_STORAGE_CAPABILITY_SIGNING_ALGS","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_ADMIN_CERTIFICATE_AUTHENTICATION","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_CREATE_CERTIFICATE_REQUEST","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_DEVICE_CERTIFICATE_AUTHENTICATION","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_ACT_FRIENDLY_NAME","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_CERTIFICATE","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_CERTIFICATE_COUNT","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_SILO_CAPABILITIES","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_SILO_CAPABILITY","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_GET_SILO_GUID","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_HOST_CERTIFICATE_AUTHENTICATION","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_INITIALIZE_TO_MANUFACTURER_STATE","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_SET_CERTIFICATE","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_CERT_UNAUTHENTICATION","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_AUTHORIZE_ACT_ACCESS","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_CHANGE_PASSWORD","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_CONFIG_ADMINISTRATOR","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_CREATE_USER","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_DELETE_USER","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_INITIALIZE_USER_PASSWORD","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_QUERY_INFORMATION","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_START_INITIALIZE_TO_MANUFACTURER_STATE","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_PASSWORD_UNAUTHORIZE_ACT_ACCESS","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_SILO_ENUMERATE_SILOS","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_SILO_GET_AUTHENTICATION_STATE","features":[506,376]},{"name":"ENHANCED_STORAGE_COMMAND_SILO_IS_AUTHENTICATION_SILO","features":[506,376]},{"name":"ENHANCED_STORAGE_PASSWORD_SILO_INFORMATION","features":[305,506]},{"name":"ENHANCED_STORAGE_PROPERTY_ADMIN_HINT","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_AUTHENTICATION_STATE","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_ACT_FRIENDLY_NAME","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_CAPABILITY_TYPE","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_INDEX","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_LENGTH","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_REQUEST","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_SILO_CAPABILITIES","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_SILO_CAPABILITY","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_SILO_GUID","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_CERTIFICATE_TYPE","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_IS_AUTHENTICATION_SILO","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_MAX_AUTH_FAILURES","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_MAX_CERTIFICATE_COUNT","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_NEW_PASSWORD","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_NEW_PASSWORD_INDICATOR","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_NEXT_CERTIFICATE_INDEX","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_NEXT_CERTIFICATE_OF_TYPE_INDEX","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_OLD_PASSWORD","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_PASSWORD","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_PASSWORD_INDICATOR","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_PASSWORD_SILO_INFO","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_QUERY_SILO_RESULTS","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_QUERY_SILO_TYPE","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_SECURITY_IDENTIFIER","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_SIGNER_CERTIFICATE_INDEX","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_SILO_FRIENDLYNAME_SPECIFIED","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_SILO_NAME","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_STORED_CERTIFICATE_COUNT","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_TEMPORARY_UNAUTHENTICATION","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_USER_HINT","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_USER_NAME","features":[506,376]},{"name":"ENHANCED_STORAGE_PROPERTY_VALIDATION_POLICY","features":[506,376]},{"name":"ES_AUTHN_ERROR_END","features":[506]},{"name":"ES_AUTHN_ERROR_START","features":[506]},{"name":"ES_E_AUTHORIZED_UNEXPECTED","features":[506]},{"name":"ES_E_BAD_SEQUENCE","features":[506]},{"name":"ES_E_CHALLENGE_MISMATCH","features":[506]},{"name":"ES_E_CHALLENGE_SIZE_MISMATCH","features":[506]},{"name":"ES_E_DEVICE_DIGEST_MISSING","features":[506]},{"name":"ES_E_FRIENDLY_NAME_TOO_LONG","features":[506]},{"name":"ES_E_GROUP_POLICY_FORBIDDEN_OPERATION","features":[506]},{"name":"ES_E_GROUP_POLICY_FORBIDDEN_USE","features":[506]},{"name":"ES_E_INCOMPLETE_COMMAND","features":[506]},{"name":"ES_E_INCONSISTENT_PARAM_LENGTH","features":[506]},{"name":"ES_E_INVALID_CAPABILITY","features":[506]},{"name":"ES_E_INVALID_FIELD_IDENTIFIER","features":[506]},{"name":"ES_E_INVALID_PARAM_COMBINATION","features":[506]},{"name":"ES_E_INVALID_PARAM_LENGTH","features":[506]},{"name":"ES_E_INVALID_RESPONSE","features":[506]},{"name":"ES_E_INVALID_SILO","features":[506]},{"name":"ES_E_NOT_AUTHORIZED_UNEXPECTED","features":[506]},{"name":"ES_E_NO_AUTHENTICATION_REQUIRED","features":[506]},{"name":"ES_E_NO_PROBE","features":[506]},{"name":"ES_E_OTHER_SECURITY_PROTOCOL_ACTIVE","features":[506]},{"name":"ES_E_PASSWORD_HINT_TOO_LONG","features":[506]},{"name":"ES_E_PASSWORD_TOO_LONG","features":[506]},{"name":"ES_E_PROVISIONED_UNEXPECTED","features":[506]},{"name":"ES_E_SILO_NAME_TOO_LONG","features":[506]},{"name":"ES_E_UNKNOWN_DIGEST_ALGORITHM","features":[506]},{"name":"ES_E_UNPROVISIONED_HARDWARE","features":[506]},{"name":"ES_E_UNSUPPORTED_HARDWARE","features":[506]},{"name":"ES_GENERAL_ERROR_END","features":[506]},{"name":"ES_GENERAL_ERROR_START","features":[506]},{"name":"ES_PW_SILO_ERROR_END","features":[506]},{"name":"ES_PW_SILO_ERROR_START","features":[506]},{"name":"ES_RESERVED_COM_ERROR_END","features":[506]},{"name":"ES_RESERVED_COM_ERROR_START","features":[506]},{"name":"ES_RESERVED_SILO_ERROR_END","features":[506]},{"name":"ES_RESERVED_SILO_ERROR_START","features":[506]},{"name":"ES_RESERVED_SILO_SPECIFIC_ERROR_END","features":[506]},{"name":"ES_RESERVED_SILO_SPECIFIC_ERROR_START","features":[506]},{"name":"ES_VENDOR_ERROR_END","features":[506]},{"name":"ES_VENDOR_ERROR_START","features":[506]},{"name":"EnhancedStorageACT","features":[506]},{"name":"EnhancedStorageSilo","features":[506]},{"name":"EnhancedStorageSiloAction","features":[506]},{"name":"EnumEnhancedStorageACT","features":[506]},{"name":"FACILITY_ENHANCED_STORAGE","features":[506]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_COMPLETE","features":[506]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_COMPLETE_PINNED","features":[506]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_EXCLUDED","features":[506]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_FOLDER_EMPTY","features":[506]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_NOTAVAILABLEOFFLINE","features":[506]},{"name":"FILEOFFLINEAVAILABILITYSTATUS_PARTIAL","features":[506]},{"name":"FLAGSTATUS_COMPLETED","features":[506]},{"name":"FLAGSTATUS_FOLLOWUP","features":[506]},{"name":"FLAGSTATUS_NOTFLAGGED","features":[506]},{"name":"GUID_DEVINTERFACE_ENHANCED_STORAGE_SILO","features":[506]},{"name":"HOMEGROUPING_FREQUENT","features":[506]},{"name":"HOMEGROUPING_PINNED","features":[506]},{"name":"HOMEGROUPING_RECENT","features":[506]},{"name":"HOMEGROUPING_RECOMMENDATIONS","features":[506]},{"name":"HOMEGROUPING_UNSPECIFIED","features":[506]},{"name":"IEnhancedStorageACT","features":[506]},{"name":"IEnhancedStorageACT2","features":[506]},{"name":"IEnhancedStorageACT3","features":[506]},{"name":"IEnhancedStorageSilo","features":[506]},{"name":"IEnhancedStorageSiloAction","features":[506]},{"name":"IEnumEnhancedStorageACT","features":[506]},{"name":"IMPORTANCE_HIGH_MAX","features":[506]},{"name":"IMPORTANCE_HIGH_MIN","features":[506]},{"name":"IMPORTANCE_HIGH_SET","features":[506]},{"name":"IMPORTANCE_LOW_MAX","features":[506]},{"name":"IMPORTANCE_LOW_MIN","features":[506]},{"name":"IMPORTANCE_LOW_SET","features":[506]},{"name":"IMPORTANCE_NORMAL_MAX","features":[506]},{"name":"IMPORTANCE_NORMAL_MIN","features":[506]},{"name":"IMPORTANCE_NORMAL_SET","features":[506]},{"name":"ISDEFAULTSAVE_BOTH","features":[506]},{"name":"ISDEFAULTSAVE_NONE","features":[506]},{"name":"ISDEFAULTSAVE_NONOWNER","features":[506]},{"name":"ISDEFAULTSAVE_OWNER","features":[506]},{"name":"KIND_CALENDAR","features":[506]},{"name":"KIND_COMMUNICATION","features":[506]},{"name":"KIND_CONTACT","features":[506]},{"name":"KIND_DOCUMENT","features":[506]},{"name":"KIND_EMAIL","features":[506]},{"name":"KIND_FEED","features":[506]},{"name":"KIND_FOLDER","features":[506]},{"name":"KIND_GAME","features":[506]},{"name":"KIND_INSTANTMESSAGE","features":[506]},{"name":"KIND_JOURNAL","features":[506]},{"name":"KIND_LINK","features":[506]},{"name":"KIND_MOVIE","features":[506]},{"name":"KIND_MUSIC","features":[506]},{"name":"KIND_NOTE","features":[506]},{"name":"KIND_PICTURE","features":[506]},{"name":"KIND_PLAYLIST","features":[506]},{"name":"KIND_PROGRAM","features":[506]},{"name":"KIND_RECORDEDTV","features":[506]},{"name":"KIND_SEARCHFOLDER","features":[506]},{"name":"KIND_TASK","features":[506]},{"name":"KIND_UNKNOWN","features":[506]},{"name":"KIND_VIDEO","features":[506]},{"name":"KIND_WEBHISTORY","features":[506]},{"name":"LAYOUTPATTERN_CVMFB_ALPHA","features":[506]},{"name":"LAYOUTPATTERN_CVMFB_BETA","features":[506]},{"name":"LAYOUTPATTERN_CVMFB_DELTA","features":[506]},{"name":"LAYOUTPATTERN_CVMFB_GAMMA","features":[506]},{"name":"LAYOUTPATTERN_CVMFS_ALPHA","features":[506]},{"name":"LAYOUTPATTERN_CVMFS_BETA","features":[506]},{"name":"LAYOUTPATTERN_CVMFS_DELTA","features":[506]},{"name":"LAYOUTPATTERN_CVMFS_GAMMA","features":[506]},{"name":"LINK_STATUS_BROKEN","features":[506]},{"name":"LINK_STATUS_RESOLVED","features":[506]},{"name":"OFFLINEAVAILABILITY_ALWAYS_AVAILABLE","features":[506]},{"name":"OFFLINEAVAILABILITY_AVAILABLE","features":[506]},{"name":"OFFLINEAVAILABILITY_NOT_AVAILABLE","features":[506]},{"name":"OFFLINESTATUS_OFFLINE","features":[506]},{"name":"OFFLINESTATUS_OFFLINE_ERROR","features":[506]},{"name":"OFFLINESTATUS_OFFLINE_FORCED","features":[506]},{"name":"OFFLINESTATUS_OFFLINE_ITEM_VERSION_CONFLICT","features":[506]},{"name":"OFFLINESTATUS_OFFLINE_SLOW","features":[506]},{"name":"OFFLINESTATUS_OFFLINE_SUSPENDED","features":[506]},{"name":"OFFLINESTATUS_ONLINE","features":[506]},{"name":"PHOTO_CONTRAST_HARD","features":[506]},{"name":"PHOTO_CONTRAST_NORMAL","features":[506]},{"name":"PHOTO_CONTRAST_SOFT","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_ACTION","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_APERTURE","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_CREATIVE","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_LANDSCAPE","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_MANUAL","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_NORMAL","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_PORTRAIT","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_SHUTTER","features":[506]},{"name":"PHOTO_EXPOSUREPROGRAM_UNKNOWN","features":[506]},{"name":"PHOTO_FLASH_FLASH","features":[506]},{"name":"PHOTO_FLASH_FLASH_AUTO","features":[506]},{"name":"PHOTO_FLASH_FLASH_AUTO_NORETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_AUTO_REDEYE","features":[506]},{"name":"PHOTO_FLASH_FLASH_AUTO_REDEYE_NORETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_AUTO_REDEYE_RETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_AUTO_RETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY","features":[506]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_NORETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_REDEYE","features":[506]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_REDEYE_NORETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_REDEYE_RETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_COMPULSORY_RETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_REDEYE","features":[506]},{"name":"PHOTO_FLASH_FLASH_REDEYE_NORETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_FLASH_REDEYE_RETURNLIGHT","features":[506]},{"name":"PHOTO_FLASH_NOFUNCTION","features":[506]},{"name":"PHOTO_FLASH_NONE","features":[506]},{"name":"PHOTO_FLASH_NONE_AUTO","features":[506]},{"name":"PHOTO_FLASH_NONE_COMPULSORY","features":[506]},{"name":"PHOTO_FLASH_WITHOUTSTROBE","features":[506]},{"name":"PHOTO_FLASH_WITHSTROBE","features":[506]},{"name":"PHOTO_GAINCONTROL_HIGHGAINDOWN","features":[506]},{"name":"PHOTO_GAINCONTROL_HIGHGAINUP","features":[506]},{"name":"PHOTO_GAINCONTROL_LOWGAINDOWN","features":[506]},{"name":"PHOTO_GAINCONTROL_LOWGAINUP","features":[506]},{"name":"PHOTO_GAINCONTROL_NONE","features":[506]},{"name":"PHOTO_LIGHTSOURCE_D55","features":[506]},{"name":"PHOTO_LIGHTSOURCE_D65","features":[506]},{"name":"PHOTO_LIGHTSOURCE_D75","features":[506]},{"name":"PHOTO_LIGHTSOURCE_DAYLIGHT","features":[506]},{"name":"PHOTO_LIGHTSOURCE_FLUORESCENT","features":[506]},{"name":"PHOTO_LIGHTSOURCE_STANDARD_A","features":[506]},{"name":"PHOTO_LIGHTSOURCE_STANDARD_B","features":[506]},{"name":"PHOTO_LIGHTSOURCE_STANDARD_C","features":[506]},{"name":"PHOTO_LIGHTSOURCE_TUNGSTEN","features":[506]},{"name":"PHOTO_LIGHTSOURCE_UNKNOWN","features":[506]},{"name":"PHOTO_PROGRAMMODE_ACTION","features":[506]},{"name":"PHOTO_PROGRAMMODE_APERTURE","features":[506]},{"name":"PHOTO_PROGRAMMODE_CREATIVE","features":[506]},{"name":"PHOTO_PROGRAMMODE_LANDSCAPE","features":[506]},{"name":"PHOTO_PROGRAMMODE_MANUAL","features":[506]},{"name":"PHOTO_PROGRAMMODE_NORMAL","features":[506]},{"name":"PHOTO_PROGRAMMODE_NOTDEFINED","features":[506]},{"name":"PHOTO_PROGRAMMODE_PORTRAIT","features":[506]},{"name":"PHOTO_PROGRAMMODE_SHUTTER","features":[506]},{"name":"PHOTO_SATURATION_HIGH","features":[506]},{"name":"PHOTO_SATURATION_LOW","features":[506]},{"name":"PHOTO_SATURATION_NORMAL","features":[506]},{"name":"PHOTO_SHARPNESS_HARD","features":[506]},{"name":"PHOTO_SHARPNESS_NORMAL","features":[506]},{"name":"PHOTO_SHARPNESS_SOFT","features":[506]},{"name":"PHOTO_WHITEBALANCE_AUTO","features":[506]},{"name":"PHOTO_WHITEBALANCE_MANUAL","features":[506]},{"name":"PKEY_AcquisitionID","features":[506,376]},{"name":"PKEY_ActivityInfo","features":[506,376]},{"name":"PKEY_Address_Country","features":[506,376]},{"name":"PKEY_Address_CountryCode","features":[506,376]},{"name":"PKEY_Address_Region","features":[506,376]},{"name":"PKEY_Address_RegionCode","features":[506,376]},{"name":"PKEY_Address_Town","features":[506,376]},{"name":"PKEY_AppUserModel_ExcludeFromShowInNewInstall","features":[506,376]},{"name":"PKEY_AppUserModel_ID","features":[506,376]},{"name":"PKEY_AppUserModel_IsDestListSeparator","features":[506,376]},{"name":"PKEY_AppUserModel_IsDualMode","features":[506,376]},{"name":"PKEY_AppUserModel_PreventPinning","features":[506,376]},{"name":"PKEY_AppUserModel_RelaunchCommand","features":[506,376]},{"name":"PKEY_AppUserModel_RelaunchDisplayNameResource","features":[506,376]},{"name":"PKEY_AppUserModel_RelaunchIconResource","features":[506,376]},{"name":"PKEY_AppUserModel_SettingsCommand","features":[506,376]},{"name":"PKEY_AppUserModel_StartPinOption","features":[506,376]},{"name":"PKEY_AppUserModel_ToastActivatorCLSID","features":[506,376]},{"name":"PKEY_AppUserModel_UninstallCommand","features":[506,376]},{"name":"PKEY_AppUserModel_VisualElementsManifestHintPath","features":[506,376]},{"name":"PKEY_AppZoneIdentifier","features":[506,376]},{"name":"PKEY_ApplicationDefinedProperties","features":[506,376]},{"name":"PKEY_ApplicationName","features":[506,376]},{"name":"PKEY_Audio_ChannelCount","features":[506,376]},{"name":"PKEY_Audio_Compression","features":[506,376]},{"name":"PKEY_Audio_EncodingBitrate","features":[506,376]},{"name":"PKEY_Audio_Format","features":[506,376]},{"name":"PKEY_Audio_IsVariableBitRate","features":[506,376]},{"name":"PKEY_Audio_PeakValue","features":[506,376]},{"name":"PKEY_Audio_SampleRate","features":[506,376]},{"name":"PKEY_Audio_SampleSize","features":[506,376]},{"name":"PKEY_Audio_StreamName","features":[506,376]},{"name":"PKEY_Audio_StreamNumber","features":[506,376]},{"name":"PKEY_Author","features":[506,376]},{"name":"PKEY_CachedFileUpdaterContentIdForConflictResolution","features":[506,376]},{"name":"PKEY_CachedFileUpdaterContentIdForStream","features":[506,376]},{"name":"PKEY_Calendar_Duration","features":[506,376]},{"name":"PKEY_Calendar_IsOnline","features":[506,376]},{"name":"PKEY_Calendar_IsRecurring","features":[506,376]},{"name":"PKEY_Calendar_Location","features":[506,376]},{"name":"PKEY_Calendar_OptionalAttendeeAddresses","features":[506,376]},{"name":"PKEY_Calendar_OptionalAttendeeNames","features":[506,376]},{"name":"PKEY_Calendar_OrganizerAddress","features":[506,376]},{"name":"PKEY_Calendar_OrganizerName","features":[506,376]},{"name":"PKEY_Calendar_ReminderTime","features":[506,376]},{"name":"PKEY_Calendar_RequiredAttendeeAddresses","features":[506,376]},{"name":"PKEY_Calendar_RequiredAttendeeNames","features":[506,376]},{"name":"PKEY_Calendar_Resources","features":[506,376]},{"name":"PKEY_Calendar_ResponseStatus","features":[506,376]},{"name":"PKEY_Calendar_ShowTimeAs","features":[506,376]},{"name":"PKEY_Calendar_ShowTimeAsText","features":[506,376]},{"name":"PKEY_Capacity","features":[506,376]},{"name":"PKEY_Category","features":[506,376]},{"name":"PKEY_Comment","features":[506,376]},{"name":"PKEY_Communication_AccountName","features":[506,376]},{"name":"PKEY_Communication_DateItemExpires","features":[506,376]},{"name":"PKEY_Communication_Direction","features":[506,376]},{"name":"PKEY_Communication_FollowupIconIndex","features":[506,376]},{"name":"PKEY_Communication_HeaderItem","features":[506,376]},{"name":"PKEY_Communication_PolicyTag","features":[506,376]},{"name":"PKEY_Communication_SecurityFlags","features":[506,376]},{"name":"PKEY_Communication_Suffix","features":[506,376]},{"name":"PKEY_Communication_TaskStatus","features":[506,376]},{"name":"PKEY_Communication_TaskStatusText","features":[506,376]},{"name":"PKEY_Company","features":[506,376]},{"name":"PKEY_ComputerName","features":[506,376]},{"name":"PKEY_Computer_DecoratedFreeSpace","features":[506,376]},{"name":"PKEY_Contact_AccountPictureDynamicVideo","features":[506,376]},{"name":"PKEY_Contact_AccountPictureLarge","features":[506,376]},{"name":"PKEY_Contact_AccountPictureSmall","features":[506,376]},{"name":"PKEY_Contact_Anniversary","features":[506,376]},{"name":"PKEY_Contact_AssistantName","features":[506,376]},{"name":"PKEY_Contact_AssistantTelephone","features":[506,376]},{"name":"PKEY_Contact_Birthday","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress1Country","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress1Locality","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress1PostalCode","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress1Region","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress1Street","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress2Country","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress2Locality","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress2PostalCode","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress2Region","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress2Street","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress3Country","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress3Locality","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress3PostalCode","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress3Region","features":[506,376]},{"name":"PKEY_Contact_BusinessAddress3Street","features":[506,376]},{"name":"PKEY_Contact_BusinessAddressCity","features":[506,376]},{"name":"PKEY_Contact_BusinessAddressCountry","features":[506,376]},{"name":"PKEY_Contact_BusinessAddressPostOfficeBox","features":[506,376]},{"name":"PKEY_Contact_BusinessAddressPostalCode","features":[506,376]},{"name":"PKEY_Contact_BusinessAddressState","features":[506,376]},{"name":"PKEY_Contact_BusinessAddressStreet","features":[506,376]},{"name":"PKEY_Contact_BusinessEmailAddresses","features":[506,376]},{"name":"PKEY_Contact_BusinessFaxNumber","features":[506,376]},{"name":"PKEY_Contact_BusinessHomePage","features":[506,376]},{"name":"PKEY_Contact_BusinessTelephone","features":[506,376]},{"name":"PKEY_Contact_CallbackTelephone","features":[506,376]},{"name":"PKEY_Contact_CarTelephone","features":[506,376]},{"name":"PKEY_Contact_Children","features":[506,376]},{"name":"PKEY_Contact_CompanyMainTelephone","features":[506,376]},{"name":"PKEY_Contact_ConnectedServiceDisplayName","features":[506,376]},{"name":"PKEY_Contact_ConnectedServiceIdentities","features":[506,376]},{"name":"PKEY_Contact_ConnectedServiceName","features":[506,376]},{"name":"PKEY_Contact_ConnectedServiceSupportedActions","features":[506,376]},{"name":"PKEY_Contact_DataSuppliers","features":[506,376]},{"name":"PKEY_Contact_Department","features":[506,376]},{"name":"PKEY_Contact_DisplayBusinessPhoneNumbers","features":[506,376]},{"name":"PKEY_Contact_DisplayHomePhoneNumbers","features":[506,376]},{"name":"PKEY_Contact_DisplayMobilePhoneNumbers","features":[506,376]},{"name":"PKEY_Contact_DisplayOtherPhoneNumbers","features":[506,376]},{"name":"PKEY_Contact_EmailAddress","features":[506,376]},{"name":"PKEY_Contact_EmailAddress2","features":[506,376]},{"name":"PKEY_Contact_EmailAddress3","features":[506,376]},{"name":"PKEY_Contact_EmailAddresses","features":[506,376]},{"name":"PKEY_Contact_EmailName","features":[506,376]},{"name":"PKEY_Contact_FileAsName","features":[506,376]},{"name":"PKEY_Contact_FirstName","features":[506,376]},{"name":"PKEY_Contact_FullName","features":[506,376]},{"name":"PKEY_Contact_Gender","features":[506,376]},{"name":"PKEY_Contact_GenderValue","features":[506,376]},{"name":"PKEY_Contact_Hobbies","features":[506,376]},{"name":"PKEY_Contact_HomeAddress","features":[506,376]},{"name":"PKEY_Contact_HomeAddress1Country","features":[506,376]},{"name":"PKEY_Contact_HomeAddress1Locality","features":[506,376]},{"name":"PKEY_Contact_HomeAddress1PostalCode","features":[506,376]},{"name":"PKEY_Contact_HomeAddress1Region","features":[506,376]},{"name":"PKEY_Contact_HomeAddress1Street","features":[506,376]},{"name":"PKEY_Contact_HomeAddress2Country","features":[506,376]},{"name":"PKEY_Contact_HomeAddress2Locality","features":[506,376]},{"name":"PKEY_Contact_HomeAddress2PostalCode","features":[506,376]},{"name":"PKEY_Contact_HomeAddress2Region","features":[506,376]},{"name":"PKEY_Contact_HomeAddress2Street","features":[506,376]},{"name":"PKEY_Contact_HomeAddress3Country","features":[506,376]},{"name":"PKEY_Contact_HomeAddress3Locality","features":[506,376]},{"name":"PKEY_Contact_HomeAddress3PostalCode","features":[506,376]},{"name":"PKEY_Contact_HomeAddress3Region","features":[506,376]},{"name":"PKEY_Contact_HomeAddress3Street","features":[506,376]},{"name":"PKEY_Contact_HomeAddressCity","features":[506,376]},{"name":"PKEY_Contact_HomeAddressCountry","features":[506,376]},{"name":"PKEY_Contact_HomeAddressPostOfficeBox","features":[506,376]},{"name":"PKEY_Contact_HomeAddressPostalCode","features":[506,376]},{"name":"PKEY_Contact_HomeAddressState","features":[506,376]},{"name":"PKEY_Contact_HomeAddressStreet","features":[506,376]},{"name":"PKEY_Contact_HomeEmailAddresses","features":[506,376]},{"name":"PKEY_Contact_HomeFaxNumber","features":[506,376]},{"name":"PKEY_Contact_HomeTelephone","features":[506,376]},{"name":"PKEY_Contact_IMAddress","features":[506,376]},{"name":"PKEY_Contact_Initials","features":[506,376]},{"name":"PKEY_Contact_JA_CompanyNamePhonetic","features":[506,376]},{"name":"PKEY_Contact_JA_FirstNamePhonetic","features":[506,376]},{"name":"PKEY_Contact_JA_LastNamePhonetic","features":[506,376]},{"name":"PKEY_Contact_JobInfo1CompanyAddress","features":[506,376]},{"name":"PKEY_Contact_JobInfo1CompanyName","features":[506,376]},{"name":"PKEY_Contact_JobInfo1Department","features":[506,376]},{"name":"PKEY_Contact_JobInfo1Manager","features":[506,376]},{"name":"PKEY_Contact_JobInfo1OfficeLocation","features":[506,376]},{"name":"PKEY_Contact_JobInfo1Title","features":[506,376]},{"name":"PKEY_Contact_JobInfo1YomiCompanyName","features":[506,376]},{"name":"PKEY_Contact_JobInfo2CompanyAddress","features":[506,376]},{"name":"PKEY_Contact_JobInfo2CompanyName","features":[506,376]},{"name":"PKEY_Contact_JobInfo2Department","features":[506,376]},{"name":"PKEY_Contact_JobInfo2Manager","features":[506,376]},{"name":"PKEY_Contact_JobInfo2OfficeLocation","features":[506,376]},{"name":"PKEY_Contact_JobInfo2Title","features":[506,376]},{"name":"PKEY_Contact_JobInfo2YomiCompanyName","features":[506,376]},{"name":"PKEY_Contact_JobInfo3CompanyAddress","features":[506,376]},{"name":"PKEY_Contact_JobInfo3CompanyName","features":[506,376]},{"name":"PKEY_Contact_JobInfo3Department","features":[506,376]},{"name":"PKEY_Contact_JobInfo3Manager","features":[506,376]},{"name":"PKEY_Contact_JobInfo3OfficeLocation","features":[506,376]},{"name":"PKEY_Contact_JobInfo3Title","features":[506,376]},{"name":"PKEY_Contact_JobInfo3YomiCompanyName","features":[506,376]},{"name":"PKEY_Contact_JobTitle","features":[506,376]},{"name":"PKEY_Contact_Label","features":[506,376]},{"name":"PKEY_Contact_LastName","features":[506,376]},{"name":"PKEY_Contact_MailingAddress","features":[506,376]},{"name":"PKEY_Contact_MiddleName","features":[506,376]},{"name":"PKEY_Contact_MobileTelephone","features":[506,376]},{"name":"PKEY_Contact_NickName","features":[506,376]},{"name":"PKEY_Contact_OfficeLocation","features":[506,376]},{"name":"PKEY_Contact_OtherAddress","features":[506,376]},{"name":"PKEY_Contact_OtherAddress1Country","features":[506,376]},{"name":"PKEY_Contact_OtherAddress1Locality","features":[506,376]},{"name":"PKEY_Contact_OtherAddress1PostalCode","features":[506,376]},{"name":"PKEY_Contact_OtherAddress1Region","features":[506,376]},{"name":"PKEY_Contact_OtherAddress1Street","features":[506,376]},{"name":"PKEY_Contact_OtherAddress2Country","features":[506,376]},{"name":"PKEY_Contact_OtherAddress2Locality","features":[506,376]},{"name":"PKEY_Contact_OtherAddress2PostalCode","features":[506,376]},{"name":"PKEY_Contact_OtherAddress2Region","features":[506,376]},{"name":"PKEY_Contact_OtherAddress2Street","features":[506,376]},{"name":"PKEY_Contact_OtherAddress3Country","features":[506,376]},{"name":"PKEY_Contact_OtherAddress3Locality","features":[506,376]},{"name":"PKEY_Contact_OtherAddress3PostalCode","features":[506,376]},{"name":"PKEY_Contact_OtherAddress3Region","features":[506,376]},{"name":"PKEY_Contact_OtherAddress3Street","features":[506,376]},{"name":"PKEY_Contact_OtherAddressCity","features":[506,376]},{"name":"PKEY_Contact_OtherAddressCountry","features":[506,376]},{"name":"PKEY_Contact_OtherAddressPostOfficeBox","features":[506,376]},{"name":"PKEY_Contact_OtherAddressPostalCode","features":[506,376]},{"name":"PKEY_Contact_OtherAddressState","features":[506,376]},{"name":"PKEY_Contact_OtherAddressStreet","features":[506,376]},{"name":"PKEY_Contact_OtherEmailAddresses","features":[506,376]},{"name":"PKEY_Contact_PagerTelephone","features":[506,376]},{"name":"PKEY_Contact_PersonalTitle","features":[506,376]},{"name":"PKEY_Contact_PhoneNumbersCanonical","features":[506,376]},{"name":"PKEY_Contact_Prefix","features":[506,376]},{"name":"PKEY_Contact_PrimaryAddressCity","features":[506,376]},{"name":"PKEY_Contact_PrimaryAddressCountry","features":[506,376]},{"name":"PKEY_Contact_PrimaryAddressPostOfficeBox","features":[506,376]},{"name":"PKEY_Contact_PrimaryAddressPostalCode","features":[506,376]},{"name":"PKEY_Contact_PrimaryAddressState","features":[506,376]},{"name":"PKEY_Contact_PrimaryAddressStreet","features":[506,376]},{"name":"PKEY_Contact_PrimaryEmailAddress","features":[506,376]},{"name":"PKEY_Contact_PrimaryTelephone","features":[506,376]},{"name":"PKEY_Contact_Profession","features":[506,376]},{"name":"PKEY_Contact_SpouseName","features":[506,376]},{"name":"PKEY_Contact_Suffix","features":[506,376]},{"name":"PKEY_Contact_TTYTDDTelephone","features":[506,376]},{"name":"PKEY_Contact_TelexNumber","features":[506,376]},{"name":"PKEY_Contact_WebPage","features":[506,376]},{"name":"PKEY_Contact_Webpage2","features":[506,376]},{"name":"PKEY_Contact_Webpage3","features":[506,376]},{"name":"PKEY_ContainedItems","features":[506,376]},{"name":"PKEY_ContentId","features":[506,376]},{"name":"PKEY_ContentStatus","features":[506,376]},{"name":"PKEY_ContentType","features":[506,376]},{"name":"PKEY_ContentUri","features":[506,376]},{"name":"PKEY_Copyright","features":[506,376]},{"name":"PKEY_CreatorAppId","features":[506,376]},{"name":"PKEY_CreatorOpenWithUIOptions","features":[506,376]},{"name":"PKEY_DRM_DatePlayExpires","features":[506,376]},{"name":"PKEY_DRM_DatePlayStarts","features":[506,376]},{"name":"PKEY_DRM_Description","features":[506,376]},{"name":"PKEY_DRM_IsDisabled","features":[506,376]},{"name":"PKEY_DRM_IsProtected","features":[506,376]},{"name":"PKEY_DRM_PlayCount","features":[506,376]},{"name":"PKEY_DataObjectFormat","features":[506,376]},{"name":"PKEY_DateAccessed","features":[506,376]},{"name":"PKEY_DateAcquired","features":[506,376]},{"name":"PKEY_DateArchived","features":[506,376]},{"name":"PKEY_DateCompleted","features":[506,376]},{"name":"PKEY_DateCreated","features":[506,376]},{"name":"PKEY_DateImported","features":[506,376]},{"name":"PKEY_DateModified","features":[506,376]},{"name":"PKEY_DefaultSaveLocationDisplay","features":[506,376]},{"name":"PKEY_DescriptionID","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_DeviceAddress","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_Flags","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_LastConnectedTime","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_Manufacturer","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_ModelNumber","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_ProductId","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_ProductVersion","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_ServiceGuid","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_VendorId","features":[506,376]},{"name":"PKEY_DeviceInterface_Bluetooth_VendorIdSource","features":[506,376]},{"name":"PKEY_DeviceInterface_Hid_IsReadOnly","features":[506,376]},{"name":"PKEY_DeviceInterface_Hid_ProductId","features":[506,376]},{"name":"PKEY_DeviceInterface_Hid_UsageId","features":[506,376]},{"name":"PKEY_DeviceInterface_Hid_UsagePage","features":[506,376]},{"name":"PKEY_DeviceInterface_Hid_VendorId","features":[506,376]},{"name":"PKEY_DeviceInterface_Hid_VersionNumber","features":[506,376]},{"name":"PKEY_DeviceInterface_PrinterDriverDirectory","features":[506,376]},{"name":"PKEY_DeviceInterface_PrinterDriverName","features":[506,376]},{"name":"PKEY_DeviceInterface_PrinterEnumerationFlag","features":[506,376]},{"name":"PKEY_DeviceInterface_PrinterName","features":[506,376]},{"name":"PKEY_DeviceInterface_PrinterPortName","features":[506,376]},{"name":"PKEY_DeviceInterface_Proximity_SupportsNfc","features":[506,376]},{"name":"PKEY_DeviceInterface_Serial_PortName","features":[506,376]},{"name":"PKEY_DeviceInterface_Serial_UsbProductId","features":[506,376]},{"name":"PKEY_DeviceInterface_Serial_UsbVendorId","features":[506,376]},{"name":"PKEY_DeviceInterface_WinUsb_DeviceInterfaceClasses","features":[506,376]},{"name":"PKEY_DeviceInterface_WinUsb_UsbClass","features":[506,376]},{"name":"PKEY_DeviceInterface_WinUsb_UsbProductId","features":[506,376]},{"name":"PKEY_DeviceInterface_WinUsb_UsbProtocol","features":[506,376]},{"name":"PKEY_DeviceInterface_WinUsb_UsbSubClass","features":[506,376]},{"name":"PKEY_DeviceInterface_WinUsb_UsbVendorId","features":[506,376]},{"name":"PKEY_Device_PrinterURL","features":[506,376]},{"name":"PKEY_Devices_AepContainer_CanPair","features":[506,376]},{"name":"PKEY_Devices_AepContainer_Categories","features":[506,376]},{"name":"PKEY_Devices_AepContainer_Children","features":[506,376]},{"name":"PKEY_Devices_AepContainer_ContainerId","features":[506,376]},{"name":"PKEY_Devices_AepContainer_DialProtocol_InstalledApplications","features":[506,376]},{"name":"PKEY_Devices_AepContainer_IsPaired","features":[506,376]},{"name":"PKEY_Devices_AepContainer_IsPresent","features":[506,376]},{"name":"PKEY_Devices_AepContainer_Manufacturer","features":[506,376]},{"name":"PKEY_Devices_AepContainer_ModelIds","features":[506,376]},{"name":"PKEY_Devices_AepContainer_ModelName","features":[506,376]},{"name":"PKEY_Devices_AepContainer_ProtocolIds","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportedUriSchemes","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsAudio","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsCapturing","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsImages","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsInformation","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsLimitedDiscovery","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsNetworking","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsObjectTransfer","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsPositioning","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsRendering","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsTelephony","features":[506,376]},{"name":"PKEY_Devices_AepContainer_SupportsVideo","features":[506,376]},{"name":"PKEY_Devices_AepService_AepId","features":[506,376]},{"name":"PKEY_Devices_AepService_Bluetooth_CacheMode","features":[506,376]},{"name":"PKEY_Devices_AepService_Bluetooth_ServiceGuid","features":[506,376]},{"name":"PKEY_Devices_AepService_Bluetooth_TargetDevice","features":[506,376]},{"name":"PKEY_Devices_AepService_ContainerId","features":[506,376]},{"name":"PKEY_Devices_AepService_FriendlyName","features":[506,376]},{"name":"PKEY_Devices_AepService_IoT_ServiceInterfaces","features":[506,376]},{"name":"PKEY_Devices_AepService_ParentAepIsPaired","features":[506,376]},{"name":"PKEY_Devices_AepService_ProtocolId","features":[506,376]},{"name":"PKEY_Devices_AepService_ServiceClassId","features":[506,376]},{"name":"PKEY_Devices_AepService_ServiceId","features":[506,376]},{"name":"PKEY_Devices_Aep_AepId","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Major","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Minor","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Audio","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Capturing","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Information","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_LimitedDiscovery","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Networking","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_ObjectXfer","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Positioning","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Rendering","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Cod_Services_Telephony","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_LastSeenTime","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_AddressType","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_Appearance","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_Appearance_Category","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_Appearance_Subcategory","features":[506,376]},{"name":"PKEY_Devices_Aep_Bluetooth_Le_IsConnectable","features":[506,376]},{"name":"PKEY_Devices_Aep_CanPair","features":[506,376]},{"name":"PKEY_Devices_Aep_Category","features":[506,376]},{"name":"PKEY_Devices_Aep_ContainerId","features":[506,376]},{"name":"PKEY_Devices_Aep_DeviceAddress","features":[506,376]},{"name":"PKEY_Devices_Aep_IsConnected","features":[506,376]},{"name":"PKEY_Devices_Aep_IsPaired","features":[506,376]},{"name":"PKEY_Devices_Aep_IsPresent","features":[506,376]},{"name":"PKEY_Devices_Aep_Manufacturer","features":[506,376]},{"name":"PKEY_Devices_Aep_ModelId","features":[506,376]},{"name":"PKEY_Devices_Aep_ModelName","features":[506,376]},{"name":"PKEY_Devices_Aep_PointOfService_ConnectionTypes","features":[506,376]},{"name":"PKEY_Devices_Aep_ProtocolId","features":[506,376]},{"name":"PKEY_Devices_Aep_SignalStrength","features":[506,376]},{"name":"PKEY_Devices_AppPackageFamilyName","features":[506,376]},{"name":"PKEY_Devices_AudioDevice_Microphone_IsFarField","features":[506,376]},{"name":"PKEY_Devices_AudioDevice_Microphone_SensitivityInDbfs","features":[506,376]},{"name":"PKEY_Devices_AudioDevice_Microphone_SensitivityInDbfs2","features":[506,376]},{"name":"PKEY_Devices_AudioDevice_Microphone_SignalToNoiseRatioInDb","features":[506,376]},{"name":"PKEY_Devices_AudioDevice_RawProcessingSupported","features":[506,376]},{"name":"PKEY_Devices_AudioDevice_SpeechProcessingSupported","features":[506,376]},{"name":"PKEY_Devices_BatteryLife","features":[506,376]},{"name":"PKEY_Devices_BatteryPlusCharging","features":[506,376]},{"name":"PKEY_Devices_BatteryPlusChargingText","features":[506,376]},{"name":"PKEY_Devices_Category","features":[506,376]},{"name":"PKEY_Devices_CategoryGroup","features":[506,376]},{"name":"PKEY_Devices_CategoryIds","features":[506,376]},{"name":"PKEY_Devices_CategoryPlural","features":[506,376]},{"name":"PKEY_Devices_ChallengeAep","features":[506,376]},{"name":"PKEY_Devices_ChargingState","features":[506,376]},{"name":"PKEY_Devices_Children","features":[506,376]},{"name":"PKEY_Devices_ClassGuid","features":[506,376]},{"name":"PKEY_Devices_CompatibleIds","features":[506,376]},{"name":"PKEY_Devices_Connected","features":[506,376]},{"name":"PKEY_Devices_ContainerId","features":[506,376]},{"name":"PKEY_Devices_DefaultTooltip","features":[506,376]},{"name":"PKEY_Devices_DevObjectType","features":[506,376]},{"name":"PKEY_Devices_DeviceCapabilities","features":[506,376]},{"name":"PKEY_Devices_DeviceCharacteristics","features":[506,376]},{"name":"PKEY_Devices_DeviceDescription1","features":[506,376]},{"name":"PKEY_Devices_DeviceDescription2","features":[506,376]},{"name":"PKEY_Devices_DeviceHasProblem","features":[506,376]},{"name":"PKEY_Devices_DeviceInstanceId","features":[506,376]},{"name":"PKEY_Devices_DeviceManufacturer","features":[506,376]},{"name":"PKEY_Devices_DialProtocol_InstalledApplications","features":[506,376]},{"name":"PKEY_Devices_DiscoveryMethod","features":[506,376]},{"name":"PKEY_Devices_Dnssd_Domain","features":[506,376]},{"name":"PKEY_Devices_Dnssd_FullName","features":[506,376]},{"name":"PKEY_Devices_Dnssd_HostName","features":[506,376]},{"name":"PKEY_Devices_Dnssd_InstanceName","features":[506,376]},{"name":"PKEY_Devices_Dnssd_NetworkAdapterId","features":[506,376]},{"name":"PKEY_Devices_Dnssd_PortNumber","features":[506,376]},{"name":"PKEY_Devices_Dnssd_Priority","features":[506,376]},{"name":"PKEY_Devices_Dnssd_ServiceName","features":[506,376]},{"name":"PKEY_Devices_Dnssd_TextAttributes","features":[506,376]},{"name":"PKEY_Devices_Dnssd_Ttl","features":[506,376]},{"name":"PKEY_Devices_Dnssd_Weight","features":[506,376]},{"name":"PKEY_Devices_FriendlyName","features":[506,376]},{"name":"PKEY_Devices_FunctionPaths","features":[506,376]},{"name":"PKEY_Devices_GlyphIcon","features":[506,376]},{"name":"PKEY_Devices_HardwareIds","features":[506,376]},{"name":"PKEY_Devices_Icon","features":[506,376]},{"name":"PKEY_Devices_InLocalMachineContainer","features":[506,376]},{"name":"PKEY_Devices_InterfaceClassGuid","features":[506,376]},{"name":"PKEY_Devices_InterfaceEnabled","features":[506,376]},{"name":"PKEY_Devices_InterfacePaths","features":[506,376]},{"name":"PKEY_Devices_IpAddress","features":[506,376]},{"name":"PKEY_Devices_IsDefault","features":[506,376]},{"name":"PKEY_Devices_IsNetworkConnected","features":[506,376]},{"name":"PKEY_Devices_IsShared","features":[506,376]},{"name":"PKEY_Devices_IsSoftwareInstalling","features":[506,376]},{"name":"PKEY_Devices_LaunchDeviceStageFromExplorer","features":[506,376]},{"name":"PKEY_Devices_LocalMachine","features":[506,376]},{"name":"PKEY_Devices_LocationPaths","features":[506,376]},{"name":"PKEY_Devices_Manufacturer","features":[506,376]},{"name":"PKEY_Devices_MetadataPath","features":[506,376]},{"name":"PKEY_Devices_MicrophoneArray_Geometry","features":[506,376]},{"name":"PKEY_Devices_MissedCalls","features":[506,376]},{"name":"PKEY_Devices_ModelId","features":[506,376]},{"name":"PKEY_Devices_ModelName","features":[506,376]},{"name":"PKEY_Devices_ModelNumber","features":[506,376]},{"name":"PKEY_Devices_NetworkName","features":[506,376]},{"name":"PKEY_Devices_NetworkType","features":[506,376]},{"name":"PKEY_Devices_NetworkedTooltip","features":[506,376]},{"name":"PKEY_Devices_NewPictures","features":[506,376]},{"name":"PKEY_Devices_NotWorkingProperly","features":[506,376]},{"name":"PKEY_Devices_Notification","features":[506,376]},{"name":"PKEY_Devices_NotificationStore","features":[506,376]},{"name":"PKEY_Devices_Notifications_LowBattery","features":[506,376]},{"name":"PKEY_Devices_Notifications_MissedCall","features":[506,376]},{"name":"PKEY_Devices_Notifications_NewMessage","features":[506,376]},{"name":"PKEY_Devices_Notifications_NewVoicemail","features":[506,376]},{"name":"PKEY_Devices_Notifications_StorageFull","features":[506,376]},{"name":"PKEY_Devices_Notifications_StorageFullLinkText","features":[506,376]},{"name":"PKEY_Devices_Paired","features":[506,376]},{"name":"PKEY_Devices_Panel_PanelGroup","features":[506,376]},{"name":"PKEY_Devices_Panel_PanelId","features":[506,376]},{"name":"PKEY_Devices_Parent","features":[506,376]},{"name":"PKEY_Devices_PhoneLineTransportDevice_Connected","features":[506,376]},{"name":"PKEY_Devices_PhysicalDeviceLocation","features":[506,376]},{"name":"PKEY_Devices_PlaybackPositionPercent","features":[506,376]},{"name":"PKEY_Devices_PlaybackState","features":[506,376]},{"name":"PKEY_Devices_PlaybackTitle","features":[506,376]},{"name":"PKEY_Devices_Present","features":[506,376]},{"name":"PKEY_Devices_PresentationUrl","features":[506,376]},{"name":"PKEY_Devices_PrimaryCategory","features":[506,376]},{"name":"PKEY_Devices_RemainingDuration","features":[506,376]},{"name":"PKEY_Devices_RestrictedInterface","features":[506,376]},{"name":"PKEY_Devices_Roaming","features":[506,376]},{"name":"PKEY_Devices_SafeRemovalRequired","features":[506,376]},{"name":"PKEY_Devices_SchematicName","features":[506,376]},{"name":"PKEY_Devices_ServiceAddress","features":[506,376]},{"name":"PKEY_Devices_ServiceId","features":[506,376]},{"name":"PKEY_Devices_SharedTooltip","features":[506,376]},{"name":"PKEY_Devices_SignalStrength","features":[506,376]},{"name":"PKEY_Devices_SmartCards_ReaderKind","features":[506,376]},{"name":"PKEY_Devices_Status","features":[506,376]},{"name":"PKEY_Devices_Status1","features":[506,376]},{"name":"PKEY_Devices_Status2","features":[506,376]},{"name":"PKEY_Devices_StorageCapacity","features":[506,376]},{"name":"PKEY_Devices_StorageFreeSpace","features":[506,376]},{"name":"PKEY_Devices_StorageFreeSpacePercent","features":[506,376]},{"name":"PKEY_Devices_TextMessages","features":[506,376]},{"name":"PKEY_Devices_Voicemail","features":[506,376]},{"name":"PKEY_Devices_WiFiDirectServices_AdvertisementId","features":[506,376]},{"name":"PKEY_Devices_WiFiDirectServices_RequestServiceInformation","features":[506,376]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceAddress","features":[506,376]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceConfigMethods","features":[506,376]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceInformation","features":[506,376]},{"name":"PKEY_Devices_WiFiDirectServices_ServiceName","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_DeviceAddress","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_GroupId","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_InformationElements","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_InterfaceAddress","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_InterfaceGuid","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_IsConnected","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_IsLegacyDevice","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_IsMiracastLcpSupported","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_IsVisible","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_MiracastVersion","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_Services","features":[506,376]},{"name":"PKEY_Devices_WiFiDirect_SupportedChannelList","features":[506,376]},{"name":"PKEY_Devices_WiFi_InterfaceGuid","features":[506,376]},{"name":"PKEY_Devices_WiaDeviceType","features":[506,376]},{"name":"PKEY_Devices_WinPhone8CameraFlags","features":[506,376]},{"name":"PKEY_Devices_Wwan_InterfaceGuid","features":[506,376]},{"name":"PKEY_Document_ByteCount","features":[506,376]},{"name":"PKEY_Document_CharacterCount","features":[506,376]},{"name":"PKEY_Document_ClientID","features":[506,376]},{"name":"PKEY_Document_Contributor","features":[506,376]},{"name":"PKEY_Document_DateCreated","features":[506,376]},{"name":"PKEY_Document_DatePrinted","features":[506,376]},{"name":"PKEY_Document_DateSaved","features":[506,376]},{"name":"PKEY_Document_Division","features":[506,376]},{"name":"PKEY_Document_DocumentID","features":[506,376]},{"name":"PKEY_Document_HiddenSlideCount","features":[506,376]},{"name":"PKEY_Document_LastAuthor","features":[506,376]},{"name":"PKEY_Document_LineCount","features":[506,376]},{"name":"PKEY_Document_Manager","features":[506,376]},{"name":"PKEY_Document_MultimediaClipCount","features":[506,376]},{"name":"PKEY_Document_NoteCount","features":[506,376]},{"name":"PKEY_Document_PageCount","features":[506,376]},{"name":"PKEY_Document_ParagraphCount","features":[506,376]},{"name":"PKEY_Document_PresentationFormat","features":[506,376]},{"name":"PKEY_Document_RevisionNumber","features":[506,376]},{"name":"PKEY_Document_Security","features":[506,376]},{"name":"PKEY_Document_SlideCount","features":[506,376]},{"name":"PKEY_Document_Template","features":[506,376]},{"name":"PKEY_Document_TotalEditingTime","features":[506,376]},{"name":"PKEY_Document_Version","features":[506,376]},{"name":"PKEY_Document_WordCount","features":[506,376]},{"name":"PKEY_DueDate","features":[506,376]},{"name":"PKEY_EdgeGesture_DisableTouchWhenFullscreen","features":[506,376]},{"name":"PKEY_EndDate","features":[506,376]},{"name":"PKEY_ExpandoProperties","features":[506,376]},{"name":"PKEY_FileAllocationSize","features":[506,376]},{"name":"PKEY_FileAttributes","features":[506,376]},{"name":"PKEY_FileCount","features":[506,376]},{"name":"PKEY_FileDescription","features":[506,376]},{"name":"PKEY_FileExtension","features":[506,376]},{"name":"PKEY_FileFRN","features":[506,376]},{"name":"PKEY_FileName","features":[506,376]},{"name":"PKEY_FileOfflineAvailabilityStatus","features":[506,376]},{"name":"PKEY_FileOwner","features":[506,376]},{"name":"PKEY_FilePlaceholderStatus","features":[506,376]},{"name":"PKEY_FileVersion","features":[506,376]},{"name":"PKEY_FindData","features":[506,376]},{"name":"PKEY_FlagColor","features":[506,376]},{"name":"PKEY_FlagColorText","features":[506,376]},{"name":"PKEY_FlagStatus","features":[506,376]},{"name":"PKEY_FlagStatusText","features":[506,376]},{"name":"PKEY_FolderKind","features":[506,376]},{"name":"PKEY_FolderNameDisplay","features":[506,376]},{"name":"PKEY_FreeSpace","features":[506,376]},{"name":"PKEY_FullText","features":[506,376]},{"name":"PKEY_GPS_Altitude","features":[506,376]},{"name":"PKEY_GPS_AltitudeDenominator","features":[506,376]},{"name":"PKEY_GPS_AltitudeNumerator","features":[506,376]},{"name":"PKEY_GPS_AltitudeRef","features":[506,376]},{"name":"PKEY_GPS_AreaInformation","features":[506,376]},{"name":"PKEY_GPS_DOP","features":[506,376]},{"name":"PKEY_GPS_DOPDenominator","features":[506,376]},{"name":"PKEY_GPS_DOPNumerator","features":[506,376]},{"name":"PKEY_GPS_Date","features":[506,376]},{"name":"PKEY_GPS_DestBearing","features":[506,376]},{"name":"PKEY_GPS_DestBearingDenominator","features":[506,376]},{"name":"PKEY_GPS_DestBearingNumerator","features":[506,376]},{"name":"PKEY_GPS_DestBearingRef","features":[506,376]},{"name":"PKEY_GPS_DestDistance","features":[506,376]},{"name":"PKEY_GPS_DestDistanceDenominator","features":[506,376]},{"name":"PKEY_GPS_DestDistanceNumerator","features":[506,376]},{"name":"PKEY_GPS_DestDistanceRef","features":[506,376]},{"name":"PKEY_GPS_DestLatitude","features":[506,376]},{"name":"PKEY_GPS_DestLatitudeDenominator","features":[506,376]},{"name":"PKEY_GPS_DestLatitudeNumerator","features":[506,376]},{"name":"PKEY_GPS_DestLatitudeRef","features":[506,376]},{"name":"PKEY_GPS_DestLongitude","features":[506,376]},{"name":"PKEY_GPS_DestLongitudeDenominator","features":[506,376]},{"name":"PKEY_GPS_DestLongitudeNumerator","features":[506,376]},{"name":"PKEY_GPS_DestLongitudeRef","features":[506,376]},{"name":"PKEY_GPS_Differential","features":[506,376]},{"name":"PKEY_GPS_ImgDirection","features":[506,376]},{"name":"PKEY_GPS_ImgDirectionDenominator","features":[506,376]},{"name":"PKEY_GPS_ImgDirectionNumerator","features":[506,376]},{"name":"PKEY_GPS_ImgDirectionRef","features":[506,376]},{"name":"PKEY_GPS_Latitude","features":[506,376]},{"name":"PKEY_GPS_LatitudeDecimal","features":[506,376]},{"name":"PKEY_GPS_LatitudeDenominator","features":[506,376]},{"name":"PKEY_GPS_LatitudeNumerator","features":[506,376]},{"name":"PKEY_GPS_LatitudeRef","features":[506,376]},{"name":"PKEY_GPS_Longitude","features":[506,376]},{"name":"PKEY_GPS_LongitudeDecimal","features":[506,376]},{"name":"PKEY_GPS_LongitudeDenominator","features":[506,376]},{"name":"PKEY_GPS_LongitudeNumerator","features":[506,376]},{"name":"PKEY_GPS_LongitudeRef","features":[506,376]},{"name":"PKEY_GPS_MapDatum","features":[506,376]},{"name":"PKEY_GPS_MeasureMode","features":[506,376]},{"name":"PKEY_GPS_ProcessingMethod","features":[506,376]},{"name":"PKEY_GPS_Satellites","features":[506,376]},{"name":"PKEY_GPS_Speed","features":[506,376]},{"name":"PKEY_GPS_SpeedDenominator","features":[506,376]},{"name":"PKEY_GPS_SpeedNumerator","features":[506,376]},{"name":"PKEY_GPS_SpeedRef","features":[506,376]},{"name":"PKEY_GPS_Status","features":[506,376]},{"name":"PKEY_GPS_Track","features":[506,376]},{"name":"PKEY_GPS_TrackDenominator","features":[506,376]},{"name":"PKEY_GPS_TrackNumerator","features":[506,376]},{"name":"PKEY_GPS_TrackRef","features":[506,376]},{"name":"PKEY_GPS_VersionID","features":[506,376]},{"name":"PKEY_HighKeywords","features":[506,376]},{"name":"PKEY_History_SelectionCount","features":[506,376]},{"name":"PKEY_History_TargetUrlHostName","features":[506,376]},{"name":"PKEY_History_VisitCount","features":[506,376]},{"name":"PKEY_Home_Grouping","features":[506,376]},{"name":"PKEY_Home_IsPinned","features":[506,376]},{"name":"PKEY_Home_ItemFolderPathDisplay","features":[506,376]},{"name":"PKEY_Identity","features":[506,376]},{"name":"PKEY_IdentityProvider_Name","features":[506,376]},{"name":"PKEY_IdentityProvider_Picture","features":[506,376]},{"name":"PKEY_Identity_Blob","features":[506,376]},{"name":"PKEY_Identity_DisplayName","features":[506,376]},{"name":"PKEY_Identity_InternetSid","features":[506,376]},{"name":"PKEY_Identity_IsMeIdentity","features":[506,376]},{"name":"PKEY_Identity_KeyProviderContext","features":[506,376]},{"name":"PKEY_Identity_KeyProviderName","features":[506,376]},{"name":"PKEY_Identity_LogonStatusString","features":[506,376]},{"name":"PKEY_Identity_PrimaryEmailAddress","features":[506,376]},{"name":"PKEY_Identity_PrimarySid","features":[506,376]},{"name":"PKEY_Identity_ProviderData","features":[506,376]},{"name":"PKEY_Identity_ProviderID","features":[506,376]},{"name":"PKEY_Identity_QualifiedUserName","features":[506,376]},{"name":"PKEY_Identity_UniqueID","features":[506,376]},{"name":"PKEY_Identity_UserName","features":[506,376]},{"name":"PKEY_ImageParsingName","features":[506,376]},{"name":"PKEY_Image_BitDepth","features":[506,376]},{"name":"PKEY_Image_ColorSpace","features":[506,376]},{"name":"PKEY_Image_CompressedBitsPerPixel","features":[506,376]},{"name":"PKEY_Image_CompressedBitsPerPixelDenominator","features":[506,376]},{"name":"PKEY_Image_CompressedBitsPerPixelNumerator","features":[506,376]},{"name":"PKEY_Image_Compression","features":[506,376]},{"name":"PKEY_Image_CompressionText","features":[506,376]},{"name":"PKEY_Image_Dimensions","features":[506,376]},{"name":"PKEY_Image_HorizontalResolution","features":[506,376]},{"name":"PKEY_Image_HorizontalSize","features":[506,376]},{"name":"PKEY_Image_ImageID","features":[506,376]},{"name":"PKEY_Image_ResolutionUnit","features":[506,376]},{"name":"PKEY_Image_VerticalResolution","features":[506,376]},{"name":"PKEY_Image_VerticalSize","features":[506,376]},{"name":"PKEY_Importance","features":[506,376]},{"name":"PKEY_ImportanceText","features":[506,376]},{"name":"PKEY_InfoTipText","features":[506,376]},{"name":"PKEY_InternalName","features":[506,376]},{"name":"PKEY_IsAttachment","features":[506,376]},{"name":"PKEY_IsDefaultNonOwnerSaveLocation","features":[506,376]},{"name":"PKEY_IsDefaultSaveLocation","features":[506,376]},{"name":"PKEY_IsDeleted","features":[506,376]},{"name":"PKEY_IsEncrypted","features":[506,376]},{"name":"PKEY_IsFlagged","features":[506,376]},{"name":"PKEY_IsFlaggedComplete","features":[506,376]},{"name":"PKEY_IsIncomplete","features":[506,376]},{"name":"PKEY_IsLocationSupported","features":[506,376]},{"name":"PKEY_IsPinnedToNameSpaceTree","features":[506,376]},{"name":"PKEY_IsRead","features":[506,376]},{"name":"PKEY_IsSearchOnlyItem","features":[506,376]},{"name":"PKEY_IsSendToTarget","features":[506,376]},{"name":"PKEY_IsShared","features":[506,376]},{"name":"PKEY_ItemAuthors","features":[506,376]},{"name":"PKEY_ItemClassType","features":[506,376]},{"name":"PKEY_ItemDate","features":[506,376]},{"name":"PKEY_ItemFolderNameDisplay","features":[506,376]},{"name":"PKEY_ItemFolderPathDisplay","features":[506,376]},{"name":"PKEY_ItemFolderPathDisplayNarrow","features":[506,376]},{"name":"PKEY_ItemName","features":[506,376]},{"name":"PKEY_ItemNameDisplay","features":[506,376]},{"name":"PKEY_ItemNameDisplayWithoutExtension","features":[506,376]},{"name":"PKEY_ItemNamePrefix","features":[506,376]},{"name":"PKEY_ItemNameSortOverride","features":[506,376]},{"name":"PKEY_ItemParticipants","features":[506,376]},{"name":"PKEY_ItemPathDisplay","features":[506,376]},{"name":"PKEY_ItemPathDisplayNarrow","features":[506,376]},{"name":"PKEY_ItemSubType","features":[506,376]},{"name":"PKEY_ItemType","features":[506,376]},{"name":"PKEY_ItemTypeText","features":[506,376]},{"name":"PKEY_ItemUrl","features":[506,376]},{"name":"PKEY_Journal_Contacts","features":[506,376]},{"name":"PKEY_Journal_EntryType","features":[506,376]},{"name":"PKEY_Keywords","features":[506,376]},{"name":"PKEY_Kind","features":[506,376]},{"name":"PKEY_KindText","features":[506,376]},{"name":"PKEY_Language","features":[506,376]},{"name":"PKEY_LastSyncError","features":[506,376]},{"name":"PKEY_LastSyncWarning","features":[506,376]},{"name":"PKEY_LastWriterPackageFamilyName","features":[506,376]},{"name":"PKEY_LayoutPattern_ContentViewModeForBrowse","features":[506,376]},{"name":"PKEY_LayoutPattern_ContentViewModeForSearch","features":[506,376]},{"name":"PKEY_LibraryLocationsCount","features":[506,376]},{"name":"PKEY_Link_Arguments","features":[506,376]},{"name":"PKEY_Link_Comment","features":[506,376]},{"name":"PKEY_Link_DateVisited","features":[506,376]},{"name":"PKEY_Link_Description","features":[506,376]},{"name":"PKEY_Link_FeedItemLocalId","features":[506,376]},{"name":"PKEY_Link_Status","features":[506,376]},{"name":"PKEY_Link_TargetExtension","features":[506,376]},{"name":"PKEY_Link_TargetParsingPath","features":[506,376]},{"name":"PKEY_Link_TargetSFGAOFlags","features":[506,376]},{"name":"PKEY_Link_TargetSFGAOFlagsStrings","features":[506,376]},{"name":"PKEY_Link_TargetUrl","features":[506,376]},{"name":"PKEY_Link_TargetUrlHostName","features":[506,376]},{"name":"PKEY_Link_TargetUrlPath","features":[506,376]},{"name":"PKEY_LocationEmptyString","features":[506,376]},{"name":"PKEY_LowKeywords","features":[506,376]},{"name":"PKEY_MIMEType","features":[506,376]},{"name":"PKEY_Media_AuthorUrl","features":[506,376]},{"name":"PKEY_Media_AverageLevel","features":[506,376]},{"name":"PKEY_Media_ClassPrimaryID","features":[506,376]},{"name":"PKEY_Media_ClassSecondaryID","features":[506,376]},{"name":"PKEY_Media_CollectionGroupID","features":[506,376]},{"name":"PKEY_Media_CollectionID","features":[506,376]},{"name":"PKEY_Media_ContentDistributor","features":[506,376]},{"name":"PKEY_Media_ContentID","features":[506,376]},{"name":"PKEY_Media_CreatorApplication","features":[506,376]},{"name":"PKEY_Media_CreatorApplicationVersion","features":[506,376]},{"name":"PKEY_Media_DVDID","features":[506,376]},{"name":"PKEY_Media_DateEncoded","features":[506,376]},{"name":"PKEY_Media_DateReleased","features":[506,376]},{"name":"PKEY_Media_DlnaProfileID","features":[506,376]},{"name":"PKEY_Media_Duration","features":[506,376]},{"name":"PKEY_Media_EncodedBy","features":[506,376]},{"name":"PKEY_Media_EncodingSettings","features":[506,376]},{"name":"PKEY_Media_EpisodeNumber","features":[506,376]},{"name":"PKEY_Media_FrameCount","features":[506,376]},{"name":"PKEY_Media_MCDI","features":[506,376]},{"name":"PKEY_Media_MetadataContentProvider","features":[506,376]},{"name":"PKEY_Media_Producer","features":[506,376]},{"name":"PKEY_Media_PromotionUrl","features":[506,376]},{"name":"PKEY_Media_ProtectionType","features":[506,376]},{"name":"PKEY_Media_ProviderRating","features":[506,376]},{"name":"PKEY_Media_ProviderStyle","features":[506,376]},{"name":"PKEY_Media_Publisher","features":[506,376]},{"name":"PKEY_Media_SeasonNumber","features":[506,376]},{"name":"PKEY_Media_SeriesName","features":[506,376]},{"name":"PKEY_Media_SubTitle","features":[506,376]},{"name":"PKEY_Media_SubscriptionContentId","features":[506,376]},{"name":"PKEY_Media_ThumbnailLargePath","features":[506,376]},{"name":"PKEY_Media_ThumbnailLargeUri","features":[506,376]},{"name":"PKEY_Media_ThumbnailSmallPath","features":[506,376]},{"name":"PKEY_Media_ThumbnailSmallUri","features":[506,376]},{"name":"PKEY_Media_UniqueFileIdentifier","features":[506,376]},{"name":"PKEY_Media_UserNoAutoInfo","features":[506,376]},{"name":"PKEY_Media_UserWebUrl","features":[506,376]},{"name":"PKEY_Media_Writer","features":[506,376]},{"name":"PKEY_Media_Year","features":[506,376]},{"name":"PKEY_MediumKeywords","features":[506,376]},{"name":"PKEY_Message_AttachmentContents","features":[506,376]},{"name":"PKEY_Message_AttachmentNames","features":[506,376]},{"name":"PKEY_Message_BccAddress","features":[506,376]},{"name":"PKEY_Message_BccName","features":[506,376]},{"name":"PKEY_Message_CcAddress","features":[506,376]},{"name":"PKEY_Message_CcName","features":[506,376]},{"name":"PKEY_Message_ConversationID","features":[506,376]},{"name":"PKEY_Message_ConversationIndex","features":[506,376]},{"name":"PKEY_Message_DateReceived","features":[506,376]},{"name":"PKEY_Message_DateSent","features":[506,376]},{"name":"PKEY_Message_Flags","features":[506,376]},{"name":"PKEY_Message_FromAddress","features":[506,376]},{"name":"PKEY_Message_FromName","features":[506,376]},{"name":"PKEY_Message_HasAttachments","features":[506,376]},{"name":"PKEY_Message_IsFwdOrReply","features":[506,376]},{"name":"PKEY_Message_MessageClass","features":[506,376]},{"name":"PKEY_Message_Participants","features":[506,376]},{"name":"PKEY_Message_ProofInProgress","features":[506,376]},{"name":"PKEY_Message_SenderAddress","features":[506,376]},{"name":"PKEY_Message_SenderName","features":[506,376]},{"name":"PKEY_Message_Store","features":[506,376]},{"name":"PKEY_Message_ToAddress","features":[506,376]},{"name":"PKEY_Message_ToDoFlags","features":[506,376]},{"name":"PKEY_Message_ToDoTitle","features":[506,376]},{"name":"PKEY_Message_ToName","features":[506,376]},{"name":"PKEY_MileageInformation","features":[506,376]},{"name":"PKEY_MsGraph_CompositeId","features":[506,376]},{"name":"PKEY_MsGraph_DriveId","features":[506,376]},{"name":"PKEY_MsGraph_ItemId","features":[506,376]},{"name":"PKEY_MsGraph_RecommendationReason","features":[506,376]},{"name":"PKEY_MsGraph_RecommendationReferenceId","features":[506,376]},{"name":"PKEY_MsGraph_RecommendationResultSourceId","features":[506,376]},{"name":"PKEY_MsGraph_WebAccountId","features":[506,376]},{"name":"PKEY_Music_AlbumArtist","features":[506,376]},{"name":"PKEY_Music_AlbumArtistSortOverride","features":[506,376]},{"name":"PKEY_Music_AlbumID","features":[506,376]},{"name":"PKEY_Music_AlbumTitle","features":[506,376]},{"name":"PKEY_Music_AlbumTitleSortOverride","features":[506,376]},{"name":"PKEY_Music_Artist","features":[506,376]},{"name":"PKEY_Music_ArtistSortOverride","features":[506,376]},{"name":"PKEY_Music_BeatsPerMinute","features":[506,376]},{"name":"PKEY_Music_Composer","features":[506,376]},{"name":"PKEY_Music_ComposerSortOverride","features":[506,376]},{"name":"PKEY_Music_Conductor","features":[506,376]},{"name":"PKEY_Music_ContentGroupDescription","features":[506,376]},{"name":"PKEY_Music_DiscNumber","features":[506,376]},{"name":"PKEY_Music_DisplayArtist","features":[506,376]},{"name":"PKEY_Music_Genre","features":[506,376]},{"name":"PKEY_Music_InitialKey","features":[506,376]},{"name":"PKEY_Music_IsCompilation","features":[506,376]},{"name":"PKEY_Music_Lyrics","features":[506,376]},{"name":"PKEY_Music_Mood","features":[506,376]},{"name":"PKEY_Music_PartOfSet","features":[506,376]},{"name":"PKEY_Music_Period","features":[506,376]},{"name":"PKEY_Music_SynchronizedLyrics","features":[506,376]},{"name":"PKEY_Music_TrackNumber","features":[506,376]},{"name":"PKEY_NamespaceCLSID","features":[506,376]},{"name":"PKEY_Note_Color","features":[506,376]},{"name":"PKEY_Note_ColorText","features":[506,376]},{"name":"PKEY_Null","features":[506,376]},{"name":"PKEY_OfflineAvailability","features":[506,376]},{"name":"PKEY_OfflineStatus","features":[506,376]},{"name":"PKEY_OriginalFileName","features":[506,376]},{"name":"PKEY_OwnerSID","features":[506,376]},{"name":"PKEY_ParentalRating","features":[506,376]},{"name":"PKEY_ParentalRatingReason","features":[506,376]},{"name":"PKEY_ParentalRatingsOrganization","features":[506,376]},{"name":"PKEY_ParsingBindContext","features":[506,376]},{"name":"PKEY_ParsingName","features":[506,376]},{"name":"PKEY_ParsingPath","features":[506,376]},{"name":"PKEY_PerceivedType","features":[506,376]},{"name":"PKEY_PercentFull","features":[506,376]},{"name":"PKEY_Photo_Aperture","features":[506,376]},{"name":"PKEY_Photo_ApertureDenominator","features":[506,376]},{"name":"PKEY_Photo_ApertureNumerator","features":[506,376]},{"name":"PKEY_Photo_Brightness","features":[506,376]},{"name":"PKEY_Photo_BrightnessDenominator","features":[506,376]},{"name":"PKEY_Photo_BrightnessNumerator","features":[506,376]},{"name":"PKEY_Photo_CameraManufacturer","features":[506,376]},{"name":"PKEY_Photo_CameraModel","features":[506,376]},{"name":"PKEY_Photo_CameraSerialNumber","features":[506,376]},{"name":"PKEY_Photo_Contrast","features":[506,376]},{"name":"PKEY_Photo_ContrastText","features":[506,376]},{"name":"PKEY_Photo_DateTaken","features":[506,376]},{"name":"PKEY_Photo_DigitalZoom","features":[506,376]},{"name":"PKEY_Photo_DigitalZoomDenominator","features":[506,376]},{"name":"PKEY_Photo_DigitalZoomNumerator","features":[506,376]},{"name":"PKEY_Photo_EXIFVersion","features":[506,376]},{"name":"PKEY_Photo_Event","features":[506,376]},{"name":"PKEY_Photo_ExposureBias","features":[506,376]},{"name":"PKEY_Photo_ExposureBiasDenominator","features":[506,376]},{"name":"PKEY_Photo_ExposureBiasNumerator","features":[506,376]},{"name":"PKEY_Photo_ExposureIndex","features":[506,376]},{"name":"PKEY_Photo_ExposureIndexDenominator","features":[506,376]},{"name":"PKEY_Photo_ExposureIndexNumerator","features":[506,376]},{"name":"PKEY_Photo_ExposureProgram","features":[506,376]},{"name":"PKEY_Photo_ExposureProgramText","features":[506,376]},{"name":"PKEY_Photo_ExposureTime","features":[506,376]},{"name":"PKEY_Photo_ExposureTimeDenominator","features":[506,376]},{"name":"PKEY_Photo_ExposureTimeNumerator","features":[506,376]},{"name":"PKEY_Photo_FNumber","features":[506,376]},{"name":"PKEY_Photo_FNumberDenominator","features":[506,376]},{"name":"PKEY_Photo_FNumberNumerator","features":[506,376]},{"name":"PKEY_Photo_Flash","features":[506,376]},{"name":"PKEY_Photo_FlashEnergy","features":[506,376]},{"name":"PKEY_Photo_FlashEnergyDenominator","features":[506,376]},{"name":"PKEY_Photo_FlashEnergyNumerator","features":[506,376]},{"name":"PKEY_Photo_FlashManufacturer","features":[506,376]},{"name":"PKEY_Photo_FlashModel","features":[506,376]},{"name":"PKEY_Photo_FlashText","features":[506,376]},{"name":"PKEY_Photo_FocalLength","features":[506,376]},{"name":"PKEY_Photo_FocalLengthDenominator","features":[506,376]},{"name":"PKEY_Photo_FocalLengthInFilm","features":[506,376]},{"name":"PKEY_Photo_FocalLengthNumerator","features":[506,376]},{"name":"PKEY_Photo_FocalPlaneXResolution","features":[506,376]},{"name":"PKEY_Photo_FocalPlaneXResolutionDenominator","features":[506,376]},{"name":"PKEY_Photo_FocalPlaneXResolutionNumerator","features":[506,376]},{"name":"PKEY_Photo_FocalPlaneYResolution","features":[506,376]},{"name":"PKEY_Photo_FocalPlaneYResolutionDenominator","features":[506,376]},{"name":"PKEY_Photo_FocalPlaneYResolutionNumerator","features":[506,376]},{"name":"PKEY_Photo_GainControl","features":[506,376]},{"name":"PKEY_Photo_GainControlDenominator","features":[506,376]},{"name":"PKEY_Photo_GainControlNumerator","features":[506,376]},{"name":"PKEY_Photo_GainControlText","features":[506,376]},{"name":"PKEY_Photo_ISOSpeed","features":[506,376]},{"name":"PKEY_Photo_LensManufacturer","features":[506,376]},{"name":"PKEY_Photo_LensModel","features":[506,376]},{"name":"PKEY_Photo_LightSource","features":[506,376]},{"name":"PKEY_Photo_MakerNote","features":[506,376]},{"name":"PKEY_Photo_MakerNoteOffset","features":[506,376]},{"name":"PKEY_Photo_MaxAperture","features":[506,376]},{"name":"PKEY_Photo_MaxApertureDenominator","features":[506,376]},{"name":"PKEY_Photo_MaxApertureNumerator","features":[506,376]},{"name":"PKEY_Photo_MeteringMode","features":[506,376]},{"name":"PKEY_Photo_MeteringModeText","features":[506,376]},{"name":"PKEY_Photo_Orientation","features":[506,376]},{"name":"PKEY_Photo_OrientationText","features":[506,376]},{"name":"PKEY_Photo_PeopleNames","features":[506,376]},{"name":"PKEY_Photo_PhotometricInterpretation","features":[506,376]},{"name":"PKEY_Photo_PhotometricInterpretationText","features":[506,376]},{"name":"PKEY_Photo_ProgramMode","features":[506,376]},{"name":"PKEY_Photo_ProgramModeText","features":[506,376]},{"name":"PKEY_Photo_RelatedSoundFile","features":[506,376]},{"name":"PKEY_Photo_Saturation","features":[506,376]},{"name":"PKEY_Photo_SaturationText","features":[506,376]},{"name":"PKEY_Photo_Sharpness","features":[506,376]},{"name":"PKEY_Photo_SharpnessText","features":[506,376]},{"name":"PKEY_Photo_ShutterSpeed","features":[506,376]},{"name":"PKEY_Photo_ShutterSpeedDenominator","features":[506,376]},{"name":"PKEY_Photo_ShutterSpeedNumerator","features":[506,376]},{"name":"PKEY_Photo_SubjectDistance","features":[506,376]},{"name":"PKEY_Photo_SubjectDistanceDenominator","features":[506,376]},{"name":"PKEY_Photo_SubjectDistanceNumerator","features":[506,376]},{"name":"PKEY_Photo_TagViewAggregate","features":[506,376]},{"name":"PKEY_Photo_TranscodedForSync","features":[506,376]},{"name":"PKEY_Photo_WhiteBalance","features":[506,376]},{"name":"PKEY_Photo_WhiteBalanceText","features":[506,376]},{"name":"PKEY_Priority","features":[506,376]},{"name":"PKEY_PriorityText","features":[506,376]},{"name":"PKEY_Project","features":[506,376]},{"name":"PKEY_PropGroup_Advanced","features":[506,376]},{"name":"PKEY_PropGroup_Audio","features":[506,376]},{"name":"PKEY_PropGroup_Calendar","features":[506,376]},{"name":"PKEY_PropGroup_Camera","features":[506,376]},{"name":"PKEY_PropGroup_Contact","features":[506,376]},{"name":"PKEY_PropGroup_Content","features":[506,376]},{"name":"PKEY_PropGroup_Description","features":[506,376]},{"name":"PKEY_PropGroup_FileSystem","features":[506,376]},{"name":"PKEY_PropGroup_GPS","features":[506,376]},{"name":"PKEY_PropGroup_General","features":[506,376]},{"name":"PKEY_PropGroup_Image","features":[506,376]},{"name":"PKEY_PropGroup_Media","features":[506,376]},{"name":"PKEY_PropGroup_MediaAdvanced","features":[506,376]},{"name":"PKEY_PropGroup_Message","features":[506,376]},{"name":"PKEY_PropGroup_Music","features":[506,376]},{"name":"PKEY_PropGroup_Origin","features":[506,376]},{"name":"PKEY_PropGroup_PhotoAdvanced","features":[506,376]},{"name":"PKEY_PropGroup_RecordedTV","features":[506,376]},{"name":"PKEY_PropGroup_Video","features":[506,376]},{"name":"PKEY_PropList_ConflictPrompt","features":[506,376]},{"name":"PKEY_PropList_ContentViewModeForBrowse","features":[506,376]},{"name":"PKEY_PropList_ContentViewModeForSearch","features":[506,376]},{"name":"PKEY_PropList_ExtendedTileInfo","features":[506,376]},{"name":"PKEY_PropList_FileOperationPrompt","features":[506,376]},{"name":"PKEY_PropList_FullDetails","features":[506,376]},{"name":"PKEY_PropList_InfoTip","features":[506,376]},{"name":"PKEY_PropList_NonPersonal","features":[506,376]},{"name":"PKEY_PropList_PreviewDetails","features":[506,376]},{"name":"PKEY_PropList_PreviewTitle","features":[506,376]},{"name":"PKEY_PropList_QuickTip","features":[506,376]},{"name":"PKEY_PropList_TileInfo","features":[506,376]},{"name":"PKEY_PropList_XPDetailsPanel","features":[506,376]},{"name":"PKEY_ProviderItemID","features":[506,376]},{"name":"PKEY_Rating","features":[506,376]},{"name":"PKEY_RatingText","features":[506,376]},{"name":"PKEY_RecordedTV_ChannelNumber","features":[506,376]},{"name":"PKEY_RecordedTV_Credits","features":[506,376]},{"name":"PKEY_RecordedTV_DateContentExpires","features":[506,376]},{"name":"PKEY_RecordedTV_EpisodeName","features":[506,376]},{"name":"PKEY_RecordedTV_IsATSCContent","features":[506,376]},{"name":"PKEY_RecordedTV_IsClosedCaptioningAvailable","features":[506,376]},{"name":"PKEY_RecordedTV_IsDTVContent","features":[506,376]},{"name":"PKEY_RecordedTV_IsHDContent","features":[506,376]},{"name":"PKEY_RecordedTV_IsRepeatBroadcast","features":[506,376]},{"name":"PKEY_RecordedTV_IsSAP","features":[506,376]},{"name":"PKEY_RecordedTV_NetworkAffiliation","features":[506,376]},{"name":"PKEY_RecordedTV_OriginalBroadcastDate","features":[506,376]},{"name":"PKEY_RecordedTV_ProgramDescription","features":[506,376]},{"name":"PKEY_RecordedTV_RecordingTime","features":[506,376]},{"name":"PKEY_RecordedTV_StationCallSign","features":[506,376]},{"name":"PKEY_RecordedTV_StationName","features":[506,376]},{"name":"PKEY_RemoteConflictingFile","features":[506,376]},{"name":"PKEY_SFGAOFlags","features":[506,376]},{"name":"PKEY_Search_AutoSummary","features":[506,376]},{"name":"PKEY_Search_ContainerHash","features":[506,376]},{"name":"PKEY_Search_Contents","features":[506,376]},{"name":"PKEY_Search_EntryID","features":[506,376]},{"name":"PKEY_Search_ExtendedProperties","features":[506,376]},{"name":"PKEY_Search_GatherTime","features":[506,376]},{"name":"PKEY_Search_HitCount","features":[506,376]},{"name":"PKEY_Search_IsClosedDirectory","features":[506,376]},{"name":"PKEY_Search_IsFullyContained","features":[506,376]},{"name":"PKEY_Search_QueryFocusedSummary","features":[506,376]},{"name":"PKEY_Search_QueryFocusedSummaryWithFallback","features":[506,376]},{"name":"PKEY_Search_QueryPropertyHits","features":[506,376]},{"name":"PKEY_Search_Rank","features":[506,376]},{"name":"PKEY_Search_Store","features":[506,376]},{"name":"PKEY_Search_UrlToIndex","features":[506,376]},{"name":"PKEY_Search_UrlToIndexWithModificationTime","features":[506,376]},{"name":"PKEY_Security_AllowedEnterpriseDataProtectionIdentities","features":[506,376]},{"name":"PKEY_Security_EncryptionOwners","features":[506,376]},{"name":"PKEY_Security_EncryptionOwnersDisplay","features":[506,376]},{"name":"PKEY_Sensitivity","features":[506,376]},{"name":"PKEY_SensitivityText","features":[506,376]},{"name":"PKEY_ShareUserRating","features":[506,376]},{"name":"PKEY_SharedWith","features":[506,376]},{"name":"PKEY_SharingStatus","features":[506,376]},{"name":"PKEY_Shell_OmitFromView","features":[506,376]},{"name":"PKEY_Shell_SFGAOFlagsStrings","features":[506,376]},{"name":"PKEY_SimpleRating","features":[506,376]},{"name":"PKEY_Size","features":[506,376]},{"name":"PKEY_SoftwareUsed","features":[506,376]},{"name":"PKEY_Software_DateLastUsed","features":[506,376]},{"name":"PKEY_Software_ProductName","features":[506,376]},{"name":"PKEY_SourceItem","features":[506,376]},{"name":"PKEY_SourcePackageFamilyName","features":[506,376]},{"name":"PKEY_StartDate","features":[506,376]},{"name":"PKEY_Status","features":[506,376]},{"name":"PKEY_StatusBarSelectedItemCount","features":[506,376]},{"name":"PKEY_StatusBarViewItemCount","features":[506,376]},{"name":"PKEY_StorageProviderCallerVersionInformation","features":[506,376]},{"name":"PKEY_StorageProviderError","features":[506,376]},{"name":"PKEY_StorageProviderFileChecksum","features":[506,376]},{"name":"PKEY_StorageProviderFileCreatedBy","features":[506,376]},{"name":"PKEY_StorageProviderFileFlags","features":[506,376]},{"name":"PKEY_StorageProviderFileHasConflict","features":[506,376]},{"name":"PKEY_StorageProviderFileIdentifier","features":[506,376]},{"name":"PKEY_StorageProviderFileModifiedBy","features":[506,376]},{"name":"PKEY_StorageProviderFileRemoteUri","features":[506,376]},{"name":"PKEY_StorageProviderFileVersion","features":[506,376]},{"name":"PKEY_StorageProviderFileVersionWaterline","features":[506,376]},{"name":"PKEY_StorageProviderId","features":[506,376]},{"name":"PKEY_StorageProviderShareStatuses","features":[506,376]},{"name":"PKEY_StorageProviderSharingStatus","features":[506,376]},{"name":"PKEY_StorageProviderState","features":[506,376]},{"name":"PKEY_StorageProviderStatus","features":[506,376]},{"name":"PKEY_StorageProviderTransferProgress","features":[506,376]},{"name":"PKEY_StorageProviderUIStatus","features":[506,376]},{"name":"PKEY_Storage_Portable","features":[506,376]},{"name":"PKEY_Storage_RemovableMedia","features":[506,376]},{"name":"PKEY_Storage_SystemCritical","features":[506,376]},{"name":"PKEY_Subject","features":[506,376]},{"name":"PKEY_Supplemental_Album","features":[506,376]},{"name":"PKEY_Supplemental_AlbumID","features":[506,376]},{"name":"PKEY_Supplemental_Location","features":[506,376]},{"name":"PKEY_Supplemental_Person","features":[506,376]},{"name":"PKEY_Supplemental_ResourceId","features":[506,376]},{"name":"PKEY_Supplemental_Tag","features":[506,376]},{"name":"PKEY_SyncTransferStatus","features":[506,376]},{"name":"PKEY_Sync_Comments","features":[506,376]},{"name":"PKEY_Sync_ConflictDescription","features":[506,376]},{"name":"PKEY_Sync_ConflictFirstLocation","features":[506,376]},{"name":"PKEY_Sync_ConflictSecondLocation","features":[506,376]},{"name":"PKEY_Sync_HandlerCollectionID","features":[506,376]},{"name":"PKEY_Sync_HandlerID","features":[506,376]},{"name":"PKEY_Sync_HandlerName","features":[506,376]},{"name":"PKEY_Sync_HandlerType","features":[506,376]},{"name":"PKEY_Sync_HandlerTypeLabel","features":[506,376]},{"name":"PKEY_Sync_ItemID","features":[506,376]},{"name":"PKEY_Sync_ItemName","features":[506,376]},{"name":"PKEY_Sync_ProgressPercentage","features":[506,376]},{"name":"PKEY_Sync_State","features":[506,376]},{"name":"PKEY_Sync_Status","features":[506,376]},{"name":"PKEY_Task_BillingInformation","features":[506,376]},{"name":"PKEY_Task_CompletionStatus","features":[506,376]},{"name":"PKEY_Task_Owner","features":[506,376]},{"name":"PKEY_Thumbnail","features":[506,376]},{"name":"PKEY_ThumbnailCacheId","features":[506,376]},{"name":"PKEY_ThumbnailStream","features":[506,376]},{"name":"PKEY_Title","features":[506,376]},{"name":"PKEY_TitleSortOverride","features":[506,376]},{"name":"PKEY_TotalFileSize","features":[506,376]},{"name":"PKEY_Trademarks","features":[506,376]},{"name":"PKEY_TransferOrder","features":[506,376]},{"name":"PKEY_TransferPosition","features":[506,376]},{"name":"PKEY_TransferSize","features":[506,376]},{"name":"PKEY_Video_Compression","features":[506,376]},{"name":"PKEY_Video_Director","features":[506,376]},{"name":"PKEY_Video_EncodingBitrate","features":[506,376]},{"name":"PKEY_Video_FourCC","features":[506,376]},{"name":"PKEY_Video_FrameHeight","features":[506,376]},{"name":"PKEY_Video_FrameRate","features":[506,376]},{"name":"PKEY_Video_FrameWidth","features":[506,376]},{"name":"PKEY_Video_HorizontalAspectRatio","features":[506,376]},{"name":"PKEY_Video_IsSpherical","features":[506,376]},{"name":"PKEY_Video_IsStereo","features":[506,376]},{"name":"PKEY_Video_Orientation","features":[506,376]},{"name":"PKEY_Video_SampleSize","features":[506,376]},{"name":"PKEY_Video_StreamName","features":[506,376]},{"name":"PKEY_Video_StreamNumber","features":[506,376]},{"name":"PKEY_Video_TotalBitrate","features":[506,376]},{"name":"PKEY_Video_TranscodedForSync","features":[506,376]},{"name":"PKEY_Video_VerticalAspectRatio","features":[506,376]},{"name":"PKEY_VolumeId","features":[506,376]},{"name":"PKEY_Volume_FileSystem","features":[506,376]},{"name":"PKEY_Volume_IsMappedDrive","features":[506,376]},{"name":"PKEY_Volume_IsRoot","features":[506,376]},{"name":"PKEY_ZoneIdentifier","features":[506,376]},{"name":"PLAYBACKSTATE_NOMEDIA","features":[506]},{"name":"PLAYBACKSTATE_PAUSED","features":[506]},{"name":"PLAYBACKSTATE_PLAYING","features":[506]},{"name":"PLAYBACKSTATE_RECORDING","features":[506]},{"name":"PLAYBACKSTATE_RECORDINGPAUSED","features":[506]},{"name":"PLAYBACKSTATE_STOPPED","features":[506]},{"name":"PLAYBACKSTATE_TRANSITIONING","features":[506]},{"name":"PLAYBACKSTATE_UNKNOWN","features":[506]},{"name":"RATING_FIVE_STARS_MAX","features":[506]},{"name":"RATING_FIVE_STARS_MIN","features":[506]},{"name":"RATING_FIVE_STARS_SET","features":[506]},{"name":"RATING_FOUR_STARS_MAX","features":[506]},{"name":"RATING_FOUR_STARS_MIN","features":[506]},{"name":"RATING_FOUR_STARS_SET","features":[506]},{"name":"RATING_ONE_STAR_MAX","features":[506]},{"name":"RATING_ONE_STAR_MIN","features":[506]},{"name":"RATING_ONE_STAR_SET","features":[506]},{"name":"RATING_THREE_STARS_MAX","features":[506]},{"name":"RATING_THREE_STARS_MIN","features":[506]},{"name":"RATING_THREE_STARS_SET","features":[506]},{"name":"RATING_TWO_STARS_MAX","features":[506]},{"name":"RATING_TWO_STARS_MIN","features":[506]},{"name":"RATING_TWO_STARS_SET","features":[506]},{"name":"SFGAOSTR_BROWSABLE","features":[506]},{"name":"SFGAOSTR_FILEANC","features":[506]},{"name":"SFGAOSTR_FILESYS","features":[506]},{"name":"SFGAOSTR_FOLDER","features":[506]},{"name":"SFGAOSTR_HIDDEN","features":[506]},{"name":"SFGAOSTR_LINK","features":[506]},{"name":"SFGAOSTR_NONENUM","features":[506]},{"name":"SFGAOSTR_PLACEHOLDER","features":[506]},{"name":"SFGAOSTR_STORAGEANC","features":[506]},{"name":"SFGAOSTR_STREAM","features":[506]},{"name":"SFGAOSTR_SUPERHIDDEN","features":[506]},{"name":"SFGAOSTR_SYSTEM","features":[506]},{"name":"SHARINGSTATUS_NOTSHARED","features":[506]},{"name":"SHARINGSTATUS_PRIVATE","features":[506]},{"name":"SHARINGSTATUS_SHARED","features":[506]},{"name":"SILO_INFO","features":[506]},{"name":"STORAGEPROVIDERSTATE_ERROR","features":[506]},{"name":"STORAGEPROVIDERSTATE_EXCLUDED","features":[506]},{"name":"STORAGEPROVIDERSTATE_IN_SYNC","features":[506]},{"name":"STORAGEPROVIDERSTATE_NONE","features":[506]},{"name":"STORAGEPROVIDERSTATE_PENDING_DOWNLOAD","features":[506]},{"name":"STORAGEPROVIDERSTATE_PENDING_UNSPECIFIED","features":[506]},{"name":"STORAGEPROVIDERSTATE_PENDING_UPLOAD","features":[506]},{"name":"STORAGEPROVIDERSTATE_PINNED","features":[506]},{"name":"STORAGEPROVIDERSTATE_SPARSE","features":[506]},{"name":"STORAGEPROVIDERSTATE_TRANSFERRING","features":[506]},{"name":"STORAGEPROVIDERSTATE_WARNING","features":[506]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_GROUP","features":[506]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_OWNER","features":[506]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_PRIVATE","features":[506]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_PUBLIC","features":[506]},{"name":"STORAGE_PROVIDER_SHARE_STATUS_SHARED","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_NOTSHARED","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PRIVATE","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PUBLIC","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PUBLIC_COOWNED","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_PUBLIC_OWNED","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_SHARED","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_SHARED_COOWNED","features":[506]},{"name":"STORAGE_PROVIDER_SHARINGSTATUS_SHARED_OWNED","features":[506]},{"name":"SYNC_HANDLERTYPE_COMPUTERS","features":[506]},{"name":"SYNC_HANDLERTYPE_DEVICES","features":[506]},{"name":"SYNC_HANDLERTYPE_FOLDERS","features":[506]},{"name":"SYNC_HANDLERTYPE_OTHER","features":[506]},{"name":"SYNC_HANDLERTYPE_PROGRAMS","features":[506]},{"name":"SYNC_HANDLERTYPE_WEBSERVICES","features":[506]},{"name":"SYNC_STATE_ERROR","features":[506]},{"name":"SYNC_STATE_IDLE","features":[506]},{"name":"SYNC_STATE_NOTSETUP","features":[506]},{"name":"SYNC_STATE_PENDING","features":[506]},{"name":"SYNC_STATE_SYNCING","features":[506]},{"name":"SYNC_STATE_SYNCNOTRUN","features":[506]},{"name":"WPD_CATEGORY_ENHANCED_STORAGE","features":[506]}],"510":[{"name":"BackupCancelled","features":[507]},{"name":"BackupInvalidStopReason","features":[507]},{"name":"BackupLimitUserBusyMachineOnAC","features":[507]},{"name":"BackupLimitUserBusyMachineOnDC","features":[507]},{"name":"BackupLimitUserIdleMachineOnDC","features":[507]},{"name":"FHCFG_E_CONFIGURATION_PREVIOUSLY_LOADED","features":[507]},{"name":"FHCFG_E_CONFIG_ALREADY_EXISTS","features":[507]},{"name":"FHCFG_E_CONFIG_FILE_NOT_FOUND","features":[507]},{"name":"FHCFG_E_CORRUPT_CONFIG_FILE","features":[507]},{"name":"FHCFG_E_INVALID_REHYDRATION_STATE","features":[507]},{"name":"FHCFG_E_LEGACY_BACKUP_NOT_FOUND","features":[507]},{"name":"FHCFG_E_LEGACY_BACKUP_USER_EXCLUDED","features":[507]},{"name":"FHCFG_E_LEGACY_TARGET_UNSUPPORTED","features":[507]},{"name":"FHCFG_E_LEGACY_TARGET_VALIDATION_UNSUPPORTED","features":[507]},{"name":"FHCFG_E_NO_VALID_CONFIGURATION_LOADED","features":[507]},{"name":"FHCFG_E_RECOMMENDATION_CHANGE_NOT_ALLOWED","features":[507]},{"name":"FHCFG_E_TARGET_CANNOT_BE_USED","features":[507]},{"name":"FHCFG_E_TARGET_NOT_CONFIGURED","features":[507]},{"name":"FHCFG_E_TARGET_NOT_CONNECTED","features":[507]},{"name":"FHCFG_E_TARGET_NOT_ENOUGH_FREE_SPACE","features":[507]},{"name":"FHCFG_E_TARGET_REHYDRATED_ELSEWHERE","features":[507]},{"name":"FHCFG_E_TARGET_VERIFICATION_FAILED","features":[507]},{"name":"FHSVC_E_BACKUP_BLOCKED","features":[507]},{"name":"FHSVC_E_CONFIG_DISABLED","features":[507]},{"name":"FHSVC_E_CONFIG_DISABLED_GP","features":[507]},{"name":"FHSVC_E_CONFIG_REHYDRATING","features":[507]},{"name":"FHSVC_E_FATAL_CONFIG_ERROR","features":[507]},{"name":"FHSVC_E_NOT_CONFIGURED","features":[507]},{"name":"FH_ACCESS_DENIED","features":[507]},{"name":"FH_BACKUP_STATUS","features":[507]},{"name":"FH_CURRENT_DEFAULT","features":[507]},{"name":"FH_DEVICE_VALIDATION_RESULT","features":[507]},{"name":"FH_DRIVE_FIXED","features":[507]},{"name":"FH_DRIVE_REMOTE","features":[507]},{"name":"FH_DRIVE_REMOVABLE","features":[507]},{"name":"FH_DRIVE_UNKNOWN","features":[507]},{"name":"FH_FOLDER","features":[507]},{"name":"FH_FREQUENCY","features":[507]},{"name":"FH_INVALID_DRIVE_TYPE","features":[507]},{"name":"FH_LIBRARY","features":[507]},{"name":"FH_LOCAL_POLICY_TYPE","features":[507]},{"name":"FH_NAMESPACE_EXISTS","features":[507]},{"name":"FH_PROTECTED_ITEM_CATEGORY","features":[507]},{"name":"FH_READ_ONLY_PERMISSION","features":[507]},{"name":"FH_RETENTION_AGE","features":[507]},{"name":"FH_RETENTION_AGE_BASED","features":[507]},{"name":"FH_RETENTION_DISABLED","features":[507]},{"name":"FH_RETENTION_TYPE","features":[507]},{"name":"FH_RETENTION_TYPES","features":[507]},{"name":"FH_RETENTION_UNLIMITED","features":[507]},{"name":"FH_SERVICE_PIPE_HANDLE","features":[507]},{"name":"FH_STATE_BACKUP_NOT_SUPPORTED","features":[507]},{"name":"FH_STATE_DISABLED_BY_GP","features":[507]},{"name":"FH_STATE_FATAL_CONFIG_ERROR","features":[507]},{"name":"FH_STATE_MIGRATING","features":[507]},{"name":"FH_STATE_NOT_TRACKED","features":[507]},{"name":"FH_STATE_NO_ERROR","features":[507]},{"name":"FH_STATE_OFF","features":[507]},{"name":"FH_STATE_REHYDRATING","features":[507]},{"name":"FH_STATE_RUNNING","features":[507]},{"name":"FH_STATE_STAGING_FULL","features":[507]},{"name":"FH_STATE_TARGET_ABSENT","features":[507]},{"name":"FH_STATE_TARGET_ACCESS_DENIED","features":[507]},{"name":"FH_STATE_TARGET_FS_LIMITATION","features":[507]},{"name":"FH_STATE_TARGET_FULL","features":[507]},{"name":"FH_STATE_TARGET_FULL_RETENTION_MAX","features":[507]},{"name":"FH_STATE_TARGET_LOW_SPACE","features":[507]},{"name":"FH_STATE_TARGET_LOW_SPACE_RETENTION_MAX","features":[507]},{"name":"FH_STATE_TARGET_VOLUME_DIRTY","features":[507]},{"name":"FH_STATE_TOO_MUCH_BEHIND","features":[507]},{"name":"FH_STATUS_DISABLED","features":[507]},{"name":"FH_STATUS_DISABLED_BY_GP","features":[507]},{"name":"FH_STATUS_ENABLED","features":[507]},{"name":"FH_STATUS_REHYDRATING","features":[507]},{"name":"FH_TARGET_DRIVE_TYPE","features":[507]},{"name":"FH_TARGET_DRIVE_TYPES","features":[507]},{"name":"FH_TARGET_NAME","features":[507]},{"name":"FH_TARGET_PART_OF_LIBRARY","features":[507]},{"name":"FH_TARGET_PROPERTY_TYPE","features":[507]},{"name":"FH_TARGET_URL","features":[507]},{"name":"FH_VALID_TARGET","features":[507]},{"name":"FhBackupStopReason","features":[507]},{"name":"FhConfigMgr","features":[507]},{"name":"FhReassociation","features":[507]},{"name":"FhServiceBlockBackup","features":[507]},{"name":"FhServiceClosePipe","features":[507]},{"name":"FhServiceOpenPipe","features":[305,507]},{"name":"FhServiceReloadConfiguration","features":[507]},{"name":"FhServiceStartBackup","features":[305,507]},{"name":"FhServiceStopBackup","features":[305,507]},{"name":"FhServiceUnblockBackup","features":[507]},{"name":"IFhConfigMgr","features":[507]},{"name":"IFhReassociation","features":[507]},{"name":"IFhScopeIterator","features":[507]},{"name":"IFhTarget","features":[507]},{"name":"MAX_BACKUP_STATUS","features":[507]},{"name":"MAX_LOCAL_POLICY","features":[507]},{"name":"MAX_PROTECTED_ITEM_CATEGORY","features":[507]},{"name":"MAX_RETENTION_TYPE","features":[507]},{"name":"MAX_TARGET_PROPERTY","features":[507]},{"name":"MAX_VALIDATION_RESULT","features":[507]}],"511":[{"name":"AdSyncTask","features":[508]},{"name":"AdrClientDisplayFlags","features":[508]},{"name":"AdrClientDisplayFlags_AllowEmailRequests","features":[508]},{"name":"AdrClientDisplayFlags_ShowDeviceTroubleshooting","features":[508]},{"name":"AdrClientErrorType","features":[508]},{"name":"AdrClientErrorType_AccessDenied","features":[508]},{"name":"AdrClientErrorType_FileNotFound","features":[508]},{"name":"AdrClientErrorType_Unknown","features":[508]},{"name":"AdrClientFlags","features":[508]},{"name":"AdrClientFlags_FailForLocalPaths","features":[508]},{"name":"AdrClientFlags_FailIfNotDomainJoined","features":[508]},{"name":"AdrClientFlags_FailIfNotSupportedByServer","features":[508]},{"name":"AdrClientFlags_None","features":[508]},{"name":"AdrEmailFlags","features":[508]},{"name":"AdrEmailFlags_GenerateEventLog","features":[508]},{"name":"AdrEmailFlags_IncludeDeviceClaims","features":[508]},{"name":"AdrEmailFlags_IncludeUserInfo","features":[508]},{"name":"AdrEmailFlags_PutAdminOnToLine","features":[508]},{"name":"AdrEmailFlags_PutDataOwnerOnToLine","features":[508]},{"name":"DIFsrmClassificationEvents","features":[508,356]},{"name":"FSRM_DISPID_FEATURE_CLASSIFICATION","features":[508]},{"name":"FSRM_DISPID_FEATURE_FILESCREEN","features":[508]},{"name":"FSRM_DISPID_FEATURE_GENERAL","features":[508]},{"name":"FSRM_DISPID_FEATURE_MASK","features":[508]},{"name":"FSRM_DISPID_FEATURE_PIPELINE","features":[508]},{"name":"FSRM_DISPID_FEATURE_QUOTA","features":[508]},{"name":"FSRM_DISPID_FEATURE_REPORTS","features":[508]},{"name":"FSRM_DISPID_INTERFACE_A_MASK","features":[508]},{"name":"FSRM_DISPID_INTERFACE_B_MASK","features":[508]},{"name":"FSRM_DISPID_INTERFACE_C_MASK","features":[508]},{"name":"FSRM_DISPID_INTERFACE_D_MASK","features":[508]},{"name":"FSRM_DISPID_IS_PROPERTY","features":[508]},{"name":"FSRM_DISPID_METHOD_NUM_MASK","features":[508]},{"name":"FSRM_E_ADR_MAX_EMAILS_SENT","features":[508]},{"name":"FSRM_E_ADR_NOT_DOMAIN_JOINED","features":[508]},{"name":"FSRM_E_ADR_PATH_IS_LOCAL","features":[508]},{"name":"FSRM_E_ADR_SRV_NOT_SUPPORTED","features":[508]},{"name":"FSRM_E_ALREADY_EXISTS","features":[508]},{"name":"FSRM_E_AUTO_QUOTA","features":[508]},{"name":"FSRM_E_CACHE_INVALID","features":[508]},{"name":"FSRM_E_CACHE_MODULE_ALREADY_EXISTS","features":[508]},{"name":"FSRM_E_CANNOT_AGGREGATE","features":[508]},{"name":"FSRM_E_CANNOT_ALLOW_REPARSE_POINT_TAG","features":[508]},{"name":"FSRM_E_CANNOT_CHANGE_PROPERTY_TYPE","features":[508]},{"name":"FSRM_E_CANNOT_CREATE_TEMP_COPY","features":[508]},{"name":"FSRM_E_CANNOT_DELETE_SYSTEM_PROPERTY","features":[508]},{"name":"FSRM_E_CANNOT_REMOVE_READONLY","features":[508]},{"name":"FSRM_E_CANNOT_RENAME_PROPERTY","features":[508]},{"name":"FSRM_E_CANNOT_STORE_PROPERTIES","features":[508]},{"name":"FSRM_E_CANNOT_USE_DELETED_PROPERTY","features":[508]},{"name":"FSRM_E_CANNOT_USE_DEPRECATED_PROPERTY","features":[508]},{"name":"FSRM_E_CLASSIFICATION_ALREADY_RUNNING","features":[508]},{"name":"FSRM_E_CLASSIFICATION_CANCELED","features":[508]},{"name":"FSRM_E_CLASSIFICATION_NOT_RUNNING","features":[508]},{"name":"FSRM_E_CLASSIFICATION_PARTIAL_BATCH","features":[508]},{"name":"FSRM_E_CLASSIFICATION_SCAN_FAIL","features":[508]},{"name":"FSRM_E_CLASSIFICATION_TIMEOUT","features":[508]},{"name":"FSRM_E_CLUSTER_NOT_RUNNING","features":[508]},{"name":"FSRM_E_CSC_PATH_NOT_SUPPORTED","features":[508]},{"name":"FSRM_E_DIFFERENT_CLUSTER_GROUP","features":[508]},{"name":"FSRM_E_DRIVER_NOT_READY","features":[508]},{"name":"FSRM_E_DUPLICATE_NAME","features":[508]},{"name":"FSRM_E_EMAIL_NOT_SENT","features":[508]},{"name":"FSRM_E_ENUM_PROPERTIES_FAILED","features":[508]},{"name":"FSRM_E_ERROR_NOT_ENABLED","features":[508]},{"name":"FSRM_E_EXPIRATION_PATH_NOT_WRITEABLE","features":[508]},{"name":"FSRM_E_EXPIRATION_PATH_TOO_LONG","features":[508]},{"name":"FSRM_E_EXPIRATION_VOLUME_NOT_NTFS","features":[508]},{"name":"FSRM_E_FAIL_BATCH","features":[508]},{"name":"FSRM_E_FILE_ENCRYPTED","features":[508]},{"name":"FSRM_E_FILE_IN_USE","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_ACTION_GET_EXITCODE_FAILED","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_ACTION_TIMEOUT","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_EXPIRATION_DIR_IN_SCOPE","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_ALREADY_EXISTS","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_ALREADY_RUNNING","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_CUSTOM","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_DEPRECATED","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_EXPIRATION","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_INVALID_CONTINUOUS_CONFIG","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_MAX_FILE_CONDITIONS","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_NOTIFICATION","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_NOT_LEGACY_ACCESSIBLE","features":[508]},{"name":"FSRM_E_FILE_MANAGEMENT_JOB_RMS","features":[508]},{"name":"FSRM_E_FILE_OPEN_ERROR","features":[508]},{"name":"FSRM_E_FILE_SYSTEM_CORRUPT","features":[508]},{"name":"FSRM_E_INCOMPATIBLE_FORMAT","features":[508]},{"name":"FSRM_E_INPROC_MODULE_BLOCKED","features":[508]},{"name":"FSRM_E_INSECURE_PATH","features":[508]},{"name":"FSRM_E_INSUFFICIENT_DISK","features":[508]},{"name":"FSRM_E_INVALID_AD_CLAIM","features":[508]},{"name":"FSRM_E_INVALID_COMBINATION","features":[508]},{"name":"FSRM_E_INVALID_DATASCREEN_DEFINITION","features":[508]},{"name":"FSRM_E_INVALID_EMAIL_ADDRESS","features":[508]},{"name":"FSRM_E_INVALID_FILEGROUP_DEFINITION","features":[508]},{"name":"FSRM_E_INVALID_FILENAME","features":[508]},{"name":"FSRM_E_INVALID_FOLDER_PROPERTY_STORE","features":[508]},{"name":"FSRM_E_INVALID_IMPORT_VERSION","features":[508]},{"name":"FSRM_E_INVALID_LIMIT","features":[508]},{"name":"FSRM_E_INVALID_NAME","features":[508]},{"name":"FSRM_E_INVALID_PATH","features":[508]},{"name":"FSRM_E_INVALID_REPORT_DESC","features":[508]},{"name":"FSRM_E_INVALID_REPORT_FORMAT","features":[508]},{"name":"FSRM_E_INVALID_SCHEDULER_ARGUMENT","features":[508]},{"name":"FSRM_E_INVALID_SMTP_SERVER","features":[508]},{"name":"FSRM_E_INVALID_TEXT","features":[508]},{"name":"FSRM_E_INVALID_USER","features":[508]},{"name":"FSRM_E_LAST_ACCESS_UPDATE_DISABLED","features":[508]},{"name":"FSRM_E_LEGACY_SCHEDULE","features":[508]},{"name":"FSRM_E_LOADING_DISABLED_MODULE","features":[508]},{"name":"FSRM_E_LONG_CMDLINE","features":[508]},{"name":"FSRM_E_MAX_PROPERTY_DEFINITIONS","features":[508]},{"name":"FSRM_E_MESSAGE_LIMIT_EXCEEDED","features":[508]},{"name":"FSRM_E_MODULE_INITIALIZATION","features":[508]},{"name":"FSRM_E_MODULE_INVALID_PARAM","features":[508]},{"name":"FSRM_E_MODULE_SESSION_INITIALIZATION","features":[508]},{"name":"FSRM_E_MODULE_TIMEOUT","features":[508]},{"name":"FSRM_E_NOT_CLUSTER_VOLUME","features":[508]},{"name":"FSRM_E_NOT_FOUND","features":[508]},{"name":"FSRM_E_NOT_SUPPORTED","features":[508]},{"name":"FSRM_E_NO_EMAIL_ADDRESS","features":[508]},{"name":"FSRM_E_NO_PROPERTY_VALUE","features":[508]},{"name":"FSRM_E_OBJECT_IN_USE","features":[508]},{"name":"FSRM_E_OUT_OF_RANGE","features":[508]},{"name":"FSRM_E_PARTIAL_CLASSIFICATION_PROPERTY_NOT_FOUND","features":[508]},{"name":"FSRM_E_PATH_NOT_FOUND","features":[508]},{"name":"FSRM_E_PATH_NOT_IN_NAMESPACE","features":[508]},{"name":"FSRM_E_PERSIST_PROPERTIES_FAILED","features":[508]},{"name":"FSRM_E_PERSIST_PROPERTIES_FAILED_ENCRYPTED","features":[508]},{"name":"FSRM_E_PROPERTY_DELETED","features":[508]},{"name":"FSRM_E_PROPERTY_MUST_APPLY_TO_FILES","features":[508]},{"name":"FSRM_E_PROPERTY_MUST_APPLY_TO_FOLDERS","features":[508]},{"name":"FSRM_E_PROPERTY_MUST_BE_GLOBAL","features":[508]},{"name":"FSRM_E_PROPERTY_MUST_BE_SECURE","features":[508]},{"name":"FSRM_E_REBUILDING_FODLER_TYPE_INDEX","features":[508]},{"name":"FSRM_E_REPORT_GENERATION_ERR","features":[508]},{"name":"FSRM_E_REPORT_JOB_ALREADY_RUNNING","features":[508]},{"name":"FSRM_E_REPORT_TASK_TRIGGER","features":[508]},{"name":"FSRM_E_REPORT_TYPE_ALREADY_EXISTS","features":[508]},{"name":"FSRM_E_REQD_PARAM_MISSING","features":[508]},{"name":"FSRM_E_RMS_NO_PROTECTORS_INSTALLED","features":[508]},{"name":"FSRM_E_RMS_NO_PROTECTOR_INSTALLED_FOR_FILE","features":[508]},{"name":"FSRM_E_RMS_TEMPLATE_NOT_FOUND","features":[508]},{"name":"FSRM_E_SECURE_PROPERTIES_NOT_SUPPORTED","features":[508]},{"name":"FSRM_E_SET_PROPERTY_FAILED","features":[508]},{"name":"FSRM_E_SHADOW_COPY","features":[508]},{"name":"FSRM_E_STORE_NOT_INSTALLED","features":[508]},{"name":"FSRM_E_SYNC_TASK_HAD_ERRORS","features":[508]},{"name":"FSRM_E_SYNC_TASK_TIMEOUT","features":[508]},{"name":"FSRM_E_TEXTREADER_FILENAME_TOO_LONG","features":[508]},{"name":"FSRM_E_TEXTREADER_IFILTER_CLSID_MALFORMED","features":[508]},{"name":"FSRM_E_TEXTREADER_IFILTER_NOT_FOUND","features":[508]},{"name":"FSRM_E_TEXTREADER_NOT_INITIALIZED","features":[508]},{"name":"FSRM_E_TEXTREADER_STREAM_ERROR","features":[508]},{"name":"FSRM_E_UNEXPECTED","features":[508]},{"name":"FSRM_E_UNSECURE_LINK_TO_HOSTED_MODULE","features":[508]},{"name":"FSRM_E_VOLUME_OFFLINE","features":[508]},{"name":"FSRM_E_VOLUME_UNSUPPORTED","features":[508]},{"name":"FSRM_E_WMI_FAILURE","features":[508]},{"name":"FSRM_E_XML_CORRUPTED","features":[508]},{"name":"FSRM_S_CLASSIFICATION_SCAN_FAILURES","features":[508]},{"name":"FSRM_S_PARTIAL_BATCH","features":[508]},{"name":"FSRM_S_PARTIAL_CLASSIFICATION","features":[508]},{"name":"FsrmAccessDeniedRemediationClient","features":[508]},{"name":"FsrmAccountType","features":[508]},{"name":"FsrmAccountType_Automatic","features":[508]},{"name":"FsrmAccountType_External","features":[508]},{"name":"FsrmAccountType_InProc","features":[508]},{"name":"FsrmAccountType_LocalService","features":[508]},{"name":"FsrmAccountType_LocalSystem","features":[508]},{"name":"FsrmAccountType_NetworkService","features":[508]},{"name":"FsrmAccountType_Unknown","features":[508]},{"name":"FsrmActionType","features":[508]},{"name":"FsrmActionType_Command","features":[508]},{"name":"FsrmActionType_Email","features":[508]},{"name":"FsrmActionType_EventLog","features":[508]},{"name":"FsrmActionType_Report","features":[508]},{"name":"FsrmActionType_Unknown","features":[508]},{"name":"FsrmClassificationLoggingFlags","features":[508]},{"name":"FsrmClassificationLoggingFlags_ClassificationsInLogFile","features":[508]},{"name":"FsrmClassificationLoggingFlags_ClassificationsInSystemLog","features":[508]},{"name":"FsrmClassificationLoggingFlags_ErrorsInLogFile","features":[508]},{"name":"FsrmClassificationLoggingFlags_ErrorsInSystemLog","features":[508]},{"name":"FsrmClassificationLoggingFlags_None","features":[508]},{"name":"FsrmClassificationManager","features":[508]},{"name":"FsrmCollectionState","features":[508]},{"name":"FsrmCollectionState_Cancelled","features":[508]},{"name":"FsrmCollectionState_Committing","features":[508]},{"name":"FsrmCollectionState_Complete","features":[508]},{"name":"FsrmCollectionState_Fetching","features":[508]},{"name":"FsrmCommitOptions","features":[508]},{"name":"FsrmCommitOptions_Asynchronous","features":[508]},{"name":"FsrmCommitOptions_None","features":[508]},{"name":"FsrmDaysNotSpecified","features":[508]},{"name":"FsrmEnumOptions","features":[508]},{"name":"FsrmEnumOptions_Asynchronous","features":[508]},{"name":"FsrmEnumOptions_CheckRecycleBin","features":[508]},{"name":"FsrmEnumOptions_IncludeClusterNodes","features":[508]},{"name":"FsrmEnumOptions_IncludeDeprecatedObjects","features":[508]},{"name":"FsrmEnumOptions_None","features":[508]},{"name":"FsrmEventType","features":[508]},{"name":"FsrmEventType_Error","features":[508]},{"name":"FsrmEventType_Information","features":[508]},{"name":"FsrmEventType_Unknown","features":[508]},{"name":"FsrmEventType_Warning","features":[508]},{"name":"FsrmExecutionOption","features":[508]},{"name":"FsrmExecutionOption_EvaluateUnset","features":[508]},{"name":"FsrmExecutionOption_ReEvaluate_ConsiderExistingValue","features":[508]},{"name":"FsrmExecutionOption_ReEvaluate_IgnoreExistingValue","features":[508]},{"name":"FsrmExecutionOption_Unknown","features":[508]},{"name":"FsrmExportImport","features":[508]},{"name":"FsrmFileConditionType","features":[508]},{"name":"FsrmFileConditionType_Property","features":[508]},{"name":"FsrmFileConditionType_Unknown","features":[508]},{"name":"FsrmFileGroupManager","features":[508]},{"name":"FsrmFileManagementJobManager","features":[508]},{"name":"FsrmFileManagementLoggingFlags","features":[508]},{"name":"FsrmFileManagementLoggingFlags_Audit","features":[508]},{"name":"FsrmFileManagementLoggingFlags_Error","features":[508]},{"name":"FsrmFileManagementLoggingFlags_Information","features":[508]},{"name":"FsrmFileManagementLoggingFlags_None","features":[508]},{"name":"FsrmFileManagementType","features":[508]},{"name":"FsrmFileManagementType_Custom","features":[508]},{"name":"FsrmFileManagementType_Expiration","features":[508]},{"name":"FsrmFileManagementType_Rms","features":[508]},{"name":"FsrmFileManagementType_Unknown","features":[508]},{"name":"FsrmFileScreenFlags","features":[508]},{"name":"FsrmFileScreenFlags_Enforce","features":[508]},{"name":"FsrmFileScreenManager","features":[508]},{"name":"FsrmFileScreenTemplateManager","features":[508]},{"name":"FsrmFileStreamingInterfaceType","features":[508]},{"name":"FsrmFileStreamingInterfaceType_ILockBytes","features":[508]},{"name":"FsrmFileStreamingInterfaceType_IStream","features":[508]},{"name":"FsrmFileStreamingInterfaceType_Unknown","features":[508]},{"name":"FsrmFileStreamingMode","features":[508]},{"name":"FsrmFileStreamingMode_Read","features":[508]},{"name":"FsrmFileStreamingMode_Unknown","features":[508]},{"name":"FsrmFileStreamingMode_Write","features":[508]},{"name":"FsrmFileSystemPropertyId","features":[508]},{"name":"FsrmFileSystemPropertyId_DateCreated","features":[508]},{"name":"FsrmFileSystemPropertyId_DateLastAccessed","features":[508]},{"name":"FsrmFileSystemPropertyId_DateLastModified","features":[508]},{"name":"FsrmFileSystemPropertyId_DateNow","features":[508]},{"name":"FsrmFileSystemPropertyId_FileName","features":[508]},{"name":"FsrmFileSystemPropertyId_Undefined","features":[508]},{"name":"FsrmGetFilePropertyOptions","features":[508]},{"name":"FsrmGetFilePropertyOptions_FailOnPersistErrors","features":[508]},{"name":"FsrmGetFilePropertyOptions_NoRuleEvaluation","features":[508]},{"name":"FsrmGetFilePropertyOptions_None","features":[508]},{"name":"FsrmGetFilePropertyOptions_Persistent","features":[508]},{"name":"FsrmGetFilePropertyOptions_SkipOrphaned","features":[508]},{"name":"FsrmMaxExcludeFolders","features":[508]},{"name":"FsrmMaxNumberPropertyDefinitions","features":[508]},{"name":"FsrmMaxNumberThresholds","features":[508]},{"name":"FsrmMaxThresholdValue","features":[508]},{"name":"FsrmMinQuotaLimit","features":[508]},{"name":"FsrmMinThresholdValue","features":[508]},{"name":"FsrmPathMapper","features":[508]},{"name":"FsrmPipelineModuleConnector","features":[508]},{"name":"FsrmPipelineModuleType","features":[508]},{"name":"FsrmPipelineModuleType_Classifier","features":[508]},{"name":"FsrmPipelineModuleType_Storage","features":[508]},{"name":"FsrmPipelineModuleType_Unknown","features":[508]},{"name":"FsrmPropertyBagField","features":[508]},{"name":"FsrmPropertyBagField_AccessVolume","features":[508]},{"name":"FsrmPropertyBagField_VolumeGuidName","features":[508]},{"name":"FsrmPropertyBagFlags","features":[508]},{"name":"FsrmPropertyBagFlags_FailedClassifyingProperties","features":[508]},{"name":"FsrmPropertyBagFlags_FailedLoadingProperties","features":[508]},{"name":"FsrmPropertyBagFlags_FailedSavingProperties","features":[508]},{"name":"FsrmPropertyBagFlags_UpdatedByClassifier","features":[508]},{"name":"FsrmPropertyConditionType","features":[508]},{"name":"FsrmPropertyConditionType_Contain","features":[508]},{"name":"FsrmPropertyConditionType_ContainedIn","features":[508]},{"name":"FsrmPropertyConditionType_EndWith","features":[508]},{"name":"FsrmPropertyConditionType_Equal","features":[508]},{"name":"FsrmPropertyConditionType_Exist","features":[508]},{"name":"FsrmPropertyConditionType_GreaterThan","features":[508]},{"name":"FsrmPropertyConditionType_LessThan","features":[508]},{"name":"FsrmPropertyConditionType_MatchesPattern","features":[508]},{"name":"FsrmPropertyConditionType_NotEqual","features":[508]},{"name":"FsrmPropertyConditionType_NotExist","features":[508]},{"name":"FsrmPropertyConditionType_PrefixOf","features":[508]},{"name":"FsrmPropertyConditionType_StartWith","features":[508]},{"name":"FsrmPropertyConditionType_SuffixOf","features":[508]},{"name":"FsrmPropertyConditionType_Unknown","features":[508]},{"name":"FsrmPropertyDefinitionAppliesTo","features":[508]},{"name":"FsrmPropertyDefinitionAppliesTo_Files","features":[508]},{"name":"FsrmPropertyDefinitionAppliesTo_Folders","features":[508]},{"name":"FsrmPropertyDefinitionFlags","features":[508]},{"name":"FsrmPropertyDefinitionFlags_Deprecated","features":[508]},{"name":"FsrmPropertyDefinitionFlags_Global","features":[508]},{"name":"FsrmPropertyDefinitionFlags_Secure","features":[508]},{"name":"FsrmPropertyDefinitionType","features":[508]},{"name":"FsrmPropertyDefinitionType_Bool","features":[508]},{"name":"FsrmPropertyDefinitionType_Date","features":[508]},{"name":"FsrmPropertyDefinitionType_Int","features":[508]},{"name":"FsrmPropertyDefinitionType_MultiChoiceList","features":[508]},{"name":"FsrmPropertyDefinitionType_MultiString","features":[508]},{"name":"FsrmPropertyDefinitionType_OrderedList","features":[508]},{"name":"FsrmPropertyDefinitionType_SingleChoiceList","features":[508]},{"name":"FsrmPropertyDefinitionType_String","features":[508]},{"name":"FsrmPropertyDefinitionType_Unknown","features":[508]},{"name":"FsrmPropertyFlags","features":[508]},{"name":"FsrmPropertyFlags_AggregationFailed","features":[508]},{"name":"FsrmPropertyFlags_Deleted","features":[508]},{"name":"FsrmPropertyFlags_Existing","features":[508]},{"name":"FsrmPropertyFlags_ExplicitValueDeleted","features":[508]},{"name":"FsrmPropertyFlags_FailedClassifyingProperties","features":[508]},{"name":"FsrmPropertyFlags_FailedLoadingProperties","features":[508]},{"name":"FsrmPropertyFlags_FailedSavingProperties","features":[508]},{"name":"FsrmPropertyFlags_Inherited","features":[508]},{"name":"FsrmPropertyFlags_Manual","features":[508]},{"name":"FsrmPropertyFlags_None","features":[508]},{"name":"FsrmPropertyFlags_Orphaned","features":[508]},{"name":"FsrmPropertyFlags_PersistentMask","features":[508]},{"name":"FsrmPropertyFlags_PolicyDerived","features":[508]},{"name":"FsrmPropertyFlags_PropertyDeletedFromClear","features":[508]},{"name":"FsrmPropertyFlags_PropertySourceMask","features":[508]},{"name":"FsrmPropertyFlags_Reclassified","features":[508]},{"name":"FsrmPropertyFlags_RetrievedFromCache","features":[508]},{"name":"FsrmPropertyFlags_RetrievedFromStorage","features":[508]},{"name":"FsrmPropertyFlags_Secure","features":[508]},{"name":"FsrmPropertyFlags_SetByClassifier","features":[508]},{"name":"FsrmPropertyValueType","features":[508]},{"name":"FsrmPropertyValueType_DateOffset","features":[508]},{"name":"FsrmPropertyValueType_Literal","features":[508]},{"name":"FsrmPropertyValueType_Undefined","features":[508]},{"name":"FsrmQuotaFlags","features":[508]},{"name":"FsrmQuotaFlags_Disable","features":[508]},{"name":"FsrmQuotaFlags_Enforce","features":[508]},{"name":"FsrmQuotaFlags_StatusIncomplete","features":[508]},{"name":"FsrmQuotaFlags_StatusRebuilding","features":[508]},{"name":"FsrmQuotaManager","features":[508]},{"name":"FsrmQuotaTemplateManager","features":[508]},{"name":"FsrmReportFilter","features":[508]},{"name":"FsrmReportFilter_FileGroups","features":[508]},{"name":"FsrmReportFilter_MaxAgeDays","features":[508]},{"name":"FsrmReportFilter_MinAgeDays","features":[508]},{"name":"FsrmReportFilter_MinQuotaUsage","features":[508]},{"name":"FsrmReportFilter_MinSize","features":[508]},{"name":"FsrmReportFilter_NamePattern","features":[508]},{"name":"FsrmReportFilter_Owners","features":[508]},{"name":"FsrmReportFilter_Property","features":[508]},{"name":"FsrmReportFormat","features":[508]},{"name":"FsrmReportFormat_Csv","features":[508]},{"name":"FsrmReportFormat_DHtml","features":[508]},{"name":"FsrmReportFormat_Html","features":[508]},{"name":"FsrmReportFormat_Txt","features":[508]},{"name":"FsrmReportFormat_Unknown","features":[508]},{"name":"FsrmReportFormat_Xml","features":[508]},{"name":"FsrmReportGenerationContext","features":[508]},{"name":"FsrmReportGenerationContext_IncidentReport","features":[508]},{"name":"FsrmReportGenerationContext_InteractiveReport","features":[508]},{"name":"FsrmReportGenerationContext_ScheduledReport","features":[508]},{"name":"FsrmReportGenerationContext_Undefined","features":[508]},{"name":"FsrmReportLimit","features":[508]},{"name":"FsrmReportLimit_MaxDuplicateGroups","features":[508]},{"name":"FsrmReportLimit_MaxFileGroups","features":[508]},{"name":"FsrmReportLimit_MaxFileScreenEvents","features":[508]},{"name":"FsrmReportLimit_MaxFiles","features":[508]},{"name":"FsrmReportLimit_MaxFilesPerDuplGroup","features":[508]},{"name":"FsrmReportLimit_MaxFilesPerFileGroup","features":[508]},{"name":"FsrmReportLimit_MaxFilesPerOwner","features":[508]},{"name":"FsrmReportLimit_MaxFilesPerPropertyValue","features":[508]},{"name":"FsrmReportLimit_MaxFolders","features":[508]},{"name":"FsrmReportLimit_MaxOwners","features":[508]},{"name":"FsrmReportLimit_MaxPropertyValues","features":[508]},{"name":"FsrmReportLimit_MaxQuotas","features":[508]},{"name":"FsrmReportManager","features":[508]},{"name":"FsrmReportRunningStatus","features":[508]},{"name":"FsrmReportRunningStatus_NotRunning","features":[508]},{"name":"FsrmReportRunningStatus_Queued","features":[508]},{"name":"FsrmReportRunningStatus_Running","features":[508]},{"name":"FsrmReportRunningStatus_Unknown","features":[508]},{"name":"FsrmReportScheduler","features":[508]},{"name":"FsrmReportType","features":[508]},{"name":"FsrmReportType_AutomaticClassification","features":[508]},{"name":"FsrmReportType_DuplicateFiles","features":[508]},{"name":"FsrmReportType_Expiration","features":[508]},{"name":"FsrmReportType_ExportReport","features":[508]},{"name":"FsrmReportType_FileScreenAudit","features":[508]},{"name":"FsrmReportType_FilesByOwner","features":[508]},{"name":"FsrmReportType_FilesByProperty","features":[508]},{"name":"FsrmReportType_FilesByType","features":[508]},{"name":"FsrmReportType_FoldersByProperty","features":[508]},{"name":"FsrmReportType_LargeFiles","features":[508]},{"name":"FsrmReportType_LeastRecentlyAccessed","features":[508]},{"name":"FsrmReportType_MostRecentlyAccessed","features":[508]},{"name":"FsrmReportType_QuotaUsage","features":[508]},{"name":"FsrmReportType_Unknown","features":[508]},{"name":"FsrmRuleFlags","features":[508]},{"name":"FsrmRuleFlags_ClearAutomaticallyClassifiedProperty","features":[508]},{"name":"FsrmRuleFlags_ClearManuallyClassifiedProperty","features":[508]},{"name":"FsrmRuleFlags_Disabled","features":[508]},{"name":"FsrmRuleFlags_Invalid","features":[508]},{"name":"FsrmRuleType","features":[508]},{"name":"FsrmRuleType_Classification","features":[508]},{"name":"FsrmRuleType_Generic","features":[508]},{"name":"FsrmRuleType_Unknown","features":[508]},{"name":"FsrmSetting","features":[508]},{"name":"FsrmStorageModuleCaps","features":[508]},{"name":"FsrmStorageModuleCaps_CanGet","features":[508]},{"name":"FsrmStorageModuleCaps_CanHandleDirectories","features":[508]},{"name":"FsrmStorageModuleCaps_CanHandleFiles","features":[508]},{"name":"FsrmStorageModuleCaps_CanSet","features":[508]},{"name":"FsrmStorageModuleCaps_Unknown","features":[508]},{"name":"FsrmStorageModuleType","features":[508]},{"name":"FsrmStorageModuleType_Cache","features":[508]},{"name":"FsrmStorageModuleType_Database","features":[508]},{"name":"FsrmStorageModuleType_InFile","features":[508]},{"name":"FsrmStorageModuleType_System","features":[508]},{"name":"FsrmStorageModuleType_Unknown","features":[508]},{"name":"FsrmTemplateApplyOptions","features":[508]},{"name":"FsrmTemplateApplyOptions_ApplyToDerivedAll","features":[508]},{"name":"FsrmTemplateApplyOptions_ApplyToDerivedMatching","features":[508]},{"name":"IFsrmAccessDeniedRemediationClient","features":[508,356]},{"name":"IFsrmAction","features":[508,356]},{"name":"IFsrmActionCommand","features":[508,356]},{"name":"IFsrmActionEmail","features":[508,356]},{"name":"IFsrmActionEmail2","features":[508,356]},{"name":"IFsrmActionEventLog","features":[508,356]},{"name":"IFsrmActionReport","features":[508,356]},{"name":"IFsrmAutoApplyQuota","features":[508,356]},{"name":"IFsrmClassificationManager","features":[508,356]},{"name":"IFsrmClassificationManager2","features":[508,356]},{"name":"IFsrmClassificationRule","features":[508,356]},{"name":"IFsrmClassifierModuleDefinition","features":[508,356]},{"name":"IFsrmClassifierModuleImplementation","features":[508,356]},{"name":"IFsrmCollection","features":[508,356]},{"name":"IFsrmCommittableCollection","features":[508,356]},{"name":"IFsrmDerivedObjectsResult","features":[508,356]},{"name":"IFsrmExportImport","features":[508,356]},{"name":"IFsrmFileCondition","features":[508,356]},{"name":"IFsrmFileConditionProperty","features":[508,356]},{"name":"IFsrmFileGroup","features":[508,356]},{"name":"IFsrmFileGroupImported","features":[508,356]},{"name":"IFsrmFileGroupManager","features":[508,356]},{"name":"IFsrmFileManagementJob","features":[508,356]},{"name":"IFsrmFileManagementJobManager","features":[508,356]},{"name":"IFsrmFileScreen","features":[508,356]},{"name":"IFsrmFileScreenBase","features":[508,356]},{"name":"IFsrmFileScreenException","features":[508,356]},{"name":"IFsrmFileScreenManager","features":[508,356]},{"name":"IFsrmFileScreenTemplate","features":[508,356]},{"name":"IFsrmFileScreenTemplateImported","features":[508,356]},{"name":"IFsrmFileScreenTemplateManager","features":[508,356]},{"name":"IFsrmMutableCollection","features":[508,356]},{"name":"IFsrmObject","features":[508,356]},{"name":"IFsrmPathMapper","features":[508,356]},{"name":"IFsrmPipelineModuleConnector","features":[508,356]},{"name":"IFsrmPipelineModuleDefinition","features":[508,356]},{"name":"IFsrmPipelineModuleImplementation","features":[508,356]},{"name":"IFsrmProperty","features":[508,356]},{"name":"IFsrmPropertyBag","features":[508,356]},{"name":"IFsrmPropertyBag2","features":[508,356]},{"name":"IFsrmPropertyCondition","features":[508,356]},{"name":"IFsrmPropertyDefinition","features":[508,356]},{"name":"IFsrmPropertyDefinition2","features":[508,356]},{"name":"IFsrmPropertyDefinitionValue","features":[508,356]},{"name":"IFsrmQuota","features":[508,356]},{"name":"IFsrmQuotaBase","features":[508,356]},{"name":"IFsrmQuotaManager","features":[508,356]},{"name":"IFsrmQuotaManagerEx","features":[508,356]},{"name":"IFsrmQuotaObject","features":[508,356]},{"name":"IFsrmQuotaTemplate","features":[508,356]},{"name":"IFsrmQuotaTemplateImported","features":[508,356]},{"name":"IFsrmQuotaTemplateManager","features":[508,356]},{"name":"IFsrmReport","features":[508,356]},{"name":"IFsrmReportJob","features":[508,356]},{"name":"IFsrmReportManager","features":[508,356]},{"name":"IFsrmReportScheduler","features":[508,356]},{"name":"IFsrmRule","features":[508,356]},{"name":"IFsrmSetting","features":[508,356]},{"name":"IFsrmStorageModuleDefinition","features":[508,356]},{"name":"IFsrmStorageModuleImplementation","features":[508,356]},{"name":"MessageSizeLimit","features":[508]}],"512":[{"name":"ACCESS_ALL","features":[324]},{"name":"ACCESS_ATRIB","features":[324]},{"name":"ACCESS_CREATE","features":[324]},{"name":"ACCESS_DELETE","features":[324]},{"name":"ACCESS_EXEC","features":[324]},{"name":"ACCESS_PERM","features":[324]},{"name":"ACCESS_READ","features":[324]},{"name":"ACCESS_WRITE","features":[324]},{"name":"AddLogContainer","features":[305,324]},{"name":"AddLogContainerSet","features":[305,324]},{"name":"AddUsersToEncryptedFile","features":[308,324]},{"name":"AdvanceLogBase","features":[305,324,310]},{"name":"AlignReservedLog","features":[305,324]},{"name":"AllocReservedLog","features":[305,324]},{"name":"AreFileApisANSI","features":[305,324]},{"name":"AreShortNamesEnabled","features":[305,324]},{"name":"BACKUP_ALTERNATE_DATA","features":[324]},{"name":"BACKUP_DATA","features":[324]},{"name":"BACKUP_EA_DATA","features":[324]},{"name":"BACKUP_LINK","features":[324]},{"name":"BACKUP_OBJECT_ID","features":[324]},{"name":"BACKUP_PROPERTY_DATA","features":[324]},{"name":"BACKUP_REPARSE_DATA","features":[324]},{"name":"BACKUP_SECURITY_DATA","features":[324]},{"name":"BACKUP_SPARSE_BLOCK","features":[324]},{"name":"BACKUP_TXFS_DATA","features":[324]},{"name":"BY_HANDLE_FILE_INFORMATION","features":[305,324]},{"name":"BackupRead","features":[305,324]},{"name":"BackupSeek","features":[305,324]},{"name":"BackupWrite","features":[305,324]},{"name":"BuildIoRingCancelRequest","features":[305,324]},{"name":"BuildIoRingFlushFile","features":[305,324]},{"name":"BuildIoRingReadFile","features":[305,324]},{"name":"BuildIoRingRegisterBuffers","features":[324]},{"name":"BuildIoRingRegisterFileHandles","features":[305,324]},{"name":"BuildIoRingWriteFile","features":[305,324]},{"name":"BusType1394","features":[324]},{"name":"BusTypeAta","features":[324]},{"name":"BusTypeAtapi","features":[324]},{"name":"BusTypeFibre","features":[324]},{"name":"BusTypeFileBackedVirtual","features":[324]},{"name":"BusTypeMax","features":[324]},{"name":"BusTypeMaxReserved","features":[324]},{"name":"BusTypeMmc","features":[324]},{"name":"BusTypeNvme","features":[324]},{"name":"BusTypeRAID","features":[324]},{"name":"BusTypeSCM","features":[324]},{"name":"BusTypeSas","features":[324]},{"name":"BusTypeSata","features":[324]},{"name":"BusTypeScsi","features":[324]},{"name":"BusTypeSd","features":[324]},{"name":"BusTypeSpaces","features":[324]},{"name":"BusTypeSsa","features":[324]},{"name":"BusTypeUfs","features":[324]},{"name":"BusTypeUnknown","features":[324]},{"name":"BusTypeUsb","features":[324]},{"name":"BusTypeVirtual","features":[324]},{"name":"BusTypeiScsi","features":[324]},{"name":"CACHE_ACCESS_CHECK","features":[305,308,324]},{"name":"CACHE_DESTROY_CALLBACK","features":[324]},{"name":"CACHE_KEY_COMPARE","features":[324]},{"name":"CACHE_KEY_HASH","features":[324]},{"name":"CACHE_READ_CALLBACK","features":[305,324]},{"name":"CALLBACK_CHUNK_FINISHED","features":[324]},{"name":"CALLBACK_STREAM_SWITCH","features":[324]},{"name":"CLAIMMEDIALABEL","features":[324]},{"name":"CLAIMMEDIALABELEX","features":[324]},{"name":"CLFS_BASELOG_EXTENSION","features":[324]},{"name":"CLFS_BLOCK_ALLOCATION","features":[324]},{"name":"CLFS_BLOCK_DEALLOCATION","features":[324]},{"name":"CLFS_CONTAINER_RELATIVE_PREFIX","features":[324]},{"name":"CLFS_CONTAINER_STREAM_PREFIX","features":[324]},{"name":"CLFS_CONTEXT_MODE","features":[324]},{"name":"CLFS_FLAG","features":[324]},{"name":"CLFS_FLAG_FILTER_INTERMEDIATE_LEVEL","features":[324]},{"name":"CLFS_FLAG_FILTER_TOP_LEVEL","features":[324]},{"name":"CLFS_FLAG_FORCE_APPEND","features":[324]},{"name":"CLFS_FLAG_FORCE_FLUSH","features":[324]},{"name":"CLFS_FLAG_HIDDEN_SYSTEM_LOG","features":[324]},{"name":"CLFS_FLAG_IGNORE_SHARE_ACCESS","features":[324]},{"name":"CLFS_FLAG_MINIFILTER_LEVEL","features":[324]},{"name":"CLFS_FLAG_NON_REENTRANT_FILTER","features":[324]},{"name":"CLFS_FLAG_NO_FLAGS","features":[324]},{"name":"CLFS_FLAG_READ_IN_PROGRESS","features":[324]},{"name":"CLFS_FLAG_REENTRANT_FILE_SYSTEM","features":[324]},{"name":"CLFS_FLAG_REENTRANT_FILTER","features":[324]},{"name":"CLFS_FLAG_USE_RESERVATION","features":[324]},{"name":"CLFS_IOSTATS_CLASS","features":[324]},{"name":"CLFS_LOG_ARCHIVE_MODE","features":[324]},{"name":"CLFS_LOG_NAME_INFORMATION","features":[324]},{"name":"CLFS_MARSHALLING_FLAG_DISABLE_BUFF_INIT","features":[324]},{"name":"CLFS_MARSHALLING_FLAG_NONE","features":[324]},{"name":"CLFS_MAX_CONTAINER_INFO","features":[324]},{"name":"CLFS_MGMT_CLIENT_REGISTRATION_VERSION","features":[324]},{"name":"CLFS_MGMT_NOTIFICATION","features":[324]},{"name":"CLFS_MGMT_NOTIFICATION_TYPE","features":[324]},{"name":"CLFS_MGMT_POLICY","features":[324]},{"name":"CLFS_MGMT_POLICY_TYPE","features":[324]},{"name":"CLFS_MGMT_POLICY_VERSION","features":[324]},{"name":"CLFS_NODE_ID","features":[324]},{"name":"CLFS_PHYSICAL_LSN_INFORMATION","features":[324]},{"name":"CLFS_SCAN_BACKWARD","features":[324]},{"name":"CLFS_SCAN_BUFFERED","features":[324]},{"name":"CLFS_SCAN_CLOSE","features":[324]},{"name":"CLFS_SCAN_FORWARD","features":[324]},{"name":"CLFS_SCAN_INIT","features":[324]},{"name":"CLFS_SCAN_INITIALIZED","features":[324]},{"name":"CLFS_STREAM_ID_INFORMATION","features":[324]},{"name":"CLSID_DiskQuotaControl","features":[324]},{"name":"CLS_ARCHIVE_DESCRIPTOR","features":[324]},{"name":"CLS_CONTAINER_INFORMATION","features":[324]},{"name":"CLS_CONTEXT_MODE","features":[324]},{"name":"CLS_INFORMATION","features":[324]},{"name":"CLS_IOSTATS_CLASS","features":[324]},{"name":"CLS_IO_STATISTICS","features":[324]},{"name":"CLS_IO_STATISTICS_HEADER","features":[324]},{"name":"CLS_LOG_INFORMATION_CLASS","features":[324]},{"name":"CLS_LSN","features":[324]},{"name":"CLS_SCAN_CONTEXT","features":[305,324]},{"name":"CLS_WRITE_ENTRY","features":[324]},{"name":"COMPRESSION_FORMAT","features":[324]},{"name":"COMPRESSION_FORMAT_DEFAULT","features":[324]},{"name":"COMPRESSION_FORMAT_LZNT1","features":[324]},{"name":"COMPRESSION_FORMAT_NONE","features":[324]},{"name":"COMPRESSION_FORMAT_XP10","features":[324]},{"name":"COMPRESSION_FORMAT_XPRESS","features":[324]},{"name":"COMPRESSION_FORMAT_XPRESS_HUFF","features":[324]},{"name":"CONNECTION_INFO_0","features":[324]},{"name":"CONNECTION_INFO_1","features":[324]},{"name":"COPYFILE2_CALLBACK_CHUNK_FINISHED","features":[324]},{"name":"COPYFILE2_CALLBACK_CHUNK_STARTED","features":[324]},{"name":"COPYFILE2_CALLBACK_ERROR","features":[324]},{"name":"COPYFILE2_CALLBACK_MAX","features":[324]},{"name":"COPYFILE2_CALLBACK_NONE","features":[324]},{"name":"COPYFILE2_CALLBACK_POLL_CONTINUE","features":[324]},{"name":"COPYFILE2_CALLBACK_STREAM_FINISHED","features":[324]},{"name":"COPYFILE2_CALLBACK_STREAM_STARTED","features":[324]},{"name":"COPYFILE2_COPY_PHASE","features":[324]},{"name":"COPYFILE2_EXTENDED_PARAMETERS","features":[305,324]},{"name":"COPYFILE2_EXTENDED_PARAMETERS_V2","features":[305,324]},{"name":"COPYFILE2_MESSAGE","features":[305,324]},{"name":"COPYFILE2_MESSAGE_ACTION","features":[324]},{"name":"COPYFILE2_MESSAGE_TYPE","features":[324]},{"name":"COPYFILE2_PHASE_MAX","features":[324]},{"name":"COPYFILE2_PHASE_NAMEGRAFT_COPY","features":[324]},{"name":"COPYFILE2_PHASE_NONE","features":[324]},{"name":"COPYFILE2_PHASE_PREPARE_DEST","features":[324]},{"name":"COPYFILE2_PHASE_PREPARE_SOURCE","features":[324]},{"name":"COPYFILE2_PHASE_READ_SOURCE","features":[324]},{"name":"COPYFILE2_PHASE_SERVER_COPY","features":[324]},{"name":"COPYFILE2_PHASE_WRITE_DESTINATION","features":[324]},{"name":"COPYFILE2_PROGRESS_CANCEL","features":[324]},{"name":"COPYFILE2_PROGRESS_CONTINUE","features":[324]},{"name":"COPYFILE2_PROGRESS_PAUSE","features":[324]},{"name":"COPYFILE2_PROGRESS_QUIET","features":[324]},{"name":"COPYFILE2_PROGRESS_STOP","features":[324]},{"name":"CREATEFILE2_EXTENDED_PARAMETERS","features":[305,308,324]},{"name":"CREATE_ALWAYS","features":[324]},{"name":"CREATE_NEW","features":[324]},{"name":"CREATE_TAPE_PARTITION_METHOD","features":[324]},{"name":"CRM_PROTOCOL_DYNAMIC_MARSHAL_INFO","features":[324]},{"name":"CRM_PROTOCOL_EXPLICIT_MARSHAL_ONLY","features":[324]},{"name":"CRM_PROTOCOL_MAXIMUM_OPTION","features":[324]},{"name":"CSC_CACHE_AUTO_REINT","features":[324]},{"name":"CSC_CACHE_MANUAL_REINT","features":[324]},{"name":"CSC_CACHE_NONE","features":[324]},{"name":"CSC_CACHE_VDO","features":[324]},{"name":"CSC_MASK","features":[324]},{"name":"CSC_MASK_EXT","features":[324]},{"name":"CSV_BLOCK_AND_FILE_CACHE_CALLBACK_VERSION","features":[324]},{"name":"CSV_BLOCK_CACHE_CALLBACK_VERSION","features":[324]},{"name":"CheckNameLegalDOS8Dot3A","features":[305,324]},{"name":"CheckNameLegalDOS8Dot3W","features":[305,324]},{"name":"ClfsClientRecord","features":[324]},{"name":"ClfsContainerActive","features":[324]},{"name":"ClfsContainerActivePendingDelete","features":[324]},{"name":"ClfsContainerInactive","features":[324]},{"name":"ClfsContainerInitializing","features":[324]},{"name":"ClfsContainerPendingArchive","features":[324]},{"name":"ClfsContainerPendingArchiveAndDelete","features":[324]},{"name":"ClfsContextForward","features":[324]},{"name":"ClfsContextNone","features":[324]},{"name":"ClfsContextPrevious","features":[324]},{"name":"ClfsContextUndoNext","features":[324]},{"name":"ClfsDataRecord","features":[324]},{"name":"ClfsIoStatsDefault","features":[324]},{"name":"ClfsIoStatsMax","features":[324]},{"name":"ClfsLogArchiveDisabled","features":[324]},{"name":"ClfsLogArchiveEnabled","features":[324]},{"name":"ClfsLogBasicInformation","features":[324]},{"name":"ClfsLogBasicInformationPhysical","features":[324]},{"name":"ClfsLogPhysicalLsnInformation","features":[324]},{"name":"ClfsLogPhysicalNameInformation","features":[324]},{"name":"ClfsLogStreamIdentifierInformation","features":[324]},{"name":"ClfsLogSystemMarkingInformation","features":[324]},{"name":"ClfsMgmtAdvanceTailNotification","features":[324]},{"name":"ClfsMgmtLogFullHandlerNotification","features":[324]},{"name":"ClfsMgmtLogUnpinnedNotification","features":[324]},{"name":"ClfsMgmtLogWriteNotification","features":[324]},{"name":"ClfsMgmtPolicyAutoGrow","features":[324]},{"name":"ClfsMgmtPolicyAutoShrink","features":[324]},{"name":"ClfsMgmtPolicyGrowthRate","features":[324]},{"name":"ClfsMgmtPolicyInvalid","features":[324]},{"name":"ClfsMgmtPolicyLogTail","features":[324]},{"name":"ClfsMgmtPolicyMaximumSize","features":[324]},{"name":"ClfsMgmtPolicyMinimumSize","features":[324]},{"name":"ClfsMgmtPolicyNewContainerExtension","features":[324]},{"name":"ClfsMgmtPolicyNewContainerPrefix","features":[324]},{"name":"ClfsMgmtPolicyNewContainerSize","features":[324]},{"name":"ClfsMgmtPolicyNewContainerSuffix","features":[324]},{"name":"ClfsNullRecord","features":[324]},{"name":"ClfsRestartRecord","features":[324]},{"name":"CloseAndResetLogFile","features":[305,324]},{"name":"CloseEncryptedFileRaw","features":[324]},{"name":"CloseIoRing","features":[324]},{"name":"ClsContainerActive","features":[324]},{"name":"ClsContainerActivePendingDelete","features":[324]},{"name":"ClsContainerInactive","features":[324]},{"name":"ClsContainerInitializing","features":[324]},{"name":"ClsContainerPendingArchive","features":[324]},{"name":"ClsContainerPendingArchiveAndDelete","features":[324]},{"name":"ClsContextForward","features":[324]},{"name":"ClsContextNone","features":[324]},{"name":"ClsContextPrevious","features":[324]},{"name":"ClsContextUndoNext","features":[324]},{"name":"ClsIoStatsDefault","features":[324]},{"name":"ClsIoStatsMax","features":[324]},{"name":"CommitComplete","features":[305,324]},{"name":"CommitEnlistment","features":[305,324]},{"name":"CommitTransaction","features":[305,324]},{"name":"CommitTransactionAsync","features":[305,324]},{"name":"CompareFileTime","features":[305,324]},{"name":"CopyFile2","features":[305,324]},{"name":"CopyFileA","features":[305,324]},{"name":"CopyFileExA","features":[305,324]},{"name":"CopyFileExW","features":[305,324]},{"name":"CopyFileFromAppW","features":[305,324]},{"name":"CopyFileTransactedA","features":[305,324]},{"name":"CopyFileTransactedW","features":[305,324]},{"name":"CopyFileW","features":[305,324]},{"name":"CopyLZFile","features":[324]},{"name":"CreateDirectoryA","features":[305,308,324]},{"name":"CreateDirectoryExA","features":[305,308,324]},{"name":"CreateDirectoryExW","features":[305,308,324]},{"name":"CreateDirectoryFromAppW","features":[305,308,324]},{"name":"CreateDirectoryTransactedA","features":[305,308,324]},{"name":"CreateDirectoryTransactedW","features":[305,308,324]},{"name":"CreateDirectoryW","features":[305,308,324]},{"name":"CreateEnlistment","features":[305,308,324]},{"name":"CreateFile2","features":[305,308,324]},{"name":"CreateFile2FromAppW","features":[305,308,324]},{"name":"CreateFileA","features":[305,308,324]},{"name":"CreateFileFromAppW","features":[305,308,324]},{"name":"CreateFileTransactedA","features":[305,308,324]},{"name":"CreateFileTransactedW","features":[305,308,324]},{"name":"CreateFileW","features":[305,308,324]},{"name":"CreateHardLinkA","features":[305,308,324]},{"name":"CreateHardLinkTransactedA","features":[305,308,324]},{"name":"CreateHardLinkTransactedW","features":[305,308,324]},{"name":"CreateHardLinkW","features":[305,308,324]},{"name":"CreateIoRing","features":[324]},{"name":"CreateLogContainerScanContext","features":[305,324,310]},{"name":"CreateLogFile","features":[305,308,324]},{"name":"CreateLogMarshallingArea","features":[305,324]},{"name":"CreateResourceManager","features":[305,308,324]},{"name":"CreateSymbolicLinkA","features":[305,324]},{"name":"CreateSymbolicLinkTransactedA","features":[305,324]},{"name":"CreateSymbolicLinkTransactedW","features":[305,324]},{"name":"CreateSymbolicLinkW","features":[305,324]},{"name":"CreateTapePartition","features":[305,324]},{"name":"CreateTransaction","features":[305,308,324]},{"name":"CreateTransactionManager","features":[305,308,324]},{"name":"DDD_EXACT_MATCH_ON_REMOVE","features":[324]},{"name":"DDD_LUID_BROADCAST_DRIVE","features":[324]},{"name":"DDD_NO_BROADCAST_SYSTEM","features":[324]},{"name":"DDD_RAW_TARGET_PATH","features":[324]},{"name":"DDD_REMOVE_DEFINITION","features":[324]},{"name":"DEFINE_DOS_DEVICE_FLAGS","features":[324]},{"name":"DELETE","features":[324]},{"name":"DISKQUOTA_FILESTATE_INCOMPLETE","features":[324]},{"name":"DISKQUOTA_FILESTATE_MASK","features":[324]},{"name":"DISKQUOTA_FILESTATE_REBUILDING","features":[324]},{"name":"DISKQUOTA_LOGFLAG_USER_LIMIT","features":[324]},{"name":"DISKQUOTA_LOGFLAG_USER_THRESHOLD","features":[324]},{"name":"DISKQUOTA_STATE_DISABLED","features":[324]},{"name":"DISKQUOTA_STATE_ENFORCE","features":[324]},{"name":"DISKQUOTA_STATE_MASK","features":[324]},{"name":"DISKQUOTA_STATE_TRACK","features":[324]},{"name":"DISKQUOTA_USERNAME_RESOLVE","features":[324]},{"name":"DISKQUOTA_USERNAME_RESOLVE_ASYNC","features":[324]},{"name":"DISKQUOTA_USERNAME_RESOLVE_NONE","features":[324]},{"name":"DISKQUOTA_USERNAME_RESOLVE_SYNC","features":[324]},{"name":"DISKQUOTA_USER_ACCOUNT_DELETED","features":[324]},{"name":"DISKQUOTA_USER_ACCOUNT_INVALID","features":[324]},{"name":"DISKQUOTA_USER_ACCOUNT_RESOLVED","features":[324]},{"name":"DISKQUOTA_USER_ACCOUNT_UNAVAILABLE","features":[324]},{"name":"DISKQUOTA_USER_ACCOUNT_UNKNOWN","features":[324]},{"name":"DISKQUOTA_USER_ACCOUNT_UNRESOLVED","features":[324]},{"name":"DISKQUOTA_USER_INFORMATION","features":[324]},{"name":"DISK_SPACE_INFORMATION","features":[324]},{"name":"DecryptFileA","features":[305,324]},{"name":"DecryptFileW","features":[305,324]},{"name":"DefineDosDeviceA","features":[305,324]},{"name":"DefineDosDeviceW","features":[305,324]},{"name":"DeleteFileA","features":[305,324]},{"name":"DeleteFileFromAppW","features":[305,324]},{"name":"DeleteFileTransactedA","features":[305,324]},{"name":"DeleteFileTransactedW","features":[305,324]},{"name":"DeleteFileW","features":[305,324]},{"name":"DeleteLogByHandle","features":[305,324]},{"name":"DeleteLogFile","features":[305,324]},{"name":"DeleteLogMarshallingArea","features":[305,324]},{"name":"DeleteVolumeMountPointA","features":[305,324]},{"name":"DeleteVolumeMountPointW","features":[305,324]},{"name":"DeregisterManageableLogClient","features":[305,324]},{"name":"DuplicateEncryptionInfoFile","features":[305,308,324]},{"name":"EA_CONTAINER_NAME","features":[324]},{"name":"EA_CONTAINER_SIZE","features":[324]},{"name":"EFS_CERTIFICATE_BLOB","features":[324]},{"name":"EFS_COMPATIBILITY_INFO","features":[324]},{"name":"EFS_COMPATIBILITY_VERSION_NCRYPT_PROTECTOR","features":[324]},{"name":"EFS_COMPATIBILITY_VERSION_PFILE_PROTECTOR","features":[324]},{"name":"EFS_DECRYPTION_STATUS_INFO","features":[324]},{"name":"EFS_EFS_SUBVER_EFS_CERT","features":[324]},{"name":"EFS_ENCRYPTION_STATUS_INFO","features":[305,324]},{"name":"EFS_HASH_BLOB","features":[324]},{"name":"EFS_KEY_INFO","features":[389,324]},{"name":"EFS_METADATA_ADD_USER","features":[324]},{"name":"EFS_METADATA_GENERAL_OP","features":[324]},{"name":"EFS_METADATA_REMOVE_USER","features":[324]},{"name":"EFS_METADATA_REPLACE_USER","features":[324]},{"name":"EFS_PFILE_SUBVER_APPX","features":[324]},{"name":"EFS_PFILE_SUBVER_RMS","features":[324]},{"name":"EFS_PIN_BLOB","features":[324]},{"name":"EFS_RPC_BLOB","features":[324]},{"name":"EFS_SUBVER_UNKNOWN","features":[324]},{"name":"EFS_VERSION_INFO","features":[324]},{"name":"ENCRYPTED_FILE_METADATA_SIGNATURE","features":[308,324]},{"name":"ENCRYPTION_CERTIFICATE","features":[308,324]},{"name":"ENCRYPTION_CERTIFICATE_HASH","features":[308,324]},{"name":"ENCRYPTION_CERTIFICATE_HASH_LIST","features":[308,324]},{"name":"ENCRYPTION_CERTIFICATE_LIST","features":[308,324]},{"name":"ENCRYPTION_PROTECTOR","features":[308,324]},{"name":"ENCRYPTION_PROTECTOR_LIST","features":[308,324]},{"name":"ENLISTMENT_MAXIMUM_OPTION","features":[324]},{"name":"ENLISTMENT_OBJECT_PATH","features":[324]},{"name":"ENLISTMENT_SUPERIOR","features":[324]},{"name":"ERASE_TAPE_TYPE","features":[324]},{"name":"EncryptFileA","features":[305,324]},{"name":"EncryptFileW","features":[305,324]},{"name":"EncryptionDisable","features":[305,324]},{"name":"EraseTape","features":[305,324]},{"name":"ExtendedFileIdType","features":[324]},{"name":"FCACHE_CREATE_CALLBACK","features":[305,324]},{"name":"FCACHE_RICHCREATE_CALLBACK","features":[305,324]},{"name":"FH_OVERLAPPED","features":[305,324]},{"name":"FILE_ACCESS_RIGHTS","features":[324]},{"name":"FILE_ACTION","features":[324]},{"name":"FILE_ACTION_ADDED","features":[324]},{"name":"FILE_ACTION_MODIFIED","features":[324]},{"name":"FILE_ACTION_REMOVED","features":[324]},{"name":"FILE_ACTION_RENAMED_NEW_NAME","features":[324]},{"name":"FILE_ACTION_RENAMED_OLD_NAME","features":[324]},{"name":"FILE_ADD_FILE","features":[324]},{"name":"FILE_ADD_SUBDIRECTORY","features":[324]},{"name":"FILE_ALIGNMENT_INFO","features":[324]},{"name":"FILE_ALLOCATION_INFO","features":[324]},{"name":"FILE_ALL_ACCESS","features":[324]},{"name":"FILE_APPEND_DATA","features":[324]},{"name":"FILE_ATTRIBUTE_ARCHIVE","features":[324]},{"name":"FILE_ATTRIBUTE_COMPRESSED","features":[324]},{"name":"FILE_ATTRIBUTE_DEVICE","features":[324]},{"name":"FILE_ATTRIBUTE_DIRECTORY","features":[324]},{"name":"FILE_ATTRIBUTE_EA","features":[324]},{"name":"FILE_ATTRIBUTE_ENCRYPTED","features":[324]},{"name":"FILE_ATTRIBUTE_HIDDEN","features":[324]},{"name":"FILE_ATTRIBUTE_INTEGRITY_STREAM","features":[324]},{"name":"FILE_ATTRIBUTE_NORMAL","features":[324]},{"name":"FILE_ATTRIBUTE_NOT_CONTENT_INDEXED","features":[324]},{"name":"FILE_ATTRIBUTE_NO_SCRUB_DATA","features":[324]},{"name":"FILE_ATTRIBUTE_OFFLINE","features":[324]},{"name":"FILE_ATTRIBUTE_PINNED","features":[324]},{"name":"FILE_ATTRIBUTE_READONLY","features":[324]},{"name":"FILE_ATTRIBUTE_RECALL_ON_DATA_ACCESS","features":[324]},{"name":"FILE_ATTRIBUTE_RECALL_ON_OPEN","features":[324]},{"name":"FILE_ATTRIBUTE_REPARSE_POINT","features":[324]},{"name":"FILE_ATTRIBUTE_SPARSE_FILE","features":[324]},{"name":"FILE_ATTRIBUTE_SYSTEM","features":[324]},{"name":"FILE_ATTRIBUTE_TAG_INFO","features":[324]},{"name":"FILE_ATTRIBUTE_TEMPORARY","features":[324]},{"name":"FILE_ATTRIBUTE_UNPINNED","features":[324]},{"name":"FILE_ATTRIBUTE_VIRTUAL","features":[324]},{"name":"FILE_BASIC_INFO","features":[324]},{"name":"FILE_BEGIN","features":[324]},{"name":"FILE_COMPRESSION_INFO","features":[324]},{"name":"FILE_CREATE_PIPE_INSTANCE","features":[324]},{"name":"FILE_CREATION_DISPOSITION","features":[324]},{"name":"FILE_CURRENT","features":[324]},{"name":"FILE_DELETE_CHILD","features":[324]},{"name":"FILE_DEVICE_CD_ROM","features":[324]},{"name":"FILE_DEVICE_DISK","features":[324]},{"name":"FILE_DEVICE_DVD","features":[324]},{"name":"FILE_DEVICE_TAPE","features":[324]},{"name":"FILE_DEVICE_TYPE","features":[324]},{"name":"FILE_DISPOSITION_FLAG_DELETE","features":[324]},{"name":"FILE_DISPOSITION_FLAG_DO_NOT_DELETE","features":[324]},{"name":"FILE_DISPOSITION_FLAG_FORCE_IMAGE_SECTION_CHECK","features":[324]},{"name":"FILE_DISPOSITION_FLAG_IGNORE_READONLY_ATTRIBUTE","features":[324]},{"name":"FILE_DISPOSITION_FLAG_ON_CLOSE","features":[324]},{"name":"FILE_DISPOSITION_FLAG_POSIX_SEMANTICS","features":[324]},{"name":"FILE_DISPOSITION_INFO","features":[305,324]},{"name":"FILE_DISPOSITION_INFO_EX","features":[324]},{"name":"FILE_DISPOSITION_INFO_EX_FLAGS","features":[324]},{"name":"FILE_END","features":[324]},{"name":"FILE_END_OF_FILE_INFO","features":[324]},{"name":"FILE_EXECUTE","features":[324]},{"name":"FILE_EXTENT","features":[324]},{"name":"FILE_FLAGS_AND_ATTRIBUTES","features":[324]},{"name":"FILE_FLAG_BACKUP_SEMANTICS","features":[324]},{"name":"FILE_FLAG_DELETE_ON_CLOSE","features":[324]},{"name":"FILE_FLAG_FIRST_PIPE_INSTANCE","features":[324]},{"name":"FILE_FLAG_NO_BUFFERING","features":[324]},{"name":"FILE_FLAG_OPEN_NO_RECALL","features":[324]},{"name":"FILE_FLAG_OPEN_REPARSE_POINT","features":[324]},{"name":"FILE_FLAG_OVERLAPPED","features":[324]},{"name":"FILE_FLAG_POSIX_SEMANTICS","features":[324]},{"name":"FILE_FLAG_RANDOM_ACCESS","features":[324]},{"name":"FILE_FLAG_SEQUENTIAL_SCAN","features":[324]},{"name":"FILE_FLAG_SESSION_AWARE","features":[324]},{"name":"FILE_FLAG_WRITE_THROUGH","features":[324]},{"name":"FILE_FLUSH_DATA","features":[324]},{"name":"FILE_FLUSH_DEFAULT","features":[324]},{"name":"FILE_FLUSH_MIN_METADATA","features":[324]},{"name":"FILE_FLUSH_MODE","features":[324]},{"name":"FILE_FLUSH_NO_SYNC","features":[324]},{"name":"FILE_FULL_DIR_INFO","features":[324]},{"name":"FILE_GENERIC_EXECUTE","features":[324]},{"name":"FILE_GENERIC_READ","features":[324]},{"name":"FILE_GENERIC_WRITE","features":[324]},{"name":"FILE_ID_128","features":[324]},{"name":"FILE_ID_BOTH_DIR_INFO","features":[324]},{"name":"FILE_ID_DESCRIPTOR","features":[324]},{"name":"FILE_ID_EXTD_DIR_INFO","features":[324]},{"name":"FILE_ID_INFO","features":[324]},{"name":"FILE_ID_TYPE","features":[324]},{"name":"FILE_INFO_2","features":[324]},{"name":"FILE_INFO_3","features":[324]},{"name":"FILE_INFO_BY_HANDLE_CLASS","features":[324]},{"name":"FILE_INFO_FLAGS_PERMISSIONS","features":[324]},{"name":"FILE_IO_PRIORITY_HINT_INFO","features":[324]},{"name":"FILE_LIST_DIRECTORY","features":[324]},{"name":"FILE_NAME_INFO","features":[324]},{"name":"FILE_NAME_NORMALIZED","features":[324]},{"name":"FILE_NAME_OPENED","features":[324]},{"name":"FILE_NOTIFY_CHANGE","features":[324]},{"name":"FILE_NOTIFY_CHANGE_ATTRIBUTES","features":[324]},{"name":"FILE_NOTIFY_CHANGE_CREATION","features":[324]},{"name":"FILE_NOTIFY_CHANGE_DIR_NAME","features":[324]},{"name":"FILE_NOTIFY_CHANGE_FILE_NAME","features":[324]},{"name":"FILE_NOTIFY_CHANGE_LAST_ACCESS","features":[324]},{"name":"FILE_NOTIFY_CHANGE_LAST_WRITE","features":[324]},{"name":"FILE_NOTIFY_CHANGE_SECURITY","features":[324]},{"name":"FILE_NOTIFY_CHANGE_SIZE","features":[324]},{"name":"FILE_NOTIFY_EXTENDED_INFORMATION","features":[324]},{"name":"FILE_NOTIFY_INFORMATION","features":[324]},{"name":"FILE_PROVIDER_COMPRESSION_LZX","features":[324]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS16K","features":[324]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS4K","features":[324]},{"name":"FILE_PROVIDER_COMPRESSION_XPRESS8K","features":[324]},{"name":"FILE_READ_ATTRIBUTES","features":[324]},{"name":"FILE_READ_DATA","features":[324]},{"name":"FILE_READ_EA","features":[324]},{"name":"FILE_REMOTE_PROTOCOL_INFO","features":[324]},{"name":"FILE_RENAME_INFO","features":[305,324]},{"name":"FILE_SEGMENT_ELEMENT","features":[324]},{"name":"FILE_SHARE_DELETE","features":[324]},{"name":"FILE_SHARE_MODE","features":[324]},{"name":"FILE_SHARE_NONE","features":[324]},{"name":"FILE_SHARE_READ","features":[324]},{"name":"FILE_SHARE_WRITE","features":[324]},{"name":"FILE_STANDARD_INFO","features":[305,324]},{"name":"FILE_STORAGE_INFO","features":[324]},{"name":"FILE_STREAM_INFO","features":[324]},{"name":"FILE_TRAVERSE","features":[324]},{"name":"FILE_TYPE","features":[324]},{"name":"FILE_TYPE_CHAR","features":[324]},{"name":"FILE_TYPE_DISK","features":[324]},{"name":"FILE_TYPE_PIPE","features":[324]},{"name":"FILE_TYPE_REMOTE","features":[324]},{"name":"FILE_TYPE_UNKNOWN","features":[324]},{"name":"FILE_VER_GET_LOCALISED","features":[324]},{"name":"FILE_VER_GET_NEUTRAL","features":[324]},{"name":"FILE_VER_GET_PREFETCHED","features":[324]},{"name":"FILE_WRITE_ATTRIBUTES","features":[324]},{"name":"FILE_WRITE_DATA","features":[324]},{"name":"FILE_WRITE_EA","features":[324]},{"name":"FILE_WRITE_FLAGS","features":[324]},{"name":"FILE_WRITE_FLAGS_NONE","features":[324]},{"name":"FILE_WRITE_FLAGS_WRITE_THROUGH","features":[324]},{"name":"FINDEX_INFO_LEVELS","features":[324]},{"name":"FINDEX_SEARCH_OPS","features":[324]},{"name":"FIND_FIRST_EX_CASE_SENSITIVE","features":[324]},{"name":"FIND_FIRST_EX_FLAGS","features":[324]},{"name":"FIND_FIRST_EX_LARGE_FETCH","features":[324]},{"name":"FIND_FIRST_EX_ON_DISK_ENTRIES_ONLY","features":[324]},{"name":"FIO_CONTEXT","features":[305,324]},{"name":"FileAlignmentInfo","features":[324]},{"name":"FileAllocationInfo","features":[324]},{"name":"FileAttributeTagInfo","features":[324]},{"name":"FileBasicInfo","features":[324]},{"name":"FileCaseSensitiveInfo","features":[324]},{"name":"FileCompressionInfo","features":[324]},{"name":"FileDispositionInfo","features":[324]},{"name":"FileDispositionInfoEx","features":[324]},{"name":"FileEncryptionStatusA","features":[305,324]},{"name":"FileEncryptionStatusW","features":[305,324]},{"name":"FileEndOfFileInfo","features":[324]},{"name":"FileFullDirectoryInfo","features":[324]},{"name":"FileFullDirectoryRestartInfo","features":[324]},{"name":"FileIdBothDirectoryInfo","features":[324]},{"name":"FileIdBothDirectoryRestartInfo","features":[324]},{"name":"FileIdExtdDirectoryInfo","features":[324]},{"name":"FileIdExtdDirectoryRestartInfo","features":[324]},{"name":"FileIdInfo","features":[324]},{"name":"FileIdType","features":[324]},{"name":"FileIoPriorityHintInfo","features":[324]},{"name":"FileNameInfo","features":[324]},{"name":"FileNormalizedNameInfo","features":[324]},{"name":"FileRemoteProtocolInfo","features":[324]},{"name":"FileRenameInfo","features":[324]},{"name":"FileRenameInfoEx","features":[324]},{"name":"FileStandardInfo","features":[324]},{"name":"FileStorageInfo","features":[324]},{"name":"FileStreamInfo","features":[324]},{"name":"FileTimeToLocalFileTime","features":[305,324]},{"name":"FindClose","features":[305,324]},{"name":"FindCloseChangeNotification","features":[305,324]},{"name":"FindExInfoBasic","features":[324]},{"name":"FindExInfoMaxInfoLevel","features":[324]},{"name":"FindExInfoStandard","features":[324]},{"name":"FindExSearchLimitToDevices","features":[324]},{"name":"FindExSearchLimitToDirectories","features":[324]},{"name":"FindExSearchMaxSearchOp","features":[324]},{"name":"FindExSearchNameMatch","features":[324]},{"name":"FindFirstChangeNotificationA","features":[305,324]},{"name":"FindFirstChangeNotificationW","features":[305,324]},{"name":"FindFirstFileA","features":[305,324]},{"name":"FindFirstFileExA","features":[305,324]},{"name":"FindFirstFileExFromAppW","features":[305,324]},{"name":"FindFirstFileExW","features":[305,324]},{"name":"FindFirstFileNameTransactedW","features":[305,324]},{"name":"FindFirstFileNameW","features":[305,324]},{"name":"FindFirstFileTransactedA","features":[305,324]},{"name":"FindFirstFileTransactedW","features":[305,324]},{"name":"FindFirstFileW","features":[305,324]},{"name":"FindFirstStreamTransactedW","features":[305,324]},{"name":"FindFirstStreamW","features":[305,324]},{"name":"FindFirstVolumeA","features":[305,324]},{"name":"FindFirstVolumeMountPointA","features":[305,324]},{"name":"FindFirstVolumeMountPointW","features":[305,324]},{"name":"FindFirstVolumeW","features":[305,324]},{"name":"FindNextChangeNotification","features":[305,324]},{"name":"FindNextFileA","features":[305,324]},{"name":"FindNextFileNameW","features":[305,324]},{"name":"FindNextFileW","features":[305,324]},{"name":"FindNextStreamW","features":[305,324]},{"name":"FindNextVolumeA","features":[305,324]},{"name":"FindNextVolumeMountPointA","features":[305,324]},{"name":"FindNextVolumeMountPointW","features":[305,324]},{"name":"FindNextVolumeW","features":[305,324]},{"name":"FindStreamInfoMaxInfoLevel","features":[324]},{"name":"FindStreamInfoStandard","features":[324]},{"name":"FindVolumeClose","features":[305,324]},{"name":"FindVolumeMountPointClose","features":[305,324]},{"name":"FlushFileBuffers","features":[305,324]},{"name":"FlushLogBuffers","features":[305,324,310]},{"name":"FlushLogToLsn","features":[305,324,310]},{"name":"FreeEncryptedFileMetadata","features":[324]},{"name":"FreeEncryptionCertificateHashList","features":[308,324]},{"name":"FreeReservedLog","features":[305,324]},{"name":"GETFINALPATHNAMEBYHANDLE_FLAGS","features":[324]},{"name":"GET_FILEEX_INFO_LEVELS","features":[324]},{"name":"GET_FILE_VERSION_INFO_FLAGS","features":[324]},{"name":"GET_TAPE_DRIVE_INFORMATION","features":[324]},{"name":"GET_TAPE_DRIVE_PARAMETERS_OPERATION","features":[324]},{"name":"GET_TAPE_MEDIA_INFORMATION","features":[324]},{"name":"GetBinaryTypeA","features":[305,324]},{"name":"GetBinaryTypeW","features":[305,324]},{"name":"GetCompressedFileSizeA","features":[324]},{"name":"GetCompressedFileSizeTransactedA","features":[305,324]},{"name":"GetCompressedFileSizeTransactedW","features":[305,324]},{"name":"GetCompressedFileSizeW","features":[324]},{"name":"GetCurrentClockTransactionManager","features":[305,324]},{"name":"GetDiskFreeSpaceA","features":[305,324]},{"name":"GetDiskFreeSpaceExA","features":[305,324]},{"name":"GetDiskFreeSpaceExW","features":[305,324]},{"name":"GetDiskFreeSpaceW","features":[305,324]},{"name":"GetDiskSpaceInformationA","features":[324]},{"name":"GetDiskSpaceInformationW","features":[324]},{"name":"GetDriveTypeA","features":[324]},{"name":"GetDriveTypeW","features":[324]},{"name":"GetEncryptedFileMetadata","features":[324]},{"name":"GetEnlistmentId","features":[305,324]},{"name":"GetEnlistmentRecoveryInformation","features":[305,324]},{"name":"GetExpandedNameA","features":[324]},{"name":"GetExpandedNameW","features":[324]},{"name":"GetFileAttributesA","features":[324]},{"name":"GetFileAttributesExA","features":[305,324]},{"name":"GetFileAttributesExFromAppW","features":[305,324]},{"name":"GetFileAttributesExW","features":[305,324]},{"name":"GetFileAttributesTransactedA","features":[305,324]},{"name":"GetFileAttributesTransactedW","features":[305,324]},{"name":"GetFileAttributesW","features":[324]},{"name":"GetFileBandwidthReservation","features":[305,324]},{"name":"GetFileExInfoStandard","features":[324]},{"name":"GetFileExMaxInfoLevel","features":[324]},{"name":"GetFileInformationByHandle","features":[305,324]},{"name":"GetFileInformationByHandleEx","features":[305,324]},{"name":"GetFileSize","features":[305,324]},{"name":"GetFileSizeEx","features":[305,324]},{"name":"GetFileTime","features":[305,324]},{"name":"GetFileType","features":[305,324]},{"name":"GetFileVersionInfoA","features":[305,324]},{"name":"GetFileVersionInfoExA","features":[305,324]},{"name":"GetFileVersionInfoExW","features":[305,324]},{"name":"GetFileVersionInfoSizeA","features":[324]},{"name":"GetFileVersionInfoSizeExA","features":[324]},{"name":"GetFileVersionInfoSizeExW","features":[324]},{"name":"GetFileVersionInfoSizeW","features":[324]},{"name":"GetFileVersionInfoW","features":[305,324]},{"name":"GetFinalPathNameByHandleA","features":[305,324]},{"name":"GetFinalPathNameByHandleW","features":[305,324]},{"name":"GetFullPathNameA","features":[324]},{"name":"GetFullPathNameTransactedA","features":[305,324]},{"name":"GetFullPathNameTransactedW","features":[305,324]},{"name":"GetFullPathNameW","features":[324]},{"name":"GetIoRingInfo","features":[324]},{"name":"GetLogContainerName","features":[305,324]},{"name":"GetLogFileInformation","features":[305,324]},{"name":"GetLogIoStatistics","features":[305,324]},{"name":"GetLogReservationInfo","features":[305,324]},{"name":"GetLogicalDriveStringsA","features":[324]},{"name":"GetLogicalDriveStringsW","features":[324]},{"name":"GetLogicalDrives","features":[324]},{"name":"GetLongPathNameA","features":[324]},{"name":"GetLongPathNameTransactedA","features":[305,324]},{"name":"GetLongPathNameTransactedW","features":[305,324]},{"name":"GetLongPathNameW","features":[324]},{"name":"GetNextLogArchiveExtent","features":[305,324]},{"name":"GetNotificationResourceManager","features":[305,324]},{"name":"GetNotificationResourceManagerAsync","features":[305,324,310]},{"name":"GetShortPathNameA","features":[324]},{"name":"GetShortPathNameW","features":[324]},{"name":"GetTapeParameters","features":[305,324]},{"name":"GetTapePosition","features":[305,324]},{"name":"GetTapeStatus","features":[305,324]},{"name":"GetTempFileNameA","features":[324]},{"name":"GetTempFileNameW","features":[324]},{"name":"GetTempPath2A","features":[324]},{"name":"GetTempPath2W","features":[324]},{"name":"GetTempPathA","features":[324]},{"name":"GetTempPathW","features":[324]},{"name":"GetTransactionId","features":[305,324]},{"name":"GetTransactionInformation","features":[305,324]},{"name":"GetTransactionManagerId","features":[305,324]},{"name":"GetVolumeInformationA","features":[305,324]},{"name":"GetVolumeInformationByHandleW","features":[305,324]},{"name":"GetVolumeInformationW","features":[305,324]},{"name":"GetVolumeNameForVolumeMountPointA","features":[305,324]},{"name":"GetVolumeNameForVolumeMountPointW","features":[305,324]},{"name":"GetVolumePathNameA","features":[305,324]},{"name":"GetVolumePathNameW","features":[305,324]},{"name":"GetVolumePathNamesForVolumeNameA","features":[305,324]},{"name":"GetVolumePathNamesForVolumeNameW","features":[305,324]},{"name":"HIORING","features":[324]},{"name":"HandleLogFull","features":[305,324]},{"name":"IDiskQuotaControl","features":[324,356]},{"name":"IDiskQuotaEvents","features":[324]},{"name":"IDiskQuotaUser","features":[324]},{"name":"IDiskQuotaUserBatch","features":[324]},{"name":"IEnumDiskQuotaUsers","features":[324]},{"name":"INVALID_FILE_ATTRIBUTES","features":[324]},{"name":"INVALID_FILE_SIZE","features":[324]},{"name":"INVALID_SET_FILE_POINTER","features":[324]},{"name":"IOCTL_VOLUME_ALLOCATE_BC_STREAM","features":[324]},{"name":"IOCTL_VOLUME_BASE","features":[324]},{"name":"IOCTL_VOLUME_BC_VERSION","features":[324]},{"name":"IOCTL_VOLUME_FREE_BC_STREAM","features":[324]},{"name":"IOCTL_VOLUME_GET_BC_PROPERTIES","features":[324]},{"name":"IOCTL_VOLUME_GET_CSVBLOCKCACHE_CALLBACK","features":[324]},{"name":"IOCTL_VOLUME_GET_GPT_ATTRIBUTES","features":[324]},{"name":"IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS","features":[324]},{"name":"IOCTL_VOLUME_IS_CLUSTERED","features":[324]},{"name":"IOCTL_VOLUME_IS_CSV","features":[324]},{"name":"IOCTL_VOLUME_IS_DYNAMIC","features":[324]},{"name":"IOCTL_VOLUME_IS_IO_CAPABLE","features":[324]},{"name":"IOCTL_VOLUME_IS_OFFLINE","features":[324]},{"name":"IOCTL_VOLUME_IS_PARTITION","features":[324]},{"name":"IOCTL_VOLUME_LOGICAL_TO_PHYSICAL","features":[324]},{"name":"IOCTL_VOLUME_OFFLINE","features":[324]},{"name":"IOCTL_VOLUME_ONLINE","features":[324]},{"name":"IOCTL_VOLUME_PHYSICAL_TO_LOGICAL","features":[324]},{"name":"IOCTL_VOLUME_POST_ONLINE","features":[324]},{"name":"IOCTL_VOLUME_PREPARE_FOR_CRITICAL_IO","features":[324]},{"name":"IOCTL_VOLUME_PREPARE_FOR_SHRINK","features":[324]},{"name":"IOCTL_VOLUME_QUERY_ALLOCATION_HINT","features":[324]},{"name":"IOCTL_VOLUME_QUERY_FAILOVER_SET","features":[324]},{"name":"IOCTL_VOLUME_QUERY_MINIMUM_SHRINK_SIZE","features":[324]},{"name":"IOCTL_VOLUME_QUERY_VOLUME_NUMBER","features":[324]},{"name":"IOCTL_VOLUME_READ_PLEX","features":[324]},{"name":"IOCTL_VOLUME_SET_GPT_ATTRIBUTES","features":[324]},{"name":"IOCTL_VOLUME_SUPPORTS_ONLINE_OFFLINE","features":[324]},{"name":"IOCTL_VOLUME_UPDATE_PROPERTIES","features":[324]},{"name":"IORING_BUFFER_INFO","features":[324]},{"name":"IORING_BUFFER_REF","features":[324]},{"name":"IORING_CAPABILITIES","features":[324]},{"name":"IORING_CQE","features":[324]},{"name":"IORING_CREATE_ADVISORY_FLAGS","features":[324]},{"name":"IORING_CREATE_ADVISORY_FLAGS_NONE","features":[324]},{"name":"IORING_CREATE_FLAGS","features":[324]},{"name":"IORING_CREATE_REQUIRED_FLAGS","features":[324]},{"name":"IORING_CREATE_REQUIRED_FLAGS_NONE","features":[324]},{"name":"IORING_FEATURE_FLAGS","features":[324]},{"name":"IORING_FEATURE_FLAGS_NONE","features":[324]},{"name":"IORING_FEATURE_SET_COMPLETION_EVENT","features":[324]},{"name":"IORING_FEATURE_UM_EMULATION","features":[324]},{"name":"IORING_HANDLE_REF","features":[305,324]},{"name":"IORING_INFO","features":[324]},{"name":"IORING_OP_CANCEL","features":[324]},{"name":"IORING_OP_CODE","features":[324]},{"name":"IORING_OP_FLUSH","features":[324]},{"name":"IORING_OP_NOP","features":[324]},{"name":"IORING_OP_READ","features":[324]},{"name":"IORING_OP_REGISTER_BUFFERS","features":[324]},{"name":"IORING_OP_REGISTER_FILES","features":[324]},{"name":"IORING_OP_WRITE","features":[324]},{"name":"IORING_REF_KIND","features":[324]},{"name":"IORING_REF_RAW","features":[324]},{"name":"IORING_REF_REGISTERED","features":[324]},{"name":"IORING_REGISTERED_BUFFER","features":[324]},{"name":"IORING_SQE_FLAGS","features":[324]},{"name":"IORING_VERSION","features":[324]},{"name":"IORING_VERSION_1","features":[324]},{"name":"IORING_VERSION_2","features":[324]},{"name":"IORING_VERSION_3","features":[324]},{"name":"IORING_VERSION_INVALID","features":[324]},{"name":"IOSQE_FLAGS_DRAIN_PRECEDING_OPS","features":[324]},{"name":"IOSQE_FLAGS_NONE","features":[324]},{"name":"InstallLogPolicy","features":[305,324]},{"name":"IoPriorityHintLow","features":[324]},{"name":"IoPriorityHintNormal","features":[324]},{"name":"IoPriorityHintVeryLow","features":[324]},{"name":"IsIoRingOpSupported","features":[305,324]},{"name":"KCRM_MARSHAL_HEADER","features":[324]},{"name":"KCRM_PROTOCOL_BLOB","features":[324]},{"name":"KCRM_TRANSACTION_BLOB","features":[324]},{"name":"KTM_MARSHAL_BLOB_VERSION_MAJOR","features":[324]},{"name":"KTM_MARSHAL_BLOB_VERSION_MINOR","features":[324]},{"name":"LOCKFILE_EXCLUSIVE_LOCK","features":[324]},{"name":"LOCKFILE_FAIL_IMMEDIATELY","features":[324]},{"name":"LOCK_FILE_FLAGS","features":[324]},{"name":"LOG_MANAGEMENT_CALLBACKS","features":[305,324]},{"name":"LOG_POLICY_OVERWRITE","features":[324]},{"name":"LOG_POLICY_PERSIST","features":[324]},{"name":"LPPROGRESS_ROUTINE","features":[305,324]},{"name":"LPPROGRESS_ROUTINE_CALLBACK_REASON","features":[324]},{"name":"LZClose","features":[324]},{"name":"LZCopy","features":[324]},{"name":"LZDone","features":[324]},{"name":"LZERROR_BADINHANDLE","features":[324]},{"name":"LZERROR_BADOUTHANDLE","features":[324]},{"name":"LZERROR_BADVALUE","features":[324]},{"name":"LZERROR_GLOBALLOC","features":[324]},{"name":"LZERROR_GLOBLOCK","features":[324]},{"name":"LZERROR_READ","features":[324]},{"name":"LZERROR_UNKNOWNALG","features":[324]},{"name":"LZERROR_WRITE","features":[324]},{"name":"LZInit","features":[324]},{"name":"LZOPENFILE_STYLE","features":[324]},{"name":"LZOpenFileA","features":[324]},{"name":"LZOpenFileW","features":[324]},{"name":"LZRead","features":[324]},{"name":"LZSeek","features":[324]},{"name":"LZStart","features":[324]},{"name":"LocalFileTimeToFileTime","features":[305,324]},{"name":"LockFile","features":[305,324]},{"name":"LockFileEx","features":[305,324,310]},{"name":"LogTailAdvanceFailure","features":[305,324]},{"name":"LsnBlockOffset","features":[324]},{"name":"LsnContainer","features":[324]},{"name":"LsnCreate","features":[324]},{"name":"LsnEqual","features":[305,324]},{"name":"LsnGreater","features":[305,324]},{"name":"LsnIncrement","features":[324]},{"name":"LsnInvalid","features":[305,324]},{"name":"LsnLess","features":[305,324]},{"name":"LsnNull","features":[305,324]},{"name":"LsnRecordSequence","features":[324]},{"name":"MAXIMUM_REPARSE_DATA_BUFFER_SIZE","features":[324]},{"name":"MAXMEDIALABEL","features":[324]},{"name":"MAX_RESOURCEMANAGER_DESCRIPTION_LENGTH","features":[324]},{"name":"MAX_SID_SIZE","features":[324]},{"name":"MAX_TRANSACTION_DESCRIPTION_LENGTH","features":[324]},{"name":"MOVEFILE_COPY_ALLOWED","features":[324]},{"name":"MOVEFILE_CREATE_HARDLINK","features":[324]},{"name":"MOVEFILE_DELAY_UNTIL_REBOOT","features":[324]},{"name":"MOVEFILE_FAIL_IF_NOT_TRACKABLE","features":[324]},{"name":"MOVEFILE_REPLACE_EXISTING","features":[324]},{"name":"MOVEFILE_WRITE_THROUGH","features":[324]},{"name":"MOVE_FILE_FLAGS","features":[324]},{"name":"MaximumFileIdType","features":[324]},{"name":"MaximumFileInfoByHandleClass","features":[324]},{"name":"MaximumIoPriorityHintType","features":[324]},{"name":"MediaLabelInfo","features":[324]},{"name":"MoveFileA","features":[305,324]},{"name":"MoveFileExA","features":[305,324]},{"name":"MoveFileExW","features":[305,324]},{"name":"MoveFileFromAppW","features":[305,324]},{"name":"MoveFileTransactedA","features":[305,324]},{"name":"MoveFileTransactedW","features":[305,324]},{"name":"MoveFileW","features":[305,324]},{"name":"MoveFileWithProgressA","features":[305,324]},{"name":"MoveFileWithProgressW","features":[305,324]},{"name":"NAME_CACHE_CONTEXT","features":[324]},{"name":"NTMSMLI_MAXAPPDESCR","features":[324]},{"name":"NTMSMLI_MAXIDSIZE","features":[324]},{"name":"NTMSMLI_MAXTYPE","features":[324]},{"name":"NTMS_ALLOCATE_ERROR_IF_UNAVAILABLE","features":[324]},{"name":"NTMS_ALLOCATE_FROMSCRATCH","features":[324]},{"name":"NTMS_ALLOCATE_NEW","features":[324]},{"name":"NTMS_ALLOCATE_NEXT","features":[324]},{"name":"NTMS_ALLOCATION_INFORMATION","features":[324]},{"name":"NTMS_APPLICATIONNAME_LENGTH","features":[324]},{"name":"NTMS_ASYNCOP_MOUNT","features":[324]},{"name":"NTMS_ASYNCSTATE_COMPLETE","features":[324]},{"name":"NTMS_ASYNCSTATE_INPROCESS","features":[324]},{"name":"NTMS_ASYNCSTATE_QUEUED","features":[324]},{"name":"NTMS_ASYNCSTATE_WAIT_OPERATOR","features":[324]},{"name":"NTMS_ASYNCSTATE_WAIT_RESOURCE","features":[324]},{"name":"NTMS_ASYNC_IO","features":[305,324]},{"name":"NTMS_BARCODESTATE_OK","features":[324]},{"name":"NTMS_BARCODESTATE_UNREADABLE","features":[324]},{"name":"NTMS_BARCODE_LENGTH","features":[324]},{"name":"NTMS_CHANGER","features":[324]},{"name":"NTMS_CHANGERINFORMATIONA","features":[324]},{"name":"NTMS_CHANGERINFORMATIONW","features":[324]},{"name":"NTMS_CHANGERTYPEINFORMATIONA","features":[324]},{"name":"NTMS_CHANGERTYPEINFORMATIONW","features":[324]},{"name":"NTMS_CHANGER_TYPE","features":[324]},{"name":"NTMS_COMPUTER","features":[324]},{"name":"NTMS_COMPUTERINFORMATION","features":[324]},{"name":"NTMS_COMPUTERNAME_LENGTH","features":[324]},{"name":"NTMS_CONTROL_ACCESS","features":[324]},{"name":"NTMS_CREATE_NEW","features":[324]},{"name":"NTMS_DEALLOCATE_TOSCRATCH","features":[324]},{"name":"NTMS_DESCRIPTION_LENGTH","features":[324]},{"name":"NTMS_DEVICENAME_LENGTH","features":[324]},{"name":"NTMS_DISMOUNT_DEFERRED","features":[324]},{"name":"NTMS_DISMOUNT_IMMEDIATE","features":[324]},{"name":"NTMS_DOORSTATE_CLOSED","features":[324]},{"name":"NTMS_DOORSTATE_OPEN","features":[324]},{"name":"NTMS_DOORSTATE_UNKNOWN","features":[324]},{"name":"NTMS_DRIVE","features":[324]},{"name":"NTMS_DRIVEINFORMATIONA","features":[305,324]},{"name":"NTMS_DRIVEINFORMATIONW","features":[305,324]},{"name":"NTMS_DRIVESTATE_BEING_CLEANED","features":[324]},{"name":"NTMS_DRIVESTATE_DISMOUNTABLE","features":[324]},{"name":"NTMS_DRIVESTATE_DISMOUNTED","features":[324]},{"name":"NTMS_DRIVESTATE_LOADED","features":[324]},{"name":"NTMS_DRIVESTATE_MOUNTED","features":[324]},{"name":"NTMS_DRIVESTATE_UNLOADED","features":[324]},{"name":"NTMS_DRIVETYPEINFORMATIONA","features":[324]},{"name":"NTMS_DRIVETYPEINFORMATIONW","features":[324]},{"name":"NTMS_DRIVE_TYPE","features":[324]},{"name":"NTMS_EJECT_ASK_USER","features":[324]},{"name":"NTMS_EJECT_FORCE","features":[324]},{"name":"NTMS_EJECT_IMMEDIATE","features":[324]},{"name":"NTMS_EJECT_QUEUE","features":[324]},{"name":"NTMS_EJECT_START","features":[324]},{"name":"NTMS_EJECT_STOP","features":[324]},{"name":"NTMS_ENUM_DEFAULT","features":[324]},{"name":"NTMS_ENUM_ROOTPOOL","features":[324]},{"name":"NTMS_ERROR_ON_DUPLICATE","features":[324]},{"name":"NTMS_EVENT_COMPLETE","features":[324]},{"name":"NTMS_EVENT_SIGNAL","features":[324]},{"name":"NTMS_FILESYSTEM_INFO","features":[324]},{"name":"NTMS_I1_LIBRARYINFORMATION","features":[305,324]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONA","features":[305,324]},{"name":"NTMS_I1_LIBREQUESTINFORMATIONW","features":[305,324]},{"name":"NTMS_I1_MESSAGE_LENGTH","features":[324]},{"name":"NTMS_I1_OBJECTINFORMATIONA","features":[305,324]},{"name":"NTMS_I1_OBJECTINFORMATIONW","features":[305,324]},{"name":"NTMS_I1_OPREQUESTINFORMATIONA","features":[305,324]},{"name":"NTMS_I1_OPREQUESTINFORMATIONW","features":[305,324]},{"name":"NTMS_I1_PARTITIONINFORMATIONA","features":[324]},{"name":"NTMS_I1_PARTITIONINFORMATIONW","features":[324]},{"name":"NTMS_I1_PMIDINFORMATIONA","features":[324]},{"name":"NTMS_I1_PMIDINFORMATIONW","features":[324]},{"name":"NTMS_IEDOOR","features":[324]},{"name":"NTMS_IEDOORINFORMATION","features":[324]},{"name":"NTMS_IEPORT","features":[324]},{"name":"NTMS_IEPORTINFORMATION","features":[324]},{"name":"NTMS_INITIALIZING","features":[324]},{"name":"NTMS_INJECT_RETRACT","features":[324]},{"name":"NTMS_INJECT_START","features":[324]},{"name":"NTMS_INJECT_STARTMANY","features":[324]},{"name":"NTMS_INJECT_STOP","features":[324]},{"name":"NTMS_INVENTORY_DEFAULT","features":[324]},{"name":"NTMS_INVENTORY_FAST","features":[324]},{"name":"NTMS_INVENTORY_MAX","features":[324]},{"name":"NTMS_INVENTORY_NONE","features":[324]},{"name":"NTMS_INVENTORY_OMID","features":[324]},{"name":"NTMS_INVENTORY_SLOT","features":[324]},{"name":"NTMS_INVENTORY_STOP","features":[324]},{"name":"NTMS_LIBRARY","features":[324]},{"name":"NTMS_LIBRARYFLAG_AUTODETECTCHANGE","features":[324]},{"name":"NTMS_LIBRARYFLAG_CLEANERPRESENT","features":[324]},{"name":"NTMS_LIBRARYFLAG_FIXEDOFFLINE","features":[324]},{"name":"NTMS_LIBRARYFLAG_IGNORECLEANERUSESREMAINING","features":[324]},{"name":"NTMS_LIBRARYFLAG_RECOGNIZECLEANERBARCODE","features":[324]},{"name":"NTMS_LIBRARYINFORMATION","features":[305,324]},{"name":"NTMS_LIBRARYTYPE_OFFLINE","features":[324]},{"name":"NTMS_LIBRARYTYPE_ONLINE","features":[324]},{"name":"NTMS_LIBRARYTYPE_STANDALONE","features":[324]},{"name":"NTMS_LIBRARYTYPE_UNKNOWN","features":[324]},{"name":"NTMS_LIBREQFLAGS_NOAUTOPURGE","features":[324]},{"name":"NTMS_LIBREQFLAGS_NOFAILEDPURGE","features":[324]},{"name":"NTMS_LIBREQUEST","features":[324]},{"name":"NTMS_LIBREQUESTINFORMATIONA","features":[305,324]},{"name":"NTMS_LIBREQUESTINFORMATIONW","features":[305,324]},{"name":"NTMS_LMIDINFORMATION","features":[324]},{"name":"NTMS_LM_CANCELLED","features":[324]},{"name":"NTMS_LM_CLASSIFY","features":[324]},{"name":"NTMS_LM_CLEANDRIVE","features":[324]},{"name":"NTMS_LM_DEFERRED","features":[324]},{"name":"NTMS_LM_DEFFERED","features":[324]},{"name":"NTMS_LM_DISABLECHANGER","features":[324]},{"name":"NTMS_LM_DISABLEDRIVE","features":[324]},{"name":"NTMS_LM_DISABLELIBRARY","features":[324]},{"name":"NTMS_LM_DISABLEMEDIA","features":[324]},{"name":"NTMS_LM_DISMOUNT","features":[324]},{"name":"NTMS_LM_DOORACCESS","features":[324]},{"name":"NTMS_LM_EJECT","features":[324]},{"name":"NTMS_LM_EJECTCLEANER","features":[324]},{"name":"NTMS_LM_ENABLECHANGER","features":[324]},{"name":"NTMS_LM_ENABLEDRIVE","features":[324]},{"name":"NTMS_LM_ENABLELIBRARY","features":[324]},{"name":"NTMS_LM_ENABLEMEDIA","features":[324]},{"name":"NTMS_LM_FAILED","features":[324]},{"name":"NTMS_LM_INJECT","features":[324]},{"name":"NTMS_LM_INJECTCLEANER","features":[324]},{"name":"NTMS_LM_INPROCESS","features":[324]},{"name":"NTMS_LM_INVALID","features":[324]},{"name":"NTMS_LM_INVENTORY","features":[324]},{"name":"NTMS_LM_MAXWORKITEM","features":[324]},{"name":"NTMS_LM_MOUNT","features":[324]},{"name":"NTMS_LM_PASSED","features":[324]},{"name":"NTMS_LM_PROCESSOMID","features":[324]},{"name":"NTMS_LM_QUEUED","features":[324]},{"name":"NTMS_LM_RELEASECLEANER","features":[324]},{"name":"NTMS_LM_REMOVE","features":[324]},{"name":"NTMS_LM_RESERVECLEANER","features":[324]},{"name":"NTMS_LM_STOPPED","features":[324]},{"name":"NTMS_LM_UPDATEOMID","features":[324]},{"name":"NTMS_LM_WAITING","features":[324]},{"name":"NTMS_LM_WRITESCRATCH","features":[324]},{"name":"NTMS_LOGICAL_MEDIA","features":[324]},{"name":"NTMS_MAXATTR_LENGTH","features":[324]},{"name":"NTMS_MAXATTR_NAMELEN","features":[324]},{"name":"NTMS_MEDIAPOOLINFORMATION","features":[324]},{"name":"NTMS_MEDIARW_READONLY","features":[324]},{"name":"NTMS_MEDIARW_REWRITABLE","features":[324]},{"name":"NTMS_MEDIARW_UNKNOWN","features":[324]},{"name":"NTMS_MEDIARW_WRITEONCE","features":[324]},{"name":"NTMS_MEDIASTATE_IDLE","features":[324]},{"name":"NTMS_MEDIASTATE_INUSE","features":[324]},{"name":"NTMS_MEDIASTATE_LOADED","features":[324]},{"name":"NTMS_MEDIASTATE_MOUNTED","features":[324]},{"name":"NTMS_MEDIASTATE_OPERROR","features":[324]},{"name":"NTMS_MEDIASTATE_OPREQ","features":[324]},{"name":"NTMS_MEDIASTATE_UNLOADED","features":[324]},{"name":"NTMS_MEDIATYPEINFORMATION","features":[324]},{"name":"NTMS_MEDIA_POOL","features":[324]},{"name":"NTMS_MEDIA_TYPE","features":[324]},{"name":"NTMS_MESSAGE_LENGTH","features":[324]},{"name":"NTMS_MODIFY_ACCESS","features":[324]},{"name":"NTMS_MOUNT_ERROR_IF_OFFLINE","features":[324]},{"name":"NTMS_MOUNT_ERROR_IF_UNAVAILABLE","features":[324]},{"name":"NTMS_MOUNT_ERROR_NOT_AVAILABLE","features":[324]},{"name":"NTMS_MOUNT_ERROR_OFFLINE","features":[324]},{"name":"NTMS_MOUNT_INFORMATION","features":[324]},{"name":"NTMS_MOUNT_NOWAIT","features":[324]},{"name":"NTMS_MOUNT_READ","features":[324]},{"name":"NTMS_MOUNT_SPECIFIC_DRIVE","features":[324]},{"name":"NTMS_MOUNT_WRITE","features":[324]},{"name":"NTMS_NEEDS_SERVICE","features":[324]},{"name":"NTMS_NOTIFICATIONINFORMATION","features":[324]},{"name":"NTMS_NOT_PRESENT","features":[324]},{"name":"NTMS_NUMBER_OF_OBJECT_TYPES","features":[324]},{"name":"NTMS_OBJECT","features":[324]},{"name":"NTMS_OBJECTINFORMATIONA","features":[305,324]},{"name":"NTMS_OBJECTINFORMATIONW","features":[305,324]},{"name":"NTMS_OBJECTNAME_LENGTH","features":[324]},{"name":"NTMS_OBJ_DELETE","features":[324]},{"name":"NTMS_OBJ_INSERT","features":[324]},{"name":"NTMS_OBJ_UPDATE","features":[324]},{"name":"NTMS_OMIDLABELID_LENGTH","features":[324]},{"name":"NTMS_OMIDLABELINFO_LENGTH","features":[324]},{"name":"NTMS_OMIDLABELTYPE_LENGTH","features":[324]},{"name":"NTMS_OMID_TYPE","features":[324]},{"name":"NTMS_OMID_TYPE_FILESYSTEM_INFO","features":[324]},{"name":"NTMS_OMID_TYPE_RAW_LABEL","features":[324]},{"name":"NTMS_OPEN_ALWAYS","features":[324]},{"name":"NTMS_OPEN_EXISTING","features":[324]},{"name":"NTMS_OPREQFLAGS_NOALERTS","features":[324]},{"name":"NTMS_OPREQFLAGS_NOAUTOPURGE","features":[324]},{"name":"NTMS_OPREQFLAGS_NOFAILEDPURGE","features":[324]},{"name":"NTMS_OPREQFLAGS_NOTRAYICON","features":[324]},{"name":"NTMS_OPREQUEST","features":[324]},{"name":"NTMS_OPREQUESTINFORMATIONA","features":[305,324]},{"name":"NTMS_OPREQUESTINFORMATIONW","features":[305,324]},{"name":"NTMS_OPREQ_CLEANER","features":[324]},{"name":"NTMS_OPREQ_DEVICESERVICE","features":[324]},{"name":"NTMS_OPREQ_MESSAGE","features":[324]},{"name":"NTMS_OPREQ_MOVEMEDIA","features":[324]},{"name":"NTMS_OPREQ_NEWMEDIA","features":[324]},{"name":"NTMS_OPREQ_UNKNOWN","features":[324]},{"name":"NTMS_OPSTATE_ACTIVE","features":[324]},{"name":"NTMS_OPSTATE_COMPLETE","features":[324]},{"name":"NTMS_OPSTATE_INPROGRESS","features":[324]},{"name":"NTMS_OPSTATE_REFUSED","features":[324]},{"name":"NTMS_OPSTATE_SUBMITTED","features":[324]},{"name":"NTMS_OPSTATE_UNKNOWN","features":[324]},{"name":"NTMS_PARTITION","features":[324]},{"name":"NTMS_PARTITIONINFORMATIONA","features":[324]},{"name":"NTMS_PARTITIONINFORMATIONW","features":[324]},{"name":"NTMS_PARTSTATE_ALLOCATED","features":[324]},{"name":"NTMS_PARTSTATE_AVAILABLE","features":[324]},{"name":"NTMS_PARTSTATE_COMPLETE","features":[324]},{"name":"NTMS_PARTSTATE_DECOMMISSIONED","features":[324]},{"name":"NTMS_PARTSTATE_FOREIGN","features":[324]},{"name":"NTMS_PARTSTATE_IMPORT","features":[324]},{"name":"NTMS_PARTSTATE_INCOMPATIBLE","features":[324]},{"name":"NTMS_PARTSTATE_RESERVED","features":[324]},{"name":"NTMS_PARTSTATE_UNKNOWN","features":[324]},{"name":"NTMS_PARTSTATE_UNPREPARED","features":[324]},{"name":"NTMS_PHYSICAL_MEDIA","features":[324]},{"name":"NTMS_PMIDINFORMATIONA","features":[324]},{"name":"NTMS_PMIDINFORMATIONW","features":[324]},{"name":"NTMS_POOLHIERARCHY_LENGTH","features":[324]},{"name":"NTMS_POOLPOLICY_KEEPOFFLINEIMPORT","features":[324]},{"name":"NTMS_POOLPOLICY_PURGEOFFLINESCRATCH","features":[324]},{"name":"NTMS_POOLTYPE_APPLICATION","features":[324]},{"name":"NTMS_POOLTYPE_FOREIGN","features":[324]},{"name":"NTMS_POOLTYPE_IMPORT","features":[324]},{"name":"NTMS_POOLTYPE_SCRATCH","features":[324]},{"name":"NTMS_POOLTYPE_UNKNOWN","features":[324]},{"name":"NTMS_PORTCONTENT_EMPTY","features":[324]},{"name":"NTMS_PORTCONTENT_FULL","features":[324]},{"name":"NTMS_PORTCONTENT_UNKNOWN","features":[324]},{"name":"NTMS_PORTPOSITION_EXTENDED","features":[324]},{"name":"NTMS_PORTPOSITION_RETRACTED","features":[324]},{"name":"NTMS_PORTPOSITION_UNKNOWN","features":[324]},{"name":"NTMS_PRIORITY_DEFAULT","features":[324]},{"name":"NTMS_PRIORITY_HIGH","features":[324]},{"name":"NTMS_PRIORITY_HIGHEST","features":[324]},{"name":"NTMS_PRIORITY_LOW","features":[324]},{"name":"NTMS_PRIORITY_LOWEST","features":[324]},{"name":"NTMS_PRIORITY_NORMAL","features":[324]},{"name":"NTMS_PRODUCTNAME_LENGTH","features":[324]},{"name":"NTMS_READY","features":[324]},{"name":"NTMS_REVISION_LENGTH","features":[324]},{"name":"NTMS_SEQUENCE_LENGTH","features":[324]},{"name":"NTMS_SERIALNUMBER_LENGTH","features":[324]},{"name":"NTMS_SESSION_QUERYEXPEDITE","features":[324]},{"name":"NTMS_SLOTSTATE_EMPTY","features":[324]},{"name":"NTMS_SLOTSTATE_FULL","features":[324]},{"name":"NTMS_SLOTSTATE_NEEDSINVENTORY","features":[324]},{"name":"NTMS_SLOTSTATE_NOTPRESENT","features":[324]},{"name":"NTMS_SLOTSTATE_UNKNOWN","features":[324]},{"name":"NTMS_STORAGESLOT","features":[324]},{"name":"NTMS_STORAGESLOTINFORMATION","features":[324]},{"name":"NTMS_UIDEST_ADD","features":[324]},{"name":"NTMS_UIDEST_DELETE","features":[324]},{"name":"NTMS_UIDEST_DELETEALL","features":[324]},{"name":"NTMS_UIOPERATION_MAX","features":[324]},{"name":"NTMS_UITYPE_ERR","features":[324]},{"name":"NTMS_UITYPE_INFO","features":[324]},{"name":"NTMS_UITYPE_INVALID","features":[324]},{"name":"NTMS_UITYPE_MAX","features":[324]},{"name":"NTMS_UITYPE_REQ","features":[324]},{"name":"NTMS_UI_DESTINATION","features":[324]},{"name":"NTMS_UNKNOWN","features":[324]},{"name":"NTMS_UNKNOWN_DRIVE","features":[324]},{"name":"NTMS_USERNAME_LENGTH","features":[324]},{"name":"NTMS_USE_ACCESS","features":[324]},{"name":"NTMS_VENDORNAME_LENGTH","features":[324]},{"name":"NetConnectionEnum","features":[324]},{"name":"NetFileClose","features":[324]},{"name":"NetFileEnum","features":[324]},{"name":"NetFileGetInfo","features":[324]},{"name":"NetServerAliasAdd","features":[324]},{"name":"NetServerAliasDel","features":[324]},{"name":"NetServerAliasEnum","features":[324]},{"name":"NetSessionDel","features":[324]},{"name":"NetSessionEnum","features":[324]},{"name":"NetSessionGetInfo","features":[324]},{"name":"NetShareAdd","features":[324]},{"name":"NetShareCheck","features":[324]},{"name":"NetShareDel","features":[324]},{"name":"NetShareDelEx","features":[324]},{"name":"NetShareDelSticky","features":[324]},{"name":"NetShareEnum","features":[324]},{"name":"NetShareEnumSticky","features":[324]},{"name":"NetShareGetInfo","features":[324]},{"name":"NetShareSetInfo","features":[324]},{"name":"NetStatisticsGet","features":[324]},{"name":"NtmsAccessMask","features":[324]},{"name":"NtmsAllocateOptions","features":[324]},{"name":"NtmsAllocationPolicy","features":[324]},{"name":"NtmsAsyncOperations","features":[324]},{"name":"NtmsAsyncStatus","features":[324]},{"name":"NtmsBarCodeState","features":[324]},{"name":"NtmsCreateNtmsMediaOptions","features":[324]},{"name":"NtmsCreateOptions","features":[324]},{"name":"NtmsDeallocationPolicy","features":[324]},{"name":"NtmsDismountOptions","features":[324]},{"name":"NtmsDoorState","features":[324]},{"name":"NtmsDriveState","features":[324]},{"name":"NtmsDriveType","features":[324]},{"name":"NtmsEjectOperation","features":[324]},{"name":"NtmsEnumerateOption","features":[324]},{"name":"NtmsInjectOperation","features":[324]},{"name":"NtmsInventoryMethod","features":[324]},{"name":"NtmsLibRequestFlags","features":[324]},{"name":"NtmsLibraryFlags","features":[324]},{"name":"NtmsLibraryType","features":[324]},{"name":"NtmsLmOperation","features":[324]},{"name":"NtmsLmState","features":[324]},{"name":"NtmsMediaPoolPolicy","features":[324]},{"name":"NtmsMediaState","features":[324]},{"name":"NtmsMountOptions","features":[324]},{"name":"NtmsMountPriority","features":[324]},{"name":"NtmsNotificationOperations","features":[324]},{"name":"NtmsObjectsTypes","features":[324]},{"name":"NtmsOpRequestFlags","features":[324]},{"name":"NtmsOperationalState","features":[324]},{"name":"NtmsOpreqCommand","features":[324]},{"name":"NtmsOpreqState","features":[324]},{"name":"NtmsPartitionState","features":[324]},{"name":"NtmsPoolType","features":[324]},{"name":"NtmsPortContent","features":[324]},{"name":"NtmsPortPosition","features":[324]},{"name":"NtmsReadWriteCharacteristics","features":[324]},{"name":"NtmsSessionOptions","features":[324]},{"name":"NtmsSlotState","features":[324]},{"name":"NtmsUIOperations","features":[324]},{"name":"NtmsUITypes","features":[324]},{"name":"OFSTRUCT","features":[324]},{"name":"OF_CANCEL","features":[324]},{"name":"OF_CREATE","features":[324]},{"name":"OF_DELETE","features":[324]},{"name":"OF_EXIST","features":[324]},{"name":"OF_PARSE","features":[324]},{"name":"OF_PROMPT","features":[324]},{"name":"OF_READ","features":[324]},{"name":"OF_READWRITE","features":[324]},{"name":"OF_REOPEN","features":[324]},{"name":"OF_SHARE_COMPAT","features":[324]},{"name":"OF_SHARE_DENY_NONE","features":[324]},{"name":"OF_SHARE_DENY_READ","features":[324]},{"name":"OF_SHARE_DENY_WRITE","features":[324]},{"name":"OF_SHARE_EXCLUSIVE","features":[324]},{"name":"OF_VERIFY","features":[324]},{"name":"OF_WRITE","features":[324]},{"name":"OPEN_ALWAYS","features":[324]},{"name":"OPEN_EXISTING","features":[324]},{"name":"ObjectIdType","features":[324]},{"name":"OpenEncryptedFileRawA","features":[324]},{"name":"OpenEncryptedFileRawW","features":[324]},{"name":"OpenEnlistment","features":[305,324]},{"name":"OpenFile","features":[324]},{"name":"OpenFileById","features":[305,308,324]},{"name":"OpenResourceManager","features":[305,324]},{"name":"OpenTransaction","features":[305,324]},{"name":"OpenTransactionManager","features":[305,324]},{"name":"OpenTransactionManagerById","features":[305,324]},{"name":"PARTITION_BASIC_DATA_GUID","features":[324]},{"name":"PARTITION_BSP_GUID","features":[324]},{"name":"PARTITION_CLUSTER_GUID","features":[324]},{"name":"PARTITION_DPP_GUID","features":[324]},{"name":"PARTITION_ENTRY_UNUSED_GUID","features":[324]},{"name":"PARTITION_LDM_DATA_GUID","features":[324]},{"name":"PARTITION_LDM_METADATA_GUID","features":[324]},{"name":"PARTITION_LEGACY_BL_GUID","features":[324]},{"name":"PARTITION_LEGACY_BL_GUID_BACKUP","features":[324]},{"name":"PARTITION_MAIN_OS_GUID","features":[324]},{"name":"PARTITION_MSFT_RECOVERY_GUID","features":[324]},{"name":"PARTITION_MSFT_RESERVED_GUID","features":[324]},{"name":"PARTITION_MSFT_SNAPSHOT_GUID","features":[324]},{"name":"PARTITION_OS_DATA_GUID","features":[324]},{"name":"PARTITION_PATCH_GUID","features":[324]},{"name":"PARTITION_PRE_INSTALLED_GUID","features":[324]},{"name":"PARTITION_SBL_CACHE_HDD_GUID","features":[324]},{"name":"PARTITION_SBL_CACHE_SSD_GUID","features":[324]},{"name":"PARTITION_SBL_CACHE_SSD_RESERVED_GUID","features":[324]},{"name":"PARTITION_SERVICING_FILES_GUID","features":[324]},{"name":"PARTITION_SERVICING_METADATA_GUID","features":[324]},{"name":"PARTITION_SERVICING_RESERVE_GUID","features":[324]},{"name":"PARTITION_SERVICING_STAGING_ROOT_GUID","features":[324]},{"name":"PARTITION_SPACES_DATA_GUID","features":[324]},{"name":"PARTITION_SPACES_GUID","features":[324]},{"name":"PARTITION_SYSTEM_GUID","features":[324]},{"name":"PARTITION_WINDOWS_SYSTEM_GUID","features":[324]},{"name":"PCLFS_COMPLETION_ROUTINE","features":[324]},{"name":"PCOPYFILE2_PROGRESS_ROUTINE","features":[305,324]},{"name":"PERM_FILE_CREATE","features":[324]},{"name":"PERM_FILE_READ","features":[324]},{"name":"PERM_FILE_WRITE","features":[324]},{"name":"PFE_EXPORT_FUNC","features":[324]},{"name":"PFE_IMPORT_FUNC","features":[324]},{"name":"PFN_IO_COMPLETION","features":[305,324]},{"name":"PIPE_ACCESS_DUPLEX","features":[324]},{"name":"PIPE_ACCESS_INBOUND","features":[324]},{"name":"PIPE_ACCESS_OUTBOUND","features":[324]},{"name":"PLOG_FULL_HANDLER_CALLBACK","features":[305,324]},{"name":"PLOG_TAIL_ADVANCE_CALLBACK","features":[305,324]},{"name":"PLOG_UNPINNED_CALLBACK","features":[305,324]},{"name":"PREPARE_TAPE_OPERATION","features":[324]},{"name":"PRIORITY_HINT","features":[324]},{"name":"PopIoRingCompletion","features":[324]},{"name":"PrePrepareComplete","features":[305,324]},{"name":"PrePrepareEnlistment","features":[305,324]},{"name":"PrepareComplete","features":[305,324]},{"name":"PrepareEnlistment","features":[305,324]},{"name":"PrepareLogArchive","features":[305,324]},{"name":"PrepareTape","features":[305,324]},{"name":"QUIC","features":[324]},{"name":"QueryDosDeviceA","features":[324]},{"name":"QueryDosDeviceW","features":[324]},{"name":"QueryIoRingCapabilities","features":[324]},{"name":"QueryLogPolicy","features":[305,324]},{"name":"QueryRecoveryAgentsOnEncryptedFile","features":[308,324]},{"name":"QueryUsersOnEncryptedFile","features":[308,324]},{"name":"READ_CONTROL","features":[324]},{"name":"READ_DIRECTORY_NOTIFY_INFORMATION_CLASS","features":[324]},{"name":"REPARSE_GUID_DATA_BUFFER","features":[324]},{"name":"REPLACEFILE_IGNORE_ACL_ERRORS","features":[324]},{"name":"REPLACEFILE_IGNORE_MERGE_ERRORS","features":[324]},{"name":"REPLACEFILE_WRITE_THROUGH","features":[324]},{"name":"REPLACE_FILE_FLAGS","features":[324]},{"name":"RESOURCE_MANAGER_COMMUNICATION","features":[324]},{"name":"RESOURCE_MANAGER_MAXIMUM_OPTION","features":[324]},{"name":"RESOURCE_MANAGER_OBJECT_PATH","features":[324]},{"name":"RESOURCE_MANAGER_VOLATILE","features":[324]},{"name":"ReOpenFile","features":[305,324]},{"name":"ReadDirectoryChangesExW","features":[305,324,310]},{"name":"ReadDirectoryChangesW","features":[305,324,310]},{"name":"ReadDirectoryNotifyExtendedInformation","features":[324]},{"name":"ReadDirectoryNotifyFullInformation","features":[324]},{"name":"ReadDirectoryNotifyInformation","features":[324]},{"name":"ReadDirectoryNotifyMaximumInformation","features":[324]},{"name":"ReadEncryptedFileRaw","features":[324]},{"name":"ReadFile","features":[305,324,310]},{"name":"ReadFileEx","features":[305,324,310]},{"name":"ReadFileScatter","features":[305,324,310]},{"name":"ReadLogArchiveMetadata","features":[305,324]},{"name":"ReadLogNotification","features":[305,324,310]},{"name":"ReadLogRecord","features":[305,324,310]},{"name":"ReadLogRestartArea","features":[305,324,310]},{"name":"ReadNextLogRecord","features":[305,324,310]},{"name":"ReadOnlyEnlistment","features":[305,324]},{"name":"ReadPreviousLogRestartArea","features":[305,324,310]},{"name":"RecoverEnlistment","features":[305,324]},{"name":"RecoverResourceManager","features":[305,324]},{"name":"RecoverTransactionManager","features":[305,324]},{"name":"RegisterForLogWriteNotification","features":[305,324]},{"name":"RegisterManageableLogClient","features":[305,324]},{"name":"RemoveDirectoryA","features":[305,324]},{"name":"RemoveDirectoryFromAppW","features":[305,324]},{"name":"RemoveDirectoryTransactedA","features":[305,324]},{"name":"RemoveDirectoryTransactedW","features":[305,324]},{"name":"RemoveDirectoryW","features":[305,324]},{"name":"RemoveLogContainer","features":[305,324]},{"name":"RemoveLogContainerSet","features":[305,324]},{"name":"RemoveLogPolicy","features":[305,324]},{"name":"RemoveUsersFromEncryptedFile","features":[308,324]},{"name":"RenameTransactionManager","features":[305,324]},{"name":"ReplaceFileA","features":[305,324]},{"name":"ReplaceFileFromAppW","features":[305,324]},{"name":"ReplaceFileW","features":[305,324]},{"name":"ReserveAndAppendLog","features":[305,324,310]},{"name":"ReserveAndAppendLogAligned","features":[305,324,310]},{"name":"RollbackComplete","features":[305,324]},{"name":"RollbackEnlistment","features":[305,324]},{"name":"RollbackTransaction","features":[305,324]},{"name":"RollbackTransactionAsync","features":[305,324]},{"name":"RollforwardTransactionManager","features":[305,324]},{"name":"SECURITY_ANONYMOUS","features":[324]},{"name":"SECURITY_CONTEXT_TRACKING","features":[324]},{"name":"SECURITY_DELEGATION","features":[324]},{"name":"SECURITY_EFFECTIVE_ONLY","features":[324]},{"name":"SECURITY_IDENTIFICATION","features":[324]},{"name":"SECURITY_IMPERSONATION","features":[324]},{"name":"SECURITY_SQOS_PRESENT","features":[324]},{"name":"SECURITY_VALID_SQOS_FLAGS","features":[324]},{"name":"SERVER_ALIAS_INFO_0","features":[305,324]},{"name":"SERVER_CERTIFICATE_INFO_0","features":[324]},{"name":"SERVER_CERTIFICATE_TYPE","features":[324]},{"name":"SESI1_NUM_ELEMENTS","features":[324]},{"name":"SESI2_NUM_ELEMENTS","features":[324]},{"name":"SESSION_INFO_0","features":[324]},{"name":"SESSION_INFO_1","features":[324]},{"name":"SESSION_INFO_10","features":[324]},{"name":"SESSION_INFO_2","features":[324]},{"name":"SESSION_INFO_502","features":[324]},{"name":"SESSION_INFO_USER_FLAGS","features":[324]},{"name":"SESS_GUEST","features":[324]},{"name":"SESS_NOENCRYPTION","features":[324]},{"name":"SET_FILE_POINTER_MOVE_METHOD","features":[324]},{"name":"SET_TAPE_DRIVE_INFORMATION","features":[324]},{"name":"SET_TAPE_MEDIA_INFORMATION","features":[324]},{"name":"SHARE_CURRENT_USES_PARMNUM","features":[324]},{"name":"SHARE_FILE_SD_PARMNUM","features":[324]},{"name":"SHARE_INFO_0","features":[324]},{"name":"SHARE_INFO_1","features":[324]},{"name":"SHARE_INFO_1004","features":[324]},{"name":"SHARE_INFO_1005","features":[324]},{"name":"SHARE_INFO_1006","features":[324]},{"name":"SHARE_INFO_1501","features":[308,324]},{"name":"SHARE_INFO_1503","features":[324]},{"name":"SHARE_INFO_2","features":[324]},{"name":"SHARE_INFO_501","features":[324]},{"name":"SHARE_INFO_502","features":[308,324]},{"name":"SHARE_INFO_503","features":[308,324]},{"name":"SHARE_INFO_PERMISSIONS","features":[324]},{"name":"SHARE_MAX_USES_PARMNUM","features":[324]},{"name":"SHARE_NETNAME_PARMNUM","features":[324]},{"name":"SHARE_PASSWD_PARMNUM","features":[324]},{"name":"SHARE_PATH_PARMNUM","features":[324]},{"name":"SHARE_PERMISSIONS_PARMNUM","features":[324]},{"name":"SHARE_QOS_POLICY_PARMNUM","features":[324]},{"name":"SHARE_REMARK_PARMNUM","features":[324]},{"name":"SHARE_SERVER_PARMNUM","features":[324]},{"name":"SHARE_TYPE","features":[324]},{"name":"SHARE_TYPE_PARMNUM","features":[324]},{"name":"SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM","features":[324]},{"name":"SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING","features":[324]},{"name":"SHI1005_FLAGS_CLUSTER_MANAGED","features":[324]},{"name":"SHI1005_FLAGS_COMPRESS_DATA","features":[324]},{"name":"SHI1005_FLAGS_DFS","features":[324]},{"name":"SHI1005_FLAGS_DFS_ROOT","features":[324]},{"name":"SHI1005_FLAGS_DISABLE_CLIENT_BUFFERING","features":[324]},{"name":"SHI1005_FLAGS_DISABLE_DIRECTORY_HANDLE_LEASING","features":[324]},{"name":"SHI1005_FLAGS_ENABLE_CA","features":[324]},{"name":"SHI1005_FLAGS_ENABLE_HASH","features":[324]},{"name":"SHI1005_FLAGS_ENCRYPT_DATA","features":[324]},{"name":"SHI1005_FLAGS_FORCE_LEVELII_OPLOCK","features":[324]},{"name":"SHI1005_FLAGS_FORCE_SHARED_DELETE","features":[324]},{"name":"SHI1005_FLAGS_IDENTITY_REMOTING","features":[324]},{"name":"SHI1005_FLAGS_ISOLATED_TRANSPORT","features":[324]},{"name":"SHI1005_FLAGS_RESERVED","features":[324]},{"name":"SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS","features":[324]},{"name":"SHI1_NUM_ELEMENTS","features":[324]},{"name":"SHI2_NUM_ELEMENTS","features":[324]},{"name":"SHI_USES_UNLIMITED","features":[324]},{"name":"SPECIFIC_RIGHTS_ALL","features":[324]},{"name":"STANDARD_RIGHTS_ALL","features":[324]},{"name":"STANDARD_RIGHTS_EXECUTE","features":[324]},{"name":"STANDARD_RIGHTS_READ","features":[324]},{"name":"STANDARD_RIGHTS_REQUIRED","features":[324]},{"name":"STANDARD_RIGHTS_WRITE","features":[324]},{"name":"STATSOPT_CLR","features":[324]},{"name":"STAT_SERVER_0","features":[324]},{"name":"STAT_WORKSTATION_0","features":[324]},{"name":"STORAGE_BUS_TYPE","features":[324]},{"name":"STREAM_INFO_LEVELS","features":[324]},{"name":"STYPE_DEVICE","features":[324]},{"name":"STYPE_DISKTREE","features":[324]},{"name":"STYPE_IPC","features":[324]},{"name":"STYPE_MASK","features":[324]},{"name":"STYPE_PRINTQ","features":[324]},{"name":"STYPE_RESERVED1","features":[324]},{"name":"STYPE_RESERVED2","features":[324]},{"name":"STYPE_RESERVED3","features":[324]},{"name":"STYPE_RESERVED4","features":[324]},{"name":"STYPE_RESERVED5","features":[324]},{"name":"STYPE_RESERVED_ALL","features":[324]},{"name":"STYPE_SPECIAL","features":[324]},{"name":"STYPE_TEMPORARY","features":[324]},{"name":"SYMBOLIC_LINK_FLAGS","features":[324]},{"name":"SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE","features":[324]},{"name":"SYMBOLIC_LINK_FLAG_DIRECTORY","features":[324]},{"name":"SYNCHRONIZE","features":[324]},{"name":"ScanLogContainers","features":[305,324]},{"name":"SearchPathA","features":[324]},{"name":"SearchPathW","features":[324]},{"name":"SetEncryptedFileMetadata","features":[308,324]},{"name":"SetEndOfFile","features":[305,324]},{"name":"SetEndOfLog","features":[305,324,310]},{"name":"SetEnlistmentRecoveryInformation","features":[305,324]},{"name":"SetFileApisToANSI","features":[324]},{"name":"SetFileApisToOEM","features":[324]},{"name":"SetFileAttributesA","features":[305,324]},{"name":"SetFileAttributesFromAppW","features":[305,324]},{"name":"SetFileAttributesTransactedA","features":[305,324]},{"name":"SetFileAttributesTransactedW","features":[305,324]},{"name":"SetFileAttributesW","features":[305,324]},{"name":"SetFileBandwidthReservation","features":[305,324]},{"name":"SetFileCompletionNotificationModes","features":[305,324]},{"name":"SetFileInformationByHandle","features":[305,324]},{"name":"SetFileIoOverlappedRange","features":[305,324]},{"name":"SetFilePointer","features":[305,324]},{"name":"SetFilePointerEx","features":[305,324]},{"name":"SetFileShortNameA","features":[305,324]},{"name":"SetFileShortNameW","features":[305,324]},{"name":"SetFileTime","features":[305,324]},{"name":"SetFileValidData","features":[305,324]},{"name":"SetIoRingCompletionEvent","features":[305,324]},{"name":"SetLogArchiveMode","features":[305,324]},{"name":"SetLogArchiveTail","features":[305,324]},{"name":"SetLogFileSizeWithPolicy","features":[305,324]},{"name":"SetResourceManagerCompletionPort","features":[305,324]},{"name":"SetSearchPathMode","features":[305,324]},{"name":"SetTapeParameters","features":[305,324]},{"name":"SetTapePosition","features":[305,324]},{"name":"SetTransactionInformation","features":[305,324]},{"name":"SetUserFileEncryptionKey","features":[308,324]},{"name":"SetUserFileEncryptionKeyEx","features":[308,324]},{"name":"SetVolumeLabelA","features":[305,324]},{"name":"SetVolumeLabelW","features":[305,324]},{"name":"SetVolumeMountPointA","features":[305,324]},{"name":"SetVolumeMountPointW","features":[305,324]},{"name":"SinglePhaseReject","features":[305,324]},{"name":"SubmitIoRing","features":[324]},{"name":"TAPEMARK_TYPE","features":[324]},{"name":"TAPE_ABSOLUTE_BLOCK","features":[324]},{"name":"TAPE_ABSOLUTE_POSITION","features":[324]},{"name":"TAPE_ERASE","features":[305,324]},{"name":"TAPE_ERASE_LONG","features":[324]},{"name":"TAPE_ERASE_SHORT","features":[324]},{"name":"TAPE_FILEMARKS","features":[324]},{"name":"TAPE_FIXED_PARTITIONS","features":[324]},{"name":"TAPE_FORMAT","features":[324]},{"name":"TAPE_GET_POSITION","features":[324]},{"name":"TAPE_INFORMATION_TYPE","features":[324]},{"name":"TAPE_INITIATOR_PARTITIONS","features":[324]},{"name":"TAPE_LOAD","features":[324]},{"name":"TAPE_LOCK","features":[324]},{"name":"TAPE_LOGICAL_BLOCK","features":[324]},{"name":"TAPE_LOGICAL_POSITION","features":[324]},{"name":"TAPE_LONG_FILEMARKS","features":[324]},{"name":"TAPE_POSITION_METHOD","features":[324]},{"name":"TAPE_POSITION_TYPE","features":[324]},{"name":"TAPE_PREPARE","features":[305,324]},{"name":"TAPE_REWIND","features":[324]},{"name":"TAPE_SELECT_PARTITIONS","features":[324]},{"name":"TAPE_SETMARKS","features":[324]},{"name":"TAPE_SET_POSITION","features":[305,324]},{"name":"TAPE_SHORT_FILEMARKS","features":[324]},{"name":"TAPE_SPACE_END_OF_DATA","features":[324]},{"name":"TAPE_SPACE_FILEMARKS","features":[324]},{"name":"TAPE_SPACE_RELATIVE_BLOCKS","features":[324]},{"name":"TAPE_SPACE_SEQUENTIAL_FMKS","features":[324]},{"name":"TAPE_SPACE_SEQUENTIAL_SMKS","features":[324]},{"name":"TAPE_SPACE_SETMARKS","features":[324]},{"name":"TAPE_TENSION","features":[324]},{"name":"TAPE_UNLOAD","features":[324]},{"name":"TAPE_UNLOCK","features":[324]},{"name":"TAPE_WRITE_MARKS","features":[305,324]},{"name":"TRANSACTIONMANAGER_OBJECT_PATH","features":[324]},{"name":"TRANSACTION_DO_NOT_PROMOTE","features":[324]},{"name":"TRANSACTION_MANAGER_COMMIT_DEFAULT","features":[324]},{"name":"TRANSACTION_MANAGER_COMMIT_LOWEST","features":[324]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_HIVES","features":[324]},{"name":"TRANSACTION_MANAGER_COMMIT_SYSTEM_VOLUME","features":[324]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_PROGRESS","features":[324]},{"name":"TRANSACTION_MANAGER_CORRUPT_FOR_RECOVERY","features":[324]},{"name":"TRANSACTION_MANAGER_MAXIMUM_OPTION","features":[324]},{"name":"TRANSACTION_MANAGER_VOLATILE","features":[324]},{"name":"TRANSACTION_MAXIMUM_OPTION","features":[324]},{"name":"TRANSACTION_NOTIFICATION","features":[324]},{"name":"TRANSACTION_NOTIFICATION_MARSHAL_ARGUMENT","features":[324]},{"name":"TRANSACTION_NOTIFICATION_PROPAGATE_ARGUMENT","features":[324]},{"name":"TRANSACTION_NOTIFICATION_RECOVERY_ARGUMENT","features":[324]},{"name":"TRANSACTION_NOTIFICATION_SAVEPOINT_ARGUMENT","features":[324]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_ARGUMENT","features":[324]},{"name":"TRANSACTION_NOTIFICATION_TM_ONLINE_FLAG_IS_CLUSTERED","features":[324]},{"name":"TRANSACTION_NOTIFY_COMMIT","features":[324]},{"name":"TRANSACTION_NOTIFY_COMMIT_COMPLETE","features":[324]},{"name":"TRANSACTION_NOTIFY_COMMIT_FINALIZE","features":[324]},{"name":"TRANSACTION_NOTIFY_COMMIT_REQUEST","features":[324]},{"name":"TRANSACTION_NOTIFY_DELEGATE_COMMIT","features":[324]},{"name":"TRANSACTION_NOTIFY_ENLIST_MASK","features":[324]},{"name":"TRANSACTION_NOTIFY_ENLIST_PREPREPARE","features":[324]},{"name":"TRANSACTION_NOTIFY_INDOUBT","features":[324]},{"name":"TRANSACTION_NOTIFY_LAST_RECOVER","features":[324]},{"name":"TRANSACTION_NOTIFY_MARSHAL","features":[324]},{"name":"TRANSACTION_NOTIFY_MASK","features":[324]},{"name":"TRANSACTION_NOTIFY_PREPARE","features":[324]},{"name":"TRANSACTION_NOTIFY_PREPARE_COMPLETE","features":[324]},{"name":"TRANSACTION_NOTIFY_PREPREPARE","features":[324]},{"name":"TRANSACTION_NOTIFY_PREPREPARE_COMPLETE","features":[324]},{"name":"TRANSACTION_NOTIFY_PROMOTE","features":[324]},{"name":"TRANSACTION_NOTIFY_PROMOTE_NEW","features":[324]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PULL","features":[324]},{"name":"TRANSACTION_NOTIFY_PROPAGATE_PUSH","features":[324]},{"name":"TRANSACTION_NOTIFY_RECOVER","features":[324]},{"name":"TRANSACTION_NOTIFY_RECOVER_QUERY","features":[324]},{"name":"TRANSACTION_NOTIFY_REQUEST_OUTCOME","features":[324]},{"name":"TRANSACTION_NOTIFY_RM_DISCONNECTED","features":[324]},{"name":"TRANSACTION_NOTIFY_ROLLBACK","features":[324]},{"name":"TRANSACTION_NOTIFY_ROLLBACK_COMPLETE","features":[324]},{"name":"TRANSACTION_NOTIFY_SINGLE_PHASE_COMMIT","features":[324]},{"name":"TRANSACTION_NOTIFY_TM_ONLINE","features":[324]},{"name":"TRANSACTION_OBJECT_PATH","features":[324]},{"name":"TRANSACTION_OUTCOME","features":[324]},{"name":"TRUNCATE_EXISTING","features":[324]},{"name":"TXFS_MINIVERSION","features":[324]},{"name":"TXFS_MINIVERSION_COMMITTED_VIEW","features":[324]},{"name":"TXFS_MINIVERSION_DEFAULT_VIEW","features":[324]},{"name":"TXFS_MINIVERSION_DIRTY_VIEW","features":[324]},{"name":"TXF_ID","features":[324]},{"name":"TXF_LOG_RECORD_AFFECTED_FILE","features":[324]},{"name":"TXF_LOG_RECORD_BASE","features":[324]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_ABORT","features":[324]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_COMMIT","features":[324]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_DATA","features":[324]},{"name":"TXF_LOG_RECORD_GENERIC_TYPE_PREPARE","features":[324]},{"name":"TXF_LOG_RECORD_TRUNCATE","features":[324]},{"name":"TXF_LOG_RECORD_TYPE","features":[324]},{"name":"TXF_LOG_RECORD_TYPE_AFFECTED_FILE","features":[324]},{"name":"TXF_LOG_RECORD_TYPE_TRUNCATE","features":[324]},{"name":"TXF_LOG_RECORD_TYPE_WRITE","features":[324]},{"name":"TXF_LOG_RECORD_WRITE","features":[324]},{"name":"TerminateLogArchive","features":[305,324]},{"name":"TerminateReadLog","features":[305,324]},{"name":"TransactionOutcomeAborted","features":[324]},{"name":"TransactionOutcomeCommitted","features":[324]},{"name":"TransactionOutcomeUndetermined","features":[324]},{"name":"TruncateLog","features":[305,324,310]},{"name":"TxfGetThreadMiniVersionForCreate","features":[324]},{"name":"TxfLogCreateFileReadContext","features":[305,324]},{"name":"TxfLogCreateRangeReadContext","features":[305,324]},{"name":"TxfLogDestroyReadContext","features":[305,324]},{"name":"TxfLogReadRecords","features":[305,324]},{"name":"TxfLogRecordGetFileName","features":[305,324]},{"name":"TxfLogRecordGetGenericType","features":[305,324]},{"name":"TxfReadMetadataInfo","features":[305,324]},{"name":"TxfSetThreadMiniVersionForCreate","features":[324]},{"name":"UnlockFile","features":[305,324]},{"name":"UnlockFileEx","features":[305,324,310]},{"name":"VER_FIND_FILE_FLAGS","features":[324]},{"name":"VER_FIND_FILE_STATUS","features":[324]},{"name":"VER_INSTALL_FILE_FLAGS","features":[324]},{"name":"VER_INSTALL_FILE_STATUS","features":[324]},{"name":"VFFF_ISSHAREDFILE","features":[324]},{"name":"VFF_BUFFTOOSMALL","features":[324]},{"name":"VFF_CURNEDEST","features":[324]},{"name":"VFF_FILEINUSE","features":[324]},{"name":"VFT2_DRV_COMM","features":[324]},{"name":"VFT2_DRV_DISPLAY","features":[324]},{"name":"VFT2_DRV_INPUTMETHOD","features":[324]},{"name":"VFT2_DRV_INSTALLABLE","features":[324]},{"name":"VFT2_DRV_KEYBOARD","features":[324]},{"name":"VFT2_DRV_LANGUAGE","features":[324]},{"name":"VFT2_DRV_MOUSE","features":[324]},{"name":"VFT2_DRV_NETWORK","features":[324]},{"name":"VFT2_DRV_PRINTER","features":[324]},{"name":"VFT2_DRV_SOUND","features":[324]},{"name":"VFT2_DRV_SYSTEM","features":[324]},{"name":"VFT2_DRV_VERSIONED_PRINTER","features":[324]},{"name":"VFT2_FONT_RASTER","features":[324]},{"name":"VFT2_FONT_TRUETYPE","features":[324]},{"name":"VFT2_FONT_VECTOR","features":[324]},{"name":"VFT2_UNKNOWN","features":[324]},{"name":"VFT_APP","features":[324]},{"name":"VFT_DLL","features":[324]},{"name":"VFT_DRV","features":[324]},{"name":"VFT_FONT","features":[324]},{"name":"VFT_STATIC_LIB","features":[324]},{"name":"VFT_UNKNOWN","features":[324]},{"name":"VFT_VXD","features":[324]},{"name":"VIFF_DONTDELETEOLD","features":[324]},{"name":"VIFF_FORCEINSTALL","features":[324]},{"name":"VIF_ACCESSVIOLATION","features":[324]},{"name":"VIF_BUFFTOOSMALL","features":[324]},{"name":"VIF_CANNOTCREATE","features":[324]},{"name":"VIF_CANNOTDELETE","features":[324]},{"name":"VIF_CANNOTDELETECUR","features":[324]},{"name":"VIF_CANNOTLOADCABINET","features":[324]},{"name":"VIF_CANNOTLOADLZ32","features":[324]},{"name":"VIF_CANNOTREADDST","features":[324]},{"name":"VIF_CANNOTREADSRC","features":[324]},{"name":"VIF_CANNOTRENAME","features":[324]},{"name":"VIF_DIFFCODEPG","features":[324]},{"name":"VIF_DIFFLANG","features":[324]},{"name":"VIF_DIFFTYPE","features":[324]},{"name":"VIF_FILEINUSE","features":[324]},{"name":"VIF_MISMATCH","features":[324]},{"name":"VIF_OUTOFMEMORY","features":[324]},{"name":"VIF_OUTOFSPACE","features":[324]},{"name":"VIF_SHARINGVIOLATION","features":[324]},{"name":"VIF_SRCOLD","features":[324]},{"name":"VIF_TEMPFILE","features":[324]},{"name":"VIF_WRITEPROT","features":[324]},{"name":"VOLUME_ALLOCATE_BC_STREAM_INPUT","features":[305,324]},{"name":"VOLUME_ALLOCATE_BC_STREAM_OUTPUT","features":[324]},{"name":"VOLUME_ALLOCATION_HINT_INPUT","features":[324]},{"name":"VOLUME_ALLOCATION_HINT_OUTPUT","features":[324]},{"name":"VOLUME_CRITICAL_IO","features":[324]},{"name":"VOLUME_FAILOVER_SET","features":[324]},{"name":"VOLUME_GET_BC_PROPERTIES_INPUT","features":[324]},{"name":"VOLUME_GET_BC_PROPERTIES_OUTPUT","features":[324]},{"name":"VOLUME_LOGICAL_OFFSET","features":[324]},{"name":"VOLUME_NAME_DOS","features":[324]},{"name":"VOLUME_NAME_GUID","features":[324]},{"name":"VOLUME_NAME_NONE","features":[324]},{"name":"VOLUME_NAME_NT","features":[324]},{"name":"VOLUME_NUMBER","features":[324]},{"name":"VOLUME_PHYSICAL_OFFSET","features":[324]},{"name":"VOLUME_PHYSICAL_OFFSETS","features":[324]},{"name":"VOLUME_READ_PLEX_INPUT","features":[324]},{"name":"VOLUME_SET_GPT_ATTRIBUTES_INFORMATION","features":[305,324]},{"name":"VOLUME_SHRINK_INFO","features":[324]},{"name":"VOS_DOS","features":[324]},{"name":"VOS_DOS_WINDOWS16","features":[324]},{"name":"VOS_DOS_WINDOWS32","features":[324]},{"name":"VOS_NT","features":[324]},{"name":"VOS_NT_WINDOWS32","features":[324]},{"name":"VOS_OS216","features":[324]},{"name":"VOS_OS216_PM16","features":[324]},{"name":"VOS_OS232","features":[324]},{"name":"VOS_OS232_PM32","features":[324]},{"name":"VOS_UNKNOWN","features":[324]},{"name":"VOS_WINCE","features":[324]},{"name":"VOS__BASE","features":[324]},{"name":"VOS__PM16","features":[324]},{"name":"VOS__PM32","features":[324]},{"name":"VOS__WINDOWS16","features":[324]},{"name":"VOS__WINDOWS32","features":[324]},{"name":"VS_FFI_FILEFLAGSMASK","features":[324]},{"name":"VS_FFI_SIGNATURE","features":[324]},{"name":"VS_FFI_STRUCVERSION","features":[324]},{"name":"VS_FF_DEBUG","features":[324]},{"name":"VS_FF_INFOINFERRED","features":[324]},{"name":"VS_FF_PATCHED","features":[324]},{"name":"VS_FF_PRERELEASE","features":[324]},{"name":"VS_FF_PRIVATEBUILD","features":[324]},{"name":"VS_FF_SPECIALBUILD","features":[324]},{"name":"VS_FIXEDFILEINFO","features":[324]},{"name":"VS_FIXEDFILEINFO_FILE_FLAGS","features":[324]},{"name":"VS_FIXEDFILEINFO_FILE_OS","features":[324]},{"name":"VS_FIXEDFILEINFO_FILE_SUBTYPE","features":[324]},{"name":"VS_FIXEDFILEINFO_FILE_TYPE","features":[324]},{"name":"VS_USER_DEFINED","features":[324]},{"name":"VS_VERSION_INFO","features":[324]},{"name":"ValidateLog","features":[305,308,324]},{"name":"VerFindFileA","features":[324]},{"name":"VerFindFileW","features":[324]},{"name":"VerInstallFileA","features":[324]},{"name":"VerInstallFileW","features":[324]},{"name":"VerLanguageNameA","features":[324]},{"name":"VerLanguageNameW","features":[324]},{"name":"VerQueryValueA","features":[305,324]},{"name":"VerQueryValueW","features":[305,324]},{"name":"WIM_BOOT_NOT_OS_WIM","features":[324]},{"name":"WIM_BOOT_OS_WIM","features":[324]},{"name":"WIM_ENTRY_FLAG_NOT_ACTIVE","features":[324]},{"name":"WIM_ENTRY_FLAG_SUSPENDED","features":[324]},{"name":"WIM_ENTRY_INFO","features":[324]},{"name":"WIM_EXTERNAL_FILE_INFO","features":[324]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_NOT_ACTIVE","features":[324]},{"name":"WIM_EXTERNAL_FILE_INFO_FLAG_SUSPENDED","features":[324]},{"name":"WIM_PROVIDER_HASH_SIZE","features":[324]},{"name":"WIN32_FILE_ATTRIBUTE_DATA","features":[305,324]},{"name":"WIN32_FIND_DATAA","features":[305,324]},{"name":"WIN32_FIND_DATAW","features":[305,324]},{"name":"WIN32_FIND_STREAM_DATA","features":[324]},{"name":"WIN32_STREAM_ID","features":[324]},{"name":"WINEFS_SETUSERKEY_SET_CAPABILITIES","features":[324]},{"name":"WIN_STREAM_ID","features":[324]},{"name":"WOF_FILE_COMPRESSION_INFO_V0","features":[324]},{"name":"WOF_FILE_COMPRESSION_INFO_V1","features":[324]},{"name":"WOF_PROVIDER_FILE","features":[324]},{"name":"WOF_PROVIDER_WIM","features":[324]},{"name":"WRITE_DAC","features":[324]},{"name":"WRITE_OWNER","features":[324]},{"name":"WofEnumEntries","features":[305,324]},{"name":"WofEnumEntryProc","features":[305,324]},{"name":"WofEnumFilesProc","features":[305,324]},{"name":"WofFileEnumFiles","features":[305,324]},{"name":"WofGetDriverVersion","features":[305,324]},{"name":"WofIsExternalFile","features":[305,324]},{"name":"WofSetFileDataLocation","features":[305,324]},{"name":"WofShouldCompressBinaries","features":[305,324]},{"name":"WofWimAddEntry","features":[324]},{"name":"WofWimEnumFiles","features":[305,324]},{"name":"WofWimRemoveEntry","features":[324]},{"name":"WofWimSuspendEntry","features":[324]},{"name":"WofWimUpdateEntry","features":[324]},{"name":"Wow64DisableWow64FsRedirection","features":[305,324]},{"name":"Wow64EnableWow64FsRedirection","features":[305,324]},{"name":"Wow64RevertWow64FsRedirection","features":[305,324]},{"name":"WriteEncryptedFileRaw","features":[324]},{"name":"WriteFile","features":[305,324,310]},{"name":"WriteFileEx","features":[305,324,310]},{"name":"WriteFileGather","features":[305,324,310]},{"name":"WriteLogRestartArea","features":[305,324,310]},{"name":"WriteTapemark","features":[305,324]},{"name":"_FT_TYPES_DEFINITION_","features":[324]}],"513":[{"name":"BlockRange","features":[509]},{"name":"BlockRangeList","features":[509]},{"name":"BootOptions","features":[509]},{"name":"CATID_SMTP_DNSRESOLVERRECORDSINK","features":[509]},{"name":"CATID_SMTP_DSN","features":[509]},{"name":"CATID_SMTP_GET_AUX_DOMAIN_INFO_FLAGS","features":[509]},{"name":"CATID_SMTP_LOG","features":[509]},{"name":"CATID_SMTP_MAXMSGSIZE","features":[509]},{"name":"CATID_SMTP_MSGTRACKLOG","features":[509]},{"name":"CATID_SMTP_ON_BEFORE_DATA","features":[509]},{"name":"CATID_SMTP_ON_INBOUND_COMMAND","features":[509]},{"name":"CATID_SMTP_ON_MESSAGE_START","features":[509]},{"name":"CATID_SMTP_ON_PER_RECIPIENT","features":[509]},{"name":"CATID_SMTP_ON_SERVER_RESPONSE","features":[509]},{"name":"CATID_SMTP_ON_SESSION_END","features":[509]},{"name":"CATID_SMTP_ON_SESSION_START","features":[509]},{"name":"CATID_SMTP_STORE_DRIVER","features":[509]},{"name":"CATID_SMTP_TRANSPORT_CATEGORIZE","features":[509]},{"name":"CATID_SMTP_TRANSPORT_POSTCATEGORIZE","features":[509]},{"name":"CATID_SMTP_TRANSPORT_PRECATEGORIZE","features":[509]},{"name":"CATID_SMTP_TRANSPORT_ROUTER","features":[509]},{"name":"CATID_SMTP_TRANSPORT_SUBMISSION","features":[509]},{"name":"CLSID_SmtpCat","features":[509]},{"name":"CloseIMsgSession","features":[509]},{"name":"DDiscFormat2DataEvents","features":[509,356]},{"name":"DDiscFormat2EraseEvents","features":[509,356]},{"name":"DDiscFormat2RawCDEvents","features":[509,356]},{"name":"DDiscFormat2TrackAtOnceEvents","features":[509,356]},{"name":"DDiscMaster2Events","features":[509,356]},{"name":"DFileSystemImageEvents","features":[509,356]},{"name":"DFileSystemImageImportEvents","features":[509,356]},{"name":"DISC_RECORDER_STATE_FLAGS","features":[509]},{"name":"DISPID_DDISCFORMAT2DATAEVENTS_UPDATE","features":[509]},{"name":"DISPID_DDISCFORMAT2RAWCDEVENTS_UPDATE","features":[509]},{"name":"DISPID_DDISCFORMAT2TAOEVENTS_UPDATE","features":[509]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEADDED","features":[509]},{"name":"DISPID_DDISCMASTER2EVENTS_DEVICEREMOVED","features":[509]},{"name":"DISPID_DFILESYSTEMIMAGEEVENTS_UPDATE","features":[509]},{"name":"DISPID_DFILESYSTEMIMAGEIMPORTEVENTS_UPDATEIMPORT","features":[509]},{"name":"DISPID_DWRITEENGINE2EVENTS_UPDATE","features":[509]},{"name":"DISPID_IBLOCKRANGELIST_BLOCKRANGES","features":[509]},{"name":"DISPID_IBLOCKRANGE_ENDLBA","features":[509]},{"name":"DISPID_IBLOCKRANGE_STARTLBA","features":[509]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_CURRENTACTION","features":[509]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ELAPSEDTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDREMAININGTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2DATAEVENTARGS_ESTIMATEDTOTALTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_BUFFERUNDERRUNFREEDISABLED","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_CANCELWRITE","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_CLIENTNAME","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIASTATUS","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTMEDIATYPE","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTROTATIONTYPEISPURECAV","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_CURRENTWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_DISABLEDVDCOMPATIBILITYMODE","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEMEDIATOBECLOSED","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_FORCEOVERWRITE","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_FREESECTORS","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_LASTSECTOROFPREVIOUSSESSION","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_MUTLISESSIONINTERFACES","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_NEXTWRITABLEADDRESS","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_POSTGAPALREADYINIMAGE","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_RECORDER","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDROTATIONTYPEISPURECAV","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_REQUESTEDWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_SETWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_STARTSECTOROFPREVIOUSSESSION","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_SUPPORTEDWRITESPEEDS","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_TOTALSECTORS","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_WRITE","features":[509]},{"name":"DISPID_IDISCFORMAT2DATA_WRITEPROTECTSTATUS","features":[509]},{"name":"DISPID_IDISCFORMAT2ERASEEVENTS_UPDATE","features":[509]},{"name":"DISPID_IDISCFORMAT2ERASE_CLIENTNAME","features":[509]},{"name":"DISPID_IDISCFORMAT2ERASE_ERASEMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2ERASE_FULLERASE","features":[509]},{"name":"DISPID_IDISCFORMAT2ERASE_MEDIATYPE","features":[509]},{"name":"DISPID_IDISCFORMAT2ERASE_RECORDER","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTACTION","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_CURRENTTRACKNUMBER","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ELAPSEDTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDREMAININGTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCDEVENTARGS_ESTIMATEDTOTALTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_BUFFERUNDERRUNFREEDISABLED","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_CANCELWRITE","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_CLIENTNAME","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTMEDIATYPE","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTROTATIONTYPEISPURECAV","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_CURRENTWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_LASTPOSSIBLESTARTOFLEADOUT","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_PREPAREMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_RECORDER","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_RELEASEMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDDATASECTORTYPE","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDROTATIONTYPEISPURECAV","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_REQUESTEDWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_SETWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_STARTOFNEXTSESSION","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDDATASECTORTYPES","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_SUPPORTEDWRITESPEEDS","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2RAWCD_WRITEMEDIAWITHVALIDATION","features":[509]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTACTION","features":[509]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_CURRENTTRACKNUMBER","features":[509]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ELAPSEDTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDREMAININGTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2TAOEVENTARGS_ESTIMATEDTOTALTIME","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_ADDAUDIOTRACK","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_BUFFERUNDERRUNFREEDISABLED","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_CANCELADDTRACK","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_CLIENTNAME","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTMEDIATYPE","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTROTATIONTYPEISPURECAV","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_CURRENTWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_DONOTFINALIZEMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_EXPECTEDTABLEOFCONTENTS","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_FINISHMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_FREESECTORSONMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_NUMBEROFEXISTINGTRACKS","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_PREPAREMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_RECORDER","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDROTATIONTYPEISPURECAV","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_REQUESTEDWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_SETWRITESPEED","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDDESCRIPTORS","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_SUPPORTEDWRITESPEEDS","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_TOTALSECTORSONMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2TAO_USEDSECTORSONMEDIA","features":[509]},{"name":"DISPID_IDISCFORMAT2_MEDIAHEURISTICALLYBLANK","features":[509]},{"name":"DISPID_IDISCFORMAT2_MEDIAPHYSICALLYBLANK","features":[509]},{"name":"DISPID_IDISCFORMAT2_MEDIASUPPORTED","features":[509]},{"name":"DISPID_IDISCFORMAT2_RECORDERSUPPORTED","features":[509]},{"name":"DISPID_IDISCFORMAT2_SUPPORTEDMEDIATYPES","features":[509]},{"name":"DISPID_IDISCRECORDER2_ACQUIREEXCLUSIVEACCESS","features":[509]},{"name":"DISPID_IDISCRECORDER2_ACTIVEDISCRECORDER","features":[509]},{"name":"DISPID_IDISCRECORDER2_CLOSETRAY","features":[509]},{"name":"DISPID_IDISCRECORDER2_CURRENTFEATUREPAGES","features":[509]},{"name":"DISPID_IDISCRECORDER2_CURRENTPROFILES","features":[509]},{"name":"DISPID_IDISCRECORDER2_DEVICECANLOADMEDIA","features":[509]},{"name":"DISPID_IDISCRECORDER2_DISABLEMCN","features":[509]},{"name":"DISPID_IDISCRECORDER2_EJECTMEDIA","features":[509]},{"name":"DISPID_IDISCRECORDER2_ENABLEMCN","features":[509]},{"name":"DISPID_IDISCRECORDER2_EXCLUSIVEACCESSOWNER","features":[509]},{"name":"DISPID_IDISCRECORDER2_INITIALIZEDISCRECORDER","features":[509]},{"name":"DISPID_IDISCRECORDER2_LEGACYDEVICENUMBER","features":[509]},{"name":"DISPID_IDISCRECORDER2_PRODUCTID","features":[509]},{"name":"DISPID_IDISCRECORDER2_PRODUCTREVISION","features":[509]},{"name":"DISPID_IDISCRECORDER2_RELEASEEXCLUSIVEACCESS","features":[509]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDFEATUREPAGES","features":[509]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDMODEPAGES","features":[509]},{"name":"DISPID_IDISCRECORDER2_SUPPORTEDPROFILES","features":[509]},{"name":"DISPID_IDISCRECORDER2_VENDORID","features":[509]},{"name":"DISPID_IDISCRECORDER2_VOLUMENAME","features":[509]},{"name":"DISPID_IDISCRECORDER2_VOLUMEPATHNAMES","features":[509]},{"name":"DISPID_IMULTISESSION_FIRSTDATASESSION","features":[509]},{"name":"DISPID_IMULTISESSION_FREESECTORS","features":[509]},{"name":"DISPID_IMULTISESSION_IMPORTRECORDER","features":[509]},{"name":"DISPID_IMULTISESSION_INUSE","features":[509]},{"name":"DISPID_IMULTISESSION_LASTSECTOROFPREVIOUSSESSION","features":[509]},{"name":"DISPID_IMULTISESSION_LASTWRITTENADDRESS","features":[509]},{"name":"DISPID_IMULTISESSION_NEXTWRITABLEADDRESS","features":[509]},{"name":"DISPID_IMULTISESSION_SECTORSONMEDIA","features":[509]},{"name":"DISPID_IMULTISESSION_STARTSECTOROFPREVIOUSSESSION","features":[509]},{"name":"DISPID_IMULTISESSION_SUPPORTEDONCURRENTMEDIA","features":[509]},{"name":"DISPID_IMULTISESSION_WRITEUNITSIZE","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSPECIALPREGAP","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDSUBCODERWGENERATOR","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_ADDTRACK","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_CREATERESULTIMAGE","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_DISABLEGAPLESSAUDIO","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_EXPECTEDTABLEOFCONTENTS","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_MEDIACATALOGNUMBER","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_NUMBEROFEXISTINGTRACKS","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_RESULTINGIMAGETYPE","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTINGTRACKNUMBER","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUT","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_STARTOFLEADOUTLIMIT","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_TRACKINFO","features":[509]},{"name":"DISPID_IRAWCDIMAGECREATOR_USEDSECTORSONDISC","features":[509]},{"name":"DISPID_IRAWCDTRACKINFO_AUDIOHASPREEMPHASIS","features":[509]},{"name":"DISPID_IRAWCDTRACKINFO_DIGITALAUDIOCOPYSETTING","features":[509]},{"name":"DISPID_IRAWCDTRACKINFO_ISRC","features":[509]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORCOUNT","features":[509]},{"name":"DISPID_IRAWCDTRACKINFO_SECTORTYPE","features":[509]},{"name":"DISPID_IRAWCDTRACKINFO_STARTINGLBA","features":[509]},{"name":"DISPID_IRAWCDTRACKINFO_TRACKNUMBER","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_FREESYSTEMBUFFER","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTREADLBA","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_LASTWRITTENLBA","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_SECTORCOUNT","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_STARTLBA","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALDEVICEBUFFER","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_TOTALSYSTEMBUFFER","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDDEVICEBUFFER","features":[509]},{"name":"DISPID_IWRITEENGINE2EVENTARGS_USEDSYSTEMBUFFER","features":[509]},{"name":"DISPID_IWRITEENGINE2_BYTESPERSECTOR","features":[509]},{"name":"DISPID_IWRITEENGINE2_CANCELWRITE","features":[509]},{"name":"DISPID_IWRITEENGINE2_DISCRECORDER","features":[509]},{"name":"DISPID_IWRITEENGINE2_ENDINGSECTORSPERSECOND","features":[509]},{"name":"DISPID_IWRITEENGINE2_STARTINGSECTORSPERSECOND","features":[509]},{"name":"DISPID_IWRITEENGINE2_USESTREAMINGWRITE12","features":[509]},{"name":"DISPID_IWRITEENGINE2_WRITEINPROGRESS","features":[509]},{"name":"DISPID_IWRITEENGINE2_WRITESECTION","features":[509]},{"name":"DWriteEngine2Events","features":[509,356]},{"name":"Emulation12MFloppy","features":[509]},{"name":"Emulation144MFloppy","features":[509]},{"name":"Emulation288MFloppy","features":[509]},{"name":"EmulationHardDisk","features":[509]},{"name":"EmulationNone","features":[509]},{"name":"EmulationType","features":[509]},{"name":"EnumFsiItems","features":[509]},{"name":"EnumProgressItems","features":[509]},{"name":"FileSystemImageResult","features":[509]},{"name":"FsiDirectoryItem","features":[509]},{"name":"FsiFileItem","features":[509]},{"name":"FsiFileSystemISO9660","features":[509]},{"name":"FsiFileSystemJoliet","features":[509]},{"name":"FsiFileSystemNone","features":[509]},{"name":"FsiFileSystemUDF","features":[509]},{"name":"FsiFileSystemUnknown","features":[509]},{"name":"FsiFileSystems","features":[509]},{"name":"FsiItemDirectory","features":[509]},{"name":"FsiItemFile","features":[509]},{"name":"FsiItemNotFound","features":[509]},{"name":"FsiItemType","features":[509]},{"name":"FsiNamedStreams","features":[509]},{"name":"FsiStream","features":[509]},{"name":"GUID_SMTPSVC_SOURCE","features":[509]},{"name":"GUID_SMTP_SOURCE_TYPE","features":[509]},{"name":"GetAttribIMsgOnIStg","features":[509,386]},{"name":"IBlockRange","features":[509,356]},{"name":"IBlockRangeList","features":[509,356]},{"name":"IBootOptions","features":[509,356]},{"name":"IBurnVerification","features":[509]},{"name":"IDiscFormat2","features":[509,356]},{"name":"IDiscFormat2Data","features":[509,356]},{"name":"IDiscFormat2DataEventArgs","features":[509,356]},{"name":"IDiscFormat2Erase","features":[509,356]},{"name":"IDiscFormat2RawCD","features":[509,356]},{"name":"IDiscFormat2RawCDEventArgs","features":[509,356]},{"name":"IDiscFormat2TrackAtOnce","features":[509,356]},{"name":"IDiscFormat2TrackAtOnceEventArgs","features":[509,356]},{"name":"IDiscMaster","features":[509]},{"name":"IDiscMaster2","features":[509,356]},{"name":"IDiscMasterProgressEvents","features":[509]},{"name":"IDiscRecorder","features":[509]},{"name":"IDiscRecorder2","features":[509,356]},{"name":"IDiscRecorder2Ex","features":[509]},{"name":"IEnumDiscMasterFormats","features":[509]},{"name":"IEnumDiscRecorders","features":[509]},{"name":"IEnumFsiItems","features":[509]},{"name":"IEnumProgressItems","features":[509]},{"name":"IFileSystemImage","features":[509,356]},{"name":"IFileSystemImage2","features":[509,356]},{"name":"IFileSystemImage3","features":[509,356]},{"name":"IFileSystemImageResult","features":[509,356]},{"name":"IFileSystemImageResult2","features":[509,356]},{"name":"IFsiDirectoryItem","features":[509,356]},{"name":"IFsiDirectoryItem2","features":[509,356]},{"name":"IFsiFileItem","features":[509,356]},{"name":"IFsiFileItem2","features":[509,356]},{"name":"IFsiItem","features":[509,356]},{"name":"IFsiNamedStreams","features":[509,356]},{"name":"IIsoImageManager","features":[509,356]},{"name":"IJolietDiscMaster","features":[509]},{"name":"IMAPI2FS_BOOT_ENTRY_COUNT_MAX","features":[509]},{"name":"IMAPI2FS_FullVersion_STR","features":[509]},{"name":"IMAPI2FS_FullVersion_WSTR","features":[509]},{"name":"IMAPI2FS_MajorVersion","features":[509]},{"name":"IMAPI2FS_MinorVersion","features":[509]},{"name":"IMAPI2_DEFAULT_COMMAND_TIMEOUT","features":[509]},{"name":"IMAPILib2_MajorVersion","features":[509]},{"name":"IMAPILib2_MinorVersion","features":[509]},{"name":"IMAPI_BURN_VERIFICATION_FULL","features":[509]},{"name":"IMAPI_BURN_VERIFICATION_LEVEL","features":[509]},{"name":"IMAPI_BURN_VERIFICATION_NONE","features":[509]},{"name":"IMAPI_BURN_VERIFICATION_QUICK","features":[509]},{"name":"IMAPI_CD_SECTOR_AUDIO","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE1","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE1RAW","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE2FORM0RAW","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE2FORM1RAW","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE2FORM2RAW","features":[509]},{"name":"IMAPI_CD_SECTOR_MODE_ZERO","features":[509]},{"name":"IMAPI_CD_SECTOR_TYPE","features":[509]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PERMITTED","features":[509]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_PROHIBITED","features":[509]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SCMS","features":[509]},{"name":"IMAPI_CD_TRACK_DIGITAL_COPY_SETTING","features":[509]},{"name":"IMAPI_E_ALREADYOPEN","features":[509]},{"name":"IMAPI_E_BADJOLIETNAME","features":[509]},{"name":"IMAPI_E_BOOTIMAGE_AND_NONBLANK_DISC","features":[509]},{"name":"IMAPI_E_CANNOT_WRITE_TO_MEDIA","features":[509]},{"name":"IMAPI_E_COMPRESSEDSTASH","features":[509]},{"name":"IMAPI_E_DEVICE_INVALIDTYPE","features":[509]},{"name":"IMAPI_E_DEVICE_NOPROPERTIES","features":[509]},{"name":"IMAPI_E_DEVICE_NOTACCESSIBLE","features":[509]},{"name":"IMAPI_E_DEVICE_NOTPRESENT","features":[509]},{"name":"IMAPI_E_DEVICE_STILL_IN_USE","features":[509]},{"name":"IMAPI_E_DISCFULL","features":[509]},{"name":"IMAPI_E_DISCINFO","features":[509]},{"name":"IMAPI_E_ENCRYPTEDSTASH","features":[509]},{"name":"IMAPI_E_FILEACCESS","features":[509]},{"name":"IMAPI_E_FILEEXISTS","features":[509]},{"name":"IMAPI_E_FILESYSTEM","features":[509]},{"name":"IMAPI_E_GENERIC","features":[509]},{"name":"IMAPI_E_INITIALIZE_ENDWRITE","features":[509]},{"name":"IMAPI_E_INITIALIZE_WRITE","features":[509]},{"name":"IMAPI_E_INVALIDIMAGE","features":[509]},{"name":"IMAPI_E_LOSS_OF_STREAMING","features":[509]},{"name":"IMAPI_E_MEDIUM_INVALIDTYPE","features":[509]},{"name":"IMAPI_E_MEDIUM_NOTPRESENT","features":[509]},{"name":"IMAPI_E_NOACTIVEFORMAT","features":[509]},{"name":"IMAPI_E_NOACTIVERECORDER","features":[509]},{"name":"IMAPI_E_NOTENOUGHDISKFORSTASH","features":[509]},{"name":"IMAPI_E_NOTINITIALIZED","features":[509]},{"name":"IMAPI_E_NOTOPENED","features":[509]},{"name":"IMAPI_E_REMOVABLESTASH","features":[509]},{"name":"IMAPI_E_STASHINUSE","features":[509]},{"name":"IMAPI_E_TRACKNOTOPEN","features":[509]},{"name":"IMAPI_E_TRACKOPEN","features":[509]},{"name":"IMAPI_E_TRACK_NOT_BIG_ENOUGH","features":[509]},{"name":"IMAPI_E_USERABORT","features":[509]},{"name":"IMAPI_E_WRONGDISC","features":[509]},{"name":"IMAPI_E_WRONGFORMAT","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_AACS","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_PSEUDO_OVERWRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_READ","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_BD_WRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CDRW_CAV_WRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_ANALOG_PLAY","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MASTERING","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_MULTIREAD","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_READ","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_RW_MEDIA_WRITE_SUPPORT","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CD_TRACK_AT_ONCE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_CORE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DISC_CONTROL_BLOCKS","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_READ","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_RW_WRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DOUBLE_DENSITY_CD_R_WRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CPRM","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_CSS","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_DASH_WRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_RW","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_PLUS_R_DUAL_LAYER","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_DVD_READ","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_EMBEDDED_CHANGER","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_ENHANCED_DEFECT_REPORTING","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FIRMWARE_INFORMATION","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_FORMATTABLE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HARDWARE_DEFECT_MANAGEMENT","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_READ","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_HD_DVD_WRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_INCREMENTAL_STREAMING_WRITABLE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LAYER_JUMP_RECORDING","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_LOGICAL_UNIT_SERIAL_NUMBER","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MEDIA_SERIAL_NUMBER","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MICROCODE_UPDATE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MORPHING","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_MRW","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_POWER_MANAGEMENT","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_PROFILE_LIST","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_READABLE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RANDOMLY_WRITABLE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REAL_TIME_STREAMING","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_REMOVABLE_MEDIUM","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RESTRICTED_OVERWRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_RIGID_RESTRICTED_OVERWRITE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SECTOR_ERASABLE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_SMART","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_TIMEOUT","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_VCPS","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_ONCE","features":[509]},{"name":"IMAPI_FEATURE_PAGE_TYPE_WRITE_PROTECT","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_APPENDABLE","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_BLANK","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_DAMAGED","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_ERASE_REQUIRED","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINALIZED","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_FINAL_SESSION","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_INFORMATIONAL_MASK","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_NON_EMPTY_SESSION","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_OVERWRITE_ONLY","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_RANDOMLY_WRITABLE","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNKNOWN","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MASK","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_UNSUPPORTED_MEDIA","features":[509]},{"name":"IMAPI_FORMAT2_DATA_MEDIA_STATE_WRITE_PROTECTED","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_CALIBRATING_POWER","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_COMPLETED","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FINALIZATION","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_FORMATTING_MEDIA","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_INITIALIZING_HARDWARE","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VALIDATING_MEDIA","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_VERIFYING","features":[509]},{"name":"IMAPI_FORMAT2_DATA_WRITE_ACTION_WRITING_DATA","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_DATA_SECTOR_TYPE","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_COOKED","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_IS_RAW","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_SUBCODE_PQ_ONLY","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_FINISHING","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_PREPARING","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_UNKNOWN","features":[509]},{"name":"IMAPI_FORMAT2_RAW_CD_WRITE_ACTION_WRITING","features":[509]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION","features":[509]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_FINISHING","features":[509]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_PREPARING","features":[509]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_UNKNOWN","features":[509]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_VERIFYING","features":[509]},{"name":"IMAPI_FORMAT2_TAO_WRITE_ACTION_WRITING","features":[509]},{"name":"IMAPI_MEDIA_PHYSICAL_TYPE","features":[509]},{"name":"IMAPI_MEDIA_TYPE_BDR","features":[509]},{"name":"IMAPI_MEDIA_TYPE_BDRE","features":[509]},{"name":"IMAPI_MEDIA_TYPE_BDROM","features":[509]},{"name":"IMAPI_MEDIA_TYPE_CDR","features":[509]},{"name":"IMAPI_MEDIA_TYPE_CDROM","features":[509]},{"name":"IMAPI_MEDIA_TYPE_CDRW","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DISK","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHRW","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDDASHR_DUALLAYER","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSRW_DUALLAYER","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDPLUSR_DUALLAYER","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDRAM","features":[509]},{"name":"IMAPI_MEDIA_TYPE_DVDROM","features":[509]},{"name":"IMAPI_MEDIA_TYPE_HDDVDR","features":[509]},{"name":"IMAPI_MEDIA_TYPE_HDDVDRAM","features":[509]},{"name":"IMAPI_MEDIA_TYPE_HDDVDROM","features":[509]},{"name":"IMAPI_MEDIA_TYPE_MAX","features":[509]},{"name":"IMAPI_MEDIA_TYPE_UNKNOWN","features":[509]},{"name":"IMAPI_MEDIA_WRITE_PROTECT_STATE","features":[509]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE","features":[509]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CHANGEABLE_VALUES","features":[509]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_CURRENT_VALUES","features":[509]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_DEFAULT_VALUES","features":[509]},{"name":"IMAPI_MODE_PAGE_REQUEST_TYPE_SAVED_VALUES","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_CACHING","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_INFORMATIONAL_EXCEPTIONS","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_LEGACY_CAPABILITIES","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_MRW","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_POWER_CONDITION","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_READ_WRITE_ERROR_RECOVERY","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_TIMEOUT_AND_PROTECT","features":[509]},{"name":"IMAPI_MODE_PAGE_TYPE_WRITE_PARAMETERS","features":[509]},{"name":"IMAPI_PROFILE_TYPE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_AS_MO","features":[509]},{"name":"IMAPI_PROFILE_TYPE_BD_REWRITABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_BD_ROM","features":[509]},{"name":"IMAPI_PROFILE_TYPE_BD_R_RANDOM_RECORDING","features":[509]},{"name":"IMAPI_PROFILE_TYPE_BD_R_SEQUENTIAL","features":[509]},{"name":"IMAPI_PROFILE_TYPE_CDROM","features":[509]},{"name":"IMAPI_PROFILE_TYPE_CD_RECORDABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_CD_REWRITABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DDCDROM","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DDCD_RECORDABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DDCD_REWRITABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVDROM","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RECORDABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_REWRITABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_RW_SEQUENTIAL","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_LAYER_JUMP","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_DASH_R_DUAL_SEQUENTIAL","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_RW_DUAL","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_PLUS_R_DUAL","features":[509]},{"name":"IMAPI_PROFILE_TYPE_DVD_RAM","features":[509]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RAM","features":[509]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_RECORDABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_HD_DVD_ROM","features":[509]},{"name":"IMAPI_PROFILE_TYPE_INVALID","features":[509]},{"name":"IMAPI_PROFILE_TYPE_MO_ERASABLE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_MO_WRITE_ONCE","features":[509]},{"name":"IMAPI_PROFILE_TYPE_NON_REMOVABLE_DISK","features":[509]},{"name":"IMAPI_PROFILE_TYPE_NON_STANDARD","features":[509]},{"name":"IMAPI_PROFILE_TYPE_REMOVABLE_DISK","features":[509]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE","features":[509]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_LBA","features":[509]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_SESSION","features":[509]},{"name":"IMAPI_READ_TRACK_ADDRESS_TYPE_TRACK","features":[509]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_BD","features":[509]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_CD","features":[509]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_DVD","features":[509]},{"name":"IMAPI_SECTORS_PER_SECOND_AT_1X_HD_DVD","features":[509]},{"name":"IMAPI_SECTOR_SIZE","features":[509]},{"name":"IMAPI_S_BUFFER_TO_SMALL","features":[509]},{"name":"IMAPI_S_PROPERTIESIGNORED","features":[509]},{"name":"IMAPI_WRITEPROTECTED_BY_CARTRIDGE","features":[509]},{"name":"IMAPI_WRITEPROTECTED_BY_DISC_CONTROL_BLOCK","features":[509]},{"name":"IMAPI_WRITEPROTECTED_BY_MEDIA_SPECIFIC_REASON","features":[509]},{"name":"IMAPI_WRITEPROTECTED_BY_SOFTWARE_WRITE_PROTECT","features":[509]},{"name":"IMAPI_WRITEPROTECTED_READ_ONLY_MEDIA","features":[509]},{"name":"IMAPI_WRITEPROTECTED_UNTIL_POWERDOWN","features":[509]},{"name":"IMMPID_CPV_AFTER__","features":[509]},{"name":"IMMPID_CPV_BEFORE__","features":[509]},{"name":"IMMPID_CPV_ENUM","features":[509]},{"name":"IMMPID_CP_START","features":[509]},{"name":"IMMPID_MPV_AFTER__","features":[509]},{"name":"IMMPID_MPV_BEFORE__","features":[509]},{"name":"IMMPID_MPV_ENUM","features":[509]},{"name":"IMMPID_MPV_MESSAGE_CREATION_FLAGS","features":[509]},{"name":"IMMPID_MPV_MESSAGE_OPEN_HANDLES","features":[509]},{"name":"IMMPID_MPV_STORE_DRIVER_HANDLE","features":[509]},{"name":"IMMPID_MPV_TOTAL_OPEN_CONTENT_HANDLES","features":[509]},{"name":"IMMPID_MPV_TOTAL_OPEN_HANDLES","features":[509]},{"name":"IMMPID_MPV_TOTAL_OPEN_PROPERTY_STREAM_HANDLES","features":[509]},{"name":"IMMPID_MP_AFTER__","features":[509]},{"name":"IMMPID_MP_ARRIVAL_FILETIME","features":[509]},{"name":"IMMPID_MP_ARRIVAL_TIME","features":[509]},{"name":"IMMPID_MP_AUTHENTICATED_USER_NAME","features":[509]},{"name":"IMMPID_MP_BEFORE__","features":[509]},{"name":"IMMPID_MP_BINARYMIME_OPTION","features":[509]},{"name":"IMMPID_MP_CHUNKING_OPTION","features":[509]},{"name":"IMMPID_MP_CLIENT_AUTH_TYPE","features":[509]},{"name":"IMMPID_MP_CLIENT_AUTH_USER","features":[509]},{"name":"IMMPID_MP_CONNECTION_IP_ADDRESS","features":[509]},{"name":"IMMPID_MP_CONNECTION_SERVER_IP_ADDRESS","features":[509]},{"name":"IMMPID_MP_CONNECTION_SERVER_PORT","features":[509]},{"name":"IMMPID_MP_CONTENT_FILE_NAME","features":[509]},{"name":"IMMPID_MP_CONTENT_TYPE","features":[509]},{"name":"IMMPID_MP_CRC_GLOBAL","features":[509]},{"name":"IMMPID_MP_CRC_RECIPS","features":[509]},{"name":"IMMPID_MP_DEFERRED_DELIVERY_FILETIME","features":[509]},{"name":"IMMPID_MP_DOMAIN_LIST","features":[509]},{"name":"IMMPID_MP_DSN_ENVID_VALUE","features":[509]},{"name":"IMMPID_MP_DSN_RET_VALUE","features":[509]},{"name":"IMMPID_MP_EIGHTBIT_MIME_OPTION","features":[509]},{"name":"IMMPID_MP_ENCRYPTION_TYPE","features":[509]},{"name":"IMMPID_MP_ENUM","features":[509]},{"name":"IMMPID_MP_ERROR_CODE","features":[509]},{"name":"IMMPID_MP_EXPIRE_DELAY","features":[509]},{"name":"IMMPID_MP_EXPIRE_NDR","features":[509]},{"name":"IMMPID_MP_FOUND_EMBEDDED_CRLF_DOT_CRLF","features":[509]},{"name":"IMMPID_MP_FROM_ADDRESS","features":[509]},{"name":"IMMPID_MP_HELO_DOMAIN","features":[509]},{"name":"IMMPID_MP_HR_CAT_STATUS","features":[509]},{"name":"IMMPID_MP_INBOUND_MAIL_FROM_AUTH","features":[509]},{"name":"IMMPID_MP_LOCAL_EXPIRE_DELAY","features":[509]},{"name":"IMMPID_MP_LOCAL_EXPIRE_NDR","features":[509]},{"name":"IMMPID_MP_MESSAGE_STATUS","features":[509]},{"name":"IMMPID_MP_MSGCLASS","features":[509]},{"name":"IMMPID_MP_MSG_GUID","features":[509]},{"name":"IMMPID_MP_MSG_SIZE_HINT","features":[509]},{"name":"IMMPID_MP_NUM_RECIPIENTS","features":[509]},{"name":"IMMPID_MP_ORIGINAL_ARRIVAL_TIME","features":[509]},{"name":"IMMPID_MP_PICKUP_FILE_NAME","features":[509]},{"name":"IMMPID_MP_RECIPIENT_LIST","features":[509]},{"name":"IMMPID_MP_REMOTE_AUTHENTICATION_TYPE","features":[509]},{"name":"IMMPID_MP_REMOTE_SERVER_DSN_CAPABLE","features":[509]},{"name":"IMMPID_MP_RFC822_BCC_ADDRESS","features":[509]},{"name":"IMMPID_MP_RFC822_CC_ADDRESS","features":[509]},{"name":"IMMPID_MP_RFC822_FROM_ADDRESS","features":[509]},{"name":"IMMPID_MP_RFC822_MSG_ID","features":[509]},{"name":"IMMPID_MP_RFC822_MSG_SUBJECT","features":[509]},{"name":"IMMPID_MP_RFC822_TO_ADDRESS","features":[509]},{"name":"IMMPID_MP_SCANNED_FOR_CRLF_DOT_CRLF","features":[509]},{"name":"IMMPID_MP_SENDER_ADDRESS","features":[509]},{"name":"IMMPID_MP_SENDER_ADDRESS_LEGACY_EX_DN","features":[509]},{"name":"IMMPID_MP_SENDER_ADDRESS_OTHER","features":[509]},{"name":"IMMPID_MP_SENDER_ADDRESS_SMTP","features":[509]},{"name":"IMMPID_MP_SENDER_ADDRESS_X400","features":[509]},{"name":"IMMPID_MP_SENDER_ADDRESS_X500","features":[509]},{"name":"IMMPID_MP_SERVER_NAME","features":[509]},{"name":"IMMPID_MP_SERVER_VERSION","features":[509]},{"name":"IMMPID_MP_SUPERSEDES_MSG_GUID","features":[509]},{"name":"IMMPID_MP_X_PRIORITY","features":[509]},{"name":"IMMPID_NMP_AFTER__","features":[509]},{"name":"IMMPID_NMP_BEFORE__","features":[509]},{"name":"IMMPID_NMP_ENUM","features":[509]},{"name":"IMMPID_NMP_HEADERS","features":[509]},{"name":"IMMPID_NMP_NEWSGROUP_LIST","features":[509]},{"name":"IMMPID_NMP_NNTP_APPROVED_HEADER","features":[509]},{"name":"IMMPID_NMP_NNTP_PROCESSING","features":[509]},{"name":"IMMPID_NMP_POST_TOKEN","features":[509]},{"name":"IMMPID_NMP_PRIMARY_ARTID","features":[509]},{"name":"IMMPID_NMP_PRIMARY_GROUP","features":[509]},{"name":"IMMPID_NMP_SECONDARY_ARTNUM","features":[509]},{"name":"IMMPID_NMP_SECONDARY_GROUPS","features":[509]},{"name":"IMMPID_RPV_AFTER__","features":[509]},{"name":"IMMPID_RPV_BEFORE__","features":[509]},{"name":"IMMPID_RPV_DONT_DELIVER","features":[509]},{"name":"IMMPID_RPV_ENUM","features":[509]},{"name":"IMMPID_RPV_NO_NAME_COLLISIONS","features":[509]},{"name":"IMMPID_RP_ADDRESS","features":[509]},{"name":"IMMPID_RP_ADDRESS_OTHER","features":[509]},{"name":"IMMPID_RP_ADDRESS_SMTP","features":[509]},{"name":"IMMPID_RP_ADDRESS_TYPE","features":[509]},{"name":"IMMPID_RP_ADDRESS_TYPE_SMTP","features":[509]},{"name":"IMMPID_RP_ADDRESS_X400","features":[509]},{"name":"IMMPID_RP_ADDRESS_X500","features":[509]},{"name":"IMMPID_RP_AFTER__","features":[509]},{"name":"IMMPID_RP_BEFORE__","features":[509]},{"name":"IMMPID_RP_DISPLAY_NAME","features":[509]},{"name":"IMMPID_RP_DOMAIN","features":[509]},{"name":"IMMPID_RP_DSN_NOTIFY_INVALID","features":[509]},{"name":"IMMPID_RP_DSN_NOTIFY_SUCCESS","features":[509]},{"name":"IMMPID_RP_DSN_NOTIFY_VALUE","features":[509]},{"name":"IMMPID_RP_DSN_ORCPT_VALUE","features":[509]},{"name":"IMMPID_RP_DSN_PRE_CAT_ADDRESS","features":[509]},{"name":"IMMPID_RP_ENUM","features":[509]},{"name":"IMMPID_RP_ERROR_CODE","features":[509]},{"name":"IMMPID_RP_ERROR_STRING","features":[509]},{"name":"IMMPID_RP_LEGACY_EX_DN","features":[509]},{"name":"IMMPID_RP_MDB_GUID","features":[509]},{"name":"IMMPID_RP_RECIPIENT_FLAGS","features":[509]},{"name":"IMMPID_RP_SMTP_STATUS_STRING","features":[509]},{"name":"IMMPID_RP_USER_GUID","features":[509]},{"name":"IMMP_MPV_STORE_DRIVER_HANDLE","features":[509]},{"name":"IMultisession","features":[509,356]},{"name":"IMultisessionRandomWrite","features":[509,356]},{"name":"IMultisessionSequential","features":[509,356]},{"name":"IMultisessionSequential2","features":[509,356]},{"name":"IProgressItem","features":[509,356]},{"name":"IProgressItems","features":[509,356]},{"name":"IRawCDImageCreator","features":[509,356]},{"name":"IRawCDImageTrackInfo","features":[509,356]},{"name":"IRedbookDiscMaster","features":[509]},{"name":"IStreamConcatenate","features":[509,356]},{"name":"IStreamInterleave","features":[509,356]},{"name":"IStreamPseudoRandomBased","features":[509,356]},{"name":"IWriteEngine2","features":[509,356]},{"name":"IWriteEngine2EventArgs","features":[509,356]},{"name":"IWriteSpeedDescriptor","features":[509,356]},{"name":"LPMSGSESS","features":[509]},{"name":"MEDIA_BLANK","features":[509]},{"name":"MEDIA_CDDA_CDROM","features":[509]},{"name":"MEDIA_CD_EXTRA","features":[509]},{"name":"MEDIA_CD_I","features":[509]},{"name":"MEDIA_CD_OTHER","features":[509]},{"name":"MEDIA_CD_ROM_XA","features":[509]},{"name":"MEDIA_FLAGS","features":[509]},{"name":"MEDIA_FORMAT_UNUSABLE_BY_IMAPI","features":[509]},{"name":"MEDIA_RW","features":[509]},{"name":"MEDIA_SPECIAL","features":[509]},{"name":"MEDIA_TYPES","features":[509]},{"name":"MEDIA_WRITABLE","features":[509]},{"name":"MPV_INBOUND_CUTOFF_EXCEEDED","features":[509]},{"name":"MPV_WRITE_CONTENT","features":[509]},{"name":"MP_MSGCLASS_DELIVERY_REPORT","features":[509]},{"name":"MP_MSGCLASS_NONDELIVERY_REPORT","features":[509]},{"name":"MP_MSGCLASS_REPLICATION","features":[509]},{"name":"MP_MSGCLASS_SYSTEM","features":[509]},{"name":"MP_STATUS_ABANDON_DELIVERY","features":[509]},{"name":"MP_STATUS_ABORT_DELIVERY","features":[509]},{"name":"MP_STATUS_BAD_MAIL","features":[509]},{"name":"MP_STATUS_CATEGORIZED","features":[509]},{"name":"MP_STATUS_RETRY","features":[509]},{"name":"MP_STATUS_SUBMITTED","features":[509]},{"name":"MP_STATUS_SUCCESS","features":[509]},{"name":"MSDiscMasterObj","features":[509]},{"name":"MSDiscRecorderObj","features":[509]},{"name":"MSEnumDiscRecordersObj","features":[509]},{"name":"MSGCALLRELEASE","features":[509,386]},{"name":"MapStorageSCode","features":[509]},{"name":"MsftDiscFormat2Data","features":[509]},{"name":"MsftDiscFormat2Erase","features":[509]},{"name":"MsftDiscFormat2RawCD","features":[509]},{"name":"MsftDiscFormat2TrackAtOnce","features":[509]},{"name":"MsftDiscMaster2","features":[509]},{"name":"MsftDiscRecorder2","features":[509]},{"name":"MsftFileSystemImage","features":[509]},{"name":"MsftIsoImageManager","features":[509]},{"name":"MsftMultisessionRandomWrite","features":[509]},{"name":"MsftMultisessionSequential","features":[509]},{"name":"MsftRawCDImageCreator","features":[509]},{"name":"MsftStreamConcatenate","features":[509]},{"name":"MsftStreamInterleave","features":[509]},{"name":"MsftStreamPrng001","features":[509]},{"name":"MsftStreamZero","features":[509]},{"name":"MsftWriteEngine2","features":[509]},{"name":"MsftWriteSpeedDescriptor","features":[509]},{"name":"NMP_PROCESS_CONTROL","features":[509]},{"name":"NMP_PROCESS_MODERATOR","features":[509]},{"name":"NMP_PROCESS_POST","features":[509]},{"name":"OpenIMsgOnIStg","features":[509,386,429]},{"name":"OpenIMsgSession","features":[509,356]},{"name":"PlatformEFI","features":[509]},{"name":"PlatformId","features":[509]},{"name":"PlatformMac","features":[509]},{"name":"PlatformPowerPC","features":[509]},{"name":"PlatformX86","features":[509]},{"name":"ProgressItem","features":[509]},{"name":"ProgressItems","features":[509]},{"name":"RECORDER_BURNING","features":[509]},{"name":"RECORDER_CDR","features":[509]},{"name":"RECORDER_CDRW","features":[509]},{"name":"RECORDER_DOING_NOTHING","features":[509]},{"name":"RECORDER_OPENED","features":[509]},{"name":"RECORDER_TYPES","features":[509]},{"name":"RP_DELIVERED","features":[509]},{"name":"RP_DSN_HANDLED","features":[509]},{"name":"RP_DSN_NOTIFY_DELAY","features":[509]},{"name":"RP_DSN_NOTIFY_FAILURE","features":[509]},{"name":"RP_DSN_NOTIFY_INVALID","features":[509]},{"name":"RP_DSN_NOTIFY_MASK","features":[509]},{"name":"RP_DSN_NOTIFY_NEVER","features":[509]},{"name":"RP_DSN_NOTIFY_SUCCESS","features":[509]},{"name":"RP_DSN_SENT_DELAYED","features":[509]},{"name":"RP_DSN_SENT_DELIVERED","features":[509]},{"name":"RP_DSN_SENT_EXPANDED","features":[509]},{"name":"RP_DSN_SENT_NDR","features":[509]},{"name":"RP_DSN_SENT_RELAYED","features":[509]},{"name":"RP_ENPANDED","features":[509]},{"name":"RP_ERROR_CONTEXT_CAT","features":[509]},{"name":"RP_ERROR_CONTEXT_MTA","features":[509]},{"name":"RP_ERROR_CONTEXT_STORE","features":[509]},{"name":"RP_EXPANDED","features":[509]},{"name":"RP_FAILED","features":[509]},{"name":"RP_GENERAL_FAILURE","features":[509]},{"name":"RP_HANDLED","features":[509]},{"name":"RP_RECIP_FLAGS_RESERVED","features":[509]},{"name":"RP_REMOTE_MTA_NO_DSN","features":[509]},{"name":"RP_UNRESOLVED","features":[509]},{"name":"RP_VOLATILE_FLAGS_MASK","features":[509]},{"name":"SPropAttrArray","features":[509]},{"name":"SZ_PROGID_SMTPCAT","features":[509]},{"name":"SetAttribIMsgOnIStg","features":[509,386]},{"name":"tagIMMPID_CPV_STRUCT","features":[509]},{"name":"tagIMMPID_GUIDLIST_ITEM","features":[509]},{"name":"tagIMMPID_MPV_STRUCT","features":[509]},{"name":"tagIMMPID_MP_STRUCT","features":[509]},{"name":"tagIMMPID_NMP_STRUCT","features":[509]},{"name":"tagIMMPID_RPV_STRUCT","features":[509]},{"name":"tagIMMPID_RP_STRUCT","features":[509]}],"514":[{"name":"BindIFilterFromStorage","features":[510,429]},{"name":"BindIFilterFromStream","features":[510,356]},{"name":"CHUNKSTATE","features":[510]},{"name":"CHUNK_BREAKTYPE","features":[510]},{"name":"CHUNK_EOC","features":[510]},{"name":"CHUNK_EOP","features":[510]},{"name":"CHUNK_EOS","features":[510]},{"name":"CHUNK_EOW","features":[510]},{"name":"CHUNK_FILTER_OWNED_VALUE","features":[510]},{"name":"CHUNK_NO_BREAK","features":[510]},{"name":"CHUNK_TEXT","features":[510]},{"name":"CHUNK_VALUE","features":[510]},{"name":"CIADMIN","features":[510]},{"name":"CICAT_ALL_OPENED","features":[510]},{"name":"CICAT_GET_STATE","features":[510]},{"name":"CICAT_NO_QUERY","features":[510]},{"name":"CICAT_READONLY","features":[510]},{"name":"CICAT_STOPPED","features":[510]},{"name":"CICAT_WRITABLE","features":[510]},{"name":"CINULLCATALOG","features":[510]},{"name":"CI_PROVIDER_ALL","features":[510]},{"name":"CI_PROVIDER_INDEXING_SERVICE","features":[510]},{"name":"CI_PROVIDER_MSSEARCH","features":[510]},{"name":"CI_STATE","features":[510]},{"name":"CI_STATE_ANNEALING_MERGE","features":[510]},{"name":"CI_STATE_BATTERY_POLICY","features":[510]},{"name":"CI_STATE_BATTERY_POWER","features":[510]},{"name":"CI_STATE_CONTENT_SCAN_REQUIRED","features":[510]},{"name":"CI_STATE_DELETION_MERGE","features":[510]},{"name":"CI_STATE_HIGH_CPU","features":[510]},{"name":"CI_STATE_HIGH_IO","features":[510]},{"name":"CI_STATE_INDEX_MIGRATION_MERGE","features":[510]},{"name":"CI_STATE_LOW_DISK","features":[510]},{"name":"CI_STATE_LOW_MEMORY","features":[510]},{"name":"CI_STATE_MASTER_MERGE","features":[510]},{"name":"CI_STATE_MASTER_MERGE_PAUSED","features":[510]},{"name":"CI_STATE_READING_USNS","features":[510]},{"name":"CI_STATE_READ_ONLY","features":[510]},{"name":"CI_STATE_RECOVERING","features":[510]},{"name":"CI_STATE_SCANNING","features":[510]},{"name":"CI_STATE_SHADOW_MERGE","features":[510]},{"name":"CI_STATE_STARTING","features":[510]},{"name":"CI_STATE_USER_ACTIVE","features":[510]},{"name":"CI_VERSION_WDS30","features":[510]},{"name":"CI_VERSION_WDS40","features":[510]},{"name":"CI_VERSION_WIN70","features":[510]},{"name":"CLSID_INDEX_SERVER_DSO","features":[510]},{"name":"DBID","features":[510]},{"name":"DBID","features":[510]},{"name":"DBKINDENUM","features":[510]},{"name":"DBKIND_GUID","features":[510]},{"name":"DBKIND_GUID_NAME","features":[510]},{"name":"DBKIND_GUID_PROPID","features":[510]},{"name":"DBKIND_NAME","features":[510]},{"name":"DBKIND_PGUID_NAME","features":[510]},{"name":"DBKIND_PGUID_PROPID","features":[510]},{"name":"DBKIND_PROPID","features":[510]},{"name":"DBPROPSET_CIFRMWRKCORE_EXT","features":[510]},{"name":"DBPROPSET_FSCIFRMWRK_EXT","features":[510]},{"name":"DBPROPSET_MSIDXS_ROWSETEXT","features":[510]},{"name":"DBPROPSET_QUERYEXT","features":[510]},{"name":"DBPROPSET_SESS_QUERYEXT","features":[510]},{"name":"DBPROP_APPLICATION_NAME","features":[510]},{"name":"DBPROP_CATALOGLISTID","features":[510]},{"name":"DBPROP_CI_CATALOG_NAME","features":[510]},{"name":"DBPROP_CI_DEPTHS","features":[510]},{"name":"DBPROP_CI_EXCLUDE_SCOPES","features":[510]},{"name":"DBPROP_CI_INCLUDE_SCOPES","features":[510]},{"name":"DBPROP_CI_PROVIDER","features":[510]},{"name":"DBPROP_CI_QUERY_TYPE","features":[510]},{"name":"DBPROP_CI_SCOPE_FLAGS","features":[510]},{"name":"DBPROP_CI_SECURITY_ID","features":[510]},{"name":"DBPROP_CLIENT_CLSID","features":[510]},{"name":"DBPROP_DEFAULT_EQUALS_BEHAVIOR","features":[510]},{"name":"DBPROP_DEFERCATALOGVERIFICATION","features":[510]},{"name":"DBPROP_DEFERNONINDEXEDTRIMMING","features":[510]},{"name":"DBPROP_DONOTCOMPUTEEXPENSIVEPROPS","features":[510]},{"name":"DBPROP_ENABLEROWSETEVENTS","features":[510]},{"name":"DBPROP_FIRSTROWS","features":[510]},{"name":"DBPROP_FREETEXTANYTERM","features":[510]},{"name":"DBPROP_FREETEXTUSESTEMMING","features":[510]},{"name":"DBPROP_GENERATEPARSETREE","features":[510]},{"name":"DBPROP_GENERICOPTIONS_STRING","features":[510]},{"name":"DBPROP_IGNORENOISEONLYCLAUSES","features":[510]},{"name":"DBPROP_IGNORESBRI","features":[510]},{"name":"DBPROP_MACHINE","features":[510]},{"name":"DBPROP_USECONTENTINDEX","features":[510]},{"name":"DBPROP_USEEXTENDEDDBTYPES","features":[510]},{"name":"DBSETFUNC_ALL","features":[510]},{"name":"DBSETFUNC_DISTINCT","features":[510]},{"name":"DBSETFUNC_NONE","features":[510]},{"name":"FILTERREGION","features":[510]},{"name":"FILTER_E_ACCESS","features":[510]},{"name":"FILTER_E_EMBEDDING_UNAVAILABLE","features":[510]},{"name":"FILTER_E_END_OF_CHUNKS","features":[510]},{"name":"FILTER_E_LINK_UNAVAILABLE","features":[510]},{"name":"FILTER_E_NO_MORE_TEXT","features":[510]},{"name":"FILTER_E_NO_MORE_VALUES","features":[510]},{"name":"FILTER_E_NO_TEXT","features":[510]},{"name":"FILTER_E_NO_VALUES","features":[510]},{"name":"FILTER_E_PASSWORD","features":[510]},{"name":"FILTER_E_UNKNOWNFORMAT","features":[510]},{"name":"FILTER_S_LAST_TEXT","features":[510]},{"name":"FILTER_S_LAST_VALUES","features":[510]},{"name":"FILTER_W_MONIKER_CLIPPED","features":[510]},{"name":"FULLPROPSPEC","features":[510,429]},{"name":"GENERATE_METHOD_EXACT","features":[510]},{"name":"GENERATE_METHOD_INFLECT","features":[510]},{"name":"GENERATE_METHOD_PREFIX","features":[510]},{"name":"IFILTER_FLAGS","features":[510]},{"name":"IFILTER_FLAGS_OLE_PROPERTIES","features":[510]},{"name":"IFILTER_INIT","features":[510]},{"name":"IFILTER_INIT_APPLY_CRAWL_ATTRIBUTES","features":[510]},{"name":"IFILTER_INIT_APPLY_INDEX_ATTRIBUTES","features":[510]},{"name":"IFILTER_INIT_APPLY_OTHER_ATTRIBUTES","features":[510]},{"name":"IFILTER_INIT_CANON_HYPHENS","features":[510]},{"name":"IFILTER_INIT_CANON_PARAGRAPHS","features":[510]},{"name":"IFILTER_INIT_CANON_SPACES","features":[510]},{"name":"IFILTER_INIT_DISABLE_EMBEDDED","features":[510]},{"name":"IFILTER_INIT_EMIT_FORMATTING","features":[510]},{"name":"IFILTER_INIT_FILTER_AGGRESSIVE_BREAK","features":[510]},{"name":"IFILTER_INIT_FILTER_OWNED_VALUE_OK","features":[510]},{"name":"IFILTER_INIT_HARD_LINE_BREAKS","features":[510]},{"name":"IFILTER_INIT_INDEXING_ONLY","features":[510]},{"name":"IFILTER_INIT_SEARCH_LINKS","features":[510]},{"name":"IFilter","features":[510]},{"name":"IPhraseSink","features":[510]},{"name":"LIFF_FORCE_TEXT_FILTER_FALLBACK","features":[510]},{"name":"LIFF_IMPLEMENT_TEXT_FILTER_FALLBACK_POLICY","features":[510]},{"name":"LIFF_LOAD_DEFINED_FILTER","features":[510]},{"name":"LoadIFilter","features":[510]},{"name":"LoadIFilterEx","features":[510]},{"name":"MSIDXSPROP_COMMAND_LOCALE_STRING","features":[510]},{"name":"MSIDXSPROP_MAX_RANK","features":[510]},{"name":"MSIDXSPROP_PARSE_TREE","features":[510]},{"name":"MSIDXSPROP_QUERY_RESTRICTION","features":[510]},{"name":"MSIDXSPROP_RESULTS_FOUND","features":[510]},{"name":"MSIDXSPROP_ROWSETQUERYSTATUS","features":[510]},{"name":"MSIDXSPROP_SAME_SORTORDER_USED","features":[510]},{"name":"MSIDXSPROP_SERVER_NLSVERSION","features":[510]},{"name":"MSIDXSPROP_SERVER_NLSVER_DEFINED","features":[510]},{"name":"MSIDXSPROP_SERVER_VERSION","features":[510]},{"name":"MSIDXSPROP_SERVER_WINVER_MAJOR","features":[510]},{"name":"MSIDXSPROP_SERVER_WINVER_MINOR","features":[510]},{"name":"MSIDXSPROP_WHEREID","features":[510]},{"name":"NOT_AN_ERROR","features":[510]},{"name":"PID_FILENAME","features":[510]},{"name":"PROPID_QUERY_ALL","features":[510]},{"name":"PROPID_QUERY_HITCOUNT","features":[510]},{"name":"PROPID_QUERY_LASTSEENTIME","features":[510]},{"name":"PROPID_QUERY_RANK","features":[510]},{"name":"PROPID_QUERY_RANKVECTOR","features":[510]},{"name":"PROPID_QUERY_UNFILTERED","features":[510]},{"name":"PROPID_QUERY_VIRTUALPATH","features":[510]},{"name":"PROPID_QUERY_WORKID","features":[510]},{"name":"PROPID_STG_CONTENTS","features":[510]},{"name":"PROXIMITY_UNIT_CHAPTER","features":[510]},{"name":"PROXIMITY_UNIT_PARAGRAPH","features":[510]},{"name":"PROXIMITY_UNIT_SENTENCE","features":[510]},{"name":"PROXIMITY_UNIT_WORD","features":[510]},{"name":"PSGUID_FILENAME","features":[510]},{"name":"QUERY_DEEP","features":[510]},{"name":"QUERY_PHYSICAL_PATH","features":[510]},{"name":"QUERY_SHALLOW","features":[510]},{"name":"QUERY_VIRTUAL_PATH","features":[510]},{"name":"SCOPE_FLAG_DEEP","features":[510]},{"name":"SCOPE_FLAG_INCLUDE","features":[510]},{"name":"SCOPE_FLAG_MASK","features":[510]},{"name":"SCOPE_TYPE_MASK","features":[510]},{"name":"SCOPE_TYPE_VPATH","features":[510]},{"name":"SCOPE_TYPE_WINPATH","features":[510]},{"name":"STAT_BUSY","features":[510]},{"name":"STAT_CHUNK","features":[510,429]},{"name":"STAT_COALESCE_COMP_ALL_NOISE","features":[510]},{"name":"STAT_CONTENT_OUT_OF_DATE","features":[510]},{"name":"STAT_CONTENT_QUERY_INCOMPLETE","features":[510]},{"name":"STAT_DONE","features":[510]},{"name":"STAT_ERROR","features":[510]},{"name":"STAT_MISSING_PROP_IN_RELDOC","features":[510]},{"name":"STAT_MISSING_RELDOC","features":[510]},{"name":"STAT_NOISE_WORDS","features":[510]},{"name":"STAT_PARTIAL_SCOPE","features":[510]},{"name":"STAT_REFRESH","features":[510]},{"name":"STAT_REFRESH_INCOMPLETE","features":[510]},{"name":"STAT_RELDOC_ACCESS_DENIED","features":[510]},{"name":"STAT_SHARING_VIOLATION","features":[510]},{"name":"STAT_TIME_LIMIT_EXCEEDED","features":[510]},{"name":"VECTOR_RANK_DICE","features":[510]},{"name":"VECTOR_RANK_INNER","features":[510]},{"name":"VECTOR_RANK_JACCARD","features":[510]},{"name":"VECTOR_RANK_MAX","features":[510]},{"name":"VECTOR_RANK_MIN","features":[510]},{"name":"WORDREP_BREAK_EOC","features":[510]},{"name":"WORDREP_BREAK_EOP","features":[510]},{"name":"WORDREP_BREAK_EOS","features":[510]},{"name":"WORDREP_BREAK_EOW","features":[510]},{"name":"WORDREP_BREAK_TYPE","features":[510]}],"515":[{"name":"FILTER_AGGREGATE_BASIC_INFORMATION","features":[328]},{"name":"FILTER_AGGREGATE_STANDARD_INFORMATION","features":[328]},{"name":"FILTER_FULL_INFORMATION","features":[328]},{"name":"FILTER_INFORMATION_CLASS","features":[328]},{"name":"FILTER_MESSAGE_HEADER","features":[328]},{"name":"FILTER_NAME_MAX_CHARS","features":[328]},{"name":"FILTER_REPLY_HEADER","features":[305,328]},{"name":"FILTER_VOLUME_BASIC_INFORMATION","features":[328]},{"name":"FILTER_VOLUME_INFORMATION_CLASS","features":[328]},{"name":"FILTER_VOLUME_STANDARD_INFORMATION","features":[328]},{"name":"FLTFL_AGGREGATE_INFO_IS_LEGACYFILTER","features":[328]},{"name":"FLTFL_AGGREGATE_INFO_IS_MINIFILTER","features":[328]},{"name":"FLTFL_ASI_IS_LEGACYFILTER","features":[328]},{"name":"FLTFL_ASI_IS_MINIFILTER","features":[328]},{"name":"FLTFL_IASIL_DETACHED_VOLUME","features":[328]},{"name":"FLTFL_IASIM_DETACHED_VOLUME","features":[328]},{"name":"FLTFL_IASI_IS_LEGACYFILTER","features":[328]},{"name":"FLTFL_IASI_IS_MINIFILTER","features":[328]},{"name":"FLTFL_VSI_DETACHED_VOLUME","features":[328]},{"name":"FLT_FILESYSTEM_TYPE","features":[328]},{"name":"FLT_FSTYPE_BSUDF","features":[328]},{"name":"FLT_FSTYPE_CDFS","features":[328]},{"name":"FLT_FSTYPE_CIMFS","features":[328]},{"name":"FLT_FSTYPE_CSVFS","features":[328]},{"name":"FLT_FSTYPE_EXFAT","features":[328]},{"name":"FLT_FSTYPE_FAT","features":[328]},{"name":"FLT_FSTYPE_FS_REC","features":[328]},{"name":"FLT_FSTYPE_GPFS","features":[328]},{"name":"FLT_FSTYPE_INCD","features":[328]},{"name":"FLT_FSTYPE_INCD_FAT","features":[328]},{"name":"FLT_FSTYPE_LANMAN","features":[328]},{"name":"FLT_FSTYPE_MSFS","features":[328]},{"name":"FLT_FSTYPE_MS_NETWARE","features":[328]},{"name":"FLT_FSTYPE_MUP","features":[328]},{"name":"FLT_FSTYPE_NETWARE","features":[328]},{"name":"FLT_FSTYPE_NFS","features":[328]},{"name":"FLT_FSTYPE_NPFS","features":[328]},{"name":"FLT_FSTYPE_NTFS","features":[328]},{"name":"FLT_FSTYPE_OPENAFS","features":[328]},{"name":"FLT_FSTYPE_PSFS","features":[328]},{"name":"FLT_FSTYPE_RAW","features":[328]},{"name":"FLT_FSTYPE_RDPDR","features":[328]},{"name":"FLT_FSTYPE_REFS","features":[328]},{"name":"FLT_FSTYPE_ROXIO_UDF1","features":[328]},{"name":"FLT_FSTYPE_ROXIO_UDF2","features":[328]},{"name":"FLT_FSTYPE_ROXIO_UDF3","features":[328]},{"name":"FLT_FSTYPE_RSFX","features":[328]},{"name":"FLT_FSTYPE_TACIT","features":[328]},{"name":"FLT_FSTYPE_UDFS","features":[328]},{"name":"FLT_FSTYPE_UNKNOWN","features":[328]},{"name":"FLT_FSTYPE_WEBDAV","features":[328]},{"name":"FLT_PORT_FLAG_SYNC_HANDLE","features":[328]},{"name":"FilterAggregateBasicInformation","features":[328]},{"name":"FilterAggregateStandardInformation","features":[328]},{"name":"FilterAttach","features":[328]},{"name":"FilterAttachAtAltitude","features":[328]},{"name":"FilterClose","features":[328]},{"name":"FilterConnectCommunicationPort","features":[305,308,328]},{"name":"FilterCreate","features":[328]},{"name":"FilterDetach","features":[328]},{"name":"FilterFindClose","features":[305,328]},{"name":"FilterFindFirst","features":[305,328]},{"name":"FilterFindNext","features":[305,328]},{"name":"FilterFullInformation","features":[328]},{"name":"FilterGetDosName","features":[328]},{"name":"FilterGetInformation","features":[328]},{"name":"FilterGetMessage","features":[305,328,310]},{"name":"FilterInstanceClose","features":[328]},{"name":"FilterInstanceCreate","features":[328]},{"name":"FilterInstanceFindClose","features":[305,328]},{"name":"FilterInstanceFindFirst","features":[305,328]},{"name":"FilterInstanceFindNext","features":[305,328]},{"name":"FilterInstanceGetInformation","features":[328]},{"name":"FilterLoad","features":[328]},{"name":"FilterReplyMessage","features":[305,328]},{"name":"FilterSendMessage","features":[305,328]},{"name":"FilterUnload","features":[328]},{"name":"FilterVolumeBasicInformation","features":[328]},{"name":"FilterVolumeFindClose","features":[305,328]},{"name":"FilterVolumeFindFirst","features":[305,328]},{"name":"FilterVolumeFindNext","features":[305,328]},{"name":"FilterVolumeInstanceFindClose","features":[305,328]},{"name":"FilterVolumeInstanceFindFirst","features":[305,328]},{"name":"FilterVolumeInstanceFindNext","features":[305,328]},{"name":"FilterVolumeStandardInformation","features":[328]},{"name":"HFILTER","features":[328]},{"name":"HFILTER_INSTANCE","features":[328]},{"name":"INSTANCE_AGGREGATE_STANDARD_INFORMATION","features":[328]},{"name":"INSTANCE_BASIC_INFORMATION","features":[328]},{"name":"INSTANCE_FULL_INFORMATION","features":[328]},{"name":"INSTANCE_INFORMATION_CLASS","features":[328]},{"name":"INSTANCE_NAME_MAX_CHARS","features":[328]},{"name":"INSTANCE_PARTIAL_INFORMATION","features":[328]},{"name":"InstanceAggregateStandardInformation","features":[328]},{"name":"InstanceBasicInformation","features":[328]},{"name":"InstanceFullInformation","features":[328]},{"name":"InstancePartialInformation","features":[328]},{"name":"VOLUME_NAME_MAX_CHARS","features":[328]},{"name":"WNNC_CRED_MANAGER","features":[328]},{"name":"WNNC_NET_10NET","features":[328]},{"name":"WNNC_NET_3IN1","features":[328]},{"name":"WNNC_NET_9P","features":[328]},{"name":"WNNC_NET_9TILES","features":[328]},{"name":"WNNC_NET_APPLETALK","features":[328]},{"name":"WNNC_NET_AS400","features":[328]},{"name":"WNNC_NET_AURISTOR_FS","features":[328]},{"name":"WNNC_NET_AVID","features":[328]},{"name":"WNNC_NET_AVID1","features":[328]},{"name":"WNNC_NET_BMC","features":[328]},{"name":"WNNC_NET_BWNFS","features":[328]},{"name":"WNNC_NET_CLEARCASE","features":[328]},{"name":"WNNC_NET_COGENT","features":[328]},{"name":"WNNC_NET_CSC","features":[328]},{"name":"WNNC_NET_DAV","features":[328]},{"name":"WNNC_NET_DCE","features":[328]},{"name":"WNNC_NET_DECORB","features":[328]},{"name":"WNNC_NET_DFS","features":[328]},{"name":"WNNC_NET_DISTINCT","features":[328]},{"name":"WNNC_NET_DOCUSHARE","features":[328]},{"name":"WNNC_NET_DOCUSPACE","features":[328]},{"name":"WNNC_NET_DRIVEONWEB","features":[328]},{"name":"WNNC_NET_EXIFS","features":[328]},{"name":"WNNC_NET_EXTENDNET","features":[328]},{"name":"WNNC_NET_FARALLON","features":[328]},{"name":"WNNC_NET_FJ_REDIR","features":[328]},{"name":"WNNC_NET_FOXBAT","features":[328]},{"name":"WNNC_NET_FRONTIER","features":[328]},{"name":"WNNC_NET_FTP_NFS","features":[328]},{"name":"WNNC_NET_GOOGLE","features":[328]},{"name":"WNNC_NET_HOB_NFS","features":[328]},{"name":"WNNC_NET_IBMAL","features":[328]},{"name":"WNNC_NET_INTERGRAPH","features":[328]},{"name":"WNNC_NET_KNOWARE","features":[328]},{"name":"WNNC_NET_KWNP","features":[328]},{"name":"WNNC_NET_LANMAN","features":[328]},{"name":"WNNC_NET_LANSTEP","features":[328]},{"name":"WNNC_NET_LANTASTIC","features":[328]},{"name":"WNNC_NET_LIFENET","features":[328]},{"name":"WNNC_NET_LOCK","features":[328]},{"name":"WNNC_NET_LOCUS","features":[328]},{"name":"WNNC_NET_MANGOSOFT","features":[328]},{"name":"WNNC_NET_MASFAX","features":[328]},{"name":"WNNC_NET_MFILES","features":[328]},{"name":"WNNC_NET_MSNET","features":[328]},{"name":"WNNC_NET_MS_NFS","features":[328]},{"name":"WNNC_NET_NDFS","features":[328]},{"name":"WNNC_NET_NETWARE","features":[328]},{"name":"WNNC_NET_OBJECT_DIRE","features":[328]},{"name":"WNNC_NET_OPENAFS","features":[328]},{"name":"WNNC_NET_PATHWORKS","features":[328]},{"name":"WNNC_NET_POWERLAN","features":[328]},{"name":"WNNC_NET_PROTSTOR","features":[328]},{"name":"WNNC_NET_QUINCY","features":[328]},{"name":"WNNC_NET_RDR2SAMPLE","features":[328]},{"name":"WNNC_NET_RIVERFRONT1","features":[328]},{"name":"WNNC_NET_RIVERFRONT2","features":[328]},{"name":"WNNC_NET_RSFX","features":[328]},{"name":"WNNC_NET_SECUREAGENT","features":[328]},{"name":"WNNC_NET_SERNET","features":[328]},{"name":"WNNC_NET_SHIVA","features":[328]},{"name":"WNNC_NET_SMB","features":[328]},{"name":"WNNC_NET_SRT","features":[328]},{"name":"WNNC_NET_STAC","features":[328]},{"name":"WNNC_NET_SUN_PC_NFS","features":[328]},{"name":"WNNC_NET_SYMFONET","features":[328]},{"name":"WNNC_NET_TERMSRV","features":[328]},{"name":"WNNC_NET_TWINS","features":[328]},{"name":"WNNC_NET_VINES","features":[328]},{"name":"WNNC_NET_VMWARE","features":[328]},{"name":"WNNC_NET_YAHOO","features":[328]},{"name":"WNNC_NET_ZENWORKS","features":[328]}],"516":[{"name":"ATA_FLAGS_48BIT_COMMAND","features":[337]},{"name":"ATA_FLAGS_DATA_IN","features":[337]},{"name":"ATA_FLAGS_DATA_OUT","features":[337]},{"name":"ATA_FLAGS_DRDY_REQUIRED","features":[337]},{"name":"ATA_FLAGS_NO_MULTIPLE","features":[337]},{"name":"ATA_FLAGS_USE_DMA","features":[337]},{"name":"ATA_PASS_THROUGH_DIRECT","features":[337]},{"name":"ATA_PASS_THROUGH_DIRECT32","features":[337]},{"name":"ATA_PASS_THROUGH_EX","features":[337]},{"name":"ATA_PASS_THROUGH_EX32","features":[337]},{"name":"AddISNSServerA","features":[337]},{"name":"AddISNSServerW","features":[337]},{"name":"AddIScsiConnectionA","features":[337]},{"name":"AddIScsiConnectionW","features":[337]},{"name":"AddIScsiSendTargetPortalA","features":[337]},{"name":"AddIScsiSendTargetPortalW","features":[337]},{"name":"AddIScsiStaticTargetA","features":[305,337]},{"name":"AddIScsiStaticTargetW","features":[305,337]},{"name":"AddPersistentIScsiDeviceA","features":[337]},{"name":"AddPersistentIScsiDeviceW","features":[337]},{"name":"AddRadiusServerA","features":[337]},{"name":"AddRadiusServerW","features":[337]},{"name":"ClearPersistentIScsiDevices","features":[337]},{"name":"DD_SCSI_DEVICE_NAME","features":[337]},{"name":"DSM_NOTIFICATION_REQUEST_BLOCK","features":[337]},{"name":"DUMP_DRIVER","features":[337]},{"name":"DUMP_DRIVER_EX","features":[337]},{"name":"DUMP_DRIVER_NAME_LENGTH","features":[337]},{"name":"DUMP_EX_FLAG_DRIVER_FULL_PATH_SUPPORT","features":[337]},{"name":"DUMP_EX_FLAG_RESUME_SUPPORT","features":[337]},{"name":"DUMP_EX_FLAG_SUPPORT_64BITMEMORY","features":[337]},{"name":"DUMP_EX_FLAG_SUPPORT_DD_TELEMETRY","features":[337]},{"name":"DUMP_POINTERS","features":[305,337]},{"name":"DUMP_POINTERS_EX","features":[305,337]},{"name":"DUMP_POINTERS_VERSION","features":[337]},{"name":"DUMP_POINTERS_VERSION_1","features":[337]},{"name":"DUMP_POINTERS_VERSION_2","features":[337]},{"name":"DUMP_POINTERS_VERSION_3","features":[337]},{"name":"DUMP_POINTERS_VERSION_4","features":[337]},{"name":"DiscoveryMechanisms","features":[337]},{"name":"FILE_DEVICE_SCSI","features":[337]},{"name":"FIRMWARE_FUNCTION_ACTIVATE","features":[337]},{"name":"FIRMWARE_FUNCTION_DOWNLOAD","features":[337]},{"name":"FIRMWARE_FUNCTION_GET_INFO","features":[337]},{"name":"FIRMWARE_REQUEST_BLOCK","features":[337]},{"name":"FIRMWARE_REQUEST_BLOCK_STRUCTURE_VERSION","features":[337]},{"name":"FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[337]},{"name":"FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[337]},{"name":"FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[337]},{"name":"FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[337]},{"name":"FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[337]},{"name":"FIRMWARE_STATUS_COMMAND_ABORT","features":[337]},{"name":"FIRMWARE_STATUS_CONTROLLER_ERROR","features":[337]},{"name":"FIRMWARE_STATUS_DEVICE_ERROR","features":[337]},{"name":"FIRMWARE_STATUS_END_OF_MEDIA","features":[337]},{"name":"FIRMWARE_STATUS_ERROR","features":[337]},{"name":"FIRMWARE_STATUS_ID_NOT_FOUND","features":[337]},{"name":"FIRMWARE_STATUS_ILLEGAL_LENGTH","features":[337]},{"name":"FIRMWARE_STATUS_ILLEGAL_REQUEST","features":[337]},{"name":"FIRMWARE_STATUS_INPUT_BUFFER_TOO_BIG","features":[337]},{"name":"FIRMWARE_STATUS_INTERFACE_CRC_ERROR","features":[337]},{"name":"FIRMWARE_STATUS_INVALID_IMAGE","features":[337]},{"name":"FIRMWARE_STATUS_INVALID_PARAMETER","features":[337]},{"name":"FIRMWARE_STATUS_INVALID_SLOT","features":[337]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE","features":[337]},{"name":"FIRMWARE_STATUS_MEDIA_CHANGE_REQUEST","features":[337]},{"name":"FIRMWARE_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[337]},{"name":"FIRMWARE_STATUS_POWER_CYCLE_REQUIRED","features":[337]},{"name":"FIRMWARE_STATUS_SUCCESS","features":[337]},{"name":"FIRMWARE_STATUS_UNCORRECTABLE_DATA_ERROR","features":[337]},{"name":"GetDevicesForIScsiSessionA","features":[337,325]},{"name":"GetDevicesForIScsiSessionW","features":[337,325]},{"name":"GetIScsiIKEInfoA","features":[337]},{"name":"GetIScsiIKEInfoW","features":[337]},{"name":"GetIScsiInitiatorNodeNameA","features":[337]},{"name":"GetIScsiInitiatorNodeNameW","features":[337]},{"name":"GetIScsiSessionListA","features":[337]},{"name":"GetIScsiSessionListEx","features":[305,337]},{"name":"GetIScsiSessionListW","features":[337]},{"name":"GetIScsiTargetInformationA","features":[337]},{"name":"GetIScsiTargetInformationW","features":[337]},{"name":"GetIScsiVersionInformation","features":[337]},{"name":"HYBRID_DEMOTE_BY_SIZE","features":[337]},{"name":"HYBRID_DIRTY_THRESHOLDS","features":[337]},{"name":"HYBRID_FUNCTION_DEMOTE_BY_SIZE","features":[337]},{"name":"HYBRID_FUNCTION_DISABLE_CACHING_MEDIUM","features":[337]},{"name":"HYBRID_FUNCTION_ENABLE_CACHING_MEDIUM","features":[337]},{"name":"HYBRID_FUNCTION_GET_INFO","features":[337]},{"name":"HYBRID_FUNCTION_SET_DIRTY_THRESHOLD","features":[337]},{"name":"HYBRID_INFORMATION","features":[305,337]},{"name":"HYBRID_REQUEST_BLOCK","features":[337]},{"name":"HYBRID_REQUEST_BLOCK_STRUCTURE_VERSION","features":[337]},{"name":"HYBRID_REQUEST_INFO_STRUCTURE_VERSION","features":[337]},{"name":"HYBRID_STATUS_ENABLE_REFCOUNT_HOLD","features":[337]},{"name":"HYBRID_STATUS_ILLEGAL_REQUEST","features":[337]},{"name":"HYBRID_STATUS_INVALID_PARAMETER","features":[337]},{"name":"HYBRID_STATUS_OUTPUT_BUFFER_TOO_SMALL","features":[337]},{"name":"HYBRID_STATUS_SUCCESS","features":[337]},{"name":"IDE_IO_CONTROL","features":[337]},{"name":"ID_FQDN","features":[337]},{"name":"ID_IPV4_ADDR","features":[337]},{"name":"ID_IPV6_ADDR","features":[337]},{"name":"ID_USER_FQDN","features":[337]},{"name":"IKE_AUTHENTICATION_INFORMATION","features":[337]},{"name":"IKE_AUTHENTICATION_METHOD","features":[337]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY","features":[337]},{"name":"IKE_AUTHENTICATION_PRESHARED_KEY_METHOD","features":[337]},{"name":"IOCTL_ATA_MINIPORT","features":[337]},{"name":"IOCTL_ATA_PASS_THROUGH","features":[337]},{"name":"IOCTL_ATA_PASS_THROUGH_DIRECT","features":[337]},{"name":"IOCTL_IDE_PASS_THROUGH","features":[337]},{"name":"IOCTL_MINIPORT_PROCESS_SERVICE_IRP","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_GENERAL","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_DSM_NOTIFICATION","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_ENDURANCE_INFO","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_FIRMWARE","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_HYBRDISK","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PHYSICAL_TOPOLOGY","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_PROTOCOL","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_QUERY_TEMPERATURE","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_SCSIDISK","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_PROTOCOL","features":[337]},{"name":"IOCTL_MINIPORT_SIGNATURE_SET_TEMPERATURE_THRESHOLD","features":[337]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH","features":[337]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT","features":[337]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[337]},{"name":"IOCTL_MPIO_PASS_THROUGH_PATH_EX","features":[337]},{"name":"IOCTL_SCSI_BASE","features":[337]},{"name":"IOCTL_SCSI_FREE_DUMP_POINTERS","features":[337]},{"name":"IOCTL_SCSI_GET_ADDRESS","features":[337]},{"name":"IOCTL_SCSI_GET_CAPABILITIES","features":[337]},{"name":"IOCTL_SCSI_GET_DUMP_POINTERS","features":[337]},{"name":"IOCTL_SCSI_GET_INQUIRY_DATA","features":[337]},{"name":"IOCTL_SCSI_MINIPORT","features":[337]},{"name":"IOCTL_SCSI_PASS_THROUGH","features":[337]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT","features":[337]},{"name":"IOCTL_SCSI_PASS_THROUGH_DIRECT_EX","features":[337]},{"name":"IOCTL_SCSI_PASS_THROUGH_EX","features":[337]},{"name":"IOCTL_SCSI_RESCAN_BUS","features":[337]},{"name":"IO_SCSI_CAPABILITIES","features":[305,337]},{"name":"ISCSI_AUTH_TYPES","features":[337]},{"name":"ISCSI_CHAP_AUTH_TYPE","features":[337]},{"name":"ISCSI_CONNECTION_INFOA","features":[337]},{"name":"ISCSI_CONNECTION_INFOW","features":[337]},{"name":"ISCSI_CONNECTION_INFO_EX","features":[337]},{"name":"ISCSI_DEVICE_ON_SESSIONA","features":[337,325]},{"name":"ISCSI_DEVICE_ON_SESSIONW","features":[337,325]},{"name":"ISCSI_DIGEST_TYPES","features":[337]},{"name":"ISCSI_DIGEST_TYPE_CRC32C","features":[337]},{"name":"ISCSI_DIGEST_TYPE_NONE","features":[337]},{"name":"ISCSI_LOGIN_FLAG_ALLOW_PORTAL_HOPPING","features":[337]},{"name":"ISCSI_LOGIN_FLAG_MULTIPATH_ENABLED","features":[337]},{"name":"ISCSI_LOGIN_FLAG_REQUIRE_IPSEC","features":[337]},{"name":"ISCSI_LOGIN_FLAG_RESERVED1","features":[337]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_RESPONSE","features":[337]},{"name":"ISCSI_LOGIN_FLAG_USE_RADIUS_VERIFICATION","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_AUTH_TYPE","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_DATA_DIGEST","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_RETAIN","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_WAIT","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_HEADER_DIGEST","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_MAXIMUM_CONNECTIONS","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_PASSWORD","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_USERNAME","features":[337]},{"name":"ISCSI_LOGIN_OPTIONS_VERSION","features":[337]},{"name":"ISCSI_MUTUAL_CHAP_AUTH_TYPE","features":[337]},{"name":"ISCSI_NO_AUTH_TYPE","features":[337]},{"name":"ISCSI_SECURITY_FLAG_AGGRESSIVE_MODE_ENABLED","features":[337]},{"name":"ISCSI_SECURITY_FLAG_IKE_IPSEC_ENABLED","features":[337]},{"name":"ISCSI_SECURITY_FLAG_MAIN_MODE_ENABLED","features":[337]},{"name":"ISCSI_SECURITY_FLAG_PFS_ENABLED","features":[337]},{"name":"ISCSI_SECURITY_FLAG_TRANSPORT_MODE_PREFERRED","features":[337]},{"name":"ISCSI_SECURITY_FLAG_TUNNEL_MODE_PREFERRED","features":[337]},{"name":"ISCSI_SECURITY_FLAG_VALID","features":[337]},{"name":"ISCSI_SESSION_INFOA","features":[337]},{"name":"ISCSI_SESSION_INFOW","features":[337]},{"name":"ISCSI_SESSION_INFO_EX","features":[305,337]},{"name":"ISCSI_TARGET_FLAG_HIDE_STATIC_TARGET","features":[337]},{"name":"ISCSI_TARGET_FLAG_MERGE_TARGET_INFORMATION","features":[337]},{"name":"ISCSI_TARGET_MAPPINGA","features":[337]},{"name":"ISCSI_TARGET_MAPPINGW","features":[337]},{"name":"ISCSI_TARGET_PORTALA","features":[337]},{"name":"ISCSI_TARGET_PORTALW","features":[337]},{"name":"ISCSI_TARGET_PORTAL_GROUPA","features":[337]},{"name":"ISCSI_TARGET_PORTAL_GROUPW","features":[337]},{"name":"ISCSI_TARGET_PORTAL_INFOA","features":[337]},{"name":"ISCSI_TARGET_PORTAL_INFOW","features":[337]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXA","features":[337]},{"name":"ISCSI_TARGET_PORTAL_INFO_EXW","features":[337]},{"name":"ISCSI_TCP_PROTOCOL_TYPE","features":[337]},{"name":"ISCSI_UNIQUE_SESSION_ID","features":[337]},{"name":"ISCSI_VERSION_INFO","features":[337]},{"name":"InitiatorName","features":[337]},{"name":"LoginIScsiTargetA","features":[305,337]},{"name":"LoginIScsiTargetW","features":[305,337]},{"name":"LoginOptions","features":[337]},{"name":"LogoutIScsiTarget","features":[337]},{"name":"MAX_ISCSI_ALIAS_LEN","features":[337]},{"name":"MAX_ISCSI_DISCOVERY_DOMAIN_LEN","features":[337]},{"name":"MAX_ISCSI_HBANAME_LEN","features":[337]},{"name":"MAX_ISCSI_NAME_LEN","features":[337]},{"name":"MAX_ISCSI_PORTAL_ADDRESS_LEN","features":[337]},{"name":"MAX_ISCSI_PORTAL_ALIAS_LEN","features":[337]},{"name":"MAX_ISCSI_PORTAL_NAME_LEN","features":[337]},{"name":"MAX_ISCSI_TEXT_ADDRESS_LEN","features":[337]},{"name":"MAX_RADIUS_ADDRESS_LEN","features":[337]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION","features":[337]},{"name":"MINIPORT_DSM_NOTIFICATION_VERSION_1","features":[337]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_BEGIN","features":[337]},{"name":"MINIPORT_DSM_NOTIFY_FLAG_END","features":[337]},{"name":"MINIPORT_DSM_PROFILE_CRASHDUMP_FILE","features":[337]},{"name":"MINIPORT_DSM_PROFILE_HIBERNATION_FILE","features":[337]},{"name":"MINIPORT_DSM_PROFILE_PAGE_FILE","features":[337]},{"name":"MINIPORT_DSM_PROFILE_UNKNOWN","features":[337]},{"name":"MPIO_IOCTL_FLAG_INVOLVE_DSM","features":[337]},{"name":"MPIO_IOCTL_FLAG_USE_PATHID","features":[337]},{"name":"MPIO_IOCTL_FLAG_USE_SCSIADDRESS","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH32","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH32_EX","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT32_EX","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH_DIRECT_EX","features":[337]},{"name":"MPIO_PASS_THROUGH_PATH_EX","features":[337]},{"name":"MP_DEVICE_DATA_SET_RANGE","features":[337]},{"name":"MP_STORAGE_DIAGNOSTIC_LEVEL","features":[337]},{"name":"MP_STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[337]},{"name":"MpStorageDiagnosticLevelDefault","features":[337]},{"name":"MpStorageDiagnosticLevelMax","features":[337]},{"name":"MpStorageDiagnosticTargetTypeHbaFirmware","features":[337]},{"name":"MpStorageDiagnosticTargetTypeMax","features":[337]},{"name":"MpStorageDiagnosticTargetTypeMiniport","features":[337]},{"name":"MpStorageDiagnosticTargetTypeUndefined","features":[337]},{"name":"NRB_FUNCTION_ADD_LBAS_PINNED_SET","features":[337]},{"name":"NRB_FUNCTION_FLUSH_NVCACHE","features":[337]},{"name":"NRB_FUNCTION_NVCACHE_INFO","features":[337]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_RETURN","features":[337]},{"name":"NRB_FUNCTION_NVCACHE_POWER_MODE_SET","features":[337]},{"name":"NRB_FUNCTION_NVSEPARATED_FLUSH","features":[337]},{"name":"NRB_FUNCTION_NVSEPARATED_INFO","features":[337]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_DISABLE","features":[337]},{"name":"NRB_FUNCTION_NVSEPARATED_WB_REVERT_DEFAULT","features":[337]},{"name":"NRB_FUNCTION_PASS_HINT_PAYLOAD","features":[337]},{"name":"NRB_FUNCTION_QUERY_ASCENDER_STATUS","features":[337]},{"name":"NRB_FUNCTION_QUERY_CACHE_MISS","features":[337]},{"name":"NRB_FUNCTION_QUERY_HYBRID_DISK_STATUS","features":[337]},{"name":"NRB_FUNCTION_QUERY_PINNED_SET","features":[337]},{"name":"NRB_FUNCTION_REMOVE_LBAS_PINNED_SET","features":[337]},{"name":"NRB_FUNCTION_SPINDLE_STATUS","features":[337]},{"name":"NRB_ILLEGAL_REQUEST","features":[337]},{"name":"NRB_INPUT_DATA_OVERRUN","features":[337]},{"name":"NRB_INPUT_DATA_UNDERRUN","features":[337]},{"name":"NRB_INVALID_PARAMETER","features":[337]},{"name":"NRB_OUTPUT_DATA_OVERRUN","features":[337]},{"name":"NRB_OUTPUT_DATA_UNDERRUN","features":[337]},{"name":"NRB_SUCCESS","features":[337]},{"name":"NTSCSI_UNICODE_STRING","features":[337]},{"name":"NVCACHE_HINT_PAYLOAD","features":[337]},{"name":"NVCACHE_PRIORITY_LEVEL_DESCRIPTOR","features":[337]},{"name":"NVCACHE_REQUEST_BLOCK","features":[337]},{"name":"NVCACHE_STATUS","features":[337]},{"name":"NVCACHE_TYPE","features":[337]},{"name":"NVSEPWriteCacheTypeNone","features":[337]},{"name":"NVSEPWriteCacheTypeUnknown","features":[337]},{"name":"NVSEPWriteCacheTypeWriteBack","features":[337]},{"name":"NVSEPWriteCacheTypeWriteThrough","features":[337]},{"name":"NV_FEATURE_PARAMETER","features":[337]},{"name":"NV_SEP_CACHE_PARAMETER","features":[337]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION","features":[337]},{"name":"NV_SEP_CACHE_PARAMETER_VERSION_1","features":[337]},{"name":"NV_SEP_WRITE_CACHE_TYPE","features":[337]},{"name":"NvCacheStatusDisabled","features":[337]},{"name":"NvCacheStatusDisabling","features":[337]},{"name":"NvCacheStatusEnabled","features":[337]},{"name":"NvCacheStatusUnknown","features":[337]},{"name":"NvCacheTypeNone","features":[337]},{"name":"NvCacheTypeUnknown","features":[337]},{"name":"NvCacheTypeWriteBack","features":[337]},{"name":"NvCacheTypeWriteThrough","features":[337]},{"name":"PDUMP_DEVICE_POWERON_ROUTINE","features":[337]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOA","features":[305,337]},{"name":"PERSISTENT_ISCSI_LOGIN_INFOW","features":[305,337]},{"name":"PersistentTargetMappings","features":[337]},{"name":"PortalGroups","features":[337]},{"name":"ProtocolType","features":[337]},{"name":"RefreshISNSServerA","features":[337]},{"name":"RefreshISNSServerW","features":[337]},{"name":"RefreshIScsiSendTargetPortalA","features":[337]},{"name":"RefreshIScsiSendTargetPortalW","features":[337]},{"name":"RemoveISNSServerA","features":[337]},{"name":"RemoveISNSServerW","features":[337]},{"name":"RemoveIScsiConnection","features":[337]},{"name":"RemoveIScsiPersistentTargetA","features":[337]},{"name":"RemoveIScsiPersistentTargetW","features":[337]},{"name":"RemoveIScsiSendTargetPortalA","features":[337]},{"name":"RemoveIScsiSendTargetPortalW","features":[337]},{"name":"RemoveIScsiStaticTargetA","features":[337]},{"name":"RemoveIScsiStaticTargetW","features":[337]},{"name":"RemovePersistentIScsiDeviceA","features":[337]},{"name":"RemovePersistentIScsiDeviceW","features":[337]},{"name":"RemoveRadiusServerA","features":[337]},{"name":"RemoveRadiusServerW","features":[337]},{"name":"ReportActiveIScsiTargetMappingsA","features":[337]},{"name":"ReportActiveIScsiTargetMappingsW","features":[337]},{"name":"ReportISNSServerListA","features":[337]},{"name":"ReportISNSServerListW","features":[337]},{"name":"ReportIScsiInitiatorListA","features":[337]},{"name":"ReportIScsiInitiatorListW","features":[337]},{"name":"ReportIScsiPersistentLoginsA","features":[305,337]},{"name":"ReportIScsiPersistentLoginsW","features":[305,337]},{"name":"ReportIScsiSendTargetPortalsA","features":[337]},{"name":"ReportIScsiSendTargetPortalsExA","features":[337]},{"name":"ReportIScsiSendTargetPortalsExW","features":[337]},{"name":"ReportIScsiSendTargetPortalsW","features":[337]},{"name":"ReportIScsiTargetPortalsA","features":[337]},{"name":"ReportIScsiTargetPortalsW","features":[337]},{"name":"ReportIScsiTargetsA","features":[305,337]},{"name":"ReportIScsiTargetsW","features":[305,337]},{"name":"ReportPersistentIScsiDevicesA","features":[337]},{"name":"ReportPersistentIScsiDevicesW","features":[337]},{"name":"ReportRadiusServerListA","features":[337]},{"name":"ReportRadiusServerListW","features":[337]},{"name":"SCSI_ADAPTER_BUS_INFO","features":[337]},{"name":"SCSI_ADDRESS","features":[337]},{"name":"SCSI_BUS_DATA","features":[337]},{"name":"SCSI_INQUIRY_DATA","features":[305,337]},{"name":"SCSI_IOCTL_DATA_BIDIRECTIONAL","features":[337]},{"name":"SCSI_IOCTL_DATA_IN","features":[337]},{"name":"SCSI_IOCTL_DATA_OUT","features":[337]},{"name":"SCSI_IOCTL_DATA_UNSPECIFIED","features":[337]},{"name":"SCSI_LUN_LIST","features":[337]},{"name":"SCSI_PASS_THROUGH","features":[337]},{"name":"SCSI_PASS_THROUGH32","features":[337]},{"name":"SCSI_PASS_THROUGH32_EX","features":[337]},{"name":"SCSI_PASS_THROUGH_DIRECT","features":[337]},{"name":"SCSI_PASS_THROUGH_DIRECT32","features":[337]},{"name":"SCSI_PASS_THROUGH_DIRECT32_EX","features":[337]},{"name":"SCSI_PASS_THROUGH_DIRECT_EX","features":[337]},{"name":"SCSI_PASS_THROUGH_EX","features":[337]},{"name":"SRB_IO_CONTROL","features":[337]},{"name":"STORAGE_DIAGNOSTIC_MP_REQUEST","features":[337]},{"name":"STORAGE_DIAGNOSTIC_STATUS_BUFFER_TOO_SMALL","features":[337]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_PARAMETER","features":[337]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_SIGNATURE","features":[337]},{"name":"STORAGE_DIAGNOSTIC_STATUS_INVALID_TARGET_TYPE","features":[337]},{"name":"STORAGE_DIAGNOSTIC_STATUS_MORE_DATA","features":[337]},{"name":"STORAGE_DIAGNOSTIC_STATUS_SUCCESS","features":[337]},{"name":"STORAGE_DIAGNOSTIC_STATUS_UNSUPPORTED_VERSION","features":[337]},{"name":"STORAGE_ENDURANCE_DATA_DESCRIPTOR","features":[337]},{"name":"STORAGE_ENDURANCE_INFO","features":[337]},{"name":"STORAGE_FIRMWARE_ACTIVATE","features":[337]},{"name":"STORAGE_FIRMWARE_ACTIVATE_STRUCTURE_VERSION","features":[337]},{"name":"STORAGE_FIRMWARE_DOWNLOAD","features":[337]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION","features":[337]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_STRUCTURE_VERSION_V2","features":[337]},{"name":"STORAGE_FIRMWARE_DOWNLOAD_V2","features":[337]},{"name":"STORAGE_FIRMWARE_INFO","features":[305,337]},{"name":"STORAGE_FIRMWARE_INFO_INVALID_SLOT","features":[337]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION","features":[337]},{"name":"STORAGE_FIRMWARE_INFO_STRUCTURE_VERSION_V2","features":[337]},{"name":"STORAGE_FIRMWARE_INFO_V2","features":[305,337]},{"name":"STORAGE_FIRMWARE_SLOT_INFO","features":[305,337]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2","features":[305,337]},{"name":"STORAGE_FIRMWARE_SLOT_INFO_V2_REVISION_LENGTH","features":[337]},{"name":"ScsiRawInterfaceGuid","features":[337]},{"name":"SendScsiInquiry","features":[337]},{"name":"SendScsiReadCapacity","features":[337]},{"name":"SendScsiReportLuns","features":[337]},{"name":"SetIScsiGroupPresharedKey","features":[305,337]},{"name":"SetIScsiIKEInfoA","features":[305,337]},{"name":"SetIScsiIKEInfoW","features":[305,337]},{"name":"SetIScsiInitiatorCHAPSharedSecret","features":[337]},{"name":"SetIScsiInitiatorNodeNameA","features":[337]},{"name":"SetIScsiInitiatorNodeNameW","features":[337]},{"name":"SetIScsiInitiatorRADIUSSharedSecret","features":[337]},{"name":"SetIScsiTunnelModeOuterAddressA","features":[305,337]},{"name":"SetIScsiTunnelModeOuterAddressW","features":[305,337]},{"name":"SetupPersistentIScsiDevices","features":[337]},{"name":"SetupPersistentIScsiVolumes","features":[337]},{"name":"TARGETPROTOCOLTYPE","features":[337]},{"name":"TARGET_INFORMATION_CLASS","features":[337]},{"name":"TargetAlias","features":[337]},{"name":"TargetFlags","features":[337]},{"name":"WmiScsiAddressGuid","features":[337]},{"name":"_ADAPTER_OBJECT","features":[337]}],"517":[{"name":"JET_BASE_NAME_LENGTH","features":[511]},{"name":"JET_BKINFO","features":[511]},{"name":"JET_BKLOGTIME","features":[511]},{"name":"JET_CALLBACK","features":[511,512]},{"name":"JET_COLUMNBASE_A","features":[511]},{"name":"JET_COLUMNBASE_W","features":[511]},{"name":"JET_COLUMNCREATE_A","features":[511]},{"name":"JET_COLUMNCREATE_W","features":[511]},{"name":"JET_COLUMNDEF","features":[511]},{"name":"JET_COLUMNLIST","features":[511,512]},{"name":"JET_COMMIT_ID","features":[511]},{"name":"JET_COMMIT_ID","features":[511]},{"name":"JET_CONDITIONALCOLUMN_A","features":[511]},{"name":"JET_CONDITIONALCOLUMN_W","features":[511]},{"name":"JET_CONVERT_A","features":[511]},{"name":"JET_CONVERT_W","features":[511]},{"name":"JET_ColInfoGrbitMinimalInfo","features":[511]},{"name":"JET_ColInfoGrbitNonDerivedColumnsOnly","features":[511]},{"name":"JET_ColInfoGrbitSortByColumnid","features":[511]},{"name":"JET_DBINFOMISC","features":[511]},{"name":"JET_DBINFOMISC2","features":[511]},{"name":"JET_DBINFOMISC3","features":[511]},{"name":"JET_DBINFOMISC4","features":[511]},{"name":"JET_DBINFOUPGRADE","features":[511]},{"name":"JET_DbInfoCollate","features":[511]},{"name":"JET_DbInfoConnect","features":[511]},{"name":"JET_DbInfoCountry","features":[511]},{"name":"JET_DbInfoCp","features":[511]},{"name":"JET_DbInfoDBInUse","features":[511]},{"name":"JET_DbInfoFileType","features":[511]},{"name":"JET_DbInfoFilename","features":[511]},{"name":"JET_DbInfoFilesize","features":[511]},{"name":"JET_DbInfoFilesizeOnDisk","features":[511]},{"name":"JET_DbInfoIsam","features":[511]},{"name":"JET_DbInfoLCID","features":[511]},{"name":"JET_DbInfoLangid","features":[511]},{"name":"JET_DbInfoMisc","features":[511]},{"name":"JET_DbInfoOptions","features":[511]},{"name":"JET_DbInfoPageSize","features":[511]},{"name":"JET_DbInfoSpaceAvailable","features":[511]},{"name":"JET_DbInfoSpaceOwned","features":[511]},{"name":"JET_DbInfoTransactions","features":[511]},{"name":"JET_DbInfoUpgrade","features":[511]},{"name":"JET_DbInfoVersion","features":[511]},{"name":"JET_ENUMCOLUMN","features":[511]},{"name":"JET_ENUMCOLUMNID","features":[511]},{"name":"JET_ENUMCOLUMNVALUE","features":[511]},{"name":"JET_ERRCAT","features":[511]},{"name":"JET_ERRINFOBASIC_W","features":[511]},{"name":"JET_EventLoggingDisable","features":[511]},{"name":"JET_EventLoggingLevelHigh","features":[511]},{"name":"JET_EventLoggingLevelLow","features":[511]},{"name":"JET_EventLoggingLevelMax","features":[511]},{"name":"JET_EventLoggingLevelMedium","features":[511]},{"name":"JET_EventLoggingLevelMin","features":[511]},{"name":"JET_ExceptionFailFast","features":[511]},{"name":"JET_ExceptionMsgBox","features":[511]},{"name":"JET_ExceptionNone","features":[511]},{"name":"JET_INDEXCHECKING","features":[511]},{"name":"JET_INDEXCREATE2_A","features":[511]},{"name":"JET_INDEXCREATE2_W","features":[511]},{"name":"JET_INDEXCREATE3_A","features":[511]},{"name":"JET_INDEXCREATE3_W","features":[511]},{"name":"JET_INDEXCREATE_A","features":[511]},{"name":"JET_INDEXCREATE_W","features":[511]},{"name":"JET_INDEXID","features":[511]},{"name":"JET_INDEXID","features":[511]},{"name":"JET_INDEXLIST","features":[511,512]},{"name":"JET_INDEXRANGE","features":[511,512]},{"name":"JET_INDEX_COLUMN","features":[511]},{"name":"JET_INDEX_RANGE","features":[511]},{"name":"JET_INSTANCE","features":[511]},{"name":"JET_INSTANCE_INFO_A","features":[511,512]},{"name":"JET_INSTANCE_INFO_W","features":[511,512]},{"name":"JET_IOPriorityLow","features":[511]},{"name":"JET_IOPriorityNormal","features":[511]},{"name":"JET_IndexCheckingDeferToOpenTable","features":[511]},{"name":"JET_IndexCheckingMax","features":[511]},{"name":"JET_IndexCheckingOff","features":[511]},{"name":"JET_IndexCheckingOn","features":[511]},{"name":"JET_LGPOS","features":[511]},{"name":"JET_LOGINFO_A","features":[511]},{"name":"JET_LOGINFO_W","features":[511]},{"name":"JET_LOGTIME","features":[511]},{"name":"JET_LS","features":[511]},{"name":"JET_MAX_COMPUTERNAME_LENGTH","features":[511]},{"name":"JET_MoveFirst","features":[511]},{"name":"JET_MoveLast","features":[511]},{"name":"JET_MovePrevious","features":[511]},{"name":"JET_OBJECTINFO","features":[511]},{"name":"JET_OBJECTINFO","features":[511]},{"name":"JET_OBJECTLIST","features":[511,512]},{"name":"JET_OPENTEMPORARYTABLE","features":[511,512]},{"name":"JET_OPENTEMPORARYTABLE2","features":[511,512]},{"name":"JET_OPERATIONCONTEXT","features":[511]},{"name":"JET_OSSNAPID","features":[511]},{"name":"JET_OnlineDefragAll","features":[511]},{"name":"JET_OnlineDefragAllOBSOLETE","features":[511]},{"name":"JET_OnlineDefragDatabases","features":[511]},{"name":"JET_OnlineDefragDisable","features":[511]},{"name":"JET_OnlineDefragSpaceTrees","features":[511]},{"name":"JET_PFNDURABLECOMMITCALLBACK","features":[511]},{"name":"JET_PFNREALLOC","features":[511]},{"name":"JET_PFNSTATUS","features":[511]},{"name":"JET_RECORDLIST","features":[511,512]},{"name":"JET_RECPOS","features":[511]},{"name":"JET_RECPOS2","features":[511]},{"name":"JET_RECPOS2","features":[511]},{"name":"JET_RECSIZE","features":[511]},{"name":"JET_RECSIZE","features":[511]},{"name":"JET_RECSIZE2","features":[511]},{"name":"JET_RECSIZE2","features":[511]},{"name":"JET_RELOP","features":[511]},{"name":"JET_RETINFO","features":[511]},{"name":"JET_RETRIEVECOLUMN","features":[511]},{"name":"JET_RSTINFO_A","features":[511]},{"name":"JET_RSTINFO_W","features":[511]},{"name":"JET_RSTMAP_A","features":[511]},{"name":"JET_RSTMAP_W","features":[511]},{"name":"JET_SESID","features":[511]},{"name":"JET_SETCOLUMN","features":[511]},{"name":"JET_SETINFO","features":[511]},{"name":"JET_SETSYSPARAM_A","features":[511,512]},{"name":"JET_SETSYSPARAM_W","features":[511,512]},{"name":"JET_SIGNATURE","features":[511]},{"name":"JET_SNPROG","features":[511]},{"name":"JET_SPACEHINTS","features":[511]},{"name":"JET_TABLECREATE2_A","features":[511,512]},{"name":"JET_TABLECREATE2_W","features":[511,512]},{"name":"JET_TABLECREATE3_A","features":[511,512]},{"name":"JET_TABLECREATE3_W","features":[511,512]},{"name":"JET_TABLECREATE4_A","features":[511,512]},{"name":"JET_TABLECREATE4_W","features":[511,512]},{"name":"JET_TABLECREATE_A","features":[511,512]},{"name":"JET_TABLECREATE_W","features":[511,512]},{"name":"JET_THREADSTATS","features":[511]},{"name":"JET_THREADSTATS2","features":[511]},{"name":"JET_THREADSTATS2","features":[511]},{"name":"JET_TUPLELIMITS","features":[511]},{"name":"JET_UNICODEINDEX","features":[511]},{"name":"JET_UNICODEINDEX2","features":[511]},{"name":"JET_USERDEFINEDDEFAULT_A","features":[511]},{"name":"JET_USERDEFINEDDEFAULT_W","features":[511]},{"name":"JET_VERSION","features":[511]},{"name":"JET_bitAbortSnapshot","features":[511]},{"name":"JET_bitAllDatabasesSnapshot","features":[511]},{"name":"JET_bitBackupAtomic","features":[511]},{"name":"JET_bitBackupEndAbort","features":[511]},{"name":"JET_bitBackupEndNormal","features":[511]},{"name":"JET_bitBackupIncremental","features":[511]},{"name":"JET_bitBackupSnapshot","features":[511]},{"name":"JET_bitBackupTruncateDone","features":[511]},{"name":"JET_bitBookmarkPermitVirtualCurrency","features":[511]},{"name":"JET_bitCheckUniqueness","features":[511]},{"name":"JET_bitColumnAutoincrement","features":[511]},{"name":"JET_bitColumnCompressed","features":[511]},{"name":"JET_bitColumnDeleteOnZero","features":[511]},{"name":"JET_bitColumnEscrowUpdate","features":[511]},{"name":"JET_bitColumnFinalize","features":[511]},{"name":"JET_bitColumnFixed","features":[511]},{"name":"JET_bitColumnMaybeNull","features":[511]},{"name":"JET_bitColumnMultiValued","features":[511]},{"name":"JET_bitColumnNotNULL","features":[511]},{"name":"JET_bitColumnTTDescending","features":[511]},{"name":"JET_bitColumnTTKey","features":[511]},{"name":"JET_bitColumnTagged","features":[511]},{"name":"JET_bitColumnUnversioned","features":[511]},{"name":"JET_bitColumnUpdatable","features":[511]},{"name":"JET_bitColumnUserDefinedDefault","features":[511]},{"name":"JET_bitColumnVersion","features":[511]},{"name":"JET_bitCommitLazyFlush","features":[511]},{"name":"JET_bitCompactRepair","features":[511]},{"name":"JET_bitCompactStats","features":[511]},{"name":"JET_bitConfigStoreReadControlDefault","features":[511]},{"name":"JET_bitConfigStoreReadControlDisableAll","features":[511]},{"name":"JET_bitConfigStoreReadControlInhibitRead","features":[511]},{"name":"JET_bitContinueAfterThaw","features":[511]},{"name":"JET_bitCopySnapshot","features":[511]},{"name":"JET_bitCreateHintAppendSequential","features":[511]},{"name":"JET_bitCreateHintHotpointSequential","features":[511]},{"name":"JET_bitDbDeleteCorruptIndexes","features":[511]},{"name":"JET_bitDbDeleteUnicodeIndexes","features":[511]},{"name":"JET_bitDbEnableBackgroundMaintenance","features":[511]},{"name":"JET_bitDbExclusive","features":[511]},{"name":"JET_bitDbOverwriteExisting","features":[511]},{"name":"JET_bitDbPurgeCacheOnAttach","features":[511]},{"name":"JET_bitDbReadOnly","features":[511]},{"name":"JET_bitDbRecoveryOff","features":[511]},{"name":"JET_bitDbShadowingOff","features":[511]},{"name":"JET_bitDbUpgrade","features":[511]},{"name":"JET_bitDefragmentAvailSpaceTreesOnly","features":[511]},{"name":"JET_bitDefragmentBTree","features":[511]},{"name":"JET_bitDefragmentBatchStart","features":[511]},{"name":"JET_bitDefragmentBatchStop","features":[511]},{"name":"JET_bitDefragmentNoPartialMerges","features":[511]},{"name":"JET_bitDeleteColumnIgnoreTemplateColumns","features":[511]},{"name":"JET_bitDeleteHintTableSequential","features":[511]},{"name":"JET_bitDumpCacheIncludeCachedPages","features":[511]},{"name":"JET_bitDumpCacheIncludeCorruptedPages","features":[511]},{"name":"JET_bitDumpCacheIncludeDirtyPages","features":[511]},{"name":"JET_bitDumpCacheMaximum","features":[511]},{"name":"JET_bitDumpCacheMinimum","features":[511]},{"name":"JET_bitDumpCacheNoDecommit","features":[511]},{"name":"JET_bitDumpMaximum","features":[511]},{"name":"JET_bitDumpMinimum","features":[511]},{"name":"JET_bitDurableCommitCallbackLogUnavailable","features":[511]},{"name":"JET_bitESE98FileNames","features":[511]},{"name":"JET_bitEightDotThreeSoftCompat","features":[511]},{"name":"JET_bitEnumerateCompressOutput","features":[511]},{"name":"JET_bitEnumerateCopy","features":[511]},{"name":"JET_bitEnumerateIgnoreDefault","features":[511]},{"name":"JET_bitEnumerateIgnoreUserDefinedDefault","features":[511]},{"name":"JET_bitEnumerateInRecordOnly","features":[511]},{"name":"JET_bitEnumeratePresenceOnly","features":[511]},{"name":"JET_bitEnumerateTaggedOnly","features":[511]},{"name":"JET_bitEscrowNoRollback","features":[511]},{"name":"JET_bitExplicitPrepare","features":[511]},{"name":"JET_bitForceDetach","features":[511]},{"name":"JET_bitForceNewLog","features":[511]},{"name":"JET_bitFullColumnEndLimit","features":[511]},{"name":"JET_bitFullColumnStartLimit","features":[511]},{"name":"JET_bitHungIOEvent","features":[511]},{"name":"JET_bitIdleCompact","features":[511]},{"name":"JET_bitIdleFlushBuffers","features":[511]},{"name":"JET_bitIdleStatus","features":[511]},{"name":"JET_bitIncrementalSnapshot","features":[511]},{"name":"JET_bitIndexColumnMustBeNonNull","features":[511]},{"name":"JET_bitIndexColumnMustBeNull","features":[511]},{"name":"JET_bitIndexCrossProduct","features":[511]},{"name":"JET_bitIndexDisallowNull","features":[511]},{"name":"JET_bitIndexDisallowTruncation","features":[511]},{"name":"JET_bitIndexDotNetGuid","features":[511]},{"name":"JET_bitIndexEmpty","features":[511]},{"name":"JET_bitIndexIgnoreAnyNull","features":[511]},{"name":"JET_bitIndexIgnoreFirstNull","features":[511]},{"name":"JET_bitIndexIgnoreNull","features":[511]},{"name":"JET_bitIndexImmutableStructure","features":[511]},{"name":"JET_bitIndexKeyMost","features":[511]},{"name":"JET_bitIndexLazyFlush","features":[511]},{"name":"JET_bitIndexNestedTable","features":[511]},{"name":"JET_bitIndexPrimary","features":[511]},{"name":"JET_bitIndexSortNullsHigh","features":[511]},{"name":"JET_bitIndexTupleLimits","features":[511]},{"name":"JET_bitIndexTuples","features":[511]},{"name":"JET_bitIndexUnicode","features":[511]},{"name":"JET_bitIndexUnique","features":[511]},{"name":"JET_bitIndexUnversioned","features":[511]},{"name":"JET_bitKeepDbAttachedAtEndOfRecovery","features":[511]},{"name":"JET_bitKeyAscending","features":[511]},{"name":"JET_bitKeyDataZeroLength","features":[511]},{"name":"JET_bitKeyDescending","features":[511]},{"name":"JET_bitLSCursor","features":[511]},{"name":"JET_bitLSReset","features":[511]},{"name":"JET_bitLSTable","features":[511]},{"name":"JET_bitLogStreamMustExist","features":[511]},{"name":"JET_bitMoveFirst","features":[511]},{"name":"JET_bitMoveKeyNE","features":[511]},{"name":"JET_bitNewKey","features":[511]},{"name":"JET_bitNoMove","features":[511]},{"name":"JET_bitNormalizedKey","features":[511]},{"name":"JET_bitObjectSystem","features":[511]},{"name":"JET_bitObjectTableDerived","features":[511]},{"name":"JET_bitObjectTableFixedDDL","features":[511]},{"name":"JET_bitObjectTableNoFixedVarColumnsInDerivedTables","features":[511]},{"name":"JET_bitObjectTableTemplate","features":[511]},{"name":"JET_bitPartialColumnEndLimit","features":[511]},{"name":"JET_bitPartialColumnStartLimit","features":[511]},{"name":"JET_bitPrereadBackward","features":[511]},{"name":"JET_bitPrereadFirstPage","features":[511]},{"name":"JET_bitPrereadForward","features":[511]},{"name":"JET_bitPrereadNormalizedKey","features":[511]},{"name":"JET_bitRangeInclusive","features":[511]},{"name":"JET_bitRangeInstantDuration","features":[511]},{"name":"JET_bitRangeRemove","features":[511]},{"name":"JET_bitRangeUpperLimit","features":[511]},{"name":"JET_bitReadLock","features":[511]},{"name":"JET_bitRecordInIndex","features":[511]},{"name":"JET_bitRecordNotInIndex","features":[511]},{"name":"JET_bitRecordSizeInCopyBuffer","features":[511]},{"name":"JET_bitRecordSizeLocal","features":[511]},{"name":"JET_bitRecordSizeRunningTotal","features":[511]},{"name":"JET_bitRecoveryWithoutUndo","features":[511]},{"name":"JET_bitReplayIgnoreLostLogs","features":[511]},{"name":"JET_bitReplayIgnoreMissingDB","features":[511]},{"name":"JET_bitReplayMissingMapEntryDB","features":[511]},{"name":"JET_bitResizeDatabaseOnlyGrow","features":[511]},{"name":"JET_bitResizeDatabaseOnlyShrink","features":[511]},{"name":"JET_bitRetrieveCopy","features":[511]},{"name":"JET_bitRetrieveFromIndex","features":[511]},{"name":"JET_bitRetrieveFromPrimaryBookmark","features":[511]},{"name":"JET_bitRetrieveHintReserve1","features":[511]},{"name":"JET_bitRetrieveHintReserve2","features":[511]},{"name":"JET_bitRetrieveHintReserve3","features":[511]},{"name":"JET_bitRetrieveHintTableScanBackward","features":[511]},{"name":"JET_bitRetrieveHintTableScanForward","features":[511]},{"name":"JET_bitRetrieveIgnoreDefault","features":[511]},{"name":"JET_bitRetrieveNull","features":[511]},{"name":"JET_bitRetrieveTag","features":[511]},{"name":"JET_bitRetrieveTuple","features":[511]},{"name":"JET_bitRollbackAll","features":[511]},{"name":"JET_bitSeekEQ","features":[511]},{"name":"JET_bitSeekGE","features":[511]},{"name":"JET_bitSeekGT","features":[511]},{"name":"JET_bitSeekLE","features":[511]},{"name":"JET_bitSeekLT","features":[511]},{"name":"JET_bitSetAppendLV","features":[511]},{"name":"JET_bitSetCompressed","features":[511]},{"name":"JET_bitSetContiguousLV","features":[511]},{"name":"JET_bitSetIndexRange","features":[511]},{"name":"JET_bitSetIntrinsicLV","features":[511]},{"name":"JET_bitSetOverwriteLV","features":[511]},{"name":"JET_bitSetRevertToDefaultValue","features":[511]},{"name":"JET_bitSetSeparateLV","features":[511]},{"name":"JET_bitSetSizeLV","features":[511]},{"name":"JET_bitSetUncompressed","features":[511]},{"name":"JET_bitSetUniqueMultiValues","features":[511]},{"name":"JET_bitSetUniqueNormalizedMultiValues","features":[511]},{"name":"JET_bitSetZeroLength","features":[511]},{"name":"JET_bitShrinkDatabaseOff","features":[511]},{"name":"JET_bitShrinkDatabaseOn","features":[511]},{"name":"JET_bitShrinkDatabaseRealtime","features":[511]},{"name":"JET_bitShrinkDatabaseTrim","features":[511]},{"name":"JET_bitSpaceHintsUtilizeParentSpace","features":[511]},{"name":"JET_bitStopServiceAll","features":[511]},{"name":"JET_bitStopServiceBackgroundUserTasks","features":[511]},{"name":"JET_bitStopServiceQuiesceCaches","features":[511]},{"name":"JET_bitStopServiceResume","features":[511]},{"name":"JET_bitStrLimit","features":[511]},{"name":"JET_bitSubStrLimit","features":[511]},{"name":"JET_bitTTDotNetGuid","features":[511]},{"name":"JET_bitTTErrorOnDuplicateInsertion","features":[511]},{"name":"JET_bitTTForceMaterialization","features":[511]},{"name":"JET_bitTTForwardOnly","features":[511]},{"name":"JET_bitTTIndexed","features":[511]},{"name":"JET_bitTTIntrinsicLVsOnly","features":[511]},{"name":"JET_bitTTScrollable","features":[511]},{"name":"JET_bitTTSortNullsHigh","features":[511]},{"name":"JET_bitTTUnique","features":[511]},{"name":"JET_bitTTUpdatable","features":[511]},{"name":"JET_bitTableClass1","features":[511]},{"name":"JET_bitTableClass10","features":[511]},{"name":"JET_bitTableClass11","features":[511]},{"name":"JET_bitTableClass12","features":[511]},{"name":"JET_bitTableClass13","features":[511]},{"name":"JET_bitTableClass14","features":[511]},{"name":"JET_bitTableClass15","features":[511]},{"name":"JET_bitTableClass2","features":[511]},{"name":"JET_bitTableClass3","features":[511]},{"name":"JET_bitTableClass4","features":[511]},{"name":"JET_bitTableClass5","features":[511]},{"name":"JET_bitTableClass6","features":[511]},{"name":"JET_bitTableClass7","features":[511]},{"name":"JET_bitTableClass8","features":[511]},{"name":"JET_bitTableClass9","features":[511]},{"name":"JET_bitTableClassMask","features":[511]},{"name":"JET_bitTableClassNone","features":[511]},{"name":"JET_bitTableCreateFixedDDL","features":[511]},{"name":"JET_bitTableCreateImmutableStructure","features":[511]},{"name":"JET_bitTableCreateNoFixedVarColumnsInDerivedTables","features":[511]},{"name":"JET_bitTableCreateTemplateTable","features":[511]},{"name":"JET_bitTableDenyRead","features":[511]},{"name":"JET_bitTableDenyWrite","features":[511]},{"name":"JET_bitTableInfoBookmark","features":[511]},{"name":"JET_bitTableInfoRollback","features":[511]},{"name":"JET_bitTableInfoUpdatable","features":[511]},{"name":"JET_bitTableNoCache","features":[511]},{"name":"JET_bitTableOpportuneRead","features":[511]},{"name":"JET_bitTablePermitDDL","features":[511]},{"name":"JET_bitTablePreread","features":[511]},{"name":"JET_bitTableReadOnly","features":[511]},{"name":"JET_bitTableSequential","features":[511]},{"name":"JET_bitTableUpdatable","features":[511]},{"name":"JET_bitTermAbrupt","features":[511]},{"name":"JET_bitTermComplete","features":[511]},{"name":"JET_bitTermDirty","features":[511]},{"name":"JET_bitTermStopBackup","features":[511]},{"name":"JET_bitTransactionReadOnly","features":[511]},{"name":"JET_bitTruncateLogsAfterRecovery","features":[511]},{"name":"JET_bitUpdateCheckESE97Compatibility","features":[511]},{"name":"JET_bitWaitAllLevel0Commit","features":[511]},{"name":"JET_bitWaitLastLevel0Commit","features":[511]},{"name":"JET_bitWriteLock","features":[511]},{"name":"JET_bitZeroLength","features":[511]},{"name":"JET_cbBookmarkMost","features":[511]},{"name":"JET_cbColumnLVPageOverhead","features":[511]},{"name":"JET_cbColumnMost","features":[511]},{"name":"JET_cbFullNameMost","features":[511]},{"name":"JET_cbKeyMost","features":[511]},{"name":"JET_cbKeyMost2KBytePage","features":[511]},{"name":"JET_cbKeyMost4KBytePage","features":[511]},{"name":"JET_cbKeyMost8KBytePage","features":[511]},{"name":"JET_cbKeyMostMin","features":[511]},{"name":"JET_cbLVColumnMost","features":[511]},{"name":"JET_cbLVDefaultValueMost","features":[511]},{"name":"JET_cbLimitKeyMost","features":[511]},{"name":"JET_cbNameMost","features":[511]},{"name":"JET_cbPrimaryKeyMost","features":[511]},{"name":"JET_cbSecondaryKeyMost","features":[511]},{"name":"JET_cbtypAfterDelete","features":[511]},{"name":"JET_cbtypAfterInsert","features":[511]},{"name":"JET_cbtypAfterReplace","features":[511]},{"name":"JET_cbtypBeforeDelete","features":[511]},{"name":"JET_cbtypBeforeInsert","features":[511]},{"name":"JET_cbtypBeforeReplace","features":[511]},{"name":"JET_cbtypFinalize","features":[511]},{"name":"JET_cbtypFreeCursorLS","features":[511]},{"name":"JET_cbtypFreeTableLS","features":[511]},{"name":"JET_cbtypNull","features":[511]},{"name":"JET_cbtypOnlineDefragCompleted","features":[511]},{"name":"JET_cbtypUserDefinedDefaultValue","features":[511]},{"name":"JET_ccolFixedMost","features":[511]},{"name":"JET_ccolKeyMost","features":[511]},{"name":"JET_ccolMost","features":[511]},{"name":"JET_ccolTaggedMost","features":[511]},{"name":"JET_ccolVarMost","features":[511]},{"name":"JET_coltypBinary","features":[511]},{"name":"JET_coltypBit","features":[511]},{"name":"JET_coltypCurrency","features":[511]},{"name":"JET_coltypDateTime","features":[511]},{"name":"JET_coltypGUID","features":[511]},{"name":"JET_coltypIEEEDouble","features":[511]},{"name":"JET_coltypIEEESingle","features":[511]},{"name":"JET_coltypLong","features":[511]},{"name":"JET_coltypLongBinary","features":[511]},{"name":"JET_coltypLongLong","features":[511]},{"name":"JET_coltypLongText","features":[511]},{"name":"JET_coltypMax","features":[511]},{"name":"JET_coltypNil","features":[511]},{"name":"JET_coltypSLV","features":[511]},{"name":"JET_coltypShort","features":[511]},{"name":"JET_coltypText","features":[511]},{"name":"JET_coltypUnsignedByte","features":[511]},{"name":"JET_coltypUnsignedLong","features":[511]},{"name":"JET_coltypUnsignedLongLong","features":[511]},{"name":"JET_coltypUnsignedShort","features":[511]},{"name":"JET_configDefault","features":[511]},{"name":"JET_configDynamicMediumMemory","features":[511]},{"name":"JET_configHighConcurrencyScaling","features":[511]},{"name":"JET_configLowDiskFootprint","features":[511]},{"name":"JET_configLowMemory","features":[511]},{"name":"JET_configLowPower","features":[511]},{"name":"JET_configMediumDiskFootprint","features":[511]},{"name":"JET_configRemoveQuotas","features":[511]},{"name":"JET_configRunSilent","features":[511]},{"name":"JET_configSSDProfileIO","features":[511]},{"name":"JET_configUnthrottledMemory","features":[511]},{"name":"JET_dbstateBeingConverted","features":[511]},{"name":"JET_dbstateCleanShutdown","features":[511]},{"name":"JET_dbstateDirtyShutdown","features":[511]},{"name":"JET_dbstateForceDetach","features":[511]},{"name":"JET_dbstateJustCreated","features":[511]},{"name":"JET_errAccessDenied","features":[511]},{"name":"JET_errAfterInitialization","features":[511]},{"name":"JET_errAlreadyInitialized","features":[511]},{"name":"JET_errAlreadyPrepared","features":[511]},{"name":"JET_errAttachedDatabaseMismatch","features":[511]},{"name":"JET_errBackupAbortByServer","features":[511]},{"name":"JET_errBackupDirectoryNotEmpty","features":[511]},{"name":"JET_errBackupInProgress","features":[511]},{"name":"JET_errBackupNotAllowedYet","features":[511]},{"name":"JET_errBadBackupDatabaseSize","features":[511]},{"name":"JET_errBadBookmark","features":[511]},{"name":"JET_errBadCheckpointSignature","features":[511]},{"name":"JET_errBadColumnId","features":[511]},{"name":"JET_errBadDbSignature","features":[511]},{"name":"JET_errBadEmptyPage","features":[511]},{"name":"JET_errBadItagSequence","features":[511]},{"name":"JET_errBadLineCount","features":[511]},{"name":"JET_errBadLogSignature","features":[511]},{"name":"JET_errBadLogVersion","features":[511]},{"name":"JET_errBadPageLink","features":[511]},{"name":"JET_errBadParentPageLink","features":[511]},{"name":"JET_errBadPatchPage","features":[511]},{"name":"JET_errBadRestoreTargetInstance","features":[511]},{"name":"JET_errBufferTooSmall","features":[511]},{"name":"JET_errCallbackFailed","features":[511]},{"name":"JET_errCallbackNotResolved","features":[511]},{"name":"JET_errCannotAddFixedVarColumnToDerivedTable","features":[511]},{"name":"JET_errCannotBeTagged","features":[511]},{"name":"JET_errCannotDeleteSystemTable","features":[511]},{"name":"JET_errCannotDeleteTempTable","features":[511]},{"name":"JET_errCannotDeleteTemplateTable","features":[511]},{"name":"JET_errCannotDisableVersioning","features":[511]},{"name":"JET_errCannotIndex","features":[511]},{"name":"JET_errCannotIndexOnEncryptedColumn","features":[511]},{"name":"JET_errCannotLogDuringRecoveryRedo","features":[511]},{"name":"JET_errCannotMaterializeForwardOnlySort","features":[511]},{"name":"JET_errCannotNestDDL","features":[511]},{"name":"JET_errCannotSeparateIntrinsicLV","features":[511]},{"name":"JET_errCatalogCorrupted","features":[511]},{"name":"JET_errCheckpointCorrupt","features":[511]},{"name":"JET_errCheckpointDepthTooDeep","features":[511]},{"name":"JET_errCheckpointFileNotFound","features":[511]},{"name":"JET_errClientRequestToStopJetService","features":[511]},{"name":"JET_errColumnCannotBeCompressed","features":[511]},{"name":"JET_errColumnCannotBeEncrypted","features":[511]},{"name":"JET_errColumnDoesNotFit","features":[511]},{"name":"JET_errColumnDuplicate","features":[511]},{"name":"JET_errColumnInRelationship","features":[511]},{"name":"JET_errColumnInUse","features":[511]},{"name":"JET_errColumnIndexed","features":[511]},{"name":"JET_errColumnLong","features":[511]},{"name":"JET_errColumnNoChunk","features":[511]},{"name":"JET_errColumnNoEncryptionKey","features":[511]},{"name":"JET_errColumnNotFound","features":[511]},{"name":"JET_errColumnNotUpdatable","features":[511]},{"name":"JET_errColumnRedundant","features":[511]},{"name":"JET_errColumnTooBig","features":[511]},{"name":"JET_errCommittedLogFileCorrupt","features":[511]},{"name":"JET_errCommittedLogFilesMissing","features":[511]},{"name":"JET_errConsistentTimeMismatch","features":[511]},{"name":"JET_errContainerNotEmpty","features":[511]},{"name":"JET_errDDLNotInheritable","features":[511]},{"name":"JET_errDataHasChanged","features":[511]},{"name":"JET_errDatabase200Format","features":[511]},{"name":"JET_errDatabase400Format","features":[511]},{"name":"JET_errDatabase500Format","features":[511]},{"name":"JET_errDatabaseAlreadyRunningMaintenance","features":[511]},{"name":"JET_errDatabaseAlreadyUpgraded","features":[511]},{"name":"JET_errDatabaseAttachedForRecovery","features":[511]},{"name":"JET_errDatabaseBufferDependenciesCorrupted","features":[511]},{"name":"JET_errDatabaseCorrupted","features":[511]},{"name":"JET_errDatabaseCorruptedNoRepair","features":[511]},{"name":"JET_errDatabaseDirtyShutdown","features":[511]},{"name":"JET_errDatabaseDuplicate","features":[511]},{"name":"JET_errDatabaseFileReadOnly","features":[511]},{"name":"JET_errDatabaseIdInUse","features":[511]},{"name":"JET_errDatabaseInUse","features":[511]},{"name":"JET_errDatabaseIncompleteUpgrade","features":[511]},{"name":"JET_errDatabaseInconsistent","features":[511]},{"name":"JET_errDatabaseInvalidName","features":[511]},{"name":"JET_errDatabaseInvalidPages","features":[511]},{"name":"JET_errDatabaseInvalidPath","features":[511]},{"name":"JET_errDatabaseLeakInSpace","features":[511]},{"name":"JET_errDatabaseLocked","features":[511]},{"name":"JET_errDatabaseLogSetMismatch","features":[511]},{"name":"JET_errDatabaseNotFound","features":[511]},{"name":"JET_errDatabaseNotReady","features":[511]},{"name":"JET_errDatabasePatchFileMismatch","features":[511]},{"name":"JET_errDatabaseSharingViolation","features":[511]},{"name":"JET_errDatabaseSignInUse","features":[511]},{"name":"JET_errDatabaseStreamingFileMismatch","features":[511]},{"name":"JET_errDatabaseUnavailable","features":[511]},{"name":"JET_errDatabasesNotFromSameSnapshot","features":[511]},{"name":"JET_errDbTimeBeyondMaxRequired","features":[511]},{"name":"JET_errDbTimeCorrupted","features":[511]},{"name":"JET_errDbTimeTooNew","features":[511]},{"name":"JET_errDbTimeTooOld","features":[511]},{"name":"JET_errDecompressionFailed","features":[511]},{"name":"JET_errDecryptionFailed","features":[511]},{"name":"JET_errDefaultValueTooBig","features":[511]},{"name":"JET_errDeleteBackupFileFail","features":[511]},{"name":"JET_errDensityInvalid","features":[511]},{"name":"JET_errDerivedColumnCorruption","features":[511]},{"name":"JET_errDirtyShutdown","features":[511]},{"name":"JET_errDisabledFunctionality","features":[511]},{"name":"JET_errDiskFull","features":[511]},{"name":"JET_errDiskIO","features":[511]},{"name":"JET_errDiskReadVerificationFailure","features":[511]},{"name":"JET_errEncryptionBadItag","features":[511]},{"name":"JET_errEndingRestoreLogTooLow","features":[511]},{"name":"JET_errEngineFormatVersionNoLongerSupportedTooLow","features":[511]},{"name":"JET_errEngineFormatVersionNotYetImplementedTooHigh","features":[511]},{"name":"JET_errEngineFormatVersionParamTooLowForRequestedFeature","features":[511]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForDatabaseVersion","features":[511]},{"name":"JET_errEngineFormatVersionSpecifiedTooLowForLogVersion","features":[511]},{"name":"JET_errEntryPointNotFound","features":[511]},{"name":"JET_errExclusiveTableLockRequired","features":[511]},{"name":"JET_errExistingLogFileHasBadSignature","features":[511]},{"name":"JET_errExistingLogFileIsNotContiguous","features":[511]},{"name":"JET_errFeatureNotAvailable","features":[511]},{"name":"JET_errFileAccessDenied","features":[511]},{"name":"JET_errFileAlreadyExists","features":[511]},{"name":"JET_errFileClose","features":[511]},{"name":"JET_errFileCompressed","features":[511]},{"name":"JET_errFileIOAbort","features":[511]},{"name":"JET_errFileIOBeyondEOF","features":[511]},{"name":"JET_errFileIOFail","features":[511]},{"name":"JET_errFileIORetry","features":[511]},{"name":"JET_errFileIOSparse","features":[511]},{"name":"JET_errFileInvalidType","features":[511]},{"name":"JET_errFileNotFound","features":[511]},{"name":"JET_errFileSystemCorruption","features":[511]},{"name":"JET_errFilteredMoveNotSupported","features":[511]},{"name":"JET_errFixedDDL","features":[511]},{"name":"JET_errFixedInheritedDDL","features":[511]},{"name":"JET_errFlushMapDatabaseMismatch","features":[511]},{"name":"JET_errFlushMapUnrecoverable","features":[511]},{"name":"JET_errFlushMapVersionUnsupported","features":[511]},{"name":"JET_errForceDetachNotAllowed","features":[511]},{"name":"JET_errGivenLogFileHasBadSignature","features":[511]},{"name":"JET_errGivenLogFileIsNotContiguous","features":[511]},{"name":"JET_errIllegalOperation","features":[511]},{"name":"JET_errInTransaction","features":[511]},{"name":"JET_errIndexBuildCorrupted","features":[511]},{"name":"JET_errIndexCantBuild","features":[511]},{"name":"JET_errIndexDuplicate","features":[511]},{"name":"JET_errIndexHasPrimary","features":[511]},{"name":"JET_errIndexInUse","features":[511]},{"name":"JET_errIndexInvalidDef","features":[511]},{"name":"JET_errIndexMustStay","features":[511]},{"name":"JET_errIndexNotFound","features":[511]},{"name":"JET_errIndexTuplesCannotRetrieveFromIndex","features":[511]},{"name":"JET_errIndexTuplesInvalidLimits","features":[511]},{"name":"JET_errIndexTuplesKeyTooSmall","features":[511]},{"name":"JET_errIndexTuplesNonUniqueOnly","features":[511]},{"name":"JET_errIndexTuplesOneColumnOnly","features":[511]},{"name":"JET_errIndexTuplesSecondaryIndexOnly","features":[511]},{"name":"JET_errIndexTuplesTextBinaryColumnsOnly","features":[511]},{"name":"JET_errIndexTuplesTextColumnsOnly","features":[511]},{"name":"JET_errIndexTuplesTooManyColumns","features":[511]},{"name":"JET_errIndexTuplesVarSegMacNotAllowed","features":[511]},{"name":"JET_errInitInProgress","features":[511]},{"name":"JET_errInstanceNameInUse","features":[511]},{"name":"JET_errInstanceUnavailable","features":[511]},{"name":"JET_errInstanceUnavailableDueToFatalLogDiskFull","features":[511]},{"name":"JET_errInternalError","features":[511]},{"name":"JET_errInvalidBackup","features":[511]},{"name":"JET_errInvalidBackupSequence","features":[511]},{"name":"JET_errInvalidBookmark","features":[511]},{"name":"JET_errInvalidBufferSize","features":[511]},{"name":"JET_errInvalidCodePage","features":[511]},{"name":"JET_errInvalidColumnType","features":[511]},{"name":"JET_errInvalidCountry","features":[511]},{"name":"JET_errInvalidCreateDbVersion","features":[511]},{"name":"JET_errInvalidCreateIndex","features":[511]},{"name":"JET_errInvalidDatabase","features":[511]},{"name":"JET_errInvalidDatabaseId","features":[511]},{"name":"JET_errInvalidDatabaseVersion","features":[511]},{"name":"JET_errInvalidDbparamId","features":[511]},{"name":"JET_errInvalidFilename","features":[511]},{"name":"JET_errInvalidGrbit","features":[511]},{"name":"JET_errInvalidIndexId","features":[511]},{"name":"JET_errInvalidInstance","features":[511]},{"name":"JET_errInvalidLCMapStringFlags","features":[511]},{"name":"JET_errInvalidLVChunkSize","features":[511]},{"name":"JET_errInvalidLanguageId","features":[511]},{"name":"JET_errInvalidLogDirectory","features":[511]},{"name":"JET_errInvalidLogSequence","features":[511]},{"name":"JET_errInvalidLoggedOperation","features":[511]},{"name":"JET_errInvalidName","features":[511]},{"name":"JET_errInvalidObject","features":[511]},{"name":"JET_errInvalidOnSort","features":[511]},{"name":"JET_errInvalidOperation","features":[511]},{"name":"JET_errInvalidParameter","features":[511]},{"name":"JET_errInvalidPath","features":[511]},{"name":"JET_errInvalidPlaceholderColumn","features":[511]},{"name":"JET_errInvalidPreread","features":[511]},{"name":"JET_errInvalidSesid","features":[511]},{"name":"JET_errInvalidSesparamId","features":[511]},{"name":"JET_errInvalidSettings","features":[511]},{"name":"JET_errInvalidSystemPath","features":[511]},{"name":"JET_errInvalidTableId","features":[511]},{"name":"JET_errKeyBoundary","features":[511]},{"name":"JET_errKeyDuplicate","features":[511]},{"name":"JET_errKeyIsMade","features":[511]},{"name":"JET_errKeyNotMade","features":[511]},{"name":"JET_errKeyTooBig","features":[511]},{"name":"JET_errKeyTruncated","features":[511]},{"name":"JET_errLSAlreadySet","features":[511]},{"name":"JET_errLSCallbackNotSpecified","features":[511]},{"name":"JET_errLSNotSet","features":[511]},{"name":"JET_errLVCorrupted","features":[511]},{"name":"JET_errLanguageNotSupported","features":[511]},{"name":"JET_errLinkNotSupported","features":[511]},{"name":"JET_errLogBufferTooSmall","features":[511]},{"name":"JET_errLogCorruptDuringHardRecovery","features":[511]},{"name":"JET_errLogCorruptDuringHardRestore","features":[511]},{"name":"JET_errLogCorrupted","features":[511]},{"name":"JET_errLogDisabledDueToRecoveryFailure","features":[511]},{"name":"JET_errLogDiskFull","features":[511]},{"name":"JET_errLogFileCorrupt","features":[511]},{"name":"JET_errLogFileNotCopied","features":[511]},{"name":"JET_errLogFilePathInUse","features":[511]},{"name":"JET_errLogFileSizeMismatch","features":[511]},{"name":"JET_errLogFileSizeMismatchDatabasesConsistent","features":[511]},{"name":"JET_errLogGenerationMismatch","features":[511]},{"name":"JET_errLogReadVerifyFailure","features":[511]},{"name":"JET_errLogSectorSizeMismatch","features":[511]},{"name":"JET_errLogSectorSizeMismatchDatabasesConsistent","features":[511]},{"name":"JET_errLogSequenceChecksumMismatch","features":[511]},{"name":"JET_errLogSequenceEnd","features":[511]},{"name":"JET_errLogSequenceEndDatabasesConsistent","features":[511]},{"name":"JET_errLogTornWriteDuringHardRecovery","features":[511]},{"name":"JET_errLogTornWriteDuringHardRestore","features":[511]},{"name":"JET_errLogWriteFail","features":[511]},{"name":"JET_errLoggingDisabled","features":[511]},{"name":"JET_errMakeBackupDirectoryFail","features":[511]},{"name":"JET_errMissingCurrentLogFiles","features":[511]},{"name":"JET_errMissingFileToBackup","features":[511]},{"name":"JET_errMissingFullBackup","features":[511]},{"name":"JET_errMissingLogFile","features":[511]},{"name":"JET_errMissingPatchPage","features":[511]},{"name":"JET_errMissingPreviousLogFile","features":[511]},{"name":"JET_errMissingRestoreLogFiles","features":[511]},{"name":"JET_errMultiValuedColumnMustBeTagged","features":[511]},{"name":"JET_errMultiValuedDuplicate","features":[511]},{"name":"JET_errMultiValuedDuplicateAfterTruncation","features":[511]},{"name":"JET_errMultiValuedIndexViolation","features":[511]},{"name":"JET_errMustBeSeparateLongValue","features":[511]},{"name":"JET_errMustDisableLoggingForDbUpgrade","features":[511]},{"name":"JET_errMustRollback","features":[511]},{"name":"JET_errNTSystemCallFailed","features":[511]},{"name":"JET_errNoBackup","features":[511]},{"name":"JET_errNoBackupDirectory","features":[511]},{"name":"JET_errNoCurrentIndex","features":[511]},{"name":"JET_errNoCurrentRecord","features":[511]},{"name":"JET_errNodeCorrupted","features":[511]},{"name":"JET_errNotInTransaction","features":[511]},{"name":"JET_errNotInitialized","features":[511]},{"name":"JET_errNullInvalid","features":[511]},{"name":"JET_errNullKeyDisallowed","features":[511]},{"name":"JET_errOSSnapshotInvalidSequence","features":[511]},{"name":"JET_errOSSnapshotInvalidSnapId","features":[511]},{"name":"JET_errOSSnapshotNotAllowed","features":[511]},{"name":"JET_errOSSnapshotTimeOut","features":[511]},{"name":"JET_errObjectDuplicate","features":[511]},{"name":"JET_errObjectNotFound","features":[511]},{"name":"JET_errOneDatabasePerSession","features":[511]},{"name":"JET_errOutOfAutoincrementValues","features":[511]},{"name":"JET_errOutOfBuffers","features":[511]},{"name":"JET_errOutOfCursors","features":[511]},{"name":"JET_errOutOfDatabaseSpace","features":[511]},{"name":"JET_errOutOfDbtimeValues","features":[511]},{"name":"JET_errOutOfFileHandles","features":[511]},{"name":"JET_errOutOfLongValueIDs","features":[511]},{"name":"JET_errOutOfMemory","features":[511]},{"name":"JET_errOutOfObjectIDs","features":[511]},{"name":"JET_errOutOfSequentialIndexValues","features":[511]},{"name":"JET_errOutOfSessions","features":[511]},{"name":"JET_errOutOfThreads","features":[511]},{"name":"JET_errPageBoundary","features":[511]},{"name":"JET_errPageInitializedMismatch","features":[511]},{"name":"JET_errPageNotInitialized","features":[511]},{"name":"JET_errPageSizeMismatch","features":[511]},{"name":"JET_errPageTagCorrupted","features":[511]},{"name":"JET_errPartiallyAttachedDB","features":[511]},{"name":"JET_errPatchFileMissing","features":[511]},{"name":"JET_errPermissionDenied","features":[511]},{"name":"JET_errPreviousVersion","features":[511]},{"name":"JET_errPrimaryIndexCorrupted","features":[511]},{"name":"JET_errReadLostFlushVerifyFailure","features":[511]},{"name":"JET_errReadPgnoVerifyFailure","features":[511]},{"name":"JET_errReadVerifyFailure","features":[511]},{"name":"JET_errRecordDeleted","features":[511]},{"name":"JET_errRecordFormatConversionFailed","features":[511]},{"name":"JET_errRecordNoCopy","features":[511]},{"name":"JET_errRecordNotDeleted","features":[511]},{"name":"JET_errRecordNotFound","features":[511]},{"name":"JET_errRecordPrimaryChanged","features":[511]},{"name":"JET_errRecordTooBig","features":[511]},{"name":"JET_errRecordTooBigForBackwardCompatibility","features":[511]},{"name":"JET_errRecoveredWithErrors","features":[511]},{"name":"JET_errRecoveredWithoutUndo","features":[511]},{"name":"JET_errRecoveredWithoutUndoDatabasesConsistent","features":[511]},{"name":"JET_errRecoveryVerifyFailure","features":[511]},{"name":"JET_errRedoAbruptEnded","features":[511]},{"name":"JET_errRequiredLogFilesMissing","features":[511]},{"name":"JET_errRestoreInProgress","features":[511]},{"name":"JET_errRestoreOfNonBackupDatabase","features":[511]},{"name":"JET_errRfsFailure","features":[511]},{"name":"JET_errRfsNotArmed","features":[511]},{"name":"JET_errRollbackError","features":[511]},{"name":"JET_errRollbackRequired","features":[511]},{"name":"JET_errRunningInMultiInstanceMode","features":[511]},{"name":"JET_errRunningInOneInstanceMode","features":[511]},{"name":"JET_errSPAvailExtCacheOutOfMemory","features":[511]},{"name":"JET_errSPAvailExtCacheOutOfSync","features":[511]},{"name":"JET_errSPAvailExtCorrupted","features":[511]},{"name":"JET_errSPOwnExtCorrupted","features":[511]},{"name":"JET_errSecondaryIndexCorrupted","features":[511]},{"name":"JET_errSectorSizeNotSupported","features":[511]},{"name":"JET_errSeparatedLongValue","features":[511]},{"name":"JET_errSesidTableIdMismatch","features":[511]},{"name":"JET_errSessionContextAlreadySet","features":[511]},{"name":"JET_errSessionContextNotSetByThisThread","features":[511]},{"name":"JET_errSessionInUse","features":[511]},{"name":"JET_errSessionSharingViolation","features":[511]},{"name":"JET_errSessionWriteConflict","features":[511]},{"name":"JET_errSoftRecoveryOnBackupDatabase","features":[511]},{"name":"JET_errSoftRecoveryOnSnapshot","features":[511]},{"name":"JET_errSpaceHintsInvalid","features":[511]},{"name":"JET_errStartingRestoreLogTooHigh","features":[511]},{"name":"JET_errStreamingDataNotLogged","features":[511]},{"name":"JET_errSuccess","features":[511]},{"name":"JET_errSystemParameterConflict","features":[511]},{"name":"JET_errSystemParamsAlreadySet","features":[511]},{"name":"JET_errSystemPathInUse","features":[511]},{"name":"JET_errTableDuplicate","features":[511]},{"name":"JET_errTableInUse","features":[511]},{"name":"JET_errTableLocked","features":[511]},{"name":"JET_errTableNotEmpty","features":[511]},{"name":"JET_errTaggedNotNULL","features":[511]},{"name":"JET_errTaskDropped","features":[511]},{"name":"JET_errTempFileOpenError","features":[511]},{"name":"JET_errTempPathInUse","features":[511]},{"name":"JET_errTermInProgress","features":[511]},{"name":"JET_errTooManyActiveUsers","features":[511]},{"name":"JET_errTooManyAttachedDatabases","features":[511]},{"name":"JET_errTooManyColumns","features":[511]},{"name":"JET_errTooManyIO","features":[511]},{"name":"JET_errTooManyIndexes","features":[511]},{"name":"JET_errTooManyInstances","features":[511]},{"name":"JET_errTooManyKeys","features":[511]},{"name":"JET_errTooManyMempoolEntries","features":[511]},{"name":"JET_errTooManyOpenDatabases","features":[511]},{"name":"JET_errTooManyOpenIndexes","features":[511]},{"name":"JET_errTooManyOpenTables","features":[511]},{"name":"JET_errTooManyOpenTablesAndCleanupTimedOut","features":[511]},{"name":"JET_errTooManyRecords","features":[511]},{"name":"JET_errTooManySorts","features":[511]},{"name":"JET_errTooManySplits","features":[511]},{"name":"JET_errTransReadOnly","features":[511]},{"name":"JET_errTransTooDeep","features":[511]},{"name":"JET_errTransactionTooLong","features":[511]},{"name":"JET_errTransactionsNotReadyDuringRecovery","features":[511]},{"name":"JET_errUnicodeLanguageValidationFailure","features":[511]},{"name":"JET_errUnicodeNormalizationNotSupported","features":[511]},{"name":"JET_errUnicodeTranslationBufferTooSmall","features":[511]},{"name":"JET_errUnicodeTranslationFail","features":[511]},{"name":"JET_errUnloadableOSFunctionality","features":[511]},{"name":"JET_errUpdateMustVersion","features":[511]},{"name":"JET_errUpdateNotPrepared","features":[511]},{"name":"JET_errVersionStoreEntryTooBig","features":[511]},{"name":"JET_errVersionStoreOutOfMemory","features":[511]},{"name":"JET_errVersionStoreOutOfMemoryAndCleanupTimedOut","features":[511]},{"name":"JET_errWriteConflict","features":[511]},{"name":"JET_errWriteConflictPrimaryIndex","features":[511]},{"name":"JET_errcatApi","features":[511]},{"name":"JET_errcatCorruption","features":[511]},{"name":"JET_errcatData","features":[511]},{"name":"JET_errcatDisk","features":[511]},{"name":"JET_errcatError","features":[511]},{"name":"JET_errcatFatal","features":[511]},{"name":"JET_errcatFragmentation","features":[511]},{"name":"JET_errcatIO","features":[511]},{"name":"JET_errcatInconsistent","features":[511]},{"name":"JET_errcatMax","features":[511]},{"name":"JET_errcatMemory","features":[511]},{"name":"JET_errcatObsolete","features":[511]},{"name":"JET_errcatOperation","features":[511]},{"name":"JET_errcatQuota","features":[511]},{"name":"JET_errcatResource","features":[511]},{"name":"JET_errcatState","features":[511]},{"name":"JET_errcatUnknown","features":[511]},{"name":"JET_errcatUsage","features":[511]},{"name":"JET_filetypeCheckpoint","features":[511]},{"name":"JET_filetypeDatabase","features":[511]},{"name":"JET_filetypeFlushMap","features":[511]},{"name":"JET_filetypeLog","features":[511]},{"name":"JET_filetypeTempDatabase","features":[511]},{"name":"JET_filetypeUnknown","features":[511]},{"name":"JET_objtypNil","features":[511]},{"name":"JET_objtypTable","features":[511]},{"name":"JET_paramAccessDeniedRetryPeriod","features":[511]},{"name":"JET_paramAlternateDatabaseRecoveryPath","features":[511]},{"name":"JET_paramBaseName","features":[511]},{"name":"JET_paramBatchIOBufferMax","features":[511]},{"name":"JET_paramCachePriority","features":[511]},{"name":"JET_paramCacheSize","features":[511]},{"name":"JET_paramCacheSizeMax","features":[511]},{"name":"JET_paramCacheSizeMin","features":[511]},{"name":"JET_paramCachedClosedTables","features":[511]},{"name":"JET_paramCheckFormatWhenOpenFail","features":[511]},{"name":"JET_paramCheckpointDepthMax","features":[511]},{"name":"JET_paramCheckpointIOMax","features":[511]},{"name":"JET_paramCircularLog","features":[511]},{"name":"JET_paramCleanupMismatchedLogFiles","features":[511]},{"name":"JET_paramCommitDefault","features":[511]},{"name":"JET_paramConfigStoreSpec","features":[511]},{"name":"JET_paramConfiguration","features":[511]},{"name":"JET_paramCreatePathIfNotExist","features":[511]},{"name":"JET_paramDatabasePageSize","features":[511]},{"name":"JET_paramDbExtensionSize","features":[511]},{"name":"JET_paramDbScanIntervalMaxSec","features":[511]},{"name":"JET_paramDbScanIntervalMinSec","features":[511]},{"name":"JET_paramDbScanThrottle","features":[511]},{"name":"JET_paramDefragmentSequentialBTrees","features":[511]},{"name":"JET_paramDefragmentSequentialBTreesDensityCheckFrequency","features":[511]},{"name":"JET_paramDeleteOldLogs","features":[511]},{"name":"JET_paramDeleteOutOfRangeLogs","features":[511]},{"name":"JET_paramDisableCallbacks","features":[511]},{"name":"JET_paramDisablePerfmon","features":[511]},{"name":"JET_paramDurableCommitCallback","features":[511]},{"name":"JET_paramEnableAdvanced","features":[511]},{"name":"JET_paramEnableDBScanInRecovery","features":[511]},{"name":"JET_paramEnableDBScanSerialization","features":[511]},{"name":"JET_paramEnableFileCache","features":[511]},{"name":"JET_paramEnableIndexChecking","features":[511]},{"name":"JET_paramEnableIndexCleanup","features":[511]},{"name":"JET_paramEnableOnlineDefrag","features":[511]},{"name":"JET_paramEnablePersistedCallbacks","features":[511]},{"name":"JET_paramEnableRBS","features":[511]},{"name":"JET_paramEnableShrinkDatabase","features":[511]},{"name":"JET_paramEnableSqm","features":[511]},{"name":"JET_paramEnableTempTableVersioning","features":[511]},{"name":"JET_paramEnableViewCache","features":[511]},{"name":"JET_paramErrorToString","features":[511]},{"name":"JET_paramEventLogCache","features":[511]},{"name":"JET_paramEventLoggingLevel","features":[511]},{"name":"JET_paramEventSource","features":[511]},{"name":"JET_paramEventSourceKey","features":[511]},{"name":"JET_paramExceptionAction","features":[511]},{"name":"JET_paramGlobalMinVerPages","features":[511]},{"name":"JET_paramHungIOActions","features":[511]},{"name":"JET_paramHungIOThreshold","features":[511]},{"name":"JET_paramIOPriority","features":[511]},{"name":"JET_paramIOThrottlingTimeQuanta","features":[511]},{"name":"JET_paramIgnoreLogVersion","features":[511]},{"name":"JET_paramIndexTupleIncrement","features":[511]},{"name":"JET_paramIndexTupleStart","features":[511]},{"name":"JET_paramIndexTuplesLengthMax","features":[511]},{"name":"JET_paramIndexTuplesLengthMin","features":[511]},{"name":"JET_paramIndexTuplesToIndexMax","features":[511]},{"name":"JET_paramKeyMost","features":[511]},{"name":"JET_paramLRUKCorrInterval","features":[511]},{"name":"JET_paramLRUKHistoryMax","features":[511]},{"name":"JET_paramLRUKPolicy","features":[511]},{"name":"JET_paramLRUKTimeout","features":[511]},{"name":"JET_paramLRUKTrxCorrInterval","features":[511]},{"name":"JET_paramLVChunkSizeMost","features":[511]},{"name":"JET_paramLegacyFileNames","features":[511]},{"name":"JET_paramLogBuffers","features":[511]},{"name":"JET_paramLogCheckpointPeriod","features":[511]},{"name":"JET_paramLogFileCreateAsynch","features":[511]},{"name":"JET_paramLogFilePath","features":[511]},{"name":"JET_paramLogFileSize","features":[511]},{"name":"JET_paramLogWaitingUserMax","features":[511]},{"name":"JET_paramMaxCoalesceReadGapSize","features":[511]},{"name":"JET_paramMaxCoalesceReadSize","features":[511]},{"name":"JET_paramMaxCoalesceWriteGapSize","features":[511]},{"name":"JET_paramMaxCoalesceWriteSize","features":[511]},{"name":"JET_paramMaxColtyp","features":[511]},{"name":"JET_paramMaxCursors","features":[511]},{"name":"JET_paramMaxInstances","features":[511]},{"name":"JET_paramMaxOpenTables","features":[511]},{"name":"JET_paramMaxSessions","features":[511]},{"name":"JET_paramMaxTemporaryTables","features":[511]},{"name":"JET_paramMaxTransactionSize","features":[511]},{"name":"JET_paramMaxValueInvalid","features":[511]},{"name":"JET_paramMaxVerPages","features":[511]},{"name":"JET_paramMinDataForXpress","features":[511]},{"name":"JET_paramNoInformationEvent","features":[511]},{"name":"JET_paramOSSnapshotTimeout","features":[511]},{"name":"JET_paramOneDatabasePerSession","features":[511]},{"name":"JET_paramOutstandingIOMax","features":[511]},{"name":"JET_paramPageFragment","features":[511]},{"name":"JET_paramPageHintCacheSize","features":[511]},{"name":"JET_paramPageTempDBMin","features":[511]},{"name":"JET_paramPerfmonRefreshInterval","features":[511]},{"name":"JET_paramPreferredMaxOpenTables","features":[511]},{"name":"JET_paramPreferredVerPages","features":[511]},{"name":"JET_paramPrereadIOMax","features":[511]},{"name":"JET_paramProcessFriendlyName","features":[511]},{"name":"JET_paramRBSFilePath","features":[511]},{"name":"JET_paramRecordUpgradeDirtyLevel","features":[511]},{"name":"JET_paramRecovery","features":[511]},{"name":"JET_paramRuntimeCallback","features":[511]},{"name":"JET_paramStartFlushThreshold","features":[511]},{"name":"JET_paramStopFlushThreshold","features":[511]},{"name":"JET_paramSystemPath","features":[511]},{"name":"JET_paramTableClass10Name","features":[511]},{"name":"JET_paramTableClass11Name","features":[511]},{"name":"JET_paramTableClass12Name","features":[511]},{"name":"JET_paramTableClass13Name","features":[511]},{"name":"JET_paramTableClass14Name","features":[511]},{"name":"JET_paramTableClass15Name","features":[511]},{"name":"JET_paramTableClass1Name","features":[511]},{"name":"JET_paramTableClass2Name","features":[511]},{"name":"JET_paramTableClass3Name","features":[511]},{"name":"JET_paramTableClass4Name","features":[511]},{"name":"JET_paramTableClass5Name","features":[511]},{"name":"JET_paramTableClass6Name","features":[511]},{"name":"JET_paramTableClass7Name","features":[511]},{"name":"JET_paramTableClass8Name","features":[511]},{"name":"JET_paramTableClass9Name","features":[511]},{"name":"JET_paramTempPath","features":[511]},{"name":"JET_paramUnicodeIndexDefault","features":[511]},{"name":"JET_paramUseFlushForWriteDurability","features":[511]},{"name":"JET_paramVerPageSize","features":[511]},{"name":"JET_paramVersionStoreTaskQueueMax","features":[511]},{"name":"JET_paramWaitLogFlush","features":[511]},{"name":"JET_paramWaypointLatency","features":[511]},{"name":"JET_paramZeroDatabaseDuringBackup","features":[511]},{"name":"JET_prepCancel","features":[511]},{"name":"JET_prepInsert","features":[511]},{"name":"JET_prepInsertCopy","features":[511]},{"name":"JET_prepInsertCopyDeleteOriginal","features":[511]},{"name":"JET_prepInsertCopyReplaceOriginal","features":[511]},{"name":"JET_prepReplace","features":[511]},{"name":"JET_prepReplaceNoLock","features":[511]},{"name":"JET_relopBitmaskEqualsZero","features":[511]},{"name":"JET_relopBitmaskNotEqualsZero","features":[511]},{"name":"JET_relopEquals","features":[511]},{"name":"JET_relopGreaterThan","features":[511]},{"name":"JET_relopGreaterThanOrEqual","features":[511]},{"name":"JET_relopLessThan","features":[511]},{"name":"JET_relopLessThanOrEqual","features":[511]},{"name":"JET_relopNotEquals","features":[511]},{"name":"JET_relopPrefixEquals","features":[511]},{"name":"JET_sesparamCommitDefault","features":[511]},{"name":"JET_sesparamCorrelationID","features":[511]},{"name":"JET_sesparamMaxValueInvalid","features":[511]},{"name":"JET_sesparamOperationContext","features":[511]},{"name":"JET_sesparamTransactionLevel","features":[511]},{"name":"JET_snpBackup","features":[511]},{"name":"JET_snpCompact","features":[511]},{"name":"JET_snpRepair","features":[511]},{"name":"JET_snpRestore","features":[511]},{"name":"JET_snpScrub","features":[511]},{"name":"JET_snpUpgrade","features":[511]},{"name":"JET_snpUpgradeRecordFormat","features":[511]},{"name":"JET_sntBegin","features":[511]},{"name":"JET_sntComplete","features":[511]},{"name":"JET_sntFail","features":[511]},{"name":"JET_sntProgress","features":[511]},{"name":"JET_sntRequirements","features":[511]},{"name":"JET_sqmDisable","features":[511]},{"name":"JET_sqmEnable","features":[511]},{"name":"JET_sqmFromCEIP","features":[511]},{"name":"JET_wrnBufferTruncated","features":[511]},{"name":"JET_wrnCallbackNotRegistered","features":[511]},{"name":"JET_wrnColumnDefault","features":[511]},{"name":"JET_wrnColumnMaxTruncated","features":[511]},{"name":"JET_wrnColumnMoreTags","features":[511]},{"name":"JET_wrnColumnNotInRecord","features":[511]},{"name":"JET_wrnColumnNotLocal","features":[511]},{"name":"JET_wrnColumnNull","features":[511]},{"name":"JET_wrnColumnPresent","features":[511]},{"name":"JET_wrnColumnReference","features":[511]},{"name":"JET_wrnColumnSetNull","features":[511]},{"name":"JET_wrnColumnSingleValue","features":[511]},{"name":"JET_wrnColumnSkipped","features":[511]},{"name":"JET_wrnColumnTruncated","features":[511]},{"name":"JET_wrnCommittedLogFilesLost","features":[511]},{"name":"JET_wrnCommittedLogFilesRemoved","features":[511]},{"name":"JET_wrnCopyLongValue","features":[511]},{"name":"JET_wrnCorruptIndexDeleted","features":[511]},{"name":"JET_wrnDataHasChanged","features":[511]},{"name":"JET_wrnDatabaseAttached","features":[511]},{"name":"JET_wrnDatabaseRepaired","features":[511]},{"name":"JET_wrnDefragAlreadyRunning","features":[511]},{"name":"JET_wrnDefragNotRunning","features":[511]},{"name":"JET_wrnExistingLogFileHasBadSignature","features":[511]},{"name":"JET_wrnExistingLogFileIsNotContiguous","features":[511]},{"name":"JET_wrnFileOpenReadOnly","features":[511]},{"name":"JET_wrnFinishWithUndo","features":[511]},{"name":"JET_wrnIdleFull","features":[511]},{"name":"JET_wrnKeyChanged","features":[511]},{"name":"JET_wrnNoErrorInfo","features":[511]},{"name":"JET_wrnNoIdleActivity","features":[511]},{"name":"JET_wrnNoWriteLock","features":[511]},{"name":"JET_wrnNyi","features":[511]},{"name":"JET_wrnPrimaryIndexOutOfDate","features":[511]},{"name":"JET_wrnRemainingVersions","features":[511]},{"name":"JET_wrnSecondaryIndexOutOfDate","features":[511]},{"name":"JET_wrnSeekNotEqual","features":[511]},{"name":"JET_wrnSeparateLongValue","features":[511]},{"name":"JET_wrnShrinkNotPossible","features":[511]},{"name":"JET_wrnSkipThisRecord","features":[511]},{"name":"JET_wrnSortOverflow","features":[511]},{"name":"JET_wrnTableEmpty","features":[511]},{"name":"JET_wrnTableInUseBySystem","features":[511]},{"name":"JET_wrnTargetInstanceRunning","features":[511]},{"name":"JET_wrnUniqueKey","features":[511]},{"name":"JET_wszConfigStoreReadControl","features":[511]},{"name":"JET_wszConfigStoreRelPathSysParamDefault","features":[511]},{"name":"JET_wszConfigStoreRelPathSysParamOverride","features":[511]},{"name":"JetAddColumnA","features":[511,512]},{"name":"JetAddColumnW","features":[511,512]},{"name":"JetAttachDatabase2A","features":[511]},{"name":"JetAttachDatabase2W","features":[511]},{"name":"JetAttachDatabaseA","features":[511]},{"name":"JetAttachDatabaseW","features":[511]},{"name":"JetBackupA","features":[511]},{"name":"JetBackupInstanceA","features":[511]},{"name":"JetBackupInstanceW","features":[511]},{"name":"JetBackupW","features":[511]},{"name":"JetBeginExternalBackup","features":[511]},{"name":"JetBeginExternalBackupInstance","features":[511]},{"name":"JetBeginSessionA","features":[511]},{"name":"JetBeginSessionW","features":[511]},{"name":"JetBeginTransaction","features":[511]},{"name":"JetBeginTransaction2","features":[511]},{"name":"JetBeginTransaction3","features":[511]},{"name":"JetCloseDatabase","features":[511]},{"name":"JetCloseFile","features":[511,512]},{"name":"JetCloseFileInstance","features":[511,512]},{"name":"JetCloseTable","features":[511,512]},{"name":"JetCommitTransaction","features":[511]},{"name":"JetCommitTransaction2","features":[511]},{"name":"JetCompactA","features":[511]},{"name":"JetCompactW","features":[511]},{"name":"JetComputeStats","features":[511,512]},{"name":"JetConfigureProcessForCrashDump","features":[511]},{"name":"JetCreateDatabase2A","features":[511]},{"name":"JetCreateDatabase2W","features":[511]},{"name":"JetCreateDatabaseA","features":[511]},{"name":"JetCreateDatabaseW","features":[511]},{"name":"JetCreateIndex2A","features":[511,512]},{"name":"JetCreateIndex2W","features":[511,512]},{"name":"JetCreateIndex3A","features":[511,512]},{"name":"JetCreateIndex3W","features":[511,512]},{"name":"JetCreateIndex4A","features":[511,512]},{"name":"JetCreateIndex4W","features":[511,512]},{"name":"JetCreateIndexA","features":[511,512]},{"name":"JetCreateIndexW","features":[511,512]},{"name":"JetCreateInstance2A","features":[511]},{"name":"JetCreateInstance2W","features":[511]},{"name":"JetCreateInstanceA","features":[511]},{"name":"JetCreateInstanceW","features":[511]},{"name":"JetCreateTableA","features":[511,512]},{"name":"JetCreateTableColumnIndex2A","features":[511,512]},{"name":"JetCreateTableColumnIndex2W","features":[511,512]},{"name":"JetCreateTableColumnIndex3A","features":[511,512]},{"name":"JetCreateTableColumnIndex3W","features":[511,512]},{"name":"JetCreateTableColumnIndex4A","features":[511,512]},{"name":"JetCreateTableColumnIndex4W","features":[511,512]},{"name":"JetCreateTableColumnIndexA","features":[511,512]},{"name":"JetCreateTableColumnIndexW","features":[511,512]},{"name":"JetCreateTableW","features":[511,512]},{"name":"JetDefragment2A","features":[511,512]},{"name":"JetDefragment2W","features":[511,512]},{"name":"JetDefragment3A","features":[511,512]},{"name":"JetDefragment3W","features":[511,512]},{"name":"JetDefragmentA","features":[511]},{"name":"JetDefragmentW","features":[511]},{"name":"JetDelete","features":[511,512]},{"name":"JetDeleteColumn2A","features":[511,512]},{"name":"JetDeleteColumn2W","features":[511,512]},{"name":"JetDeleteColumnA","features":[511,512]},{"name":"JetDeleteColumnW","features":[511,512]},{"name":"JetDeleteIndexA","features":[511,512]},{"name":"JetDeleteIndexW","features":[511,512]},{"name":"JetDeleteTableA","features":[511]},{"name":"JetDeleteTableW","features":[511]},{"name":"JetDetachDatabase2A","features":[511]},{"name":"JetDetachDatabase2W","features":[511]},{"name":"JetDetachDatabaseA","features":[511]},{"name":"JetDetachDatabaseW","features":[511]},{"name":"JetDupCursor","features":[511,512]},{"name":"JetDupSession","features":[511]},{"name":"JetEnableMultiInstanceA","features":[511,512]},{"name":"JetEnableMultiInstanceW","features":[511,512]},{"name":"JetEndExternalBackup","features":[511]},{"name":"JetEndExternalBackupInstance","features":[511]},{"name":"JetEndExternalBackupInstance2","features":[511]},{"name":"JetEndSession","features":[511]},{"name":"JetEnumerateColumns","features":[511,512]},{"name":"JetEscrowUpdate","features":[511,512]},{"name":"JetExternalRestore2A","features":[511]},{"name":"JetExternalRestore2W","features":[511]},{"name":"JetExternalRestoreA","features":[511]},{"name":"JetExternalRestoreW","features":[511]},{"name":"JetFreeBuffer","features":[511]},{"name":"JetGetAttachInfoA","features":[511]},{"name":"JetGetAttachInfoInstanceA","features":[511]},{"name":"JetGetAttachInfoInstanceW","features":[511]},{"name":"JetGetAttachInfoW","features":[511]},{"name":"JetGetBookmark","features":[511,512]},{"name":"JetGetColumnInfoA","features":[511]},{"name":"JetGetColumnInfoW","features":[511]},{"name":"JetGetCurrentIndexA","features":[511,512]},{"name":"JetGetCurrentIndexW","features":[511,512]},{"name":"JetGetCursorInfo","features":[511,512]},{"name":"JetGetDatabaseFileInfoA","features":[511]},{"name":"JetGetDatabaseFileInfoW","features":[511]},{"name":"JetGetDatabaseInfoA","features":[511]},{"name":"JetGetDatabaseInfoW","features":[511]},{"name":"JetGetErrorInfoW","features":[511]},{"name":"JetGetIndexInfoA","features":[511]},{"name":"JetGetIndexInfoW","features":[511]},{"name":"JetGetInstanceInfoA","features":[511,512]},{"name":"JetGetInstanceInfoW","features":[511,512]},{"name":"JetGetInstanceMiscInfo","features":[511]},{"name":"JetGetLS","features":[511,512]},{"name":"JetGetLock","features":[511,512]},{"name":"JetGetLogInfoA","features":[511]},{"name":"JetGetLogInfoInstance2A","features":[511]},{"name":"JetGetLogInfoInstance2W","features":[511]},{"name":"JetGetLogInfoInstanceA","features":[511]},{"name":"JetGetLogInfoInstanceW","features":[511]},{"name":"JetGetLogInfoW","features":[511]},{"name":"JetGetObjectInfoA","features":[511]},{"name":"JetGetObjectInfoW","features":[511]},{"name":"JetGetRecordPosition","features":[511,512]},{"name":"JetGetRecordSize","features":[511,512]},{"name":"JetGetRecordSize2","features":[511,512]},{"name":"JetGetSecondaryIndexBookmark","features":[511,512]},{"name":"JetGetSessionParameter","features":[511]},{"name":"JetGetSystemParameterA","features":[511,512]},{"name":"JetGetSystemParameterW","features":[511,512]},{"name":"JetGetTableColumnInfoA","features":[511,512]},{"name":"JetGetTableColumnInfoW","features":[511,512]},{"name":"JetGetTableIndexInfoA","features":[511,512]},{"name":"JetGetTableIndexInfoW","features":[511,512]},{"name":"JetGetTableInfoA","features":[511,512]},{"name":"JetGetTableInfoW","features":[511,512]},{"name":"JetGetThreadStats","features":[511]},{"name":"JetGetTruncateLogInfoInstanceA","features":[511]},{"name":"JetGetTruncateLogInfoInstanceW","features":[511]},{"name":"JetGetVersion","features":[511]},{"name":"JetGotoBookmark","features":[511,512]},{"name":"JetGotoPosition","features":[511,512]},{"name":"JetGotoSecondaryIndexBookmark","features":[511,512]},{"name":"JetGrowDatabase","features":[511]},{"name":"JetIdle","features":[511]},{"name":"JetIndexRecordCount","features":[511,512]},{"name":"JetInit","features":[511]},{"name":"JetInit2","features":[511]},{"name":"JetInit3A","features":[511]},{"name":"JetInit3W","features":[511]},{"name":"JetIntersectIndexes","features":[511,512]},{"name":"JetMakeKey","features":[511,512]},{"name":"JetMove","features":[511,512]},{"name":"JetOSSnapshotAbort","features":[511]},{"name":"JetOSSnapshotEnd","features":[511]},{"name":"JetOSSnapshotFreezeA","features":[511,512]},{"name":"JetOSSnapshotFreezeW","features":[511,512]},{"name":"JetOSSnapshotGetFreezeInfoA","features":[511,512]},{"name":"JetOSSnapshotGetFreezeInfoW","features":[511,512]},{"name":"JetOSSnapshotPrepare","features":[511]},{"name":"JetOSSnapshotPrepareInstance","features":[511]},{"name":"JetOSSnapshotThaw","features":[511]},{"name":"JetOSSnapshotTruncateLog","features":[511]},{"name":"JetOSSnapshotTruncateLogInstance","features":[511]},{"name":"JetOpenDatabaseA","features":[511]},{"name":"JetOpenDatabaseW","features":[511]},{"name":"JetOpenFileA","features":[511,512]},{"name":"JetOpenFileInstanceA","features":[511,512]},{"name":"JetOpenFileInstanceW","features":[511,512]},{"name":"JetOpenFileW","features":[511,512]},{"name":"JetOpenTableA","features":[511,512]},{"name":"JetOpenTableW","features":[511,512]},{"name":"JetOpenTempTable","features":[511,512]},{"name":"JetOpenTempTable2","features":[511,512]},{"name":"JetOpenTempTable3","features":[511,512]},{"name":"JetOpenTemporaryTable","features":[511,512]},{"name":"JetOpenTemporaryTable2","features":[511,512]},{"name":"JetPrepareUpdate","features":[511,512]},{"name":"JetPrereadIndexRanges","features":[511,512]},{"name":"JetPrereadKeys","features":[511,512]},{"name":"JetReadFile","features":[511,512]},{"name":"JetReadFileInstance","features":[511,512]},{"name":"JetRegisterCallback","features":[511,512]},{"name":"JetRenameColumnA","features":[511,512]},{"name":"JetRenameColumnW","features":[511,512]},{"name":"JetRenameTableA","features":[511]},{"name":"JetRenameTableW","features":[511]},{"name":"JetResetSessionContext","features":[511]},{"name":"JetResetTableSequential","features":[511,512]},{"name":"JetResizeDatabase","features":[511]},{"name":"JetRestore2A","features":[511]},{"name":"JetRestore2W","features":[511]},{"name":"JetRestoreA","features":[511]},{"name":"JetRestoreInstanceA","features":[511]},{"name":"JetRestoreInstanceW","features":[511]},{"name":"JetRestoreW","features":[511]},{"name":"JetRetrieveColumn","features":[511,512]},{"name":"JetRetrieveColumns","features":[511,512]},{"name":"JetRetrieveKey","features":[511,512]},{"name":"JetRollback","features":[511]},{"name":"JetSeek","features":[511,512]},{"name":"JetSetColumn","features":[511,512]},{"name":"JetSetColumnDefaultValueA","features":[511]},{"name":"JetSetColumnDefaultValueW","features":[511]},{"name":"JetSetColumns","features":[511,512]},{"name":"JetSetCurrentIndex2A","features":[511,512]},{"name":"JetSetCurrentIndex2W","features":[511,512]},{"name":"JetSetCurrentIndex3A","features":[511,512]},{"name":"JetSetCurrentIndex3W","features":[511,512]},{"name":"JetSetCurrentIndex4A","features":[511,512]},{"name":"JetSetCurrentIndex4W","features":[511,512]},{"name":"JetSetCurrentIndexA","features":[511,512]},{"name":"JetSetCurrentIndexW","features":[511,512]},{"name":"JetSetCursorFilter","features":[511,512]},{"name":"JetSetDatabaseSizeA","features":[511]},{"name":"JetSetDatabaseSizeW","features":[511]},{"name":"JetSetIndexRange","features":[511,512]},{"name":"JetSetLS","features":[511,512]},{"name":"JetSetSessionContext","features":[511,512]},{"name":"JetSetSessionParameter","features":[511]},{"name":"JetSetSystemParameterA","features":[511,512]},{"name":"JetSetSystemParameterW","features":[511,512]},{"name":"JetSetTableSequential","features":[511,512]},{"name":"JetStopBackup","features":[511]},{"name":"JetStopBackupInstance","features":[511]},{"name":"JetStopService","features":[511]},{"name":"JetStopServiceInstance","features":[511]},{"name":"JetStopServiceInstance2","features":[511]},{"name":"JetTerm","features":[511]},{"name":"JetTerm2","features":[511]},{"name":"JetTruncateLog","features":[511]},{"name":"JetTruncateLogInstance","features":[511]},{"name":"JetUnregisterCallback","features":[511,512]},{"name":"JetUpdate","features":[511,512]},{"name":"JetUpdate2","features":[511,512]},{"name":"cColumnInfoCols","features":[511]},{"name":"cIndexInfoCols","features":[511]},{"name":"cObjectInfoCols","features":[511]},{"name":"wrnBTNotVisibleAccumulated","features":[511]},{"name":"wrnBTNotVisibleRejected","features":[511]}],"518":[{"name":"ACTIVE_LATENCY_CONFIGURATION","features":[513]},{"name":"BUCKET_COUNTER","features":[513]},{"name":"DEBUG_BIT_FIELD","features":[513]},{"name":"DSSD_POWER_STATE_DESCRIPTOR","features":[513]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY","features":[513]},{"name":"FIRMWARE_ACTIVATION_HISTORY_ENTRY_VERSION_1","features":[513]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGE","features":[513]},{"name":"GUID_MFND_CHILD_CONTROLLER_EVENT_LOG_PAGEGuid","features":[513]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIES","features":[513]},{"name":"GUID_OCP_DEVICE_DEVICE_CAPABILITIESGuid","features":[513]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERY","features":[513]},{"name":"GUID_OCP_DEVICE_ERROR_RECOVERYGuid","features":[513]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY","features":[513]},{"name":"GUID_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORYGuid","features":[513]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITOR","features":[513]},{"name":"GUID_OCP_DEVICE_LATENCY_MONITORGuid","features":[513]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATION","features":[513]},{"name":"GUID_OCP_DEVICE_SMART_INFORMATIONGuid","features":[513]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATION","features":[513]},{"name":"GUID_OCP_DEVICE_TCG_CONFIGURATIONGuid","features":[513]},{"name":"GUID_OCP_DEVICE_TCG_HISTORY","features":[513]},{"name":"GUID_OCP_DEVICE_TCG_HISTORYGuid","features":[513]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS","features":[513]},{"name":"GUID_OCP_DEVICE_UNSUPPORTED_REQUIREMENTSGuid","features":[513]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERY","features":[513]},{"name":"GUID_WCS_DEVICE_ERROR_RECOVERYGuid","features":[513]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTES","features":[513]},{"name":"GUID_WCS_DEVICE_SMART_ATTRIBUTESGuid","features":[513]},{"name":"LATENCY_MONITOR_FEATURE_STATUS","features":[513]},{"name":"LATENCY_STAMP","features":[513]},{"name":"LATENCY_STAMP_UNITS","features":[513]},{"name":"MEASURED_LATENCY","features":[513]},{"name":"NVME_ACCESS_FREQUENCIES","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_FR_READ","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_FR_WRITE_INFR_READ","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_FR_READ","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_INFR_WRITE_INFR_READ","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_NONE","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_ONE_TIME_READ","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_SPECULATIVE_READ","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_TYPICAL","features":[513]},{"name":"NVME_ACCESS_FREQUENCY_WILL_BE_OVERWRITTEN","features":[513]},{"name":"NVME_ACCESS_LATENCIES","features":[513]},{"name":"NVME_ACCESS_LATENCY_IDLE","features":[513]},{"name":"NVME_ACCESS_LATENCY_LOW","features":[513]},{"name":"NVME_ACCESS_LATENCY_NONE","features":[513]},{"name":"NVME_ACCESS_LATENCY_NORMAL","features":[513]},{"name":"NVME_ACTIVE_NAMESPACE_ID_LIST","features":[513]},{"name":"NVME_ADMIN_COMMANDS","features":[513]},{"name":"NVME_ADMIN_COMMAND_ABORT","features":[513]},{"name":"NVME_ADMIN_COMMAND_ASYNC_EVENT_REQUEST","features":[513]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_CQ","features":[513]},{"name":"NVME_ADMIN_COMMAND_CREATE_IO_SQ","features":[513]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_CQ","features":[513]},{"name":"NVME_ADMIN_COMMAND_DELETE_IO_SQ","features":[513]},{"name":"NVME_ADMIN_COMMAND_DEVICE_SELF_TEST","features":[513]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_RECEIVE","features":[513]},{"name":"NVME_ADMIN_COMMAND_DIRECTIVE_SEND","features":[513]},{"name":"NVME_ADMIN_COMMAND_DOORBELL_BUFFER_CONFIG","features":[513]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_ACTIVATE","features":[513]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_COMMIT","features":[513]},{"name":"NVME_ADMIN_COMMAND_FIRMWARE_IMAGE_DOWNLOAD","features":[513]},{"name":"NVME_ADMIN_COMMAND_FORMAT_NVM","features":[513]},{"name":"NVME_ADMIN_COMMAND_GET_FEATURES","features":[513]},{"name":"NVME_ADMIN_COMMAND_GET_LBA_STATUS","features":[513]},{"name":"NVME_ADMIN_COMMAND_GET_LOG_PAGE","features":[513]},{"name":"NVME_ADMIN_COMMAND_IDENTIFY","features":[513]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_ATTACHMENT","features":[513]},{"name":"NVME_ADMIN_COMMAND_NAMESPACE_MANAGEMENT","features":[513]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_RECEIVE","features":[513]},{"name":"NVME_ADMIN_COMMAND_NVME_MI_SEND","features":[513]},{"name":"NVME_ADMIN_COMMAND_SANITIZE","features":[513]},{"name":"NVME_ADMIN_COMMAND_SECURITY_RECEIVE","features":[513]},{"name":"NVME_ADMIN_COMMAND_SECURITY_SEND","features":[513]},{"name":"NVME_ADMIN_COMMAND_SET_FEATURES","features":[513]},{"name":"NVME_ADMIN_COMMAND_VIRTUALIZATION_MANAGEMENT","features":[513]},{"name":"NVME_ADMIN_COMPLETION_QUEUE_BASE_ADDRESS","features":[513]},{"name":"NVME_ADMIN_QUEUE_ATTRIBUTES","features":[513]},{"name":"NVME_ADMIN_SUBMISSION_QUEUE_BASE_ADDRESS","features":[513]},{"name":"NVME_AMS_OPTION","features":[513]},{"name":"NVME_AMS_ROUND_ROBIN","features":[513]},{"name":"NVME_AMS_WEIGHTED_ROUND_ROBIN_URGENT","features":[513]},{"name":"NVME_ASYNC_ERROR_DIAG_FAILURE","features":[513]},{"name":"NVME_ASYNC_ERROR_FIRMWARE_IMAGE_LOAD_ERROR","features":[513]},{"name":"NVME_ASYNC_ERROR_INVALID_DOORBELL_WRITE_VALUE","features":[513]},{"name":"NVME_ASYNC_ERROR_INVALID_SUBMISSION_QUEUE","features":[513]},{"name":"NVME_ASYNC_ERROR_PERSISTENT_INTERNAL_DEVICE_ERROR","features":[513]},{"name":"NVME_ASYNC_ERROR_TRANSIENT_INTERNAL_DEVICE_ERROR","features":[513]},{"name":"NVME_ASYNC_EVENT_ERROR_STATUS_CODES","features":[513]},{"name":"NVME_ASYNC_EVENT_HEALTH_STATUS_CODES","features":[513]},{"name":"NVME_ASYNC_EVENT_IO_COMMAND_SET_STATUS_CODES","features":[513]},{"name":"NVME_ASYNC_EVENT_NOTICE_CODES","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPES","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_ERROR_STATUS","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_HEALTH_STATUS","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_IO_COMMAND_SET_STATUS","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_NOTICE","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_CODES","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_DEVICE_PANIC","features":[513]},{"name":"NVME_ASYNC_EVENT_TYPE_VENDOR_SPECIFIC_RESERVED","features":[513]},{"name":"NVME_ASYNC_HEALTH_NVM_SUBSYSTEM_RELIABILITY","features":[513]},{"name":"NVME_ASYNC_HEALTH_SPARE_BELOW_THRESHOLD","features":[513]},{"name":"NVME_ASYNC_HEALTH_TEMPERATURE_THRESHOLD","features":[513]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED","features":[513]},{"name":"NVME_ASYNC_IO_CMD_SANITIZE_OPERATION_COMPLETED_WITH_UNEXPECTED_DEALLOCATION","features":[513]},{"name":"NVME_ASYNC_IO_CMD_SET_RESERVATION_LOG_PAGE_AVAILABLE","features":[513]},{"name":"NVME_ASYNC_NOTICE_ASYMMETRIC_ACCESS_CHANGE","features":[513]},{"name":"NVME_ASYNC_NOTICE_ENDURANCE_GROUP_EVENT_AGGREGATE_LOG_CHANGE","features":[513]},{"name":"NVME_ASYNC_NOTICE_FIRMWARE_ACTIVATION_STARTING","features":[513]},{"name":"NVME_ASYNC_NOTICE_LBA_STATUS_INFORMATION_ALERT","features":[513]},{"name":"NVME_ASYNC_NOTICE_NAMESPACE_ATTRIBUTE_CHANGED","features":[513]},{"name":"NVME_ASYNC_NOTICE_PREDICTABLE_LATENCY_EVENT_AGGREGATE_LOG_CHANGE","features":[513]},{"name":"NVME_ASYNC_NOTICE_TELEMETRY_LOG_CHANGED","features":[513]},{"name":"NVME_ASYNC_NOTICE_ZONE_DESCRIPTOR_CHANGED","features":[513]},{"name":"NVME_AUTO_POWER_STATE_TRANSITION_ENTRY","features":[513]},{"name":"NVME_CC_SHN_ABRUPT_SHUTDOWN","features":[513]},{"name":"NVME_CC_SHN_NORMAL_SHUTDOWN","features":[513]},{"name":"NVME_CC_SHN_NO_NOTIFICATION","features":[513]},{"name":"NVME_CC_SHN_SHUTDOWN_NOTIFICATIONS","features":[513]},{"name":"NVME_CDW0_FEATURE_ENABLE_IEEE1667_SILO","features":[513]},{"name":"NVME_CDW0_FEATURE_ERROR_INJECTION","features":[513]},{"name":"NVME_CDW0_FEATURE_READONLY_WRITETHROUGH_MODE","features":[513]},{"name":"NVME_CDW0_RESERVATION_PERSISTENCE","features":[513]},{"name":"NVME_CDW10_ABORT","features":[513]},{"name":"NVME_CDW10_CREATE_IO_QUEUE","features":[513]},{"name":"NVME_CDW10_DATASET_MANAGEMENT","features":[513]},{"name":"NVME_CDW10_DIRECTIVE_RECEIVE","features":[513]},{"name":"NVME_CDW10_DIRECTIVE_SEND","features":[513]},{"name":"NVME_CDW10_FIRMWARE_ACTIVATE","features":[513]},{"name":"NVME_CDW10_FIRMWARE_DOWNLOAD","features":[513]},{"name":"NVME_CDW10_FORMAT_NVM","features":[513]},{"name":"NVME_CDW10_GET_FEATURES","features":[513]},{"name":"NVME_CDW10_GET_LOG_PAGE","features":[513]},{"name":"NVME_CDW10_GET_LOG_PAGE_V13","features":[513]},{"name":"NVME_CDW10_IDENTIFY","features":[513]},{"name":"NVME_CDW10_RESERVATION_ACQUIRE","features":[513]},{"name":"NVME_CDW10_RESERVATION_REGISTER","features":[513]},{"name":"NVME_CDW10_RESERVATION_RELEASE","features":[513]},{"name":"NVME_CDW10_RESERVATION_REPORT","features":[513]},{"name":"NVME_CDW10_SANITIZE","features":[513]},{"name":"NVME_CDW10_SECURITY_SEND_RECEIVE","features":[513]},{"name":"NVME_CDW10_SET_FEATURES","features":[513]},{"name":"NVME_CDW10_ZONE_APPEND","features":[513]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_RECEIVE","features":[513]},{"name":"NVME_CDW10_ZONE_MANAGEMENT_SEND","features":[513]},{"name":"NVME_CDW11_CREATE_IO_CQ","features":[513]},{"name":"NVME_CDW11_CREATE_IO_SQ","features":[513]},{"name":"NVME_CDW11_DATASET_MANAGEMENT","features":[513]},{"name":"NVME_CDW11_DIRECTIVE_RECEIVE","features":[513]},{"name":"NVME_CDW11_DIRECTIVE_SEND","features":[513]},{"name":"NVME_CDW11_FEATURES","features":[513]},{"name":"NVME_CDW11_FEATURE_ARBITRATION","features":[513]},{"name":"NVME_CDW11_FEATURE_ASYNC_EVENT_CONFIG","features":[513]},{"name":"NVME_CDW11_FEATURE_AUTO_POWER_STATE_TRANSITION","features":[513]},{"name":"NVME_CDW11_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[513]},{"name":"NVME_CDW11_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[513]},{"name":"NVME_CDW11_FEATURE_ENABLE_IEEE1667_SILO","features":[513]},{"name":"NVME_CDW11_FEATURE_ERROR_RECOVERY","features":[513]},{"name":"NVME_CDW11_FEATURE_GET_HOST_METADATA","features":[513]},{"name":"NVME_CDW11_FEATURE_HOST_IDENTIFIER","features":[513]},{"name":"NVME_CDW11_FEATURE_HOST_MEMORY_BUFFER","features":[513]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_COALESCING","features":[513]},{"name":"NVME_CDW11_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[513]},{"name":"NVME_CDW11_FEATURE_IO_COMMAND_SET_PROFILE","features":[513]},{"name":"NVME_CDW11_FEATURE_LBA_RANGE_TYPE","features":[513]},{"name":"NVME_CDW11_FEATURE_NON_OPERATIONAL_POWER_STATE","features":[513]},{"name":"NVME_CDW11_FEATURE_NUMBER_OF_QUEUES","features":[513]},{"name":"NVME_CDW11_FEATURE_POWER_MANAGEMENT","features":[513]},{"name":"NVME_CDW11_FEATURE_READONLY_WRITETHROUGH_MODE","features":[513]},{"name":"NVME_CDW11_FEATURE_RESERVATION_NOTIFICATION_MASK","features":[513]},{"name":"NVME_CDW11_FEATURE_RESERVATION_PERSISTENCE","features":[513]},{"name":"NVME_CDW11_FEATURE_SET_HOST_METADATA","features":[513]},{"name":"NVME_CDW11_FEATURE_SUPPORTED_CAPABILITY","features":[513]},{"name":"NVME_CDW11_FEATURE_TEMPERATURE_THRESHOLD","features":[513]},{"name":"NVME_CDW11_FEATURE_VOLATILE_WRITE_CACHE","features":[513]},{"name":"NVME_CDW11_FEATURE_WRITE_ATOMICITY_NORMAL","features":[513]},{"name":"NVME_CDW11_FIRMWARE_DOWNLOAD","features":[513]},{"name":"NVME_CDW11_GET_LOG_PAGE","features":[513]},{"name":"NVME_CDW11_IDENTIFY","features":[513]},{"name":"NVME_CDW11_RESERVATION_REPORT","features":[513]},{"name":"NVME_CDW11_SANITIZE","features":[513]},{"name":"NVME_CDW11_SECURITY_RECEIVE","features":[513]},{"name":"NVME_CDW11_SECURITY_SEND","features":[513]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE","features":[513]},{"name":"NVME_CDW12_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[513]},{"name":"NVME_CDW12_DIRECTIVE_SEND","features":[513]},{"name":"NVME_CDW12_DIRECTIVE_SEND_IDENTIFY_ENABLE_DIRECTIVE","features":[513]},{"name":"NVME_CDW12_FEATURES","features":[513]},{"name":"NVME_CDW12_FEATURE_HOST_MEMORY_BUFFER","features":[513]},{"name":"NVME_CDW12_GET_LOG_PAGE","features":[513]},{"name":"NVME_CDW12_READ_WRITE","features":[513]},{"name":"NVME_CDW12_ZONE_APPEND","features":[513]},{"name":"NVME_CDW13_FEATURES","features":[513]},{"name":"NVME_CDW13_FEATURE_HOST_MEMORY_BUFFER","features":[513]},{"name":"NVME_CDW13_GET_LOG_PAGE","features":[513]},{"name":"NVME_CDW13_READ_WRITE","features":[513]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_RECEIVE","features":[513]},{"name":"NVME_CDW13_ZONE_MANAGEMENT_SEND","features":[513]},{"name":"NVME_CDW14_FEATURES","features":[513]},{"name":"NVME_CDW14_FEATURE_HOST_MEMORY_BUFFER","features":[513]},{"name":"NVME_CDW14_GET_LOG_PAGE","features":[513]},{"name":"NVME_CDW15_FEATURES","features":[513]},{"name":"NVME_CDW15_FEATURE_HOST_MEMORY_BUFFER","features":[513]},{"name":"NVME_CDW15_READ_WRITE","features":[513]},{"name":"NVME_CDW15_ZONE_APPEND","features":[513]},{"name":"NVME_CHANGED_NAMESPACE_LIST_LOG","features":[513]},{"name":"NVME_CHANGED_ZONE_LIST_LOG","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS_16MB","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS_1MB","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS_256MB","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS_4GB","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS_4KB","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS_64GB","features":[513]},{"name":"NVME_CMBSZ_SIZE_UNITS_64KB","features":[513]},{"name":"NVME_COMMAND","features":[513]},{"name":"NVME_COMMAND_DWORD0","features":[513]},{"name":"NVME_COMMAND_EFFECTS_DATA","features":[513]},{"name":"NVME_COMMAND_EFFECTS_LOG","features":[513]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMITS","features":[513]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_NONE","features":[513]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_CONTROLLER","features":[513]},{"name":"NVME_COMMAND_EFFECT_SBUMISSION_EXECUTION_LIMIT_SINGLE_PER_NAMESPACE","features":[513]},{"name":"NVME_COMMAND_SET_IDENTIFIERS","features":[513]},{"name":"NVME_COMMAND_SET_KEY_VALUE","features":[513]},{"name":"NVME_COMMAND_SET_NVM","features":[513]},{"name":"NVME_COMMAND_SET_ZONED_NAMESPACE","features":[513]},{"name":"NVME_COMMAND_STATUS","features":[513]},{"name":"NVME_COMPLETION_DW0_ASYNC_EVENT_REQUEST","features":[513]},{"name":"NVME_COMPLETION_DW0_DIRECTIVE_RECEIVE_STREAMS_ALLOCATE_RESOURCES","features":[513]},{"name":"NVME_COMPLETION_ENTRY","features":[513]},{"name":"NVME_COMPLETION_QUEUE_HEAD_DOORBELL","features":[513]},{"name":"NVME_CONTEXT_ATTRIBUTES","features":[513]},{"name":"NVME_CONTROLLER_CAPABILITIES","features":[513]},{"name":"NVME_CONTROLLER_CONFIGURATION","features":[513]},{"name":"NVME_CONTROLLER_LIST","features":[513]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_LOCATION","features":[513]},{"name":"NVME_CONTROLLER_MEMORY_BUFFER_SIZE","features":[513]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_NAME","features":[513]},{"name":"NVME_CONTROLLER_METADATA_CHIPSET_DRIVER_VERSION","features":[513]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_NAME","features":[513]},{"name":"NVME_CONTROLLER_METADATA_DISPLAY_DRIVER_VERSION","features":[513]},{"name":"NVME_CONTROLLER_METADATA_ELEMENT_TYPES","features":[513]},{"name":"NVME_CONTROLLER_METADATA_FIRMWARE_VERSION","features":[513]},{"name":"NVME_CONTROLLER_METADATA_HOST_DETERMINED_FAILURE_RECORD","features":[513]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_CONTROLLER_NAME","features":[513]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_FILENAME","features":[513]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_NAME","features":[513]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_DRIVER_VERSION","features":[513]},{"name":"NVME_CONTROLLER_METADATA_OPERATING_SYSTEM_NAME_AND_BUILD","features":[513]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_CONTROLLER_NAME","features":[513]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_NAME","features":[513]},{"name":"NVME_CONTROLLER_METADATA_PREBOOT_DRIVER_VERSION","features":[513]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PROCESSOR_MODEL","features":[513]},{"name":"NVME_CONTROLLER_METADATA_SYSTEM_PRODUCT_NAME","features":[513]},{"name":"NVME_CONTROLLER_REGISTERS","features":[513]},{"name":"NVME_CONTROLLER_STATUS","features":[513]},{"name":"NVME_CSS_ADMIN_COMMAND_SET_ONLY","features":[513]},{"name":"NVME_CSS_ALL_SUPPORTED_IO_COMMAND_SET","features":[513]},{"name":"NVME_CSS_COMMAND_SETS","features":[513]},{"name":"NVME_CSS_NVM_COMMAND_SET","features":[513]},{"name":"NVME_CSTS_SHST_NO_SHUTDOWN","features":[513]},{"name":"NVME_CSTS_SHST_SHUTDOWN_COMPLETED","features":[513]},{"name":"NVME_CSTS_SHST_SHUTDOWN_IN_PROCESS","features":[513]},{"name":"NVME_CSTS_SHST_SHUTDOWN_STATUS","features":[513]},{"name":"NVME_DEVICE_SELF_TEST_LOG","features":[513]},{"name":"NVME_DEVICE_SELF_TEST_RESULT_DATA","features":[513]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS","features":[513]},{"name":"NVME_DIRECTIVE_IDENTIFY_RETURN_PARAMETERS_DESCRIPTOR","features":[513]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATIONS","features":[513]},{"name":"NVME_DIRECTIVE_RECEIVE_IDENTIFY_OPERATION_RETURN_PARAMETERS","features":[513]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATIONS","features":[513]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_ALLOCATE_RESOURCES","features":[513]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_GET_STATUS","features":[513]},{"name":"NVME_DIRECTIVE_RECEIVE_STREAMS_OPERATION_RETURN_PARAMETERS","features":[513]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATIONS","features":[513]},{"name":"NVME_DIRECTIVE_SEND_IDENTIFY_OPERATION_ENABLE_DIRECTIVE","features":[513]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATIONS","features":[513]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_IDENTIFIER","features":[513]},{"name":"NVME_DIRECTIVE_SEND_STREAMS_OPERATION_RELEASE_RESOURCES","features":[513]},{"name":"NVME_DIRECTIVE_STREAMS_GET_STATUS_DATA","features":[513]},{"name":"NVME_DIRECTIVE_STREAMS_RETURN_PARAMETERS","features":[513]},{"name":"NVME_DIRECTIVE_TYPES","features":[513]},{"name":"NVME_DIRECTIVE_TYPE_IDENTIFY","features":[513]},{"name":"NVME_DIRECTIVE_TYPE_STREAMS","features":[513]},{"name":"NVME_ENDURANCE_GROUP_LOG","features":[513]},{"name":"NVME_ERROR_INFO_LOG","features":[513]},{"name":"NVME_ERROR_INJECTION_ENTRY","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPES","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_CPU_CONTROLLER_HANG","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_CRITICAL","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_DRAM_CORRUPTION_NONCRITICAL","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_HW_MALFUNCTION","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_LOGICAL_FW_ERROR","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_CORRUPTION","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_NAND_HANG","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_PLP_DEFECT","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_DEVICE_PANIC_SRAM_CORRUPTION","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_MAX","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED0","features":[513]},{"name":"NVME_ERROR_INJECTION_TYPE_RESERVED1","features":[513]},{"name":"NVME_EXTENDED_HOST_IDENTIFIER_SIZE","features":[513]},{"name":"NVME_EXTENDED_REPORT_ZONE_INFO","features":[513]},{"name":"NVME_FEATURES","features":[513]},{"name":"NVME_FEATURE_ARBITRATION","features":[513]},{"name":"NVME_FEATURE_ASYNC_EVENT_CONFIG","features":[513]},{"name":"NVME_FEATURE_AUTONOMOUS_POWER_STATE_TRANSITION","features":[513]},{"name":"NVME_FEATURE_CLEAR_FW_UPDATE_HISTORY","features":[513]},{"name":"NVME_FEATURE_CLEAR_PCIE_CORRECTABLE_ERROR_COUNTERS","features":[513]},{"name":"NVME_FEATURE_CONTROLLER_METADATA","features":[513]},{"name":"NVME_FEATURE_ENABLE_IEEE1667_SILO","features":[513]},{"name":"NVME_FEATURE_ENDURANCE_GROUP_EVENT_CONFIG","features":[513]},{"name":"NVME_FEATURE_ENHANCED_CONTROLLER_METADATA","features":[513]},{"name":"NVME_FEATURE_ERROR_INJECTION","features":[513]},{"name":"NVME_FEATURE_ERROR_RECOVERY","features":[513]},{"name":"NVME_FEATURE_HOST_BEHAVIOR_SUPPORT","features":[513]},{"name":"NVME_FEATURE_HOST_CONTROLLED_THERMAL_MANAGEMENT","features":[513]},{"name":"NVME_FEATURE_HOST_IDENTIFIER_DATA","features":[513]},{"name":"NVME_FEATURE_HOST_MEMORY_BUFFER","features":[513]},{"name":"NVME_FEATURE_HOST_METADATA_DATA","features":[513]},{"name":"NVME_FEATURE_INTERRUPT_COALESCING","features":[513]},{"name":"NVME_FEATURE_INTERRUPT_VECTOR_CONFIG","features":[513]},{"name":"NVME_FEATURE_IO_COMMAND_SET_PROFILE","features":[513]},{"name":"NVME_FEATURE_KEEP_ALIVE","features":[513]},{"name":"NVME_FEATURE_LBA_RANGE_TYPE","features":[513]},{"name":"NVME_FEATURE_LBA_STATUS_INFORMATION_REPORT_INTERVAL","features":[513]},{"name":"NVME_FEATURE_NAMESPACE_METADATA","features":[513]},{"name":"NVME_FEATURE_NONOPERATIONAL_POWER_STATE","features":[513]},{"name":"NVME_FEATURE_NUMBER_OF_QUEUES","features":[513]},{"name":"NVME_FEATURE_NVM_HOST_IDENTIFIER","features":[513]},{"name":"NVME_FEATURE_NVM_NAMESPACE_WRITE_PROTECTION_CONFIG","features":[513]},{"name":"NVME_FEATURE_NVM_RESERVATION_NOTIFICATION_MASK","features":[513]},{"name":"NVME_FEATURE_NVM_RESERVATION_PERSISTANCE","features":[513]},{"name":"NVME_FEATURE_NVM_SOFTWARE_PROGRESS_MARKER","features":[513]},{"name":"NVME_FEATURE_PLP_HEALTH_MONITOR","features":[513]},{"name":"NVME_FEATURE_POWER_MANAGEMENT","features":[513]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_CONFIG","features":[513]},{"name":"NVME_FEATURE_PREDICTABLE_LATENCY_MODE_WINDOW","features":[513]},{"name":"NVME_FEATURE_READONLY_WRITETHROUGH_MODE","features":[513]},{"name":"NVME_FEATURE_READ_RECOVERY_LEVEL_CONFIG","features":[513]},{"name":"NVME_FEATURE_SANITIZE_CONFIG","features":[513]},{"name":"NVME_FEATURE_TEMPERATURE_THRESHOLD","features":[513]},{"name":"NVME_FEATURE_TIMESTAMP","features":[513]},{"name":"NVME_FEATURE_VALUE_CODES","features":[513]},{"name":"NVME_FEATURE_VALUE_CURRENT","features":[513]},{"name":"NVME_FEATURE_VALUE_DEFAULT","features":[513]},{"name":"NVME_FEATURE_VALUE_SAVED","features":[513]},{"name":"NVME_FEATURE_VALUE_SUPPORTED_CAPABILITIES","features":[513]},{"name":"NVME_FEATURE_VOLATILE_WRITE_CACHE","features":[513]},{"name":"NVME_FEATURE_WRITE_ATOMICITY","features":[513]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTIONS","features":[513]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_ACTIVATE","features":[513]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT","features":[513]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE","features":[513]},{"name":"NVME_FIRMWARE_ACTIVATE_ACTION_DOWNLOAD_TO_SLOT_AND_ACTIVATE_IMMEDIATE","features":[513]},{"name":"NVME_FIRMWARE_SLOT_INFO_LOG","features":[513]},{"name":"NVME_FUSED_OPERATION_CODES","features":[513]},{"name":"NVME_FUSED_OPERATION_FIRST_CMD","features":[513]},{"name":"NVME_FUSED_OPERATION_NORMAL","features":[513]},{"name":"NVME_FUSED_OPERATION_SECOND_CMD","features":[513]},{"name":"NVME_HEALTH_INFO_LOG","features":[513]},{"name":"NVME_HOST_IDENTIFIER_SIZE","features":[513]},{"name":"NVME_HOST_MEMORY_BUFFER_DESCRIPTOR_ENTRY","features":[513]},{"name":"NVME_HOST_METADATA_ADD_ENTRY_MULTIPLE","features":[513]},{"name":"NVME_HOST_METADATA_ADD_REPLACE_ENTRY","features":[513]},{"name":"NVME_HOST_METADATA_DELETE_ENTRY_MULTIPLE","features":[513]},{"name":"NVME_HOST_METADATA_ELEMENT_ACTIONS","features":[513]},{"name":"NVME_HOST_METADATA_ELEMENT_DESCRIPTOR","features":[513]},{"name":"NVME_IDENTIFIER_TYPE","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_CSI","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_CSI_LENGTH","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_EUI64","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_EUI64_LENGTH","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_LENGTH","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_NGUID","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_NGUID_LENGTH","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_UUID","features":[513]},{"name":"NVME_IDENTIFIER_TYPE_UUID_LENGTH","features":[513]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACES","features":[513]},{"name":"NVME_IDENTIFY_CNS_ACTIVE_NAMESPACE_LIST_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE","features":[513]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMESPACE_LIST","features":[513]},{"name":"NVME_IDENTIFY_CNS_ALLOCATED_NAMSPACE_LIST_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_CNS_CODES","features":[513]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER","features":[513]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NSID","features":[513]},{"name":"NVME_IDENTIFY_CNS_CONTROLLER_LIST_OF_NVM_SUBSYSTEM","features":[513]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE","features":[513]},{"name":"NVME_IDENTIFY_CNS_DESCRIPTOR_NAMESPACE_SIZE","features":[513]},{"name":"NVME_IDENTIFY_CNS_DOMAIN_LIST","features":[513]},{"name":"NVME_IDENTIFY_CNS_ENDURANCE_GROUP_LIST","features":[513]},{"name":"NVME_IDENTIFY_CNS_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_CNS_NAMESPACE_GRANULARITY_LIST","features":[513]},{"name":"NVME_IDENTIFY_CNS_NVM_SET","features":[513]},{"name":"NVME_IDENTIFY_CNS_PRIMARY_CONTROLLER_CAPABILITIES","features":[513]},{"name":"NVME_IDENTIFY_CNS_SECONDARY_CONTROLLER_LIST","features":[513]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE","features":[513]},{"name":"NVME_IDENTIFY_CNS_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_CNS_UUID_LIST","features":[513]},{"name":"NVME_IDENTIFY_CONTROLLER_DATA","features":[513]},{"name":"NVME_IDENTIFY_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_NAMESPACE_DATA","features":[513]},{"name":"NVME_IDENTIFY_NAMESPACE_DESCRIPTOR","features":[513]},{"name":"NVME_IDENTIFY_NVM_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_SPECIFIC_NAMESPACE_IO_COMMAND_SET","features":[513]},{"name":"NVME_IDENTIFY_ZNS_SPECIFIC_CONTROLLER_IO_COMMAND_SET","features":[513]},{"name":"NVME_IO_COMMAND_SET_COMBINATION_REJECTED","features":[513]},{"name":"NVME_IO_COMMAND_SET_INVALID","features":[513]},{"name":"NVME_IO_COMMAND_SET_NOT_ENABLED","features":[513]},{"name":"NVME_IO_COMMAND_SET_NOT_SUPPORTED","features":[513]},{"name":"NVME_LBA_FORMAT","features":[513]},{"name":"NVME_LBA_RANGE","features":[513]},{"name":"NVME_LBA_RANGET_TYPE_ENTRY","features":[513]},{"name":"NVME_LBA_RANGE_TYPES","features":[513]},{"name":"NVME_LBA_RANGE_TYPE_CACHE","features":[513]},{"name":"NVME_LBA_RANGE_TYPE_FILESYSTEM","features":[513]},{"name":"NVME_LBA_RANGE_TYPE_PAGE_SWAP_FILE","features":[513]},{"name":"NVME_LBA_RANGE_TYPE_RAID","features":[513]},{"name":"NVME_LBA_RANGE_TYPE_RESERVED","features":[513]},{"name":"NVME_LBA_ZONE_FORMAT","features":[513]},{"name":"NVME_LOG_PAGES","features":[513]},{"name":"NVME_LOG_PAGE_ASYMMETRIC_NAMESPACE_ACCESS","features":[513]},{"name":"NVME_LOG_PAGE_CHANGED_NAMESPACE_LIST","features":[513]},{"name":"NVME_LOG_PAGE_CHANGED_ZONE_LIST","features":[513]},{"name":"NVME_LOG_PAGE_COMMAND_EFFECTS","features":[513]},{"name":"NVME_LOG_PAGE_DEVICE_SELF_TEST","features":[513]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_EVENT_AGGREGATE","features":[513]},{"name":"NVME_LOG_PAGE_ENDURANCE_GROUP_INFORMATION","features":[513]},{"name":"NVME_LOG_PAGE_ERROR_INFO","features":[513]},{"name":"NVME_LOG_PAGE_FIRMWARE_SLOT_INFO","features":[513]},{"name":"NVME_LOG_PAGE_HEALTH_INFO","features":[513]},{"name":"NVME_LOG_PAGE_LBA_STATUS_INFORMATION","features":[513]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_CAPABILITIES","features":[513]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_ERROR_RECOVERY","features":[513]},{"name":"NVME_LOG_PAGE_OCP_DEVICE_SMART_INFORMATION","features":[513]},{"name":"NVME_LOG_PAGE_OCP_FIRMWARE_ACTIVATION_HISTORY","features":[513]},{"name":"NVME_LOG_PAGE_OCP_LATENCY_MONITOR","features":[513]},{"name":"NVME_LOG_PAGE_OCP_TCG_CONFIGURATION","features":[513]},{"name":"NVME_LOG_PAGE_OCP_TCG_HISTORY","features":[513]},{"name":"NVME_LOG_PAGE_OCP_UNSUPPORTED_REQUIREMENTS","features":[513]},{"name":"NVME_LOG_PAGE_PERSISTENT_EVENT_LOG","features":[513]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_EVENT_AGGREGATE","features":[513]},{"name":"NVME_LOG_PAGE_PREDICTABLE_LATENCY_NVM_SET","features":[513]},{"name":"NVME_LOG_PAGE_RESERVATION_NOTIFICATION","features":[513]},{"name":"NVME_LOG_PAGE_SANITIZE_STATUS","features":[513]},{"name":"NVME_LOG_PAGE_TELEMETRY_CTLR_INITIATED","features":[513]},{"name":"NVME_LOG_PAGE_TELEMETRY_HOST_INITIATED","features":[513]},{"name":"NVME_MAX_HOST_IDENTIFIER_SIZE","features":[513]},{"name":"NVME_MAX_LOG_SIZE","features":[513]},{"name":"NVME_MEDIA_ADDITIONALLY_MODIFIED_AFTER_SANITIZE_NOT_DEFINED","features":[513]},{"name":"NVME_MEDIA_ADDITIONALLY_MOFIDIED_AFTER_SANITIZE","features":[513]},{"name":"NVME_MEDIA_NOT_ADDITIONALLY_MODIFIED_AFTER_SANITIZE","features":[513]},{"name":"NVME_NAMESPACE_ALL","features":[513]},{"name":"NVME_NAMESPACE_METADATA_ELEMENT_TYPES","features":[513]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME","features":[513]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_1","features":[513]},{"name":"NVME_NAMESPACE_METADATA_OPERATING_SYSTEM_NAMESPACE_NAME_QUALIFIER_2","features":[513]},{"name":"NVME_NAMESPACE_METADATA_PREBOOT_NAMESPACE_NAME","features":[513]},{"name":"NVME_NO_DEALLOCATE_MODIFIES_MEDIA_AFTER_SANITIZE","features":[513]},{"name":"NVME_NVM_COMMANDS","features":[513]},{"name":"NVME_NVM_COMMAND_COMPARE","features":[513]},{"name":"NVME_NVM_COMMAND_COPY","features":[513]},{"name":"NVME_NVM_COMMAND_DATASET_MANAGEMENT","features":[513]},{"name":"NVME_NVM_COMMAND_FLUSH","features":[513]},{"name":"NVME_NVM_COMMAND_READ","features":[513]},{"name":"NVME_NVM_COMMAND_RESERVATION_ACQUIRE","features":[513]},{"name":"NVME_NVM_COMMAND_RESERVATION_REGISTER","features":[513]},{"name":"NVME_NVM_COMMAND_RESERVATION_RELEASE","features":[513]},{"name":"NVME_NVM_COMMAND_RESERVATION_REPORT","features":[513]},{"name":"NVME_NVM_COMMAND_VERIFY","features":[513]},{"name":"NVME_NVM_COMMAND_WRITE","features":[513]},{"name":"NVME_NVM_COMMAND_WRITE_UNCORRECTABLE","features":[513]},{"name":"NVME_NVM_COMMAND_WRITE_ZEROES","features":[513]},{"name":"NVME_NVM_COMMAND_ZONE_APPEND","features":[513]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_RECEIVE","features":[513]},{"name":"NVME_NVM_COMMAND_ZONE_MANAGEMENT_SEND","features":[513]},{"name":"NVME_NVM_QUEUE_PRIORITIES","features":[513]},{"name":"NVME_NVM_QUEUE_PRIORITY_HIGH","features":[513]},{"name":"NVME_NVM_QUEUE_PRIORITY_LOW","features":[513]},{"name":"NVME_NVM_QUEUE_PRIORITY_MEDIUM","features":[513]},{"name":"NVME_NVM_QUEUE_PRIORITY_URGENT","features":[513]},{"name":"NVME_NVM_SUBSYSTEM_RESET","features":[513]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG","features":[513]},{"name":"NVME_OCP_DEVICE_CAPABILITIES_LOG_VERSION_1","features":[513]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_V2","features":[513]},{"name":"NVME_OCP_DEVICE_ERROR_RECOVERY_LOG_VERSION_2","features":[513]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG","features":[513]},{"name":"NVME_OCP_DEVICE_FIRMWARE_ACTIVATION_HISTORY_LOG_VERSION_1","features":[513]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG","features":[513]},{"name":"NVME_OCP_DEVICE_LATENCY_MONITOR_LOG_VERSION_1","features":[513]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_V3","features":[513]},{"name":"NVME_OCP_DEVICE_SMART_INFORMATION_LOG_VERSION_3","features":[513]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG","features":[513]},{"name":"NVME_OCP_DEVICE_TCG_CONFIGURATION_LOG_VERSION_1","features":[513]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG","features":[513]},{"name":"NVME_OCP_DEVICE_TCG_HISTORY_LOG_VERSION_1","features":[513]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG","features":[513]},{"name":"NVME_OCP_DEVICE_UNSUPPORTED_REQUIREMENTS_LOG_VERSION_1","features":[513]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_HEADER","features":[513]},{"name":"NVME_PERSISTENT_EVENT_LOG_EVENT_TYPES","features":[513]},{"name":"NVME_PERSISTENT_EVENT_LOG_HEADER","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_CHANGE_NAMESPACE","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FIRMWARE_COMMIT","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_COMPLETION","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_FORMAT_NVM_START","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_MAX","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_NVM_SUBSYSTEM_HARDWARE_ERROR","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_POWER_ON_OR_RESET","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED0","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_BEGIN","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED1_END","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_BEGIN","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_RESERVED2_END","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_COMPLETION","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SANITIZE_START","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SET_FEATURE","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_SMART_HEALTH_LOG_SNAPSHOT","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TCG_DEFINED","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TELEMETRY_LOG_CREATED","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_THERMAL_EXCURSION","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_TIMESTAMP_CHANGE","features":[513]},{"name":"NVME_PERSISTENT_EVENT_TYPE_VENDOR_SPECIFIC_EVENT","features":[513]},{"name":"NVME_POWER_STATE_DESC","features":[513]},{"name":"NVME_PROTECTION_INFORMATION_NOT_ENABLED","features":[513]},{"name":"NVME_PROTECTION_INFORMATION_TYPE1","features":[513]},{"name":"NVME_PROTECTION_INFORMATION_TYPE2","features":[513]},{"name":"NVME_PROTECTION_INFORMATION_TYPE3","features":[513]},{"name":"NVME_PROTECTION_INFORMATION_TYPES","features":[513]},{"name":"NVME_PRP_ENTRY","features":[513]},{"name":"NVME_REGISTERED_CONTROLLER_DATA","features":[513]},{"name":"NVME_REGISTERED_CONTROLLER_EXTENDED_DATA","features":[513]},{"name":"NVME_REPORT_ZONE_INFO","features":[513]},{"name":"NVME_RESERVATION_ACQUIRE_ACTIONS","features":[513]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_ACQUIRE","features":[513]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT","features":[513]},{"name":"NVME_RESERVATION_ACQUIRE_ACTION_PREEMPT_AND_ABORT","features":[513]},{"name":"NVME_RESERVATION_ACQUIRE_DATA_STRUCTURE","features":[513]},{"name":"NVME_RESERVATION_NOTIFICATION_LOG","features":[513]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPES","features":[513]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_EMPTY_LOG_PAGE","features":[513]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_PREEMPTED","features":[513]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_REGISTRATION_RELEASED","features":[513]},{"name":"NVME_RESERVATION_NOTIFICATION_TYPE_RESERVATION_PREEPMPTED","features":[513]},{"name":"NVME_RESERVATION_REGISTER_ACTIONS","features":[513]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REGISTER","features":[513]},{"name":"NVME_RESERVATION_REGISTER_ACTION_REPLACE","features":[513]},{"name":"NVME_RESERVATION_REGISTER_ACTION_UNREGISTER","features":[513]},{"name":"NVME_RESERVATION_REGISTER_DATA_STRUCTURE","features":[513]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_CHANGES","features":[513]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_NO_CHANGE","features":[513]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_RESERVED","features":[513]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_0","features":[513]},{"name":"NVME_RESERVATION_REGISTER_PTPL_STATE_SET_TO_1","features":[513]},{"name":"NVME_RESERVATION_RELEASE_ACTIONS","features":[513]},{"name":"NVME_RESERVATION_RELEASE_ACTION_CLEAR","features":[513]},{"name":"NVME_RESERVATION_RELEASE_ACTION_RELEASE","features":[513]},{"name":"NVME_RESERVATION_RELEASE_DATA_STRUCTURE","features":[513]},{"name":"NVME_RESERVATION_REPORT_STATUS_DATA_STRUCTURE","features":[513]},{"name":"NVME_RESERVATION_REPORT_STATUS_EXTENDED_DATA_STRUCTURE","features":[513]},{"name":"NVME_RESERVATION_REPORT_STATUS_HEADER","features":[513]},{"name":"NVME_RESERVATION_TYPES","features":[513]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS","features":[513]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_ALL_REGISTRANTS","features":[513]},{"name":"NVME_RESERVATION_TYPE_EXCLUSIVE_ACCESS_REGISTRANTS_ONLY","features":[513]},{"name":"NVME_RESERVATION_TYPE_RESERVED","features":[513]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE","features":[513]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_ALL_REGISTRANTS","features":[513]},{"name":"NVME_RESERVATION_TYPE_WRITE_EXCLUSIVE_REGISTRANTS_ONLY","features":[513]},{"name":"NVME_SANITIZE_ACTION","features":[513]},{"name":"NVME_SANITIZE_ACTION_EXIT_FAILURE_MODE","features":[513]},{"name":"NVME_SANITIZE_ACTION_RESERVED","features":[513]},{"name":"NVME_SANITIZE_ACTION_START_BLOCK_ERASE_SANITIZE","features":[513]},{"name":"NVME_SANITIZE_ACTION_START_CRYPTO_ERASE_SANITIZE","features":[513]},{"name":"NVME_SANITIZE_ACTION_START_OVERWRITE_SANITIZE","features":[513]},{"name":"NVME_SANITIZE_OPERATION_FAILED","features":[513]},{"name":"NVME_SANITIZE_OPERATION_IN_PROGRESS","features":[513]},{"name":"NVME_SANITIZE_OPERATION_NONE","features":[513]},{"name":"NVME_SANITIZE_OPERATION_STATUS","features":[513]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED","features":[513]},{"name":"NVME_SANITIZE_OPERATION_SUCCEEDED_WITH_FORCED_DEALLOCATION","features":[513]},{"name":"NVME_SANITIZE_STATUS","features":[513]},{"name":"NVME_SANITIZE_STATUS_LOG","features":[513]},{"name":"NVME_SCSI_NAME_STRING","features":[513]},{"name":"NVME_SECURE_ERASE_CRYPTOGRAPHIC","features":[513]},{"name":"NVME_SECURE_ERASE_NONE","features":[513]},{"name":"NVME_SECURE_ERASE_SETTINGS","features":[513]},{"name":"NVME_SECURE_ERASE_USER_DATA","features":[513]},{"name":"NVME_SET_ATTRIBUTES_ENTRY","features":[513]},{"name":"NVME_STATE_ZSC","features":[513]},{"name":"NVME_STATE_ZSE","features":[513]},{"name":"NVME_STATE_ZSEO","features":[513]},{"name":"NVME_STATE_ZSF","features":[513]},{"name":"NVME_STATE_ZSIO","features":[513]},{"name":"NVME_STATE_ZSO","features":[513]},{"name":"NVME_STATE_ZSRO","features":[513]},{"name":"NVME_STATUS_ABORT_COMMAND_LIMIT_EXCEEDED","features":[513]},{"name":"NVME_STATUS_ANA_ATTACH_FAILED","features":[513]},{"name":"NVME_STATUS_ASYNC_EVENT_REQUEST_LIMIT_EXCEEDED","features":[513]},{"name":"NVME_STATUS_ATOMIC_WRITE_UNIT_EXCEEDED","features":[513]},{"name":"NVME_STATUS_BOOT_PARTITION_WRITE_PROHIBITED","features":[513]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_FUSED_COMMAND","features":[513]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_FAILED_MISSING_COMMAND","features":[513]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_POWER_LOSS_NOTIFICATION","features":[513]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_PREEMPT_ABORT","features":[513]},{"name":"NVME_STATUS_COMMAND_ABORTED_DUE_TO_SQ_DELETION","features":[513]},{"name":"NVME_STATUS_COMMAND_ABORT_REQUESTED","features":[513]},{"name":"NVME_STATUS_COMMAND_ID_CONFLICT","features":[513]},{"name":"NVME_STATUS_COMMAND_SEQUENCE_ERROR","features":[513]},{"name":"NVME_STATUS_COMMAND_SPECIFIC_CODES","features":[513]},{"name":"NVME_STATUS_COMPLETION_QUEUE_INVALID","features":[513]},{"name":"NVME_STATUS_CONTROLLER_LIST_INVALID","features":[513]},{"name":"NVME_STATUS_DATA_SGL_LENGTH_INVALID","features":[513]},{"name":"NVME_STATUS_DATA_TRANSFER_ERROR","features":[513]},{"name":"NVME_STATUS_DEVICE_SELF_TEST_IN_PROGRESS","features":[513]},{"name":"NVME_STATUS_DIRECTIVE_ID_INVALID","features":[513]},{"name":"NVME_STATUS_DIRECTIVE_TYPE_INVALID","features":[513]},{"name":"NVME_STATUS_FEATURE_ID_NOT_SAVEABLE","features":[513]},{"name":"NVME_STATUS_FEATURE_NOT_CHANGEABLE","features":[513]},{"name":"NVME_STATUS_FEATURE_NOT_NAMESPACE_SPECIFIC","features":[513]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_PROHIBITED","features":[513]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_CONVENTIONAL_RESET","features":[513]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_MAX_TIME_VIOLATION","features":[513]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_NVM_SUBSYSTEM_RESET","features":[513]},{"name":"NVME_STATUS_FIRMWARE_ACTIVATION_REQUIRES_RESET","features":[513]},{"name":"NVME_STATUS_FORMAT_IN_PROGRESS","features":[513]},{"name":"NVME_STATUS_GENERIC_COMMAND_CODES","features":[513]},{"name":"NVME_STATUS_HOST_IDENTIFIER_INCONSISTENT_FORMAT","features":[513]},{"name":"NVME_STATUS_INTERNAL_DEVICE_ERROR","features":[513]},{"name":"NVME_STATUS_INVALID_ANA_GROUP_IDENTIFIER","features":[513]},{"name":"NVME_STATUS_INVALID_COMMAND_OPCODE","features":[513]},{"name":"NVME_STATUS_INVALID_CONTROLLER_IDENTIFIER","features":[513]},{"name":"NVME_STATUS_INVALID_FIELD_IN_COMMAND","features":[513]},{"name":"NVME_STATUS_INVALID_FIRMWARE_IMAGE","features":[513]},{"name":"NVME_STATUS_INVALID_FIRMWARE_SLOT","features":[513]},{"name":"NVME_STATUS_INVALID_FORMAT","features":[513]},{"name":"NVME_STATUS_INVALID_INTERRUPT_VECTOR","features":[513]},{"name":"NVME_STATUS_INVALID_LOG_PAGE","features":[513]},{"name":"NVME_STATUS_INVALID_NAMESPACE_OR_FORMAT","features":[513]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_CONTROLLER_RESOURCES","features":[513]},{"name":"NVME_STATUS_INVALID_NUMBER_OF_SGL_DESCR","features":[513]},{"name":"NVME_STATUS_INVALID_QUEUE_DELETION","features":[513]},{"name":"NVME_STATUS_INVALID_QUEUE_IDENTIFIER","features":[513]},{"name":"NVME_STATUS_INVALID_RESOURCE_IDENTIFIER","features":[513]},{"name":"NVME_STATUS_INVALID_SECONDARY_CONTROLLER_STATE","features":[513]},{"name":"NVME_STATUS_INVALID_SGL_LAST_SEGMENT_DESCR","features":[513]},{"name":"NVME_STATUS_INVALID_USE_OF_CONTROLLER_MEMORY_BUFFER","features":[513]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_EXPIRED","features":[513]},{"name":"NVME_STATUS_KEEP_ALIVE_TIMEOUT_INVALID","features":[513]},{"name":"NVME_STATUS_MAX_QUEUE_SIZE_EXCEEDED","features":[513]},{"name":"NVME_STATUS_MEDIA_ERROR_CODES","features":[513]},{"name":"NVME_STATUS_METADATA_SGL_LENGTH_INVALID","features":[513]},{"name":"NVME_STATUS_NAMESPACE_ALREADY_ATTACHED","features":[513]},{"name":"NVME_STATUS_NAMESPACE_IDENTIFIER_UNAVAILABLE","features":[513]},{"name":"NVME_STATUS_NAMESPACE_INSUFFICIENT_CAPACITY","features":[513]},{"name":"NVME_STATUS_NAMESPACE_IS_PRIVATE","features":[513]},{"name":"NVME_STATUS_NAMESPACE_NOT_ATTACHED","features":[513]},{"name":"NVME_STATUS_NAMESPACE_THIN_PROVISIONING_NOT_SUPPORTED","features":[513]},{"name":"NVME_STATUS_NVM_ACCESS_DENIED","features":[513]},{"name":"NVME_STATUS_NVM_ATTEMPTED_WRITE_TO_READ_ONLY_RANGE","features":[513]},{"name":"NVME_STATUS_NVM_CAPACITY_EXCEEDED","features":[513]},{"name":"NVME_STATUS_NVM_COMMAND_SIZE_LIMIT_EXCEEDED","features":[513]},{"name":"NVME_STATUS_NVM_COMPARE_FAILURE","features":[513]},{"name":"NVME_STATUS_NVM_CONFLICTING_ATTRIBUTES","features":[513]},{"name":"NVME_STATUS_NVM_DEALLOCATED_OR_UNWRITTEN_LOGICAL_BLOCK","features":[513]},{"name":"NVME_STATUS_NVM_END_TO_END_APPLICATION_TAG_CHECK_ERROR","features":[513]},{"name":"NVME_STATUS_NVM_END_TO_END_GUARD_CHECK_ERROR","features":[513]},{"name":"NVME_STATUS_NVM_END_TO_END_REFERENCE_TAG_CHECK_ERROR","features":[513]},{"name":"NVME_STATUS_NVM_INVALID_PROTECTION_INFORMATION","features":[513]},{"name":"NVME_STATUS_NVM_LBA_OUT_OF_RANGE","features":[513]},{"name":"NVME_STATUS_NVM_NAMESPACE_NOT_READY","features":[513]},{"name":"NVME_STATUS_NVM_RESERVATION_CONFLICT","features":[513]},{"name":"NVME_STATUS_NVM_UNRECOVERED_READ_ERROR","features":[513]},{"name":"NVME_STATUS_NVM_WRITE_FAULT","features":[513]},{"name":"NVME_STATUS_OPERATION_DENIED","features":[513]},{"name":"NVME_STATUS_OVERLAPPING_RANGE","features":[513]},{"name":"NVME_STATUS_PRP_OFFSET_INVALID","features":[513]},{"name":"NVME_STATUS_RESERVED","features":[513]},{"name":"NVME_STATUS_SANITIZE_FAILED","features":[513]},{"name":"NVME_STATUS_SANITIZE_IN_PROGRESS","features":[513]},{"name":"NVME_STATUS_SANITIZE_PROHIBITED_ON_PERSISTENT_MEMORY","features":[513]},{"name":"NVME_STATUS_SGL_DATA_BLOCK_GRANULARITY_INVALID","features":[513]},{"name":"NVME_STATUS_SGL_DESCR_TYPE_INVALID","features":[513]},{"name":"NVME_STATUS_SGL_OFFSET_INVALID","features":[513]},{"name":"NVME_STATUS_STREAM_RESOURCE_ALLOCATION_FAILED","features":[513]},{"name":"NVME_STATUS_SUCCESS_COMPLETION","features":[513]},{"name":"NVME_STATUS_TYPES","features":[513]},{"name":"NVME_STATUS_TYPE_COMMAND_SPECIFIC","features":[513]},{"name":"NVME_STATUS_TYPE_GENERIC_COMMAND","features":[513]},{"name":"NVME_STATUS_TYPE_MEDIA_ERROR","features":[513]},{"name":"NVME_STATUS_TYPE_VENDOR_SPECIFIC","features":[513]},{"name":"NVME_STATUS_ZONE_BOUNDARY_ERROR","features":[513]},{"name":"NVME_STATUS_ZONE_FULL","features":[513]},{"name":"NVME_STATUS_ZONE_INVALID_FORMAT","features":[513]},{"name":"NVME_STATUS_ZONE_INVALID_STATE_TRANSITION","features":[513]},{"name":"NVME_STATUS_ZONE_INVALID_WRITE","features":[513]},{"name":"NVME_STATUS_ZONE_OFFLINE","features":[513]},{"name":"NVME_STATUS_ZONE_READ_ONLY","features":[513]},{"name":"NVME_STATUS_ZONE_TOO_MANY_ACTIVE","features":[513]},{"name":"NVME_STATUS_ZONE_TOO_MANY_OPEN","features":[513]},{"name":"NVME_STREAMS_GET_STATUS_MAX_IDS","features":[513]},{"name":"NVME_STREAMS_ID_MAX","features":[513]},{"name":"NVME_STREAMS_ID_MIN","features":[513]},{"name":"NVME_SUBMISSION_QUEUE_TAIL_DOORBELL","features":[513]},{"name":"NVME_TELEMETRY_CONTROLLER_INITIATED_LOG","features":[513]},{"name":"NVME_TELEMETRY_DATA_BLOCK_SIZE","features":[513]},{"name":"NVME_TELEMETRY_HOST_INITIATED_LOG","features":[513]},{"name":"NVME_TEMPERATURE_OVER_THRESHOLD","features":[513]},{"name":"NVME_TEMPERATURE_THRESHOLD_TYPES","features":[513]},{"name":"NVME_TEMPERATURE_UNDER_THRESHOLD","features":[513]},{"name":"NVME_VENDOR_LOG_PAGES","features":[513]},{"name":"NVME_VERSION","features":[513]},{"name":"NVME_WCS_DEVICE_CAPABILITIES","features":[513]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG","features":[513]},{"name":"NVME_WCS_DEVICE_ERROR_RECOVERY_LOG_VERSION_1","features":[513]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION1","features":[513]},{"name":"NVME_WCS_DEVICE_RECOVERY_ACTION2","features":[513]},{"name":"NVME_WCS_DEVICE_RESET_ACTION","features":[513]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG","features":[513]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_V2","features":[513]},{"name":"NVME_WCS_DEVICE_SMART_ATTRIBUTES_LOG_VERSION_2","features":[513]},{"name":"NVME_ZONE_DESCRIPTOR","features":[513]},{"name":"NVME_ZONE_DESCRIPTOR_EXTENSION","features":[513]},{"name":"NVME_ZONE_EXTENDED_REPORT_ZONE_DESC","features":[513]},{"name":"NVME_ZONE_RECEIVE_ACTION","features":[513]},{"name":"NVME_ZONE_RECEIVE_ACTION_SPECIFIC","features":[513]},{"name":"NVME_ZONE_RECEIVE_EXTENDED_REPORT_ZONES","features":[513]},{"name":"NVME_ZONE_RECEIVE_REPORT_ZONES","features":[513]},{"name":"NVME_ZONE_SEND_ACTION","features":[513]},{"name":"NVME_ZONE_SEND_CLOSE","features":[513]},{"name":"NVME_ZONE_SEND_FINISH","features":[513]},{"name":"NVME_ZONE_SEND_OFFLINE","features":[513]},{"name":"NVME_ZONE_SEND_OPEN","features":[513]},{"name":"NVME_ZONE_SEND_RESET","features":[513]},{"name":"NVME_ZONE_SEND_SET_ZONE_DESCRIPTOR","features":[513]},{"name":"NVME_ZRA_ALL_ZONES","features":[513]},{"name":"NVME_ZRA_CLOSED_STATE_ZONES","features":[513]},{"name":"NVME_ZRA_EMPTY_STATE_ZONES","features":[513]},{"name":"NVME_ZRA_EO_STATE_ZONES","features":[513]},{"name":"NVME_ZRA_FULL_STATE_ZONES","features":[513]},{"name":"NVME_ZRA_IO_STATE_ZONES","features":[513]},{"name":"NVME_ZRA_OFFLINE_STATE_ZONES","features":[513]},{"name":"NVME_ZRA_RO_STATE_ZONES","features":[513]},{"name":"NVM_RESERVATION_CAPABILITIES","features":[513]},{"name":"NVM_SET_LIST","features":[513]},{"name":"NVMeDeviceRecovery1Max","features":[513]},{"name":"NVMeDeviceRecovery2Max","features":[513]},{"name":"NVMeDeviceRecoveryControllerReset","features":[513]},{"name":"NVMeDeviceRecoveryDeviceReplacement","features":[513]},{"name":"NVMeDeviceRecoveryFormatNVM","features":[513]},{"name":"NVMeDeviceRecoveryNoAction","features":[513]},{"name":"NVMeDeviceRecoveryPERST","features":[513]},{"name":"NVMeDeviceRecoveryPcieFunctionReset","features":[513]},{"name":"NVMeDeviceRecoveryPcieHotReset","features":[513]},{"name":"NVMeDeviceRecoveryPowerCycle","features":[513]},{"name":"NVMeDeviceRecoverySanitize","features":[513]},{"name":"NVMeDeviceRecoverySubsystemReset","features":[513]},{"name":"NVMeDeviceRecoveryVendorAnalysis","features":[513]},{"name":"NVMeDeviceRecoveryVendorSpecificCommand","features":[513]},{"name":"TCG_ACTIVATE_METHOD_SPECIFIC","features":[513]},{"name":"TCG_ASSIGN_METHOD_SPECIFIC","features":[513]},{"name":"TCG_AUTH_METHOD_SPECIFIC","features":[513]},{"name":"TCG_BLOCKSID_METHOD_SPECIFIC","features":[513]},{"name":"TCG_HISTORY_ENTRY","features":[513]},{"name":"TCG_HISTORY_ENTRY_VERSION_1","features":[513]},{"name":"TCG_REACTIVATE_METHOD_SPECIFIC","features":[513]},{"name":"UNSUPPORTED_REQUIREMENT","features":[513]},{"name":"ZONE_STATE","features":[513]}],"519":[{"name":"IEnumOfflineFilesItems","features":[514]},{"name":"IEnumOfflineFilesSettings","features":[514]},{"name":"IOfflineFilesCache","features":[514]},{"name":"IOfflineFilesCache2","features":[514]},{"name":"IOfflineFilesChangeInfo","features":[514]},{"name":"IOfflineFilesConnectionInfo","features":[514]},{"name":"IOfflineFilesDirectoryItem","features":[514]},{"name":"IOfflineFilesDirtyInfo","features":[514]},{"name":"IOfflineFilesErrorInfo","features":[514]},{"name":"IOfflineFilesEvents","features":[514]},{"name":"IOfflineFilesEvents2","features":[514]},{"name":"IOfflineFilesEvents3","features":[514]},{"name":"IOfflineFilesEvents4","features":[514]},{"name":"IOfflineFilesEventsFilter","features":[514]},{"name":"IOfflineFilesFileItem","features":[514]},{"name":"IOfflineFilesFileSysInfo","features":[514]},{"name":"IOfflineFilesGhostInfo","features":[514]},{"name":"IOfflineFilesItem","features":[514]},{"name":"IOfflineFilesItemContainer","features":[514]},{"name":"IOfflineFilesItemFilter","features":[514]},{"name":"IOfflineFilesPinInfo","features":[514]},{"name":"IOfflineFilesPinInfo2","features":[514]},{"name":"IOfflineFilesProgress","features":[514]},{"name":"IOfflineFilesServerItem","features":[514]},{"name":"IOfflineFilesSetting","features":[514]},{"name":"IOfflineFilesShareInfo","features":[514]},{"name":"IOfflineFilesShareItem","features":[514]},{"name":"IOfflineFilesSimpleProgress","features":[514]},{"name":"IOfflineFilesSuspend","features":[514]},{"name":"IOfflineFilesSuspendInfo","features":[514]},{"name":"IOfflineFilesSyncConflictHandler","features":[514]},{"name":"IOfflineFilesSyncErrorInfo","features":[514]},{"name":"IOfflineFilesSyncErrorItemInfo","features":[514]},{"name":"IOfflineFilesSyncProgress","features":[514]},{"name":"IOfflineFilesTransparentCacheInfo","features":[514]},{"name":"OFFLINEFILES_CACHING_MODE","features":[514]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_DOC","features":[514]},{"name":"OFFLINEFILES_CACHING_MODE_AUTO_PROGANDDOC","features":[514]},{"name":"OFFLINEFILES_CACHING_MODE_MANUAL","features":[514]},{"name":"OFFLINEFILES_CACHING_MODE_NOCACHING","features":[514]},{"name":"OFFLINEFILES_CACHING_MODE_NONE","features":[514]},{"name":"OFFLINEFILES_CHANGES_LOCAL_ATTRIBUTES","features":[514]},{"name":"OFFLINEFILES_CHANGES_LOCAL_SIZE","features":[514]},{"name":"OFFLINEFILES_CHANGES_LOCAL_TIME","features":[514]},{"name":"OFFLINEFILES_CHANGES_NONE","features":[514]},{"name":"OFFLINEFILES_CHANGES_REMOTE_ATTRIBUTES","features":[514]},{"name":"OFFLINEFILES_CHANGES_REMOTE_SIZE","features":[514]},{"name":"OFFLINEFILES_CHANGES_REMOTE_TIME","features":[514]},{"name":"OFFLINEFILES_COMPARE","features":[514]},{"name":"OFFLINEFILES_COMPARE_EQ","features":[514]},{"name":"OFFLINEFILES_COMPARE_GT","features":[514]},{"name":"OFFLINEFILES_COMPARE_GTE","features":[514]},{"name":"OFFLINEFILES_COMPARE_LT","features":[514]},{"name":"OFFLINEFILES_COMPARE_LTE","features":[514]},{"name":"OFFLINEFILES_COMPARE_NEQ","features":[514]},{"name":"OFFLINEFILES_CONNECT_STATE","features":[514]},{"name":"OFFLINEFILES_CONNECT_STATE_OFFLINE","features":[514]},{"name":"OFFLINEFILES_CONNECT_STATE_ONLINE","features":[514]},{"name":"OFFLINEFILES_CONNECT_STATE_PARTLY_TRANSPARENTLY_CACHED","features":[514]},{"name":"OFFLINEFILES_CONNECT_STATE_TRANSPARENTLY_CACHED","features":[514]},{"name":"OFFLINEFILES_CONNECT_STATE_UNKNOWN","features":[514]},{"name":"OFFLINEFILES_DELETE_FLAG_ADMIN","features":[514]},{"name":"OFFLINEFILES_DELETE_FLAG_DELMODIFIED","features":[514]},{"name":"OFFLINEFILES_DELETE_FLAG_NOAUTOCACHED","features":[514]},{"name":"OFFLINEFILES_DELETE_FLAG_NOPINNED","features":[514]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_ASYNCPROGRESS","features":[514]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_BACKGROUND","features":[514]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_CONSOLE","features":[514]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_INTERACTIVE","features":[514]},{"name":"OFFLINEFILES_ENCRYPTION_CONTROL_FLAG_LOWPRIORITY","features":[514]},{"name":"OFFLINEFILES_ENUM_FLAT","features":[514]},{"name":"OFFLINEFILES_ENUM_FLAT_FILESONLY","features":[514]},{"name":"OFFLINEFILES_EVENTS","features":[514]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCBEGIN","features":[514]},{"name":"OFFLINEFILES_EVENT_BACKGROUNDSYNCEND","features":[514]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTBEGIN","features":[514]},{"name":"OFFLINEFILES_EVENT_CACHEEVICTEND","features":[514]},{"name":"OFFLINEFILES_EVENT_CACHEISCORRUPTED","features":[514]},{"name":"OFFLINEFILES_EVENT_CACHEISFULL","features":[514]},{"name":"OFFLINEFILES_EVENT_CACHEMOVED","features":[514]},{"name":"OFFLINEFILES_EVENT_DATALOST","features":[514]},{"name":"OFFLINEFILES_EVENT_ENABLED","features":[514]},{"name":"OFFLINEFILES_EVENT_ENCRYPTIONCHANGED","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMADDEDTOCACHE","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMAVAILABLEOFFLINE","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMDELETEDFROMCACHE","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMDISCONNECTED","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMMODIFIED","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMNOTAVAILABLEOFFLINE","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMNOTPINNED","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMPINNED","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTBEGIN","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTED","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMRECONNECTEND","features":[514]},{"name":"OFFLINEFILES_EVENT_ITEMRENAMED","features":[514]},{"name":"OFFLINEFILES_EVENT_NETTRANSPORTARRIVED","features":[514]},{"name":"OFFLINEFILES_EVENT_NONETTRANSPORTS","features":[514]},{"name":"OFFLINEFILES_EVENT_PING","features":[514]},{"name":"OFFLINEFILES_EVENT_POLICYCHANGEDETECTED","features":[514]},{"name":"OFFLINEFILES_EVENT_PREFERENCECHANGEDETECTED","features":[514]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEBEGIN","features":[514]},{"name":"OFFLINEFILES_EVENT_PREFETCHCLOSEHANDLEEND","features":[514]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEBEGIN","features":[514]},{"name":"OFFLINEFILES_EVENT_PREFETCHFILEEND","features":[514]},{"name":"OFFLINEFILES_EVENT_SETTINGSCHANGESAPPLIED","features":[514]},{"name":"OFFLINEFILES_EVENT_SYNCBEGIN","features":[514]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECADDED","features":[514]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECREMOVED","features":[514]},{"name":"OFFLINEFILES_EVENT_SYNCCONFLICTRECUPDATED","features":[514]},{"name":"OFFLINEFILES_EVENT_SYNCEND","features":[514]},{"name":"OFFLINEFILES_EVENT_SYNCFILERESULT","features":[514]},{"name":"OFFLINEFILES_EVENT_TRANSPARENTCACHEITEMNOTIFY","features":[514]},{"name":"OFFLINEFILES_ITEM_COPY","features":[514]},{"name":"OFFLINEFILES_ITEM_COPY_LOCAL","features":[514]},{"name":"OFFLINEFILES_ITEM_COPY_ORIGINAL","features":[514]},{"name":"OFFLINEFILES_ITEM_COPY_REMOTE","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_CREATED","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DELETED","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRECTORY","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_DIRTY","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_FILE","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GHOST","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_ANYACCESS","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_READ","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_GUEST_WRITE","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_ATTRIBUTES","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_MODIFIED_DATA","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OFFLINE","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_ONLINE","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_ANYACCESS","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_READ","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_OTHER_WRITE","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_COMPUTER","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_OTHERS","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_PINNED_USER","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SPARSE","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_SUSPENDED","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_ANYACCESS","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_READ","features":[514]},{"name":"OFFLINEFILES_ITEM_FILTER_FLAG_USER_WRITE","features":[514]},{"name":"OFFLINEFILES_ITEM_QUERY_ADMIN","features":[514]},{"name":"OFFLINEFILES_ITEM_QUERY_ATTEMPT_TRANSITIONONLINE","features":[514]},{"name":"OFFLINEFILES_ITEM_QUERY_CONNECTIONSTATE","features":[514]},{"name":"OFFLINEFILES_ITEM_QUERY_INCLUDETRANSPARENTCACHE","features":[514]},{"name":"OFFLINEFILES_ITEM_QUERY_LOCALDIRTYBYTECOUNT","features":[514]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEDIRTYBYTECOUNT","features":[514]},{"name":"OFFLINEFILES_ITEM_QUERY_REMOTEINFO","features":[514]},{"name":"OFFLINEFILES_ITEM_TIME","features":[514]},{"name":"OFFLINEFILES_ITEM_TIME_CREATION","features":[514]},{"name":"OFFLINEFILES_ITEM_TIME_LASTACCESS","features":[514]},{"name":"OFFLINEFILES_ITEM_TIME_LASTWRITE","features":[514]},{"name":"OFFLINEFILES_ITEM_TYPE","features":[514]},{"name":"OFFLINEFILES_ITEM_TYPE_DIRECTORY","features":[514]},{"name":"OFFLINEFILES_ITEM_TYPE_FILE","features":[514]},{"name":"OFFLINEFILES_ITEM_TYPE_SERVER","features":[514]},{"name":"OFFLINEFILES_ITEM_TYPE_SHARE","features":[514]},{"name":"OFFLINEFILES_NUM_EVENTS","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_ERROR","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_FORCED","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON_CONNECTION_SLOW","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_SUSPENDED","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON_ITEM_VERSION_CONFLICT","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON_NOT_APPLICABLE","features":[514]},{"name":"OFFLINEFILES_OFFLINE_REASON_UNKNOWN","features":[514]},{"name":"OFFLINEFILES_OP_ABORT","features":[514]},{"name":"OFFLINEFILES_OP_CONTINUE","features":[514]},{"name":"OFFLINEFILES_OP_RESPONSE","features":[514]},{"name":"OFFLINEFILES_OP_RETRY","features":[514]},{"name":"OFFLINEFILES_PATHFILTER_CHILD","features":[514]},{"name":"OFFLINEFILES_PATHFILTER_DESCENDENT","features":[514]},{"name":"OFFLINEFILES_PATHFILTER_MATCH","features":[514]},{"name":"OFFLINEFILES_PATHFILTER_SELF","features":[514]},{"name":"OFFLINEFILES_PATHFILTER_SELFORCHILD","features":[514]},{"name":"OFFLINEFILES_PATHFILTER_SELFORDESCENDENT","features":[514]},{"name":"OFFLINEFILES_PINLINKTARGETS_ALWAYS","features":[514]},{"name":"OFFLINEFILES_PINLINKTARGETS_EXPLICIT","features":[514]},{"name":"OFFLINEFILES_PINLINKTARGETS_NEVER","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_ASYNCPROGRESS","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_BACKGROUND","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_CONSOLE","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FILL","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORALL","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORREDIR","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_FORUSER_POLICY","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_INTERACTIVE","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_LOWPRIORITY","features":[514]},{"name":"OFFLINEFILES_PIN_CONTROL_FLAG_PINLINKTARGETS","features":[514]},{"name":"OFFLINEFILES_SETTING_PinLinkTargets","features":[514]},{"name":"OFFLINEFILES_SETTING_SCOPE_COMPUTER","features":[514]},{"name":"OFFLINEFILES_SETTING_SCOPE_USER","features":[514]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_BSTR","features":[514]},{"name":"OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_UI4","features":[514]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR","features":[514]},{"name":"OFFLINEFILES_SETTING_VALUE_BSTR_DBLNULTERM","features":[514]},{"name":"OFFLINEFILES_SETTING_VALUE_TYPE","features":[514]},{"name":"OFFLINEFILES_SETTING_VALUE_UI4","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_ABORT","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPALLCHANGES","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLATEST","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPLOCAL","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_KEEPREMOTE","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_LOG","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NONE","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_NUMCODES","features":[514]},{"name":"OFFLINEFILES_SYNC_CONFLICT_RESOLVE_SKIP","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_DEFAULT","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLATEST","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPLOCAL","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_KEEPREMOTE","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_CR_MASK","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_ASYNCPROGRESS","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_BACKGROUND","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_CONSOLE","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_FILLSPARSE","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_INTERACTIVE","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_LOWPRIORITY","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_NONEWFILESOUT","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORALL","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORREDIR","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINFORUSER_POLICY","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINLINKTARGETS","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_PINNEWFILES","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SKIPSUSPENDEDDIRS","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCIN","features":[514]},{"name":"OFFLINEFILES_SYNC_CONTROL_FLAG_SYNCOUT","features":[514]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_ATTRIBUTES","features":[514]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_CHANGETIME","features":[514]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_FILESIZE","features":[514]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_NONE","features":[514]},{"name":"OFFLINEFILES_SYNC_ITEM_CHANGE_WRITETIME","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_CLIENT","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_CREATE_COPY_ON_SERVER","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_CLIENT_COPY","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_DELETE_SERVER_COPY","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_PIN","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_PREPARE","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_CLIENT","features":[514]},{"name":"OFFLINEFILES_SYNC_OPERATION_SYNC_TO_SERVER","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DeletedOnClient_FileOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_ChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_DeletedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnClient_FileOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DeletedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_FileOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirCreatedOnClient_NoServerCopy","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirDeletedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_FileOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirOnClient_NoServerCopy","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnClient","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirRenamedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_DirSparseOnClient","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_ChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DeletedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnClient_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DeletedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_FileOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileCreatedOnClient_NoServerCopy","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileDeletedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileOnClient_NoServerCopy","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnClient","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileRenamedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileReplacedAndDeletedOnClient_FileOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_ChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DeletedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_FileSparseOnClient_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_LOCAL_KNOWN","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_NUMSTATES","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_DirOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileChangedOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_NoClientCopy_FileOnServer","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_REMOTE_KNOWN","features":[514]},{"name":"OFFLINEFILES_SYNC_STATE_Stable","features":[514]},{"name":"OFFLINEFILES_TRANSITION_FLAG_CONSOLE","features":[514]},{"name":"OFFLINEFILES_TRANSITION_FLAG_INTERACTIVE","features":[514]},{"name":"OfflineFilesCache","features":[514]},{"name":"OfflineFilesEnable","features":[305,514]},{"name":"OfflineFilesQueryStatus","features":[305,514]},{"name":"OfflineFilesQueryStatusEx","features":[305,514]},{"name":"OfflineFilesSetting","features":[514]},{"name":"OfflineFilesStart","features":[514]}],"520":[{"name":"OPERATION_END_DISCARD","features":[515]},{"name":"OPERATION_END_PARAMETERS","features":[515]},{"name":"OPERATION_END_PARAMETERS_FLAGS","features":[515]},{"name":"OPERATION_START_FLAGS","features":[515]},{"name":"OPERATION_START_PARAMETERS","features":[515]},{"name":"OPERATION_START_TRACE_CURRENT_THREAD","features":[515]},{"name":"OperationEnd","features":[305,515]},{"name":"OperationStart","features":[305,515]}],"521":[{"name":"APPLICATION_USER_MODEL_ID_MAX_LENGTH","features":[493]},{"name":"APPLICATION_USER_MODEL_ID_MIN_LENGTH","features":[493]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE","features":[493]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[493]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_FIRST","features":[493]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_LAST","features":[493]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_MANIFEST","features":[493]},{"name":"APPX_BUNDLE_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[493]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE","features":[493]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_APPLICATION","features":[493]},{"name":"APPX_BUNDLE_PAYLOAD_PACKAGE_TYPE_RESOURCE","features":[493]},{"name":"APPX_CAPABILITIES","features":[493]},{"name":"APPX_CAPABILITY_APPOINTMENTS","features":[493]},{"name":"APPX_CAPABILITY_CLASS_ALL","features":[493]},{"name":"APPX_CAPABILITY_CLASS_CUSTOM","features":[493]},{"name":"APPX_CAPABILITY_CLASS_DEFAULT","features":[493]},{"name":"APPX_CAPABILITY_CLASS_GENERAL","features":[493]},{"name":"APPX_CAPABILITY_CLASS_RESTRICTED","features":[493]},{"name":"APPX_CAPABILITY_CLASS_TYPE","features":[493]},{"name":"APPX_CAPABILITY_CLASS_WINDOWS","features":[493]},{"name":"APPX_CAPABILITY_CONTACTS","features":[493]},{"name":"APPX_CAPABILITY_DOCUMENTS_LIBRARY","features":[493]},{"name":"APPX_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[493]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT","features":[493]},{"name":"APPX_CAPABILITY_INTERNET_CLIENT_SERVER","features":[493]},{"name":"APPX_CAPABILITY_MUSIC_LIBRARY","features":[493]},{"name":"APPX_CAPABILITY_PICTURES_LIBRARY","features":[493]},{"name":"APPX_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[493]},{"name":"APPX_CAPABILITY_REMOVABLE_STORAGE","features":[493]},{"name":"APPX_CAPABILITY_SHARED_USER_CERTIFICATES","features":[493]},{"name":"APPX_CAPABILITY_VIDEOS_LIBRARY","features":[493]},{"name":"APPX_COMPRESSION_OPTION","features":[493]},{"name":"APPX_COMPRESSION_OPTION_FAST","features":[493]},{"name":"APPX_COMPRESSION_OPTION_MAXIMUM","features":[493]},{"name":"APPX_COMPRESSION_OPTION_NONE","features":[493]},{"name":"APPX_COMPRESSION_OPTION_NORMAL","features":[493]},{"name":"APPX_COMPRESSION_OPTION_SUPERFAST","features":[493]},{"name":"APPX_ENCRYPTED_EXEMPTIONS","features":[493]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTIONS","features":[493]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_DIFFUSION","features":[493]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_NONE","features":[493]},{"name":"APPX_ENCRYPTED_PACKAGE_OPTION_PAGE_HASHING","features":[493]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS","features":[305,493,356]},{"name":"APPX_ENCRYPTED_PACKAGE_SETTINGS2","features":[493,356]},{"name":"APPX_FOOTPRINT_FILE_TYPE","features":[493]},{"name":"APPX_FOOTPRINT_FILE_TYPE_BLOCKMAP","features":[493]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CODEINTEGRITY","features":[493]},{"name":"APPX_FOOTPRINT_FILE_TYPE_CONTENTGROUPMAP","features":[493]},{"name":"APPX_FOOTPRINT_FILE_TYPE_MANIFEST","features":[493]},{"name":"APPX_FOOTPRINT_FILE_TYPE_SIGNATURE","features":[493]},{"name":"APPX_KEY_INFO","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2_ARM64","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2_NEUTRAL","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2_UNKNOWN","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X64","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE2_X86_ON_ARM64","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE_ARM64","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE_NEUTRAL","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE_X64","features":[493]},{"name":"APPX_PACKAGE_ARCHITECTURE_X86","features":[493]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTIONS","features":[493]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_LOCALIZED","features":[493]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_NONE","features":[493]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_MANIFEST_OPTION_SKIP_VALIDATION","features":[493]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION","features":[493]},{"name":"APPX_PACKAGE_EDITOR_UPDATE_PACKAGE_OPTION_APPEND_DELTA","features":[493]},{"name":"APPX_PACKAGE_SETTINGS","features":[305,493,356]},{"name":"APPX_PACKAGE_WRITER_PAYLOAD_STREAM","features":[493,356]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE","features":[493]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_CHANGE","features":[493]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_DETAILS","features":[493]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_END","features":[493]},{"name":"APPX_PACKAGING_CONTEXT_CHANGE_TYPE_START","features":[493]},{"name":"ActivatePackageVirtualizationContext","features":[493]},{"name":"AddPackageDependency","features":[493]},{"name":"AddPackageDependencyOptions","features":[493]},{"name":"AddPackageDependencyOptions_None","features":[493]},{"name":"AddPackageDependencyOptions_PrependIfRankCollision","features":[493]},{"name":"AppPolicyClrCompat","features":[493]},{"name":"AppPolicyClrCompat_ClassicDesktop","features":[493]},{"name":"AppPolicyClrCompat_Other","features":[493]},{"name":"AppPolicyClrCompat_PackagedDesktop","features":[493]},{"name":"AppPolicyClrCompat_Universal","features":[493]},{"name":"AppPolicyCreateFileAccess","features":[493]},{"name":"AppPolicyCreateFileAccess_Full","features":[493]},{"name":"AppPolicyCreateFileAccess_Limited","features":[493]},{"name":"AppPolicyGetClrCompat","features":[305,493]},{"name":"AppPolicyGetCreateFileAccess","features":[305,493]},{"name":"AppPolicyGetLifecycleManagement","features":[305,493]},{"name":"AppPolicyGetMediaFoundationCodecLoading","features":[305,493]},{"name":"AppPolicyGetProcessTerminationMethod","features":[305,493]},{"name":"AppPolicyGetShowDeveloperDiagnostic","features":[305,493]},{"name":"AppPolicyGetThreadInitializationType","features":[305,493]},{"name":"AppPolicyGetWindowingModel","features":[305,493]},{"name":"AppPolicyLifecycleManagement","features":[493]},{"name":"AppPolicyLifecycleManagement_Managed","features":[493]},{"name":"AppPolicyLifecycleManagement_Unmanaged","features":[493]},{"name":"AppPolicyMediaFoundationCodecLoading","features":[493]},{"name":"AppPolicyMediaFoundationCodecLoading_All","features":[493]},{"name":"AppPolicyMediaFoundationCodecLoading_InboxOnly","features":[493]},{"name":"AppPolicyProcessTerminationMethod","features":[493]},{"name":"AppPolicyProcessTerminationMethod_ExitProcess","features":[493]},{"name":"AppPolicyProcessTerminationMethod_TerminateProcess","features":[493]},{"name":"AppPolicyShowDeveloperDiagnostic","features":[493]},{"name":"AppPolicyShowDeveloperDiagnostic_None","features":[493]},{"name":"AppPolicyShowDeveloperDiagnostic_ShowUI","features":[493]},{"name":"AppPolicyThreadInitializationType","features":[493]},{"name":"AppPolicyThreadInitializationType_InitializeWinRT","features":[493]},{"name":"AppPolicyThreadInitializationType_None","features":[493]},{"name":"AppPolicyWindowingModel","features":[493]},{"name":"AppPolicyWindowingModel_ClassicDesktop","features":[493]},{"name":"AppPolicyWindowingModel_ClassicPhone","features":[493]},{"name":"AppPolicyWindowingModel_None","features":[493]},{"name":"AppPolicyWindowingModel_Universal","features":[493]},{"name":"AppxBundleFactory","features":[493]},{"name":"AppxEncryptionFactory","features":[493]},{"name":"AppxFactory","features":[493]},{"name":"AppxPackageEditor","features":[493]},{"name":"AppxPackagingDiagnosticEventSinkManager","features":[493]},{"name":"CheckIsMSIXPackage","features":[305,493]},{"name":"ClosePackageInfo","features":[305,493]},{"name":"CreatePackageDependencyOptions","features":[493]},{"name":"CreatePackageDependencyOptions_DoNotVerifyDependencyResolution","features":[493]},{"name":"CreatePackageDependencyOptions_None","features":[493]},{"name":"CreatePackageDependencyOptions_ScopeIsSystem","features":[493]},{"name":"CreatePackageVirtualizationContext","features":[493]},{"name":"DX_FEATURE_LEVEL","features":[493]},{"name":"DX_FEATURE_LEVEL_10","features":[493]},{"name":"DX_FEATURE_LEVEL_11","features":[493]},{"name":"DX_FEATURE_LEVEL_9","features":[493]},{"name":"DX_FEATURE_LEVEL_UNSPECIFIED","features":[493]},{"name":"DeactivatePackageVirtualizationContext","features":[493]},{"name":"DeletePackageDependency","features":[493]},{"name":"DuplicatePackageVirtualizationContext","features":[493]},{"name":"FindPackagesByPackageFamily","features":[305,493]},{"name":"FormatApplicationUserModelId","features":[305,493]},{"name":"GetApplicationUserModelId","features":[305,493]},{"name":"GetApplicationUserModelIdFromToken","features":[305,493]},{"name":"GetCurrentApplicationUserModelId","features":[305,493]},{"name":"GetCurrentPackageFamilyName","features":[305,493]},{"name":"GetCurrentPackageFullName","features":[305,493]},{"name":"GetCurrentPackageId","features":[305,493]},{"name":"GetCurrentPackageInfo","features":[305,493]},{"name":"GetCurrentPackageInfo2","features":[305,493]},{"name":"GetCurrentPackageInfo3","features":[493]},{"name":"GetCurrentPackagePath","features":[305,493]},{"name":"GetCurrentPackagePath2","features":[305,493]},{"name":"GetCurrentPackageVirtualizationContext","features":[493]},{"name":"GetIdForPackageDependencyContext","features":[493]},{"name":"GetPackageApplicationIds","features":[305,493]},{"name":"GetPackageFamilyName","features":[305,493]},{"name":"GetPackageFamilyNameFromToken","features":[305,493]},{"name":"GetPackageFullName","features":[305,493]},{"name":"GetPackageFullNameFromToken","features":[305,493]},{"name":"GetPackageGraphRevisionId","features":[493]},{"name":"GetPackageId","features":[305,493]},{"name":"GetPackageInfo","features":[305,493]},{"name":"GetPackageInfo2","features":[305,493]},{"name":"GetPackagePath","features":[305,493]},{"name":"GetPackagePathByFullName","features":[305,493]},{"name":"GetPackagePathByFullName2","features":[305,493]},{"name":"GetPackagesByPackageFamily","features":[305,493]},{"name":"GetProcessesInVirtualizationContext","features":[305,493]},{"name":"GetResolvedPackageFullNameForPackageDependency","features":[493]},{"name":"GetStagedPackageOrigin","features":[305,493]},{"name":"GetStagedPackagePathByFullName","features":[305,493]},{"name":"GetStagedPackagePathByFullName2","features":[305,493]},{"name":"IAppxAppInstallerReader","features":[493]},{"name":"IAppxBlockMapBlock","features":[493]},{"name":"IAppxBlockMapBlocksEnumerator","features":[493]},{"name":"IAppxBlockMapFile","features":[493]},{"name":"IAppxBlockMapFilesEnumerator","features":[493]},{"name":"IAppxBlockMapReader","features":[493]},{"name":"IAppxBundleFactory","features":[493]},{"name":"IAppxBundleFactory2","features":[493]},{"name":"IAppxBundleManifestOptionalBundleInfo","features":[493]},{"name":"IAppxBundleManifestOptionalBundleInfoEnumerator","features":[493]},{"name":"IAppxBundleManifestPackageInfo","features":[493]},{"name":"IAppxBundleManifestPackageInfo2","features":[493]},{"name":"IAppxBundleManifestPackageInfo3","features":[493]},{"name":"IAppxBundleManifestPackageInfo4","features":[493]},{"name":"IAppxBundleManifestPackageInfoEnumerator","features":[493]},{"name":"IAppxBundleManifestReader","features":[493]},{"name":"IAppxBundleManifestReader2","features":[493]},{"name":"IAppxBundleReader","features":[493]},{"name":"IAppxBundleWriter","features":[493]},{"name":"IAppxBundleWriter2","features":[493]},{"name":"IAppxBundleWriter3","features":[493]},{"name":"IAppxBundleWriter4","features":[493]},{"name":"IAppxContentGroup","features":[493]},{"name":"IAppxContentGroupFilesEnumerator","features":[493]},{"name":"IAppxContentGroupMapReader","features":[493]},{"name":"IAppxContentGroupMapWriter","features":[493]},{"name":"IAppxContentGroupsEnumerator","features":[493]},{"name":"IAppxDigestProvider","features":[493]},{"name":"IAppxEncryptedBundleWriter","features":[493]},{"name":"IAppxEncryptedBundleWriter2","features":[493]},{"name":"IAppxEncryptedBundleWriter3","features":[493]},{"name":"IAppxEncryptedPackageWriter","features":[493]},{"name":"IAppxEncryptedPackageWriter2","features":[493]},{"name":"IAppxEncryptionFactory","features":[493]},{"name":"IAppxEncryptionFactory2","features":[493]},{"name":"IAppxEncryptionFactory3","features":[493]},{"name":"IAppxEncryptionFactory4","features":[493]},{"name":"IAppxEncryptionFactory5","features":[493]},{"name":"IAppxFactory","features":[493]},{"name":"IAppxFactory2","features":[493]},{"name":"IAppxFactory3","features":[493]},{"name":"IAppxFile","features":[493]},{"name":"IAppxFilesEnumerator","features":[493]},{"name":"IAppxManifestApplication","features":[493]},{"name":"IAppxManifestApplicationsEnumerator","features":[493]},{"name":"IAppxManifestCapabilitiesEnumerator","features":[493]},{"name":"IAppxManifestDeviceCapabilitiesEnumerator","features":[493]},{"name":"IAppxManifestDriverConstraint","features":[493]},{"name":"IAppxManifestDriverConstraintsEnumerator","features":[493]},{"name":"IAppxManifestDriverDependenciesEnumerator","features":[493]},{"name":"IAppxManifestDriverDependency","features":[493]},{"name":"IAppxManifestHostRuntimeDependenciesEnumerator","features":[493]},{"name":"IAppxManifestHostRuntimeDependency","features":[493]},{"name":"IAppxManifestHostRuntimeDependency2","features":[493]},{"name":"IAppxManifestMainPackageDependenciesEnumerator","features":[493]},{"name":"IAppxManifestMainPackageDependency","features":[493]},{"name":"IAppxManifestOSPackageDependenciesEnumerator","features":[493]},{"name":"IAppxManifestOSPackageDependency","features":[493]},{"name":"IAppxManifestOptionalPackageInfo","features":[493]},{"name":"IAppxManifestPackageDependenciesEnumerator","features":[493]},{"name":"IAppxManifestPackageDependency","features":[493]},{"name":"IAppxManifestPackageDependency2","features":[493]},{"name":"IAppxManifestPackageDependency3","features":[493]},{"name":"IAppxManifestPackageId","features":[493]},{"name":"IAppxManifestPackageId2","features":[493]},{"name":"IAppxManifestProperties","features":[493]},{"name":"IAppxManifestQualifiedResource","features":[493]},{"name":"IAppxManifestQualifiedResourcesEnumerator","features":[493]},{"name":"IAppxManifestReader","features":[493]},{"name":"IAppxManifestReader2","features":[493]},{"name":"IAppxManifestReader3","features":[493]},{"name":"IAppxManifestReader4","features":[493]},{"name":"IAppxManifestReader5","features":[493]},{"name":"IAppxManifestReader6","features":[493]},{"name":"IAppxManifestReader7","features":[493]},{"name":"IAppxManifestResourcesEnumerator","features":[493]},{"name":"IAppxManifestTargetDeviceFamiliesEnumerator","features":[493]},{"name":"IAppxManifestTargetDeviceFamily","features":[493]},{"name":"IAppxPackageEditor","features":[493]},{"name":"IAppxPackageReader","features":[493]},{"name":"IAppxPackageWriter","features":[493]},{"name":"IAppxPackageWriter2","features":[493]},{"name":"IAppxPackageWriter3","features":[493]},{"name":"IAppxPackagingDiagnosticEventSink","features":[493]},{"name":"IAppxPackagingDiagnosticEventSinkManager","features":[493]},{"name":"IAppxSourceContentGroupMapReader","features":[493]},{"name":"OpenPackageInfoByFullName","features":[305,493]},{"name":"OpenPackageInfoByFullNameForUser","features":[305,308,493]},{"name":"PACKAGEDEPENDENCY_CONTEXT","features":[493]},{"name":"PACKAGE_APPLICATIONS_MAX_COUNT","features":[493]},{"name":"PACKAGE_APPLICATIONS_MIN_COUNT","features":[493]},{"name":"PACKAGE_ARCHITECTURE_MAX_LENGTH","features":[493]},{"name":"PACKAGE_ARCHITECTURE_MIN_LENGTH","features":[493]},{"name":"PACKAGE_DEPENDENCY_RANK_DEFAULT","features":[493]},{"name":"PACKAGE_FAMILY_MAX_RESOURCE_PACKAGES","features":[493]},{"name":"PACKAGE_FAMILY_MIN_RESOURCE_PACKAGES","features":[493]},{"name":"PACKAGE_FAMILY_NAME_MAX_LENGTH","features":[493]},{"name":"PACKAGE_FAMILY_NAME_MIN_LENGTH","features":[493]},{"name":"PACKAGE_FILTER_ALL_LOADED","features":[493]},{"name":"PACKAGE_FILTER_BUNDLE","features":[493]},{"name":"PACKAGE_FILTER_DIRECT","features":[493]},{"name":"PACKAGE_FILTER_DYNAMIC","features":[493]},{"name":"PACKAGE_FILTER_HEAD","features":[493]},{"name":"PACKAGE_FILTER_HOSTRUNTIME","features":[493]},{"name":"PACKAGE_FILTER_IS_IN_RELATED_SET","features":[493]},{"name":"PACKAGE_FILTER_OPTIONAL","features":[493]},{"name":"PACKAGE_FILTER_RESOURCE","features":[493]},{"name":"PACKAGE_FILTER_STATIC","features":[493]},{"name":"PACKAGE_FULL_NAME_MAX_LENGTH","features":[493]},{"name":"PACKAGE_FULL_NAME_MIN_LENGTH","features":[493]},{"name":"PACKAGE_GRAPH_MAX_SIZE","features":[493]},{"name":"PACKAGE_GRAPH_MIN_SIZE","features":[493]},{"name":"PACKAGE_ID","features":[493]},{"name":"PACKAGE_ID","features":[493]},{"name":"PACKAGE_INFO","features":[493]},{"name":"PACKAGE_INFO","features":[493]},{"name":"PACKAGE_INFORMATION_BASIC","features":[493]},{"name":"PACKAGE_INFORMATION_FULL","features":[493]},{"name":"PACKAGE_MAX_DEPENDENCIES","features":[493]},{"name":"PACKAGE_MIN_DEPENDENCIES","features":[493]},{"name":"PACKAGE_NAME_MAX_LENGTH","features":[493]},{"name":"PACKAGE_NAME_MIN_LENGTH","features":[493]},{"name":"PACKAGE_PROPERTY_BUNDLE","features":[493]},{"name":"PACKAGE_PROPERTY_DEVELOPMENT_MODE","features":[493]},{"name":"PACKAGE_PROPERTY_DYNAMIC","features":[493]},{"name":"PACKAGE_PROPERTY_FRAMEWORK","features":[493]},{"name":"PACKAGE_PROPERTY_HOSTRUNTIME","features":[493]},{"name":"PACKAGE_PROPERTY_IS_IN_RELATED_SET","features":[493]},{"name":"PACKAGE_PROPERTY_OPTIONAL","features":[493]},{"name":"PACKAGE_PROPERTY_RESOURCE","features":[493]},{"name":"PACKAGE_PROPERTY_STATIC","features":[493]},{"name":"PACKAGE_PUBLISHERID_MAX_LENGTH","features":[493]},{"name":"PACKAGE_PUBLISHERID_MIN_LENGTH","features":[493]},{"name":"PACKAGE_PUBLISHER_MAX_LENGTH","features":[493]},{"name":"PACKAGE_PUBLISHER_MIN_LENGTH","features":[493]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MAX_LENGTH","features":[493]},{"name":"PACKAGE_RELATIVE_APPLICATION_ID_MIN_LENGTH","features":[493]},{"name":"PACKAGE_RESOURCEID_MAX_LENGTH","features":[493]},{"name":"PACKAGE_RESOURCEID_MIN_LENGTH","features":[493]},{"name":"PACKAGE_VERSION","features":[493]},{"name":"PACKAGE_VERSION_MAX_LENGTH","features":[493]},{"name":"PACKAGE_VERSION_MIN_LENGTH","features":[493]},{"name":"PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE","features":[493]},{"name":"PackageDependencyLifetimeKind","features":[493]},{"name":"PackageDependencyLifetimeKind_FilePath","features":[493]},{"name":"PackageDependencyLifetimeKind_Process","features":[493]},{"name":"PackageDependencyLifetimeKind_RegistryKey","features":[493]},{"name":"PackageDependencyProcessorArchitectures","features":[493]},{"name":"PackageDependencyProcessorArchitectures_Arm","features":[493]},{"name":"PackageDependencyProcessorArchitectures_Arm64","features":[493]},{"name":"PackageDependencyProcessorArchitectures_Neutral","features":[493]},{"name":"PackageDependencyProcessorArchitectures_None","features":[493]},{"name":"PackageDependencyProcessorArchitectures_X64","features":[493]},{"name":"PackageDependencyProcessorArchitectures_X86","features":[493]},{"name":"PackageDependencyProcessorArchitectures_X86A64","features":[493]},{"name":"PackageFamilyNameFromFullName","features":[305,493]},{"name":"PackageFamilyNameFromId","features":[305,493]},{"name":"PackageFullNameFromId","features":[305,493]},{"name":"PackageIdFromFullName","features":[305,493]},{"name":"PackageInfo3Type","features":[493]},{"name":"PackageInfo3Type_PackageInfoGeneration","features":[493]},{"name":"PackageNameAndPublisherIdFromFamilyName","features":[305,493]},{"name":"PackageOrigin","features":[493]},{"name":"PackageOrigin_DeveloperSigned","features":[493]},{"name":"PackageOrigin_DeveloperUnsigned","features":[493]},{"name":"PackageOrigin_Inbox","features":[493]},{"name":"PackageOrigin_LineOfBusiness","features":[493]},{"name":"PackageOrigin_Store","features":[493]},{"name":"PackageOrigin_Unknown","features":[493]},{"name":"PackageOrigin_Unsigned","features":[493]},{"name":"PackagePathType","features":[493]},{"name":"PackagePathType_Effective","features":[493]},{"name":"PackagePathType_EffectiveExternal","features":[493]},{"name":"PackagePathType_Install","features":[493]},{"name":"PackagePathType_MachineExternal","features":[493]},{"name":"PackagePathType_Mutable","features":[493]},{"name":"PackagePathType_UserExternal","features":[493]},{"name":"ParseApplicationUserModelId","features":[305,493]},{"name":"ReleasePackageVirtualizationContext","features":[493]},{"name":"RemovePackageDependency","features":[493]},{"name":"TryCreatePackageDependency","features":[308,493]},{"name":"VerifyApplicationUserModelId","features":[305,493]},{"name":"VerifyPackageFamilyName","features":[305,493]},{"name":"VerifyPackageFullName","features":[305,493]},{"name":"VerifyPackageId","features":[305,493]},{"name":"VerifyPackageRelativeApplicationId","features":[305,493]},{"name":"_PACKAGE_INFO_REFERENCE","features":[493]}],"522":[{"name":"IOpcCertificateEnumerator","features":[516]},{"name":"IOpcCertificateSet","features":[516]},{"name":"IOpcDigitalSignature","features":[516]},{"name":"IOpcDigitalSignatureEnumerator","features":[516]},{"name":"IOpcDigitalSignatureManager","features":[516]},{"name":"IOpcFactory","features":[516]},{"name":"IOpcPackage","features":[516]},{"name":"IOpcPart","features":[516]},{"name":"IOpcPartEnumerator","features":[516]},{"name":"IOpcPartSet","features":[516]},{"name":"IOpcPartUri","features":[516,356]},{"name":"IOpcRelationship","features":[516]},{"name":"IOpcRelationshipEnumerator","features":[516]},{"name":"IOpcRelationshipSelector","features":[516]},{"name":"IOpcRelationshipSelectorEnumerator","features":[516]},{"name":"IOpcRelationshipSelectorSet","features":[516]},{"name":"IOpcRelationshipSet","features":[516]},{"name":"IOpcSignatureCustomObject","features":[516]},{"name":"IOpcSignatureCustomObjectEnumerator","features":[516]},{"name":"IOpcSignatureCustomObjectSet","features":[516]},{"name":"IOpcSignaturePartReference","features":[516]},{"name":"IOpcSignaturePartReferenceEnumerator","features":[516]},{"name":"IOpcSignaturePartReferenceSet","features":[516]},{"name":"IOpcSignatureReference","features":[516]},{"name":"IOpcSignatureReferenceEnumerator","features":[516]},{"name":"IOpcSignatureReferenceSet","features":[516]},{"name":"IOpcSignatureRelationshipReference","features":[516]},{"name":"IOpcSignatureRelationshipReferenceEnumerator","features":[516]},{"name":"IOpcSignatureRelationshipReferenceSet","features":[516]},{"name":"IOpcSigningOptions","features":[516]},{"name":"IOpcUri","features":[516,356]},{"name":"OPC_CACHE_ON_ACCESS","features":[516]},{"name":"OPC_CANONICALIZATION_C14N","features":[516]},{"name":"OPC_CANONICALIZATION_C14N_WITH_COMMENTS","features":[516]},{"name":"OPC_CANONICALIZATION_METHOD","features":[516]},{"name":"OPC_CANONICALIZATION_NONE","features":[516]},{"name":"OPC_CERTIFICATE_EMBEDDING_OPTION","features":[516]},{"name":"OPC_CERTIFICATE_IN_CERTIFICATE_PART","features":[516]},{"name":"OPC_CERTIFICATE_IN_SIGNATURE_PART","features":[516]},{"name":"OPC_CERTIFICATE_NOT_EMBEDDED","features":[516]},{"name":"OPC_COMPRESSION_FAST","features":[516]},{"name":"OPC_COMPRESSION_MAXIMUM","features":[516]},{"name":"OPC_COMPRESSION_NONE","features":[516]},{"name":"OPC_COMPRESSION_NORMAL","features":[516]},{"name":"OPC_COMPRESSION_OPTIONS","features":[516]},{"name":"OPC_COMPRESSION_SUPERFAST","features":[516]},{"name":"OPC_E_CONFLICTING_SETTINGS","features":[516]},{"name":"OPC_E_COULD_NOT_RECOVER","features":[516]},{"name":"OPC_E_DS_DEFAULT_DIGEST_METHOD_NOT_SET","features":[516]},{"name":"OPC_E_DS_DIGEST_VALUE_ERROR","features":[516]},{"name":"OPC_E_DS_DUPLICATE_PACKAGE_OBJECT_REFERENCES","features":[516]},{"name":"OPC_E_DS_DUPLICATE_SIGNATURE_ORIGIN_RELATIONSHIP","features":[516]},{"name":"OPC_E_DS_DUPLICATE_SIGNATURE_PROPERTY_ELEMENT","features":[516]},{"name":"OPC_E_DS_EXTERNAL_SIGNATURE","features":[516]},{"name":"OPC_E_DS_EXTERNAL_SIGNATURE_REFERENCE","features":[516]},{"name":"OPC_E_DS_INVALID_CANONICALIZATION_METHOD","features":[516]},{"name":"OPC_E_DS_INVALID_CERTIFICATE_RELATIONSHIP","features":[516]},{"name":"OPC_E_DS_INVALID_OPC_SIGNATURE_TIME_FORMAT","features":[516]},{"name":"OPC_E_DS_INVALID_RELATIONSHIPS_SIGNING_OPTION","features":[516]},{"name":"OPC_E_DS_INVALID_RELATIONSHIP_TRANSFORM_XML","features":[516]},{"name":"OPC_E_DS_INVALID_SIGNATURE_COUNT","features":[516]},{"name":"OPC_E_DS_INVALID_SIGNATURE_ORIGIN_RELATIONSHIP","features":[516]},{"name":"OPC_E_DS_INVALID_SIGNATURE_XML","features":[516]},{"name":"OPC_E_DS_MISSING_CANONICALIZATION_TRANSFORM","features":[516]},{"name":"OPC_E_DS_MISSING_CERTIFICATE_PART","features":[516]},{"name":"OPC_E_DS_MISSING_PACKAGE_OBJECT_REFERENCE","features":[516]},{"name":"OPC_E_DS_MISSING_SIGNATURE_ALGORITHM","features":[516]},{"name":"OPC_E_DS_MISSING_SIGNATURE_ORIGIN_PART","features":[516]},{"name":"OPC_E_DS_MISSING_SIGNATURE_PART","features":[516]},{"name":"OPC_E_DS_MISSING_SIGNATURE_PROPERTIES_ELEMENT","features":[516]},{"name":"OPC_E_DS_MISSING_SIGNATURE_PROPERTY_ELEMENT","features":[516]},{"name":"OPC_E_DS_MISSING_SIGNATURE_TIME_PROPERTY","features":[516]},{"name":"OPC_E_DS_MULTIPLE_RELATIONSHIP_TRANSFORMS","features":[516]},{"name":"OPC_E_DS_PACKAGE_REFERENCE_URI_RESERVED","features":[516]},{"name":"OPC_E_DS_REFERENCE_MISSING_CONTENT_TYPE","features":[516]},{"name":"OPC_E_DS_SIGNATURE_CORRUPT","features":[516]},{"name":"OPC_E_DS_SIGNATURE_METHOD_NOT_SET","features":[516]},{"name":"OPC_E_DS_SIGNATURE_ORIGIN_EXISTS","features":[516]},{"name":"OPC_E_DS_SIGNATURE_PROPERTY_MISSING_TARGET","features":[516]},{"name":"OPC_E_DS_SIGNATURE_REFERENCE_MISSING_URI","features":[516]},{"name":"OPC_E_DS_UNSIGNED_PACKAGE","features":[516]},{"name":"OPC_E_DUPLICATE_DEFAULT_EXTENSION","features":[516]},{"name":"OPC_E_DUPLICATE_OVERRIDE_PART","features":[516]},{"name":"OPC_E_DUPLICATE_PART","features":[516]},{"name":"OPC_E_DUPLICATE_PIECE","features":[516]},{"name":"OPC_E_DUPLICATE_RELATIONSHIP","features":[516]},{"name":"OPC_E_ENUM_CANNOT_MOVE_NEXT","features":[516]},{"name":"OPC_E_ENUM_CANNOT_MOVE_PREVIOUS","features":[516]},{"name":"OPC_E_ENUM_COLLECTION_CHANGED","features":[516]},{"name":"OPC_E_ENUM_INVALID_POSITION","features":[516]},{"name":"OPC_E_INVALID_CONTENT_TYPE","features":[516]},{"name":"OPC_E_INVALID_CONTENT_TYPE_XML","features":[516]},{"name":"OPC_E_INVALID_DEFAULT_EXTENSION","features":[516]},{"name":"OPC_E_INVALID_OVERRIDE_PART_NAME","features":[516]},{"name":"OPC_E_INVALID_PIECE","features":[516]},{"name":"OPC_E_INVALID_RELATIONSHIP_ID","features":[516]},{"name":"OPC_E_INVALID_RELATIONSHIP_TARGET","features":[516]},{"name":"OPC_E_INVALID_RELATIONSHIP_TARGET_MODE","features":[516]},{"name":"OPC_E_INVALID_RELATIONSHIP_TYPE","features":[516]},{"name":"OPC_E_INVALID_RELS_XML","features":[516]},{"name":"OPC_E_INVALID_XML_ENCODING","features":[516]},{"name":"OPC_E_MC_INCONSISTENT_PRESERVE_ATTRIBUTES","features":[516]},{"name":"OPC_E_MC_INCONSISTENT_PRESERVE_ELEMENTS","features":[516]},{"name":"OPC_E_MC_INCONSISTENT_PROCESS_CONTENT","features":[516]},{"name":"OPC_E_MC_INVALID_ATTRIBUTES_ON_IGNORABLE_ELEMENT","features":[516]},{"name":"OPC_E_MC_INVALID_ENUM_TYPE","features":[516]},{"name":"OPC_E_MC_INVALID_PREFIX_LIST","features":[516]},{"name":"OPC_E_MC_INVALID_QNAME_LIST","features":[516]},{"name":"OPC_E_MC_INVALID_XMLNS_ATTRIBUTE","features":[516]},{"name":"OPC_E_MC_MISSING_CHOICE","features":[516]},{"name":"OPC_E_MC_MISSING_REQUIRES_ATTR","features":[516]},{"name":"OPC_E_MC_MULTIPLE_FALLBACK_ELEMENTS","features":[516]},{"name":"OPC_E_MC_NESTED_ALTERNATE_CONTENT","features":[516]},{"name":"OPC_E_MC_UNEXPECTED_ATTR","features":[516]},{"name":"OPC_E_MC_UNEXPECTED_CHOICE","features":[516]},{"name":"OPC_E_MC_UNEXPECTED_ELEMENT","features":[516]},{"name":"OPC_E_MC_UNEXPECTED_REQUIRES_ATTR","features":[516]},{"name":"OPC_E_MC_UNKNOWN_NAMESPACE","features":[516]},{"name":"OPC_E_MC_UNKNOWN_PREFIX","features":[516]},{"name":"OPC_E_MISSING_CONTENT_TYPES","features":[516]},{"name":"OPC_E_MISSING_PIECE","features":[516]},{"name":"OPC_E_NONCONFORMING_CONTENT_TYPES_XML","features":[516]},{"name":"OPC_E_NONCONFORMING_RELS_XML","features":[516]},{"name":"OPC_E_NONCONFORMING_URI","features":[516]},{"name":"OPC_E_NO_SUCH_PART","features":[516]},{"name":"OPC_E_NO_SUCH_RELATIONSHIP","features":[516]},{"name":"OPC_E_NO_SUCH_SETTINGS","features":[516]},{"name":"OPC_E_PART_CANNOT_BE_DIRECTORY","features":[516]},{"name":"OPC_E_RELATIONSHIP_URI_REQUIRED","features":[516]},{"name":"OPC_E_RELATIVE_URI_REQUIRED","features":[516]},{"name":"OPC_E_UNEXPECTED_CONTENT_TYPE","features":[516]},{"name":"OPC_E_UNSUPPORTED_PACKAGE","features":[516]},{"name":"OPC_E_ZIP_CENTRAL_DIRECTORY_TOO_LARGE","features":[516]},{"name":"OPC_E_ZIP_COMMENT_TOO_LARGE","features":[516]},{"name":"OPC_E_ZIP_COMPRESSION_FAILED","features":[516]},{"name":"OPC_E_ZIP_CORRUPTED_ARCHIVE","features":[516]},{"name":"OPC_E_ZIP_DECOMPRESSION_FAILED","features":[516]},{"name":"OPC_E_ZIP_DUPLICATE_NAME","features":[516]},{"name":"OPC_E_ZIP_EXTRA_FIELDS_TOO_LARGE","features":[516]},{"name":"OPC_E_ZIP_FILE_HEADER_TOO_LARGE","features":[516]},{"name":"OPC_E_ZIP_INCONSISTENT_DIRECTORY","features":[516]},{"name":"OPC_E_ZIP_INCONSISTENT_FILEITEM","features":[516]},{"name":"OPC_E_ZIP_INCORRECT_DATA_SIZE","features":[516]},{"name":"OPC_E_ZIP_MISSING_DATA_DESCRIPTOR","features":[516]},{"name":"OPC_E_ZIP_MISSING_END_OF_CENTRAL_DIRECTORY","features":[516]},{"name":"OPC_E_ZIP_NAME_TOO_LARGE","features":[516]},{"name":"OPC_E_ZIP_REQUIRES_64_BIT","features":[516]},{"name":"OPC_E_ZIP_UNSUPPORTEDARCHIVE","features":[516]},{"name":"OPC_READ_DEFAULT","features":[516]},{"name":"OPC_READ_FLAGS","features":[516]},{"name":"OPC_RELATIONSHIPS_SIGNING_OPTION","features":[516]},{"name":"OPC_RELATIONSHIP_SELECTOR","features":[516]},{"name":"OPC_RELATIONSHIP_SELECT_BY_ID","features":[516]},{"name":"OPC_RELATIONSHIP_SELECT_BY_TYPE","features":[516]},{"name":"OPC_RELATIONSHIP_SIGN_PART","features":[516]},{"name":"OPC_RELATIONSHIP_SIGN_USING_SELECTORS","features":[516]},{"name":"OPC_SIGNATURE_INVALID","features":[516]},{"name":"OPC_SIGNATURE_TIME_FORMAT","features":[516]},{"name":"OPC_SIGNATURE_TIME_FORMAT_DAYS","features":[516]},{"name":"OPC_SIGNATURE_TIME_FORMAT_MILLISECONDS","features":[516]},{"name":"OPC_SIGNATURE_TIME_FORMAT_MINUTES","features":[516]},{"name":"OPC_SIGNATURE_TIME_FORMAT_MONTHS","features":[516]},{"name":"OPC_SIGNATURE_TIME_FORMAT_SECONDS","features":[516]},{"name":"OPC_SIGNATURE_TIME_FORMAT_YEARS","features":[516]},{"name":"OPC_SIGNATURE_VALID","features":[516]},{"name":"OPC_SIGNATURE_VALIDATION_RESULT","features":[516]},{"name":"OPC_STREAM_IO_MODE","features":[516]},{"name":"OPC_STREAM_IO_READ","features":[516]},{"name":"OPC_STREAM_IO_WRITE","features":[516]},{"name":"OPC_URI_TARGET_MODE","features":[516]},{"name":"OPC_URI_TARGET_MODE_EXTERNAL","features":[516]},{"name":"OPC_URI_TARGET_MODE_INTERNAL","features":[516]},{"name":"OPC_VALIDATE_ON_LOAD","features":[516]},{"name":"OPC_WRITE_DEFAULT","features":[516]},{"name":"OPC_WRITE_FLAGS","features":[516]},{"name":"OPC_WRITE_FORCE_ZIP32","features":[516]},{"name":"OpcFactory","features":[516]}],"523":[{"name":"PRJ_CALLBACKS","features":[305,517]},{"name":"PRJ_CALLBACK_DATA","features":[517]},{"name":"PRJ_CALLBACK_DATA_FLAGS","features":[517]},{"name":"PRJ_CANCEL_COMMAND_CB","features":[517]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RESTART_SCAN","features":[517]},{"name":"PRJ_CB_DATA_FLAG_ENUM_RETURN_SINGLE_ENTRY","features":[517]},{"name":"PRJ_COMPLETE_COMMAND_EXTENDED_PARAMETERS","features":[517]},{"name":"PRJ_COMPLETE_COMMAND_TYPE","features":[517]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_ENUMERATION","features":[517]},{"name":"PRJ_COMPLETE_COMMAND_TYPE_NOTIFICATION","features":[517]},{"name":"PRJ_DIR_ENTRY_BUFFER_HANDLE","features":[517]},{"name":"PRJ_END_DIRECTORY_ENUMERATION_CB","features":[517]},{"name":"PRJ_EXTENDED_INFO","features":[517]},{"name":"PRJ_EXT_INFO_TYPE","features":[517]},{"name":"PRJ_EXT_INFO_TYPE_SYMLINK","features":[517]},{"name":"PRJ_FILE_BASIC_INFO","features":[305,517]},{"name":"PRJ_FILE_STATE","features":[517]},{"name":"PRJ_FILE_STATE_DIRTY_PLACEHOLDER","features":[517]},{"name":"PRJ_FILE_STATE_FULL","features":[517]},{"name":"PRJ_FILE_STATE_HYDRATED_PLACEHOLDER","features":[517]},{"name":"PRJ_FILE_STATE_PLACEHOLDER","features":[517]},{"name":"PRJ_FILE_STATE_TOMBSTONE","features":[517]},{"name":"PRJ_FLAG_NONE","features":[517]},{"name":"PRJ_FLAG_USE_NEGATIVE_PATH_CACHE","features":[517]},{"name":"PRJ_GET_DIRECTORY_ENUMERATION_CB","features":[517]},{"name":"PRJ_GET_FILE_DATA_CB","features":[517]},{"name":"PRJ_GET_PLACEHOLDER_INFO_CB","features":[517]},{"name":"PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT","features":[517]},{"name":"PRJ_NOTIFICATION","features":[517]},{"name":"PRJ_NOTIFICATION_CB","features":[305,517]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_DELETED","features":[517]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[517]},{"name":"PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[517]},{"name":"PRJ_NOTIFICATION_FILE_OPENED","features":[517]},{"name":"PRJ_NOTIFICATION_FILE_OVERWRITTEN","features":[517]},{"name":"PRJ_NOTIFICATION_FILE_PRE_CONVERT_TO_FULL","features":[517]},{"name":"PRJ_NOTIFICATION_FILE_RENAMED","features":[517]},{"name":"PRJ_NOTIFICATION_HARDLINK_CREATED","features":[517]},{"name":"PRJ_NOTIFICATION_MAPPING","features":[517]},{"name":"PRJ_NOTIFICATION_NEW_FILE_CREATED","features":[517]},{"name":"PRJ_NOTIFICATION_PARAMETERS","features":[305,517]},{"name":"PRJ_NOTIFICATION_PRE_DELETE","features":[517]},{"name":"PRJ_NOTIFICATION_PRE_RENAME","features":[517]},{"name":"PRJ_NOTIFICATION_PRE_SET_HARDLINK","features":[517]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_DELETED","features":[517]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_FILE_MODIFIED","features":[517]},{"name":"PRJ_NOTIFY_FILE_HANDLE_CLOSED_NO_MODIFICATION","features":[517]},{"name":"PRJ_NOTIFY_FILE_OPENED","features":[517]},{"name":"PRJ_NOTIFY_FILE_OVERWRITTEN","features":[517]},{"name":"PRJ_NOTIFY_FILE_PRE_CONVERT_TO_FULL","features":[517]},{"name":"PRJ_NOTIFY_FILE_RENAMED","features":[517]},{"name":"PRJ_NOTIFY_HARDLINK_CREATED","features":[517]},{"name":"PRJ_NOTIFY_NEW_FILE_CREATED","features":[517]},{"name":"PRJ_NOTIFY_NONE","features":[517]},{"name":"PRJ_NOTIFY_PRE_DELETE","features":[517]},{"name":"PRJ_NOTIFY_PRE_RENAME","features":[517]},{"name":"PRJ_NOTIFY_PRE_SET_HARDLINK","features":[517]},{"name":"PRJ_NOTIFY_SUPPRESS_NOTIFICATIONS","features":[517]},{"name":"PRJ_NOTIFY_TYPES","features":[517]},{"name":"PRJ_NOTIFY_USE_EXISTING_MASK","features":[517]},{"name":"PRJ_PLACEHOLDER_ID","features":[517]},{"name":"PRJ_PLACEHOLDER_ID_LENGTH","features":[517]},{"name":"PRJ_PLACEHOLDER_INFO","features":[305,517]},{"name":"PRJ_PLACEHOLDER_VERSION_INFO","features":[517]},{"name":"PRJ_QUERY_FILE_NAME_CB","features":[517]},{"name":"PRJ_STARTVIRTUALIZING_FLAGS","features":[517]},{"name":"PRJ_STARTVIRTUALIZING_OPTIONS","features":[517]},{"name":"PRJ_START_DIRECTORY_ENUMERATION_CB","features":[517]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_DATA","features":[517]},{"name":"PRJ_UPDATE_ALLOW_DIRTY_METADATA","features":[517]},{"name":"PRJ_UPDATE_ALLOW_READ_ONLY","features":[517]},{"name":"PRJ_UPDATE_ALLOW_TOMBSTONE","features":[517]},{"name":"PRJ_UPDATE_FAILURE_CAUSES","features":[517]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_DATA","features":[517]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_DIRTY_METADATA","features":[517]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_NONE","features":[517]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_READ_ONLY","features":[517]},{"name":"PRJ_UPDATE_FAILURE_CAUSE_TOMBSTONE","features":[517]},{"name":"PRJ_UPDATE_MAX_VAL","features":[517]},{"name":"PRJ_UPDATE_NONE","features":[517]},{"name":"PRJ_UPDATE_RESERVED1","features":[517]},{"name":"PRJ_UPDATE_RESERVED2","features":[517]},{"name":"PRJ_UPDATE_TYPES","features":[517]},{"name":"PRJ_VIRTUALIZATION_INSTANCE_INFO","features":[517]},{"name":"PrjAllocateAlignedBuffer","features":[517]},{"name":"PrjClearNegativePathCache","features":[517]},{"name":"PrjCompleteCommand","features":[517]},{"name":"PrjDeleteFile","features":[517]},{"name":"PrjDoesNameContainWildCards","features":[305,517]},{"name":"PrjFileNameCompare","features":[517]},{"name":"PrjFileNameMatch","features":[305,517]},{"name":"PrjFillDirEntryBuffer","features":[305,517]},{"name":"PrjFillDirEntryBuffer2","features":[305,517]},{"name":"PrjFreeAlignedBuffer","features":[517]},{"name":"PrjGetOnDiskFileState","features":[517]},{"name":"PrjGetVirtualizationInstanceInfo","features":[517]},{"name":"PrjMarkDirectoryAsPlaceholder","features":[517]},{"name":"PrjStartVirtualizing","features":[305,517]},{"name":"PrjStopVirtualizing","features":[517]},{"name":"PrjUpdateFileIfNeeded","features":[305,517]},{"name":"PrjWriteFileData","features":[517]},{"name":"PrjWritePlaceholderInfo","features":[305,517]},{"name":"PrjWritePlaceholderInfo2","features":[305,517]}],"524":[{"name":"JET_API_PTR","features":[512]},{"name":"JET_HANDLE","features":[512]},{"name":"JET_TABLEID","features":[512]}],"525":[{"name":"APPLY_SNAPSHOT_VHDSET_FLAG","features":[518]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_NONE","features":[518]},{"name":"APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[518]},{"name":"APPLY_SNAPSHOT_VHDSET_PARAMETERS","features":[518]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION","features":[518]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_1","features":[518]},{"name":"APPLY_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_AT_BOOT","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_BYPASS_DEFAULT_ENCRYPTION_POLICY","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NON_PNP","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_DRIVE_LETTER","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_LOCAL_HOST","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_NO_SECURITY_DESCRIPTOR","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_PERMANENT_LIFETIME","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_READ_ONLY","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_REGISTER_VOLUME","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_RESTRICTED_RANGE","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_FLAG_SINGLE_PARTITION","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_VERSION","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_2","features":[518]},{"name":"ATTACH_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"AddVirtualDiskParent","features":[305,518]},{"name":"ApplySnapshotVhdSet","features":[305,518]},{"name":"AttachVirtualDisk","features":[305,308,518,310]},{"name":"BreakMirrorVirtualDisk","features":[305,518]},{"name":"COMPACT_VIRTUAL_DISK_FLAG","features":[518]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_BLOCK_MOVES","features":[518]},{"name":"COMPACT_VIRTUAL_DISK_FLAG_NO_ZERO_SCAN","features":[518]},{"name":"COMPACT_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"COMPACT_VIRTUAL_DISK_VERSION","features":[518]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"COMPACT_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_CREATE_BACKING_STORAGE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_DO_NOT_COPY_METADATA_FROM_PARENT","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_FULL_PHYSICAL_ALLOCATION","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PMEM_COMPATIBLE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PRESERVE_PARENT_CHANGE_TRACKING_STATE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_PREVENT_WRITES_TO_SOURCE_DISK","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SPARSE_FILE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_USE_CHANGE_TRACKING_SOURCE_LIMIT","features":[518]},{"name":"CREATE_VIRTUAL_DISK_FLAG_VHD_SET_USE_ORIGINAL_BACKING_STORAGE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_BLOCK_SIZE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_PARAMETERS_DEFAULT_SECTOR_SIZE","features":[518]},{"name":"CREATE_VIRTUAL_DISK_VERSION","features":[518]},{"name":"CREATE_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"CREATE_VIRTUAL_DISK_VERSION_2","features":[518]},{"name":"CREATE_VIRTUAL_DISK_VERSION_3","features":[518]},{"name":"CREATE_VIRTUAL_DISK_VERSION_4","features":[518]},{"name":"CREATE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"CompactVirtualDisk","features":[305,518,310]},{"name":"CompleteForkVirtualDisk","features":[305,518]},{"name":"CreateVirtualDisk","features":[305,308,518,310]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG","features":[518]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_NONE","features":[518]},{"name":"DELETE_SNAPSHOT_VHDSET_FLAG_PERSIST_RCT","features":[518]},{"name":"DELETE_SNAPSHOT_VHDSET_PARAMETERS","features":[518]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION","features":[518]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_1","features":[518]},{"name":"DELETE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[518]},{"name":"DEPENDENT_DISK_FLAG","features":[518]},{"name":"DEPENDENT_DISK_FLAG_ALWAYS_ALLOW_SPARSE","features":[518]},{"name":"DEPENDENT_DISK_FLAG_FULLY_ALLOCATED","features":[518]},{"name":"DEPENDENT_DISK_FLAG_MULT_BACKING_FILES","features":[518]},{"name":"DEPENDENT_DISK_FLAG_NONE","features":[518]},{"name":"DEPENDENT_DISK_FLAG_NO_DRIVE_LETTER","features":[518]},{"name":"DEPENDENT_DISK_FLAG_NO_HOST_DISK","features":[518]},{"name":"DEPENDENT_DISK_FLAG_PARENT","features":[518]},{"name":"DEPENDENT_DISK_FLAG_PERMANENT_LIFETIME","features":[518]},{"name":"DEPENDENT_DISK_FLAG_READ_ONLY","features":[518]},{"name":"DEPENDENT_DISK_FLAG_REMOTE","features":[518]},{"name":"DEPENDENT_DISK_FLAG_REMOVABLE","features":[518]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[518]},{"name":"DEPENDENT_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[518]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME","features":[518]},{"name":"DEPENDENT_DISK_FLAG_SYSTEM_VOLUME_PARENT","features":[518]},{"name":"DETACH_VIRTUAL_DISK_FLAG","features":[518]},{"name":"DETACH_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"DeleteSnapshotVhdSet","features":[305,518]},{"name":"DeleteVirtualDiskMetadata","features":[305,518]},{"name":"DetachVirtualDisk","features":[305,518]},{"name":"EXPAND_VIRTUAL_DISK_FLAG","features":[518]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"EXPAND_VIRTUAL_DISK_FLAG_NOTIFY_CHANGE","features":[518]},{"name":"EXPAND_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"EXPAND_VIRTUAL_DISK_VERSION","features":[518]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"EXPAND_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"EnumerateVirtualDiskMetadata","features":[305,518]},{"name":"ExpandVirtualDisk","features":[305,518,310]},{"name":"FORK_VIRTUAL_DISK_FLAG","features":[518]},{"name":"FORK_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[518]},{"name":"FORK_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"FORK_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"FORK_VIRTUAL_DISK_VERSION","features":[518]},{"name":"FORK_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"FORK_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"ForkVirtualDisk","features":[305,518,310]},{"name":"GET_STORAGE_DEPENDENCY_FLAG","features":[518]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_DISK_HANDLE","features":[518]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_HOST_VOLUMES","features":[518]},{"name":"GET_STORAGE_DEPENDENCY_FLAG_NONE","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO","features":[305,518]},{"name":"GET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_FRAGMENTATION","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_IS_4K_ALIGNED","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_IS_LOADED","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_IDENTIFIER","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_LOCATION","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_PARENT_TIMESTAMP","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_PHYSICAL_DISK","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_PROVIDER_SUBTYPE","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_SIZE","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_VERSION","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_VHD_PHYSICAL_SECTOR_SIZE","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[518]},{"name":"GET_VIRTUAL_DISK_INFO_VIRTUAL_STORAGE_TYPE","features":[518]},{"name":"GetAllAttachedVirtualDiskPhysicalPaths","features":[305,518]},{"name":"GetStorageDependencyInformation","features":[305,518]},{"name":"GetVirtualDiskInformation","features":[305,518]},{"name":"GetVirtualDiskMetadata","features":[305,518]},{"name":"GetVirtualDiskOperationProgress","features":[305,518,310]},{"name":"GetVirtualDiskPhysicalPath","features":[305,518]},{"name":"MERGE_VIRTUAL_DISK_DEFAULT_MERGE_DEPTH","features":[518]},{"name":"MERGE_VIRTUAL_DISK_FLAG","features":[518]},{"name":"MERGE_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"MERGE_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"MERGE_VIRTUAL_DISK_VERSION","features":[518]},{"name":"MERGE_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"MERGE_VIRTUAL_DISK_VERSION_2","features":[518]},{"name":"MERGE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_FLAG","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_ENABLE_SMB_COMPRESSION","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_EXISTING_FILE","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_IS_LIVE_MIGRATION","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_FLAG_SKIP_MIRROR_ACTIVATION","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_VERSION","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"MIRROR_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"MODIFY_VHDSET_DEFAULT_SNAPSHOT_PATH","features":[518]},{"name":"MODIFY_VHDSET_FLAG","features":[518]},{"name":"MODIFY_VHDSET_FLAG_NONE","features":[518]},{"name":"MODIFY_VHDSET_FLAG_WRITEABLE_SNAPSHOT","features":[518]},{"name":"MODIFY_VHDSET_PARAMETERS","features":[518]},{"name":"MODIFY_VHDSET_REMOVE_SNAPSHOT","features":[518]},{"name":"MODIFY_VHDSET_SNAPSHOT_PATH","features":[518]},{"name":"MODIFY_VHDSET_UNSPECIFIED","features":[518]},{"name":"MODIFY_VHDSET_VERSION","features":[518]},{"name":"MergeVirtualDisk","features":[305,518,310]},{"name":"MirrorVirtualDisk","features":[305,518,310]},{"name":"ModifyVhdSet","features":[305,518]},{"name":"OPEN_VIRTUAL_DISK_FLAG","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BLANK_FILE","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_BOOT_DRIVE","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CACHED_IO","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_CUSTOM_DIFF_CHAIN","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_IGNORE_RELATIVE_PARENT_LOCATOR","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_PARENTS","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_NO_WRITE_HARDENING","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_PARENT_CACHED_IO","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_COMPRESSED_VOLUMES","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_ENCRYPTED_FILES","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_SUPPORT_SPARSE_FILES_ANY_FS","features":[518]},{"name":"OPEN_VIRTUAL_DISK_FLAG_VHDSET_FILE_ONLY","features":[518]},{"name":"OPEN_VIRTUAL_DISK_PARAMETERS","features":[305,518]},{"name":"OPEN_VIRTUAL_DISK_RW_DEPTH_DEFAULT","features":[518]},{"name":"OPEN_VIRTUAL_DISK_VERSION","features":[518]},{"name":"OPEN_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"OPEN_VIRTUAL_DISK_VERSION_2","features":[518]},{"name":"OPEN_VIRTUAL_DISK_VERSION_3","features":[518]},{"name":"OPEN_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"OpenVirtualDisk","features":[305,518]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG","features":[518]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"QUERY_CHANGES_VIRTUAL_DISK_RANGE","features":[518]},{"name":"QueryChangesVirtualDisk","features":[305,518]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG","features":[518]},{"name":"RAW_SCSI_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"RAW_SCSI_VIRTUAL_DISK_PARAMETERS","features":[305,518]},{"name":"RAW_SCSI_VIRTUAL_DISK_RESPONSE","features":[518]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION","features":[518]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"RAW_SCSI_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_FLAG","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_ALLOW_UNSAFE_VIRTUAL_SIZE","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_NONE","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_FLAG_RESIZE_TO_SMALLEST_SAFE_VIRTUAL_SIZE","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_PARAMETERS","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_VERSION","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_1","features":[518]},{"name":"RESIZE_VIRTUAL_DISK_VERSION_UNSPECIFIED","features":[518]},{"name":"RawSCSIVirtualDisk","features":[305,518]},{"name":"ResizeVirtualDisk","features":[305,518,310]},{"name":"SET_VIRTUAL_DISK_INFO","features":[305,518]},{"name":"SET_VIRTUAL_DISK_INFO_CHANGE_TRACKING_STATE","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_IDENTIFIER","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_LOCATOR","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_PARENT_PATH_WITH_DEPTH","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_PHYSICAL_SECTOR_SIZE","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_UNSPECIFIED","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_VERSION","features":[518]},{"name":"SET_VIRTUAL_DISK_INFO_VIRTUAL_DISK_ID","features":[518]},{"name":"STORAGE_DEPENDENCY_INFO","features":[518]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_1","features":[518]},{"name":"STORAGE_DEPENDENCY_INFO_TYPE_2","features":[518]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION","features":[518]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_1","features":[518]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_2","features":[518]},{"name":"STORAGE_DEPENDENCY_INFO_VERSION_UNSPECIFIED","features":[518]},{"name":"SetVirtualDiskInformation","features":[305,518]},{"name":"SetVirtualDiskMetadata","features":[305,518]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG","features":[518]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_NONE","features":[518]},{"name":"TAKE_SNAPSHOT_VHDSET_FLAG_WRITEABLE","features":[518]},{"name":"TAKE_SNAPSHOT_VHDSET_PARAMETERS","features":[518]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION","features":[518]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_1","features":[518]},{"name":"TAKE_SNAPSHOT_VHDSET_VERSION_UNSPECIFIED","features":[518]},{"name":"TakeSnapshotVhdSet","features":[305,518]},{"name":"VIRTUAL_DISK_ACCESS_ALL","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RO","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_ATTACH_RW","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_CREATE","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_DETACH","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_GET_INFO","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_MASK","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_METAOPS","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_NONE","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_READ","features":[518]},{"name":"VIRTUAL_DISK_ACCESS_WRITABLE","features":[518]},{"name":"VIRTUAL_DISK_MAXIMUM_CHANGE_TRACKING_ID_LENGTH","features":[518]},{"name":"VIRTUAL_DISK_PROGRESS","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_ISO","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_UNKNOWN","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHD","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDSET","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE_DEVICE_VHDX","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_MICROSOFT","features":[518]},{"name":"VIRTUAL_STORAGE_TYPE_VENDOR_UNKNOWN","features":[518]}],"526":[{"name":"BeepAlarm","features":[519]},{"name":"BlinkLight","features":[519]},{"name":"CHANGE_ATTRIBUTES_PARAMETERS","features":[305,519]},{"name":"CHANGE_PARTITION_TYPE_PARAMETERS","features":[519]},{"name":"CLSID_VdsLoader","features":[519]},{"name":"CLSID_VdsService","features":[519]},{"name":"CREATE_PARTITION_PARAMETERS","features":[305,519]},{"name":"GPT_PARTITION_NAME_LENGTH","features":[519]},{"name":"IEnumVdsObject","features":[519]},{"name":"IVdsAdmin","features":[519]},{"name":"IVdsAdvancedDisk","features":[519]},{"name":"IVdsAdvancedDisk2","features":[519]},{"name":"IVdsAdvancedDisk3","features":[519]},{"name":"IVdsAdviseSink","features":[519]},{"name":"IVdsAsync","features":[519]},{"name":"IVdsController","features":[519]},{"name":"IVdsControllerControllerPort","features":[519]},{"name":"IVdsControllerPort","features":[519]},{"name":"IVdsCreatePartitionEx","features":[519]},{"name":"IVdsDisk","features":[519]},{"name":"IVdsDisk2","features":[519]},{"name":"IVdsDisk3","features":[519]},{"name":"IVdsDiskOnline","features":[519]},{"name":"IVdsDiskPartitionMF","features":[519]},{"name":"IVdsDiskPartitionMF2","features":[519]},{"name":"IVdsDrive","features":[519]},{"name":"IVdsDrive2","features":[519]},{"name":"IVdsHbaPort","features":[519]},{"name":"IVdsHwProvider","features":[519]},{"name":"IVdsHwProviderPrivate","features":[519]},{"name":"IVdsHwProviderPrivateMpio","features":[519]},{"name":"IVdsHwProviderStoragePools","features":[519]},{"name":"IVdsHwProviderType","features":[519]},{"name":"IVdsHwProviderType2","features":[519]},{"name":"IVdsIscsiInitiatorAdapter","features":[519]},{"name":"IVdsIscsiInitiatorPortal","features":[519]},{"name":"IVdsIscsiPortal","features":[519]},{"name":"IVdsIscsiPortalGroup","features":[519]},{"name":"IVdsIscsiPortalLocal","features":[519]},{"name":"IVdsIscsiTarget","features":[519]},{"name":"IVdsLun","features":[519]},{"name":"IVdsLun2","features":[519]},{"name":"IVdsLunControllerPorts","features":[519]},{"name":"IVdsLunIscsi","features":[519]},{"name":"IVdsLunMpio","features":[519]},{"name":"IVdsLunNaming","features":[519]},{"name":"IVdsLunNumber","features":[519]},{"name":"IVdsLunPlex","features":[519]},{"name":"IVdsMaintenance","features":[519]},{"name":"IVdsOpenVDisk","features":[519]},{"name":"IVdsPack","features":[519]},{"name":"IVdsPack2","features":[519]},{"name":"IVdsProvider","features":[519]},{"name":"IVdsProviderPrivate","features":[519]},{"name":"IVdsProviderSupport","features":[519]},{"name":"IVdsRemovable","features":[519]},{"name":"IVdsService","features":[519]},{"name":"IVdsServiceHba","features":[519]},{"name":"IVdsServiceInitialization","features":[519]},{"name":"IVdsServiceIscsi","features":[519]},{"name":"IVdsServiceLoader","features":[519]},{"name":"IVdsServiceSAN","features":[519]},{"name":"IVdsServiceSw","features":[519]},{"name":"IVdsServiceUninstallDisk","features":[519]},{"name":"IVdsStoragePool","features":[519]},{"name":"IVdsSubSystem","features":[519]},{"name":"IVdsSubSystem2","features":[519]},{"name":"IVdsSubSystemImportTarget","features":[519]},{"name":"IVdsSubSystemInterconnect","features":[519]},{"name":"IVdsSubSystemIscsi","features":[519]},{"name":"IVdsSubSystemNaming","features":[519]},{"name":"IVdsSwProvider","features":[519]},{"name":"IVdsVDisk","features":[519]},{"name":"IVdsVdProvider","features":[519]},{"name":"IVdsVolume","features":[519]},{"name":"IVdsVolume2","features":[519]},{"name":"IVdsVolumeMF","features":[519]},{"name":"IVdsVolumeMF2","features":[519]},{"name":"IVdsVolumeMF3","features":[519]},{"name":"IVdsVolumeOnline","features":[519]},{"name":"IVdsVolumePlex","features":[519]},{"name":"IVdsVolumeShrink","features":[519]},{"name":"MAX_FS_ALLOWED_CLUSTER_SIZES_SIZE","features":[519]},{"name":"MAX_FS_FORMAT_SUPPORT_NAME_SIZE","features":[519]},{"name":"MAX_FS_NAME_SIZE","features":[519]},{"name":"Ping","features":[519]},{"name":"SpinDown","features":[519]},{"name":"SpinUp","features":[519]},{"name":"VDSBusType1394","features":[519]},{"name":"VDSBusTypeAta","features":[519]},{"name":"VDSBusTypeAtapi","features":[519]},{"name":"VDSBusTypeFibre","features":[519]},{"name":"VDSBusTypeFileBackedVirtual","features":[519]},{"name":"VDSBusTypeMax","features":[519]},{"name":"VDSBusTypeMaxReserved","features":[519]},{"name":"VDSBusTypeMmc","features":[519]},{"name":"VDSBusTypeNVMe","features":[519]},{"name":"VDSBusTypeRAID","features":[519]},{"name":"VDSBusTypeSas","features":[519]},{"name":"VDSBusTypeSata","features":[519]},{"name":"VDSBusTypeScm","features":[519]},{"name":"VDSBusTypeScsi","features":[519]},{"name":"VDSBusTypeSd","features":[519]},{"name":"VDSBusTypeSpaces","features":[519]},{"name":"VDSBusTypeSsa","features":[519]},{"name":"VDSBusTypeUfs","features":[519]},{"name":"VDSBusTypeUnknown","features":[519]},{"name":"VDSBusTypeUsb","features":[519]},{"name":"VDSBusTypeVirtual","features":[519]},{"name":"VDSBusTypeiScsi","features":[519]},{"name":"VDSDiskOfflineReasonCollision","features":[519]},{"name":"VDSDiskOfflineReasonDIScan","features":[519]},{"name":"VDSDiskOfflineReasonLostDataPersistence","features":[519]},{"name":"VDSDiskOfflineReasonNone","features":[519]},{"name":"VDSDiskOfflineReasonPolicy","features":[519]},{"name":"VDSDiskOfflineReasonRedundantPath","features":[519]},{"name":"VDSDiskOfflineReasonResourceExhaustion","features":[519]},{"name":"VDSDiskOfflineReasonSnapshot","features":[519]},{"name":"VDSDiskOfflineReasonWriteFailure","features":[519]},{"name":"VDSStorageIdCodeSetAscii","features":[519]},{"name":"VDSStorageIdCodeSetBinary","features":[519]},{"name":"VDSStorageIdCodeSetReserved","features":[519]},{"name":"VDSStorageIdCodeSetUtf8","features":[519]},{"name":"VDSStorageIdTypeEUI64","features":[519]},{"name":"VDSStorageIdTypeFCPHName","features":[519]},{"name":"VDSStorageIdTypeLogicalUnitGroup","features":[519]},{"name":"VDSStorageIdTypeMD5LogicalUnitIdentifier","features":[519]},{"name":"VDSStorageIdTypePortRelative","features":[519]},{"name":"VDSStorageIdTypeScsiNameString","features":[519]},{"name":"VDSStorageIdTypeTargetPortGroup","features":[519]},{"name":"VDSStorageIdTypeVendorId","features":[519]},{"name":"VDSStorageIdTypeVendorSpecific","features":[519]},{"name":"VDS_ADVANCEDDISK_PROP","features":[519]},{"name":"VDS_ASYNCOUT_ADDLUNPLEX","features":[519]},{"name":"VDS_ASYNCOUT_ADDPORTAL","features":[519]},{"name":"VDS_ASYNCOUT_ADDVOLUMEPLEX","features":[519]},{"name":"VDS_ASYNCOUT_ATTACH_VDISK","features":[519]},{"name":"VDS_ASYNCOUT_BREAKVOLUMEPLEX","features":[519]},{"name":"VDS_ASYNCOUT_CLEAN","features":[519]},{"name":"VDS_ASYNCOUT_COMPACT_VDISK","features":[519]},{"name":"VDS_ASYNCOUT_CREATELUN","features":[519]},{"name":"VDS_ASYNCOUT_CREATEPARTITION","features":[519]},{"name":"VDS_ASYNCOUT_CREATEPORTALGROUP","features":[519]},{"name":"VDS_ASYNCOUT_CREATETARGET","features":[519]},{"name":"VDS_ASYNCOUT_CREATEVOLUME","features":[519]},{"name":"VDS_ASYNCOUT_CREATE_VDISK","features":[519]},{"name":"VDS_ASYNCOUT_DELETEPORTALGROUP","features":[519]},{"name":"VDS_ASYNCOUT_DELETETARGET","features":[519]},{"name":"VDS_ASYNCOUT_EXPAND_VDISK","features":[519]},{"name":"VDS_ASYNCOUT_EXTENDLUN","features":[519]},{"name":"VDS_ASYNCOUT_EXTENDVOLUME","features":[519]},{"name":"VDS_ASYNCOUT_FORMAT","features":[519]},{"name":"VDS_ASYNCOUT_LOGINTOTARGET","features":[519]},{"name":"VDS_ASYNCOUT_LOGOUTFROMTARGET","features":[519]},{"name":"VDS_ASYNCOUT_MERGE_VDISK","features":[519]},{"name":"VDS_ASYNCOUT_RECOVERLUN","features":[519]},{"name":"VDS_ASYNCOUT_RECOVERPACK","features":[519]},{"name":"VDS_ASYNCOUT_REMOVELUNPLEX","features":[519]},{"name":"VDS_ASYNCOUT_REMOVEPORTAL","features":[519]},{"name":"VDS_ASYNCOUT_REMOVEVOLUMEPLEX","features":[519]},{"name":"VDS_ASYNCOUT_REPAIRVOLUMEPLEX","features":[519]},{"name":"VDS_ASYNCOUT_REPLACEDISK","features":[519]},{"name":"VDS_ASYNCOUT_SHRINKLUN","features":[519]},{"name":"VDS_ASYNCOUT_SHRINKVOLUME","features":[519]},{"name":"VDS_ASYNCOUT_UNKNOWN","features":[519]},{"name":"VDS_ASYNC_OUTPUT","features":[519]},{"name":"VDS_ASYNC_OUTPUT_TYPE","features":[519]},{"name":"VDS_ATTACH_VIRTUAL_DISK_FLAG_USE_FILE_ACL","features":[519]},{"name":"VDS_CONTROLLER_NOTIFICATION","features":[519]},{"name":"VDS_CONTROLLER_PROP","features":[519]},{"name":"VDS_CONTROLLER_STATUS","features":[519]},{"name":"VDS_CREATE_VDISK_PARAMETERS","features":[519]},{"name":"VDS_CS_FAILED","features":[519]},{"name":"VDS_CS_NOT_READY","features":[519]},{"name":"VDS_CS_OFFLINE","features":[519]},{"name":"VDS_CS_ONLINE","features":[519]},{"name":"VDS_CS_REMOVED","features":[519]},{"name":"VDS_CS_UNKNOWN","features":[519]},{"name":"VDS_DET_CLUSTER","features":[519]},{"name":"VDS_DET_DATA","features":[519]},{"name":"VDS_DET_ESP","features":[519]},{"name":"VDS_DET_FREE","features":[519]},{"name":"VDS_DET_LDM","features":[519]},{"name":"VDS_DET_MSR","features":[519]},{"name":"VDS_DET_OEM","features":[519]},{"name":"VDS_DET_UNKNOWN","features":[519]},{"name":"VDS_DET_UNUSABLE","features":[519]},{"name":"VDS_DF_AUDIO_CD","features":[519]},{"name":"VDS_DF_BOOT_DISK","features":[519]},{"name":"VDS_DF_BOOT_FROM_DISK","features":[519]},{"name":"VDS_DF_CLUSTERED","features":[519]},{"name":"VDS_DF_CRASHDUMP_DISK","features":[519]},{"name":"VDS_DF_CURRENT_READ_ONLY","features":[519]},{"name":"VDS_DF_DYNAMIC","features":[519]},{"name":"VDS_DF_HAS_ARC_PATH","features":[519]},{"name":"VDS_DF_HIBERNATIONFILE_DISK","features":[519]},{"name":"VDS_DF_HOTSPARE","features":[519]},{"name":"VDS_DF_MASKED","features":[519]},{"name":"VDS_DF_PAGEFILE_DISK","features":[519]},{"name":"VDS_DF_READ_ONLY","features":[519]},{"name":"VDS_DF_REFS_NOT_SUPPORTED","features":[519]},{"name":"VDS_DF_RESERVE_CAPABLE","features":[519]},{"name":"VDS_DF_STYLE_CONVERTIBLE","features":[519]},{"name":"VDS_DF_SYSTEM_DISK","features":[519]},{"name":"VDS_DISK_EXTENT","features":[519]},{"name":"VDS_DISK_EXTENT_TYPE","features":[519]},{"name":"VDS_DISK_FLAG","features":[519]},{"name":"VDS_DISK_FREE_EXTENT","features":[519]},{"name":"VDS_DISK_NOTIFICATION","features":[519]},{"name":"VDS_DISK_OFFLINE_REASON","features":[519]},{"name":"VDS_DISK_PROP","features":[519]},{"name":"VDS_DISK_PROP2","features":[519]},{"name":"VDS_DISK_STATUS","features":[519]},{"name":"VDS_DLF_NON_PERSISTENT","features":[519]},{"name":"VDS_DRF_ASSIGNED","features":[519]},{"name":"VDS_DRF_HOTSPARE","features":[519]},{"name":"VDS_DRF_HOTSPARE_IN_USE","features":[519]},{"name":"VDS_DRF_HOTSPARE_STANDBY","features":[519]},{"name":"VDS_DRF_UNASSIGNED","features":[519]},{"name":"VDS_DRIVE_EXTENT","features":[305,519]},{"name":"VDS_DRIVE_FLAG","features":[519]},{"name":"VDS_DRIVE_LETTER_FLAG","features":[519]},{"name":"VDS_DRIVE_LETTER_NOTIFICATION","features":[519]},{"name":"VDS_DRIVE_LETTER_PROP","features":[305,519]},{"name":"VDS_DRIVE_NOTIFICATION","features":[519]},{"name":"VDS_DRIVE_PROP","features":[519]},{"name":"VDS_DRIVE_PROP2","features":[519]},{"name":"VDS_DRIVE_STATUS","features":[519]},{"name":"VDS_DRS_FAILED","features":[519]},{"name":"VDS_DRS_NOT_READY","features":[519]},{"name":"VDS_DRS_OFFLINE","features":[519]},{"name":"VDS_DRS_ONLINE","features":[519]},{"name":"VDS_DRS_REMOVED","features":[519]},{"name":"VDS_DRS_UNKNOWN","features":[519]},{"name":"VDS_DS_FAILED","features":[519]},{"name":"VDS_DS_MISSING","features":[519]},{"name":"VDS_DS_NOT_READY","features":[519]},{"name":"VDS_DS_NO_MEDIA","features":[519]},{"name":"VDS_DS_OFFLINE","features":[519]},{"name":"VDS_DS_ONLINE","features":[519]},{"name":"VDS_DS_UNKNOWN","features":[519]},{"name":"VDS_E_ACCESS_DENIED","features":[519]},{"name":"VDS_E_ACTIVE_PARTITION","features":[519]},{"name":"VDS_E_ADDRESSES_INCOMPLETELY_SET","features":[519]},{"name":"VDS_E_ALIGN_BEYOND_FIRST_CYLINDER","features":[519]},{"name":"VDS_E_ALIGN_IS_ZERO","features":[519]},{"name":"VDS_E_ALIGN_NOT_A_POWER_OF_TWO","features":[519]},{"name":"VDS_E_ALIGN_NOT_SECTOR_SIZE_MULTIPLE","features":[519]},{"name":"VDS_E_ALIGN_NOT_ZERO","features":[519]},{"name":"VDS_E_ALREADY_REGISTERED","features":[519]},{"name":"VDS_E_ANOTHER_CALL_IN_PROGRESS","features":[519]},{"name":"VDS_E_ASSOCIATED_LUNS_EXIST","features":[519]},{"name":"VDS_E_ASSOCIATED_PORTALS_EXIST","features":[519]},{"name":"VDS_E_ASYNC_OBJECT_FAILURE","features":[519]},{"name":"VDS_E_BAD_BOOT_DISK","features":[519]},{"name":"VDS_E_BAD_COOKIE","features":[519]},{"name":"VDS_E_BAD_LABEL","features":[519]},{"name":"VDS_E_BAD_PNP_MESSAGE","features":[519]},{"name":"VDS_E_BAD_PROVIDER_DATA","features":[519]},{"name":"VDS_E_BAD_REVISION_NUMBER","features":[519]},{"name":"VDS_E_BLOCK_CLUSTERED","features":[519]},{"name":"VDS_E_BOOT_DISK","features":[519]},{"name":"VDS_E_BOOT_PAGEFILE_DRIVE_LETTER","features":[519]},{"name":"VDS_E_BOOT_PARTITION_NUMBER_CHANGE","features":[519]},{"name":"VDS_E_CACHE_CORRUPT","features":[519]},{"name":"VDS_E_CANCEL_TOO_LATE","features":[519]},{"name":"VDS_E_CANNOT_CLEAR_VOLUME_FLAG","features":[519]},{"name":"VDS_E_CANNOT_EXTEND","features":[519]},{"name":"VDS_E_CANNOT_SHRINK","features":[519]},{"name":"VDS_E_CANT_INVALIDATE_FVE","features":[519]},{"name":"VDS_E_CANT_QUICK_FORMAT","features":[519]},{"name":"VDS_E_CLEAN_WITH_BOOTBACKING","features":[519]},{"name":"VDS_E_CLEAN_WITH_CRITICAL","features":[519]},{"name":"VDS_E_CLEAN_WITH_DATA","features":[519]},{"name":"VDS_E_CLEAN_WITH_OEM","features":[519]},{"name":"VDS_E_CLUSTER_COUNT_BEYOND_32BITS","features":[519]},{"name":"VDS_E_CLUSTER_SIZE_TOO_BIG","features":[519]},{"name":"VDS_E_CLUSTER_SIZE_TOO_SMALL","features":[519]},{"name":"VDS_E_COMPRESSION_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_CONFIG_LIMIT","features":[519]},{"name":"VDS_E_CORRUPT_EXTENT_INFO","features":[519]},{"name":"VDS_E_CORRUPT_NOTIFICATION_INFO","features":[519]},{"name":"VDS_E_CORRUPT_PARTITION_INFO","features":[519]},{"name":"VDS_E_CORRUPT_VOLUME_INFO","features":[519]},{"name":"VDS_E_CRASHDUMP_DISK","features":[519]},{"name":"VDS_E_CRITICAL_PLEX","features":[519]},{"name":"VDS_E_DELETE_WITH_BOOTBACKING","features":[519]},{"name":"VDS_E_DELETE_WITH_CRITICAL","features":[519]},{"name":"VDS_E_DEVICE_IN_USE","features":[519]},{"name":"VDS_E_DISK_BEING_CLEANED","features":[519]},{"name":"VDS_E_DISK_CONFIGURATION_CORRUPTED","features":[519]},{"name":"VDS_E_DISK_CONFIGURATION_NOT_IN_SYNC","features":[519]},{"name":"VDS_E_DISK_CONFIGURATION_UPDATE_FAILED","features":[519]},{"name":"VDS_E_DISK_DYNAMIC","features":[519]},{"name":"VDS_E_DISK_HAS_BANDS","features":[519]},{"name":"VDS_E_DISK_IN_USE_BY_VOLUME","features":[519]},{"name":"VDS_E_DISK_IO_FAILING","features":[519]},{"name":"VDS_E_DISK_IS_OFFLINE","features":[519]},{"name":"VDS_E_DISK_IS_READ_ONLY","features":[519]},{"name":"VDS_E_DISK_LAYOUT_PARTITIONS_TOO_SMALL","features":[519]},{"name":"VDS_E_DISK_NOT_CONVERTIBLE","features":[519]},{"name":"VDS_E_DISK_NOT_CONVERTIBLE_SIZE","features":[519]},{"name":"VDS_E_DISK_NOT_EMPTY","features":[519]},{"name":"VDS_E_DISK_NOT_FOUND_IN_PACK","features":[519]},{"name":"VDS_E_DISK_NOT_IMPORTED","features":[519]},{"name":"VDS_E_DISK_NOT_INITIALIZED","features":[519]},{"name":"VDS_E_DISK_NOT_LOADED_TO_CACHE","features":[519]},{"name":"VDS_E_DISK_NOT_MISSING","features":[519]},{"name":"VDS_E_DISK_NOT_OFFLINE","features":[519]},{"name":"VDS_E_DISK_NOT_ONLINE","features":[519]},{"name":"VDS_E_DISK_PNP_REG_CORRUPT","features":[519]},{"name":"VDS_E_DISK_REMOVEABLE","features":[519]},{"name":"VDS_E_DISK_REMOVEABLE_NOT_EMPTY","features":[519]},{"name":"VDS_E_DISTINCT_VOLUME","features":[519]},{"name":"VDS_E_DMADMIN_CORRUPT_NOTIFICATION","features":[519]},{"name":"VDS_E_DMADMIN_METHOD_CALL_FAILED","features":[519]},{"name":"VDS_E_DMADMIN_SERVICE_CONNECTION_FAILED","features":[519]},{"name":"VDS_E_DRIVER_INTERNAL_ERROR","features":[519]},{"name":"VDS_E_DRIVER_INVALID_PARAM","features":[519]},{"name":"VDS_E_DRIVER_NO_PACK_NAME","features":[519]},{"name":"VDS_E_DRIVER_OBJECT_NOT_FOUND","features":[519]},{"name":"VDS_E_DRIVE_LETTER_NOT_FREE","features":[519]},{"name":"VDS_E_DUPLICATE_DISK","features":[519]},{"name":"VDS_E_DUP_EMPTY_PACK_GUID","features":[519]},{"name":"VDS_E_DYNAMIC_DISKS_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_EXTEND_FILE_SYSTEM_FAILED","features":[519]},{"name":"VDS_E_EXTEND_MULTIPLE_DISKS_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_EXTEND_TOO_MANY_CLUSTERS","features":[519]},{"name":"VDS_E_EXTEND_UNKNOWN_FILESYSTEM","features":[519]},{"name":"VDS_E_EXTENT_EXCEEDS_DISK_FREE_SPACE","features":[519]},{"name":"VDS_E_EXTENT_SIZE_LESS_THAN_MIN","features":[519]},{"name":"VDS_E_FAILED_TO_OFFLINE_DISK","features":[519]},{"name":"VDS_E_FAILED_TO_ONLINE_DISK","features":[519]},{"name":"VDS_E_FAT32_FORMAT_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_FAT_FORMAT_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_FAULT_TOLERANT_DISKS_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_FLAG_ALREADY_SET","features":[519]},{"name":"VDS_E_FORMAT_CRITICAL","features":[519]},{"name":"VDS_E_FORMAT_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_FORMAT_WITH_BOOTBACKING","features":[519]},{"name":"VDS_E_FS_NOT_DETERMINED","features":[519]},{"name":"VDS_E_GET_SAN_POLICY","features":[519]},{"name":"VDS_E_GPT_ATTRIBUTES_INVALID","features":[519]},{"name":"VDS_E_HIBERNATION_FILE_DISK","features":[519]},{"name":"VDS_E_IA64_BOOT_MIRRORED_TO_MBR","features":[519]},{"name":"VDS_E_IMPORT_SET_INCOMPLETE","features":[519]},{"name":"VDS_E_INCOMPATIBLE_FILE_SYSTEM","features":[519]},{"name":"VDS_E_INCOMPATIBLE_MEDIA","features":[519]},{"name":"VDS_E_INCORRECT_BOOT_VOLUME_EXTENT_INFO","features":[519]},{"name":"VDS_E_INCORRECT_SYSTEM_VOLUME_EXTENT_INFO","features":[519]},{"name":"VDS_E_INITIALIZED_FAILED","features":[519]},{"name":"VDS_E_INITIALIZE_NOT_CALLED","features":[519]},{"name":"VDS_E_INITIATOR_ADAPTER_NOT_FOUND","features":[519]},{"name":"VDS_E_INITIATOR_SPECIFIC_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_INTERNAL_ERROR","features":[519]},{"name":"VDS_E_INVALID_BLOCK_SIZE","features":[519]},{"name":"VDS_E_INVALID_DISK","features":[519]},{"name":"VDS_E_INVALID_DISK_COUNT","features":[519]},{"name":"VDS_E_INVALID_DRIVE_LETTER","features":[519]},{"name":"VDS_E_INVALID_DRIVE_LETTER_COUNT","features":[519]},{"name":"VDS_E_INVALID_ENUMERATOR","features":[519]},{"name":"VDS_E_INVALID_EXTENT_COUNT","features":[519]},{"name":"VDS_E_INVALID_FS_FLAG","features":[519]},{"name":"VDS_E_INVALID_FS_TYPE","features":[519]},{"name":"VDS_E_INVALID_IP_ADDRESS","features":[519]},{"name":"VDS_E_INVALID_ISCSI_PATH","features":[519]},{"name":"VDS_E_INVALID_ISCSI_TARGET_NAME","features":[519]},{"name":"VDS_E_INVALID_MEMBER_COUNT","features":[519]},{"name":"VDS_E_INVALID_MEMBER_ORDER","features":[519]},{"name":"VDS_E_INVALID_OBJECT_TYPE","features":[519]},{"name":"VDS_E_INVALID_OPERATION","features":[519]},{"name":"VDS_E_INVALID_PACK","features":[519]},{"name":"VDS_E_INVALID_PARTITION_LAYOUT","features":[519]},{"name":"VDS_E_INVALID_PARTITION_STYLE","features":[519]},{"name":"VDS_E_INVALID_PARTITION_TYPE","features":[519]},{"name":"VDS_E_INVALID_PATH","features":[519]},{"name":"VDS_E_INVALID_PLEX_BLOCK_SIZE","features":[519]},{"name":"VDS_E_INVALID_PLEX_COUNT","features":[519]},{"name":"VDS_E_INVALID_PLEX_GUID","features":[519]},{"name":"VDS_E_INVALID_PLEX_ORDER","features":[519]},{"name":"VDS_E_INVALID_PLEX_TYPE","features":[519]},{"name":"VDS_E_INVALID_PORT_PATH","features":[519]},{"name":"VDS_E_INVALID_PROVIDER_CLSID","features":[519]},{"name":"VDS_E_INVALID_PROVIDER_ID","features":[519]},{"name":"VDS_E_INVALID_PROVIDER_NAME","features":[519]},{"name":"VDS_E_INVALID_PROVIDER_TYPE","features":[519]},{"name":"VDS_E_INVALID_PROVIDER_VERSION_GUID","features":[519]},{"name":"VDS_E_INVALID_PROVIDER_VERSION_STRING","features":[519]},{"name":"VDS_E_INVALID_QUERY_PROVIDER_FLAG","features":[519]},{"name":"VDS_E_INVALID_SECTOR_SIZE","features":[519]},{"name":"VDS_E_INVALID_SERVICE_FLAG","features":[519]},{"name":"VDS_E_INVALID_SHRINK_SIZE","features":[519]},{"name":"VDS_E_INVALID_SPACE","features":[519]},{"name":"VDS_E_INVALID_STATE","features":[519]},{"name":"VDS_E_INVALID_STRIPE_SIZE","features":[519]},{"name":"VDS_E_INVALID_VOLUME_FLAG","features":[519]},{"name":"VDS_E_INVALID_VOLUME_LENGTH","features":[519]},{"name":"VDS_E_INVALID_VOLUME_TYPE","features":[519]},{"name":"VDS_E_IO_ERROR","features":[519]},{"name":"VDS_E_ISCSI_CHAP_SECRET","features":[519]},{"name":"VDS_E_ISCSI_GET_IKE_INFO","features":[519]},{"name":"VDS_E_ISCSI_GROUP_PRESHARE_KEY","features":[519]},{"name":"VDS_E_ISCSI_INITIATOR_NODE_NAME","features":[519]},{"name":"VDS_E_ISCSI_LOGIN_FAILED","features":[519]},{"name":"VDS_E_ISCSI_LOGOUT_FAILED","features":[519]},{"name":"VDS_E_ISCSI_LOGOUT_INCOMPLETE","features":[519]},{"name":"VDS_E_ISCSI_SESSION_NOT_FOUND","features":[519]},{"name":"VDS_E_ISCSI_SET_IKE_INFO","features":[519]},{"name":"VDS_E_LAST_VALID_DISK","features":[519]},{"name":"VDS_E_LBN_REMAP_ENABLED_FLAG","features":[519]},{"name":"VDS_E_LDM_TIMEOUT","features":[519]},{"name":"VDS_E_LEGACY_VOLUME_FORMAT","features":[519]},{"name":"VDS_E_LOG_UPDATE","features":[519]},{"name":"VDS_E_LUN_DISK_FAILED","features":[519]},{"name":"VDS_E_LUN_DISK_MISSING","features":[519]},{"name":"VDS_E_LUN_DISK_NOT_READY","features":[519]},{"name":"VDS_E_LUN_DISK_NO_MEDIA","features":[519]},{"name":"VDS_E_LUN_DISK_READ_ONLY","features":[519]},{"name":"VDS_E_LUN_DYNAMIC","features":[519]},{"name":"VDS_E_LUN_DYNAMIC_OFFLINE","features":[519]},{"name":"VDS_E_LUN_FAILED","features":[519]},{"name":"VDS_E_LUN_NOT_READY","features":[519]},{"name":"VDS_E_LUN_OFFLINE","features":[519]},{"name":"VDS_E_LUN_SHRINK_GPT_HEADER","features":[519]},{"name":"VDS_E_LUN_UPDATE_DISK","features":[519]},{"name":"VDS_E_MAX_USABLE_MBR","features":[519]},{"name":"VDS_E_MEDIA_WRITE_PROTECTED","features":[519]},{"name":"VDS_E_MEMBER_IS_HEALTHY","features":[519]},{"name":"VDS_E_MEMBER_MISSING","features":[519]},{"name":"VDS_E_MEMBER_REGENERATING","features":[519]},{"name":"VDS_E_MEMBER_SIZE_INVALID","features":[519]},{"name":"VDS_E_MIGRATE_OPEN_VOLUME","features":[519]},{"name":"VDS_E_MIRROR_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_MISSING_DISK","features":[519]},{"name":"VDS_E_MULTIPLE_DISCOVERY_DOMAINS","features":[519]},{"name":"VDS_E_MULTIPLE_PACKS","features":[519]},{"name":"VDS_E_NAME_NOT_UNIQUE","features":[519]},{"name":"VDS_E_NON_CONTIGUOUS_DATA_PARTITIONS","features":[519]},{"name":"VDS_E_NOT_AN_UNALLOCATED_DISK","features":[519]},{"name":"VDS_E_NOT_ENOUGH_DRIVE","features":[519]},{"name":"VDS_E_NOT_ENOUGH_SPACE","features":[519]},{"name":"VDS_E_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_NO_DISCOVERY_DOMAIN","features":[519]},{"name":"VDS_E_NO_DISKS_FOUND","features":[519]},{"name":"VDS_E_NO_DISK_PATHNAME","features":[519]},{"name":"VDS_E_NO_DRIVELETTER_FLAG","features":[519]},{"name":"VDS_E_NO_EXTENTS_FOR_PLEX","features":[519]},{"name":"VDS_E_NO_EXTENTS_FOR_VOLUME","features":[519]},{"name":"VDS_E_NO_FREE_SPACE","features":[519]},{"name":"VDS_E_NO_HEALTHY_DISKS","features":[519]},{"name":"VDS_E_NO_IMPORT_TARGET","features":[519]},{"name":"VDS_E_NO_MAINTENANCE_MODE","features":[519]},{"name":"VDS_E_NO_MEDIA","features":[519]},{"name":"VDS_E_NO_PNP_DISK_ARRIVE","features":[519]},{"name":"VDS_E_NO_PNP_DISK_REMOVE","features":[519]},{"name":"VDS_E_NO_PNP_VOLUME_ARRIVE","features":[519]},{"name":"VDS_E_NO_PNP_VOLUME_REMOVE","features":[519]},{"name":"VDS_E_NO_POOL","features":[519]},{"name":"VDS_E_NO_POOL_CREATED","features":[519]},{"name":"VDS_E_NO_SOFTWARE_PROVIDERS_LOADED","features":[519]},{"name":"VDS_E_NO_VALID_LOG_COPIES","features":[519]},{"name":"VDS_E_NO_VOLUME_LAYOUT","features":[519]},{"name":"VDS_E_NO_VOLUME_PATHNAME","features":[519]},{"name":"VDS_E_NTFS_FORMAT_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_OBJECT_DELETED","features":[519]},{"name":"VDS_E_OBJECT_EXISTS","features":[519]},{"name":"VDS_E_OBJECT_NOT_FOUND","features":[519]},{"name":"VDS_E_OBJECT_OUT_OF_SYNC","features":[519]},{"name":"VDS_E_OBJECT_STATUS_FAILED","features":[519]},{"name":"VDS_E_OFFLINE_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_ONE_EXTENT_PER_DISK","features":[519]},{"name":"VDS_E_ONLINE_PACK_EXISTS","features":[519]},{"name":"VDS_E_OPERATION_CANCELED","features":[519]},{"name":"VDS_E_OPERATION_DENIED","features":[519]},{"name":"VDS_E_OPERATION_PENDING","features":[519]},{"name":"VDS_E_PACK_NAME_INVALID","features":[519]},{"name":"VDS_E_PACK_NOT_FOUND","features":[519]},{"name":"VDS_E_PACK_OFFLINE","features":[519]},{"name":"VDS_E_PACK_ONLINE","features":[519]},{"name":"VDS_E_PAGEFILE_DISK","features":[519]},{"name":"VDS_E_PARTITION_LDM","features":[519]},{"name":"VDS_E_PARTITION_LIMIT_REACHED","features":[519]},{"name":"VDS_E_PARTITION_MSR","features":[519]},{"name":"VDS_E_PARTITION_NON_DATA","features":[519]},{"name":"VDS_E_PARTITION_NOT_CYLINDER_ALIGNED","features":[519]},{"name":"VDS_E_PARTITION_NOT_EMPTY","features":[519]},{"name":"VDS_E_PARTITION_NOT_OEM","features":[519]},{"name":"VDS_E_PARTITION_OF_UNKNOWN_TYPE","features":[519]},{"name":"VDS_E_PARTITION_PROTECTED","features":[519]},{"name":"VDS_E_PARTITION_STYLE_MISMATCH","features":[519]},{"name":"VDS_E_PATH_NOT_FOUND","features":[519]},{"name":"VDS_E_PLEX_IS_HEALTHY","features":[519]},{"name":"VDS_E_PLEX_LAST_ACTIVE","features":[519]},{"name":"VDS_E_PLEX_MISSING","features":[519]},{"name":"VDS_E_PLEX_NOT_LOADED_TO_CACHE","features":[519]},{"name":"VDS_E_PLEX_REGENERATING","features":[519]},{"name":"VDS_E_PLEX_SIZE_INVALID","features":[519]},{"name":"VDS_E_PROVIDER_CACHE_CORRUPT","features":[519]},{"name":"VDS_E_PROVIDER_CACHE_OUTOFSYNC","features":[519]},{"name":"VDS_E_PROVIDER_EXITING","features":[519]},{"name":"VDS_E_PROVIDER_FAILURE","features":[519]},{"name":"VDS_E_PROVIDER_INITIALIZATION_FAILED","features":[519]},{"name":"VDS_E_PROVIDER_INTERNAL_ERROR","features":[519]},{"name":"VDS_E_PROVIDER_TYPE_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_PROVIDER_VOL_DEVICE_NAME_NOT_FOUND","features":[519]},{"name":"VDS_E_PROVIDER_VOL_OPEN","features":[519]},{"name":"VDS_E_RAID5_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_READONLY","features":[519]},{"name":"VDS_E_REBOOT_REQUIRED","features":[519]},{"name":"VDS_E_REFS_FORMAT_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_REPAIR_VOLUMESTATE","features":[519]},{"name":"VDS_E_REQUIRES_CONTIGUOUS_DISK_SPACE","features":[519]},{"name":"VDS_E_RETRY","features":[519]},{"name":"VDS_E_REVERT_ON_CLOSE","features":[519]},{"name":"VDS_E_REVERT_ON_CLOSE_MISMATCH","features":[519]},{"name":"VDS_E_REVERT_ON_CLOSE_SET","features":[519]},{"name":"VDS_E_SECTOR_SIZE_ERROR","features":[519]},{"name":"VDS_E_SECURITY_INCOMPLETELY_SET","features":[519]},{"name":"VDS_E_SET_SAN_POLICY","features":[519]},{"name":"VDS_E_SET_TUNNEL_MODE_OUTER_ADDRESS","features":[519]},{"name":"VDS_E_SHRINK_DIRTY_VOLUME","features":[519]},{"name":"VDS_E_SHRINK_EXTEND_UNALIGNED","features":[519]},{"name":"VDS_E_SHRINK_IN_PROGRESS","features":[519]},{"name":"VDS_E_SHRINK_LUN_NOT_UNMASKED","features":[519]},{"name":"VDS_E_SHRINK_OVER_DATA","features":[519]},{"name":"VDS_E_SHRINK_SIZE_LESS_THAN_MIN","features":[519]},{"name":"VDS_E_SHRINK_SIZE_TOO_BIG","features":[519]},{"name":"VDS_E_SHRINK_UNKNOWN_FILESYSTEM","features":[519]},{"name":"VDS_E_SHRINK_USER_CANCELLED","features":[519]},{"name":"VDS_E_SOURCE_IS_TARGET_PACK","features":[519]},{"name":"VDS_E_SUBSYSTEM_ID_IS_NULL","features":[519]},{"name":"VDS_E_SYSTEM_DISK","features":[519]},{"name":"VDS_E_TARGET_PACK_NOT_EMPTY","features":[519]},{"name":"VDS_E_TARGET_PORTAL_NOT_FOUND","features":[519]},{"name":"VDS_E_TARGET_SPECIFIC_NOT_SUPPORTED","features":[519]},{"name":"VDS_E_TIMEOUT","features":[519]},{"name":"VDS_E_UNABLE_TO_FIND_BOOT_DISK","features":[519]},{"name":"VDS_E_UNABLE_TO_FIND_SYSTEM_DISK","features":[519]},{"name":"VDS_E_UNEXPECTED_DISK_LAYOUT_CHANGE","features":[519]},{"name":"VDS_E_UNRECOVERABLE_ERROR","features":[519]},{"name":"VDS_E_UNRECOVERABLE_PROVIDER_ERROR","features":[519]},{"name":"VDS_E_VDISK_INVALID_OP_STATE","features":[519]},{"name":"VDS_E_VDISK_NOT_OPEN","features":[519]},{"name":"VDS_E_VDISK_PATHNAME_INVALID","features":[519]},{"name":"VDS_E_VD_ALREADY_ATTACHED","features":[519]},{"name":"VDS_E_VD_ALREADY_COMPACTING","features":[519]},{"name":"VDS_E_VD_ALREADY_DETACHED","features":[519]},{"name":"VDS_E_VD_ALREADY_MERGING","features":[519]},{"name":"VDS_E_VD_DISK_ALREADY_EXPANDING","features":[519]},{"name":"VDS_E_VD_DISK_ALREADY_OPEN","features":[519]},{"name":"VDS_E_VD_DISK_IS_COMPACTING","features":[519]},{"name":"VDS_E_VD_DISK_IS_EXPANDING","features":[519]},{"name":"VDS_E_VD_DISK_IS_MERGING","features":[519]},{"name":"VDS_E_VD_DISK_NOT_OPEN","features":[519]},{"name":"VDS_E_VD_IS_ATTACHED","features":[519]},{"name":"VDS_E_VD_IS_BEING_ATTACHED","features":[519]},{"name":"VDS_E_VD_IS_BEING_DETACHED","features":[519]},{"name":"VDS_E_VD_NOT_ATTACHED_READONLY","features":[519]},{"name":"VDS_E_VOLUME_DISK_COUNT_MAX_EXCEEDED","features":[519]},{"name":"VDS_E_VOLUME_EXTEND_FVE","features":[519]},{"name":"VDS_E_VOLUME_EXTEND_FVE_CORRUPT","features":[519]},{"name":"VDS_E_VOLUME_EXTEND_FVE_LOCKED","features":[519]},{"name":"VDS_E_VOLUME_EXTEND_FVE_RECOVERY","features":[519]},{"name":"VDS_E_VOLUME_GUID_PATHNAME_NOT_ALLOWED","features":[519]},{"name":"VDS_E_VOLUME_HAS_PATH","features":[519]},{"name":"VDS_E_VOLUME_HIDDEN","features":[519]},{"name":"VDS_E_VOLUME_INCOMPLETE","features":[519]},{"name":"VDS_E_VOLUME_INVALID_NAME","features":[519]},{"name":"VDS_E_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE","features":[519]},{"name":"VDS_E_VOLUME_MIRRORED","features":[519]},{"name":"VDS_E_VOLUME_NOT_A_MIRROR","features":[519]},{"name":"VDS_E_VOLUME_NOT_FOUND_IN_PACK","features":[519]},{"name":"VDS_E_VOLUME_NOT_HEALTHY","features":[519]},{"name":"VDS_E_VOLUME_NOT_MOUNTED","features":[519]},{"name":"VDS_E_VOLUME_NOT_ONLINE","features":[519]},{"name":"VDS_E_VOLUME_NOT_RETAINED","features":[519]},{"name":"VDS_E_VOLUME_ON_DISK","features":[519]},{"name":"VDS_E_VOLUME_PERMANENTLY_DISMOUNTED","features":[519]},{"name":"VDS_E_VOLUME_REGENERATING","features":[519]},{"name":"VDS_E_VOLUME_RETAINED","features":[519]},{"name":"VDS_E_VOLUME_SHRINK_FVE","features":[519]},{"name":"VDS_E_VOLUME_SHRINK_FVE_CORRUPT","features":[519]},{"name":"VDS_E_VOLUME_SHRINK_FVE_LOCKED","features":[519]},{"name":"VDS_E_VOLUME_SHRINK_FVE_RECOVERY","features":[519]},{"name":"VDS_E_VOLUME_SIMPLE_SPANNED","features":[519]},{"name":"VDS_E_VOLUME_SPANS_DISKS","features":[519]},{"name":"VDS_E_VOLUME_SYNCHRONIZING","features":[519]},{"name":"VDS_E_VOLUME_TEMPORARILY_DISMOUNTED","features":[519]},{"name":"VDS_E_VOLUME_TOO_BIG","features":[519]},{"name":"VDS_E_VOLUME_TOO_SMALL","features":[519]},{"name":"VDS_FILE_SYSTEM_FLAG","features":[519]},{"name":"VDS_FILE_SYSTEM_FORMAT_SUPPORT_FLAG","features":[519]},{"name":"VDS_FILE_SYSTEM_FORMAT_SUPPORT_PROP","features":[519]},{"name":"VDS_FILE_SYSTEM_NOTIFICATION","features":[519]},{"name":"VDS_FILE_SYSTEM_PROP","features":[519]},{"name":"VDS_FILE_SYSTEM_PROP_FLAG","features":[519]},{"name":"VDS_FILE_SYSTEM_TYPE","features":[519]},{"name":"VDS_FILE_SYSTEM_TYPE_PROP","features":[519]},{"name":"VDS_FORMAT_OPTION_FLAGS","features":[519]},{"name":"VDS_FPF_COMPRESSED","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_128K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_16K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_1K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_256K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_2K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_32K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_4K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_512","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_64K","features":[519]},{"name":"VDS_FSF_ALLOCATION_UNIT_8K","features":[519]},{"name":"VDS_FSF_SUPPORT_COMPRESS","features":[519]},{"name":"VDS_FSF_SUPPORT_EXTEND","features":[519]},{"name":"VDS_FSF_SUPPORT_FORMAT","features":[519]},{"name":"VDS_FSF_SUPPORT_MOUNT_POINT","features":[519]},{"name":"VDS_FSF_SUPPORT_QUICK_FORMAT","features":[519]},{"name":"VDS_FSF_SUPPORT_REMOVABLE_MEDIA","features":[519]},{"name":"VDS_FSF_SUPPORT_SPECIFY_LABEL","features":[519]},{"name":"VDS_FSOF_COMPRESSION","features":[519]},{"name":"VDS_FSOF_DUPLICATE_METADATA","features":[519]},{"name":"VDS_FSOF_FORCE","features":[519]},{"name":"VDS_FSOF_NONE","features":[519]},{"name":"VDS_FSOF_QUICK","features":[519]},{"name":"VDS_FSS_DEFAULT","features":[519]},{"name":"VDS_FSS_PREVIOUS_REVISION","features":[519]},{"name":"VDS_FSS_RECOMMENDED","features":[519]},{"name":"VDS_FST_CDFS","features":[519]},{"name":"VDS_FST_CSVFS","features":[519]},{"name":"VDS_FST_EXFAT","features":[519]},{"name":"VDS_FST_FAT","features":[519]},{"name":"VDS_FST_FAT32","features":[519]},{"name":"VDS_FST_NTFS","features":[519]},{"name":"VDS_FST_RAW","features":[519]},{"name":"VDS_FST_REFS","features":[519]},{"name":"VDS_FST_UDF","features":[519]},{"name":"VDS_FST_UNKNOWN","features":[519]},{"name":"VDS_HBAPORT_PROP","features":[519]},{"name":"VDS_HBAPORT_SPEED_FLAG","features":[519]},{"name":"VDS_HBAPORT_STATUS","features":[519]},{"name":"VDS_HBAPORT_TYPE","features":[519]},{"name":"VDS_HEALTH","features":[519]},{"name":"VDS_HINTS","features":[305,519]},{"name":"VDS_HINTS2","features":[305,519]},{"name":"VDS_HINT_ALLOCATEHOTSPARE","features":[519]},{"name":"VDS_HINT_BUSTYPE","features":[519]},{"name":"VDS_HINT_CONSISTENCYCHECKENABLED","features":[519]},{"name":"VDS_HINT_FASTCRASHRECOVERYREQUIRED","features":[519]},{"name":"VDS_HINT_HARDWARECHECKSUMENABLED","features":[519]},{"name":"VDS_HINT_ISYANKABLE","features":[519]},{"name":"VDS_HINT_MEDIASCANENABLED","features":[519]},{"name":"VDS_HINT_MOSTLYREADS","features":[519]},{"name":"VDS_HINT_OPTIMIZEFORSEQUENTIALREADS","features":[519]},{"name":"VDS_HINT_OPTIMIZEFORSEQUENTIALWRITES","features":[519]},{"name":"VDS_HINT_READBACKVERIFYENABLED","features":[519]},{"name":"VDS_HINT_READCACHINGENABLED","features":[519]},{"name":"VDS_HINT_REMAPENABLED","features":[519]},{"name":"VDS_HINT_USEMIRROREDCACHE","features":[519]},{"name":"VDS_HINT_WRITECACHINGENABLED","features":[519]},{"name":"VDS_HINT_WRITETHROUGHCACHINGENABLED","features":[519]},{"name":"VDS_HPS_BYPASSED","features":[519]},{"name":"VDS_HPS_DIAGNOSTICS","features":[519]},{"name":"VDS_HPS_ERROR","features":[519]},{"name":"VDS_HPS_LINKDOWN","features":[519]},{"name":"VDS_HPS_LOOPBACK","features":[519]},{"name":"VDS_HPS_OFFLINE","features":[519]},{"name":"VDS_HPS_ONLINE","features":[519]},{"name":"VDS_HPS_UNKNOWN","features":[519]},{"name":"VDS_HPT_EPORT","features":[519]},{"name":"VDS_HPT_FLPORT","features":[519]},{"name":"VDS_HPT_FPORT","features":[519]},{"name":"VDS_HPT_GPORT","features":[519]},{"name":"VDS_HPT_LPORT","features":[519]},{"name":"VDS_HPT_NLPORT","features":[519]},{"name":"VDS_HPT_NOTPRESENT","features":[519]},{"name":"VDS_HPT_NPORT","features":[519]},{"name":"VDS_HPT_OTHER","features":[519]},{"name":"VDS_HPT_PTP","features":[519]},{"name":"VDS_HPT_UNKNOWN","features":[519]},{"name":"VDS_HSF_10GBIT","features":[519]},{"name":"VDS_HSF_1GBIT","features":[519]},{"name":"VDS_HSF_2GBIT","features":[519]},{"name":"VDS_HSF_4GBIT","features":[519]},{"name":"VDS_HSF_NOT_NEGOTIATED","features":[519]},{"name":"VDS_HSF_UNKNOWN","features":[519]},{"name":"VDS_HWPROVIDER_TYPE","features":[519]},{"name":"VDS_HWT_FIBRE_CHANNEL","features":[519]},{"name":"VDS_HWT_HYBRID","features":[519]},{"name":"VDS_HWT_ISCSI","features":[519]},{"name":"VDS_HWT_PCI_RAID","features":[519]},{"name":"VDS_HWT_SAS","features":[519]},{"name":"VDS_HWT_UNKNOWN","features":[519]},{"name":"VDS_H_DEGRADED","features":[519]},{"name":"VDS_H_FAILED","features":[519]},{"name":"VDS_H_FAILED_REDUNDANCY","features":[519]},{"name":"VDS_H_FAILED_REDUNDANCY_FAILING","features":[519]},{"name":"VDS_H_FAILING","features":[519]},{"name":"VDS_H_FAILING_REDUNDANCY","features":[519]},{"name":"VDS_H_HEALTHY","features":[519]},{"name":"VDS_H_PENDING_FAILURE","features":[519]},{"name":"VDS_H_REBUILDING","features":[519]},{"name":"VDS_H_REPLACED","features":[519]},{"name":"VDS_H_STALE","features":[519]},{"name":"VDS_H_UNKNOWN","features":[519]},{"name":"VDS_IAT_CHAP","features":[519]},{"name":"VDS_IAT_MUTUAL_CHAP","features":[519]},{"name":"VDS_IAT_NONE","features":[519]},{"name":"VDS_IA_FCFS","features":[519]},{"name":"VDS_IA_FCPH","features":[519]},{"name":"VDS_IA_FCPH3","features":[519]},{"name":"VDS_IA_MAC","features":[519]},{"name":"VDS_IA_SCSI","features":[519]},{"name":"VDS_IA_UNKNOWN","features":[519]},{"name":"VDS_IIF_AGGRESSIVE_MODE","features":[519]},{"name":"VDS_IIF_IKE","features":[519]},{"name":"VDS_IIF_MAIN_MODE","features":[519]},{"name":"VDS_IIF_PFS_ENABLE","features":[519]},{"name":"VDS_IIF_TRANSPORT_MODE_PREFERRED","features":[519]},{"name":"VDS_IIF_TUNNEL_MODE_PREFERRED","features":[519]},{"name":"VDS_IIF_VALID","features":[519]},{"name":"VDS_ILF_MULTIPATH_ENABLED","features":[519]},{"name":"VDS_ILF_REQUIRE_IPSEC","features":[519]},{"name":"VDS_ILT_BOOT","features":[519]},{"name":"VDS_ILT_MANUAL","features":[519]},{"name":"VDS_ILT_PERSISTENT","features":[519]},{"name":"VDS_INPUT_DISK","features":[519]},{"name":"VDS_INTERCONNECT","features":[519]},{"name":"VDS_INTERCONNECT_ADDRESS_TYPE","features":[519]},{"name":"VDS_INTERCONNECT_FLAG","features":[519]},{"name":"VDS_IPADDRESS","features":[519]},{"name":"VDS_IPADDRESS_TYPE","features":[519]},{"name":"VDS_IPS_FAILED","features":[519]},{"name":"VDS_IPS_NOT_READY","features":[519]},{"name":"VDS_IPS_OFFLINE","features":[519]},{"name":"VDS_IPS_ONLINE","features":[519]},{"name":"VDS_IPS_UNKNOWN","features":[519]},{"name":"VDS_IPT_EMPTY","features":[519]},{"name":"VDS_IPT_IPV4","features":[519]},{"name":"VDS_IPT_IPV6","features":[519]},{"name":"VDS_IPT_TEXT","features":[519]},{"name":"VDS_ISCSI_AUTH_TYPE","features":[519]},{"name":"VDS_ISCSI_INITIATOR_ADAPTER_PROP","features":[519]},{"name":"VDS_ISCSI_INITIATOR_PORTAL_PROP","features":[519]},{"name":"VDS_ISCSI_IPSEC_FLAG","features":[519]},{"name":"VDS_ISCSI_IPSEC_KEY","features":[519]},{"name":"VDS_ISCSI_LOGIN_FLAG","features":[519]},{"name":"VDS_ISCSI_LOGIN_TYPE","features":[519]},{"name":"VDS_ISCSI_PORTALGROUP_PROP","features":[519]},{"name":"VDS_ISCSI_PORTAL_PROP","features":[519]},{"name":"VDS_ISCSI_PORTAL_STATUS","features":[519]},{"name":"VDS_ISCSI_SHARED_SECRET","features":[519]},{"name":"VDS_ISCSI_TARGET_PROP","features":[305,519]},{"name":"VDS_ITF_FIBRE_CHANNEL","features":[519]},{"name":"VDS_ITF_ISCSI","features":[519]},{"name":"VDS_ITF_PCI_RAID","features":[519]},{"name":"VDS_ITF_SAS","features":[519]},{"name":"VDS_LBF_DYN_LEAST_QUEUE_DEPTH","features":[519]},{"name":"VDS_LBF_FAILOVER","features":[519]},{"name":"VDS_LBF_LEAST_BLOCKS","features":[519]},{"name":"VDS_LBF_ROUND_ROBIN","features":[519]},{"name":"VDS_LBF_ROUND_ROBIN_WITH_SUBSET","features":[519]},{"name":"VDS_LBF_VENDOR_SPECIFIC","features":[519]},{"name":"VDS_LBF_WEIGHTED_PATHS","features":[519]},{"name":"VDS_LBP_DYN_LEAST_QUEUE_DEPTH","features":[519]},{"name":"VDS_LBP_FAILOVER","features":[519]},{"name":"VDS_LBP_LEAST_BLOCKS","features":[519]},{"name":"VDS_LBP_ROUND_ROBIN","features":[519]},{"name":"VDS_LBP_ROUND_ROBIN_WITH_SUBSET","features":[519]},{"name":"VDS_LBP_UNKNOWN","features":[519]},{"name":"VDS_LBP_VENDOR_SPECIFIC","features":[519]},{"name":"VDS_LBP_WEIGHTED_PATHS","features":[519]},{"name":"VDS_LF_CONSISTENCY_CHECK_ENABLED","features":[519]},{"name":"VDS_LF_HARDWARE_CHECKSUM_ENABLED","features":[519]},{"name":"VDS_LF_LBN_REMAP_ENABLED","features":[519]},{"name":"VDS_LF_MEDIA_SCAN_ENABLED","features":[519]},{"name":"VDS_LF_READ_BACK_VERIFY_ENABLED","features":[519]},{"name":"VDS_LF_READ_CACHE_ENABLED","features":[519]},{"name":"VDS_LF_SNAPSHOT","features":[519]},{"name":"VDS_LF_WRITE_CACHE_ENABLED","features":[519]},{"name":"VDS_LF_WRITE_THROUGH_CACHING_ENABLED","features":[519]},{"name":"VDS_LOADBALANCE_POLICY_ENUM","features":[519]},{"name":"VDS_LPF_LBN_REMAP_ENABLED","features":[519]},{"name":"VDS_LPS_FAILED","features":[519]},{"name":"VDS_LPS_NOT_READY","features":[519]},{"name":"VDS_LPS_OFFLINE","features":[519]},{"name":"VDS_LPS_ONLINE","features":[519]},{"name":"VDS_LPS_UNKNOWN","features":[519]},{"name":"VDS_LPT_PARITY","features":[519]},{"name":"VDS_LPT_RAID03","features":[519]},{"name":"VDS_LPT_RAID05","features":[519]},{"name":"VDS_LPT_RAID10","features":[519]},{"name":"VDS_LPT_RAID15","features":[519]},{"name":"VDS_LPT_RAID2","features":[519]},{"name":"VDS_LPT_RAID3","features":[519]},{"name":"VDS_LPT_RAID30","features":[519]},{"name":"VDS_LPT_RAID4","features":[519]},{"name":"VDS_LPT_RAID5","features":[519]},{"name":"VDS_LPT_RAID50","features":[519]},{"name":"VDS_LPT_RAID53","features":[519]},{"name":"VDS_LPT_RAID6","features":[519]},{"name":"VDS_LPT_RAID60","features":[519]},{"name":"VDS_LPT_SIMPLE","features":[519]},{"name":"VDS_LPT_SPAN","features":[519]},{"name":"VDS_LPT_STRIPE","features":[519]},{"name":"VDS_LPT_UNKNOWN","features":[519]},{"name":"VDS_LRM_EXCLUSIVE_RO","features":[519]},{"name":"VDS_LRM_EXCLUSIVE_RW","features":[519]},{"name":"VDS_LRM_NONE","features":[519]},{"name":"VDS_LRM_SHARED_RO","features":[519]},{"name":"VDS_LRM_SHARED_RW","features":[519]},{"name":"VDS_LS_FAILED","features":[519]},{"name":"VDS_LS_NOT_READY","features":[519]},{"name":"VDS_LS_OFFLINE","features":[519]},{"name":"VDS_LS_ONLINE","features":[519]},{"name":"VDS_LS_UNKNOWN","features":[519]},{"name":"VDS_LT_DEFAULT","features":[519]},{"name":"VDS_LT_FAULT_TOLERANT","features":[519]},{"name":"VDS_LT_MIRROR","features":[519]},{"name":"VDS_LT_NON_FAULT_TOLERANT","features":[519]},{"name":"VDS_LT_PARITY","features":[519]},{"name":"VDS_LT_RAID01","features":[519]},{"name":"VDS_LT_RAID03","features":[519]},{"name":"VDS_LT_RAID05","features":[519]},{"name":"VDS_LT_RAID10","features":[519]},{"name":"VDS_LT_RAID15","features":[519]},{"name":"VDS_LT_RAID2","features":[519]},{"name":"VDS_LT_RAID3","features":[519]},{"name":"VDS_LT_RAID30","features":[519]},{"name":"VDS_LT_RAID4","features":[519]},{"name":"VDS_LT_RAID5","features":[519]},{"name":"VDS_LT_RAID50","features":[519]},{"name":"VDS_LT_RAID51","features":[519]},{"name":"VDS_LT_RAID53","features":[519]},{"name":"VDS_LT_RAID6","features":[519]},{"name":"VDS_LT_RAID60","features":[519]},{"name":"VDS_LT_RAID61","features":[519]},{"name":"VDS_LT_SIMPLE","features":[519]},{"name":"VDS_LT_SPAN","features":[519]},{"name":"VDS_LT_STRIPE","features":[519]},{"name":"VDS_LT_UNKNOWN","features":[519]},{"name":"VDS_LUN_FLAG","features":[519]},{"name":"VDS_LUN_INFORMATION","features":[305,519]},{"name":"VDS_LUN_NOTIFICATION","features":[519]},{"name":"VDS_LUN_PLEX_FLAG","features":[519]},{"name":"VDS_LUN_PLEX_PROP","features":[519]},{"name":"VDS_LUN_PLEX_STATUS","features":[519]},{"name":"VDS_LUN_PLEX_TYPE","features":[519]},{"name":"VDS_LUN_PROP","features":[519]},{"name":"VDS_LUN_RESERVE_MODE","features":[519]},{"name":"VDS_LUN_STATUS","features":[519]},{"name":"VDS_LUN_TYPE","features":[519]},{"name":"VDS_MAINTENANCE_OPERATION","features":[519]},{"name":"VDS_MOUNT_POINT_NOTIFICATION","features":[519]},{"name":"VDS_MPS_FAILED","features":[519]},{"name":"VDS_MPS_ONLINE","features":[519]},{"name":"VDS_MPS_STANDBY","features":[519]},{"name":"VDS_MPS_UNKNOWN","features":[519]},{"name":"VDS_NF_CONTROLLER","features":[519]},{"name":"VDS_NF_CONTROLLER_ARRIVE","features":[519]},{"name":"VDS_NF_CONTROLLER_DEPART","features":[519]},{"name":"VDS_NF_CONTROLLER_MODIFY","features":[519]},{"name":"VDS_NF_CONTROLLER_REMOVED","features":[519]},{"name":"VDS_NF_DISK","features":[519]},{"name":"VDS_NF_DISK_ARRIVE","features":[519]},{"name":"VDS_NF_DISK_DEPART","features":[519]},{"name":"VDS_NF_DISK_MODIFY","features":[519]},{"name":"VDS_NF_DRIVE","features":[519]},{"name":"VDS_NF_DRIVE_ARRIVE","features":[519]},{"name":"VDS_NF_DRIVE_DEPART","features":[519]},{"name":"VDS_NF_DRIVE_LETTER_ASSIGN","features":[519]},{"name":"VDS_NF_DRIVE_LETTER_FREE","features":[519]},{"name":"VDS_NF_DRIVE_MODIFY","features":[519]},{"name":"VDS_NF_DRIVE_REMOVED","features":[519]},{"name":"VDS_NF_FILE_SYSTEM","features":[519]},{"name":"VDS_NF_FILE_SYSTEM_FORMAT_PROGRESS","features":[519]},{"name":"VDS_NF_FILE_SYSTEM_MODIFY","features":[519]},{"name":"VDS_NF_FILE_SYSTEM_SHRINKING_PROGRESS","features":[519]},{"name":"VDS_NF_LUN","features":[519]},{"name":"VDS_NF_LUN_ARRIVE","features":[519]},{"name":"VDS_NF_LUN_DEPART","features":[519]},{"name":"VDS_NF_LUN_MODIFY","features":[519]},{"name":"VDS_NF_MOUNT_POINTS_CHANGE","features":[519]},{"name":"VDS_NF_PACK","features":[519]},{"name":"VDS_NF_PACK_ARRIVE","features":[519]},{"name":"VDS_NF_PACK_DEPART","features":[519]},{"name":"VDS_NF_PACK_MODIFY","features":[519]},{"name":"VDS_NF_PARTITION_ARRIVE","features":[519]},{"name":"VDS_NF_PARTITION_DEPART","features":[519]},{"name":"VDS_NF_PARTITION_MODIFY","features":[519]},{"name":"VDS_NF_PORT","features":[519]},{"name":"VDS_NF_PORTAL_ARRIVE","features":[519]},{"name":"VDS_NF_PORTAL_DEPART","features":[519]},{"name":"VDS_NF_PORTAL_GROUP_ARRIVE","features":[519]},{"name":"VDS_NF_PORTAL_GROUP_DEPART","features":[519]},{"name":"VDS_NF_PORTAL_GROUP_MODIFY","features":[519]},{"name":"VDS_NF_PORTAL_MODIFY","features":[519]},{"name":"VDS_NF_PORT_ARRIVE","features":[519]},{"name":"VDS_NF_PORT_DEPART","features":[519]},{"name":"VDS_NF_PORT_MODIFY","features":[519]},{"name":"VDS_NF_PORT_REMOVED","features":[519]},{"name":"VDS_NF_SERVICE_OUT_OF_SYNC","features":[519]},{"name":"VDS_NF_SUB_SYSTEM_ARRIVE","features":[519]},{"name":"VDS_NF_SUB_SYSTEM_DEPART","features":[519]},{"name":"VDS_NF_SUB_SYSTEM_MODIFY","features":[519]},{"name":"VDS_NF_TARGET_ARRIVE","features":[519]},{"name":"VDS_NF_TARGET_DEPART","features":[519]},{"name":"VDS_NF_TARGET_MODIFY","features":[519]},{"name":"VDS_NF_VOLUME_ARRIVE","features":[519]},{"name":"VDS_NF_VOLUME_DEPART","features":[519]},{"name":"VDS_NF_VOLUME_MODIFY","features":[519]},{"name":"VDS_NF_VOLUME_REBUILDING_PROGRESS","features":[519]},{"name":"VDS_NOTIFICATION","features":[519]},{"name":"VDS_NOTIFICATION_TARGET_TYPE","features":[519]},{"name":"VDS_NTT_CONTROLLER","features":[519]},{"name":"VDS_NTT_DISK","features":[519]},{"name":"VDS_NTT_DRIVE","features":[519]},{"name":"VDS_NTT_DRIVE_LETTER","features":[519]},{"name":"VDS_NTT_FILE_SYSTEM","features":[519]},{"name":"VDS_NTT_LUN","features":[519]},{"name":"VDS_NTT_MOUNT_POINT","features":[519]},{"name":"VDS_NTT_PACK","features":[519]},{"name":"VDS_NTT_PARTITION","features":[519]},{"name":"VDS_NTT_PORT","features":[519]},{"name":"VDS_NTT_PORTAL","features":[519]},{"name":"VDS_NTT_PORTAL_GROUP","features":[519]},{"name":"VDS_NTT_SERVICE","features":[519]},{"name":"VDS_NTT_SUB_SYSTEM","features":[519]},{"name":"VDS_NTT_TARGET","features":[519]},{"name":"VDS_NTT_UNKNOWN","features":[519]},{"name":"VDS_NTT_VOLUME","features":[519]},{"name":"VDS_OBJECT_TYPE","features":[519]},{"name":"VDS_OT_ASYNC","features":[519]},{"name":"VDS_OT_CONTROLLER","features":[519]},{"name":"VDS_OT_DISK","features":[519]},{"name":"VDS_OT_DRIVE","features":[519]},{"name":"VDS_OT_ENUM","features":[519]},{"name":"VDS_OT_HBAPORT","features":[519]},{"name":"VDS_OT_INIT_ADAPTER","features":[519]},{"name":"VDS_OT_INIT_PORTAL","features":[519]},{"name":"VDS_OT_LUN","features":[519]},{"name":"VDS_OT_LUN_PLEX","features":[519]},{"name":"VDS_OT_OPEN_VDISK","features":[519]},{"name":"VDS_OT_PACK","features":[519]},{"name":"VDS_OT_PORT","features":[519]},{"name":"VDS_OT_PORTAL","features":[519]},{"name":"VDS_OT_PORTAL_GROUP","features":[519]},{"name":"VDS_OT_PROVIDER","features":[519]},{"name":"VDS_OT_STORAGE_POOL","features":[519]},{"name":"VDS_OT_SUB_SYSTEM","features":[519]},{"name":"VDS_OT_TARGET","features":[519]},{"name":"VDS_OT_UNKNOWN","features":[519]},{"name":"VDS_OT_VDISK","features":[519]},{"name":"VDS_OT_VOLUME","features":[519]},{"name":"VDS_OT_VOLUME_PLEX","features":[519]},{"name":"VDS_PACK_FLAG","features":[519]},{"name":"VDS_PACK_NOTIFICATION","features":[519]},{"name":"VDS_PACK_PROP","features":[519]},{"name":"VDS_PACK_STATUS","features":[519]},{"name":"VDS_PARTITION_FLAG","features":[519]},{"name":"VDS_PARTITION_INFORMATION_EX","features":[305,519]},{"name":"VDS_PARTITION_INFO_GPT","features":[519]},{"name":"VDS_PARTITION_INFO_MBR","features":[305,519]},{"name":"VDS_PARTITION_NOTIFICATION","features":[519]},{"name":"VDS_PARTITION_PROP","features":[305,519]},{"name":"VDS_PARTITION_STYLE","features":[519]},{"name":"VDS_PARTITION_STYLE_GPT","features":[519]},{"name":"VDS_PARTITION_STYLE_MBR","features":[519]},{"name":"VDS_PARTITION_STYLE_RAW","features":[519]},{"name":"VDS_PATH_ID","features":[519]},{"name":"VDS_PATH_INFO","features":[519]},{"name":"VDS_PATH_POLICY","features":[305,519]},{"name":"VDS_PATH_STATUS","features":[519]},{"name":"VDS_PF_DYNAMIC","features":[519]},{"name":"VDS_PF_INTERNAL_HARDWARE_PROVIDER","features":[519]},{"name":"VDS_PF_ONE_DISK_ONLY_PER_PACK","features":[519]},{"name":"VDS_PF_ONE_PACK_ONLINE_ONLY","features":[519]},{"name":"VDS_PF_SUPPORT_DYNAMIC","features":[519]},{"name":"VDS_PF_SUPPORT_DYNAMIC_1394","features":[519]},{"name":"VDS_PF_SUPPORT_FAULT_TOLERANT","features":[519]},{"name":"VDS_PF_SUPPORT_MIRROR","features":[519]},{"name":"VDS_PF_SUPPORT_RAID5","features":[519]},{"name":"VDS_PF_VOLUME_SPACE_MUST_BE_CONTIGUOUS","features":[519]},{"name":"VDS_PKF_CORRUPTED","features":[519]},{"name":"VDS_PKF_FOREIGN","features":[519]},{"name":"VDS_PKF_NOQUORUM","features":[519]},{"name":"VDS_PKF_ONLINE_ERROR","features":[519]},{"name":"VDS_PKF_POLICY","features":[519]},{"name":"VDS_POOL_ATTRIBUTES","features":[305,519]},{"name":"VDS_POOL_ATTRIB_ACCS_BDW_WT_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_ACCS_DIR_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_ACCS_LTNCY_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_ACCS_RNDM_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_ACCS_SIZE_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_ALLOW_SPINDOWN","features":[519]},{"name":"VDS_POOL_ATTRIB_BUSTYPE","features":[519]},{"name":"VDS_POOL_ATTRIB_CUSTOM_ATTRIB","features":[519]},{"name":"VDS_POOL_ATTRIB_DATA_AVL_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_DATA_RDNCY_DEF","features":[519]},{"name":"VDS_POOL_ATTRIB_DATA_RDNCY_MAX","features":[519]},{"name":"VDS_POOL_ATTRIB_DATA_RDNCY_MIN","features":[519]},{"name":"VDS_POOL_ATTRIB_NO_SINGLE_POF","features":[519]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS","features":[519]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS_DEF","features":[519]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS_MAX","features":[519]},{"name":"VDS_POOL_ATTRIB_NUM_CLMNS_MIN","features":[519]},{"name":"VDS_POOL_ATTRIB_PKG_RDNCY_DEF","features":[519]},{"name":"VDS_POOL_ATTRIB_PKG_RDNCY_MAX","features":[519]},{"name":"VDS_POOL_ATTRIB_PKG_RDNCY_MIN","features":[519]},{"name":"VDS_POOL_ATTRIB_RAIDTYPE","features":[519]},{"name":"VDS_POOL_ATTRIB_STOR_COST_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_STOR_EFFCY_HINT","features":[519]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE","features":[519]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE_DEF","features":[519]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE_MAX","features":[519]},{"name":"VDS_POOL_ATTRIB_STRIPE_SIZE_MIN","features":[519]},{"name":"VDS_POOL_ATTRIB_THIN_PROVISION","features":[519]},{"name":"VDS_POOL_CUSTOM_ATTRIBUTES","features":[519]},{"name":"VDS_PORTAL_GROUP_NOTIFICATION","features":[519]},{"name":"VDS_PORTAL_NOTIFICATION","features":[519]},{"name":"VDS_PORT_NOTIFICATION","features":[519]},{"name":"VDS_PORT_PROP","features":[519]},{"name":"VDS_PORT_STATUS","features":[519]},{"name":"VDS_PROVIDER_FLAG","features":[519]},{"name":"VDS_PROVIDER_LBSUPPORT_FLAG","features":[519]},{"name":"VDS_PROVIDER_PROP","features":[519]},{"name":"VDS_PROVIDER_TYPE","features":[519]},{"name":"VDS_PRS_FAILED","features":[519]},{"name":"VDS_PRS_NOT_READY","features":[519]},{"name":"VDS_PRS_OFFLINE","features":[519]},{"name":"VDS_PRS_ONLINE","features":[519]},{"name":"VDS_PRS_REMOVED","features":[519]},{"name":"VDS_PRS_UNKNOWN","features":[519]},{"name":"VDS_PST_GPT","features":[519]},{"name":"VDS_PST_MBR","features":[519]},{"name":"VDS_PST_UNKNOWN","features":[519]},{"name":"VDS_PS_OFFLINE","features":[519]},{"name":"VDS_PS_ONLINE","features":[519]},{"name":"VDS_PS_UNKNOWN","features":[519]},{"name":"VDS_PTF_SYSTEM","features":[519]},{"name":"VDS_PT_HARDWARE","features":[519]},{"name":"VDS_PT_MAX","features":[519]},{"name":"VDS_PT_SOFTWARE","features":[519]},{"name":"VDS_PT_UNKNOWN","features":[519]},{"name":"VDS_PT_VIRTUALDISK","features":[519]},{"name":"VDS_QUERY_HARDWARE_PROVIDERS","features":[519]},{"name":"VDS_QUERY_PROVIDER_FLAG","features":[519]},{"name":"VDS_QUERY_SOFTWARE_PROVIDERS","features":[519]},{"name":"VDS_QUERY_VIRTUALDISK_PROVIDERS","features":[519]},{"name":"VDS_RAID_TYPE","features":[519]},{"name":"VDS_RA_REFRESH","features":[519]},{"name":"VDS_RA_RESTART","features":[519]},{"name":"VDS_RA_UNKNOWN","features":[519]},{"name":"VDS_REBUILD_PRIORITY_MAX","features":[519]},{"name":"VDS_REBUILD_PRIORITY_MIN","features":[519]},{"name":"VDS_RECOVER_ACTION","features":[519]},{"name":"VDS_REPARSE_POINT_PROP","features":[519]},{"name":"VDS_RT_RAID0","features":[519]},{"name":"VDS_RT_RAID01","features":[519]},{"name":"VDS_RT_RAID03","features":[519]},{"name":"VDS_RT_RAID05","features":[519]},{"name":"VDS_RT_RAID1","features":[519]},{"name":"VDS_RT_RAID10","features":[519]},{"name":"VDS_RT_RAID15","features":[519]},{"name":"VDS_RT_RAID2","features":[519]},{"name":"VDS_RT_RAID3","features":[519]},{"name":"VDS_RT_RAID30","features":[519]},{"name":"VDS_RT_RAID4","features":[519]},{"name":"VDS_RT_RAID5","features":[519]},{"name":"VDS_RT_RAID50","features":[519]},{"name":"VDS_RT_RAID51","features":[519]},{"name":"VDS_RT_RAID53","features":[519]},{"name":"VDS_RT_RAID6","features":[519]},{"name":"VDS_RT_RAID60","features":[519]},{"name":"VDS_RT_RAID61","features":[519]},{"name":"VDS_RT_UNKNOWN","features":[519]},{"name":"VDS_SAN_POLICY","features":[519]},{"name":"VDS_SERVICE_FLAG","features":[519]},{"name":"VDS_SERVICE_NOTIFICATION","features":[519]},{"name":"VDS_SERVICE_PROP","features":[519]},{"name":"VDS_SF_CONSISTENCY_CHECK_CAPABLE","features":[519]},{"name":"VDS_SF_DRIVE_EXTENT_CAPABLE","features":[519]},{"name":"VDS_SF_HARDWARE_CHECKSUM_CAPABLE","features":[519]},{"name":"VDS_SF_LUN_MASKING_CAPABLE","features":[519]},{"name":"VDS_SF_LUN_PLEXING_CAPABLE","features":[519]},{"name":"VDS_SF_LUN_REMAPPING_CAPABLE","features":[519]},{"name":"VDS_SF_MEDIA_SCAN_CAPABLE","features":[519]},{"name":"VDS_SF_RADIUS_CAPABLE","features":[519]},{"name":"VDS_SF_READ_BACK_VERIFY_CAPABLE","features":[519]},{"name":"VDS_SF_READ_CACHING_CAPABLE","features":[519]},{"name":"VDS_SF_SUPPORTS_AUTH_CHAP","features":[519]},{"name":"VDS_SF_SUPPORTS_AUTH_MUTUAL_CHAP","features":[519]},{"name":"VDS_SF_SUPPORTS_FAULT_TOLERANT_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_LUN_NUMBER","features":[519]},{"name":"VDS_SF_SUPPORTS_MIRRORED_CACHE","features":[519]},{"name":"VDS_SF_SUPPORTS_MIRROR_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_NON_FAULT_TOLERANT_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_PARITY_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID01_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID03_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID05_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID10_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID15_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID2_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID30_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID3_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID4_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID50_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID51_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID53_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID5_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID60_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID61_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_RAID6_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_SIMPLE_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_SIMPLE_TARGET_CONFIG","features":[519]},{"name":"VDS_SF_SUPPORTS_SPAN_LUNS","features":[519]},{"name":"VDS_SF_SUPPORTS_STRIPE_LUNS","features":[519]},{"name":"VDS_SF_WRITE_CACHING_CAPABLE","features":[519]},{"name":"VDS_SF_WRITE_THROUGH_CACHING_CAPABLE","features":[519]},{"name":"VDS_SPS_NOT_READY","features":[519]},{"name":"VDS_SPS_OFFLINE","features":[519]},{"name":"VDS_SPS_ONLINE","features":[519]},{"name":"VDS_SPS_UNKNOWN","features":[519]},{"name":"VDS_SPT_CONCRETE","features":[519]},{"name":"VDS_SPT_PRIMORDIAL","features":[519]},{"name":"VDS_SPT_UNKNOWN","features":[519]},{"name":"VDS_SP_MAX","features":[519]},{"name":"VDS_SP_OFFLINE","features":[519]},{"name":"VDS_SP_OFFLINE_INTERNAL","features":[519]},{"name":"VDS_SP_OFFLINE_SHARED","features":[519]},{"name":"VDS_SP_ONLINE","features":[519]},{"name":"VDS_SP_UNKNOWN","features":[519]},{"name":"VDS_SSS_FAILED","features":[519]},{"name":"VDS_SSS_NOT_READY","features":[519]},{"name":"VDS_SSS_OFFLINE","features":[519]},{"name":"VDS_SSS_ONLINE","features":[519]},{"name":"VDS_SSS_PARTIALLY_MANAGED","features":[519]},{"name":"VDS_SSS_UNKNOWN","features":[519]},{"name":"VDS_STORAGE_BUS_TYPE","features":[519]},{"name":"VDS_STORAGE_DEVICE_ID_DESCRIPTOR","features":[519]},{"name":"VDS_STORAGE_IDENTIFIER","features":[519]},{"name":"VDS_STORAGE_IDENTIFIER_CODE_SET","features":[519]},{"name":"VDS_STORAGE_IDENTIFIER_TYPE","features":[519]},{"name":"VDS_STORAGE_POOL_DRIVE_EXTENT","features":[305,519]},{"name":"VDS_STORAGE_POOL_PROP","features":[519]},{"name":"VDS_STORAGE_POOL_STATUS","features":[519]},{"name":"VDS_STORAGE_POOL_TYPE","features":[519]},{"name":"VDS_SUB_SYSTEM_FLAG","features":[519]},{"name":"VDS_SUB_SYSTEM_NOTIFICATION","features":[519]},{"name":"VDS_SUB_SYSTEM_PROP","features":[519]},{"name":"VDS_SUB_SYSTEM_PROP2","features":[519]},{"name":"VDS_SUB_SYSTEM_STATUS","features":[519]},{"name":"VDS_SUB_SYSTEM_SUPPORTED_RAID_TYPE_FLAG","features":[519]},{"name":"VDS_SVF_AUTO_MOUNT_OFF","features":[519]},{"name":"VDS_SVF_CLUSTER_SERVICE_CONFIGURED","features":[519]},{"name":"VDS_SVF_EFI","features":[519]},{"name":"VDS_SVF_OS_UNINSTALL_VALID","features":[519]},{"name":"VDS_SVF_SUPPORT_DYNAMIC","features":[519]},{"name":"VDS_SVF_SUPPORT_DYNAMIC_1394","features":[519]},{"name":"VDS_SVF_SUPPORT_FAULT_TOLERANT","features":[519]},{"name":"VDS_SVF_SUPPORT_GPT","features":[519]},{"name":"VDS_SVF_SUPPORT_MIRROR","features":[519]},{"name":"VDS_SVF_SUPPORT_RAID5","features":[519]},{"name":"VDS_SVF_SUPPORT_REFS","features":[519]},{"name":"VDS_S_ACCESS_PATH_NOT_DELETED","features":[519]},{"name":"VDS_S_ALREADY_EXISTS","features":[519]},{"name":"VDS_S_BOOT_PARTITION_NUMBER_CHANGE","features":[519]},{"name":"VDS_S_DEFAULT_PLEX_MEMBER_IDS","features":[519]},{"name":"VDS_S_DISK_DISMOUNT_FAILED","features":[519]},{"name":"VDS_S_DISK_IS_MISSING","features":[519]},{"name":"VDS_S_DISK_MOUNT_FAILED","features":[519]},{"name":"VDS_S_DISK_PARTIALLY_CLEANED","features":[519]},{"name":"VDS_S_DISMOUNT_FAILED","features":[519]},{"name":"VDS_S_EXTEND_FILE_SYSTEM_FAILED","features":[519]},{"name":"VDS_S_FS_LOCK","features":[519]},{"name":"VDS_S_GPT_BOOT_MIRRORED_TO_MBR","features":[519]},{"name":"VDS_S_IA64_BOOT_MIRRORED_TO_MBR","features":[519]},{"name":"VDS_S_IN_PROGRESS","features":[519]},{"name":"VDS_S_ISCSI_LOGIN_ALREAD_EXISTS","features":[519]},{"name":"VDS_S_ISCSI_PERSISTENT_LOGIN_MAY_NOT_BE_REMOVED","features":[519]},{"name":"VDS_S_ISCSI_SESSION_NOT_FOUND_PERSISTENT_LOGIN_REMOVED","features":[519]},{"name":"VDS_S_MBR_BOOT_MIRRORED_TO_GPT","features":[519]},{"name":"VDS_S_NAME_TRUNCATED","features":[519]},{"name":"VDS_S_NONCONFORMANT_PARTITION_INFO","features":[519]},{"name":"VDS_S_NO_NOTIFICATION","features":[519]},{"name":"VDS_S_PLEX_NOT_LOADED_TO_CACHE","features":[519]},{"name":"VDS_S_PROPERTIES_INCOMPLETE","features":[519]},{"name":"VDS_S_PROVIDER_ERROR_LOADING_CACHE","features":[519]},{"name":"VDS_S_REMOUNT_FAILED","features":[519]},{"name":"VDS_S_RESYNC_NOTIFICATION_TASK_FAILED","features":[519]},{"name":"VDS_S_STATUSES_INCOMPLETELY_SET","features":[519]},{"name":"VDS_S_SYSTEM_PARTITION","features":[519]},{"name":"VDS_S_UNABLE_TO_GET_GPT_ATTRIBUTES","features":[519]},{"name":"VDS_S_UPDATE_BOOTFILE_FAILED","features":[519]},{"name":"VDS_S_VOLUME_COMPRESS_FAILED","features":[519]},{"name":"VDS_S_VSS_FLUSH_AND_HOLD_WRITES","features":[519]},{"name":"VDS_S_VSS_RELEASE_WRITES","features":[519]},{"name":"VDS_S_WINPE_BOOTENTRY","features":[519]},{"name":"VDS_TARGET_NOTIFICATION","features":[519]},{"name":"VDS_TRANSITION_STATE","features":[519]},{"name":"VDS_TS_EXTENDING","features":[519]},{"name":"VDS_TS_RECONFIGING","features":[519]},{"name":"VDS_TS_RESTRIPING","features":[519]},{"name":"VDS_TS_SHRINKING","features":[519]},{"name":"VDS_TS_STABLE","features":[519]},{"name":"VDS_TS_UNKNOWN","features":[519]},{"name":"VDS_VDISK_PROPERTIES","features":[305,518,519]},{"name":"VDS_VDISK_STATE","features":[519]},{"name":"VDS_VERSION_SUPPORT_FLAG","features":[519]},{"name":"VDS_VF_ACTIVE","features":[519]},{"name":"VDS_VF_BACKED_BY_WIM_IMAGE","features":[519]},{"name":"VDS_VF_BACKS_BOOT_VOLUME","features":[519]},{"name":"VDS_VF_BOOT_VOLUME","features":[519]},{"name":"VDS_VF_CAN_EXTEND","features":[519]},{"name":"VDS_VF_CAN_SHRINK","features":[519]},{"name":"VDS_VF_CRASHDUMP","features":[519]},{"name":"VDS_VF_DIRTY","features":[519]},{"name":"VDS_VF_FAT32_NOT_SUPPORTED","features":[519]},{"name":"VDS_VF_FAT_NOT_SUPPORTED","features":[519]},{"name":"VDS_VF_FORMATTING","features":[519]},{"name":"VDS_VF_FVE_ENABLED","features":[519]},{"name":"VDS_VF_HIBERNATION","features":[519]},{"name":"VDS_VF_HIDDEN","features":[519]},{"name":"VDS_VF_INSTALLABLE","features":[519]},{"name":"VDS_VF_LBN_REMAP_ENABLED","features":[519]},{"name":"VDS_VF_NOT_FORMATTABLE","features":[519]},{"name":"VDS_VF_NO_DEFAULT_DRIVE_LETTER","features":[519]},{"name":"VDS_VF_NTFS_NOT_SUPPORTED","features":[519]},{"name":"VDS_VF_PAGEFILE","features":[519]},{"name":"VDS_VF_PERMANENTLY_DISMOUNTED","features":[519]},{"name":"VDS_VF_PERMANENT_DISMOUNT_SUPPORTED","features":[519]},{"name":"VDS_VF_READONLY","features":[519]},{"name":"VDS_VF_REFS_NOT_SUPPORTED","features":[519]},{"name":"VDS_VF_SHADOW_COPY","features":[519]},{"name":"VDS_VF_SYSTEM_VOLUME","features":[519]},{"name":"VDS_VOLUME_FLAG","features":[519]},{"name":"VDS_VOLUME_NOTIFICATION","features":[519]},{"name":"VDS_VOLUME_PLEX_PROP","features":[519]},{"name":"VDS_VOLUME_PLEX_STATUS","features":[519]},{"name":"VDS_VOLUME_PLEX_TYPE","features":[519]},{"name":"VDS_VOLUME_PROP","features":[519]},{"name":"VDS_VOLUME_PROP2","features":[519]},{"name":"VDS_VOLUME_STATUS","features":[519]},{"name":"VDS_VOLUME_TYPE","features":[519]},{"name":"VDS_VPS_FAILED","features":[519]},{"name":"VDS_VPS_NO_MEDIA","features":[519]},{"name":"VDS_VPS_ONLINE","features":[519]},{"name":"VDS_VPS_UNKNOWN","features":[519]},{"name":"VDS_VPT_PARITY","features":[519]},{"name":"VDS_VPT_SIMPLE","features":[519]},{"name":"VDS_VPT_SPAN","features":[519]},{"name":"VDS_VPT_STRIPE","features":[519]},{"name":"VDS_VPT_UNKNOWN","features":[519]},{"name":"VDS_VSF_1_0","features":[519]},{"name":"VDS_VSF_1_1","features":[519]},{"name":"VDS_VSF_2_0","features":[519]},{"name":"VDS_VSF_2_1","features":[519]},{"name":"VDS_VSF_3_0","features":[519]},{"name":"VDS_VST_ADDED","features":[519]},{"name":"VDS_VST_ATTACHED","features":[519]},{"name":"VDS_VST_ATTACHED_NOT_OPEN","features":[519]},{"name":"VDS_VST_ATTACH_PENDING","features":[519]},{"name":"VDS_VST_COMPACTING","features":[519]},{"name":"VDS_VST_DELETED","features":[519]},{"name":"VDS_VST_DETACH_PENDING","features":[519]},{"name":"VDS_VST_EXPANDING","features":[519]},{"name":"VDS_VST_MAX","features":[519]},{"name":"VDS_VST_MERGING","features":[519]},{"name":"VDS_VST_OPEN","features":[519]},{"name":"VDS_VST_UNKNOWN","features":[519]},{"name":"VDS_VS_FAILED","features":[519]},{"name":"VDS_VS_NO_MEDIA","features":[519]},{"name":"VDS_VS_OFFLINE","features":[519]},{"name":"VDS_VS_ONLINE","features":[519]},{"name":"VDS_VS_UNKNOWN","features":[519]},{"name":"VDS_VT_MIRROR","features":[519]},{"name":"VDS_VT_PARITY","features":[519]},{"name":"VDS_VT_SIMPLE","features":[519]},{"name":"VDS_VT_SPAN","features":[519]},{"name":"VDS_VT_STRIPE","features":[519]},{"name":"VDS_VT_UNKNOWN","features":[519]},{"name":"VDS_WWN","features":[519]},{"name":"VER_VDS_LUN_INFORMATION","features":[519]},{"name":"__VDS_PARTITION_STYLE","features":[519]}],"527":[{"name":"CreateVssExpressWriterInternal","features":[520]},{"name":"IVssAdmin","features":[520]},{"name":"IVssAdminEx","features":[520]},{"name":"IVssAsync","features":[520]},{"name":"IVssComponent","features":[520]},{"name":"IVssComponentEx","features":[520]},{"name":"IVssComponentEx2","features":[520]},{"name":"IVssCreateExpressWriterMetadata","features":[520]},{"name":"IVssCreateWriterMetadata","features":[520]},{"name":"IVssDifferentialSoftwareSnapshotMgmt","features":[520]},{"name":"IVssDifferentialSoftwareSnapshotMgmt2","features":[520]},{"name":"IVssDifferentialSoftwareSnapshotMgmt3","features":[520]},{"name":"IVssEnumMgmtObject","features":[520]},{"name":"IVssEnumObject","features":[520]},{"name":"IVssExpressWriter","features":[520]},{"name":"IVssFileShareSnapshotProvider","features":[520]},{"name":"IVssHardwareSnapshotProvider","features":[520]},{"name":"IVssHardwareSnapshotProviderEx","features":[520]},{"name":"IVssProviderCreateSnapshotSet","features":[520]},{"name":"IVssProviderNotifications","features":[520]},{"name":"IVssSnapshotMgmt","features":[520]},{"name":"IVssSnapshotMgmt2","features":[520]},{"name":"IVssSoftwareSnapshotProvider","features":[520]},{"name":"IVssWMDependency","features":[520]},{"name":"IVssWMFiledesc","features":[520]},{"name":"IVssWriterComponents","features":[520]},{"name":"VSSCoordinator","features":[520]},{"name":"VSS_ALTERNATE_WRITER_STATE","features":[520]},{"name":"VSS_APPLICATION_LEVEL","features":[520]},{"name":"VSS_APP_AUTO","features":[520]},{"name":"VSS_APP_BACK_END","features":[520]},{"name":"VSS_APP_FRONT_END","features":[520]},{"name":"VSS_APP_SYSTEM","features":[520]},{"name":"VSS_APP_SYSTEM_RM","features":[520]},{"name":"VSS_APP_UNKNOWN","features":[520]},{"name":"VSS_ASSOC_NO_MAX_SPACE","features":[520]},{"name":"VSS_ASSOC_REMOVE","features":[520]},{"name":"VSS_AWS_ALTERNATE_WRITER_EXISTS","features":[520]},{"name":"VSS_AWS_NO_ALTERNATE_WRITER","features":[520]},{"name":"VSS_AWS_THIS_IS_ALTERNATE_WRITER","features":[520]},{"name":"VSS_AWS_UNDEFINED","features":[520]},{"name":"VSS_BACKUP_SCHEMA","features":[520]},{"name":"VSS_BACKUP_TYPE","features":[520]},{"name":"VSS_BREAKEX_FLAG_MAKE_READ_WRITE","features":[520]},{"name":"VSS_BREAKEX_FLAG_MASK_LUNS","features":[520]},{"name":"VSS_BREAKEX_FLAG_REVERT_IDENTITY_ALL","features":[520]},{"name":"VSS_BREAKEX_FLAG_REVERT_IDENTITY_NONE","features":[520]},{"name":"VSS_BS_AUTHORITATIVE_RESTORE","features":[520]},{"name":"VSS_BS_COPY","features":[520]},{"name":"VSS_BS_DIFFERENTIAL","features":[520]},{"name":"VSS_BS_EXCLUSIVE_INCREMENTAL_DIFFERENTIAL","features":[520]},{"name":"VSS_BS_INCREMENTAL","features":[520]},{"name":"VSS_BS_INDEPENDENT_SYSTEM_STATE","features":[520]},{"name":"VSS_BS_LAST_MODIFY","features":[520]},{"name":"VSS_BS_LOG","features":[520]},{"name":"VSS_BS_LSN","features":[520]},{"name":"VSS_BS_RESTORE_RENAME","features":[520]},{"name":"VSS_BS_ROLLFORWARD_RESTORE","features":[520]},{"name":"VSS_BS_TIMESTAMPED","features":[520]},{"name":"VSS_BS_UNDEFINED","features":[520]},{"name":"VSS_BS_WRITER_SUPPORTS_NEW_TARGET","features":[520]},{"name":"VSS_BS_WRITER_SUPPORTS_PARALLEL_RESTORES","features":[520]},{"name":"VSS_BS_WRITER_SUPPORTS_RESTORE_WITH_MOVE","features":[520]},{"name":"VSS_BT_COPY","features":[520]},{"name":"VSS_BT_DIFFERENTIAL","features":[520]},{"name":"VSS_BT_FULL","features":[520]},{"name":"VSS_BT_INCREMENTAL","features":[520]},{"name":"VSS_BT_LOG","features":[520]},{"name":"VSS_BT_OTHER","features":[520]},{"name":"VSS_BT_UNDEFINED","features":[520]},{"name":"VSS_CF_APP_ROLLBACK_RECOVERY","features":[520]},{"name":"VSS_CF_BACKUP_RECOVERY","features":[520]},{"name":"VSS_CF_NOT_SYSTEM_STATE","features":[520]},{"name":"VSS_COMPONENT_FLAGS","features":[520]},{"name":"VSS_COMPONENT_TYPE","features":[520]},{"name":"VSS_CTX_ALL","features":[520]},{"name":"VSS_CTX_APP_ROLLBACK","features":[520]},{"name":"VSS_CTX_BACKUP","features":[520]},{"name":"VSS_CTX_CLIENT_ACCESSIBLE","features":[520]},{"name":"VSS_CTX_CLIENT_ACCESSIBLE_WRITERS","features":[520]},{"name":"VSS_CTX_FILE_SHARE_BACKUP","features":[520]},{"name":"VSS_CTX_NAS_ROLLBACK","features":[520]},{"name":"VSS_CT_DATABASE","features":[520]},{"name":"VSS_CT_FILEGROUP","features":[520]},{"name":"VSS_CT_UNDEFINED","features":[520]},{"name":"VSS_DIFF_AREA_PROP","features":[520]},{"name":"VSS_DIFF_VOLUME_PROP","features":[520]},{"name":"VSS_E_ASRERROR_CRITICAL_DISKS_TOO_SMALL","features":[520]},{"name":"VSS_E_ASRERROR_CRITICAL_DISK_CANNOT_BE_EXCLUDED","features":[520]},{"name":"VSS_E_ASRERROR_DATADISK_RDISK0","features":[520]},{"name":"VSS_E_ASRERROR_DISK_ASSIGNMENT_FAILED","features":[520]},{"name":"VSS_E_ASRERROR_DISK_RECREATION_FAILED","features":[520]},{"name":"VSS_E_ASRERROR_DYNAMIC_VHD_NOT_SUPPORTED","features":[520]},{"name":"VSS_E_ASRERROR_FIXED_PHYSICAL_DISK_AVAILABLE_AFTER_DISK_EXCLUSION","features":[520]},{"name":"VSS_E_ASRERROR_MISSING_DYNDISK","features":[520]},{"name":"VSS_E_ASRERROR_NO_ARCPATH","features":[520]},{"name":"VSS_E_ASRERROR_NO_PHYSICAL_DISK_AVAILABLE","features":[520]},{"name":"VSS_E_ASRERROR_RDISK0_TOOSMALL","features":[520]},{"name":"VSS_E_ASRERROR_RDISK_FOR_SYSTEM_DISK_NOT_FOUND","features":[520]},{"name":"VSS_E_ASRERROR_SHARED_CRIDISK","features":[520]},{"name":"VSS_E_ASRERROR_SYSTEM_PARTITION_HIDDEN","features":[520]},{"name":"VSS_E_AUTORECOVERY_FAILED","features":[520]},{"name":"VSS_E_BAD_STATE","features":[520]},{"name":"VSS_E_BREAK_REVERT_ID_FAILED","features":[520]},{"name":"VSS_E_CANNOT_REVERT_DISKID","features":[520]},{"name":"VSS_E_CLUSTER_ERROR","features":[520]},{"name":"VSS_E_CLUSTER_TIMEOUT","features":[520]},{"name":"VSS_E_CORRUPT_XML_DOCUMENT","features":[520]},{"name":"VSS_E_CRITICAL_VOLUME_ON_INVALID_DISK","features":[520]},{"name":"VSS_E_DYNAMIC_DISK_ERROR","features":[520]},{"name":"VSS_E_FLUSH_WRITES_TIMEOUT","features":[520]},{"name":"VSS_E_FSS_TIMEOUT","features":[520]},{"name":"VSS_E_HOLD_WRITES_TIMEOUT","features":[520]},{"name":"VSS_E_INSUFFICIENT_STORAGE","features":[520]},{"name":"VSS_E_INVALID_XML_DOCUMENT","features":[520]},{"name":"VSS_E_LEGACY_PROVIDER","features":[520]},{"name":"VSS_E_MAXIMUM_DIFFAREA_ASSOCIATIONS_REACHED","features":[520]},{"name":"VSS_E_MAXIMUM_NUMBER_OF_REMOTE_MACHINES_REACHED","features":[520]},{"name":"VSS_E_MAXIMUM_NUMBER_OF_SNAPSHOTS_REACHED","features":[520]},{"name":"VSS_E_MAXIMUM_NUMBER_OF_VOLUMES_REACHED","features":[520]},{"name":"VSS_E_MISSING_DISK","features":[520]},{"name":"VSS_E_MISSING_HIDDEN_VOLUME","features":[520]},{"name":"VSS_E_MISSING_VOLUME","features":[520]},{"name":"VSS_E_NESTED_VOLUME_LIMIT","features":[520]},{"name":"VSS_E_NONTRANSPORTABLE_BCD","features":[520]},{"name":"VSS_E_NOT_SUPPORTED","features":[520]},{"name":"VSS_E_NO_SNAPSHOTS_IMPORTED","features":[520]},{"name":"VSS_E_OBJECT_ALREADY_EXISTS","features":[520]},{"name":"VSS_E_OBJECT_NOT_FOUND","features":[520]},{"name":"VSS_E_PROVIDER_ALREADY_REGISTERED","features":[520]},{"name":"VSS_E_PROVIDER_IN_USE","features":[520]},{"name":"VSS_E_PROVIDER_NOT_REGISTERED","features":[520]},{"name":"VSS_E_PROVIDER_VETO","features":[520]},{"name":"VSS_E_REBOOT_REQUIRED","features":[520]},{"name":"VSS_E_REMOTE_SERVER_UNAVAILABLE","features":[520]},{"name":"VSS_E_REMOTE_SERVER_UNSUPPORTED","features":[520]},{"name":"VSS_E_RESYNC_IN_PROGRESS","features":[520]},{"name":"VSS_E_REVERT_IN_PROGRESS","features":[520]},{"name":"VSS_E_REVERT_VOLUME_LOST","features":[520]},{"name":"VSS_E_SNAPSHOT_NOT_IN_SET","features":[520]},{"name":"VSS_E_SNAPSHOT_SET_IN_PROGRESS","features":[520]},{"name":"VSS_E_SOME_SNAPSHOTS_NOT_IMPORTED","features":[520]},{"name":"VSS_E_TRANSACTION_FREEZE_TIMEOUT","features":[520]},{"name":"VSS_E_TRANSACTION_THAW_TIMEOUT","features":[520]},{"name":"VSS_E_UNEXPECTED","features":[520]},{"name":"VSS_E_UNEXPECTED_PROVIDER_ERROR","features":[520]},{"name":"VSS_E_UNEXPECTED_WRITER_ERROR","features":[520]},{"name":"VSS_E_UNSELECTED_VOLUME","features":[520]},{"name":"VSS_E_UNSUPPORTED_CONTEXT","features":[520]},{"name":"VSS_E_VOLUME_IN_USE","features":[520]},{"name":"VSS_E_VOLUME_NOT_LOCAL","features":[520]},{"name":"VSS_E_VOLUME_NOT_SUPPORTED","features":[520]},{"name":"VSS_E_VOLUME_NOT_SUPPORTED_BY_PROVIDER","features":[520]},{"name":"VSS_E_WRITERERROR_INCONSISTENTSNAPSHOT","features":[520]},{"name":"VSS_E_WRITERERROR_NONRETRYABLE","features":[520]},{"name":"VSS_E_WRITERERROR_OUTOFRESOURCES","features":[520]},{"name":"VSS_E_WRITERERROR_PARTIAL_FAILURE","features":[520]},{"name":"VSS_E_WRITERERROR_RECOVERY_FAILED","features":[520]},{"name":"VSS_E_WRITERERROR_RETRYABLE","features":[520]},{"name":"VSS_E_WRITERERROR_TIMEOUT","features":[520]},{"name":"VSS_E_WRITER_ALREADY_SUBSCRIBED","features":[520]},{"name":"VSS_E_WRITER_INFRASTRUCTURE","features":[520]},{"name":"VSS_E_WRITER_NOT_RESPONDING","features":[520]},{"name":"VSS_E_WRITER_STATUS_NOT_AVAILABLE","features":[520]},{"name":"VSS_FILE_RESTORE_STATUS","features":[520]},{"name":"VSS_FILE_SPEC_BACKUP_TYPE","features":[520]},{"name":"VSS_FSBT_ALL_BACKUP_REQUIRED","features":[520]},{"name":"VSS_FSBT_ALL_SNAPSHOT_REQUIRED","features":[520]},{"name":"VSS_FSBT_CREATED_DURING_BACKUP","features":[520]},{"name":"VSS_FSBT_DIFFERENTIAL_BACKUP_REQUIRED","features":[520]},{"name":"VSS_FSBT_DIFFERENTIAL_SNAPSHOT_REQUIRED","features":[520]},{"name":"VSS_FSBT_FULL_BACKUP_REQUIRED","features":[520]},{"name":"VSS_FSBT_FULL_SNAPSHOT_REQUIRED","features":[520]},{"name":"VSS_FSBT_INCREMENTAL_BACKUP_REQUIRED","features":[520]},{"name":"VSS_FSBT_INCREMENTAL_SNAPSHOT_REQUIRED","features":[520]},{"name":"VSS_FSBT_LOG_BACKUP_REQUIRED","features":[520]},{"name":"VSS_FSBT_LOG_SNAPSHOT_REQUIRED","features":[520]},{"name":"VSS_HARDWARE_OPTIONS","features":[520]},{"name":"VSS_MGMT_OBJECT_DIFF_AREA","features":[520]},{"name":"VSS_MGMT_OBJECT_DIFF_VOLUME","features":[520]},{"name":"VSS_MGMT_OBJECT_PROP","features":[520]},{"name":"VSS_MGMT_OBJECT_TYPE","features":[520]},{"name":"VSS_MGMT_OBJECT_UNION","features":[520]},{"name":"VSS_MGMT_OBJECT_UNKNOWN","features":[520]},{"name":"VSS_MGMT_OBJECT_VOLUME","features":[520]},{"name":"VSS_OBJECT_NONE","features":[520]},{"name":"VSS_OBJECT_PROP","features":[520]},{"name":"VSS_OBJECT_PROVIDER","features":[520]},{"name":"VSS_OBJECT_SNAPSHOT","features":[520]},{"name":"VSS_OBJECT_SNAPSHOT_SET","features":[520]},{"name":"VSS_OBJECT_TYPE","features":[520]},{"name":"VSS_OBJECT_TYPE_COUNT","features":[520]},{"name":"VSS_OBJECT_UNION","features":[520]},{"name":"VSS_OBJECT_UNKNOWN","features":[520]},{"name":"VSS_ONLUNSTATECHANGE_DO_MASK_LUNS","features":[520]},{"name":"VSS_ONLUNSTATECHANGE_NOTIFY_LUN_POST_RECOVERY","features":[520]},{"name":"VSS_ONLUNSTATECHANGE_NOTIFY_LUN_PRE_RECOVERY","features":[520]},{"name":"VSS_ONLUNSTATECHANGE_NOTIFY_READ_WRITE","features":[520]},{"name":"VSS_PROTECTION_FAULT","features":[520]},{"name":"VSS_PROTECTION_FAULT_COW_READ_FAILURE","features":[520]},{"name":"VSS_PROTECTION_FAULT_COW_WRITE_FAILURE","features":[520]},{"name":"VSS_PROTECTION_FAULT_DESTROY_ALL_SNAPSHOTS","features":[520]},{"name":"VSS_PROTECTION_FAULT_DIFF_AREA_FULL","features":[520]},{"name":"VSS_PROTECTION_FAULT_DIFF_AREA_MISSING","features":[520]},{"name":"VSS_PROTECTION_FAULT_DIFF_AREA_REMOVED","features":[520]},{"name":"VSS_PROTECTION_FAULT_EXTERNAL_WRITER_TO_DIFF_AREA","features":[520]},{"name":"VSS_PROTECTION_FAULT_FILE_SYSTEM_FAILURE","features":[520]},{"name":"VSS_PROTECTION_FAULT_GROW_FAILED","features":[520]},{"name":"VSS_PROTECTION_FAULT_GROW_TOO_SLOW","features":[520]},{"name":"VSS_PROTECTION_FAULT_IO_FAILURE","features":[520]},{"name":"VSS_PROTECTION_FAULT_IO_FAILURE_DURING_ONLINE","features":[520]},{"name":"VSS_PROTECTION_FAULT_MAPPED_MEMORY_FAILURE","features":[520]},{"name":"VSS_PROTECTION_FAULT_MEMORY_ALLOCATION_FAILURE","features":[520]},{"name":"VSS_PROTECTION_FAULT_META_DATA_CORRUPTION","features":[520]},{"name":"VSS_PROTECTION_FAULT_MOUNT_DURING_CLUSTER_OFFLINE","features":[520]},{"name":"VSS_PROTECTION_FAULT_NONE","features":[520]},{"name":"VSS_PROTECTION_LEVEL","features":[520]},{"name":"VSS_PROTECTION_LEVEL_ORIGINAL_VOLUME","features":[520]},{"name":"VSS_PROTECTION_LEVEL_SNAPSHOT","features":[520]},{"name":"VSS_PROVIDER_CAPABILITIES","features":[520]},{"name":"VSS_PROVIDER_PROP","features":[520]},{"name":"VSS_PROVIDER_TYPE","features":[520]},{"name":"VSS_PROV_FILESHARE","features":[520]},{"name":"VSS_PROV_HARDWARE","features":[520]},{"name":"VSS_PROV_SOFTWARE","features":[520]},{"name":"VSS_PROV_SYSTEM","features":[520]},{"name":"VSS_PROV_UNKNOWN","features":[520]},{"name":"VSS_PRV_CAPABILITY_CLUSTERED","features":[520]},{"name":"VSS_PRV_CAPABILITY_COMPLIANT","features":[520]},{"name":"VSS_PRV_CAPABILITY_DIFFERENTIAL","features":[520]},{"name":"VSS_PRV_CAPABILITY_LEGACY","features":[520]},{"name":"VSS_PRV_CAPABILITY_LUN_REPOINT","features":[520]},{"name":"VSS_PRV_CAPABILITY_LUN_RESYNC","features":[520]},{"name":"VSS_PRV_CAPABILITY_MULTIPLE_IMPORT","features":[520]},{"name":"VSS_PRV_CAPABILITY_OFFLINE_CREATION","features":[520]},{"name":"VSS_PRV_CAPABILITY_PLEX","features":[520]},{"name":"VSS_PRV_CAPABILITY_RECYCLING","features":[520]},{"name":"VSS_RECOVERY_NO_VOLUME_CHECK","features":[520]},{"name":"VSS_RECOVERY_OPTIONS","features":[520]},{"name":"VSS_RECOVERY_REVERT_IDENTITY_ALL","features":[520]},{"name":"VSS_RESTOREMETHOD_ENUM","features":[520]},{"name":"VSS_RESTORE_TARGET","features":[520]},{"name":"VSS_RESTORE_TYPE","features":[520]},{"name":"VSS_RF_ALL","features":[520]},{"name":"VSS_RF_NONE","features":[520]},{"name":"VSS_RF_PARTIAL","features":[520]},{"name":"VSS_RF_UNDEFINED","features":[520]},{"name":"VSS_RME_CUSTOM","features":[520]},{"name":"VSS_RME_RESTORE_AT_REBOOT","features":[520]},{"name":"VSS_RME_RESTORE_AT_REBOOT_IF_CANNOT_REPLACE","features":[520]},{"name":"VSS_RME_RESTORE_IF_CAN_REPLACE","features":[520]},{"name":"VSS_RME_RESTORE_IF_NOT_THERE","features":[520]},{"name":"VSS_RME_RESTORE_STOP_START","features":[520]},{"name":"VSS_RME_RESTORE_TO_ALTERNATE_LOCATION","features":[520]},{"name":"VSS_RME_STOP_RESTORE_START","features":[520]},{"name":"VSS_RME_UNDEFINED","features":[520]},{"name":"VSS_ROLLFORWARD_TYPE","features":[520]},{"name":"VSS_RS_ALL","features":[520]},{"name":"VSS_RS_FAILED","features":[520]},{"name":"VSS_RS_NONE","features":[520]},{"name":"VSS_RS_UNDEFINED","features":[520]},{"name":"VSS_RTYPE_BY_COPY","features":[520]},{"name":"VSS_RTYPE_IMPORT","features":[520]},{"name":"VSS_RTYPE_OTHER","features":[520]},{"name":"VSS_RTYPE_UNDEFINED","features":[520]},{"name":"VSS_RT_ALTERNATE","features":[520]},{"name":"VSS_RT_DIRECTED","features":[520]},{"name":"VSS_RT_ORIGINAL","features":[520]},{"name":"VSS_RT_ORIGINAL_LOCATION","features":[520]},{"name":"VSS_RT_UNDEFINED","features":[520]},{"name":"VSS_SC_DISABLE_CONTENTINDEX","features":[520]},{"name":"VSS_SC_DISABLE_DEFRAG","features":[520]},{"name":"VSS_SM_ALL_FLAGS","features":[520]},{"name":"VSS_SM_BACKUP_EVENTS_FLAG","features":[520]},{"name":"VSS_SM_IO_THROTTLING_FLAG","features":[520]},{"name":"VSS_SM_POST_SNAPSHOT_FLAG","features":[520]},{"name":"VSS_SM_RESTORE_EVENTS_FLAG","features":[520]},{"name":"VSS_SNAPSHOT_COMPATIBILITY","features":[520]},{"name":"VSS_SNAPSHOT_CONTEXT","features":[520]},{"name":"VSS_SNAPSHOT_PROP","features":[520]},{"name":"VSS_SNAPSHOT_PROPERTY_ID","features":[520]},{"name":"VSS_SNAPSHOT_STATE","features":[520]},{"name":"VSS_SOURCE_TYPE","features":[520]},{"name":"VSS_SPROPID_CREATION_TIMESTAMP","features":[520]},{"name":"VSS_SPROPID_EXPOSED_NAME","features":[520]},{"name":"VSS_SPROPID_EXPOSED_PATH","features":[520]},{"name":"VSS_SPROPID_ORIGINAL_VOLUME","features":[520]},{"name":"VSS_SPROPID_ORIGINATING_MACHINE","features":[520]},{"name":"VSS_SPROPID_PROVIDER_ID","features":[520]},{"name":"VSS_SPROPID_SERVICE_MACHINE","features":[520]},{"name":"VSS_SPROPID_SNAPSHOTS_COUNT","features":[520]},{"name":"VSS_SPROPID_SNAPSHOT_ATTRIBUTES","features":[520]},{"name":"VSS_SPROPID_SNAPSHOT_DEVICE","features":[520]},{"name":"VSS_SPROPID_SNAPSHOT_ID","features":[520]},{"name":"VSS_SPROPID_SNAPSHOT_SET_ID","features":[520]},{"name":"VSS_SPROPID_STATUS","features":[520]},{"name":"VSS_SPROPID_UNKNOWN","features":[520]},{"name":"VSS_SS_ABORTED","features":[520]},{"name":"VSS_SS_COMMITTED","features":[520]},{"name":"VSS_SS_COUNT","features":[520]},{"name":"VSS_SS_CREATED","features":[520]},{"name":"VSS_SS_DELETED","features":[520]},{"name":"VSS_SS_POSTCOMMITTED","features":[520]},{"name":"VSS_SS_PRECOMMITTED","features":[520]},{"name":"VSS_SS_PREFINALCOMMITTED","features":[520]},{"name":"VSS_SS_PREPARED","features":[520]},{"name":"VSS_SS_PREPARING","features":[520]},{"name":"VSS_SS_PROCESSING_COMMIT","features":[520]},{"name":"VSS_SS_PROCESSING_POSTCOMMIT","features":[520]},{"name":"VSS_SS_PROCESSING_POSTFINALCOMMIT","features":[520]},{"name":"VSS_SS_PROCESSING_PRECOMMIT","features":[520]},{"name":"VSS_SS_PROCESSING_PREFINALCOMMIT","features":[520]},{"name":"VSS_SS_PROCESSING_PREPARE","features":[520]},{"name":"VSS_SS_UNKNOWN","features":[520]},{"name":"VSS_ST_NONTRANSACTEDDB","features":[520]},{"name":"VSS_ST_OTHER","features":[520]},{"name":"VSS_ST_TRANSACTEDDB","features":[520]},{"name":"VSS_ST_UNDEFINED","features":[520]},{"name":"VSS_SUBSCRIBE_MASK","features":[520]},{"name":"VSS_S_ASYNC_CANCELLED","features":[520]},{"name":"VSS_S_ASYNC_FINISHED","features":[520]},{"name":"VSS_S_ASYNC_PENDING","features":[520]},{"name":"VSS_S_SOME_SNAPSHOTS_NOT_IMPORTED","features":[520]},{"name":"VSS_USAGE_TYPE","features":[520]},{"name":"VSS_UT_BOOTABLESYSTEMSTATE","features":[520]},{"name":"VSS_UT_OTHER","features":[520]},{"name":"VSS_UT_SYSTEMSERVICE","features":[520]},{"name":"VSS_UT_UNDEFINED","features":[520]},{"name":"VSS_UT_USERDATA","features":[520]},{"name":"VSS_VOLSNAP_ATTR_AUTORECOVER","features":[520]},{"name":"VSS_VOLSNAP_ATTR_CLIENT_ACCESSIBLE","features":[520]},{"name":"VSS_VOLSNAP_ATTR_DELAYED_POSTSNAPSHOT","features":[520]},{"name":"VSS_VOLSNAP_ATTR_DIFFERENTIAL","features":[520]},{"name":"VSS_VOLSNAP_ATTR_EXPOSED_LOCALLY","features":[520]},{"name":"VSS_VOLSNAP_ATTR_EXPOSED_REMOTELY","features":[520]},{"name":"VSS_VOLSNAP_ATTR_FILE_SHARE","features":[520]},{"name":"VSS_VOLSNAP_ATTR_HARDWARE_ASSISTED","features":[520]},{"name":"VSS_VOLSNAP_ATTR_IMPORTED","features":[520]},{"name":"VSS_VOLSNAP_ATTR_NOT_SURFACED","features":[520]},{"name":"VSS_VOLSNAP_ATTR_NOT_TRANSACTED","features":[520]},{"name":"VSS_VOLSNAP_ATTR_NO_AUTORECOVERY","features":[520]},{"name":"VSS_VOLSNAP_ATTR_NO_AUTO_RELEASE","features":[520]},{"name":"VSS_VOLSNAP_ATTR_NO_WRITERS","features":[520]},{"name":"VSS_VOLSNAP_ATTR_PERSISTENT","features":[520]},{"name":"VSS_VOLSNAP_ATTR_PLEX","features":[520]},{"name":"VSS_VOLSNAP_ATTR_ROLLBACK_RECOVERY","features":[520]},{"name":"VSS_VOLSNAP_ATTR_TRANSPORTABLE","features":[520]},{"name":"VSS_VOLSNAP_ATTR_TXF_RECOVERY","features":[520]},{"name":"VSS_VOLUME_PROP","features":[520]},{"name":"VSS_VOLUME_PROTECTION_INFO","features":[305,520]},{"name":"VSS_VOLUME_SNAPSHOT_ATTRIBUTES","features":[520]},{"name":"VSS_WRE_ALWAYS","features":[520]},{"name":"VSS_WRE_IF_REPLACE_FAILS","features":[520]},{"name":"VSS_WRE_NEVER","features":[520]},{"name":"VSS_WRE_UNDEFINED","features":[520]},{"name":"VSS_WRITERRESTORE_ENUM","features":[520]},{"name":"VSS_WRITER_STATE","features":[520]},{"name":"VSS_WS_COUNT","features":[520]},{"name":"VSS_WS_FAILED_AT_BACKUPSHUTDOWN","features":[520]},{"name":"VSS_WS_FAILED_AT_BACKUP_COMPLETE","features":[520]},{"name":"VSS_WS_FAILED_AT_FREEZE","features":[520]},{"name":"VSS_WS_FAILED_AT_IDENTIFY","features":[520]},{"name":"VSS_WS_FAILED_AT_POST_RESTORE","features":[520]},{"name":"VSS_WS_FAILED_AT_POST_SNAPSHOT","features":[520]},{"name":"VSS_WS_FAILED_AT_PREPARE_BACKUP","features":[520]},{"name":"VSS_WS_FAILED_AT_PREPARE_SNAPSHOT","features":[520]},{"name":"VSS_WS_FAILED_AT_PRE_RESTORE","features":[520]},{"name":"VSS_WS_FAILED_AT_THAW","features":[520]},{"name":"VSS_WS_STABLE","features":[520]},{"name":"VSS_WS_UNKNOWN","features":[520]},{"name":"VSS_WS_WAITING_FOR_BACKUP_COMPLETE","features":[520]},{"name":"VSS_WS_WAITING_FOR_FREEZE","features":[520]},{"name":"VSS_WS_WAITING_FOR_POST_SNAPSHOT","features":[520]},{"name":"VSS_WS_WAITING_FOR_THAW","features":[520]},{"name":"VssSnapshotMgmt","features":[520]}],"528":[{"name":"ABORTPROC","features":[305,316,414]},{"name":"AbortDoc","features":[316,414]},{"name":"DC_BINNAMES","features":[414]},{"name":"DC_BINS","features":[414]},{"name":"DC_COLLATE","features":[414]},{"name":"DC_COLORDEVICE","features":[414]},{"name":"DC_COPIES","features":[414]},{"name":"DC_DRIVER","features":[414]},{"name":"DC_DUPLEX","features":[414]},{"name":"DC_ENUMRESOLUTIONS","features":[414]},{"name":"DC_EXTRA","features":[414]},{"name":"DC_FIELDS","features":[414]},{"name":"DC_FILEDEPENDENCIES","features":[414]},{"name":"DC_MAXEXTENT","features":[414]},{"name":"DC_MEDIAREADY","features":[414]},{"name":"DC_MEDIATYPENAMES","features":[414]},{"name":"DC_MEDIATYPES","features":[414]},{"name":"DC_MINEXTENT","features":[414]},{"name":"DC_NUP","features":[414]},{"name":"DC_ORIENTATION","features":[414]},{"name":"DC_PAPERNAMES","features":[414]},{"name":"DC_PAPERS","features":[414]},{"name":"DC_PAPERSIZE","features":[414]},{"name":"DC_PERSONALITY","features":[414]},{"name":"DC_PRINTERMEM","features":[414]},{"name":"DC_PRINTRATE","features":[414]},{"name":"DC_PRINTRATEPPM","features":[414]},{"name":"DC_PRINTRATEUNIT","features":[414]},{"name":"DC_SIZE","features":[414]},{"name":"DC_STAPLE","features":[414]},{"name":"DC_TRUETYPE","features":[414]},{"name":"DC_VERSION","features":[414]},{"name":"DOCINFOA","features":[414]},{"name":"DOCINFOW","features":[414]},{"name":"DRAWPATRECT","features":[305,414]},{"name":"DeviceCapabilitiesA","features":[305,316,414]},{"name":"DeviceCapabilitiesW","features":[305,316,414]},{"name":"EndDoc","features":[316,414]},{"name":"EndPage","features":[316,414]},{"name":"Escape","features":[316,414]},{"name":"ExtEscape","features":[316,414]},{"name":"IXpsDocumentPackageTarget","features":[414]},{"name":"IXpsDocumentPackageTarget3D","features":[414]},{"name":"IXpsOMBrush","features":[414]},{"name":"IXpsOMCanvas","features":[414]},{"name":"IXpsOMColorProfileResource","features":[414]},{"name":"IXpsOMColorProfileResourceCollection","features":[414]},{"name":"IXpsOMCoreProperties","features":[414]},{"name":"IXpsOMDashCollection","features":[414]},{"name":"IXpsOMDictionary","features":[414]},{"name":"IXpsOMDocument","features":[414]},{"name":"IXpsOMDocumentCollection","features":[414]},{"name":"IXpsOMDocumentSequence","features":[414]},{"name":"IXpsOMDocumentStructureResource","features":[414]},{"name":"IXpsOMFontResource","features":[414]},{"name":"IXpsOMFontResourceCollection","features":[414]},{"name":"IXpsOMGeometry","features":[414]},{"name":"IXpsOMGeometryFigure","features":[414]},{"name":"IXpsOMGeometryFigureCollection","features":[414]},{"name":"IXpsOMGlyphs","features":[414]},{"name":"IXpsOMGlyphsEditor","features":[414]},{"name":"IXpsOMGradientBrush","features":[414]},{"name":"IXpsOMGradientStop","features":[414]},{"name":"IXpsOMGradientStopCollection","features":[414]},{"name":"IXpsOMImageBrush","features":[414]},{"name":"IXpsOMImageResource","features":[414]},{"name":"IXpsOMImageResourceCollection","features":[414]},{"name":"IXpsOMLinearGradientBrush","features":[414]},{"name":"IXpsOMMatrixTransform","features":[414]},{"name":"IXpsOMNameCollection","features":[414]},{"name":"IXpsOMObjectFactory","features":[414]},{"name":"IXpsOMObjectFactory1","features":[414]},{"name":"IXpsOMPackage","features":[414]},{"name":"IXpsOMPackage1","features":[414]},{"name":"IXpsOMPackageTarget","features":[414]},{"name":"IXpsOMPackageWriter","features":[414]},{"name":"IXpsOMPackageWriter3D","features":[414]},{"name":"IXpsOMPage","features":[414]},{"name":"IXpsOMPage1","features":[414]},{"name":"IXpsOMPageReference","features":[414]},{"name":"IXpsOMPageReferenceCollection","features":[414]},{"name":"IXpsOMPart","features":[414]},{"name":"IXpsOMPartResources","features":[414]},{"name":"IXpsOMPartUriCollection","features":[414]},{"name":"IXpsOMPath","features":[414]},{"name":"IXpsOMPrintTicketResource","features":[414]},{"name":"IXpsOMRadialGradientBrush","features":[414]},{"name":"IXpsOMRemoteDictionaryResource","features":[414]},{"name":"IXpsOMRemoteDictionaryResource1","features":[414]},{"name":"IXpsOMRemoteDictionaryResourceCollection","features":[414]},{"name":"IXpsOMResource","features":[414]},{"name":"IXpsOMShareable","features":[414]},{"name":"IXpsOMSignatureBlockResource","features":[414]},{"name":"IXpsOMSignatureBlockResourceCollection","features":[414]},{"name":"IXpsOMSolidColorBrush","features":[414]},{"name":"IXpsOMStoryFragmentsResource","features":[414]},{"name":"IXpsOMThumbnailGenerator","features":[414]},{"name":"IXpsOMTileBrush","features":[414]},{"name":"IXpsOMVisual","features":[414]},{"name":"IXpsOMVisualBrush","features":[414]},{"name":"IXpsOMVisualCollection","features":[414]},{"name":"IXpsSignature","features":[414]},{"name":"IXpsSignatureBlock","features":[414]},{"name":"IXpsSignatureBlockCollection","features":[414]},{"name":"IXpsSignatureCollection","features":[414]},{"name":"IXpsSignatureManager","features":[414]},{"name":"IXpsSignatureRequest","features":[414]},{"name":"IXpsSignatureRequestCollection","features":[414]},{"name":"IXpsSigningOptions","features":[414]},{"name":"PRINTER_DEVICE_CAPABILITIES","features":[414]},{"name":"PRINT_WINDOW_FLAGS","features":[414]},{"name":"PSFEATURE_CUSTPAPER","features":[414]},{"name":"PSFEATURE_OUTPUT","features":[305,414]},{"name":"PSINJECTDATA","features":[414]},{"name":"PSINJECT_BEGINDEFAULTS","features":[414]},{"name":"PSINJECT_BEGINPAGESETUP","features":[414]},{"name":"PSINJECT_BEGINPROLOG","features":[414]},{"name":"PSINJECT_BEGINSETUP","features":[414]},{"name":"PSINJECT_BEGINSTREAM","features":[414]},{"name":"PSINJECT_BOUNDINGBOX","features":[414]},{"name":"PSINJECT_COMMENTS","features":[414]},{"name":"PSINJECT_DOCNEEDEDRES","features":[414]},{"name":"PSINJECT_DOCSUPPLIEDRES","features":[414]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORS","features":[414]},{"name":"PSINJECT_DOCUMENTPROCESSCOLORSATEND","features":[414]},{"name":"PSINJECT_ENDDEFAULTS","features":[414]},{"name":"PSINJECT_ENDPAGECOMMENTS","features":[414]},{"name":"PSINJECT_ENDPAGESETUP","features":[414]},{"name":"PSINJECT_ENDPROLOG","features":[414]},{"name":"PSINJECT_ENDSETUP","features":[414]},{"name":"PSINJECT_ENDSTREAM","features":[414]},{"name":"PSINJECT_EOF","features":[414]},{"name":"PSINJECT_ORIENTATION","features":[414]},{"name":"PSINJECT_PAGEBBOX","features":[414]},{"name":"PSINJECT_PAGENUMBER","features":[414]},{"name":"PSINJECT_PAGEORDER","features":[414]},{"name":"PSINJECT_PAGES","features":[414]},{"name":"PSINJECT_PAGESATEND","features":[414]},{"name":"PSINJECT_PAGETRAILER","features":[414]},{"name":"PSINJECT_PLATECOLOR","features":[414]},{"name":"PSINJECT_POINT","features":[414]},{"name":"PSINJECT_PSADOBE","features":[414]},{"name":"PSINJECT_SHOWPAGE","features":[414]},{"name":"PSINJECT_TRAILER","features":[414]},{"name":"PSINJECT_VMRESTORE","features":[414]},{"name":"PSINJECT_VMSAVE","features":[414]},{"name":"PW_CLIENTONLY","features":[414]},{"name":"PrintWindow","features":[305,316,414]},{"name":"SetAbortProc","features":[305,316,414]},{"name":"StartDocA","features":[316,414]},{"name":"StartDocW","features":[316,414]},{"name":"StartPage","features":[316,414]},{"name":"XPS_COLOR","features":[414]},{"name":"XPS_COLOR_INTERPOLATION","features":[414]},{"name":"XPS_COLOR_INTERPOLATION_SCRGBLINEAR","features":[414]},{"name":"XPS_COLOR_INTERPOLATION_SRGBLINEAR","features":[414]},{"name":"XPS_COLOR_TYPE","features":[414]},{"name":"XPS_COLOR_TYPE_CONTEXT","features":[414]},{"name":"XPS_COLOR_TYPE_SCRGB","features":[414]},{"name":"XPS_COLOR_TYPE_SRGB","features":[414]},{"name":"XPS_DASH","features":[414]},{"name":"XPS_DASH_CAP","features":[414]},{"name":"XPS_DASH_CAP_FLAT","features":[414]},{"name":"XPS_DASH_CAP_ROUND","features":[414]},{"name":"XPS_DASH_CAP_SQUARE","features":[414]},{"name":"XPS_DASH_CAP_TRIANGLE","features":[414]},{"name":"XPS_DOCUMENT_TYPE","features":[414]},{"name":"XPS_DOCUMENT_TYPE_OPENXPS","features":[414]},{"name":"XPS_DOCUMENT_TYPE_UNSPECIFIED","features":[414]},{"name":"XPS_DOCUMENT_TYPE_XPS","features":[414]},{"name":"XPS_E_ABSOLUTE_REFERENCE","features":[414]},{"name":"XPS_E_ALREADY_OWNED","features":[414]},{"name":"XPS_E_BLEED_BOX_PAGE_DIMENSIONS_NOT_IN_SYNC","features":[414]},{"name":"XPS_E_BOTH_PATHFIGURE_AND_ABBR_SYNTAX_PRESENT","features":[414]},{"name":"XPS_E_BOTH_RESOURCE_AND_SOURCEATTR_PRESENT","features":[414]},{"name":"XPS_E_CARET_OUTSIDE_STRING","features":[414]},{"name":"XPS_E_CARET_OUT_OF_ORDER","features":[414]},{"name":"XPS_E_COLOR_COMPONENT_OUT_OF_RANGE","features":[414]},{"name":"XPS_E_DICTIONARY_ITEM_NAMED","features":[414]},{"name":"XPS_E_DUPLICATE_NAMES","features":[414]},{"name":"XPS_E_DUPLICATE_RESOURCE_KEYS","features":[414]},{"name":"XPS_E_INDEX_OUT_OF_RANGE","features":[414]},{"name":"XPS_E_INVALID_BLEED_BOX","features":[414]},{"name":"XPS_E_INVALID_CONTENT_BOX","features":[414]},{"name":"XPS_E_INVALID_CONTENT_TYPE","features":[414]},{"name":"XPS_E_INVALID_FLOAT","features":[414]},{"name":"XPS_E_INVALID_FONT_URI","features":[414]},{"name":"XPS_E_INVALID_LANGUAGE","features":[414]},{"name":"XPS_E_INVALID_LOOKUP_TYPE","features":[414]},{"name":"XPS_E_INVALID_MARKUP","features":[414]},{"name":"XPS_E_INVALID_NAME","features":[414]},{"name":"XPS_E_INVALID_NUMBER_OF_COLOR_CHANNELS","features":[414]},{"name":"XPS_E_INVALID_NUMBER_OF_POINTS_IN_CURVE_SEGMENTS","features":[414]},{"name":"XPS_E_INVALID_OBFUSCATED_FONT_URI","features":[414]},{"name":"XPS_E_INVALID_PAGE_SIZE","features":[414]},{"name":"XPS_E_INVALID_RESOURCE_KEY","features":[414]},{"name":"XPS_E_INVALID_SIGNATUREBLOCK_MARKUP","features":[414]},{"name":"XPS_E_INVALID_THUMBNAIL_IMAGE_TYPE","features":[414]},{"name":"XPS_E_INVALID_XML_ENCODING","features":[414]},{"name":"XPS_E_MAPPING_OUTSIDE_INDICES","features":[414]},{"name":"XPS_E_MAPPING_OUTSIDE_STRING","features":[414]},{"name":"XPS_E_MAPPING_OUT_OF_ORDER","features":[414]},{"name":"XPS_E_MARKUP_COMPATIBILITY_ELEMENTS","features":[414]},{"name":"XPS_E_MISSING_COLORPROFILE","features":[414]},{"name":"XPS_E_MISSING_DISCARDCONTROL","features":[414]},{"name":"XPS_E_MISSING_DOCUMENT","features":[414]},{"name":"XPS_E_MISSING_DOCUMENTSEQUENCE_RELATIONSHIP","features":[414]},{"name":"XPS_E_MISSING_FONTURI","features":[414]},{"name":"XPS_E_MISSING_GLYPHS","features":[414]},{"name":"XPS_E_MISSING_IMAGE_IN_IMAGEBRUSH","features":[414]},{"name":"XPS_E_MISSING_LOOKUP","features":[414]},{"name":"XPS_E_MISSING_NAME","features":[414]},{"name":"XPS_E_MISSING_PAGE_IN_DOCUMENT","features":[414]},{"name":"XPS_E_MISSING_PAGE_IN_PAGEREFERENCE","features":[414]},{"name":"XPS_E_MISSING_PART_REFERENCE","features":[414]},{"name":"XPS_E_MISSING_PART_STREAM","features":[414]},{"name":"XPS_E_MISSING_REFERRED_DOCUMENT","features":[414]},{"name":"XPS_E_MISSING_REFERRED_PAGE","features":[414]},{"name":"XPS_E_MISSING_RELATIONSHIP_TARGET","features":[414]},{"name":"XPS_E_MISSING_RESOURCE_KEY","features":[414]},{"name":"XPS_E_MISSING_RESOURCE_RELATIONSHIP","features":[414]},{"name":"XPS_E_MISSING_RESTRICTED_FONT_RELATIONSHIP","features":[414]},{"name":"XPS_E_MISSING_SEGMENT_DATA","features":[414]},{"name":"XPS_E_MULTIPLE_DOCUMENTSEQUENCE_RELATIONSHIPS","features":[414]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENT","features":[414]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_DOCUMENTSEQUENCE","features":[414]},{"name":"XPS_E_MULTIPLE_PRINTTICKETS_ON_PAGE","features":[414]},{"name":"XPS_E_MULTIPLE_REFERENCES_TO_PART","features":[414]},{"name":"XPS_E_MULTIPLE_RESOURCES","features":[414]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PACKAGE","features":[414]},{"name":"XPS_E_MULTIPLE_THUMBNAILS_ON_PAGE","features":[414]},{"name":"XPS_E_NEGATIVE_FLOAT","features":[414]},{"name":"XPS_E_NESTED_REMOTE_DICTIONARY","features":[414]},{"name":"XPS_E_NOT_ENOUGH_GRADIENT_STOPS","features":[414]},{"name":"XPS_E_NO_CUSTOM_OBJECTS","features":[414]},{"name":"XPS_E_OBJECT_DETACHED","features":[414]},{"name":"XPS_E_ODD_BIDILEVEL","features":[414]},{"name":"XPS_E_ONE_TO_ONE_MAPPING_EXPECTED","features":[414]},{"name":"XPS_E_PACKAGE_ALREADY_OPENED","features":[414]},{"name":"XPS_E_PACKAGE_NOT_OPENED","features":[414]},{"name":"XPS_E_PACKAGE_WRITER_NOT_CLOSED","features":[414]},{"name":"XPS_E_RELATIONSHIP_EXTERNAL","features":[414]},{"name":"XPS_E_RESOURCE_NOT_OWNED","features":[414]},{"name":"XPS_E_RESTRICTED_FONT_NOT_OBFUSCATED","features":[414]},{"name":"XPS_E_SIGNATUREID_DUP","features":[414]},{"name":"XPS_E_SIGREQUESTID_DUP","features":[414]},{"name":"XPS_E_STRING_TOO_LONG","features":[414]},{"name":"XPS_E_TOO_MANY_INDICES","features":[414]},{"name":"XPS_E_UNAVAILABLE_PACKAGE","features":[414]},{"name":"XPS_E_UNEXPECTED_COLORPROFILE","features":[414]},{"name":"XPS_E_UNEXPECTED_CONTENT_TYPE","features":[414]},{"name":"XPS_E_UNEXPECTED_RELATIONSHIP_TYPE","features":[414]},{"name":"XPS_E_UNEXPECTED_RESTRICTED_FONT_RELATIONSHIP","features":[414]},{"name":"XPS_E_VISUAL_CIRCULAR_REF","features":[414]},{"name":"XPS_E_XKEY_ATTR_PRESENT_OUTSIDE_RES_DICT","features":[414]},{"name":"XPS_FILL_RULE","features":[414]},{"name":"XPS_FILL_RULE_EVENODD","features":[414]},{"name":"XPS_FILL_RULE_NONZERO","features":[414]},{"name":"XPS_FONT_EMBEDDING","features":[414]},{"name":"XPS_FONT_EMBEDDING_NORMAL","features":[414]},{"name":"XPS_FONT_EMBEDDING_OBFUSCATED","features":[414]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED","features":[414]},{"name":"XPS_FONT_EMBEDDING_RESTRICTED_UNOBFUSCATED","features":[414]},{"name":"XPS_GLYPH_INDEX","features":[414]},{"name":"XPS_GLYPH_MAPPING","features":[414]},{"name":"XPS_IMAGE_TYPE","features":[414]},{"name":"XPS_IMAGE_TYPE_JPEG","features":[414]},{"name":"XPS_IMAGE_TYPE_JXR","features":[414]},{"name":"XPS_IMAGE_TYPE_PNG","features":[414]},{"name":"XPS_IMAGE_TYPE_TIFF","features":[414]},{"name":"XPS_IMAGE_TYPE_WDP","features":[414]},{"name":"XPS_INTERLEAVING","features":[414]},{"name":"XPS_INTERLEAVING_OFF","features":[414]},{"name":"XPS_INTERLEAVING_ON","features":[414]},{"name":"XPS_LINE_CAP","features":[414]},{"name":"XPS_LINE_CAP_FLAT","features":[414]},{"name":"XPS_LINE_CAP_ROUND","features":[414]},{"name":"XPS_LINE_CAP_SQUARE","features":[414]},{"name":"XPS_LINE_CAP_TRIANGLE","features":[414]},{"name":"XPS_LINE_JOIN","features":[414]},{"name":"XPS_LINE_JOIN_BEVEL","features":[414]},{"name":"XPS_LINE_JOIN_MITER","features":[414]},{"name":"XPS_LINE_JOIN_ROUND","features":[414]},{"name":"XPS_MATRIX","features":[414]},{"name":"XPS_OBJECT_TYPE","features":[414]},{"name":"XPS_OBJECT_TYPE_CANVAS","features":[414]},{"name":"XPS_OBJECT_TYPE_GEOMETRY","features":[414]},{"name":"XPS_OBJECT_TYPE_GLYPHS","features":[414]},{"name":"XPS_OBJECT_TYPE_IMAGE_BRUSH","features":[414]},{"name":"XPS_OBJECT_TYPE_LINEAR_GRADIENT_BRUSH","features":[414]},{"name":"XPS_OBJECT_TYPE_MATRIX_TRANSFORM","features":[414]},{"name":"XPS_OBJECT_TYPE_PATH","features":[414]},{"name":"XPS_OBJECT_TYPE_RADIAL_GRADIENT_BRUSH","features":[414]},{"name":"XPS_OBJECT_TYPE_SOLID_COLOR_BRUSH","features":[414]},{"name":"XPS_OBJECT_TYPE_VISUAL_BRUSH","features":[414]},{"name":"XPS_POINT","features":[414]},{"name":"XPS_RECT","features":[414]},{"name":"XPS_SEGMENT_STROKE_PATTERN","features":[414]},{"name":"XPS_SEGMENT_STROKE_PATTERN_ALL","features":[414]},{"name":"XPS_SEGMENT_STROKE_PATTERN_MIXED","features":[414]},{"name":"XPS_SEGMENT_STROKE_PATTERN_NONE","features":[414]},{"name":"XPS_SEGMENT_TYPE","features":[414]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_CLOCKWISE","features":[414]},{"name":"XPS_SEGMENT_TYPE_ARC_LARGE_COUNTERCLOCKWISE","features":[414]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_CLOCKWISE","features":[414]},{"name":"XPS_SEGMENT_TYPE_ARC_SMALL_COUNTERCLOCKWISE","features":[414]},{"name":"XPS_SEGMENT_TYPE_BEZIER","features":[414]},{"name":"XPS_SEGMENT_TYPE_LINE","features":[414]},{"name":"XPS_SEGMENT_TYPE_QUADRATIC_BEZIER","features":[414]},{"name":"XPS_SIGNATURE_STATUS","features":[414]},{"name":"XPS_SIGNATURE_STATUS_BROKEN","features":[414]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLETE","features":[414]},{"name":"XPS_SIGNATURE_STATUS_INCOMPLIANT","features":[414]},{"name":"XPS_SIGNATURE_STATUS_QUESTIONABLE","features":[414]},{"name":"XPS_SIGNATURE_STATUS_VALID","features":[414]},{"name":"XPS_SIGN_FLAGS","features":[414]},{"name":"XPS_SIGN_FLAGS_IGNORE_MARKUP_COMPATIBILITY","features":[414]},{"name":"XPS_SIGN_FLAGS_NONE","features":[414]},{"name":"XPS_SIGN_POLICY","features":[414]},{"name":"XPS_SIGN_POLICY_ALL","features":[414]},{"name":"XPS_SIGN_POLICY_CORE_PROPERTIES","features":[414]},{"name":"XPS_SIGN_POLICY_DISCARD_CONTROL","features":[414]},{"name":"XPS_SIGN_POLICY_NONE","features":[414]},{"name":"XPS_SIGN_POLICY_PRINT_TICKET","features":[414]},{"name":"XPS_SIGN_POLICY_SIGNATURE_RELATIONSHIPS","features":[414]},{"name":"XPS_SIZE","features":[414]},{"name":"XPS_SPREAD_METHOD","features":[414]},{"name":"XPS_SPREAD_METHOD_PAD","features":[414]},{"name":"XPS_SPREAD_METHOD_REFLECT","features":[414]},{"name":"XPS_SPREAD_METHOD_REPEAT","features":[414]},{"name":"XPS_STYLE_SIMULATION","features":[414]},{"name":"XPS_STYLE_SIMULATION_BOLD","features":[414]},{"name":"XPS_STYLE_SIMULATION_BOLDITALIC","features":[414]},{"name":"XPS_STYLE_SIMULATION_ITALIC","features":[414]},{"name":"XPS_STYLE_SIMULATION_NONE","features":[414]},{"name":"XPS_THUMBNAIL_SIZE","features":[414]},{"name":"XPS_THUMBNAIL_SIZE_LARGE","features":[414]},{"name":"XPS_THUMBNAIL_SIZE_MEDIUM","features":[414]},{"name":"XPS_THUMBNAIL_SIZE_SMALL","features":[414]},{"name":"XPS_THUMBNAIL_SIZE_VERYSMALL","features":[414]},{"name":"XPS_TILE_MODE","features":[414]},{"name":"XPS_TILE_MODE_FLIPX","features":[414]},{"name":"XPS_TILE_MODE_FLIPXY","features":[414]},{"name":"XPS_TILE_MODE_FLIPY","features":[414]},{"name":"XPS_TILE_MODE_NONE","features":[414]},{"name":"XPS_TILE_MODE_TILE","features":[414]},{"name":"XpsOMObjectFactory","features":[414]},{"name":"XpsOMThumbnailGenerator","features":[414]},{"name":"XpsSignatureManager","features":[414]}],"529":[{"name":"ID_DOCUMENTPACKAGETARGET_MSXPS","features":[521]},{"name":"ID_DOCUMENTPACKAGETARGET_OPENXPS","features":[521]},{"name":"ID_DOCUMENTPACKAGETARGET_OPENXPS_WITH_3D","features":[521]},{"name":"IPrintDocumentPackageStatusEvent","features":[521,356]},{"name":"IPrintDocumentPackageTarget","features":[521]},{"name":"IPrintDocumentPackageTarget2","features":[521]},{"name":"IPrintDocumentPackageTargetFactory","features":[521]},{"name":"IXpsPrintJob","features":[521]},{"name":"IXpsPrintJobStream","features":[521,356]},{"name":"PrintDocumentPackageCompletion","features":[521]},{"name":"PrintDocumentPackageCompletion_Canceled","features":[521]},{"name":"PrintDocumentPackageCompletion_Completed","features":[521]},{"name":"PrintDocumentPackageCompletion_Failed","features":[521]},{"name":"PrintDocumentPackageCompletion_InProgress","features":[521]},{"name":"PrintDocumentPackageStatus","features":[521]},{"name":"PrintDocumentPackageTarget","features":[521]},{"name":"PrintDocumentPackageTargetFactory","features":[521]},{"name":"StartXpsPrintJob","features":[305,521,356]},{"name":"StartXpsPrintJob1","features":[305,521]},{"name":"XPS_JOB_CANCELLED","features":[521]},{"name":"XPS_JOB_COMPLETED","features":[521]},{"name":"XPS_JOB_COMPLETION","features":[521]},{"name":"XPS_JOB_FAILED","features":[521]},{"name":"XPS_JOB_IN_PROGRESS","features":[521]},{"name":"XPS_JOB_STATUS","features":[521]}],"530":[{"name":"ADRENTRY","features":[305,386,356]},{"name":"ADRLIST","features":[305,386,356]},{"name":"ADRPARM","features":[305,386,356]},{"name":"BuildDisplayTable","features":[305,386,356]},{"name":"CALLERRELEASE","features":[386]},{"name":"ChangeIdleRoutine","features":[305,386]},{"name":"CreateIProp","features":[386]},{"name":"CreateTable","features":[386]},{"name":"DTBLBUTTON","features":[386]},{"name":"DTBLCHECKBOX","features":[386]},{"name":"DTBLCOMBOBOX","features":[386]},{"name":"DTBLDDLBX","features":[386]},{"name":"DTBLEDIT","features":[386]},{"name":"DTBLGROUPBOX","features":[386]},{"name":"DTBLLABEL","features":[386]},{"name":"DTBLLBX","features":[386]},{"name":"DTBLMVDDLBX","features":[386]},{"name":"DTBLMVLISTBOX","features":[386]},{"name":"DTBLPAGE","features":[386]},{"name":"DTBLRADIOBUTTON","features":[386]},{"name":"DTCTL","features":[386]},{"name":"DTPAGE","features":[386]},{"name":"DeinitMapiUtil","features":[386]},{"name":"DeregisterIdleRoutine","features":[386]},{"name":"ENTRYID","features":[386]},{"name":"ERROR_NOTIFICATION","features":[386]},{"name":"EXTENDED_NOTIFICATION","features":[386]},{"name":"E_IMAPI_BURN_VERIFICATION_FAILED","features":[386]},{"name":"E_IMAPI_DF2DATA_CLIENT_NAME_IS_NOT_VALID","features":[386]},{"name":"E_IMAPI_DF2DATA_INVALID_MEDIA_STATE","features":[386]},{"name":"E_IMAPI_DF2DATA_MEDIA_IS_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2DATA_MEDIA_NOT_BLANK","features":[386]},{"name":"E_IMAPI_DF2DATA_RECORDER_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2DATA_STREAM_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2DATA_STREAM_TOO_LARGE_FOR_CURRENT_MEDIA","features":[386]},{"name":"E_IMAPI_DF2DATA_WRITE_IN_PROGRESS","features":[386]},{"name":"E_IMAPI_DF2DATA_WRITE_NOT_IN_PROGRESS","features":[386]},{"name":"E_IMAPI_DF2RAW_CLIENT_NAME_IS_NOT_VALID","features":[386]},{"name":"E_IMAPI_DF2RAW_DATA_BLOCK_TYPE_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_BLANK","features":[386]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_PREPARED","features":[386]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2RAW_MEDIA_IS_PREPARED","features":[386]},{"name":"E_IMAPI_DF2RAW_NOT_ENOUGH_SPACE","features":[386]},{"name":"E_IMAPI_DF2RAW_NO_RECORDER_SPECIFIED","features":[386]},{"name":"E_IMAPI_DF2RAW_RECORDER_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2RAW_STREAM_LEADIN_TOO_SHORT","features":[386]},{"name":"E_IMAPI_DF2RAW_STREAM_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2RAW_WRITE_IN_PROGRESS","features":[386]},{"name":"E_IMAPI_DF2RAW_WRITE_NOT_IN_PROGRESS","features":[386]},{"name":"E_IMAPI_DF2TAO_CLIENT_NAME_IS_NOT_VALID","features":[386]},{"name":"E_IMAPI_DF2TAO_INVALID_ISRC","features":[386]},{"name":"E_IMAPI_DF2TAO_INVALID_MCN","features":[386]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_BLANK","features":[386]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_PREPARED","features":[386]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2TAO_MEDIA_IS_PREPARED","features":[386]},{"name":"E_IMAPI_DF2TAO_NOT_ENOUGH_SPACE","features":[386]},{"name":"E_IMAPI_DF2TAO_NO_RECORDER_SPECIFIED","features":[386]},{"name":"E_IMAPI_DF2TAO_PROPERTY_FOR_BLANK_MEDIA_ONLY","features":[386]},{"name":"E_IMAPI_DF2TAO_RECORDER_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2TAO_STREAM_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_DF2TAO_TABLE_OF_CONTENTS_EMPTY_DISC","features":[386]},{"name":"E_IMAPI_DF2TAO_TRACK_LIMIT_REACHED","features":[386]},{"name":"E_IMAPI_DF2TAO_WRITE_IN_PROGRESS","features":[386]},{"name":"E_IMAPI_DF2TAO_WRITE_NOT_IN_PROGRESS","features":[386]},{"name":"E_IMAPI_ERASE_CLIENT_NAME_IS_NOT_VALID","features":[386]},{"name":"E_IMAPI_ERASE_DISC_INFORMATION_TOO_SMALL","features":[386]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_ERASE_COMMAND","features":[386]},{"name":"E_IMAPI_ERASE_DRIVE_FAILED_SPINUP_COMMAND","features":[386]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_ERASABLE","features":[386]},{"name":"E_IMAPI_ERASE_MEDIA_IS_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_ERASE_MODE_PAGE_2A_TOO_SMALL","features":[386]},{"name":"E_IMAPI_ERASE_ONLY_ONE_RECORDER_SUPPORTED","features":[386]},{"name":"E_IMAPI_ERASE_RECORDER_IN_USE","features":[386]},{"name":"E_IMAPI_ERASE_RECORDER_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_ERASE_TOOK_LONGER_THAN_ONE_HOUR","features":[386]},{"name":"E_IMAPI_ERASE_UNEXPECTED_DRIVE_RESPONSE_DURING_ERASE","features":[386]},{"name":"E_IMAPI_LOSS_OF_STREAMING","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_INSUFFICIENT_SPACE","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_IS_READ_ONLY","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_NO_TRACKS","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_SECTOR_TYPE_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACKS","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_TOO_MANY_TRACK_INDEXES","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_TRACKS_ALREADY_ADDED","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_NOT_FOUND","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_OFFSET_ZERO_CANNOT_BE_CLEARED","features":[386]},{"name":"E_IMAPI_RAW_IMAGE_TRACK_INDEX_TOO_CLOSE_TO_OTHER_INDEX","features":[386]},{"name":"E_IMAPI_RECORDER_CLIENT_NAME_IS_NOT_VALID","features":[386]},{"name":"E_IMAPI_RECORDER_COMMAND_TIMEOUT","features":[386]},{"name":"E_IMAPI_RECORDER_DVD_STRUCTURE_NOT_PRESENT","features":[386]},{"name":"E_IMAPI_RECORDER_FEATURE_IS_NOT_CURRENT","features":[386]},{"name":"E_IMAPI_RECORDER_GET_CONFIGURATION_NOT_SUPPORTED","features":[386]},{"name":"E_IMAPI_RECORDER_INVALID_MODE_PARAMETERS","features":[386]},{"name":"E_IMAPI_RECORDER_INVALID_RESPONSE_FROM_DEVICE","features":[386]},{"name":"E_IMAPI_RECORDER_LOCKED","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_BECOMING_READY","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_BUSY","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_FORMAT_IN_PROGRESS","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_INCOMPATIBLE","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_NOT_FORMATTED","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_NO_MEDIA","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_SPEED_MISMATCH","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_UPSIDE_DOWN","features":[386]},{"name":"E_IMAPI_RECORDER_MEDIA_WRITE_PROTECTED","features":[386]},{"name":"E_IMAPI_RECORDER_NO_SUCH_FEATURE","features":[386]},{"name":"E_IMAPI_RECORDER_NO_SUCH_MODE_PAGE","features":[386]},{"name":"E_IMAPI_RECORDER_REQUIRED","features":[386]},{"name":"E_IMAPI_REQUEST_CANCELLED","features":[386]},{"name":"E_IMAPI_UNEXPECTED_RESPONSE_FROM_DEVICE","features":[386]},{"name":"EnableIdleRoutine","features":[305,386]},{"name":"FACILITY_IMAPI2","features":[386]},{"name":"FEqualNames","features":[305,386]},{"name":"FLATENTRY","features":[386]},{"name":"FLATENTRYLIST","features":[386]},{"name":"FLATMTSIDLIST","features":[386]},{"name":"FPropCompareProp","features":[305,386,356]},{"name":"FPropContainsProp","features":[305,386,356]},{"name":"FPropExists","features":[305,386]},{"name":"FlagList","features":[386]},{"name":"FreePadrlist","features":[305,386,356]},{"name":"FreeProws","features":[305,386,356]},{"name":"FtAddFt","features":[305,386]},{"name":"FtMulDw","features":[305,386]},{"name":"FtMulDwDw","features":[305,386]},{"name":"FtNegFt","features":[305,386]},{"name":"FtSubFt","features":[305,386]},{"name":"FtgRegisterIdleRoutine","features":[305,386]},{"name":"Gender","features":[386]},{"name":"HrAddColumns","features":[386]},{"name":"HrAddColumnsEx","features":[386]},{"name":"HrAllocAdviseSink","features":[305,386,356]},{"name":"HrDispatchNotifications","features":[386]},{"name":"HrGetOneProp","features":[305,386,356]},{"name":"HrIStorageFromStream","features":[386,429]},{"name":"HrQueryAllRows","features":[305,386,356]},{"name":"HrSetOneProp","features":[305,386,356]},{"name":"HrThisThreadAdviseSink","features":[386]},{"name":"IABContainer","features":[386]},{"name":"IAddrBook","features":[386]},{"name":"IAttach","features":[386]},{"name":"IDistList","features":[386]},{"name":"IMAPIAdviseSink","features":[386]},{"name":"IMAPIContainer","features":[386]},{"name":"IMAPIControl","features":[386]},{"name":"IMAPIFolder","features":[386]},{"name":"IMAPIProgress","features":[386]},{"name":"IMAPIProp","features":[386]},{"name":"IMAPIStatus","features":[386]},{"name":"IMAPITable","features":[386]},{"name":"IMAPI_E_BAD_MULTISESSION_PARAMETER","features":[386]},{"name":"IMAPI_E_BOOT_EMULATION_IMAGE_SIZE_MISMATCH","features":[386]},{"name":"IMAPI_E_BOOT_IMAGE_DATA","features":[386]},{"name":"IMAPI_E_BOOT_OBJECT_CONFLICT","features":[386]},{"name":"IMAPI_E_DATA_STREAM_CREATE_FAILURE","features":[386]},{"name":"IMAPI_E_DATA_STREAM_INCONSISTENCY","features":[386]},{"name":"IMAPI_E_DATA_STREAM_READ_FAILURE","features":[386]},{"name":"IMAPI_E_DATA_TOO_BIG","features":[386]},{"name":"IMAPI_E_DIRECTORY_READ_FAILURE","features":[386]},{"name":"IMAPI_E_DIR_NOT_EMPTY","features":[386]},{"name":"IMAPI_E_DIR_NOT_FOUND","features":[386]},{"name":"IMAPI_E_DISC_MISMATCH","features":[386]},{"name":"IMAPI_E_DUP_NAME","features":[386]},{"name":"IMAPI_E_EMPTY_DISC","features":[386]},{"name":"IMAPI_E_FILE_NOT_FOUND","features":[386]},{"name":"IMAPI_E_FILE_SYSTEM_CHANGE_NOT_ALLOWED","features":[386]},{"name":"IMAPI_E_FILE_SYSTEM_FEATURE_NOT_SUPPORTED","features":[386]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_EMPTY","features":[386]},{"name":"IMAPI_E_FILE_SYSTEM_NOT_FOUND","features":[386]},{"name":"IMAPI_E_FILE_SYSTEM_READ_CONSISTENCY_ERROR","features":[386]},{"name":"IMAPI_E_FSI_INTERNAL_ERROR","features":[386]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_NOT_ALIGNED","features":[386]},{"name":"IMAPI_E_IMAGEMANAGER_IMAGE_TOO_BIG","features":[386]},{"name":"IMAPI_E_IMAGEMANAGER_NO_IMAGE","features":[386]},{"name":"IMAPI_E_IMAGEMANAGER_NO_VALID_VD_FOUND","features":[386]},{"name":"IMAPI_E_IMAGE_SIZE_LIMIT","features":[386]},{"name":"IMAPI_E_IMAGE_TOO_BIG","features":[386]},{"name":"IMAPI_E_IMPORT_MEDIA_NOT_ALLOWED","features":[386]},{"name":"IMAPI_E_IMPORT_READ_FAILURE","features":[386]},{"name":"IMAPI_E_IMPORT_SEEK_FAILURE","features":[386]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_DIRECTORY_EXISTS_AS_FILE","features":[386]},{"name":"IMAPI_E_IMPORT_TYPE_COLLISION_FILE_EXISTS_AS_DIRECTORY","features":[386]},{"name":"IMAPI_E_INCOMPATIBLE_MULTISESSION_TYPE","features":[386]},{"name":"IMAPI_E_INCOMPATIBLE_PREVIOUS_SESSION","features":[386]},{"name":"IMAPI_E_INVALID_DATE","features":[386]},{"name":"IMAPI_E_INVALID_PARAM","features":[386]},{"name":"IMAPI_E_INVALID_PATH","features":[386]},{"name":"IMAPI_E_INVALID_VOLUME_NAME","features":[386]},{"name":"IMAPI_E_INVALID_WORKING_DIRECTORY","features":[386]},{"name":"IMAPI_E_ISO9660_LEVELS","features":[386]},{"name":"IMAPI_E_ITEM_NOT_FOUND","features":[386]},{"name":"IMAPI_E_MULTISESSION_NOT_SET","features":[386]},{"name":"IMAPI_E_NOT_DIR","features":[386]},{"name":"IMAPI_E_NOT_FILE","features":[386]},{"name":"IMAPI_E_NOT_IN_FILE_SYSTEM","features":[386]},{"name":"IMAPI_E_NO_COMPATIBLE_MULTISESSION_TYPE","features":[386]},{"name":"IMAPI_E_NO_OUTPUT","features":[386]},{"name":"IMAPI_E_NO_SUPPORTED_FILE_SYSTEM","features":[386]},{"name":"IMAPI_E_NO_UNIQUE_NAME","features":[386]},{"name":"IMAPI_E_PROPERTY_NOT_ACCESSIBLE","features":[386]},{"name":"IMAPI_E_READONLY","features":[386]},{"name":"IMAPI_E_RESTRICTED_NAME_VIOLATION","features":[386]},{"name":"IMAPI_E_STASHFILE_MOVE","features":[386]},{"name":"IMAPI_E_STASHFILE_OPEN_FAILURE","features":[386]},{"name":"IMAPI_E_STASHFILE_READ_FAILURE","features":[386]},{"name":"IMAPI_E_STASHFILE_SEEK_FAILURE","features":[386]},{"name":"IMAPI_E_STASHFILE_WRITE_FAILURE","features":[386]},{"name":"IMAPI_E_TOO_MANY_DIRS","features":[386]},{"name":"IMAPI_E_UDF_NOT_WRITE_COMPATIBLE","features":[386]},{"name":"IMAPI_E_UDF_REVISION_CHANGE_NOT_ALLOWED","features":[386]},{"name":"IMAPI_E_WORKING_DIRECTORY_SPACE","features":[386]},{"name":"IMAPI_S_IMAGE_FEATURE_NOT_SUPPORTED","features":[386]},{"name":"IMailUser","features":[386]},{"name":"IMessage","features":[386]},{"name":"IMsgStore","features":[386]},{"name":"IProfSect","features":[386]},{"name":"IPropData","features":[386]},{"name":"IProviderAdmin","features":[386]},{"name":"ITableData","features":[386]},{"name":"IWABExtInit","features":[386]},{"name":"IWABObject","features":[386]},{"name":"LPALLOCATEBUFFER","features":[386]},{"name":"LPALLOCATEMORE","features":[386]},{"name":"LPCREATECONVERSATIONINDEX","features":[386]},{"name":"LPDISPATCHNOTIFICATIONS","features":[386]},{"name":"LPFNABSDI","features":[305,386]},{"name":"LPFNBUTTON","features":[386]},{"name":"LPFNDISMISS","features":[386]},{"name":"LPFREEBUFFER","features":[386]},{"name":"LPNOTIFCALLBACK","features":[305,386,356]},{"name":"LPOPENSTREAMONFILE","features":[386,356]},{"name":"LPWABACTIONITEM","features":[386]},{"name":"LPWABALLOCATEBUFFER","features":[386]},{"name":"LPWABALLOCATEMORE","features":[386]},{"name":"LPWABFREEBUFFER","features":[386]},{"name":"LPWABOPEN","features":[305,386]},{"name":"LPWABOPENEX","features":[305,386]},{"name":"LPropCompareProp","features":[305,386,356]},{"name":"LpValFindProp","features":[305,386,356]},{"name":"MAPIDeinitIdle","features":[386]},{"name":"MAPIERROR","features":[386]},{"name":"MAPIGetDefaultMalloc","features":[386,356]},{"name":"MAPIInitIdle","features":[386]},{"name":"MAPINAMEID","features":[386]},{"name":"MAPIUID","features":[386]},{"name":"MAPI_COMPOUND","features":[386]},{"name":"MAPI_DIM","features":[386]},{"name":"MAPI_ERROR_VERSION","features":[386]},{"name":"MAPI_E_CALL_FAILED","features":[386]},{"name":"MAPI_E_INTERFACE_NOT_SUPPORTED","features":[386]},{"name":"MAPI_E_INVALID_PARAMETER","features":[386]},{"name":"MAPI_E_NOT_ENOUGH_MEMORY","features":[386]},{"name":"MAPI_E_NO_ACCESS","features":[386]},{"name":"MAPI_NOTRECIP","features":[386]},{"name":"MAPI_NOTRESERVED","features":[386]},{"name":"MAPI_NOW","features":[386]},{"name":"MAPI_ONE_OFF_NO_RICH_INFO","features":[386]},{"name":"MAPI_P1","features":[386]},{"name":"MAPI_SHORTTERM","features":[386]},{"name":"MAPI_SUBMITTED","features":[386]},{"name":"MAPI_THISSESSION","features":[386]},{"name":"MAPI_USE_DEFAULT","features":[386]},{"name":"MNID_ID","features":[386]},{"name":"MNID_STRING","features":[386]},{"name":"MTSID","features":[386]},{"name":"MV_FLAG","features":[386]},{"name":"MV_INSTANCE","features":[386]},{"name":"NEWMAIL_NOTIFICATION","features":[386]},{"name":"NOTIFICATION","features":[305,386,356]},{"name":"NOTIFKEY","features":[386]},{"name":"OBJECT_NOTIFICATION","features":[386]},{"name":"OPENSTREAMONFILE","features":[386]},{"name":"OpenStreamOnFile","features":[386,356]},{"name":"PFNIDLE","features":[305,386]},{"name":"PRIHIGHEST","features":[386]},{"name":"PRILOWEST","features":[386]},{"name":"PRIUSER","features":[386]},{"name":"PROP_ID_INVALID","features":[386]},{"name":"PROP_ID_NULL","features":[386]},{"name":"PROP_ID_SECURE_MAX","features":[386]},{"name":"PROP_ID_SECURE_MIN","features":[386]},{"name":"PpropFindProp","features":[305,386,356]},{"name":"PropCopyMore","features":[305,386,356]},{"name":"RTFSync","features":[305,386]},{"name":"SAndRestriction","features":[305,386,356]},{"name":"SAppTimeArray","features":[386]},{"name":"SBinary","features":[386]},{"name":"SBinaryArray","features":[386]},{"name":"SBitMaskRestriction","features":[386]},{"name":"SCommentRestriction","features":[305,386,356]},{"name":"SComparePropsRestriction","features":[386]},{"name":"SContentRestriction","features":[305,386,356]},{"name":"SCurrencyArray","features":[386,356]},{"name":"SDateTimeArray","features":[305,386]},{"name":"SDoubleArray","features":[386]},{"name":"SERVICE_UI_ALLOWED","features":[386]},{"name":"SERVICE_UI_ALWAYS","features":[386]},{"name":"SExistRestriction","features":[386]},{"name":"SGuidArray","features":[386]},{"name":"SLPSTRArray","features":[386]},{"name":"SLargeIntegerArray","features":[386]},{"name":"SLongArray","features":[386]},{"name":"SNotRestriction","features":[305,386,356]},{"name":"SOrRestriction","features":[305,386,356]},{"name":"SPropProblem","features":[386]},{"name":"SPropProblemArray","features":[386]},{"name":"SPropTagArray","features":[386]},{"name":"SPropValue","features":[305,386,356]},{"name":"SPropertyRestriction","features":[305,386,356]},{"name":"SRealArray","features":[386]},{"name":"SRestriction","features":[305,386,356]},{"name":"SRow","features":[305,386,356]},{"name":"SRowSet","features":[305,386,356]},{"name":"SShortArray","features":[386]},{"name":"SSizeRestriction","features":[386]},{"name":"SSortOrder","features":[386]},{"name":"SSortOrderSet","features":[386]},{"name":"SSubRestriction","features":[305,386,356]},{"name":"STATUS_OBJECT_NOTIFICATION","features":[305,386,356]},{"name":"SWStringArray","features":[386]},{"name":"S_IMAPI_BOTHADJUSTED","features":[386]},{"name":"S_IMAPI_COMMAND_HAS_SENSE_DATA","features":[386]},{"name":"S_IMAPI_RAW_IMAGE_TRACK_INDEX_ALREADY_EXISTS","features":[386]},{"name":"S_IMAPI_ROTATIONADJUSTED","features":[386]},{"name":"S_IMAPI_SPEEDADJUSTED","features":[386]},{"name":"S_IMAPI_WRITE_NOT_IN_PROGRESS","features":[386]},{"name":"ScCopyNotifications","features":[305,386,356]},{"name":"ScCopyProps","features":[305,386,356]},{"name":"ScCountNotifications","features":[305,386,356]},{"name":"ScCountProps","features":[305,386,356]},{"name":"ScCreateConversationIndex","features":[386]},{"name":"ScDupPropset","features":[305,386,356]},{"name":"ScInitMapiUtil","features":[386]},{"name":"ScLocalPathFromUNC","features":[386]},{"name":"ScRelocNotifications","features":[305,386,356]},{"name":"ScRelocProps","features":[305,386,356]},{"name":"ScUNCFromLocalPath","features":[386]},{"name":"SzFindCh","features":[386]},{"name":"SzFindLastCh","features":[386]},{"name":"SzFindSz","features":[386]},{"name":"TABLE_CHANGED","features":[386]},{"name":"TABLE_ERROR","features":[386]},{"name":"TABLE_NOTIFICATION","features":[305,386,356]},{"name":"TABLE_RELOAD","features":[386]},{"name":"TABLE_RESTRICT_DONE","features":[386]},{"name":"TABLE_ROW_ADDED","features":[386]},{"name":"TABLE_ROW_DELETED","features":[386]},{"name":"TABLE_ROW_MODIFIED","features":[386]},{"name":"TABLE_SETCOL_DONE","features":[386]},{"name":"TABLE_SORT_DONE","features":[386]},{"name":"TAD_ALL_ROWS","features":[386]},{"name":"UFromSz","features":[386]},{"name":"UI_CURRENT_PROVIDER_FIRST","features":[386]},{"name":"UI_SERVICE","features":[386]},{"name":"UlAddRef","features":[386]},{"name":"UlPropSize","features":[305,386,356]},{"name":"UlRelease","features":[386]},{"name":"WABEXTDISPLAY","features":[305,386]},{"name":"WABIMPORTPARAM","features":[305,386]},{"name":"WABOBJECT_LDAPURL_RETURN_MAILUSER","features":[386]},{"name":"WABOBJECT_ME_NEW","features":[386]},{"name":"WABOBJECT_ME_NOCREATE","features":[386]},{"name":"WAB_CONTEXT_ADRLIST","features":[386]},{"name":"WAB_DISPLAY_ISNTDS","features":[386]},{"name":"WAB_DISPLAY_LDAPURL","features":[386]},{"name":"WAB_DLL_NAME","features":[386]},{"name":"WAB_DLL_PATH_KEY","features":[386]},{"name":"WAB_ENABLE_PROFILES","features":[386]},{"name":"WAB_IGNORE_PROFILES","features":[386]},{"name":"WAB_LOCAL_CONTAINERS","features":[386]},{"name":"WAB_PARAM","features":[305,386]},{"name":"WAB_PROFILE_CONTENTS","features":[386]},{"name":"WAB_USE_OE_SENDMAIL","features":[386]},{"name":"WAB_VCARD_FILE","features":[386]},{"name":"WAB_VCARD_STREAM","features":[386]},{"name":"WrapCompressedRTFStream","features":[386,356]},{"name":"WrapStoreEntryID","features":[386]},{"name":"__UPV","features":[305,386,356]},{"name":"cchProfileNameMax","features":[386]},{"name":"cchProfilePassMax","features":[386]},{"name":"fMapiUnicode","features":[386]},{"name":"genderFemale","features":[386]},{"name":"genderMale","features":[386]},{"name":"genderUnspecified","features":[386]},{"name":"hrSuccess","features":[386]},{"name":"szHrDispatchNotifications","features":[386]},{"name":"szMAPINotificationMsg","features":[386]},{"name":"szScCreateConversationIndex","features":[386]}],"531":[{"name":"AMSI_ATTRIBUTE","features":[522]},{"name":"AMSI_ATTRIBUTE_ALL_ADDRESS","features":[522]},{"name":"AMSI_ATTRIBUTE_ALL_SIZE","features":[522]},{"name":"AMSI_ATTRIBUTE_APP_NAME","features":[522]},{"name":"AMSI_ATTRIBUTE_CONTENT_ADDRESS","features":[522]},{"name":"AMSI_ATTRIBUTE_CONTENT_NAME","features":[522]},{"name":"AMSI_ATTRIBUTE_CONTENT_SIZE","features":[522]},{"name":"AMSI_ATTRIBUTE_QUIET","features":[522]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_ADDRESS","features":[522]},{"name":"AMSI_ATTRIBUTE_REDIRECT_CHAIN_SIZE","features":[522]},{"name":"AMSI_ATTRIBUTE_SESSION","features":[522]},{"name":"AMSI_RESULT","features":[522]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_END","features":[522]},{"name":"AMSI_RESULT_BLOCKED_BY_ADMIN_START","features":[522]},{"name":"AMSI_RESULT_CLEAN","features":[522]},{"name":"AMSI_RESULT_DETECTED","features":[522]},{"name":"AMSI_RESULT_NOT_DETECTED","features":[522]},{"name":"AMSI_UAC_MSI_ACTION","features":[522]},{"name":"AMSI_UAC_MSI_ACTION_INSTALL","features":[522]},{"name":"AMSI_UAC_MSI_ACTION_MAINTENANCE","features":[522]},{"name":"AMSI_UAC_MSI_ACTION_MAX","features":[522]},{"name":"AMSI_UAC_MSI_ACTION_UNINSTALL","features":[522]},{"name":"AMSI_UAC_MSI_ACTION_UPDATE","features":[522]},{"name":"AMSI_UAC_REQUEST_AX_INFO","features":[522]},{"name":"AMSI_UAC_REQUEST_COM_INFO","features":[522]},{"name":"AMSI_UAC_REQUEST_CONTEXT","features":[305,522]},{"name":"AMSI_UAC_REQUEST_EXE_INFO","features":[522]},{"name":"AMSI_UAC_REQUEST_MSI_INFO","features":[522]},{"name":"AMSI_UAC_REQUEST_PACKAGED_APP_INFO","features":[522]},{"name":"AMSI_UAC_REQUEST_TYPE","features":[522]},{"name":"AMSI_UAC_REQUEST_TYPE_AX","features":[522]},{"name":"AMSI_UAC_REQUEST_TYPE_COM","features":[522]},{"name":"AMSI_UAC_REQUEST_TYPE_EXE","features":[522]},{"name":"AMSI_UAC_REQUEST_TYPE_MAX","features":[522]},{"name":"AMSI_UAC_REQUEST_TYPE_MSI","features":[522]},{"name":"AMSI_UAC_REQUEST_TYPE_PACKAGED_APP","features":[522]},{"name":"AMSI_UAC_TRUST_STATE","features":[522]},{"name":"AMSI_UAC_TRUST_STATE_BLOCKED","features":[522]},{"name":"AMSI_UAC_TRUST_STATE_MAX","features":[522]},{"name":"AMSI_UAC_TRUST_STATE_TRUSTED","features":[522]},{"name":"AMSI_UAC_TRUST_STATE_UNTRUSTED","features":[522]},{"name":"AmsiCloseSession","features":[522]},{"name":"AmsiInitialize","features":[522]},{"name":"AmsiNotifyOperation","features":[522]},{"name":"AmsiOpenSession","features":[522]},{"name":"AmsiScanBuffer","features":[522]},{"name":"AmsiScanString","features":[522]},{"name":"AmsiUninitialize","features":[522]},{"name":"CAntimalware","features":[522]},{"name":"HAMSICONTEXT","features":[522]},{"name":"HAMSISESSION","features":[522]},{"name":"IAmsiStream","features":[522]},{"name":"IAntimalware","features":[522]},{"name":"IAntimalware2","features":[522]},{"name":"IAntimalwareProvider","features":[522]},{"name":"IAntimalwareProvider2","features":[522]},{"name":"IAntimalwareUacProvider","features":[522]},{"name":"InstallELAMCertificateInfo","features":[305,522]}],"532":[{"name":"ACTCTXA","features":[305,523]},{"name":"ACTCTXW","features":[305,523]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE","features":[523]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MAXVERSIONTESTED","features":[523]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_MITIGATION","features":[523]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_OS","features":[523]},{"name":"ACTCTX_COMPATIBILITY_ELEMENT_TYPE_UNKNOWN","features":[523]},{"name":"ACTCTX_REQUESTED_RUN_LEVEL","features":[523]},{"name":"ACTCTX_RUN_LEVEL_AS_INVOKER","features":[523]},{"name":"ACTCTX_RUN_LEVEL_HIGHEST_AVAILABLE","features":[523]},{"name":"ACTCTX_RUN_LEVEL_NUMBERS","features":[523]},{"name":"ACTCTX_RUN_LEVEL_REQUIRE_ADMIN","features":[523]},{"name":"ACTCTX_RUN_LEVEL_UNSPECIFIED","features":[523]},{"name":"ACTCTX_SECTION_KEYED_DATA","features":[305,523,338]},{"name":"ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION","features":[523]},{"name":"ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION","features":[523]},{"name":"ACTIVATION_CONTEXT_DETAILED_INFORMATION","features":[523]},{"name":"ACTIVATION_CONTEXT_QUERY_INDEX","features":[523]},{"name":"ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION","features":[523]},{"name":"ADVERTISEFLAGS","features":[523]},{"name":"ADVERTISEFLAGS_MACHINEASSIGN","features":[523]},{"name":"ADVERTISEFLAGS_USERASSIGN","features":[523]},{"name":"APPLY_OPTION_FAIL_IF_CLOSE","features":[523]},{"name":"APPLY_OPTION_FAIL_IF_EXACT","features":[523]},{"name":"APPLY_OPTION_TEST_ONLY","features":[523]},{"name":"APPLY_OPTION_VALID_FLAGS","features":[523]},{"name":"ASM_BINDF_BINPATH_PROBE_ONLY","features":[523]},{"name":"ASM_BINDF_FORCE_CACHE_INSTALL","features":[523]},{"name":"ASM_BINDF_PARENT_ASM_HINT","features":[523]},{"name":"ASM_BINDF_RFS_INTEGRITY_CHECK","features":[523]},{"name":"ASM_BINDF_RFS_MODULE_CHECK","features":[523]},{"name":"ASM_BINDF_SHARED_BINPATH_HINT","features":[523]},{"name":"ASM_BIND_FLAGS","features":[523]},{"name":"ASM_CMPF_ALL","features":[523]},{"name":"ASM_CMPF_BUILD_NUMBER","features":[523]},{"name":"ASM_CMPF_CULTURE","features":[523]},{"name":"ASM_CMPF_CUSTOM","features":[523]},{"name":"ASM_CMPF_DEFAULT","features":[523]},{"name":"ASM_CMPF_MAJOR_VERSION","features":[523]},{"name":"ASM_CMPF_MINOR_VERSION","features":[523]},{"name":"ASM_CMPF_NAME","features":[523]},{"name":"ASM_CMPF_PUBLIC_KEY_TOKEN","features":[523]},{"name":"ASM_CMPF_REVISION_NUMBER","features":[523]},{"name":"ASM_CMP_FLAGS","features":[523]},{"name":"ASM_DISPLAYF_CULTURE","features":[523]},{"name":"ASM_DISPLAYF_CUSTOM","features":[523]},{"name":"ASM_DISPLAYF_LANGUAGEID","features":[523]},{"name":"ASM_DISPLAYF_PROCESSORARCHITECTURE","features":[523]},{"name":"ASM_DISPLAYF_PUBLIC_KEY","features":[523]},{"name":"ASM_DISPLAYF_PUBLIC_KEY_TOKEN","features":[523]},{"name":"ASM_DISPLAYF_VERSION","features":[523]},{"name":"ASM_DISPLAY_FLAGS","features":[523]},{"name":"ASM_NAME","features":[523]},{"name":"ASM_NAME_ALIAS","features":[523]},{"name":"ASM_NAME_BUILD_NUMBER","features":[523]},{"name":"ASM_NAME_CODEBASE_LASTMOD","features":[523]},{"name":"ASM_NAME_CODEBASE_URL","features":[523]},{"name":"ASM_NAME_CULTURE","features":[523]},{"name":"ASM_NAME_CUSTOM","features":[523]},{"name":"ASM_NAME_HASH_ALGID","features":[523]},{"name":"ASM_NAME_HASH_VALUE","features":[523]},{"name":"ASM_NAME_MAJOR_VERSION","features":[523]},{"name":"ASM_NAME_MAX_PARAMS","features":[523]},{"name":"ASM_NAME_MINOR_VERSION","features":[523]},{"name":"ASM_NAME_MVID","features":[523]},{"name":"ASM_NAME_NAME","features":[523]},{"name":"ASM_NAME_NULL_CUSTOM","features":[523]},{"name":"ASM_NAME_NULL_PUBLIC_KEY","features":[523]},{"name":"ASM_NAME_NULL_PUBLIC_KEY_TOKEN","features":[523]},{"name":"ASM_NAME_OSINFO_ARRAY","features":[523]},{"name":"ASM_NAME_PROCESSOR_ID_ARRAY","features":[523]},{"name":"ASM_NAME_PUBLIC_KEY","features":[523]},{"name":"ASM_NAME_PUBLIC_KEY_TOKEN","features":[523]},{"name":"ASM_NAME_REVISION_NUMBER","features":[523]},{"name":"ASSEMBLYINFO_FLAG_INSTALLED","features":[523]},{"name":"ASSEMBLYINFO_FLAG_PAYLOADRESIDENT","features":[523]},{"name":"ASSEMBLY_FILE_DETAILED_INFORMATION","features":[523]},{"name":"ASSEMBLY_INFO","features":[523]},{"name":"ActivateActCtx","features":[305,523]},{"name":"AddRefActCtx","features":[305,523]},{"name":"ApplyDeltaA","features":[305,523]},{"name":"ApplyDeltaB","features":[305,523]},{"name":"ApplyDeltaGetReverseB","features":[305,523]},{"name":"ApplyDeltaProvidedB","features":[305,523]},{"name":"ApplyDeltaW","features":[305,523]},{"name":"ApplyPatchToFileA","features":[305,523]},{"name":"ApplyPatchToFileByBuffers","features":[305,523]},{"name":"ApplyPatchToFileByHandles","features":[305,523]},{"name":"ApplyPatchToFileByHandlesEx","features":[305,523]},{"name":"ApplyPatchToFileExA","features":[305,523]},{"name":"ApplyPatchToFileExW","features":[305,523]},{"name":"ApplyPatchToFileW","features":[305,523]},{"name":"CANOF_PARSE_DISPLAY_NAME","features":[523]},{"name":"CANOF_SET_DEFAULT_VALUES","features":[523]},{"name":"CLSID_EvalCom2","features":[523]},{"name":"CLSID_MsmMerge2","features":[523]},{"name":"COMPATIBILITY_CONTEXT_ELEMENT","features":[523]},{"name":"CREATE_ASM_NAME_OBJ_FLAGS","features":[523]},{"name":"CreateActCtxA","features":[305,523]},{"name":"CreateActCtxW","features":[305,523]},{"name":"CreateDeltaA","features":[305,389,523]},{"name":"CreateDeltaB","features":[305,389,523]},{"name":"CreateDeltaW","features":[305,389,523]},{"name":"CreatePatchFileA","features":[305,523]},{"name":"CreatePatchFileByHandles","features":[305,523]},{"name":"CreatePatchFileByHandlesEx","features":[305,523]},{"name":"CreatePatchFileExA","features":[305,523]},{"name":"CreatePatchFileExW","features":[305,523]},{"name":"CreatePatchFileW","features":[305,523]},{"name":"DEFAULT_DISK_ID","features":[523]},{"name":"DEFAULT_FILE_SEQUENCE_START","features":[523]},{"name":"DEFAULT_MINIMUM_REQUIRED_MSI_VERSION","features":[523]},{"name":"DELTA_HASH","features":[523]},{"name":"DELTA_HEADER_INFO","features":[305,389,523]},{"name":"DELTA_INPUT","features":[305,523]},{"name":"DELTA_MAX_HASH_SIZE","features":[523]},{"name":"DELTA_OUTPUT","features":[523]},{"name":"DeactivateActCtx","features":[305,523]},{"name":"DeltaFree","features":[305,523]},{"name":"DeltaNormalizeProvidedB","features":[305,523]},{"name":"ERROR_PATCH_BIGGER_THAN_COMPRESSED","features":[523]},{"name":"ERROR_PATCH_CORRUPT","features":[523]},{"name":"ERROR_PATCH_DECODE_FAILURE","features":[523]},{"name":"ERROR_PATCH_ENCODE_FAILURE","features":[523]},{"name":"ERROR_PATCH_IMAGEHLP_FAILURE","features":[523]},{"name":"ERROR_PATCH_INVALID_OPTIONS","features":[523]},{"name":"ERROR_PATCH_NEWER_FORMAT","features":[523]},{"name":"ERROR_PATCH_NOT_AVAILABLE","features":[523]},{"name":"ERROR_PATCH_NOT_NECESSARY","features":[523]},{"name":"ERROR_PATCH_RETAIN_RANGES_DIFFER","features":[523]},{"name":"ERROR_PATCH_SAME_FILE","features":[523]},{"name":"ERROR_PATCH_WRONG_FILE","features":[523]},{"name":"ERROR_PCW_BAD_API_PATCHING_SYMBOL_FLAGS","features":[523]},{"name":"ERROR_PCW_BAD_FAMILY_RANGE_NAME","features":[523]},{"name":"ERROR_PCW_BAD_FILE_SEQUENCE_START","features":[523]},{"name":"ERROR_PCW_BAD_GUIDS_TO_REPLACE","features":[523]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_DISKID","features":[523]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_FILESEQSTART","features":[523]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_NAME","features":[523]},{"name":"ERROR_PCW_BAD_IMAGE_FAMILY_SRC_PROP","features":[523]},{"name":"ERROR_PCW_BAD_MAJOR_VERSION","features":[523]},{"name":"ERROR_PCW_BAD_PATCH_GUID","features":[523]},{"name":"ERROR_PCW_BAD_PRODUCTVERSION_VALIDATION","features":[523]},{"name":"ERROR_PCW_BAD_SEQUENCE","features":[523]},{"name":"ERROR_PCW_BAD_SUPERCEDENCE","features":[523]},{"name":"ERROR_PCW_BAD_TARGET","features":[523]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_NAME","features":[523]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_CODE","features":[523]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_PRODUCT_VERSION","features":[523]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADED","features":[523]},{"name":"ERROR_PCW_BAD_TARGET_IMAGE_UPGRADE_CODE","features":[523]},{"name":"ERROR_PCW_BAD_TARGET_PRODUCT_CODE_LIST","features":[523]},{"name":"ERROR_PCW_BAD_TGT_UPD_IMAGES","features":[523]},{"name":"ERROR_PCW_BAD_TRANSFORMSET","features":[523]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_FAMILY","features":[523]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_NAME","features":[523]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_CODE","features":[523]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_PRODUCT_VERSION","features":[523]},{"name":"ERROR_PCW_BAD_UPGRADED_IMAGE_UPGRADE_CODE","features":[523]},{"name":"ERROR_PCW_BAD_VERSION_STRING","features":[523]},{"name":"ERROR_PCW_BASE","features":[523]},{"name":"ERROR_PCW_CANNOT_CREATE_TABLE","features":[523]},{"name":"ERROR_PCW_CANNOT_RUN_MAKECAB","features":[523]},{"name":"ERROR_PCW_CANNOT_WRITE_DDF","features":[523]},{"name":"ERROR_PCW_CANT_COPY_FILE_TO_TEMP_FOLDER","features":[523]},{"name":"ERROR_PCW_CANT_CREATE_ONE_PATCH_FILE","features":[523]},{"name":"ERROR_PCW_CANT_CREATE_PATCH_FILE","features":[523]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO","features":[523]},{"name":"ERROR_PCW_CANT_CREATE_SUMMARY_INFO_POUND","features":[523]},{"name":"ERROR_PCW_CANT_CREATE_TEMP_FOLDER","features":[523]},{"name":"ERROR_PCW_CANT_DELETE_TEMP_FOLDER","features":[523]},{"name":"ERROR_PCW_CANT_GENERATE_SEQUENCEINFO_MAJORUPGD","features":[523]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM","features":[523]},{"name":"ERROR_PCW_CANT_GENERATE_TRANSFORM_POUND","features":[523]},{"name":"ERROR_PCW_CANT_OVERWRITE_PATCH","features":[523]},{"name":"ERROR_PCW_CANT_READ_FILE","features":[523]},{"name":"ERROR_PCW_CREATEFILE_LOG_FAILED","features":[523]},{"name":"ERROR_PCW_DUPLICATE_SEQUENCE_RECORD","features":[523]},{"name":"ERROR_PCW_DUP_IMAGE_FAMILY_NAME","features":[523]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_NAME","features":[523]},{"name":"ERROR_PCW_DUP_TARGET_IMAGE_PACKCODE","features":[523]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_NAME","features":[523]},{"name":"ERROR_PCW_DUP_UPGRADED_IMAGE_PACKCODE","features":[523]},{"name":"ERROR_PCW_ERROR_WRITING_TO_LOG","features":[523]},{"name":"ERROR_PCW_EXECUTE_VIEW","features":[523]},{"name":"ERROR_PCW_EXTFILE_BAD_FAMILY_FIELD","features":[523]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_LENGTHS","features":[523]},{"name":"ERROR_PCW_EXTFILE_BAD_IGNORE_OFFSETS","features":[523]},{"name":"ERROR_PCW_EXTFILE_BAD_RETAIN_OFFSETS","features":[523]},{"name":"ERROR_PCW_EXTFILE_BLANK_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_EXTFILE_BLANK_PATH_TO_FILE","features":[523]},{"name":"ERROR_PCW_EXTFILE_IGNORE_COUNT_MISMATCH","features":[523]},{"name":"ERROR_PCW_EXTFILE_LONG_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_LENGTHS","features":[523]},{"name":"ERROR_PCW_EXTFILE_LONG_IGNORE_OFFSETS","features":[523]},{"name":"ERROR_PCW_EXTFILE_LONG_PATH_TO_FILE","features":[523]},{"name":"ERROR_PCW_EXTFILE_LONG_RETAIN_OFFSETS","features":[523]},{"name":"ERROR_PCW_EXTFILE_MISSING_FILE","features":[523]},{"name":"ERROR_PCW_FAILED_CREATE_TRANSFORM","features":[523]},{"name":"ERROR_PCW_FAILED_EXPAND_PATH","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_LENGTHS","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_BAD_RETAIN_OFFSETS","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_LENGTHS","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_BLANK_RETAIN_OFFSETS","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_COUNT_MISMATCH","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_LENGTHS","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_LONG_RETAIN_OFFSETS","features":[523]},{"name":"ERROR_PCW_FAMILY_RANGE_NAME_TOO_LONG","features":[523]},{"name":"ERROR_PCW_IMAGE_FAMILY_NAME_TOO_LONG","features":[523]},{"name":"ERROR_PCW_IMAGE_PATH_NOT_EXIST","features":[523]},{"name":"ERROR_PCW_INTERNAL_ERROR","features":[523]},{"name":"ERROR_PCW_INVALID_LOG_LEVEL","features":[523]},{"name":"ERROR_PCW_INVALID_MAJOR_VERSION","features":[523]},{"name":"ERROR_PCW_INVALID_PARAMETER","features":[523]},{"name":"ERROR_PCW_INVALID_PATCHMETADATA_PROP","features":[523]},{"name":"ERROR_PCW_INVALID_PATCH_TYPE_SEQUENCING","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_EXTERNALFILES","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_FAMILYFILERANGES","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_IMAGEFAMILIES","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_PATCHSEQUENCE","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTIES","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_PROPERTY","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_TARGETFILES_OPTIONALDATA","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_TARGETIMAGES","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILESTOIGNORE","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDFILES_OPTIONALDATA","features":[523]},{"name":"ERROR_PCW_INVALID_PCP_UPGRADEDIMAGES","features":[523]},{"name":"ERROR_PCW_INVALID_RANGE_ELEMENT","features":[523]},{"name":"ERROR_PCW_INVALID_SUPERCEDENCE","features":[523]},{"name":"ERROR_PCW_INVALID_SUPERSEDENCE_VALUE","features":[523]},{"name":"ERROR_PCW_INVALID_UI_LEVEL","features":[523]},{"name":"ERROR_PCW_LAX_VALIDATION_FLAGS","features":[523]},{"name":"ERROR_PCW_MAJOR_UPGD_WITHOUT_SEQUENCING","features":[523]},{"name":"ERROR_PCW_MATCHED_PRODUCT_VERSIONS","features":[523]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_CODES","features":[523]},{"name":"ERROR_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[523]},{"name":"ERROR_PCW_MISSING_DIRECTORY_TABLE","features":[523]},{"name":"ERROR_PCW_MISSING_PATCHMETADATA","features":[523]},{"name":"ERROR_PCW_MISSING_PATCH_GUID","features":[523]},{"name":"ERROR_PCW_MISSING_PATCH_PATH","features":[523]},{"name":"ERROR_PCW_NO_UPGRADED_IMAGES_TO_PATCH","features":[523]},{"name":"ERROR_PCW_NULL_PATCHFAMILY","features":[523]},{"name":"ERROR_PCW_NULL_SEQUENCE_NUMBER","features":[523]},{"name":"ERROR_PCW_OBSOLETION_WITH_MSI30","features":[523]},{"name":"ERROR_PCW_OBSOLETION_WITH_PATCHSEQUENCE","features":[523]},{"name":"ERROR_PCW_OBSOLETION_WITH_SEQUENCE_DATA","features":[523]},{"name":"ERROR_PCW_OODS_COPYING_MSI","features":[523]},{"name":"ERROR_PCW_OPEN_VIEW","features":[523]},{"name":"ERROR_PCW_OUT_OF_MEMORY","features":[523]},{"name":"ERROR_PCW_PATCHMETADATA_PROP_NOT_SET","features":[523]},{"name":"ERROR_PCW_PCP_BAD_FORMAT","features":[523]},{"name":"ERROR_PCW_PCP_DOESNT_EXIST","features":[523]},{"name":"ERROR_PCW_SEQUENCING_BAD_TARGET","features":[523]},{"name":"ERROR_PCW_TARGET_BAD_PROD_CODE_VAL","features":[523]},{"name":"ERROR_PCW_TARGET_BAD_PROD_VALIDATE","features":[523]},{"name":"ERROR_PCW_TARGET_IMAGE_COMPRESSED","features":[523]},{"name":"ERROR_PCW_TARGET_IMAGE_NAME_TOO_LONG","features":[523]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_EMPTY","features":[523]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_EXIST","features":[523]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_NOT_MSI","features":[523]},{"name":"ERROR_PCW_TARGET_IMAGE_PATH_TOO_LONG","features":[523]},{"name":"ERROR_PCW_TARGET_MISSING_SRC_FILES","features":[523]},{"name":"ERROR_PCW_TARGET_WRONG_PRODUCT_VERSION_COMP","features":[523]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_LENGTHS","features":[523]},{"name":"ERROR_PCW_TFILEDATA_BAD_IGNORE_OFFSETS","features":[523]},{"name":"ERROR_PCW_TFILEDATA_BAD_RETAIN_OFFSETS","features":[523]},{"name":"ERROR_PCW_TFILEDATA_BAD_TARGET_FIELD","features":[523]},{"name":"ERROR_PCW_TFILEDATA_BLANK_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_TFILEDATA_IGNORE_COUNT_MISMATCH","features":[523]},{"name":"ERROR_PCW_TFILEDATA_LONG_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_LENGTHS","features":[523]},{"name":"ERROR_PCW_TFILEDATA_LONG_IGNORE_OFFSETS","features":[523]},{"name":"ERROR_PCW_TFILEDATA_LONG_RETAIN_OFFSETS","features":[523]},{"name":"ERROR_PCW_TFILEDATA_MISSING_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_UFILEDATA_BAD_UPGRADED_FIELD","features":[523]},{"name":"ERROR_PCW_UFILEDATA_BLANK_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_UFILEDATA_LONG_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_UFILEDATA_MISSING_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_UFILEIGNORE_BAD_UPGRADED_FIELD","features":[523]},{"name":"ERROR_PCW_UFILEIGNORE_BLANK_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_UFILEIGNORE_LONG_FILE_TABLE_KEY","features":[523]},{"name":"ERROR_PCW_UNKNOWN_ERROR","features":[523]},{"name":"ERROR_PCW_UNKNOWN_INFO","features":[523]},{"name":"ERROR_PCW_UNKNOWN_WARN","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_COMPRESSED","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_NAME_TOO_LONG","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_EXIST","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_NOT_MSI","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATCH_PATH_TOO_LONG","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_EMPTY","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_EXIST","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_NOT_MSI","features":[523]},{"name":"ERROR_PCW_UPGRADED_IMAGE_PATH_TOO_LONG","features":[523]},{"name":"ERROR_PCW_UPGRADED_MISSING_SRC_FILES","features":[523]},{"name":"ERROR_PCW_VIEW_FETCH","features":[523]},{"name":"ERROR_PCW_WRITE_SUMMARY_PROPERTIES","features":[523]},{"name":"ERROR_PCW_WRONG_PATCHMETADATA_STRD_PROP","features":[523]},{"name":"ERROR_ROLLBACK_DISABLED","features":[523]},{"name":"ExtractPatchHeaderToFileA","features":[305,523]},{"name":"ExtractPatchHeaderToFileByHandles","features":[305,523]},{"name":"ExtractPatchHeaderToFileW","features":[305,523]},{"name":"FUSION_INSTALL_REFERENCE","features":[523]},{"name":"FUSION_REFCOUNT_FILEPATH_GUID","features":[523]},{"name":"FUSION_REFCOUNT_OPAQUE_STRING_GUID","features":[523]},{"name":"FUSION_REFCOUNT_UNINSTALL_SUBKEY_GUID","features":[523]},{"name":"FindActCtxSectionGuid","features":[305,523,338]},{"name":"FindActCtxSectionStringA","features":[305,523,338]},{"name":"FindActCtxSectionStringW","features":[305,523,338]},{"name":"GetCurrentActCtx","features":[305,523]},{"name":"GetDeltaInfoA","features":[305,389,523]},{"name":"GetDeltaInfoB","features":[305,389,523]},{"name":"GetDeltaInfoW","features":[305,389,523]},{"name":"GetDeltaSignatureA","features":[305,389,523]},{"name":"GetDeltaSignatureB","features":[305,389,523]},{"name":"GetDeltaSignatureW","features":[305,389,523]},{"name":"GetFilePatchSignatureA","features":[305,523]},{"name":"GetFilePatchSignatureByBuffer","features":[305,523]},{"name":"GetFilePatchSignatureByHandle","features":[305,523]},{"name":"GetFilePatchSignatureW","features":[305,523]},{"name":"IACTIONNAME_ADMIN","features":[523]},{"name":"IACTIONNAME_ADVERTISE","features":[523]},{"name":"IACTIONNAME_COLLECTUSERINFO","features":[523]},{"name":"IACTIONNAME_FIRSTRUN","features":[523]},{"name":"IACTIONNAME_INSTALL","features":[523]},{"name":"IACTIONNAME_SEQUENCE","features":[523]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_ALREADY_INSTALLED","features":[523]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_INSTALLED","features":[523]},{"name":"IASSEMBLYCACHEITEM_COMMIT_DISPOSITION_REFRESHED","features":[523]},{"name":"IASSEMBLYCACHEITEM_COMMIT_FLAG_REFRESH","features":[523]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION","features":[523]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_ALREADY_UNINSTALLED","features":[523]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_DELETE_PENDING","features":[523]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_STILL_IN_USE","features":[523]},{"name":"IASSEMBLYCACHE_UNINSTALL_DISPOSITION_UNINSTALLED","features":[523]},{"name":"IAssemblyCache","features":[523]},{"name":"IAssemblyCacheItem","features":[523]},{"name":"IAssemblyName","features":[523]},{"name":"IEnumMsmDependency","features":[523]},{"name":"IEnumMsmError","features":[523]},{"name":"IEnumMsmString","features":[523]},{"name":"IMsmDependencies","features":[523,356]},{"name":"IMsmDependency","features":[523,356]},{"name":"IMsmError","features":[523,356]},{"name":"IMsmErrors","features":[523,356]},{"name":"IMsmGetFiles","features":[523,356]},{"name":"IMsmMerge","features":[523,356]},{"name":"IMsmStrings","features":[523,356]},{"name":"INFO_BASE","features":[523]},{"name":"INFO_ENTERING_PHASE_I","features":[523]},{"name":"INFO_ENTERING_PHASE_II","features":[523]},{"name":"INFO_ENTERING_PHASE_III","features":[523]},{"name":"INFO_ENTERING_PHASE_IV","features":[523]},{"name":"INFO_ENTERING_PHASE_I_VALIDATION","features":[523]},{"name":"INFO_ENTERING_PHASE_V","features":[523]},{"name":"INFO_GENERATING_METADATA","features":[523]},{"name":"INFO_PASSED_MAIN_CONTROL","features":[523]},{"name":"INFO_PATCHCACHE_FILEINFO_FAILURE","features":[523]},{"name":"INFO_PATCHCACHE_PCI_READFAILURE","features":[523]},{"name":"INFO_PATCHCACHE_PCI_WRITEFAILURE","features":[523]},{"name":"INFO_PCP_PATH","features":[523]},{"name":"INFO_PROPERTY","features":[523]},{"name":"INFO_SET_OPTIONS","features":[523]},{"name":"INFO_SUCCESSFUL_PATCH_CREATION","features":[523]},{"name":"INFO_TEMP_DIR","features":[523]},{"name":"INFO_TEMP_DIR_CLEANUP","features":[523]},{"name":"INFO_USING_USER_MSI_FOR_PATCH_TABLES","features":[523]},{"name":"INSTALLFEATUREATTRIBUTE","features":[523]},{"name":"INSTALLFEATUREATTRIBUTE_DISALLOWADVERTISE","features":[523]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORADVERTISE","features":[523]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORLOCAL","features":[523]},{"name":"INSTALLFEATUREATTRIBUTE_FAVORSOURCE","features":[523]},{"name":"INSTALLFEATUREATTRIBUTE_FOLLOWPARENT","features":[523]},{"name":"INSTALLFEATUREATTRIBUTE_NOUNSUPPORTEDADVERTISE","features":[523]},{"name":"INSTALLLEVEL","features":[523]},{"name":"INSTALLLEVEL_DEFAULT","features":[523]},{"name":"INSTALLLEVEL_MAXIMUM","features":[523]},{"name":"INSTALLLEVEL_MINIMUM","features":[523]},{"name":"INSTALLLOGATTRIBUTES","features":[523]},{"name":"INSTALLLOGATTRIBUTES_APPEND","features":[523]},{"name":"INSTALLLOGATTRIBUTES_FLUSHEACHLINE","features":[523]},{"name":"INSTALLLOGMODE","features":[523]},{"name":"INSTALLLOGMODE_ACTIONDATA","features":[523]},{"name":"INSTALLLOGMODE_ACTIONSTART","features":[523]},{"name":"INSTALLLOGMODE_COMMONDATA","features":[523]},{"name":"INSTALLLOGMODE_ERROR","features":[523]},{"name":"INSTALLLOGMODE_EXTRADEBUG","features":[523]},{"name":"INSTALLLOGMODE_FATALEXIT","features":[523]},{"name":"INSTALLLOGMODE_FILESINUSE","features":[523]},{"name":"INSTALLLOGMODE_INFO","features":[523]},{"name":"INSTALLLOGMODE_INITIALIZE","features":[523]},{"name":"INSTALLLOGMODE_INSTALLEND","features":[523]},{"name":"INSTALLLOGMODE_INSTALLSTART","features":[523]},{"name":"INSTALLLOGMODE_LOGONLYONERROR","features":[523]},{"name":"INSTALLLOGMODE_LOGPERFORMANCE","features":[523]},{"name":"INSTALLLOGMODE_OUTOFDISKSPACE","features":[523]},{"name":"INSTALLLOGMODE_PROGRESS","features":[523]},{"name":"INSTALLLOGMODE_PROPERTYDUMP","features":[523]},{"name":"INSTALLLOGMODE_RESOLVESOURCE","features":[523]},{"name":"INSTALLLOGMODE_RMFILESINUSE","features":[523]},{"name":"INSTALLLOGMODE_SHOWDIALOG","features":[523]},{"name":"INSTALLLOGMODE_TERMINATE","features":[523]},{"name":"INSTALLLOGMODE_USER","features":[523]},{"name":"INSTALLLOGMODE_VERBOSE","features":[523]},{"name":"INSTALLLOGMODE_WARNING","features":[523]},{"name":"INSTALLMESSAGE","features":[523]},{"name":"INSTALLMESSAGE_ACTIONDATA","features":[523]},{"name":"INSTALLMESSAGE_ACTIONSTART","features":[523]},{"name":"INSTALLMESSAGE_COMMONDATA","features":[523]},{"name":"INSTALLMESSAGE_ERROR","features":[523]},{"name":"INSTALLMESSAGE_FATALEXIT","features":[523]},{"name":"INSTALLMESSAGE_FILESINUSE","features":[523]},{"name":"INSTALLMESSAGE_INFO","features":[523]},{"name":"INSTALLMESSAGE_INITIALIZE","features":[523]},{"name":"INSTALLMESSAGE_INSTALLEND","features":[523]},{"name":"INSTALLMESSAGE_INSTALLSTART","features":[523]},{"name":"INSTALLMESSAGE_OUTOFDISKSPACE","features":[523]},{"name":"INSTALLMESSAGE_PERFORMANCE","features":[523]},{"name":"INSTALLMESSAGE_PROGRESS","features":[523]},{"name":"INSTALLMESSAGE_RESOLVESOURCE","features":[523]},{"name":"INSTALLMESSAGE_RMFILESINUSE","features":[523]},{"name":"INSTALLMESSAGE_SHOWDIALOG","features":[523]},{"name":"INSTALLMESSAGE_TERMINATE","features":[523]},{"name":"INSTALLMESSAGE_TYPEMASK","features":[523]},{"name":"INSTALLMESSAGE_USER","features":[523]},{"name":"INSTALLMESSAGE_WARNING","features":[523]},{"name":"INSTALLMODE","features":[523]},{"name":"INSTALLMODE_DEFAULT","features":[523]},{"name":"INSTALLMODE_EXISTING","features":[523]},{"name":"INSTALLMODE_NODETECTION","features":[523]},{"name":"INSTALLMODE_NODETECTION_ANY","features":[523]},{"name":"INSTALLMODE_NOSOURCERESOLUTION","features":[523]},{"name":"INSTALLPROPERTY_ASSIGNMENTTYPE","features":[523]},{"name":"INSTALLPROPERTY_AUTHORIZED_LUA_APP","features":[523]},{"name":"INSTALLPROPERTY_DISKPROMPT","features":[523]},{"name":"INSTALLPROPERTY_DISPLAYNAME","features":[523]},{"name":"INSTALLPROPERTY_HELPLINK","features":[523]},{"name":"INSTALLPROPERTY_HELPTELEPHONE","features":[523]},{"name":"INSTALLPROPERTY_INSTALLDATE","features":[523]},{"name":"INSTALLPROPERTY_INSTALLEDLANGUAGE","features":[523]},{"name":"INSTALLPROPERTY_INSTALLEDPRODUCTNAME","features":[523]},{"name":"INSTALLPROPERTY_INSTALLLOCATION","features":[523]},{"name":"INSTALLPROPERTY_INSTALLSOURCE","features":[523]},{"name":"INSTALLPROPERTY_INSTANCETYPE","features":[523]},{"name":"INSTALLPROPERTY_LANGUAGE","features":[523]},{"name":"INSTALLPROPERTY_LASTUSEDSOURCE","features":[523]},{"name":"INSTALLPROPERTY_LASTUSEDTYPE","features":[523]},{"name":"INSTALLPROPERTY_LOCALPACKAGE","features":[523]},{"name":"INSTALLPROPERTY_LUAENABLED","features":[523]},{"name":"INSTALLPROPERTY_MEDIAPACKAGEPATH","features":[523]},{"name":"INSTALLPROPERTY_MOREINFOURL","features":[523]},{"name":"INSTALLPROPERTY_PACKAGECODE","features":[523]},{"name":"INSTALLPROPERTY_PACKAGENAME","features":[523]},{"name":"INSTALLPROPERTY_PATCHSTATE","features":[523]},{"name":"INSTALLPROPERTY_PATCHTYPE","features":[523]},{"name":"INSTALLPROPERTY_PRODUCTICON","features":[523]},{"name":"INSTALLPROPERTY_PRODUCTID","features":[523]},{"name":"INSTALLPROPERTY_PRODUCTNAME","features":[523]},{"name":"INSTALLPROPERTY_PRODUCTSTATE","features":[523]},{"name":"INSTALLPROPERTY_PUBLISHER","features":[523]},{"name":"INSTALLPROPERTY_REGCOMPANY","features":[523]},{"name":"INSTALLPROPERTY_REGOWNER","features":[523]},{"name":"INSTALLPROPERTY_TRANSFORMS","features":[523]},{"name":"INSTALLPROPERTY_UNINSTALLABLE","features":[523]},{"name":"INSTALLPROPERTY_URLINFOABOUT","features":[523]},{"name":"INSTALLPROPERTY_URLUPDATEINFO","features":[523]},{"name":"INSTALLPROPERTY_VERSION","features":[523]},{"name":"INSTALLPROPERTY_VERSIONMAJOR","features":[523]},{"name":"INSTALLPROPERTY_VERSIONMINOR","features":[523]},{"name":"INSTALLPROPERTY_VERSIONSTRING","features":[523]},{"name":"INSTALLSTATE","features":[523]},{"name":"INSTALLSTATE_ABSENT","features":[523]},{"name":"INSTALLSTATE_ADVERTISED","features":[523]},{"name":"INSTALLSTATE_BADCONFIG","features":[523]},{"name":"INSTALLSTATE_BROKEN","features":[523]},{"name":"INSTALLSTATE_DEFAULT","features":[523]},{"name":"INSTALLSTATE_INCOMPLETE","features":[523]},{"name":"INSTALLSTATE_INVALIDARG","features":[523]},{"name":"INSTALLSTATE_LOCAL","features":[523]},{"name":"INSTALLSTATE_MOREDATA","features":[523]},{"name":"INSTALLSTATE_NOTUSED","features":[523]},{"name":"INSTALLSTATE_REMOVED","features":[523]},{"name":"INSTALLSTATE_SOURCE","features":[523]},{"name":"INSTALLSTATE_SOURCEABSENT","features":[523]},{"name":"INSTALLSTATE_UNKNOWN","features":[523]},{"name":"INSTALLTYPE","features":[523]},{"name":"INSTALLTYPE_DEFAULT","features":[523]},{"name":"INSTALLTYPE_NETWORK_IMAGE","features":[523]},{"name":"INSTALLTYPE_SINGLE_INSTANCE","features":[523]},{"name":"INSTALLUILEVEL","features":[523]},{"name":"INSTALLUILEVEL_BASIC","features":[523]},{"name":"INSTALLUILEVEL_DEFAULT","features":[523]},{"name":"INSTALLUILEVEL_ENDDIALOG","features":[523]},{"name":"INSTALLUILEVEL_FULL","features":[523]},{"name":"INSTALLUILEVEL_HIDECANCEL","features":[523]},{"name":"INSTALLUILEVEL_NOCHANGE","features":[523]},{"name":"INSTALLUILEVEL_NONE","features":[523]},{"name":"INSTALLUILEVEL_PROGRESSONLY","features":[523]},{"name":"INSTALLUILEVEL_REDUCED","features":[523]},{"name":"INSTALLUILEVEL_SOURCERESONLY","features":[523]},{"name":"INSTALLUILEVEL_UACONLY","features":[523]},{"name":"INSTALLUI_HANDLERA","features":[523]},{"name":"INSTALLUI_HANDLERW","features":[523]},{"name":"IPMApplicationInfo","features":[523]},{"name":"IPMApplicationInfoEnumerator","features":[523]},{"name":"IPMBackgroundServiceAgentInfo","features":[523]},{"name":"IPMBackgroundServiceAgentInfoEnumerator","features":[523]},{"name":"IPMBackgroundWorkerInfo","features":[523]},{"name":"IPMBackgroundWorkerInfoEnumerator","features":[523]},{"name":"IPMDeploymentManager","features":[523]},{"name":"IPMEnumerationManager","features":[523]},{"name":"IPMExtensionCachedFileUpdaterInfo","features":[523]},{"name":"IPMExtensionContractInfo","features":[523]},{"name":"IPMExtensionFileExtensionInfo","features":[523]},{"name":"IPMExtensionFileOpenPickerInfo","features":[523]},{"name":"IPMExtensionFileSavePickerInfo","features":[523]},{"name":"IPMExtensionInfo","features":[523]},{"name":"IPMExtensionInfoEnumerator","features":[523]},{"name":"IPMExtensionProtocolInfo","features":[523]},{"name":"IPMExtensionShareTargetInfo","features":[523]},{"name":"IPMLiveTileJobInfo","features":[523]},{"name":"IPMLiveTileJobInfoEnumerator","features":[523]},{"name":"IPMTaskInfo","features":[523]},{"name":"IPMTaskInfoEnumerator","features":[523]},{"name":"IPMTileInfo","features":[523]},{"name":"IPMTileInfoEnumerator","features":[523]},{"name":"IPMTilePropertyEnumerator","features":[523]},{"name":"IPMTilePropertyInfo","features":[523]},{"name":"IPROPNAME_ACTION","features":[523]},{"name":"IPROPNAME_ADMINTOOLS_FOLDER","features":[523]},{"name":"IPROPNAME_ADMINUSER","features":[523]},{"name":"IPROPNAME_ADMIN_PROPERTIES","features":[523]},{"name":"IPROPNAME_AFTERREBOOT","features":[523]},{"name":"IPROPNAME_ALLOWEDPROPERTIES","features":[523]},{"name":"IPROPNAME_ALLUSERS","features":[523]},{"name":"IPROPNAME_APPDATA_FOLDER","features":[523]},{"name":"IPROPNAME_ARM","features":[523]},{"name":"IPROPNAME_ARM64","features":[523]},{"name":"IPROPNAME_ARPAUTHORIZEDCDFPREFIX","features":[523]},{"name":"IPROPNAME_ARPCOMMENTS","features":[523]},{"name":"IPROPNAME_ARPCONTACT","features":[523]},{"name":"IPROPNAME_ARPHELPLINK","features":[523]},{"name":"IPROPNAME_ARPHELPTELEPHONE","features":[523]},{"name":"IPROPNAME_ARPINSTALLLOCATION","features":[523]},{"name":"IPROPNAME_ARPNOMODIFY","features":[523]},{"name":"IPROPNAME_ARPNOREMOVE","features":[523]},{"name":"IPROPNAME_ARPNOREPAIR","features":[523]},{"name":"IPROPNAME_ARPPRODUCTICON","features":[523]},{"name":"IPROPNAME_ARPREADME","features":[523]},{"name":"IPROPNAME_ARPSETTINGSIDENTIFIER","features":[523]},{"name":"IPROPNAME_ARPSHIMFLAGS","features":[523]},{"name":"IPROPNAME_ARPSHIMSERVICEPACKLEVEL","features":[523]},{"name":"IPROPNAME_ARPSHIMVERSIONNT","features":[523]},{"name":"IPROPNAME_ARPSIZE","features":[523]},{"name":"IPROPNAME_ARPSYSTEMCOMPONENT","features":[523]},{"name":"IPROPNAME_ARPURLINFOABOUT","features":[523]},{"name":"IPROPNAME_ARPURLUPDATEINFO","features":[523]},{"name":"IPROPNAME_AVAILABLEFREEREG","features":[523]},{"name":"IPROPNAME_BORDERSIDE","features":[523]},{"name":"IPROPNAME_BORDERTOP","features":[523]},{"name":"IPROPNAME_CAPTIONHEIGHT","features":[523]},{"name":"IPROPNAME_CARRYINGNDP","features":[523]},{"name":"IPROPNAME_CHECKCRCS","features":[523]},{"name":"IPROPNAME_COLORBITS","features":[523]},{"name":"IPROPNAME_COMMONAPPDATA_FOLDER","features":[523]},{"name":"IPROPNAME_COMMONFILES64_FOLDER","features":[523]},{"name":"IPROPNAME_COMMONFILES_FOLDER","features":[523]},{"name":"IPROPNAME_COMPANYNAME","features":[523]},{"name":"IPROPNAME_COMPONENTADDDEFAULT","features":[523]},{"name":"IPROPNAME_COMPONENTADDLOCAL","features":[523]},{"name":"IPROPNAME_COMPONENTADDSOURCE","features":[523]},{"name":"IPROPNAME_COMPUTERNAME","features":[523]},{"name":"IPROPNAME_COSTINGCOMPLETE","features":[523]},{"name":"IPROPNAME_CUSTOMACTIONDATA","features":[523]},{"name":"IPROPNAME_DATE","features":[523]},{"name":"IPROPNAME_DATETIME","features":[523]},{"name":"IPROPNAME_DEFAULTUIFONT","features":[523]},{"name":"IPROPNAME_DESKTOP_FOLDER","features":[523]},{"name":"IPROPNAME_DISABLEADVTSHORTCUTS","features":[523]},{"name":"IPROPNAME_DISABLEROLLBACK","features":[523]},{"name":"IPROPNAME_DISKPROMPT","features":[523]},{"name":"IPROPNAME_ENABLEUSERCONTROL","features":[523]},{"name":"IPROPNAME_ENFORCE_UPGRADE_COMPONENT_RULES","features":[523]},{"name":"IPROPNAME_EXECUTEACTION","features":[523]},{"name":"IPROPNAME_EXECUTEMODE","features":[523]},{"name":"IPROPNAME_FAVORITES_FOLDER","features":[523]},{"name":"IPROPNAME_FEATUREADDDEFAULT","features":[523]},{"name":"IPROPNAME_FEATUREADDLOCAL","features":[523]},{"name":"IPROPNAME_FEATUREADDSOURCE","features":[523]},{"name":"IPROPNAME_FEATUREADVERTISE","features":[523]},{"name":"IPROPNAME_FEATUREREMOVE","features":[523]},{"name":"IPROPNAME_FILEADDDEFAULT","features":[523]},{"name":"IPROPNAME_FILEADDLOCAL","features":[523]},{"name":"IPROPNAME_FILEADDSOURCE","features":[523]},{"name":"IPROPNAME_FONTS_FOLDER","features":[523]},{"name":"IPROPNAME_HIDDEN_PROPERTIES","features":[523]},{"name":"IPROPNAME_HIDECANCEL","features":[523]},{"name":"IPROPNAME_IA64","features":[523]},{"name":"IPROPNAME_INSTALLED","features":[523]},{"name":"IPROPNAME_INSTALLLANGUAGE","features":[523]},{"name":"IPROPNAME_INSTALLLEVEL","features":[523]},{"name":"IPROPNAME_INSTALLPERUSER","features":[523]},{"name":"IPROPNAME_INTEL","features":[523]},{"name":"IPROPNAME_INTEL64","features":[523]},{"name":"IPROPNAME_INTERNALINSTALLEDPERUSER","features":[523]},{"name":"IPROPNAME_ISADMINPACKAGE","features":[523]},{"name":"IPROPNAME_LEFTUNIT","features":[523]},{"name":"IPROPNAME_LIMITUI","features":[523]},{"name":"IPROPNAME_LOCALAPPDATA_FOLDER","features":[523]},{"name":"IPROPNAME_LOGACTION","features":[523]},{"name":"IPROPNAME_LOGONUSER","features":[523]},{"name":"IPROPNAME_MANUFACTURER","features":[523]},{"name":"IPROPNAME_MSIAMD64","features":[523]},{"name":"IPROPNAME_MSIDISABLEEEUI","features":[523]},{"name":"IPROPNAME_MSIDISABLELUAPATCHING","features":[523]},{"name":"IPROPNAME_MSIINSTANCEGUID","features":[523]},{"name":"IPROPNAME_MSILOGFILELOCATION","features":[523]},{"name":"IPROPNAME_MSILOGGINGMODE","features":[523]},{"name":"IPROPNAME_MSINEWINSTANCE","features":[523]},{"name":"IPROPNAME_MSINODISABLEMEDIA","features":[523]},{"name":"IPROPNAME_MSIPACKAGEDOWNLOADLOCALCOPY","features":[523]},{"name":"IPROPNAME_MSIPATCHDOWNLOADLOCALCOPY","features":[523]},{"name":"IPROPNAME_MSIPATCHREMOVE","features":[523]},{"name":"IPROPNAME_MSITABLETPC","features":[523]},{"name":"IPROPNAME_MSIX64","features":[523]},{"name":"IPROPNAME_MSI_FASTINSTALL","features":[523]},{"name":"IPROPNAME_MSI_REBOOT_PENDING","features":[523]},{"name":"IPROPNAME_MSI_RM_CONTROL","features":[523]},{"name":"IPROPNAME_MSI_RM_DISABLE_RESTART","features":[523]},{"name":"IPROPNAME_MSI_RM_SESSION_KEY","features":[523]},{"name":"IPROPNAME_MSI_RM_SHUTDOWN","features":[523]},{"name":"IPROPNAME_MSI_UAC_DEPLOYMENT_COMPLIANT","features":[523]},{"name":"IPROPNAME_MSI_UNINSTALL_SUPERSEDED_COMPONENTS","features":[523]},{"name":"IPROPNAME_MSI_USE_REAL_ADMIN_DETECTION","features":[523]},{"name":"IPROPNAME_MYPICTURES_FOLDER","features":[523]},{"name":"IPROPNAME_NETASSEMBLYSUPPORT","features":[523]},{"name":"IPROPNAME_NETHOOD_FOLDER","features":[523]},{"name":"IPROPNAME_NOCOMPANYNAME","features":[523]},{"name":"IPROPNAME_NOUSERNAME","features":[523]},{"name":"IPROPNAME_NTPRODUCTTYPE","features":[523]},{"name":"IPROPNAME_NTSUITEBACKOFFICE","features":[523]},{"name":"IPROPNAME_NTSUITEDATACENTER","features":[523]},{"name":"IPROPNAME_NTSUITEENTERPRISE","features":[523]},{"name":"IPROPNAME_NTSUITEPERSONAL","features":[523]},{"name":"IPROPNAME_NTSUITESMALLBUSINESS","features":[523]},{"name":"IPROPNAME_NTSUITESMALLBUSINESSRESTRICTED","features":[523]},{"name":"IPROPNAME_NTSUITEWEBSERVER","features":[523]},{"name":"IPROPNAME_OLEADVTSUPPORT","features":[523]},{"name":"IPROPNAME_OUTOFDISKSPACE","features":[523]},{"name":"IPROPNAME_OUTOFNORBDISKSPACE","features":[523]},{"name":"IPROPNAME_PATCH","features":[523]},{"name":"IPROPNAME_PATCHNEWPACKAGECODE","features":[523]},{"name":"IPROPNAME_PATCHNEWSUMMARYCOMMENTS","features":[523]},{"name":"IPROPNAME_PATCHNEWSUMMARYSUBJECT","features":[523]},{"name":"IPROPNAME_PERSONAL_FOLDER","features":[523]},{"name":"IPROPNAME_PHYSICALMEMORY","features":[523]},{"name":"IPROPNAME_PIDKEY","features":[523]},{"name":"IPROPNAME_PIDTEMPLATE","features":[523]},{"name":"IPROPNAME_PRESELECTED","features":[523]},{"name":"IPROPNAME_PRIMARYFOLDER","features":[523]},{"name":"IPROPNAME_PRIMARYFOLDER_PATH","features":[523]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEAVAILABLE","features":[523]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREMAINING","features":[523]},{"name":"IPROPNAME_PRIMARYFOLDER_SPACEREQUIRED","features":[523]},{"name":"IPROPNAME_PRINTHOOD_FOLDER","features":[523]},{"name":"IPROPNAME_PRIVILEGED","features":[523]},{"name":"IPROPNAME_PRODUCTCODE","features":[523]},{"name":"IPROPNAME_PRODUCTID","features":[523]},{"name":"IPROPNAME_PRODUCTLANGUAGE","features":[523]},{"name":"IPROPNAME_PRODUCTNAME","features":[523]},{"name":"IPROPNAME_PRODUCTSTATE","features":[523]},{"name":"IPROPNAME_PRODUCTVERSION","features":[523]},{"name":"IPROPNAME_PROGRAMFILES64_FOLDER","features":[523]},{"name":"IPROPNAME_PROGRAMFILES_FOLDER","features":[523]},{"name":"IPROPNAME_PROGRAMMENU_FOLDER","features":[523]},{"name":"IPROPNAME_PROGRESSONLY","features":[523]},{"name":"IPROPNAME_PROMPTROLLBACKCOST","features":[523]},{"name":"IPROPNAME_REBOOT","features":[523]},{"name":"IPROPNAME_REBOOTPROMPT","features":[523]},{"name":"IPROPNAME_RECENT_FOLDER","features":[523]},{"name":"IPROPNAME_REDIRECTEDDLLSUPPORT","features":[523]},{"name":"IPROPNAME_REINSTALL","features":[523]},{"name":"IPROPNAME_REINSTALLMODE","features":[523]},{"name":"IPROPNAME_REMOTEADMINTS","features":[523]},{"name":"IPROPNAME_REPLACEDINUSEFILES","features":[523]},{"name":"IPROPNAME_RESTRICTEDUSERCONTROL","features":[523]},{"name":"IPROPNAME_RESUME","features":[523]},{"name":"IPROPNAME_ROLLBACKDISABLED","features":[523]},{"name":"IPROPNAME_ROOTDRIVE","features":[523]},{"name":"IPROPNAME_RUNNINGELEVATED","features":[523]},{"name":"IPROPNAME_SCREENX","features":[523]},{"name":"IPROPNAME_SCREENY","features":[523]},{"name":"IPROPNAME_SENDTO_FOLDER","features":[523]},{"name":"IPROPNAME_SEQUENCE","features":[523]},{"name":"IPROPNAME_SERVICEPACKLEVEL","features":[523]},{"name":"IPROPNAME_SERVICEPACKLEVELMINOR","features":[523]},{"name":"IPROPNAME_SHAREDWINDOWS","features":[523]},{"name":"IPROPNAME_SHELLADVTSUPPORT","features":[523]},{"name":"IPROPNAME_SHORTFILENAMES","features":[523]},{"name":"IPROPNAME_SOURCEDIR","features":[523]},{"name":"IPROPNAME_SOURCELIST","features":[523]},{"name":"IPROPNAME_SOURCERESONLY","features":[523]},{"name":"IPROPNAME_STARTMENU_FOLDER","features":[523]},{"name":"IPROPNAME_STARTUP_FOLDER","features":[523]},{"name":"IPROPNAME_SYSTEM16_FOLDER","features":[523]},{"name":"IPROPNAME_SYSTEM64_FOLDER","features":[523]},{"name":"IPROPNAME_SYSTEMLANGUAGEID","features":[523]},{"name":"IPROPNAME_SYSTEM_FOLDER","features":[523]},{"name":"IPROPNAME_TARGETDIR","features":[523]},{"name":"IPROPNAME_TEMPLATE_AMD64","features":[523]},{"name":"IPROPNAME_TEMPLATE_FOLDER","features":[523]},{"name":"IPROPNAME_TEMPLATE_X64","features":[523]},{"name":"IPROPNAME_TEMP_FOLDER","features":[523]},{"name":"IPROPNAME_TERMSERVER","features":[523]},{"name":"IPROPNAME_TEXTHEIGHT","features":[523]},{"name":"IPROPNAME_TEXTHEIGHT_CORRECTION","features":[523]},{"name":"IPROPNAME_TEXTINTERNALLEADING","features":[523]},{"name":"IPROPNAME_TIME","features":[523]},{"name":"IPROPNAME_TRANSFORMS","features":[523]},{"name":"IPROPNAME_TRANSFORMSATSOURCE","features":[523]},{"name":"IPROPNAME_TRANSFORMSSECURE","features":[523]},{"name":"IPROPNAME_TRUEADMINUSER","features":[523]},{"name":"IPROPNAME_TTCSUPPORT","features":[523]},{"name":"IPROPNAME_UACONLY","features":[523]},{"name":"IPROPNAME_UPDATESTARTED","features":[523]},{"name":"IPROPNAME_UPGRADECODE","features":[523]},{"name":"IPROPNAME_USERLANGUAGEID","features":[523]},{"name":"IPROPNAME_USERNAME","features":[523]},{"name":"IPROPNAME_USERSID","features":[523]},{"name":"IPROPNAME_VERSION9X","features":[523]},{"name":"IPROPNAME_VERSIONNT","features":[523]},{"name":"IPROPNAME_VERSIONNT64","features":[523]},{"name":"IPROPNAME_VIRTUALMEMORY","features":[523]},{"name":"IPROPNAME_WIN32ASSEMBLYSUPPORT","features":[523]},{"name":"IPROPNAME_WINDOWSBUILD","features":[523]},{"name":"IPROPNAME_WINDOWS_FOLDER","features":[523]},{"name":"IPROPNAME_WINDOWS_VOLUME","features":[523]},{"name":"IPROPVALUE_EXECUTEMODE_NONE","features":[523]},{"name":"IPROPVALUE_EXECUTEMODE_SCRIPT","features":[523]},{"name":"IPROPVALUE_FEATURE_ALL","features":[523]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLE","features":[523]},{"name":"IPROPVALUE_MSI_RM_CONTROL_DISABLESHUTDOWN","features":[523]},{"name":"IPROPVALUE_RBCOST_FAIL","features":[523]},{"name":"IPROPVALUE_RBCOST_PROMPT","features":[523]},{"name":"IPROPVALUE_RBCOST_SILENT","features":[523]},{"name":"IPROPVALUE__CARRYINGNDP_URTREINSTALL","features":[523]},{"name":"IPROPVALUE__CARRYINGNDP_URTUPGRADE","features":[523]},{"name":"IValidate","features":[523]},{"name":"LIBID_MsmMergeTypeLib","features":[523]},{"name":"LOGALL","features":[523]},{"name":"LOGERR","features":[523]},{"name":"LOGINFO","features":[523]},{"name":"LOGNONE","features":[523]},{"name":"LOGPERFMESSAGES","features":[523]},{"name":"LOGTOKEN_NO_LOG","features":[523]},{"name":"LOGTOKEN_SETUPAPI_APPLOG","features":[523]},{"name":"LOGTOKEN_SETUPAPI_DEVLOG","features":[523]},{"name":"LOGTOKEN_TYPE_MASK","features":[523]},{"name":"LOGTOKEN_UNSPECIFIED","features":[523]},{"name":"LOGWARN","features":[523]},{"name":"LPDISPLAYVAL","features":[305,523]},{"name":"LPEVALCOMCALLBACK","features":[305,523]},{"name":"MAX_FEATURE_CHARS","features":[523]},{"name":"MAX_GUID_CHARS","features":[523]},{"name":"MSIADVERTISEOPTIONFLAGS","features":[523]},{"name":"MSIADVERTISEOPTIONFLAGS_INSTANCE","features":[523]},{"name":"MSIARCHITECTUREFLAGS","features":[523]},{"name":"MSIARCHITECTUREFLAGS_AMD64","features":[523]},{"name":"MSIARCHITECTUREFLAGS_ARM","features":[523]},{"name":"MSIARCHITECTUREFLAGS_IA64","features":[523]},{"name":"MSIARCHITECTUREFLAGS_X86","features":[523]},{"name":"MSIASSEMBLYINFO","features":[523]},{"name":"MSIASSEMBLYINFO_NETASSEMBLY","features":[523]},{"name":"MSIASSEMBLYINFO_WIN32ASSEMBLY","features":[523]},{"name":"MSICODE","features":[523]},{"name":"MSICODE_PATCH","features":[523]},{"name":"MSICODE_PRODUCT","features":[523]},{"name":"MSICOLINFO","features":[523]},{"name":"MSICOLINFO_NAMES","features":[523]},{"name":"MSICOLINFO_TYPES","features":[523]},{"name":"MSICONDITION","features":[523]},{"name":"MSICONDITION_ERROR","features":[523]},{"name":"MSICONDITION_FALSE","features":[523]},{"name":"MSICONDITION_NONE","features":[523]},{"name":"MSICONDITION_TRUE","features":[523]},{"name":"MSICOSTTREE","features":[523]},{"name":"MSICOSTTREE_CHILDREN","features":[523]},{"name":"MSICOSTTREE_PARENTS","features":[523]},{"name":"MSICOSTTREE_RESERVED","features":[523]},{"name":"MSICOSTTREE_SELFONLY","features":[523]},{"name":"MSIDBERROR","features":[523]},{"name":"MSIDBERROR_BADCABINET","features":[523]},{"name":"MSIDBERROR_BADCASE","features":[523]},{"name":"MSIDBERROR_BADCATEGORY","features":[523]},{"name":"MSIDBERROR_BADCONDITION","features":[523]},{"name":"MSIDBERROR_BADCUSTOMSOURCE","features":[523]},{"name":"MSIDBERROR_BADDEFAULTDIR","features":[523]},{"name":"MSIDBERROR_BADFILENAME","features":[523]},{"name":"MSIDBERROR_BADFORMATTED","features":[523]},{"name":"MSIDBERROR_BADGUID","features":[523]},{"name":"MSIDBERROR_BADIDENTIFIER","features":[523]},{"name":"MSIDBERROR_BADKEYTABLE","features":[523]},{"name":"MSIDBERROR_BADLANGUAGE","features":[523]},{"name":"MSIDBERROR_BADLINK","features":[523]},{"name":"MSIDBERROR_BADLOCALIZEATTRIB","features":[523]},{"name":"MSIDBERROR_BADMAXMINVALUES","features":[523]},{"name":"MSIDBERROR_BADPATH","features":[523]},{"name":"MSIDBERROR_BADPROPERTY","features":[523]},{"name":"MSIDBERROR_BADREGPATH","features":[523]},{"name":"MSIDBERROR_BADSHORTCUT","features":[523]},{"name":"MSIDBERROR_BADTEMPLATE","features":[523]},{"name":"MSIDBERROR_BADVERSION","features":[523]},{"name":"MSIDBERROR_BADWILDCARD","features":[523]},{"name":"MSIDBERROR_DUPLICATEKEY","features":[523]},{"name":"MSIDBERROR_FUNCTIONERROR","features":[523]},{"name":"MSIDBERROR_INVALIDARG","features":[523]},{"name":"MSIDBERROR_MISSINGDATA","features":[523]},{"name":"MSIDBERROR_MOREDATA","features":[523]},{"name":"MSIDBERROR_NOERROR","features":[523]},{"name":"MSIDBERROR_NOTINSET","features":[523]},{"name":"MSIDBERROR_OVERFLOW","features":[523]},{"name":"MSIDBERROR_REQUIRED","features":[523]},{"name":"MSIDBERROR_STRINGOVERFLOW","features":[523]},{"name":"MSIDBERROR_UNDERFLOW","features":[523]},{"name":"MSIDBOPEN_CREATE","features":[523]},{"name":"MSIDBOPEN_CREATEDIRECT","features":[523]},{"name":"MSIDBOPEN_DIRECT","features":[523]},{"name":"MSIDBOPEN_PATCHFILE","features":[523]},{"name":"MSIDBOPEN_READONLY","features":[523]},{"name":"MSIDBOPEN_TRANSACT","features":[523]},{"name":"MSIDBSTATE","features":[523]},{"name":"MSIDBSTATE_ERROR","features":[523]},{"name":"MSIDBSTATE_READ","features":[523]},{"name":"MSIDBSTATE_WRITE","features":[523]},{"name":"MSIFILEHASHINFO","features":[523]},{"name":"MSIHANDLE","features":[523]},{"name":"MSIINSTALLCONTEXT","features":[523]},{"name":"MSIINSTALLCONTEXT_ALL","features":[523]},{"name":"MSIINSTALLCONTEXT_ALLUSERMANAGED","features":[523]},{"name":"MSIINSTALLCONTEXT_FIRSTVISIBLE","features":[523]},{"name":"MSIINSTALLCONTEXT_MACHINE","features":[523]},{"name":"MSIINSTALLCONTEXT_NONE","features":[523]},{"name":"MSIINSTALLCONTEXT_USERMANAGED","features":[523]},{"name":"MSIINSTALLCONTEXT_USERUNMANAGED","features":[523]},{"name":"MSIMODIFY","features":[523]},{"name":"MSIMODIFY_ASSIGN","features":[523]},{"name":"MSIMODIFY_DELETE","features":[523]},{"name":"MSIMODIFY_INSERT","features":[523]},{"name":"MSIMODIFY_INSERT_TEMPORARY","features":[523]},{"name":"MSIMODIFY_MERGE","features":[523]},{"name":"MSIMODIFY_REFRESH","features":[523]},{"name":"MSIMODIFY_REPLACE","features":[523]},{"name":"MSIMODIFY_SEEK","features":[523]},{"name":"MSIMODIFY_UPDATE","features":[523]},{"name":"MSIMODIFY_VALIDATE","features":[523]},{"name":"MSIMODIFY_VALIDATE_DELETE","features":[523]},{"name":"MSIMODIFY_VALIDATE_FIELD","features":[523]},{"name":"MSIMODIFY_VALIDATE_NEW","features":[523]},{"name":"MSIOPENPACKAGEFLAGS","features":[523]},{"name":"MSIOPENPACKAGEFLAGS_IGNOREMACHINESTATE","features":[523]},{"name":"MSIPATCHDATATYPE","features":[523]},{"name":"MSIPATCHSEQUENCEINFOA","features":[523]},{"name":"MSIPATCHSEQUENCEINFOW","features":[523]},{"name":"MSIPATCHSTATE","features":[523]},{"name":"MSIPATCHSTATE_ALL","features":[523]},{"name":"MSIPATCHSTATE_APPLIED","features":[523]},{"name":"MSIPATCHSTATE_INVALID","features":[523]},{"name":"MSIPATCHSTATE_OBSOLETED","features":[523]},{"name":"MSIPATCHSTATE_REGISTERED","features":[523]},{"name":"MSIPATCHSTATE_SUPERSEDED","features":[523]},{"name":"MSIPATCH_DATATYPE_PATCHFILE","features":[523]},{"name":"MSIPATCH_DATATYPE_XMLBLOB","features":[523]},{"name":"MSIPATCH_DATATYPE_XMLPATH","features":[523]},{"name":"MSIRUNMODE","features":[523]},{"name":"MSIRUNMODE_ADMIN","features":[523]},{"name":"MSIRUNMODE_ADVERTISE","features":[523]},{"name":"MSIRUNMODE_CABINET","features":[523]},{"name":"MSIRUNMODE_COMMIT","features":[523]},{"name":"MSIRUNMODE_LOGENABLED","features":[523]},{"name":"MSIRUNMODE_MAINTENANCE","features":[523]},{"name":"MSIRUNMODE_OPERATIONS","features":[523]},{"name":"MSIRUNMODE_REBOOTATEND","features":[523]},{"name":"MSIRUNMODE_REBOOTNOW","features":[523]},{"name":"MSIRUNMODE_RESERVED11","features":[523]},{"name":"MSIRUNMODE_RESERVED14","features":[523]},{"name":"MSIRUNMODE_RESERVED15","features":[523]},{"name":"MSIRUNMODE_ROLLBACK","features":[523]},{"name":"MSIRUNMODE_ROLLBACKENABLED","features":[523]},{"name":"MSIRUNMODE_SCHEDULED","features":[523]},{"name":"MSIRUNMODE_SOURCESHORTNAMES","features":[523]},{"name":"MSIRUNMODE_TARGETSHORTNAMES","features":[523]},{"name":"MSIRUNMODE_WINDOWS9X","features":[523]},{"name":"MSIRUNMODE_ZAWENABLED","features":[523]},{"name":"MSISOURCETYPE","features":[523]},{"name":"MSISOURCETYPE_MEDIA","features":[523]},{"name":"MSISOURCETYPE_NETWORK","features":[523]},{"name":"MSISOURCETYPE_UNKNOWN","features":[523]},{"name":"MSISOURCETYPE_URL","features":[523]},{"name":"MSITRANSACTION","features":[523]},{"name":"MSITRANSACTIONSTATE","features":[523]},{"name":"MSITRANSACTIONSTATE_COMMIT","features":[523]},{"name":"MSITRANSACTIONSTATE_ROLLBACK","features":[523]},{"name":"MSITRANSACTION_CHAIN_EMBEDDEDUI","features":[523]},{"name":"MSITRANSACTION_JOIN_EXISTING_EMBEDDEDUI","features":[523]},{"name":"MSITRANSFORM_ERROR","features":[523]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGROW","features":[523]},{"name":"MSITRANSFORM_ERROR_ADDEXISTINGTABLE","features":[523]},{"name":"MSITRANSFORM_ERROR_CHANGECODEPAGE","features":[523]},{"name":"MSITRANSFORM_ERROR_DELMISSINGROW","features":[523]},{"name":"MSITRANSFORM_ERROR_DELMISSINGTABLE","features":[523]},{"name":"MSITRANSFORM_ERROR_NONE","features":[523]},{"name":"MSITRANSFORM_ERROR_UPDATEMISSINGROW","features":[523]},{"name":"MSITRANSFORM_ERROR_VIEWTRANSFORM","features":[523]},{"name":"MSITRANSFORM_VALIDATE","features":[523]},{"name":"MSITRANSFORM_VALIDATE_LANGUAGE","features":[523]},{"name":"MSITRANSFORM_VALIDATE_MAJORVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_MINORVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_NEWEQUALBASEVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATERBASEVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_NEWGREATEREQUALBASEVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSBASEVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_NEWLESSEQUALBASEVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_PLATFORM","features":[523]},{"name":"MSITRANSFORM_VALIDATE_PRODUCT","features":[523]},{"name":"MSITRANSFORM_VALIDATE_UPDATEVERSION","features":[523]},{"name":"MSITRANSFORM_VALIDATE_UPGRADECODE","features":[523]},{"name":"MSI_INVALID_HASH_IS_FATAL","features":[523]},{"name":"MSI_NULL_INTEGER","features":[523]},{"name":"MsiAdvertiseProductA","features":[523]},{"name":"MsiAdvertiseProductExA","features":[523]},{"name":"MsiAdvertiseProductExW","features":[523]},{"name":"MsiAdvertiseProductW","features":[523]},{"name":"MsiAdvertiseScriptA","features":[305,523,366]},{"name":"MsiAdvertiseScriptW","features":[305,523,366]},{"name":"MsiApplyMultiplePatchesA","features":[523]},{"name":"MsiApplyMultiplePatchesW","features":[523]},{"name":"MsiApplyPatchA","features":[523]},{"name":"MsiApplyPatchW","features":[523]},{"name":"MsiBeginTransactionA","features":[305,523]},{"name":"MsiBeginTransactionW","features":[305,523]},{"name":"MsiCloseAllHandles","features":[523]},{"name":"MsiCloseHandle","features":[523]},{"name":"MsiCollectUserInfoA","features":[523]},{"name":"MsiCollectUserInfoW","features":[523]},{"name":"MsiConfigureFeatureA","features":[523]},{"name":"MsiConfigureFeatureW","features":[523]},{"name":"MsiConfigureProductA","features":[523]},{"name":"MsiConfigureProductExA","features":[523]},{"name":"MsiConfigureProductExW","features":[523]},{"name":"MsiConfigureProductW","features":[523]},{"name":"MsiCreateRecord","features":[523]},{"name":"MsiCreateTransformSummaryInfoA","features":[523]},{"name":"MsiCreateTransformSummaryInfoW","features":[523]},{"name":"MsiDatabaseApplyTransformA","features":[523]},{"name":"MsiDatabaseApplyTransformW","features":[523]},{"name":"MsiDatabaseCommit","features":[523]},{"name":"MsiDatabaseExportA","features":[523]},{"name":"MsiDatabaseExportW","features":[523]},{"name":"MsiDatabaseGenerateTransformA","features":[523]},{"name":"MsiDatabaseGenerateTransformW","features":[523]},{"name":"MsiDatabaseGetPrimaryKeysA","features":[523]},{"name":"MsiDatabaseGetPrimaryKeysW","features":[523]},{"name":"MsiDatabaseImportA","features":[523]},{"name":"MsiDatabaseImportW","features":[523]},{"name":"MsiDatabaseIsTablePersistentA","features":[523]},{"name":"MsiDatabaseIsTablePersistentW","features":[523]},{"name":"MsiDatabaseMergeA","features":[523]},{"name":"MsiDatabaseMergeW","features":[523]},{"name":"MsiDatabaseOpenViewA","features":[523]},{"name":"MsiDatabaseOpenViewW","features":[523]},{"name":"MsiDetermineApplicablePatchesA","features":[523]},{"name":"MsiDetermineApplicablePatchesW","features":[523]},{"name":"MsiDeterminePatchSequenceA","features":[523]},{"name":"MsiDeterminePatchSequenceW","features":[523]},{"name":"MsiDoActionA","features":[523]},{"name":"MsiDoActionW","features":[523]},{"name":"MsiEnableLogA","features":[523]},{"name":"MsiEnableLogW","features":[523]},{"name":"MsiEnableUIPreview","features":[523]},{"name":"MsiEndTransaction","features":[523]},{"name":"MsiEnumClientsA","features":[523]},{"name":"MsiEnumClientsExA","features":[523]},{"name":"MsiEnumClientsExW","features":[523]},{"name":"MsiEnumClientsW","features":[523]},{"name":"MsiEnumComponentCostsA","features":[523]},{"name":"MsiEnumComponentCostsW","features":[523]},{"name":"MsiEnumComponentQualifiersA","features":[523]},{"name":"MsiEnumComponentQualifiersW","features":[523]},{"name":"MsiEnumComponentsA","features":[523]},{"name":"MsiEnumComponentsExA","features":[523]},{"name":"MsiEnumComponentsExW","features":[523]},{"name":"MsiEnumComponentsW","features":[523]},{"name":"MsiEnumFeaturesA","features":[523]},{"name":"MsiEnumFeaturesW","features":[523]},{"name":"MsiEnumPatchesA","features":[523]},{"name":"MsiEnumPatchesExA","features":[523]},{"name":"MsiEnumPatchesExW","features":[523]},{"name":"MsiEnumPatchesW","features":[523]},{"name":"MsiEnumProductsA","features":[523]},{"name":"MsiEnumProductsExA","features":[523]},{"name":"MsiEnumProductsExW","features":[523]},{"name":"MsiEnumProductsW","features":[523]},{"name":"MsiEnumRelatedProductsA","features":[523]},{"name":"MsiEnumRelatedProductsW","features":[523]},{"name":"MsiEvaluateConditionA","features":[523]},{"name":"MsiEvaluateConditionW","features":[523]},{"name":"MsiExtractPatchXMLDataA","features":[523]},{"name":"MsiExtractPatchXMLDataW","features":[523]},{"name":"MsiFormatRecordA","features":[523]},{"name":"MsiFormatRecordW","features":[523]},{"name":"MsiGetActiveDatabase","features":[523]},{"name":"MsiGetComponentPathA","features":[523]},{"name":"MsiGetComponentPathExA","features":[523]},{"name":"MsiGetComponentPathExW","features":[523]},{"name":"MsiGetComponentPathW","features":[523]},{"name":"MsiGetComponentStateA","features":[523]},{"name":"MsiGetComponentStateW","features":[523]},{"name":"MsiGetDatabaseState","features":[523]},{"name":"MsiGetFeatureCostA","features":[523]},{"name":"MsiGetFeatureCostW","features":[523]},{"name":"MsiGetFeatureInfoA","features":[523]},{"name":"MsiGetFeatureInfoW","features":[523]},{"name":"MsiGetFeatureStateA","features":[523]},{"name":"MsiGetFeatureStateW","features":[523]},{"name":"MsiGetFeatureUsageA","features":[523]},{"name":"MsiGetFeatureUsageW","features":[523]},{"name":"MsiGetFeatureValidStatesA","features":[523]},{"name":"MsiGetFeatureValidStatesW","features":[523]},{"name":"MsiGetFileHashA","features":[523]},{"name":"MsiGetFileHashW","features":[523]},{"name":"MsiGetFileSignatureInformationA","features":[305,389,523]},{"name":"MsiGetFileSignatureInformationW","features":[305,389,523]},{"name":"MsiGetFileVersionA","features":[523]},{"name":"MsiGetFileVersionW","features":[523]},{"name":"MsiGetLanguage","features":[523]},{"name":"MsiGetLastErrorRecord","features":[523]},{"name":"MsiGetMode","features":[305,523]},{"name":"MsiGetPatchFileListA","features":[523]},{"name":"MsiGetPatchFileListW","features":[523]},{"name":"MsiGetPatchInfoA","features":[523]},{"name":"MsiGetPatchInfoExA","features":[523]},{"name":"MsiGetPatchInfoExW","features":[523]},{"name":"MsiGetPatchInfoW","features":[523]},{"name":"MsiGetProductCodeA","features":[523]},{"name":"MsiGetProductCodeW","features":[523]},{"name":"MsiGetProductInfoA","features":[523]},{"name":"MsiGetProductInfoExA","features":[523]},{"name":"MsiGetProductInfoExW","features":[523]},{"name":"MsiGetProductInfoFromScriptA","features":[523]},{"name":"MsiGetProductInfoFromScriptW","features":[523]},{"name":"MsiGetProductInfoW","features":[523]},{"name":"MsiGetProductPropertyA","features":[523]},{"name":"MsiGetProductPropertyW","features":[523]},{"name":"MsiGetPropertyA","features":[523]},{"name":"MsiGetPropertyW","features":[523]},{"name":"MsiGetShortcutTargetA","features":[523]},{"name":"MsiGetShortcutTargetW","features":[523]},{"name":"MsiGetSourcePathA","features":[523]},{"name":"MsiGetSourcePathW","features":[523]},{"name":"MsiGetSummaryInformationA","features":[523]},{"name":"MsiGetSummaryInformationW","features":[523]},{"name":"MsiGetTargetPathA","features":[523]},{"name":"MsiGetTargetPathW","features":[523]},{"name":"MsiGetUserInfoA","features":[523]},{"name":"MsiGetUserInfoW","features":[523]},{"name":"MsiInstallMissingComponentA","features":[523]},{"name":"MsiInstallMissingComponentW","features":[523]},{"name":"MsiInstallMissingFileA","features":[523]},{"name":"MsiInstallMissingFileW","features":[523]},{"name":"MsiInstallProductA","features":[523]},{"name":"MsiInstallProductW","features":[523]},{"name":"MsiIsProductElevatedA","features":[305,523]},{"name":"MsiIsProductElevatedW","features":[305,523]},{"name":"MsiJoinTransaction","features":[305,523]},{"name":"MsiLocateComponentA","features":[523]},{"name":"MsiLocateComponentW","features":[523]},{"name":"MsiNotifySidChangeA","features":[523]},{"name":"MsiNotifySidChangeW","features":[523]},{"name":"MsiOpenDatabaseA","features":[523]},{"name":"MsiOpenDatabaseW","features":[523]},{"name":"MsiOpenPackageA","features":[523]},{"name":"MsiOpenPackageExA","features":[523]},{"name":"MsiOpenPackageExW","features":[523]},{"name":"MsiOpenPackageW","features":[523]},{"name":"MsiOpenProductA","features":[523]},{"name":"MsiOpenProductW","features":[523]},{"name":"MsiPreviewBillboardA","features":[523]},{"name":"MsiPreviewBillboardW","features":[523]},{"name":"MsiPreviewDialogA","features":[523]},{"name":"MsiPreviewDialogW","features":[523]},{"name":"MsiProcessAdvertiseScriptA","features":[305,523,366]},{"name":"MsiProcessAdvertiseScriptW","features":[305,523,366]},{"name":"MsiProcessMessage","features":[523]},{"name":"MsiProvideAssemblyA","features":[523]},{"name":"MsiProvideAssemblyW","features":[523]},{"name":"MsiProvideComponentA","features":[523]},{"name":"MsiProvideComponentW","features":[523]},{"name":"MsiProvideQualifiedComponentA","features":[523]},{"name":"MsiProvideQualifiedComponentExA","features":[523]},{"name":"MsiProvideQualifiedComponentExW","features":[523]},{"name":"MsiProvideQualifiedComponentW","features":[523]},{"name":"MsiQueryComponentStateA","features":[523]},{"name":"MsiQueryComponentStateW","features":[523]},{"name":"MsiQueryFeatureStateA","features":[523]},{"name":"MsiQueryFeatureStateExA","features":[523]},{"name":"MsiQueryFeatureStateExW","features":[523]},{"name":"MsiQueryFeatureStateW","features":[523]},{"name":"MsiQueryProductStateA","features":[523]},{"name":"MsiQueryProductStateW","features":[523]},{"name":"MsiRecordClearData","features":[523]},{"name":"MsiRecordDataSize","features":[523]},{"name":"MsiRecordGetFieldCount","features":[523]},{"name":"MsiRecordGetInteger","features":[523]},{"name":"MsiRecordGetStringA","features":[523]},{"name":"MsiRecordGetStringW","features":[523]},{"name":"MsiRecordIsNull","features":[305,523]},{"name":"MsiRecordReadStream","features":[523]},{"name":"MsiRecordSetInteger","features":[523]},{"name":"MsiRecordSetStreamA","features":[523]},{"name":"MsiRecordSetStreamW","features":[523]},{"name":"MsiRecordSetStringA","features":[523]},{"name":"MsiRecordSetStringW","features":[523]},{"name":"MsiReinstallFeatureA","features":[523]},{"name":"MsiReinstallFeatureW","features":[523]},{"name":"MsiReinstallProductA","features":[523]},{"name":"MsiReinstallProductW","features":[523]},{"name":"MsiRemovePatchesA","features":[523]},{"name":"MsiRemovePatchesW","features":[523]},{"name":"MsiSequenceA","features":[523]},{"name":"MsiSequenceW","features":[523]},{"name":"MsiSetComponentStateA","features":[523]},{"name":"MsiSetComponentStateW","features":[523]},{"name":"MsiSetExternalUIA","features":[523]},{"name":"MsiSetExternalUIRecord","features":[523]},{"name":"MsiSetExternalUIW","features":[523]},{"name":"MsiSetFeatureAttributesA","features":[523]},{"name":"MsiSetFeatureAttributesW","features":[523]},{"name":"MsiSetFeatureStateA","features":[523]},{"name":"MsiSetFeatureStateW","features":[523]},{"name":"MsiSetInstallLevel","features":[523]},{"name":"MsiSetInternalUI","features":[305,523]},{"name":"MsiSetMode","features":[305,523]},{"name":"MsiSetPropertyA","features":[523]},{"name":"MsiSetPropertyW","features":[523]},{"name":"MsiSetTargetPathA","features":[523]},{"name":"MsiSetTargetPathW","features":[523]},{"name":"MsiSourceListAddMediaDiskA","features":[523]},{"name":"MsiSourceListAddMediaDiskW","features":[523]},{"name":"MsiSourceListAddSourceA","features":[523]},{"name":"MsiSourceListAddSourceExA","features":[523]},{"name":"MsiSourceListAddSourceExW","features":[523]},{"name":"MsiSourceListAddSourceW","features":[523]},{"name":"MsiSourceListClearAllA","features":[523]},{"name":"MsiSourceListClearAllExA","features":[523]},{"name":"MsiSourceListClearAllExW","features":[523]},{"name":"MsiSourceListClearAllW","features":[523]},{"name":"MsiSourceListClearMediaDiskA","features":[523]},{"name":"MsiSourceListClearMediaDiskW","features":[523]},{"name":"MsiSourceListClearSourceA","features":[523]},{"name":"MsiSourceListClearSourceW","features":[523]},{"name":"MsiSourceListEnumMediaDisksA","features":[523]},{"name":"MsiSourceListEnumMediaDisksW","features":[523]},{"name":"MsiSourceListEnumSourcesA","features":[523]},{"name":"MsiSourceListEnumSourcesW","features":[523]},{"name":"MsiSourceListForceResolutionA","features":[523]},{"name":"MsiSourceListForceResolutionExA","features":[523]},{"name":"MsiSourceListForceResolutionExW","features":[523]},{"name":"MsiSourceListForceResolutionW","features":[523]},{"name":"MsiSourceListGetInfoA","features":[523]},{"name":"MsiSourceListGetInfoW","features":[523]},{"name":"MsiSourceListSetInfoA","features":[523]},{"name":"MsiSourceListSetInfoW","features":[523]},{"name":"MsiSummaryInfoGetPropertyA","features":[305,523]},{"name":"MsiSummaryInfoGetPropertyCount","features":[523]},{"name":"MsiSummaryInfoGetPropertyW","features":[305,523]},{"name":"MsiSummaryInfoPersist","features":[523]},{"name":"MsiSummaryInfoSetPropertyA","features":[305,523]},{"name":"MsiSummaryInfoSetPropertyW","features":[305,523]},{"name":"MsiUseFeatureA","features":[523]},{"name":"MsiUseFeatureExA","features":[523]},{"name":"MsiUseFeatureExW","features":[523]},{"name":"MsiUseFeatureW","features":[523]},{"name":"MsiVerifyDiskSpace","features":[523]},{"name":"MsiVerifyPackageA","features":[523]},{"name":"MsiVerifyPackageW","features":[523]},{"name":"MsiViewClose","features":[523]},{"name":"MsiViewExecute","features":[523]},{"name":"MsiViewFetch","features":[523]},{"name":"MsiViewGetColumnInfo","features":[523]},{"name":"MsiViewGetErrorA","features":[523]},{"name":"MsiViewGetErrorW","features":[523]},{"name":"MsiViewModify","features":[523]},{"name":"MsmMerge","features":[523]},{"name":"NormalizeFileForPatchSignature","features":[305,523]},{"name":"PACKMAN_RUNTIME","features":[523]},{"name":"PACKMAN_RUNTIME_INVALID","features":[523]},{"name":"PACKMAN_RUNTIME_JUPITER","features":[523]},{"name":"PACKMAN_RUNTIME_MODERN_NATIVE","features":[523]},{"name":"PACKMAN_RUNTIME_NATIVE","features":[523]},{"name":"PACKMAN_RUNTIME_SILVERLIGHTMOBILE","features":[523]},{"name":"PACKMAN_RUNTIME_XNA","features":[523]},{"name":"PATCH_IGNORE_RANGE","features":[523]},{"name":"PATCH_INTERLEAVE_MAP","features":[523]},{"name":"PATCH_OLD_FILE_INFO","features":[305,523]},{"name":"PATCH_OLD_FILE_INFO_A","features":[523]},{"name":"PATCH_OLD_FILE_INFO_H","features":[305,523]},{"name":"PATCH_OLD_FILE_INFO_W","features":[523]},{"name":"PATCH_OPTION_DATA","features":[305,523]},{"name":"PATCH_OPTION_FAIL_IF_BIGGER","features":[523]},{"name":"PATCH_OPTION_FAIL_IF_SAME_FILE","features":[523]},{"name":"PATCH_OPTION_INTERLEAVE_FILES","features":[523]},{"name":"PATCH_OPTION_NO_BINDFIX","features":[523]},{"name":"PATCH_OPTION_NO_CHECKSUM","features":[523]},{"name":"PATCH_OPTION_NO_LOCKFIX","features":[523]},{"name":"PATCH_OPTION_NO_REBASE","features":[523]},{"name":"PATCH_OPTION_NO_RESTIMEFIX","features":[523]},{"name":"PATCH_OPTION_NO_TIMESTAMP","features":[523]},{"name":"PATCH_OPTION_RESERVED1","features":[523]},{"name":"PATCH_OPTION_SIGNATURE_MD5","features":[523]},{"name":"PATCH_OPTION_USE_BEST","features":[523]},{"name":"PATCH_OPTION_USE_LZX_A","features":[523]},{"name":"PATCH_OPTION_USE_LZX_B","features":[523]},{"name":"PATCH_OPTION_USE_LZX_BEST","features":[523]},{"name":"PATCH_OPTION_USE_LZX_LARGE","features":[523]},{"name":"PATCH_OPTION_VALID_FLAGS","features":[523]},{"name":"PATCH_RETAIN_RANGE","features":[523]},{"name":"PATCH_SYMBOL_NO_FAILURES","features":[523]},{"name":"PATCH_SYMBOL_NO_IMAGEHLP","features":[523]},{"name":"PATCH_SYMBOL_RESERVED1","features":[523]},{"name":"PATCH_SYMBOL_UNDECORATED_TOO","features":[523]},{"name":"PATCH_TRANSFORM_PE_IRELOC_2","features":[523]},{"name":"PATCH_TRANSFORM_PE_RESOURCE_2","features":[523]},{"name":"PID_APPNAME","features":[523]},{"name":"PID_AUTHOR","features":[523]},{"name":"PID_CHARCOUNT","features":[523]},{"name":"PID_COMMENTS","features":[523]},{"name":"PID_CREATE_DTM","features":[523]},{"name":"PID_EDITTIME","features":[523]},{"name":"PID_KEYWORDS","features":[523]},{"name":"PID_LASTAUTHOR","features":[523]},{"name":"PID_LASTPRINTED","features":[523]},{"name":"PID_LASTSAVE_DTM","features":[523]},{"name":"PID_MSIRESTRICT","features":[523]},{"name":"PID_MSISOURCE","features":[523]},{"name":"PID_MSIVERSION","features":[523]},{"name":"PID_PAGECOUNT","features":[523]},{"name":"PID_REVNUMBER","features":[523]},{"name":"PID_SUBJECT","features":[523]},{"name":"PID_TEMPLATE","features":[523]},{"name":"PID_THUMBNAIL","features":[523]},{"name":"PID_TITLE","features":[523]},{"name":"PID_WORDCOUNT","features":[523]},{"name":"PINSTALLUI_HANDLER_RECORD","features":[523]},{"name":"PMSIHANDLE","features":[523]},{"name":"PMSvc","features":[523]},{"name":"PM_ACTIVATION_POLICY","features":[523]},{"name":"PM_ACTIVATION_POLICY_INVALID","features":[523]},{"name":"PM_ACTIVATION_POLICY_MULTISESSION","features":[523]},{"name":"PM_ACTIVATION_POLICY_REPLACE","features":[523]},{"name":"PM_ACTIVATION_POLICY_REPLACESAMEPARAMS","features":[523]},{"name":"PM_ACTIVATION_POLICY_REPLACE_IGNOREFOREGROUND","features":[523]},{"name":"PM_ACTIVATION_POLICY_RESUME","features":[523]},{"name":"PM_ACTIVATION_POLICY_RESUMESAMEPARAMS","features":[523]},{"name":"PM_ACTIVATION_POLICY_UNKNOWN","features":[523]},{"name":"PM_APPLICATION_HUBTYPE","features":[523]},{"name":"PM_APPLICATION_HUBTYPE_INVALID","features":[523]},{"name":"PM_APPLICATION_HUBTYPE_MUSIC","features":[523]},{"name":"PM_APPLICATION_HUBTYPE_NONMUSIC","features":[523]},{"name":"PM_APPLICATION_INSTALL_DEBUG","features":[523]},{"name":"PM_APPLICATION_INSTALL_ENTERPRISE","features":[523]},{"name":"PM_APPLICATION_INSTALL_INVALID","features":[523]},{"name":"PM_APPLICATION_INSTALL_IN_ROM","features":[523]},{"name":"PM_APPLICATION_INSTALL_NORMAL","features":[523]},{"name":"PM_APPLICATION_INSTALL_PA","features":[523]},{"name":"PM_APPLICATION_INSTALL_TYPE","features":[523]},{"name":"PM_APPLICATION_STATE","features":[523]},{"name":"PM_APPLICATION_STATE_DISABLED_BACKING_UP","features":[523]},{"name":"PM_APPLICATION_STATE_DISABLED_ENTERPRISE","features":[523]},{"name":"PM_APPLICATION_STATE_DISABLED_MDIL_BINDING","features":[523]},{"name":"PM_APPLICATION_STATE_DISABLED_SD_CARD","features":[523]},{"name":"PM_APPLICATION_STATE_INSTALLED","features":[523]},{"name":"PM_APPLICATION_STATE_INSTALLING","features":[523]},{"name":"PM_APPLICATION_STATE_INVALID","features":[523]},{"name":"PM_APPLICATION_STATE_LICENSE_UPDATING","features":[523]},{"name":"PM_APPLICATION_STATE_MAX","features":[523]},{"name":"PM_APPLICATION_STATE_MIN","features":[523]},{"name":"PM_APPLICATION_STATE_MOVING","features":[523]},{"name":"PM_APPLICATION_STATE_UNINSTALLING","features":[523]},{"name":"PM_APPLICATION_STATE_UPDATING","features":[523]},{"name":"PM_APPTASKTYPE","features":[523]},{"name":"PM_APP_FILTER_ALL","features":[523]},{"name":"PM_APP_FILTER_ALL_INCLUDE_MODERN","features":[523]},{"name":"PM_APP_FILTER_FRAMEWORK","features":[523]},{"name":"PM_APP_FILTER_GENRE","features":[523]},{"name":"PM_APP_FILTER_HUBTYPE","features":[523]},{"name":"PM_APP_FILTER_MAX","features":[523]},{"name":"PM_APP_FILTER_NONGAMES","features":[523]},{"name":"PM_APP_FILTER_PINABLEONKIDZONE","features":[523]},{"name":"PM_APP_FILTER_VISIBLE","features":[523]},{"name":"PM_APP_GENRE","features":[523]},{"name":"PM_APP_GENRE_GAMES","features":[523]},{"name":"PM_APP_GENRE_INVALID","features":[523]},{"name":"PM_APP_GENRE_OTHER","features":[523]},{"name":"PM_BSATASKID","features":[523]},{"name":"PM_BWTASKID","features":[523]},{"name":"PM_ENUM_APP_FILTER","features":[523]},{"name":"PM_ENUM_BSA_FILTER","features":[523]},{"name":"PM_ENUM_BSA_FILTER_ALL","features":[523]},{"name":"PM_ENUM_BSA_FILTER_BY_ALL_LAUNCHONBOOT","features":[523]},{"name":"PM_ENUM_BSA_FILTER_BY_PERIODIC","features":[523]},{"name":"PM_ENUM_BSA_FILTER_BY_PRODUCTID","features":[523]},{"name":"PM_ENUM_BSA_FILTER_BY_TASKID","features":[523]},{"name":"PM_ENUM_BSA_FILTER_MAX","features":[523]},{"name":"PM_ENUM_BW_FILTER","features":[523]},{"name":"PM_ENUM_BW_FILTER_BOOTWORKER_ALL","features":[523]},{"name":"PM_ENUM_BW_FILTER_BY_TASKID","features":[523]},{"name":"PM_ENUM_BW_FILTER_MAX","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_APPCONNECT","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_BY_CONSUMER","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_CACHEDFILEUPDATER_ALL","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_FILEOPENPICKER_ALL","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_FILESAVEPICKER_ALL","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_APPLICATION_ALL","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_CONTENTTYPE_ALL","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_FTASSOC_FILETYPE_ALL","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_MAX","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_PROTOCOL_ALL","features":[523]},{"name":"PM_ENUM_EXTENSION_FILTER_SHARETARGET_ALL","features":[523]},{"name":"PM_ENUM_FILTER","features":[523]},{"name":"PM_ENUM_TASK_FILTER","features":[523]},{"name":"PM_ENUM_TILE_FILTER","features":[523]},{"name":"PM_EXTENSIONCONSUMER","features":[523]},{"name":"PM_INSTALLINFO","features":[305,523]},{"name":"PM_INVOCATIONINFO","features":[523]},{"name":"PM_LIVETILE_RECURRENCE_TYPE","features":[523]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INSTANT","features":[523]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_INTERVAL","features":[523]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_MAX","features":[523]},{"name":"PM_LIVETILE_RECURRENCE_TYPE_ONETIME","features":[523]},{"name":"PM_LOGO_SIZE","features":[523]},{"name":"PM_LOGO_SIZE_INVALID","features":[523]},{"name":"PM_LOGO_SIZE_LARGE","features":[523]},{"name":"PM_LOGO_SIZE_MEDIUM","features":[523]},{"name":"PM_LOGO_SIZE_SMALL","features":[523]},{"name":"PM_STARTAPPBLOB","features":[305,523]},{"name":"PM_STARTTILEBLOB","features":[305,523]},{"name":"PM_STARTTILE_TYPE","features":[523]},{"name":"PM_STARTTILE_TYPE_APPLIST","features":[523]},{"name":"PM_STARTTILE_TYPE_APPLISTPRIMARY","features":[523]},{"name":"PM_STARTTILE_TYPE_INVALID","features":[523]},{"name":"PM_STARTTILE_TYPE_PRIMARY","features":[523]},{"name":"PM_STARTTILE_TYPE_SECONDARY","features":[523]},{"name":"PM_TASK_FILTER_APP_ALL","features":[523]},{"name":"PM_TASK_FILTER_APP_TASK_TYPE","features":[523]},{"name":"PM_TASK_FILTER_BGEXECUTION","features":[523]},{"name":"PM_TASK_FILTER_DEHYD_SUPRESSING","features":[523]},{"name":"PM_TASK_FILTER_MAX","features":[523]},{"name":"PM_TASK_FILTER_TASK_TYPE","features":[523]},{"name":"PM_TASK_TRANSITION","features":[523]},{"name":"PM_TASK_TRANSITION_CUSTOM","features":[523]},{"name":"PM_TASK_TRANSITION_DEFAULT","features":[523]},{"name":"PM_TASK_TRANSITION_INVALID","features":[523]},{"name":"PM_TASK_TRANSITION_NONE","features":[523]},{"name":"PM_TASK_TRANSITION_READERBOARD","features":[523]},{"name":"PM_TASK_TRANSITION_SLIDE","features":[523]},{"name":"PM_TASK_TRANSITION_SWIVEL","features":[523]},{"name":"PM_TASK_TRANSITION_TURNSTILE","features":[523]},{"name":"PM_TASK_TYPE","features":[523]},{"name":"PM_TASK_TYPE_BACKGROUNDSERVICEAGENT","features":[523]},{"name":"PM_TASK_TYPE_BACKGROUNDWORKER","features":[523]},{"name":"PM_TASK_TYPE_DEFAULT","features":[523]},{"name":"PM_TASK_TYPE_INVALID","features":[523]},{"name":"PM_TASK_TYPE_NORMAL","features":[523]},{"name":"PM_TASK_TYPE_SETTINGS","features":[523]},{"name":"PM_TILE_FILTER_APPLIST","features":[523]},{"name":"PM_TILE_FILTER_APP_ALL","features":[523]},{"name":"PM_TILE_FILTER_HUBTYPE","features":[523]},{"name":"PM_TILE_FILTER_MAX","features":[523]},{"name":"PM_TILE_FILTER_PINNED","features":[523]},{"name":"PM_TILE_HUBTYPE","features":[523]},{"name":"PM_TILE_HUBTYPE_APPLIST","features":[523]},{"name":"PM_TILE_HUBTYPE_CACHED","features":[523]},{"name":"PM_TILE_HUBTYPE_GAMES","features":[523]},{"name":"PM_TILE_HUBTYPE_INVALID","features":[523]},{"name":"PM_TILE_HUBTYPE_KIDZONE","features":[523]},{"name":"PM_TILE_HUBTYPE_LOCKSCREEN","features":[523]},{"name":"PM_TILE_HUBTYPE_MOSETTINGS","features":[523]},{"name":"PM_TILE_HUBTYPE_MUSIC","features":[523]},{"name":"PM_TILE_HUBTYPE_STARTMENU","features":[523]},{"name":"PM_TILE_SIZE","features":[523]},{"name":"PM_TILE_SIZE_INVALID","features":[523]},{"name":"PM_TILE_SIZE_LARGE","features":[523]},{"name":"PM_TILE_SIZE_MEDIUM","features":[523]},{"name":"PM_TILE_SIZE_SMALL","features":[523]},{"name":"PM_TILE_SIZE_SQUARE310X310","features":[523]},{"name":"PM_TILE_SIZE_TALL150X310","features":[523]},{"name":"PM_UPDATEINFO","features":[523]},{"name":"PM_UPDATEINFO_LEGACY","features":[523]},{"name":"PPATCH_PROGRESS_CALLBACK","features":[305,523]},{"name":"PPATCH_SYMLOAD_CALLBACK","features":[305,523]},{"name":"PROTECTED_FILE_DATA","features":[523]},{"name":"QUERYASMINFO_FLAGS","features":[523]},{"name":"QUERYASMINFO_FLAG_VALIDATE","features":[523]},{"name":"QueryActCtxSettingsW","features":[305,523]},{"name":"QueryActCtxW","features":[305,523]},{"name":"REINSTALLMODE","features":[523]},{"name":"REINSTALLMODE_FILEEQUALVERSION","features":[523]},{"name":"REINSTALLMODE_FILEEXACT","features":[523]},{"name":"REINSTALLMODE_FILEMISSING","features":[523]},{"name":"REINSTALLMODE_FILEOLDERVERSION","features":[523]},{"name":"REINSTALLMODE_FILEREPLACE","features":[523]},{"name":"REINSTALLMODE_FILEVERIFY","features":[523]},{"name":"REINSTALLMODE_MACHINEDATA","features":[523]},{"name":"REINSTALLMODE_PACKAGE","features":[523]},{"name":"REINSTALLMODE_REPAIR","features":[523]},{"name":"REINSTALLMODE_SHORTCUT","features":[523]},{"name":"REINSTALLMODE_USERDATA","features":[523]},{"name":"RESULTTYPES","features":[523]},{"name":"ReleaseActCtx","features":[305,523]},{"name":"SCRIPTFLAGS","features":[523]},{"name":"SCRIPTFLAGS_CACHEINFO","features":[523]},{"name":"SCRIPTFLAGS_MACHINEASSIGN","features":[523]},{"name":"SCRIPTFLAGS_REGDATA","features":[523]},{"name":"SCRIPTFLAGS_REGDATA_APPINFO","features":[523]},{"name":"SCRIPTFLAGS_REGDATA_CLASSINFO","features":[523]},{"name":"SCRIPTFLAGS_REGDATA_CNFGINFO","features":[523]},{"name":"SCRIPTFLAGS_REGDATA_EXTENSIONINFO","features":[523]},{"name":"SCRIPTFLAGS_SHORTCUTS","features":[523]},{"name":"SCRIPTFLAGS_VALIDATE_TRANSFORMS_LIST","features":[523]},{"name":"SFC_DISABLE_ASK","features":[523]},{"name":"SFC_DISABLE_NOPOPUPS","features":[523]},{"name":"SFC_DISABLE_NORMAL","features":[523]},{"name":"SFC_DISABLE_ONCE","features":[523]},{"name":"SFC_DISABLE_SETUP","features":[523]},{"name":"SFC_IDLE_TRIGGER","features":[523]},{"name":"SFC_QUOTA_DEFAULT","features":[523]},{"name":"SFC_SCAN_ALWAYS","features":[523]},{"name":"SFC_SCAN_IMMEDIATE","features":[523]},{"name":"SFC_SCAN_NORMAL","features":[523]},{"name":"SFC_SCAN_ONCE","features":[523]},{"name":"STATUSTYPES","features":[523]},{"name":"STREAM_FORMAT_COMPLIB_MANIFEST","features":[523]},{"name":"STREAM_FORMAT_COMPLIB_MODULE","features":[523]},{"name":"STREAM_FORMAT_WIN32_MANIFEST","features":[523]},{"name":"STREAM_FORMAT_WIN32_MODULE","features":[523]},{"name":"SfcGetNextProtectedFile","features":[305,523]},{"name":"SfcIsFileProtected","features":[305,523]},{"name":"SfcIsKeyProtected","features":[305,523,366]},{"name":"SfpVerifyFile","features":[305,523]},{"name":"TILE_TEMPLATE_AGILESTORE","features":[523]},{"name":"TILE_TEMPLATE_ALL","features":[523]},{"name":"TILE_TEMPLATE_BADGE","features":[523]},{"name":"TILE_TEMPLATE_BLOCK","features":[523]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT01","features":[523]},{"name":"TILE_TEMPLATE_BLOCKANDTEXT02","features":[523]},{"name":"TILE_TEMPLATE_CALENDAR","features":[523]},{"name":"TILE_TEMPLATE_CONTACT","features":[523]},{"name":"TILE_TEMPLATE_CYCLE","features":[523]},{"name":"TILE_TEMPLATE_DEEPLINK","features":[523]},{"name":"TILE_TEMPLATE_DEFAULT","features":[523]},{"name":"TILE_TEMPLATE_FLIP","features":[523]},{"name":"TILE_TEMPLATE_FOLDER","features":[523]},{"name":"TILE_TEMPLATE_GAMES","features":[523]},{"name":"TILE_TEMPLATE_GROUP","features":[523]},{"name":"TILE_TEMPLATE_IMAGE","features":[523]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT01","features":[523]},{"name":"TILE_TEMPLATE_IMAGEANDTEXT02","features":[523]},{"name":"TILE_TEMPLATE_IMAGECOLLECTION","features":[523]},{"name":"TILE_TEMPLATE_INVALID","features":[523]},{"name":"TILE_TEMPLATE_METROCOUNT","features":[523]},{"name":"TILE_TEMPLATE_METROCOUNTQUEUE","features":[523]},{"name":"TILE_TEMPLATE_MUSICVIDEO","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGE01","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGE02","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGE03","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGE04","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGE05","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGE06","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT01","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT02","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT03","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGEANDTEXT04","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION01","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION02","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION03","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION04","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION05","features":[523]},{"name":"TILE_TEMPLATE_PEEKIMAGECOLLECTION06","features":[523]},{"name":"TILE_TEMPLATE_PEOPLE","features":[523]},{"name":"TILE_TEMPLATE_SEARCH","features":[523]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT01","features":[523]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT02","features":[523]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT03","features":[523]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT04","features":[523]},{"name":"TILE_TEMPLATE_SMALLIMAGEANDTEXT05","features":[523]},{"name":"TILE_TEMPLATE_TEXT01","features":[523]},{"name":"TILE_TEMPLATE_TEXT02","features":[523]},{"name":"TILE_TEMPLATE_TEXT03","features":[523]},{"name":"TILE_TEMPLATE_TEXT04","features":[523]},{"name":"TILE_TEMPLATE_TEXT05","features":[523]},{"name":"TILE_TEMPLATE_TEXT06","features":[523]},{"name":"TILE_TEMPLATE_TEXT07","features":[523]},{"name":"TILE_TEMPLATE_TEXT08","features":[523]},{"name":"TILE_TEMPLATE_TEXT09","features":[523]},{"name":"TILE_TEMPLATE_TEXT10","features":[523]},{"name":"TILE_TEMPLATE_TEXT11","features":[523]},{"name":"TILE_TEMPLATE_TILEFLYOUT01","features":[523]},{"name":"TILE_TEMPLATE_TYPE","features":[523]},{"name":"TXTLOG_BACKUP","features":[523]},{"name":"TXTLOG_CMI","features":[523]},{"name":"TXTLOG_COPYFILES","features":[523]},{"name":"TXTLOG_DEPTH_DECR","features":[523]},{"name":"TXTLOG_DEPTH_INCR","features":[523]},{"name":"TXTLOG_DETAILS","features":[523]},{"name":"TXTLOG_DEVINST","features":[523]},{"name":"TXTLOG_DEVMGR","features":[523]},{"name":"TXTLOG_DRIVER_STORE","features":[523]},{"name":"TXTLOG_DRVSETUP","features":[523]},{"name":"TXTLOG_ERROR","features":[523]},{"name":"TXTLOG_FILEQ","features":[523]},{"name":"TXTLOG_FLUSH_FILE","features":[523]},{"name":"TXTLOG_INF","features":[523]},{"name":"TXTLOG_INFDB","features":[523]},{"name":"TXTLOG_INSTALLER","features":[523]},{"name":"TXTLOG_NEWDEV","features":[523]},{"name":"TXTLOG_POLICY","features":[523]},{"name":"TXTLOG_RESERVED_FLAGS","features":[523]},{"name":"TXTLOG_SETUP","features":[523]},{"name":"TXTLOG_SETUPAPI_BITS","features":[523]},{"name":"TXTLOG_SETUPAPI_CMDLINE","features":[523]},{"name":"TXTLOG_SETUPAPI_DEVLOG","features":[523]},{"name":"TXTLOG_SIGVERIF","features":[523]},{"name":"TXTLOG_SUMMARY","features":[523]},{"name":"TXTLOG_SYSTEM_STATE_CHANGE","features":[523]},{"name":"TXTLOG_TAB_1","features":[523]},{"name":"TXTLOG_TIMESTAMP","features":[523]},{"name":"TXTLOG_UI","features":[523]},{"name":"TXTLOG_UMPNPMGR","features":[523]},{"name":"TXTLOG_UTIL","features":[523]},{"name":"TXTLOG_VENDOR","features":[523]},{"name":"TXTLOG_VERBOSE","features":[523]},{"name":"TXTLOG_VERY_VERBOSE","features":[523]},{"name":"TXTLOG_WARNING","features":[523]},{"name":"TestApplyPatchToFileA","features":[305,523]},{"name":"TestApplyPatchToFileByBuffers","features":[305,523]},{"name":"TestApplyPatchToFileByHandles","features":[305,523]},{"name":"TestApplyPatchToFileW","features":[305,523]},{"name":"UIALL","features":[523]},{"name":"UILOGBITS","features":[523]},{"name":"UINONE","features":[523]},{"name":"USERINFOSTATE","features":[523]},{"name":"USERINFOSTATE_ABSENT","features":[523]},{"name":"USERINFOSTATE_INVALIDARG","features":[523]},{"name":"USERINFOSTATE_MOREDATA","features":[523]},{"name":"USERINFOSTATE_PRESENT","features":[523]},{"name":"USERINFOSTATE_UNKNOWN","features":[523]},{"name":"WARN_BAD_MAJOR_VERSION","features":[523]},{"name":"WARN_BASE","features":[523]},{"name":"WARN_EQUAL_FILE_VERSION","features":[523]},{"name":"WARN_FILE_VERSION_DOWNREV","features":[523]},{"name":"WARN_IMPROPER_TRANSFORM_VALIDATION","features":[523]},{"name":"WARN_INVALID_TRANSFORM_VALIDATION","features":[523]},{"name":"WARN_MAJOR_UPGRADE_PATCH","features":[523]},{"name":"WARN_OBSOLETION_WITH_MSI30","features":[523]},{"name":"WARN_OBSOLETION_WITH_PATCHSEQUENCE","features":[523]},{"name":"WARN_OBSOLETION_WITH_SEQUENCE_DATA","features":[523]},{"name":"WARN_PATCHPROPERTYNOTSET","features":[523]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_CODES","features":[523]},{"name":"WARN_PCW_MISMATCHED_PRODUCT_VERSIONS","features":[523]},{"name":"WARN_SEQUENCE_DATA_GENERATION_DISABLED","features":[523]},{"name":"WARN_SEQUENCE_DATA_SUPERSEDENCE_IGNORED","features":[523]},{"name":"ZombifyActCtx","features":[305,523]},{"name":"_WIN32_MSI","features":[523]},{"name":"_WIN32_MSM","features":[523]},{"name":"cchMaxInteger","features":[523]},{"name":"ieError","features":[523]},{"name":"ieInfo","features":[523]},{"name":"ieStatusCancel","features":[523]},{"name":"ieStatusCreateEngine","features":[523]},{"name":"ieStatusFail","features":[523]},{"name":"ieStatusGetCUB","features":[523]},{"name":"ieStatusICECount","features":[523]},{"name":"ieStatusMerge","features":[523]},{"name":"ieStatusRunICE","features":[523]},{"name":"ieStatusShutdown","features":[523]},{"name":"ieStatusStarting","features":[523]},{"name":"ieStatusSuccess","features":[523]},{"name":"ieStatusSummaryInfo","features":[523]},{"name":"ieUnknown","features":[523]},{"name":"ieWarning","features":[523]},{"name":"msidbAssemblyAttributes","features":[523]},{"name":"msidbAssemblyAttributesURT","features":[523]},{"name":"msidbAssemblyAttributesWin32","features":[523]},{"name":"msidbClassAttributes","features":[523]},{"name":"msidbClassAttributesRelativePath","features":[523]},{"name":"msidbComponentAttributes","features":[523]},{"name":"msidbComponentAttributes64bit","features":[523]},{"name":"msidbComponentAttributesDisableRegistryReflection","features":[523]},{"name":"msidbComponentAttributesLocalOnly","features":[523]},{"name":"msidbComponentAttributesNeverOverwrite","features":[523]},{"name":"msidbComponentAttributesODBCDataSource","features":[523]},{"name":"msidbComponentAttributesOptional","features":[523]},{"name":"msidbComponentAttributesPermanent","features":[523]},{"name":"msidbComponentAttributesRegistryKeyPath","features":[523]},{"name":"msidbComponentAttributesShared","features":[523]},{"name":"msidbComponentAttributesSharedDllRefCount","features":[523]},{"name":"msidbComponentAttributesSourceOnly","features":[523]},{"name":"msidbComponentAttributesTransitive","features":[523]},{"name":"msidbComponentAttributesUninstallOnSupersedence","features":[523]},{"name":"msidbControlAttributes","features":[523]},{"name":"msidbControlAttributesBiDi","features":[523]},{"name":"msidbControlAttributesBitmap","features":[523]},{"name":"msidbControlAttributesCDROMVolume","features":[523]},{"name":"msidbControlAttributesComboList","features":[523]},{"name":"msidbControlAttributesElevationShield","features":[523]},{"name":"msidbControlAttributesEnabled","features":[523]},{"name":"msidbControlAttributesFixedSize","features":[523]},{"name":"msidbControlAttributesFixedVolume","features":[523]},{"name":"msidbControlAttributesFloppyVolume","features":[523]},{"name":"msidbControlAttributesFormatSize","features":[523]},{"name":"msidbControlAttributesHasBorder","features":[523]},{"name":"msidbControlAttributesIcon","features":[523]},{"name":"msidbControlAttributesIconSize16","features":[523]},{"name":"msidbControlAttributesIconSize32","features":[523]},{"name":"msidbControlAttributesIconSize48","features":[523]},{"name":"msidbControlAttributesImageHandle","features":[523]},{"name":"msidbControlAttributesIndirect","features":[523]},{"name":"msidbControlAttributesInteger","features":[523]},{"name":"msidbControlAttributesLeftScroll","features":[523]},{"name":"msidbControlAttributesMultiline","features":[523]},{"name":"msidbControlAttributesNoPrefix","features":[523]},{"name":"msidbControlAttributesNoWrap","features":[523]},{"name":"msidbControlAttributesPasswordInput","features":[523]},{"name":"msidbControlAttributesProgress95","features":[523]},{"name":"msidbControlAttributesPushLike","features":[523]},{"name":"msidbControlAttributesRAMDiskVolume","features":[523]},{"name":"msidbControlAttributesRTLRO","features":[523]},{"name":"msidbControlAttributesRemoteVolume","features":[523]},{"name":"msidbControlAttributesRemovableVolume","features":[523]},{"name":"msidbControlAttributesRightAligned","features":[523]},{"name":"msidbControlAttributesSorted","features":[523]},{"name":"msidbControlAttributesSunken","features":[523]},{"name":"msidbControlAttributesTransparent","features":[523]},{"name":"msidbControlAttributesUsersLanguage","features":[523]},{"name":"msidbControlAttributesVisible","features":[523]},{"name":"msidbControlShowRollbackCost","features":[523]},{"name":"msidbCustomActionType","features":[523]},{"name":"msidbCustomActionType64BitScript","features":[523]},{"name":"msidbCustomActionTypeAsync","features":[523]},{"name":"msidbCustomActionTypeBinaryData","features":[523]},{"name":"msidbCustomActionTypeClientRepeat","features":[523]},{"name":"msidbCustomActionTypeCommit","features":[523]},{"name":"msidbCustomActionTypeContinue","features":[523]},{"name":"msidbCustomActionTypeDirectory","features":[523]},{"name":"msidbCustomActionTypeDll","features":[523]},{"name":"msidbCustomActionTypeExe","features":[523]},{"name":"msidbCustomActionTypeFirstSequence","features":[523]},{"name":"msidbCustomActionTypeHideTarget","features":[523]},{"name":"msidbCustomActionTypeInScript","features":[523]},{"name":"msidbCustomActionTypeInstall","features":[523]},{"name":"msidbCustomActionTypeJScript","features":[523]},{"name":"msidbCustomActionTypeNoImpersonate","features":[523]},{"name":"msidbCustomActionTypeOncePerProcess","features":[523]},{"name":"msidbCustomActionTypePatchUninstall","features":[523]},{"name":"msidbCustomActionTypeProperty","features":[523]},{"name":"msidbCustomActionTypeRollback","features":[523]},{"name":"msidbCustomActionTypeSourceFile","features":[523]},{"name":"msidbCustomActionTypeTSAware","features":[523]},{"name":"msidbCustomActionTypeTextData","features":[523]},{"name":"msidbCustomActionTypeVBScript","features":[523]},{"name":"msidbDialogAttributes","features":[523]},{"name":"msidbDialogAttributesBiDi","features":[523]},{"name":"msidbDialogAttributesError","features":[523]},{"name":"msidbDialogAttributesKeepModeless","features":[523]},{"name":"msidbDialogAttributesLeftScroll","features":[523]},{"name":"msidbDialogAttributesMinimize","features":[523]},{"name":"msidbDialogAttributesModal","features":[523]},{"name":"msidbDialogAttributesRTLRO","features":[523]},{"name":"msidbDialogAttributesRightAligned","features":[523]},{"name":"msidbDialogAttributesSysModal","features":[523]},{"name":"msidbDialogAttributesTrackDiskSpace","features":[523]},{"name":"msidbDialogAttributesUseCustomPalette","features":[523]},{"name":"msidbDialogAttributesVisible","features":[523]},{"name":"msidbEmbeddedHandlesBasic","features":[523]},{"name":"msidbEmbeddedUI","features":[523]},{"name":"msidbEmbeddedUIAttributes","features":[523]},{"name":"msidbFeatureAttributes","features":[523]},{"name":"msidbFeatureAttributesDisallowAdvertise","features":[523]},{"name":"msidbFeatureAttributesFavorAdvertise","features":[523]},{"name":"msidbFeatureAttributesFavorLocal","features":[523]},{"name":"msidbFeatureAttributesFavorSource","features":[523]},{"name":"msidbFeatureAttributesFollowParent","features":[523]},{"name":"msidbFeatureAttributesNoUnsupportedAdvertise","features":[523]},{"name":"msidbFeatureAttributesUIDisallowAbsent","features":[523]},{"name":"msidbFileAttributes","features":[523]},{"name":"msidbFileAttributesChecksum","features":[523]},{"name":"msidbFileAttributesCompressed","features":[523]},{"name":"msidbFileAttributesHidden","features":[523]},{"name":"msidbFileAttributesIsolatedComp","features":[523]},{"name":"msidbFileAttributesNoncompressed","features":[523]},{"name":"msidbFileAttributesPatchAdded","features":[523]},{"name":"msidbFileAttributesReadOnly","features":[523]},{"name":"msidbFileAttributesReserved0","features":[523]},{"name":"msidbFileAttributesReserved1","features":[523]},{"name":"msidbFileAttributesReserved2","features":[523]},{"name":"msidbFileAttributesReserved3","features":[523]},{"name":"msidbFileAttributesReserved4","features":[523]},{"name":"msidbFileAttributesSystem","features":[523]},{"name":"msidbFileAttributesVital","features":[523]},{"name":"msidbIniFileAction","features":[523]},{"name":"msidbIniFileActionAddLine","features":[523]},{"name":"msidbIniFileActionAddTag","features":[523]},{"name":"msidbIniFileActionCreateLine","features":[523]},{"name":"msidbIniFileActionRemoveLine","features":[523]},{"name":"msidbIniFileActionRemoveTag","features":[523]},{"name":"msidbLocatorType","features":[523]},{"name":"msidbLocatorType64bit","features":[523]},{"name":"msidbLocatorTypeDirectory","features":[523]},{"name":"msidbLocatorTypeFileName","features":[523]},{"name":"msidbLocatorTypeRawValue","features":[523]},{"name":"msidbMoveFileOptions","features":[523]},{"name":"msidbMoveFileOptionsMove","features":[523]},{"name":"msidbODBCDataSourceRegistration","features":[523]},{"name":"msidbODBCDataSourceRegistrationPerMachine","features":[523]},{"name":"msidbODBCDataSourceRegistrationPerUser","features":[523]},{"name":"msidbPatchAttributes","features":[523]},{"name":"msidbPatchAttributesNonVital","features":[523]},{"name":"msidbRegistryRoot","features":[523]},{"name":"msidbRegistryRootClassesRoot","features":[523]},{"name":"msidbRegistryRootCurrentUser","features":[523]},{"name":"msidbRegistryRootLocalMachine","features":[523]},{"name":"msidbRegistryRootUsers","features":[523]},{"name":"msidbRemoveFileInstallMode","features":[523]},{"name":"msidbRemoveFileInstallModeOnBoth","features":[523]},{"name":"msidbRemoveFileInstallModeOnInstall","features":[523]},{"name":"msidbRemoveFileInstallModeOnRemove","features":[523]},{"name":"msidbServiceConfigEvent","features":[523]},{"name":"msidbServiceConfigEventInstall","features":[523]},{"name":"msidbServiceConfigEventReinstall","features":[523]},{"name":"msidbServiceConfigEventUninstall","features":[523]},{"name":"msidbServiceControlEvent","features":[523]},{"name":"msidbServiceControlEventDelete","features":[523]},{"name":"msidbServiceControlEventStart","features":[523]},{"name":"msidbServiceControlEventStop","features":[523]},{"name":"msidbServiceControlEventUninstallDelete","features":[523]},{"name":"msidbServiceControlEventUninstallStart","features":[523]},{"name":"msidbServiceControlEventUninstallStop","features":[523]},{"name":"msidbServiceInstallErrorControl","features":[523]},{"name":"msidbServiceInstallErrorControlVital","features":[523]},{"name":"msidbSumInfoSourceType","features":[523]},{"name":"msidbSumInfoSourceTypeAdminImage","features":[523]},{"name":"msidbSumInfoSourceTypeCompressed","features":[523]},{"name":"msidbSumInfoSourceTypeLUAPackage","features":[523]},{"name":"msidbSumInfoSourceTypeSFN","features":[523]},{"name":"msidbTextStyleStyleBits","features":[523]},{"name":"msidbTextStyleStyleBitsBold","features":[523]},{"name":"msidbTextStyleStyleBitsItalic","features":[523]},{"name":"msidbTextStyleStyleBitsStrike","features":[523]},{"name":"msidbTextStyleStyleBitsUnderline","features":[523]},{"name":"msidbUpgradeAttributes","features":[523]},{"name":"msidbUpgradeAttributesIgnoreRemoveFailure","features":[523]},{"name":"msidbUpgradeAttributesLanguagesExclusive","features":[523]},{"name":"msidbUpgradeAttributesMigrateFeatures","features":[523]},{"name":"msidbUpgradeAttributesOnlyDetect","features":[523]},{"name":"msidbUpgradeAttributesVersionMaxInclusive","features":[523]},{"name":"msidbUpgradeAttributesVersionMinInclusive","features":[523]},{"name":"msifiFastInstallBits","features":[523]},{"name":"msifiFastInstallLessPrgMsg","features":[523]},{"name":"msifiFastInstallNoSR","features":[523]},{"name":"msifiFastInstallQuickCosting","features":[523]},{"name":"msirbRebootCustomActionReason","features":[523]},{"name":"msirbRebootDeferred","features":[523]},{"name":"msirbRebootForceRebootReason","features":[523]},{"name":"msirbRebootImmediate","features":[523]},{"name":"msirbRebootInUseFilesReason","features":[523]},{"name":"msirbRebootReason","features":[523]},{"name":"msirbRebootScheduleRebootReason","features":[523]},{"name":"msirbRebootType","features":[523]},{"name":"msirbRebootUndeterminedReason","features":[523]},{"name":"msmErrorDirCreate","features":[523]},{"name":"msmErrorExclusion","features":[523]},{"name":"msmErrorFeatureRequired","features":[523]},{"name":"msmErrorFileCreate","features":[523]},{"name":"msmErrorLanguageFailed","features":[523]},{"name":"msmErrorLanguageUnsupported","features":[523]},{"name":"msmErrorResequenceMerge","features":[523]},{"name":"msmErrorTableMerge","features":[523]},{"name":"msmErrorType","features":[523]}],"533":[{"name":"AVRF_BACKTRACE_INFORMATION","features":[524]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_DONT_RESOLVE_TRACES","features":[524]},{"name":"AVRF_ENUM_RESOURCES_FLAGS_SUSPEND","features":[524]},{"name":"AVRF_HANDLEOPERATION_ENUMERATE_CALLBACK","features":[524]},{"name":"AVRF_HANDLE_OPERATION","features":[524]},{"name":"AVRF_HEAPALLOCATION_ENUMERATE_CALLBACK","features":[524]},{"name":"AVRF_HEAP_ALLOCATION","features":[524]},{"name":"AVRF_MAX_TRACES","features":[524]},{"name":"AVRF_RESOURCE_ENUMERATE_CALLBACK","features":[524]},{"name":"AllocationStateBusy","features":[524]},{"name":"AllocationStateFree","features":[524]},{"name":"AllocationStateUnknown","features":[524]},{"name":"AvrfResourceHandleTrace","features":[524]},{"name":"AvrfResourceHeapAllocation","features":[524]},{"name":"AvrfResourceMax","features":[524]},{"name":"HeapEnumerationEverything","features":[524]},{"name":"HeapEnumerationStop","features":[524]},{"name":"HeapFullPageHeap","features":[524]},{"name":"HeapMetadata","features":[524]},{"name":"HeapStateMask","features":[524]},{"name":"OperationDbBADREF","features":[524]},{"name":"OperationDbCLOSE","features":[524]},{"name":"OperationDbOPEN","features":[524]},{"name":"OperationDbUnused","features":[524]},{"name":"VERIFIER_ENUM_RESOURCE_FLAGS","features":[524]},{"name":"VerifierEnumerateResource","features":[305,524]},{"name":"eAvrfResourceTypes","features":[524]},{"name":"eHANDLE_TRACE_OPERATIONS","features":[524]},{"name":"eHeapAllocationState","features":[524]},{"name":"eHeapEnumerationLevel","features":[524]},{"name":"eUserAllocationState","features":[524]}],"534":[{"name":"CAccessiblityWinSAT","features":[525]},{"name":"CInitiateWinSAT","features":[525]},{"name":"CProvideWinSATVisuals","features":[525]},{"name":"CQueryAllWinSAT","features":[525]},{"name":"CQueryOEMWinSATCustomization","features":[525]},{"name":"CQueryWinSAT","features":[525]},{"name":"IAccessibleWinSAT","features":[525,356,526]},{"name":"IInitiateWinSATAssessment","features":[525]},{"name":"IProvideWinSATAssessmentInfo","features":[525,356]},{"name":"IProvideWinSATResultsInfo","features":[525,356]},{"name":"IProvideWinSATVisuals","features":[525]},{"name":"IQueryAllWinSATAssessments","features":[525,356]},{"name":"IQueryOEMWinSATCustomization","features":[525]},{"name":"IQueryRecentWinSATAssessment","features":[525,356]},{"name":"IWinSATInitiateEvents","features":[525]},{"name":"WINSAT_ASSESSMENT_CPU","features":[525]},{"name":"WINSAT_ASSESSMENT_D3D","features":[525]},{"name":"WINSAT_ASSESSMENT_DISK","features":[525]},{"name":"WINSAT_ASSESSMENT_GRAPHICS","features":[525]},{"name":"WINSAT_ASSESSMENT_MEMORY","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE_INCOHERENT_WITH_HARDWARE","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE_INVALID","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE_MAX","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE_MIN","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE_NOT_AVAILABLE","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE_UNKNOWN","features":[525]},{"name":"WINSAT_ASSESSMENT_STATE_VALID","features":[525]},{"name":"WINSAT_ASSESSMENT_TYPE","features":[525]},{"name":"WINSAT_BITMAP_SIZE","features":[525]},{"name":"WINSAT_BITMAP_SIZE_NORMAL","features":[525]},{"name":"WINSAT_BITMAP_SIZE_SMALL","features":[525]},{"name":"WINSAT_OEM_CUSTOMIZATION_STATE","features":[525]},{"name":"WINSAT_OEM_DATA_INVALID","features":[525]},{"name":"WINSAT_OEM_DATA_NON_SYS_CONFIG_MATCH","features":[525]},{"name":"WINSAT_OEM_DATA_VALID","features":[525]},{"name":"WINSAT_OEM_NO_DATA_SUPPLIED","features":[525]}],"535":[{"name":"APPDOMAIN_FORCE_TRIVIAL_WAIT_OPERATIONS","features":[527]},{"name":"APPDOMAIN_SECURITY_DEFAULT","features":[527]},{"name":"APPDOMAIN_SECURITY_FLAGS","features":[527]},{"name":"APPDOMAIN_SECURITY_FORBID_CROSSAD_REVERSE_PINVOKE","features":[527]},{"name":"APPDOMAIN_SECURITY_SANDBOXED","features":[527]},{"name":"AssemblyBindInfo","features":[527]},{"name":"BucketParamLength","features":[527]},{"name":"BucketParameterIndex","features":[527]},{"name":"BucketParameters","features":[305,527]},{"name":"BucketParamsCount","features":[527]},{"name":"CLRCreateInstance","features":[527]},{"name":"CLRCreateInstanceFnPtr","features":[527]},{"name":"CLRRuntimeHost","features":[527]},{"name":"CLR_ASSEMBLY_BUILD_VERSION","features":[527]},{"name":"CLR_ASSEMBLY_IDENTITY_FLAGS_DEFAULT","features":[527]},{"name":"CLR_ASSEMBLY_MAJOR_VERSION","features":[527]},{"name":"CLR_ASSEMBLY_MINOR_VERSION","features":[527]},{"name":"CLR_BUILD_VERSION","features":[527]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_DEBUGGER_LAUNCH","features":[527]},{"name":"CLR_DEBUGGING_MANAGED_EVENT_PENDING","features":[527]},{"name":"CLR_DEBUGGING_PROCESS_FLAGS","features":[527]},{"name":"CLR_DEBUGGING_VERSION","features":[527]},{"name":"CLR_MAJOR_VERSION","features":[527]},{"name":"CLR_MINOR_VERSION","features":[527]},{"name":"CLSID_CLRDebugging","features":[527]},{"name":"CLSID_CLRDebuggingLegacy","features":[527]},{"name":"CLSID_CLRMetaHost","features":[527]},{"name":"CLSID_CLRMetaHostPolicy","features":[527]},{"name":"CLSID_CLRProfiling","features":[527]},{"name":"CLSID_CLRStrongName","features":[527]},{"name":"CLSID_RESOLUTION_DEFAULT","features":[527]},{"name":"CLSID_RESOLUTION_FLAGS","features":[527]},{"name":"CLSID_RESOLUTION_REGISTERED","features":[527]},{"name":"COR_GC_COUNTS","features":[527]},{"name":"COR_GC_MEMORYUSAGE","features":[527]},{"name":"COR_GC_STATS","features":[527]},{"name":"COR_GC_STAT_TYPES","features":[527]},{"name":"COR_GC_THREAD_HAS_PROMOTED_BYTES","features":[527]},{"name":"COR_GC_THREAD_STATS","features":[527]},{"name":"COR_GC_THREAD_STATS_TYPES","features":[527]},{"name":"CallFunctionShim","features":[527]},{"name":"CallbackThreadSetFnPtr","features":[527]},{"name":"CallbackThreadUnsetFnPtr","features":[527]},{"name":"ClrCreateManagedInstance","features":[527]},{"name":"ComCallUnmarshal","features":[527]},{"name":"ComCallUnmarshalV4","features":[527]},{"name":"CorBindToCurrentRuntime","features":[527]},{"name":"CorBindToRuntime","features":[527]},{"name":"CorBindToRuntimeByCfg","features":[527,356]},{"name":"CorBindToRuntimeEx","features":[527]},{"name":"CorBindToRuntimeHost","features":[527]},{"name":"CorExitProcess","features":[527]},{"name":"CorLaunchApplication","features":[305,527,340]},{"name":"CorMarkThreadInThreadPool","features":[527]},{"name":"CorRuntimeHost","features":[527]},{"name":"CreateDebuggingInterfaceFromVersion","features":[527]},{"name":"CreateInterfaceFnPtr","features":[527]},{"name":"CustomDumpItem","features":[527]},{"name":"DEPRECATED_CLR_API_MESG","features":[527]},{"name":"DUMP_FLAVOR_CriticalCLRState","features":[527]},{"name":"DUMP_FLAVOR_Default","features":[527]},{"name":"DUMP_FLAVOR_Mini","features":[527]},{"name":"DUMP_FLAVOR_NonHeapCLRState","features":[527]},{"name":"DUMP_ITEM_None","features":[527]},{"name":"EApiCategories","features":[527]},{"name":"EBindPolicyLevels","features":[527]},{"name":"ECLRAssemblyIdentityFlags","features":[527]},{"name":"EClrEvent","features":[527]},{"name":"EClrFailure","features":[527]},{"name":"EClrOperation","features":[527]},{"name":"EClrUnhandledException","features":[527]},{"name":"EContextType","features":[527]},{"name":"ECustomDumpFlavor","features":[527]},{"name":"ECustomDumpItemKind","features":[527]},{"name":"EHostApplicationPolicy","features":[527]},{"name":"EHostBindingPolicyModifyFlags","features":[527]},{"name":"EInitializeNewDomainFlags","features":[527]},{"name":"EMemoryAvailable","features":[527]},{"name":"EMemoryCriticalLevel","features":[527]},{"name":"EPolicyAction","features":[527]},{"name":"ESymbolReadingPolicy","features":[527]},{"name":"ETaskType","features":[527]},{"name":"Event_ClrDisabled","features":[527]},{"name":"Event_DomainUnload","features":[527]},{"name":"Event_MDAFired","features":[527]},{"name":"Event_StackOverflow","features":[527]},{"name":"FAIL_AccessViolation","features":[527]},{"name":"FAIL_CodeContract","features":[527]},{"name":"FAIL_CriticalResource","features":[527]},{"name":"FAIL_FatalRuntime","features":[527]},{"name":"FAIL_NonCriticalResource","features":[527]},{"name":"FAIL_OrphanedLock","features":[527]},{"name":"FAIL_StackOverflow","features":[527]},{"name":"FExecuteInAppDomainCallback","features":[527]},{"name":"FLockClrVersionCallback","features":[527]},{"name":"GetCLRIdentityManager","features":[527]},{"name":"GetCORRequiredVersion","features":[527]},{"name":"GetCORSystemDirectory","features":[527]},{"name":"GetCORVersion","features":[527]},{"name":"GetFileVersion","features":[527]},{"name":"GetRealProcAddress","features":[527]},{"name":"GetRequestedRuntimeInfo","features":[527]},{"name":"GetRequestedRuntimeVersion","features":[527]},{"name":"GetRequestedRuntimeVersionForCLSID","features":[527]},{"name":"GetVersionFromProcess","features":[305,527]},{"name":"HOST_APPLICATION_BINDING_POLICY","features":[527]},{"name":"HOST_BINDING_POLICY_MODIFY_CHAIN","features":[527]},{"name":"HOST_BINDING_POLICY_MODIFY_DEFAULT","features":[527]},{"name":"HOST_BINDING_POLICY_MODIFY_MAX","features":[527]},{"name":"HOST_BINDING_POLICY_MODIFY_REMOVE","features":[527]},{"name":"HOST_TYPE","features":[527]},{"name":"HOST_TYPE_APPLAUNCH","features":[527]},{"name":"HOST_TYPE_CORFLAG","features":[527]},{"name":"HOST_TYPE_DEFAULT","features":[527]},{"name":"IActionOnCLREvent","features":[527]},{"name":"IApartmentCallback","features":[527]},{"name":"IAppDomainBinding","features":[527]},{"name":"ICLRAppDomainResourceMonitor","features":[527]},{"name":"ICLRAssemblyIdentityManager","features":[527]},{"name":"ICLRAssemblyReferenceList","features":[527]},{"name":"ICLRControl","features":[527]},{"name":"ICLRDebugManager","features":[527]},{"name":"ICLRDebugging","features":[527]},{"name":"ICLRDebuggingLibraryProvider","features":[527]},{"name":"ICLRDomainManager","features":[527]},{"name":"ICLRErrorReportingManager","features":[527]},{"name":"ICLRGCManager","features":[527]},{"name":"ICLRGCManager2","features":[527]},{"name":"ICLRHostBindingPolicyManager","features":[527]},{"name":"ICLRHostProtectionManager","features":[527]},{"name":"ICLRIoCompletionManager","features":[527]},{"name":"ICLRMemoryNotificationCallback","features":[527]},{"name":"ICLRMetaHost","features":[527]},{"name":"ICLRMetaHostPolicy","features":[527]},{"name":"ICLROnEventManager","features":[527]},{"name":"ICLRPolicyManager","features":[527]},{"name":"ICLRProbingAssemblyEnum","features":[527]},{"name":"ICLRProfiling","features":[527]},{"name":"ICLRReferenceAssemblyEnum","features":[527]},{"name":"ICLRRuntimeHost","features":[527]},{"name":"ICLRRuntimeInfo","features":[527]},{"name":"ICLRStrongName","features":[527]},{"name":"ICLRStrongName2","features":[527]},{"name":"ICLRStrongName3","features":[527]},{"name":"ICLRSyncManager","features":[527]},{"name":"ICLRTask","features":[527]},{"name":"ICLRTask2","features":[527]},{"name":"ICLRTaskManager","features":[527]},{"name":"ICatalogServices","features":[527]},{"name":"ICorConfiguration","features":[527]},{"name":"ICorRuntimeHost","features":[527]},{"name":"ICorThreadpool","features":[527]},{"name":"IDebuggerInfo","features":[527]},{"name":"IDebuggerThreadControl","features":[527]},{"name":"IGCHost","features":[527]},{"name":"IGCHost2","features":[527]},{"name":"IGCHostControl","features":[527]},{"name":"IGCThreadControl","features":[527]},{"name":"IHostAssemblyManager","features":[527]},{"name":"IHostAssemblyStore","features":[527]},{"name":"IHostAutoEvent","features":[527]},{"name":"IHostControl","features":[527]},{"name":"IHostCrst","features":[527]},{"name":"IHostGCManager","features":[527]},{"name":"IHostIoCompletionManager","features":[527]},{"name":"IHostMalloc","features":[527]},{"name":"IHostManualEvent","features":[527]},{"name":"IHostMemoryManager","features":[527]},{"name":"IHostPolicyManager","features":[527]},{"name":"IHostSecurityContext","features":[527]},{"name":"IHostSecurityManager","features":[527]},{"name":"IHostSemaphore","features":[527]},{"name":"IHostSyncManager","features":[527]},{"name":"IHostTask","features":[527]},{"name":"IHostTaskManager","features":[527]},{"name":"IHostThreadpoolManager","features":[527]},{"name":"IManagedObject","features":[527]},{"name":"IObjectHandle","features":[527]},{"name":"ITypeName","features":[527]},{"name":"ITypeNameBuilder","features":[527]},{"name":"ITypeNameFactory","features":[527]},{"name":"InvalidBucketParamIndex","features":[527]},{"name":"LIBID_mscoree","features":[527]},{"name":"LoadLibraryShim","features":[305,527]},{"name":"LoadStringRC","features":[527]},{"name":"LoadStringRCEx","features":[527]},{"name":"LockClrVersion","features":[527]},{"name":"MALLOC_EXECUTABLE","features":[527]},{"name":"MALLOC_THREADSAFE","features":[527]},{"name":"MALLOC_TYPE","features":[527]},{"name":"MDAInfo","features":[527]},{"name":"METAHOST_CONFIG_FLAGS","features":[527]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_FALSE","features":[527]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_MASK","features":[527]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_TRUE","features":[527]},{"name":"METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_UNSET","features":[527]},{"name":"METAHOST_POLICY_APPLY_UPGRADE_POLICY","features":[527]},{"name":"METAHOST_POLICY_EMULATE_EXE_LAUNCH","features":[527]},{"name":"METAHOST_POLICY_ENSURE_SKU_SUPPORTED","features":[527]},{"name":"METAHOST_POLICY_FLAGS","features":[527]},{"name":"METAHOST_POLICY_HIGHCOMPAT","features":[527]},{"name":"METAHOST_POLICY_IGNORE_ERROR_MODE","features":[527]},{"name":"METAHOST_POLICY_SHOW_ERROR_DIALOG","features":[527]},{"name":"METAHOST_POLICY_USE_PROCESS_IMAGE_PATH","features":[527]},{"name":"MaxClrEvent","features":[527]},{"name":"MaxClrFailure","features":[527]},{"name":"MaxClrOperation","features":[527]},{"name":"MaxPolicyAction","features":[527]},{"name":"ModuleBindInfo","features":[527]},{"name":"OPR_AppDomainRudeUnload","features":[527]},{"name":"OPR_AppDomainUnload","features":[527]},{"name":"OPR_FinalizerRun","features":[527]},{"name":"OPR_ProcessExit","features":[527]},{"name":"OPR_ThreadAbort","features":[527]},{"name":"OPR_ThreadRudeAbortInCriticalRegion","features":[527]},{"name":"OPR_ThreadRudeAbortInNonCriticalRegion","features":[527]},{"name":"PTLS_CALLBACK_FUNCTION","features":[527]},{"name":"Parameter1","features":[527]},{"name":"Parameter2","features":[527]},{"name":"Parameter3","features":[527]},{"name":"Parameter4","features":[527]},{"name":"Parameter5","features":[527]},{"name":"Parameter6","features":[527]},{"name":"Parameter7","features":[527]},{"name":"Parameter8","features":[527]},{"name":"Parameter9","features":[527]},{"name":"RUNTIME_INFO_DONT_RETURN_DIRECTORY","features":[527]},{"name":"RUNTIME_INFO_DONT_RETURN_VERSION","features":[527]},{"name":"RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG","features":[527]},{"name":"RUNTIME_INFO_FLAGS","features":[527]},{"name":"RUNTIME_INFO_IGNORE_ERROR_MODE","features":[527]},{"name":"RUNTIME_INFO_REQUEST_AMD64","features":[527]},{"name":"RUNTIME_INFO_REQUEST_ARM64","features":[527]},{"name":"RUNTIME_INFO_REQUEST_IA64","features":[527]},{"name":"RUNTIME_INFO_REQUEST_X86","features":[527]},{"name":"RUNTIME_INFO_UPGRADE_VERSION","features":[527]},{"name":"RunDll32ShimW","features":[305,527]},{"name":"RuntimeLoadedCallbackFnPtr","features":[527]},{"name":"SO_ClrEngine","features":[527]},{"name":"SO_Managed","features":[527]},{"name":"SO_Other","features":[527]},{"name":"STARTUP_ALWAYSFLOW_IMPERSONATION","features":[527]},{"name":"STARTUP_ARM","features":[527]},{"name":"STARTUP_CONCURRENT_GC","features":[527]},{"name":"STARTUP_DISABLE_COMMITTHREADSTACK","features":[527]},{"name":"STARTUP_ETW","features":[527]},{"name":"STARTUP_FLAGS","features":[527]},{"name":"STARTUP_HOARD_GC_VM","features":[527]},{"name":"STARTUP_LEGACY_IMPERSONATION","features":[527]},{"name":"STARTUP_LOADER_OPTIMIZATION_MASK","features":[527]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN","features":[527]},{"name":"STARTUP_LOADER_OPTIMIZATION_MULTI_DOMAIN_HOST","features":[527]},{"name":"STARTUP_LOADER_OPTIMIZATION_SINGLE_DOMAIN","features":[527]},{"name":"STARTUP_LOADER_SAFEMODE","features":[527]},{"name":"STARTUP_LOADER_SETPREFERENCE","features":[527]},{"name":"STARTUP_SERVER_GC","features":[527]},{"name":"STARTUP_SINGLE_VERSION_HOSTING_INTERFACE","features":[527]},{"name":"STARTUP_TRIM_GC_COMMIT","features":[527]},{"name":"StackOverflowInfo","features":[305,527,334,311]},{"name":"StackOverflowType","features":[527]},{"name":"TT_ADUNLOAD","features":[527]},{"name":"TT_DEBUGGERHELPER","features":[527]},{"name":"TT_FINALIZER","features":[527]},{"name":"TT_GC","features":[527]},{"name":"TT_THREADPOOL_GATE","features":[527]},{"name":"TT_THREADPOOL_IOCOMPLETION","features":[527]},{"name":"TT_THREADPOOL_TIMER","features":[527]},{"name":"TT_THREADPOOL_WAIT","features":[527]},{"name":"TT_THREADPOOL_WORKER","features":[527]},{"name":"TT_UNKNOWN","features":[527]},{"name":"TT_USER","features":[527]},{"name":"TypeNameFactory","features":[527]},{"name":"WAIT_ALERTABLE","features":[527]},{"name":"WAIT_MSGPUMP","features":[527]},{"name":"WAIT_NOTINDEADLOCK","features":[527]},{"name":"WAIT_OPTION","features":[527]},{"name":"eAbortThread","features":[527]},{"name":"eAll","features":[527]},{"name":"eAppDomainCritical","features":[527]},{"name":"eCurrentContext","features":[527]},{"name":"eDisableRuntime","features":[527]},{"name":"eExitProcess","features":[527]},{"name":"eExternalProcessMgmt","features":[527]},{"name":"eExternalThreading","features":[527]},{"name":"eFastExitProcess","features":[527]},{"name":"eHostDeterminedPolicy","features":[527]},{"name":"eInitializeNewDomainFlags_NoSecurityChanges","features":[527]},{"name":"eInitializeNewDomainFlags_None","features":[527]},{"name":"eMayLeakOnAbort","features":[527]},{"name":"eMemoryAvailableHigh","features":[527]},{"name":"eMemoryAvailableLow","features":[527]},{"name":"eMemoryAvailableNeutral","features":[527]},{"name":"eNoAction","features":[527]},{"name":"eNoChecks","features":[527]},{"name":"ePolicyLevelAdmin","features":[527]},{"name":"ePolicyLevelApp","features":[527]},{"name":"ePolicyLevelHost","features":[527]},{"name":"ePolicyLevelNone","features":[527]},{"name":"ePolicyLevelPublisher","features":[527]},{"name":"ePolicyLevelRetargetable","features":[527]},{"name":"ePolicyPortability","features":[527]},{"name":"ePolicyUnifiedToCLR","features":[527]},{"name":"eProcessCritical","features":[527]},{"name":"eRestrictedContext","features":[527]},{"name":"eRudeAbortThread","features":[527]},{"name":"eRudeExitProcess","features":[527]},{"name":"eRudeUnloadAppDomain","features":[527]},{"name":"eRuntimeDeterminedPolicy","features":[527]},{"name":"eSecurityInfrastructure","features":[527]},{"name":"eSelfAffectingProcessMgmt","features":[527]},{"name":"eSelfAffectingThreading","features":[527]},{"name":"eSharedState","features":[527]},{"name":"eSymbolReadingAlways","features":[527]},{"name":"eSymbolReadingFullTrustOnly","features":[527]},{"name":"eSymbolReadingNever","features":[527]},{"name":"eSynchronization","features":[527]},{"name":"eTaskCritical","features":[527]},{"name":"eThrowException","features":[527]},{"name":"eUI","features":[527]},{"name":"eUnloadAppDomain","features":[527]}],"536":[{"name":"ADVANCED_FEATURE_FLAGS","features":[356]},{"name":"ADVF","features":[356]},{"name":"ADVFCACHE_FORCEBUILTIN","features":[356]},{"name":"ADVFCACHE_NOHANDLER","features":[356]},{"name":"ADVFCACHE_ONSAVE","features":[356]},{"name":"ADVF_DATAONSTOP","features":[356]},{"name":"ADVF_NODATA","features":[356]},{"name":"ADVF_ONLYONCE","features":[356]},{"name":"ADVF_PRIMEFIRST","features":[356]},{"name":"APPIDREGFLAGS_AAA_NO_IMPLICIT_ACTIVATE_AS_IU","features":[356]},{"name":"APPIDREGFLAGS_ACTIVATE_IUSERVER_INDESKTOP","features":[356]},{"name":"APPIDREGFLAGS_ISSUE_ACTIVATION_RPC_AT_IDENTIFY","features":[356]},{"name":"APPIDREGFLAGS_IUSERVER_ACTIVATE_IN_CLIENT_SESSION_ONLY","features":[356]},{"name":"APPIDREGFLAGS_IUSERVER_SELF_SID_IN_LAUNCH_PERMISSION","features":[356]},{"name":"APPIDREGFLAGS_IUSERVER_UNMODIFIED_LOGON_TOKEN","features":[356]},{"name":"APPIDREGFLAGS_RESERVED1","features":[356]},{"name":"APPIDREGFLAGS_RESERVED2","features":[356]},{"name":"APPIDREGFLAGS_RESERVED3","features":[356]},{"name":"APPIDREGFLAGS_RESERVED4","features":[356]},{"name":"APPIDREGFLAGS_RESERVED5","features":[356]},{"name":"APPIDREGFLAGS_RESERVED7","features":[356]},{"name":"APPIDREGFLAGS_RESERVED8","features":[356]},{"name":"APPIDREGFLAGS_RESERVED9","features":[356]},{"name":"APPIDREGFLAGS_SECURE_SERVER_PROCESS_SD_AND_BIND","features":[356]},{"name":"APTTYPE","features":[356]},{"name":"APTTYPEQUALIFIER","features":[356]},{"name":"APTTYPEQUALIFIER_APPLICATION_STA","features":[356]},{"name":"APTTYPEQUALIFIER_IMPLICIT_MTA","features":[356]},{"name":"APTTYPEQUALIFIER_NA_ON_IMPLICIT_MTA","features":[356]},{"name":"APTTYPEQUALIFIER_NA_ON_MAINSTA","features":[356]},{"name":"APTTYPEQUALIFIER_NA_ON_MTA","features":[356]},{"name":"APTTYPEQUALIFIER_NA_ON_STA","features":[356]},{"name":"APTTYPEQUALIFIER_NONE","features":[356]},{"name":"APTTYPEQUALIFIER_RESERVED_1","features":[356]},{"name":"APTTYPE_CURRENT","features":[356]},{"name":"APTTYPE_MAINSTA","features":[356]},{"name":"APTTYPE_MTA","features":[356]},{"name":"APTTYPE_NA","features":[356]},{"name":"APTTYPE_STA","features":[356]},{"name":"ASYNC_MODE_COMPATIBILITY","features":[356]},{"name":"ASYNC_MODE_DEFAULT","features":[356]},{"name":"AUTHENTICATEINFO","features":[356]},{"name":"ApplicationType","features":[356]},{"name":"AsyncIAdviseSink","features":[356]},{"name":"AsyncIAdviseSink2","features":[356]},{"name":"AsyncIMultiQI","features":[356]},{"name":"AsyncIPipeByte","features":[356]},{"name":"AsyncIPipeDouble","features":[356]},{"name":"AsyncIPipeLong","features":[356]},{"name":"AsyncIUnknown","features":[356]},{"name":"BINDINFO","features":[305,316,308,429]},{"name":"BINDINFOF","features":[356]},{"name":"BINDINFOF_URLENCODEDEXTRAINFO","features":[356]},{"name":"BINDINFOF_URLENCODESTGMEDDATA","features":[356]},{"name":"BINDPTR","features":[356,415,380]},{"name":"BIND_FLAGS","features":[356]},{"name":"BIND_JUSTTESTEXISTENCE","features":[356]},{"name":"BIND_MAYBOTHERUSER","features":[356]},{"name":"BIND_OPTS","features":[356]},{"name":"BIND_OPTS2","features":[356]},{"name":"BIND_OPTS3","features":[305,356]},{"name":"BLOB","features":[356]},{"name":"BYTE_BLOB","features":[356]},{"name":"BYTE_SIZEDARR","features":[356]},{"name":"BindMoniker","features":[356]},{"name":"CALLCONV","features":[356]},{"name":"CALLTYPE","features":[356]},{"name":"CALLTYPE_ASYNC","features":[356]},{"name":"CALLTYPE_ASYNC_CALLPENDING","features":[356]},{"name":"CALLTYPE_NESTED","features":[356]},{"name":"CALLTYPE_TOPLEVEL","features":[356]},{"name":"CALLTYPE_TOPLEVEL_CALLPENDING","features":[356]},{"name":"CATEGORYINFO","features":[356]},{"name":"CC_CDECL","features":[356]},{"name":"CC_FASTCALL","features":[356]},{"name":"CC_FPFASTCALL","features":[356]},{"name":"CC_MACPASCAL","features":[356]},{"name":"CC_MAX","features":[356]},{"name":"CC_MPWCDECL","features":[356]},{"name":"CC_MPWPASCAL","features":[356]},{"name":"CC_MSCPASCAL","features":[356]},{"name":"CC_PASCAL","features":[356]},{"name":"CC_STDCALL","features":[356]},{"name":"CC_SYSCALL","features":[356]},{"name":"CLSCTX","features":[356]},{"name":"CLSCTX_ACTIVATE_32_BIT_SERVER","features":[356]},{"name":"CLSCTX_ACTIVATE_64_BIT_SERVER","features":[356]},{"name":"CLSCTX_ACTIVATE_AAA_AS_IU","features":[356]},{"name":"CLSCTX_ACTIVATE_ARM32_SERVER","features":[356]},{"name":"CLSCTX_ACTIVATE_X86_SERVER","features":[356]},{"name":"CLSCTX_ALL","features":[356]},{"name":"CLSCTX_ALLOW_LOWER_TRUST_REGISTRATION","features":[356]},{"name":"CLSCTX_APPCONTAINER","features":[356]},{"name":"CLSCTX_DISABLE_AAA","features":[356]},{"name":"CLSCTX_ENABLE_AAA","features":[356]},{"name":"CLSCTX_ENABLE_CLOAKING","features":[356]},{"name":"CLSCTX_ENABLE_CODE_DOWNLOAD","features":[356]},{"name":"CLSCTX_FROM_DEFAULT_CONTEXT","features":[356]},{"name":"CLSCTX_INPROC_HANDLER","features":[356]},{"name":"CLSCTX_INPROC_HANDLER16","features":[356]},{"name":"CLSCTX_INPROC_SERVER","features":[356]},{"name":"CLSCTX_INPROC_SERVER16","features":[356]},{"name":"CLSCTX_LOCAL_SERVER","features":[356]},{"name":"CLSCTX_NO_CODE_DOWNLOAD","features":[356]},{"name":"CLSCTX_NO_CUSTOM_MARSHAL","features":[356]},{"name":"CLSCTX_NO_FAILURE_LOG","features":[356]},{"name":"CLSCTX_PS_DLL","features":[356]},{"name":"CLSCTX_REMOTE_SERVER","features":[356]},{"name":"CLSCTX_RESERVED1","features":[356]},{"name":"CLSCTX_RESERVED2","features":[356]},{"name":"CLSCTX_RESERVED3","features":[356]},{"name":"CLSCTX_RESERVED4","features":[356]},{"name":"CLSCTX_RESERVED5","features":[356]},{"name":"CLSCTX_RESERVED6","features":[356]},{"name":"CLSCTX_SERVER","features":[356]},{"name":"CLSIDFromProgID","features":[356]},{"name":"CLSIDFromProgIDEx","features":[356]},{"name":"CLSIDFromString","features":[356]},{"name":"CLSID_GlobalOptions","features":[356]},{"name":"COAUTHIDENTITY","features":[356]},{"name":"COAUTHINFO","features":[356]},{"name":"COINIT","features":[356]},{"name":"COINITBASE","features":[356]},{"name":"COINITBASE_MULTITHREADED","features":[356]},{"name":"COINIT_APARTMENTTHREADED","features":[356]},{"name":"COINIT_DISABLE_OLE1DDE","features":[356]},{"name":"COINIT_MULTITHREADED","features":[356]},{"name":"COINIT_SPEED_OVER_MEMORY","features":[356]},{"name":"COLE_DEFAULT_AUTHINFO","features":[356]},{"name":"COLE_DEFAULT_PRINCIPAL","features":[356]},{"name":"COMBND_RESERVED1","features":[356]},{"name":"COMBND_RESERVED2","features":[356]},{"name":"COMBND_RESERVED3","features":[356]},{"name":"COMBND_RESERVED4","features":[356]},{"name":"COMBND_RPCTIMEOUT","features":[356]},{"name":"COMBND_SERVER_LOCALITY","features":[356]},{"name":"COMGLB_APPID","features":[356]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE","features":[356]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_ANY","features":[356]},{"name":"COMGLB_EXCEPTION_DONOT_HANDLE_FATAL","features":[356]},{"name":"COMGLB_EXCEPTION_HANDLE","features":[356]},{"name":"COMGLB_EXCEPTION_HANDLING","features":[356]},{"name":"COMGLB_FAST_RUNDOWN","features":[356]},{"name":"COMGLB_PROPERTIES_RESERVED1","features":[356]},{"name":"COMGLB_PROPERTIES_RESERVED2","features":[356]},{"name":"COMGLB_PROPERTIES_RESERVED3","features":[356]},{"name":"COMGLB_RESERVED1","features":[356]},{"name":"COMGLB_RESERVED2","features":[356]},{"name":"COMGLB_RESERVED3","features":[356]},{"name":"COMGLB_RESERVED4","features":[356]},{"name":"COMGLB_RESERVED5","features":[356]},{"name":"COMGLB_RESERVED6","features":[356]},{"name":"COMGLB_RO_SETTINGS","features":[356]},{"name":"COMGLB_RPC_THREADPOOL_SETTING","features":[356]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_DEFAULT_POOL","features":[356]},{"name":"COMGLB_RPC_THREADPOOL_SETTING_PRIVATE_POOL","features":[356]},{"name":"COMGLB_STA_MODALLOOP_REMOVE_TOUCH_MESSAGES","features":[356]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_DONOT_REMOVE_INPUT_MESSAGES","features":[356]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REMOVE_INPUT_MESSAGES","features":[356]},{"name":"COMGLB_STA_MODALLOOP_SHARED_QUEUE_REORDER_POINTER_MESSAGES","features":[356]},{"name":"COMGLB_UNMARSHALING_POLICY","features":[356]},{"name":"COMGLB_UNMARSHALING_POLICY_HYBRID","features":[356]},{"name":"COMGLB_UNMARSHALING_POLICY_NORMAL","features":[356]},{"name":"COMGLB_UNMARSHALING_POLICY_STRONG","features":[356]},{"name":"COMSD","features":[356]},{"name":"COM_RIGHTS_ACTIVATE_LOCAL","features":[356]},{"name":"COM_RIGHTS_ACTIVATE_REMOTE","features":[356]},{"name":"COM_RIGHTS_EXECUTE","features":[356]},{"name":"COM_RIGHTS_EXECUTE_LOCAL","features":[356]},{"name":"COM_RIGHTS_EXECUTE_REMOTE","features":[356]},{"name":"COM_RIGHTS_RESERVED1","features":[356]},{"name":"COM_RIGHTS_RESERVED2","features":[356]},{"name":"CONNECTDATA","features":[356]},{"name":"COSERVERINFO","features":[356]},{"name":"COWAIT_ALERTABLE","features":[356]},{"name":"COWAIT_DEFAULT","features":[356]},{"name":"COWAIT_DISPATCH_CALLS","features":[356]},{"name":"COWAIT_DISPATCH_WINDOW_MESSAGES","features":[356]},{"name":"COWAIT_FLAGS","features":[356]},{"name":"COWAIT_INPUTAVAILABLE","features":[356]},{"name":"COWAIT_WAITALL","features":[356]},{"name":"CO_DEVICE_CATALOG_COOKIE","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTES","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_1","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_10","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_11","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_12","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_13","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_14","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_15","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_16","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_17","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_18","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_2","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_3","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_4","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_5","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_6","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_7","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_8","features":[356]},{"name":"CO_MARSHALING_CONTEXT_ATTRIBUTE_RESERVED_9","features":[356]},{"name":"CO_MARSHALING_SOURCE_IS_APP_CONTAINER","features":[356]},{"name":"CO_MTA_USAGE_COOKIE","features":[356]},{"name":"CSPLATFORM","features":[356]},{"name":"CUSTDATA","features":[356]},{"name":"CUSTDATAITEM","features":[356]},{"name":"CWMO_DEFAULT","features":[356]},{"name":"CWMO_DISPATCH_CALLS","features":[356]},{"name":"CWMO_DISPATCH_WINDOW_MESSAGES","features":[356]},{"name":"CWMO_FLAGS","features":[356]},{"name":"CWMO_MAX_HANDLES","features":[356]},{"name":"CY","features":[356]},{"name":"CoAddRefServerProcess","features":[356]},{"name":"CoAllowSetForegroundWindow","features":[356]},{"name":"CoAllowUnmarshalerCLSID","features":[356]},{"name":"CoBuildVersion","features":[356]},{"name":"CoCancelCall","features":[356]},{"name":"CoCopyProxy","features":[356]},{"name":"CoCreateFreeThreadedMarshaler","features":[356]},{"name":"CoCreateGuid","features":[356]},{"name":"CoCreateInstance","features":[356]},{"name":"CoCreateInstanceEx","features":[356]},{"name":"CoCreateInstanceFromApp","features":[356]},{"name":"CoDecrementMTAUsage","features":[356]},{"name":"CoDisableCallCancellation","features":[356]},{"name":"CoDisconnectContext","features":[356]},{"name":"CoDisconnectObject","features":[356]},{"name":"CoDosDateTimeToFileTime","features":[305,356]},{"name":"CoEnableCallCancellation","features":[356]},{"name":"CoFileTimeNow","features":[305,356]},{"name":"CoFileTimeToDosDateTime","features":[305,356]},{"name":"CoFreeAllLibraries","features":[356]},{"name":"CoFreeLibrary","features":[305,356]},{"name":"CoFreeUnusedLibraries","features":[356]},{"name":"CoFreeUnusedLibrariesEx","features":[356]},{"name":"CoGetApartmentType","features":[356]},{"name":"CoGetCallContext","features":[356]},{"name":"CoGetCallerTID","features":[356]},{"name":"CoGetCancelObject","features":[356]},{"name":"CoGetClassObject","features":[356]},{"name":"CoGetContextToken","features":[356]},{"name":"CoGetCurrentLogicalThreadId","features":[356]},{"name":"CoGetCurrentProcess","features":[356]},{"name":"CoGetMalloc","features":[356]},{"name":"CoGetObject","features":[356]},{"name":"CoGetObjectContext","features":[356]},{"name":"CoGetPSClsid","features":[356]},{"name":"CoGetSystemSecurityPermissions","features":[308,356]},{"name":"CoGetTreatAsClass","features":[356]},{"name":"CoImpersonateClient","features":[356]},{"name":"CoIncrementMTAUsage","features":[356]},{"name":"CoInitialize","features":[356]},{"name":"CoInitializeEx","features":[356]},{"name":"CoInitializeSecurity","features":[308,356]},{"name":"CoInstall","features":[356]},{"name":"CoInvalidateRemoteMachineBindings","features":[356]},{"name":"CoIsHandlerConnected","features":[305,356]},{"name":"CoIsOle1Class","features":[305,356]},{"name":"CoLoadLibrary","features":[305,356]},{"name":"CoLockObjectExternal","features":[305,356]},{"name":"CoQueryAuthenticationServices","features":[356]},{"name":"CoQueryClientBlanket","features":[356]},{"name":"CoQueryProxyBlanket","features":[356]},{"name":"CoRegisterActivationFilter","features":[356]},{"name":"CoRegisterChannelHook","features":[356]},{"name":"CoRegisterClassObject","features":[356]},{"name":"CoRegisterDeviceCatalog","features":[356]},{"name":"CoRegisterInitializeSpy","features":[356]},{"name":"CoRegisterMallocSpy","features":[356]},{"name":"CoRegisterPSClsid","features":[356]},{"name":"CoRegisterSurrogate","features":[356]},{"name":"CoReleaseServerProcess","features":[356]},{"name":"CoResumeClassObjects","features":[356]},{"name":"CoRevertToSelf","features":[356]},{"name":"CoRevokeClassObject","features":[356]},{"name":"CoRevokeDeviceCatalog","features":[356]},{"name":"CoRevokeInitializeSpy","features":[356]},{"name":"CoRevokeMallocSpy","features":[356]},{"name":"CoSetCancelObject","features":[356]},{"name":"CoSetProxyBlanket","features":[356]},{"name":"CoSuspendClassObjects","features":[356]},{"name":"CoSwitchCallContext","features":[356]},{"name":"CoTaskMemAlloc","features":[356]},{"name":"CoTaskMemFree","features":[356]},{"name":"CoTaskMemRealloc","features":[356]},{"name":"CoTestCancel","features":[356]},{"name":"CoTreatAsClass","features":[356]},{"name":"CoUninitialize","features":[356]},{"name":"CoWaitForMultipleHandles","features":[305,356]},{"name":"CoWaitForMultipleObjects","features":[305,356]},{"name":"ComCallData","features":[356]},{"name":"ContextProperty","features":[356]},{"name":"CreateAntiMoniker","features":[356]},{"name":"CreateBindCtx","features":[356]},{"name":"CreateClassMoniker","features":[356]},{"name":"CreateDataAdviseHolder","features":[356]},{"name":"CreateDataCache","features":[356]},{"name":"CreateFileMoniker","features":[356]},{"name":"CreateGenericComposite","features":[356]},{"name":"CreateIUriBuilder","features":[356]},{"name":"CreateItemMoniker","features":[356]},{"name":"CreateObjrefMoniker","features":[356]},{"name":"CreatePointerMoniker","features":[356]},{"name":"CreateStdProgressIndicator","features":[305,356]},{"name":"CreateUri","features":[356]},{"name":"CreateUriFromMultiByteString","features":[356]},{"name":"CreateUriWithFragment","features":[356]},{"name":"DATADIR","features":[356]},{"name":"DATADIR_GET","features":[356]},{"name":"DATADIR_SET","features":[356]},{"name":"DCOMSCM_ACTIVATION_DISALLOW_UNSECURE_CALL","features":[356]},{"name":"DCOMSCM_ACTIVATION_USE_ALL_AUTHNSERVICES","features":[356]},{"name":"DCOMSCM_PING_DISALLOW_UNSECURE_CALL","features":[356]},{"name":"DCOMSCM_PING_USE_MID_AUTHNSERVICE","features":[356]},{"name":"DCOMSCM_RESOLVE_DISALLOW_UNSECURE_CALL","features":[356]},{"name":"DCOMSCM_RESOLVE_USE_ALL_AUTHNSERVICES","features":[356]},{"name":"DCOM_CALL_CANCELED","features":[356]},{"name":"DCOM_CALL_COMPLETE","features":[356]},{"name":"DCOM_CALL_STATE","features":[356]},{"name":"DCOM_NONE","features":[356]},{"name":"DESCKIND","features":[356]},{"name":"DESCKIND_FUNCDESC","features":[356]},{"name":"DESCKIND_IMPLICITAPPOBJ","features":[356]},{"name":"DESCKIND_MAX","features":[356]},{"name":"DESCKIND_NONE","features":[356]},{"name":"DESCKIND_TYPECOMP","features":[356]},{"name":"DESCKIND_VARDESC","features":[356]},{"name":"DISPATCH_FLAGS","features":[356]},{"name":"DISPATCH_METHOD","features":[356]},{"name":"DISPATCH_PROPERTYGET","features":[356]},{"name":"DISPATCH_PROPERTYPUT","features":[356]},{"name":"DISPATCH_PROPERTYPUTREF","features":[356]},{"name":"DISPPARAMS","features":[356]},{"name":"DMUS_ERRBASE","features":[356]},{"name":"DVASPECT","features":[356]},{"name":"DVASPECT_CONTENT","features":[356]},{"name":"DVASPECT_DOCPRINT","features":[356]},{"name":"DVASPECT_ICON","features":[356]},{"name":"DVASPECT_OPAQUE","features":[356]},{"name":"DVASPECT_THUMBNAIL","features":[356]},{"name":"DVASPECT_TRANSPARENT","features":[356]},{"name":"DVTARGETDEVICE","features":[356]},{"name":"DWORD_BLOB","features":[356]},{"name":"DWORD_SIZEDARR","features":[356]},{"name":"DcomChannelSetHResult","features":[356]},{"name":"ELEMDESC","features":[356,415,380]},{"name":"EOAC_ACCESS_CONTROL","features":[356]},{"name":"EOAC_ANY_AUTHORITY","features":[356]},{"name":"EOAC_APPID","features":[356]},{"name":"EOAC_AUTO_IMPERSONATE","features":[356]},{"name":"EOAC_DEFAULT","features":[356]},{"name":"EOAC_DISABLE_AAA","features":[356]},{"name":"EOAC_DYNAMIC","features":[356]},{"name":"EOAC_DYNAMIC_CLOAKING","features":[356]},{"name":"EOAC_MAKE_FULLSIC","features":[356]},{"name":"EOAC_MUTUAL_AUTH","features":[356]},{"name":"EOAC_NONE","features":[356]},{"name":"EOAC_NO_CUSTOM_MARSHAL","features":[356]},{"name":"EOAC_REQUIRE_FULLSIC","features":[356]},{"name":"EOAC_RESERVED1","features":[356]},{"name":"EOAC_SECURE_REFS","features":[356]},{"name":"EOAC_STATIC_CLOAKING","features":[356]},{"name":"EOLE_AUTHENTICATION_CAPABILITIES","features":[356]},{"name":"EXCEPINFO","features":[356]},{"name":"EXTCONN","features":[356]},{"name":"EXTCONN_CALLABLE","features":[356]},{"name":"EXTCONN_STRONG","features":[356]},{"name":"EXTCONN_WEAK","features":[356]},{"name":"FADF_AUTO","features":[356]},{"name":"FADF_BSTR","features":[356]},{"name":"FADF_DISPATCH","features":[356]},{"name":"FADF_EMBEDDED","features":[356]},{"name":"FADF_FIXEDSIZE","features":[356]},{"name":"FADF_HAVEIID","features":[356]},{"name":"FADF_HAVEVARTYPE","features":[356]},{"name":"FADF_RECORD","features":[356]},{"name":"FADF_RESERVED","features":[356]},{"name":"FADF_STATIC","features":[356]},{"name":"FADF_UNKNOWN","features":[356]},{"name":"FADF_VARIANT","features":[356]},{"name":"FLAGGED_BYTE_BLOB","features":[356]},{"name":"FLAGGED_WORD_BLOB","features":[356]},{"name":"FLAG_STGMEDIUM","features":[305,316,429]},{"name":"FORMATETC","features":[356]},{"name":"FUNCDESC","features":[356,415,380]},{"name":"FUNCFLAGS","features":[356]},{"name":"FUNCFLAG_FBINDABLE","features":[356]},{"name":"FUNCFLAG_FDEFAULTBIND","features":[356]},{"name":"FUNCFLAG_FDEFAULTCOLLELEM","features":[356]},{"name":"FUNCFLAG_FDISPLAYBIND","features":[356]},{"name":"FUNCFLAG_FHIDDEN","features":[356]},{"name":"FUNCFLAG_FIMMEDIATEBIND","features":[356]},{"name":"FUNCFLAG_FNONBROWSABLE","features":[356]},{"name":"FUNCFLAG_FREPLACEABLE","features":[356]},{"name":"FUNCFLAG_FREQUESTEDIT","features":[356]},{"name":"FUNCFLAG_FRESTRICTED","features":[356]},{"name":"FUNCFLAG_FSOURCE","features":[356]},{"name":"FUNCFLAG_FUIDEFAULT","features":[356]},{"name":"FUNCFLAG_FUSESGETLASTERROR","features":[356]},{"name":"FUNCKIND","features":[356]},{"name":"FUNC_DISPATCH","features":[356]},{"name":"FUNC_NONVIRTUAL","features":[356]},{"name":"FUNC_PUREVIRTUAL","features":[356]},{"name":"FUNC_STATIC","features":[356]},{"name":"FUNC_VIRTUAL","features":[356]},{"name":"ForcedShutdown","features":[356]},{"name":"GDI_OBJECT","features":[316,356,339]},{"name":"GLOBALOPT_EH_VALUES","features":[356]},{"name":"GLOBALOPT_PROPERTIES","features":[356]},{"name":"GLOBALOPT_RO_FLAGS","features":[356]},{"name":"GLOBALOPT_RPCTP_VALUES","features":[356]},{"name":"GLOBALOPT_UNMARSHALING_POLICY_VALUES","features":[356]},{"name":"GetClassFile","features":[356]},{"name":"GetErrorInfo","features":[356]},{"name":"GetRunningObjectTable","features":[356]},{"name":"HYPER_SIZEDARR","features":[356]},{"name":"IActivationFilter","features":[356]},{"name":"IAddrExclusionControl","features":[356]},{"name":"IAddrTrackingControl","features":[356]},{"name":"IAdviseSink","features":[356]},{"name":"IAdviseSink2","features":[356]},{"name":"IAgileObject","features":[356]},{"name":"IAsyncManager","features":[356]},{"name":"IAsyncRpcChannelBuffer","features":[356]},{"name":"IAuthenticate","features":[356]},{"name":"IAuthenticateEx","features":[356]},{"name":"IBindCtx","features":[356]},{"name":"IBindHost","features":[356]},{"name":"IBindStatusCallback","features":[356]},{"name":"IBindStatusCallbackEx","features":[356]},{"name":"IBinding","features":[356]},{"name":"IBlockingLock","features":[356]},{"name":"ICallFactory","features":[356]},{"name":"ICancelMethodCalls","features":[356]},{"name":"ICatInformation","features":[356]},{"name":"ICatRegister","features":[356]},{"name":"IChannelHook","features":[356]},{"name":"IClassActivator","features":[356]},{"name":"IClassFactory","features":[356]},{"name":"IClientSecurity","features":[356]},{"name":"IComThreadingInfo","features":[356]},{"name":"IConnectionPoint","features":[356]},{"name":"IConnectionPointContainer","features":[356]},{"name":"IContext","features":[356]},{"name":"IContextCallback","features":[356]},{"name":"IDLDESC","features":[356]},{"name":"IDLFLAGS","features":[356]},{"name":"IDLFLAG_FIN","features":[356]},{"name":"IDLFLAG_FLCID","features":[356]},{"name":"IDLFLAG_FOUT","features":[356]},{"name":"IDLFLAG_FRETVAL","features":[356]},{"name":"IDLFLAG_NONE","features":[356]},{"name":"IDataAdviseHolder","features":[356]},{"name":"IDataObject","features":[356]},{"name":"IDispatch","features":[356]},{"name":"IEnumCATEGORYINFO","features":[356]},{"name":"IEnumConnectionPoints","features":[356]},{"name":"IEnumConnections","features":[356]},{"name":"IEnumContextProps","features":[356]},{"name":"IEnumFORMATETC","features":[356]},{"name":"IEnumGUID","features":[356]},{"name":"IEnumMoniker","features":[356]},{"name":"IEnumSTATDATA","features":[356]},{"name":"IEnumString","features":[356]},{"name":"IEnumUnknown","features":[356]},{"name":"IErrorInfo","features":[356]},{"name":"IErrorLog","features":[356]},{"name":"IExternalConnection","features":[356]},{"name":"IFastRundown","features":[356]},{"name":"IForegroundTransfer","features":[356]},{"name":"IGlobalInterfaceTable","features":[356]},{"name":"IGlobalOptions","features":[356]},{"name":"IIDFromString","features":[356]},{"name":"IInitializeSpy","features":[356]},{"name":"IInternalUnknown","features":[356]},{"name":"IMPLTYPEFLAGS","features":[356]},{"name":"IMPLTYPEFLAG_FDEFAULT","features":[356]},{"name":"IMPLTYPEFLAG_FDEFAULTVTABLE","features":[356]},{"name":"IMPLTYPEFLAG_FRESTRICTED","features":[356]},{"name":"IMPLTYPEFLAG_FSOURCE","features":[356]},{"name":"IMachineGlobalObjectTable","features":[356]},{"name":"IMalloc","features":[356]},{"name":"IMallocSpy","features":[356]},{"name":"IMoniker","features":[356]},{"name":"IMultiQI","features":[356]},{"name":"INTERFACEINFO","features":[356]},{"name":"INVOKEKIND","features":[356]},{"name":"INVOKE_FUNC","features":[356]},{"name":"INVOKE_PROPERTYGET","features":[356]},{"name":"INVOKE_PROPERTYPUT","features":[356]},{"name":"INVOKE_PROPERTYPUTREF","features":[356]},{"name":"INoMarshal","features":[356]},{"name":"IOplockStorage","features":[356]},{"name":"IPSFactoryBuffer","features":[356]},{"name":"IPersist","features":[356]},{"name":"IPersistFile","features":[356]},{"name":"IPersistMemory","features":[356]},{"name":"IPersistStream","features":[356]},{"name":"IPersistStreamInit","features":[356]},{"name":"IPipeByte","features":[356]},{"name":"IPipeDouble","features":[356]},{"name":"IPipeLong","features":[356]},{"name":"IProcessInitControl","features":[356]},{"name":"IProcessLock","features":[356]},{"name":"IProgressNotify","features":[356]},{"name":"IROTData","features":[356]},{"name":"IReleaseMarshalBuffers","features":[356]},{"name":"IRpcChannelBuffer","features":[356]},{"name":"IRpcChannelBuffer2","features":[356]},{"name":"IRpcChannelBuffer3","features":[356]},{"name":"IRpcHelper","features":[356]},{"name":"IRpcOptions","features":[356]},{"name":"IRpcProxyBuffer","features":[356]},{"name":"IRpcStubBuffer","features":[356]},{"name":"IRpcSyntaxNegotiate","features":[356]},{"name":"IRunnableObject","features":[356]},{"name":"IRunningObjectTable","features":[356]},{"name":"ISequentialStream","features":[356]},{"name":"IServerSecurity","features":[356]},{"name":"IServiceProvider","features":[356]},{"name":"IStdMarshalInfo","features":[356]},{"name":"IStream","features":[356]},{"name":"ISupportAllowLowerTrustActivation","features":[356]},{"name":"ISupportErrorInfo","features":[356]},{"name":"ISurrogate","features":[356]},{"name":"ISurrogateService","features":[356]},{"name":"ISynchronize","features":[356]},{"name":"ISynchronizeContainer","features":[356]},{"name":"ISynchronizeEvent","features":[356]},{"name":"ISynchronizeHandle","features":[356]},{"name":"ISynchronizeMutex","features":[356]},{"name":"ITimeAndNoticeControl","features":[356]},{"name":"ITypeComp","features":[356]},{"name":"ITypeInfo","features":[356]},{"name":"ITypeInfo2","features":[356]},{"name":"ITypeLib","features":[356]},{"name":"ITypeLib2","features":[356]},{"name":"ITypeLibRegistration","features":[356]},{"name":"ITypeLibRegistrationReader","features":[356]},{"name":"IUnknown","features":[356]},{"name":"IUri","features":[356]},{"name":"IUriBuilder","features":[356]},{"name":"IUrlMon","features":[356]},{"name":"IWaitMultiple","features":[356]},{"name":"IdleShutdown","features":[356]},{"name":"LOCKTYPE","features":[356]},{"name":"LOCK_EXCLUSIVE","features":[356]},{"name":"LOCK_ONLYONCE","features":[356]},{"name":"LOCK_WRITE","features":[356]},{"name":"LPEXCEPFINO_DEFERRED_FILLIN","features":[356]},{"name":"LPFNCANUNLOADNOW","features":[356]},{"name":"LPFNGETCLASSOBJECT","features":[356]},{"name":"LibraryApplication","features":[356]},{"name":"MARSHALINTERFACE_MIN","features":[356]},{"name":"MAXLSN","features":[356]},{"name":"MEMCTX","features":[356]},{"name":"MEMCTX_MACSYSTEM","features":[356]},{"name":"MEMCTX_SAME","features":[356]},{"name":"MEMCTX_SHARED","features":[356]},{"name":"MEMCTX_TASK","features":[356]},{"name":"MEMCTX_UNKNOWN","features":[356]},{"name":"MKRREDUCE","features":[356]},{"name":"MKRREDUCE_ALL","features":[356]},{"name":"MKRREDUCE_ONE","features":[356]},{"name":"MKRREDUCE_THROUGHUSER","features":[356]},{"name":"MKRREDUCE_TOUSER","features":[356]},{"name":"MKSYS","features":[356]},{"name":"MKSYS_ANTIMONIKER","features":[356]},{"name":"MKSYS_CLASSMONIKER","features":[356]},{"name":"MKSYS_FILEMONIKER","features":[356]},{"name":"MKSYS_GENERICCOMPOSITE","features":[356]},{"name":"MKSYS_ITEMMONIKER","features":[356]},{"name":"MKSYS_LUAMONIKER","features":[356]},{"name":"MKSYS_NONE","features":[356]},{"name":"MKSYS_OBJREFMONIKER","features":[356]},{"name":"MKSYS_POINTERMONIKER","features":[356]},{"name":"MKSYS_SESSIONMONIKER","features":[356]},{"name":"MSHCTX","features":[356]},{"name":"MSHCTX_CONTAINER","features":[356]},{"name":"MSHCTX_CROSSCTX","features":[356]},{"name":"MSHCTX_DIFFERENTMACHINE","features":[356]},{"name":"MSHCTX_INPROC","features":[356]},{"name":"MSHCTX_LOCAL","features":[356]},{"name":"MSHCTX_NOSHAREDMEM","features":[356]},{"name":"MSHLFLAGS","features":[356]},{"name":"MSHLFLAGS_NOPING","features":[356]},{"name":"MSHLFLAGS_NORMAL","features":[356]},{"name":"MSHLFLAGS_RESERVED1","features":[356]},{"name":"MSHLFLAGS_RESERVED2","features":[356]},{"name":"MSHLFLAGS_RESERVED3","features":[356]},{"name":"MSHLFLAGS_RESERVED4","features":[356]},{"name":"MSHLFLAGS_TABLESTRONG","features":[356]},{"name":"MSHLFLAGS_TABLEWEAK","features":[356]},{"name":"MULTI_QI","features":[356]},{"name":"MachineGlobalObjectTableRegistrationToken","features":[356]},{"name":"MkParseDisplayName","features":[356]},{"name":"MonikerCommonPrefixWith","features":[356]},{"name":"MonikerRelativePathTo","features":[305,356]},{"name":"PENDINGMSG","features":[356]},{"name":"PENDINGMSG_CANCELCALL","features":[356]},{"name":"PENDINGMSG_WAITDEFPROCESS","features":[356]},{"name":"PENDINGMSG_WAITNOPROCESS","features":[356]},{"name":"PENDINGTYPE","features":[356]},{"name":"PENDINGTYPE_NESTED","features":[356]},{"name":"PENDINGTYPE_TOPLEVEL","features":[356]},{"name":"PFNCONTEXTCALL","features":[356]},{"name":"ProgIDFromCLSID","features":[356]},{"name":"QUERYCONTEXT","features":[356]},{"name":"REGCLS","features":[356]},{"name":"REGCLS_AGILE","features":[356]},{"name":"REGCLS_MULTIPLEUSE","features":[356]},{"name":"REGCLS_MULTI_SEPARATE","features":[356]},{"name":"REGCLS_SINGLEUSE","features":[356]},{"name":"REGCLS_SURROGATE","features":[356]},{"name":"REGCLS_SUSPENDED","features":[356]},{"name":"ROTFLAGS_ALLOWANYCLIENT","features":[356]},{"name":"ROTFLAGS_REGISTRATIONKEEPSALIVE","features":[356]},{"name":"ROTREGFLAGS_ALLOWANYCLIENT","features":[356]},{"name":"ROT_FLAGS","features":[356]},{"name":"RPCOLEMESSAGE","features":[356]},{"name":"RPCOPT_PROPERTIES","features":[356]},{"name":"RPCOPT_SERVER_LOCALITY_VALUES","features":[356]},{"name":"RPC_C_AUTHN_LEVEL","features":[356]},{"name":"RPC_C_AUTHN_LEVEL_CALL","features":[356]},{"name":"RPC_C_AUTHN_LEVEL_CONNECT","features":[356]},{"name":"RPC_C_AUTHN_LEVEL_DEFAULT","features":[356]},{"name":"RPC_C_AUTHN_LEVEL_NONE","features":[356]},{"name":"RPC_C_AUTHN_LEVEL_PKT","features":[356]},{"name":"RPC_C_AUTHN_LEVEL_PKT_INTEGRITY","features":[356]},{"name":"RPC_C_AUTHN_LEVEL_PKT_PRIVACY","features":[356]},{"name":"RPC_C_IMP_LEVEL","features":[356]},{"name":"RPC_C_IMP_LEVEL_ANONYMOUS","features":[356]},{"name":"RPC_C_IMP_LEVEL_DEFAULT","features":[356]},{"name":"RPC_C_IMP_LEVEL_DELEGATE","features":[356]},{"name":"RPC_C_IMP_LEVEL_IDENTIFY","features":[356]},{"name":"RPC_C_IMP_LEVEL_IMPERSONATE","features":[356]},{"name":"RemSTGMEDIUM","features":[356]},{"name":"SAFEARRAY","features":[356]},{"name":"SAFEARRAYBOUND","features":[356]},{"name":"SChannelHookCallInfo","features":[356]},{"name":"SD_ACCESSPERMISSIONS","features":[356]},{"name":"SD_ACCESSRESTRICTIONS","features":[356]},{"name":"SD_LAUNCHPERMISSIONS","features":[356]},{"name":"SD_LAUNCHRESTRICTIONS","features":[356]},{"name":"SERVERCALL","features":[356]},{"name":"SERVERCALL_ISHANDLED","features":[356]},{"name":"SERVERCALL_REJECTED","features":[356]},{"name":"SERVERCALL_RETRYLATER","features":[356]},{"name":"SERVER_LOCALITY_MACHINE_LOCAL","features":[356]},{"name":"SERVER_LOCALITY_PROCESS_LOCAL","features":[356]},{"name":"SERVER_LOCALITY_REMOTE","features":[356]},{"name":"SOLE_AUTHENTICATION_INFO","features":[356]},{"name":"SOLE_AUTHENTICATION_LIST","features":[356]},{"name":"SOLE_AUTHENTICATION_SERVICE","features":[356]},{"name":"STATDATA","features":[356]},{"name":"STATFLAG","features":[356]},{"name":"STATFLAG_DEFAULT","features":[356]},{"name":"STATFLAG_NONAME","features":[356]},{"name":"STATFLAG_NOOPEN","features":[356]},{"name":"STATSTG","features":[305,356]},{"name":"STGC","features":[356]},{"name":"STGC_CONSOLIDATE","features":[356]},{"name":"STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE","features":[356]},{"name":"STGC_DEFAULT","features":[356]},{"name":"STGC_ONLYIFCURRENT","features":[356]},{"name":"STGC_OVERWRITE","features":[356]},{"name":"STGM","features":[356]},{"name":"STGMEDIUM","features":[305,316,429]},{"name":"STGM_CONVERT","features":[356]},{"name":"STGM_CREATE","features":[356]},{"name":"STGM_DELETEONRELEASE","features":[356]},{"name":"STGM_DIRECT","features":[356]},{"name":"STGM_DIRECT_SWMR","features":[356]},{"name":"STGM_FAILIFTHERE","features":[356]},{"name":"STGM_NOSCRATCH","features":[356]},{"name":"STGM_NOSNAPSHOT","features":[356]},{"name":"STGM_PRIORITY","features":[356]},{"name":"STGM_READ","features":[356]},{"name":"STGM_READWRITE","features":[356]},{"name":"STGM_SHARE_DENY_NONE","features":[356]},{"name":"STGM_SHARE_DENY_READ","features":[356]},{"name":"STGM_SHARE_DENY_WRITE","features":[356]},{"name":"STGM_SHARE_EXCLUSIVE","features":[356]},{"name":"STGM_SIMPLE","features":[356]},{"name":"STGM_TRANSACTED","features":[356]},{"name":"STGM_WRITE","features":[356]},{"name":"STGTY","features":[356]},{"name":"STGTY_LOCKBYTES","features":[356]},{"name":"STGTY_PROPERTY","features":[356]},{"name":"STGTY_REPEAT","features":[356]},{"name":"STGTY_STORAGE","features":[356]},{"name":"STGTY_STREAM","features":[356]},{"name":"STG_LAYOUT_INTERLEAVED","features":[356]},{"name":"STG_LAYOUT_SEQUENTIAL","features":[356]},{"name":"STG_TOEND","features":[356]},{"name":"STREAM_SEEK","features":[356]},{"name":"STREAM_SEEK_CUR","features":[356]},{"name":"STREAM_SEEK_END","features":[356]},{"name":"STREAM_SEEK_SET","features":[356]},{"name":"SYSKIND","features":[356]},{"name":"SYS_MAC","features":[356]},{"name":"SYS_WIN16","features":[356]},{"name":"SYS_WIN32","features":[356]},{"name":"SYS_WIN64","features":[356]},{"name":"ServerApplication","features":[356]},{"name":"SetErrorInfo","features":[356]},{"name":"ShutdownType","features":[356]},{"name":"StorageLayout","features":[356]},{"name":"StringFromCLSID","features":[356]},{"name":"StringFromGUID2","features":[356]},{"name":"StringFromIID","features":[356]},{"name":"THDTYPE","features":[356]},{"name":"THDTYPE_BLOCKMESSAGES","features":[356]},{"name":"THDTYPE_PROCESSMESSAGES","features":[356]},{"name":"TKIND_ALIAS","features":[356]},{"name":"TKIND_COCLASS","features":[356]},{"name":"TKIND_DISPATCH","features":[356]},{"name":"TKIND_ENUM","features":[356]},{"name":"TKIND_INTERFACE","features":[356]},{"name":"TKIND_MAX","features":[356]},{"name":"TKIND_MODULE","features":[356]},{"name":"TKIND_RECORD","features":[356]},{"name":"TKIND_UNION","features":[356]},{"name":"TLIBATTR","features":[356]},{"name":"TYMED","features":[356]},{"name":"TYMED_ENHMF","features":[356]},{"name":"TYMED_FILE","features":[356]},{"name":"TYMED_GDI","features":[356]},{"name":"TYMED_HGLOBAL","features":[356]},{"name":"TYMED_ISTORAGE","features":[356]},{"name":"TYMED_ISTREAM","features":[356]},{"name":"TYMED_MFPICT","features":[356]},{"name":"TYMED_NULL","features":[356]},{"name":"TYPEATTR","features":[356,415,380]},{"name":"TYPEDESC","features":[356,415,380]},{"name":"TYPEKIND","features":[356]},{"name":"TYSPEC","features":[356]},{"name":"TYSPEC_CLSID","features":[356]},{"name":"TYSPEC_FILEEXT","features":[356]},{"name":"TYSPEC_FILENAME","features":[356]},{"name":"TYSPEC_MIMETYPE","features":[356]},{"name":"TYSPEC_OBJECTID","features":[356]},{"name":"TYSPEC_PACKAGENAME","features":[356]},{"name":"TYSPEC_PROGID","features":[356]},{"name":"URI_CREATE_FLAGS","features":[356]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME","features":[356]},{"name":"Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME","features":[356]},{"name":"Uri_CREATE_ALLOW_RELATIVE","features":[356]},{"name":"Uri_CREATE_CANONICALIZE","features":[356]},{"name":"Uri_CREATE_CANONICALIZE_ABSOLUTE","features":[356]},{"name":"Uri_CREATE_CRACK_UNKNOWN_SCHEMES","features":[356]},{"name":"Uri_CREATE_DECODE_EXTRA_INFO","features":[356]},{"name":"Uri_CREATE_FILE_USE_DOS_PATH","features":[356]},{"name":"Uri_CREATE_IE_SETTINGS","features":[356]},{"name":"Uri_CREATE_NOFRAG","features":[356]},{"name":"Uri_CREATE_NORMALIZE_INTL_CHARACTERS","features":[356]},{"name":"Uri_CREATE_NO_CANONICALIZE","features":[356]},{"name":"Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES","features":[356]},{"name":"Uri_CREATE_NO_DECODE_EXTRA_INFO","features":[356]},{"name":"Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS","features":[356]},{"name":"Uri_CREATE_NO_IE_SETTINGS","features":[356]},{"name":"Uri_CREATE_NO_PRE_PROCESS_HTML_URI","features":[356]},{"name":"Uri_CREATE_PRE_PROCESS_HTML_URI","features":[356]},{"name":"Uri_PROPERTY","features":[356]},{"name":"Uri_PROPERTY_ABSOLUTE_URI","features":[356]},{"name":"Uri_PROPERTY_AUTHORITY","features":[356]},{"name":"Uri_PROPERTY_DISPLAY_URI","features":[356]},{"name":"Uri_PROPERTY_DOMAIN","features":[356]},{"name":"Uri_PROPERTY_DWORD_LAST","features":[356]},{"name":"Uri_PROPERTY_DWORD_START","features":[356]},{"name":"Uri_PROPERTY_EXTENSION","features":[356]},{"name":"Uri_PROPERTY_FRAGMENT","features":[356]},{"name":"Uri_PROPERTY_HOST","features":[356]},{"name":"Uri_PROPERTY_HOST_TYPE","features":[356]},{"name":"Uri_PROPERTY_PASSWORD","features":[356]},{"name":"Uri_PROPERTY_PATH","features":[356]},{"name":"Uri_PROPERTY_PATH_AND_QUERY","features":[356]},{"name":"Uri_PROPERTY_PORT","features":[356]},{"name":"Uri_PROPERTY_QUERY","features":[356]},{"name":"Uri_PROPERTY_RAW_URI","features":[356]},{"name":"Uri_PROPERTY_SCHEME","features":[356]},{"name":"Uri_PROPERTY_SCHEME_NAME","features":[356]},{"name":"Uri_PROPERTY_STRING_LAST","features":[356]},{"name":"Uri_PROPERTY_STRING_START","features":[356]},{"name":"Uri_PROPERTY_USER_INFO","features":[356]},{"name":"Uri_PROPERTY_USER_NAME","features":[356]},{"name":"Uri_PROPERTY_ZONE","features":[356]},{"name":"VARDESC","features":[356,415,380]},{"name":"VARFLAGS","features":[356]},{"name":"VARFLAG_FBINDABLE","features":[356]},{"name":"VARFLAG_FDEFAULTBIND","features":[356]},{"name":"VARFLAG_FDEFAULTCOLLELEM","features":[356]},{"name":"VARFLAG_FDISPLAYBIND","features":[356]},{"name":"VARFLAG_FHIDDEN","features":[356]},{"name":"VARFLAG_FIMMEDIATEBIND","features":[356]},{"name":"VARFLAG_FNONBROWSABLE","features":[356]},{"name":"VARFLAG_FREADONLY","features":[356]},{"name":"VARFLAG_FREPLACEABLE","features":[356]},{"name":"VARFLAG_FREQUESTEDIT","features":[356]},{"name":"VARFLAG_FRESTRICTED","features":[356]},{"name":"VARFLAG_FSOURCE","features":[356]},{"name":"VARFLAG_FUIDEFAULT","features":[356]},{"name":"VARKIND","features":[356]},{"name":"VAR_CONST","features":[356]},{"name":"VAR_DISPATCH","features":[356]},{"name":"VAR_PERINSTANCE","features":[356]},{"name":"VAR_STATIC","features":[356]},{"name":"WORD_BLOB","features":[356]},{"name":"WORD_SIZEDARR","features":[356]},{"name":"uCLSSPEC","features":[356]},{"name":"userFLAG_STGMEDIUM","features":[316,356,339]},{"name":"userSTGMEDIUM","features":[316,356,339]}],"537":[{"name":"CALLFRAMEINFO","features":[305,528]},{"name":"CALLFRAMEPARAMINFO","features":[305,528]},{"name":"CALLFRAME_COPY","features":[528]},{"name":"CALLFRAME_COPY_INDEPENDENT","features":[528]},{"name":"CALLFRAME_COPY_NESTED","features":[528]},{"name":"CALLFRAME_FREE","features":[528]},{"name":"CALLFRAME_FREE_ALL","features":[528]},{"name":"CALLFRAME_FREE_IN","features":[528]},{"name":"CALLFRAME_FREE_INOUT","features":[528]},{"name":"CALLFRAME_FREE_NONE","features":[528]},{"name":"CALLFRAME_FREE_OUT","features":[528]},{"name":"CALLFRAME_FREE_TOP_INOUT","features":[528]},{"name":"CALLFRAME_FREE_TOP_OUT","features":[528]},{"name":"CALLFRAME_MARSHALCONTEXT","features":[305,528]},{"name":"CALLFRAME_NULL","features":[528]},{"name":"CALLFRAME_NULL_ALL","features":[528]},{"name":"CALLFRAME_NULL_INOUT","features":[528]},{"name":"CALLFRAME_NULL_NONE","features":[528]},{"name":"CALLFRAME_NULL_OUT","features":[528]},{"name":"CALLFRAME_WALK","features":[528]},{"name":"CALLFRAME_WALK_IN","features":[528]},{"name":"CALLFRAME_WALK_INOUT","features":[528]},{"name":"CALLFRAME_WALK_OUT","features":[528]},{"name":"CoGetInterceptor","features":[528]},{"name":"CoGetInterceptorFromTypeInfo","features":[528]},{"name":"ICallFrame","features":[528]},{"name":"ICallFrameEvents","features":[528]},{"name":"ICallFrameWalker","features":[528]},{"name":"ICallIndirect","features":[528]},{"name":"ICallInterceptor","features":[528]},{"name":"ICallUnmarshal","features":[528]},{"name":"IInterfaceRelated","features":[528]}],"538":[{"name":"IChannelCredentials","features":[529]}],"539":[{"name":"CEventClass","features":[530]},{"name":"CEventPublisher","features":[530]},{"name":"CEventSubscription","features":[530]},{"name":"CEventSystem","features":[530]},{"name":"COMEVENTSYSCHANGEINFO","features":[530]},{"name":"EOC_ChangeType","features":[530]},{"name":"EOC_DeletedObject","features":[530]},{"name":"EOC_ModifiedObject","features":[530]},{"name":"EOC_NewObject","features":[530]},{"name":"EventObjectChange","features":[530]},{"name":"EventObjectChange2","features":[530]},{"name":"IDontSupportEventSubscription","features":[530]},{"name":"IEnumEventObject","features":[530]},{"name":"IEventClass","features":[530]},{"name":"IEventClass2","features":[530]},{"name":"IEventControl","features":[530]},{"name":"IEventObjectChange","features":[530]},{"name":"IEventObjectChange2","features":[530]},{"name":"IEventObjectCollection","features":[530]},{"name":"IEventProperty","features":[530]},{"name":"IEventPublisher","features":[530]},{"name":"IEventSubscription","features":[530]},{"name":"IEventSystem","features":[530]},{"name":"IFiringControl","features":[530]},{"name":"IMultiInterfaceEventControl","features":[530]},{"name":"IMultiInterfacePublisherFilter","features":[530]},{"name":"IPublisherFilter","features":[530]}],"540":[{"name":"BSTR_UserFree","features":[531]},{"name":"BSTR_UserFree64","features":[531]},{"name":"BSTR_UserMarshal","features":[531]},{"name":"BSTR_UserMarshal64","features":[531]},{"name":"BSTR_UserSize","features":[531]},{"name":"BSTR_UserSize64","features":[531]},{"name":"BSTR_UserUnmarshal","features":[531]},{"name":"BSTR_UserUnmarshal64","features":[531]},{"name":"CLIPFORMAT_UserFree","features":[531]},{"name":"CLIPFORMAT_UserFree64","features":[531]},{"name":"CLIPFORMAT_UserMarshal","features":[531]},{"name":"CLIPFORMAT_UserMarshal64","features":[531]},{"name":"CLIPFORMAT_UserSize","features":[531]},{"name":"CLIPFORMAT_UserSize64","features":[531]},{"name":"CLIPFORMAT_UserUnmarshal","features":[531]},{"name":"CLIPFORMAT_UserUnmarshal64","features":[531]},{"name":"CoGetMarshalSizeMax","features":[531]},{"name":"CoGetStandardMarshal","features":[531]},{"name":"CoGetStdMarshalEx","features":[531]},{"name":"CoMarshalHresult","features":[531]},{"name":"CoMarshalInterThreadInterfaceInStream","features":[531]},{"name":"CoMarshalInterface","features":[531]},{"name":"CoReleaseMarshalData","features":[531]},{"name":"CoUnmarshalHresult","features":[531]},{"name":"CoUnmarshalInterface","features":[531]},{"name":"HACCEL_UserFree","features":[531,367]},{"name":"HACCEL_UserFree64","features":[531,367]},{"name":"HACCEL_UserMarshal","features":[531,367]},{"name":"HACCEL_UserMarshal64","features":[531,367]},{"name":"HACCEL_UserSize","features":[531,367]},{"name":"HACCEL_UserSize64","features":[531,367]},{"name":"HACCEL_UserUnmarshal","features":[531,367]},{"name":"HACCEL_UserUnmarshal64","features":[531,367]},{"name":"HBITMAP_UserFree","features":[316,531]},{"name":"HBITMAP_UserFree64","features":[316,531]},{"name":"HBITMAP_UserMarshal","features":[316,531]},{"name":"HBITMAP_UserMarshal64","features":[316,531]},{"name":"HBITMAP_UserSize","features":[316,531]},{"name":"HBITMAP_UserSize64","features":[316,531]},{"name":"HBITMAP_UserUnmarshal","features":[316,531]},{"name":"HBITMAP_UserUnmarshal64","features":[316,531]},{"name":"HDC_UserFree","features":[316,531]},{"name":"HDC_UserFree64","features":[316,531]},{"name":"HDC_UserMarshal","features":[316,531]},{"name":"HDC_UserMarshal64","features":[316,531]},{"name":"HDC_UserSize","features":[316,531]},{"name":"HDC_UserSize64","features":[316,531]},{"name":"HDC_UserUnmarshal","features":[316,531]},{"name":"HDC_UserUnmarshal64","features":[316,531]},{"name":"HGLOBAL_UserFree","features":[305,531]},{"name":"HGLOBAL_UserFree64","features":[305,531]},{"name":"HGLOBAL_UserMarshal","features":[305,531]},{"name":"HGLOBAL_UserMarshal64","features":[305,531]},{"name":"HGLOBAL_UserSize","features":[305,531]},{"name":"HGLOBAL_UserSize64","features":[305,531]},{"name":"HGLOBAL_UserUnmarshal","features":[305,531]},{"name":"HGLOBAL_UserUnmarshal64","features":[305,531]},{"name":"HICON_UserFree","features":[531,367]},{"name":"HICON_UserFree64","features":[531,367]},{"name":"HICON_UserMarshal","features":[531,367]},{"name":"HICON_UserMarshal64","features":[531,367]},{"name":"HICON_UserSize","features":[531,367]},{"name":"HICON_UserSize64","features":[531,367]},{"name":"HICON_UserUnmarshal","features":[531,367]},{"name":"HICON_UserUnmarshal64","features":[531,367]},{"name":"HMENU_UserFree","features":[531,367]},{"name":"HMENU_UserFree64","features":[531,367]},{"name":"HMENU_UserMarshal","features":[531,367]},{"name":"HMENU_UserMarshal64","features":[531,367]},{"name":"HMENU_UserSize","features":[531,367]},{"name":"HMENU_UserSize64","features":[531,367]},{"name":"HMENU_UserUnmarshal","features":[531,367]},{"name":"HMENU_UserUnmarshal64","features":[531,367]},{"name":"HPALETTE_UserFree","features":[316,531]},{"name":"HPALETTE_UserFree64","features":[316,531]},{"name":"HPALETTE_UserMarshal","features":[316,531]},{"name":"HPALETTE_UserMarshal64","features":[316,531]},{"name":"HPALETTE_UserSize","features":[316,531]},{"name":"HPALETTE_UserSize64","features":[316,531]},{"name":"HPALETTE_UserUnmarshal","features":[316,531]},{"name":"HPALETTE_UserUnmarshal64","features":[316,531]},{"name":"HWND_UserFree","features":[305,531]},{"name":"HWND_UserFree64","features":[305,531]},{"name":"HWND_UserMarshal","features":[305,531]},{"name":"HWND_UserMarshal64","features":[305,531]},{"name":"HWND_UserSize","features":[305,531]},{"name":"HWND_UserSize64","features":[305,531]},{"name":"HWND_UserUnmarshal","features":[305,531]},{"name":"HWND_UserUnmarshal64","features":[305,531]},{"name":"IMarshal","features":[531]},{"name":"IMarshal2","features":[531]},{"name":"IMarshalingStream","features":[531]},{"name":"LPSAFEARRAY_UserFree","features":[531]},{"name":"LPSAFEARRAY_UserFree64","features":[531]},{"name":"LPSAFEARRAY_UserMarshal","features":[531]},{"name":"LPSAFEARRAY_UserMarshal64","features":[531]},{"name":"LPSAFEARRAY_UserSize","features":[531]},{"name":"LPSAFEARRAY_UserSize64","features":[531]},{"name":"LPSAFEARRAY_UserUnmarshal","features":[531]},{"name":"LPSAFEARRAY_UserUnmarshal64","features":[531]},{"name":"SMEXF_HANDLER","features":[531]},{"name":"SMEXF_SERVER","features":[531]},{"name":"SNB_UserFree","features":[531]},{"name":"SNB_UserFree64","features":[531]},{"name":"SNB_UserMarshal","features":[531]},{"name":"SNB_UserMarshal64","features":[531]},{"name":"SNB_UserSize","features":[531]},{"name":"SNB_UserSize64","features":[531]},{"name":"SNB_UserUnmarshal","features":[531]},{"name":"SNB_UserUnmarshal64","features":[531]},{"name":"STDMSHLFLAGS","features":[531]},{"name":"STGMEDIUM_UserFree","features":[305,316,531,429]},{"name":"STGMEDIUM_UserFree64","features":[305,316,531,429]},{"name":"STGMEDIUM_UserMarshal","features":[305,316,531,429]},{"name":"STGMEDIUM_UserMarshal64","features":[305,316,531,429]},{"name":"STGMEDIUM_UserSize","features":[305,316,531,429]},{"name":"STGMEDIUM_UserSize64","features":[305,316,531,429]},{"name":"STGMEDIUM_UserUnmarshal","features":[305,316,531,429]},{"name":"STGMEDIUM_UserUnmarshal64","features":[305,316,531,429]}],"541":[{"name":"BSTRBLOB","features":[429]},{"name":"CABOOL","features":[305,429]},{"name":"CABSTR","features":[429]},{"name":"CABSTRBLOB","features":[429]},{"name":"CAC","features":[429]},{"name":"CACLIPDATA","features":[429]},{"name":"CACLSID","features":[429]},{"name":"CACY","features":[429]},{"name":"CADATE","features":[429]},{"name":"CADBL","features":[429]},{"name":"CAFILETIME","features":[305,429]},{"name":"CAFLT","features":[429]},{"name":"CAH","features":[429]},{"name":"CAI","features":[429]},{"name":"CAL","features":[429]},{"name":"CALPSTR","features":[429]},{"name":"CALPWSTR","features":[429]},{"name":"CAPROPVARIANT","features":[429]},{"name":"CASCODE","features":[429]},{"name":"CAUB","features":[429]},{"name":"CAUH","features":[429]},{"name":"CAUI","features":[429]},{"name":"CAUL","features":[429]},{"name":"CCH_MAX_PROPSTG_NAME","features":[429]},{"name":"CLIPDATA","features":[429]},{"name":"CWCSTORAGENAME","features":[429]},{"name":"ClearPropVariantArray","features":[429]},{"name":"CoGetInstanceFromFile","features":[429]},{"name":"CoGetInstanceFromIStorage","features":[429]},{"name":"CoGetInterfaceAndReleaseStream","features":[429]},{"name":"CreateILockBytesOnHGlobal","features":[305,429]},{"name":"CreateStreamOnHGlobal","features":[305,429]},{"name":"FmtIdToPropStgName","features":[429]},{"name":"FreePropVariantArray","features":[429]},{"name":"GetConvertStg","features":[429]},{"name":"GetHGlobalFromILockBytes","features":[305,429]},{"name":"GetHGlobalFromStream","features":[305,429]},{"name":"IDirectWriterLock","features":[429]},{"name":"IEnumSTATPROPSETSTG","features":[429]},{"name":"IEnumSTATPROPSTG","features":[429]},{"name":"IEnumSTATSTG","features":[429]},{"name":"IFillLockBytes","features":[429]},{"name":"ILayoutStorage","features":[429]},{"name":"ILockBytes","features":[429]},{"name":"IMemoryAllocator","features":[429]},{"name":"IPersistStorage","features":[429]},{"name":"IPropertyBag","features":[429]},{"name":"IPropertyBag2","features":[429]},{"name":"IPropertySetStorage","features":[429]},{"name":"IPropertyStorage","features":[429]},{"name":"IRootStorage","features":[429]},{"name":"IStorage","features":[429]},{"name":"InitPropVariantFromBooleanVector","features":[305,429]},{"name":"InitPropVariantFromBuffer","features":[429]},{"name":"InitPropVariantFromCLSID","features":[429]},{"name":"InitPropVariantFromDoubleVector","features":[429]},{"name":"InitPropVariantFromFileTime","features":[305,429]},{"name":"InitPropVariantFromFileTimeVector","features":[305,429]},{"name":"InitPropVariantFromGUIDAsString","features":[429]},{"name":"InitPropVariantFromInt16Vector","features":[429]},{"name":"InitPropVariantFromInt32Vector","features":[429]},{"name":"InitPropVariantFromInt64Vector","features":[429]},{"name":"InitPropVariantFromPropVariantVectorElem","features":[429]},{"name":"InitPropVariantFromResource","features":[305,429]},{"name":"InitPropVariantFromStringAsVector","features":[429]},{"name":"InitPropVariantFromStringVector","features":[429]},{"name":"InitPropVariantFromUInt16Vector","features":[429]},{"name":"InitPropVariantFromUInt32Vector","features":[429]},{"name":"InitPropVariantFromUInt64Vector","features":[429]},{"name":"InitPropVariantVectorFromPropVariant","features":[429]},{"name":"OLESTREAM","features":[429]},{"name":"OLESTREAMVTBL","features":[429]},{"name":"OleConvertIStorageToOLESTREAM","features":[429]},{"name":"OleConvertIStorageToOLESTREAMEx","features":[305,316,429]},{"name":"OleConvertOLESTREAMToIStorage","features":[429]},{"name":"OleConvertOLESTREAMToIStorageEx","features":[305,316,429]},{"name":"PIDDI_THUMBNAIL","features":[429]},{"name":"PIDDSI_BYTECOUNT","features":[429]},{"name":"PIDDSI_CATEGORY","features":[429]},{"name":"PIDDSI_COMPANY","features":[429]},{"name":"PIDDSI_DOCPARTS","features":[429]},{"name":"PIDDSI_HEADINGPAIR","features":[429]},{"name":"PIDDSI_HIDDENCOUNT","features":[429]},{"name":"PIDDSI_LINECOUNT","features":[429]},{"name":"PIDDSI_LINKSDIRTY","features":[429]},{"name":"PIDDSI_MANAGER","features":[429]},{"name":"PIDDSI_MMCLIPCOUNT","features":[429]},{"name":"PIDDSI_NOTECOUNT","features":[429]},{"name":"PIDDSI_PARCOUNT","features":[429]},{"name":"PIDDSI_PRESFORMAT","features":[429]},{"name":"PIDDSI_SCALE","features":[429]},{"name":"PIDDSI_SLIDECOUNT","features":[429]},{"name":"PIDMSI_COPYRIGHT","features":[429]},{"name":"PIDMSI_EDITOR","features":[429]},{"name":"PIDMSI_OWNER","features":[429]},{"name":"PIDMSI_PRODUCTION","features":[429]},{"name":"PIDMSI_PROJECT","features":[429]},{"name":"PIDMSI_RATING","features":[429]},{"name":"PIDMSI_SEQUENCE_NO","features":[429]},{"name":"PIDMSI_SOURCE","features":[429]},{"name":"PIDMSI_STATUS","features":[429]},{"name":"PIDMSI_STATUS_DRAFT","features":[429]},{"name":"PIDMSI_STATUS_EDIT","features":[429]},{"name":"PIDMSI_STATUS_FINAL","features":[429]},{"name":"PIDMSI_STATUS_INPROGRESS","features":[429]},{"name":"PIDMSI_STATUS_NEW","features":[429]},{"name":"PIDMSI_STATUS_NORMAL","features":[429]},{"name":"PIDMSI_STATUS_OTHER","features":[429]},{"name":"PIDMSI_STATUS_PRELIM","features":[429]},{"name":"PIDMSI_STATUS_PROOF","features":[429]},{"name":"PIDMSI_STATUS_REVIEW","features":[429]},{"name":"PIDMSI_STATUS_VALUE","features":[429]},{"name":"PIDMSI_SUPPLIER","features":[429]},{"name":"PIDSI_APPNAME","features":[429]},{"name":"PIDSI_AUTHOR","features":[429]},{"name":"PIDSI_CHARCOUNT","features":[429]},{"name":"PIDSI_COMMENTS","features":[429]},{"name":"PIDSI_CREATE_DTM","features":[429]},{"name":"PIDSI_DOC_SECURITY","features":[429]},{"name":"PIDSI_EDITTIME","features":[429]},{"name":"PIDSI_KEYWORDS","features":[429]},{"name":"PIDSI_LASTAUTHOR","features":[429]},{"name":"PIDSI_LASTPRINTED","features":[429]},{"name":"PIDSI_LASTSAVE_DTM","features":[429]},{"name":"PIDSI_PAGECOUNT","features":[429]},{"name":"PIDSI_REVNUMBER","features":[429]},{"name":"PIDSI_SUBJECT","features":[429]},{"name":"PIDSI_TEMPLATE","features":[429]},{"name":"PIDSI_THUMBNAIL","features":[429]},{"name":"PIDSI_TITLE","features":[429]},{"name":"PIDSI_WORDCOUNT","features":[429]},{"name":"PID_BEHAVIOR","features":[429]},{"name":"PID_CODEPAGE","features":[429]},{"name":"PID_DICTIONARY","features":[429]},{"name":"PID_FIRST_NAME_DEFAULT","features":[429]},{"name":"PID_FIRST_USABLE","features":[429]},{"name":"PID_ILLEGAL","features":[429]},{"name":"PID_LOCALE","features":[429]},{"name":"PID_MAX_READONLY","features":[429]},{"name":"PID_MIN_READONLY","features":[429]},{"name":"PID_MODIFY_TIME","features":[429]},{"name":"PID_SECURITY","features":[429]},{"name":"PROPBAG2","features":[429,380]},{"name":"PROPSETFLAG_ANSI","features":[429]},{"name":"PROPSETFLAG_CASE_SENSITIVE","features":[429]},{"name":"PROPSETFLAG_DEFAULT","features":[429]},{"name":"PROPSETFLAG_NONSIMPLE","features":[429]},{"name":"PROPSETFLAG_UNBUFFERED","features":[429]},{"name":"PROPSETHDR_OSVERSION_UNKNOWN","features":[429]},{"name":"PROPSET_BEHAVIOR_CASE_SENSITIVE","features":[429]},{"name":"PROPSPEC","features":[429]},{"name":"PROPSPEC_KIND","features":[429]},{"name":"PROPVARIANT","features":[305,429,380]},{"name":"PROPVAR_CHANGE_FLAGS","features":[429]},{"name":"PROPVAR_COMPARE_FLAGS","features":[429]},{"name":"PROPVAR_COMPARE_UNIT","features":[429]},{"name":"PRSPEC_INVALID","features":[429]},{"name":"PRSPEC_LPWSTR","features":[429]},{"name":"PRSPEC_PROPID","features":[429]},{"name":"PVCF_DEFAULT","features":[429]},{"name":"PVCF_DIGITSASNUMBERS_CASESENSITIVE","features":[429]},{"name":"PVCF_TREATEMPTYASGREATERTHAN","features":[429]},{"name":"PVCF_USESTRCMP","features":[429]},{"name":"PVCF_USESTRCMPC","features":[429]},{"name":"PVCF_USESTRCMPI","features":[429]},{"name":"PVCF_USESTRCMPIC","features":[429]},{"name":"PVCHF_ALPHABOOL","features":[429]},{"name":"PVCHF_DEFAULT","features":[429]},{"name":"PVCHF_LOCALBOOL","features":[429]},{"name":"PVCHF_NOHEXSTRING","features":[429]},{"name":"PVCHF_NOUSEROVERRIDE","features":[429]},{"name":"PVCHF_NOVALUEPROP","features":[429]},{"name":"PVCU_DAY","features":[429]},{"name":"PVCU_DEFAULT","features":[429]},{"name":"PVCU_HOUR","features":[429]},{"name":"PVCU_MINUTE","features":[429]},{"name":"PVCU_MONTH","features":[429]},{"name":"PVCU_SECOND","features":[429]},{"name":"PVCU_YEAR","features":[429]},{"name":"PropStgNameToFmtId","features":[429]},{"name":"PropVariantChangeType","features":[429,380]},{"name":"PropVariantClear","features":[429]},{"name":"PropVariantCompareEx","features":[429]},{"name":"PropVariantCopy","features":[429]},{"name":"PropVariantGetBooleanElem","features":[305,429]},{"name":"PropVariantGetDoubleElem","features":[429]},{"name":"PropVariantGetElementCount","features":[429]},{"name":"PropVariantGetFileTimeElem","features":[305,429]},{"name":"PropVariantGetInt16Elem","features":[429]},{"name":"PropVariantGetInt32Elem","features":[429]},{"name":"PropVariantGetInt64Elem","features":[429]},{"name":"PropVariantGetStringElem","features":[429]},{"name":"PropVariantGetUInt16Elem","features":[429]},{"name":"PropVariantGetUInt32Elem","features":[429]},{"name":"PropVariantGetUInt64Elem","features":[429]},{"name":"PropVariantToBSTR","features":[429]},{"name":"PropVariantToBoolean","features":[305,429]},{"name":"PropVariantToBooleanVector","features":[305,429]},{"name":"PropVariantToBooleanVectorAlloc","features":[305,429]},{"name":"PropVariantToBooleanWithDefault","features":[305,429]},{"name":"PropVariantToBuffer","features":[429]},{"name":"PropVariantToDouble","features":[429]},{"name":"PropVariantToDoubleVector","features":[429]},{"name":"PropVariantToDoubleVectorAlloc","features":[429]},{"name":"PropVariantToDoubleWithDefault","features":[429]},{"name":"PropVariantToFileTime","features":[305,429,380]},{"name":"PropVariantToFileTimeVector","features":[305,429]},{"name":"PropVariantToFileTimeVectorAlloc","features":[305,429]},{"name":"PropVariantToGUID","features":[429]},{"name":"PropVariantToInt16","features":[429]},{"name":"PropVariantToInt16Vector","features":[429]},{"name":"PropVariantToInt16VectorAlloc","features":[429]},{"name":"PropVariantToInt16WithDefault","features":[429]},{"name":"PropVariantToInt32","features":[429]},{"name":"PropVariantToInt32Vector","features":[429]},{"name":"PropVariantToInt32VectorAlloc","features":[429]},{"name":"PropVariantToInt32WithDefault","features":[429]},{"name":"PropVariantToInt64","features":[429]},{"name":"PropVariantToInt64Vector","features":[429]},{"name":"PropVariantToInt64VectorAlloc","features":[429]},{"name":"PropVariantToInt64WithDefault","features":[429]},{"name":"PropVariantToString","features":[429]},{"name":"PropVariantToStringAlloc","features":[429]},{"name":"PropVariantToStringVector","features":[429]},{"name":"PropVariantToStringVectorAlloc","features":[429]},{"name":"PropVariantToStringWithDefault","features":[429]},{"name":"PropVariantToUInt16","features":[429]},{"name":"PropVariantToUInt16Vector","features":[429]},{"name":"PropVariantToUInt16VectorAlloc","features":[429]},{"name":"PropVariantToUInt16WithDefault","features":[429]},{"name":"PropVariantToUInt32","features":[429]},{"name":"PropVariantToUInt32Vector","features":[429]},{"name":"PropVariantToUInt32VectorAlloc","features":[429]},{"name":"PropVariantToUInt32WithDefault","features":[429]},{"name":"PropVariantToUInt64","features":[429]},{"name":"PropVariantToUInt64Vector","features":[429]},{"name":"PropVariantToUInt64VectorAlloc","features":[429]},{"name":"PropVariantToUInt64WithDefault","features":[429]},{"name":"PropVariantToVariant","features":[429]},{"name":"PropVariantToWinRTPropertyValue","features":[429]},{"name":"ReadClassStg","features":[429]},{"name":"ReadClassStm","features":[429]},{"name":"ReadFmtUserTypeStg","features":[429]},{"name":"RemSNB","features":[429]},{"name":"SERIALIZEDPROPERTYVALUE","features":[429]},{"name":"STATPROPSETSTG","features":[305,429]},{"name":"STATPROPSTG","features":[429,380]},{"name":"STGFMT","features":[429]},{"name":"STGFMT_ANY","features":[429]},{"name":"STGFMT_DOCFILE","features":[429]},{"name":"STGFMT_DOCUMENT","features":[429]},{"name":"STGFMT_FILE","features":[429]},{"name":"STGFMT_NATIVE","features":[429]},{"name":"STGFMT_STORAGE","features":[429]},{"name":"STGMOVE","features":[429]},{"name":"STGMOVE_COPY","features":[429]},{"name":"STGMOVE_MOVE","features":[429]},{"name":"STGMOVE_SHALLOWCOPY","features":[429]},{"name":"STGOPTIONS","features":[429]},{"name":"STGOPTIONS_VERSION","features":[429]},{"name":"SetConvertStg","features":[305,429]},{"name":"StgConvertPropertyToVariant","features":[305,429]},{"name":"StgConvertVariantToProperty","features":[305,429]},{"name":"StgCreateDocfile","features":[429]},{"name":"StgCreateDocfileOnILockBytes","features":[429]},{"name":"StgCreatePropSetStg","features":[429]},{"name":"StgCreatePropStg","features":[429]},{"name":"StgCreateStorageEx","features":[308,429]},{"name":"StgDeserializePropVariant","features":[429]},{"name":"StgGetIFillLockBytesOnFile","features":[429]},{"name":"StgGetIFillLockBytesOnILockBytes","features":[429]},{"name":"StgIsStorageFile","features":[429]},{"name":"StgIsStorageILockBytes","features":[429]},{"name":"StgOpenAsyncDocfileOnIFillLockBytes","features":[429]},{"name":"StgOpenLayoutDocfile","features":[429]},{"name":"StgOpenPropStg","features":[429]},{"name":"StgOpenStorage","features":[429]},{"name":"StgOpenStorageEx","features":[308,429]},{"name":"StgOpenStorageOnILockBytes","features":[429]},{"name":"StgPropertyLengthAsVariant","features":[429]},{"name":"StgSerializePropVariant","features":[429]},{"name":"StgSetTimes","features":[305,429]},{"name":"VERSIONEDSTREAM","features":[429]},{"name":"VariantToPropVariant","features":[429]},{"name":"WinRTPropertyValueToPropVariant","features":[429]},{"name":"WriteClassStg","features":[429]},{"name":"WriteClassStm","features":[429]},{"name":"WriteFmtUserTypeStg","features":[429]}],"542":[{"name":"IDummyHICONIncluder","features":[532]},{"name":"IThumbnailExtractor","features":[532]}],"543":[{"name":"AUTHENTICATEF","features":[533]},{"name":"AUTHENTICATEF_BASIC","features":[533]},{"name":"AUTHENTICATEF_HTTP","features":[533]},{"name":"AUTHENTICATEF_PROXY","features":[533]},{"name":"BINDF","features":[533]},{"name":"BINDF2","features":[533]},{"name":"BINDF2_ALLOW_PROXY_CRED_PROMPT","features":[533]},{"name":"BINDF2_DISABLEAUTOCOOKIEHANDLING","features":[533]},{"name":"BINDF2_DISABLEBASICOVERHTTP","features":[533]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_CACHING","features":[533]},{"name":"BINDF2_DISABLE_HTTP_REDIRECT_XSECURITYID","features":[533]},{"name":"BINDF2_KEEP_CALLBACK_MODULE_LOADED","features":[533]},{"name":"BINDF2_READ_DATA_GREATER_THAN_4GB","features":[533]},{"name":"BINDF2_RESERVED_1","features":[533]},{"name":"BINDF2_RESERVED_10","features":[533]},{"name":"BINDF2_RESERVED_11","features":[533]},{"name":"BINDF2_RESERVED_12","features":[533]},{"name":"BINDF2_RESERVED_13","features":[533]},{"name":"BINDF2_RESERVED_14","features":[533]},{"name":"BINDF2_RESERVED_15","features":[533]},{"name":"BINDF2_RESERVED_16","features":[533]},{"name":"BINDF2_RESERVED_17","features":[533]},{"name":"BINDF2_RESERVED_2","features":[533]},{"name":"BINDF2_RESERVED_3","features":[533]},{"name":"BINDF2_RESERVED_4","features":[533]},{"name":"BINDF2_RESERVED_5","features":[533]},{"name":"BINDF2_RESERVED_6","features":[533]},{"name":"BINDF2_RESERVED_7","features":[533]},{"name":"BINDF2_RESERVED_8","features":[533]},{"name":"BINDF2_RESERVED_9","features":[533]},{"name":"BINDF2_RESERVED_A","features":[533]},{"name":"BINDF2_RESERVED_B","features":[533]},{"name":"BINDF2_RESERVED_C","features":[533]},{"name":"BINDF2_RESERVED_D","features":[533]},{"name":"BINDF2_RESERVED_E","features":[533]},{"name":"BINDF2_RESERVED_F","features":[533]},{"name":"BINDF2_SETDOWNLOADMODE","features":[533]},{"name":"BINDF_ASYNCHRONOUS","features":[533]},{"name":"BINDF_ASYNCSTORAGE","features":[533]},{"name":"BINDF_DIRECT_READ","features":[533]},{"name":"BINDF_ENFORCERESTRICTED","features":[533]},{"name":"BINDF_FORMS_SUBMIT","features":[533]},{"name":"BINDF_FREE_THREADED","features":[533]},{"name":"BINDF_FROMURLMON","features":[533]},{"name":"BINDF_FWD_BACK","features":[533]},{"name":"BINDF_GETCLASSOBJECT","features":[533]},{"name":"BINDF_GETFROMCACHE_IF_NET_FAIL","features":[533]},{"name":"BINDF_GETNEWESTVERSION","features":[533]},{"name":"BINDF_HYPERLINK","features":[533]},{"name":"BINDF_IGNORESECURITYPROBLEM","features":[533]},{"name":"BINDF_NEEDFILE","features":[533]},{"name":"BINDF_NOPROGRESSIVERENDERING","features":[533]},{"name":"BINDF_NOWRITECACHE","features":[533]},{"name":"BINDF_NO_UI","features":[533]},{"name":"BINDF_OFFLINEOPERATION","features":[533]},{"name":"BINDF_PRAGMA_NO_CACHE","features":[533]},{"name":"BINDF_PREFERDEFAULTHANDLER","features":[533]},{"name":"BINDF_PULLDATA","features":[533]},{"name":"BINDF_RESERVED_1","features":[533]},{"name":"BINDF_RESERVED_2","features":[533]},{"name":"BINDF_RESERVED_3","features":[533]},{"name":"BINDF_RESERVED_4","features":[533]},{"name":"BINDF_RESERVED_5","features":[533]},{"name":"BINDF_RESERVED_6","features":[533]},{"name":"BINDF_RESERVED_7","features":[533]},{"name":"BINDF_RESERVED_8","features":[533]},{"name":"BINDF_RESYNCHRONIZE","features":[533]},{"name":"BINDF_SILENTOPERATION","features":[533]},{"name":"BINDHANDLETYPES","features":[533]},{"name":"BINDHANDLETYPES_APPCACHE","features":[533]},{"name":"BINDHANDLETYPES_COUNT","features":[533]},{"name":"BINDHANDLETYPES_DEPENDENCY","features":[533]},{"name":"BINDINFO_OPTIONS","features":[533]},{"name":"BINDINFO_OPTIONS_ALLOWCONNECTDATA","features":[533]},{"name":"BINDINFO_OPTIONS_BINDTOOBJECT","features":[533]},{"name":"BINDINFO_OPTIONS_DISABLEAUTOREDIRECTS","features":[533]},{"name":"BINDINFO_OPTIONS_DISABLE_UTF8","features":[533]},{"name":"BINDINFO_OPTIONS_ENABLE_UTF8","features":[533]},{"name":"BINDINFO_OPTIONS_IGNOREHTTPHTTPSREDIRECTS","features":[533]},{"name":"BINDINFO_OPTIONS_IGNOREMIMETEXTPLAIN","features":[533]},{"name":"BINDINFO_OPTIONS_IGNORE_SSLERRORS_ONCE","features":[533]},{"name":"BINDINFO_OPTIONS_SECURITYOPTOUT","features":[533]},{"name":"BINDINFO_OPTIONS_SHDOCVW_NAVIGATE","features":[533]},{"name":"BINDINFO_OPTIONS_USEBINDSTRINGCREDS","features":[533]},{"name":"BINDINFO_OPTIONS_USE_IE_ENCODING","features":[533]},{"name":"BINDINFO_OPTIONS_WININETFLAG","features":[533]},{"name":"BINDINFO_WPC_DOWNLOADBLOCKED","features":[533]},{"name":"BINDINFO_WPC_LOGGING_ENABLED","features":[533]},{"name":"BINDSTATUS","features":[533]},{"name":"BINDSTATUS_64BIT_PROGRESS","features":[533]},{"name":"BINDSTATUS_ACCEPTRANGES","features":[533]},{"name":"BINDSTATUS_BEGINDOWNLOADCOMPONENTS","features":[533]},{"name":"BINDSTATUS_BEGINDOWNLOADDATA","features":[533]},{"name":"BINDSTATUS_BEGINSYNCOPERATION","features":[533]},{"name":"BINDSTATUS_BEGINUPLOADDATA","features":[533]},{"name":"BINDSTATUS_CACHECONTROL","features":[533]},{"name":"BINDSTATUS_CACHEFILENAMEAVAILABLE","features":[533]},{"name":"BINDSTATUS_CLASSIDAVAILABLE","features":[533]},{"name":"BINDSTATUS_CLASSINSTALLLOCATION","features":[533]},{"name":"BINDSTATUS_CLSIDCANINSTANTIATE","features":[533]},{"name":"BINDSTATUS_COMPACT_POLICY_RECEIVED","features":[533]},{"name":"BINDSTATUS_CONNECTING","features":[533]},{"name":"BINDSTATUS_CONTENTDISPOSITIONATTACH","features":[533]},{"name":"BINDSTATUS_CONTENTDISPOSITIONFILENAME","features":[533]},{"name":"BINDSTATUS_COOKIE_SENT","features":[533]},{"name":"BINDSTATUS_COOKIE_STATE_ACCEPT","features":[533]},{"name":"BINDSTATUS_COOKIE_STATE_DOWNGRADE","features":[533]},{"name":"BINDSTATUS_COOKIE_STATE_LEASH","features":[533]},{"name":"BINDSTATUS_COOKIE_STATE_PROMPT","features":[533]},{"name":"BINDSTATUS_COOKIE_STATE_REJECT","features":[533]},{"name":"BINDSTATUS_COOKIE_STATE_UNKNOWN","features":[533]},{"name":"BINDSTATUS_COOKIE_SUPPRESSED","features":[533]},{"name":"BINDSTATUS_DECODING","features":[533]},{"name":"BINDSTATUS_DIRECTBIND","features":[533]},{"name":"BINDSTATUS_DISPLAYNAMEAVAILABLE","features":[533]},{"name":"BINDSTATUS_DOWNLOADINGDATA","features":[533]},{"name":"BINDSTATUS_ENCODING","features":[533]},{"name":"BINDSTATUS_ENDDOWNLOADCOMPONENTS","features":[533]},{"name":"BINDSTATUS_ENDDOWNLOADDATA","features":[533]},{"name":"BINDSTATUS_ENDSYNCOPERATION","features":[533]},{"name":"BINDSTATUS_ENDUPLOADDATA","features":[533]},{"name":"BINDSTATUS_FILTERREPORTMIMETYPE","features":[533]},{"name":"BINDSTATUS_FINDINGRESOURCE","features":[533]},{"name":"BINDSTATUS_INSTALLINGCOMPONENTS","features":[533]},{"name":"BINDSTATUS_IUNKNOWNAVAILABLE","features":[533]},{"name":"BINDSTATUS_LAST","features":[533]},{"name":"BINDSTATUS_LAST_PRIVATE","features":[533]},{"name":"BINDSTATUS_LOADINGMIMEHANDLER","features":[533]},{"name":"BINDSTATUS_MIMETEXTPLAINMISMATCH","features":[533]},{"name":"BINDSTATUS_MIMETYPEAVAILABLE","features":[533]},{"name":"BINDSTATUS_P3P_HEADER","features":[533]},{"name":"BINDSTATUS_PERSISTENT_COOKIE_RECEIVED","features":[533]},{"name":"BINDSTATUS_POLICY_HREF","features":[533]},{"name":"BINDSTATUS_PROTOCOLCLASSID","features":[533]},{"name":"BINDSTATUS_PROXYDETECTING","features":[533]},{"name":"BINDSTATUS_PUBLISHERAVAILABLE","features":[533]},{"name":"BINDSTATUS_RAWMIMETYPE","features":[533]},{"name":"BINDSTATUS_REDIRECTING","features":[533]},{"name":"BINDSTATUS_RESERVED_0","features":[533]},{"name":"BINDSTATUS_RESERVED_1","features":[533]},{"name":"BINDSTATUS_RESERVED_10","features":[533]},{"name":"BINDSTATUS_RESERVED_11","features":[533]},{"name":"BINDSTATUS_RESERVED_12","features":[533]},{"name":"BINDSTATUS_RESERVED_13","features":[533]},{"name":"BINDSTATUS_RESERVED_14","features":[533]},{"name":"BINDSTATUS_RESERVED_2","features":[533]},{"name":"BINDSTATUS_RESERVED_3","features":[533]},{"name":"BINDSTATUS_RESERVED_4","features":[533]},{"name":"BINDSTATUS_RESERVED_5","features":[533]},{"name":"BINDSTATUS_RESERVED_6","features":[533]},{"name":"BINDSTATUS_RESERVED_7","features":[533]},{"name":"BINDSTATUS_RESERVED_8","features":[533]},{"name":"BINDSTATUS_RESERVED_9","features":[533]},{"name":"BINDSTATUS_RESERVED_A","features":[533]},{"name":"BINDSTATUS_RESERVED_B","features":[533]},{"name":"BINDSTATUS_RESERVED_C","features":[533]},{"name":"BINDSTATUS_RESERVED_D","features":[533]},{"name":"BINDSTATUS_RESERVED_E","features":[533]},{"name":"BINDSTATUS_RESERVED_F","features":[533]},{"name":"BINDSTATUS_SENDINGREQUEST","features":[533]},{"name":"BINDSTATUS_SERVER_MIMETYPEAVAILABLE","features":[533]},{"name":"BINDSTATUS_SESSION_COOKIES_ALLOWED","features":[533]},{"name":"BINDSTATUS_SESSION_COOKIE_RECEIVED","features":[533]},{"name":"BINDSTATUS_SNIFFED_CLASSIDAVAILABLE","features":[533]},{"name":"BINDSTATUS_SSLUX_NAVBLOCKED","features":[533]},{"name":"BINDSTATUS_UPLOADINGDATA","features":[533]},{"name":"BINDSTATUS_USINGCACHEDCOPY","features":[533]},{"name":"BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE","features":[533]},{"name":"BINDSTRING","features":[533]},{"name":"BINDSTRING_ACCEPT_ENCODINGS","features":[533]},{"name":"BINDSTRING_ACCEPT_MIMES","features":[533]},{"name":"BINDSTRING_DOC_URL","features":[533]},{"name":"BINDSTRING_DOWNLOADPATH","features":[533]},{"name":"BINDSTRING_ENTERPRISE_ID","features":[533]},{"name":"BINDSTRING_EXTRA_URL","features":[533]},{"name":"BINDSTRING_FLAG_BIND_TO_OBJECT","features":[533]},{"name":"BINDSTRING_HEADERS","features":[533]},{"name":"BINDSTRING_IID","features":[533]},{"name":"BINDSTRING_INITIAL_FILENAME","features":[533]},{"name":"BINDSTRING_LANGUAGE","features":[533]},{"name":"BINDSTRING_OS","features":[533]},{"name":"BINDSTRING_PASSWORD","features":[533]},{"name":"BINDSTRING_POST_COOKIE","features":[533]},{"name":"BINDSTRING_POST_DATA_MIME","features":[533]},{"name":"BINDSTRING_PROXY_PASSWORD","features":[533]},{"name":"BINDSTRING_PROXY_USERNAME","features":[533]},{"name":"BINDSTRING_PTR_BIND_CONTEXT","features":[533]},{"name":"BINDSTRING_ROOTDOC_URL","features":[533]},{"name":"BINDSTRING_SAMESITE_COOKIE_LEVEL","features":[533]},{"name":"BINDSTRING_UA_COLOR","features":[533]},{"name":"BINDSTRING_UA_PIXELS","features":[533]},{"name":"BINDSTRING_URL","features":[533]},{"name":"BINDSTRING_USERNAME","features":[533]},{"name":"BINDSTRING_USER_AGENT","features":[533]},{"name":"BINDSTRING_XDR_ORIGIN","features":[533]},{"name":"BINDVERB","features":[533]},{"name":"BINDVERB_CUSTOM","features":[533]},{"name":"BINDVERB_GET","features":[533]},{"name":"BINDVERB_POST","features":[533]},{"name":"BINDVERB_PUT","features":[533]},{"name":"BINDVERB_RESERVED1","features":[533]},{"name":"BSCF","features":[533]},{"name":"BSCF_64BITLENGTHDOWNLOAD","features":[533]},{"name":"BSCF_AVAILABLEDATASIZEUNKNOWN","features":[533]},{"name":"BSCF_DATAFULLYAVAILABLE","features":[533]},{"name":"BSCF_FIRSTDATANOTIFICATION","features":[533]},{"name":"BSCF_INTERMEDIATEDATANOTIFICATION","features":[533]},{"name":"BSCF_LASTDATANOTIFICATION","features":[533]},{"name":"BSCF_SKIPDRAINDATAFORFILEURLS","features":[533]},{"name":"CF_NULL","features":[533]},{"name":"CIP_ACCESS_DENIED","features":[533]},{"name":"CIP_DISK_FULL","features":[533]},{"name":"CIP_EXE_SELF_REGISTERATION_TIMEOUT","features":[533]},{"name":"CIP_NAME_CONFLICT","features":[533]},{"name":"CIP_NEED_REBOOT","features":[533]},{"name":"CIP_NEED_REBOOT_UI_PERMISSION","features":[533]},{"name":"CIP_NEWER_VERSION_EXISTS","features":[533]},{"name":"CIP_OLDER_VERSION_EXISTS","features":[533]},{"name":"CIP_STATUS","features":[533]},{"name":"CIP_TRUST_VERIFICATION_COMPONENT_MISSING","features":[533]},{"name":"CIP_UNSAFE_TO_ABORT","features":[533]},{"name":"CLASSIDPROP","features":[533]},{"name":"CODEBASEHOLD","features":[533]},{"name":"CONFIRMSAFETY","features":[533]},{"name":"CONFIRMSAFETYACTION_LOADOBJECT","features":[533]},{"name":"CoGetClassObjectFromURL","features":[533]},{"name":"CoInternetCombineIUri","features":[533]},{"name":"CoInternetCombineUrl","features":[533]},{"name":"CoInternetCombineUrlEx","features":[533]},{"name":"CoInternetCompareUrl","features":[533]},{"name":"CoInternetCreateSecurityManager","features":[533]},{"name":"CoInternetCreateZoneManager","features":[533]},{"name":"CoInternetGetProtocolFlags","features":[533]},{"name":"CoInternetGetSecurityUrl","features":[533]},{"name":"CoInternetGetSecurityUrlEx","features":[533]},{"name":"CoInternetGetSession","features":[533]},{"name":"CoInternetIsFeatureEnabled","features":[533]},{"name":"CoInternetIsFeatureEnabledForIUri","features":[533]},{"name":"CoInternetIsFeatureEnabledForUrl","features":[533]},{"name":"CoInternetIsFeatureZoneElevationEnabled","features":[533]},{"name":"CoInternetParseIUri","features":[533]},{"name":"CoInternetParseUrl","features":[533]},{"name":"CoInternetQueryInfo","features":[533]},{"name":"CoInternetSetFeatureEnabled","features":[305,533]},{"name":"CompareSecurityIds","features":[533]},{"name":"CompatFlagsFromClsid","features":[533]},{"name":"CopyBindInfo","features":[305,316,308,429,533]},{"name":"CopyStgMedium","features":[305,316,429,533]},{"name":"CreateAsyncBindCtx","features":[533]},{"name":"CreateAsyncBindCtxEx","features":[533]},{"name":"CreateFormatEnumerator","features":[533]},{"name":"CreateURLMoniker","features":[533]},{"name":"CreateURLMonikerEx","features":[533]},{"name":"CreateURLMonikerEx2","features":[533]},{"name":"DATAINFO","features":[533]},{"name":"E_PENDING","features":[533]},{"name":"FEATURE_ADDON_MANAGEMENT","features":[533]},{"name":"FEATURE_BEHAVIORS","features":[533]},{"name":"FEATURE_BLOCK_INPUT_PROMPTS","features":[533]},{"name":"FEATURE_DISABLE_LEGACY_COMPRESSION","features":[533]},{"name":"FEATURE_DISABLE_MK_PROTOCOL","features":[533]},{"name":"FEATURE_DISABLE_NAVIGATION_SOUNDS","features":[533]},{"name":"FEATURE_DISABLE_TELNET_PROTOCOL","features":[533]},{"name":"FEATURE_ENTRY_COUNT","features":[533]},{"name":"FEATURE_FEEDS","features":[533]},{"name":"FEATURE_FORCE_ADDR_AND_STATUS","features":[533]},{"name":"FEATURE_GET_URL_DOM_FILEPATH_UNENCODED","features":[533]},{"name":"FEATURE_HTTP_USERNAME_PASSWORD_DISABLE","features":[533]},{"name":"FEATURE_LOCALMACHINE_LOCKDOWN","features":[533]},{"name":"FEATURE_MIME_HANDLING","features":[533]},{"name":"FEATURE_MIME_SNIFFING","features":[533]},{"name":"FEATURE_OBJECT_CACHING","features":[533]},{"name":"FEATURE_PROTOCOL_LOCKDOWN","features":[533]},{"name":"FEATURE_RESTRICT_ACTIVEXINSTALL","features":[533]},{"name":"FEATURE_RESTRICT_FILEDOWNLOAD","features":[533]},{"name":"FEATURE_SAFE_BINDTOOBJECT","features":[533]},{"name":"FEATURE_SECURITYBAND","features":[533]},{"name":"FEATURE_SSLUX","features":[533]},{"name":"FEATURE_TABBED_BROWSING","features":[533]},{"name":"FEATURE_UNC_SAVEDFILECHECK","features":[533]},{"name":"FEATURE_VALIDATE_NAVIGATE_URL","features":[533]},{"name":"FEATURE_WEBOC_POPUPMANAGEMENT","features":[533]},{"name":"FEATURE_WINDOW_RESTRICTIONS","features":[533]},{"name":"FEATURE_XMLHTTP","features":[533]},{"name":"FEATURE_ZONE_ELEVATION","features":[533]},{"name":"FIEF_FLAG_FORCE_JITUI","features":[533]},{"name":"FIEF_FLAG_PEEK","features":[533]},{"name":"FIEF_FLAG_RESERVED_0","features":[533]},{"name":"FIEF_FLAG_SKIP_INSTALLED_VERSION_CHECK","features":[533]},{"name":"FMFD_DEFAULT","features":[533]},{"name":"FMFD_ENABLEMIMESNIFFING","features":[533]},{"name":"FMFD_IGNOREMIMETEXTPLAIN","features":[533]},{"name":"FMFD_RESERVED_1","features":[533]},{"name":"FMFD_RESERVED_2","features":[533]},{"name":"FMFD_RESPECTTEXTPLAIN","features":[533]},{"name":"FMFD_RETURNUPDATEDIMGMIMES","features":[533]},{"name":"FMFD_SERVERMIME","features":[533]},{"name":"FMFD_URLASFILENAME","features":[533]},{"name":"FaultInIEFeature","features":[305,533]},{"name":"FindMediaType","features":[533]},{"name":"FindMediaTypeClass","features":[533]},{"name":"FindMimeFromData","features":[533]},{"name":"GET_FEATURE_FROM_PROCESS","features":[533]},{"name":"GET_FEATURE_FROM_REGISTRY","features":[533]},{"name":"GET_FEATURE_FROM_THREAD","features":[533]},{"name":"GET_FEATURE_FROM_THREAD_INTERNET","features":[533]},{"name":"GET_FEATURE_FROM_THREAD_INTRANET","features":[533]},{"name":"GET_FEATURE_FROM_THREAD_LOCALMACHINE","features":[533]},{"name":"GET_FEATURE_FROM_THREAD_RESTRICTED","features":[533]},{"name":"GET_FEATURE_FROM_THREAD_TRUSTED","features":[533]},{"name":"GetClassFileOrMime","features":[533]},{"name":"GetClassURL","features":[533]},{"name":"GetComponentIDFromCLSSPEC","features":[533]},{"name":"GetSoftwareUpdateInfo","features":[533]},{"name":"HIT_LOGGING_INFO","features":[305,533]},{"name":"HlinkGoBack","features":[533]},{"name":"HlinkGoForward","features":[533]},{"name":"HlinkNavigateMoniker","features":[533]},{"name":"HlinkNavigateString","features":[533]},{"name":"HlinkSimpleNavigateToMoniker","features":[533]},{"name":"HlinkSimpleNavigateToString","features":[533]},{"name":"IBindCallbackRedirect","features":[533]},{"name":"IBindHttpSecurity","features":[533]},{"name":"IBindProtocol","features":[533]},{"name":"ICatalogFileInfo","features":[533]},{"name":"ICodeInstall","features":[533]},{"name":"IDataFilter","features":[533]},{"name":"IEGetUserPrivateNamespaceName","features":[533]},{"name":"IEInstallScope","features":[533]},{"name":"IEObjectType","features":[533]},{"name":"IE_EPM_OBJECT_EVENT","features":[533]},{"name":"IE_EPM_OBJECT_FILE","features":[533]},{"name":"IE_EPM_OBJECT_MUTEX","features":[533]},{"name":"IE_EPM_OBJECT_NAMED_PIPE","features":[533]},{"name":"IE_EPM_OBJECT_REGISTRY","features":[533]},{"name":"IE_EPM_OBJECT_SEMAPHORE","features":[533]},{"name":"IE_EPM_OBJECT_SHARED_MEMORY","features":[533]},{"name":"IE_EPM_OBJECT_WAITABLE_TIMER","features":[533]},{"name":"IEncodingFilterFactory","features":[533]},{"name":"IGetBindHandle","features":[533]},{"name":"IHttpNegotiate","features":[533]},{"name":"IHttpNegotiate2","features":[533]},{"name":"IHttpNegotiate3","features":[533]},{"name":"IHttpSecurity","features":[533]},{"name":"IInternet","features":[533]},{"name":"IInternetBindInfo","features":[533]},{"name":"IInternetBindInfoEx","features":[533]},{"name":"IInternetHostSecurityManager","features":[533]},{"name":"IInternetPriority","features":[533]},{"name":"IInternetProtocol","features":[533]},{"name":"IInternetProtocolEx","features":[533]},{"name":"IInternetProtocolInfo","features":[533]},{"name":"IInternetProtocolRoot","features":[533]},{"name":"IInternetProtocolSink","features":[533]},{"name":"IInternetProtocolSinkStackable","features":[533]},{"name":"IInternetSecurityManager","features":[533]},{"name":"IInternetSecurityManagerEx","features":[533]},{"name":"IInternetSecurityManagerEx2","features":[533]},{"name":"IInternetSecurityMgrSite","features":[533]},{"name":"IInternetSession","features":[533]},{"name":"IInternetThreadSwitch","features":[533]},{"name":"IInternetZoneManager","features":[533]},{"name":"IInternetZoneManagerEx","features":[533]},{"name":"IInternetZoneManagerEx2","features":[533]},{"name":"IMonikerProp","features":[533]},{"name":"INET_E_AUTHENTICATION_REQUIRED","features":[533]},{"name":"INET_E_BLOCKED_ENHANCEDPROTECTEDMODE","features":[533]},{"name":"INET_E_BLOCKED_PLUGGABLE_PROTOCOL","features":[533]},{"name":"INET_E_BLOCKED_REDIRECT_XSECURITYID","features":[533]},{"name":"INET_E_CANNOT_CONNECT","features":[533]},{"name":"INET_E_CANNOT_INSTANTIATE_OBJECT","features":[533]},{"name":"INET_E_CANNOT_LOAD_DATA","features":[533]},{"name":"INET_E_CANNOT_LOCK_REQUEST","features":[533]},{"name":"INET_E_CANNOT_REPLACE_SFP_FILE","features":[533]},{"name":"INET_E_CODE_DOWNLOAD_DECLINED","features":[533]},{"name":"INET_E_CODE_INSTALL_BLOCKED_ARM","features":[533]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BITNESS","features":[533]},{"name":"INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY","features":[533]},{"name":"INET_E_CODE_INSTALL_BLOCKED_IMMERSIVE","features":[533]},{"name":"INET_E_CODE_INSTALL_SUPPRESSED","features":[533]},{"name":"INET_E_CONNECTION_TIMEOUT","features":[533]},{"name":"INET_E_DATA_NOT_AVAILABLE","features":[533]},{"name":"INET_E_DEFAULT_ACTION","features":[533]},{"name":"INET_E_DOMINJECTIONVALIDATION","features":[533]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_CSP","features":[533]},{"name":"INET_E_DOWNLOAD_BLOCKED_BY_INPRIVATE","features":[533]},{"name":"INET_E_DOWNLOAD_FAILURE","features":[533]},{"name":"INET_E_ERROR_FIRST","features":[533]},{"name":"INET_E_ERROR_LAST","features":[533]},{"name":"INET_E_FORBIDFRAMING","features":[533]},{"name":"INET_E_HSTS_CERTIFICATE_ERROR","features":[533]},{"name":"INET_E_INVALID_CERTIFICATE","features":[533]},{"name":"INET_E_INVALID_REQUEST","features":[533]},{"name":"INET_E_INVALID_URL","features":[533]},{"name":"INET_E_NO_SESSION","features":[533]},{"name":"INET_E_NO_VALID_MEDIA","features":[533]},{"name":"INET_E_OBJECT_NOT_FOUND","features":[533]},{"name":"INET_E_QUERYOPTION_UNKNOWN","features":[533]},{"name":"INET_E_REDIRECTING","features":[533]},{"name":"INET_E_REDIRECT_FAILED","features":[533]},{"name":"INET_E_REDIRECT_TO_DIR","features":[533]},{"name":"INET_E_RESERVED_1","features":[533]},{"name":"INET_E_RESERVED_2","features":[533]},{"name":"INET_E_RESERVED_3","features":[533]},{"name":"INET_E_RESERVED_4","features":[533]},{"name":"INET_E_RESERVED_5","features":[533]},{"name":"INET_E_RESOURCE_NOT_FOUND","features":[533]},{"name":"INET_E_RESULT_DISPATCHED","features":[533]},{"name":"INET_E_SECURITY_PROBLEM","features":[533]},{"name":"INET_E_TERMINATED_BIND","features":[533]},{"name":"INET_E_UNKNOWN_PROTOCOL","features":[533]},{"name":"INET_E_USE_DEFAULT_PROTOCOLHANDLER","features":[533]},{"name":"INET_E_USE_DEFAULT_SETTING","features":[533]},{"name":"INET_E_USE_EXTEND_BINDING","features":[533]},{"name":"INET_E_VTAB_SWITCH_FORCE_ENGINE","features":[533]},{"name":"INET_ZONE_MANAGER_CONSTANTS","features":[533]},{"name":"INTERNETFEATURELIST","features":[533]},{"name":"IPersistMoniker","features":[533]},{"name":"ISoftDistExt","features":[533]},{"name":"IUriBuilderFactory","features":[533]},{"name":"IUriContainer","features":[533]},{"name":"IWinInetCacheHints","features":[533]},{"name":"IWinInetCacheHints2","features":[533]},{"name":"IWinInetFileStream","features":[533]},{"name":"IWinInetHttpInfo","features":[533]},{"name":"IWinInetHttpTimeouts","features":[533]},{"name":"IWinInetInfo","features":[533]},{"name":"IWindowForBindingUI","features":[533]},{"name":"IWrappedProtocol","features":[533]},{"name":"IZoneIdentifier","features":[533]},{"name":"IZoneIdentifier2","features":[533]},{"name":"IsAsyncMoniker","features":[533]},{"name":"IsLoggingEnabledA","features":[305,533]},{"name":"IsLoggingEnabledW","features":[305,533]},{"name":"IsValidURL","features":[533]},{"name":"MAX_SIZE_SECURITY_ID","features":[533]},{"name":"MAX_ZONE_DESCRIPTION","features":[533]},{"name":"MAX_ZONE_PATH","features":[533]},{"name":"MIMETYPEPROP","features":[533]},{"name":"MKSYS_URLMONIKER","features":[533]},{"name":"MK_S_ASYNCHRONOUS","features":[533]},{"name":"MONIKERPROPERTY","features":[533]},{"name":"MUTZ_ACCEPT_WILDCARD_SCHEME","features":[533]},{"name":"MUTZ_DONT_UNESCAPE","features":[533]},{"name":"MUTZ_DONT_USE_CACHE","features":[533]},{"name":"MUTZ_ENFORCERESTRICTED","features":[533]},{"name":"MUTZ_FORCE_INTRANET_FLAGS","features":[533]},{"name":"MUTZ_IGNORE_ZONE_MAPPINGS","features":[533]},{"name":"MUTZ_ISFILE","features":[533]},{"name":"MUTZ_NOSAVEDFILECHECK","features":[533]},{"name":"MUTZ_REQUIRESAVEDFILECHECK","features":[533]},{"name":"MUTZ_RESERVED","features":[533]},{"name":"MkParseDisplayNameEx","features":[533]},{"name":"OIBDG_APARTMENTTHREADED","features":[533]},{"name":"OIBDG_DATAONLY","features":[533]},{"name":"OIBDG_FLAGS","features":[533]},{"name":"ObtainUserAgentString","features":[533]},{"name":"PARSEACTION","features":[533]},{"name":"PARSE_ANCHOR","features":[533]},{"name":"PARSE_CANONICALIZE","features":[533]},{"name":"PARSE_DECODE_IS_ESCAPE","features":[533]},{"name":"PARSE_DOCUMENT","features":[533]},{"name":"PARSE_DOMAIN","features":[533]},{"name":"PARSE_ENCODE_IS_UNESCAPE","features":[533]},{"name":"PARSE_ESCAPE","features":[533]},{"name":"PARSE_FRIENDLY","features":[533]},{"name":"PARSE_LOCATION","features":[533]},{"name":"PARSE_MIME","features":[533]},{"name":"PARSE_PATH_FROM_URL","features":[533]},{"name":"PARSE_ROOTDOCUMENT","features":[533]},{"name":"PARSE_SCHEMA","features":[533]},{"name":"PARSE_SECURITY_DOMAIN","features":[533]},{"name":"PARSE_SECURITY_URL","features":[533]},{"name":"PARSE_SERVER","features":[533]},{"name":"PARSE_SITE","features":[533]},{"name":"PARSE_UNESCAPE","features":[533]},{"name":"PARSE_URL_FROM_PATH","features":[533]},{"name":"PD_FORCE_SWITCH","features":[533]},{"name":"PI_APARTMENTTHREADED","features":[533]},{"name":"PI_CLASSINSTALL","features":[533]},{"name":"PI_CLSIDLOOKUP","features":[533]},{"name":"PI_DATAPROGRESS","features":[533]},{"name":"PI_FILTER_MODE","features":[533]},{"name":"PI_FLAGS","features":[533]},{"name":"PI_FORCE_ASYNC","features":[533]},{"name":"PI_LOADAPPDIRECT","features":[533]},{"name":"PI_MIMEVERIFICATION","features":[533]},{"name":"PI_NOMIMEHANDLER","features":[533]},{"name":"PI_PARSE_URL","features":[533]},{"name":"PI_PASSONBINDCTX","features":[533]},{"name":"PI_PREFERDEFAULTHANDLER","features":[533]},{"name":"PI_SYNCHRONOUS","features":[533]},{"name":"PI_USE_WORKERTHREAD","features":[533]},{"name":"POPUPLEVELPROP","features":[533]},{"name":"PROTOCOLDATA","features":[533]},{"name":"PROTOCOLFILTERDATA","features":[533]},{"name":"PROTOCOLFLAG_NO_PICS_CHECK","features":[533]},{"name":"PROTOCOL_ARGUMENT","features":[533]},{"name":"PSUACTION","features":[533]},{"name":"PSU_DEFAULT","features":[533]},{"name":"PSU_SECURITY_URL_ONLY","features":[533]},{"name":"PUAF","features":[533]},{"name":"PUAFOUT","features":[533]},{"name":"PUAFOUT_DEFAULT","features":[533]},{"name":"PUAFOUT_ISLOCKZONEPOLICY","features":[533]},{"name":"PUAF_ACCEPT_WILDCARD_SCHEME","features":[533]},{"name":"PUAF_CHECK_TIFS","features":[533]},{"name":"PUAF_DEFAULT","features":[533]},{"name":"PUAF_DEFAULTZONEPOL","features":[533]},{"name":"PUAF_DONTCHECKBOXINDIALOG","features":[533]},{"name":"PUAF_DONT_USE_CACHE","features":[533]},{"name":"PUAF_DRAGPROTOCOLCHECK","features":[533]},{"name":"PUAF_ENFORCERESTRICTED","features":[533]},{"name":"PUAF_FORCEUI_FOREGROUND","features":[533]},{"name":"PUAF_ISFILE","features":[533]},{"name":"PUAF_LMZ_LOCKED","features":[533]},{"name":"PUAF_LMZ_UNLOCKED","features":[533]},{"name":"PUAF_NOSAVEDFILECHECK","features":[533]},{"name":"PUAF_NOUI","features":[533]},{"name":"PUAF_NOUIIFLOCKED","features":[533]},{"name":"PUAF_NPL_USE_LOCKED_IF_RESTRICTED","features":[533]},{"name":"PUAF_REQUIRESAVEDFILECHECK","features":[533]},{"name":"PUAF_RESERVED1","features":[533]},{"name":"PUAF_RESERVED2","features":[533]},{"name":"PUAF_TRUSTED","features":[533]},{"name":"PUAF_WARN_IF_DENIED","features":[533]},{"name":"QUERYOPTION","features":[533]},{"name":"QUERY_CAN_NAVIGATE","features":[533]},{"name":"QUERY_CONTENT_ENCODING","features":[533]},{"name":"QUERY_CONTENT_TYPE","features":[533]},{"name":"QUERY_EXPIRATION_DATE","features":[533]},{"name":"QUERY_IS_CACHED","features":[533]},{"name":"QUERY_IS_CACHED_AND_USABLE_OFFLINE","features":[533]},{"name":"QUERY_IS_CACHED_OR_MAPPED","features":[533]},{"name":"QUERY_IS_INSTALLEDENTRY","features":[533]},{"name":"QUERY_IS_SAFE","features":[533]},{"name":"QUERY_IS_SECURE","features":[533]},{"name":"QUERY_RECOMBINE","features":[533]},{"name":"QUERY_REFRESH","features":[533]},{"name":"QUERY_TIME_OF_LAST_CHANGE","features":[533]},{"name":"QUERY_USES_CACHE","features":[533]},{"name":"QUERY_USES_HISTORYFOLDER","features":[533]},{"name":"QUERY_USES_NETWORK","features":[533]},{"name":"REMSECURITY_ATTRIBUTES","features":[305,533]},{"name":"RegisterBindStatusCallback","features":[533]},{"name":"RegisterFormatEnumerator","features":[533]},{"name":"RegisterMediaTypeClass","features":[533]},{"name":"RegisterMediaTypes","features":[533]},{"name":"ReleaseBindInfo","features":[305,316,308,429,533]},{"name":"RemBINDINFO","features":[305,533]},{"name":"RemFORMATETC","features":[533]},{"name":"RevokeBindStatusCallback","features":[533]},{"name":"RevokeFormatEnumerator","features":[533]},{"name":"SECURITY_IE_STATE_GREEN","features":[533]},{"name":"SECURITY_IE_STATE_RED","features":[533]},{"name":"SET_FEATURE_IN_REGISTRY","features":[533]},{"name":"SET_FEATURE_ON_PROCESS","features":[533]},{"name":"SET_FEATURE_ON_THREAD","features":[533]},{"name":"SET_FEATURE_ON_THREAD_INTERNET","features":[533]},{"name":"SET_FEATURE_ON_THREAD_INTRANET","features":[533]},{"name":"SET_FEATURE_ON_THREAD_LOCALMACHINE","features":[533]},{"name":"SET_FEATURE_ON_THREAD_RESTRICTED","features":[533]},{"name":"SET_FEATURE_ON_THREAD_TRUSTED","features":[533]},{"name":"SOFTDISTINFO","features":[533]},{"name":"SOFTDIST_ADSTATE_AVAILABLE","features":[533]},{"name":"SOFTDIST_ADSTATE_DOWNLOADED","features":[533]},{"name":"SOFTDIST_ADSTATE_INSTALLED","features":[533]},{"name":"SOFTDIST_ADSTATE_NONE","features":[533]},{"name":"SOFTDIST_FLAG_DELETE_SUBSCRIPTION","features":[533]},{"name":"SOFTDIST_FLAG_USAGE_AUTOINSTALL","features":[533]},{"name":"SOFTDIST_FLAG_USAGE_EMAIL","features":[533]},{"name":"SOFTDIST_FLAG_USAGE_PRECACHE","features":[533]},{"name":"SZM_CREATE","features":[533]},{"name":"SZM_DELETE","features":[533]},{"name":"SZM_FLAGS","features":[533]},{"name":"S_ASYNCHRONOUS","features":[533]},{"name":"SetAccessForIEAppContainer","features":[305,533]},{"name":"SetSoftwareUpdateAdvertisementState","features":[533]},{"name":"StartParam","features":[533]},{"name":"TRUSTEDDOWNLOADPROP","features":[533]},{"name":"UAS_EXACTLEGACY","features":[533]},{"name":"URLACTION_ACTIVEX_ALLOW_TDC","features":[533]},{"name":"URLACTION_ACTIVEX_CONFIRM_NOOBJECTSAFETY","features":[533]},{"name":"URLACTION_ACTIVEX_CURR_MAX","features":[533]},{"name":"URLACTION_ACTIVEX_DYNSRC_VIDEO_AND_ANIMATION","features":[533]},{"name":"URLACTION_ACTIVEX_MAX","features":[533]},{"name":"URLACTION_ACTIVEX_MIN","features":[533]},{"name":"URLACTION_ACTIVEX_NO_WEBOC_SCRIPT","features":[533]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DATA_SAFETY","features":[533]},{"name":"URLACTION_ACTIVEX_OVERRIDE_DOMAINLIST","features":[533]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OBJECT_SAFETY","features":[533]},{"name":"URLACTION_ACTIVEX_OVERRIDE_OPTIN","features":[533]},{"name":"URLACTION_ACTIVEX_OVERRIDE_REPURPOSEDETECTION","features":[533]},{"name":"URLACTION_ACTIVEX_OVERRIDE_SCRIPT_SAFETY","features":[533]},{"name":"URLACTION_ACTIVEX_RUN","features":[533]},{"name":"URLACTION_ACTIVEX_SCRIPTLET_RUN","features":[533]},{"name":"URLACTION_ACTIVEX_TREATASUNTRUSTED","features":[533]},{"name":"URLACTION_ALLOW_ACTIVEX_FILTERING","features":[533]},{"name":"URLACTION_ALLOW_ANTIMALWARE_SCANNING_OF_ACTIVEX","features":[533]},{"name":"URLACTION_ALLOW_APEVALUATION","features":[533]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO","features":[533]},{"name":"URLACTION_ALLOW_AUDIO_VIDEO_PLUGINS","features":[533]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_APPCACHE_MANIFEST","features":[533]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_ACROSS_WINDOWS","features":[533]},{"name":"URLACTION_ALLOW_CROSSDOMAIN_DROP_WITHIN_WINDOW","features":[533]},{"name":"URLACTION_ALLOW_CSS_EXPRESSIONS","features":[533]},{"name":"URLACTION_ALLOW_JSCRIPT_IE","features":[533]},{"name":"URLACTION_ALLOW_RENDER_LEGACY_DXTFILTERS","features":[533]},{"name":"URLACTION_ALLOW_RESTRICTEDPROTOCOLS","features":[533]},{"name":"URLACTION_ALLOW_STRUCTURED_STORAGE_SNIFFING","features":[533]},{"name":"URLACTION_ALLOW_VBSCRIPT_IE","features":[533]},{"name":"URLACTION_ALLOW_XDOMAIN_SUBFRAME_RESIZE","features":[533]},{"name":"URLACTION_ALLOW_XHR_EVALUATION","features":[533]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_OPT_OUT_ADDITION","features":[533]},{"name":"URLACTION_ALLOW_ZONE_ELEVATION_VIA_OPT_OUT","features":[533]},{"name":"URLACTION_AUTHENTICATE_CLIENT","features":[533]},{"name":"URLACTION_AUTOMATIC_ACTIVEX_UI","features":[533]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI","features":[533]},{"name":"URLACTION_AUTOMATIC_DOWNLOAD_UI_MIN","features":[533]},{"name":"URLACTION_BEHAVIOR_MIN","features":[533]},{"name":"URLACTION_BEHAVIOR_RUN","features":[533]},{"name":"URLACTION_CHANNEL_SOFTDIST_MAX","features":[533]},{"name":"URLACTION_CHANNEL_SOFTDIST_MIN","features":[533]},{"name":"URLACTION_CHANNEL_SOFTDIST_PERMISSIONS","features":[533]},{"name":"URLACTION_CLIENT_CERT_PROMPT","features":[533]},{"name":"URLACTION_COOKIES","features":[533]},{"name":"URLACTION_COOKIES_ENABLED","features":[533]},{"name":"URLACTION_COOKIES_SESSION","features":[533]},{"name":"URLACTION_COOKIES_SESSION_THIRD_PARTY","features":[533]},{"name":"URLACTION_COOKIES_THIRD_PARTY","features":[533]},{"name":"URLACTION_CREDENTIALS_USE","features":[533]},{"name":"URLACTION_CROSS_DOMAIN_DATA","features":[533]},{"name":"URLACTION_DOTNET_USERCONTROLS","features":[533]},{"name":"URLACTION_DOWNLOAD_CURR_MAX","features":[533]},{"name":"URLACTION_DOWNLOAD_MAX","features":[533]},{"name":"URLACTION_DOWNLOAD_MIN","features":[533]},{"name":"URLACTION_DOWNLOAD_SIGNED_ACTIVEX","features":[533]},{"name":"URLACTION_DOWNLOAD_UNSIGNED_ACTIVEX","features":[533]},{"name":"URLACTION_FEATURE_BLOCK_INPUT_PROMPTS","features":[533]},{"name":"URLACTION_FEATURE_CROSSDOMAIN_FOCUS_CHANGE","features":[533]},{"name":"URLACTION_FEATURE_DATA_BINDING","features":[533]},{"name":"URLACTION_FEATURE_FORCE_ADDR_AND_STATUS","features":[533]},{"name":"URLACTION_FEATURE_MIME_SNIFFING","features":[533]},{"name":"URLACTION_FEATURE_MIN","features":[533]},{"name":"URLACTION_FEATURE_SCRIPT_STATUS_BAR","features":[533]},{"name":"URLACTION_FEATURE_WINDOW_RESTRICTIONS","features":[533]},{"name":"URLACTION_FEATURE_ZONE_ELEVATION","features":[533]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_CANVAS","features":[533]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_TEXTTRACK","features":[533]},{"name":"URLACTION_HTML_ALLOW_CROSS_DOMAIN_WEBWORKER","features":[533]},{"name":"URLACTION_HTML_ALLOW_INDEXEDDB","features":[533]},{"name":"URLACTION_HTML_ALLOW_INJECTED_DYNAMIC_HTML","features":[533]},{"name":"URLACTION_HTML_ALLOW_WINDOW_CLOSE","features":[533]},{"name":"URLACTION_HTML_FONT_DOWNLOAD","features":[533]},{"name":"URLACTION_HTML_INCLUDE_FILE_PATH","features":[533]},{"name":"URLACTION_HTML_JAVA_RUN","features":[533]},{"name":"URLACTION_HTML_MAX","features":[533]},{"name":"URLACTION_HTML_META_REFRESH","features":[533]},{"name":"URLACTION_HTML_MIN","features":[533]},{"name":"URLACTION_HTML_MIXED_CONTENT","features":[533]},{"name":"URLACTION_HTML_REQUIRE_UTF8_DOCUMENT_CODEPAGE","features":[533]},{"name":"URLACTION_HTML_SUBFRAME_NAVIGATE","features":[533]},{"name":"URLACTION_HTML_SUBMIT_FORMS","features":[533]},{"name":"URLACTION_HTML_SUBMIT_FORMS_FROM","features":[533]},{"name":"URLACTION_HTML_SUBMIT_FORMS_TO","features":[533]},{"name":"URLACTION_HTML_USERDATA_SAVE","features":[533]},{"name":"URLACTION_INFODELIVERY_CURR_MAX","features":[533]},{"name":"URLACTION_INFODELIVERY_MAX","features":[533]},{"name":"URLACTION_INFODELIVERY_MIN","features":[533]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_CHANNELS","features":[533]},{"name":"URLACTION_INFODELIVERY_NO_ADDING_SUBSCRIPTIONS","features":[533]},{"name":"URLACTION_INFODELIVERY_NO_CHANNEL_LOGGING","features":[533]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_CHANNELS","features":[533]},{"name":"URLACTION_INFODELIVERY_NO_EDITING_SUBSCRIPTIONS","features":[533]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_CHANNELS","features":[533]},{"name":"URLACTION_INFODELIVERY_NO_REMOVING_SUBSCRIPTIONS","features":[533]},{"name":"URLACTION_INPRIVATE_BLOCKING","features":[533]},{"name":"URLACTION_JAVA_CURR_MAX","features":[533]},{"name":"URLACTION_JAVA_MAX","features":[533]},{"name":"URLACTION_JAVA_MIN","features":[533]},{"name":"URLACTION_JAVA_PERMISSIONS","features":[533]},{"name":"URLACTION_LOOSE_XAML","features":[533]},{"name":"URLACTION_LOWRIGHTS","features":[533]},{"name":"URLACTION_MIN","features":[533]},{"name":"URLACTION_NETWORK_CURR_MAX","features":[533]},{"name":"URLACTION_NETWORK_MAX","features":[533]},{"name":"URLACTION_NETWORK_MIN","features":[533]},{"name":"URLACTION_PLUGGABLE_PROTOCOL_XHR","features":[533]},{"name":"URLACTION_SCRIPT_CURR_MAX","features":[533]},{"name":"URLACTION_SCRIPT_JAVA_USE","features":[533]},{"name":"URLACTION_SCRIPT_MAX","features":[533]},{"name":"URLACTION_SCRIPT_MIN","features":[533]},{"name":"URLACTION_SCRIPT_NAVIGATE","features":[533]},{"name":"URLACTION_SCRIPT_OVERRIDE_SAFETY","features":[533]},{"name":"URLACTION_SCRIPT_PASTE","features":[533]},{"name":"URLACTION_SCRIPT_RUN","features":[533]},{"name":"URLACTION_SCRIPT_SAFE_ACTIVEX","features":[533]},{"name":"URLACTION_SCRIPT_XSSFILTER","features":[533]},{"name":"URLACTION_SHELL_ALLOW_CROSS_SITE_SHARE","features":[533]},{"name":"URLACTION_SHELL_CURR_MAX","features":[533]},{"name":"URLACTION_SHELL_ENHANCED_DRAGDROP_SECURITY","features":[533]},{"name":"URLACTION_SHELL_EXECUTE_HIGHRISK","features":[533]},{"name":"URLACTION_SHELL_EXECUTE_LOWRISK","features":[533]},{"name":"URLACTION_SHELL_EXECUTE_MODRISK","features":[533]},{"name":"URLACTION_SHELL_EXTENSIONSECURITY","features":[533]},{"name":"URLACTION_SHELL_FILE_DOWNLOAD","features":[533]},{"name":"URLACTION_SHELL_INSTALL_DTITEMS","features":[533]},{"name":"URLACTION_SHELL_MAX","features":[533]},{"name":"URLACTION_SHELL_MIN","features":[533]},{"name":"URLACTION_SHELL_MOVE_OR_COPY","features":[533]},{"name":"URLACTION_SHELL_POPUPMGR","features":[533]},{"name":"URLACTION_SHELL_PREVIEW","features":[533]},{"name":"URLACTION_SHELL_REMOTEQUERY","features":[533]},{"name":"URLACTION_SHELL_RTF_OBJECTS_LOAD","features":[533]},{"name":"URLACTION_SHELL_SECURE_DRAGSOURCE","features":[533]},{"name":"URLACTION_SHELL_SHARE","features":[533]},{"name":"URLACTION_SHELL_SHELLEXECUTE","features":[533]},{"name":"URLACTION_SHELL_TOCTOU_RISK","features":[533]},{"name":"URLACTION_SHELL_VERB","features":[533]},{"name":"URLACTION_SHELL_WEBVIEW_VERB","features":[533]},{"name":"URLACTION_WINDOWS_BROWSER_APPLICATIONS","features":[533]},{"name":"URLACTION_WINFX_SETUP","features":[533]},{"name":"URLACTION_XPS_DOCUMENTS","features":[533]},{"name":"URLDownloadToCacheFileA","features":[533]},{"name":"URLDownloadToCacheFileW","features":[533]},{"name":"URLDownloadToFileA","features":[533]},{"name":"URLDownloadToFileW","features":[533]},{"name":"URLMON_OPTION_URL_ENCODING","features":[533]},{"name":"URLMON_OPTION_USERAGENT","features":[533]},{"name":"URLMON_OPTION_USERAGENT_REFRESH","features":[533]},{"name":"URLMON_OPTION_USE_BINDSTRINGCREDS","features":[533]},{"name":"URLMON_OPTION_USE_BROWSERAPPSDOCUMENTS","features":[533]},{"name":"URLOSTRM_GETNEWESTVERSION","features":[533]},{"name":"URLOSTRM_USECACHEDCOPY","features":[533]},{"name":"URLOSTRM_USECACHEDCOPY_ONLY","features":[533]},{"name":"URLOpenBlockingStreamA","features":[533]},{"name":"URLOpenBlockingStreamW","features":[533]},{"name":"URLOpenPullStreamA","features":[533]},{"name":"URLOpenPullStreamW","features":[533]},{"name":"URLOpenStreamA","features":[533]},{"name":"URLOpenStreamW","features":[533]},{"name":"URLPOLICY_ACTIVEX_CHECK_LIST","features":[533]},{"name":"URLPOLICY_ALLOW","features":[533]},{"name":"URLPOLICY_AUTHENTICATE_CHALLENGE_RESPONSE","features":[533]},{"name":"URLPOLICY_AUTHENTICATE_CLEARTEXT_OK","features":[533]},{"name":"URLPOLICY_AUTHENTICATE_MUTUAL_ONLY","features":[533]},{"name":"URLPOLICY_BEHAVIOR_CHECK_LIST","features":[533]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_AUTOINSTALL","features":[533]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PRECACHE","features":[533]},{"name":"URLPOLICY_CHANNEL_SOFTDIST_PROHIBIT","features":[533]},{"name":"URLPOLICY_CREDENTIALS_ANONYMOUS_ONLY","features":[533]},{"name":"URLPOLICY_CREDENTIALS_CONDITIONAL_PROMPT","features":[533]},{"name":"URLPOLICY_CREDENTIALS_MUST_PROMPT_USER","features":[533]},{"name":"URLPOLICY_CREDENTIALS_SILENT_LOGON_OK","features":[533]},{"name":"URLPOLICY_DISALLOW","features":[533]},{"name":"URLPOLICY_DONTCHECKDLGBOX","features":[533]},{"name":"URLPOLICY_JAVA_CUSTOM","features":[533]},{"name":"URLPOLICY_JAVA_HIGH","features":[533]},{"name":"URLPOLICY_JAVA_LOW","features":[533]},{"name":"URLPOLICY_JAVA_MEDIUM","features":[533]},{"name":"URLPOLICY_JAVA_PROHIBIT","features":[533]},{"name":"URLPOLICY_LOG_ON_ALLOW","features":[533]},{"name":"URLPOLICY_LOG_ON_DISALLOW","features":[533]},{"name":"URLPOLICY_MASK_PERMISSIONS","features":[533]},{"name":"URLPOLICY_NOTIFY_ON_ALLOW","features":[533]},{"name":"URLPOLICY_NOTIFY_ON_DISALLOW","features":[533]},{"name":"URLPOLICY_QUERY","features":[533]},{"name":"URLTEMPLATE","features":[533]},{"name":"URLTEMPLATE_CUSTOM","features":[533]},{"name":"URLTEMPLATE_HIGH","features":[533]},{"name":"URLTEMPLATE_LOW","features":[533]},{"name":"URLTEMPLATE_MEDHIGH","features":[533]},{"name":"URLTEMPLATE_MEDIUM","features":[533]},{"name":"URLTEMPLATE_MEDLOW","features":[533]},{"name":"URLTEMPLATE_PREDEFINED_MAX","features":[533]},{"name":"URLTEMPLATE_PREDEFINED_MIN","features":[533]},{"name":"URLZONE","features":[533]},{"name":"URLZONEREG","features":[533]},{"name":"URLZONEREG_DEFAULT","features":[533]},{"name":"URLZONEREG_HKCU","features":[533]},{"name":"URLZONEREG_HKLM","features":[533]},{"name":"URLZONE_ESC_FLAG","features":[533]},{"name":"URLZONE_INTERNET","features":[533]},{"name":"URLZONE_INTRANET","features":[533]},{"name":"URLZONE_INVALID","features":[533]},{"name":"URLZONE_LOCAL_MACHINE","features":[533]},{"name":"URLZONE_PREDEFINED_MAX","features":[533]},{"name":"URLZONE_PREDEFINED_MIN","features":[533]},{"name":"URLZONE_TRUSTED","features":[533]},{"name":"URLZONE_UNTRUSTED","features":[533]},{"name":"URLZONE_USER_MAX","features":[533]},{"name":"URLZONE_USER_MIN","features":[533]},{"name":"URL_ENCODING","features":[533]},{"name":"URL_ENCODING_DISABLE_UTF8","features":[533]},{"name":"URL_ENCODING_ENABLE_UTF8","features":[533]},{"name":"URL_ENCODING_NONE","features":[533]},{"name":"URL_MK_LEGACY","features":[533]},{"name":"URL_MK_NO_CANONICALIZE","features":[533]},{"name":"URL_MK_UNIFORM","features":[533]},{"name":"USE_SRC_URL","features":[533]},{"name":"UriBuilder_USE_ORIGINAL_FLAGS","features":[533]},{"name":"Uri_DISPLAY_IDN_HOST","features":[533]},{"name":"Uri_DISPLAY_NO_FRAGMENT","features":[533]},{"name":"Uri_DISPLAY_NO_PUNYCODE","features":[533]},{"name":"Uri_ENCODING_HOST_IS_IDN","features":[533]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_CP","features":[533]},{"name":"Uri_ENCODING_HOST_IS_PERCENT_ENCODED_UTF8","features":[533]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_CP","features":[533]},{"name":"Uri_ENCODING_QUERY_AND_FRAGMENT_IS_PERCENT_ENCODED_UTF8","features":[533]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_CP","features":[533]},{"name":"Uri_ENCODING_USER_INFO_AND_PATH_IS_PERCENT_ENCODED_UTF8","features":[533]},{"name":"Uri_HOST_DNS","features":[533]},{"name":"Uri_HOST_IDN","features":[533]},{"name":"Uri_HOST_IPV4","features":[533]},{"name":"Uri_HOST_IPV6","features":[533]},{"name":"Uri_HOST_TYPE","features":[533]},{"name":"Uri_HOST_UNKNOWN","features":[533]},{"name":"Uri_PUNYCODE_IDN_HOST","features":[533]},{"name":"UrlMkGetSessionOption","features":[533]},{"name":"UrlMkSetSessionOption","features":[533]},{"name":"WININETINFO_OPTION_LOCK_HANDLE","features":[533]},{"name":"WriteHitLogging","features":[305,533]},{"name":"ZAFLAGS","features":[533]},{"name":"ZAFLAGS_ADD_SITES","features":[533]},{"name":"ZAFLAGS_CUSTOM_EDIT","features":[533]},{"name":"ZAFLAGS_DETECT_INTRANET","features":[533]},{"name":"ZAFLAGS_INCLUDE_INTRANET_SITES","features":[533]},{"name":"ZAFLAGS_INCLUDE_PROXY_OVERRIDE","features":[533]},{"name":"ZAFLAGS_NO_CACHE","features":[533]},{"name":"ZAFLAGS_NO_UI","features":[533]},{"name":"ZAFLAGS_REQUIRE_VERIFICATION","features":[533]},{"name":"ZAFLAGS_SUPPORTS_VERIFICATION","features":[533]},{"name":"ZAFLAGS_UNC_AS_INTRANET","features":[533]},{"name":"ZAFLAGS_USE_LOCKED_ZONES","features":[533]},{"name":"ZAFLAGS_VERIFY_TEMPLATE_SETTINGS","features":[533]},{"name":"ZONEATTRIBUTES","features":[533]}],"544":[{"name":"APPDATA","features":[534]},{"name":"APPSTATISTICS","features":[534]},{"name":"APPTYPE_LIBRARY","features":[534]},{"name":"APPTYPE_SERVER","features":[534]},{"name":"APPTYPE_SWC","features":[534]},{"name":"APPTYPE_UNKNOWN","features":[534]},{"name":"AppDomainHelper","features":[534]},{"name":"ApplicationProcessRecycleInfo","features":[305,534]},{"name":"ApplicationProcessStatistics","features":[534]},{"name":"ApplicationProcessSummary","features":[305,534]},{"name":"ApplicationSummary","features":[534]},{"name":"AutoSvcs_Error_Constants","features":[534]},{"name":"ByotServerEx","features":[534]},{"name":"CLSIDDATA","features":[534]},{"name":"CLSIDDATA2","features":[534]},{"name":"COMAdmin32BitComponent","features":[534]},{"name":"COMAdmin64BitComponent","features":[534]},{"name":"COMAdminAccessChecksApplicationComponentLevel","features":[534]},{"name":"COMAdminAccessChecksApplicationLevel","features":[534]},{"name":"COMAdminAccessChecksLevelOptions","features":[534]},{"name":"COMAdminActivationInproc","features":[534]},{"name":"COMAdminActivationLocal","features":[534]},{"name":"COMAdminActivationOptions","features":[534]},{"name":"COMAdminApplicationExportOptions","features":[534]},{"name":"COMAdminApplicationInstallOptions","features":[534]},{"name":"COMAdminAuthenticationCall","features":[534]},{"name":"COMAdminAuthenticationCapabilitiesDynamicCloaking","features":[534]},{"name":"COMAdminAuthenticationCapabilitiesNone","features":[534]},{"name":"COMAdminAuthenticationCapabilitiesOptions","features":[534]},{"name":"COMAdminAuthenticationCapabilitiesSecureReference","features":[534]},{"name":"COMAdminAuthenticationCapabilitiesStaticCloaking","features":[534]},{"name":"COMAdminAuthenticationConnect","features":[534]},{"name":"COMAdminAuthenticationDefault","features":[534]},{"name":"COMAdminAuthenticationIntegrity","features":[534]},{"name":"COMAdminAuthenticationLevelOptions","features":[534]},{"name":"COMAdminAuthenticationNone","features":[534]},{"name":"COMAdminAuthenticationPacket","features":[534]},{"name":"COMAdminAuthenticationPrivacy","features":[534]},{"name":"COMAdminCatalog","features":[534]},{"name":"COMAdminCatalogCollection","features":[534]},{"name":"COMAdminCatalogObject","features":[534]},{"name":"COMAdminCompFlagAlreadyInstalled","features":[534]},{"name":"COMAdminCompFlagCOMPlusPropertiesFound","features":[534]},{"name":"COMAdminCompFlagInterfacesFound","features":[534]},{"name":"COMAdminCompFlagNotInApplication","features":[534]},{"name":"COMAdminCompFlagProxyFound","features":[534]},{"name":"COMAdminCompFlagTypeInfoFound","features":[534]},{"name":"COMAdminComponentFlags","features":[534]},{"name":"COMAdminComponentType","features":[534]},{"name":"COMAdminErrAlreadyInstalled","features":[534]},{"name":"COMAdminErrAppDirNotFound","features":[534]},{"name":"COMAdminErrAppFileReadFail","features":[534]},{"name":"COMAdminErrAppFileVersion","features":[534]},{"name":"COMAdminErrAppFileWriteFail","features":[534]},{"name":"COMAdminErrAppNotRunning","features":[534]},{"name":"COMAdminErrApplicationExists","features":[534]},{"name":"COMAdminErrApplidMatchesClsid","features":[534]},{"name":"COMAdminErrAuthenticationLevel","features":[534]},{"name":"COMAdminErrBadPath","features":[534]},{"name":"COMAdminErrBadRegistryLibID","features":[534]},{"name":"COMAdminErrBadRegistryProgID","features":[534]},{"name":"COMAdminErrBasePartitionOnly","features":[534]},{"name":"COMAdminErrCLSIDOrIIDMismatch","features":[534]},{"name":"COMAdminErrCanNotExportAppProxy","features":[534]},{"name":"COMAdminErrCanNotExportSystemApp","features":[534]},{"name":"COMAdminErrCanNotStartApp","features":[534]},{"name":"COMAdminErrCanNotSubscribeToComponent","features":[534]},{"name":"COMAdminErrCannotCopyEventClass","features":[534]},{"name":"COMAdminErrCantCopyFile","features":[534]},{"name":"COMAdminErrCantRecycleLibraryApps","features":[534]},{"name":"COMAdminErrCantRecycleServiceApps","features":[534]},{"name":"COMAdminErrCatBitnessMismatch","features":[534]},{"name":"COMAdminErrCatPauseResumeNotSupported","features":[534]},{"name":"COMAdminErrCatServerFault","features":[534]},{"name":"COMAdminErrCatUnacceptableBitness","features":[534]},{"name":"COMAdminErrCatWrongAppBitnessBitness","features":[534]},{"name":"COMAdminErrCoReqCompInstalled","features":[534]},{"name":"COMAdminErrCompFileBadTLB","features":[534]},{"name":"COMAdminErrCompFileClassNotAvail","features":[534]},{"name":"COMAdminErrCompFileDoesNotExist","features":[534]},{"name":"COMAdminErrCompFileGetClassObj","features":[534]},{"name":"COMAdminErrCompFileLoadDLLFail","features":[534]},{"name":"COMAdminErrCompFileNoRegistrar","features":[534]},{"name":"COMAdminErrCompFileNotInstallable","features":[534]},{"name":"COMAdminErrCompMoveBadDest","features":[534]},{"name":"COMAdminErrCompMoveDest","features":[534]},{"name":"COMAdminErrCompMoveLocked","features":[534]},{"name":"COMAdminErrCompMovePrivate","features":[534]},{"name":"COMAdminErrCompMoveSource","features":[534]},{"name":"COMAdminErrComponentExists","features":[534]},{"name":"COMAdminErrDllLoadFailed","features":[534]},{"name":"COMAdminErrDllRegisterServer","features":[534]},{"name":"COMAdminErrDuplicatePartitionName","features":[534]},{"name":"COMAdminErrEventClassCannotBeSubscriber","features":[534]},{"name":"COMAdminErrImportedComponentsNotAllowed","features":[534]},{"name":"COMAdminErrInvalidPartition","features":[534]},{"name":"COMAdminErrInvalidUserids","features":[534]},{"name":"COMAdminErrKeyMissing","features":[534]},{"name":"COMAdminErrLibAppProxyIncompatible","features":[534]},{"name":"COMAdminErrMigSchemaNotFound","features":[534]},{"name":"COMAdminErrMigVersionNotSupported","features":[534]},{"name":"COMAdminErrNoRegistryCLSID","features":[534]},{"name":"COMAdminErrNoServerShare","features":[534]},{"name":"COMAdminErrNoUser","features":[534]},{"name":"COMAdminErrNotChangeable","features":[534]},{"name":"COMAdminErrNotDeletable","features":[534]},{"name":"COMAdminErrNotInRegistry","features":[534]},{"name":"COMAdminErrObjectDoesNotExist","features":[534]},{"name":"COMAdminErrObjectErrors","features":[534]},{"name":"COMAdminErrObjectExists","features":[534]},{"name":"COMAdminErrObjectInvalid","features":[534]},{"name":"COMAdminErrObjectNotPoolable","features":[534]},{"name":"COMAdminErrObjectParentMissing","features":[534]},{"name":"COMAdminErrPartitionInUse","features":[534]},{"name":"COMAdminErrPartitionMsiOnly","features":[534]},{"name":"COMAdminErrPausedProcessMayNotBeRecycled","features":[534]},{"name":"COMAdminErrProcessAlreadyRecycled","features":[534]},{"name":"COMAdminErrPropertyOverflow","features":[534]},{"name":"COMAdminErrPropertySaveFailed","features":[534]},{"name":"COMAdminErrQueuingServiceNotAvailable","features":[534]},{"name":"COMAdminErrRegFileCorrupt","features":[534]},{"name":"COMAdminErrRegdbAlreadyRunning","features":[534]},{"name":"COMAdminErrRegdbNotInitialized","features":[534]},{"name":"COMAdminErrRegdbNotOpen","features":[534]},{"name":"COMAdminErrRegdbSystemErr","features":[534]},{"name":"COMAdminErrRegisterTLB","features":[534]},{"name":"COMAdminErrRegistrarFailed","features":[534]},{"name":"COMAdminErrRemoteInterface","features":[534]},{"name":"COMAdminErrRequiresDifferentPlatform","features":[534]},{"name":"COMAdminErrRoleDoesNotExist","features":[534]},{"name":"COMAdminErrRoleExists","features":[534]},{"name":"COMAdminErrServiceNotInstalled","features":[534]},{"name":"COMAdminErrSession","features":[534]},{"name":"COMAdminErrStartAppDisabled","features":[534]},{"name":"COMAdminErrStartAppNeedsComponents","features":[534]},{"name":"COMAdminErrSystemApp","features":[534]},{"name":"COMAdminErrUserPasswdNotValid","features":[534]},{"name":"COMAdminErrorCodes","features":[534]},{"name":"COMAdminExportApplicationProxy","features":[534]},{"name":"COMAdminExportForceOverwriteOfFiles","features":[534]},{"name":"COMAdminExportIn10Format","features":[534]},{"name":"COMAdminExportNoUsers","features":[534]},{"name":"COMAdminExportUsers","features":[534]},{"name":"COMAdminFileFlagAlreadyInstalled","features":[534]},{"name":"COMAdminFileFlagBadTLB","features":[534]},{"name":"COMAdminFileFlagCOM","features":[534]},{"name":"COMAdminFileFlagClassNotAvailable","features":[534]},{"name":"COMAdminFileFlagContainsComp","features":[534]},{"name":"COMAdminFileFlagContainsPS","features":[534]},{"name":"COMAdminFileFlagContainsTLB","features":[534]},{"name":"COMAdminFileFlagDLLRegsvrFailed","features":[534]},{"name":"COMAdminFileFlagDoesNotExist","features":[534]},{"name":"COMAdminFileFlagError","features":[534]},{"name":"COMAdminFileFlagGetClassObjFailed","features":[534]},{"name":"COMAdminFileFlagLoadable","features":[534]},{"name":"COMAdminFileFlagNoRegistrar","features":[534]},{"name":"COMAdminFileFlagRegTLBFailed","features":[534]},{"name":"COMAdminFileFlagRegistrar","features":[534]},{"name":"COMAdminFileFlagRegistrarFailed","features":[534]},{"name":"COMAdminFileFlagSelfReg","features":[534]},{"name":"COMAdminFileFlagSelfUnReg","features":[534]},{"name":"COMAdminFileFlagUnloadableDLL","features":[534]},{"name":"COMAdminFileFlags","features":[534]},{"name":"COMAdminImpersonationAnonymous","features":[534]},{"name":"COMAdminImpersonationDelegate","features":[534]},{"name":"COMAdminImpersonationIdentify","features":[534]},{"name":"COMAdminImpersonationImpersonate","features":[534]},{"name":"COMAdminImpersonationLevelOptions","features":[534]},{"name":"COMAdminInUse","features":[534]},{"name":"COMAdminInUseByCatalog","features":[534]},{"name":"COMAdminInUseByRegistryClsid","features":[534]},{"name":"COMAdminInUseByRegistryProxyStub","features":[534]},{"name":"COMAdminInUseByRegistryTypeLib","features":[534]},{"name":"COMAdminInUseByRegistryUnknown","features":[534]},{"name":"COMAdminInstallForceOverwriteOfFiles","features":[534]},{"name":"COMAdminInstallNoUsers","features":[534]},{"name":"COMAdminInstallUsers","features":[534]},{"name":"COMAdminNotInUse","features":[534]},{"name":"COMAdminOS","features":[534]},{"name":"COMAdminOSNotInitialized","features":[534]},{"name":"COMAdminOSUnknown","features":[534]},{"name":"COMAdminOSWindows2000","features":[534]},{"name":"COMAdminOSWindows2000AdvancedServer","features":[534]},{"name":"COMAdminOSWindows2000Unknown","features":[534]},{"name":"COMAdminOSWindows3_1","features":[534]},{"name":"COMAdminOSWindows7DatacenterServer","features":[534]},{"name":"COMAdminOSWindows7EnterpriseServer","features":[534]},{"name":"COMAdminOSWindows7Personal","features":[534]},{"name":"COMAdminOSWindows7Professional","features":[534]},{"name":"COMAdminOSWindows7StandardServer","features":[534]},{"name":"COMAdminOSWindows7WebServer","features":[534]},{"name":"COMAdminOSWindows8DatacenterServer","features":[534]},{"name":"COMAdminOSWindows8EnterpriseServer","features":[534]},{"name":"COMAdminOSWindows8Personal","features":[534]},{"name":"COMAdminOSWindows8Professional","features":[534]},{"name":"COMAdminOSWindows8StandardServer","features":[534]},{"name":"COMAdminOSWindows8WebServer","features":[534]},{"name":"COMAdminOSWindows9x","features":[534]},{"name":"COMAdminOSWindowsBlueDatacenterServer","features":[534]},{"name":"COMAdminOSWindowsBlueEnterpriseServer","features":[534]},{"name":"COMAdminOSWindowsBluePersonal","features":[534]},{"name":"COMAdminOSWindowsBlueProfessional","features":[534]},{"name":"COMAdminOSWindowsBlueStandardServer","features":[534]},{"name":"COMAdminOSWindowsBlueWebServer","features":[534]},{"name":"COMAdminOSWindowsLonghornDatacenterServer","features":[534]},{"name":"COMAdminOSWindowsLonghornEnterpriseServer","features":[534]},{"name":"COMAdminOSWindowsLonghornPersonal","features":[534]},{"name":"COMAdminOSWindowsLonghornProfessional","features":[534]},{"name":"COMAdminOSWindowsLonghornStandardServer","features":[534]},{"name":"COMAdminOSWindowsLonghornWebServer","features":[534]},{"name":"COMAdminOSWindowsNETDatacenterServer","features":[534]},{"name":"COMAdminOSWindowsNETEnterpriseServer","features":[534]},{"name":"COMAdminOSWindowsNETStandardServer","features":[534]},{"name":"COMAdminOSWindowsNETWebServer","features":[534]},{"name":"COMAdminOSWindowsXPPersonal","features":[534]},{"name":"COMAdminOSWindowsXPProfessional","features":[534]},{"name":"COMAdminQCMessageAuthenticateOff","features":[534]},{"name":"COMAdminQCMessageAuthenticateOn","features":[534]},{"name":"COMAdminQCMessageAuthenticateOptions","features":[534]},{"name":"COMAdminQCMessageAuthenticateSecureApps","features":[534]},{"name":"COMAdminServiceContinuePending","features":[534]},{"name":"COMAdminServiceLoadBalanceRouter","features":[534]},{"name":"COMAdminServiceOptions","features":[534]},{"name":"COMAdminServicePausePending","features":[534]},{"name":"COMAdminServicePaused","features":[534]},{"name":"COMAdminServiceRunning","features":[534]},{"name":"COMAdminServiceStartPending","features":[534]},{"name":"COMAdminServiceStatusOptions","features":[534]},{"name":"COMAdminServiceStopPending","features":[534]},{"name":"COMAdminServiceStopped","features":[534]},{"name":"COMAdminServiceUnknownState","features":[534]},{"name":"COMAdminSynchronizationIgnored","features":[534]},{"name":"COMAdminSynchronizationNone","features":[534]},{"name":"COMAdminSynchronizationOptions","features":[534]},{"name":"COMAdminSynchronizationRequired","features":[534]},{"name":"COMAdminSynchronizationRequiresNew","features":[534]},{"name":"COMAdminSynchronizationSupported","features":[534]},{"name":"COMAdminThreadingModelApartment","features":[534]},{"name":"COMAdminThreadingModelBoth","features":[534]},{"name":"COMAdminThreadingModelFree","features":[534]},{"name":"COMAdminThreadingModelMain","features":[534]},{"name":"COMAdminThreadingModelNeutral","features":[534]},{"name":"COMAdminThreadingModelNotSpecified","features":[534]},{"name":"COMAdminThreadingModels","features":[534]},{"name":"COMAdminTransactionIgnored","features":[534]},{"name":"COMAdminTransactionNone","features":[534]},{"name":"COMAdminTransactionOptions","features":[534]},{"name":"COMAdminTransactionRequired","features":[534]},{"name":"COMAdminTransactionRequiresNew","features":[534]},{"name":"COMAdminTransactionSupported","features":[534]},{"name":"COMAdminTxIsolationLevelAny","features":[534]},{"name":"COMAdminTxIsolationLevelOptions","features":[534]},{"name":"COMAdminTxIsolationLevelReadCommitted","features":[534]},{"name":"COMAdminTxIsolationLevelReadUnCommitted","features":[534]},{"name":"COMAdminTxIsolationLevelRepeatableRead","features":[534]},{"name":"COMAdminTxIsolationLevelSerializable","features":[534]},{"name":"COMEvents","features":[534]},{"name":"COMPLUS_APPTYPE","features":[534]},{"name":"COMSVCSEVENTINFO","features":[534]},{"name":"CRMClerk","features":[534]},{"name":"CRMFLAGS","features":[534]},{"name":"CRMFLAG_FORGETTARGET","features":[534]},{"name":"CRMFLAG_REPLAYINPROGRESS","features":[534]},{"name":"CRMFLAG_WRITTENDURINGABORT","features":[534]},{"name":"CRMFLAG_WRITTENDURINGCOMMIT","features":[534]},{"name":"CRMFLAG_WRITTENDURINGPREPARE","features":[534]},{"name":"CRMFLAG_WRITTENDURINGRECOVERY","features":[534]},{"name":"CRMFLAG_WRITTENDURINGREPLAY","features":[534]},{"name":"CRMREGFLAGS","features":[534]},{"name":"CRMREGFLAG_ABORTPHASE","features":[534]},{"name":"CRMREGFLAG_ALLPHASES","features":[534]},{"name":"CRMREGFLAG_COMMITPHASE","features":[534]},{"name":"CRMREGFLAG_FAILIFINDOUBTSREMAIN","features":[534]},{"name":"CRMREGFLAG_PREPAREPHASE","features":[534]},{"name":"CRMRecoveryClerk","features":[534]},{"name":"CRR_ACTIVATION_LIMIT","features":[534]},{"name":"CRR_CALL_LIMIT","features":[534]},{"name":"CRR_LIFETIME_LIMIT","features":[534]},{"name":"CRR_MEMORY_LIMIT","features":[534]},{"name":"CRR_NO_REASON_SUPPLIED","features":[534]},{"name":"CRR_RECYCLED_FROM_UI","features":[534]},{"name":"CSC_BindToPoolThread","features":[534]},{"name":"CSC_Binding","features":[534]},{"name":"CSC_COMTIIntrinsicsConfig","features":[534]},{"name":"CSC_CreateTransactionIfNecessary","features":[534]},{"name":"CSC_DontUseTracker","features":[534]},{"name":"CSC_IISIntrinsicsConfig","features":[534]},{"name":"CSC_IfContainerIsSynchronized","features":[534]},{"name":"CSC_IfContainerIsTransactional","features":[534]},{"name":"CSC_Ignore","features":[534]},{"name":"CSC_Inherit","features":[534]},{"name":"CSC_InheritCOMTIIntrinsics","features":[534]},{"name":"CSC_InheritIISIntrinsics","features":[534]},{"name":"CSC_InheritPartition","features":[534]},{"name":"CSC_InheritSxs","features":[534]},{"name":"CSC_InheritanceConfig","features":[534]},{"name":"CSC_MTAThreadPool","features":[534]},{"name":"CSC_NewPartition","features":[534]},{"name":"CSC_NewSxs","features":[534]},{"name":"CSC_NewSynchronization","features":[534]},{"name":"CSC_NewSynchronizationIfNecessary","features":[534]},{"name":"CSC_NewTransaction","features":[534]},{"name":"CSC_NoBinding","features":[534]},{"name":"CSC_NoCOMTIIntrinsics","features":[534]},{"name":"CSC_NoIISIntrinsics","features":[534]},{"name":"CSC_NoPartition","features":[534]},{"name":"CSC_NoSxs","features":[534]},{"name":"CSC_NoSynchronization","features":[534]},{"name":"CSC_NoTransaction","features":[534]},{"name":"CSC_PartitionConfig","features":[534]},{"name":"CSC_STAThreadPool","features":[534]},{"name":"CSC_SxsConfig","features":[534]},{"name":"CSC_SynchronizationConfig","features":[534]},{"name":"CSC_ThreadPool","features":[534]},{"name":"CSC_ThreadPoolInherit","features":[534]},{"name":"CSC_ThreadPoolNone","features":[534]},{"name":"CSC_TrackerConfig","features":[534]},{"name":"CSC_TransactionConfig","features":[534]},{"name":"CSC_UseTracker","features":[534]},{"name":"CServiceConfig","features":[534]},{"name":"ClrAssemblyLocator","features":[534]},{"name":"CoCreateActivity","features":[534]},{"name":"CoEnterServiceDomain","features":[534]},{"name":"CoGetDefaultContext","features":[356,534]},{"name":"CoLeaveServiceDomain","features":[534]},{"name":"CoMTSLocator","features":[534]},{"name":"ComServiceEvents","features":[534]},{"name":"ComSystemAppEventData","features":[534]},{"name":"ComponentHangMonitorInfo","features":[305,534]},{"name":"ComponentStatistics","features":[534]},{"name":"ComponentSummary","features":[534]},{"name":"ContextInfo","features":[356,534]},{"name":"ContextInfo2","features":[356,534]},{"name":"CrmLogRecordRead","features":[356,534]},{"name":"CrmTransactionState","features":[534]},{"name":"DATA_NOT_AVAILABLE","features":[534]},{"name":"DUMPTYPE","features":[534]},{"name":"DUMPTYPE_FULL","features":[534]},{"name":"DUMPTYPE_MINI","features":[534]},{"name":"DUMPTYPE_NONE","features":[534]},{"name":"DispenserManager","features":[534]},{"name":"Dummy30040732","features":[534]},{"name":"EventServer","features":[534]},{"name":"GATD_INCLUDE_APPLICATION_NAME","features":[534]},{"name":"GATD_INCLUDE_CLASS_NAME","features":[534]},{"name":"GATD_INCLUDE_LIBRARY_APPS","features":[534]},{"name":"GATD_INCLUDE_PROCESS_EXE_NAME","features":[534]},{"name":"GATD_INCLUDE_SWC","features":[534]},{"name":"GUID_STRING_SIZE","features":[534]},{"name":"GetAppTrackerDataFlags","features":[534]},{"name":"GetDispenserManager","features":[534]},{"name":"GetManagedExtensions","features":[534]},{"name":"GetSecurityCallContextAppObject","features":[534]},{"name":"HANG_INFO","features":[305,534]},{"name":"IAppDomainHelper","features":[356,534]},{"name":"IAssemblyLocator","features":[356,534]},{"name":"IAsyncErrorNotify","features":[534]},{"name":"ICOMAdminCatalog","features":[356,534]},{"name":"ICOMAdminCatalog2","features":[356,534]},{"name":"ICOMLBArguments","features":[534]},{"name":"ICatalogCollection","features":[356,534]},{"name":"ICatalogObject","features":[356,534]},{"name":"ICheckSxsConfig","features":[534]},{"name":"IComActivityEvents","features":[534]},{"name":"IComApp2Events","features":[534]},{"name":"IComAppEvents","features":[534]},{"name":"IComCRMEvents","features":[534]},{"name":"IComExceptionEvents","features":[534]},{"name":"IComIdentityEvents","features":[534]},{"name":"IComInstance2Events","features":[534]},{"name":"IComInstanceEvents","features":[534]},{"name":"IComLTxEvents","features":[534]},{"name":"IComMethod2Events","features":[534]},{"name":"IComMethodEvents","features":[534]},{"name":"IComMtaThreadPoolKnobs","features":[534]},{"name":"IComObjectConstruction2Events","features":[534]},{"name":"IComObjectConstructionEvents","features":[534]},{"name":"IComObjectEvents","features":[534]},{"name":"IComObjectPool2Events","features":[534]},{"name":"IComObjectPoolEvents","features":[534]},{"name":"IComObjectPoolEvents2","features":[534]},{"name":"IComQCEvents","features":[534]},{"name":"IComResourceEvents","features":[534]},{"name":"IComSecurityEvents","features":[534]},{"name":"IComStaThreadPoolKnobs","features":[534]},{"name":"IComStaThreadPoolKnobs2","features":[534]},{"name":"IComThreadEvents","features":[534]},{"name":"IComTrackingInfoCollection","features":[534]},{"name":"IComTrackingInfoEvents","features":[534]},{"name":"IComTrackingInfoObject","features":[534]},{"name":"IComTrackingInfoProperties","features":[534]},{"name":"IComTransaction2Events","features":[534]},{"name":"IComTransactionEvents","features":[534]},{"name":"IComUserEvent","features":[534]},{"name":"IContextProperties","features":[534]},{"name":"IContextSecurityPerimeter","features":[534]},{"name":"IContextState","features":[534]},{"name":"ICreateWithLocalTransaction","features":[534]},{"name":"ICreateWithTipTransactionEx","features":[534]},{"name":"ICreateWithTransactionEx","features":[534]},{"name":"ICrmCompensator","features":[534]},{"name":"ICrmCompensatorVariants","features":[534]},{"name":"ICrmFormatLogRecords","features":[534]},{"name":"ICrmLogControl","features":[534]},{"name":"ICrmMonitor","features":[534]},{"name":"ICrmMonitorClerks","features":[356,534]},{"name":"ICrmMonitorLogRecords","features":[534]},{"name":"IDispenserDriver","features":[534]},{"name":"IDispenserManager","features":[534]},{"name":"IEnumNames","features":[534]},{"name":"IEventServerTrace","features":[356,534]},{"name":"IGetAppTrackerData","features":[534]},{"name":"IGetContextProperties","features":[534]},{"name":"IGetSecurityCallContext","features":[356,534]},{"name":"IHolder","features":[534]},{"name":"ILBEvents","features":[534]},{"name":"IMTSActivity","features":[534]},{"name":"IMTSCall","features":[534]},{"name":"IMTSLocator","features":[356,534]},{"name":"IManagedActivationEvents","features":[534]},{"name":"IManagedObjectInfo","features":[534]},{"name":"IManagedPoolAction","features":[534]},{"name":"IManagedPooledObj","features":[534]},{"name":"IMessageMover","features":[356,534]},{"name":"IMtsEventInfo","features":[356,534]},{"name":"IMtsEvents","features":[356,534]},{"name":"IMtsGrp","features":[356,534]},{"name":"IObjPool","features":[534]},{"name":"IObjectConstruct","features":[534]},{"name":"IObjectConstructString","features":[356,534]},{"name":"IObjectContext","features":[534]},{"name":"IObjectContextActivity","features":[534]},{"name":"IObjectContextInfo","features":[534]},{"name":"IObjectContextInfo2","features":[534]},{"name":"IObjectContextTip","features":[534]},{"name":"IObjectControl","features":[534]},{"name":"IPlaybackControl","features":[534]},{"name":"IPoolManager","features":[356,534]},{"name":"IProcessInitializer","features":[534]},{"name":"ISecurityCallContext","features":[356,534]},{"name":"ISecurityCallersColl","features":[356,534]},{"name":"ISecurityIdentityColl","features":[356,534]},{"name":"ISecurityProperty","features":[534]},{"name":"ISelectCOMLBServer","features":[534]},{"name":"ISendMethodEvents","features":[534]},{"name":"IServiceActivity","features":[534]},{"name":"IServiceCall","features":[534]},{"name":"IServiceComTIIntrinsicsConfig","features":[534]},{"name":"IServiceIISIntrinsicsConfig","features":[534]},{"name":"IServiceInheritanceConfig","features":[534]},{"name":"IServicePartitionConfig","features":[534]},{"name":"IServicePool","features":[534]},{"name":"IServicePoolConfig","features":[534]},{"name":"IServiceSxsConfig","features":[534]},{"name":"IServiceSynchronizationConfig","features":[534]},{"name":"IServiceSysTxnConfig","features":[534]},{"name":"IServiceThreadPoolConfig","features":[534]},{"name":"IServiceTrackerConfig","features":[534]},{"name":"IServiceTransactionConfig","features":[534]},{"name":"IServiceTransactionConfigBase","features":[534]},{"name":"ISharedProperty","features":[356,534]},{"name":"ISharedPropertyGroup","features":[356,534]},{"name":"ISharedPropertyGroupManager","features":[356,534]},{"name":"ISystemAppEventData","features":[534]},{"name":"IThreadPoolKnobs","features":[534]},{"name":"ITransactionContext","features":[356,534]},{"name":"ITransactionContextEx","features":[534]},{"name":"ITransactionProperty","features":[534]},{"name":"ITransactionProxy","features":[534]},{"name":"ITransactionResourcePool","features":[534]},{"name":"ITransactionStatus","features":[534]},{"name":"ITxProxyHolder","features":[534]},{"name":"LBEvents","features":[534]},{"name":"LockMethod","features":[534]},{"name":"LockModes","features":[534]},{"name":"LockSetGet","features":[534]},{"name":"MTSCreateActivity","features":[534]},{"name":"MTXDM_E_ENLISTRESOURCEFAILED","features":[534]},{"name":"MessageMover","features":[534]},{"name":"MtsGrp","features":[534]},{"name":"ObjectContext","features":[356,534]},{"name":"ObjectControl","features":[534]},{"name":"PoolMgr","features":[534]},{"name":"Process","features":[534]},{"name":"RECYCLE_INFO","features":[534]},{"name":"RecycleSurrogate","features":[534]},{"name":"ReleaseModes","features":[534]},{"name":"SafeRef","features":[534]},{"name":"SecurityCallContext","features":[534]},{"name":"SecurityCallers","features":[534]},{"name":"SecurityIdentity","features":[534]},{"name":"SecurityProperty","features":[356,534]},{"name":"ServicePool","features":[534]},{"name":"ServicePoolConfig","features":[534]},{"name":"SharedProperty","features":[534]},{"name":"SharedPropertyGroup","features":[534]},{"name":"SharedPropertyGroupManager","features":[534]},{"name":"Standard","features":[534]},{"name":"TRACKER_INIT_EVENT","features":[534]},{"name":"TRACKER_STARTSTOP_EVENT","features":[534]},{"name":"TRACKING_COLL_TYPE","features":[534]},{"name":"TRKCOLL_APPLICATIONS","features":[534]},{"name":"TRKCOLL_COMPONENTS","features":[534]},{"name":"TRKCOLL_PROCESSES","features":[534]},{"name":"TrackerServer","features":[534]},{"name":"TransactionContext","features":[534]},{"name":"TransactionContextEx","features":[534]},{"name":"TransactionVote","features":[534]},{"name":"TxAbort","features":[534]},{"name":"TxCommit","features":[534]},{"name":"TxState_Aborted","features":[534]},{"name":"TxState_Active","features":[534]},{"name":"TxState_Committed","features":[534]},{"name":"TxState_Indoubt","features":[534]},{"name":"comQCErrApplicationNotQueued","features":[534]},{"name":"comQCErrNoQueueableInterfaces","features":[534]},{"name":"comQCErrQueueTransactMismatch","features":[534]},{"name":"comQCErrQueuingServiceNotAvailable","features":[534]},{"name":"comqcErrBadMarshaledObject","features":[534]},{"name":"comqcErrInvalidMessage","features":[534]},{"name":"comqcErrMarshaledObjSameTxn","features":[534]},{"name":"comqcErrMsgNotAuthenticated","features":[534]},{"name":"comqcErrMsmqConnectorUsed","features":[534]},{"name":"comqcErrMsmqServiceUnavailable","features":[534]},{"name":"comqcErrMsmqSidUnavailable","features":[534]},{"name":"comqcErrOutParam","features":[534]},{"name":"comqcErrPSLoad","features":[534]},{"name":"comqcErrRecorderMarshalled","features":[534]},{"name":"comqcErrRecorderNotTrusted","features":[534]},{"name":"comqcErrWrongMsgExtension","features":[534]},{"name":"mtsErrCtxAborted","features":[534]},{"name":"mtsErrCtxAborting","features":[534]},{"name":"mtsErrCtxNoContext","features":[534]},{"name":"mtsErrCtxNoSecurity","features":[534]},{"name":"mtsErrCtxNotRegistered","features":[534]},{"name":"mtsErrCtxOldReference","features":[534]},{"name":"mtsErrCtxRoleNotFound","features":[534]},{"name":"mtsErrCtxSynchTimeout","features":[534]},{"name":"mtsErrCtxTMNotAvailable","features":[534]},{"name":"mtsErrCtxWrongThread","features":[534]}],"545":[{"name":"ALTNUMPAD_BIT","features":[370]},{"name":"ATTACH_PARENT_PROCESS","features":[370]},{"name":"AddConsoleAliasA","features":[305,370]},{"name":"AddConsoleAliasW","features":[305,370]},{"name":"AllocConsole","features":[305,370]},{"name":"AttachConsole","features":[305,370]},{"name":"BACKGROUND_BLUE","features":[370]},{"name":"BACKGROUND_GREEN","features":[370]},{"name":"BACKGROUND_INTENSITY","features":[370]},{"name":"BACKGROUND_RED","features":[370]},{"name":"CAPSLOCK_ON","features":[370]},{"name":"CHAR_INFO","features":[370]},{"name":"COMMON_LVB_GRID_HORIZONTAL","features":[370]},{"name":"COMMON_LVB_GRID_LVERTICAL","features":[370]},{"name":"COMMON_LVB_GRID_RVERTICAL","features":[370]},{"name":"COMMON_LVB_LEADING_BYTE","features":[370]},{"name":"COMMON_LVB_REVERSE_VIDEO","features":[370]},{"name":"COMMON_LVB_SBCSDBCS","features":[370]},{"name":"COMMON_LVB_TRAILING_BYTE","features":[370]},{"name":"COMMON_LVB_UNDERSCORE","features":[370]},{"name":"CONSOLECONTROL","features":[370]},{"name":"CONSOLEENDTASK","features":[305,370]},{"name":"CONSOLESETFOREGROUND","features":[305,370]},{"name":"CONSOLEWINDOWOWNER","features":[305,370]},{"name":"CONSOLE_CARET_INFO","features":[305,370]},{"name":"CONSOLE_CHARACTER_ATTRIBUTES","features":[370]},{"name":"CONSOLE_CURSOR_INFO","features":[305,370]},{"name":"CONSOLE_FONT_INFO","features":[370]},{"name":"CONSOLE_FONT_INFOEX","features":[370]},{"name":"CONSOLE_FULLSCREEN","features":[370]},{"name":"CONSOLE_FULLSCREEN_HARDWARE","features":[370]},{"name":"CONSOLE_FULLSCREEN_MODE","features":[370]},{"name":"CONSOLE_HISTORY_INFO","features":[370]},{"name":"CONSOLE_MODE","features":[370]},{"name":"CONSOLE_MOUSE_DOWN","features":[370]},{"name":"CONSOLE_MOUSE_SELECTION","features":[370]},{"name":"CONSOLE_NO_SELECTION","features":[370]},{"name":"CONSOLE_PROCESS_INFO","features":[370]},{"name":"CONSOLE_READCONSOLE_CONTROL","features":[370]},{"name":"CONSOLE_SCREEN_BUFFER_INFO","features":[370]},{"name":"CONSOLE_SCREEN_BUFFER_INFOEX","features":[305,370]},{"name":"CONSOLE_SELECTION_INFO","features":[370]},{"name":"CONSOLE_SELECTION_IN_PROGRESS","features":[370]},{"name":"CONSOLE_SELECTION_NOT_EMPTY","features":[370]},{"name":"CONSOLE_TEXTMODE_BUFFER","features":[370]},{"name":"CONSOLE_WINDOWED_MODE","features":[370]},{"name":"COORD","features":[370]},{"name":"CTRL_BREAK_EVENT","features":[370]},{"name":"CTRL_CLOSE_EVENT","features":[370]},{"name":"CTRL_C_EVENT","features":[370]},{"name":"CTRL_LOGOFF_EVENT","features":[370]},{"name":"CTRL_SHUTDOWN_EVENT","features":[370]},{"name":"ClosePseudoConsole","features":[370]},{"name":"ConsoleControl","features":[305,370]},{"name":"ConsoleEndTask","features":[370]},{"name":"ConsoleNotifyConsoleApplication","features":[370]},{"name":"ConsoleSetCaretInfo","features":[370]},{"name":"ConsoleSetForeground","features":[370]},{"name":"ConsoleSetWindowOwner","features":[370]},{"name":"CreateConsoleScreenBuffer","features":[305,308,370]},{"name":"CreatePseudoConsole","features":[305,370]},{"name":"DISABLE_NEWLINE_AUTO_RETURN","features":[370]},{"name":"DOUBLE_CLICK","features":[370]},{"name":"ENABLE_AUTO_POSITION","features":[370]},{"name":"ENABLE_ECHO_INPUT","features":[370]},{"name":"ENABLE_EXTENDED_FLAGS","features":[370]},{"name":"ENABLE_INSERT_MODE","features":[370]},{"name":"ENABLE_LINE_INPUT","features":[370]},{"name":"ENABLE_LVB_GRID_WORLDWIDE","features":[370]},{"name":"ENABLE_MOUSE_INPUT","features":[370]},{"name":"ENABLE_PROCESSED_INPUT","features":[370]},{"name":"ENABLE_PROCESSED_OUTPUT","features":[370]},{"name":"ENABLE_QUICK_EDIT_MODE","features":[370]},{"name":"ENABLE_VIRTUAL_TERMINAL_INPUT","features":[370]},{"name":"ENABLE_VIRTUAL_TERMINAL_PROCESSING","features":[370]},{"name":"ENABLE_WINDOW_INPUT","features":[370]},{"name":"ENABLE_WRAP_AT_EOL_OUTPUT","features":[370]},{"name":"ENHANCED_KEY","features":[370]},{"name":"ExpungeConsoleCommandHistoryA","features":[370]},{"name":"ExpungeConsoleCommandHistoryW","features":[370]},{"name":"FOCUS_EVENT","features":[370]},{"name":"FOCUS_EVENT_RECORD","features":[305,370]},{"name":"FOREGROUND_BLUE","features":[370]},{"name":"FOREGROUND_GREEN","features":[370]},{"name":"FOREGROUND_INTENSITY","features":[370]},{"name":"FOREGROUND_RED","features":[370]},{"name":"FROM_LEFT_1ST_BUTTON_PRESSED","features":[370]},{"name":"FROM_LEFT_2ND_BUTTON_PRESSED","features":[370]},{"name":"FROM_LEFT_3RD_BUTTON_PRESSED","features":[370]},{"name":"FROM_LEFT_4TH_BUTTON_PRESSED","features":[370]},{"name":"FillConsoleOutputAttribute","features":[305,370]},{"name":"FillConsoleOutputCharacterA","features":[305,370]},{"name":"FillConsoleOutputCharacterW","features":[305,370]},{"name":"FlushConsoleInputBuffer","features":[305,370]},{"name":"FreeConsole","features":[305,370]},{"name":"GenerateConsoleCtrlEvent","features":[305,370]},{"name":"GetConsoleAliasA","features":[370]},{"name":"GetConsoleAliasExesA","features":[370]},{"name":"GetConsoleAliasExesLengthA","features":[370]},{"name":"GetConsoleAliasExesLengthW","features":[370]},{"name":"GetConsoleAliasExesW","features":[370]},{"name":"GetConsoleAliasW","features":[370]},{"name":"GetConsoleAliasesA","features":[370]},{"name":"GetConsoleAliasesLengthA","features":[370]},{"name":"GetConsoleAliasesLengthW","features":[370]},{"name":"GetConsoleAliasesW","features":[370]},{"name":"GetConsoleCP","features":[370]},{"name":"GetConsoleCommandHistoryA","features":[370]},{"name":"GetConsoleCommandHistoryLengthA","features":[370]},{"name":"GetConsoleCommandHistoryLengthW","features":[370]},{"name":"GetConsoleCommandHistoryW","features":[370]},{"name":"GetConsoleCursorInfo","features":[305,370]},{"name":"GetConsoleDisplayMode","features":[305,370]},{"name":"GetConsoleFontSize","features":[305,370]},{"name":"GetConsoleHistoryInfo","features":[305,370]},{"name":"GetConsoleMode","features":[305,370]},{"name":"GetConsoleOriginalTitleA","features":[370]},{"name":"GetConsoleOriginalTitleW","features":[370]},{"name":"GetConsoleOutputCP","features":[370]},{"name":"GetConsoleProcessList","features":[370]},{"name":"GetConsoleScreenBufferInfo","features":[305,370]},{"name":"GetConsoleScreenBufferInfoEx","features":[305,370]},{"name":"GetConsoleSelectionInfo","features":[305,370]},{"name":"GetConsoleTitleA","features":[370]},{"name":"GetConsoleTitleW","features":[370]},{"name":"GetConsoleWindow","features":[305,370]},{"name":"GetCurrentConsoleFont","features":[305,370]},{"name":"GetCurrentConsoleFontEx","features":[305,370]},{"name":"GetLargestConsoleWindowSize","features":[305,370]},{"name":"GetNumberOfConsoleInputEvents","features":[305,370]},{"name":"GetNumberOfConsoleMouseButtons","features":[305,370]},{"name":"GetStdHandle","features":[305,370]},{"name":"HISTORY_NO_DUP_FLAG","features":[370]},{"name":"HPCON","features":[370]},{"name":"INPUT_RECORD","features":[305,370]},{"name":"KEY_EVENT","features":[370]},{"name":"KEY_EVENT_RECORD","features":[305,370]},{"name":"LEFT_ALT_PRESSED","features":[370]},{"name":"LEFT_CTRL_PRESSED","features":[370]},{"name":"MENU_EVENT","features":[370]},{"name":"MENU_EVENT_RECORD","features":[370]},{"name":"MOUSE_EVENT","features":[370]},{"name":"MOUSE_EVENT_RECORD","features":[370]},{"name":"MOUSE_HWHEELED","features":[370]},{"name":"MOUSE_MOVED","features":[370]},{"name":"MOUSE_WHEELED","features":[370]},{"name":"NLS_ALPHANUMERIC","features":[370]},{"name":"NLS_DBCSCHAR","features":[370]},{"name":"NLS_HIRAGANA","features":[370]},{"name":"NLS_IME_CONVERSION","features":[370]},{"name":"NLS_IME_DISABLE","features":[370]},{"name":"NLS_KATAKANA","features":[370]},{"name":"NLS_ROMAN","features":[370]},{"name":"NUMLOCK_ON","features":[370]},{"name":"PHANDLER_ROUTINE","features":[305,370]},{"name":"PSEUDOCONSOLE_INHERIT_CURSOR","features":[370]},{"name":"PeekConsoleInputA","features":[305,370]},{"name":"PeekConsoleInputW","features":[305,370]},{"name":"RIGHTMOST_BUTTON_PRESSED","features":[370]},{"name":"RIGHT_ALT_PRESSED","features":[370]},{"name":"RIGHT_CTRL_PRESSED","features":[370]},{"name":"ReadConsoleA","features":[305,370]},{"name":"ReadConsoleInputA","features":[305,370]},{"name":"ReadConsoleInputW","features":[305,370]},{"name":"ReadConsoleOutputA","features":[305,370]},{"name":"ReadConsoleOutputAttribute","features":[305,370]},{"name":"ReadConsoleOutputCharacterA","features":[305,370]},{"name":"ReadConsoleOutputCharacterW","features":[305,370]},{"name":"ReadConsoleOutputW","features":[305,370]},{"name":"ReadConsoleW","features":[305,370]},{"name":"Reserved1","features":[370]},{"name":"Reserved2","features":[370]},{"name":"Reserved3","features":[370]},{"name":"ResizePseudoConsole","features":[370]},{"name":"SCROLLLOCK_ON","features":[370]},{"name":"SHIFT_PRESSED","features":[370]},{"name":"SMALL_RECT","features":[370]},{"name":"STD_ERROR_HANDLE","features":[370]},{"name":"STD_HANDLE","features":[370]},{"name":"STD_INPUT_HANDLE","features":[370]},{"name":"STD_OUTPUT_HANDLE","features":[370]},{"name":"ScrollConsoleScreenBufferA","features":[305,370]},{"name":"ScrollConsoleScreenBufferW","features":[305,370]},{"name":"SetConsoleActiveScreenBuffer","features":[305,370]},{"name":"SetConsoleCP","features":[305,370]},{"name":"SetConsoleCtrlHandler","features":[305,370]},{"name":"SetConsoleCursorInfo","features":[305,370]},{"name":"SetConsoleCursorPosition","features":[305,370]},{"name":"SetConsoleDisplayMode","features":[305,370]},{"name":"SetConsoleHistoryInfo","features":[305,370]},{"name":"SetConsoleMode","features":[305,370]},{"name":"SetConsoleNumberOfCommandsA","features":[305,370]},{"name":"SetConsoleNumberOfCommandsW","features":[305,370]},{"name":"SetConsoleOutputCP","features":[305,370]},{"name":"SetConsoleScreenBufferInfoEx","features":[305,370]},{"name":"SetConsoleScreenBufferSize","features":[305,370]},{"name":"SetConsoleTextAttribute","features":[305,370]},{"name":"SetConsoleTitleA","features":[305,370]},{"name":"SetConsoleTitleW","features":[305,370]},{"name":"SetConsoleWindowInfo","features":[305,370]},{"name":"SetCurrentConsoleFontEx","features":[305,370]},{"name":"SetStdHandle","features":[305,370]},{"name":"SetStdHandleEx","features":[305,370]},{"name":"WINDOW_BUFFER_SIZE_EVENT","features":[370]},{"name":"WINDOW_BUFFER_SIZE_RECORD","features":[370]},{"name":"WriteConsoleA","features":[305,370]},{"name":"WriteConsoleInputA","features":[305,370]},{"name":"WriteConsoleInputW","features":[305,370]},{"name":"WriteConsoleOutputA","features":[305,370]},{"name":"WriteConsoleOutputAttribute","features":[305,370]},{"name":"WriteConsoleOutputCharacterA","features":[305,370]},{"name":"WriteConsoleOutputCharacterW","features":[305,370]},{"name":"WriteConsoleOutputW","features":[305,370]},{"name":"WriteConsoleW","features":[305,370]}],"546":[{"name":"CACO_DEFAULT","features":[535]},{"name":"CACO_EXTERNAL_ONLY","features":[535]},{"name":"CACO_INCLUDE_EXTERNAL","features":[535]},{"name":"CA_CREATE_EXTERNAL","features":[535]},{"name":"CA_CREATE_LOCAL","features":[535]},{"name":"CGD_ARRAY_NODE","features":[535]},{"name":"CGD_BINARY_PROPERTY","features":[535]},{"name":"CGD_DATE_PROPERTY","features":[535]},{"name":"CGD_DEFAULT","features":[535]},{"name":"CGD_STRING_PROPERTY","features":[535]},{"name":"CGD_UNKNOWN_PROPERTY","features":[535]},{"name":"CLSID_ContactAggregationManager","features":[535]},{"name":"CONTACTLABEL_PUB_AGENT","features":[535]},{"name":"CONTACTLABEL_PUB_BBS","features":[535]},{"name":"CONTACTLABEL_PUB_BUSINESS","features":[535]},{"name":"CONTACTLABEL_PUB_CAR","features":[535]},{"name":"CONTACTLABEL_PUB_CELLULAR","features":[535]},{"name":"CONTACTLABEL_PUB_DOMESTIC","features":[535]},{"name":"CONTACTLABEL_PUB_FAX","features":[535]},{"name":"CONTACTLABEL_PUB_INTERNATIONAL","features":[535]},{"name":"CONTACTLABEL_PUB_ISDN","features":[535]},{"name":"CONTACTLABEL_PUB_LOGO","features":[535]},{"name":"CONTACTLABEL_PUB_MOBILE","features":[535]},{"name":"CONTACTLABEL_PUB_MODEM","features":[535]},{"name":"CONTACTLABEL_PUB_OTHER","features":[535]},{"name":"CONTACTLABEL_PUB_PAGER","features":[535]},{"name":"CONTACTLABEL_PUB_PARCEL","features":[535]},{"name":"CONTACTLABEL_PUB_PCS","features":[535]},{"name":"CONTACTLABEL_PUB_PERSONAL","features":[535]},{"name":"CONTACTLABEL_PUB_POSTAL","features":[535]},{"name":"CONTACTLABEL_PUB_PREFERRED","features":[535]},{"name":"CONTACTLABEL_PUB_TTY","features":[535]},{"name":"CONTACTLABEL_PUB_USERTILE","features":[535]},{"name":"CONTACTLABEL_PUB_VIDEO","features":[535]},{"name":"CONTACTLABEL_PUB_VOICE","features":[535]},{"name":"CONTACTLABEL_WAB_ANNIVERSARY","features":[535]},{"name":"CONTACTLABEL_WAB_ASSISTANT","features":[535]},{"name":"CONTACTLABEL_WAB_BIRTHDAY","features":[535]},{"name":"CONTACTLABEL_WAB_CHILD","features":[535]},{"name":"CONTACTLABEL_WAB_MANAGER","features":[535]},{"name":"CONTACTLABEL_WAB_SCHOOL","features":[535]},{"name":"CONTACTLABEL_WAB_SOCIALNETWORK","features":[535]},{"name":"CONTACTLABEL_WAB_SPOUSE","features":[535]},{"name":"CONTACTLABEL_WAB_WISHLIST","features":[535]},{"name":"CONTACTPROP_PUB_CREATIONDATE","features":[535]},{"name":"CONTACTPROP_PUB_GENDER","features":[535]},{"name":"CONTACTPROP_PUB_GENDER_FEMALE","features":[535]},{"name":"CONTACTPROP_PUB_GENDER_MALE","features":[535]},{"name":"CONTACTPROP_PUB_GENDER_UNSPECIFIED","features":[535]},{"name":"CONTACTPROP_PUB_L1_CERTIFICATECOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_CONTACTIDCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_DATECOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_EMAILADDRESSCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_IMADDRESSCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_NAMECOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_PERSONCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_PHONENUMBERCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_PHOTOCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_PHYSICALADDRESSCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_POSITIONCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L1_URLCOLLECTION","features":[535]},{"name":"CONTACTPROP_PUB_L2_CERTIFICATE","features":[535]},{"name":"CONTACTPROP_PUB_L2_CONTACTID","features":[535]},{"name":"CONTACTPROP_PUB_L2_DATE","features":[535]},{"name":"CONTACTPROP_PUB_L2_EMAILADDRESS","features":[535]},{"name":"CONTACTPROP_PUB_L2_IMADDRESSENTRY","features":[535]},{"name":"CONTACTPROP_PUB_L2_NAME","features":[535]},{"name":"CONTACTPROP_PUB_L2_PERSON","features":[535]},{"name":"CONTACTPROP_PUB_L2_PHONENUMBER","features":[535]},{"name":"CONTACTPROP_PUB_L2_PHOTO","features":[535]},{"name":"CONTACTPROP_PUB_L2_PHYSICALADDRESS","features":[535]},{"name":"CONTACTPROP_PUB_L2_POSITION","features":[535]},{"name":"CONTACTPROP_PUB_L2_URL","features":[535]},{"name":"CONTACTPROP_PUB_L3_ADDRESS","features":[535]},{"name":"CONTACTPROP_PUB_L3_ADDRESSLABEL","features":[535]},{"name":"CONTACTPROP_PUB_L3_ALTERNATE","features":[535]},{"name":"CONTACTPROP_PUB_L3_COMPANY","features":[535]},{"name":"CONTACTPROP_PUB_L3_COUNTRY","features":[535]},{"name":"CONTACTPROP_PUB_L3_DEPARTMENT","features":[535]},{"name":"CONTACTPROP_PUB_L3_EXTENDEDADDRESS","features":[535]},{"name":"CONTACTPROP_PUB_L3_FAMILYNAME","features":[535]},{"name":"CONTACTPROP_PUB_L3_FORMATTEDNAME","features":[535]},{"name":"CONTACTPROP_PUB_L3_GENERATION","features":[535]},{"name":"CONTACTPROP_PUB_L3_GIVENNAME","features":[535]},{"name":"CONTACTPROP_PUB_L3_JOB_TITLE","features":[535]},{"name":"CONTACTPROP_PUB_L3_LOCALITY","features":[535]},{"name":"CONTACTPROP_PUB_L3_MIDDLENAME","features":[535]},{"name":"CONTACTPROP_PUB_L3_NICKNAME","features":[535]},{"name":"CONTACTPROP_PUB_L3_NUMBER","features":[535]},{"name":"CONTACTPROP_PUB_L3_OFFICE","features":[535]},{"name":"CONTACTPROP_PUB_L3_ORGANIZATION","features":[535]},{"name":"CONTACTPROP_PUB_L3_PERSONID","features":[535]},{"name":"CONTACTPROP_PUB_L3_PHONETIC","features":[535]},{"name":"CONTACTPROP_PUB_L3_POBOX","features":[535]},{"name":"CONTACTPROP_PUB_L3_POSTALCODE","features":[535]},{"name":"CONTACTPROP_PUB_L3_PREFIX","features":[535]},{"name":"CONTACTPROP_PUB_L3_PROFESSION","features":[535]},{"name":"CONTACTPROP_PUB_L3_PROTOCOL","features":[535]},{"name":"CONTACTPROP_PUB_L3_REGION","features":[535]},{"name":"CONTACTPROP_PUB_L3_ROLE","features":[535]},{"name":"CONTACTPROP_PUB_L3_STREET","features":[535]},{"name":"CONTACTPROP_PUB_L3_SUFFIX","features":[535]},{"name":"CONTACTPROP_PUB_L3_THUMBPRINT","features":[535]},{"name":"CONTACTPROP_PUB_L3_TITLE","features":[535]},{"name":"CONTACTPROP_PUB_L3_TYPE","features":[535]},{"name":"CONTACTPROP_PUB_L3_URL","features":[535]},{"name":"CONTACTPROP_PUB_L3_VALUE","features":[535]},{"name":"CONTACTPROP_PUB_MAILER","features":[535]},{"name":"CONTACTPROP_PUB_NOTES","features":[535]},{"name":"CONTACTPROP_PUB_PROGID","features":[535]},{"name":"CONTACT_AGGREGATION_BLOB","features":[535]},{"name":"CONTACT_AGGREGATION_COLLECTION_OPTIONS","features":[535]},{"name":"CONTACT_AGGREGATION_CREATE_OR_OPEN_OPTIONS","features":[535]},{"name":"Contact","features":[535]},{"name":"ContactManager","features":[535]},{"name":"IContact","features":[535]},{"name":"IContactAggregationAggregate","features":[535]},{"name":"IContactAggregationAggregateCollection","features":[535]},{"name":"IContactAggregationContact","features":[535]},{"name":"IContactAggregationContactCollection","features":[535]},{"name":"IContactAggregationGroup","features":[535]},{"name":"IContactAggregationGroupCollection","features":[535]},{"name":"IContactAggregationLink","features":[535]},{"name":"IContactAggregationLinkCollection","features":[535]},{"name":"IContactAggregationManager","features":[535]},{"name":"IContactAggregationServerPerson","features":[535]},{"name":"IContactAggregationServerPersonCollection","features":[535]},{"name":"IContactCollection","features":[535]},{"name":"IContactManager","features":[535]},{"name":"IContactProperties","features":[535]},{"name":"IContactPropertyCollection","features":[535]}],"547":[{"name":"CORRELATION_VECTOR","features":[502]},{"name":"RTL_CORRELATION_VECTOR_STRING_LENGTH","features":[502]},{"name":"RTL_CORRELATION_VECTOR_V1_LENGTH","features":[502]},{"name":"RTL_CORRELATION_VECTOR_V1_PREFIX_LENGTH","features":[502]},{"name":"RTL_CORRELATION_VECTOR_V2_LENGTH","features":[502]},{"name":"RTL_CORRELATION_VECTOR_V2_PREFIX_LENGTH","features":[502]},{"name":"RtlExtendCorrelationVector","features":[502]},{"name":"RtlIncrementCorrelationVector","features":[502]},{"name":"RtlInitializeCorrelationVector","features":[502]},{"name":"RtlValidateCorrelationVector","features":[502]}],"548":[{"name":"APPCLASS_MASK","features":[536]},{"name":"APPCLASS_MONITOR","features":[536]},{"name":"APPCLASS_STANDARD","features":[536]},{"name":"APPCMD_CLIENTONLY","features":[536]},{"name":"APPCMD_FILTERINITS","features":[536]},{"name":"APPCMD_MASK","features":[536]},{"name":"AddAtomA","features":[536]},{"name":"AddAtomW","features":[536]},{"name":"AddClipboardFormatListener","features":[305,536]},{"name":"CADV_LATEACK","features":[536]},{"name":"CBF_FAIL_ADVISES","features":[536]},{"name":"CBF_FAIL_ALLSVRXACTIONS","features":[536]},{"name":"CBF_FAIL_CONNECTIONS","features":[536]},{"name":"CBF_FAIL_EXECUTES","features":[536]},{"name":"CBF_FAIL_POKES","features":[536]},{"name":"CBF_FAIL_REQUESTS","features":[536]},{"name":"CBF_FAIL_SELFCONNECTIONS","features":[536]},{"name":"CBF_SKIP_ALLNOTIFICATIONS","features":[536]},{"name":"CBF_SKIP_CONNECT_CONFIRMS","features":[536]},{"name":"CBF_SKIP_DISCONNECTS","features":[536]},{"name":"CBF_SKIP_REGISTRATIONS","features":[536]},{"name":"CBF_SKIP_UNREGISTRATIONS","features":[536]},{"name":"CONVCONTEXT","features":[305,308,536]},{"name":"CONVINFO","features":[305,308,536]},{"name":"CONVINFO_CONVERSATION_STATE","features":[536]},{"name":"CONVINFO_STATUS","features":[536]},{"name":"COPYDATASTRUCT","features":[536]},{"name":"CP_WINANSI","features":[536]},{"name":"CP_WINNEUTRAL","features":[536]},{"name":"CP_WINUNICODE","features":[536]},{"name":"ChangeClipboardChain","features":[305,536]},{"name":"CloseClipboard","features":[305,536]},{"name":"CountClipboardFormats","features":[536]},{"name":"DDEACK","features":[536]},{"name":"DDEADVISE","features":[536]},{"name":"DDEDATA","features":[536]},{"name":"DDELN","features":[536]},{"name":"DDEML_MSG_HOOK_DATA","features":[536]},{"name":"DDEPOKE","features":[536]},{"name":"DDEUP","features":[536]},{"name":"DDE_CLIENT_TRANSACTION_TYPE","features":[536]},{"name":"DDE_ENABLE_CALLBACK_CMD","features":[536]},{"name":"DDE_FACK","features":[536]},{"name":"DDE_FACKREQ","features":[536]},{"name":"DDE_FAPPSTATUS","features":[536]},{"name":"DDE_FBUSY","features":[536]},{"name":"DDE_FDEFERUPD","features":[536]},{"name":"DDE_FNOTPROCESSED","features":[536]},{"name":"DDE_FRELEASE","features":[536]},{"name":"DDE_FREQUESTED","features":[536]},{"name":"DDE_INITIALIZE_COMMAND","features":[536]},{"name":"DDE_NAME_SERVICE_CMD","features":[536]},{"name":"DMLERR_ADVACKTIMEOUT","features":[536]},{"name":"DMLERR_BUSY","features":[536]},{"name":"DMLERR_DATAACKTIMEOUT","features":[536]},{"name":"DMLERR_DLL_NOT_INITIALIZED","features":[536]},{"name":"DMLERR_DLL_USAGE","features":[536]},{"name":"DMLERR_EXECACKTIMEOUT","features":[536]},{"name":"DMLERR_FIRST","features":[536]},{"name":"DMLERR_INVALIDPARAMETER","features":[536]},{"name":"DMLERR_LAST","features":[536]},{"name":"DMLERR_LOW_MEMORY","features":[536]},{"name":"DMLERR_MEMORY_ERROR","features":[536]},{"name":"DMLERR_NOTPROCESSED","features":[536]},{"name":"DMLERR_NO_CONV_ESTABLISHED","features":[536]},{"name":"DMLERR_NO_ERROR","features":[536]},{"name":"DMLERR_POKEACKTIMEOUT","features":[536]},{"name":"DMLERR_POSTMSG_FAILED","features":[536]},{"name":"DMLERR_REENTRANCY","features":[536]},{"name":"DMLERR_SERVER_DIED","features":[536]},{"name":"DMLERR_SYS_ERROR","features":[536]},{"name":"DMLERR_UNADVACKTIMEOUT","features":[536]},{"name":"DMLERR_UNFOUND_QUEUE_ID","features":[536]},{"name":"DNS_FILTEROFF","features":[536]},{"name":"DNS_FILTERON","features":[536]},{"name":"DNS_REGISTER","features":[536]},{"name":"DNS_UNREGISTER","features":[536]},{"name":"DdeAbandonTransaction","features":[305,536]},{"name":"DdeAccessData","features":[536]},{"name":"DdeAddData","features":[536]},{"name":"DdeClientTransaction","features":[536]},{"name":"DdeCmpStringHandles","features":[536]},{"name":"DdeConnect","features":[305,308,536]},{"name":"DdeConnectList","features":[305,308,536]},{"name":"DdeCreateDataHandle","features":[536]},{"name":"DdeCreateStringHandleA","features":[536]},{"name":"DdeCreateStringHandleW","features":[536]},{"name":"DdeDisconnect","features":[305,536]},{"name":"DdeDisconnectList","features":[305,536]},{"name":"DdeEnableCallback","features":[305,536]},{"name":"DdeFreeDataHandle","features":[305,536]},{"name":"DdeFreeStringHandle","features":[305,536]},{"name":"DdeGetData","features":[536]},{"name":"DdeGetLastError","features":[536]},{"name":"DdeImpersonateClient","features":[305,536]},{"name":"DdeInitializeA","features":[536]},{"name":"DdeInitializeW","features":[536]},{"name":"DdeKeepStringHandle","features":[305,536]},{"name":"DdeNameService","features":[536]},{"name":"DdePostAdvise","features":[305,536]},{"name":"DdeQueryConvInfo","features":[305,308,536]},{"name":"DdeQueryNextServer","features":[536]},{"name":"DdeQueryStringA","features":[536]},{"name":"DdeQueryStringW","features":[536]},{"name":"DdeReconnect","features":[536]},{"name":"DdeSetQualityOfService","features":[305,308,536]},{"name":"DdeSetUserHandle","features":[305,536]},{"name":"DdeUnaccessData","features":[305,536]},{"name":"DdeUninitialize","features":[305,536]},{"name":"DeleteAtom","features":[536]},{"name":"EC_DISABLE","features":[536]},{"name":"EC_ENABLEALL","features":[536]},{"name":"EC_ENABLEONE","features":[536]},{"name":"EC_QUERYWAITING","features":[536]},{"name":"EmptyClipboard","features":[305,536]},{"name":"EnumClipboardFormats","features":[536]},{"name":"FindAtomA","features":[536]},{"name":"FindAtomW","features":[536]},{"name":"FreeDDElParam","features":[305,536]},{"name":"GetAtomNameA","features":[536]},{"name":"GetAtomNameW","features":[536]},{"name":"GetClipboardData","features":[305,536]},{"name":"GetClipboardFormatNameA","features":[536]},{"name":"GetClipboardFormatNameW","features":[536]},{"name":"GetClipboardOwner","features":[305,536]},{"name":"GetClipboardSequenceNumber","features":[536]},{"name":"GetClipboardViewer","features":[305,536]},{"name":"GetOpenClipboardWindow","features":[305,536]},{"name":"GetPriorityClipboardFormat","features":[536]},{"name":"GetUpdatedClipboardFormats","features":[305,536]},{"name":"GlobalAddAtomA","features":[536]},{"name":"GlobalAddAtomExA","features":[536]},{"name":"GlobalAddAtomExW","features":[536]},{"name":"GlobalAddAtomW","features":[536]},{"name":"GlobalDeleteAtom","features":[536]},{"name":"GlobalFindAtomA","features":[536]},{"name":"GlobalFindAtomW","features":[536]},{"name":"GlobalGetAtomNameA","features":[536]},{"name":"GlobalGetAtomNameW","features":[536]},{"name":"HCONV","features":[536]},{"name":"HCONVLIST","features":[536]},{"name":"HDATA_APPOWNED","features":[536]},{"name":"HDDEDATA","features":[536]},{"name":"HSZ","features":[536]},{"name":"HSZPAIR","features":[536]},{"name":"ImpersonateDdeClientWindow","features":[305,536]},{"name":"InitAtomTable","features":[305,536]},{"name":"IsClipboardFormatAvailable","features":[305,536]},{"name":"MAX_MONITORS","features":[536]},{"name":"METAFILEPICT","features":[316,536]},{"name":"MF_CALLBACKS","features":[536]},{"name":"MF_CONV","features":[536]},{"name":"MF_ERRORS","features":[536]},{"name":"MF_HSZ_INFO","features":[536]},{"name":"MF_LINKS","features":[536]},{"name":"MF_MASK","features":[536]},{"name":"MF_POSTMSGS","features":[536]},{"name":"MF_SENDMSGS","features":[536]},{"name":"MH_CLEANUP","features":[536]},{"name":"MH_CREATE","features":[536]},{"name":"MH_DELETE","features":[536]},{"name":"MH_KEEP","features":[536]},{"name":"MONCBSTRUCT","features":[305,308,536]},{"name":"MONCONVSTRUCT","features":[305,536]},{"name":"MONERRSTRUCT","features":[305,536]},{"name":"MONHSZSTRUCTA","features":[305,536]},{"name":"MONHSZSTRUCTW","features":[305,536]},{"name":"MONLINKSTRUCT","features":[305,536]},{"name":"MONMSGSTRUCT","features":[305,536]},{"name":"MSGF_DDEMGR","features":[536]},{"name":"OpenClipboard","features":[305,536]},{"name":"PFNCALLBACK","features":[536]},{"name":"PackDDElParam","features":[305,536]},{"name":"QID_SYNC","features":[536]},{"name":"RegisterClipboardFormatA","features":[536]},{"name":"RegisterClipboardFormatW","features":[536]},{"name":"RemoveClipboardFormatListener","features":[305,536]},{"name":"ReuseDDElParam","features":[305,536]},{"name":"ST_ADVISE","features":[536]},{"name":"ST_BLOCKED","features":[536]},{"name":"ST_BLOCKNEXT","features":[536]},{"name":"ST_CLIENT","features":[536]},{"name":"ST_CONNECTED","features":[536]},{"name":"ST_INLIST","features":[536]},{"name":"ST_ISLOCAL","features":[536]},{"name":"ST_ISSELF","features":[536]},{"name":"ST_TERMINATED","features":[536]},{"name":"SZDDESYS_ITEM_FORMATS","features":[536]},{"name":"SZDDESYS_ITEM_HELP","features":[536]},{"name":"SZDDESYS_ITEM_RTNMSG","features":[536]},{"name":"SZDDESYS_ITEM_STATUS","features":[536]},{"name":"SZDDESYS_ITEM_SYSITEMS","features":[536]},{"name":"SZDDESYS_ITEM_TOPICS","features":[536]},{"name":"SZDDESYS_TOPIC","features":[536]},{"name":"SZDDE_ITEM_ITEMLIST","features":[536]},{"name":"SetClipboardData","features":[305,536]},{"name":"SetClipboardViewer","features":[305,536]},{"name":"SetWinMetaFileBits","features":[316,536]},{"name":"TIMEOUT_ASYNC","features":[536]},{"name":"UnpackDDElParam","features":[305,536]},{"name":"WM_DDE_ACK","features":[536]},{"name":"WM_DDE_ADVISE","features":[536]},{"name":"WM_DDE_DATA","features":[536]},{"name":"WM_DDE_EXECUTE","features":[536]},{"name":"WM_DDE_FIRST","features":[536]},{"name":"WM_DDE_INITIATE","features":[536]},{"name":"WM_DDE_LAST","features":[536]},{"name":"WM_DDE_POKE","features":[536]},{"name":"WM_DDE_REQUEST","features":[536]},{"name":"WM_DDE_TERMINATE","features":[536]},{"name":"WM_DDE_UNADVISE","features":[536]},{"name":"XCLASS_BOOL","features":[536]},{"name":"XCLASS_DATA","features":[536]},{"name":"XCLASS_FLAGS","features":[536]},{"name":"XCLASS_MASK","features":[536]},{"name":"XCLASS_NOTIFICATION","features":[536]},{"name":"XST_ADVACKRCVD","features":[536]},{"name":"XST_ADVDATAACKRCVD","features":[536]},{"name":"XST_ADVDATASENT","features":[536]},{"name":"XST_ADVSENT","features":[536]},{"name":"XST_CONNECTED","features":[536]},{"name":"XST_DATARCVD","features":[536]},{"name":"XST_EXECACKRCVD","features":[536]},{"name":"XST_EXECSENT","features":[536]},{"name":"XST_INCOMPLETE","features":[536]},{"name":"XST_INIT1","features":[536]},{"name":"XST_INIT2","features":[536]},{"name":"XST_NULL","features":[536]},{"name":"XST_POKEACKRCVD","features":[536]},{"name":"XST_POKESENT","features":[536]},{"name":"XST_REQSENT","features":[536]},{"name":"XST_UNADVACKRCVD","features":[536]},{"name":"XST_UNADVSENT","features":[536]},{"name":"XTYPF_ACKREQ","features":[536]},{"name":"XTYPF_NOBLOCK","features":[536]},{"name":"XTYPF_NODATA","features":[536]},{"name":"XTYP_ADVDATA","features":[536]},{"name":"XTYP_ADVREQ","features":[536]},{"name":"XTYP_ADVSTART","features":[536]},{"name":"XTYP_ADVSTOP","features":[536]},{"name":"XTYP_CONNECT","features":[536]},{"name":"XTYP_CONNECT_CONFIRM","features":[536]},{"name":"XTYP_DISCONNECT","features":[536]},{"name":"XTYP_EXECUTE","features":[536]},{"name":"XTYP_MASK","features":[536]},{"name":"XTYP_MONITOR","features":[536]},{"name":"XTYP_POKE","features":[536]},{"name":"XTYP_REGISTER","features":[536]},{"name":"XTYP_REQUEST","features":[536]},{"name":"XTYP_SHIFT","features":[536]},{"name":"XTYP_UNREGISTER","features":[536]},{"name":"XTYP_WILDCONNECT","features":[536]},{"name":"XTYP_XACT_COMPLETE","features":[536]}],"549":[{"name":"CPU_ARCHITECTURE","features":[537]},{"name":"CPU_ARCHITECTURE_AMD64","features":[537]},{"name":"CPU_ARCHITECTURE_IA64","features":[537]},{"name":"CPU_ARCHITECTURE_INTEL","features":[537]},{"name":"EVT_WDSMCS_E_CP_CALLBACKS_NOT_REG","features":[537]},{"name":"EVT_WDSMCS_E_CP_CLOSE_INSTANCE_FAILED","features":[537]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED","features":[537]},{"name":"EVT_WDSMCS_E_CP_DLL_LOAD_FAILED_CRITICAL","features":[537]},{"name":"EVT_WDSMCS_E_CP_INCOMPATIBLE_SERVER_VERSION","features":[537]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_FAILED","features":[537]},{"name":"EVT_WDSMCS_E_CP_INIT_FUNC_MISSING","features":[537]},{"name":"EVT_WDSMCS_E_CP_MEMORY_LEAK","features":[537]},{"name":"EVT_WDSMCS_E_CP_OPEN_CONTENT_FAILED","features":[537]},{"name":"EVT_WDSMCS_E_CP_OPEN_INSTANCE_FAILED","features":[537]},{"name":"EVT_WDSMCS_E_CP_SHUTDOWN_FUNC_FAILED","features":[537]},{"name":"EVT_WDSMCS_E_DUPLICATE_MULTICAST_ADDR","features":[537]},{"name":"EVT_WDSMCS_E_NON_WDS_DUPLICATE_MULTICAST_ADDR","features":[537]},{"name":"EVT_WDSMCS_E_NSREG_CONTENT_PROVIDER_NOT_REG","features":[537]},{"name":"EVT_WDSMCS_E_NSREG_FAILURE","features":[537]},{"name":"EVT_WDSMCS_E_NSREG_NAMESPACE_EXISTS","features":[537]},{"name":"EVT_WDSMCS_E_NSREG_START_TIME_IN_PAST","features":[537]},{"name":"EVT_WDSMCS_E_PARAMETERS_READ_FAILED","features":[537]},{"name":"EVT_WDSMCS_S_PARAMETERS_READ","features":[537]},{"name":"EVT_WDSMCS_W_CP_DLL_LOAD_FAILED_NOT_CRITICAL","features":[537]},{"name":"FACILITY_WDSMCCLIENT","features":[537]},{"name":"FACILITY_WDSMCSERVER","features":[537]},{"name":"FACILITY_WDSTPTMGMT","features":[537]},{"name":"IWdsTransportCacheable","features":[356,537]},{"name":"IWdsTransportClient","features":[356,537]},{"name":"IWdsTransportCollection","features":[356,537]},{"name":"IWdsTransportConfigurationManager","features":[356,537]},{"name":"IWdsTransportConfigurationManager2","features":[356,537]},{"name":"IWdsTransportContent","features":[356,537]},{"name":"IWdsTransportContentProvider","features":[356,537]},{"name":"IWdsTransportDiagnosticsPolicy","features":[356,537]},{"name":"IWdsTransportManager","features":[356,537]},{"name":"IWdsTransportMulticastSessionPolicy","features":[356,537]},{"name":"IWdsTransportNamespace","features":[356,537]},{"name":"IWdsTransportNamespaceAutoCast","features":[356,537]},{"name":"IWdsTransportNamespaceManager","features":[356,537]},{"name":"IWdsTransportNamespaceScheduledCast","features":[356,537]},{"name":"IWdsTransportNamespaceScheduledCastAutoStart","features":[356,537]},{"name":"IWdsTransportNamespaceScheduledCastManualStart","features":[356,537]},{"name":"IWdsTransportServer","features":[356,537]},{"name":"IWdsTransportServer2","features":[356,537]},{"name":"IWdsTransportServicePolicy","features":[356,537]},{"name":"IWdsTransportServicePolicy2","features":[356,537]},{"name":"IWdsTransportSession","features":[356,537]},{"name":"IWdsTransportSetupManager","features":[356,537]},{"name":"IWdsTransportSetupManager2","features":[356,537]},{"name":"IWdsTransportTftpClient","features":[356,537]},{"name":"IWdsTransportTftpManager","features":[356,537]},{"name":"MC_SERVER_CURRENT_VERSION","features":[537]},{"name":"PFN_WDS_CLI_CALLBACK_MESSAGE_ID","features":[537]},{"name":"PFN_WdsCliCallback","features":[305,537]},{"name":"PFN_WdsCliTraceFunction","features":[537]},{"name":"PFN_WdsTransportClientReceiveContents","features":[305,537]},{"name":"PFN_WdsTransportClientReceiveMetadata","features":[305,537]},{"name":"PFN_WdsTransportClientSessionComplete","features":[305,537]},{"name":"PFN_WdsTransportClientSessionNegotiate","features":[305,537]},{"name":"PFN_WdsTransportClientSessionStart","features":[305,537]},{"name":"PFN_WdsTransportClientSessionStartEx","features":[305,537]},{"name":"PXE_ADDRESS","features":[537]},{"name":"PXE_ADDR_BROADCAST","features":[537]},{"name":"PXE_ADDR_USE_ADDR","features":[537]},{"name":"PXE_ADDR_USE_DHCP_RULES","features":[537]},{"name":"PXE_ADDR_USE_PORT","features":[537]},{"name":"PXE_BA_CUSTOM","features":[537]},{"name":"PXE_BA_IGNORE","features":[537]},{"name":"PXE_BA_NBP","features":[537]},{"name":"PXE_BA_REJECTED","features":[537]},{"name":"PXE_CALLBACK_MAX","features":[537]},{"name":"PXE_CALLBACK_RECV_REQUEST","features":[537]},{"name":"PXE_CALLBACK_SERVICE_CONTROL","features":[537]},{"name":"PXE_CALLBACK_SHUTDOWN","features":[537]},{"name":"PXE_DHCPV6_CLIENT_PORT","features":[537]},{"name":"PXE_DHCPV6_MESSAGE","features":[537]},{"name":"PXE_DHCPV6_MESSAGE_HEADER","features":[537]},{"name":"PXE_DHCPV6_NESTED_RELAY_MESSAGE","features":[537]},{"name":"PXE_DHCPV6_OPTION","features":[537]},{"name":"PXE_DHCPV6_RELAY_HOP_COUNT_LIMIT","features":[537]},{"name":"PXE_DHCPV6_RELAY_MESSAGE","features":[537]},{"name":"PXE_DHCPV6_SERVER_PORT","features":[537]},{"name":"PXE_DHCP_CLIENT_PORT","features":[537]},{"name":"PXE_DHCP_FILE_SIZE","features":[537]},{"name":"PXE_DHCP_HWAADR_SIZE","features":[537]},{"name":"PXE_DHCP_MAGIC_COOKIE_SIZE","features":[537]},{"name":"PXE_DHCP_MESSAGE","features":[537]},{"name":"PXE_DHCP_OPTION","features":[537]},{"name":"PXE_DHCP_SERVER_PORT","features":[537]},{"name":"PXE_DHCP_SERVER_SIZE","features":[537]},{"name":"PXE_GSI_SERVER_DUID","features":[537]},{"name":"PXE_GSI_TRACE_ENABLED","features":[537]},{"name":"PXE_MAX_ADDRESS","features":[537]},{"name":"PXE_PROVIDER","features":[305,537]},{"name":"PXE_PROV_ATTR_FILTER","features":[537]},{"name":"PXE_PROV_ATTR_FILTER_IPV6","features":[537]},{"name":"PXE_PROV_ATTR_IPV6_CAPABLE","features":[537]},{"name":"PXE_PROV_FILTER_ALL","features":[537]},{"name":"PXE_PROV_FILTER_DHCP_ONLY","features":[537]},{"name":"PXE_PROV_FILTER_PXE_ONLY","features":[537]},{"name":"PXE_REG_INDEX_BOTTOM","features":[537]},{"name":"PXE_REG_INDEX_TOP","features":[537]},{"name":"PXE_SERVER_PORT","features":[537]},{"name":"PXE_TRACE_ERROR","features":[537]},{"name":"PXE_TRACE_FATAL","features":[537]},{"name":"PXE_TRACE_INFO","features":[537]},{"name":"PXE_TRACE_VERBOSE","features":[537]},{"name":"PXE_TRACE_WARNING","features":[537]},{"name":"PxeAsyncRecvDone","features":[305,537]},{"name":"PxeDhcpAppendOption","features":[537]},{"name":"PxeDhcpAppendOptionRaw","features":[537]},{"name":"PxeDhcpGetOptionValue","features":[537]},{"name":"PxeDhcpGetVendorOptionValue","features":[537]},{"name":"PxeDhcpInitialize","features":[537]},{"name":"PxeDhcpIsValid","features":[305,537]},{"name":"PxeDhcpv6AppendOption","features":[537]},{"name":"PxeDhcpv6AppendOptionRaw","features":[537]},{"name":"PxeDhcpv6CreateRelayRepl","features":[537]},{"name":"PxeDhcpv6GetOptionValue","features":[537]},{"name":"PxeDhcpv6GetVendorOptionValue","features":[537]},{"name":"PxeDhcpv6Initialize","features":[537]},{"name":"PxeDhcpv6IsValid","features":[305,537]},{"name":"PxeDhcpv6ParseRelayForw","features":[537]},{"name":"PxeGetServerInfo","features":[537]},{"name":"PxeGetServerInfoEx","features":[537]},{"name":"PxePacketAllocate","features":[305,537]},{"name":"PxePacketFree","features":[305,537]},{"name":"PxeProviderEnumClose","features":[305,537]},{"name":"PxeProviderEnumFirst","features":[305,537]},{"name":"PxeProviderEnumNext","features":[305,537]},{"name":"PxeProviderFreeInfo","features":[305,537]},{"name":"PxeProviderQueryIndex","features":[537]},{"name":"PxeProviderRegister","features":[305,537,366]},{"name":"PxeProviderSetAttribute","features":[305,537]},{"name":"PxeProviderUnRegister","features":[537]},{"name":"PxeRegisterCallback","features":[305,537]},{"name":"PxeSendReply","features":[305,537]},{"name":"PxeTrace","features":[305,537]},{"name":"PxeTraceV","features":[305,537]},{"name":"TRANSPORTCLIENT_CALLBACK_ID","features":[537]},{"name":"TRANSPORTCLIENT_SESSION_INFO","features":[537]},{"name":"TRANSPORTPROVIDER_CALLBACK_ID","features":[537]},{"name":"TRANSPORTPROVIDER_CURRENT_VERSION","features":[537]},{"name":"WDSBP_OPTVAL_ACTION_ABORT","features":[537]},{"name":"WDSBP_OPTVAL_ACTION_APPROVAL","features":[537]},{"name":"WDSBP_OPTVAL_ACTION_REFERRAL","features":[537]},{"name":"WDSBP_OPTVAL_NBP_VER_7","features":[537]},{"name":"WDSBP_OPTVAL_NBP_VER_8","features":[537]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_NOPROMPT","features":[537]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTIN","features":[537]},{"name":"WDSBP_OPTVAL_PXE_PROMPT_OPTOUT","features":[537]},{"name":"WDSBP_OPT_TYPE_BYTE","features":[537]},{"name":"WDSBP_OPT_TYPE_IP4","features":[537]},{"name":"WDSBP_OPT_TYPE_IP6","features":[537]},{"name":"WDSBP_OPT_TYPE_NONE","features":[537]},{"name":"WDSBP_OPT_TYPE_STR","features":[537]},{"name":"WDSBP_OPT_TYPE_ULONG","features":[537]},{"name":"WDSBP_OPT_TYPE_USHORT","features":[537]},{"name":"WDSBP_OPT_TYPE_WSTR","features":[537]},{"name":"WDSBP_PK_TYPE_BCD","features":[537]},{"name":"WDSBP_PK_TYPE_DHCP","features":[537]},{"name":"WDSBP_PK_TYPE_DHCPV6","features":[537]},{"name":"WDSBP_PK_TYPE_WDSNBP","features":[537]},{"name":"WDSMCCLIENT_CATEGORY","features":[537]},{"name":"WDSMCSERVER_CATEGORY","features":[537]},{"name":"WDSMCS_E_CLIENT_DOESNOT_SUPPORT_SECURITY_MODE","features":[537]},{"name":"WDSMCS_E_CLIENT_NOT_FOUND","features":[537]},{"name":"WDSMCS_E_CONTENT_NOT_FOUND","features":[537]},{"name":"WDSMCS_E_CONTENT_PROVIDER_NOT_FOUND","features":[537]},{"name":"WDSMCS_E_INCOMPATIBLE_VERSION","features":[537]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_EXISTS","features":[537]},{"name":"WDSMCS_E_NAMESPACE_ALREADY_STARTED","features":[537]},{"name":"WDSMCS_E_NAMESPACE_NOT_FOUND","features":[537]},{"name":"WDSMCS_E_NAMESPACE_SHUTDOWN_IN_PROGRESS","features":[537]},{"name":"WDSMCS_E_NS_START_FAILED_NO_CLIENTS","features":[537]},{"name":"WDSMCS_E_PACKET_HAS_SECURITY","features":[537]},{"name":"WDSMCS_E_PACKET_NOT_CHECKSUMED","features":[537]},{"name":"WDSMCS_E_PACKET_NOT_HASHED","features":[537]},{"name":"WDSMCS_E_PACKET_NOT_SIGNED","features":[537]},{"name":"WDSMCS_E_REQCALLBACKS_NOT_REG","features":[537]},{"name":"WDSMCS_E_SESSION_SHUTDOWN_IN_PROGRESS","features":[537]},{"name":"WDSMCS_E_START_TIME_IN_PAST","features":[537]},{"name":"WDSTPC_E_ALREADY_COMPLETED","features":[537]},{"name":"WDSTPC_E_ALREADY_IN_LOWEST_SESSION","features":[537]},{"name":"WDSTPC_E_ALREADY_IN_PROGRESS","features":[537]},{"name":"WDSTPC_E_CALLBACKS_NOT_REG","features":[537]},{"name":"WDSTPC_E_CLIENT_DEMOTE_NOT_SUPPORTED","features":[537]},{"name":"WDSTPC_E_KICKED_FAIL","features":[537]},{"name":"WDSTPC_E_KICKED_FALLBACK","features":[537]},{"name":"WDSTPC_E_KICKED_POLICY_NOT_MET","features":[537]},{"name":"WDSTPC_E_KICKED_UNKNOWN","features":[537]},{"name":"WDSTPC_E_MULTISTREAM_NOT_ENABLED","features":[537]},{"name":"WDSTPC_E_NOT_INITIALIZED","features":[537]},{"name":"WDSTPC_E_NO_IP4_INTERFACE","features":[537]},{"name":"WDSTPC_E_UNKNOWN_ERROR","features":[537]},{"name":"WDSTPTC_E_WIM_APPLY_REQUIRES_REFERENCE_IMAGE","features":[537]},{"name":"WDSTPTMGMT_CATEGORY","features":[537]},{"name":"WDSTPTMGMT_E_CANNOT_REFRESH_DIRTY_OBJECT","features":[537]},{"name":"WDSTPTMGMT_E_CANNOT_REINITIALIZE_OBJECT","features":[537]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_ALREADY_REGISTERED","features":[537]},{"name":"WDSTPTMGMT_E_CONTENT_PROVIDER_NOT_REGISTERED","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_AUTO_DISCONNECT_THRESHOLD","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_CLASS","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_CONTENT_PROVIDER_NAME","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_DIAGNOSTICS_COMPONENTS","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_IPV4_MULTICAST_ADDRESS","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_IPV6_MULTICAST_ADDRESS_SOURCE","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_IP_ADDRESS","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_MULTISTREAM_STREAM_COUNT","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_DATA","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_NAME","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_PARAMETERS","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_NAMESPACE_START_TIME","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_OPERATION","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_PROPERTY","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_IP_ADDRESS_RANGE","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_SERVICE_PORT_RANGE","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_SLOW_CLIENT_HANDLING_TYPE","features":[537]},{"name":"WDSTPTMGMT_E_INVALID_TFTP_MAX_BLOCKSIZE","features":[537]},{"name":"WDSTPTMGMT_E_IPV6_NOT_SUPPORTED","features":[537]},{"name":"WDSTPTMGMT_E_MULTICAST_SESSION_POLICY_NOT_SUPPORTED","features":[537]},{"name":"WDSTPTMGMT_E_NAMESPACE_ALREADY_REGISTERED","features":[537]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_ON_SERVER","features":[537]},{"name":"WDSTPTMGMT_E_NAMESPACE_NOT_REGISTERED","features":[537]},{"name":"WDSTPTMGMT_E_NAMESPACE_READ_ONLY","features":[537]},{"name":"WDSTPTMGMT_E_NAMESPACE_REMOVED_FROM_SERVER","features":[537]},{"name":"WDSTPTMGMT_E_NETWORK_PROFILES_NOT_SUPPORTED","features":[537]},{"name":"WDSTPTMGMT_E_TFTP_MAX_BLOCKSIZE_NOT_SUPPORTED","features":[537]},{"name":"WDSTPTMGMT_E_TFTP_VAR_WINDOW_NOT_SUPPORTED","features":[537]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_ROLE_NOT_CONFIGURED","features":[537]},{"name":"WDSTPTMGMT_E_TRANSPORT_SERVER_UNAVAILABLE","features":[537]},{"name":"WDSTPTMGMT_E_UDP_PORT_POLICY_NOT_SUPPORTED","features":[537]},{"name":"WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS","features":[537]},{"name":"WDSTRANSPORT_DISCONNECT_TYPE","features":[537]},{"name":"WDSTRANSPORT_FEATURE_FLAGS","features":[537]},{"name":"WDSTRANSPORT_IP_ADDRESS_SOURCE_TYPE","features":[537]},{"name":"WDSTRANSPORT_IP_ADDRESS_TYPE","features":[537]},{"name":"WDSTRANSPORT_NAMESPACE_TYPE","features":[537]},{"name":"WDSTRANSPORT_NETWORK_PROFILE_TYPE","features":[537]},{"name":"WDSTRANSPORT_PROTOCOL_FLAGS","features":[537]},{"name":"WDSTRANSPORT_RESOURCE_UTILIZATION_UNKNOWN","features":[537]},{"name":"WDSTRANSPORT_SERVICE_NOTIFICATION","features":[537]},{"name":"WDSTRANSPORT_SLOW_CLIENT_HANDLING_TYPE","features":[537]},{"name":"WDSTRANSPORT_TFTP_CAPABILITY","features":[537]},{"name":"WDSTRANSPORT_UDP_PORT_POLICY","features":[537]},{"name":"WDS_CLI_CRED","features":[537]},{"name":"WDS_CLI_FIRMWARE_BIOS","features":[537]},{"name":"WDS_CLI_FIRMWARE_EFI","features":[537]},{"name":"WDS_CLI_FIRMWARE_TYPE","features":[537]},{"name":"WDS_CLI_FIRMWARE_UNKNOWN","features":[537]},{"name":"WDS_CLI_IMAGE_PARAM_SPARSE_FILE","features":[537]},{"name":"WDS_CLI_IMAGE_PARAM_SUPPORTED_FIRMWARES","features":[537]},{"name":"WDS_CLI_IMAGE_PARAM_TYPE","features":[537]},{"name":"WDS_CLI_IMAGE_PARAM_UNKNOWN","features":[537]},{"name":"WDS_CLI_IMAGE_TYPE","features":[537]},{"name":"WDS_CLI_IMAGE_TYPE_UNKNOWN","features":[537]},{"name":"WDS_CLI_IMAGE_TYPE_VHD","features":[537]},{"name":"WDS_CLI_IMAGE_TYPE_VHDX","features":[537]},{"name":"WDS_CLI_IMAGE_TYPE_WIM","features":[537]},{"name":"WDS_CLI_MSG_COMPLETE","features":[537]},{"name":"WDS_CLI_MSG_PROGRESS","features":[537]},{"name":"WDS_CLI_MSG_START","features":[537]},{"name":"WDS_CLI_MSG_TEXT","features":[537]},{"name":"WDS_CLI_NO_SPARSE_FILE","features":[537]},{"name":"WDS_CLI_TRANSFER_ASYNCHRONOUS","features":[537]},{"name":"WDS_LOG_LEVEL_DISABLED","features":[537]},{"name":"WDS_LOG_LEVEL_ERROR","features":[537]},{"name":"WDS_LOG_LEVEL_INFO","features":[537]},{"name":"WDS_LOG_LEVEL_WARNING","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_FINISHED_2","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_APPLY_STARTED_2","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_DOMAINJOINERROR_2","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_DRIVER_PACKAGE_NOT_ACCESSIBLE","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_ERROR","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_FINISHED","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_GENERIC_MESSAGE","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED2","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_IMAGE_SELECTED3","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_MAX_CODE","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_END","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_FAILURE","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_OFFLINE_DRIVER_INJECTION_START","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_END","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_POST_ACTIONS_START","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_STARTED","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_DOWNGRADE","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_END","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_TRANSFER_START","features":[537]},{"name":"WDS_LOG_TYPE_CLIENT_UNATTEND_MODE","features":[537]},{"name":"WDS_MC_TRACE_ERROR","features":[537]},{"name":"WDS_MC_TRACE_FATAL","features":[537]},{"name":"WDS_MC_TRACE_INFO","features":[537]},{"name":"WDS_MC_TRACE_VERBOSE","features":[537]},{"name":"WDS_MC_TRACE_WARNING","features":[537]},{"name":"WDS_TRANSPORTCLIENT_AUTH","features":[537]},{"name":"WDS_TRANSPORTCLIENT_CALLBACKS","features":[305,537]},{"name":"WDS_TRANSPORTCLIENT_CURRENT_API_VERSION","features":[537]},{"name":"WDS_TRANSPORTCLIENT_MAX_CALLBACKS","features":[537]},{"name":"WDS_TRANSPORTCLIENT_NO_AUTH","features":[537]},{"name":"WDS_TRANSPORTCLIENT_NO_CACHE","features":[537]},{"name":"WDS_TRANSPORTCLIENT_PROTOCOL_MULTICAST","features":[537]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_CONTENTS","features":[537]},{"name":"WDS_TRANSPORTCLIENT_RECEIVE_METADATA","features":[537]},{"name":"WDS_TRANSPORTCLIENT_REQUEST","features":[537]},{"name":"WDS_TRANSPORTCLIENT_REQUEST_AUTH_LEVEL","features":[537]},{"name":"WDS_TRANSPORTCLIENT_SESSION_COMPLETE","features":[537]},{"name":"WDS_TRANSPORTCLIENT_SESSION_NEGOTIATE","features":[537]},{"name":"WDS_TRANSPORTCLIENT_SESSION_START","features":[537]},{"name":"WDS_TRANSPORTCLIENT_SESSION_STARTEX","features":[537]},{"name":"WDS_TRANSPORTCLIENT_STATUS_FAILURE","features":[537]},{"name":"WDS_TRANSPORTCLIENT_STATUS_IN_PROGRESS","features":[537]},{"name":"WDS_TRANSPORTCLIENT_STATUS_SUCCESS","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_CONTENT","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_CLOSE_INSTANCE","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_COMPARE_CONTENT","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_CREATE_INSTANCE","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_DUMP_STATE","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_METADATA","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_GET_CONTENT_SIZE","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_INIT_PARAMS","features":[305,537,366]},{"name":"WDS_TRANSPORTPROVIDER_MAX_CALLBACKS","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_OPEN_CONTENT","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_READ_CONTENT","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_REFRESH_SETTINGS","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_SETTINGS","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_SHUTDOWN","features":[537]},{"name":"WDS_TRANSPORTPROVIDER_USER_ACCESS_CHECK","features":[537]},{"name":"WdsBpAddOption","features":[305,537]},{"name":"WdsBpCloseHandle","features":[305,537]},{"name":"WdsBpGetOptionBuffer","features":[305,537]},{"name":"WdsBpInitialize","features":[305,537]},{"name":"WdsBpParseInitialize","features":[305,537]},{"name":"WdsBpParseInitializev6","features":[305,537]},{"name":"WdsBpQueryOption","features":[305,537]},{"name":"WdsCliAuthorizeSession","features":[305,537]},{"name":"WdsCliCancelTransfer","features":[305,537]},{"name":"WdsCliClose","features":[305,537]},{"name":"WdsCliCreateSession","features":[305,537]},{"name":"WdsCliFindFirstImage","features":[305,537]},{"name":"WdsCliFindNextImage","features":[305,537]},{"name":"WdsCliFlagEnumFilterFirmware","features":[537]},{"name":"WdsCliFlagEnumFilterVersion","features":[537]},{"name":"WdsCliFreeStringArray","features":[537]},{"name":"WdsCliGetDriverQueryXml","features":[537]},{"name":"WdsCliGetEnumerationFlags","features":[305,537]},{"name":"WdsCliGetImageArchitecture","features":[305,537]},{"name":"WdsCliGetImageDescription","features":[305,537]},{"name":"WdsCliGetImageFiles","features":[305,537]},{"name":"WdsCliGetImageGroup","features":[305,537]},{"name":"WdsCliGetImageHalName","features":[305,537]},{"name":"WdsCliGetImageHandleFromFindHandle","features":[305,537]},{"name":"WdsCliGetImageHandleFromTransferHandle","features":[305,537]},{"name":"WdsCliGetImageIndex","features":[305,537]},{"name":"WdsCliGetImageLanguage","features":[305,537]},{"name":"WdsCliGetImageLanguages","features":[305,537]},{"name":"WdsCliGetImageLastModifiedTime","features":[305,537]},{"name":"WdsCliGetImageName","features":[305,537]},{"name":"WdsCliGetImageNamespace","features":[305,537]},{"name":"WdsCliGetImageParameter","features":[305,537]},{"name":"WdsCliGetImagePath","features":[305,537]},{"name":"WdsCliGetImageSize","features":[305,537]},{"name":"WdsCliGetImageType","features":[305,537]},{"name":"WdsCliGetImageVersion","features":[305,537]},{"name":"WdsCliGetTransferSize","features":[305,537]},{"name":"WdsCliInitializeLog","features":[305,537]},{"name":"WdsCliLog","features":[305,537]},{"name":"WdsCliObtainDriverPackages","features":[305,537]},{"name":"WdsCliObtainDriverPackagesEx","features":[305,537]},{"name":"WdsCliRegisterTrace","features":[537]},{"name":"WdsCliSetTransferBufferSize","features":[537]},{"name":"WdsCliTransferFile","features":[305,537]},{"name":"WdsCliTransferImage","features":[305,537]},{"name":"WdsCliWaitForTransfer","features":[305,537]},{"name":"WdsTptDiagnosticsComponentImageServer","features":[537]},{"name":"WdsTptDiagnosticsComponentMulticast","features":[537]},{"name":"WdsTptDiagnosticsComponentPxe","features":[537]},{"name":"WdsTptDiagnosticsComponentTftp","features":[537]},{"name":"WdsTptDisconnectAbort","features":[537]},{"name":"WdsTptDisconnectFallback","features":[537]},{"name":"WdsTptDisconnectUnknown","features":[537]},{"name":"WdsTptFeatureAdminPack","features":[537]},{"name":"WdsTptFeatureDeploymentServer","features":[537]},{"name":"WdsTptFeatureTransportServer","features":[537]},{"name":"WdsTptIpAddressIpv4","features":[537]},{"name":"WdsTptIpAddressIpv6","features":[537]},{"name":"WdsTptIpAddressSourceDhcp","features":[537]},{"name":"WdsTptIpAddressSourceRange","features":[537]},{"name":"WdsTptIpAddressSourceUnknown","features":[537]},{"name":"WdsTptIpAddressUnknown","features":[537]},{"name":"WdsTptNamespaceTypeAutoCast","features":[537]},{"name":"WdsTptNamespaceTypeScheduledCastAutoStart","features":[537]},{"name":"WdsTptNamespaceTypeScheduledCastManualStart","features":[537]},{"name":"WdsTptNamespaceTypeUnknown","features":[537]},{"name":"WdsTptNetworkProfile100Mbps","features":[537]},{"name":"WdsTptNetworkProfile10Mbps","features":[537]},{"name":"WdsTptNetworkProfile1Gbps","features":[537]},{"name":"WdsTptNetworkProfileCustom","features":[537]},{"name":"WdsTptNetworkProfileUnknown","features":[537]},{"name":"WdsTptProtocolMulticast","features":[537]},{"name":"WdsTptProtocolUnicast","features":[537]},{"name":"WdsTptServiceNotifyReadSettings","features":[537]},{"name":"WdsTptServiceNotifyUnknown","features":[537]},{"name":"WdsTptSlowClientHandlingAutoDisconnect","features":[537]},{"name":"WdsTptSlowClientHandlingMultistream","features":[537]},{"name":"WdsTptSlowClientHandlingNone","features":[537]},{"name":"WdsTptSlowClientHandlingUnknown","features":[537]},{"name":"WdsTptTftpCapMaximumBlockSize","features":[537]},{"name":"WdsTptTftpCapVariableWindow","features":[537]},{"name":"WdsTptUdpPortPolicyDynamic","features":[537]},{"name":"WdsTptUdpPortPolicyFixed","features":[537]},{"name":"WdsTransportCacheable","features":[537]},{"name":"WdsTransportClient","features":[537]},{"name":"WdsTransportClientAddRefBuffer","features":[537]},{"name":"WdsTransportClientCancelSession","features":[305,537]},{"name":"WdsTransportClientCancelSessionEx","features":[305,537]},{"name":"WdsTransportClientCloseSession","features":[305,537]},{"name":"WdsTransportClientCompleteReceive","features":[305,537]},{"name":"WdsTransportClientInitialize","features":[537]},{"name":"WdsTransportClientInitializeSession","features":[305,537]},{"name":"WdsTransportClientQueryStatus","features":[305,537]},{"name":"WdsTransportClientRegisterCallback","features":[305,537]},{"name":"WdsTransportClientReleaseBuffer","features":[537]},{"name":"WdsTransportClientShutdown","features":[537]},{"name":"WdsTransportClientStartSession","features":[305,537]},{"name":"WdsTransportClientWaitForCompletion","features":[305,537]},{"name":"WdsTransportCollection","features":[537]},{"name":"WdsTransportConfigurationManager","features":[537]},{"name":"WdsTransportContent","features":[537]},{"name":"WdsTransportContentProvider","features":[537]},{"name":"WdsTransportDiagnosticsPolicy","features":[537]},{"name":"WdsTransportManager","features":[537]},{"name":"WdsTransportMulticastSessionPolicy","features":[537]},{"name":"WdsTransportNamespace","features":[537]},{"name":"WdsTransportNamespaceAutoCast","features":[537]},{"name":"WdsTransportNamespaceManager","features":[537]},{"name":"WdsTransportNamespaceScheduledCast","features":[537]},{"name":"WdsTransportNamespaceScheduledCastAutoStart","features":[537]},{"name":"WdsTransportNamespaceScheduledCastManualStart","features":[537]},{"name":"WdsTransportServer","features":[537]},{"name":"WdsTransportServerAllocateBuffer","features":[305,537]},{"name":"WdsTransportServerCompleteRead","features":[305,537]},{"name":"WdsTransportServerFreeBuffer","features":[305,537]},{"name":"WdsTransportServerRegisterCallback","features":[305,537]},{"name":"WdsTransportServerTrace","features":[305,537]},{"name":"WdsTransportServerTraceV","features":[305,537]},{"name":"WdsTransportServicePolicy","features":[537]},{"name":"WdsTransportSession","features":[537]},{"name":"WdsTransportSetupManager","features":[537]},{"name":"WdsTransportTftpClient","features":[537]},{"name":"WdsTransportTftpManager","features":[537]}],"550":[{"name":"APP_FLAG_PRIVILEGED","features":[538]},{"name":"ATTENDEE_DISCONNECT_REASON","features":[538]},{"name":"ATTENDEE_DISCONNECT_REASON_APP","features":[538]},{"name":"ATTENDEE_DISCONNECT_REASON_CLI","features":[538]},{"name":"ATTENDEE_DISCONNECT_REASON_ERR","features":[538]},{"name":"ATTENDEE_DISCONNECT_REASON_MAX","features":[538]},{"name":"ATTENDEE_DISCONNECT_REASON_MIN","features":[538]},{"name":"ATTENDEE_FLAGS_LOCAL","features":[538]},{"name":"CHANNEL_ACCESS_ENUM","features":[538]},{"name":"CHANNEL_ACCESS_ENUM_NONE","features":[538]},{"name":"CHANNEL_ACCESS_ENUM_SENDRECEIVE","features":[538]},{"name":"CHANNEL_FLAGS","features":[538]},{"name":"CHANNEL_FLAGS_DYNAMIC","features":[538]},{"name":"CHANNEL_FLAGS_LEGACY","features":[538]},{"name":"CHANNEL_FLAGS_UNCOMPRESSED","features":[538]},{"name":"CHANNEL_PRIORITY","features":[538]},{"name":"CHANNEL_PRIORITY_HI","features":[538]},{"name":"CHANNEL_PRIORITY_LO","features":[538]},{"name":"CHANNEL_PRIORITY_MED","features":[538]},{"name":"CONST_ATTENDEE_ID_DEFAULT","features":[538]},{"name":"CONST_ATTENDEE_ID_EVERYONE","features":[538]},{"name":"CONST_ATTENDEE_ID_HOST","features":[538]},{"name":"CONST_CONN_INTERVAL","features":[538]},{"name":"CONST_MAX_CHANNEL_MESSAGE_SIZE","features":[538]},{"name":"CONST_MAX_CHANNEL_NAME_LEN","features":[538]},{"name":"CONST_MAX_LEGACY_CHANNEL_MESSAGE_SIZE","features":[538]},{"name":"CTRL_LEVEL","features":[538]},{"name":"CTRL_LEVEL_INTERACTIVE","features":[538]},{"name":"CTRL_LEVEL_INVALID","features":[538]},{"name":"CTRL_LEVEL_MAX","features":[538]},{"name":"CTRL_LEVEL_MIN","features":[538]},{"name":"CTRL_LEVEL_NONE","features":[538]},{"name":"CTRL_LEVEL_REQCTRL_INTERACTIVE","features":[538]},{"name":"CTRL_LEVEL_REQCTRL_VIEW","features":[538]},{"name":"CTRL_LEVEL_VIEW","features":[538]},{"name":"DISPID_RDPAPI_EVENT_ON_BOUNDING_RECT_CHANGED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPFILTER_UPDATE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPLICATION_CLOSE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPLICATION_OPEN","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_APPLICATION_UPDATE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ATTENDEE_CONNECTED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ATTENDEE_DISCONNECTED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ATTENDEE_UPDATE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_CTRLLEVEL_CHANGE_REQUEST","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_CTRLLEVEL_CHANGE_RESPONSE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_ERROR","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_FOCUSRELEASED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_GRAPHICS_STREAM_PAUSED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_GRAPHICS_STREAM_RESUMED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_SHARED_DESKTOP_SETTINGS_CHANGED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_SHARED_RECT_CHANGED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_STREAM_CLOSED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_STREAM_DATARECEIVED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_STREAM_SENDCOMPLETED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_AUTHENTICATED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_CONNECTED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_CONNECTFAILED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIEWER_DISCONNECTED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_DATARECEIVED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_JOIN","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_LEAVE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_VIRTUAL_CHANNEL_SENDCOMPLETED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_WINDOW_CLOSE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_WINDOW_OPEN","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_ON_WINDOW_UPDATE","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_VIEW_MOUSE_BUTTON_RECEIVED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_VIEW_MOUSE_MOVE_RECEIVED","features":[538]},{"name":"DISPID_RDPSRAPI_EVENT_VIEW_MOUSE_WHEEL_RECEIVED","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_ADD_TOUCH_INPUT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_BEGIN_TOUCH_FRAME","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_CLOSE","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_CONNECTTOCLIENT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_CONNECTUSINGTRANSPORTSTREAM","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_CREATE_INVITATION","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_END_TOUCH_FRAME","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_GETFRAMEBUFFERBITS","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_GETSHAREDRECT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_OPEN","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_PAUSE","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_REQUEST_COLOR_DEPTH_CHANGE","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_REQUEST_CONTROL","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_RESUME","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SENDCONTROLLEVELCHANGERESPONSE","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_KEYBOARD_EVENT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_MOUSE_BUTTON_EVENT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_MOUSE_MOVE_EVENT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_MOUSE_WHEEL_EVENT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SEND_SYNC_EVENT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SETSHAREDRECT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SET_RENDERING_SURFACE","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_SHOW_WINDOW","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_STARTREVCONNECTLISTENER","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMCLOSE","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMOPEN","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMREADDATA","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_STREAMSENDDATA","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_STREAM_ALLOCBUFFER","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_STREAM_FREEBUFFER","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_TERMINATE_CONNECTION","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_VIEWERCONNECT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_VIEWERDISCONNECT","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_VIRTUAL_CHANNEL_CREATE","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_VIRTUAL_CHANNEL_SEND_DATA","features":[538]},{"name":"DISPID_RDPSRAPI_METHOD_VIRTUAL_CHANNEL_SET_ACCESS","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_APPFILTERENABLED","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_APPFILTER_ENABLED","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_APPFLAGS","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_APPLICATION","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_APPLICATION_FILTER","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_APPLICATION_LIST","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_APPNAME","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_ATTENDEELIMIT","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_ATTENDEES","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_ATTENDEE_FLAGS","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_CHANNELMANAGER","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_CODE","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_CONINFO","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_CONNECTION_STRING","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_COUNT","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_CTRL_LEVEL","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_DBG_CLX_CMDLINE","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_DISCONNECTED_STRING","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_DISPIDVALUE","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER_BPP","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER_HEIGHT","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_FRAMEBUFFER_WIDTH","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_GROUP_NAME","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_ID","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_INVITATION","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_INVITATIONITEM","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_INVITATIONS","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_LOCAL_IP","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_LOCAL_PORT","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_PASSWORD","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_PEER_IP","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_PEER_PORT","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_PROTOCOL_TYPE","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_REASON","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_REMOTENAME","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_REVOKED","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_SESSION_COLORDEPTH","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_SESSION_PROPERTIES","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_SHARED","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_CONTEXT","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_FLAGS","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_PAYLOADOFFSET","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_PAYLOADSIZE","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_STORAGE","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_STREAMBUFFER_STORESIZE","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_USESMARTSIZING","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_VIRTUAL_CHANNEL_GETFLAGS","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_VIRTUAL_CHANNEL_GETNAME","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_VIRTUAL_CHANNEL_GETPRIORITY","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_WINDOWID","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_WINDOWNAME","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_WINDOWSHARED","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_WINDOW_LIST","features":[538]},{"name":"DISPID_RDPSRAPI_PROP_WNDFLAGS","features":[538]},{"name":"IRDPSRAPIApplication","features":[356,538]},{"name":"IRDPSRAPIApplicationFilter","features":[356,538]},{"name":"IRDPSRAPIApplicationList","features":[356,538]},{"name":"IRDPSRAPIAttendee","features":[356,538]},{"name":"IRDPSRAPIAttendeeDisconnectInfo","features":[356,538]},{"name":"IRDPSRAPIAttendeeManager","features":[356,538]},{"name":"IRDPSRAPIAudioStream","features":[538]},{"name":"IRDPSRAPIClipboardUseEvents","features":[538]},{"name":"IRDPSRAPIDebug","features":[538]},{"name":"IRDPSRAPIFrameBuffer","features":[356,538]},{"name":"IRDPSRAPIInvitation","features":[356,538]},{"name":"IRDPSRAPIInvitationManager","features":[356,538]},{"name":"IRDPSRAPIPerfCounterLogger","features":[538]},{"name":"IRDPSRAPIPerfCounterLoggingManager","features":[538]},{"name":"IRDPSRAPISessionProperties","features":[356,538]},{"name":"IRDPSRAPISharingSession","features":[356,538]},{"name":"IRDPSRAPISharingSession2","features":[356,538]},{"name":"IRDPSRAPITcpConnectionInfo","features":[356,538]},{"name":"IRDPSRAPITransportStream","features":[538]},{"name":"IRDPSRAPITransportStreamBuffer","features":[538]},{"name":"IRDPSRAPITransportStreamEvents","features":[538]},{"name":"IRDPSRAPIViewer","features":[356,538]},{"name":"IRDPSRAPIVirtualChannel","features":[356,538]},{"name":"IRDPSRAPIVirtualChannelManager","features":[356,538]},{"name":"IRDPSRAPIWindow","features":[356,538]},{"name":"IRDPSRAPIWindowList","features":[356,538]},{"name":"IRDPViewerInputSink","features":[538]},{"name":"RDPENCOMAPI_ATTENDEE_FLAGS","features":[538]},{"name":"RDPENCOMAPI_CONSTANTS","features":[538]},{"name":"RDPSRAPIApplication","features":[538]},{"name":"RDPSRAPIApplicationFilter","features":[538]},{"name":"RDPSRAPIApplicationList","features":[538]},{"name":"RDPSRAPIAttendee","features":[538]},{"name":"RDPSRAPIAttendeeDisconnectInfo","features":[538]},{"name":"RDPSRAPIAttendeeManager","features":[538]},{"name":"RDPSRAPIFrameBuffer","features":[538]},{"name":"RDPSRAPIInvitation","features":[538]},{"name":"RDPSRAPIInvitationManager","features":[538]},{"name":"RDPSRAPISessionProperties","features":[538]},{"name":"RDPSRAPITcpConnectionInfo","features":[538]},{"name":"RDPSRAPIWindow","features":[538]},{"name":"RDPSRAPIWindowList","features":[538]},{"name":"RDPSRAPI_APP_FLAGS","features":[538]},{"name":"RDPSRAPI_KBD_CODE_SCANCODE","features":[538]},{"name":"RDPSRAPI_KBD_CODE_TYPE","features":[538]},{"name":"RDPSRAPI_KBD_CODE_UNICODE","features":[538]},{"name":"RDPSRAPI_KBD_SYNC_FLAG","features":[538]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_CAPS_LOCK","features":[538]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_KANA_LOCK","features":[538]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_NUM_LOCK","features":[538]},{"name":"RDPSRAPI_KBD_SYNC_FLAG_SCROLL_LOCK","features":[538]},{"name":"RDPSRAPI_MOUSE_BUTTON_BUTTON1","features":[538]},{"name":"RDPSRAPI_MOUSE_BUTTON_BUTTON2","features":[538]},{"name":"RDPSRAPI_MOUSE_BUTTON_BUTTON3","features":[538]},{"name":"RDPSRAPI_MOUSE_BUTTON_TYPE","features":[538]},{"name":"RDPSRAPI_MOUSE_BUTTON_XBUTTON1","features":[538]},{"name":"RDPSRAPI_MOUSE_BUTTON_XBUTTON2","features":[538]},{"name":"RDPSRAPI_MOUSE_BUTTON_XBUTTON3","features":[538]},{"name":"RDPSRAPI_WND_FLAGS","features":[538]},{"name":"RDPSession","features":[538]},{"name":"RDPTransportStreamBuffer","features":[538]},{"name":"RDPTransportStreamEvents","features":[538]},{"name":"RDPViewer","features":[538]},{"name":"WND_FLAG_PRIVILEGED","features":[538]},{"name":"_IRDPSessionEvents","features":[356,538]},{"name":"__ReferenceRemainingTypes__","features":[538]}],"551":[{"name":"AcquireDeveloperLicense","features":[305,539]},{"name":"CheckDeveloperLicense","features":[305,539]},{"name":"RemoveDeveloperLicense","features":[305,539]}],"552":[{"name":"CeipIsOptedIn","features":[305,540]}],"553":[{"name":"COR_DEBUG_IL_TO_NATIVE_MAP","features":[541]},{"name":"COR_IL_MAP","features":[305,541]},{"name":"COR_PRF_ALL","features":[541]},{"name":"COR_PRF_ALLOWABLE_AFTER_ATTACH","features":[541]},{"name":"COR_PRF_ALLOWABLE_NOTIFICATION_PROFILER","features":[541]},{"name":"COR_PRF_ASSEMBLY_REFERENCE_INFO","features":[541,542]},{"name":"COR_PRF_CACHED_FUNCTION_FOUND","features":[541]},{"name":"COR_PRF_CACHED_FUNCTION_NOT_FOUND","features":[541]},{"name":"COR_PRF_CLAUSE_CATCH","features":[541]},{"name":"COR_PRF_CLAUSE_FILTER","features":[541]},{"name":"COR_PRF_CLAUSE_FINALLY","features":[541]},{"name":"COR_PRF_CLAUSE_NONE","features":[541]},{"name":"COR_PRF_CLAUSE_TYPE","features":[541]},{"name":"COR_PRF_CODEGEN_DISABLE_ALL_OPTIMIZATIONS","features":[541]},{"name":"COR_PRF_CODEGEN_DISABLE_INLINING","features":[541]},{"name":"COR_PRF_CODEGEN_FLAGS","features":[541]},{"name":"COR_PRF_CODE_INFO","features":[541]},{"name":"COR_PRF_CORE_CLR","features":[541]},{"name":"COR_PRF_DESKTOP_CLR","features":[541]},{"name":"COR_PRF_DISABLE_ALL_NGEN_IMAGES","features":[541]},{"name":"COR_PRF_DISABLE_INLINING","features":[541]},{"name":"COR_PRF_DISABLE_OPTIMIZATIONS","features":[541]},{"name":"COR_PRF_DISABLE_TRANSPARENCY_CHECKS_UNDER_FULL_TRUST","features":[541]},{"name":"COR_PRF_ENABLE_FRAME_INFO","features":[541]},{"name":"COR_PRF_ENABLE_FUNCTION_ARGS","features":[541]},{"name":"COR_PRF_ENABLE_FUNCTION_RETVAL","features":[541]},{"name":"COR_PRF_ENABLE_INPROC_DEBUGGING","features":[541]},{"name":"COR_PRF_ENABLE_JIT_MAPS","features":[541]},{"name":"COR_PRF_ENABLE_OBJECT_ALLOCATED","features":[541]},{"name":"COR_PRF_ENABLE_REJIT","features":[541]},{"name":"COR_PRF_ENABLE_STACK_SNAPSHOT","features":[541]},{"name":"COR_PRF_EVENTPIPE_ARRAY","features":[541]},{"name":"COR_PRF_EVENTPIPE_BOOLEAN","features":[541]},{"name":"COR_PRF_EVENTPIPE_BYTE","features":[541]},{"name":"COR_PRF_EVENTPIPE_CHAR","features":[541]},{"name":"COR_PRF_EVENTPIPE_CRITICAL","features":[541]},{"name":"COR_PRF_EVENTPIPE_DATETIME","features":[541]},{"name":"COR_PRF_EVENTPIPE_DECIMAL","features":[541]},{"name":"COR_PRF_EVENTPIPE_DOUBLE","features":[541]},{"name":"COR_PRF_EVENTPIPE_ERROR","features":[541]},{"name":"COR_PRF_EVENTPIPE_GUID","features":[541]},{"name":"COR_PRF_EVENTPIPE_INFORMATIONAL","features":[541]},{"name":"COR_PRF_EVENTPIPE_INT16","features":[541]},{"name":"COR_PRF_EVENTPIPE_INT32","features":[541]},{"name":"COR_PRF_EVENTPIPE_INT64","features":[541]},{"name":"COR_PRF_EVENTPIPE_LEVEL","features":[541]},{"name":"COR_PRF_EVENTPIPE_LOGALWAYS","features":[541]},{"name":"COR_PRF_EVENTPIPE_OBJECT","features":[541]},{"name":"COR_PRF_EVENTPIPE_PARAM_DESC","features":[541]},{"name":"COR_PRF_EVENTPIPE_PARAM_TYPE","features":[541]},{"name":"COR_PRF_EVENTPIPE_PROVIDER_CONFIG","features":[541]},{"name":"COR_PRF_EVENTPIPE_SBYTE","features":[541]},{"name":"COR_PRF_EVENTPIPE_SINGLE","features":[541]},{"name":"COR_PRF_EVENTPIPE_STRING","features":[541]},{"name":"COR_PRF_EVENTPIPE_UINT16","features":[541]},{"name":"COR_PRF_EVENTPIPE_UINT32","features":[541]},{"name":"COR_PRF_EVENTPIPE_UINT64","features":[541]},{"name":"COR_PRF_EVENTPIPE_VERBOSE","features":[541]},{"name":"COR_PRF_EVENTPIPE_WARNING","features":[541]},{"name":"COR_PRF_EVENT_DATA","features":[541]},{"name":"COR_PRF_EX_CLAUSE_INFO","features":[541]},{"name":"COR_PRF_FIELD_APP_DOMAIN_STATIC","features":[541]},{"name":"COR_PRF_FIELD_CONTEXT_STATIC","features":[541]},{"name":"COR_PRF_FIELD_NOT_A_STATIC","features":[541]},{"name":"COR_PRF_FIELD_RVA_STATIC","features":[541]},{"name":"COR_PRF_FIELD_THREAD_STATIC","features":[541]},{"name":"COR_PRF_FILTER_DATA","features":[541]},{"name":"COR_PRF_FINALIZER_CRITICAL","features":[541]},{"name":"COR_PRF_FINALIZER_FLAGS","features":[541]},{"name":"COR_PRF_FUNCTION","features":[541]},{"name":"COR_PRF_FUNCTION_ARGUMENT_INFO","features":[541]},{"name":"COR_PRF_FUNCTION_ARGUMENT_RANGE","features":[541]},{"name":"COR_PRF_GC_GENERATION","features":[541]},{"name":"COR_PRF_GC_GENERATION_RANGE","features":[541]},{"name":"COR_PRF_GC_GEN_0","features":[541]},{"name":"COR_PRF_GC_GEN_1","features":[541]},{"name":"COR_PRF_GC_GEN_2","features":[541]},{"name":"COR_PRF_GC_INDUCED","features":[541]},{"name":"COR_PRF_GC_LARGE_OBJECT_HEAP","features":[541]},{"name":"COR_PRF_GC_OTHER","features":[541]},{"name":"COR_PRF_GC_PINNED_OBJECT_HEAP","features":[541]},{"name":"COR_PRF_GC_REASON","features":[541]},{"name":"COR_PRF_GC_ROOT_FINALIZER","features":[541]},{"name":"COR_PRF_GC_ROOT_FLAGS","features":[541]},{"name":"COR_PRF_GC_ROOT_HANDLE","features":[541]},{"name":"COR_PRF_GC_ROOT_INTERIOR","features":[541]},{"name":"COR_PRF_GC_ROOT_KIND","features":[541]},{"name":"COR_PRF_GC_ROOT_OTHER","features":[541]},{"name":"COR_PRF_GC_ROOT_PINNING","features":[541]},{"name":"COR_PRF_GC_ROOT_REFCOUNTED","features":[541]},{"name":"COR_PRF_GC_ROOT_STACK","features":[541]},{"name":"COR_PRF_GC_ROOT_WEAKREF","features":[541]},{"name":"COR_PRF_HANDLE_TYPE","features":[541]},{"name":"COR_PRF_HANDLE_TYPE_PINNED","features":[541]},{"name":"COR_PRF_HANDLE_TYPE_STRONG","features":[541]},{"name":"COR_PRF_HANDLE_TYPE_WEAK","features":[541]},{"name":"COR_PRF_HIGH_ADD_ASSEMBLY_REFERENCES","features":[541]},{"name":"COR_PRF_HIGH_ALLOWABLE_AFTER_ATTACH","features":[541]},{"name":"COR_PRF_HIGH_ALLOWABLE_NOTIFICATION_PROFILER","features":[541]},{"name":"COR_PRF_HIGH_BASIC_GC","features":[541]},{"name":"COR_PRF_HIGH_DISABLE_TIERED_COMPILATION","features":[541]},{"name":"COR_PRF_HIGH_IN_MEMORY_SYMBOLS_UPDATED","features":[541]},{"name":"COR_PRF_HIGH_MONITOR","features":[541]},{"name":"COR_PRF_HIGH_MONITOR_DYNAMIC_FUNCTION_UNLOADS","features":[541]},{"name":"COR_PRF_HIGH_MONITOR_EVENT_PIPE","features":[541]},{"name":"COR_PRF_HIGH_MONITOR_GC_MOVED_OBJECTS","features":[541]},{"name":"COR_PRF_HIGH_MONITOR_IMMUTABLE","features":[541]},{"name":"COR_PRF_HIGH_MONITOR_LARGEOBJECT_ALLOCATED","features":[541]},{"name":"COR_PRF_HIGH_MONITOR_NONE","features":[541]},{"name":"COR_PRF_HIGH_MONITOR_PINNEDOBJECT_ALLOCATED","features":[541]},{"name":"COR_PRF_HIGH_REQUIRE_PROFILE_IMAGE","features":[541]},{"name":"COR_PRF_JIT_CACHE","features":[541]},{"name":"COR_PRF_METHOD","features":[541]},{"name":"COR_PRF_MISC","features":[541]},{"name":"COR_PRF_MODULE_COLLECTIBLE","features":[541]},{"name":"COR_PRF_MODULE_DISK","features":[541]},{"name":"COR_PRF_MODULE_DYNAMIC","features":[541]},{"name":"COR_PRF_MODULE_FLAGS","features":[541]},{"name":"COR_PRF_MODULE_FLAT_LAYOUT","features":[541]},{"name":"COR_PRF_MODULE_NGEN","features":[541]},{"name":"COR_PRF_MODULE_RESOURCE","features":[541]},{"name":"COR_PRF_MODULE_WINDOWS_RUNTIME","features":[541]},{"name":"COR_PRF_MONITOR","features":[541]},{"name":"COR_PRF_MONITOR_ALL","features":[541]},{"name":"COR_PRF_MONITOR_APPDOMAIN_LOADS","features":[541]},{"name":"COR_PRF_MONITOR_ASSEMBLY_LOADS","features":[541]},{"name":"COR_PRF_MONITOR_CACHE_SEARCHES","features":[541]},{"name":"COR_PRF_MONITOR_CCW","features":[541]},{"name":"COR_PRF_MONITOR_CLASS_LOADS","features":[541]},{"name":"COR_PRF_MONITOR_CLR_EXCEPTIONS","features":[541]},{"name":"COR_PRF_MONITOR_CODE_TRANSITIONS","features":[541]},{"name":"COR_PRF_MONITOR_ENTERLEAVE","features":[541]},{"name":"COR_PRF_MONITOR_EXCEPTIONS","features":[541]},{"name":"COR_PRF_MONITOR_FUNCTION_UNLOADS","features":[541]},{"name":"COR_PRF_MONITOR_GC","features":[541]},{"name":"COR_PRF_MONITOR_IMMUTABLE","features":[541]},{"name":"COR_PRF_MONITOR_JIT_COMPILATION","features":[541]},{"name":"COR_PRF_MONITOR_MODULE_LOADS","features":[541]},{"name":"COR_PRF_MONITOR_NONE","features":[541]},{"name":"COR_PRF_MONITOR_OBJECT_ALLOCATED","features":[541]},{"name":"COR_PRF_MONITOR_REMOTING","features":[541]},{"name":"COR_PRF_MONITOR_REMOTING_ASYNC","features":[541]},{"name":"COR_PRF_MONITOR_REMOTING_COOKIE","features":[541]},{"name":"COR_PRF_MONITOR_SUSPENDS","features":[541]},{"name":"COR_PRF_MONITOR_THREADS","features":[541]},{"name":"COR_PRF_NONGC_HEAP_RANGE","features":[541]},{"name":"COR_PRF_REJIT_BLOCK_INLINING","features":[541]},{"name":"COR_PRF_REJIT_FLAGS","features":[541]},{"name":"COR_PRF_REJIT_INLINING_CALLBACKS","features":[541]},{"name":"COR_PRF_REQUIRE_PROFILE_IMAGE","features":[541]},{"name":"COR_PRF_RUNTIME_TYPE","features":[541]},{"name":"COR_PRF_SNAPSHOT_DEFAULT","features":[541]},{"name":"COR_PRF_SNAPSHOT_INFO","features":[541]},{"name":"COR_PRF_SNAPSHOT_REGISTER_CONTEXT","features":[541]},{"name":"COR_PRF_SNAPSHOT_X86_OPTIMIZED","features":[541]},{"name":"COR_PRF_STATIC_TYPE","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_APPDOMAIN_SHUTDOWN","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_CODE_PITCHING","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_GC","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_GC_PREP","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_INPROC_DEBUGGER","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_PROFILER","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_REJIT","features":[541]},{"name":"COR_PRF_SUSPEND_FOR_SHUTDOWN","features":[541]},{"name":"COR_PRF_SUSPEND_OTHER","features":[541]},{"name":"COR_PRF_SUSPEND_REASON","features":[541]},{"name":"COR_PRF_TRANSITION_CALL","features":[541]},{"name":"COR_PRF_TRANSITION_REASON","features":[541]},{"name":"COR_PRF_TRANSITION_RETURN","features":[541]},{"name":"COR_PRF_USE_PROFILE_IMAGES","features":[541]},{"name":"CorDebugIlToNativeMappingTypes","features":[541]},{"name":"EPILOG","features":[541]},{"name":"EventPipeProviderCallback","features":[541]},{"name":"FunctionEnter","features":[541]},{"name":"FunctionEnter2","features":[541]},{"name":"FunctionEnter3","features":[541]},{"name":"FunctionEnter3WithInfo","features":[541]},{"name":"FunctionIDMapper","features":[305,541]},{"name":"FunctionIDMapper2","features":[305,541]},{"name":"FunctionIDOrClientID","features":[541]},{"name":"FunctionLeave","features":[541]},{"name":"FunctionLeave2","features":[541]},{"name":"FunctionLeave3","features":[541]},{"name":"FunctionLeave3WithInfo","features":[541]},{"name":"FunctionTailcall","features":[541]},{"name":"FunctionTailcall2","features":[541]},{"name":"FunctionTailcall3","features":[541]},{"name":"FunctionTailcall3WithInfo","features":[541]},{"name":"ICorProfilerAssemblyReferenceProvider","features":[541]},{"name":"ICorProfilerCallback","features":[541]},{"name":"ICorProfilerCallback10","features":[541]},{"name":"ICorProfilerCallback11","features":[541]},{"name":"ICorProfilerCallback2","features":[541]},{"name":"ICorProfilerCallback3","features":[541]},{"name":"ICorProfilerCallback4","features":[541]},{"name":"ICorProfilerCallback5","features":[541]},{"name":"ICorProfilerCallback6","features":[541]},{"name":"ICorProfilerCallback7","features":[541]},{"name":"ICorProfilerCallback8","features":[541]},{"name":"ICorProfilerCallback9","features":[541]},{"name":"ICorProfilerFunctionControl","features":[541]},{"name":"ICorProfilerFunctionEnum","features":[541]},{"name":"ICorProfilerInfo","features":[541]},{"name":"ICorProfilerInfo10","features":[541]},{"name":"ICorProfilerInfo11","features":[541]},{"name":"ICorProfilerInfo12","features":[541]},{"name":"ICorProfilerInfo13","features":[541]},{"name":"ICorProfilerInfo14","features":[541]},{"name":"ICorProfilerInfo2","features":[541]},{"name":"ICorProfilerInfo3","features":[541]},{"name":"ICorProfilerInfo4","features":[541]},{"name":"ICorProfilerInfo5","features":[541]},{"name":"ICorProfilerInfo6","features":[541]},{"name":"ICorProfilerInfo7","features":[541]},{"name":"ICorProfilerInfo8","features":[541]},{"name":"ICorProfilerInfo9","features":[541]},{"name":"ICorProfilerMethodEnum","features":[541]},{"name":"ICorProfilerModuleEnum","features":[541]},{"name":"ICorProfilerObjectEnum","features":[541]},{"name":"ICorProfilerThreadEnum","features":[541]},{"name":"IMethodMalloc","features":[541]},{"name":"NO_MAPPING","features":[541]},{"name":"ObjectReferenceCallback","features":[305,541]},{"name":"PROFILER_GLOBAL_CLASS","features":[541]},{"name":"PROFILER_GLOBAL_MODULE","features":[541]},{"name":"PROFILER_PARENT_UNKNOWN","features":[541]},{"name":"PROLOG","features":[541]},{"name":"StackSnapshotCallback","features":[541]}],"554":[{"name":"ABNORMAL_RESET_DETECTED","features":[334]},{"name":"ACPI_BIOS_ERROR","features":[334]},{"name":"ACPI_BIOS_FATAL_ERROR","features":[334]},{"name":"ACPI_DRIVER_INTERNAL","features":[334]},{"name":"ACPI_FIRMWARE_WATCHDOG_TIMEOUT","features":[334]},{"name":"ACTIVE_EX_WORKER_THREAD_TERMINATION","features":[334]},{"name":"ADDRESS","features":[334]},{"name":"ADDRESS64","features":[334]},{"name":"ADDRESS_MODE","features":[334]},{"name":"AER_BRIDGE_DESCRIPTOR_FLAGS","features":[334]},{"name":"AER_ENDPOINT_DESCRIPTOR_FLAGS","features":[334]},{"name":"AER_ROOTPORT_DESCRIPTOR_FLAGS","features":[334]},{"name":"AGP_GART_CORRUPTION","features":[334]},{"name":"AGP_ILLEGALLY_REPROGRAMMED","features":[334]},{"name":"AGP_INTERNAL","features":[334]},{"name":"AGP_INVALID_ACCESS","features":[334]},{"name":"APC_CALLBACK_DATA","features":[334,311]},{"name":"APC_INDEX_MISMATCH","features":[334]},{"name":"API_VERSION","features":[334]},{"name":"API_VERSION_NUMBER","features":[334]},{"name":"APP_TAGGING_INITIALIZATION_FAILED","features":[334]},{"name":"ARM64_NT_CONTEXT","features":[334]},{"name":"ARM64_NT_NEON128","features":[334]},{"name":"ASSIGN_DRIVE_LETTERS_FAILED","features":[334]},{"name":"ATDISK_DRIVER_INTERNAL","features":[334]},{"name":"ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY","features":[334]},{"name":"ATTEMPTED_SWITCH_FROM_DPC","features":[334]},{"name":"ATTEMPTED_WRITE_TO_CM_PROTECTED_STORAGE","features":[334]},{"name":"ATTEMPTED_WRITE_TO_READONLY_MEMORY","features":[334]},{"name":"AUDIT_FAILURE","features":[334]},{"name":"AZURE_DEVICE_FW_DUMP","features":[334]},{"name":"AddVectoredContinueHandler","features":[305,334,311]},{"name":"AddVectoredExceptionHandler","features":[305,334,311]},{"name":"AddrMode1616","features":[334]},{"name":"AddrMode1632","features":[334]},{"name":"AddrModeFlat","features":[334]},{"name":"AddrModeReal","features":[334]},{"name":"BAD_EXHANDLE","features":[334]},{"name":"BAD_OBJECT_HEADER","features":[334]},{"name":"BAD_POOL_CALLER","features":[334]},{"name":"BAD_POOL_HEADER","features":[334]},{"name":"BAD_SYSTEM_CONFIG_INFO","features":[334]},{"name":"BC_BLUETOOTH_VERIFIER_FAULT","features":[334]},{"name":"BC_BTHMINI_VERIFIER_FAULT","features":[334]},{"name":"BGI_DETECTED_VIOLATION","features":[334]},{"name":"BIND_ALL_IMAGES","features":[334]},{"name":"BIND_CACHE_IMPORT_DLLS","features":[334]},{"name":"BIND_NO_BOUND_IMPORTS","features":[334]},{"name":"BIND_NO_UPDATE","features":[334]},{"name":"BIND_REPORT_64BIT_VA","features":[334]},{"name":"BITLOCKER_FATAL_ERROR","features":[334]},{"name":"BLUETOOTH_ERROR_RECOVERY_LIVEDUMP","features":[334]},{"name":"BOOTING_IN_SAFEMODE_DSREPAIR","features":[334]},{"name":"BOOTING_IN_SAFEMODE_MINIMAL","features":[334]},{"name":"BOOTING_IN_SAFEMODE_NETWORK","features":[334]},{"name":"BOOTLOG_ENABLED","features":[334]},{"name":"BOOTLOG_LOADED","features":[334]},{"name":"BOOTLOG_NOT_LOADED","features":[334]},{"name":"BOOTPROC_INITIALIZATION_FAILED","features":[334]},{"name":"BOUND_IMAGE_UNSUPPORTED","features":[334]},{"name":"BREAKAWAY_CABLE_TRANSITION","features":[334]},{"name":"BUGCHECK_CONTEXT_MODIFIER","features":[334]},{"name":"BUGCHECK_ERROR","features":[334]},{"name":"BUGCODE_ID_DRIVER","features":[334]},{"name":"BUGCODE_MBBADAPTER_DRIVER","features":[334]},{"name":"BUGCODE_NDIS_DRIVER","features":[334]},{"name":"BUGCODE_NDIS_DRIVER_LIVE_DUMP","features":[334]},{"name":"BUGCODE_NETADAPTER_DRIVER","features":[334]},{"name":"BUGCODE_USB3_DRIVER","features":[334]},{"name":"BUGCODE_USB_DRIVER","features":[334]},{"name":"BUGCODE_WIFIADAPTER_DRIVER","features":[334]},{"name":"Beep","features":[305,334]},{"name":"BindExpandFileHeaders","features":[334]},{"name":"BindForwarder","features":[334]},{"name":"BindForwarder32","features":[334]},{"name":"BindForwarder64","features":[334]},{"name":"BindForwarderNOT","features":[334]},{"name":"BindForwarderNOT32","features":[334]},{"name":"BindForwarderNOT64","features":[334]},{"name":"BindImage","features":[305,334]},{"name":"BindImageComplete","features":[334]},{"name":"BindImageEx","features":[305,334]},{"name":"BindImageModified","features":[334]},{"name":"BindImportModule","features":[334]},{"name":"BindImportModuleFailed","features":[334]},{"name":"BindImportProcedure","features":[334]},{"name":"BindImportProcedure32","features":[334]},{"name":"BindImportProcedure64","features":[334]},{"name":"BindImportProcedureFailed","features":[334]},{"name":"BindMismatchedSymbols","features":[334]},{"name":"BindNoRoomInImage","features":[334]},{"name":"BindOutOfMemory","features":[334]},{"name":"BindRvaToVaFailed","features":[334]},{"name":"BindSymbolsNotUpdated","features":[334]},{"name":"CACHE_INITIALIZATION_FAILED","features":[334]},{"name":"CACHE_MANAGER","features":[334]},{"name":"CALL_HAS_NOT_RETURNED_WATCHDOG_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CANCEL_STATE_IN_COMPLETED_IRP","features":[334]},{"name":"CANNOT_WRITE_CONFIGURATION","features":[334]},{"name":"CBA_CHECK_ARM_MACHINE_THUMB_TYPE_OVERRIDE","features":[334]},{"name":"CBA_CHECK_ENGOPT_DISALLOW_NETWORK_PATHS","features":[334]},{"name":"CBA_DEBUG_INFO","features":[334]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_CANCEL","features":[334]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_COMPLETE","features":[334]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_FAILURE","features":[334]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_PARTIAL","features":[334]},{"name":"CBA_DEFERRED_SYMBOL_LOAD_START","features":[334]},{"name":"CBA_DUPLICATE_SYMBOL","features":[334]},{"name":"CBA_ENGINE_PRESENT","features":[334]},{"name":"CBA_EVENT","features":[334]},{"name":"CBA_MAP_JIT_SYMBOL","features":[334]},{"name":"CBA_READ_MEMORY","features":[334]},{"name":"CBA_SET_OPTIONS","features":[334]},{"name":"CBA_SRCSRV_EVENT","features":[334]},{"name":"CBA_SRCSRV_INFO","features":[334]},{"name":"CBA_SYMBOLS_UNLOADED","features":[334]},{"name":"CBA_UPDATE_STATUS_BAR","features":[334]},{"name":"CBA_XML_LOG","features":[334]},{"name":"CDFS_FILE_SYSTEM","features":[334]},{"name":"CERT_PE_IMAGE_DIGEST_ALL_IMPORT_INFO","features":[334]},{"name":"CERT_PE_IMAGE_DIGEST_DEBUG_INFO","features":[334]},{"name":"CERT_PE_IMAGE_DIGEST_NON_PE_INFO","features":[334]},{"name":"CERT_PE_IMAGE_DIGEST_RESOURCES","features":[334]},{"name":"CERT_SECTION_TYPE_ANY","features":[334]},{"name":"CHECKSUM_MAPVIEW_FAILURE","features":[334]},{"name":"CHECKSUM_MAP_FAILURE","features":[334]},{"name":"CHECKSUM_OPEN_FAILURE","features":[334]},{"name":"CHECKSUM_SUCCESS","features":[334]},{"name":"CHECKSUM_UNICODE_FAILURE","features":[334]},{"name":"CHIPSET_DETECTED_ERROR","features":[334]},{"name":"CID_HANDLE_CREATION","features":[334]},{"name":"CID_HANDLE_DELETION","features":[334]},{"name":"CLOCK_WATCHDOG_TIMEOUT","features":[334]},{"name":"CLUSTER_CLUSPORT_STATUS_IO_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSVFS_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSV_CLUSSVC_DISCONNECT_WATCHDOG","features":[334]},{"name":"CLUSTER_CSV_CLUSTER_WATCHDOG_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSV_SNAPSHOT_DEVICE_INFO_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSV_STATE_TRANSITION_INTERVAL_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSV_STATE_TRANSITION_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSV_STATUS_IO_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSV_VOLUME_ARRIVAL_LIVEDUMP","features":[334]},{"name":"CLUSTER_CSV_VOLUME_REMOVAL_LIVEDUMP","features":[334]},{"name":"CLUSTER_RESOURCE_CALL_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CLUSTER_SVHDX_LIVEDUMP","features":[334]},{"name":"CNSS_FILE_SYSTEM_FILTER","features":[334]},{"name":"CONFIG_INITIALIZATION_FAILED","features":[334]},{"name":"CONFIG_LIST_FAILED","features":[334]},{"name":"CONNECTED_STANDBY_WATCHDOG_TIMEOUT_LIVEDUMP","features":[334]},{"name":"CONTEXT","features":[334,311]},{"name":"CONTEXT","features":[334,311]},{"name":"CONTEXT","features":[334,311]},{"name":"CONTEXT_ALL_AMD64","features":[334]},{"name":"CONTEXT_ALL_ARM","features":[334]},{"name":"CONTEXT_ALL_ARM64","features":[334]},{"name":"CONTEXT_ALL_X86","features":[334]},{"name":"CONTEXT_AMD64","features":[334]},{"name":"CONTEXT_ARM","features":[334]},{"name":"CONTEXT_ARM64","features":[334]},{"name":"CONTEXT_CONTROL_AMD64","features":[334]},{"name":"CONTEXT_CONTROL_ARM","features":[334]},{"name":"CONTEXT_CONTROL_ARM64","features":[334]},{"name":"CONTEXT_CONTROL_X86","features":[334]},{"name":"CONTEXT_DEBUG_REGISTERS_AMD64","features":[334]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM","features":[334]},{"name":"CONTEXT_DEBUG_REGISTERS_ARM64","features":[334]},{"name":"CONTEXT_DEBUG_REGISTERS_X86","features":[334]},{"name":"CONTEXT_EXCEPTION_ACTIVE_AMD64","features":[334]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM","features":[334]},{"name":"CONTEXT_EXCEPTION_ACTIVE_ARM64","features":[334]},{"name":"CONTEXT_EXCEPTION_ACTIVE_X86","features":[334]},{"name":"CONTEXT_EXCEPTION_REPORTING_AMD64","features":[334]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM","features":[334]},{"name":"CONTEXT_EXCEPTION_REPORTING_ARM64","features":[334]},{"name":"CONTEXT_EXCEPTION_REPORTING_X86","features":[334]},{"name":"CONTEXT_EXCEPTION_REQUEST_AMD64","features":[334]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM","features":[334]},{"name":"CONTEXT_EXCEPTION_REQUEST_ARM64","features":[334]},{"name":"CONTEXT_EXCEPTION_REQUEST_X86","features":[334]},{"name":"CONTEXT_EXTENDED_REGISTERS_X86","features":[334]},{"name":"CONTEXT_FLAGS","features":[334]},{"name":"CONTEXT_FLOATING_POINT_AMD64","features":[334]},{"name":"CONTEXT_FLOATING_POINT_ARM","features":[334]},{"name":"CONTEXT_FLOATING_POINT_ARM64","features":[334]},{"name":"CONTEXT_FLOATING_POINT_X86","features":[334]},{"name":"CONTEXT_FULL_AMD64","features":[334]},{"name":"CONTEXT_FULL_ARM","features":[334]},{"name":"CONTEXT_FULL_ARM64","features":[334]},{"name":"CONTEXT_FULL_X86","features":[334]},{"name":"CONTEXT_INTEGER_AMD64","features":[334]},{"name":"CONTEXT_INTEGER_ARM","features":[334]},{"name":"CONTEXT_INTEGER_ARM64","features":[334]},{"name":"CONTEXT_INTEGER_X86","features":[334]},{"name":"CONTEXT_KERNEL_CET_AMD64","features":[334]},{"name":"CONTEXT_KERNEL_DEBUGGER_AMD64","features":[334]},{"name":"CONTEXT_RET_TO_GUEST_ARM64","features":[334]},{"name":"CONTEXT_SEGMENTS_AMD64","features":[334]},{"name":"CONTEXT_SEGMENTS_X86","features":[334]},{"name":"CONTEXT_SERVICE_ACTIVE_AMD64","features":[334]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM","features":[334]},{"name":"CONTEXT_SERVICE_ACTIVE_ARM64","features":[334]},{"name":"CONTEXT_SERVICE_ACTIVE_X86","features":[334]},{"name":"CONTEXT_UNWOUND_TO_CALL_AMD64","features":[334]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM","features":[334]},{"name":"CONTEXT_UNWOUND_TO_CALL_ARM64","features":[334]},{"name":"CONTEXT_X18_ARM64","features":[334]},{"name":"CONTEXT_X86","features":[334]},{"name":"CONTEXT_XSTATE_AMD64","features":[334]},{"name":"CONTEXT_XSTATE_X86","features":[334]},{"name":"COREMSGCALL_INTERNAL_ERROR","features":[334]},{"name":"COREMSG_INTERNAL_ERROR","features":[334]},{"name":"CORRUPT_ACCESS_TOKEN","features":[334]},{"name":"CPU_INFORMATION","features":[334]},{"name":"CRASHDUMP_WATCHDOG_TIMEOUT","features":[334]},{"name":"CREATE_DELETE_LOCK_NOT_LOCKED","features":[334]},{"name":"CREATE_PROCESS_DEBUG_EVENT","features":[334]},{"name":"CREATE_PROCESS_DEBUG_INFO","features":[305,334,340]},{"name":"CREATE_THREAD_DEBUG_EVENT","features":[334]},{"name":"CREATE_THREAD_DEBUG_INFO","features":[305,334,340]},{"name":"CRITICAL_INITIALIZATION_FAILURE","features":[334]},{"name":"CRITICAL_OBJECT_TERMINATION","features":[334]},{"name":"CRITICAL_PROCESS_DIED","features":[334]},{"name":"CRITICAL_SERVICE_FAILED","features":[334]},{"name":"CRITICAL_STRUCTURE_CORRUPTION","features":[334]},{"name":"CRYPTO_LIBRARY_INTERNAL_ERROR","features":[334]},{"name":"CRYPTO_SELF_TEST_FAILURE","features":[334]},{"name":"CancelCallback","features":[334]},{"name":"CheckRemoteDebuggerPresent","features":[305,334]},{"name":"CheckSumMappedFile","features":[334,336]},{"name":"CheckSumMappedFile","features":[334,336]},{"name":"CloseThreadWaitChainSession","features":[334]},{"name":"CommentStreamA","features":[334]},{"name":"CommentStreamW","features":[334]},{"name":"ContinueDebugEvent","features":[305,334]},{"name":"CopyContext","features":[305,334,311]},{"name":"DAM_WATCHDOG_TIMEOUT","features":[334]},{"name":"DATA_BUS_ERROR","features":[334]},{"name":"DATA_COHERENCY_EXCEPTION","features":[334]},{"name":"DBGHELP_DATA_REPORT_STRUCT","features":[334]},{"name":"DBGPROP_ATTRIB_ACCESS_FINAL","features":[334]},{"name":"DBGPROP_ATTRIB_ACCESS_PRIVATE","features":[334]},{"name":"DBGPROP_ATTRIB_ACCESS_PROTECTED","features":[334]},{"name":"DBGPROP_ATTRIB_ACCESS_PUBLIC","features":[334]},{"name":"DBGPROP_ATTRIB_FLAGS","features":[334]},{"name":"DBGPROP_ATTRIB_FRAME_INCATCHBLOCK","features":[334]},{"name":"DBGPROP_ATTRIB_FRAME_INFINALLYBLOCK","features":[334]},{"name":"DBGPROP_ATTRIB_FRAME_INTRYBLOCK","features":[334]},{"name":"DBGPROP_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[334]},{"name":"DBGPROP_ATTRIB_NO_ATTRIB","features":[334]},{"name":"DBGPROP_ATTRIB_STORAGE_FIELD","features":[334]},{"name":"DBGPROP_ATTRIB_STORAGE_GLOBAL","features":[334]},{"name":"DBGPROP_ATTRIB_STORAGE_STATIC","features":[334]},{"name":"DBGPROP_ATTRIB_STORAGE_VIRTUAL","features":[334]},{"name":"DBGPROP_ATTRIB_TYPE_IS_CONSTANT","features":[334]},{"name":"DBGPROP_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[334]},{"name":"DBGPROP_ATTRIB_TYPE_IS_VOLATILE","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EVENT","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_IS_EXPANDABLE","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_IS_FAKE","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_IS_INVALID","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_IS_METHOD","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RAW_STRING","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_IS_RETURN_VALUE","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_PENDING_MUTATION","features":[334]},{"name":"DBGPROP_ATTRIB_VALUE_READONLY","features":[334]},{"name":"DBGPROP_INFO","features":[334]},{"name":"DBGPROP_INFO_ATTRIBUTES","features":[334]},{"name":"DBGPROP_INFO_AUTOEXPAND","features":[334]},{"name":"DBGPROP_INFO_BEAUTIFY","features":[334]},{"name":"DBGPROP_INFO_CALLTOSTRING","features":[334]},{"name":"DBGPROP_INFO_DEBUGPROP","features":[334]},{"name":"DBGPROP_INFO_FULLNAME","features":[334]},{"name":"DBGPROP_INFO_NAME","features":[334]},{"name":"DBGPROP_INFO_TYPE","features":[334]},{"name":"DBGPROP_INFO_VALUE","features":[334]},{"name":"DBHHEADER_CVMISC","features":[334]},{"name":"DBHHEADER_DEBUGDIRS","features":[334]},{"name":"DBHHEADER_PDBGUID","features":[334]},{"name":"DEBUG_EVENT","features":[305,334,340]},{"name":"DEBUG_EVENT_CODE","features":[334]},{"name":"DEREF_UNKNOWN_LOGON_SESSION","features":[334]},{"name":"DEVICE_DIAGNOSTIC_LOG_LIVEDUMP","features":[334]},{"name":"DEVICE_QUEUE_NOT_BUSY","features":[334]},{"name":"DEVICE_REFERENCE_COUNT_NOT_ZERO","features":[334]},{"name":"DFSC_FILE_SYSTEM","features":[334]},{"name":"DFS_FILE_SYSTEM","features":[334]},{"name":"DIGEST_FUNCTION","features":[305,334]},{"name":"DIRECTED_FX_TRANSITION_LIVEDUMP","features":[334]},{"name":"DIRTY_MAPPED_PAGES_CONGESTION","features":[334]},{"name":"DIRTY_NOWRITE_PAGES_CONGESTION","features":[334]},{"name":"DISORDERLY_SHUTDOWN","features":[334]},{"name":"DISPATCHER_CONTEXT","features":[305,334,311]},{"name":"DISPATCHER_CONTEXT","features":[305,334,311]},{"name":"DMA_COMMON_BUFFER_VECTOR_ERROR","features":[334]},{"name":"DMP_CONTEXT_RECORD_SIZE_32","features":[334]},{"name":"DMP_CONTEXT_RECORD_SIZE_64","features":[334]},{"name":"DMP_HEADER_COMMENT_SIZE","features":[334]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_32","features":[334]},{"name":"DMP_PHYSICAL_MEMORY_BLOCK_SIZE_64","features":[334]},{"name":"DMP_RESERVED_0_SIZE_32","features":[334]},{"name":"DMP_RESERVED_0_SIZE_64","features":[334]},{"name":"DMP_RESERVED_2_SIZE_32","features":[334]},{"name":"DMP_RESERVED_3_SIZE_32","features":[334]},{"name":"DPC_WATCHDOG_TIMEOUT","features":[334]},{"name":"DPC_WATCHDOG_VIOLATION","features":[334]},{"name":"DRIPS_SW_HW_DIVERGENCE_LIVEDUMP","features":[334]},{"name":"DRIVER_CAUGHT_MODIFYING_FREED_POOL","features":[334]},{"name":"DRIVER_CORRUPTED_EXPOOL","features":[334]},{"name":"DRIVER_CORRUPTED_MMPOOL","features":[334]},{"name":"DRIVER_CORRUPTED_SYSPTES","features":[334]},{"name":"DRIVER_INVALID_CRUNTIME_PARAMETER","features":[334]},{"name":"DRIVER_INVALID_STACK_ACCESS","features":[334]},{"name":"DRIVER_IRQL_NOT_LESS_OR_EQUAL","features":[334]},{"name":"DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS","features":[334]},{"name":"DRIVER_OVERRAN_STACK_BUFFER","features":[334]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[334]},{"name":"DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION_M","features":[334]},{"name":"DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[334]},{"name":"DRIVER_PNP_WATCHDOG","features":[334]},{"name":"DRIVER_PORTION_MUST_BE_NONPAGED","features":[334]},{"name":"DRIVER_POWER_STATE_FAILURE","features":[334]},{"name":"DRIVER_RETURNED_HOLDING_CANCEL_LOCK","features":[334]},{"name":"DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN","features":[334]},{"name":"DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS","features":[334]},{"name":"DRIVER_UNMAPPING_INVALID_VIEW","features":[334]},{"name":"DRIVER_USED_EXCESSIVE_PTES","features":[334]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION","features":[334]},{"name":"DRIVER_VERIFIER_DETECTED_VIOLATION_LIVEDUMP","features":[334]},{"name":"DRIVER_VERIFIER_DMA_VIOLATION","features":[334]},{"name":"DRIVER_VERIFIER_IOMANAGER_VIOLATION","features":[334]},{"name":"DRIVER_VERIFIER_TRACKING_LIVE_DUMP","features":[334]},{"name":"DRIVER_VIOLATION","features":[334]},{"name":"DRIVE_EXTENDER","features":[334]},{"name":"DSLFLAG_MISMATCHED_DBG","features":[334]},{"name":"DSLFLAG_MISMATCHED_PDB","features":[334]},{"name":"DUMP_FILE_ATTRIBUTES","features":[334]},{"name":"DUMP_HEADER32","features":[305,334]},{"name":"DUMP_HEADER64","features":[305,334]},{"name":"DUMP_SUMMARY_VALID_CURRENT_USER_VA","features":[334]},{"name":"DUMP_SUMMARY_VALID_KERNEL_VA","features":[334]},{"name":"DUMP_TYPE","features":[334]},{"name":"DUMP_TYPE_AUTOMATIC","features":[334]},{"name":"DUMP_TYPE_BITMAP_FULL","features":[334]},{"name":"DUMP_TYPE_BITMAP_KERNEL","features":[334]},{"name":"DUMP_TYPE_FULL","features":[334]},{"name":"DUMP_TYPE_HEADER","features":[334]},{"name":"DUMP_TYPE_INVALID","features":[334]},{"name":"DUMP_TYPE_SUMMARY","features":[334]},{"name":"DUMP_TYPE_TRIAGE","features":[334]},{"name":"DUMP_TYPE_UNKNOWN","features":[334]},{"name":"DYNAMIC_ADD_PROCESSOR_MISMATCH","features":[334]},{"name":"DbgHelpCreateUserDump","features":[305,334]},{"name":"DbgHelpCreateUserDumpW","features":[305,334]},{"name":"DebugActiveProcess","features":[305,334]},{"name":"DebugActiveProcessStop","features":[305,334]},{"name":"DebugBreak","features":[334]},{"name":"DebugBreakProcess","features":[305,334]},{"name":"DebugPropertyInfo","features":[334]},{"name":"DebugSetProcessKillOnExit","features":[305,334]},{"name":"DecodePointer","features":[334]},{"name":"DecodeRemotePointer","features":[305,334]},{"name":"DecodeSystemPointer","features":[334]},{"name":"EFS_FATAL_ERROR","features":[334]},{"name":"ELAM_DRIVER_DETECTED_FATAL_ERROR","features":[334]},{"name":"EMPTY_THREAD_REAPER_LIST","features":[334]},{"name":"EM_INITIALIZATION_ERROR","features":[334]},{"name":"END_OF_NT_EVALUATION_PERIOD","features":[334]},{"name":"ERESOURCE_INVALID_RELEASE","features":[334]},{"name":"ERRATA_WORKAROUND_UNSUCCESSFUL","features":[334]},{"name":"ERROR_IMAGE_NOT_STRIPPED","features":[334]},{"name":"ERROR_NO_DBG_POINTER","features":[334]},{"name":"ERROR_NO_PDB_POINTER","features":[334]},{"name":"ESLFLAG_FULLPATH","features":[334]},{"name":"ESLFLAG_INLINE_SITE","features":[334]},{"name":"ESLFLAG_NEAREST","features":[334]},{"name":"ESLFLAG_NEXT","features":[334]},{"name":"ESLFLAG_PREV","features":[334]},{"name":"EVENT_SRCSPEW","features":[334]},{"name":"EVENT_SRCSPEW_END","features":[334]},{"name":"EVENT_SRCSPEW_START","features":[334]},{"name":"EVENT_TRACING_FATAL_ERROR","features":[334]},{"name":"EXCEPTION_CONTINUE_EXECUTION","features":[334]},{"name":"EXCEPTION_CONTINUE_SEARCH","features":[334]},{"name":"EXCEPTION_DEBUG_EVENT","features":[334]},{"name":"EXCEPTION_DEBUG_INFO","features":[305,334]},{"name":"EXCEPTION_EXECUTE_HANDLER","features":[334]},{"name":"EXCEPTION_ON_INVALID_STACK","features":[334]},{"name":"EXCEPTION_POINTERS","features":[305,334,311]},{"name":"EXCEPTION_RECORD","features":[305,334]},{"name":"EXCEPTION_RECORD32","features":[305,334]},{"name":"EXCEPTION_RECORD64","features":[305,334]},{"name":"EXCEPTION_SCOPE_INVALID","features":[334]},{"name":"EXFAT_FILE_SYSTEM","features":[334]},{"name":"EXIT_PROCESS_DEBUG_EVENT","features":[334]},{"name":"EXIT_PROCESS_DEBUG_INFO","features":[334]},{"name":"EXIT_THREAD_DEBUG_EVENT","features":[334]},{"name":"EXIT_THREAD_DEBUG_INFO","features":[334]},{"name":"EXRESOURCE_TIMEOUT_LIVEDUMP","features":[334]},{"name":"EXT_OUTPUT_VER","features":[334]},{"name":"EX_PROP_INFO_DEBUGEXTPROP","features":[334]},{"name":"EX_PROP_INFO_FLAGS","features":[334]},{"name":"EX_PROP_INFO_ID","features":[334]},{"name":"EX_PROP_INFO_LOCKBYTES","features":[334]},{"name":"EX_PROP_INFO_NTYPE","features":[334]},{"name":"EX_PROP_INFO_NVALUE","features":[334]},{"name":"EncodePointer","features":[334]},{"name":"EncodeRemotePointer","features":[305,334]},{"name":"EncodeSystemPointer","features":[334]},{"name":"EnumDirTree","features":[305,334]},{"name":"EnumDirTreeW","features":[305,334]},{"name":"EnumerateLoadedModules","features":[305,334]},{"name":"EnumerateLoadedModules64","features":[305,334]},{"name":"EnumerateLoadedModulesEx","features":[305,334]},{"name":"EnumerateLoadedModulesExW","features":[305,334]},{"name":"EnumerateLoadedModulesW64","features":[305,334]},{"name":"ExceptionStream","features":[334]},{"name":"ExtendedDebugPropertyInfo","features":[429,334]},{"name":"FACILITY_AAF","features":[334]},{"name":"FACILITY_ACCELERATOR","features":[334]},{"name":"FACILITY_ACS","features":[334]},{"name":"FACILITY_ACTION_QUEUE","features":[334]},{"name":"FACILITY_AUDCLNT","features":[334]},{"name":"FACILITY_AUDIO","features":[334]},{"name":"FACILITY_AUDIOSTREAMING","features":[334]},{"name":"FACILITY_BACKGROUNDCOPY","features":[334]},{"name":"FACILITY_BCD","features":[334]},{"name":"FACILITY_BLB","features":[334]},{"name":"FACILITY_BLBUI","features":[334]},{"name":"FACILITY_BLB_CLI","features":[334]},{"name":"FACILITY_BLUETOOTH_ATT","features":[334]},{"name":"FACILITY_CERT","features":[334]},{"name":"FACILITY_CMI","features":[334]},{"name":"FACILITY_CODE","features":[334]},{"name":"FACILITY_COMPLUS","features":[334]},{"name":"FACILITY_CONFIGURATION","features":[334]},{"name":"FACILITY_CONTROL","features":[334]},{"name":"FACILITY_DAF","features":[334]},{"name":"FACILITY_DEBUGGERS","features":[334]},{"name":"FACILITY_DEFRAG","features":[334]},{"name":"FACILITY_DELIVERY_OPTIMIZATION","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_BINLSVC","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_CONTENT_PROVIDER","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_DRIVER_PROVISIONING","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_IMAGING","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MANAGEMENT","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_CLIENT","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_MULTICAST_SERVER","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_PXE","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_SERVER","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TFTP","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_TRANSPORT_MANAGEMENT","features":[334]},{"name":"FACILITY_DEPLOYMENT_SERVICES_UTIL","features":[334]},{"name":"FACILITY_DEVICE_UPDATE_AGENT","features":[334]},{"name":"FACILITY_DIRECT2D","features":[334]},{"name":"FACILITY_DIRECT3D10","features":[334]},{"name":"FACILITY_DIRECT3D11","features":[334]},{"name":"FACILITY_DIRECT3D11_DEBUG","features":[334]},{"name":"FACILITY_DIRECT3D12","features":[334]},{"name":"FACILITY_DIRECT3D12_DEBUG","features":[334]},{"name":"FACILITY_DIRECTMUSIC","features":[334]},{"name":"FACILITY_DIRECTORYSERVICE","features":[334]},{"name":"FACILITY_DISPATCH","features":[334]},{"name":"FACILITY_DLS","features":[334]},{"name":"FACILITY_DMSERVER","features":[334]},{"name":"FACILITY_DPLAY","features":[334]},{"name":"FACILITY_DRVSERVICING","features":[334]},{"name":"FACILITY_DXCORE","features":[334]},{"name":"FACILITY_DXGI","features":[334]},{"name":"FACILITY_DXGI_DDI","features":[334]},{"name":"FACILITY_EAP","features":[334]},{"name":"FACILITY_EAS","features":[334]},{"name":"FACILITY_FVE","features":[334]},{"name":"FACILITY_FWP","features":[334]},{"name":"FACILITY_GAME","features":[334]},{"name":"FACILITY_GRAPHICS","features":[334]},{"name":"FACILITY_HSP_SERVICES","features":[334]},{"name":"FACILITY_HSP_SOFTWARE","features":[334]},{"name":"FACILITY_HTTP","features":[334]},{"name":"FACILITY_INPUT","features":[334]},{"name":"FACILITY_INTERNET","features":[334]},{"name":"FACILITY_IORING","features":[334]},{"name":"FACILITY_ITF","features":[334]},{"name":"FACILITY_JSCRIPT","features":[334]},{"name":"FACILITY_LEAP","features":[334]},{"name":"FACILITY_LINGUISTIC_SERVICES","features":[334]},{"name":"FACILITY_MBN","features":[334]},{"name":"FACILITY_MEDIASERVER","features":[334]},{"name":"FACILITY_METADIRECTORY","features":[334]},{"name":"FACILITY_MOBILE","features":[334]},{"name":"FACILITY_MSMQ","features":[334]},{"name":"FACILITY_NAP","features":[334]},{"name":"FACILITY_NDIS","features":[334]},{"name":"FACILITY_NT_BIT","features":[334]},{"name":"FACILITY_NULL","features":[334]},{"name":"FACILITY_OCP_UPDATE_AGENT","features":[334]},{"name":"FACILITY_ONLINE_ID","features":[334]},{"name":"FACILITY_OPC","features":[334]},{"name":"FACILITY_P2P","features":[334]},{"name":"FACILITY_P2P_INT","features":[334]},{"name":"FACILITY_PARSE","features":[334]},{"name":"FACILITY_PIDGENX","features":[334]},{"name":"FACILITY_PIX","features":[334]},{"name":"FACILITY_PLA","features":[334]},{"name":"FACILITY_POWERSHELL","features":[334]},{"name":"FACILITY_PRESENTATION","features":[334]},{"name":"FACILITY_QUIC","features":[334]},{"name":"FACILITY_RAS","features":[334]},{"name":"FACILITY_RESTORE","features":[334]},{"name":"FACILITY_RPC","features":[334]},{"name":"FACILITY_SCARD","features":[334]},{"name":"FACILITY_SCRIPT","features":[334]},{"name":"FACILITY_SDIAG","features":[334]},{"name":"FACILITY_SECURITY","features":[334]},{"name":"FACILITY_SERVICE_FABRIC","features":[334]},{"name":"FACILITY_SETUPAPI","features":[334]},{"name":"FACILITY_SHELL","features":[334]},{"name":"FACILITY_SOS","features":[334]},{"name":"FACILITY_SPP","features":[334]},{"name":"FACILITY_SQLITE","features":[334]},{"name":"FACILITY_SSPI","features":[334]},{"name":"FACILITY_STATEREPOSITORY","features":[334]},{"name":"FACILITY_STATE_MANAGEMENT","features":[334]},{"name":"FACILITY_STORAGE","features":[334]},{"name":"FACILITY_SXS","features":[334]},{"name":"FACILITY_SYNCENGINE","features":[334]},{"name":"FACILITY_TIERING","features":[334]},{"name":"FACILITY_TPM_SERVICES","features":[334]},{"name":"FACILITY_TPM_SOFTWARE","features":[334]},{"name":"FACILITY_TTD","features":[334]},{"name":"FACILITY_UI","features":[334]},{"name":"FACILITY_UMI","features":[334]},{"name":"FACILITY_URT","features":[334]},{"name":"FACILITY_USERMODE_COMMONLOG","features":[334]},{"name":"FACILITY_USERMODE_FILTER_MANAGER","features":[334]},{"name":"FACILITY_USERMODE_HNS","features":[334]},{"name":"FACILITY_USERMODE_HYPERVISOR","features":[334]},{"name":"FACILITY_USERMODE_LICENSING","features":[334]},{"name":"FACILITY_USERMODE_SDBUS","features":[334]},{"name":"FACILITY_USERMODE_SPACES","features":[334]},{"name":"FACILITY_USERMODE_VHD","features":[334]},{"name":"FACILITY_USERMODE_VIRTUALIZATION","features":[334]},{"name":"FACILITY_USERMODE_VOLMGR","features":[334]},{"name":"FACILITY_USERMODE_VOLSNAP","features":[334]},{"name":"FACILITY_USER_MODE_SECURITY_CORE","features":[334]},{"name":"FACILITY_USN","features":[334]},{"name":"FACILITY_UTC","features":[334]},{"name":"FACILITY_VISUALCPP","features":[334]},{"name":"FACILITY_WEB","features":[334]},{"name":"FACILITY_WEBSERVICES","features":[334]},{"name":"FACILITY_WEB_SOCKET","features":[334]},{"name":"FACILITY_WEP","features":[334]},{"name":"FACILITY_WER","features":[334]},{"name":"FACILITY_WIA","features":[334]},{"name":"FACILITY_WIN32","features":[334]},{"name":"FACILITY_WINCODEC_DWRITE_DWM","features":[334]},{"name":"FACILITY_WINDOWS","features":[334]},{"name":"FACILITY_WINDOWSUPDATE","features":[334]},{"name":"FACILITY_WINDOWS_CE","features":[334]},{"name":"FACILITY_WINDOWS_DEFENDER","features":[334]},{"name":"FACILITY_WINDOWS_SETUP","features":[334]},{"name":"FACILITY_WINDOWS_STORE","features":[334]},{"name":"FACILITY_WINML","features":[334]},{"name":"FACILITY_WINPE","features":[334]},{"name":"FACILITY_WINRM","features":[334]},{"name":"FACILITY_WMAAECMA","features":[334]},{"name":"FACILITY_WPN","features":[334]},{"name":"FACILITY_WSBAPP","features":[334]},{"name":"FACILITY_WSB_ONLINE","features":[334]},{"name":"FACILITY_XAML","features":[334]},{"name":"FACILITY_XBOX","features":[334]},{"name":"FACILITY_XPS","features":[334]},{"name":"FAST_ERESOURCE_PRECONDITION_VIOLATION","features":[334]},{"name":"FATAL_ABNORMAL_RESET_ERROR","features":[334]},{"name":"FATAL_UNHANDLED_HARD_ERROR","features":[334]},{"name":"FAT_FILE_SYSTEM","features":[334]},{"name":"FAULTY_HARDWARE_CORRUPTED_PAGE","features":[334]},{"name":"FILE_INITIALIZATION_FAILED","features":[334]},{"name":"FILE_SYSTEM","features":[334]},{"name":"FLAG_ENGINE_PRESENT","features":[334]},{"name":"FLAG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[334]},{"name":"FLAG_OVERRIDE_ARM_MACHINE_TYPE","features":[334]},{"name":"FLOPPY_INTERNAL_ERROR","features":[334]},{"name":"FLTMGR_FILE_SYSTEM","features":[334]},{"name":"FORMAT_MESSAGE_ALLOCATE_BUFFER","features":[334]},{"name":"FORMAT_MESSAGE_ARGUMENT_ARRAY","features":[334]},{"name":"FORMAT_MESSAGE_FROM_HMODULE","features":[334]},{"name":"FORMAT_MESSAGE_FROM_STRING","features":[334]},{"name":"FORMAT_MESSAGE_FROM_SYSTEM","features":[334]},{"name":"FORMAT_MESSAGE_IGNORE_INSERTS","features":[334]},{"name":"FORMAT_MESSAGE_OPTIONS","features":[334]},{"name":"FPO_DATA","features":[334]},{"name":"FP_EMULATION_ERROR","features":[334]},{"name":"FSRTL_EXTRA_CREATE_PARAMETER_VIOLATION","features":[334]},{"name":"FatalAppExitA","features":[334]},{"name":"FatalAppExitW","features":[334]},{"name":"FatalExit","features":[334]},{"name":"FindDebugInfoFile","features":[305,334]},{"name":"FindDebugInfoFileEx","features":[305,334]},{"name":"FindDebugInfoFileExW","features":[305,334]},{"name":"FindExecutableImage","features":[305,334]},{"name":"FindExecutableImageEx","features":[305,334]},{"name":"FindExecutableImageExW","features":[305,334]},{"name":"FindFileInPath","features":[305,334]},{"name":"FindFileInSearchPath","features":[305,334]},{"name":"FlushInstructionCache","features":[305,334]},{"name":"FormatMessageA","features":[334]},{"name":"FormatMessageW","features":[334]},{"name":"FunctionTableStream","features":[334]},{"name":"GPIO_CONTROLLER_DRIVER_ERROR","features":[334]},{"name":"GetEnabledXStateFeatures","features":[334]},{"name":"GetErrorMode","features":[334]},{"name":"GetImageConfigInformation","features":[305,334,311,336]},{"name":"GetImageConfigInformation","features":[305,334,311,336]},{"name":"GetImageUnusedHeaderBytes","features":[305,334,311,336]},{"name":"GetSymLoadError","features":[334]},{"name":"GetThreadContext","features":[305,334,311]},{"name":"GetThreadErrorMode","features":[334]},{"name":"GetThreadSelectorEntry","features":[305,334]},{"name":"GetThreadWaitChain","features":[305,334]},{"name":"GetTimestampForLoadedLibrary","features":[305,334]},{"name":"GetXStateFeaturesMask","features":[305,334,311]},{"name":"HAL1_INITIALIZATION_FAILED","features":[334]},{"name":"HAL_BLOCKED_PROCESSOR_INTERNAL_ERROR","features":[334]},{"name":"HAL_ILLEGAL_IOMMU_PAGE_FAULT","features":[334]},{"name":"HAL_INITIALIZATION_FAILED","features":[334]},{"name":"HAL_IOMMU_INTERNAL_ERROR","features":[334]},{"name":"HAL_MEMORY_ALLOCATION","features":[334]},{"name":"HANDLE_ERROR_ON_CRITICAL_THREAD","features":[334]},{"name":"HANDLE_LIVE_DUMP","features":[334]},{"name":"HARDWARE_INTERRUPT_STORM","features":[334]},{"name":"HARDWARE_PROFILE_DOCKED_STRING","features":[334]},{"name":"HARDWARE_PROFILE_UNDOCKED_STRING","features":[334]},{"name":"HARDWARE_PROFILE_UNKNOWN_STRING","features":[334]},{"name":"HARDWARE_WATCHDOG_TIMEOUT","features":[334]},{"name":"HTTP_DRIVER_CORRUPTED","features":[334]},{"name":"HYPERGUARD_INITIALIZATION_FAILURE","features":[334]},{"name":"HYPERGUARD_VIOLATION","features":[334]},{"name":"HYPERVISOR_ERROR","features":[334]},{"name":"HandleDataStream","features":[334]},{"name":"HandleOperationListStream","features":[334]},{"name":"IDebugExtendedProperty","features":[334]},{"name":"IDebugProperty","features":[334]},{"name":"IDebugPropertyEnumType_All","features":[334]},{"name":"IDebugPropertyEnumType_Arguments","features":[334]},{"name":"IDebugPropertyEnumType_Locals","features":[334]},{"name":"IDebugPropertyEnumType_LocalsPlusArgs","features":[334]},{"name":"IDebugPropertyEnumType_Registers","features":[334]},{"name":"IEnumDebugExtendedPropertyInfo","features":[334]},{"name":"IEnumDebugPropertyInfo","features":[334]},{"name":"ILLEGAL_ATS_INITIALIZATION","features":[334]},{"name":"ILLEGAL_IOMMU_PAGE_FAULT","features":[334]},{"name":"IMAGEHLP_CBA_EVENT","features":[334]},{"name":"IMAGEHLP_CBA_EVENTW","features":[334]},{"name":"IMAGEHLP_CBA_EVENT_SEVERITY","features":[334]},{"name":"IMAGEHLP_CBA_READ_MEMORY","features":[334]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD","features":[305,334]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOAD64","features":[305,334]},{"name":"IMAGEHLP_DEFERRED_SYMBOL_LOADW64","features":[305,334]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL","features":[334]},{"name":"IMAGEHLP_DUPLICATE_SYMBOL64","features":[334]},{"name":"IMAGEHLP_EXTENDED_OPTIONS","features":[334]},{"name":"IMAGEHLP_GET_TYPE_INFO_CHILDREN","features":[334]},{"name":"IMAGEHLP_GET_TYPE_INFO_FLAGS","features":[334]},{"name":"IMAGEHLP_GET_TYPE_INFO_PARAMS","features":[334]},{"name":"IMAGEHLP_GET_TYPE_INFO_UNCACHED","features":[334]},{"name":"IMAGEHLP_HD_TYPE","features":[334]},{"name":"IMAGEHLP_JIT_SYMBOLMAP","features":[334]},{"name":"IMAGEHLP_LINE","features":[334]},{"name":"IMAGEHLP_LINE64","features":[334]},{"name":"IMAGEHLP_LINEW","features":[334]},{"name":"IMAGEHLP_LINEW64","features":[334]},{"name":"IMAGEHLP_MODULE","features":[334]},{"name":"IMAGEHLP_MODULE64","features":[305,334]},{"name":"IMAGEHLP_MODULE64_EX","features":[305,334]},{"name":"IMAGEHLP_MODULEW","features":[334]},{"name":"IMAGEHLP_MODULEW64","features":[305,334]},{"name":"IMAGEHLP_MODULEW64_EX","features":[305,334]},{"name":"IMAGEHLP_MODULE_REGION_ADDITIONAL","features":[334]},{"name":"IMAGEHLP_MODULE_REGION_ALL","features":[334]},{"name":"IMAGEHLP_MODULE_REGION_DLLBASE","features":[334]},{"name":"IMAGEHLP_MODULE_REGION_DLLRANGE","features":[334]},{"name":"IMAGEHLP_MODULE_REGION_JIT","features":[334]},{"name":"IMAGEHLP_RMAP_BIG_ENDIAN","features":[334]},{"name":"IMAGEHLP_RMAP_FIXUP_ARM64X","features":[334]},{"name":"IMAGEHLP_RMAP_FIXUP_IMAGEBASE","features":[334]},{"name":"IMAGEHLP_RMAP_IGNORE_MISCOMPARE","features":[334]},{"name":"IMAGEHLP_RMAP_LOAD_RW_DATA_SECTIONS","features":[334]},{"name":"IMAGEHLP_RMAP_MAPPED_FLAT","features":[334]},{"name":"IMAGEHLP_RMAP_OMIT_SHARED_RW_DATA_SECTIONS","features":[334]},{"name":"IMAGEHLP_SF_TYPE","features":[334]},{"name":"IMAGEHLP_STACK_FRAME","features":[305,334]},{"name":"IMAGEHLP_STATUS_REASON","features":[334]},{"name":"IMAGEHLP_SYMBOL","features":[334]},{"name":"IMAGEHLP_SYMBOL64","features":[334]},{"name":"IMAGEHLP_SYMBOL64_PACKAGE","features":[334]},{"name":"IMAGEHLP_SYMBOLW","features":[334]},{"name":"IMAGEHLP_SYMBOLW64","features":[334]},{"name":"IMAGEHLP_SYMBOLW64_PACKAGE","features":[334]},{"name":"IMAGEHLP_SYMBOLW_PACKAGE","features":[334]},{"name":"IMAGEHLP_SYMBOL_FUNCTION","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_CONSTANT","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_FRAMERELATIVE","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_LOCAL","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_PARAMETER","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_REGISTER","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_REGRELATIVE","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_TLSRELATIVE","features":[334]},{"name":"IMAGEHLP_SYMBOL_INFO_VALUEPRESENT","features":[334]},{"name":"IMAGEHLP_SYMBOL_PACKAGE","features":[334]},{"name":"IMAGEHLP_SYMBOL_SRC","features":[334]},{"name":"IMAGEHLP_SYMBOL_THUNK","features":[334]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO","features":[334]},{"name":"IMAGEHLP_SYMBOL_TYPE_INFO_MAX","features":[334]},{"name":"IMAGEHLP_SYMBOL_VIRTUAL","features":[334]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY","features":[334]},{"name":"IMAGE_COFF_SYMBOLS_HEADER","features":[334]},{"name":"IMAGE_COR20_HEADER","features":[334]},{"name":"IMAGE_DATA_DIRECTORY","features":[334]},{"name":"IMAGE_DEBUG_DIRECTORY","features":[334]},{"name":"IMAGE_DEBUG_INFORMATION","features":[305,334,311]},{"name":"IMAGE_DEBUG_TYPE","features":[334]},{"name":"IMAGE_DEBUG_TYPE_BORLAND","features":[334]},{"name":"IMAGE_DEBUG_TYPE_CODEVIEW","features":[334]},{"name":"IMAGE_DEBUG_TYPE_COFF","features":[334]},{"name":"IMAGE_DEBUG_TYPE_EXCEPTION","features":[334]},{"name":"IMAGE_DEBUG_TYPE_FIXUP","features":[334]},{"name":"IMAGE_DEBUG_TYPE_FPO","features":[334]},{"name":"IMAGE_DEBUG_TYPE_MISC","features":[334]},{"name":"IMAGE_DEBUG_TYPE_UNKNOWN","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_ARCHITECTURE","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_BASERELOC","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_DEBUG","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_EXCEPTION","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_EXPORT","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_GLOBALPTR","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_IAT","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_IMPORT","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_RESOURCE","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_SECURITY","features":[334]},{"name":"IMAGE_DIRECTORY_ENTRY_TLS","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_APPCONTAINER","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_COMPAT_STRICT_MODE","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_DYNAMIC_APIS_ALLOW_IN_PROC","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_1","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_RESERVED_2","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_EX_CET_SET_CONTEXT_IP_VALIDATION_RELAXED_MODE","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_GUARD_CF","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_BIND","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_ISOLATION","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_NO_SEH","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_NX_COMPAT","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE","features":[334]},{"name":"IMAGE_DLLCHARACTERISTICS_WDM_DRIVER","features":[334]},{"name":"IMAGE_DLL_CHARACTERISTICS","features":[334]},{"name":"IMAGE_FILE_32BIT_MACHINE","features":[334]},{"name":"IMAGE_FILE_32BIT_MACHINE2","features":[334]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM","features":[334]},{"name":"IMAGE_FILE_AGGRESIVE_WS_TRIM2","features":[334]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI","features":[334]},{"name":"IMAGE_FILE_BYTES_REVERSED_HI_2","features":[334]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO","features":[334]},{"name":"IMAGE_FILE_BYTES_REVERSED_LO2","features":[334]},{"name":"IMAGE_FILE_CHARACTERISTICS","features":[334]},{"name":"IMAGE_FILE_CHARACTERISTICS2","features":[334]},{"name":"IMAGE_FILE_DEBUG_STRIPPED","features":[334]},{"name":"IMAGE_FILE_DEBUG_STRIPPED2","features":[334]},{"name":"IMAGE_FILE_DLL","features":[334]},{"name":"IMAGE_FILE_DLL_2","features":[334]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE","features":[334]},{"name":"IMAGE_FILE_EXECUTABLE_IMAGE2","features":[334]},{"name":"IMAGE_FILE_HEADER","features":[334,336]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE","features":[334]},{"name":"IMAGE_FILE_LARGE_ADDRESS_AWARE2","features":[334]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED","features":[334]},{"name":"IMAGE_FILE_LINE_NUMS_STRIPPED2","features":[334]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED","features":[334]},{"name":"IMAGE_FILE_LOCAL_SYMS_STRIPPED2","features":[334]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP","features":[334]},{"name":"IMAGE_FILE_NET_RUN_FROM_SWAP2","features":[334]},{"name":"IMAGE_FILE_RELOCS_STRIPPED","features":[334]},{"name":"IMAGE_FILE_RELOCS_STRIPPED2","features":[334]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP","features":[334]},{"name":"IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP2","features":[334]},{"name":"IMAGE_FILE_SYSTEM","features":[334]},{"name":"IMAGE_FILE_SYSTEM_2","features":[334]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY","features":[334]},{"name":"IMAGE_FILE_UP_SYSTEM_ONLY_2","features":[334]},{"name":"IMAGE_FUNCTION_ENTRY","features":[334]},{"name":"IMAGE_FUNCTION_ENTRY64","features":[334]},{"name":"IMAGE_LOAD_CONFIG_CODE_INTEGRITY","features":[334]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY32","features":[334]},{"name":"IMAGE_LOAD_CONFIG_DIRECTORY64","features":[334]},{"name":"IMAGE_NT_HEADERS32","features":[334,336]},{"name":"IMAGE_NT_HEADERS64","features":[334,336]},{"name":"IMAGE_NT_OPTIONAL_HDR32_MAGIC","features":[334]},{"name":"IMAGE_NT_OPTIONAL_HDR64_MAGIC","features":[334]},{"name":"IMAGE_NT_OPTIONAL_HDR_MAGIC","features":[334]},{"name":"IMAGE_OPTIONAL_HEADER32","features":[334]},{"name":"IMAGE_OPTIONAL_HEADER64","features":[334]},{"name":"IMAGE_OPTIONAL_HEADER_MAGIC","features":[334]},{"name":"IMAGE_ROM_HEADERS","features":[334,336]},{"name":"IMAGE_ROM_OPTIONAL_HDR_MAGIC","features":[334]},{"name":"IMAGE_ROM_OPTIONAL_HEADER","features":[334]},{"name":"IMAGE_RUNTIME_FUNCTION_ENTRY","features":[334]},{"name":"IMAGE_SCN_ALIGN_1024BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_128BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_16BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_1BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_2048BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_256BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_2BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_32BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_4096BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_4BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_512BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_64BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_8192BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_8BYTES","features":[334]},{"name":"IMAGE_SCN_ALIGN_MASK","features":[334]},{"name":"IMAGE_SCN_CNT_CODE","features":[334]},{"name":"IMAGE_SCN_CNT_INITIALIZED_DATA","features":[334]},{"name":"IMAGE_SCN_CNT_UNINITIALIZED_DATA","features":[334]},{"name":"IMAGE_SCN_GPREL","features":[334]},{"name":"IMAGE_SCN_LNK_COMDAT","features":[334]},{"name":"IMAGE_SCN_LNK_INFO","features":[334]},{"name":"IMAGE_SCN_LNK_NRELOC_OVFL","features":[334]},{"name":"IMAGE_SCN_LNK_OTHER","features":[334]},{"name":"IMAGE_SCN_LNK_REMOVE","features":[334]},{"name":"IMAGE_SCN_MEM_16BIT","features":[334]},{"name":"IMAGE_SCN_MEM_DISCARDABLE","features":[334]},{"name":"IMAGE_SCN_MEM_EXECUTE","features":[334]},{"name":"IMAGE_SCN_MEM_FARDATA","features":[334]},{"name":"IMAGE_SCN_MEM_LOCKED","features":[334]},{"name":"IMAGE_SCN_MEM_NOT_CACHED","features":[334]},{"name":"IMAGE_SCN_MEM_NOT_PAGED","features":[334]},{"name":"IMAGE_SCN_MEM_PRELOAD","features":[334]},{"name":"IMAGE_SCN_MEM_PURGEABLE","features":[334]},{"name":"IMAGE_SCN_MEM_READ","features":[334]},{"name":"IMAGE_SCN_MEM_SHARED","features":[334]},{"name":"IMAGE_SCN_MEM_WRITE","features":[334]},{"name":"IMAGE_SCN_NO_DEFER_SPEC_EXC","features":[334]},{"name":"IMAGE_SCN_SCALE_INDEX","features":[334]},{"name":"IMAGE_SCN_TYPE_NO_PAD","features":[334]},{"name":"IMAGE_SECTION_CHARACTERISTICS","features":[334]},{"name":"IMAGE_SECTION_HEADER","features":[334]},{"name":"IMAGE_SUBSYSTEM","features":[334]},{"name":"IMAGE_SUBSYSTEM_EFI_APPLICATION","features":[334]},{"name":"IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER","features":[334]},{"name":"IMAGE_SUBSYSTEM_EFI_ROM","features":[334]},{"name":"IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER","features":[334]},{"name":"IMAGE_SUBSYSTEM_NATIVE","features":[334]},{"name":"IMAGE_SUBSYSTEM_NATIVE_WINDOWS","features":[334]},{"name":"IMAGE_SUBSYSTEM_OS2_CUI","features":[334]},{"name":"IMAGE_SUBSYSTEM_POSIX_CUI","features":[334]},{"name":"IMAGE_SUBSYSTEM_UNKNOWN","features":[334]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION","features":[334]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CE_GUI","features":[334]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_CUI","features":[334]},{"name":"IMAGE_SUBSYSTEM_WINDOWS_GUI","features":[334]},{"name":"IMAGE_SUBSYSTEM_XBOX","features":[334]},{"name":"IMAGE_SUBSYSTEM_XBOX_CODE_CATALOG","features":[334]},{"name":"IMPERSONATING_WORKER_THREAD","features":[334]},{"name":"INACCESSIBLE_BOOT_DEVICE","features":[334]},{"name":"INCONSISTENT_IRP","features":[334]},{"name":"INLINE_FRAME_CONTEXT_IGNORE","features":[334]},{"name":"INLINE_FRAME_CONTEXT_INIT","features":[334]},{"name":"INSTALL_MORE_MEMORY","features":[334]},{"name":"INSTRUCTION_BUS_ERROR","features":[334]},{"name":"INSTRUCTION_COHERENCY_EXCEPTION","features":[334]},{"name":"INSUFFICIENT_SYSTEM_MAP_REGS","features":[334]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_CALLER","features":[334]},{"name":"INTERFACESAFE_FOR_UNTRUSTED_DATA","features":[334]},{"name":"INTERFACE_USES_DISPEX","features":[334]},{"name":"INTERFACE_USES_SECURITY_MANAGER","features":[334]},{"name":"INTERNAL_POWER_ERROR","features":[334]},{"name":"INTERRUPT_EXCEPTION_NOT_HANDLED","features":[334]},{"name":"INTERRUPT_UNWIND_ATTEMPTED","features":[334]},{"name":"INVALID_AFFINITY_SET","features":[334]},{"name":"INVALID_ALTERNATE_SYSTEM_CALL_HANDLER_REGISTRATION","features":[334]},{"name":"INVALID_CALLBACK_STACK_ADDRESS","features":[334]},{"name":"INVALID_CANCEL_OF_FILE_OPEN","features":[334]},{"name":"INVALID_DATA_ACCESS_TRAP","features":[334]},{"name":"INVALID_DRIVER_HANDLE","features":[334]},{"name":"INVALID_EXTENDED_PROCESSOR_STATE","features":[334]},{"name":"INVALID_FLOATING_POINT_STATE","features":[334]},{"name":"INVALID_HIBERNATED_STATE","features":[334]},{"name":"INVALID_IO_BOOST_STATE","features":[334]},{"name":"INVALID_KERNEL_HANDLE","features":[334]},{"name":"INVALID_KERNEL_STACK_ADDRESS","features":[334]},{"name":"INVALID_MDL_RANGE","features":[334]},{"name":"INVALID_PROCESS_ATTACH_ATTEMPT","features":[334]},{"name":"INVALID_PROCESS_DETACH_ATTEMPT","features":[334]},{"name":"INVALID_PUSH_LOCK_FLAGS","features":[334]},{"name":"INVALID_REGION_OR_SEGMENT","features":[334]},{"name":"INVALID_RUNDOWN_PROTECTION_FLAGS","features":[334]},{"name":"INVALID_SILO_DETACH","features":[334]},{"name":"INVALID_SLOT_ALLOCATOR_FLAGS","features":[334]},{"name":"INVALID_SOFTWARE_INTERRUPT","features":[334]},{"name":"INVALID_THREAD_AFFINITY_STATE","features":[334]},{"name":"INVALID_WORK_QUEUE_ITEM","features":[334]},{"name":"IO1_INITIALIZATION_FAILED","features":[334]},{"name":"IOCTL_IPMI_INTERNAL_RECORD_SEL_EVENT","features":[334]},{"name":"IORING","features":[334]},{"name":"IO_OBJECT_INVALID","features":[334]},{"name":"IO_THREADPOOL_DEADLOCK_LIVEDUMP","features":[334]},{"name":"IObjectSafety","features":[334]},{"name":"IPI_WATCHDOG_TIMEOUT","features":[334]},{"name":"IPMI_IOCTL_INDEX","features":[334]},{"name":"IPMI_OS_SEL_RECORD","features":[334]},{"name":"IPMI_OS_SEL_RECORD_MASK","features":[334]},{"name":"IPMI_OS_SEL_RECORD_TYPE","features":[334]},{"name":"IPMI_OS_SEL_RECORD_VERSION","features":[334]},{"name":"IPMI_OS_SEL_RECORD_VERSION_1","features":[334]},{"name":"IPerPropertyBrowsing2","features":[334]},{"name":"IRQL_GT_ZERO_AT_SYSTEM_SERVICE","features":[334]},{"name":"IRQL_NOT_DISPATCH_LEVEL","features":[334]},{"name":"IRQL_NOT_GREATER_OR_EQUAL","features":[334]},{"name":"IRQL_NOT_LESS_OR_EQUAL","features":[334]},{"name":"IRQL_UNEXPECTED_VALUE","features":[334]},{"name":"ImageAddCertificate","features":[305,489,334]},{"name":"ImageDirectoryEntryToData","features":[305,334]},{"name":"ImageDirectoryEntryToDataEx","features":[305,334]},{"name":"ImageEnumerateCertificates","features":[305,334]},{"name":"ImageGetCertificateData","features":[305,489,334]},{"name":"ImageGetCertificateHeader","features":[305,489,334]},{"name":"ImageGetDigestStream","features":[305,334]},{"name":"ImageLoad","features":[305,334,311,336]},{"name":"ImageNtHeader","features":[334,336]},{"name":"ImageNtHeader","features":[334,336]},{"name":"ImageRemoveCertificate","features":[305,334]},{"name":"ImageRvaToSection","features":[334,336]},{"name":"ImageRvaToSection","features":[334,336]},{"name":"ImageRvaToVa","features":[334,336]},{"name":"ImageRvaToVa","features":[334,336]},{"name":"ImageUnload","features":[305,334,311,336]},{"name":"ImagehlpApiVersion","features":[334]},{"name":"ImagehlpApiVersionEx","features":[334]},{"name":"IncludeModuleCallback","features":[334]},{"name":"IncludeThreadCallback","features":[334]},{"name":"IncludeVmRegionCallback","features":[334]},{"name":"InitializeContext","features":[305,334,311]},{"name":"InitializeContext2","features":[305,334,311]},{"name":"IoFinishCallback","features":[334]},{"name":"IoStartCallback","features":[334]},{"name":"IoWriteAllCallback","features":[334]},{"name":"IpmiOsSelRecordTypeBugcheckData","features":[334]},{"name":"IpmiOsSelRecordTypeBugcheckRecovery","features":[334]},{"name":"IpmiOsSelRecordTypeDriver","features":[334]},{"name":"IpmiOsSelRecordTypeMax","features":[334]},{"name":"IpmiOsSelRecordTypeOther","features":[334]},{"name":"IpmiOsSelRecordTypeRaw","features":[334]},{"name":"IpmiOsSelRecordTypeWhea","features":[334]},{"name":"IpmiOsSelRecordTypeWheaErrorNmi","features":[334]},{"name":"IpmiOsSelRecordTypeWheaErrorOther","features":[334]},{"name":"IpmiOsSelRecordTypeWheaErrorPci","features":[334]},{"name":"IpmiOsSelRecordTypeWheaErrorXpfMca","features":[334]},{"name":"IptTraceStream","features":[334]},{"name":"IsDebuggerPresent","features":[305,334]},{"name":"IsProcessSnapshotCallback","features":[334]},{"name":"JavaScriptDataStream","features":[334]},{"name":"KASAN_ENLIGHTENMENT_VIOLATION","features":[334]},{"name":"KASAN_ILLEGAL_ACCESS","features":[334]},{"name":"KDHELP","features":[334]},{"name":"KDHELP64","features":[334]},{"name":"KERNEL_APC_PENDING_DURING_EXIT","features":[334]},{"name":"KERNEL_AUTO_BOOST_INVALID_LOCK_RELEASE","features":[334]},{"name":"KERNEL_AUTO_BOOST_LOCK_ACQUISITION_WITH_RAISED_IRQL","features":[334]},{"name":"KERNEL_CFG_INIT_FAILURE","features":[334]},{"name":"KERNEL_DATA_INPAGE_ERROR","features":[334]},{"name":"KERNEL_EXPAND_STACK_ACTIVE","features":[334]},{"name":"KERNEL_LOCK_ENTRY_LEAKED_ON_THREAD_TERMINATION","features":[334]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED","features":[334]},{"name":"KERNEL_MODE_EXCEPTION_NOT_HANDLED_M","features":[334]},{"name":"KERNEL_MODE_HEAP_CORRUPTION","features":[334]},{"name":"KERNEL_PARTITION_REFERENCE_VIOLATION","features":[334]},{"name":"KERNEL_SECURITY_CHECK_FAILURE","features":[334]},{"name":"KERNEL_STACK_INPAGE_ERROR","features":[334]},{"name":"KERNEL_STACK_LOCKED_AT_EXIT","features":[334]},{"name":"KERNEL_STORAGE_SLOT_IN_USE","features":[334]},{"name":"KERNEL_THREAD_PRIORITY_FLOOR_VIOLATION","features":[334]},{"name":"KERNEL_WMI_INTERNAL","features":[334]},{"name":"KMODE_EXCEPTION_NOT_HANDLED","features":[334]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[334]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[334]},{"name":"KNONVOLATILE_CONTEXT_POINTERS","features":[334]},{"name":"KernelMinidumpStatusCallback","features":[334]},{"name":"LAST_CHANCE_CALLED_FROM_KMODE","features":[334]},{"name":"LDT_ENTRY","features":[334]},{"name":"LIVE_SYSTEM_DUMP","features":[334]},{"name":"LM_SERVER_INTERNAL_ERROR","features":[334]},{"name":"LOADED_IMAGE","features":[305,334,311,336]},{"name":"LOADED_IMAGE","features":[305,334,311,336]},{"name":"LOADER_BLOCK_MISMATCH","features":[334]},{"name":"LOADER_ROLLBACK_DETECTED","features":[334]},{"name":"LOAD_DLL_DEBUG_EVENT","features":[334]},{"name":"LOAD_DLL_DEBUG_INFO","features":[305,334]},{"name":"LOCKED_PAGES_TRACKER_CORRUPTION","features":[334]},{"name":"LPCALL_BACK_USER_INTERRUPT_ROUTINE","features":[334]},{"name":"LPC_INITIALIZATION_FAILED","features":[334]},{"name":"LPTOP_LEVEL_EXCEPTION_FILTER","features":[305,334,311]},{"name":"LastReservedStream","features":[334]},{"name":"LocateXStateFeature","features":[334,311]},{"name":"M128A","features":[334]},{"name":"MACHINE_CHECK_EXCEPTION","features":[334]},{"name":"MAILSLOT_FILE_SYSTEM","features":[334]},{"name":"MANUALLY_INITIATED_BLACKSCREEN_HOTKEY_LIVE_DUMP","features":[334]},{"name":"MANUALLY_INITIATED_CRASH","features":[334]},{"name":"MANUALLY_INITIATED_CRASH1","features":[334]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD","features":[334]},{"name":"MANUALLY_INITIATED_POWER_BUTTON_HOLD_LIVE_DUMP","features":[334]},{"name":"MAXIMUM_WAIT_OBJECTS_EXCEEDED","features":[334]},{"name":"MAX_SYM_NAME","features":[334]},{"name":"MBR_CHECKSUM_MISMATCH","features":[334]},{"name":"MDL_CACHE","features":[334]},{"name":"MEMORY1_INITIALIZATION_FAILED","features":[334]},{"name":"MEMORY_IMAGE_CORRUPT","features":[334]},{"name":"MEMORY_MANAGEMENT","features":[334]},{"name":"MICROCODE_REVISION_MISMATCH","features":[334]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[305,324,334,311,323]},{"name":"MINIDUMP_CALLBACK_INFORMATION","features":[305,324,334,311,323]},{"name":"MINIDUMP_CALLBACK_INPUT","features":[305,324,334,311]},{"name":"MINIDUMP_CALLBACK_OUTPUT","features":[305,334,323]},{"name":"MINIDUMP_CALLBACK_ROUTINE","features":[305,324,334,311,323]},{"name":"MINIDUMP_CALLBACK_TYPE","features":[334]},{"name":"MINIDUMP_DIRECTORY","features":[334]},{"name":"MINIDUMP_EXCEPTION","features":[334]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[305,334,311]},{"name":"MINIDUMP_EXCEPTION_INFORMATION","features":[305,334,311]},{"name":"MINIDUMP_EXCEPTION_INFORMATION64","features":[305,334]},{"name":"MINIDUMP_EXCEPTION_STREAM","features":[334]},{"name":"MINIDUMP_FUNCTION_TABLE_DESCRIPTOR","features":[334]},{"name":"MINIDUMP_FUNCTION_TABLE_STREAM","features":[334]},{"name":"MINIDUMP_HANDLE_DATA_STREAM","features":[334]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR","features":[334]},{"name":"MINIDUMP_HANDLE_DESCRIPTOR_2","features":[334]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION","features":[334]},{"name":"MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE","features":[334]},{"name":"MINIDUMP_HANDLE_OPERATION_LIST","features":[334]},{"name":"MINIDUMP_HEADER","features":[334]},{"name":"MINIDUMP_INCLUDE_MODULE_CALLBACK","features":[334]},{"name":"MINIDUMP_INCLUDE_THREAD_CALLBACK","features":[334]},{"name":"MINIDUMP_IO_CALLBACK","features":[305,334]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR","features":[334]},{"name":"MINIDUMP_LOCATION_DESCRIPTOR64","features":[334]},{"name":"MINIDUMP_MEMORY64_LIST","features":[334]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR","features":[334]},{"name":"MINIDUMP_MEMORY_DESCRIPTOR64","features":[334]},{"name":"MINIDUMP_MEMORY_INFO","features":[334,323]},{"name":"MINIDUMP_MEMORY_INFO_LIST","features":[334]},{"name":"MINIDUMP_MEMORY_LIST","features":[334]},{"name":"MINIDUMP_MISC1_PROCESSOR_POWER_INFO","features":[334]},{"name":"MINIDUMP_MISC1_PROCESS_ID","features":[334]},{"name":"MINIDUMP_MISC1_PROCESS_TIMES","features":[334]},{"name":"MINIDUMP_MISC3_PROCESS_EXECUTE_FLAGS","features":[334]},{"name":"MINIDUMP_MISC3_PROCESS_INTEGRITY","features":[334]},{"name":"MINIDUMP_MISC3_PROTECTED_PROCESS","features":[334]},{"name":"MINIDUMP_MISC3_TIMEZONE","features":[334]},{"name":"MINIDUMP_MISC4_BUILDSTRING","features":[334]},{"name":"MINIDUMP_MISC5_PROCESS_COOKIE","features":[334]},{"name":"MINIDUMP_MISC_INFO","features":[334]},{"name":"MINIDUMP_MISC_INFO_2","features":[334]},{"name":"MINIDUMP_MISC_INFO_3","features":[305,334,543]},{"name":"MINIDUMP_MISC_INFO_4","features":[305,334,543]},{"name":"MINIDUMP_MISC_INFO_5","features":[305,334,543]},{"name":"MINIDUMP_MISC_INFO_FLAGS","features":[334]},{"name":"MINIDUMP_MODULE","features":[324,334]},{"name":"MINIDUMP_MODULE_CALLBACK","features":[324,334]},{"name":"MINIDUMP_MODULE_LIST","features":[324,334]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS","features":[334]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_1","features":[334]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_2","features":[334]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX","features":[334]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_EX2","features":[334]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_JOB","features":[334]},{"name":"MINIDUMP_PROCESS_VM_COUNTERS_VIRTUALSIZE","features":[334]},{"name":"MINIDUMP_READ_MEMORY_FAILURE_CALLBACK","features":[334]},{"name":"MINIDUMP_SECONDARY_FLAGS","features":[334]},{"name":"MINIDUMP_STREAM_TYPE","features":[334]},{"name":"MINIDUMP_STRING","features":[334]},{"name":"MINIDUMP_SYSMEMINFO1_BASICPERF","features":[334]},{"name":"MINIDUMP_SYSMEMINFO1_FILECACHE_TRANSITIONREPURPOSECOUNT_FLAGS","features":[334]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_CCTOTALDIRTYPAGES_CCDIRTYPAGETHRESHOLD","features":[334]},{"name":"MINIDUMP_SYSMEMINFO1_PERF_RESIDENTAVAILABLEPAGES_SHAREDCOMMITPAGES","features":[334]},{"name":"MINIDUMP_SYSTEM_BASIC_INFORMATION","features":[334]},{"name":"MINIDUMP_SYSTEM_BASIC_PERFORMANCE_INFORMATION","features":[334]},{"name":"MINIDUMP_SYSTEM_FILECACHE_INFORMATION","features":[334]},{"name":"MINIDUMP_SYSTEM_INFO","features":[334,336]},{"name":"MINIDUMP_SYSTEM_MEMORY_INFO_1","features":[334]},{"name":"MINIDUMP_SYSTEM_PERFORMANCE_INFORMATION","features":[334]},{"name":"MINIDUMP_THREAD","features":[334]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[305,334,311]},{"name":"MINIDUMP_THREAD_CALLBACK","features":[305,334,311]},{"name":"MINIDUMP_THREAD_EX","features":[334]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[305,334,311]},{"name":"MINIDUMP_THREAD_EX_CALLBACK","features":[305,334,311]},{"name":"MINIDUMP_THREAD_EX_LIST","features":[334]},{"name":"MINIDUMP_THREAD_INFO","features":[334]},{"name":"MINIDUMP_THREAD_INFO_DUMP_FLAGS","features":[334]},{"name":"MINIDUMP_THREAD_INFO_ERROR_THREAD","features":[334]},{"name":"MINIDUMP_THREAD_INFO_EXITED_THREAD","features":[334]},{"name":"MINIDUMP_THREAD_INFO_INVALID_CONTEXT","features":[334]},{"name":"MINIDUMP_THREAD_INFO_INVALID_INFO","features":[334]},{"name":"MINIDUMP_THREAD_INFO_INVALID_TEB","features":[334]},{"name":"MINIDUMP_THREAD_INFO_LIST","features":[334]},{"name":"MINIDUMP_THREAD_INFO_WRITING_THREAD","features":[334]},{"name":"MINIDUMP_THREAD_LIST","features":[334]},{"name":"MINIDUMP_THREAD_NAME","features":[334]},{"name":"MINIDUMP_THREAD_NAME_LIST","features":[334]},{"name":"MINIDUMP_TOKEN_INFO_HEADER","features":[334]},{"name":"MINIDUMP_TOKEN_INFO_LIST","features":[334]},{"name":"MINIDUMP_TYPE","features":[334]},{"name":"MINIDUMP_UNLOADED_MODULE","features":[334]},{"name":"MINIDUMP_UNLOADED_MODULE_LIST","features":[334]},{"name":"MINIDUMP_USER_RECORD","features":[334]},{"name":"MINIDUMP_USER_STREAM","features":[334]},{"name":"MINIDUMP_USER_STREAM","features":[334]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[334]},{"name":"MINIDUMP_USER_STREAM_INFORMATION","features":[334]},{"name":"MINIDUMP_VERSION","features":[334]},{"name":"MINIDUMP_VM_POST_READ_CALLBACK","features":[334]},{"name":"MINIDUMP_VM_PRE_READ_CALLBACK","features":[334]},{"name":"MINIDUMP_VM_QUERY_CALLBACK","features":[334]},{"name":"MISALIGNED_POINTER_PARAMETER","features":[334]},{"name":"MISMATCHED_HAL","features":[334]},{"name":"MODLOAD_CVMISC","features":[334]},{"name":"MODLOAD_DATA","features":[334]},{"name":"MODLOAD_DATA_TYPE","features":[334]},{"name":"MODLOAD_PDBGUID_PDBAGE","features":[334]},{"name":"MODULE_TYPE_INFO","features":[334]},{"name":"MODULE_WRITE_FLAGS","features":[334]},{"name":"MPSDRV_QUERY_USER","features":[334]},{"name":"MSRPC_STATE_VIOLATION","features":[334]},{"name":"MSSECCORE_ASSERTION_FAILURE","features":[334]},{"name":"MUI_NO_VALID_SYSTEM_LANGUAGE","features":[334]},{"name":"MULTIPLE_IRP_COMPLETE_REQUESTS","features":[334]},{"name":"MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED","features":[334]},{"name":"MUP_FILE_SYSTEM","features":[334]},{"name":"MUST_SUCCEED_POOL_EMPTY","features":[334]},{"name":"MUTEX_ALREADY_OWNED","features":[334]},{"name":"MUTEX_LEVEL_NUMBER_VIOLATION","features":[334]},{"name":"MakeSureDirectoryPathExists","features":[305,334]},{"name":"MapAndLoad","features":[305,334,311,336]},{"name":"MapFileAndCheckSumA","features":[334]},{"name":"MapFileAndCheckSumW","features":[334]},{"name":"Memory64ListStream","features":[334]},{"name":"MemoryCallback","features":[334]},{"name":"MemoryInfoListStream","features":[334]},{"name":"MemoryListStream","features":[334]},{"name":"MessageBeep","features":[305,334,367]},{"name":"MiniDumpFilterMemory","features":[334]},{"name":"MiniDumpFilterModulePaths","features":[334]},{"name":"MiniDumpFilterTriage","features":[334]},{"name":"MiniDumpFilterWriteCombinedMemory","features":[334]},{"name":"MiniDumpIgnoreInaccessibleMemory","features":[334]},{"name":"MiniDumpNormal","features":[334]},{"name":"MiniDumpReadDumpStream","features":[305,334]},{"name":"MiniDumpScanInaccessiblePartialPages","features":[334]},{"name":"MiniDumpScanMemory","features":[334]},{"name":"MiniDumpValidTypeFlags","features":[334]},{"name":"MiniDumpWithAvxXStateContext","features":[334]},{"name":"MiniDumpWithCodeSegs","features":[334]},{"name":"MiniDumpWithDataSegs","features":[334]},{"name":"MiniDumpWithFullAuxiliaryState","features":[334]},{"name":"MiniDumpWithFullMemory","features":[334]},{"name":"MiniDumpWithFullMemoryInfo","features":[334]},{"name":"MiniDumpWithHandleData","features":[334]},{"name":"MiniDumpWithIndirectlyReferencedMemory","features":[334]},{"name":"MiniDumpWithIptTrace","features":[334]},{"name":"MiniDumpWithModuleHeaders","features":[334]},{"name":"MiniDumpWithPrivateReadWriteMemory","features":[334]},{"name":"MiniDumpWithPrivateWriteCopyMemory","features":[334]},{"name":"MiniDumpWithProcessThreadData","features":[334]},{"name":"MiniDumpWithThreadInfo","features":[334]},{"name":"MiniDumpWithTokenInformation","features":[334]},{"name":"MiniDumpWithUnloadedModules","features":[334]},{"name":"MiniDumpWithoutAuxiliaryState","features":[334]},{"name":"MiniDumpWithoutOptionalData","features":[334]},{"name":"MiniDumpWriteDump","features":[305,324,334,311,323]},{"name":"MiniEventInformation1","features":[334]},{"name":"MiniHandleObjectInformationNone","features":[334]},{"name":"MiniHandleObjectInformationTypeMax","features":[334]},{"name":"MiniMutantInformation1","features":[334]},{"name":"MiniMutantInformation2","features":[334]},{"name":"MiniProcessInformation1","features":[334]},{"name":"MiniProcessInformation2","features":[334]},{"name":"MiniSecondaryValidFlags","features":[334]},{"name":"MiniSecondaryWithoutPowerInfo","features":[334]},{"name":"MiniSectionInformation1","features":[334]},{"name":"MiniSemaphoreInformation1","features":[334]},{"name":"MiniThreadInformation1","features":[334]},{"name":"MiscInfoStream","features":[334]},{"name":"ModuleCallback","features":[334]},{"name":"ModuleListStream","features":[334]},{"name":"ModuleReferencedByMemory","features":[334]},{"name":"ModuleWriteCodeSegs","features":[334]},{"name":"ModuleWriteCvRecord","features":[334]},{"name":"ModuleWriteDataSeg","features":[334]},{"name":"ModuleWriteMiscRecord","features":[334]},{"name":"ModuleWriteModule","features":[334]},{"name":"ModuleWriteTlsData","features":[334]},{"name":"NDIS_INTERNAL_ERROR","features":[334]},{"name":"NDIS_NET_BUFFER_LIST_INFO_ILLEGALLY_TRANSFERRED","features":[334]},{"name":"NETIO_INVALID_POOL_CALLER","features":[334]},{"name":"NETWORK_BOOT_DUPLICATE_ADDRESS","features":[334]},{"name":"NETWORK_BOOT_INITIALIZATION_FAILED","features":[334]},{"name":"NMI_HARDWARE_FAILURE","features":[334]},{"name":"NMR_INVALID_STATE","features":[334]},{"name":"NO_BOOT_DEVICE","features":[334]},{"name":"NO_EXCEPTION_HANDLING_SUPPORT","features":[334]},{"name":"NO_MORE_IRP_STACK_LOCATIONS","features":[334]},{"name":"NO_MORE_SYSTEM_PTES","features":[334]},{"name":"NO_PAGES_AVAILABLE","features":[334]},{"name":"NO_SPIN_LOCK_AVAILABLE","features":[334]},{"name":"NO_SUCH_PARTITION","features":[334]},{"name":"NO_USER_MODE_CONTEXT","features":[334]},{"name":"NPFS_FILE_SYSTEM","features":[334]},{"name":"NTFS_FILE_SYSTEM","features":[334]},{"name":"NTHV_GUEST_ERROR","features":[334]},{"name":"NUM_SSRVOPTS","features":[334]},{"name":"NumSymTypes","features":[334]},{"name":"OBJECT1_INITIALIZATION_FAILED","features":[334]},{"name":"OBJECT_ATTRIB_ACCESS_FINAL","features":[334]},{"name":"OBJECT_ATTRIB_ACCESS_PRIVATE","features":[334]},{"name":"OBJECT_ATTRIB_ACCESS_PROTECTED","features":[334]},{"name":"OBJECT_ATTRIB_ACCESS_PUBLIC","features":[334]},{"name":"OBJECT_ATTRIB_FLAGS","features":[334]},{"name":"OBJECT_ATTRIB_HAS_EXTENDED_ATTRIBS","features":[334]},{"name":"OBJECT_ATTRIB_IS_CLASS","features":[334]},{"name":"OBJECT_ATTRIB_IS_FUNCTION","features":[334]},{"name":"OBJECT_ATTRIB_IS_INHERITED","features":[334]},{"name":"OBJECT_ATTRIB_IS_INTERFACE","features":[334]},{"name":"OBJECT_ATTRIB_IS_MACRO","features":[334]},{"name":"OBJECT_ATTRIB_IS_PROPERTY","features":[334]},{"name":"OBJECT_ATTRIB_IS_TYPE","features":[334]},{"name":"OBJECT_ATTRIB_IS_VARIABLE","features":[334]},{"name":"OBJECT_ATTRIB_NO_ATTRIB","features":[334]},{"name":"OBJECT_ATTRIB_NO_NAME","features":[334]},{"name":"OBJECT_ATTRIB_NO_TYPE","features":[334]},{"name":"OBJECT_ATTRIB_NO_VALUE","features":[334]},{"name":"OBJECT_ATTRIB_OBJECT_IS_EXPANDABLE","features":[334]},{"name":"OBJECT_ATTRIB_SLOT_IS_CATEGORY","features":[334]},{"name":"OBJECT_ATTRIB_STORAGE_FIELD","features":[334]},{"name":"OBJECT_ATTRIB_STORAGE_GLOBAL","features":[334]},{"name":"OBJECT_ATTRIB_STORAGE_STATIC","features":[334]},{"name":"OBJECT_ATTRIB_STORAGE_VIRTUAL","features":[334]},{"name":"OBJECT_ATTRIB_TYPE_HAS_CODE","features":[334]},{"name":"OBJECT_ATTRIB_TYPE_IS_CONSTANT","features":[334]},{"name":"OBJECT_ATTRIB_TYPE_IS_EXPANDABLE","features":[334]},{"name":"OBJECT_ATTRIB_TYPE_IS_OBJECT","features":[334]},{"name":"OBJECT_ATTRIB_TYPE_IS_SYNCHRONIZED","features":[334]},{"name":"OBJECT_ATTRIB_TYPE_IS_VOLATILE","features":[334]},{"name":"OBJECT_ATTRIB_VALUE_HAS_CODE","features":[334]},{"name":"OBJECT_ATTRIB_VALUE_IS_CUSTOM","features":[334]},{"name":"OBJECT_ATTRIB_VALUE_IS_ENUM","features":[334]},{"name":"OBJECT_ATTRIB_VALUE_IS_INVALID","features":[334]},{"name":"OBJECT_ATTRIB_VALUE_IS_OBJECT","features":[334]},{"name":"OBJECT_ATTRIB_VALUE_READONLY","features":[334]},{"name":"OBJECT_INITIALIZATION_FAILED","features":[334]},{"name":"OFS_FILE_SYSTEM","features":[334]},{"name":"OMAP","features":[334]},{"name":"OPEN_THREAD_WAIT_CHAIN_SESSION_FLAGS","features":[334]},{"name":"OS_DATA_TAMPERING","features":[334]},{"name":"OUTPUT_DEBUG_STRING_EVENT","features":[334]},{"name":"OUTPUT_DEBUG_STRING_INFO","features":[334]},{"name":"OpenThreadWaitChainSession","features":[305,334]},{"name":"OutputDebugStringA","features":[334]},{"name":"OutputDebugStringW","features":[334]},{"name":"PAGE_FAULT_BEYOND_END_OF_ALLOCATION","features":[334]},{"name":"PAGE_FAULT_IN_FREED_SPECIAL_POOL","features":[334]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA","features":[334]},{"name":"PAGE_FAULT_IN_NONPAGED_AREA_M","features":[334]},{"name":"PAGE_FAULT_WITH_INTERRUPTS_OFF","features":[334]},{"name":"PAGE_NOT_ZERO","features":[334]},{"name":"PANIC_STACK_SWITCH","features":[334]},{"name":"PASSIVE_INTERRUPT_ERROR","features":[334]},{"name":"PCI_BUS_DRIVER_INTERNAL","features":[334]},{"name":"PCI_CONFIG_SPACE_ACCESS_FAILURE","features":[334]},{"name":"PCI_VERIFIER_DETECTED_VIOLATION","features":[334]},{"name":"PCOGETACTIVATIONSTATE","features":[334]},{"name":"PCOGETCALLSTATE","features":[334]},{"name":"PDBGHELP_CREATE_USER_DUMP_CALLBACK","features":[305,334]},{"name":"PDC_LOCK_WATCHDOG_LIVEDUMP","features":[334]},{"name":"PDC_PRIVILEGE_CHECK_LIVEDUMP","features":[334]},{"name":"PDC_UNEXPECTED_REVOCATION_LIVEDUMP","features":[334]},{"name":"PDC_WATCHDOG_TIMEOUT","features":[334]},{"name":"PDC_WATCHDOG_TIMEOUT_LIVEDUMP","features":[334]},{"name":"PENUMDIRTREE_CALLBACK","features":[305,334]},{"name":"PENUMDIRTREE_CALLBACKW","features":[305,334]},{"name":"PENUMLOADED_MODULES_CALLBACK","features":[305,334]},{"name":"PENUMLOADED_MODULES_CALLBACK64","features":[305,334]},{"name":"PENUMLOADED_MODULES_CALLBACKW64","features":[305,334]},{"name":"PENUMSOURCEFILETOKENSCALLBACK","features":[305,334]},{"name":"PFINDFILEINPATHCALLBACK","features":[305,334]},{"name":"PFINDFILEINPATHCALLBACKW","features":[305,334]},{"name":"PFIND_DEBUG_FILE_CALLBACK","features":[305,334]},{"name":"PFIND_DEBUG_FILE_CALLBACKW","features":[305,334]},{"name":"PFIND_EXE_FILE_CALLBACK","features":[305,334]},{"name":"PFIND_EXE_FILE_CALLBACKW","features":[305,334]},{"name":"PFN_LIST_CORRUPT","features":[334]},{"name":"PFN_REFERENCE_COUNT","features":[334]},{"name":"PFN_SHARE_COUNT","features":[334]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE","features":[305,334]},{"name":"PFUNCTION_TABLE_ACCESS_ROUTINE64","features":[305,334]},{"name":"PF_DETECTED_CORRUPTION","features":[334]},{"name":"PGET_MODULE_BASE_ROUTINE","features":[305,334]},{"name":"PGET_MODULE_BASE_ROUTINE64","features":[305,334]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[334]},{"name":"PGET_RUNTIME_FUNCTION_CALLBACK","features":[334]},{"name":"PGET_TARGET_ATTRIBUTE_VALUE64","features":[305,334]},{"name":"PHASE0_EXCEPTION","features":[334]},{"name":"PHASE0_INITIALIZATION_FAILED","features":[334]},{"name":"PHASE1_INITIALIZATION_FAILED","features":[334]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR32","features":[334]},{"name":"PHYSICAL_MEMORY_DESCRIPTOR64","features":[334]},{"name":"PHYSICAL_MEMORY_RUN32","features":[334]},{"name":"PHYSICAL_MEMORY_RUN64","features":[334]},{"name":"PIMAGEHLP_STATUS_ROUTINE","features":[305,334]},{"name":"PIMAGEHLP_STATUS_ROUTINE32","features":[305,334]},{"name":"PIMAGEHLP_STATUS_ROUTINE64","features":[305,334]},{"name":"PINBALL_FILE_SYSTEM","features":[334]},{"name":"PNP_DETECTED_FATAL_ERROR","features":[334]},{"name":"PNP_INTERNAL_ERROR","features":[334]},{"name":"POOL_CORRUPTION_IN_FILE_AREA","features":[334]},{"name":"PORT_DRIVER_INTERNAL","features":[334]},{"name":"POWER_FAILURE_SIMULATE","features":[334]},{"name":"PP0_INITIALIZATION_FAILED","features":[334]},{"name":"PP1_INITIALIZATION_FAILED","features":[334]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE","features":[305,334]},{"name":"PREAD_PROCESS_MEMORY_ROUTINE64","features":[305,334]},{"name":"PREVIOUS_FATAL_ABNORMAL_RESET_ERROR","features":[334]},{"name":"PROCESS1_INITIALIZATION_FAILED","features":[334]},{"name":"PROCESSOR_DRIVER_INTERNAL","features":[334]},{"name":"PROCESSOR_START_TIMEOUT","features":[334]},{"name":"PROCESS_HAS_LOCKED_PAGES","features":[334]},{"name":"PROCESS_INITIALIZATION_FAILED","features":[334]},{"name":"PROFILER_CONFIGURATION_ILLEGAL","features":[334]},{"name":"PROP_INFO_ATTRIBUTES","features":[334]},{"name":"PROP_INFO_AUTOEXPAND","features":[334]},{"name":"PROP_INFO_DEBUGPROP","features":[334]},{"name":"PROP_INFO_FLAGS","features":[334]},{"name":"PROP_INFO_FULLNAME","features":[334]},{"name":"PROP_INFO_NAME","features":[334]},{"name":"PROP_INFO_TYPE","features":[334]},{"name":"PROP_INFO_VALUE","features":[334]},{"name":"PSYMBOLSERVERBYINDEXPROC","features":[305,334]},{"name":"PSYMBOLSERVERBYINDEXPROCA","features":[305,334]},{"name":"PSYMBOLSERVERBYINDEXPROCW","features":[305,334]},{"name":"PSYMBOLSERVERCALLBACKPROC","features":[305,334]},{"name":"PSYMBOLSERVERCLOSEPROC","features":[305,334]},{"name":"PSYMBOLSERVERDELTANAME","features":[305,334]},{"name":"PSYMBOLSERVERDELTANAMEW","features":[305,334]},{"name":"PSYMBOLSERVERGETINDEXSTRING","features":[305,334]},{"name":"PSYMBOLSERVERGETINDEXSTRINGW","features":[305,334]},{"name":"PSYMBOLSERVERGETOPTIONDATAPROC","features":[305,334]},{"name":"PSYMBOLSERVERGETOPTIONSPROC","features":[334]},{"name":"PSYMBOLSERVERGETSUPPLEMENT","features":[305,334]},{"name":"PSYMBOLSERVERGETSUPPLEMENTW","features":[305,334]},{"name":"PSYMBOLSERVERGETVERSION","features":[305,334]},{"name":"PSYMBOLSERVERISSTORE","features":[305,334]},{"name":"PSYMBOLSERVERISSTOREW","features":[305,334]},{"name":"PSYMBOLSERVERMESSAGEPROC","features":[305,334]},{"name":"PSYMBOLSERVEROPENPROC","features":[305,334]},{"name":"PSYMBOLSERVERPINGPROC","features":[305,334]},{"name":"PSYMBOLSERVERPINGPROCA","features":[305,334]},{"name":"PSYMBOLSERVERPINGPROCW","features":[305,334]},{"name":"PSYMBOLSERVERPINGPROCWEX","features":[305,334]},{"name":"PSYMBOLSERVERPROC","features":[305,334]},{"name":"PSYMBOLSERVERPROCA","features":[305,334]},{"name":"PSYMBOLSERVERPROCW","features":[305,334]},{"name":"PSYMBOLSERVERSETHTTPAUTHHEADER","features":[305,334]},{"name":"PSYMBOLSERVERSETOPTIONSPROC","features":[305,334]},{"name":"PSYMBOLSERVERSETOPTIONSWPROC","features":[305,334]},{"name":"PSYMBOLSERVERSTOREFILE","features":[305,334]},{"name":"PSYMBOLSERVERSTOREFILEW","features":[305,334]},{"name":"PSYMBOLSERVERSTORESUPPLEMENT","features":[305,334]},{"name":"PSYMBOLSERVERSTORESUPPLEMENTW","features":[305,334]},{"name":"PSYMBOLSERVERVERSION","features":[334]},{"name":"PSYMBOLSERVERWEXPROC","features":[305,334]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK","features":[305,334]},{"name":"PSYMBOL_FUNCENTRY_CALLBACK64","features":[305,334]},{"name":"PSYMBOL_REGISTERED_CALLBACK","features":[305,334]},{"name":"PSYMBOL_REGISTERED_CALLBACK64","features":[305,334]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACK","features":[305,334]},{"name":"PSYM_ENUMERATESYMBOLS_CALLBACKW","features":[305,334]},{"name":"PSYM_ENUMLINES_CALLBACK","features":[305,334]},{"name":"PSYM_ENUMLINES_CALLBACKW","features":[305,334]},{"name":"PSYM_ENUMMODULES_CALLBACK","features":[305,334]},{"name":"PSYM_ENUMMODULES_CALLBACK64","features":[305,334]},{"name":"PSYM_ENUMMODULES_CALLBACKW64","features":[305,334]},{"name":"PSYM_ENUMPROCESSES_CALLBACK","features":[305,334]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACK","features":[305,334]},{"name":"PSYM_ENUMSOURCEFILES_CALLBACKW","features":[305,334]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK","features":[305,334]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64","features":[305,334]},{"name":"PSYM_ENUMSYMBOLS_CALLBACK64W","features":[305,334]},{"name":"PSYM_ENUMSYMBOLS_CALLBACKW","features":[305,334]},{"name":"PTRANSLATE_ADDRESS_ROUTINE","features":[305,334]},{"name":"PTRANSLATE_ADDRESS_ROUTINE64","features":[305,334]},{"name":"PVECTORED_EXCEPTION_HANDLER","features":[305,334,311]},{"name":"PWAITCHAINCALLBACK","features":[305,334]},{"name":"ProcessVmCountersStream","features":[334]},{"name":"QUOTA_UNDERFLOW","features":[334]},{"name":"RAMDISK_BOOT_INITIALIZATION_FAILED","features":[334]},{"name":"RDR_FILE_SYSTEM","features":[334]},{"name":"RECOM_DRIVER","features":[334]},{"name":"RECURSIVE_MACHINE_CHECK","features":[334]},{"name":"RECURSIVE_NMI","features":[334]},{"name":"REFERENCE_BY_POINTER","features":[334]},{"name":"REFMON_INITIALIZATION_FAILED","features":[334]},{"name":"REFS_FILE_SYSTEM","features":[334]},{"name":"REF_UNKNOWN_LOGON_SESSION","features":[334]},{"name":"REGISTRY_CALLBACK_DRIVER_EXCEPTION","features":[334]},{"name":"REGISTRY_ERROR","features":[334]},{"name":"REGISTRY_FILTER_DRIVER_EXCEPTION","features":[334]},{"name":"REGISTRY_LIVE_DUMP","features":[334]},{"name":"RESERVE_QUEUE_OVERFLOW","features":[334]},{"name":"RESOURCE_NOT_OWNED","features":[334]},{"name":"RESOURCE_OWNER_POINTER_INVALID","features":[334]},{"name":"RESTORE_LAST_ERROR_NAME","features":[334]},{"name":"RESTORE_LAST_ERROR_NAME_A","features":[334]},{"name":"RESTORE_LAST_ERROR_NAME_W","features":[334]},{"name":"RIP_EVENT","features":[334]},{"name":"RIP_INFO","features":[334]},{"name":"RIP_INFO_TYPE","features":[334]},{"name":"RTL_VIRTUAL_UNWIND_HANDLER_TYPE","features":[334]},{"name":"RaiseException","features":[334]},{"name":"RaiseFailFastException","features":[305,334,311]},{"name":"RangeMapAddPeImageSections","features":[305,334]},{"name":"RangeMapCreate","features":[334]},{"name":"RangeMapFree","features":[334]},{"name":"RangeMapRead","features":[305,334]},{"name":"RangeMapRemove","features":[305,334]},{"name":"RangeMapWrite","features":[305,334]},{"name":"ReBaseImage","features":[305,334]},{"name":"ReBaseImage64","features":[305,334]},{"name":"ReadMemoryFailureCallback","features":[334]},{"name":"ReadProcessMemory","features":[305,334]},{"name":"RegisterWaitChainCOMCallback","features":[334]},{"name":"RemoveInvalidModuleList","features":[305,334]},{"name":"RemoveMemoryCallback","features":[334]},{"name":"RemoveVectoredContinueHandler","features":[334]},{"name":"RemoveVectoredExceptionHandler","features":[334]},{"name":"ReportSymbolLoadSummary","features":[305,334]},{"name":"ReservedStream0","features":[334]},{"name":"ReservedStream1","features":[334]},{"name":"RtlAddFunctionTable","features":[305,334]},{"name":"RtlAddFunctionTable","features":[305,334]},{"name":"RtlAddGrowableFunctionTable","features":[334]},{"name":"RtlAddGrowableFunctionTable","features":[334]},{"name":"RtlCaptureContext","features":[334,311]},{"name":"RtlCaptureContext2","features":[334,311]},{"name":"RtlCaptureStackBackTrace","features":[334]},{"name":"RtlDeleteFunctionTable","features":[305,334]},{"name":"RtlDeleteFunctionTable","features":[305,334]},{"name":"RtlDeleteGrowableFunctionTable","features":[334]},{"name":"RtlGrowFunctionTable","features":[334]},{"name":"RtlInstallFunctionTableCallback","features":[305,334]},{"name":"RtlInstallFunctionTableCallback","features":[305,334]},{"name":"RtlLookupFunctionEntry","features":[334]},{"name":"RtlLookupFunctionEntry","features":[334]},{"name":"RtlPcToFileHeader","features":[334]},{"name":"RtlRaiseException","features":[305,334]},{"name":"RtlRestoreContext","features":[305,334,311]},{"name":"RtlUnwind","features":[305,334]},{"name":"RtlUnwindEx","features":[305,334,311]},{"name":"RtlVirtualUnwind","features":[305,334,311]},{"name":"RtlVirtualUnwind","features":[305,334,311]},{"name":"SAVER_ACCOUNTPROVSVCINITFAILURE","features":[334]},{"name":"SAVER_APPBARDISMISSAL","features":[334]},{"name":"SAVER_APPLISTUNREACHABLE","features":[334]},{"name":"SAVER_AUDIODRIVERHANG","features":[334]},{"name":"SAVER_AUXILIARYFULLDUMP","features":[334]},{"name":"SAVER_BATTERYPULLOUT","features":[334]},{"name":"SAVER_BLANKSCREEN","features":[334]},{"name":"SAVER_CALLDISMISSAL","features":[334]},{"name":"SAVER_CAPTURESERVICE","features":[334]},{"name":"SAVER_CHROMEPROCESSCRASH","features":[334]},{"name":"SAVER_DEVICEUPDATEUNSPECIFIED","features":[334]},{"name":"SAVER_GRAPHICS","features":[334]},{"name":"SAVER_INPUT","features":[334]},{"name":"SAVER_MEDIACORETESTHANG","features":[334]},{"name":"SAVER_MTBFCOMMANDHANG","features":[334]},{"name":"SAVER_MTBFCOMMANDTIMEOUT","features":[334]},{"name":"SAVER_MTBFIOERROR","features":[334]},{"name":"SAVER_MTBFPASSBUGCHECK","features":[334]},{"name":"SAVER_NAVIGATIONMODEL","features":[334]},{"name":"SAVER_NAVSERVERTIMEOUT","features":[334]},{"name":"SAVER_NONRESPONSIVEPROCESS","features":[334]},{"name":"SAVER_NOTIFICATIONDISMISSAL","features":[334]},{"name":"SAVER_OUTOFMEMORY","features":[334]},{"name":"SAVER_RENDERMOBILEUIOOM","features":[334]},{"name":"SAVER_RENDERTHREADHANG","features":[334]},{"name":"SAVER_REPORTNOTIFICATIONFAILURE","features":[334]},{"name":"SAVER_RESOURCEMANAGEMENT","features":[334]},{"name":"SAVER_RILADAPTATIONCRASH","features":[334]},{"name":"SAVER_RPCFAILURE","features":[334]},{"name":"SAVER_SICKAPPLICATION","features":[334]},{"name":"SAVER_SPEECHDISMISSAL","features":[334]},{"name":"SAVER_STARTNOTVISIBLE","features":[334]},{"name":"SAVER_UNEXPECTEDSHUTDOWN","features":[334]},{"name":"SAVER_UNSPECIFIED","features":[334]},{"name":"SAVER_WAITFORSHELLREADY","features":[334]},{"name":"SAVER_WATCHDOG","features":[334]},{"name":"SCSI_DISK_DRIVER_INTERNAL","features":[334]},{"name":"SCSI_VERIFIER_DETECTED_VIOLATION","features":[334]},{"name":"SDBUS_INTERNAL_ERROR","features":[334]},{"name":"SECURE_BOOT_VIOLATION","features":[334]},{"name":"SECURE_FAULT_UNHANDLED","features":[334]},{"name":"SECURE_KERNEL_ERROR","features":[334]},{"name":"SECURE_PCI_CONFIG_SPACE_ACCESS_VIOLATION","features":[334]},{"name":"SECURITY1_INITIALIZATION_FAILED","features":[334]},{"name":"SECURITY_INITIALIZATION_FAILED","features":[334]},{"name":"SECURITY_SYSTEM","features":[334]},{"name":"SEM_ALL_ERRORS","features":[334]},{"name":"SEM_FAILCRITICALERRORS","features":[334]},{"name":"SEM_NOALIGNMENTFAULTEXCEPT","features":[334]},{"name":"SEM_NOGPFAULTERRORBOX","features":[334]},{"name":"SEM_NOOPENFILEERRORBOX","features":[334]},{"name":"SERIAL_DRIVER_INTERNAL","features":[334]},{"name":"SESSION1_INITIALIZATION_FAILED","features":[334]},{"name":"SESSION_HAS_VALID_POOL_ON_EXIT","features":[334]},{"name":"SESSION_HAS_VALID_SPECIAL_POOL_ON_EXIT","features":[334]},{"name":"SESSION_HAS_VALID_VIEWS_ON_EXIT","features":[334]},{"name":"SETUP_FAILURE","features":[334]},{"name":"SET_ENV_VAR_FAILED","features":[334]},{"name":"SET_OF_INVALID_CONTEXT","features":[334]},{"name":"SHARED_RESOURCE_CONV_ERROR","features":[334]},{"name":"SILO_CORRUPT","features":[334]},{"name":"SLE_ERROR","features":[334]},{"name":"SLE_MINORERROR","features":[334]},{"name":"SLE_WARNING","features":[334]},{"name":"SLMFLAG_ALT_INDEX","features":[334]},{"name":"SLMFLAG_NONE","features":[334]},{"name":"SLMFLAG_NO_SYMBOLS","features":[334]},{"name":"SLMFLAG_VIRTUAL","features":[334]},{"name":"SMB_REDIRECTOR_LIVEDUMP","features":[334]},{"name":"SMB_SERVER_LIVEDUMP","features":[334]},{"name":"SOC_CRITICAL_DEVICE_REMOVED","features":[334]},{"name":"SOC_SUBSYSTEM_FAILURE","features":[334]},{"name":"SOC_SUBSYSTEM_FAILURE_LIVEDUMP","features":[334]},{"name":"SOFT_RESTART_FATAL_ERROR","features":[334]},{"name":"SOURCEFILE","features":[334]},{"name":"SOURCEFILEW","features":[334]},{"name":"SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION","features":[334]},{"name":"SPIN_LOCK_ALREADY_OWNED","features":[334]},{"name":"SPIN_LOCK_INIT_FAILURE","features":[334]},{"name":"SPIN_LOCK_NOT_OWNED","features":[334]},{"name":"SPLITSYM_EXTRACT_ALL","features":[334]},{"name":"SPLITSYM_REMOVE_PRIVATE","features":[334]},{"name":"SPLITSYM_SYMBOLPATH_IS_SRC","features":[334]},{"name":"SRCCODEINFO","features":[334]},{"name":"SRCCODEINFOW","features":[334]},{"name":"SSRVACTION_CHECKSUMSTATUS","features":[334]},{"name":"SSRVACTION_EVENT","features":[334]},{"name":"SSRVACTION_EVENTW","features":[334]},{"name":"SSRVACTION_HTTPSTATUS","features":[334]},{"name":"SSRVACTION_QUERYCANCEL","features":[334]},{"name":"SSRVACTION_SIZE","features":[334]},{"name":"SSRVACTION_TRACE","features":[334]},{"name":"SSRVACTION_XMLOUTPUT","features":[334]},{"name":"SSRVOPT_CALLBACK","features":[334]},{"name":"SSRVOPT_CALLBACKW","features":[334]},{"name":"SSRVOPT_DISABLE_PING_HOST","features":[334]},{"name":"SSRVOPT_DISABLE_TIMEOUT","features":[334]},{"name":"SSRVOPT_DONT_UNCOMPRESS","features":[334]},{"name":"SSRVOPT_DOWNSTREAM_STORE","features":[334]},{"name":"SSRVOPT_DWORD","features":[334]},{"name":"SSRVOPT_DWORDPTR","features":[334]},{"name":"SSRVOPT_ENABLE_COMM_MSG","features":[334]},{"name":"SSRVOPT_FAVOR_COMPRESSED","features":[334]},{"name":"SSRVOPT_FLAT_DEFAULT_STORE","features":[334]},{"name":"SSRVOPT_GETPATH","features":[334]},{"name":"SSRVOPT_GUIDPTR","features":[334]},{"name":"SSRVOPT_MAX","features":[334]},{"name":"SSRVOPT_MESSAGE","features":[334]},{"name":"SSRVOPT_NOCOPY","features":[334]},{"name":"SSRVOPT_OLDGUIDPTR","features":[334]},{"name":"SSRVOPT_OVERWRITE","features":[334]},{"name":"SSRVOPT_PARAMTYPE","features":[334]},{"name":"SSRVOPT_PARENTWIN","features":[334]},{"name":"SSRVOPT_PROXY","features":[334]},{"name":"SSRVOPT_PROXYW","features":[334]},{"name":"SSRVOPT_RESETTOU","features":[334]},{"name":"SSRVOPT_RETRY_APP_HANG","features":[334]},{"name":"SSRVOPT_SECURE","features":[334]},{"name":"SSRVOPT_SERVICE","features":[334]},{"name":"SSRVOPT_SETCONTEXT","features":[334]},{"name":"SSRVOPT_STRING","features":[334]},{"name":"SSRVOPT_TRACE","features":[334]},{"name":"SSRVOPT_UNATTENDED","features":[334]},{"name":"SSRVOPT_URI_FILTER","features":[334]},{"name":"SSRVOPT_URI_TIERS","features":[334]},{"name":"SSRVOPT_WINHTTP","features":[334]},{"name":"SSRVOPT_WININET","features":[334]},{"name":"SSRVURI_ALL","features":[334]},{"name":"SSRVURI_COMPRESSED","features":[334]},{"name":"SSRVURI_FILEPTR","features":[334]},{"name":"SSRVURI_HTTP_COMPRESSED","features":[334]},{"name":"SSRVURI_HTTP_FILEPTR","features":[334]},{"name":"SSRVURI_HTTP_MASK","features":[334]},{"name":"SSRVURI_HTTP_NORMAL","features":[334]},{"name":"SSRVURI_NORMAL","features":[334]},{"name":"SSRVURI_UNC_COMPRESSED","features":[334]},{"name":"SSRVURI_UNC_FILEPTR","features":[334]},{"name":"SSRVURI_UNC_MASK","features":[334]},{"name":"SSRVURI_UNC_NORMAL","features":[334]},{"name":"STACKFRAME","features":[305,334]},{"name":"STACKFRAME64","features":[305,334]},{"name":"STACKFRAME_EX","features":[305,334]},{"name":"STORAGE_DEVICE_ABNORMALITY_DETECTED","features":[334]},{"name":"STORAGE_MINIPORT_ERROR","features":[334]},{"name":"STORE_DATA_STRUCTURE_CORRUPTION","features":[334]},{"name":"STREAMS_INTERNAL_ERROR","features":[334]},{"name":"SYMADDSOURCESTREAM","features":[305,334]},{"name":"SYMADDSOURCESTREAMA","features":[305,334]},{"name":"SYMBOLIC_INITIALIZATION_FAILED","features":[334]},{"name":"SYMBOL_INFO","features":[334]},{"name":"SYMBOL_INFOW","features":[334]},{"name":"SYMBOL_INFO_FLAGS","features":[334]},{"name":"SYMBOL_INFO_PACKAGE","features":[334]},{"name":"SYMBOL_INFO_PACKAGEW","features":[334]},{"name":"SYMENUM_OPTIONS_DEFAULT","features":[334]},{"name":"SYMENUM_OPTIONS_INLINE","features":[334]},{"name":"SYMFLAG_CLR_TOKEN","features":[334]},{"name":"SYMFLAG_CONSTANT","features":[334]},{"name":"SYMFLAG_EXPORT","features":[334]},{"name":"SYMFLAG_FIXUP_ARM64X","features":[334]},{"name":"SYMFLAG_FORWARDER","features":[334]},{"name":"SYMFLAG_FRAMEREL","features":[334]},{"name":"SYMFLAG_FUNCTION","features":[334]},{"name":"SYMFLAG_FUNC_NO_RETURN","features":[334]},{"name":"SYMFLAG_GLOBAL","features":[334]},{"name":"SYMFLAG_ILREL","features":[334]},{"name":"SYMFLAG_LOCAL","features":[334]},{"name":"SYMFLAG_METADATA","features":[334]},{"name":"SYMFLAG_NULL","features":[334]},{"name":"SYMFLAG_PARAMETER","features":[334]},{"name":"SYMFLAG_PUBLIC_CODE","features":[334]},{"name":"SYMFLAG_REGISTER","features":[334]},{"name":"SYMFLAG_REGREL","features":[334]},{"name":"SYMFLAG_REGREL_ALIASINDIR","features":[334]},{"name":"SYMFLAG_RESET","features":[334]},{"name":"SYMFLAG_SLOT","features":[334]},{"name":"SYMFLAG_SYNTHETIC_ZEROBASE","features":[334]},{"name":"SYMFLAG_THUNK","features":[334]},{"name":"SYMFLAG_TLSREL","features":[334]},{"name":"SYMFLAG_VALUEPRESENT","features":[334]},{"name":"SYMFLAG_VIRTUAL","features":[334]},{"name":"SYMF_CONSTANT","features":[334]},{"name":"SYMF_EXPORT","features":[334]},{"name":"SYMF_FORWARDER","features":[334]},{"name":"SYMF_FRAMEREL","features":[334]},{"name":"SYMF_FUNCTION","features":[334]},{"name":"SYMF_LOCAL","features":[334]},{"name":"SYMF_OMAP_GENERATED","features":[334]},{"name":"SYMF_OMAP_MODIFIED","features":[334]},{"name":"SYMF_PARAMETER","features":[334]},{"name":"SYMF_REGISTER","features":[334]},{"name":"SYMF_REGREL","features":[334]},{"name":"SYMF_THUNK","features":[334]},{"name":"SYMF_TLSREL","features":[334]},{"name":"SYMF_VIRTUAL","features":[334]},{"name":"SYMOPT_ALLOW_ABSOLUTE_SYMBOLS","features":[334]},{"name":"SYMOPT_ALLOW_ZERO_ADDRESS","features":[334]},{"name":"SYMOPT_AUTO_PUBLICS","features":[334]},{"name":"SYMOPT_CASE_INSENSITIVE","features":[334]},{"name":"SYMOPT_DEBUG","features":[334]},{"name":"SYMOPT_DEFERRED_LOADS","features":[334]},{"name":"SYMOPT_DISABLE_FAST_SYMBOLS","features":[334]},{"name":"SYMOPT_DISABLE_SRVSTAR_ON_STARTUP","features":[334]},{"name":"SYMOPT_DISABLE_SYMSRV_AUTODETECT","features":[334]},{"name":"SYMOPT_DISABLE_SYMSRV_TIMEOUT","features":[334]},{"name":"SYMOPT_EXACT_SYMBOLS","features":[334]},{"name":"SYMOPT_EX_DISABLEACCESSTIMEUPDATE","features":[334]},{"name":"SYMOPT_EX_LASTVALIDDEBUGDIRECTORY","features":[334]},{"name":"SYMOPT_EX_MAX","features":[334]},{"name":"SYMOPT_EX_NEVERLOADSYMBOLS","features":[334]},{"name":"SYMOPT_EX_NOIMPLICITPATTERNSEARCH","features":[334]},{"name":"SYMOPT_FAIL_CRITICAL_ERRORS","features":[334]},{"name":"SYMOPT_FAVOR_COMPRESSED","features":[334]},{"name":"SYMOPT_FLAT_DIRECTORY","features":[334]},{"name":"SYMOPT_IGNORE_CVREC","features":[334]},{"name":"SYMOPT_IGNORE_IMAGEDIR","features":[334]},{"name":"SYMOPT_IGNORE_NT_SYMPATH","features":[334]},{"name":"SYMOPT_INCLUDE_32BIT_MODULES","features":[334]},{"name":"SYMOPT_LOAD_ANYTHING","features":[334]},{"name":"SYMOPT_LOAD_LINES","features":[334]},{"name":"SYMOPT_NO_CPP","features":[334]},{"name":"SYMOPT_NO_IMAGE_SEARCH","features":[334]},{"name":"SYMOPT_NO_PROMPTS","features":[334]},{"name":"SYMOPT_NO_PUBLICS","features":[334]},{"name":"SYMOPT_NO_UNQUALIFIED_LOADS","features":[334]},{"name":"SYMOPT_OMAP_FIND_NEAREST","features":[334]},{"name":"SYMOPT_OVERWRITE","features":[334]},{"name":"SYMOPT_PUBLICS_ONLY","features":[334]},{"name":"SYMOPT_READONLY_CACHE","features":[334]},{"name":"SYMOPT_SECURE","features":[334]},{"name":"SYMOPT_SYMPATH_LAST","features":[334]},{"name":"SYMOPT_UNDNAME","features":[334]},{"name":"SYMSEARCH_ALLITEMS","features":[334]},{"name":"SYMSEARCH_GLOBALSONLY","features":[334]},{"name":"SYMSEARCH_MASKOBJS","features":[334]},{"name":"SYMSEARCH_RECURSE","features":[334]},{"name":"SYMSRV_EXTENDED_OUTPUT_DATA","features":[334]},{"name":"SYMSRV_INDEX_INFO","features":[305,334]},{"name":"SYMSRV_INDEX_INFOW","features":[305,334]},{"name":"SYMSRV_VERSION","features":[334]},{"name":"SYMSTOREOPT_ALT_INDEX","features":[334]},{"name":"SYMSTOREOPT_COMPRESS","features":[334]},{"name":"SYMSTOREOPT_OVERWRITE","features":[334]},{"name":"SYMSTOREOPT_PASS_IF_EXISTS","features":[334]},{"name":"SYMSTOREOPT_POINTER","features":[334]},{"name":"SYMSTOREOPT_RETURNINDEX","features":[334]},{"name":"SYMSTOREOPT_UNICODE","features":[334]},{"name":"SYM_FIND_ID_OPTION","features":[334]},{"name":"SYM_INLINE_COMP_DIFFERENT","features":[334]},{"name":"SYM_INLINE_COMP_ERROR","features":[334]},{"name":"SYM_INLINE_COMP_IDENTICAL","features":[334]},{"name":"SYM_INLINE_COMP_STEPIN","features":[334]},{"name":"SYM_INLINE_COMP_STEPOUT","features":[334]},{"name":"SYM_INLINE_COMP_STEPOVER","features":[334]},{"name":"SYM_LOAD_FLAGS","features":[334]},{"name":"SYM_SRV_STORE_FILE_FLAGS","features":[334]},{"name":"SYM_STKWALK_DEFAULT","features":[334]},{"name":"SYM_STKWALK_FORCE_FRAMEPTR","features":[334]},{"name":"SYM_STKWALK_ZEROEXTEND_PTRS","features":[334]},{"name":"SYM_TYPE","features":[334]},{"name":"SYNTHETIC_EXCEPTION_UNHANDLED","features":[334]},{"name":"SYNTHETIC_WATCHDOG_TIMEOUT","features":[334]},{"name":"SYSTEM_EXIT_OWNED_MUTEX","features":[334]},{"name":"SYSTEM_IMAGE_BAD_SIGNATURE","features":[334]},{"name":"SYSTEM_LICENSE_VIOLATION","features":[334]},{"name":"SYSTEM_PTE_MISUSE","features":[334]},{"name":"SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD","features":[334]},{"name":"SYSTEM_SERVICE_EXCEPTION","features":[334]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED","features":[334]},{"name":"SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M","features":[334]},{"name":"SYSTEM_UNWIND_PREVIOUS_USER","features":[334]},{"name":"SearchTreeForFile","features":[305,334]},{"name":"SearchTreeForFileW","features":[305,334]},{"name":"SecondaryFlagsCallback","features":[334]},{"name":"SetCheckUserInterruptShared","features":[334]},{"name":"SetErrorMode","features":[334]},{"name":"SetImageConfigInformation","features":[305,334,311,336]},{"name":"SetImageConfigInformation","features":[305,334,311,336]},{"name":"SetSymLoadError","features":[334]},{"name":"SetThreadContext","features":[305,334,311]},{"name":"SetThreadErrorMode","features":[305,334]},{"name":"SetUnhandledExceptionFilter","features":[305,334,311]},{"name":"SetXStateFeaturesMask","features":[305,334,311]},{"name":"StackWalk","features":[305,334]},{"name":"StackWalk2","features":[305,334]},{"name":"StackWalk64","features":[305,334]},{"name":"StackWalkEx","features":[305,334]},{"name":"SymAddSourceStream","features":[305,334]},{"name":"SymAddSourceStreamA","features":[305,334]},{"name":"SymAddSourceStreamW","features":[305,334]},{"name":"SymAddSymbol","features":[305,334]},{"name":"SymAddSymbolW","features":[305,334]},{"name":"SymAddrIncludeInlineTrace","features":[305,334]},{"name":"SymCleanup","features":[305,334]},{"name":"SymCoff","features":[334]},{"name":"SymCompareInlineTrace","features":[305,334]},{"name":"SymCv","features":[334]},{"name":"SymDeferred","features":[334]},{"name":"SymDeleteSymbol","features":[305,334]},{"name":"SymDeleteSymbolW","features":[305,334]},{"name":"SymDia","features":[334]},{"name":"SymEnumLines","features":[305,334]},{"name":"SymEnumLinesW","features":[305,334]},{"name":"SymEnumProcesses","features":[305,334]},{"name":"SymEnumSourceFileTokens","features":[305,334]},{"name":"SymEnumSourceFiles","features":[305,334]},{"name":"SymEnumSourceFilesW","features":[305,334]},{"name":"SymEnumSourceLines","features":[305,334]},{"name":"SymEnumSourceLinesW","features":[305,334]},{"name":"SymEnumSym","features":[305,334]},{"name":"SymEnumSymbols","features":[305,334]},{"name":"SymEnumSymbolsEx","features":[305,334]},{"name":"SymEnumSymbolsExW","features":[305,334]},{"name":"SymEnumSymbolsForAddr","features":[305,334]},{"name":"SymEnumSymbolsForAddrW","features":[305,334]},{"name":"SymEnumSymbolsW","features":[305,334]},{"name":"SymEnumTypes","features":[305,334]},{"name":"SymEnumTypesByName","features":[305,334]},{"name":"SymEnumTypesByNameW","features":[305,334]},{"name":"SymEnumTypesW","features":[305,334]},{"name":"SymEnumerateModules","features":[305,334]},{"name":"SymEnumerateModules64","features":[305,334]},{"name":"SymEnumerateModulesW64","features":[305,334]},{"name":"SymEnumerateSymbols","features":[305,334]},{"name":"SymEnumerateSymbols64","features":[305,334]},{"name":"SymEnumerateSymbolsW","features":[305,334]},{"name":"SymEnumerateSymbolsW64","features":[305,334]},{"name":"SymExport","features":[334]},{"name":"SymFindDebugInfoFile","features":[305,334]},{"name":"SymFindDebugInfoFileW","features":[305,334]},{"name":"SymFindExecutableImage","features":[305,334]},{"name":"SymFindExecutableImageW","features":[305,334]},{"name":"SymFindFileInPath","features":[305,334]},{"name":"SymFindFileInPathW","features":[305,334]},{"name":"SymFromAddr","features":[305,334]},{"name":"SymFromAddrW","features":[305,334]},{"name":"SymFromIndex","features":[305,334]},{"name":"SymFromIndexW","features":[305,334]},{"name":"SymFromInlineContext","features":[305,334]},{"name":"SymFromInlineContextW","features":[305,334]},{"name":"SymFromName","features":[305,334]},{"name":"SymFromNameW","features":[305,334]},{"name":"SymFromToken","features":[305,334]},{"name":"SymFromTokenW","features":[305,334]},{"name":"SymFunctionTableAccess","features":[305,334]},{"name":"SymFunctionTableAccess64","features":[305,334]},{"name":"SymFunctionTableAccess64AccessRoutines","features":[305,334]},{"name":"SymGetExtendedOption","features":[305,334]},{"name":"SymGetFileLineOffsets64","features":[305,334]},{"name":"SymGetHomeDirectory","features":[334]},{"name":"SymGetHomeDirectoryW","features":[334]},{"name":"SymGetLineFromAddr","features":[305,334]},{"name":"SymGetLineFromAddr64","features":[305,334]},{"name":"SymGetLineFromAddrW64","features":[305,334]},{"name":"SymGetLineFromInlineContext","features":[305,334]},{"name":"SymGetLineFromInlineContextW","features":[305,334]},{"name":"SymGetLineFromName","features":[305,334]},{"name":"SymGetLineFromName64","features":[305,334]},{"name":"SymGetLineFromNameW64","features":[305,334]},{"name":"SymGetLineNext","features":[305,334]},{"name":"SymGetLineNext64","features":[305,334]},{"name":"SymGetLineNextW64","features":[305,334]},{"name":"SymGetLinePrev","features":[305,334]},{"name":"SymGetLinePrev64","features":[305,334]},{"name":"SymGetLinePrevW64","features":[305,334]},{"name":"SymGetModuleBase","features":[305,334]},{"name":"SymGetModuleBase64","features":[305,334]},{"name":"SymGetModuleInfo","features":[305,334]},{"name":"SymGetModuleInfo64","features":[305,334]},{"name":"SymGetModuleInfoW","features":[305,334]},{"name":"SymGetModuleInfoW64","features":[305,334]},{"name":"SymGetOmaps","features":[305,334]},{"name":"SymGetOptions","features":[334]},{"name":"SymGetScope","features":[305,334]},{"name":"SymGetScopeW","features":[305,334]},{"name":"SymGetSearchPath","features":[305,334]},{"name":"SymGetSearchPathW","features":[305,334]},{"name":"SymGetSourceFile","features":[305,334]},{"name":"SymGetSourceFileChecksum","features":[305,334]},{"name":"SymGetSourceFileChecksumW","features":[305,334]},{"name":"SymGetSourceFileFromToken","features":[305,334]},{"name":"SymGetSourceFileFromTokenByTokenName","features":[305,334]},{"name":"SymGetSourceFileFromTokenByTokenNameW","features":[305,334]},{"name":"SymGetSourceFileFromTokenW","features":[305,334]},{"name":"SymGetSourceFileToken","features":[305,334]},{"name":"SymGetSourceFileTokenByTokenName","features":[305,334]},{"name":"SymGetSourceFileTokenByTokenNameW","features":[305,334]},{"name":"SymGetSourceFileTokenW","features":[305,334]},{"name":"SymGetSourceFileW","features":[305,334]},{"name":"SymGetSourceVarFromToken","features":[305,334]},{"name":"SymGetSourceVarFromTokenW","features":[305,334]},{"name":"SymGetSymFromAddr","features":[305,334]},{"name":"SymGetSymFromAddr64","features":[305,334]},{"name":"SymGetSymFromName","features":[305,334]},{"name":"SymGetSymFromName64","features":[305,334]},{"name":"SymGetSymNext","features":[305,334]},{"name":"SymGetSymNext64","features":[305,334]},{"name":"SymGetSymPrev","features":[305,334]},{"name":"SymGetSymPrev64","features":[305,334]},{"name":"SymGetSymbolFile","features":[305,334]},{"name":"SymGetSymbolFileW","features":[305,334]},{"name":"SymGetTypeFromName","features":[305,334]},{"name":"SymGetTypeFromNameW","features":[305,334]},{"name":"SymGetTypeInfo","features":[305,334]},{"name":"SymGetTypeInfoEx","features":[305,334]},{"name":"SymGetUnwindInfo","features":[305,334]},{"name":"SymInitialize","features":[305,334]},{"name":"SymInitializeW","features":[305,334]},{"name":"SymLoadModule","features":[305,334]},{"name":"SymLoadModule64","features":[305,334]},{"name":"SymLoadModuleEx","features":[305,334]},{"name":"SymLoadModuleExW","features":[305,334]},{"name":"SymMatchFileName","features":[305,334]},{"name":"SymMatchFileNameW","features":[305,334]},{"name":"SymMatchString","features":[305,334]},{"name":"SymMatchStringA","features":[305,334]},{"name":"SymMatchStringW","features":[305,334]},{"name":"SymNext","features":[305,334]},{"name":"SymNextW","features":[305,334]},{"name":"SymNone","features":[334]},{"name":"SymPdb","features":[334]},{"name":"SymPrev","features":[305,334]},{"name":"SymPrevW","features":[305,334]},{"name":"SymQueryInlineTrace","features":[305,334]},{"name":"SymRefreshModuleList","features":[305,334]},{"name":"SymRegisterCallback","features":[305,334]},{"name":"SymRegisterCallback64","features":[305,334]},{"name":"SymRegisterCallbackW64","features":[305,334]},{"name":"SymRegisterFunctionEntryCallback","features":[305,334]},{"name":"SymRegisterFunctionEntryCallback64","features":[305,334]},{"name":"SymSearch","features":[305,334]},{"name":"SymSearchW","features":[305,334]},{"name":"SymSetContext","features":[305,334]},{"name":"SymSetExtendedOption","features":[305,334]},{"name":"SymSetHomeDirectory","features":[305,334]},{"name":"SymSetHomeDirectoryW","features":[305,334]},{"name":"SymSetOptions","features":[334]},{"name":"SymSetParentWindow","features":[305,334]},{"name":"SymSetScopeFromAddr","features":[305,334]},{"name":"SymSetScopeFromIndex","features":[305,334]},{"name":"SymSetScopeFromInlineContext","features":[305,334]},{"name":"SymSetSearchPath","features":[305,334]},{"name":"SymSetSearchPathW","features":[305,334]},{"name":"SymSrvDeltaName","features":[305,334]},{"name":"SymSrvDeltaNameW","features":[305,334]},{"name":"SymSrvGetFileIndexInfo","features":[305,334]},{"name":"SymSrvGetFileIndexInfoW","features":[305,334]},{"name":"SymSrvGetFileIndexString","features":[305,334]},{"name":"SymSrvGetFileIndexStringW","features":[305,334]},{"name":"SymSrvGetFileIndexes","features":[305,334]},{"name":"SymSrvGetFileIndexesW","features":[305,334]},{"name":"SymSrvGetSupplement","features":[305,334]},{"name":"SymSrvGetSupplementW","features":[305,334]},{"name":"SymSrvIsStore","features":[305,334]},{"name":"SymSrvIsStoreW","features":[305,334]},{"name":"SymSrvStoreFile","features":[305,334]},{"name":"SymSrvStoreFileW","features":[305,334]},{"name":"SymSrvStoreSupplement","features":[305,334]},{"name":"SymSrvStoreSupplementW","features":[305,334]},{"name":"SymSym","features":[334]},{"name":"SymUnDName","features":[305,334]},{"name":"SymUnDName64","features":[305,334]},{"name":"SymUnloadModule","features":[305,334]},{"name":"SymUnloadModule64","features":[305,334]},{"name":"SymVirtual","features":[334]},{"name":"SystemInfoStream","features":[334]},{"name":"SystemMemoryInfoStream","features":[334]},{"name":"TARGET_ATTRIBUTE_PACMASK","features":[334]},{"name":"TARGET_MDL_TOO_SMALL","features":[334]},{"name":"TCPIP_AOAC_NIC_ACTIVE_REFERENCE_LEAK","features":[334]},{"name":"TELEMETRY_ASSERTS_LIVEDUMP","features":[334]},{"name":"TERMINAL_SERVER_DRIVER_MADE_INCORRECT_MEMORY_REFERENCE","features":[334]},{"name":"THIRD_PARTY_FILE_SYSTEM_FAILURE","features":[334]},{"name":"THREAD_ERROR_MODE","features":[334]},{"name":"THREAD_NOT_MUTEX_OWNER","features":[334]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER","features":[334]},{"name":"THREAD_STUCK_IN_DEVICE_DRIVER_M","features":[334]},{"name":"THREAD_TERMINATE_HELD_MUTEX","features":[334]},{"name":"THREAD_WRITE_FLAGS","features":[334]},{"name":"TIMER_OR_DPC_INVALID","features":[334]},{"name":"TI_FINDCHILDREN","features":[334]},{"name":"TI_FINDCHILDREN_PARAMS","features":[334]},{"name":"TI_GET_ADDRESS","features":[334]},{"name":"TI_GET_ADDRESSOFFSET","features":[334]},{"name":"TI_GET_ARRAYINDEXTYPEID","features":[334]},{"name":"TI_GET_BASETYPE","features":[334]},{"name":"TI_GET_BITPOSITION","features":[334]},{"name":"TI_GET_CALLING_CONVENTION","features":[334]},{"name":"TI_GET_CHILDRENCOUNT","features":[334]},{"name":"TI_GET_CLASSPARENTID","features":[334]},{"name":"TI_GET_COUNT","features":[334]},{"name":"TI_GET_DATAKIND","features":[334]},{"name":"TI_GET_INDIRECTVIRTUALBASECLASS","features":[334]},{"name":"TI_GET_IS_REFERENCE","features":[334]},{"name":"TI_GET_LENGTH","features":[334]},{"name":"TI_GET_LEXICALPARENT","features":[334]},{"name":"TI_GET_NESTED","features":[334]},{"name":"TI_GET_OBJECTPOINTERTYPE","features":[334]},{"name":"TI_GET_OFFSET","features":[334]},{"name":"TI_GET_SYMINDEX","features":[334]},{"name":"TI_GET_SYMNAME","features":[334]},{"name":"TI_GET_SYMTAG","features":[334]},{"name":"TI_GET_THISADJUST","features":[334]},{"name":"TI_GET_TYPE","features":[334]},{"name":"TI_GET_TYPEID","features":[334]},{"name":"TI_GET_UDTKIND","features":[334]},{"name":"TI_GET_VALUE","features":[334]},{"name":"TI_GET_VIRTUALBASECLASS","features":[334]},{"name":"TI_GET_VIRTUALBASEDISPINDEX","features":[334]},{"name":"TI_GET_VIRTUALBASEOFFSET","features":[334]},{"name":"TI_GET_VIRTUALBASEPOINTEROFFSET","features":[334]},{"name":"TI_GET_VIRTUALBASETABLETYPE","features":[334]},{"name":"TI_GET_VIRTUALTABLESHAPEID","features":[334]},{"name":"TI_GTIEX_REQS_VALID","features":[334]},{"name":"TI_IS_CLOSE_EQUIV_TO","features":[334]},{"name":"TI_IS_EQUIV_TO","features":[334]},{"name":"TOO_MANY_RECURSIVE_FAULTS","features":[334]},{"name":"TRAP_CAUSE_UNKNOWN","features":[334]},{"name":"TTM_FATAL_ERROR","features":[334]},{"name":"TTM_WATCHDOG_TIMEOUT","features":[334]},{"name":"TerminateProcessOnMemoryExhaustion","features":[334]},{"name":"ThreadCallback","features":[334]},{"name":"ThreadExCallback","features":[334]},{"name":"ThreadExListStream","features":[334]},{"name":"ThreadInfoListStream","features":[334]},{"name":"ThreadListStream","features":[334]},{"name":"ThreadNamesStream","features":[334]},{"name":"ThreadWriteBackingStore","features":[334]},{"name":"ThreadWriteContext","features":[334]},{"name":"ThreadWriteInstructionWindow","features":[334]},{"name":"ThreadWriteStack","features":[334]},{"name":"ThreadWriteThread","features":[334]},{"name":"ThreadWriteThreadData","features":[334]},{"name":"ThreadWriteThreadInfo","features":[334]},{"name":"TokenStream","features":[334]},{"name":"TouchFileTimes","features":[305,334]},{"name":"UCMUCSI_FAILURE","features":[334]},{"name":"UCMUCSI_LIVEDUMP","features":[334]},{"name":"UDFS_FILE_SYSTEM","features":[334]},{"name":"UFX_LIVEDUMP","features":[334]},{"name":"UNDNAME_32_BIT_DECODE","features":[334]},{"name":"UNDNAME_COMPLETE","features":[334]},{"name":"UNDNAME_NAME_ONLY","features":[334]},{"name":"UNDNAME_NO_ACCESS_SPECIFIERS","features":[334]},{"name":"UNDNAME_NO_ALLOCATION_LANGUAGE","features":[334]},{"name":"UNDNAME_NO_ALLOCATION_MODEL","features":[334]},{"name":"UNDNAME_NO_ARGUMENTS","features":[334]},{"name":"UNDNAME_NO_CV_THISTYPE","features":[334]},{"name":"UNDNAME_NO_FUNCTION_RETURNS","features":[334]},{"name":"UNDNAME_NO_LEADING_UNDERSCORES","features":[334]},{"name":"UNDNAME_NO_MEMBER_TYPE","features":[334]},{"name":"UNDNAME_NO_MS_KEYWORDS","features":[334]},{"name":"UNDNAME_NO_MS_THISTYPE","features":[334]},{"name":"UNDNAME_NO_RETURN_UDT_MODEL","features":[334]},{"name":"UNDNAME_NO_SPECIAL_SYMS","features":[334]},{"name":"UNDNAME_NO_THISTYPE","features":[334]},{"name":"UNDNAME_NO_THROW_SIGNATURES","features":[334]},{"name":"UNEXPECTED_INITIALIZATION_CALL","features":[334]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP","features":[334]},{"name":"UNEXPECTED_KERNEL_MODE_TRAP_M","features":[334]},{"name":"UNEXPECTED_STORE_EXCEPTION","features":[334]},{"name":"UNLOAD_DLL_DEBUG_EVENT","features":[334]},{"name":"UNLOAD_DLL_DEBUG_INFO","features":[334]},{"name":"UNMOUNTABLE_BOOT_VOLUME","features":[334]},{"name":"UNSUPPORTED_INSTRUCTION_MODE","features":[334]},{"name":"UNSUPPORTED_PROCESSOR","features":[334]},{"name":"UNWIND_HISTORY_TABLE","features":[334]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[334]},{"name":"UNWIND_HISTORY_TABLE_ENTRY","features":[334]},{"name":"UNWIND_ON_INVALID_STACK","features":[334]},{"name":"UNW_FLAG_CHAININFO","features":[334]},{"name":"UNW_FLAG_EHANDLER","features":[334]},{"name":"UNW_FLAG_NHANDLER","features":[334]},{"name":"UNW_FLAG_UHANDLER","features":[334]},{"name":"UP_DRIVER_ON_MP_SYSTEM","features":[334]},{"name":"USB4_HARDWARE_VIOLATION","features":[334]},{"name":"USB_DRIPS_BLOCKER_SURPRISE_REMOVAL_LIVEDUMP","features":[334]},{"name":"USER_MODE_HEALTH_MONITOR","features":[334]},{"name":"USER_MODE_HEALTH_MONITOR_LIVEDUMP","features":[334]},{"name":"UnDecorateSymbolName","features":[334]},{"name":"UnDecorateSymbolNameW","features":[334]},{"name":"UnMapAndLoad","features":[305,334,311,336]},{"name":"UnhandledExceptionFilter","features":[305,334,311]},{"name":"UnloadedModuleListStream","features":[334]},{"name":"UnusedStream","features":[334]},{"name":"UpdateDebugInfoFile","features":[305,334,336]},{"name":"UpdateDebugInfoFileEx","features":[305,334,336]},{"name":"VER_PLATFORM","features":[334]},{"name":"VER_PLATFORM_WIN32_NT","features":[334]},{"name":"VER_PLATFORM_WIN32_WINDOWS","features":[334]},{"name":"VER_PLATFORM_WIN32s","features":[334]},{"name":"VHD_BOOT_HOST_VOLUME_NOT_ENOUGH_SPACE","features":[334]},{"name":"VHD_BOOT_INITIALIZATION_FAILED","features":[334]},{"name":"VIDEO_DRIVER_DEBUG_REPORT_REQUEST","features":[334]},{"name":"VIDEO_DRIVER_INIT_FAILURE","features":[334]},{"name":"VIDEO_DWMINIT_TIMEOUT_FALLBACK_BDD","features":[334]},{"name":"VIDEO_DXGKRNL_BLACK_SCREEN_LIVEDUMP","features":[334]},{"name":"VIDEO_DXGKRNL_FATAL_ERROR","features":[334]},{"name":"VIDEO_DXGKRNL_LIVEDUMP","features":[334]},{"name":"VIDEO_DXGKRNL_SYSMM_FATAL_ERROR","features":[334]},{"name":"VIDEO_ENGINE_TIMEOUT_DETECTED","features":[334]},{"name":"VIDEO_MEMORY_MANAGEMENT_INTERNAL","features":[334]},{"name":"VIDEO_MINIPORT_BLACK_SCREEN_LIVEDUMP","features":[334]},{"name":"VIDEO_MINIPORT_FAILED_LIVEDUMP","features":[334]},{"name":"VIDEO_SCHEDULER_INTERNAL_ERROR","features":[334]},{"name":"VIDEO_SHADOW_DRIVER_FATAL_ERROR","features":[334]},{"name":"VIDEO_TDR_APPLICATION_BLOCKED","features":[334]},{"name":"VIDEO_TDR_FAILURE","features":[334]},{"name":"VIDEO_TDR_TIMEOUT_DETECTED","features":[334]},{"name":"VMBUS_LIVEDUMP","features":[334]},{"name":"VOLMGRX_INTERNAL_ERROR","features":[334]},{"name":"VOLSNAP_OVERLAPPED_TABLE_ACCESS","features":[334]},{"name":"VSL_INITIALIZATION_FAILED","features":[334]},{"name":"VmPostReadCallback","features":[334]},{"name":"VmPreReadCallback","features":[334]},{"name":"VmQueryCallback","features":[334]},{"name":"VmStartCallback","features":[334]},{"name":"WAITCHAIN_NODE_INFO","features":[305,334]},{"name":"WAIT_CHAIN_THREAD_OPTIONS","features":[334]},{"name":"WCT_ASYNC_OPEN_FLAG","features":[334]},{"name":"WCT_MAX_NODE_COUNT","features":[334]},{"name":"WCT_NETWORK_IO_FLAG","features":[334]},{"name":"WCT_OBJECT_STATUS","features":[334]},{"name":"WCT_OBJECT_TYPE","features":[334]},{"name":"WCT_OBJNAME_LENGTH","features":[334]},{"name":"WCT_OUT_OF_PROC_COM_FLAG","features":[334]},{"name":"WCT_OUT_OF_PROC_CS_FLAG","features":[334]},{"name":"WCT_OUT_OF_PROC_FLAG","features":[334]},{"name":"WDF_VIOLATION","features":[334]},{"name":"WFP_INVALID_OPERATION","features":[334]},{"name":"WHEA_AER_BRIDGE_DESCRIPTOR","features":[305,334]},{"name":"WHEA_AER_ENDPOINT_DESCRIPTOR","features":[305,334]},{"name":"WHEA_AER_ROOTPORT_DESCRIPTOR","features":[305,334]},{"name":"WHEA_BAD_PAGE_LIST_LOCATION","features":[334]},{"name":"WHEA_BAD_PAGE_LIST_MAX_SIZE","features":[334]},{"name":"WHEA_CMCI_THRESHOLD_COUNT","features":[334]},{"name":"WHEA_CMCI_THRESHOLD_POLL_COUNT","features":[334]},{"name":"WHEA_CMCI_THRESHOLD_TIME","features":[334]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MAX","features":[334]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_MIN","features":[334]},{"name":"WHEA_DEVICE_DRIVER_BUFFER_SET_V1","features":[334]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MAX","features":[334]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_MIN","features":[334]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V1","features":[334]},{"name":"WHEA_DEVICE_DRIVER_CONFIG_V2","features":[334]},{"name":"WHEA_DEVICE_DRIVER_DESCRIPTOR","features":[305,334]},{"name":"WHEA_DISABLE_DUMMY_WRITE","features":[334]},{"name":"WHEA_DISABLE_OFFLINE","features":[334]},{"name":"WHEA_DRIVER_BUFFER_SET","features":[334]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DD","features":[305,334]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER","features":[305,334]},{"name":"WHEA_ERROR_SOURCE_CONFIGURATION_DEVICE_DRIVER_V1","features":[305,334]},{"name":"WHEA_ERROR_SOURCE_CORRECT_DEVICE_DRIVER","features":[305,334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR","features":[305,334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERBRIDGE","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERENDPOINT","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_AERROOTPORT","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_GENERIC_V2","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCMC","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFCPE","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_IPFMCA","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFCMC","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFMCE","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_TYPE_XPFNMI","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_10","features":[334]},{"name":"WHEA_ERROR_SOURCE_DESCRIPTOR_VERSION_11","features":[334]},{"name":"WHEA_ERROR_SOURCE_FLAG_DEFAULTSOURCE","features":[334]},{"name":"WHEA_ERROR_SOURCE_FLAG_FIRMWAREFIRST","features":[334]},{"name":"WHEA_ERROR_SOURCE_FLAG_GHES_ASSIST","features":[334]},{"name":"WHEA_ERROR_SOURCE_FLAG_GLOBAL","features":[334]},{"name":"WHEA_ERROR_SOURCE_INITIALIZE_DEVICE_DRIVER","features":[305,334]},{"name":"WHEA_ERROR_SOURCE_INVALID_RELATED_SOURCE","features":[334]},{"name":"WHEA_ERROR_SOURCE_STATE","features":[334]},{"name":"WHEA_ERROR_SOURCE_TYPE","features":[334]},{"name":"WHEA_ERROR_SOURCE_UNINITIALIZE_DEVICE_DRIVER","features":[334]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR","features":[334]},{"name":"WHEA_GENERIC_ERROR_DESCRIPTOR_V2","features":[334]},{"name":"WHEA_INTERNAL_ERROR","features":[334]},{"name":"WHEA_IPF_CMC_DESCRIPTOR","features":[334]},{"name":"WHEA_IPF_CPE_DESCRIPTOR","features":[334]},{"name":"WHEA_IPF_MCA_DESCRIPTOR","features":[334]},{"name":"WHEA_MAX_MC_BANKS","features":[334]},{"name":"WHEA_MEM_PERSISTOFFLINE","features":[334]},{"name":"WHEA_MEM_PFA_DISABLE","features":[334]},{"name":"WHEA_MEM_PFA_PAGECOUNT","features":[334]},{"name":"WHEA_MEM_PFA_THRESHOLD","features":[334]},{"name":"WHEA_MEM_PFA_TIMEOUT","features":[334]},{"name":"WHEA_NOTIFICATION_DESCRIPTOR","features":[334]},{"name":"WHEA_NOTIFICATION_FLAGS","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEA","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_ARMV8_SEI","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_CMCI","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_EXTERNALINTERRUPT_GSIV","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_GPIO_SIGNAL","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_LOCALINTERRUPT","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_MCE","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_NMI","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_POLLED","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_SCI","features":[334]},{"name":"WHEA_NOTIFICATION_TYPE_SDEI","features":[334]},{"name":"WHEA_NOTIFY_ALL_OFFLINES","features":[334]},{"name":"WHEA_PCI_SLOT_NUMBER","features":[334]},{"name":"WHEA_PENDING_PAGE_LIST_SZ","features":[334]},{"name":"WHEA_RESTORE_CMCI_ATTEMPTS","features":[334]},{"name":"WHEA_RESTORE_CMCI_ENABLED","features":[334]},{"name":"WHEA_RESTORE_CMCI_ERR_LIMIT","features":[334]},{"name":"WHEA_ROW_FAIL_CHECK_ENABLE","features":[334]},{"name":"WHEA_ROW_FAIL_CHECK_EXTENT","features":[334]},{"name":"WHEA_ROW_FAIL_CHECK_THRESHOLD","features":[334]},{"name":"WHEA_UNCORRECTABLE_ERROR","features":[334]},{"name":"WHEA_XPF_CMC_DESCRIPTOR","features":[305,334]},{"name":"WHEA_XPF_MCE_DESCRIPTOR","features":[305,334]},{"name":"WHEA_XPF_MC_BANK_DESCRIPTOR","features":[305,334]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_AMD64MCA","features":[334]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_IA32MCA","features":[334]},{"name":"WHEA_XPF_MC_BANK_STATUSFORMAT_Intel64MCA","features":[334]},{"name":"WHEA_XPF_NMI_DESCRIPTOR","features":[305,334]},{"name":"WIN32K_ATOMIC_CHECK_FAILURE","features":[334]},{"name":"WIN32K_CALLOUT_WATCHDOG_BUGCHECK","features":[334]},{"name":"WIN32K_CALLOUT_WATCHDOG_LIVEDUMP","features":[334]},{"name":"WIN32K_CRITICAL_FAILURE","features":[334]},{"name":"WIN32K_CRITICAL_FAILURE_LIVEDUMP","features":[334]},{"name":"WIN32K_HANDLE_MANAGER","features":[334]},{"name":"WIN32K_INIT_OR_RIT_FAILURE","features":[334]},{"name":"WIN32K_POWER_WATCHDOG_TIMEOUT","features":[334]},{"name":"WIN32K_SECURITY_FAILURE","features":[334]},{"name":"WINDOWS_NT_BANNER","features":[334]},{"name":"WINDOWS_NT_CSD_STRING","features":[334]},{"name":"WINDOWS_NT_INFO_STRING","features":[334]},{"name":"WINDOWS_NT_INFO_STRING_PLURAL","features":[334]},{"name":"WINDOWS_NT_MP_STRING","features":[334]},{"name":"WINDOWS_NT_RC_STRING","features":[334]},{"name":"WINLOGON_FATAL_ERROR","features":[334]},{"name":"WINSOCK_DETECTED_HUNG_CLOSESOCKET_LIVEDUMP","features":[334]},{"name":"WORKER_INVALID","features":[334]},{"name":"WORKER_THREAD_INVALID_STATE","features":[334]},{"name":"WORKER_THREAD_RETURNED_AT_BAD_IRQL","features":[334]},{"name":"WORKER_THREAD_RETURNED_WHILE_ATTACHED_TO_SILO","features":[334]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_IO_PRIORITY","features":[334]},{"name":"WORKER_THREAD_RETURNED_WITH_BAD_PAGING_IO_PRIORITY","features":[334]},{"name":"WORKER_THREAD_RETURNED_WITH_NON_DEFAULT_WORKLOAD_CLASS","features":[334]},{"name":"WORKER_THREAD_RETURNED_WITH_SYSTEM_PAGE_PRIORITY_ACTIVE","features":[334]},{"name":"WORKER_THREAD_TEST_CONDITION","features":[334]},{"name":"WOW64_CONTEXT","features":[334]},{"name":"WOW64_CONTEXT_ALL","features":[334]},{"name":"WOW64_CONTEXT_CONTROL","features":[334]},{"name":"WOW64_CONTEXT_DEBUG_REGISTERS","features":[334]},{"name":"WOW64_CONTEXT_EXCEPTION_ACTIVE","features":[334]},{"name":"WOW64_CONTEXT_EXCEPTION_REPORTING","features":[334]},{"name":"WOW64_CONTEXT_EXCEPTION_REQUEST","features":[334]},{"name":"WOW64_CONTEXT_EXTENDED_REGISTERS","features":[334]},{"name":"WOW64_CONTEXT_FLAGS","features":[334]},{"name":"WOW64_CONTEXT_FLOATING_POINT","features":[334]},{"name":"WOW64_CONTEXT_FULL","features":[334]},{"name":"WOW64_CONTEXT_INTEGER","features":[334]},{"name":"WOW64_CONTEXT_SEGMENTS","features":[334]},{"name":"WOW64_CONTEXT_SERVICE_ACTIVE","features":[334]},{"name":"WOW64_CONTEXT_X86","features":[334]},{"name":"WOW64_CONTEXT_XSTATE","features":[334]},{"name":"WOW64_DESCRIPTOR_TABLE_ENTRY","features":[334]},{"name":"WOW64_FLOATING_SAVE_AREA","features":[334]},{"name":"WOW64_LDT_ENTRY","features":[334]},{"name":"WOW64_MAXIMUM_SUPPORTED_EXTENSION","features":[334]},{"name":"WOW64_SIZE_OF_80387_REGISTERS","features":[334]},{"name":"WVR_LIVEDUMP_APP_IO_TIMEOUT","features":[334]},{"name":"WVR_LIVEDUMP_CRITICAL_ERROR","features":[334]},{"name":"WVR_LIVEDUMP_MANUALLY_INITIATED","features":[334]},{"name":"WVR_LIVEDUMP_RECOVERY_IOCONTEXT_TIMEOUT","features":[334]},{"name":"WVR_LIVEDUMP_REPLICATION_IOCONTEXT_TIMEOUT","features":[334]},{"name":"WVR_LIVEDUMP_STATE_FAILURE","features":[334]},{"name":"WVR_LIVEDUMP_STATE_TRANSITION_TIMEOUT","features":[334]},{"name":"WaitForDebugEvent","features":[305,334,340]},{"name":"WaitForDebugEventEx","features":[305,334,340]},{"name":"WctAlpcType","features":[334]},{"name":"WctComActivationType","features":[334]},{"name":"WctComType","features":[334]},{"name":"WctCriticalSectionType","features":[334]},{"name":"WctMaxType","features":[334]},{"name":"WctMutexType","features":[334]},{"name":"WctProcessWaitType","features":[334]},{"name":"WctSendMessageType","features":[334]},{"name":"WctSmbIoType","features":[334]},{"name":"WctSocketIoType","features":[334]},{"name":"WctStatusAbandoned","features":[334]},{"name":"WctStatusBlocked","features":[334]},{"name":"WctStatusError","features":[334]},{"name":"WctStatusMax","features":[334]},{"name":"WctStatusNoAccess","features":[334]},{"name":"WctStatusNotOwned","features":[334]},{"name":"WctStatusOwned","features":[334]},{"name":"WctStatusPidOnly","features":[334]},{"name":"WctStatusPidOnlyRpcss","features":[334]},{"name":"WctStatusRunning","features":[334]},{"name":"WctStatusUnknown","features":[334]},{"name":"WctThreadType","features":[334]},{"name":"WctThreadWaitType","features":[334]},{"name":"WctUnknownType","features":[334]},{"name":"WheaErrSrcStateRemovePending","features":[334]},{"name":"WheaErrSrcStateRemoved","features":[334]},{"name":"WheaErrSrcStateStarted","features":[334]},{"name":"WheaErrSrcStateStopped","features":[334]},{"name":"WheaErrSrcTypeBMC","features":[334]},{"name":"WheaErrSrcTypeBOOT","features":[334]},{"name":"WheaErrSrcTypeCMC","features":[334]},{"name":"WheaErrSrcTypeCPE","features":[334]},{"name":"WheaErrSrcTypeDeviceDriver","features":[334]},{"name":"WheaErrSrcTypeGeneric","features":[334]},{"name":"WheaErrSrcTypeGenericV2","features":[334]},{"name":"WheaErrSrcTypeINIT","features":[334]},{"name":"WheaErrSrcTypeIPFCMC","features":[334]},{"name":"WheaErrSrcTypeIPFCPE","features":[334]},{"name":"WheaErrSrcTypeIPFMCA","features":[334]},{"name":"WheaErrSrcTypeMCE","features":[334]},{"name":"WheaErrSrcTypeMax","features":[334]},{"name":"WheaErrSrcTypeNMI","features":[334]},{"name":"WheaErrSrcTypePCIe","features":[334]},{"name":"WheaErrSrcTypePMEM","features":[334]},{"name":"WheaErrSrcTypeSCIGeneric","features":[334]},{"name":"WheaErrSrcTypeSCIGenericV2","features":[334]},{"name":"WheaErrSrcTypeSea","features":[334]},{"name":"WheaErrSrcTypeSei","features":[334]},{"name":"Wow64GetThreadContext","features":[305,334]},{"name":"Wow64GetThreadSelectorEntry","features":[305,334]},{"name":"Wow64SetThreadContext","features":[305,334]},{"name":"WriteKernelMinidumpCallback","features":[334]},{"name":"WriteProcessMemory","features":[305,334]},{"name":"XBOX_360_SYSTEM_CRASH","features":[334]},{"name":"XBOX_360_SYSTEM_CRASH_RESERVED","features":[334]},{"name":"XBOX_CORRUPTED_IMAGE","features":[334]},{"name":"XBOX_CORRUPTED_IMAGE_BASE","features":[334]},{"name":"XBOX_INVERTED_FUNCTION_TABLE_OVERFLOW","features":[334]},{"name":"XBOX_MANUALLY_INITIATED_CRASH","features":[334]},{"name":"XBOX_SECURITY_FAILUE","features":[334]},{"name":"XBOX_SHUTDOWN_WATCHDOG_TIMEOUT","features":[334]},{"name":"XBOX_VMCTRL_CS_TIMEOUT","features":[334]},{"name":"XBOX_XDS_WATCHDOG_TIMEOUT","features":[334]},{"name":"XNS_INTERNAL_ERROR","features":[334]},{"name":"XPF_MCE_FLAGS","features":[334]},{"name":"XPF_MC_BANK_FLAGS","features":[334]},{"name":"XSAVE_AREA","features":[334]},{"name":"XSAVE_AREA_HEADER","features":[334]},{"name":"XSAVE_FORMAT","features":[334]},{"name":"XSAVE_FORMAT","features":[334]},{"name":"XSTATE_CONFIGURATION","features":[334]},{"name":"XSTATE_CONFIG_FEATURE_MSC_INFO","features":[334]},{"name":"XSTATE_CONTEXT","features":[334]},{"name":"XSTATE_CONTEXT","features":[334]},{"name":"XSTATE_FEATURE","features":[334]},{"name":"ceStreamBucketParameters","features":[334]},{"name":"ceStreamDiagnosisList","features":[334]},{"name":"ceStreamException","features":[334]},{"name":"ceStreamMemoryPhysicalList","features":[334]},{"name":"ceStreamMemoryVirtualList","features":[334]},{"name":"ceStreamModuleList","features":[334]},{"name":"ceStreamNull","features":[334]},{"name":"ceStreamProcessList","features":[334]},{"name":"ceStreamProcessModuleMap","features":[334]},{"name":"ceStreamSystemInfo","features":[334]},{"name":"ceStreamThreadCallStackList","features":[334]},{"name":"ceStreamThreadContextList","features":[334]},{"name":"ceStreamThreadList","features":[334]},{"name":"hdBase","features":[334]},{"name":"hdMax","features":[334]},{"name":"hdSrc","features":[334]},{"name":"hdSym","features":[334]},{"name":"sevAttn","features":[334]},{"name":"sevFatal","features":[334]},{"name":"sevInfo","features":[334]},{"name":"sevMax","features":[334]},{"name":"sevProblem","features":[334]},{"name":"sfDbg","features":[334]},{"name":"sfImage","features":[334]},{"name":"sfMax","features":[334]},{"name":"sfMpd","features":[334]},{"name":"sfPdb","features":[334]}],"555":[{"name":"ACTIVPROF_E_PROFILER_ABSENT","features":[544]},{"name":"ACTIVPROF_E_PROFILER_PRESENT","features":[544]},{"name":"ACTIVPROF_E_UNABLE_TO_APPLY_ACTION","features":[544]},{"name":"APPBREAKFLAG_DEBUGGER_BLOCK","features":[544]},{"name":"APPBREAKFLAG_DEBUGGER_HALT","features":[544]},{"name":"APPBREAKFLAG_IN_BREAKPOINT","features":[544]},{"name":"APPBREAKFLAG_NESTED","features":[544]},{"name":"APPBREAKFLAG_STEP","features":[544]},{"name":"APPBREAKFLAG_STEPTYPE_BYTECODE","features":[544]},{"name":"APPBREAKFLAG_STEPTYPE_MACHINE","features":[544]},{"name":"APPBREAKFLAG_STEPTYPE_MASK","features":[544]},{"name":"APPBREAKFLAG_STEPTYPE_SOURCE","features":[544]},{"name":"APPLICATION_NODE_EVENT_FILTER","features":[544]},{"name":"AsyncIDebugApplicationNodeEvents","features":[544]},{"name":"BREAKPOINT_DELETED","features":[544]},{"name":"BREAKPOINT_DISABLED","features":[544]},{"name":"BREAKPOINT_ENABLED","features":[544]},{"name":"BREAKPOINT_STATE","features":[544]},{"name":"BREAKREASON","features":[544]},{"name":"BREAKREASON_BREAKPOINT","features":[544]},{"name":"BREAKREASON_DEBUGGER_BLOCK","features":[544]},{"name":"BREAKREASON_DEBUGGER_HALT","features":[544]},{"name":"BREAKREASON_ERROR","features":[544]},{"name":"BREAKREASON_HOST_INITIATED","features":[544]},{"name":"BREAKREASON_JIT","features":[544]},{"name":"BREAKREASON_LANGUAGE_INITIATED","features":[544]},{"name":"BREAKREASON_MUTATION_BREAKPOINT","features":[544]},{"name":"BREAKREASON_STEP","features":[544]},{"name":"BREAKRESUMEACTION","features":[544]},{"name":"BREAKRESUMEACTION_ABORT","features":[544]},{"name":"BREAKRESUMEACTION_CONTINUE","features":[544]},{"name":"BREAKRESUMEACTION_IGNORE","features":[544]},{"name":"BREAKRESUMEACTION_STEP_DOCUMENT","features":[544]},{"name":"BREAKRESUMEACTION_STEP_INTO","features":[544]},{"name":"BREAKRESUMEACTION_STEP_OUT","features":[544]},{"name":"BREAKRESUMEACTION_STEP_OVER","features":[544]},{"name":"CATID_ActiveScript","features":[544]},{"name":"CATID_ActiveScriptAuthor","features":[544]},{"name":"CATID_ActiveScriptEncode","features":[544]},{"name":"CATID_ActiveScriptParse","features":[544]},{"name":"CDebugDocumentHelper","features":[544]},{"name":"DEBUG_EVENT_INFO_TYPE","features":[544]},{"name":"DEBUG_STACKFRAME_TYPE","features":[544]},{"name":"DEBUG_TEXT_ALLOWBREAKPOINTS","features":[544]},{"name":"DEBUG_TEXT_ALLOWERRORREPORT","features":[544]},{"name":"DEBUG_TEXT_EVALUATETOCODECONTEXT","features":[544]},{"name":"DEBUG_TEXT_ISEXPRESSION","features":[544]},{"name":"DEBUG_TEXT_ISNONUSERCODE","features":[544]},{"name":"DEBUG_TEXT_NOSIDEEFFECTS","features":[544]},{"name":"DEBUG_TEXT_RETURNVALUE","features":[544]},{"name":"DEIT_ASMJS_FAILED","features":[544]},{"name":"DEIT_ASMJS_IN_DEBUGGING","features":[544]},{"name":"DEIT_ASMJS_SUCCEEDED","features":[544]},{"name":"DEIT_GENERAL","features":[544]},{"name":"DOCUMENTNAMETYPE","features":[544]},{"name":"DOCUMENTNAMETYPE_APPNODE","features":[544]},{"name":"DOCUMENTNAMETYPE_FILE_TAIL","features":[544]},{"name":"DOCUMENTNAMETYPE_SOURCE_MAP_URL","features":[544]},{"name":"DOCUMENTNAMETYPE_TITLE","features":[544]},{"name":"DOCUMENTNAMETYPE_UNIQUE_TITLE","features":[544]},{"name":"DOCUMENTNAMETYPE_URL","features":[544]},{"name":"DST_INTERNAL_FRAME","features":[544]},{"name":"DST_INVOCATION_FRAME","features":[544]},{"name":"DST_SCRIPT_FRAME","features":[544]},{"name":"DebugHelper","features":[544]},{"name":"DebugStackFrameDescriptor","features":[305,544]},{"name":"DebugStackFrameDescriptor64","features":[305,544]},{"name":"DefaultDebugSessionProvider","features":[544]},{"name":"ERRORRESUMEACTION","features":[544]},{"name":"ERRORRESUMEACTION_AbortCallAndReturnErrorToCaller","features":[544]},{"name":"ERRORRESUMEACTION_ReexecuteErrorStatement","features":[544]},{"name":"ERRORRESUMEACTION_SkipErrorStatement","features":[544]},{"name":"ETK_FIRST_CHANCE","features":[544]},{"name":"ETK_UNHANDLED","features":[544]},{"name":"ETK_USER_UNHANDLED","features":[544]},{"name":"E_JsDEBUG_INVALID_MEMORY_ADDRESS","features":[544]},{"name":"E_JsDEBUG_MISMATCHED_RUNTIME","features":[544]},{"name":"E_JsDEBUG_OUTSIDE_OF_VM","features":[544]},{"name":"E_JsDEBUG_RUNTIME_NOT_IN_DEBUG_MODE","features":[544]},{"name":"E_JsDEBUG_SOURCE_LOCATION_NOT_FOUND","features":[544]},{"name":"E_JsDEBUG_UNKNOWN_THREAD","features":[544]},{"name":"FACILITY_JsDEBUG","features":[544]},{"name":"FILTER_EXCLUDE_ANONYMOUS_CODE","features":[544]},{"name":"FILTER_EXCLUDE_EVAL_CODE","features":[544]},{"name":"FILTER_EXCLUDE_NOTHING","features":[544]},{"name":"GETATTRFLAG_HUMANTEXT","features":[544]},{"name":"GETATTRFLAG_THIS","features":[544]},{"name":"GETATTRTYPE_DEPSCAN","features":[544]},{"name":"GETATTRTYPE_NORMAL","features":[544]},{"name":"IActiveScript","features":[544]},{"name":"IActiveScriptAuthor","features":[544]},{"name":"IActiveScriptAuthorProcedure","features":[544]},{"name":"IActiveScriptDebug32","features":[544]},{"name":"IActiveScriptDebug64","features":[544]},{"name":"IActiveScriptEncode","features":[544]},{"name":"IActiveScriptError","features":[544]},{"name":"IActiveScriptError64","features":[544]},{"name":"IActiveScriptErrorDebug","features":[544]},{"name":"IActiveScriptErrorDebug110","features":[544]},{"name":"IActiveScriptGarbageCollector","features":[544]},{"name":"IActiveScriptHostEncode","features":[544]},{"name":"IActiveScriptParse32","features":[544]},{"name":"IActiveScriptParse64","features":[544]},{"name":"IActiveScriptParseProcedure2_32","features":[544]},{"name":"IActiveScriptParseProcedure2_64","features":[544]},{"name":"IActiveScriptParseProcedure32","features":[544]},{"name":"IActiveScriptParseProcedure64","features":[544]},{"name":"IActiveScriptParseProcedureOld32","features":[544]},{"name":"IActiveScriptParseProcedureOld64","features":[544]},{"name":"IActiveScriptProfilerCallback","features":[544]},{"name":"IActiveScriptProfilerCallback2","features":[544]},{"name":"IActiveScriptProfilerCallback3","features":[544]},{"name":"IActiveScriptProfilerControl","features":[544]},{"name":"IActiveScriptProfilerControl2","features":[544]},{"name":"IActiveScriptProfilerControl3","features":[544]},{"name":"IActiveScriptProfilerControl4","features":[544]},{"name":"IActiveScriptProfilerControl5","features":[544]},{"name":"IActiveScriptProfilerHeapEnum","features":[544]},{"name":"IActiveScriptProperty","features":[544]},{"name":"IActiveScriptSIPInfo","features":[544]},{"name":"IActiveScriptSite","features":[544]},{"name":"IActiveScriptSiteDebug32","features":[544]},{"name":"IActiveScriptSiteDebug64","features":[544]},{"name":"IActiveScriptSiteDebugEx","features":[544]},{"name":"IActiveScriptSiteInterruptPoll","features":[544]},{"name":"IActiveScriptSiteTraceInfo","features":[544]},{"name":"IActiveScriptSiteUIControl","features":[544]},{"name":"IActiveScriptSiteWindow","features":[544]},{"name":"IActiveScriptStats","features":[544]},{"name":"IActiveScriptStringCompare","features":[544]},{"name":"IActiveScriptTraceInfo","features":[544]},{"name":"IActiveScriptWinRTErrorDebug","features":[544]},{"name":"IApplicationDebugger","features":[544]},{"name":"IApplicationDebuggerUI","features":[544]},{"name":"IBindEventHandler","features":[544]},{"name":"IDebugApplication11032","features":[544]},{"name":"IDebugApplication11064","features":[544]},{"name":"IDebugApplication32","features":[544]},{"name":"IDebugApplication64","features":[544]},{"name":"IDebugApplicationNode","features":[544]},{"name":"IDebugApplicationNode100","features":[544]},{"name":"IDebugApplicationNodeEvents","features":[544]},{"name":"IDebugApplicationThread","features":[544]},{"name":"IDebugApplicationThread11032","features":[544]},{"name":"IDebugApplicationThread11064","features":[544]},{"name":"IDebugApplicationThread64","features":[544]},{"name":"IDebugApplicationThreadEvents110","features":[544]},{"name":"IDebugAsyncOperation","features":[544]},{"name":"IDebugAsyncOperationCallBack","features":[544]},{"name":"IDebugCodeContext","features":[544]},{"name":"IDebugCookie","features":[544]},{"name":"IDebugDocument","features":[544]},{"name":"IDebugDocumentContext","features":[544]},{"name":"IDebugDocumentHelper32","features":[544]},{"name":"IDebugDocumentHelper64","features":[544]},{"name":"IDebugDocumentHost","features":[544]},{"name":"IDebugDocumentInfo","features":[544]},{"name":"IDebugDocumentProvider","features":[544]},{"name":"IDebugDocumentText","features":[544]},{"name":"IDebugDocumentTextAuthor","features":[544]},{"name":"IDebugDocumentTextEvents","features":[544]},{"name":"IDebugDocumentTextExternalAuthor","features":[544]},{"name":"IDebugExpression","features":[544]},{"name":"IDebugExpressionCallBack","features":[544]},{"name":"IDebugExpressionContext","features":[544]},{"name":"IDebugFormatter","features":[544]},{"name":"IDebugHelper","features":[544]},{"name":"IDebugSessionProvider","features":[544]},{"name":"IDebugStackFrame","features":[544]},{"name":"IDebugStackFrame110","features":[544]},{"name":"IDebugStackFrameSniffer","features":[544]},{"name":"IDebugStackFrameSnifferEx32","features":[544]},{"name":"IDebugStackFrameSnifferEx64","features":[544]},{"name":"IDebugSyncOperation","features":[544]},{"name":"IDebugThreadCall32","features":[544]},{"name":"IDebugThreadCall64","features":[544]},{"name":"IEnumDebugApplicationNodes","features":[544]},{"name":"IEnumDebugCodeContexts","features":[544]},{"name":"IEnumDebugExpressionContexts","features":[544]},{"name":"IEnumDebugStackFrames","features":[544]},{"name":"IEnumDebugStackFrames64","features":[544]},{"name":"IEnumJsStackFrames","features":[544]},{"name":"IEnumRemoteDebugApplicationThreads","features":[544]},{"name":"IEnumRemoteDebugApplications","features":[544]},{"name":"IJsDebug","features":[544]},{"name":"IJsDebugBreakPoint","features":[544]},{"name":"IJsDebugDataTarget","features":[544]},{"name":"IJsDebugFrame","features":[544]},{"name":"IJsDebugProcess","features":[544]},{"name":"IJsDebugProperty","features":[544]},{"name":"IJsDebugStackWalker","features":[544]},{"name":"IJsEnumDebugProperty","features":[544]},{"name":"IMachineDebugManager","features":[544]},{"name":"IMachineDebugManagerCookie","features":[544]},{"name":"IMachineDebugManagerEvents","features":[544]},{"name":"IProcessDebugManager32","features":[544]},{"name":"IProcessDebugManager64","features":[544]},{"name":"IProvideExpressionContexts","features":[544]},{"name":"IRemoteDebugApplication","features":[544]},{"name":"IRemoteDebugApplication110","features":[544]},{"name":"IRemoteDebugApplicationEvents","features":[544]},{"name":"IRemoteDebugApplicationThread","features":[544]},{"name":"IRemoteDebugCriticalErrorEvent110","features":[544]},{"name":"IRemoteDebugInfoEvent110","features":[544]},{"name":"IScriptEntry","features":[544]},{"name":"IScriptInvocationContext","features":[544]},{"name":"IScriptNode","features":[544]},{"name":"IScriptScriptlet","features":[544]},{"name":"ISimpleConnectionPoint","features":[544]},{"name":"ITridentEventSink","features":[544]},{"name":"IWebAppDiagnosticsObjectInitialization","features":[544]},{"name":"IWebAppDiagnosticsSetup","features":[544]},{"name":"JS_NATIVE_FRAME","features":[544]},{"name":"JS_PROPERTY_ATTRIBUTES","features":[544]},{"name":"JS_PROPERTY_ATTRIBUTE_NONE","features":[544]},{"name":"JS_PROPERTY_FAKE","features":[544]},{"name":"JS_PROPERTY_FRAME_INCATCHBLOCK","features":[544]},{"name":"JS_PROPERTY_FRAME_INFINALLYBLOCK","features":[544]},{"name":"JS_PROPERTY_FRAME_INTRYBLOCK","features":[544]},{"name":"JS_PROPERTY_HAS_CHILDREN","features":[544]},{"name":"JS_PROPERTY_MEMBERS","features":[544]},{"name":"JS_PROPERTY_MEMBERS_ALL","features":[544]},{"name":"JS_PROPERTY_MEMBERS_ARGUMENTS","features":[544]},{"name":"JS_PROPERTY_METHOD","features":[544]},{"name":"JS_PROPERTY_NATIVE_WINRT_POINTER","features":[544]},{"name":"JS_PROPERTY_READONLY","features":[544]},{"name":"JsDebugPropertyInfo","features":[544]},{"name":"JsDebugReadMemoryFlags","features":[544]},{"name":"MachineDebugManager_DEBUG","features":[544]},{"name":"MachineDebugManager_RETAIL","features":[544]},{"name":"OID_JSSIP","features":[544]},{"name":"OID_VBSSIP","features":[544]},{"name":"OID_WSFSIP","features":[544]},{"name":"PROFILER_EVENT_MASK","features":[544]},{"name":"PROFILER_EVENT_MASK_TRACE_ALL","features":[544]},{"name":"PROFILER_EVENT_MASK_TRACE_ALL_WITH_DOM","features":[544]},{"name":"PROFILER_EVENT_MASK_TRACE_DOM_FUNCTION_CALL","features":[544]},{"name":"PROFILER_EVENT_MASK_TRACE_NATIVE_FUNCTION_CALL","features":[544]},{"name":"PROFILER_EVENT_MASK_TRACE_SCRIPT_FUNCTION_CALL","features":[544]},{"name":"PROFILER_HEAP_ENUM_FLAGS","features":[544]},{"name":"PROFILER_HEAP_ENUM_FLAGS_NONE","features":[544]},{"name":"PROFILER_HEAP_ENUM_FLAGS_RELATIONSHIP_SUBSTRINGS","features":[544]},{"name":"PROFILER_HEAP_ENUM_FLAGS_STORE_RELATIONSHIP_FLAGS","features":[544]},{"name":"PROFILER_HEAP_ENUM_FLAGS_SUBSTRINGS","features":[544]},{"name":"PROFILER_HEAP_OBJECT","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_EXTERNAL","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_EXTERNAL_DISPATCH","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_EXTERNAL_UNKNOWN","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_IS_ROOT","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_NEW_OBJECT","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_NEW_STATE_UNAVAILABLE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_SITE_CLOSED","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_SIZE_APPROXIMATE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_SIZE_UNAVAILABLE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_DELEGATE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_INSTANCE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_NAMESPACE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_FLAGS_WINRT_RUNTIMECLASS","features":[544]},{"name":"PROFILER_HEAP_OBJECT_NAME_ID_UNAVAILABLE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_ELEMENT_ATTRIBUTES_SIZE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_ELEMENT_TEXT_CHILDREN_SIZE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_FUNCTION_NAME","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_INDEX_PROPERTIES","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_INTERNAL_PROPERTY","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_MAP_COLLECTION_LIST","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_MAX_VALUE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_NAME_PROPERTIES","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_PROTOTYPE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_RELATIONSHIPS","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_SCOPE_LIST","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_SET_COLLECTION_LIST","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_TYPE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_WEAKMAP_COLLECTION_LIST","features":[544]},{"name":"PROFILER_HEAP_OBJECT_OPTIONAL_INFO_WINRTEVENTS","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_CONST_VARIABLE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_IS_GET_ACCESSOR","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_IS_SET_ACCESSOR","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_LET_VARIABLE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_FLAGS_NONE","features":[544]},{"name":"PROFILER_HEAP_OBJECT_RELATIONSHIP_LIST","features":[544]},{"name":"PROFILER_HEAP_OBJECT_SCOPE_LIST","features":[544]},{"name":"PROFILER_HEAP_SUMMARY","features":[544]},{"name":"PROFILER_HEAP_SUMMARY_VERSION","features":[544]},{"name":"PROFILER_HEAP_SUMMARY_VERSION_1","features":[544]},{"name":"PROFILER_PROPERTY_TYPE_BSTR","features":[544]},{"name":"PROFILER_PROPERTY_TYPE_EXTERNAL_OBJECT","features":[544]},{"name":"PROFILER_PROPERTY_TYPE_HEAP_OBJECT","features":[544]},{"name":"PROFILER_PROPERTY_TYPE_NUMBER","features":[544]},{"name":"PROFILER_PROPERTY_TYPE_STRING","features":[544]},{"name":"PROFILER_PROPERTY_TYPE_SUBSTRING","features":[544]},{"name":"PROFILER_PROPERTY_TYPE_SUBSTRING_INFO","features":[544]},{"name":"PROFILER_RELATIONSHIP_INFO","features":[544]},{"name":"PROFILER_SCRIPT_TYPE","features":[544]},{"name":"PROFILER_SCRIPT_TYPE_DOM","features":[544]},{"name":"PROFILER_SCRIPT_TYPE_DYNAMIC","features":[544]},{"name":"PROFILER_SCRIPT_TYPE_NATIVE","features":[544]},{"name":"PROFILER_SCRIPT_TYPE_USER","features":[544]},{"name":"ProcessDebugManager","features":[544]},{"name":"SCRIPTGCTYPE","features":[544]},{"name":"SCRIPTGCTYPE_EXHAUSTIVE","features":[544]},{"name":"SCRIPTGCTYPE_NORMAL","features":[544]},{"name":"SCRIPTINFO_ITYPEINFO","features":[544]},{"name":"SCRIPTINFO_IUNKNOWN","features":[544]},{"name":"SCRIPTINTERRUPT_DEBUG","features":[544]},{"name":"SCRIPTINTERRUPT_RAISEEXCEPTION","features":[544]},{"name":"SCRIPTITEM_CODEONLY","features":[544]},{"name":"SCRIPTITEM_GLOBALMEMBERS","features":[544]},{"name":"SCRIPTITEM_ISPERSISTENT","features":[544]},{"name":"SCRIPTITEM_ISSOURCE","features":[544]},{"name":"SCRIPTITEM_ISVISIBLE","features":[544]},{"name":"SCRIPTITEM_NOCODE","features":[544]},{"name":"SCRIPTLANGUAGEVERSION","features":[544]},{"name":"SCRIPTLANGUAGEVERSION_5_7","features":[544]},{"name":"SCRIPTLANGUAGEVERSION_5_8","features":[544]},{"name":"SCRIPTLANGUAGEVERSION_DEFAULT","features":[544]},{"name":"SCRIPTLANGUAGEVERSION_MAX","features":[544]},{"name":"SCRIPTPROC_HOSTMANAGESSOURCE","features":[544]},{"name":"SCRIPTPROC_IMPLICIT_PARENTS","features":[544]},{"name":"SCRIPTPROC_IMPLICIT_THIS","features":[544]},{"name":"SCRIPTPROC_ISEXPRESSION","features":[544]},{"name":"SCRIPTPROC_ISXDOMAIN","features":[544]},{"name":"SCRIPTPROP_ABBREVIATE_GLOBALNAME_RESOLUTION","features":[544]},{"name":"SCRIPTPROP_BUILDNUMBER","features":[544]},{"name":"SCRIPTPROP_CATCHEXCEPTION","features":[544]},{"name":"SCRIPTPROP_CONVERSIONLCID","features":[544]},{"name":"SCRIPTPROP_DEBUGGER","features":[544]},{"name":"SCRIPTPROP_DELAYEDEVENTSINKING","features":[544]},{"name":"SCRIPTPROP_GCCONTROLSOFTCLOSE","features":[544]},{"name":"SCRIPTPROP_HACK_FIBERSUPPORT","features":[544]},{"name":"SCRIPTPROP_HACK_TRIDENTEVENTSINK","features":[544]},{"name":"SCRIPTPROP_HOSTKEEPALIVE","features":[544]},{"name":"SCRIPTPROP_HOSTSTACKREQUIRED","features":[544]},{"name":"SCRIPTPROP_INTEGERMODE","features":[544]},{"name":"SCRIPTPROP_INVOKEVERSIONING","features":[544]},{"name":"SCRIPTPROP_JITDEBUG","features":[544]},{"name":"SCRIPTPROP_MAJORVERSION","features":[544]},{"name":"SCRIPTPROP_MINORVERSION","features":[544]},{"name":"SCRIPTPROP_NAME","features":[544]},{"name":"SCRIPTPROP_SCRIPTSAREFULLYTRUSTED","features":[544]},{"name":"SCRIPTPROP_STRINGCOMPAREINSTANCE","features":[544]},{"name":"SCRIPTSTATE","features":[544]},{"name":"SCRIPTSTATE_CLOSED","features":[544]},{"name":"SCRIPTSTATE_CONNECTED","features":[544]},{"name":"SCRIPTSTATE_DISCONNECTED","features":[544]},{"name":"SCRIPTSTATE_INITIALIZED","features":[544]},{"name":"SCRIPTSTATE_STARTED","features":[544]},{"name":"SCRIPTSTATE_UNINITIALIZED","features":[544]},{"name":"SCRIPTSTAT_INSTRUCTION_COUNT","features":[544]},{"name":"SCRIPTSTAT_INTSTRUCTION_TIME","features":[544]},{"name":"SCRIPTSTAT_STATEMENT_COUNT","features":[544]},{"name":"SCRIPTSTAT_TOTAL_TIME","features":[544]},{"name":"SCRIPTTEXT_DELAYEXECUTION","features":[544]},{"name":"SCRIPTTEXT_HOSTMANAGESSOURCE","features":[544]},{"name":"SCRIPTTEXT_ISEXPRESSION","features":[544]},{"name":"SCRIPTTEXT_ISNONUSERCODE","features":[544]},{"name":"SCRIPTTEXT_ISPERSISTENT","features":[544]},{"name":"SCRIPTTEXT_ISVISIBLE","features":[544]},{"name":"SCRIPTTEXT_ISXDOMAIN","features":[544]},{"name":"SCRIPTTHREADSTATE","features":[544]},{"name":"SCRIPTTHREADSTATE_NOTINSCRIPT","features":[544]},{"name":"SCRIPTTHREADSTATE_RUNNING","features":[544]},{"name":"SCRIPTTRACEINFO","features":[544]},{"name":"SCRIPTTRACEINFO_COMCALLEND","features":[544]},{"name":"SCRIPTTRACEINFO_COMCALLSTART","features":[544]},{"name":"SCRIPTTRACEINFO_CREATEOBJEND","features":[544]},{"name":"SCRIPTTRACEINFO_CREATEOBJSTART","features":[544]},{"name":"SCRIPTTRACEINFO_GETOBJEND","features":[544]},{"name":"SCRIPTTRACEINFO_GETOBJSTART","features":[544]},{"name":"SCRIPTTRACEINFO_SCRIPTEND","features":[544]},{"name":"SCRIPTTRACEINFO_SCRIPTSTART","features":[544]},{"name":"SCRIPTTYPELIB_ISCONTROL","features":[544]},{"name":"SCRIPTTYPELIB_ISPERSISTENT","features":[544]},{"name":"SCRIPTUICHANDLING","features":[544]},{"name":"SCRIPTUICHANDLING_ALLOW","features":[544]},{"name":"SCRIPTUICHANDLING_NOUIDEFAULT","features":[544]},{"name":"SCRIPTUICHANDLING_NOUIERROR","features":[544]},{"name":"SCRIPTUICITEM","features":[544]},{"name":"SCRIPTUICITEM_INPUTBOX","features":[544]},{"name":"SCRIPTUICITEM_MSGBOX","features":[544]},{"name":"SCRIPT_CMPL_COMMIT","features":[544]},{"name":"SCRIPT_CMPL_ENUMLIST","features":[544]},{"name":"SCRIPT_CMPL_ENUM_TRIGGER","features":[544]},{"name":"SCRIPT_CMPL_GLOBALLIST","features":[544]},{"name":"SCRIPT_CMPL_MEMBERLIST","features":[544]},{"name":"SCRIPT_CMPL_MEMBER_TRIGGER","features":[544]},{"name":"SCRIPT_CMPL_NOLIST","features":[544]},{"name":"SCRIPT_CMPL_PARAMTIP","features":[544]},{"name":"SCRIPT_CMPL_PARAM_TRIGGER","features":[544]},{"name":"SCRIPT_DEBUGGER_OPTIONS","features":[544]},{"name":"SCRIPT_ENCODE_DEFAULT_LANGUAGE","features":[544]},{"name":"SCRIPT_ENCODE_NO_ASP_LANGUAGE","features":[544]},{"name":"SCRIPT_ENCODE_SECTION","features":[544]},{"name":"SCRIPT_ERROR_DEBUG_EXCEPTION_THROWN_KIND","features":[544]},{"name":"SCRIPT_E_PROPAGATE","features":[544]},{"name":"SCRIPT_E_RECORDED","features":[544]},{"name":"SCRIPT_E_REPORTED","features":[544]},{"name":"SCRIPT_INVOCATION_CONTEXT_TYPE","features":[544]},{"name":"SDO_ENABLE_FIRST_CHANCE_EXCEPTIONS","features":[544]},{"name":"SDO_ENABLE_LIBRARY_STACK_FRAME","features":[544]},{"name":"SDO_ENABLE_NONUSER_CODE_SUPPORT","features":[544]},{"name":"SDO_ENABLE_WEB_WORKER_SUPPORT","features":[544]},{"name":"SDO_NONE","features":[544]},{"name":"SICT_Event","features":[544]},{"name":"SICT_MutationObserverCheckpoint","features":[544]},{"name":"SICT_RequestAnimationFrame","features":[544]},{"name":"SICT_SetImmediate","features":[544]},{"name":"SICT_SetInterval","features":[544]},{"name":"SICT_SetTimeout","features":[544]},{"name":"SICT_ToString","features":[544]},{"name":"SICT_WWAExecAtPriority","features":[544]},{"name":"SICT_WWAExecUnsafeLocalFunction","features":[544]},{"name":"SOURCETEXT_ATTR_COMMENT","features":[544]},{"name":"SOURCETEXT_ATTR_FUNCTION_START","features":[544]},{"name":"SOURCETEXT_ATTR_HUMANTEXT","features":[544]},{"name":"SOURCETEXT_ATTR_IDENTIFIER","features":[544]},{"name":"SOURCETEXT_ATTR_KEYWORD","features":[544]},{"name":"SOURCETEXT_ATTR_MEMBERLOOKUP","features":[544]},{"name":"SOURCETEXT_ATTR_NONSOURCE","features":[544]},{"name":"SOURCETEXT_ATTR_NUMBER","features":[544]},{"name":"SOURCETEXT_ATTR_OPERATOR","features":[544]},{"name":"SOURCETEXT_ATTR_STRING","features":[544]},{"name":"SOURCETEXT_ATTR_THIS","features":[544]},{"name":"TEXT_DOCUMENT_ARRAY","features":[544]},{"name":"TEXT_DOC_ATTR_READONLY","features":[544]},{"name":"TEXT_DOC_ATTR_TYPE_PRIMARY","features":[544]},{"name":"TEXT_DOC_ATTR_TYPE_SCRIPT","features":[544]},{"name":"TEXT_DOC_ATTR_TYPE_WORKER","features":[544]},{"name":"THREAD_BLOCKED","features":[544]},{"name":"THREAD_OUT_OF_CONTEXT","features":[544]},{"name":"THREAD_STATE_RUNNING","features":[544]},{"name":"THREAD_STATE_SUSPENDED","features":[544]},{"name":"fasaCaseSensitive","features":[544]},{"name":"fasaPreferInternalHandler","features":[544]},{"name":"fasaSupportInternalHandler","features":[544]}],"556":[{"name":"ADDRESS_TYPE_INDEX_NOT_FOUND","features":[545]},{"name":"Ambiguous","features":[545]},{"name":"ArrayDimension","features":[545]},{"name":"BUSDATA","features":[545]},{"name":"CANNOT_ALLOCATE_MEMORY","features":[545]},{"name":"CKCL_DATA","features":[545]},{"name":"CKCL_LISTHEAD","features":[305,545]},{"name":"CLSID_DebugFailureAnalysisBasic","features":[545]},{"name":"CLSID_DebugFailureAnalysisKernel","features":[545]},{"name":"CLSID_DebugFailureAnalysisTarget","features":[545]},{"name":"CLSID_DebugFailureAnalysisUser","features":[545]},{"name":"CLSID_DebugFailureAnalysisWinCE","features":[545]},{"name":"CLSID_DebugFailureAnalysisXBox360","features":[545]},{"name":"CPU_INFO","features":[545]},{"name":"CPU_INFO_v1","features":[545]},{"name":"CPU_INFO_v2","features":[545]},{"name":"CROSS_PLATFORM_MAXIMUM_PROCESSORS","features":[545]},{"name":"CURRENT_KD_SECONDARY_VERSION","features":[545]},{"name":"CallingConventionCDecl","features":[545]},{"name":"CallingConventionFastCall","features":[545]},{"name":"CallingConventionKind","features":[545]},{"name":"CallingConventionStdCall","features":[545]},{"name":"CallingConventionSysCall","features":[545]},{"name":"CallingConventionThisCall","features":[545]},{"name":"CallingConventionUnknown","features":[545]},{"name":"CreateDataModelManager","features":[545]},{"name":"DBGKD_DEBUG_DATA_HEADER32","features":[545,311]},{"name":"DBGKD_DEBUG_DATA_HEADER64","features":[545,311]},{"name":"DBGKD_GET_VERSION32","features":[545]},{"name":"DBGKD_GET_VERSION64","features":[545]},{"name":"DBGKD_MAJOR_BIG","features":[545]},{"name":"DBGKD_MAJOR_CE","features":[545]},{"name":"DBGKD_MAJOR_COUNT","features":[545]},{"name":"DBGKD_MAJOR_EFI","features":[545]},{"name":"DBGKD_MAJOR_EXDI","features":[545]},{"name":"DBGKD_MAJOR_HYPERVISOR","features":[545]},{"name":"DBGKD_MAJOR_MIDORI","features":[545]},{"name":"DBGKD_MAJOR_NT","features":[545]},{"name":"DBGKD_MAJOR_NTBD","features":[545]},{"name":"DBGKD_MAJOR_SINGULARITY","features":[545]},{"name":"DBGKD_MAJOR_TNT","features":[545]},{"name":"DBGKD_MAJOR_TYPES","features":[545]},{"name":"DBGKD_MAJOR_XBOX","features":[545]},{"name":"DBGKD_SIMULATION_EXDI","features":[545]},{"name":"DBGKD_SIMULATION_NONE","features":[545]},{"name":"DBGKD_VERS_FLAG_DATA","features":[545]},{"name":"DBGKD_VERS_FLAG_HAL_IN_NTOS","features":[545]},{"name":"DBGKD_VERS_FLAG_HSS","features":[545]},{"name":"DBGKD_VERS_FLAG_MP","features":[545]},{"name":"DBGKD_VERS_FLAG_NOMM","features":[545]},{"name":"DBGKD_VERS_FLAG_PARTITIONS","features":[545]},{"name":"DBGKD_VERS_FLAG_PTR64","features":[545]},{"name":"DBG_DUMP_ADDRESS_AT_END","features":[545]},{"name":"DBG_DUMP_ADDRESS_OF_FIELD","features":[545]},{"name":"DBG_DUMP_ARRAY","features":[545]},{"name":"DBG_DUMP_BLOCK_RECURSE","features":[545]},{"name":"DBG_DUMP_CALL_FOR_EACH","features":[545]},{"name":"DBG_DUMP_COMPACT_OUT","features":[545]},{"name":"DBG_DUMP_COPY_TYPE_DATA","features":[545]},{"name":"DBG_DUMP_FIELD_ARRAY","features":[545]},{"name":"DBG_DUMP_FIELD_CALL_BEFORE_PRINT","features":[545]},{"name":"DBG_DUMP_FIELD_COPY_FIELD_DATA","features":[545]},{"name":"DBG_DUMP_FIELD_DEFAULT_STRING","features":[545]},{"name":"DBG_DUMP_FIELD_FULL_NAME","features":[545]},{"name":"DBG_DUMP_FIELD_GUID_STRING","features":[545]},{"name":"DBG_DUMP_FIELD_MULTI_STRING","features":[545]},{"name":"DBG_DUMP_FIELD_NO_CALLBACK_REQ","features":[545]},{"name":"DBG_DUMP_FIELD_NO_PRINT","features":[545]},{"name":"DBG_DUMP_FIELD_RECUR_ON_THIS","features":[545]},{"name":"DBG_DUMP_FIELD_RETURN_ADDRESS","features":[545]},{"name":"DBG_DUMP_FIELD_SIZE_IN_BITS","features":[545]},{"name":"DBG_DUMP_FIELD_UTF32_STRING","features":[545]},{"name":"DBG_DUMP_FIELD_WCHAR_STRING","features":[545]},{"name":"DBG_DUMP_FUNCTION_FORMAT","features":[545]},{"name":"DBG_DUMP_GET_SIZE_ONLY","features":[545]},{"name":"DBG_DUMP_LIST","features":[545]},{"name":"DBG_DUMP_MATCH_SIZE","features":[545]},{"name":"DBG_DUMP_NO_INDENT","features":[545]},{"name":"DBG_DUMP_NO_OFFSET","features":[545]},{"name":"DBG_DUMP_NO_PRINT","features":[545]},{"name":"DBG_DUMP_READ_PHYSICAL","features":[545]},{"name":"DBG_DUMP_VERBOSE","features":[545]},{"name":"DBG_FRAME_DEFAULT","features":[545]},{"name":"DBG_FRAME_IGNORE_INLINE","features":[545]},{"name":"DBG_RETURN_SUBTYPES","features":[545]},{"name":"DBG_RETURN_TYPE","features":[545]},{"name":"DBG_RETURN_TYPE_VALUES","features":[545]},{"name":"DBG_THREAD_ATTRIBUTES","features":[545]},{"name":"DEBUG_ADDSYNTHMOD_DEFAULT","features":[545]},{"name":"DEBUG_ADDSYNTHMOD_ZEROBASE","features":[545]},{"name":"DEBUG_ADDSYNTHSYM_DEFAULT","features":[545]},{"name":"DEBUG_ANALYSIS_PROCESSOR_INFO","features":[545]},{"name":"DEBUG_ANY_ID","features":[545]},{"name":"DEBUG_ASMOPT_DEFAULT","features":[545]},{"name":"DEBUG_ASMOPT_IGNORE_OUTPUT_WIDTH","features":[545]},{"name":"DEBUG_ASMOPT_NO_CODE_BYTES","features":[545]},{"name":"DEBUG_ASMOPT_SOURCE_LINE_NUMBER","features":[545]},{"name":"DEBUG_ASMOPT_VERBOSE","features":[545]},{"name":"DEBUG_ATTACH_DEFAULT","features":[545]},{"name":"DEBUG_ATTACH_EXDI_DRIVER","features":[545]},{"name":"DEBUG_ATTACH_EXISTING","features":[545]},{"name":"DEBUG_ATTACH_INSTALL_DRIVER","features":[545]},{"name":"DEBUG_ATTACH_INVASIVE_NO_INITIAL_BREAK","features":[545]},{"name":"DEBUG_ATTACH_INVASIVE_RESUME_PROCESS","features":[545]},{"name":"DEBUG_ATTACH_KERNEL_CONNECTION","features":[545]},{"name":"DEBUG_ATTACH_LOCAL_KERNEL","features":[545]},{"name":"DEBUG_ATTACH_NONINVASIVE","features":[545]},{"name":"DEBUG_ATTACH_NONINVASIVE_ALLOW_PARTIAL","features":[545]},{"name":"DEBUG_ATTACH_NONINVASIVE_NO_SUSPEND","features":[545]},{"name":"DEBUG_BREAKPOINT_ADDER_ONLY","features":[545]},{"name":"DEBUG_BREAKPOINT_CODE","features":[545]},{"name":"DEBUG_BREAKPOINT_DATA","features":[545]},{"name":"DEBUG_BREAKPOINT_DEFERRED","features":[545]},{"name":"DEBUG_BREAKPOINT_ENABLED","features":[545]},{"name":"DEBUG_BREAKPOINT_GO_ONLY","features":[545]},{"name":"DEBUG_BREAKPOINT_INLINE","features":[545]},{"name":"DEBUG_BREAKPOINT_ONE_SHOT","features":[545]},{"name":"DEBUG_BREAKPOINT_PARAMETERS","features":[545]},{"name":"DEBUG_BREAKPOINT_TIME","features":[545]},{"name":"DEBUG_BREAK_EXECUTE","features":[545]},{"name":"DEBUG_BREAK_IO","features":[545]},{"name":"DEBUG_BREAK_READ","features":[545]},{"name":"DEBUG_BREAK_WRITE","features":[545]},{"name":"DEBUG_CACHED_SYMBOL_INFO","features":[545]},{"name":"DEBUG_CDS_ALL","features":[545]},{"name":"DEBUG_CDS_DATA","features":[545]},{"name":"DEBUG_CDS_REFRESH","features":[545]},{"name":"DEBUG_CDS_REFRESH_ADDBREAKPOINT","features":[545]},{"name":"DEBUG_CDS_REFRESH_EVALUATE","features":[545]},{"name":"DEBUG_CDS_REFRESH_EXECUTE","features":[545]},{"name":"DEBUG_CDS_REFRESH_EXECUTECOMMANDFILE","features":[545]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP","features":[545]},{"name":"DEBUG_CDS_REFRESH_INLINESTEP_PSEUDO","features":[545]},{"name":"DEBUG_CDS_REFRESH_REMOVEBREAKPOINT","features":[545]},{"name":"DEBUG_CDS_REFRESH_SETSCOPE","features":[545]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFRAMEBYINDEX","features":[545]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMJITDEBUGINFO","features":[545]},{"name":"DEBUG_CDS_REFRESH_SETSCOPEFROMSTOREDEVENT","features":[545]},{"name":"DEBUG_CDS_REFRESH_SETVALUE","features":[545]},{"name":"DEBUG_CDS_REFRESH_SETVALUE2","features":[545]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL","features":[545]},{"name":"DEBUG_CDS_REFRESH_WRITEPHYSICAL2","features":[545]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUAL","features":[545]},{"name":"DEBUG_CDS_REFRESH_WRITEVIRTUALUNCACHED","features":[545]},{"name":"DEBUG_CDS_REGISTERS","features":[545]},{"name":"DEBUG_CES_ALL","features":[545]},{"name":"DEBUG_CES_ASSEMBLY_OPTIONS","features":[545]},{"name":"DEBUG_CES_BREAKPOINTS","features":[545]},{"name":"DEBUG_CES_CODE_LEVEL","features":[545]},{"name":"DEBUG_CES_CURRENT_THREAD","features":[545]},{"name":"DEBUG_CES_EFFECTIVE_PROCESSOR","features":[545]},{"name":"DEBUG_CES_ENGINE_OPTIONS","features":[545]},{"name":"DEBUG_CES_EVENT_FILTERS","features":[545]},{"name":"DEBUG_CES_EXECUTION_STATUS","features":[545]},{"name":"DEBUG_CES_EXPRESSION_SYNTAX","features":[545]},{"name":"DEBUG_CES_EXTENSIONS","features":[545]},{"name":"DEBUG_CES_LOG_FILE","features":[545]},{"name":"DEBUG_CES_PROCESS_OPTIONS","features":[545]},{"name":"DEBUG_CES_RADIX","features":[545]},{"name":"DEBUG_CES_SYSTEMS","features":[545]},{"name":"DEBUG_CES_TEXT_REPLACEMENTS","features":[545]},{"name":"DEBUG_CLASS_IMAGE_FILE","features":[545]},{"name":"DEBUG_CLASS_KERNEL","features":[545]},{"name":"DEBUG_CLASS_UNINITIALIZED","features":[545]},{"name":"DEBUG_CLASS_USER_WINDOWS","features":[545]},{"name":"DEBUG_CLIENT_CDB","features":[545]},{"name":"DEBUG_CLIENT_CONTEXT","features":[545]},{"name":"DEBUG_CLIENT_KD","features":[545]},{"name":"DEBUG_CLIENT_NTKD","features":[545]},{"name":"DEBUG_CLIENT_NTSD","features":[545]},{"name":"DEBUG_CLIENT_UNKNOWN","features":[545]},{"name":"DEBUG_CLIENT_VSINT","features":[545]},{"name":"DEBUG_CLIENT_WINDBG","features":[545]},{"name":"DEBUG_CLIENT_WINIDE","features":[545]},{"name":"DEBUG_CMDEX_ADD_EVENT_STRING","features":[545]},{"name":"DEBUG_CMDEX_INVALID","features":[545]},{"name":"DEBUG_CMDEX_RESET_EVENT_STRINGS","features":[545]},{"name":"DEBUG_COMMAND_EXCEPTION_ID","features":[545]},{"name":"DEBUG_CONNECT_SESSION_DEFAULT","features":[545]},{"name":"DEBUG_CONNECT_SESSION_NO_ANNOUNCE","features":[545]},{"name":"DEBUG_CONNECT_SESSION_NO_VERSION","features":[545]},{"name":"DEBUG_CPU_MICROCODE_VERSION","features":[545]},{"name":"DEBUG_CPU_SPEED_INFO","features":[545]},{"name":"DEBUG_CREATE_PROCESS_OPTIONS","features":[545]},{"name":"DEBUG_CSS_ALL","features":[545]},{"name":"DEBUG_CSS_COLLAPSE_CHILDREN","features":[545]},{"name":"DEBUG_CSS_LOADS","features":[545]},{"name":"DEBUG_CSS_PATHS","features":[545]},{"name":"DEBUG_CSS_SCOPE","features":[545]},{"name":"DEBUG_CSS_SYMBOL_OPTIONS","features":[545]},{"name":"DEBUG_CSS_TYPE_OPTIONS","features":[545]},{"name":"DEBUG_CSS_UNLOADS","features":[545]},{"name":"DEBUG_CURRENT_DEFAULT","features":[545]},{"name":"DEBUG_CURRENT_DISASM","features":[545]},{"name":"DEBUG_CURRENT_REGISTERS","features":[545]},{"name":"DEBUG_CURRENT_SOURCE_LINE","features":[545]},{"name":"DEBUG_CURRENT_SYMBOL","features":[545]},{"name":"DEBUG_DATA_BASE_TRANSLATION_VIRTUAL_OFFSET","features":[545]},{"name":"DEBUG_DATA_BreakpointWithStatusAddr","features":[545]},{"name":"DEBUG_DATA_CmNtCSDVersionAddr","features":[545]},{"name":"DEBUG_DATA_DumpAttributes","features":[545]},{"name":"DEBUG_DATA_DumpFormatVersion","features":[545]},{"name":"DEBUG_DATA_DumpMmStorage","features":[545]},{"name":"DEBUG_DATA_DumpPowerState","features":[545]},{"name":"DEBUG_DATA_DumpWriterStatus","features":[545]},{"name":"DEBUG_DATA_DumpWriterVersion","features":[545]},{"name":"DEBUG_DATA_EtwpDebuggerData","features":[545]},{"name":"DEBUG_DATA_ExpNumberOfPagedPoolsAddr","features":[545]},{"name":"DEBUG_DATA_ExpPagedPoolDescriptorAddr","features":[545]},{"name":"DEBUG_DATA_ExpSystemResourcesListAddr","features":[545]},{"name":"DEBUG_DATA_IopErrorLogListHeadAddr","features":[545]},{"name":"DEBUG_DATA_KPCR_OFFSET","features":[545]},{"name":"DEBUG_DATA_KPRCB_OFFSET","features":[545]},{"name":"DEBUG_DATA_KTHREAD_OFFSET","features":[545]},{"name":"DEBUG_DATA_KdPrintBufferSizeAddr","features":[545]},{"name":"DEBUG_DATA_KdPrintCircularBufferAddr","features":[545]},{"name":"DEBUG_DATA_KdPrintCircularBufferEndAddr","features":[545]},{"name":"DEBUG_DATA_KdPrintCircularBufferPtrAddr","features":[545]},{"name":"DEBUG_DATA_KdPrintRolloverCountAddr","features":[545]},{"name":"DEBUG_DATA_KdPrintWritePointerAddr","features":[545]},{"name":"DEBUG_DATA_KeBugCheckCallbackListHeadAddr","features":[545]},{"name":"DEBUG_DATA_KeTimeIncrementAddr","features":[545]},{"name":"DEBUG_DATA_KeUserCallbackDispatcherAddr","features":[545]},{"name":"DEBUG_DATA_KernBase","features":[545]},{"name":"DEBUG_DATA_KernelVerifierAddr","features":[545]},{"name":"DEBUG_DATA_KiBugcheckDataAddr","features":[545]},{"name":"DEBUG_DATA_KiCallUserModeAddr","features":[545]},{"name":"DEBUG_DATA_KiNormalSystemCall","features":[545]},{"name":"DEBUG_DATA_KiProcessorBlockAddr","features":[545]},{"name":"DEBUG_DATA_MmAllocatedNonPagedPoolAddr","features":[545]},{"name":"DEBUG_DATA_MmAvailablePagesAddr","features":[545]},{"name":"DEBUG_DATA_MmBadPagesDetected","features":[545]},{"name":"DEBUG_DATA_MmDriverCommitAddr","features":[545]},{"name":"DEBUG_DATA_MmExtendedCommitAddr","features":[545]},{"name":"DEBUG_DATA_MmFreePageListHeadAddr","features":[545]},{"name":"DEBUG_DATA_MmHighestPhysicalPageAddr","features":[545]},{"name":"DEBUG_DATA_MmHighestUserAddressAddr","features":[545]},{"name":"DEBUG_DATA_MmLastUnloadedDriverAddr","features":[545]},{"name":"DEBUG_DATA_MmLoadedUserImageListAddr","features":[545]},{"name":"DEBUG_DATA_MmLowestPhysicalPageAddr","features":[545]},{"name":"DEBUG_DATA_MmMaximumNonPagedPoolInBytesAddr","features":[545]},{"name":"DEBUG_DATA_MmModifiedNoWritePageListHeadAddr","features":[545]},{"name":"DEBUG_DATA_MmModifiedPageListHeadAddr","features":[545]},{"name":"DEBUG_DATA_MmNonPagedPoolEndAddr","features":[545]},{"name":"DEBUG_DATA_MmNonPagedPoolStartAddr","features":[545]},{"name":"DEBUG_DATA_MmNonPagedSystemStartAddr","features":[545]},{"name":"DEBUG_DATA_MmNumberOfPagingFilesAddr","features":[545]},{"name":"DEBUG_DATA_MmNumberOfPhysicalPagesAddr","features":[545]},{"name":"DEBUG_DATA_MmPageSize","features":[545]},{"name":"DEBUG_DATA_MmPagedPoolCommitAddr","features":[545]},{"name":"DEBUG_DATA_MmPagedPoolEndAddr","features":[545]},{"name":"DEBUG_DATA_MmPagedPoolInformationAddr","features":[545]},{"name":"DEBUG_DATA_MmPagedPoolStartAddr","features":[545]},{"name":"DEBUG_DATA_MmPeakCommitmentAddr","features":[545]},{"name":"DEBUG_DATA_MmPfnDatabaseAddr","features":[545]},{"name":"DEBUG_DATA_MmPhysicalMemoryBlockAddr","features":[545]},{"name":"DEBUG_DATA_MmProcessCommitAddr","features":[545]},{"name":"DEBUG_DATA_MmResidentAvailablePagesAddr","features":[545]},{"name":"DEBUG_DATA_MmSessionBase","features":[545]},{"name":"DEBUG_DATA_MmSessionSize","features":[545]},{"name":"DEBUG_DATA_MmSharedCommitAddr","features":[545]},{"name":"DEBUG_DATA_MmSizeOfPagedPoolInBytesAddr","features":[545]},{"name":"DEBUG_DATA_MmSpecialPoolTagAddr","features":[545]},{"name":"DEBUG_DATA_MmStandbyPageListHeadAddr","features":[545]},{"name":"DEBUG_DATA_MmSubsectionBaseAddr","features":[545]},{"name":"DEBUG_DATA_MmSystemCacheEndAddr","features":[545]},{"name":"DEBUG_DATA_MmSystemCacheStartAddr","features":[545]},{"name":"DEBUG_DATA_MmSystemCacheWsAddr","features":[545]},{"name":"DEBUG_DATA_MmSystemParentTablePage","features":[545]},{"name":"DEBUG_DATA_MmSystemPtesEndAddr","features":[545]},{"name":"DEBUG_DATA_MmSystemPtesStartAddr","features":[545]},{"name":"DEBUG_DATA_MmSystemRangeStartAddr","features":[545]},{"name":"DEBUG_DATA_MmTotalCommitLimitAddr","features":[545]},{"name":"DEBUG_DATA_MmTotalCommitLimitMaximumAddr","features":[545]},{"name":"DEBUG_DATA_MmTotalCommittedPagesAddr","features":[545]},{"name":"DEBUG_DATA_MmTriageActionTakenAddr","features":[545]},{"name":"DEBUG_DATA_MmUnloadedDriversAddr","features":[545]},{"name":"DEBUG_DATA_MmUserProbeAddressAddr","features":[545]},{"name":"DEBUG_DATA_MmVerifierDataAddr","features":[545]},{"name":"DEBUG_DATA_MmVirtualTranslationBase","features":[545]},{"name":"DEBUG_DATA_MmZeroedPageListHeadAddr","features":[545]},{"name":"DEBUG_DATA_NonPagedPoolDescriptorAddr","features":[545]},{"name":"DEBUG_DATA_NtBuildLabAddr","features":[545]},{"name":"DEBUG_DATA_ObpRootDirectoryObjectAddr","features":[545]},{"name":"DEBUG_DATA_ObpTypeObjectTypeAddr","features":[545]},{"name":"DEBUG_DATA_OffsetEprocessDirectoryTableBase","features":[545]},{"name":"DEBUG_DATA_OffsetEprocessParentCID","features":[545]},{"name":"DEBUG_DATA_OffsetEprocessPeb","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadApcProcess","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadBStore","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadBStoreLimit","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadInitialStack","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadKernelStack","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadNextProcessor","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadState","features":[545]},{"name":"DEBUG_DATA_OffsetKThreadTeb","features":[545]},{"name":"DEBUG_DATA_OffsetPrcbCpuType","features":[545]},{"name":"DEBUG_DATA_OffsetPrcbCurrentThread","features":[545]},{"name":"DEBUG_DATA_OffsetPrcbDpcRoutine","features":[545]},{"name":"DEBUG_DATA_OffsetPrcbMhz","features":[545]},{"name":"DEBUG_DATA_OffsetPrcbNumber","features":[545]},{"name":"DEBUG_DATA_OffsetPrcbProcessorState","features":[545]},{"name":"DEBUG_DATA_OffsetPrcbVendorString","features":[545]},{"name":"DEBUG_DATA_PROCESSOR_IDENTIFICATION","features":[545]},{"name":"DEBUG_DATA_PROCESSOR_SPEED","features":[545]},{"name":"DEBUG_DATA_PaeEnabled","features":[545]},{"name":"DEBUG_DATA_PagingLevels","features":[545]},{"name":"DEBUG_DATA_PoolTrackTableAddr","features":[545]},{"name":"DEBUG_DATA_ProductType","features":[545]},{"name":"DEBUG_DATA_PsActiveProcessHeadAddr","features":[545]},{"name":"DEBUG_DATA_PsLoadedModuleListAddr","features":[545]},{"name":"DEBUG_DATA_PspCidTableAddr","features":[545]},{"name":"DEBUG_DATA_PteBase","features":[545]},{"name":"DEBUG_DATA_SPACE_BUS_DATA","features":[545]},{"name":"DEBUG_DATA_SPACE_CONTROL","features":[545]},{"name":"DEBUG_DATA_SPACE_COUNT","features":[545]},{"name":"DEBUG_DATA_SPACE_DEBUGGER_DATA","features":[545]},{"name":"DEBUG_DATA_SPACE_IO","features":[545]},{"name":"DEBUG_DATA_SPACE_MSR","features":[545]},{"name":"DEBUG_DATA_SPACE_PHYSICAL","features":[545]},{"name":"DEBUG_DATA_SPACE_VIRTUAL","features":[545]},{"name":"DEBUG_DATA_SavedContextAddr","features":[545]},{"name":"DEBUG_DATA_SharedUserData","features":[545]},{"name":"DEBUG_DATA_SizeEProcess","features":[545]},{"name":"DEBUG_DATA_SizeEThread","features":[545]},{"name":"DEBUG_DATA_SizePrcb","features":[545]},{"name":"DEBUG_DATA_SuiteMask","features":[545]},{"name":"DEBUG_DECODE_ERROR","features":[305,545]},{"name":"DEBUG_DEVICE_OBJECT_INFO","features":[305,545]},{"name":"DEBUG_DISASM_EFFECTIVE_ADDRESS","features":[545]},{"name":"DEBUG_DISASM_MATCHING_SYMBOLS","features":[545]},{"name":"DEBUG_DISASM_SOURCE_FILE_NAME","features":[545]},{"name":"DEBUG_DISASM_SOURCE_LINE_NUMBER","features":[545]},{"name":"DEBUG_DRIVER_OBJECT_INFO","features":[545]},{"name":"DEBUG_DUMP_ACTIVE","features":[545]},{"name":"DEBUG_DUMP_DEFAULT","features":[545]},{"name":"DEBUG_DUMP_FILE_BASE","features":[545]},{"name":"DEBUG_DUMP_FILE_LOAD_FAILED_INDEX","features":[545]},{"name":"DEBUG_DUMP_FILE_ORIGINAL_CAB_INDEX","features":[545]},{"name":"DEBUG_DUMP_FILE_PAGE_FILE_DUMP","features":[545]},{"name":"DEBUG_DUMP_FULL","features":[545]},{"name":"DEBUG_DUMP_IMAGE_FILE","features":[545]},{"name":"DEBUG_DUMP_SMALL","features":[545]},{"name":"DEBUG_DUMP_TRACE_LOG","features":[545]},{"name":"DEBUG_DUMP_WINDOWS_CE","features":[545]},{"name":"DEBUG_ECREATE_PROCESS_DEFAULT","features":[545]},{"name":"DEBUG_ECREATE_PROCESS_INHERIT_HANDLES","features":[545]},{"name":"DEBUG_ECREATE_PROCESS_USE_IMPLICIT_COMMAND_LINE","features":[545]},{"name":"DEBUG_ECREATE_PROCESS_USE_VERIFIER_FLAGS","features":[545]},{"name":"DEBUG_EINDEX_FROM_CURRENT","features":[545]},{"name":"DEBUG_EINDEX_FROM_END","features":[545]},{"name":"DEBUG_EINDEX_FROM_START","features":[545]},{"name":"DEBUG_EINDEX_NAME","features":[545]},{"name":"DEBUG_END_ACTIVE_DETACH","features":[545]},{"name":"DEBUG_END_ACTIVE_TERMINATE","features":[545]},{"name":"DEBUG_END_DISCONNECT","features":[545]},{"name":"DEBUG_END_PASSIVE","features":[545]},{"name":"DEBUG_END_REENTRANT","features":[545]},{"name":"DEBUG_ENGOPT_ALL","features":[545]},{"name":"DEBUG_ENGOPT_ALLOW_NETWORK_PATHS","features":[545]},{"name":"DEBUG_ENGOPT_ALLOW_READ_ONLY_BREAKPOINTS","features":[545]},{"name":"DEBUG_ENGOPT_DEBUGGING_SENSITIVE_DATA","features":[545]},{"name":"DEBUG_ENGOPT_DISABLESQM","features":[545]},{"name":"DEBUG_ENGOPT_DISABLE_EXECUTION_COMMANDS","features":[545]},{"name":"DEBUG_ENGOPT_DISABLE_MANAGED_SUPPORT","features":[545]},{"name":"DEBUG_ENGOPT_DISABLE_MODULE_SYMBOL_LOAD","features":[545]},{"name":"DEBUG_ENGOPT_DISABLE_STEPLINES_OPTIONS","features":[545]},{"name":"DEBUG_ENGOPT_DISALLOW_IMAGE_FILE_MAPPING","features":[545]},{"name":"DEBUG_ENGOPT_DISALLOW_NETWORK_PATHS","features":[545]},{"name":"DEBUG_ENGOPT_DISALLOW_SHELL_COMMANDS","features":[545]},{"name":"DEBUG_ENGOPT_FAIL_INCOMPLETE_INFORMATION","features":[545]},{"name":"DEBUG_ENGOPT_FINAL_BREAK","features":[545]},{"name":"DEBUG_ENGOPT_IGNORE_DBGHELP_VERSION","features":[545]},{"name":"DEBUG_ENGOPT_IGNORE_EXTENSION_VERSIONS","features":[545]},{"name":"DEBUG_ENGOPT_IGNORE_LOADER_EXCEPTIONS","features":[545]},{"name":"DEBUG_ENGOPT_INITIAL_BREAK","features":[545]},{"name":"DEBUG_ENGOPT_INITIAL_MODULE_BREAK","features":[545]},{"name":"DEBUG_ENGOPT_KD_QUIET_MODE","features":[545]},{"name":"DEBUG_ENGOPT_NO_EXECUTE_REPEAT","features":[545]},{"name":"DEBUG_ENGOPT_PREFER_DML","features":[545]},{"name":"DEBUG_ENGOPT_PREFER_TRACE_FILES","features":[545]},{"name":"DEBUG_ENGOPT_RESOLVE_SHADOWED_VARIABLES","features":[545]},{"name":"DEBUG_ENGOPT_SYNCHRONIZE_BREAKPOINTS","features":[545]},{"name":"DEBUG_EVENT_BREAKPOINT","features":[545]},{"name":"DEBUG_EVENT_CHANGE_DEBUGGEE_STATE","features":[545]},{"name":"DEBUG_EVENT_CHANGE_ENGINE_STATE","features":[545]},{"name":"DEBUG_EVENT_CHANGE_SYMBOL_STATE","features":[545]},{"name":"DEBUG_EVENT_CONTEXT","features":[545]},{"name":"DEBUG_EVENT_CREATE_PROCESS","features":[545]},{"name":"DEBUG_EVENT_CREATE_THREAD","features":[545]},{"name":"DEBUG_EVENT_EXCEPTION","features":[545]},{"name":"DEBUG_EVENT_EXIT_PROCESS","features":[545]},{"name":"DEBUG_EVENT_EXIT_THREAD","features":[545]},{"name":"DEBUG_EVENT_LOAD_MODULE","features":[545]},{"name":"DEBUG_EVENT_SERVICE_EXCEPTION","features":[545]},{"name":"DEBUG_EVENT_SESSION_STATUS","features":[545]},{"name":"DEBUG_EVENT_SYSTEM_ERROR","features":[545]},{"name":"DEBUG_EVENT_UNLOAD_MODULE","features":[545]},{"name":"DEBUG_EXCEPTION_FILTER_PARAMETERS","features":[545]},{"name":"DEBUG_EXECUTE_DEFAULT","features":[545]},{"name":"DEBUG_EXECUTE_ECHO","features":[545]},{"name":"DEBUG_EXECUTE_EVENT","features":[545]},{"name":"DEBUG_EXECUTE_EXTENSION","features":[545]},{"name":"DEBUG_EXECUTE_HOTKEY","features":[545]},{"name":"DEBUG_EXECUTE_INTERNAL","features":[545]},{"name":"DEBUG_EXECUTE_MENU","features":[545]},{"name":"DEBUG_EXECUTE_NOT_LOGGED","features":[545]},{"name":"DEBUG_EXECUTE_NO_REPEAT","features":[545]},{"name":"DEBUG_EXECUTE_SCRIPT","features":[545]},{"name":"DEBUG_EXECUTE_TOOLBAR","features":[545]},{"name":"DEBUG_EXECUTE_USER_CLICKED","features":[545]},{"name":"DEBUG_EXECUTE_USER_TYPED","features":[545]},{"name":"DEBUG_EXEC_FLAGS_NONBLOCK","features":[545]},{"name":"DEBUG_EXPR_CPLUSPLUS","features":[545]},{"name":"DEBUG_EXPR_MASM","features":[545]},{"name":"DEBUG_EXTENSION_AT_ENGINE","features":[545]},{"name":"DEBUG_EXTINIT_HAS_COMMAND_HELP","features":[545]},{"name":"DEBUG_EXT_PVALUE_DEFAULT","features":[545]},{"name":"DEBUG_EXT_PVTYPE_IS_POINTER","features":[545]},{"name":"DEBUG_EXT_PVTYPE_IS_VALUE","features":[545]},{"name":"DEBUG_EXT_QVALUE_DEFAULT","features":[545]},{"name":"DEBUG_FAILURE_TYPE","features":[545]},{"name":"DEBUG_FA_ENTRY_ANSI_STRING","features":[545]},{"name":"DEBUG_FA_ENTRY_ANSI_STRINGs","features":[545]},{"name":"DEBUG_FA_ENTRY_ARRAY","features":[545]},{"name":"DEBUG_FA_ENTRY_EXTENSION_CMD","features":[545]},{"name":"DEBUG_FA_ENTRY_INSTRUCTION_OFFSET","features":[545]},{"name":"DEBUG_FA_ENTRY_NO_TYPE","features":[545]},{"name":"DEBUG_FA_ENTRY_POINTER","features":[545]},{"name":"DEBUG_FA_ENTRY_STRUCTURED_DATA","features":[545]},{"name":"DEBUG_FA_ENTRY_ULONG","features":[545]},{"name":"DEBUG_FA_ENTRY_ULONG64","features":[545]},{"name":"DEBUG_FA_ENTRY_UNICODE_STRING","features":[545]},{"name":"DEBUG_FILTER_BREAK","features":[545]},{"name":"DEBUG_FILTER_CREATE_PROCESS","features":[545]},{"name":"DEBUG_FILTER_CREATE_THREAD","features":[545]},{"name":"DEBUG_FILTER_DEBUGGEE_OUTPUT","features":[545]},{"name":"DEBUG_FILTER_EXIT_PROCESS","features":[545]},{"name":"DEBUG_FILTER_EXIT_THREAD","features":[545]},{"name":"DEBUG_FILTER_GO_HANDLED","features":[545]},{"name":"DEBUG_FILTER_GO_NOT_HANDLED","features":[545]},{"name":"DEBUG_FILTER_IGNORE","features":[545]},{"name":"DEBUG_FILTER_INITIAL_BREAKPOINT","features":[545]},{"name":"DEBUG_FILTER_INITIAL_MODULE_LOAD","features":[545]},{"name":"DEBUG_FILTER_LOAD_MODULE","features":[545]},{"name":"DEBUG_FILTER_OUTPUT","features":[545]},{"name":"DEBUG_FILTER_REMOVE","features":[545]},{"name":"DEBUG_FILTER_SECOND_CHANCE_BREAK","features":[545]},{"name":"DEBUG_FILTER_SYSTEM_ERROR","features":[545]},{"name":"DEBUG_FILTER_UNLOAD_MODULE","features":[545]},{"name":"DEBUG_FIND_SOURCE_BEST_MATCH","features":[545]},{"name":"DEBUG_FIND_SOURCE_DEFAULT","features":[545]},{"name":"DEBUG_FIND_SOURCE_FULL_PATH","features":[545]},{"name":"DEBUG_FIND_SOURCE_NO_SRCSRV","features":[545]},{"name":"DEBUG_FIND_SOURCE_TOKEN_LOOKUP","features":[545]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM","features":[545]},{"name":"DEBUG_FIND_SOURCE_WITH_CHECKSUM_STRICT","features":[545]},{"name":"DEBUG_FLR_ACPI","features":[545]},{"name":"DEBUG_FLR_ACPI_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_ACPI_EXTENSION","features":[545]},{"name":"DEBUG_FLR_ACPI_OBJECT","features":[545]},{"name":"DEBUG_FLR_ACPI_RESCONFLICT","features":[545]},{"name":"DEBUG_FLR_ADDITIONAL_DEBUGTEXT","features":[545]},{"name":"DEBUG_FLR_ADDITIONAL_XML","features":[545]},{"name":"DEBUG_FLR_ADD_PROCESS_IN_BUCKET","features":[545]},{"name":"DEBUG_FLR_ALUREON","features":[545]},{"name":"DEBUG_FLR_ANALYSIS_REPROCESS","features":[545]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_ELAPSED_TIME","features":[545]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_HOST","features":[545]},{"name":"DEBUG_FLR_ANALYSIS_SESSION_TIME","features":[545]},{"name":"DEBUG_FLR_ANALYSIS_VERSION","features":[545]},{"name":"DEBUG_FLR_ANALYZABLE_POOL_CORRUPTION","features":[545]},{"name":"DEBUG_FLR_APPKILL","features":[545]},{"name":"DEBUG_FLR_APPLICATION_VERIFIER_LOADED","features":[545]},{"name":"DEBUG_FLR_APPS_NOT_TERMINATED","features":[545]},{"name":"DEBUG_FLR_APPVERIFERFLAGS","features":[545]},{"name":"DEBUG_FLR_ARM_WRITE_AV_CAVEAT","features":[545]},{"name":"DEBUG_FLR_ASSERT_DATA","features":[545]},{"name":"DEBUG_FLR_ASSERT_FILE","features":[545]},{"name":"DEBUG_FLR_ASSERT_INSTRUCTION","features":[545]},{"name":"DEBUG_FLR_BADPAGES_DETECTED","features":[545]},{"name":"DEBUG_FLR_BAD_HANDLE","features":[545]},{"name":"DEBUG_FLR_BAD_MEMORY_REFERENCE","features":[545]},{"name":"DEBUG_FLR_BAD_OBJECT_REFERENCE","features":[545]},{"name":"DEBUG_FLR_BAD_STACK","features":[545]},{"name":"DEBUG_FLR_BLOCKED_THREAD0","features":[545]},{"name":"DEBUG_FLR_BLOCKED_THREAD1","features":[545]},{"name":"DEBUG_FLR_BLOCKED_THREAD2","features":[545]},{"name":"DEBUG_FLR_BLOCKING_PROCESSID","features":[545]},{"name":"DEBUG_FLR_BLOCKING_THREAD","features":[545]},{"name":"DEBUG_FLR_BOOST_FOLLOWUP_TO_SPECIFIC","features":[545]},{"name":"DEBUG_FLR_BOOTSTAT","features":[545]},{"name":"DEBUG_FLR_BOOTSTAT_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_CHECKSUM","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_FLAVOR_STR","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_FUNCTION_STR","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_FUNC_OFFSET","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_IMAGE_STR","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_MODULE_STR","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_MODVER_STR","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_OFFSET","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_PREFIX_STR","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_PRIVATE","features":[545]},{"name":"DEBUG_FLR_BUCKET_ID_TIMEDATESTAMP","features":[545]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER","features":[545]},{"name":"DEBUG_FLR_BUGCHECKING_DRIVER_IDTAG","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_CODE","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_DESC","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_P1","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_P2","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_P3","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_P4","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_SPECIFIER","features":[545]},{"name":"DEBUG_FLR_BUGCHECK_STR","features":[545]},{"name":"DEBUG_FLR_BUILDNAME_IN_BUCKET","features":[545]},{"name":"DEBUG_FLR_BUILDOSVER_STR_deprecated","features":[545]},{"name":"DEBUG_FLR_BUILD_OS_FULL_VERSION_STRING","features":[545]},{"name":"DEBUG_FLR_BUILD_VERSION_STRING","features":[545]},{"name":"DEBUG_FLR_CANCELLATION_NOT_SUPPORTED","features":[545]},{"name":"DEBUG_FLR_CHKIMG_EXTENSION","features":[545]},{"name":"DEBUG_FLR_CHPE_PROCESS","features":[545]},{"name":"DEBUG_FLR_CLIENT_DRIVER","features":[545]},{"name":"DEBUG_FLR_COLLECT_DATA_FOR_BUCKET","features":[545]},{"name":"DEBUG_FLR_COMPUTER_NAME","features":[545]},{"name":"DEBUG_FLR_CONTEXT","features":[545]},{"name":"DEBUG_FLR_CONTEXT_COMMAND","features":[545]},{"name":"DEBUG_FLR_CONTEXT_FLAGS","features":[545]},{"name":"DEBUG_FLR_CONTEXT_FOLLOWUP_INDEX","features":[545]},{"name":"DEBUG_FLR_CONTEXT_ID","features":[545]},{"name":"DEBUG_FLR_CONTEXT_METADATA","features":[545]},{"name":"DEBUG_FLR_CONTEXT_ORDER","features":[545]},{"name":"DEBUG_FLR_CONTEXT_RESTORE_COMMAND","features":[545]},{"name":"DEBUG_FLR_CONTEXT_SYSTEM","features":[545]},{"name":"DEBUG_FLR_CORRUPTING_POOL_ADDRESS","features":[545]},{"name":"DEBUG_FLR_CORRUPTING_POOL_TAG","features":[545]},{"name":"DEBUG_FLR_CORRUPT_MODULE_LIST","features":[545]},{"name":"DEBUG_FLR_CORRUPT_SERVICE_TABLE","features":[545]},{"name":"DEBUG_FLR_COVERAGE_BUILD","features":[545]},{"name":"DEBUG_FLR_CPU_COUNT","features":[545]},{"name":"DEBUG_FLR_CPU_FAMILY","features":[545]},{"name":"DEBUG_FLR_CPU_MICROCODE_VERSION","features":[545]},{"name":"DEBUG_FLR_CPU_MICROCODE_ZERO_INTEL","features":[545]},{"name":"DEBUG_FLR_CPU_MODEL","features":[545]},{"name":"DEBUG_FLR_CPU_OVERCLOCKED","features":[545]},{"name":"DEBUG_FLR_CPU_SPEED","features":[545]},{"name":"DEBUG_FLR_CPU_STEPPING","features":[545]},{"name":"DEBUG_FLR_CPU_VENDOR","features":[545]},{"name":"DEBUG_FLR_CRITICAL_PROCESS","features":[545]},{"name":"DEBUG_FLR_CRITICAL_PROCESS_REPORTGUID","features":[545]},{"name":"DEBUG_FLR_CRITICAL_SECTION","features":[545]},{"name":"DEBUG_FLR_CURRENT_IRQL","features":[545]},{"name":"DEBUG_FLR_CUSTOMER_CRASH_COUNT","features":[545]},{"name":"DEBUG_FLR_CUSTOMREPORTTAG","features":[545]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MAX","features":[545]},{"name":"DEBUG_FLR_CUSTOM_ANALYSIS_TAG_MIN","features":[545]},{"name":"DEBUG_FLR_CUSTOM_COMMAND","features":[545]},{"name":"DEBUG_FLR_CUSTOM_COMMAND_OUTPUT","features":[545]},{"name":"DEBUG_FLR_DEADLOCK_INPROC","features":[545]},{"name":"DEBUG_FLR_DEADLOCK_XPROC","features":[545]},{"name":"DEBUG_FLR_DEBUG_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_DEFAULT_BUCKET_ID","features":[545]},{"name":"DEBUG_FLR_DEFAULT_SOLUTION_ID","features":[545]},{"name":"DEBUG_FLR_DERIVED_WAIT_CHAIN","features":[545]},{"name":"DEBUG_FLR_DESKTOP_HEAP_MISSING","features":[545]},{"name":"DEBUG_FLR_DETOURED_IMAGE","features":[545]},{"name":"DEBUG_FLR_DEVICE_NODE","features":[545]},{"name":"DEBUG_FLR_DEVICE_OBJECT","features":[545]},{"name":"DEBUG_FLR_DISKIO_READ_FAILURE","features":[545]},{"name":"DEBUG_FLR_DISKIO_WRITE_FAILURE","features":[545]},{"name":"DEBUG_FLR_DISKSEC_ISSUEDESCSTRING_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_MFGID_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_MODEL_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_ORGID_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_DATASIZE_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_OFFSET_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_PRIVATE_TOTSIZE_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_DATASIZE_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_OFFSET_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_PUBLIC_TOTSIZE_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_REASON_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISKSEC_TOTALSIZE_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_DISK_HARDWARE_ERROR","features":[545]},{"name":"DEBUG_FLR_DPC_RUNTIME","features":[545]},{"name":"DEBUG_FLR_DPC_STACK_BASE","features":[545]},{"name":"DEBUG_FLR_DPC_TIMELIMIT","features":[545]},{"name":"DEBUG_FLR_DPC_TIMEOUT_TYPE","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWAREID","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_ID","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_DEVICE_NAME","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_ID_BUS_TYPE","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_REV_ID","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBSYS_ID","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_SUBVENDOR_NAME","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_ID","features":[545]},{"name":"DEBUG_FLR_DRIVER_HARDWARE_VENDOR_NAME","features":[545]},{"name":"DEBUG_FLR_DRIVER_OBJECT","features":[545]},{"name":"DEBUG_FLR_DRIVER_VERIFIER_IO_VIOLATION_TYPE","features":[545]},{"name":"DEBUG_FLR_DRIVER_XML_DESCRIPTION","features":[545]},{"name":"DEBUG_FLR_DRIVER_XML_MANUFACTURER","features":[545]},{"name":"DEBUG_FLR_DRIVER_XML_PRODUCTNAME","features":[545]},{"name":"DEBUG_FLR_DRIVER_XML_VERSION","features":[545]},{"name":"DEBUG_FLR_DRVPOWERSTATE_SUBCODE","features":[545]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTA","features":[545]},{"name":"DEBUG_FLR_DUMPSTREAM_COMMENTW","features":[545]},{"name":"DEBUG_FLR_DUMP_CLASS","features":[545]},{"name":"DEBUG_FLR_DUMP_FILE_ATTRIBUTES","features":[545]},{"name":"DEBUG_FLR_DUMP_FLAGS","features":[545]},{"name":"DEBUG_FLR_DUMP_QUALIFIER","features":[545]},{"name":"DEBUG_FLR_DUMP_TYPE","features":[545]},{"name":"DEBUG_FLR_END_MESSAGE","features":[545]},{"name":"DEBUG_FLR_ERESOURCE_ADDRESS","features":[545]},{"name":"DEBUG_FLR_EVENT_CODE_DATA_MISMATCH","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_CODE","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_CODE_STR_deprecated","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_CONTEXT_RECURSION","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_DOESNOT_MATCH_CODE","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_MODULE_INFO","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER1","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER2","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER3","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_PARAMETER4","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_RECORD","features":[545]},{"name":"DEBUG_FLR_EXCEPTION_STR","features":[545]},{"name":"DEBUG_FLR_EXECUTE_ADDRESS","features":[545]},{"name":"DEBUG_FLR_FAILED_INSTRUCTION_ADDRESS","features":[545]},{"name":"DEBUG_FLR_FAILURE_ANALYSIS_SOURCE","features":[545]},{"name":"DEBUG_FLR_FAILURE_BUCKET_ID","features":[545]},{"name":"DEBUG_FLR_FAILURE_DISPLAY_NAME","features":[545]},{"name":"DEBUG_FLR_FAILURE_EXCEPTION_CODE","features":[545]},{"name":"DEBUG_FLR_FAILURE_FUNCTION_NAME","features":[545]},{"name":"DEBUG_FLR_FAILURE_ID_HASH","features":[545]},{"name":"DEBUG_FLR_FAILURE_ID_HASH_STRING","features":[545]},{"name":"DEBUG_FLR_FAILURE_ID_REPORT_LINK","features":[545]},{"name":"DEBUG_FLR_FAILURE_IMAGE_NAME","features":[545]},{"name":"DEBUG_FLR_FAILURE_LIST","features":[545]},{"name":"DEBUG_FLR_FAILURE_MODULE_NAME","features":[545]},{"name":"DEBUG_FLR_FAILURE_PROBLEM_CLASS","features":[545]},{"name":"DEBUG_FLR_FAILURE_SYMBOL_NAME","features":[545]},{"name":"DEBUG_FLR_FAULTING_INSTR_CODE","features":[545]},{"name":"DEBUG_FLR_FAULTING_IP","features":[545]},{"name":"DEBUG_FLR_FAULTING_LOCAL_VARIABLE_NAME","features":[545]},{"name":"DEBUG_FLR_FAULTING_MODULE","features":[545]},{"name":"DEBUG_FLR_FAULTING_SERVICE_NAME","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CODE","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_COMMIT_ID","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_CONTROL_TYPE","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_FILE","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_LINE_NUMBER","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_PROJECT","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_ID","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_REPO_URL","features":[545]},{"name":"DEBUG_FLR_FAULTING_SOURCE_SRV_COMMAND","features":[545]},{"name":"DEBUG_FLR_FAULTING_THREAD","features":[545]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_M","features":[545]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MF","features":[545]},{"name":"DEBUG_FLR_FAULT_THREAD_SHA1_HASH_MFO","features":[545]},{"name":"DEBUG_FLR_FA_ADHOC_ANALYSIS_ITEMS","features":[545]},{"name":"DEBUG_FLR_FA_PERF_DATA","features":[545]},{"name":"DEBUG_FLR_FA_PERF_ELAPSED_MS","features":[545]},{"name":"DEBUG_FLR_FA_PERF_ITEM","features":[545]},{"name":"DEBUG_FLR_FA_PERF_ITEM_NAME","features":[545]},{"name":"DEBUG_FLR_FA_PERF_ITERATIONS","features":[545]},{"name":"DEBUG_FLR_FEATURE_PATH","features":[545]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS","features":[545]},{"name":"DEBUG_FLR_FILESYSTEMS_NTFS_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS","features":[545]},{"name":"DEBUG_FLR_FILESYSTEMS_REFS_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_FILE_ID","features":[545]},{"name":"DEBUG_FLR_FILE_IN_CAB","features":[545]},{"name":"DEBUG_FLR_FILE_LINE","features":[545]},{"name":"DEBUG_FLR_FIXED_IN_OSVERSION","features":[545]},{"name":"DEBUG_FLR_FOLLOWUP_BEFORE_RETRACER","features":[545]},{"name":"DEBUG_FLR_FOLLOWUP_BUCKET_ID","features":[545]},{"name":"DEBUG_FLR_FOLLOWUP_CONTEXT","features":[545]},{"name":"DEBUG_FLR_FOLLOWUP_DRIVER_ONLY","features":[545]},{"name":"DEBUG_FLR_FOLLOWUP_IP","features":[545]},{"name":"DEBUG_FLR_FOLLOWUP_NAME","features":[545]},{"name":"DEBUG_FLR_FRAME_ONE_INVALID","features":[545]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_NAME","features":[545]},{"name":"DEBUG_FLR_FRAME_SOURCE_FILE_PATH","features":[545]},{"name":"DEBUG_FLR_FRAME_SOURCE_LINE_NUMBER","features":[545]},{"name":"DEBUG_FLR_FREED_POOL_TAG","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_ANALYSIS_TEXT","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_COOKIES_MATCH_EXH","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_COOKIE","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBP","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_CORRUPTED_EBPESP","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_FALSE_POSITIVE","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_FRAME_COOKIE_COMPLEMENT","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_FUNCTION","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_FRAMEID","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_MANAGED_THREADID","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_MEMORY_READ_ERROR","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_MISSING_ESTABLISHER_FRAME","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_MODULE_COOKIE","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_NOT_UP2DATE","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_OFF_BY_ONE_OVERRUN","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_OVERRUN_LOCAL_NAME","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVELY_CORRUPTED_EBPESP","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_POSITIVE_BUFFER_OVERFLOW","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_PROBABLY_NOT_USING_GS","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_RA_SMASHED","features":[545]},{"name":"DEBUG_FLR_GSFAILURE_UP2DATE_UNKNOWN","features":[545]},{"name":"DEBUG_FLR_HANDLE_VALUE","features":[545]},{"name":"DEBUG_FLR_HANG","features":[545]},{"name":"DEBUG_FLR_HANG_DATA_NEEDED","features":[545]},{"name":"DEBUG_FLR_HANG_REPORT_THREAD_IS_IDLE","features":[545]},{"name":"DEBUG_FLR_HARDWARE_BUCKET_TAG","features":[545]},{"name":"DEBUG_FLR_HARDWARE_ERROR","features":[545]},{"name":"DEBUG_FLR_HIGH_NONPAGED_POOL_USAGE","features":[545]},{"name":"DEBUG_FLR_HIGH_PAGED_POOL_USAGE","features":[545]},{"name":"DEBUG_FLR_HIGH_PROCESS_COMMIT","features":[545]},{"name":"DEBUG_FLR_HIGH_SERVICE_COMMIT","features":[545]},{"name":"DEBUG_FLR_HIGH_SHARED_COMMIT_USAGE","features":[545]},{"name":"DEBUG_FLR_HOLDINFO","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_ACTIVE_HOLD_COUNT","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_HOLD","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_ALWAYS_IGNORE","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_HISTORIC_HOLD_COUNT","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_LAST_SEEN_HOLD_DATE","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_MANUAL_HOLD","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_MAX_HOLD_LIMIT","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_NOTIFICATION_ALIASES","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_RECOMMEND_HOLD","features":[545]},{"name":"DEBUG_FLR_HOLDINFO_TENET_SOCRE","features":[545]},{"name":"DEBUG_FLR_IGNORE_BUCKET_ID_OFFSET","features":[545]},{"name":"DEBUG_FLR_IGNORE_LARGE_MODULE_CORRUPTION","features":[545]},{"name":"DEBUG_FLR_IGNORE_MODULE_HARDWARE_ID","features":[545]},{"name":"DEBUG_FLR_IMAGE_CLASS","features":[545]},{"name":"DEBUG_FLR_IMAGE_NAME","features":[545]},{"name":"DEBUG_FLR_IMAGE_TIMESTAMP","features":[545]},{"name":"DEBUG_FLR_IMAGE_VERSION","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_CLIFAULT","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_FREE_BLOCK","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_MODULE_NOT_IN_LIST","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_PAGED_CODE","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_RESERVED_BLOCK","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_UNLOADED_MODULE","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_IN_VM_MAPPED_MODULE","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_MISALIGNED","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_NOT_IN_STREAM","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_HEAP","features":[545]},{"name":"DEBUG_FLR_INSTR_POINTER_ON_STACK","features":[545]},{"name":"DEBUG_FLR_INSTR_SESSION_POOL_TAG","features":[545]},{"name":"DEBUG_FLR_INTEL_CPU_BIOS_UPGRADE_NEEDED","features":[545]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_CONTINUABLE","features":[545]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_HITCOUNT","features":[545]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_STATUS_TEXT","features":[545]},{"name":"DEBUG_FLR_INTERNAL_BUCKET_URL","features":[545]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG","features":[545]},{"name":"DEBUG_FLR_INTERNAL_RAID_BUG_DATABASE_STRING","features":[545]},{"name":"DEBUG_FLR_INTERNAL_RESPONSE","features":[545]},{"name":"DEBUG_FLR_INTERNAL_SOLUTION_TEXT","features":[545]},{"name":"DEBUG_FLR_INVALID","features":[545]},{"name":"DEBUG_FLR_INVALID_DPC_FOUND","features":[545]},{"name":"DEBUG_FLR_INVALID_HEAP_ADDRESS","features":[545]},{"name":"DEBUG_FLR_INVALID_KERNEL_CONTEXT","features":[545]},{"name":"DEBUG_FLR_INVALID_OPCODE","features":[545]},{"name":"DEBUG_FLR_INVALID_PFN","features":[545]},{"name":"DEBUG_FLR_INVALID_USEREVENT","features":[545]},{"name":"DEBUG_FLR_INVALID_USER_CONTEXT","features":[545]},{"name":"DEBUG_FLR_IOCONTROL_CODE","features":[545]},{"name":"DEBUG_FLR_IOSB_ADDRESS","features":[545]},{"name":"DEBUG_FLR_IO_ERROR_CODE","features":[545]},{"name":"DEBUG_FLR_IRP_ADDRESS","features":[545]},{"name":"DEBUG_FLR_IRP_CANCEL_ROUTINE","features":[545]},{"name":"DEBUG_FLR_IRP_MAJOR_FN","features":[545]},{"name":"DEBUG_FLR_IRP_MINOR_FN","features":[545]},{"name":"DEBUG_FLR_KERNEL","features":[545]},{"name":"DEBUG_FLR_KERNEL_LOG_PROCESS_NAME","features":[545]},{"name":"DEBUG_FLR_KERNEL_LOG_STATUS","features":[545]},{"name":"DEBUG_FLR_KERNEL_VERIFIER_ENABLED","features":[545]},{"name":"DEBUG_FLR_KEYVALUE_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_KEY_VALUES_STRING","features":[545]},{"name":"DEBUG_FLR_KEY_VALUES_VARIANT","features":[545]},{"name":"DEBUG_FLR_KM_MODULE_LIST","features":[545]},{"name":"DEBUG_FLR_LARGE_TICK_INCREMENT","features":[545]},{"name":"DEBUG_FLR_LAST_CONTROL_TRANSFER","features":[545]},{"name":"DEBUG_FLR_LCIE_ISO_AVAILABLE","features":[545]},{"name":"DEBUG_FLR_LEAKED_SESSION_POOL_TAG","features":[545]},{"name":"DEBUG_FLR_LEGACY_PAGE_TABLE_ACCESS","features":[545]},{"name":"DEBUG_FLR_LIVE_KERNEL_DUMP","features":[545]},{"name":"DEBUG_FLR_LOADERLOCK_BLOCKED_API","features":[545]},{"name":"DEBUG_FLR_LOADERLOCK_IN_WAIT_CHAIN","features":[545]},{"name":"DEBUG_FLR_LOADERLOCK_OWNER_API","features":[545]},{"name":"DEBUG_FLR_LOP_STACKHASH","features":[545]},{"name":"DEBUG_FLR_LOW_SYSTEM_COMMIT","features":[545]},{"name":"DEBUG_FLR_MACHINE_INFO_SHA1_HASH","features":[545]},{"name":"DEBUG_FLR_MANAGED_ANALYSIS_PROVIDER","features":[545]},{"name":"DEBUG_FLR_MANAGED_BITNESS_MISMATCH","features":[545]},{"name":"DEBUG_FLR_MANAGED_CODE","features":[545]},{"name":"DEBUG_FLR_MANAGED_ENGINE_MODULE","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_ADDRESS","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CALLSTACK","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CMD","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_CONTEXT_MESSAGE","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_HRESULT","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_ADDRESS","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_CALLSTACK","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_HRESULT","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_MESSAGE","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_INNER_TYPE","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_MESSAGE_deprecated","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_ADDRESS","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_CALLSTACK","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_HRESULT","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_MESSAGE","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_NESTED_TYPE","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_OBJECT","features":[545]},{"name":"DEBUG_FLR_MANAGED_EXCEPTION_TYPE","features":[545]},{"name":"DEBUG_FLR_MANAGED_FRAME_CHAIN_CORRUPTION","features":[545]},{"name":"DEBUG_FLR_MANAGED_HRESULT_STRING","features":[545]},{"name":"DEBUG_FLR_MANAGED_KERNEL_DEBUGGER","features":[545]},{"name":"DEBUG_FLR_MANAGED_OBJECT","features":[545]},{"name":"DEBUG_FLR_MANAGED_OBJECT_NAME","features":[545]},{"name":"DEBUG_FLR_MANAGED_STACK_COMMAND","features":[545]},{"name":"DEBUG_FLR_MANAGED_STACK_STRING","features":[545]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_CALLSTACK","features":[545]},{"name":"DEBUG_FLR_MANAGED_THREAD_CMD_STACKOBJECTS","features":[545]},{"name":"DEBUG_FLR_MANAGED_THREAD_ID","features":[545]},{"name":"DEBUG_FLR_MANUAL_BREAKIN","features":[545]},{"name":"DEBUG_FLR_MARKER_BUCKET","features":[545]},{"name":"DEBUG_FLR_MARKER_FILE","features":[545]},{"name":"DEBUG_FLR_MARKER_MODULE_FILE","features":[545]},{"name":"DEBUG_FLR_MASK_ALL","features":[545]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_STATUS","features":[545]},{"name":"DEBUG_FLR_MEMDIAG_LASTRUN_TIME","features":[545]},{"name":"DEBUG_FLR_MEMORY_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_MEMORY_CORRUPTION_SIGNATURE","features":[545]},{"name":"DEBUG_FLR_MEMORY_CORRUPTOR","features":[545]},{"name":"DEBUG_FLR_MILCORE_BREAK","features":[545]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT","features":[545]},{"name":"DEBUG_FLR_MINUTES_SINCE_LAST_EVENT_OF_THIS_TYPE","features":[545]},{"name":"DEBUG_FLR_MISSING_CLR_SYMBOL","features":[545]},{"name":"DEBUG_FLR_MISSING_IMPORTANT_SYMBOL","features":[545]},{"name":"DEBUG_FLR_MM_INTERNAL_CODE","features":[545]},{"name":"DEBUG_FLR_MODLIST_SHA1_HASH","features":[545]},{"name":"DEBUG_FLR_MODLIST_TSCHKSUM_SHA1_HASH","features":[545]},{"name":"DEBUG_FLR_MODLIST_UNLOADED_SHA1_HASH","features":[545]},{"name":"DEBUG_FLR_MODULE_BUCKET_ID","features":[545]},{"name":"DEBUG_FLR_MODULE_LIST","features":[545]},{"name":"DEBUG_FLR_MODULE_NAME","features":[545]},{"name":"DEBUG_FLR_MODULE_PRODUCTNAME","features":[545]},{"name":"DEBUG_FLR_MOD_SPECIFIC_DATA_ONLY","features":[545]},{"name":"DEBUG_FLR_NO_ARCH_IN_BUCKET","features":[545]},{"name":"DEBUG_FLR_NO_BUGCHECK_IN_BUCKET","features":[545]},{"name":"DEBUG_FLR_NO_IMAGE_IN_BUCKET","features":[545]},{"name":"DEBUG_FLR_NO_IMAGE_TIMESTAMP_IN_BUCKET","features":[545]},{"name":"DEBUG_FLR_NTGLOBALFLAG","features":[545]},{"name":"DEBUG_FLR_ON_DPC_STACK","features":[545]},{"name":"DEBUG_FLR_ORIGINAL_CAB_NAME","features":[545]},{"name":"DEBUG_FLR_OSBUILD_deprecated","features":[545]},{"name":"DEBUG_FLR_OS_BRANCH","features":[545]},{"name":"DEBUG_FLR_OS_BUILD","features":[545]},{"name":"DEBUG_FLR_OS_BUILD_LAYERS_XML","features":[545]},{"name":"DEBUG_FLR_OS_BUILD_STRING","features":[545]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_ISO","features":[545]},{"name":"DEBUG_FLR_OS_BUILD_TIMESTAMP_LAB","features":[545]},{"name":"DEBUG_FLR_OS_FLAVOR","features":[545]},{"name":"DEBUG_FLR_OS_LOCALE","features":[545]},{"name":"DEBUG_FLR_OS_LOCALE_LCID","features":[545]},{"name":"DEBUG_FLR_OS_MAJOR","features":[545]},{"name":"DEBUG_FLR_OS_MINOR","features":[545]},{"name":"DEBUG_FLR_OS_NAME","features":[545]},{"name":"DEBUG_FLR_OS_NAME_EDITION","features":[545]},{"name":"DEBUG_FLR_OS_PLATFORM_ARCH","features":[545]},{"name":"DEBUG_FLR_OS_PLATFORM_ID","features":[545]},{"name":"DEBUG_FLR_OS_PRODUCT_TYPE","features":[545]},{"name":"DEBUG_FLR_OS_REVISION","features":[545]},{"name":"DEBUG_FLR_OS_SERVICEPACK","features":[545]},{"name":"DEBUG_FLR_OS_SERVICEPACK_deprecated","features":[545]},{"name":"DEBUG_FLR_OS_SKU","features":[545]},{"name":"DEBUG_FLR_OS_SUITE_MASK","features":[545]},{"name":"DEBUG_FLR_OS_VERSION","features":[545]},{"name":"DEBUG_FLR_OS_VERSION_deprecated","features":[545]},{"name":"DEBUG_FLR_OVERLAPPED_MODULE","features":[545]},{"name":"DEBUG_FLR_OVERLAPPED_UNLOADED_MODULE","features":[545]},{"name":"DEBUG_FLR_PAGE_HASH_ERRORS","features":[545]},{"name":"DEBUG_FLR_PARAM_TYPE","features":[545]},{"name":"DEBUG_FLR_PG_MISMATCH","features":[545]},{"name":"DEBUG_FLR_PHONE_APPID","features":[545]},{"name":"DEBUG_FLR_PHONE_APPVERSION","features":[545]},{"name":"DEBUG_FLR_PHONE_BOOTLOADERVERSION","features":[545]},{"name":"DEBUG_FLR_PHONE_BUILDBRANCH","features":[545]},{"name":"DEBUG_FLR_PHONE_BUILDER","features":[545]},{"name":"DEBUG_FLR_PHONE_BUILDNUMBER","features":[545]},{"name":"DEBUG_FLR_PHONE_BUILDTIMESTAMP","features":[545]},{"name":"DEBUG_FLR_PHONE_FIRMWAREREVISION","features":[545]},{"name":"DEBUG_FLR_PHONE_HARDWAREREVISION","features":[545]},{"name":"DEBUG_FLR_PHONE_LCID","features":[545]},{"name":"DEBUG_FLR_PHONE_MCCMNC","features":[545]},{"name":"DEBUG_FLR_PHONE_OPERATOR","features":[545]},{"name":"DEBUG_FLR_PHONE_QFE","features":[545]},{"name":"DEBUG_FLR_PHONE_RADIOHARDWAREREVISION","features":[545]},{"name":"DEBUG_FLR_PHONE_RADIOSOFTWAREREVISION","features":[545]},{"name":"DEBUG_FLR_PHONE_RAM","features":[545]},{"name":"DEBUG_FLR_PHONE_REPORTGUID","features":[545]},{"name":"DEBUG_FLR_PHONE_REPORTTIMESTAMP","features":[545]},{"name":"DEBUG_FLR_PHONE_ROMVERSION","features":[545]},{"name":"DEBUG_FLR_PHONE_SKUID","features":[545]},{"name":"DEBUG_FLR_PHONE_SOCVERSION","features":[545]},{"name":"DEBUG_FLR_PHONE_SOURCE","features":[545]},{"name":"DEBUG_FLR_PHONE_SOURCEEXTERNAL","features":[545]},{"name":"DEBUG_FLR_PHONE_UIF_APPID","features":[545]},{"name":"DEBUG_FLR_PHONE_UIF_APPNAME","features":[545]},{"name":"DEBUG_FLR_PHONE_UIF_CATEGORY","features":[545]},{"name":"DEBUG_FLR_PHONE_UIF_COMMENT","features":[545]},{"name":"DEBUG_FLR_PHONE_UIF_ORIGIN","features":[545]},{"name":"DEBUG_FLR_PHONE_USERALIAS","features":[545]},{"name":"DEBUG_FLR_PHONE_VERSIONMAJOR","features":[545]},{"name":"DEBUG_FLR_PHONE_VERSIONMINOR","features":[545]},{"name":"DEBUG_FLR_PLATFORM_BUCKET_STRING","features":[545]},{"name":"DEBUG_FLR_PNP","features":[545]},{"name":"DEBUG_FLR_PNP_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS","features":[545]},{"name":"DEBUG_FLR_PNP_IRP_ADDRESS_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA","features":[545]},{"name":"DEBUG_FLR_PNP_TRIAGE_DATA_DEPRECATED","features":[545]},{"name":"DEBUG_FLR_POISONED_TB","features":[545]},{"name":"DEBUG_FLR_POOL_ADDRESS","features":[545]},{"name":"DEBUG_FLR_POOL_CORRUPTOR","features":[545]},{"name":"DEBUG_FLR_POSSIBLE_INVALID_CONTROL_TRANSFER","features":[545]},{"name":"DEBUG_FLR_POSSIBLE_STACK_OVERFLOW","features":[545]},{"name":"DEBUG_FLR_POWERREQUEST_ADDRESS","features":[545]},{"name":"DEBUG_FLR_PO_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_PREVIOUS_IRQL","features":[545]},{"name":"DEBUG_FLR_PREVIOUS_MODE","features":[545]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS","features":[545]},{"name":"DEBUG_FLR_PRIMARY_PROBLEM_CLASS_DATA","features":[545]},{"name":"DEBUG_FLR_PROBLEM_CLASSES","features":[545]},{"name":"DEBUG_FLR_PROBLEM_CODE_PATH_HASH","features":[545]},{"name":"DEBUG_FLR_PROCESSES_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_PROCESSOR_ID","features":[545]},{"name":"DEBUG_FLR_PROCESSOR_INFO","features":[545]},{"name":"DEBUG_FLR_PROCESS_BAM_CURRENT_THROTTLED","features":[545]},{"name":"DEBUG_FLR_PROCESS_BAM_PREVIOUS_THROTTLED","features":[545]},{"name":"DEBUG_FLR_PROCESS_INFO","features":[545]},{"name":"DEBUG_FLR_PROCESS_NAME","features":[545]},{"name":"DEBUG_FLR_PROCESS_OBJECT","features":[545]},{"name":"DEBUG_FLR_PROCESS_PRODUCTNAME","features":[545]},{"name":"DEBUG_FLR_RAISED_IRQL_USER_FAULT","features":[545]},{"name":"DEBUG_FLR_READ_ADDRESS","features":[545]},{"name":"DEBUG_FLR_RECURRING_STACK","features":[545]},{"name":"DEBUG_FLR_REGISTRYTXT_SOURCE","features":[545]},{"name":"DEBUG_FLR_REGISTRYTXT_STRESS_ID","features":[545]},{"name":"DEBUG_FLR_REGISTRY_DATA","features":[545]},{"name":"DEBUG_FLR_REPORT_INFO_CREATION_TIME","features":[545]},{"name":"DEBUG_FLR_REPORT_INFO_GUID","features":[545]},{"name":"DEBUG_FLR_REPORT_INFO_SOURCE","features":[545]},{"name":"DEBUG_FLR_REQUESTED_IRQL","features":[545]},{"name":"DEBUG_FLR_RESERVED","features":[545]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE","features":[545]},{"name":"DEBUG_FLR_RESOURCE_CALL_TYPE_STR","features":[545]},{"name":"DEBUG_FLR_SCM","features":[545]},{"name":"DEBUG_FLR_SCM_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY","features":[545]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_CONTROLCODE","features":[545]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_SERVICENAME","features":[545]},{"name":"DEBUG_FLR_SCM_BLACKBOX_ENTRY_STARTTIME","features":[545]},{"name":"DEBUG_FLR_SEARCH_HANG","features":[545]},{"name":"DEBUG_FLR_SECURITY_COOKIES","features":[545]},{"name":"DEBUG_FLR_SERVICE","features":[545]},{"name":"DEBUG_FLR_SERVICETABLE_MODIFIED","features":[545]},{"name":"DEBUG_FLR_SERVICE_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_SERVICE_DEPENDONGROUP","features":[545]},{"name":"DEBUG_FLR_SERVICE_DEPENDONSERVICE","features":[545]},{"name":"DEBUG_FLR_SERVICE_DESCRIPTION","features":[545]},{"name":"DEBUG_FLR_SERVICE_DISPLAYNAME","features":[545]},{"name":"DEBUG_FLR_SERVICE_GROUP","features":[545]},{"name":"DEBUG_FLR_SERVICE_NAME","features":[545]},{"name":"DEBUG_FLR_SHOW_ERRORLOG","features":[545]},{"name":"DEBUG_FLR_SHOW_LCIE_ISO_DATA","features":[545]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELSVC_INSTANCES","features":[545]},{"name":"DEBUG_FLR_SIMULTANEOUS_TELWP_INSTANCES","features":[545]},{"name":"DEBUG_FLR_SINGLE_BIT_ERROR","features":[545]},{"name":"DEBUG_FLR_SINGLE_BIT_PFN_PAGE_ERROR","features":[545]},{"name":"DEBUG_FLR_SKIP_CORRUPT_MODULE_DETECTION","features":[545]},{"name":"DEBUG_FLR_SKIP_MODULE_SPECIFIC_BUCKET_INFO","features":[545]},{"name":"DEBUG_FLR_SKIP_STACK_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_SM_BUFFER_HASH","features":[545]},{"name":"DEBUG_FLR_SM_COMPRESSION_FORMAT","features":[545]},{"name":"DEBUG_FLR_SM_ONEBIT_SOLUTION_COUNT","features":[545]},{"name":"DEBUG_FLR_SM_SOURCE_OFFSET","features":[545]},{"name":"DEBUG_FLR_SM_SOURCE_PFN1","features":[545]},{"name":"DEBUG_FLR_SM_SOURCE_PFN2","features":[545]},{"name":"DEBUG_FLR_SM_SOURCE_SIZE","features":[545]},{"name":"DEBUG_FLR_SM_TARGET_PFN","features":[545]},{"name":"DEBUG_FLR_SOLUTION_ID","features":[545]},{"name":"DEBUG_FLR_SOLUTION_TYPE","features":[545]},{"name":"DEBUG_FLR_SPECIAL_POOL_CORRUPTION_TYPE","features":[545]},{"name":"DEBUG_FLR_STACK","features":[545]},{"name":"DEBUG_FLR_STACKHASH_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION","features":[545]},{"name":"DEBUG_FLR_STACKUSAGE_FUNCTION_SIZE","features":[545]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE","features":[545]},{"name":"DEBUG_FLR_STACKUSAGE_IMAGE_SIZE","features":[545]},{"name":"DEBUG_FLR_STACKUSAGE_RECURSION_COUNT","features":[545]},{"name":"DEBUG_FLR_STACK_COMMAND","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME","features":[545]},{"name":"DEBUG_FLR_STACK_FRAMES","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_FLAGS","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_FUNCTION","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_IMAGE","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_INSTRUCTION","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_MODULE_BASE","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_NUMBER","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_SRC","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL","features":[545]},{"name":"DEBUG_FLR_STACK_FRAME_SYMBOL_OFFSET","features":[545]},{"name":"DEBUG_FLR_STACK_OVERFLOW","features":[545]},{"name":"DEBUG_FLR_STACK_POINTER_ERROR","features":[545]},{"name":"DEBUG_FLR_STACK_POINTER_MISALIGNED","features":[545]},{"name":"DEBUG_FLR_STACK_POINTER_ONEBIT_ERROR","features":[545]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_M","features":[545]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MF","features":[545]},{"name":"DEBUG_FLR_STACK_SHA1_HASH_MFO","features":[545]},{"name":"DEBUG_FLR_STACK_TEXT","features":[545]},{"name":"DEBUG_FLR_STATUS_CODE","features":[545]},{"name":"DEBUG_FLR_STORAGE","features":[545]},{"name":"DEBUG_FLR_STORAGE_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_STORAGE_ISSUEDESCSTRING","features":[545]},{"name":"DEBUG_FLR_STORAGE_MFGID","features":[545]},{"name":"DEBUG_FLR_STORAGE_MODEL","features":[545]},{"name":"DEBUG_FLR_STORAGE_ORGID","features":[545]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_DATASIZE","features":[545]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_OFFSET","features":[545]},{"name":"DEBUG_FLR_STORAGE_PRIVATE_TOTSIZE","features":[545]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_DATASIZE","features":[545]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_OFFSET","features":[545]},{"name":"DEBUG_FLR_STORAGE_PUBLIC_TOTSIZE","features":[545]},{"name":"DEBUG_FLR_STORAGE_REASON","features":[545]},{"name":"DEBUG_FLR_STORAGE_TOTALSIZE","features":[545]},{"name":"DEBUG_FLR_STORE_DEVELOPER_NAME","features":[545]},{"name":"DEBUG_FLR_STORE_IS_MICROSOFT_PRODUCT","features":[545]},{"name":"DEBUG_FLR_STORE_LEGACY_PARENT_PRODUCT_ID","features":[545]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_PHONE_PRODUCT_ID","features":[545]},{"name":"DEBUG_FLR_STORE_LEGACY_WINDOWS_STORE_PRODUCT_ID","features":[545]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_360_PRODUCT_ID","features":[545]},{"name":"DEBUG_FLR_STORE_LEGACY_XBOX_ONE_PRODUCT_ID","features":[545]},{"name":"DEBUG_FLR_STORE_PACKAGE_FAMILY_NAME","features":[545]},{"name":"DEBUG_FLR_STORE_PACKAGE_IDENTITY_NAME","features":[545]},{"name":"DEBUG_FLR_STORE_PREFERRED_SKU_ID","features":[545]},{"name":"DEBUG_FLR_STORE_PRIMARY_PARENT_PRODUCT_ID","features":[545]},{"name":"DEBUG_FLR_STORE_PRODUCT_DESCRIPTION","features":[545]},{"name":"DEBUG_FLR_STORE_PRODUCT_DISPLAY_NAME","features":[545]},{"name":"DEBUG_FLR_STORE_PRODUCT_EXTENDED_NAME","features":[545]},{"name":"DEBUG_FLR_STORE_PRODUCT_ID","features":[545]},{"name":"DEBUG_FLR_STORE_PUBLISHER_CERTIFICATE_NAME","features":[545]},{"name":"DEBUG_FLR_STORE_PUBLISHER_ID","features":[545]},{"name":"DEBUG_FLR_STORE_PUBLISHER_NAME","features":[545]},{"name":"DEBUG_FLR_STORE_URL_APP","features":[545]},{"name":"DEBUG_FLR_STORE_URL_APPHEALTH","features":[545]},{"name":"DEBUG_FLR_STORE_XBOX_TITLE_ID","features":[545]},{"name":"DEBUG_FLR_STREAM_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_SUSPECT_CODE_PATH_HASH","features":[545]},{"name":"DEBUG_FLR_SVCHOST","features":[545]},{"name":"DEBUG_FLR_SVCHOST_GROUP","features":[545]},{"name":"DEBUG_FLR_SVCHOST_IMAGEPATH","features":[545]},{"name":"DEBUG_FLR_SVCHOST_SERVICEDLL","features":[545]},{"name":"DEBUG_FLR_SWITCH_PROCESS_CONTEXT","features":[545]},{"name":"DEBUG_FLR_SYMBOL_FROM_RAW_STACK_ADDRESS","features":[545]},{"name":"DEBUG_FLR_SYMBOL_NAME","features":[545]},{"name":"DEBUG_FLR_SYMBOL_ON_RAW_STACK","features":[545]},{"name":"DEBUG_FLR_SYMBOL_ROUTINE_NAME","features":[545]},{"name":"DEBUG_FLR_SYMBOL_STACK_INDEX","features":[545]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_MANUFACTURER","features":[545]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_PRODUCT","features":[545]},{"name":"DEBUG_FLR_SYSINFO_BASEBOARD_VERSION","features":[545]},{"name":"DEBUG_FLR_SYSINFO_BIOS_DATE","features":[545]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VENDOR","features":[545]},{"name":"DEBUG_FLR_SYSINFO_BIOS_VERSION","features":[545]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_MANUFACTURER","features":[545]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_PRODUCT","features":[545]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_SKU","features":[545]},{"name":"DEBUG_FLR_SYSINFO_SYSTEM_VERSION","features":[545]},{"name":"DEBUG_FLR_SYSTEM_LOCALE_deprecated","features":[545]},{"name":"DEBUG_FLR_SYSXML_CHECKSUM","features":[545]},{"name":"DEBUG_FLR_SYSXML_LOCALEID","features":[545]},{"name":"DEBUG_FLR_TARGET_MODE","features":[545]},{"name":"DEBUG_FLR_TARGET_TIME","features":[545]},{"name":"DEBUG_FLR_TESTRESULTGUID","features":[545]},{"name":"DEBUG_FLR_TESTRESULTSERVER","features":[545]},{"name":"DEBUG_FLR_THREADPOOL_WAITER","features":[545]},{"name":"DEBUG_FLR_THREAD_ATTRIBUTES","features":[545]},{"name":"DEBUG_FLR_TIMELINE_ANALYSIS","features":[545]},{"name":"DEBUG_FLR_TIMELINE_TIMES","features":[545]},{"name":"DEBUG_FLR_TRAP_FRAME","features":[545]},{"name":"DEBUG_FLR_TRAP_FRAME_RECURSION","features":[545]},{"name":"DEBUG_FLR_TRIAGER_OS_BUILD_NAME","features":[545]},{"name":"DEBUG_FLR_TSS","features":[545]},{"name":"DEBUG_FLR_TWO_BIT_ERROR","features":[545]},{"name":"DEBUG_FLR_ULS_SCRIPT_EXCEPTION","features":[545]},{"name":"DEBUG_FLR_UNALIGNED_STACK_POINTER","features":[545]},{"name":"DEBUG_FLR_UNKNOWN","features":[545]},{"name":"DEBUG_FLR_UNKNOWN_MODULE","features":[545]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_FOLLOWUP_NAME","features":[545]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS","features":[545]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_PROBLEM_CLASS_DATA","features":[545]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_STACK","features":[545]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_SYMBOL_NAME","features":[545]},{"name":"DEBUG_FLR_UNRESPONSIVE_UI_THREAD","features":[545]},{"name":"DEBUG_FLR_UNUSED001","features":[545]},{"name":"DEBUG_FLR_URLS","features":[545]},{"name":"DEBUG_FLR_URLS_DISCOVERED","features":[545]},{"name":"DEBUG_FLR_URL_ENTRY","features":[545]},{"name":"DEBUG_FLR_URL_LCIE_ENTRY","features":[545]},{"name":"DEBUG_FLR_URL_URLMON_ENTRY","features":[545]},{"name":"DEBUG_FLR_URL_XMLHTTPREQ_SYNC_ENTRY","features":[545]},{"name":"DEBUG_FLR_USBPORT_OCADATA","features":[545]},{"name":"DEBUG_FLR_USER","features":[545]},{"name":"DEBUG_FLR_USERBREAK_PEB_PAGEDOUT","features":[545]},{"name":"DEBUG_FLR_USERMODE_DATA","features":[545]},{"name":"DEBUG_FLR_USER_GLOBAL_ATTRIBUTES","features":[545]},{"name":"DEBUG_FLR_USER_LCID","features":[545]},{"name":"DEBUG_FLR_USER_LCID_STR","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_EVENTTYPE","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_INDEX","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P0","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P1","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P2","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P3","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P4","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P5","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P6","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_P7","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTCREATIONTIME","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_REPORTGUID","features":[545]},{"name":"DEBUG_FLR_USER_MODE_BUCKET_STRING","features":[545]},{"name":"DEBUG_FLR_USER_NAME","features":[545]},{"name":"DEBUG_FLR_USER_PROBLEM_CLASSES","features":[545]},{"name":"DEBUG_FLR_USER_THREAD_ATTRIBUTES","features":[545]},{"name":"DEBUG_FLR_USE_DEFAULT_CONTEXT","features":[545]},{"name":"DEBUG_FLR_VERIFIER_DRIVER_ENTRY","features":[545]},{"name":"DEBUG_FLR_VERIFIER_FOUND_DEADLOCK","features":[545]},{"name":"DEBUG_FLR_VERIFIER_STOP","features":[545]},{"name":"DEBUG_FLR_VIDEO_TDR_CONTEXT","features":[545]},{"name":"DEBUG_FLR_VIRTUAL_MACHINE","features":[545]},{"name":"DEBUG_FLR_WAIT_CHAIN_COMMAND","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_00","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_01","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_02","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_03","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_04","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_05","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_06","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_07","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_08","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_BUCKETING_09","features":[545]},{"name":"DEBUG_FLR_WATSON_GENERIC_EVENT_NAME","features":[545]},{"name":"DEBUG_FLR_WATSON_IBUCKET","features":[545]},{"name":"DEBUG_FLR_WATSON_IBUCKETTABLE_S1_RESP","features":[545]},{"name":"DEBUG_FLR_WATSON_IBUCKET_S1_RESP","features":[545]},{"name":"DEBUG_FLR_WATSON_MODULE","features":[545]},{"name":"DEBUG_FLR_WATSON_MODULE_OFFSET","features":[545]},{"name":"DEBUG_FLR_WATSON_MODULE_TIMESTAMP","features":[545]},{"name":"DEBUG_FLR_WATSON_MODULE_VERSION","features":[545]},{"name":"DEBUG_FLR_WATSON_PROCESS_TIMESTAMP","features":[545]},{"name":"DEBUG_FLR_WATSON_PROCESS_VERSION","features":[545]},{"name":"DEBUG_FLR_WCT_XML_AVAILABLE","features":[545]},{"name":"DEBUG_FLR_WERCOLLECTION_DEFAULTCOLLECTION_FAILURE","features":[545]},{"name":"DEBUG_FLR_WERCOLLECTION_MINIDUMP_WRITE_FAILURE","features":[545]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSHEAPDUMP_REQUEST_FAILURE","features":[545]},{"name":"DEBUG_FLR_WERCOLLECTION_PROCESSTERMINATED","features":[545]},{"name":"DEBUG_FLR_WER_DATA_COLLECTION_INFO","features":[545]},{"name":"DEBUG_FLR_WER_MACHINE_ID","features":[545]},{"name":"DEBUG_FLR_WHEA_ERROR_RECORD","features":[545]},{"name":"DEBUG_FLR_WINLOGON_BLACKBOX","features":[545]},{"name":"DEBUG_FLR_WMI_QUERY_DATA","features":[545]},{"name":"DEBUG_FLR_WORKER_ROUTINE","features":[545]},{"name":"DEBUG_FLR_WORK_ITEM","features":[545]},{"name":"DEBUG_FLR_WORK_QUEUE_ITEM","features":[545]},{"name":"DEBUG_FLR_WQL_EVENTLOG_INFO","features":[545]},{"name":"DEBUG_FLR_WQL_EVENT_COUNT","features":[545]},{"name":"DEBUG_FLR_WRITE_ADDRESS","features":[545]},{"name":"DEBUG_FLR_WRONG_SYMBOLS","features":[545]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_SIZE","features":[545]},{"name":"DEBUG_FLR_WRONG_SYMBOLS_TIMESTAMP","features":[545]},{"name":"DEBUG_FLR_XBOX_LIVE_ENVIRONMENT","features":[545]},{"name":"DEBUG_FLR_XBOX_SYSTEM_CRASHTIME","features":[545]},{"name":"DEBUG_FLR_XBOX_SYSTEM_UPTIME","features":[545]},{"name":"DEBUG_FLR_XCS_PATH","features":[545]},{"name":"DEBUG_FLR_XDV_HELP_LINK","features":[545]},{"name":"DEBUG_FLR_XDV_RULE_INFO","features":[545]},{"name":"DEBUG_FLR_XDV_STATE_VARIABLE","features":[545]},{"name":"DEBUG_FLR_XDV_VIOLATED_CONDITION","features":[545]},{"name":"DEBUG_FLR_XHCI_FIRMWARE_VERSION","features":[545]},{"name":"DEBUG_FLR_XML_APPLICATION_NAME","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D1VALUE","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_D2VALUE","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_DOVALUE","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_FRAME_NUMBER","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_LIST","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_NAME","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_THREAD_INDEX","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE","features":[545]},{"name":"DEBUG_FLR_XML_ATTRIBUTE_VALUE_TYPE","features":[545]},{"name":"DEBUG_FLR_XML_ENCODED_OFFSETS","features":[545]},{"name":"DEBUG_FLR_XML_EVENTTYPE","features":[545]},{"name":"DEBUG_FLR_XML_GLOBALATTRIBUTE_LIST","features":[545]},{"name":"DEBUG_FLR_XML_MODERN_ASYNC_REQUEST_OUTSTANDING","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_BASE","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_CHECKSUM","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_COMPANY_NAME","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_DRIVER_GROUP","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_DESCRIPTION","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FILE_FLAGS","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_FILE_VER","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_FIXED_PROD_VER","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_NAME","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_IMAGE_PATH","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INDEX","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_INTERNAL_NAME","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_NAME","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ON_STACK","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_ORIG_FILE_NAME","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_PRODUCT_NAME","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SIZE","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_FILE_VER","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_STRING_PROD_VER","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMBOL_TYPE","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_DETAIL","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_ERROR","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_SEC","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_IMAGE_STATUS","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_DETAIL","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_ERROR","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_SEC","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_SYMSRV_PDB_STATUS","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_TIMESTAMP","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_INFO_UNLOADED","features":[545]},{"name":"DEBUG_FLR_XML_MODULE_LIST","features":[545]},{"name":"DEBUG_FLR_XML_PACKAGE_MONIKER","features":[545]},{"name":"DEBUG_FLR_XML_PACKAGE_NAME","features":[545]},{"name":"DEBUG_FLR_XML_PACKAGE_RELATIVE_APPLICATION_ID","features":[545]},{"name":"DEBUG_FLR_XML_PACKAGE_VERSION","features":[545]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS","features":[545]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_FRAME_NUMBER","features":[545]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_LIST","features":[545]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_NAME","features":[545]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_THREAD_INDEX","features":[545]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE","features":[545]},{"name":"DEBUG_FLR_XML_PROBLEMCLASS_VALUE_TYPE","features":[545]},{"name":"DEBUG_FLR_XML_STACK_FRAME_TRIAGE_STATUS","features":[545]},{"name":"DEBUG_FLR_XML_SYSTEMINFO","features":[545]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMANUFACTURER","features":[545]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMARKER","features":[545]},{"name":"DEBUG_FLR_XML_SYSTEMINFO_SYSTEMMODEL","features":[545]},{"name":"DEBUG_FLR_XPROC_DUMP_AVAILABLE","features":[545]},{"name":"DEBUG_FLR_XPROC_HANG","features":[545]},{"name":"DEBUG_FLR_ZEROED_STACK","features":[545]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_ALL_IMAGES","features":[545]},{"name":"DEBUG_FORMAT_CAB_SECONDARY_FILES","features":[545]},{"name":"DEBUG_FORMAT_DEFAULT","features":[545]},{"name":"DEBUG_FORMAT_NO_OVERWRITE","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_ADD_AVX_XSTATE_CONTEXT","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_CODE_SEGMENTS","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_DATA_SEGMENTS","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_MEMORY","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_PATHS","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_FILTER_TRIAGE","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_AUXILIARY_STATE","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_FULL_MEMORY_INFO","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_HANDLE_DATA","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_IGNORE_INACCESSIBLE_MEM","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_INDIRECT_MEMORY","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_IPT_TRACE","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_MODULE_HEADERS","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_AUXILIARY_STATE","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_NO_OPTIONAL_DATA","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_PRIVATE_READ_WRITE_MEMORY","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_PROCESS_THREAD_DATA","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_SCAN_PARTIAL_PAGES","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_THREAD_INFO","features":[545]},{"name":"DEBUG_FORMAT_USER_SMALL_UNLOADED_MODULES","features":[545]},{"name":"DEBUG_FORMAT_WRITE_CAB","features":[545]},{"name":"DEBUG_FRAME_DEFAULT","features":[545]},{"name":"DEBUG_FRAME_IGNORE_INLINE","features":[545]},{"name":"DEBUG_GETFNENT_DEFAULT","features":[545]},{"name":"DEBUG_GETFNENT_RAW_ENTRY_ONLY","features":[545]},{"name":"DEBUG_GETMOD_DEFAULT","features":[545]},{"name":"DEBUG_GETMOD_NO_LOADED_MODULES","features":[545]},{"name":"DEBUG_GETMOD_NO_UNLOADED_MODULES","features":[545]},{"name":"DEBUG_GET_PROC_DEFAULT","features":[545]},{"name":"DEBUG_GET_PROC_FULL_MATCH","features":[545]},{"name":"DEBUG_GET_PROC_ONLY_MATCH","features":[545]},{"name":"DEBUG_GET_PROC_SERVICE_NAME","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IN","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_DOT_COMMAND","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_EXTENSION_COMMAND","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_IS_SYMBOL","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_DOT_COMMANDS","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_EXTENSION_COMMANDS","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_NO_SYMBOLS","features":[545]},{"name":"DEBUG_GET_TEXT_COMPLETIONS_OUT","features":[545]},{"name":"DEBUG_GSEL_ALLOW_HIGHER","features":[545]},{"name":"DEBUG_GSEL_ALLOW_LOWER","features":[545]},{"name":"DEBUG_GSEL_DEFAULT","features":[545]},{"name":"DEBUG_GSEL_INLINE_CALLSITE","features":[545]},{"name":"DEBUG_GSEL_NEAREST_ONLY","features":[545]},{"name":"DEBUG_GSEL_NO_SYMBOL_LOADS","features":[545]},{"name":"DEBUG_HANDLE_DATA_BASIC","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_ALL_HANDLE_OPERATIONS","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_BASIC","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_HANDLE_COUNT","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_EVENT_1","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_1","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_MUTANT_2","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_1","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_PROCESS_2","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SECTION_1","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_SEMAPHORE_1","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_MINI_THREAD_1","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_OBJECT_NAME_WIDE","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_PER_HANDLE_OPERATIONS","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME","features":[545]},{"name":"DEBUG_HANDLE_DATA_TYPE_TYPE_NAME_WIDE","features":[545]},{"name":"DEBUG_INTERRUPT_ACTIVE","features":[545]},{"name":"DEBUG_INTERRUPT_EXIT","features":[545]},{"name":"DEBUG_INTERRUPT_PASSIVE","features":[545]},{"name":"DEBUG_IOUTPUT_ADDR_TRANSLATE","features":[545]},{"name":"DEBUG_IOUTPUT_BREAKPOINT","features":[545]},{"name":"DEBUG_IOUTPUT_EVENT","features":[545]},{"name":"DEBUG_IOUTPUT_KD_PROTOCOL","features":[545]},{"name":"DEBUG_IOUTPUT_REMOTING","features":[545]},{"name":"DEBUG_IRP_INFO","features":[545]},{"name":"DEBUG_IRP_STACK_INFO","features":[545]},{"name":"DEBUG_KERNEL_ACTIVE_DUMP","features":[545]},{"name":"DEBUG_KERNEL_CONNECTION","features":[545]},{"name":"DEBUG_KERNEL_DUMP","features":[545]},{"name":"DEBUG_KERNEL_EXDI_DRIVER","features":[545]},{"name":"DEBUG_KERNEL_FULL_DUMP","features":[545]},{"name":"DEBUG_KERNEL_IDNA","features":[545]},{"name":"DEBUG_KERNEL_INSTALL_DRIVER","features":[545]},{"name":"DEBUG_KERNEL_LOCAL","features":[545]},{"name":"DEBUG_KERNEL_REPT","features":[545]},{"name":"DEBUG_KERNEL_SMALL_DUMP","features":[545]},{"name":"DEBUG_KERNEL_TRACE_LOG","features":[545]},{"name":"DEBUG_KNOWN_STRUCT_GET_NAMES","features":[545]},{"name":"DEBUG_KNOWN_STRUCT_GET_SINGLE_LINE_OUTPUT","features":[545]},{"name":"DEBUG_KNOWN_STRUCT_SUPPRESS_TYPE_NAME","features":[545]},{"name":"DEBUG_LAST_EVENT_INFO_BREAKPOINT","features":[545]},{"name":"DEBUG_LAST_EVENT_INFO_EXCEPTION","features":[305,545]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_PROCESS","features":[545]},{"name":"DEBUG_LAST_EVENT_INFO_EXIT_THREAD","features":[545]},{"name":"DEBUG_LAST_EVENT_INFO_LOAD_MODULE","features":[545]},{"name":"DEBUG_LAST_EVENT_INFO_SERVICE_EXCEPTION","features":[545]},{"name":"DEBUG_LAST_EVENT_INFO_SYSTEM_ERROR","features":[545]},{"name":"DEBUG_LAST_EVENT_INFO_UNLOAD_MODULE","features":[545]},{"name":"DEBUG_LEVEL_ASSEMBLY","features":[545]},{"name":"DEBUG_LEVEL_SOURCE","features":[545]},{"name":"DEBUG_LIVE_USER_NON_INVASIVE","features":[545]},{"name":"DEBUG_LOG_APPEND","features":[545]},{"name":"DEBUG_LOG_DEFAULT","features":[545]},{"name":"DEBUG_LOG_DML","features":[545]},{"name":"DEBUG_LOG_UNICODE","features":[545]},{"name":"DEBUG_MANAGED_ALLOWED","features":[545]},{"name":"DEBUG_MANAGED_DISABLED","features":[545]},{"name":"DEBUG_MANAGED_DLL_LOADED","features":[545]},{"name":"DEBUG_MANRESET_DEFAULT","features":[545]},{"name":"DEBUG_MANRESET_LOAD_DLL","features":[545]},{"name":"DEBUG_MANSTR_LOADED_SUPPORT_DLL","features":[545]},{"name":"DEBUG_MANSTR_LOAD_STATUS","features":[545]},{"name":"DEBUG_MANSTR_NONE","features":[545]},{"name":"DEBUG_MODNAME_IMAGE","features":[545]},{"name":"DEBUG_MODNAME_LOADED_IMAGE","features":[545]},{"name":"DEBUG_MODNAME_MAPPED_IMAGE","features":[545]},{"name":"DEBUG_MODNAME_MODULE","features":[545]},{"name":"DEBUG_MODNAME_SYMBOL_FILE","features":[545]},{"name":"DEBUG_MODULE_AND_ID","features":[545]},{"name":"DEBUG_MODULE_EXE_MODULE","features":[545]},{"name":"DEBUG_MODULE_EXPLICIT","features":[545]},{"name":"DEBUG_MODULE_LOADED","features":[545]},{"name":"DEBUG_MODULE_PARAMETERS","features":[545]},{"name":"DEBUG_MODULE_SECONDARY","features":[545]},{"name":"DEBUG_MODULE_SYM_BAD_CHECKSUM","features":[545]},{"name":"DEBUG_MODULE_SYNTHETIC","features":[545]},{"name":"DEBUG_MODULE_UNLOADED","features":[545]},{"name":"DEBUG_MODULE_USER_MODE","features":[545]},{"name":"DEBUG_NOTIFY_SESSION_ACCESSIBLE","features":[545]},{"name":"DEBUG_NOTIFY_SESSION_ACTIVE","features":[545]},{"name":"DEBUG_NOTIFY_SESSION_INACCESSIBLE","features":[545]},{"name":"DEBUG_NOTIFY_SESSION_INACTIVE","features":[545]},{"name":"DEBUG_OFFSET_REGION","features":[545]},{"name":"DEBUG_OFFSINFO_VIRTUAL_SOURCE","features":[545]},{"name":"DEBUG_OUTCBF_COMBINED_EXPLICIT_FLUSH","features":[545]},{"name":"DEBUG_OUTCBF_DML_HAS_SPECIAL_CHARACTERS","features":[545]},{"name":"DEBUG_OUTCBF_DML_HAS_TAGS","features":[545]},{"name":"DEBUG_OUTCBI_ANY_FORMAT","features":[545]},{"name":"DEBUG_OUTCBI_DML","features":[545]},{"name":"DEBUG_OUTCBI_EXPLICIT_FLUSH","features":[545]},{"name":"DEBUG_OUTCBI_TEXT","features":[545]},{"name":"DEBUG_OUTCB_DML","features":[545]},{"name":"DEBUG_OUTCB_EXPLICIT_FLUSH","features":[545]},{"name":"DEBUG_OUTCB_TEXT","features":[545]},{"name":"DEBUG_OUTCTL_ALL_CLIENTS","features":[545]},{"name":"DEBUG_OUTCTL_ALL_OTHER_CLIENTS","features":[545]},{"name":"DEBUG_OUTCTL_AMBIENT","features":[545]},{"name":"DEBUG_OUTCTL_AMBIENT_DML","features":[545]},{"name":"DEBUG_OUTCTL_AMBIENT_TEXT","features":[545]},{"name":"DEBUG_OUTCTL_DML","features":[545]},{"name":"DEBUG_OUTCTL_IGNORE","features":[545]},{"name":"DEBUG_OUTCTL_LOG_ONLY","features":[545]},{"name":"DEBUG_OUTCTL_NOT_LOGGED","features":[545]},{"name":"DEBUG_OUTCTL_OVERRIDE_MASK","features":[545]},{"name":"DEBUG_OUTCTL_SEND_MASK","features":[545]},{"name":"DEBUG_OUTCTL_THIS_CLIENT","features":[545]},{"name":"DEBUG_OUTPUT_DEBUGGEE","features":[545]},{"name":"DEBUG_OUTPUT_DEBUGGEE_PROMPT","features":[545]},{"name":"DEBUG_OUTPUT_ERROR","features":[545]},{"name":"DEBUG_OUTPUT_EXTENSION_WARNING","features":[545]},{"name":"DEBUG_OUTPUT_IDENTITY_DEFAULT","features":[545]},{"name":"DEBUG_OUTPUT_NAME_END","features":[545]},{"name":"DEBUG_OUTPUT_NAME_END_T","features":[545]},{"name":"DEBUG_OUTPUT_NAME_END_WIDE","features":[545]},{"name":"DEBUG_OUTPUT_NORMAL","features":[545]},{"name":"DEBUG_OUTPUT_OFFSET_END","features":[545]},{"name":"DEBUG_OUTPUT_OFFSET_END_T","features":[545]},{"name":"DEBUG_OUTPUT_OFFSET_END_WIDE","features":[545]},{"name":"DEBUG_OUTPUT_PROMPT","features":[545]},{"name":"DEBUG_OUTPUT_PROMPT_REGISTERS","features":[545]},{"name":"DEBUG_OUTPUT_STATUS","features":[545]},{"name":"DEBUG_OUTPUT_SYMBOLS","features":[545]},{"name":"DEBUG_OUTPUT_SYMBOLS_DEFAULT","features":[545]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_NAMES","features":[545]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_OFFSETS","features":[545]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_TYPES","features":[545]},{"name":"DEBUG_OUTPUT_SYMBOLS_NO_VALUES","features":[545]},{"name":"DEBUG_OUTPUT_TYPE_END","features":[545]},{"name":"DEBUG_OUTPUT_TYPE_END_T","features":[545]},{"name":"DEBUG_OUTPUT_TYPE_END_WIDE","features":[545]},{"name":"DEBUG_OUTPUT_VALUE_END","features":[545]},{"name":"DEBUG_OUTPUT_VALUE_END_T","features":[545]},{"name":"DEBUG_OUTPUT_VALUE_END_WIDE","features":[545]},{"name":"DEBUG_OUTPUT_VERBOSE","features":[545]},{"name":"DEBUG_OUTPUT_WARNING","features":[545]},{"name":"DEBUG_OUTPUT_XML","features":[545]},{"name":"DEBUG_OUTSYM_ALLOW_DISPLACEMENT","features":[545]},{"name":"DEBUG_OUTSYM_DEFAULT","features":[545]},{"name":"DEBUG_OUTSYM_FORCE_OFFSET","features":[545]},{"name":"DEBUG_OUTSYM_SOURCE_LINE","features":[545]},{"name":"DEBUG_OUTTYPE_ADDRESS_AT_END","features":[545]},{"name":"DEBUG_OUTTYPE_ADDRESS_OF_FIELD","features":[545]},{"name":"DEBUG_OUTTYPE_BLOCK_RECURSE","features":[545]},{"name":"DEBUG_OUTTYPE_COMPACT_OUTPUT","features":[545]},{"name":"DEBUG_OUTTYPE_DEFAULT","features":[545]},{"name":"DEBUG_OUTTYPE_NO_INDENT","features":[545]},{"name":"DEBUG_OUTTYPE_NO_OFFSET","features":[545]},{"name":"DEBUG_OUTTYPE_VERBOSE","features":[545]},{"name":"DEBUG_OUT_TEXT_REPL_DEFAULT","features":[545]},{"name":"DEBUG_PHYSICAL_CACHED","features":[545]},{"name":"DEBUG_PHYSICAL_DEFAULT","features":[545]},{"name":"DEBUG_PHYSICAL_UNCACHED","features":[545]},{"name":"DEBUG_PHYSICAL_WRITE_COMBINED","features":[545]},{"name":"DEBUG_PNP_TRIAGE_INFO","features":[545]},{"name":"DEBUG_POOLTAG_DESCRIPTION","features":[545]},{"name":"DEBUG_POOL_DATA","features":[545]},{"name":"DEBUG_POOL_REGION","features":[545]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALL","features":[545]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ALPHA","features":[545]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_AMD64","features":[545]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM","features":[545]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_ARM64","features":[545]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_IA64","features":[545]},{"name":"DEBUG_PROCESSOR_IDENTIFICATION_X86","features":[545]},{"name":"DEBUG_PROCESS_DETACH_ON_EXIT","features":[545]},{"name":"DEBUG_PROCESS_ONLY_THIS_PROCESS","features":[545]},{"name":"DEBUG_PROC_DESC_DEFAULT","features":[545]},{"name":"DEBUG_PROC_DESC_NO_COMMAND_LINE","features":[545]},{"name":"DEBUG_PROC_DESC_NO_MTS_PACKAGES","features":[545]},{"name":"DEBUG_PROC_DESC_NO_PATHS","features":[545]},{"name":"DEBUG_PROC_DESC_NO_SERVICES","features":[545]},{"name":"DEBUG_PROC_DESC_NO_SESSION_ID","features":[545]},{"name":"DEBUG_PROC_DESC_NO_USER_NAME","features":[545]},{"name":"DEBUG_PROC_DESC_WITH_ARCHITECTURE","features":[545]},{"name":"DEBUG_PROC_DESC_WITH_PACKAGEFAMILY","features":[545]},{"name":"DEBUG_READ_USER_MINIDUMP_STREAM","features":[545]},{"name":"DEBUG_REGISTERS_ALL","features":[545]},{"name":"DEBUG_REGISTERS_DEFAULT","features":[545]},{"name":"DEBUG_REGISTERS_FLOAT","features":[545]},{"name":"DEBUG_REGISTERS_INT32","features":[545]},{"name":"DEBUG_REGISTERS_INT64","features":[545]},{"name":"DEBUG_REGISTER_DESCRIPTION","features":[545]},{"name":"DEBUG_REGISTER_SUB_REGISTER","features":[545]},{"name":"DEBUG_REGSRC_DEBUGGEE","features":[545]},{"name":"DEBUG_REGSRC_EXPLICIT","features":[545]},{"name":"DEBUG_REGSRC_FRAME","features":[545]},{"name":"DEBUG_REQUEST_ADD_CACHED_SYMBOL_INFO","features":[545]},{"name":"DEBUG_REQUEST_CLOSE_TOKEN","features":[545]},{"name":"DEBUG_REQUEST_CURRENT_OUTPUT_CALLBACKS_ARE_DML_AWARE","features":[545]},{"name":"DEBUG_REQUEST_DUPLICATE_TOKEN","features":[545]},{"name":"DEBUG_REQUEST_EXT_TYPED_DATA_ANSI","features":[545]},{"name":"DEBUG_REQUEST_GET_ADDITIONAL_CREATE_OPTIONS","features":[545]},{"name":"DEBUG_REQUEST_GET_CACHED_SYMBOL_INFO","features":[545]},{"name":"DEBUG_REQUEST_GET_CAPTURED_EVENT_CODE_OFFSET","features":[545]},{"name":"DEBUG_REQUEST_GET_DUMP_HEADER","features":[545]},{"name":"DEBUG_REQUEST_GET_EXTENSION_SEARCH_PATH_WIDE","features":[545]},{"name":"DEBUG_REQUEST_GET_IMAGE_ARCHITECTURE","features":[545]},{"name":"DEBUG_REQUEST_GET_INSTRUMENTATION_VERSION","features":[545]},{"name":"DEBUG_REQUEST_GET_MODULE_ARCHITECTURE","features":[545]},{"name":"DEBUG_REQUEST_GET_OFFSET_UNWIND_INFORMATION","features":[545]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_ANSI","features":[545]},{"name":"DEBUG_REQUEST_GET_TEXT_COMPLETIONS_WIDE","features":[545]},{"name":"DEBUG_REQUEST_GET_WIN32_MAJOR_MINOR_VERSIONS","features":[545]},{"name":"DEBUG_REQUEST_INLINE_QUERY","features":[545]},{"name":"DEBUG_REQUEST_MIDORI","features":[545]},{"name":"DEBUG_REQUEST_MISC_INFORMATION","features":[545]},{"name":"DEBUG_REQUEST_OPEN_PROCESS_TOKEN","features":[545]},{"name":"DEBUG_REQUEST_OPEN_THREAD_TOKEN","features":[545]},{"name":"DEBUG_REQUEST_PROCESS_DESCRIPTORS","features":[545]},{"name":"DEBUG_REQUEST_QUERY_INFO_TOKEN","features":[545]},{"name":"DEBUG_REQUEST_READ_CAPTURED_EVENT_CODE_STREAM","features":[545]},{"name":"DEBUG_REQUEST_READ_USER_MINIDUMP_STREAM","features":[545]},{"name":"DEBUG_REQUEST_REMOVE_CACHED_SYMBOL_INFO","features":[545]},{"name":"DEBUG_REQUEST_RESUME_THREAD","features":[545]},{"name":"DEBUG_REQUEST_SET_ADDITIONAL_CREATE_OPTIONS","features":[545]},{"name":"DEBUG_REQUEST_SET_DUMP_HEADER","features":[545]},{"name":"DEBUG_REQUEST_SET_LOCAL_IMPLICIT_COMMAND_LINE","features":[545]},{"name":"DEBUG_REQUEST_SOURCE_PATH_HAS_SOURCE_SERVER","features":[545]},{"name":"DEBUG_REQUEST_TARGET_CAN_DETACH","features":[545]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_CONTEXT","features":[545]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_RECORD","features":[545]},{"name":"DEBUG_REQUEST_TARGET_EXCEPTION_THREAD","features":[545]},{"name":"DEBUG_REQUEST_TL_INSTRUMENTATION_AWARE","features":[545]},{"name":"DEBUG_REQUEST_WOW_MODULE","features":[545]},{"name":"DEBUG_REQUEST_WOW_PROCESS","features":[545]},{"name":"DEBUG_SCOPE_GROUP_ALL","features":[545]},{"name":"DEBUG_SCOPE_GROUP_ARGUMENTS","features":[545]},{"name":"DEBUG_SCOPE_GROUP_BY_DATAMODEL","features":[545]},{"name":"DEBUG_SCOPE_GROUP_LOCALS","features":[545]},{"name":"DEBUG_SERVERS_ALL","features":[545]},{"name":"DEBUG_SERVERS_DEBUGGER","features":[545]},{"name":"DEBUG_SERVERS_PROCESS","features":[545]},{"name":"DEBUG_SESSION_ACTIVE","features":[545]},{"name":"DEBUG_SESSION_END","features":[545]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_DETACH","features":[545]},{"name":"DEBUG_SESSION_END_SESSION_ACTIVE_TERMINATE","features":[545]},{"name":"DEBUG_SESSION_END_SESSION_PASSIVE","features":[545]},{"name":"DEBUG_SESSION_FAILURE","features":[545]},{"name":"DEBUG_SESSION_HIBERNATE","features":[545]},{"name":"DEBUG_SESSION_REBOOT","features":[545]},{"name":"DEBUG_SMBIOS_INFO","features":[545]},{"name":"DEBUG_SOURCE_IS_STATEMENT","features":[545]},{"name":"DEBUG_SPECIFIC_FILTER_PARAMETERS","features":[545]},{"name":"DEBUG_SRCFILE_SYMBOL_CHECKSUMINFO","features":[545]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN","features":[545]},{"name":"DEBUG_SRCFILE_SYMBOL_TOKEN_SOURCE_COMMAND_WIDE","features":[545]},{"name":"DEBUG_STACK_ARGUMENTS","features":[545]},{"name":"DEBUG_STACK_COLUMN_NAMES","features":[545]},{"name":"DEBUG_STACK_DML","features":[545]},{"name":"DEBUG_STACK_FRAME","features":[305,545]},{"name":"DEBUG_STACK_FRAME_ADDRESSES","features":[545]},{"name":"DEBUG_STACK_FRAME_ADDRESSES_RA_ONLY","features":[545]},{"name":"DEBUG_STACK_FRAME_ARCH","features":[545]},{"name":"DEBUG_STACK_FRAME_EX","features":[305,545]},{"name":"DEBUG_STACK_FRAME_MEMORY_USAGE","features":[545]},{"name":"DEBUG_STACK_FRAME_NUMBERS","features":[545]},{"name":"DEBUG_STACK_FRAME_OFFSETS","features":[545]},{"name":"DEBUG_STACK_FUNCTION_INFO","features":[545]},{"name":"DEBUG_STACK_NONVOLATILE_REGISTERS","features":[545]},{"name":"DEBUG_STACK_PARAMETERS","features":[545]},{"name":"DEBUG_STACK_PARAMETERS_NEWLINE","features":[545]},{"name":"DEBUG_STACK_PROVIDER","features":[545]},{"name":"DEBUG_STACK_SOURCE_LINE","features":[545]},{"name":"DEBUG_STATUS_BREAK","features":[545]},{"name":"DEBUG_STATUS_GO","features":[545]},{"name":"DEBUG_STATUS_GO_HANDLED","features":[545]},{"name":"DEBUG_STATUS_GO_NOT_HANDLED","features":[545]},{"name":"DEBUG_STATUS_IGNORE_EVENT","features":[545]},{"name":"DEBUG_STATUS_INSIDE_WAIT","features":[545]},{"name":"DEBUG_STATUS_MASK","features":[545]},{"name":"DEBUG_STATUS_NO_CHANGE","features":[545]},{"name":"DEBUG_STATUS_NO_DEBUGGEE","features":[545]},{"name":"DEBUG_STATUS_OUT_OF_SYNC","features":[545]},{"name":"DEBUG_STATUS_RESTART_REQUESTED","features":[545]},{"name":"DEBUG_STATUS_REVERSE_GO","features":[545]},{"name":"DEBUG_STATUS_REVERSE_STEP_BRANCH","features":[545]},{"name":"DEBUG_STATUS_REVERSE_STEP_INTO","features":[545]},{"name":"DEBUG_STATUS_REVERSE_STEP_OVER","features":[545]},{"name":"DEBUG_STATUS_STEP_BRANCH","features":[545]},{"name":"DEBUG_STATUS_STEP_INTO","features":[545]},{"name":"DEBUG_STATUS_STEP_OVER","features":[545]},{"name":"DEBUG_STATUS_TIMEOUT","features":[545]},{"name":"DEBUG_STATUS_WAIT_INPUT","features":[545]},{"name":"DEBUG_STATUS_WAIT_TIMEOUT","features":[545]},{"name":"DEBUG_SYMBOL_ENTRY","features":[545]},{"name":"DEBUG_SYMBOL_EXPANDED","features":[545]},{"name":"DEBUG_SYMBOL_EXPANSION_LEVEL_MASK","features":[545]},{"name":"DEBUG_SYMBOL_IS_ARGUMENT","features":[545]},{"name":"DEBUG_SYMBOL_IS_ARRAY","features":[545]},{"name":"DEBUG_SYMBOL_IS_FLOAT","features":[545]},{"name":"DEBUG_SYMBOL_IS_LOCAL","features":[545]},{"name":"DEBUG_SYMBOL_PARAMETERS","features":[545]},{"name":"DEBUG_SYMBOL_READ_ONLY","features":[545]},{"name":"DEBUG_SYMBOL_SOURCE_ENTRY","features":[545]},{"name":"DEBUG_SYMENT_IS_CODE","features":[545]},{"name":"DEBUG_SYMENT_IS_DATA","features":[545]},{"name":"DEBUG_SYMENT_IS_LOCAL","features":[545]},{"name":"DEBUG_SYMENT_IS_MANAGED","features":[545]},{"name":"DEBUG_SYMENT_IS_PARAMETER","features":[545]},{"name":"DEBUG_SYMENT_IS_SYNTHETIC","features":[545]},{"name":"DEBUG_SYMINFO_BREAKPOINT_SOURCE_LINE","features":[545]},{"name":"DEBUG_SYMINFO_GET_MODULE_SYMBOL_NAMES_AND_OFFSETS","features":[545]},{"name":"DEBUG_SYMINFO_GET_SYMBOL_NAME_BY_OFFSET_AND_TAG_WIDE","features":[545]},{"name":"DEBUG_SYMINFO_IMAGEHLP_MODULEW64","features":[545]},{"name":"DEBUG_SYMTYPE_CODEVIEW","features":[545]},{"name":"DEBUG_SYMTYPE_COFF","features":[545]},{"name":"DEBUG_SYMTYPE_DEFERRED","features":[545]},{"name":"DEBUG_SYMTYPE_DIA","features":[545]},{"name":"DEBUG_SYMTYPE_EXPORT","features":[545]},{"name":"DEBUG_SYMTYPE_NONE","features":[545]},{"name":"DEBUG_SYMTYPE_PDB","features":[545]},{"name":"DEBUG_SYMTYPE_SYM","features":[545]},{"name":"DEBUG_SYSOBJINFO_CURRENT_PROCESS_COOKIE","features":[545]},{"name":"DEBUG_SYSOBJINFO_THREAD_BASIC_INFORMATION","features":[545]},{"name":"DEBUG_SYSOBJINFO_THREAD_NAME_WIDE","features":[545]},{"name":"DEBUG_SYSVERSTR_BUILD","features":[545]},{"name":"DEBUG_SYSVERSTR_SERVICE_PACK","features":[545]},{"name":"DEBUG_TBINFO_AFFINITY","features":[545]},{"name":"DEBUG_TBINFO_ALL","features":[545]},{"name":"DEBUG_TBINFO_EXIT_STATUS","features":[545]},{"name":"DEBUG_TBINFO_PRIORITY","features":[545]},{"name":"DEBUG_TBINFO_PRIORITY_CLASS","features":[545]},{"name":"DEBUG_TBINFO_START_OFFSET","features":[545]},{"name":"DEBUG_TBINFO_TIMES","features":[545]},{"name":"DEBUG_THREAD_BASIC_INFORMATION","features":[545]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO","features":[545]},{"name":"DEBUG_TRIAGE_FOLLOWUP_INFO_2","features":[545]},{"name":"DEBUG_TYPED_DATA","features":[545]},{"name":"DEBUG_TYPED_DATA_IS_IN_MEMORY","features":[545]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_CACHED","features":[545]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_DEFAULT","features":[545]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_MEMORY","features":[545]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_UNCACHED","features":[545]},{"name":"DEBUG_TYPED_DATA_PHYSICAL_WRITE_COMBINED","features":[545]},{"name":"DEBUG_TYPEOPTS_FORCERADIX_OUTPUT","features":[545]},{"name":"DEBUG_TYPEOPTS_LONGSTATUS_DISPLAY","features":[545]},{"name":"DEBUG_TYPEOPTS_MATCH_MAXSIZE","features":[545]},{"name":"DEBUG_TYPEOPTS_UNICODE_DISPLAY","features":[545]},{"name":"DEBUG_USER_WINDOWS_DUMP","features":[545]},{"name":"DEBUG_USER_WINDOWS_DUMP_WINDOWS_CE","features":[545]},{"name":"DEBUG_USER_WINDOWS_IDNA","features":[545]},{"name":"DEBUG_USER_WINDOWS_PROCESS","features":[545]},{"name":"DEBUG_USER_WINDOWS_PROCESS_SERVER","features":[545]},{"name":"DEBUG_USER_WINDOWS_REPT","features":[545]},{"name":"DEBUG_USER_WINDOWS_SMALL_DUMP","features":[545]},{"name":"DEBUG_VALUE","features":[305,545]},{"name":"DEBUG_VALUE_FLOAT128","features":[545]},{"name":"DEBUG_VALUE_FLOAT32","features":[545]},{"name":"DEBUG_VALUE_FLOAT64","features":[545]},{"name":"DEBUG_VALUE_FLOAT80","features":[545]},{"name":"DEBUG_VALUE_FLOAT82","features":[545]},{"name":"DEBUG_VALUE_INT16","features":[545]},{"name":"DEBUG_VALUE_INT32","features":[545]},{"name":"DEBUG_VALUE_INT64","features":[545]},{"name":"DEBUG_VALUE_INT8","features":[545]},{"name":"DEBUG_VALUE_INVALID","features":[545]},{"name":"DEBUG_VALUE_TYPES","features":[545]},{"name":"DEBUG_VALUE_VECTOR128","features":[545]},{"name":"DEBUG_VALUE_VECTOR64","features":[545]},{"name":"DEBUG_VSEARCH_DEFAULT","features":[545]},{"name":"DEBUG_VSEARCH_WRITABLE_ONLY","features":[545]},{"name":"DEBUG_VSOURCE_DEBUGGEE","features":[545]},{"name":"DEBUG_VSOURCE_DUMP_WITHOUT_MEMINFO","features":[545]},{"name":"DEBUG_VSOURCE_INVALID","features":[545]},{"name":"DEBUG_VSOURCE_MAPPED_IMAGE","features":[545]},{"name":"DEBUG_WAIT_DEFAULT","features":[545]},{"name":"DISK_READ_0_BYTES","features":[545]},{"name":"DISK_WRITE","features":[545]},{"name":"DUMP_HANDLE_FLAG_CID_TABLE","features":[545]},{"name":"DUMP_HANDLE_FLAG_KERNEL_TABLE","features":[545]},{"name":"DUMP_HANDLE_FLAG_PRINT_FREE_ENTRY","features":[545]},{"name":"DUMP_HANDLE_FLAG_PRINT_OBJECT","features":[545]},{"name":"DbgPoolRegionMax","features":[545]},{"name":"DbgPoolRegionNonPaged","features":[545]},{"name":"DbgPoolRegionNonPagedExpansion","features":[545]},{"name":"DbgPoolRegionPaged","features":[545]},{"name":"DbgPoolRegionSessionPaged","features":[545]},{"name":"DbgPoolRegionSpecial","features":[545]},{"name":"DbgPoolRegionUnknown","features":[545]},{"name":"DebugBaseEventCallbacks","features":[545]},{"name":"DebugBaseEventCallbacksWide","features":[545]},{"name":"DebugConnect","features":[545]},{"name":"DebugConnectWide","features":[545]},{"name":"DebugCreate","features":[545]},{"name":"DebugCreateEx","features":[545]},{"name":"ENTRY_CALLBACK","features":[545]},{"name":"ERROR_DBG_CANCELLED","features":[545]},{"name":"ERROR_DBG_TIMEOUT","features":[545]},{"name":"EXIT_ON_CONTROLC","features":[545]},{"name":"EXIT_STATUS","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_BINDIR_SYMSRV","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_SYMDIR_SYMSRV","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64BINDIR_SYMSRV","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR","features":[545]},{"name":"EXTDLL_DATA_QUERY_BUILD_WOW64SYMDIR_SYMSRV","features":[545]},{"name":"EXTDLL_ITERATERTLBALANCEDNODES","features":[545]},{"name":"EXTDLL_QUERYDATABYTAG","features":[545]},{"name":"EXTDLL_QUERYDATABYTAGEX","features":[545]},{"name":"EXTSTACKTRACE","features":[545]},{"name":"EXTSTACKTRACE32","features":[545]},{"name":"EXTSTACKTRACE64","features":[545]},{"name":"EXTS_JOB_PROCESS_CALLBACK","features":[305,545]},{"name":"EXTS_TABLE_ENTRY_CALLBACK","features":[305,545]},{"name":"EXT_ANALYSIS_PLUGIN","features":[545]},{"name":"EXT_ANALYZER","features":[545]},{"name":"EXT_ANALYZER_FLAG_ID","features":[545]},{"name":"EXT_ANALYZER_FLAG_MOD","features":[545]},{"name":"EXT_API_VERSION","features":[545]},{"name":"EXT_API_VERSION_NUMBER","features":[545]},{"name":"EXT_API_VERSION_NUMBER32","features":[545]},{"name":"EXT_API_VERSION_NUMBER64","features":[545]},{"name":"EXT_CAB_XML_DATA","features":[545]},{"name":"EXT_DECODE_ERROR","features":[305,545]},{"name":"EXT_FIND_FILE","features":[305,545]},{"name":"EXT_FIND_FILE_ALLOW_GIVEN_PATH","features":[545]},{"name":"EXT_GET_DEBUG_FAILURE_ANALYSIS","features":[545]},{"name":"EXT_GET_ENVIRONMENT_VARIABLE","features":[545]},{"name":"EXT_GET_FAILURE_ANALYSIS","features":[545]},{"name":"EXT_GET_FA_ENTRIES_DATA","features":[545]},{"name":"EXT_GET_HANDLE_TRACE","features":[545]},{"name":"EXT_MATCH_PATTERN_A","features":[545]},{"name":"EXT_RELOAD_TRIAGER","features":[545]},{"name":"EXT_TARGET_INFO","features":[545]},{"name":"EXT_TDF_PHYSICAL_CACHED","features":[545]},{"name":"EXT_TDF_PHYSICAL_DEFAULT","features":[545]},{"name":"EXT_TDF_PHYSICAL_MEMORY","features":[545]},{"name":"EXT_TDF_PHYSICAL_UNCACHED","features":[545]},{"name":"EXT_TDF_PHYSICAL_WRITE_COMBINED","features":[545]},{"name":"EXT_TDOP","features":[545]},{"name":"EXT_TDOP_COPY","features":[545]},{"name":"EXT_TDOP_COUNT","features":[545]},{"name":"EXT_TDOP_EVALUATE","features":[545]},{"name":"EXT_TDOP_GET_ARRAY_ELEMENT","features":[545]},{"name":"EXT_TDOP_GET_DEREFERENCE","features":[545]},{"name":"EXT_TDOP_GET_FIELD","features":[545]},{"name":"EXT_TDOP_GET_FIELD_OFFSET","features":[545]},{"name":"EXT_TDOP_GET_POINTER_TO","features":[545]},{"name":"EXT_TDOP_GET_TYPE_NAME","features":[545]},{"name":"EXT_TDOP_GET_TYPE_SIZE","features":[545]},{"name":"EXT_TDOP_HAS_FIELD","features":[545]},{"name":"EXT_TDOP_OUTPUT_FULL_VALUE","features":[545]},{"name":"EXT_TDOP_OUTPUT_SIMPLE_VALUE","features":[545]},{"name":"EXT_TDOP_OUTPUT_TYPE_DEFINITION","features":[545]},{"name":"EXT_TDOP_OUTPUT_TYPE_NAME","features":[545]},{"name":"EXT_TDOP_RELEASE","features":[545]},{"name":"EXT_TDOP_SET_FROM_EXPR","features":[545]},{"name":"EXT_TDOP_SET_FROM_TYPE_ID_AND_U64","features":[545]},{"name":"EXT_TDOP_SET_FROM_U64_EXPR","features":[545]},{"name":"EXT_TDOP_SET_PTR_FROM_TYPE_ID_AND_U64","features":[545]},{"name":"EXT_TRIAGE_FOLLOWUP","features":[545]},{"name":"EXT_TYPED_DATA","features":[545]},{"name":"EXT_XML_DATA","features":[545]},{"name":"ErrorClass","features":[545]},{"name":"ErrorClassError","features":[545]},{"name":"ErrorClassWarning","features":[545]},{"name":"FAILURE_ANALYSIS_ASSUME_HANG","features":[545]},{"name":"FAILURE_ANALYSIS_AUTOBUG_PROCESSING","features":[545]},{"name":"FAILURE_ANALYSIS_AUTOSET_SYMPATH","features":[545]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML","features":[545]},{"name":"FAILURE_ANALYSIS_CALLSTACK_XML_FULL_SOURCE_INFO","features":[545]},{"name":"FAILURE_ANALYSIS_CREATE_INSTANCE","features":[545]},{"name":"FAILURE_ANALYSIS_EXCEPTION_AS_HANG","features":[545]},{"name":"FAILURE_ANALYSIS_HEAP_CORRUPTION_BLAME_FUNCTION","features":[545]},{"name":"FAILURE_ANALYSIS_IGNORE_BREAKIN","features":[545]},{"name":"FAILURE_ANALYSIS_LIVE_DEBUG_HOLD_CHECK","features":[545]},{"name":"FAILURE_ANALYSIS_MODULE_INFO_XML","features":[545]},{"name":"FAILURE_ANALYSIS_MULTI_TARGET","features":[545]},{"name":"FAILURE_ANALYSIS_NO_DB_LOOKUP","features":[545]},{"name":"FAILURE_ANALYSIS_NO_IMAGE_CORRUPTION","features":[545]},{"name":"FAILURE_ANALYSIS_PERMIT_HEAP_ACCESS_VIOLATIONS","features":[545]},{"name":"FAILURE_ANALYSIS_REGISTRY_DATA","features":[545]},{"name":"FAILURE_ANALYSIS_SET_FAILURE_CONTEXT","features":[545]},{"name":"FAILURE_ANALYSIS_SHOW_SOURCE","features":[545]},{"name":"FAILURE_ANALYSIS_SHOW_WCT_STACKS","features":[545]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES","features":[545]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_ALL","features":[545]},{"name":"FAILURE_ANALYSIS_USER_ATTRIBUTES_FRAMES","features":[545]},{"name":"FAILURE_ANALYSIS_VERBOSE","features":[545]},{"name":"FAILURE_ANALYSIS_WMI_QUERY_DATA","features":[545]},{"name":"FAILURE_ANALYSIS_XML_FILE_OUTPUT","features":[545]},{"name":"FAILURE_ANALYSIS_XML_OUTPUT","features":[545]},{"name":"FAILURE_ANALYSIS_XSD_VERIFY","features":[545]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_INPUT","features":[545]},{"name":"FAILURE_ANALYSIS_XSLT_FILE_OUTPUT","features":[545]},{"name":"FA_ENTRY","features":[545]},{"name":"FA_ENTRY_TYPE","features":[545]},{"name":"FA_EXTENSION_PLUGIN_PHASE","features":[545]},{"name":"FA_PLUGIN_INITIALIZATION","features":[545]},{"name":"FA_PLUGIN_POST_BUCKETING","features":[545]},{"name":"FA_PLUGIN_PRE_BUCKETING","features":[545]},{"name":"FA_PLUGIN_STACK_ANALYSIS","features":[545]},{"name":"FIELDS_DID_NOT_MATCH","features":[545]},{"name":"FIELD_INFO","features":[545]},{"name":"FormatBSTRString","features":[545]},{"name":"FormatEnumNameOnly","features":[545]},{"name":"FormatEscapedStringWithQuote","features":[545]},{"name":"FormatHString","features":[545]},{"name":"FormatNone","features":[545]},{"name":"FormatQuotedHString","features":[545]},{"name":"FormatQuotedString","features":[545]},{"name":"FormatQuotedUTF32String","features":[545]},{"name":"FormatQuotedUTF8String","features":[545]},{"name":"FormatQuotedUnicodeString","features":[545]},{"name":"FormatRaw","features":[545]},{"name":"FormatSingleCharacter","features":[545]},{"name":"FormatString","features":[545]},{"name":"FormatUTF32String","features":[545]},{"name":"FormatUTF8String","features":[545]},{"name":"FormatUnicodeString","features":[545]},{"name":"GET_CONTEXT_EX","features":[545]},{"name":"GET_CURRENT_PROCESS_ADDRESS","features":[545]},{"name":"GET_CURRENT_THREAD_ADDRESS","features":[545]},{"name":"GET_EXPRESSION_EX","features":[545]},{"name":"GET_INPUT_LINE","features":[545]},{"name":"GET_PEB_ADDRESS","features":[545]},{"name":"GET_SET_SYMPATH","features":[545]},{"name":"GET_TEB_ADDRESS","features":[545]},{"name":"ICodeAddressConcept","features":[545]},{"name":"IComparableConcept","features":[545]},{"name":"IDataModelConcept","features":[545]},{"name":"IDataModelManager","features":[545]},{"name":"IDataModelManager2","features":[545]},{"name":"IDataModelNameBinder","features":[545]},{"name":"IDataModelScript","features":[545]},{"name":"IDataModelScriptClient","features":[545]},{"name":"IDataModelScriptDebug","features":[545]},{"name":"IDataModelScriptDebug2","features":[545]},{"name":"IDataModelScriptDebugBreakpoint","features":[545]},{"name":"IDataModelScriptDebugBreakpointEnumerator","features":[545]},{"name":"IDataModelScriptDebugClient","features":[545]},{"name":"IDataModelScriptDebugStack","features":[545]},{"name":"IDataModelScriptDebugStackFrame","features":[545]},{"name":"IDataModelScriptDebugVariableSetEnumerator","features":[545]},{"name":"IDataModelScriptHostContext","features":[545]},{"name":"IDataModelScriptManager","features":[545]},{"name":"IDataModelScriptProvider","features":[545]},{"name":"IDataModelScriptProviderEnumerator","features":[545]},{"name":"IDataModelScriptTemplate","features":[545]},{"name":"IDataModelScriptTemplateEnumerator","features":[545]},{"name":"IDebugAdvanced","features":[545]},{"name":"IDebugAdvanced2","features":[545]},{"name":"IDebugAdvanced3","features":[545]},{"name":"IDebugAdvanced4","features":[545]},{"name":"IDebugBreakpoint","features":[545]},{"name":"IDebugBreakpoint2","features":[545]},{"name":"IDebugBreakpoint3","features":[545]},{"name":"IDebugClient","features":[545]},{"name":"IDebugClient2","features":[545]},{"name":"IDebugClient3","features":[545]},{"name":"IDebugClient4","features":[545]},{"name":"IDebugClient5","features":[545]},{"name":"IDebugClient6","features":[545]},{"name":"IDebugClient7","features":[545]},{"name":"IDebugClient8","features":[545]},{"name":"IDebugControl","features":[545]},{"name":"IDebugControl2","features":[545]},{"name":"IDebugControl3","features":[545]},{"name":"IDebugControl4","features":[545]},{"name":"IDebugControl5","features":[545]},{"name":"IDebugControl6","features":[545]},{"name":"IDebugControl7","features":[545]},{"name":"IDebugDataSpaces","features":[545]},{"name":"IDebugDataSpaces2","features":[545]},{"name":"IDebugDataSpaces3","features":[545]},{"name":"IDebugDataSpaces4","features":[545]},{"name":"IDebugEventCallbacks","features":[545]},{"name":"IDebugEventCallbacksWide","features":[545]},{"name":"IDebugEventContextCallbacks","features":[545]},{"name":"IDebugFAEntryTags","features":[545]},{"name":"IDebugFailureAnalysis","features":[545]},{"name":"IDebugFailureAnalysis2","features":[545]},{"name":"IDebugFailureAnalysis3","features":[545]},{"name":"IDebugHost","features":[545]},{"name":"IDebugHostBaseClass","features":[545]},{"name":"IDebugHostConstant","features":[545]},{"name":"IDebugHostContext","features":[545]},{"name":"IDebugHostData","features":[545]},{"name":"IDebugHostErrorSink","features":[545]},{"name":"IDebugHostEvaluator","features":[545]},{"name":"IDebugHostEvaluator2","features":[545]},{"name":"IDebugHostExtensibility","features":[545]},{"name":"IDebugHostField","features":[545]},{"name":"IDebugHostMemory","features":[545]},{"name":"IDebugHostMemory2","features":[545]},{"name":"IDebugHostModule","features":[545]},{"name":"IDebugHostModule2","features":[545]},{"name":"IDebugHostModuleSignature","features":[545]},{"name":"IDebugHostPublic","features":[545]},{"name":"IDebugHostScriptHost","features":[545]},{"name":"IDebugHostStatus","features":[545]},{"name":"IDebugHostSymbol","features":[545]},{"name":"IDebugHostSymbol2","features":[545]},{"name":"IDebugHostSymbolEnumerator","features":[545]},{"name":"IDebugHostSymbols","features":[545]},{"name":"IDebugHostType","features":[545]},{"name":"IDebugHostType2","features":[545]},{"name":"IDebugHostTypeSignature","features":[545]},{"name":"IDebugInputCallbacks","features":[545]},{"name":"IDebugOutputCallbacks","features":[545]},{"name":"IDebugOutputCallbacks2","features":[545]},{"name":"IDebugOutputCallbacksWide","features":[545]},{"name":"IDebugOutputStream","features":[545]},{"name":"IDebugPlmClient","features":[545]},{"name":"IDebugPlmClient2","features":[545]},{"name":"IDebugPlmClient3","features":[545]},{"name":"IDebugRegisters","features":[545]},{"name":"IDebugRegisters2","features":[545]},{"name":"IDebugSymbolGroup","features":[545]},{"name":"IDebugSymbolGroup2","features":[545]},{"name":"IDebugSymbols","features":[545]},{"name":"IDebugSymbols2","features":[545]},{"name":"IDebugSymbols3","features":[545]},{"name":"IDebugSymbols4","features":[545]},{"name":"IDebugSymbols5","features":[545]},{"name":"IDebugSystemObjects","features":[545]},{"name":"IDebugSystemObjects2","features":[545]},{"name":"IDebugSystemObjects3","features":[545]},{"name":"IDebugSystemObjects4","features":[545]},{"name":"IDynamicConceptProviderConcept","features":[545]},{"name":"IDynamicKeyProviderConcept","features":[545]},{"name":"IEquatableConcept","features":[545]},{"name":"IG_DISASSEMBLE_BUFFER","features":[545]},{"name":"IG_DUMP_SYMBOL_INFO","features":[545]},{"name":"IG_FIND_FILE","features":[545]},{"name":"IG_GET_ANY_MODULE_IN_RANGE","features":[545]},{"name":"IG_GET_BUS_DATA","features":[545]},{"name":"IG_GET_CACHE_SIZE","features":[545]},{"name":"IG_GET_CLR_DATA_INTERFACE","features":[545]},{"name":"IG_GET_CONTEXT_EX","features":[545]},{"name":"IG_GET_CURRENT_PROCESS","features":[545]},{"name":"IG_GET_CURRENT_PROCESS_HANDLE","features":[545]},{"name":"IG_GET_CURRENT_THREAD","features":[545]},{"name":"IG_GET_DEBUGGER_DATA","features":[545]},{"name":"IG_GET_EXCEPTION_RECORD","features":[545]},{"name":"IG_GET_EXPRESSION_EX","features":[545]},{"name":"IG_GET_INPUT_LINE","features":[545]},{"name":"IG_GET_KERNEL_VERSION","features":[545]},{"name":"IG_GET_PEB_ADDRESS","features":[545]},{"name":"IG_GET_SET_SYMPATH","features":[545]},{"name":"IG_GET_TEB_ADDRESS","features":[545]},{"name":"IG_GET_THREAD_OS_INFO","features":[545]},{"name":"IG_GET_TYPE_SIZE","features":[545]},{"name":"IG_IS_PTR64","features":[545]},{"name":"IG_KD_CONTEXT","features":[545]},{"name":"IG_KSTACK_HELP","features":[545]},{"name":"IG_LOWMEM_CHECK","features":[545]},{"name":"IG_MATCH_PATTERN_A","features":[545]},{"name":"IG_OBSOLETE_PLACEHOLDER_36","features":[545]},{"name":"IG_PHYSICAL_TO_VIRTUAL","features":[545]},{"name":"IG_POINTER_SEARCH_PHYSICAL","features":[545]},{"name":"IG_QUERY_TARGET_INTERFACE","features":[545]},{"name":"IG_READ_CONTROL_SPACE","features":[545]},{"name":"IG_READ_IO_SPACE","features":[545]},{"name":"IG_READ_IO_SPACE_EX","features":[545]},{"name":"IG_READ_MSR","features":[545]},{"name":"IG_READ_PHYSICAL","features":[545]},{"name":"IG_READ_PHYSICAL_WITH_FLAGS","features":[545]},{"name":"IG_RELOAD_SYMBOLS","features":[545]},{"name":"IG_SEARCH_MEMORY","features":[545]},{"name":"IG_SET_BUS_DATA","features":[545]},{"name":"IG_SET_THREAD","features":[545]},{"name":"IG_TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[545]},{"name":"IG_TYPED_DATA","features":[545]},{"name":"IG_TYPED_DATA_OBSOLETE","features":[545]},{"name":"IG_VIRTUAL_TO_PHYSICAL","features":[545]},{"name":"IG_WRITE_CONTROL_SPACE","features":[545]},{"name":"IG_WRITE_IO_SPACE","features":[545]},{"name":"IG_WRITE_IO_SPACE_EX","features":[545]},{"name":"IG_WRITE_MSR","features":[545]},{"name":"IG_WRITE_PHYSICAL","features":[545]},{"name":"IG_WRITE_PHYSICAL_WITH_FLAGS","features":[545]},{"name":"IHostDataModelAccess","features":[545]},{"name":"IIndexableConcept","features":[545]},{"name":"IIterableConcept","features":[545]},{"name":"IKeyEnumerator","features":[545]},{"name":"IKeyStore","features":[545]},{"name":"IModelIterator","features":[545]},{"name":"IModelKeyReference","features":[545]},{"name":"IModelKeyReference2","features":[545]},{"name":"IModelMethod","features":[545]},{"name":"IModelObject","features":[545]},{"name":"IModelPropertyAccessor","features":[545]},{"name":"INCORRECT_VERSION_INFO","features":[545]},{"name":"INLINE_FRAME_CONTEXT","features":[545]},{"name":"INSUFFICIENT_SPACE_TO_COPY","features":[545]},{"name":"IOSPACE","features":[545]},{"name":"IOSPACE32","features":[545]},{"name":"IOSPACE64","features":[545]},{"name":"IOSPACE_EX","features":[545]},{"name":"IOSPACE_EX32","features":[545]},{"name":"IOSPACE_EX64","features":[545]},{"name":"IPreferredRuntimeTypeConcept","features":[545]},{"name":"IRawEnumerator","features":[545]},{"name":"IStringDisplayableConcept","features":[545]},{"name":"Identical","features":[545]},{"name":"IntrinsicBool","features":[545]},{"name":"IntrinsicChar","features":[545]},{"name":"IntrinsicChar16","features":[545]},{"name":"IntrinsicChar32","features":[545]},{"name":"IntrinsicFloat","features":[545]},{"name":"IntrinsicHRESULT","features":[545]},{"name":"IntrinsicInt","features":[545]},{"name":"IntrinsicKind","features":[545]},{"name":"IntrinsicLong","features":[545]},{"name":"IntrinsicUInt","features":[545]},{"name":"IntrinsicULong","features":[545]},{"name":"IntrinsicVoid","features":[545]},{"name":"IntrinsicWChar","features":[545]},{"name":"KDDEBUGGER_DATA32","features":[545,311]},{"name":"KDDEBUGGER_DATA64","features":[545,311]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE","features":[305,545]},{"name":"KDEXTS_LOCK_CALLBACKROUTINE_DEFINED","features":[545]},{"name":"KDEXTS_LOCK_INFO","features":[305,545]},{"name":"KDEXTS_PTE_INFO","features":[545]},{"name":"KDEXT_DUMP_HANDLE_CALLBACK","features":[305,545]},{"name":"KDEXT_FILELOCK_OWNER","features":[545]},{"name":"KDEXT_HANDLE_INFORMATION","features":[305,545]},{"name":"KDEXT_PROCESS_FIND_PARAMS","features":[545]},{"name":"KDEXT_THREAD_FIND_PARAMS","features":[545]},{"name":"KD_SECONDARY_VERSION_AMD64_CONTEXT","features":[545]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_1","features":[545]},{"name":"KD_SECONDARY_VERSION_AMD64_OBSOLETE_CONTEXT_2","features":[545]},{"name":"KD_SECONDARY_VERSION_DEFAULT","features":[545]},{"name":"LanguageAssembly","features":[545]},{"name":"LanguageC","features":[545]},{"name":"LanguageCPP","features":[545]},{"name":"LanguageKind","features":[545]},{"name":"LanguageUnknown","features":[545]},{"name":"LessSpecific","features":[545]},{"name":"Location","features":[545]},{"name":"LocationConstant","features":[545]},{"name":"LocationKind","features":[545]},{"name":"LocationMember","features":[545]},{"name":"LocationNone","features":[545]},{"name":"LocationStatic","features":[545]},{"name":"MAX_STACK_IN_BYTES","features":[545]},{"name":"MEMORY_READ_ERROR","features":[545]},{"name":"MODULE_ORDERS_LOADTIME","features":[545]},{"name":"MODULE_ORDERS_MASK","features":[545]},{"name":"MODULE_ORDERS_MODULENAME","features":[545]},{"name":"ModelObjectKind","features":[545]},{"name":"MoreSpecific","features":[545]},{"name":"NO_TYPE","features":[545]},{"name":"NT_STATUS_CODE","features":[545]},{"name":"NULL_FIELD_NAME","features":[545]},{"name":"NULL_SYM_DUMP_PARAM","features":[545]},{"name":"OS_INFO","features":[545]},{"name":"OS_INFO_v1","features":[545]},{"name":"OS_TYPE","features":[545]},{"name":"ObjectContext","features":[545]},{"name":"ObjectError","features":[545]},{"name":"ObjectIntrinsic","features":[545]},{"name":"ObjectKeyReference","features":[545]},{"name":"ObjectMethod","features":[545]},{"name":"ObjectNoValue","features":[545]},{"name":"ObjectPropertyAccessor","features":[545]},{"name":"ObjectSynthetic","features":[545]},{"name":"ObjectTargetObject","features":[545]},{"name":"ObjectTargetObjectReference","features":[545]},{"name":"PDEBUG_EXTENSION_CALL","features":[545]},{"name":"PDEBUG_EXTENSION_CANUNLOAD","features":[545]},{"name":"PDEBUG_EXTENSION_INITIALIZE","features":[545]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT","features":[545]},{"name":"PDEBUG_EXTENSION_KNOWN_STRUCT_EX","features":[545]},{"name":"PDEBUG_EXTENSION_NOTIFY","features":[545]},{"name":"PDEBUG_EXTENSION_PROVIDE_VALUE","features":[545]},{"name":"PDEBUG_EXTENSION_QUERY_VALUE_NAMES","features":[545]},{"name":"PDEBUG_EXTENSION_UNINITIALIZE","features":[545]},{"name":"PDEBUG_EXTENSION_UNLOAD","features":[545]},{"name":"PDEBUG_STACK_PROVIDER_BEGINTHREADSTACKRECONSTRUCTION","features":[545]},{"name":"PDEBUG_STACK_PROVIDER_ENDTHREADSTACKRECONSTRUCTION","features":[545]},{"name":"PDEBUG_STACK_PROVIDER_FREESTACKSYMFRAMES","features":[305,545]},{"name":"PDEBUG_STACK_PROVIDER_RECONSTRUCTSTACK","features":[305,545]},{"name":"PENUMERATE_HANDLES","features":[305,545]},{"name":"PENUMERATE_HASH_TABLE","features":[305,545]},{"name":"PENUMERATE_JOB_PROCESSES","features":[305,545]},{"name":"PENUMERATE_SYSTEM_LOCKS","features":[305,545]},{"name":"PFIND_FILELOCK_OWNERINFO","features":[545]},{"name":"PFIND_MATCHING_PROCESS","features":[545]},{"name":"PFIND_MATCHING_THREAD","features":[545]},{"name":"PGET_CPU_MICROCODE_VERSION","features":[545]},{"name":"PGET_CPU_PSPEED_INFO","features":[545]},{"name":"PGET_DEVICE_OBJECT_INFO","features":[305,545]},{"name":"PGET_DRIVER_OBJECT_INFO","features":[545]},{"name":"PGET_FULL_IMAGE_NAME","features":[545]},{"name":"PGET_IRP_INFO","features":[545]},{"name":"PGET_PNP_TRIAGE_INFO","features":[545]},{"name":"PGET_POOL_DATA","features":[545]},{"name":"PGET_POOL_REGION","features":[545]},{"name":"PGET_POOL_TAG_DESCRIPTION","features":[545]},{"name":"PGET_PROCESS_COMMIT","features":[545]},{"name":"PGET_SMBIOS_INFO","features":[545]},{"name":"PHYSICAL","features":[545]},{"name":"PHYSICAL_TO_VIRTUAL","features":[545]},{"name":"PHYSICAL_WITH_FLAGS","features":[545]},{"name":"PHYS_FLAG_CACHED","features":[545]},{"name":"PHYS_FLAG_DEFAULT","features":[545]},{"name":"PHYS_FLAG_UNCACHED","features":[545]},{"name":"PHYS_FLAG_WRITE_COMBINED","features":[545]},{"name":"PKDEXTS_GET_PTE_INFO","features":[545]},{"name":"POINTER_SEARCH_PHYSICAL","features":[545]},{"name":"PROCESSORINFO","features":[545]},{"name":"PROCESS_COMMIT_USAGE","features":[545]},{"name":"PROCESS_END","features":[545]},{"name":"PROCESS_NAME_ENTRY","features":[545]},{"name":"PSYM_DUMP_FIELD_CALLBACK","features":[545]},{"name":"PTR_SEARCH_NO_SYMBOL_CHECK","features":[545]},{"name":"PTR_SEARCH_PHYS_ALL_HITS","features":[545]},{"name":"PTR_SEARCH_PHYS_PTE","features":[545]},{"name":"PTR_SEARCH_PHYS_RANGE_CHECK_ONLY","features":[545]},{"name":"PTR_SEARCH_PHYS_SIZE_SHIFT","features":[545]},{"name":"PWINDBG_CHECK_CONTROL_C","features":[545]},{"name":"PWINDBG_CHECK_VERSION","features":[545]},{"name":"PWINDBG_DISASM","features":[545]},{"name":"PWINDBG_DISASM32","features":[545]},{"name":"PWINDBG_DISASM64","features":[545]},{"name":"PWINDBG_EXTENSION_API_VERSION","features":[545]},{"name":"PWINDBG_EXTENSION_DLL_INIT","features":[545,311]},{"name":"PWINDBG_EXTENSION_DLL_INIT32","features":[545,311]},{"name":"PWINDBG_EXTENSION_DLL_INIT64","features":[545,311]},{"name":"PWINDBG_EXTENSION_ROUTINE","features":[305,545]},{"name":"PWINDBG_EXTENSION_ROUTINE32","features":[305,545]},{"name":"PWINDBG_EXTENSION_ROUTINE64","features":[305,545]},{"name":"PWINDBG_GET_EXPRESSION","features":[545]},{"name":"PWINDBG_GET_EXPRESSION32","features":[545]},{"name":"PWINDBG_GET_EXPRESSION64","features":[545]},{"name":"PWINDBG_GET_SYMBOL","features":[545]},{"name":"PWINDBG_GET_SYMBOL32","features":[545]},{"name":"PWINDBG_GET_SYMBOL64","features":[545]},{"name":"PWINDBG_GET_THREAD_CONTEXT_ROUTINE","features":[545,311]},{"name":"PWINDBG_IOCTL_ROUTINE","features":[545]},{"name":"PWINDBG_OLDKD_EXTENSION_ROUTINE","features":[545]},{"name":"PWINDBG_OLDKD_READ_PHYSICAL_MEMORY","features":[545]},{"name":"PWINDBG_OLDKD_WRITE_PHYSICAL_MEMORY","features":[545]},{"name":"PWINDBG_OLD_EXTENSION_ROUTINE","features":[545,311]},{"name":"PWINDBG_OUTPUT_ROUTINE","features":[545]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE","features":[545]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE32","features":[545]},{"name":"PWINDBG_READ_PROCESS_MEMORY_ROUTINE64","features":[545]},{"name":"PWINDBG_SET_THREAD_CONTEXT_ROUTINE","features":[545,311]},{"name":"PWINDBG_STACKTRACE_ROUTINE","features":[545]},{"name":"PWINDBG_STACKTRACE_ROUTINE32","features":[545]},{"name":"PWINDBG_STACKTRACE_ROUTINE64","features":[545]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE","features":[545]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE32","features":[545]},{"name":"PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE64","features":[545]},{"name":"PointerCXHat","features":[545]},{"name":"PointerKind","features":[545]},{"name":"PointerManagedReference","features":[545]},{"name":"PointerRValueReference","features":[545]},{"name":"PointerReference","features":[545]},{"name":"PointerStandard","features":[545]},{"name":"PreferredFormat","features":[545]},{"name":"READCONTROLSPACE","features":[545]},{"name":"READCONTROLSPACE32","features":[545]},{"name":"READCONTROLSPACE64","features":[545]},{"name":"READ_WRITE_MSR","features":[545]},{"name":"RawSearchFlags","features":[545]},{"name":"RawSearchNoBases","features":[545]},{"name":"RawSearchNone","features":[545]},{"name":"SEARCHMEMORY","features":[545]},{"name":"STACK_FRAME_TYPE_IGNORE","features":[545]},{"name":"STACK_FRAME_TYPE_INIT","features":[545]},{"name":"STACK_FRAME_TYPE_INLINE","features":[545]},{"name":"STACK_FRAME_TYPE_RA","features":[545]},{"name":"STACK_FRAME_TYPE_STACK","features":[545]},{"name":"STACK_SRC_INFO","features":[545]},{"name":"STACK_SYM_FRAME_INFO","features":[305,545]},{"name":"SYMBOL_INFO_EX","features":[545]},{"name":"SYMBOL_TYPE_INDEX_NOT_FOUND","features":[545]},{"name":"SYMBOL_TYPE_INFO_NOT_FOUND","features":[545]},{"name":"SYM_DUMP_PARAM","features":[545]},{"name":"ScriptChangeKind","features":[545]},{"name":"ScriptDebugAsyncBreak","features":[545]},{"name":"ScriptDebugBreak","features":[545]},{"name":"ScriptDebugBreakpoint","features":[545]},{"name":"ScriptDebugEvent","features":[545]},{"name":"ScriptDebugEventFilter","features":[545]},{"name":"ScriptDebugEventFilterAbort","features":[545]},{"name":"ScriptDebugEventFilterEntry","features":[545]},{"name":"ScriptDebugEventFilterException","features":[545]},{"name":"ScriptDebugEventFilterUnhandledException","features":[545]},{"name":"ScriptDebugEventInformation","features":[545]},{"name":"ScriptDebugException","features":[545]},{"name":"ScriptDebugExecuting","features":[545]},{"name":"ScriptDebugNoDebugger","features":[545]},{"name":"ScriptDebugNotExecuting","features":[545]},{"name":"ScriptDebugPosition","features":[545]},{"name":"ScriptDebugState","features":[545]},{"name":"ScriptDebugStep","features":[545]},{"name":"ScriptExecutionKind","features":[545]},{"name":"ScriptExecutionNormal","features":[545]},{"name":"ScriptExecutionStepIn","features":[545]},{"name":"ScriptExecutionStepOut","features":[545]},{"name":"ScriptExecutionStepOver","features":[545]},{"name":"ScriptRename","features":[545]},{"name":"SignatureComparison","features":[545]},{"name":"Symbol","features":[545]},{"name":"SymbolBaseClass","features":[545]},{"name":"SymbolConstant","features":[545]},{"name":"SymbolData","features":[545]},{"name":"SymbolField","features":[545]},{"name":"SymbolFunction","features":[545]},{"name":"SymbolKind","features":[545]},{"name":"SymbolModule","features":[545]},{"name":"SymbolPublic","features":[545]},{"name":"SymbolSearchCaseInsensitive","features":[545]},{"name":"SymbolSearchCompletion","features":[545]},{"name":"SymbolSearchNone","features":[545]},{"name":"SymbolSearchOptions","features":[545]},{"name":"SymbolType","features":[545]},{"name":"TANALYZE_RETURN","features":[545]},{"name":"TARGET_DEBUG_INFO","features":[545]},{"name":"TARGET_DEBUG_INFO_v1","features":[545]},{"name":"TARGET_DEBUG_INFO_v2","features":[545]},{"name":"TRANSLATE_VIRTUAL_TO_PHYSICAL","features":[545]},{"name":"TRIAGE_FOLLOWUP_DEFAULT","features":[545]},{"name":"TRIAGE_FOLLOWUP_FAIL","features":[545]},{"name":"TRIAGE_FOLLOWUP_IGNORE","features":[545]},{"name":"TRIAGE_FOLLOWUP_SUCCESS","features":[545]},{"name":"TypeArray","features":[545]},{"name":"TypeEnum","features":[545]},{"name":"TypeExtendedArray","features":[545]},{"name":"TypeFunction","features":[545]},{"name":"TypeIntrinsic","features":[545]},{"name":"TypeKind","features":[545]},{"name":"TypeMemberPointer","features":[545]},{"name":"TypePointer","features":[545]},{"name":"TypeTypedef","features":[545]},{"name":"TypeUDT","features":[545]},{"name":"UNAVAILABLE_ERROR","features":[545]},{"name":"Unrelated","features":[545]},{"name":"VIRTUAL_TO_PHYSICAL","features":[545]},{"name":"VarArgsCStyle","features":[545]},{"name":"VarArgsKind","features":[545]},{"name":"VarArgsNone","features":[545]},{"name":"WDBGEXTS_ADDRESS_DEFAULT","features":[545]},{"name":"WDBGEXTS_ADDRESS_RESERVED0","features":[545]},{"name":"WDBGEXTS_ADDRESS_SEG16","features":[545]},{"name":"WDBGEXTS_ADDRESS_SEG32","features":[545]},{"name":"WDBGEXTS_CLR_DATA_INTERFACE","features":[545]},{"name":"WDBGEXTS_DISASSEMBLE_BUFFER","features":[545]},{"name":"WDBGEXTS_MODULE_IN_RANGE","features":[545]},{"name":"WDBGEXTS_QUERY_INTERFACE","features":[545]},{"name":"WDBGEXTS_THREAD_OS_INFO","features":[545]},{"name":"WINDBG_EXTENSION_APIS","features":[545,311]},{"name":"WINDBG_EXTENSION_APIS32","features":[545,311]},{"name":"WINDBG_EXTENSION_APIS64","features":[545,311]},{"name":"WINDBG_OLDKD_EXTENSION_APIS","features":[545]},{"name":"WINDBG_OLD_EXTENSION_APIS","features":[545]},{"name":"WIN_95","features":[545]},{"name":"WIN_98","features":[545]},{"name":"WIN_ME","features":[545]},{"name":"WIN_NT4","features":[545]},{"name":"WIN_NT5","features":[545]},{"name":"WIN_NT5_1","features":[545]},{"name":"WIN_NT5_2","features":[545]},{"name":"WIN_NT6_0","features":[545]},{"name":"WIN_NT6_1","features":[545]},{"name":"WIN_UNDEFINED","features":[545]},{"name":"XML_DRIVER_NODE_INFO","features":[545]},{"name":"_EXTSAPI_VER_","features":[545]},{"name":"fnDebugFailureAnalysisCreateInstance","features":[545]}],"558":[{"name":"ALPCGuid","features":[335]},{"name":"CLASSIC_EVENT_ID","features":[335]},{"name":"CLSID_TraceRelogger","features":[335]},{"name":"CONTROLTRACE_HANDLE","features":[335]},{"name":"CTraceRelogger","features":[335]},{"name":"CloseTrace","features":[305,335]},{"name":"ControlTraceA","features":[305,335]},{"name":"ControlTraceW","features":[305,335]},{"name":"CreateTraceInstanceId","features":[305,335]},{"name":"CveEventWrite","features":[335]},{"name":"DECODING_SOURCE","features":[335]},{"name":"DIAG_LOGGER_NAMEA","features":[335]},{"name":"DIAG_LOGGER_NAMEW","features":[335]},{"name":"DecodingSourceMax","features":[335]},{"name":"DecodingSourceTlg","features":[335]},{"name":"DecodingSourceWPP","features":[335]},{"name":"DecodingSourceWbem","features":[335]},{"name":"DecodingSourceXMLFile","features":[335]},{"name":"DefaultTraceSecurityGuid","features":[335]},{"name":"DiskIoGuid","features":[335]},{"name":"ENABLECALLBACK_ENABLED_STATE","features":[335]},{"name":"ENABLE_TRACE_PARAMETERS","features":[335]},{"name":"ENABLE_TRACE_PARAMETERS_V1","features":[335]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION","features":[335]},{"name":"ENABLE_TRACE_PARAMETERS_VERSION_2","features":[335]},{"name":"ETW_ASCIICHAR_TYPE_VALUE","features":[335]},{"name":"ETW_ASCIISTRING_TYPE_VALUE","features":[335]},{"name":"ETW_BOOLEAN_TYPE_VALUE","features":[335]},{"name":"ETW_BOOL_TYPE_VALUE","features":[335]},{"name":"ETW_BUFFER_CALLBACK_INFORMATION","features":[305,335,543]},{"name":"ETW_BUFFER_CONTEXT","features":[335]},{"name":"ETW_BUFFER_HEADER","features":[335]},{"name":"ETW_BYTE_TYPE_VALUE","features":[335]},{"name":"ETW_CHAR_TYPE_VALUE","features":[335]},{"name":"ETW_COMPRESSION_RESUMPTION_MODE","features":[335]},{"name":"ETW_COUNTED_ANSISTRING_TYPE_VALUE","features":[335]},{"name":"ETW_COUNTED_STRING_TYPE_VALUE","features":[335]},{"name":"ETW_DATETIME_TYPE_VALUE","features":[335]},{"name":"ETW_DECIMAL_TYPE_VALUE","features":[335]},{"name":"ETW_DOUBLE_TYPE_VALUE","features":[335]},{"name":"ETW_GUID_TYPE_VALUE","features":[335]},{"name":"ETW_HIDDEN_TYPE_VALUE","features":[335]},{"name":"ETW_INT16_TYPE_VALUE","features":[335]},{"name":"ETW_INT32_TYPE_VALUE","features":[335]},{"name":"ETW_INT64_TYPE_VALUE","features":[335]},{"name":"ETW_NON_NULL_TERMINATED_STRING_TYPE_VALUE","features":[335]},{"name":"ETW_NULL_TYPE_VALUE","features":[335]},{"name":"ETW_OBJECT_TYPE_VALUE","features":[335]},{"name":"ETW_OPEN_TRACE_OPTIONS","features":[305,335,543]},{"name":"ETW_PMC_COUNTER_OWNER","features":[335]},{"name":"ETW_PMC_COUNTER_OWNERSHIP_STATUS","features":[335]},{"name":"ETW_PMC_COUNTER_OWNER_TYPE","features":[335]},{"name":"ETW_PMC_SESSION_INFO","features":[335]},{"name":"ETW_POINTER_TYPE_VALUE","features":[335]},{"name":"ETW_PROCESS_HANDLE_INFO_TYPE","features":[335]},{"name":"ETW_PROCESS_TRACE_MODES","features":[335]},{"name":"ETW_PROCESS_TRACE_MODE_NONE","features":[335]},{"name":"ETW_PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[335]},{"name":"ETW_PROVIDER_TRAIT_TYPE","features":[335]},{"name":"ETW_PTVECTOR_TYPE_VALUE","features":[335]},{"name":"ETW_REDUCED_ANSISTRING_TYPE_VALUE","features":[335]},{"name":"ETW_REDUCED_STRING_TYPE_VALUE","features":[335]},{"name":"ETW_REFRENCE_TYPE_VALUE","features":[335]},{"name":"ETW_REVERSED_COUNTED_ANSISTRING_TYPE_VALUE","features":[335]},{"name":"ETW_REVERSED_COUNTED_STRING_TYPE_VALUE","features":[335]},{"name":"ETW_SBYTE_TYPE_VALUE","features":[335]},{"name":"ETW_SID_TYPE_VALUE","features":[335]},{"name":"ETW_SINGLE_TYPE_VALUE","features":[335]},{"name":"ETW_SIZET_TYPE_VALUE","features":[335]},{"name":"ETW_STRING_TYPE_VALUE","features":[335]},{"name":"ETW_TRACE_PARTITION_INFORMATION","features":[335]},{"name":"ETW_TRACE_PARTITION_INFORMATION_V2","features":[335]},{"name":"ETW_UINT16_TYPE_VALUE","features":[335]},{"name":"ETW_UINT32_TYPE_VALUE","features":[335]},{"name":"ETW_UINT64_TYPE_VALUE","features":[335]},{"name":"ETW_VARIANT_TYPE_VALUE","features":[335]},{"name":"ETW_WMITIME_TYPE_VALUE","features":[335]},{"name":"EVENTMAP_ENTRY_VALUETYPE_STRING","features":[335]},{"name":"EVENTMAP_ENTRY_VALUETYPE_ULONG","features":[335]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_BITMAP","features":[335]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_PATTERNMAP","features":[335]},{"name":"EVENTMAP_INFO_FLAG_MANIFEST_VALUEMAP","features":[335]},{"name":"EVENTMAP_INFO_FLAG_WBEM_BITMAP","features":[335]},{"name":"EVENTMAP_INFO_FLAG_WBEM_FLAG","features":[335]},{"name":"EVENTMAP_INFO_FLAG_WBEM_NO_MAP","features":[335]},{"name":"EVENTMAP_INFO_FLAG_WBEM_VALUEMAP","features":[335]},{"name":"EVENTSECURITYOPERATION","features":[335]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_ID","features":[335]},{"name":"EVENT_ACTIVITY_CTRL_CREATE_SET_ID","features":[335]},{"name":"EVENT_ACTIVITY_CTRL_GET_ID","features":[335]},{"name":"EVENT_ACTIVITY_CTRL_GET_SET_ID","features":[335]},{"name":"EVENT_ACTIVITY_CTRL_SET_ID","features":[335]},{"name":"EVENT_CONTROL_CODE_CAPTURE_STATE","features":[335]},{"name":"EVENT_CONTROL_CODE_DISABLE_PROVIDER","features":[335]},{"name":"EVENT_CONTROL_CODE_ENABLE_PROVIDER","features":[335]},{"name":"EVENT_DATA_DESCRIPTOR","features":[335]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_EVENT_METADATA","features":[335]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_NONE","features":[335]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_PROVIDER_METADATA","features":[335]},{"name":"EVENT_DATA_DESCRIPTOR_TYPE_TIMESTAMP_OVERRIDE","features":[335]},{"name":"EVENT_DESCRIPTOR","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_KEYWORD_0","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_ENABLE_SILOS","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_EVENT_KEY","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_EXCLUDE_INPRIVATE","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_IGNORE_KEYWORD_0","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_PROCESS_START_KEY","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_PROVIDER_GROUP","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_PSM_KEY","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_SID","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_SOURCE_CONTAINER_TRACKING","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_STACK_TRACE","features":[335]},{"name":"EVENT_ENABLE_PROPERTY_TS_ID","features":[335]},{"name":"EVENT_EXTENDED_ITEM_EVENT_KEY","features":[335]},{"name":"EVENT_EXTENDED_ITEM_INSTANCE","features":[335]},{"name":"EVENT_EXTENDED_ITEM_PEBS_INDEX","features":[335]},{"name":"EVENT_EXTENDED_ITEM_PMC_COUNTERS","features":[335]},{"name":"EVENT_EXTENDED_ITEM_PROCESS_START_KEY","features":[335]},{"name":"EVENT_EXTENDED_ITEM_RELATED_ACTIVITYID","features":[335]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY32","features":[335]},{"name":"EVENT_EXTENDED_ITEM_STACK_KEY64","features":[335]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE32","features":[335]},{"name":"EVENT_EXTENDED_ITEM_STACK_TRACE64","features":[335]},{"name":"EVENT_EXTENDED_ITEM_TS_ID","features":[335]},{"name":"EVENT_FIELD_TYPE","features":[335]},{"name":"EVENT_FILTER_DESCRIPTOR","features":[335]},{"name":"EVENT_FILTER_EVENT_ID","features":[305,335]},{"name":"EVENT_FILTER_EVENT_NAME","features":[305,335]},{"name":"EVENT_FILTER_HEADER","features":[335]},{"name":"EVENT_FILTER_LEVEL_KW","features":[305,335]},{"name":"EVENT_FILTER_TYPE_CONTAINER","features":[335]},{"name":"EVENT_FILTER_TYPE_EVENT_ID","features":[335]},{"name":"EVENT_FILTER_TYPE_EVENT_NAME","features":[335]},{"name":"EVENT_FILTER_TYPE_EXECUTABLE_NAME","features":[335]},{"name":"EVENT_FILTER_TYPE_NONE","features":[335]},{"name":"EVENT_FILTER_TYPE_PACKAGE_APP_ID","features":[335]},{"name":"EVENT_FILTER_TYPE_PACKAGE_ID","features":[335]},{"name":"EVENT_FILTER_TYPE_PAYLOAD","features":[335]},{"name":"EVENT_FILTER_TYPE_PID","features":[335]},{"name":"EVENT_FILTER_TYPE_SCHEMATIZED","features":[335]},{"name":"EVENT_FILTER_TYPE_STACKWALK","features":[335]},{"name":"EVENT_FILTER_TYPE_STACKWALK_LEVEL_KW","features":[335]},{"name":"EVENT_FILTER_TYPE_STACKWALK_NAME","features":[335]},{"name":"EVENT_FILTER_TYPE_SYSTEM_FLAGS","features":[335]},{"name":"EVENT_FILTER_TYPE_TRACEHANDLE","features":[335]},{"name":"EVENT_HEADER","features":[335]},{"name":"EVENT_HEADER_EXTENDED_DATA_ITEM","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_CONTAINER_ID","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_CONTROL_GUID","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_KEY","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_EVENT_SCHEMA_TL","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_INSTANCE_INFO","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_MAX","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_PEBS_INDEX","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_PMC_COUNTERS","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_PROCESS_START_KEY","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_PROV_TRAITS","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_PSM_KEY","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_QPC_DELTA","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_RELATED_ACTIVITYID","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_SID","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY32","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_KEY64","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE32","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_STACK_TRACE64","features":[335]},{"name":"EVENT_HEADER_EXT_TYPE_TS_ID","features":[335]},{"name":"EVENT_HEADER_FLAG_32_BIT_HEADER","features":[335]},{"name":"EVENT_HEADER_FLAG_64_BIT_HEADER","features":[335]},{"name":"EVENT_HEADER_FLAG_CLASSIC_HEADER","features":[335]},{"name":"EVENT_HEADER_FLAG_DECODE_GUID","features":[335]},{"name":"EVENT_HEADER_FLAG_EXTENDED_INFO","features":[335]},{"name":"EVENT_HEADER_FLAG_NO_CPUTIME","features":[335]},{"name":"EVENT_HEADER_FLAG_PRIVATE_SESSION","features":[335]},{"name":"EVENT_HEADER_FLAG_PROCESSOR_INDEX","features":[335]},{"name":"EVENT_HEADER_FLAG_STRING_ONLY","features":[335]},{"name":"EVENT_HEADER_FLAG_TRACE_MESSAGE","features":[335]},{"name":"EVENT_HEADER_PROPERTY_FORWARDED_XML","features":[335]},{"name":"EVENT_HEADER_PROPERTY_LEGACY_EVENTLOG","features":[335]},{"name":"EVENT_HEADER_PROPERTY_RELOGGABLE","features":[335]},{"name":"EVENT_HEADER_PROPERTY_XML","features":[335]},{"name":"EVENT_INFO_CLASS","features":[335]},{"name":"EVENT_INSTANCE_HEADER","features":[335]},{"name":"EVENT_INSTANCE_INFO","features":[305,335]},{"name":"EVENT_LOGGER_NAME","features":[335]},{"name":"EVENT_LOGGER_NAMEA","features":[335]},{"name":"EVENT_LOGGER_NAMEW","features":[335]},{"name":"EVENT_MAP_ENTRY","features":[335]},{"name":"EVENT_MAP_INFO","features":[335]},{"name":"EVENT_MAX_LEVEL","features":[335]},{"name":"EVENT_MIN_LEVEL","features":[335]},{"name":"EVENT_PROPERTY_INFO","features":[335]},{"name":"EVENT_RECORD","features":[335]},{"name":"EVENT_TRACE","features":[335]},{"name":"EVENT_TRACE_ADDTO_TRIAGE_DUMP","features":[335]},{"name":"EVENT_TRACE_ADD_HEADER_MODE","features":[335]},{"name":"EVENT_TRACE_BUFFERING_MODE","features":[335]},{"name":"EVENT_TRACE_COMPRESSED_MODE","features":[335]},{"name":"EVENT_TRACE_CONTROL","features":[335]},{"name":"EVENT_TRACE_CONTROL_CONVERT_TO_REALTIME","features":[335]},{"name":"EVENT_TRACE_CONTROL_FLUSH","features":[335]},{"name":"EVENT_TRACE_CONTROL_INCREMENT_FILE","features":[335]},{"name":"EVENT_TRACE_CONTROL_QUERY","features":[335]},{"name":"EVENT_TRACE_CONTROL_STOP","features":[335]},{"name":"EVENT_TRACE_CONTROL_UPDATE","features":[335]},{"name":"EVENT_TRACE_DELAY_OPEN_FILE_MODE","features":[335]},{"name":"EVENT_TRACE_FILE_MODE_APPEND","features":[335]},{"name":"EVENT_TRACE_FILE_MODE_CIRCULAR","features":[335]},{"name":"EVENT_TRACE_FILE_MODE_NEWFILE","features":[335]},{"name":"EVENT_TRACE_FILE_MODE_NONE","features":[335]},{"name":"EVENT_TRACE_FILE_MODE_PREALLOCATE","features":[335]},{"name":"EVENT_TRACE_FILE_MODE_SEQUENTIAL","features":[335]},{"name":"EVENT_TRACE_FLAG","features":[335]},{"name":"EVENT_TRACE_FLAG_ALPC","features":[335]},{"name":"EVENT_TRACE_FLAG_CSWITCH","features":[335]},{"name":"EVENT_TRACE_FLAG_DBGPRINT","features":[335]},{"name":"EVENT_TRACE_FLAG_DEBUG_EVENTS","features":[335]},{"name":"EVENT_TRACE_FLAG_DISK_FILE_IO","features":[335]},{"name":"EVENT_TRACE_FLAG_DISK_IO","features":[335]},{"name":"EVENT_TRACE_FLAG_DISK_IO_INIT","features":[335]},{"name":"EVENT_TRACE_FLAG_DISPATCHER","features":[335]},{"name":"EVENT_TRACE_FLAG_DPC","features":[335]},{"name":"EVENT_TRACE_FLAG_DRIVER","features":[335]},{"name":"EVENT_TRACE_FLAG_ENABLE_RESERVE","features":[335]},{"name":"EVENT_TRACE_FLAG_EXTENSION","features":[335]},{"name":"EVENT_TRACE_FLAG_FILE_IO","features":[335]},{"name":"EVENT_TRACE_FLAG_FILE_IO_INIT","features":[335]},{"name":"EVENT_TRACE_FLAG_FORWARD_WMI","features":[335]},{"name":"EVENT_TRACE_FLAG_IMAGE_LOAD","features":[335]},{"name":"EVENT_TRACE_FLAG_INTERRUPT","features":[335]},{"name":"EVENT_TRACE_FLAG_JOB","features":[335]},{"name":"EVENT_TRACE_FLAG_MEMORY_HARD_FAULTS","features":[335]},{"name":"EVENT_TRACE_FLAG_MEMORY_PAGE_FAULTS","features":[335]},{"name":"EVENT_TRACE_FLAG_NETWORK_TCPIP","features":[335]},{"name":"EVENT_TRACE_FLAG_NO_SYSCONFIG","features":[335]},{"name":"EVENT_TRACE_FLAG_PROCESS","features":[335]},{"name":"EVENT_TRACE_FLAG_PROCESS_COUNTERS","features":[335]},{"name":"EVENT_TRACE_FLAG_PROFILE","features":[335]},{"name":"EVENT_TRACE_FLAG_REGISTRY","features":[335]},{"name":"EVENT_TRACE_FLAG_SPLIT_IO","features":[335]},{"name":"EVENT_TRACE_FLAG_SYSTEMCALL","features":[335]},{"name":"EVENT_TRACE_FLAG_THREAD","features":[335]},{"name":"EVENT_TRACE_FLAG_VAMAP","features":[335]},{"name":"EVENT_TRACE_FLAG_VIRTUAL_ALLOC","features":[335]},{"name":"EVENT_TRACE_HEADER","features":[335]},{"name":"EVENT_TRACE_INDEPENDENT_SESSION_MODE","features":[335]},{"name":"EVENT_TRACE_LOGFILEA","features":[305,335,543]},{"name":"EVENT_TRACE_LOGFILEW","features":[305,335,543]},{"name":"EVENT_TRACE_MODE_RESERVED","features":[335]},{"name":"EVENT_TRACE_NONSTOPPABLE_MODE","features":[335]},{"name":"EVENT_TRACE_NO_PER_PROCESSOR_BUFFERING","features":[335]},{"name":"EVENT_TRACE_PERSIST_ON_HYBRID_SHUTDOWN","features":[335]},{"name":"EVENT_TRACE_PRIVATE_IN_PROC","features":[335]},{"name":"EVENT_TRACE_PRIVATE_LOGGER_MODE","features":[335]},{"name":"EVENT_TRACE_PROPERTIES","features":[305,335]},{"name":"EVENT_TRACE_PROPERTIES_V2","features":[305,335]},{"name":"EVENT_TRACE_REAL_TIME_MODE","features":[335]},{"name":"EVENT_TRACE_RELOG_MODE","features":[335]},{"name":"EVENT_TRACE_SECURE_MODE","features":[335]},{"name":"EVENT_TRACE_STOP_ON_HYBRID_SHUTDOWN","features":[335]},{"name":"EVENT_TRACE_SYSTEM_LOGGER_MODE","features":[335]},{"name":"EVENT_TRACE_TYPE_ACCEPT","features":[335]},{"name":"EVENT_TRACE_TYPE_ACKDUP","features":[335]},{"name":"EVENT_TRACE_TYPE_ACKFULL","features":[335]},{"name":"EVENT_TRACE_TYPE_ACKPART","features":[335]},{"name":"EVENT_TRACE_TYPE_CHECKPOINT","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_BOOT","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_CI_INFO","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_CPU","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEFRAG","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_DEVICEFAMILY","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_DPI","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_FLIGHTID","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_IDECHANNEL","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_IRQ","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_LOGICALDISK","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_MACHINEID","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_MOBILEPLATFORM","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_NETINFO","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_NIC","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_NUMANODE","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_OPTICALMEDIA","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_PHYSICALDISK_EX","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_PLATFORM","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_PNP","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_POWER","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSOR","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORGROUP","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_PROCESSORNUMBER","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_SERVICES","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIDEO","features":[335]},{"name":"EVENT_TRACE_TYPE_CONFIG_VIRTUALIZATION","features":[335]},{"name":"EVENT_TRACE_TYPE_CONNECT","features":[335]},{"name":"EVENT_TRACE_TYPE_CONNFAIL","features":[335]},{"name":"EVENT_TRACE_TYPE_COPY_ARP","features":[335]},{"name":"EVENT_TRACE_TYPE_COPY_TCP","features":[335]},{"name":"EVENT_TRACE_TYPE_DBGID_RSDS","features":[335]},{"name":"EVENT_TRACE_TYPE_DC_END","features":[335]},{"name":"EVENT_TRACE_TYPE_DC_START","features":[335]},{"name":"EVENT_TRACE_TYPE_DEQUEUE","features":[335]},{"name":"EVENT_TRACE_TYPE_DISCONNECT","features":[335]},{"name":"EVENT_TRACE_TYPE_END","features":[335]},{"name":"EVENT_TRACE_TYPE_EXTENSION","features":[335]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_COMPLETION","features":[335]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_FAILURE","features":[335]},{"name":"EVENT_TRACE_TYPE_FLT_POSTOP_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_COMPLETION","features":[335]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_FAILURE","features":[335]},{"name":"EVENT_TRACE_TYPE_FLT_PREOP_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_GUIDMAP","features":[335]},{"name":"EVENT_TRACE_TYPE_INFO","features":[335]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH","features":[335]},{"name":"EVENT_TRACE_TYPE_IO_FLUSH_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_IO_READ","features":[335]},{"name":"EVENT_TRACE_TYPE_IO_READ_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_IO_REDIRECTED_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_IO_WRITE","features":[335]},{"name":"EVENT_TRACE_TYPE_IO_WRITE_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_LOAD","features":[335]},{"name":"EVENT_TRACE_TYPE_MM_AV","features":[335]},{"name":"EVENT_TRACE_TYPE_MM_COW","features":[335]},{"name":"EVENT_TRACE_TYPE_MM_DZF","features":[335]},{"name":"EVENT_TRACE_TYPE_MM_GPF","features":[335]},{"name":"EVENT_TRACE_TYPE_MM_HPF","features":[335]},{"name":"EVENT_TRACE_TYPE_MM_TF","features":[335]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH","features":[335]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_FLUSH_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ","features":[335]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_READ_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE","features":[335]},{"name":"EVENT_TRACE_TYPE_OPTICAL_IO_WRITE_INIT","features":[335]},{"name":"EVENT_TRACE_TYPE_RECEIVE","features":[335]},{"name":"EVENT_TRACE_TYPE_RECONNECT","features":[335]},{"name":"EVENT_TRACE_TYPE_REGCLOSE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGCOMMIT","features":[335]},{"name":"EVENT_TRACE_TYPE_REGCREATE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGDELETE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGDELETEVALUE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEKEY","features":[335]},{"name":"EVENT_TRACE_TYPE_REGENUMERATEVALUEKEY","features":[335]},{"name":"EVENT_TRACE_TYPE_REGFLUSH","features":[335]},{"name":"EVENT_TRACE_TYPE_REGKCBCREATE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGKCBDELETE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNBEGIN","features":[335]},{"name":"EVENT_TRACE_TYPE_REGKCBRUNDOWNEND","features":[335]},{"name":"EVENT_TRACE_TYPE_REGMOUNTHIVE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGOPEN","features":[335]},{"name":"EVENT_TRACE_TYPE_REGPREPARE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGQUERY","features":[335]},{"name":"EVENT_TRACE_TYPE_REGQUERYMULTIPLEVALUE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGQUERYSECURITY","features":[335]},{"name":"EVENT_TRACE_TYPE_REGQUERYVALUE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGROLLBACK","features":[335]},{"name":"EVENT_TRACE_TYPE_REGSETINFORMATION","features":[335]},{"name":"EVENT_TRACE_TYPE_REGSETSECURITY","features":[335]},{"name":"EVENT_TRACE_TYPE_REGSETVALUE","features":[335]},{"name":"EVENT_TRACE_TYPE_REGVIRTUALIZE","features":[335]},{"name":"EVENT_TRACE_TYPE_REPLY","features":[335]},{"name":"EVENT_TRACE_TYPE_RESUME","features":[335]},{"name":"EVENT_TRACE_TYPE_RETRANSMIT","features":[335]},{"name":"EVENT_TRACE_TYPE_SECURITY","features":[335]},{"name":"EVENT_TRACE_TYPE_SEND","features":[335]},{"name":"EVENT_TRACE_TYPE_SIDINFO","features":[335]},{"name":"EVENT_TRACE_TYPE_START","features":[335]},{"name":"EVENT_TRACE_TYPE_STOP","features":[335]},{"name":"EVENT_TRACE_TYPE_SUSPEND","features":[335]},{"name":"EVENT_TRACE_TYPE_TERMINATE","features":[335]},{"name":"EVENT_TRACE_TYPE_WINEVT_RECEIVE","features":[335]},{"name":"EVENT_TRACE_TYPE_WINEVT_SEND","features":[335]},{"name":"EVENT_TRACE_USE_GLOBAL_SEQUENCE","features":[335]},{"name":"EVENT_TRACE_USE_KBYTES_FOR_SIZE","features":[335]},{"name":"EVENT_TRACE_USE_LOCAL_SEQUENCE","features":[335]},{"name":"EVENT_TRACE_USE_NOCPUTIME","features":[335]},{"name":"EVENT_TRACE_USE_PAGED_MEMORY","features":[335]},{"name":"EVENT_TRACE_USE_PROCTIME","features":[335]},{"name":"EVENT_WRITE_FLAG_INPRIVATE","features":[335]},{"name":"EVENT_WRITE_FLAG_NO_FAULTING","features":[335]},{"name":"EnableTrace","features":[305,335]},{"name":"EnableTraceEx","features":[305,335]},{"name":"EnableTraceEx2","features":[305,335]},{"name":"EnumerateTraceGuids","features":[305,335]},{"name":"EnumerateTraceGuidsEx","features":[305,335]},{"name":"EtwCompressionModeNoDisable","features":[335]},{"name":"EtwCompressionModeNoRestart","features":[335]},{"name":"EtwCompressionModeRestart","features":[335]},{"name":"EtwPmcOwnerFree","features":[335]},{"name":"EtwPmcOwnerTagged","features":[335]},{"name":"EtwPmcOwnerTaggedWithSource","features":[335]},{"name":"EtwPmcOwnerUntagged","features":[335]},{"name":"EtwProviderTraitDecodeGuid","features":[335]},{"name":"EtwProviderTraitTypeGroup","features":[335]},{"name":"EtwProviderTraitTypeMax","features":[335]},{"name":"EtwQueryLastDroppedTimes","features":[335]},{"name":"EtwQueryLogFileHeader","features":[335]},{"name":"EtwQueryPartitionInformation","features":[335]},{"name":"EtwQueryPartitionInformationV2","features":[335]},{"name":"EtwQueryProcessHandleInfoMax","features":[335]},{"name":"EventAccessControl","features":[305,308,335]},{"name":"EventAccessQuery","features":[308,335]},{"name":"EventAccessRemove","features":[335]},{"name":"EventActivityIdControl","features":[335]},{"name":"EventChannelInformation","features":[335]},{"name":"EventEnabled","features":[305,335]},{"name":"EventInformationMax","features":[335]},{"name":"EventKeywordInformation","features":[335]},{"name":"EventLevelInformation","features":[335]},{"name":"EventOpcodeInformation","features":[335]},{"name":"EventProviderBinaryTrackInfo","features":[335]},{"name":"EventProviderEnabled","features":[305,335]},{"name":"EventProviderSetReserved1","features":[335]},{"name":"EventProviderSetTraits","features":[335]},{"name":"EventProviderUseDescriptorType","features":[335]},{"name":"EventRegister","features":[335]},{"name":"EventSecurityAddDACL","features":[335]},{"name":"EventSecurityAddSACL","features":[335]},{"name":"EventSecurityMax","features":[335]},{"name":"EventSecuritySetDACL","features":[335]},{"name":"EventSecuritySetSACL","features":[335]},{"name":"EventSetInformation","features":[335]},{"name":"EventTaskInformation","features":[335]},{"name":"EventTraceConfigGuid","features":[335]},{"name":"EventTraceGuid","features":[335]},{"name":"EventUnregister","features":[335]},{"name":"EventWrite","features":[335]},{"name":"EventWriteEx","features":[335]},{"name":"EventWriteString","features":[335]},{"name":"EventWriteTransfer","features":[335]},{"name":"FileIoGuid","features":[335]},{"name":"FlushTraceA","features":[305,335]},{"name":"FlushTraceW","features":[305,335]},{"name":"GLOBAL_LOGGER_NAME","features":[335]},{"name":"GLOBAL_LOGGER_NAMEA","features":[335]},{"name":"GLOBAL_LOGGER_NAMEW","features":[335]},{"name":"GetTraceEnableFlags","features":[335]},{"name":"GetTraceEnableLevel","features":[335]},{"name":"GetTraceLoggerHandle","features":[335]},{"name":"ITraceEvent","features":[335]},{"name":"ITraceEventCallback","features":[335]},{"name":"ITraceRelogger","features":[335]},{"name":"ImageLoadGuid","features":[335]},{"name":"KERNEL_LOGGER_NAME","features":[335]},{"name":"KERNEL_LOGGER_NAMEA","features":[335]},{"name":"KERNEL_LOGGER_NAMEW","features":[335]},{"name":"MAP_FLAGS","features":[335]},{"name":"MAP_VALUETYPE","features":[335]},{"name":"MAX_EVENT_DATA_DESCRIPTORS","features":[335]},{"name":"MAX_EVENT_FILTERS_COUNT","features":[335]},{"name":"MAX_EVENT_FILTER_DATA_SIZE","features":[335]},{"name":"MAX_EVENT_FILTER_EVENT_ID_COUNT","features":[335]},{"name":"MAX_EVENT_FILTER_EVENT_NAME_SIZE","features":[335]},{"name":"MAX_EVENT_FILTER_PAYLOAD_SIZE","features":[335]},{"name":"MAX_EVENT_FILTER_PID_COUNT","features":[335]},{"name":"MAX_MOF_FIELDS","features":[335]},{"name":"MAX_PAYLOAD_PREDICATES","features":[335]},{"name":"MOF_FIELD","features":[335]},{"name":"MaxEventInfo","features":[335]},{"name":"MaxTraceSetInfoClass","features":[335]},{"name":"OFFSETINSTANCEDATAANDLENGTH","features":[335]},{"name":"OpenTraceA","features":[305,335,543]},{"name":"OpenTraceFromBufferStream","features":[305,335,543]},{"name":"OpenTraceFromFile","features":[305,335,543]},{"name":"OpenTraceFromRealTimeLogger","features":[305,335,543]},{"name":"OpenTraceFromRealTimeLoggerWithAllocationOptions","features":[305,335,543]},{"name":"OpenTraceW","features":[305,335,543]},{"name":"PAYLOADFIELD_BETWEEN","features":[335]},{"name":"PAYLOADFIELD_CONTAINS","features":[335]},{"name":"PAYLOADFIELD_DOESNTCONTAIN","features":[335]},{"name":"PAYLOADFIELD_EQ","features":[335]},{"name":"PAYLOADFIELD_GE","features":[335]},{"name":"PAYLOADFIELD_GT","features":[335]},{"name":"PAYLOADFIELD_INVALID","features":[335]},{"name":"PAYLOADFIELD_IS","features":[335]},{"name":"PAYLOADFIELD_ISNOT","features":[335]},{"name":"PAYLOADFIELD_LE","features":[335]},{"name":"PAYLOADFIELD_LT","features":[335]},{"name":"PAYLOADFIELD_MODULO","features":[335]},{"name":"PAYLOADFIELD_NE","features":[335]},{"name":"PAYLOADFIELD_NOTBETWEEN","features":[335]},{"name":"PAYLOAD_FILTER_PREDICATE","features":[335]},{"name":"PAYLOAD_OPERATOR","features":[335]},{"name":"PENABLECALLBACK","features":[335]},{"name":"PETW_BUFFER_CALLBACK","features":[305,335,543]},{"name":"PETW_BUFFER_COMPLETION_CALLBACK","features":[335]},{"name":"PEVENT_CALLBACK","features":[335]},{"name":"PEVENT_RECORD_CALLBACK","features":[335]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKA","features":[305,335,543]},{"name":"PEVENT_TRACE_BUFFER_CALLBACKW","features":[305,335,543]},{"name":"PROCESSTRACE_HANDLE","features":[335]},{"name":"PROCESS_TRACE_MODE_EVENT_RECORD","features":[335]},{"name":"PROCESS_TRACE_MODE_RAW_TIMESTAMP","features":[335]},{"name":"PROCESS_TRACE_MODE_REAL_TIME","features":[335]},{"name":"PROFILE_SOURCE_INFO","features":[335]},{"name":"PROPERTY_DATA_DESCRIPTOR","features":[335]},{"name":"PROPERTY_FLAGS","features":[335]},{"name":"PROVIDER_ENUMERATION_INFO","features":[335]},{"name":"PROVIDER_EVENT_INFO","features":[335]},{"name":"PROVIDER_FIELD_INFO","features":[335]},{"name":"PROVIDER_FIELD_INFOARRAY","features":[335]},{"name":"PROVIDER_FILTER_INFO","features":[335]},{"name":"PageFaultGuid","features":[335]},{"name":"PerfInfoGuid","features":[335]},{"name":"PrivateLoggerNotificationGuid","features":[335]},{"name":"ProcessGuid","features":[335]},{"name":"ProcessTrace","features":[305,335]},{"name":"ProcessTraceAddBufferToBufferStream","features":[335]},{"name":"ProcessTraceBufferDecrementReference","features":[335]},{"name":"ProcessTraceBufferIncrementReference","features":[335]},{"name":"PropertyHasCustomSchema","features":[335]},{"name":"PropertyHasTags","features":[335]},{"name":"PropertyParamCount","features":[335]},{"name":"PropertyParamFixedCount","features":[335]},{"name":"PropertyParamFixedLength","features":[335]},{"name":"PropertyParamLength","features":[335]},{"name":"PropertyStruct","features":[335]},{"name":"PropertyWBEMXmlFragment","features":[335]},{"name":"QueryAllTracesA","features":[305,335]},{"name":"QueryAllTracesW","features":[305,335]},{"name":"QueryTraceA","features":[305,335]},{"name":"QueryTraceProcessingHandle","features":[305,335]},{"name":"QueryTraceW","features":[305,335]},{"name":"REGHANDLE","features":[335]},{"name":"RELOGSTREAM_HANDLE","features":[335]},{"name":"RegisterTraceGuidsA","features":[305,335]},{"name":"RegisterTraceGuidsW","features":[305,335]},{"name":"RegistryGuid","features":[335]},{"name":"RemoveTraceCallback","features":[305,335]},{"name":"SYSTEM_ALPC_KW_GENERAL","features":[335]},{"name":"SYSTEM_CONFIG_KW_GRAPHICS","features":[335]},{"name":"SYSTEM_CONFIG_KW_NETWORK","features":[335]},{"name":"SYSTEM_CONFIG_KW_OPTICAL","features":[335]},{"name":"SYSTEM_CONFIG_KW_PNP","features":[335]},{"name":"SYSTEM_CONFIG_KW_SERVICES","features":[335]},{"name":"SYSTEM_CONFIG_KW_STORAGE","features":[335]},{"name":"SYSTEM_CONFIG_KW_SYSTEM","features":[335]},{"name":"SYSTEM_CPU_KW_CACHE_FLUSH","features":[335]},{"name":"SYSTEM_CPU_KW_CONFIG","features":[335]},{"name":"SYSTEM_CPU_KW_SPEC_CONTROL","features":[335]},{"name":"SYSTEM_EVENT_TYPE","features":[335]},{"name":"SYSTEM_HYPERVISOR_KW_CALLOUTS","features":[335]},{"name":"SYSTEM_HYPERVISOR_KW_PROFILE","features":[335]},{"name":"SYSTEM_HYPERVISOR_KW_VTL_CHANGE","features":[335]},{"name":"SYSTEM_INTERRUPT_KW_CLOCK_INTERRUPT","features":[335]},{"name":"SYSTEM_INTERRUPT_KW_DPC","features":[335]},{"name":"SYSTEM_INTERRUPT_KW_DPC_QUEUE","features":[335]},{"name":"SYSTEM_INTERRUPT_KW_GENERAL","features":[335]},{"name":"SYSTEM_INTERRUPT_KW_IPI","features":[335]},{"name":"SYSTEM_INTERRUPT_KW_WDF_DPC","features":[335]},{"name":"SYSTEM_INTERRUPT_KW_WDF_INTERRUPT","features":[335]},{"name":"SYSTEM_IOFILTER_KW_FAILURE","features":[335]},{"name":"SYSTEM_IOFILTER_KW_FASTIO","features":[335]},{"name":"SYSTEM_IOFILTER_KW_GENERAL","features":[335]},{"name":"SYSTEM_IOFILTER_KW_INIT","features":[335]},{"name":"SYSTEM_IO_KW_CC","features":[335]},{"name":"SYSTEM_IO_KW_DISK","features":[335]},{"name":"SYSTEM_IO_KW_DISK_INIT","features":[335]},{"name":"SYSTEM_IO_KW_DRIVERS","features":[335]},{"name":"SYSTEM_IO_KW_FILE","features":[335]},{"name":"SYSTEM_IO_KW_FILENAME","features":[335]},{"name":"SYSTEM_IO_KW_NETWORK","features":[335]},{"name":"SYSTEM_IO_KW_OPTICAL","features":[335]},{"name":"SYSTEM_IO_KW_OPTICAL_INIT","features":[335]},{"name":"SYSTEM_IO_KW_SPLIT","features":[335]},{"name":"SYSTEM_LOCK_KW_SPINLOCK","features":[335]},{"name":"SYSTEM_LOCK_KW_SPINLOCK_COUNTERS","features":[335]},{"name":"SYSTEM_LOCK_KW_SYNC_OBJECTS","features":[335]},{"name":"SYSTEM_MEMORY_KW_ALL_FAULTS","features":[335]},{"name":"SYSTEM_MEMORY_KW_CONTMEM_GEN","features":[335]},{"name":"SYSTEM_MEMORY_KW_FOOTPRINT","features":[335]},{"name":"SYSTEM_MEMORY_KW_GENERAL","features":[335]},{"name":"SYSTEM_MEMORY_KW_HARD_FAULTS","features":[335]},{"name":"SYSTEM_MEMORY_KW_HEAP","features":[335]},{"name":"SYSTEM_MEMORY_KW_MEMINFO","features":[335]},{"name":"SYSTEM_MEMORY_KW_MEMINFO_WS","features":[335]},{"name":"SYSTEM_MEMORY_KW_NONTRADEABLE","features":[335]},{"name":"SYSTEM_MEMORY_KW_PFSECTION","features":[335]},{"name":"SYSTEM_MEMORY_KW_POOL","features":[335]},{"name":"SYSTEM_MEMORY_KW_REFSET","features":[335]},{"name":"SYSTEM_MEMORY_KW_SESSION","features":[335]},{"name":"SYSTEM_MEMORY_KW_VAMAP","features":[335]},{"name":"SYSTEM_MEMORY_KW_VIRTUAL_ALLOC","features":[335]},{"name":"SYSTEM_MEMORY_KW_WS","features":[335]},{"name":"SYSTEM_MEMORY_POOL_FILTER_ID","features":[335]},{"name":"SYSTEM_OBJECT_KW_GENERAL","features":[335]},{"name":"SYSTEM_OBJECT_KW_HANDLE","features":[335]},{"name":"SYSTEM_POWER_KW_GENERAL","features":[335]},{"name":"SYSTEM_POWER_KW_HIBER_RUNDOWN","features":[335]},{"name":"SYSTEM_POWER_KW_IDLE_SELECTION","features":[335]},{"name":"SYSTEM_POWER_KW_PPM_EXIT_LATENCY","features":[335]},{"name":"SYSTEM_POWER_KW_PROCESSOR_IDLE","features":[335]},{"name":"SYSTEM_PROCESS_KW_DBGPRINT","features":[335]},{"name":"SYSTEM_PROCESS_KW_DEBUG_EVENTS","features":[335]},{"name":"SYSTEM_PROCESS_KW_FREEZE","features":[335]},{"name":"SYSTEM_PROCESS_KW_GENERAL","features":[335]},{"name":"SYSTEM_PROCESS_KW_INSWAP","features":[335]},{"name":"SYSTEM_PROCESS_KW_JOB","features":[335]},{"name":"SYSTEM_PROCESS_KW_LOADER","features":[335]},{"name":"SYSTEM_PROCESS_KW_PERF_COUNTER","features":[335]},{"name":"SYSTEM_PROCESS_KW_THREAD","features":[335]},{"name":"SYSTEM_PROCESS_KW_WAKE_COUNTER","features":[335]},{"name":"SYSTEM_PROCESS_KW_WAKE_DROP","features":[335]},{"name":"SYSTEM_PROCESS_KW_WAKE_EVENT","features":[335]},{"name":"SYSTEM_PROCESS_KW_WORKER_THREAD","features":[335]},{"name":"SYSTEM_PROFILE_KW_GENERAL","features":[335]},{"name":"SYSTEM_PROFILE_KW_PMC_PROFILE","features":[335]},{"name":"SYSTEM_REGISTRY_KW_GENERAL","features":[335]},{"name":"SYSTEM_REGISTRY_KW_HIVE","features":[335]},{"name":"SYSTEM_REGISTRY_KW_NOTIFICATION","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_AFFINITY","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_ANTI_STARVATION","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_COMPACT_CSWITCH","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_CONTEXT_SWITCH","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_DISPATCHER","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_IDEAL_PROCESSOR","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_KERNEL_QUEUE","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_LOAD_BALANCER","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_PRIORITY","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_SHOULD_YIELD","features":[335]},{"name":"SYSTEM_SCHEDULER_KW_XSCHEDULER","features":[335]},{"name":"SYSTEM_SYSCALL_KW_GENERAL","features":[335]},{"name":"SYSTEM_TIMER_KW_CLOCK_TIMER","features":[335]},{"name":"SYSTEM_TIMER_KW_GENERAL","features":[335]},{"name":"SetTraceCallback","features":[305,335]},{"name":"SplitIoGuid","features":[335]},{"name":"StartTraceA","features":[305,335]},{"name":"StartTraceW","features":[305,335]},{"name":"StopTraceA","features":[305,335]},{"name":"StopTraceW","features":[305,335]},{"name":"SystemAlpcProviderGuid","features":[335]},{"name":"SystemConfigProviderGuid","features":[335]},{"name":"SystemCpuProviderGuid","features":[335]},{"name":"SystemHypervisorProviderGuid","features":[335]},{"name":"SystemInterruptProviderGuid","features":[335]},{"name":"SystemIoFilterProviderGuid","features":[335]},{"name":"SystemIoProviderGuid","features":[335]},{"name":"SystemLockProviderGuid","features":[335]},{"name":"SystemMemoryProviderGuid","features":[335]},{"name":"SystemObjectProviderGuid","features":[335]},{"name":"SystemPowerProviderGuid","features":[335]},{"name":"SystemProcessProviderGuid","features":[335]},{"name":"SystemProfileProviderGuid","features":[335]},{"name":"SystemRegistryProviderGuid","features":[335]},{"name":"SystemSchedulerProviderGuid","features":[335]},{"name":"SystemSyscallProviderGuid","features":[335]},{"name":"SystemTimerProviderGuid","features":[335]},{"name":"SystemTraceControlGuid","features":[335]},{"name":"TDH_CONTEXT","features":[335]},{"name":"TDH_CONTEXT_MAXIMUM","features":[335]},{"name":"TDH_CONTEXT_PDB_PATH","features":[335]},{"name":"TDH_CONTEXT_POINTERSIZE","features":[335]},{"name":"TDH_CONTEXT_TYPE","features":[335]},{"name":"TDH_CONTEXT_WPP_GMT","features":[335]},{"name":"TDH_CONTEXT_WPP_TMFFILE","features":[335]},{"name":"TDH_CONTEXT_WPP_TMFSEARCHPATH","features":[335]},{"name":"TDH_HANDLE","features":[335]},{"name":"TDH_INTYPE_ANSICHAR","features":[335]},{"name":"TDH_INTYPE_ANSISTRING","features":[335]},{"name":"TDH_INTYPE_BINARY","features":[335]},{"name":"TDH_INTYPE_BOOLEAN","features":[335]},{"name":"TDH_INTYPE_COUNTEDANSISTRING","features":[335]},{"name":"TDH_INTYPE_COUNTEDSTRING","features":[335]},{"name":"TDH_INTYPE_DOUBLE","features":[335]},{"name":"TDH_INTYPE_FILETIME","features":[335]},{"name":"TDH_INTYPE_FLOAT","features":[335]},{"name":"TDH_INTYPE_GUID","features":[335]},{"name":"TDH_INTYPE_HEXDUMP","features":[335]},{"name":"TDH_INTYPE_HEXINT32","features":[335]},{"name":"TDH_INTYPE_HEXINT64","features":[335]},{"name":"TDH_INTYPE_INT16","features":[335]},{"name":"TDH_INTYPE_INT32","features":[335]},{"name":"TDH_INTYPE_INT64","features":[335]},{"name":"TDH_INTYPE_INT8","features":[335]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDANSISTRING","features":[335]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDBINARY","features":[335]},{"name":"TDH_INTYPE_MANIFEST_COUNTEDSTRING","features":[335]},{"name":"TDH_INTYPE_NONNULLTERMINATEDANSISTRING","features":[335]},{"name":"TDH_INTYPE_NONNULLTERMINATEDSTRING","features":[335]},{"name":"TDH_INTYPE_NULL","features":[335]},{"name":"TDH_INTYPE_POINTER","features":[335]},{"name":"TDH_INTYPE_RESERVED24","features":[335]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDANSISTRING","features":[335]},{"name":"TDH_INTYPE_REVERSEDCOUNTEDSTRING","features":[335]},{"name":"TDH_INTYPE_SID","features":[335]},{"name":"TDH_INTYPE_SIZET","features":[335]},{"name":"TDH_INTYPE_SYSTEMTIME","features":[335]},{"name":"TDH_INTYPE_UINT16","features":[335]},{"name":"TDH_INTYPE_UINT32","features":[335]},{"name":"TDH_INTYPE_UINT64","features":[335]},{"name":"TDH_INTYPE_UINT8","features":[335]},{"name":"TDH_INTYPE_UNICODECHAR","features":[335]},{"name":"TDH_INTYPE_UNICODESTRING","features":[335]},{"name":"TDH_INTYPE_WBEMSID","features":[335]},{"name":"TDH_OUTTYPE_BOOLEAN","features":[335]},{"name":"TDH_OUTTYPE_BYTE","features":[335]},{"name":"TDH_OUTTYPE_CIMDATETIME","features":[335]},{"name":"TDH_OUTTYPE_CODE_POINTER","features":[335]},{"name":"TDH_OUTTYPE_CULTURE_INSENSITIVE_DATETIME","features":[335]},{"name":"TDH_OUTTYPE_DATETIME","features":[335]},{"name":"TDH_OUTTYPE_DATETIME_UTC","features":[335]},{"name":"TDH_OUTTYPE_DOUBLE","features":[335]},{"name":"TDH_OUTTYPE_ERRORCODE","features":[335]},{"name":"TDH_OUTTYPE_ETWTIME","features":[335]},{"name":"TDH_OUTTYPE_FLOAT","features":[335]},{"name":"TDH_OUTTYPE_GUID","features":[335]},{"name":"TDH_OUTTYPE_HEXBINARY","features":[335]},{"name":"TDH_OUTTYPE_HEXINT16","features":[335]},{"name":"TDH_OUTTYPE_HEXINT32","features":[335]},{"name":"TDH_OUTTYPE_HEXINT64","features":[335]},{"name":"TDH_OUTTYPE_HEXINT8","features":[335]},{"name":"TDH_OUTTYPE_HRESULT","features":[335]},{"name":"TDH_OUTTYPE_INT","features":[335]},{"name":"TDH_OUTTYPE_IPV4","features":[335]},{"name":"TDH_OUTTYPE_IPV6","features":[335]},{"name":"TDH_OUTTYPE_JSON","features":[335]},{"name":"TDH_OUTTYPE_LONG","features":[335]},{"name":"TDH_OUTTYPE_NOPRINT","features":[335]},{"name":"TDH_OUTTYPE_NTSTATUS","features":[335]},{"name":"TDH_OUTTYPE_NULL","features":[335]},{"name":"TDH_OUTTYPE_PID","features":[335]},{"name":"TDH_OUTTYPE_PKCS7_WITH_TYPE_INFO","features":[335]},{"name":"TDH_OUTTYPE_PORT","features":[335]},{"name":"TDH_OUTTYPE_REDUCEDSTRING","features":[335]},{"name":"TDH_OUTTYPE_SHORT","features":[335]},{"name":"TDH_OUTTYPE_SOCKETADDRESS","features":[335]},{"name":"TDH_OUTTYPE_STRING","features":[335]},{"name":"TDH_OUTTYPE_TID","features":[335]},{"name":"TDH_OUTTYPE_UNSIGNEDBYTE","features":[335]},{"name":"TDH_OUTTYPE_UNSIGNEDINT","features":[335]},{"name":"TDH_OUTTYPE_UNSIGNEDLONG","features":[335]},{"name":"TDH_OUTTYPE_UNSIGNEDSHORT","features":[335]},{"name":"TDH_OUTTYPE_UTF8","features":[335]},{"name":"TDH_OUTTYPE_WIN32ERROR","features":[335]},{"name":"TDH_OUTTYPE_XML","features":[335]},{"name":"TEMPLATE_CONTROL_GUID","features":[335]},{"name":"TEMPLATE_EVENT_DATA","features":[335]},{"name":"TEMPLATE_FLAGS","features":[335]},{"name":"TEMPLATE_USER_DATA","features":[335]},{"name":"TRACELOG_ACCESS_KERNEL_LOGGER","features":[335]},{"name":"TRACELOG_ACCESS_REALTIME","features":[335]},{"name":"TRACELOG_CREATE_INPROC","features":[335]},{"name":"TRACELOG_CREATE_ONDISK","features":[335]},{"name":"TRACELOG_CREATE_REALTIME","features":[335]},{"name":"TRACELOG_GUID_ENABLE","features":[335]},{"name":"TRACELOG_JOIN_GROUP","features":[335]},{"name":"TRACELOG_LOG_EVENT","features":[335]},{"name":"TRACELOG_REGISTER_GUIDS","features":[335]},{"name":"TRACE_ENABLE_INFO","features":[335]},{"name":"TRACE_EVENT_INFO","features":[335]},{"name":"TRACE_GUID_INFO","features":[335]},{"name":"TRACE_GUID_PROPERTIES","features":[305,335]},{"name":"TRACE_GUID_REGISTRATION","features":[305,335]},{"name":"TRACE_HEADER_FLAG_LOG_WNODE","features":[335]},{"name":"TRACE_HEADER_FLAG_TRACED_GUID","features":[335]},{"name":"TRACE_HEADER_FLAG_USE_GUID_PTR","features":[335]},{"name":"TRACE_HEADER_FLAG_USE_MOF_PTR","features":[335]},{"name":"TRACE_HEADER_FLAG_USE_TIMESTAMP","features":[335]},{"name":"TRACE_LEVEL_CRITICAL","features":[335]},{"name":"TRACE_LEVEL_ERROR","features":[335]},{"name":"TRACE_LEVEL_FATAL","features":[335]},{"name":"TRACE_LEVEL_INFORMATION","features":[335]},{"name":"TRACE_LEVEL_NONE","features":[335]},{"name":"TRACE_LEVEL_RESERVED6","features":[335]},{"name":"TRACE_LEVEL_RESERVED7","features":[335]},{"name":"TRACE_LEVEL_RESERVED8","features":[335]},{"name":"TRACE_LEVEL_RESERVED9","features":[335]},{"name":"TRACE_LEVEL_VERBOSE","features":[335]},{"name":"TRACE_LEVEL_WARNING","features":[335]},{"name":"TRACE_LOGFILE_HEADER","features":[305,335,543]},{"name":"TRACE_LOGFILE_HEADER32","features":[305,335,543]},{"name":"TRACE_LOGFILE_HEADER64","features":[305,335,543]},{"name":"TRACE_MESSAGE_COMPONENTID","features":[335]},{"name":"TRACE_MESSAGE_FLAGS","features":[335]},{"name":"TRACE_MESSAGE_FLAG_MASK","features":[335]},{"name":"TRACE_MESSAGE_GUID","features":[335]},{"name":"TRACE_MESSAGE_PERFORMANCE_TIMESTAMP","features":[335]},{"name":"TRACE_MESSAGE_POINTER32","features":[335]},{"name":"TRACE_MESSAGE_POINTER64","features":[335]},{"name":"TRACE_MESSAGE_SEQUENCE","features":[335]},{"name":"TRACE_MESSAGE_SYSTEMINFO","features":[335]},{"name":"TRACE_MESSAGE_TIMESTAMP","features":[335]},{"name":"TRACE_PERIODIC_CAPTURE_STATE_INFO","features":[335]},{"name":"TRACE_PROFILE_INTERVAL","features":[335]},{"name":"TRACE_PROVIDER_FLAG_LEGACY","features":[335]},{"name":"TRACE_PROVIDER_FLAG_PRE_ENABLE","features":[335]},{"name":"TRACE_PROVIDER_INFO","features":[335]},{"name":"TRACE_PROVIDER_INSTANCE_INFO","features":[335]},{"name":"TRACE_QUERY_INFO_CLASS","features":[335]},{"name":"TRACE_STACK_CACHING_INFO","features":[305,335]},{"name":"TRACE_VERSION_INFO","features":[335]},{"name":"TcpIpGuid","features":[335]},{"name":"TdhAggregatePayloadFilters","features":[305,335]},{"name":"TdhCleanupPayloadEventFilterDescriptor","features":[335]},{"name":"TdhCloseDecodingHandle","features":[335]},{"name":"TdhCreatePayloadFilter","features":[305,335]},{"name":"TdhDeletePayloadFilter","features":[335]},{"name":"TdhEnumerateManifestProviderEvents","features":[335]},{"name":"TdhEnumerateProviderFieldInformation","features":[335]},{"name":"TdhEnumerateProviderFilters","features":[335]},{"name":"TdhEnumerateProviders","features":[335]},{"name":"TdhEnumerateProvidersForDecodingSource","features":[335]},{"name":"TdhFormatProperty","features":[335]},{"name":"TdhGetDecodingParameter","features":[335]},{"name":"TdhGetEventInformation","features":[335]},{"name":"TdhGetEventMapInformation","features":[335]},{"name":"TdhGetManifestEventInformation","features":[335]},{"name":"TdhGetProperty","features":[335]},{"name":"TdhGetPropertySize","features":[335]},{"name":"TdhGetWppMessage","features":[335]},{"name":"TdhGetWppProperty","features":[335]},{"name":"TdhLoadManifest","features":[335]},{"name":"TdhLoadManifestFromBinary","features":[335]},{"name":"TdhLoadManifestFromMemory","features":[335]},{"name":"TdhOpenDecodingHandle","features":[335]},{"name":"TdhQueryProviderFieldInformation","features":[335]},{"name":"TdhSetDecodingParameter","features":[335]},{"name":"TdhUnloadManifest","features":[335]},{"name":"TdhUnloadManifestFromMemory","features":[335]},{"name":"ThreadGuid","features":[335]},{"name":"TraceDisallowListQuery","features":[335]},{"name":"TraceEvent","features":[305,335]},{"name":"TraceEventInstance","features":[305,335]},{"name":"TraceGroupQueryInfo","features":[335]},{"name":"TraceGroupQueryList","features":[335]},{"name":"TraceGuidQueryInfo","features":[335]},{"name":"TraceGuidQueryList","features":[335]},{"name":"TraceGuidQueryProcess","features":[335]},{"name":"TraceInfoReserved15","features":[335]},{"name":"TraceLbrConfigurationInfo","features":[335]},{"name":"TraceLbrEventListInfo","features":[335]},{"name":"TraceMaxLoggersQuery","features":[335]},{"name":"TraceMaxPmcCounterQuery","features":[335]},{"name":"TraceMessage","features":[305,335]},{"name":"TraceMessageVa","features":[305,335]},{"name":"TracePeriodicCaptureStateInfo","features":[335]},{"name":"TracePeriodicCaptureStateListInfo","features":[335]},{"name":"TracePmcCounterListInfo","features":[335]},{"name":"TracePmcCounterOwners","features":[335]},{"name":"TracePmcEventListInfo","features":[335]},{"name":"TracePmcSessionInformation","features":[335]},{"name":"TraceProfileSourceConfigInfo","features":[335]},{"name":"TraceProfileSourceListInfo","features":[335]},{"name":"TraceProviderBinaryTracking","features":[335]},{"name":"TraceQueryInformation","features":[305,335]},{"name":"TraceSampledProfileIntervalInfo","features":[335]},{"name":"TraceSetDisallowList","features":[335]},{"name":"TraceSetInformation","features":[305,335]},{"name":"TraceStackCachingInfo","features":[335]},{"name":"TraceStackTracingInfo","features":[335]},{"name":"TraceStreamCount","features":[335]},{"name":"TraceSystemTraceEnableFlagsInfo","features":[335]},{"name":"TraceUnifiedStackCachingInfo","features":[335]},{"name":"TraceVersionInfo","features":[335]},{"name":"UdpIpGuid","features":[335]},{"name":"UnregisterTraceGuids","features":[335]},{"name":"UpdateTraceA","features":[305,335]},{"name":"UpdateTraceW","features":[305,335]},{"name":"WMIDPREQUEST","features":[335]},{"name":"WMIDPREQUESTCODE","features":[335]},{"name":"WMIGUID_EXECUTE","features":[335]},{"name":"WMIGUID_NOTIFICATION","features":[335]},{"name":"WMIGUID_QUERY","features":[335]},{"name":"WMIGUID_READ_DESCRIPTION","features":[335]},{"name":"WMIGUID_SET","features":[335]},{"name":"WMIREGGUIDW","features":[335]},{"name":"WMIREGINFOW","features":[335]},{"name":"WMIREG_FLAG_EVENT_ONLY_GUID","features":[335]},{"name":"WMIREG_FLAG_EXPENSIVE","features":[335]},{"name":"WMIREG_FLAG_INSTANCE_BASENAME","features":[335]},{"name":"WMIREG_FLAG_INSTANCE_LIST","features":[335]},{"name":"WMIREG_FLAG_INSTANCE_PDO","features":[335]},{"name":"WMIREG_FLAG_REMOVE_GUID","features":[335]},{"name":"WMIREG_FLAG_RESERVED1","features":[335]},{"name":"WMIREG_FLAG_RESERVED2","features":[335]},{"name":"WMIREG_FLAG_TRACED_GUID","features":[335]},{"name":"WMIREG_FLAG_TRACE_CONTROL_GUID","features":[335]},{"name":"WMI_CAPTURE_STATE","features":[335]},{"name":"WMI_DISABLE_COLLECTION","features":[335]},{"name":"WMI_DISABLE_EVENTS","features":[335]},{"name":"WMI_ENABLE_COLLECTION","features":[335]},{"name":"WMI_ENABLE_EVENTS","features":[335]},{"name":"WMI_EXECUTE_METHOD","features":[335]},{"name":"WMI_GET_ALL_DATA","features":[335]},{"name":"WMI_GET_SINGLE_INSTANCE","features":[335]},{"name":"WMI_GLOBAL_LOGGER_ID","features":[335]},{"name":"WMI_GUIDTYPE_DATA","features":[335]},{"name":"WMI_GUIDTYPE_EVENT","features":[335]},{"name":"WMI_GUIDTYPE_TRACE","features":[335]},{"name":"WMI_GUIDTYPE_TRACECONTROL","features":[335]},{"name":"WMI_REGINFO","features":[335]},{"name":"WMI_SET_SINGLE_INSTANCE","features":[335]},{"name":"WMI_SET_SINGLE_ITEM","features":[335]},{"name":"WNODE_ALL_DATA","features":[305,335]},{"name":"WNODE_EVENT_ITEM","features":[305,335]},{"name":"WNODE_EVENT_REFERENCE","features":[305,335]},{"name":"WNODE_FLAG_ALL_DATA","features":[335]},{"name":"WNODE_FLAG_ANSI_INSTANCENAMES","features":[335]},{"name":"WNODE_FLAG_EVENT_ITEM","features":[335]},{"name":"WNODE_FLAG_EVENT_REFERENCE","features":[335]},{"name":"WNODE_FLAG_FIXED_INSTANCE_SIZE","features":[335]},{"name":"WNODE_FLAG_INSTANCES_SAME","features":[335]},{"name":"WNODE_FLAG_INTERNAL","features":[335]},{"name":"WNODE_FLAG_LOG_WNODE","features":[335]},{"name":"WNODE_FLAG_METHOD_ITEM","features":[335]},{"name":"WNODE_FLAG_NO_HEADER","features":[335]},{"name":"WNODE_FLAG_PDO_INSTANCE_NAMES","features":[335]},{"name":"WNODE_FLAG_PERSIST_EVENT","features":[335]},{"name":"WNODE_FLAG_SEND_DATA_BLOCK","features":[335]},{"name":"WNODE_FLAG_SEVERITY_MASK","features":[335]},{"name":"WNODE_FLAG_SINGLE_INSTANCE","features":[335]},{"name":"WNODE_FLAG_SINGLE_ITEM","features":[335]},{"name":"WNODE_FLAG_STATIC_INSTANCE_NAMES","features":[335]},{"name":"WNODE_FLAG_TOO_SMALL","features":[335]},{"name":"WNODE_FLAG_TRACED_GUID","features":[335]},{"name":"WNODE_FLAG_USE_GUID_PTR","features":[335]},{"name":"WNODE_FLAG_USE_MOF_PTR","features":[335]},{"name":"WNODE_FLAG_USE_TIMESTAMP","features":[335]},{"name":"WNODE_FLAG_VERSIONED_PROPERTIES","features":[335]},{"name":"WNODE_HEADER","features":[305,335]},{"name":"WNODE_METHOD_ITEM","features":[305,335]},{"name":"WNODE_SINGLE_INSTANCE","features":[305,335]},{"name":"WNODE_SINGLE_ITEM","features":[305,335]},{"name":"WNODE_TOO_SMALL","features":[305,335]},{"name":"_TDH_IN_TYPE","features":[335]},{"name":"_TDH_OUT_TYPE","features":[335]}],"559":[{"name":"HPSS","features":[546]},{"name":"HPSSWALK","features":[546]},{"name":"PSS_ALLOCATOR","features":[546]},{"name":"PSS_AUXILIARY_PAGES_INFORMATION","features":[546]},{"name":"PSS_AUXILIARY_PAGE_ENTRY","features":[305,546,323]},{"name":"PSS_CAPTURE_FLAGS","features":[546]},{"name":"PSS_CAPTURE_HANDLES","features":[546]},{"name":"PSS_CAPTURE_HANDLE_BASIC_INFORMATION","features":[546]},{"name":"PSS_CAPTURE_HANDLE_NAME_INFORMATION","features":[546]},{"name":"PSS_CAPTURE_HANDLE_TRACE","features":[546]},{"name":"PSS_CAPTURE_HANDLE_TYPE_SPECIFIC_INFORMATION","features":[546]},{"name":"PSS_CAPTURE_IPT_TRACE","features":[546]},{"name":"PSS_CAPTURE_NONE","features":[546]},{"name":"PSS_CAPTURE_RESERVED_00000002","features":[546]},{"name":"PSS_CAPTURE_RESERVED_00000400","features":[546]},{"name":"PSS_CAPTURE_RESERVED_00004000","features":[546]},{"name":"PSS_CAPTURE_THREADS","features":[546]},{"name":"PSS_CAPTURE_THREAD_CONTEXT","features":[546]},{"name":"PSS_CAPTURE_THREAD_CONTEXT_EXTENDED","features":[546]},{"name":"PSS_CAPTURE_VA_CLONE","features":[546]},{"name":"PSS_CAPTURE_VA_SPACE","features":[546]},{"name":"PSS_CAPTURE_VA_SPACE_SECTION_INFORMATION","features":[546]},{"name":"PSS_CREATE_BREAKAWAY","features":[546]},{"name":"PSS_CREATE_BREAKAWAY_OPTIONAL","features":[546]},{"name":"PSS_CREATE_FORCE_BREAKAWAY","features":[546]},{"name":"PSS_CREATE_MEASURE_PERFORMANCE","features":[546]},{"name":"PSS_CREATE_RELEASE_SECTION","features":[546]},{"name":"PSS_CREATE_USE_VM_ALLOCATIONS","features":[546]},{"name":"PSS_DUPLICATE_CLOSE_SOURCE","features":[546]},{"name":"PSS_DUPLICATE_FLAGS","features":[546]},{"name":"PSS_DUPLICATE_NONE","features":[546]},{"name":"PSS_HANDLE_ENTRY","features":[305,546]},{"name":"PSS_HANDLE_FLAGS","features":[546]},{"name":"PSS_HANDLE_HAVE_BASIC_INFORMATION","features":[546]},{"name":"PSS_HANDLE_HAVE_NAME","features":[546]},{"name":"PSS_HANDLE_HAVE_TYPE","features":[546]},{"name":"PSS_HANDLE_HAVE_TYPE_SPECIFIC_INFORMATION","features":[546]},{"name":"PSS_HANDLE_INFORMATION","features":[546]},{"name":"PSS_HANDLE_NONE","features":[546]},{"name":"PSS_HANDLE_TRACE_INFORMATION","features":[305,546]},{"name":"PSS_OBJECT_TYPE","features":[546]},{"name":"PSS_OBJECT_TYPE_EVENT","features":[546]},{"name":"PSS_OBJECT_TYPE_MUTANT","features":[546]},{"name":"PSS_OBJECT_TYPE_PROCESS","features":[546]},{"name":"PSS_OBJECT_TYPE_SECTION","features":[546]},{"name":"PSS_OBJECT_TYPE_SEMAPHORE","features":[546]},{"name":"PSS_OBJECT_TYPE_THREAD","features":[546]},{"name":"PSS_OBJECT_TYPE_UNKNOWN","features":[546]},{"name":"PSS_PERFORMANCE_COUNTERS","features":[546]},{"name":"PSS_PERF_RESOLUTION","features":[546]},{"name":"PSS_PROCESS_FLAGS","features":[546]},{"name":"PSS_PROCESS_FLAGS_FROZEN","features":[546]},{"name":"PSS_PROCESS_FLAGS_NONE","features":[546]},{"name":"PSS_PROCESS_FLAGS_PROTECTED","features":[546]},{"name":"PSS_PROCESS_FLAGS_RESERVED_03","features":[546]},{"name":"PSS_PROCESS_FLAGS_RESERVED_04","features":[546]},{"name":"PSS_PROCESS_FLAGS_WOW64","features":[546]},{"name":"PSS_PROCESS_INFORMATION","features":[305,546]},{"name":"PSS_QUERY_AUXILIARY_PAGES_INFORMATION","features":[546]},{"name":"PSS_QUERY_HANDLE_INFORMATION","features":[546]},{"name":"PSS_QUERY_HANDLE_TRACE_INFORMATION","features":[546]},{"name":"PSS_QUERY_INFORMATION_CLASS","features":[546]},{"name":"PSS_QUERY_PERFORMANCE_COUNTERS","features":[546]},{"name":"PSS_QUERY_PROCESS_INFORMATION","features":[546]},{"name":"PSS_QUERY_THREAD_INFORMATION","features":[546]},{"name":"PSS_QUERY_VA_CLONE_INFORMATION","features":[546]},{"name":"PSS_QUERY_VA_SPACE_INFORMATION","features":[546]},{"name":"PSS_THREAD_ENTRY","features":[305,334,546,311]},{"name":"PSS_THREAD_FLAGS","features":[546]},{"name":"PSS_THREAD_FLAGS_NONE","features":[546]},{"name":"PSS_THREAD_FLAGS_TERMINATED","features":[546]},{"name":"PSS_THREAD_INFORMATION","features":[546]},{"name":"PSS_VA_CLONE_INFORMATION","features":[305,546]},{"name":"PSS_VA_SPACE_ENTRY","features":[546]},{"name":"PSS_VA_SPACE_INFORMATION","features":[546]},{"name":"PSS_WALK_AUXILIARY_PAGES","features":[546]},{"name":"PSS_WALK_HANDLES","features":[546]},{"name":"PSS_WALK_INFORMATION_CLASS","features":[546]},{"name":"PSS_WALK_THREADS","features":[546]},{"name":"PSS_WALK_VA_SPACE","features":[546]},{"name":"PssCaptureSnapshot","features":[305,546]},{"name":"PssDuplicateSnapshot","features":[305,546]},{"name":"PssFreeSnapshot","features":[305,546]},{"name":"PssQuerySnapshot","features":[546]},{"name":"PssWalkMarkerCreate","features":[546]},{"name":"PssWalkMarkerFree","features":[546]},{"name":"PssWalkMarkerGetPosition","features":[546]},{"name":"PssWalkMarkerSeekToBeginning","features":[546]},{"name":"PssWalkMarkerSetPosition","features":[546]},{"name":"PssWalkSnapshot","features":[546]}],"560":[{"name":"CREATE_TOOLHELP_SNAPSHOT_FLAGS","features":[547]},{"name":"CreateToolhelp32Snapshot","features":[305,547]},{"name":"HEAPENTRY32","features":[305,547]},{"name":"HEAPENTRY32_FLAGS","features":[547]},{"name":"HEAPLIST32","features":[547]},{"name":"HF32_DEFAULT","features":[547]},{"name":"HF32_SHARED","features":[547]},{"name":"Heap32First","features":[305,547]},{"name":"Heap32ListFirst","features":[305,547]},{"name":"Heap32ListNext","features":[305,547]},{"name":"Heap32Next","features":[305,547]},{"name":"LF32_FIXED","features":[547]},{"name":"LF32_FREE","features":[547]},{"name":"LF32_MOVEABLE","features":[547]},{"name":"MAX_MODULE_NAME32","features":[547]},{"name":"MODULEENTRY32","features":[305,547]},{"name":"MODULEENTRY32W","features":[305,547]},{"name":"Module32First","features":[305,547]},{"name":"Module32FirstW","features":[305,547]},{"name":"Module32Next","features":[305,547]},{"name":"Module32NextW","features":[305,547]},{"name":"PROCESSENTRY32","features":[547]},{"name":"PROCESSENTRY32W","features":[547]},{"name":"Process32First","features":[305,547]},{"name":"Process32FirstW","features":[305,547]},{"name":"Process32Next","features":[305,547]},{"name":"Process32NextW","features":[305,547]},{"name":"TH32CS_INHERIT","features":[547]},{"name":"TH32CS_SNAPALL","features":[547]},{"name":"TH32CS_SNAPHEAPLIST","features":[547]},{"name":"TH32CS_SNAPMODULE","features":[547]},{"name":"TH32CS_SNAPMODULE32","features":[547]},{"name":"TH32CS_SNAPPROCESS","features":[547]},{"name":"TH32CS_SNAPTHREAD","features":[547]},{"name":"THREADENTRY32","features":[547]},{"name":"Thread32First","features":[305,547]},{"name":"Thread32Next","features":[305,547]},{"name":"Toolhelp32ReadProcessMemory","features":[305,547]}],"561":[{"name":"MSG_category_Devices","features":[548]},{"name":"MSG_category_Disk","features":[548]},{"name":"MSG_category_Network","features":[548]},{"name":"MSG_category_Printers","features":[548]},{"name":"MSG_category_Services","features":[548]},{"name":"MSG_category_Shell","features":[548]},{"name":"MSG_category_SystemEvent","features":[548]},{"name":"MSG_channel_Application","features":[548]},{"name":"MSG_channel_ProviderMetadata","features":[548]},{"name":"MSG_channel_Security","features":[548]},{"name":"MSG_channel_System","features":[548]},{"name":"MSG_channel_TraceClassic","features":[548]},{"name":"MSG_channel_TraceLogging","features":[548]},{"name":"MSG_keyword_AnyKeyword","features":[548]},{"name":"MSG_keyword_AuditFailure","features":[548]},{"name":"MSG_keyword_AuditSuccess","features":[548]},{"name":"MSG_keyword_Classic","features":[548]},{"name":"MSG_keyword_CorrelationHint","features":[548]},{"name":"MSG_keyword_ResponseTime","features":[548]},{"name":"MSG_keyword_SQM","features":[548]},{"name":"MSG_keyword_WDIDiag","features":[548]},{"name":"MSG_level_Critical","features":[548]},{"name":"MSG_level_Error","features":[548]},{"name":"MSG_level_Informational","features":[548]},{"name":"MSG_level_LogAlways","features":[548]},{"name":"MSG_level_Verbose","features":[548]},{"name":"MSG_level_Warning","features":[548]},{"name":"MSG_opcode_DCStart","features":[548]},{"name":"MSG_opcode_DCStop","features":[548]},{"name":"MSG_opcode_Extension","features":[548]},{"name":"MSG_opcode_Info","features":[548]},{"name":"MSG_opcode_Receive","features":[548]},{"name":"MSG_opcode_Reply","features":[548]},{"name":"MSG_opcode_Resume","features":[548]},{"name":"MSG_opcode_Send","features":[548]},{"name":"MSG_opcode_Start","features":[548]},{"name":"MSG_opcode_Stop","features":[548]},{"name":"MSG_opcode_Suspend","features":[548]},{"name":"MSG_task_None","features":[548]},{"name":"WINEVENT_CHANNEL_CLASSIC_TRACE","features":[548]},{"name":"WINEVENT_CHANNEL_GLOBAL_APPLICATION","features":[548]},{"name":"WINEVENT_CHANNEL_GLOBAL_SECURITY","features":[548]},{"name":"WINEVENT_CHANNEL_GLOBAL_SYSTEM","features":[548]},{"name":"WINEVENT_CHANNEL_PROVIDERMETADATA","features":[548]},{"name":"WINEVENT_CHANNEL_TRACELOGGING","features":[548]},{"name":"WINEVENT_KEYWORD_AUDIT_FAILURE","features":[548]},{"name":"WINEVENT_KEYWORD_AUDIT_SUCCESS","features":[548]},{"name":"WINEVENT_KEYWORD_CORRELATION_HINT","features":[548]},{"name":"WINEVENT_KEYWORD_EVENTLOG_CLASSIC","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_49","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_56","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_57","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_58","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_59","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_60","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_61","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_62","features":[548]},{"name":"WINEVENT_KEYWORD_RESERVED_63","features":[548]},{"name":"WINEVENT_KEYWORD_RESPONSE_TIME","features":[548]},{"name":"WINEVENT_KEYWORD_SQM","features":[548]},{"name":"WINEVENT_KEYWORD_WDI_DIAG","features":[548]},{"name":"WINEVENT_LEVEL_CRITICAL","features":[548]},{"name":"WINEVENT_LEVEL_ERROR","features":[548]},{"name":"WINEVENT_LEVEL_INFO","features":[548]},{"name":"WINEVENT_LEVEL_LOG_ALWAYS","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_10","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_11","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_12","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_13","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_14","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_15","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_6","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_7","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_8","features":[548]},{"name":"WINEVENT_LEVEL_RESERVED_9","features":[548]},{"name":"WINEVENT_LEVEL_VERBOSE","features":[548]},{"name":"WINEVENT_LEVEL_WARNING","features":[548]},{"name":"WINEVENT_OPCODE_DC_START","features":[548]},{"name":"WINEVENT_OPCODE_DC_STOP","features":[548]},{"name":"WINEVENT_OPCODE_EXTENSION","features":[548]},{"name":"WINEVENT_OPCODE_INFO","features":[548]},{"name":"WINEVENT_OPCODE_RECEIVE","features":[548]},{"name":"WINEVENT_OPCODE_REPLY","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_241","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_242","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_243","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_244","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_245","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_246","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_247","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_248","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_249","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_250","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_251","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_252","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_253","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_254","features":[548]},{"name":"WINEVENT_OPCODE_RESERVED_255","features":[548]},{"name":"WINEVENT_OPCODE_RESUME","features":[548]},{"name":"WINEVENT_OPCODE_SEND","features":[548]},{"name":"WINEVENT_OPCODE_START","features":[548]},{"name":"WINEVENT_OPCODE_STOP","features":[548]},{"name":"WINEVENT_OPCODE_SUSPEND","features":[548]},{"name":"WINEVENT_TASK_NONE","features":[548]},{"name":"WINEVT_KEYWORD_ANY","features":[548]}],"562":[{"name":"APPLICATIONTYPE","features":[549]},{"name":"AUTHENTICATION_LEVEL","features":[549]},{"name":"BOID","features":[549]},{"name":"CLSID_MSDtcTransaction","features":[549]},{"name":"CLSID_MSDtcTransactionManager","features":[549]},{"name":"CLUSTERRESOURCE_APPLICATIONTYPE","features":[549]},{"name":"DTCINITIATEDRECOVERYWORK","features":[549]},{"name":"DTCINITIATEDRECOVERYWORK_CHECKLUSTATUS","features":[549]},{"name":"DTCINITIATEDRECOVERYWORK_TMDOWN","features":[549]},{"name":"DTCINITIATEDRECOVERYWORK_TRANS","features":[549]},{"name":"DTCINSTALL_E_CLIENT_ALREADY_INSTALLED","features":[549]},{"name":"DTCINSTALL_E_SERVER_ALREADY_INSTALLED","features":[549]},{"name":"DTCLUCOMPARESTATE","features":[549]},{"name":"DTCLUCOMPARESTATESCONFIRMATION","features":[549]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_CONFIRM","features":[549]},{"name":"DTCLUCOMPARESTATESCONFIRMATION_PROTOCOL","features":[549]},{"name":"DTCLUCOMPARESTATESERROR","features":[549]},{"name":"DTCLUCOMPARESTATESERROR_PROTOCOL","features":[549]},{"name":"DTCLUCOMPARESTATESRESPONSE","features":[549]},{"name":"DTCLUCOMPARESTATESRESPONSE_OK","features":[549]},{"name":"DTCLUCOMPARESTATESRESPONSE_PROTOCOL","features":[549]},{"name":"DTCLUCOMPARESTATE_COMMITTED","features":[549]},{"name":"DTCLUCOMPARESTATE_HEURISTICCOMMITTED","features":[549]},{"name":"DTCLUCOMPARESTATE_HEURISTICMIXED","features":[549]},{"name":"DTCLUCOMPARESTATE_HEURISTICRESET","features":[549]},{"name":"DTCLUCOMPARESTATE_INDOUBT","features":[549]},{"name":"DTCLUCOMPARESTATE_RESET","features":[549]},{"name":"DTCLUXLN","features":[549]},{"name":"DTCLUXLNCONFIRMATION","features":[549]},{"name":"DTCLUXLNCONFIRMATION_COLDWARMMISMATCH","features":[549]},{"name":"DTCLUXLNCONFIRMATION_CONFIRM","features":[549]},{"name":"DTCLUXLNCONFIRMATION_LOGNAMEMISMATCH","features":[549]},{"name":"DTCLUXLNCONFIRMATION_OBSOLETE","features":[549]},{"name":"DTCLUXLNERROR","features":[549]},{"name":"DTCLUXLNERROR_COLDWARMMISMATCH","features":[549]},{"name":"DTCLUXLNERROR_LOGNAMEMISMATCH","features":[549]},{"name":"DTCLUXLNERROR_PROTOCOL","features":[549]},{"name":"DTCLUXLNRESPONSE","features":[549]},{"name":"DTCLUXLNRESPONSE_COLDWARMMISMATCH","features":[549]},{"name":"DTCLUXLNRESPONSE_LOGNAMEMISMATCH","features":[549]},{"name":"DTCLUXLNRESPONSE_OK_SENDCONFIRMATION","features":[549]},{"name":"DTCLUXLNRESPONSE_OK_SENDOURXLNBACK","features":[549]},{"name":"DTCLUXLN_COLD","features":[549]},{"name":"DTCLUXLN_WARM","features":[549]},{"name":"DTC_GET_TRANSACTION_MANAGER","features":[549]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_A","features":[549]},{"name":"DTC_GET_TRANSACTION_MANAGER_EX_W","features":[549]},{"name":"DTC_INSTALL_CLIENT","features":[549]},{"name":"DTC_INSTALL_OVERWRITE_CLIENT","features":[549]},{"name":"DTC_INSTALL_OVERWRITE_SERVER","features":[549]},{"name":"DTC_STATUS_","features":[549]},{"name":"DTC_STATUS_CONTINUING","features":[549]},{"name":"DTC_STATUS_E_CANTCONTROL","features":[549]},{"name":"DTC_STATUS_FAILED","features":[549]},{"name":"DTC_STATUS_PAUSED","features":[549]},{"name":"DTC_STATUS_PAUSING","features":[549]},{"name":"DTC_STATUS_STARTED","features":[549]},{"name":"DTC_STATUS_STARTING","features":[549]},{"name":"DTC_STATUS_STOPPED","features":[549]},{"name":"DTC_STATUS_STOPPING","features":[549]},{"name":"DTC_STATUS_UNKNOWN","features":[549]},{"name":"DtcGetTransactionManager","features":[549]},{"name":"DtcGetTransactionManagerC","features":[549]},{"name":"DtcGetTransactionManagerExA","features":[549]},{"name":"DtcGetTransactionManagerExW","features":[549]},{"name":"IDtcLuConfigure","features":[549]},{"name":"IDtcLuRecovery","features":[549]},{"name":"IDtcLuRecoveryFactory","features":[549]},{"name":"IDtcLuRecoveryInitiatedByDtc","features":[549]},{"name":"IDtcLuRecoveryInitiatedByDtcStatusWork","features":[549]},{"name":"IDtcLuRecoveryInitiatedByDtcTransWork","features":[549]},{"name":"IDtcLuRecoveryInitiatedByLu","features":[549]},{"name":"IDtcLuRecoveryInitiatedByLuWork","features":[549]},{"name":"IDtcLuRmEnlistment","features":[549]},{"name":"IDtcLuRmEnlistmentFactory","features":[549]},{"name":"IDtcLuRmEnlistmentSink","features":[549]},{"name":"IDtcLuSubordinateDtc","features":[549]},{"name":"IDtcLuSubordinateDtcFactory","features":[549]},{"name":"IDtcLuSubordinateDtcSink","features":[549]},{"name":"IDtcNetworkAccessConfig","features":[549]},{"name":"IDtcNetworkAccessConfig2","features":[549]},{"name":"IDtcNetworkAccessConfig3","features":[549]},{"name":"IDtcToXaHelper","features":[549]},{"name":"IDtcToXaHelperFactory","features":[549]},{"name":"IDtcToXaHelperSinglePipe","features":[549]},{"name":"IDtcToXaMapper","features":[549]},{"name":"IGetDispenser","features":[549]},{"name":"IKernelTransaction","features":[549]},{"name":"ILastResourceManager","features":[549]},{"name":"INCOMING_AUTHENTICATION_REQUIRED","features":[549]},{"name":"IPrepareInfo","features":[549]},{"name":"IPrepareInfo2","features":[549]},{"name":"IRMHelper","features":[549]},{"name":"IResourceManager","features":[549]},{"name":"IResourceManager2","features":[549]},{"name":"IResourceManagerFactory","features":[549]},{"name":"IResourceManagerFactory2","features":[549]},{"name":"IResourceManagerRejoinable","features":[549]},{"name":"IResourceManagerSink","features":[549]},{"name":"ISOFLAG","features":[549]},{"name":"ISOFLAG_OPTIMISTIC","features":[549]},{"name":"ISOFLAG_READONLY","features":[549]},{"name":"ISOFLAG_RETAIN_ABORT","features":[549]},{"name":"ISOFLAG_RETAIN_ABORT_DC","features":[549]},{"name":"ISOFLAG_RETAIN_ABORT_NO","features":[549]},{"name":"ISOFLAG_RETAIN_BOTH","features":[549]},{"name":"ISOFLAG_RETAIN_COMMIT","features":[549]},{"name":"ISOFLAG_RETAIN_COMMIT_DC","features":[549]},{"name":"ISOFLAG_RETAIN_COMMIT_NO","features":[549]},{"name":"ISOFLAG_RETAIN_DONTCARE","features":[549]},{"name":"ISOFLAG_RETAIN_NONE","features":[549]},{"name":"ISOLATIONLEVEL","features":[549]},{"name":"ISOLATIONLEVEL_BROWSE","features":[549]},{"name":"ISOLATIONLEVEL_CHAOS","features":[549]},{"name":"ISOLATIONLEVEL_CURSORSTABILITY","features":[549]},{"name":"ISOLATIONLEVEL_ISOLATED","features":[549]},{"name":"ISOLATIONLEVEL_READCOMMITTED","features":[549]},{"name":"ISOLATIONLEVEL_READUNCOMMITTED","features":[549]},{"name":"ISOLATIONLEVEL_REPEATABLEREAD","features":[549]},{"name":"ISOLATIONLEVEL_SERIALIZABLE","features":[549]},{"name":"ISOLATIONLEVEL_UNSPECIFIED","features":[549]},{"name":"ITipHelper","features":[549]},{"name":"ITipPullSink","features":[549]},{"name":"ITipTransaction","features":[549]},{"name":"ITmNodeName","features":[549]},{"name":"ITransaction","features":[549]},{"name":"ITransaction2","features":[549]},{"name":"ITransactionCloner","features":[549]},{"name":"ITransactionDispenser","features":[549]},{"name":"ITransactionEnlistmentAsync","features":[549]},{"name":"ITransactionExport","features":[549]},{"name":"ITransactionExportFactory","features":[549]},{"name":"ITransactionImport","features":[549]},{"name":"ITransactionImportWhereabouts","features":[549]},{"name":"ITransactionLastEnlistmentAsync","features":[549]},{"name":"ITransactionLastResourceAsync","features":[549]},{"name":"ITransactionOptions","features":[549]},{"name":"ITransactionOutcomeEvents","features":[549]},{"name":"ITransactionPhase0EnlistmentAsync","features":[549]},{"name":"ITransactionPhase0Factory","features":[549]},{"name":"ITransactionPhase0NotifyAsync","features":[549]},{"name":"ITransactionReceiver","features":[549]},{"name":"ITransactionReceiverFactory","features":[549]},{"name":"ITransactionResource","features":[549]},{"name":"ITransactionResourceAsync","features":[549]},{"name":"ITransactionTransmitter","features":[549]},{"name":"ITransactionTransmitterFactory","features":[549]},{"name":"ITransactionVoterBallotAsync2","features":[549]},{"name":"ITransactionVoterFactory2","features":[549]},{"name":"ITransactionVoterNotifyAsync2","features":[549]},{"name":"IXAConfig","features":[549]},{"name":"IXAObtainRMInfo","features":[549]},{"name":"IXATransLookup","features":[549]},{"name":"IXATransLookup2","features":[549]},{"name":"LOCAL_APPLICATIONTYPE","features":[549]},{"name":"MAXBQUALSIZE","features":[549]},{"name":"MAXGTRIDSIZE","features":[549]},{"name":"MAXINFOSIZE","features":[549]},{"name":"MAX_TRAN_DESC","features":[549]},{"name":"MUTUAL_AUTHENTICATION_REQUIRED","features":[549]},{"name":"NO_AUTHENTICATION_REQUIRED","features":[549]},{"name":"OLE_TM_CONFIG_PARAMS_V1","features":[549]},{"name":"OLE_TM_CONFIG_PARAMS_V2","features":[549]},{"name":"OLE_TM_CONFIG_VERSION_1","features":[549]},{"name":"OLE_TM_CONFIG_VERSION_2","features":[549]},{"name":"OLE_TM_FLAG_INTERNAL_TO_TM","features":[549]},{"name":"OLE_TM_FLAG_NOAGILERECOVERY","features":[549]},{"name":"OLE_TM_FLAG_NODEMANDSTART","features":[549]},{"name":"OLE_TM_FLAG_NONE","features":[549]},{"name":"OLE_TM_FLAG_QUERY_SERVICE_LOCKSTATUS","features":[549]},{"name":"PROXY_CONFIG_PARAMS","features":[549]},{"name":"RMNAMESZ","features":[549]},{"name":"TMASYNC","features":[549]},{"name":"TMENDRSCAN","features":[549]},{"name":"TMER_INVAL","features":[549]},{"name":"TMER_PROTO","features":[549]},{"name":"TMER_TMERR","features":[549]},{"name":"TMFAIL","features":[549]},{"name":"TMJOIN","features":[549]},{"name":"TMMIGRATE","features":[549]},{"name":"TMMULTIPLE","features":[549]},{"name":"TMNOFLAGS","features":[549]},{"name":"TMNOMIGRATE","features":[549]},{"name":"TMNOWAIT","features":[549]},{"name":"TMONEPHASE","features":[549]},{"name":"TMREGISTER","features":[549]},{"name":"TMRESUME","features":[549]},{"name":"TMSTARTRSCAN","features":[549]},{"name":"TMSUCCESS","features":[549]},{"name":"TMSUSPEND","features":[549]},{"name":"TMUSEASYNC","features":[549]},{"name":"TM_JOIN","features":[549]},{"name":"TM_OK","features":[549]},{"name":"TM_RESUME","features":[549]},{"name":"TX_MISC_CONSTANTS","features":[549]},{"name":"XACTCONST","features":[549]},{"name":"XACTCONST_TIMEOUTINFINITE","features":[549]},{"name":"XACTHEURISTIC","features":[549]},{"name":"XACTHEURISTIC_ABORT","features":[549]},{"name":"XACTHEURISTIC_COMMIT","features":[549]},{"name":"XACTHEURISTIC_DAMAGE","features":[549]},{"name":"XACTHEURISTIC_DANGER","features":[549]},{"name":"XACTOPT","features":[549]},{"name":"XACTRM","features":[549]},{"name":"XACTRM_NOREADONLYPREPARES","features":[549]},{"name":"XACTRM_OPTIMISTICLASTWINS","features":[549]},{"name":"XACTSTAT","features":[549]},{"name":"XACTSTATS","features":[305,549]},{"name":"XACTSTAT_ABORTED","features":[549]},{"name":"XACTSTAT_ABORTING","features":[549]},{"name":"XACTSTAT_ALL","features":[549]},{"name":"XACTSTAT_CLOSED","features":[549]},{"name":"XACTSTAT_COMMITRETAINING","features":[549]},{"name":"XACTSTAT_COMMITTED","features":[549]},{"name":"XACTSTAT_COMMITTING","features":[549]},{"name":"XACTSTAT_FORCED_ABORT","features":[549]},{"name":"XACTSTAT_FORCED_COMMIT","features":[549]},{"name":"XACTSTAT_HEURISTIC_ABORT","features":[549]},{"name":"XACTSTAT_HEURISTIC_COMMIT","features":[549]},{"name":"XACTSTAT_HEURISTIC_DAMAGE","features":[549]},{"name":"XACTSTAT_HEURISTIC_DANGER","features":[549]},{"name":"XACTSTAT_INDOUBT","features":[549]},{"name":"XACTSTAT_NONE","features":[549]},{"name":"XACTSTAT_NOTPREPARED","features":[549]},{"name":"XACTSTAT_OPEN","features":[549]},{"name":"XACTSTAT_OPENNORMAL","features":[549]},{"name":"XACTSTAT_OPENREFUSED","features":[549]},{"name":"XACTSTAT_PREPARED","features":[549]},{"name":"XACTSTAT_PREPARERETAINED","features":[549]},{"name":"XACTSTAT_PREPARERETAINING","features":[549]},{"name":"XACTSTAT_PREPARING","features":[549]},{"name":"XACTTC","features":[549]},{"name":"XACTTC_ASYNC","features":[549]},{"name":"XACTTC_ASYNC_PHASEONE","features":[549]},{"name":"XACTTC_NONE","features":[549]},{"name":"XACTTC_SYNC","features":[549]},{"name":"XACTTC_SYNC_PHASEONE","features":[549]},{"name":"XACTTC_SYNC_PHASETWO","features":[549]},{"name":"XACTTRANSINFO","features":[549]},{"name":"XACT_DTC_CONSTANTS","features":[549]},{"name":"XACT_E_CONNECTION_REQUEST_DENIED","features":[549]},{"name":"XACT_E_DUPLICATE_GUID","features":[549]},{"name":"XACT_E_DUPLICATE_LU","features":[549]},{"name":"XACT_E_DUPLICATE_TRANSID","features":[549]},{"name":"XACT_E_LRMRECOVERYALREADYDONE","features":[549]},{"name":"XACT_E_LU_BUSY","features":[549]},{"name":"XACT_E_LU_DOWN","features":[549]},{"name":"XACT_E_LU_NOT_CONNECTED","features":[549]},{"name":"XACT_E_LU_NOT_FOUND","features":[549]},{"name":"XACT_E_LU_NO_RECOVERY_PROCESS","features":[549]},{"name":"XACT_E_LU_RECOVERING","features":[549]},{"name":"XACT_E_LU_RECOVERY_MISMATCH","features":[549]},{"name":"XACT_E_NOLASTRESOURCEINTERFACE","features":[549]},{"name":"XACT_E_NOTSINGLEPHASE","features":[549]},{"name":"XACT_E_PROTOCOL","features":[549]},{"name":"XACT_E_RECOVERYALREADYDONE","features":[549]},{"name":"XACT_E_RECOVERY_FAILED","features":[549]},{"name":"XACT_E_RM_FAILURE","features":[549]},{"name":"XACT_E_RM_UNAVAILABLE","features":[549]},{"name":"XACT_E_TOOMANY_ENLISTMENTS","features":[549]},{"name":"XACT_OK_NONOTIFY","features":[549]},{"name":"XACT_S_NONOTIFY","features":[549]},{"name":"XAER_ASYNC","features":[549]},{"name":"XAER_DUPID","features":[549]},{"name":"XAER_INVAL","features":[549]},{"name":"XAER_NOTA","features":[549]},{"name":"XAER_OUTSIDE","features":[549]},{"name":"XAER_PROTO","features":[549]},{"name":"XAER_RMERR","features":[549]},{"name":"XAER_RMFAIL","features":[549]},{"name":"XA_CLOSE_EPT","features":[549]},{"name":"XA_COMMIT_EPT","features":[549]},{"name":"XA_COMPLETE_EPT","features":[549]},{"name":"XA_END_EPT","features":[549]},{"name":"XA_FMTID_DTC","features":[549]},{"name":"XA_FMTID_DTC_VER1","features":[549]},{"name":"XA_FORGET_EPT","features":[549]},{"name":"XA_HEURCOM","features":[549]},{"name":"XA_HEURHAZ","features":[549]},{"name":"XA_HEURMIX","features":[549]},{"name":"XA_HEURRB","features":[549]},{"name":"XA_NOMIGRATE","features":[549]},{"name":"XA_OK","features":[549]},{"name":"XA_OPEN_EPT","features":[549]},{"name":"XA_PREPARE_EPT","features":[549]},{"name":"XA_RBBASE","features":[549]},{"name":"XA_RBCOMMFAIL","features":[549]},{"name":"XA_RBDEADLOCK","features":[549]},{"name":"XA_RBEND","features":[549]},{"name":"XA_RBINTEGRITY","features":[549]},{"name":"XA_RBOTHER","features":[549]},{"name":"XA_RBPROTO","features":[549]},{"name":"XA_RBROLLBACK","features":[549]},{"name":"XA_RBTIMEOUT","features":[549]},{"name":"XA_RBTRANSIENT","features":[549]},{"name":"XA_RDONLY","features":[549]},{"name":"XA_RECOVER_EPT","features":[549]},{"name":"XA_RETRY","features":[549]},{"name":"XA_ROLLBACK_EPT","features":[549]},{"name":"XA_START_EPT","features":[549]},{"name":"XA_SWITCH_F_DTC","features":[549]},{"name":"XID","features":[549]},{"name":"XIDDATASIZE","features":[549]},{"name":"dwUSER_MS_SQLSERVER","features":[549]},{"name":"xa_switch_t","features":[549]}],"563":[{"name":"CallEnclave","features":[305,550]},{"name":"CreateEnclave","features":[305,550]},{"name":"CreateEnvironmentBlock","features":[305,550]},{"name":"DeleteEnclave","features":[305,550]},{"name":"DestroyEnvironmentBlock","features":[305,550]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ACTIVE","features":[550]},{"name":"ENCLAVE_FLAG_DYNAMIC_DEBUG_ENABLED","features":[550]},{"name":"ENCLAVE_FLAG_FULL_DEBUG_ENABLED","features":[550]},{"name":"ENCLAVE_IDENTITY","features":[550]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_EXACT_CODE","features":[550]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_INVALID","features":[550]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_AUTHOR","features":[550]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_FAMILY","features":[550]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_IMAGE","features":[550]},{"name":"ENCLAVE_IDENTITY_POLICY_SEAL_SAME_PRIMARY_CODE","features":[550]},{"name":"ENCLAVE_INFORMATION","features":[550]},{"name":"ENCLAVE_REPORT_DATA_LENGTH","features":[550]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_DYNAMIC_DEBUG","features":[550]},{"name":"ENCLAVE_RUNTIME_POLICY_ALLOW_FULL_DEBUG","features":[550]},{"name":"ENCLAVE_SEALING_IDENTITY_POLICY","features":[550]},{"name":"ENCLAVE_UNSEAL_FLAG_STALE_KEY","features":[550]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_DEBUG_KEY","features":[550]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_FAMILY_ID","features":[550]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_IMAGE_ID","features":[550]},{"name":"ENCLAVE_VBS_BASIC_KEY_FLAG_MEASUREMENT","features":[550]},{"name":"ENCLAVE_VBS_BASIC_KEY_REQUEST","features":[550]},{"name":"EnclaveGetAttestationReport","features":[550]},{"name":"EnclaveGetEnclaveInformation","features":[550]},{"name":"EnclaveSealData","features":[550]},{"name":"EnclaveUnsealData","features":[550]},{"name":"EnclaveVerifyAttestationReport","features":[550]},{"name":"ExpandEnvironmentStringsA","features":[550]},{"name":"ExpandEnvironmentStringsForUserA","features":[305,550]},{"name":"ExpandEnvironmentStringsForUserW","features":[305,550]},{"name":"ExpandEnvironmentStringsW","features":[550]},{"name":"FreeEnvironmentStringsA","features":[305,550]},{"name":"FreeEnvironmentStringsW","features":[305,550]},{"name":"GetCommandLineA","features":[550]},{"name":"GetCommandLineW","features":[550]},{"name":"GetCurrentDirectoryA","features":[550]},{"name":"GetCurrentDirectoryW","features":[550]},{"name":"GetEnvironmentStrings","features":[550]},{"name":"GetEnvironmentStringsW","features":[550]},{"name":"GetEnvironmentVariableA","features":[550]},{"name":"GetEnvironmentVariableW","features":[550]},{"name":"InitializeEnclave","features":[305,550]},{"name":"IsEnclaveTypeSupported","features":[305,550]},{"name":"LoadEnclaveData","features":[305,550]},{"name":"LoadEnclaveImageA","features":[305,550]},{"name":"LoadEnclaveImageW","features":[305,550]},{"name":"NeedCurrentDirectoryForExePathA","features":[305,550]},{"name":"NeedCurrentDirectoryForExePathW","features":[305,550]},{"name":"SetCurrentDirectoryA","features":[305,550]},{"name":"SetCurrentDirectoryW","features":[305,550]},{"name":"SetEnvironmentStringsW","features":[305,550]},{"name":"SetEnvironmentVariableA","features":[305,550]},{"name":"SetEnvironmentVariableW","features":[305,550]},{"name":"TerminateEnclave","features":[305,550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_COMMIT_PAGES","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_CREATE_THREAD","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_DECOMMIT_PAGES","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_KEY","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_RANDOM_DATA","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GENERATE_REPORT","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_GET_ENCLAVE_INFORMATION","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_INTERRUPT_THREAD","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_PROTECT_PAGES","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_ENCLAVE","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_RETURN_FROM_EXCEPTION","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_TERMINATE_THREAD","features":[550]},{"name":"VBS_BASIC_ENCLAVE_BASIC_CALL_VERIFY_REPORT","features":[550]},{"name":"VBS_BASIC_ENCLAVE_EXCEPTION_AMD64","features":[550]},{"name":"VBS_BASIC_ENCLAVE_SYSCALL_PAGE","features":[550]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR32","features":[550]},{"name":"VBS_BASIC_ENCLAVE_THREAD_DESCRIPTOR64","features":[550]},{"name":"VBS_ENCLAVE_REPORT","features":[550]},{"name":"VBS_ENCLAVE_REPORT_MODULE","features":[550]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER","features":[550]},{"name":"VBS_ENCLAVE_REPORT_PKG_HEADER_VERSION_CURRENT","features":[550]},{"name":"VBS_ENCLAVE_REPORT_SIGNATURE_SCHEME_SHA256_RSA_PSS_SHA256","features":[550]},{"name":"VBS_ENCLAVE_REPORT_VARDATA_HEADER","features":[550]},{"name":"VBS_ENCLAVE_REPORT_VERSION_CURRENT","features":[550]},{"name":"VBS_ENCLAVE_VARDATA_INVALID","features":[550]},{"name":"VBS_ENCLAVE_VARDATA_MODULE","features":[550]}],"564":[{"name":"APPCRASH_EVENT","features":[551]},{"name":"AddERExcludedApplicationA","features":[305,551]},{"name":"AddERExcludedApplicationW","features":[305,551]},{"name":"EFaultRepRetVal","features":[551]},{"name":"E_STORE_INVALID","features":[551]},{"name":"E_STORE_MACHINE_ARCHIVE","features":[551]},{"name":"E_STORE_MACHINE_QUEUE","features":[551]},{"name":"E_STORE_USER_ARCHIVE","features":[551]},{"name":"E_STORE_USER_QUEUE","features":[551]},{"name":"HREPORT","features":[551]},{"name":"HREPORTSTORE","features":[551]},{"name":"PACKAGED_APPCRASH_EVENT","features":[551]},{"name":"PFN_WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[305,334,551,311]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT","features":[305,334,551,311]},{"name":"PFN_WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE","features":[305,334,551,311]},{"name":"REPORT_STORE_TYPES","features":[551]},{"name":"ReportFault","features":[305,334,551,311]},{"name":"WER_CONSENT","features":[551]},{"name":"WER_DUMP_AUXILIARY","features":[551]},{"name":"WER_DUMP_CUSTOM_OPTIONS","features":[305,551]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V2","features":[305,551]},{"name":"WER_DUMP_CUSTOM_OPTIONS_V3","features":[305,551]},{"name":"WER_DUMP_MASK_START","features":[551]},{"name":"WER_DUMP_NOHEAP_ONQUEUE","features":[551]},{"name":"WER_DUMP_TYPE","features":[551]},{"name":"WER_EXCEPTION_INFORMATION","features":[305,334,551,311]},{"name":"WER_FAULT_REPORTING","features":[551]},{"name":"WER_FAULT_REPORTING_ALWAYS_SHOW_UI","features":[551]},{"name":"WER_FAULT_REPORTING_CRITICAL","features":[551]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_CRASH","features":[551]},{"name":"WER_FAULT_REPORTING_DISABLE_SNAPSHOT_HANG","features":[551]},{"name":"WER_FAULT_REPORTING_DURABLE","features":[551]},{"name":"WER_FAULT_REPORTING_FLAG_DISABLE_THREAD_SUSPENSION","features":[551]},{"name":"WER_FAULT_REPORTING_FLAG_NOHEAP","features":[551]},{"name":"WER_FAULT_REPORTING_FLAG_NO_HEAP_ON_QUEUE","features":[551]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE","features":[551]},{"name":"WER_FAULT_REPORTING_FLAG_QUEUE_UPLOAD","features":[551]},{"name":"WER_FAULT_REPORTING_NO_UI","features":[551]},{"name":"WER_FILE","features":[551]},{"name":"WER_FILE_ANONYMOUS_DATA","features":[551]},{"name":"WER_FILE_COMPRESSED","features":[551]},{"name":"WER_FILE_DELETE_WHEN_DONE","features":[551]},{"name":"WER_FILE_TYPE","features":[551]},{"name":"WER_MAX_APPLICATION_NAME_LENGTH","features":[551]},{"name":"WER_MAX_BUCKET_ID_STRING_LENGTH","features":[551]},{"name":"WER_MAX_DESCRIPTION_LENGTH","features":[551]},{"name":"WER_MAX_EVENT_NAME_LENGTH","features":[551]},{"name":"WER_MAX_FRIENDLY_EVENT_NAME_LENGTH","features":[551]},{"name":"WER_MAX_LOCAL_DUMP_SUBPATH_LENGTH","features":[551]},{"name":"WER_MAX_PARAM_COUNT","features":[551]},{"name":"WER_MAX_PARAM_LENGTH","features":[551]},{"name":"WER_MAX_PREFERRED_MODULES","features":[551]},{"name":"WER_MAX_PREFERRED_MODULES_BUFFER","features":[551]},{"name":"WER_MAX_REGISTERED_DUMPCOLLECTION","features":[551]},{"name":"WER_MAX_REGISTERED_ENTRIES","features":[551]},{"name":"WER_MAX_REGISTERED_METADATA","features":[551]},{"name":"WER_MAX_REGISTERED_RUNTIME_EXCEPTION_MODULES","features":[551]},{"name":"WER_MAX_SIGNATURE_NAME_LENGTH","features":[551]},{"name":"WER_MAX_TOTAL_PARAM_LENGTH","features":[551]},{"name":"WER_METADATA_KEY_MAX_LENGTH","features":[551]},{"name":"WER_METADATA_VALUE_MAX_LENGTH","features":[551]},{"name":"WER_P0","features":[551]},{"name":"WER_P1","features":[551]},{"name":"WER_P2","features":[551]},{"name":"WER_P3","features":[551]},{"name":"WER_P4","features":[551]},{"name":"WER_P5","features":[551]},{"name":"WER_P6","features":[551]},{"name":"WER_P7","features":[551]},{"name":"WER_P8","features":[551]},{"name":"WER_P9","features":[551]},{"name":"WER_REGISTER_FILE_TYPE","features":[551]},{"name":"WER_REPORT_INFORMATION","features":[305,551]},{"name":"WER_REPORT_INFORMATION_V3","features":[305,551]},{"name":"WER_REPORT_INFORMATION_V4","features":[305,551]},{"name":"WER_REPORT_INFORMATION_V5","features":[305,551]},{"name":"WER_REPORT_METADATA_V1","features":[305,551]},{"name":"WER_REPORT_METADATA_V2","features":[305,551]},{"name":"WER_REPORT_METADATA_V3","features":[305,551]},{"name":"WER_REPORT_PARAMETER","features":[551]},{"name":"WER_REPORT_SIGNATURE","features":[551]},{"name":"WER_REPORT_TYPE","features":[551]},{"name":"WER_REPORT_UI","features":[551]},{"name":"WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH","features":[551]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_FUNCTION","features":[551]},{"name":"WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE_FUNCTION","features":[551]},{"name":"WER_RUNTIME_EXCEPTION_INFORMATION","features":[305,334,551,311]},{"name":"WER_SUBMIT_ADD_REGISTERED_DATA","features":[551]},{"name":"WER_SUBMIT_ARCHIVE_PARAMETERS_ONLY","features":[551]},{"name":"WER_SUBMIT_BYPASS_DATA_THROTTLING","features":[551]},{"name":"WER_SUBMIT_BYPASS_NETWORK_COST_THROTTLING","features":[551]},{"name":"WER_SUBMIT_BYPASS_POWER_THROTTLING","features":[551]},{"name":"WER_SUBMIT_FLAGS","features":[551]},{"name":"WER_SUBMIT_HONOR_RECOVERY","features":[551]},{"name":"WER_SUBMIT_HONOR_RESTART","features":[551]},{"name":"WER_SUBMIT_NO_ARCHIVE","features":[551]},{"name":"WER_SUBMIT_NO_CLOSE_UI","features":[551]},{"name":"WER_SUBMIT_NO_QUEUE","features":[551]},{"name":"WER_SUBMIT_OUTOFPROCESS","features":[551]},{"name":"WER_SUBMIT_OUTOFPROCESS_ASYNC","features":[551]},{"name":"WER_SUBMIT_QUEUE","features":[551]},{"name":"WER_SUBMIT_REPORT_MACHINE_ID","features":[551]},{"name":"WER_SUBMIT_RESULT","features":[551]},{"name":"WER_SUBMIT_SHOW_DEBUG","features":[551]},{"name":"WER_SUBMIT_START_MINIMIZED","features":[551]},{"name":"WerAddExcludedApplication","features":[305,551]},{"name":"WerConsentAlwaysPrompt","features":[551]},{"name":"WerConsentApproved","features":[551]},{"name":"WerConsentDenied","features":[551]},{"name":"WerConsentMax","features":[551]},{"name":"WerConsentNotAsked","features":[551]},{"name":"WerCustomAction","features":[551]},{"name":"WerDisabled","features":[551]},{"name":"WerDisabledQueue","features":[551]},{"name":"WerDumpTypeHeapDump","features":[551]},{"name":"WerDumpTypeMax","features":[551]},{"name":"WerDumpTypeMicroDump","features":[551]},{"name":"WerDumpTypeMiniDump","features":[551]},{"name":"WerDumpTypeNone","features":[551]},{"name":"WerDumpTypeTriageDump","features":[551]},{"name":"WerFileTypeAuxiliaryDump","features":[551]},{"name":"WerFileTypeCustomDump","features":[551]},{"name":"WerFileTypeEtlTrace","features":[551]},{"name":"WerFileTypeHeapdump","features":[551]},{"name":"WerFileTypeMax","features":[551]},{"name":"WerFileTypeMicrodump","features":[551]},{"name":"WerFileTypeMinidump","features":[551]},{"name":"WerFileTypeOther","features":[551]},{"name":"WerFileTypeTriagedump","features":[551]},{"name":"WerFileTypeUserDocument","features":[551]},{"name":"WerFreeString","features":[551]},{"name":"WerGetFlags","features":[305,551]},{"name":"WerRegFileTypeMax","features":[551]},{"name":"WerRegFileTypeOther","features":[551]},{"name":"WerRegFileTypeUserDocument","features":[551]},{"name":"WerRegisterAdditionalProcess","features":[551]},{"name":"WerRegisterAppLocalDump","features":[551]},{"name":"WerRegisterCustomMetadata","features":[551]},{"name":"WerRegisterExcludedMemoryBlock","features":[551]},{"name":"WerRegisterFile","features":[551]},{"name":"WerRegisterMemoryBlock","features":[551]},{"name":"WerRegisterRuntimeExceptionModule","features":[551]},{"name":"WerRemoveExcludedApplication","features":[305,551]},{"name":"WerReportAddDump","features":[305,334,551,311]},{"name":"WerReportAddFile","features":[551]},{"name":"WerReportApplicationCrash","features":[551]},{"name":"WerReportApplicationHang","features":[551]},{"name":"WerReportAsync","features":[551]},{"name":"WerReportCancelled","features":[551]},{"name":"WerReportCloseHandle","features":[551]},{"name":"WerReportCreate","features":[305,551]},{"name":"WerReportCritical","features":[551]},{"name":"WerReportDebug","features":[551]},{"name":"WerReportFailed","features":[551]},{"name":"WerReportHang","features":[305,551]},{"name":"WerReportInvalid","features":[551]},{"name":"WerReportKernel","features":[551]},{"name":"WerReportNonCritical","features":[551]},{"name":"WerReportQueued","features":[551]},{"name":"WerReportSetParameter","features":[551]},{"name":"WerReportSetUIOption","features":[551]},{"name":"WerReportSubmit","features":[551]},{"name":"WerReportUploaded","features":[551]},{"name":"WerReportUploadedCab","features":[551]},{"name":"WerSetFlags","features":[551]},{"name":"WerStorageLocationNotFound","features":[551]},{"name":"WerStoreClose","features":[551]},{"name":"WerStoreGetFirstReportKey","features":[551]},{"name":"WerStoreGetNextReportKey","features":[551]},{"name":"WerStoreGetReportCount","features":[551]},{"name":"WerStoreGetSizeOnDisk","features":[551]},{"name":"WerStoreOpen","features":[551]},{"name":"WerStorePurge","features":[551]},{"name":"WerStoreQueryReportMetadataV1","features":[305,551]},{"name":"WerStoreQueryReportMetadataV2","features":[305,551]},{"name":"WerStoreQueryReportMetadataV3","features":[305,551]},{"name":"WerStoreUploadReport","features":[551]},{"name":"WerSubmitResultMax","features":[551]},{"name":"WerThrottled","features":[551]},{"name":"WerUIAdditionalDataDlgHeader","features":[551]},{"name":"WerUICloseDlgBody","features":[551]},{"name":"WerUICloseDlgButtonText","features":[551]},{"name":"WerUICloseDlgHeader","features":[551]},{"name":"WerUICloseText","features":[551]},{"name":"WerUIConsentDlgBody","features":[551]},{"name":"WerUIConsentDlgHeader","features":[551]},{"name":"WerUIIconFilePath","features":[551]},{"name":"WerUIMax","features":[551]},{"name":"WerUIOfflineSolutionCheckText","features":[551]},{"name":"WerUIOnlineSolutionCheckText","features":[551]},{"name":"WerUnregisterAdditionalProcess","features":[551]},{"name":"WerUnregisterAppLocalDump","features":[551]},{"name":"WerUnregisterCustomMetadata","features":[551]},{"name":"WerUnregisterExcludedMemoryBlock","features":[551]},{"name":"WerUnregisterFile","features":[551]},{"name":"WerUnregisterMemoryBlock","features":[551]},{"name":"WerUnregisterRuntimeExceptionModule","features":[551]},{"name":"frrvErr","features":[551]},{"name":"frrvErrAnotherInstance","features":[551]},{"name":"frrvErrDoubleFault","features":[551]},{"name":"frrvErrNoDW","features":[551]},{"name":"frrvErrNoMemory","features":[551]},{"name":"frrvErrTimeout","features":[551]},{"name":"frrvLaunchDebugger","features":[551]},{"name":"frrvOk","features":[551]},{"name":"frrvOkHeadless","features":[551]},{"name":"frrvOkManifest","features":[551]},{"name":"frrvOkQueued","features":[551]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONA","features":[551]},{"name":"pfn_ADDEREXCLUDEDAPPLICATIONW","features":[551]},{"name":"pfn_REPORTFAULT","features":[305,334,551,311]}],"565":[{"name":"EC_CREATE_NEW","features":[552]},{"name":"EC_OPEN_ALWAYS","features":[552]},{"name":"EC_OPEN_EXISTING","features":[552]},{"name":"EC_READ_ACCESS","features":[552]},{"name":"EC_SUBSCRIPTION_CONFIGURATION_MODE","features":[552]},{"name":"EC_SUBSCRIPTION_CONTENT_FORMAT","features":[552]},{"name":"EC_SUBSCRIPTION_CREDENTIALS_TYPE","features":[552]},{"name":"EC_SUBSCRIPTION_DELIVERY_MODE","features":[552]},{"name":"EC_SUBSCRIPTION_PROPERTY_ID","features":[552]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_ACTIVE_STATUS","features":[552]},{"name":"EC_SUBSCRIPTION_RUNTIME_STATUS_INFO_ID","features":[552]},{"name":"EC_SUBSCRIPTION_TYPE","features":[552]},{"name":"EC_VARIANT","features":[305,552]},{"name":"EC_VARIANT_TYPE","features":[552]},{"name":"EC_VARIANT_TYPE_ARRAY","features":[552]},{"name":"EC_VARIANT_TYPE_MASK","features":[552]},{"name":"EC_WRITE_ACCESS","features":[552]},{"name":"EcClose","features":[305,552]},{"name":"EcConfigurationModeCustom","features":[552]},{"name":"EcConfigurationModeMinBandwidth","features":[552]},{"name":"EcConfigurationModeMinLatency","features":[552]},{"name":"EcConfigurationModeNormal","features":[552]},{"name":"EcContentFormatEvents","features":[552]},{"name":"EcContentFormatRenderedText","features":[552]},{"name":"EcDeleteSubscription","features":[305,552]},{"name":"EcDeliveryModePull","features":[552]},{"name":"EcDeliveryModePush","features":[552]},{"name":"EcEnumNextSubscription","features":[305,552]},{"name":"EcGetObjectArrayProperty","features":[305,552]},{"name":"EcGetObjectArraySize","features":[305,552]},{"name":"EcGetSubscriptionProperty","features":[305,552]},{"name":"EcGetSubscriptionRunTimeStatus","features":[305,552]},{"name":"EcInsertObjectArrayElement","features":[305,552]},{"name":"EcOpenSubscription","features":[552]},{"name":"EcOpenSubscriptionEnum","features":[552]},{"name":"EcRemoveObjectArrayElement","features":[305,552]},{"name":"EcRetrySubscription","features":[305,552]},{"name":"EcRuntimeStatusActiveStatusActive","features":[552]},{"name":"EcRuntimeStatusActiveStatusDisabled","features":[552]},{"name":"EcRuntimeStatusActiveStatusInactive","features":[552]},{"name":"EcRuntimeStatusActiveStatusTrying","features":[552]},{"name":"EcSaveSubscription","features":[305,552]},{"name":"EcSetObjectArrayProperty","features":[305,552]},{"name":"EcSetSubscriptionProperty","features":[305,552]},{"name":"EcSubscriptionAllowedIssuerCAs","features":[552]},{"name":"EcSubscriptionAllowedSourceDomainComputers","features":[552]},{"name":"EcSubscriptionAllowedSubjects","features":[552]},{"name":"EcSubscriptionCommonPassword","features":[552]},{"name":"EcSubscriptionCommonUserName","features":[552]},{"name":"EcSubscriptionConfigurationMode","features":[552]},{"name":"EcSubscriptionContentFormat","features":[552]},{"name":"EcSubscriptionCredBasic","features":[552]},{"name":"EcSubscriptionCredDefault","features":[552]},{"name":"EcSubscriptionCredDigest","features":[552]},{"name":"EcSubscriptionCredLocalMachine","features":[552]},{"name":"EcSubscriptionCredNegotiate","features":[552]},{"name":"EcSubscriptionCredentialsType","features":[552]},{"name":"EcSubscriptionDeliveryMaxItems","features":[552]},{"name":"EcSubscriptionDeliveryMaxLatencyTime","features":[552]},{"name":"EcSubscriptionDeliveryMode","features":[552]},{"name":"EcSubscriptionDeniedSubjects","features":[552]},{"name":"EcSubscriptionDescription","features":[552]},{"name":"EcSubscriptionDialect","features":[552]},{"name":"EcSubscriptionEnabled","features":[552]},{"name":"EcSubscriptionEventSourceAddress","features":[552]},{"name":"EcSubscriptionEventSourceEnabled","features":[552]},{"name":"EcSubscriptionEventSourcePassword","features":[552]},{"name":"EcSubscriptionEventSourceUserName","features":[552]},{"name":"EcSubscriptionEventSources","features":[552]},{"name":"EcSubscriptionExpires","features":[552]},{"name":"EcSubscriptionHeartbeatInterval","features":[552]},{"name":"EcSubscriptionHostName","features":[552]},{"name":"EcSubscriptionLocale","features":[552]},{"name":"EcSubscriptionLogFile","features":[552]},{"name":"EcSubscriptionPropertyIdEND","features":[552]},{"name":"EcSubscriptionPublisherName","features":[552]},{"name":"EcSubscriptionQuery","features":[552]},{"name":"EcSubscriptionReadExistingEvents","features":[552]},{"name":"EcSubscriptionRunTimeStatusActive","features":[552]},{"name":"EcSubscriptionRunTimeStatusEventSources","features":[552]},{"name":"EcSubscriptionRunTimeStatusInfoIdEND","features":[552]},{"name":"EcSubscriptionRunTimeStatusLastError","features":[552]},{"name":"EcSubscriptionRunTimeStatusLastErrorMessage","features":[552]},{"name":"EcSubscriptionRunTimeStatusLastErrorTime","features":[552]},{"name":"EcSubscriptionRunTimeStatusLastHeartbeatTime","features":[552]},{"name":"EcSubscriptionRunTimeStatusNextRetryTime","features":[552]},{"name":"EcSubscriptionTransportName","features":[552]},{"name":"EcSubscriptionTransportPort","features":[552]},{"name":"EcSubscriptionType","features":[552]},{"name":"EcSubscriptionTypeCollectorInitiated","features":[552]},{"name":"EcSubscriptionTypeSourceInitiated","features":[552]},{"name":"EcSubscriptionURI","features":[552]},{"name":"EcVarObjectArrayPropertyHandle","features":[552]},{"name":"EcVarTypeBoolean","features":[552]},{"name":"EcVarTypeDateTime","features":[552]},{"name":"EcVarTypeNull","features":[552]},{"name":"EcVarTypeString","features":[552]},{"name":"EcVarTypeUInt32","features":[552]}],"566":[{"name":"BackupEventLogA","features":[305,553]},{"name":"BackupEventLogW","features":[305,553]},{"name":"ClearEventLogA","features":[305,553]},{"name":"ClearEventLogW","features":[305,553]},{"name":"CloseEventLog","features":[305,553]},{"name":"DeregisterEventSource","features":[305,553]},{"name":"EVENTLOGRECORD","features":[553]},{"name":"EVENTLOG_AUDIT_FAILURE","features":[553]},{"name":"EVENTLOG_AUDIT_SUCCESS","features":[553]},{"name":"EVENTLOG_ERROR_TYPE","features":[553]},{"name":"EVENTLOG_FULL_INFORMATION","features":[553]},{"name":"EVENTLOG_INFORMATION_TYPE","features":[553]},{"name":"EVENTLOG_SEEK_READ","features":[553]},{"name":"EVENTLOG_SEQUENTIAL_READ","features":[553]},{"name":"EVENTLOG_SUCCESS","features":[553]},{"name":"EVENTLOG_WARNING_TYPE","features":[553]},{"name":"EVENTSFORLOGFILE","features":[553]},{"name":"EVT_ALL_ACCESS","features":[553]},{"name":"EVT_CHANNEL_CLOCK_TYPE","features":[553]},{"name":"EVT_CHANNEL_CONFIG_PROPERTY_ID","features":[553]},{"name":"EVT_CHANNEL_ISOLATION_TYPE","features":[553]},{"name":"EVT_CHANNEL_REFERENCE_FLAGS","features":[553]},{"name":"EVT_CHANNEL_SID_TYPE","features":[553]},{"name":"EVT_CHANNEL_TYPE","features":[553]},{"name":"EVT_CLEAR_ACCESS","features":[553]},{"name":"EVT_EVENT_METADATA_PROPERTY_ID","features":[553]},{"name":"EVT_EVENT_PROPERTY_ID","features":[553]},{"name":"EVT_EXPORTLOG_FLAGS","features":[553]},{"name":"EVT_FORMAT_MESSAGE_FLAGS","features":[553]},{"name":"EVT_HANDLE","features":[553]},{"name":"EVT_LOGIN_CLASS","features":[553]},{"name":"EVT_LOG_PROPERTY_ID","features":[553]},{"name":"EVT_OPEN_LOG_FLAGS","features":[553]},{"name":"EVT_PUBLISHER_METADATA_PROPERTY_ID","features":[553]},{"name":"EVT_QUERY_FLAGS","features":[553]},{"name":"EVT_QUERY_PROPERTY_ID","features":[553]},{"name":"EVT_READ_ACCESS","features":[553]},{"name":"EVT_RENDER_CONTEXT_FLAGS","features":[553]},{"name":"EVT_RENDER_FLAGS","features":[553]},{"name":"EVT_RPC_LOGIN","features":[553]},{"name":"EVT_RPC_LOGIN_FLAGS","features":[553]},{"name":"EVT_SEEK_FLAGS","features":[553]},{"name":"EVT_SUBSCRIBE_CALLBACK","features":[553]},{"name":"EVT_SUBSCRIBE_FLAGS","features":[553]},{"name":"EVT_SUBSCRIBE_NOTIFY_ACTION","features":[553]},{"name":"EVT_SYSTEM_PROPERTY_ID","features":[553]},{"name":"EVT_VARIANT","features":[305,308,553]},{"name":"EVT_VARIANT_TYPE","features":[553]},{"name":"EVT_VARIANT_TYPE_ARRAY","features":[553]},{"name":"EVT_VARIANT_TYPE_MASK","features":[553]},{"name":"EVT_WRITE_ACCESS","features":[553]},{"name":"EventMetadataEventChannel","features":[553]},{"name":"EventMetadataEventID","features":[553]},{"name":"EventMetadataEventKeyword","features":[553]},{"name":"EventMetadataEventLevel","features":[553]},{"name":"EventMetadataEventMessageID","features":[553]},{"name":"EventMetadataEventOpcode","features":[553]},{"name":"EventMetadataEventTask","features":[553]},{"name":"EventMetadataEventTemplate","features":[553]},{"name":"EventMetadataEventVersion","features":[553]},{"name":"EvtArchiveExportedLog","features":[305,553]},{"name":"EvtCancel","features":[305,553]},{"name":"EvtChannelClockTypeQPC","features":[553]},{"name":"EvtChannelClockTypeSystemTime","features":[553]},{"name":"EvtChannelConfigAccess","features":[553]},{"name":"EvtChannelConfigClassicEventlog","features":[553]},{"name":"EvtChannelConfigEnabled","features":[553]},{"name":"EvtChannelConfigIsolation","features":[553]},{"name":"EvtChannelConfigOwningPublisher","features":[553]},{"name":"EvtChannelConfigPropertyIdEND","features":[553]},{"name":"EvtChannelConfigType","features":[553]},{"name":"EvtChannelIsolationTypeApplication","features":[553]},{"name":"EvtChannelIsolationTypeCustom","features":[553]},{"name":"EvtChannelIsolationTypeSystem","features":[553]},{"name":"EvtChannelLoggingConfigAutoBackup","features":[553]},{"name":"EvtChannelLoggingConfigLogFilePath","features":[553]},{"name":"EvtChannelLoggingConfigMaxSize","features":[553]},{"name":"EvtChannelLoggingConfigRetention","features":[553]},{"name":"EvtChannelPublisherList","features":[553]},{"name":"EvtChannelPublishingConfigBufferSize","features":[553]},{"name":"EvtChannelPublishingConfigClockType","features":[553]},{"name":"EvtChannelPublishingConfigControlGuid","features":[553]},{"name":"EvtChannelPublishingConfigFileMax","features":[553]},{"name":"EvtChannelPublishingConfigKeywords","features":[553]},{"name":"EvtChannelPublishingConfigLatency","features":[553]},{"name":"EvtChannelPublishingConfigLevel","features":[553]},{"name":"EvtChannelPublishingConfigMaxBuffers","features":[553]},{"name":"EvtChannelPublishingConfigMinBuffers","features":[553]},{"name":"EvtChannelPublishingConfigSidType","features":[553]},{"name":"EvtChannelReferenceImported","features":[553]},{"name":"EvtChannelSidTypeNone","features":[553]},{"name":"EvtChannelSidTypePublishing","features":[553]},{"name":"EvtChannelTypeAdmin","features":[553]},{"name":"EvtChannelTypeAnalytic","features":[553]},{"name":"EvtChannelTypeDebug","features":[553]},{"name":"EvtChannelTypeOperational","features":[553]},{"name":"EvtClearLog","features":[305,553]},{"name":"EvtClose","features":[305,553]},{"name":"EvtCreateBookmark","features":[553]},{"name":"EvtCreateRenderContext","features":[553]},{"name":"EvtEventMetadataPropertyIdEND","features":[553]},{"name":"EvtEventPath","features":[553]},{"name":"EvtEventPropertyIdEND","features":[553]},{"name":"EvtEventQueryIDs","features":[553]},{"name":"EvtExportLog","features":[305,553]},{"name":"EvtExportLogChannelPath","features":[553]},{"name":"EvtExportLogFilePath","features":[553]},{"name":"EvtExportLogOverwrite","features":[553]},{"name":"EvtExportLogTolerateQueryErrors","features":[553]},{"name":"EvtFormatMessage","features":[305,308,553]},{"name":"EvtFormatMessageChannel","features":[553]},{"name":"EvtFormatMessageEvent","features":[553]},{"name":"EvtFormatMessageId","features":[553]},{"name":"EvtFormatMessageKeyword","features":[553]},{"name":"EvtFormatMessageLevel","features":[553]},{"name":"EvtFormatMessageOpcode","features":[553]},{"name":"EvtFormatMessageProvider","features":[553]},{"name":"EvtFormatMessageTask","features":[553]},{"name":"EvtFormatMessageXml","features":[553]},{"name":"EvtGetChannelConfigProperty","features":[305,308,553]},{"name":"EvtGetEventInfo","features":[305,308,553]},{"name":"EvtGetEventMetadataProperty","features":[305,308,553]},{"name":"EvtGetExtendedStatus","features":[553]},{"name":"EvtGetLogInfo","features":[305,308,553]},{"name":"EvtGetObjectArrayProperty","features":[305,308,553]},{"name":"EvtGetObjectArraySize","features":[305,553]},{"name":"EvtGetPublisherMetadataProperty","features":[305,308,553]},{"name":"EvtGetQueryInfo","features":[305,308,553]},{"name":"EvtLogAttributes","features":[553]},{"name":"EvtLogCreationTime","features":[553]},{"name":"EvtLogFileSize","features":[553]},{"name":"EvtLogFull","features":[553]},{"name":"EvtLogLastAccessTime","features":[553]},{"name":"EvtLogLastWriteTime","features":[553]},{"name":"EvtLogNumberOfLogRecords","features":[553]},{"name":"EvtLogOldestRecordNumber","features":[553]},{"name":"EvtNext","features":[305,553]},{"name":"EvtNextChannelPath","features":[305,553]},{"name":"EvtNextEventMetadata","features":[553]},{"name":"EvtNextPublisherId","features":[305,553]},{"name":"EvtOpenChannelConfig","features":[553]},{"name":"EvtOpenChannelEnum","features":[553]},{"name":"EvtOpenChannelPath","features":[553]},{"name":"EvtOpenEventMetadataEnum","features":[553]},{"name":"EvtOpenFilePath","features":[553]},{"name":"EvtOpenLog","features":[553]},{"name":"EvtOpenPublisherEnum","features":[553]},{"name":"EvtOpenPublisherMetadata","features":[553]},{"name":"EvtOpenSession","features":[553]},{"name":"EvtPublisherMetadataChannelReferenceFlags","features":[553]},{"name":"EvtPublisherMetadataChannelReferenceID","features":[553]},{"name":"EvtPublisherMetadataChannelReferenceIndex","features":[553]},{"name":"EvtPublisherMetadataChannelReferenceMessageID","features":[553]},{"name":"EvtPublisherMetadataChannelReferencePath","features":[553]},{"name":"EvtPublisherMetadataChannelReferences","features":[553]},{"name":"EvtPublisherMetadataHelpLink","features":[553]},{"name":"EvtPublisherMetadataKeywordMessageID","features":[553]},{"name":"EvtPublisherMetadataKeywordName","features":[553]},{"name":"EvtPublisherMetadataKeywordValue","features":[553]},{"name":"EvtPublisherMetadataKeywords","features":[553]},{"name":"EvtPublisherMetadataLevelMessageID","features":[553]},{"name":"EvtPublisherMetadataLevelName","features":[553]},{"name":"EvtPublisherMetadataLevelValue","features":[553]},{"name":"EvtPublisherMetadataLevels","features":[553]},{"name":"EvtPublisherMetadataMessageFilePath","features":[553]},{"name":"EvtPublisherMetadataOpcodeMessageID","features":[553]},{"name":"EvtPublisherMetadataOpcodeName","features":[553]},{"name":"EvtPublisherMetadataOpcodeValue","features":[553]},{"name":"EvtPublisherMetadataOpcodes","features":[553]},{"name":"EvtPublisherMetadataParameterFilePath","features":[553]},{"name":"EvtPublisherMetadataPropertyIdEND","features":[553]},{"name":"EvtPublisherMetadataPublisherGuid","features":[553]},{"name":"EvtPublisherMetadataPublisherMessageID","features":[553]},{"name":"EvtPublisherMetadataResourceFilePath","features":[553]},{"name":"EvtPublisherMetadataTaskEventGuid","features":[553]},{"name":"EvtPublisherMetadataTaskMessageID","features":[553]},{"name":"EvtPublisherMetadataTaskName","features":[553]},{"name":"EvtPublisherMetadataTaskValue","features":[553]},{"name":"EvtPublisherMetadataTasks","features":[553]},{"name":"EvtQuery","features":[553]},{"name":"EvtQueryChannelPath","features":[553]},{"name":"EvtQueryFilePath","features":[553]},{"name":"EvtQueryForwardDirection","features":[553]},{"name":"EvtQueryNames","features":[553]},{"name":"EvtQueryPropertyIdEND","features":[553]},{"name":"EvtQueryReverseDirection","features":[553]},{"name":"EvtQueryStatuses","features":[553]},{"name":"EvtQueryTolerateQueryErrors","features":[553]},{"name":"EvtRender","features":[305,553]},{"name":"EvtRenderBookmark","features":[553]},{"name":"EvtRenderContextSystem","features":[553]},{"name":"EvtRenderContextUser","features":[553]},{"name":"EvtRenderContextValues","features":[553]},{"name":"EvtRenderEventValues","features":[553]},{"name":"EvtRenderEventXml","features":[553]},{"name":"EvtRpcLogin","features":[553]},{"name":"EvtRpcLoginAuthDefault","features":[553]},{"name":"EvtRpcLoginAuthKerberos","features":[553]},{"name":"EvtRpcLoginAuthNTLM","features":[553]},{"name":"EvtRpcLoginAuthNegotiate","features":[553]},{"name":"EvtSaveChannelConfig","features":[305,553]},{"name":"EvtSeek","features":[305,553]},{"name":"EvtSeekOriginMask","features":[553]},{"name":"EvtSeekRelativeToBookmark","features":[553]},{"name":"EvtSeekRelativeToCurrent","features":[553]},{"name":"EvtSeekRelativeToFirst","features":[553]},{"name":"EvtSeekRelativeToLast","features":[553]},{"name":"EvtSeekStrict","features":[553]},{"name":"EvtSetChannelConfigProperty","features":[305,308,553]},{"name":"EvtSubscribe","features":[305,553]},{"name":"EvtSubscribeActionDeliver","features":[553]},{"name":"EvtSubscribeActionError","features":[553]},{"name":"EvtSubscribeOriginMask","features":[553]},{"name":"EvtSubscribeStartAfterBookmark","features":[553]},{"name":"EvtSubscribeStartAtOldestRecord","features":[553]},{"name":"EvtSubscribeStrict","features":[553]},{"name":"EvtSubscribeToFutureEvents","features":[553]},{"name":"EvtSubscribeTolerateQueryErrors","features":[553]},{"name":"EvtSystemActivityID","features":[553]},{"name":"EvtSystemChannel","features":[553]},{"name":"EvtSystemComputer","features":[553]},{"name":"EvtSystemEventID","features":[553]},{"name":"EvtSystemEventRecordId","features":[553]},{"name":"EvtSystemKeywords","features":[553]},{"name":"EvtSystemLevel","features":[553]},{"name":"EvtSystemOpcode","features":[553]},{"name":"EvtSystemProcessID","features":[553]},{"name":"EvtSystemPropertyIdEND","features":[553]},{"name":"EvtSystemProviderGuid","features":[553]},{"name":"EvtSystemProviderName","features":[553]},{"name":"EvtSystemQualifiers","features":[553]},{"name":"EvtSystemRelatedActivityID","features":[553]},{"name":"EvtSystemTask","features":[553]},{"name":"EvtSystemThreadID","features":[553]},{"name":"EvtSystemTimeCreated","features":[553]},{"name":"EvtSystemUserID","features":[553]},{"name":"EvtSystemVersion","features":[553]},{"name":"EvtUpdateBookmark","features":[305,553]},{"name":"EvtVarTypeAnsiString","features":[553]},{"name":"EvtVarTypeBinary","features":[553]},{"name":"EvtVarTypeBoolean","features":[553]},{"name":"EvtVarTypeByte","features":[553]},{"name":"EvtVarTypeDouble","features":[553]},{"name":"EvtVarTypeEvtHandle","features":[553]},{"name":"EvtVarTypeEvtXml","features":[553]},{"name":"EvtVarTypeFileTime","features":[553]},{"name":"EvtVarTypeGuid","features":[553]},{"name":"EvtVarTypeHexInt32","features":[553]},{"name":"EvtVarTypeHexInt64","features":[553]},{"name":"EvtVarTypeInt16","features":[553]},{"name":"EvtVarTypeInt32","features":[553]},{"name":"EvtVarTypeInt64","features":[553]},{"name":"EvtVarTypeNull","features":[553]},{"name":"EvtVarTypeSByte","features":[553]},{"name":"EvtVarTypeSid","features":[553]},{"name":"EvtVarTypeSingle","features":[553]},{"name":"EvtVarTypeSizeT","features":[553]},{"name":"EvtVarTypeString","features":[553]},{"name":"EvtVarTypeSysTime","features":[553]},{"name":"EvtVarTypeUInt16","features":[553]},{"name":"EvtVarTypeUInt32","features":[553]},{"name":"EvtVarTypeUInt64","features":[553]},{"name":"GetEventLogInformation","features":[305,553]},{"name":"GetNumberOfEventLogRecords","features":[305,553]},{"name":"GetOldestEventLogRecord","features":[305,553]},{"name":"NotifyChangeEventLog","features":[305,553]},{"name":"OpenBackupEventLogA","features":[305,553]},{"name":"OpenBackupEventLogW","features":[305,553]},{"name":"OpenEventLogA","features":[305,553]},{"name":"OpenEventLogW","features":[305,553]},{"name":"READ_EVENT_LOG_READ_FLAGS","features":[553]},{"name":"REPORT_EVENT_TYPE","features":[553]},{"name":"ReadEventLogA","features":[305,553]},{"name":"ReadEventLogW","features":[305,553]},{"name":"RegisterEventSourceA","features":[305,553]},{"name":"RegisterEventSourceW","features":[305,553]},{"name":"ReportEventA","features":[305,308,553]},{"name":"ReportEventW","features":[305,308,553]}],"567":[{"name":"CONNECTION_AOL","features":[554]},{"name":"CONNECTION_LAN","features":[554]},{"name":"CONNECTION_WAN","features":[554]},{"name":"ISensLogon","features":[356,554]},{"name":"ISensLogon2","features":[356,554]},{"name":"ISensNetwork","features":[356,554]},{"name":"ISensOnNow","features":[356,554]},{"name":"IsDestinationReachableA","features":[305,554]},{"name":"IsDestinationReachableW","features":[305,554]},{"name":"IsNetworkAlive","features":[305,554]},{"name":"NETWORK_ALIVE_AOL","features":[554]},{"name":"NETWORK_ALIVE_INTERNET","features":[554]},{"name":"NETWORK_ALIVE_LAN","features":[554]},{"name":"NETWORK_ALIVE_WAN","features":[554]},{"name":"QOCINFO","features":[554]},{"name":"SENS","features":[554]},{"name":"SENSGUID_EVENTCLASS_LOGON","features":[554]},{"name":"SENSGUID_EVENTCLASS_LOGON2","features":[554]},{"name":"SENSGUID_EVENTCLASS_NETWORK","features":[554]},{"name":"SENSGUID_EVENTCLASS_ONNOW","features":[554]},{"name":"SENSGUID_PUBLISHER","features":[554]},{"name":"SENSGUID_SUBSCRIBER_LCE","features":[554]},{"name":"SENSGUID_SUBSCRIBER_WININET","features":[554]},{"name":"SENS_CONNECTION_TYPE","features":[554]},{"name":"SENS_QOCINFO","features":[554]}],"568":[{"name":"ABSENT","features":[555]},{"name":"ADMXCOMMENTS_EXTENSION_GUID","features":[555]},{"name":"APPNAME","features":[555]},{"name":"APPSTATE","features":[555]},{"name":"ASSIGNED","features":[555]},{"name":"BrowseForGPO","features":[305,555]},{"name":"CLSID_GPESnapIn","features":[555]},{"name":"CLSID_GroupPolicyObject","features":[555]},{"name":"CLSID_RSOPSnapIn","features":[555]},{"name":"COMCLASS","features":[555]},{"name":"CommandLineFromMsiDescriptor","features":[555]},{"name":"CreateGPOLink","features":[305,555]},{"name":"DeleteAllGPOLinks","features":[555]},{"name":"DeleteGPOLink","features":[555]},{"name":"EnterCriticalPolicySection","features":[305,555]},{"name":"ExportRSoPData","features":[555]},{"name":"FILEEXT","features":[555]},{"name":"FLAG_ASSUME_COMP_WQLFILTER_TRUE","features":[555]},{"name":"FLAG_ASSUME_SLOW_LINK","features":[555]},{"name":"FLAG_ASSUME_USER_WQLFILTER_TRUE","features":[555]},{"name":"FLAG_FORCE_CREATENAMESPACE","features":[555]},{"name":"FLAG_LOOPBACK_MERGE","features":[555]},{"name":"FLAG_LOOPBACK_REPLACE","features":[555]},{"name":"FLAG_NO_COMPUTER","features":[555]},{"name":"FLAG_NO_CSE_INVOKE","features":[555]},{"name":"FLAG_NO_GPO_FILTER","features":[555]},{"name":"FLAG_NO_USER","features":[555]},{"name":"FLAG_PLANNING_MODE","features":[555]},{"name":"FreeGPOListA","features":[305,555]},{"name":"FreeGPOListW","features":[305,555]},{"name":"GPC_BLOCK_POLICY","features":[555]},{"name":"GPHintDomain","features":[555]},{"name":"GPHintMachine","features":[555]},{"name":"GPHintOrganizationalUnit","features":[555]},{"name":"GPHintSite","features":[555]},{"name":"GPHintUnknown","features":[555]},{"name":"GPLinkDomain","features":[555]},{"name":"GPLinkMachine","features":[555]},{"name":"GPLinkOrganizationalUnit","features":[555]},{"name":"GPLinkSite","features":[555]},{"name":"GPLinkUnknown","features":[555]},{"name":"GPM","features":[555]},{"name":"GPMAsyncCancel","features":[555]},{"name":"GPMBackup","features":[555]},{"name":"GPMBackupCollection","features":[555]},{"name":"GPMBackupDir","features":[555]},{"name":"GPMBackupDirEx","features":[555]},{"name":"GPMBackupType","features":[555]},{"name":"GPMCSECollection","features":[555]},{"name":"GPMClientSideExtension","features":[555]},{"name":"GPMConstants","features":[555]},{"name":"GPMDestinationOption","features":[555]},{"name":"GPMDomain","features":[555]},{"name":"GPMEntryType","features":[555]},{"name":"GPMGPO","features":[555]},{"name":"GPMGPOCollection","features":[555]},{"name":"GPMGPOLink","features":[555]},{"name":"GPMGPOLinksCollection","features":[555]},{"name":"GPMMapEntry","features":[555]},{"name":"GPMMapEntryCollection","features":[555]},{"name":"GPMMigrationTable","features":[555]},{"name":"GPMPermission","features":[555]},{"name":"GPMPermissionType","features":[555]},{"name":"GPMRSOP","features":[555]},{"name":"GPMRSOPMode","features":[555]},{"name":"GPMReportType","features":[555]},{"name":"GPMReportingOptions","features":[555]},{"name":"GPMResult","features":[555]},{"name":"GPMSOM","features":[555]},{"name":"GPMSOMCollection","features":[555]},{"name":"GPMSOMType","features":[555]},{"name":"GPMSearchCriteria","features":[555]},{"name":"GPMSearchOperation","features":[555]},{"name":"GPMSearchProperty","features":[555]},{"name":"GPMSecurityInfo","features":[555]},{"name":"GPMSitesContainer","features":[555]},{"name":"GPMStarterGPOBackup","features":[555]},{"name":"GPMStarterGPOBackupCollection","features":[555]},{"name":"GPMStarterGPOCollection","features":[555]},{"name":"GPMStarterGPOType","features":[555]},{"name":"GPMStatusMessage","features":[555]},{"name":"GPMStatusMsgCollection","features":[555]},{"name":"GPMTemplate","features":[555]},{"name":"GPMTrustee","features":[555]},{"name":"GPMWMIFilter","features":[555]},{"name":"GPMWMIFilterCollection","features":[555]},{"name":"GPM_DONOTUSE_W2KDC","features":[555]},{"name":"GPM_DONOT_VALIDATEDC","features":[555]},{"name":"GPM_MIGRATIONTABLE_ONLY","features":[555]},{"name":"GPM_PROCESS_SECURITY","features":[555]},{"name":"GPM_USE_ANYDC","features":[555]},{"name":"GPM_USE_PDC","features":[555]},{"name":"GPOBROWSEINFO","features":[305,555]},{"name":"GPOTypeDS","features":[555]},{"name":"GPOTypeLocal","features":[555]},{"name":"GPOTypeLocalGroup","features":[555]},{"name":"GPOTypeLocalUser","features":[555]},{"name":"GPOTypeRemote","features":[555]},{"name":"GPO_BROWSE_DISABLENEW","features":[555]},{"name":"GPO_BROWSE_INITTOALL","features":[555]},{"name":"GPO_BROWSE_NOCOMPUTERS","features":[555]},{"name":"GPO_BROWSE_NODSGPOS","features":[555]},{"name":"GPO_BROWSE_NOUSERGPOS","features":[555]},{"name":"GPO_BROWSE_OPENBUTTON","features":[555]},{"name":"GPO_BROWSE_SENDAPPLYONEDIT","features":[555]},{"name":"GPO_FLAG_DISABLE","features":[555]},{"name":"GPO_FLAG_FORCE","features":[555]},{"name":"GPO_INFO_FLAG_ASYNC_FOREGROUND","features":[555]},{"name":"GPO_INFO_FLAG_BACKGROUND","features":[555]},{"name":"GPO_INFO_FLAG_FORCED_REFRESH","features":[555]},{"name":"GPO_INFO_FLAG_LINKTRANSITION","features":[555]},{"name":"GPO_INFO_FLAG_LOGRSOP_TRANSITION","features":[555]},{"name":"GPO_INFO_FLAG_MACHINE","features":[555]},{"name":"GPO_INFO_FLAG_NOCHANGES","features":[555]},{"name":"GPO_INFO_FLAG_SAFEMODE_BOOT","features":[555]},{"name":"GPO_INFO_FLAG_SLOWLINK","features":[555]},{"name":"GPO_INFO_FLAG_VERBOSE","features":[555]},{"name":"GPO_LINK","features":[555]},{"name":"GPO_LIST_FLAG_MACHINE","features":[555]},{"name":"GPO_LIST_FLAG_NO_SECURITYFILTERS","features":[555]},{"name":"GPO_LIST_FLAG_NO_WMIFILTERS","features":[555]},{"name":"GPO_LIST_FLAG_SITEONLY","features":[555]},{"name":"GPO_OPEN_FLAGS","features":[555]},{"name":"GPO_OPEN_LOAD_REGISTRY","features":[555]},{"name":"GPO_OPEN_READ_ONLY","features":[555]},{"name":"GPO_OPTIONS","features":[555]},{"name":"GPO_OPTION_DISABLE_MACHINE","features":[555]},{"name":"GPO_OPTION_DISABLE_USER","features":[555]},{"name":"GPO_SECTION","features":[555]},{"name":"GPO_SECTION_MACHINE","features":[555]},{"name":"GPO_SECTION_ROOT","features":[555]},{"name":"GPO_SECTION_USER","features":[555]},{"name":"GP_DLLNAME","features":[555]},{"name":"GP_ENABLEASYNCHRONOUSPROCESSING","features":[555]},{"name":"GP_MAXNOGPOLISTCHANGESINTERVAL","features":[555]},{"name":"GP_NOBACKGROUNDPOLICY","features":[555]},{"name":"GP_NOGPOLISTCHANGES","features":[555]},{"name":"GP_NOMACHINEPOLICY","features":[555]},{"name":"GP_NOSLOWLINK","features":[555]},{"name":"GP_NOTIFYLINKTRANSITION","features":[555]},{"name":"GP_NOUSERPOLICY","features":[555]},{"name":"GP_PERUSERLOCALSETTINGS","features":[555]},{"name":"GP_PROCESSGROUPPOLICY","features":[555]},{"name":"GP_REQUIRESSUCCESSFULREGISTRY","features":[555]},{"name":"GROUP_POLICY_HINT_TYPE","features":[555]},{"name":"GROUP_POLICY_OBJECTA","features":[305,555]},{"name":"GROUP_POLICY_OBJECTW","features":[305,555]},{"name":"GROUP_POLICY_OBJECT_TYPE","features":[555]},{"name":"GROUP_POLICY_TRIGGER_EVENT_PROVIDER_GUID","features":[555]},{"name":"GenerateGPNotification","features":[305,555]},{"name":"GetAppliedGPOListA","features":[305,308,555]},{"name":"GetAppliedGPOListW","features":[305,308,555]},{"name":"GetGPOListA","features":[305,555]},{"name":"GetGPOListW","features":[305,555]},{"name":"GetLocalManagedApplicationData","features":[555]},{"name":"GetLocalManagedApplications","features":[305,555]},{"name":"GetManagedApplicationCategories","features":[555,466]},{"name":"GetManagedApplications","features":[305,555]},{"name":"IGPEInformation","features":[555]},{"name":"IGPM","features":[356,555]},{"name":"IGPM2","features":[356,555]},{"name":"IGPMAsyncCancel","features":[356,555]},{"name":"IGPMAsyncProgress","features":[356,555]},{"name":"IGPMBackup","features":[356,555]},{"name":"IGPMBackupCollection","features":[356,555]},{"name":"IGPMBackupDir","features":[356,555]},{"name":"IGPMBackupDirEx","features":[356,555]},{"name":"IGPMCSECollection","features":[356,555]},{"name":"IGPMClientSideExtension","features":[356,555]},{"name":"IGPMConstants","features":[356,555]},{"name":"IGPMConstants2","features":[356,555]},{"name":"IGPMDomain","features":[356,555]},{"name":"IGPMDomain2","features":[356,555]},{"name":"IGPMDomain3","features":[356,555]},{"name":"IGPMGPO","features":[356,555]},{"name":"IGPMGPO2","features":[356,555]},{"name":"IGPMGPO3","features":[356,555]},{"name":"IGPMGPOCollection","features":[356,555]},{"name":"IGPMGPOLink","features":[356,555]},{"name":"IGPMGPOLinksCollection","features":[356,555]},{"name":"IGPMMapEntry","features":[356,555]},{"name":"IGPMMapEntryCollection","features":[356,555]},{"name":"IGPMMigrationTable","features":[356,555]},{"name":"IGPMPermission","features":[356,555]},{"name":"IGPMRSOP","features":[356,555]},{"name":"IGPMResult","features":[356,555]},{"name":"IGPMSOM","features":[356,555]},{"name":"IGPMSOMCollection","features":[356,555]},{"name":"IGPMSearchCriteria","features":[356,555]},{"name":"IGPMSecurityInfo","features":[356,555]},{"name":"IGPMSitesContainer","features":[356,555]},{"name":"IGPMStarterGPO","features":[356,555]},{"name":"IGPMStarterGPOBackup","features":[356,555]},{"name":"IGPMStarterGPOBackupCollection","features":[356,555]},{"name":"IGPMStarterGPOCollection","features":[356,555]},{"name":"IGPMStatusMessage","features":[356,555]},{"name":"IGPMStatusMsgCollection","features":[356,555]},{"name":"IGPMTrustee","features":[356,555]},{"name":"IGPMWMIFilter","features":[356,555]},{"name":"IGPMWMIFilterCollection","features":[356,555]},{"name":"IGroupPolicyObject","features":[555]},{"name":"INSTALLDATA","features":[555]},{"name":"INSTALLSPEC","features":[555]},{"name":"INSTALLSPECTYPE","features":[555]},{"name":"IRSOPInformation","features":[555]},{"name":"ImportRSoPData","features":[555]},{"name":"InstallApplication","features":[555]},{"name":"LOCALMANAGEDAPPLICATION","features":[555]},{"name":"LOCALSTATE_ASSIGNED","features":[555]},{"name":"LOCALSTATE_ORPHANED","features":[555]},{"name":"LOCALSTATE_POLICYREMOVE_ORPHAN","features":[555]},{"name":"LOCALSTATE_POLICYREMOVE_UNINSTALL","features":[555]},{"name":"LOCALSTATE_PUBLISHED","features":[555]},{"name":"LOCALSTATE_UNINSTALLED","features":[555]},{"name":"LOCALSTATE_UNINSTALL_UNMANAGED","features":[555]},{"name":"LeaveCriticalPolicySection","features":[305,555]},{"name":"MACHINE_POLICY_PRESENT_TRIGGER_GUID","features":[555]},{"name":"MANAGEDAPPLICATION","features":[305,555]},{"name":"MANAGED_APPS_FROMCATEGORY","features":[555]},{"name":"MANAGED_APPS_INFOLEVEL_DEFAULT","features":[555]},{"name":"MANAGED_APPS_USERAPPLICATIONS","features":[555]},{"name":"MANAGED_APPTYPE_SETUPEXE","features":[555]},{"name":"MANAGED_APPTYPE_UNSUPPORTED","features":[555]},{"name":"MANAGED_APPTYPE_WINDOWSINSTALLER","features":[555]},{"name":"NODEID_Machine","features":[555]},{"name":"NODEID_MachineSWSettings","features":[555]},{"name":"NODEID_RSOPMachine","features":[555]},{"name":"NODEID_RSOPMachineSWSettings","features":[555]},{"name":"NODEID_RSOPUser","features":[555]},{"name":"NODEID_RSOPUserSWSettings","features":[555]},{"name":"NODEID_User","features":[555]},{"name":"NODEID_UserSWSettings","features":[555]},{"name":"PFNGENERATEGROUPPOLICY","features":[305,356,555,556]},{"name":"PFNPROCESSGROUPPOLICY","features":[305,555,366]},{"name":"PFNPROCESSGROUPPOLICYEX","features":[305,555,366,556]},{"name":"PFNSTATUSMESSAGECALLBACK","features":[305,555]},{"name":"PI_APPLYPOLICY","features":[555]},{"name":"PI_NOUI","features":[555]},{"name":"POLICYSETTINGSTATUSINFO","features":[305,555]},{"name":"PROGID","features":[555]},{"name":"PT_MANDATORY","features":[555]},{"name":"PT_ROAMING","features":[555]},{"name":"PT_ROAMING_PREEXISTING","features":[555]},{"name":"PT_TEMPORARY","features":[555]},{"name":"PUBLISHED","features":[555]},{"name":"ProcessGroupPolicyCompleted","features":[555]},{"name":"ProcessGroupPolicyCompletedEx","features":[555]},{"name":"REGISTRY_EXTENSION_GUID","features":[555]},{"name":"RP_FORCE","features":[555]},{"name":"RP_SYNC","features":[555]},{"name":"RSOPApplied","features":[555]},{"name":"RSOPFailed","features":[555]},{"name":"RSOPIgnored","features":[555]},{"name":"RSOPSubsettingFailed","features":[555]},{"name":"RSOPUnspecified","features":[555]},{"name":"RSOP_COMPUTER_ACCESS_DENIED","features":[555]},{"name":"RSOP_INFO_FLAG_DIAGNOSTIC_MODE","features":[555]},{"name":"RSOP_NO_COMPUTER","features":[555]},{"name":"RSOP_NO_USER","features":[555]},{"name":"RSOP_PLANNING_ASSUME_COMP_WQLFILTER_TRUE","features":[555]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_MERGE","features":[555]},{"name":"RSOP_PLANNING_ASSUME_LOOPBACK_REPLACE","features":[555]},{"name":"RSOP_PLANNING_ASSUME_SLOW_LINK","features":[555]},{"name":"RSOP_PLANNING_ASSUME_USER_WQLFILTER_TRUE","features":[555]},{"name":"RSOP_TARGET","features":[305,356,555,556]},{"name":"RSOP_TEMPNAMESPACE_EXISTS","features":[555]},{"name":"RSOP_USER_ACCESS_DENIED","features":[555]},{"name":"RefreshPolicy","features":[305,555]},{"name":"RefreshPolicyEx","features":[305,555]},{"name":"RegisterGPNotification","features":[305,555]},{"name":"RsopAccessCheckByType","features":[305,308,555]},{"name":"RsopFileAccessCheck","features":[305,555]},{"name":"RsopResetPolicySettingStatus","features":[555,556]},{"name":"RsopSetPolicySettingStatus","features":[305,555,556]},{"name":"SETTINGSTATUS","features":[555]},{"name":"USER_POLICY_PRESENT_TRIGGER_GUID","features":[555]},{"name":"UninstallApplication","features":[555]},{"name":"UnregisterGPNotification","features":[305,555]},{"name":"backupMostRecent","features":[555]},{"name":"gpoComputerExtensions","features":[555]},{"name":"gpoDisplayName","features":[555]},{"name":"gpoDomain","features":[555]},{"name":"gpoEffectivePermissions","features":[555]},{"name":"gpoID","features":[555]},{"name":"gpoPermissions","features":[555]},{"name":"gpoUserExtensions","features":[555]},{"name":"gpoWMIFilter","features":[555]},{"name":"opContains","features":[555]},{"name":"opDestinationByRelativeName","features":[555]},{"name":"opDestinationNone","features":[555]},{"name":"opDestinationSameAsSource","features":[555]},{"name":"opDestinationSet","features":[555]},{"name":"opEquals","features":[555]},{"name":"opNotContains","features":[555]},{"name":"opNotEquals","features":[555]},{"name":"opReportComments","features":[555]},{"name":"opReportLegacy","features":[555]},{"name":"permGPOApply","features":[555]},{"name":"permGPOCustom","features":[555]},{"name":"permGPOEdit","features":[555]},{"name":"permGPOEditSecurityAndDelete","features":[555]},{"name":"permGPORead","features":[555]},{"name":"permSOMGPOCreate","features":[555]},{"name":"permSOMLink","features":[555]},{"name":"permSOMLogging","features":[555]},{"name":"permSOMPlanning","features":[555]},{"name":"permSOMStarterGPOCreate","features":[555]},{"name":"permSOMWMICreate","features":[555]},{"name":"permSOMWMIFullControl","features":[555]},{"name":"permStarterGPOCustom","features":[555]},{"name":"permStarterGPOEdit","features":[555]},{"name":"permStarterGPOFullControl","features":[555]},{"name":"permStarterGPORead","features":[555]},{"name":"permWMIFilterCustom","features":[555]},{"name":"permWMIFilterEdit","features":[555]},{"name":"permWMIFilterFullControl","features":[555]},{"name":"repClientHealthRefreshXML","features":[555]},{"name":"repClientHealthXML","features":[555]},{"name":"repHTML","features":[555]},{"name":"repInfraRefreshXML","features":[555]},{"name":"repInfraXML","features":[555]},{"name":"repXML","features":[555]},{"name":"rsopLogging","features":[555]},{"name":"rsopPlanning","features":[555]},{"name":"rsopUnknown","features":[555]},{"name":"somDomain","features":[555]},{"name":"somLinks","features":[555]},{"name":"somOU","features":[555]},{"name":"somSite","features":[555]},{"name":"starterGPODisplayName","features":[555]},{"name":"starterGPODomain","features":[555]},{"name":"starterGPOEffectivePermissions","features":[555]},{"name":"starterGPOID","features":[555]},{"name":"starterGPOPermissions","features":[555]},{"name":"typeComputer","features":[555]},{"name":"typeCustom","features":[555]},{"name":"typeGPO","features":[555]},{"name":"typeGlobalGroup","features":[555]},{"name":"typeLocalGroup","features":[555]},{"name":"typeStarterGPO","features":[555]},{"name":"typeSystem","features":[555]},{"name":"typeUNCPath","features":[555]},{"name":"typeUniversalGroup","features":[555]},{"name":"typeUnknown","features":[555]},{"name":"typeUser","features":[555]}],"569":[{"name":"HCS_CALLBACK","features":[557]}],"570":[{"name":"HCN_NOTIFICATIONS","features":[558]},{"name":"HCN_NOTIFICATION_CALLBACK","features":[558]},{"name":"HCN_PORT_ACCESS","features":[558]},{"name":"HCN_PORT_ACCESS_EXCLUSIVE","features":[558]},{"name":"HCN_PORT_ACCESS_SHARED","features":[558]},{"name":"HCN_PORT_PROTOCOL","features":[558]},{"name":"HCN_PORT_PROTOCOL_BOTH","features":[558]},{"name":"HCN_PORT_PROTOCOL_TCP","features":[558]},{"name":"HCN_PORT_PROTOCOL_UDP","features":[558]},{"name":"HCN_PORT_RANGE_ENTRY","features":[558]},{"name":"HCN_PORT_RANGE_RESERVATION","features":[558]},{"name":"HcnCloseEndpoint","features":[558]},{"name":"HcnCloseGuestNetworkService","features":[558]},{"name":"HcnCloseLoadBalancer","features":[558]},{"name":"HcnCloseNamespace","features":[558]},{"name":"HcnCloseNetwork","features":[558]},{"name":"HcnCreateEndpoint","features":[558]},{"name":"HcnCreateGuestNetworkService","features":[558]},{"name":"HcnCreateLoadBalancer","features":[558]},{"name":"HcnCreateNamespace","features":[558]},{"name":"HcnCreateNetwork","features":[558]},{"name":"HcnDeleteEndpoint","features":[558]},{"name":"HcnDeleteGuestNetworkService","features":[558]},{"name":"HcnDeleteLoadBalancer","features":[558]},{"name":"HcnDeleteNamespace","features":[558]},{"name":"HcnDeleteNetwork","features":[558]},{"name":"HcnEnumerateEndpoints","features":[558]},{"name":"HcnEnumerateGuestNetworkPortReservations","features":[558]},{"name":"HcnEnumerateLoadBalancers","features":[558]},{"name":"HcnEnumerateNamespaces","features":[558]},{"name":"HcnEnumerateNetworks","features":[558]},{"name":"HcnFreeGuestNetworkPortReservations","features":[558]},{"name":"HcnModifyEndpoint","features":[558]},{"name":"HcnModifyGuestNetworkService","features":[558]},{"name":"HcnModifyLoadBalancer","features":[558]},{"name":"HcnModifyNamespace","features":[558]},{"name":"HcnModifyNetwork","features":[558]},{"name":"HcnNotificationFlagsReserved","features":[558]},{"name":"HcnNotificationGuestNetworkServiceCreate","features":[558]},{"name":"HcnNotificationGuestNetworkServiceDelete","features":[558]},{"name":"HcnNotificationGuestNetworkServiceInterfaceStateChanged","features":[558]},{"name":"HcnNotificationGuestNetworkServiceStateChanged","features":[558]},{"name":"HcnNotificationInvalid","features":[558]},{"name":"HcnNotificationNamespaceCreate","features":[558]},{"name":"HcnNotificationNamespaceDelete","features":[558]},{"name":"HcnNotificationNetworkCreate","features":[558]},{"name":"HcnNotificationNetworkDelete","features":[558]},{"name":"HcnNotificationNetworkEndpointAttached","features":[558]},{"name":"HcnNotificationNetworkEndpointDetached","features":[558]},{"name":"HcnNotificationNetworkPreCreate","features":[558]},{"name":"HcnNotificationNetworkPreDelete","features":[558]},{"name":"HcnNotificationServiceDisconnect","features":[558]},{"name":"HcnOpenEndpoint","features":[558]},{"name":"HcnOpenLoadBalancer","features":[558]},{"name":"HcnOpenNamespace","features":[558]},{"name":"HcnOpenNetwork","features":[558]},{"name":"HcnQueryEndpointAddresses","features":[558]},{"name":"HcnQueryEndpointProperties","features":[558]},{"name":"HcnQueryEndpointStats","features":[558]},{"name":"HcnQueryLoadBalancerProperties","features":[558]},{"name":"HcnQueryNamespaceProperties","features":[558]},{"name":"HcnQueryNetworkProperties","features":[558]},{"name":"HcnRegisterGuestNetworkServiceCallback","features":[558]},{"name":"HcnRegisterServiceCallback","features":[558]},{"name":"HcnReleaseGuestNetworkServicePortReservationHandle","features":[305,558]},{"name":"HcnReserveGuestNetworkServicePort","features":[305,558]},{"name":"HcnReserveGuestNetworkServicePortRange","features":[305,558]},{"name":"HcnUnregisterGuestNetworkServiceCallback","features":[558]},{"name":"HcnUnregisterServiceCallback","features":[558]}],"571":[{"name":"HCS_CREATE_OPTIONS","features":[559]},{"name":"HCS_CREATE_OPTIONS_1","features":[305,308,559]},{"name":"HCS_EVENT","features":[559]},{"name":"HCS_EVENT_CALLBACK","features":[559]},{"name":"HCS_EVENT_OPTIONS","features":[559]},{"name":"HCS_EVENT_TYPE","features":[559]},{"name":"HCS_NOTIFICATIONS","features":[559]},{"name":"HCS_NOTIFICATION_CALLBACK","features":[559]},{"name":"HCS_NOTIFICATION_FLAGS","features":[559]},{"name":"HCS_OPERATION","features":[559]},{"name":"HCS_OPERATION_COMPLETION","features":[559]},{"name":"HCS_OPERATION_OPTIONS","features":[559]},{"name":"HCS_OPERATION_TYPE","features":[559]},{"name":"HCS_PROCESS","features":[559]},{"name":"HCS_PROCESS_INFORMATION","features":[305,559]},{"name":"HCS_RESOURCE_TYPE","features":[559]},{"name":"HCS_SYSTEM","features":[559]},{"name":"HcsAddResourceToOperation","features":[305,559]},{"name":"HcsAttachLayerStorageFilter","features":[559]},{"name":"HcsCancelOperation","features":[559]},{"name":"HcsCloseComputeSystem","features":[559]},{"name":"HcsCloseOperation","features":[559]},{"name":"HcsCloseProcess","features":[559]},{"name":"HcsCrashComputeSystem","features":[559]},{"name":"HcsCreateComputeSystem","features":[308,559]},{"name":"HcsCreateComputeSystemInNamespace","features":[559]},{"name":"HcsCreateEmptyGuestStateFile","features":[559]},{"name":"HcsCreateEmptyRuntimeStateFile","features":[559]},{"name":"HcsCreateOperation","features":[559]},{"name":"HcsCreateOperationWithNotifications","features":[559]},{"name":"HcsCreateOptions_1","features":[559]},{"name":"HcsCreateProcess","features":[308,559]},{"name":"HcsDestroyLayer","features":[559]},{"name":"HcsDetachLayerStorageFilter","features":[559]},{"name":"HcsEnumerateComputeSystems","features":[559]},{"name":"HcsEnumerateComputeSystemsInNamespace","features":[559]},{"name":"HcsEventGroupOperationInfo","features":[559]},{"name":"HcsEventGroupVmLifecycle","features":[559]},{"name":"HcsEventInvalid","features":[559]},{"name":"HcsEventOperationCallback","features":[559]},{"name":"HcsEventOptionEnableOperationCallbacks","features":[559]},{"name":"HcsEventOptionEnableVmLifecycle","features":[559]},{"name":"HcsEventOptionNone","features":[559]},{"name":"HcsEventProcessExited","features":[559]},{"name":"HcsEventServiceDisconnect","features":[559]},{"name":"HcsEventSystemCrashInitiated","features":[559]},{"name":"HcsEventSystemCrashReport","features":[559]},{"name":"HcsEventSystemExited","features":[559]},{"name":"HcsEventSystemGuestConnectionClosed","features":[559]},{"name":"HcsEventSystemRdpEnhancedModeStateChanged","features":[559]},{"name":"HcsEventSystemSiloJobCreated","features":[559]},{"name":"HcsExportLayer","features":[559]},{"name":"HcsExportLegacyWritableLayer","features":[559]},{"name":"HcsFormatWritableLayerVhd","features":[305,559]},{"name":"HcsGetComputeSystemFromOperation","features":[559]},{"name":"HcsGetComputeSystemProperties","features":[559]},{"name":"HcsGetLayerVhdMountPath","features":[305,559]},{"name":"HcsGetOperationContext","features":[559]},{"name":"HcsGetOperationId","features":[559]},{"name":"HcsGetOperationResult","features":[559]},{"name":"HcsGetOperationResultAndProcessInfo","features":[305,559]},{"name":"HcsGetOperationType","features":[559]},{"name":"HcsGetProcessFromOperation","features":[559]},{"name":"HcsGetProcessInfo","features":[559]},{"name":"HcsGetProcessProperties","features":[559]},{"name":"HcsGetProcessorCompatibilityFromSavedState","features":[559]},{"name":"HcsGetServiceProperties","features":[559]},{"name":"HcsGrantVmAccess","features":[559]},{"name":"HcsGrantVmGroupAccess","features":[559]},{"name":"HcsImportLayer","features":[559]},{"name":"HcsInitializeLegacyWritableLayer","features":[559]},{"name":"HcsInitializeWritableLayer","features":[559]},{"name":"HcsModifyComputeSystem","features":[305,559]},{"name":"HcsModifyProcess","features":[559]},{"name":"HcsModifyServiceSettings","features":[559]},{"name":"HcsNotificationFlagFailure","features":[559]},{"name":"HcsNotificationFlagSuccess","features":[559]},{"name":"HcsNotificationFlagsReserved","features":[559]},{"name":"HcsNotificationInvalid","features":[559]},{"name":"HcsNotificationOperationProgressUpdate","features":[559]},{"name":"HcsNotificationProcessExited","features":[559]},{"name":"HcsNotificationServiceDisconnect","features":[559]},{"name":"HcsNotificationSystemCrashInitiated","features":[559]},{"name":"HcsNotificationSystemCrashReport","features":[559]},{"name":"HcsNotificationSystemCreateCompleted","features":[559]},{"name":"HcsNotificationSystemExited","features":[559]},{"name":"HcsNotificationSystemGetPropertiesCompleted","features":[559]},{"name":"HcsNotificationSystemGuestConnectionClosed","features":[559]},{"name":"HcsNotificationSystemModifyCompleted","features":[559]},{"name":"HcsNotificationSystemOperationCompletion","features":[559]},{"name":"HcsNotificationSystemPassThru","features":[559]},{"name":"HcsNotificationSystemPauseCompleted","features":[559]},{"name":"HcsNotificationSystemRdpEnhancedModeStateChanged","features":[559]},{"name":"HcsNotificationSystemResumeCompleted","features":[559]},{"name":"HcsNotificationSystemSaveCompleted","features":[559]},{"name":"HcsNotificationSystemShutdownCompleted","features":[559]},{"name":"HcsNotificationSystemShutdownFailed","features":[559]},{"name":"HcsNotificationSystemSiloJobCreated","features":[559]},{"name":"HcsNotificationSystemStartCompleted","features":[559]},{"name":"HcsOpenComputeSystem","features":[559]},{"name":"HcsOpenComputeSystemInNamespace","features":[559]},{"name":"HcsOpenProcess","features":[559]},{"name":"HcsOperationOptionNone","features":[559]},{"name":"HcsOperationOptionProgressUpdate","features":[559]},{"name":"HcsOperationTypeCrash","features":[559]},{"name":"HcsOperationTypeCreate","features":[559]},{"name":"HcsOperationTypeCreateProcess","features":[559]},{"name":"HcsOperationTypeEnumerate","features":[559]},{"name":"HcsOperationTypeGetProcessInfo","features":[559]},{"name":"HcsOperationTypeGetProcessProperties","features":[559]},{"name":"HcsOperationTypeGetProperties","features":[559]},{"name":"HcsOperationTypeModify","features":[559]},{"name":"HcsOperationTypeModifyProcess","features":[559]},{"name":"HcsOperationTypeNone","features":[559]},{"name":"HcsOperationTypePause","features":[559]},{"name":"HcsOperationTypeResume","features":[559]},{"name":"HcsOperationTypeSave","features":[559]},{"name":"HcsOperationTypeShutdown","features":[559]},{"name":"HcsOperationTypeSignalProcess","features":[559]},{"name":"HcsOperationTypeStart","features":[559]},{"name":"HcsOperationTypeTerminate","features":[559]},{"name":"HcsPauseComputeSystem","features":[559]},{"name":"HcsResourceTypeFile","features":[559]},{"name":"HcsResourceTypeJob","features":[559]},{"name":"HcsResourceTypeNone","features":[559]},{"name":"HcsResumeComputeSystem","features":[559]},{"name":"HcsRevokeVmAccess","features":[559]},{"name":"HcsRevokeVmGroupAccess","features":[559]},{"name":"HcsSaveComputeSystem","features":[559]},{"name":"HcsSetComputeSystemCallback","features":[559]},{"name":"HcsSetOperationCallback","features":[559]},{"name":"HcsSetOperationContext","features":[559]},{"name":"HcsSetProcessCallback","features":[559]},{"name":"HcsSetupBaseOSLayer","features":[305,559]},{"name":"HcsSetupBaseOSVolume","features":[559]},{"name":"HcsShutDownComputeSystem","features":[559]},{"name":"HcsSignalProcess","features":[559]},{"name":"HcsStartComputeSystem","features":[559]},{"name":"HcsSubmitWerReport","features":[559]},{"name":"HcsTerminateComputeSystem","features":[559]},{"name":"HcsTerminateProcess","features":[559]},{"name":"HcsWaitForComputeSystemExit","features":[559]},{"name":"HcsWaitForOperationResult","features":[559]},{"name":"HcsWaitForOperationResultAndProcessInfo","features":[305,559]},{"name":"HcsWaitForProcessExit","features":[559]}],"572":[{"name":"ARM64_RegisterActlrEl1","features":[560]},{"name":"ARM64_RegisterAmairEl1","features":[560]},{"name":"ARM64_RegisterCntkctlEl1","features":[560]},{"name":"ARM64_RegisterCntvCtlEl0","features":[560]},{"name":"ARM64_RegisterCntvCvalEl0","features":[560]},{"name":"ARM64_RegisterContextIdrEl1","features":[560]},{"name":"ARM64_RegisterCpacrEl1","features":[560]},{"name":"ARM64_RegisterCpsr","features":[560]},{"name":"ARM64_RegisterCsselrEl1","features":[560]},{"name":"ARM64_RegisterElrEl1","features":[560]},{"name":"ARM64_RegisterEsrEl1","features":[560]},{"name":"ARM64_RegisterFarEl1","features":[560]},{"name":"ARM64_RegisterFpControl","features":[560]},{"name":"ARM64_RegisterFpStatus","features":[560]},{"name":"ARM64_RegisterMairEl1","features":[560]},{"name":"ARM64_RegisterMax","features":[560]},{"name":"ARM64_RegisterParEl1","features":[560]},{"name":"ARM64_RegisterPc","features":[560]},{"name":"ARM64_RegisterQ0","features":[560]},{"name":"ARM64_RegisterQ1","features":[560]},{"name":"ARM64_RegisterQ10","features":[560]},{"name":"ARM64_RegisterQ11","features":[560]},{"name":"ARM64_RegisterQ12","features":[560]},{"name":"ARM64_RegisterQ13","features":[560]},{"name":"ARM64_RegisterQ14","features":[560]},{"name":"ARM64_RegisterQ15","features":[560]},{"name":"ARM64_RegisterQ16","features":[560]},{"name":"ARM64_RegisterQ17","features":[560]},{"name":"ARM64_RegisterQ18","features":[560]},{"name":"ARM64_RegisterQ19","features":[560]},{"name":"ARM64_RegisterQ2","features":[560]},{"name":"ARM64_RegisterQ20","features":[560]},{"name":"ARM64_RegisterQ21","features":[560]},{"name":"ARM64_RegisterQ22","features":[560]},{"name":"ARM64_RegisterQ23","features":[560]},{"name":"ARM64_RegisterQ24","features":[560]},{"name":"ARM64_RegisterQ25","features":[560]},{"name":"ARM64_RegisterQ26","features":[560]},{"name":"ARM64_RegisterQ27","features":[560]},{"name":"ARM64_RegisterQ28","features":[560]},{"name":"ARM64_RegisterQ29","features":[560]},{"name":"ARM64_RegisterQ3","features":[560]},{"name":"ARM64_RegisterQ30","features":[560]},{"name":"ARM64_RegisterQ31","features":[560]},{"name":"ARM64_RegisterQ4","features":[560]},{"name":"ARM64_RegisterQ5","features":[560]},{"name":"ARM64_RegisterQ6","features":[560]},{"name":"ARM64_RegisterQ7","features":[560]},{"name":"ARM64_RegisterQ8","features":[560]},{"name":"ARM64_RegisterQ9","features":[560]},{"name":"ARM64_RegisterSctlrEl1","features":[560]},{"name":"ARM64_RegisterSpEl0","features":[560]},{"name":"ARM64_RegisterSpEl1","features":[560]},{"name":"ARM64_RegisterSpsrEl1","features":[560]},{"name":"ARM64_RegisterTcrEl1","features":[560]},{"name":"ARM64_RegisterTpidrEl0","features":[560]},{"name":"ARM64_RegisterTpidrEl1","features":[560]},{"name":"ARM64_RegisterTpidrroEl0","features":[560]},{"name":"ARM64_RegisterTtbr0El1","features":[560]},{"name":"ARM64_RegisterTtbr1El1","features":[560]},{"name":"ARM64_RegisterVbarEl1","features":[560]},{"name":"ARM64_RegisterX0","features":[560]},{"name":"ARM64_RegisterX1","features":[560]},{"name":"ARM64_RegisterX10","features":[560]},{"name":"ARM64_RegisterX11","features":[560]},{"name":"ARM64_RegisterX12","features":[560]},{"name":"ARM64_RegisterX13","features":[560]},{"name":"ARM64_RegisterX14","features":[560]},{"name":"ARM64_RegisterX15","features":[560]},{"name":"ARM64_RegisterX16","features":[560]},{"name":"ARM64_RegisterX17","features":[560]},{"name":"ARM64_RegisterX18","features":[560]},{"name":"ARM64_RegisterX19","features":[560]},{"name":"ARM64_RegisterX2","features":[560]},{"name":"ARM64_RegisterX20","features":[560]},{"name":"ARM64_RegisterX21","features":[560]},{"name":"ARM64_RegisterX22","features":[560]},{"name":"ARM64_RegisterX23","features":[560]},{"name":"ARM64_RegisterX24","features":[560]},{"name":"ARM64_RegisterX25","features":[560]},{"name":"ARM64_RegisterX26","features":[560]},{"name":"ARM64_RegisterX27","features":[560]},{"name":"ARM64_RegisterX28","features":[560]},{"name":"ARM64_RegisterX3","features":[560]},{"name":"ARM64_RegisterX4","features":[560]},{"name":"ARM64_RegisterX5","features":[560]},{"name":"ARM64_RegisterX6","features":[560]},{"name":"ARM64_RegisterX7","features":[560]},{"name":"ARM64_RegisterX8","features":[560]},{"name":"ARM64_RegisterX9","features":[560]},{"name":"ARM64_RegisterXFp","features":[560]},{"name":"ARM64_RegisterXLr","features":[560]},{"name":"ApplyGuestMemoryFix","features":[560]},{"name":"ApplyPendingSavedStateFileReplayLog","features":[560]},{"name":"Arch_Armv8","features":[560]},{"name":"Arch_Unknown","features":[560]},{"name":"Arch_x64","features":[560]},{"name":"Arch_x86","features":[560]},{"name":"CallStackUnwind","features":[560]},{"name":"DOS_IMAGE_INFO","features":[560]},{"name":"FOUND_IMAGE_CALLBACK","features":[305,560]},{"name":"FindSavedStateSymbolFieldInType","features":[305,560]},{"name":"ForceActiveVirtualTrustLevel","features":[560]},{"name":"ForceArchitecture","features":[560]},{"name":"ForceNestedHostMode","features":[305,560]},{"name":"ForcePagingMode","features":[560]},{"name":"GPA_MEMORY_CHUNK","features":[560]},{"name":"GUEST_OS_INFO","features":[560]},{"name":"GUEST_OS_MICROSOFT_IDS","features":[560]},{"name":"GUEST_OS_OPENSOURCE_IDS","features":[560]},{"name":"GUEST_OS_VENDOR","features":[560]},{"name":"GUEST_SYMBOLS_PROVIDER_DEBUG_INFO_CALLBACK","features":[560]},{"name":"GUID_DEVINTERFACE_VM_GENCOUNTER","features":[560]},{"name":"GetActiveVirtualTrustLevel","features":[560]},{"name":"GetArchitecture","features":[560]},{"name":"GetEnabledVirtualTrustLevels","features":[560]},{"name":"GetGuestEnabledVirtualTrustLevels","features":[560]},{"name":"GetGuestOsInfo","features":[560]},{"name":"GetGuestPhysicalMemoryChunks","features":[560]},{"name":"GetGuestRawSavedMemorySize","features":[560]},{"name":"GetMemoryBlockCacheLimit","features":[560]},{"name":"GetNestedVirtualizationMode","features":[305,560]},{"name":"GetPagingMode","features":[560]},{"name":"GetRegisterValue","features":[560]},{"name":"GetSavedStateSymbolFieldInfo","features":[560]},{"name":"GetSavedStateSymbolProviderHandle","features":[305,560]},{"name":"GetSavedStateSymbolTypeSize","features":[560]},{"name":"GetVpCount","features":[560]},{"name":"GuestOsMicrosoftMSDOS","features":[560]},{"name":"GuestOsMicrosoftUndefined","features":[560]},{"name":"GuestOsMicrosoftWindows3x","features":[560]},{"name":"GuestOsMicrosoftWindows9x","features":[560]},{"name":"GuestOsMicrosoftWindowsCE","features":[560]},{"name":"GuestOsMicrosoftWindowsNT","features":[560]},{"name":"GuestOsOpenSourceFreeBSD","features":[560]},{"name":"GuestOsOpenSourceIllumos","features":[560]},{"name":"GuestOsOpenSourceLinux","features":[560]},{"name":"GuestOsOpenSourceUndefined","features":[560]},{"name":"GuestOsOpenSourceXen","features":[560]},{"name":"GuestOsVendorHPE","features":[560]},{"name":"GuestOsVendorLANCOM","features":[560]},{"name":"GuestOsVendorMicrosoft","features":[560]},{"name":"GuestOsVendorUndefined","features":[560]},{"name":"GuestPhysicalAddressToRawSavedMemoryOffset","features":[560]},{"name":"GuestVirtualAddressToPhysicalAddress","features":[560]},{"name":"HDV_DEVICE_HOST_FLAGS","features":[560]},{"name":"HDV_DEVICE_TYPE","features":[560]},{"name":"HDV_DOORBELL_FLAGS","features":[560]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_ANY_VALUE","features":[560]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_ANY","features":[560]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_BYTE","features":[560]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_DWORD","features":[560]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_QWORD","features":[560]},{"name":"HDV_DOORBELL_FLAG_TRIGGER_SIZE_WORD","features":[560]},{"name":"HDV_MMIO_MAPPING_FLAGS","features":[560]},{"name":"HDV_PCI_BAR0","features":[560]},{"name":"HDV_PCI_BAR1","features":[560]},{"name":"HDV_PCI_BAR2","features":[560]},{"name":"HDV_PCI_BAR3","features":[560]},{"name":"HDV_PCI_BAR4","features":[560]},{"name":"HDV_PCI_BAR5","features":[560]},{"name":"HDV_PCI_BAR_COUNT","features":[560]},{"name":"HDV_PCI_BAR_SELECTOR","features":[560]},{"name":"HDV_PCI_DEVICE_GET_DETAILS","features":[560]},{"name":"HDV_PCI_DEVICE_INITIALIZE","features":[560]},{"name":"HDV_PCI_DEVICE_INTERFACE","features":[560]},{"name":"HDV_PCI_DEVICE_SET_CONFIGURATION","features":[560]},{"name":"HDV_PCI_DEVICE_START","features":[560]},{"name":"HDV_PCI_DEVICE_STOP","features":[560]},{"name":"HDV_PCI_DEVICE_TEARDOWN","features":[560]},{"name":"HDV_PCI_INTERFACE_VERSION","features":[560]},{"name":"HDV_PCI_PNP_ID","features":[560]},{"name":"HDV_PCI_READ_CONFIG_SPACE","features":[560]},{"name":"HDV_PCI_READ_INTERCEPTED_MEMORY","features":[560]},{"name":"HDV_PCI_WRITE_CONFIG_SPACE","features":[560]},{"name":"HDV_PCI_WRITE_INTERCEPTED_MEMORY","features":[560]},{"name":"HVSOCKET_ADDRESS_FLAG_PASSTHRU","features":[560]},{"name":"HVSOCKET_ADDRESS_INFO","features":[560]},{"name":"HVSOCKET_CONNECTED_SUSPEND","features":[560]},{"name":"HVSOCKET_CONNECT_TIMEOUT","features":[560]},{"name":"HVSOCKET_CONNECT_TIMEOUT_MAX","features":[560]},{"name":"HVSOCKET_HIGH_VTL","features":[560]},{"name":"HV_GUID_BROADCAST","features":[560]},{"name":"HV_GUID_CHILDREN","features":[560]},{"name":"HV_GUID_LOOPBACK","features":[560]},{"name":"HV_GUID_PARENT","features":[560]},{"name":"HV_GUID_SILOHOST","features":[560]},{"name":"HV_GUID_VSOCK_TEMPLATE","features":[560]},{"name":"HV_GUID_ZERO","features":[560]},{"name":"HV_PROTOCOL_RAW","features":[560]},{"name":"HdvCreateDeviceInstance","features":[560]},{"name":"HdvCreateGuestMemoryAperture","features":[305,560]},{"name":"HdvCreateSectionBackedMmioRange","features":[305,560]},{"name":"HdvDeliverGuestInterrupt","features":[560]},{"name":"HdvDestroyGuestMemoryAperture","features":[560]},{"name":"HdvDestroySectionBackedMmioRange","features":[560]},{"name":"HdvDeviceHostFlagInitializeComSecurity","features":[560]},{"name":"HdvDeviceHostFlagNone","features":[560]},{"name":"HdvDeviceTypePCI","features":[560]},{"name":"HdvDeviceTypeUndefined","features":[560]},{"name":"HdvInitializeDeviceHost","features":[559,560]},{"name":"HdvInitializeDeviceHostEx","features":[559,560]},{"name":"HdvMmioMappingFlagExecutable","features":[560]},{"name":"HdvMmioMappingFlagNone","features":[560]},{"name":"HdvMmioMappingFlagWriteable","features":[560]},{"name":"HdvPciDeviceInterfaceVersion1","features":[560]},{"name":"HdvPciDeviceInterfaceVersionInvalid","features":[560]},{"name":"HdvReadGuestMemory","features":[560]},{"name":"HdvRegisterDoorbell","features":[305,560]},{"name":"HdvTeardownDeviceHost","features":[560]},{"name":"HdvUnregisterDoorbell","features":[560]},{"name":"HdvWriteGuestMemory","features":[560]},{"name":"IOCTL_VMGENCOUNTER_READ","features":[560]},{"name":"InKernelSpace","features":[305,560]},{"name":"IsActiveVirtualTrustLevelEnabled","features":[305,560]},{"name":"IsNestedVirtualizationEnabled","features":[305,560]},{"name":"LoadSavedStateFile","features":[560]},{"name":"LoadSavedStateFiles","features":[560]},{"name":"LoadSavedStateModuleSymbols","features":[560]},{"name":"LoadSavedStateModuleSymbolsEx","features":[560]},{"name":"LoadSavedStateSymbolProvider","features":[305,560]},{"name":"LocateSavedStateFiles","features":[560]},{"name":"MODULE_INFO","features":[560]},{"name":"PAGING_MODE","features":[560]},{"name":"Paging_32Bit","features":[560]},{"name":"Paging_Armv8","features":[560]},{"name":"Paging_Invalid","features":[560]},{"name":"Paging_Long","features":[560]},{"name":"Paging_NonPaged","features":[560]},{"name":"Paging_Pae","features":[560]},{"name":"ProcessorVendor_Amd","features":[560]},{"name":"ProcessorVendor_Arm","features":[560]},{"name":"ProcessorVendor_Hygon","features":[560]},{"name":"ProcessorVendor_Intel","features":[560]},{"name":"ProcessorVendor_Unknown","features":[560]},{"name":"REGISTER_ID","features":[560]},{"name":"ReadGuestPhysicalAddress","features":[560]},{"name":"ReadGuestRawSavedMemory","features":[560]},{"name":"ReadSavedStateGlobalVariable","features":[560]},{"name":"ReleaseSavedStateFiles","features":[560]},{"name":"ReleaseSavedStateSymbolProvider","features":[560]},{"name":"ResolveSavedStateGlobalVariableAddress","features":[560]},{"name":"SOCKADDR_HV","features":[318,560]},{"name":"ScanMemoryForDosImages","features":[305,560]},{"name":"SetMemoryBlockCacheLimit","features":[560]},{"name":"SetSavedStateSymbolProviderDebugInfoCallback","features":[560]},{"name":"VIRTUAL_PROCESSOR_ARCH","features":[560]},{"name":"VIRTUAL_PROCESSOR_REGISTER","features":[560]},{"name":"VIRTUAL_PROCESSOR_VENDOR","features":[560]},{"name":"VM_GENCOUNTER","features":[560]},{"name":"VM_GENCOUNTER_SYMBOLIC_LINK_NAME","features":[560]},{"name":"WHV_ACCESS_GPA_CONTROLS","features":[560]},{"name":"WHV_ADVISE_GPA_RANGE","features":[560]},{"name":"WHV_ADVISE_GPA_RANGE_CODE","features":[560]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE","features":[560]},{"name":"WHV_ADVISE_GPA_RANGE_POPULATE_FLAGS","features":[560]},{"name":"WHV_ALLOCATE_VPCI_RESOURCE_FLAGS","features":[560]},{"name":"WHV_ANY_VP","features":[560]},{"name":"WHV_CACHE_TYPE","features":[560]},{"name":"WHV_CAPABILITY","features":[305,560]},{"name":"WHV_CAPABILITY_CODE","features":[560]},{"name":"WHV_CAPABILITY_FEATURES","features":[560]},{"name":"WHV_CAPABILITY_PROCESSOR_FREQUENCY_CAP","features":[560]},{"name":"WHV_CPUID_OUTPUT","features":[560]},{"name":"WHV_CREATE_VPCI_DEVICE_FLAGS","features":[560]},{"name":"WHV_DOORBELL_MATCH_DATA","features":[560]},{"name":"WHV_EMULATOR_CALLBACKS","features":[560]},{"name":"WHV_EMULATOR_GET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[560]},{"name":"WHV_EMULATOR_IO_ACCESS_INFO","features":[560]},{"name":"WHV_EMULATOR_IO_PORT_CALLBACK","features":[560]},{"name":"WHV_EMULATOR_MEMORY_ACCESS_INFO","features":[560]},{"name":"WHV_EMULATOR_MEMORY_CALLBACK","features":[560]},{"name":"WHV_EMULATOR_SET_VIRTUAL_PROCESSOR_REGISTERS_CALLBACK","features":[560]},{"name":"WHV_EMULATOR_STATUS","features":[560]},{"name":"WHV_EMULATOR_TRANSLATE_GVA_PAGE_CALLBACK","features":[560]},{"name":"WHV_EXCEPTION_TYPE","features":[560]},{"name":"WHV_EXTENDED_VM_EXITS","features":[560]},{"name":"WHV_HYPERCALL_CONTEXT","features":[560]},{"name":"WHV_HYPERCALL_CONTEXT_MAX_XMM_REGISTERS","features":[560]},{"name":"WHV_INTERNAL_ACTIVITY_REGISTER","features":[560]},{"name":"WHV_INTERRUPT_CONTROL","features":[560]},{"name":"WHV_INTERRUPT_DESTINATION_MODE","features":[560]},{"name":"WHV_INTERRUPT_TRIGGER_MODE","features":[560]},{"name":"WHV_INTERRUPT_TYPE","features":[560]},{"name":"WHV_MAP_GPA_RANGE_FLAGS","features":[560]},{"name":"WHV_MAX_DEVICE_ID_SIZE_IN_CHARS","features":[560]},{"name":"WHV_MEMORY_ACCESS_CONTEXT","features":[560]},{"name":"WHV_MEMORY_ACCESS_INFO","features":[560]},{"name":"WHV_MEMORY_ACCESS_TYPE","features":[560]},{"name":"WHV_MEMORY_RANGE_ENTRY","features":[560]},{"name":"WHV_MSR_ACTION","features":[560]},{"name":"WHV_MSR_ACTION_ENTRY","features":[560]},{"name":"WHV_NOTIFICATION_PORT_PARAMETERS","features":[560]},{"name":"WHV_NOTIFICATION_PORT_PROPERTY_CODE","features":[560]},{"name":"WHV_NOTIFICATION_PORT_TYPE","features":[560]},{"name":"WHV_PARTITION_COUNTER_SET","features":[560]},{"name":"WHV_PARTITION_HANDLE","features":[560]},{"name":"WHV_PARTITION_MEMORY_COUNTERS","features":[560]},{"name":"WHV_PARTITION_PROPERTY","features":[305,560]},{"name":"WHV_PARTITION_PROPERTY_CODE","features":[560]},{"name":"WHV_PROCESSOR_APIC_COUNTERS","features":[560]},{"name":"WHV_PROCESSOR_COUNTER_SET","features":[560]},{"name":"WHV_PROCESSOR_EVENT_COUNTERS","features":[560]},{"name":"WHV_PROCESSOR_FEATURES","features":[560]},{"name":"WHV_PROCESSOR_FEATURES1","features":[560]},{"name":"WHV_PROCESSOR_FEATURES_BANKS","features":[560]},{"name":"WHV_PROCESSOR_FEATURES_BANKS_COUNT","features":[560]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTER","features":[560]},{"name":"WHV_PROCESSOR_INTERCEPT_COUNTERS","features":[560]},{"name":"WHV_PROCESSOR_PERFMON_FEATURES","features":[560]},{"name":"WHV_PROCESSOR_RUNTIME_COUNTERS","features":[560]},{"name":"WHV_PROCESSOR_SYNTHETIC_FEATURES_COUNTERS","features":[560]},{"name":"WHV_PROCESSOR_VENDOR","features":[560]},{"name":"WHV_PROCESSOR_XSAVE_FEATURES","features":[560]},{"name":"WHV_READ_WRITE_GPA_RANGE_MAX_SIZE","features":[560]},{"name":"WHV_REGISTER_NAME","features":[560]},{"name":"WHV_REGISTER_VALUE","features":[560]},{"name":"WHV_RUN_VP_CANCELED_CONTEXT","features":[560]},{"name":"WHV_RUN_VP_CANCEL_REASON","features":[560]},{"name":"WHV_RUN_VP_EXIT_CONTEXT","features":[560]},{"name":"WHV_RUN_VP_EXIT_REASON","features":[560]},{"name":"WHV_SCHEDULER_FEATURES","features":[560]},{"name":"WHV_SRIOV_RESOURCE_DESCRIPTOR","features":[305,560]},{"name":"WHV_SYNIC_EVENT_PARAMETERS","features":[560]},{"name":"WHV_SYNIC_MESSAGE_SIZE","features":[560]},{"name":"WHV_SYNIC_SINT_DELIVERABLE_CONTEXT","features":[560]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES","features":[560]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS","features":[560]},{"name":"WHV_SYNTHETIC_PROCESSOR_FEATURES_BANKS_COUNT","features":[560]},{"name":"WHV_TRANSLATE_GVA_FLAGS","features":[560]},{"name":"WHV_TRANSLATE_GVA_RESULT","features":[560]},{"name":"WHV_TRANSLATE_GVA_RESULT_CODE","features":[560]},{"name":"WHV_TRIGGER_PARAMETERS","features":[560]},{"name":"WHV_TRIGGER_TYPE","features":[560]},{"name":"WHV_UINT128","features":[560]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY","features":[560]},{"name":"WHV_VIRTUAL_PROCESSOR_PROPERTY_CODE","features":[560]},{"name":"WHV_VIRTUAL_PROCESSOR_STATE_TYPE","features":[560]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION","features":[560]},{"name":"WHV_VPCI_DEVICE_NOTIFICATION_TYPE","features":[560]},{"name":"WHV_VPCI_DEVICE_PROPERTY_CODE","features":[560]},{"name":"WHV_VPCI_DEVICE_REGISTER","features":[560]},{"name":"WHV_VPCI_DEVICE_REGISTER_SPACE","features":[560]},{"name":"WHV_VPCI_HARDWARE_IDS","features":[560]},{"name":"WHV_VPCI_INTERRUPT_TARGET","features":[560]},{"name":"WHV_VPCI_INTERRUPT_TARGET_FLAGS","features":[560]},{"name":"WHV_VPCI_MMIO_MAPPING","features":[560]},{"name":"WHV_VPCI_MMIO_RANGE_FLAGS","features":[560]},{"name":"WHV_VPCI_PROBED_BARS","features":[560]},{"name":"WHV_VPCI_TYPE0_BAR_COUNT","features":[560]},{"name":"WHV_VP_EXCEPTION_CONTEXT","features":[560]},{"name":"WHV_VP_EXCEPTION_INFO","features":[560]},{"name":"WHV_VP_EXIT_CONTEXT","features":[560]},{"name":"WHV_X64_APIC_EOI_CONTEXT","features":[560]},{"name":"WHV_X64_APIC_INIT_SIPI_CONTEXT","features":[560]},{"name":"WHV_X64_APIC_SMI_CONTEXT","features":[560]},{"name":"WHV_X64_APIC_WRITE_CONTEXT","features":[560]},{"name":"WHV_X64_APIC_WRITE_TYPE","features":[560]},{"name":"WHV_X64_CPUID_ACCESS_CONTEXT","features":[560]},{"name":"WHV_X64_CPUID_RESULT","features":[560]},{"name":"WHV_X64_CPUID_RESULT2","features":[560]},{"name":"WHV_X64_CPUID_RESULT2_FLAGS","features":[560]},{"name":"WHV_X64_DELIVERABILITY_NOTIFICATIONS_REGISTER","features":[560]},{"name":"WHV_X64_FP_CONTROL_STATUS_REGISTER","features":[560]},{"name":"WHV_X64_FP_REGISTER","features":[560]},{"name":"WHV_X64_INTERRUPTION_DELIVERABLE_CONTEXT","features":[560]},{"name":"WHV_X64_INTERRUPT_STATE_REGISTER","features":[560]},{"name":"WHV_X64_IO_PORT_ACCESS_CONTEXT","features":[560]},{"name":"WHV_X64_IO_PORT_ACCESS_INFO","features":[560]},{"name":"WHV_X64_LOCAL_APIC_EMULATION_MODE","features":[560]},{"name":"WHV_X64_MSR_ACCESS_CONTEXT","features":[560]},{"name":"WHV_X64_MSR_ACCESS_INFO","features":[560]},{"name":"WHV_X64_MSR_EXIT_BITMAP","features":[560]},{"name":"WHV_X64_PENDING_DEBUG_EXCEPTION","features":[560]},{"name":"WHV_X64_PENDING_EVENT_TYPE","features":[560]},{"name":"WHV_X64_PENDING_EXCEPTION_EVENT","features":[560]},{"name":"WHV_X64_PENDING_EXT_INT_EVENT","features":[560]},{"name":"WHV_X64_PENDING_INTERRUPTION_REGISTER","features":[560]},{"name":"WHV_X64_PENDING_INTERRUPTION_TYPE","features":[560]},{"name":"WHV_X64_RDTSC_CONTEXT","features":[560]},{"name":"WHV_X64_RDTSC_INFO","features":[560]},{"name":"WHV_X64_SEGMENT_REGISTER","features":[560]},{"name":"WHV_X64_TABLE_REGISTER","features":[560]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CODE","features":[560]},{"name":"WHV_X64_UNSUPPORTED_FEATURE_CONTEXT","features":[560]},{"name":"WHV_X64_VP_EXECUTION_STATE","features":[560]},{"name":"WHV_X64_XMM_CONTROL_STATUS_REGISTER","features":[560]},{"name":"WHvAcceptPartitionMigration","features":[305,560]},{"name":"WHvAdviseGpaRange","features":[560]},{"name":"WHvAdviseGpaRangeCodePin","features":[560]},{"name":"WHvAdviseGpaRangeCodePopulate","features":[560]},{"name":"WHvAdviseGpaRangeCodeUnpin","features":[560]},{"name":"WHvAllocateVpciResource","features":[305,560]},{"name":"WHvAllocateVpciResourceFlagAllowDirectP2P","features":[560]},{"name":"WHvAllocateVpciResourceFlagNone","features":[560]},{"name":"WHvCacheTypeUncached","features":[560]},{"name":"WHvCacheTypeWriteBack","features":[560]},{"name":"WHvCacheTypeWriteCombining","features":[560]},{"name":"WHvCacheTypeWriteThrough","features":[560]},{"name":"WHvCancelPartitionMigration","features":[560]},{"name":"WHvCancelRunVirtualProcessor","features":[560]},{"name":"WHvCapabilityCodeExceptionExitBitmap","features":[560]},{"name":"WHvCapabilityCodeExtendedVmExits","features":[560]},{"name":"WHvCapabilityCodeFeatures","features":[560]},{"name":"WHvCapabilityCodeGpaRangePopulateFlags","features":[560]},{"name":"WHvCapabilityCodeHypervisorPresent","features":[560]},{"name":"WHvCapabilityCodeInterruptClockFrequency","features":[560]},{"name":"WHvCapabilityCodeProcessorClFlushSize","features":[560]},{"name":"WHvCapabilityCodeProcessorClockFrequency","features":[560]},{"name":"WHvCapabilityCodeProcessorFeatures","features":[560]},{"name":"WHvCapabilityCodeProcessorFeaturesBanks","features":[560]},{"name":"WHvCapabilityCodeProcessorFrequencyCap","features":[560]},{"name":"WHvCapabilityCodeProcessorPerfmonFeatures","features":[560]},{"name":"WHvCapabilityCodeProcessorVendor","features":[560]},{"name":"WHvCapabilityCodeProcessorXsaveFeatures","features":[560]},{"name":"WHvCapabilityCodeSchedulerFeatures","features":[560]},{"name":"WHvCapabilityCodeSyntheticProcessorFeaturesBanks","features":[560]},{"name":"WHvCapabilityCodeX64MsrExitBitmap","features":[560]},{"name":"WHvCompletePartitionMigration","features":[560]},{"name":"WHvCreateNotificationPort","features":[305,560]},{"name":"WHvCreatePartition","features":[560]},{"name":"WHvCreateTrigger","features":[305,560]},{"name":"WHvCreateVirtualProcessor","features":[560]},{"name":"WHvCreateVirtualProcessor2","features":[560]},{"name":"WHvCreateVpciDevice","features":[305,560]},{"name":"WHvCreateVpciDeviceFlagNone","features":[560]},{"name":"WHvCreateVpciDeviceFlagPhysicallyBacked","features":[560]},{"name":"WHvCreateVpciDeviceFlagUseLogicalInterrupts","features":[560]},{"name":"WHvDeleteNotificationPort","features":[560]},{"name":"WHvDeletePartition","features":[560]},{"name":"WHvDeleteTrigger","features":[560]},{"name":"WHvDeleteVirtualProcessor","features":[560]},{"name":"WHvDeleteVpciDevice","features":[560]},{"name":"WHvEmulatorCreateEmulator","features":[560]},{"name":"WHvEmulatorDestroyEmulator","features":[560]},{"name":"WHvEmulatorTryIoEmulation","features":[560]},{"name":"WHvEmulatorTryMmioEmulation","features":[560]},{"name":"WHvGetCapability","features":[560]},{"name":"WHvGetInterruptTargetVpSet","features":[560]},{"name":"WHvGetPartitionCounters","features":[560]},{"name":"WHvGetPartitionProperty","features":[560]},{"name":"WHvGetVirtualProcessorCounters","features":[560]},{"name":"WHvGetVirtualProcessorCpuidOutput","features":[560]},{"name":"WHvGetVirtualProcessorInterruptControllerState","features":[560]},{"name":"WHvGetVirtualProcessorInterruptControllerState2","features":[560]},{"name":"WHvGetVirtualProcessorRegisters","features":[560]},{"name":"WHvGetVirtualProcessorState","features":[560]},{"name":"WHvGetVirtualProcessorXsaveState","features":[560]},{"name":"WHvGetVpciDeviceInterruptTarget","features":[560]},{"name":"WHvGetVpciDeviceNotification","features":[560]},{"name":"WHvGetVpciDeviceProperty","features":[560]},{"name":"WHvMapGpaRange","features":[560]},{"name":"WHvMapGpaRange2","features":[305,560]},{"name":"WHvMapGpaRangeFlagExecute","features":[560]},{"name":"WHvMapGpaRangeFlagNone","features":[560]},{"name":"WHvMapGpaRangeFlagRead","features":[560]},{"name":"WHvMapGpaRangeFlagTrackDirtyPages","features":[560]},{"name":"WHvMapGpaRangeFlagWrite","features":[560]},{"name":"WHvMapVpciDeviceInterrupt","features":[560]},{"name":"WHvMapVpciDeviceMmioRanges","features":[560]},{"name":"WHvMemoryAccessExecute","features":[560]},{"name":"WHvMemoryAccessRead","features":[560]},{"name":"WHvMemoryAccessWrite","features":[560]},{"name":"WHvMsrActionArchitectureDefault","features":[560]},{"name":"WHvMsrActionExit","features":[560]},{"name":"WHvMsrActionIgnoreWriteReadZero","features":[560]},{"name":"WHvNotificationPortPropertyPreferredTargetDuration","features":[560]},{"name":"WHvNotificationPortPropertyPreferredTargetVp","features":[560]},{"name":"WHvNotificationPortTypeDoorbell","features":[560]},{"name":"WHvNotificationPortTypeEvent","features":[560]},{"name":"WHvPartitionCounterSetMemory","features":[560]},{"name":"WHvPartitionPropertyCodeAllowDeviceAssignment","features":[560]},{"name":"WHvPartitionPropertyCodeApicRemoteReadSupport","features":[560]},{"name":"WHvPartitionPropertyCodeCpuCap","features":[560]},{"name":"WHvPartitionPropertyCodeCpuGroupId","features":[560]},{"name":"WHvPartitionPropertyCodeCpuReserve","features":[560]},{"name":"WHvPartitionPropertyCodeCpuWeight","features":[560]},{"name":"WHvPartitionPropertyCodeCpuidExitList","features":[560]},{"name":"WHvPartitionPropertyCodeCpuidResultList","features":[560]},{"name":"WHvPartitionPropertyCodeCpuidResultList2","features":[560]},{"name":"WHvPartitionPropertyCodeDisableSmt","features":[560]},{"name":"WHvPartitionPropertyCodeExceptionExitBitmap","features":[560]},{"name":"WHvPartitionPropertyCodeExtendedVmExits","features":[560]},{"name":"WHvPartitionPropertyCodeInterruptClockFrequency","features":[560]},{"name":"WHvPartitionPropertyCodeLocalApicEmulationMode","features":[560]},{"name":"WHvPartitionPropertyCodeMsrActionList","features":[560]},{"name":"WHvPartitionPropertyCodeNestedVirtualization","features":[560]},{"name":"WHvPartitionPropertyCodePrimaryNumaNode","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorClFlushSize","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorClockFrequency","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorCount","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorFeatures","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorFeaturesBanks","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorFrequencyCap","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorPerfmonFeatures","features":[560]},{"name":"WHvPartitionPropertyCodeProcessorXsaveFeatures","features":[560]},{"name":"WHvPartitionPropertyCodeReferenceTime","features":[560]},{"name":"WHvPartitionPropertyCodeSeparateSecurityDomain","features":[560]},{"name":"WHvPartitionPropertyCodeSyntheticProcessorFeaturesBanks","features":[560]},{"name":"WHvPartitionPropertyCodeUnimplementedMsrAction","features":[560]},{"name":"WHvPartitionPropertyCodeX64MsrExitBitmap","features":[560]},{"name":"WHvPostVirtualProcessorSynicMessage","features":[560]},{"name":"WHvProcessorCounterSetApic","features":[560]},{"name":"WHvProcessorCounterSetEvents","features":[560]},{"name":"WHvProcessorCounterSetIntercepts","features":[560]},{"name":"WHvProcessorCounterSetRuntime","features":[560]},{"name":"WHvProcessorCounterSetSyntheticFeatures","features":[560]},{"name":"WHvProcessorVendorAmd","features":[560]},{"name":"WHvProcessorVendorHygon","features":[560]},{"name":"WHvProcessorVendorIntel","features":[560]},{"name":"WHvQueryGpaRangeDirtyBitmap","features":[560]},{"name":"WHvReadGpaRange","features":[560]},{"name":"WHvReadVpciDeviceRegister","features":[560]},{"name":"WHvRegisterEom","features":[560]},{"name":"WHvRegisterGuestOsId","features":[560]},{"name":"WHvRegisterInternalActivityState","features":[560]},{"name":"WHvRegisterInterruptState","features":[560]},{"name":"WHvRegisterPartitionDoorbellEvent","features":[305,560]},{"name":"WHvRegisterPendingEvent","features":[560]},{"name":"WHvRegisterPendingInterruption","features":[560]},{"name":"WHvRegisterReferenceTsc","features":[560]},{"name":"WHvRegisterReferenceTscSequence","features":[560]},{"name":"WHvRegisterScontrol","features":[560]},{"name":"WHvRegisterSiefp","features":[560]},{"name":"WHvRegisterSimp","features":[560]},{"name":"WHvRegisterSint0","features":[560]},{"name":"WHvRegisterSint1","features":[560]},{"name":"WHvRegisterSint10","features":[560]},{"name":"WHvRegisterSint11","features":[560]},{"name":"WHvRegisterSint12","features":[560]},{"name":"WHvRegisterSint13","features":[560]},{"name":"WHvRegisterSint14","features":[560]},{"name":"WHvRegisterSint15","features":[560]},{"name":"WHvRegisterSint2","features":[560]},{"name":"WHvRegisterSint3","features":[560]},{"name":"WHvRegisterSint4","features":[560]},{"name":"WHvRegisterSint5","features":[560]},{"name":"WHvRegisterSint6","features":[560]},{"name":"WHvRegisterSint7","features":[560]},{"name":"WHvRegisterSint8","features":[560]},{"name":"WHvRegisterSint9","features":[560]},{"name":"WHvRegisterSversion","features":[560]},{"name":"WHvRegisterVpAssistPage","features":[560]},{"name":"WHvRegisterVpRuntime","features":[560]},{"name":"WHvRequestInterrupt","features":[560]},{"name":"WHvRequestVpciDeviceInterrupt","features":[560]},{"name":"WHvResetPartition","features":[560]},{"name":"WHvResumePartitionTime","features":[560]},{"name":"WHvRetargetVpciDeviceInterrupt","features":[560]},{"name":"WHvRunVirtualProcessor","features":[560]},{"name":"WHvRunVpCancelReasonUser","features":[560]},{"name":"WHvRunVpExitReasonCanceled","features":[560]},{"name":"WHvRunVpExitReasonException","features":[560]},{"name":"WHvRunVpExitReasonHypercall","features":[560]},{"name":"WHvRunVpExitReasonInvalidVpRegisterValue","features":[560]},{"name":"WHvRunVpExitReasonMemoryAccess","features":[560]},{"name":"WHvRunVpExitReasonNone","features":[560]},{"name":"WHvRunVpExitReasonSynicSintDeliverable","features":[560]},{"name":"WHvRunVpExitReasonUnrecoverableException","features":[560]},{"name":"WHvRunVpExitReasonUnsupportedFeature","features":[560]},{"name":"WHvRunVpExitReasonX64ApicEoi","features":[560]},{"name":"WHvRunVpExitReasonX64ApicInitSipiTrap","features":[560]},{"name":"WHvRunVpExitReasonX64ApicSmiTrap","features":[560]},{"name":"WHvRunVpExitReasonX64ApicWriteTrap","features":[560]},{"name":"WHvRunVpExitReasonX64Cpuid","features":[560]},{"name":"WHvRunVpExitReasonX64Halt","features":[560]},{"name":"WHvRunVpExitReasonX64InterruptWindow","features":[560]},{"name":"WHvRunVpExitReasonX64IoPortAccess","features":[560]},{"name":"WHvRunVpExitReasonX64MsrAccess","features":[560]},{"name":"WHvRunVpExitReasonX64Rdtsc","features":[560]},{"name":"WHvSetNotificationPortProperty","features":[560]},{"name":"WHvSetPartitionProperty","features":[560]},{"name":"WHvSetVirtualProcessorInterruptControllerState","features":[560]},{"name":"WHvSetVirtualProcessorInterruptControllerState2","features":[560]},{"name":"WHvSetVirtualProcessorRegisters","features":[560]},{"name":"WHvSetVirtualProcessorState","features":[560]},{"name":"WHvSetVirtualProcessorXsaveState","features":[560]},{"name":"WHvSetVpciDevicePowerState","features":[560,312]},{"name":"WHvSetupPartition","features":[560]},{"name":"WHvSignalVirtualProcessorSynicEvent","features":[305,560]},{"name":"WHvStartPartitionMigration","features":[305,560]},{"name":"WHvSuspendPartitionTime","features":[560]},{"name":"WHvTranslateGva","features":[560]},{"name":"WHvTranslateGvaFlagEnforceSmap","features":[560]},{"name":"WHvTranslateGvaFlagNone","features":[560]},{"name":"WHvTranslateGvaFlagOverrideSmap","features":[560]},{"name":"WHvTranslateGvaFlagPrivilegeExempt","features":[560]},{"name":"WHvTranslateGvaFlagSetPageTableBits","features":[560]},{"name":"WHvTranslateGvaFlagValidateExecute","features":[560]},{"name":"WHvTranslateGvaFlagValidateRead","features":[560]},{"name":"WHvTranslateGvaFlagValidateWrite","features":[560]},{"name":"WHvTranslateGvaResultGpaIllegalOverlayAccess","features":[560]},{"name":"WHvTranslateGvaResultGpaNoReadAccess","features":[560]},{"name":"WHvTranslateGvaResultGpaNoWriteAccess","features":[560]},{"name":"WHvTranslateGvaResultGpaUnmapped","features":[560]},{"name":"WHvTranslateGvaResultIntercept","features":[560]},{"name":"WHvTranslateGvaResultInvalidPageTableFlags","features":[560]},{"name":"WHvTranslateGvaResultPageNotPresent","features":[560]},{"name":"WHvTranslateGvaResultPrivilegeViolation","features":[560]},{"name":"WHvTranslateGvaResultSuccess","features":[560]},{"name":"WHvTriggerTypeDeviceInterrupt","features":[560]},{"name":"WHvTriggerTypeInterrupt","features":[560]},{"name":"WHvTriggerTypeSynicEvent","features":[560]},{"name":"WHvUnmapGpaRange","features":[560]},{"name":"WHvUnmapVpciDeviceInterrupt","features":[560]},{"name":"WHvUnmapVpciDeviceMmioRanges","features":[560]},{"name":"WHvUnregisterPartitionDoorbellEvent","features":[560]},{"name":"WHvUnsupportedFeatureIntercept","features":[560]},{"name":"WHvUnsupportedFeatureTaskSwitchTss","features":[560]},{"name":"WHvUpdateTriggerParameters","features":[560]},{"name":"WHvVirtualProcessorPropertyCodeNumaNode","features":[560]},{"name":"WHvVirtualProcessorStateTypeInterruptControllerState2","features":[560]},{"name":"WHvVirtualProcessorStateTypeSynicEventFlagPage","features":[560]},{"name":"WHvVirtualProcessorStateTypeSynicMessagePage","features":[560]},{"name":"WHvVirtualProcessorStateTypeSynicTimerState","features":[560]},{"name":"WHvVirtualProcessorStateTypeXsaveState","features":[560]},{"name":"WHvVpciBar0","features":[560]},{"name":"WHvVpciBar1","features":[560]},{"name":"WHvVpciBar2","features":[560]},{"name":"WHvVpciBar3","features":[560]},{"name":"WHvVpciBar4","features":[560]},{"name":"WHvVpciBar5","features":[560]},{"name":"WHvVpciConfigSpace","features":[560]},{"name":"WHvVpciDeviceNotificationMmioRemapping","features":[560]},{"name":"WHvVpciDeviceNotificationSurpriseRemoval","features":[560]},{"name":"WHvVpciDeviceNotificationUndefined","features":[560]},{"name":"WHvVpciDevicePropertyCodeHardwareIDs","features":[560]},{"name":"WHvVpciDevicePropertyCodeProbedBARs","features":[560]},{"name":"WHvVpciDevicePropertyCodeUndefined","features":[560]},{"name":"WHvVpciInterruptTargetFlagMulticast","features":[560]},{"name":"WHvVpciInterruptTargetFlagNone","features":[560]},{"name":"WHvVpciMmioRangeFlagReadAccess","features":[560]},{"name":"WHvVpciMmioRangeFlagWriteAccess","features":[560]},{"name":"WHvWriteGpaRange","features":[560]},{"name":"WHvWriteVpciDeviceRegister","features":[560]},{"name":"WHvX64ApicWriteTypeDfr","features":[560]},{"name":"WHvX64ApicWriteTypeLdr","features":[560]},{"name":"WHvX64ApicWriteTypeLint0","features":[560]},{"name":"WHvX64ApicWriteTypeLint1","features":[560]},{"name":"WHvX64ApicWriteTypeSvr","features":[560]},{"name":"WHvX64CpuidResult2FlagSubleafSpecific","features":[560]},{"name":"WHvX64CpuidResult2FlagVpSpecific","features":[560]},{"name":"WHvX64ExceptionTypeAlignmentCheckFault","features":[560]},{"name":"WHvX64ExceptionTypeBoundRangeFault","features":[560]},{"name":"WHvX64ExceptionTypeBreakpointTrap","features":[560]},{"name":"WHvX64ExceptionTypeDebugTrapOrFault","features":[560]},{"name":"WHvX64ExceptionTypeDeviceNotAvailableFault","features":[560]},{"name":"WHvX64ExceptionTypeDivideErrorFault","features":[560]},{"name":"WHvX64ExceptionTypeDoubleFaultAbort","features":[560]},{"name":"WHvX64ExceptionTypeFloatingPointErrorFault","features":[560]},{"name":"WHvX64ExceptionTypeGeneralProtectionFault","features":[560]},{"name":"WHvX64ExceptionTypeInvalidOpcodeFault","features":[560]},{"name":"WHvX64ExceptionTypeInvalidTaskStateSegmentFault","features":[560]},{"name":"WHvX64ExceptionTypeMachineCheckAbort","features":[560]},{"name":"WHvX64ExceptionTypeOverflowTrap","features":[560]},{"name":"WHvX64ExceptionTypePageFault","features":[560]},{"name":"WHvX64ExceptionTypeSegmentNotPresentFault","features":[560]},{"name":"WHvX64ExceptionTypeSimdFloatingPointFault","features":[560]},{"name":"WHvX64ExceptionTypeStackFault","features":[560]},{"name":"WHvX64InterruptDestinationModeLogical","features":[560]},{"name":"WHvX64InterruptDestinationModePhysical","features":[560]},{"name":"WHvX64InterruptTriggerModeEdge","features":[560]},{"name":"WHvX64InterruptTriggerModeLevel","features":[560]},{"name":"WHvX64InterruptTypeFixed","features":[560]},{"name":"WHvX64InterruptTypeInit","features":[560]},{"name":"WHvX64InterruptTypeLocalInt1","features":[560]},{"name":"WHvX64InterruptTypeLowestPriority","features":[560]},{"name":"WHvX64InterruptTypeNmi","features":[560]},{"name":"WHvX64InterruptTypeSipi","features":[560]},{"name":"WHvX64LocalApicEmulationModeNone","features":[560]},{"name":"WHvX64LocalApicEmulationModeX2Apic","features":[560]},{"name":"WHvX64LocalApicEmulationModeXApic","features":[560]},{"name":"WHvX64PendingEventException","features":[560]},{"name":"WHvX64PendingEventExtInt","features":[560]},{"name":"WHvX64PendingException","features":[560]},{"name":"WHvX64PendingInterrupt","features":[560]},{"name":"WHvX64PendingNmi","features":[560]},{"name":"WHvX64RegisterACount","features":[560]},{"name":"WHvX64RegisterApicBase","features":[560]},{"name":"WHvX64RegisterApicCurrentCount","features":[560]},{"name":"WHvX64RegisterApicDivide","features":[560]},{"name":"WHvX64RegisterApicEoi","features":[560]},{"name":"WHvX64RegisterApicEse","features":[560]},{"name":"WHvX64RegisterApicIcr","features":[560]},{"name":"WHvX64RegisterApicId","features":[560]},{"name":"WHvX64RegisterApicInitCount","features":[560]},{"name":"WHvX64RegisterApicIrr0","features":[560]},{"name":"WHvX64RegisterApicIrr1","features":[560]},{"name":"WHvX64RegisterApicIrr2","features":[560]},{"name":"WHvX64RegisterApicIrr3","features":[560]},{"name":"WHvX64RegisterApicIrr4","features":[560]},{"name":"WHvX64RegisterApicIrr5","features":[560]},{"name":"WHvX64RegisterApicIrr6","features":[560]},{"name":"WHvX64RegisterApicIrr7","features":[560]},{"name":"WHvX64RegisterApicIsr0","features":[560]},{"name":"WHvX64RegisterApicIsr1","features":[560]},{"name":"WHvX64RegisterApicIsr2","features":[560]},{"name":"WHvX64RegisterApicIsr3","features":[560]},{"name":"WHvX64RegisterApicIsr4","features":[560]},{"name":"WHvX64RegisterApicIsr5","features":[560]},{"name":"WHvX64RegisterApicIsr6","features":[560]},{"name":"WHvX64RegisterApicIsr7","features":[560]},{"name":"WHvX64RegisterApicLdr","features":[560]},{"name":"WHvX64RegisterApicLvtError","features":[560]},{"name":"WHvX64RegisterApicLvtLint0","features":[560]},{"name":"WHvX64RegisterApicLvtLint1","features":[560]},{"name":"WHvX64RegisterApicLvtPerfmon","features":[560]},{"name":"WHvX64RegisterApicLvtThermal","features":[560]},{"name":"WHvX64RegisterApicLvtTimer","features":[560]},{"name":"WHvX64RegisterApicPpr","features":[560]},{"name":"WHvX64RegisterApicSelfIpi","features":[560]},{"name":"WHvX64RegisterApicSpurious","features":[560]},{"name":"WHvX64RegisterApicTmr0","features":[560]},{"name":"WHvX64RegisterApicTmr1","features":[560]},{"name":"WHvX64RegisterApicTmr2","features":[560]},{"name":"WHvX64RegisterApicTmr3","features":[560]},{"name":"WHvX64RegisterApicTmr4","features":[560]},{"name":"WHvX64RegisterApicTmr5","features":[560]},{"name":"WHvX64RegisterApicTmr6","features":[560]},{"name":"WHvX64RegisterApicTmr7","features":[560]},{"name":"WHvX64RegisterApicTpr","features":[560]},{"name":"WHvX64RegisterApicVersion","features":[560]},{"name":"WHvX64RegisterBndcfgs","features":[560]},{"name":"WHvX64RegisterCr0","features":[560]},{"name":"WHvX64RegisterCr2","features":[560]},{"name":"WHvX64RegisterCr3","features":[560]},{"name":"WHvX64RegisterCr4","features":[560]},{"name":"WHvX64RegisterCr8","features":[560]},{"name":"WHvX64RegisterCs","features":[560]},{"name":"WHvX64RegisterCstar","features":[560]},{"name":"WHvX64RegisterDeliverabilityNotifications","features":[560]},{"name":"WHvX64RegisterDr0","features":[560]},{"name":"WHvX64RegisterDr1","features":[560]},{"name":"WHvX64RegisterDr2","features":[560]},{"name":"WHvX64RegisterDr3","features":[560]},{"name":"WHvX64RegisterDr6","features":[560]},{"name":"WHvX64RegisterDr7","features":[560]},{"name":"WHvX64RegisterDs","features":[560]},{"name":"WHvX64RegisterEfer","features":[560]},{"name":"WHvX64RegisterEs","features":[560]},{"name":"WHvX64RegisterFpControlStatus","features":[560]},{"name":"WHvX64RegisterFpMmx0","features":[560]},{"name":"WHvX64RegisterFpMmx1","features":[560]},{"name":"WHvX64RegisterFpMmx2","features":[560]},{"name":"WHvX64RegisterFpMmx3","features":[560]},{"name":"WHvX64RegisterFpMmx4","features":[560]},{"name":"WHvX64RegisterFpMmx5","features":[560]},{"name":"WHvX64RegisterFpMmx6","features":[560]},{"name":"WHvX64RegisterFpMmx7","features":[560]},{"name":"WHvX64RegisterFs","features":[560]},{"name":"WHvX64RegisterGdtr","features":[560]},{"name":"WHvX64RegisterGs","features":[560]},{"name":"WHvX64RegisterHypercall","features":[560]},{"name":"WHvX64RegisterIdtr","features":[560]},{"name":"WHvX64RegisterInitialApicId","features":[560]},{"name":"WHvX64RegisterInterruptSspTableAddr","features":[560]},{"name":"WHvX64RegisterKernelGsBase","features":[560]},{"name":"WHvX64RegisterLdtr","features":[560]},{"name":"WHvX64RegisterLstar","features":[560]},{"name":"WHvX64RegisterMCount","features":[560]},{"name":"WHvX64RegisterMsrMtrrCap","features":[560]},{"name":"WHvX64RegisterMsrMtrrDefType","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix16k80000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix16kA0000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kC0000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kC8000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kD0000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kD8000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kE0000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kE8000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kF0000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix4kF8000","features":[560]},{"name":"WHvX64RegisterMsrMtrrFix64k00000","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase0","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase1","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase2","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase3","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase4","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase5","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase6","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase7","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase8","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBase9","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBaseA","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBaseB","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBaseC","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBaseD","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBaseE","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysBaseF","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask0","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask1","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask2","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask3","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask4","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask5","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask6","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask7","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask8","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMask9","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMaskA","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMaskB","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMaskC","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMaskD","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMaskE","features":[560]},{"name":"WHvX64RegisterMsrMtrrPhysMaskF","features":[560]},{"name":"WHvX64RegisterPat","features":[560]},{"name":"WHvX64RegisterPendingDebugException","features":[560]},{"name":"WHvX64RegisterPl0Ssp","features":[560]},{"name":"WHvX64RegisterPl1Ssp","features":[560]},{"name":"WHvX64RegisterPl2Ssp","features":[560]},{"name":"WHvX64RegisterPl3Ssp","features":[560]},{"name":"WHvX64RegisterPredCmd","features":[560]},{"name":"WHvX64RegisterR10","features":[560]},{"name":"WHvX64RegisterR11","features":[560]},{"name":"WHvX64RegisterR12","features":[560]},{"name":"WHvX64RegisterR13","features":[560]},{"name":"WHvX64RegisterR14","features":[560]},{"name":"WHvX64RegisterR15","features":[560]},{"name":"WHvX64RegisterR8","features":[560]},{"name":"WHvX64RegisterR9","features":[560]},{"name":"WHvX64RegisterRax","features":[560]},{"name":"WHvX64RegisterRbp","features":[560]},{"name":"WHvX64RegisterRbx","features":[560]},{"name":"WHvX64RegisterRcx","features":[560]},{"name":"WHvX64RegisterRdi","features":[560]},{"name":"WHvX64RegisterRdx","features":[560]},{"name":"WHvX64RegisterRflags","features":[560]},{"name":"WHvX64RegisterRip","features":[560]},{"name":"WHvX64RegisterRsi","features":[560]},{"name":"WHvX64RegisterRsp","features":[560]},{"name":"WHvX64RegisterSCet","features":[560]},{"name":"WHvX64RegisterSfmask","features":[560]},{"name":"WHvX64RegisterSpecCtrl","features":[560]},{"name":"WHvX64RegisterSs","features":[560]},{"name":"WHvX64RegisterSsp","features":[560]},{"name":"WHvX64RegisterStar","features":[560]},{"name":"WHvX64RegisterSysenterCs","features":[560]},{"name":"WHvX64RegisterSysenterEip","features":[560]},{"name":"WHvX64RegisterSysenterEsp","features":[560]},{"name":"WHvX64RegisterTr","features":[560]},{"name":"WHvX64RegisterTsc","features":[560]},{"name":"WHvX64RegisterTscAdjust","features":[560]},{"name":"WHvX64RegisterTscAux","features":[560]},{"name":"WHvX64RegisterTscDeadline","features":[560]},{"name":"WHvX64RegisterTscVirtualOffset","features":[560]},{"name":"WHvX64RegisterTsxCtrl","features":[560]},{"name":"WHvX64RegisterUCet","features":[560]},{"name":"WHvX64RegisterUmwaitControl","features":[560]},{"name":"WHvX64RegisterVirtualCr0","features":[560]},{"name":"WHvX64RegisterVirtualCr3","features":[560]},{"name":"WHvX64RegisterVirtualCr4","features":[560]},{"name":"WHvX64RegisterVirtualCr8","features":[560]},{"name":"WHvX64RegisterXCr0","features":[560]},{"name":"WHvX64RegisterXfd","features":[560]},{"name":"WHvX64RegisterXfdErr","features":[560]},{"name":"WHvX64RegisterXmm0","features":[560]},{"name":"WHvX64RegisterXmm1","features":[560]},{"name":"WHvX64RegisterXmm10","features":[560]},{"name":"WHvX64RegisterXmm11","features":[560]},{"name":"WHvX64RegisterXmm12","features":[560]},{"name":"WHvX64RegisterXmm13","features":[560]},{"name":"WHvX64RegisterXmm14","features":[560]},{"name":"WHvX64RegisterXmm15","features":[560]},{"name":"WHvX64RegisterXmm2","features":[560]},{"name":"WHvX64RegisterXmm3","features":[560]},{"name":"WHvX64RegisterXmm4","features":[560]},{"name":"WHvX64RegisterXmm5","features":[560]},{"name":"WHvX64RegisterXmm6","features":[560]},{"name":"WHvX64RegisterXmm7","features":[560]},{"name":"WHvX64RegisterXmm8","features":[560]},{"name":"WHvX64RegisterXmm9","features":[560]},{"name":"WHvX64RegisterXmmControlStatus","features":[560]},{"name":"WHvX64RegisterXss","features":[560]},{"name":"X64_RegisterCr0","features":[560]},{"name":"X64_RegisterCr2","features":[560]},{"name":"X64_RegisterCr3","features":[560]},{"name":"X64_RegisterCr4","features":[560]},{"name":"X64_RegisterCr8","features":[560]},{"name":"X64_RegisterCs","features":[560]},{"name":"X64_RegisterDr0","features":[560]},{"name":"X64_RegisterDr1","features":[560]},{"name":"X64_RegisterDr2","features":[560]},{"name":"X64_RegisterDr3","features":[560]},{"name":"X64_RegisterDr6","features":[560]},{"name":"X64_RegisterDr7","features":[560]},{"name":"X64_RegisterDs","features":[560]},{"name":"X64_RegisterEfer","features":[560]},{"name":"X64_RegisterEs","features":[560]},{"name":"X64_RegisterFpControlStatus","features":[560]},{"name":"X64_RegisterFpMmx0","features":[560]},{"name":"X64_RegisterFpMmx1","features":[560]},{"name":"X64_RegisterFpMmx2","features":[560]},{"name":"X64_RegisterFpMmx3","features":[560]},{"name":"X64_RegisterFpMmx4","features":[560]},{"name":"X64_RegisterFpMmx5","features":[560]},{"name":"X64_RegisterFpMmx6","features":[560]},{"name":"X64_RegisterFpMmx7","features":[560]},{"name":"X64_RegisterFs","features":[560]},{"name":"X64_RegisterGdtr","features":[560]},{"name":"X64_RegisterGs","features":[560]},{"name":"X64_RegisterIdtr","features":[560]},{"name":"X64_RegisterLdtr","features":[560]},{"name":"X64_RegisterMax","features":[560]},{"name":"X64_RegisterR10","features":[560]},{"name":"X64_RegisterR11","features":[560]},{"name":"X64_RegisterR12","features":[560]},{"name":"X64_RegisterR13","features":[560]},{"name":"X64_RegisterR14","features":[560]},{"name":"X64_RegisterR15","features":[560]},{"name":"X64_RegisterR8","features":[560]},{"name":"X64_RegisterR9","features":[560]},{"name":"X64_RegisterRFlags","features":[560]},{"name":"X64_RegisterRax","features":[560]},{"name":"X64_RegisterRbp","features":[560]},{"name":"X64_RegisterRbx","features":[560]},{"name":"X64_RegisterRcx","features":[560]},{"name":"X64_RegisterRdi","features":[560]},{"name":"X64_RegisterRdx","features":[560]},{"name":"X64_RegisterRip","features":[560]},{"name":"X64_RegisterRsi","features":[560]},{"name":"X64_RegisterRsp","features":[560]},{"name":"X64_RegisterSs","features":[560]},{"name":"X64_RegisterTr","features":[560]},{"name":"X64_RegisterXmm0","features":[560]},{"name":"X64_RegisterXmm1","features":[560]},{"name":"X64_RegisterXmm10","features":[560]},{"name":"X64_RegisterXmm11","features":[560]},{"name":"X64_RegisterXmm12","features":[560]},{"name":"X64_RegisterXmm13","features":[560]},{"name":"X64_RegisterXmm14","features":[560]},{"name":"X64_RegisterXmm15","features":[560]},{"name":"X64_RegisterXmm2","features":[560]},{"name":"X64_RegisterXmm3","features":[560]},{"name":"X64_RegisterXmm4","features":[560]},{"name":"X64_RegisterXmm5","features":[560]},{"name":"X64_RegisterXmm6","features":[560]},{"name":"X64_RegisterXmm7","features":[560]},{"name":"X64_RegisterXmm8","features":[560]},{"name":"X64_RegisterXmm9","features":[560]},{"name":"X64_RegisterXmmControlStatus","features":[560]}],"573":[{"name":"BindIoCompletionCallback","features":[305,310]},{"name":"CancelIo","features":[305,310]},{"name":"CancelIoEx","features":[305,310]},{"name":"CancelSynchronousIo","features":[305,310]},{"name":"CreateIoCompletionPort","features":[305,310]},{"name":"DeviceIoControl","features":[305,310]},{"name":"GetOverlappedResult","features":[305,310]},{"name":"GetOverlappedResultEx","features":[305,310]},{"name":"GetQueuedCompletionStatus","features":[305,310]},{"name":"GetQueuedCompletionStatusEx","features":[305,310]},{"name":"IO_STATUS_BLOCK","features":[305,310]},{"name":"LPOVERLAPPED_COMPLETION_ROUTINE","features":[305,310]},{"name":"OVERLAPPED","features":[305,310]},{"name":"OVERLAPPED_ENTRY","features":[305,310]},{"name":"PIO_APC_ROUTINE","features":[305,310]},{"name":"PostQueuedCompletionStatus","features":[305,310]}],"574":[{"name":"ADMINDATA_MAX_NAME_LEN","features":[561]},{"name":"ALL_METADATA","features":[561]},{"name":"APPCTR_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"APPCTR_MD_ID_END_RESERVED","features":[561]},{"name":"APPSTATUS_NOTDEFINED","features":[561]},{"name":"APPSTATUS_RUNNING","features":[561]},{"name":"APPSTATUS_STOPPED","features":[561]},{"name":"ASP_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"ASP_MD_ID_END_RESERVED","features":[561]},{"name":"ASP_MD_SERVER_BASE","features":[561]},{"name":"ASP_MD_UT_APP","features":[561]},{"name":"AsyncIFtpAuthenticationProvider","features":[561]},{"name":"AsyncIFtpAuthorizationProvider","features":[561]},{"name":"AsyncIFtpHomeDirectoryProvider","features":[561]},{"name":"AsyncIFtpLogProvider","features":[561]},{"name":"AsyncIFtpPostprocessProvider","features":[561]},{"name":"AsyncIFtpPreprocessProvider","features":[561]},{"name":"AsyncIFtpRoleProvider","features":[561]},{"name":"AsyncIMSAdminBaseSinkW","features":[561]},{"name":"BINARY_METADATA","features":[561]},{"name":"CERT_CONTEXT_EX","features":[305,389,561]},{"name":"CLSID_IImgCtx","features":[561]},{"name":"CLSID_IisServiceControl","features":[561]},{"name":"CLSID_MSAdminBase_W","features":[561]},{"name":"CLSID_Request","features":[561]},{"name":"CLSID_Response","features":[561]},{"name":"CLSID_ScriptingContext","features":[561]},{"name":"CLSID_Server","features":[561]},{"name":"CLSID_Session","features":[561]},{"name":"CLSID_WamAdmin","features":[561]},{"name":"CONFIGURATION_ENTRY","features":[561]},{"name":"DISPID_HTTPREQUEST_ABORT","features":[561]},{"name":"DISPID_HTTPREQUEST_BASE","features":[561]},{"name":"DISPID_HTTPREQUEST_GETALLRESPONSEHEADERS","features":[561]},{"name":"DISPID_HTTPREQUEST_GETRESPONSEHEADER","features":[561]},{"name":"DISPID_HTTPREQUEST_OPEN","features":[561]},{"name":"DISPID_HTTPREQUEST_OPTION","features":[561]},{"name":"DISPID_HTTPREQUEST_RESPONSEBODY","features":[561]},{"name":"DISPID_HTTPREQUEST_RESPONSESTREAM","features":[561]},{"name":"DISPID_HTTPREQUEST_RESPONSETEXT","features":[561]},{"name":"DISPID_HTTPREQUEST_SEND","features":[561]},{"name":"DISPID_HTTPREQUEST_SETAUTOLOGONPOLICY","features":[561]},{"name":"DISPID_HTTPREQUEST_SETCLIENTCERTIFICATE","features":[561]},{"name":"DISPID_HTTPREQUEST_SETCREDENTIALS","features":[561]},{"name":"DISPID_HTTPREQUEST_SETPROXY","features":[561]},{"name":"DISPID_HTTPREQUEST_SETREQUESTHEADER","features":[561]},{"name":"DISPID_HTTPREQUEST_SETTIMEOUTS","features":[561]},{"name":"DISPID_HTTPREQUEST_STATUS","features":[561]},{"name":"DISPID_HTTPREQUEST_STATUSTEXT","features":[561]},{"name":"DISPID_HTTPREQUEST_WAITFORRESPONSE","features":[561]},{"name":"DWN_COLORMODE","features":[561]},{"name":"DWN_DOWNLOADONLY","features":[561]},{"name":"DWN_FORCEDITHER","features":[561]},{"name":"DWN_MIRRORIMAGE","features":[561]},{"name":"DWN_RAWIMAGE","features":[561]},{"name":"DWORD_METADATA","features":[561]},{"name":"EXPANDSZ_METADATA","features":[561]},{"name":"EXTENSION_CONTROL_BLOCK","features":[305,561]},{"name":"FP_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"FP_MD_ID_END_RESERVED","features":[561]},{"name":"FTP_ACCESS","features":[561]},{"name":"FTP_ACCESS_NONE","features":[561]},{"name":"FTP_ACCESS_READ","features":[561]},{"name":"FTP_ACCESS_READ_WRITE","features":[561]},{"name":"FTP_ACCESS_WRITE","features":[561]},{"name":"FTP_PROCESS_CLOSE_SESSION","features":[561]},{"name":"FTP_PROCESS_CONTINUE","features":[561]},{"name":"FTP_PROCESS_REJECT_COMMAND","features":[561]},{"name":"FTP_PROCESS_STATUS","features":[561]},{"name":"FTP_PROCESS_TERMINATE_SESSION","features":[561]},{"name":"FtpProvider","features":[561]},{"name":"GUID_IIS_ALL_TRACE_PROVIDERS","features":[561]},{"name":"GUID_IIS_ASPNET_TRACE_PROVIDER","features":[561]},{"name":"GUID_IIS_ASP_TRACE_TRACE_PROVIDER","features":[561]},{"name":"GUID_IIS_ISAPI_TRACE_PROVIDER","features":[561]},{"name":"GUID_IIS_WWW_GLOBAL_TRACE_PROVIDER","features":[561]},{"name":"GUID_IIS_WWW_SERVER_TRACE_PROVIDER","features":[561]},{"name":"GUID_IIS_WWW_SERVER_V2_TRACE_PROVIDER","features":[561]},{"name":"GetExtensionVersion","features":[305,561]},{"name":"GetFilterVersion","features":[305,561]},{"name":"HCONN","features":[561]},{"name":"HSE_APPEND_LOG_PARAMETER","features":[561]},{"name":"HSE_APP_FLAG_IN_PROCESS","features":[561]},{"name":"HSE_APP_FLAG_ISOLATED_OOP","features":[561]},{"name":"HSE_APP_FLAG_POOLED_OOP","features":[561]},{"name":"HSE_CUSTOM_ERROR_INFO","features":[305,561]},{"name":"HSE_EXEC_UNICODE_URL_INFO","features":[305,561]},{"name":"HSE_EXEC_UNICODE_URL_USER_INFO","features":[305,561]},{"name":"HSE_EXEC_URL_DISABLE_CUSTOM_ERROR","features":[561]},{"name":"HSE_EXEC_URL_ENTITY_INFO","features":[561]},{"name":"HSE_EXEC_URL_HTTP_CACHE_ELIGIBLE","features":[561]},{"name":"HSE_EXEC_URL_IGNORE_CURRENT_INTERCEPTOR","features":[561]},{"name":"HSE_EXEC_URL_IGNORE_VALIDATION_AND_RANGE","features":[561]},{"name":"HSE_EXEC_URL_INFO","features":[305,561]},{"name":"HSE_EXEC_URL_NO_HEADERS","features":[561]},{"name":"HSE_EXEC_URL_SSI_CMD","features":[561]},{"name":"HSE_EXEC_URL_STATUS","features":[561]},{"name":"HSE_EXEC_URL_USER_INFO","features":[305,561]},{"name":"HSE_IO_ASYNC","features":[561]},{"name":"HSE_IO_CACHE_RESPONSE","features":[561]},{"name":"HSE_IO_DISCONNECT_AFTER_SEND","features":[561]},{"name":"HSE_IO_FINAL_SEND","features":[561]},{"name":"HSE_IO_NODELAY","features":[561]},{"name":"HSE_IO_SEND_HEADERS","features":[561]},{"name":"HSE_IO_SYNC","features":[561]},{"name":"HSE_IO_TRY_SKIP_CUSTOM_ERRORS","features":[561]},{"name":"HSE_LOG_BUFFER_LEN","features":[561]},{"name":"HSE_MAX_EXT_DLL_NAME_LEN","features":[561]},{"name":"HSE_REQ_ABORTIVE_CLOSE","features":[561]},{"name":"HSE_REQ_ASYNC_READ_CLIENT","features":[561]},{"name":"HSE_REQ_BASE","features":[561]},{"name":"HSE_REQ_CANCEL_IO","features":[561]},{"name":"HSE_REQ_CLOSE_CONNECTION","features":[561]},{"name":"HSE_REQ_DONE_WITH_SESSION","features":[561]},{"name":"HSE_REQ_END_RESERVED","features":[561]},{"name":"HSE_REQ_EXEC_UNICODE_URL","features":[561]},{"name":"HSE_REQ_EXEC_URL","features":[561]},{"name":"HSE_REQ_GET_ANONYMOUS_TOKEN","features":[561]},{"name":"HSE_REQ_GET_CACHE_INVALIDATION_CALLBACK","features":[561]},{"name":"HSE_REQ_GET_CERT_INFO_EX","features":[561]},{"name":"HSE_REQ_GET_CHANNEL_BINDING_TOKEN","features":[561]},{"name":"HSE_REQ_GET_CONFIG_OBJECT","features":[561]},{"name":"HSE_REQ_GET_EXEC_URL_STATUS","features":[561]},{"name":"HSE_REQ_GET_IMPERSONATION_TOKEN","features":[561]},{"name":"HSE_REQ_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[561]},{"name":"HSE_REQ_GET_SSPI_INFO","features":[561]},{"name":"HSE_REQ_GET_TRACE_INFO","features":[561]},{"name":"HSE_REQ_GET_TRACE_INFO_EX","features":[561]},{"name":"HSE_REQ_GET_UNICODE_ANONYMOUS_TOKEN","features":[561]},{"name":"HSE_REQ_GET_WORKER_PROCESS_SETTINGS","features":[561]},{"name":"HSE_REQ_IO_COMPLETION","features":[561]},{"name":"HSE_REQ_IS_CONNECTED","features":[561]},{"name":"HSE_REQ_IS_IN_PROCESS","features":[561]},{"name":"HSE_REQ_IS_KEEP_CONN","features":[561]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH","features":[561]},{"name":"HSE_REQ_MAP_UNICODE_URL_TO_PATH_EX","features":[561]},{"name":"HSE_REQ_MAP_URL_TO_PATH","features":[561]},{"name":"HSE_REQ_MAP_URL_TO_PATH_EX","features":[561]},{"name":"HSE_REQ_NORMALIZE_URL","features":[561]},{"name":"HSE_REQ_RAISE_TRACE_EVENT","features":[561]},{"name":"HSE_REQ_REFRESH_ISAPI_ACL","features":[561]},{"name":"HSE_REQ_REPORT_UNHEALTHY","features":[561]},{"name":"HSE_REQ_SEND_CUSTOM_ERROR","features":[561]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER","features":[561]},{"name":"HSE_REQ_SEND_RESPONSE_HEADER_EX","features":[561]},{"name":"HSE_REQ_SEND_URL","features":[561]},{"name":"HSE_REQ_SEND_URL_REDIRECT_RESP","features":[561]},{"name":"HSE_REQ_SET_FLUSH_FLAG","features":[561]},{"name":"HSE_REQ_TRANSMIT_FILE","features":[561]},{"name":"HSE_REQ_VECTOR_SEND","features":[561]},{"name":"HSE_RESPONSE_VECTOR","features":[561]},{"name":"HSE_SEND_HEADER_EX_INFO","features":[305,561]},{"name":"HSE_STATUS_ERROR","features":[561]},{"name":"HSE_STATUS_PENDING","features":[561]},{"name":"HSE_STATUS_SUCCESS","features":[561]},{"name":"HSE_STATUS_SUCCESS_AND_KEEP_CONN","features":[561]},{"name":"HSE_TERM_ADVISORY_UNLOAD","features":[561]},{"name":"HSE_TERM_MUST_UNLOAD","features":[561]},{"name":"HSE_TF_INFO","features":[305,561]},{"name":"HSE_TRACE_INFO","features":[305,561]},{"name":"HSE_UNICODE_URL_MAPEX_INFO","features":[561]},{"name":"HSE_URL_FLAGS_DONT_CACHE","features":[561]},{"name":"HSE_URL_FLAGS_EXECUTE","features":[561]},{"name":"HSE_URL_FLAGS_MAP_CERT","features":[561]},{"name":"HSE_URL_FLAGS_MASK","features":[561]},{"name":"HSE_URL_FLAGS_NEGO_CERT","features":[561]},{"name":"HSE_URL_FLAGS_READ","features":[561]},{"name":"HSE_URL_FLAGS_REQUIRE_CERT","features":[561]},{"name":"HSE_URL_FLAGS_SCRIPT","features":[561]},{"name":"HSE_URL_FLAGS_SSL","features":[561]},{"name":"HSE_URL_FLAGS_SSL128","features":[561]},{"name":"HSE_URL_FLAGS_WRITE","features":[561]},{"name":"HSE_URL_MAPEX_INFO","features":[561]},{"name":"HSE_VECTOR_ELEMENT","features":[561]},{"name":"HSE_VECTOR_ELEMENT_TYPE_FILE_HANDLE","features":[561]},{"name":"HSE_VECTOR_ELEMENT_TYPE_MEMORY_BUFFER","features":[561]},{"name":"HSE_VERSION_INFO","features":[561]},{"name":"HSE_VERSION_MAJOR","features":[561]},{"name":"HSE_VERSION_MINOR","features":[561]},{"name":"HTTP_FILTER_ACCESS_DENIED","features":[561]},{"name":"HTTP_FILTER_AUTHENT","features":[561]},{"name":"HTTP_FILTER_AUTH_COMPLETE_INFO","features":[305,561]},{"name":"HTTP_FILTER_CONTEXT","features":[305,561]},{"name":"HTTP_FILTER_LOG","features":[561]},{"name":"HTTP_FILTER_PREPROC_HEADERS","features":[561]},{"name":"HTTP_FILTER_RAW_DATA","features":[561]},{"name":"HTTP_FILTER_URL_MAP","features":[561]},{"name":"HTTP_FILTER_URL_MAP_EX","features":[561]},{"name":"HTTP_FILTER_VERSION","features":[561]},{"name":"HTTP_TRACE_CONFIGURATION","features":[305,561]},{"name":"HTTP_TRACE_EVENT","features":[561]},{"name":"HTTP_TRACE_EVENT_FLAG_STATIC_DESCRIPTIVE_FIELDS","features":[561]},{"name":"HTTP_TRACE_EVENT_ITEM","features":[561]},{"name":"HTTP_TRACE_LEVEL_END","features":[561]},{"name":"HTTP_TRACE_LEVEL_START","features":[561]},{"name":"HTTP_TRACE_TYPE","features":[561]},{"name":"HTTP_TRACE_TYPE_BOOL","features":[561]},{"name":"HTTP_TRACE_TYPE_BYTE","features":[561]},{"name":"HTTP_TRACE_TYPE_CHAR","features":[561]},{"name":"HTTP_TRACE_TYPE_LONG","features":[561]},{"name":"HTTP_TRACE_TYPE_LONGLONG","features":[561]},{"name":"HTTP_TRACE_TYPE_LPCGUID","features":[561]},{"name":"HTTP_TRACE_TYPE_LPCSTR","features":[561]},{"name":"HTTP_TRACE_TYPE_LPCWSTR","features":[561]},{"name":"HTTP_TRACE_TYPE_SHORT","features":[561]},{"name":"HTTP_TRACE_TYPE_ULONG","features":[561]},{"name":"HTTP_TRACE_TYPE_ULONGLONG","features":[561]},{"name":"HTTP_TRACE_TYPE_USHORT","features":[561]},{"name":"HttpExtensionProc","features":[305,561]},{"name":"HttpFilterProc","features":[305,561]},{"name":"IADMEXT","features":[561]},{"name":"IFtpAuthenticationProvider","features":[561]},{"name":"IFtpAuthorizationProvider","features":[561]},{"name":"IFtpHomeDirectoryProvider","features":[561]},{"name":"IFtpLogProvider","features":[561]},{"name":"IFtpPostprocessProvider","features":[561]},{"name":"IFtpPreprocessProvider","features":[561]},{"name":"IFtpProviderConstruct","features":[561]},{"name":"IFtpRoleProvider","features":[561]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEY","features":[561]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYA","features":[561]},{"name":"IISADMIN_EXTENSIONS_CLSID_MD_KEYW","features":[561]},{"name":"IISADMIN_EXTENSIONS_REG_KEY","features":[561]},{"name":"IISADMIN_EXTENSIONS_REG_KEYA","features":[561]},{"name":"IISADMIN_EXTENSIONS_REG_KEYW","features":[561]},{"name":"IIS_CLASS_CERTMAPPER","features":[561]},{"name":"IIS_CLASS_CERTMAPPER_W","features":[561]},{"name":"IIS_CLASS_COMPRESS_SCHEME","features":[561]},{"name":"IIS_CLASS_COMPRESS_SCHEMES","features":[561]},{"name":"IIS_CLASS_COMPRESS_SCHEMES_W","features":[561]},{"name":"IIS_CLASS_COMPRESS_SCHEME_W","features":[561]},{"name":"IIS_CLASS_COMPUTER","features":[561]},{"name":"IIS_CLASS_COMPUTER_W","features":[561]},{"name":"IIS_CLASS_FILTER","features":[561]},{"name":"IIS_CLASS_FILTERS","features":[561]},{"name":"IIS_CLASS_FILTERS_W","features":[561]},{"name":"IIS_CLASS_FILTER_W","features":[561]},{"name":"IIS_CLASS_FTP_INFO","features":[561]},{"name":"IIS_CLASS_FTP_INFO_W","features":[561]},{"name":"IIS_CLASS_FTP_SERVER","features":[561]},{"name":"IIS_CLASS_FTP_SERVER_W","features":[561]},{"name":"IIS_CLASS_FTP_SERVICE","features":[561]},{"name":"IIS_CLASS_FTP_SERVICE_W","features":[561]},{"name":"IIS_CLASS_FTP_VDIR","features":[561]},{"name":"IIS_CLASS_FTP_VDIR_W","features":[561]},{"name":"IIS_CLASS_LOG_MODULE","features":[561]},{"name":"IIS_CLASS_LOG_MODULES","features":[561]},{"name":"IIS_CLASS_LOG_MODULES_W","features":[561]},{"name":"IIS_CLASS_LOG_MODULE_W","features":[561]},{"name":"IIS_CLASS_MIMEMAP","features":[561]},{"name":"IIS_CLASS_MIMEMAP_W","features":[561]},{"name":"IIS_CLASS_WEB_DIR","features":[561]},{"name":"IIS_CLASS_WEB_DIR_W","features":[561]},{"name":"IIS_CLASS_WEB_FILE","features":[561]},{"name":"IIS_CLASS_WEB_FILE_W","features":[561]},{"name":"IIS_CLASS_WEB_INFO","features":[561]},{"name":"IIS_CLASS_WEB_INFO_W","features":[561]},{"name":"IIS_CLASS_WEB_SERVER","features":[561]},{"name":"IIS_CLASS_WEB_SERVER_W","features":[561]},{"name":"IIS_CLASS_WEB_SERVICE","features":[561]},{"name":"IIS_CLASS_WEB_SERVICE_W","features":[561]},{"name":"IIS_CLASS_WEB_VDIR","features":[561]},{"name":"IIS_CLASS_WEB_VDIR_W","features":[561]},{"name":"IIS_MD_ADSI_METAID_BEGIN","features":[561]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_A","features":[561]},{"name":"IIS_MD_ADSI_SCHEMA_PATH_W","features":[561]},{"name":"IIS_MD_APPPOOL_BASE","features":[561]},{"name":"IIS_MD_APP_BASE","features":[561]},{"name":"IIS_MD_FILE_PROP_BASE","features":[561]},{"name":"IIS_MD_FTP_BASE","features":[561]},{"name":"IIS_MD_GLOBAL_BASE","features":[561]},{"name":"IIS_MD_HTTP_BASE","features":[561]},{"name":"IIS_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"IIS_MD_ID_END_RESERVED","features":[561]},{"name":"IIS_MD_INSTANCE_ROOT","features":[561]},{"name":"IIS_MD_ISAPI_FILTERS","features":[561]},{"name":"IIS_MD_LOCAL_MACHINE_PATH","features":[561]},{"name":"IIS_MD_LOGCUSTOM_BASE","features":[561]},{"name":"IIS_MD_LOGCUSTOM_LAST","features":[561]},{"name":"IIS_MD_LOG_BASE","features":[561]},{"name":"IIS_MD_LOG_LAST","features":[561]},{"name":"IIS_MD_SERVER_BASE","features":[561]},{"name":"IIS_MD_SSL_BASE","features":[561]},{"name":"IIS_MD_SVC_INFO_PATH","features":[561]},{"name":"IIS_MD_UT_END_RESERVED","features":[561]},{"name":"IIS_MD_UT_FILE","features":[561]},{"name":"IIS_MD_UT_SERVER","features":[561]},{"name":"IIS_MD_UT_WAM","features":[561]},{"name":"IIS_MD_VR_BASE","features":[561]},{"name":"IIS_WEBSOCKET","features":[561]},{"name":"IIS_WEBSOCKET_SERVER_VARIABLE","features":[561]},{"name":"IMAP_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"IMAP_MD_ID_END_RESERVED","features":[561]},{"name":"IMGANIM_ANIMATED","features":[561]},{"name":"IMGANIM_MASK","features":[561]},{"name":"IMGBITS_MASK","features":[561]},{"name":"IMGBITS_NONE","features":[561]},{"name":"IMGBITS_PARTIAL","features":[561]},{"name":"IMGBITS_TOTAL","features":[561]},{"name":"IMGCHG_ANIMATE","features":[561]},{"name":"IMGCHG_COMPLETE","features":[561]},{"name":"IMGCHG_MASK","features":[561]},{"name":"IMGCHG_SIZE","features":[561]},{"name":"IMGCHG_VIEW","features":[561]},{"name":"IMGLOAD_COMPLETE","features":[561]},{"name":"IMGLOAD_ERROR","features":[561]},{"name":"IMGLOAD_LOADING","features":[561]},{"name":"IMGLOAD_MASK","features":[561]},{"name":"IMGLOAD_NOTLOADED","features":[561]},{"name":"IMGLOAD_STOPPED","features":[561]},{"name":"IMGTRANS_MASK","features":[561]},{"name":"IMGTRANS_OPAQUE","features":[561]},{"name":"IMSAdminBase2W","features":[561]},{"name":"IMSAdminBase3W","features":[561]},{"name":"IMSAdminBaseSinkW","features":[561]},{"name":"IMSAdminBaseW","features":[561]},{"name":"IMSImpExpHelpW","features":[561]},{"name":"INVALID_END_METADATA","features":[561]},{"name":"LIBID_ASPTypeLibrary","features":[561]},{"name":"LIBID_IISRSTALib","features":[561]},{"name":"LIBID_WAMREGLib","features":[561]},{"name":"LOGGING_PARAMETERS","features":[561]},{"name":"MB_DONT_IMPERSONATE","features":[561]},{"name":"MD_ACCESS_EXECUTE","features":[561]},{"name":"MD_ACCESS_MAP_CERT","features":[561]},{"name":"MD_ACCESS_MASK","features":[561]},{"name":"MD_ACCESS_NEGO_CERT","features":[561]},{"name":"MD_ACCESS_NO_PHYSICAL_DIR","features":[561]},{"name":"MD_ACCESS_NO_REMOTE_EXECUTE","features":[561]},{"name":"MD_ACCESS_NO_REMOTE_READ","features":[561]},{"name":"MD_ACCESS_NO_REMOTE_SCRIPT","features":[561]},{"name":"MD_ACCESS_NO_REMOTE_WRITE","features":[561]},{"name":"MD_ACCESS_PERM","features":[561]},{"name":"MD_ACCESS_READ","features":[561]},{"name":"MD_ACCESS_REQUIRE_CERT","features":[561]},{"name":"MD_ACCESS_SCRIPT","features":[561]},{"name":"MD_ACCESS_SOURCE","features":[561]},{"name":"MD_ACCESS_SSL","features":[561]},{"name":"MD_ACCESS_SSL128","features":[561]},{"name":"MD_ACCESS_WRITE","features":[561]},{"name":"MD_ACR_ENUM_KEYS","features":[561]},{"name":"MD_ACR_READ","features":[561]},{"name":"MD_ACR_RESTRICTED_WRITE","features":[561]},{"name":"MD_ACR_UNSECURE_PROPS_READ","features":[561]},{"name":"MD_ACR_WRITE","features":[561]},{"name":"MD_ACR_WRITE_DAC","features":[561]},{"name":"MD_ADMIN_ACL","features":[561]},{"name":"MD_ADMIN_INSTANCE","features":[561]},{"name":"MD_ADV_CACHE_TTL","features":[561]},{"name":"MD_ADV_NOTIFY_PWD_EXP_IN_DAYS","features":[561]},{"name":"MD_AD_CONNECTIONS_PASSWORD","features":[561]},{"name":"MD_AD_CONNECTIONS_USERNAME","features":[561]},{"name":"MD_ALLOW_ANONYMOUS","features":[561]},{"name":"MD_ALLOW_KEEPALIVES","features":[561]},{"name":"MD_ALLOW_PATH_INFO_FOR_SCRIPT_MAPPINGS","features":[561]},{"name":"MD_ALLOW_REPLACE_ON_RENAME","features":[561]},{"name":"MD_ANONYMOUS_ONLY","features":[561]},{"name":"MD_ANONYMOUS_PWD","features":[561]},{"name":"MD_ANONYMOUS_USER_NAME","features":[561]},{"name":"MD_ANONYMOUS_USE_SUBAUTH","features":[561]},{"name":"MD_APPPOOL_32_BIT_APP_ON_WIN64","features":[561]},{"name":"MD_APPPOOL_ALLOW_TRANSIENT_REGISTRATION","features":[561]},{"name":"MD_APPPOOL_APPPOOL_ID","features":[561]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_EXE","features":[561]},{"name":"MD_APPPOOL_AUTO_SHUTDOWN_PARAMS","features":[561]},{"name":"MD_APPPOOL_AUTO_START","features":[561]},{"name":"MD_APPPOOL_COMMAND","features":[561]},{"name":"MD_APPPOOL_COMMAND_START","features":[561]},{"name":"MD_APPPOOL_COMMAND_STOP","features":[561]},{"name":"MD_APPPOOL_DISALLOW_OVERLAPPING_ROTATION","features":[561]},{"name":"MD_APPPOOL_DISALLOW_ROTATION_ON_CONFIG_CHANGE","features":[561]},{"name":"MD_APPPOOL_EMULATION_ON_WINARM64","features":[561]},{"name":"MD_APPPOOL_IDENTITY_TYPE","features":[561]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSERVICE","features":[561]},{"name":"MD_APPPOOL_IDENTITY_TYPE_LOCALSYSTEM","features":[561]},{"name":"MD_APPPOOL_IDENTITY_TYPE_NETWORKSERVICE","features":[561]},{"name":"MD_APPPOOL_IDENTITY_TYPE_SPECIFICUSER","features":[561]},{"name":"MD_APPPOOL_IDLE_TIMEOUT","features":[561]},{"name":"MD_APPPOOL_MANAGED_PIPELINE_MODE","features":[561]},{"name":"MD_APPPOOL_MANAGED_RUNTIME_VERSION","features":[561]},{"name":"MD_APPPOOL_MAX_PROCESS_COUNT","features":[561]},{"name":"MD_APPPOOL_ORPHAN_ACTION_EXE","features":[561]},{"name":"MD_APPPOOL_ORPHAN_ACTION_PARAMS","features":[561]},{"name":"MD_APPPOOL_ORPHAN_PROCESSES_FOR_DEBUGGING","features":[561]},{"name":"MD_APPPOOL_PERIODIC_RESTART_CONNECTIONS","features":[561]},{"name":"MD_APPPOOL_PERIODIC_RESTART_MEMORY","features":[561]},{"name":"MD_APPPOOL_PERIODIC_RESTART_PRIVATE_MEMORY","features":[561]},{"name":"MD_APPPOOL_PERIODIC_RESTART_REQUEST_COUNT","features":[561]},{"name":"MD_APPPOOL_PERIODIC_RESTART_SCHEDULE","features":[561]},{"name":"MD_APPPOOL_PERIODIC_RESTART_TIME","features":[561]},{"name":"MD_APPPOOL_PINGING_ENABLED","features":[561]},{"name":"MD_APPPOOL_PING_INTERVAL","features":[561]},{"name":"MD_APPPOOL_PING_RESPONSE_TIMELIMIT","features":[561]},{"name":"MD_APPPOOL_RAPID_FAIL_PROTECTION_ENABLED","features":[561]},{"name":"MD_APPPOOL_SHUTDOWN_TIMELIMIT","features":[561]},{"name":"MD_APPPOOL_SMP_AFFINITIZED","features":[561]},{"name":"MD_APPPOOL_SMP_AFFINITIZED_PROCESSOR_MASK","features":[561]},{"name":"MD_APPPOOL_STARTUP_TIMELIMIT","features":[561]},{"name":"MD_APPPOOL_STATE","features":[561]},{"name":"MD_APPPOOL_STATE_STARTED","features":[561]},{"name":"MD_APPPOOL_STATE_STARTING","features":[561]},{"name":"MD_APPPOOL_STATE_STOPPED","features":[561]},{"name":"MD_APPPOOL_STATE_STOPPING","features":[561]},{"name":"MD_APPPOOL_UL_APPPOOL_QUEUE_LENGTH","features":[561]},{"name":"MD_APP_ALLOW_TRANSIENT_REGISTRATION","features":[561]},{"name":"MD_APP_APPPOOL_ID","features":[561]},{"name":"MD_APP_AUTO_START","features":[561]},{"name":"MD_APP_DEPENDENCIES","features":[561]},{"name":"MD_APP_FRIENDLY_NAME","features":[561]},{"name":"MD_APP_ISOLATED","features":[561]},{"name":"MD_APP_OOP_RECOVER_LIMIT","features":[561]},{"name":"MD_APP_PACKAGE_ID","features":[561]},{"name":"MD_APP_PACKAGE_NAME","features":[561]},{"name":"MD_APP_PERIODIC_RESTART_REQUESTS","features":[561]},{"name":"MD_APP_PERIODIC_RESTART_SCHEDULE","features":[561]},{"name":"MD_APP_PERIODIC_RESTART_TIME","features":[561]},{"name":"MD_APP_POOL_LOG_EVENT_ON_PROCESSMODEL","features":[561]},{"name":"MD_APP_POOL_LOG_EVENT_ON_RECYCLE","features":[561]},{"name":"MD_APP_POOL_PROCESSMODEL_IDLE_TIMEOUT","features":[561]},{"name":"MD_APP_POOL_RECYCLE_CONFIG_CHANGE","features":[561]},{"name":"MD_APP_POOL_RECYCLE_ISAPI_UNHEALTHY","features":[561]},{"name":"MD_APP_POOL_RECYCLE_MEMORY","features":[561]},{"name":"MD_APP_POOL_RECYCLE_ON_DEMAND","features":[561]},{"name":"MD_APP_POOL_RECYCLE_PRIVATE_MEMORY","features":[561]},{"name":"MD_APP_POOL_RECYCLE_REQUESTS","features":[561]},{"name":"MD_APP_POOL_RECYCLE_SCHEDULE","features":[561]},{"name":"MD_APP_POOL_RECYCLE_TIME","features":[561]},{"name":"MD_APP_ROOT","features":[561]},{"name":"MD_APP_SHUTDOWN_TIME_LIMIT","features":[561]},{"name":"MD_APP_TRACE_URL_LIST","features":[561]},{"name":"MD_APP_WAM_CLSID","features":[561]},{"name":"MD_ASP_ALLOWOUTOFPROCCMPNTS","features":[561]},{"name":"MD_ASP_ALLOWOUTOFPROCCOMPONENTS","features":[561]},{"name":"MD_ASP_ALLOWSESSIONSTATE","features":[561]},{"name":"MD_ASP_BUFFERINGON","features":[561]},{"name":"MD_ASP_BUFFER_LIMIT","features":[561]},{"name":"MD_ASP_CALCLINENUMBER","features":[561]},{"name":"MD_ASP_CODEPAGE","features":[561]},{"name":"MD_ASP_DISKTEMPLATECACHEDIRECTORY","features":[561]},{"name":"MD_ASP_ENABLEAPPLICATIONRESTART","features":[561]},{"name":"MD_ASP_ENABLEASPHTMLFALLBACK","features":[561]},{"name":"MD_ASP_ENABLECHUNKEDENCODING","features":[561]},{"name":"MD_ASP_ENABLECLIENTDEBUG","features":[561]},{"name":"MD_ASP_ENABLEPARENTPATHS","features":[561]},{"name":"MD_ASP_ENABLESERVERDEBUG","features":[561]},{"name":"MD_ASP_ENABLETYPELIBCACHE","features":[561]},{"name":"MD_ASP_ERRORSTONTLOG","features":[561]},{"name":"MD_ASP_EXCEPTIONCATCHENABLE","features":[561]},{"name":"MD_ASP_EXECUTEINMTA","features":[561]},{"name":"MD_ASP_ID_LAST","features":[561]},{"name":"MD_ASP_KEEPSESSIONIDSECURE","features":[561]},{"name":"MD_ASP_LCID","features":[561]},{"name":"MD_ASP_LOGERRORREQUESTS","features":[561]},{"name":"MD_ASP_MAXDISKTEMPLATECACHEFILES","features":[561]},{"name":"MD_ASP_MAXREQUESTENTITY","features":[561]},{"name":"MD_ASP_MAX_REQUEST_ENTITY_ALLOWED","features":[561]},{"name":"MD_ASP_MEMFREEFACTOR","features":[561]},{"name":"MD_ASP_MINUSEDBLOCKS","features":[561]},{"name":"MD_ASP_PROCESSORTHREADMAX","features":[561]},{"name":"MD_ASP_QUEUECONNECTIONTESTTIME","features":[561]},{"name":"MD_ASP_QUEUETIMEOUT","features":[561]},{"name":"MD_ASP_REQEUSTQUEUEMAX","features":[561]},{"name":"MD_ASP_RUN_ONEND_ANON","features":[561]},{"name":"MD_ASP_SCRIPTENGINECACHEMAX","features":[561]},{"name":"MD_ASP_SCRIPTERRORMESSAGE","features":[561]},{"name":"MD_ASP_SCRIPTERRORSSENTTOBROWSER","features":[561]},{"name":"MD_ASP_SCRIPTFILECACHESIZE","features":[561]},{"name":"MD_ASP_SCRIPTLANGUAGE","features":[561]},{"name":"MD_ASP_SCRIPTLANGUAGELIST","features":[561]},{"name":"MD_ASP_SCRIPTTIMEOUT","features":[561]},{"name":"MD_ASP_SERVICE_ENABLE_SXS","features":[561]},{"name":"MD_ASP_SERVICE_ENABLE_TRACKER","features":[561]},{"name":"MD_ASP_SERVICE_FLAGS","features":[561]},{"name":"MD_ASP_SERVICE_FLAG_FUSION","features":[561]},{"name":"MD_ASP_SERVICE_FLAG_PARTITIONS","features":[561]},{"name":"MD_ASP_SERVICE_FLAG_TRACKER","features":[561]},{"name":"MD_ASP_SERVICE_PARTITION_ID","features":[561]},{"name":"MD_ASP_SERVICE_SXS_NAME","features":[561]},{"name":"MD_ASP_SERVICE_USE_PARTITION","features":[561]},{"name":"MD_ASP_SESSIONMAX","features":[561]},{"name":"MD_ASP_SESSIONTIMEOUT","features":[561]},{"name":"MD_ASP_THREADGATEENABLED","features":[561]},{"name":"MD_ASP_THREADGATELOADHIGH","features":[561]},{"name":"MD_ASP_THREADGATELOADLOW","features":[561]},{"name":"MD_ASP_THREADGATESLEEPDELAY","features":[561]},{"name":"MD_ASP_THREADGATESLEEPMAX","features":[561]},{"name":"MD_ASP_THREADGATETIMESLICE","features":[561]},{"name":"MD_ASP_TRACKTHREADINGMODEL","features":[561]},{"name":"MD_AUTHORIZATION","features":[561]},{"name":"MD_AUTHORIZATION_PERSISTENCE","features":[561]},{"name":"MD_AUTH_ADVNOTIFY_DISABLE","features":[561]},{"name":"MD_AUTH_ANONYMOUS","features":[561]},{"name":"MD_AUTH_BASIC","features":[561]},{"name":"MD_AUTH_CHANGE_DISABLE","features":[561]},{"name":"MD_AUTH_CHANGE_FLAGS","features":[561]},{"name":"MD_AUTH_CHANGE_UNSECURE","features":[561]},{"name":"MD_AUTH_CHANGE_URL","features":[561]},{"name":"MD_AUTH_EXPIRED_UNSECUREURL","features":[561]},{"name":"MD_AUTH_EXPIRED_URL","features":[561]},{"name":"MD_AUTH_MD5","features":[561]},{"name":"MD_AUTH_NT","features":[561]},{"name":"MD_AUTH_PASSPORT","features":[561]},{"name":"MD_AUTH_SINGLEREQUEST","features":[561]},{"name":"MD_AUTH_SINGLEREQUESTALWAYSIFPROXY","features":[561]},{"name":"MD_AUTH_SINGLEREQUESTIFPROXY","features":[561]},{"name":"MD_BACKUP_FORCE_BACKUP","features":[561]},{"name":"MD_BACKUP_HIGHEST_VERSION","features":[561]},{"name":"MD_BACKUP_MAX_LEN","features":[561]},{"name":"MD_BACKUP_MAX_VERSION","features":[561]},{"name":"MD_BACKUP_NEXT_VERSION","features":[561]},{"name":"MD_BACKUP_OVERWRITE","features":[561]},{"name":"MD_BACKUP_SAVE_FIRST","features":[561]},{"name":"MD_BANNER_MESSAGE","features":[561]},{"name":"MD_BINDINGS","features":[561]},{"name":"MD_CACHE_EXTENSIONS","features":[561]},{"name":"MD_CAL_AUTH_RESERVE_TIMEOUT","features":[561]},{"name":"MD_CAL_SSL_RESERVE_TIMEOUT","features":[561]},{"name":"MD_CAL_VC_PER_CONNECT","features":[561]},{"name":"MD_CAL_W3_ERROR","features":[561]},{"name":"MD_CC_MAX_AGE","features":[561]},{"name":"MD_CC_NO_CACHE","features":[561]},{"name":"MD_CC_OTHER","features":[561]},{"name":"MD_CENTRAL_W3C_LOGGING_ENABLED","features":[561]},{"name":"MD_CERT_CACHE_RETRIEVAL_ONLY","features":[561]},{"name":"MD_CERT_CHECK_REVOCATION_FRESHNESS_TIME","features":[561]},{"name":"MD_CERT_NO_REVOC_CHECK","features":[561]},{"name":"MD_CERT_NO_USAGE_CHECK","features":[561]},{"name":"MD_CGI_RESTRICTION_LIST","features":[561]},{"name":"MD_CHANGE_OBJECT_W","features":[561]},{"name":"MD_CHANGE_TYPE_ADD_OBJECT","features":[561]},{"name":"MD_CHANGE_TYPE_DELETE_DATA","features":[561]},{"name":"MD_CHANGE_TYPE_DELETE_OBJECT","features":[561]},{"name":"MD_CHANGE_TYPE_RENAME_OBJECT","features":[561]},{"name":"MD_CHANGE_TYPE_RESTORE","features":[561]},{"name":"MD_CHANGE_TYPE_SET_DATA","features":[561]},{"name":"MD_COMMENTS","features":[561]},{"name":"MD_CONNECTION_TIMEOUT","features":[561]},{"name":"MD_CPU_ACTION","features":[561]},{"name":"MD_CPU_APP_ENABLED","features":[561]},{"name":"MD_CPU_CGI_ENABLED","features":[561]},{"name":"MD_CPU_CGI_LIMIT","features":[561]},{"name":"MD_CPU_DISABLE_ALL_LOGGING","features":[561]},{"name":"MD_CPU_ENABLE_ACTIVE_PROCS","features":[561]},{"name":"MD_CPU_ENABLE_ALL_PROC_LOGGING","features":[561]},{"name":"MD_CPU_ENABLE_APP_LOGGING","features":[561]},{"name":"MD_CPU_ENABLE_CGI_LOGGING","features":[561]},{"name":"MD_CPU_ENABLE_EVENT","features":[561]},{"name":"MD_CPU_ENABLE_KERNEL_TIME","features":[561]},{"name":"MD_CPU_ENABLE_LOGGING","features":[561]},{"name":"MD_CPU_ENABLE_PAGE_FAULTS","features":[561]},{"name":"MD_CPU_ENABLE_PROC_TYPE","features":[561]},{"name":"MD_CPU_ENABLE_TERMINATED_PROCS","features":[561]},{"name":"MD_CPU_ENABLE_TOTAL_PROCS","features":[561]},{"name":"MD_CPU_ENABLE_USER_TIME","features":[561]},{"name":"MD_CPU_KILL_W3WP","features":[561]},{"name":"MD_CPU_LIMIT","features":[561]},{"name":"MD_CPU_LIMITS_ENABLED","features":[561]},{"name":"MD_CPU_LIMIT_LOGEVENT","features":[561]},{"name":"MD_CPU_LIMIT_PAUSE","features":[561]},{"name":"MD_CPU_LIMIT_PRIORITY","features":[561]},{"name":"MD_CPU_LIMIT_PROCSTOP","features":[561]},{"name":"MD_CPU_LOGGING_INTERVAL","features":[561]},{"name":"MD_CPU_LOGGING_MASK","features":[561]},{"name":"MD_CPU_LOGGING_OPTIONS","features":[561]},{"name":"MD_CPU_NO_ACTION","features":[561]},{"name":"MD_CPU_RESET_INTERVAL","features":[561]},{"name":"MD_CPU_THROTTLE","features":[561]},{"name":"MD_CPU_TRACE","features":[561]},{"name":"MD_CREATE_PROCESS_AS_USER","features":[561]},{"name":"MD_CREATE_PROC_NEW_CONSOLE","features":[561]},{"name":"MD_CUSTOM_DEPLOYMENT_DATA","features":[561]},{"name":"MD_CUSTOM_ERROR","features":[561]},{"name":"MD_CUSTOM_ERROR_DESC","features":[561]},{"name":"MD_DEFAULT_BACKUP_LOCATION","features":[561]},{"name":"MD_DEFAULT_LOAD_FILE","features":[561]},{"name":"MD_DEFAULT_LOGON_DOMAIN","features":[561]},{"name":"MD_DEMAND_START_THRESHOLD","features":[561]},{"name":"MD_DIRBROW_ENABLED","features":[561]},{"name":"MD_DIRBROW_LOADDEFAULT","features":[561]},{"name":"MD_DIRBROW_LONG_DATE","features":[561]},{"name":"MD_DIRBROW_SHOW_DATE","features":[561]},{"name":"MD_DIRBROW_SHOW_EXTENSION","features":[561]},{"name":"MD_DIRBROW_SHOW_SIZE","features":[561]},{"name":"MD_DIRBROW_SHOW_TIME","features":[561]},{"name":"MD_DIRECTORY_BROWSING","features":[561]},{"name":"MD_DISABLE_SOCKET_POOLING","features":[561]},{"name":"MD_DONT_LOG","features":[561]},{"name":"MD_DOWNLEVEL_ADMIN_INSTANCE","features":[561]},{"name":"MD_DO_REVERSE_DNS","features":[561]},{"name":"MD_ENABLEDPROTOCOLS","features":[561]},{"name":"MD_ENABLE_URL_AUTHORIZATION","features":[561]},{"name":"MD_ERROR_CANNOT_REMOVE_SECURE_ATTRIBUTE","features":[561]},{"name":"MD_ERROR_DATA_NOT_FOUND","features":[561]},{"name":"MD_ERROR_IISAO_INVALID_SCHEMA","features":[561]},{"name":"MD_ERROR_INVALID_VERSION","features":[561]},{"name":"MD_ERROR_NOT_INITIALIZED","features":[561]},{"name":"MD_ERROR_NO_SESSION_KEY","features":[561]},{"name":"MD_ERROR_READ_METABASE_FILE","features":[561]},{"name":"MD_ERROR_SECURE_CHANNEL_FAILURE","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_CONTENT_LENGTH","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_DEPTH","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_DESTINATION","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_IF","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_LOCK_TOKEN","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_OVERWRITE","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_REQUEST_BODY","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_TIMEOUT","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_TRANSLATE","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_WEBSOCKET_REQUEST","features":[561]},{"name":"MD_ERROR_SUB400_INVALID_XFF_HEADER","features":[561]},{"name":"MD_ERROR_SUB401_APPLICATION","features":[561]},{"name":"MD_ERROR_SUB401_FILTER","features":[561]},{"name":"MD_ERROR_SUB401_LOGON","features":[561]},{"name":"MD_ERROR_SUB401_LOGON_ACL","features":[561]},{"name":"MD_ERROR_SUB401_LOGON_CONFIG","features":[561]},{"name":"MD_ERROR_SUB401_URLAUTH_POLICY","features":[561]},{"name":"MD_ERROR_SUB403_ADDR_REJECT","features":[561]},{"name":"MD_ERROR_SUB403_APPPOOL_DENIED","features":[561]},{"name":"MD_ERROR_SUB403_CAL_EXCEEDED","features":[561]},{"name":"MD_ERROR_SUB403_CERT_BAD","features":[561]},{"name":"MD_ERROR_SUB403_CERT_REQUIRED","features":[561]},{"name":"MD_ERROR_SUB403_CERT_REVOKED","features":[561]},{"name":"MD_ERROR_SUB403_CERT_TIME_INVALID","features":[561]},{"name":"MD_ERROR_SUB403_DIR_LIST_DENIED","features":[561]},{"name":"MD_ERROR_SUB403_EXECUTE_ACCESS_DENIED","features":[561]},{"name":"MD_ERROR_SUB403_INFINITE_DEPTH_DENIED","features":[561]},{"name":"MD_ERROR_SUB403_INSUFFICIENT_PRIVILEGE_FOR_CGI","features":[561]},{"name":"MD_ERROR_SUB403_INVALID_CNFG","features":[561]},{"name":"MD_ERROR_SUB403_LOCK_TOKEN_REQUIRED","features":[561]},{"name":"MD_ERROR_SUB403_MAPPER_DENY_ACCESS","features":[561]},{"name":"MD_ERROR_SUB403_PASSPORT_LOGIN_FAILURE","features":[561]},{"name":"MD_ERROR_SUB403_PWD_CHANGE","features":[561]},{"name":"MD_ERROR_SUB403_READ_ACCESS_DENIED","features":[561]},{"name":"MD_ERROR_SUB403_SITE_ACCESS_DENIED","features":[561]},{"name":"MD_ERROR_SUB403_SOURCE_ACCESS_DENIED","features":[561]},{"name":"MD_ERROR_SUB403_SSL128_REQUIRED","features":[561]},{"name":"MD_ERROR_SUB403_SSL_REQUIRED","features":[561]},{"name":"MD_ERROR_SUB403_TOO_MANY_USERS","features":[561]},{"name":"MD_ERROR_SUB403_VALIDATION_FAILURE","features":[561]},{"name":"MD_ERROR_SUB403_WRITE_ACCESS_DENIED","features":[561]},{"name":"MD_ERROR_SUB404_DENIED_BY_FILTERING_RULE","features":[561]},{"name":"MD_ERROR_SUB404_DENIED_BY_MIMEMAP","features":[561]},{"name":"MD_ERROR_SUB404_DENIED_BY_POLICY","features":[561]},{"name":"MD_ERROR_SUB404_FILE_ATTRIBUTE_HIDDEN","features":[561]},{"name":"MD_ERROR_SUB404_FILE_EXTENSION_DENIED","features":[561]},{"name":"MD_ERROR_SUB404_HIDDEN_SEGMENT","features":[561]},{"name":"MD_ERROR_SUB404_NO_HANDLER","features":[561]},{"name":"MD_ERROR_SUB404_PRECONDITIONED_HANDLER","features":[561]},{"name":"MD_ERROR_SUB404_QUERY_STRING_SEQUENCE_DENIED","features":[561]},{"name":"MD_ERROR_SUB404_QUERY_STRING_TOO_LONG","features":[561]},{"name":"MD_ERROR_SUB404_SITE_NOT_FOUND","features":[561]},{"name":"MD_ERROR_SUB404_STATICFILE_DAV","features":[561]},{"name":"MD_ERROR_SUB404_TOO_MANY_URL_SEGMENTS","features":[561]},{"name":"MD_ERROR_SUB404_URL_DOUBLE_ESCAPED","features":[561]},{"name":"MD_ERROR_SUB404_URL_HAS_HIGH_BIT_CHARS","features":[561]},{"name":"MD_ERROR_SUB404_URL_SEQUENCE_DENIED","features":[561]},{"name":"MD_ERROR_SUB404_URL_TOO_LONG","features":[561]},{"name":"MD_ERROR_SUB404_VERB_DENIED","features":[561]},{"name":"MD_ERROR_SUB413_CONTENT_LENGTH_TOO_LARGE","features":[561]},{"name":"MD_ERROR_SUB423_LOCK_TOKEN_SUBMITTED","features":[561]},{"name":"MD_ERROR_SUB423_NO_CONFLICTING_LOCK","features":[561]},{"name":"MD_ERROR_SUB500_ASPNET_HANDLERS","features":[561]},{"name":"MD_ERROR_SUB500_ASPNET_IMPERSONATION","features":[561]},{"name":"MD_ERROR_SUB500_ASPNET_MODULES","features":[561]},{"name":"MD_ERROR_SUB500_BAD_METADATA","features":[561]},{"name":"MD_ERROR_SUB500_HANDLERS_MODULE","features":[561]},{"name":"MD_ERROR_SUB500_UNC_ACCESS","features":[561]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_SCOPE","features":[561]},{"name":"MD_ERROR_SUB500_URLAUTH_NO_STORE","features":[561]},{"name":"MD_ERROR_SUB500_URLAUTH_STORE_ERROR","features":[561]},{"name":"MD_ERROR_SUB502_ARR_CONNECTION_ERROR","features":[561]},{"name":"MD_ERROR_SUB502_ARR_NO_SERVER","features":[561]},{"name":"MD_ERROR_SUB502_PREMATURE_EXIT","features":[561]},{"name":"MD_ERROR_SUB502_TIMEOUT","features":[561]},{"name":"MD_ERROR_SUB503_APP_CONCURRENT","features":[561]},{"name":"MD_ERROR_SUB503_ASPNET_QUEUE_FULL","features":[561]},{"name":"MD_ERROR_SUB503_CONNECTION_LIMIT","features":[561]},{"name":"MD_ERROR_SUB503_CPU_LIMIT","features":[561]},{"name":"MD_ERROR_SUB503_FASTCGI_QUEUE_FULL","features":[561]},{"name":"MD_EXIT_MESSAGE","features":[561]},{"name":"MD_EXPORT_INHERITED","features":[561]},{"name":"MD_EXPORT_NODE_ONLY","features":[561]},{"name":"MD_EXTLOG_BYTES_RECV","features":[561]},{"name":"MD_EXTLOG_BYTES_SENT","features":[561]},{"name":"MD_EXTLOG_CLIENT_IP","features":[561]},{"name":"MD_EXTLOG_COMPUTER_NAME","features":[561]},{"name":"MD_EXTLOG_COOKIE","features":[561]},{"name":"MD_EXTLOG_DATE","features":[561]},{"name":"MD_EXTLOG_HOST","features":[561]},{"name":"MD_EXTLOG_HTTP_STATUS","features":[561]},{"name":"MD_EXTLOG_HTTP_SUB_STATUS","features":[561]},{"name":"MD_EXTLOG_METHOD","features":[561]},{"name":"MD_EXTLOG_PROTOCOL_VERSION","features":[561]},{"name":"MD_EXTLOG_REFERER","features":[561]},{"name":"MD_EXTLOG_SERVER_IP","features":[561]},{"name":"MD_EXTLOG_SERVER_PORT","features":[561]},{"name":"MD_EXTLOG_SITE_NAME","features":[561]},{"name":"MD_EXTLOG_TIME","features":[561]},{"name":"MD_EXTLOG_TIME_TAKEN","features":[561]},{"name":"MD_EXTLOG_URI_QUERY","features":[561]},{"name":"MD_EXTLOG_URI_STEM","features":[561]},{"name":"MD_EXTLOG_USERNAME","features":[561]},{"name":"MD_EXTLOG_USER_AGENT","features":[561]},{"name":"MD_EXTLOG_WIN32_STATUS","features":[561]},{"name":"MD_FILTER_DESCRIPTION","features":[561]},{"name":"MD_FILTER_ENABLED","features":[561]},{"name":"MD_FILTER_ENABLE_CACHE","features":[561]},{"name":"MD_FILTER_FLAGS","features":[561]},{"name":"MD_FILTER_IMAGE_PATH","features":[561]},{"name":"MD_FILTER_LOAD_ORDER","features":[561]},{"name":"MD_FILTER_STATE","features":[561]},{"name":"MD_FILTER_STATE_LOADED","features":[561]},{"name":"MD_FILTER_STATE_UNLOADED","features":[561]},{"name":"MD_FOOTER_DOCUMENT","features":[561]},{"name":"MD_FOOTER_ENABLED","features":[561]},{"name":"MD_FRONTPAGE_WEB","features":[561]},{"name":"MD_FTPS_128_BITS","features":[561]},{"name":"MD_FTPS_ALLOW_CCC","features":[561]},{"name":"MD_FTPS_SECURE_ANONYMOUS","features":[561]},{"name":"MD_FTPS_SECURE_CONTROL_CHANNEL","features":[561]},{"name":"MD_FTPS_SECURE_DATA_CHANNEL","features":[561]},{"name":"MD_FTP_KEEP_PARTIAL_UPLOADS","features":[561]},{"name":"MD_FTP_LOG_IN_UTF_8","features":[561]},{"name":"MD_FTP_PASV_RESPONSE_IP","features":[561]},{"name":"MD_FTP_UTF8_FILE_NAMES","features":[561]},{"name":"MD_GLOBAL_BINARY_LOGGING_ENABLED","features":[561]},{"name":"MD_GLOBAL_BINSCHEMATIMESTAMP","features":[561]},{"name":"MD_GLOBAL_CHANGE_NUMBER","features":[561]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MAJOR_VERSION_NUMBER","features":[561]},{"name":"MD_GLOBAL_EDIT_WHILE_RUNNING_MINOR_VERSION_NUMBER","features":[561]},{"name":"MD_GLOBAL_LOG_IN_UTF_8","features":[561]},{"name":"MD_GLOBAL_SESSIONKEY","features":[561]},{"name":"MD_GLOBAL_STANDARD_APP_MODE_ENABLED","features":[561]},{"name":"MD_GLOBAL_XMLSCHEMATIMESTAMP","features":[561]},{"name":"MD_GREETING_MESSAGE","features":[561]},{"name":"MD_HC_CACHE_CONTROL_HEADER","features":[561]},{"name":"MD_HC_COMPRESSION_BUFFER_SIZE","features":[561]},{"name":"MD_HC_COMPRESSION_DIRECTORY","features":[561]},{"name":"MD_HC_COMPRESSION_DLL","features":[561]},{"name":"MD_HC_CREATE_FLAGS","features":[561]},{"name":"MD_HC_DO_DISK_SPACE_LIMITING","features":[561]},{"name":"MD_HC_DO_DYNAMIC_COMPRESSION","features":[561]},{"name":"MD_HC_DO_NAMESPACE_DYNAMIC_COMPRESSION","features":[561]},{"name":"MD_HC_DO_NAMESPACE_STATIC_COMPRESSION","features":[561]},{"name":"MD_HC_DO_ON_DEMAND_COMPRESSION","features":[561]},{"name":"MD_HC_DO_STATIC_COMPRESSION","features":[561]},{"name":"MD_HC_DYNAMIC_COMPRESSION_LEVEL","features":[561]},{"name":"MD_HC_EXPIRES_HEADER","features":[561]},{"name":"MD_HC_FILES_DELETED_PER_DISK_FREE","features":[561]},{"name":"MD_HC_FILE_EXTENSIONS","features":[561]},{"name":"MD_HC_IO_BUFFER_SIZE","features":[561]},{"name":"MD_HC_MAX_DISK_SPACE_USAGE","features":[561]},{"name":"MD_HC_MAX_QUEUE_LENGTH","features":[561]},{"name":"MD_HC_MIME_TYPE","features":[561]},{"name":"MD_HC_MIN_FILE_SIZE_FOR_COMP","features":[561]},{"name":"MD_HC_NO_COMPRESSION_FOR_HTTP_10","features":[561]},{"name":"MD_HC_NO_COMPRESSION_FOR_PROXIES","features":[561]},{"name":"MD_HC_NO_COMPRESSION_FOR_RANGE","features":[561]},{"name":"MD_HC_ON_DEMAND_COMP_LEVEL","features":[561]},{"name":"MD_HC_PRIORITY","features":[561]},{"name":"MD_HC_SCRIPT_FILE_EXTENSIONS","features":[561]},{"name":"MD_HC_SEND_CACHE_HEADERS","features":[561]},{"name":"MD_HEADER_WAIT_TIMEOUT","features":[561]},{"name":"MD_HISTORY_LATEST","features":[561]},{"name":"MD_HTTPERRORS_EXISTING_RESPONSE","features":[561]},{"name":"MD_HTTP_CUSTOM","features":[561]},{"name":"MD_HTTP_EXPIRES","features":[561]},{"name":"MD_HTTP_FORWARDER_CUSTOM","features":[561]},{"name":"MD_HTTP_PICS","features":[561]},{"name":"MD_HTTP_REDIRECT","features":[561]},{"name":"MD_IISADMIN_EXTENSIONS","features":[561]},{"name":"MD_IMPORT_INHERITED","features":[561]},{"name":"MD_IMPORT_MERGE","features":[561]},{"name":"MD_IMPORT_NODE_ONLY","features":[561]},{"name":"MD_INSERT_PATH_STRING","features":[561]},{"name":"MD_INSERT_PATH_STRINGA","features":[561]},{"name":"MD_IN_PROCESS_ISAPI_APPS","features":[561]},{"name":"MD_IP_SEC","features":[561]},{"name":"MD_ISAPI_RESTRICTION_LIST","features":[561]},{"name":"MD_IS_CONTENT_INDEXED","features":[561]},{"name":"MD_KEY_TYPE","features":[561]},{"name":"MD_LEVELS_TO_SCAN","features":[561]},{"name":"MD_LOAD_BALANCER_CAPABILITIES","features":[561]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_BASIC","features":[561]},{"name":"MD_LOAD_BALANCER_CAPABILITIES_SOPHISTICATED","features":[561]},{"name":"MD_LOCATION","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_DOUBLE","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_FLOAT","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_INT","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_LONG","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_LPSTR","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_LPWSTR","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_UINT","features":[561]},{"name":"MD_LOGCUSTOM_DATATYPE_ULONG","features":[561]},{"name":"MD_LOGCUSTOM_PROPERTY_DATATYPE","features":[561]},{"name":"MD_LOGCUSTOM_PROPERTY_HEADER","features":[561]},{"name":"MD_LOGCUSTOM_PROPERTY_ID","features":[561]},{"name":"MD_LOGCUSTOM_PROPERTY_MASK","features":[561]},{"name":"MD_LOGCUSTOM_PROPERTY_NAME","features":[561]},{"name":"MD_LOGCUSTOM_PROPERTY_NODE_ID","features":[561]},{"name":"MD_LOGCUSTOM_SERVICES_STRING","features":[561]},{"name":"MD_LOGEXT_FIELD_MASK","features":[561]},{"name":"MD_LOGEXT_FIELD_MASK2","features":[561]},{"name":"MD_LOGFILE_DIRECTORY","features":[561]},{"name":"MD_LOGFILE_LOCALTIME_ROLLOVER","features":[561]},{"name":"MD_LOGFILE_PERIOD","features":[561]},{"name":"MD_LOGFILE_PERIOD_DAILY","features":[561]},{"name":"MD_LOGFILE_PERIOD_HOURLY","features":[561]},{"name":"MD_LOGFILE_PERIOD_MAXSIZE","features":[561]},{"name":"MD_LOGFILE_PERIOD_MONTHLY","features":[561]},{"name":"MD_LOGFILE_PERIOD_NONE","features":[561]},{"name":"MD_LOGFILE_PERIOD_WEEKLY","features":[561]},{"name":"MD_LOGFILE_TRUNCATE_SIZE","features":[561]},{"name":"MD_LOGON_BATCH","features":[561]},{"name":"MD_LOGON_INTERACTIVE","features":[561]},{"name":"MD_LOGON_METHOD","features":[561]},{"name":"MD_LOGON_NETWORK","features":[561]},{"name":"MD_LOGON_NETWORK_CLEARTEXT","features":[561]},{"name":"MD_LOGSQL_DATA_SOURCES","features":[561]},{"name":"MD_LOGSQL_PASSWORD","features":[561]},{"name":"MD_LOGSQL_TABLE_NAME","features":[561]},{"name":"MD_LOGSQL_USER_NAME","features":[561]},{"name":"MD_LOG_ANONYMOUS","features":[561]},{"name":"MD_LOG_NONANONYMOUS","features":[561]},{"name":"MD_LOG_PLUGINS_AVAILABLE","features":[561]},{"name":"MD_LOG_PLUGIN_MOD_ID","features":[561]},{"name":"MD_LOG_PLUGIN_ORDER","features":[561]},{"name":"MD_LOG_PLUGIN_UI_ID","features":[561]},{"name":"MD_LOG_TYPE","features":[561]},{"name":"MD_LOG_TYPE_DISABLED","features":[561]},{"name":"MD_LOG_TYPE_ENABLED","features":[561]},{"name":"MD_LOG_UNUSED1","features":[561]},{"name":"MD_MAX_BANDWIDTH","features":[561]},{"name":"MD_MAX_BANDWIDTH_BLOCKED","features":[561]},{"name":"MD_MAX_CHANGE_ENTRIES","features":[561]},{"name":"MD_MAX_CLIENTS_MESSAGE","features":[561]},{"name":"MD_MAX_CONNECTIONS","features":[561]},{"name":"MD_MAX_ENDPOINT_CONNECTIONS","features":[561]},{"name":"MD_MAX_ERROR_FILES","features":[561]},{"name":"MD_MAX_GLOBAL_BANDWIDTH","features":[561]},{"name":"MD_MAX_GLOBAL_CONNECTIONS","features":[561]},{"name":"MD_MAX_REQUEST_ENTITY_ALLOWED","features":[561]},{"name":"MD_MD_SERVER_SS_AUTH_MAPPING","features":[561]},{"name":"MD_METADATA_ID_REGISTRATION","features":[561]},{"name":"MD_MIME_MAP","features":[561]},{"name":"MD_MIN_FILE_BYTES_PER_SEC","features":[561]},{"name":"MD_MSDOS_DIR_OUTPUT","features":[561]},{"name":"MD_NETLOGON_WKS_DNS","features":[561]},{"name":"MD_NETLOGON_WKS_IP","features":[561]},{"name":"MD_NETLOGON_WKS_NONE","features":[561]},{"name":"MD_NET_LOGON_WKS","features":[561]},{"name":"MD_NOTIFEXAUTH_NTLMSSL","features":[561]},{"name":"MD_NOTIFY_ACCESS_DENIED","features":[561]},{"name":"MD_NOTIFY_AUTHENTICATION","features":[561]},{"name":"MD_NOTIFY_AUTH_COMPLETE","features":[561]},{"name":"MD_NOTIFY_END_OF_NET_SESSION","features":[561]},{"name":"MD_NOTIFY_END_OF_REQUEST","features":[561]},{"name":"MD_NOTIFY_LOG","features":[561]},{"name":"MD_NOTIFY_NONSECURE_PORT","features":[561]},{"name":"MD_NOTIFY_ORDER_DEFAULT","features":[561]},{"name":"MD_NOTIFY_ORDER_HIGH","features":[561]},{"name":"MD_NOTIFY_ORDER_LOW","features":[561]},{"name":"MD_NOTIFY_ORDER_MEDIUM","features":[561]},{"name":"MD_NOTIFY_PREPROC_HEADERS","features":[561]},{"name":"MD_NOTIFY_READ_RAW_DATA","features":[561]},{"name":"MD_NOTIFY_SECURE_PORT","features":[561]},{"name":"MD_NOTIFY_SEND_RAW_DATA","features":[561]},{"name":"MD_NOTIFY_SEND_RESPONSE","features":[561]},{"name":"MD_NOTIFY_URL_MAP","features":[561]},{"name":"MD_NOT_DELETABLE","features":[561]},{"name":"MD_NTAUTHENTICATION_PROVIDERS","features":[561]},{"name":"MD_PASSIVE_PORT_RANGE","features":[561]},{"name":"MD_PASSPORT_NEED_MAPPING","features":[561]},{"name":"MD_PASSPORT_NO_MAPPING","features":[561]},{"name":"MD_PASSPORT_REQUIRE_AD_MAPPING","features":[561]},{"name":"MD_PASSPORT_TRY_MAPPING","features":[561]},{"name":"MD_POOL_IDC_TIMEOUT","features":[561]},{"name":"MD_PROCESS_NTCR_IF_LOGGED_ON","features":[561]},{"name":"MD_PUT_READ_SIZE","features":[561]},{"name":"MD_RAPID_FAIL_PROTECTION_INTERVAL","features":[561]},{"name":"MD_RAPID_FAIL_PROTECTION_MAX_CRASHES","features":[561]},{"name":"MD_REALM","features":[561]},{"name":"MD_REDIRECT_HEADERS","features":[561]},{"name":"MD_RESTRICTION_LIST_CUSTOM_DESC","features":[561]},{"name":"MD_ROOT_ENABLE_EDIT_WHILE_RUNNING","features":[561]},{"name":"MD_ROOT_ENABLE_HISTORY","features":[561]},{"name":"MD_ROOT_MAX_HISTORY_FILES","features":[561]},{"name":"MD_SCHEMA_METAID","features":[561]},{"name":"MD_SCRIPTMAPFLAG_ALLOWED_ON_READ_DIR","features":[561]},{"name":"MD_SCRIPTMAPFLAG_CHECK_PATH_INFO","features":[561]},{"name":"MD_SCRIPTMAPFLAG_SCRIPT","features":[561]},{"name":"MD_SCRIPT_MAPS","features":[561]},{"name":"MD_SCRIPT_TIMEOUT","features":[561]},{"name":"MD_SECURE_BINDINGS","features":[561]},{"name":"MD_SECURITY_SETUP_REQUIRED","features":[561]},{"name":"MD_SERVER_AUTOSTART","features":[561]},{"name":"MD_SERVER_BINDINGS","features":[561]},{"name":"MD_SERVER_COMMAND","features":[561]},{"name":"MD_SERVER_COMMAND_CONTINUE","features":[561]},{"name":"MD_SERVER_COMMAND_PAUSE","features":[561]},{"name":"MD_SERVER_COMMAND_START","features":[561]},{"name":"MD_SERVER_COMMAND_STOP","features":[561]},{"name":"MD_SERVER_COMMENT","features":[561]},{"name":"MD_SERVER_CONFIGURATION_INFO","features":[561]},{"name":"MD_SERVER_CONFIG_ALLOW_ENCRYPT","features":[561]},{"name":"MD_SERVER_CONFIG_AUTO_PW_SYNC","features":[561]},{"name":"MD_SERVER_CONFIG_SSL_128","features":[561]},{"name":"MD_SERVER_CONFIG_SSL_40","features":[561]},{"name":"MD_SERVER_LISTEN_BACKLOG","features":[561]},{"name":"MD_SERVER_LISTEN_TIMEOUT","features":[561]},{"name":"MD_SERVER_SIZE","features":[561]},{"name":"MD_SERVER_SIZE_LARGE","features":[561]},{"name":"MD_SERVER_SIZE_MEDIUM","features":[561]},{"name":"MD_SERVER_SIZE_SMALL","features":[561]},{"name":"MD_SERVER_STATE","features":[561]},{"name":"MD_SERVER_STATE_CONTINUING","features":[561]},{"name":"MD_SERVER_STATE_PAUSED","features":[561]},{"name":"MD_SERVER_STATE_PAUSING","features":[561]},{"name":"MD_SERVER_STATE_STARTED","features":[561]},{"name":"MD_SERVER_STATE_STARTING","features":[561]},{"name":"MD_SERVER_STATE_STOPPED","features":[561]},{"name":"MD_SERVER_STATE_STOPPING","features":[561]},{"name":"MD_SET_HOST_NAME","features":[561]},{"name":"MD_SHOW_4_DIGIT_YEAR","features":[561]},{"name":"MD_SSI_EXEC_DISABLED","features":[561]},{"name":"MD_SSL_ACCESS_PERM","features":[561]},{"name":"MD_SSL_ALWAYS_NEGO_CLIENT_CERT","features":[561]},{"name":"MD_SSL_KEY_PASSWORD","features":[561]},{"name":"MD_SSL_KEY_REQUEST","features":[561]},{"name":"MD_SSL_PRIVATE_KEY","features":[561]},{"name":"MD_SSL_PUBLIC_KEY","features":[561]},{"name":"MD_SSL_USE_DS_MAPPER","features":[561]},{"name":"MD_STOP_LISTENING","features":[561]},{"name":"MD_SUPPRESS_DEFAULT_BANNER","features":[561]},{"name":"MD_UPLOAD_READAHEAD_SIZE","features":[561]},{"name":"MD_URL_AUTHORIZATION_IMPERSONATION_LEVEL","features":[561]},{"name":"MD_URL_AUTHORIZATION_SCOPE_NAME","features":[561]},{"name":"MD_URL_AUTHORIZATION_STORE_NAME","features":[561]},{"name":"MD_USER_ISOLATION","features":[561]},{"name":"MD_USER_ISOLATION_AD","features":[561]},{"name":"MD_USER_ISOLATION_BASIC","features":[561]},{"name":"MD_USER_ISOLATION_LAST","features":[561]},{"name":"MD_USER_ISOLATION_NONE","features":[561]},{"name":"MD_USE_DIGEST_SSP","features":[561]},{"name":"MD_USE_HOST_NAME","features":[561]},{"name":"MD_VR_IGNORE_TRANSLATE","features":[561]},{"name":"MD_VR_NO_CACHE","features":[561]},{"name":"MD_VR_PASSTHROUGH","features":[561]},{"name":"MD_VR_PASSWORD","features":[561]},{"name":"MD_VR_PATH","features":[561]},{"name":"MD_VR_USERNAME","features":[561]},{"name":"MD_WAM_PWD","features":[561]},{"name":"MD_WAM_USER_NAME","features":[561]},{"name":"MD_WARNING_DUP_NAME","features":[561]},{"name":"MD_WARNING_INVALID_DATA","features":[561]},{"name":"MD_WARNING_PATH_NOT_FOUND","features":[561]},{"name":"MD_WARNING_PATH_NOT_INSERTED","features":[561]},{"name":"MD_WARNING_SAVE_FAILED","features":[561]},{"name":"MD_WEBDAV_MAX_ATTRIBUTES_PER_ELEMENT","features":[561]},{"name":"MD_WEB_SVC_EXT_RESTRICTION_LIST","features":[561]},{"name":"MD_WIN32_ERROR","features":[561]},{"name":"METADATATYPES","features":[561]},{"name":"METADATA_DONT_EXPAND","features":[561]},{"name":"METADATA_GETALL_INTERNAL_RECORD","features":[561]},{"name":"METADATA_GETALL_RECORD","features":[561]},{"name":"METADATA_HANDLE_INFO","features":[561]},{"name":"METADATA_INHERIT","features":[561]},{"name":"METADATA_INSERT_PATH","features":[561]},{"name":"METADATA_ISINHERITED","features":[561]},{"name":"METADATA_LOCAL_MACHINE_ONLY","features":[561]},{"name":"METADATA_MASTER_ROOT_HANDLE","features":[561]},{"name":"METADATA_MAX_NAME_LEN","features":[561]},{"name":"METADATA_NON_SECURE_ONLY","features":[561]},{"name":"METADATA_NO_ATTRIBUTES","features":[561]},{"name":"METADATA_PARTIAL_PATH","features":[561]},{"name":"METADATA_PERMISSION_READ","features":[561]},{"name":"METADATA_PERMISSION_WRITE","features":[561]},{"name":"METADATA_RECORD","features":[561]},{"name":"METADATA_REFERENCE","features":[561]},{"name":"METADATA_SECURE","features":[561]},{"name":"METADATA_VOLATILE","features":[561]},{"name":"MSCS_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"MSCS_MD_ID_END_RESERVED","features":[561]},{"name":"MULTISZ_METADATA","features":[561]},{"name":"NNTP_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"NNTP_MD_ID_END_RESERVED","features":[561]},{"name":"PFN_GETEXTENSIONVERSION","features":[305,561]},{"name":"PFN_HSE_CACHE_INVALIDATION_CALLBACK","features":[561]},{"name":"PFN_HSE_GET_PROTOCOL_MANAGER_CUSTOM_INTERFACE_CALLBACK","features":[561]},{"name":"PFN_HSE_IO_COMPLETION","features":[305,561]},{"name":"PFN_HTTPEXTENSIONPROC","features":[305,561]},{"name":"PFN_IIS_GETSERVERVARIABLE","features":[305,561]},{"name":"PFN_IIS_READCLIENT","features":[305,561]},{"name":"PFN_IIS_SERVERSUPPORTFUNCTION","features":[305,561]},{"name":"PFN_IIS_WRITECLIENT","features":[305,561]},{"name":"PFN_TERMINATEEXTENSION","features":[305,561]},{"name":"PFN_WEB_CORE_ACTIVATE","features":[561]},{"name":"PFN_WEB_CORE_SET_METADATA_DLL_ENTRY","features":[561]},{"name":"PFN_WEB_CORE_SHUTDOWN","features":[561]},{"name":"POP3_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"POP3_MD_ID_END_RESERVED","features":[561]},{"name":"POST_PROCESS_PARAMETERS","features":[305,561]},{"name":"PRE_PROCESS_PARAMETERS","features":[305,561]},{"name":"SF_DENIED_APPLICATION","features":[561]},{"name":"SF_DENIED_BY_CONFIG","features":[561]},{"name":"SF_DENIED_FILTER","features":[561]},{"name":"SF_DENIED_LOGON","features":[561]},{"name":"SF_DENIED_RESOURCE","features":[561]},{"name":"SF_MAX_AUTH_TYPE","features":[561]},{"name":"SF_MAX_FILTER_DESC_LEN","features":[561]},{"name":"SF_MAX_PASSWORD","features":[561]},{"name":"SF_MAX_USERNAME","features":[561]},{"name":"SF_NOTIFY_ACCESS_DENIED","features":[561]},{"name":"SF_NOTIFY_AUTHENTICATION","features":[561]},{"name":"SF_NOTIFY_AUTH_COMPLETE","features":[561]},{"name":"SF_NOTIFY_END_OF_NET_SESSION","features":[561]},{"name":"SF_NOTIFY_END_OF_REQUEST","features":[561]},{"name":"SF_NOTIFY_LOG","features":[561]},{"name":"SF_NOTIFY_NONSECURE_PORT","features":[561]},{"name":"SF_NOTIFY_ORDER_DEFAULT","features":[561]},{"name":"SF_NOTIFY_ORDER_HIGH","features":[561]},{"name":"SF_NOTIFY_ORDER_LOW","features":[561]},{"name":"SF_NOTIFY_ORDER_MEDIUM","features":[561]},{"name":"SF_NOTIFY_PREPROC_HEADERS","features":[561]},{"name":"SF_NOTIFY_READ_RAW_DATA","features":[561]},{"name":"SF_NOTIFY_SECURE_PORT","features":[561]},{"name":"SF_NOTIFY_SEND_RAW_DATA","features":[561]},{"name":"SF_NOTIFY_SEND_RESPONSE","features":[561]},{"name":"SF_NOTIFY_URL_MAP","features":[561]},{"name":"SF_PROPERTY_IIS","features":[561]},{"name":"SF_PROPERTY_INSTANCE_NUM_ID","features":[561]},{"name":"SF_PROPERTY_SSL_CTXT","features":[561]},{"name":"SF_REQ_ADD_HEADERS_ON_DENIAL","features":[561]},{"name":"SF_REQ_DISABLE_NOTIFICATIONS","features":[561]},{"name":"SF_REQ_GET_CONNID","features":[561]},{"name":"SF_REQ_GET_PROPERTY","features":[561]},{"name":"SF_REQ_NORMALIZE_URL","features":[561]},{"name":"SF_REQ_SEND_RESPONSE_HEADER","features":[561]},{"name":"SF_REQ_SET_CERTIFICATE_INFO","features":[561]},{"name":"SF_REQ_SET_NEXT_READ_SIZE","features":[561]},{"name":"SF_REQ_SET_PROXY_INFO","features":[561]},{"name":"SF_REQ_TYPE","features":[561]},{"name":"SF_STATUS_REQ_ERROR","features":[561]},{"name":"SF_STATUS_REQ_FINISHED","features":[561]},{"name":"SF_STATUS_REQ_FINISHED_KEEP_CONN","features":[561]},{"name":"SF_STATUS_REQ_HANDLED_NOTIFICATION","features":[561]},{"name":"SF_STATUS_REQ_NEXT_NOTIFICATION","features":[561]},{"name":"SF_STATUS_REQ_READ_NEXT","features":[561]},{"name":"SF_STATUS_TYPE","features":[561]},{"name":"SMTP_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"SMTP_MD_ID_END_RESERVED","features":[561]},{"name":"STRING_METADATA","features":[561]},{"name":"USER_MD_ID_BASE_RESERVED","features":[561]},{"name":"WAM_MD_ID_BEGIN_RESERVED","features":[561]},{"name":"WAM_MD_ID_END_RESERVED","features":[561]},{"name":"WAM_MD_SERVER_BASE","features":[561]},{"name":"WEBDAV_MD_SERVER_BASE","features":[561]},{"name":"WEB_CORE_ACTIVATE_DLL_ENTRY","features":[561]},{"name":"WEB_CORE_DLL_NAME","features":[561]},{"name":"WEB_CORE_SET_METADATA_DLL_ENTRY","features":[561]},{"name":"WEB_CORE_SHUTDOWN_DLL_ENTRY","features":[561]}],"575":[{"name":"ABL_5_WO","features":[325]},{"name":"ADR_1","features":[325]},{"name":"ADR_2","features":[325]},{"name":"AIT1_8mm","features":[325]},{"name":"AIT_8mm","features":[325]},{"name":"AME_8mm","features":[325]},{"name":"ASSERT_ALTERNATE","features":[325]},{"name":"ASSERT_PRIMARY","features":[325]},{"name":"ASYNC_DUPLICATE_EXTENTS_STATUS","features":[325]},{"name":"ATAPI_ID_CMD","features":[325]},{"name":"AVATAR_F2","features":[325]},{"name":"AllElements","features":[325]},{"name":"AtaDataTypeIdentify","features":[325]},{"name":"AtaDataTypeLogPage","features":[325]},{"name":"AtaDataTypeUnknown","features":[325]},{"name":"BIN_COUNT","features":[325]},{"name":"BIN_RANGE","features":[325]},{"name":"BIN_RESULTS","features":[325]},{"name":"BIN_TYPES","features":[325]},{"name":"BOOT_AREA_INFO","features":[325]},{"name":"BULK_SECURITY_TEST_DATA","features":[325]},{"name":"CAP_ATAPI_ID_CMD","features":[325]},{"name":"CAP_ATA_ID_CMD","features":[325]},{"name":"CAP_SMART_CMD","features":[325]},{"name":"CDB_SIZE","features":[325]},{"name":"CD_R","features":[325]},{"name":"CD_ROM","features":[325]},{"name":"CD_RW","features":[325]},{"name":"CHANGER_BAR_CODE_SCANNER_INSTALLED","features":[325]},{"name":"CHANGER_CARTRIDGE_MAGAZINE","features":[325]},{"name":"CHANGER_CLEANER_ACCESS_NOT_VALID","features":[325]},{"name":"CHANGER_CLEANER_AUTODISMOUNT","features":[325]},{"name":"CHANGER_CLEANER_OPS_NOT_SUPPORTED","features":[325]},{"name":"CHANGER_CLEANER_SLOT","features":[325]},{"name":"CHANGER_CLOSE_IEPORT","features":[325]},{"name":"CHANGER_DEVICE_PROBLEM_TYPE","features":[325]},{"name":"CHANGER_DEVICE_REINITIALIZE_CAPABLE","features":[325]},{"name":"CHANGER_DRIVE_CLEANING_REQUIRED","features":[325]},{"name":"CHANGER_DRIVE_EMPTY_ON_DOOR_ACCESS","features":[325]},{"name":"CHANGER_ELEMENT","features":[325]},{"name":"CHANGER_ELEMENT_LIST","features":[325]},{"name":"CHANGER_ELEMENT_STATUS","features":[325]},{"name":"CHANGER_ELEMENT_STATUS_EX","features":[325]},{"name":"CHANGER_ELEMENT_STATUS_FLAGS","features":[325]},{"name":"CHANGER_EXCHANGE_MEDIA","features":[325]},{"name":"CHANGER_EXCHANGE_MEDIUM","features":[305,325]},{"name":"CHANGER_FEATURES","features":[325]},{"name":"CHANGER_IEPORT_USER_CONTROL_CLOSE","features":[325]},{"name":"CHANGER_IEPORT_USER_CONTROL_OPEN","features":[325]},{"name":"CHANGER_INITIALIZE_ELEMENT_STATUS","features":[305,325]},{"name":"CHANGER_INIT_ELEM_STAT_WITH_RANGE","features":[325]},{"name":"CHANGER_KEYPAD_ENABLE_DISABLE","features":[325]},{"name":"CHANGER_LOCK_UNLOCK","features":[325]},{"name":"CHANGER_MEDIUM_FLIP","features":[325]},{"name":"CHANGER_MOVE_EXTENDS_IEPORT","features":[325]},{"name":"CHANGER_MOVE_MEDIUM","features":[305,325]},{"name":"CHANGER_MOVE_RETRACTS_IEPORT","features":[325]},{"name":"CHANGER_OPEN_IEPORT","features":[325]},{"name":"CHANGER_POSITION_TO_ELEMENT","features":[325]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_DRIVE","features":[325]},{"name":"CHANGER_PREDISMOUNT_ALIGN_TO_SLOT","features":[325]},{"name":"CHANGER_PREDISMOUNT_EJECT_REQUIRED","features":[325]},{"name":"CHANGER_PREMOUNT_EJECT_REQUIRED","features":[325]},{"name":"CHANGER_PRODUCT_DATA","features":[325]},{"name":"CHANGER_READ_ELEMENT_STATUS","features":[305,325]},{"name":"CHANGER_REPORT_IEPORT_STATE","features":[325]},{"name":"CHANGER_RESERVED_BIT","features":[325]},{"name":"CHANGER_RTN_MEDIA_TO_ORIGINAL_ADDR","features":[325]},{"name":"CHANGER_SEND_VOLUME_TAG_INFORMATION","features":[325]},{"name":"CHANGER_SERIAL_NUMBER_VALID","features":[325]},{"name":"CHANGER_SET_ACCESS","features":[325]},{"name":"CHANGER_SET_POSITION","features":[305,325]},{"name":"CHANGER_SLOTS_USE_TRAYS","features":[325]},{"name":"CHANGER_STATUS_NON_VOLATILE","features":[325]},{"name":"CHANGER_STORAGE_DRIVE","features":[325]},{"name":"CHANGER_STORAGE_IEPORT","features":[325]},{"name":"CHANGER_STORAGE_SLOT","features":[325]},{"name":"CHANGER_STORAGE_TRANSPORT","features":[325]},{"name":"CHANGER_TO_DRIVE","features":[325]},{"name":"CHANGER_TO_IEPORT","features":[325]},{"name":"CHANGER_TO_SLOT","features":[325]},{"name":"CHANGER_TO_TRANSPORT","features":[325]},{"name":"CHANGER_TRUE_EXCHANGE_CAPABLE","features":[325]},{"name":"CHANGER_VOLUME_ASSERT","features":[325]},{"name":"CHANGER_VOLUME_IDENTIFICATION","features":[325]},{"name":"CHANGER_VOLUME_REPLACE","features":[325]},{"name":"CHANGER_VOLUME_SEARCH","features":[325]},{"name":"CHANGER_VOLUME_UNDEFINE","features":[325]},{"name":"CHECKSUM_TYPE_CRC32","features":[325]},{"name":"CHECKSUM_TYPE_CRC64","features":[325]},{"name":"CHECKSUM_TYPE_ECC","features":[325]},{"name":"CHECKSUM_TYPE_FIRST_UNUSED_TYPE","features":[325]},{"name":"CHECKSUM_TYPE_NONE","features":[325]},{"name":"CHECKSUM_TYPE_SHA256","features":[325]},{"name":"CLASS_MEDIA_CHANGE_CONTEXT","features":[325]},{"name":"CLEANER_CARTRIDGE","features":[325]},{"name":"CLUSTER_RANGE","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_DO_NOT_MAP_NAME","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_EXCEPTION_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_BIND_TARGET_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_LAYER_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_SCRATCH_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_UNION_LAYER_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_EXCEPTION_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_FLAG_VIRTUALIZATION_TARGET_ROOT","features":[325]},{"name":"CONTAINER_ROOT_INFO_INPUT","features":[325]},{"name":"CONTAINER_ROOT_INFO_OUTPUT","features":[325]},{"name":"CONTAINER_ROOT_INFO_VALID_FLAGS","features":[325]},{"name":"CONTAINER_VOLUME_STATE","features":[325]},{"name":"CONTAINER_VOLUME_STATE_HOSTING_CONTAINER","features":[325]},{"name":"COPYFILE_SIS_FLAGS","features":[325]},{"name":"COPYFILE_SIS_LINK","features":[325]},{"name":"COPYFILE_SIS_REPLACE","features":[325]},{"name":"CREATE_DISK","features":[325]},{"name":"CREATE_DISK_GPT","features":[325]},{"name":"CREATE_DISK_MBR","features":[325]},{"name":"CREATE_USN_JOURNAL_DATA","features":[325]},{"name":"CSVFS_DISK_CONNECTIVITY","features":[325]},{"name":"CSV_CONTROL_OP","features":[325]},{"name":"CSV_CONTROL_PARAM","features":[325]},{"name":"CSV_INVALID_DEVICE_NUMBER","features":[325]},{"name":"CSV_IS_OWNED_BY_CSVFS","features":[305,325]},{"name":"CSV_MGMTLOCK_CHECK_VOLUME_REDIRECTED","features":[325]},{"name":"CSV_MGMT_LOCK","features":[325]},{"name":"CSV_NAMESPACE_INFO","features":[325]},{"name":"CSV_QUERY_FILE_REVISION","features":[325]},{"name":"CSV_QUERY_FILE_REVISION_FILE_ID_128","features":[324,325]},{"name":"CSV_QUERY_MDS_PATH","features":[325]},{"name":"CSV_QUERY_MDS_PATH_FLAG_CSV_DIRECT_IO_ENABLED","features":[325]},{"name":"CSV_QUERY_MDS_PATH_FLAG_SMB_BYPASS_CSV_ENABLED","features":[325]},{"name":"CSV_QUERY_MDS_PATH_FLAG_STORAGE_ON_THIS_NODE_IS_CONNECTED","features":[325]},{"name":"CSV_QUERY_MDS_PATH_V2","features":[325]},{"name":"CSV_QUERY_MDS_PATH_V2_VERSION_1","features":[325]},{"name":"CSV_QUERY_REDIRECT_STATE","features":[305,325]},{"name":"CSV_QUERY_VETO_FILE_DIRECT_IO_OUTPUT","features":[325]},{"name":"CSV_QUERY_VOLUME_ID","features":[325]},{"name":"CSV_QUERY_VOLUME_REDIRECT_STATE","features":[305,325]},{"name":"CSV_SET_VOLUME_ID","features":[325]},{"name":"CYGNET_12_WO","features":[325]},{"name":"ChangerDoor","features":[325]},{"name":"ChangerDrive","features":[325]},{"name":"ChangerIEPort","features":[325]},{"name":"ChangerKeypad","features":[325]},{"name":"ChangerMaxElement","features":[325]},{"name":"ChangerSlot","features":[325]},{"name":"ChangerTransport","features":[325]},{"name":"CsvControlDisableCaching","features":[325]},{"name":"CsvControlEnableCaching","features":[325]},{"name":"CsvControlEnableUSNRangeModificationTracking","features":[325]},{"name":"CsvControlGetCsvFsMdsPathV2","features":[325]},{"name":"CsvControlMarkHandleLocalVolumeMount","features":[325]},{"name":"CsvControlQueryFileRevision","features":[325]},{"name":"CsvControlQueryFileRevisionFileId128","features":[325]},{"name":"CsvControlQueryMdsPath","features":[325]},{"name":"CsvControlQueryMdsPathNoPause","features":[325]},{"name":"CsvControlQueryRedirectState","features":[325]},{"name":"CsvControlQueryVolumeId","features":[325]},{"name":"CsvControlQueryVolumeRedirectState","features":[325]},{"name":"CsvControlSetVolumeId","features":[325]},{"name":"CsvControlStartForceDFO","features":[325]},{"name":"CsvControlStartRedirectFile","features":[325]},{"name":"CsvControlStopForceDFO","features":[325]},{"name":"CsvControlStopRedirectFile","features":[325]},{"name":"CsvControlUnmarkHandleLocalVolumeMount","features":[325]},{"name":"CsvFsDiskConnectivityAllNodes","features":[325]},{"name":"CsvFsDiskConnectivityMdsNodeOnly","features":[325]},{"name":"CsvFsDiskConnectivityNone","features":[325]},{"name":"CsvFsDiskConnectivitySubsetOfNodes","features":[325]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_FALLBACK_SPECIFIED","features":[325]},{"name":"DAX_ALLOC_ALIGNMENT_FLAG_MANDATORY","features":[325]},{"name":"DDS_4mm","features":[325]},{"name":"DDUMP_FLAG_DATA_READ_FROM_DEVICE","features":[325]},{"name":"DECRYPTION_STATUS_BUFFER","features":[305,325]},{"name":"DELETE_USN_JOURNAL_DATA","features":[325]},{"name":"DETECTION_TYPE","features":[325]},{"name":"DEVICEDUMP_CAP_PRIVATE_SECTION","features":[325]},{"name":"DEVICEDUMP_CAP_RESTRICTED_SECTION","features":[325]},{"name":"DEVICEDUMP_COLLECTION_TYPEIDE_NOTIFICATION_TYPE","features":[325]},{"name":"DEVICEDUMP_MAX_IDSTRING","features":[325]},{"name":"DEVICEDUMP_PRIVATE_SUBSECTION","features":[325]},{"name":"DEVICEDUMP_PUBLIC_SUBSECTION","features":[325]},{"name":"DEVICEDUMP_RESTRICTED_SUBSECTION","features":[325]},{"name":"DEVICEDUMP_SECTION_HEADER","features":[325]},{"name":"DEVICEDUMP_STORAGEDEVICE_DATA","features":[325]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_DUMP","features":[325]},{"name":"DEVICEDUMP_STORAGESTACK_PUBLIC_STATE_RECORD","features":[325]},{"name":"DEVICEDUMP_STRUCTURE_VERSION","features":[325]},{"name":"DEVICEDUMP_STRUCTURE_VERSION_V1","features":[325]},{"name":"DEVICEDUMP_SUBSECTION_POINTER","features":[325]},{"name":"DEVICE_COPY_OFFLOAD_DESCRIPTOR","features":[325]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS","features":[325]},{"name":"DEVICE_DATA_SET_LBP_STATE_PARAMETERS_VERSION_V1","features":[325]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE","features":[325]},{"name":"DEVICE_DATA_SET_LB_PROVISIONING_STATE_V2","features":[325]},{"name":"DEVICE_DATA_SET_RANGE","features":[325]},{"name":"DEVICE_DATA_SET_REPAIR_OUTPUT","features":[325]},{"name":"DEVICE_DATA_SET_REPAIR_PARAMETERS","features":[325]},{"name":"DEVICE_DATA_SET_SCRUB_EX_OUTPUT","features":[325]},{"name":"DEVICE_DATA_SET_SCRUB_OUTPUT","features":[325]},{"name":"DEVICE_DATA_SET_TOPOLOGY_ID_QUERY_OUTPUT","features":[325]},{"name":"DEVICE_DSM_CONVERSION_OUTPUT","features":[325]},{"name":"DEVICE_DSM_DEFINITION","features":[305,325]},{"name":"DEVICE_DSM_FLAG_ALLOCATION_CONSOLIDATEABLE_ONLY","features":[325]},{"name":"DEVICE_DSM_FLAG_ENTIRE_DATA_SET_RANGE","features":[325]},{"name":"DEVICE_DSM_FLAG_PHYSICAL_ADDRESSES_OMIT_TOTAL_RANGES","features":[325]},{"name":"DEVICE_DSM_FLAG_REPAIR_INPUT_TOPOLOGY_ID_PRESENT","features":[325]},{"name":"DEVICE_DSM_FLAG_REPAIR_OUTPUT_PARITY_EXTENT","features":[325]},{"name":"DEVICE_DSM_FLAG_SCRUB_OUTPUT_PARITY_EXTENT","features":[325]},{"name":"DEVICE_DSM_FLAG_SCRUB_SKIP_IN_SYNC","features":[325]},{"name":"DEVICE_DSM_FLAG_TRIM_BYPASS_RZAT","features":[325]},{"name":"DEVICE_DSM_FLAG_TRIM_NOT_FS_ALLOCATED","features":[325]},{"name":"DEVICE_DSM_FREE_SPACE_OUTPUT","features":[325]},{"name":"DEVICE_DSM_LOST_QUERY_OUTPUT","features":[325]},{"name":"DEVICE_DSM_LOST_QUERY_PARAMETERS","features":[325]},{"name":"DEVICE_DSM_NOTIFICATION_PARAMETERS","features":[325]},{"name":"DEVICE_DSM_NOTIFY_FLAG_BEGIN","features":[325]},{"name":"DEVICE_DSM_NOTIFY_FLAG_END","features":[325]},{"name":"DEVICE_DSM_NVCACHE_CHANGE_PRIORITY_PARAMETERS","features":[325]},{"name":"DEVICE_DSM_OFFLOAD_READ_PARAMETERS","features":[325]},{"name":"DEVICE_DSM_OFFLOAD_WRITE_PARAMETERS","features":[325]},{"name":"DEVICE_DSM_PARAMETERS_V1","features":[325]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT","features":[325]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_V1","features":[325]},{"name":"DEVICE_DSM_PHYSICAL_ADDRESSES_OUTPUT_VERSION_V1","features":[325]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO","features":[325]},{"name":"DEVICE_DSM_RANGE_ERROR_INFO_VERSION_V1","features":[325]},{"name":"DEVICE_DSM_RANGE_ERROR_OUTPUT_V1","features":[325]},{"name":"DEVICE_DSM_REPORT_ZONES_DATA","features":[305,325]},{"name":"DEVICE_DSM_REPORT_ZONES_PARAMETERS","features":[325]},{"name":"DEVICE_DSM_TIERING_QUERY_INPUT","features":[325]},{"name":"DEVICE_DSM_TIERING_QUERY_OUTPUT","features":[325]},{"name":"DEVICE_INTERNAL_STATUS_DATA","features":[325]},{"name":"DEVICE_INTERNAL_STATUS_DATA_REQUEST_TYPE","features":[325]},{"name":"DEVICE_INTERNAL_STATUS_DATA_SET","features":[325]},{"name":"DEVICE_LB_PROVISIONING_DESCRIPTOR","features":[325]},{"name":"DEVICE_LOCATION","features":[325]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES","features":[325]},{"name":"DEVICE_MANAGE_DATA_SET_ATTRIBUTES_OUTPUT","features":[325]},{"name":"DEVICE_MEDIA_INFO","features":[324,325]},{"name":"DEVICE_POWER_DESCRIPTOR","features":[305,325]},{"name":"DEVICE_SEEK_PENALTY_DESCRIPTOR","features":[305,325]},{"name":"DEVICE_STORAGE_ADDRESS_RANGE","features":[325]},{"name":"DEVICE_STORAGE_NO_ERRORS","features":[325]},{"name":"DEVICE_STORAGE_RANGE_ATTRIBUTES","features":[325]},{"name":"DEVICE_TRIM_DESCRIPTOR","features":[305,325]},{"name":"DEVICE_WRITE_AGGREGATION_DESCRIPTOR","features":[305,325]},{"name":"DEVPKEY_Storage_Disk_Number","features":[303,325]},{"name":"DEVPKEY_Storage_Gpt_Name","features":[303,325]},{"name":"DEVPKEY_Storage_Gpt_Type","features":[303,325]},{"name":"DEVPKEY_Storage_Mbr_Type","features":[303,325]},{"name":"DEVPKEY_Storage_Partition_Number","features":[303,325]},{"name":"DEVPKEY_Storage_Portable","features":[303,325]},{"name":"DEVPKEY_Storage_Removable_Media","features":[303,325]},{"name":"DEVPKEY_Storage_System_Critical","features":[303,325]},{"name":"DISABLE_SMART","features":[325]},{"name":"DISK_ATTRIBUTE_OFFLINE","features":[325]},{"name":"DISK_ATTRIBUTE_READ_ONLY","features":[325]},{"name":"DISK_BINNING","features":[325]},{"name":"DISK_CACHE_INFORMATION","features":[305,325]},{"name":"DISK_CACHE_RETENTION_PRIORITY","features":[325]},{"name":"DISK_CONTROLLER_NUMBER","features":[325]},{"name":"DISK_DETECTION_INFO","features":[325]},{"name":"DISK_EXTENT","features":[325]},{"name":"DISK_EX_INT13_INFO","features":[325]},{"name":"DISK_GEOMETRY","features":[325]},{"name":"DISK_GEOMETRY_EX","features":[325]},{"name":"DISK_GROW_PARTITION","features":[325]},{"name":"DISK_HISTOGRAM","features":[325]},{"name":"DISK_INT13_INFO","features":[325]},{"name":"DISK_LOGGING","features":[325]},{"name":"DISK_LOGGING_DUMP","features":[325]},{"name":"DISK_LOGGING_START","features":[325]},{"name":"DISK_LOGGING_STOP","features":[325]},{"name":"DISK_PARTITION_INFO","features":[325]},{"name":"DISK_PERFORMANCE","features":[325]},{"name":"DISK_RECORD","features":[305,325]},{"name":"DLT","features":[325]},{"name":"DMI","features":[325]},{"name":"DRIVERSTATUS","features":[325]},{"name":"DRIVE_LAYOUT_INFORMATION","features":[305,325]},{"name":"DRIVE_LAYOUT_INFORMATION_EX","features":[305,325]},{"name":"DRIVE_LAYOUT_INFORMATION_GPT","features":[325]},{"name":"DRIVE_LAYOUT_INFORMATION_MBR","features":[325]},{"name":"DST_L","features":[325]},{"name":"DST_M","features":[325]},{"name":"DST_S","features":[325]},{"name":"DUPLICATE_EXTENTS_DATA","features":[305,325]},{"name":"DUPLICATE_EXTENTS_DATA32","features":[325]},{"name":"DUPLICATE_EXTENTS_DATA_EX","features":[305,325]},{"name":"DUPLICATE_EXTENTS_DATA_EX32","features":[325]},{"name":"DUPLICATE_EXTENTS_DATA_EX_ASYNC","features":[325]},{"name":"DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC","features":[325]},{"name":"DUPLICATE_EXTENTS_STATE","features":[325]},{"name":"DVD_R","features":[325]},{"name":"DVD_RAM","features":[325]},{"name":"DVD_ROM","features":[325]},{"name":"DVD_RW","features":[325]},{"name":"DV_6mm","features":[325]},{"name":"DetectExInt13","features":[325]},{"name":"DetectInt13","features":[325]},{"name":"DetectNone","features":[325]},{"name":"DeviceCurrentInternalStatusData","features":[325]},{"name":"DeviceCurrentInternalStatusDataHeader","features":[325]},{"name":"DeviceDsmActionFlag_NonDestructive","features":[325]},{"name":"DeviceInternalStatusDataRequestTypeUndefined","features":[325]},{"name":"DeviceProblemCHMError","features":[325]},{"name":"DeviceProblemCHMMoveError","features":[325]},{"name":"DeviceProblemCHMZeroError","features":[325]},{"name":"DeviceProblemCalibrationError","features":[325]},{"name":"DeviceProblemCartridgeEjectError","features":[325]},{"name":"DeviceProblemCartridgeInsertError","features":[325]},{"name":"DeviceProblemDoorOpen","features":[325]},{"name":"DeviceProblemDriveError","features":[325]},{"name":"DeviceProblemGripperError","features":[325]},{"name":"DeviceProblemHardware","features":[325]},{"name":"DeviceProblemNone","features":[325]},{"name":"DeviceProblemPositionError","features":[325]},{"name":"DeviceProblemSensorError","features":[325]},{"name":"DeviceProblemTargetFailure","features":[325]},{"name":"DeviceSavedInternalStatusData","features":[325]},{"name":"DeviceSavedInternalStatusDataHeader","features":[325]},{"name":"DeviceStatusDataSet1","features":[325]},{"name":"DeviceStatusDataSet2","features":[325]},{"name":"DeviceStatusDataSet3","features":[325]},{"name":"DeviceStatusDataSet4","features":[325]},{"name":"DeviceStatusDataSetMax","features":[325]},{"name":"DeviceStatusDataSetUndefined","features":[325]},{"name":"DiskHealthHealthy","features":[325]},{"name":"DiskHealthMax","features":[325]},{"name":"DiskHealthUnhealthy","features":[325]},{"name":"DiskHealthUnknown","features":[325]},{"name":"DiskHealthWarning","features":[325]},{"name":"DiskOpReasonBackgroundOperation","features":[325]},{"name":"DiskOpReasonComponent","features":[325]},{"name":"DiskOpReasonConfiguration","features":[325]},{"name":"DiskOpReasonDataPersistenceLossImminent","features":[325]},{"name":"DiskOpReasonDeviceController","features":[325]},{"name":"DiskOpReasonDisabledByPlatform","features":[325]},{"name":"DiskOpReasonEnergySource","features":[325]},{"name":"DiskOpReasonHealthCheck","features":[325]},{"name":"DiskOpReasonInvalidFirmware","features":[325]},{"name":"DiskOpReasonIo","features":[325]},{"name":"DiskOpReasonLostData","features":[325]},{"name":"DiskOpReasonLostDataPersistence","features":[325]},{"name":"DiskOpReasonLostWritePersistence","features":[325]},{"name":"DiskOpReasonMax","features":[325]},{"name":"DiskOpReasonMedia","features":[325]},{"name":"DiskOpReasonMediaController","features":[325]},{"name":"DiskOpReasonNVDIMM_N","features":[325]},{"name":"DiskOpReasonScsiSenseCode","features":[325]},{"name":"DiskOpReasonThresholdExceeded","features":[325]},{"name":"DiskOpReasonUnknown","features":[325]},{"name":"DiskOpReasonWritePersistenceLossImminent","features":[325]},{"name":"DiskOpStatusHardwareError","features":[325]},{"name":"DiskOpStatusInService","features":[325]},{"name":"DiskOpStatusMissing","features":[325]},{"name":"DiskOpStatusNone","features":[325]},{"name":"DiskOpStatusNotUsable","features":[325]},{"name":"DiskOpStatusOk","features":[325]},{"name":"DiskOpStatusPredictingFailure","features":[325]},{"name":"DiskOpStatusTransientError","features":[325]},{"name":"DiskOpStatusUnknown","features":[325]},{"name":"EFS_TRACKED_OFFSET_HEADER_FLAG","features":[325]},{"name":"ELEMENT_STATUS_ACCESS","features":[325]},{"name":"ELEMENT_STATUS_AVOLTAG","features":[325]},{"name":"ELEMENT_STATUS_EXCEPT","features":[325]},{"name":"ELEMENT_STATUS_EXENAB","features":[325]},{"name":"ELEMENT_STATUS_FULL","features":[325]},{"name":"ELEMENT_STATUS_ID_VALID","features":[325]},{"name":"ELEMENT_STATUS_IMPEXP","features":[325]},{"name":"ELEMENT_STATUS_INENAB","features":[325]},{"name":"ELEMENT_STATUS_INVERT","features":[325]},{"name":"ELEMENT_STATUS_LUN_VALID","features":[325]},{"name":"ELEMENT_STATUS_NOT_BUS","features":[325]},{"name":"ELEMENT_STATUS_PRODUCT_DATA","features":[325]},{"name":"ELEMENT_STATUS_PVOLTAG","features":[325]},{"name":"ELEMENT_STATUS_SVALID","features":[325]},{"name":"ELEMENT_TYPE","features":[325]},{"name":"ENABLE_DISABLE_AUTOSAVE","features":[325]},{"name":"ENABLE_DISABLE_AUTO_OFFLINE","features":[325]},{"name":"ENABLE_SMART","features":[325]},{"name":"ENCRYPTED_DATA_INFO","features":[325]},{"name":"ENCRYPTED_DATA_INFO_SPARSE_FILE","features":[325]},{"name":"ENCRYPTION_BUFFER","features":[325]},{"name":"ENCRYPTION_FORMAT_DEFAULT","features":[325]},{"name":"ENCRYPTION_KEY_CTRL_INPUT","features":[325]},{"name":"ERROR_DRIVE_NOT_INSTALLED","features":[325]},{"name":"ERROR_HISTORY_DIRECTORY_ENTRY_DEFAULT_COUNT","features":[325]},{"name":"ERROR_INIT_STATUS_NEEDED","features":[325]},{"name":"ERROR_LABEL_QUESTIONABLE","features":[325]},{"name":"ERROR_LABEL_UNREADABLE","features":[325]},{"name":"ERROR_SLOT_NOT_PRESENT","features":[325]},{"name":"ERROR_TRAY_MALFUNCTION","features":[325]},{"name":"ERROR_UNHANDLED_ERROR","features":[325]},{"name":"EXECUTE_OFFLINE_DIAGS","features":[325]},{"name":"EXFAT_STATISTICS","features":[325]},{"name":"EXTENDED_ENCRYPTED_DATA_INFO","features":[325]},{"name":"EXTEND_IEPORT","features":[325]},{"name":"EqualPriority","features":[325]},{"name":"F3_120M_512","features":[325]},{"name":"F3_128Mb_512","features":[325]},{"name":"F3_1Pt23_1024","features":[325]},{"name":"F3_1Pt2_512","features":[325]},{"name":"F3_1Pt44_512","features":[325]},{"name":"F3_200Mb_512","features":[325]},{"name":"F3_20Pt8_512","features":[325]},{"name":"F3_230Mb_512","features":[325]},{"name":"F3_240M_512","features":[325]},{"name":"F3_2Pt88_512","features":[325]},{"name":"F3_32M_512","features":[325]},{"name":"F3_640_512","features":[325]},{"name":"F3_720_512","features":[325]},{"name":"F5_160_512","features":[325]},{"name":"F5_180_512","features":[325]},{"name":"F5_1Pt23_1024","features":[325]},{"name":"F5_1Pt2_512","features":[325]},{"name":"F5_320_1024","features":[325]},{"name":"F5_320_512","features":[325]},{"name":"F5_360_512","features":[325]},{"name":"F5_640_512","features":[325]},{"name":"F5_720_512","features":[325]},{"name":"F8_256_128","features":[325]},{"name":"FAT_STATISTICS","features":[325]},{"name":"FILESYSTEM_STATISTICS","features":[325]},{"name":"FILESYSTEM_STATISTICS_EX","features":[325]},{"name":"FILESYSTEM_STATISTICS_TYPE","features":[325]},{"name":"FILESYSTEM_STATISTICS_TYPE_EXFAT","features":[325]},{"name":"FILESYSTEM_STATISTICS_TYPE_FAT","features":[325]},{"name":"FILESYSTEM_STATISTICS_TYPE_NTFS","features":[325]},{"name":"FILESYSTEM_STATISTICS_TYPE_REFS","features":[325]},{"name":"FILE_ALLOCATED_RANGE_BUFFER","features":[325]},{"name":"FILE_ANY_ACCESS","features":[325]},{"name":"FILE_CLEAR_ENCRYPTION","features":[325]},{"name":"FILE_DESIRED_STORAGE_CLASS_INFORMATION","features":[325]},{"name":"FILE_DEVICE_8042_PORT","features":[325]},{"name":"FILE_DEVICE_ACPI","features":[325]},{"name":"FILE_DEVICE_BATTERY","features":[325]},{"name":"FILE_DEVICE_BEEP","features":[325]},{"name":"FILE_DEVICE_BIOMETRIC","features":[325]},{"name":"FILE_DEVICE_BLUETOOTH","features":[325]},{"name":"FILE_DEVICE_BUS_EXTENDER","features":[325]},{"name":"FILE_DEVICE_CD_ROM_FILE_SYSTEM","features":[325]},{"name":"FILE_DEVICE_CHANGER","features":[325]},{"name":"FILE_DEVICE_CONSOLE","features":[325]},{"name":"FILE_DEVICE_CONTROLLER","features":[325]},{"name":"FILE_DEVICE_CRYPT_PROVIDER","features":[325]},{"name":"FILE_DEVICE_DATALINK","features":[325]},{"name":"FILE_DEVICE_DEVAPI","features":[325]},{"name":"FILE_DEVICE_DFS","features":[325]},{"name":"FILE_DEVICE_DFS_FILE_SYSTEM","features":[325]},{"name":"FILE_DEVICE_DFS_VOLUME","features":[325]},{"name":"FILE_DEVICE_DISK_FILE_SYSTEM","features":[325]},{"name":"FILE_DEVICE_EHSTOR","features":[325]},{"name":"FILE_DEVICE_EVENT_COLLECTOR","features":[325]},{"name":"FILE_DEVICE_FILE_SYSTEM","features":[325]},{"name":"FILE_DEVICE_FIPS","features":[325]},{"name":"FILE_DEVICE_FULLSCREEN_VIDEO","features":[325]},{"name":"FILE_DEVICE_GPIO","features":[325]},{"name":"FILE_DEVICE_HOLOGRAPHIC","features":[325]},{"name":"FILE_DEVICE_INFINIBAND","features":[325]},{"name":"FILE_DEVICE_INPORT_PORT","features":[325]},{"name":"FILE_DEVICE_KEYBOARD","features":[325]},{"name":"FILE_DEVICE_KS","features":[325]},{"name":"FILE_DEVICE_KSEC","features":[325]},{"name":"FILE_DEVICE_MAILSLOT","features":[325]},{"name":"FILE_DEVICE_MASS_STORAGE","features":[325]},{"name":"FILE_DEVICE_MIDI_IN","features":[325]},{"name":"FILE_DEVICE_MIDI_OUT","features":[325]},{"name":"FILE_DEVICE_MODEM","features":[325]},{"name":"FILE_DEVICE_MOUSE","features":[325]},{"name":"FILE_DEVICE_MT_COMPOSITE","features":[325]},{"name":"FILE_DEVICE_MT_TRANSPORT","features":[325]},{"name":"FILE_DEVICE_MULTI_UNC_PROVIDER","features":[325]},{"name":"FILE_DEVICE_NAMED_PIPE","features":[325]},{"name":"FILE_DEVICE_NETWORK","features":[325]},{"name":"FILE_DEVICE_NETWORK_BROWSER","features":[325]},{"name":"FILE_DEVICE_NETWORK_FILE_SYSTEM","features":[325]},{"name":"FILE_DEVICE_NETWORK_REDIRECTOR","features":[325]},{"name":"FILE_DEVICE_NFP","features":[325]},{"name":"FILE_DEVICE_NULL","features":[325]},{"name":"FILE_DEVICE_NVDIMM","features":[325]},{"name":"FILE_DEVICE_PARALLEL_PORT","features":[325]},{"name":"FILE_DEVICE_PERSISTENT_MEMORY","features":[325]},{"name":"FILE_DEVICE_PHYSICAL_NETCARD","features":[325]},{"name":"FILE_DEVICE_PMI","features":[325]},{"name":"FILE_DEVICE_POINT_OF_SERVICE","features":[325]},{"name":"FILE_DEVICE_PRINTER","features":[325]},{"name":"FILE_DEVICE_PRM","features":[325]},{"name":"FILE_DEVICE_SCANNER","features":[325]},{"name":"FILE_DEVICE_SCREEN","features":[325]},{"name":"FILE_DEVICE_SDFXHCI","features":[325]},{"name":"FILE_DEVICE_SERENUM","features":[325]},{"name":"FILE_DEVICE_SERIAL_MOUSE_PORT","features":[325]},{"name":"FILE_DEVICE_SERIAL_PORT","features":[325]},{"name":"FILE_DEVICE_SMB","features":[325]},{"name":"FILE_DEVICE_SOUND","features":[325]},{"name":"FILE_DEVICE_SOUNDWIRE","features":[325]},{"name":"FILE_DEVICE_STORAGE_REPLICATION","features":[325]},{"name":"FILE_DEVICE_STREAMS","features":[325]},{"name":"FILE_DEVICE_SYSENV","features":[325]},{"name":"FILE_DEVICE_TAPE_FILE_SYSTEM","features":[325]},{"name":"FILE_DEVICE_TERMSRV","features":[325]},{"name":"FILE_DEVICE_TRANSPORT","features":[325]},{"name":"FILE_DEVICE_TRUST_ENV","features":[325]},{"name":"FILE_DEVICE_UCM","features":[325]},{"name":"FILE_DEVICE_UCMTCPCI","features":[325]},{"name":"FILE_DEVICE_UCMUCSI","features":[325]},{"name":"FILE_DEVICE_UNKNOWN","features":[325]},{"name":"FILE_DEVICE_USB4","features":[325]},{"name":"FILE_DEVICE_USBEX","features":[325]},{"name":"FILE_DEVICE_VDM","features":[325]},{"name":"FILE_DEVICE_VIDEO","features":[325]},{"name":"FILE_DEVICE_VIRTUAL_BLOCK","features":[325]},{"name":"FILE_DEVICE_VIRTUAL_DISK","features":[325]},{"name":"FILE_DEVICE_VMBUS","features":[325]},{"name":"FILE_DEVICE_WAVE_IN","features":[325]},{"name":"FILE_DEVICE_WAVE_OUT","features":[325]},{"name":"FILE_DEVICE_WPD","features":[325]},{"name":"FILE_FS_PERSISTENT_VOLUME_INFORMATION","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NON_RESIDENT","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_NOT_FOUND","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_ATTRIBUTE_TOO_SMALL","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_CLUSTERS_ALREADY_IN_USE","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_DENY_DEFRAG","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_IS_BASE_RECORD","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_BASE_RECORD","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_EXIST","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_IN_USE","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_NOT_ORPHAN","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_FILE_RECORD_REUSED","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_INDEX_ENTRY_MISMATCH","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ARRAY_LENGTH_COUNT","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_LCN","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_ORPHAN_RECOVERY_NAME","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_PARENT","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_RUN_LENGTH","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_INVALID_VCN","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_LCN_NOT_EXIST","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_MULTIPLE_FILE_NAME_ATTRIBUTES","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_NAME_CONFLICT","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOTHING_WRONG","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_NOT_IMPLEMENTED","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_ORPHAN_GENERATED","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_GENERIC_NAMES","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_OUT_OF_RESOURCE","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_BASE_RECORD","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_EXIST","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_INDEX","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_NOT_IN_USE","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_PARENT_FILE_RECORD_REUSED","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_POTENTIAL_CROSSLINK","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_PREVIOUS_PARENT_STILL_VALID","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_RECURSIVELY_CORRUPTED","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIRED","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_REPAIR_DISABLED","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_MISMATCH","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_SID_VALID","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_STALE_INFORMATION","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_SYSTEM_FILE","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_UNABLE_TO_REPAIR","features":[325]},{"name":"FILE_INITIATE_REPAIR_HINT1_VALID_INDEX_ENTRY","features":[325]},{"name":"FILE_INITIATE_REPAIR_OUTPUT_BUFFER","features":[325]},{"name":"FILE_LAYOUT_ENTRY","features":[325]},{"name":"FILE_LAYOUT_INFO_ENTRY","features":[325]},{"name":"FILE_LAYOUT_NAME_ENTRY","features":[325]},{"name":"FILE_LAYOUT_NAME_ENTRY_DOS","features":[325]},{"name":"FILE_LAYOUT_NAME_ENTRY_PRIMARY","features":[325]},{"name":"FILE_LEVEL_TRIM","features":[325]},{"name":"FILE_LEVEL_TRIM_OUTPUT","features":[325]},{"name":"FILE_LEVEL_TRIM_RANGE","features":[325]},{"name":"FILE_MAKE_COMPATIBLE_BUFFER","features":[305,325]},{"name":"FILE_OBJECTID_BUFFER","features":[325]},{"name":"FILE_PREFETCH","features":[325]},{"name":"FILE_PREFETCH_EX","features":[325]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE","features":[325]},{"name":"FILE_PREFETCH_TYPE_FOR_CREATE_EX","features":[325]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM","features":[325]},{"name":"FILE_PREFETCH_TYPE_FOR_DIRENUM_EX","features":[325]},{"name":"FILE_PREFETCH_TYPE_MAX","features":[325]},{"name":"FILE_PROVIDER_COMPRESSION_MAXIMUM","features":[325]},{"name":"FILE_PROVIDER_CURRENT_VERSION","features":[325]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V0","features":[325]},{"name":"FILE_PROVIDER_EXTERNAL_INFO_V1","features":[325]},{"name":"FILE_PROVIDER_FLAG_COMPRESS_ON_WRITE","features":[325]},{"name":"FILE_PROVIDER_SINGLE_FILE","features":[325]},{"name":"FILE_QUERY_ON_DISK_VOL_INFO_BUFFER","features":[325]},{"name":"FILE_QUERY_SPARING_BUFFER","features":[305,325]},{"name":"FILE_READ_ACCESS","features":[325]},{"name":"FILE_REFERENCE_RANGE","features":[325]},{"name":"FILE_REGION_INFO","features":[325]},{"name":"FILE_REGION_INPUT","features":[325]},{"name":"FILE_REGION_OUTPUT","features":[325]},{"name":"FILE_REGION_USAGE_HUGE_PAGE_ALIGNMENT","features":[325]},{"name":"FILE_REGION_USAGE_LARGE_PAGE_ALIGNMENT","features":[325]},{"name":"FILE_REGION_USAGE_OTHER_PAGE_ALIGNMENT","features":[325]},{"name":"FILE_REGION_USAGE_QUERY_ALIGNMENT","features":[325]},{"name":"FILE_REGION_USAGE_VALID_CACHED_DATA","features":[325]},{"name":"FILE_REGION_USAGE_VALID_NONCACHED_DATA","features":[325]},{"name":"FILE_SET_DEFECT_MGMT_BUFFER","features":[305,325]},{"name":"FILE_SET_ENCRYPTION","features":[325]},{"name":"FILE_SET_SPARSE_BUFFER","features":[305,325]},{"name":"FILE_SPECIAL_ACCESS","features":[325]},{"name":"FILE_STORAGE_TIER","features":[325]},{"name":"FILE_STORAGE_TIER_CLASS","features":[325]},{"name":"FILE_STORAGE_TIER_DESCRIPTION_LENGTH","features":[325]},{"name":"FILE_STORAGE_TIER_FLAGS","features":[325]},{"name":"FILE_STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[325]},{"name":"FILE_STORAGE_TIER_FLAG_PARITY","features":[325]},{"name":"FILE_STORAGE_TIER_FLAG_READ_CACHE","features":[325]},{"name":"FILE_STORAGE_TIER_FLAG_SMR","features":[325]},{"name":"FILE_STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[325]},{"name":"FILE_STORAGE_TIER_MEDIA_TYPE","features":[325]},{"name":"FILE_STORAGE_TIER_NAME_LENGTH","features":[325]},{"name":"FILE_STORAGE_TIER_REGION","features":[325]},{"name":"FILE_SYSTEM_RECOGNITION_INFORMATION","features":[325]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_BEGIN","features":[325]},{"name":"FILE_TYPE_NOTIFICATION_FLAG_USAGE_END","features":[325]},{"name":"FILE_TYPE_NOTIFICATION_GUID_CRASHDUMP_FILE","features":[325]},{"name":"FILE_TYPE_NOTIFICATION_GUID_HIBERNATION_FILE","features":[325]},{"name":"FILE_TYPE_NOTIFICATION_GUID_PAGE_FILE","features":[325]},{"name":"FILE_TYPE_NOTIFICATION_INPUT","features":[325]},{"name":"FILE_WRITE_ACCESS","features":[325]},{"name":"FILE_ZERO_DATA_INFORMATION","features":[325]},{"name":"FILE_ZERO_DATA_INFORMATION_EX","features":[325]},{"name":"FILE_ZERO_DATA_INFORMATION_FLAG_PRESERVE_CACHED_DATA","features":[325]},{"name":"FIND_BY_SID_DATA","features":[308,325]},{"name":"FIND_BY_SID_OUTPUT","features":[325]},{"name":"FLAG_USN_TRACK_MODIFIED_RANGES_ENABLE","features":[325]},{"name":"FORMAT_EX_PARAMETERS","features":[325]},{"name":"FORMAT_PARAMETERS","features":[325]},{"name":"FSBPIO_INFL_None","features":[325]},{"name":"FSBPIO_INFL_SKIP_STORAGE_STACK_QUERY","features":[325]},{"name":"FSBPIO_OUTFL_COMPATIBLE_STORAGE_DRIVER","features":[325]},{"name":"FSBPIO_OUTFL_FILTER_ATTACH_BLOCKED","features":[325]},{"name":"FSBPIO_OUTFL_None","features":[325]},{"name":"FSBPIO_OUTFL_STREAM_BYPASS_PAUSED","features":[325]},{"name":"FSBPIO_OUTFL_VOLUME_STACK_BYPASS_PAUSED","features":[325]},{"name":"FSCTL_ADD_OVERLAY","features":[325]},{"name":"FSCTL_ADVANCE_FILE_ID","features":[325]},{"name":"FSCTL_ALLOW_EXTENDED_DASD_IO","features":[325]},{"name":"FSCTL_CLEAN_VOLUME_METADATA","features":[325]},{"name":"FSCTL_CLEAR_ALL_LCN_WEAK_REFERENCES","features":[325]},{"name":"FSCTL_CLEAR_LCN_WEAK_REFERENCE","features":[325]},{"name":"FSCTL_CORRUPTION_HANDLING","features":[325]},{"name":"FSCTL_CREATE_LCN_WEAK_REFERENCE","features":[325]},{"name":"FSCTL_CREATE_OR_GET_OBJECT_ID","features":[325]},{"name":"FSCTL_CREATE_USN_JOURNAL","features":[325]},{"name":"FSCTL_CSC_INTERNAL","features":[325]},{"name":"FSCTL_CSV_CONTROL","features":[325]},{"name":"FSCTL_CSV_GET_VOLUME_NAME_FOR_VOLUME_MOUNT_POINT","features":[325]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAME","features":[325]},{"name":"FSCTL_CSV_GET_VOLUME_PATH_NAMES_FOR_VOLUME_NAME","features":[325]},{"name":"FSCTL_CSV_H_BREAKING_SYNC_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_CSV_INTERNAL","features":[325]},{"name":"FSCTL_CSV_MGMT_LOCK","features":[325]},{"name":"FSCTL_CSV_QUERY_DOWN_LEVEL_FILE_SYSTEM_CHARACTERISTICS","features":[325]},{"name":"FSCTL_CSV_QUERY_VETO_FILE_DIRECT_IO","features":[325]},{"name":"FSCTL_CSV_SYNC_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_CSV_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_DELETE_CORRUPTED_REFS_CONTAINER","features":[325]},{"name":"FSCTL_DELETE_EXTERNAL_BACKING","features":[325]},{"name":"FSCTL_DELETE_OBJECT_ID","features":[325]},{"name":"FSCTL_DELETE_REPARSE_POINT","features":[325]},{"name":"FSCTL_DELETE_USN_JOURNAL","features":[325]},{"name":"FSCTL_DFSR_SET_GHOST_HANDLE_STATE","features":[325]},{"name":"FSCTL_DISABLE_LOCAL_BUFFERING","features":[325]},{"name":"FSCTL_DISMOUNT_VOLUME","features":[325]},{"name":"FSCTL_DUPLICATE_CLUSTER","features":[325]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE","features":[325]},{"name":"FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX","features":[325]},{"name":"FSCTL_ENABLE_PER_IO_FLAGS","features":[325]},{"name":"FSCTL_ENABLE_UPGRADE","features":[325]},{"name":"FSCTL_ENCRYPTION_FSCTL_IO","features":[325]},{"name":"FSCTL_ENCRYPTION_KEY_CONTROL","features":[325]},{"name":"FSCTL_ENUM_EXTERNAL_BACKING","features":[325]},{"name":"FSCTL_ENUM_OVERLAY","features":[325]},{"name":"FSCTL_ENUM_USN_DATA","features":[325]},{"name":"FSCTL_EXTEND_VOLUME","features":[325]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS","features":[325]},{"name":"FSCTL_FILESYSTEM_GET_STATISTICS_EX","features":[325]},{"name":"FSCTL_FILE_LEVEL_TRIM","features":[325]},{"name":"FSCTL_FILE_PREFETCH","features":[325]},{"name":"FSCTL_FILE_TYPE_NOTIFICATION","features":[325]},{"name":"FSCTL_FIND_FILES_BY_SID","features":[325]},{"name":"FSCTL_GET_BOOT_AREA_INFO","features":[325]},{"name":"FSCTL_GET_COMPRESSION","features":[325]},{"name":"FSCTL_GET_EXTERNAL_BACKING","features":[325]},{"name":"FSCTL_GET_FILTER_FILE_IDENTIFIER","features":[325]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION","features":[325]},{"name":"FSCTL_GET_INTEGRITY_INFORMATION_BUFFER","features":[325]},{"name":"FSCTL_GET_NTFS_FILE_RECORD","features":[325]},{"name":"FSCTL_GET_NTFS_VOLUME_DATA","features":[325]},{"name":"FSCTL_GET_OBJECT_ID","features":[325]},{"name":"FSCTL_GET_REFS_VOLUME_DATA","features":[325]},{"name":"FSCTL_GET_REPAIR","features":[325]},{"name":"FSCTL_GET_REPARSE_POINT","features":[325]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS","features":[325]},{"name":"FSCTL_GET_RETRIEVAL_POINTERS_AND_REFCOUNT","features":[325]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_BASE","features":[325]},{"name":"FSCTL_GET_RETRIEVAL_POINTER_COUNT","features":[325]},{"name":"FSCTL_GET_VOLUME_BITMAP","features":[325]},{"name":"FSCTL_GET_WOF_VERSION","features":[325]},{"name":"FSCTL_GHOST_FILE_EXTENTS","features":[325]},{"name":"FSCTL_HCS_ASYNC_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_HCS_SYNC_NO_WRITE_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_HCS_SYNC_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_INITIATE_FILE_METADATA_OPTIMIZATION","features":[325]},{"name":"FSCTL_INITIATE_REPAIR","features":[325]},{"name":"FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF","features":[325]},{"name":"FSCTL_INVALIDATE_VOLUMES","features":[325]},{"name":"FSCTL_IS_CSV_FILE","features":[325]},{"name":"FSCTL_IS_FILE_ON_CSV_VOLUME","features":[325]},{"name":"FSCTL_IS_PATHNAME_VALID","features":[325]},{"name":"FSCTL_IS_VOLUME_DIRTY","features":[325]},{"name":"FSCTL_IS_VOLUME_MOUNTED","features":[325]},{"name":"FSCTL_IS_VOLUME_OWNED_BYCSVFS","features":[325]},{"name":"FSCTL_LMR_QUERY_INFO","features":[325]},{"name":"FSCTL_LOCK_VOLUME","features":[325]},{"name":"FSCTL_LOOKUP_STREAM_FROM_CLUSTER","features":[325]},{"name":"FSCTL_MAKE_MEDIA_COMPATIBLE","features":[325]},{"name":"FSCTL_MANAGE_BYPASS_IO","features":[325]},{"name":"FSCTL_MARK_AS_SYSTEM_HIVE","features":[325]},{"name":"FSCTL_MARK_HANDLE","features":[325]},{"name":"FSCTL_MARK_VOLUME_DIRTY","features":[325]},{"name":"FSCTL_MOVE_FILE","features":[325]},{"name":"FSCTL_NOTIFY_DATA_CHANGE","features":[325]},{"name":"FSCTL_NOTIFY_STORAGE_SPACE_ALLOCATION","features":[325]},{"name":"FSCTL_OFFLOAD_READ","features":[325]},{"name":"FSCTL_OFFLOAD_READ_INPUT","features":[325]},{"name":"FSCTL_OFFLOAD_READ_OUTPUT","features":[325]},{"name":"FSCTL_OFFLOAD_WRITE","features":[325]},{"name":"FSCTL_OFFLOAD_WRITE_INPUT","features":[325]},{"name":"FSCTL_OFFLOAD_WRITE_OUTPUT","features":[325]},{"name":"FSCTL_OPBATCH_ACK_CLOSE_PENDING","features":[325]},{"name":"FSCTL_OPLOCK_BREAK_ACKNOWLEDGE","features":[325]},{"name":"FSCTL_OPLOCK_BREAK_ACK_NO_2","features":[325]},{"name":"FSCTL_OPLOCK_BREAK_NOTIFY","features":[325]},{"name":"FSCTL_QUERY_ALLOCATED_RANGES","features":[325]},{"name":"FSCTL_QUERY_ASYNC_DUPLICATE_EXTENTS_STATUS","features":[325]},{"name":"FSCTL_QUERY_BAD_RANGES","features":[325]},{"name":"FSCTL_QUERY_DEPENDENT_VOLUME","features":[325]},{"name":"FSCTL_QUERY_DIRECT_ACCESS_EXTENTS","features":[325]},{"name":"FSCTL_QUERY_DIRECT_IMAGE_ORIGINAL_BASE","features":[325]},{"name":"FSCTL_QUERY_EXTENT_READ_CACHE_INFO","features":[325]},{"name":"FSCTL_QUERY_FAT_BPB","features":[325]},{"name":"FSCTL_QUERY_FAT_BPB_BUFFER","features":[325]},{"name":"FSCTL_QUERY_FILE_LAYOUT","features":[325]},{"name":"FSCTL_QUERY_FILE_METADATA_OPTIMIZATION","features":[325]},{"name":"FSCTL_QUERY_FILE_REGIONS","features":[325]},{"name":"FSCTL_QUERY_FILE_SYSTEM_RECOGNITION","features":[325]},{"name":"FSCTL_QUERY_GHOSTED_FILE_EXTENTS","features":[325]},{"name":"FSCTL_QUERY_LCN_WEAK_REFERENCE","features":[325]},{"name":"FSCTL_QUERY_ON_DISK_VOLUME_INFO","features":[325]},{"name":"FSCTL_QUERY_PAGEFILE_ENCRYPTION","features":[325]},{"name":"FSCTL_QUERY_PERSISTENT_VOLUME_STATE","features":[325]},{"name":"FSCTL_QUERY_REFS_SMR_VOLUME_INFO","features":[325]},{"name":"FSCTL_QUERY_REFS_VOLUME_COUNTER_INFO","features":[325]},{"name":"FSCTL_QUERY_REGION_INFO","features":[325]},{"name":"FSCTL_QUERY_REGION_INFO_INPUT","features":[325]},{"name":"FSCTL_QUERY_REGION_INFO_OUTPUT","features":[325]},{"name":"FSCTL_QUERY_RETRIEVAL_POINTERS","features":[325]},{"name":"FSCTL_QUERY_SHARED_VIRTUAL_DISK_SUPPORT","features":[325]},{"name":"FSCTL_QUERY_SPARING_INFO","features":[325]},{"name":"FSCTL_QUERY_STORAGE_CLASSES","features":[325]},{"name":"FSCTL_QUERY_STORAGE_CLASSES_OUTPUT","features":[325]},{"name":"FSCTL_QUERY_USN_JOURNAL","features":[325]},{"name":"FSCTL_QUERY_VOLUME_CONTAINER_STATE","features":[325]},{"name":"FSCTL_QUERY_VOLUME_NUMA_INFO","features":[325]},{"name":"FSCTL_READ_FILE_USN_DATA","features":[325]},{"name":"FSCTL_READ_FROM_PLEX","features":[325]},{"name":"FSCTL_READ_RAW_ENCRYPTED","features":[325]},{"name":"FSCTL_READ_UNPRIVILEGED_USN_JOURNAL","features":[325]},{"name":"FSCTL_READ_USN_JOURNAL","features":[325]},{"name":"FSCTL_REARRANGE_FILE","features":[325]},{"name":"FSCTL_RECALL_FILE","features":[325]},{"name":"FSCTL_REFS_CHECKPOINT_VOLUME","features":[325]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES","features":[325]},{"name":"FSCTL_REFS_DEALLOCATE_RANGES_EX","features":[325]},{"name":"FSCTL_REFS_QUERY_VOLUME_COMPRESSION_INFO","features":[325]},{"name":"FSCTL_REFS_QUERY_VOLUME_DEDUP_INFO","features":[325]},{"name":"FSCTL_REFS_QUERY_VOLUME_IO_METRICS_INFO","features":[325]},{"name":"FSCTL_REFS_QUERY_VOLUME_TOTAL_SHARED_LCNS","features":[325]},{"name":"FSCTL_REFS_SET_VOLUME_COMPRESSION_INFO","features":[325]},{"name":"FSCTL_REFS_SET_VOLUME_DEDUP_INFO","features":[325]},{"name":"FSCTL_REFS_SET_VOLUME_IO_METRICS_INFO","features":[325]},{"name":"FSCTL_REFS_STREAM_SNAPSHOT_MANAGEMENT","features":[325]},{"name":"FSCTL_REMOVE_OVERLAY","features":[325]},{"name":"FSCTL_REPAIR_COPIES","features":[325]},{"name":"FSCTL_REQUEST_BATCH_OPLOCK","features":[325]},{"name":"FSCTL_REQUEST_FILTER_OPLOCK","features":[325]},{"name":"FSCTL_REQUEST_OPLOCK","features":[325]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_1","features":[325]},{"name":"FSCTL_REQUEST_OPLOCK_LEVEL_2","features":[325]},{"name":"FSCTL_RESET_VOLUME_ALLOCATION_HINTS","features":[325]},{"name":"FSCTL_RKF_INTERNAL","features":[325]},{"name":"FSCTL_SCRUB_DATA","features":[325]},{"name":"FSCTL_SCRUB_UNDISCOVERABLE_ID","features":[325]},{"name":"FSCTL_SD_GLOBAL_CHANGE","features":[325]},{"name":"FSCTL_SECURITY_ID_CHECK","features":[325]},{"name":"FSCTL_SET_BOOTLOADER_ACCESSED","features":[325]},{"name":"FSCTL_SET_CACHED_RUNS_STATE","features":[325]},{"name":"FSCTL_SET_COMPRESSION","features":[325]},{"name":"FSCTL_SET_DAX_ALLOC_ALIGNMENT_HINT","features":[325]},{"name":"FSCTL_SET_DEFECT_MANAGEMENT","features":[325]},{"name":"FSCTL_SET_ENCRYPTION","features":[325]},{"name":"FSCTL_SET_EXTERNAL_BACKING","features":[325]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION","features":[325]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER","features":[325]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_BUFFER_EX","features":[325]},{"name":"FSCTL_SET_INTEGRITY_INFORMATION_EX","features":[325]},{"name":"FSCTL_SET_LAYER_ROOT","features":[325]},{"name":"FSCTL_SET_OBJECT_ID","features":[325]},{"name":"FSCTL_SET_OBJECT_ID_EXTENDED","features":[325]},{"name":"FSCTL_SET_PERSISTENT_VOLUME_STATE","features":[325]},{"name":"FSCTL_SET_PURGE_FAILURE_MODE","features":[325]},{"name":"FSCTL_SET_REFS_FILE_STRICTLY_SEQUENTIAL","features":[325]},{"name":"FSCTL_SET_REFS_SMR_VOLUME_GC_PARAMETERS","features":[325]},{"name":"FSCTL_SET_REPAIR","features":[325]},{"name":"FSCTL_SET_REPARSE_POINT","features":[325]},{"name":"FSCTL_SET_REPARSE_POINT_EX","features":[325]},{"name":"FSCTL_SET_SHORT_NAME_BEHAVIOR","features":[325]},{"name":"FSCTL_SET_SPARSE","features":[325]},{"name":"FSCTL_SET_VOLUME_COMPRESSION_STATE","features":[325]},{"name":"FSCTL_SET_ZERO_DATA","features":[325]},{"name":"FSCTL_SET_ZERO_ON_DEALLOCATION","features":[325]},{"name":"FSCTL_SHRINK_VOLUME","features":[325]},{"name":"FSCTL_SHUFFLE_FILE","features":[325]},{"name":"FSCTL_SIS_COPYFILE","features":[325]},{"name":"FSCTL_SIS_LINK_FILES","features":[325]},{"name":"FSCTL_SMB_SHARE_FLUSH_AND_PURGE","features":[325]},{"name":"FSCTL_SPARSE_OVERALLOCATE","features":[325]},{"name":"FSCTL_SSDI_STORAGE_REQUEST","features":[325]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE","features":[325]},{"name":"FSCTL_START_VIRTUALIZATION_INSTANCE_EX","features":[325]},{"name":"FSCTL_STORAGE_QOS_CONTROL","features":[325]},{"name":"FSCTL_STREAMS_ASSOCIATE_ID","features":[325]},{"name":"FSCTL_STREAMS_QUERY_ID","features":[325]},{"name":"FSCTL_STREAMS_QUERY_PARAMETERS","features":[325]},{"name":"FSCTL_SUSPEND_OVERLAY","features":[325]},{"name":"FSCTL_SVHDX_ASYNC_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_SVHDX_SET_INITIATOR_INFORMATION","features":[325]},{"name":"FSCTL_SVHDX_SYNC_TUNNEL_REQUEST","features":[325]},{"name":"FSCTL_TXFS_CREATE_MINIVERSION","features":[325]},{"name":"FSCTL_TXFS_CREATE_SECONDARY_RM","features":[325]},{"name":"FSCTL_TXFS_GET_METADATA_INFO","features":[325]},{"name":"FSCTL_TXFS_GET_TRANSACTED_VERSION","features":[325]},{"name":"FSCTL_TXFS_LIST_TRANSACTIONS","features":[325]},{"name":"FSCTL_TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[325]},{"name":"FSCTL_TXFS_MODIFY_RM","features":[325]},{"name":"FSCTL_TXFS_QUERY_RM_INFORMATION","features":[325]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION","features":[325]},{"name":"FSCTL_TXFS_READ_BACKUP_INFORMATION2","features":[325]},{"name":"FSCTL_TXFS_ROLLFORWARD_REDO","features":[325]},{"name":"FSCTL_TXFS_ROLLFORWARD_UNDO","features":[325]},{"name":"FSCTL_TXFS_SAVEPOINT_INFORMATION","features":[325]},{"name":"FSCTL_TXFS_SHUTDOWN_RM","features":[325]},{"name":"FSCTL_TXFS_START_RM","features":[325]},{"name":"FSCTL_TXFS_TRANSACTION_ACTIVE","features":[325]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION","features":[325]},{"name":"FSCTL_TXFS_WRITE_BACKUP_INFORMATION2","features":[325]},{"name":"FSCTL_UNLOCK_VOLUME","features":[325]},{"name":"FSCTL_UNMAP_SPACE","features":[325]},{"name":"FSCTL_UPDATE_OVERLAY","features":[325]},{"name":"FSCTL_UPGRADE_VOLUME","features":[325]},{"name":"FSCTL_USN_TRACK_MODIFIED_RANGES","features":[325]},{"name":"FSCTL_VIRTUAL_STORAGE_PASSTHROUGH","features":[325]},{"name":"FSCTL_VIRTUAL_STORAGE_QUERY_PROPERTY","features":[325]},{"name":"FSCTL_VIRTUAL_STORAGE_SET_BEHAVIOR","features":[325]},{"name":"FSCTL_WAIT_FOR_REPAIR","features":[325]},{"name":"FSCTL_WRITE_RAW_ENCRYPTED","features":[325]},{"name":"FSCTL_WRITE_USN_CLOSE_RECORD","features":[325]},{"name":"FSCTL_WRITE_USN_REASON","features":[325]},{"name":"FS_BPIO_INFLAGS","features":[325]},{"name":"FS_BPIO_INFO","features":[325]},{"name":"FS_BPIO_INPUT","features":[325]},{"name":"FS_BPIO_OPERATIONS","features":[325]},{"name":"FS_BPIO_OP_DISABLE","features":[325]},{"name":"FS_BPIO_OP_ENABLE","features":[325]},{"name":"FS_BPIO_OP_GET_INFO","features":[325]},{"name":"FS_BPIO_OP_MAX_OPERATION","features":[325]},{"name":"FS_BPIO_OP_QUERY","features":[325]},{"name":"FS_BPIO_OP_STREAM_PAUSE","features":[325]},{"name":"FS_BPIO_OP_STREAM_RESUME","features":[325]},{"name":"FS_BPIO_OP_VOLUME_STACK_PAUSE","features":[325]},{"name":"FS_BPIO_OP_VOLUME_STACK_RESUME","features":[325]},{"name":"FS_BPIO_OUTFLAGS","features":[325]},{"name":"FS_BPIO_OUTPUT","features":[325]},{"name":"FS_BPIO_RESULTS","features":[325]},{"name":"FW_ISSUEID_NO_ISSUE","features":[325]},{"name":"FW_ISSUEID_UNKNOWN","features":[325]},{"name":"FileSnapStateInactive","features":[325]},{"name":"FileSnapStateSource","features":[325]},{"name":"FileSnapStateTarget","features":[325]},{"name":"FileStorageTierClassCapacity","features":[325]},{"name":"FileStorageTierClassMax","features":[325]},{"name":"FileStorageTierClassPerformance","features":[325]},{"name":"FileStorageTierClassUnspecified","features":[325]},{"name":"FileStorageTierMediaTypeDisk","features":[325]},{"name":"FileStorageTierMediaTypeMax","features":[325]},{"name":"FileStorageTierMediaTypeScm","features":[325]},{"name":"FileStorageTierMediaTypeSsd","features":[325]},{"name":"FileStorageTierMediaTypeUnspecified","features":[325]},{"name":"FixedMedia","features":[325]},{"name":"FormFactor1_8","features":[325]},{"name":"FormFactor1_8Less","features":[325]},{"name":"FormFactor2_5","features":[325]},{"name":"FormFactor3_5","features":[325]},{"name":"FormFactorDimm","features":[325]},{"name":"FormFactorEmbedded","features":[325]},{"name":"FormFactorM_2","features":[325]},{"name":"FormFactorMemoryCard","features":[325]},{"name":"FormFactorPCIeBoard","features":[325]},{"name":"FormFactorUnknown","features":[325]},{"name":"FormFactormSata","features":[325]},{"name":"GETVERSIONINPARAMS","features":[325]},{"name":"GET_CHANGER_PARAMETERS","features":[325]},{"name":"GET_CHANGER_PARAMETERS_FEATURES1","features":[325]},{"name":"GET_DEVICE_INTERNAL_STATUS_DATA_REQUEST","features":[325]},{"name":"GET_DISK_ATTRIBUTES","features":[325]},{"name":"GET_FILTER_FILE_IDENTIFIER_INPUT","features":[325]},{"name":"GET_FILTER_FILE_IDENTIFIER_OUTPUT","features":[325]},{"name":"GET_LENGTH_INFORMATION","features":[325]},{"name":"GET_MEDIA_TYPES","features":[324,325]},{"name":"GET_VOLUME_BITMAP_FLAG_MASK_METADATA","features":[325]},{"name":"GPT_ATTRIBUTES","features":[325]},{"name":"GPT_ATTRIBUTE_LEGACY_BIOS_BOOTABLE","features":[325]},{"name":"GPT_ATTRIBUTE_NO_BLOCK_IO_PROTOCOL","features":[325]},{"name":"GPT_ATTRIBUTE_PLATFORM_REQUIRED","features":[325]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_DAX","features":[325]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_HIDDEN","features":[325]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_NO_DRIVE_LETTER","features":[325]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_OFFLINE","features":[325]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_READ_ONLY","features":[325]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SERVICE","features":[325]},{"name":"GPT_BASIC_DATA_ATTRIBUTE_SHADOW_COPY","features":[325]},{"name":"GPT_SPACES_ATTRIBUTE_NO_METADATA","features":[325]},{"name":"GP_LOG_PAGE_DESCRIPTOR","features":[325]},{"name":"GUID_DEVICEDUMP_DRIVER_STORAGE_PORT","features":[325]},{"name":"GUID_DEVICEDUMP_STORAGE_DEVICE","features":[325]},{"name":"GUID_DEVINTERFACE_CDCHANGER","features":[325]},{"name":"GUID_DEVINTERFACE_CDROM","features":[325]},{"name":"GUID_DEVINTERFACE_COMPORT","features":[325]},{"name":"GUID_DEVINTERFACE_DISK","features":[325]},{"name":"GUID_DEVINTERFACE_FLOPPY","features":[325]},{"name":"GUID_DEVINTERFACE_HIDDEN_VOLUME","features":[325]},{"name":"GUID_DEVINTERFACE_MEDIUMCHANGER","features":[325]},{"name":"GUID_DEVINTERFACE_PARTITION","features":[325]},{"name":"GUID_DEVINTERFACE_SCM_PHYSICAL_DEVICE","features":[325]},{"name":"GUID_DEVINTERFACE_SERENUM_BUS_ENUMERATOR","features":[325]},{"name":"GUID_DEVINTERFACE_SERVICE_VOLUME","features":[325]},{"name":"GUID_DEVINTERFACE_SES","features":[325]},{"name":"GUID_DEVINTERFACE_STORAGEPORT","features":[325]},{"name":"GUID_DEVINTERFACE_TAPE","features":[325]},{"name":"GUID_DEVINTERFACE_UNIFIED_ACCESS_RPMB","features":[325]},{"name":"GUID_DEVINTERFACE_VMLUN","features":[325]},{"name":"GUID_DEVINTERFACE_VOLUME","features":[325]},{"name":"GUID_DEVINTERFACE_WRITEONCEDISK","features":[325]},{"name":"GUID_DEVINTERFACE_ZNSDISK","features":[325]},{"name":"GUID_SCM_PD_HEALTH_NOTIFICATION","features":[325]},{"name":"GUID_SCM_PD_PASSTHROUGH_INVDIMM","features":[325]},{"name":"HISTOGRAM_BUCKET","features":[325]},{"name":"HIST_NO_OF_BUCKETS","features":[325]},{"name":"HITACHI_12_WO","features":[325]},{"name":"HealthStatusDisabled","features":[325]},{"name":"HealthStatusFailed","features":[325]},{"name":"HealthStatusNormal","features":[325]},{"name":"HealthStatusThrottled","features":[325]},{"name":"HealthStatusUnknown","features":[325]},{"name":"HealthStatusWarning","features":[325]},{"name":"IBM_3480","features":[325]},{"name":"IBM_3490E","features":[325]},{"name":"IBM_Magstar_3590","features":[325]},{"name":"IBM_Magstar_MP","features":[325]},{"name":"IDENTIFY_BUFFER_SIZE","features":[325]},{"name":"IDEREGS","features":[325]},{"name":"ID_CMD","features":[325]},{"name":"IOCTL_CHANGER_BASE","features":[325]},{"name":"IOCTL_CHANGER_EXCHANGE_MEDIUM","features":[325]},{"name":"IOCTL_CHANGER_GET_ELEMENT_STATUS","features":[325]},{"name":"IOCTL_CHANGER_GET_PARAMETERS","features":[325]},{"name":"IOCTL_CHANGER_GET_PRODUCT_DATA","features":[325]},{"name":"IOCTL_CHANGER_GET_STATUS","features":[325]},{"name":"IOCTL_CHANGER_INITIALIZE_ELEMENT_STATUS","features":[325]},{"name":"IOCTL_CHANGER_MOVE_MEDIUM","features":[325]},{"name":"IOCTL_CHANGER_QUERY_VOLUME_TAGS","features":[325]},{"name":"IOCTL_CHANGER_REINITIALIZE_TRANSPORT","features":[325]},{"name":"IOCTL_CHANGER_SET_ACCESS","features":[325]},{"name":"IOCTL_CHANGER_SET_POSITION","features":[325]},{"name":"IOCTL_DISK_BASE","features":[325]},{"name":"IOCTL_DISK_CHECK_VERIFY","features":[325]},{"name":"IOCTL_DISK_CONTROLLER_NUMBER","features":[325]},{"name":"IOCTL_DISK_CREATE_DISK","features":[325]},{"name":"IOCTL_DISK_DELETE_DRIVE_LAYOUT","features":[325]},{"name":"IOCTL_DISK_EJECT_MEDIA","features":[325]},{"name":"IOCTL_DISK_FIND_NEW_DEVICES","features":[325]},{"name":"IOCTL_DISK_FORMAT_DRIVE","features":[325]},{"name":"IOCTL_DISK_FORMAT_TRACKS","features":[325]},{"name":"IOCTL_DISK_FORMAT_TRACKS_EX","features":[325]},{"name":"IOCTL_DISK_GET_CACHE_INFORMATION","features":[325]},{"name":"IOCTL_DISK_GET_DISK_ATTRIBUTES","features":[325]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY","features":[325]},{"name":"IOCTL_DISK_GET_DRIVE_GEOMETRY_EX","features":[325]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT","features":[325]},{"name":"IOCTL_DISK_GET_DRIVE_LAYOUT_EX","features":[325]},{"name":"IOCTL_DISK_GET_LENGTH_INFO","features":[325]},{"name":"IOCTL_DISK_GET_MEDIA_TYPES","features":[325]},{"name":"IOCTL_DISK_GET_PARTITION_INFO","features":[325]},{"name":"IOCTL_DISK_GET_PARTITION_INFO_EX","features":[325]},{"name":"IOCTL_DISK_GET_WRITE_CACHE_STATE","features":[325]},{"name":"IOCTL_DISK_GROW_PARTITION","features":[325]},{"name":"IOCTL_DISK_HISTOGRAM_DATA","features":[325]},{"name":"IOCTL_DISK_HISTOGRAM_RESET","features":[325]},{"name":"IOCTL_DISK_HISTOGRAM_STRUCTURE","features":[325]},{"name":"IOCTL_DISK_IS_WRITABLE","features":[325]},{"name":"IOCTL_DISK_LOAD_MEDIA","features":[325]},{"name":"IOCTL_DISK_LOGGING","features":[325]},{"name":"IOCTL_DISK_MEDIA_REMOVAL","features":[325]},{"name":"IOCTL_DISK_PERFORMANCE","features":[325]},{"name":"IOCTL_DISK_PERFORMANCE_OFF","features":[325]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS","features":[325]},{"name":"IOCTL_DISK_REASSIGN_BLOCKS_EX","features":[325]},{"name":"IOCTL_DISK_RELEASE","features":[325]},{"name":"IOCTL_DISK_REQUEST_DATA","features":[325]},{"name":"IOCTL_DISK_REQUEST_STRUCTURE","features":[325]},{"name":"IOCTL_DISK_RESERVE","features":[325]},{"name":"IOCTL_DISK_RESET_SNAPSHOT_INFO","features":[325]},{"name":"IOCTL_DISK_SENSE_DEVICE","features":[325]},{"name":"IOCTL_DISK_SET_CACHE_INFORMATION","features":[325]},{"name":"IOCTL_DISK_SET_DISK_ATTRIBUTES","features":[325]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT","features":[325]},{"name":"IOCTL_DISK_SET_DRIVE_LAYOUT_EX","features":[325]},{"name":"IOCTL_DISK_SET_PARTITION_INFO","features":[325]},{"name":"IOCTL_DISK_SET_PARTITION_INFO_EX","features":[325]},{"name":"IOCTL_DISK_UPDATE_DRIVE_SIZE","features":[325]},{"name":"IOCTL_DISK_UPDATE_PROPERTIES","features":[325]},{"name":"IOCTL_DISK_VERIFY","features":[325]},{"name":"IOCTL_SCMBUS_BASE","features":[325]},{"name":"IOCTL_SCMBUS_DEVICE_FUNCTION_BASE","features":[325]},{"name":"IOCTL_SCM_BUS_GET_LOGICAL_DEVICES","features":[325]},{"name":"IOCTL_SCM_BUS_GET_PHYSICAL_DEVICES","features":[325]},{"name":"IOCTL_SCM_BUS_GET_REGIONS","features":[325]},{"name":"IOCTL_SCM_BUS_QUERY_PROPERTY","features":[325]},{"name":"IOCTL_SCM_BUS_REFRESH_NAMESPACE","features":[325]},{"name":"IOCTL_SCM_BUS_RUNTIME_FW_ACTIVATE","features":[325]},{"name":"IOCTL_SCM_BUS_SET_PROPERTY","features":[325]},{"name":"IOCTL_SCM_LD_GET_INTERLEAVE_SET","features":[325]},{"name":"IOCTL_SCM_LOGICAL_DEVICE_FUNCTION_BASE","features":[325]},{"name":"IOCTL_SCM_PD_FIRMWARE_ACTIVATE","features":[325]},{"name":"IOCTL_SCM_PD_FIRMWARE_DOWNLOAD","features":[325]},{"name":"IOCTL_SCM_PD_PASSTHROUGH","features":[325]},{"name":"IOCTL_SCM_PD_QUERY_PROPERTY","features":[325]},{"name":"IOCTL_SCM_PD_REINITIALIZE_MEDIA","features":[325]},{"name":"IOCTL_SCM_PD_SET_PROPERTY","features":[325]},{"name":"IOCTL_SCM_PD_UPDATE_MANAGEMENT_STATUS","features":[325]},{"name":"IOCTL_SCM_PHYSICAL_DEVICE_FUNCTION_BASE","features":[325]},{"name":"IOCTL_SERENUM_EXPOSE_HARDWARE","features":[325]},{"name":"IOCTL_SERENUM_GET_PORT_NAME","features":[325]},{"name":"IOCTL_SERENUM_PORT_DESC","features":[325]},{"name":"IOCTL_SERENUM_REMOVE_HARDWARE","features":[325]},{"name":"IOCTL_SERIAL_LSRMST_INSERT","features":[325]},{"name":"IOCTL_STORAGE_ALLOCATE_BC_STREAM","features":[325]},{"name":"IOCTL_STORAGE_ATTRIBUTE_MANAGEMENT","features":[325]},{"name":"IOCTL_STORAGE_BASE","features":[325]},{"name":"IOCTL_STORAGE_BC_VERSION","features":[325]},{"name":"IOCTL_STORAGE_BREAK_RESERVATION","features":[325]},{"name":"IOCTL_STORAGE_CHECK_PRIORITY_HINT_SUPPORT","features":[325]},{"name":"IOCTL_STORAGE_CHECK_VERIFY","features":[325]},{"name":"IOCTL_STORAGE_CHECK_VERIFY2","features":[325]},{"name":"IOCTL_STORAGE_DEVICE_POWER_CAP","features":[325]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_NOTIFY","features":[325]},{"name":"IOCTL_STORAGE_DEVICE_TELEMETRY_QUERY_CAPS","features":[325]},{"name":"IOCTL_STORAGE_DIAGNOSTIC","features":[325]},{"name":"IOCTL_STORAGE_EJECTION_CONTROL","features":[325]},{"name":"IOCTL_STORAGE_EJECT_MEDIA","features":[325]},{"name":"IOCTL_STORAGE_ENABLE_IDLE_POWER","features":[325]},{"name":"IOCTL_STORAGE_EVENT_NOTIFICATION","features":[325]},{"name":"IOCTL_STORAGE_FAILURE_PREDICTION_CONFIG","features":[325]},{"name":"IOCTL_STORAGE_FIND_NEW_DEVICES","features":[325]},{"name":"IOCTL_STORAGE_FIRMWARE_ACTIVATE","features":[325]},{"name":"IOCTL_STORAGE_FIRMWARE_DOWNLOAD","features":[325]},{"name":"IOCTL_STORAGE_FIRMWARE_GET_INFO","features":[325]},{"name":"IOCTL_STORAGE_FREE_BC_STREAM","features":[325]},{"name":"IOCTL_STORAGE_GET_BC_PROPERTIES","features":[325]},{"name":"IOCTL_STORAGE_GET_COUNTERS","features":[325]},{"name":"IOCTL_STORAGE_GET_DEVICE_INTERNAL_LOG","features":[325]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER","features":[325]},{"name":"IOCTL_STORAGE_GET_DEVICE_NUMBER_EX","features":[325]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY","features":[325]},{"name":"IOCTL_STORAGE_GET_DEVICE_TELEMETRY_RAW","features":[325]},{"name":"IOCTL_STORAGE_GET_HOTPLUG_INFO","features":[325]},{"name":"IOCTL_STORAGE_GET_IDLE_POWERUP_REASON","features":[325]},{"name":"IOCTL_STORAGE_GET_LB_PROVISIONING_MAP_RESOURCES","features":[325]},{"name":"IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER","features":[325]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES","features":[325]},{"name":"IOCTL_STORAGE_GET_MEDIA_TYPES_EX","features":[325]},{"name":"IOCTL_STORAGE_GET_PHYSICAL_ELEMENT_STATUS","features":[325]},{"name":"IOCTL_STORAGE_LOAD_MEDIA","features":[325]},{"name":"IOCTL_STORAGE_LOAD_MEDIA2","features":[325]},{"name":"IOCTL_STORAGE_MANAGE_BYPASS_IO","features":[325]},{"name":"IOCTL_STORAGE_MANAGE_DATA_SET_ATTRIBUTES","features":[325]},{"name":"IOCTL_STORAGE_MCN_CONTROL","features":[325]},{"name":"IOCTL_STORAGE_MEDIA_REMOVAL","features":[325]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_IN","features":[325]},{"name":"IOCTL_STORAGE_PERSISTENT_RESERVE_OUT","features":[325]},{"name":"IOCTL_STORAGE_POWER_ACTIVE","features":[325]},{"name":"IOCTL_STORAGE_POWER_IDLE","features":[325]},{"name":"IOCTL_STORAGE_PREDICT_FAILURE","features":[325]},{"name":"IOCTL_STORAGE_PROTOCOL_COMMAND","features":[325]},{"name":"IOCTL_STORAGE_QUERY_PROPERTY","features":[325]},{"name":"IOCTL_STORAGE_READ_CAPACITY","features":[325]},{"name":"IOCTL_STORAGE_REINITIALIZE_MEDIA","features":[325]},{"name":"IOCTL_STORAGE_RELEASE","features":[325]},{"name":"IOCTL_STORAGE_REMOVE_ELEMENT_AND_TRUNCATE","features":[325]},{"name":"IOCTL_STORAGE_RESERVE","features":[325]},{"name":"IOCTL_STORAGE_RESET_BUS","features":[325]},{"name":"IOCTL_STORAGE_RESET_DEVICE","features":[325]},{"name":"IOCTL_STORAGE_RPMB_COMMAND","features":[325]},{"name":"IOCTL_STORAGE_SET_HOTPLUG_INFO","features":[325]},{"name":"IOCTL_STORAGE_SET_PROPERTY","features":[325]},{"name":"IOCTL_STORAGE_SET_TEMPERATURE_THRESHOLD","features":[325]},{"name":"IOCTL_STORAGE_START_DATA_INTEGRITY_CHECK","features":[325]},{"name":"IOCTL_STORAGE_STOP_DATA_INTEGRITY_CHECK","features":[325]},{"name":"IOMEGA_JAZ","features":[325]},{"name":"IOMEGA_ZIP","features":[325]},{"name":"IO_IRP_EXT_TRACK_OFFSET_HEADER","features":[325]},{"name":"KODAK_14_WO","features":[325]},{"name":"KeepPrefetchedData","features":[325]},{"name":"KeepReadData","features":[325]},{"name":"LMRQuerySessionInfo","features":[325]},{"name":"LMR_QUERY_INFO_CLASS","features":[325]},{"name":"LMR_QUERY_INFO_PARAM","features":[325]},{"name":"LMR_QUERY_SESSION_INFO","features":[325]},{"name":"LOCK_ELEMENT","features":[325]},{"name":"LOCK_UNLOCK_DOOR","features":[325]},{"name":"LOCK_UNLOCK_IEPORT","features":[325]},{"name":"LOCK_UNLOCK_KEYPAD","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_DATA","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_INDEX","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_MASK","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_ATTRIBUTE_SYSTEM","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_DENY_DEFRAG_SET","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_FS_SYSTEM_FILE","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_PAGE_FILE","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_ENTRY_FLAG_TXF_SYSTEM_FILE","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_INPUT","features":[325]},{"name":"LOOKUP_STREAM_FROM_CLUSTER_OUTPUT","features":[325]},{"name":"LTO_Accelis","features":[325]},{"name":"LTO_Ultrium","features":[325]},{"name":"MARK_HANDLE_CLOUD_SYNC","features":[325]},{"name":"MARK_HANDLE_DISABLE_FILE_METADATA_OPTIMIZATION","features":[325]},{"name":"MARK_HANDLE_ENABLE_CPU_CACHE","features":[325]},{"name":"MARK_HANDLE_ENABLE_USN_SOURCE_ON_PAGING_IO","features":[325]},{"name":"MARK_HANDLE_FILTER_METADATA","features":[325]},{"name":"MARK_HANDLE_INFO","features":[305,325]},{"name":"MARK_HANDLE_INFO32","features":[325]},{"name":"MARK_HANDLE_NOT_READ_COPY","features":[325]},{"name":"MARK_HANDLE_NOT_REALTIME","features":[325]},{"name":"MARK_HANDLE_NOT_TXF_SYSTEM_LOG","features":[325]},{"name":"MARK_HANDLE_PROTECT_CLUSTERS","features":[325]},{"name":"MARK_HANDLE_READ_COPY","features":[325]},{"name":"MARK_HANDLE_REALTIME","features":[325]},{"name":"MARK_HANDLE_RETURN_PURGE_FAILURE","features":[325]},{"name":"MARK_HANDLE_SKIP_COHERENCY_SYNC_DISALLOW_WRITES","features":[325]},{"name":"MARK_HANDLE_SUPPRESS_VOLUME_OPEN_FLUSH","features":[325]},{"name":"MARK_HANDLE_TXF_SYSTEM_LOG","features":[325]},{"name":"MAXIMUM_ENCRYPTION_VALUE","features":[325]},{"name":"MAX_FW_BUCKET_ID_LENGTH","features":[325]},{"name":"MAX_INTERFACE_CODES","features":[325]},{"name":"MAX_VOLUME_ID_SIZE","features":[325]},{"name":"MAX_VOLUME_TEMPLATE_SIZE","features":[325]},{"name":"MEDIA_CURRENTLY_MOUNTED","features":[325]},{"name":"MEDIA_ERASEABLE","features":[325]},{"name":"MEDIA_READ_ONLY","features":[325]},{"name":"MEDIA_READ_WRITE","features":[325]},{"name":"MEDIA_TYPE","features":[325]},{"name":"MEDIA_WRITE_ONCE","features":[325]},{"name":"MEDIA_WRITE_PROTECTED","features":[325]},{"name":"METHOD_BUFFERED","features":[325]},{"name":"METHOD_DIRECT_FROM_HARDWARE","features":[325]},{"name":"METHOD_DIRECT_TO_HARDWARE","features":[325]},{"name":"METHOD_IN_DIRECT","features":[325]},{"name":"METHOD_NEITHER","features":[325]},{"name":"METHOD_OUT_DIRECT","features":[325]},{"name":"MFT_ENUM_DATA_V0","features":[325]},{"name":"MFT_ENUM_DATA_V1","features":[325]},{"name":"MOVE_FILE_DATA","features":[305,325]},{"name":"MOVE_FILE_DATA32","features":[325]},{"name":"MOVE_FILE_RECORD_DATA","features":[305,325]},{"name":"MO_3_RW","features":[325]},{"name":"MO_5_LIMDOW","features":[325]},{"name":"MO_5_RW","features":[325]},{"name":"MO_5_WO","features":[325]},{"name":"MO_NFR_525","features":[325]},{"name":"MP2_8mm","features":[325]},{"name":"MP_8mm","features":[325]},{"name":"MiniQic","features":[325]},{"name":"NCTP","features":[325]},{"name":"NIKON_12_RW","features":[325]},{"name":"NTFS_EXTENDED_VOLUME_DATA","features":[325]},{"name":"NTFS_FILE_RECORD_INPUT_BUFFER","features":[325]},{"name":"NTFS_FILE_RECORD_OUTPUT_BUFFER","features":[325]},{"name":"NTFS_STATISTICS","features":[325]},{"name":"NTFS_STATISTICS_EX","features":[325]},{"name":"NTFS_VOLUME_DATA_BUFFER","features":[325]},{"name":"NVMeDataTypeFeature","features":[325]},{"name":"NVMeDataTypeIdentify","features":[325]},{"name":"NVMeDataTypeLogPage","features":[325]},{"name":"NVMeDataTypeUnknown","features":[325]},{"name":"OBSOLETE_DISK_GET_WRITE_CACHE_STATE","features":[325]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_BUS","features":[325]},{"name":"OBSOLETE_IOCTL_STORAGE_RESET_DEVICE","features":[325]},{"name":"OFFLOAD_READ_FLAG_ALL_ZERO_BEYOND_CURRENT_RANGE","features":[325]},{"name":"OPLOCK_LEVEL_CACHE_HANDLE","features":[325]},{"name":"OPLOCK_LEVEL_CACHE_READ","features":[325]},{"name":"OPLOCK_LEVEL_CACHE_WRITE","features":[325]},{"name":"PARTIITON_OS_DATA","features":[325]},{"name":"PARTITION_BSP","features":[325]},{"name":"PARTITION_DM","features":[325]},{"name":"PARTITION_DPP","features":[325]},{"name":"PARTITION_ENTRY_UNUSED","features":[325]},{"name":"PARTITION_EXTENDED","features":[325]},{"name":"PARTITION_EZDRIVE","features":[325]},{"name":"PARTITION_FAT32","features":[325]},{"name":"PARTITION_FAT32_XINT13","features":[325]},{"name":"PARTITION_FAT_12","features":[325]},{"name":"PARTITION_FAT_16","features":[325]},{"name":"PARTITION_GPT","features":[325]},{"name":"PARTITION_HUGE","features":[325]},{"name":"PARTITION_IFS","features":[325]},{"name":"PARTITION_INFORMATION","features":[305,325]},{"name":"PARTITION_INFORMATION_EX","features":[305,325]},{"name":"PARTITION_INFORMATION_GPT","features":[325]},{"name":"PARTITION_INFORMATION_MBR","features":[305,325]},{"name":"PARTITION_LDM","features":[325]},{"name":"PARTITION_MAIN_OS","features":[325]},{"name":"PARTITION_MSFT_RECOVERY","features":[325]},{"name":"PARTITION_NTFT","features":[325]},{"name":"PARTITION_OS2BOOTMGR","features":[325]},{"name":"PARTITION_PREP","features":[325]},{"name":"PARTITION_PRE_INSTALLED","features":[325]},{"name":"PARTITION_SPACES","features":[325]},{"name":"PARTITION_SPACES_DATA","features":[325]},{"name":"PARTITION_STYLE","features":[325]},{"name":"PARTITION_STYLE_GPT","features":[325]},{"name":"PARTITION_STYLE_MBR","features":[325]},{"name":"PARTITION_STYLE_RAW","features":[325]},{"name":"PARTITION_SYSTEM","features":[325]},{"name":"PARTITION_UNIX","features":[325]},{"name":"PARTITION_WINDOWS_SYSTEM","features":[325]},{"name":"PARTITION_XENIX_1","features":[325]},{"name":"PARTITION_XENIX_2","features":[325]},{"name":"PARTITION_XINT13","features":[325]},{"name":"PARTITION_XINT13_EXTENDED","features":[325]},{"name":"PATHNAME_BUFFER","features":[325]},{"name":"PC_5_RW","features":[325]},{"name":"PC_5_WO","features":[325]},{"name":"PD_5_RW","features":[325]},{"name":"PERF_BIN","features":[325]},{"name":"PERSISTENT_RESERVE_COMMAND","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_BACKED_BY_WIM","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_CHKDSK_RAN_ONCE","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_CONTAINS_BACKING_WIM","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_DAX_FORMATTED","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_DEV_VOLUME","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_GLOBAL_METADATA_NO_SEEK_PENALTY","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_LOCAL_METADATA_NO_SEEK_PENALTY","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_MODIFIED_BY_CHKDSK","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_NO_HEAT_GATHERING","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_NO_WRITE_AUTO_TIERING","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_REALLOCATE_ALL_DATA_WRITES","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_SHORT_NAME_CREATION_DISABLED","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_TRUSTED_VOLUME","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_TXF_DISABLED","features":[325]},{"name":"PERSISTENT_VOLUME_STATE_VOLUME_SCRUB_DISABLED","features":[325]},{"name":"PHILIPS_12_WO","features":[325]},{"name":"PHYSICAL_ELEMENT_STATUS","features":[325]},{"name":"PHYSICAL_ELEMENT_STATUS_DESCRIPTOR","features":[325]},{"name":"PHYSICAL_ELEMENT_STATUS_REQUEST","features":[325]},{"name":"PINNACLE_APEX_5_RW","features":[325]},{"name":"PIO_IRP_EXT_PROCESS_TRACKED_OFFSET_CALLBACK","features":[325]},{"name":"PLEX_READ_DATA_REQUEST","features":[325]},{"name":"PREVENT_MEDIA_REMOVAL","features":[305,325]},{"name":"PRODUCT_ID_LENGTH","features":[325]},{"name":"PROJFS_PROTOCOL_VERSION","features":[325]},{"name":"PropertyExistsQuery","features":[325]},{"name":"PropertyExistsSet","features":[325]},{"name":"PropertyMaskQuery","features":[325]},{"name":"PropertyQueryMaxDefined","features":[325]},{"name":"PropertySetMaxDefined","features":[325]},{"name":"PropertyStandardQuery","features":[325]},{"name":"PropertyStandardSet","features":[325]},{"name":"ProtocolTypeAta","features":[325]},{"name":"ProtocolTypeMaxReserved","features":[325]},{"name":"ProtocolTypeNvme","features":[325]},{"name":"ProtocolTypeProprietary","features":[325]},{"name":"ProtocolTypeScsi","features":[325]},{"name":"ProtocolTypeSd","features":[325]},{"name":"ProtocolTypeUfs","features":[325]},{"name":"ProtocolTypeUnknown","features":[325]},{"name":"QIC","features":[325]},{"name":"QUERY_BAD_RANGES_INPUT","features":[325]},{"name":"QUERY_BAD_RANGES_INPUT_RANGE","features":[325]},{"name":"QUERY_BAD_RANGES_OUTPUT","features":[325]},{"name":"QUERY_BAD_RANGES_OUTPUT_RANGE","features":[325]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_GUEST_VOLUMES","features":[325]},{"name":"QUERY_DEPENDENT_VOLUME_REQUEST_FLAG_HOST_VOLUMES","features":[325]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE","features":[325]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_CLUSTERS","features":[325]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_FILEID","features":[325]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_NONE","features":[325]},{"name":"QUERY_FILE_LAYOUT_FILTER_TYPE_STORAGE_RESERVE_ID","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTENTS","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_EXTRA_INFO","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FILES_WITH_DSC_ATTRIBUTE","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_FULL_PATH_IN_NAMES","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_NAMES","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_ONLY_FILES_WITH_SPECIFIC_ATTRIBUTES","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAMS_WITH_NO_CLUSTERS_ALLOCATED","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DATA_ATTRIBUTE","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_DSC_ATTRIBUTE","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EA_ATTRIBUTE","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_EFS_ATTRIBUTE","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_REPARSE_ATTRIBUTE","features":[325]},{"name":"QUERY_FILE_LAYOUT_INCLUDE_STREAM_INFORMATION_FOR_TXF_ATTRIBUTE","features":[325]},{"name":"QUERY_FILE_LAYOUT_INPUT","features":[325]},{"name":"QUERY_FILE_LAYOUT_NUM_FILTER_TYPES","features":[325]},{"name":"QUERY_FILE_LAYOUT_OUTPUT","features":[325]},{"name":"QUERY_FILE_LAYOUT_REPARSE_DATA_INVALID","features":[325]},{"name":"QUERY_FILE_LAYOUT_REPARSE_TAG_INVALID","features":[325]},{"name":"QUERY_FILE_LAYOUT_RESTART","features":[325]},{"name":"QUERY_FILE_LAYOUT_SINGLE_INSTANCED","features":[325]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_READ","features":[325]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_MEASURE_WRITE","features":[325]},{"name":"QUERY_STORAGE_CLASSES_FLAGS_NO_DEFRAG_VOLUME","features":[325]},{"name":"READ_ATTRIBUTES","features":[325]},{"name":"READ_ATTRIBUTE_BUFFER_SIZE","features":[325]},{"name":"READ_COMPRESSION_INFO_VALID","features":[325]},{"name":"READ_COPY_NUMBER_BYPASS_CACHE_FLAG","features":[325]},{"name":"READ_COPY_NUMBER_KEY","features":[325]},{"name":"READ_ELEMENT_ADDRESS_INFO","features":[325]},{"name":"READ_FILE_USN_DATA","features":[325]},{"name":"READ_THRESHOLDS","features":[325]},{"name":"READ_THRESHOLD_BUFFER_SIZE","features":[325]},{"name":"READ_USN_JOURNAL_DATA_V0","features":[325]},{"name":"READ_USN_JOURNAL_DATA_V1","features":[325]},{"name":"REASSIGN_BLOCKS","features":[325]},{"name":"REASSIGN_BLOCKS_EX","features":[325]},{"name":"RECOVERED_READS_VALID","features":[325]},{"name":"RECOVERED_WRITES_VALID","features":[325]},{"name":"REFS_SMR_VOLUME_GC_ACTION","features":[325]},{"name":"REFS_SMR_VOLUME_GC_METHOD","features":[325]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS","features":[325]},{"name":"REFS_SMR_VOLUME_GC_PARAMETERS_VERSION_V1","features":[325]},{"name":"REFS_SMR_VOLUME_GC_STATE","features":[325]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT","features":[325]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V0","features":[325]},{"name":"REFS_SMR_VOLUME_INFO_OUTPUT_VERSION_V1","features":[325]},{"name":"REFS_VOLUME_DATA_BUFFER","features":[325]},{"name":"REMOVE_ELEMENT_AND_TRUNCATE_REQUEST","features":[325]},{"name":"REPAIR_COPIES_INPUT","features":[325]},{"name":"REPAIR_COPIES_OUTPUT","features":[325]},{"name":"REPLACE_ALTERNATE","features":[325]},{"name":"REPLACE_PRIMARY","features":[325]},{"name":"REQUEST_OPLOCK_CURRENT_VERSION","features":[325]},{"name":"REQUEST_OPLOCK_INPUT_BUFFER","features":[325]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_ACK","features":[325]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_COMPLETE_ACK_ON_CLOSE","features":[325]},{"name":"REQUEST_OPLOCK_INPUT_FLAG_REQUEST","features":[325]},{"name":"REQUEST_OPLOCK_OUTPUT_BUFFER","features":[325]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_ACK_REQUIRED","features":[325]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_MODES_PROVIDED","features":[325]},{"name":"REQUEST_OPLOCK_OUTPUT_FLAG_WRITABLE_SECTION_PRESENT","features":[325]},{"name":"REQUEST_RAW_ENCRYPTED_DATA","features":[325]},{"name":"RETRACT_IEPORT","features":[325]},{"name":"RETRIEVAL_POINTERS_AND_REFCOUNT_BUFFER","features":[325]},{"name":"RETRIEVAL_POINTERS_BUFFER","features":[325]},{"name":"RETRIEVAL_POINTER_BASE","features":[325]},{"name":"RETRIEVAL_POINTER_COUNT","features":[325]},{"name":"RETURN_SMART_STATUS","features":[325]},{"name":"REVISION_LENGTH","features":[325]},{"name":"RemovableMedia","features":[325]},{"name":"RequestLocation","features":[325]},{"name":"RequestSize","features":[325]},{"name":"SAIT","features":[325]},{"name":"SAVE_ATTRIBUTE_VALUES","features":[325]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICES_INFO","features":[325]},{"name":"SCM_BUS_DEDICATED_MEMORY_DEVICE_INFO","features":[325]},{"name":"SCM_BUS_DEDICATED_MEMORY_STATE","features":[305,325]},{"name":"SCM_BUS_FIRMWARE_ACTIVATION_STATE","features":[325]},{"name":"SCM_BUS_PROPERTY_ID","features":[325]},{"name":"SCM_BUS_PROPERTY_QUERY","features":[325]},{"name":"SCM_BUS_PROPERTY_SET","features":[325]},{"name":"SCM_BUS_QUERY_TYPE","features":[325]},{"name":"SCM_BUS_RUNTIME_FW_ACTIVATION_INFO","features":[305,325]},{"name":"SCM_BUS_SET_TYPE","features":[325]},{"name":"SCM_INTERLEAVED_PD_INFO","features":[325]},{"name":"SCM_LD_INTERLEAVE_SET_INFO","features":[325]},{"name":"SCM_LOGICAL_DEVICES","features":[325]},{"name":"SCM_LOGICAL_DEVICE_INSTANCE","features":[325]},{"name":"SCM_MAX_SYMLINK_LEN_IN_CHARS","features":[325]},{"name":"SCM_PD_DESCRIPTOR_HEADER","features":[325]},{"name":"SCM_PD_DEVICE_HANDLE","features":[325]},{"name":"SCM_PD_DEVICE_INFO","features":[325]},{"name":"SCM_PD_DEVICE_SPECIFIC_INFO","features":[325]},{"name":"SCM_PD_DEVICE_SPECIFIC_PROPERTY","features":[325]},{"name":"SCM_PD_FIRMWARE_ACTIVATE","features":[325]},{"name":"SCM_PD_FIRMWARE_ACTIVATION_STATE","features":[325]},{"name":"SCM_PD_FIRMWARE_DOWNLOAD","features":[325]},{"name":"SCM_PD_FIRMWARE_INFO","features":[325]},{"name":"SCM_PD_FIRMWARE_LAST_DOWNLOAD","features":[325]},{"name":"SCM_PD_FIRMWARE_REVISION_LENGTH_BYTES","features":[325]},{"name":"SCM_PD_FIRMWARE_SLOT_INFO","features":[325]},{"name":"SCM_PD_FRU_ID_STRING","features":[325]},{"name":"SCM_PD_HEALTH_NOTIFICATION_DATA","features":[325]},{"name":"SCM_PD_HEALTH_STATUS","features":[325]},{"name":"SCM_PD_LAST_FW_ACTIVATION_STATUS","features":[325]},{"name":"SCM_PD_LOCATION_STRING","features":[325]},{"name":"SCM_PD_MANAGEMENT_STATUS","features":[325]},{"name":"SCM_PD_MAX_OPERATIONAL_STATUS","features":[325]},{"name":"SCM_PD_MEDIA_REINITIALIZATION_STATUS","features":[325]},{"name":"SCM_PD_OPERATIONAL_STATUS","features":[325]},{"name":"SCM_PD_OPERATIONAL_STATUS_REASON","features":[325]},{"name":"SCM_PD_PASSTHROUGH_INPUT","features":[325]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_INPUT","features":[325]},{"name":"SCM_PD_PASSTHROUGH_INVDIMM_OUTPUT","features":[325]},{"name":"SCM_PD_PASSTHROUGH_OUTPUT","features":[325]},{"name":"SCM_PD_PROPERTY_ID","features":[325]},{"name":"SCM_PD_PROPERTY_NAME_LENGTH_IN_CHARS","features":[325]},{"name":"SCM_PD_PROPERTY_QUERY","features":[325]},{"name":"SCM_PD_PROPERTY_SET","features":[325]},{"name":"SCM_PD_QUERY_TYPE","features":[325]},{"name":"SCM_PD_REINITIALIZE_MEDIA_INPUT","features":[325]},{"name":"SCM_PD_REINITIALIZE_MEDIA_OUTPUT","features":[325]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_ARM_STATE","features":[305,325]},{"name":"SCM_PD_RUNTIME_FW_ACTIVATION_INFO","features":[325]},{"name":"SCM_PD_SET_TYPE","features":[325]},{"name":"SCM_PHYSICAL_DEVICES","features":[325]},{"name":"SCM_PHYSICAL_DEVICE_INSTANCE","features":[325]},{"name":"SCM_REGION","features":[325]},{"name":"SCM_REGIONS","features":[325]},{"name":"SCM_REGION_FLAG","features":[325]},{"name":"SD_CHANGE_MACHINE_SID_INPUT","features":[325]},{"name":"SD_CHANGE_MACHINE_SID_OUTPUT","features":[325]},{"name":"SD_ENUM_SDS_ENTRY","features":[325]},{"name":"SD_ENUM_SDS_INPUT","features":[325]},{"name":"SD_ENUM_SDS_OUTPUT","features":[325]},{"name":"SD_GLOBAL_CHANGE_INPUT","features":[325]},{"name":"SD_GLOBAL_CHANGE_OUTPUT","features":[325]},{"name":"SD_GLOBAL_CHANGE_TYPE_ENUM_SDS","features":[325]},{"name":"SD_GLOBAL_CHANGE_TYPE_MACHINE_SID","features":[325]},{"name":"SD_GLOBAL_CHANGE_TYPE_QUERY_STATS","features":[325]},{"name":"SD_QUERY_STATS_INPUT","features":[325]},{"name":"SD_QUERY_STATS_OUTPUT","features":[325]},{"name":"SEARCH_ALL","features":[325]},{"name":"SEARCH_ALL_NO_SEQ","features":[325]},{"name":"SEARCH_ALTERNATE","features":[325]},{"name":"SEARCH_ALT_NO_SEQ","features":[325]},{"name":"SEARCH_PRIMARY","features":[325]},{"name":"SEARCH_PRI_NO_SEQ","features":[325]},{"name":"SENDCMDINPARAMS","features":[325]},{"name":"SENDCMDOUTPARAMS","features":[325]},{"name":"SERIAL_IOC_FCR_DMA_MODE","features":[325]},{"name":"SERIAL_IOC_FCR_FIFO_ENABLE","features":[325]},{"name":"SERIAL_IOC_FCR_RCVR_RESET","features":[325]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_LSB","features":[325]},{"name":"SERIAL_IOC_FCR_RCVR_TRIGGER_MSB","features":[325]},{"name":"SERIAL_IOC_FCR_RES1","features":[325]},{"name":"SERIAL_IOC_FCR_RES2","features":[325]},{"name":"SERIAL_IOC_FCR_XMIT_RESET","features":[325]},{"name":"SERIAL_IOC_MCR_DTR","features":[325]},{"name":"SERIAL_IOC_MCR_LOOP","features":[325]},{"name":"SERIAL_IOC_MCR_OUT1","features":[325]},{"name":"SERIAL_IOC_MCR_OUT2","features":[325]},{"name":"SERIAL_IOC_MCR_RTS","features":[325]},{"name":"SERIAL_NUMBER_LENGTH","features":[325]},{"name":"SET_DAX_ALLOC_ALIGNMENT_HINT_INPUT","features":[325]},{"name":"SET_DISK_ATTRIBUTES","features":[305,325]},{"name":"SET_PARTITION_INFORMATION","features":[325]},{"name":"SET_PARTITION_INFORMATION_EX","features":[325]},{"name":"SET_PURGE_FAILURE_MODE_DISABLED","features":[325]},{"name":"SET_PURGE_FAILURE_MODE_ENABLED","features":[325]},{"name":"SET_PURGE_FAILURE_MODE_INPUT","features":[325]},{"name":"SET_REPAIR_DISABLED_AND_BUGCHECK_ON_CORRUPT","features":[325]},{"name":"SET_REPAIR_ENABLED","features":[325]},{"name":"SET_REPAIR_VALID_MASK","features":[325]},{"name":"SET_REPAIR_WARN_ABOUT_DATA_LOSS","features":[325]},{"name":"SHRINK_VOLUME_INFORMATION","features":[325]},{"name":"SHRINK_VOLUME_REQUEST_TYPES","features":[325]},{"name":"SI_COPYFILE","features":[325]},{"name":"SMART_ABORT_OFFLINE_SELFTEST","features":[325]},{"name":"SMART_CMD","features":[325]},{"name":"SMART_CYL_HI","features":[325]},{"name":"SMART_CYL_LOW","features":[325]},{"name":"SMART_ERROR_NO_MEM","features":[325]},{"name":"SMART_EXTENDED_SELFTEST_CAPTIVE","features":[325]},{"name":"SMART_EXTENDED_SELFTEST_OFFLINE","features":[325]},{"name":"SMART_GET_VERSION","features":[325]},{"name":"SMART_IDE_ERROR","features":[325]},{"name":"SMART_INVALID_BUFFER","features":[325]},{"name":"SMART_INVALID_COMMAND","features":[325]},{"name":"SMART_INVALID_DRIVE","features":[325]},{"name":"SMART_INVALID_FLAG","features":[325]},{"name":"SMART_INVALID_IOCTL","features":[325]},{"name":"SMART_INVALID_REGISTER","features":[325]},{"name":"SMART_LOG_SECTOR_SIZE","features":[325]},{"name":"SMART_NOT_SUPPORTED","features":[325]},{"name":"SMART_NO_ERROR","features":[325]},{"name":"SMART_NO_IDE_DEVICE","features":[325]},{"name":"SMART_OFFLINE_ROUTINE_OFFLINE","features":[325]},{"name":"SMART_RCV_DRIVE_DATA","features":[325]},{"name":"SMART_RCV_DRIVE_DATA_EX","features":[325]},{"name":"SMART_READ_LOG","features":[325]},{"name":"SMART_SEND_DRIVE_COMMAND","features":[325]},{"name":"SMART_SHORT_SELFTEST_CAPTIVE","features":[325]},{"name":"SMART_SHORT_SELFTEST_OFFLINE","features":[325]},{"name":"SMART_WRITE_LOG","features":[325]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_INPUT","features":[325]},{"name":"SMB_SHARE_FLUSH_AND_PURGE_OUTPUT","features":[325]},{"name":"SONY_12_WO","features":[325]},{"name":"SONY_D2","features":[325]},{"name":"SONY_DTF","features":[325]},{"name":"SPACES_TRACKED_OFFSET_HEADER_FLAG","features":[325]},{"name":"SRB_TYPE_SCSI_REQUEST_BLOCK","features":[325]},{"name":"SRB_TYPE_STORAGE_REQUEST_BLOCK","features":[325]},{"name":"STARTING_LCN_INPUT_BUFFER","features":[325]},{"name":"STARTING_LCN_INPUT_BUFFER_EX","features":[325]},{"name":"STARTING_VCN_INPUT_BUFFER","features":[325]},{"name":"STK_9840","features":[325]},{"name":"STK_9940","features":[325]},{"name":"STK_DATA_D3","features":[325]},{"name":"STORAGE_ACCESS_ALIGNMENT_DESCRIPTOR","features":[325]},{"name":"STORAGE_ADAPTER_DESCRIPTOR","features":[305,325]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER","features":[325]},{"name":"STORAGE_ADAPTER_SERIAL_NUMBER_V1_MAX_LENGTH","features":[325]},{"name":"STORAGE_ADDRESS_TYPE_BTL8","features":[325]},{"name":"STORAGE_ALLOCATE_BC_STREAM_INPUT","features":[305,325]},{"name":"STORAGE_ALLOCATE_BC_STREAM_OUTPUT","features":[325]},{"name":"STORAGE_ASSOCIATION_TYPE","features":[325]},{"name":"STORAGE_ATTRIBUTE_ASYNC_EVENT_NOTIFICATION","features":[325]},{"name":"STORAGE_ATTRIBUTE_BLOCK_IO","features":[325]},{"name":"STORAGE_ATTRIBUTE_BYTE_ADDRESSABLE_IO","features":[325]},{"name":"STORAGE_ATTRIBUTE_DYNAMIC_PERSISTENCE","features":[325]},{"name":"STORAGE_ATTRIBUTE_MGMT","features":[325]},{"name":"STORAGE_ATTRIBUTE_MGMT_ACTION","features":[325]},{"name":"STORAGE_ATTRIBUTE_PERF_SIZE_INDEPENDENT","features":[325]},{"name":"STORAGE_ATTRIBUTE_VOLATILE","features":[325]},{"name":"STORAGE_BREAK_RESERVATION_REQUEST","features":[325]},{"name":"STORAGE_BUS_RESET_REQUEST","features":[325]},{"name":"STORAGE_COMPONENT_HEALTH_STATUS","features":[325]},{"name":"STORAGE_COMPONENT_ROLE_CACHE","features":[325]},{"name":"STORAGE_COMPONENT_ROLE_DATA","features":[325]},{"name":"STORAGE_COMPONENT_ROLE_TIERING","features":[325]},{"name":"STORAGE_COUNTER","features":[325]},{"name":"STORAGE_COUNTERS","features":[325]},{"name":"STORAGE_COUNTER_TYPE","features":[325]},{"name":"STORAGE_CRASH_TELEMETRY_REGKEY","features":[325]},{"name":"STORAGE_CRYPTO_ALGORITHM_ID","features":[325]},{"name":"STORAGE_CRYPTO_CAPABILITY","features":[325]},{"name":"STORAGE_CRYPTO_CAPABILITY_VERSION_1","features":[325]},{"name":"STORAGE_CRYPTO_DESCRIPTOR","features":[325]},{"name":"STORAGE_CRYPTO_DESCRIPTOR_VERSION_1","features":[325]},{"name":"STORAGE_CRYPTO_KEY_SIZE","features":[325]},{"name":"STORAGE_DESCRIPTOR_HEADER","features":[325]},{"name":"STORAGE_DEVICE_ATTRIBUTES_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_DESCRIPTOR","features":[305,324,325]},{"name":"STORAGE_DEVICE_FAULT_DOMAIN_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_FLAGS_PAGE_83_DEVICEGUID","features":[325]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_CONFLICT","features":[325]},{"name":"STORAGE_DEVICE_FLAGS_RANDOM_DEVICEGUID_REASON_NOHWID","features":[325]},{"name":"STORAGE_DEVICE_FORM_FACTOR","features":[325]},{"name":"STORAGE_DEVICE_ID_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_IO_CAPABILITY_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_LED_STATE_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_LOCATION_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_MANAGEMENT_STATUS","features":[325]},{"name":"STORAGE_DEVICE_MAX_OPERATIONAL_STATUS","features":[325]},{"name":"STORAGE_DEVICE_NUMA_NODE_UNKNOWN","features":[325]},{"name":"STORAGE_DEVICE_NUMA_PROPERTY","features":[325]},{"name":"STORAGE_DEVICE_NUMBER","features":[325]},{"name":"STORAGE_DEVICE_NUMBERS","features":[325]},{"name":"STORAGE_DEVICE_NUMBER_EX","features":[325]},{"name":"STORAGE_DEVICE_POWER_CAP","features":[325]},{"name":"STORAGE_DEVICE_POWER_CAP_UNITS","features":[325]},{"name":"STORAGE_DEVICE_POWER_CAP_VERSION_V1","features":[325]},{"name":"STORAGE_DEVICE_RESILIENCY_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY","features":[305,325]},{"name":"STORAGE_DEVICE_SELF_ENCRYPTION_PROPERTY_V2","features":[305,325]},{"name":"STORAGE_DEVICE_TELEMETRY_REGKEY","features":[325]},{"name":"STORAGE_DEVICE_TIERING_DESCRIPTOR","features":[325]},{"name":"STORAGE_DEVICE_UNSAFE_SHUTDOWN_COUNT","features":[325]},{"name":"STORAGE_DIAGNOSTIC_DATA","features":[325]},{"name":"STORAGE_DIAGNOSTIC_FLAG_ADAPTER_REQUEST","features":[325]},{"name":"STORAGE_DIAGNOSTIC_LEVEL","features":[325]},{"name":"STORAGE_DIAGNOSTIC_REQUEST","features":[325]},{"name":"STORAGE_DIAGNOSTIC_TARGET_TYPE","features":[325]},{"name":"STORAGE_DISK_HEALTH_STATUS","features":[325]},{"name":"STORAGE_DISK_OPERATIONAL_STATUS","features":[325]},{"name":"STORAGE_ENCRYPTION_TYPE","features":[325]},{"name":"STORAGE_EVENT_DEVICE_OPERATION","features":[325]},{"name":"STORAGE_EVENT_DEVICE_STATUS","features":[325]},{"name":"STORAGE_EVENT_MEDIA_STATUS","features":[325]},{"name":"STORAGE_EVENT_NOTIFICATION","features":[325]},{"name":"STORAGE_EVENT_NOTIFICATION_VERSION_V1","features":[325]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG","features":[305,325]},{"name":"STORAGE_FAILURE_PREDICTION_CONFIG_V1","features":[325]},{"name":"STORAGE_FRU_ID_DESCRIPTOR","features":[325]},{"name":"STORAGE_GET_BC_PROPERTIES_OUTPUT","features":[325]},{"name":"STORAGE_HOTPLUG_INFO","features":[305,325]},{"name":"STORAGE_HW_ENDURANCE_DATA_DESCRIPTOR","features":[325]},{"name":"STORAGE_HW_ENDURANCE_INFO","features":[325]},{"name":"STORAGE_HW_FIRMWARE_ACTIVATE","features":[325]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD","features":[325]},{"name":"STORAGE_HW_FIRMWARE_DOWNLOAD_V2","features":[325]},{"name":"STORAGE_HW_FIRMWARE_INFO","features":[305,325]},{"name":"STORAGE_HW_FIRMWARE_INFO_QUERY","features":[325]},{"name":"STORAGE_HW_FIRMWARE_INVALID_SLOT","features":[325]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_CONTROLLER","features":[325]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_FIRST_SEGMENT","features":[325]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_LAST_SEGMENT","features":[325]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_REPLACE_EXISTING_IMAGE","features":[325]},{"name":"STORAGE_HW_FIRMWARE_REQUEST_FLAG_SWITCH_TO_EXISTING_FIRMWARE","features":[325]},{"name":"STORAGE_HW_FIRMWARE_REVISION_LENGTH","features":[325]},{"name":"STORAGE_HW_FIRMWARE_SLOT_INFO","features":[325]},{"name":"STORAGE_IDENTIFIER","features":[325]},{"name":"STORAGE_IDENTIFIER_CODE_SET","features":[325]},{"name":"STORAGE_IDENTIFIER_TYPE","features":[325]},{"name":"STORAGE_IDLE_POWER","features":[325]},{"name":"STORAGE_IDLE_POWERUP_REASON","features":[325]},{"name":"STORAGE_IDLE_POWERUP_REASON_VERSION_V1","features":[325]},{"name":"STORAGE_ID_NAA_FORMAT","features":[325]},{"name":"STORAGE_LB_PROVISIONING_MAP_RESOURCES","features":[325]},{"name":"STORAGE_MEDIA_SERIAL_NUMBER_DATA","features":[325]},{"name":"STORAGE_MEDIA_TYPE","features":[325]},{"name":"STORAGE_MEDIUM_PRODUCT_TYPE_DESCRIPTOR","features":[325]},{"name":"STORAGE_MINIPORT_DESCRIPTOR","features":[305,325]},{"name":"STORAGE_OFFLOAD_MAX_TOKEN_LENGTH","features":[325]},{"name":"STORAGE_OFFLOAD_READ_OUTPUT","features":[325]},{"name":"STORAGE_OFFLOAD_READ_RANGE_TRUNCATED","features":[325]},{"name":"STORAGE_OFFLOAD_TOKEN","features":[325]},{"name":"STORAGE_OFFLOAD_TOKEN_ID_LENGTH","features":[325]},{"name":"STORAGE_OFFLOAD_TOKEN_INVALID","features":[325]},{"name":"STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA","features":[325]},{"name":"STORAGE_OFFLOAD_WRITE_OUTPUT","features":[325]},{"name":"STORAGE_OFFLOAD_WRITE_RANGE_TRUNCATED","features":[325]},{"name":"STORAGE_OPERATIONAL_REASON","features":[325]},{"name":"STORAGE_OPERATIONAL_STATUS_REASON","features":[325]},{"name":"STORAGE_PHYSICAL_ADAPTER_DATA","features":[305,325]},{"name":"STORAGE_PHYSICAL_DEVICE_DATA","features":[325]},{"name":"STORAGE_PHYSICAL_NODE_DATA","features":[325]},{"name":"STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR","features":[325]},{"name":"STORAGE_PORT_CODE_SET","features":[325]},{"name":"STORAGE_POWERUP_REASON_TYPE","features":[325]},{"name":"STORAGE_PREDICT_FAILURE","features":[325]},{"name":"STORAGE_PRIORITY_HINT_SUPPORT","features":[325]},{"name":"STORAGE_PRIORITY_HINT_SUPPORTED","features":[325]},{"name":"STORAGE_PROPERTY_ID","features":[325]},{"name":"STORAGE_PROPERTY_QUERY","features":[325]},{"name":"STORAGE_PROPERTY_SET","features":[325]},{"name":"STORAGE_PROTOCOL_ATA_DATA_TYPE","features":[325]},{"name":"STORAGE_PROTOCOL_COMMAND","features":[325]},{"name":"STORAGE_PROTOCOL_COMMAND_FLAG_ADAPTER_REQUEST","features":[325]},{"name":"STORAGE_PROTOCOL_COMMAND_LENGTH_NVME","features":[325]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR","features":[325]},{"name":"STORAGE_PROTOCOL_DATA_DESCRIPTOR_EXT","features":[325]},{"name":"STORAGE_PROTOCOL_DATA_SUBVALUE_GET_LOG_PAGE","features":[325]},{"name":"STORAGE_PROTOCOL_NVME_DATA_TYPE","features":[325]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA","features":[325]},{"name":"STORAGE_PROTOCOL_SPECIFIC_DATA_EXT","features":[325]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_ADMIN_COMMAND","features":[325]},{"name":"STORAGE_PROTOCOL_SPECIFIC_NVME_NVM_COMMAND","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_BUSY","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_DATA_OVERRUN","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_ERROR","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_INSUFFICIENT_RESOURCES","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_INVALID_REQUEST","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_NOT_SUPPORTED","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_NO_DEVICE","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_PENDING","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_SUCCESS","features":[325]},{"name":"STORAGE_PROTOCOL_STATUS_THROTTLED_REQUEST","features":[325]},{"name":"STORAGE_PROTOCOL_STRUCTURE_VERSION","features":[325]},{"name":"STORAGE_PROTOCOL_TYPE","features":[325]},{"name":"STORAGE_PROTOCOL_UFS_DATA_TYPE","features":[325]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV1_ENTRY","features":[518,325]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_LEV2_ENTRY","features":[518,325]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_REQUEST","features":[325]},{"name":"STORAGE_QUERY_DEPENDENT_VOLUME_RESPONSE","features":[518,325]},{"name":"STORAGE_QUERY_TYPE","features":[325]},{"name":"STORAGE_READ_CAPACITY","features":[325]},{"name":"STORAGE_REINITIALIZE_MEDIA","features":[325]},{"name":"STORAGE_RESERVE_ID","features":[325]},{"name":"STORAGE_RPMB_COMMAND_TYPE","features":[325]},{"name":"STORAGE_RPMB_DATA_FRAME","features":[325]},{"name":"STORAGE_RPMB_DESCRIPTOR","features":[325]},{"name":"STORAGE_RPMB_DESCRIPTOR_VERSION_1","features":[325]},{"name":"STORAGE_RPMB_FRAME_TYPE","features":[325]},{"name":"STORAGE_RPMB_MINIMUM_RELIABLE_WRITE_SIZE","features":[325]},{"name":"STORAGE_SANITIZE_METHOD","features":[325]},{"name":"STORAGE_SET_TYPE","features":[325]},{"name":"STORAGE_SPEC_VERSION","features":[325]},{"name":"STORAGE_SUPPORTED_FEATURES_BYPASS_IO","features":[325]},{"name":"STORAGE_SUPPORTED_FEATURES_MASK","features":[325]},{"name":"STORAGE_TEMPERATURE_DATA_DESCRIPTOR","features":[305,325]},{"name":"STORAGE_TEMPERATURE_INFO","features":[305,325]},{"name":"STORAGE_TEMPERATURE_THRESHOLD","features":[305,325]},{"name":"STORAGE_TEMPERATURE_THRESHOLD_FLAG_ADAPTER_REQUEST","features":[325]},{"name":"STORAGE_TEMPERATURE_VALUE_NOT_REPORTED","features":[325]},{"name":"STORAGE_TIER","features":[325]},{"name":"STORAGE_TIER_CLASS","features":[325]},{"name":"STORAGE_TIER_DESCRIPTION_LENGTH","features":[325]},{"name":"STORAGE_TIER_FLAG_NO_SEEK_PENALTY","features":[325]},{"name":"STORAGE_TIER_FLAG_PARITY","features":[325]},{"name":"STORAGE_TIER_FLAG_READ_CACHE","features":[325]},{"name":"STORAGE_TIER_FLAG_SMR","features":[325]},{"name":"STORAGE_TIER_FLAG_WRITE_BACK_CACHE","features":[325]},{"name":"STORAGE_TIER_MEDIA_TYPE","features":[325]},{"name":"STORAGE_TIER_NAME_LENGTH","features":[325]},{"name":"STORAGE_TIER_REGION","features":[325]},{"name":"STORAGE_WRITE_CACHE_PROPERTY","features":[305,325]},{"name":"STORAGE_ZONED_DEVICE_DESCRIPTOR","features":[305,325]},{"name":"STORAGE_ZONED_DEVICE_TYPES","features":[325]},{"name":"STORAGE_ZONES_ATTRIBUTES","features":[325]},{"name":"STORAGE_ZONE_CONDITION","features":[325]},{"name":"STORAGE_ZONE_DESCRIPTOR","features":[305,325]},{"name":"STORAGE_ZONE_GROUP","features":[325]},{"name":"STORAGE_ZONE_TYPES","features":[325]},{"name":"STORATTRIBUTE_MANAGEMENT_STATE","features":[325]},{"name":"STORATTRIBUTE_NONE","features":[325]},{"name":"STREAMS_ASSOCIATE_ID_CLEAR","features":[325]},{"name":"STREAMS_ASSOCIATE_ID_INPUT_BUFFER","features":[325]},{"name":"STREAMS_ASSOCIATE_ID_SET","features":[325]},{"name":"STREAMS_INVALID_ID","features":[325]},{"name":"STREAMS_MAX_ID","features":[325]},{"name":"STREAMS_QUERY_ID_OUTPUT_BUFFER","features":[325]},{"name":"STREAMS_QUERY_PARAMETERS_OUTPUT_BUFFER","features":[325]},{"name":"STREAM_CLEAR_ENCRYPTION","features":[325]},{"name":"STREAM_EXTENT_ENTRY","features":[325]},{"name":"STREAM_EXTENT_ENTRY_ALL_EXTENTS","features":[325]},{"name":"STREAM_EXTENT_ENTRY_AS_RETRIEVAL_POINTERS","features":[325]},{"name":"STREAM_INFORMATION_ENTRY","features":[325]},{"name":"STREAM_LAYOUT_ENTRY","features":[325]},{"name":"STREAM_LAYOUT_ENTRY_HAS_INFORMATION","features":[325]},{"name":"STREAM_LAYOUT_ENTRY_IMMOVABLE","features":[325]},{"name":"STREAM_LAYOUT_ENTRY_NO_CLUSTERS_ALLOCATED","features":[325]},{"name":"STREAM_LAYOUT_ENTRY_PINNED","features":[325]},{"name":"STREAM_LAYOUT_ENTRY_RESIDENT","features":[325]},{"name":"STREAM_SET_ENCRYPTION","features":[325]},{"name":"SYQUEST_EZ135","features":[325]},{"name":"SYQUEST_EZFLYER","features":[325]},{"name":"SYQUEST_SYJET","features":[325]},{"name":"ScmBusFirmwareActivationState_Armed","features":[325]},{"name":"ScmBusFirmwareActivationState_Busy","features":[325]},{"name":"ScmBusFirmwareActivationState_Idle","features":[325]},{"name":"ScmBusProperty_DedicatedMemoryInfo","features":[325]},{"name":"ScmBusProperty_DedicatedMemoryState","features":[325]},{"name":"ScmBusProperty_Max","features":[325]},{"name":"ScmBusProperty_RuntimeFwActivationInfo","features":[325]},{"name":"ScmBusQuery_Descriptor","features":[325]},{"name":"ScmBusQuery_IsSupported","features":[325]},{"name":"ScmBusQuery_Max","features":[325]},{"name":"ScmBusSet_Descriptor","features":[325]},{"name":"ScmBusSet_IsSupported","features":[325]},{"name":"ScmBusSet_Max","features":[325]},{"name":"ScmPdFirmwareActivationState_Armed","features":[325]},{"name":"ScmPdFirmwareActivationState_Busy","features":[325]},{"name":"ScmPdFirmwareActivationState_Idle","features":[325]},{"name":"ScmPdLastFwActivaitonStatus_ActivationInProgress","features":[325]},{"name":"ScmPdLastFwActivaitonStatus_FwUnsupported","features":[325]},{"name":"ScmPdLastFwActivaitonStatus_Retry","features":[325]},{"name":"ScmPdLastFwActivaitonStatus_UnknownError","features":[325]},{"name":"ScmPdLastFwActivationStatus_ColdRebootRequired","features":[325]},{"name":"ScmPdLastFwActivationStatus_FwNotFound","features":[325]},{"name":"ScmPdLastFwActivationStatus_None","features":[325]},{"name":"ScmPdLastFwActivationStatus_Success","features":[325]},{"name":"ScmPhysicalDeviceHealth_Healthy","features":[325]},{"name":"ScmPhysicalDeviceHealth_Max","features":[325]},{"name":"ScmPhysicalDeviceHealth_Unhealthy","features":[325]},{"name":"ScmPhysicalDeviceHealth_Unknown","features":[325]},{"name":"ScmPhysicalDeviceHealth_Warning","features":[325]},{"name":"ScmPhysicalDeviceOpReason_BackgroundOperation","features":[325]},{"name":"ScmPhysicalDeviceOpReason_Component","features":[325]},{"name":"ScmPhysicalDeviceOpReason_Configuration","features":[325]},{"name":"ScmPhysicalDeviceOpReason_DataPersistenceLossImminent","features":[325]},{"name":"ScmPhysicalDeviceOpReason_DeviceController","features":[325]},{"name":"ScmPhysicalDeviceOpReason_DisabledByPlatform","features":[325]},{"name":"ScmPhysicalDeviceOpReason_EnergySource","features":[325]},{"name":"ScmPhysicalDeviceOpReason_ExcessiveTemperature","features":[325]},{"name":"ScmPhysicalDeviceOpReason_FatalError","features":[325]},{"name":"ScmPhysicalDeviceOpReason_HealthCheck","features":[325]},{"name":"ScmPhysicalDeviceOpReason_InternalFailure","features":[325]},{"name":"ScmPhysicalDeviceOpReason_InvalidFirmware","features":[325]},{"name":"ScmPhysicalDeviceOpReason_LostData","features":[325]},{"name":"ScmPhysicalDeviceOpReason_LostDataPersistence","features":[325]},{"name":"ScmPhysicalDeviceOpReason_LostWritePersistence","features":[325]},{"name":"ScmPhysicalDeviceOpReason_Max","features":[325]},{"name":"ScmPhysicalDeviceOpReason_Media","features":[325]},{"name":"ScmPhysicalDeviceOpReason_MediaController","features":[325]},{"name":"ScmPhysicalDeviceOpReason_MediaRemainingSpareBlock","features":[325]},{"name":"ScmPhysicalDeviceOpReason_PerformanceDegradation","features":[325]},{"name":"ScmPhysicalDeviceOpReason_PermanentError","features":[325]},{"name":"ScmPhysicalDeviceOpReason_ThresholdExceeded","features":[325]},{"name":"ScmPhysicalDeviceOpReason_Unknown","features":[325]},{"name":"ScmPhysicalDeviceOpReason_WritePersistenceLossImminent","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_HardwareError","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_InService","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_Max","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_Missing","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_NotUsable","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_Ok","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_PredictingFailure","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_TransientError","features":[325]},{"name":"ScmPhysicalDeviceOpStatus_Unknown","features":[325]},{"name":"ScmPhysicalDeviceProperty_DeviceHandle","features":[325]},{"name":"ScmPhysicalDeviceProperty_DeviceInfo","features":[325]},{"name":"ScmPhysicalDeviceProperty_DeviceSpecificInfo","features":[325]},{"name":"ScmPhysicalDeviceProperty_FirmwareInfo","features":[325]},{"name":"ScmPhysicalDeviceProperty_FruIdString","features":[325]},{"name":"ScmPhysicalDeviceProperty_LocationString","features":[325]},{"name":"ScmPhysicalDeviceProperty_ManagementStatus","features":[325]},{"name":"ScmPhysicalDeviceProperty_Max","features":[325]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationArmState","features":[325]},{"name":"ScmPhysicalDeviceProperty_RuntimeFwActivationInfo","features":[325]},{"name":"ScmPhysicalDeviceQuery_Descriptor","features":[325]},{"name":"ScmPhysicalDeviceQuery_IsSupported","features":[325]},{"name":"ScmPhysicalDeviceQuery_Max","features":[325]},{"name":"ScmPhysicalDeviceReinit_ColdBootNeeded","features":[325]},{"name":"ScmPhysicalDeviceReinit_Max","features":[325]},{"name":"ScmPhysicalDeviceReinit_RebootNeeded","features":[325]},{"name":"ScmPhysicalDeviceReinit_Success","features":[325]},{"name":"ScmPhysicalDeviceSet_Descriptor","features":[325]},{"name":"ScmPhysicalDeviceSet_IsSupported","features":[325]},{"name":"ScmPhysicalDeviceSet_Max","features":[325]},{"name":"ScmRegionFlagLabel","features":[325]},{"name":"ScmRegionFlagNone","features":[325]},{"name":"ShrinkAbort","features":[325]},{"name":"ShrinkCommit","features":[325]},{"name":"ShrinkPrepare","features":[325]},{"name":"SmrGcActionPause","features":[325]},{"name":"SmrGcActionStart","features":[325]},{"name":"SmrGcActionStartFullSpeed","features":[325]},{"name":"SmrGcActionStop","features":[325]},{"name":"SmrGcMethodCompaction","features":[325]},{"name":"SmrGcMethodCompression","features":[325]},{"name":"SmrGcMethodRotation","features":[325]},{"name":"SmrGcStateActive","features":[325]},{"name":"SmrGcStateActiveFullSpeed","features":[325]},{"name":"SmrGcStateInactive","features":[325]},{"name":"SmrGcStatePaused","features":[325]},{"name":"StorAttributeMgmt_ClearAttribute","features":[325]},{"name":"StorAttributeMgmt_ResetAttribute","features":[325]},{"name":"StorAttributeMgmt_SetAttribute","features":[325]},{"name":"StorRpmbAuthenticatedDeviceConfigRead","features":[325]},{"name":"StorRpmbAuthenticatedDeviceConfigWrite","features":[325]},{"name":"StorRpmbAuthenticatedRead","features":[325]},{"name":"StorRpmbAuthenticatedWrite","features":[325]},{"name":"StorRpmbProgramAuthKey","features":[325]},{"name":"StorRpmbQueryWriteCounter","features":[325]},{"name":"StorRpmbReadResultRequest","features":[325]},{"name":"StorageAccessAlignmentProperty","features":[325]},{"name":"StorageAdapterCryptoProperty","features":[325]},{"name":"StorageAdapterPhysicalTopologyProperty","features":[325]},{"name":"StorageAdapterProperty","features":[325]},{"name":"StorageAdapterProtocolSpecificProperty","features":[325]},{"name":"StorageAdapterRpmbProperty","features":[325]},{"name":"StorageAdapterSerialNumberProperty","features":[325]},{"name":"StorageAdapterTemperatureProperty","features":[325]},{"name":"StorageCounterTypeFlushLatency100NSMax","features":[325]},{"name":"StorageCounterTypeLoadUnloadCycleCount","features":[325]},{"name":"StorageCounterTypeLoadUnloadCycleCountMax","features":[325]},{"name":"StorageCounterTypeManufactureDate","features":[325]},{"name":"StorageCounterTypeMax","features":[325]},{"name":"StorageCounterTypePowerOnHours","features":[325]},{"name":"StorageCounterTypeReadErrorsCorrected","features":[325]},{"name":"StorageCounterTypeReadErrorsTotal","features":[325]},{"name":"StorageCounterTypeReadErrorsUncorrected","features":[325]},{"name":"StorageCounterTypeReadLatency100NSMax","features":[325]},{"name":"StorageCounterTypeStartStopCycleCount","features":[325]},{"name":"StorageCounterTypeStartStopCycleCountMax","features":[325]},{"name":"StorageCounterTypeTemperatureCelsius","features":[325]},{"name":"StorageCounterTypeTemperatureCelsiusMax","features":[325]},{"name":"StorageCounterTypeUnknown","features":[325]},{"name":"StorageCounterTypeWearPercentage","features":[325]},{"name":"StorageCounterTypeWearPercentageMax","features":[325]},{"name":"StorageCounterTypeWearPercentageWarning","features":[325]},{"name":"StorageCounterTypeWriteErrorsCorrected","features":[325]},{"name":"StorageCounterTypeWriteErrorsTotal","features":[325]},{"name":"StorageCounterTypeWriteErrorsUncorrected","features":[325]},{"name":"StorageCounterTypeWriteLatency100NSMax","features":[325]},{"name":"StorageCryptoAlgorithmAESECB","features":[325]},{"name":"StorageCryptoAlgorithmBitlockerAESCBC","features":[325]},{"name":"StorageCryptoAlgorithmESSIVAESCBC","features":[325]},{"name":"StorageCryptoAlgorithmMax","features":[325]},{"name":"StorageCryptoAlgorithmUnknown","features":[325]},{"name":"StorageCryptoAlgorithmXTSAES","features":[325]},{"name":"StorageCryptoKeySize128Bits","features":[325]},{"name":"StorageCryptoKeySize192Bits","features":[325]},{"name":"StorageCryptoKeySize256Bits","features":[325]},{"name":"StorageCryptoKeySize512Bits","features":[325]},{"name":"StorageCryptoKeySizeUnknown","features":[325]},{"name":"StorageDeviceAttributesProperty","features":[325]},{"name":"StorageDeviceCopyOffloadProperty","features":[325]},{"name":"StorageDeviceDeviceTelemetryProperty","features":[325]},{"name":"StorageDeviceEnduranceProperty","features":[325]},{"name":"StorageDeviceIdProperty","features":[325]},{"name":"StorageDeviceIoCapabilityProperty","features":[325]},{"name":"StorageDeviceLBProvisioningProperty","features":[325]},{"name":"StorageDeviceLedStateProperty","features":[325]},{"name":"StorageDeviceLocationProperty","features":[325]},{"name":"StorageDeviceManagementStatus","features":[325]},{"name":"StorageDeviceMediumProductType","features":[325]},{"name":"StorageDeviceNumaProperty","features":[325]},{"name":"StorageDevicePhysicalTopologyProperty","features":[325]},{"name":"StorageDevicePowerCapUnitsMilliwatts","features":[325]},{"name":"StorageDevicePowerCapUnitsPercent","features":[325]},{"name":"StorageDevicePowerProperty","features":[325]},{"name":"StorageDeviceProperty","features":[325]},{"name":"StorageDeviceProtocolSpecificProperty","features":[325]},{"name":"StorageDeviceResiliencyProperty","features":[325]},{"name":"StorageDeviceSeekPenaltyProperty","features":[325]},{"name":"StorageDeviceSelfEncryptionProperty","features":[325]},{"name":"StorageDeviceTemperatureProperty","features":[325]},{"name":"StorageDeviceTrimProperty","features":[325]},{"name":"StorageDeviceUniqueIdProperty","features":[325]},{"name":"StorageDeviceUnsafeShutdownCount","features":[325]},{"name":"StorageDeviceWriteAggregationProperty","features":[325]},{"name":"StorageDeviceWriteCacheProperty","features":[325]},{"name":"StorageDeviceZonedDeviceProperty","features":[325]},{"name":"StorageDiagnosticLevelDefault","features":[325]},{"name":"StorageDiagnosticLevelMax","features":[325]},{"name":"StorageDiagnosticTargetTypeHbaFirmware","features":[325]},{"name":"StorageDiagnosticTargetTypeMax","features":[325]},{"name":"StorageDiagnosticTargetTypeMiniport","features":[325]},{"name":"StorageDiagnosticTargetTypePort","features":[325]},{"name":"StorageDiagnosticTargetTypeUndefined","features":[325]},{"name":"StorageEncryptionTypeEDrive","features":[325]},{"name":"StorageEncryptionTypeTcgOpal","features":[325]},{"name":"StorageEncryptionTypeUnknown","features":[325]},{"name":"StorageFruIdProperty","features":[325]},{"name":"StorageIdAssocDevice","features":[325]},{"name":"StorageIdAssocPort","features":[325]},{"name":"StorageIdAssocTarget","features":[325]},{"name":"StorageIdCodeSetAscii","features":[325]},{"name":"StorageIdCodeSetBinary","features":[325]},{"name":"StorageIdCodeSetReserved","features":[325]},{"name":"StorageIdCodeSetUtf8","features":[325]},{"name":"StorageIdNAAFormatIEEEERegisteredExtended","features":[325]},{"name":"StorageIdNAAFormatIEEEExtended","features":[325]},{"name":"StorageIdNAAFormatIEEERegistered","features":[325]},{"name":"StorageIdTypeEUI64","features":[325]},{"name":"StorageIdTypeFCPHName","features":[325]},{"name":"StorageIdTypeLogicalUnitGroup","features":[325]},{"name":"StorageIdTypeMD5LogicalUnitIdentifier","features":[325]},{"name":"StorageIdTypePortRelative","features":[325]},{"name":"StorageIdTypeScsiNameString","features":[325]},{"name":"StorageIdTypeTargetPortGroup","features":[325]},{"name":"StorageIdTypeVendorId","features":[325]},{"name":"StorageIdTypeVendorSpecific","features":[325]},{"name":"StorageMiniportProperty","features":[325]},{"name":"StoragePortCodeSetATAport","features":[325]},{"name":"StoragePortCodeSetReserved","features":[325]},{"name":"StoragePortCodeSetSBP2port","features":[325]},{"name":"StoragePortCodeSetSCSIport","features":[325]},{"name":"StoragePortCodeSetSDport","features":[325]},{"name":"StoragePortCodeSetSpaceport","features":[325]},{"name":"StoragePortCodeSetStorport","features":[325]},{"name":"StoragePortCodeSetUSBport","features":[325]},{"name":"StoragePowerupDeviceAttention","features":[325]},{"name":"StoragePowerupIO","features":[325]},{"name":"StoragePowerupUnknown","features":[325]},{"name":"StorageReserveIdHard","features":[325]},{"name":"StorageReserveIdMax","features":[325]},{"name":"StorageReserveIdNone","features":[325]},{"name":"StorageReserveIdSoft","features":[325]},{"name":"StorageReserveIdUpdateScratch","features":[325]},{"name":"StorageRpmbFrameTypeMax","features":[325]},{"name":"StorageRpmbFrameTypeStandard","features":[325]},{"name":"StorageRpmbFrameTypeUnknown","features":[325]},{"name":"StorageSanitizeMethodBlockErase","features":[325]},{"name":"StorageSanitizeMethodCryptoErase","features":[325]},{"name":"StorageSanitizeMethodDefault","features":[325]},{"name":"StorageTierClassCapacity","features":[325]},{"name":"StorageTierClassMax","features":[325]},{"name":"StorageTierClassPerformance","features":[325]},{"name":"StorageTierClassUnspecified","features":[325]},{"name":"StorageTierMediaTypeDisk","features":[325]},{"name":"StorageTierMediaTypeMax","features":[325]},{"name":"StorageTierMediaTypeScm","features":[325]},{"name":"StorageTierMediaTypeSsd","features":[325]},{"name":"StorageTierMediaTypeUnspecified","features":[325]},{"name":"TAPE_GET_STATISTICS","features":[325]},{"name":"TAPE_RESET_STATISTICS","features":[325]},{"name":"TAPE_RETURN_ENV_INFO","features":[325]},{"name":"TAPE_RETURN_STATISTICS","features":[325]},{"name":"TAPE_STATISTICS","features":[325]},{"name":"TCCollectionApplicationRequested","features":[325]},{"name":"TCCollectionBugCheck","features":[325]},{"name":"TCCollectionDeviceRequested","features":[325]},{"name":"TC_DEVICEDUMP_SUBSECTION_DESC_LENGTH","features":[325]},{"name":"TC_PUBLIC_DATA_TYPE_ATAGP","features":[325]},{"name":"TC_PUBLIC_DATA_TYPE_ATASMART","features":[325]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG","features":[325]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_GPLOG_MAX","features":[325]},{"name":"TC_PUBLIC_DEVICEDUMP_CONTENT_SMART","features":[325]},{"name":"TELEMETRY_COMMAND_SIZE","features":[325]},{"name":"TXFS_CREATE_MINIVERSION_INFO","features":[325]},{"name":"TXFS_GET_METADATA_INFO_OUT","features":[325]},{"name":"TXFS_GET_TRANSACTED_VERSION","features":[325]},{"name":"TXFS_LIST_TRANSACTIONS","features":[325]},{"name":"TXFS_LIST_TRANSACTIONS_ENTRY","features":[325]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES","features":[325]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY","features":[325]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_CREATED","features":[325]},{"name":"TXFS_LIST_TRANSACTION_LOCKED_FILES_ENTRY_FLAG_DELETED","features":[325]},{"name":"TXFS_LOGGING_MODE_FULL","features":[325]},{"name":"TXFS_LOGGING_MODE_SIMPLE","features":[325]},{"name":"TXFS_MODIFY_RM","features":[325]},{"name":"TXFS_QUERY_RM_INFORMATION","features":[325]},{"name":"TXFS_READ_BACKUP_INFORMATION_OUT","features":[325]},{"name":"TXFS_RMF_LAGS","features":[325]},{"name":"TXFS_RM_FLAG_DO_NOT_RESET_RM_AT_NEXT_START","features":[325]},{"name":"TXFS_RM_FLAG_ENFORCE_MINIMUM_SIZE","features":[325]},{"name":"TXFS_RM_FLAG_GROW_LOG","features":[325]},{"name":"TXFS_RM_FLAG_LOGGING_MODE","features":[325]},{"name":"TXFS_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[325]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[325]},{"name":"TXFS_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[325]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[325]},{"name":"TXFS_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[325]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[325]},{"name":"TXFS_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[325]},{"name":"TXFS_RM_FLAG_PREFER_AVAILABILITY","features":[325]},{"name":"TXFS_RM_FLAG_PREFER_CONSISTENCY","features":[325]},{"name":"TXFS_RM_FLAG_PRESERVE_CHANGES","features":[325]},{"name":"TXFS_RM_FLAG_RENAME_RM","features":[325]},{"name":"TXFS_RM_FLAG_RESET_RM_AT_NEXT_START","features":[325]},{"name":"TXFS_RM_FLAG_SHRINK_LOG","features":[325]},{"name":"TXFS_RM_STATE_ACTIVE","features":[325]},{"name":"TXFS_RM_STATE_NOT_STARTED","features":[325]},{"name":"TXFS_RM_STATE_SHUTTING_DOWN","features":[325]},{"name":"TXFS_RM_STATE_STARTING","features":[325]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_REDO_LSN","features":[325]},{"name":"TXFS_ROLLFORWARD_REDO_FLAG_USE_LAST_VIRTUAL_CLOCK","features":[325]},{"name":"TXFS_ROLLFORWARD_REDO_INFORMATION","features":[325]},{"name":"TXFS_SAVEPOINT_CLEAR","features":[325]},{"name":"TXFS_SAVEPOINT_CLEAR_ALL","features":[325]},{"name":"TXFS_SAVEPOINT_INFORMATION","features":[305,325]},{"name":"TXFS_SAVEPOINT_ROLLBACK","features":[325]},{"name":"TXFS_SAVEPOINT_SET","features":[325]},{"name":"TXFS_START_RM_FLAG_LOGGING_MODE","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_AUTO_SHRINK_PERCENTAGE","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MAX","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_COUNT_MIN","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_CONTAINER_SIZE","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_NUM_CONTAINERS","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_GROWTH_INCREMENT_PERCENT","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MAX","features":[325]},{"name":"TXFS_START_RM_FLAG_LOG_NO_CONTAINER_COUNT_MIN","features":[325]},{"name":"TXFS_START_RM_FLAG_PREFER_AVAILABILITY","features":[325]},{"name":"TXFS_START_RM_FLAG_PREFER_CONSISTENCY","features":[325]},{"name":"TXFS_START_RM_FLAG_PRESERVE_CHANGES","features":[325]},{"name":"TXFS_START_RM_FLAG_RECOVER_BEST_EFFORT","features":[325]},{"name":"TXFS_START_RM_INFORMATION","features":[325]},{"name":"TXFS_TRANSACTED_VERSION_NONTRANSACTED","features":[325]},{"name":"TXFS_TRANSACTED_VERSION_UNCOMMITTED","features":[325]},{"name":"TXFS_TRANSACTION_ACTIVE_INFO","features":[305,325]},{"name":"TXFS_TRANSACTION_STATE_ACTIVE","features":[325]},{"name":"TXFS_TRANSACTION_STATE_NONE","features":[325]},{"name":"TXFS_TRANSACTION_STATE_NOTACTIVE","features":[325]},{"name":"TXFS_TRANSACTION_STATE_PREPARED","features":[325]},{"name":"TXFS_WRITE_BACKUP_INFORMATION","features":[325]},{"name":"Travan","features":[325]},{"name":"UNDEFINE_ALTERNATE","features":[325]},{"name":"UNDEFINE_PRIMARY","features":[325]},{"name":"UNLOCK_ELEMENT","features":[325]},{"name":"UNRECOVERED_READS_VALID","features":[325]},{"name":"UNRECOVERED_WRITES_VALID","features":[325]},{"name":"USN_DELETE_FLAGS","features":[325]},{"name":"USN_DELETE_FLAG_DELETE","features":[325]},{"name":"USN_DELETE_FLAG_NOTIFY","features":[325]},{"name":"USN_DELETE_VALID_FLAGS","features":[325]},{"name":"USN_JOURNAL_DATA_V0","features":[325]},{"name":"USN_JOURNAL_DATA_V1","features":[325]},{"name":"USN_JOURNAL_DATA_V2","features":[325]},{"name":"USN_PAGE_SIZE","features":[325]},{"name":"USN_RANGE_TRACK_OUTPUT","features":[325]},{"name":"USN_REASON_BASIC_INFO_CHANGE","features":[325]},{"name":"USN_REASON_CLOSE","features":[325]},{"name":"USN_REASON_COMPRESSION_CHANGE","features":[325]},{"name":"USN_REASON_DATA_EXTEND","features":[325]},{"name":"USN_REASON_DATA_OVERWRITE","features":[325]},{"name":"USN_REASON_DATA_TRUNCATION","features":[325]},{"name":"USN_REASON_DESIRED_STORAGE_CLASS_CHANGE","features":[325]},{"name":"USN_REASON_EA_CHANGE","features":[325]},{"name":"USN_REASON_ENCRYPTION_CHANGE","features":[325]},{"name":"USN_REASON_FILE_CREATE","features":[325]},{"name":"USN_REASON_FILE_DELETE","features":[325]},{"name":"USN_REASON_HARD_LINK_CHANGE","features":[325]},{"name":"USN_REASON_INDEXABLE_CHANGE","features":[325]},{"name":"USN_REASON_INTEGRITY_CHANGE","features":[325]},{"name":"USN_REASON_NAMED_DATA_EXTEND","features":[325]},{"name":"USN_REASON_NAMED_DATA_OVERWRITE","features":[325]},{"name":"USN_REASON_NAMED_DATA_TRUNCATION","features":[325]},{"name":"USN_REASON_OBJECT_ID_CHANGE","features":[325]},{"name":"USN_REASON_RENAME_NEW_NAME","features":[325]},{"name":"USN_REASON_RENAME_OLD_NAME","features":[325]},{"name":"USN_REASON_REPARSE_POINT_CHANGE","features":[325]},{"name":"USN_REASON_SECURITY_CHANGE","features":[325]},{"name":"USN_REASON_STREAM_CHANGE","features":[325]},{"name":"USN_REASON_TRANSACTED_CHANGE","features":[325]},{"name":"USN_RECORD_COMMON_HEADER","features":[325]},{"name":"USN_RECORD_EXTENT","features":[325]},{"name":"USN_RECORD_UNION","features":[324,325]},{"name":"USN_RECORD_V2","features":[325]},{"name":"USN_RECORD_V3","features":[324,325]},{"name":"USN_RECORD_V4","features":[324,325]},{"name":"USN_SOURCE_AUXILIARY_DATA","features":[325]},{"name":"USN_SOURCE_CLIENT_REPLICATION_MANAGEMENT","features":[325]},{"name":"USN_SOURCE_DATA_MANAGEMENT","features":[325]},{"name":"USN_SOURCE_INFO_ID","features":[325]},{"name":"USN_SOURCE_REPLICATION_MANAGEMENT","features":[325]},{"name":"USN_TRACK_MODIFIED_RANGES","features":[325]},{"name":"UfsDataTypeMax","features":[325]},{"name":"UfsDataTypeQueryAttribute","features":[325]},{"name":"UfsDataTypeQueryDescriptor","features":[325]},{"name":"UfsDataTypeQueryDmeAttribute","features":[325]},{"name":"UfsDataTypeQueryDmePeerAttribute","features":[325]},{"name":"UfsDataTypeQueryFlag","features":[325]},{"name":"UfsDataTypeUnknown","features":[325]},{"name":"Unknown","features":[325]},{"name":"VALID_NTFT","features":[325]},{"name":"VENDOR_ID_LENGTH","features":[325]},{"name":"VERIFY_INFORMATION","features":[325]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT","features":[325]},{"name":"VIRTUALIZATION_INSTANCE_INFO_INPUT_EX","features":[325]},{"name":"VIRTUALIZATION_INSTANCE_INFO_OUTPUT","features":[325]},{"name":"VIRTUAL_STORAGE_BEHAVIOR_CODE","features":[325]},{"name":"VIRTUAL_STORAGE_SET_BEHAVIOR_INPUT","features":[325]},{"name":"VOLUME_BITMAP_BUFFER","features":[325]},{"name":"VOLUME_DISK_EXTENTS","features":[325]},{"name":"VOLUME_GET_GPT_ATTRIBUTES_INFORMATION","features":[325]},{"name":"VOLUME_IS_DIRTY","features":[325]},{"name":"VOLUME_SESSION_OPEN","features":[325]},{"name":"VOLUME_UPGRADE_SCHEDULED","features":[325]},{"name":"VXATape","features":[325]},{"name":"VXATape_1","features":[325]},{"name":"VXATape_2","features":[325]},{"name":"VirtualStorageBehaviorCacheWriteBack","features":[325]},{"name":"VirtualStorageBehaviorCacheWriteThrough","features":[325]},{"name":"VirtualStorageBehaviorRestartIoProcessing","features":[325]},{"name":"VirtualStorageBehaviorStopIoProcessing","features":[325]},{"name":"VirtualStorageBehaviorUndefined","features":[325]},{"name":"WIM_PROVIDER_ADD_OVERLAY_INPUT","features":[325]},{"name":"WIM_PROVIDER_CURRENT_VERSION","features":[325]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_NOT_ACTIVE","features":[325]},{"name":"WIM_PROVIDER_EXTERNAL_FLAG_SUSPENDED","features":[325]},{"name":"WIM_PROVIDER_EXTERNAL_INFO","features":[325]},{"name":"WIM_PROVIDER_OVERLAY_ENTRY","features":[325]},{"name":"WIM_PROVIDER_REMOVE_OVERLAY_INPUT","features":[325]},{"name":"WIM_PROVIDER_SUSPEND_OVERLAY_INPUT","features":[325]},{"name":"WIM_PROVIDER_UPDATE_OVERLAY_INPUT","features":[325]},{"name":"WMI_DISK_GEOMETRY_GUID","features":[325]},{"name":"WOF_CURRENT_VERSION","features":[325]},{"name":"WOF_EXTERNAL_FILE_ID","features":[324,325]},{"name":"WOF_EXTERNAL_INFO","features":[325]},{"name":"WOF_PROVIDER_CLOUD","features":[325]},{"name":"WOF_VERSION_INFO","features":[325]},{"name":"WRITE_CACHE_CHANGE","features":[325]},{"name":"WRITE_CACHE_ENABLE","features":[325]},{"name":"WRITE_CACHE_TYPE","features":[325]},{"name":"WRITE_COMPRESSION_INFO_VALID","features":[325]},{"name":"WRITE_THROUGH","features":[325]},{"name":"WRITE_USN_REASON_INPUT","features":[325]},{"name":"WriteCacheChangeUnknown","features":[325]},{"name":"WriteCacheChangeable","features":[325]},{"name":"WriteCacheDisabled","features":[325]},{"name":"WriteCacheEnableUnknown","features":[325]},{"name":"WriteCacheEnabled","features":[325]},{"name":"WriteCacheNotChangeable","features":[325]},{"name":"WriteCacheTypeNone","features":[325]},{"name":"WriteCacheTypeUnknown","features":[325]},{"name":"WriteCacheTypeWriteBack","features":[325]},{"name":"WriteCacheTypeWriteThrough","features":[325]},{"name":"WriteThroughNotSupported","features":[325]},{"name":"WriteThroughSupported","features":[325]},{"name":"WriteThroughUnknown","features":[325]},{"name":"ZoneConditionClosed","features":[325]},{"name":"ZoneConditionConventional","features":[325]},{"name":"ZoneConditionEmpty","features":[325]},{"name":"ZoneConditionExplicitlyOpened","features":[325]},{"name":"ZoneConditionFull","features":[325]},{"name":"ZoneConditionImplicitlyOpened","features":[325]},{"name":"ZoneConditionOffline","features":[325]},{"name":"ZoneConditionReadOnly","features":[325]},{"name":"ZoneTypeConventional","features":[325]},{"name":"ZoneTypeMax","features":[325]},{"name":"ZoneTypeSequentialWritePreferred","features":[325]},{"name":"ZoneTypeSequentialWriteRequired","features":[325]},{"name":"ZoneTypeUnknown","features":[325]},{"name":"ZonedDeviceTypeDeviceManaged","features":[325]},{"name":"ZonedDeviceTypeHostAware","features":[325]},{"name":"ZonedDeviceTypeHostManaged","features":[325]},{"name":"ZonedDeviceTypeUnknown","features":[325]},{"name":"ZonesAttributeTypeAndLengthMayDifferent","features":[325]},{"name":"ZonesAttributeTypeMayDifferentLengthSame","features":[325]},{"name":"ZonesAttributeTypeSameLastZoneLengthDifferent","features":[325]},{"name":"ZonesAttributeTypeSameLengthSame","features":[325]}],"576":[{"name":"AssignProcessToJobObject","features":[305,562]},{"name":"CreateJobObjectA","features":[305,308,562]},{"name":"CreateJobObjectW","features":[305,308,562]},{"name":"CreateJobSet","features":[305,562]},{"name":"FreeMemoryJobObject","features":[562]},{"name":"IsProcessInJob","features":[305,562]},{"name":"JOBOBJECTINFOCLASS","features":[562]},{"name":"JOBOBJECT_ASSOCIATE_COMPLETION_PORT","features":[305,562]},{"name":"JOBOBJECT_BASIC_ACCOUNTING_INFORMATION","features":[562]},{"name":"JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION","features":[562,340]},{"name":"JOBOBJECT_BASIC_LIMIT_INFORMATION","features":[562]},{"name":"JOBOBJECT_BASIC_PROCESS_ID_LIST","features":[562]},{"name":"JOBOBJECT_BASIC_UI_RESTRICTIONS","features":[562]},{"name":"JOBOBJECT_CPU_RATE_CONTROL_INFORMATION","features":[562]},{"name":"JOBOBJECT_END_OF_JOB_TIME_INFORMATION","features":[562]},{"name":"JOBOBJECT_EXTENDED_LIMIT_INFORMATION","features":[562,340]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_DISABLE","features":[562]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_ENABLE","features":[562]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_FLAGS","features":[562]},{"name":"JOBOBJECT_IO_ATTRIBUTION_CONTROL_VALID_FLAGS","features":[562]},{"name":"JOBOBJECT_IO_ATTRIBUTION_INFORMATION","features":[562]},{"name":"JOBOBJECT_IO_ATTRIBUTION_STATS","features":[562]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION","features":[562]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V1","features":[562]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V2","features":[562]},{"name":"JOBOBJECT_IO_RATE_CONTROL_INFORMATION_NATIVE_V3","features":[562]},{"name":"JOBOBJECT_JOBSET_INFORMATION","features":[562]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION","features":[562]},{"name":"JOBOBJECT_LIMIT_VIOLATION_INFORMATION_2","features":[562]},{"name":"JOBOBJECT_NET_RATE_CONTROL_INFORMATION","features":[562]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION","features":[562]},{"name":"JOBOBJECT_NOTIFICATION_LIMIT_INFORMATION_2","features":[562]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE","features":[562]},{"name":"JOBOBJECT_RATE_CONTROL_TOLERANCE_INTERVAL","features":[562]},{"name":"JOBOBJECT_SECURITY_LIMIT_INFORMATION","features":[305,308,562]},{"name":"JOB_OBJECT_BASIC_LIMIT_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL","features":[562]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_ENABLE","features":[562]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_HARD_CAP","features":[562]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_MIN_MAX_RATE","features":[562]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_NOTIFY","features":[562]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_CPU_RATE_CONTROL_WEIGHT_BASED","features":[562]},{"name":"JOB_OBJECT_EXTENDED_LIMIT_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_ENABLE","features":[562]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FLAGS","features":[562]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ALL","features":[562]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_FORCE_UNIT_ACCESS_ON_SOFT_CAP","features":[562]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_STANDALONE_VOLUME","features":[562]},{"name":"JOB_OBJECT_IO_RATE_CONTROL_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_LIMIT","features":[562]},{"name":"JOB_OBJECT_LIMIT_ACTIVE_PROCESS","features":[562]},{"name":"JOB_OBJECT_LIMIT_AFFINITY","features":[562]},{"name":"JOB_OBJECT_LIMIT_BREAKAWAY_OK","features":[562]},{"name":"JOB_OBJECT_LIMIT_CPU_RATE_CONTROL","features":[562]},{"name":"JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION","features":[562]},{"name":"JOB_OBJECT_LIMIT_IO_RATE_CONTROL","features":[562]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY","features":[562]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_HIGH","features":[562]},{"name":"JOB_OBJECT_LIMIT_JOB_MEMORY_LOW","features":[562]},{"name":"JOB_OBJECT_LIMIT_JOB_READ_BYTES","features":[562]},{"name":"JOB_OBJECT_LIMIT_JOB_TIME","features":[562]},{"name":"JOB_OBJECT_LIMIT_JOB_WRITE_BYTES","features":[562]},{"name":"JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE","features":[562]},{"name":"JOB_OBJECT_LIMIT_NET_RATE_CONTROL","features":[562]},{"name":"JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME","features":[562]},{"name":"JOB_OBJECT_LIMIT_PRIORITY_CLASS","features":[562]},{"name":"JOB_OBJECT_LIMIT_PROCESS_MEMORY","features":[562]},{"name":"JOB_OBJECT_LIMIT_PROCESS_TIME","features":[562]},{"name":"JOB_OBJECT_LIMIT_RATE_CONTROL","features":[562]},{"name":"JOB_OBJECT_LIMIT_SCHEDULING_CLASS","features":[562]},{"name":"JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK","features":[562]},{"name":"JOB_OBJECT_LIMIT_SUBSET_AFFINITY","features":[562]},{"name":"JOB_OBJECT_LIMIT_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_LIMIT_WORKINGSET","features":[562]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_DSCP_TAG","features":[562]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_ENABLE","features":[562]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_FLAGS","features":[562]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_BANDWIDTH","features":[562]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_NOTIFICATION_LIMIT_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_POST_AT_END_OF_JOB","features":[562]},{"name":"JOB_OBJECT_SECURITY","features":[562]},{"name":"JOB_OBJECT_SECURITY_FILTER_TOKENS","features":[562]},{"name":"JOB_OBJECT_SECURITY_NO_ADMIN","features":[562]},{"name":"JOB_OBJECT_SECURITY_ONLY_TOKEN","features":[562]},{"name":"JOB_OBJECT_SECURITY_RESTRICTED_TOKEN","features":[562]},{"name":"JOB_OBJECT_SECURITY_VALID_FLAGS","features":[562]},{"name":"JOB_OBJECT_TERMINATE_AT_END_ACTION","features":[562]},{"name":"JOB_OBJECT_TERMINATE_AT_END_OF_JOB","features":[562]},{"name":"JOB_OBJECT_UILIMIT","features":[562]},{"name":"JOB_OBJECT_UILIMIT_DESKTOP","features":[562]},{"name":"JOB_OBJECT_UILIMIT_DISPLAYSETTINGS","features":[562]},{"name":"JOB_OBJECT_UILIMIT_EXITWINDOWS","features":[562]},{"name":"JOB_OBJECT_UILIMIT_GLOBALATOMS","features":[562]},{"name":"JOB_OBJECT_UILIMIT_HANDLES","features":[562]},{"name":"JOB_OBJECT_UILIMIT_NONE","features":[562]},{"name":"JOB_OBJECT_UILIMIT_READCLIPBOARD","features":[562]},{"name":"JOB_OBJECT_UILIMIT_SYSTEMPARAMETERS","features":[562]},{"name":"JOB_OBJECT_UILIMIT_WRITECLIPBOARD","features":[562]},{"name":"JOB_SET_ARRAY","features":[305,562]},{"name":"JobObjectAssociateCompletionPortInformation","features":[562]},{"name":"JobObjectBasicAccountingInformation","features":[562]},{"name":"JobObjectBasicAndIoAccountingInformation","features":[562]},{"name":"JobObjectBasicLimitInformation","features":[562]},{"name":"JobObjectBasicProcessIdList","features":[562]},{"name":"JobObjectBasicUIRestrictions","features":[562]},{"name":"JobObjectCompletionCounter","features":[562]},{"name":"JobObjectCompletionFilter","features":[562]},{"name":"JobObjectCpuRateControlInformation","features":[562]},{"name":"JobObjectCreateSilo","features":[562]},{"name":"JobObjectEndOfJobTimeInformation","features":[562]},{"name":"JobObjectExtendedLimitInformation","features":[562]},{"name":"JobObjectGroupInformation","features":[562]},{"name":"JobObjectGroupInformationEx","features":[562]},{"name":"JobObjectJobSetInformation","features":[562]},{"name":"JobObjectLimitViolationInformation","features":[562]},{"name":"JobObjectLimitViolationInformation2","features":[562]},{"name":"JobObjectNetRateControlInformation","features":[562]},{"name":"JobObjectNotificationLimitInformation","features":[562]},{"name":"JobObjectNotificationLimitInformation2","features":[562]},{"name":"JobObjectReserved10Information","features":[562]},{"name":"JobObjectReserved11Information","features":[562]},{"name":"JobObjectReserved12Information","features":[562]},{"name":"JobObjectReserved13Information","features":[562]},{"name":"JobObjectReserved14Information","features":[562]},{"name":"JobObjectReserved15Information","features":[562]},{"name":"JobObjectReserved16Information","features":[562]},{"name":"JobObjectReserved17Information","features":[562]},{"name":"JobObjectReserved18Information","features":[562]},{"name":"JobObjectReserved19Information","features":[562]},{"name":"JobObjectReserved1Information","features":[562]},{"name":"JobObjectReserved20Information","features":[562]},{"name":"JobObjectReserved21Information","features":[562]},{"name":"JobObjectReserved22Information","features":[562]},{"name":"JobObjectReserved23Information","features":[562]},{"name":"JobObjectReserved24Information","features":[562]},{"name":"JobObjectReserved25Information","features":[562]},{"name":"JobObjectReserved26Information","features":[562]},{"name":"JobObjectReserved27Information","features":[562]},{"name":"JobObjectReserved2Information","features":[562]},{"name":"JobObjectReserved3Information","features":[562]},{"name":"JobObjectReserved4Information","features":[562]},{"name":"JobObjectReserved5Information","features":[562]},{"name":"JobObjectReserved6Information","features":[562]},{"name":"JobObjectReserved7Information","features":[562]},{"name":"JobObjectReserved8Information","features":[562]},{"name":"JobObjectReserved9Information","features":[562]},{"name":"JobObjectSecurityLimitInformation","features":[562]},{"name":"JobObjectSiloBasicInformation","features":[562]},{"name":"MaxJobObjectInfoClass","features":[562]},{"name":"OpenJobObjectA","features":[305,562]},{"name":"OpenJobObjectW","features":[305,562]},{"name":"QueryInformationJobObject","features":[305,562]},{"name":"QueryIoRateControlInformationJobObject","features":[305,562]},{"name":"SetInformationJobObject","features":[305,562]},{"name":"SetIoRateControlInformationJobObject","features":[305,562]},{"name":"TerminateJobObject","features":[305,562]},{"name":"ToleranceHigh","features":[562]},{"name":"ToleranceIntervalLong","features":[562]},{"name":"ToleranceIntervalMedium","features":[562]},{"name":"ToleranceIntervalShort","features":[562]},{"name":"ToleranceLow","features":[562]},{"name":"ToleranceMedium","features":[562]},{"name":"UserHandleGrantAccess","features":[305,562]}],"577":[{"name":"JS_SOURCE_CONTEXT_NONE","features":[563]},{"name":"JsAddRef","features":[563]},{"name":"JsArray","features":[563]},{"name":"JsBackgroundWorkItemCallback","features":[563]},{"name":"JsBeforeCollectCallback","features":[563]},{"name":"JsBoolToBoolean","features":[563]},{"name":"JsBoolean","features":[563]},{"name":"JsBooleanToBool","features":[563]},{"name":"JsCallFunction","features":[563]},{"name":"JsCollectGarbage","features":[563]},{"name":"JsConstructObject","features":[563]},{"name":"JsConvertValueToBoolean","features":[563]},{"name":"JsConvertValueToNumber","features":[563]},{"name":"JsConvertValueToObject","features":[563]},{"name":"JsConvertValueToString","features":[563]},{"name":"JsCreateArray","features":[563]},{"name":"JsCreateContext","features":[544,563]},{"name":"JsCreateContext","features":[544,563]},{"name":"JsCreateError","features":[563]},{"name":"JsCreateExternalObject","features":[563]},{"name":"JsCreateFunction","features":[563]},{"name":"JsCreateObject","features":[563]},{"name":"JsCreateRangeError","features":[563]},{"name":"JsCreateReferenceError","features":[563]},{"name":"JsCreateRuntime","features":[563]},{"name":"JsCreateSyntaxError","features":[563]},{"name":"JsCreateTypeError","features":[563]},{"name":"JsCreateURIError","features":[563]},{"name":"JsDefineProperty","features":[563]},{"name":"JsDeleteIndexedProperty","features":[563]},{"name":"JsDeleteProperty","features":[563]},{"name":"JsDisableRuntimeExecution","features":[563]},{"name":"JsDisposeRuntime","features":[563]},{"name":"JsDoubleToNumber","features":[563]},{"name":"JsEnableRuntimeExecution","features":[563]},{"name":"JsEnumerateHeap","features":[544,563]},{"name":"JsEquals","features":[563]},{"name":"JsError","features":[563]},{"name":"JsErrorAlreadyDebuggingContext","features":[563]},{"name":"JsErrorAlreadyProfilingContext","features":[563]},{"name":"JsErrorArgumentNotObject","features":[563]},{"name":"JsErrorBadSerializedScript","features":[563]},{"name":"JsErrorCannotDisableExecution","features":[563]},{"name":"JsErrorCannotSerializeDebugScript","features":[563]},{"name":"JsErrorCategoryEngine","features":[563]},{"name":"JsErrorCategoryFatal","features":[563]},{"name":"JsErrorCategoryScript","features":[563]},{"name":"JsErrorCategoryUsage","features":[563]},{"name":"JsErrorCode","features":[563]},{"name":"JsErrorFatal","features":[563]},{"name":"JsErrorHeapEnumInProgress","features":[563]},{"name":"JsErrorIdleNotEnabled","features":[563]},{"name":"JsErrorInDisabledState","features":[563]},{"name":"JsErrorInExceptionState","features":[563]},{"name":"JsErrorInProfileCallback","features":[563]},{"name":"JsErrorInThreadServiceCallback","features":[563]},{"name":"JsErrorInvalidArgument","features":[563]},{"name":"JsErrorNoCurrentContext","features":[563]},{"name":"JsErrorNotImplemented","features":[563]},{"name":"JsErrorNullArgument","features":[563]},{"name":"JsErrorOutOfMemory","features":[563]},{"name":"JsErrorRuntimeInUse","features":[563]},{"name":"JsErrorScriptCompile","features":[563]},{"name":"JsErrorScriptEvalDisabled","features":[563]},{"name":"JsErrorScriptException","features":[563]},{"name":"JsErrorScriptTerminated","features":[563]},{"name":"JsErrorWrongThread","features":[563]},{"name":"JsFinalizeCallback","features":[563]},{"name":"JsFunction","features":[563]},{"name":"JsGetAndClearException","features":[563]},{"name":"JsGetCurrentContext","features":[563]},{"name":"JsGetExtensionAllowed","features":[563]},{"name":"JsGetExternalData","features":[563]},{"name":"JsGetFalseValue","features":[563]},{"name":"JsGetGlobalObject","features":[563]},{"name":"JsGetIndexedProperty","features":[563]},{"name":"JsGetNullValue","features":[563]},{"name":"JsGetOwnPropertyDescriptor","features":[563]},{"name":"JsGetOwnPropertyNames","features":[563]},{"name":"JsGetProperty","features":[563]},{"name":"JsGetPropertyIdFromName","features":[563]},{"name":"JsGetPropertyNameFromId","features":[563]},{"name":"JsGetPrototype","features":[563]},{"name":"JsGetRuntime","features":[563]},{"name":"JsGetRuntimeMemoryLimit","features":[563]},{"name":"JsGetRuntimeMemoryUsage","features":[563]},{"name":"JsGetStringLength","features":[563]},{"name":"JsGetTrueValue","features":[563]},{"name":"JsGetUndefinedValue","features":[563]},{"name":"JsGetValueType","features":[563]},{"name":"JsHasException","features":[563]},{"name":"JsHasExternalData","features":[563]},{"name":"JsHasIndexedProperty","features":[563]},{"name":"JsHasProperty","features":[563]},{"name":"JsIdle","features":[563]},{"name":"JsIntToNumber","features":[563]},{"name":"JsIsEnumeratingHeap","features":[563]},{"name":"JsIsRuntimeExecutionDisabled","features":[563]},{"name":"JsMemoryAllocate","features":[563]},{"name":"JsMemoryAllocationCallback","features":[563]},{"name":"JsMemoryEventType","features":[563]},{"name":"JsMemoryFailure","features":[563]},{"name":"JsMemoryFree","features":[563]},{"name":"JsNativeFunction","features":[563]},{"name":"JsNoError","features":[563]},{"name":"JsNull","features":[563]},{"name":"JsNumber","features":[563]},{"name":"JsNumberToDouble","features":[563]},{"name":"JsObject","features":[563]},{"name":"JsParseScript","features":[563]},{"name":"JsParseSerializedScript","features":[563]},{"name":"JsPointerToString","features":[563]},{"name":"JsPreventExtension","features":[563]},{"name":"JsRelease","features":[563]},{"name":"JsRunScript","features":[563]},{"name":"JsRunSerializedScript","features":[563]},{"name":"JsRuntimeAttributeAllowScriptInterrupt","features":[563]},{"name":"JsRuntimeAttributeDisableBackgroundWork","features":[563]},{"name":"JsRuntimeAttributeDisableEval","features":[563]},{"name":"JsRuntimeAttributeDisableNativeCodeGeneration","features":[563]},{"name":"JsRuntimeAttributeEnableIdleProcessing","features":[563]},{"name":"JsRuntimeAttributeNone","features":[563]},{"name":"JsRuntimeAttributes","features":[563]},{"name":"JsRuntimeVersion","features":[563]},{"name":"JsRuntimeVersion10","features":[563]},{"name":"JsRuntimeVersion11","features":[563]},{"name":"JsRuntimeVersionEdge","features":[563]},{"name":"JsSerializeScript","features":[563]},{"name":"JsSetCurrentContext","features":[563]},{"name":"JsSetException","features":[563]},{"name":"JsSetExternalData","features":[563]},{"name":"JsSetIndexedProperty","features":[563]},{"name":"JsSetProperty","features":[563]},{"name":"JsSetPrototype","features":[563]},{"name":"JsSetRuntimeBeforeCollectCallback","features":[563]},{"name":"JsSetRuntimeMemoryAllocationCallback","features":[563]},{"name":"JsSetRuntimeMemoryLimit","features":[563]},{"name":"JsStartDebugging","features":[544,563]},{"name":"JsStartDebugging","features":[544,563]},{"name":"JsStartProfiling","features":[544,563]},{"name":"JsStopProfiling","features":[563]},{"name":"JsStrictEquals","features":[563]},{"name":"JsString","features":[563]},{"name":"JsStringToPointer","features":[563]},{"name":"JsThreadServiceCallback","features":[563]},{"name":"JsUndefined","features":[563]},{"name":"JsValueToVariant","features":[563]},{"name":"JsValueType","features":[563]},{"name":"JsVariantToValue","features":[563]}],"578":[{"name":"BackOffice","features":[311]},{"name":"Blade","features":[311]},{"name":"COMPARTMENT_ID","features":[311]},{"name":"CSTRING","features":[311]},{"name":"CommunicationServer","features":[311]},{"name":"ComputeServer","features":[311]},{"name":"DEFAULT_COMPARTMENT_ID","features":[311]},{"name":"DataCenter","features":[311]},{"name":"EVENT_TYPE","features":[311]},{"name":"EXCEPTION_DISPOSITION","features":[311]},{"name":"EXCEPTION_REGISTRATION_RECORD","features":[305,334,311]},{"name":"EXCEPTION_ROUTINE","features":[305,334,311]},{"name":"EmbeddedNT","features":[311]},{"name":"EmbeddedRestricted","features":[311]},{"name":"Enterprise","features":[311]},{"name":"ExceptionCollidedUnwind","features":[311]},{"name":"ExceptionContinueExecution","features":[311]},{"name":"ExceptionContinueSearch","features":[311]},{"name":"ExceptionNestedException","features":[311]},{"name":"FLOATING_SAVE_AREA","features":[311]},{"name":"FLOATING_SAVE_AREA","features":[311]},{"name":"LIST_ENTRY","features":[311]},{"name":"LIST_ENTRY32","features":[311]},{"name":"LIST_ENTRY64","features":[311]},{"name":"MAXUCHAR","features":[311]},{"name":"MAXULONG","features":[311]},{"name":"MAXUSHORT","features":[311]},{"name":"MaxSuiteType","features":[311]},{"name":"MultiUserTS","features":[311]},{"name":"NT_PRODUCT_TYPE","features":[311]},{"name":"NT_TIB","features":[305,334,311]},{"name":"NULL64","features":[311]},{"name":"NotificationEvent","features":[311]},{"name":"NotificationTimer","features":[311]},{"name":"NtProductLanManNt","features":[311]},{"name":"NtProductServer","features":[311]},{"name":"NtProductWinNt","features":[311]},{"name":"OBJECTID","features":[311]},{"name":"OBJ_CASE_INSENSITIVE","features":[311]},{"name":"OBJ_DONT_REPARSE","features":[311]},{"name":"OBJ_EXCLUSIVE","features":[311]},{"name":"OBJ_FORCE_ACCESS_CHECK","features":[311]},{"name":"OBJ_HANDLE_TAGBITS","features":[311]},{"name":"OBJ_IGNORE_IMPERSONATED_DEVICEMAP","features":[311]},{"name":"OBJ_INHERIT","features":[311]},{"name":"OBJ_KERNEL_HANDLE","features":[311]},{"name":"OBJ_OPENIF","features":[311]},{"name":"OBJ_OPENLINK","features":[311]},{"name":"OBJ_PERMANENT","features":[311]},{"name":"OBJ_VALID_ATTRIBUTES","features":[311]},{"name":"PROCESSOR_NUMBER","features":[311]},{"name":"Personal","features":[311]},{"name":"PhoneNT","features":[311]},{"name":"QUAD","features":[311]},{"name":"RTL_BALANCED_NODE","features":[311]},{"name":"RTL_BALANCED_NODE_RESERVED_PARENT_MASK","features":[311]},{"name":"RtlFirstEntrySList","features":[311]},{"name":"RtlInitializeSListHead","features":[311]},{"name":"RtlInterlockedFlushSList","features":[311]},{"name":"RtlInterlockedPopEntrySList","features":[311]},{"name":"RtlInterlockedPushEntrySList","features":[311]},{"name":"RtlInterlockedPushListSListEx","features":[311]},{"name":"RtlQueryDepthSList","features":[311]},{"name":"SINGLE_LIST_ENTRY","features":[311]},{"name":"SINGLE_LIST_ENTRY32","features":[311]},{"name":"SLIST_ENTRY","features":[311]},{"name":"SLIST_HEADER","features":[311]},{"name":"SLIST_HEADER","features":[311]},{"name":"SLIST_HEADER","features":[311]},{"name":"STRING","features":[311]},{"name":"STRING32","features":[311]},{"name":"STRING64","features":[311]},{"name":"SUITE_TYPE","features":[311]},{"name":"SecurityAppliance","features":[311]},{"name":"SingleUserTS","features":[311]},{"name":"SmallBusiness","features":[311]},{"name":"SmallBusinessRestricted","features":[311]},{"name":"StorageServer","features":[311]},{"name":"SynchronizationEvent","features":[311]},{"name":"SynchronizationTimer","features":[311]},{"name":"TIMER_TYPE","features":[311]},{"name":"TerminalServer","features":[311]},{"name":"UNSPECIFIED_COMPARTMENT_ID","features":[311]},{"name":"WAIT_TYPE","features":[311]},{"name":"WHServer","features":[311]},{"name":"WNF_STATE_NAME","features":[311]},{"name":"WaitAll","features":[311]},{"name":"WaitAny","features":[311]},{"name":"WaitDequeue","features":[311]},{"name":"WaitDpc","features":[311]},{"name":"WaitNotification","features":[311]}],"579":[{"name":"AddDllDirectory","features":[564]},{"name":"BeginUpdateResourceA","features":[305,564]},{"name":"BeginUpdateResourceW","features":[305,564]},{"name":"CURRENT_IMPORT_REDIRECTION_VERSION","features":[564]},{"name":"DONT_RESOLVE_DLL_REFERENCES","features":[564]},{"name":"DisableThreadLibraryCalls","features":[305,564]},{"name":"ENUMRESLANGPROCA","features":[305,564]},{"name":"ENUMRESLANGPROCW","features":[305,564]},{"name":"ENUMRESNAMEPROCA","features":[305,564]},{"name":"ENUMRESNAMEPROCW","features":[305,564]},{"name":"ENUMRESTYPEPROCA","features":[305,564]},{"name":"ENUMRESTYPEPROCW","features":[305,564]},{"name":"ENUMUILANG","features":[564]},{"name":"EndUpdateResourceA","features":[305,564]},{"name":"EndUpdateResourceW","features":[305,564]},{"name":"EnumResourceLanguagesA","features":[305,564]},{"name":"EnumResourceLanguagesExA","features":[305,564]},{"name":"EnumResourceLanguagesExW","features":[305,564]},{"name":"EnumResourceLanguagesW","features":[305,564]},{"name":"EnumResourceNamesA","features":[305,564]},{"name":"EnumResourceNamesExA","features":[305,564]},{"name":"EnumResourceNamesExW","features":[305,564]},{"name":"EnumResourceNamesW","features":[305,564]},{"name":"EnumResourceTypesA","features":[305,564]},{"name":"EnumResourceTypesExA","features":[305,564]},{"name":"EnumResourceTypesExW","features":[305,564]},{"name":"EnumResourceTypesW","features":[305,564]},{"name":"FIND_RESOURCE_DIRECTORY_LANGUAGES","features":[564]},{"name":"FIND_RESOURCE_DIRECTORY_NAMES","features":[564]},{"name":"FIND_RESOURCE_DIRECTORY_TYPES","features":[564]},{"name":"FindResourceA","features":[305,564]},{"name":"FindResourceExA","features":[305,564]},{"name":"FindResourceExW","features":[305,564]},{"name":"FindResourceW","features":[305,564]},{"name":"FreeLibraryAndExitThread","features":[305,564]},{"name":"FreeResource","features":[305,564]},{"name":"GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS","features":[564]},{"name":"GET_MODULE_HANDLE_EX_FLAG_PIN","features":[564]},{"name":"GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT","features":[564]},{"name":"GetDllDirectoryA","features":[564]},{"name":"GetDllDirectoryW","features":[564]},{"name":"GetModuleFileNameA","features":[305,564]},{"name":"GetModuleFileNameW","features":[305,564]},{"name":"GetModuleHandleA","features":[305,564]},{"name":"GetModuleHandleExA","features":[305,564]},{"name":"GetModuleHandleExW","features":[305,564]},{"name":"GetModuleHandleW","features":[305,564]},{"name":"GetProcAddress","features":[305,564]},{"name":"LOAD_IGNORE_CODE_AUTHZ_LEVEL","features":[564]},{"name":"LOAD_LIBRARY_AS_DATAFILE","features":[564]},{"name":"LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE","features":[564]},{"name":"LOAD_LIBRARY_AS_IMAGE_RESOURCE","features":[564]},{"name":"LOAD_LIBRARY_FLAGS","features":[564]},{"name":"LOAD_LIBRARY_OS_INTEGRITY_CONTINUITY","features":[564]},{"name":"LOAD_LIBRARY_REQUIRE_SIGNED_TARGET","features":[564]},{"name":"LOAD_LIBRARY_SAFE_CURRENT_DIRS","features":[564]},{"name":"LOAD_LIBRARY_SEARCH_APPLICATION_DIR","features":[564]},{"name":"LOAD_LIBRARY_SEARCH_DEFAULT_DIRS","features":[564]},{"name":"LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR","features":[564]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32","features":[564]},{"name":"LOAD_LIBRARY_SEARCH_SYSTEM32_NO_FORWARDER","features":[564]},{"name":"LOAD_LIBRARY_SEARCH_USER_DIRS","features":[564]},{"name":"LOAD_WITH_ALTERED_SEARCH_PATH","features":[564]},{"name":"LoadLibraryA","features":[305,564]},{"name":"LoadLibraryExA","features":[305,564]},{"name":"LoadLibraryExW","features":[305,564]},{"name":"LoadLibraryW","features":[305,564]},{"name":"LoadModule","features":[564]},{"name":"LoadPackagedLibrary","features":[305,564]},{"name":"LoadResource","features":[305,564]},{"name":"LockResource","features":[305,564]},{"name":"PGET_MODULE_HANDLE_EXA","features":[305,564]},{"name":"PGET_MODULE_HANDLE_EXW","features":[305,564]},{"name":"REDIRECTION_DESCRIPTOR","features":[564]},{"name":"REDIRECTION_FUNCTION_DESCRIPTOR","features":[564]},{"name":"RESOURCE_ENUM_LN","features":[564]},{"name":"RESOURCE_ENUM_MODULE_EXACT","features":[564]},{"name":"RESOURCE_ENUM_MUI","features":[564]},{"name":"RESOURCE_ENUM_MUI_SYSTEM","features":[564]},{"name":"RESOURCE_ENUM_VALIDATE","features":[564]},{"name":"RemoveDllDirectory","features":[305,564]},{"name":"SUPPORT_LANG_NUMBER","features":[564]},{"name":"SetDefaultDllDirectories","features":[305,564]},{"name":"SetDllDirectoryA","features":[305,564]},{"name":"SetDllDirectoryW","features":[305,564]},{"name":"SizeofResource","features":[305,564]},{"name":"UpdateResourceA","features":[305,564]},{"name":"UpdateResourceW","features":[305,564]}],"580":[{"name":"CreateMailslotA","features":[305,308,565]},{"name":"CreateMailslotW","features":[305,308,565]},{"name":"GetMailslotInfo","features":[305,565]},{"name":"SetMailslotInfo","features":[305,565]}],"581":[{"name":"LPMAPIADDRESS","features":[566]},{"name":"LPMAPIDELETEMAIL","features":[566]},{"name":"LPMAPIDETAILS","features":[566]},{"name":"LPMAPIFINDNEXT","features":[566]},{"name":"LPMAPIFREEBUFFER","features":[566]},{"name":"LPMAPILOGOFF","features":[566]},{"name":"LPMAPILOGON","features":[566]},{"name":"LPMAPIREADMAIL","features":[566]},{"name":"LPMAPIRESOLVENAME","features":[566]},{"name":"LPMAPISAVEMAIL","features":[566]},{"name":"LPMAPISENDDOCUMENTS","features":[566]},{"name":"LPMAPISENDMAIL","features":[566]},{"name":"LPMAPISENDMAILW","features":[566]},{"name":"MAPIFreeBuffer","features":[566]},{"name":"MAPI_AB_NOMODIFY","features":[566]},{"name":"MAPI_BCC","features":[566]},{"name":"MAPI_BODY_AS_FILE","features":[566]},{"name":"MAPI_CC","features":[566]},{"name":"MAPI_DIALOG","features":[566]},{"name":"MAPI_ENVELOPE_ONLY","features":[566]},{"name":"MAPI_EXTENDED","features":[566]},{"name":"MAPI_E_ACCESS_DENIED","features":[566]},{"name":"MAPI_E_AMBIGUOUS_RECIPIENT","features":[566]},{"name":"MAPI_E_AMBIG_RECIP","features":[566]},{"name":"MAPI_E_ATTACHMENT_NOT_FOUND","features":[566]},{"name":"MAPI_E_ATTACHMENT_OPEN_FAILURE","features":[566]},{"name":"MAPI_E_ATTACHMENT_TOO_LARGE","features":[566]},{"name":"MAPI_E_ATTACHMENT_WRITE_FAILURE","features":[566]},{"name":"MAPI_E_BAD_RECIPTYPE","features":[566]},{"name":"MAPI_E_DISK_FULL","features":[566]},{"name":"MAPI_E_FAILURE","features":[566]},{"name":"MAPI_E_INSUFFICIENT_MEMORY","features":[566]},{"name":"MAPI_E_INVALID_EDITFIELDS","features":[566]},{"name":"MAPI_E_INVALID_MESSAGE","features":[566]},{"name":"MAPI_E_INVALID_RECIPS","features":[566]},{"name":"MAPI_E_INVALID_SESSION","features":[566]},{"name":"MAPI_E_LOGIN_FAILURE","features":[566]},{"name":"MAPI_E_LOGON_FAILURE","features":[566]},{"name":"MAPI_E_MESSAGE_IN_USE","features":[566]},{"name":"MAPI_E_NETWORK_FAILURE","features":[566]},{"name":"MAPI_E_NOT_SUPPORTED","features":[566]},{"name":"MAPI_E_NO_MESSAGES","features":[566]},{"name":"MAPI_E_TEXT_TOO_LARGE","features":[566]},{"name":"MAPI_E_TOO_MANY_FILES","features":[566]},{"name":"MAPI_E_TOO_MANY_RECIPIENTS","features":[566]},{"name":"MAPI_E_TOO_MANY_SESSIONS","features":[566]},{"name":"MAPI_E_TYPE_NOT_SUPPORTED","features":[566]},{"name":"MAPI_E_UNICODE_NOT_SUPPORTED","features":[566]},{"name":"MAPI_E_UNKNOWN_RECIPIENT","features":[566]},{"name":"MAPI_E_USER_ABORT","features":[566]},{"name":"MAPI_FORCE_DOWNLOAD","features":[566]},{"name":"MAPI_FORCE_UNICODE","features":[566]},{"name":"MAPI_GUARANTEE_FIFO","features":[566]},{"name":"MAPI_LOGON_UI","features":[566]},{"name":"MAPI_LONG_MSGID","features":[566]},{"name":"MAPI_NEW_SESSION","features":[566]},{"name":"MAPI_OLE","features":[566]},{"name":"MAPI_OLE_STATIC","features":[566]},{"name":"MAPI_ORIG","features":[566]},{"name":"MAPI_PASSWORD_UI","features":[566]},{"name":"MAPI_PEEK","features":[566]},{"name":"MAPI_RECEIPT_REQUESTED","features":[566]},{"name":"MAPI_SENT","features":[566]},{"name":"MAPI_SUPPRESS_ATTACH","features":[566]},{"name":"MAPI_TO","features":[566]},{"name":"MAPI_UNREAD","features":[566]},{"name":"MAPI_UNREAD_ONLY","features":[566]},{"name":"MAPI_USER_ABORT","features":[566]},{"name":"MapiFileDesc","features":[566]},{"name":"MapiFileDescW","features":[566]},{"name":"MapiFileTagExt","features":[566]},{"name":"MapiMessage","features":[566]},{"name":"MapiMessageW","features":[566]},{"name":"MapiRecipDesc","features":[566]},{"name":"MapiRecipDescW","features":[566]},{"name":"SUCCESS_SUCCESS","features":[566]}],"582":[{"name":"AddSecureMemoryCacheCallback","features":[305,323]},{"name":"AllocateUserPhysicalPages","features":[305,323]},{"name":"AllocateUserPhysicalPages2","features":[305,323]},{"name":"AllocateUserPhysicalPagesNuma","features":[305,323]},{"name":"AtlThunkData_t","features":[323]},{"name":"CFG_CALL_TARGET_INFO","features":[323]},{"name":"CreateFileMapping2","features":[305,308,323]},{"name":"CreateFileMappingA","features":[305,308,323]},{"name":"CreateFileMappingFromApp","features":[305,308,323]},{"name":"CreateFileMappingNumaA","features":[305,308,323]},{"name":"CreateFileMappingNumaW","features":[305,308,323]},{"name":"CreateFileMappingW","features":[305,308,323]},{"name":"CreateMemoryResourceNotification","features":[305,323]},{"name":"DiscardVirtualMemory","features":[323]},{"name":"FILE_CACHE_MAX_HARD_DISABLE","features":[323]},{"name":"FILE_CACHE_MAX_HARD_ENABLE","features":[323]},{"name":"FILE_CACHE_MIN_HARD_DISABLE","features":[323]},{"name":"FILE_CACHE_MIN_HARD_ENABLE","features":[323]},{"name":"FILE_MAP","features":[323]},{"name":"FILE_MAP_ALL_ACCESS","features":[323]},{"name":"FILE_MAP_COPY","features":[323]},{"name":"FILE_MAP_EXECUTE","features":[323]},{"name":"FILE_MAP_LARGE_PAGES","features":[323]},{"name":"FILE_MAP_READ","features":[323]},{"name":"FILE_MAP_RESERVE","features":[323]},{"name":"FILE_MAP_TARGETS_INVALID","features":[323]},{"name":"FILE_MAP_WRITE","features":[323]},{"name":"FlushViewOfFile","features":[305,323]},{"name":"FreeUserPhysicalPages","features":[305,323]},{"name":"GHND","features":[323]},{"name":"GLOBAL_ALLOC_FLAGS","features":[323]},{"name":"GMEM_FIXED","features":[323]},{"name":"GMEM_MOVEABLE","features":[323]},{"name":"GMEM_ZEROINIT","features":[323]},{"name":"GPTR","features":[323]},{"name":"GetLargePageMinimum","features":[323]},{"name":"GetMemoryErrorHandlingCapabilities","features":[305,323]},{"name":"GetProcessHeap","features":[305,323]},{"name":"GetProcessHeaps","features":[305,323]},{"name":"GetProcessWorkingSetSizeEx","features":[305,323]},{"name":"GetSystemFileCacheSize","features":[305,323]},{"name":"GetWriteWatch","features":[323]},{"name":"GlobalAlloc","features":[305,323]},{"name":"GlobalFlags","features":[305,323]},{"name":"GlobalHandle","features":[305,323]},{"name":"GlobalLock","features":[305,323]},{"name":"GlobalReAlloc","features":[305,323]},{"name":"GlobalSize","features":[305,323]},{"name":"GlobalUnlock","features":[305,323]},{"name":"HEAP_CREATE_ALIGN_16","features":[323]},{"name":"HEAP_CREATE_ENABLE_EXECUTE","features":[323]},{"name":"HEAP_CREATE_ENABLE_TRACING","features":[323]},{"name":"HEAP_CREATE_HARDENED","features":[323]},{"name":"HEAP_CREATE_SEGMENT_HEAP","features":[323]},{"name":"HEAP_DISABLE_COALESCE_ON_FREE","features":[323]},{"name":"HEAP_FLAGS","features":[323]},{"name":"HEAP_FREE_CHECKING_ENABLED","features":[323]},{"name":"HEAP_GENERATE_EXCEPTIONS","features":[323]},{"name":"HEAP_GROWABLE","features":[323]},{"name":"HEAP_INFORMATION_CLASS","features":[323]},{"name":"HEAP_MAXIMUM_TAG","features":[323]},{"name":"HEAP_NONE","features":[323]},{"name":"HEAP_NO_SERIALIZE","features":[323]},{"name":"HEAP_PSEUDO_TAG_FLAG","features":[323]},{"name":"HEAP_REALLOC_IN_PLACE_ONLY","features":[323]},{"name":"HEAP_SUMMARY","features":[323]},{"name":"HEAP_TAG_SHIFT","features":[323]},{"name":"HEAP_TAIL_CHECKING_ENABLED","features":[323]},{"name":"HEAP_ZERO_MEMORY","features":[323]},{"name":"HeapAlloc","features":[305,323]},{"name":"HeapCompact","features":[305,323]},{"name":"HeapCompatibilityInformation","features":[323]},{"name":"HeapCreate","features":[305,323]},{"name":"HeapDestroy","features":[305,323]},{"name":"HeapEnableTerminationOnCorruption","features":[323]},{"name":"HeapFree","features":[305,323]},{"name":"HeapLock","features":[305,323]},{"name":"HeapOptimizeResources","features":[323]},{"name":"HeapQueryInformation","features":[305,323]},{"name":"HeapReAlloc","features":[305,323]},{"name":"HeapSetInformation","features":[305,323]},{"name":"HeapSize","features":[305,323]},{"name":"HeapSummary","features":[305,323]},{"name":"HeapTag","features":[323]},{"name":"HeapUnlock","features":[305,323]},{"name":"HeapValidate","features":[305,323]},{"name":"HeapWalk","features":[305,323]},{"name":"HighMemoryResourceNotification","features":[323]},{"name":"IsBadCodePtr","features":[305,323]},{"name":"IsBadReadPtr","features":[305,323]},{"name":"IsBadStringPtrA","features":[305,323]},{"name":"IsBadStringPtrW","features":[305,323]},{"name":"IsBadWritePtr","features":[305,323]},{"name":"LHND","features":[323]},{"name":"LMEM_FIXED","features":[323]},{"name":"LMEM_MOVEABLE","features":[323]},{"name":"LMEM_ZEROINIT","features":[323]},{"name":"LOCAL_ALLOC_FLAGS","features":[323]},{"name":"LPTR","features":[323]},{"name":"LocalAlloc","features":[305,323]},{"name":"LocalFlags","features":[305,323]},{"name":"LocalHandle","features":[305,323]},{"name":"LocalLock","features":[305,323]},{"name":"LocalReAlloc","features":[305,323]},{"name":"LocalSize","features":[305,323]},{"name":"LocalUnlock","features":[305,323]},{"name":"LowMemoryResourceNotification","features":[323]},{"name":"MEHC_PATROL_SCRUBBER_PRESENT","features":[323]},{"name":"MEMORY_BASIC_INFORMATION","features":[323]},{"name":"MEMORY_BASIC_INFORMATION","features":[323]},{"name":"MEMORY_BASIC_INFORMATION32","features":[323]},{"name":"MEMORY_BASIC_INFORMATION64","features":[323]},{"name":"MEMORY_MAPPED_VIEW_ADDRESS","features":[323]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_ATTRIBUTE","features":[323]},{"name":"MEMORY_PARTITION_DEDICATED_MEMORY_INFORMATION","features":[323]},{"name":"MEMORY_RESOURCE_NOTIFICATION_TYPE","features":[323]},{"name":"MEM_ADDRESS_REQUIREMENTS","features":[323]},{"name":"MEM_COMMIT","features":[323]},{"name":"MEM_DECOMMIT","features":[323]},{"name":"MEM_DEDICATED_ATTRIBUTE_TYPE","features":[323]},{"name":"MEM_EXTENDED_PARAMETER","features":[305,323]},{"name":"MEM_EXTENDED_PARAMETER_TYPE","features":[323]},{"name":"MEM_FREE","features":[323]},{"name":"MEM_IMAGE","features":[323]},{"name":"MEM_LARGE_PAGES","features":[323]},{"name":"MEM_MAPPED","features":[323]},{"name":"MEM_PRESERVE_PLACEHOLDER","features":[323]},{"name":"MEM_PRIVATE","features":[323]},{"name":"MEM_RELEASE","features":[323]},{"name":"MEM_REPLACE_PLACEHOLDER","features":[323]},{"name":"MEM_RESERVE","features":[323]},{"name":"MEM_RESERVE_PLACEHOLDER","features":[323]},{"name":"MEM_RESET","features":[323]},{"name":"MEM_RESET_UNDO","features":[323]},{"name":"MEM_SECTION_EXTENDED_PARAMETER_TYPE","features":[323]},{"name":"MEM_UNMAP_NONE","features":[323]},{"name":"MEM_UNMAP_WITH_TRANSIENT_BOOST","features":[323]},{"name":"MapUserPhysicalPages","features":[305,323]},{"name":"MapUserPhysicalPagesScatter","features":[305,323]},{"name":"MapViewOfFile","features":[305,323]},{"name":"MapViewOfFile3","features":[305,323]},{"name":"MapViewOfFile3FromApp","features":[305,323]},{"name":"MapViewOfFileEx","features":[305,323]},{"name":"MapViewOfFileExNuma","features":[305,323]},{"name":"MapViewOfFileFromApp","features":[305,323]},{"name":"MapViewOfFileNuma2","features":[305,323]},{"name":"MemDedicatedAttributeMax","features":[323]},{"name":"MemDedicatedAttributeReadBandwidth","features":[323]},{"name":"MemDedicatedAttributeReadLatency","features":[323]},{"name":"MemDedicatedAttributeWriteBandwidth","features":[323]},{"name":"MemDedicatedAttributeWriteLatency","features":[323]},{"name":"MemExtendedParameterAddressRequirements","features":[323]},{"name":"MemExtendedParameterAttributeFlags","features":[323]},{"name":"MemExtendedParameterImageMachine","features":[323]},{"name":"MemExtendedParameterInvalidType","features":[323]},{"name":"MemExtendedParameterMax","features":[323]},{"name":"MemExtendedParameterNumaNode","features":[323]},{"name":"MemExtendedParameterPartitionHandle","features":[323]},{"name":"MemExtendedParameterUserPhysicalHandle","features":[323]},{"name":"MemSectionExtendedParameterInvalidType","features":[323]},{"name":"MemSectionExtendedParameterMax","features":[323]},{"name":"MemSectionExtendedParameterNumaNode","features":[323]},{"name":"MemSectionExtendedParameterSigningLevel","features":[323]},{"name":"MemSectionExtendedParameterUserPhysicalFlags","features":[323]},{"name":"MemoryPartitionDedicatedMemoryInfo","features":[323]},{"name":"MemoryPartitionInfo","features":[323]},{"name":"MemoryRegionInfo","features":[323]},{"name":"NONZEROLHND","features":[323]},{"name":"NONZEROLPTR","features":[323]},{"name":"OFFER_PRIORITY","features":[323]},{"name":"OfferVirtualMemory","features":[323]},{"name":"OpenDedicatedMemoryPartition","features":[305,323]},{"name":"OpenFileMappingA","features":[305,323]},{"name":"OpenFileMappingFromApp","features":[305,323]},{"name":"OpenFileMappingW","features":[305,323]},{"name":"PAGE_ENCLAVE_DECOMMIT","features":[323]},{"name":"PAGE_ENCLAVE_MASK","features":[323]},{"name":"PAGE_ENCLAVE_SS_FIRST","features":[323]},{"name":"PAGE_ENCLAVE_SS_REST","features":[323]},{"name":"PAGE_ENCLAVE_THREAD_CONTROL","features":[323]},{"name":"PAGE_ENCLAVE_UNVALIDATED","features":[323]},{"name":"PAGE_EXECUTE","features":[323]},{"name":"PAGE_EXECUTE_READ","features":[323]},{"name":"PAGE_EXECUTE_READWRITE","features":[323]},{"name":"PAGE_EXECUTE_WRITECOPY","features":[323]},{"name":"PAGE_GRAPHICS_COHERENT","features":[323]},{"name":"PAGE_GRAPHICS_EXECUTE","features":[323]},{"name":"PAGE_GRAPHICS_EXECUTE_READ","features":[323]},{"name":"PAGE_GRAPHICS_EXECUTE_READWRITE","features":[323]},{"name":"PAGE_GRAPHICS_NOACCESS","features":[323]},{"name":"PAGE_GRAPHICS_NOCACHE","features":[323]},{"name":"PAGE_GRAPHICS_READONLY","features":[323]},{"name":"PAGE_GRAPHICS_READWRITE","features":[323]},{"name":"PAGE_GUARD","features":[323]},{"name":"PAGE_NOACCESS","features":[323]},{"name":"PAGE_NOCACHE","features":[323]},{"name":"PAGE_PROTECTION_FLAGS","features":[323]},{"name":"PAGE_READONLY","features":[323]},{"name":"PAGE_READWRITE","features":[323]},{"name":"PAGE_REVERT_TO_FILE_MAP","features":[323]},{"name":"PAGE_TARGETS_INVALID","features":[323]},{"name":"PAGE_TARGETS_NO_UPDATE","features":[323]},{"name":"PAGE_TYPE","features":[323]},{"name":"PAGE_WRITECOMBINE","features":[323]},{"name":"PAGE_WRITECOPY","features":[323]},{"name":"PBAD_MEMORY_CALLBACK_ROUTINE","features":[323]},{"name":"PROCESS_HEAP_ENTRY","features":[305,323]},{"name":"PSECURE_MEMORY_CACHE_CALLBACK","features":[305,323]},{"name":"PrefetchVirtualMemory","features":[305,323]},{"name":"QUOTA_LIMITS_HARDWS_MAX_DISABLE","features":[323]},{"name":"QUOTA_LIMITS_HARDWS_MAX_ENABLE","features":[323]},{"name":"QUOTA_LIMITS_HARDWS_MIN_DISABLE","features":[323]},{"name":"QUOTA_LIMITS_HARDWS_MIN_ENABLE","features":[323]},{"name":"QueryMemoryResourceNotification","features":[305,323]},{"name":"QueryPartitionInformation","features":[305,323]},{"name":"QueryVirtualMemoryInformation","features":[305,323]},{"name":"ReclaimVirtualMemory","features":[323]},{"name":"RegisterBadMemoryNotification","features":[323]},{"name":"RemoveSecureMemoryCacheCallback","features":[305,323]},{"name":"ResetWriteWatch","features":[323]},{"name":"RtlCompareMemory","features":[323]},{"name":"RtlCrc32","features":[323]},{"name":"RtlCrc64","features":[323]},{"name":"RtlIsZeroMemory","features":[305,323]},{"name":"SECTION_ALL_ACCESS","features":[323]},{"name":"SECTION_EXTEND_SIZE","features":[323]},{"name":"SECTION_FLAGS","features":[323]},{"name":"SECTION_MAP_EXECUTE","features":[323]},{"name":"SECTION_MAP_EXECUTE_EXPLICIT","features":[323]},{"name":"SECTION_MAP_READ","features":[323]},{"name":"SECTION_MAP_WRITE","features":[323]},{"name":"SECTION_QUERY","features":[323]},{"name":"SEC_64K_PAGES","features":[323]},{"name":"SEC_COMMIT","features":[323]},{"name":"SEC_FILE","features":[323]},{"name":"SEC_IMAGE","features":[323]},{"name":"SEC_IMAGE_NO_EXECUTE","features":[323]},{"name":"SEC_LARGE_PAGES","features":[323]},{"name":"SEC_NOCACHE","features":[323]},{"name":"SEC_PARTITION_OWNER_HANDLE","features":[323]},{"name":"SEC_PROTECTED_IMAGE","features":[323]},{"name":"SEC_RESERVE","features":[323]},{"name":"SEC_WRITECOMBINE","features":[323]},{"name":"SETPROCESSWORKINGSETSIZEEX_FLAGS","features":[323]},{"name":"SetProcessValidCallTargets","features":[305,323]},{"name":"SetProcessValidCallTargetsForMappedView","features":[305,323]},{"name":"SetProcessWorkingSetSizeEx","features":[305,323]},{"name":"SetSystemFileCacheSize","features":[305,323]},{"name":"UNMAP_VIEW_OF_FILE_FLAGS","features":[323]},{"name":"UnmapViewOfFile","features":[305,323]},{"name":"UnmapViewOfFile2","features":[305,323]},{"name":"UnmapViewOfFileEx","features":[305,323]},{"name":"UnregisterBadMemoryNotification","features":[305,323]},{"name":"VIRTUAL_ALLOCATION_TYPE","features":[323]},{"name":"VIRTUAL_FREE_TYPE","features":[323]},{"name":"VirtualAlloc","features":[323]},{"name":"VirtualAlloc2","features":[305,323]},{"name":"VirtualAlloc2FromApp","features":[305,323]},{"name":"VirtualAllocEx","features":[305,323]},{"name":"VirtualAllocExNuma","features":[305,323]},{"name":"VirtualAllocFromApp","features":[323]},{"name":"VirtualFree","features":[305,323]},{"name":"VirtualFreeEx","features":[305,323]},{"name":"VirtualLock","features":[305,323]},{"name":"VirtualProtect","features":[305,323]},{"name":"VirtualProtectEx","features":[305,323]},{"name":"VirtualProtectFromApp","features":[305,323]},{"name":"VirtualQuery","features":[323]},{"name":"VirtualQueryEx","features":[305,323]},{"name":"VirtualUnlock","features":[305,323]},{"name":"VirtualUnlockEx","features":[305,323]},{"name":"VmOfferPriorityBelowNormal","features":[323]},{"name":"VmOfferPriorityLow","features":[323]},{"name":"VmOfferPriorityNormal","features":[323]},{"name":"VmOfferPriorityVeryLow","features":[323]},{"name":"WIN32_MEMORY_INFORMATION_CLASS","features":[323]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION","features":[323]},{"name":"WIN32_MEMORY_PARTITION_INFORMATION_CLASS","features":[323]},{"name":"WIN32_MEMORY_RANGE_ENTRY","features":[323]},{"name":"WIN32_MEMORY_REGION_INFORMATION","features":[323]}],"583":[{"name":"NV_MEMORY_RANGE","features":[567]},{"name":"RtlDrainNonVolatileFlush","features":[567]},{"name":"RtlFillNonVolatileMemory","features":[567]},{"name":"RtlFlushNonVolatileMemory","features":[567]},{"name":"RtlFlushNonVolatileMemoryRanges","features":[567]},{"name":"RtlFreeNonVolatileToken","features":[567]},{"name":"RtlGetNonVolatileToken","features":[567]},{"name":"RtlWriteNonVolatileMemory","features":[567]}],"584":[{"name":"DEFAULT_M_ACKNOWLEDGE","features":[568]},{"name":"DEFAULT_M_APPSPECIFIC","features":[568]},{"name":"DEFAULT_M_AUTH_LEVEL","features":[568]},{"name":"DEFAULT_M_DELIVERY","features":[568]},{"name":"DEFAULT_M_JOURNAL","features":[568]},{"name":"DEFAULT_M_LOOKUPID","features":[568]},{"name":"DEFAULT_M_PRIORITY","features":[568]},{"name":"DEFAULT_M_PRIV_LEVEL","features":[568]},{"name":"DEFAULT_M_SENDERID_TYPE","features":[568]},{"name":"DEFAULT_Q_AUTHENTICATE","features":[568]},{"name":"DEFAULT_Q_BASEPRIORITY","features":[568]},{"name":"DEFAULT_Q_JOURNAL","features":[568]},{"name":"DEFAULT_Q_JOURNAL_QUOTA","features":[568]},{"name":"DEFAULT_Q_PRIV_LEVEL","features":[568]},{"name":"DEFAULT_Q_QUOTA","features":[568]},{"name":"DEFAULT_Q_TRANSACTION","features":[568]},{"name":"FOREIGN_STATUS","features":[568]},{"name":"IMSMQApplication","features":[356,568]},{"name":"IMSMQApplication2","features":[356,568]},{"name":"IMSMQApplication3","features":[356,568]},{"name":"IMSMQCollection","features":[356,568]},{"name":"IMSMQCoordinatedTransactionDispenser","features":[356,568]},{"name":"IMSMQCoordinatedTransactionDispenser2","features":[356,568]},{"name":"IMSMQCoordinatedTransactionDispenser3","features":[356,568]},{"name":"IMSMQDestination","features":[356,568]},{"name":"IMSMQEvent","features":[356,568]},{"name":"IMSMQEvent2","features":[356,568]},{"name":"IMSMQEvent3","features":[356,568]},{"name":"IMSMQManagement","features":[356,568]},{"name":"IMSMQMessage","features":[356,568]},{"name":"IMSMQMessage2","features":[356,568]},{"name":"IMSMQMessage3","features":[356,568]},{"name":"IMSMQMessage4","features":[356,568]},{"name":"IMSMQOutgoingQueueManagement","features":[356,568]},{"name":"IMSMQPrivateDestination","features":[356,568]},{"name":"IMSMQPrivateEvent","features":[356,568]},{"name":"IMSMQQuery","features":[356,568]},{"name":"IMSMQQuery2","features":[356,568]},{"name":"IMSMQQuery3","features":[356,568]},{"name":"IMSMQQuery4","features":[356,568]},{"name":"IMSMQQueue","features":[356,568]},{"name":"IMSMQQueue2","features":[356,568]},{"name":"IMSMQQueue3","features":[356,568]},{"name":"IMSMQQueue4","features":[356,568]},{"name":"IMSMQQueueInfo","features":[356,568]},{"name":"IMSMQQueueInfo2","features":[356,568]},{"name":"IMSMQQueueInfo3","features":[356,568]},{"name":"IMSMQQueueInfo4","features":[356,568]},{"name":"IMSMQQueueInfos","features":[356,568]},{"name":"IMSMQQueueInfos2","features":[356,568]},{"name":"IMSMQQueueInfos3","features":[356,568]},{"name":"IMSMQQueueInfos4","features":[356,568]},{"name":"IMSMQQueueManagement","features":[356,568]},{"name":"IMSMQTransaction","features":[356,568]},{"name":"IMSMQTransaction2","features":[356,568]},{"name":"IMSMQTransaction3","features":[356,568]},{"name":"IMSMQTransactionDispenser","features":[356,568]},{"name":"IMSMQTransactionDispenser2","features":[356,568]},{"name":"IMSMQTransactionDispenser3","features":[356,568]},{"name":"LONG_LIVED","features":[568]},{"name":"MACHINE_ACTION_CONNECT","features":[568]},{"name":"MACHINE_ACTION_DISCONNECT","features":[568]},{"name":"MACHINE_ACTION_TIDY","features":[568]},{"name":"MGMT_QUEUE_CORRECT_TYPE","features":[568]},{"name":"MGMT_QUEUE_FOREIGN_TYPE","features":[568]},{"name":"MGMT_QUEUE_INCORRECT_TYPE","features":[568]},{"name":"MGMT_QUEUE_LOCAL_LOCATION","features":[568]},{"name":"MGMT_QUEUE_NOT_FOREIGN_TYPE","features":[568]},{"name":"MGMT_QUEUE_NOT_TRANSACTIONAL_TYPE","features":[568]},{"name":"MGMT_QUEUE_REMOTE_LOCATION","features":[568]},{"name":"MGMT_QUEUE_STATE_CONNECTED","features":[568]},{"name":"MGMT_QUEUE_STATE_DISCONNECTED","features":[568]},{"name":"MGMT_QUEUE_STATE_DISCONNECTING","features":[568]},{"name":"MGMT_QUEUE_STATE_LOCAL","features":[568]},{"name":"MGMT_QUEUE_STATE_LOCKED","features":[568]},{"name":"MGMT_QUEUE_STATE_NEED_VALIDATE","features":[568]},{"name":"MGMT_QUEUE_STATE_NONACTIVE","features":[568]},{"name":"MGMT_QUEUE_STATE_ONHOLD","features":[568]},{"name":"MGMT_QUEUE_STATE_WAITING","features":[568]},{"name":"MGMT_QUEUE_TRANSACTIONAL_TYPE","features":[568]},{"name":"MGMT_QUEUE_TYPE_CONNECTOR","features":[568]},{"name":"MGMT_QUEUE_TYPE_MACHINE","features":[568]},{"name":"MGMT_QUEUE_TYPE_MULTICAST","features":[568]},{"name":"MGMT_QUEUE_TYPE_PRIVATE","features":[568]},{"name":"MGMT_QUEUE_TYPE_PUBLIC","features":[568]},{"name":"MGMT_QUEUE_UNKNOWN_TYPE","features":[568]},{"name":"MO_MACHINE_TOKEN","features":[568]},{"name":"MO_QUEUE_TOKEN","features":[568]},{"name":"MQACCESS","features":[568]},{"name":"MQADsPathToFormatName","features":[568]},{"name":"MQAUTHENTICATE","features":[568]},{"name":"MQBeginTransaction","features":[549,568]},{"name":"MQCALG","features":[568]},{"name":"MQCERT_REGISTER","features":[568]},{"name":"MQCERT_REGISTER_ALWAYS","features":[568]},{"name":"MQCERT_REGISTER_IF_NOT_EXIST","features":[568]},{"name":"MQCOLUMNSET","features":[568]},{"name":"MQCONN_BIND_SOCKET_FAILURE","features":[568]},{"name":"MQCONN_CONNECT_SOCKET_FAILURE","features":[568]},{"name":"MQCONN_CREATE_SOCKET_FAILURE","features":[568]},{"name":"MQCONN_ESTABLISH_PACKET_RECEIVED","features":[568]},{"name":"MQCONN_INVALID_SERVER_CERT","features":[568]},{"name":"MQCONN_LIMIT_REACHED","features":[568]},{"name":"MQCONN_NAME_RESOLUTION_FAILURE","features":[568]},{"name":"MQCONN_NOFAILURE","features":[568]},{"name":"MQCONN_NOT_READY","features":[568]},{"name":"MQCONN_OUT_OF_MEMORY","features":[568]},{"name":"MQCONN_PING_FAILURE","features":[568]},{"name":"MQCONN_READY","features":[568]},{"name":"MQCONN_REFUSED_BY_OTHER_SIDE","features":[568]},{"name":"MQCONN_ROUTING_FAILURE","features":[568]},{"name":"MQCONN_SEND_FAILURE","features":[568]},{"name":"MQCONN_TCP_NOT_ENABLED","features":[568]},{"name":"MQCONN_UNKNOWN_FAILURE","features":[568]},{"name":"MQCloseCursor","features":[305,568]},{"name":"MQCloseQueue","features":[568]},{"name":"MQConnectionState","features":[568]},{"name":"MQCreateCursor","features":[305,568]},{"name":"MQCreateQueue","features":[308,568]},{"name":"MQDEFAULT","features":[568]},{"name":"MQDeleteQueue","features":[568]},{"name":"MQERROR","features":[568]},{"name":"MQFreeMemory","features":[568]},{"name":"MQFreeSecurityContext","features":[305,568]},{"name":"MQGetMachineProperties","features":[568]},{"name":"MQGetOverlappedResult","features":[305,310,568]},{"name":"MQGetPrivateComputerInformation","features":[568]},{"name":"MQGetQueueProperties","features":[568]},{"name":"MQGetQueueSecurity","features":[308,568]},{"name":"MQGetSecurityContext","features":[305,568]},{"name":"MQGetSecurityContextEx","features":[305,568]},{"name":"MQHandleToFormatName","features":[568]},{"name":"MQInstanceToFormatName","features":[568]},{"name":"MQJOURNAL","features":[568]},{"name":"MQLocateBegin","features":[305,568]},{"name":"MQLocateEnd","features":[305,568]},{"name":"MQLocateNext","features":[305,568]},{"name":"MQMAX","features":[568]},{"name":"MQMGMTPROPS","features":[568]},{"name":"MQMSGACKNOWLEDGEMENT","features":[568]},{"name":"MQMSGAUTHENTICATION","features":[568]},{"name":"MQMSGAUTHLEVEL","features":[568]},{"name":"MQMSGCLASS","features":[568]},{"name":"MQMSGCURSOR","features":[568]},{"name":"MQMSGDELIVERY","features":[568]},{"name":"MQMSGIDSIZE","features":[568]},{"name":"MQMSGJOURNAL","features":[568]},{"name":"MQMSGMAX","features":[568]},{"name":"MQMSGPRIVLEVEL","features":[568]},{"name":"MQMSGPROPS","features":[568]},{"name":"MQMSGSENDERIDTYPE","features":[568]},{"name":"MQMSGTRACE","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_REACH_QUEUE","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_FULL_RECEIVE","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_REACH_QUEUE","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_NACK_RECEIVE","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_NEG_RECEIVE","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_NONE","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_ARRIVAL","features":[568]},{"name":"MQMSG_ACKNOWLEDGMENT_POS_RECEIVE","features":[568]},{"name":"MQMSG_AUTHENTICATED_QM_MESSAGE","features":[568]},{"name":"MQMSG_AUTHENTICATED_SIG10","features":[568]},{"name":"MQMSG_AUTHENTICATED_SIG20","features":[568]},{"name":"MQMSG_AUTHENTICATED_SIG30","features":[568]},{"name":"MQMSG_AUTHENTICATED_SIGXML","features":[568]},{"name":"MQMSG_AUTHENTICATION_NOT_REQUESTED","features":[568]},{"name":"MQMSG_AUTHENTICATION_REQUESTED","features":[568]},{"name":"MQMSG_AUTHENTICATION_REQUESTED_EX","features":[568]},{"name":"MQMSG_AUTH_LEVEL_ALWAYS","features":[568]},{"name":"MQMSG_AUTH_LEVEL_MSMQ10","features":[568]},{"name":"MQMSG_AUTH_LEVEL_MSMQ20","features":[568]},{"name":"MQMSG_AUTH_LEVEL_NONE","features":[568]},{"name":"MQMSG_AUTH_LEVEL_SIG10","features":[568]},{"name":"MQMSG_AUTH_LEVEL_SIG20","features":[568]},{"name":"MQMSG_AUTH_LEVEL_SIG30","features":[568]},{"name":"MQMSG_CALG_DES","features":[568]},{"name":"MQMSG_CALG_DSS_SIGN","features":[568]},{"name":"MQMSG_CALG_MAC","features":[568]},{"name":"MQMSG_CALG_MD2","features":[568]},{"name":"MQMSG_CALG_MD4","features":[568]},{"name":"MQMSG_CALG_MD5","features":[568]},{"name":"MQMSG_CALG_RC2","features":[568]},{"name":"MQMSG_CALG_RC4","features":[568]},{"name":"MQMSG_CALG_RSA_KEYX","features":[568]},{"name":"MQMSG_CALG_RSA_SIGN","features":[568]},{"name":"MQMSG_CALG_SEAL","features":[568]},{"name":"MQMSG_CALG_SHA","features":[568]},{"name":"MQMSG_CALG_SHA1","features":[568]},{"name":"MQMSG_CLASS_ACK_REACH_QUEUE","features":[568]},{"name":"MQMSG_CLASS_ACK_RECEIVE","features":[568]},{"name":"MQMSG_CLASS_NACK_ACCESS_DENIED","features":[568]},{"name":"MQMSG_CLASS_NACK_BAD_DST_Q","features":[568]},{"name":"MQMSG_CLASS_NACK_BAD_ENCRYPTION","features":[568]},{"name":"MQMSG_CLASS_NACK_BAD_SIGNATURE","features":[568]},{"name":"MQMSG_CLASS_NACK_COULD_NOT_ENCRYPT","features":[568]},{"name":"MQMSG_CLASS_NACK_HOP_COUNT_EXCEEDED","features":[568]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_MSG","features":[568]},{"name":"MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_Q","features":[568]},{"name":"MQMSG_CLASS_NACK_PURGED","features":[568]},{"name":"MQMSG_CLASS_NACK_Q_DELETED","features":[568]},{"name":"MQMSG_CLASS_NACK_Q_EXCEED_QUOTA","features":[568]},{"name":"MQMSG_CLASS_NACK_Q_PURGED","features":[568]},{"name":"MQMSG_CLASS_NACK_REACH_QUEUE_TIMEOUT","features":[568]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT","features":[568]},{"name":"MQMSG_CLASS_NACK_RECEIVE_TIMEOUT_AT_SENDER","features":[568]},{"name":"MQMSG_CLASS_NACK_SOURCE_COMPUTER_GUID_CHANGED","features":[568]},{"name":"MQMSG_CLASS_NACK_UNSUPPORTED_CRYPTO_PROVIDER","features":[568]},{"name":"MQMSG_CLASS_NORMAL","features":[568]},{"name":"MQMSG_CLASS_REPORT","features":[568]},{"name":"MQMSG_CORRELATIONID_SIZE","features":[568]},{"name":"MQMSG_CURRENT","features":[568]},{"name":"MQMSG_DEADLETTER","features":[568]},{"name":"MQMSG_DELIVERY_EXPRESS","features":[568]},{"name":"MQMSG_DELIVERY_RECOVERABLE","features":[568]},{"name":"MQMSG_FIRST","features":[568]},{"name":"MQMSG_FIRST_IN_XACT","features":[568]},{"name":"MQMSG_JOURNAL","features":[568]},{"name":"MQMSG_JOURNAL_NONE","features":[568]},{"name":"MQMSG_LAST_IN_XACT","features":[568]},{"name":"MQMSG_MSGID_SIZE","features":[568]},{"name":"MQMSG_NEXT","features":[568]},{"name":"MQMSG_NOT_FIRST_IN_XACT","features":[568]},{"name":"MQMSG_NOT_LAST_IN_XACT","features":[568]},{"name":"MQMSG_PRIV_LEVEL_BODY_AES","features":[568]},{"name":"MQMSG_PRIV_LEVEL_BODY_BASE","features":[568]},{"name":"MQMSG_PRIV_LEVEL_BODY_ENHANCED","features":[568]},{"name":"MQMSG_PRIV_LEVEL_NONE","features":[568]},{"name":"MQMSG_SENDERID_TYPE_NONE","features":[568]},{"name":"MQMSG_SENDERID_TYPE_SID","features":[568]},{"name":"MQMSG_SEND_ROUTE_TO_REPORT_QUEUE","features":[568]},{"name":"MQMSG_TRACE_NONE","features":[568]},{"name":"MQMSG_XACTID_SIZE","features":[568]},{"name":"MQMarkMessageRejected","features":[305,568]},{"name":"MQMgmtAction","features":[568]},{"name":"MQMgmtGetInfo","features":[568]},{"name":"MQMoveMessage","features":[549,568]},{"name":"MQOpenQueue","features":[568]},{"name":"MQPRIORITY","features":[568]},{"name":"MQPRIVATEPROPS","features":[568]},{"name":"MQPRIVLEVEL","features":[568]},{"name":"MQPROPERTYRESTRICTION","features":[568]},{"name":"MQPathNameToFormatName","features":[568]},{"name":"MQPurgeQueue","features":[568]},{"name":"MQQMPROPS","features":[568]},{"name":"MQQUEUEACCESSMASK","features":[568]},{"name":"MQQUEUEPROPS","features":[568]},{"name":"MQRESTRICTION","features":[568]},{"name":"MQReceiveMessage","features":[305,549,310,568]},{"name":"MQReceiveMessageByLookupId","features":[305,549,310,568]},{"name":"MQRegisterCertificate","features":[568]},{"name":"MQSEC_CHANGE_QUEUE_PERMISSIONS","features":[568]},{"name":"MQSEC_DELETE_JOURNAL_MESSAGE","features":[568]},{"name":"MQSEC_DELETE_MESSAGE","features":[568]},{"name":"MQSEC_DELETE_QUEUE","features":[568]},{"name":"MQSEC_GET_QUEUE_PERMISSIONS","features":[568]},{"name":"MQSEC_GET_QUEUE_PROPERTIES","features":[568]},{"name":"MQSEC_PEEK_MESSAGE","features":[568]},{"name":"MQSEC_QUEUE_GENERIC_ALL","features":[568]},{"name":"MQSEC_QUEUE_GENERIC_EXECUTE","features":[568]},{"name":"MQSEC_QUEUE_GENERIC_READ","features":[568]},{"name":"MQSEC_QUEUE_GENERIC_WRITE","features":[568]},{"name":"MQSEC_RECEIVE_JOURNAL_MESSAGE","features":[568]},{"name":"MQSEC_RECEIVE_MESSAGE","features":[568]},{"name":"MQSEC_SET_QUEUE_PROPERTIES","features":[568]},{"name":"MQSEC_TAKE_QUEUE_OWNERSHIP","features":[568]},{"name":"MQSEC_WRITE_MESSAGE","features":[568]},{"name":"MQSHARE","features":[568]},{"name":"MQSORTKEY","features":[568]},{"name":"MQSORTSET","features":[568]},{"name":"MQSendMessage","features":[549,568]},{"name":"MQSetQueueProperties","features":[568]},{"name":"MQSetQueueSecurity","features":[308,568]},{"name":"MQTRANSACTION","features":[568]},{"name":"MQTRANSACTIONAL","features":[568]},{"name":"MQWARNING","features":[568]},{"name":"MQ_ACTION_PEEK_CURRENT","features":[568]},{"name":"MQ_ACTION_PEEK_NEXT","features":[568]},{"name":"MQ_ACTION_RECEIVE","features":[568]},{"name":"MQ_ADMIN_ACCESS","features":[568]},{"name":"MQ_AUTHENTICATE","features":[568]},{"name":"MQ_AUTHENTICATE_NONE","features":[568]},{"name":"MQ_CORRUPTED_QUEUE_WAS_DELETED","features":[568]},{"name":"MQ_DENY_NONE","features":[568]},{"name":"MQ_DENY_RECEIVE_SHARE","features":[568]},{"name":"MQ_ERROR","features":[568]},{"name":"MQ_ERROR_ACCESS_DENIED","features":[568]},{"name":"MQ_ERROR_BAD_SECURITY_CONTEXT","features":[568]},{"name":"MQ_ERROR_BAD_XML_FORMAT","features":[568]},{"name":"MQ_ERROR_BUFFER_OVERFLOW","features":[568]},{"name":"MQ_ERROR_CANNOT_CREATE_CERT_STORE","features":[568]},{"name":"MQ_ERROR_CANNOT_CREATE_HASH_EX","features":[568]},{"name":"MQ_ERROR_CANNOT_CREATE_ON_GC","features":[568]},{"name":"MQ_ERROR_CANNOT_CREATE_PSC_OBJECTS","features":[568]},{"name":"MQ_ERROR_CANNOT_DELETE_PSC_OBJECTS","features":[568]},{"name":"MQ_ERROR_CANNOT_GET_DN","features":[568]},{"name":"MQ_ERROR_CANNOT_GRANT_ADD_GUID","features":[568]},{"name":"MQ_ERROR_CANNOT_HASH_DATA_EX","features":[568]},{"name":"MQ_ERROR_CANNOT_IMPERSONATE_CLIENT","features":[568]},{"name":"MQ_ERROR_CANNOT_JOIN_DOMAIN","features":[568]},{"name":"MQ_ERROR_CANNOT_LOAD_MQAD","features":[568]},{"name":"MQ_ERROR_CANNOT_LOAD_MQDSSRV","features":[568]},{"name":"MQ_ERROR_CANNOT_LOAD_MSMQOCM","features":[568]},{"name":"MQ_ERROR_CANNOT_OPEN_CERT_STORE","features":[568]},{"name":"MQ_ERROR_CANNOT_SET_CRYPTO_SEC_DESCR","features":[568]},{"name":"MQ_ERROR_CANNOT_SIGN_DATA_EX","features":[568]},{"name":"MQ_ERROR_CANNOT_UPDATE_PSC_OBJECTS","features":[568]},{"name":"MQ_ERROR_CANT_CREATE_CERT_STORE","features":[568]},{"name":"MQ_ERROR_CANT_OPEN_CERT_STORE","features":[568]},{"name":"MQ_ERROR_CANT_RESOLVE_SITES","features":[568]},{"name":"MQ_ERROR_CERTIFICATE_NOT_PROVIDED","features":[568]},{"name":"MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION","features":[568]},{"name":"MQ_ERROR_CORRUPTED_INTERNAL_CERTIFICATE","features":[568]},{"name":"MQ_ERROR_CORRUPTED_PERSONAL_CERT_STORE","features":[568]},{"name":"MQ_ERROR_CORRUPTED_SECURITY_DATA","features":[568]},{"name":"MQ_ERROR_COULD_NOT_GET_ACCOUNT_INFO","features":[568]},{"name":"MQ_ERROR_COULD_NOT_GET_USER_SID","features":[568]},{"name":"MQ_ERROR_DELETE_CN_IN_USE","features":[568]},{"name":"MQ_ERROR_DEPEND_WKS_LICENSE_OVERFLOW","features":[568]},{"name":"MQ_ERROR_DS_BIND_ROOT_FOREST","features":[568]},{"name":"MQ_ERROR_DS_ERROR","features":[568]},{"name":"MQ_ERROR_DS_IS_FULL","features":[568]},{"name":"MQ_ERROR_DS_LOCAL_USER","features":[568]},{"name":"MQ_ERROR_DTC_CONNECT","features":[568]},{"name":"MQ_ERROR_ENCRYPTION_PROVIDER_NOT_SUPPORTED","features":[568]},{"name":"MQ_ERROR_FAIL_VERIFY_SIGNATURE_EX","features":[568]},{"name":"MQ_ERROR_FORMATNAME_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_GC_NEEDED","features":[568]},{"name":"MQ_ERROR_GUID_NOT_MATCHING","features":[568]},{"name":"MQ_ERROR_ILLEGAL_CONTEXT","features":[568]},{"name":"MQ_ERROR_ILLEGAL_CURSOR_ACTION","features":[568]},{"name":"MQ_ERROR_ILLEGAL_ENTERPRISE_OPERATION","features":[568]},{"name":"MQ_ERROR_ILLEGAL_FORMATNAME","features":[568]},{"name":"MQ_ERROR_ILLEGAL_MQCOLUMNS","features":[568]},{"name":"MQ_ERROR_ILLEGAL_MQPRIVATEPROPS","features":[568]},{"name":"MQ_ERROR_ILLEGAL_MQQMPROPS","features":[568]},{"name":"MQ_ERROR_ILLEGAL_MQQUEUEPROPS","features":[568]},{"name":"MQ_ERROR_ILLEGAL_OPERATION","features":[568]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_SIZE","features":[568]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VALUE","features":[568]},{"name":"MQ_ERROR_ILLEGAL_PROPERTY_VT","features":[568]},{"name":"MQ_ERROR_ILLEGAL_PROPID","features":[568]},{"name":"MQ_ERROR_ILLEGAL_QUEUE_PATHNAME","features":[568]},{"name":"MQ_ERROR_ILLEGAL_RELATION","features":[568]},{"name":"MQ_ERROR_ILLEGAL_RESTRICTION_PROPID","features":[568]},{"name":"MQ_ERROR_ILLEGAL_SECURITY_DESCRIPTOR","features":[568]},{"name":"MQ_ERROR_ILLEGAL_SORT","features":[568]},{"name":"MQ_ERROR_ILLEGAL_SORT_PROPID","features":[568]},{"name":"MQ_ERROR_ILLEGAL_USER","features":[568]},{"name":"MQ_ERROR_INSUFFICIENT_PROPERTIES","features":[568]},{"name":"MQ_ERROR_INSUFFICIENT_RESOURCES","features":[568]},{"name":"MQ_ERROR_INTERNAL_USER_CERT_EXIST","features":[568]},{"name":"MQ_ERROR_INVALID_CERTIFICATE","features":[568]},{"name":"MQ_ERROR_INVALID_HANDLE","features":[568]},{"name":"MQ_ERROR_INVALID_OWNER","features":[568]},{"name":"MQ_ERROR_INVALID_PARAMETER","features":[568]},{"name":"MQ_ERROR_IO_TIMEOUT","features":[568]},{"name":"MQ_ERROR_LABEL_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_LABEL_TOO_LONG","features":[568]},{"name":"MQ_ERROR_MACHINE_EXISTS","features":[568]},{"name":"MQ_ERROR_MACHINE_NOT_FOUND","features":[568]},{"name":"MQ_ERROR_MESSAGE_ALREADY_RECEIVED","features":[568]},{"name":"MQ_ERROR_MESSAGE_LOCKED_UNDER_TRANSACTION","features":[568]},{"name":"MQ_ERROR_MESSAGE_NOT_AUTHENTICATED","features":[568]},{"name":"MQ_ERROR_MESSAGE_NOT_FOUND","features":[568]},{"name":"MQ_ERROR_MESSAGE_STORAGE_FAILED","features":[568]},{"name":"MQ_ERROR_MISSING_CONNECTOR_TYPE","features":[568]},{"name":"MQ_ERROR_MQIS_READONLY_MODE","features":[568]},{"name":"MQ_ERROR_MQIS_SERVER_EMPTY","features":[568]},{"name":"MQ_ERROR_MULTI_SORT_KEYS","features":[568]},{"name":"MQ_ERROR_NOT_A_CORRECT_OBJECT_CLASS","features":[568]},{"name":"MQ_ERROR_NOT_SUPPORTED_BY_DEPENDENT_CLIENTS","features":[568]},{"name":"MQ_ERROR_NO_DS","features":[568]},{"name":"MQ_ERROR_NO_ENTRY_POINT_MSMQOCM","features":[568]},{"name":"MQ_ERROR_NO_GC_IN_DOMAIN","features":[568]},{"name":"MQ_ERROR_NO_INTERNAL_USER_CERT","features":[568]},{"name":"MQ_ERROR_NO_MQUSER_OU","features":[568]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_DC","features":[568]},{"name":"MQ_ERROR_NO_MSMQ_SERVERS_ON_GC","features":[568]},{"name":"MQ_ERROR_NO_RESPONSE_FROM_OBJECT_SERVER","features":[568]},{"name":"MQ_ERROR_OBJECT_SERVER_NOT_AVAILABLE","features":[568]},{"name":"MQ_ERROR_OPERATION_CANCELLED","features":[568]},{"name":"MQ_ERROR_OPERATION_NOT_SUPPORTED_BY_REMOTE_COMPUTER","features":[568]},{"name":"MQ_ERROR_PRIVILEGE_NOT_HELD","features":[568]},{"name":"MQ_ERROR_PROPERTIES_CONFLICT","features":[568]},{"name":"MQ_ERROR_PROPERTY","features":[568]},{"name":"MQ_ERROR_PROPERTY_NOTALLOWED","features":[568]},{"name":"MQ_ERROR_PROV_NAME_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_PUBLIC_KEY_DOES_NOT_EXIST","features":[568]},{"name":"MQ_ERROR_PUBLIC_KEY_NOT_FOUND","features":[568]},{"name":"MQ_ERROR_QUEUE_DELETED","features":[568]},{"name":"MQ_ERROR_QUEUE_EXISTS","features":[568]},{"name":"MQ_ERROR_QUEUE_NOT_ACTIVE","features":[568]},{"name":"MQ_ERROR_QUEUE_NOT_AVAILABLE","features":[568]},{"name":"MQ_ERROR_QUEUE_NOT_FOUND","features":[568]},{"name":"MQ_ERROR_Q_ADS_PROPERTY_NOT_SUPPORTED","features":[568]},{"name":"MQ_ERROR_Q_DNS_PROPERTY_NOT_SUPPORTED","features":[568]},{"name":"MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE","features":[568]},{"name":"MQ_ERROR_RESOLVE_ADDRESS","features":[568]},{"name":"MQ_ERROR_RESULT_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_SENDERID_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_SENDER_CERT_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_SERVICE_NOT_AVAILABLE","features":[568]},{"name":"MQ_ERROR_SHARING_VIOLATION","features":[568]},{"name":"MQ_ERROR_SIGNATURE_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_STALE_HANDLE","features":[568]},{"name":"MQ_ERROR_SYMM_KEY_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_TOO_MANY_PROPERTIES","features":[568]},{"name":"MQ_ERROR_TRANSACTION_ENLIST","features":[568]},{"name":"MQ_ERROR_TRANSACTION_IMPORT","features":[568]},{"name":"MQ_ERROR_TRANSACTION_SEQUENCE","features":[568]},{"name":"MQ_ERROR_TRANSACTION_USAGE","features":[568]},{"name":"MQ_ERROR_UNINITIALIZED_OBJECT","features":[568]},{"name":"MQ_ERROR_UNSUPPORTED_ACCESS_MODE","features":[568]},{"name":"MQ_ERROR_UNSUPPORTED_CLASS","features":[568]},{"name":"MQ_ERROR_UNSUPPORTED_FORMATNAME_OPERATION","features":[568]},{"name":"MQ_ERROR_UNSUPPORTED_OPERATION","features":[568]},{"name":"MQ_ERROR_USER_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_ERROR_WKS_CANT_SERVE_CLIENT","features":[568]},{"name":"MQ_ERROR_WRITE_NOT_ALLOWED","features":[568]},{"name":"MQ_INFORMATION_DUPLICATE_PROPERTY","features":[568]},{"name":"MQ_INFORMATION_FORMATNAME_BUFFER_TOO_SMALL","features":[568]},{"name":"MQ_INFORMATION_ILLEGAL_PROPERTY","features":[568]},{"name":"MQ_INFORMATION_INTERNAL_USER_CERT_EXIST","features":[568]},{"name":"MQ_INFORMATION_OPERATION_PENDING","features":[568]},{"name":"MQ_INFORMATION_OWNER_IGNORED","features":[568]},{"name":"MQ_INFORMATION_PROPERTY","features":[568]},{"name":"MQ_INFORMATION_PROPERTY_IGNORED","features":[568]},{"name":"MQ_INFORMATION_UNSUPPORTED_PROPERTY","features":[568]},{"name":"MQ_JOURNAL","features":[568]},{"name":"MQ_JOURNAL_NONE","features":[568]},{"name":"MQ_LOOKUP_PEEK_CURRENT","features":[568]},{"name":"MQ_LOOKUP_PEEK_FIRST","features":[568]},{"name":"MQ_LOOKUP_PEEK_LAST","features":[568]},{"name":"MQ_LOOKUP_PEEK_NEXT","features":[568]},{"name":"MQ_LOOKUP_PEEK_PREV","features":[568]},{"name":"MQ_LOOKUP_RECEIVE_ALLOW_PEEK","features":[568]},{"name":"MQ_LOOKUP_RECEIVE_CURRENT","features":[568]},{"name":"MQ_LOOKUP_RECEIVE_FIRST","features":[568]},{"name":"MQ_LOOKUP_RECEIVE_LAST","features":[568]},{"name":"MQ_LOOKUP_RECEIVE_NEXT","features":[568]},{"name":"MQ_LOOKUP_RECEIVE_PREV","features":[568]},{"name":"MQ_MAX_MSG_LABEL_LEN","features":[568]},{"name":"MQ_MAX_PRIORITY","features":[568]},{"name":"MQ_MAX_Q_LABEL_LEN","features":[568]},{"name":"MQ_MAX_Q_NAME_LEN","features":[568]},{"name":"MQ_MIN_PRIORITY","features":[568]},{"name":"MQ_MOVE_ACCESS","features":[568]},{"name":"MQ_MTS_TRANSACTION","features":[568]},{"name":"MQ_NO_TRANSACTION","features":[568]},{"name":"MQ_OK","features":[568]},{"name":"MQ_PEEK_ACCESS","features":[568]},{"name":"MQ_PRIV_LEVEL_BODY","features":[568]},{"name":"MQ_PRIV_LEVEL_NONE","features":[568]},{"name":"MQ_PRIV_LEVEL_OPTIONAL","features":[568]},{"name":"MQ_QTYPE_REPORT","features":[568]},{"name":"MQ_QTYPE_TEST","features":[568]},{"name":"MQ_QUEUE_STATE_CONNECTED","features":[568]},{"name":"MQ_QUEUE_STATE_DISCONNECTED","features":[568]},{"name":"MQ_QUEUE_STATE_DISCONNECTING","features":[568]},{"name":"MQ_QUEUE_STATE_LOCAL_CONNECTION","features":[568]},{"name":"MQ_QUEUE_STATE_LOCKED","features":[568]},{"name":"MQ_QUEUE_STATE_NEEDVALIDATE","features":[568]},{"name":"MQ_QUEUE_STATE_NONACTIVE","features":[568]},{"name":"MQ_QUEUE_STATE_ONHOLD","features":[568]},{"name":"MQ_QUEUE_STATE_WAITING","features":[568]},{"name":"MQ_RECEIVE_ACCESS","features":[568]},{"name":"MQ_SEND_ACCESS","features":[568]},{"name":"MQ_SINGLE_MESSAGE","features":[568]},{"name":"MQ_STATUS_FOREIGN","features":[568]},{"name":"MQ_STATUS_NOT_FOREIGN","features":[568]},{"name":"MQ_STATUS_UNKNOWN","features":[568]},{"name":"MQ_TRANSACTIONAL","features":[568]},{"name":"MQ_TRANSACTIONAL_NONE","features":[568]},{"name":"MQ_TYPE_CONNECTOR","features":[568]},{"name":"MQ_TYPE_MACHINE","features":[568]},{"name":"MQ_TYPE_MULTICAST","features":[568]},{"name":"MQ_TYPE_PRIVATE","features":[568]},{"name":"MQ_TYPE_PUBLIC","features":[568]},{"name":"MQ_XACT_STATUS_NOT_XACT","features":[568]},{"name":"MQ_XACT_STATUS_UNKNOWN","features":[568]},{"name":"MQ_XACT_STATUS_XACT","features":[568]},{"name":"MQ_XA_TRANSACTION","features":[568]},{"name":"MSMQApplication","features":[568]},{"name":"MSMQCollection","features":[568]},{"name":"MSMQCoordinatedTransactionDispenser","features":[568]},{"name":"MSMQDestination","features":[568]},{"name":"MSMQEvent","features":[568]},{"name":"MSMQManagement","features":[568]},{"name":"MSMQMessage","features":[568]},{"name":"MSMQOutgoingQueueManagement","features":[568]},{"name":"MSMQQuery","features":[568]},{"name":"MSMQQueue","features":[568]},{"name":"MSMQQueueInfo","features":[568]},{"name":"MSMQQueueInfos","features":[568]},{"name":"MSMQQueueManagement","features":[568]},{"name":"MSMQTransaction","features":[568]},{"name":"MSMQTransactionDispenser","features":[568]},{"name":"MSMQ_CONNECTED","features":[568]},{"name":"MSMQ_DISCONNECTED","features":[568]},{"name":"PMQRECEIVECALLBACK","features":[305,310,568]},{"name":"PREQ","features":[568]},{"name":"PRGE","features":[568]},{"name":"PRGT","features":[568]},{"name":"PRLE","features":[568]},{"name":"PRLT","features":[568]},{"name":"PRNE","features":[568]},{"name":"PROPID_MGMT_MSMQ_ACTIVEQUEUES","features":[568]},{"name":"PROPID_MGMT_MSMQ_BASE","features":[568]},{"name":"PROPID_MGMT_MSMQ_BYTES_IN_ALL_QUEUES","features":[568]},{"name":"PROPID_MGMT_MSMQ_CONNECTED","features":[568]},{"name":"PROPID_MGMT_MSMQ_DSSERVER","features":[568]},{"name":"PROPID_MGMT_MSMQ_PRIVATEQ","features":[568]},{"name":"PROPID_MGMT_MSMQ_TYPE","features":[568]},{"name":"PROPID_MGMT_QUEUE_BASE","features":[568]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_JOURNAL","features":[568]},{"name":"PROPID_MGMT_QUEUE_BYTES_IN_QUEUE","features":[568]},{"name":"PROPID_MGMT_QUEUE_CONNECTION_HISTORY","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_FIRST_NON_ACK","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_COUNT","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_ACK_TIME","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_LAST_NON_ACK","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_NEXT_SEQ","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_ACK_COUNT","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_NO_READ_COUNT","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_COUNT","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_INTERVAL","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_RESEND_TIME","features":[568]},{"name":"PROPID_MGMT_QUEUE_EOD_SOURCE_INFO","features":[568]},{"name":"PROPID_MGMT_QUEUE_FOREIGN","features":[568]},{"name":"PROPID_MGMT_QUEUE_FORMATNAME","features":[568]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_MESSAGE_COUNT","features":[568]},{"name":"PROPID_MGMT_QUEUE_JOURNAL_USED_QUOTA","features":[568]},{"name":"PROPID_MGMT_QUEUE_LOCATION","features":[568]},{"name":"PROPID_MGMT_QUEUE_MESSAGE_COUNT","features":[568]},{"name":"PROPID_MGMT_QUEUE_NEXTHOPS","features":[568]},{"name":"PROPID_MGMT_QUEUE_PATHNAME","features":[568]},{"name":"PROPID_MGMT_QUEUE_STATE","features":[568]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_COUNT","features":[568]},{"name":"PROPID_MGMT_QUEUE_SUBQUEUE_NAMES","features":[568]},{"name":"PROPID_MGMT_QUEUE_TYPE","features":[568]},{"name":"PROPID_MGMT_QUEUE_USED_QUOTA","features":[568]},{"name":"PROPID_MGMT_QUEUE_XACT","features":[568]},{"name":"PROPID_M_ABORT_COUNT","features":[568]},{"name":"PROPID_M_ACKNOWLEDGE","features":[568]},{"name":"PROPID_M_ADMIN_QUEUE","features":[568]},{"name":"PROPID_M_ADMIN_QUEUE_LEN","features":[568]},{"name":"PROPID_M_APPSPECIFIC","features":[568]},{"name":"PROPID_M_ARRIVEDTIME","features":[568]},{"name":"PROPID_M_AUTHENTICATED","features":[568]},{"name":"PROPID_M_AUTHENTICATED_EX","features":[568]},{"name":"PROPID_M_AUTH_LEVEL","features":[568]},{"name":"PROPID_M_BASE","features":[568]},{"name":"PROPID_M_BODY","features":[568]},{"name":"PROPID_M_BODY_SIZE","features":[568]},{"name":"PROPID_M_BODY_TYPE","features":[568]},{"name":"PROPID_M_CLASS","features":[568]},{"name":"PROPID_M_COMPOUND_MESSAGE","features":[568]},{"name":"PROPID_M_COMPOUND_MESSAGE_SIZE","features":[568]},{"name":"PROPID_M_CONNECTOR_TYPE","features":[568]},{"name":"PROPID_M_CORRELATIONID","features":[568]},{"name":"PROPID_M_CORRELATIONID_SIZE","features":[568]},{"name":"PROPID_M_DEADLETTER_QUEUE","features":[568]},{"name":"PROPID_M_DEADLETTER_QUEUE_LEN","features":[568]},{"name":"PROPID_M_DELIVERY","features":[568]},{"name":"PROPID_M_DEST_FORMAT_NAME","features":[568]},{"name":"PROPID_M_DEST_FORMAT_NAME_LEN","features":[568]},{"name":"PROPID_M_DEST_QUEUE","features":[568]},{"name":"PROPID_M_DEST_QUEUE_LEN","features":[568]},{"name":"PROPID_M_DEST_SYMM_KEY","features":[568]},{"name":"PROPID_M_DEST_SYMM_KEY_LEN","features":[568]},{"name":"PROPID_M_ENCRYPTION_ALG","features":[568]},{"name":"PROPID_M_EXTENSION","features":[568]},{"name":"PROPID_M_EXTENSION_LEN","features":[568]},{"name":"PROPID_M_FIRST_IN_XACT","features":[568]},{"name":"PROPID_M_HASH_ALG","features":[568]},{"name":"PROPID_M_JOURNAL","features":[568]},{"name":"PROPID_M_LABEL","features":[568]},{"name":"PROPID_M_LABEL_LEN","features":[568]},{"name":"PROPID_M_LAST_IN_XACT","features":[568]},{"name":"PROPID_M_LAST_MOVE_TIME","features":[568]},{"name":"PROPID_M_LOOKUPID","features":[568]},{"name":"PROPID_M_MOVE_COUNT","features":[568]},{"name":"PROPID_M_MSGID","features":[568]},{"name":"PROPID_M_MSGID_SIZE","features":[568]},{"name":"PROPID_M_PRIORITY","features":[568]},{"name":"PROPID_M_PRIV_LEVEL","features":[568]},{"name":"PROPID_M_PROV_NAME","features":[568]},{"name":"PROPID_M_PROV_NAME_LEN","features":[568]},{"name":"PROPID_M_PROV_TYPE","features":[568]},{"name":"PROPID_M_RESP_FORMAT_NAME","features":[568]},{"name":"PROPID_M_RESP_FORMAT_NAME_LEN","features":[568]},{"name":"PROPID_M_RESP_QUEUE","features":[568]},{"name":"PROPID_M_RESP_QUEUE_LEN","features":[568]},{"name":"PROPID_M_SECURITY_CONTEXT","features":[568]},{"name":"PROPID_M_SENDERID","features":[568]},{"name":"PROPID_M_SENDERID_LEN","features":[568]},{"name":"PROPID_M_SENDERID_TYPE","features":[568]},{"name":"PROPID_M_SENDER_CERT","features":[568]},{"name":"PROPID_M_SENDER_CERT_LEN","features":[568]},{"name":"PROPID_M_SENTTIME","features":[568]},{"name":"PROPID_M_SIGNATURE","features":[568]},{"name":"PROPID_M_SIGNATURE_LEN","features":[568]},{"name":"PROPID_M_SOAP_BODY","features":[568]},{"name":"PROPID_M_SOAP_ENVELOPE","features":[568]},{"name":"PROPID_M_SOAP_ENVELOPE_LEN","features":[568]},{"name":"PROPID_M_SOAP_HEADER","features":[568]},{"name":"PROPID_M_SRC_MACHINE_ID","features":[568]},{"name":"PROPID_M_TIME_TO_BE_RECEIVED","features":[568]},{"name":"PROPID_M_TIME_TO_REACH_QUEUE","features":[568]},{"name":"PROPID_M_TRACE","features":[568]},{"name":"PROPID_M_VERSION","features":[568]},{"name":"PROPID_M_XACTID","features":[568]},{"name":"PROPID_M_XACTID_SIZE","features":[568]},{"name":"PROPID_M_XACT_STATUS_QUEUE","features":[568]},{"name":"PROPID_M_XACT_STATUS_QUEUE_LEN","features":[568]},{"name":"PROPID_PC_BASE","features":[568]},{"name":"PROPID_PC_DS_ENABLED","features":[568]},{"name":"PROPID_PC_VERSION","features":[568]},{"name":"PROPID_QM_BASE","features":[568]},{"name":"PROPID_QM_CONNECTION","features":[568]},{"name":"PROPID_QM_ENCRYPTION_PK","features":[568]},{"name":"PROPID_QM_ENCRYPTION_PK_AES","features":[568]},{"name":"PROPID_QM_ENCRYPTION_PK_BASE","features":[568]},{"name":"PROPID_QM_ENCRYPTION_PK_ENHANCED","features":[568]},{"name":"PROPID_QM_MACHINE_ID","features":[568]},{"name":"PROPID_QM_PATHNAME","features":[568]},{"name":"PROPID_QM_PATHNAME_DNS","features":[568]},{"name":"PROPID_QM_SITE_ID","features":[568]},{"name":"PROPID_Q_ADS_PATH","features":[568]},{"name":"PROPID_Q_AUTHENTICATE","features":[568]},{"name":"PROPID_Q_BASE","features":[568]},{"name":"PROPID_Q_BASEPRIORITY","features":[568]},{"name":"PROPID_Q_CREATE_TIME","features":[568]},{"name":"PROPID_Q_INSTANCE","features":[568]},{"name":"PROPID_Q_JOURNAL","features":[568]},{"name":"PROPID_Q_JOURNAL_QUOTA","features":[568]},{"name":"PROPID_Q_LABEL","features":[568]},{"name":"PROPID_Q_MODIFY_TIME","features":[568]},{"name":"PROPID_Q_MULTICAST_ADDRESS","features":[568]},{"name":"PROPID_Q_PATHNAME","features":[568]},{"name":"PROPID_Q_PATHNAME_DNS","features":[568]},{"name":"PROPID_Q_PRIV_LEVEL","features":[568]},{"name":"PROPID_Q_QUOTA","features":[568]},{"name":"PROPID_Q_TRANSACTION","features":[568]},{"name":"PROPID_Q_TYPE","features":[568]},{"name":"QUERY_SORTASCEND","features":[568]},{"name":"QUERY_SORTDESCEND","features":[568]},{"name":"QUEUE_ACTION_EOD_RESEND","features":[568]},{"name":"QUEUE_ACTION_PAUSE","features":[568]},{"name":"QUEUE_ACTION_RESUME","features":[568]},{"name":"QUEUE_STATE","features":[568]},{"name":"QUEUE_TYPE","features":[568]},{"name":"RELOPS","features":[568]},{"name":"REL_EQ","features":[568]},{"name":"REL_GE","features":[568]},{"name":"REL_GT","features":[568]},{"name":"REL_LE","features":[568]},{"name":"REL_LT","features":[568]},{"name":"REL_NEQ","features":[568]},{"name":"REL_NOP","features":[568]},{"name":"SEQUENCE_INFO","features":[568]},{"name":"XACT_STATUS","features":[568]},{"name":"_DMSMQEventEvents","features":[356,568]}],"585":[{"name":"PERCEPTIONFIELD_StateStream_TimeStamps","features":[569]},{"name":"PERCEPTION_PAYLOAD_FIELD","features":[569]},{"name":"PERCEPTION_STATE_STREAM_TIMESTAMPS","features":[569]}],"586":[{"name":"AUTO_WIDTH","features":[570]},{"name":"AppEvents","features":[356,570]},{"name":"AppEventsDHTMLConnector","features":[570]},{"name":"Application","features":[570]},{"name":"BUTTONPRESSED","features":[570]},{"name":"CCM_COMMANDID_MASK_CONSTANTS","features":[570]},{"name":"CCM_COMMANDID_MASK_RESERVED","features":[570]},{"name":"CCM_INSERTIONALLOWED","features":[570]},{"name":"CCM_INSERTIONALLOWED_NEW","features":[570]},{"name":"CCM_INSERTIONALLOWED_TASK","features":[570]},{"name":"CCM_INSERTIONALLOWED_TOP","features":[570]},{"name":"CCM_INSERTIONALLOWED_VIEW","features":[570]},{"name":"CCM_INSERTIONPOINTID","features":[570]},{"name":"CCM_INSERTIONPOINTID_3RDPARTY_NEW","features":[570]},{"name":"CCM_INSERTIONPOINTID_3RDPARTY_TASK","features":[570]},{"name":"CCM_INSERTIONPOINTID_MASK_ADD_3RDPARTY","features":[570]},{"name":"CCM_INSERTIONPOINTID_MASK_ADD_PRIMARY","features":[570]},{"name":"CCM_INSERTIONPOINTID_MASK_CREATE_PRIMARY","features":[570]},{"name":"CCM_INSERTIONPOINTID_MASK_FLAGINDEX","features":[570]},{"name":"CCM_INSERTIONPOINTID_MASK_RESERVED","features":[570]},{"name":"CCM_INSERTIONPOINTID_MASK_SHARED","features":[570]},{"name":"CCM_INSERTIONPOINTID_MASK_SPECIAL","features":[570]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_HELP","features":[570]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_NEW","features":[570]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_TASK","features":[570]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_TOP","features":[570]},{"name":"CCM_INSERTIONPOINTID_PRIMARY_VIEW","features":[570]},{"name":"CCM_INSERTIONPOINTID_ROOT_MENU","features":[570]},{"name":"CCM_SPECIAL","features":[570]},{"name":"CCM_SPECIAL_DEFAULT_ITEM","features":[570]},{"name":"CCM_SPECIAL_INSERTION_POINT","features":[570]},{"name":"CCM_SPECIAL_SEPARATOR","features":[570]},{"name":"CCM_SPECIAL_SUBMENU","features":[570]},{"name":"CCM_SPECIAL_TESTONLY","features":[570]},{"name":"CCT_RESULT","features":[570]},{"name":"CCT_SCOPE","features":[570]},{"name":"CCT_SNAPIN_MANAGER","features":[570]},{"name":"CCT_UNINITIALIZED","features":[570]},{"name":"CHECKED","features":[570]},{"name":"COMBOBOXBAR","features":[570]},{"name":"CONTEXTMENUITEM","features":[570]},{"name":"CONTEXTMENUITEM2","features":[570]},{"name":"Column","features":[356,570]},{"name":"Columns","features":[356,570]},{"name":"ConsolePower","features":[570]},{"name":"ContextMenu","features":[356,570]},{"name":"DATA_OBJECT_TYPES","features":[570]},{"name":"Document","features":[356,570]},{"name":"DocumentMode_Author","features":[570]},{"name":"DocumentMode_User","features":[570]},{"name":"DocumentMode_User_MDI","features":[570]},{"name":"DocumentMode_User_SDI","features":[570]},{"name":"ENABLED","features":[570]},{"name":"ExportListOptions_Default","features":[570]},{"name":"ExportListOptions_SelectedItemsOnly","features":[570]},{"name":"ExportListOptions_TabDelimited","features":[570]},{"name":"ExportListOptions_Unicode","features":[570]},{"name":"Extension","features":[356,570]},{"name":"Extensions","features":[356,570]},{"name":"Frame","features":[356,570]},{"name":"HDI_HIDDEN","features":[570]},{"name":"HIDDEN","features":[570]},{"name":"HIDE_COLUMN","features":[570]},{"name":"IColumnData","features":[570]},{"name":"IComponent","features":[570]},{"name":"IComponent2","features":[570]},{"name":"IComponentData","features":[570]},{"name":"IComponentData2","features":[570]},{"name":"IConsole","features":[570]},{"name":"IConsole2","features":[570]},{"name":"IConsole3","features":[570]},{"name":"IConsoleNameSpace","features":[570]},{"name":"IConsoleNameSpace2","features":[570]},{"name":"IConsolePower","features":[570]},{"name":"IConsolePowerSink","features":[570]},{"name":"IConsoleVerb","features":[570]},{"name":"IContextMenuCallback","features":[570]},{"name":"IContextMenuCallback2","features":[570]},{"name":"IContextMenuProvider","features":[570]},{"name":"IControlbar","features":[570]},{"name":"IDisplayHelp","features":[570]},{"name":"IEnumTASK","features":[570]},{"name":"IExtendContextMenu","features":[570]},{"name":"IExtendControlbar","features":[570]},{"name":"IExtendPropertySheet","features":[570]},{"name":"IExtendPropertySheet2","features":[570]},{"name":"IExtendTaskPad","features":[570]},{"name":"IExtendView","features":[570]},{"name":"IHeaderCtrl","features":[570]},{"name":"IHeaderCtrl2","features":[570]},{"name":"IImageList","features":[570]},{"name":"ILSIF_LEAVE_LARGE_ICON","features":[570]},{"name":"ILSIF_LEAVE_SMALL_ICON","features":[570]},{"name":"IMMCVersionInfo","features":[570]},{"name":"IMenuButton","features":[570]},{"name":"IMessageView","features":[570]},{"name":"INDETERMINATE","features":[570]},{"name":"INodeProperties","features":[570]},{"name":"IPropertySheetCallback","features":[570]},{"name":"IPropertySheetProvider","features":[570]},{"name":"IRequiredExtensions","features":[570]},{"name":"IResultData","features":[570]},{"name":"IResultData2","features":[570]},{"name":"IResultDataCompare","features":[570]},{"name":"IResultDataCompareEx","features":[570]},{"name":"IResultOwnerData","features":[570]},{"name":"ISnapinAbout","features":[570]},{"name":"ISnapinHelp","features":[570]},{"name":"ISnapinHelp2","features":[570]},{"name":"ISnapinProperties","features":[570]},{"name":"ISnapinPropertiesCallback","features":[570]},{"name":"IStringTable","features":[570]},{"name":"IToolbar","features":[570]},{"name":"IViewExtensionCallback","features":[570]},{"name":"IconIdentifier","features":[570]},{"name":"Icon_Error","features":[570]},{"name":"Icon_First","features":[570]},{"name":"Icon_Information","features":[570]},{"name":"Icon_Last","features":[570]},{"name":"Icon_None","features":[570]},{"name":"Icon_Question","features":[570]},{"name":"Icon_Warning","features":[570]},{"name":"ListMode_Detail","features":[570]},{"name":"ListMode_Filtered","features":[570]},{"name":"ListMode_Large_Icons","features":[570]},{"name":"ListMode_List","features":[570]},{"name":"ListMode_Small_Icons","features":[570]},{"name":"MENUBUTTON","features":[570]},{"name":"MENUBUTTONDATA","features":[570]},{"name":"MFCC_DISABLE","features":[570]},{"name":"MFCC_ENABLE","features":[570]},{"name":"MFCC_VALUE_CHANGE","features":[570]},{"name":"MMCBUTTON","features":[570]},{"name":"MMCC_STANDARD_VIEW_SELECT","features":[570]},{"name":"MMCLV_AUTO","features":[570]},{"name":"MMCLV_NOICON","features":[570]},{"name":"MMCLV_NOPARAM","features":[570]},{"name":"MMCLV_NOPTR","features":[570]},{"name":"MMCLV_UPDATE_NOINVALIDATEALL","features":[570]},{"name":"MMCLV_UPDATE_NOSCROLL","features":[570]},{"name":"MMCLV_VIEWSTYLE_FILTERED","features":[570]},{"name":"MMCLV_VIEWSTYLE_ICON","features":[570]},{"name":"MMCLV_VIEWSTYLE_LIST","features":[570]},{"name":"MMCLV_VIEWSTYLE_REPORT","features":[570]},{"name":"MMCLV_VIEWSTYLE_SMALLICON","features":[570]},{"name":"MMCN_ACTIVATE","features":[570]},{"name":"MMCN_ADD_IMAGES","features":[570]},{"name":"MMCN_BTN_CLICK","features":[570]},{"name":"MMCN_CANPASTE_OUTOFPROC","features":[570]},{"name":"MMCN_CLICK","features":[570]},{"name":"MMCN_COLUMNS_CHANGED","features":[570]},{"name":"MMCN_COLUMN_CLICK","features":[570]},{"name":"MMCN_CONTEXTHELP","features":[570]},{"name":"MMCN_CONTEXTMENU","features":[570]},{"name":"MMCN_CUTORMOVE","features":[570]},{"name":"MMCN_DBLCLICK","features":[570]},{"name":"MMCN_DELETE","features":[570]},{"name":"MMCN_DESELECT_ALL","features":[570]},{"name":"MMCN_EXPAND","features":[570]},{"name":"MMCN_EXPANDSYNC","features":[570]},{"name":"MMCN_FILTERBTN_CLICK","features":[570]},{"name":"MMCN_FILTER_CHANGE","features":[570]},{"name":"MMCN_HELP","features":[570]},{"name":"MMCN_INITOCX","features":[570]},{"name":"MMCN_LISTPAD","features":[570]},{"name":"MMCN_MENU_BTNCLICK","features":[570]},{"name":"MMCN_MINIMIZED","features":[570]},{"name":"MMCN_PASTE","features":[570]},{"name":"MMCN_PRELOAD","features":[570]},{"name":"MMCN_PRINT","features":[570]},{"name":"MMCN_PROPERTY_CHANGE","features":[570]},{"name":"MMCN_QUERY_PASTE","features":[570]},{"name":"MMCN_REFRESH","features":[570]},{"name":"MMCN_REMOVE_CHILDREN","features":[570]},{"name":"MMCN_RENAME","features":[570]},{"name":"MMCN_RESTORE_VIEW","features":[570]},{"name":"MMCN_SELECT","features":[570]},{"name":"MMCN_SHOW","features":[570]},{"name":"MMCN_SNAPINHELP","features":[570]},{"name":"MMCN_VIEW_CHANGE","features":[570]},{"name":"MMCVersionInfo","features":[570]},{"name":"MMC_ACTION_ID","features":[570]},{"name":"MMC_ACTION_LINK","features":[570]},{"name":"MMC_ACTION_SCRIPT","features":[570]},{"name":"MMC_ACTION_TYPE","features":[570]},{"name":"MMC_ACTION_UNINITIALIZED","features":[570]},{"name":"MMC_BUTTON_STATE","features":[570]},{"name":"MMC_COLUMN_DATA","features":[570]},{"name":"MMC_COLUMN_SET_DATA","features":[570]},{"name":"MMC_CONSOLE_VERB","features":[570]},{"name":"MMC_CONTROL_TYPE","features":[570]},{"name":"MMC_DEFAULT_OPERATION_COPY","features":[570]},{"name":"MMC_ENSUREFOCUSVISIBLE","features":[570]},{"name":"MMC_EXPANDSYNC_STRUCT","features":[305,570]},{"name":"MMC_EXT_VIEW_DATA","features":[305,570]},{"name":"MMC_FILTERDATA","features":[570]},{"name":"MMC_FILTER_CHANGE_CODE","features":[570]},{"name":"MMC_FILTER_NOVALUE","features":[570]},{"name":"MMC_FILTER_TYPE","features":[570]},{"name":"MMC_IMAGECALLBACK","features":[570]},{"name":"MMC_INT_FILTER","features":[570]},{"name":"MMC_ITEM_OVERLAY_STATE_MASK","features":[570]},{"name":"MMC_ITEM_OVERLAY_STATE_SHIFT","features":[570]},{"name":"MMC_ITEM_STATE_MASK","features":[570]},{"name":"MMC_LISTPAD_INFO","features":[570]},{"name":"MMC_MENU_COMMAND_IDS","features":[570]},{"name":"MMC_MULTI_SELECT_COOKIE","features":[570]},{"name":"MMC_NODEID_SLOW_RETRIEVAL","features":[570]},{"name":"MMC_NOSORTHEADER","features":[570]},{"name":"MMC_NOTIFY_TYPE","features":[570]},{"name":"MMC_NW_OPTION_CUSTOMTITLE","features":[570]},{"name":"MMC_NW_OPTION_NOACTIONPANE","features":[570]},{"name":"MMC_NW_OPTION_NONE","features":[570]},{"name":"MMC_NW_OPTION_NOPERSIST","features":[570]},{"name":"MMC_NW_OPTION_NOSCOPEPANE","features":[570]},{"name":"MMC_NW_OPTION_NOTOOLBARS","features":[570]},{"name":"MMC_NW_OPTION_SHORTTITLE","features":[570]},{"name":"MMC_PROPACT_CHANGING","features":[570]},{"name":"MMC_PROPACT_DELETING","features":[570]},{"name":"MMC_PROPACT_INITIALIZED","features":[570]},{"name":"MMC_PROPERTY_ACTION","features":[570]},{"name":"MMC_PROP_CHANGEAFFECTSUI","features":[570]},{"name":"MMC_PROP_MODIFIABLE","features":[570]},{"name":"MMC_PROP_PERSIST","features":[570]},{"name":"MMC_PROP_REMOVABLE","features":[570]},{"name":"MMC_PSO_HASHELP","features":[570]},{"name":"MMC_PSO_NEWWIZARDTYPE","features":[570]},{"name":"MMC_PSO_NOAPPLYNOW","features":[570]},{"name":"MMC_PSO_NO_PROPTITLE","features":[570]},{"name":"MMC_RESTORE_VIEW","features":[570]},{"name":"MMC_RESULT_VIEW_STYLE","features":[570]},{"name":"MMC_SCOPE_ITEM_STATE","features":[570]},{"name":"MMC_SCOPE_ITEM_STATE_BOLD","features":[570]},{"name":"MMC_SCOPE_ITEM_STATE_EXPANDEDONCE","features":[570]},{"name":"MMC_SCOPE_ITEM_STATE_NORMAL","features":[570]},{"name":"MMC_SHOWSELALWAYS","features":[570]},{"name":"MMC_SINGLESEL","features":[570]},{"name":"MMC_SNAPIN_PROPERTY","features":[570]},{"name":"MMC_SORT_DATA","features":[570]},{"name":"MMC_SORT_SET_DATA","features":[570]},{"name":"MMC_STRING_FILTER","features":[570]},{"name":"MMC_TASK","features":[570]},{"name":"MMC_TASK_DISPLAY_BITMAP","features":[570]},{"name":"MMC_TASK_DISPLAY_OBJECT","features":[570]},{"name":"MMC_TASK_DISPLAY_SYMBOL","features":[570]},{"name":"MMC_TASK_DISPLAY_TYPE","features":[570]},{"name":"MMC_TASK_DISPLAY_TYPE_BITMAP","features":[570]},{"name":"MMC_TASK_DISPLAY_TYPE_CHOCOLATE_GIF","features":[570]},{"name":"MMC_TASK_DISPLAY_TYPE_SYMBOL","features":[570]},{"name":"MMC_TASK_DISPLAY_TYPE_VANILLA_GIF","features":[570]},{"name":"MMC_TASK_DISPLAY_UNINITIALIZED","features":[570]},{"name":"MMC_VER","features":[570]},{"name":"MMC_VERB_COPY","features":[570]},{"name":"MMC_VERB_CUT","features":[570]},{"name":"MMC_VERB_DELETE","features":[570]},{"name":"MMC_VERB_FIRST","features":[570]},{"name":"MMC_VERB_LAST","features":[570]},{"name":"MMC_VERB_MAX","features":[570]},{"name":"MMC_VERB_NONE","features":[570]},{"name":"MMC_VERB_OPEN","features":[570]},{"name":"MMC_VERB_PASTE","features":[570]},{"name":"MMC_VERB_PRINT","features":[570]},{"name":"MMC_VERB_PROPERTIES","features":[570]},{"name":"MMC_VERB_REFRESH","features":[570]},{"name":"MMC_VERB_RENAME","features":[570]},{"name":"MMC_VIEW_OPTIONS_CREATENEW","features":[570]},{"name":"MMC_VIEW_OPTIONS_EXCLUDE_SCOPE_ITEMS_FROM_LIST","features":[570]},{"name":"MMC_VIEW_OPTIONS_FILTERED","features":[570]},{"name":"MMC_VIEW_OPTIONS_LEXICAL_SORT","features":[570]},{"name":"MMC_VIEW_OPTIONS_MULTISELECT","features":[570]},{"name":"MMC_VIEW_OPTIONS_NOLISTVIEWS","features":[570]},{"name":"MMC_VIEW_OPTIONS_NONE","features":[570]},{"name":"MMC_VIEW_OPTIONS_OWNERDATALIST","features":[570]},{"name":"MMC_VIEW_OPTIONS_USEFONTLINKING","features":[570]},{"name":"MMC_VIEW_TYPE","features":[570]},{"name":"MMC_VIEW_TYPE_HTML","features":[570]},{"name":"MMC_VIEW_TYPE_LIST","features":[570]},{"name":"MMC_VIEW_TYPE_OCX","features":[570]},{"name":"MMC_VISIBLE_COLUMNS","features":[570]},{"name":"MMC_WINDOW_COOKIE","features":[570]},{"name":"MenuItem","features":[356,570]},{"name":"Node","features":[356,570]},{"name":"Nodes","features":[356,570]},{"name":"Properties","features":[356,570]},{"name":"Property","features":[356,570]},{"name":"RDCI_ScopeItem","features":[570]},{"name":"RDCOMPARE","features":[305,570]},{"name":"RDITEMHDR","features":[305,570]},{"name":"RDI_IMAGE","features":[570]},{"name":"RDI_INDENT","features":[570]},{"name":"RDI_INDEX","features":[570]},{"name":"RDI_PARAM","features":[570]},{"name":"RDI_STATE","features":[570]},{"name":"RDI_STR","features":[570]},{"name":"RESULTDATAITEM","features":[305,570]},{"name":"RESULTFINDINFO","features":[570]},{"name":"RESULT_VIEW_TYPE_INFO","features":[570]},{"name":"RFI_PARTIAL","features":[570]},{"name":"RFI_WRAP","features":[570]},{"name":"RSI_DESCENDING","features":[570]},{"name":"RSI_NOSORTICON","features":[570]},{"name":"RVTI_HTML_OPTIONS_NOLISTVIEW","features":[570]},{"name":"RVTI_HTML_OPTIONS_NONE","features":[570]},{"name":"RVTI_LIST_OPTIONS_ALLOWPASTE","features":[570]},{"name":"RVTI_LIST_OPTIONS_EXCLUDE_SCOPE_ITEMS_FROM_LIST","features":[570]},{"name":"RVTI_LIST_OPTIONS_FILTERED","features":[570]},{"name":"RVTI_LIST_OPTIONS_LEXICAL_SORT","features":[570]},{"name":"RVTI_LIST_OPTIONS_MULTISELECT","features":[570]},{"name":"RVTI_LIST_OPTIONS_NONE","features":[570]},{"name":"RVTI_LIST_OPTIONS_OWNERDATALIST","features":[570]},{"name":"RVTI_LIST_OPTIONS_USEFONTLINKING","features":[570]},{"name":"RVTI_MISC_OPTIONS_NOLISTVIEWS","features":[570]},{"name":"RVTI_OCX_OPTIONS_CACHE_OCX","features":[570]},{"name":"RVTI_OCX_OPTIONS_NOLISTVIEW","features":[570]},{"name":"RVTI_OCX_OPTIONS_NONE","features":[570]},{"name":"SCOPEDATAITEM","features":[305,570]},{"name":"SColumnSetID","features":[570]},{"name":"SDI_CHILDREN","features":[570]},{"name":"SDI_FIRST","features":[570]},{"name":"SDI_IMAGE","features":[570]},{"name":"SDI_NEXT","features":[570]},{"name":"SDI_OPENIMAGE","features":[570]},{"name":"SDI_PARAM","features":[570]},{"name":"SDI_PARENT","features":[570]},{"name":"SDI_PREVIOUS","features":[570]},{"name":"SDI_STATE","features":[570]},{"name":"SDI_STR","features":[570]},{"name":"SMMCDataObjects","features":[356,570]},{"name":"SMMCObjectTypes","features":[570]},{"name":"SNodeID","features":[570]},{"name":"SNodeID2","features":[570]},{"name":"SPECIAL_COOKIE_MAX","features":[570]},{"name":"SPECIAL_COOKIE_MIN","features":[570]},{"name":"SPECIAL_DOBJ_MAX","features":[570]},{"name":"SPECIAL_DOBJ_MIN","features":[570]},{"name":"ScopeNamespace","features":[356,570]},{"name":"SnapIn","features":[356,570]},{"name":"SnapIns","features":[356,570]},{"name":"SortOrder_Ascending","features":[570]},{"name":"SortOrder_Descending","features":[570]},{"name":"TOOLBAR","features":[570]},{"name":"View","features":[356,570]},{"name":"ViewOption_ActionPaneHidden","features":[570]},{"name":"ViewOption_Default","features":[570]},{"name":"ViewOption_NoToolBars","features":[570]},{"name":"ViewOption_NotPersistable","features":[570]},{"name":"ViewOption_ScopeTreeHidden","features":[570]},{"name":"Views","features":[356,570]},{"name":"_AppEvents","features":[356,570]},{"name":"_Application","features":[356,570]},{"name":"_ColumnSortOrder","features":[570]},{"name":"_DocumentMode","features":[570]},{"name":"_EventConnector","features":[356,570]},{"name":"_ExportListOptions","features":[570]},{"name":"_ListViewMode","features":[570]},{"name":"_ViewOptions","features":[570]}],"587":[{"name":"ACTIVATEFLAGS","features":[415]},{"name":"ACTIVATE_WINDOWLESS","features":[415]},{"name":"ACTIVEOBJECT_FLAGS","features":[415]},{"name":"ACTIVEOBJECT_STRONG","features":[415]},{"name":"ACTIVEOBJECT_WEAK","features":[415]},{"name":"ARRAYDESC","features":[356,415,380]},{"name":"BINDSPEED","features":[415]},{"name":"BINDSPEED_IMMEDIATE","features":[415]},{"name":"BINDSPEED_INDEFINITE","features":[415]},{"name":"BINDSPEED_MODERATE","features":[415]},{"name":"BUSY_DIALOG_FLAGS","features":[415]},{"name":"BZ_DISABLECANCELBUTTON","features":[415]},{"name":"BZ_DISABLERETRYBUTTON","features":[415]},{"name":"BZ_DISABLESWITCHTOBUTTON","features":[415]},{"name":"BZ_NOTRESPONDINGDIALOG","features":[415]},{"name":"BstrFromVector","features":[356,415]},{"name":"CADWORD","features":[415]},{"name":"CALPOLESTR","features":[415]},{"name":"CAUUID","features":[415]},{"name":"CF_BITMAP","features":[415]},{"name":"CF_CONVERTONLY","features":[415]},{"name":"CF_DIB","features":[415]},{"name":"CF_DIBV5","features":[415]},{"name":"CF_DIF","features":[415]},{"name":"CF_DISABLEACTIVATEAS","features":[415]},{"name":"CF_DISABLEDISPLAYASICON","features":[415]},{"name":"CF_DSPBITMAP","features":[415]},{"name":"CF_DSPENHMETAFILE","features":[415]},{"name":"CF_DSPMETAFILEPICT","features":[415]},{"name":"CF_DSPTEXT","features":[415]},{"name":"CF_ENHMETAFILE","features":[415]},{"name":"CF_GDIOBJFIRST","features":[415]},{"name":"CF_GDIOBJLAST","features":[415]},{"name":"CF_HDROP","features":[415]},{"name":"CF_HIDECHANGEICON","features":[415]},{"name":"CF_LOCALE","features":[415]},{"name":"CF_MAX","features":[415]},{"name":"CF_METAFILEPICT","features":[415]},{"name":"CF_OEMTEXT","features":[415]},{"name":"CF_OWNERDISPLAY","features":[415]},{"name":"CF_PALETTE","features":[415]},{"name":"CF_PENDATA","features":[415]},{"name":"CF_PRIVATEFIRST","features":[415]},{"name":"CF_PRIVATELAST","features":[415]},{"name":"CF_RIFF","features":[415]},{"name":"CF_SELECTACTIVATEAS","features":[415]},{"name":"CF_SELECTCONVERTTO","features":[415]},{"name":"CF_SETACTIVATEDEFAULT","features":[415]},{"name":"CF_SETCONVERTDEFAULT","features":[415]},{"name":"CF_SHOWHELPBUTTON","features":[415]},{"name":"CF_SYLK","features":[415]},{"name":"CF_TEXT","features":[415]},{"name":"CF_TIFF","features":[415]},{"name":"CF_UNICODETEXT","features":[415]},{"name":"CF_WAVE","features":[415]},{"name":"CHANGEKIND","features":[415]},{"name":"CHANGEKIND_ADDMEMBER","features":[415]},{"name":"CHANGEKIND_CHANGEFAILED","features":[415]},{"name":"CHANGEKIND_DELETEMEMBER","features":[415]},{"name":"CHANGEKIND_GENERAL","features":[415]},{"name":"CHANGEKIND_INVALIDATE","features":[415]},{"name":"CHANGEKIND_MAX","features":[415]},{"name":"CHANGEKIND_SETDOCUMENTATION","features":[415]},{"name":"CHANGEKIND_SETNAMES","features":[415]},{"name":"CHANGE_ICON_FLAGS","features":[415]},{"name":"CHANGE_SOURCE_FLAGS","features":[415]},{"name":"CIF_SELECTCURRENT","features":[415]},{"name":"CIF_SELECTDEFAULT","features":[415]},{"name":"CIF_SELECTFROMFILE","features":[415]},{"name":"CIF_SHOWHELP","features":[415]},{"name":"CIF_USEICONEXE","features":[415]},{"name":"CLEANLOCALSTORAGE","features":[415]},{"name":"CLIPBOARD_FORMAT","features":[415]},{"name":"CLSID_CColorPropPage","features":[415]},{"name":"CLSID_CFontPropPage","features":[415]},{"name":"CLSID_CPicturePropPage","features":[415]},{"name":"CLSID_ConvertVBX","features":[415]},{"name":"CLSID_PersistPropset","features":[415]},{"name":"CLSID_StdFont","features":[415]},{"name":"CLSID_StdPicture","features":[415]},{"name":"CONNECT_E_ADVISELIMIT","features":[415]},{"name":"CONNECT_E_CANNOTCONNECT","features":[415]},{"name":"CONNECT_E_FIRST","features":[415]},{"name":"CONNECT_E_LAST","features":[415]},{"name":"CONNECT_E_NOCONNECTION","features":[415]},{"name":"CONNECT_E_OVERRIDDEN","features":[415]},{"name":"CONNECT_S_FIRST","features":[415]},{"name":"CONNECT_S_LAST","features":[415]},{"name":"CONTROLINFO","features":[415,367]},{"name":"CSF_EXPLORER","features":[415]},{"name":"CSF_ONLYGETSOURCE","features":[415]},{"name":"CSF_SHOWHELP","features":[415]},{"name":"CSF_VALIDSOURCE","features":[415]},{"name":"CTL_E_ILLEGALFUNCTIONCALL","features":[415]},{"name":"CTRLINFO","features":[415]},{"name":"CTRLINFO_EATS_ESCAPE","features":[415]},{"name":"CTRLINFO_EATS_RETURN","features":[415]},{"name":"ClearCustData","features":[356,415]},{"name":"CreateDispTypeInfo","features":[356,415,380]},{"name":"CreateErrorInfo","features":[415]},{"name":"CreateOleAdviseHolder","features":[415]},{"name":"CreateStdDispatch","features":[356,415]},{"name":"CreateTypeLib","features":[356,415]},{"name":"CreateTypeLib2","features":[356,415]},{"name":"DD_DEFDRAGDELAY","features":[415]},{"name":"DD_DEFDRAGMINDIST","features":[415]},{"name":"DD_DEFSCROLLDELAY","features":[415]},{"name":"DD_DEFSCROLLINSET","features":[415]},{"name":"DD_DEFSCROLLINTERVAL","features":[415]},{"name":"DISCARDCACHE","features":[415]},{"name":"DISCARDCACHE_NOSAVE","features":[415]},{"name":"DISCARDCACHE_SAVEIFDIRTY","features":[415]},{"name":"DISPATCH_CONSTRUCT","features":[415]},{"name":"DISPID_ABOUTBOX","features":[415]},{"name":"DISPID_ACCELERATOR","features":[415]},{"name":"DISPID_ADDITEM","features":[415]},{"name":"DISPID_AMBIENT_APPEARANCE","features":[415]},{"name":"DISPID_AMBIENT_AUTOCLIP","features":[415]},{"name":"DISPID_AMBIENT_BACKCOLOR","features":[415]},{"name":"DISPID_AMBIENT_CHARSET","features":[415]},{"name":"DISPID_AMBIENT_CODEPAGE","features":[415]},{"name":"DISPID_AMBIENT_DISPLAYASDEFAULT","features":[415]},{"name":"DISPID_AMBIENT_DISPLAYNAME","features":[415]},{"name":"DISPID_AMBIENT_FONT","features":[415]},{"name":"DISPID_AMBIENT_FORECOLOR","features":[415]},{"name":"DISPID_AMBIENT_LOCALEID","features":[415]},{"name":"DISPID_AMBIENT_MESSAGEREFLECT","features":[415]},{"name":"DISPID_AMBIENT_PALETTE","features":[415]},{"name":"DISPID_AMBIENT_RIGHTTOLEFT","features":[415]},{"name":"DISPID_AMBIENT_SCALEUNITS","features":[415]},{"name":"DISPID_AMBIENT_SHOWGRABHANDLES","features":[415]},{"name":"DISPID_AMBIENT_SHOWHATCHING","features":[415]},{"name":"DISPID_AMBIENT_SUPPORTSMNEMONICS","features":[415]},{"name":"DISPID_AMBIENT_TEXTALIGN","features":[415]},{"name":"DISPID_AMBIENT_TOPTOBOTTOM","features":[415]},{"name":"DISPID_AMBIENT_TRANSFERPRIORITY","features":[415]},{"name":"DISPID_AMBIENT_UIDEAD","features":[415]},{"name":"DISPID_AMBIENT_USERMODE","features":[415]},{"name":"DISPID_APPEARANCE","features":[415]},{"name":"DISPID_AUTOSIZE","features":[415]},{"name":"DISPID_BACKCOLOR","features":[415]},{"name":"DISPID_BACKSTYLE","features":[415]},{"name":"DISPID_BORDERCOLOR","features":[415]},{"name":"DISPID_BORDERSTYLE","features":[415]},{"name":"DISPID_BORDERVISIBLE","features":[415]},{"name":"DISPID_BORDERWIDTH","features":[415]},{"name":"DISPID_CAPTION","features":[415]},{"name":"DISPID_CLEAR","features":[415]},{"name":"DISPID_CLICK","features":[415]},{"name":"DISPID_CLICK_VALUE","features":[415]},{"name":"DISPID_COLLECT","features":[415]},{"name":"DISPID_COLUMN","features":[415]},{"name":"DISPID_CONSTRUCTOR","features":[415]},{"name":"DISPID_DBLCLICK","features":[415]},{"name":"DISPID_DESTRUCTOR","features":[415]},{"name":"DISPID_DISPLAYSTYLE","features":[415]},{"name":"DISPID_DOCLICK","features":[415]},{"name":"DISPID_DRAWMODE","features":[415]},{"name":"DISPID_DRAWSTYLE","features":[415]},{"name":"DISPID_DRAWWIDTH","features":[415]},{"name":"DISPID_Delete","features":[415]},{"name":"DISPID_ENABLED","features":[415]},{"name":"DISPID_ENTERKEYBEHAVIOR","features":[415]},{"name":"DISPID_ERROREVENT","features":[415]},{"name":"DISPID_EVALUATE","features":[415]},{"name":"DISPID_FILLCOLOR","features":[415]},{"name":"DISPID_FILLSTYLE","features":[415]},{"name":"DISPID_FONT","features":[415]},{"name":"DISPID_FONT_BOLD","features":[415]},{"name":"DISPID_FONT_CHANGED","features":[415]},{"name":"DISPID_FONT_CHARSET","features":[415]},{"name":"DISPID_FONT_ITALIC","features":[415]},{"name":"DISPID_FONT_NAME","features":[415]},{"name":"DISPID_FONT_SIZE","features":[415]},{"name":"DISPID_FONT_STRIKE","features":[415]},{"name":"DISPID_FONT_UNDER","features":[415]},{"name":"DISPID_FONT_WEIGHT","features":[415]},{"name":"DISPID_FORECOLOR","features":[415]},{"name":"DISPID_GROUPNAME","features":[415]},{"name":"DISPID_HWND","features":[415]},{"name":"DISPID_IMEMODE","features":[415]},{"name":"DISPID_KEYDOWN","features":[415]},{"name":"DISPID_KEYPRESS","features":[415]},{"name":"DISPID_KEYUP","features":[415]},{"name":"DISPID_LIST","features":[415]},{"name":"DISPID_LISTCOUNT","features":[415]},{"name":"DISPID_LISTINDEX","features":[415]},{"name":"DISPID_MAXLENGTH","features":[415]},{"name":"DISPID_MOUSEDOWN","features":[415]},{"name":"DISPID_MOUSEICON","features":[415]},{"name":"DISPID_MOUSEMOVE","features":[415]},{"name":"DISPID_MOUSEPOINTER","features":[415]},{"name":"DISPID_MOUSEUP","features":[415]},{"name":"DISPID_MULTILINE","features":[415]},{"name":"DISPID_MULTISELECT","features":[415]},{"name":"DISPID_NEWENUM","features":[415]},{"name":"DISPID_NUMBEROFCOLUMNS","features":[415]},{"name":"DISPID_NUMBEROFROWS","features":[415]},{"name":"DISPID_Name","features":[415]},{"name":"DISPID_Object","features":[415]},{"name":"DISPID_PASSWORDCHAR","features":[415]},{"name":"DISPID_PICTURE","features":[415]},{"name":"DISPID_PICT_HANDLE","features":[415]},{"name":"DISPID_PICT_HEIGHT","features":[415]},{"name":"DISPID_PICT_HPAL","features":[415]},{"name":"DISPID_PICT_RENDER","features":[415]},{"name":"DISPID_PICT_TYPE","features":[415]},{"name":"DISPID_PICT_WIDTH","features":[415]},{"name":"DISPID_PROPERTYPUT","features":[415]},{"name":"DISPID_Parent","features":[415]},{"name":"DISPID_READYSTATE","features":[415]},{"name":"DISPID_READYSTATECHANGE","features":[415]},{"name":"DISPID_REFRESH","features":[415]},{"name":"DISPID_REMOVEITEM","features":[415]},{"name":"DISPID_RIGHTTOLEFT","features":[415]},{"name":"DISPID_SCROLLBARS","features":[415]},{"name":"DISPID_SELECTED","features":[415]},{"name":"DISPID_SELLENGTH","features":[415]},{"name":"DISPID_SELSTART","features":[415]},{"name":"DISPID_SELTEXT","features":[415]},{"name":"DISPID_STARTENUM","features":[415]},{"name":"DISPID_TABKEYBEHAVIOR","features":[415]},{"name":"DISPID_TABSTOP","features":[415]},{"name":"DISPID_TEXT","features":[415]},{"name":"DISPID_THIS","features":[415]},{"name":"DISPID_TOPTOBOTTOM","features":[415]},{"name":"DISPID_UNKNOWN","features":[415]},{"name":"DISPID_VALID","features":[415]},{"name":"DISPID_VALUE","features":[415]},{"name":"DISPID_WORDWRAP","features":[415]},{"name":"DOCMISC","features":[415]},{"name":"DOCMISC_CANCREATEMULTIPLEVIEWS","features":[415]},{"name":"DOCMISC_CANTOPENEDIT","features":[415]},{"name":"DOCMISC_NOFILESUPPORT","features":[415]},{"name":"DOCMISC_SUPPORTCOMPLEXRECTANGLES","features":[415]},{"name":"DROPEFFECT","features":[415]},{"name":"DROPEFFECT_COPY","features":[415]},{"name":"DROPEFFECT_LINK","features":[415]},{"name":"DROPEFFECT_MOVE","features":[415]},{"name":"DROPEFFECT_NONE","features":[415]},{"name":"DROPEFFECT_SCROLL","features":[415]},{"name":"DVASPECTINFO","features":[415]},{"name":"DVASPECTINFOFLAG","features":[415]},{"name":"DVASPECTINFOFLAG_CANOPTIMIZE","features":[415]},{"name":"DVEXTENTINFO","features":[305,415]},{"name":"DVEXTENTMODE","features":[415]},{"name":"DVEXTENT_CONTENT","features":[415]},{"name":"DVEXTENT_INTEGRAL","features":[415]},{"name":"DispCallFunc","features":[356,415,380]},{"name":"DispGetIDsOfNames","features":[356,415]},{"name":"DispGetParam","features":[356,415,380]},{"name":"DispInvoke","features":[356,415]},{"name":"DoDragDrop","features":[356,415]},{"name":"EDIT_LINKS_FLAGS","features":[415]},{"name":"ELF_DISABLECANCELLINK","features":[415]},{"name":"ELF_DISABLECHANGESOURCE","features":[415]},{"name":"ELF_DISABLEOPENSOURCE","features":[415]},{"name":"ELF_DISABLEUPDATENOW","features":[415]},{"name":"ELF_SHOWHELP","features":[415]},{"name":"EMBDHLP_CREATENOW","features":[415]},{"name":"EMBDHLP_DELAYCREATE","features":[415]},{"name":"EMBDHLP_FLAGS","features":[415]},{"name":"EMBDHLP_INPROC_HANDLER","features":[415]},{"name":"EMBDHLP_INPROC_SERVER","features":[415]},{"name":"ENUM_CONTROLS_WHICH_FLAGS","features":[415]},{"name":"FDEX_PROP_FLAGS","features":[415]},{"name":"FONTDESC","features":[305,356,415]},{"name":"GCW_WCH_SIBLING","features":[415]},{"name":"GC_WCH_ALL","features":[415]},{"name":"GC_WCH_CONTAINED","features":[415]},{"name":"GC_WCH_CONTAINER","features":[415]},{"name":"GC_WCH_FONLYAFTER","features":[415]},{"name":"GC_WCH_FONLYBEFORE","features":[415]},{"name":"GC_WCH_FREVERSEDIR","features":[415]},{"name":"GC_WCH_FSELECTED","features":[415]},{"name":"GC_WCH_SIBLING","features":[415]},{"name":"GUIDKIND","features":[415]},{"name":"GUIDKIND_DEFAULT_SOURCE_DISP_IID","features":[415]},{"name":"GUID_CHECKVALUEEXCLUSIVE","features":[415]},{"name":"GUID_COLOR","features":[415]},{"name":"GUID_FONTBOLD","features":[415]},{"name":"GUID_FONTITALIC","features":[415]},{"name":"GUID_FONTNAME","features":[415]},{"name":"GUID_FONTSIZE","features":[415]},{"name":"GUID_FONTSTRIKETHROUGH","features":[415]},{"name":"GUID_FONTUNDERSCORE","features":[415]},{"name":"GUID_HANDLE","features":[415]},{"name":"GUID_HIMETRIC","features":[415]},{"name":"GUID_OPTIONVALUEEXCLUSIVE","features":[415]},{"name":"GUID_TRISTATE","features":[415]},{"name":"GUID_XPOS","features":[415]},{"name":"GUID_XPOSPIXEL","features":[415]},{"name":"GUID_XSIZE","features":[415]},{"name":"GUID_XSIZEPIXEL","features":[415]},{"name":"GUID_YPOS","features":[415]},{"name":"GUID_YPOSPIXEL","features":[415]},{"name":"GUID_YSIZE","features":[415]},{"name":"GUID_YSIZEPIXEL","features":[415]},{"name":"GetActiveObject","features":[415]},{"name":"GetAltMonthNames","features":[415]},{"name":"GetRecordInfoFromGuids","features":[415]},{"name":"GetRecordInfoFromTypeInfo","features":[356,415]},{"name":"HITRESULT","features":[415]},{"name":"HITRESULT_CLOSE","features":[415]},{"name":"HITRESULT_HIT","features":[415]},{"name":"HITRESULT_OUTSIDE","features":[415]},{"name":"HITRESULT_TRANSPARENT","features":[415]},{"name":"HRGN_UserFree","features":[316,415]},{"name":"HRGN_UserFree64","features":[316,415]},{"name":"HRGN_UserMarshal","features":[316,415]},{"name":"HRGN_UserMarshal64","features":[316,415]},{"name":"HRGN_UserSize","features":[316,415]},{"name":"HRGN_UserSize64","features":[316,415]},{"name":"HRGN_UserUnmarshal","features":[316,415]},{"name":"HRGN_UserUnmarshal64","features":[316,415]},{"name":"IAdviseSinkEx","features":[356,415]},{"name":"ICanHandleException","features":[415]},{"name":"IClassFactory2","features":[356,415]},{"name":"IContinue","features":[415]},{"name":"IContinueCallback","features":[415]},{"name":"ICreateErrorInfo","features":[415]},{"name":"ICreateTypeInfo","features":[415]},{"name":"ICreateTypeInfo2","features":[415]},{"name":"ICreateTypeLib","features":[415]},{"name":"ICreateTypeLib2","features":[415]},{"name":"IDC_BZ_ICON","features":[415]},{"name":"IDC_BZ_MESSAGE1","features":[415]},{"name":"IDC_BZ_RETRY","features":[415]},{"name":"IDC_BZ_SWITCHTO","features":[415]},{"name":"IDC_CI_BROWSE","features":[415]},{"name":"IDC_CI_CURRENT","features":[415]},{"name":"IDC_CI_CURRENTICON","features":[415]},{"name":"IDC_CI_DEFAULT","features":[415]},{"name":"IDC_CI_DEFAULTICON","features":[415]},{"name":"IDC_CI_FROMFILE","features":[415]},{"name":"IDC_CI_FROMFILEEDIT","features":[415]},{"name":"IDC_CI_GROUP","features":[415]},{"name":"IDC_CI_ICONDISPLAY","features":[415]},{"name":"IDC_CI_ICONLIST","features":[415]},{"name":"IDC_CI_LABEL","features":[415]},{"name":"IDC_CI_LABELEDIT","features":[415]},{"name":"IDC_CV_ACTIVATEAS","features":[415]},{"name":"IDC_CV_ACTIVATELIST","features":[415]},{"name":"IDC_CV_CHANGEICON","features":[415]},{"name":"IDC_CV_CONVERTLIST","features":[415]},{"name":"IDC_CV_CONVERTTO","features":[415]},{"name":"IDC_CV_DISPLAYASICON","features":[415]},{"name":"IDC_CV_ICONDISPLAY","features":[415]},{"name":"IDC_CV_OBJECTTYPE","features":[415]},{"name":"IDC_CV_RESULTTEXT","features":[415]},{"name":"IDC_EL_AUTOMATIC","features":[415]},{"name":"IDC_EL_CANCELLINK","features":[415]},{"name":"IDC_EL_CHANGESOURCE","features":[415]},{"name":"IDC_EL_COL1","features":[415]},{"name":"IDC_EL_COL2","features":[415]},{"name":"IDC_EL_COL3","features":[415]},{"name":"IDC_EL_LINKSLISTBOX","features":[415]},{"name":"IDC_EL_LINKSOURCE","features":[415]},{"name":"IDC_EL_LINKTYPE","features":[415]},{"name":"IDC_EL_MANUAL","features":[415]},{"name":"IDC_EL_OPENSOURCE","features":[415]},{"name":"IDC_EL_UPDATENOW","features":[415]},{"name":"IDC_GP_CONVERT","features":[415]},{"name":"IDC_GP_OBJECTICON","features":[415]},{"name":"IDC_GP_OBJECTLOCATION","features":[415]},{"name":"IDC_GP_OBJECTNAME","features":[415]},{"name":"IDC_GP_OBJECTSIZE","features":[415]},{"name":"IDC_GP_OBJECTTYPE","features":[415]},{"name":"IDC_IO_ADDCONTROL","features":[415]},{"name":"IDC_IO_CHANGEICON","features":[415]},{"name":"IDC_IO_CONTROLTYPELIST","features":[415]},{"name":"IDC_IO_CREATEFROMFILE","features":[415]},{"name":"IDC_IO_CREATENEW","features":[415]},{"name":"IDC_IO_DISPLAYASICON","features":[415]},{"name":"IDC_IO_FILE","features":[415]},{"name":"IDC_IO_FILEDISPLAY","features":[415]},{"name":"IDC_IO_FILETEXT","features":[415]},{"name":"IDC_IO_FILETYPE","features":[415]},{"name":"IDC_IO_ICONDISPLAY","features":[415]},{"name":"IDC_IO_INSERTCONTROL","features":[415]},{"name":"IDC_IO_LINKFILE","features":[415]},{"name":"IDC_IO_OBJECTTYPELIST","features":[415]},{"name":"IDC_IO_OBJECTTYPETEXT","features":[415]},{"name":"IDC_IO_RESULTIMAGE","features":[415]},{"name":"IDC_IO_RESULTTEXT","features":[415]},{"name":"IDC_LP_AUTOMATIC","features":[415]},{"name":"IDC_LP_BREAKLINK","features":[415]},{"name":"IDC_LP_CHANGESOURCE","features":[415]},{"name":"IDC_LP_DATE","features":[415]},{"name":"IDC_LP_LINKSOURCE","features":[415]},{"name":"IDC_LP_MANUAL","features":[415]},{"name":"IDC_LP_OPENSOURCE","features":[415]},{"name":"IDC_LP_TIME","features":[415]},{"name":"IDC_LP_UPDATENOW","features":[415]},{"name":"IDC_OLEUIHELP","features":[415]},{"name":"IDC_PS_CHANGEICON","features":[415]},{"name":"IDC_PS_DISPLAYASICON","features":[415]},{"name":"IDC_PS_DISPLAYLIST","features":[415]},{"name":"IDC_PS_ICONDISPLAY","features":[415]},{"name":"IDC_PS_PASTE","features":[415]},{"name":"IDC_PS_PASTELINK","features":[415]},{"name":"IDC_PS_PASTELINKLIST","features":[415]},{"name":"IDC_PS_PASTELIST","features":[415]},{"name":"IDC_PS_RESULTIMAGE","features":[415]},{"name":"IDC_PS_RESULTTEXT","features":[415]},{"name":"IDC_PS_SOURCETEXT","features":[415]},{"name":"IDC_PU_CONVERT","features":[415]},{"name":"IDC_PU_ICON","features":[415]},{"name":"IDC_PU_LINKS","features":[415]},{"name":"IDC_PU_TEXT","features":[415]},{"name":"IDC_UL_METER","features":[415]},{"name":"IDC_UL_PERCENT","features":[415]},{"name":"IDC_UL_PROGRESS","features":[415]},{"name":"IDC_UL_STOP","features":[415]},{"name":"IDC_VP_ASICON","features":[415]},{"name":"IDC_VP_CHANGEICON","features":[415]},{"name":"IDC_VP_EDITABLE","features":[415]},{"name":"IDC_VP_ICONDISPLAY","features":[415]},{"name":"IDC_VP_PERCENT","features":[415]},{"name":"IDC_VP_RELATIVE","features":[415]},{"name":"IDC_VP_RESULTIMAGE","features":[415]},{"name":"IDC_VP_SCALETXT","features":[415]},{"name":"IDC_VP_SPIN","features":[415]},{"name":"IDD_BUSY","features":[415]},{"name":"IDD_CANNOTUPDATELINK","features":[415]},{"name":"IDD_CHANGEICON","features":[415]},{"name":"IDD_CHANGEICONBROWSE","features":[415]},{"name":"IDD_CHANGESOURCE","features":[415]},{"name":"IDD_CHANGESOURCE4","features":[415]},{"name":"IDD_CONVERT","features":[415]},{"name":"IDD_CONVERT4","features":[415]},{"name":"IDD_CONVERTONLY","features":[415]},{"name":"IDD_CONVERTONLY4","features":[415]},{"name":"IDD_EDITLINKS","features":[415]},{"name":"IDD_EDITLINKS4","features":[415]},{"name":"IDD_GNRLPROPS","features":[415]},{"name":"IDD_GNRLPROPS4","features":[415]},{"name":"IDD_INSERTFILEBROWSE","features":[415]},{"name":"IDD_INSERTOBJECT","features":[415]},{"name":"IDD_LINKPROPS","features":[415]},{"name":"IDD_LINKPROPS4","features":[415]},{"name":"IDD_LINKSOURCEUNAVAILABLE","features":[415]},{"name":"IDD_LINKTYPECHANGED","features":[415]},{"name":"IDD_LINKTYPECHANGEDA","features":[415]},{"name":"IDD_LINKTYPECHANGEDW","features":[415]},{"name":"IDD_OUTOFMEMORY","features":[415]},{"name":"IDD_PASTESPECIAL","features":[415]},{"name":"IDD_PASTESPECIAL4","features":[415]},{"name":"IDD_SERVERNOTFOUND","features":[415]},{"name":"IDD_SERVERNOTREG","features":[415]},{"name":"IDD_SERVERNOTREGA","features":[415]},{"name":"IDD_SERVERNOTREGW","features":[415]},{"name":"IDD_UPDATELINKS","features":[415]},{"name":"IDD_VIEWPROPS","features":[415]},{"name":"ID_BROWSE_ADDCONTROL","features":[415]},{"name":"ID_BROWSE_CHANGEICON","features":[415]},{"name":"ID_BROWSE_CHANGESOURCE","features":[415]},{"name":"ID_BROWSE_INSERTFILE","features":[415]},{"name":"ID_DEFAULTINST","features":[415]},{"name":"IDispError","features":[415]},{"name":"IDispatchEx","features":[356,415]},{"name":"IDropSource","features":[415]},{"name":"IDropSourceNotify","features":[415]},{"name":"IDropTarget","features":[415]},{"name":"IEnterpriseDropTarget","features":[415]},{"name":"IEnumOLEVERB","features":[415]},{"name":"IEnumOleDocumentViews","features":[415]},{"name":"IEnumOleUndoUnits","features":[415]},{"name":"IEnumVARIANT","features":[415]},{"name":"IFont","features":[415]},{"name":"IFontDisp","features":[356,415]},{"name":"IFontEventsDisp","features":[356,415]},{"name":"IGNOREMIME","features":[415]},{"name":"IGNOREMIME_PROMPT","features":[415]},{"name":"IGNOREMIME_TEXT","features":[415]},{"name":"IGetOleObject","features":[415]},{"name":"IGetVBAObject","features":[415]},{"name":"INSERT_OBJECT_FLAGS","features":[415]},{"name":"INSTALL_SCOPE_INVALID","features":[415]},{"name":"INSTALL_SCOPE_MACHINE","features":[415]},{"name":"INSTALL_SCOPE_USER","features":[415]},{"name":"INTERFACEDATA","features":[356,415,380]},{"name":"IOF_CHECKDISPLAYASICON","features":[415]},{"name":"IOF_CHECKLINK","features":[415]},{"name":"IOF_CREATEFILEOBJECT","features":[415]},{"name":"IOF_CREATELINKOBJECT","features":[415]},{"name":"IOF_CREATENEWOBJECT","features":[415]},{"name":"IOF_DISABLEDISPLAYASICON","features":[415]},{"name":"IOF_DISABLELINK","features":[415]},{"name":"IOF_HIDECHANGEICON","features":[415]},{"name":"IOF_SELECTCREATECONTROL","features":[415]},{"name":"IOF_SELECTCREATEFROMFILE","features":[415]},{"name":"IOF_SELECTCREATENEW","features":[415]},{"name":"IOF_SHOWHELP","features":[415]},{"name":"IOF_SHOWINSERTCONTROL","features":[415]},{"name":"IOF_VERIFYSERVERSEXIST","features":[415]},{"name":"IObjectIdentity","features":[415]},{"name":"IObjectWithSite","features":[415]},{"name":"IOleAdviseHolder","features":[415]},{"name":"IOleCache","features":[415]},{"name":"IOleCache2","features":[415]},{"name":"IOleCacheControl","features":[415]},{"name":"IOleClientSite","features":[415]},{"name":"IOleCommandTarget","features":[415]},{"name":"IOleContainer","features":[415]},{"name":"IOleControl","features":[415]},{"name":"IOleControlSite","features":[415]},{"name":"IOleDocument","features":[415]},{"name":"IOleDocumentSite","features":[415]},{"name":"IOleDocumentView","features":[415]},{"name":"IOleInPlaceActiveObject","features":[415]},{"name":"IOleInPlaceFrame","features":[415]},{"name":"IOleInPlaceObject","features":[415]},{"name":"IOleInPlaceObjectWindowless","features":[415]},{"name":"IOleInPlaceSite","features":[415]},{"name":"IOleInPlaceSiteEx","features":[415]},{"name":"IOleInPlaceSiteWindowless","features":[415]},{"name":"IOleInPlaceUIWindow","features":[415]},{"name":"IOleItemContainer","features":[415]},{"name":"IOleLink","features":[415]},{"name":"IOleObject","features":[415]},{"name":"IOleParentUndoUnit","features":[415]},{"name":"IOleUILinkContainerA","features":[415]},{"name":"IOleUILinkContainerW","features":[415]},{"name":"IOleUILinkInfoA","features":[415]},{"name":"IOleUILinkInfoW","features":[415]},{"name":"IOleUIObjInfoA","features":[415]},{"name":"IOleUIObjInfoW","features":[415]},{"name":"IOleUndoManager","features":[415]},{"name":"IOleUndoUnit","features":[415]},{"name":"IOleWindow","features":[415]},{"name":"IParseDisplayName","features":[415]},{"name":"IPerPropertyBrowsing","features":[415]},{"name":"IPersistPropertyBag","features":[356,415]},{"name":"IPersistPropertyBag2","features":[356,415]},{"name":"IPicture","features":[415]},{"name":"IPicture2","features":[415]},{"name":"IPictureDisp","features":[356,415]},{"name":"IPointerInactive","features":[415]},{"name":"IPrint","features":[415]},{"name":"IPropertyNotifySink","features":[415]},{"name":"IPropertyPage","features":[415]},{"name":"IPropertyPage2","features":[415]},{"name":"IPropertyPageSite","features":[415]},{"name":"IProtectFocus","features":[415]},{"name":"IProtectedModeMenuServices","features":[415]},{"name":"IProvideClassInfo","features":[415]},{"name":"IProvideClassInfo2","features":[415]},{"name":"IProvideMultipleClassInfo","features":[415]},{"name":"IProvideRuntimeContext","features":[415]},{"name":"IQuickActivate","features":[415]},{"name":"IRecordInfo","features":[415]},{"name":"ISimpleFrameSite","features":[415]},{"name":"ISpecifyPropertyPages","features":[415]},{"name":"ITypeChangeEvents","features":[415]},{"name":"ITypeFactory","features":[415]},{"name":"ITypeMarshal","features":[415]},{"name":"IVBFormat","features":[415]},{"name":"IVBGetControl","features":[415]},{"name":"IVariantChangeType","features":[415]},{"name":"IViewObject","features":[415]},{"name":"IViewObject2","features":[415]},{"name":"IViewObjectEx","features":[415]},{"name":"IZoomEvents","features":[415]},{"name":"IsAccelerator","features":[305,415,367]},{"name":"KEYMODIFIERS","features":[415]},{"name":"KEYMOD_ALT","features":[415]},{"name":"KEYMOD_CONTROL","features":[415]},{"name":"KEYMOD_SHIFT","features":[415]},{"name":"LHashValOfNameSys","features":[356,415]},{"name":"LHashValOfNameSysA","features":[356,415]},{"name":"LIBFLAGS","features":[415]},{"name":"LIBFLAG_FCONTROL","features":[415]},{"name":"LIBFLAG_FHASDISKIMAGE","features":[415]},{"name":"LIBFLAG_FHIDDEN","features":[415]},{"name":"LIBFLAG_FRESTRICTED","features":[415]},{"name":"LICINFO","features":[305,415]},{"name":"LOAD_PICTURE_FLAGS","features":[415]},{"name":"LOAD_TLB_AS_32BIT","features":[415]},{"name":"LOAD_TLB_AS_64BIT","features":[415]},{"name":"LOCALE_USE_NLS","features":[415]},{"name":"LPFNOLEUIHOOK","features":[305,415]},{"name":"LP_COLOR","features":[415]},{"name":"LP_DEFAULT","features":[415]},{"name":"LP_MONOCHROME","features":[415]},{"name":"LP_VGACOLOR","features":[415]},{"name":"LoadRegTypeLib","features":[356,415]},{"name":"LoadTypeLib","features":[356,415]},{"name":"LoadTypeLibEx","features":[356,415]},{"name":"MEDIAPLAYBACK_PAUSE","features":[415]},{"name":"MEDIAPLAYBACK_PAUSE_AND_SUSPEND","features":[415]},{"name":"MEDIAPLAYBACK_RESUME","features":[415]},{"name":"MEDIAPLAYBACK_RESUME_FROM_SUSPEND","features":[415]},{"name":"MEDIAPLAYBACK_STATE","features":[415]},{"name":"MEMBERID_NIL","features":[415]},{"name":"METHODDATA","features":[356,415,380]},{"name":"MK_ALT","features":[415]},{"name":"MSOCMDERR_E_CANCELED","features":[415]},{"name":"MSOCMDERR_E_DISABLED","features":[415]},{"name":"MSOCMDERR_E_FIRST","features":[415]},{"name":"MSOCMDERR_E_NOHELP","features":[415]},{"name":"MSOCMDERR_E_NOTSUPPORTED","features":[415]},{"name":"MSOCMDERR_E_UNKNOWNGROUP","features":[415]},{"name":"MULTICLASSINFO_FLAGS","features":[415]},{"name":"MULTICLASSINFO_GETIIDPRIMARY","features":[415]},{"name":"MULTICLASSINFO_GETIIDSOURCE","features":[415]},{"name":"MULTICLASSINFO_GETNUMRESERVEDDISPIDS","features":[415]},{"name":"MULTICLASSINFO_GETTYPEINFO","features":[415]},{"name":"NUMPARSE","features":[415]},{"name":"NUMPARSE_FLAGS","features":[415]},{"name":"NUMPRS_CURRENCY","features":[415]},{"name":"NUMPRS_DECIMAL","features":[415]},{"name":"NUMPRS_EXPONENT","features":[415]},{"name":"NUMPRS_HEX_OCT","features":[415]},{"name":"NUMPRS_INEXACT","features":[415]},{"name":"NUMPRS_LEADING_MINUS","features":[415]},{"name":"NUMPRS_LEADING_PLUS","features":[415]},{"name":"NUMPRS_LEADING_WHITE","features":[415]},{"name":"NUMPRS_NEG","features":[415]},{"name":"NUMPRS_PARENS","features":[415]},{"name":"NUMPRS_STD","features":[415]},{"name":"NUMPRS_THOUSANDS","features":[415]},{"name":"NUMPRS_TRAILING_MINUS","features":[415]},{"name":"NUMPRS_TRAILING_PLUS","features":[415]},{"name":"NUMPRS_TRAILING_WHITE","features":[415]},{"name":"NUMPRS_USE_ALL","features":[415]},{"name":"OBJECTDESCRIPTOR","features":[305,415]},{"name":"OBJECT_PROPERTIES_FLAGS","features":[415]},{"name":"OCM__BASE","features":[415]},{"name":"OCPFIPARAMS","features":[305,415]},{"name":"OF_GET","features":[415]},{"name":"OF_HANDLER","features":[415]},{"name":"OF_SET","features":[415]},{"name":"OLECLOSE","features":[415]},{"name":"OLECLOSE_NOSAVE","features":[415]},{"name":"OLECLOSE_PROMPTSAVE","features":[415]},{"name":"OLECLOSE_SAVEIFDIRTY","features":[415]},{"name":"OLECMD","features":[415]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_CLSID","features":[415]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_DISPLAYNAME","features":[415]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_INSTALLSCOPE","features":[415]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_PUBLISHER","features":[415]},{"name":"OLECMDARGINDEX_ACTIVEXINSTALL_SOURCEURL","features":[415]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_HWND","features":[415]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_X","features":[415]},{"name":"OLECMDARGINDEX_SHOWPAGEACTIONMENU_Y","features":[415]},{"name":"OLECMDERR_E_CANCELED","features":[415]},{"name":"OLECMDERR_E_DISABLED","features":[415]},{"name":"OLECMDERR_E_FIRST","features":[415]},{"name":"OLECMDERR_E_NOHELP","features":[415]},{"name":"OLECMDERR_E_NOTSUPPORTED","features":[415]},{"name":"OLECMDERR_E_UNKNOWNGROUP","features":[415]},{"name":"OLECMDEXECOPT","features":[415]},{"name":"OLECMDEXECOPT_DODEFAULT","features":[415]},{"name":"OLECMDEXECOPT_DONTPROMPTUSER","features":[415]},{"name":"OLECMDEXECOPT_PROMPTUSER","features":[415]},{"name":"OLECMDEXECOPT_SHOWHELP","features":[415]},{"name":"OLECMDF","features":[415]},{"name":"OLECMDF_DEFHIDEONCTXTMENU","features":[415]},{"name":"OLECMDF_ENABLED","features":[415]},{"name":"OLECMDF_INVISIBLE","features":[415]},{"name":"OLECMDF_LATCHED","features":[415]},{"name":"OLECMDF_NINCHED","features":[415]},{"name":"OLECMDF_SUPPORTED","features":[415]},{"name":"OLECMDID","features":[415]},{"name":"OLECMDIDF_BROWSERSTATE_BLOCKEDVERSION","features":[415]},{"name":"OLECMDIDF_BROWSERSTATE_DESKTOPHTMLDIALOG","features":[415]},{"name":"OLECMDIDF_BROWSERSTATE_EXTENSIONSOFF","features":[415]},{"name":"OLECMDIDF_BROWSERSTATE_IESECURITY","features":[415]},{"name":"OLECMDIDF_BROWSERSTATE_PROTECTEDMODE_OFF","features":[415]},{"name":"OLECMDIDF_BROWSERSTATE_REQUIRESACTIVEX","features":[415]},{"name":"OLECMDIDF_BROWSERSTATE_RESET","features":[415]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOLAYOUT","features":[415]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOPERSIST","features":[415]},{"name":"OLECMDIDF_OPTICAL_ZOOM_NOTRANSIENT","features":[415]},{"name":"OLECMDIDF_OPTICAL_ZOOM_RELOADFORNEWTAB","features":[415]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXDISALLOW","features":[415]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXINSTALL","features":[415]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXTRUSTFAIL","features":[415]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUNSAFE","features":[415]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERAPPROVAL","features":[415]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEXUSERDISABLE","features":[415]},{"name":"OLECMDIDF_PAGEACTION_ACTIVEX_EPM_INCOMPATIBLE","features":[415]},{"name":"OLECMDIDF_PAGEACTION_EXTENSION_COMPAT_BLOCKED","features":[415]},{"name":"OLECMDIDF_PAGEACTION_FILEDOWNLOAD","features":[415]},{"name":"OLECMDIDF_PAGEACTION_GENERIC_STATE","features":[415]},{"name":"OLECMDIDF_PAGEACTION_INTRANETZONEREQUEST","features":[415]},{"name":"OLECMDIDF_PAGEACTION_INVALID_CERT","features":[415]},{"name":"OLECMDIDF_PAGEACTION_LOCALMACHINE","features":[415]},{"name":"OLECMDIDF_PAGEACTION_MIMETEXTPLAIN","features":[415]},{"name":"OLECMDIDF_PAGEACTION_MIXEDCONTENT","features":[415]},{"name":"OLECMDIDF_PAGEACTION_NORESETACTIVEX","features":[415]},{"name":"OLECMDIDF_PAGEACTION_POPUPALLOWED","features":[415]},{"name":"OLECMDIDF_PAGEACTION_POPUPWINDOW","features":[415]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNDENY","features":[415]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTERNET","features":[415]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNINTRANET","features":[415]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[415]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[415]},{"name":"OLECMDIDF_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[415]},{"name":"OLECMDIDF_PAGEACTION_RESET","features":[415]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE","features":[415]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXINSTALL","features":[415]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTNAVIGATE_ACTIVEXUSERAPPROVAL","features":[415]},{"name":"OLECMDIDF_PAGEACTION_SCRIPTPROMPT","features":[415]},{"name":"OLECMDIDF_PAGEACTION_SPOOFABLEIDNHOST","features":[415]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED","features":[415]},{"name":"OLECMDIDF_PAGEACTION_WPCBLOCKED_ACTIVEX","features":[415]},{"name":"OLECMDIDF_PAGEACTION_XSSFILTERED","features":[415]},{"name":"OLECMDIDF_REFRESH_CLEARUSERINPUT","features":[415]},{"name":"OLECMDIDF_REFRESH_COMPLETELY","features":[415]},{"name":"OLECMDIDF_REFRESH_CONTINUE","features":[415]},{"name":"OLECMDIDF_REFRESH_IFEXPIRED","features":[415]},{"name":"OLECMDIDF_REFRESH_LEVELMASK","features":[415]},{"name":"OLECMDIDF_REFRESH_NORMAL","features":[415]},{"name":"OLECMDIDF_REFRESH_NO_CACHE","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ACTIVEXINSTALL","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_ALLOW_VERSION","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_FILEDOWNLOAD","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_INVALID_CERT","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_LOCALMACHINE","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_MIXEDCONTENT","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_POPUPWINDOW","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTERNET","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNINTRANET","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNLOCALMACHINE","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNRESTRICTED","features":[415]},{"name":"OLECMDIDF_REFRESH_PAGEACTION_PROTLOCKDOWNTRUSTED","features":[415]},{"name":"OLECMDIDF_REFRESH_PROMPTIFOFFLINE","features":[415]},{"name":"OLECMDIDF_REFRESH_RELOAD","features":[415]},{"name":"OLECMDIDF_REFRESH_SKIPBEFOREUNLOADEVENT","features":[415]},{"name":"OLECMDIDF_REFRESH_THROUGHSCRIPT","features":[415]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM","features":[415]},{"name":"OLECMDIDF_VIEWPORTMODE_EXCLUDE_VISUAL_BOTTOM_VALID","features":[415]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH","features":[415]},{"name":"OLECMDIDF_VIEWPORTMODE_FIXED_LAYOUT_WIDTH_VALID","features":[415]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED","features":[415]},{"name":"OLECMDIDF_WINDOWSTATE_ENABLED_VALID","features":[415]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE","features":[415]},{"name":"OLECMDIDF_WINDOWSTATE_USERVISIBLE_VALID","features":[415]},{"name":"OLECMDID_ACTIVEXINSTALLSCOPE","features":[415]},{"name":"OLECMDID_ADDTRAVELENTRY","features":[415]},{"name":"OLECMDID_ALLOWUILESSSAVEAS","features":[415]},{"name":"OLECMDID_BROWSERSTATEFLAG","features":[415]},{"name":"OLECMDID_CLEARSELECTION","features":[415]},{"name":"OLECMDID_CLOSE","features":[415]},{"name":"OLECMDID_COPY","features":[415]},{"name":"OLECMDID_CUT","features":[415]},{"name":"OLECMDID_DELETE","features":[415]},{"name":"OLECMDID_DONTDOWNLOADCSS","features":[415]},{"name":"OLECMDID_ENABLE_INTERACTION","features":[415]},{"name":"OLECMDID_ENABLE_VISIBILITY","features":[415]},{"name":"OLECMDID_EXITFULLSCREEN","features":[415]},{"name":"OLECMDID_FIND","features":[415]},{"name":"OLECMDID_FOCUSVIEWCONTROLS","features":[415]},{"name":"OLECMDID_FOCUSVIEWCONTROLSQUERY","features":[415]},{"name":"OLECMDID_GETPRINTTEMPLATE","features":[415]},{"name":"OLECMDID_GETUSERSCALABLE","features":[415]},{"name":"OLECMDID_GETZOOMRANGE","features":[415]},{"name":"OLECMDID_HIDETOOLBARS","features":[415]},{"name":"OLECMDID_HTTPEQUIV","features":[415]},{"name":"OLECMDID_HTTPEQUIV_DONE","features":[415]},{"name":"OLECMDID_LAYOUT_VIEWPORT_WIDTH","features":[415]},{"name":"OLECMDID_MEDIA_PLAYBACK","features":[415]},{"name":"OLECMDID_NEW","features":[415]},{"name":"OLECMDID_ONBEFOREUNLOAD","features":[415]},{"name":"OLECMDID_ONTOOLBARACTIVATED","features":[415]},{"name":"OLECMDID_ONUNLOAD","features":[415]},{"name":"OLECMDID_OPEN","features":[415]},{"name":"OLECMDID_OPTICAL_GETZOOMRANGE","features":[415]},{"name":"OLECMDID_OPTICAL_ZOOM","features":[415]},{"name":"OLECMDID_OPTICAL_ZOOMFLAG","features":[415]},{"name":"OLECMDID_PAGEACTIONBLOCKED","features":[415]},{"name":"OLECMDID_PAGEACTIONFLAG","features":[415]},{"name":"OLECMDID_PAGEACTIONUIQUERY","features":[415]},{"name":"OLECMDID_PAGEAVAILABLE","features":[415]},{"name":"OLECMDID_PAGESETUP","features":[415]},{"name":"OLECMDID_PASTE","features":[415]},{"name":"OLECMDID_PASTESPECIAL","features":[415]},{"name":"OLECMDID_POPSTATEEVENT","features":[415]},{"name":"OLECMDID_PREREFRESH","features":[415]},{"name":"OLECMDID_PRINT","features":[415]},{"name":"OLECMDID_PRINT2","features":[415]},{"name":"OLECMDID_PRINTPREVIEW","features":[415]},{"name":"OLECMDID_PRINTPREVIEW2","features":[415]},{"name":"OLECMDID_PROPERTIES","features":[415]},{"name":"OLECMDID_PROPERTYBAG2","features":[415]},{"name":"OLECMDID_REDO","features":[415]},{"name":"OLECMDID_REFRESH","features":[415]},{"name":"OLECMDID_REFRESHFLAG","features":[415]},{"name":"OLECMDID_SAVE","features":[415]},{"name":"OLECMDID_SAVEAS","features":[415]},{"name":"OLECMDID_SAVECOPYAS","features":[415]},{"name":"OLECMDID_SCROLLCOMPLETE","features":[415]},{"name":"OLECMDID_SELECTALL","features":[415]},{"name":"OLECMDID_SETDOWNLOADSTATE","features":[415]},{"name":"OLECMDID_SETFAVICON","features":[415]},{"name":"OLECMDID_SETPRINTTEMPLATE","features":[415]},{"name":"OLECMDID_SETPROGRESSMAX","features":[415]},{"name":"OLECMDID_SETPROGRESSPOS","features":[415]},{"name":"OLECMDID_SETPROGRESSTEXT","features":[415]},{"name":"OLECMDID_SETTITLE","features":[415]},{"name":"OLECMDID_SET_HOST_FULLSCREENMODE","features":[415]},{"name":"OLECMDID_SHOWFIND","features":[415]},{"name":"OLECMDID_SHOWMESSAGE","features":[415]},{"name":"OLECMDID_SHOWMESSAGE_BLOCKABLE","features":[415]},{"name":"OLECMDID_SHOWPAGEACTIONMENU","features":[415]},{"name":"OLECMDID_SHOWPAGESETUP","features":[415]},{"name":"OLECMDID_SHOWPRINT","features":[415]},{"name":"OLECMDID_SHOWSCRIPTERROR","features":[415]},{"name":"OLECMDID_SHOWTASKDLG","features":[415]},{"name":"OLECMDID_SHOWTASKDLG_BLOCKABLE","features":[415]},{"name":"OLECMDID_SPELL","features":[415]},{"name":"OLECMDID_STOP","features":[415]},{"name":"OLECMDID_STOPDOWNLOAD","features":[415]},{"name":"OLECMDID_UNDO","features":[415]},{"name":"OLECMDID_UPDATEBACKFORWARDSTATE","features":[415]},{"name":"OLECMDID_UPDATECOMMANDS","features":[415]},{"name":"OLECMDID_UPDATEPAGESTATUS","features":[415]},{"name":"OLECMDID_UPDATETRAVELENTRY","features":[415]},{"name":"OLECMDID_UPDATETRAVELENTRY_DATARECOVERY","features":[415]},{"name":"OLECMDID_UPDATE_CARET","features":[415]},{"name":"OLECMDID_USER_OPTICAL_ZOOM","features":[415]},{"name":"OLECMDID_VIEWPORT_MODE","features":[415]},{"name":"OLECMDID_VIEWPORT_MODE_FLAG","features":[415]},{"name":"OLECMDID_VISUAL_VIEWPORT_EXCLUDE_BOTTOM","features":[415]},{"name":"OLECMDID_WINDOWSTATECHANGED","features":[415]},{"name":"OLECMDID_WINDOWSTATE_FLAG","features":[415]},{"name":"OLECMDID_ZOOM","features":[415]},{"name":"OLECMDTEXT","features":[415]},{"name":"OLECMDTEXTF","features":[415]},{"name":"OLECMDTEXTF_NAME","features":[415]},{"name":"OLECMDTEXTF_NONE","features":[415]},{"name":"OLECMDTEXTF_STATUS","features":[415]},{"name":"OLECMD_TASKDLGID_ONBEFOREUNLOAD","features":[415]},{"name":"OLECONTF","features":[415]},{"name":"OLECONTF_EMBEDDINGS","features":[415]},{"name":"OLECONTF_LINKS","features":[415]},{"name":"OLECONTF_ONLYIFRUNNING","features":[415]},{"name":"OLECONTF_ONLYUSER","features":[415]},{"name":"OLECONTF_OTHERS","features":[415]},{"name":"OLECREATE","features":[415]},{"name":"OLECREATE_LEAVERUNNING","features":[415]},{"name":"OLECREATE_ZERO","features":[415]},{"name":"OLEDCFLAGS","features":[415]},{"name":"OLEDC_NODRAW","features":[415]},{"name":"OLEDC_OFFSCREEN","features":[415]},{"name":"OLEDC_PAINTBKGND","features":[415]},{"name":"OLEGETMONIKER","features":[415]},{"name":"OLEGETMONIKER_FORCEASSIGN","features":[415]},{"name":"OLEGETMONIKER_ONLYIFTHERE","features":[415]},{"name":"OLEGETMONIKER_TEMPFORUSER","features":[415]},{"name":"OLEGETMONIKER_UNASSIGN","features":[415]},{"name":"OLEINPLACEFRAMEINFO","features":[305,415,367]},{"name":"OLEIVERB","features":[415]},{"name":"OLEIVERB_DISCARDUNDOSTATE","features":[415]},{"name":"OLEIVERB_HIDE","features":[415]},{"name":"OLEIVERB_INPLACEACTIVATE","features":[415]},{"name":"OLEIVERB_OPEN","features":[415]},{"name":"OLEIVERB_PRIMARY","features":[415]},{"name":"OLEIVERB_PROPERTIES","features":[415]},{"name":"OLEIVERB_SHOW","features":[415]},{"name":"OLEIVERB_UIACTIVATE","features":[415]},{"name":"OLELINKBIND","features":[415]},{"name":"OLELINKBIND_EVENIFCLASSDIFF","features":[415]},{"name":"OLEMENUGROUPWIDTHS","features":[415]},{"name":"OLEMISC","features":[415]},{"name":"OLEMISC_ACTIVATEWHENVISIBLE","features":[415]},{"name":"OLEMISC_ACTSLIKEBUTTON","features":[415]},{"name":"OLEMISC_ACTSLIKELABEL","features":[415]},{"name":"OLEMISC_ALIGNABLE","features":[415]},{"name":"OLEMISC_ALWAYSRUN","features":[415]},{"name":"OLEMISC_CANLINKBYOLE1","features":[415]},{"name":"OLEMISC_CANTLINKINSIDE","features":[415]},{"name":"OLEMISC_IGNOREACTIVATEWHENVISIBLE","features":[415]},{"name":"OLEMISC_IMEMODE","features":[415]},{"name":"OLEMISC_INSERTNOTREPLACE","features":[415]},{"name":"OLEMISC_INSIDEOUT","features":[415]},{"name":"OLEMISC_INVISIBLEATRUNTIME","features":[415]},{"name":"OLEMISC_ISLINKOBJECT","features":[415]},{"name":"OLEMISC_NOUIACTIVATE","features":[415]},{"name":"OLEMISC_ONLYICONIC","features":[415]},{"name":"OLEMISC_RECOMPOSEONRESIZE","features":[415]},{"name":"OLEMISC_RENDERINGISDEVICEINDEPENDENT","features":[415]},{"name":"OLEMISC_SETCLIENTSITEFIRST","features":[415]},{"name":"OLEMISC_SIMPLEFRAME","features":[415]},{"name":"OLEMISC_STATIC","features":[415]},{"name":"OLEMISC_SUPPORTSMULTILEVELUNDO","features":[415]},{"name":"OLEMISC_WANTSTOMENUMERGE","features":[415]},{"name":"OLERENDER","features":[415]},{"name":"OLERENDER_ASIS","features":[415]},{"name":"OLERENDER_DRAW","features":[415]},{"name":"OLERENDER_FORMAT","features":[415]},{"name":"OLERENDER_NONE","features":[415]},{"name":"OLESTDDELIM","features":[415]},{"name":"OLESTREAMQUERYCONVERTOLELINKCALLBACK","features":[415]},{"name":"OLESTREAM_CONVERSION_DEFAULT","features":[415]},{"name":"OLESTREAM_CONVERSION_DISABLEOLELINK","features":[415]},{"name":"OLEUIBUSYA","features":[305,418,415]},{"name":"OLEUIBUSYW","features":[305,418,415]},{"name":"OLEUICHANGEICONA","features":[305,415]},{"name":"OLEUICHANGEICONW","features":[305,415]},{"name":"OLEUICHANGESOURCEA","features":[305,415,436]},{"name":"OLEUICHANGESOURCEW","features":[305,415,436]},{"name":"OLEUICONVERTA","features":[305,415]},{"name":"OLEUICONVERTW","features":[305,415]},{"name":"OLEUIEDITLINKSA","features":[305,415]},{"name":"OLEUIEDITLINKSW","features":[305,415]},{"name":"OLEUIGNRLPROPSA","features":[305,316,415,355,367]},{"name":"OLEUIGNRLPROPSW","features":[305,316,415,355,367]},{"name":"OLEUIINSERTOBJECTA","features":[305,429,415]},{"name":"OLEUIINSERTOBJECTW","features":[305,429,415]},{"name":"OLEUILINKPROPSA","features":[305,316,415,355,367]},{"name":"OLEUILINKPROPSW","features":[305,316,415,355,367]},{"name":"OLEUIOBJECTPROPSA","features":[305,316,415,355,367]},{"name":"OLEUIOBJECTPROPSW","features":[305,316,415,355,367]},{"name":"OLEUIPASTEENTRYA","features":[356,415]},{"name":"OLEUIPASTEENTRYW","features":[356,415]},{"name":"OLEUIPASTEFLAG","features":[415]},{"name":"OLEUIPASTESPECIALA","features":[305,356,415]},{"name":"OLEUIPASTESPECIALW","features":[305,356,415]},{"name":"OLEUIPASTE_ENABLEICON","features":[415]},{"name":"OLEUIPASTE_LINKANYTYPE","features":[415]},{"name":"OLEUIPASTE_LINKTYPE1","features":[415]},{"name":"OLEUIPASTE_LINKTYPE2","features":[415]},{"name":"OLEUIPASTE_LINKTYPE3","features":[415]},{"name":"OLEUIPASTE_LINKTYPE4","features":[415]},{"name":"OLEUIPASTE_LINKTYPE5","features":[415]},{"name":"OLEUIPASTE_LINKTYPE6","features":[415]},{"name":"OLEUIPASTE_LINKTYPE7","features":[415]},{"name":"OLEUIPASTE_LINKTYPE8","features":[415]},{"name":"OLEUIPASTE_PASTE","features":[415]},{"name":"OLEUIPASTE_PASTEONLY","features":[415]},{"name":"OLEUIVIEWPROPSA","features":[305,316,415,355,367]},{"name":"OLEUIVIEWPROPSW","features":[305,316,415,355,367]},{"name":"OLEUI_BZERR_HTASKINVALID","features":[415]},{"name":"OLEUI_BZ_CALLUNBLOCKED","features":[415]},{"name":"OLEUI_BZ_RETRYSELECTED","features":[415]},{"name":"OLEUI_BZ_SWITCHTOSELECTED","features":[415]},{"name":"OLEUI_CANCEL","features":[415]},{"name":"OLEUI_CIERR_MUSTHAVECLSID","features":[415]},{"name":"OLEUI_CIERR_MUSTHAVECURRENTMETAFILE","features":[415]},{"name":"OLEUI_CIERR_SZICONEXEINVALID","features":[415]},{"name":"OLEUI_CSERR_FROMNOTNULL","features":[415]},{"name":"OLEUI_CSERR_LINKCNTRINVALID","features":[415]},{"name":"OLEUI_CSERR_LINKCNTRNULL","features":[415]},{"name":"OLEUI_CSERR_SOURCEINVALID","features":[415]},{"name":"OLEUI_CSERR_SOURCENULL","features":[415]},{"name":"OLEUI_CSERR_SOURCEPARSEERROR","features":[415]},{"name":"OLEUI_CSERR_SOURCEPARSERROR","features":[415]},{"name":"OLEUI_CSERR_TONOTNULL","features":[415]},{"name":"OLEUI_CTERR_CBFORMATINVALID","features":[415]},{"name":"OLEUI_CTERR_CLASSIDINVALID","features":[415]},{"name":"OLEUI_CTERR_DVASPECTINVALID","features":[415]},{"name":"OLEUI_CTERR_HMETAPICTINVALID","features":[415]},{"name":"OLEUI_CTERR_STRINGINVALID","features":[415]},{"name":"OLEUI_ELERR_LINKCNTRINVALID","features":[415]},{"name":"OLEUI_ELERR_LINKCNTRNULL","features":[415]},{"name":"OLEUI_ERR_CBSTRUCTINCORRECT","features":[415]},{"name":"OLEUI_ERR_DIALOGFAILURE","features":[415]},{"name":"OLEUI_ERR_FINDTEMPLATEFAILURE","features":[415]},{"name":"OLEUI_ERR_GLOBALMEMALLOC","features":[415]},{"name":"OLEUI_ERR_HINSTANCEINVALID","features":[415]},{"name":"OLEUI_ERR_HRESOURCEINVALID","features":[415]},{"name":"OLEUI_ERR_HWNDOWNERINVALID","features":[415]},{"name":"OLEUI_ERR_LOADSTRING","features":[415]},{"name":"OLEUI_ERR_LOADTEMPLATEFAILURE","features":[415]},{"name":"OLEUI_ERR_LOCALMEMALLOC","features":[415]},{"name":"OLEUI_ERR_LPFNHOOKINVALID","features":[415]},{"name":"OLEUI_ERR_LPSZCAPTIONINVALID","features":[415]},{"name":"OLEUI_ERR_LPSZTEMPLATEINVALID","features":[415]},{"name":"OLEUI_ERR_OLEMEMALLOC","features":[415]},{"name":"OLEUI_ERR_STANDARDMAX","features":[415]},{"name":"OLEUI_ERR_STANDARDMIN","features":[415]},{"name":"OLEUI_ERR_STRUCTUREINVALID","features":[415]},{"name":"OLEUI_ERR_STRUCTURENULL","features":[415]},{"name":"OLEUI_FALSE","features":[415]},{"name":"OLEUI_GPERR_CBFORMATINVALID","features":[415]},{"name":"OLEUI_GPERR_CLASSIDINVALID","features":[415]},{"name":"OLEUI_GPERR_LPCLSIDEXCLUDEINVALID","features":[415]},{"name":"OLEUI_GPERR_STRINGINVALID","features":[415]},{"name":"OLEUI_IOERR_ARRLINKTYPESINVALID","features":[415]},{"name":"OLEUI_IOERR_ARRPASTEENTRIESINVALID","features":[415]},{"name":"OLEUI_IOERR_CCHFILEINVALID","features":[415]},{"name":"OLEUI_IOERR_HICONINVALID","features":[415]},{"name":"OLEUI_IOERR_LPCLSIDEXCLUDEINVALID","features":[415]},{"name":"OLEUI_IOERR_LPFORMATETCINVALID","features":[415]},{"name":"OLEUI_IOERR_LPIOLECLIENTSITEINVALID","features":[415]},{"name":"OLEUI_IOERR_LPISTORAGEINVALID","features":[415]},{"name":"OLEUI_IOERR_LPSZFILEINVALID","features":[415]},{"name":"OLEUI_IOERR_LPSZLABELINVALID","features":[415]},{"name":"OLEUI_IOERR_PPVOBJINVALID","features":[415]},{"name":"OLEUI_IOERR_SCODEHASERROR","features":[415]},{"name":"OLEUI_IOERR_SRCDATAOBJECTINVALID","features":[415]},{"name":"OLEUI_LPERR_LINKCNTRINVALID","features":[415]},{"name":"OLEUI_LPERR_LINKCNTRNULL","features":[415]},{"name":"OLEUI_OK","features":[415]},{"name":"OLEUI_OPERR_DLGPROCNOTNULL","features":[415]},{"name":"OLEUI_OPERR_INVALIDPAGES","features":[415]},{"name":"OLEUI_OPERR_LINKINFOINVALID","features":[415]},{"name":"OLEUI_OPERR_LPARAMNOTZERO","features":[415]},{"name":"OLEUI_OPERR_NOTSUPPORTED","features":[415]},{"name":"OLEUI_OPERR_OBJINFOINVALID","features":[415]},{"name":"OLEUI_OPERR_PAGESINCORRECT","features":[415]},{"name":"OLEUI_OPERR_PROPERTYSHEET","features":[415]},{"name":"OLEUI_OPERR_PROPSHEETINVALID","features":[415]},{"name":"OLEUI_OPERR_PROPSHEETNULL","features":[415]},{"name":"OLEUI_OPERR_PROPSINVALID","features":[415]},{"name":"OLEUI_OPERR_SUBPROPINVALID","features":[415]},{"name":"OLEUI_OPERR_SUBPROPNULL","features":[415]},{"name":"OLEUI_OPERR_SUPPROP","features":[415]},{"name":"OLEUI_PSERR_CLIPBOARDCHANGED","features":[415]},{"name":"OLEUI_PSERR_GETCLIPBOARDFAILED","features":[415]},{"name":"OLEUI_QUERY_GETCLASSID","features":[415]},{"name":"OLEUI_QUERY_LINKBROKEN","features":[415]},{"name":"OLEUI_SUCCESS","features":[415]},{"name":"OLEUI_VPERR_DVASPECTINVALID","features":[415]},{"name":"OLEUI_VPERR_METAPICTINVALID","features":[415]},{"name":"OLEUPDATE","features":[415]},{"name":"OLEUPDATE_ALWAYS","features":[415]},{"name":"OLEUPDATE_ONCALL","features":[415]},{"name":"OLEVERB","features":[415,367]},{"name":"OLEVERBATTRIB","features":[415]},{"name":"OLEVERBATTRIB_NEVERDIRTIES","features":[415]},{"name":"OLEVERBATTRIB_ONCONTAINERMENU","features":[415]},{"name":"OLEVERB_PRIMARY","features":[415]},{"name":"OLEWHICHMK","features":[415]},{"name":"OLEWHICHMK_CONTAINER","features":[415]},{"name":"OLEWHICHMK_OBJFULL","features":[415]},{"name":"OLEWHICHMK_OBJREL","features":[415]},{"name":"OLE_HANDLE","features":[415]},{"name":"OLE_TRISTATE","features":[415]},{"name":"OPF_DISABLECONVERT","features":[415]},{"name":"OPF_NOFILLDEFAULT","features":[415]},{"name":"OPF_OBJECTISLINK","features":[415]},{"name":"OPF_SHOWHELP","features":[415]},{"name":"OT_EMBEDDED","features":[415]},{"name":"OT_LINK","features":[415]},{"name":"OT_STATIC","features":[415]},{"name":"OaBuildVersion","features":[415]},{"name":"OaEnablePerUserTLibRegistration","features":[415]},{"name":"OleBuildVersion","features":[415]},{"name":"OleConvertOLESTREAMToIStorage2","features":[429,415]},{"name":"OleConvertOLESTREAMToIStorageEx2","features":[305,316,429,415]},{"name":"OleCreate","features":[429,415]},{"name":"OleCreateDefaultHandler","features":[415]},{"name":"OleCreateEmbeddingHelper","features":[356,415]},{"name":"OleCreateEx","features":[429,415]},{"name":"OleCreateFontIndirect","features":[305,356,415]},{"name":"OleCreateFromData","features":[429,415]},{"name":"OleCreateFromDataEx","features":[429,415]},{"name":"OleCreateFromFile","features":[429,415]},{"name":"OleCreateFromFileEx","features":[429,415]},{"name":"OleCreateLink","features":[429,415]},{"name":"OleCreateLinkEx","features":[429,415]},{"name":"OleCreateLinkFromData","features":[429,415]},{"name":"OleCreateLinkFromDataEx","features":[429,415]},{"name":"OleCreateLinkToFile","features":[429,415]},{"name":"OleCreateLinkToFileEx","features":[429,415]},{"name":"OleCreateMenuDescriptor","features":[415,367]},{"name":"OleCreatePictureIndirect","features":[305,316,415,367]},{"name":"OleCreatePropertyFrame","features":[305,415]},{"name":"OleCreatePropertyFrameIndirect","features":[305,415]},{"name":"OleCreateStaticFromData","features":[429,415]},{"name":"OleDestroyMenuDescriptor","features":[415]},{"name":"OleDoAutoConvert","features":[429,415]},{"name":"OleDraw","features":[305,316,415]},{"name":"OleDuplicateData","features":[305,323,415]},{"name":"OleFlushClipboard","features":[415]},{"name":"OleGetAutoConvert","features":[415]},{"name":"OleGetClipboard","features":[356,415]},{"name":"OleGetClipboardWithEnterpriseInfo","features":[356,415]},{"name":"OleGetIconOfClass","features":[305,415]},{"name":"OleGetIconOfFile","features":[305,415]},{"name":"OleIconToCursor","features":[305,415,367]},{"name":"OleInitialize","features":[415]},{"name":"OleIsCurrentClipboard","features":[356,415]},{"name":"OleIsRunning","features":[305,415]},{"name":"OleLoad","features":[429,415]},{"name":"OleLoadFromStream","features":[356,415]},{"name":"OleLoadPicture","features":[305,356,415]},{"name":"OleLoadPictureEx","features":[305,356,415]},{"name":"OleLoadPictureFile","features":[356,415]},{"name":"OleLoadPictureFileEx","features":[356,415]},{"name":"OleLoadPicturePath","features":[415]},{"name":"OleLockRunning","features":[305,415]},{"name":"OleMetafilePictFromIconAndLabel","features":[305,415,367]},{"name":"OleNoteObjectVisible","features":[305,415]},{"name":"OleQueryCreateFromData","features":[356,415]},{"name":"OleQueryLinkFromData","features":[356,415]},{"name":"OleRegEnumFormatEtc","features":[356,415]},{"name":"OleRegEnumVerbs","features":[415]},{"name":"OleRegGetMiscStatus","features":[415]},{"name":"OleRegGetUserType","features":[415]},{"name":"OleRun","features":[415]},{"name":"OleSave","features":[305,429,415]},{"name":"OleSavePictureFile","features":[356,415]},{"name":"OleSaveToStream","features":[356,415]},{"name":"OleSetAutoConvert","features":[415]},{"name":"OleSetClipboard","features":[356,415]},{"name":"OleSetContainedObject","features":[305,415]},{"name":"OleSetMenuDescriptor","features":[305,415]},{"name":"OleTranslateAccelerator","features":[305,415,367]},{"name":"OleTranslateColor","features":[305,316,415]},{"name":"OleUIAddVerbMenuA","features":[305,415,367]},{"name":"OleUIAddVerbMenuW","features":[305,415,367]},{"name":"OleUIBusyA","features":[305,418,415]},{"name":"OleUIBusyW","features":[305,418,415]},{"name":"OleUICanConvertOrActivateAs","features":[305,415]},{"name":"OleUIChangeIconA","features":[305,415]},{"name":"OleUIChangeIconW","features":[305,415]},{"name":"OleUIChangeSourceA","features":[305,415,436]},{"name":"OleUIChangeSourceW","features":[305,415,436]},{"name":"OleUIConvertA","features":[305,415]},{"name":"OleUIConvertW","features":[305,415]},{"name":"OleUIEditLinksA","features":[305,415]},{"name":"OleUIEditLinksW","features":[305,415]},{"name":"OleUIInsertObjectA","features":[305,429,415]},{"name":"OleUIInsertObjectW","features":[305,429,415]},{"name":"OleUIObjectPropertiesA","features":[305,316,415,355,367]},{"name":"OleUIObjectPropertiesW","features":[305,316,415,355,367]},{"name":"OleUIPasteSpecialA","features":[305,356,415]},{"name":"OleUIPasteSpecialW","features":[305,356,415]},{"name":"OleUIPromptUserA","features":[305,415]},{"name":"OleUIPromptUserW","features":[305,415]},{"name":"OleUIUpdateLinksA","features":[305,415]},{"name":"OleUIUpdateLinksW","features":[305,415]},{"name":"OleUninitialize","features":[415]},{"name":"PAGEACTION_UI","features":[415]},{"name":"PAGEACTION_UI_DEFAULT","features":[415]},{"name":"PAGEACTION_UI_MODAL","features":[415]},{"name":"PAGEACTION_UI_MODELESS","features":[415]},{"name":"PAGEACTION_UI_SILENT","features":[415]},{"name":"PAGERANGE","features":[415]},{"name":"PAGESET","features":[305,415]},{"name":"PARAMDATA","features":[415,380]},{"name":"PARAMDESC","features":[415]},{"name":"PARAMDESCEX","features":[415]},{"name":"PARAMFLAGS","features":[415]},{"name":"PARAMFLAG_FHASCUSTDATA","features":[415]},{"name":"PARAMFLAG_FHASDEFAULT","features":[415]},{"name":"PARAMFLAG_FIN","features":[415]},{"name":"PARAMFLAG_FLCID","features":[415]},{"name":"PARAMFLAG_FOPT","features":[415]},{"name":"PARAMFLAG_FOUT","features":[415]},{"name":"PARAMFLAG_FRETVAL","features":[415]},{"name":"PARAMFLAG_NONE","features":[415]},{"name":"PASTE_SPECIAL_FLAGS","features":[415]},{"name":"PERPROP_E_FIRST","features":[415]},{"name":"PERPROP_E_LAST","features":[415]},{"name":"PERPROP_E_NOPAGEAVAILABLE","features":[415]},{"name":"PERPROP_S_FIRST","features":[415]},{"name":"PERPROP_S_LAST","features":[415]},{"name":"PICTDESC","features":[316,415,367]},{"name":"PICTUREATTRIBUTES","features":[415]},{"name":"PICTURE_SCALABLE","features":[415]},{"name":"PICTURE_TRANSPARENT","features":[415]},{"name":"PICTYPE","features":[415]},{"name":"PICTYPE_BITMAP","features":[415]},{"name":"PICTYPE_ENHMETAFILE","features":[415]},{"name":"PICTYPE_ICON","features":[415]},{"name":"PICTYPE_METAFILE","features":[415]},{"name":"PICTYPE_NONE","features":[415]},{"name":"PICTYPE_UNINITIALIZED","features":[415]},{"name":"POINTERINACTIVE","features":[415]},{"name":"POINTERINACTIVE_ACTIVATEONDRAG","features":[415]},{"name":"POINTERINACTIVE_ACTIVATEONENTRY","features":[415]},{"name":"POINTERINACTIVE_DEACTIVATEONLEAVE","features":[415]},{"name":"POINTF","features":[415]},{"name":"PRINTFLAG","features":[415]},{"name":"PRINTFLAG_DONTACTUALLYPRINT","features":[415]},{"name":"PRINTFLAG_FORCEPROPERTIES","features":[415]},{"name":"PRINTFLAG_MAYBOTHERUSER","features":[415]},{"name":"PRINTFLAG_PRINTTOFILE","features":[415]},{"name":"PRINTFLAG_PROMPTUSER","features":[415]},{"name":"PRINTFLAG_RECOMPOSETODEVICE","features":[415]},{"name":"PRINTFLAG_USERMAYCHANGEPRINTER","features":[415]},{"name":"PROPBAG2_TYPE","features":[415]},{"name":"PROPBAG2_TYPE_DATA","features":[415]},{"name":"PROPBAG2_TYPE_MONIKER","features":[415]},{"name":"PROPBAG2_TYPE_OBJECT","features":[415]},{"name":"PROPBAG2_TYPE_STORAGE","features":[415]},{"name":"PROPBAG2_TYPE_STREAM","features":[415]},{"name":"PROPBAG2_TYPE_UNDEFINED","features":[415]},{"name":"PROPBAG2_TYPE_URL","features":[415]},{"name":"PROPPAGEINFO","features":[305,415]},{"name":"PROPPAGESTATUS","features":[415]},{"name":"PROPPAGESTATUS_CLEAN","features":[415]},{"name":"PROPPAGESTATUS_DIRTY","features":[415]},{"name":"PROPPAGESTATUS_VALIDATE","features":[415]},{"name":"PROP_HWND_CHGICONDLG","features":[415]},{"name":"PSF_CHECKDISPLAYASICON","features":[415]},{"name":"PSF_DISABLEDISPLAYASICON","features":[415]},{"name":"PSF_HIDECHANGEICON","features":[415]},{"name":"PSF_NOREFRESHDATAOBJECT","features":[415]},{"name":"PSF_SELECTPASTE","features":[415]},{"name":"PSF_SELECTPASTELINK","features":[415]},{"name":"PSF_SHOWHELP","features":[415]},{"name":"PSF_STAYONCLIPBOARDCHANGE","features":[415]},{"name":"PS_MAXLINKTYPES","features":[415]},{"name":"QACONTAINER","features":[316,356,415]},{"name":"QACONTAINERFLAGS","features":[415]},{"name":"QACONTAINER_AUTOCLIP","features":[415]},{"name":"QACONTAINER_DISPLAYASDEFAULT","features":[415]},{"name":"QACONTAINER_MESSAGEREFLECT","features":[415]},{"name":"QACONTAINER_SHOWGRABHANDLES","features":[415]},{"name":"QACONTAINER_SHOWHATCHING","features":[415]},{"name":"QACONTAINER_SUPPORTSMNEMONICS","features":[415]},{"name":"QACONTAINER_UIDEAD","features":[415]},{"name":"QACONTAINER_USERMODE","features":[415]},{"name":"QACONTROL","features":[415]},{"name":"QueryPathOfRegTypeLib","features":[415]},{"name":"READYSTATE","features":[415]},{"name":"READYSTATE_COMPLETE","features":[415]},{"name":"READYSTATE_INTERACTIVE","features":[415]},{"name":"READYSTATE_LOADED","features":[415]},{"name":"READYSTATE_LOADING","features":[415]},{"name":"READYSTATE_UNINITIALIZED","features":[415]},{"name":"REGKIND","features":[415]},{"name":"REGKIND_DEFAULT","features":[415]},{"name":"REGKIND_NONE","features":[415]},{"name":"REGKIND_REGISTER","features":[415]},{"name":"RegisterActiveObject","features":[415]},{"name":"RegisterDragDrop","features":[305,415]},{"name":"RegisterTypeLib","features":[356,415]},{"name":"RegisterTypeLibForUser","features":[356,415]},{"name":"ReleaseStgMedium","features":[305,316,429,415]},{"name":"RevokeActiveObject","features":[415]},{"name":"RevokeDragDrop","features":[305,415]},{"name":"SAFEARRAYUNION","features":[305,356,415]},{"name":"SAFEARR_BRECORD","features":[415]},{"name":"SAFEARR_BSTR","features":[356,415]},{"name":"SAFEARR_DISPATCH","features":[356,415]},{"name":"SAFEARR_HAVEIID","features":[415]},{"name":"SAFEARR_UNKNOWN","features":[415]},{"name":"SAFEARR_VARIANT","features":[305,356,415]},{"name":"SELFREG_E_CLASS","features":[415]},{"name":"SELFREG_E_FIRST","features":[415]},{"name":"SELFREG_E_LAST","features":[415]},{"name":"SELFREG_E_TYPELIB","features":[415]},{"name":"SELFREG_S_FIRST","features":[415]},{"name":"SELFREG_S_LAST","features":[415]},{"name":"SF_BSTR","features":[415]},{"name":"SF_DISPATCH","features":[415]},{"name":"SF_ERROR","features":[415]},{"name":"SF_HAVEIID","features":[415]},{"name":"SF_I1","features":[415]},{"name":"SF_I2","features":[415]},{"name":"SF_I4","features":[415]},{"name":"SF_I8","features":[415]},{"name":"SF_RECORD","features":[415]},{"name":"SF_TYPE","features":[415]},{"name":"SF_UNKNOWN","features":[415]},{"name":"SF_VARIANT","features":[415]},{"name":"SID_GetCaller","features":[415]},{"name":"SID_ProvideRuntimeContext","features":[415]},{"name":"SID_VariantConversion","features":[415]},{"name":"STDOLE2_LCID","features":[415]},{"name":"STDOLE2_MAJORVERNUM","features":[415]},{"name":"STDOLE2_MINORVERNUM","features":[415]},{"name":"STDOLE_LCID","features":[415]},{"name":"STDOLE_MAJORVERNUM","features":[415]},{"name":"STDOLE_MINORVERNUM","features":[415]},{"name":"STDOLE_TLB","features":[415]},{"name":"STDTYPE_TLB","features":[415]},{"name":"SZOLEUI_MSG_ADDCONTROL","features":[415]},{"name":"SZOLEUI_MSG_BROWSE","features":[415]},{"name":"SZOLEUI_MSG_BROWSE_OFN","features":[415]},{"name":"SZOLEUI_MSG_CHANGEICON","features":[415]},{"name":"SZOLEUI_MSG_CHANGESOURCE","features":[415]},{"name":"SZOLEUI_MSG_CLOSEBUSYDIALOG","features":[415]},{"name":"SZOLEUI_MSG_CONVERT","features":[415]},{"name":"SZOLEUI_MSG_ENDDIALOG","features":[415]},{"name":"SZOLEUI_MSG_HELP","features":[415]},{"name":"SafeArrayAccessData","features":[356,415]},{"name":"SafeArrayAddRef","features":[356,415]},{"name":"SafeArrayAllocData","features":[356,415]},{"name":"SafeArrayAllocDescriptor","features":[356,415]},{"name":"SafeArrayAllocDescriptorEx","features":[356,415,380]},{"name":"SafeArrayCopy","features":[356,415]},{"name":"SafeArrayCopyData","features":[356,415]},{"name":"SafeArrayCreate","features":[356,415,380]},{"name":"SafeArrayCreateEx","features":[356,415,380]},{"name":"SafeArrayCreateVector","features":[356,415,380]},{"name":"SafeArrayCreateVectorEx","features":[356,415,380]},{"name":"SafeArrayDestroy","features":[356,415]},{"name":"SafeArrayDestroyData","features":[356,415]},{"name":"SafeArrayDestroyDescriptor","features":[356,415]},{"name":"SafeArrayGetDim","features":[356,415]},{"name":"SafeArrayGetElement","features":[356,415]},{"name":"SafeArrayGetElemsize","features":[356,415]},{"name":"SafeArrayGetIID","features":[356,415]},{"name":"SafeArrayGetLBound","features":[356,415]},{"name":"SafeArrayGetRecordInfo","features":[356,415]},{"name":"SafeArrayGetUBound","features":[356,415]},{"name":"SafeArrayGetVartype","features":[356,415,380]},{"name":"SafeArrayLock","features":[356,415]},{"name":"SafeArrayPtrOfIndex","features":[356,415]},{"name":"SafeArrayPutElement","features":[356,415]},{"name":"SafeArrayRedim","features":[356,415]},{"name":"SafeArrayReleaseData","features":[415]},{"name":"SafeArrayReleaseDescriptor","features":[356,415]},{"name":"SafeArraySetIID","features":[356,415]},{"name":"SafeArraySetRecordInfo","features":[356,415]},{"name":"SafeArrayUnaccessData","features":[356,415]},{"name":"SafeArrayUnlock","features":[356,415]},{"name":"TIFLAGS_EXTENDDISPATCHONLY","features":[415]},{"name":"TYPEFLAGS","features":[415]},{"name":"TYPEFLAG_FAGGREGATABLE","features":[415]},{"name":"TYPEFLAG_FAPPOBJECT","features":[415]},{"name":"TYPEFLAG_FCANCREATE","features":[415]},{"name":"TYPEFLAG_FCONTROL","features":[415]},{"name":"TYPEFLAG_FDISPATCHABLE","features":[415]},{"name":"TYPEFLAG_FDUAL","features":[415]},{"name":"TYPEFLAG_FHIDDEN","features":[415]},{"name":"TYPEFLAG_FLICENSED","features":[415]},{"name":"TYPEFLAG_FNONEXTENSIBLE","features":[415]},{"name":"TYPEFLAG_FOLEAUTOMATION","features":[415]},{"name":"TYPEFLAG_FPREDECLID","features":[415]},{"name":"TYPEFLAG_FPROXY","features":[415]},{"name":"TYPEFLAG_FREPLACEABLE","features":[415]},{"name":"TYPEFLAG_FRESTRICTED","features":[415]},{"name":"TYPEFLAG_FREVERSEBIND","features":[415]},{"name":"UASFLAGS","features":[415]},{"name":"UAS_BLOCKED","features":[415]},{"name":"UAS_MASK","features":[415]},{"name":"UAS_NOPARENTENABLE","features":[415]},{"name":"UAS_NORMAL","features":[415]},{"name":"UDATE","features":[305,415]},{"name":"UI_CONVERT_FLAGS","features":[415]},{"name":"UPDFCACHE_ALL","features":[415]},{"name":"UPDFCACHE_ALLBUTNODATACACHE","features":[415]},{"name":"UPDFCACHE_FLAGS","features":[415]},{"name":"UPDFCACHE_IFBLANK","features":[415]},{"name":"UPDFCACHE_IFBLANKORONSAVECACHE","features":[415]},{"name":"UPDFCACHE_NODATACACHE","features":[415]},{"name":"UPDFCACHE_NORMALCACHE","features":[415]},{"name":"UPDFCACHE_ONLYIFBLANK","features":[415]},{"name":"UPDFCACHE_ONSAVECACHE","features":[415]},{"name":"UPDFCACHE_ONSTOPCACHE","features":[415]},{"name":"USERCLASSTYPE","features":[415]},{"name":"USERCLASSTYPE_APPNAME","features":[415]},{"name":"USERCLASSTYPE_FULL","features":[415]},{"name":"USERCLASSTYPE_SHORT","features":[415]},{"name":"UnRegisterTypeLib","features":[356,415]},{"name":"UnRegisterTypeLibForUser","features":[356,415]},{"name":"VARCMP","features":[415]},{"name":"VARCMP_EQ","features":[415]},{"name":"VARCMP_GT","features":[415]},{"name":"VARCMP_LT","features":[415]},{"name":"VARCMP_NULL","features":[415]},{"name":"VARFORMAT_FIRST_DAY","features":[415]},{"name":"VARFORMAT_FIRST_DAY_FRIDAY","features":[415]},{"name":"VARFORMAT_FIRST_DAY_MONDAY","features":[415]},{"name":"VARFORMAT_FIRST_DAY_SATURDAY","features":[415]},{"name":"VARFORMAT_FIRST_DAY_SUNDAY","features":[415]},{"name":"VARFORMAT_FIRST_DAY_SYSTEMDEFAULT","features":[415]},{"name":"VARFORMAT_FIRST_DAY_THURSDAY","features":[415]},{"name":"VARFORMAT_FIRST_DAY_TUESDAY","features":[415]},{"name":"VARFORMAT_FIRST_DAY_WEDNESDAY","features":[415]},{"name":"VARFORMAT_FIRST_WEEK","features":[415]},{"name":"VARFORMAT_FIRST_WEEK_CONTAINS_JANUARY_FIRST","features":[415]},{"name":"VARFORMAT_FIRST_WEEK_HAS_SEVEN_DAYS","features":[415]},{"name":"VARFORMAT_FIRST_WEEK_LARGER_HALF_IN_CURRENT_YEAR","features":[415]},{"name":"VARFORMAT_FIRST_WEEK_SYSTEMDEFAULT","features":[415]},{"name":"VARFORMAT_GROUP","features":[415]},{"name":"VARFORMAT_GROUP_NOTTHOUSANDS","features":[415]},{"name":"VARFORMAT_GROUP_SYSTEMDEFAULT","features":[415]},{"name":"VARFORMAT_GROUP_THOUSANDS","features":[415]},{"name":"VARFORMAT_LEADING_DIGIT","features":[415]},{"name":"VARFORMAT_LEADING_DIGIT_INCLUDED","features":[415]},{"name":"VARFORMAT_LEADING_DIGIT_NOTINCLUDED","features":[415]},{"name":"VARFORMAT_LEADING_DIGIT_SYSTEMDEFAULT","features":[415]},{"name":"VARFORMAT_NAMED_FORMAT","features":[415]},{"name":"VARFORMAT_NAMED_FORMAT_GENERALDATE","features":[415]},{"name":"VARFORMAT_NAMED_FORMAT_LONGDATE","features":[415]},{"name":"VARFORMAT_NAMED_FORMAT_LONGTIME","features":[415]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTDATE","features":[415]},{"name":"VARFORMAT_NAMED_FORMAT_SHORTTIME","features":[415]},{"name":"VARFORMAT_PARENTHESES","features":[415]},{"name":"VARFORMAT_PARENTHESES_NOTUSED","features":[415]},{"name":"VARFORMAT_PARENTHESES_SYSTEMDEFAULT","features":[415]},{"name":"VARFORMAT_PARENTHESES_USED","features":[415]},{"name":"VAR_CALENDAR_GREGORIAN","features":[415]},{"name":"VAR_CALENDAR_HIJRI","features":[415]},{"name":"VAR_CALENDAR_THAI","features":[415]},{"name":"VAR_DATEVALUEONLY","features":[415]},{"name":"VAR_FORMAT_NOSUBSTITUTE","features":[415]},{"name":"VAR_FOURDIGITYEARS","features":[415]},{"name":"VAR_LOCALBOOL","features":[415]},{"name":"VAR_TIMEVALUEONLY","features":[415]},{"name":"VAR_VALIDDATE","features":[415]},{"name":"VIEWSTATUS","features":[415]},{"name":"VIEWSTATUS_3DSURFACE","features":[415]},{"name":"VIEWSTATUS_DVASPECTOPAQUE","features":[415]},{"name":"VIEWSTATUS_DVASPECTTRANSPARENT","features":[415]},{"name":"VIEWSTATUS_OPAQUE","features":[415]},{"name":"VIEWSTATUS_SOLIDBKGND","features":[415]},{"name":"VIEWSTATUS_SURFACE","features":[415]},{"name":"VIEW_OBJECT_PROPERTIES_FLAGS","features":[415]},{"name":"VPF_DISABLERELATIVE","features":[415]},{"name":"VPF_DISABLESCALE","features":[415]},{"name":"VPF_SELECTRELATIVE","features":[415]},{"name":"VTDATEGRE_MAX","features":[415]},{"name":"VTDATEGRE_MIN","features":[415]},{"name":"VT_BLOB_PROPSET","features":[415]},{"name":"VT_STORED_PROPSET","features":[415]},{"name":"VT_STREAMED_PROPSET","features":[415]},{"name":"VT_VERBOSE_ENUM","features":[415]},{"name":"VarAbs","features":[415]},{"name":"VarAdd","features":[415]},{"name":"VarAnd","features":[415]},{"name":"VarBoolFromCy","features":[305,356,415]},{"name":"VarBoolFromDate","features":[305,415]},{"name":"VarBoolFromDec","features":[305,415]},{"name":"VarBoolFromDisp","features":[305,356,415]},{"name":"VarBoolFromI1","features":[305,415]},{"name":"VarBoolFromI2","features":[305,415]},{"name":"VarBoolFromI4","features":[305,415]},{"name":"VarBoolFromI8","features":[305,415]},{"name":"VarBoolFromR4","features":[305,415]},{"name":"VarBoolFromR8","features":[305,415]},{"name":"VarBoolFromStr","features":[305,415]},{"name":"VarBoolFromUI1","features":[305,415]},{"name":"VarBoolFromUI2","features":[305,415]},{"name":"VarBoolFromUI4","features":[305,415]},{"name":"VarBoolFromUI8","features":[305,415]},{"name":"VarBstrCat","features":[415]},{"name":"VarBstrCmp","features":[415]},{"name":"VarBstrFromBool","features":[305,415]},{"name":"VarBstrFromCy","features":[356,415]},{"name":"VarBstrFromDate","features":[415]},{"name":"VarBstrFromDec","features":[305,415]},{"name":"VarBstrFromDisp","features":[356,415]},{"name":"VarBstrFromI1","features":[415]},{"name":"VarBstrFromI2","features":[415]},{"name":"VarBstrFromI4","features":[415]},{"name":"VarBstrFromI8","features":[415]},{"name":"VarBstrFromR4","features":[415]},{"name":"VarBstrFromR8","features":[415]},{"name":"VarBstrFromUI1","features":[415]},{"name":"VarBstrFromUI2","features":[415]},{"name":"VarBstrFromUI4","features":[415]},{"name":"VarBstrFromUI8","features":[415]},{"name":"VarCat","features":[415]},{"name":"VarCmp","features":[415]},{"name":"VarCyAbs","features":[356,415]},{"name":"VarCyAdd","features":[356,415]},{"name":"VarCyCmp","features":[356,415]},{"name":"VarCyCmpR8","features":[356,415]},{"name":"VarCyFix","features":[356,415]},{"name":"VarCyFromBool","features":[305,356,415]},{"name":"VarCyFromDate","features":[356,415]},{"name":"VarCyFromDec","features":[305,356,415]},{"name":"VarCyFromDisp","features":[356,415]},{"name":"VarCyFromI1","features":[356,415]},{"name":"VarCyFromI2","features":[356,415]},{"name":"VarCyFromI4","features":[356,415]},{"name":"VarCyFromI8","features":[356,415]},{"name":"VarCyFromR4","features":[356,415]},{"name":"VarCyFromR8","features":[356,415]},{"name":"VarCyFromStr","features":[356,415]},{"name":"VarCyFromUI1","features":[356,415]},{"name":"VarCyFromUI2","features":[356,415]},{"name":"VarCyFromUI4","features":[356,415]},{"name":"VarCyFromUI8","features":[356,415]},{"name":"VarCyInt","features":[356,415]},{"name":"VarCyMul","features":[356,415]},{"name":"VarCyMulI4","features":[356,415]},{"name":"VarCyMulI8","features":[356,415]},{"name":"VarCyNeg","features":[356,415]},{"name":"VarCyRound","features":[356,415]},{"name":"VarCySub","features":[356,415]},{"name":"VarDateFromBool","features":[305,415]},{"name":"VarDateFromCy","features":[356,415]},{"name":"VarDateFromDec","features":[305,415]},{"name":"VarDateFromDisp","features":[356,415]},{"name":"VarDateFromI1","features":[415]},{"name":"VarDateFromI2","features":[415]},{"name":"VarDateFromI4","features":[415]},{"name":"VarDateFromI8","features":[415]},{"name":"VarDateFromR4","features":[415]},{"name":"VarDateFromR8","features":[415]},{"name":"VarDateFromStr","features":[415]},{"name":"VarDateFromUI1","features":[415]},{"name":"VarDateFromUI2","features":[415]},{"name":"VarDateFromUI4","features":[415]},{"name":"VarDateFromUI8","features":[415]},{"name":"VarDateFromUdate","features":[305,415]},{"name":"VarDateFromUdateEx","features":[305,415]},{"name":"VarDecAbs","features":[305,415]},{"name":"VarDecAdd","features":[305,415]},{"name":"VarDecCmp","features":[305,415]},{"name":"VarDecCmpR8","features":[305,415]},{"name":"VarDecDiv","features":[305,415]},{"name":"VarDecFix","features":[305,415]},{"name":"VarDecFromBool","features":[305,415]},{"name":"VarDecFromCy","features":[305,356,415]},{"name":"VarDecFromDate","features":[305,415]},{"name":"VarDecFromDisp","features":[305,356,415]},{"name":"VarDecFromI1","features":[305,415]},{"name":"VarDecFromI2","features":[305,415]},{"name":"VarDecFromI4","features":[305,415]},{"name":"VarDecFromI8","features":[305,415]},{"name":"VarDecFromR4","features":[305,415]},{"name":"VarDecFromR8","features":[305,415]},{"name":"VarDecFromStr","features":[305,415]},{"name":"VarDecFromUI1","features":[305,415]},{"name":"VarDecFromUI2","features":[305,415]},{"name":"VarDecFromUI4","features":[305,415]},{"name":"VarDecFromUI8","features":[305,415]},{"name":"VarDecInt","features":[305,415]},{"name":"VarDecMul","features":[305,415]},{"name":"VarDecNeg","features":[305,415]},{"name":"VarDecRound","features":[305,415]},{"name":"VarDecSub","features":[305,415]},{"name":"VarDiv","features":[415]},{"name":"VarEqv","features":[415]},{"name":"VarFix","features":[415]},{"name":"VarFormat","features":[415]},{"name":"VarFormatCurrency","features":[415]},{"name":"VarFormatDateTime","features":[415]},{"name":"VarFormatFromTokens","features":[415]},{"name":"VarFormatNumber","features":[415]},{"name":"VarFormatPercent","features":[415]},{"name":"VarI1FromBool","features":[305,415]},{"name":"VarI1FromCy","features":[356,415]},{"name":"VarI1FromDate","features":[415]},{"name":"VarI1FromDec","features":[305,415]},{"name":"VarI1FromDisp","features":[356,415]},{"name":"VarI1FromI2","features":[415]},{"name":"VarI1FromI4","features":[415]},{"name":"VarI1FromI8","features":[415]},{"name":"VarI1FromR4","features":[415]},{"name":"VarI1FromR8","features":[415]},{"name":"VarI1FromStr","features":[415]},{"name":"VarI1FromUI1","features":[415]},{"name":"VarI1FromUI2","features":[415]},{"name":"VarI1FromUI4","features":[415]},{"name":"VarI1FromUI8","features":[415]},{"name":"VarI2FromBool","features":[305,415]},{"name":"VarI2FromCy","features":[356,415]},{"name":"VarI2FromDate","features":[415]},{"name":"VarI2FromDec","features":[305,415]},{"name":"VarI2FromDisp","features":[356,415]},{"name":"VarI2FromI1","features":[415]},{"name":"VarI2FromI4","features":[415]},{"name":"VarI2FromI8","features":[415]},{"name":"VarI2FromR4","features":[415]},{"name":"VarI2FromR8","features":[415]},{"name":"VarI2FromStr","features":[415]},{"name":"VarI2FromUI1","features":[415]},{"name":"VarI2FromUI2","features":[415]},{"name":"VarI2FromUI4","features":[415]},{"name":"VarI2FromUI8","features":[415]},{"name":"VarI4FromBool","features":[305,415]},{"name":"VarI4FromCy","features":[356,415]},{"name":"VarI4FromDate","features":[415]},{"name":"VarI4FromDec","features":[305,415]},{"name":"VarI4FromDisp","features":[356,415]},{"name":"VarI4FromI1","features":[415]},{"name":"VarI4FromI2","features":[415]},{"name":"VarI4FromI8","features":[415]},{"name":"VarI4FromR4","features":[415]},{"name":"VarI4FromR8","features":[415]},{"name":"VarI4FromStr","features":[415]},{"name":"VarI4FromUI1","features":[415]},{"name":"VarI4FromUI2","features":[415]},{"name":"VarI4FromUI4","features":[415]},{"name":"VarI4FromUI8","features":[415]},{"name":"VarI8FromBool","features":[305,415]},{"name":"VarI8FromCy","features":[356,415]},{"name":"VarI8FromDate","features":[415]},{"name":"VarI8FromDec","features":[305,415]},{"name":"VarI8FromDisp","features":[356,415]},{"name":"VarI8FromI1","features":[415]},{"name":"VarI8FromI2","features":[415]},{"name":"VarI8FromR4","features":[415]},{"name":"VarI8FromR8","features":[415]},{"name":"VarI8FromStr","features":[415]},{"name":"VarI8FromUI1","features":[415]},{"name":"VarI8FromUI2","features":[415]},{"name":"VarI8FromUI4","features":[415]},{"name":"VarI8FromUI8","features":[415]},{"name":"VarIdiv","features":[415]},{"name":"VarImp","features":[415]},{"name":"VarInt","features":[415]},{"name":"VarMod","features":[415]},{"name":"VarMonthName","features":[415]},{"name":"VarMul","features":[415]},{"name":"VarNeg","features":[415]},{"name":"VarNot","features":[415]},{"name":"VarNumFromParseNum","features":[415]},{"name":"VarOr","features":[415]},{"name":"VarParseNumFromStr","features":[415]},{"name":"VarPow","features":[415]},{"name":"VarR4CmpR8","features":[415]},{"name":"VarR4FromBool","features":[305,415]},{"name":"VarR4FromCy","features":[356,415]},{"name":"VarR4FromDate","features":[415]},{"name":"VarR4FromDec","features":[305,415]},{"name":"VarR4FromDisp","features":[356,415]},{"name":"VarR4FromI1","features":[415]},{"name":"VarR4FromI2","features":[415]},{"name":"VarR4FromI4","features":[415]},{"name":"VarR4FromI8","features":[415]},{"name":"VarR4FromR8","features":[415]},{"name":"VarR4FromStr","features":[415]},{"name":"VarR4FromUI1","features":[415]},{"name":"VarR4FromUI2","features":[415]},{"name":"VarR4FromUI4","features":[415]},{"name":"VarR4FromUI8","features":[415]},{"name":"VarR8FromBool","features":[305,415]},{"name":"VarR8FromCy","features":[356,415]},{"name":"VarR8FromDate","features":[415]},{"name":"VarR8FromDec","features":[305,415]},{"name":"VarR8FromDisp","features":[356,415]},{"name":"VarR8FromI1","features":[415]},{"name":"VarR8FromI2","features":[415]},{"name":"VarR8FromI4","features":[415]},{"name":"VarR8FromI8","features":[415]},{"name":"VarR8FromR4","features":[415]},{"name":"VarR8FromStr","features":[415]},{"name":"VarR8FromUI1","features":[415]},{"name":"VarR8FromUI2","features":[415]},{"name":"VarR8FromUI4","features":[415]},{"name":"VarR8FromUI8","features":[415]},{"name":"VarR8Pow","features":[415]},{"name":"VarR8Round","features":[415]},{"name":"VarRound","features":[415]},{"name":"VarSub","features":[415]},{"name":"VarTokenizeFormatString","features":[415]},{"name":"VarUI1FromBool","features":[305,415]},{"name":"VarUI1FromCy","features":[356,415]},{"name":"VarUI1FromDate","features":[415]},{"name":"VarUI1FromDec","features":[305,415]},{"name":"VarUI1FromDisp","features":[356,415]},{"name":"VarUI1FromI1","features":[415]},{"name":"VarUI1FromI2","features":[415]},{"name":"VarUI1FromI4","features":[415]},{"name":"VarUI1FromI8","features":[415]},{"name":"VarUI1FromR4","features":[415]},{"name":"VarUI1FromR8","features":[415]},{"name":"VarUI1FromStr","features":[415]},{"name":"VarUI1FromUI2","features":[415]},{"name":"VarUI1FromUI4","features":[415]},{"name":"VarUI1FromUI8","features":[415]},{"name":"VarUI2FromBool","features":[305,415]},{"name":"VarUI2FromCy","features":[356,415]},{"name":"VarUI2FromDate","features":[415]},{"name":"VarUI2FromDec","features":[305,415]},{"name":"VarUI2FromDisp","features":[356,415]},{"name":"VarUI2FromI1","features":[415]},{"name":"VarUI2FromI2","features":[415]},{"name":"VarUI2FromI4","features":[415]},{"name":"VarUI2FromI8","features":[415]},{"name":"VarUI2FromR4","features":[415]},{"name":"VarUI2FromR8","features":[415]},{"name":"VarUI2FromStr","features":[415]},{"name":"VarUI2FromUI1","features":[415]},{"name":"VarUI2FromUI4","features":[415]},{"name":"VarUI2FromUI8","features":[415]},{"name":"VarUI4FromBool","features":[305,415]},{"name":"VarUI4FromCy","features":[356,415]},{"name":"VarUI4FromDate","features":[415]},{"name":"VarUI4FromDec","features":[305,415]},{"name":"VarUI4FromDisp","features":[356,415]},{"name":"VarUI4FromI1","features":[415]},{"name":"VarUI4FromI2","features":[415]},{"name":"VarUI4FromI4","features":[415]},{"name":"VarUI4FromI8","features":[415]},{"name":"VarUI4FromR4","features":[415]},{"name":"VarUI4FromR8","features":[415]},{"name":"VarUI4FromStr","features":[415]},{"name":"VarUI4FromUI1","features":[415]},{"name":"VarUI4FromUI2","features":[415]},{"name":"VarUI4FromUI8","features":[415]},{"name":"VarUI8FromBool","features":[305,415]},{"name":"VarUI8FromCy","features":[356,415]},{"name":"VarUI8FromDate","features":[415]},{"name":"VarUI8FromDec","features":[305,415]},{"name":"VarUI8FromDisp","features":[356,415]},{"name":"VarUI8FromI1","features":[415]},{"name":"VarUI8FromI2","features":[415]},{"name":"VarUI8FromI8","features":[415]},{"name":"VarUI8FromR4","features":[415]},{"name":"VarUI8FromR8","features":[415]},{"name":"VarUI8FromStr","features":[415]},{"name":"VarUI8FromUI1","features":[415]},{"name":"VarUI8FromUI2","features":[415]},{"name":"VarUI8FromUI4","features":[415]},{"name":"VarUdateFromDate","features":[305,415]},{"name":"VarWeekdayName","features":[415]},{"name":"VarXor","features":[415]},{"name":"VectorFromBstr","features":[356,415]},{"name":"WIN32","features":[415]},{"name":"WPCSETTING","features":[415]},{"name":"WPCSETTING_FILEDOWNLOAD_BLOCKED","features":[415]},{"name":"WPCSETTING_LOGGING_ENABLED","features":[415]},{"name":"XFORMCOORDS","features":[415]},{"name":"XFORMCOORDS_CONTAINERTOHIMETRIC","features":[415]},{"name":"XFORMCOORDS_EVENTCOMPAT","features":[415]},{"name":"XFORMCOORDS_HIMETRICTOCONTAINER","features":[415]},{"name":"XFORMCOORDS_POSITION","features":[415]},{"name":"XFORMCOORDS_SIZE","features":[415]},{"name":"_wireBRECORD","features":[415]},{"name":"_wireSAFEARRAY","features":[305,356,415]},{"name":"_wireVARIANT","features":[305,356,415]},{"name":"fdexEnumAll","features":[415]},{"name":"fdexEnumDefault","features":[415]},{"name":"fdexNameCaseInsensitive","features":[415]},{"name":"fdexNameCaseSensitive","features":[415]},{"name":"fdexNameEnsure","features":[415]},{"name":"fdexNameImplicit","features":[415]},{"name":"fdexNameInternal","features":[415]},{"name":"fdexNameNoDynamicProperties","features":[415]},{"name":"fdexPropCanCall","features":[415]},{"name":"fdexPropCanConstruct","features":[415]},{"name":"fdexPropCanGet","features":[415]},{"name":"fdexPropCanPut","features":[415]},{"name":"fdexPropCanPutRef","features":[415]},{"name":"fdexPropCanSourceEvents","features":[415]},{"name":"fdexPropCannotCall","features":[415]},{"name":"fdexPropCannotConstruct","features":[415]},{"name":"fdexPropCannotGet","features":[415]},{"name":"fdexPropCannotPut","features":[415]},{"name":"fdexPropCannotPutRef","features":[415]},{"name":"fdexPropCannotSourceEvents","features":[415]},{"name":"fdexPropDynamicType","features":[415]},{"name":"fdexPropNoSideEffects","features":[415]},{"name":"triChecked","features":[415]},{"name":"triGray","features":[415]},{"name":"triUnchecked","features":[415]}],"588":[{"name":"ARRAY_SEP_CHAR","features":[571]},{"name":"FACILITY_WPC","features":[571]},{"name":"IWPCGamesSettings","features":[571]},{"name":"IWPCProviderConfig","features":[571]},{"name":"IWPCProviderState","features":[571]},{"name":"IWPCProviderSupport","features":[571]},{"name":"IWPCSettings","features":[571]},{"name":"IWPCWebSettings","features":[571]},{"name":"IWindowsParentalControls","features":[571]},{"name":"IWindowsParentalControlsCore","features":[571]},{"name":"MSG_Event_AppBlocked","features":[571]},{"name":"MSG_Event_AppOverride","features":[571]},{"name":"MSG_Event_Application","features":[571]},{"name":"MSG_Event_ComputerUsage","features":[571]},{"name":"MSG_Event_ContentUsage","features":[571]},{"name":"MSG_Event_Custom","features":[571]},{"name":"MSG_Event_EmailContact","features":[571]},{"name":"MSG_Event_EmailReceived","features":[571]},{"name":"MSG_Event_EmailSent","features":[571]},{"name":"MSG_Event_FileDownload","features":[571]},{"name":"MSG_Event_GameStart","features":[571]},{"name":"MSG_Event_IMContact","features":[571]},{"name":"MSG_Event_IMFeature","features":[571]},{"name":"MSG_Event_IMInvitation","features":[571]},{"name":"MSG_Event_IMJoin","features":[571]},{"name":"MSG_Event_IMLeave","features":[571]},{"name":"MSG_Event_MediaPlayback","features":[571]},{"name":"MSG_Event_SettingChange","features":[571]},{"name":"MSG_Event_UrlVisit","features":[571]},{"name":"MSG_Event_WebOverride","features":[571]},{"name":"MSG_Event_WebsiteVisit","features":[571]},{"name":"MSG_Keyword_ThirdParty","features":[571]},{"name":"MSG_Keyword_WPC","features":[571]},{"name":"MSG_Opcode_Launch","features":[571]},{"name":"MSG_Opcode_Locate","features":[571]},{"name":"MSG_Opcode_Modify","features":[571]},{"name":"MSG_Opcode_System","features":[571]},{"name":"MSG_Opcode_Web","features":[571]},{"name":"MSG_Publisher_Name","features":[571]},{"name":"MSG_Task_AppBlocked","features":[571]},{"name":"MSG_Task_AppOverride","features":[571]},{"name":"MSG_Task_Application","features":[571]},{"name":"MSG_Task_ComputerUsage","features":[571]},{"name":"MSG_Task_ContentUsage","features":[571]},{"name":"MSG_Task_Custom","features":[571]},{"name":"MSG_Task_EmailContact","features":[571]},{"name":"MSG_Task_EmailReceived","features":[571]},{"name":"MSG_Task_EmailSent","features":[571]},{"name":"MSG_Task_FileDownload","features":[571]},{"name":"MSG_Task_GameStart","features":[571]},{"name":"MSG_Task_IMContact","features":[571]},{"name":"MSG_Task_IMFeature","features":[571]},{"name":"MSG_Task_IMInvitation","features":[571]},{"name":"MSG_Task_IMJoin","features":[571]},{"name":"MSG_Task_IMLeave","features":[571]},{"name":"MSG_Task_MediaPlayback","features":[571]},{"name":"MSG_Task_SettingChange","features":[571]},{"name":"MSG_Task_UrlVisit","features":[571]},{"name":"MSG_Task_WebOverride","features":[571]},{"name":"MSG_Task_WebsiteVisit","features":[571]},{"name":"WPCCHANNEL","features":[571]},{"name":"WPCEVENT_APPLICATION_value","features":[571]},{"name":"WPCEVENT_APPOVERRIDE_value","features":[571]},{"name":"WPCEVENT_COMPUTERUSAGE_value","features":[571]},{"name":"WPCEVENT_CONTENTUSAGE_value","features":[571]},{"name":"WPCEVENT_CUSTOM_value","features":[571]},{"name":"WPCEVENT_EMAIL_CONTACT_value","features":[571]},{"name":"WPCEVENT_EMAIL_RECEIVED_value","features":[571]},{"name":"WPCEVENT_EMAIL_SENT_value","features":[571]},{"name":"WPCEVENT_GAME_START_value","features":[571]},{"name":"WPCEVENT_IM_CONTACT_value","features":[571]},{"name":"WPCEVENT_IM_FEATURE_value","features":[571]},{"name":"WPCEVENT_IM_INVITATION_value","features":[571]},{"name":"WPCEVENT_IM_JOIN_value","features":[571]},{"name":"WPCEVENT_IM_LEAVE_value","features":[571]},{"name":"WPCEVENT_MEDIA_PLAYBACK_value","features":[571]},{"name":"WPCEVENT_SYSTEM_APPBLOCKED_value","features":[571]},{"name":"WPCEVENT_SYS_SETTINGCHANGE_value","features":[571]},{"name":"WPCEVENT_WEBOVERRIDE_value","features":[571]},{"name":"WPCEVENT_WEB_FILEDOWNLOAD_value","features":[571]},{"name":"WPCEVENT_WEB_URLVISIT_value","features":[571]},{"name":"WPCEVENT_WEB_WEBSITEVISIT_value","features":[571]},{"name":"WPCFLAG_APPLICATION","features":[571]},{"name":"WPCFLAG_APPS_RESTRICTED","features":[571]},{"name":"WPCFLAG_GAMES_BLOCKED","features":[571]},{"name":"WPCFLAG_GAMES_RESTRICTED","features":[571]},{"name":"WPCFLAG_HOURS_RESTRICTED","features":[571]},{"name":"WPCFLAG_IM_FEATURE","features":[571]},{"name":"WPCFLAG_IM_FEATURE_ALL","features":[571]},{"name":"WPCFLAG_IM_FEATURE_AUDIO","features":[571]},{"name":"WPCFLAG_IM_FEATURE_FILESWAP","features":[571]},{"name":"WPCFLAG_IM_FEATURE_GAME","features":[571]},{"name":"WPCFLAG_IM_FEATURE_NONE","features":[571]},{"name":"WPCFLAG_IM_FEATURE_SENDING","features":[571]},{"name":"WPCFLAG_IM_FEATURE_SMS","features":[571]},{"name":"WPCFLAG_IM_FEATURE_URLSWAP","features":[571]},{"name":"WPCFLAG_IM_FEATURE_VIDEO","features":[571]},{"name":"WPCFLAG_IM_LEAVE","features":[571]},{"name":"WPCFLAG_IM_LEAVE_CONVERSATION_END","features":[571]},{"name":"WPCFLAG_IM_LEAVE_FORCED","features":[571]},{"name":"WPCFLAG_IM_LEAVE_NORMAL","features":[571]},{"name":"WPCFLAG_ISBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_ATTACHMENTBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_BADPASS","features":[571]},{"name":"WPCFLAG_ISBLOCKED_CATEGORYBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_CATEGORYNOTINLIST","features":[571]},{"name":"WPCFLAG_ISBLOCKED_CONTACTBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_DESCRIPTORBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_DOWNLOADBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_EMAILBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_EXPLICITBLOCK","features":[571]},{"name":"WPCFLAG_ISBLOCKED_FEATUREBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_GAMESBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_IMBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_INTERNALERROR","features":[571]},{"name":"WPCFLAG_ISBLOCKED_MAXHOURS","features":[571]},{"name":"WPCFLAG_ISBLOCKED_MEDIAPLAYBACKBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_NOACCESS","features":[571]},{"name":"WPCFLAG_ISBLOCKED_NOTBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_NOTEXPLICITLYALLOWED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_NOTINLIST","features":[571]},{"name":"WPCFLAG_ISBLOCKED_NOTKIDS","features":[571]},{"name":"WPCFLAG_ISBLOCKED_RATINGBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_RECEIVERBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_SENDERBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_SETTINGSCHANGEBLOCKED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_SPECHOURS","features":[571]},{"name":"WPCFLAG_ISBLOCKED_UNRATED","features":[571]},{"name":"WPCFLAG_ISBLOCKED_WEBBLOCKED","features":[571]},{"name":"WPCFLAG_LOGGING_REQUIRED","features":[571]},{"name":"WPCFLAG_LOGOFF_TYPE","features":[571]},{"name":"WPCFLAG_LOGOFF_TYPE_FORCEDFUS","features":[571]},{"name":"WPCFLAG_LOGOFF_TYPE_FUS","features":[571]},{"name":"WPCFLAG_LOGOFF_TYPE_LOGOUT","features":[571]},{"name":"WPCFLAG_LOGOFF_TYPE_RESTART","features":[571]},{"name":"WPCFLAG_LOGOFF_TYPE_SHUTDOWN","features":[571]},{"name":"WPCFLAG_NO_RESTRICTION","features":[571]},{"name":"WPCFLAG_OVERRIDE","features":[571]},{"name":"WPCFLAG_RESTRICTION","features":[571]},{"name":"WPCFLAG_TIME_ALLOWANCE_RESTRICTED","features":[571]},{"name":"WPCFLAG_VISIBILITY","features":[571]},{"name":"WPCFLAG_WEB_FILTERED","features":[571]},{"name":"WPCFLAG_WEB_SETTING","features":[571]},{"name":"WPCFLAG_WEB_SETTING_DOWNLOADSBLOCKED","features":[571]},{"name":"WPCFLAG_WEB_SETTING_NOTBLOCKED","features":[571]},{"name":"WPCFLAG_WPC_HIDDEN","features":[571]},{"name":"WPCFLAG_WPC_VISIBLE","features":[571]},{"name":"WPCPROV","features":[571]},{"name":"WPCPROV_KEYWORD_ThirdParty","features":[571]},{"name":"WPCPROV_KEYWORD_WPC","features":[571]},{"name":"WPCPROV_TASK_AppBlocked","features":[571]},{"name":"WPCPROV_TASK_AppOverride","features":[571]},{"name":"WPCPROV_TASK_Application","features":[571]},{"name":"WPCPROV_TASK_ComputerUsage","features":[571]},{"name":"WPCPROV_TASK_ContentUsage","features":[571]},{"name":"WPCPROV_TASK_Custom","features":[571]},{"name":"WPCPROV_TASK_EmailContact","features":[571]},{"name":"WPCPROV_TASK_EmailReceived","features":[571]},{"name":"WPCPROV_TASK_EmailSent","features":[571]},{"name":"WPCPROV_TASK_FileDownload","features":[571]},{"name":"WPCPROV_TASK_GameStart","features":[571]},{"name":"WPCPROV_TASK_IMContact","features":[571]},{"name":"WPCPROV_TASK_IMFeature","features":[571]},{"name":"WPCPROV_TASK_IMInvitation","features":[571]},{"name":"WPCPROV_TASK_IMJoin","features":[571]},{"name":"WPCPROV_TASK_IMLeave","features":[571]},{"name":"WPCPROV_TASK_MediaPlayback","features":[571]},{"name":"WPCPROV_TASK_SettingChange","features":[571]},{"name":"WPCPROV_TASK_UrlVisit","features":[571]},{"name":"WPCPROV_TASK_WebOverride","features":[571]},{"name":"WPCPROV_TASK_WebsiteVisit","features":[571]},{"name":"WPC_APP_LAUNCH","features":[571]},{"name":"WPC_ARGS_APPLICATIONEVENT","features":[571]},{"name":"WPC_ARGS_APPLICATIONEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_APPLICATIONEVENT_CREATIONTIME","features":[571]},{"name":"WPC_ARGS_APPLICATIONEVENT_DECISION","features":[571]},{"name":"WPC_ARGS_APPLICATIONEVENT_PROCESSID","features":[571]},{"name":"WPC_ARGS_APPLICATIONEVENT_SERIALIZEDAPPLICATION","features":[571]},{"name":"WPC_ARGS_APPLICATIONEVENT_TIMEUSED","features":[571]},{"name":"WPC_ARGS_APPOVERRIDEEVENT","features":[571]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_PATH","features":[571]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_REASON","features":[571]},{"name":"WPC_ARGS_APPOVERRIDEEVENT_USERID","features":[571]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT","features":[571]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT_ID","features":[571]},{"name":"WPC_ARGS_COMPUTERUSAGEEVENT_TIMEUSED","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CATEGORY","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CONTENTPROVIDERID","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_CONTENTPROVIDERTITLE","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_DECISION","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_ID","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_RATINGS","features":[571]},{"name":"WPC_ARGS_CONTENTUSAGEEVENT_TITLE","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_ACCOUNTNAME","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_CONVID","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_REASON","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_RECIPCOUNT","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_RECIPIENT","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_REQUESTINGIP","features":[571]},{"name":"WPC_ARGS_CONVERSATIONINITEVENT_SENDER","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_ACCOUNTNAME","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_CONVID","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_JOININGIP","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_JOININGUSER","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_MEMBER","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_MEMBERCOUNT","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_REASON","features":[571]},{"name":"WPC_ARGS_CONVERSATIONJOINEVENT_SENDER","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_ACCOUNTNAME","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_CONVID","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_FLAGS","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_LEAVINGIP","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_LEAVINGUSER","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_MEMBER","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_MEMBERCOUNT","features":[571]},{"name":"WPC_ARGS_CONVERSATIONLEAVEEVENT_REASON","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_BLOCKED","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_EVENT","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_PUBLISHER","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_REASON","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_VALUE1","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_VALUE2","features":[571]},{"name":"WPC_ARGS_CUSTOMEVENT_VALUE3","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_EMAILACCOUNT","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_NEWID","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_NEWNAME","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_OLDID","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_OLDNAME","features":[571]},{"name":"WPC_ARGS_EMAILCONTACTEVENT_REASON","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_ATTACHCOUNT","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_ATTACHMENTNAME","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_EMAILACCOUNT","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_REASON","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_RECEIVEDTIME","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_RECIPCOUNT","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_RECIPIENT","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_SENDER","features":[571]},{"name":"WPC_ARGS_EMAILRECEIEVEDEVENT_SUBJECT","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_ATTACHCOUNT","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_ATTACHMENTNAME","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_EMAILACCOUNT","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_REASON","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_RECIPCOUNT","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_RECIPIENT","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_SENDER","features":[571]},{"name":"WPC_ARGS_EMAILSENTEVENT_SUBJECT","features":[571]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT","features":[571]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_BLOCKED","features":[571]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_PATH","features":[571]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_URL","features":[571]},{"name":"WPC_ARGS_FILEDOWNLOADEVENT_VERSION","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_APPID","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_DESCCOUNT","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_DESCRIPTOR","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_INSTANCEID","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_PATH","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_PID","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_RATING","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_RATINGSYSTEM","features":[571]},{"name":"WPC_ARGS_GAMESTARTEVENT_REASON","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_ACCOUNTNAME","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_NEWID","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_NEWNAME","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_OLDID","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_OLDNAME","features":[571]},{"name":"WPC_ARGS_IMCONTACTEVENT_REASON","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_ACCOUNTNAME","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_CONVID","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_DATA","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_MEDIATYPE","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_REASON","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_RECIPCOUNT","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_RECIPIENT","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_SENDER","features":[571]},{"name":"WPC_ARGS_IMFEATUREEVENT_SENDERIP","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_ALBUM","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_EXPLICIT","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_MEDIATYPE","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_PATH","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_PML","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_REASON","features":[571]},{"name":"WPC_ARGS_MEDIADOWNLOADEVENT_TITLE","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_ALBUM","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_APPVERSION","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_EXPLICIT","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_MEDIATYPE","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_PATH","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_PML","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_REASON","features":[571]},{"name":"WPC_ARGS_MEDIAPLAYBACKEVENT_TITLE","features":[571]},{"name":"WPC_ARGS_SAFERAPPBLOCKED","features":[571]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_CARGS","features":[571]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_PATH","features":[571]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_RULEID","features":[571]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_TIMESTAMP","features":[571]},{"name":"WPC_ARGS_SAFERAPPBLOCKED_USERID","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_CLASS","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_NEWVAL","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_OLDVAL","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_OPTIONAL","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_OWNER","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_REASON","features":[571]},{"name":"WPC_ARGS_SETTINGSCHANGEEVENT_SETTING","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_APPNAME","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_CATCOUNT","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_CATEGORY","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_RATINGSYSTEMID","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_REASON","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_URL","features":[571]},{"name":"WPC_ARGS_URLVISITEVENT_VERSION","features":[571]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT","features":[571]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_REASON","features":[571]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_URL","features":[571]},{"name":"WPC_ARGS_WEBOVERRIDEEVENT_USERID","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_BLOCKEDCATEGORIES","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_CARGS","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_CATEGORIES","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_CONTENTTYPE","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_DECISION","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_REFERRER","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_SERIALIZEDAPPLICATION","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_TELEMETRY","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_TITLE","features":[571]},{"name":"WPC_ARGS_WEBSITEVISITEVENT_URL","features":[571]},{"name":"WPC_MEDIA_EXPLICIT","features":[571]},{"name":"WPC_MEDIA_EXPLICIT_FALSE","features":[571]},{"name":"WPC_MEDIA_EXPLICIT_TRUE","features":[571]},{"name":"WPC_MEDIA_EXPLICIT_UNKNOWN","features":[571]},{"name":"WPC_MEDIA_TYPE","features":[571]},{"name":"WPC_MEDIA_TYPE_AUDIO_FILE","features":[571]},{"name":"WPC_MEDIA_TYPE_CD_AUDIO","features":[571]},{"name":"WPC_MEDIA_TYPE_DVD","features":[571]},{"name":"WPC_MEDIA_TYPE_MAX","features":[571]},{"name":"WPC_MEDIA_TYPE_OTHER","features":[571]},{"name":"WPC_MEDIA_TYPE_PICTURE_FILE","features":[571]},{"name":"WPC_MEDIA_TYPE_RECORDED_TV","features":[571]},{"name":"WPC_MEDIA_TYPE_VIDEO_FILE","features":[571]},{"name":"WPC_SETTINGS","features":[571]},{"name":"WPC_SETTINGS_ALLOW_BLOCK","features":[571]},{"name":"WPC_SETTINGS_GAME_ALLOW_UNRATED","features":[571]},{"name":"WPC_SETTINGS_GAME_BLOCKED","features":[571]},{"name":"WPC_SETTINGS_GAME_DENIED_DESCRIPTORS","features":[571]},{"name":"WPC_SETTINGS_GAME_MAX_ALLOWED","features":[571]},{"name":"WPC_SETTINGS_GAME_RESTRICTED","features":[571]},{"name":"WPC_SETTINGS_LOCATE","features":[571]},{"name":"WPC_SETTINGS_MODIFY","features":[571]},{"name":"WPC_SETTINGS_RATING_SYSTEM_PATH","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_CURRENT_RATING_SYSTEM","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_FILTER_ID","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_FILTER_NAME","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_HTTP_EXEMPTION_LIST","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_LAST_LOG_VIEW","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_LOCALE","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_LOG_VIEW_REMINDER_INTERVAL","features":[571]},{"name":"WPC_SETTINGS_SYSTEM_URL_EXEMPTION_LIST","features":[571]},{"name":"WPC_SETTINGS_USER_APP_RESTRICTIONS","features":[571]},{"name":"WPC_SETTINGS_USER_HOURLY_RESTRICTIONS","features":[571]},{"name":"WPC_SETTINGS_USER_LOGGING_REQUIRED","features":[571]},{"name":"WPC_SETTINGS_USER_LOGON_HOURS","features":[571]},{"name":"WPC_SETTINGS_USER_OVERRRIDE_REQUESTS","features":[571]},{"name":"WPC_SETTINGS_USER_TIME_ALLOWANCE","features":[571]},{"name":"WPC_SETTINGS_USER_TIME_ALLOWANCE_RESTRICTIONS","features":[571]},{"name":"WPC_SETTINGS_USER_WPC_ENABLED","features":[571]},{"name":"WPC_SETTINGS_WEB_BLOCKED_CATEGORY_LIST","features":[571]},{"name":"WPC_SETTINGS_WEB_BLOCK_UNRATED","features":[571]},{"name":"WPC_SETTINGS_WEB_DOWNLOAD_BLOCKED","features":[571]},{"name":"WPC_SETTINGS_WEB_FILTER_LEVEL","features":[571]},{"name":"WPC_SETTINGS_WEB_FILTER_ON","features":[571]},{"name":"WPC_SETTINGS_WPC_ENABLED","features":[571]},{"name":"WPC_SETTINGS_WPC_EXTENSION_DISABLEDIMAGE_PATH","features":[571]},{"name":"WPC_SETTINGS_WPC_EXTENSION_IMAGE_PATH","features":[571]},{"name":"WPC_SETTINGS_WPC_EXTENSION_NAME","features":[571]},{"name":"WPC_SETTINGS_WPC_EXTENSION_PATH","features":[571]},{"name":"WPC_SETTINGS_WPC_EXTENSION_SILO","features":[571]},{"name":"WPC_SETTINGS_WPC_EXTENSION_SUB_TITLE","features":[571]},{"name":"WPC_SETTINGS_WPC_LOGGING_REQUIRED","features":[571]},{"name":"WPC_SETTINGS_WPC_PROVIDER_CURRENT","features":[571]},{"name":"WPC_SETTING_COUNT","features":[571]},{"name":"WPC_SYSTEM","features":[571]},{"name":"WPC_WEB","features":[571]},{"name":"WindowsParentalControls","features":[571]},{"name":"WpcProviderSupport","features":[571]},{"name":"WpcSettingsProvider","features":[571]}],"589":[{"name":"CYPHER_BLOCK","features":[480]},{"name":"ENCRYPTED_LM_OWF_PASSWORD","features":[480]},{"name":"LM_OWF_PASSWORD","features":[480]},{"name":"MSChapSrvChangePassword","features":[305,480]},{"name":"MSChapSrvChangePassword2","features":[305,480]},{"name":"SAMPR_ENCRYPTED_USER_PASSWORD","features":[480]}],"590":[{"name":"AppearPropPage","features":[572]},{"name":"AutoPathFormat","features":[572]},{"name":"BackupPerfRegistryToFileW","features":[572]},{"name":"BootTraceSession","features":[572]},{"name":"BootTraceSessionCollection","features":[572]},{"name":"ClockType","features":[572]},{"name":"CommitMode","features":[572]},{"name":"CounterItem","features":[572]},{"name":"CounterItem2","features":[572]},{"name":"CounterPathCallBack","features":[572]},{"name":"CounterPropPage","features":[572]},{"name":"Counters","features":[572]},{"name":"DATA_SOURCE_REGISTRY","features":[572]},{"name":"DATA_SOURCE_WBEM","features":[572]},{"name":"DICounterItem","features":[356,572]},{"name":"DIID_DICounterItem","features":[572]},{"name":"DIID_DILogFileItem","features":[572]},{"name":"DIID_DISystemMonitor","features":[572]},{"name":"DIID_DISystemMonitorEvents","features":[572]},{"name":"DIID_DISystemMonitorInternal","features":[572]},{"name":"DILogFileItem","features":[356,572]},{"name":"DISystemMonitor","features":[356,572]},{"name":"DISystemMonitorEvents","features":[356,572]},{"name":"DISystemMonitorInternal","features":[356,572]},{"name":"DataCollectorSet","features":[572]},{"name":"DataCollectorSetCollection","features":[572]},{"name":"DataCollectorSetStatus","features":[572]},{"name":"DataCollectorType","features":[572]},{"name":"DataManagerSteps","features":[572]},{"name":"DataSourceTypeConstants","features":[572]},{"name":"DisplayTypeConstants","features":[572]},{"name":"FileFormat","features":[572]},{"name":"FolderActionSteps","features":[572]},{"name":"GeneralPropPage","features":[572]},{"name":"GraphPropPage","features":[572]},{"name":"H_WBEM_DATASOURCE","features":[572]},{"name":"IAlertDataCollector","features":[356,572]},{"name":"IApiTracingDataCollector","features":[356,572]},{"name":"IConfigurationDataCollector","features":[356,572]},{"name":"ICounterItem","features":[572]},{"name":"ICounterItem2","features":[572]},{"name":"ICounters","features":[356,572]},{"name":"IDataCollector","features":[356,572]},{"name":"IDataCollectorCollection","features":[356,572]},{"name":"IDataCollectorSet","features":[356,572]},{"name":"IDataCollectorSetCollection","features":[356,572]},{"name":"IDataManager","features":[356,572]},{"name":"IFolderAction","features":[356,572]},{"name":"IFolderActionCollection","features":[356,572]},{"name":"ILogFileItem","features":[572]},{"name":"ILogFiles","features":[356,572]},{"name":"IPerformanceCounterDataCollector","features":[356,572]},{"name":"ISchedule","features":[356,572]},{"name":"IScheduleCollection","features":[356,572]},{"name":"ISystemMonitor","features":[572]},{"name":"ISystemMonitor2","features":[572]},{"name":"ISystemMonitorEvents","features":[572]},{"name":"ITraceDataCollector","features":[356,572]},{"name":"ITraceDataProvider","features":[356,572]},{"name":"ITraceDataProviderCollection","features":[356,572]},{"name":"IValueMap","features":[356,572]},{"name":"IValueMapItem","features":[356,572]},{"name":"InstallPerfDllA","features":[572]},{"name":"InstallPerfDllW","features":[572]},{"name":"LIBID_SystemMonitor","features":[572]},{"name":"LegacyDataCollectorSet","features":[572]},{"name":"LegacyDataCollectorSetCollection","features":[572]},{"name":"LegacyTraceSession","features":[572]},{"name":"LegacyTraceSessionCollection","features":[572]},{"name":"LoadPerfCounterTextStringsA","features":[305,572]},{"name":"LoadPerfCounterTextStringsW","features":[305,572]},{"name":"LogFileItem","features":[572]},{"name":"LogFiles","features":[572]},{"name":"MAX_COUNTER_PATH","features":[572]},{"name":"MAX_PERF_OBJECTS_IN_QUERY_FUNCTION","features":[572]},{"name":"PDH_ACCESS_DENIED","features":[572]},{"name":"PDH_ASYNC_QUERY_TIMEOUT","features":[572]},{"name":"PDH_BINARY_LOG_CORRUPT","features":[572]},{"name":"PDH_BROWSE_DLG_CONFIG_A","features":[305,572]},{"name":"PDH_BROWSE_DLG_CONFIG_HA","features":[305,572]},{"name":"PDH_BROWSE_DLG_CONFIG_HW","features":[305,572]},{"name":"PDH_BROWSE_DLG_CONFIG_W","features":[305,572]},{"name":"PDH_CALC_NEGATIVE_DENOMINATOR","features":[572]},{"name":"PDH_CALC_NEGATIVE_TIMEBASE","features":[572]},{"name":"PDH_CALC_NEGATIVE_VALUE","features":[572]},{"name":"PDH_CANNOT_CONNECT_MACHINE","features":[572]},{"name":"PDH_CANNOT_CONNECT_WMI_SERVER","features":[572]},{"name":"PDH_CANNOT_READ_NAME_STRINGS","features":[572]},{"name":"PDH_CANNOT_SET_DEFAULT_REALTIME_DATASOURCE","features":[572]},{"name":"PDH_COUNTER_ALREADY_IN_QUERY","features":[572]},{"name":"PDH_COUNTER_INFO_A","features":[572]},{"name":"PDH_COUNTER_INFO_W","features":[572]},{"name":"PDH_COUNTER_PATH_ELEMENTS_A","features":[572]},{"name":"PDH_COUNTER_PATH_ELEMENTS_W","features":[572]},{"name":"PDH_CSTATUS_BAD_COUNTERNAME","features":[572]},{"name":"PDH_CSTATUS_INVALID_DATA","features":[572]},{"name":"PDH_CSTATUS_ITEM_NOT_VALIDATED","features":[572]},{"name":"PDH_CSTATUS_NEW_DATA","features":[572]},{"name":"PDH_CSTATUS_NO_COUNTER","features":[572]},{"name":"PDH_CSTATUS_NO_COUNTERNAME","features":[572]},{"name":"PDH_CSTATUS_NO_INSTANCE","features":[572]},{"name":"PDH_CSTATUS_NO_MACHINE","features":[572]},{"name":"PDH_CSTATUS_NO_OBJECT","features":[572]},{"name":"PDH_CSTATUS_VALID_DATA","features":[572]},{"name":"PDH_CVERSION_WIN50","features":[572]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_A","features":[572]},{"name":"PDH_DATA_ITEM_PATH_ELEMENTS_W","features":[572]},{"name":"PDH_DATA_SOURCE_IS_LOG_FILE","features":[572]},{"name":"PDH_DATA_SOURCE_IS_REAL_TIME","features":[572]},{"name":"PDH_DIALOG_CANCELLED","features":[572]},{"name":"PDH_DLL_VERSION","features":[572]},{"name":"PDH_END_OF_LOG_FILE","features":[572]},{"name":"PDH_ENTRY_NOT_IN_LOG_FILE","features":[572]},{"name":"PDH_FILE_ALREADY_EXISTS","features":[572]},{"name":"PDH_FILE_NOT_FOUND","features":[572]},{"name":"PDH_FLAGS_FILE_BROWSER_ONLY","features":[572]},{"name":"PDH_FLAGS_NONE","features":[572]},{"name":"PDH_FMT","features":[572]},{"name":"PDH_FMT_COUNTERVALUE","features":[572]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_A","features":[572]},{"name":"PDH_FMT_COUNTERVALUE_ITEM_W","features":[572]},{"name":"PDH_FMT_DOUBLE","features":[572]},{"name":"PDH_FMT_LARGE","features":[572]},{"name":"PDH_FMT_LONG","features":[572]},{"name":"PDH_FUNCTION_NOT_FOUND","features":[572]},{"name":"PDH_INCORRECT_APPEND_TIME","features":[572]},{"name":"PDH_INSUFFICIENT_BUFFER","features":[572]},{"name":"PDH_INVALID_ARGUMENT","features":[572]},{"name":"PDH_INVALID_BUFFER","features":[572]},{"name":"PDH_INVALID_DATA","features":[572]},{"name":"PDH_INVALID_DATASOURCE","features":[572]},{"name":"PDH_INVALID_HANDLE","features":[572]},{"name":"PDH_INVALID_INSTANCE","features":[572]},{"name":"PDH_INVALID_PATH","features":[572]},{"name":"PDH_INVALID_SQLDB","features":[572]},{"name":"PDH_INVALID_SQL_LOG_FORMAT","features":[572]},{"name":"PDH_LOG","features":[572]},{"name":"PDH_LOGSVC_NOT_OPENED","features":[572]},{"name":"PDH_LOGSVC_QUERY_NOT_FOUND","features":[572]},{"name":"PDH_LOG_FILE_CREATE_ERROR","features":[572]},{"name":"PDH_LOG_FILE_OPEN_ERROR","features":[572]},{"name":"PDH_LOG_FILE_TOO_SMALL","features":[572]},{"name":"PDH_LOG_READ_ACCESS","features":[572]},{"name":"PDH_LOG_SAMPLE_TOO_SMALL","features":[572]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_A","features":[305,572]},{"name":"PDH_LOG_SERVICE_QUERY_INFO_W","features":[305,572]},{"name":"PDH_LOG_TYPE","features":[572]},{"name":"PDH_LOG_TYPE_BINARY","features":[572]},{"name":"PDH_LOG_TYPE_CSV","features":[572]},{"name":"PDH_LOG_TYPE_NOT_FOUND","features":[572]},{"name":"PDH_LOG_TYPE_PERFMON","features":[572]},{"name":"PDH_LOG_TYPE_RETIRED_BIN","features":[572]},{"name":"PDH_LOG_TYPE_SQL","features":[572]},{"name":"PDH_LOG_TYPE_TRACE_GENERIC","features":[572]},{"name":"PDH_LOG_TYPE_TRACE_KERNEL","features":[572]},{"name":"PDH_LOG_TYPE_TSV","features":[572]},{"name":"PDH_LOG_TYPE_UNDEFINED","features":[572]},{"name":"PDH_LOG_UPDATE_ACCESS","features":[572]},{"name":"PDH_LOG_WRITE_ACCESS","features":[572]},{"name":"PDH_MAX_COUNTER_NAME","features":[572]},{"name":"PDH_MAX_COUNTER_PATH","features":[572]},{"name":"PDH_MAX_DATASOURCE_PATH","features":[572]},{"name":"PDH_MAX_INSTANCE_NAME","features":[572]},{"name":"PDH_MAX_SCALE","features":[572]},{"name":"PDH_MEMORY_ALLOCATION_FAILURE","features":[572]},{"name":"PDH_MIN_SCALE","features":[572]},{"name":"PDH_MORE_DATA","features":[572]},{"name":"PDH_NOEXPANDCOUNTERS","features":[572]},{"name":"PDH_NOEXPANDINSTANCES","features":[572]},{"name":"PDH_NOT_IMPLEMENTED","features":[572]},{"name":"PDH_NO_COUNTERS","features":[572]},{"name":"PDH_NO_DATA","features":[572]},{"name":"PDH_NO_DIALOG_DATA","features":[572]},{"name":"PDH_NO_MORE_DATA","features":[572]},{"name":"PDH_OS_EARLIER_VERSION","features":[572]},{"name":"PDH_OS_LATER_VERSION","features":[572]},{"name":"PDH_PATH_FLAGS","features":[572]},{"name":"PDH_PATH_WBEM_INPUT","features":[572]},{"name":"PDH_PATH_WBEM_NONE","features":[572]},{"name":"PDH_PATH_WBEM_RESULT","features":[572]},{"name":"PDH_PLA_COLLECTION_ALREADY_RUNNING","features":[572]},{"name":"PDH_PLA_COLLECTION_NOT_FOUND","features":[572]},{"name":"PDH_PLA_ERROR_ALREADY_EXISTS","features":[572]},{"name":"PDH_PLA_ERROR_FILEPATH","features":[572]},{"name":"PDH_PLA_ERROR_NAME_TOO_LONG","features":[572]},{"name":"PDH_PLA_ERROR_NOSTART","features":[572]},{"name":"PDH_PLA_ERROR_SCHEDULE_ELAPSED","features":[572]},{"name":"PDH_PLA_ERROR_SCHEDULE_OVERLAP","features":[572]},{"name":"PDH_PLA_ERROR_TYPE_MISMATCH","features":[572]},{"name":"PDH_PLA_SERVICE_ERROR","features":[572]},{"name":"PDH_PLA_VALIDATION_ERROR","features":[572]},{"name":"PDH_PLA_VALIDATION_WARNING","features":[572]},{"name":"PDH_QUERY_PERF_DATA_TIMEOUT","features":[572]},{"name":"PDH_RAW_COUNTER","features":[305,572]},{"name":"PDH_RAW_COUNTER_ITEM_A","features":[305,572]},{"name":"PDH_RAW_COUNTER_ITEM_W","features":[305,572]},{"name":"PDH_RAW_LOG_RECORD","features":[572]},{"name":"PDH_REFRESHCOUNTERS","features":[572]},{"name":"PDH_RETRY","features":[572]},{"name":"PDH_SELECT_DATA_SOURCE_FLAGS","features":[572]},{"name":"PDH_SQL_ALLOCCON_FAILED","features":[572]},{"name":"PDH_SQL_ALLOC_FAILED","features":[572]},{"name":"PDH_SQL_ALTER_DETAIL_FAILED","features":[572]},{"name":"PDH_SQL_BIND_FAILED","features":[572]},{"name":"PDH_SQL_CONNECT_FAILED","features":[572]},{"name":"PDH_SQL_EXEC_DIRECT_FAILED","features":[572]},{"name":"PDH_SQL_FETCH_FAILED","features":[572]},{"name":"PDH_SQL_MORE_RESULTS_FAILED","features":[572]},{"name":"PDH_SQL_ROWCOUNT_FAILED","features":[572]},{"name":"PDH_STATISTICS","features":[572]},{"name":"PDH_STRING_NOT_FOUND","features":[572]},{"name":"PDH_TIME_INFO","features":[572]},{"name":"PDH_UNABLE_MAP_NAME_FILES","features":[572]},{"name":"PDH_UNABLE_READ_LOG_HEADER","features":[572]},{"name":"PDH_UNKNOWN_LOGSVC_COMMAND","features":[572]},{"name":"PDH_UNKNOWN_LOG_FORMAT","features":[572]},{"name":"PDH_UNMATCHED_APPEND_COUNTER","features":[572]},{"name":"PDH_VERSION","features":[572]},{"name":"PDH_WBEM_ERROR","features":[572]},{"name":"PERFLIBREQUEST","features":[572]},{"name":"PERF_ADD_COUNTER","features":[572]},{"name":"PERF_AGGREGATE_AVG","features":[572]},{"name":"PERF_AGGREGATE_INSTANCE","features":[572]},{"name":"PERF_AGGREGATE_MAX","features":[572]},{"name":"PERF_AGGREGATE_MIN","features":[572]},{"name":"PERF_AGGREGATE_TOTAL","features":[572]},{"name":"PERF_AGGREGATE_UNDEFINED","features":[572]},{"name":"PERF_ATTRIB_BY_REFERENCE","features":[572]},{"name":"PERF_ATTRIB_DISPLAY_AS_HEX","features":[572]},{"name":"PERF_ATTRIB_DISPLAY_AS_REAL","features":[572]},{"name":"PERF_ATTRIB_NO_DISPLAYABLE","features":[572]},{"name":"PERF_ATTRIB_NO_GROUP_SEPARATOR","features":[572]},{"name":"PERF_COLLECT_END","features":[572]},{"name":"PERF_COLLECT_START","features":[572]},{"name":"PERF_COUNTERSET","features":[572]},{"name":"PERF_COUNTERSET_FLAG_AGGREGATE","features":[572]},{"name":"PERF_COUNTERSET_FLAG_HISTORY","features":[572]},{"name":"PERF_COUNTERSET_FLAG_INSTANCE","features":[572]},{"name":"PERF_COUNTERSET_FLAG_MULTIPLE","features":[572]},{"name":"PERF_COUNTERSET_INFO","features":[572]},{"name":"PERF_COUNTERSET_INSTANCE","features":[572]},{"name":"PERF_COUNTERSET_MULTI_INSTANCES","features":[572]},{"name":"PERF_COUNTERSET_REG_INFO","features":[572]},{"name":"PERF_COUNTERSET_SINGLE_AGGREGATE","features":[572]},{"name":"PERF_COUNTERSET_SINGLE_INSTANCE","features":[572]},{"name":"PERF_COUNTER_AGGREGATE_FUNC","features":[572]},{"name":"PERF_COUNTER_BASE","features":[572]},{"name":"PERF_COUNTER_BLOCK","features":[572]},{"name":"PERF_COUNTER_DATA","features":[572]},{"name":"PERF_COUNTER_DEFINITION","features":[572]},{"name":"PERF_COUNTER_DEFINITION","features":[572]},{"name":"PERF_COUNTER_ELAPSED","features":[572]},{"name":"PERF_COUNTER_FRACTION","features":[572]},{"name":"PERF_COUNTER_HEADER","features":[572]},{"name":"PERF_COUNTER_HISTOGRAM","features":[572]},{"name":"PERF_COUNTER_HISTOGRAM_TYPE","features":[572]},{"name":"PERF_COUNTER_IDENTIFIER","features":[572]},{"name":"PERF_COUNTER_IDENTITY","features":[572]},{"name":"PERF_COUNTER_INFO","features":[572]},{"name":"PERF_COUNTER_PRECISION","features":[572]},{"name":"PERF_COUNTER_QUEUELEN","features":[572]},{"name":"PERF_COUNTER_RATE","features":[572]},{"name":"PERF_COUNTER_REG_INFO","features":[572]},{"name":"PERF_COUNTER_VALUE","features":[572]},{"name":"PERF_DATA_BLOCK","features":[305,572]},{"name":"PERF_DATA_HEADER","features":[305,572]},{"name":"PERF_DATA_REVISION","features":[572]},{"name":"PERF_DATA_VERSION","features":[572]},{"name":"PERF_DELTA_BASE","features":[572]},{"name":"PERF_DELTA_COUNTER","features":[572]},{"name":"PERF_DETAIL","features":[572]},{"name":"PERF_DETAIL_ADVANCED","features":[572]},{"name":"PERF_DETAIL_EXPERT","features":[572]},{"name":"PERF_DETAIL_NOVICE","features":[572]},{"name":"PERF_DETAIL_WIZARD","features":[572]},{"name":"PERF_DISPLAY_NOSHOW","features":[572]},{"name":"PERF_DISPLAY_NO_SUFFIX","features":[572]},{"name":"PERF_DISPLAY_PERCENT","features":[572]},{"name":"PERF_DISPLAY_PER_SEC","features":[572]},{"name":"PERF_DISPLAY_SECONDS","features":[572]},{"name":"PERF_ENUM_INSTANCES","features":[572]},{"name":"PERF_ERROR_RETURN","features":[572]},{"name":"PERF_FILTER","features":[572]},{"name":"PERF_INSTANCE_DEFINITION","features":[572]},{"name":"PERF_INSTANCE_HEADER","features":[572]},{"name":"PERF_INVERSE_COUNTER","features":[572]},{"name":"PERF_MAX_INSTANCE_NAME","features":[572]},{"name":"PERF_MEM_ALLOC","features":[572]},{"name":"PERF_MEM_FREE","features":[572]},{"name":"PERF_METADATA_MULTIPLE_INSTANCES","features":[572]},{"name":"PERF_METADATA_NO_INSTANCES","features":[572]},{"name":"PERF_MULTIPLE_COUNTERS","features":[572]},{"name":"PERF_MULTIPLE_INSTANCES","features":[572]},{"name":"PERF_MULTI_COUNTER","features":[572]},{"name":"PERF_MULTI_COUNTERS","features":[572]},{"name":"PERF_MULTI_INSTANCES","features":[572]},{"name":"PERF_NO_INSTANCES","features":[572]},{"name":"PERF_NO_UNIQUE_ID","features":[572]},{"name":"PERF_NUMBER_DECIMAL","features":[572]},{"name":"PERF_NUMBER_DEC_1000","features":[572]},{"name":"PERF_NUMBER_HEX","features":[572]},{"name":"PERF_OBJECT_TIMER","features":[572]},{"name":"PERF_OBJECT_TYPE","features":[572]},{"name":"PERF_OBJECT_TYPE","features":[572]},{"name":"PERF_PROVIDER_CONTEXT","features":[572]},{"name":"PERF_PROVIDER_DRIVER","features":[572]},{"name":"PERF_PROVIDER_KERNEL_MODE","features":[572]},{"name":"PERF_PROVIDER_USER_MODE","features":[572]},{"name":"PERF_REG_COUNTERSET_ENGLISH_NAME","features":[572]},{"name":"PERF_REG_COUNTERSET_HELP_STRING","features":[572]},{"name":"PERF_REG_COUNTERSET_NAME_STRING","features":[572]},{"name":"PERF_REG_COUNTERSET_STRUCT","features":[572]},{"name":"PERF_REG_COUNTER_ENGLISH_NAMES","features":[572]},{"name":"PERF_REG_COUNTER_HELP_STRINGS","features":[572]},{"name":"PERF_REG_COUNTER_NAME_STRINGS","features":[572]},{"name":"PERF_REG_COUNTER_STRUCT","features":[572]},{"name":"PERF_REG_PROVIDER_GUID","features":[572]},{"name":"PERF_REG_PROVIDER_NAME","features":[572]},{"name":"PERF_REMOVE_COUNTER","features":[572]},{"name":"PERF_SINGLE_COUNTER","features":[572]},{"name":"PERF_SIZE_DWORD","features":[572]},{"name":"PERF_SIZE_LARGE","features":[572]},{"name":"PERF_SIZE_VARIABLE_LEN","features":[572]},{"name":"PERF_SIZE_ZERO","features":[572]},{"name":"PERF_STRING_BUFFER_HEADER","features":[572]},{"name":"PERF_STRING_COUNTER_HEADER","features":[572]},{"name":"PERF_TEXT_ASCII","features":[572]},{"name":"PERF_TEXT_UNICODE","features":[572]},{"name":"PERF_TIMER_100NS","features":[572]},{"name":"PERF_TIMER_TICK","features":[572]},{"name":"PERF_TYPE_COUNTER","features":[572]},{"name":"PERF_TYPE_NUMBER","features":[572]},{"name":"PERF_TYPE_TEXT","features":[572]},{"name":"PERF_TYPE_ZERO","features":[572]},{"name":"PERF_WILDCARD_COUNTER","features":[572]},{"name":"PERF_WILDCARD_INSTANCE","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_A_NAME","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_C_NAME","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_D_TIME","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_L_VAL","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_MASK","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_M_VAL","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_SINGLE","features":[572]},{"name":"PLAL_ALERT_CMD_LINE_U_TEXT","features":[572]},{"name":"PLA_CABEXTRACT_CALLBACK","features":[572]},{"name":"PLA_CAPABILITY_AUTOLOGGER","features":[572]},{"name":"PLA_CAPABILITY_LEGACY_SESSION","features":[572]},{"name":"PLA_CAPABILITY_LEGACY_SVC","features":[572]},{"name":"PLA_CAPABILITY_LOCAL","features":[572]},{"name":"PLA_CAPABILITY_V1_SESSION","features":[572]},{"name":"PLA_CAPABILITY_V1_SVC","features":[572]},{"name":"PLA_CAPABILITY_V1_SYSTEM","features":[572]},{"name":"PM_CLOSE_PROC","features":[572]},{"name":"PM_COLLECT_PROC","features":[572]},{"name":"PM_OPEN_PROC","features":[572]},{"name":"PdhAddCounterA","features":[572]},{"name":"PdhAddCounterW","features":[572]},{"name":"PdhAddEnglishCounterA","features":[572]},{"name":"PdhAddEnglishCounterW","features":[572]},{"name":"PdhBindInputDataSourceA","features":[572]},{"name":"PdhBindInputDataSourceW","features":[572]},{"name":"PdhBrowseCountersA","features":[305,572]},{"name":"PdhBrowseCountersHA","features":[305,572]},{"name":"PdhBrowseCountersHW","features":[305,572]},{"name":"PdhBrowseCountersW","features":[305,572]},{"name":"PdhCalculateCounterFromRawValue","features":[305,572]},{"name":"PdhCloseLog","features":[572]},{"name":"PdhCloseQuery","features":[572]},{"name":"PdhCollectQueryData","features":[572]},{"name":"PdhCollectQueryDataEx","features":[305,572]},{"name":"PdhCollectQueryDataWithTime","features":[572]},{"name":"PdhComputeCounterStatistics","features":[305,572]},{"name":"PdhConnectMachineA","features":[572]},{"name":"PdhConnectMachineW","features":[572]},{"name":"PdhCreateSQLTablesA","features":[572]},{"name":"PdhCreateSQLTablesW","features":[572]},{"name":"PdhEnumLogSetNamesA","features":[572]},{"name":"PdhEnumLogSetNamesW","features":[572]},{"name":"PdhEnumMachinesA","features":[572]},{"name":"PdhEnumMachinesHA","features":[572]},{"name":"PdhEnumMachinesHW","features":[572]},{"name":"PdhEnumMachinesW","features":[572]},{"name":"PdhEnumObjectItemsA","features":[572]},{"name":"PdhEnumObjectItemsHA","features":[572]},{"name":"PdhEnumObjectItemsHW","features":[572]},{"name":"PdhEnumObjectItemsW","features":[572]},{"name":"PdhEnumObjectsA","features":[305,572]},{"name":"PdhEnumObjectsHA","features":[305,572]},{"name":"PdhEnumObjectsHW","features":[305,572]},{"name":"PdhEnumObjectsW","features":[305,572]},{"name":"PdhExpandCounterPathA","features":[572]},{"name":"PdhExpandCounterPathW","features":[572]},{"name":"PdhExpandWildCardPathA","features":[572]},{"name":"PdhExpandWildCardPathHA","features":[572]},{"name":"PdhExpandWildCardPathHW","features":[572]},{"name":"PdhExpandWildCardPathW","features":[572]},{"name":"PdhFormatFromRawValue","features":[305,572]},{"name":"PdhGetCounterInfoA","features":[305,572]},{"name":"PdhGetCounterInfoW","features":[305,572]},{"name":"PdhGetCounterTimeBase","features":[572]},{"name":"PdhGetDataSourceTimeRangeA","features":[572]},{"name":"PdhGetDataSourceTimeRangeH","features":[572]},{"name":"PdhGetDataSourceTimeRangeW","features":[572]},{"name":"PdhGetDefaultPerfCounterA","features":[572]},{"name":"PdhGetDefaultPerfCounterHA","features":[572]},{"name":"PdhGetDefaultPerfCounterHW","features":[572]},{"name":"PdhGetDefaultPerfCounterW","features":[572]},{"name":"PdhGetDefaultPerfObjectA","features":[572]},{"name":"PdhGetDefaultPerfObjectHA","features":[572]},{"name":"PdhGetDefaultPerfObjectHW","features":[572]},{"name":"PdhGetDefaultPerfObjectW","features":[572]},{"name":"PdhGetDllVersion","features":[572]},{"name":"PdhGetFormattedCounterArrayA","features":[572]},{"name":"PdhGetFormattedCounterArrayW","features":[572]},{"name":"PdhGetFormattedCounterValue","features":[572]},{"name":"PdhGetLogFileSize","features":[572]},{"name":"PdhGetLogSetGUID","features":[572]},{"name":"PdhGetRawCounterArrayA","features":[305,572]},{"name":"PdhGetRawCounterArrayW","features":[305,572]},{"name":"PdhGetRawCounterValue","features":[305,572]},{"name":"PdhIsRealTimeQuery","features":[305,572]},{"name":"PdhLookupPerfIndexByNameA","features":[572]},{"name":"PdhLookupPerfIndexByNameW","features":[572]},{"name":"PdhLookupPerfNameByIndexA","features":[572]},{"name":"PdhLookupPerfNameByIndexW","features":[572]},{"name":"PdhMakeCounterPathA","features":[572]},{"name":"PdhMakeCounterPathW","features":[572]},{"name":"PdhOpenLogA","features":[572]},{"name":"PdhOpenLogW","features":[572]},{"name":"PdhOpenQueryA","features":[572]},{"name":"PdhOpenQueryH","features":[572]},{"name":"PdhOpenQueryW","features":[572]},{"name":"PdhParseCounterPathA","features":[572]},{"name":"PdhParseCounterPathW","features":[572]},{"name":"PdhParseInstanceNameA","features":[572]},{"name":"PdhParseInstanceNameW","features":[572]},{"name":"PdhReadRawLogRecord","features":[305,572]},{"name":"PdhRemoveCounter","features":[572]},{"name":"PdhSelectDataSourceA","features":[305,572]},{"name":"PdhSelectDataSourceW","features":[305,572]},{"name":"PdhSetCounterScaleFactor","features":[572]},{"name":"PdhSetDefaultRealTimeDataSource","features":[572]},{"name":"PdhSetLogSetRunID","features":[572]},{"name":"PdhSetQueryTimeRange","features":[572]},{"name":"PdhUpdateLogA","features":[572]},{"name":"PdhUpdateLogFileCatalog","features":[572]},{"name":"PdhUpdateLogW","features":[572]},{"name":"PdhValidatePathA","features":[572]},{"name":"PdhValidatePathExA","features":[572]},{"name":"PdhValidatePathExW","features":[572]},{"name":"PdhValidatePathW","features":[572]},{"name":"PdhVerifySQLDBA","features":[572]},{"name":"PdhVerifySQLDBW","features":[572]},{"name":"PerfAddCounters","features":[305,572]},{"name":"PerfCloseQueryHandle","features":[305,572]},{"name":"PerfCounterDataType","features":[572]},{"name":"PerfCreateInstance","features":[305,572]},{"name":"PerfDecrementULongCounterValue","features":[305,572]},{"name":"PerfDecrementULongLongCounterValue","features":[305,572]},{"name":"PerfDeleteCounters","features":[305,572]},{"name":"PerfDeleteInstance","features":[305,572]},{"name":"PerfEnumerateCounterSet","features":[572]},{"name":"PerfEnumerateCounterSetInstances","features":[572]},{"name":"PerfIncrementULongCounterValue","features":[305,572]},{"name":"PerfIncrementULongLongCounterValue","features":[305,572]},{"name":"PerfOpenQueryHandle","features":[305,572]},{"name":"PerfQueryCounterData","features":[305,572]},{"name":"PerfQueryCounterInfo","features":[305,572]},{"name":"PerfQueryCounterSetRegistrationInfo","features":[572]},{"name":"PerfQueryInstance","features":[305,572]},{"name":"PerfRegInfoType","features":[572]},{"name":"PerfSetCounterRefValue","features":[305,572]},{"name":"PerfSetCounterSetInfo","features":[305,572]},{"name":"PerfSetULongCounterValue","features":[305,572]},{"name":"PerfSetULongLongCounterValue","features":[305,572]},{"name":"PerfStartProvider","features":[305,572]},{"name":"PerfStartProviderEx","features":[305,572]},{"name":"PerfStopProvider","features":[305,572]},{"name":"QueryPerformanceCounter","features":[305,572]},{"name":"QueryPerformanceFrequency","features":[305,572]},{"name":"REAL_TIME_DATA_SOURCE_ID_FLAGS","features":[572]},{"name":"ReportValueTypeConstants","features":[572]},{"name":"ResourcePolicy","features":[572]},{"name":"RestorePerfRegistryFromFileW","features":[572]},{"name":"S_PDH","features":[572]},{"name":"ServerDataCollectorSet","features":[572]},{"name":"ServerDataCollectorSetCollection","features":[572]},{"name":"SetServiceAsTrustedA","features":[572]},{"name":"SetServiceAsTrustedW","features":[572]},{"name":"SourcePropPage","features":[572]},{"name":"StreamMode","features":[572]},{"name":"SysmonBatchReason","features":[572]},{"name":"SysmonDataType","features":[572]},{"name":"SysmonFileType","features":[572]},{"name":"SystemDataCollectorSet","features":[572]},{"name":"SystemDataCollectorSetCollection","features":[572]},{"name":"SystemMonitor","features":[572]},{"name":"SystemMonitor2","features":[572]},{"name":"TraceDataProvider","features":[572]},{"name":"TraceDataProviderCollection","features":[572]},{"name":"TraceSession","features":[572]},{"name":"TraceSessionCollection","features":[572]},{"name":"UnloadPerfCounterTextStringsA","features":[305,572]},{"name":"UnloadPerfCounterTextStringsW","features":[305,572]},{"name":"UpdatePerfNameFilesA","features":[572]},{"name":"UpdatePerfNameFilesW","features":[572]},{"name":"ValueMapType","features":[572]},{"name":"WINPERF_LOG_DEBUG","features":[572]},{"name":"WINPERF_LOG_NONE","features":[572]},{"name":"WINPERF_LOG_USER","features":[572]},{"name":"WINPERF_LOG_VERBOSE","features":[572]},{"name":"WeekDays","features":[572]},{"name":"_ICounterItemUnion","features":[572]},{"name":"_ISystemMonitorUnion","features":[572]},{"name":"plaAlert","features":[572]},{"name":"plaApiTrace","features":[572]},{"name":"plaBinary","features":[572]},{"name":"plaBoth","features":[572]},{"name":"plaBuffering","features":[572]},{"name":"plaCommaSeparated","features":[572]},{"name":"plaCompiling","features":[572]},{"name":"plaComputer","features":[572]},{"name":"plaConfiguration","features":[572]},{"name":"plaCreateCab","features":[572]},{"name":"plaCreateHtml","features":[572]},{"name":"plaCreateNew","features":[572]},{"name":"plaCreateOrModify","features":[572]},{"name":"plaCreateReport","features":[572]},{"name":"plaCycle","features":[572]},{"name":"plaDeleteCab","features":[572]},{"name":"plaDeleteData","features":[572]},{"name":"plaDeleteLargest","features":[572]},{"name":"plaDeleteOldest","features":[572]},{"name":"plaDeleteReport","features":[572]},{"name":"plaEveryday","features":[572]},{"name":"plaFile","features":[572]},{"name":"plaFlag","features":[572]},{"name":"plaFlagArray","features":[572]},{"name":"plaFlushTrace","features":[572]},{"name":"plaFolderActions","features":[572]},{"name":"plaFriday","features":[572]},{"name":"plaIndex","features":[572]},{"name":"plaModify","features":[572]},{"name":"plaMonday","features":[572]},{"name":"plaMonthDayHour","features":[572]},{"name":"plaMonthDayHourMinute","features":[572]},{"name":"plaNone","features":[572]},{"name":"plaPattern","features":[572]},{"name":"plaPending","features":[572]},{"name":"plaPerformance","features":[572]},{"name":"plaPerformanceCounter","features":[572]},{"name":"plaRealTime","features":[572]},{"name":"plaResourceFreeing","features":[572]},{"name":"plaRunOnce","features":[572]},{"name":"plaRunRules","features":[572]},{"name":"plaRunning","features":[572]},{"name":"plaSaturday","features":[572]},{"name":"plaSendCab","features":[572]},{"name":"plaSerialNumber","features":[572]},{"name":"plaSql","features":[572]},{"name":"plaStopped","features":[572]},{"name":"plaSunday","features":[572]},{"name":"plaSystem","features":[572]},{"name":"plaTabSeparated","features":[572]},{"name":"plaThursday","features":[572]},{"name":"plaTimeStamp","features":[572]},{"name":"plaTrace","features":[572]},{"name":"plaTuesday","features":[572]},{"name":"plaUndefined","features":[572]},{"name":"plaUpdateRunningInstance","features":[572]},{"name":"plaValidateOnly","features":[572]},{"name":"plaValidation","features":[572]},{"name":"plaWednesday","features":[572]},{"name":"plaYearDayOfYear","features":[572]},{"name":"plaYearMonth","features":[572]},{"name":"plaYearMonthDay","features":[572]},{"name":"plaYearMonthDayHour","features":[572]},{"name":"sysmonAverage","features":[572]},{"name":"sysmonBatchAddCounters","features":[572]},{"name":"sysmonBatchAddFiles","features":[572]},{"name":"sysmonBatchAddFilesAutoCounters","features":[572]},{"name":"sysmonBatchNone","features":[572]},{"name":"sysmonChartArea","features":[572]},{"name":"sysmonChartStackedArea","features":[572]},{"name":"sysmonCurrentActivity","features":[572]},{"name":"sysmonCurrentValue","features":[572]},{"name":"sysmonDataAvg","features":[572]},{"name":"sysmonDataCount","features":[572]},{"name":"sysmonDataMax","features":[572]},{"name":"sysmonDataMin","features":[572]},{"name":"sysmonDataTime","features":[572]},{"name":"sysmonDefaultValue","features":[572]},{"name":"sysmonFileBlg","features":[572]},{"name":"sysmonFileCsv","features":[572]},{"name":"sysmonFileGif","features":[572]},{"name":"sysmonFileHtml","features":[572]},{"name":"sysmonFileReport","features":[572]},{"name":"sysmonFileRetiredBlg","features":[572]},{"name":"sysmonFileTsv","features":[572]},{"name":"sysmonHistogram","features":[572]},{"name":"sysmonLineGraph","features":[572]},{"name":"sysmonLogFiles","features":[572]},{"name":"sysmonMaximum","features":[572]},{"name":"sysmonMinimum","features":[572]},{"name":"sysmonNullDataSource","features":[572]},{"name":"sysmonReport","features":[572]},{"name":"sysmonSqlLog","features":[572]}],"591":[{"name":"DisableThreadProfiling","features":[305,573]},{"name":"EnableThreadProfiling","features":[305,573]},{"name":"HARDWARE_COUNTER_DATA","features":[573]},{"name":"HARDWARE_COUNTER_TYPE","features":[573]},{"name":"MaxHardwareCounterType","features":[573]},{"name":"PERFORMANCE_DATA","features":[573]},{"name":"PMCCounter","features":[573]},{"name":"QueryThreadProfiling","features":[305,573]},{"name":"ReadThreadProfilingData","features":[305,573]}],"592":[{"name":"CallNamedPipeA","features":[305,574]},{"name":"CallNamedPipeW","features":[305,574]},{"name":"ConnectNamedPipe","features":[305,310,574]},{"name":"CreateNamedPipeA","features":[305,308,324,574]},{"name":"CreateNamedPipeW","features":[305,308,324,574]},{"name":"CreatePipe","features":[305,308,574]},{"name":"DisconnectNamedPipe","features":[305,574]},{"name":"GetNamedPipeClientComputerNameA","features":[305,574]},{"name":"GetNamedPipeClientComputerNameW","features":[305,574]},{"name":"GetNamedPipeClientProcessId","features":[305,574]},{"name":"GetNamedPipeClientSessionId","features":[305,574]},{"name":"GetNamedPipeHandleStateA","features":[305,574]},{"name":"GetNamedPipeHandleStateW","features":[305,574]},{"name":"GetNamedPipeInfo","features":[305,574]},{"name":"GetNamedPipeServerProcessId","features":[305,574]},{"name":"GetNamedPipeServerSessionId","features":[305,574]},{"name":"ImpersonateNamedPipeClient","features":[305,574]},{"name":"NAMED_PIPE_MODE","features":[574]},{"name":"NMPWAIT_NOWAIT","features":[574]},{"name":"NMPWAIT_USE_DEFAULT_WAIT","features":[574]},{"name":"NMPWAIT_WAIT_FOREVER","features":[574]},{"name":"PIPE_ACCEPT_REMOTE_CLIENTS","features":[574]},{"name":"PIPE_CLIENT_END","features":[574]},{"name":"PIPE_NOWAIT","features":[574]},{"name":"PIPE_READMODE_BYTE","features":[574]},{"name":"PIPE_READMODE_MESSAGE","features":[574]},{"name":"PIPE_REJECT_REMOTE_CLIENTS","features":[574]},{"name":"PIPE_SERVER_END","features":[574]},{"name":"PIPE_TYPE_BYTE","features":[574]},{"name":"PIPE_TYPE_MESSAGE","features":[574]},{"name":"PIPE_UNLIMITED_INSTANCES","features":[574]},{"name":"PIPE_WAIT","features":[574]},{"name":"PeekNamedPipe","features":[305,574]},{"name":"SetNamedPipeHandleState","features":[305,574]},{"name":"TransactNamedPipe","features":[305,310,574]},{"name":"WaitNamedPipeA","features":[305,574]},{"name":"WaitNamedPipeW","features":[305,574]}],"593":[{"name":"ACCESS_ACTIVE_OVERLAY_SCHEME","features":[312]},{"name":"ACCESS_ACTIVE_SCHEME","features":[312]},{"name":"ACCESS_AC_POWER_SETTING_INDEX","features":[312]},{"name":"ACCESS_AC_POWER_SETTING_MAX","features":[312]},{"name":"ACCESS_AC_POWER_SETTING_MIN","features":[312]},{"name":"ACCESS_ATTRIBUTES","features":[312]},{"name":"ACCESS_CREATE_SCHEME","features":[312]},{"name":"ACCESS_DC_POWER_SETTING_INDEX","features":[312]},{"name":"ACCESS_DC_POWER_SETTING_MAX","features":[312]},{"name":"ACCESS_DC_POWER_SETTING_MIN","features":[312]},{"name":"ACCESS_DEFAULT_AC_POWER_SETTING","features":[312]},{"name":"ACCESS_DEFAULT_DC_POWER_SETTING","features":[312]},{"name":"ACCESS_DEFAULT_SECURITY_DESCRIPTOR","features":[312]},{"name":"ACCESS_DESCRIPTION","features":[312]},{"name":"ACCESS_FRIENDLY_NAME","features":[312]},{"name":"ACCESS_ICON_RESOURCE","features":[312]},{"name":"ACCESS_INDIVIDUAL_SETTING","features":[312]},{"name":"ACCESS_OVERLAY_SCHEME","features":[312]},{"name":"ACCESS_POSSIBLE_POWER_SETTING","features":[312]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_DESCRIPTION","features":[312]},{"name":"ACCESS_POSSIBLE_POWER_SETTING_FRIENDLY_NAME","features":[312]},{"name":"ACCESS_POSSIBLE_VALUE_INCREMENT","features":[312]},{"name":"ACCESS_POSSIBLE_VALUE_MAX","features":[312]},{"name":"ACCESS_POSSIBLE_VALUE_MIN","features":[312]},{"name":"ACCESS_POSSIBLE_VALUE_UNITS","features":[312]},{"name":"ACCESS_PROFILE","features":[312]},{"name":"ACCESS_SCHEME","features":[312]},{"name":"ACCESS_SUBGROUP","features":[312]},{"name":"ACPI_REAL_TIME","features":[312]},{"name":"ACPI_TIME_ADJUST_DAYLIGHT","features":[312]},{"name":"ACPI_TIME_AND_ALARM_CAPABILITIES","features":[305,312]},{"name":"ACPI_TIME_IN_DAYLIGHT","features":[312]},{"name":"ACPI_TIME_RESOLUTION","features":[312]},{"name":"ACPI_TIME_ZONE_UNKNOWN","features":[312]},{"name":"ACTIVE_COOLING","features":[312]},{"name":"ADMINISTRATOR_POWER_POLICY","features":[312]},{"name":"ALTITUDE_GROUP_POLICY","features":[312]},{"name":"ALTITUDE_INTERNAL_OVERRIDE","features":[312]},{"name":"ALTITUDE_OEM_CUSTOMIZATION","features":[312]},{"name":"ALTITUDE_OS_DEFAULT","features":[312]},{"name":"ALTITUDE_PROVISIONING","features":[312]},{"name":"ALTITUDE_RUNTIME_OVERRIDE","features":[312]},{"name":"ALTITUDE_USER","features":[312]},{"name":"AcpiTimeResolutionMax","features":[312]},{"name":"AcpiTimeResolutionMilliseconds","features":[312]},{"name":"AcpiTimeResolutionSeconds","features":[312]},{"name":"AdministratorPowerPolicy","features":[312]},{"name":"BATTERY_CAPACITY_RELATIVE","features":[312]},{"name":"BATTERY_CHARGER_STATUS","features":[312]},{"name":"BATTERY_CHARGING","features":[312]},{"name":"BATTERY_CHARGING_SOURCE","features":[312]},{"name":"BATTERY_CHARGING_SOURCE_INFORMATION","features":[305,312]},{"name":"BATTERY_CHARGING_SOURCE_TYPE","features":[312]},{"name":"BATTERY_CLASS_MAJOR_VERSION","features":[312]},{"name":"BATTERY_CLASS_MINOR_VERSION","features":[312]},{"name":"BATTERY_CLASS_MINOR_VERSION_1","features":[312]},{"name":"BATTERY_CRITICAL","features":[312]},{"name":"BATTERY_CYCLE_COUNT_WMI_GUID","features":[312]},{"name":"BATTERY_DISCHARGING","features":[312]},{"name":"BATTERY_FULL_CHARGED_CAPACITY_WMI_GUID","features":[312]},{"name":"BATTERY_INFORMATION","features":[312]},{"name":"BATTERY_IS_SHORT_TERM","features":[312]},{"name":"BATTERY_MANUFACTURE_DATE","features":[312]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_1","features":[312]},{"name":"BATTERY_MINIPORT_UPDATE_DATA_VER_2","features":[312]},{"name":"BATTERY_POWER_ON_LINE","features":[312]},{"name":"BATTERY_QUERY_INFORMATION","features":[312]},{"name":"BATTERY_QUERY_INFORMATION_LEVEL","features":[312]},{"name":"BATTERY_REPORTING_SCALE","features":[312]},{"name":"BATTERY_RUNTIME_WMI_GUID","features":[312]},{"name":"BATTERY_SEALED","features":[312]},{"name":"BATTERY_SET_CHARGER_ID_SUPPORTED","features":[312]},{"name":"BATTERY_SET_CHARGE_SUPPORTED","features":[312]},{"name":"BATTERY_SET_CHARGINGSOURCE_SUPPORTED","features":[312]},{"name":"BATTERY_SET_DISCHARGE_SUPPORTED","features":[312]},{"name":"BATTERY_SET_INFORMATION","features":[312]},{"name":"BATTERY_SET_INFORMATION_LEVEL","features":[312]},{"name":"BATTERY_STATIC_DATA_WMI_GUID","features":[312]},{"name":"BATTERY_STATUS","features":[312]},{"name":"BATTERY_STATUS_CHANGE_WMI_GUID","features":[312]},{"name":"BATTERY_STATUS_WMI_GUID","features":[312]},{"name":"BATTERY_SYSTEM_BATTERY","features":[312]},{"name":"BATTERY_TAG_CHANGE_WMI_GUID","features":[312]},{"name":"BATTERY_TAG_INVALID","features":[312]},{"name":"BATTERY_TEMPERATURE_WMI_GUID","features":[312]},{"name":"BATTERY_UNKNOWN_CAPACITY","features":[312]},{"name":"BATTERY_UNKNOWN_CURRENT","features":[312]},{"name":"BATTERY_UNKNOWN_RATE","features":[312]},{"name":"BATTERY_UNKNOWN_TIME","features":[312]},{"name":"BATTERY_UNKNOWN_VOLTAGE","features":[312]},{"name":"BATTERY_USB_CHARGER_STATUS","features":[312]},{"name":"BATTERY_USB_CHARGER_STATUS_FN_DEFAULT_USB","features":[312]},{"name":"BATTERY_USB_CHARGER_STATUS_UCM_PD","features":[312]},{"name":"BATTERY_WAIT_STATUS","features":[312]},{"name":"BatteryCharge","features":[312]},{"name":"BatteryChargerId","features":[312]},{"name":"BatteryChargerStatus","features":[312]},{"name":"BatteryChargingSource","features":[312]},{"name":"BatteryChargingSourceType_AC","features":[312]},{"name":"BatteryChargingSourceType_Max","features":[312]},{"name":"BatteryChargingSourceType_USB","features":[312]},{"name":"BatteryChargingSourceType_Wireless","features":[312]},{"name":"BatteryCriticalBias","features":[312]},{"name":"BatteryDeviceName","features":[312]},{"name":"BatteryDeviceState","features":[312]},{"name":"BatteryDischarge","features":[312]},{"name":"BatteryEstimatedTime","features":[312]},{"name":"BatteryGranularityInformation","features":[312]},{"name":"BatteryInformation","features":[312]},{"name":"BatteryManufactureDate","features":[312]},{"name":"BatteryManufactureName","features":[312]},{"name":"BatterySerialNumber","features":[312]},{"name":"BatteryTemperature","features":[312]},{"name":"BatteryUniqueID","features":[312]},{"name":"BlackBoxRecorderDirectAccessBuffer","features":[312]},{"name":"CM_POWER_DATA","features":[312]},{"name":"CallNtPowerInformation","features":[305,312]},{"name":"CanUserWritePwrScheme","features":[305,312]},{"name":"CsDeviceNotification","features":[312]},{"name":"DEVICEPOWER_AND_OPERATION","features":[312]},{"name":"DEVICEPOWER_CLEAR_WAKEENABLED","features":[312]},{"name":"DEVICEPOWER_FILTER_DEVICES_PRESENT","features":[312]},{"name":"DEVICEPOWER_FILTER_HARDWARE","features":[312]},{"name":"DEVICEPOWER_FILTER_ON_NAME","features":[312]},{"name":"DEVICEPOWER_FILTER_WAKEENABLED","features":[312]},{"name":"DEVICEPOWER_FILTER_WAKEPROGRAMMABLE","features":[312]},{"name":"DEVICEPOWER_HARDWAREID","features":[312]},{"name":"DEVICEPOWER_SET_WAKEENABLED","features":[312]},{"name":"DEVICE_NOTIFY_SUBSCRIBE_PARAMETERS","features":[312]},{"name":"DEVICE_POWER_CAPABILITIES","features":[312]},{"name":"DEVICE_POWER_STATE","features":[312]},{"name":"DeletePwrScheme","features":[305,312]},{"name":"DevicePowerClose","features":[305,312]},{"name":"DevicePowerEnumDevices","features":[305,312]},{"name":"DevicePowerOpen","features":[305,312]},{"name":"DevicePowerSetDeviceState","features":[312]},{"name":"DisplayBurst","features":[312]},{"name":"EFFECTIVE_POWER_MODE","features":[312]},{"name":"EFFECTIVE_POWER_MODE_CALLBACK","features":[312]},{"name":"EFFECTIVE_POWER_MODE_V1","features":[312]},{"name":"EFFECTIVE_POWER_MODE_V2","features":[312]},{"name":"EMI_CHANNEL_MEASUREMENT_DATA","features":[312]},{"name":"EMI_CHANNEL_V2","features":[312]},{"name":"EMI_MEASUREMENT_DATA_V2","features":[312]},{"name":"EMI_MEASUREMENT_UNIT","features":[312]},{"name":"EMI_METADATA_SIZE","features":[312]},{"name":"EMI_METADATA_V1","features":[312]},{"name":"EMI_METADATA_V2","features":[312]},{"name":"EMI_NAME_MAX","features":[312]},{"name":"EMI_VERSION","features":[312]},{"name":"EMI_VERSION_V1","features":[312]},{"name":"EMI_VERSION_V2","features":[312]},{"name":"ES_AWAYMODE_REQUIRED","features":[312]},{"name":"ES_CONTINUOUS","features":[312]},{"name":"ES_DISPLAY_REQUIRED","features":[312]},{"name":"ES_SYSTEM_REQUIRED","features":[312]},{"name":"ES_USER_PRESENT","features":[312]},{"name":"EXECUTION_STATE","features":[312]},{"name":"EffectivePowerModeBalanced","features":[312]},{"name":"EffectivePowerModeBatterySaver","features":[312]},{"name":"EffectivePowerModeBetterBattery","features":[312]},{"name":"EffectivePowerModeGameMode","features":[312]},{"name":"EffectivePowerModeHighPerformance","features":[312]},{"name":"EffectivePowerModeMaxPerformance","features":[312]},{"name":"EffectivePowerModeMixedReality","features":[312]},{"name":"EmiMeasurementUnitPicowattHours","features":[312]},{"name":"EnableMultiBatteryDisplay","features":[312]},{"name":"EnablePasswordLogon","features":[312]},{"name":"EnableSysTrayBatteryMeter","features":[312]},{"name":"EnableVideoDimDisplay","features":[312]},{"name":"EnableWakeOnRing","features":[312]},{"name":"EnergyTrackerCreate","features":[312]},{"name":"EnergyTrackerQuery","features":[312]},{"name":"EnumPwrSchemes","features":[305,312]},{"name":"ExitLatencySamplingPercentage","features":[312]},{"name":"FirmwareTableInformationRegistered","features":[312]},{"name":"GLOBAL_MACHINE_POWER_POLICY","features":[312]},{"name":"GLOBAL_POWER_POLICY","features":[305,312]},{"name":"GLOBAL_USER_POWER_POLICY","features":[305,312]},{"name":"GUID_CLASS_INPUT","features":[312]},{"name":"GUID_DEVICE_ACPI_TIME","features":[312]},{"name":"GUID_DEVICE_APPLICATIONLAUNCH_BUTTON","features":[312]},{"name":"GUID_DEVICE_BATTERY","features":[312]},{"name":"GUID_DEVICE_ENERGY_METER","features":[312]},{"name":"GUID_DEVICE_FAN","features":[312]},{"name":"GUID_DEVICE_LID","features":[312]},{"name":"GUID_DEVICE_MEMORY","features":[312]},{"name":"GUID_DEVICE_MESSAGE_INDICATOR","features":[312]},{"name":"GUID_DEVICE_PROCESSOR","features":[312]},{"name":"GUID_DEVICE_SYS_BUTTON","features":[312]},{"name":"GUID_DEVICE_THERMAL_ZONE","features":[312]},{"name":"GUID_DEVINTERFACE_THERMAL_COOLING","features":[312]},{"name":"GUID_DEVINTERFACE_THERMAL_MANAGER","features":[312]},{"name":"GetActivePwrScheme","features":[305,312]},{"name":"GetCurrentPowerPolicies","features":[305,312]},{"name":"GetDevicePowerState","features":[305,312]},{"name":"GetPowerRequestList","features":[312]},{"name":"GetPowerSettingValue","features":[312]},{"name":"GetPwrCapabilities","features":[305,312]},{"name":"GetPwrDiskSpindownRange","features":[305,312]},{"name":"GetSystemPowerStatus","features":[305,312]},{"name":"GroupPark","features":[312]},{"name":"HPOWERNOTIFY","features":[312]},{"name":"IOCTL_ACPI_GET_REAL_TIME","features":[312]},{"name":"IOCTL_ACPI_SET_REAL_TIME","features":[312]},{"name":"IOCTL_BATTERY_CHARGING_SOURCE_CHANGE","features":[312]},{"name":"IOCTL_BATTERY_QUERY_INFORMATION","features":[312]},{"name":"IOCTL_BATTERY_QUERY_STATUS","features":[312]},{"name":"IOCTL_BATTERY_QUERY_TAG","features":[312]},{"name":"IOCTL_BATTERY_SET_INFORMATION","features":[312]},{"name":"IOCTL_EMI_GET_MEASUREMENT","features":[312]},{"name":"IOCTL_EMI_GET_METADATA","features":[312]},{"name":"IOCTL_EMI_GET_METADATA_SIZE","features":[312]},{"name":"IOCTL_EMI_GET_VERSION","features":[312]},{"name":"IOCTL_GET_ACPI_TIME_AND_ALARM_CAPABILITIES","features":[312]},{"name":"IOCTL_GET_PROCESSOR_OBJ_INFO","features":[312]},{"name":"IOCTL_GET_SYS_BUTTON_CAPS","features":[312]},{"name":"IOCTL_GET_SYS_BUTTON_EVENT","features":[312]},{"name":"IOCTL_GET_WAKE_ALARM_POLICY","features":[312]},{"name":"IOCTL_GET_WAKE_ALARM_SYSTEM_POWERSTATE","features":[312]},{"name":"IOCTL_GET_WAKE_ALARM_VALUE","features":[312]},{"name":"IOCTL_NOTIFY_SWITCH_EVENT","features":[312]},{"name":"IOCTL_QUERY_LID","features":[312]},{"name":"IOCTL_RUN_ACTIVE_COOLING_METHOD","features":[312]},{"name":"IOCTL_SET_SYS_MESSAGE_INDICATOR","features":[312]},{"name":"IOCTL_SET_WAKE_ALARM_POLICY","features":[312]},{"name":"IOCTL_SET_WAKE_ALARM_VALUE","features":[312]},{"name":"IOCTL_THERMAL_QUERY_INFORMATION","features":[312]},{"name":"IOCTL_THERMAL_READ_POLICY","features":[312]},{"name":"IOCTL_THERMAL_READ_TEMPERATURE","features":[312]},{"name":"IOCTL_THERMAL_SET_COOLING_POLICY","features":[312]},{"name":"IOCTL_THERMAL_SET_PASSIVE_LIMIT","features":[312]},{"name":"IdleResiliency","features":[312]},{"name":"IsAdminOverrideActive","features":[305,312]},{"name":"IsPwrHibernateAllowed","features":[305,312]},{"name":"IsPwrShutdownAllowed","features":[305,312]},{"name":"IsPwrSuspendAllowed","features":[305,312]},{"name":"IsSystemResumeAutomatic","features":[305,312]},{"name":"LATENCY_TIME","features":[312]},{"name":"LT_DONT_CARE","features":[312]},{"name":"LT_LOWEST_LATENCY","features":[312]},{"name":"LastResumePerformance","features":[312]},{"name":"LastSleepTime","features":[312]},{"name":"LastWakeTime","features":[312]},{"name":"LogicalProcessorIdling","features":[312]},{"name":"MACHINE_POWER_POLICY","features":[312]},{"name":"MACHINE_PROCESSOR_POWER_POLICY","features":[312]},{"name":"MAX_ACTIVE_COOLING_LEVELS","features":[312]},{"name":"MAX_BATTERY_STRING_SIZE","features":[312]},{"name":"MonitorCapabilities","features":[312]},{"name":"MonitorInvocation","features":[312]},{"name":"MonitorRequestReasonAcDcDisplayBurst","features":[312]},{"name":"MonitorRequestReasonAcDcDisplayBurstSuppressed","features":[312]},{"name":"MonitorRequestReasonBatteryCountChange","features":[312]},{"name":"MonitorRequestReasonBatteryCountChangeSuppressed","features":[312]},{"name":"MonitorRequestReasonBatteryPreCritical","features":[312]},{"name":"MonitorRequestReasonBuiltinPanel","features":[312]},{"name":"MonitorRequestReasonDP","features":[312]},{"name":"MonitorRequestReasonDim","features":[312]},{"name":"MonitorRequestReasonDirectedDrips","features":[312]},{"name":"MonitorRequestReasonDisplayRequiredUnDim","features":[312]},{"name":"MonitorRequestReasonFullWake","features":[312]},{"name":"MonitorRequestReasonGracePeriod","features":[312]},{"name":"MonitorRequestReasonIdleTimeout","features":[312]},{"name":"MonitorRequestReasonLid","features":[312]},{"name":"MonitorRequestReasonMax","features":[312]},{"name":"MonitorRequestReasonNearProximity","features":[312]},{"name":"MonitorRequestReasonPdcSignal","features":[312]},{"name":"MonitorRequestReasonPdcSignalFingerprint","features":[312]},{"name":"MonitorRequestReasonPdcSignalHeyCortana","features":[312]},{"name":"MonitorRequestReasonPdcSignalHolographicShell","features":[312]},{"name":"MonitorRequestReasonPdcSignalSensorsHumanPresence","features":[312]},{"name":"MonitorRequestReasonPdcSignalWindowsMobilePwrNotif","features":[312]},{"name":"MonitorRequestReasonPdcSignalWindowsMobileShell","features":[312]},{"name":"MonitorRequestReasonPnP","features":[312]},{"name":"MonitorRequestReasonPoSetSystemState","features":[312]},{"name":"MonitorRequestReasonPolicyChange","features":[312]},{"name":"MonitorRequestReasonPowerButton","features":[312]},{"name":"MonitorRequestReasonRemoteConnection","features":[312]},{"name":"MonitorRequestReasonResumeModernStandby","features":[312]},{"name":"MonitorRequestReasonResumePdc","features":[312]},{"name":"MonitorRequestReasonResumeS4","features":[312]},{"name":"MonitorRequestReasonScMonitorpower","features":[312]},{"name":"MonitorRequestReasonScreenOffRequest","features":[312]},{"name":"MonitorRequestReasonSessionUnlock","features":[312]},{"name":"MonitorRequestReasonSetThreadExecutionState","features":[312]},{"name":"MonitorRequestReasonSleepButton","features":[312]},{"name":"MonitorRequestReasonSxTransition","features":[312]},{"name":"MonitorRequestReasonSystemIdle","features":[312]},{"name":"MonitorRequestReasonSystemStateEntered","features":[312]},{"name":"MonitorRequestReasonTerminal","features":[312]},{"name":"MonitorRequestReasonTerminalInit","features":[312]},{"name":"MonitorRequestReasonThermalStandby","features":[312]},{"name":"MonitorRequestReasonUnknown","features":[312]},{"name":"MonitorRequestReasonUserDisplayBurst","features":[312]},{"name":"MonitorRequestReasonUserInput","features":[312]},{"name":"MonitorRequestReasonUserInputAccelerometer","features":[312]},{"name":"MonitorRequestReasonUserInputHid","features":[312]},{"name":"MonitorRequestReasonUserInputInitialization","features":[312]},{"name":"MonitorRequestReasonUserInputKeyboard","features":[312]},{"name":"MonitorRequestReasonUserInputMouse","features":[312]},{"name":"MonitorRequestReasonUserInputPen","features":[312]},{"name":"MonitorRequestReasonUserInputPoUserPresent","features":[312]},{"name":"MonitorRequestReasonUserInputSessionSwitch","features":[312]},{"name":"MonitorRequestReasonUserInputTouch","features":[312]},{"name":"MonitorRequestReasonUserInputTouchpad","features":[312]},{"name":"MonitorRequestReasonWinrt","features":[312]},{"name":"MonitorRequestTypeOff","features":[312]},{"name":"MonitorRequestTypeOnAndPresent","features":[312]},{"name":"MonitorRequestTypeToggleOn","features":[312]},{"name":"NotifyUserModeLegacyPowerEvent","features":[312]},{"name":"NotifyUserPowerSetting","features":[312]},{"name":"PASSIVE_COOLING","features":[312]},{"name":"PDCAP_D0_SUPPORTED","features":[312]},{"name":"PDCAP_D1_SUPPORTED","features":[312]},{"name":"PDCAP_D2_SUPPORTED","features":[312]},{"name":"PDCAP_D3_SUPPORTED","features":[312]},{"name":"PDCAP_S0_SUPPORTED","features":[312]},{"name":"PDCAP_S1_SUPPORTED","features":[312]},{"name":"PDCAP_S2_SUPPORTED","features":[312]},{"name":"PDCAP_S3_SUPPORTED","features":[312]},{"name":"PDCAP_S4_SUPPORTED","features":[312]},{"name":"PDCAP_S5_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_D0_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_D1_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_D2_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_D3_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_S0_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_S1_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_S2_SUPPORTED","features":[312]},{"name":"PDCAP_WAKE_FROM_S3_SUPPORTED","features":[312]},{"name":"PDCAP_WARM_EJECT_SUPPORTED","features":[312]},{"name":"PDEVICE_NOTIFY_CALLBACK_ROUTINE","features":[312]},{"name":"POWERBROADCAST_SETTING","features":[312]},{"name":"POWER_ACTION","features":[312]},{"name":"POWER_ACTION_POLICY","features":[312]},{"name":"POWER_ACTION_POLICY_EVENT_CODE","features":[312]},{"name":"POWER_ATTRIBUTE_HIDE","features":[312]},{"name":"POWER_ATTRIBUTE_SHOW_AOAC","features":[312]},{"name":"POWER_COOLING_MODE","features":[312]},{"name":"POWER_DATA_ACCESSOR","features":[312]},{"name":"POWER_FORCE_TRIGGER_RESET","features":[312]},{"name":"POWER_IDLE_RESILIENCY","features":[312]},{"name":"POWER_INFORMATION_LEVEL","features":[312]},{"name":"POWER_LEVEL_USER_NOTIFY_EXEC","features":[312]},{"name":"POWER_LEVEL_USER_NOTIFY_SOUND","features":[312]},{"name":"POWER_LEVEL_USER_NOTIFY_TEXT","features":[312]},{"name":"POWER_MONITOR_INVOCATION","features":[305,312]},{"name":"POWER_MONITOR_REQUEST_REASON","features":[312]},{"name":"POWER_MONITOR_REQUEST_TYPE","features":[312]},{"name":"POWER_PLATFORM_INFORMATION","features":[305,312]},{"name":"POWER_PLATFORM_ROLE","features":[312]},{"name":"POWER_PLATFORM_ROLE_V1","features":[312]},{"name":"POWER_PLATFORM_ROLE_V2","features":[312]},{"name":"POWER_PLATFORM_ROLE_VERSION","features":[312]},{"name":"POWER_POLICY","features":[305,312]},{"name":"POWER_REQUEST_TYPE","features":[312]},{"name":"POWER_SESSION_ALLOW_EXTERNAL_DMA_DEVICES","features":[305,312]},{"name":"POWER_SESSION_CONNECT","features":[305,312]},{"name":"POWER_SESSION_RIT_STATE","features":[305,312]},{"name":"POWER_SESSION_TIMEOUTS","features":[312]},{"name":"POWER_SESSION_WINLOGON","features":[305,312]},{"name":"POWER_SETTING_ALTITUDE","features":[312]},{"name":"POWER_USER_NOTIFY_BUTTON","features":[312]},{"name":"POWER_USER_NOTIFY_SHUTDOWN","features":[312]},{"name":"POWER_USER_PRESENCE","features":[312]},{"name":"POWER_USER_PRESENCE_TYPE","features":[312]},{"name":"PO_TZ_ACTIVE","features":[312]},{"name":"PO_TZ_INVALID_MODE","features":[312]},{"name":"PO_TZ_PASSIVE","features":[312]},{"name":"PPM_FIRMWARE_ACPI1C2","features":[312]},{"name":"PPM_FIRMWARE_ACPI1C3","features":[312]},{"name":"PPM_FIRMWARE_ACPI1TSTATES","features":[312]},{"name":"PPM_FIRMWARE_CPC","features":[312]},{"name":"PPM_FIRMWARE_CSD","features":[312]},{"name":"PPM_FIRMWARE_CST","features":[312]},{"name":"PPM_FIRMWARE_LPI","features":[312]},{"name":"PPM_FIRMWARE_OSC","features":[312]},{"name":"PPM_FIRMWARE_PCCH","features":[312]},{"name":"PPM_FIRMWARE_PCCP","features":[312]},{"name":"PPM_FIRMWARE_PCT","features":[312]},{"name":"PPM_FIRMWARE_PDC","features":[312]},{"name":"PPM_FIRMWARE_PPC","features":[312]},{"name":"PPM_FIRMWARE_PSD","features":[312]},{"name":"PPM_FIRMWARE_PSS","features":[312]},{"name":"PPM_FIRMWARE_PTC","features":[312]},{"name":"PPM_FIRMWARE_TPC","features":[312]},{"name":"PPM_FIRMWARE_TSD","features":[312]},{"name":"PPM_FIRMWARE_TSS","features":[312]},{"name":"PPM_FIRMWARE_XPSS","features":[312]},{"name":"PPM_IDLESTATES_DATA_GUID","features":[312]},{"name":"PPM_IDLESTATE_CHANGE_GUID","features":[312]},{"name":"PPM_IDLESTATE_EVENT","features":[312]},{"name":"PPM_IDLE_ACCOUNTING","features":[312]},{"name":"PPM_IDLE_ACCOUNTING_EX","features":[312]},{"name":"PPM_IDLE_ACCOUNTING_EX_GUID","features":[312]},{"name":"PPM_IDLE_ACCOUNTING_GUID","features":[312]},{"name":"PPM_IDLE_IMPLEMENTATION_CSTATES","features":[312]},{"name":"PPM_IDLE_IMPLEMENTATION_LPISTATES","features":[312]},{"name":"PPM_IDLE_IMPLEMENTATION_MICROPEP","features":[312]},{"name":"PPM_IDLE_IMPLEMENTATION_NONE","features":[312]},{"name":"PPM_IDLE_IMPLEMENTATION_PEP","features":[312]},{"name":"PPM_IDLE_STATE_ACCOUNTING","features":[312]},{"name":"PPM_IDLE_STATE_ACCOUNTING_EX","features":[312]},{"name":"PPM_IDLE_STATE_BUCKET_EX","features":[312]},{"name":"PPM_PERFMON_PERFSTATE_GUID","features":[312]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_CPPC","features":[312]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_NONE","features":[312]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PCCV1","features":[312]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PEP","features":[312]},{"name":"PPM_PERFORMANCE_IMPLEMENTATION_PSTATES","features":[312]},{"name":"PPM_PERFSTATES_DATA_GUID","features":[312]},{"name":"PPM_PERFSTATE_CHANGE_GUID","features":[312]},{"name":"PPM_PERFSTATE_DOMAIN_CHANGE_GUID","features":[312]},{"name":"PPM_PERFSTATE_DOMAIN_EVENT","features":[312]},{"name":"PPM_PERFSTATE_EVENT","features":[312]},{"name":"PPM_THERMALCHANGE_EVENT","features":[312]},{"name":"PPM_THERMALCONSTRAINT_GUID","features":[312]},{"name":"PPM_THERMAL_POLICY_CHANGE_GUID","features":[312]},{"name":"PPM_THERMAL_POLICY_EVENT","features":[312]},{"name":"PPM_WMI_IDLE_STATE","features":[312]},{"name":"PPM_WMI_IDLE_STATES","features":[312]},{"name":"PPM_WMI_IDLE_STATES_EX","features":[312]},{"name":"PPM_WMI_LEGACY_PERFSTATE","features":[312]},{"name":"PPM_WMI_PERF_STATE","features":[312]},{"name":"PPM_WMI_PERF_STATES","features":[312]},{"name":"PPM_WMI_PERF_STATES_EX","features":[312]},{"name":"PROCESSOR_NUMBER_PKEY","features":[303,312]},{"name":"PROCESSOR_OBJECT_INFO","features":[312]},{"name":"PROCESSOR_OBJECT_INFO_EX","features":[312]},{"name":"PROCESSOR_POWER_INFORMATION","features":[312]},{"name":"PROCESSOR_POWER_POLICY","features":[312]},{"name":"PROCESSOR_POWER_POLICY_INFO","features":[312]},{"name":"PWRSCHEMESENUMPROC","features":[305,312]},{"name":"PWRSCHEMESENUMPROC_V1","features":[305,312]},{"name":"PdcInvocation","features":[312]},{"name":"PhysicalPowerButtonPress","features":[312]},{"name":"PlatformIdleStates","features":[312]},{"name":"PlatformIdleVeto","features":[312]},{"name":"PlatformInformation","features":[312]},{"name":"PlatformRole","features":[312]},{"name":"PlatformRoleAppliancePC","features":[312]},{"name":"PlatformRoleDesktop","features":[312]},{"name":"PlatformRoleEnterpriseServer","features":[312]},{"name":"PlatformRoleMaximum","features":[312]},{"name":"PlatformRoleMobile","features":[312]},{"name":"PlatformRolePerformanceServer","features":[312]},{"name":"PlatformRoleSOHOServer","features":[312]},{"name":"PlatformRoleSlate","features":[312]},{"name":"PlatformRoleUnspecified","features":[312]},{"name":"PlatformRoleWorkstation","features":[312]},{"name":"PlmPowerRequestCreate","features":[312]},{"name":"PoAc","features":[312]},{"name":"PoConditionMaximum","features":[312]},{"name":"PoDc","features":[312]},{"name":"PoHot","features":[312]},{"name":"PowerActionDisplayOff","features":[312]},{"name":"PowerActionHibernate","features":[312]},{"name":"PowerActionNone","features":[312]},{"name":"PowerActionReserved","features":[312]},{"name":"PowerActionShutdown","features":[312]},{"name":"PowerActionShutdownOff","features":[312]},{"name":"PowerActionShutdownReset","features":[312]},{"name":"PowerActionSleep","features":[312]},{"name":"PowerActionWarmEject","features":[312]},{"name":"PowerCanRestoreIndividualDefaultPowerScheme","features":[305,312]},{"name":"PowerClearRequest","features":[305,312]},{"name":"PowerCreatePossibleSetting","features":[305,312,366]},{"name":"PowerCreateRequest","features":[305,312,340]},{"name":"PowerCreateSetting","features":[305,312,366]},{"name":"PowerDeleteScheme","features":[305,312,366]},{"name":"PowerDeterminePlatformRole","features":[312]},{"name":"PowerDeterminePlatformRoleEx","features":[312]},{"name":"PowerDeviceD0","features":[312]},{"name":"PowerDeviceD1","features":[312]},{"name":"PowerDeviceD2","features":[312]},{"name":"PowerDeviceD3","features":[312]},{"name":"PowerDeviceMaximum","features":[312]},{"name":"PowerDeviceUnspecified","features":[312]},{"name":"PowerDuplicateScheme","features":[305,312,366]},{"name":"PowerEnumerate","features":[305,312,366]},{"name":"PowerGetActiveScheme","features":[305,312,366]},{"name":"PowerImportPowerScheme","features":[305,312,366]},{"name":"PowerInformationInternal","features":[312]},{"name":"PowerInformationLevelMaximum","features":[312]},{"name":"PowerInformationLevelUnused0","features":[312]},{"name":"PowerIsSettingRangeDefined","features":[305,312]},{"name":"PowerOpenSystemPowerKey","features":[305,312,366]},{"name":"PowerOpenUserPowerKey","features":[305,312,366]},{"name":"PowerReadACDefaultIndex","features":[312,366]},{"name":"PowerReadACValue","features":[305,312,366]},{"name":"PowerReadACValueIndex","features":[305,312,366]},{"name":"PowerReadDCDefaultIndex","features":[312,366]},{"name":"PowerReadDCValue","features":[305,312,366]},{"name":"PowerReadDCValueIndex","features":[312,366]},{"name":"PowerReadDescription","features":[305,312,366]},{"name":"PowerReadFriendlyName","features":[305,312,366]},{"name":"PowerReadIconResourceSpecifier","features":[305,312,366]},{"name":"PowerReadPossibleDescription","features":[305,312,366]},{"name":"PowerReadPossibleFriendlyName","features":[305,312,366]},{"name":"PowerReadPossibleValue","features":[305,312,366]},{"name":"PowerReadSettingAttributes","features":[312]},{"name":"PowerReadValueIncrement","features":[305,312,366]},{"name":"PowerReadValueMax","features":[305,312,366]},{"name":"PowerReadValueMin","features":[305,312,366]},{"name":"PowerReadValueUnitsSpecifier","features":[305,312,366]},{"name":"PowerRegisterForEffectivePowerModeNotifications","features":[312]},{"name":"PowerRegisterSuspendResumeNotification","features":[305,312,367]},{"name":"PowerRemovePowerSetting","features":[305,312]},{"name":"PowerReplaceDefaultPowerSchemes","features":[312]},{"name":"PowerReportThermalEvent","features":[305,312]},{"name":"PowerRequestAction","features":[312]},{"name":"PowerRequestActionInternal","features":[312]},{"name":"PowerRequestAwayModeRequired","features":[312]},{"name":"PowerRequestCreate","features":[312]},{"name":"PowerRequestDisplayRequired","features":[312]},{"name":"PowerRequestExecutionRequired","features":[312]},{"name":"PowerRequestSystemRequired","features":[312]},{"name":"PowerRestoreDefaultPowerSchemes","features":[305,312]},{"name":"PowerRestoreIndividualDefaultPowerScheme","features":[305,312]},{"name":"PowerSetActiveScheme","features":[305,312,366]},{"name":"PowerSetRequest","features":[305,312]},{"name":"PowerSettingAccessCheck","features":[305,312]},{"name":"PowerSettingAccessCheckEx","features":[305,312,366]},{"name":"PowerSettingNotificationName","features":[312]},{"name":"PowerSettingRegisterNotification","features":[305,312,367]},{"name":"PowerSettingUnregisterNotification","features":[305,312]},{"name":"PowerShutdownNotification","features":[312]},{"name":"PowerSystemHibernate","features":[312]},{"name":"PowerSystemMaximum","features":[312]},{"name":"PowerSystemShutdown","features":[312]},{"name":"PowerSystemSleeping1","features":[312]},{"name":"PowerSystemSleeping2","features":[312]},{"name":"PowerSystemSleeping3","features":[312]},{"name":"PowerSystemUnspecified","features":[312]},{"name":"PowerSystemWorking","features":[312]},{"name":"PowerUnregisterFromEffectivePowerModeNotifications","features":[312]},{"name":"PowerUnregisterSuspendResumeNotification","features":[305,312]},{"name":"PowerUserInactive","features":[312]},{"name":"PowerUserInvalid","features":[312]},{"name":"PowerUserMaximum","features":[312]},{"name":"PowerUserNotPresent","features":[312]},{"name":"PowerUserPresent","features":[312]},{"name":"PowerWriteACDefaultIndex","features":[312,366]},{"name":"PowerWriteACValueIndex","features":[305,312,366]},{"name":"PowerWriteDCDefaultIndex","features":[312,366]},{"name":"PowerWriteDCValueIndex","features":[312,366]},{"name":"PowerWriteDescription","features":[305,312,366]},{"name":"PowerWriteFriendlyName","features":[305,312,366]},{"name":"PowerWriteIconResourceSpecifier","features":[305,312,366]},{"name":"PowerWritePossibleDescription","features":[305,312,366]},{"name":"PowerWritePossibleFriendlyName","features":[305,312,366]},{"name":"PowerWritePossibleValue","features":[305,312,366]},{"name":"PowerWriteSettingAttributes","features":[305,312]},{"name":"PowerWriteValueIncrement","features":[305,312,366]},{"name":"PowerWriteValueMax","features":[305,312,366]},{"name":"PowerWriteValueMin","features":[305,312,366]},{"name":"PowerWriteValueUnitsSpecifier","features":[305,312,366]},{"name":"ProcessorCap","features":[312]},{"name":"ProcessorIdleDomains","features":[312]},{"name":"ProcessorIdleStates","features":[312]},{"name":"ProcessorIdleStatesHv","features":[312]},{"name":"ProcessorIdleVeto","features":[312]},{"name":"ProcessorInformation","features":[312]},{"name":"ProcessorInformationEx","features":[312]},{"name":"ProcessorLoad","features":[312]},{"name":"ProcessorPerfCapHv","features":[312]},{"name":"ProcessorPerfStates","features":[312]},{"name":"ProcessorPerfStatesHv","features":[312]},{"name":"ProcessorPowerPolicyAc","features":[312]},{"name":"ProcessorPowerPolicyCurrent","features":[312]},{"name":"ProcessorPowerPolicyDc","features":[312]},{"name":"ProcessorSetIdle","features":[312]},{"name":"ProcessorStateHandler","features":[312]},{"name":"ProcessorStateHandler2","features":[312]},{"name":"QueryPotentialDripsConstraint","features":[312]},{"name":"RESUME_PERFORMANCE","features":[312]},{"name":"ReadGlobalPwrPolicy","features":[305,312]},{"name":"ReadProcessorPwrScheme","features":[305,312]},{"name":"ReadPwrScheme","features":[305,312]},{"name":"RegisterPowerSettingNotification","features":[305,312,367]},{"name":"RegisterSpmPowerSettings","features":[312]},{"name":"RegisterSuspendResumeNotification","features":[305,312,367]},{"name":"RequestWakeupLatency","features":[305,312]},{"name":"SET_POWER_SETTING_VALUE","features":[312]},{"name":"SYSTEM_BATTERY_STATE","features":[305,312]},{"name":"SYSTEM_POWER_CAPABILITIES","features":[305,312]},{"name":"SYSTEM_POWER_CONDITION","features":[312]},{"name":"SYSTEM_POWER_INFORMATION","features":[312]},{"name":"SYSTEM_POWER_LEVEL","features":[305,312]},{"name":"SYSTEM_POWER_POLICY","features":[305,312]},{"name":"SYSTEM_POWER_STATE","features":[312]},{"name":"SYSTEM_POWER_STATUS","features":[312]},{"name":"SYS_BUTTON_LID","features":[312]},{"name":"SYS_BUTTON_LID_CHANGED","features":[312]},{"name":"SYS_BUTTON_LID_CLOSED","features":[312]},{"name":"SYS_BUTTON_LID_INITIAL","features":[312]},{"name":"SYS_BUTTON_LID_OPEN","features":[312]},{"name":"SYS_BUTTON_LID_STATE_MASK","features":[312]},{"name":"SYS_BUTTON_POWER","features":[312]},{"name":"SYS_BUTTON_SLEEP","features":[312]},{"name":"SYS_BUTTON_WAKE","features":[312]},{"name":"ScreenOff","features":[312]},{"name":"SendSuspendResumeNotification","features":[312]},{"name":"SessionAllowExternalDmaDevices","features":[312]},{"name":"SessionConnectNotification","features":[312]},{"name":"SessionDisplayState","features":[312]},{"name":"SessionLockState","features":[312]},{"name":"SessionPowerCleanup","features":[312]},{"name":"SessionPowerInit","features":[312]},{"name":"SessionRITState","features":[312]},{"name":"SetActivePwrScheme","features":[305,312]},{"name":"SetPowerSettingValue","features":[312]},{"name":"SetShutdownSelectedTime","features":[312]},{"name":"SetSuspendState","features":[305,312]},{"name":"SetSystemPowerState","features":[305,312]},{"name":"SetThreadExecutionState","features":[312]},{"name":"SuspendResumeInvocation","features":[312]},{"name":"SystemBatteryState","features":[312]},{"name":"SystemBatteryStatePrecise","features":[312]},{"name":"SystemExecutionState","features":[312]},{"name":"SystemHiberFileInformation","features":[312]},{"name":"SystemHiberFileSize","features":[312]},{"name":"SystemHiberFileType","features":[312]},{"name":"SystemHiberbootState","features":[312]},{"name":"SystemMonitorHiberBootPowerOff","features":[312]},{"name":"SystemPowerCapabilities","features":[312]},{"name":"SystemPowerInformation","features":[312]},{"name":"SystemPowerLoggingEntry","features":[312]},{"name":"SystemPowerPolicyAc","features":[312]},{"name":"SystemPowerPolicyCurrent","features":[312]},{"name":"SystemPowerPolicyDc","features":[312]},{"name":"SystemPowerStateHandler","features":[312]},{"name":"SystemPowerStateLogging","features":[312]},{"name":"SystemPowerStateNotifyHandler","features":[312]},{"name":"SystemReserveHiberFile","features":[312]},{"name":"SystemVideoState","features":[312]},{"name":"SystemWakeSource","features":[312]},{"name":"THERMAL_COOLING_INTERFACE_VERSION","features":[312]},{"name":"THERMAL_DEVICE_INTERFACE_VERSION","features":[312]},{"name":"THERMAL_EVENT","features":[312]},{"name":"THERMAL_EVENT_VERSION","features":[312]},{"name":"THERMAL_INFORMATION","features":[312]},{"name":"THERMAL_POLICY","features":[305,312]},{"name":"THERMAL_POLICY_VERSION_1","features":[312]},{"name":"THERMAL_POLICY_VERSION_2","features":[312]},{"name":"THERMAL_WAIT_READ","features":[312]},{"name":"TZ_ACTIVATION_REASON_CURRENT","features":[312]},{"name":"TZ_ACTIVATION_REASON_THERMAL","features":[312]},{"name":"ThermalEvent","features":[312]},{"name":"ThermalStandby","features":[312]},{"name":"TraceApplicationPowerMessage","features":[312]},{"name":"TraceApplicationPowerMessageEnd","features":[312]},{"name":"TraceServicePowerMessage","features":[312]},{"name":"UNKNOWN_CAPACITY","features":[312]},{"name":"UNKNOWN_CURRENT","features":[312]},{"name":"UNKNOWN_RATE","features":[312]},{"name":"UNKNOWN_VOLTAGE","features":[312]},{"name":"USB_CHARGER_PORT","features":[312]},{"name":"USER_ACTIVITY_PRESENCE","features":[312]},{"name":"USER_POWER_POLICY","features":[305,312]},{"name":"UnregisterPowerSettingNotification","features":[305,312]},{"name":"UnregisterSuspendResumeNotification","features":[305,312]},{"name":"UpdateBlackBoxRecorder","features":[312]},{"name":"UsbChargerPort_Legacy","features":[312]},{"name":"UsbChargerPort_Max","features":[312]},{"name":"UsbChargerPort_TypeC","features":[312]},{"name":"UserNotPresent","features":[312]},{"name":"UserPresence","features":[312]},{"name":"UserPresent","features":[312]},{"name":"UserUnknown","features":[312]},{"name":"ValidatePowerPolicies","features":[305,312]},{"name":"VerifyProcessorPowerPolicyAc","features":[312]},{"name":"VerifyProcessorPowerPolicyDc","features":[312]},{"name":"VerifySystemPolicyAc","features":[312]},{"name":"VerifySystemPolicyDc","features":[312]},{"name":"WAKE_ALARM_INFORMATION","features":[312]},{"name":"WakeTimerList","features":[312]},{"name":"WriteGlobalPwrPolicy","features":[305,312]},{"name":"WriteProcessorPwrScheme","features":[305,312]},{"name":"WritePwrScheme","features":[305,312]}],"594":[{"name":"ENUM_PAGE_FILE_INFORMATION","features":[575]},{"name":"ENUM_PROCESS_MODULES_EX_FLAGS","features":[575]},{"name":"EmptyWorkingSet","features":[305,575]},{"name":"EnumDeviceDrivers","features":[305,575]},{"name":"EnumPageFilesA","features":[305,575]},{"name":"EnumPageFilesW","features":[305,575]},{"name":"EnumProcessModules","features":[305,575]},{"name":"EnumProcessModulesEx","features":[305,575]},{"name":"EnumProcesses","features":[305,575]},{"name":"GetDeviceDriverBaseNameA","features":[575]},{"name":"GetDeviceDriverBaseNameW","features":[575]},{"name":"GetDeviceDriverFileNameA","features":[575]},{"name":"GetDeviceDriverFileNameW","features":[575]},{"name":"GetMappedFileNameA","features":[305,575]},{"name":"GetMappedFileNameW","features":[305,575]},{"name":"GetModuleBaseNameA","features":[305,575]},{"name":"GetModuleBaseNameW","features":[305,575]},{"name":"GetModuleFileNameExA","features":[305,575]},{"name":"GetModuleFileNameExW","features":[305,575]},{"name":"GetModuleInformation","features":[305,575]},{"name":"GetPerformanceInfo","features":[305,575]},{"name":"GetProcessImageFileNameA","features":[305,575]},{"name":"GetProcessImageFileNameW","features":[305,575]},{"name":"GetProcessMemoryInfo","features":[305,575]},{"name":"GetWsChanges","features":[305,575]},{"name":"GetWsChangesEx","features":[305,575]},{"name":"InitializeProcessForWsWatch","features":[305,575]},{"name":"K32EmptyWorkingSet","features":[305,575]},{"name":"K32EnumDeviceDrivers","features":[305,575]},{"name":"K32EnumPageFilesA","features":[305,575]},{"name":"K32EnumPageFilesW","features":[305,575]},{"name":"K32EnumProcessModules","features":[305,575]},{"name":"K32EnumProcessModulesEx","features":[305,575]},{"name":"K32EnumProcesses","features":[305,575]},{"name":"K32GetDeviceDriverBaseNameA","features":[575]},{"name":"K32GetDeviceDriverBaseNameW","features":[575]},{"name":"K32GetDeviceDriverFileNameA","features":[575]},{"name":"K32GetDeviceDriverFileNameW","features":[575]},{"name":"K32GetMappedFileNameA","features":[305,575]},{"name":"K32GetMappedFileNameW","features":[305,575]},{"name":"K32GetModuleBaseNameA","features":[305,575]},{"name":"K32GetModuleBaseNameW","features":[305,575]},{"name":"K32GetModuleFileNameExA","features":[305,575]},{"name":"K32GetModuleFileNameExW","features":[305,575]},{"name":"K32GetModuleInformation","features":[305,575]},{"name":"K32GetPerformanceInfo","features":[305,575]},{"name":"K32GetProcessImageFileNameA","features":[305,575]},{"name":"K32GetProcessImageFileNameW","features":[305,575]},{"name":"K32GetProcessMemoryInfo","features":[305,575]},{"name":"K32GetWsChanges","features":[305,575]},{"name":"K32GetWsChangesEx","features":[305,575]},{"name":"K32InitializeProcessForWsWatch","features":[305,575]},{"name":"K32QueryWorkingSet","features":[305,575]},{"name":"K32QueryWorkingSetEx","features":[305,575]},{"name":"LIST_MODULES_32BIT","features":[575]},{"name":"LIST_MODULES_64BIT","features":[575]},{"name":"LIST_MODULES_ALL","features":[575]},{"name":"LIST_MODULES_DEFAULT","features":[575]},{"name":"MODULEINFO","features":[575]},{"name":"PENUM_PAGE_FILE_CALLBACKA","features":[305,575]},{"name":"PENUM_PAGE_FILE_CALLBACKW","features":[305,575]},{"name":"PERFORMANCE_INFORMATION","features":[575]},{"name":"PROCESS_MEMORY_COUNTERS","features":[575]},{"name":"PROCESS_MEMORY_COUNTERS_EX","features":[575]},{"name":"PROCESS_MEMORY_COUNTERS_EX2","features":[575]},{"name":"PSAPI_VERSION","features":[575]},{"name":"PSAPI_WORKING_SET_BLOCK","features":[575]},{"name":"PSAPI_WORKING_SET_EX_BLOCK","features":[575]},{"name":"PSAPI_WORKING_SET_EX_INFORMATION","features":[575]},{"name":"PSAPI_WORKING_SET_INFORMATION","features":[575]},{"name":"PSAPI_WS_WATCH_INFORMATION","features":[575]},{"name":"PSAPI_WS_WATCH_INFORMATION_EX","features":[575]},{"name":"QueryWorkingSet","features":[305,575]},{"name":"QueryWorkingSetEx","features":[305,575]}],"595":[{"name":"FACILITY_PINT_STATUS_CODE","features":[576]},{"name":"FACILITY_RTC_INTERFACE","features":[576]},{"name":"FACILITY_SIP_STATUS_CODE","features":[576]},{"name":"INetworkTransportSettings","features":[576]},{"name":"INotificationTransportSync","features":[576]},{"name":"IRTCBuddy","features":[576]},{"name":"IRTCBuddy2","features":[576]},{"name":"IRTCBuddyEvent","features":[356,576]},{"name":"IRTCBuddyEvent2","features":[356,576]},{"name":"IRTCBuddyGroup","features":[576]},{"name":"IRTCBuddyGroupEvent","features":[356,576]},{"name":"IRTCClient","features":[576]},{"name":"IRTCClient2","features":[576]},{"name":"IRTCClientEvent","features":[356,576]},{"name":"IRTCClientPortManagement","features":[576]},{"name":"IRTCClientPresence","features":[576]},{"name":"IRTCClientPresence2","features":[576]},{"name":"IRTCClientProvisioning","features":[576]},{"name":"IRTCClientProvisioning2","features":[576]},{"name":"IRTCCollection","features":[356,576]},{"name":"IRTCDispatchEventNotification","features":[356,576]},{"name":"IRTCEnumBuddies","features":[576]},{"name":"IRTCEnumGroups","features":[576]},{"name":"IRTCEnumParticipants","features":[576]},{"name":"IRTCEnumPresenceDevices","features":[576]},{"name":"IRTCEnumProfiles","features":[576]},{"name":"IRTCEnumUserSearchResults","features":[576]},{"name":"IRTCEnumWatchers","features":[576]},{"name":"IRTCEventNotification","features":[576]},{"name":"IRTCInfoEvent","features":[356,576]},{"name":"IRTCIntensityEvent","features":[356,576]},{"name":"IRTCMediaEvent","features":[356,576]},{"name":"IRTCMediaRequestEvent","features":[356,576]},{"name":"IRTCMessagingEvent","features":[356,576]},{"name":"IRTCParticipant","features":[576]},{"name":"IRTCParticipantStateChangeEvent","features":[356,576]},{"name":"IRTCPortManager","features":[576]},{"name":"IRTCPresenceContact","features":[576]},{"name":"IRTCPresenceDataEvent","features":[356,576]},{"name":"IRTCPresenceDevice","features":[576]},{"name":"IRTCPresencePropertyEvent","features":[356,576]},{"name":"IRTCPresenceStatusEvent","features":[356,576]},{"name":"IRTCProfile","features":[576]},{"name":"IRTCProfile2","features":[576]},{"name":"IRTCProfileEvent","features":[356,576]},{"name":"IRTCProfileEvent2","features":[356,576]},{"name":"IRTCReInviteEvent","features":[356,576]},{"name":"IRTCRegistrationStateChangeEvent","features":[356,576]},{"name":"IRTCRoamingEvent","features":[356,576]},{"name":"IRTCSession","features":[576]},{"name":"IRTCSession2","features":[576]},{"name":"IRTCSessionCallControl","features":[576]},{"name":"IRTCSessionDescriptionManager","features":[576]},{"name":"IRTCSessionOperationCompleteEvent","features":[356,576]},{"name":"IRTCSessionOperationCompleteEvent2","features":[356,576]},{"name":"IRTCSessionPortManagement","features":[576]},{"name":"IRTCSessionReferStatusEvent","features":[356,576]},{"name":"IRTCSessionReferredEvent","features":[356,576]},{"name":"IRTCSessionStateChangeEvent","features":[356,576]},{"name":"IRTCSessionStateChangeEvent2","features":[356,576]},{"name":"IRTCUserSearch","features":[576]},{"name":"IRTCUserSearchQuery","features":[576]},{"name":"IRTCUserSearchResult","features":[576]},{"name":"IRTCUserSearchResultsEvent","features":[356,576]},{"name":"IRTCWatcher","features":[576]},{"name":"IRTCWatcher2","features":[576]},{"name":"IRTCWatcherEvent","features":[356,576]},{"name":"IRTCWatcherEvent2","features":[356,576]},{"name":"ITransportSettingsInternal","features":[576]},{"name":"RTCAD_MICROPHONE","features":[576]},{"name":"RTCAD_SPEAKER","features":[576]},{"name":"RTCAM_AUTOMATICALLY_ACCEPT","features":[576]},{"name":"RTCAM_AUTOMATICALLY_REJECT","features":[576]},{"name":"RTCAM_NOT_SUPPORTED","features":[576]},{"name":"RTCAM_OFFER_SESSION_EVENT","features":[576]},{"name":"RTCAS_SCOPE_ALL","features":[576]},{"name":"RTCAS_SCOPE_DOMAIN","features":[576]},{"name":"RTCAS_SCOPE_USER","features":[576]},{"name":"RTCAU_BASIC","features":[576]},{"name":"RTCAU_DIGEST","features":[576]},{"name":"RTCAU_KERBEROS","features":[576]},{"name":"RTCAU_NTLM","features":[576]},{"name":"RTCAU_USE_LOGON_CRED","features":[576]},{"name":"RTCBET_BUDDY_ADD","features":[576]},{"name":"RTCBET_BUDDY_REMOVE","features":[576]},{"name":"RTCBET_BUDDY_ROAMED","features":[576]},{"name":"RTCBET_BUDDY_STATE_CHANGE","features":[576]},{"name":"RTCBET_BUDDY_SUBSCRIBED","features":[576]},{"name":"RTCBET_BUDDY_UPDATE","features":[576]},{"name":"RTCBT_ALWAYS_OFFLINE","features":[576]},{"name":"RTCBT_ALWAYS_ONLINE","features":[576]},{"name":"RTCBT_POLL","features":[576]},{"name":"RTCBT_SUBSCRIBED","features":[576]},{"name":"RTCCET_ASYNC_CLEANUP_DONE","features":[576]},{"name":"RTCCET_DEVICE_CHANGE","features":[576]},{"name":"RTCCET_NETWORK_QUALITY_CHANGE","features":[576]},{"name":"RTCCET_VOLUME_CHANGE","features":[576]},{"name":"RTCCS_FAIL_ON_REDIRECT","features":[576]},{"name":"RTCCS_FORCE_PROFILE","features":[576]},{"name":"RTCClient","features":[576]},{"name":"RTCEF_ALL","features":[576]},{"name":"RTCEF_BUDDY","features":[576]},{"name":"RTCEF_BUDDY2","features":[576]},{"name":"RTCEF_CLIENT","features":[576]},{"name":"RTCEF_GROUP","features":[576]},{"name":"RTCEF_INFO","features":[576]},{"name":"RTCEF_INTENSITY","features":[576]},{"name":"RTCEF_MEDIA","features":[576]},{"name":"RTCEF_MEDIA_REQUEST","features":[576]},{"name":"RTCEF_MESSAGING","features":[576]},{"name":"RTCEF_PARTICIPANT_STATE_CHANGE","features":[576]},{"name":"RTCEF_PRESENCE_DATA","features":[576]},{"name":"RTCEF_PRESENCE_PROPERTY","features":[576]},{"name":"RTCEF_PRESENCE_STATUS","features":[576]},{"name":"RTCEF_PROFILE","features":[576]},{"name":"RTCEF_REGISTRATION_STATE_CHANGE","features":[576]},{"name":"RTCEF_REINVITE","features":[576]},{"name":"RTCEF_ROAMING","features":[576]},{"name":"RTCEF_SESSION_OPERATION_COMPLETE","features":[576]},{"name":"RTCEF_SESSION_REFERRED","features":[576]},{"name":"RTCEF_SESSION_REFER_STATUS","features":[576]},{"name":"RTCEF_SESSION_STATE_CHANGE","features":[576]},{"name":"RTCEF_USERSEARCH","features":[576]},{"name":"RTCEF_WATCHER","features":[576]},{"name":"RTCEF_WATCHER2","features":[576]},{"name":"RTCE_BUDDY","features":[576]},{"name":"RTCE_CLIENT","features":[576]},{"name":"RTCE_GROUP","features":[576]},{"name":"RTCE_INFO","features":[576]},{"name":"RTCE_INTENSITY","features":[576]},{"name":"RTCE_MEDIA","features":[576]},{"name":"RTCE_MEDIA_REQUEST","features":[576]},{"name":"RTCE_MESSAGING","features":[576]},{"name":"RTCE_PARTICIPANT_STATE_CHANGE","features":[576]},{"name":"RTCE_PRESENCE_DATA","features":[576]},{"name":"RTCE_PRESENCE_PROPERTY","features":[576]},{"name":"RTCE_PRESENCE_STATUS","features":[576]},{"name":"RTCE_PROFILE","features":[576]},{"name":"RTCE_REGISTRATION_STATE_CHANGE","features":[576]},{"name":"RTCE_REINVITE","features":[576]},{"name":"RTCE_ROAMING","features":[576]},{"name":"RTCE_SESSION_OPERATION_COMPLETE","features":[576]},{"name":"RTCE_SESSION_REFERRED","features":[576]},{"name":"RTCE_SESSION_REFER_STATUS","features":[576]},{"name":"RTCE_SESSION_STATE_CHANGE","features":[576]},{"name":"RTCE_USERSEARCH","features":[576]},{"name":"RTCE_WATCHER","features":[576]},{"name":"RTCGET_GROUP_ADD","features":[576]},{"name":"RTCGET_GROUP_BUDDY_ADD","features":[576]},{"name":"RTCGET_GROUP_BUDDY_REMOVE","features":[576]},{"name":"RTCGET_GROUP_REMOVE","features":[576]},{"name":"RTCGET_GROUP_ROAMED","features":[576]},{"name":"RTCGET_GROUP_UPDATE","features":[576]},{"name":"RTCIF_DISABLE_MEDIA","features":[576]},{"name":"RTCIF_DISABLE_STRICT_DNS","features":[576]},{"name":"RTCIF_DISABLE_UPNP","features":[576]},{"name":"RTCIF_ENABLE_SERVER_CLASS","features":[576]},{"name":"RTCLM_BOTH","features":[576]},{"name":"RTCLM_DYNAMIC","features":[576]},{"name":"RTCLM_NONE","features":[576]},{"name":"RTCMER_BAD_DEVICE","features":[576]},{"name":"RTCMER_HOLD","features":[576]},{"name":"RTCMER_NORMAL","features":[576]},{"name":"RTCMER_NO_PORT","features":[576]},{"name":"RTCMER_PORT_MAPPING_FAILED","features":[576]},{"name":"RTCMER_REMOTE_REQUEST","features":[576]},{"name":"RTCMER_TIMEOUT","features":[576]},{"name":"RTCMET_FAILED","features":[576]},{"name":"RTCMET_STARTED","features":[576]},{"name":"RTCMET_STOPPED","features":[576]},{"name":"RTCMSET_MESSAGE","features":[576]},{"name":"RTCMSET_STATUS","features":[576]},{"name":"RTCMT_AUDIO_RECEIVE","features":[576]},{"name":"RTCMT_AUDIO_SEND","features":[576]},{"name":"RTCMT_T120_SENDRECV","features":[576]},{"name":"RTCMT_VIDEO_RECEIVE","features":[576]},{"name":"RTCMT_VIDEO_SEND","features":[576]},{"name":"RTCMUS_IDLE","features":[576]},{"name":"RTCMUS_TYPING","features":[576]},{"name":"RTCOWM_AUTOMATICALLY_ADD_WATCHER","features":[576]},{"name":"RTCOWM_OFFER_WATCHER_EVENT","features":[576]},{"name":"RTCPFET_PROFILE_GET","features":[576]},{"name":"RTCPFET_PROFILE_UPDATE","features":[576]},{"name":"RTCPM_ALLOW_LIST_ONLY","features":[576]},{"name":"RTCPM_BLOCK_LIST_EXCLUDED","features":[576]},{"name":"RTCPP_DEVICE_NAME","features":[576]},{"name":"RTCPP_DISPLAYNAME","features":[576]},{"name":"RTCPP_EMAIL","features":[576]},{"name":"RTCPP_MULTIPLE","features":[576]},{"name":"RTCPP_PHONENUMBER","features":[576]},{"name":"RTCPS_ALERTING","features":[576]},{"name":"RTCPS_ANSWERING","features":[576]},{"name":"RTCPS_CONNECTED","features":[576]},{"name":"RTCPS_DISCONNECTED","features":[576]},{"name":"RTCPS_DISCONNECTING","features":[576]},{"name":"RTCPS_IDLE","features":[576]},{"name":"RTCPS_INCOMING","features":[576]},{"name":"RTCPS_INPROGRESS","features":[576]},{"name":"RTCPS_PENDING","features":[576]},{"name":"RTCPT_AUDIO_RTCP","features":[576]},{"name":"RTCPT_AUDIO_RTP","features":[576]},{"name":"RTCPT_SIP","features":[576]},{"name":"RTCPT_VIDEO_RTCP","features":[576]},{"name":"RTCPT_VIDEO_RTP","features":[576]},{"name":"RTCPU_URIDISPLAYDURINGCALL","features":[576]},{"name":"RTCPU_URIDISPLAYDURINGIDLE","features":[576]},{"name":"RTCPU_URIHELPDESK","features":[576]},{"name":"RTCPU_URIHOMEPAGE","features":[576]},{"name":"RTCPU_URIPERSONALACCOUNT","features":[576]},{"name":"RTCRET_BUDDY_ROAMING","features":[576]},{"name":"RTCRET_PRESENCE_ROAMING","features":[576]},{"name":"RTCRET_PROFILE_ROAMING","features":[576]},{"name":"RTCRET_WATCHER_ROAMING","features":[576]},{"name":"RTCRET_WPENDING_ROAMING","features":[576]},{"name":"RTCRF_REGISTER_ALL","features":[576]},{"name":"RTCRF_REGISTER_INVITE_SESSIONS","features":[576]},{"name":"RTCRF_REGISTER_MESSAGE_SESSIONS","features":[576]},{"name":"RTCRF_REGISTER_NOTIFY","features":[576]},{"name":"RTCRF_REGISTER_PRESENCE","features":[576]},{"name":"RTCRIN_FAIL","features":[576]},{"name":"RTCRIN_INCOMING","features":[576]},{"name":"RTCRIN_SUCCEEDED","features":[576]},{"name":"RTCRMF_ALL_ROAMING","features":[576]},{"name":"RTCRMF_BUDDY_ROAMING","features":[576]},{"name":"RTCRMF_PRESENCE_ROAMING","features":[576]},{"name":"RTCRMF_PROFILE_ROAMING","features":[576]},{"name":"RTCRMF_WATCHER_ROAMING","features":[576]},{"name":"RTCRS_ERROR","features":[576]},{"name":"RTCRS_LOCAL_PA_LOGGED_OFF","features":[576]},{"name":"RTCRS_LOGGED_OFF","features":[576]},{"name":"RTCRS_NOT_REGISTERED","features":[576]},{"name":"RTCRS_REGISTERED","features":[576]},{"name":"RTCRS_REGISTERING","features":[576]},{"name":"RTCRS_REJECTED","features":[576]},{"name":"RTCRS_REMOTE_PA_LOGGED_OFF","features":[576]},{"name":"RTCRS_UNREGISTERING","features":[576]},{"name":"RTCRT_MESSAGE","features":[576]},{"name":"RTCRT_PHONE","features":[576]},{"name":"RTCRT_RINGBACK","features":[576]},{"name":"RTCSECL_REQUIRED","features":[576]},{"name":"RTCSECL_SUPPORTED","features":[576]},{"name":"RTCSECL_UNSUPPORTED","features":[576]},{"name":"RTCSECT_AUDIO_VIDEO_MEDIA_ENCRYPTION","features":[576]},{"name":"RTCSECT_T120_MEDIA_ENCRYPTION","features":[576]},{"name":"RTCSI_APPLICATION","features":[576]},{"name":"RTCSI_IM","features":[576]},{"name":"RTCSI_MULTIPARTY_IM","features":[576]},{"name":"RTCSI_PC_TO_PC","features":[576]},{"name":"RTCSI_PC_TO_PHONE","features":[576]},{"name":"RTCSI_PHONE_TO_PHONE","features":[576]},{"name":"RTCSRS_ACCEPTED","features":[576]},{"name":"RTCSRS_DONE","features":[576]},{"name":"RTCSRS_DROPPED","features":[576]},{"name":"RTCSRS_ERROR","features":[576]},{"name":"RTCSRS_REFERRING","features":[576]},{"name":"RTCSRS_REJECTED","features":[576]},{"name":"RTCSS_ANSWERING","features":[576]},{"name":"RTCSS_CONNECTED","features":[576]},{"name":"RTCSS_DISCONNECTED","features":[576]},{"name":"RTCSS_HOLD","features":[576]},{"name":"RTCSS_IDLE","features":[576]},{"name":"RTCSS_INCOMING","features":[576]},{"name":"RTCSS_INPROGRESS","features":[576]},{"name":"RTCSS_REFER","features":[576]},{"name":"RTCST_APPLICATION","features":[576]},{"name":"RTCST_IM","features":[576]},{"name":"RTCST_MULTIPARTY_IM","features":[576]},{"name":"RTCST_PC_TO_PC","features":[576]},{"name":"RTCST_PC_TO_PHONE","features":[576]},{"name":"RTCST_PHONE_TO_PHONE","features":[576]},{"name":"RTCTA_APPSHARING","features":[576]},{"name":"RTCTA_WHITEBOARD","features":[576]},{"name":"RTCTR_BUSY","features":[576]},{"name":"RTCTR_DND","features":[576]},{"name":"RTCTR_INSUFFICIENT_SECURITY_LEVEL","features":[576]},{"name":"RTCTR_NORMAL","features":[576]},{"name":"RTCTR_NOT_SUPPORTED","features":[576]},{"name":"RTCTR_REJECT","features":[576]},{"name":"RTCTR_SHUTDOWN","features":[576]},{"name":"RTCTR_TCP","features":[576]},{"name":"RTCTR_TIMEOUT","features":[576]},{"name":"RTCTR_TLS","features":[576]},{"name":"RTCTR_UDP","features":[576]},{"name":"RTCUSC_CITY","features":[576]},{"name":"RTCUSC_COMPANY","features":[576]},{"name":"RTCUSC_COUNTRY","features":[576]},{"name":"RTCUSC_DISPLAYNAME","features":[576]},{"name":"RTCUSC_EMAIL","features":[576]},{"name":"RTCUSC_OFFICE","features":[576]},{"name":"RTCUSC_PHONE","features":[576]},{"name":"RTCUSC_STATE","features":[576]},{"name":"RTCUSC_TITLE","features":[576]},{"name":"RTCUSC_URI","features":[576]},{"name":"RTCUSP_MAX_MATCHES","features":[576]},{"name":"RTCUSP_TIME_LIMIT","features":[576]},{"name":"RTCVD_PREVIEW","features":[576]},{"name":"RTCVD_RECEIVE","features":[576]},{"name":"RTCWET_WATCHER_ADD","features":[576]},{"name":"RTCWET_WATCHER_OFFERING","features":[576]},{"name":"RTCWET_WATCHER_REMOVE","features":[576]},{"name":"RTCWET_WATCHER_ROAMED","features":[576]},{"name":"RTCWET_WATCHER_UPDATE","features":[576]},{"name":"RTCWMM_BEST_ACE_MATCH","features":[576]},{"name":"RTCWMM_EXACT_MATCH","features":[576]},{"name":"RTCWS_ALLOWED","features":[576]},{"name":"RTCWS_BLOCKED","features":[576]},{"name":"RTCWS_DENIED","features":[576]},{"name":"RTCWS_OFFERING","features":[576]},{"name":"RTCWS_PROMPT","features":[576]},{"name":"RTCWS_UNKNOWN","features":[576]},{"name":"RTCXS_PRESENCE_AWAY","features":[576]},{"name":"RTCXS_PRESENCE_BE_RIGHT_BACK","features":[576]},{"name":"RTCXS_PRESENCE_BUSY","features":[576]},{"name":"RTCXS_PRESENCE_IDLE","features":[576]},{"name":"RTCXS_PRESENCE_OFFLINE","features":[576]},{"name":"RTCXS_PRESENCE_ONLINE","features":[576]},{"name":"RTCXS_PRESENCE_ON_THE_PHONE","features":[576]},{"name":"RTCXS_PRESENCE_OUT_TO_LUNCH","features":[576]},{"name":"RTC_ACE_SCOPE","features":[576]},{"name":"RTC_ANSWER_MODE","features":[576]},{"name":"RTC_AUDIO_DEVICE","features":[576]},{"name":"RTC_BUDDY_EVENT_TYPE","features":[576]},{"name":"RTC_BUDDY_SUBSCRIPTION_TYPE","features":[576]},{"name":"RTC_CLIENT_EVENT_TYPE","features":[576]},{"name":"RTC_DTMF","features":[576]},{"name":"RTC_DTMF_0","features":[576]},{"name":"RTC_DTMF_1","features":[576]},{"name":"RTC_DTMF_2","features":[576]},{"name":"RTC_DTMF_3","features":[576]},{"name":"RTC_DTMF_4","features":[576]},{"name":"RTC_DTMF_5","features":[576]},{"name":"RTC_DTMF_6","features":[576]},{"name":"RTC_DTMF_7","features":[576]},{"name":"RTC_DTMF_8","features":[576]},{"name":"RTC_DTMF_9","features":[576]},{"name":"RTC_DTMF_A","features":[576]},{"name":"RTC_DTMF_B","features":[576]},{"name":"RTC_DTMF_C","features":[576]},{"name":"RTC_DTMF_D","features":[576]},{"name":"RTC_DTMF_FLASH","features":[576]},{"name":"RTC_DTMF_POUND","features":[576]},{"name":"RTC_DTMF_STAR","features":[576]},{"name":"RTC_EVENT","features":[576]},{"name":"RTC_E_ANOTHER_MEDIA_SESSION_ACTIVE","features":[576]},{"name":"RTC_E_BASIC_AUTH_SET_TLS","features":[576]},{"name":"RTC_E_CLIENT_ALREADY_INITIALIZED","features":[576]},{"name":"RTC_E_CLIENT_ALREADY_SHUT_DOWN","features":[576]},{"name":"RTC_E_CLIENT_NOT_INITIALIZED","features":[576]},{"name":"RTC_E_DESTINATION_ADDRESS_LOCAL","features":[576]},{"name":"RTC_E_DESTINATION_ADDRESS_MULTICAST","features":[576]},{"name":"RTC_E_DUPLICATE_BUDDY","features":[576]},{"name":"RTC_E_DUPLICATE_GROUP","features":[576]},{"name":"RTC_E_DUPLICATE_REALM","features":[576]},{"name":"RTC_E_DUPLICATE_WATCHER","features":[576]},{"name":"RTC_E_INVALID_ACL_LIST","features":[576]},{"name":"RTC_E_INVALID_ADDRESS_LOCAL","features":[576]},{"name":"RTC_E_INVALID_BUDDY_LIST","features":[576]},{"name":"RTC_E_INVALID_LISTEN_SOCKET","features":[576]},{"name":"RTC_E_INVALID_OBJECT_STATE","features":[576]},{"name":"RTC_E_INVALID_PORTRANGE","features":[576]},{"name":"RTC_E_INVALID_PREFERENCE_LIST","features":[576]},{"name":"RTC_E_INVALID_PROFILE","features":[576]},{"name":"RTC_E_INVALID_PROXY_ADDRESS","features":[576]},{"name":"RTC_E_INVALID_REGISTRATION_STATE","features":[576]},{"name":"RTC_E_INVALID_SESSION_STATE","features":[576]},{"name":"RTC_E_INVALID_SESSION_TYPE","features":[576]},{"name":"RTC_E_INVALID_SIP_URL","features":[576]},{"name":"RTC_E_LISTENING_SOCKET_NOT_EXIST","features":[576]},{"name":"RTC_E_LOCAL_PHONE_NEEDED","features":[576]},{"name":"RTC_E_MALFORMED_XML","features":[576]},{"name":"RTC_E_MAX_PENDING_OPERATIONS","features":[576]},{"name":"RTC_E_MAX_REDIRECTS","features":[576]},{"name":"RTC_E_MEDIA_AEC","features":[576]},{"name":"RTC_E_MEDIA_AUDIO_DEVICE_NOT_AVAILABLE","features":[576]},{"name":"RTC_E_MEDIA_CONTROLLER_STATE","features":[576]},{"name":"RTC_E_MEDIA_DISABLED","features":[576]},{"name":"RTC_E_MEDIA_ENABLED","features":[576]},{"name":"RTC_E_MEDIA_NEED_TERMINAL","features":[576]},{"name":"RTC_E_MEDIA_SESSION_IN_HOLD","features":[576]},{"name":"RTC_E_MEDIA_SESSION_NOT_EXIST","features":[576]},{"name":"RTC_E_MEDIA_VIDEO_DEVICE_NOT_AVAILABLE","features":[576]},{"name":"RTC_E_NOT_ALLOWED","features":[576]},{"name":"RTC_E_NOT_EXIST","features":[576]},{"name":"RTC_E_NOT_PRESENCE_PROFILE","features":[576]},{"name":"RTC_E_NO_BUDDY","features":[576]},{"name":"RTC_E_NO_DEVICE","features":[576]},{"name":"RTC_E_NO_GROUP","features":[576]},{"name":"RTC_E_NO_PROFILE","features":[576]},{"name":"RTC_E_NO_REALM","features":[576]},{"name":"RTC_E_NO_TRANSPORT","features":[576]},{"name":"RTC_E_NO_WATCHER","features":[576]},{"name":"RTC_E_OPERATION_WITH_TOO_MANY_PARTICIPANTS","features":[576]},{"name":"RTC_E_PINT_STATUS_REJECTED_ALL_BUSY","features":[576]},{"name":"RTC_E_PINT_STATUS_REJECTED_BADNUMBER","features":[576]},{"name":"RTC_E_PINT_STATUS_REJECTED_BUSY","features":[576]},{"name":"RTC_E_PINT_STATUS_REJECTED_CANCELLED","features":[576]},{"name":"RTC_E_PINT_STATUS_REJECTED_NO_ANSWER","features":[576]},{"name":"RTC_E_PINT_STATUS_REJECTED_PL_FAILED","features":[576]},{"name":"RTC_E_PINT_STATUS_REJECTED_SW_FAILED","features":[576]},{"name":"RTC_E_PLATFORM_NOT_SUPPORTED","features":[576]},{"name":"RTC_E_POLICY_NOT_ALLOW","features":[576]},{"name":"RTC_E_PORT_MANAGER_ALREADY_SET","features":[576]},{"name":"RTC_E_PORT_MAPPING_FAILED","features":[576]},{"name":"RTC_E_PORT_MAPPING_UNAVAILABLE","features":[576]},{"name":"RTC_E_PRESENCE_ENABLED","features":[576]},{"name":"RTC_E_PRESENCE_NOT_ENABLED","features":[576]},{"name":"RTC_E_PROFILE_INVALID_SERVER_AUTHMETHOD","features":[576]},{"name":"RTC_E_PROFILE_INVALID_SERVER_PROTOCOL","features":[576]},{"name":"RTC_E_PROFILE_INVALID_SERVER_ROLE","features":[576]},{"name":"RTC_E_PROFILE_INVALID_SESSION","features":[576]},{"name":"RTC_E_PROFILE_INVALID_SESSION_PARTY","features":[576]},{"name":"RTC_E_PROFILE_INVALID_SESSION_TYPE","features":[576]},{"name":"RTC_E_PROFILE_MULTIPLE_REGISTRARS","features":[576]},{"name":"RTC_E_PROFILE_NO_KEY","features":[576]},{"name":"RTC_E_PROFILE_NO_NAME","features":[576]},{"name":"RTC_E_PROFILE_NO_PROVISION","features":[576]},{"name":"RTC_E_PROFILE_NO_SERVER","features":[576]},{"name":"RTC_E_PROFILE_NO_SERVER_ADDRESS","features":[576]},{"name":"RTC_E_PROFILE_NO_SERVER_PROTOCOL","features":[576]},{"name":"RTC_E_PROFILE_NO_USER","features":[576]},{"name":"RTC_E_PROFILE_NO_USER_URI","features":[576]},{"name":"RTC_E_PROFILE_SERVER_UNAUTHORIZED","features":[576]},{"name":"RTC_E_REDIRECT_PROCESSING_FAILED","features":[576]},{"name":"RTC_E_REFER_NOT_ACCEPTED","features":[576]},{"name":"RTC_E_REFER_NOT_ALLOWED","features":[576]},{"name":"RTC_E_REFER_NOT_EXIST","features":[576]},{"name":"RTC_E_REGISTRATION_DEACTIVATED","features":[576]},{"name":"RTC_E_REGISTRATION_REJECTED","features":[576]},{"name":"RTC_E_REGISTRATION_UNREGISTERED","features":[576]},{"name":"RTC_E_ROAMING_ENABLED","features":[576]},{"name":"RTC_E_ROAMING_FAILED","features":[576]},{"name":"RTC_E_ROAMING_OPERATION_INTERRUPTED","features":[576]},{"name":"RTC_E_SDP_CONNECTION_ADDR","features":[576]},{"name":"RTC_E_SDP_FAILED_TO_BUILD","features":[576]},{"name":"RTC_E_SDP_MULTICAST","features":[576]},{"name":"RTC_E_SDP_NOT_PRESENT","features":[576]},{"name":"RTC_E_SDP_NO_MEDIA","features":[576]},{"name":"RTC_E_SDP_PARSE_FAILED","features":[576]},{"name":"RTC_E_SDP_UPDATE_FAILED","features":[576]},{"name":"RTC_E_SECURITY_LEVEL_ALREADY_SET","features":[576]},{"name":"RTC_E_SECURITY_LEVEL_NOT_COMPATIBLE","features":[576]},{"name":"RTC_E_SECURITY_LEVEL_NOT_DEFINED","features":[576]},{"name":"RTC_E_SECURITY_LEVEL_NOT_SUPPORTED_BY_PARTICIPANT","features":[576]},{"name":"RTC_E_SIP_ADDITIONAL_PARTY_IN_TWO_PARTY_SESSION","features":[576]},{"name":"RTC_E_SIP_AUTH_FAILED","features":[576]},{"name":"RTC_E_SIP_AUTH_HEADER_SENT","features":[576]},{"name":"RTC_E_SIP_AUTH_TIME_SKEW","features":[576]},{"name":"RTC_E_SIP_AUTH_TYPE_NOT_SUPPORTED","features":[576]},{"name":"RTC_E_SIP_CALL_CONNECTION_NOT_ESTABLISHED","features":[576]},{"name":"RTC_E_SIP_CALL_DISCONNECTED","features":[576]},{"name":"RTC_E_SIP_CODECS_DO_NOT_MATCH","features":[576]},{"name":"RTC_E_SIP_DNS_FAIL","features":[576]},{"name":"RTC_E_SIP_HEADER_NOT_PRESENT","features":[576]},{"name":"RTC_E_SIP_HIGH_SECURITY_SET_TLS","features":[576]},{"name":"RTC_E_SIP_HOLD_OPERATION_PENDING","features":[576]},{"name":"RTC_E_SIP_INVALID_CERTIFICATE","features":[576]},{"name":"RTC_E_SIP_INVITEE_PARTY_TIMEOUT","features":[576]},{"name":"RTC_E_SIP_INVITE_TRANSACTION_PENDING","features":[576]},{"name":"RTC_E_SIP_NEED_MORE_DATA","features":[576]},{"name":"RTC_E_SIP_NO_STREAM","features":[576]},{"name":"RTC_E_SIP_OTHER_PARTY_JOIN_IN_PROGRESS","features":[576]},{"name":"RTC_E_SIP_PARSE_FAILED","features":[576]},{"name":"RTC_E_SIP_PARTY_ALREADY_IN_SESSION","features":[576]},{"name":"RTC_E_SIP_PEER_PARTICIPANT_IN_MULTIPARTY_SESSION","features":[576]},{"name":"RTC_E_SIP_REFER_OPERATION_PENDING","features":[576]},{"name":"RTC_E_SIP_REQUEST_DESTINATION_ADDR_NOT_PRESENT","features":[576]},{"name":"RTC_E_SIP_SSL_NEGOTIATION_TIMEOUT","features":[576]},{"name":"RTC_E_SIP_SSL_TUNNEL_FAILED","features":[576]},{"name":"RTC_E_SIP_STACK_SHUTDOWN","features":[576]},{"name":"RTC_E_SIP_STREAM_NOT_PRESENT","features":[576]},{"name":"RTC_E_SIP_STREAM_PRESENT","features":[576]},{"name":"RTC_E_SIP_TCP_FAIL","features":[576]},{"name":"RTC_E_SIP_TIMEOUT","features":[576]},{"name":"RTC_E_SIP_TLS_FAIL","features":[576]},{"name":"RTC_E_SIP_TLS_INCOMPATIBLE_ENCRYPTION","features":[576]},{"name":"RTC_E_SIP_TRANSPORT_NOT_SUPPORTED","features":[576]},{"name":"RTC_E_SIP_UDP_SIZE_EXCEEDED","features":[576]},{"name":"RTC_E_SIP_UNHOLD_OPERATION_PENDING","features":[576]},{"name":"RTC_E_START_STREAM","features":[576]},{"name":"RTC_E_STATUS_CLIENT_ADDRESS_INCOMPLETE","features":[576]},{"name":"RTC_E_STATUS_CLIENT_AMBIGUOUS","features":[576]},{"name":"RTC_E_STATUS_CLIENT_BAD_EXTENSION","features":[576]},{"name":"RTC_E_STATUS_CLIENT_BAD_REQUEST","features":[576]},{"name":"RTC_E_STATUS_CLIENT_BUSY_HERE","features":[576]},{"name":"RTC_E_STATUS_CLIENT_CONFLICT","features":[576]},{"name":"RTC_E_STATUS_CLIENT_FORBIDDEN","features":[576]},{"name":"RTC_E_STATUS_CLIENT_GONE","features":[576]},{"name":"RTC_E_STATUS_CLIENT_LENGTH_REQUIRED","features":[576]},{"name":"RTC_E_STATUS_CLIENT_LOOP_DETECTED","features":[576]},{"name":"RTC_E_STATUS_CLIENT_METHOD_NOT_ALLOWED","features":[576]},{"name":"RTC_E_STATUS_CLIENT_NOT_ACCEPTABLE","features":[576]},{"name":"RTC_E_STATUS_CLIENT_NOT_FOUND","features":[576]},{"name":"RTC_E_STATUS_CLIENT_PAYMENT_REQUIRED","features":[576]},{"name":"RTC_E_STATUS_CLIENT_PROXY_AUTHENTICATION_REQUIRED","features":[576]},{"name":"RTC_E_STATUS_CLIENT_REQUEST_ENTITY_TOO_LARGE","features":[576]},{"name":"RTC_E_STATUS_CLIENT_REQUEST_TIMEOUT","features":[576]},{"name":"RTC_E_STATUS_CLIENT_REQUEST_URI_TOO_LARGE","features":[576]},{"name":"RTC_E_STATUS_CLIENT_TEMPORARILY_NOT_AVAILABLE","features":[576]},{"name":"RTC_E_STATUS_CLIENT_TOO_MANY_HOPS","features":[576]},{"name":"RTC_E_STATUS_CLIENT_TRANSACTION_DOES_NOT_EXIST","features":[576]},{"name":"RTC_E_STATUS_CLIENT_UNAUTHORIZED","features":[576]},{"name":"RTC_E_STATUS_CLIENT_UNSUPPORTED_MEDIA_TYPE","features":[576]},{"name":"RTC_E_STATUS_GLOBAL_BUSY_EVERYWHERE","features":[576]},{"name":"RTC_E_STATUS_GLOBAL_DECLINE","features":[576]},{"name":"RTC_E_STATUS_GLOBAL_DOES_NOT_EXIST_ANYWHERE","features":[576]},{"name":"RTC_E_STATUS_GLOBAL_NOT_ACCEPTABLE","features":[576]},{"name":"RTC_E_STATUS_INFO_CALL_FORWARDING","features":[576]},{"name":"RTC_E_STATUS_INFO_QUEUED","features":[576]},{"name":"RTC_E_STATUS_INFO_RINGING","features":[576]},{"name":"RTC_E_STATUS_INFO_TRYING","features":[576]},{"name":"RTC_E_STATUS_NOT_ACCEPTABLE_HERE","features":[576]},{"name":"RTC_E_STATUS_REDIRECT_ALTERNATIVE_SERVICE","features":[576]},{"name":"RTC_E_STATUS_REDIRECT_MOVED_PERMANENTLY","features":[576]},{"name":"RTC_E_STATUS_REDIRECT_MOVED_TEMPORARILY","features":[576]},{"name":"RTC_E_STATUS_REDIRECT_MULTIPLE_CHOICES","features":[576]},{"name":"RTC_E_STATUS_REDIRECT_SEE_OTHER","features":[576]},{"name":"RTC_E_STATUS_REDIRECT_USE_PROXY","features":[576]},{"name":"RTC_E_STATUS_REQUEST_TERMINATED","features":[576]},{"name":"RTC_E_STATUS_SERVER_BAD_GATEWAY","features":[576]},{"name":"RTC_E_STATUS_SERVER_INTERNAL_ERROR","features":[576]},{"name":"RTC_E_STATUS_SERVER_NOT_IMPLEMENTED","features":[576]},{"name":"RTC_E_STATUS_SERVER_SERVER_TIMEOUT","features":[576]},{"name":"RTC_E_STATUS_SERVER_SERVICE_UNAVAILABLE","features":[576]},{"name":"RTC_E_STATUS_SERVER_VERSION_NOT_SUPPORTED","features":[576]},{"name":"RTC_E_STATUS_SESSION_PROGRESS","features":[576]},{"name":"RTC_E_STATUS_SUCCESS","features":[576]},{"name":"RTC_E_TOO_MANY_GROUPS","features":[576]},{"name":"RTC_E_TOO_MANY_RETRIES","features":[576]},{"name":"RTC_E_TOO_SMALL_EXPIRES_VALUE","features":[576]},{"name":"RTC_E_UDP_NOT_SUPPORTED","features":[576]},{"name":"RTC_GROUP_EVENT_TYPE","features":[576]},{"name":"RTC_LISTEN_MODE","features":[576]},{"name":"RTC_MEDIA_EVENT_REASON","features":[576]},{"name":"RTC_MEDIA_EVENT_TYPE","features":[576]},{"name":"RTC_MESSAGING_EVENT_TYPE","features":[576]},{"name":"RTC_MESSAGING_USER_STATUS","features":[576]},{"name":"RTC_OFFER_WATCHER_MODE","features":[576]},{"name":"RTC_PARTICIPANT_STATE","features":[576]},{"name":"RTC_PORT_TYPE","features":[576]},{"name":"RTC_PRESENCE_PROPERTY","features":[576]},{"name":"RTC_PRESENCE_STATUS","features":[576]},{"name":"RTC_PRIVACY_MODE","features":[576]},{"name":"RTC_PROFILE_EVENT_TYPE","features":[576]},{"name":"RTC_PROVIDER_URI","features":[576]},{"name":"RTC_REGISTRATION_STATE","features":[576]},{"name":"RTC_REINVITE_STATE","features":[576]},{"name":"RTC_RING_TYPE","features":[576]},{"name":"RTC_ROAMING_EVENT_TYPE","features":[576]},{"name":"RTC_SECURITY_LEVEL","features":[576]},{"name":"RTC_SECURITY_TYPE","features":[576]},{"name":"RTC_SESSION_REFER_STATUS","features":[576]},{"name":"RTC_SESSION_STATE","features":[576]},{"name":"RTC_SESSION_TYPE","features":[576]},{"name":"RTC_S_ROAMING_NOT_SUPPORTED","features":[576]},{"name":"RTC_T120_APPLET","features":[576]},{"name":"RTC_TERMINATE_REASON","features":[576]},{"name":"RTC_USER_SEARCH_COLUMN","features":[576]},{"name":"RTC_USER_SEARCH_PREFERENCE","features":[576]},{"name":"RTC_VIDEO_DEVICE","features":[576]},{"name":"RTC_WATCHER_EVENT_TYPE","features":[576]},{"name":"RTC_WATCHER_MATCH_MODE","features":[576]},{"name":"RTC_WATCHER_STATE","features":[576]},{"name":"STATUS_SEVERITY_RTC_ERROR","features":[576]},{"name":"TRANSPORT_SETTING","features":[318,576]}],"596":[{"name":"ApplicationRecoveryFinished","features":[305,577]},{"name":"ApplicationRecoveryInProgress","features":[305,577]},{"name":"GetApplicationRecoveryCallback","features":[305,577,338]},{"name":"GetApplicationRestartSettings","features":[305,577]},{"name":"REGISTER_APPLICATION_RESTART_FLAGS","features":[577]},{"name":"RESTART_NO_CRASH","features":[577]},{"name":"RESTART_NO_HANG","features":[577]},{"name":"RESTART_NO_PATCH","features":[577]},{"name":"RESTART_NO_REBOOT","features":[577]},{"name":"RegisterApplicationRecoveryCallback","features":[577,338]},{"name":"RegisterApplicationRestart","features":[577]},{"name":"UnregisterApplicationRecoveryCallback","features":[577]},{"name":"UnregisterApplicationRestart","features":[577]}],"597":[{"name":"AGP_FLAG_NO_1X_RATE","features":[366]},{"name":"AGP_FLAG_NO_2X_RATE","features":[366]},{"name":"AGP_FLAG_NO_4X_RATE","features":[366]},{"name":"AGP_FLAG_NO_8X_RATE","features":[366]},{"name":"AGP_FLAG_NO_FW_ENABLE","features":[366]},{"name":"AGP_FLAG_NO_SBA_ENABLE","features":[366]},{"name":"AGP_FLAG_REVERSE_INITIALIZATION","features":[366]},{"name":"AGP_FLAG_SPECIAL_RESERVE","features":[366]},{"name":"AGP_FLAG_SPECIAL_TARGET","features":[366]},{"name":"APMMENUSUSPEND_DISABLED","features":[366]},{"name":"APMMENUSUSPEND_ENABLED","features":[366]},{"name":"APMMENUSUSPEND_NOCHANGE","features":[366]},{"name":"APMMENUSUSPEND_UNDOCKED","features":[366]},{"name":"APMTIMEOUT_DISABLED","features":[366]},{"name":"BIF_RAWDEVICENEEDSDRIVER","features":[366]},{"name":"BIF_SHOWSIMILARDRIVERS","features":[366]},{"name":"CSCONFIGFLAG_BITS","features":[366]},{"name":"CSCONFIGFLAG_DISABLED","features":[366]},{"name":"CSCONFIGFLAG_DO_NOT_CREATE","features":[366]},{"name":"CSCONFIGFLAG_DO_NOT_START","features":[366]},{"name":"DMSTATEFLAG_APPLYTOALL","features":[366]},{"name":"DOSOPTF_ALWAYSUSE","features":[366]},{"name":"DOSOPTF_DEFAULT","features":[366]},{"name":"DOSOPTF_INDOSSTART","features":[366]},{"name":"DOSOPTF_MULTIPLE","features":[366]},{"name":"DOSOPTF_NEEDSETUP","features":[366]},{"name":"DOSOPTF_PROVIDESUMB","features":[366]},{"name":"DOSOPTF_SUPPORTED","features":[366]},{"name":"DOSOPTF_USESPMODE","features":[366]},{"name":"DOSOPTGF_DEFCLEAN","features":[366]},{"name":"DRIVERSIGN_BLOCKING","features":[366]},{"name":"DRIVERSIGN_NONE","features":[366]},{"name":"DRIVERSIGN_WARNING","features":[366]},{"name":"DSKTLSYSTEMTIME","features":[366]},{"name":"DTRESULTFIX","features":[366]},{"name":"DTRESULTOK","features":[366]},{"name":"DTRESULTPART","features":[366]},{"name":"DTRESULTPROB","features":[366]},{"name":"EISAFLAG_NO_IO_MERGE","features":[366]},{"name":"EISAFLAG_SLOT_IO_FIRST","features":[366]},{"name":"EISA_NO_MAX_FUNCTION","features":[366]},{"name":"GetRegistryValueWithFallbackW","features":[305,366]},{"name":"HKEY","features":[366]},{"name":"HKEY_CLASSES_ROOT","features":[366]},{"name":"HKEY_CURRENT_CONFIG","features":[366]},{"name":"HKEY_CURRENT_USER","features":[366]},{"name":"HKEY_CURRENT_USER_LOCAL_SETTINGS","features":[366]},{"name":"HKEY_DYN_DATA","features":[366]},{"name":"HKEY_LOCAL_MACHINE","features":[366]},{"name":"HKEY_PERFORMANCE_DATA","features":[366]},{"name":"HKEY_PERFORMANCE_NLSTEXT","features":[366]},{"name":"HKEY_PERFORMANCE_TEXT","features":[366]},{"name":"HKEY_USERS","features":[366]},{"name":"IT_COMPACT","features":[366]},{"name":"IT_CUSTOM","features":[366]},{"name":"IT_PORTABLE","features":[366]},{"name":"IT_TYPICAL","features":[366]},{"name":"KEY_ALL_ACCESS","features":[366]},{"name":"KEY_CREATE_LINK","features":[366]},{"name":"KEY_CREATE_SUB_KEY","features":[366]},{"name":"KEY_ENUMERATE_SUB_KEYS","features":[366]},{"name":"KEY_EXECUTE","features":[366]},{"name":"KEY_NOTIFY","features":[366]},{"name":"KEY_QUERY_VALUE","features":[366]},{"name":"KEY_READ","features":[366]},{"name":"KEY_SET_VALUE","features":[366]},{"name":"KEY_WOW64_32KEY","features":[366]},{"name":"KEY_WOW64_64KEY","features":[366]},{"name":"KEY_WOW64_RES","features":[366]},{"name":"KEY_WRITE","features":[366]},{"name":"LASTGOOD_OPERATION","features":[366]},{"name":"LASTGOOD_OPERATION_DELETE","features":[366]},{"name":"LASTGOOD_OPERATION_NOPOSTPROC","features":[366]},{"name":"MF_FLAGS_CREATE_BUT_NO_SHOW_DISABLED","features":[366]},{"name":"MF_FLAGS_EVEN_IF_NO_RESOURCE","features":[366]},{"name":"MF_FLAGS_FILL_IN_UNKNOWN_RESOURCE","features":[366]},{"name":"MF_FLAGS_NO_CREATE_IF_NO_RESOURCE","features":[366]},{"name":"NUM_EISA_RANGES","features":[366]},{"name":"NUM_RESOURCE_MAP","features":[366]},{"name":"PCIC_DEFAULT_IRQMASK","features":[366]},{"name":"PCIC_DEFAULT_NUMSOCKETS","features":[366]},{"name":"PCI_OPTIONS_USE_BIOS","features":[366]},{"name":"PCI_OPTIONS_USE_IRQ_STEERING","features":[366]},{"name":"PCMCIA_DEF_MEMBEGIN","features":[366]},{"name":"PCMCIA_DEF_MEMEND","features":[366]},{"name":"PCMCIA_DEF_MEMLEN","features":[366]},{"name":"PCMCIA_DEF_MIN_REGION","features":[366]},{"name":"PCMCIA_OPT_AUTOMEM","features":[366]},{"name":"PCMCIA_OPT_HAVE_SOCKET","features":[366]},{"name":"PCMCIA_OPT_NO_APMREMOVE","features":[366]},{"name":"PCMCIA_OPT_NO_AUDIO","features":[366]},{"name":"PCMCIA_OPT_NO_SOUND","features":[366]},{"name":"PIR_OPTION_DEFAULT","features":[366]},{"name":"PIR_OPTION_ENABLED","features":[366]},{"name":"PIR_OPTION_MSSPEC","features":[366]},{"name":"PIR_OPTION_REALMODE","features":[366]},{"name":"PIR_OPTION_REGISTRY","features":[366]},{"name":"PIR_STATUS_DISABLED","features":[366]},{"name":"PIR_STATUS_ENABLED","features":[366]},{"name":"PIR_STATUS_ERROR","features":[366]},{"name":"PIR_STATUS_MAX","features":[366]},{"name":"PIR_STATUS_MINIPORT_COMPATIBLE","features":[366]},{"name":"PIR_STATUS_MINIPORT_ERROR","features":[366]},{"name":"PIR_STATUS_MINIPORT_INVALID","features":[366]},{"name":"PIR_STATUS_MINIPORT_MAX","features":[366]},{"name":"PIR_STATUS_MINIPORT_NOKEY","features":[366]},{"name":"PIR_STATUS_MINIPORT_NONE","features":[366]},{"name":"PIR_STATUS_MINIPORT_NORMAL","features":[366]},{"name":"PIR_STATUS_MINIPORT_OVERRIDE","features":[366]},{"name":"PIR_STATUS_MINIPORT_SUCCESS","features":[366]},{"name":"PIR_STATUS_TABLE_BAD","features":[366]},{"name":"PIR_STATUS_TABLE_ERROR","features":[366]},{"name":"PIR_STATUS_TABLE_MAX","features":[366]},{"name":"PIR_STATUS_TABLE_MSSPEC","features":[366]},{"name":"PIR_STATUS_TABLE_NONE","features":[366]},{"name":"PIR_STATUS_TABLE_REALMODE","features":[366]},{"name":"PIR_STATUS_TABLE_REGISTRY","features":[366]},{"name":"PIR_STATUS_TABLE_SUCCESS","features":[366]},{"name":"PQUERYHANDLER","features":[366]},{"name":"PROVIDER_KEEPS_VALUE_LENGTH","features":[366]},{"name":"PVALUEA","features":[366]},{"name":"PVALUEW","features":[366]},{"name":"REGDF_CONFLICTDMA","features":[366]},{"name":"REGDF_CONFLICTIO","features":[366]},{"name":"REGDF_CONFLICTIRQ","features":[366]},{"name":"REGDF_CONFLICTMEM","features":[366]},{"name":"REGDF_GENFORCEDCONFIG","features":[366]},{"name":"REGDF_MAPIRQ2TO9","features":[366]},{"name":"REGDF_NEEDFULLCONFIG","features":[366]},{"name":"REGDF_NODETCONFIG","features":[366]},{"name":"REGDF_NOTDETDMA","features":[366]},{"name":"REGDF_NOTDETIO","features":[366]},{"name":"REGDF_NOTDETIRQ","features":[366]},{"name":"REGDF_NOTDETMEM","features":[366]},{"name":"REGDF_NOTVERIFIED","features":[366]},{"name":"REGSTR_DATA_NETOS_IPX","features":[366]},{"name":"REGSTR_DATA_NETOS_NDIS","features":[366]},{"name":"REGSTR_DATA_NETOS_ODI","features":[366]},{"name":"REGSTR_DEFAULT_INSTANCE","features":[366]},{"name":"REGSTR_KEY_ACPIENUM","features":[366]},{"name":"REGSTR_KEY_APM","features":[366]},{"name":"REGSTR_KEY_BIOSENUM","features":[366]},{"name":"REGSTR_KEY_CLASS","features":[366]},{"name":"REGSTR_KEY_CONFIG","features":[366]},{"name":"REGSTR_KEY_CONTROL","features":[366]},{"name":"REGSTR_KEY_CRASHES","features":[366]},{"name":"REGSTR_KEY_CURRENT","features":[366]},{"name":"REGSTR_KEY_CURRENT_ENV","features":[366]},{"name":"REGSTR_KEY_DANGERS","features":[366]},{"name":"REGSTR_KEY_DEFAULT","features":[366]},{"name":"REGSTR_KEY_DETMODVARS","features":[366]},{"name":"REGSTR_KEY_DEVICEPARAMETERS","features":[366]},{"name":"REGSTR_KEY_DEVICE_PROPERTIES","features":[366]},{"name":"REGSTR_KEY_DISPLAY_CLASS","features":[366]},{"name":"REGSTR_KEY_DOSOPTCDROM","features":[366]},{"name":"REGSTR_KEY_DOSOPTMOUSE","features":[366]},{"name":"REGSTR_KEY_DRIVERPARAMETERS","features":[366]},{"name":"REGSTR_KEY_DRIVERS","features":[366]},{"name":"REGSTR_KEY_EBDAUTOEXECBATKEYBOARD","features":[366]},{"name":"REGSTR_KEY_EBDAUTOEXECBATLOCAL","features":[366]},{"name":"REGSTR_KEY_EBDCONFIGSYSKEYBOARD","features":[366]},{"name":"REGSTR_KEY_EBDCONFIGSYSLOCAL","features":[366]},{"name":"REGSTR_KEY_EBDFILESKEYBOARD","features":[366]},{"name":"REGSTR_KEY_EBDFILESLOCAL","features":[366]},{"name":"REGSTR_KEY_EISAENUM","features":[366]},{"name":"REGSTR_KEY_ENUM","features":[366]},{"name":"REGSTR_KEY_EXPLORER","features":[366]},{"name":"REGSTR_KEY_FILTERS","features":[366]},{"name":"REGSTR_KEY_INIUPDATE","features":[366]},{"name":"REGSTR_KEY_ISAENUM","features":[366]},{"name":"REGSTR_KEY_JOYCURR","features":[366]},{"name":"REGSTR_KEY_JOYSETTINGS","features":[366]},{"name":"REGSTR_KEY_KEYBOARD_CLASS","features":[366]},{"name":"REGSTR_KEY_KNOWNDOCKINGSTATES","features":[366]},{"name":"REGSTR_KEY_LOGCONFIG","features":[366]},{"name":"REGSTR_KEY_LOGON","features":[366]},{"name":"REGSTR_KEY_LOWER_FILTER_LEVEL_DEFAULT","features":[366]},{"name":"REGSTR_KEY_MEDIA_CLASS","features":[366]},{"name":"REGSTR_KEY_MODEM_CLASS","features":[366]},{"name":"REGSTR_KEY_MODES","features":[366]},{"name":"REGSTR_KEY_MONITOR_CLASS","features":[366]},{"name":"REGSTR_KEY_MOUSE_CLASS","features":[366]},{"name":"REGSTR_KEY_NDISINFO","features":[366]},{"name":"REGSTR_KEY_NETWORK","features":[366]},{"name":"REGSTR_KEY_NETWORKPROVIDER","features":[366]},{"name":"REGSTR_KEY_NETWORK_PERSISTENT","features":[366]},{"name":"REGSTR_KEY_NETWORK_RECENT","features":[366]},{"name":"REGSTR_KEY_OVERRIDE","features":[366]},{"name":"REGSTR_KEY_PCIENUM","features":[366]},{"name":"REGSTR_KEY_PCMCIA","features":[366]},{"name":"REGSTR_KEY_PCMCIAENUM","features":[366]},{"name":"REGSTR_KEY_PCMCIA_CLASS","features":[366]},{"name":"REGSTR_KEY_PCMTD","features":[366]},{"name":"REGSTR_KEY_PCUNKNOWN","features":[366]},{"name":"REGSTR_KEY_POL_COMPUTERS","features":[366]},{"name":"REGSTR_KEY_POL_DEFAULT","features":[366]},{"name":"REGSTR_KEY_POL_USERGROUPDATA","features":[366]},{"name":"REGSTR_KEY_POL_USERGROUPS","features":[366]},{"name":"REGSTR_KEY_POL_USERS","features":[366]},{"name":"REGSTR_KEY_PORTS_CLASS","features":[366]},{"name":"REGSTR_KEY_PRINTERS","features":[366]},{"name":"REGSTR_KEY_PRINT_PROC","features":[366]},{"name":"REGSTR_KEY_ROOTENUM","features":[366]},{"name":"REGSTR_KEY_RUNHISTORY","features":[366]},{"name":"REGSTR_KEY_SCSI_CLASS","features":[366]},{"name":"REGSTR_KEY_SETUP","features":[366]},{"name":"REGSTR_KEY_SHARES","features":[366]},{"name":"REGSTR_KEY_SYSTEM","features":[366]},{"name":"REGSTR_KEY_SYSTEMBOARD","features":[366]},{"name":"REGSTR_KEY_UPPER_FILTER_LEVEL_DEFAULT","features":[366]},{"name":"REGSTR_KEY_USER","features":[366]},{"name":"REGSTR_KEY_VPOWERDENUM","features":[366]},{"name":"REGSTR_KEY_WINOLDAPP","features":[366]},{"name":"REGSTR_MACHTYPE_ATT_PC","features":[366]},{"name":"REGSTR_MACHTYPE_HP_VECTRA","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPC","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPCAT","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPCCONV","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPCJR","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPCXT","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPCXT_286","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS1","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_25","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_30","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_30_286","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_50","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_50Z","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_55SX","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_60","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_65SX","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_70","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_70_80","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_80","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_90","features":[366]},{"name":"REGSTR_MACHTYPE_IBMPS2_P70","features":[366]},{"name":"REGSTR_MACHTYPE_PHOENIX_PCAT","features":[366]},{"name":"REGSTR_MACHTYPE_UNKNOWN","features":[366]},{"name":"REGSTR_MACHTYPE_ZENITH_PC","features":[366]},{"name":"REGSTR_MAX_VALUE_LENGTH","features":[366]},{"name":"REGSTR_PATH_ADDRARB","features":[366]},{"name":"REGSTR_PATH_AEDEBUG","features":[366]},{"name":"REGSTR_PATH_APPEARANCE","features":[366]},{"name":"REGSTR_PATH_APPPATCH","features":[366]},{"name":"REGSTR_PATH_APPPATHS","features":[366]},{"name":"REGSTR_PATH_BIOSINFO","features":[366]},{"name":"REGSTR_PATH_BUSINFORMATION","features":[366]},{"name":"REGSTR_PATH_CDFS","features":[366]},{"name":"REGSTR_PATH_CHECKBADAPPS","features":[366]},{"name":"REGSTR_PATH_CHECKBADAPPS400","features":[366]},{"name":"REGSTR_PATH_CHECKDISK","features":[366]},{"name":"REGSTR_PATH_CHECKDISKSET","features":[366]},{"name":"REGSTR_PATH_CHECKDISKUDRVS","features":[366]},{"name":"REGSTR_PATH_CHECKVERDLLS","features":[366]},{"name":"REGSTR_PATH_CHILD_PREFIX","features":[366]},{"name":"REGSTR_PATH_CHKLASTCHECK","features":[366]},{"name":"REGSTR_PATH_CHKLASTSURFAN","features":[366]},{"name":"REGSTR_PATH_CLASS","features":[366]},{"name":"REGSTR_PATH_CLASS_NT","features":[366]},{"name":"REGSTR_PATH_CODEPAGE","features":[366]},{"name":"REGSTR_PATH_CODEVICEINSTALLERS","features":[366]},{"name":"REGSTR_PATH_COLORS","features":[366]},{"name":"REGSTR_PATH_COMPUTRNAME","features":[366]},{"name":"REGSTR_PATH_CONTROLPANEL","features":[366]},{"name":"REGSTR_PATH_CONTROLSFOLDER","features":[366]},{"name":"REGSTR_PATH_CRITICALDEVICEDATABASE","features":[366]},{"name":"REGSTR_PATH_CURRENTCONTROLSET","features":[366]},{"name":"REGSTR_PATH_CURRENT_CONTROL_SET","features":[366]},{"name":"REGSTR_PATH_CURSORS","features":[366]},{"name":"REGSTR_PATH_CVNETWORK","features":[366]},{"name":"REGSTR_PATH_DESKTOP","features":[366]},{"name":"REGSTR_PATH_DETECT","features":[366]},{"name":"REGSTR_PATH_DEVICEINSTALLER","features":[366]},{"name":"REGSTR_PATH_DEVICE_CLASSES","features":[366]},{"name":"REGSTR_PATH_DIFX","features":[366]},{"name":"REGSTR_PATH_DISPLAYSETTINGS","features":[366]},{"name":"REGSTR_PATH_DMAARB","features":[366]},{"name":"REGSTR_PATH_DRIVERSIGN","features":[366]},{"name":"REGSTR_PATH_DRIVERSIGN_POLICY","features":[366]},{"name":"REGSTR_PATH_ENUM","features":[366]},{"name":"REGSTR_PATH_ENVIRONMENTS","features":[366]},{"name":"REGSTR_PATH_EVENTLABELS","features":[366]},{"name":"REGSTR_PATH_EXPLORER","features":[366]},{"name":"REGSTR_PATH_FAULT","features":[366]},{"name":"REGSTR_PATH_FILESYSTEM","features":[366]},{"name":"REGSTR_PATH_FILESYSTEM_NOVOLTRACK","features":[366]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR","features":[366]},{"name":"REGSTR_PATH_FLOATINGPOINTPROCESSOR0","features":[366]},{"name":"REGSTR_PATH_FONTS","features":[366]},{"name":"REGSTR_PATH_GRPCONV","features":[366]},{"name":"REGSTR_PATH_HACKINIFILE","features":[366]},{"name":"REGSTR_PATH_HWPROFILES","features":[366]},{"name":"REGSTR_PATH_HWPROFILESCURRENT","features":[366]},{"name":"REGSTR_PATH_ICONS","features":[366]},{"name":"REGSTR_PATH_IDCONFIGDB","features":[366]},{"name":"REGSTR_PATH_INSTALLEDFILES","features":[366]},{"name":"REGSTR_PATH_IOARB","features":[366]},{"name":"REGSTR_PATH_IOS","features":[366]},{"name":"REGSTR_PATH_IRQARB","features":[366]},{"name":"REGSTR_PATH_KEYBOARD","features":[366]},{"name":"REGSTR_PATH_KNOWN16DLLS","features":[366]},{"name":"REGSTR_PATH_KNOWNDLLS","features":[366]},{"name":"REGSTR_PATH_KNOWNVXDS","features":[366]},{"name":"REGSTR_PATH_LASTBACKUP","features":[366]},{"name":"REGSTR_PATH_LASTCHECK","features":[366]},{"name":"REGSTR_PATH_LASTGOOD","features":[366]},{"name":"REGSTR_PATH_LASTGOODTMP","features":[366]},{"name":"REGSTR_PATH_LASTOPTIMIZE","features":[366]},{"name":"REGSTR_PATH_LOOKSCHEMES","features":[366]},{"name":"REGSTR_PATH_METRICS","features":[366]},{"name":"REGSTR_PATH_MONITORS","features":[366]},{"name":"REGSTR_PATH_MOUSE","features":[366]},{"name":"REGSTR_PATH_MSDOSOPTS","features":[366]},{"name":"REGSTR_PATH_MULTIMEDIA_AUDIO","features":[366]},{"name":"REGSTR_PATH_MULTI_FUNCTION","features":[366]},{"name":"REGSTR_PATH_NCPSERVER","features":[366]},{"name":"REGSTR_PATH_NETEQUIV","features":[366]},{"name":"REGSTR_PATH_NETWORK_USERSETTINGS","features":[366]},{"name":"REGSTR_PATH_NEWDOSBOX","features":[366]},{"name":"REGSTR_PATH_NONDRIVERSIGN","features":[366]},{"name":"REGSTR_PATH_NONDRIVERSIGN_POLICY","features":[366]},{"name":"REGSTR_PATH_NOSUGGMSDOS","features":[366]},{"name":"REGSTR_PATH_NT_CURRENTVERSION","features":[366]},{"name":"REGSTR_PATH_NWREDIR","features":[366]},{"name":"REGSTR_PATH_PCIIR","features":[366]},{"name":"REGSTR_PATH_PER_HW_ID_STORAGE","features":[366]},{"name":"REGSTR_PATH_PIFCONVERT","features":[366]},{"name":"REGSTR_PATH_POLICIES","features":[366]},{"name":"REGSTR_PATH_PRINT","features":[366]},{"name":"REGSTR_PATH_PRINTERS","features":[366]},{"name":"REGSTR_PATH_PROPERTYSYSTEM","features":[366]},{"name":"REGSTR_PATH_PROVIDERS","features":[366]},{"name":"REGSTR_PATH_PWDPROVIDER","features":[366]},{"name":"REGSTR_PATH_REALMODENET","features":[366]},{"name":"REGSTR_PATH_REINSTALL","features":[366]},{"name":"REGSTR_PATH_RELIABILITY","features":[366]},{"name":"REGSTR_PATH_RELIABILITY_POLICY","features":[366]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_REPORTSNAPSHOT","features":[366]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SHUTDOWNREASONUI","features":[366]},{"name":"REGSTR_PATH_RELIABILITY_POLICY_SNAPSHOT","features":[366]},{"name":"REGSTR_PATH_ROOT","features":[366]},{"name":"REGSTR_PATH_RUN","features":[366]},{"name":"REGSTR_PATH_RUNONCE","features":[366]},{"name":"REGSTR_PATH_RUNONCEEX","features":[366]},{"name":"REGSTR_PATH_RUNSERVICES","features":[366]},{"name":"REGSTR_PATH_RUNSERVICESONCE","features":[366]},{"name":"REGSTR_PATH_SCHEMES","features":[366]},{"name":"REGSTR_PATH_SCREENSAVE","features":[366]},{"name":"REGSTR_PATH_SERVICES","features":[366]},{"name":"REGSTR_PATH_SETUP","features":[366]},{"name":"REGSTR_PATH_SHUTDOWN","features":[366]},{"name":"REGSTR_PATH_SOUND","features":[366]},{"name":"REGSTR_PATH_SYSTEMENUM","features":[366]},{"name":"REGSTR_PATH_SYSTRAY","features":[366]},{"name":"REGSTR_PATH_TIMEZONE","features":[366]},{"name":"REGSTR_PATH_UNINSTALL","features":[366]},{"name":"REGSTR_PATH_UPDATE","features":[366]},{"name":"REGSTR_PATH_VCOMM","features":[366]},{"name":"REGSTR_PATH_VMM","features":[366]},{"name":"REGSTR_PATH_VMM32FILES","features":[366]},{"name":"REGSTR_PATH_VNETSUP","features":[366]},{"name":"REGSTR_PATH_VOLUMECACHE","features":[366]},{"name":"REGSTR_PATH_VPOWERD","features":[366]},{"name":"REGSTR_PATH_VXD","features":[366]},{"name":"REGSTR_PATH_WARNVERDLLS","features":[366]},{"name":"REGSTR_PATH_WINBOOT","features":[366]},{"name":"REGSTR_PATH_WINDOWSAPPLETS","features":[366]},{"name":"REGSTR_PATH_WINLOGON","features":[366]},{"name":"REGSTR_PATH_WMI_SECURITY","features":[366]},{"name":"REGSTR_PCI_DUAL_IDE","features":[366]},{"name":"REGSTR_PCI_OPTIONS","features":[366]},{"name":"REGSTR_VALUE_DEFAULTLOC","features":[366]},{"name":"REGSTR_VALUE_ENABLE","features":[366]},{"name":"REGSTR_VALUE_LOWPOWERACTIVE","features":[366]},{"name":"REGSTR_VALUE_LOWPOWERTIMEOUT","features":[366]},{"name":"REGSTR_VALUE_NETPATH","features":[366]},{"name":"REGSTR_VALUE_POWEROFFACTIVE","features":[366]},{"name":"REGSTR_VALUE_POWEROFFTIMEOUT","features":[366]},{"name":"REGSTR_VALUE_SCRPASSWORD","features":[366]},{"name":"REGSTR_VALUE_USESCRPASSWORD","features":[366]},{"name":"REGSTR_VALUE_VERBOSE","features":[366]},{"name":"REGSTR_VAL_ACDRIVESPINDOWN","features":[366]},{"name":"REGSTR_VAL_ACSPINDOWNPREVIOUS","features":[366]},{"name":"REGSTR_VAL_ACTIVESERVICE","features":[366]},{"name":"REGSTR_VAL_ADDRESS","features":[366]},{"name":"REGSTR_VAL_AEDEBUG_AUTO","features":[366]},{"name":"REGSTR_VAL_AEDEBUG_DEBUGGER","features":[366]},{"name":"REGSTR_VAL_ALPHANUMPWDS","features":[366]},{"name":"REGSTR_VAL_APISUPPORT","features":[366]},{"name":"REGSTR_VAL_APMACTIMEOUT","features":[366]},{"name":"REGSTR_VAL_APMBATTIMEOUT","features":[366]},{"name":"REGSTR_VAL_APMBIOSVER","features":[366]},{"name":"REGSTR_VAL_APMFLAGS","features":[366]},{"name":"REGSTR_VAL_APMMENUSUSPEND","features":[366]},{"name":"REGSTR_VAL_APMSHUTDOWNPOWER","features":[366]},{"name":"REGSTR_VAL_APPINSTPATH","features":[366]},{"name":"REGSTR_VAL_ASKFORCONFIG","features":[366]},{"name":"REGSTR_VAL_ASKFORCONFIGFUNC","features":[366]},{"name":"REGSTR_VAL_ASYNCFILECOMMIT","features":[366]},{"name":"REGSTR_VAL_AUDIO_BITMAP","features":[366]},{"name":"REGSTR_VAL_AUDIO_ICON","features":[366]},{"name":"REGSTR_VAL_AUTHENT_AGENT","features":[366]},{"name":"REGSTR_VAL_AUTOEXEC","features":[366]},{"name":"REGSTR_VAL_AUTOINSNOTE","features":[366]},{"name":"REGSTR_VAL_AUTOLOGON","features":[366]},{"name":"REGSTR_VAL_AUTOMOUNT","features":[366]},{"name":"REGSTR_VAL_AUTOSTART","features":[366]},{"name":"REGSTR_VAL_BASICPROPERTIES","features":[366]},{"name":"REGSTR_VAL_BASICPROPERTIES_32","features":[366]},{"name":"REGSTR_VAL_BATDRIVESPINDOWN","features":[366]},{"name":"REGSTR_VAL_BATSPINDOWNPREVIOUS","features":[366]},{"name":"REGSTR_VAL_BEHAVIOR_ON_FAILED_VERIFY","features":[366]},{"name":"REGSTR_VAL_BIOSDATE","features":[366]},{"name":"REGSTR_VAL_BIOSNAME","features":[366]},{"name":"REGSTR_VAL_BIOSVERSION","features":[366]},{"name":"REGSTR_VAL_BITSPERPIXEL","features":[366]},{"name":"REGSTR_VAL_BOOTCONFIG","features":[366]},{"name":"REGSTR_VAL_BOOTCOUNT","features":[366]},{"name":"REGSTR_VAL_BOOTDIR","features":[366]},{"name":"REGSTR_VAL_BPP","features":[366]},{"name":"REGSTR_VAL_BT","features":[366]},{"name":"REGSTR_VAL_BUFFAGETIMEOUT","features":[366]},{"name":"REGSTR_VAL_BUFFIDLETIMEOUT","features":[366]},{"name":"REGSTR_VAL_BUSTYPE","features":[366]},{"name":"REGSTR_VAL_CAPABILITIES","features":[366]},{"name":"REGSTR_VAL_CARDSPECIFIC","features":[366]},{"name":"REGSTR_VAL_CDCACHESIZE","features":[366]},{"name":"REGSTR_VAL_CDCOMPATNAMES","features":[366]},{"name":"REGSTR_VAL_CDEXTERRORS","features":[366]},{"name":"REGSTR_VAL_CDNOREADAHEAD","features":[366]},{"name":"REGSTR_VAL_CDPREFETCH","features":[366]},{"name":"REGSTR_VAL_CDPREFETCHTAIL","features":[366]},{"name":"REGSTR_VAL_CDRAWCACHE","features":[366]},{"name":"REGSTR_VAL_CDROM","features":[366]},{"name":"REGSTR_VAL_CDROMCLASSNAME","features":[366]},{"name":"REGSTR_VAL_CDSHOWVERSIONS","features":[366]},{"name":"REGSTR_VAL_CDSVDSENSE","features":[366]},{"name":"REGSTR_VAL_CHECKSUM","features":[366]},{"name":"REGSTR_VAL_CLASS","features":[366]},{"name":"REGSTR_VAL_CLASSDESC","features":[366]},{"name":"REGSTR_VAL_CLASSGUID","features":[366]},{"name":"REGSTR_VAL_CMDRIVFLAGS","features":[366]},{"name":"REGSTR_VAL_CMENUMFLAGS","features":[366]},{"name":"REGSTR_VAL_COINSTALLERS_32","features":[366]},{"name":"REGSTR_VAL_COMINFO","features":[366]},{"name":"REGSTR_VAL_COMMENT","features":[366]},{"name":"REGSTR_VAL_COMPATIBLEIDS","features":[366]},{"name":"REGSTR_VAL_COMPRESSIONMETHOD","features":[366]},{"name":"REGSTR_VAL_COMPRESSIONTHRESHOLD","features":[366]},{"name":"REGSTR_VAL_COMPUTERNAME","features":[366]},{"name":"REGSTR_VAL_COMPUTRNAME","features":[366]},{"name":"REGSTR_VAL_COMVERIFYBASE","features":[366]},{"name":"REGSTR_VAL_CONFIG","features":[366]},{"name":"REGSTR_VAL_CONFIGFLAGS","features":[366]},{"name":"REGSTR_VAL_CONFIGMG","features":[366]},{"name":"REGSTR_VAL_CONFIGSYS","features":[366]},{"name":"REGSTR_VAL_CONNECTION_TYPE","features":[366]},{"name":"REGSTR_VAL_CONTAINERID","features":[366]},{"name":"REGSTR_VAL_CONTIGFILEALLOC","features":[366]},{"name":"REGSTR_VAL_CONVMEM","features":[366]},{"name":"REGSTR_VAL_CPU","features":[366]},{"name":"REGSTR_VAL_CRASHFUNCS","features":[366]},{"name":"REGSTR_VAL_CSCONFIGFLAGS","features":[366]},{"name":"REGSTR_VAL_CURCONFIG","features":[366]},{"name":"REGSTR_VAL_CURDRVLET","features":[366]},{"name":"REGSTR_VAL_CURRENTCONFIG","features":[366]},{"name":"REGSTR_VAL_CURRENT_BUILD","features":[366]},{"name":"REGSTR_VAL_CURRENT_CSDVERSION","features":[366]},{"name":"REGSTR_VAL_CURRENT_TYPE","features":[366]},{"name":"REGSTR_VAL_CURRENT_USER","features":[366]},{"name":"REGSTR_VAL_CURRENT_VERSION","features":[366]},{"name":"REGSTR_VAL_CUSTOMCOLORS","features":[366]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_CACHE_DATE","features":[366]},{"name":"REGSTR_VAL_CUSTOM_PROPERTY_HW_ID_KEY","features":[366]},{"name":"REGSTR_VAL_DEFAULT","features":[366]},{"name":"REGSTR_VAL_DETCONFIG","features":[366]},{"name":"REGSTR_VAL_DETECT","features":[366]},{"name":"REGSTR_VAL_DETECTFUNC","features":[366]},{"name":"REGSTR_VAL_DETFLAGS","features":[366]},{"name":"REGSTR_VAL_DETFUNC","features":[366]},{"name":"REGSTR_VAL_DEVDESC","features":[366]},{"name":"REGSTR_VAL_DEVICEDRIVER","features":[366]},{"name":"REGSTR_VAL_DEVICEPATH","features":[366]},{"name":"REGSTR_VAL_DEVICE_CHARACTERISTICS","features":[366]},{"name":"REGSTR_VAL_DEVICE_EXCLUSIVE","features":[366]},{"name":"REGSTR_VAL_DEVICE_INSTANCE","features":[366]},{"name":"REGSTR_VAL_DEVICE_SECURITY_DESCRIPTOR","features":[366]},{"name":"REGSTR_VAL_DEVICE_TYPE","features":[366]},{"name":"REGSTR_VAL_DEVLOADER","features":[366]},{"name":"REGSTR_VAL_DEVTYPE","features":[366]},{"name":"REGSTR_VAL_DIRECTHOST","features":[366]},{"name":"REGSTR_VAL_DIRTYSHUTDOWN","features":[366]},{"name":"REGSTR_VAL_DIRTYSHUTDOWNTIME","features":[366]},{"name":"REGSTR_VAL_DISABLECOUNT","features":[366]},{"name":"REGSTR_VAL_DISABLEPWDCACHING","features":[366]},{"name":"REGSTR_VAL_DISABLEREGTOOLS","features":[366]},{"name":"REGSTR_VAL_DISCONNECT","features":[366]},{"name":"REGSTR_VAL_DISK","features":[366]},{"name":"REGSTR_VAL_DISKCLASSNAME","features":[366]},{"name":"REGSTR_VAL_DISPCPL_NOAPPEARANCEPAGE","features":[366]},{"name":"REGSTR_VAL_DISPCPL_NOBACKGROUNDPAGE","features":[366]},{"name":"REGSTR_VAL_DISPCPL_NODISPCPL","features":[366]},{"name":"REGSTR_VAL_DISPCPL_NOSCRSAVPAGE","features":[366]},{"name":"REGSTR_VAL_DISPCPL_NOSETTINGSPAGE","features":[366]},{"name":"REGSTR_VAL_DISPLAY","features":[366]},{"name":"REGSTR_VAL_DISPLAYFLAGS","features":[366]},{"name":"REGSTR_VAL_DOCKED","features":[366]},{"name":"REGSTR_VAL_DOCKSTATE","features":[366]},{"name":"REGSTR_VAL_DOES_POLLING","features":[366]},{"name":"REGSTR_VAL_DONTLOADIFCONFLICT","features":[366]},{"name":"REGSTR_VAL_DONTUSEMEM","features":[366]},{"name":"REGSTR_VAL_DOSCP","features":[366]},{"name":"REGSTR_VAL_DOSOPTFLAGS","features":[366]},{"name":"REGSTR_VAL_DOSOPTGLOBALFLAGS","features":[366]},{"name":"REGSTR_VAL_DOSOPTTIP","features":[366]},{"name":"REGSTR_VAL_DOSPAGER","features":[366]},{"name":"REGSTR_VAL_DOS_SPOOL_MASK","features":[366]},{"name":"REGSTR_VAL_DOUBLEBUFFER","features":[366]},{"name":"REGSTR_VAL_DPI","features":[366]},{"name":"REGSTR_VAL_DPILOGICALX","features":[366]},{"name":"REGSTR_VAL_DPILOGICALY","features":[366]},{"name":"REGSTR_VAL_DPIPHYSICALX","features":[366]},{"name":"REGSTR_VAL_DPIPHYSICALY","features":[366]},{"name":"REGSTR_VAL_DPMS","features":[366]},{"name":"REGSTR_VAL_DRIVER","features":[366]},{"name":"REGSTR_VAL_DRIVERCACHEPATH","features":[366]},{"name":"REGSTR_VAL_DRIVERDATE","features":[366]},{"name":"REGSTR_VAL_DRIVERDATEDATA","features":[366]},{"name":"REGSTR_VAL_DRIVERVERSION","features":[366]},{"name":"REGSTR_VAL_DRIVESPINDOWN","features":[366]},{"name":"REGSTR_VAL_DRIVEWRITEBEHIND","features":[366]},{"name":"REGSTR_VAL_DRIVE_SPINDOWN","features":[366]},{"name":"REGSTR_VAL_DRV","features":[366]},{"name":"REGSTR_VAL_DRVDESC","features":[366]},{"name":"REGSTR_VAL_DYNAMIC","features":[366]},{"name":"REGSTR_VAL_EISA_FLAGS","features":[366]},{"name":"REGSTR_VAL_EISA_FUNCTIONS","features":[366]},{"name":"REGSTR_VAL_EISA_FUNCTIONS_MASK","features":[366]},{"name":"REGSTR_VAL_EISA_RANGES","features":[366]},{"name":"REGSTR_VAL_EISA_SIMULATE_INT15","features":[366]},{"name":"REGSTR_VAL_EJECT_PRIORITY","features":[366]},{"name":"REGSTR_VAL_ENABLEINTS","features":[366]},{"name":"REGSTR_VAL_ENUMERATOR","features":[366]},{"name":"REGSTR_VAL_ENUMPROPPAGES","features":[366]},{"name":"REGSTR_VAL_ENUMPROPPAGES_32","features":[366]},{"name":"REGSTR_VAL_ESDI","features":[366]},{"name":"REGSTR_VAL_EXISTS","features":[366]},{"name":"REGSTR_VAL_EXTMEM","features":[366]},{"name":"REGSTR_VAL_FAULT_LOGFILE","features":[366]},{"name":"REGSTR_VAL_FIFODEPTH","features":[366]},{"name":"REGSTR_VAL_FILESHARING","features":[366]},{"name":"REGSTR_VAL_FIRSTINSTALLDATETIME","features":[366]},{"name":"REGSTR_VAL_FIRSTNETDRIVE","features":[366]},{"name":"REGSTR_VAL_FLOP","features":[366]},{"name":"REGSTR_VAL_FLOPPY","features":[366]},{"name":"REGSTR_VAL_FONTSIZE","features":[366]},{"name":"REGSTR_VAL_FORCECL","features":[366]},{"name":"REGSTR_VAL_FORCEDCONFIG","features":[366]},{"name":"REGSTR_VAL_FORCEFIFO","features":[366]},{"name":"REGSTR_VAL_FORCELOAD","features":[366]},{"name":"REGSTR_VAL_FORCEPMIO","features":[366]},{"name":"REGSTR_VAL_FORCEREBOOT","features":[366]},{"name":"REGSTR_VAL_FORCERMIO","features":[366]},{"name":"REGSTR_VAL_FREESPACERATIO","features":[366]},{"name":"REGSTR_VAL_FRIENDLYNAME","features":[366]},{"name":"REGSTR_VAL_FSFILTERCLASS","features":[366]},{"name":"REGSTR_VAL_FULLTRACE","features":[366]},{"name":"REGSTR_VAL_FUNCDESC","features":[366]},{"name":"REGSTR_VAL_GAPTIME","features":[366]},{"name":"REGSTR_VAL_GRB","features":[366]},{"name":"REGSTR_VAL_HARDWAREID","features":[366]},{"name":"REGSTR_VAL_HIDESHAREPWDS","features":[366]},{"name":"REGSTR_VAL_HRES","features":[366]},{"name":"REGSTR_VAL_HWDETECT","features":[366]},{"name":"REGSTR_VAL_HWMECHANISM","features":[366]},{"name":"REGSTR_VAL_HWREV","features":[366]},{"name":"REGSTR_VAL_ID","features":[366]},{"name":"REGSTR_VAL_IDE_FORCE_SERIALIZE","features":[366]},{"name":"REGSTR_VAL_IDE_NO_SERIALIZE","features":[366]},{"name":"REGSTR_VAL_INFNAME","features":[366]},{"name":"REGSTR_VAL_INFPATH","features":[366]},{"name":"REGSTR_VAL_INFSECTION","features":[366]},{"name":"REGSTR_VAL_INFSECTIONEXT","features":[366]},{"name":"REGSTR_VAL_INHIBITRESULTS","features":[366]},{"name":"REGSTR_VAL_INSICON","features":[366]},{"name":"REGSTR_VAL_INSTALLER","features":[366]},{"name":"REGSTR_VAL_INSTALLER_32","features":[366]},{"name":"REGSTR_VAL_INSTALLTYPE","features":[366]},{"name":"REGSTR_VAL_INT13","features":[366]},{"name":"REGSTR_VAL_ISAPNP","features":[366]},{"name":"REGSTR_VAL_ISAPNP_RDP_OVERRIDE","features":[366]},{"name":"REGSTR_VAL_JOYCALLOUT","features":[366]},{"name":"REGSTR_VAL_JOYNCONFIG","features":[366]},{"name":"REGSTR_VAL_JOYNOEMCALLOUT","features":[366]},{"name":"REGSTR_VAL_JOYNOEMNAME","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL1","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL10","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL11","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL12","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL2","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL3","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL4","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL5","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL6","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL7","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL8","features":[366]},{"name":"REGSTR_VAL_JOYOEMCAL9","features":[366]},{"name":"REGSTR_VAL_JOYOEMCALCAP","features":[366]},{"name":"REGSTR_VAL_JOYOEMCALLOUT","features":[366]},{"name":"REGSTR_VAL_JOYOEMCALWINCAP","features":[366]},{"name":"REGSTR_VAL_JOYOEMDATA","features":[366]},{"name":"REGSTR_VAL_JOYOEMNAME","features":[366]},{"name":"REGSTR_VAL_JOYOEMPOVLABEL","features":[366]},{"name":"REGSTR_VAL_JOYOEMRLABEL","features":[366]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONCAP","features":[366]},{"name":"REGSTR_VAL_JOYOEMTESTBUTTONDESC","features":[366]},{"name":"REGSTR_VAL_JOYOEMTESTMOVECAP","features":[366]},{"name":"REGSTR_VAL_JOYOEMTESTMOVEDESC","features":[366]},{"name":"REGSTR_VAL_JOYOEMTESTWINCAP","features":[366]},{"name":"REGSTR_VAL_JOYOEMULABEL","features":[366]},{"name":"REGSTR_VAL_JOYOEMVLABEL","features":[366]},{"name":"REGSTR_VAL_JOYOEMXYLABEL","features":[366]},{"name":"REGSTR_VAL_JOYOEMZLABEL","features":[366]},{"name":"REGSTR_VAL_JOYUSERVALUES","features":[366]},{"name":"REGSTR_VAL_LASTALIVEBT","features":[366]},{"name":"REGSTR_VAL_LASTALIVEINTERVAL","features":[366]},{"name":"REGSTR_VAL_LASTALIVEPMPOLICY","features":[366]},{"name":"REGSTR_VAL_LASTALIVESTAMP","features":[366]},{"name":"REGSTR_VAL_LASTALIVESTAMPFORCED","features":[366]},{"name":"REGSTR_VAL_LASTALIVESTAMPINTERVAL","features":[366]},{"name":"REGSTR_VAL_LASTALIVESTAMPPOLICYINTERVAL","features":[366]},{"name":"REGSTR_VAL_LASTALIVEUPTIME","features":[366]},{"name":"REGSTR_VAL_LASTBOOTPMDRVS","features":[366]},{"name":"REGSTR_VAL_LASTCOMPUTERNAME","features":[366]},{"name":"REGSTR_VAL_LASTPCIBUSNUM","features":[366]},{"name":"REGSTR_VAL_LAST_UPDATE_TIME","features":[366]},{"name":"REGSTR_VAL_LEGALNOTICECAPTION","features":[366]},{"name":"REGSTR_VAL_LEGALNOTICETEXT","features":[366]},{"name":"REGSTR_VAL_LICENSINGINFO","features":[366]},{"name":"REGSTR_VAL_LINKED","features":[366]},{"name":"REGSTR_VAL_LOADHI","features":[366]},{"name":"REGSTR_VAL_LOADRMDRIVERS","features":[366]},{"name":"REGSTR_VAL_LOCATION_INFORMATION","features":[366]},{"name":"REGSTR_VAL_LOCATION_INFORMATION_OVERRIDE","features":[366]},{"name":"REGSTR_VAL_LOWERFILTERS","features":[366]},{"name":"REGSTR_VAL_LOWER_FILTER_DEFAULT_LEVEL","features":[366]},{"name":"REGSTR_VAL_LOWER_FILTER_LEVELS","features":[366]},{"name":"REGSTR_VAL_MACHINETYPE","features":[366]},{"name":"REGSTR_VAL_MANUFACTURER","features":[366]},{"name":"REGSTR_VAL_MAP","features":[366]},{"name":"REGSTR_VAL_MATCHINGDEVID","features":[366]},{"name":"REGSTR_VAL_MAXCONNECTIONS","features":[366]},{"name":"REGSTR_VAL_MAXLIP","features":[366]},{"name":"REGSTR_VAL_MAXRES","features":[366]},{"name":"REGSTR_VAL_MAXRETRY","features":[366]},{"name":"REGSTR_VAL_MAX_HCID_LEN","features":[366]},{"name":"REGSTR_VAL_MEDIA","features":[366]},{"name":"REGSTR_VAL_MFG","features":[366]},{"name":"REGSTR_VAL_MF_FLAGS","features":[366]},{"name":"REGSTR_VAL_MINIPORT_STAT","features":[366]},{"name":"REGSTR_VAL_MINPWDLEN","features":[366]},{"name":"REGSTR_VAL_MINRETRY","features":[366]},{"name":"REGSTR_VAL_MODE","features":[366]},{"name":"REGSTR_VAL_MODEL","features":[366]},{"name":"REGSTR_VAL_MSDOSMODE","features":[366]},{"name":"REGSTR_VAL_MSDOSMODEDISCARD","features":[366]},{"name":"REGSTR_VAL_MUSTBEVALIDATED","features":[366]},{"name":"REGSTR_VAL_NAMECACHECOUNT","features":[366]},{"name":"REGSTR_VAL_NAMENUMERICTAIL","features":[366]},{"name":"REGSTR_VAL_NCP_BROWSEMASTER","features":[366]},{"name":"REGSTR_VAL_NCP_USEPEERBROWSING","features":[366]},{"name":"REGSTR_VAL_NCP_USESAP","features":[366]},{"name":"REGSTR_VAL_NDP","features":[366]},{"name":"REGSTR_VAL_NETCARD","features":[366]},{"name":"REGSTR_VAL_NETCLEAN","features":[366]},{"name":"REGSTR_VAL_NETOSTYPE","features":[366]},{"name":"REGSTR_VAL_NETSETUP_DISABLE","features":[366]},{"name":"REGSTR_VAL_NETSETUP_NOCONFIGPAGE","features":[366]},{"name":"REGSTR_VAL_NETSETUP_NOIDPAGE","features":[366]},{"name":"REGSTR_VAL_NETSETUP_NOSECURITYPAGE","features":[366]},{"name":"REGSTR_VAL_NOCMOSORFDPT","features":[366]},{"name":"REGSTR_VAL_NODISPLAYCLASS","features":[366]},{"name":"REGSTR_VAL_NOENTIRENETWORK","features":[366]},{"name":"REGSTR_VAL_NOFILESHARING","features":[366]},{"name":"REGSTR_VAL_NOFILESHARINGCTRL","features":[366]},{"name":"REGSTR_VAL_NOIDE","features":[366]},{"name":"REGSTR_VAL_NOINSTALLCLASS","features":[366]},{"name":"REGSTR_VAL_NONSTANDARD_ATAPI","features":[366]},{"name":"REGSTR_VAL_NOPRINTSHARING","features":[366]},{"name":"REGSTR_VAL_NOPRINTSHARINGCTRL","features":[366]},{"name":"REGSTR_VAL_NOUSECLASS","features":[366]},{"name":"REGSTR_VAL_NOWORKGROUPCONTENTS","features":[366]},{"name":"REGSTR_VAL_OLDMSDOSVER","features":[366]},{"name":"REGSTR_VAL_OLDWINDIR","features":[366]},{"name":"REGSTR_VAL_OPTIMIZESFN","features":[366]},{"name":"REGSTR_VAL_OPTIONS","features":[366]},{"name":"REGSTR_VAL_OPTORDER","features":[366]},{"name":"REGSTR_VAL_P1284MDL","features":[366]},{"name":"REGSTR_VAL_P1284MFG","features":[366]},{"name":"REGSTR_VAL_PATHCACHECOUNT","features":[366]},{"name":"REGSTR_VAL_PCCARD_POWER","features":[366]},{"name":"REGSTR_VAL_PCI","features":[366]},{"name":"REGSTR_VAL_PCIBIOSVER","features":[366]},{"name":"REGSTR_VAL_PCICIRQMAP","features":[366]},{"name":"REGSTR_VAL_PCICOPTIONS","features":[366]},{"name":"REGSTR_VAL_PCMCIA_ALLOC","features":[366]},{"name":"REGSTR_VAL_PCMCIA_ATAD","features":[366]},{"name":"REGSTR_VAL_PCMCIA_MEM","features":[366]},{"name":"REGSTR_VAL_PCMCIA_OPT","features":[366]},{"name":"REGSTR_VAL_PCMCIA_SIZ","features":[366]},{"name":"REGSTR_VAL_PCMTDRIVER","features":[366]},{"name":"REGSTR_VAL_PCSSDRIVER","features":[366]},{"name":"REGSTR_VAL_PHYSICALDEVICEOBJECT","features":[366]},{"name":"REGSTR_VAL_PMODE_INT13","features":[366]},{"name":"REGSTR_VAL_PNPBIOSVER","features":[366]},{"name":"REGSTR_VAL_PNPSTRUCOFFSET","features":[366]},{"name":"REGSTR_VAL_POLICY","features":[366]},{"name":"REGSTR_VAL_POLLING","features":[366]},{"name":"REGSTR_VAL_PORTNAME","features":[366]},{"name":"REGSTR_VAL_PORTSUBCLASS","features":[366]},{"name":"REGSTR_VAL_PREFREDIR","features":[366]},{"name":"REGSTR_VAL_PRESERVECASE","features":[366]},{"name":"REGSTR_VAL_PRESERVELONGNAMES","features":[366]},{"name":"REGSTR_VAL_PRINTERS_HIDETABS","features":[366]},{"name":"REGSTR_VAL_PRINTERS_MASK","features":[366]},{"name":"REGSTR_VAL_PRINTERS_NOADD","features":[366]},{"name":"REGSTR_VAL_PRINTERS_NODELETE","features":[366]},{"name":"REGSTR_VAL_PRINTSHARING","features":[366]},{"name":"REGSTR_VAL_PRIORITY","features":[366]},{"name":"REGSTR_VAL_PRIVATE","features":[366]},{"name":"REGSTR_VAL_PRIVATEFUNC","features":[366]},{"name":"REGSTR_VAL_PRIVATEPROBLEM","features":[366]},{"name":"REGSTR_VAL_PRODUCTID","features":[366]},{"name":"REGSTR_VAL_PRODUCTTYPE","features":[366]},{"name":"REGSTR_VAL_PROFILEFLAGS","features":[366]},{"name":"REGSTR_VAL_PROPERTIES","features":[366]},{"name":"REGSTR_VAL_PROTINIPATH","features":[366]},{"name":"REGSTR_VAL_PROVIDER_NAME","features":[366]},{"name":"REGSTR_VAL_PWDEXPIRATION","features":[366]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEORDER","features":[366]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWD","features":[366]},{"name":"REGSTR_VAL_PWDPROVIDER_CHANGEPWDHWND","features":[366]},{"name":"REGSTR_VAL_PWDPROVIDER_DESC","features":[366]},{"name":"REGSTR_VAL_PWDPROVIDER_GETPWDSTATUS","features":[366]},{"name":"REGSTR_VAL_PWDPROVIDER_ISNP","features":[366]},{"name":"REGSTR_VAL_PWDPROVIDER_PATH","features":[366]},{"name":"REGSTR_VAL_RDINTTHRESHOLD","features":[366]},{"name":"REGSTR_VAL_READAHEADTHRESHOLD","features":[366]},{"name":"REGSTR_VAL_READCACHING","features":[366]},{"name":"REGSTR_VAL_REALNETSTART","features":[366]},{"name":"REGSTR_VAL_REASONCODE","features":[366]},{"name":"REGSTR_VAL_REFRESHRATE","features":[366]},{"name":"REGSTR_VAL_REGITEMDELETEMESSAGE","features":[366]},{"name":"REGSTR_VAL_REGORGANIZATION","features":[366]},{"name":"REGSTR_VAL_REGOWNER","features":[366]},{"name":"REGSTR_VAL_REINSTALL_DEVICEINSTANCEIDS","features":[366]},{"name":"REGSTR_VAL_REINSTALL_DISPLAYNAME","features":[366]},{"name":"REGSTR_VAL_REINSTALL_STRING","features":[366]},{"name":"REGSTR_VAL_REMOTE_PATH","features":[366]},{"name":"REGSTR_VAL_REMOVABLE","features":[366]},{"name":"REGSTR_VAL_REMOVAL_POLICY","features":[366]},{"name":"REGSTR_VAL_REMOVEROMOKAY","features":[366]},{"name":"REGSTR_VAL_REMOVEROMOKAYFUNC","features":[366]},{"name":"REGSTR_VAL_RESERVED_DEVNODE","features":[366]},{"name":"REGSTR_VAL_RESOLUTION","features":[366]},{"name":"REGSTR_VAL_RESOURCES","features":[366]},{"name":"REGSTR_VAL_RESOURCE_MAP","features":[366]},{"name":"REGSTR_VAL_RESOURCE_PICKER_EXCEPTIONS","features":[366]},{"name":"REGSTR_VAL_RESOURCE_PICKER_TAGS","features":[366]},{"name":"REGSTR_VAL_RESTRICTRUN","features":[366]},{"name":"REGSTR_VAL_RESUMERESET","features":[366]},{"name":"REGSTR_VAL_REVISION","features":[366]},{"name":"REGSTR_VAL_REVLEVEL","features":[366]},{"name":"REGSTR_VAL_ROOT_DEVNODE","features":[366]},{"name":"REGSTR_VAL_RUNLOGINSCRIPT","features":[366]},{"name":"REGSTR_VAL_SCANNER","features":[366]},{"name":"REGSTR_VAL_SCAN_ONLY_FIRST","features":[366]},{"name":"REGSTR_VAL_SCSI","features":[366]},{"name":"REGSTR_VAL_SCSILUN","features":[366]},{"name":"REGSTR_VAL_SCSITID","features":[366]},{"name":"REGSTR_VAL_SEARCHMODE","features":[366]},{"name":"REGSTR_VAL_SEARCHOPTIONS","features":[366]},{"name":"REGSTR_VAL_SECCPL_NOADMINPAGE","features":[366]},{"name":"REGSTR_VAL_SECCPL_NOPROFILEPAGE","features":[366]},{"name":"REGSTR_VAL_SECCPL_NOPWDPAGE","features":[366]},{"name":"REGSTR_VAL_SECCPL_NOSECCPL","features":[366]},{"name":"REGSTR_VAL_SERVICE","features":[366]},{"name":"REGSTR_VAL_SETUPFLAGS","features":[366]},{"name":"REGSTR_VAL_SETUPMACHINETYPE","features":[366]},{"name":"REGSTR_VAL_SETUPN","features":[366]},{"name":"REGSTR_VAL_SETUPNPATH","features":[366]},{"name":"REGSTR_VAL_SETUPPROGRAMRAN","features":[366]},{"name":"REGSTR_VAL_SHARES_FLAGS","features":[366]},{"name":"REGSTR_VAL_SHARES_PATH","features":[366]},{"name":"REGSTR_VAL_SHARES_REMARK","features":[366]},{"name":"REGSTR_VAL_SHARES_RO_PASS","features":[366]},{"name":"REGSTR_VAL_SHARES_RW_PASS","features":[366]},{"name":"REGSTR_VAL_SHARES_TYPE","features":[366]},{"name":"REGSTR_VAL_SHARE_IRQ","features":[366]},{"name":"REGSTR_VAL_SHELLVERSION","features":[366]},{"name":"REGSTR_VAL_SHOWDOTS","features":[366]},{"name":"REGSTR_VAL_SHOWREASONUI","features":[366]},{"name":"REGSTR_VAL_SHUTDOWNREASON","features":[366]},{"name":"REGSTR_VAL_SHUTDOWNREASON_CODE","features":[366]},{"name":"REGSTR_VAL_SHUTDOWNREASON_COMMENT","features":[366]},{"name":"REGSTR_VAL_SHUTDOWNREASON_PROCESS","features":[366]},{"name":"REGSTR_VAL_SHUTDOWNREASON_USERNAME","features":[366]},{"name":"REGSTR_VAL_SHUTDOWN_FLAGS","features":[366]},{"name":"REGSTR_VAL_SHUTDOWN_IGNORE_PREDEFINED","features":[366]},{"name":"REGSTR_VAL_SHUTDOWN_STATE_SNAPSHOT","features":[366]},{"name":"REGSTR_VAL_SILENTINSTALL","features":[366]},{"name":"REGSTR_VAL_SLSUPPORT","features":[366]},{"name":"REGSTR_VAL_SOFTCOMPATMODE","features":[366]},{"name":"REGSTR_VAL_SRCPATH","features":[366]},{"name":"REGSTR_VAL_SRVNAMECACHE","features":[366]},{"name":"REGSTR_VAL_SRVNAMECACHECOUNT","features":[366]},{"name":"REGSTR_VAL_SRVNAMECACHENETPROV","features":[366]},{"name":"REGSTR_VAL_START_ON_BOOT","features":[366]},{"name":"REGSTR_VAL_STAT","features":[366]},{"name":"REGSTR_VAL_STATICDRIVE","features":[366]},{"name":"REGSTR_VAL_STATICVXD","features":[366]},{"name":"REGSTR_VAL_STDDOSOPTION","features":[366]},{"name":"REGSTR_VAL_SUBMODEL","features":[366]},{"name":"REGSTR_VAL_SUPPORTBURST","features":[366]},{"name":"REGSTR_VAL_SUPPORTLFN","features":[366]},{"name":"REGSTR_VAL_SUPPORTTUNNELLING","features":[366]},{"name":"REGSTR_VAL_SYMBOLIC_LINK","features":[366]},{"name":"REGSTR_VAL_SYNCDATAXFER","features":[366]},{"name":"REGSTR_VAL_SYSDM","features":[366]},{"name":"REGSTR_VAL_SYSDMFUNC","features":[366]},{"name":"REGSTR_VAL_SYSTEMCPL_NOCONFIGPAGE","features":[366]},{"name":"REGSTR_VAL_SYSTEMCPL_NODEVMGRPAGE","features":[366]},{"name":"REGSTR_VAL_SYSTEMCPL_NOFILESYSPAGE","features":[366]},{"name":"REGSTR_VAL_SYSTEMCPL_NOVIRTMEMPAGE","features":[366]},{"name":"REGSTR_VAL_SYSTEMROOT","features":[366]},{"name":"REGSTR_VAL_SYSTRAYBATFLAGS","features":[366]},{"name":"REGSTR_VAL_SYSTRAYPCCARDFLAGS","features":[366]},{"name":"REGSTR_VAL_SYSTRAYSVCS","features":[366]},{"name":"REGSTR_VAL_TABLE_STAT","features":[366]},{"name":"REGSTR_VAL_TAPE","features":[366]},{"name":"REGSTR_VAL_TRANSITION","features":[366]},{"name":"REGSTR_VAL_TRANSPORT","features":[366]},{"name":"REGSTR_VAL_TZACTBIAS","features":[366]},{"name":"REGSTR_VAL_TZBIAS","features":[366]},{"name":"REGSTR_VAL_TZDLTBIAS","features":[366]},{"name":"REGSTR_VAL_TZDLTFLAG","features":[366]},{"name":"REGSTR_VAL_TZDLTNAME","features":[366]},{"name":"REGSTR_VAL_TZDLTSTART","features":[366]},{"name":"REGSTR_VAL_TZNOAUTOTIME","features":[366]},{"name":"REGSTR_VAL_TZNOCHANGEEND","features":[366]},{"name":"REGSTR_VAL_TZNOCHANGESTART","features":[366]},{"name":"REGSTR_VAL_TZSTDBIAS","features":[366]},{"name":"REGSTR_VAL_TZSTDNAME","features":[366]},{"name":"REGSTR_VAL_TZSTDSTART","features":[366]},{"name":"REGSTR_VAL_UI_NUMBER","features":[366]},{"name":"REGSTR_VAL_UI_NUMBER_DESC_FORMAT","features":[366]},{"name":"REGSTR_VAL_UNDOCK_WITHOUT_LOGON","features":[366]},{"name":"REGSTR_VAL_UNINSTALLER_COMMANDLINE","features":[366]},{"name":"REGSTR_VAL_UNINSTALLER_DISPLAYNAME","features":[366]},{"name":"REGSTR_VAL_UPGRADE","features":[366]},{"name":"REGSTR_VAL_UPPERFILTERS","features":[366]},{"name":"REGSTR_VAL_UPPER_FILTER_DEFAULT_LEVEL","features":[366]},{"name":"REGSTR_VAL_UPPER_FILTER_LEVELS","features":[366]},{"name":"REGSTR_VAL_USERSETTINGS","features":[366]},{"name":"REGSTR_VAL_USER_NAME","features":[366]},{"name":"REGSTR_VAL_USRDRVLET","features":[366]},{"name":"REGSTR_VAL_VDD","features":[366]},{"name":"REGSTR_VAL_VER","features":[366]},{"name":"REGSTR_VAL_VERIFYKEY","features":[366]},{"name":"REGSTR_VAL_VIRTUALHDIRQ","features":[366]},{"name":"REGSTR_VAL_VOLIDLETIMEOUT","features":[366]},{"name":"REGSTR_VAL_VPOWERDFLAGS","features":[366]},{"name":"REGSTR_VAL_VRES","features":[366]},{"name":"REGSTR_VAL_VXDGROUPS","features":[366]},{"name":"REGSTR_VAL_WAITFORUNDOCK","features":[366]},{"name":"REGSTR_VAL_WAITFORUNDOCKFUNC","features":[366]},{"name":"REGSTR_VAL_WIN31FILESYSTEM","features":[366]},{"name":"REGSTR_VAL_WIN31PROVIDER","features":[366]},{"name":"REGSTR_VAL_WINBOOTDIR","features":[366]},{"name":"REGSTR_VAL_WINCP","features":[366]},{"name":"REGSTR_VAL_WINDIR","features":[366]},{"name":"REGSTR_VAL_WINOLDAPP_DISABLED","features":[366]},{"name":"REGSTR_VAL_WINOLDAPP_NOREALMODE","features":[366]},{"name":"REGSTR_VAL_WORKGROUP","features":[366]},{"name":"REGSTR_VAL_WRAPPER","features":[366]},{"name":"REGSTR_VAL_WRINTTHRESHOLD","features":[366]},{"name":"REGSTR_VAL_WRKGRP_FORCEMAPPING","features":[366]},{"name":"REGSTR_VAL_WRKGRP_REQUIRED","features":[366]},{"name":"REG_BINARY","features":[366]},{"name":"REG_CREATED_NEW_KEY","features":[366]},{"name":"REG_CREATE_KEY_DISPOSITION","features":[366]},{"name":"REG_DWORD","features":[366]},{"name":"REG_DWORD_BIG_ENDIAN","features":[366]},{"name":"REG_DWORD_LITTLE_ENDIAN","features":[366]},{"name":"REG_EXPAND_SZ","features":[366]},{"name":"REG_FORCE_RESTORE","features":[366]},{"name":"REG_FULL_RESOURCE_DESCRIPTOR","features":[366]},{"name":"REG_KEY_INSTDEV","features":[366]},{"name":"REG_LATEST_FORMAT","features":[366]},{"name":"REG_LINK","features":[366]},{"name":"REG_MUI_STRING_TRUNCATE","features":[366]},{"name":"REG_MULTI_SZ","features":[366]},{"name":"REG_NONE","features":[366]},{"name":"REG_NOTIFY_CHANGE_ATTRIBUTES","features":[366]},{"name":"REG_NOTIFY_CHANGE_LAST_SET","features":[366]},{"name":"REG_NOTIFY_CHANGE_NAME","features":[366]},{"name":"REG_NOTIFY_CHANGE_SECURITY","features":[366]},{"name":"REG_NOTIFY_FILTER","features":[366]},{"name":"REG_NOTIFY_THREAD_AGNOSTIC","features":[366]},{"name":"REG_NO_COMPRESSION","features":[366]},{"name":"REG_OPENED_EXISTING_KEY","features":[366]},{"name":"REG_OPEN_CREATE_OPTIONS","features":[366]},{"name":"REG_OPTION_BACKUP_RESTORE","features":[366]},{"name":"REG_OPTION_CREATE_LINK","features":[366]},{"name":"REG_OPTION_DONT_VIRTUALIZE","features":[366]},{"name":"REG_OPTION_NON_VOLATILE","features":[366]},{"name":"REG_OPTION_OPEN_LINK","features":[366]},{"name":"REG_OPTION_RESERVED","features":[366]},{"name":"REG_OPTION_VOLATILE","features":[366]},{"name":"REG_PROCESS_APPKEY","features":[366]},{"name":"REG_PROVIDER","features":[366]},{"name":"REG_QWORD","features":[366]},{"name":"REG_QWORD_LITTLE_ENDIAN","features":[366]},{"name":"REG_RESOURCE_LIST","features":[366]},{"name":"REG_RESOURCE_REQUIREMENTS_LIST","features":[366]},{"name":"REG_RESTORE_KEY_FLAGS","features":[366]},{"name":"REG_ROUTINE_FLAGS","features":[366]},{"name":"REG_SAM_FLAGS","features":[366]},{"name":"REG_SAVE_FORMAT","features":[366]},{"name":"REG_SECURE_CONNECTION","features":[366]},{"name":"REG_STANDARD_FORMAT","features":[366]},{"name":"REG_SZ","features":[366]},{"name":"REG_USE_CURRENT_SECURITY_CONTEXT","features":[366]},{"name":"REG_VALUE_TYPE","features":[366]},{"name":"REG_WHOLE_HIVE_VOLATILE","features":[366]},{"name":"RRF_NOEXPAND","features":[366]},{"name":"RRF_RT_ANY","features":[366]},{"name":"RRF_RT_DWORD","features":[366]},{"name":"RRF_RT_QWORD","features":[366]},{"name":"RRF_RT_REG_BINARY","features":[366]},{"name":"RRF_RT_REG_DWORD","features":[366]},{"name":"RRF_RT_REG_EXPAND_SZ","features":[366]},{"name":"RRF_RT_REG_MULTI_SZ","features":[366]},{"name":"RRF_RT_REG_NONE","features":[366]},{"name":"RRF_RT_REG_QWORD","features":[366]},{"name":"RRF_RT_REG_SZ","features":[366]},{"name":"RRF_SUBKEY_WOW6432KEY","features":[366]},{"name":"RRF_SUBKEY_WOW6464KEY","features":[366]},{"name":"RRF_WOW64_MASK","features":[366]},{"name":"RRF_ZEROONFAILURE","features":[366]},{"name":"RegCloseKey","features":[305,366]},{"name":"RegConnectRegistryA","features":[305,366]},{"name":"RegConnectRegistryExA","features":[366]},{"name":"RegConnectRegistryExW","features":[366]},{"name":"RegConnectRegistryW","features":[305,366]},{"name":"RegCopyTreeA","features":[305,366]},{"name":"RegCopyTreeW","features":[305,366]},{"name":"RegCreateKeyA","features":[305,366]},{"name":"RegCreateKeyExA","features":[305,308,366]},{"name":"RegCreateKeyExW","features":[305,308,366]},{"name":"RegCreateKeyTransactedA","features":[305,308,366]},{"name":"RegCreateKeyTransactedW","features":[305,308,366]},{"name":"RegCreateKeyW","features":[305,366]},{"name":"RegDeleteKeyA","features":[305,366]},{"name":"RegDeleteKeyExA","features":[305,366]},{"name":"RegDeleteKeyExW","features":[305,366]},{"name":"RegDeleteKeyTransactedA","features":[305,366]},{"name":"RegDeleteKeyTransactedW","features":[305,366]},{"name":"RegDeleteKeyValueA","features":[305,366]},{"name":"RegDeleteKeyValueW","features":[305,366]},{"name":"RegDeleteKeyW","features":[305,366]},{"name":"RegDeleteTreeA","features":[305,366]},{"name":"RegDeleteTreeW","features":[305,366]},{"name":"RegDeleteValueA","features":[305,366]},{"name":"RegDeleteValueW","features":[305,366]},{"name":"RegDisablePredefinedCache","features":[305,366]},{"name":"RegDisablePredefinedCacheEx","features":[305,366]},{"name":"RegDisableReflectionKey","features":[305,366]},{"name":"RegEnableReflectionKey","features":[305,366]},{"name":"RegEnumKeyA","features":[305,366]},{"name":"RegEnumKeyExA","features":[305,366]},{"name":"RegEnumKeyExW","features":[305,366]},{"name":"RegEnumKeyW","features":[305,366]},{"name":"RegEnumValueA","features":[305,366]},{"name":"RegEnumValueW","features":[305,366]},{"name":"RegFlushKey","features":[305,366]},{"name":"RegGetKeySecurity","features":[305,308,366]},{"name":"RegGetValueA","features":[305,366]},{"name":"RegGetValueW","features":[305,366]},{"name":"RegLoadAppKeyA","features":[305,366]},{"name":"RegLoadAppKeyW","features":[305,366]},{"name":"RegLoadKeyA","features":[305,366]},{"name":"RegLoadKeyW","features":[305,366]},{"name":"RegLoadMUIStringA","features":[305,366]},{"name":"RegLoadMUIStringW","features":[305,366]},{"name":"RegNotifyChangeKeyValue","features":[305,366]},{"name":"RegOpenCurrentUser","features":[305,366]},{"name":"RegOpenKeyA","features":[305,366]},{"name":"RegOpenKeyExA","features":[305,366]},{"name":"RegOpenKeyExW","features":[305,366]},{"name":"RegOpenKeyTransactedA","features":[305,366]},{"name":"RegOpenKeyTransactedW","features":[305,366]},{"name":"RegOpenKeyW","features":[305,366]},{"name":"RegOpenUserClassesRoot","features":[305,366]},{"name":"RegOverridePredefKey","features":[305,366]},{"name":"RegQueryInfoKeyA","features":[305,366]},{"name":"RegQueryInfoKeyW","features":[305,366]},{"name":"RegQueryMultipleValuesA","features":[305,366]},{"name":"RegQueryMultipleValuesW","features":[305,366]},{"name":"RegQueryReflectionKey","features":[305,366]},{"name":"RegQueryValueA","features":[305,366]},{"name":"RegQueryValueExA","features":[305,366]},{"name":"RegQueryValueExW","features":[305,366]},{"name":"RegQueryValueW","features":[305,366]},{"name":"RegRenameKey","features":[305,366]},{"name":"RegReplaceKeyA","features":[305,366]},{"name":"RegReplaceKeyW","features":[305,366]},{"name":"RegRestoreKeyA","features":[305,366]},{"name":"RegRestoreKeyW","features":[305,366]},{"name":"RegSaveKeyA","features":[305,308,366]},{"name":"RegSaveKeyExA","features":[305,308,366]},{"name":"RegSaveKeyExW","features":[305,308,366]},{"name":"RegSaveKeyW","features":[305,308,366]},{"name":"RegSetKeySecurity","features":[305,308,366]},{"name":"RegSetKeyValueA","features":[305,366]},{"name":"RegSetKeyValueW","features":[305,366]},{"name":"RegSetValueA","features":[305,366]},{"name":"RegSetValueExA","features":[305,366]},{"name":"RegSetValueExW","features":[305,366]},{"name":"RegSetValueW","features":[305,366]},{"name":"RegUnLoadKeyA","features":[305,366]},{"name":"RegUnLoadKeyW","features":[305,366]},{"name":"SUF_BATCHINF","features":[366]},{"name":"SUF_CLEAN","features":[366]},{"name":"SUF_EXPRESS","features":[366]},{"name":"SUF_FIRSTTIME","features":[366]},{"name":"SUF_INSETUP","features":[366]},{"name":"SUF_NETHDBOOT","features":[366]},{"name":"SUF_NETRPLBOOT","features":[366]},{"name":"SUF_NETSETUP","features":[366]},{"name":"SUF_SBSCOPYOK","features":[366]},{"name":"VALENTA","features":[366]},{"name":"VALENTW","features":[366]},{"name":"VPDF_DISABLEPWRMGMT","features":[366]},{"name":"VPDF_DISABLEPWRSTATUSPOLL","features":[366]},{"name":"VPDF_DISABLERINGRESUME","features":[366]},{"name":"VPDF_FORCEAPM10MODE","features":[366]},{"name":"VPDF_SHOWMULTIBATT","features":[366]},{"name":"VPDF_SKIPINTELSLCHECK","features":[366]},{"name":"val_context","features":[366]}],"598":[{"name":"DISPID_EVENT_ON_CONTEXT_DATA","features":[578]},{"name":"DISPID_EVENT_ON_SEND_ERROR","features":[578]},{"name":"DISPID_EVENT_ON_STATE_CHANGED","features":[578]},{"name":"DISPID_EVENT_ON_TERMINATION","features":[578]},{"name":"DRendezvousSessionEvents","features":[356,578]},{"name":"IRendezvousApplication","features":[578]},{"name":"IRendezvousSession","features":[578]},{"name":"RENDEZVOUS_SESSION_FLAGS","features":[578]},{"name":"RENDEZVOUS_SESSION_STATE","features":[578]},{"name":"RSF_INVITEE","features":[578]},{"name":"RSF_INVITER","features":[578]},{"name":"RSF_NONE","features":[578]},{"name":"RSF_ORIGINAL_INVITER","features":[578]},{"name":"RSF_REMOTE_LEGACYSESSION","features":[578]},{"name":"RSF_REMOTE_WIN7SESSION","features":[578]},{"name":"RSS_ACCEPTED","features":[578]},{"name":"RSS_CANCELLED","features":[578]},{"name":"RSS_CONNECTED","features":[578]},{"name":"RSS_DECLINED","features":[578]},{"name":"RSS_INVITATION","features":[578]},{"name":"RSS_READY","features":[578]},{"name":"RSS_TERMINATED","features":[578]},{"name":"RSS_UNKNOWN","features":[578]},{"name":"RendezvousApplication","features":[578]}],"599":[{"name":"AAAccountingData","features":[460]},{"name":"AAAccountingDataType","features":[460]},{"name":"AAAuthSchemes","features":[460]},{"name":"AATrustClassID","features":[460]},{"name":"AA_AUTH_ANY","features":[460]},{"name":"AA_AUTH_BASIC","features":[460]},{"name":"AA_AUTH_CONID","features":[460]},{"name":"AA_AUTH_COOKIE","features":[460]},{"name":"AA_AUTH_DIGEST","features":[460]},{"name":"AA_AUTH_LOGGEDONCREDENTIALS","features":[460]},{"name":"AA_AUTH_MAX","features":[460]},{"name":"AA_AUTH_MIN","features":[460]},{"name":"AA_AUTH_NEGOTIATE","features":[460]},{"name":"AA_AUTH_NTLM","features":[460]},{"name":"AA_AUTH_ORGID","features":[460]},{"name":"AA_AUTH_SC","features":[460]},{"name":"AA_AUTH_SSPI_NTLM","features":[460]},{"name":"AA_MAIN_SESSION_CLOSED","features":[460]},{"name":"AA_MAIN_SESSION_CREATION","features":[460]},{"name":"AA_SUB_SESSION_CLOSED","features":[460]},{"name":"AA_SUB_SESSION_CREATION","features":[460]},{"name":"AA_TRUSTEDUSER_TRUSTEDCLIENT","features":[460]},{"name":"AA_TRUSTEDUSER_UNTRUSTEDCLIENT","features":[460]},{"name":"AA_UNTRUSTED","features":[460]},{"name":"ACQUIRE_TARGET_LOCK_TIMEOUT","features":[460]},{"name":"ADsTSUserEx","features":[460]},{"name":"AE_CURRENT_POSITION","features":[460]},{"name":"AE_POSITION_FLAGS","features":[460]},{"name":"AllowOnlySDRServers","features":[460]},{"name":"BITMAP_RENDERER_STATISTICS","features":[460]},{"name":"CHANNEL_BUFFER_SIZE","features":[460]},{"name":"CHANNEL_CHUNK_LENGTH","features":[460]},{"name":"CHANNEL_DEF","features":[460]},{"name":"CHANNEL_ENTRY_POINTS","features":[460]},{"name":"CHANNEL_EVENT_CONNECTED","features":[460]},{"name":"CHANNEL_EVENT_DATA_RECEIVED","features":[460]},{"name":"CHANNEL_EVENT_DISCONNECTED","features":[460]},{"name":"CHANNEL_EVENT_INITIALIZED","features":[460]},{"name":"CHANNEL_EVENT_TERMINATED","features":[460]},{"name":"CHANNEL_EVENT_V1_CONNECTED","features":[460]},{"name":"CHANNEL_EVENT_WRITE_CANCELLED","features":[460]},{"name":"CHANNEL_EVENT_WRITE_COMPLETE","features":[460]},{"name":"CHANNEL_FLAG_FAIL","features":[460]},{"name":"CHANNEL_FLAG_FIRST","features":[460]},{"name":"CHANNEL_FLAG_LAST","features":[460]},{"name":"CHANNEL_FLAG_MIDDLE","features":[460]},{"name":"CHANNEL_MAX_COUNT","features":[460]},{"name":"CHANNEL_NAME_LEN","features":[460]},{"name":"CHANNEL_OPTION_COMPRESS","features":[460]},{"name":"CHANNEL_OPTION_COMPRESS_RDP","features":[460]},{"name":"CHANNEL_OPTION_ENCRYPT_CS","features":[460]},{"name":"CHANNEL_OPTION_ENCRYPT_RDP","features":[460]},{"name":"CHANNEL_OPTION_ENCRYPT_SC","features":[460]},{"name":"CHANNEL_OPTION_INITIALIZED","features":[460]},{"name":"CHANNEL_OPTION_PRI_HIGH","features":[460]},{"name":"CHANNEL_OPTION_PRI_LOW","features":[460]},{"name":"CHANNEL_OPTION_PRI_MED","features":[460]},{"name":"CHANNEL_OPTION_REMOTE_CONTROL_PERSISTENT","features":[460]},{"name":"CHANNEL_OPTION_SHOW_PROTOCOL","features":[460]},{"name":"CHANNEL_PDU_HEADER","features":[460]},{"name":"CHANNEL_RC_ALREADY_CONNECTED","features":[460]},{"name":"CHANNEL_RC_ALREADY_INITIALIZED","features":[460]},{"name":"CHANNEL_RC_ALREADY_OPEN","features":[460]},{"name":"CHANNEL_RC_BAD_CHANNEL","features":[460]},{"name":"CHANNEL_RC_BAD_CHANNEL_HANDLE","features":[460]},{"name":"CHANNEL_RC_BAD_INIT_HANDLE","features":[460]},{"name":"CHANNEL_RC_BAD_PROC","features":[460]},{"name":"CHANNEL_RC_INITIALIZATION_ERROR","features":[460]},{"name":"CHANNEL_RC_INVALID_INSTANCE","features":[460]},{"name":"CHANNEL_RC_NOT_CONNECTED","features":[460]},{"name":"CHANNEL_RC_NOT_INITIALIZED","features":[460]},{"name":"CHANNEL_RC_NOT_IN_VIRTUALCHANNELENTRY","features":[460]},{"name":"CHANNEL_RC_NOT_OPEN","features":[460]},{"name":"CHANNEL_RC_NO_BUFFER","features":[460]},{"name":"CHANNEL_RC_NO_MEMORY","features":[460]},{"name":"CHANNEL_RC_NULL_DATA","features":[460]},{"name":"CHANNEL_RC_OK","features":[460]},{"name":"CHANNEL_RC_TOO_MANY_CHANNELS","features":[460]},{"name":"CHANNEL_RC_UNKNOWN_CHANNEL_NAME","features":[460]},{"name":"CHANNEL_RC_UNSUPPORTED_VERSION","features":[460]},{"name":"CHANNEL_RC_ZERO_LENGTH","features":[460]},{"name":"CLIENTADDRESS_LENGTH","features":[460]},{"name":"CLIENTNAME_LENGTH","features":[460]},{"name":"CLIENT_DISPLAY","features":[460]},{"name":"CLIENT_MESSAGE_CONNECTION_ERROR","features":[460]},{"name":"CLIENT_MESSAGE_CONNECTION_INVALID","features":[460]},{"name":"CLIENT_MESSAGE_CONNECTION_STATUS","features":[460]},{"name":"CLIENT_MESSAGE_TYPE","features":[460]},{"name":"CONNECTION_CHANGE_NOTIFICATION","features":[460]},{"name":"CONNECTION_PROPERTY_CURSOR_BLINK_DISABLED","features":[460]},{"name":"CONNECTION_PROPERTY_IDLE_TIME_WARNING","features":[460]},{"name":"CONNECTION_REQUEST_CANCELLED","features":[460]},{"name":"CONNECTION_REQUEST_FAILED","features":[460]},{"name":"CONNECTION_REQUEST_INVALID","features":[460]},{"name":"CONNECTION_REQUEST_LB_COMPLETED","features":[460]},{"name":"CONNECTION_REQUEST_ORCH_COMPLETED","features":[460]},{"name":"CONNECTION_REQUEST_PENDING","features":[460]},{"name":"CONNECTION_REQUEST_QUERY_PL_COMPLETED","features":[460]},{"name":"CONNECTION_REQUEST_SUCCEEDED","features":[460]},{"name":"CONNECTION_REQUEST_TIMEDOUT","features":[460]},{"name":"ClipboardRedirectionDisabled","features":[460]},{"name":"DISPID_AX_ADMINMESSAGERECEIVED","features":[460]},{"name":"DISPID_AX_AUTORECONNECTED","features":[460]},{"name":"DISPID_AX_AUTORECONNECTING","features":[460]},{"name":"DISPID_AX_CONNECTED","features":[460]},{"name":"DISPID_AX_CONNECTING","features":[460]},{"name":"DISPID_AX_DIALOGDISMISSED","features":[460]},{"name":"DISPID_AX_DIALOGDISPLAYING","features":[460]},{"name":"DISPID_AX_DISCONNECTED","features":[460]},{"name":"DISPID_AX_KEYCOMBINATIONPRESSED","features":[460]},{"name":"DISPID_AX_LOGINCOMPLETED","features":[460]},{"name":"DISPID_AX_NETWORKSTATUSCHANGED","features":[460]},{"name":"DISPID_AX_REMOTEDESKTOPSIZECHANGED","features":[460]},{"name":"DISPID_AX_STATUSCHANGED","features":[460]},{"name":"DISPID_AX_TOUCHPOINTERCURSORMOVED","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_APPLY_SETTINGS","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_ATTACH_EVENT","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_CONNECT","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DELETE_SAVED_CREDENTIALS","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DETACH_EVENT","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_DISCONNECT","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_EXECUTE_REMOTE_ACTION","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_RDPPROPERTY","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_SNAPSHOT","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RECONNECT","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RESUME_SCREEN_UPDATES","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_RETRIEVE_SETTINGS","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SET_RDPPROPERTY","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_SUSPEND_SCREEN_UPDATES","features":[460]},{"name":"DISPID_METHOD_REMOTEDESKTOPCLIENT_UPDATE_SESSION_DISPLAYSETTINGS","features":[460]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_ACTIONS","features":[460]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_SETTINGS","features":[460]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_ENABLED","features":[460]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_EVENTSENABLED","features":[460]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_POINTERSPEED","features":[460]},{"name":"DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCH_POINTER","features":[460]},{"name":"DOMAIN_LENGTH","features":[460]},{"name":"DisableAllRedirections","features":[460]},{"name":"DriveRedirectionDisabled","features":[460]},{"name":"EnableAllRedirections","features":[460]},{"name":"FARM","features":[460]},{"name":"FORCE_REJOIN","features":[460]},{"name":"FORCE_REJOIN_IN_CLUSTERMODE","features":[460]},{"name":"IADsTSUserEx","features":[356,460]},{"name":"IAudioDeviceEndpoint","features":[460]},{"name":"IAudioEndpoint","features":[460]},{"name":"IAudioEndpointControl","features":[460]},{"name":"IAudioEndpointRT","features":[460]},{"name":"IAudioInputEndpointRT","features":[460]},{"name":"IAudioOutputEndpointRT","features":[460]},{"name":"IRemoteDesktopClient","features":[356,460]},{"name":"IRemoteDesktopClientActions","features":[356,460]},{"name":"IRemoteDesktopClientSettings","features":[356,460]},{"name":"IRemoteDesktopClientTouchPointer","features":[356,460]},{"name":"IRemoteSystemAdditionalInfoProvider","features":[460]},{"name":"ITSGAccountingEngine","features":[460]},{"name":"ITSGAuthenticateUserSink","features":[460]},{"name":"ITSGAuthenticationEngine","features":[460]},{"name":"ITSGAuthorizeConnectionSink","features":[460]},{"name":"ITSGAuthorizeResourceSink","features":[460]},{"name":"ITSGPolicyEngine","features":[460]},{"name":"ITsSbBaseNotifySink","features":[460]},{"name":"ITsSbClientConnection","features":[460]},{"name":"ITsSbClientConnectionPropertySet","features":[429,460]},{"name":"ITsSbEnvironment","features":[460]},{"name":"ITsSbEnvironmentPropertySet","features":[429,460]},{"name":"ITsSbFilterPluginStore","features":[460]},{"name":"ITsSbGenericNotifySink","features":[460]},{"name":"ITsSbGlobalStore","features":[460]},{"name":"ITsSbLoadBalanceResult","features":[460]},{"name":"ITsSbLoadBalancing","features":[460]},{"name":"ITsSbLoadBalancingNotifySink","features":[460]},{"name":"ITsSbOrchestration","features":[460]},{"name":"ITsSbOrchestrationNotifySink","features":[460]},{"name":"ITsSbPlacement","features":[460]},{"name":"ITsSbPlacementNotifySink","features":[460]},{"name":"ITsSbPlugin","features":[460]},{"name":"ITsSbPluginNotifySink","features":[460]},{"name":"ITsSbPluginPropertySet","features":[429,460]},{"name":"ITsSbPropertySet","features":[429,460]},{"name":"ITsSbProvider","features":[460]},{"name":"ITsSbProvisioning","features":[460]},{"name":"ITsSbProvisioningPluginNotifySink","features":[460]},{"name":"ITsSbResourceNotification","features":[460]},{"name":"ITsSbResourceNotificationEx","features":[460]},{"name":"ITsSbResourcePlugin","features":[460]},{"name":"ITsSbResourcePluginStore","features":[460]},{"name":"ITsSbServiceNotification","features":[460]},{"name":"ITsSbSession","features":[460]},{"name":"ITsSbTarget","features":[460]},{"name":"ITsSbTargetPropertySet","features":[429,460]},{"name":"ITsSbTaskInfo","features":[460]},{"name":"ITsSbTaskPlugin","features":[460]},{"name":"ITsSbTaskPluginNotifySink","features":[460]},{"name":"IWRdsEnhancedFastReconnectArbitrator","features":[460]},{"name":"IWRdsGraphicsChannel","features":[460]},{"name":"IWRdsGraphicsChannelEvents","features":[460]},{"name":"IWRdsGraphicsChannelManager","features":[460]},{"name":"IWRdsProtocolConnection","features":[460]},{"name":"IWRdsProtocolConnectionCallback","features":[460]},{"name":"IWRdsProtocolConnectionSettings","features":[460]},{"name":"IWRdsProtocolLicenseConnection","features":[460]},{"name":"IWRdsProtocolListener","features":[460]},{"name":"IWRdsProtocolListenerCallback","features":[460]},{"name":"IWRdsProtocolLogonErrorRedirector","features":[460]},{"name":"IWRdsProtocolManager","features":[460]},{"name":"IWRdsProtocolSettings","features":[460]},{"name":"IWRdsProtocolShadowCallback","features":[460]},{"name":"IWRdsProtocolShadowConnection","features":[460]},{"name":"IWRdsWddmIddProps","features":[460]},{"name":"IWRdsWddmIddProps1","features":[460]},{"name":"IWTSBitmapRenderService","features":[460]},{"name":"IWTSBitmapRenderer","features":[460]},{"name":"IWTSBitmapRendererCallback","features":[460]},{"name":"IWTSListener","features":[460]},{"name":"IWTSListenerCallback","features":[460]},{"name":"IWTSPlugin","features":[460]},{"name":"IWTSPluginServiceProvider","features":[460]},{"name":"IWTSProtocolConnection","features":[460]},{"name":"IWTSProtocolConnectionCallback","features":[460]},{"name":"IWTSProtocolLicenseConnection","features":[460]},{"name":"IWTSProtocolListener","features":[460]},{"name":"IWTSProtocolListenerCallback","features":[460]},{"name":"IWTSProtocolLogonErrorRedirector","features":[460]},{"name":"IWTSProtocolManager","features":[460]},{"name":"IWTSProtocolShadowCallback","features":[460]},{"name":"IWTSProtocolShadowConnection","features":[460]},{"name":"IWTSSBPlugin","features":[460]},{"name":"IWTSVirtualChannel","features":[460]},{"name":"IWTSVirtualChannelCallback","features":[460]},{"name":"IWTSVirtualChannelManager","features":[460]},{"name":"IWorkspace","features":[460]},{"name":"IWorkspace2","features":[460]},{"name":"IWorkspace3","features":[460]},{"name":"IWorkspaceClientExt","features":[460]},{"name":"IWorkspaceRegistration","features":[460]},{"name":"IWorkspaceRegistration2","features":[460]},{"name":"IWorkspaceReportMessage","features":[460]},{"name":"IWorkspaceResTypeRegistry","features":[356,460]},{"name":"IWorkspaceScriptable","features":[356,460]},{"name":"IWorkspaceScriptable2","features":[356,460]},{"name":"IWorkspaceScriptable3","features":[356,460]},{"name":"ItsPubPlugin","features":[460]},{"name":"ItsPubPlugin2","features":[460]},{"name":"KEEP_EXISTING_SESSIONS","features":[460]},{"name":"KeyCombinationDown","features":[460]},{"name":"KeyCombinationHome","features":[460]},{"name":"KeyCombinationLeft","features":[460]},{"name":"KeyCombinationRight","features":[460]},{"name":"KeyCombinationScroll","features":[460]},{"name":"KeyCombinationType","features":[460]},{"name":"KeyCombinationUp","features":[460]},{"name":"LOAD_BALANCING_PLUGIN","features":[460]},{"name":"MAX_DATE_TIME_LENGTH","features":[460]},{"name":"MAX_ELAPSED_TIME_LENGTH","features":[460]},{"name":"MAX_POLICY_ATTRIBUTES","features":[460]},{"name":"MaxAppName_Len","features":[460]},{"name":"MaxDomainName_Len","features":[460]},{"name":"MaxFQDN_Len","features":[460]},{"name":"MaxFarm_Len","features":[460]},{"name":"MaxNetBiosName_Len","features":[460]},{"name":"MaxNumOfExposed_IPs","features":[460]},{"name":"MaxUserName_Len","features":[460]},{"name":"NONFARM","features":[460]},{"name":"NOTIFY_FOR_ALL_SESSIONS","features":[460]},{"name":"NOTIFY_FOR_THIS_SESSION","features":[460]},{"name":"ORCHESTRATION_PLUGIN","features":[460]},{"name":"OWNER_MS_TS_PLUGIN","features":[460]},{"name":"OWNER_MS_VM_PLUGIN","features":[460]},{"name":"OWNER_UNKNOWN","features":[460]},{"name":"PCHANNEL_INIT_EVENT_FN","features":[460]},{"name":"PCHANNEL_OPEN_EVENT_FN","features":[460]},{"name":"PLACEMENT_PLUGIN","features":[460]},{"name":"PLUGIN_CAPABILITY_EXTERNAL_REDIRECTION","features":[460]},{"name":"PLUGIN_TYPE","features":[460]},{"name":"POLICY_PLUGIN","features":[460]},{"name":"POSITION_CONTINUOUS","features":[460]},{"name":"POSITION_DISCONTINUOUS","features":[460]},{"name":"POSITION_INVALID","features":[460]},{"name":"POSITION_QPC_ERROR","features":[460]},{"name":"PRODUCTINFO_COMPANYNAME_LENGTH","features":[460]},{"name":"PRODUCTINFO_PRODUCTID_LENGTH","features":[460]},{"name":"PRODUCT_INFOA","features":[460]},{"name":"PRODUCT_INFOW","features":[460]},{"name":"PROPERTY_DYNAMIC_TIME_ZONE_INFORMATION","features":[460]},{"name":"PROPERTY_TYPE_ENABLE_UNIVERSAL_APPS_FOR_CUSTOM_SHELL","features":[460]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT","features":[460]},{"name":"PROPERTY_TYPE_GET_FAST_RECONNECT_USER_SID","features":[460]},{"name":"PROVISIONING_PLUGIN","features":[460]},{"name":"PVIRTUALCHANNELCLOSE","features":[460]},{"name":"PVIRTUALCHANNELENTRY","features":[305,460]},{"name":"PVIRTUALCHANNELINIT","features":[460]},{"name":"PVIRTUALCHANNELOPEN","features":[460]},{"name":"PVIRTUALCHANNELWRITE","features":[460]},{"name":"PasswordEncodingType","features":[460]},{"name":"PasswordEncodingUTF16BE","features":[460]},{"name":"PasswordEncodingUTF16LE","features":[460]},{"name":"PasswordEncodingUTF8","features":[460]},{"name":"PnpRedirectionDisabled","features":[460]},{"name":"PolicyAttributeType","features":[460]},{"name":"PortRedirectionDisabled","features":[460]},{"name":"PrinterRedirectionDisabled","features":[460]},{"name":"ProcessIdToSessionId","features":[305,460]},{"name":"RDCLIENT_BITMAP_RENDER_SERVICE","features":[460]},{"name":"RDV_TASK_STATUS","features":[460]},{"name":"RDV_TASK_STATUS_APPLYING","features":[460]},{"name":"RDV_TASK_STATUS_DOWNLOADING","features":[460]},{"name":"RDV_TASK_STATUS_FAILED","features":[460]},{"name":"RDV_TASK_STATUS_REBOOTED","features":[460]},{"name":"RDV_TASK_STATUS_REBOOTING","features":[460]},{"name":"RDV_TASK_STATUS_SEARCHING","features":[460]},{"name":"RDV_TASK_STATUS_SUCCESS","features":[460]},{"name":"RDV_TASK_STATUS_TIMEOUT","features":[460]},{"name":"RDV_TASK_STATUS_UNKNOWN","features":[460]},{"name":"RD_FARM_AUTO_PERSONAL_RDSH","features":[460]},{"name":"RD_FARM_AUTO_PERSONAL_VM","features":[460]},{"name":"RD_FARM_MANUAL_PERSONAL_RDSH","features":[460]},{"name":"RD_FARM_MANUAL_PERSONAL_VM","features":[460]},{"name":"RD_FARM_RDSH","features":[460]},{"name":"RD_FARM_TEMP_VM","features":[460]},{"name":"RD_FARM_TYPE","features":[460]},{"name":"RD_FARM_TYPE_UNKNOWN","features":[460]},{"name":"REMOTECONTROL_KBDALT_HOTKEY","features":[460]},{"name":"REMOTECONTROL_KBDCTRL_HOTKEY","features":[460]},{"name":"REMOTECONTROL_KBDSHIFT_HOTKEY","features":[460]},{"name":"RENDER_HINT_CLEAR","features":[460]},{"name":"RENDER_HINT_MAPPEDWINDOW","features":[460]},{"name":"RENDER_HINT_VIDEO","features":[460]},{"name":"RESERVED_FOR_LEGACY","features":[460]},{"name":"RESOURCE_PLUGIN","features":[460]},{"name":"RFX_CLIENT_ID_LENGTH","features":[460]},{"name":"RFX_GFX_MAX_SUPPORTED_MONITORS","features":[460]},{"name":"RFX_GFX_MONITOR_INFO","features":[305,460]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST","features":[460]},{"name":"RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE","features":[305,460]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM","features":[460]},{"name":"RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY","features":[460]},{"name":"RFX_GFX_MSG_DESKTOP_INPUT_RESET","features":[460]},{"name":"RFX_GFX_MSG_DESKTOP_RESEND_REQUEST","features":[460]},{"name":"RFX_GFX_MSG_DISCONNECT_NOTIFY","features":[460]},{"name":"RFX_GFX_MSG_HEADER","features":[460]},{"name":"RFX_GFX_MSG_PREFIX","features":[460]},{"name":"RFX_GFX_MSG_PREFIX_MASK","features":[460]},{"name":"RFX_GFX_MSG_RDP_DATA","features":[460]},{"name":"RFX_GFX_RECT","features":[460]},{"name":"RFX_RDP_MSG_PREFIX","features":[460]},{"name":"RemoteActionAppSwitch","features":[460]},{"name":"RemoteActionAppbar","features":[460]},{"name":"RemoteActionCharms","features":[460]},{"name":"RemoteActionSnap","features":[460]},{"name":"RemoteActionStartScreen","features":[460]},{"name":"RemoteActionType","features":[460]},{"name":"SB_SYNCH_CONFLICT_MAX_WRITE_ATTEMPTS","features":[460]},{"name":"SESSION_TIMEOUT_ACTION_DISCONNECT","features":[460]},{"name":"SESSION_TIMEOUT_ACTION_SILENT_REAUTH","features":[460]},{"name":"SESSION_TIMEOUT_ACTION_TYPE","features":[460]},{"name":"SINGLE_SESSION","features":[460]},{"name":"STATE_ACTIVE","features":[460]},{"name":"STATE_CONNECTED","features":[460]},{"name":"STATE_CONNECTQUERY","features":[460]},{"name":"STATE_DISCONNECTED","features":[460]},{"name":"STATE_DOWN","features":[460]},{"name":"STATE_IDLE","features":[460]},{"name":"STATE_INIT","features":[460]},{"name":"STATE_INVALID","features":[460]},{"name":"STATE_LISTEN","features":[460]},{"name":"STATE_MAX","features":[460]},{"name":"STATE_RESET","features":[460]},{"name":"STATE_SHADOW","features":[460]},{"name":"SnapshotEncodingDataUri","features":[460]},{"name":"SnapshotEncodingType","features":[460]},{"name":"SnapshotFormatBmp","features":[460]},{"name":"SnapshotFormatJpeg","features":[460]},{"name":"SnapshotFormatPng","features":[460]},{"name":"SnapshotFormatType","features":[460]},{"name":"TARGET_CHANGE_TYPE","features":[460]},{"name":"TARGET_CHANGE_UNSPEC","features":[460]},{"name":"TARGET_CHECKED_OUT","features":[460]},{"name":"TARGET_DOWN","features":[460]},{"name":"TARGET_EXTERNALIP_CHANGED","features":[460]},{"name":"TARGET_FARM_MEMBERSHIP_CHANGED","features":[460]},{"name":"TARGET_HIBERNATED","features":[460]},{"name":"TARGET_IDLE","features":[460]},{"name":"TARGET_INITIALIZING","features":[460]},{"name":"TARGET_INTERNALIP_CHANGED","features":[460]},{"name":"TARGET_INUSE","features":[460]},{"name":"TARGET_INVALID","features":[460]},{"name":"TARGET_JOINED","features":[460]},{"name":"TARGET_MAXSTATE","features":[460]},{"name":"TARGET_OWNER","features":[460]},{"name":"TARGET_PATCH_COMPLETED","features":[460]},{"name":"TARGET_PATCH_FAILED","features":[460]},{"name":"TARGET_PATCH_IN_PROGRESS","features":[460]},{"name":"TARGET_PATCH_NOT_STARTED","features":[460]},{"name":"TARGET_PATCH_STATE","features":[460]},{"name":"TARGET_PATCH_STATE_CHANGED","features":[460]},{"name":"TARGET_PATCH_UNKNOWN","features":[460]},{"name":"TARGET_PENDING","features":[460]},{"name":"TARGET_REMOVED","features":[460]},{"name":"TARGET_RUNNING","features":[460]},{"name":"TARGET_STARTING","features":[460]},{"name":"TARGET_STATE","features":[460]},{"name":"TARGET_STATE_CHANGED","features":[460]},{"name":"TARGET_STOPPED","features":[460]},{"name":"TARGET_STOPPING","features":[460]},{"name":"TARGET_TYPE","features":[460]},{"name":"TARGET_UNKNOWN","features":[460]},{"name":"TASK_PLUGIN","features":[460]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_EXISTING","features":[460]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_NEW","features":[460]},{"name":"TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE","features":[460]},{"name":"TSPUB_PLUGIN_PD_QUERY_EXISTING","features":[460]},{"name":"TSPUB_PLUGIN_PD_QUERY_OR_CREATE","features":[460]},{"name":"TSPUB_PLUGIN_PD_RESOLUTION_TYPE","features":[460]},{"name":"TSSB_NOTIFICATION_TYPE","features":[460]},{"name":"TSSB_NOTIFY_CONNECTION_REQUEST_CHANGE","features":[460]},{"name":"TSSB_NOTIFY_INVALID","features":[460]},{"name":"TSSB_NOTIFY_SESSION_CHANGE","features":[460]},{"name":"TSSB_NOTIFY_TARGET_CHANGE","features":[460]},{"name":"TSSD_ADDR_IPv4","features":[460]},{"name":"TSSD_ADDR_IPv6","features":[460]},{"name":"TSSD_ADDR_UNDEFINED","features":[460]},{"name":"TSSD_AddrV46Type","features":[460]},{"name":"TSSD_ConnectionPoint","features":[460]},{"name":"TSSESSION_STATE","features":[460]},{"name":"TSUserExInterfaces","features":[460]},{"name":"TS_SB_SORT_BY","features":[460]},{"name":"TS_SB_SORT_BY_NAME","features":[460]},{"name":"TS_SB_SORT_BY_NONE","features":[460]},{"name":"TS_SB_SORT_BY_PROP","features":[460]},{"name":"TS_VC_LISTENER_STATIC_CHANNEL","features":[460]},{"name":"UNKNOWN","features":[460]},{"name":"UNKNOWN_PLUGIN","features":[460]},{"name":"USERNAME_LENGTH","features":[460]},{"name":"VALIDATIONINFORMATION_HARDWAREID_LENGTH","features":[460]},{"name":"VALIDATIONINFORMATION_LICENSE_LENGTH","features":[460]},{"name":"VIRTUAL_CHANNEL_VERSION_WIN2000","features":[460]},{"name":"VM_HOST_NOTIFY_STATUS","features":[460]},{"name":"VM_HOST_STATUS_INIT_COMPLETE","features":[460]},{"name":"VM_HOST_STATUS_INIT_FAILED","features":[460]},{"name":"VM_HOST_STATUS_INIT_IN_PROGRESS","features":[460]},{"name":"VM_HOST_STATUS_INIT_PENDING","features":[460]},{"name":"VM_NOTIFY_ENTRY","features":[460]},{"name":"VM_NOTIFY_INFO","features":[460]},{"name":"VM_NOTIFY_STATUS","features":[460]},{"name":"VM_NOTIFY_STATUS_CANCELED","features":[460]},{"name":"VM_NOTIFY_STATUS_COMPLETE","features":[460]},{"name":"VM_NOTIFY_STATUS_FAILED","features":[460]},{"name":"VM_NOTIFY_STATUS_IN_PROGRESS","features":[460]},{"name":"VM_NOTIFY_STATUS_PENDING","features":[460]},{"name":"VM_PATCH_INFO","features":[460]},{"name":"WINSTATIONNAME_LENGTH","features":[460]},{"name":"WKS_FLAG_CLEAR_CREDS_ON_LAST_RESOURCE","features":[460]},{"name":"WKS_FLAG_CREDS_AUTHENTICATED","features":[460]},{"name":"WKS_FLAG_PASSWORD_ENCRYPTED","features":[460]},{"name":"WRDS_CLIENTADDRESS_LENGTH","features":[460]},{"name":"WRDS_CLIENTNAME_LENGTH","features":[460]},{"name":"WRDS_CLIENT_PRODUCT_ID_LENGTH","features":[460]},{"name":"WRDS_CONNECTION_SETTING","features":[305,460]},{"name":"WRDS_CONNECTION_SETTINGS","features":[305,460]},{"name":"WRDS_CONNECTION_SETTINGS_1","features":[305,460]},{"name":"WRDS_CONNECTION_SETTING_LEVEL","features":[460]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_1","features":[460]},{"name":"WRDS_CONNECTION_SETTING_LEVEL_INVALID","features":[460]},{"name":"WRDS_DEVICE_NAME_LENGTH","features":[460]},{"name":"WRDS_DIRECTORY_LENGTH","features":[460]},{"name":"WRDS_DOMAIN_LENGTH","features":[460]},{"name":"WRDS_DRIVER_NAME_LENGTH","features":[460]},{"name":"WRDS_DYNAMIC_TIME_ZONE_INFORMATION","features":[460]},{"name":"WRDS_IMEFILENAME_LENGTH","features":[460]},{"name":"WRDS_INITIALPROGRAM_LENGTH","features":[460]},{"name":"WRDS_KEY_EXCHANGE_ALG_DH","features":[460]},{"name":"WRDS_KEY_EXCHANGE_ALG_RSA","features":[460]},{"name":"WRDS_LICENSE_PREAMBLE_VERSION","features":[460]},{"name":"WRDS_LICENSE_PROTOCOL_VERSION","features":[460]},{"name":"WRDS_LISTENER_SETTING","features":[460]},{"name":"WRDS_LISTENER_SETTINGS","features":[460]},{"name":"WRDS_LISTENER_SETTINGS_1","features":[460]},{"name":"WRDS_LISTENER_SETTING_LEVEL","features":[460]},{"name":"WRDS_LISTENER_SETTING_LEVEL_1","features":[460]},{"name":"WRDS_LISTENER_SETTING_LEVEL_INVALID","features":[460]},{"name":"WRDS_MAX_CACHE_RESERVED","features":[460]},{"name":"WRDS_MAX_COUNTERS","features":[460]},{"name":"WRDS_MAX_DISPLAY_IOCTL_DATA","features":[460]},{"name":"WRDS_MAX_PROTOCOL_CACHE","features":[460]},{"name":"WRDS_MAX_RESERVED","features":[460]},{"name":"WRDS_PASSWORD_LENGTH","features":[460]},{"name":"WRDS_PERF_DISABLE_CURSORSETTINGS","features":[460]},{"name":"WRDS_PERF_DISABLE_CURSOR_SHADOW","features":[460]},{"name":"WRDS_PERF_DISABLE_FULLWINDOWDRAG","features":[460]},{"name":"WRDS_PERF_DISABLE_MENUANIMATIONS","features":[460]},{"name":"WRDS_PERF_DISABLE_NOTHING","features":[460]},{"name":"WRDS_PERF_DISABLE_THEMING","features":[460]},{"name":"WRDS_PERF_DISABLE_WALLPAPER","features":[460]},{"name":"WRDS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[460]},{"name":"WRDS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[460]},{"name":"WRDS_PERF_ENABLE_FONT_SMOOTHING","features":[460]},{"name":"WRDS_PROTOCOL_NAME_LENGTH","features":[460]},{"name":"WRDS_SERVICE_ID_GRAPHICS_GUID","features":[460]},{"name":"WRDS_SETTING","features":[305,460]},{"name":"WRDS_SETTINGS","features":[305,460]},{"name":"WRDS_SETTINGS_1","features":[305,460]},{"name":"WRDS_SETTING_LEVEL","features":[460]},{"name":"WRDS_SETTING_LEVEL_1","features":[460]},{"name":"WRDS_SETTING_LEVEL_INVALID","features":[460]},{"name":"WRDS_SETTING_STATUS","features":[460]},{"name":"WRDS_SETTING_STATUS_DISABLED","features":[460]},{"name":"WRDS_SETTING_STATUS_ENABLED","features":[460]},{"name":"WRDS_SETTING_STATUS_NOTAPPLICABLE","features":[460]},{"name":"WRDS_SETTING_STATUS_NOTCONFIGURED","features":[460]},{"name":"WRDS_SETTING_TYPE","features":[460]},{"name":"WRDS_SETTING_TYPE_INVALID","features":[460]},{"name":"WRDS_SETTING_TYPE_MACHINE","features":[460]},{"name":"WRDS_SETTING_TYPE_SAM","features":[460]},{"name":"WRDS_SETTING_TYPE_USER","features":[460]},{"name":"WRDS_USERNAME_LENGTH","features":[460]},{"name":"WRDS_VALUE_TYPE_BINARY","features":[460]},{"name":"WRDS_VALUE_TYPE_GUID","features":[460]},{"name":"WRDS_VALUE_TYPE_STRING","features":[460]},{"name":"WRDS_VALUE_TYPE_ULONG","features":[460]},{"name":"WRdsGraphicsChannelType","features":[460]},{"name":"WRdsGraphicsChannelType_BestEffortDelivery","features":[460]},{"name":"WRdsGraphicsChannelType_GuaranteedDelivery","features":[460]},{"name":"WRdsGraphicsChannels_LossyChannelMaxMessageSize","features":[460]},{"name":"WTSActive","features":[460]},{"name":"WTSApplicationName","features":[460]},{"name":"WTSCLIENTA","features":[460]},{"name":"WTSCLIENTW","features":[460]},{"name":"WTSCONFIGINFOA","features":[460]},{"name":"WTSCONFIGINFOW","features":[460]},{"name":"WTSClientAddress","features":[460]},{"name":"WTSClientBuildNumber","features":[460]},{"name":"WTSClientDirectory","features":[460]},{"name":"WTSClientDisplay","features":[460]},{"name":"WTSClientHardwareId","features":[460]},{"name":"WTSClientInfo","features":[460]},{"name":"WTSClientName","features":[460]},{"name":"WTSClientProductId","features":[460]},{"name":"WTSClientProtocolType","features":[460]},{"name":"WTSCloseServer","features":[305,460]},{"name":"WTSConfigInfo","features":[460]},{"name":"WTSConnectQuery","features":[460]},{"name":"WTSConnectSessionA","features":[305,460]},{"name":"WTSConnectSessionW","features":[305,460]},{"name":"WTSConnectState","features":[460]},{"name":"WTSConnected","features":[460]},{"name":"WTSCreateListenerA","features":[305,460]},{"name":"WTSCreateListenerW","features":[305,460]},{"name":"WTSDisconnectSession","features":[305,460]},{"name":"WTSDisconnected","features":[460]},{"name":"WTSDomainName","features":[460]},{"name":"WTSDown","features":[460]},{"name":"WTSEnableChildSessions","features":[305,460]},{"name":"WTSEnumerateListenersA","features":[305,460]},{"name":"WTSEnumerateListenersW","features":[305,460]},{"name":"WTSEnumerateProcessesA","features":[305,308,460]},{"name":"WTSEnumerateProcessesExA","features":[305,460]},{"name":"WTSEnumerateProcessesExW","features":[305,460]},{"name":"WTSEnumerateProcessesW","features":[305,308,460]},{"name":"WTSEnumerateServersA","features":[305,460]},{"name":"WTSEnumerateServersW","features":[305,460]},{"name":"WTSEnumerateSessionsA","features":[305,460]},{"name":"WTSEnumerateSessionsExA","features":[305,460]},{"name":"WTSEnumerateSessionsExW","features":[305,460]},{"name":"WTSEnumerateSessionsW","features":[305,460]},{"name":"WTSFreeMemory","features":[460]},{"name":"WTSFreeMemoryExA","features":[305,460]},{"name":"WTSFreeMemoryExW","features":[305,460]},{"name":"WTSGetActiveConsoleSessionId","features":[460]},{"name":"WTSGetChildSessionId","features":[305,460]},{"name":"WTSGetListenerSecurityA","features":[305,308,460]},{"name":"WTSGetListenerSecurityW","features":[305,308,460]},{"name":"WTSINFOA","features":[460]},{"name":"WTSINFOEXA","features":[460]},{"name":"WTSINFOEXW","features":[460]},{"name":"WTSINFOEX_LEVEL1_A","features":[460]},{"name":"WTSINFOEX_LEVEL1_W","features":[460]},{"name":"WTSINFOEX_LEVEL_A","features":[460]},{"name":"WTSINFOEX_LEVEL_W","features":[460]},{"name":"WTSINFOW","features":[460]},{"name":"WTSIdle","features":[460]},{"name":"WTSIdleTime","features":[460]},{"name":"WTSIncomingBytes","features":[460]},{"name":"WTSIncomingFrames","features":[460]},{"name":"WTSInit","features":[460]},{"name":"WTSInitialProgram","features":[460]},{"name":"WTSIsChildSessionsEnabled","features":[305,460]},{"name":"WTSIsRemoteSession","features":[460]},{"name":"WTSLISTENERCONFIGA","features":[460]},{"name":"WTSLISTENERCONFIGW","features":[460]},{"name":"WTSListen","features":[460]},{"name":"WTSLogoffSession","features":[305,460]},{"name":"WTSLogonTime","features":[460]},{"name":"WTSOEMId","features":[460]},{"name":"WTSOpenServerA","features":[305,460]},{"name":"WTSOpenServerExA","features":[305,460]},{"name":"WTSOpenServerExW","features":[305,460]},{"name":"WTSOpenServerW","features":[305,460]},{"name":"WTSOutgoingBytes","features":[460]},{"name":"WTSOutgoingFrames","features":[460]},{"name":"WTSQueryListenerConfigA","features":[305,460]},{"name":"WTSQueryListenerConfigW","features":[305,460]},{"name":"WTSQuerySessionInformationA","features":[305,460]},{"name":"WTSQuerySessionInformationW","features":[305,460]},{"name":"WTSQueryUserConfigA","features":[305,460]},{"name":"WTSQueryUserConfigW","features":[305,460]},{"name":"WTSQueryUserToken","features":[305,460]},{"name":"WTSRegisterSessionNotification","features":[305,460]},{"name":"WTSRegisterSessionNotificationEx","features":[305,460]},{"name":"WTSReset","features":[460]},{"name":"WTSSBX_ADDRESS_FAMILY","features":[460]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET","features":[460]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_INET6","features":[460]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_IPX","features":[460]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_NETBIOS","features":[460]},{"name":"WTSSBX_ADDRESS_FAMILY_AF_UNSPEC","features":[460]},{"name":"WTSSBX_IP_ADDRESS","features":[460]},{"name":"WTSSBX_MACHINE_CONNECT_INFO","features":[460]},{"name":"WTSSBX_MACHINE_DRAIN","features":[460]},{"name":"WTSSBX_MACHINE_DRAIN_OFF","features":[460]},{"name":"WTSSBX_MACHINE_DRAIN_ON","features":[460]},{"name":"WTSSBX_MACHINE_DRAIN_UNSPEC","features":[460]},{"name":"WTSSBX_MACHINE_INFO","features":[460]},{"name":"WTSSBX_MACHINE_SESSION_MODE","features":[460]},{"name":"WTSSBX_MACHINE_SESSION_MODE_MULTIPLE","features":[460]},{"name":"WTSSBX_MACHINE_SESSION_MODE_SINGLE","features":[460]},{"name":"WTSSBX_MACHINE_SESSION_MODE_UNSPEC","features":[460]},{"name":"WTSSBX_MACHINE_STATE","features":[460]},{"name":"WTSSBX_MACHINE_STATE_READY","features":[460]},{"name":"WTSSBX_MACHINE_STATE_SYNCHRONIZING","features":[460]},{"name":"WTSSBX_MACHINE_STATE_UNSPEC","features":[460]},{"name":"WTSSBX_NOTIFICATION_ADDED","features":[460]},{"name":"WTSSBX_NOTIFICATION_CHANGED","features":[460]},{"name":"WTSSBX_NOTIFICATION_REMOVED","features":[460]},{"name":"WTSSBX_NOTIFICATION_RESYNC","features":[460]},{"name":"WTSSBX_NOTIFICATION_TYPE","features":[460]},{"name":"WTSSBX_SESSION_INFO","features":[305,460]},{"name":"WTSSBX_SESSION_STATE","features":[460]},{"name":"WTSSBX_SESSION_STATE_ACTIVE","features":[460]},{"name":"WTSSBX_SESSION_STATE_DISCONNECTED","features":[460]},{"name":"WTSSBX_SESSION_STATE_UNSPEC","features":[460]},{"name":"WTSSESSION_NOTIFICATION","features":[460]},{"name":"WTSSendMessageA","features":[305,460,367]},{"name":"WTSSendMessageW","features":[305,460,367]},{"name":"WTSSessionAddressV4","features":[460]},{"name":"WTSSessionId","features":[460]},{"name":"WTSSessionInfo","features":[460]},{"name":"WTSSessionInfoEx","features":[460]},{"name":"WTSSetListenerSecurityA","features":[305,308,460]},{"name":"WTSSetListenerSecurityW","features":[305,308,460]},{"name":"WTSSetRenderHint","features":[305,460]},{"name":"WTSSetUserConfigA","features":[305,460]},{"name":"WTSSetUserConfigW","features":[305,460]},{"name":"WTSShadow","features":[460]},{"name":"WTSShutdownSystem","features":[305,460]},{"name":"WTSStartRemoteControlSessionA","features":[305,460]},{"name":"WTSStartRemoteControlSessionW","features":[305,460]},{"name":"WTSStopRemoteControlSession","features":[305,460]},{"name":"WTSTerminateProcess","features":[305,460]},{"name":"WTSTypeProcessInfoLevel0","features":[460]},{"name":"WTSTypeProcessInfoLevel1","features":[460]},{"name":"WTSTypeSessionInfoLevel1","features":[460]},{"name":"WTSUSERCONFIGA","features":[460]},{"name":"WTSUSERCONFIGW","features":[460]},{"name":"WTSUnRegisterSessionNotification","features":[305,460]},{"name":"WTSUnRegisterSessionNotificationEx","features":[305,460]},{"name":"WTSUserConfigBrokenTimeoutSettings","features":[460]},{"name":"WTSUserConfigInitialProgram","features":[460]},{"name":"WTSUserConfigModemCallbackPhoneNumber","features":[460]},{"name":"WTSUserConfigModemCallbackSettings","features":[460]},{"name":"WTSUserConfigReconnectSettings","features":[460]},{"name":"WTSUserConfigShadowingSettings","features":[460]},{"name":"WTSUserConfigSourceSAM","features":[460]},{"name":"WTSUserConfigTerminalServerHomeDir","features":[460]},{"name":"WTSUserConfigTerminalServerHomeDirDrive","features":[460]},{"name":"WTSUserConfigTerminalServerProfilePath","features":[460]},{"name":"WTSUserConfigTimeoutSettingsConnections","features":[460]},{"name":"WTSUserConfigTimeoutSettingsDisconnections","features":[460]},{"name":"WTSUserConfigTimeoutSettingsIdle","features":[460]},{"name":"WTSUserConfigUser","features":[460]},{"name":"WTSUserConfigWorkingDirectory","features":[460]},{"name":"WTSUserConfigfAllowLogonTerminalServer","features":[460]},{"name":"WTSUserConfigfDeviceClientDefaultPrinter","features":[460]},{"name":"WTSUserConfigfDeviceClientDrives","features":[460]},{"name":"WTSUserConfigfDeviceClientPrinters","features":[460]},{"name":"WTSUserConfigfInheritInitialProgram","features":[460]},{"name":"WTSUserConfigfTerminalServerRemoteHomeDir","features":[460]},{"name":"WTSUserName","features":[460]},{"name":"WTSValidationInfo","features":[460]},{"name":"WTSVirtualChannelClose","features":[305,460]},{"name":"WTSVirtualChannelOpen","features":[305,460]},{"name":"WTSVirtualChannelOpenEx","features":[305,460]},{"name":"WTSVirtualChannelPurgeInput","features":[305,460]},{"name":"WTSVirtualChannelPurgeOutput","features":[305,460]},{"name":"WTSVirtualChannelQuery","features":[305,460]},{"name":"WTSVirtualChannelRead","features":[305,460]},{"name":"WTSVirtualChannelWrite","features":[305,460]},{"name":"WTSVirtualClientData","features":[460]},{"name":"WTSVirtualFileHandle","features":[460]},{"name":"WTSWaitSystemEvent","features":[305,460]},{"name":"WTSWinStationName","features":[460]},{"name":"WTSWorkingDirectory","features":[460]},{"name":"WTS_CACHE_STATS","features":[460]},{"name":"WTS_CACHE_STATS_UN","features":[460]},{"name":"WTS_CERT_TYPE","features":[460]},{"name":"WTS_CERT_TYPE_INVALID","features":[460]},{"name":"WTS_CERT_TYPE_PROPRIETORY","features":[460]},{"name":"WTS_CERT_TYPE_X509","features":[460]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC","features":[460]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_NO_COMPRESS","features":[460]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_HIGH","features":[460]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_LOW","features":[460]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_MED","features":[460]},{"name":"WTS_CHANNEL_OPTION_DYNAMIC_PRI_REAL","features":[460]},{"name":"WTS_CLIENTADDRESS_LENGTH","features":[460]},{"name":"WTS_CLIENTNAME_LENGTH","features":[460]},{"name":"WTS_CLIENT_ADDRESS","features":[460]},{"name":"WTS_CLIENT_DATA","features":[305,460]},{"name":"WTS_CLIENT_DISPLAY","features":[460]},{"name":"WTS_CLIENT_PRODUCT_ID_LENGTH","features":[460]},{"name":"WTS_COMMENT_LENGTH","features":[460]},{"name":"WTS_CONFIG_CLASS","features":[460]},{"name":"WTS_CONFIG_SOURCE","features":[460]},{"name":"WTS_CONNECTSTATE_CLASS","features":[460]},{"name":"WTS_CURRENT_SERVER","features":[305,460]},{"name":"WTS_CURRENT_SERVER_HANDLE","features":[305,460]},{"name":"WTS_CURRENT_SERVER_NAME","features":[460]},{"name":"WTS_CURRENT_SESSION","features":[460]},{"name":"WTS_DEVICE_NAME_LENGTH","features":[460]},{"name":"WTS_DIRECTORY_LENGTH","features":[460]},{"name":"WTS_DISPLAY_IOCTL","features":[460]},{"name":"WTS_DOMAIN_LENGTH","features":[460]},{"name":"WTS_DRAIN_IN_DRAIN","features":[460]},{"name":"WTS_DRAIN_NOT_IN_DRAIN","features":[460]},{"name":"WTS_DRAIN_STATE_NONE","features":[460]},{"name":"WTS_DRIVER_NAME_LENGTH","features":[460]},{"name":"WTS_DRIVE_LENGTH","features":[460]},{"name":"WTS_EVENT_ALL","features":[460]},{"name":"WTS_EVENT_CONNECT","features":[460]},{"name":"WTS_EVENT_CREATE","features":[460]},{"name":"WTS_EVENT_DELETE","features":[460]},{"name":"WTS_EVENT_DISCONNECT","features":[460]},{"name":"WTS_EVENT_FLUSH","features":[460]},{"name":"WTS_EVENT_LICENSE","features":[460]},{"name":"WTS_EVENT_LOGOFF","features":[460]},{"name":"WTS_EVENT_LOGON","features":[460]},{"name":"WTS_EVENT_NONE","features":[460]},{"name":"WTS_EVENT_RENAME","features":[460]},{"name":"WTS_EVENT_STATECHANGE","features":[460]},{"name":"WTS_IMEFILENAME_LENGTH","features":[460]},{"name":"WTS_INFO_CLASS","features":[460]},{"name":"WTS_INITIALPROGRAM_LENGTH","features":[460]},{"name":"WTS_KEY_EXCHANGE_ALG_DH","features":[460]},{"name":"WTS_KEY_EXCHANGE_ALG_RSA","features":[460]},{"name":"WTS_LICENSE_CAPABILITIES","features":[305,460]},{"name":"WTS_LICENSE_PREAMBLE_VERSION","features":[460]},{"name":"WTS_LICENSE_PROTOCOL_VERSION","features":[460]},{"name":"WTS_LISTENER_CREATE","features":[460]},{"name":"WTS_LISTENER_NAME_LENGTH","features":[460]},{"name":"WTS_LISTENER_UPDATE","features":[460]},{"name":"WTS_LOGON_ERROR_REDIRECTOR_RESPONSE","features":[460]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW","features":[460]},{"name":"WTS_LOGON_ERR_HANDLED_DONT_SHOW_START_OVER","features":[460]},{"name":"WTS_LOGON_ERR_HANDLED_SHOW","features":[460]},{"name":"WTS_LOGON_ERR_INVALID","features":[460]},{"name":"WTS_LOGON_ERR_NOT_HANDLED","features":[460]},{"name":"WTS_MAX_CACHE_RESERVED","features":[460]},{"name":"WTS_MAX_COUNTERS","features":[460]},{"name":"WTS_MAX_DISPLAY_IOCTL_DATA","features":[460]},{"name":"WTS_MAX_PROTOCOL_CACHE","features":[460]},{"name":"WTS_MAX_RESERVED","features":[460]},{"name":"WTS_PASSWORD_LENGTH","features":[460]},{"name":"WTS_PERF_DISABLE_CURSORSETTINGS","features":[460]},{"name":"WTS_PERF_DISABLE_CURSOR_SHADOW","features":[460]},{"name":"WTS_PERF_DISABLE_FULLWINDOWDRAG","features":[460]},{"name":"WTS_PERF_DISABLE_MENUANIMATIONS","features":[460]},{"name":"WTS_PERF_DISABLE_NOTHING","features":[460]},{"name":"WTS_PERF_DISABLE_THEMING","features":[460]},{"name":"WTS_PERF_DISABLE_WALLPAPER","features":[460]},{"name":"WTS_PERF_ENABLE_DESKTOP_COMPOSITION","features":[460]},{"name":"WTS_PERF_ENABLE_ENHANCED_GRAPHICS","features":[460]},{"name":"WTS_PERF_ENABLE_FONT_SMOOTHING","features":[460]},{"name":"WTS_POLICY_DATA","features":[305,460]},{"name":"WTS_PROCESS_INFOA","features":[308,460]},{"name":"WTS_PROCESS_INFOW","features":[308,460]},{"name":"WTS_PROCESS_INFO_EXA","features":[308,460]},{"name":"WTS_PROCESS_INFO_EXW","features":[308,460]},{"name":"WTS_PROCESS_INFO_LEVEL_0","features":[460]},{"name":"WTS_PROCESS_INFO_LEVEL_1","features":[460]},{"name":"WTS_PROPERTY_DEFAULT_CONFIG","features":[460]},{"name":"WTS_PROPERTY_VALUE","features":[460]},{"name":"WTS_PROTOCOL_CACHE","features":[460]},{"name":"WTS_PROTOCOL_COUNTERS","features":[460]},{"name":"WTS_PROTOCOL_NAME_LENGTH","features":[460]},{"name":"WTS_PROTOCOL_STATUS","features":[460]},{"name":"WTS_PROTOCOL_TYPE_CONSOLE","features":[460]},{"name":"WTS_PROTOCOL_TYPE_ICA","features":[460]},{"name":"WTS_PROTOCOL_TYPE_RDP","features":[460]},{"name":"WTS_QUERY_ALLOWED_INITIAL_APP","features":[460]},{"name":"WTS_QUERY_AUDIOENUM_DLL","features":[460]},{"name":"WTS_QUERY_LOGON_SCREEN_SIZE","features":[460]},{"name":"WTS_QUERY_MF_FORMAT_SUPPORT","features":[460]},{"name":"WTS_RCM_DRAIN_STATE","features":[460]},{"name":"WTS_RCM_SERVICE_STATE","features":[460]},{"name":"WTS_SECURITY_ALL_ACCESS","features":[460]},{"name":"WTS_SECURITY_CONNECT","features":[460]},{"name":"WTS_SECURITY_CURRENT_GUEST_ACCESS","features":[460]},{"name":"WTS_SECURITY_CURRENT_USER_ACCESS","features":[460]},{"name":"WTS_SECURITY_DISCONNECT","features":[460]},{"name":"WTS_SECURITY_FLAGS","features":[460]},{"name":"WTS_SECURITY_GUEST_ACCESS","features":[460]},{"name":"WTS_SECURITY_LOGOFF","features":[460]},{"name":"WTS_SECURITY_LOGON","features":[460]},{"name":"WTS_SECURITY_MESSAGE","features":[460]},{"name":"WTS_SECURITY_QUERY_INFORMATION","features":[460]},{"name":"WTS_SECURITY_REMOTE_CONTROL","features":[460]},{"name":"WTS_SECURITY_RESET","features":[460]},{"name":"WTS_SECURITY_SET_INFORMATION","features":[460]},{"name":"WTS_SECURITY_USER_ACCESS","features":[460]},{"name":"WTS_SECURITY_VIRTUAL_CHANNELS","features":[460]},{"name":"WTS_SERVER_INFOA","features":[460]},{"name":"WTS_SERVER_INFOW","features":[460]},{"name":"WTS_SERVICE_NONE","features":[460]},{"name":"WTS_SERVICE_START","features":[460]},{"name":"WTS_SERVICE_STATE","features":[460]},{"name":"WTS_SERVICE_STOP","features":[460]},{"name":"WTS_SESSIONSTATE_LOCK","features":[460]},{"name":"WTS_SESSIONSTATE_UNKNOWN","features":[460]},{"name":"WTS_SESSIONSTATE_UNLOCK","features":[460]},{"name":"WTS_SESSION_ADDRESS","features":[460]},{"name":"WTS_SESSION_ID","features":[460]},{"name":"WTS_SESSION_INFOA","features":[460]},{"name":"WTS_SESSION_INFOW","features":[460]},{"name":"WTS_SESSION_INFO_1A","features":[460]},{"name":"WTS_SESSION_INFO_1W","features":[460]},{"name":"WTS_SMALL_RECT","features":[460]},{"name":"WTS_SOCKADDR","features":[460]},{"name":"WTS_SYSTEMTIME","features":[460]},{"name":"WTS_TIME_ZONE_INFORMATION","features":[460]},{"name":"WTS_TYPE_CLASS","features":[460]},{"name":"WTS_USERNAME_LENGTH","features":[460]},{"name":"WTS_USER_CREDENTIAL","features":[460]},{"name":"WTS_USER_DATA","features":[460]},{"name":"WTS_VALIDATION_INFORMATIONA","features":[460]},{"name":"WTS_VALIDATION_INFORMATIONW","features":[460]},{"name":"WTS_VALUE_TYPE_BINARY","features":[460]},{"name":"WTS_VALUE_TYPE_GUID","features":[460]},{"name":"WTS_VALUE_TYPE_STRING","features":[460]},{"name":"WTS_VALUE_TYPE_ULONG","features":[460]},{"name":"WTS_VIRTUAL_CLASS","features":[460]},{"name":"WTS_WSD_FASTREBOOT","features":[460]},{"name":"WTS_WSD_LOGOFF","features":[460]},{"name":"WTS_WSD_POWEROFF","features":[460]},{"name":"WTS_WSD_REBOOT","features":[460]},{"name":"WTS_WSD_SHUTDOWN","features":[460]},{"name":"Workspace","features":[460]},{"name":"_ITSWkspEvents","features":[356,460]},{"name":"pluginResource","features":[460]},{"name":"pluginResource2","features":[460]},{"name":"pluginResource2FileAssociation","features":[460]}],"600":[{"name":"ERROR_REDIRECT_LOCATION_INVALID","features":[579]},{"name":"ERROR_REDIRECT_LOCATION_TOO_LONG","features":[579]},{"name":"ERROR_SERVICE_CBT_HARDENING_INVALID","features":[579]},{"name":"ERROR_WINRS_CLIENT_CLOSERECEIVEHANDLE_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_CLOSESENDHANDLE_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_CLOSESHELL_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_CREATESHELL_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_FREECREATESHELLRESULT_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_FREEPULLRESULT_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_FREERUNCOMMANDRESULT_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_GET_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_INVALID_FLAG","features":[579]},{"name":"ERROR_WINRS_CLIENT_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_PULL_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_PUSH_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_RECEIVE_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_RUNCOMMAND_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_SEND_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CLIENT_SIGNAL_NULL_PARAM","features":[579]},{"name":"ERROR_WINRS_CODE_PAGE_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WINRS_CONNECT_RESPONSE_BAD_BODY","features":[579]},{"name":"ERROR_WINRS_IDLETIMEOUT_OUTOFBOUNDS","features":[579]},{"name":"ERROR_WINRS_RECEIVE_IN_PROGRESS","features":[579]},{"name":"ERROR_WINRS_RECEIVE_NO_RESPONSE_DATA","features":[579]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_NOT_VALID","features":[579]},{"name":"ERROR_WINRS_SHELLCOMMAND_CLIENTID_RESOURCE_CONFLICT","features":[579]},{"name":"ERROR_WINRS_SHELLCOMMAND_DISCONNECT_OPERATION_NOT_VALID","features":[579]},{"name":"ERROR_WINRS_SHELLCOMMAND_RECONNECT_OPERATION_NOT_VALID","features":[579]},{"name":"ERROR_WINRS_SHELL_CLIENTID_NOT_VALID","features":[579]},{"name":"ERROR_WINRS_SHELL_CLIENTID_RESOURCE_CONFLICT","features":[579]},{"name":"ERROR_WINRS_SHELL_CLIENTSESSIONID_MISMATCH","features":[579]},{"name":"ERROR_WINRS_SHELL_CONNECTED_TO_DIFFERENT_CLIENT","features":[579]},{"name":"ERROR_WINRS_SHELL_DISCONNECTED","features":[579]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_GRACEFUL","features":[579]},{"name":"ERROR_WINRS_SHELL_DISCONNECT_OPERATION_NOT_VALID","features":[579]},{"name":"ERROR_WINRS_SHELL_RECONNECT_OPERATION_NOT_VALID","features":[579]},{"name":"ERROR_WINRS_SHELL_URI_INVALID","features":[579]},{"name":"ERROR_WSMAN_ACK_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_ACTION_MISMATCH","features":[579]},{"name":"ERROR_WSMAN_ACTION_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_EPR","features":[579]},{"name":"ERROR_WSMAN_ADDOBJECT_MISSING_OBJECT","features":[579]},{"name":"ERROR_WSMAN_ALREADY_EXISTS","features":[579]},{"name":"ERROR_WSMAN_AMBIGUOUS_SELECTORS","features":[579]},{"name":"ERROR_WSMAN_AUTHENTICATION_INVALID_FLAG","features":[579]},{"name":"ERROR_WSMAN_AUTHORIZATION_MODE_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_BAD_METHOD","features":[579]},{"name":"ERROR_WSMAN_BATCHSIZE_TOO_SMALL","features":[579]},{"name":"ERROR_WSMAN_BATCH_COMPLETE","features":[579]},{"name":"ERROR_WSMAN_BOOKMARKS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_BOOKMARK_EXPIRED","features":[579]},{"name":"ERROR_WSMAN_CANNOT_CHANGE_KEYS","features":[579]},{"name":"ERROR_WSMAN_CANNOT_DECRYPT","features":[579]},{"name":"ERROR_WSMAN_CANNOT_PROCESS_FILTER","features":[579]},{"name":"ERROR_WSMAN_CANNOT_USE_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS_FOR_HTTP","features":[579]},{"name":"ERROR_WSMAN_CANNOT_USE_CERTIFICATES_FOR_HTTP","features":[579]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_CREDSSP","features":[579]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_HTTP","features":[579]},{"name":"ERROR_WSMAN_CANNOT_USE_PROXY_SETTINGS_FOR_KERBEROS","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_CONFIGLIMIT_EXCEEDED","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_CREDENTIAL_MANAGEMENT_FAILIED","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDISSUERKEY","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDSUBJECTKEY","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_INVALIDUSERCREDENTIALS","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDBLANK","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDTOOLONG","features":[579]},{"name":"ERROR_WSMAN_CERTMAPPING_PASSWORDUSERTUPLE","features":[579]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE","features":[579]},{"name":"ERROR_WSMAN_CERT_INVALID_USAGE_CLIENT","features":[579]},{"name":"ERROR_WSMAN_CERT_MISSING_AUTH_FLAG","features":[579]},{"name":"ERROR_WSMAN_CERT_MULTIPLE_CREDENTIALS_FLAG","features":[579]},{"name":"ERROR_WSMAN_CERT_NOT_FOUND","features":[579]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_BLANK","features":[579]},{"name":"ERROR_WSMAN_CERT_THUMBPRINT_NOT_BLANK","features":[579]},{"name":"ERROR_WSMAN_CHARACTER_SET","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ALLOWFRESHCREDENTIALS_NTLMONLY","features":[579]},{"name":"ERROR_WSMAN_CLIENT_BASIC_AUTHENTICATION_DISABLED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_BATCH_ITEMS_TOO_SMALL","features":[579]},{"name":"ERROR_WSMAN_CLIENT_BLANK_ACTION_URI","features":[579]},{"name":"ERROR_WSMAN_CLIENT_BLANK_INPUT_XML","features":[579]},{"name":"ERROR_WSMAN_CLIENT_BLANK_URI","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CERTIFICATES_AUTHENTICATION_DISABLED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CERT_NEEDED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_LOCATION","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNKNOWN_TYPE","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_CREDS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CERT_UNNEEDED_USERNAME","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CLOSECOMMAND_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CLOSESHELL_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_COMPRESSION_INVALID_OPTION","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CONNECTCOMMAND_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CONNECTSHELL_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CONSTRUCTERROR_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREATESESSION_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NAME_INVALID","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREATESHELL_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FLAG_NEEDED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_DEFAULT_AUTHENTICATION","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_FOR_PROXY_AUTHENTICATION","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREDENTIALS_NEEDED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_CREDSSP_AUTHENTICATION_DISABLED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_DECODEOBJECT_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_DELIVERENDSUBSCRIPTION_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_DELIVEREVENTS_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_DIGEST_AUTHENTICATION_DISABLED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_DISABLE_LOOPBACK_WITH_EXPLICIT_CREDENTIALS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_DISCONNECTSHELL_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ENCODEOBJECT_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATE_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDEVENT_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORADDOBJECT_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ENUMERATORNEXTOBJECT_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ENUM_RECEIVED_TOO_MANY_ITEMS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_GETBOOKMARK_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_GETERRORMESSAGE_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_INVALID_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_DWORD_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_INVALID_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_GETSESSIONOPTION_STRING_INVALID_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INITIALIZE_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CERT_DNS_OR_UPN","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_COMMAND_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CLOSE_SHELL_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_CREATE_SHELL_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DEINIT_APPLICATION_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DELIVERY_RETRY","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISABLE_LOOPBACK","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_DISCONNECT_SHELL_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_GETERRORMESSAGE_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_INIT_APPLICATION_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LANGUAGE_CODE","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_LOCALE","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RECEIVE_SHELL_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RESOURCE_LOCATOR","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_RUNCOMMAND_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SEND_SHELL_PARAMETER","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SHELL_COMMAND_PAIR","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_SIGNAL_SHELL_FLAG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_INVALID_UI_LANGUAGE","features":[579]},{"name":"ERROR_WSMAN_CLIENT_KERBEROS_AUTHENTICATION_DISABLED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CONNECTION_OPTIONS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_LOCAL_INVALID_CREDS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_MAX_CHARS_TOO_SMALL","features":[579]},{"name":"ERROR_WSMAN_CLIENT_MISSING_EXPIRATION","features":[579]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_AUTH_FLAGS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_DELIVERY_MODES","features":[579]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENUM_MODE_FLAGS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_ENVELOPE_POLICIES","features":[579]},{"name":"ERROR_WSMAN_CLIENT_MULTIPLE_PROXY_AUTH_FLAGS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_NEGOTIATE_AUTHENTICATION_DISABLED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_NO_HANDLE","features":[579]},{"name":"ERROR_WSMAN_CLIENT_NO_SOURCES","features":[579]},{"name":"ERROR_WSMAN_CLIENT_NULL_ISSUERS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_NULL_PUBLISHERS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_NULL_RESULT_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_PULL_INVALID_FLAGS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_PUSH_HOST_TOO_LONG","features":[579]},{"name":"ERROR_WSMAN_CLIENT_PUSH_UNSUPPORTED_TRANSPORT","features":[579]},{"name":"ERROR_WSMAN_CLIENT_RECEIVE_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELLCOMMAND_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_RECONNECTSHELL_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NOTCOMPLETED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_RUNCOMMAND_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_SEND_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_SESSION_UNUSABLE","features":[579]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_INVALID_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_SETSESSIONOPTION_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_SIGNAL_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_SPN_WRONG_AUTH","features":[579]},{"name":"ERROR_WSMAN_CLIENT_SUBSCRIBE_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_DISABLED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_UNENCRYPTED_HTTP_ONLY","features":[579]},{"name":"ERROR_WSMAN_CLIENT_UNKNOWN_EXPIRATION_TYPE","features":[579]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_AND_PASSWORD_NEEDED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_USERNAME_PASSWORD_NEEDED","features":[579]},{"name":"ERROR_WSMAN_CLIENT_WORKGROUP_NO_KERBEROS","features":[579]},{"name":"ERROR_WSMAN_CLIENT_ZERO_HEARTBEAT","features":[579]},{"name":"ERROR_WSMAN_COMMAND_ALREADY_CLOSED","features":[579]},{"name":"ERROR_WSMAN_COMMAND_TERMINATED","features":[579]},{"name":"ERROR_WSMAN_CONCURRENCY","features":[579]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_CERTMAPPING_KEYS","features":[579]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_GPO_CONTROLLED_SETTING","features":[579]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_CHANGE_MUTUAL","features":[579]},{"name":"ERROR_WSMAN_CONFIG_CANNOT_SHARE_SSL_CONFIG","features":[579]},{"name":"ERROR_WSMAN_CONFIG_CERT_CN_DOES_NOT_MATCH_HOSTNAME","features":[579]},{"name":"ERROR_WSMAN_CONFIG_CORRUPTED","features":[579]},{"name":"ERROR_WSMAN_CONFIG_GROUP_POLICY_CHANGE_NOTIFICATION_SUBSCRIPTION_FAILED","features":[579]},{"name":"ERROR_WSMAN_CONFIG_HOSTNAME_CHANGE_WITHOUT_CERT","features":[579]},{"name":"ERROR_WSMAN_CONFIG_PORT_INVALID","features":[579]},{"name":"ERROR_WSMAN_CONFIG_READONLY_PROPERTY","features":[579]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_OPERATION_ON_KEY","features":[579]},{"name":"ERROR_WSMAN_CONFIG_SHELLURI_INVALID_PROCESSPATH","features":[579]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_CMDSHELLURI_NOTPERMITTED","features":[579]},{"name":"ERROR_WSMAN_CONFIG_SHELL_URI_INVALID","features":[579]},{"name":"ERROR_WSMAN_CONFIG_THUMBPRINT_SHOULD_BE_EMPTY","features":[579]},{"name":"ERROR_WSMAN_CONNECTIONSTR_INVALID","features":[579]},{"name":"ERROR_WSMAN_CONNECTOR_GET","features":[579]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_ENVIRONMENT_VARIABLE_NAME","features":[579]},{"name":"ERROR_WSMAN_CREATESHELL_NULL_STREAMID","features":[579]},{"name":"ERROR_WSMAN_CREATESHELL_RUNAS_FAILED","features":[579]},{"name":"ERROR_WSMAN_CREATE_RESPONSE_NO_EPR","features":[579]},{"name":"ERROR_WSMAN_CREDSSP_USERNAME_PASSWORD_NEEDED","features":[579]},{"name":"ERROR_WSMAN_CREDS_PASSED_WITH_NO_AUTH_FLAG","features":[579]},{"name":"ERROR_WSMAN_CUSTOMREMOTESHELL_DEPRECATED","features":[579]},{"name":"ERROR_WSMAN_DEFAULTAUTH_IPADDRESS","features":[579]},{"name":"ERROR_WSMAN_DELIVERY_REFUSED","features":[579]},{"name":"ERROR_WSMAN_DELIVERY_RETRIES_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_DELIVER_IN_PROGRESS","features":[579]},{"name":"ERROR_WSMAN_DEPRECATED_CONFIG_SETTING","features":[579]},{"name":"ERROR_WSMAN_DESERIALIZE_CLASS","features":[579]},{"name":"ERROR_WSMAN_DESTINATION_INVALID","features":[579]},{"name":"ERROR_WSMAN_DESTINATION_UNREACHABLE","features":[579]},{"name":"ERROR_WSMAN_DIFFERENT_AUTHZ_TOKEN","features":[579]},{"name":"ERROR_WSMAN_DIFFERENT_CIM_SELECTOR","features":[579]},{"name":"ERROR_WSMAN_DUPLICATE_SELECTORS","features":[579]},{"name":"ERROR_WSMAN_ENCODING_LIMIT","features":[579]},{"name":"ERROR_WSMAN_ENCODING_TYPE","features":[579]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE","features":[579]},{"name":"ERROR_WSMAN_ENDPOINT_UNAVAILABLE_INVALID_VALUE","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_CANNOT_PROCESS_FILTER","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_FILTERING_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_FILTER_DIALECT_REQUESTED_UNAVAILABLE","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_ENUMERATION_CONTEXT","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_INVALID_EXPIRATION_TIME","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMAMNDS_FILTER_EXPECTED","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_SHELLCOMMANDS_EPRS_NOTSUPPORTED","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_TIMED_OUT","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_UNABLE_TO_RENEW","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TIME","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_UNSUPPORTED_EXPIRATION_TYPE","features":[579]},{"name":"ERROR_WSMAN_ENUMERATE_WMI_INVALID_KEY","features":[579]},{"name":"ERROR_WSMAN_ENUMERATION_CLOSED","features":[579]},{"name":"ERROR_WSMAN_ENUMERATION_INITIALIZING","features":[579]},{"name":"ERROR_WSMAN_ENUMERATION_INVALID","features":[579]},{"name":"ERROR_WSMAN_ENUMERATION_MODE_UNSUPPORTED","features":[579]},{"name":"ERROR_WSMAN_ENVELOPE_TOO_LARGE","features":[579]},{"name":"ERROR_WSMAN_EPR_NESTING_EXCEEDED","features":[579]},{"name":"ERROR_WSMAN_EVENTING_CONCURRENT_CLIENT_RECEIVE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_DELIVERYFAILED_FROMSOURCE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_INVALID","features":[579]},{"name":"ERROR_WSMAN_EVENTING_DELIVERY_MODE_REQUESTED_UNAVAILABLE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_FAST_SENDER","features":[579]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_EVENTING_FILTERING_REQUESTED_UNAVAILABLE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INCOMPATIBLE_BATCHPARAMS_AND_DELIVERYMODE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INSECURE_PUSHSUBSCRIPTION_CONNECTION","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENCODING_IN_DELIVERY","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_ENDTO_ADDRESSS","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EVENTSOURCE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_EXPIRATION_TIME","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_HEARTBEAT","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_INCOMING_EVENT_PACKET_HEADER","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_LOCALE_IN_DELIVERY","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_MESSAGE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_INVALID_NOTIFYTO_ADDRESSS","features":[579]},{"name":"ERROR_WSMAN_EVENTING_LOOPBACK_TESTFAILED","features":[579]},{"name":"ERROR_WSMAN_EVENTING_MISSING_LOCALE_IN_DELIVERY","features":[579]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO","features":[579]},{"name":"ERROR_WSMAN_EVENTING_MISSING_NOTIFYTO_ADDRESSS","features":[579]},{"name":"ERROR_WSMAN_EVENTING_NOMATCHING_LISTENER","features":[579]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_COLLECTOR","features":[579]},{"name":"ERROR_WSMAN_EVENTING_NONDOMAINJOINED_PUBLISHER","features":[579]},{"name":"ERROR_WSMAN_EVENTING_PUSH_SUBSCRIPTION_NOACTIVATE_EVENTSOURCE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_SOURCE_UNABLE_TO_PROCESS","features":[579]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTIONCLOSED_BYREMOTESERVICE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_SUBSCRIPTION_CANCELLED_BYSOURCE","features":[579]},{"name":"ERROR_WSMAN_EVENTING_UNABLE_TO_RENEW","features":[579]},{"name":"ERROR_WSMAN_EVENTING_UNSUPPORTED_EXPIRATION_TYPE","features":[579]},{"name":"ERROR_WSMAN_EXPIRATION_TIME_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_EXPLICIT_CREDENTIALS_REQUIRED","features":[579]},{"name":"ERROR_WSMAN_FAILED_AUTHENTICATION","features":[579]},{"name":"ERROR_WSMAN_FEATURE_DEPRECATED","features":[579]},{"name":"ERROR_WSMAN_FILE_NOT_PRESENT","features":[579]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED","features":[579]},{"name":"ERROR_WSMAN_FILTERING_REQUIRED_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_FORMAT_MISMATCH_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_FORMAT_SECURITY_TOKEN_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_FRAGMENT_DIALECT_REQUESTED_UNAVAILABLE","features":[579]},{"name":"ERROR_WSMAN_FRAGMENT_TRANSFER_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_GETCLASS","features":[579]},{"name":"ERROR_WSMAN_HEARTBEATS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_HTML_ERROR","features":[579]},{"name":"ERROR_WSMAN_HTTP_CONTENT_TYPE_MISSMATCH_RESPONSE_DATA","features":[579]},{"name":"ERROR_WSMAN_HTTP_INVALID_CONTENT_TYPE_IN_RESPONSE_DATA","features":[579]},{"name":"ERROR_WSMAN_HTTP_NOT_FOUND_STATUS","features":[579]},{"name":"ERROR_WSMAN_HTTP_NO_RESPONSE_DATA","features":[579]},{"name":"ERROR_WSMAN_HTTP_REQUEST_TOO_LARGE_STATUS","features":[579]},{"name":"ERROR_WSMAN_HTTP_SERVICE_UNAVAILABLE_STATUS","features":[579]},{"name":"ERROR_WSMAN_HTTP_STATUS_BAD_REQUEST","features":[579]},{"name":"ERROR_WSMAN_HTTP_STATUS_SERVER_ERROR","features":[579]},{"name":"ERROR_WSMAN_IISCONFIGURATION_READ_FAILED","features":[579]},{"name":"ERROR_WSMAN_INCOMPATIBLE_EPR","features":[579]},{"name":"ERROR_WSMAN_INEXISTENT_MAC_ADDRESS","features":[579]},{"name":"ERROR_WSMAN_INSECURE_ADDRESS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_INSUFFCIENT_SELECTORS","features":[579]},{"name":"ERROR_WSMAN_INSUFFICIENT_METADATA_FOR_BASIC","features":[579]},{"name":"ERROR_WSMAN_INVALID_ACTIONURI","features":[579]},{"name":"ERROR_WSMAN_INVALID_BATCH_PARAMETER","features":[579]},{"name":"ERROR_WSMAN_INVALID_BATCH_SETTINGS_PARAMETER","features":[579]},{"name":"ERROR_WSMAN_INVALID_BOOKMARK","features":[579]},{"name":"ERROR_WSMAN_INVALID_CHARACTERS_IN_RESPONSE","features":[579]},{"name":"ERROR_WSMAN_INVALID_CONFIGSDDL_URL","features":[579]},{"name":"ERROR_WSMAN_INVALID_CONNECTIONRETRY","features":[579]},{"name":"ERROR_WSMAN_INVALID_FILEPATH","features":[579]},{"name":"ERROR_WSMAN_INVALID_FILTER_XML","features":[579]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_DIALECT","features":[579]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH","features":[579]},{"name":"ERROR_WSMAN_INVALID_FRAGMENT_PATH_BLANK","features":[579]},{"name":"ERROR_WSMAN_INVALID_HEADER","features":[579]},{"name":"ERROR_WSMAN_INVALID_HOSTNAME_PATTERN","features":[579]},{"name":"ERROR_WSMAN_INVALID_IPFILTER","features":[579]},{"name":"ERROR_WSMAN_INVALID_KEY","features":[579]},{"name":"ERROR_WSMAN_INVALID_LITERAL_URI","features":[579]},{"name":"ERROR_WSMAN_INVALID_MESSAGE_INFORMATION_HEADER","features":[579]},{"name":"ERROR_WSMAN_INVALID_OPTIONS","features":[579]},{"name":"ERROR_WSMAN_INVALID_OPTIONSET","features":[579]},{"name":"ERROR_WSMAN_INVALID_OPTION_NO_PROXY_SERVER","features":[579]},{"name":"ERROR_WSMAN_INVALID_PARAMETER","features":[579]},{"name":"ERROR_WSMAN_INVALID_PARAMETER_NAME","features":[579]},{"name":"ERROR_WSMAN_INVALID_PROPOSED_ID","features":[579]},{"name":"ERROR_WSMAN_INVALID_PROVIDER_RESPONSE","features":[579]},{"name":"ERROR_WSMAN_INVALID_PUBLISHERS_TYPE","features":[579]},{"name":"ERROR_WSMAN_INVALID_REDIRECT_ERROR","features":[579]},{"name":"ERROR_WSMAN_INVALID_REPRESENTATION","features":[579]},{"name":"ERROR_WSMAN_INVALID_RESOURCE_URI","features":[579]},{"name":"ERROR_WSMAN_INVALID_RESUMPTION_CONTEXT","features":[579]},{"name":"ERROR_WSMAN_INVALID_SECURITY_DESCRIPTOR","features":[579]},{"name":"ERROR_WSMAN_INVALID_SELECTORS","features":[579]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_NAME","features":[579]},{"name":"ERROR_WSMAN_INVALID_SELECTOR_VALUE","features":[579]},{"name":"ERROR_WSMAN_INVALID_SOAP_BODY","features":[579]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIBE_OBJECT","features":[579]},{"name":"ERROR_WSMAN_INVALID_SUBSCRIPTION_MANAGER","features":[579]},{"name":"ERROR_WSMAN_INVALID_SYSTEM","features":[579]},{"name":"ERROR_WSMAN_INVALID_TARGET_RESOURCEURI","features":[579]},{"name":"ERROR_WSMAN_INVALID_TARGET_SELECTORS","features":[579]},{"name":"ERROR_WSMAN_INVALID_TARGET_SYSTEM","features":[579]},{"name":"ERROR_WSMAN_INVALID_TIMEOUT_HEADER","features":[579]},{"name":"ERROR_WSMAN_INVALID_URI","features":[579]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_ENUM_WQL","features":[579]},{"name":"ERROR_WSMAN_INVALID_URI_WMI_SINGLETON","features":[579]},{"name":"ERROR_WSMAN_INVALID_USESSL_PARAM","features":[579]},{"name":"ERROR_WSMAN_INVALID_XML","features":[579]},{"name":"ERROR_WSMAN_INVALID_XML_FRAGMENT","features":[579]},{"name":"ERROR_WSMAN_INVALID_XML_MISSING_VALUES","features":[579]},{"name":"ERROR_WSMAN_INVALID_XML_NAMESPACE","features":[579]},{"name":"ERROR_WSMAN_INVALID_XML_RUNAS_DISABLED","features":[579]},{"name":"ERROR_WSMAN_INVALID_XML_VALUES","features":[579]},{"name":"ERROR_WSMAN_KERBEROS_IPADDRESS","features":[579]},{"name":"ERROR_WSMAN_LISTENER_ADDRESS_INVALID","features":[579]},{"name":"ERROR_WSMAN_LOCALE_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_MACHINE_OPTION_REQUIRED","features":[579]},{"name":"ERROR_WSMAN_MAXENVELOPE_POLICY_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_MAXENVELOPE_SIZE_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_MAXITEMS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_MAXTIME_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_MAX_ELEMENTS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE","features":[579]},{"name":"ERROR_WSMAN_MAX_ENVELOPE_SIZE_EXCEEDED","features":[579]},{"name":"ERROR_WSMAN_MESSAGE_INFORMATION_HEADER_REQUIRED","features":[579]},{"name":"ERROR_WSMAN_METADATA_REDIRECT","features":[579]},{"name":"ERROR_WSMAN_MIN_ENVELOPE_SIZE","features":[579]},{"name":"ERROR_WSMAN_MISSING_CLASSNAME","features":[579]},{"name":"ERROR_WSMAN_MISSING_FRAGMENT_PATH","features":[579]},{"name":"ERROR_WSMAN_MULTIPLE_CREDENTIALS","features":[579]},{"name":"ERROR_WSMAN_MUSTUNDERSTAND_ON_LOCALE_UNSUPPORTED","features":[579]},{"name":"ERROR_WSMAN_MUTUAL_AUTH_FAILED","features":[579]},{"name":"ERROR_WSMAN_NAME_NOT_RESOLVED","features":[579]},{"name":"ERROR_WSMAN_NETWORK_TIMEDOUT","features":[579]},{"name":"ERROR_WSMAN_NEW_DESERIALIZER","features":[579]},{"name":"ERROR_WSMAN_NEW_SESSION","features":[579]},{"name":"ERROR_WSMAN_NON_PULL_SUBSCRIPTION_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_NO_ACK","features":[579]},{"name":"ERROR_WSMAN_NO_CERTMAPPING_OPERATION_FOR_LOCAL_SESSION","features":[579]},{"name":"ERROR_WSMAN_NO_COMMANDID","features":[579]},{"name":"ERROR_WSMAN_NO_COMMAND_RESPONSE","features":[579]},{"name":"ERROR_WSMAN_NO_DHCP_ADDRESSES","features":[579]},{"name":"ERROR_WSMAN_NO_IDENTIFY_FOR_LOCAL_SESSION","features":[579]},{"name":"ERROR_WSMAN_NO_PUSH_SUBSCRIPTION_FOR_LOCAL_SESSION","features":[579]},{"name":"ERROR_WSMAN_NO_RECEIVE_RESPONSE","features":[579]},{"name":"ERROR_WSMAN_NO_UNICAST_ADDRESSES","features":[579]},{"name":"ERROR_WSMAN_NULL_KEY","features":[579]},{"name":"ERROR_WSMAN_OBJECTONLY_INVALID","features":[579]},{"name":"ERROR_WSMAN_OPERATION_TIMEDOUT","features":[579]},{"name":"ERROR_WSMAN_OPERATION_TIMEOUT_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_NAME","features":[579]},{"name":"ERROR_WSMAN_OPTIONS_INVALID_VALUE","features":[579]},{"name":"ERROR_WSMAN_OPTIONS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_OPTION_LIMIT","features":[579]},{"name":"ERROR_WSMAN_PARAMETER_TYPE_MISMATCH","features":[579]},{"name":"ERROR_WSMAN_PLUGIN_CONFIGURATION_CORRUPTED","features":[579]},{"name":"ERROR_WSMAN_PLUGIN_FAILED","features":[579]},{"name":"ERROR_WSMAN_POLICY_CANNOT_COMPLY","features":[579]},{"name":"ERROR_WSMAN_POLICY_CORRUPTED","features":[579]},{"name":"ERROR_WSMAN_POLICY_TOO_COMPLEX","features":[579]},{"name":"ERROR_WSMAN_POLYMORPHISM_MODE_UNSUPPORTED","features":[579]},{"name":"ERROR_WSMAN_PORT_INVALID","features":[579]},{"name":"ERROR_WSMAN_PROVIDER_FAILURE","features":[579]},{"name":"ERROR_WSMAN_PROVIDER_LOAD_FAILED","features":[579]},{"name":"ERROR_WSMAN_PROVSYS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_PROXY_ACCESS_TYPE","features":[579]},{"name":"ERROR_WSMAN_PROXY_AUTHENTICATION_INVALID_FLAG","features":[579]},{"name":"ERROR_WSMAN_PUBLIC_FIREWALL_PROFILE_ACTIVE","features":[579]},{"name":"ERROR_WSMAN_PULL_IN_PROGRESS","features":[579]},{"name":"ERROR_WSMAN_PULL_PARAMS_NOT_SAME_AS_ENUM","features":[579]},{"name":"ERROR_WSMAN_PUSHSUBSCRIPTION_INVALIDUSERACCOUNT","features":[579]},{"name":"ERROR_WSMAN_PUSH_SUBSCRIPTION_CONFIG_INVALID","features":[579]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FAILED_CERT_REQUIRED","features":[579]},{"name":"ERROR_WSMAN_QUICK_CONFIG_FIREWALL_EXCEPTIONS_DISALLOWED","features":[579]},{"name":"ERROR_WSMAN_QUICK_CONFIG_LOCAL_POLICY_CHANGE_DISALLOWED","features":[579]},{"name":"ERROR_WSMAN_QUOTA_LIMIT","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_COMMANDS_PER_SHELL_PPQ","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_OPERATIONS_USER_PPQ","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINOPERATIONS_PPQ","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_PLUGINSHELLS_PPQ","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLS_PPQ","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_SHELLUSERS","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MAX_USERS_PPQ","features":[579]},{"name":"ERROR_WSMAN_QUOTA_MIN_REQUIREMENT_NOT_AVAILABLE_PPQ","features":[579]},{"name":"ERROR_WSMAN_QUOTA_SYSTEM","features":[579]},{"name":"ERROR_WSMAN_QUOTA_USER","features":[579]},{"name":"ERROR_WSMAN_REDIRECT_LOCATION_NOT_AVAILABLE","features":[579]},{"name":"ERROR_WSMAN_REDIRECT_REQUESTED","features":[579]},{"name":"ERROR_WSMAN_REMOTESHELLS_NOT_ALLOWED","features":[579]},{"name":"ERROR_WSMAN_REMOTE_CIMPATH_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_REMOTE_CONNECTION_NOT_ALLOWED","features":[579]},{"name":"ERROR_WSMAN_RENAME_FAILURE","features":[579]},{"name":"ERROR_WSMAN_REQUEST_INIT_ERROR","features":[579]},{"name":"ERROR_WSMAN_REQUEST_NOT_SUPPORTED_AT_SERVICE","features":[579]},{"name":"ERROR_WSMAN_RESOURCE_NOT_FOUND","features":[579]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_ENUMERATION_CONTEXT","features":[579]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_MESSAGE_INFORMATION_HEADER","features":[579]},{"name":"ERROR_WSMAN_RESPONSE_INVALID_SOAP_FAULT","features":[579]},{"name":"ERROR_WSMAN_RESPONSE_NO_RESULTS","features":[579]},{"name":"ERROR_WSMAN_RESPONSE_NO_SOAP_HEADER_BODY","features":[579]},{"name":"ERROR_WSMAN_RESPONSE_NO_XML_FRAGMENT_WRAPPER","features":[579]},{"name":"ERROR_WSMAN_RESUMPTION_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_RESUMPTION_TYPE_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_RUNASUSER_MANAGEDACCOUNT_LOGON_FAILED","features":[579]},{"name":"ERROR_WSMAN_RUNAS_INVALIDUSERCREDENTIALS","features":[579]},{"name":"ERROR_WSMAN_RUNSHELLCOMMAND_NULL_ARGUMENT","features":[579]},{"name":"ERROR_WSMAN_SCHEMA_VALIDATION_ERROR","features":[579]},{"name":"ERROR_WSMAN_SECURITY_UNMAPPED","features":[579]},{"name":"ERROR_WSMAN_SELECTOR_LIMIT","features":[579]},{"name":"ERROR_WSMAN_SELECTOR_TYPEMISMATCH","features":[579]},{"name":"ERROR_WSMAN_SEMANTICCALLBACK_TIMEDOUT","features":[579]},{"name":"ERROR_WSMAN_SENDHEARBEAT_EMPTY_ENUMERATOR","features":[579]},{"name":"ERROR_WSMAN_SENDSHELLINPUT_INVALID_STREAMID_INDEX","features":[579]},{"name":"ERROR_WSMAN_SERVER_DESTINATION_LOCALHOST","features":[579]},{"name":"ERROR_WSMAN_SERVER_ENVELOPE_LIMIT","features":[579]},{"name":"ERROR_WSMAN_SERVER_NONPULLSUBSCRIBE_NULL_PARAM","features":[579]},{"name":"ERROR_WSMAN_SERVER_NOT_TRUSTED","features":[579]},{"name":"ERROR_WSMAN_SERVICE_REMOTE_ACCESS_DISABLED","features":[579]},{"name":"ERROR_WSMAN_SERVICE_STREAM_DISCONNECTED","features":[579]},{"name":"ERROR_WSMAN_SESSION_ALREADY_CLOSED","features":[579]},{"name":"ERROR_WSMAN_SHELL_ALREADY_CLOSED","features":[579]},{"name":"ERROR_WSMAN_SHELL_INVALID_COMMAND_HANDLE","features":[579]},{"name":"ERROR_WSMAN_SHELL_INVALID_DESIRED_STREAMS","features":[579]},{"name":"ERROR_WSMAN_SHELL_INVALID_INPUT_STREAM","features":[579]},{"name":"ERROR_WSMAN_SHELL_INVALID_SHELL_HANDLE","features":[579]},{"name":"ERROR_WSMAN_SHELL_NOT_INITIALIZED","features":[579]},{"name":"ERROR_WSMAN_SHELL_SYNCHRONOUS_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_SOAP_DATA_ENCODING_UNKNOWN","features":[579]},{"name":"ERROR_WSMAN_SOAP_FAULT_MUST_UNDERSTAND","features":[579]},{"name":"ERROR_WSMAN_SOAP_VERSION_MISMATCH","features":[579]},{"name":"ERROR_WSMAN_SSL_CONNECTION_ABORTED","features":[579]},{"name":"ERROR_WSMAN_SUBSCRIBE_WMI_INVALID_KEY","features":[579]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLIENT_DID_NOT_CALL_WITHIN_HEARTBEAT","features":[579]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSED","features":[579]},{"name":"ERROR_WSMAN_SUBSCRIPTION_CLOSE_IN_PROGRESS","features":[579]},{"name":"ERROR_WSMAN_SUBSCRIPTION_LISTENER_NOLONGERVALID","features":[579]},{"name":"ERROR_WSMAN_SUBSCRIPTION_NO_HEARTBEAT","features":[579]},{"name":"ERROR_WSMAN_SYSTEM_NOT_FOUND","features":[579]},{"name":"ERROR_WSMAN_TARGET_ALREADY_EXISTS","features":[579]},{"name":"ERROR_WSMAN_TRANSPORT_NOT_SUPPORTED","features":[579]},{"name":"ERROR_WSMAN_UNEXPECTED_SELECTORS","features":[579]},{"name":"ERROR_WSMAN_UNKNOWN_HTTP_STATUS_RETURNED","features":[579]},{"name":"ERROR_WSMAN_UNREPORTABLE_SUCCESS","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_ADDRESSING_MODE","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_ENCODING","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_IDENTIFY","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_FEATURE_OPTIONS","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_HTTP_STATUS_REDIRECT","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_MEDIA","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_OCTETTYPE","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_TIMEOUT","features":[579]},{"name":"ERROR_WSMAN_UNSUPPORTED_TYPE","features":[579]},{"name":"ERROR_WSMAN_URISECURITY_INVALIDURIKEY","features":[579]},{"name":"ERROR_WSMAN_URI_LIMIT","features":[579]},{"name":"ERROR_WSMAN_URI_NON_DMTF_CLASS","features":[579]},{"name":"ERROR_WSMAN_URI_QUERY_STRING_SYNTAX_ERROR","features":[579]},{"name":"ERROR_WSMAN_URI_SECURITY_URI","features":[579]},{"name":"ERROR_WSMAN_URI_WRONG_DMTF_VERSION","features":[579]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED","features":[579]},{"name":"ERROR_WSMAN_VIRTUALACCOUNT_NOTSUPPORTED_DOWNLEVEL","features":[579]},{"name":"ERROR_WSMAN_WHITESPACE","features":[579]},{"name":"ERROR_WSMAN_WMI_CANNOT_CONNECT_ACCESS_DENIED","features":[579]},{"name":"ERROR_WSMAN_WMI_INVALID_VALUE","features":[579]},{"name":"ERROR_WSMAN_WMI_MAX_NESTED","features":[579]},{"name":"ERROR_WSMAN_WMI_PROVIDER_ACCESS_DENIED","features":[579]},{"name":"ERROR_WSMAN_WMI_PROVIDER_INVALID_PARAMETER","features":[579]},{"name":"ERROR_WSMAN_WMI_PROVIDER_NOT_CAPABLE","features":[579]},{"name":"ERROR_WSMAN_WMI_SVC_ACCESS_DENIED","features":[579]},{"name":"ERROR_WSMAN_WRONG_METADATA","features":[579]},{"name":"IWSMan","features":[356,579]},{"name":"IWSManConnectionOptions","features":[356,579]},{"name":"IWSManConnectionOptionsEx","features":[356,579]},{"name":"IWSManConnectionOptionsEx2","features":[356,579]},{"name":"IWSManEnumerator","features":[356,579]},{"name":"IWSManEx","features":[356,579]},{"name":"IWSManEx2","features":[356,579]},{"name":"IWSManEx3","features":[356,579]},{"name":"IWSManInternal","features":[356,579]},{"name":"IWSManResourceLocator","features":[356,579]},{"name":"IWSManResourceLocatorInternal","features":[579]},{"name":"IWSManSession","features":[356,579]},{"name":"WSMAN_API_HANDLE","features":[579]},{"name":"WSMAN_AUTHENTICATION_CREDENTIALS","features":[579]},{"name":"WSMAN_AUTHZ_QUOTA","features":[579]},{"name":"WSMAN_CERTIFICATE_DETAILS","features":[579]},{"name":"WSMAN_CMDSHELL_OPTION_CODEPAGE","features":[579]},{"name":"WSMAN_CMDSHELL_OPTION_CONSOLEMODE_STDIN","features":[579]},{"name":"WSMAN_CMDSHELL_OPTION_SKIP_CMD_SHELL","features":[579]},{"name":"WSMAN_COMMAND_ARG_SET","features":[579]},{"name":"WSMAN_COMMAND_HANDLE","features":[579]},{"name":"WSMAN_CONNECT_DATA","features":[579]},{"name":"WSMAN_CREATE_SHELL_DATA","features":[579]},{"name":"WSMAN_DATA","features":[579]},{"name":"WSMAN_DATA_BINARY","features":[579]},{"name":"WSMAN_DATA_NONE","features":[579]},{"name":"WSMAN_DATA_TEXT","features":[579]},{"name":"WSMAN_DATA_TYPE_BINARY","features":[579]},{"name":"WSMAN_DATA_TYPE_DWORD","features":[579]},{"name":"WSMAN_DATA_TYPE_TEXT","features":[579]},{"name":"WSMAN_DEFAULT_TIMEOUT_MS","features":[579]},{"name":"WSMAN_ENVIRONMENT_VARIABLE","features":[579]},{"name":"WSMAN_ENVIRONMENT_VARIABLE_SET","features":[579]},{"name":"WSMAN_ERROR","features":[579]},{"name":"WSMAN_FILTER","features":[579]},{"name":"WSMAN_FLAG_AUTH_BASIC","features":[579]},{"name":"WSMAN_FLAG_AUTH_CLIENT_CERTIFICATE","features":[579]},{"name":"WSMAN_FLAG_AUTH_CREDSSP","features":[579]},{"name":"WSMAN_FLAG_AUTH_DIGEST","features":[579]},{"name":"WSMAN_FLAG_AUTH_KERBEROS","features":[579]},{"name":"WSMAN_FLAG_AUTH_NEGOTIATE","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_OPERATION","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_END_OF_STREAM","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_NETWORK_FAILURE_DETECTED","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_RECEIVE_DELAY_STREAM_REQUEST_PROCESSED","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_RECONNECTED_AFTER_NETWORK_FAILURE","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_RETRYING_AFTER_NETWORK_FAILURE","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_RETRY_ABORTED_DUE_TO_INTERNAL_ERROR","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTED","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_AUTODISCONNECTING","features":[579]},{"name":"WSMAN_FLAG_CALLBACK_SHELL_SUPPORTS_DISCONNECT","features":[579]},{"name":"WSMAN_FLAG_DEFAULT_AUTHENTICATION","features":[579]},{"name":"WSMAN_FLAG_DELETE_SERVER_SESSION","features":[579]},{"name":"WSMAN_FLAG_NO_AUTHENTICATION","features":[579]},{"name":"WSMAN_FLAG_NO_COMPRESSION","features":[579]},{"name":"WSMAN_FLAG_RECEIVE_DELAY_OUTPUT_STREAM","features":[579]},{"name":"WSMAN_FLAG_RECEIVE_FLUSH","features":[579]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_DATA_BOUNDARY","features":[579]},{"name":"WSMAN_FLAG_RECEIVE_RESULT_NO_MORE_DATA","features":[579]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_0","features":[579]},{"name":"WSMAN_FLAG_REQUESTED_API_VERSION_1_1","features":[579]},{"name":"WSMAN_FLAG_SEND_NO_MORE_DATA","features":[579]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_BLOCK","features":[579]},{"name":"WSMAN_FLAG_SERVER_BUFFERING_MODE_DROP","features":[579]},{"name":"WSMAN_FRAGMENT","features":[579]},{"name":"WSMAN_KEY","features":[579]},{"name":"WSMAN_OPERATION_HANDLE","features":[579]},{"name":"WSMAN_OPERATION_INFO","features":[305,579]},{"name":"WSMAN_OPERATION_INFOEX","features":[305,579]},{"name":"WSMAN_OPERATION_INFOV1","features":[579]},{"name":"WSMAN_OPERATION_INFOV2","features":[579]},{"name":"WSMAN_OPTION","features":[305,579]},{"name":"WSMAN_OPTION_ALLOW_NEGOTIATE_IMPLICIT_CREDENTIALS","features":[579]},{"name":"WSMAN_OPTION_DEFAULT_OPERATION_TIMEOUTMS","features":[579]},{"name":"WSMAN_OPTION_ENABLE_SPN_SERVER_PORT","features":[579]},{"name":"WSMAN_OPTION_LOCALE","features":[579]},{"name":"WSMAN_OPTION_MACHINE_ID","features":[579]},{"name":"WSMAN_OPTION_MAX_ENVELOPE_SIZE_KB","features":[579]},{"name":"WSMAN_OPTION_MAX_RETRY_TIME","features":[579]},{"name":"WSMAN_OPTION_PROXY_AUTO_DETECT","features":[579]},{"name":"WSMAN_OPTION_PROXY_IE_PROXY_CONFIG","features":[579]},{"name":"WSMAN_OPTION_PROXY_NO_PROXY_SERVER","features":[579]},{"name":"WSMAN_OPTION_PROXY_WINHTTP_PROXY_CONFIG","features":[579]},{"name":"WSMAN_OPTION_REDIRECT_LOCATION","features":[579]},{"name":"WSMAN_OPTION_SET","features":[305,579]},{"name":"WSMAN_OPTION_SETEX","features":[305,579]},{"name":"WSMAN_OPTION_SHELL_MAX_DATA_SIZE_PER_MESSAGE_KB","features":[579]},{"name":"WSMAN_OPTION_SKIP_CA_CHECK","features":[579]},{"name":"WSMAN_OPTION_SKIP_CN_CHECK","features":[579]},{"name":"WSMAN_OPTION_SKIP_REVOCATION_CHECK","features":[579]},{"name":"WSMAN_OPTION_TIMEOUTMS_CLOSE_SHELL","features":[579]},{"name":"WSMAN_OPTION_TIMEOUTMS_CREATE_SHELL","features":[579]},{"name":"WSMAN_OPTION_TIMEOUTMS_RECEIVE_SHELL_OUTPUT","features":[579]},{"name":"WSMAN_OPTION_TIMEOUTMS_RUN_SHELL_COMMAND","features":[579]},{"name":"WSMAN_OPTION_TIMEOUTMS_SEND_SHELL_INPUT","features":[579]},{"name":"WSMAN_OPTION_TIMEOUTMS_SIGNAL_SHELL","features":[579]},{"name":"WSMAN_OPTION_UI_LANGUAGE","features":[579]},{"name":"WSMAN_OPTION_UNENCRYPTED_MESSAGES","features":[579]},{"name":"WSMAN_OPTION_USE_INTEARACTIVE_TOKEN","features":[579]},{"name":"WSMAN_OPTION_USE_SSL","features":[579]},{"name":"WSMAN_OPTION_UTF16","features":[579]},{"name":"WSMAN_PLUGIN_AUTHORIZE_OPERATION","features":[305,579]},{"name":"WSMAN_PLUGIN_AUTHORIZE_QUERY_QUOTA","features":[305,579]},{"name":"WSMAN_PLUGIN_AUTHORIZE_RELEASE_CONTEXT","features":[579]},{"name":"WSMAN_PLUGIN_AUTHORIZE_USER","features":[305,579]},{"name":"WSMAN_PLUGIN_COMMAND","features":[305,579]},{"name":"WSMAN_PLUGIN_CONNECT","features":[305,579]},{"name":"WSMAN_PLUGIN_PARAMS_AUTORESTART","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_DATA_LOCALE","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_GET_REQUESTED_LOCALE","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_HOSTIDLETIMEOUTSECONDS","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_LARGEST_RESULT_SIZE","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_MAX_ENVELOPE_SIZE","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_NAME","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_REMAINING_RESULT_SIZE","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_RUNAS_USER","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_SHAREDHOST","features":[579]},{"name":"WSMAN_PLUGIN_PARAMS_TIMEOUT","features":[579]},{"name":"WSMAN_PLUGIN_RECEIVE","features":[305,579]},{"name":"WSMAN_PLUGIN_RELEASE_COMMAND_CONTEXT","features":[579]},{"name":"WSMAN_PLUGIN_RELEASE_SHELL_CONTEXT","features":[579]},{"name":"WSMAN_PLUGIN_REQUEST","features":[305,579]},{"name":"WSMAN_PLUGIN_SEND","features":[305,579]},{"name":"WSMAN_PLUGIN_SHELL","features":[305,579]},{"name":"WSMAN_PLUGIN_SHUTDOWN","features":[579]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IDLETIMEOUT_ELAPSED","features":[579]},{"name":"WSMAN_PLUGIN_SHUTDOWN_IISHOST","features":[579]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SERVICE","features":[579]},{"name":"WSMAN_PLUGIN_SHUTDOWN_SYSTEM","features":[579]},{"name":"WSMAN_PLUGIN_SIGNAL","features":[305,579]},{"name":"WSMAN_PLUGIN_STARTUP","features":[579]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_CRASH","features":[579]},{"name":"WSMAN_PLUGIN_STARTUP_AUTORESTARTED_REBOOT","features":[579]},{"name":"WSMAN_PLUGIN_STARTUP_REQUEST_RECEIVED","features":[579]},{"name":"WSMAN_PROXY_INFO","features":[579]},{"name":"WSMAN_RECEIVE_DATA_RESULT","features":[579]},{"name":"WSMAN_RESPONSE_DATA","features":[579]},{"name":"WSMAN_SELECTOR_SET","features":[579]},{"name":"WSMAN_SENDER_DETAILS","features":[305,579]},{"name":"WSMAN_SESSION_HANDLE","features":[579]},{"name":"WSMAN_SHELL_ASYNC","features":[579]},{"name":"WSMAN_SHELL_COMPLETION_FUNCTION","features":[579]},{"name":"WSMAN_SHELL_DISCONNECT_INFO","features":[579]},{"name":"WSMAN_SHELL_HANDLE","features":[579]},{"name":"WSMAN_SHELL_NS","features":[579]},{"name":"WSMAN_SHELL_OPTION_NOPROFILE","features":[579]},{"name":"WSMAN_SHELL_STARTUP_INFO_V10","features":[579]},{"name":"WSMAN_SHELL_STARTUP_INFO_V11","features":[579]},{"name":"WSMAN_STREAM_ID_SET","features":[579]},{"name":"WSMAN_STREAM_ID_STDERR","features":[579]},{"name":"WSMAN_STREAM_ID_STDIN","features":[579]},{"name":"WSMAN_STREAM_ID_STDOUT","features":[579]},{"name":"WSMAN_USERNAME_PASSWORD_CREDS","features":[579]},{"name":"WSMan","features":[579]},{"name":"WSManAuthenticationFlags","features":[579]},{"name":"WSManCallbackFlags","features":[579]},{"name":"WSManCloseCommand","features":[579]},{"name":"WSManCloseOperation","features":[579]},{"name":"WSManCloseSession","features":[579]},{"name":"WSManCloseShell","features":[579]},{"name":"WSManConnectShell","features":[305,579]},{"name":"WSManConnectShellCommand","features":[305,579]},{"name":"WSManCreateSession","features":[579]},{"name":"WSManCreateShell","features":[305,579]},{"name":"WSManCreateShellEx","features":[305,579]},{"name":"WSManDataType","features":[579]},{"name":"WSManDeinitialize","features":[579]},{"name":"WSManDisconnectShell","features":[579]},{"name":"WSManEnumFlags","features":[579]},{"name":"WSManFlagAllowNegotiateImplicitCredentials","features":[579]},{"name":"WSManFlagAssociatedInstance","features":[579]},{"name":"WSManFlagAssociationInstance","features":[579]},{"name":"WSManFlagCredUsernamePassword","features":[579]},{"name":"WSManFlagEnableSPNServerPort","features":[579]},{"name":"WSManFlagHierarchyDeep","features":[579]},{"name":"WSManFlagHierarchyDeepBasePropsOnly","features":[579]},{"name":"WSManFlagHierarchyShallow","features":[579]},{"name":"WSManFlagNoEncryption","features":[579]},{"name":"WSManFlagNonXmlText","features":[579]},{"name":"WSManFlagProxyAuthenticationUseBasic","features":[579]},{"name":"WSManFlagProxyAuthenticationUseDigest","features":[579]},{"name":"WSManFlagProxyAuthenticationUseNegotiate","features":[579]},{"name":"WSManFlagReturnEPR","features":[579]},{"name":"WSManFlagReturnObject","features":[579]},{"name":"WSManFlagReturnObjectAndEPR","features":[579]},{"name":"WSManFlagSkipCACheck","features":[579]},{"name":"WSManFlagSkipCNCheck","features":[579]},{"name":"WSManFlagSkipRevocationCheck","features":[579]},{"name":"WSManFlagUTF16","features":[579]},{"name":"WSManFlagUTF8","features":[579]},{"name":"WSManFlagUseBasic","features":[579]},{"name":"WSManFlagUseClientCertificate","features":[579]},{"name":"WSManFlagUseCredSsp","features":[579]},{"name":"WSManFlagUseDigest","features":[579]},{"name":"WSManFlagUseKerberos","features":[579]},{"name":"WSManFlagUseNegotiate","features":[579]},{"name":"WSManFlagUseNoAuthentication","features":[579]},{"name":"WSManFlagUseSsl","features":[579]},{"name":"WSManGetErrorMessage","features":[579]},{"name":"WSManGetSessionOptionAsDword","features":[579]},{"name":"WSManGetSessionOptionAsString","features":[579]},{"name":"WSManInitialize","features":[579]},{"name":"WSManInternal","features":[579]},{"name":"WSManPluginAuthzOperationComplete","features":[305,579]},{"name":"WSManPluginAuthzQueryQuotaComplete","features":[305,579]},{"name":"WSManPluginAuthzUserComplete","features":[305,579]},{"name":"WSManPluginFreeRequestDetails","features":[305,579]},{"name":"WSManPluginGetConfiguration","features":[579]},{"name":"WSManPluginGetOperationParameters","features":[305,579]},{"name":"WSManPluginOperationComplete","features":[305,579]},{"name":"WSManPluginReceiveResult","features":[305,579]},{"name":"WSManPluginReportCompletion","features":[579]},{"name":"WSManPluginReportContext","features":[305,579]},{"name":"WSManProxyAccessType","features":[579]},{"name":"WSManProxyAccessTypeFlags","features":[579]},{"name":"WSManProxyAuthenticationFlags","features":[579]},{"name":"WSManProxyAutoDetect","features":[579]},{"name":"WSManProxyIEConfig","features":[579]},{"name":"WSManProxyNoProxyServer","features":[579]},{"name":"WSManProxyWinHttpConfig","features":[579]},{"name":"WSManReceiveShellOutput","features":[579]},{"name":"WSManReconnectShell","features":[579]},{"name":"WSManReconnectShellCommand","features":[579]},{"name":"WSManRunShellCommand","features":[305,579]},{"name":"WSManRunShellCommandEx","features":[305,579]},{"name":"WSManSendShellInput","features":[305,579]},{"name":"WSManSessionFlags","features":[579]},{"name":"WSManSessionOption","features":[579]},{"name":"WSManSetSessionOption","features":[579]},{"name":"WSManShellFlag","features":[579]},{"name":"WSManSignalShell","features":[579]}],"601":[{"name":"CCH_RM_MAX_APP_NAME","features":[580]},{"name":"CCH_RM_MAX_SVC_NAME","features":[580]},{"name":"CCH_RM_SESSION_KEY","features":[580]},{"name":"RM_APP_STATUS","features":[580]},{"name":"RM_APP_TYPE","features":[580]},{"name":"RM_FILTER_ACTION","features":[580]},{"name":"RM_FILTER_INFO","features":[305,580]},{"name":"RM_FILTER_TRIGGER","features":[580]},{"name":"RM_INVALID_PROCESS","features":[580]},{"name":"RM_INVALID_TS_SESSION","features":[580]},{"name":"RM_PROCESS_INFO","features":[305,580]},{"name":"RM_REBOOT_REASON","features":[580]},{"name":"RM_SHUTDOWN_TYPE","features":[580]},{"name":"RM_UNIQUE_PROCESS","features":[305,580]},{"name":"RM_WRITE_STATUS_CALLBACK","features":[580]},{"name":"RmAddFilter","features":[305,580]},{"name":"RmCancelCurrentTask","features":[305,580]},{"name":"RmConsole","features":[580]},{"name":"RmCritical","features":[580]},{"name":"RmEndSession","features":[305,580]},{"name":"RmExplorer","features":[580]},{"name":"RmFilterTriggerFile","features":[580]},{"name":"RmFilterTriggerInvalid","features":[580]},{"name":"RmFilterTriggerProcess","features":[580]},{"name":"RmFilterTriggerService","features":[580]},{"name":"RmForceShutdown","features":[580]},{"name":"RmGetFilterList","features":[305,580]},{"name":"RmGetList","features":[305,580]},{"name":"RmInvalidFilterAction","features":[580]},{"name":"RmJoinSession","features":[305,580]},{"name":"RmMainWindow","features":[580]},{"name":"RmNoRestart","features":[580]},{"name":"RmNoShutdown","features":[580]},{"name":"RmOtherWindow","features":[580]},{"name":"RmRebootReasonCriticalProcess","features":[580]},{"name":"RmRebootReasonCriticalService","features":[580]},{"name":"RmRebootReasonDetectedSelf","features":[580]},{"name":"RmRebootReasonNone","features":[580]},{"name":"RmRebootReasonPermissionDenied","features":[580]},{"name":"RmRebootReasonSessionMismatch","features":[580]},{"name":"RmRegisterResources","features":[305,580]},{"name":"RmRemoveFilter","features":[305,580]},{"name":"RmRestart","features":[305,580]},{"name":"RmService","features":[580]},{"name":"RmShutdown","features":[305,580]},{"name":"RmShutdownOnlyRegistered","features":[580]},{"name":"RmStartSession","features":[305,580]},{"name":"RmStatusErrorOnRestart","features":[580]},{"name":"RmStatusErrorOnStop","features":[580]},{"name":"RmStatusRestartMasked","features":[580]},{"name":"RmStatusRestarted","features":[580]},{"name":"RmStatusRunning","features":[580]},{"name":"RmStatusShutdownMasked","features":[580]},{"name":"RmStatusStopped","features":[580]},{"name":"RmStatusStoppedOther","features":[580]},{"name":"RmStatusUnknown","features":[580]},{"name":"RmUnknownApp","features":[580]}],"602":[{"name":"ACCESSIBILITY_SETTING","features":[581]},{"name":"APPLICATION_INSTALL","features":[581]},{"name":"APPLICATION_RUN","features":[581]},{"name":"APPLICATION_UNINSTALL","features":[581]},{"name":"BACKUP","features":[581]},{"name":"BACKUP_RECOVERY","features":[581]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE","features":[581]},{"name":"BEGIN_NESTED_SYSTEM_CHANGE_NORP","features":[581]},{"name":"BEGIN_SYSTEM_CHANGE","features":[581]},{"name":"CANCELLED_OPERATION","features":[581]},{"name":"CHECKPOINT","features":[581]},{"name":"CRITICAL_UPDATE","features":[581]},{"name":"DESKTOP_SETTING","features":[581]},{"name":"DEVICE_DRIVER_INSTALL","features":[581]},{"name":"END_NESTED_SYSTEM_CHANGE","features":[581]},{"name":"END_SYSTEM_CHANGE","features":[581]},{"name":"FIRSTRUN","features":[581]},{"name":"MANUAL_CHECKPOINT","features":[581]},{"name":"MAX_DESC","features":[581]},{"name":"MAX_DESC_W","features":[581]},{"name":"MAX_EVENT","features":[581]},{"name":"MAX_RPT","features":[581]},{"name":"MIN_EVENT","features":[581]},{"name":"MIN_RPT","features":[581]},{"name":"MODIFY_SETTINGS","features":[581]},{"name":"OE_SETTING","features":[581]},{"name":"RESTORE","features":[581]},{"name":"RESTOREPOINTINFOA","features":[581]},{"name":"RESTOREPOINTINFOEX","features":[305,581]},{"name":"RESTOREPOINTINFOW","features":[581]},{"name":"RESTOREPOINTINFO_EVENT_TYPE","features":[581]},{"name":"RESTOREPOINTINFO_TYPE","features":[581]},{"name":"SRRemoveRestorePoint","features":[581]},{"name":"SRSetRestorePointA","features":[305,581]},{"name":"SRSetRestorePointW","features":[305,581]},{"name":"STATEMGRSTATUS","features":[305,581]},{"name":"WINDOWS_BOOT","features":[581]},{"name":"WINDOWS_SHUTDOWN","features":[581]},{"name":"WINDOWS_UPDATE","features":[581]}],"603":[{"name":"ARRAY_INFO","features":[322]},{"name":"BinaryParam","features":[322]},{"name":"CLIENT_CALL_RETURN","features":[322]},{"name":"COMM_FAULT_OFFSETS","features":[322]},{"name":"CS_TAG_GETTING_ROUTINE","features":[322]},{"name":"CS_TYPE_FROM_NETCS_ROUTINE","features":[322]},{"name":"CS_TYPE_LOCAL_SIZE_ROUTINE","features":[322]},{"name":"CS_TYPE_NET_SIZE_ROUTINE","features":[322]},{"name":"CS_TYPE_TO_NETCS_ROUTINE","features":[322]},{"name":"DCE_C_ERROR_STRING_LEN","features":[322]},{"name":"DceErrorInqTextA","features":[322]},{"name":"DceErrorInqTextW","features":[322]},{"name":"EEInfoGCCOM","features":[322]},{"name":"EEInfoGCFRS","features":[322]},{"name":"EEInfoNextRecordsMissing","features":[322]},{"name":"EEInfoPreviousRecordsMissing","features":[322]},{"name":"EEInfoUseFileTime","features":[322]},{"name":"EPT_S_CANT_CREATE","features":[322]},{"name":"EPT_S_CANT_PERFORM_OP","features":[322]},{"name":"EPT_S_INVALID_ENTRY","features":[322]},{"name":"EPT_S_NOT_REGISTERED","features":[322]},{"name":"EXPR_EVAL","features":[356,322]},{"name":"EXPR_TOKEN","features":[322]},{"name":"ExtendedErrorParamTypes","features":[322]},{"name":"FC_EXPR_CONST32","features":[322]},{"name":"FC_EXPR_CONST64","features":[322]},{"name":"FC_EXPR_END","features":[322]},{"name":"FC_EXPR_ILLEGAL","features":[322]},{"name":"FC_EXPR_NOOP","features":[322]},{"name":"FC_EXPR_OPER","features":[322]},{"name":"FC_EXPR_START","features":[322]},{"name":"FC_EXPR_VAR","features":[322]},{"name":"FULL_PTR_XLAT_TABLES","features":[322]},{"name":"GENERIC_BINDING_INFO","features":[322]},{"name":"GENERIC_BINDING_ROUTINE","features":[322]},{"name":"GENERIC_BINDING_ROUTINE_PAIR","features":[322]},{"name":"GENERIC_UNBIND_ROUTINE","features":[322]},{"name":"GROUP_NAME_SYNTAX","features":[322]},{"name":"IDL_CS_CONVERT","features":[322]},{"name":"IDL_CS_IN_PLACE_CONVERT","features":[322]},{"name":"IDL_CS_NEW_BUFFER_CONVERT","features":[322]},{"name":"IDL_CS_NO_CONVERT","features":[322]},{"name":"INVALID_FRAGMENT_ID","features":[322]},{"name":"IUnknown_AddRef_Proxy","features":[322]},{"name":"IUnknown_QueryInterface_Proxy","features":[322]},{"name":"IUnknown_Release_Proxy","features":[322]},{"name":"I_RpcAllocate","features":[322]},{"name":"I_RpcAsyncAbortCall","features":[305,310,322]},{"name":"I_RpcAsyncSetHandle","features":[305,310,322]},{"name":"I_RpcBindingCopy","features":[322]},{"name":"I_RpcBindingCreateNP","features":[322]},{"name":"I_RpcBindingHandleToAsyncHandle","features":[322]},{"name":"I_RpcBindingInqClientTokenAttributes","features":[305,322]},{"name":"I_RpcBindingInqDynamicEndpointA","features":[322]},{"name":"I_RpcBindingInqDynamicEndpointW","features":[322]},{"name":"I_RpcBindingInqLocalClientPID","features":[322]},{"name":"I_RpcBindingInqMarshalledTargetInfo","features":[322]},{"name":"I_RpcBindingInqSecurityContext","features":[322]},{"name":"I_RpcBindingInqSecurityContextKeyInfo","features":[322]},{"name":"I_RpcBindingInqTransportType","features":[322]},{"name":"I_RpcBindingInqWireIdForSnego","features":[322]},{"name":"I_RpcBindingIsClientLocal","features":[322]},{"name":"I_RpcBindingIsServerLocal","features":[322]},{"name":"I_RpcBindingSetPrivateOption","features":[322]},{"name":"I_RpcBindingToStaticStringBindingW","features":[322]},{"name":"I_RpcClearMutex","features":[322]},{"name":"I_RpcDeleteMutex","features":[322]},{"name":"I_RpcExceptionFilter","features":[322]},{"name":"I_RpcFree","features":[322]},{"name":"I_RpcFreeBuffer","features":[322]},{"name":"I_RpcFreeCalloutStateFn","features":[322]},{"name":"I_RpcFreePipeBuffer","features":[322]},{"name":"I_RpcGetBuffer","features":[322]},{"name":"I_RpcGetBufferWithObject","features":[322]},{"name":"I_RpcGetCurrentCallHandle","features":[322]},{"name":"I_RpcGetDefaultSD","features":[322]},{"name":"I_RpcGetExtendedError","features":[322]},{"name":"I_RpcIfInqTransferSyntaxes","features":[322]},{"name":"I_RpcMapWin32Status","features":[322]},{"name":"I_RpcMgmtEnableDedicatedThreadPool","features":[322]},{"name":"I_RpcNegotiateTransferSyntax","features":[322]},{"name":"I_RpcNsBindingSetEntryNameA","features":[322]},{"name":"I_RpcNsBindingSetEntryNameW","features":[322]},{"name":"I_RpcNsGetBuffer","features":[322]},{"name":"I_RpcNsInterfaceExported","features":[322]},{"name":"I_RpcNsInterfaceUnexported","features":[322]},{"name":"I_RpcNsRaiseException","features":[322]},{"name":"I_RpcNsSendReceive","features":[322]},{"name":"I_RpcOpenClientProcess","features":[322]},{"name":"I_RpcPauseExecution","features":[322]},{"name":"I_RpcPerformCalloutFn","features":[322]},{"name":"I_RpcProxyCallbackInterface","features":[322]},{"name":"I_RpcProxyFilterIfFn","features":[322]},{"name":"I_RpcProxyGetClientAddressFn","features":[322]},{"name":"I_RpcProxyGetClientSessionAndResourceUUID","features":[322]},{"name":"I_RpcProxyGetConnectionTimeoutFn","features":[322]},{"name":"I_RpcProxyIsValidMachineFn","features":[322]},{"name":"I_RpcProxyUpdatePerfCounterBackendServerFn","features":[322]},{"name":"I_RpcProxyUpdatePerfCounterFn","features":[322]},{"name":"I_RpcReBindBuffer","features":[322]},{"name":"I_RpcReallocPipeBuffer","features":[322]},{"name":"I_RpcReceive","features":[322]},{"name":"I_RpcRecordCalloutFailure","features":[322]},{"name":"I_RpcRequestMutex","features":[322]},{"name":"I_RpcSend","features":[322]},{"name":"I_RpcSendReceive","features":[322]},{"name":"I_RpcServerCheckClientRestriction","features":[322]},{"name":"I_RpcServerDisableExceptionFilter","features":[322]},{"name":"I_RpcServerGetAssociationID","features":[322]},{"name":"I_RpcServerInqAddressChangeFn","features":[322]},{"name":"I_RpcServerInqLocalConnAddress","features":[322]},{"name":"I_RpcServerInqRemoteConnAddress","features":[322]},{"name":"I_RpcServerInqTransportType","features":[322]},{"name":"I_RpcServerRegisterForwardFunction","features":[322]},{"name":"I_RpcServerSetAddressChangeFn","features":[322]},{"name":"I_RpcServerStartService","features":[322]},{"name":"I_RpcServerSubscribeForDisconnectNotification","features":[322]},{"name":"I_RpcServerSubscribeForDisconnectNotification2","features":[322]},{"name":"I_RpcServerUnsubscribeForDisconnectNotification","features":[322]},{"name":"I_RpcServerUseProtseq2A","features":[322]},{"name":"I_RpcServerUseProtseq2W","features":[322]},{"name":"I_RpcServerUseProtseqEp2A","features":[322]},{"name":"I_RpcServerUseProtseqEp2W","features":[322]},{"name":"I_RpcSessionStrictContextHandle","features":[322]},{"name":"I_RpcSsDontSerializeContext","features":[322]},{"name":"I_RpcSystemHandleTypeSpecificWork","features":[322]},{"name":"I_RpcTurnOnEEInfoPropagation","features":[322]},{"name":"I_UuidCreate","features":[322]},{"name":"LRPC_SYSTEM_HANDLE_MARSHAL_DIRECTION","features":[322]},{"name":"MALLOC_FREE_STRUCT","features":[322]},{"name":"MES_DECODE","features":[322]},{"name":"MES_DYNAMIC_BUFFER_HANDLE","features":[322]},{"name":"MES_ENCODE","features":[322]},{"name":"MES_ENCODE_NDR64","features":[322]},{"name":"MES_FIXED_BUFFER_HANDLE","features":[322]},{"name":"MES_INCREMENTAL_HANDLE","features":[322]},{"name":"MIDL_ES_ALLOC","features":[322]},{"name":"MIDL_ES_CODE","features":[322]},{"name":"MIDL_ES_HANDLE_STYLE","features":[322]},{"name":"MIDL_ES_READ","features":[322]},{"name":"MIDL_ES_WRITE","features":[322]},{"name":"MIDL_FORMAT_STRING","features":[322]},{"name":"MIDL_INTERCEPTION_INFO","features":[322]},{"name":"MIDL_INTERFACE_METHOD_PROPERTIES","features":[322]},{"name":"MIDL_METHOD_PROPERTY","features":[322]},{"name":"MIDL_METHOD_PROPERTY_MAP","features":[322]},{"name":"MIDL_SERVER_INFO","features":[356,322]},{"name":"MIDL_STUBLESS_PROXY_INFO","features":[356,322]},{"name":"MIDL_STUB_DESC","features":[356,322]},{"name":"MIDL_STUB_MESSAGE","features":[356,322]},{"name":"MIDL_SYNTAX_INFO","features":[322]},{"name":"MIDL_TYPE_PICKLING_INFO","features":[322]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO","features":[356,322]},{"name":"MIDL_WINRT_TYPE_SERIALIZATION_INFO_CURRENT_VERSION","features":[322]},{"name":"MarshalDirectionMarshal","features":[322]},{"name":"MarshalDirectionUnmarshal","features":[322]},{"name":"MaxNumberOfEEInfoParams","features":[322]},{"name":"MesBufferHandleReset","features":[322]},{"name":"MesDecodeBufferHandleCreate","features":[322]},{"name":"MesDecodeIncrementalHandleCreate","features":[322]},{"name":"MesEncodeDynBufferHandleCreate","features":[322]},{"name":"MesEncodeFixedBufferHandleCreate","features":[322]},{"name":"MesEncodeIncrementalHandleCreate","features":[322]},{"name":"MesHandleFree","features":[322]},{"name":"MesIncrementalHandleReset","features":[322]},{"name":"MesInqProcEncodingId","features":[322]},{"name":"MidlInterceptionInfoVersionOne","features":[322]},{"name":"MidlWinrtTypeSerializationInfoVersionOne","features":[322]},{"name":"NDR64_ARRAY_ELEMENT_INFO","features":[322]},{"name":"NDR64_ARRAY_FLAGS","features":[322]},{"name":"NDR64_BINDINGS","features":[322]},{"name":"NDR64_BIND_AND_NOTIFY_EXTENSION","features":[322]},{"name":"NDR64_BIND_CONTEXT","features":[322]},{"name":"NDR64_BIND_GENERIC","features":[322]},{"name":"NDR64_BIND_PRIMITIVE","features":[322]},{"name":"NDR64_BOGUS_ARRAY_HEADER_FORMAT","features":[322]},{"name":"NDR64_BOGUS_STRUCTURE_HEADER_FORMAT","features":[322]},{"name":"NDR64_BUFFER_ALIGN_FORMAT","features":[322]},{"name":"NDR64_CONFORMANT_STRING_FORMAT","features":[322]},{"name":"NDR64_CONF_ARRAY_HEADER_FORMAT","features":[322]},{"name":"NDR64_CONF_BOGUS_STRUCTURE_HEADER_FORMAT","features":[322]},{"name":"NDR64_CONF_STRUCTURE_HEADER_FORMAT","features":[322]},{"name":"NDR64_CONF_VAR_ARRAY_HEADER_FORMAT","features":[322]},{"name":"NDR64_CONF_VAR_BOGUS_ARRAY_HEADER_FORMAT","features":[322]},{"name":"NDR64_CONSTANT_IID_FORMAT","features":[322]},{"name":"NDR64_CONTEXT_HANDLE_FLAGS","features":[322]},{"name":"NDR64_CONTEXT_HANDLE_FORMAT","features":[322]},{"name":"NDR64_EMBEDDED_COMPLEX_FORMAT","features":[322]},{"name":"NDR64_ENCAPSULATED_UNION","features":[322]},{"name":"NDR64_EXPR_CONST32","features":[322]},{"name":"NDR64_EXPR_CONST64","features":[322]},{"name":"NDR64_EXPR_NOOP","features":[322]},{"name":"NDR64_EXPR_OPERATOR","features":[322]},{"name":"NDR64_EXPR_VAR","features":[322]},{"name":"NDR64_FC_AUTO_HANDLE","features":[322]},{"name":"NDR64_FC_BIND_GENERIC","features":[322]},{"name":"NDR64_FC_BIND_PRIMITIVE","features":[322]},{"name":"NDR64_FC_CALLBACK_HANDLE","features":[322]},{"name":"NDR64_FC_EXPLICIT_HANDLE","features":[322]},{"name":"NDR64_FC_NO_HANDLE","features":[322]},{"name":"NDR64_FIXED_REPEAT_FORMAT","features":[322]},{"name":"NDR64_FIX_ARRAY_HEADER_FORMAT","features":[322]},{"name":"NDR64_IID_FLAGS","features":[322]},{"name":"NDR64_IID_FORMAT","features":[322]},{"name":"NDR64_MEMPAD_FORMAT","features":[322]},{"name":"NDR64_NON_CONFORMANT_STRING_FORMAT","features":[322]},{"name":"NDR64_NON_ENCAPSULATED_UNION","features":[322]},{"name":"NDR64_NO_REPEAT_FORMAT","features":[322]},{"name":"NDR64_PARAM_FLAGS","features":[322]},{"name":"NDR64_PARAM_FORMAT","features":[322]},{"name":"NDR64_PIPE_FLAGS","features":[322]},{"name":"NDR64_PIPE_FORMAT","features":[322]},{"name":"NDR64_POINTER_FORMAT","features":[322]},{"name":"NDR64_POINTER_INSTANCE_HEADER_FORMAT","features":[322]},{"name":"NDR64_POINTER_REPEAT_FLAGS","features":[322]},{"name":"NDR64_PROC_FLAGS","features":[322]},{"name":"NDR64_PROC_FORMAT","features":[322]},{"name":"NDR64_RANGED_STRING_FORMAT","features":[322]},{"name":"NDR64_RANGE_FORMAT","features":[322]},{"name":"NDR64_RANGE_PIPE_FORMAT","features":[322]},{"name":"NDR64_REPEAT_FORMAT","features":[322]},{"name":"NDR64_RPC_FLAGS","features":[322]},{"name":"NDR64_SIMPLE_MEMBER_FORMAT","features":[322]},{"name":"NDR64_SIMPLE_REGION_FORMAT","features":[322]},{"name":"NDR64_SIZED_CONFORMANT_STRING_FORMAT","features":[322]},{"name":"NDR64_STRING_FLAGS","features":[322]},{"name":"NDR64_STRING_HEADER_FORMAT","features":[322]},{"name":"NDR64_STRUCTURE_FLAGS","features":[322]},{"name":"NDR64_STRUCTURE_HEADER_FORMAT","features":[322]},{"name":"NDR64_SYSTEM_HANDLE_FORMAT","features":[322]},{"name":"NDR64_TRANSMIT_AS_FLAGS","features":[322]},{"name":"NDR64_TRANSMIT_AS_FORMAT","features":[322]},{"name":"NDR64_TYPE_STRICT_CONTEXT_HANDLE","features":[322]},{"name":"NDR64_UNION_ARM","features":[322]},{"name":"NDR64_UNION_ARM_SELECTOR","features":[322]},{"name":"NDR64_USER_MARSHAL_FLAGS","features":[322]},{"name":"NDR64_USER_MARSHAL_FORMAT","features":[322]},{"name":"NDR64_VAR_ARRAY_HEADER_FORMAT","features":[322]},{"name":"NDRCContextBinding","features":[322]},{"name":"NDRCContextMarshall","features":[322]},{"name":"NDRCContextUnmarshall","features":[322]},{"name":"NDRSContextMarshall","features":[322]},{"name":"NDRSContextMarshall2","features":[322]},{"name":"NDRSContextMarshallEx","features":[322]},{"name":"NDRSContextUnmarshall","features":[322]},{"name":"NDRSContextUnmarshall2","features":[322]},{"name":"NDRSContextUnmarshallEx","features":[322]},{"name":"NDR_ALLOC_ALL_NODES_CONTEXT","features":[322]},{"name":"NDR_CS_ROUTINES","features":[322]},{"name":"NDR_CS_SIZE_CONVERT_ROUTINES","features":[322]},{"name":"NDR_CUSTOM_OR_DEFAULT_ALLOCATOR","features":[322]},{"name":"NDR_DEFAULT_ALLOCATOR","features":[322]},{"name":"NDR_EXPR_DESC","features":[322]},{"name":"NDR_NOTIFY2_ROUTINE","features":[322]},{"name":"NDR_NOTIFY_ROUTINE","features":[322]},{"name":"NDR_POINTER_QUEUE_STATE","features":[322]},{"name":"NDR_RUNDOWN","features":[322]},{"name":"NDR_SCONTEXT","features":[322]},{"name":"NDR_USER_MARSHAL_INFO","features":[356,322]},{"name":"NDR_USER_MARSHAL_INFO_LEVEL1","features":[356,322]},{"name":"NT351_INTERFACE_SIZE","features":[322]},{"name":"Ndr64AsyncClientCall","features":[356,322]},{"name":"Ndr64AsyncServerCall64","features":[322]},{"name":"Ndr64AsyncServerCallAll","features":[322]},{"name":"Ndr64DcomAsyncClientCall","features":[356,322]},{"name":"Ndr64DcomAsyncStubCall","features":[356,322]},{"name":"NdrAllocate","features":[356,322]},{"name":"NdrAsyncClientCall","features":[356,322]},{"name":"NdrAsyncServerCall","features":[322]},{"name":"NdrByteCountPointerBufferSize","features":[356,322]},{"name":"NdrByteCountPointerFree","features":[356,322]},{"name":"NdrByteCountPointerMarshall","features":[356,322]},{"name":"NdrByteCountPointerUnmarshall","features":[356,322]},{"name":"NdrClearOutParameters","features":[356,322]},{"name":"NdrClientCall2","features":[356,322]},{"name":"NdrClientCall3","features":[356,322]},{"name":"NdrClientContextMarshall","features":[356,322]},{"name":"NdrClientContextUnmarshall","features":[356,322]},{"name":"NdrClientInitialize","features":[356,322]},{"name":"NdrClientInitializeNew","features":[356,322]},{"name":"NdrComplexArrayBufferSize","features":[356,322]},{"name":"NdrComplexArrayFree","features":[356,322]},{"name":"NdrComplexArrayMarshall","features":[356,322]},{"name":"NdrComplexArrayMemorySize","features":[356,322]},{"name":"NdrComplexArrayUnmarshall","features":[356,322]},{"name":"NdrComplexStructBufferSize","features":[356,322]},{"name":"NdrComplexStructFree","features":[356,322]},{"name":"NdrComplexStructMarshall","features":[356,322]},{"name":"NdrComplexStructMemorySize","features":[356,322]},{"name":"NdrComplexStructUnmarshall","features":[356,322]},{"name":"NdrConformantArrayBufferSize","features":[356,322]},{"name":"NdrConformantArrayFree","features":[356,322]},{"name":"NdrConformantArrayMarshall","features":[356,322]},{"name":"NdrConformantArrayMemorySize","features":[356,322]},{"name":"NdrConformantArrayUnmarshall","features":[356,322]},{"name":"NdrConformantStringBufferSize","features":[356,322]},{"name":"NdrConformantStringMarshall","features":[356,322]},{"name":"NdrConformantStringMemorySize","features":[356,322]},{"name":"NdrConformantStringUnmarshall","features":[356,322]},{"name":"NdrConformantStructBufferSize","features":[356,322]},{"name":"NdrConformantStructFree","features":[356,322]},{"name":"NdrConformantStructMarshall","features":[356,322]},{"name":"NdrConformantStructMemorySize","features":[356,322]},{"name":"NdrConformantStructUnmarshall","features":[356,322]},{"name":"NdrConformantVaryingArrayBufferSize","features":[356,322]},{"name":"NdrConformantVaryingArrayFree","features":[356,322]},{"name":"NdrConformantVaryingArrayMarshall","features":[356,322]},{"name":"NdrConformantVaryingArrayMemorySize","features":[356,322]},{"name":"NdrConformantVaryingArrayUnmarshall","features":[356,322]},{"name":"NdrConformantVaryingStructBufferSize","features":[356,322]},{"name":"NdrConformantVaryingStructFree","features":[356,322]},{"name":"NdrConformantVaryingStructMarshall","features":[356,322]},{"name":"NdrConformantVaryingStructMemorySize","features":[356,322]},{"name":"NdrConformantVaryingStructUnmarshall","features":[356,322]},{"name":"NdrContextHandleInitialize","features":[356,322]},{"name":"NdrContextHandleSize","features":[356,322]},{"name":"NdrConvert","features":[356,322]},{"name":"NdrConvert2","features":[356,322]},{"name":"NdrCorrelationFree","features":[356,322]},{"name":"NdrCorrelationInitialize","features":[356,322]},{"name":"NdrCorrelationPass","features":[356,322]},{"name":"NdrCreateServerInterfaceFromStub","features":[356,322]},{"name":"NdrDcomAsyncClientCall","features":[356,322]},{"name":"NdrDcomAsyncStubCall","features":[356,322]},{"name":"NdrEncapsulatedUnionBufferSize","features":[356,322]},{"name":"NdrEncapsulatedUnionFree","features":[356,322]},{"name":"NdrEncapsulatedUnionMarshall","features":[356,322]},{"name":"NdrEncapsulatedUnionMemorySize","features":[356,322]},{"name":"NdrEncapsulatedUnionUnmarshall","features":[356,322]},{"name":"NdrFixedArrayBufferSize","features":[356,322]},{"name":"NdrFixedArrayFree","features":[356,322]},{"name":"NdrFixedArrayMarshall","features":[356,322]},{"name":"NdrFixedArrayMemorySize","features":[356,322]},{"name":"NdrFixedArrayUnmarshall","features":[356,322]},{"name":"NdrFreeBuffer","features":[356,322]},{"name":"NdrFullPointerXlatFree","features":[322]},{"name":"NdrFullPointerXlatInit","features":[322]},{"name":"NdrGetBuffer","features":[356,322]},{"name":"NdrGetDcomProtocolVersion","features":[356,322]},{"name":"NdrGetUserMarshalInfo","features":[356,322]},{"name":"NdrInterfacePointerBufferSize","features":[356,322]},{"name":"NdrInterfacePointerFree","features":[356,322]},{"name":"NdrInterfacePointerMarshall","features":[356,322]},{"name":"NdrInterfacePointerMemorySize","features":[356,322]},{"name":"NdrInterfacePointerUnmarshall","features":[356,322]},{"name":"NdrMapCommAndFaultStatus","features":[356,322]},{"name":"NdrMesProcEncodeDecode","features":[356,322]},{"name":"NdrMesProcEncodeDecode2","features":[356,322]},{"name":"NdrMesProcEncodeDecode3","features":[356,322]},{"name":"NdrMesSimpleTypeAlignSize","features":[322]},{"name":"NdrMesSimpleTypeAlignSizeAll","features":[356,322]},{"name":"NdrMesSimpleTypeDecode","features":[322]},{"name":"NdrMesSimpleTypeDecodeAll","features":[356,322]},{"name":"NdrMesSimpleTypeEncode","features":[356,322]},{"name":"NdrMesSimpleTypeEncodeAll","features":[356,322]},{"name":"NdrMesTypeAlignSize","features":[356,322]},{"name":"NdrMesTypeAlignSize2","features":[356,322]},{"name":"NdrMesTypeAlignSize3","features":[356,322]},{"name":"NdrMesTypeDecode","features":[356,322]},{"name":"NdrMesTypeDecode2","features":[356,322]},{"name":"NdrMesTypeDecode3","features":[356,322]},{"name":"NdrMesTypeEncode","features":[356,322]},{"name":"NdrMesTypeEncode2","features":[356,322]},{"name":"NdrMesTypeEncode3","features":[356,322]},{"name":"NdrMesTypeFree2","features":[356,322]},{"name":"NdrMesTypeFree3","features":[356,322]},{"name":"NdrNonConformantStringBufferSize","features":[356,322]},{"name":"NdrNonConformantStringMarshall","features":[356,322]},{"name":"NdrNonConformantStringMemorySize","features":[356,322]},{"name":"NdrNonConformantStringUnmarshall","features":[356,322]},{"name":"NdrNonEncapsulatedUnionBufferSize","features":[356,322]},{"name":"NdrNonEncapsulatedUnionFree","features":[356,322]},{"name":"NdrNonEncapsulatedUnionMarshall","features":[356,322]},{"name":"NdrNonEncapsulatedUnionMemorySize","features":[356,322]},{"name":"NdrNonEncapsulatedUnionUnmarshall","features":[356,322]},{"name":"NdrNsGetBuffer","features":[356,322]},{"name":"NdrNsSendReceive","features":[356,322]},{"name":"NdrOleAllocate","features":[322]},{"name":"NdrOleFree","features":[322]},{"name":"NdrPartialIgnoreClientBufferSize","features":[356,322]},{"name":"NdrPartialIgnoreClientMarshall","features":[356,322]},{"name":"NdrPartialIgnoreServerInitialize","features":[356,322]},{"name":"NdrPartialIgnoreServerUnmarshall","features":[356,322]},{"name":"NdrPointerBufferSize","features":[356,322]},{"name":"NdrPointerFree","features":[356,322]},{"name":"NdrPointerMarshall","features":[356,322]},{"name":"NdrPointerMemorySize","features":[356,322]},{"name":"NdrPointerUnmarshall","features":[356,322]},{"name":"NdrRangeUnmarshall","features":[356,322]},{"name":"NdrRpcSmClientAllocate","features":[322]},{"name":"NdrRpcSmClientFree","features":[322]},{"name":"NdrRpcSmSetClientToOsf","features":[356,322]},{"name":"NdrRpcSsDefaultAllocate","features":[322]},{"name":"NdrRpcSsDefaultFree","features":[322]},{"name":"NdrRpcSsDisableAllocate","features":[356,322]},{"name":"NdrRpcSsEnableAllocate","features":[356,322]},{"name":"NdrSendReceive","features":[356,322]},{"name":"NdrServerCall2","features":[322]},{"name":"NdrServerCallAll","features":[322]},{"name":"NdrServerCallNdr64","features":[322]},{"name":"NdrServerContextMarshall","features":[356,322]},{"name":"NdrServerContextNewMarshall","features":[356,322]},{"name":"NdrServerContextNewUnmarshall","features":[356,322]},{"name":"NdrServerContextUnmarshall","features":[356,322]},{"name":"NdrServerInitialize","features":[356,322]},{"name":"NdrServerInitializeMarshall","features":[356,322]},{"name":"NdrServerInitializeNew","features":[356,322]},{"name":"NdrServerInitializePartial","features":[356,322]},{"name":"NdrServerInitializeUnmarshall","features":[356,322]},{"name":"NdrSimpleStructBufferSize","features":[356,322]},{"name":"NdrSimpleStructFree","features":[356,322]},{"name":"NdrSimpleStructMarshall","features":[356,322]},{"name":"NdrSimpleStructMemorySize","features":[356,322]},{"name":"NdrSimpleStructUnmarshall","features":[356,322]},{"name":"NdrSimpleTypeMarshall","features":[356,322]},{"name":"NdrSimpleTypeUnmarshall","features":[356,322]},{"name":"NdrStubCall2","features":[322]},{"name":"NdrStubCall3","features":[322]},{"name":"NdrUserMarshalBufferSize","features":[356,322]},{"name":"NdrUserMarshalFree","features":[356,322]},{"name":"NdrUserMarshalMarshall","features":[356,322]},{"name":"NdrUserMarshalMemorySize","features":[356,322]},{"name":"NdrUserMarshalSimpleTypeConvert","features":[322]},{"name":"NdrUserMarshalUnmarshall","features":[356,322]},{"name":"NdrVaryingArrayBufferSize","features":[356,322]},{"name":"NdrVaryingArrayFree","features":[356,322]},{"name":"NdrVaryingArrayMarshall","features":[356,322]},{"name":"NdrVaryingArrayMemorySize","features":[356,322]},{"name":"NdrVaryingArrayUnmarshall","features":[356,322]},{"name":"NdrXmitOrRepAsBufferSize","features":[356,322]},{"name":"NdrXmitOrRepAsFree","features":[356,322]},{"name":"NdrXmitOrRepAsMarshall","features":[356,322]},{"name":"NdrXmitOrRepAsMemorySize","features":[356,322]},{"name":"NdrXmitOrRepAsUnmarshall","features":[356,322]},{"name":"PFN_RPCNOTIFICATION_ROUTINE","features":[305,310,322]},{"name":"PFN_RPC_ALLOCATE","features":[322]},{"name":"PFN_RPC_FREE","features":[322]},{"name":"PNDR_ASYNC_MESSAGE","features":[322]},{"name":"PNDR_CORRELATION_INFO","features":[322]},{"name":"PROTOCOL_ADDRESS_CHANGE","features":[322]},{"name":"PROTOCOL_LOADED","features":[322]},{"name":"PROTOCOL_NOT_LOADED","features":[322]},{"name":"PROXY_CALCSIZE","features":[322]},{"name":"PROXY_GETBUFFER","features":[322]},{"name":"PROXY_MARSHAL","features":[322]},{"name":"PROXY_PHASE","features":[322]},{"name":"PROXY_SENDRECEIVE","features":[322]},{"name":"PROXY_UNMARSHAL","features":[322]},{"name":"PRPC_RUNDOWN","features":[322]},{"name":"RDR_CALLOUT_STATE","features":[322]},{"name":"RPCFLG_ACCESSIBILITY_BIT1","features":[322]},{"name":"RPCFLG_ACCESSIBILITY_BIT2","features":[322]},{"name":"RPCFLG_ACCESS_LOCAL","features":[322]},{"name":"RPCFLG_ASYNCHRONOUS","features":[322]},{"name":"RPCFLG_AUTO_COMPLETE","features":[322]},{"name":"RPCFLG_HAS_CALLBACK","features":[322]},{"name":"RPCFLG_HAS_GUARANTEE","features":[322]},{"name":"RPCFLG_HAS_MULTI_SYNTAXES","features":[322]},{"name":"RPCFLG_INPUT_SYNCHRONOUS","features":[322]},{"name":"RPCFLG_LOCAL_CALL","features":[322]},{"name":"RPCFLG_MESSAGE","features":[322]},{"name":"RPCFLG_NDR64_CONTAINS_ARM_LAYOUT","features":[322]},{"name":"RPCFLG_NON_NDR","features":[322]},{"name":"RPCFLG_SENDER_WAITING_FOR_REPLY","features":[322]},{"name":"RPCFLG_WINRT_REMOTE_ASYNC","features":[322]},{"name":"RPCHTTP_RS_ACCESS_1","features":[322]},{"name":"RPCHTTP_RS_ACCESS_2","features":[322]},{"name":"RPCHTTP_RS_INTERFACE","features":[322]},{"name":"RPCHTTP_RS_REDIRECT","features":[322]},{"name":"RPCHTTP_RS_SESSION","features":[322]},{"name":"RPCLT_PDU_FILTER_FUNC","features":[322]},{"name":"RPC_ADDRESS_CHANGE_FN","features":[322]},{"name":"RPC_ADDRESS_CHANGE_TYPE","features":[322]},{"name":"RPC_ASYNC_EVENT","features":[322]},{"name":"RPC_ASYNC_NOTIFICATION_INFO","features":[305,310,322]},{"name":"RPC_ASYNC_STATE","features":[305,310,322]},{"name":"RPC_AUTH_KEY_RETRIEVAL_FN","features":[322]},{"name":"RPC_BHO_DONTLINGER","features":[322]},{"name":"RPC_BHO_EXCLUSIVE_AND_GUARANTEED","features":[322]},{"name":"RPC_BHO_NONCAUSAL","features":[322]},{"name":"RPC_BHT_OBJECT_UUID_VALID","features":[322]},{"name":"RPC_BINDING_HANDLE_OPTIONS_FLAGS","features":[322]},{"name":"RPC_BINDING_HANDLE_OPTIONS_V1","features":[322]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_A","features":[356,322]},{"name":"RPC_BINDING_HANDLE_SECURITY_V1_W","features":[356,322]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_A","features":[322]},{"name":"RPC_BINDING_HANDLE_TEMPLATE_V1_W","features":[322]},{"name":"RPC_BINDING_VECTOR","features":[322]},{"name":"RPC_BLOCKING_FN","features":[322]},{"name":"RPC_BUFFER_ASYNC","features":[322]},{"name":"RPC_BUFFER_COMPLETE","features":[322]},{"name":"RPC_BUFFER_EXTRA","features":[322]},{"name":"RPC_BUFFER_NONOTIFY","features":[322]},{"name":"RPC_BUFFER_PARTIAL","features":[322]},{"name":"RPC_CALL_ATTRIBUTES_V1_A","features":[305,322]},{"name":"RPC_CALL_ATTRIBUTES_V1_W","features":[305,322]},{"name":"RPC_CALL_ATTRIBUTES_V2_A","features":[305,322]},{"name":"RPC_CALL_ATTRIBUTES_V2_W","features":[305,322]},{"name":"RPC_CALL_ATTRIBUTES_V3_A","features":[305,322]},{"name":"RPC_CALL_ATTRIBUTES_V3_W","features":[305,322]},{"name":"RPC_CALL_ATTRIBUTES_VERSION","features":[322]},{"name":"RPC_CALL_LOCAL_ADDRESS_V1","features":[322]},{"name":"RPC_CALL_STATUS_CANCELLED","features":[322]},{"name":"RPC_CALL_STATUS_DISCONNECTED","features":[322]},{"name":"RPC_CLIENT_ALLOC","features":[322]},{"name":"RPC_CLIENT_FREE","features":[322]},{"name":"RPC_CLIENT_INFORMATION1","features":[322]},{"name":"RPC_CLIENT_INTERFACE","features":[322]},{"name":"RPC_CONTEXT_HANDLE_DEFAULT_FLAGS","features":[322]},{"name":"RPC_CONTEXT_HANDLE_DONT_SERIALIZE","features":[322]},{"name":"RPC_CONTEXT_HANDLE_FLAGS","features":[322]},{"name":"RPC_CONTEXT_HANDLE_SERIALIZE","features":[322]},{"name":"RPC_C_AUTHN_CLOUD_AP","features":[322]},{"name":"RPC_C_AUTHN_DCE_PRIVATE","features":[322]},{"name":"RPC_C_AUTHN_DCE_PUBLIC","features":[322]},{"name":"RPC_C_AUTHN_DEC_PUBLIC","features":[322]},{"name":"RPC_C_AUTHN_DEFAULT","features":[322]},{"name":"RPC_C_AUTHN_DIGEST","features":[322]},{"name":"RPC_C_AUTHN_DPA","features":[322]},{"name":"RPC_C_AUTHN_GSS_KERBEROS","features":[322]},{"name":"RPC_C_AUTHN_GSS_NEGOTIATE","features":[322]},{"name":"RPC_C_AUTHN_GSS_SCHANNEL","features":[322]},{"name":"RPC_C_AUTHN_INFO_NONE","features":[322]},{"name":"RPC_C_AUTHN_INFO_TYPE","features":[322]},{"name":"RPC_C_AUTHN_INFO_TYPE_HTTP","features":[322]},{"name":"RPC_C_AUTHN_KERNEL","features":[322]},{"name":"RPC_C_AUTHN_LIVEXP_SSP","features":[322]},{"name":"RPC_C_AUTHN_LIVE_SSP","features":[322]},{"name":"RPC_C_AUTHN_MQ","features":[322]},{"name":"RPC_C_AUTHN_MSN","features":[322]},{"name":"RPC_C_AUTHN_MSONLINE","features":[322]},{"name":"RPC_C_AUTHN_NEGO_EXTENDER","features":[322]},{"name":"RPC_C_AUTHN_NONE","features":[322]},{"name":"RPC_C_AUTHN_PKU2U","features":[322]},{"name":"RPC_C_AUTHN_WINNT","features":[322]},{"name":"RPC_C_AUTHZ_DCE","features":[322]},{"name":"RPC_C_AUTHZ_DEFAULT","features":[322]},{"name":"RPC_C_AUTHZ_NAME","features":[322]},{"name":"RPC_C_AUTHZ_NONE","features":[322]},{"name":"RPC_C_BINDING_DEFAULT_TIMEOUT","features":[322]},{"name":"RPC_C_BINDING_INFINITE_TIMEOUT","features":[322]},{"name":"RPC_C_BINDING_MAX_TIMEOUT","features":[322]},{"name":"RPC_C_BINDING_MIN_TIMEOUT","features":[322]},{"name":"RPC_C_BIND_TO_ALL_NICS","features":[322]},{"name":"RPC_C_CANCEL_INFINITE_TIMEOUT","features":[322]},{"name":"RPC_C_DONT_FAIL","features":[322]},{"name":"RPC_C_EP_ALL_ELTS","features":[322]},{"name":"RPC_C_EP_MATCH_BY_BOTH","features":[322]},{"name":"RPC_C_EP_MATCH_BY_IF","features":[322]},{"name":"RPC_C_EP_MATCH_BY_OBJ","features":[322]},{"name":"RPC_C_FULL_CERT_CHAIN","features":[322]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_BASIC","features":[322]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_CERT","features":[322]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_DIGEST","features":[322]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NEGOTIATE","features":[322]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_NTLM","features":[322]},{"name":"RPC_C_HTTP_AUTHN_SCHEME_PASSPORT","features":[322]},{"name":"RPC_C_HTTP_AUTHN_TARGET","features":[322]},{"name":"RPC_C_HTTP_AUTHN_TARGET_PROXY","features":[322]},{"name":"RPC_C_HTTP_AUTHN_TARGET_SERVER","features":[322]},{"name":"RPC_C_HTTP_FLAGS","features":[322]},{"name":"RPC_C_HTTP_FLAG_ENABLE_CERT_REVOCATION_CHECK","features":[322]},{"name":"RPC_C_HTTP_FLAG_IGNORE_CERT_CN_INVALID","features":[322]},{"name":"RPC_C_HTTP_FLAG_USE_FIRST_AUTH_SCHEME","features":[322]},{"name":"RPC_C_HTTP_FLAG_USE_SSL","features":[322]},{"name":"RPC_C_LISTEN_MAX_CALLS_DEFAULT","features":[322]},{"name":"RPC_C_MGMT_INQ_IF_IDS","features":[322]},{"name":"RPC_C_MGMT_INQ_PRINC_NAME","features":[322]},{"name":"RPC_C_MGMT_INQ_STATS","features":[322]},{"name":"RPC_C_MGMT_IS_SERVER_LISTEN","features":[322]},{"name":"RPC_C_MGMT_STOP_SERVER_LISTEN","features":[322]},{"name":"RPC_C_MQ_AUTHN_LEVEL_NONE","features":[322]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_INTEGRITY","features":[322]},{"name":"RPC_C_MQ_AUTHN_LEVEL_PKT_PRIVACY","features":[322]},{"name":"RPC_C_MQ_CLEAR_ON_OPEN","features":[322]},{"name":"RPC_C_MQ_EXPRESS","features":[322]},{"name":"RPC_C_MQ_JOURNAL_ALWAYS","features":[322]},{"name":"RPC_C_MQ_JOURNAL_DEADLETTER","features":[322]},{"name":"RPC_C_MQ_JOURNAL_NONE","features":[322]},{"name":"RPC_C_MQ_PERMANENT","features":[322]},{"name":"RPC_C_MQ_RECOVERABLE","features":[322]},{"name":"RPC_C_MQ_TEMPORARY","features":[322]},{"name":"RPC_C_MQ_USE_EXISTING_SECURITY","features":[322]},{"name":"RPC_C_NOTIFY_ON_SEND_COMPLETE","features":[322]},{"name":"RPC_C_NS_DEFAULT_EXP_AGE","features":[322]},{"name":"RPC_C_NS_SYNTAX_DCE","features":[322]},{"name":"RPC_C_NS_SYNTAX_DEFAULT","features":[322]},{"name":"RPC_C_OPT_ASYNC_BLOCK","features":[322]},{"name":"RPC_C_OPT_BINDING_NONCAUSAL","features":[322]},{"name":"RPC_C_OPT_CALL_TIMEOUT","features":[322]},{"name":"RPC_C_OPT_COOKIE_AUTH","features":[322]},{"name":"RPC_C_OPT_COOKIE_AUTH_DESCRIPTOR","features":[322]},{"name":"RPC_C_OPT_DONT_LINGER","features":[322]},{"name":"RPC_C_OPT_MAX_OPTIONS","features":[322]},{"name":"RPC_C_OPT_MQ_ACKNOWLEDGE","features":[322]},{"name":"RPC_C_OPT_MQ_AUTHN_LEVEL","features":[322]},{"name":"RPC_C_OPT_MQ_AUTHN_SERVICE","features":[322]},{"name":"RPC_C_OPT_MQ_DELIVERY","features":[322]},{"name":"RPC_C_OPT_MQ_JOURNAL","features":[322]},{"name":"RPC_C_OPT_MQ_PRIORITY","features":[322]},{"name":"RPC_C_OPT_MQ_TIME_TO_BE_RECEIVED","features":[322]},{"name":"RPC_C_OPT_MQ_TIME_TO_REACH_QUEUE","features":[322]},{"name":"RPC_C_OPT_OPTIMIZE_TIME","features":[322]},{"name":"RPC_C_OPT_PRIVATE_BREAK_ON_SUSPEND","features":[322]},{"name":"RPC_C_OPT_PRIVATE_DO_NOT_DISTURB","features":[322]},{"name":"RPC_C_OPT_PRIVATE_SUPPRESS_WAKE","features":[322]},{"name":"RPC_C_OPT_RESOURCE_TYPE_UUID","features":[322]},{"name":"RPC_C_OPT_SECURITY_CALLBACK","features":[322]},{"name":"RPC_C_OPT_SESSION_ID","features":[322]},{"name":"RPC_C_OPT_TRANS_SEND_BUFFER_SIZE","features":[322]},{"name":"RPC_C_OPT_TRUST_PEER","features":[322]},{"name":"RPC_C_OPT_UNIQUE_BINDING","features":[322]},{"name":"RPC_C_PARM_BUFFER_LENGTH","features":[322]},{"name":"RPC_C_PARM_MAX_PACKET_LENGTH","features":[322]},{"name":"RPC_C_PROFILE_ALL_ELT","features":[322]},{"name":"RPC_C_PROFILE_ALL_ELTS","features":[322]},{"name":"RPC_C_PROFILE_DEFAULT_ELT","features":[322]},{"name":"RPC_C_PROFILE_MATCH_BY_BOTH","features":[322]},{"name":"RPC_C_PROFILE_MATCH_BY_IF","features":[322]},{"name":"RPC_C_PROFILE_MATCH_BY_MBR","features":[322]},{"name":"RPC_C_PROTSEQ_MAX_REQS_DEFAULT","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES_ANY_AUTHORITY","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES_DEFAULT","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES_IGNORE_DELEGATE_FAILURE","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES_LOCAL_MA_HINT","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES_MAKE_FULLSIC","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES_MUTUAL_AUTH","features":[322]},{"name":"RPC_C_QOS_CAPABILITIES_SCHANNEL_FULL_AUTH_IDENTITY","features":[322]},{"name":"RPC_C_QOS_IDENTITY","features":[322]},{"name":"RPC_C_QOS_IDENTITY_DYNAMIC","features":[322]},{"name":"RPC_C_QOS_IDENTITY_STATIC","features":[322]},{"name":"RPC_C_RPCHTTP_USE_LOAD_BALANCE","features":[322]},{"name":"RPC_C_SECURITY_QOS_VERSION","features":[322]},{"name":"RPC_C_SECURITY_QOS_VERSION_1","features":[322]},{"name":"RPC_C_SECURITY_QOS_VERSION_2","features":[322]},{"name":"RPC_C_SECURITY_QOS_VERSION_3","features":[322]},{"name":"RPC_C_SECURITY_QOS_VERSION_4","features":[322]},{"name":"RPC_C_SECURITY_QOS_VERSION_5","features":[322]},{"name":"RPC_C_STATS_CALLS_IN","features":[322]},{"name":"RPC_C_STATS_CALLS_OUT","features":[322]},{"name":"RPC_C_STATS_PKTS_IN","features":[322]},{"name":"RPC_C_STATS_PKTS_OUT","features":[322]},{"name":"RPC_C_TRY_ENFORCE_MAX_CALLS","features":[322]},{"name":"RPC_C_USE_INTERNET_PORT","features":[322]},{"name":"RPC_C_USE_INTRANET_PORT","features":[322]},{"name":"RPC_C_VERS_ALL","features":[322]},{"name":"RPC_C_VERS_COMPATIBLE","features":[322]},{"name":"RPC_C_VERS_EXACT","features":[322]},{"name":"RPC_C_VERS_MAJOR_ONLY","features":[322]},{"name":"RPC_C_VERS_UPTO","features":[322]},{"name":"RPC_DISPATCH_FUNCTION","features":[322]},{"name":"RPC_DISPATCH_TABLE","features":[322]},{"name":"RPC_EEINFO_VERSION","features":[322]},{"name":"RPC_EE_INFO_PARAM","features":[322]},{"name":"RPC_ENDPOINT_TEMPLATEA","features":[322]},{"name":"RPC_ENDPOINT_TEMPLATEW","features":[322]},{"name":"RPC_ERROR_ENUM_HANDLE","features":[322]},{"name":"RPC_EXTENDED_ERROR_INFO","features":[305,322]},{"name":"RPC_FLAGS_VALID_BIT","features":[322]},{"name":"RPC_FORWARD_FUNCTION","features":[322]},{"name":"RPC_FW_IF_FLAG_DCOM","features":[322]},{"name":"RPC_HTTP_PROXY_FREE_STRING","features":[322]},{"name":"RPC_HTTP_REDIRECTOR_STAGE","features":[322]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_A","features":[322]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_A","features":[322]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V2_W","features":[322]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_A","features":[322]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_V3_W","features":[322]},{"name":"RPC_HTTP_TRANSPORT_CREDENTIALS_W","features":[322]},{"name":"RPC_IF_ALLOW_CALLBACKS_WITH_NO_AUTH","features":[322]},{"name":"RPC_IF_ALLOW_LOCAL_ONLY","features":[322]},{"name":"RPC_IF_ALLOW_SECURE_ONLY","features":[322]},{"name":"RPC_IF_ALLOW_UNKNOWN_AUTHORITY","features":[322]},{"name":"RPC_IF_ASYNC_CALLBACK","features":[322]},{"name":"RPC_IF_AUTOLISTEN","features":[322]},{"name":"RPC_IF_CALLBACK_FN","features":[322]},{"name":"RPC_IF_ID","features":[322]},{"name":"RPC_IF_ID_VECTOR","features":[322]},{"name":"RPC_IF_OLE","features":[322]},{"name":"RPC_IF_SEC_CACHE_PER_PROC","features":[322]},{"name":"RPC_IF_SEC_NO_CACHE","features":[322]},{"name":"RPC_IMPORT_CONTEXT_P","features":[322]},{"name":"RPC_INTERFACE_GROUP_IDLE_CALLBACK_FN","features":[322]},{"name":"RPC_INTERFACE_HAS_PIPES","features":[322]},{"name":"RPC_INTERFACE_TEMPLATEA","features":[322]},{"name":"RPC_INTERFACE_TEMPLATEW","features":[322]},{"name":"RPC_MESSAGE","features":[322]},{"name":"RPC_MGMT_AUTHORIZATION_FN","features":[322]},{"name":"RPC_NCA_FLAGS_BROADCAST","features":[322]},{"name":"RPC_NCA_FLAGS_DEFAULT","features":[322]},{"name":"RPC_NCA_FLAGS_IDEMPOTENT","features":[322]},{"name":"RPC_NCA_FLAGS_MAYBE","features":[322]},{"name":"RPC_NEW_HTTP_PROXY_CHANNEL","features":[322]},{"name":"RPC_NOTIFICATIONS","features":[322]},{"name":"RPC_NOTIFICATION_TYPES","features":[322]},{"name":"RPC_OBJECT_INQ_FN","features":[322]},{"name":"RPC_POLICY","features":[322]},{"name":"RPC_PROTSEQ_ENDPOINT","features":[322]},{"name":"RPC_PROTSEQ_HTTP","features":[322]},{"name":"RPC_PROTSEQ_LRPC","features":[322]},{"name":"RPC_PROTSEQ_NMP","features":[322]},{"name":"RPC_PROTSEQ_TCP","features":[322]},{"name":"RPC_PROTSEQ_VECTORA","features":[322]},{"name":"RPC_PROTSEQ_VECTORW","features":[322]},{"name":"RPC_PROXY_CONNECTION_TYPE_IN_PROXY","features":[322]},{"name":"RPC_PROXY_CONNECTION_TYPE_OUT_PROXY","features":[322]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV4","features":[322]},{"name":"RPC_P_ADDR_FORMAT_TCP_IPV6","features":[322]},{"name":"RPC_QUERY_CALL_LOCAL_ADDRESS","features":[322]},{"name":"RPC_QUERY_CLIENT_ID","features":[322]},{"name":"RPC_QUERY_CLIENT_PID","features":[322]},{"name":"RPC_QUERY_CLIENT_PRINCIPAL_NAME","features":[322]},{"name":"RPC_QUERY_IS_CLIENT_LOCAL","features":[322]},{"name":"RPC_QUERY_NO_AUTH_REQUIRED","features":[322]},{"name":"RPC_QUERY_SERVER_PRINCIPAL_NAME","features":[322]},{"name":"RPC_SECURITY_CALLBACK_FN","features":[322]},{"name":"RPC_SECURITY_QOS","features":[356,322]},{"name":"RPC_SECURITY_QOS_V2_A","features":[356,322]},{"name":"RPC_SECURITY_QOS_V2_W","features":[356,322]},{"name":"RPC_SECURITY_QOS_V3_A","features":[356,322]},{"name":"RPC_SECURITY_QOS_V3_W","features":[356,322]},{"name":"RPC_SECURITY_QOS_V4_A","features":[356,322]},{"name":"RPC_SECURITY_QOS_V4_W","features":[356,322]},{"name":"RPC_SECURITY_QOS_V5_A","features":[356,322]},{"name":"RPC_SECURITY_QOS_V5_W","features":[356,322]},{"name":"RPC_SEC_CONTEXT_KEY_INFO","features":[322]},{"name":"RPC_SERVER_INTERFACE","features":[322]},{"name":"RPC_SETFILTER_FUNC","features":[322]},{"name":"RPC_STATS_VECTOR","features":[322]},{"name":"RPC_STATUS","features":[322]},{"name":"RPC_SYNTAX_IDENTIFIER","features":[322]},{"name":"RPC_SYSTEM_HANDLE_FREE_ALL","features":[322]},{"name":"RPC_SYSTEM_HANDLE_FREE_ERROR_ON_CLOSE","features":[322]},{"name":"RPC_SYSTEM_HANDLE_FREE_RETRIEVED","features":[322]},{"name":"RPC_SYSTEM_HANDLE_FREE_UNRETRIEVED","features":[322]},{"name":"RPC_S_ACCESS_DENIED","features":[322]},{"name":"RPC_S_ADDRESS_ERROR","features":[322]},{"name":"RPC_S_ALREADY_LISTENING","features":[322]},{"name":"RPC_S_ALREADY_REGISTERED","features":[322]},{"name":"RPC_S_ASYNC_CALL_PENDING","features":[322]},{"name":"RPC_S_BINDING_HAS_NO_AUTH","features":[322]},{"name":"RPC_S_BINDING_INCOMPLETE","features":[322]},{"name":"RPC_S_BUFFER_TOO_SMALL","features":[322]},{"name":"RPC_S_CALL_CANCELLED","features":[322]},{"name":"RPC_S_CALL_FAILED","features":[322]},{"name":"RPC_S_CALL_FAILED_DNE","features":[322]},{"name":"RPC_S_CALL_IN_PROGRESS","features":[322]},{"name":"RPC_S_CANNOT_SUPPORT","features":[322]},{"name":"RPC_S_CANT_CREATE_ENDPOINT","features":[322]},{"name":"RPC_S_COMM_FAILURE","features":[322]},{"name":"RPC_S_COOKIE_AUTH_FAILED","features":[322]},{"name":"RPC_S_DO_NOT_DISTURB","features":[322]},{"name":"RPC_S_DUPLICATE_ENDPOINT","features":[322]},{"name":"RPC_S_ENTRY_ALREADY_EXISTS","features":[322]},{"name":"RPC_S_ENTRY_NOT_FOUND","features":[322]},{"name":"RPC_S_ENTRY_TYPE_MISMATCH","features":[322]},{"name":"RPC_S_FP_DIV_ZERO","features":[322]},{"name":"RPC_S_FP_OVERFLOW","features":[322]},{"name":"RPC_S_FP_UNDERFLOW","features":[322]},{"name":"RPC_S_GROUP_MEMBER_NOT_FOUND","features":[322]},{"name":"RPC_S_GRP_ELT_NOT_ADDED","features":[322]},{"name":"RPC_S_GRP_ELT_NOT_REMOVED","features":[322]},{"name":"RPC_S_INCOMPLETE_NAME","features":[322]},{"name":"RPC_S_INTERFACE_NOT_EXPORTED","features":[322]},{"name":"RPC_S_INTERFACE_NOT_FOUND","features":[322]},{"name":"RPC_S_INTERNAL_ERROR","features":[322]},{"name":"RPC_S_INVALID_ARG","features":[322]},{"name":"RPC_S_INVALID_ASYNC_CALL","features":[322]},{"name":"RPC_S_INVALID_ASYNC_HANDLE","features":[322]},{"name":"RPC_S_INVALID_AUTH_IDENTITY","features":[322]},{"name":"RPC_S_INVALID_BINDING","features":[322]},{"name":"RPC_S_INVALID_BOUND","features":[322]},{"name":"RPC_S_INVALID_ENDPOINT_FORMAT","features":[322]},{"name":"RPC_S_INVALID_LEVEL","features":[322]},{"name":"RPC_S_INVALID_NAF_ID","features":[322]},{"name":"RPC_S_INVALID_NAME_SYNTAX","features":[322]},{"name":"RPC_S_INVALID_NETWORK_OPTIONS","features":[322]},{"name":"RPC_S_INVALID_NET_ADDR","features":[322]},{"name":"RPC_S_INVALID_OBJECT","features":[322]},{"name":"RPC_S_INVALID_RPC_PROTSEQ","features":[322]},{"name":"RPC_S_INVALID_SECURITY_DESC","features":[322]},{"name":"RPC_S_INVALID_STRING_BINDING","features":[322]},{"name":"RPC_S_INVALID_STRING_UUID","features":[322]},{"name":"RPC_S_INVALID_TAG","features":[322]},{"name":"RPC_S_INVALID_TIMEOUT","features":[322]},{"name":"RPC_S_INVALID_VERS_OPTION","features":[322]},{"name":"RPC_S_MAX_CALLS_TOO_SMALL","features":[322]},{"name":"RPC_S_NAME_SERVICE_UNAVAILABLE","features":[322]},{"name":"RPC_S_NOTHING_TO_EXPORT","features":[322]},{"name":"RPC_S_NOT_ALL_OBJS_EXPORTED","features":[322]},{"name":"RPC_S_NOT_ALL_OBJS_UNEXPORTED","features":[322]},{"name":"RPC_S_NOT_CANCELLED","features":[322]},{"name":"RPC_S_NOT_ENOUGH_QUOTA","features":[322]},{"name":"RPC_S_NOT_LISTENING","features":[322]},{"name":"RPC_S_NOT_RPC_ERROR","features":[322]},{"name":"RPC_S_NO_BINDINGS","features":[322]},{"name":"RPC_S_NO_CALL_ACTIVE","features":[322]},{"name":"RPC_S_NO_CONTEXT_AVAILABLE","features":[322]},{"name":"RPC_S_NO_ENDPOINT_FOUND","features":[322]},{"name":"RPC_S_NO_ENTRY_NAME","features":[322]},{"name":"RPC_S_NO_INTERFACES","features":[322]},{"name":"RPC_S_NO_MORE_BINDINGS","features":[322]},{"name":"RPC_S_NO_MORE_MEMBERS","features":[322]},{"name":"RPC_S_NO_PRINC_NAME","features":[322]},{"name":"RPC_S_NO_PROTSEQS","features":[322]},{"name":"RPC_S_NO_PROTSEQS_REGISTERED","features":[322]},{"name":"RPC_S_OBJECT_NOT_FOUND","features":[322]},{"name":"RPC_S_OK","features":[322]},{"name":"RPC_S_OUT_OF_MEMORY","features":[322]},{"name":"RPC_S_OUT_OF_RESOURCES","features":[322]},{"name":"RPC_S_OUT_OF_THREADS","features":[322]},{"name":"RPC_S_PRF_ELT_NOT_ADDED","features":[322]},{"name":"RPC_S_PRF_ELT_NOT_REMOVED","features":[322]},{"name":"RPC_S_PROCNUM_OUT_OF_RANGE","features":[322]},{"name":"RPC_S_PROFILE_NOT_ADDED","features":[322]},{"name":"RPC_S_PROTOCOL_ERROR","features":[322]},{"name":"RPC_S_PROTSEQ_NOT_FOUND","features":[322]},{"name":"RPC_S_PROTSEQ_NOT_SUPPORTED","features":[322]},{"name":"RPC_S_PROXY_ACCESS_DENIED","features":[322]},{"name":"RPC_S_RUNTIME_UNINITIALIZED","features":[322]},{"name":"RPC_S_SEC_PKG_ERROR","features":[322]},{"name":"RPC_S_SEND_INCOMPLETE","features":[322]},{"name":"RPC_S_SERVER_OUT_OF_MEMORY","features":[322]},{"name":"RPC_S_SERVER_TOO_BUSY","features":[322]},{"name":"RPC_S_SERVER_UNAVAILABLE","features":[322]},{"name":"RPC_S_STRING_TOO_LONG","features":[322]},{"name":"RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED","features":[322]},{"name":"RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH","features":[322]},{"name":"RPC_S_TIMEOUT","features":[322]},{"name":"RPC_S_TYPE_ALREADY_REGISTERED","features":[322]},{"name":"RPC_S_UNKNOWN_AUTHN_LEVEL","features":[322]},{"name":"RPC_S_UNKNOWN_AUTHN_SERVICE","features":[322]},{"name":"RPC_S_UNKNOWN_AUTHN_TYPE","features":[322]},{"name":"RPC_S_UNKNOWN_AUTHZ_SERVICE","features":[322]},{"name":"RPC_S_UNKNOWN_IF","features":[322]},{"name":"RPC_S_UNKNOWN_MGR_TYPE","features":[322]},{"name":"RPC_S_UNKNOWN_PRINCIPAL","features":[322]},{"name":"RPC_S_UNSUPPORTED_AUTHN_LEVEL","features":[322]},{"name":"RPC_S_UNSUPPORTED_NAME_SYNTAX","features":[322]},{"name":"RPC_S_UNSUPPORTED_TRANS_SYN","features":[322]},{"name":"RPC_S_UNSUPPORTED_TYPE","features":[322]},{"name":"RPC_S_UUID_LOCAL_ONLY","features":[322]},{"name":"RPC_S_UUID_NO_ADDRESS","features":[322]},{"name":"RPC_S_WRONG_KIND_OF_BINDING","features":[322]},{"name":"RPC_S_ZERO_DIVIDE","features":[322]},{"name":"RPC_TRANSFER_SYNTAX","features":[322]},{"name":"RPC_TYPE_DISCONNECT_EVENT_CONTEXT_HANDLE","features":[322]},{"name":"RPC_TYPE_STRICT_CONTEXT_HANDLE","features":[322]},{"name":"RPC_VERSION","features":[322]},{"name":"RpcAsyncAbortCall","features":[305,310,322]},{"name":"RpcAsyncCancelCall","features":[305,310,322]},{"name":"RpcAsyncCompleteCall","features":[305,310,322]},{"name":"RpcAsyncGetCallStatus","features":[305,310,322]},{"name":"RpcAsyncInitializeHandle","features":[305,310,322]},{"name":"RpcAsyncRegisterInfo","features":[305,310,322]},{"name":"RpcAttemptedLbsDecisions","features":[322]},{"name":"RpcAttemptedLbsMessages","features":[322]},{"name":"RpcBackEndConnectionAttempts","features":[322]},{"name":"RpcBackEndConnectionFailed","features":[322]},{"name":"RpcBindingBind","features":[305,310,322]},{"name":"RpcBindingCopy","features":[322]},{"name":"RpcBindingCreateA","features":[356,322]},{"name":"RpcBindingCreateW","features":[356,322]},{"name":"RpcBindingFree","features":[322]},{"name":"RpcBindingFromStringBindingA","features":[322]},{"name":"RpcBindingFromStringBindingW","features":[322]},{"name":"RpcBindingInqAuthClientA","features":[322]},{"name":"RpcBindingInqAuthClientExA","features":[322]},{"name":"RpcBindingInqAuthClientExW","features":[322]},{"name":"RpcBindingInqAuthClientW","features":[322]},{"name":"RpcBindingInqAuthInfoA","features":[322]},{"name":"RpcBindingInqAuthInfoExA","features":[356,322]},{"name":"RpcBindingInqAuthInfoExW","features":[356,322]},{"name":"RpcBindingInqAuthInfoW","features":[322]},{"name":"RpcBindingInqMaxCalls","features":[322]},{"name":"RpcBindingInqObject","features":[322]},{"name":"RpcBindingInqOption","features":[322]},{"name":"RpcBindingReset","features":[322]},{"name":"RpcBindingServerFromClient","features":[322]},{"name":"RpcBindingSetAuthInfoA","features":[322]},{"name":"RpcBindingSetAuthInfoExA","features":[356,322]},{"name":"RpcBindingSetAuthInfoExW","features":[356,322]},{"name":"RpcBindingSetAuthInfoW","features":[322]},{"name":"RpcBindingSetObject","features":[322]},{"name":"RpcBindingSetOption","features":[322]},{"name":"RpcBindingToStringBindingA","features":[322]},{"name":"RpcBindingToStringBindingW","features":[322]},{"name":"RpcBindingUnbind","features":[322]},{"name":"RpcBindingVectorFree","features":[322]},{"name":"RpcCallClientLocality","features":[322]},{"name":"RpcCallComplete","features":[322]},{"name":"RpcCallType","features":[322]},{"name":"RpcCancelThread","features":[322]},{"name":"RpcCancelThreadEx","features":[322]},{"name":"RpcCertGeneratePrincipalNameA","features":[305,389,322]},{"name":"RpcCertGeneratePrincipalNameW","features":[305,389,322]},{"name":"RpcClientCancel","features":[322]},{"name":"RpcClientDisconnect","features":[322]},{"name":"RpcCurrentUniqueUser","features":[322]},{"name":"RpcEpRegisterA","features":[322]},{"name":"RpcEpRegisterNoReplaceA","features":[322]},{"name":"RpcEpRegisterNoReplaceW","features":[322]},{"name":"RpcEpRegisterW","features":[322]},{"name":"RpcEpResolveBinding","features":[322]},{"name":"RpcEpUnregister","features":[322]},{"name":"RpcErrorAddRecord","features":[305,322]},{"name":"RpcErrorClearInformation","features":[322]},{"name":"RpcErrorEndEnumeration","features":[322]},{"name":"RpcErrorGetNextRecord","features":[305,322]},{"name":"RpcErrorGetNumberOfRecords","features":[322]},{"name":"RpcErrorLoadErrorInfo","features":[322]},{"name":"RpcErrorResetEnumeration","features":[322]},{"name":"RpcErrorSaveErrorInfo","features":[322]},{"name":"RpcErrorStartEnumeration","features":[322]},{"name":"RpcExceptionFilter","features":[322]},{"name":"RpcFailedLbsDecisions","features":[322]},{"name":"RpcFailedLbsMessages","features":[322]},{"name":"RpcFreeAuthorizationContext","features":[322]},{"name":"RpcGetAuthorizationContextForClient","features":[305,322]},{"name":"RpcIfIdVectorFree","features":[322]},{"name":"RpcIfInqId","features":[322]},{"name":"RpcImpersonateClient","features":[322]},{"name":"RpcImpersonateClient2","features":[322]},{"name":"RpcImpersonateClientContainer","features":[322]},{"name":"RpcIncomingBandwidth","features":[322]},{"name":"RpcIncomingConnections","features":[322]},{"name":"RpcLastCounter","features":[322]},{"name":"RpcLocalAddressFormat","features":[322]},{"name":"RpcMgmtEnableIdleCleanup","features":[322]},{"name":"RpcMgmtEpEltInqBegin","features":[322]},{"name":"RpcMgmtEpEltInqDone","features":[322]},{"name":"RpcMgmtEpEltInqNextA","features":[322]},{"name":"RpcMgmtEpEltInqNextW","features":[322]},{"name":"RpcMgmtEpUnregister","features":[322]},{"name":"RpcMgmtInqComTimeout","features":[322]},{"name":"RpcMgmtInqDefaultProtectLevel","features":[322]},{"name":"RpcMgmtInqIfIds","features":[322]},{"name":"RpcMgmtInqServerPrincNameA","features":[322]},{"name":"RpcMgmtInqServerPrincNameW","features":[322]},{"name":"RpcMgmtInqStats","features":[322]},{"name":"RpcMgmtIsServerListening","features":[322]},{"name":"RpcMgmtSetAuthorizationFn","features":[322]},{"name":"RpcMgmtSetCancelTimeout","features":[322]},{"name":"RpcMgmtSetComTimeout","features":[322]},{"name":"RpcMgmtSetServerStackSize","features":[322]},{"name":"RpcMgmtStatsVectorFree","features":[322]},{"name":"RpcMgmtStopServerListening","features":[322]},{"name":"RpcMgmtWaitServerListen","features":[322]},{"name":"RpcNetworkInqProtseqsA","features":[322]},{"name":"RpcNetworkInqProtseqsW","features":[322]},{"name":"RpcNetworkIsProtseqValidA","features":[322]},{"name":"RpcNetworkIsProtseqValidW","features":[322]},{"name":"RpcNotificationCallCancel","features":[322]},{"name":"RpcNotificationCallNone","features":[322]},{"name":"RpcNotificationClientDisconnect","features":[322]},{"name":"RpcNotificationTypeApc","features":[322]},{"name":"RpcNotificationTypeCallback","features":[322]},{"name":"RpcNotificationTypeEvent","features":[322]},{"name":"RpcNotificationTypeHwnd","features":[322]},{"name":"RpcNotificationTypeIoc","features":[322]},{"name":"RpcNotificationTypeNone","features":[322]},{"name":"RpcNsBindingExportA","features":[322]},{"name":"RpcNsBindingExportPnPA","features":[322]},{"name":"RpcNsBindingExportPnPW","features":[322]},{"name":"RpcNsBindingExportW","features":[322]},{"name":"RpcNsBindingImportBeginA","features":[322]},{"name":"RpcNsBindingImportBeginW","features":[322]},{"name":"RpcNsBindingImportDone","features":[322]},{"name":"RpcNsBindingImportNext","features":[322]},{"name":"RpcNsBindingInqEntryNameA","features":[322]},{"name":"RpcNsBindingInqEntryNameW","features":[322]},{"name":"RpcNsBindingLookupBeginA","features":[322]},{"name":"RpcNsBindingLookupBeginW","features":[322]},{"name":"RpcNsBindingLookupDone","features":[322]},{"name":"RpcNsBindingLookupNext","features":[322]},{"name":"RpcNsBindingSelect","features":[322]},{"name":"RpcNsBindingUnexportA","features":[322]},{"name":"RpcNsBindingUnexportPnPA","features":[322]},{"name":"RpcNsBindingUnexportPnPW","features":[322]},{"name":"RpcNsBindingUnexportW","features":[322]},{"name":"RpcNsEntryExpandNameA","features":[322]},{"name":"RpcNsEntryExpandNameW","features":[322]},{"name":"RpcNsEntryObjectInqBeginA","features":[322]},{"name":"RpcNsEntryObjectInqBeginW","features":[322]},{"name":"RpcNsEntryObjectInqDone","features":[322]},{"name":"RpcNsEntryObjectInqNext","features":[322]},{"name":"RpcNsGroupDeleteA","features":[322]},{"name":"RpcNsGroupDeleteW","features":[322]},{"name":"RpcNsGroupMbrAddA","features":[322]},{"name":"RpcNsGroupMbrAddW","features":[322]},{"name":"RpcNsGroupMbrInqBeginA","features":[322]},{"name":"RpcNsGroupMbrInqBeginW","features":[322]},{"name":"RpcNsGroupMbrInqDone","features":[322]},{"name":"RpcNsGroupMbrInqNextA","features":[322]},{"name":"RpcNsGroupMbrInqNextW","features":[322]},{"name":"RpcNsGroupMbrRemoveA","features":[322]},{"name":"RpcNsGroupMbrRemoveW","features":[322]},{"name":"RpcNsMgmtBindingUnexportA","features":[322]},{"name":"RpcNsMgmtBindingUnexportW","features":[322]},{"name":"RpcNsMgmtEntryCreateA","features":[322]},{"name":"RpcNsMgmtEntryCreateW","features":[322]},{"name":"RpcNsMgmtEntryDeleteA","features":[322]},{"name":"RpcNsMgmtEntryDeleteW","features":[322]},{"name":"RpcNsMgmtEntryInqIfIdsA","features":[322]},{"name":"RpcNsMgmtEntryInqIfIdsW","features":[322]},{"name":"RpcNsMgmtHandleSetExpAge","features":[322]},{"name":"RpcNsMgmtInqExpAge","features":[322]},{"name":"RpcNsMgmtSetExpAge","features":[322]},{"name":"RpcNsProfileDeleteA","features":[322]},{"name":"RpcNsProfileDeleteW","features":[322]},{"name":"RpcNsProfileEltAddA","features":[322]},{"name":"RpcNsProfileEltAddW","features":[322]},{"name":"RpcNsProfileEltInqBeginA","features":[322]},{"name":"RpcNsProfileEltInqBeginW","features":[322]},{"name":"RpcNsProfileEltInqDone","features":[322]},{"name":"RpcNsProfileEltInqNextA","features":[322]},{"name":"RpcNsProfileEltInqNextW","features":[322]},{"name":"RpcNsProfileEltRemoveA","features":[322]},{"name":"RpcNsProfileEltRemoveW","features":[322]},{"name":"RpcObjectInqType","features":[322]},{"name":"RpcObjectSetInqFn","features":[322]},{"name":"RpcObjectSetType","features":[322]},{"name":"RpcOutgoingBandwidth","features":[322]},{"name":"RpcPerfCounters","features":[322]},{"name":"RpcProtseqVectorFreeA","features":[322]},{"name":"RpcProtseqVectorFreeW","features":[322]},{"name":"RpcRaiseException","features":[322]},{"name":"RpcReceiveComplete","features":[322]},{"name":"RpcRequestsPerSecond","features":[322]},{"name":"RpcRevertContainerImpersonation","features":[322]},{"name":"RpcRevertToSelf","features":[322]},{"name":"RpcRevertToSelfEx","features":[322]},{"name":"RpcSendComplete","features":[322]},{"name":"RpcServerCompleteSecurityCallback","features":[322]},{"name":"RpcServerInqBindingHandle","features":[322]},{"name":"RpcServerInqBindings","features":[322]},{"name":"RpcServerInqBindingsEx","features":[322]},{"name":"RpcServerInqCallAttributesA","features":[322]},{"name":"RpcServerInqCallAttributesW","features":[322]},{"name":"RpcServerInqDefaultPrincNameA","features":[322]},{"name":"RpcServerInqDefaultPrincNameW","features":[322]},{"name":"RpcServerInqIf","features":[322]},{"name":"RpcServerInterfaceGroupActivate","features":[322]},{"name":"RpcServerInterfaceGroupClose","features":[322]},{"name":"RpcServerInterfaceGroupCreateA","features":[322]},{"name":"RpcServerInterfaceGroupCreateW","features":[322]},{"name":"RpcServerInterfaceGroupDeactivate","features":[322]},{"name":"RpcServerInterfaceGroupInqBindings","features":[322]},{"name":"RpcServerListen","features":[322]},{"name":"RpcServerRegisterAuthInfoA","features":[322]},{"name":"RpcServerRegisterAuthInfoW","features":[322]},{"name":"RpcServerRegisterIf","features":[322]},{"name":"RpcServerRegisterIf2","features":[322]},{"name":"RpcServerRegisterIf3","features":[322]},{"name":"RpcServerRegisterIfEx","features":[322]},{"name":"RpcServerSubscribeForNotification","features":[305,310,322]},{"name":"RpcServerTestCancel","features":[322]},{"name":"RpcServerUnregisterIf","features":[322]},{"name":"RpcServerUnregisterIfEx","features":[322]},{"name":"RpcServerUnsubscribeForNotification","features":[322]},{"name":"RpcServerUseAllProtseqs","features":[322]},{"name":"RpcServerUseAllProtseqsEx","features":[322]},{"name":"RpcServerUseAllProtseqsIf","features":[322]},{"name":"RpcServerUseAllProtseqsIfEx","features":[322]},{"name":"RpcServerUseProtseqA","features":[322]},{"name":"RpcServerUseProtseqEpA","features":[322]},{"name":"RpcServerUseProtseqEpExA","features":[322]},{"name":"RpcServerUseProtseqEpExW","features":[322]},{"name":"RpcServerUseProtseqEpW","features":[322]},{"name":"RpcServerUseProtseqExA","features":[322]},{"name":"RpcServerUseProtseqExW","features":[322]},{"name":"RpcServerUseProtseqIfA","features":[322]},{"name":"RpcServerUseProtseqIfExA","features":[322]},{"name":"RpcServerUseProtseqIfExW","features":[322]},{"name":"RpcServerUseProtseqIfW","features":[322]},{"name":"RpcServerUseProtseqW","features":[322]},{"name":"RpcServerYield","features":[322]},{"name":"RpcSmAllocate","features":[322]},{"name":"RpcSmClientFree","features":[322]},{"name":"RpcSmDestroyClientContext","features":[322]},{"name":"RpcSmDisableAllocate","features":[322]},{"name":"RpcSmEnableAllocate","features":[322]},{"name":"RpcSmFree","features":[322]},{"name":"RpcSmGetThreadHandle","features":[322]},{"name":"RpcSmSetClientAllocFree","features":[322]},{"name":"RpcSmSetThreadHandle","features":[322]},{"name":"RpcSmSwapClientAllocFree","features":[322]},{"name":"RpcSsAllocate","features":[322]},{"name":"RpcSsContextLockExclusive","features":[322]},{"name":"RpcSsContextLockShared","features":[322]},{"name":"RpcSsDestroyClientContext","features":[322]},{"name":"RpcSsDisableAllocate","features":[322]},{"name":"RpcSsDontSerializeContext","features":[322]},{"name":"RpcSsEnableAllocate","features":[322]},{"name":"RpcSsFree","features":[322]},{"name":"RpcSsGetContextBinding","features":[322]},{"name":"RpcSsGetThreadHandle","features":[322]},{"name":"RpcSsSetClientAllocFree","features":[322]},{"name":"RpcSsSetThreadHandle","features":[322]},{"name":"RpcSsSwapClientAllocFree","features":[322]},{"name":"RpcStringBindingComposeA","features":[322]},{"name":"RpcStringBindingComposeW","features":[322]},{"name":"RpcStringBindingParseA","features":[322]},{"name":"RpcStringBindingParseW","features":[322]},{"name":"RpcStringFreeA","features":[322]},{"name":"RpcStringFreeW","features":[322]},{"name":"RpcTestCancel","features":[322]},{"name":"RpcUserFree","features":[322]},{"name":"SCONTEXT_QUEUE","features":[322]},{"name":"SEC_WINNT_AUTH_IDENTITY","features":[322]},{"name":"SEC_WINNT_AUTH_IDENTITY_A","features":[322]},{"name":"SEC_WINNT_AUTH_IDENTITY_ANSI","features":[322]},{"name":"SEC_WINNT_AUTH_IDENTITY_UNICODE","features":[322]},{"name":"SEC_WINNT_AUTH_IDENTITY_W","features":[322]},{"name":"SERVER_ROUTINE","features":[322]},{"name":"STUB_CALL_SERVER","features":[322]},{"name":"STUB_CALL_SERVER_NO_HRESULT","features":[322]},{"name":"STUB_MARSHAL","features":[322]},{"name":"STUB_PHASE","features":[322]},{"name":"STUB_THUNK","features":[356,322]},{"name":"STUB_UNMARSHAL","features":[322]},{"name":"SYSTEM_HANDLE_COMPOSITION_OBJECT","features":[322]},{"name":"SYSTEM_HANDLE_EVENT","features":[322]},{"name":"SYSTEM_HANDLE_FILE","features":[322]},{"name":"SYSTEM_HANDLE_INVALID","features":[322]},{"name":"SYSTEM_HANDLE_JOB","features":[322]},{"name":"SYSTEM_HANDLE_MAX","features":[322]},{"name":"SYSTEM_HANDLE_MUTEX","features":[322]},{"name":"SYSTEM_HANDLE_PIPE","features":[322]},{"name":"SYSTEM_HANDLE_PROCESS","features":[322]},{"name":"SYSTEM_HANDLE_REG_KEY","features":[322]},{"name":"SYSTEM_HANDLE_SECTION","features":[322]},{"name":"SYSTEM_HANDLE_SEMAPHORE","features":[322]},{"name":"SYSTEM_HANDLE_SOCKET","features":[322]},{"name":"SYSTEM_HANDLE_THREAD","features":[322]},{"name":"SYSTEM_HANDLE_TOKEN","features":[322]},{"name":"TARGET_IS_NT100_OR_LATER","features":[322]},{"name":"TARGET_IS_NT1012_OR_LATER","features":[322]},{"name":"TARGET_IS_NT102_OR_LATER","features":[322]},{"name":"TARGET_IS_NT351_OR_WIN95_OR_LATER","features":[322]},{"name":"TARGET_IS_NT40_OR_LATER","features":[322]},{"name":"TARGET_IS_NT50_OR_LATER","features":[322]},{"name":"TARGET_IS_NT51_OR_LATER","features":[322]},{"name":"TARGET_IS_NT60_OR_LATER","features":[322]},{"name":"TARGET_IS_NT61_OR_LATER","features":[322]},{"name":"TARGET_IS_NT62_OR_LATER","features":[322]},{"name":"TARGET_IS_NT63_OR_LATER","features":[322]},{"name":"TRANSPORT_TYPE_CN","features":[322]},{"name":"TRANSPORT_TYPE_DG","features":[322]},{"name":"TRANSPORT_TYPE_LPC","features":[322]},{"name":"TRANSPORT_TYPE_WMSG","features":[322]},{"name":"USER_CALL_IS_ASYNC","features":[322]},{"name":"USER_CALL_NEW_CORRELATION_DESC","features":[322]},{"name":"USER_MARSHAL_CB","features":[356,322]},{"name":"USER_MARSHAL_CB_BUFFER_SIZE","features":[322]},{"name":"USER_MARSHAL_CB_FREE","features":[322]},{"name":"USER_MARSHAL_CB_MARSHALL","features":[322]},{"name":"USER_MARSHAL_CB_TYPE","features":[322]},{"name":"USER_MARSHAL_CB_UNMARSHALL","features":[322]},{"name":"USER_MARSHAL_FC_BYTE","features":[322]},{"name":"USER_MARSHAL_FC_CHAR","features":[322]},{"name":"USER_MARSHAL_FC_DOUBLE","features":[322]},{"name":"USER_MARSHAL_FC_FLOAT","features":[322]},{"name":"USER_MARSHAL_FC_HYPER","features":[322]},{"name":"USER_MARSHAL_FC_LONG","features":[322]},{"name":"USER_MARSHAL_FC_SHORT","features":[322]},{"name":"USER_MARSHAL_FC_SMALL","features":[322]},{"name":"USER_MARSHAL_FC_ULONG","features":[322]},{"name":"USER_MARSHAL_FC_USHORT","features":[322]},{"name":"USER_MARSHAL_FC_USMALL","features":[322]},{"name":"USER_MARSHAL_FC_WCHAR","features":[322]},{"name":"USER_MARSHAL_FREEING_ROUTINE","features":[322]},{"name":"USER_MARSHAL_MARSHALLING_ROUTINE","features":[322]},{"name":"USER_MARSHAL_ROUTINE_QUADRUPLE","features":[322]},{"name":"USER_MARSHAL_SIZING_ROUTINE","features":[322]},{"name":"USER_MARSHAL_UNMARSHALLING_ROUTINE","features":[322]},{"name":"UUID_VECTOR","features":[322]},{"name":"UuidCompare","features":[322]},{"name":"UuidCreate","features":[322]},{"name":"UuidCreateNil","features":[322]},{"name":"UuidCreateSequential","features":[322]},{"name":"UuidEqual","features":[322]},{"name":"UuidFromStringA","features":[322]},{"name":"UuidFromStringW","features":[322]},{"name":"UuidHash","features":[322]},{"name":"UuidIsNil","features":[322]},{"name":"UuidToStringA","features":[322]},{"name":"UuidToStringW","features":[322]},{"name":"XLAT_CLIENT","features":[322]},{"name":"XLAT_SERVER","features":[322]},{"name":"XLAT_SIDE","features":[322]},{"name":"XMIT_HELPER_ROUTINE","features":[356,322]},{"name":"XMIT_ROUTINE_QUINTUPLE","features":[356,322]},{"name":"_NDR_PROC_CONTEXT","features":[322]},{"name":"__RPCPROXY_H_VERSION__","features":[322]},{"name":"cbNDRContext","features":[322]},{"name":"eeptAnsiString","features":[322]},{"name":"eeptBinary","features":[322]},{"name":"eeptLongVal","features":[322]},{"name":"eeptNone","features":[322]},{"name":"eeptPointerVal","features":[322]},{"name":"eeptShortVal","features":[322]},{"name":"eeptUnicodeString","features":[322]},{"name":"rcclClientUnknownLocality","features":[322]},{"name":"rcclInvalid","features":[322]},{"name":"rcclLocal","features":[322]},{"name":"rcclRemote","features":[322]},{"name":"rctGuaranteed","features":[322]},{"name":"rctInvalid","features":[322]},{"name":"rctNormal","features":[322]},{"name":"rctTraining","features":[322]},{"name":"rlafIPv4","features":[322]},{"name":"rlafIPv6","features":[322]},{"name":"rlafInvalid","features":[322]},{"name":"system_handle_t","features":[322]}],"604":[{"name":"ACCESS_MASKENUM","features":[582]},{"name":"AUTHENTICATION_INFO","features":[582]},{"name":"AUTH_TYPE","features":[582]},{"name":"BCP6xFILEFMT","features":[582]},{"name":"BCPABORT","features":[582]},{"name":"BCPBATCH","features":[582]},{"name":"BCPFILECP","features":[582]},{"name":"BCPFILECP_ACP","features":[582]},{"name":"BCPFILECP_OEMCP","features":[582]},{"name":"BCPFILECP_RAW","features":[582]},{"name":"BCPFILEFMT","features":[582]},{"name":"BCPFIRST","features":[582]},{"name":"BCPHINTS","features":[582]},{"name":"BCPHINTSA","features":[582]},{"name":"BCPHINTSW","features":[582]},{"name":"BCPKEEPIDENTITY","features":[582]},{"name":"BCPKEEPNULLS","features":[582]},{"name":"BCPLAST","features":[582]},{"name":"BCPMAXERRS","features":[582]},{"name":"BCPODBC","features":[582]},{"name":"BCPTEXTFILE","features":[582]},{"name":"BCPUNICODEFILE","features":[582]},{"name":"BCP_FMT_COLLATION","features":[582]},{"name":"BCP_FMT_COLLATION_ID","features":[582]},{"name":"BCP_FMT_DATA_LEN","features":[582]},{"name":"BCP_FMT_INDICATOR_LEN","features":[582]},{"name":"BCP_FMT_SERVER_COL","features":[582]},{"name":"BCP_FMT_TERMINATOR","features":[582]},{"name":"BCP_FMT_TYPE","features":[582]},{"name":"BIO_BINDER","features":[582]},{"name":"BMK_DURABILITY_INTRANSACTION","features":[582]},{"name":"BMK_DURABILITY_REORGANIZATION","features":[582]},{"name":"BMK_DURABILITY_ROWSET","features":[582]},{"name":"BMK_DURABILITY_XTRANSACTION","features":[582]},{"name":"BUCKETCATEGORIZE","features":[582]},{"name":"BUCKET_EXPONENTIAL","features":[582]},{"name":"BUCKET_LINEAR","features":[582]},{"name":"CASE_REQUIREMENT","features":[582]},{"name":"CASE_REQUIREMENT_ANY","features":[582]},{"name":"CASE_REQUIREMENT_UPPER_IF_AQS","features":[582]},{"name":"CATALOG_PAUSED_REASON_DELAYED_RECOVERY","features":[582]},{"name":"CATALOG_PAUSED_REASON_EXTERNAL","features":[582]},{"name":"CATALOG_PAUSED_REASON_HIGH_CPU","features":[582]},{"name":"CATALOG_PAUSED_REASON_HIGH_IO","features":[582]},{"name":"CATALOG_PAUSED_REASON_HIGH_NTF_RATE","features":[582]},{"name":"CATALOG_PAUSED_REASON_LOW_BATTERY","features":[582]},{"name":"CATALOG_PAUSED_REASON_LOW_DISK","features":[582]},{"name":"CATALOG_PAUSED_REASON_LOW_MEMORY","features":[582]},{"name":"CATALOG_PAUSED_REASON_NONE","features":[582]},{"name":"CATALOG_PAUSED_REASON_UPGRADING","features":[582]},{"name":"CATALOG_PAUSED_REASON_USER_ACTIVE","features":[582]},{"name":"CATALOG_STATUS_FULL_CRAWL","features":[582]},{"name":"CATALOG_STATUS_IDLE","features":[582]},{"name":"CATALOG_STATUS_INCREMENTAL_CRAWL","features":[582]},{"name":"CATALOG_STATUS_PAUSED","features":[582]},{"name":"CATALOG_STATUS_PROCESSING_NOTIFICATIONS","features":[582]},{"name":"CATALOG_STATUS_RECOVERING","features":[582]},{"name":"CATALOG_STATUS_SHUTTING_DOWN","features":[582]},{"name":"CATEGORIZATION","features":[510,429,582]},{"name":"CATEGORIZATIONSET","features":[510,429,582]},{"name":"CATEGORIZE_BUCKETS","features":[582]},{"name":"CATEGORIZE_CLUSTER","features":[582]},{"name":"CATEGORIZE_RANGE","features":[582]},{"name":"CATEGORIZE_UNIQUE","features":[582]},{"name":"CATEGORY_COLLATOR","features":[582]},{"name":"CATEGORY_GATHERER","features":[582]},{"name":"CATEGORY_INDEXER","features":[582]},{"name":"CATEGORY_SEARCH","features":[582]},{"name":"CDBBMKDISPIDS","features":[582]},{"name":"CDBCOLDISPIDS","features":[582]},{"name":"CDBSELFDISPIDS","features":[582]},{"name":"CERT_E_NOT_FOUND_OR_NO_PERMISSSION","features":[582]},{"name":"CHANNEL_AGENT_DYNAMIC_SCHEDULE","features":[582]},{"name":"CHANNEL_AGENT_FLAGS","features":[582]},{"name":"CHANNEL_AGENT_PRECACHE_ALL","features":[582]},{"name":"CHANNEL_AGENT_PRECACHE_SCRNSAVER","features":[582]},{"name":"CHANNEL_AGENT_PRECACHE_SOME","features":[582]},{"name":"CI_E_CORRUPT_FWIDX","features":[582]},{"name":"CI_E_DIACRITIC_SETTINGS_DIFFER","features":[582]},{"name":"CI_E_INCONSISTENT_TRANSACTION","features":[582]},{"name":"CI_E_INVALID_CATALOG_LIST_VERSION","features":[582]},{"name":"CI_E_MULTIPLE_PROTECTED_USERS_UNSUPPORTED","features":[582]},{"name":"CI_E_NO_AUXMETADATA","features":[582]},{"name":"CI_E_NO_CATALOG_MANAGER","features":[582]},{"name":"CI_E_NO_PROTECTED_USER","features":[582]},{"name":"CI_E_PROTECTED_CATALOG_NON_INTERACTIVE_USER","features":[582]},{"name":"CI_E_PROTECTED_CATALOG_NOT_AVAILABLE","features":[582]},{"name":"CI_E_PROTECTED_CATALOG_SID_MISMATCH","features":[582]},{"name":"CI_S_CATALOG_RESET","features":[582]},{"name":"CI_S_CLIENT_REQUESTED_ABORT","features":[582]},{"name":"CI_S_NEW_AUXMETADATA","features":[582]},{"name":"CI_S_RETRY_DOCUMENT","features":[582]},{"name":"CLSID_CISimpleCommandCreator","features":[582]},{"name":"CLSID_DataShapeProvider","features":[582]},{"name":"CLSID_MSDASQL","features":[582]},{"name":"CLSID_MSDASQL_ENUMERATOR","features":[582]},{"name":"CLSID_MSPersist","features":[582]},{"name":"CLSID_SQLOLEDB","features":[582]},{"name":"CLSID_SQLOLEDB_ENUMERATOR","features":[582]},{"name":"CLSID_SQLOLEDB_ERROR","features":[582]},{"name":"CLUSIONREASON_DEFAULT","features":[582]},{"name":"CLUSIONREASON_GROUPPOLICY","features":[582]},{"name":"CLUSIONREASON_UNKNOWNSCOPE","features":[582]},{"name":"CLUSIONREASON_USER","features":[582]},{"name":"CLUSION_REASON","features":[582]},{"name":"CMDLINE_E_ALREADY_INIT","features":[582]},{"name":"CMDLINE_E_NOT_INIT","features":[582]},{"name":"CMDLINE_E_NUM_PARAMS","features":[582]},{"name":"CMDLINE_E_PARAM_SIZE","features":[582]},{"name":"CMDLINE_E_PAREN","features":[582]},{"name":"CMDLINE_E_UNEXPECTED","features":[582]},{"name":"CM_E_CONNECTIONTIMEOUT","features":[582]},{"name":"CM_E_DATASOURCENOTAVAILABLE","features":[582]},{"name":"CM_E_INSUFFICIENTBUFFER","features":[582]},{"name":"CM_E_INVALIDDATASOURCE","features":[582]},{"name":"CM_E_NOQUERYCONNECTIONS","features":[582]},{"name":"CM_E_REGISTRY","features":[582]},{"name":"CM_E_SERVERNOTFOUND","features":[582]},{"name":"CM_E_TIMEOUT","features":[582]},{"name":"CM_E_TOOMANYDATASERVERS","features":[582]},{"name":"CM_E_TOOMANYDATASOURCES","features":[582]},{"name":"CM_S_NODATASERVERS","features":[582]},{"name":"COLL_E_BADRESULT","features":[582]},{"name":"COLL_E_BADSEQUENCE","features":[582]},{"name":"COLL_E_BUFFERTOOSMALL","features":[582]},{"name":"COLL_E_DUPLICATEDBID","features":[582]},{"name":"COLL_E_INCOMPATIBLECOLUMNS","features":[582]},{"name":"COLL_E_MAXCONNEXCEEDED","features":[582]},{"name":"COLL_E_NODEFAULTCATALOG","features":[582]},{"name":"COLL_E_NOMOREDATA","features":[582]},{"name":"COLL_E_NOSORTCOLUMN","features":[582]},{"name":"COLL_E_TOOMANYMERGECOLUMNS","features":[582]},{"name":"COLUMNSET","features":[510,429,582]},{"name":"CONDITION_CREATION_DEFAULT","features":[582]},{"name":"CONDITION_CREATION_NONE","features":[582]},{"name":"CONDITION_CREATION_OPTIONS","features":[582]},{"name":"CONDITION_CREATION_SIMPLIFY","features":[582]},{"name":"CONDITION_CREATION_USE_CONTENT_LOCALE","features":[582]},{"name":"CONDITION_CREATION_VECTOR_AND","features":[582]},{"name":"CONDITION_CREATION_VECTOR_LEAF","features":[582]},{"name":"CONDITION_CREATION_VECTOR_OR","features":[582]},{"name":"CONTENTRESTRICTION","features":[510,429,582]},{"name":"CONTENT_SOURCE_E_CONTENT_CLASS_READ","features":[582]},{"name":"CONTENT_SOURCE_E_CONTENT_SOURCE_COLUMN_TYPE","features":[582]},{"name":"CONTENT_SOURCE_E_NULL_CONTENT_CLASS_BSTR","features":[582]},{"name":"CONTENT_SOURCE_E_NULL_URI","features":[582]},{"name":"CONTENT_SOURCE_E_OUT_OF_RANGE","features":[582]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_BAD_VECTOR_SIZE","features":[582]},{"name":"CONTENT_SOURCE_E_PROPERTY_MAPPING_READ","features":[582]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_EXCEPTION","features":[582]},{"name":"CONTENT_SOURCE_E_UNEXPECTED_NULL_POINTER","features":[582]},{"name":"CQUERYDISPIDS","features":[582]},{"name":"CQUERYMETADISPIDS","features":[582]},{"name":"CQUERYPROPERTY","features":[582]},{"name":"CREATESUBSCRIPTIONFLAGS","features":[582]},{"name":"CREATESUBS_ADDTOFAVORITES","features":[582]},{"name":"CREATESUBS_FROMFAVORITES","features":[582]},{"name":"CREATESUBS_NOSAVE","features":[582]},{"name":"CREATESUBS_NOUI","features":[582]},{"name":"CREATESUBS_SOFTWAREUPDATE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_ASSERTIONS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_CATALOGS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_CHARACTER_SETS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_CHECK_CONSTRAINTS_BY_TABLE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_COLLATIONS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMNS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_DOMAIN_USAGE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_COLUMN_PRIVILEGES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_COLUMN_USAGE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_CONSTRAINT_TABLE_USAGE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_FOREIGN_KEYS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_INDEXES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_KEY_COLUMN_USAGE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_LINKEDSERVERS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECTS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_OBJECT_ACTIONS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_PRIMARY_KEYS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_COLUMNS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_PROCEDURE_PARAMETERS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_PROVIDER_TYPES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_REFERENTIAL_CONSTRAINTS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_SCHEMATA","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_SQL_LANGUAGES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_STATISTICS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLES_INFO","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_CONSTRAINTS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_PRIVILEGES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_TABLE_STATISTICS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_TRANSLATIONS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_TRUSTEE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_USAGE_PRIVILEGES","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEWS","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_COLUMN_USAGE","features":[582]},{"name":"CRESTRICTIONS_DBSCHEMA_VIEW_TABLE_USAGE","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_ACTIONS","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_COMMANDS","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_CUBES","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_DIMENSIONS","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_FUNCTIONS","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_HIERARCHIES","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_LEVELS","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_MEASURES","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_MEMBERS","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_PROPERTIES","features":[582]},{"name":"CRESTRICTIONS_MDSCHEMA_SETS","features":[582]},{"name":"CSTORAGEPROPERTY","features":[582]},{"name":"CSearchLanguageSupport","features":[582]},{"name":"CSearchManager","features":[582]},{"name":"CSearchRoot","features":[582]},{"name":"CSearchScopeRule","features":[582]},{"name":"CatalogPausedReason","features":[582]},{"name":"CatalogStatus","features":[582]},{"name":"CompoundCondition","features":[582]},{"name":"ConditionFactory","features":[582]},{"name":"DATE_STRUCT","features":[582]},{"name":"DBACCESSORFLAGSENUM","features":[582]},{"name":"DBACCESSOR_INHERITED","features":[582]},{"name":"DBACCESSOR_INVALID","features":[582]},{"name":"DBACCESSOR_OPTIMIZED","features":[582]},{"name":"DBACCESSOR_PARAMETERDATA","features":[582]},{"name":"DBACCESSOR_PASSBYREF","features":[582]},{"name":"DBACCESSOR_ROWDATA","features":[582]},{"name":"DBASYNCHOPENUM","features":[582]},{"name":"DBASYNCHOP_OPEN","features":[582]},{"name":"DBASYNCHPHASEENUM","features":[582]},{"name":"DBASYNCHPHASE_CANCELED","features":[582]},{"name":"DBASYNCHPHASE_COMPLETE","features":[582]},{"name":"DBASYNCHPHASE_INITIALIZATION","features":[582]},{"name":"DBASYNCHPHASE_POPULATION","features":[582]},{"name":"DBBINDEXT","features":[582]},{"name":"DBBINDEXT","features":[582]},{"name":"DBBINDFLAGENUM","features":[582]},{"name":"DBBINDFLAG_HTML","features":[582]},{"name":"DBBINDING","features":[356,582]},{"name":"DBBINDING","features":[356,582]},{"name":"DBBINDSTATUSENUM","features":[582]},{"name":"DBBINDSTATUS_BADBINDINFO","features":[582]},{"name":"DBBINDSTATUS_BADORDINAL","features":[582]},{"name":"DBBINDSTATUS_BADSTORAGEFLAGS","features":[582]},{"name":"DBBINDSTATUS_MULTIPLESTORAGE","features":[582]},{"name":"DBBINDSTATUS_NOINTERFACE","features":[582]},{"name":"DBBINDSTATUS_OK","features":[582]},{"name":"DBBINDSTATUS_UNSUPPORTEDCONVERSION","features":[582]},{"name":"DBBINDURLFLAGENUM","features":[582]},{"name":"DBBINDURLFLAG_ASYNCHRONOUS","features":[582]},{"name":"DBBINDURLFLAG_COLLECTION","features":[582]},{"name":"DBBINDURLFLAG_DELAYFETCHCOLUMNS","features":[582]},{"name":"DBBINDURLFLAG_DELAYFETCHSTREAM","features":[582]},{"name":"DBBINDURLFLAG_ISSTRUCTUREDDOCUMENT","features":[582]},{"name":"DBBINDURLFLAG_OPENIFEXISTS","features":[582]},{"name":"DBBINDURLFLAG_OUTPUT","features":[582]},{"name":"DBBINDURLFLAG_OVERWRITE","features":[582]},{"name":"DBBINDURLFLAG_READ","features":[582]},{"name":"DBBINDURLFLAG_READWRITE","features":[582]},{"name":"DBBINDURLFLAG_RECURSIVE","features":[582]},{"name":"DBBINDURLFLAG_SHARE_DENY_NONE","features":[582]},{"name":"DBBINDURLFLAG_SHARE_DENY_READ","features":[582]},{"name":"DBBINDURLFLAG_SHARE_DENY_WRITE","features":[582]},{"name":"DBBINDURLFLAG_SHARE_EXCLUSIVE","features":[582]},{"name":"DBBINDURLFLAG_WAITFORINIT","features":[582]},{"name":"DBBINDURLFLAG_WRITE","features":[582]},{"name":"DBBINDURLSTATUSENUM","features":[582]},{"name":"DBBINDURLSTATUS_S_DENYNOTSUPPORTED","features":[582]},{"name":"DBBINDURLSTATUS_S_DENYTYPENOTSUPPORTED","features":[582]},{"name":"DBBINDURLSTATUS_S_OK","features":[582]},{"name":"DBBINDURLSTATUS_S_REDIRECTED","features":[582]},{"name":"DBBMKGUID","features":[582]},{"name":"DBBMK_FIRST","features":[582]},{"name":"DBBMK_INVALID","features":[582]},{"name":"DBBMK_LAST","features":[582]},{"name":"DBBOOKMARK","features":[582]},{"name":"DBCIDGUID","features":[582]},{"name":"DBCOLUMNACCESS","features":[510,582]},{"name":"DBCOLUMNACCESS","features":[510,582]},{"name":"DBCOLUMNDESC","features":[510,356,582]},{"name":"DBCOLUMNDESC","features":[510,356,582]},{"name":"DBCOLUMNDESCFLAGSENUM","features":[582]},{"name":"DBCOLUMNDESCFLAGS_CLSID","features":[582]},{"name":"DBCOLUMNDESCFLAGS_COLSIZE","features":[582]},{"name":"DBCOLUMNDESCFLAGS_DBCID","features":[582]},{"name":"DBCOLUMNDESCFLAGS_ITYPEINFO","features":[582]},{"name":"DBCOLUMNDESCFLAGS_PRECISION","features":[582]},{"name":"DBCOLUMNDESCFLAGS_PROPERTIES","features":[582]},{"name":"DBCOLUMNDESCFLAGS_SCALE","features":[582]},{"name":"DBCOLUMNDESCFLAGS_TYPENAME","features":[582]},{"name":"DBCOLUMNDESCFLAGS_WTYPE","features":[582]},{"name":"DBCOLUMNFLAGS15ENUM","features":[582]},{"name":"DBCOLUMNFLAGSDEPRECATED","features":[582]},{"name":"DBCOLUMNFLAGSENUM","features":[582]},{"name":"DBCOLUMNFLAGSENUM20","features":[582]},{"name":"DBCOLUMNFLAGSENUM21","features":[582]},{"name":"DBCOLUMNFLAGSENUM26","features":[582]},{"name":"DBCOLUMNFLAGS_CACHEDEFERRED","features":[582]},{"name":"DBCOLUMNFLAGS_ISBOOKMARK","features":[582]},{"name":"DBCOLUMNFLAGS_ISCHAPTER","features":[582]},{"name":"DBCOLUMNFLAGS_ISCOLLECTION","features":[582]},{"name":"DBCOLUMNFLAGS_ISDEFAULTSTREAM","features":[582]},{"name":"DBCOLUMNFLAGS_ISFIXEDLENGTH","features":[582]},{"name":"DBCOLUMNFLAGS_ISLONG","features":[582]},{"name":"DBCOLUMNFLAGS_ISNULLABLE","features":[582]},{"name":"DBCOLUMNFLAGS_ISROW","features":[582]},{"name":"DBCOLUMNFLAGS_ISROWID","features":[582]},{"name":"DBCOLUMNFLAGS_ISROWSET","features":[582]},{"name":"DBCOLUMNFLAGS_ISROWURL","features":[582]},{"name":"DBCOLUMNFLAGS_ISROWVER","features":[582]},{"name":"DBCOLUMNFLAGS_ISSTREAM","features":[582]},{"name":"DBCOLUMNFLAGS_KEYCOLUMN","features":[582]},{"name":"DBCOLUMNFLAGS_MAYBENULL","features":[582]},{"name":"DBCOLUMNFLAGS_MAYDEFER","features":[582]},{"name":"DBCOLUMNFLAGS_RESERVED","features":[582]},{"name":"DBCOLUMNFLAGS_ROWSPECIFICCOLUMN","features":[582]},{"name":"DBCOLUMNFLAGS_SCALEISNEGATIVE","features":[582]},{"name":"DBCOLUMNFLAGS_WRITE","features":[582]},{"name":"DBCOLUMNFLAGS_WRITEUNKNOWN","features":[582]},{"name":"DBCOLUMNINFO","features":[510,356,582]},{"name":"DBCOLUMNINFO","features":[510,356,582]},{"name":"DBCOMMANDPERSISTFLAGENUM","features":[582]},{"name":"DBCOMMANDPERSISTFLAGENUM21","features":[582]},{"name":"DBCOMMANDPERSISTFLAG_DEFAULT","features":[582]},{"name":"DBCOMMANDPERSISTFLAG_NOSAVE","features":[582]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTPROCEDURE","features":[582]},{"name":"DBCOMMANDPERSISTFLAG_PERSISTVIEW","features":[582]},{"name":"DBCOMPAREENUM","features":[582]},{"name":"DBCOMPAREOPSENUM","features":[582]},{"name":"DBCOMPAREOPSENUM20","features":[582]},{"name":"DBCOMPAREOPS_BEGINSWITH","features":[582]},{"name":"DBCOMPAREOPS_CASEINSENSITIVE","features":[582]},{"name":"DBCOMPAREOPS_CASESENSITIVE","features":[582]},{"name":"DBCOMPAREOPS_CONTAINS","features":[582]},{"name":"DBCOMPAREOPS_EQ","features":[582]},{"name":"DBCOMPAREOPS_GE","features":[582]},{"name":"DBCOMPAREOPS_GT","features":[582]},{"name":"DBCOMPAREOPS_IGNORE","features":[582]},{"name":"DBCOMPAREOPS_LE","features":[582]},{"name":"DBCOMPAREOPS_LT","features":[582]},{"name":"DBCOMPAREOPS_NE","features":[582]},{"name":"DBCOMPAREOPS_NOTBEGINSWITH","features":[582]},{"name":"DBCOMPAREOPS_NOTCONTAINS","features":[582]},{"name":"DBCOMPARE_EQ","features":[582]},{"name":"DBCOMPARE_GT","features":[582]},{"name":"DBCOMPARE_LT","features":[582]},{"name":"DBCOMPARE_NE","features":[582]},{"name":"DBCOMPARE_NOTCOMPARABLE","features":[582]},{"name":"DBCOMPUTEMODE_COMPUTED","features":[582]},{"name":"DBCOMPUTEMODE_DYNAMIC","features":[582]},{"name":"DBCOMPUTEMODE_NOTCOMPUTED","features":[582]},{"name":"DBCONSTRAINTDESC","features":[510,582]},{"name":"DBCONSTRAINTDESC","features":[510,582]},{"name":"DBCONSTRAINTTYPEENUM","features":[582]},{"name":"DBCONSTRAINTTYPE_CHECK","features":[582]},{"name":"DBCONSTRAINTTYPE_FOREIGNKEY","features":[582]},{"name":"DBCONSTRAINTTYPE_PRIMARYKEY","features":[582]},{"name":"DBCONSTRAINTTYPE_UNIQUE","features":[582]},{"name":"DBCONVERTFLAGSENUM","features":[582]},{"name":"DBCONVERTFLAGSENUM20","features":[582]},{"name":"DBCONVERTFLAGS_COLUMN","features":[582]},{"name":"DBCONVERTFLAGS_FROMVARIANT","features":[582]},{"name":"DBCONVERTFLAGS_ISFIXEDLENGTH","features":[582]},{"name":"DBCONVERTFLAGS_ISLONG","features":[582]},{"name":"DBCONVERTFLAGS_PARAMETER","features":[582]},{"name":"DBCOPYFLAGSENUM","features":[582]},{"name":"DBCOPY_ALLOW_EMULATION","features":[582]},{"name":"DBCOPY_ASYNC","features":[582]},{"name":"DBCOPY_ATOMIC","features":[582]},{"name":"DBCOPY_NON_RECURSIVE","features":[582]},{"name":"DBCOPY_REPLACE_EXISTING","features":[582]},{"name":"DBCOST","features":[582]},{"name":"DBCOST","features":[582]},{"name":"DBCOSTUNITENUM","features":[582]},{"name":"DBDATACONVERTENUM","features":[582]},{"name":"DBDATACONVERT_DECIMALSCALE","features":[582]},{"name":"DBDATACONVERT_DEFAULT","features":[582]},{"name":"DBDATACONVERT_DSTISFIXEDLENGTH","features":[582]},{"name":"DBDATACONVERT_LENGTHFROMNTS","features":[582]},{"name":"DBDATACONVERT_SETDATABEHAVIOR","features":[582]},{"name":"DBDATE","features":[582]},{"name":"DBDATETIM4","features":[582]},{"name":"DBDATETIME","features":[582]},{"name":"DBDEFERRABILITYENUM","features":[582]},{"name":"DBDEFERRABILITY_DEFERRABLE","features":[582]},{"name":"DBDEFERRABILITY_DEFERRED","features":[582]},{"name":"DBDELETEFLAGSENUM","features":[582]},{"name":"DBDELETE_ASYNC","features":[582]},{"name":"DBDELETE_ATOMIC","features":[582]},{"name":"DBEVENTPHASEENUM","features":[582]},{"name":"DBEVENTPHASE_ABOUTTODO","features":[582]},{"name":"DBEVENTPHASE_DIDEVENT","features":[582]},{"name":"DBEVENTPHASE_FAILEDTODO","features":[582]},{"name":"DBEVENTPHASE_OKTODO","features":[582]},{"name":"DBEVENTPHASE_SYNCHAFTER","features":[582]},{"name":"DBEXECLIMITSENUM","features":[582]},{"name":"DBEXECLIMITS_ABORT","features":[582]},{"name":"DBEXECLIMITS_STOP","features":[582]},{"name":"DBEXECLIMITS_SUSPEND","features":[582]},{"name":"DBFAILUREINFO","features":[582]},{"name":"DBFAILUREINFO","features":[582]},{"name":"DBGUID_MSSQLXML","features":[582]},{"name":"DBGUID_ROWDEFAULTSTREAM","features":[582]},{"name":"DBGUID_ROWURL","features":[582]},{"name":"DBGUID_XPATH","features":[582]},{"name":"DBIMPLICITSESSION","features":[582]},{"name":"DBIMPLICITSESSION","features":[582]},{"name":"DBINDEXCOLUMNDESC","features":[510,582]},{"name":"DBINDEXCOLUMNDESC","features":[510,582]},{"name":"DBINDEX_COL_ORDERENUM","features":[582]},{"name":"DBINDEX_COL_ORDER_ASC","features":[582]},{"name":"DBINDEX_COL_ORDER_DESC","features":[582]},{"name":"DBLITERALENUM","features":[582]},{"name":"DBLITERALENUM20","features":[582]},{"name":"DBLITERALENUM21","features":[582]},{"name":"DBLITERALINFO","features":[305,582]},{"name":"DBLITERALINFO","features":[305,582]},{"name":"DBLITERAL_BINARY_LITERAL","features":[582]},{"name":"DBLITERAL_CATALOG_NAME","features":[582]},{"name":"DBLITERAL_CATALOG_SEPARATOR","features":[582]},{"name":"DBLITERAL_CHAR_LITERAL","features":[582]},{"name":"DBLITERAL_COLUMN_ALIAS","features":[582]},{"name":"DBLITERAL_COLUMN_NAME","features":[582]},{"name":"DBLITERAL_CORRELATION_NAME","features":[582]},{"name":"DBLITERAL_CUBE_NAME","features":[582]},{"name":"DBLITERAL_CURSOR_NAME","features":[582]},{"name":"DBLITERAL_DIMENSION_NAME","features":[582]},{"name":"DBLITERAL_ESCAPE_PERCENT","features":[582]},{"name":"DBLITERAL_ESCAPE_PERCENT_SUFFIX","features":[582]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE","features":[582]},{"name":"DBLITERAL_ESCAPE_UNDERSCORE_SUFFIX","features":[582]},{"name":"DBLITERAL_HIERARCHY_NAME","features":[582]},{"name":"DBLITERAL_INDEX_NAME","features":[582]},{"name":"DBLITERAL_INVALID","features":[582]},{"name":"DBLITERAL_LEVEL_NAME","features":[582]},{"name":"DBLITERAL_LIKE_PERCENT","features":[582]},{"name":"DBLITERAL_LIKE_UNDERSCORE","features":[582]},{"name":"DBLITERAL_MEMBER_NAME","features":[582]},{"name":"DBLITERAL_PROCEDURE_NAME","features":[582]},{"name":"DBLITERAL_PROPERTY_NAME","features":[582]},{"name":"DBLITERAL_QUOTE","features":[582]},{"name":"DBLITERAL_QUOTE_SUFFIX","features":[582]},{"name":"DBLITERAL_SCHEMA_NAME","features":[582]},{"name":"DBLITERAL_SCHEMA_SEPARATOR","features":[582]},{"name":"DBLITERAL_TABLE_NAME","features":[582]},{"name":"DBLITERAL_TEXT_COMMAND","features":[582]},{"name":"DBLITERAL_USER_NAME","features":[582]},{"name":"DBLITERAL_VIEW_NAME","features":[582]},{"name":"DBMATCHTYPEENUM","features":[582]},{"name":"DBMATCHTYPE_FULL","features":[582]},{"name":"DBMATCHTYPE_NONE","features":[582]},{"name":"DBMATCHTYPE_PARTIAL","features":[582]},{"name":"DBMAXCHAR","features":[582]},{"name":"DBMEMOWNERENUM","features":[582]},{"name":"DBMEMOWNER_CLIENTOWNED","features":[582]},{"name":"DBMEMOWNER_PROVIDEROWNED","features":[582]},{"name":"DBMONEY","features":[582]},{"name":"DBMOVEFLAGSENUM","features":[582]},{"name":"DBMOVE_ALLOW_EMULATION","features":[582]},{"name":"DBMOVE_ASYNC","features":[582]},{"name":"DBMOVE_ATOMIC","features":[582]},{"name":"DBMOVE_DONT_UPDATE_LINKS","features":[582]},{"name":"DBMOVE_REPLACE_EXISTING","features":[582]},{"name":"DBOBJECT","features":[582]},{"name":"DBOBJECT","features":[582]},{"name":"DBPARAMBINDINFO","features":[582]},{"name":"DBPARAMBINDINFO","features":[582]},{"name":"DBPARAMFLAGSENUM","features":[582]},{"name":"DBPARAMFLAGSENUM20","features":[582]},{"name":"DBPARAMFLAGS_ISINPUT","features":[582]},{"name":"DBPARAMFLAGS_ISLONG","features":[582]},{"name":"DBPARAMFLAGS_ISNULLABLE","features":[582]},{"name":"DBPARAMFLAGS_ISOUTPUT","features":[582]},{"name":"DBPARAMFLAGS_ISSIGNED","features":[582]},{"name":"DBPARAMFLAGS_SCALEISNEGATIVE","features":[582]},{"name":"DBPARAMINFO","features":[356,582]},{"name":"DBPARAMINFO","features":[356,582]},{"name":"DBPARAMIOENUM","features":[582]},{"name":"DBPARAMIO_INPUT","features":[582]},{"name":"DBPARAMIO_NOTPARAM","features":[582]},{"name":"DBPARAMIO_OUTPUT","features":[582]},{"name":"DBPARAMS","features":[582]},{"name":"DBPARAMS","features":[582]},{"name":"DBPARAMTYPE_INPUT","features":[582]},{"name":"DBPARAMTYPE_INPUTOUTPUT","features":[582]},{"name":"DBPARAMTYPE_OUTPUT","features":[582]},{"name":"DBPARAMTYPE_RETURNVALUE","features":[582]},{"name":"DBPARTENUM","features":[582]},{"name":"DBPART_INVALID","features":[582]},{"name":"DBPART_LENGTH","features":[582]},{"name":"DBPART_STATUS","features":[582]},{"name":"DBPART_VALUE","features":[582]},{"name":"DBPENDINGSTATUSENUM","features":[582]},{"name":"DBPENDINGSTATUS_CHANGED","features":[582]},{"name":"DBPENDINGSTATUS_DELETED","features":[582]},{"name":"DBPENDINGSTATUS_INVALIDROW","features":[582]},{"name":"DBPENDINGSTATUS_NEW","features":[582]},{"name":"DBPENDINGSTATUS_UNCHANGED","features":[582]},{"name":"DBPOSITIONFLAGSENUM","features":[582]},{"name":"DBPOSITION_BOF","features":[582]},{"name":"DBPOSITION_EOF","features":[582]},{"name":"DBPOSITION_NOROW","features":[582]},{"name":"DBPOSITION_OK","features":[582]},{"name":"DBPROMPTOPTIONSENUM","features":[582]},{"name":"DBPROMPTOPTIONS_BROWSEONLY","features":[582]},{"name":"DBPROMPTOPTIONS_DISABLESAVEPASSWORD","features":[582]},{"name":"DBPROMPTOPTIONS_DISABLE_PROVIDER_SELECTION","features":[582]},{"name":"DBPROMPTOPTIONS_NONE","features":[582]},{"name":"DBPROMPTOPTIONS_PROPERTYSHEET","features":[582]},{"name":"DBPROMPTOPTIONS_WIZARDSHEET","features":[582]},{"name":"DBPROMPT_COMPLETE","features":[582]},{"name":"DBPROMPT_COMPLETEREQUIRED","features":[582]},{"name":"DBPROMPT_NOPROMPT","features":[582]},{"name":"DBPROMPT_PROMPT","features":[582]},{"name":"DBPROP","features":[510,582]},{"name":"DBPROP","features":[510,582]},{"name":"DBPROPENUM","features":[582]},{"name":"DBPROPENUM15","features":[582]},{"name":"DBPROPENUM20","features":[582]},{"name":"DBPROPENUM21","features":[582]},{"name":"DBPROPENUM25","features":[582]},{"name":"DBPROPENUM25_DEPRECATED","features":[582]},{"name":"DBPROPENUM26","features":[582]},{"name":"DBPROPENUMDEPRECATED","features":[582]},{"name":"DBPROPFLAGSENUM","features":[582]},{"name":"DBPROPFLAGSENUM21","features":[582]},{"name":"DBPROPFLAGSENUM25","features":[582]},{"name":"DBPROPFLAGSENUM26","features":[582]},{"name":"DBPROPFLAGS_COLUMN","features":[582]},{"name":"DBPROPFLAGS_COLUMNOK","features":[582]},{"name":"DBPROPFLAGS_DATASOURCE","features":[582]},{"name":"DBPROPFLAGS_DATASOURCECREATE","features":[582]},{"name":"DBPROPFLAGS_DATASOURCEINFO","features":[582]},{"name":"DBPROPFLAGS_DBINIT","features":[582]},{"name":"DBPROPFLAGS_INDEX","features":[582]},{"name":"DBPROPFLAGS_NOTSUPPORTED","features":[582]},{"name":"DBPROPFLAGS_PERSIST","features":[582]},{"name":"DBPROPFLAGS_READ","features":[582]},{"name":"DBPROPFLAGS_REQUIRED","features":[582]},{"name":"DBPROPFLAGS_ROWSET","features":[582]},{"name":"DBPROPFLAGS_SESSION","features":[582]},{"name":"DBPROPFLAGS_STREAM","features":[582]},{"name":"DBPROPFLAGS_TABLE","features":[582]},{"name":"DBPROPFLAGS_TRUSTEE","features":[582]},{"name":"DBPROPFLAGS_VIEW","features":[582]},{"name":"DBPROPFLAGS_WRITE","features":[582]},{"name":"DBPROPIDSET","features":[582]},{"name":"DBPROPIDSET","features":[582]},{"name":"DBPROPINFO","features":[582,380]},{"name":"DBPROPINFO","features":[582,380]},{"name":"DBPROPINFOSET","features":[582,380]},{"name":"DBPROPINFOSET","features":[582,380]},{"name":"DBPROPOPTIONSENUM","features":[582]},{"name":"DBPROPOPTIONS_OPTIONAL","features":[582]},{"name":"DBPROPOPTIONS_REQUIRED","features":[582]},{"name":"DBPROPOPTIONS_SETIFCHEAP","features":[582]},{"name":"DBPROPSET","features":[510,582]},{"name":"DBPROPSET","features":[510,582]},{"name":"DBPROPSET_MSDAORA8_ROWSET","features":[582]},{"name":"DBPROPSET_MSDAORA_ROWSET","features":[582]},{"name":"DBPROPSET_MSDSDBINIT","features":[582]},{"name":"DBPROPSET_MSDSSESSION","features":[582]},{"name":"DBPROPSET_PERSIST","features":[582]},{"name":"DBPROPSET_PROVIDERCONNATTR","features":[582]},{"name":"DBPROPSET_PROVIDERDATASOURCEINFO","features":[582]},{"name":"DBPROPSET_PROVIDERDBINIT","features":[582]},{"name":"DBPROPSET_PROVIDERROWSET","features":[582]},{"name":"DBPROPSET_PROVIDERSTMTATTR","features":[582]},{"name":"DBPROPSET_SQLSERVERCOLUMN","features":[582]},{"name":"DBPROPSET_SQLSERVERDATASOURCE","features":[582]},{"name":"DBPROPSET_SQLSERVERDATASOURCEINFO","features":[582]},{"name":"DBPROPSET_SQLSERVERDBINIT","features":[582]},{"name":"DBPROPSET_SQLSERVERROWSET","features":[582]},{"name":"DBPROPSET_SQLSERVERSESSION","features":[582]},{"name":"DBPROPSET_SQLSERVERSTREAM","features":[582]},{"name":"DBPROPSTATUSENUM","features":[582]},{"name":"DBPROPSTATUSENUM21","features":[582]},{"name":"DBPROPSTATUS_BADCOLUMN","features":[582]},{"name":"DBPROPSTATUS_BADOPTION","features":[582]},{"name":"DBPROPSTATUS_BADVALUE","features":[582]},{"name":"DBPROPSTATUS_CONFLICTING","features":[582]},{"name":"DBPROPSTATUS_NOTALLSETTABLE","features":[582]},{"name":"DBPROPSTATUS_NOTAVAILABLE","features":[582]},{"name":"DBPROPSTATUS_NOTSET","features":[582]},{"name":"DBPROPSTATUS_NOTSETTABLE","features":[582]},{"name":"DBPROPSTATUS_NOTSUPPORTED","features":[582]},{"name":"DBPROPSTATUS_OK","features":[582]},{"name":"DBPROPVAL_AO_RANDOM","features":[582]},{"name":"DBPROPVAL_AO_SEQUENTIAL","features":[582]},{"name":"DBPROPVAL_AO_SEQUENTIALSTORAGEOBJECTS","features":[582]},{"name":"DBPROPVAL_ASYNCH_BACKGROUNDPOPULATION","features":[582]},{"name":"DBPROPVAL_ASYNCH_INITIALIZE","features":[582]},{"name":"DBPROPVAL_ASYNCH_POPULATEONDEMAND","features":[582]},{"name":"DBPROPVAL_ASYNCH_PREPOPULATE","features":[582]},{"name":"DBPROPVAL_ASYNCH_RANDOMPOPULATION","features":[582]},{"name":"DBPROPVAL_ASYNCH_SEQUENTIALPOPULATION","features":[582]},{"name":"DBPROPVAL_BD_INTRANSACTION","features":[582]},{"name":"DBPROPVAL_BD_REORGANIZATION","features":[582]},{"name":"DBPROPVAL_BD_ROWSET","features":[582]},{"name":"DBPROPVAL_BD_XTRANSACTION","features":[582]},{"name":"DBPROPVAL_BI_CROSSROWSET","features":[582]},{"name":"DBPROPVAL_BMK_KEY","features":[582]},{"name":"DBPROPVAL_BMK_NUMERIC","features":[582]},{"name":"DBPROPVAL_BO_NOINDEXUPDATE","features":[582]},{"name":"DBPROPVAL_BO_NOLOG","features":[582]},{"name":"DBPROPVAL_BO_REFINTEGRITY","features":[582]},{"name":"DBPROPVAL_CB_DELETE","features":[582]},{"name":"DBPROPVAL_CB_NON_NULL","features":[582]},{"name":"DBPROPVAL_CB_NULL","features":[582]},{"name":"DBPROPVAL_CB_PRESERVE","features":[582]},{"name":"DBPROPVAL_CD_NOTNULL","features":[582]},{"name":"DBPROPVAL_CL_END","features":[582]},{"name":"DBPROPVAL_CL_START","features":[582]},{"name":"DBPROPVAL_CM_TRANSACTIONS","features":[582]},{"name":"DBPROPVAL_CO_BEGINSWITH","features":[582]},{"name":"DBPROPVAL_CO_CASEINSENSITIVE","features":[582]},{"name":"DBPROPVAL_CO_CASESENSITIVE","features":[582]},{"name":"DBPROPVAL_CO_CONTAINS","features":[582]},{"name":"DBPROPVAL_CO_EQUALITY","features":[582]},{"name":"DBPROPVAL_CO_STRING","features":[582]},{"name":"DBPROPVAL_CS_COMMUNICATIONFAILURE","features":[582]},{"name":"DBPROPVAL_CS_INITIALIZED","features":[582]},{"name":"DBPROPVAL_CS_UNINITIALIZED","features":[582]},{"name":"DBPROPVAL_CU_DML_STATEMENTS","features":[582]},{"name":"DBPROPVAL_CU_INDEX_DEFINITION","features":[582]},{"name":"DBPROPVAL_CU_PRIVILEGE_DEFINITION","features":[582]},{"name":"DBPROPVAL_CU_TABLE_DEFINITION","features":[582]},{"name":"DBPROPVAL_DF_INITIALLY_DEFERRED","features":[582]},{"name":"DBPROPVAL_DF_INITIALLY_IMMEDIATE","features":[582]},{"name":"DBPROPVAL_DF_NOT_DEFERRABLE","features":[582]},{"name":"DBPROPVAL_DST_DOCSOURCE","features":[582]},{"name":"DBPROPVAL_DST_MDP","features":[582]},{"name":"DBPROPVAL_DST_TDP","features":[582]},{"name":"DBPROPVAL_DST_TDPANDMDP","features":[582]},{"name":"DBPROPVAL_FU_CATALOG","features":[582]},{"name":"DBPROPVAL_FU_COLUMN","features":[582]},{"name":"DBPROPVAL_FU_NOT_SUPPORTED","features":[582]},{"name":"DBPROPVAL_FU_TABLE","features":[582]},{"name":"DBPROPVAL_GB_COLLATE","features":[582]},{"name":"DBPROPVAL_GB_CONTAINS_SELECT","features":[582]},{"name":"DBPROPVAL_GB_EQUALS_SELECT","features":[582]},{"name":"DBPROPVAL_GB_NOT_SUPPORTED","features":[582]},{"name":"DBPROPVAL_GB_NO_RELATION","features":[582]},{"name":"DBPROPVAL_GU_NOTSUPPORTED","features":[582]},{"name":"DBPROPVAL_GU_SUFFIX","features":[582]},{"name":"DBPROPVAL_HT_DIFFERENT_CATALOGS","features":[582]},{"name":"DBPROPVAL_HT_DIFFERENT_PROVIDERS","features":[582]},{"name":"DBPROPVAL_IC_LOWER","features":[582]},{"name":"DBPROPVAL_IC_MIXED","features":[582]},{"name":"DBPROPVAL_IC_SENSITIVE","features":[582]},{"name":"DBPROPVAL_IC_UPPER","features":[582]},{"name":"DBPROPVAL_IN_ALLOWNULL","features":[582]},{"name":"DBPROPVAL_IN_DISALLOWNULL","features":[582]},{"name":"DBPROPVAL_IN_IGNOREANYNULL","features":[582]},{"name":"DBPROPVAL_IN_IGNORENULL","features":[582]},{"name":"DBPROPVAL_IT_BTREE","features":[582]},{"name":"DBPROPVAL_IT_CONTENT","features":[582]},{"name":"DBPROPVAL_IT_HASH","features":[582]},{"name":"DBPROPVAL_IT_OTHER","features":[582]},{"name":"DBPROPVAL_LM_INTENT","features":[582]},{"name":"DBPROPVAL_LM_NONE","features":[582]},{"name":"DBPROPVAL_LM_READ","features":[582]},{"name":"DBPROPVAL_LM_RITE","features":[582]},{"name":"DBPROPVAL_LM_SINGLEROW","features":[582]},{"name":"DBPROPVAL_MR_CONCURRENT","features":[582]},{"name":"DBPROPVAL_MR_NOTSUPPORTED","features":[582]},{"name":"DBPROPVAL_MR_SUPPORTED","features":[582]},{"name":"DBPROPVAL_NC_END","features":[582]},{"name":"DBPROPVAL_NC_HIGH","features":[582]},{"name":"DBPROPVAL_NC_LOW","features":[582]},{"name":"DBPROPVAL_NC_START","features":[582]},{"name":"DBPROPVAL_NP_ABOUTTODO","features":[582]},{"name":"DBPROPVAL_NP_DIDEVENT","features":[582]},{"name":"DBPROPVAL_NP_FAILEDTODO","features":[582]},{"name":"DBPROPVAL_NP_OKTODO","features":[582]},{"name":"DBPROPVAL_NP_SYNCHAFTER","features":[582]},{"name":"DBPROPVAL_NT_MULTIPLEROWS","features":[582]},{"name":"DBPROPVAL_NT_SINGLEROW","features":[582]},{"name":"DBPROPVAL_OA_ATEXECUTE","features":[582]},{"name":"DBPROPVAL_OA_ATROWRELEASE","features":[582]},{"name":"DBPROPVAL_OA_NOTSUPPORTED","features":[582]},{"name":"DBPROPVAL_OO_BLOB","features":[582]},{"name":"DBPROPVAL_OO_DIRECTBIND","features":[582]},{"name":"DBPROPVAL_OO_IPERSIST","features":[582]},{"name":"DBPROPVAL_OO_ROWOBJECT","features":[582]},{"name":"DBPROPVAL_OO_SCOPED","features":[582]},{"name":"DBPROPVAL_OO_SINGLETON","features":[582]},{"name":"DBPROPVAL_OP_EQUAL","features":[582]},{"name":"DBPROPVAL_OP_RELATIVE","features":[582]},{"name":"DBPROPVAL_OP_STRING","features":[582]},{"name":"DBPROPVAL_ORS_HISTOGRAM","features":[582]},{"name":"DBPROPVAL_ORS_INDEX","features":[582]},{"name":"DBPROPVAL_ORS_INTEGRATEDINDEX","features":[582]},{"name":"DBPROPVAL_ORS_STOREDPROC","features":[582]},{"name":"DBPROPVAL_ORS_TABLE","features":[582]},{"name":"DBPROPVAL_OS_AGR_AFTERSESSION","features":[582]},{"name":"DBPROPVAL_OS_CLIENTCURSOR","features":[582]},{"name":"DBPROPVAL_OS_DISABLEALL","features":[582]},{"name":"DBPROPVAL_OS_ENABLEALL","features":[582]},{"name":"DBPROPVAL_OS_RESOURCEPOOLING","features":[582]},{"name":"DBPROPVAL_OS_TXNENLISTMENT","features":[582]},{"name":"DBPROPVAL_PERSIST_ADTG","features":[582]},{"name":"DBPROPVAL_PERSIST_XML","features":[582]},{"name":"DBPROPVAL_PT_GUID","features":[582]},{"name":"DBPROPVAL_PT_GUID_NAME","features":[582]},{"name":"DBPROPVAL_PT_GUID_PROPID","features":[582]},{"name":"DBPROPVAL_PT_NAME","features":[582]},{"name":"DBPROPVAL_PT_PGUID_NAME","features":[582]},{"name":"DBPROPVAL_PT_PGUID_PROPID","features":[582]},{"name":"DBPROPVAL_PT_PROPID","features":[582]},{"name":"DBPROPVAL_RD_RESETALL","features":[582]},{"name":"DBPROPVAL_RT_APTMTTHREAD","features":[582]},{"name":"DBPROPVAL_RT_FREETHREAD","features":[582]},{"name":"DBPROPVAL_RT_SINGLETHREAD","features":[582]},{"name":"DBPROPVAL_SQL_ANSI89_IEF","features":[582]},{"name":"DBPROPVAL_SQL_ANSI92_ENTRY","features":[582]},{"name":"DBPROPVAL_SQL_ANSI92_FULL","features":[582]},{"name":"DBPROPVAL_SQL_ANSI92_INTERMEDIATE","features":[582]},{"name":"DBPROPVAL_SQL_ESCAPECLAUSES","features":[582]},{"name":"DBPROPVAL_SQL_FIPS_TRANSITIONAL","features":[582]},{"name":"DBPROPVAL_SQL_NONE","features":[582]},{"name":"DBPROPVAL_SQL_ODBC_CORE","features":[582]},{"name":"DBPROPVAL_SQL_ODBC_EXTENDED","features":[582]},{"name":"DBPROPVAL_SQL_ODBC_MINIMUM","features":[582]},{"name":"DBPROPVAL_SQL_SUBMINIMUM","features":[582]},{"name":"DBPROPVAL_SQ_COMPARISON","features":[582]},{"name":"DBPROPVAL_SQ_CORRELATEDSUBQUERIES","features":[582]},{"name":"DBPROPVAL_SQ_EXISTS","features":[582]},{"name":"DBPROPVAL_SQ_IN","features":[582]},{"name":"DBPROPVAL_SQ_QUANTIFIED","features":[582]},{"name":"DBPROPVAL_SQ_TABLE","features":[582]},{"name":"DBPROPVAL_SS_ILOCKBYTES","features":[582]},{"name":"DBPROPVAL_SS_ISEQUENTIALSTREAM","features":[582]},{"name":"DBPROPVAL_SS_ISTORAGE","features":[582]},{"name":"DBPROPVAL_SS_ISTREAM","features":[582]},{"name":"DBPROPVAL_STGM_CONVERT","features":[582]},{"name":"DBPROPVAL_STGM_DELETEONRELEASE","features":[582]},{"name":"DBPROPVAL_STGM_DIRECT","features":[582]},{"name":"DBPROPVAL_STGM_FAILIFTHERE","features":[582]},{"name":"DBPROPVAL_STGM_PRIORITY","features":[582]},{"name":"DBPROPVAL_STGM_TRANSACTED","features":[582]},{"name":"DBPROPVAL_SU_DML_STATEMENTS","features":[582]},{"name":"DBPROPVAL_SU_INDEX_DEFINITION","features":[582]},{"name":"DBPROPVAL_SU_PRIVILEGE_DEFINITION","features":[582]},{"name":"DBPROPVAL_SU_TABLE_DEFINITION","features":[582]},{"name":"DBPROPVAL_TC_ALL","features":[582]},{"name":"DBPROPVAL_TC_DDL_COMMIT","features":[582]},{"name":"DBPROPVAL_TC_DDL_IGNORE","features":[582]},{"name":"DBPROPVAL_TC_DDL_LOCK","features":[582]},{"name":"DBPROPVAL_TC_DML","features":[582]},{"name":"DBPROPVAL_TC_NONE","features":[582]},{"name":"DBPROPVAL_TI_BROWSE","features":[582]},{"name":"DBPROPVAL_TI_CHAOS","features":[582]},{"name":"DBPROPVAL_TI_CURSORSTABILITY","features":[582]},{"name":"DBPROPVAL_TI_ISOLATED","features":[582]},{"name":"DBPROPVAL_TI_READCOMMITTED","features":[582]},{"name":"DBPROPVAL_TI_READUNCOMMITTED","features":[582]},{"name":"DBPROPVAL_TI_REPEATABLEREAD","features":[582]},{"name":"DBPROPVAL_TI_SERIALIZABLE","features":[582]},{"name":"DBPROPVAL_TR_ABORT","features":[582]},{"name":"DBPROPVAL_TR_ABORT_DC","features":[582]},{"name":"DBPROPVAL_TR_ABORT_NO","features":[582]},{"name":"DBPROPVAL_TR_BOTH","features":[582]},{"name":"DBPROPVAL_TR_COMMIT","features":[582]},{"name":"DBPROPVAL_TR_COMMIT_DC","features":[582]},{"name":"DBPROPVAL_TR_COMMIT_NO","features":[582]},{"name":"DBPROPVAL_TR_DONTCARE","features":[582]},{"name":"DBPROPVAL_TR_NONE","features":[582]},{"name":"DBPROPVAL_TR_OPTIMISTIC","features":[582]},{"name":"DBPROPVAL_TS_CARDINALITY","features":[582]},{"name":"DBPROPVAL_TS_HISTOGRAM","features":[582]},{"name":"DBPROPVAL_UP_CHANGE","features":[582]},{"name":"DBPROPVAL_UP_DELETE","features":[582]},{"name":"DBPROPVAL_UP_INSERT","features":[582]},{"name":"DBPROP_ABORTPRESERVE","features":[582]},{"name":"DBPROP_ACCESSORDER","features":[582]},{"name":"DBPROP_ACTIVESESSIONS","features":[582]},{"name":"DBPROP_ALTERCOLUMN","features":[582]},{"name":"DBPROP_APPENDONLY","features":[582]},{"name":"DBPROP_ASYNCTXNABORT","features":[582]},{"name":"DBPROP_ASYNCTXNCOMMIT","features":[582]},{"name":"DBPROP_AUTH_CACHE_AUTHINFO","features":[582]},{"name":"DBPROP_AUTH_ENCRYPT_PASSWORD","features":[582]},{"name":"DBPROP_AUTH_INTEGRATED","features":[582]},{"name":"DBPROP_AUTH_MASK_PASSWORD","features":[582]},{"name":"DBPROP_AUTH_PASSWORD","features":[582]},{"name":"DBPROP_AUTH_PERSIST_ENCRYPTED","features":[582]},{"name":"DBPROP_AUTH_PERSIST_SENSITIVE_AUTHINFO","features":[582]},{"name":"DBPROP_AUTH_USERID","features":[582]},{"name":"DBPROP_BLOCKINGSTORAGEOBJECTS","features":[582]},{"name":"DBPROP_BOOKMARKINFO","features":[582]},{"name":"DBPROP_BOOKMARKS","features":[582]},{"name":"DBPROP_BOOKMARKSKIPPED","features":[582]},{"name":"DBPROP_BOOKMARKTYPE","features":[582]},{"name":"DBPROP_BYREFACCESSORS","features":[582]},{"name":"DBPROP_CACHEDEFERRED","features":[582]},{"name":"DBPROP_CANFETCHBACKWARDS","features":[582]},{"name":"DBPROP_CANHOLDROWS","features":[582]},{"name":"DBPROP_CANSCROLLBACKWARDS","features":[582]},{"name":"DBPROP_CATALOGLOCATION","features":[582]},{"name":"DBPROP_CATALOGTERM","features":[582]},{"name":"DBPROP_CATALOGUSAGE","features":[582]},{"name":"DBPROP_CHANGEINSERTEDROWS","features":[582]},{"name":"DBPROP_CLIENTCURSOR","features":[582]},{"name":"DBPROP_COLUMNDEFINITION","features":[582]},{"name":"DBPROP_COLUMNLCID","features":[582]},{"name":"DBPROP_COLUMNRESTRICT","features":[582]},{"name":"DBPROP_COL_AUTOINCREMENT","features":[582]},{"name":"DBPROP_COL_DEFAULT","features":[582]},{"name":"DBPROP_COL_DESCRIPTION","features":[582]},{"name":"DBPROP_COL_FIXEDLENGTH","features":[582]},{"name":"DBPROP_COL_INCREMENT","features":[582]},{"name":"DBPROP_COL_ISLONG","features":[582]},{"name":"DBPROP_COL_NULLABLE","features":[582]},{"name":"DBPROP_COL_PRIMARYKEY","features":[582]},{"name":"DBPROP_COL_SEED","features":[582]},{"name":"DBPROP_COL_UNIQUE","features":[582]},{"name":"DBPROP_COMMANDTIMEOUT","features":[582]},{"name":"DBPROP_COMMITPRESERVE","features":[582]},{"name":"DBPROP_COMSERVICES","features":[582]},{"name":"DBPROP_CONCATNULLBEHAVIOR","features":[582]},{"name":"DBPROP_CONNECTIONSTATUS","features":[582]},{"name":"DBPROP_CURRENTCATALOG","features":[582]},{"name":"DBPROP_DATASOURCENAME","features":[582]},{"name":"DBPROP_DATASOURCEREADONLY","features":[582]},{"name":"DBPROP_DATASOURCE_TYPE","features":[582]},{"name":"DBPROP_DBMSNAME","features":[582]},{"name":"DBPROP_DBMSVER","features":[582]},{"name":"DBPROP_DEFERRED","features":[582]},{"name":"DBPROP_DELAYSTORAGEOBJECTS","features":[582]},{"name":"DBPROP_DSOTHREADMODEL","features":[582]},{"name":"DBPROP_FILTERCOMPAREOPS","features":[582]},{"name":"DBPROP_FILTEROPS","features":[582]},{"name":"DBPROP_FINDCOMPAREOPS","features":[582]},{"name":"DBPROP_GENERATEURL","features":[582]},{"name":"DBPROP_GROUPBY","features":[582]},{"name":"DBPROP_HCHAPTER","features":[582]},{"name":"DBPROP_HETEROGENEOUSTABLES","features":[582]},{"name":"DBPROP_HIDDENCOLUMNS","features":[582]},{"name":"DBPROP_IAccessor","features":[582]},{"name":"DBPROP_IBindResource","features":[582]},{"name":"DBPROP_IChapteredRowset","features":[582]},{"name":"DBPROP_IColumnsInfo","features":[582]},{"name":"DBPROP_IColumnsInfo2","features":[582]},{"name":"DBPROP_IColumnsRowset","features":[582]},{"name":"DBPROP_ICommandCost","features":[582]},{"name":"DBPROP_ICommandTree","features":[582]},{"name":"DBPROP_ICommandValidate","features":[582]},{"name":"DBPROP_IConnectionPointContainer","features":[582]},{"name":"DBPROP_IConvertType","features":[582]},{"name":"DBPROP_ICreateRow","features":[582]},{"name":"DBPROP_IDBAsynchStatus","features":[582]},{"name":"DBPROP_IDBBinderProperties","features":[582]},{"name":"DBPROP_IDBSchemaCommand","features":[582]},{"name":"DBPROP_IDENTIFIERCASE","features":[582]},{"name":"DBPROP_IGetRow","features":[582]},{"name":"DBPROP_IGetSession","features":[582]},{"name":"DBPROP_IGetSourceRow","features":[582]},{"name":"DBPROP_ILockBytes","features":[582]},{"name":"DBPROP_IMMOBILEROWS","features":[582]},{"name":"DBPROP_IMultipleResults","features":[582]},{"name":"DBPROP_INDEX_AUTOUPDATE","features":[582]},{"name":"DBPROP_INDEX_CLUSTERED","features":[582]},{"name":"DBPROP_INDEX_FILLFACTOR","features":[582]},{"name":"DBPROP_INDEX_INITIALSIZE","features":[582]},{"name":"DBPROP_INDEX_NULLCOLLATION","features":[582]},{"name":"DBPROP_INDEX_NULLS","features":[582]},{"name":"DBPROP_INDEX_PRIMARYKEY","features":[582]},{"name":"DBPROP_INDEX_SORTBOOKMARKS","features":[582]},{"name":"DBPROP_INDEX_TEMPINDEX","features":[582]},{"name":"DBPROP_INDEX_TYPE","features":[582]},{"name":"DBPROP_INDEX_UNIQUE","features":[582]},{"name":"DBPROP_INIT_ASYNCH","features":[582]},{"name":"DBPROP_INIT_BINDFLAGS","features":[582]},{"name":"DBPROP_INIT_CATALOG","features":[582]},{"name":"DBPROP_INIT_DATASOURCE","features":[582]},{"name":"DBPROP_INIT_GENERALTIMEOUT","features":[582]},{"name":"DBPROP_INIT_HWND","features":[582]},{"name":"DBPROP_INIT_IMPERSONATION_LEVEL","features":[582]},{"name":"DBPROP_INIT_LCID","features":[582]},{"name":"DBPROP_INIT_LOCATION","features":[582]},{"name":"DBPROP_INIT_LOCKOWNER","features":[582]},{"name":"DBPROP_INIT_MODE","features":[582]},{"name":"DBPROP_INIT_OLEDBSERVICES","features":[582]},{"name":"DBPROP_INIT_PROMPT","features":[582]},{"name":"DBPROP_INIT_PROTECTION_LEVEL","features":[582]},{"name":"DBPROP_INIT_PROVIDERSTRING","features":[582]},{"name":"DBPROP_INIT_TIMEOUT","features":[582]},{"name":"DBPROP_INTERLEAVEDROWS","features":[582]},{"name":"DBPROP_IParentRowset","features":[582]},{"name":"DBPROP_IProvideMoniker","features":[582]},{"name":"DBPROP_IQuery","features":[582]},{"name":"DBPROP_IReadData","features":[582]},{"name":"DBPROP_IRegisterProvider","features":[582]},{"name":"DBPROP_IRow","features":[582]},{"name":"DBPROP_IRowChange","features":[582]},{"name":"DBPROP_IRowSchemaChange","features":[582]},{"name":"DBPROP_IRowset","features":[582]},{"name":"DBPROP_IRowsetAsynch","features":[582]},{"name":"DBPROP_IRowsetBookmark","features":[582]},{"name":"DBPROP_IRowsetChange","features":[582]},{"name":"DBPROP_IRowsetCopyRows","features":[582]},{"name":"DBPROP_IRowsetCurrentIndex","features":[582]},{"name":"DBPROP_IRowsetExactScroll","features":[582]},{"name":"DBPROP_IRowsetFind","features":[582]},{"name":"DBPROP_IRowsetIdentity","features":[582]},{"name":"DBPROP_IRowsetIndex","features":[582]},{"name":"DBPROP_IRowsetInfo","features":[582]},{"name":"DBPROP_IRowsetKeys","features":[582]},{"name":"DBPROP_IRowsetLocate","features":[582]},{"name":"DBPROP_IRowsetNewRowAfter","features":[582]},{"name":"DBPROP_IRowsetNextRowset","features":[582]},{"name":"DBPROP_IRowsetRefresh","features":[582]},{"name":"DBPROP_IRowsetResynch","features":[582]},{"name":"DBPROP_IRowsetScroll","features":[582]},{"name":"DBPROP_IRowsetUpdate","features":[582]},{"name":"DBPROP_IRowsetView","features":[582]},{"name":"DBPROP_IRowsetWatchAll","features":[582]},{"name":"DBPROP_IRowsetWatchNotify","features":[582]},{"name":"DBPROP_IRowsetWatchRegion","features":[582]},{"name":"DBPROP_IRowsetWithParameters","features":[582]},{"name":"DBPROP_IScopedOperations","features":[582]},{"name":"DBPROP_ISequentialStream","features":[582]},{"name":"DBPROP_IStorage","features":[582]},{"name":"DBPROP_IStream","features":[582]},{"name":"DBPROP_ISupportErrorInfo","features":[582]},{"name":"DBPROP_IViewChapter","features":[582]},{"name":"DBPROP_IViewFilter","features":[582]},{"name":"DBPROP_IViewRowset","features":[582]},{"name":"DBPROP_IViewSort","features":[582]},{"name":"DBPROP_LITERALBOOKMARKS","features":[582]},{"name":"DBPROP_LITERALIDENTITY","features":[582]},{"name":"DBPROP_LOCKMODE","features":[582]},{"name":"DBPROP_MAINTAINPROPS","features":[582]},{"name":"DBPROP_MARSHALLABLE","features":[582]},{"name":"DBPROP_MAXINDEXSIZE","features":[582]},{"name":"DBPROP_MAXOPENCHAPTERS","features":[582]},{"name":"DBPROP_MAXOPENROWS","features":[582]},{"name":"DBPROP_MAXORSINFILTER","features":[582]},{"name":"DBPROP_MAXPENDINGROWS","features":[582]},{"name":"DBPROP_MAXROWS","features":[582]},{"name":"DBPROP_MAXROWSIZE","features":[582]},{"name":"DBPROP_MAXROWSIZEINCLUDESBLOB","features":[582]},{"name":"DBPROP_MAXSORTCOLUMNS","features":[582]},{"name":"DBPROP_MAXTABLESINSELECT","features":[582]},{"name":"DBPROP_MAYWRITECOLUMN","features":[582]},{"name":"DBPROP_MEMORYUSAGE","features":[582]},{"name":"DBPROP_MSDAORA8_DETERMINEKEYCOLUMNS","features":[582]},{"name":"DBPROP_MSDAORA_DETERMINEKEYCOLUMNS","features":[582]},{"name":"DBPROP_MSDS_DBINIT_DATAPROVIDER","features":[582]},{"name":"DBPROP_MSDS_SESS_UNIQUENAMES","features":[582]},{"name":"DBPROP_MULTIPLECONNECTIONS","features":[582]},{"name":"DBPROP_MULTIPLEPARAMSETS","features":[582]},{"name":"DBPROP_MULTIPLERESULTS","features":[582]},{"name":"DBPROP_MULTIPLESTORAGEOBJECTS","features":[582]},{"name":"DBPROP_MULTITABLEUPDATE","features":[582]},{"name":"DBPROP_NOTIFICATIONGRANULARITY","features":[582]},{"name":"DBPROP_NOTIFICATIONPHASES","features":[582]},{"name":"DBPROP_NOTIFYCOLUMNSET","features":[582]},{"name":"DBPROP_NOTIFYROWDELETE","features":[582]},{"name":"DBPROP_NOTIFYROWFIRSTCHANGE","features":[582]},{"name":"DBPROP_NOTIFYROWINSERT","features":[582]},{"name":"DBPROP_NOTIFYROWRESYNCH","features":[582]},{"name":"DBPROP_NOTIFYROWSETCHANGED","features":[582]},{"name":"DBPROP_NOTIFYROWSETFETCHPOSITIONCHANGE","features":[582]},{"name":"DBPROP_NOTIFYROWSETRELEASE","features":[582]},{"name":"DBPROP_NOTIFYROWUNDOCHANGE","features":[582]},{"name":"DBPROP_NOTIFYROWUNDODELETE","features":[582]},{"name":"DBPROP_NOTIFYROWUNDOINSERT","features":[582]},{"name":"DBPROP_NOTIFYROWUPDATE","features":[582]},{"name":"DBPROP_NULLCOLLATION","features":[582]},{"name":"DBPROP_OLEOBJECTS","features":[582]},{"name":"DBPROP_OPENROWSETSUPPORT","features":[582]},{"name":"DBPROP_ORDERBYCOLUMNSINSELECT","features":[582]},{"name":"DBPROP_ORDEREDBOOKMARKS","features":[582]},{"name":"DBPROP_OTHERINSERT","features":[582]},{"name":"DBPROP_OTHERUPDATEDELETE","features":[582]},{"name":"DBPROP_OUTPUTENCODING","features":[582]},{"name":"DBPROP_OUTPUTPARAMETERAVAILABILITY","features":[582]},{"name":"DBPROP_OUTPUTSTREAM","features":[582]},{"name":"DBPROP_OWNINSERT","features":[582]},{"name":"DBPROP_OWNUPDATEDELETE","features":[582]},{"name":"DBPROP_PERSISTENTIDTYPE","features":[582]},{"name":"DBPROP_PREPAREABORTBEHAVIOR","features":[582]},{"name":"DBPROP_PREPARECOMMITBEHAVIOR","features":[582]},{"name":"DBPROP_PROCEDURETERM","features":[582]},{"name":"DBPROP_PROVIDERFRIENDLYNAME","features":[582]},{"name":"DBPROP_PROVIDERMEMORY","features":[582]},{"name":"DBPROP_PROVIDERNAME","features":[582]},{"name":"DBPROP_PROVIDEROLEDBVER","features":[582]},{"name":"DBPROP_PROVIDERVER","features":[582]},{"name":"DBPROP_PersistFormat","features":[582]},{"name":"DBPROP_PersistSchema","features":[582]},{"name":"DBPROP_QUICKRESTART","features":[582]},{"name":"DBPROP_QUOTEDIDENTIFIERCASE","features":[582]},{"name":"DBPROP_REENTRANTEVENTS","features":[582]},{"name":"DBPROP_REMOVEDELETED","features":[582]},{"name":"DBPROP_REPORTMULTIPLECHANGES","features":[582]},{"name":"DBPROP_RESETDATASOURCE","features":[582]},{"name":"DBPROP_RETURNPENDINGINSERTS","features":[582]},{"name":"DBPROP_ROWRESTRICT","features":[582]},{"name":"DBPROP_ROWSETCONVERSIONSONCOMMAND","features":[582]},{"name":"DBPROP_ROWSET_ASYNCH","features":[582]},{"name":"DBPROP_ROWTHREADMODEL","features":[582]},{"name":"DBPROP_ROW_BULKOPS","features":[582]},{"name":"DBPROP_SCHEMATERM","features":[582]},{"name":"DBPROP_SCHEMAUSAGE","features":[582]},{"name":"DBPROP_SERVERCURSOR","features":[582]},{"name":"DBPROP_SERVERDATAONINSERT","features":[582]},{"name":"DBPROP_SERVERNAME","features":[582]},{"name":"DBPROP_SESS_AUTOCOMMITISOLEVELS","features":[582]},{"name":"DBPROP_SKIPROWCOUNTRESULTS","features":[582]},{"name":"DBPROP_SORTONINDEX","features":[582]},{"name":"DBPROP_SQLSUPPORT","features":[582]},{"name":"DBPROP_STORAGEFLAGS","features":[582]},{"name":"DBPROP_STRONGIDENTITY","features":[582]},{"name":"DBPROP_STRUCTUREDSTORAGE","features":[582]},{"name":"DBPROP_SUBQUERIES","features":[582]},{"name":"DBPROP_SUPPORTEDTXNDDL","features":[582]},{"name":"DBPROP_SUPPORTEDTXNISOLEVELS","features":[582]},{"name":"DBPROP_SUPPORTEDTXNISORETAIN","features":[582]},{"name":"DBPROP_TABLESTATISTICS","features":[582]},{"name":"DBPROP_TABLETERM","features":[582]},{"name":"DBPROP_TBL_TEMPTABLE","features":[582]},{"name":"DBPROP_TRANSACTEDOBJECT","features":[582]},{"name":"DBPROP_TRUSTEE_AUTHENTICATION","features":[582]},{"name":"DBPROP_TRUSTEE_NEWAUTHENTICATION","features":[582]},{"name":"DBPROP_TRUSTEE_USERNAME","features":[582]},{"name":"DBPROP_UNIQUEROWS","features":[582]},{"name":"DBPROP_UPDATABILITY","features":[582]},{"name":"DBPROP_USERNAME","features":[582]},{"name":"DBPROP_Unicode","features":[582]},{"name":"DBQUERYGUID","features":[582]},{"name":"DBRANGEENUM","features":[582]},{"name":"DBRANGEENUM20","features":[582]},{"name":"DBRANGE_EXCLUDENULLS","features":[582]},{"name":"DBRANGE_EXCLUSIVEEND","features":[582]},{"name":"DBRANGE_EXCLUSIVESTART","features":[582]},{"name":"DBRANGE_INCLUSIVEEND","features":[582]},{"name":"DBRANGE_INCLUSIVESTART","features":[582]},{"name":"DBRANGE_MATCH","features":[582]},{"name":"DBRANGE_MATCH_N_MASK","features":[582]},{"name":"DBRANGE_MATCH_N_SHIFT","features":[582]},{"name":"DBRANGE_PREFIX","features":[582]},{"name":"DBREASONENUM","features":[582]},{"name":"DBREASONENUM15","features":[582]},{"name":"DBREASONENUM25","features":[582]},{"name":"DBREASON_COLUMN_RECALCULATED","features":[582]},{"name":"DBREASON_COLUMN_SET","features":[582]},{"name":"DBREASON_ROWPOSITION_CHANGED","features":[582]},{"name":"DBREASON_ROWPOSITION_CHAPTERCHANGED","features":[582]},{"name":"DBREASON_ROWPOSITION_CLEARED","features":[582]},{"name":"DBREASON_ROWSET_CHANGED","features":[582]},{"name":"DBREASON_ROWSET_FETCHPOSITIONCHANGE","features":[582]},{"name":"DBREASON_ROWSET_POPULATIONCOMPLETE","features":[582]},{"name":"DBREASON_ROWSET_POPULATIONSTOPPED","features":[582]},{"name":"DBREASON_ROWSET_RELEASE","features":[582]},{"name":"DBREASON_ROWSET_ROWSADDED","features":[582]},{"name":"DBREASON_ROW_ACTIVATE","features":[582]},{"name":"DBREASON_ROW_ASYNCHINSERT","features":[582]},{"name":"DBREASON_ROW_DELETE","features":[582]},{"name":"DBREASON_ROW_FIRSTCHANGE","features":[582]},{"name":"DBREASON_ROW_INSERT","features":[582]},{"name":"DBREASON_ROW_RELEASE","features":[582]},{"name":"DBREASON_ROW_RESYNCH","features":[582]},{"name":"DBREASON_ROW_UNDOCHANGE","features":[582]},{"name":"DBREASON_ROW_UNDODELETE","features":[582]},{"name":"DBREASON_ROW_UNDOINSERT","features":[582]},{"name":"DBREASON_ROW_UPDATE","features":[582]},{"name":"DBRESOURCEKINDENUM","features":[582]},{"name":"DBRESOURCE_CPU","features":[582]},{"name":"DBRESOURCE_DISK","features":[582]},{"name":"DBRESOURCE_INVALID","features":[582]},{"name":"DBRESOURCE_MEMORY","features":[582]},{"name":"DBRESOURCE_NETWORK","features":[582]},{"name":"DBRESOURCE_OTHER","features":[582]},{"name":"DBRESOURCE_RESPONSE","features":[582]},{"name":"DBRESOURCE_ROWS","features":[582]},{"name":"DBRESOURCE_TOTAL","features":[582]},{"name":"DBRESULTFLAGENUM","features":[582]},{"name":"DBRESULTFLAG_DEFAULT","features":[582]},{"name":"DBRESULTFLAG_ROW","features":[582]},{"name":"DBRESULTFLAG_ROWSET","features":[582]},{"name":"DBROWCHANGEKINDENUM","features":[582]},{"name":"DBROWCHANGEKIND_COUNT","features":[582]},{"name":"DBROWCHANGEKIND_DELETE","features":[582]},{"name":"DBROWCHANGEKIND_INSERT","features":[582]},{"name":"DBROWCHANGEKIND_UPDATE","features":[582]},{"name":"DBROWSTATUSENUM","features":[582]},{"name":"DBROWSTATUSENUM20","features":[582]},{"name":"DBROWSTATUS_E_CANCELED","features":[582]},{"name":"DBROWSTATUS_E_CANTRELEASE","features":[582]},{"name":"DBROWSTATUS_E_CONCURRENCYVIOLATION","features":[582]},{"name":"DBROWSTATUS_E_DELETED","features":[582]},{"name":"DBROWSTATUS_E_FAIL","features":[582]},{"name":"DBROWSTATUS_E_INTEGRITYVIOLATION","features":[582]},{"name":"DBROWSTATUS_E_INVALID","features":[582]},{"name":"DBROWSTATUS_E_LIMITREACHED","features":[582]},{"name":"DBROWSTATUS_E_MAXPENDCHANGESEXCEEDED","features":[582]},{"name":"DBROWSTATUS_E_NEWLYINSERTED","features":[582]},{"name":"DBROWSTATUS_E_OBJECTOPEN","features":[582]},{"name":"DBROWSTATUS_E_OUTOFMEMORY","features":[582]},{"name":"DBROWSTATUS_E_PENDINGINSERT","features":[582]},{"name":"DBROWSTATUS_E_PERMISSIONDENIED","features":[582]},{"name":"DBROWSTATUS_E_SCHEMAVIOLATION","features":[582]},{"name":"DBROWSTATUS_S_MULTIPLECHANGES","features":[582]},{"name":"DBROWSTATUS_S_NOCHANGE","features":[582]},{"name":"DBROWSTATUS_S_OK","features":[582]},{"name":"DBROWSTATUS_S_PENDINGCHANGES","features":[582]},{"name":"DBROWWATCHCHANGE","features":[582]},{"name":"DBROWWATCHCHANGE","features":[582]},{"name":"DBSCHEMA_LINKEDSERVERS","features":[582]},{"name":"DBSEEKENUM","features":[582]},{"name":"DBSEEK_AFTER","features":[582]},{"name":"DBSEEK_AFTEREQ","features":[582]},{"name":"DBSEEK_BEFORE","features":[582]},{"name":"DBSEEK_BEFOREEQ","features":[582]},{"name":"DBSEEK_FIRSTEQ","features":[582]},{"name":"DBSEEK_INVALID","features":[582]},{"name":"DBSEEK_LASTEQ","features":[582]},{"name":"DBSELFGUID","features":[582]},{"name":"DBSORTENUM","features":[582]},{"name":"DBSORT_ASCENDING","features":[582]},{"name":"DBSORT_DESCENDING","features":[582]},{"name":"DBSOURCETYPEENUM","features":[582]},{"name":"DBSOURCETYPEENUM20","features":[582]},{"name":"DBSOURCETYPEENUM25","features":[582]},{"name":"DBSOURCETYPE_BINDER","features":[582]},{"name":"DBSOURCETYPE_DATASOURCE","features":[582]},{"name":"DBSOURCETYPE_DATASOURCE_MDP","features":[582]},{"name":"DBSOURCETYPE_DATASOURCE_TDP","features":[582]},{"name":"DBSOURCETYPE_ENUMERATOR","features":[582]},{"name":"DBSTATUSENUM","features":[582]},{"name":"DBSTATUSENUM20","features":[582]},{"name":"DBSTATUSENUM21","features":[582]},{"name":"DBSTATUSENUM25","features":[582]},{"name":"DBSTATUSENUM26","features":[582]},{"name":"DBSTATUS_E_BADACCESSOR","features":[582]},{"name":"DBSTATUS_E_BADSTATUS","features":[582]},{"name":"DBSTATUS_E_CANCELED","features":[582]},{"name":"DBSTATUS_E_CANNOTCOMPLETE","features":[582]},{"name":"DBSTATUS_E_CANTCONVERTVALUE","features":[582]},{"name":"DBSTATUS_E_CANTCREATE","features":[582]},{"name":"DBSTATUS_E_DATAOVERFLOW","features":[582]},{"name":"DBSTATUS_E_DOESNOTEXIST","features":[582]},{"name":"DBSTATUS_E_INTEGRITYVIOLATION","features":[582]},{"name":"DBSTATUS_E_INVALIDURL","features":[582]},{"name":"DBSTATUS_E_NOTCOLLECTION","features":[582]},{"name":"DBSTATUS_E_OUTOFSPACE","features":[582]},{"name":"DBSTATUS_E_PERMISSIONDENIED","features":[582]},{"name":"DBSTATUS_E_READONLY","features":[582]},{"name":"DBSTATUS_E_RESOURCEEXISTS","features":[582]},{"name":"DBSTATUS_E_RESOURCELOCKED","features":[582]},{"name":"DBSTATUS_E_RESOURCEOUTOFSCOPE","features":[582]},{"name":"DBSTATUS_E_SCHEMAVIOLATION","features":[582]},{"name":"DBSTATUS_E_SIGNMISMATCH","features":[582]},{"name":"DBSTATUS_E_UNAVAILABLE","features":[582]},{"name":"DBSTATUS_E_VOLUMENOTFOUND","features":[582]},{"name":"DBSTATUS_S_ALREADYEXISTS","features":[582]},{"name":"DBSTATUS_S_CANNOTDELETESOURCE","features":[582]},{"name":"DBSTATUS_S_DEFAULT","features":[582]},{"name":"DBSTATUS_S_IGNORE","features":[582]},{"name":"DBSTATUS_S_ISNULL","features":[582]},{"name":"DBSTATUS_S_OK","features":[582]},{"name":"DBSTATUS_S_ROWSETCOLUMN","features":[582]},{"name":"DBSTATUS_S_TRUNCATED","features":[582]},{"name":"DBSTAT_COLUMN_CARDINALITY","features":[582]},{"name":"DBSTAT_HISTOGRAM","features":[582]},{"name":"DBSTAT_TUPLE_CARDINALITY","features":[582]},{"name":"DBTABLESTATISTICSTYPE26","features":[582]},{"name":"DBTIME","features":[582]},{"name":"DBTIMESTAMP","features":[582]},{"name":"DBTIMESTAMP","features":[582]},{"name":"DBTYPEENUM","features":[582]},{"name":"DBTYPEENUM15","features":[582]},{"name":"DBTYPEENUM20","features":[582]},{"name":"DBTYPE_ARRAY","features":[582]},{"name":"DBTYPE_BOOL","features":[582]},{"name":"DBTYPE_BSTR","features":[582]},{"name":"DBTYPE_BYREF","features":[582]},{"name":"DBTYPE_BYTES","features":[582]},{"name":"DBTYPE_CY","features":[582]},{"name":"DBTYPE_DATE","features":[582]},{"name":"DBTYPE_DBDATE","features":[582]},{"name":"DBTYPE_DBTIME","features":[582]},{"name":"DBTYPE_DBTIMESTAMP","features":[582]},{"name":"DBTYPE_DECIMAL","features":[582]},{"name":"DBTYPE_EMPTY","features":[582]},{"name":"DBTYPE_ERROR","features":[582]},{"name":"DBTYPE_FILETIME","features":[582]},{"name":"DBTYPE_GUID","features":[582]},{"name":"DBTYPE_HCHAPTER","features":[582]},{"name":"DBTYPE_I1","features":[582]},{"name":"DBTYPE_I2","features":[582]},{"name":"DBTYPE_I4","features":[582]},{"name":"DBTYPE_I8","features":[582]},{"name":"DBTYPE_IDISPATCH","features":[582]},{"name":"DBTYPE_IUNKNOWN","features":[582]},{"name":"DBTYPE_NULL","features":[582]},{"name":"DBTYPE_NUMERIC","features":[582]},{"name":"DBTYPE_PROPVARIANT","features":[582]},{"name":"DBTYPE_R4","features":[582]},{"name":"DBTYPE_R8","features":[582]},{"name":"DBTYPE_RESERVED","features":[582]},{"name":"DBTYPE_SQLVARIANT","features":[582]},{"name":"DBTYPE_STR","features":[582]},{"name":"DBTYPE_UDT","features":[582]},{"name":"DBTYPE_UI1","features":[582]},{"name":"DBTYPE_UI2","features":[582]},{"name":"DBTYPE_UI4","features":[582]},{"name":"DBTYPE_UI8","features":[582]},{"name":"DBTYPE_VARIANT","features":[582]},{"name":"DBTYPE_VARNUMERIC","features":[582]},{"name":"DBTYPE_VECTOR","features":[582]},{"name":"DBTYPE_WSTR","features":[582]},{"name":"DBUNIT_BYTE","features":[582]},{"name":"DBUNIT_GIGA_BYTE","features":[582]},{"name":"DBUNIT_HOUR","features":[582]},{"name":"DBUNIT_INVALID","features":[582]},{"name":"DBUNIT_KILO_BYTE","features":[582]},{"name":"DBUNIT_MAXIMUM","features":[582]},{"name":"DBUNIT_MEGA_BYTE","features":[582]},{"name":"DBUNIT_MICRO_SECOND","features":[582]},{"name":"DBUNIT_MILLI_SECOND","features":[582]},{"name":"DBUNIT_MINIMUM","features":[582]},{"name":"DBUNIT_MINUTE","features":[582]},{"name":"DBUNIT_NUM_LOCKS","features":[582]},{"name":"DBUNIT_NUM_MSGS","features":[582]},{"name":"DBUNIT_NUM_ROWS","features":[582]},{"name":"DBUNIT_OTHER","features":[582]},{"name":"DBUNIT_PERCENT","features":[582]},{"name":"DBUNIT_SECOND","features":[582]},{"name":"DBUNIT_WEIGHT","features":[582]},{"name":"DBUPDELRULEENUM","features":[582]},{"name":"DBUPDELRULE_CASCADE","features":[582]},{"name":"DBUPDELRULE_NOACTION","features":[582]},{"name":"DBUPDELRULE_SETDEFAULT","features":[582]},{"name":"DBUPDELRULE_SETNULL","features":[582]},{"name":"DBVARYBIN","features":[582]},{"name":"DBVARYCHAR","features":[582]},{"name":"DBVECTOR","features":[582]},{"name":"DBVECTOR","features":[582]},{"name":"DBWATCHMODEENUM","features":[582]},{"name":"DBWATCHMODE_ALL","features":[582]},{"name":"DBWATCHMODE_COUNT","features":[582]},{"name":"DBWATCHMODE_EXTEND","features":[582]},{"name":"DBWATCHMODE_MOVE","features":[582]},{"name":"DBWATCHNOTIFYENUM","features":[582]},{"name":"DBWATCHNOTIFY_QUERYDONE","features":[582]},{"name":"DBWATCHNOTIFY_QUERYREEXECUTED","features":[582]},{"name":"DBWATCHNOTIFY_ROWSCHANGED","features":[582]},{"name":"DB_ALL_EXCEPT_LIKE","features":[582]},{"name":"DB_BINDFLAGS_COLLECTION","features":[582]},{"name":"DB_BINDFLAGS_DELAYFETCHCOLUMNS","features":[582]},{"name":"DB_BINDFLAGS_DELAYFETCHSTREAM","features":[582]},{"name":"DB_BINDFLAGS_ISSTRUCTUREDDOCUMENT","features":[582]},{"name":"DB_BINDFLAGS_OPENIFEXISTS","features":[582]},{"name":"DB_BINDFLAGS_OUTPUT","features":[582]},{"name":"DB_BINDFLAGS_OVERWRITE","features":[582]},{"name":"DB_BINDFLAGS_RECURSIVE","features":[582]},{"name":"DB_COLLATION_ASC","features":[582]},{"name":"DB_COLLATION_DESC","features":[582]},{"name":"DB_COUNTUNAVAILABLE","features":[582]},{"name":"DB_E_ABORTLIMITREACHED","features":[582]},{"name":"DB_E_ALREADYINITIALIZED","features":[582]},{"name":"DB_E_ALTERRESTRICTED","features":[582]},{"name":"DB_E_ASYNCNOTSUPPORTED","features":[582]},{"name":"DB_E_BADACCESSORFLAGS","features":[582]},{"name":"DB_E_BADACCESSORHANDLE","features":[582]},{"name":"DB_E_BADACCESSORTYPE","features":[582]},{"name":"DB_E_BADBINDINFO","features":[582]},{"name":"DB_E_BADBOOKMARK","features":[582]},{"name":"DB_E_BADCHAPTER","features":[582]},{"name":"DB_E_BADCOLUMNID","features":[582]},{"name":"DB_E_BADCOMMANDFLAGS","features":[582]},{"name":"DB_E_BADCOMMANDID","features":[582]},{"name":"DB_E_BADCOMPAREOP","features":[582]},{"name":"DB_E_BADCONSTRAINTFORM","features":[582]},{"name":"DB_E_BADCONSTRAINTID","features":[582]},{"name":"DB_E_BADCONSTRAINTTYPE","features":[582]},{"name":"DB_E_BADCONVERTFLAG","features":[582]},{"name":"DB_E_BADCOPY","features":[582]},{"name":"DB_E_BADDEFERRABILITY","features":[582]},{"name":"DB_E_BADDYNAMICERRORID","features":[582]},{"name":"DB_E_BADHRESULT","features":[582]},{"name":"DB_E_BADID","features":[582]},{"name":"DB_E_BADINDEXID","features":[582]},{"name":"DB_E_BADINITSTRING","features":[582]},{"name":"DB_E_BADLOCKMODE","features":[582]},{"name":"DB_E_BADLOOKUPID","features":[582]},{"name":"DB_E_BADMATCHTYPE","features":[582]},{"name":"DB_E_BADORDINAL","features":[582]},{"name":"DB_E_BADPARAMETERNAME","features":[582]},{"name":"DB_E_BADPRECISION","features":[582]},{"name":"DB_E_BADPROPERTYVALUE","features":[582]},{"name":"DB_E_BADRATIO","features":[582]},{"name":"DB_E_BADRECORDNUM","features":[582]},{"name":"DB_E_BADREGIONHANDLE","features":[582]},{"name":"DB_E_BADROWHANDLE","features":[582]},{"name":"DB_E_BADSCALE","features":[582]},{"name":"DB_E_BADSOURCEHANDLE","features":[582]},{"name":"DB_E_BADSTARTPOSITION","features":[582]},{"name":"DB_E_BADSTATUSVALUE","features":[582]},{"name":"DB_E_BADSTORAGEFLAG","features":[582]},{"name":"DB_E_BADSTORAGEFLAGS","features":[582]},{"name":"DB_E_BADTABLEID","features":[582]},{"name":"DB_E_BADTYPE","features":[582]},{"name":"DB_E_BADTYPENAME","features":[582]},{"name":"DB_E_BADUPDATEDELETERULE","features":[582]},{"name":"DB_E_BADVALUES","features":[582]},{"name":"DB_E_BOGUS","features":[582]},{"name":"DB_E_BOOKMARKSKIPPED","features":[582]},{"name":"DB_E_BYREFACCESSORNOTSUPPORTED","features":[582]},{"name":"DB_E_CANCELED","features":[582]},{"name":"DB_E_CANNOTCONNECT","features":[582]},{"name":"DB_E_CANNOTFREE","features":[582]},{"name":"DB_E_CANNOTRESTART","features":[582]},{"name":"DB_E_CANTCANCEL","features":[582]},{"name":"DB_E_CANTCONVERTVALUE","features":[582]},{"name":"DB_E_CANTFETCHBACKWARDS","features":[582]},{"name":"DB_E_CANTFILTER","features":[582]},{"name":"DB_E_CANTORDER","features":[582]},{"name":"DB_E_CANTSCROLLBACKWARDS","features":[582]},{"name":"DB_E_CANTTRANSLATE","features":[582]},{"name":"DB_E_CHAPTERNOTRELEASED","features":[582]},{"name":"DB_E_COLUMNUNAVAILABLE","features":[582]},{"name":"DB_E_COMMANDNOTPERSISTED","features":[582]},{"name":"DB_E_CONCURRENCYVIOLATION","features":[582]},{"name":"DB_E_COSTLIMIT","features":[582]},{"name":"DB_E_DATAOVERFLOW","features":[582]},{"name":"DB_E_DELETEDROW","features":[582]},{"name":"DB_E_DIALECTNOTSUPPORTED","features":[582]},{"name":"DB_E_DROPRESTRICTED","features":[582]},{"name":"DB_E_DUPLICATECOLUMNID","features":[582]},{"name":"DB_E_DUPLICATECONSTRAINTID","features":[582]},{"name":"DB_E_DUPLICATEDATASOURCE","features":[582]},{"name":"DB_E_DUPLICATEID","features":[582]},{"name":"DB_E_DUPLICATEINDEXID","features":[582]},{"name":"DB_E_DUPLICATETABLEID","features":[582]},{"name":"DB_E_ERRORSINCOMMAND","features":[582]},{"name":"DB_E_ERRORSOCCURRED","features":[582]},{"name":"DB_E_GOALREJECTED","features":[582]},{"name":"DB_E_INDEXINUSE","features":[582]},{"name":"DB_E_INTEGRITYVIOLATION","features":[582]},{"name":"DB_E_INVALID","features":[582]},{"name":"DB_E_INVALIDTRANSITION","features":[582]},{"name":"DB_E_LIMITREJECTED","features":[582]},{"name":"DB_E_MAXPENDCHANGESEXCEEDED","features":[582]},{"name":"DB_E_MISMATCHEDPROVIDER","features":[582]},{"name":"DB_E_MULTIPLESTATEMENTS","features":[582]},{"name":"DB_E_MULTIPLESTORAGE","features":[582]},{"name":"DB_E_NEWLYINSERTED","features":[582]},{"name":"DB_E_NOAGGREGATION","features":[582]},{"name":"DB_E_NOCOLUMN","features":[582]},{"name":"DB_E_NOCOMMAND","features":[582]},{"name":"DB_E_NOCONSTRAINT","features":[582]},{"name":"DB_E_NOINDEX","features":[582]},{"name":"DB_E_NOLOCALE","features":[582]},{"name":"DB_E_NONCONTIGUOUSRANGE","features":[582]},{"name":"DB_E_NOPROVIDERSREGISTERED","features":[582]},{"name":"DB_E_NOQUERY","features":[582]},{"name":"DB_E_NOSOURCEOBJECT","features":[582]},{"name":"DB_E_NOSTATISTIC","features":[582]},{"name":"DB_E_NOTABLE","features":[582]},{"name":"DB_E_NOTAREFERENCECOLUMN","features":[582]},{"name":"DB_E_NOTASUBREGION","features":[582]},{"name":"DB_E_NOTCOLLECTION","features":[582]},{"name":"DB_E_NOTFOUND","features":[582]},{"name":"DB_E_NOTPREPARED","features":[582]},{"name":"DB_E_NOTREENTRANT","features":[582]},{"name":"DB_E_NOTSUPPORTED","features":[582]},{"name":"DB_E_NULLACCESSORNOTSUPPORTED","features":[582]},{"name":"DB_E_OBJECTCREATIONLIMITREACHED","features":[582]},{"name":"DB_E_OBJECTMISMATCH","features":[582]},{"name":"DB_E_OBJECTOPEN","features":[582]},{"name":"DB_E_OUTOFSPACE","features":[582]},{"name":"DB_E_PARAMNOTOPTIONAL","features":[582]},{"name":"DB_E_PARAMUNAVAILABLE","features":[582]},{"name":"DB_E_PENDINGCHANGES","features":[582]},{"name":"DB_E_PENDINGINSERT","features":[582]},{"name":"DB_E_READONLY","features":[582]},{"name":"DB_E_READONLYACCESSOR","features":[582]},{"name":"DB_E_RESOURCEEXISTS","features":[582]},{"name":"DB_E_RESOURCELOCKED","features":[582]},{"name":"DB_E_RESOURCENOTSUPPORTED","features":[582]},{"name":"DB_E_RESOURCEOUTOFSCOPE","features":[582]},{"name":"DB_E_ROWLIMITEXCEEDED","features":[582]},{"name":"DB_E_ROWSETINCOMMAND","features":[582]},{"name":"DB_E_ROWSNOTRELEASED","features":[582]},{"name":"DB_E_SCHEMAVIOLATION","features":[582]},{"name":"DB_E_TABLEINUSE","features":[582]},{"name":"DB_E_TIMEOUT","features":[582]},{"name":"DB_E_UNSUPPORTEDCONVERSION","features":[582]},{"name":"DB_E_WRITEONLYACCESSOR","features":[582]},{"name":"DB_IMP_LEVEL_ANONYMOUS","features":[582]},{"name":"DB_IMP_LEVEL_DELEGATE","features":[582]},{"name":"DB_IMP_LEVEL_IDENTIFY","features":[582]},{"name":"DB_IMP_LEVEL_IMPERSONATE","features":[582]},{"name":"DB_IN","features":[582]},{"name":"DB_INVALID_HACCESSOR","features":[582]},{"name":"DB_INVALID_HCHAPTER","features":[582]},{"name":"DB_LIKE_ONLY","features":[582]},{"name":"DB_LOCAL_EXCLUSIVE","features":[582]},{"name":"DB_LOCAL_SHARED","features":[582]},{"name":"DB_MODE_READ","features":[582]},{"name":"DB_MODE_READWRITE","features":[582]},{"name":"DB_MODE_SHARE_DENY_NONE","features":[582]},{"name":"DB_MODE_SHARE_DENY_READ","features":[582]},{"name":"DB_MODE_SHARE_DENY_WRITE","features":[582]},{"name":"DB_MODE_SHARE_EXCLUSIVE","features":[582]},{"name":"DB_MODE_WRITE","features":[582]},{"name":"DB_NULLGUID","features":[582]},{"name":"DB_NULL_HACCESSOR","features":[582]},{"name":"DB_NULL_HCHAPTER","features":[582]},{"name":"DB_NULL_HROW","features":[582]},{"name":"DB_NUMERIC","features":[582]},{"name":"DB_OUT","features":[582]},{"name":"DB_PROT_LEVEL_CALL","features":[582]},{"name":"DB_PROT_LEVEL_CONNECT","features":[582]},{"name":"DB_PROT_LEVEL_NONE","features":[582]},{"name":"DB_PROT_LEVEL_PKT","features":[582]},{"name":"DB_PROT_LEVEL_PKT_INTEGRITY","features":[582]},{"name":"DB_PROT_LEVEL_PKT_PRIVACY","features":[582]},{"name":"DB_PT_FUNCTION","features":[582]},{"name":"DB_PT_PROCEDURE","features":[582]},{"name":"DB_PT_UNKNOWN","features":[582]},{"name":"DB_REMOTE","features":[582]},{"name":"DB_SEARCHABLE","features":[582]},{"name":"DB_SEC_E_AUTH_FAILED","features":[582]},{"name":"DB_SEC_E_PERMISSIONDENIED","features":[582]},{"name":"DB_SEC_E_SAFEMODE_DENIED","features":[582]},{"name":"DB_S_ASYNCHRONOUS","features":[582]},{"name":"DB_S_BADROWHANDLE","features":[582]},{"name":"DB_S_BOOKMARKSKIPPED","features":[582]},{"name":"DB_S_BUFFERFULL","features":[582]},{"name":"DB_S_CANTRELEASE","features":[582]},{"name":"DB_S_COLUMNSCHANGED","features":[582]},{"name":"DB_S_COLUMNTYPEMISMATCH","features":[582]},{"name":"DB_S_COMMANDREEXECUTED","features":[582]},{"name":"DB_S_DELETEDROW","features":[582]},{"name":"DB_S_DIALECTIGNORED","features":[582]},{"name":"DB_S_ENDOFROWSET","features":[582]},{"name":"DB_S_ERRORSOCCURRED","features":[582]},{"name":"DB_S_ERRORSRETURNED","features":[582]},{"name":"DB_S_GOALCHANGED","features":[582]},{"name":"DB_S_LOCKUPGRADED","features":[582]},{"name":"DB_S_MULTIPLECHANGES","features":[582]},{"name":"DB_S_NONEXTROWSET","features":[582]},{"name":"DB_S_NORESULT","features":[582]},{"name":"DB_S_NOROWSPECIFICCOLUMNS","features":[582]},{"name":"DB_S_NOTSINGLETON","features":[582]},{"name":"DB_S_PARAMUNAVAILABLE","features":[582]},{"name":"DB_S_PROPERTIESCHANGED","features":[582]},{"name":"DB_S_ROWLIMITEXCEEDED","features":[582]},{"name":"DB_S_STOPLIMITREACHED","features":[582]},{"name":"DB_S_TOOMANYCHANGES","features":[582]},{"name":"DB_S_TYPEINFOOVERRIDDEN","features":[582]},{"name":"DB_S_UNWANTEDOPERATION","features":[582]},{"name":"DB_S_UNWANTEDPHASE","features":[582]},{"name":"DB_S_UNWANTEDREASON","features":[582]},{"name":"DB_UNSEARCHABLE","features":[582]},{"name":"DB_VARNUMERIC","features":[582]},{"name":"DCINFO","features":[582]},{"name":"DCINFOTYPEENUM","features":[582]},{"name":"DCINFOTYPE_VERSION","features":[582]},{"name":"DELIVERY_AGENT_FLAGS","features":[582]},{"name":"DELIVERY_AGENT_FLAG_NO_BROADCAST","features":[582]},{"name":"DELIVERY_AGENT_FLAG_NO_RESTRICTIONS","features":[582]},{"name":"DELIVERY_AGENT_FLAG_SILENT_DIAL","features":[582]},{"name":"DISPID_QUERY_ALL","features":[582]},{"name":"DISPID_QUERY_HITCOUNT","features":[582]},{"name":"DISPID_QUERY_LASTSEENTIME","features":[582]},{"name":"DISPID_QUERY_METADATA_PROPDISPID","features":[582]},{"name":"DISPID_QUERY_METADATA_PROPGUID","features":[582]},{"name":"DISPID_QUERY_METADATA_PROPMODIFIABLE","features":[582]},{"name":"DISPID_QUERY_METADATA_PROPNAME","features":[582]},{"name":"DISPID_QUERY_METADATA_STORELEVEL","features":[582]},{"name":"DISPID_QUERY_METADATA_VROOTAUTOMATIC","features":[582]},{"name":"DISPID_QUERY_METADATA_VROOTMANUAL","features":[582]},{"name":"DISPID_QUERY_METADATA_VROOTUSED","features":[582]},{"name":"DISPID_QUERY_RANK","features":[582]},{"name":"DISPID_QUERY_RANKVECTOR","features":[582]},{"name":"DISPID_QUERY_REVNAME","features":[582]},{"name":"DISPID_QUERY_UNFILTERED","features":[582]},{"name":"DISPID_QUERY_VIRTUALPATH","features":[582]},{"name":"DISPID_QUERY_WORKID","features":[582]},{"name":"DS_E_ALREADYDISABLED","features":[582]},{"name":"DS_E_ALREADYENABLED","features":[582]},{"name":"DS_E_BADREQUEST","features":[582]},{"name":"DS_E_BADRESULT","features":[582]},{"name":"DS_E_BADSEQUENCE","features":[582]},{"name":"DS_E_BUFFERTOOSMALL","features":[582]},{"name":"DS_E_CANNOTREMOVECONCURRENT","features":[582]},{"name":"DS_E_CANNOTWRITEREGISTRY","features":[582]},{"name":"DS_E_CONFIGBAD","features":[582]},{"name":"DS_E_CONFIGNOTRIGHTTYPE","features":[582]},{"name":"DS_E_DATANOTPRESENT","features":[582]},{"name":"DS_E_DATASOURCENOTAVAILABLE","features":[582]},{"name":"DS_E_DATASOURCENOTDISABLED","features":[582]},{"name":"DS_E_DUPLICATEID","features":[582]},{"name":"DS_E_INDEXDIRECTORY","features":[582]},{"name":"DS_E_INVALIDCATALOGNAME","features":[582]},{"name":"DS_E_INVALIDDATASOURCE","features":[582]},{"name":"DS_E_INVALIDTAGDB","features":[582]},{"name":"DS_E_MESSAGETOOLONG","features":[582]},{"name":"DS_E_MISSINGCATALOG","features":[582]},{"name":"DS_E_NOMOREDATA","features":[582]},{"name":"DS_E_PARAMOUTOFRANGE","features":[582]},{"name":"DS_E_PROPVERSIONMISMATCH","features":[582]},{"name":"DS_E_PROTOCOLVERSION","features":[582]},{"name":"DS_E_QUERYCANCELED","features":[582]},{"name":"DS_E_QUERYHUNG","features":[582]},{"name":"DS_E_REGISTRY","features":[582]},{"name":"DS_E_SEARCHCATNAMECOLLISION","features":[582]},{"name":"DS_E_SERVERCAPACITY","features":[582]},{"name":"DS_E_SERVERERROR","features":[582]},{"name":"DS_E_SETSTATUSINPROGRESS","features":[582]},{"name":"DS_E_TOOMANYDATASOURCES","features":[582]},{"name":"DS_E_UNKNOWNPARAM","features":[582]},{"name":"DS_E_UNKNOWNREQUEST","features":[582]},{"name":"DS_E_VALUETOOLARGE","features":[582]},{"name":"DataLinks","features":[582]},{"name":"DataSource","features":[582]},{"name":"DataSourceListener","features":[582]},{"name":"DataSourceObject","features":[356,582]},{"name":"EBindInfoOptions","features":[582]},{"name":"ERRORINFO","features":[582]},{"name":"ERRORINFO","features":[582]},{"name":"ERROR_FTE","features":[582]},{"name":"ERROR_FTE_CB","features":[582]},{"name":"ERROR_FTE_FD","features":[582]},{"name":"ERROR_SOURCE_CMDLINE","features":[582]},{"name":"ERROR_SOURCE_COLLATOR","features":[582]},{"name":"ERROR_SOURCE_CONNMGR","features":[582]},{"name":"ERROR_SOURCE_CONTENT_SOURCE","features":[582]},{"name":"ERROR_SOURCE_DATASOURCE","features":[582]},{"name":"ERROR_SOURCE_DAV","features":[582]},{"name":"ERROR_SOURCE_EXSTOREPH","features":[582]},{"name":"ERROR_SOURCE_FLTRDMN","features":[582]},{"name":"ERROR_SOURCE_GATHERER","features":[582]},{"name":"ERROR_SOURCE_INDEXER","features":[582]},{"name":"ERROR_SOURCE_MSS","features":[582]},{"name":"ERROR_SOURCE_NETWORKING","features":[582]},{"name":"ERROR_SOURCE_NLADMIN","features":[582]},{"name":"ERROR_SOURCE_NOTESPH","features":[582]},{"name":"ERROR_SOURCE_OLEDB_BINDER","features":[582]},{"name":"ERROR_SOURCE_PEOPLE_IMPORT","features":[582]},{"name":"ERROR_SOURCE_PROTHNDLR","features":[582]},{"name":"ERROR_SOURCE_QUERY","features":[582]},{"name":"ERROR_SOURCE_REMOTE_EXSTOREPH","features":[582]},{"name":"ERROR_SOURCE_SCHEMA","features":[582]},{"name":"ERROR_SOURCE_SCRIPTPI","features":[582]},{"name":"ERROR_SOURCE_SECURITY","features":[582]},{"name":"ERROR_SOURCE_SETUP","features":[582]},{"name":"ERROR_SOURCE_SRCH_SCHEMA_CACHE","features":[582]},{"name":"ERROR_SOURCE_XML","features":[582]},{"name":"EVENT_AUDIENCECOMPUTATION_CANNOTSTART","features":[582]},{"name":"EVENT_AUTOCAT_CANT_CREATE_FILE_SHARE","features":[582]},{"name":"EVENT_AUTOCAT_PERFMON","features":[582]},{"name":"EVENT_CONFIG_ERROR","features":[582]},{"name":"EVENT_CONFIG_SYNTAX","features":[582]},{"name":"EVENT_CRAWL_SCHEDULED","features":[582]},{"name":"EVENT_DETAILED_FILTERPOOL_ADD_FAILED","features":[582]},{"name":"EVENT_DSS_NOT_ENABLED","features":[582]},{"name":"EVENT_ENUMERATE_SESSIONS_FAILED","features":[582]},{"name":"EVENT_EXCEPTION","features":[582]},{"name":"EVENT_FAILED_CREATE_GATHERER_LOG","features":[582]},{"name":"EVENT_FAILED_INITIALIZE_CRAWL","features":[582]},{"name":"EVENT_FILTERPOOL_ADD_FAILED","features":[582]},{"name":"EVENT_FILTERPOOL_DELETE_FAILED","features":[582]},{"name":"EVENT_FILTER_HOST_FORCE_TERMINATE","features":[582]},{"name":"EVENT_FILTER_HOST_NOT_INITIALIZED","features":[582]},{"name":"EVENT_FILTER_HOST_NOT_TERMINATED","features":[582]},{"name":"EVENT_GATHERER_DATASOURCE","features":[582]},{"name":"EVENT_GATHERER_PERFMON","features":[582]},{"name":"EVENT_GATHERSVC_PERFMON","features":[582]},{"name":"EVENT_GATHER_ADVISE_FAILED","features":[582]},{"name":"EVENT_GATHER_APP_INIT_FAILED","features":[582]},{"name":"EVENT_GATHER_AUTODESCENCODE_INVALID","features":[582]},{"name":"EVENT_GATHER_AUTODESCLEN_ADJUSTED","features":[582]},{"name":"EVENT_GATHER_BACKUPAPP_COMPLETE","features":[582]},{"name":"EVENT_GATHER_BACKUPAPP_ERROR","features":[582]},{"name":"EVENT_GATHER_CANT_CREATE_DOCID","features":[582]},{"name":"EVENT_GATHER_CANT_DELETE_DOCID","features":[582]},{"name":"EVENT_GATHER_CHECKPOINT_CORRUPT","features":[582]},{"name":"EVENT_GATHER_CHECKPOINT_FAILED","features":[582]},{"name":"EVENT_GATHER_CHECKPOINT_FILE_MISSING","features":[582]},{"name":"EVENT_GATHER_CRAWL_IN_PROGRESS","features":[582]},{"name":"EVENT_GATHER_CRAWL_NOT_STARTED","features":[582]},{"name":"EVENT_GATHER_CRAWL_SEED_ERROR","features":[582]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED","features":[582]},{"name":"EVENT_GATHER_CRAWL_SEED_FAILED_INIT","features":[582]},{"name":"EVENT_GATHER_CRITICAL_ERROR","features":[582]},{"name":"EVENT_GATHER_DAEMON_TERMINATED","features":[582]},{"name":"EVENT_GATHER_DELETING_HISTORY_ITEMS","features":[582]},{"name":"EVENT_GATHER_DIRTY_STARTUP","features":[582]},{"name":"EVENT_GATHER_DISK_FULL","features":[582]},{"name":"EVENT_GATHER_END_ADAPTIVE","features":[582]},{"name":"EVENT_GATHER_END_CRAWL","features":[582]},{"name":"EVENT_GATHER_END_INCREMENTAL","features":[582]},{"name":"EVENT_GATHER_EXCEPTION","features":[582]},{"name":"EVENT_GATHER_FLUSH_FAILED","features":[582]},{"name":"EVENT_GATHER_FROM_NOT_SET","features":[582]},{"name":"EVENT_GATHER_HISTORY_CORRUPTION_DETECTED","features":[582]},{"name":"EVENT_GATHER_INPLACE_INDEX_REBUILD","features":[582]},{"name":"EVENT_GATHER_INTERNAL","features":[582]},{"name":"EVENT_GATHER_INVALID_NETWORK_ACCESS_ACCOUNT","features":[582]},{"name":"EVENT_GATHER_LOCK_FAILED","features":[582]},{"name":"EVENT_GATHER_NO_CRAWL_SEEDS","features":[582]},{"name":"EVENT_GATHER_NO_SCHEMA","features":[582]},{"name":"EVENT_GATHER_OBJ_INIT_FAILED","features":[582]},{"name":"EVENT_GATHER_PLUGINMGR_INIT_FAILED","features":[582]},{"name":"EVENT_GATHER_PLUGIN_INIT_FAILED","features":[582]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_INIT_FAILED","features":[582]},{"name":"EVENT_GATHER_PROTOCOLHANDLER_LOAD_FAILED","features":[582]},{"name":"EVENT_GATHER_READ_CHECKPOINT_FAILED","features":[582]},{"name":"EVENT_GATHER_RECOVERY_FAILURE","features":[582]},{"name":"EVENT_GATHER_REG_MISSING","features":[582]},{"name":"EVENT_GATHER_RESET_START","features":[582]},{"name":"EVENT_GATHER_RESTOREAPP_COMPLETE","features":[582]},{"name":"EVENT_GATHER_RESTOREAPP_ERROR","features":[582]},{"name":"EVENT_GATHER_RESTORE_CHECKPOINT_FAILED","features":[582]},{"name":"EVENT_GATHER_RESTORE_COMPLETE","features":[582]},{"name":"EVENT_GATHER_RESTORE_ERROR","features":[582]},{"name":"EVENT_GATHER_RESUME","features":[582]},{"name":"EVENT_GATHER_SAVE_FAILED","features":[582]},{"name":"EVENT_GATHER_SERVICE_INIT","features":[582]},{"name":"EVENT_GATHER_START_CRAWL","features":[582]},{"name":"EVENT_GATHER_START_CRAWL_IF_RESET","features":[582]},{"name":"EVENT_GATHER_START_PAUSE","features":[582]},{"name":"EVENT_GATHER_STOP_START","features":[582]},{"name":"EVENT_GATHER_SYSTEM_LCID_CHANGED","features":[582]},{"name":"EVENT_GATHER_THROTTLE","features":[582]},{"name":"EVENT_GATHER_TRANSACTION_FAIL","features":[582]},{"name":"EVENT_HASHMAP_INSERT","features":[582]},{"name":"EVENT_HASHMAP_UPDATE","features":[582]},{"name":"EVENT_INDEXER_ADD_DSS_DISCONNECT","features":[582]},{"name":"EVENT_INDEXER_ADD_DSS_FAILED","features":[582]},{"name":"EVENT_INDEXER_ADD_DSS_SUCCEEDED","features":[582]},{"name":"EVENT_INDEXER_BUILD_ENDED","features":[582]},{"name":"EVENT_INDEXER_BUILD_FAILED","features":[582]},{"name":"EVENT_INDEXER_BUILD_START","features":[582]},{"name":"EVENT_INDEXER_CI_LOAD_ERROR","features":[582]},{"name":"EVENT_INDEXER_DSS_ALREADY_ADDED","features":[582]},{"name":"EVENT_INDEXER_DSS_CONTACT_FAILED","features":[582]},{"name":"EVENT_INDEXER_DSS_UNABLE_TO_REMOVE","features":[582]},{"name":"EVENT_INDEXER_FAIL_TO_CREATE_PER_USER_CATALOG","features":[582]},{"name":"EVENT_INDEXER_FAIL_TO_SET_MAX_JETINSTANCE","features":[582]},{"name":"EVENT_INDEXER_FAIL_TO_UNLOAD_PER_USER_CATALOG","features":[582]},{"name":"EVENT_INDEXER_INIT_ERROR","features":[582]},{"name":"EVENT_INDEXER_INVALID_DIRECTORY","features":[582]},{"name":"EVENT_INDEXER_LOAD_FAIL","features":[582]},{"name":"EVENT_INDEXER_MISSING_APP_DIRECTORY","features":[582]},{"name":"EVENT_INDEXER_NEW_PROJECT","features":[582]},{"name":"EVENT_INDEXER_NO_SEARCH_SERVERS","features":[582]},{"name":"EVENT_INDEXER_OUT_OF_DATABASE_INSTANCE","features":[582]},{"name":"EVENT_INDEXER_PAUSED_FOR_DISKFULL","features":[582]},{"name":"EVENT_INDEXER_PERFMON","features":[582]},{"name":"EVENT_INDEXER_PROPSTORE_INIT_FAILED","features":[582]},{"name":"EVENT_INDEXER_PROP_ABORTED","features":[582]},{"name":"EVENT_INDEXER_PROP_COMMITTED","features":[582]},{"name":"EVENT_INDEXER_PROP_COMMIT_FAILED","features":[582]},{"name":"EVENT_INDEXER_PROP_ERROR","features":[582]},{"name":"EVENT_INDEXER_PROP_STARTED","features":[582]},{"name":"EVENT_INDEXER_PROP_STATE_CORRUPT","features":[582]},{"name":"EVENT_INDEXER_PROP_STOPPED","features":[582]},{"name":"EVENT_INDEXER_PROP_SUCCEEDED","features":[582]},{"name":"EVENT_INDEXER_REG_ERROR","features":[582]},{"name":"EVENT_INDEXER_REG_MISSING","features":[582]},{"name":"EVENT_INDEXER_REMOVED_PROJECT","features":[582]},{"name":"EVENT_INDEXER_REMOVE_DSS_FAILED","features":[582]},{"name":"EVENT_INDEXER_REMOVE_DSS_SUCCEEDED","features":[582]},{"name":"EVENT_INDEXER_RESET_FOR_CORRUPTION","features":[582]},{"name":"EVENT_INDEXER_SCHEMA_COPY_ERROR","features":[582]},{"name":"EVENT_INDEXER_SHUTDOWN","features":[582]},{"name":"EVENT_INDEXER_STARTED","features":[582]},{"name":"EVENT_INDEXER_VERIFY_PROP_ACCOUNT","features":[582]},{"name":"EVENT_LEARN_COMPILE_FAILED","features":[582]},{"name":"EVENT_LEARN_CREATE_DB_FAILED","features":[582]},{"name":"EVENT_LEARN_PROPAGATION_COPY_FAILED","features":[582]},{"name":"EVENT_LEARN_PROPAGATION_FAILED","features":[582]},{"name":"EVENT_LOCAL_GROUPS_CACHE_FLUSHED","features":[582]},{"name":"EVENT_LOCAL_GROUP_NOT_EXPANDED","features":[582]},{"name":"EVENT_NOTIFICATION_FAILURE","features":[582]},{"name":"EVENT_NOTIFICATION_FAILURE_SCOPE_EXCEEDED_LOGGING","features":[582]},{"name":"EVENT_NOTIFICATION_RESTORED","features":[582]},{"name":"EVENT_NOTIFICATION_RESTORED_SCOPE_EXCEEDED_LOGGING","features":[582]},{"name":"EVENT_NOTIFICATION_THREAD_EXIT_FAILED","features":[582]},{"name":"EVENT_OUTOFMEMORY","features":[582]},{"name":"EVENT_PERF_COUNTERS_ALREADY_EXISTS","features":[582]},{"name":"EVENT_PERF_COUNTERS_NOT_LOADED","features":[582]},{"name":"EVENT_PERF_COUNTERS_REGISTRY_TROUBLE","features":[582]},{"name":"EVENT_PROTOCOL_HOST_FORCE_TERMINATE","features":[582]},{"name":"EVENT_REG_VERSION","features":[582]},{"name":"EVENT_SSSEARCH_CREATE_PATH_RULES_FAILED","features":[582]},{"name":"EVENT_SSSEARCH_CSM_SAVE_FAILED","features":[582]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_FAILED","features":[582]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_ROLLBACK_ERRORS","features":[582]},{"name":"EVENT_SSSEARCH_DATAFILES_MOVE_SUCCEEDED","features":[582]},{"name":"EVENT_SSSEARCH_DROPPED_EVENTS","features":[582]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_FAILED","features":[582]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_STARTED","features":[582]},{"name":"EVENT_SSSEARCH_SETUP_CLEANUP_SUCCEEDED","features":[582]},{"name":"EVENT_SSSEARCH_SETUP_FAILED","features":[582]},{"name":"EVENT_SSSEARCH_SETUP_SUCCEEDED","features":[582]},{"name":"EVENT_SSSEARCH_STARTED","features":[582]},{"name":"EVENT_SSSEARCH_STARTING_SETUP","features":[582]},{"name":"EVENT_SSSEARCH_STOPPED","features":[582]},{"name":"EVENT_STS_INIT_SECURITY_FAILED","features":[582]},{"name":"EVENT_SYSTEM_EXCEPTION","features":[582]},{"name":"EVENT_TRANSACTION_READ","features":[582]},{"name":"EVENT_TRANSLOG_APPEND","features":[582]},{"name":"EVENT_TRANSLOG_CREATE","features":[582]},{"name":"EVENT_TRANSLOG_CREATE_TRX","features":[582]},{"name":"EVENT_TRANSLOG_UPDATE","features":[582]},{"name":"EVENT_UNPRIVILEGED_SERVICE_ACCOUNT","features":[582]},{"name":"EVENT_USING_DIFFERENT_WORD_BREAKER","features":[582]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILE","features":[582]},{"name":"EVENT_WARNING_CANNOT_UPGRADE_NOISE_FILES","features":[582]},{"name":"EVENT_WBREAKER_NOT_LOADED","features":[582]},{"name":"EVENT_WIN32_ERROR","features":[582]},{"name":"EXCI_E_ACCESS_DENIED","features":[582]},{"name":"EXCI_E_BADCONFIG_OR_ACCESSDENIED","features":[582]},{"name":"EXCI_E_INVALID_ACCOUNT_INFO","features":[582]},{"name":"EXCI_E_INVALID_EXCHANGE_SERVER","features":[582]},{"name":"EXCI_E_INVALID_SERVER_CONFIG","features":[582]},{"name":"EXCI_E_NOT_ADMIN_OR_WRONG_SITE","features":[582]},{"name":"EXCI_E_NO_CONFIG","features":[582]},{"name":"EXCI_E_NO_MAPI","features":[582]},{"name":"EXCI_E_WRONG_SERVER_OR_ACCT","features":[582]},{"name":"EXSTOREPH_E_UNEXPECTED","features":[582]},{"name":"EX_ANY","features":[582]},{"name":"EX_CMDFATAL","features":[582]},{"name":"EX_CONTROL","features":[582]},{"name":"EX_DBCORRUPT","features":[582]},{"name":"EX_DBFATAL","features":[582]},{"name":"EX_DEADLOCK","features":[582]},{"name":"EX_HARDWARE","features":[582]},{"name":"EX_INFO","features":[582]},{"name":"EX_INTOK","features":[582]},{"name":"EX_LIMIT","features":[582]},{"name":"EX_MAXISEVERITY","features":[582]},{"name":"EX_MISSING","features":[582]},{"name":"EX_PERMIT","features":[582]},{"name":"EX_RESOURCE","features":[582]},{"name":"EX_SYNTAX","features":[582]},{"name":"EX_TABCORRUPT","features":[582]},{"name":"EX_TYPE","features":[582]},{"name":"EX_USER","features":[582]},{"name":"FAIL","features":[582]},{"name":"FF_INDEXCOMPLEXURLS","features":[582]},{"name":"FF_SUPPRESSINDEXING","features":[582]},{"name":"FILTERED_DATA_SOURCES","features":[582]},{"name":"FLTRDMN_E_CANNOT_DECRYPT_PASSWORD","features":[582]},{"name":"FLTRDMN_E_ENCRYPTED_DOCUMENT","features":[582]},{"name":"FLTRDMN_E_FILTER_INIT_FAILED","features":[582]},{"name":"FLTRDMN_E_QI_FILTER_FAILED","features":[582]},{"name":"FLTRDMN_E_UNEXPECTED","features":[582]},{"name":"FOLLOW_FLAGS","features":[582]},{"name":"FTE_E_ADMIN_BLOB_CORRUPT","features":[582]},{"name":"FTE_E_AFFINITY_MASK","features":[582]},{"name":"FTE_E_ALREADY_INITIALIZED","features":[582]},{"name":"FTE_E_ANOTHER_STATUS_CHANGE_IS_ALREADY_ACTIVE","features":[582]},{"name":"FTE_E_BATCH_ABORTED","features":[582]},{"name":"FTE_E_CATALOG_ALREADY_EXISTS","features":[582]},{"name":"FTE_E_CATALOG_DOES_NOT_EXIST","features":[582]},{"name":"FTE_E_CB_CBID_OUT_OF_BOUND","features":[582]},{"name":"FTE_E_CB_NOT_ENOUGH_AVAIL_PHY_MEM","features":[582]},{"name":"FTE_E_CB_NOT_ENOUGH_OCC_BUFFER","features":[582]},{"name":"FTE_E_CB_OUT_OF_MEMORY","features":[582]},{"name":"FTE_E_COM_SIGNATURE_VALIDATION","features":[582]},{"name":"FTE_E_CORRUPT_GATHERER_HASH_MAP","features":[582]},{"name":"FTE_E_CORRUPT_PROPERTY_STORE","features":[582]},{"name":"FTE_E_CORRUPT_WORDLIST","features":[582]},{"name":"FTE_E_DATATYPE_MISALIGNMENT","features":[582]},{"name":"FTE_E_DEPENDENT_TRAN_FAILED_TO_PERSIST","features":[582]},{"name":"FTE_E_DOC_TOO_HUGE","features":[582]},{"name":"FTE_E_DUPLICATE_OBJECT","features":[582]},{"name":"FTE_E_ERROR_WRITING_REGISTRY","features":[582]},{"name":"FTE_E_EXCEEDED_MAX_PLUGINS","features":[582]},{"name":"FTE_E_FAILED_TO_CREATE_ACCESSOR","features":[582]},{"name":"FTE_E_FAILURE_TO_POST_SETCOMPLETION_STATUS","features":[582]},{"name":"FTE_E_FD_DID_NOT_CONNECT","features":[582]},{"name":"FTE_E_FD_DOC_TIMEOUT","features":[582]},{"name":"FTE_E_FD_DOC_UNEXPECTED_EXIT","features":[582]},{"name":"FTE_E_FD_FAILED_TO_LOAD_IFILTER","features":[582]},{"name":"FTE_E_FD_FILTER_CAUSED_SHARING_VIOLATION","features":[582]},{"name":"FTE_E_FD_IDLE","features":[582]},{"name":"FTE_E_FD_IFILTER_INIT_FAILED","features":[582]},{"name":"FTE_E_FD_NOISE_NO_IPERSISTSTREAM_ON_TEXT_FILTER","features":[582]},{"name":"FTE_E_FD_NOISE_NO_TEXT_FILTER","features":[582]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_INIT_FAILED","features":[582]},{"name":"FTE_E_FD_NOISE_TEXT_FILTER_LOAD_FAILED","features":[582]},{"name":"FTE_E_FD_NO_IPERSIST_INTERFACE","features":[582]},{"name":"FTE_E_FD_OCCURRENCE_OVERFLOW","features":[582]},{"name":"FTE_E_FD_OWNERSHIP_OBSOLETE","features":[582]},{"name":"FTE_E_FD_SHUTDOWN","features":[582]},{"name":"FTE_E_FD_TIMEOUT","features":[582]},{"name":"FTE_E_FD_UNEXPECTED_EXIT","features":[582]},{"name":"FTE_E_FD_UNRESPONSIVE","features":[582]},{"name":"FTE_E_FD_USED_TOO_MUCH_MEMORY","features":[582]},{"name":"FTE_E_FILTER_SINGLE_THREADED","features":[582]},{"name":"FTE_E_HIGH_MEMORY_PRESSURE","features":[582]},{"name":"FTE_E_INVALID_CODEPAGE","features":[582]},{"name":"FTE_E_INVALID_DOCID","features":[582]},{"name":"FTE_E_INVALID_ISOLATE_ERROR_BATCH","features":[582]},{"name":"FTE_E_INVALID_PROG_ID","features":[582]},{"name":"FTE_E_INVALID_PROJECT_ID","features":[582]},{"name":"FTE_E_INVALID_PROPERTY","features":[582]},{"name":"FTE_E_INVALID_TYPE","features":[582]},{"name":"FTE_E_KEY_NOT_CACHED","features":[582]},{"name":"FTE_E_LIBRARY_NOT_LOADED","features":[582]},{"name":"FTE_E_NOT_PROCESSED_DUE_TO_PREVIOUS_ERRORS","features":[582]},{"name":"FTE_E_NO_MORE_PROPERTIES","features":[582]},{"name":"FTE_E_NO_PLUGINS","features":[582]},{"name":"FTE_E_NO_PROPERTY_STORE","features":[582]},{"name":"FTE_E_OUT_OF_RANGE","features":[582]},{"name":"FTE_E_PATH_TOO_LONG","features":[582]},{"name":"FTE_E_PAUSE_EXTERNAL","features":[582]},{"name":"FTE_E_PERFMON_FULL","features":[582]},{"name":"FTE_E_PERF_NOT_LOADED","features":[582]},{"name":"FTE_E_PIPE_DATA_CORRUPTED","features":[582]},{"name":"FTE_E_PIPE_NOT_CONNECTED","features":[582]},{"name":"FTE_E_PROGID_REQUIRED","features":[582]},{"name":"FTE_E_PROJECT_NOT_INITALIZED","features":[582]},{"name":"FTE_E_PROJECT_SHUTDOWN","features":[582]},{"name":"FTE_E_PROPERTY_STORE_WORKID_NOTVALID","features":[582]},{"name":"FTE_E_READONLY_CATALOG","features":[582]},{"name":"FTE_E_REDUNDANT_TRAN_FAILURE","features":[582]},{"name":"FTE_E_REJECTED_DUE_TO_PROJECT_STATUS","features":[582]},{"name":"FTE_E_RESOURCE_SHUTDOWN","features":[582]},{"name":"FTE_E_RETRY_HUGE_DOC","features":[582]},{"name":"FTE_E_RETRY_SINGLE_DOC_PER_BATCH","features":[582]},{"name":"FTE_E_SECRET_NOT_FOUND","features":[582]},{"name":"FTE_E_SERIAL_STREAM_CORRUPT","features":[582]},{"name":"FTE_E_STACK_CORRUPTED","features":[582]},{"name":"FTE_E_STATIC_THREAD_INVALID_ARGUMENTS","features":[582]},{"name":"FTE_E_UNEXPECTED_EXIT","features":[582]},{"name":"FTE_E_UNKNOWN_FD_TYPE","features":[582]},{"name":"FTE_E_UNKNOWN_PLUGIN","features":[582]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_INSTANTIATED","features":[582]},{"name":"FTE_E_UPGRADE_INTERFACE_ALREADY_SHUTDOWN","features":[582]},{"name":"FTE_E_URB_TOO_BIG","features":[582]},{"name":"FTE_INVALID_ADMIN_CLIENT","features":[582]},{"name":"FTE_S_BEYOND_QUOTA","features":[582]},{"name":"FTE_S_CATALOG_BLOB_MISMATCHED","features":[582]},{"name":"FTE_S_PROPERTY_RESET","features":[582]},{"name":"FTE_S_PROPERTY_STORE_END_OF_ENUMERATION","features":[582]},{"name":"FTE_S_READONLY_CATALOG","features":[582]},{"name":"FTE_S_REDUNDANT","features":[582]},{"name":"FTE_S_RESOURCES_STARTING_TO_GET_LOW","features":[582]},{"name":"FTE_S_RESUME","features":[582]},{"name":"FTE_S_STATUS_CHANGE_REQUEST","features":[582]},{"name":"FTE_S_TRY_TO_FLUSH","features":[582]},{"name":"FilterRegistration","features":[582]},{"name":"GENERATE_METHOD_PREFIXMATCH","features":[582]},{"name":"GENERATE_METHOD_STEMMED","features":[582]},{"name":"GHTR_E_INSUFFICIENT_DISK_SPACE","features":[582]},{"name":"GHTR_E_LOCAL_SERVER_UNAVAILABLE","features":[582]},{"name":"GTHR_E_ADDLINKS_FAILED_WILL_RETRY_PARENT","features":[582]},{"name":"GTHR_E_APPLICATION_NOT_FOUND","features":[582]},{"name":"GTHR_E_AUTOCAT_UNEXPECTED","features":[582]},{"name":"GTHR_E_BACKUP_VALIDATION_FAIL","features":[582]},{"name":"GTHR_E_BAD_FILTER_DAEMON","features":[582]},{"name":"GTHR_E_BAD_FILTER_HOST","features":[582]},{"name":"GTHR_E_CANNOT_ENABLE_CHECKPOINT","features":[582]},{"name":"GTHR_E_CANNOT_REMOVE_PLUGINMGR","features":[582]},{"name":"GTHR_E_CONFIG_DUP_EXTENSION","features":[582]},{"name":"GTHR_E_CONFIG_DUP_PROJECT","features":[582]},{"name":"GTHR_E_CONTENT_ID_CONFLICT","features":[582]},{"name":"GTHR_E_DIRMON_NOT_INITIALZED","features":[582]},{"name":"GTHR_E_DUPLICATE_OBJECT","features":[582]},{"name":"GTHR_E_DUPLICATE_PROJECT","features":[582]},{"name":"GTHR_E_DUPLICATE_URL","features":[582]},{"name":"GTHR_E_DUP_PROPERTY_MAPPING","features":[582]},{"name":"GTHR_E_EMPTY_DACL","features":[582]},{"name":"GTHR_E_ERROR_INITIALIZING_PERFMON","features":[582]},{"name":"GTHR_E_ERROR_OBJECT_NOT_FOUND","features":[582]},{"name":"GTHR_E_ERROR_WRITING_REGISTRY","features":[582]},{"name":"GTHR_E_FILTERPOOL_NOTFOUND","features":[582]},{"name":"GTHR_E_FILTER_FAULT","features":[582]},{"name":"GTHR_E_FILTER_INIT","features":[582]},{"name":"GTHR_E_FILTER_INTERRUPTED","features":[582]},{"name":"GTHR_E_FILTER_INVALID_MESSAGE","features":[582]},{"name":"GTHR_E_FILTER_NOT_FOUND","features":[582]},{"name":"GTHR_E_FILTER_NO_CODEPAGE","features":[582]},{"name":"GTHR_E_FILTER_NO_MORE_THREADS","features":[582]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED","features":[582]},{"name":"GTHR_E_FILTER_PROCESS_TERMINATED_QUOTA","features":[582]},{"name":"GTHR_E_FILTER_SINGLE_THREADED","features":[582]},{"name":"GTHR_E_FOLDER_CRAWLED_BY_ANOTHER_WORKSPACE","features":[582]},{"name":"GTHR_E_FORCE_NOTIFICATION_RESET","features":[582]},{"name":"GTHR_E_FROM_NOT_SPECIFIED","features":[582]},{"name":"GTHR_E_IE_OFFLINE","features":[582]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_CATEGORIES","features":[582]},{"name":"GTHR_E_INSUFFICIENT_EXAMPLE_DOCUMENTS","features":[582]},{"name":"GTHR_E_INSUFFICIENT_FEATURE_TERMS","features":[582]},{"name":"GTHR_E_INVALIDFUNCTION","features":[582]},{"name":"GTHR_E_INVALID_ACCOUNT","features":[582]},{"name":"GTHR_E_INVALID_ACCOUNT_SYNTAX","features":[582]},{"name":"GTHR_E_INVALID_APPLICATION_NAME","features":[582]},{"name":"GTHR_E_INVALID_CALL_FROM_WBREAKER","features":[582]},{"name":"GTHR_E_INVALID_DIRECTORY","features":[582]},{"name":"GTHR_E_INVALID_EXTENSION","features":[582]},{"name":"GTHR_E_INVALID_GROW_FACTOR","features":[582]},{"name":"GTHR_E_INVALID_HOST_NAME","features":[582]},{"name":"GTHR_E_INVALID_LOG_FILE_NAME","features":[582]},{"name":"GTHR_E_INVALID_MAPPING","features":[582]},{"name":"GTHR_E_INVALID_PATH","features":[582]},{"name":"GTHR_E_INVALID_PATH_EXPRESSION","features":[582]},{"name":"GTHR_E_INVALID_PATH_SPEC","features":[582]},{"name":"GTHR_E_INVALID_PROJECT_NAME","features":[582]},{"name":"GTHR_E_INVALID_PROXY_PORT","features":[582]},{"name":"GTHR_E_INVALID_RESOURCE_ID","features":[582]},{"name":"GTHR_E_INVALID_RETRIES","features":[582]},{"name":"GTHR_E_INVALID_START_ADDRESS","features":[582]},{"name":"GTHR_E_INVALID_START_PAGE","features":[582]},{"name":"GTHR_E_INVALID_START_PAGE_HOST","features":[582]},{"name":"GTHR_E_INVALID_START_PAGE_PATH","features":[582]},{"name":"GTHR_E_INVALID_STREAM_LOGS_COUNT","features":[582]},{"name":"GTHR_E_INVALID_TIME_OUT","features":[582]},{"name":"GTHR_E_JET_BACKUP_ERROR","features":[582]},{"name":"GTHR_E_JET_RESTORE_ERROR","features":[582]},{"name":"GTHR_E_LOCAL_GROUPS_EXPANSION_INTERNAL_ERROR","features":[582]},{"name":"GTHR_E_NAME_TOO_LONG","features":[582]},{"name":"GTHR_E_NESTED_HIERARCHICAL_START_ADDRESSES","features":[582]},{"name":"GTHR_E_NOFILTERSINK","features":[582]},{"name":"GTHR_E_NON_FIXED_DRIVE","features":[582]},{"name":"GTHR_E_NOTIFICATION_FILE_SHARE_INFO_NOT_AVAILABLE","features":[582]},{"name":"GTHR_E_NOTIFICATION_LOCAL_PATH_MUST_USE_FIXED_DRIVE","features":[582]},{"name":"GTHR_E_NOTIFICATION_START_ADDRESS_INVALID","features":[582]},{"name":"GTHR_E_NOTIFICATION_START_PAGE","features":[582]},{"name":"GTHR_E_NOTIFICATION_TYPE_NOT_SUPPORTED","features":[582]},{"name":"GTHR_E_NOTIF_ACCESS_TOKEN_UPDATED","features":[582]},{"name":"GTHR_E_NOTIF_BEING_REMOVED","features":[582]},{"name":"GTHR_E_NOTIF_EXCESSIVE_THROUGHPUT","features":[582]},{"name":"GTHR_E_NO_IDENTITY","features":[582]},{"name":"GTHR_E_NO_PRTCLHNLR","features":[582]},{"name":"GTHR_E_NTF_CLIENT_NOT_SUBSCRIBED","features":[582]},{"name":"GTHR_E_OBJECT_NOT_VALID","features":[582]},{"name":"GTHR_E_OUT_OF_DOC_ID","features":[582]},{"name":"GTHR_E_PIPE_NOT_CONNECTTED","features":[582]},{"name":"GTHR_E_PLUGIN_NOT_REGISTERED","features":[582]},{"name":"GTHR_E_PROJECT_NOT_INITIALIZED","features":[582]},{"name":"GTHR_E_PROPERTIES_EXCEEDED","features":[582]},{"name":"GTHR_E_PROPERTY_LIST_NOT_INITIALIZED","features":[582]},{"name":"GTHR_E_PROXY_NAME","features":[582]},{"name":"GTHR_E_PRT_HNDLR_PROGID_MISSING","features":[582]},{"name":"GTHR_E_RECOVERABLE_EXOLEDB_ERROR","features":[582]},{"name":"GTHR_E_RETRY","features":[582]},{"name":"GTHR_E_SCHEMA_ERRORS_OCCURRED","features":[582]},{"name":"GTHR_E_SCOPES_EXCEEDED","features":[582]},{"name":"GTHR_E_SECRET_NOT_FOUND","features":[582]},{"name":"GTHR_E_SERVER_UNAVAILABLE","features":[582]},{"name":"GTHR_E_SHUTTING_DOWN","features":[582]},{"name":"GTHR_E_SINGLE_THREADED_EMBEDDING","features":[582]},{"name":"GTHR_E_TIMEOUT","features":[582]},{"name":"GTHR_E_TOO_MANY_PLUGINS","features":[582]},{"name":"GTHR_E_UNABLE_TO_READ_EXCHANGE_STORE","features":[582]},{"name":"GTHR_E_UNABLE_TO_READ_REGISTRY","features":[582]},{"name":"GTHR_E_UNKNOWN_PROTOCOL","features":[582]},{"name":"GTHR_E_UNSUPPORTED_PROPERTY_TYPE","features":[582]},{"name":"GTHR_E_URL_EXCLUDED","features":[582]},{"name":"GTHR_E_URL_UNIDENTIFIED","features":[582]},{"name":"GTHR_E_USER_AGENT_NOT_SPECIFIED","features":[582]},{"name":"GTHR_E_VALUE_NOT_AVAILABLE","features":[582]},{"name":"GTHR_S_BAD_FILE_LINK","features":[582]},{"name":"GTHR_S_CANNOT_FILTER","features":[582]},{"name":"GTHR_S_CANNOT_WORDBREAK","features":[582]},{"name":"GTHR_S_CONFIG_HAS_ACCOUNTS","features":[582]},{"name":"GTHR_S_CRAWL_ADAPTIVE","features":[582]},{"name":"GTHR_S_CRAWL_FULL","features":[582]},{"name":"GTHR_S_CRAWL_INCREMENTAL","features":[582]},{"name":"GTHR_S_CRAWL_SCHEDULED","features":[582]},{"name":"GTHR_S_END_PROCESS_LOOP_NOTIFY_QUEUE","features":[582]},{"name":"GTHR_S_END_STD_CHUNKS","features":[582]},{"name":"GTHR_S_MODIFIED_PARTS","features":[582]},{"name":"GTHR_S_NOT_ALL_PARTS","features":[582]},{"name":"GTHR_S_NO_CRAWL_SEEDS","features":[582]},{"name":"GTHR_S_NO_INDEX","features":[582]},{"name":"GTHR_S_OFFICE_CHILD","features":[582]},{"name":"GTHR_S_PAUSE_REASON_BACKOFF","features":[582]},{"name":"GTHR_S_PAUSE_REASON_EXTERNAL","features":[582]},{"name":"GTHR_S_PAUSE_REASON_PROFILE_IMPORT","features":[582]},{"name":"GTHR_S_PAUSE_REASON_UPGRADING","features":[582]},{"name":"GTHR_S_PROB_NOT_MODIFIED","features":[582]},{"name":"GTHR_S_START_FILTER_FROM_BODY","features":[582]},{"name":"GTHR_S_START_FILTER_FROM_PROTOCOL","features":[582]},{"name":"GTHR_S_STATUS_CHANGE_IGNORED","features":[582]},{"name":"GTHR_S_STATUS_END_CRAWL","features":[582]},{"name":"GTHR_S_STATUS_PAUSE","features":[582]},{"name":"GTHR_S_STATUS_RESET","features":[582]},{"name":"GTHR_S_STATUS_RESUME","features":[582]},{"name":"GTHR_S_STATUS_START","features":[582]},{"name":"GTHR_S_STATUS_STOP","features":[582]},{"name":"GTHR_S_STATUS_THROTTLE","features":[582]},{"name":"GTHR_S_TRANSACTION_IGNORED","features":[582]},{"name":"GTHR_S_USE_MIME_FILTER","features":[582]},{"name":"HACCESSOR","features":[582]},{"name":"HITRANGE","features":[582]},{"name":"IAccessor","features":[582]},{"name":"IAlterIndex","features":[582]},{"name":"IAlterTable","features":[582]},{"name":"IBindResource","features":[582]},{"name":"IChapteredRowset","features":[582]},{"name":"IColumnMapper","features":[582]},{"name":"IColumnMapperCreator","features":[582]},{"name":"IColumnsInfo","features":[582]},{"name":"IColumnsInfo2","features":[582]},{"name":"IColumnsRowset","features":[582]},{"name":"ICommand","features":[582]},{"name":"ICommandCost","features":[582]},{"name":"ICommandPersist","features":[582]},{"name":"ICommandPrepare","features":[582]},{"name":"ICommandProperties","features":[582]},{"name":"ICommandStream","features":[582]},{"name":"ICommandText","features":[582]},{"name":"ICommandValidate","features":[582]},{"name":"ICommandWithParameters","features":[582]},{"name":"ICondition","features":[356,582]},{"name":"ICondition2","features":[356,582]},{"name":"IConditionFactory","features":[582]},{"name":"IConditionFactory2","features":[582]},{"name":"IConditionGenerator","features":[582]},{"name":"IConvertType","features":[582]},{"name":"ICreateRow","features":[582]},{"name":"IDBAsynchNotify","features":[582]},{"name":"IDBAsynchStatus","features":[582]},{"name":"IDBBinderProperties","features":[582]},{"name":"IDBCreateCommand","features":[582]},{"name":"IDBCreateSession","features":[582]},{"name":"IDBDataSourceAdmin","features":[582]},{"name":"IDBInfo","features":[582]},{"name":"IDBInitialize","features":[582]},{"name":"IDBPromptInitialize","features":[582]},{"name":"IDBProperties","features":[582]},{"name":"IDBSchemaCommand","features":[582]},{"name":"IDBSchemaRowset","features":[582]},{"name":"IDCInfo","features":[582]},{"name":"IDENTIFIER_SDK_ERROR","features":[582]},{"name":"IDENTIFIER_SDK_MASK","features":[582]},{"name":"IDS_MON_BUILTIN_PROPERTY","features":[582]},{"name":"IDS_MON_BUILTIN_VIEW","features":[582]},{"name":"IDS_MON_CANNOT_CAST","features":[582]},{"name":"IDS_MON_CANNOT_CONVERT","features":[582]},{"name":"IDS_MON_COLUMN_NOT_DEFINED","features":[582]},{"name":"IDS_MON_DATE_OUT_OF_RANGE","features":[582]},{"name":"IDS_MON_DEFAULT_ERROR","features":[582]},{"name":"IDS_MON_ILLEGAL_PASSTHROUGH","features":[582]},{"name":"IDS_MON_INVALIDSELECT_COALESCE","features":[582]},{"name":"IDS_MON_INVALID_CATALOG","features":[582]},{"name":"IDS_MON_INVALID_IN_GROUP_CLAUSE","features":[582]},{"name":"IDS_MON_MATCH_STRING","features":[582]},{"name":"IDS_MON_NOT_COLUMN_OF_VIEW","features":[582]},{"name":"IDS_MON_ORDINAL_OUT_OF_RANGE","features":[582]},{"name":"IDS_MON_OR_NOT","features":[582]},{"name":"IDS_MON_OUT_OF_MEMORY","features":[582]},{"name":"IDS_MON_OUT_OF_RANGE","features":[582]},{"name":"IDS_MON_PARSE_ERR_1_PARAM","features":[582]},{"name":"IDS_MON_PARSE_ERR_2_PARAM","features":[582]},{"name":"IDS_MON_PROPERTY_NAME_IN_VIEW","features":[582]},{"name":"IDS_MON_RELATIVE_INTERVAL","features":[582]},{"name":"IDS_MON_SELECT_STAR","features":[582]},{"name":"IDS_MON_SEMI_COLON","features":[582]},{"name":"IDS_MON_VIEW_ALREADY_DEFINED","features":[582]},{"name":"IDS_MON_VIEW_NOT_DEFINED","features":[582]},{"name":"IDS_MON_WEIGHT_OUT_OF_RANGE","features":[582]},{"name":"IDX_E_BUILD_IN_PROGRESS","features":[582]},{"name":"IDX_E_CATALOG_DISMOUNTED","features":[582]},{"name":"IDX_E_CORRUPT_INDEX","features":[582]},{"name":"IDX_E_DISKFULL","features":[582]},{"name":"IDX_E_DOCUMENT_ABORTED","features":[582]},{"name":"IDX_E_DSS_NOT_CONNECTED","features":[582]},{"name":"IDX_E_IDXLSTFILE_CORRUPT","features":[582]},{"name":"IDX_E_INVALIDTAG","features":[582]},{"name":"IDX_E_INVALID_INDEX","features":[582]},{"name":"IDX_E_METAFILE_CORRUPT","features":[582]},{"name":"IDX_E_NOISELIST_NOTFOUND","features":[582]},{"name":"IDX_E_NOT_LOADED","features":[582]},{"name":"IDX_E_OBJECT_NOT_FOUND","features":[582]},{"name":"IDX_E_PROPSTORE_INIT_FAILED","features":[582]},{"name":"IDX_E_PROP_MAJOR_VERSION_MISMATCH","features":[582]},{"name":"IDX_E_PROP_MINOR_VERSION_MISMATCH","features":[582]},{"name":"IDX_E_PROP_STATE_CORRUPT","features":[582]},{"name":"IDX_E_PROP_STOPPED","features":[582]},{"name":"IDX_E_REGISTRY_ENTRY","features":[582]},{"name":"IDX_E_SEARCH_SERVER_ALREADY_EXISTS","features":[582]},{"name":"IDX_E_SEARCH_SERVER_NOT_FOUND","features":[582]},{"name":"IDX_E_STEMMER_NOTFOUND","features":[582]},{"name":"IDX_E_TOO_MANY_SEARCH_SERVERS","features":[582]},{"name":"IDX_E_USE_APPGLOBAL_PROPTABLE","features":[582]},{"name":"IDX_E_USE_DEFAULT_CONTENTCLASS","features":[582]},{"name":"IDX_E_WB_NOTFOUND","features":[582]},{"name":"IDX_S_DSS_NOT_AVAILABLE","features":[582]},{"name":"IDX_S_NO_BUILD_IN_PROGRESS","features":[582]},{"name":"IDX_S_SEARCH_SERVER_ALREADY_EXISTS","features":[582]},{"name":"IDX_S_SEARCH_SERVER_DOES_NOT_EXIST","features":[582]},{"name":"IDataConvert","features":[582]},{"name":"IDataInitialize","features":[582]},{"name":"IDataSourceLocator","features":[356,582]},{"name":"IEntity","features":[582]},{"name":"IEnumItemProperties","features":[582]},{"name":"IEnumSearchRoots","features":[582]},{"name":"IEnumSearchScopeRules","features":[582]},{"name":"IEnumSubscription","features":[582]},{"name":"IErrorLookup","features":[582]},{"name":"IErrorRecords","features":[582]},{"name":"IGetDataSource","features":[582]},{"name":"IGetRow","features":[582]},{"name":"IGetSession","features":[582]},{"name":"IGetSourceRow","features":[582]},{"name":"IIndexDefinition","features":[582]},{"name":"IInterval","features":[582]},{"name":"ILK_EXPLICIT_EXCLUDED","features":[582]},{"name":"ILK_EXPLICIT_INCLUDED","features":[582]},{"name":"ILK_NEGATIVE_INFINITY","features":[582]},{"name":"ILK_POSITIVE_INFINITY","features":[582]},{"name":"ILoadFilter","features":[582]},{"name":"ILoadFilterWithPrivateComActivation","features":[582]},{"name":"IMDDataset","features":[582]},{"name":"IMDFind","features":[582]},{"name":"IMDRangeRowset","features":[582]},{"name":"IMetaData","features":[582]},{"name":"IMultipleResults","features":[582]},{"name":"INCREMENTAL_ACCESS_INFO","features":[305,582]},{"name":"INET_E_AGENT_CACHE_SIZE_EXCEEDED","features":[582]},{"name":"INET_E_AGENT_CONNECTION_FAILED","features":[582]},{"name":"INET_E_AGENT_EXCEEDING_CACHE_SIZE","features":[582]},{"name":"INET_E_AGENT_MAX_SIZE_EXCEEDED","features":[582]},{"name":"INET_E_SCHEDULED_EXCLUDE_RANGE","features":[582]},{"name":"INET_E_SCHEDULED_UPDATES_DISABLED","features":[582]},{"name":"INET_E_SCHEDULED_UPDATES_RESTRICTED","features":[582]},{"name":"INET_E_SCHEDULED_UPDATE_INTERVAL","features":[582]},{"name":"INET_S_AGENT_INCREASED_CACHE_SIZE","features":[582]},{"name":"INET_S_AGENT_PART_FAIL","features":[582]},{"name":"INTERVAL_LIMIT_KIND","features":[582]},{"name":"INamedEntity","features":[582]},{"name":"INamedEntityCollector","features":[582]},{"name":"IObjectAccessControl","features":[582]},{"name":"IOpLockStatus","features":[582]},{"name":"IOpenRowset","features":[582]},{"name":"IParentRowset","features":[582]},{"name":"IProtocolHandlerSite","features":[582]},{"name":"IProvideMoniker","features":[582]},{"name":"IQueryParser","features":[582]},{"name":"IQueryParserManager","features":[582]},{"name":"IQuerySolution","features":[582]},{"name":"IReadData","features":[582]},{"name":"IRegisterProvider","features":[582]},{"name":"IRelationship","features":[582]},{"name":"IRichChunk","features":[582]},{"name":"IRow","features":[582]},{"name":"IRowChange","features":[582]},{"name":"IRowPosition","features":[582]},{"name":"IRowPositionChange","features":[582]},{"name":"IRowSchemaChange","features":[582]},{"name":"IRowset","features":[582]},{"name":"IRowsetAsynch","features":[582]},{"name":"IRowsetBookmark","features":[582]},{"name":"IRowsetChange","features":[582]},{"name":"IRowsetChangeExtInfo","features":[582]},{"name":"IRowsetChapterMember","features":[582]},{"name":"IRowsetCopyRows","features":[582]},{"name":"IRowsetCurrentIndex","features":[582]},{"name":"IRowsetEvents","features":[582]},{"name":"IRowsetExactScroll","features":[582]},{"name":"IRowsetFastLoad","features":[582]},{"name":"IRowsetFind","features":[582]},{"name":"IRowsetIdentity","features":[582]},{"name":"IRowsetIndex","features":[582]},{"name":"IRowsetInfo","features":[582]},{"name":"IRowsetKeys","features":[582]},{"name":"IRowsetLocate","features":[582]},{"name":"IRowsetNewRowAfter","features":[582]},{"name":"IRowsetNextRowset","features":[582]},{"name":"IRowsetNotify","features":[582]},{"name":"IRowsetPrioritization","features":[582]},{"name":"IRowsetQueryStatus","features":[582]},{"name":"IRowsetRefresh","features":[582]},{"name":"IRowsetResynch","features":[582]},{"name":"IRowsetScroll","features":[582]},{"name":"IRowsetUpdate","features":[582]},{"name":"IRowsetView","features":[582]},{"name":"IRowsetWatchAll","features":[582]},{"name":"IRowsetWatchNotify","features":[582]},{"name":"IRowsetWatchRegion","features":[582]},{"name":"IRowsetWithParameters","features":[582]},{"name":"ISQLErrorInfo","features":[582]},{"name":"ISQLGetDiagField","features":[582]},{"name":"ISQLRequestDiagFields","features":[582]},{"name":"ISQLServerErrorInfo","features":[582]},{"name":"ISchemaLocalizerSupport","features":[582]},{"name":"ISchemaLock","features":[582]},{"name":"ISchemaProvider","features":[582]},{"name":"IScopedOperations","features":[582]},{"name":"ISearchCatalogManager","features":[582]},{"name":"ISearchCatalogManager2","features":[582]},{"name":"ISearchCrawlScopeManager","features":[582]},{"name":"ISearchCrawlScopeManager2","features":[582]},{"name":"ISearchItemsChangedSink","features":[582]},{"name":"ISearchLanguageSupport","features":[582]},{"name":"ISearchManager","features":[582]},{"name":"ISearchManager2","features":[582]},{"name":"ISearchNotifyInlineSite","features":[582]},{"name":"ISearchPersistentItemsChangedSink","features":[582]},{"name":"ISearchProtocol","features":[582]},{"name":"ISearchProtocol2","features":[582]},{"name":"ISearchProtocolThreadContext","features":[582]},{"name":"ISearchQueryHelper","features":[582]},{"name":"ISearchQueryHits","features":[582]},{"name":"ISearchRoot","features":[582]},{"name":"ISearchScopeRule","features":[582]},{"name":"ISearchViewChangedSink","features":[582]},{"name":"ISecurityInfo","features":[582]},{"name":"IService","features":[582]},{"name":"ISessionProperties","features":[582]},{"name":"ISimpleCommandCreator","features":[582]},{"name":"ISourcesRowset","features":[582]},{"name":"IStemmer","features":[582]},{"name":"ISubscriptionItem","features":[582]},{"name":"ISubscriptionMgr","features":[582]},{"name":"ISubscriptionMgr2","features":[582]},{"name":"ITEMPROP","features":[582]},{"name":"ITEM_INFO","features":[582]},{"name":"ITableCreation","features":[582]},{"name":"ITableDefinition","features":[582]},{"name":"ITableDefinitionWithConstraints","features":[582]},{"name":"ITableRename","features":[582]},{"name":"ITokenCollection","features":[582]},{"name":"ITransactionJoin","features":[582]},{"name":"ITransactionLocal","features":[549,582]},{"name":"ITransactionObject","features":[582]},{"name":"ITrusteeAdmin","features":[582]},{"name":"ITrusteeGroupAdmin","features":[582]},{"name":"IUMS","features":[582]},{"name":"IUMSInitialize","features":[582]},{"name":"IUrlAccessor","features":[582]},{"name":"IUrlAccessor2","features":[582]},{"name":"IUrlAccessor3","features":[582]},{"name":"IUrlAccessor4","features":[582]},{"name":"IViewChapter","features":[582]},{"name":"IViewFilter","features":[582]},{"name":"IViewRowset","features":[582]},{"name":"IViewSort","features":[582]},{"name":"IWordBreaker","features":[582]},{"name":"IWordFormSink","features":[582]},{"name":"IWordSink","features":[582]},{"name":"Interval","features":[582]},{"name":"JET_GET_PROP_STORE_ERROR","features":[582]},{"name":"JET_INIT_ERROR","features":[582]},{"name":"JET_MULTIINSTANCE_DISABLED","features":[582]},{"name":"JET_NEW_PROP_STORE_ERROR","features":[582]},{"name":"JPS_E_CATALOG_DECSRIPTION_MISSING","features":[582]},{"name":"JPS_E_INSUFFICIENT_DATABASE_RESOURCES","features":[582]},{"name":"JPS_E_INSUFFICIENT_DATABASE_SESSIONS","features":[582]},{"name":"JPS_E_INSUFFICIENT_VERSION_STORAGE","features":[582]},{"name":"JPS_E_JET_ERR","features":[582]},{"name":"JPS_E_MISSING_INFORMATION","features":[582]},{"name":"JPS_E_PROPAGATION_CORRUPTION","features":[582]},{"name":"JPS_E_PROPAGATION_FILE","features":[582]},{"name":"JPS_E_PROPAGATION_VERSION_MISMATCH","features":[582]},{"name":"JPS_E_SCHEMA_ERROR","features":[582]},{"name":"JPS_E_SHARING_VIOLATION","features":[582]},{"name":"JPS_S_DUPLICATE_DOC_DETECTED","features":[582]},{"name":"KAGGETDIAG","features":[582]},{"name":"KAGPROPVAL_CONCUR_LOCK","features":[582]},{"name":"KAGPROPVAL_CONCUR_READ_ONLY","features":[582]},{"name":"KAGPROPVAL_CONCUR_ROWVER","features":[582]},{"name":"KAGPROPVAL_CONCUR_VALUES","features":[582]},{"name":"KAGPROP_ACCESSIBLEPROCEDURES","features":[582]},{"name":"KAGPROP_ACCESSIBLETABLES","features":[582]},{"name":"KAGPROP_ACTIVESTATEMENTS","features":[582]},{"name":"KAGPROP_AUTH_SERVERINTEGRATED","features":[582]},{"name":"KAGPROP_AUTH_TRUSTEDCONNECTION","features":[582]},{"name":"KAGPROP_BLOBSONFOCURSOR","features":[582]},{"name":"KAGPROP_CONCURRENCY","features":[582]},{"name":"KAGPROP_CURSOR","features":[582]},{"name":"KAGPROP_DRIVERNAME","features":[582]},{"name":"KAGPROP_DRIVERODBCVER","features":[582]},{"name":"KAGPROP_DRIVERVER","features":[582]},{"name":"KAGPROP_FILEUSAGE","features":[582]},{"name":"KAGPROP_FORCENOPARAMETERREBIND","features":[582]},{"name":"KAGPROP_FORCENOPREPARE","features":[582]},{"name":"KAGPROP_FORCENOREEXECUTE","features":[582]},{"name":"KAGPROP_FORCESSFIREHOSEMODE","features":[582]},{"name":"KAGPROP_INCLUDENONEXACT","features":[582]},{"name":"KAGPROP_IRowsetChangeExtInfo","features":[582]},{"name":"KAGPROP_LIKEESCAPECLAUSE","features":[582]},{"name":"KAGPROP_MARSHALLABLE","features":[582]},{"name":"KAGPROP_MAXCOLUMNSINGROUPBY","features":[582]},{"name":"KAGPROP_MAXCOLUMNSININDEX","features":[582]},{"name":"KAGPROP_MAXCOLUMNSINORDERBY","features":[582]},{"name":"KAGPROP_MAXCOLUMNSINSELECT","features":[582]},{"name":"KAGPROP_MAXCOLUMNSINTABLE","features":[582]},{"name":"KAGPROP_NUMERICFUNCTIONS","features":[582]},{"name":"KAGPROP_ODBCSQLCONFORMANCE","features":[582]},{"name":"KAGPROP_ODBCSQLOPTIEF","features":[582]},{"name":"KAGPROP_OJCAPABILITY","features":[582]},{"name":"KAGPROP_OUTERJOINS","features":[582]},{"name":"KAGPROP_POSITIONONNEWROW","features":[582]},{"name":"KAGPROP_PROCEDURES","features":[582]},{"name":"KAGPROP_QUERYBASEDUPDATES","features":[582]},{"name":"KAGPROP_SPECIALCHARACTERS","features":[582]},{"name":"KAGPROP_STRINGFUNCTIONS","features":[582]},{"name":"KAGPROP_SYSTEMFUNCTIONS","features":[582]},{"name":"KAGPROP_TIMEDATEFUNCTIONS","features":[582]},{"name":"KAGREQDIAG","features":[582,380]},{"name":"KAGREQDIAGFLAGSENUM","features":[582]},{"name":"KAGREQDIAGFLAGS_HEADER","features":[582]},{"name":"KAGREQDIAGFLAGS_RECORD","features":[582]},{"name":"LOCKMODEENUM","features":[582]},{"name":"LOCKMODE_EXCLUSIVE","features":[582]},{"name":"LOCKMODE_INVALID","features":[582]},{"name":"LOCKMODE_SHARED","features":[582]},{"name":"LeafCondition","features":[582]},{"name":"MAXNAME","features":[582]},{"name":"MAXNUMERICLEN","features":[582]},{"name":"MAXUSEVERITY","features":[582]},{"name":"MAX_QUERY_RANK","features":[582]},{"name":"MDAXISINFO","features":[582]},{"name":"MDAXISINFO","features":[582]},{"name":"MDAXIS_CHAPTERS","features":[582]},{"name":"MDAXIS_COLUMNS","features":[582]},{"name":"MDAXIS_PAGES","features":[582]},{"name":"MDAXIS_ROWS","features":[582]},{"name":"MDAXIS_SECTIONS","features":[582]},{"name":"MDAXIS_SLICERS","features":[582]},{"name":"MDDISPINFO_DRILLED_DOWN","features":[582]},{"name":"MDDISPINFO_PARENT_SAME_AS_PREV","features":[582]},{"name":"MDFF_BOLD","features":[582]},{"name":"MDFF_ITALIC","features":[582]},{"name":"MDFF_STRIKEOUT","features":[582]},{"name":"MDFF_UNDERLINE","features":[582]},{"name":"MDLEVEL_TYPE_ALL","features":[582]},{"name":"MDLEVEL_TYPE_CALCULATED","features":[582]},{"name":"MDLEVEL_TYPE_REGULAR","features":[582]},{"name":"MDLEVEL_TYPE_RESERVED1","features":[582]},{"name":"MDLEVEL_TYPE_TIME","features":[582]},{"name":"MDLEVEL_TYPE_TIME_DAYS","features":[582]},{"name":"MDLEVEL_TYPE_TIME_HALF_YEAR","features":[582]},{"name":"MDLEVEL_TYPE_TIME_HOURS","features":[582]},{"name":"MDLEVEL_TYPE_TIME_MINUTES","features":[582]},{"name":"MDLEVEL_TYPE_TIME_MONTHS","features":[582]},{"name":"MDLEVEL_TYPE_TIME_QUARTERS","features":[582]},{"name":"MDLEVEL_TYPE_TIME_SECONDS","features":[582]},{"name":"MDLEVEL_TYPE_TIME_UNDEFINED","features":[582]},{"name":"MDLEVEL_TYPE_TIME_WEEKS","features":[582]},{"name":"MDLEVEL_TYPE_TIME_YEARS","features":[582]},{"name":"MDLEVEL_TYPE_UNKNOWN","features":[582]},{"name":"MDMEASURE_AGGR_AVG","features":[582]},{"name":"MDMEASURE_AGGR_CALCULATED","features":[582]},{"name":"MDMEASURE_AGGR_COUNT","features":[582]},{"name":"MDMEASURE_AGGR_MAX","features":[582]},{"name":"MDMEASURE_AGGR_MIN","features":[582]},{"name":"MDMEASURE_AGGR_STD","features":[582]},{"name":"MDMEASURE_AGGR_SUM","features":[582]},{"name":"MDMEASURE_AGGR_UNKNOWN","features":[582]},{"name":"MDMEASURE_AGGR_VAR","features":[582]},{"name":"MDMEMBER_TYPE_ALL","features":[582]},{"name":"MDMEMBER_TYPE_FORMULA","features":[582]},{"name":"MDMEMBER_TYPE_MEASURE","features":[582]},{"name":"MDMEMBER_TYPE_REGULAR","features":[582]},{"name":"MDMEMBER_TYPE_RESERVE1","features":[582]},{"name":"MDMEMBER_TYPE_RESERVE2","features":[582]},{"name":"MDMEMBER_TYPE_RESERVE3","features":[582]},{"name":"MDMEMBER_TYPE_RESERVE4","features":[582]},{"name":"MDMEMBER_TYPE_UNKNOWN","features":[582]},{"name":"MDPROPVAL_AU_UNCHANGED","features":[582]},{"name":"MDPROPVAL_AU_UNKNOWN","features":[582]},{"name":"MDPROPVAL_AU_UNSUPPORTED","features":[582]},{"name":"MDPROPVAL_FS_FULL_SUPPORT","features":[582]},{"name":"MDPROPVAL_FS_GENERATED_COLUMN","features":[582]},{"name":"MDPROPVAL_FS_GENERATED_DIMENSION","features":[582]},{"name":"MDPROPVAL_FS_NO_SUPPORT","features":[582]},{"name":"MDPROPVAL_MC_SEARCHEDCASE","features":[582]},{"name":"MDPROPVAL_MC_SINGLECASE","features":[582]},{"name":"MDPROPVAL_MD_AFTER","features":[582]},{"name":"MDPROPVAL_MD_BEFORE","features":[582]},{"name":"MDPROPVAL_MD_SELF","features":[582]},{"name":"MDPROPVAL_MF_CREATE_CALCMEMBERS","features":[582]},{"name":"MDPROPVAL_MF_CREATE_NAMEDSETS","features":[582]},{"name":"MDPROPVAL_MF_SCOPE_GLOBAL","features":[582]},{"name":"MDPROPVAL_MF_SCOPE_SESSION","features":[582]},{"name":"MDPROPVAL_MF_WITH_CALCMEMBERS","features":[582]},{"name":"MDPROPVAL_MF_WITH_NAMEDSETS","features":[582]},{"name":"MDPROPVAL_MJC_IMPLICITCUBE","features":[582]},{"name":"MDPROPVAL_MJC_MULTICUBES","features":[582]},{"name":"MDPROPVAL_MJC_SINGLECUBE","features":[582]},{"name":"MDPROPVAL_MMF_CLOSINGPERIOD","features":[582]},{"name":"MDPROPVAL_MMF_COUSIN","features":[582]},{"name":"MDPROPVAL_MMF_OPENINGPERIOD","features":[582]},{"name":"MDPROPVAL_MMF_PARALLELPERIOD","features":[582]},{"name":"MDPROPVAL_MNF_AGGREGATE","features":[582]},{"name":"MDPROPVAL_MNF_CORRELATION","features":[582]},{"name":"MDPROPVAL_MNF_COVARIANCE","features":[582]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVEL","features":[582]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELBOTTOM","features":[582]},{"name":"MDPROPVAL_MNF_DRILLDOWNLEVELTOP","features":[582]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERBOTTOM","features":[582]},{"name":"MDPROPVAL_MNF_DRILLDOWNMEMBERTOP","features":[582]},{"name":"MDPROPVAL_MNF_DRILLUPLEVEL","features":[582]},{"name":"MDPROPVAL_MNF_DRILLUPMEMBER","features":[582]},{"name":"MDPROPVAL_MNF_LINREG2","features":[582]},{"name":"MDPROPVAL_MNF_LINREGPOINT","features":[582]},{"name":"MDPROPVAL_MNF_LINREGSLOPE","features":[582]},{"name":"MDPROPVAL_MNF_LINREGVARIANCE","features":[582]},{"name":"MDPROPVAL_MNF_MEDIAN","features":[582]},{"name":"MDPROPVAL_MNF_RANK","features":[582]},{"name":"MDPROPVAL_MNF_STDDEV","features":[582]},{"name":"MDPROPVAL_MNF_VAR","features":[582]},{"name":"MDPROPVAL_MOQ_CATALOG_CUBE","features":[582]},{"name":"MDPROPVAL_MOQ_CUBE_DIM","features":[582]},{"name":"MDPROPVAL_MOQ_DATASOURCE_CUBE","features":[582]},{"name":"MDPROPVAL_MOQ_DIMHIER_LEVEL","features":[582]},{"name":"MDPROPVAL_MOQ_DIMHIER_MEMBER","features":[582]},{"name":"MDPROPVAL_MOQ_DIM_HIER","features":[582]},{"name":"MDPROPVAL_MOQ_LEVEL_MEMBER","features":[582]},{"name":"MDPROPVAL_MOQ_MEMBER_MEMBER","features":[582]},{"name":"MDPROPVAL_MOQ_OUTERREFERENCE","features":[582]},{"name":"MDPROPVAL_MOQ_SCHEMA_CUBE","features":[582]},{"name":"MDPROPVAL_MSC_GREATERTHAN","features":[582]},{"name":"MDPROPVAL_MSC_GREATERTHANEQUAL","features":[582]},{"name":"MDPROPVAL_MSC_LESSTHAN","features":[582]},{"name":"MDPROPVAL_MSC_LESSTHANEQUAL","features":[582]},{"name":"MDPROPVAL_MSF_BOTTOMPERCENT","features":[582]},{"name":"MDPROPVAL_MSF_BOTTOMSUM","features":[582]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVEL","features":[582]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELBOTTOM","features":[582]},{"name":"MDPROPVAL_MSF_DRILLDOWNLEVELTOP","features":[582]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBBER","features":[582]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERBOTTOM","features":[582]},{"name":"MDPROPVAL_MSF_DRILLDOWNMEMBERTOP","features":[582]},{"name":"MDPROPVAL_MSF_DRILLUPLEVEL","features":[582]},{"name":"MDPROPVAL_MSF_DRILLUPMEMBER","features":[582]},{"name":"MDPROPVAL_MSF_LASTPERIODS","features":[582]},{"name":"MDPROPVAL_MSF_MTD","features":[582]},{"name":"MDPROPVAL_MSF_PERIODSTODATE","features":[582]},{"name":"MDPROPVAL_MSF_QTD","features":[582]},{"name":"MDPROPVAL_MSF_TOGGLEDRILLSTATE","features":[582]},{"name":"MDPROPVAL_MSF_TOPPERCENT","features":[582]},{"name":"MDPROPVAL_MSF_TOPSUM","features":[582]},{"name":"MDPROPVAL_MSF_WTD","features":[582]},{"name":"MDPROPVAL_MSF_YTD","features":[582]},{"name":"MDPROPVAL_MS_MULTIPLETUPLES","features":[582]},{"name":"MDPROPVAL_MS_SINGLETUPLE","features":[582]},{"name":"MDPROPVAL_NL_NAMEDLEVELS","features":[582]},{"name":"MDPROPVAL_NL_NUMBEREDLEVELS","features":[582]},{"name":"MDPROPVAL_NL_SCHEMAONLY","features":[582]},{"name":"MDPROPVAL_NME_ALLDIMENSIONS","features":[582]},{"name":"MDPROPVAL_NME_MEASURESONLY","features":[582]},{"name":"MDPROPVAL_RR_NORANGEROWSET","features":[582]},{"name":"MDPROPVAL_RR_READONLY","features":[582]},{"name":"MDPROPVAL_RR_UPDATE","features":[582]},{"name":"MDPROPVAL_VISUAL_MODE_DEFAULT","features":[582]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL","features":[582]},{"name":"MDPROPVAL_VISUAL_MODE_VISUAL_OFF","features":[582]},{"name":"MDPROP_AGGREGATECELL_UPDATE","features":[582]},{"name":"MDPROP_AXES","features":[582]},{"name":"MDPROP_CELL","features":[582]},{"name":"MDPROP_FLATTENING_SUPPORT","features":[582]},{"name":"MDPROP_MDX_AGGREGATECELL_UPDATE","features":[582]},{"name":"MDPROP_MDX_CASESUPPORT","features":[582]},{"name":"MDPROP_MDX_CUBEQUALIFICATION","features":[582]},{"name":"MDPROP_MDX_DESCFLAGS","features":[582]},{"name":"MDPROP_MDX_FORMULAS","features":[582]},{"name":"MDPROP_MDX_JOINCUBES","features":[582]},{"name":"MDPROP_MDX_MEMBER_FUNCTIONS","features":[582]},{"name":"MDPROP_MDX_NONMEASURE_EXPRESSIONS","features":[582]},{"name":"MDPROP_MDX_NUMERIC_FUNCTIONS","features":[582]},{"name":"MDPROP_MDX_OBJQUALIFICATION","features":[582]},{"name":"MDPROP_MDX_OUTERREFERENCE","features":[582]},{"name":"MDPROP_MDX_QUERYBYPROPERTY","features":[582]},{"name":"MDPROP_MDX_SET_FUNCTIONS","features":[582]},{"name":"MDPROP_MDX_SLICER","features":[582]},{"name":"MDPROP_MDX_STRING_COMPOP","features":[582]},{"name":"MDPROP_MEMBER","features":[582]},{"name":"MDPROP_NAMED_LEVELS","features":[582]},{"name":"MDPROP_RANGEROWSET","features":[582]},{"name":"MDPROP_VISUALMODE","features":[582]},{"name":"MDSTATUS_S_CELLEMPTY","features":[582]},{"name":"MDTREEOP_ANCESTORS","features":[582]},{"name":"MDTREEOP_CHILDREN","features":[582]},{"name":"MDTREEOP_DESCENDANTS","features":[582]},{"name":"MDTREEOP_PARENT","features":[582]},{"name":"MDTREEOP_SELF","features":[582]},{"name":"MDTREEOP_SIBLINGS","features":[582]},{"name":"MD_DIMTYPE_MEASURE","features":[582]},{"name":"MD_DIMTYPE_OTHER","features":[582]},{"name":"MD_DIMTYPE_TIME","features":[582]},{"name":"MD_DIMTYPE_UNKNOWN","features":[582]},{"name":"MD_E_BADCOORDINATE","features":[582]},{"name":"MD_E_BADTUPLE","features":[582]},{"name":"MD_E_INVALIDAXIS","features":[582]},{"name":"MD_E_INVALIDCELLRANGE","features":[582]},{"name":"MINFATALERR","features":[582]},{"name":"MIN_USER_DATATYPE","features":[582]},{"name":"MSDAINITIALIZE","features":[582]},{"name":"MSDAORA","features":[582]},{"name":"MSDAORA8","features":[582]},{"name":"MSDAORA8_ERROR","features":[582]},{"name":"MSDAORA_ERROR","features":[582]},{"name":"MSDSDBINITPROPENUM","features":[582]},{"name":"MSDSSESSIONPROPENUM","features":[582]},{"name":"MSG_CI_CORRUPT_INDEX_COMPONENT","features":[582]},{"name":"MSG_CI_CREATE_SEVER_ITEM_FAILED","features":[582]},{"name":"MSG_CI_MASTER_MERGE_ABORTED","features":[582]},{"name":"MSG_CI_MASTER_MERGE_ABORTED_LOW_DISK","features":[582]},{"name":"MSG_CI_MASTER_MERGE_CANT_RESTART","features":[582]},{"name":"MSG_CI_MASTER_MERGE_CANT_START","features":[582]},{"name":"MSG_CI_MASTER_MERGE_COMPLETED","features":[582]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXPECTED_DOCS","features":[582]},{"name":"MSG_CI_MASTER_MERGE_REASON_EXTERNAL","features":[582]},{"name":"MSG_CI_MASTER_MERGE_REASON_INDEX_LIMIT","features":[582]},{"name":"MSG_CI_MASTER_MERGE_REASON_NUMBER","features":[582]},{"name":"MSG_CI_MASTER_MERGE_RESTARTED","features":[582]},{"name":"MSG_CI_MASTER_MERGE_STARTED","features":[582]},{"name":"MSG_TEST_MESSAGE","features":[582]},{"name":"MSS_E_APPALREADYEXISTS","features":[582]},{"name":"MSS_E_APPNOTFOUND","features":[582]},{"name":"MSS_E_CATALOGALREADYEXISTS","features":[582]},{"name":"MSS_E_CATALOGNOTFOUND","features":[582]},{"name":"MSS_E_CATALOGSTOPPING","features":[582]},{"name":"MSS_E_INVALIDAPPNAME","features":[582]},{"name":"MSS_E_UNICODEFILEHEADERMISSING","features":[582]},{"name":"MS_PERSIST_PROGID","features":[582]},{"name":"NAMED_ENTITY_CERTAINTY","features":[582]},{"name":"NATLANGUAGERESTRICTION","features":[510,429,582]},{"name":"NEC_HIGH","features":[582]},{"name":"NEC_LOW","features":[582]},{"name":"NEC_MEDIUM","features":[582]},{"name":"NET_E_DISCONNECTED","features":[582]},{"name":"NET_E_GENERAL","features":[582]},{"name":"NET_E_INVALIDPARAMS","features":[582]},{"name":"NET_E_OPERATIONINPROGRESS","features":[582]},{"name":"NLADMIN_E_BUILD_CATALOG_NOT_INITIALIZED","features":[582]},{"name":"NLADMIN_E_DUPLICATE_CATALOG","features":[582]},{"name":"NLADMIN_E_FAILED_TO_GIVE_ACCOUNT_PRIVILEGE","features":[582]},{"name":"NLADMIN_S_NOT_ALL_BUILD_CATALOGS_INITIALIZED","features":[582]},{"name":"NODERESTRICTION","features":[510,429,582]},{"name":"NOTESPH_E_ATTACHMENTS","features":[582]},{"name":"NOTESPH_E_DB_ACCESS_DENIED","features":[582]},{"name":"NOTESPH_E_FAIL","features":[582]},{"name":"NOTESPH_E_ITEM_NOT_FOUND","features":[582]},{"name":"NOTESPH_E_NOTESSETUP_ID_MAPPING_ERROR","features":[582]},{"name":"NOTESPH_E_NO_NTID","features":[582]},{"name":"NOTESPH_E_SERVER_CONFIG","features":[582]},{"name":"NOTESPH_E_UNEXPECTED_STATE","features":[582]},{"name":"NOTESPH_E_UNSUPPORTED_CONTENT_FIELD_TYPE","features":[582]},{"name":"NOTESPH_S_IGNORE_ID","features":[582]},{"name":"NOTESPH_S_LISTKNOWNFIELDS","features":[582]},{"name":"NOTRESTRICTION","features":[510,429,582]},{"name":"NOT_N_PARSE_ERROR","features":[582]},{"name":"NegationCondition","features":[582]},{"name":"OCC_INVALID","features":[582]},{"name":"ODBCGetTryWaitValue","features":[582]},{"name":"ODBCSetTryWaitValue","features":[305,582]},{"name":"ODBCVER","features":[582]},{"name":"ODBC_ADD_DSN","features":[582]},{"name":"ODBC_ADD_SYS_DSN","features":[582]},{"name":"ODBC_BOTH_DSN","features":[582]},{"name":"ODBC_CONFIG_DRIVER","features":[582]},{"name":"ODBC_CONFIG_DRIVER_MAX","features":[582]},{"name":"ODBC_CONFIG_DSN","features":[582]},{"name":"ODBC_CONFIG_SYS_DSN","features":[582]},{"name":"ODBC_ERROR_COMPONENT_NOT_FOUND","features":[582]},{"name":"ODBC_ERROR_CREATE_DSN_FAILED","features":[582]},{"name":"ODBC_ERROR_GENERAL_ERR","features":[582]},{"name":"ODBC_ERROR_INVALID_BUFF_LEN","features":[582]},{"name":"ODBC_ERROR_INVALID_DSN","features":[582]},{"name":"ODBC_ERROR_INVALID_HWND","features":[582]},{"name":"ODBC_ERROR_INVALID_INF","features":[582]},{"name":"ODBC_ERROR_INVALID_KEYWORD_VALUE","features":[582]},{"name":"ODBC_ERROR_INVALID_LOG_FILE","features":[582]},{"name":"ODBC_ERROR_INVALID_NAME","features":[582]},{"name":"ODBC_ERROR_INVALID_PARAM_SEQUENCE","features":[582]},{"name":"ODBC_ERROR_INVALID_PATH","features":[582]},{"name":"ODBC_ERROR_INVALID_REQUEST_TYPE","features":[582]},{"name":"ODBC_ERROR_INVALID_STR","features":[582]},{"name":"ODBC_ERROR_LOAD_LIB_FAILED","features":[582]},{"name":"ODBC_ERROR_MAX","features":[582]},{"name":"ODBC_ERROR_NOTRANINFO","features":[582]},{"name":"ODBC_ERROR_OUTPUT_STRING_TRUNCATED","features":[582]},{"name":"ODBC_ERROR_OUT_OF_MEM","features":[582]},{"name":"ODBC_ERROR_REMOVE_DSN_FAILED","features":[582]},{"name":"ODBC_ERROR_REQUEST_FAILED","features":[582]},{"name":"ODBC_ERROR_USAGE_UPDATE_FAILED","features":[582]},{"name":"ODBC_ERROR_USER_CANCELED","features":[582]},{"name":"ODBC_ERROR_WRITING_SYSINFO_FAILED","features":[582]},{"name":"ODBC_INSTALL_COMPLETE","features":[582]},{"name":"ODBC_INSTALL_DRIVER","features":[582]},{"name":"ODBC_INSTALL_INQUIRY","features":[582]},{"name":"ODBC_REMOVE_DEFAULT_DSN","features":[582]},{"name":"ODBC_REMOVE_DRIVER","features":[582]},{"name":"ODBC_REMOVE_DSN","features":[582]},{"name":"ODBC_REMOVE_SYS_DSN","features":[582]},{"name":"ODBC_SYSTEM_DSN","features":[582]},{"name":"ODBC_USER_DSN","features":[582]},{"name":"ODBC_VS_ARGS","features":[582]},{"name":"ODBC_VS_FLAG_RETCODE","features":[582]},{"name":"ODBC_VS_FLAG_STOP","features":[582]},{"name":"ODBC_VS_FLAG_UNICODE_ARG","features":[582]},{"name":"ODBC_VS_FLAG_UNICODE_COR","features":[582]},{"name":"OLEDBSimpleProvider","features":[582]},{"name":"OLEDBSimpleProviderListener","features":[582]},{"name":"OLEDBVER","features":[582]},{"name":"OLEDB_BINDER_CUSTOM_ERROR","features":[582]},{"name":"OSPCOMP","features":[582]},{"name":"OSPCOMP_DEFAULT","features":[582]},{"name":"OSPCOMP_EQ","features":[582]},{"name":"OSPCOMP_GE","features":[582]},{"name":"OSPCOMP_GT","features":[582]},{"name":"OSPCOMP_LE","features":[582]},{"name":"OSPCOMP_LT","features":[582]},{"name":"OSPCOMP_NE","features":[582]},{"name":"OSPFIND","features":[582]},{"name":"OSPFIND_CASESENSITIVE","features":[582]},{"name":"OSPFIND_DEFAULT","features":[582]},{"name":"OSPFIND_UP","features":[582]},{"name":"OSPFIND_UPCASESENSITIVE","features":[582]},{"name":"OSPFORMAT","features":[582]},{"name":"OSPFORMAT_DEFAULT","features":[582]},{"name":"OSPFORMAT_FORMATTED","features":[582]},{"name":"OSPFORMAT_HTML","features":[582]},{"name":"OSPFORMAT_RAW","features":[582]},{"name":"OSPRW","features":[582]},{"name":"OSPRW_DEFAULT","features":[582]},{"name":"OSPRW_MIXED","features":[582]},{"name":"OSPRW_READONLY","features":[582]},{"name":"OSPRW_READWRITE","features":[582]},{"name":"OSPXFER","features":[582]},{"name":"OSPXFER_ABORT","features":[582]},{"name":"OSPXFER_COMPLETE","features":[582]},{"name":"OSPXFER_ERROR","features":[582]},{"name":"OSP_IndexLabel","features":[582]},{"name":"PDPO","features":[582]},{"name":"PEOPLE_IMPORT_E_CANONICALURL_TOOLONG","features":[582]},{"name":"PEOPLE_IMPORT_E_DATATYPENOTSUPPORTED","features":[582]},{"name":"PEOPLE_IMPORT_E_DBCONNFAIL","features":[582]},{"name":"PEOPLE_IMPORT_E_DC_NOT_AVAILABLE","features":[582]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_NOTREFRESHED","features":[582]},{"name":"PEOPLE_IMPORT_E_DIRSYNC_ZERO_COOKIE","features":[582]},{"name":"PEOPLE_IMPORT_E_DOMAIN_DISCOVER_FAILED","features":[582]},{"name":"PEOPLE_IMPORT_E_DOMAIN_REMOVED","features":[582]},{"name":"PEOPLE_IMPORT_E_ENUM_ACCESSDENIED","features":[582]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSDEF","features":[582]},{"name":"PEOPLE_IMPORT_E_FAILTOGETDSMAPPING","features":[582]},{"name":"PEOPLE_IMPORT_E_FAILTOGETLCID","features":[582]},{"name":"PEOPLE_IMPORT_E_LDAPPATH_TOOLONG","features":[582]},{"name":"PEOPLE_IMPORT_E_NOCASTINGSUPPORTED","features":[582]},{"name":"PEOPLE_IMPORT_E_UPDATE_DIRSYNC_COOKIE","features":[582]},{"name":"PEOPLE_IMPORT_E_USERNAME_NOTRESOLVED","features":[582]},{"name":"PEOPLE_IMPORT_NODSDEFINED","features":[582]},{"name":"PEOPLE_IMPORT_NOMAPPINGDEFINED","features":[582]},{"name":"PERM_ALL","features":[582]},{"name":"PERM_CREATE","features":[582]},{"name":"PERM_DELETE","features":[582]},{"name":"PERM_DROP","features":[582]},{"name":"PERM_EXCLUSIVE","features":[582]},{"name":"PERM_EXECUTE","features":[582]},{"name":"PERM_INSERT","features":[582]},{"name":"PERM_MAXIMUM_ALLOWED","features":[582]},{"name":"PERM_READ","features":[582]},{"name":"PERM_READCONTROL","features":[582]},{"name":"PERM_READDESIGN","features":[582]},{"name":"PERM_REFERENCE","features":[582]},{"name":"PERM_UPDATE","features":[582]},{"name":"PERM_WITHGRANT","features":[582]},{"name":"PERM_WRITEDESIGN","features":[582]},{"name":"PERM_WRITEOWNER","features":[582]},{"name":"PERM_WRITEPERMISSIONS","features":[582]},{"name":"PFNFILLTEXTBUFFER","features":[582]},{"name":"PRAll","features":[582]},{"name":"PRAllBits","features":[582]},{"name":"PRAny","features":[582]},{"name":"PRIORITIZE_FLAGS","features":[582]},{"name":"PRIORITIZE_FLAG_IGNOREFAILURECOUNT","features":[582]},{"name":"PRIORITIZE_FLAG_RETRYFAILEDITEMS","features":[582]},{"name":"PRIORITY_LEVEL","features":[582]},{"name":"PRIORITY_LEVEL_DEFAULT","features":[582]},{"name":"PRIORITY_LEVEL_FOREGROUND","features":[582]},{"name":"PRIORITY_LEVEL_HIGH","features":[582]},{"name":"PRIORITY_LEVEL_LOW","features":[582]},{"name":"PROGID_MSPersist_Version_W","features":[582]},{"name":"PROGID_MSPersist_W","features":[582]},{"name":"PROPERTYRESTRICTION","features":[510,429,582]},{"name":"PROPID_DBBMK_BOOKMARK","features":[582]},{"name":"PROPID_DBBMK_CHAPTER","features":[582]},{"name":"PROPID_DBSELF_SELF","features":[582]},{"name":"PROXY_ACCESS","features":[582]},{"name":"PROXY_ACCESS_DIRECT","features":[582]},{"name":"PROXY_ACCESS_PRECONFIG","features":[582]},{"name":"PROXY_ACCESS_PROXY","features":[582]},{"name":"PROXY_INFO","features":[305,582]},{"name":"PRRE","features":[582]},{"name":"PRSomeBits","features":[582]},{"name":"PRTH_E_ACCESS_DENIED","features":[582]},{"name":"PRTH_E_ACL_IS_READ_NONE","features":[582]},{"name":"PRTH_E_ACL_TOO_BIG","features":[582]},{"name":"PRTH_E_BAD_REQUEST","features":[582]},{"name":"PRTH_E_CANT_TRANSFORM_DENIED_ACE","features":[582]},{"name":"PRTH_E_CANT_TRANSFORM_EXTERNAL_ACL","features":[582]},{"name":"PRTH_E_COMM_ERROR","features":[582]},{"name":"PRTH_E_DATABASE_OPEN_ERROR","features":[582]},{"name":"PRTH_E_HTTPS_CERTIFICATE_ERROR","features":[582]},{"name":"PRTH_E_HTTPS_REQUIRE_CERTIFICATE","features":[582]},{"name":"PRTH_E_HTTP_CANNOT_CONNECT","features":[582]},{"name":"PRTH_E_INIT_FAILED","features":[582]},{"name":"PRTH_E_INTERNAL_ERROR","features":[582]},{"name":"PRTH_E_LOAD_FAILED","features":[582]},{"name":"PRTH_E_MIME_EXCLUDED","features":[582]},{"name":"PRTH_E_NOT_REDIRECTED","features":[582]},{"name":"PRTH_E_NO_PROPERTY","features":[582]},{"name":"PRTH_E_OBJ_NOT_FOUND","features":[582]},{"name":"PRTH_E_OPLOCK_BROKEN","features":[582]},{"name":"PRTH_E_REQUEST_ERROR","features":[582]},{"name":"PRTH_E_RETRY","features":[582]},{"name":"PRTH_E_SERVER_ERROR","features":[582]},{"name":"PRTH_E_TRUNCATED","features":[582]},{"name":"PRTH_E_VOLUME_MOUNT_POINT","features":[582]},{"name":"PRTH_E_WININET","features":[582]},{"name":"PRTH_S_ACL_IS_READ_EVERYONE","features":[582]},{"name":"PRTH_S_MAX_DOWNLOAD","features":[582]},{"name":"PRTH_S_MAX_GROWTH","features":[582]},{"name":"PRTH_S_NOT_ALL_PARTS","features":[582]},{"name":"PRTH_S_NOT_MODIFIED","features":[582]},{"name":"PRTH_S_TRY_IMPERSONATING","features":[582]},{"name":"PRTH_S_USE_ROSEBUD","features":[582]},{"name":"PSGUID_CHARACTERIZATION","features":[582]},{"name":"PSGUID_QUERY_METADATA","features":[582]},{"name":"PSGUID_STORAGE","features":[582]},{"name":"PWPROP_OSPVALUE","features":[582]},{"name":"QPMO_APPEND_LCID_TO_LOCALIZED_PATH","features":[582]},{"name":"QPMO_LOCALIZED_SCHEMA_BINARY_PATH","features":[582]},{"name":"QPMO_LOCALIZER_SUPPORT","features":[582]},{"name":"QPMO_PRELOCALIZED_SCHEMA_BINARY_PATH","features":[582]},{"name":"QPMO_SCHEMA_BINARY_NAME","features":[582]},{"name":"QPMO_UNLOCALIZED_SCHEMA_BINARY_PATH","features":[582]},{"name":"QRY_E_COLUMNNOTSEARCHABLE","features":[582]},{"name":"QRY_E_COLUMNNOTSORTABLE","features":[582]},{"name":"QRY_E_ENGINEFAILED","features":[582]},{"name":"QRY_E_INFIXWILDCARD","features":[582]},{"name":"QRY_E_INVALIDCATALOG","features":[582]},{"name":"QRY_E_INVALIDCOLUMN","features":[582]},{"name":"QRY_E_INVALIDINTERVAL","features":[582]},{"name":"QRY_E_INVALIDPATH","features":[582]},{"name":"QRY_E_INVALIDSCOPES","features":[582]},{"name":"QRY_E_LMNOTINITIALIZED","features":[582]},{"name":"QRY_E_NOCOLUMNS","features":[582]},{"name":"QRY_E_NODATASOURCES","features":[582]},{"name":"QRY_E_NOLOGMANAGER","features":[582]},{"name":"QRY_E_NULLQUERY","features":[582]},{"name":"QRY_E_PREFIXWILDCARD","features":[582]},{"name":"QRY_E_QUERYCORRUPT","features":[582]},{"name":"QRY_E_QUERYSYNTAX","features":[582]},{"name":"QRY_E_SCOPECARDINALIDY","features":[582]},{"name":"QRY_E_SEARCHTOOBIG","features":[582]},{"name":"QRY_E_STARTHITTOBIG","features":[582]},{"name":"QRY_E_TIMEOUT","features":[582]},{"name":"QRY_E_TOOMANYCOLUMNS","features":[582]},{"name":"QRY_E_TOOMANYDATABASES","features":[582]},{"name":"QRY_E_TOOMANYQUERYTERMS","features":[582]},{"name":"QRY_E_TYPEMISMATCH","features":[582]},{"name":"QRY_E_UNEXPECTED","features":[582]},{"name":"QRY_E_UNHANDLEDTYPE","features":[582]},{"name":"QRY_E_WILDCARDPREFIXLENGTH","features":[582]},{"name":"QRY_S_INEXACTRESULTS","features":[582]},{"name":"QRY_S_NOROWSFOUND","features":[582]},{"name":"QRY_S_TERMIGNORED","features":[582]},{"name":"QUERY_E_AGGREGATE_NOT_SUPPORTED","features":[582]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELDOC","features":[582]},{"name":"QUERY_E_ALLNOISE_AND_NO_RELPROP","features":[582]},{"name":"QUERY_E_DUPLICATE_RANGE_NAME","features":[582]},{"name":"QUERY_E_INCORRECT_VERSION","features":[582]},{"name":"QUERY_E_INVALIDCOALESCE","features":[582]},{"name":"QUERY_E_INVALIDSCOPE_COALESCE","features":[582]},{"name":"QUERY_E_INVALIDSORT_COALESCE","features":[582]},{"name":"QUERY_E_INVALID_DOCUMENT_IDENTIFIER","features":[582]},{"name":"QUERY_E_NO_RELDOC","features":[582]},{"name":"QUERY_E_NO_RELPROP","features":[582]},{"name":"QUERY_E_RELDOC_SYNTAX_NOT_SUPPORTED","features":[582]},{"name":"QUERY_E_REPEATED_RELDOC","features":[582]},{"name":"QUERY_E_TOP_LEVEL_IN_GROUP","features":[582]},{"name":"QUERY_E_UPGRADEINPROGRESS","features":[582]},{"name":"QUERY_PARSER_MANAGER_OPTION","features":[582]},{"name":"QUERY_SORTDEFAULT","features":[582]},{"name":"QUERY_SORTXASCEND","features":[582]},{"name":"QUERY_SORTXDESCEND","features":[582]},{"name":"QUERY_VALIDBITS","features":[582]},{"name":"QueryParser","features":[582]},{"name":"QueryParserManager","features":[582]},{"name":"RANGECATEGORIZE","features":[582]},{"name":"RESTRICTION","features":[510,429,582]},{"name":"REXSPH_E_DUPLICATE_PROPERTY","features":[582]},{"name":"REXSPH_E_INVALID_CALL","features":[582]},{"name":"REXSPH_E_MULTIPLE_REDIRECT","features":[582]},{"name":"REXSPH_E_NO_PROPERTY_ON_ROW","features":[582]},{"name":"REXSPH_E_REDIRECT_ON_SECURITY_UPDATE","features":[582]},{"name":"REXSPH_E_TYPE_MISMATCH_ON_READ","features":[582]},{"name":"REXSPH_E_UNEXPECTED_DATA_STATUS","features":[582]},{"name":"REXSPH_E_UNEXPECTED_FILTER_STATE","features":[582]},{"name":"REXSPH_E_UNKNOWN_DATA_TYPE","features":[582]},{"name":"REXSPH_S_REDIRECTED","features":[582]},{"name":"RMTPACK","features":[356,582]},{"name":"RMTPACK","features":[356,582]},{"name":"ROWSETEVENT_ITEMSTATE","features":[582]},{"name":"ROWSETEVENT_ITEMSTATE_INROWSET","features":[582]},{"name":"ROWSETEVENT_ITEMSTATE_NOTINROWSET","features":[582]},{"name":"ROWSETEVENT_ITEMSTATE_UNKNOWN","features":[582]},{"name":"ROWSETEVENT_TYPE","features":[582]},{"name":"ROWSETEVENT_TYPE_DATAEXPIRED","features":[582]},{"name":"ROWSETEVENT_TYPE_FOREGROUNDLOST","features":[582]},{"name":"ROWSETEVENT_TYPE_SCOPESTATISTICS","features":[582]},{"name":"RS_COMPLETED","features":[582]},{"name":"RS_MAYBOTHERUSER","features":[582]},{"name":"RS_READY","features":[582]},{"name":"RS_SUSPENDED","features":[582]},{"name":"RS_SUSPENDONIDLE","features":[582]},{"name":"RS_UPDATING","features":[582]},{"name":"RTAnd","features":[582]},{"name":"RTContent","features":[582]},{"name":"RTNatLanguage","features":[582]},{"name":"RTNone","features":[582]},{"name":"RTNot","features":[582]},{"name":"RTOr","features":[582]},{"name":"RTProperty","features":[582]},{"name":"RTProximity","features":[582]},{"name":"RTVector","features":[582]},{"name":"RootBinder","features":[582]},{"name":"SCHEMA_E_ADDSTOPWORDS","features":[582]},{"name":"SCHEMA_E_BADATTRIBUTE","features":[582]},{"name":"SCHEMA_E_BADCOLUMNNAME","features":[582]},{"name":"SCHEMA_E_BADFILENAME","features":[582]},{"name":"SCHEMA_E_BADPROPPID","features":[582]},{"name":"SCHEMA_E_BADPROPSPEC","features":[582]},{"name":"SCHEMA_E_CANNOTCREATEFILE","features":[582]},{"name":"SCHEMA_E_CANNOTCREATENOISEWORDFILE","features":[582]},{"name":"SCHEMA_E_CANNOTWRITEFILE","features":[582]},{"name":"SCHEMA_E_DUPLICATENOISE","features":[582]},{"name":"SCHEMA_E_EMPTYFILE","features":[582]},{"name":"SCHEMA_E_FILECHANGED","features":[582]},{"name":"SCHEMA_E_FILENOTFOUND","features":[582]},{"name":"SCHEMA_E_INVALIDDATATYPE","features":[582]},{"name":"SCHEMA_E_INVALIDFILETYPE","features":[582]},{"name":"SCHEMA_E_INVALIDVALUE","features":[582]},{"name":"SCHEMA_E_LOAD_SPECIAL","features":[582]},{"name":"SCHEMA_E_NAMEEXISTS","features":[582]},{"name":"SCHEMA_E_NESTEDTAG","features":[582]},{"name":"SCHEMA_E_NOMORECOLUMNS","features":[582]},{"name":"SCHEMA_E_PROPEXISTS","features":[582]},{"name":"SCHEMA_E_UNEXPECTEDTAG","features":[582]},{"name":"SCHEMA_E_VERSIONMISMATCH","features":[582]},{"name":"SCRIPTPI_E_ALREADY_COMPLETED","features":[582]},{"name":"SCRIPTPI_E_CANNOT_ALTER_CHUNK","features":[582]},{"name":"SCRIPTPI_E_CHUNK_NOT_TEXT","features":[582]},{"name":"SCRIPTPI_E_CHUNK_NOT_VALUE","features":[582]},{"name":"SCRIPTPI_E_PID_NOT_NAME","features":[582]},{"name":"SCRIPTPI_E_PID_NOT_NUMERIC","features":[582]},{"name":"SEARCH_ADVANCED_QUERY_SYNTAX","features":[582]},{"name":"SEARCH_CHANGE_ADD","features":[582]},{"name":"SEARCH_CHANGE_DELETE","features":[582]},{"name":"SEARCH_CHANGE_MODIFY","features":[582]},{"name":"SEARCH_CHANGE_MOVE_RENAME","features":[582]},{"name":"SEARCH_CHANGE_SEMANTICS_DIRECTORY","features":[582]},{"name":"SEARCH_CHANGE_SEMANTICS_SHALLOW","features":[582]},{"name":"SEARCH_CHANGE_SEMANTICS_UPDATE_SECURITY","features":[582]},{"name":"SEARCH_COLUMN_PROPERTIES","features":[582]},{"name":"SEARCH_HIGH_PRIORITY","features":[582]},{"name":"SEARCH_INDEXING_PHASE","features":[582]},{"name":"SEARCH_INDEXING_PHASE_GATHERER","features":[582]},{"name":"SEARCH_INDEXING_PHASE_PERSISTED","features":[582]},{"name":"SEARCH_INDEXING_PHASE_QUERYABLE","features":[582]},{"name":"SEARCH_ITEM_CHANGE","features":[356,582]},{"name":"SEARCH_ITEM_INDEXING_STATUS","features":[582]},{"name":"SEARCH_ITEM_PERSISTENT_CHANGE","features":[582]},{"name":"SEARCH_KIND_OF_CHANGE","features":[582]},{"name":"SEARCH_NATURAL_QUERY_SYNTAX","features":[582]},{"name":"SEARCH_NORMAL_PRIORITY","features":[582]},{"name":"SEARCH_NOTIFICATION_PRIORITY","features":[582]},{"name":"SEARCH_NO_QUERY_SYNTAX","features":[582]},{"name":"SEARCH_QUERY_SYNTAX","features":[582]},{"name":"SEARCH_TERM_EXPANSION","features":[582]},{"name":"SEARCH_TERM_NO_EXPANSION","features":[582]},{"name":"SEARCH_TERM_PREFIX_ALL","features":[582]},{"name":"SEARCH_TERM_STEM_ALL","features":[582]},{"name":"SEC_E_ACCESSDENIED","features":[582]},{"name":"SEC_E_BADTRUSTEEID","features":[582]},{"name":"SEC_E_INITFAILED","features":[582]},{"name":"SEC_E_INVALIDACCESSENTRY","features":[582]},{"name":"SEC_E_INVALIDACCESSENTRYLIST","features":[582]},{"name":"SEC_E_INVALIDCONTEXT","features":[582]},{"name":"SEC_E_INVALIDOBJECT","features":[582]},{"name":"SEC_E_INVALIDOWNER","features":[582]},{"name":"SEC_E_NOMEMBERSHIPSUPPORT","features":[582]},{"name":"SEC_E_NOOWNER","features":[582]},{"name":"SEC_E_NOTINITIALIZED","features":[582]},{"name":"SEC_E_NOTRUSTEEID","features":[582]},{"name":"SEC_E_PERMISSIONDENIED","features":[582]},{"name":"SEC_OBJECT","features":[510,582]},{"name":"SEC_OBJECT","features":[510,582]},{"name":"SEC_OBJECT_ELEMENT","features":[510,582]},{"name":"SEC_OBJECT_ELEMENT","features":[510,582]},{"name":"SI_TEMPORARY","features":[582]},{"name":"SORTKEY","features":[510,429,582]},{"name":"SORTSET","features":[510,429,582]},{"name":"SPS_WS_ERROR","features":[582]},{"name":"SQLAOPANY","features":[582]},{"name":"SQLAOPAVG","features":[582]},{"name":"SQLAOPCNT","features":[582]},{"name":"SQLAOPMAX","features":[582]},{"name":"SQLAOPMIN","features":[582]},{"name":"SQLAOPNOOP","features":[582]},{"name":"SQLAOPSTDEV","features":[582]},{"name":"SQLAOPSTDEVP","features":[582]},{"name":"SQLAOPSUM","features":[582]},{"name":"SQLAOPVAR","features":[582]},{"name":"SQLAOPVARP","features":[582]},{"name":"SQLAllocConnect","features":[582]},{"name":"SQLAllocEnv","features":[582]},{"name":"SQLAllocHandle","features":[582]},{"name":"SQLAllocHandleStd","features":[582]},{"name":"SQLAllocStmt","features":[582]},{"name":"SQLBIGBINARY","features":[582]},{"name":"SQLBIGCHAR","features":[582]},{"name":"SQLBIGVARBINARY","features":[582]},{"name":"SQLBIGVARCHAR","features":[582]},{"name":"SQLBINARY","features":[582]},{"name":"SQLBIT","features":[582]},{"name":"SQLBITN","features":[582]},{"name":"SQLBindCol","features":[582]},{"name":"SQLBindCol","features":[582]},{"name":"SQLBindParam","features":[582]},{"name":"SQLBindParam","features":[582]},{"name":"SQLBindParameter","features":[582]},{"name":"SQLBindParameter","features":[582]},{"name":"SQLBrowseConnect","features":[582]},{"name":"SQLBrowseConnectA","features":[582]},{"name":"SQLBrowseConnectW","features":[582]},{"name":"SQLBulkOperations","features":[582]},{"name":"SQLCHARACTER","features":[582]},{"name":"SQLCancel","features":[582]},{"name":"SQLCancelHandle","features":[582]},{"name":"SQLCloseCursor","features":[582]},{"name":"SQLCloseEnumServers","features":[305,582]},{"name":"SQLColAttribute","features":[582]},{"name":"SQLColAttribute","features":[582]},{"name":"SQLColAttributeA","features":[582]},{"name":"SQLColAttributeA","features":[582]},{"name":"SQLColAttributeW","features":[582]},{"name":"SQLColAttributeW","features":[582]},{"name":"SQLColAttributes","features":[582]},{"name":"SQLColAttributes","features":[582]},{"name":"SQLColAttributesA","features":[582]},{"name":"SQLColAttributesA","features":[582]},{"name":"SQLColAttributesW","features":[582]},{"name":"SQLColAttributesW","features":[582]},{"name":"SQLColumnPrivileges","features":[582]},{"name":"SQLColumnPrivilegesA","features":[582]},{"name":"SQLColumnPrivilegesW","features":[582]},{"name":"SQLColumns","features":[582]},{"name":"SQLColumnsA","features":[582]},{"name":"SQLColumnsW","features":[582]},{"name":"SQLCompleteAsync","features":[582]},{"name":"SQLConnect","features":[582]},{"name":"SQLConnectA","features":[582]},{"name":"SQLConnectW","features":[582]},{"name":"SQLCopyDesc","features":[582]},{"name":"SQLDATETIM4","features":[582]},{"name":"SQLDATETIME","features":[582]},{"name":"SQLDATETIMN","features":[582]},{"name":"SQLDECIMAL","features":[582]},{"name":"SQLDECIMALN","features":[582]},{"name":"SQLDataSources","features":[582]},{"name":"SQLDataSourcesA","features":[582]},{"name":"SQLDataSourcesW","features":[582]},{"name":"SQLDescribeCol","features":[582]},{"name":"SQLDescribeCol","features":[582]},{"name":"SQLDescribeColA","features":[582]},{"name":"SQLDescribeColA","features":[582]},{"name":"SQLDescribeColW","features":[582]},{"name":"SQLDescribeColW","features":[582]},{"name":"SQLDescribeParam","features":[582]},{"name":"SQLDescribeParam","features":[582]},{"name":"SQLDisconnect","features":[582]},{"name":"SQLDriverConnect","features":[582]},{"name":"SQLDriverConnectA","features":[582]},{"name":"SQLDriverConnectW","features":[582]},{"name":"SQLDrivers","features":[582]},{"name":"SQLDriversA","features":[582]},{"name":"SQLDriversW","features":[582]},{"name":"SQLEndTran","features":[582]},{"name":"SQLError","features":[582]},{"name":"SQLErrorA","features":[582]},{"name":"SQLErrorW","features":[582]},{"name":"SQLExecDirect","features":[582]},{"name":"SQLExecDirectA","features":[582]},{"name":"SQLExecDirectW","features":[582]},{"name":"SQLExecute","features":[582]},{"name":"SQLExtendedFetch","features":[582]},{"name":"SQLExtendedFetch","features":[582]},{"name":"SQLFLT4","features":[582]},{"name":"SQLFLT8","features":[582]},{"name":"SQLFLTN","features":[582]},{"name":"SQLFetch","features":[582]},{"name":"SQLFetchScroll","features":[582]},{"name":"SQLFetchScroll","features":[582]},{"name":"SQLForeignKeys","features":[582]},{"name":"SQLForeignKeysA","features":[582]},{"name":"SQLForeignKeysW","features":[582]},{"name":"SQLFreeConnect","features":[582]},{"name":"SQLFreeEnv","features":[582]},{"name":"SQLFreeHandle","features":[582]},{"name":"SQLFreeStmt","features":[582]},{"name":"SQLGetConnectAttr","features":[582]},{"name":"SQLGetConnectAttrA","features":[582]},{"name":"SQLGetConnectAttrW","features":[582]},{"name":"SQLGetConnectOption","features":[582]},{"name":"SQLGetConnectOptionA","features":[582]},{"name":"SQLGetConnectOptionW","features":[582]},{"name":"SQLGetCursorName","features":[582]},{"name":"SQLGetCursorNameA","features":[582]},{"name":"SQLGetCursorNameW","features":[582]},{"name":"SQLGetData","features":[582]},{"name":"SQLGetData","features":[582]},{"name":"SQLGetDescField","features":[582]},{"name":"SQLGetDescFieldA","features":[582]},{"name":"SQLGetDescFieldW","features":[582]},{"name":"SQLGetDescRec","features":[582]},{"name":"SQLGetDescRec","features":[582]},{"name":"SQLGetDescRecA","features":[582]},{"name":"SQLGetDescRecA","features":[582]},{"name":"SQLGetDescRecW","features":[582]},{"name":"SQLGetDescRecW","features":[582]},{"name":"SQLGetDiagField","features":[582]},{"name":"SQLGetDiagFieldA","features":[582]},{"name":"SQLGetDiagFieldW","features":[582]},{"name":"SQLGetDiagRec","features":[582]},{"name":"SQLGetDiagRecA","features":[582]},{"name":"SQLGetDiagRecW","features":[582]},{"name":"SQLGetEnvAttr","features":[582]},{"name":"SQLGetFunctions","features":[582]},{"name":"SQLGetInfo","features":[582]},{"name":"SQLGetInfoA","features":[582]},{"name":"SQLGetInfoW","features":[582]},{"name":"SQLGetNextEnumeration","features":[305,582]},{"name":"SQLGetStmtAttr","features":[582]},{"name":"SQLGetStmtAttrA","features":[582]},{"name":"SQLGetStmtAttrW","features":[582]},{"name":"SQLGetStmtOption","features":[582]},{"name":"SQLGetTypeInfo","features":[582]},{"name":"SQLGetTypeInfoA","features":[582]},{"name":"SQLGetTypeInfoW","features":[582]},{"name":"SQLIMAGE","features":[582]},{"name":"SQLINT1","features":[582]},{"name":"SQLINT2","features":[582]},{"name":"SQLINT4","features":[582]},{"name":"SQLINT8","features":[582]},{"name":"SQLINTERVAL","features":[582]},{"name":"SQLINTN","features":[582]},{"name":"SQLInitEnumServers","features":[305,582]},{"name":"SQLLinkedCatalogsA","features":[582]},{"name":"SQLLinkedCatalogsW","features":[582]},{"name":"SQLLinkedServers","features":[582]},{"name":"SQLMONEY","features":[582]},{"name":"SQLMONEY4","features":[582]},{"name":"SQLMONEYN","features":[582]},{"name":"SQLMoreResults","features":[582]},{"name":"SQLNCHAR","features":[582]},{"name":"SQLNTEXT","features":[582]},{"name":"SQLNUMERIC","features":[582]},{"name":"SQLNUMERICN","features":[582]},{"name":"SQLNVARCHAR","features":[582]},{"name":"SQLNativeSql","features":[582]},{"name":"SQLNativeSqlA","features":[582]},{"name":"SQLNativeSqlW","features":[582]},{"name":"SQLNumParams","features":[582]},{"name":"SQLNumResultCols","features":[582]},{"name":"SQLPERF","features":[582]},{"name":"SQLParamData","features":[582]},{"name":"SQLParamOptions","features":[582]},{"name":"SQLParamOptions","features":[582]},{"name":"SQLPrepare","features":[582]},{"name":"SQLPrepareA","features":[582]},{"name":"SQLPrepareW","features":[582]},{"name":"SQLPrimaryKeys","features":[582]},{"name":"SQLPrimaryKeysA","features":[582]},{"name":"SQLPrimaryKeysW","features":[582]},{"name":"SQLProcedureColumns","features":[582]},{"name":"SQLProcedureColumnsA","features":[582]},{"name":"SQLProcedureColumnsW","features":[582]},{"name":"SQLProcedures","features":[582]},{"name":"SQLProceduresA","features":[582]},{"name":"SQLProceduresW","features":[582]},{"name":"SQLPutData","features":[582]},{"name":"SQLPutData","features":[582]},{"name":"SQLRowCount","features":[582]},{"name":"SQLRowCount","features":[582]},{"name":"SQLSetConnectAttr","features":[582]},{"name":"SQLSetConnectAttrA","features":[582]},{"name":"SQLSetConnectAttrW","features":[582]},{"name":"SQLSetConnectOption","features":[582]},{"name":"SQLSetConnectOption","features":[582]},{"name":"SQLSetConnectOptionA","features":[582]},{"name":"SQLSetConnectOptionA","features":[582]},{"name":"SQLSetConnectOptionW","features":[582]},{"name":"SQLSetConnectOptionW","features":[582]},{"name":"SQLSetCursorName","features":[582]},{"name":"SQLSetCursorNameA","features":[582]},{"name":"SQLSetCursorNameW","features":[582]},{"name":"SQLSetDescField","features":[582]},{"name":"SQLSetDescFieldW","features":[582]},{"name":"SQLSetDescRec","features":[582]},{"name":"SQLSetDescRec","features":[582]},{"name":"SQLSetEnvAttr","features":[582]},{"name":"SQLSetParam","features":[582]},{"name":"SQLSetParam","features":[582]},{"name":"SQLSetPos","features":[582]},{"name":"SQLSetPos","features":[582]},{"name":"SQLSetScrollOptions","features":[582]},{"name":"SQLSetScrollOptions","features":[582]},{"name":"SQLSetStmtAttr","features":[582]},{"name":"SQLSetStmtAttrW","features":[582]},{"name":"SQLSetStmtOption","features":[582]},{"name":"SQLSetStmtOption","features":[582]},{"name":"SQLSpecialColumns","features":[582]},{"name":"SQLSpecialColumnsA","features":[582]},{"name":"SQLSpecialColumnsW","features":[582]},{"name":"SQLStatistics","features":[582]},{"name":"SQLStatisticsA","features":[582]},{"name":"SQLStatisticsW","features":[582]},{"name":"SQLTEXT","features":[582]},{"name":"SQLTablePrivileges","features":[582]},{"name":"SQLTablePrivilegesA","features":[582]},{"name":"SQLTablePrivilegesW","features":[582]},{"name":"SQLTables","features":[582]},{"name":"SQLTablesA","features":[582]},{"name":"SQLTablesW","features":[582]},{"name":"SQLTransact","features":[582]},{"name":"SQLUNIQUEID","features":[582]},{"name":"SQLVARBINARY","features":[582]},{"name":"SQLVARCHAR","features":[582]},{"name":"SQLVARENUM","features":[582]},{"name":"SQLVARIANT","features":[582]},{"name":"SQL_AA_FALSE","features":[582]},{"name":"SQL_AA_TRUE","features":[582]},{"name":"SQL_ACCESSIBLE_PROCEDURES","features":[582]},{"name":"SQL_ACCESSIBLE_TABLES","features":[582]},{"name":"SQL_ACCESS_MODE","features":[582]},{"name":"SQL_ACTIVE_CONNECTIONS","features":[582]},{"name":"SQL_ACTIVE_ENVIRONMENTS","features":[582]},{"name":"SQL_ACTIVE_STATEMENTS","features":[582]},{"name":"SQL_ADD","features":[582]},{"name":"SQL_AD_ADD_CONSTRAINT_DEFERRABLE","features":[582]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED","features":[582]},{"name":"SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE","features":[582]},{"name":"SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE","features":[582]},{"name":"SQL_AD_ADD_DOMAIN_CONSTRAINT","features":[582]},{"name":"SQL_AD_ADD_DOMAIN_DEFAULT","features":[582]},{"name":"SQL_AD_CONSTRAINT_NAME_DEFINITION","features":[582]},{"name":"SQL_AD_DEFAULT","features":[582]},{"name":"SQL_AD_DROP_DOMAIN_CONSTRAINT","features":[582]},{"name":"SQL_AD_DROP_DOMAIN_DEFAULT","features":[582]},{"name":"SQL_AD_OFF","features":[582]},{"name":"SQL_AD_ON","features":[582]},{"name":"SQL_AF_ALL","features":[582]},{"name":"SQL_AF_AVG","features":[582]},{"name":"SQL_AF_COUNT","features":[582]},{"name":"SQL_AF_DISTINCT","features":[582]},{"name":"SQL_AF_MAX","features":[582]},{"name":"SQL_AF_MIN","features":[582]},{"name":"SQL_AF_SUM","features":[582]},{"name":"SQL_AGGREGATE_FUNCTIONS","features":[582]},{"name":"SQL_ALL_CATALOGS","features":[582]},{"name":"SQL_ALL_EXCEPT_LIKE","features":[582]},{"name":"SQL_ALL_SCHEMAS","features":[582]},{"name":"SQL_ALL_TABLE_TYPES","features":[582]},{"name":"SQL_ALL_TYPES","features":[582]},{"name":"SQL_ALTER_DOMAIN","features":[582]},{"name":"SQL_ALTER_TABLE","features":[582]},{"name":"SQL_AM_CONNECTION","features":[582]},{"name":"SQL_AM_NONE","features":[582]},{"name":"SQL_AM_STATEMENT","features":[582]},{"name":"SQL_AO_DEFAULT","features":[582]},{"name":"SQL_AO_OFF","features":[582]},{"name":"SQL_AO_ON","features":[582]},{"name":"SQL_APD_TYPE","features":[582]},{"name":"SQL_API_ALL_FUNCTIONS","features":[582]},{"name":"SQL_API_LOADBYORDINAL","features":[582]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS","features":[582]},{"name":"SQL_API_ODBC3_ALL_FUNCTIONS_SIZE","features":[582]},{"name":"SQL_API_SQLALLOCCONNECT","features":[582]},{"name":"SQL_API_SQLALLOCENV","features":[582]},{"name":"SQL_API_SQLALLOCHANDLE","features":[582]},{"name":"SQL_API_SQLALLOCHANDLESTD","features":[582]},{"name":"SQL_API_SQLALLOCSTMT","features":[582]},{"name":"SQL_API_SQLBINDCOL","features":[582]},{"name":"SQL_API_SQLBINDPARAM","features":[582]},{"name":"SQL_API_SQLBINDPARAMETER","features":[582]},{"name":"SQL_API_SQLBROWSECONNECT","features":[582]},{"name":"SQL_API_SQLBULKOPERATIONS","features":[582]},{"name":"SQL_API_SQLCANCEL","features":[582]},{"name":"SQL_API_SQLCANCELHANDLE","features":[582]},{"name":"SQL_API_SQLCLOSECURSOR","features":[582]},{"name":"SQL_API_SQLCOLATTRIBUTE","features":[582]},{"name":"SQL_API_SQLCOLATTRIBUTES","features":[582]},{"name":"SQL_API_SQLCOLUMNPRIVILEGES","features":[582]},{"name":"SQL_API_SQLCOLUMNS","features":[582]},{"name":"SQL_API_SQLCOMPLETEASYNC","features":[582]},{"name":"SQL_API_SQLCONNECT","features":[582]},{"name":"SQL_API_SQLCOPYDESC","features":[582]},{"name":"SQL_API_SQLDATASOURCES","features":[582]},{"name":"SQL_API_SQLDESCRIBECOL","features":[582]},{"name":"SQL_API_SQLDESCRIBEPARAM","features":[582]},{"name":"SQL_API_SQLDISCONNECT","features":[582]},{"name":"SQL_API_SQLDRIVERCONNECT","features":[582]},{"name":"SQL_API_SQLDRIVERS","features":[582]},{"name":"SQL_API_SQLENDTRAN","features":[582]},{"name":"SQL_API_SQLERROR","features":[582]},{"name":"SQL_API_SQLEXECDIRECT","features":[582]},{"name":"SQL_API_SQLEXECUTE","features":[582]},{"name":"SQL_API_SQLEXTENDEDFETCH","features":[582]},{"name":"SQL_API_SQLFETCH","features":[582]},{"name":"SQL_API_SQLFETCHSCROLL","features":[582]},{"name":"SQL_API_SQLFOREIGNKEYS","features":[582]},{"name":"SQL_API_SQLFREECONNECT","features":[582]},{"name":"SQL_API_SQLFREEENV","features":[582]},{"name":"SQL_API_SQLFREEHANDLE","features":[582]},{"name":"SQL_API_SQLFREESTMT","features":[582]},{"name":"SQL_API_SQLGETCONNECTATTR","features":[582]},{"name":"SQL_API_SQLGETCONNECTOPTION","features":[582]},{"name":"SQL_API_SQLGETCURSORNAME","features":[582]},{"name":"SQL_API_SQLGETDATA","features":[582]},{"name":"SQL_API_SQLGETDESCFIELD","features":[582]},{"name":"SQL_API_SQLGETDESCREC","features":[582]},{"name":"SQL_API_SQLGETDIAGFIELD","features":[582]},{"name":"SQL_API_SQLGETDIAGREC","features":[582]},{"name":"SQL_API_SQLGETENVATTR","features":[582]},{"name":"SQL_API_SQLGETFUNCTIONS","features":[582]},{"name":"SQL_API_SQLGETINFO","features":[582]},{"name":"SQL_API_SQLGETSTMTATTR","features":[582]},{"name":"SQL_API_SQLGETSTMTOPTION","features":[582]},{"name":"SQL_API_SQLGETTYPEINFO","features":[582]},{"name":"SQL_API_SQLMORERESULTS","features":[582]},{"name":"SQL_API_SQLNATIVESQL","features":[582]},{"name":"SQL_API_SQLNUMPARAMS","features":[582]},{"name":"SQL_API_SQLNUMRESULTCOLS","features":[582]},{"name":"SQL_API_SQLPARAMDATA","features":[582]},{"name":"SQL_API_SQLPARAMOPTIONS","features":[582]},{"name":"SQL_API_SQLPREPARE","features":[582]},{"name":"SQL_API_SQLPRIMARYKEYS","features":[582]},{"name":"SQL_API_SQLPRIVATEDRIVERS","features":[582]},{"name":"SQL_API_SQLPROCEDURECOLUMNS","features":[582]},{"name":"SQL_API_SQLPROCEDURES","features":[582]},{"name":"SQL_API_SQLPUTDATA","features":[582]},{"name":"SQL_API_SQLROWCOUNT","features":[582]},{"name":"SQL_API_SQLSETCONNECTATTR","features":[582]},{"name":"SQL_API_SQLSETCONNECTOPTION","features":[582]},{"name":"SQL_API_SQLSETCURSORNAME","features":[582]},{"name":"SQL_API_SQLSETDESCFIELD","features":[582]},{"name":"SQL_API_SQLSETDESCREC","features":[582]},{"name":"SQL_API_SQLSETENVATTR","features":[582]},{"name":"SQL_API_SQLSETPARAM","features":[582]},{"name":"SQL_API_SQLSETPOS","features":[582]},{"name":"SQL_API_SQLSETSCROLLOPTIONS","features":[582]},{"name":"SQL_API_SQLSETSTMTATTR","features":[582]},{"name":"SQL_API_SQLSETSTMTOPTION","features":[582]},{"name":"SQL_API_SQLSPECIALCOLUMNS","features":[582]},{"name":"SQL_API_SQLSTATISTICS","features":[582]},{"name":"SQL_API_SQLTABLEPRIVILEGES","features":[582]},{"name":"SQL_API_SQLTABLES","features":[582]},{"name":"SQL_API_SQLTRANSACT","features":[582]},{"name":"SQL_ARD_TYPE","features":[582]},{"name":"SQL_ASYNC_DBC_CAPABLE","features":[582]},{"name":"SQL_ASYNC_DBC_ENABLE_DEFAULT","features":[582]},{"name":"SQL_ASYNC_DBC_ENABLE_OFF","features":[582]},{"name":"SQL_ASYNC_DBC_ENABLE_ON","features":[582]},{"name":"SQL_ASYNC_DBC_FUNCTIONS","features":[582]},{"name":"SQL_ASYNC_DBC_NOT_CAPABLE","features":[582]},{"name":"SQL_ASYNC_ENABLE","features":[582]},{"name":"SQL_ASYNC_ENABLE_DEFAULT","features":[582]},{"name":"SQL_ASYNC_ENABLE_OFF","features":[582]},{"name":"SQL_ASYNC_ENABLE_ON","features":[582]},{"name":"SQL_ASYNC_MODE","features":[582]},{"name":"SQL_ASYNC_NOTIFICATION","features":[582]},{"name":"SQL_ASYNC_NOTIFICATION_CALLBACK","features":[305,582]},{"name":"SQL_ASYNC_NOTIFICATION_CAPABLE","features":[582]},{"name":"SQL_ASYNC_NOTIFICATION_NOT_CAPABLE","features":[582]},{"name":"SQL_ATTR_ACCESS_MODE","features":[582]},{"name":"SQL_ATTR_ANSI_APP","features":[582]},{"name":"SQL_ATTR_APPLICATION_KEY","features":[582]},{"name":"SQL_ATTR_APP_PARAM_DESC","features":[582]},{"name":"SQL_ATTR_APP_ROW_DESC","features":[582]},{"name":"SQL_ATTR_ASYNC_DBC_EVENT","features":[582]},{"name":"SQL_ATTR_ASYNC_DBC_FUNCTIONS_ENABLE","features":[582]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CALLBACK","features":[582]},{"name":"SQL_ATTR_ASYNC_DBC_NOTIFICATION_CONTEXT","features":[582]},{"name":"SQL_ATTR_ASYNC_ENABLE","features":[582]},{"name":"SQL_ATTR_ASYNC_STMT_EVENT","features":[582]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CALLBACK","features":[582]},{"name":"SQL_ATTR_ASYNC_STMT_NOTIFICATION_CONTEXT","features":[582]},{"name":"SQL_ATTR_AUTOCOMMIT","features":[582]},{"name":"SQL_ATTR_AUTO_IPD","features":[582]},{"name":"SQL_ATTR_CONCURRENCY","features":[582]},{"name":"SQL_ATTR_CONNECTION_DEAD","features":[582]},{"name":"SQL_ATTR_CONNECTION_POOLING","features":[582]},{"name":"SQL_ATTR_CONNECTION_TIMEOUT","features":[582]},{"name":"SQL_ATTR_CP_MATCH","features":[582]},{"name":"SQL_ATTR_CURRENT_CATALOG","features":[582]},{"name":"SQL_ATTR_CURSOR_SCROLLABLE","features":[582]},{"name":"SQL_ATTR_CURSOR_SENSITIVITY","features":[582]},{"name":"SQL_ATTR_CURSOR_TYPE","features":[582]},{"name":"SQL_ATTR_DBC_INFO_TOKEN","features":[582]},{"name":"SQL_ATTR_DISCONNECT_BEHAVIOR","features":[582]},{"name":"SQL_ATTR_ENABLE_AUTO_IPD","features":[582]},{"name":"SQL_ATTR_ENLIST_IN_DTC","features":[582]},{"name":"SQL_ATTR_ENLIST_IN_XA","features":[582]},{"name":"SQL_ATTR_FETCH_BOOKMARK_PTR","features":[582]},{"name":"SQL_ATTR_IMP_PARAM_DESC","features":[582]},{"name":"SQL_ATTR_IMP_ROW_DESC","features":[582]},{"name":"SQL_ATTR_KEYSET_SIZE","features":[582]},{"name":"SQL_ATTR_LOGIN_TIMEOUT","features":[582]},{"name":"SQL_ATTR_MAX_LENGTH","features":[582]},{"name":"SQL_ATTR_MAX_ROWS","features":[582]},{"name":"SQL_ATTR_METADATA_ID","features":[582]},{"name":"SQL_ATTR_NOSCAN","features":[582]},{"name":"SQL_ATTR_ODBC_CURSORS","features":[582]},{"name":"SQL_ATTR_ODBC_VERSION","features":[582]},{"name":"SQL_ATTR_OUTPUT_NTS","features":[582]},{"name":"SQL_ATTR_PACKET_SIZE","features":[582]},{"name":"SQL_ATTR_PARAMSET_SIZE","features":[582]},{"name":"SQL_ATTR_PARAMS_PROCESSED_PTR","features":[582]},{"name":"SQL_ATTR_PARAM_BIND_OFFSET_PTR","features":[582]},{"name":"SQL_ATTR_PARAM_BIND_TYPE","features":[582]},{"name":"SQL_ATTR_PARAM_OPERATION_PTR","features":[582]},{"name":"SQL_ATTR_PARAM_STATUS_PTR","features":[582]},{"name":"SQL_ATTR_QUERY_TIMEOUT","features":[582]},{"name":"SQL_ATTR_QUIET_MODE","features":[582]},{"name":"SQL_ATTR_READONLY","features":[582]},{"name":"SQL_ATTR_READWRITE_UNKNOWN","features":[582]},{"name":"SQL_ATTR_RESET_CONNECTION","features":[582]},{"name":"SQL_ATTR_RETRIEVE_DATA","features":[582]},{"name":"SQL_ATTR_ROWS_FETCHED_PTR","features":[582]},{"name":"SQL_ATTR_ROW_ARRAY_SIZE","features":[582]},{"name":"SQL_ATTR_ROW_BIND_OFFSET_PTR","features":[582]},{"name":"SQL_ATTR_ROW_BIND_TYPE","features":[582]},{"name":"SQL_ATTR_ROW_NUMBER","features":[582]},{"name":"SQL_ATTR_ROW_OPERATION_PTR","features":[582]},{"name":"SQL_ATTR_ROW_STATUS_PTR","features":[582]},{"name":"SQL_ATTR_SIMULATE_CURSOR","features":[582]},{"name":"SQL_ATTR_TRACE","features":[582]},{"name":"SQL_ATTR_TRACEFILE","features":[582]},{"name":"SQL_ATTR_TRANSLATE_LIB","features":[582]},{"name":"SQL_ATTR_TRANSLATE_OPTION","features":[582]},{"name":"SQL_ATTR_TXN_ISOLATION","features":[582]},{"name":"SQL_ATTR_USE_BOOKMARKS","features":[582]},{"name":"SQL_ATTR_WRITE","features":[582]},{"name":"SQL_AT_ADD_COLUMN","features":[582]},{"name":"SQL_AT_ADD_COLUMN_COLLATION","features":[582]},{"name":"SQL_AT_ADD_COLUMN_DEFAULT","features":[582]},{"name":"SQL_AT_ADD_COLUMN_SINGLE","features":[582]},{"name":"SQL_AT_ADD_CONSTRAINT","features":[582]},{"name":"SQL_AT_ADD_TABLE_CONSTRAINT","features":[582]},{"name":"SQL_AT_CONSTRAINT_DEFERRABLE","features":[582]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_DEFERRED","features":[582]},{"name":"SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[582]},{"name":"SQL_AT_CONSTRAINT_NAME_DEFINITION","features":[582]},{"name":"SQL_AT_CONSTRAINT_NON_DEFERRABLE","features":[582]},{"name":"SQL_AT_DROP_COLUMN","features":[582]},{"name":"SQL_AT_DROP_COLUMN_CASCADE","features":[582]},{"name":"SQL_AT_DROP_COLUMN_DEFAULT","features":[582]},{"name":"SQL_AT_DROP_COLUMN_RESTRICT","features":[582]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE","features":[582]},{"name":"SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT","features":[582]},{"name":"SQL_AT_SET_COLUMN_DEFAULT","features":[582]},{"name":"SQL_AUTOCOMMIT","features":[582]},{"name":"SQL_AUTOCOMMIT_DEFAULT","features":[582]},{"name":"SQL_AUTOCOMMIT_OFF","features":[582]},{"name":"SQL_AUTOCOMMIT_ON","features":[582]},{"name":"SQL_BATCH_ROW_COUNT","features":[582]},{"name":"SQL_BATCH_SUPPORT","features":[582]},{"name":"SQL_BCP_DEFAULT","features":[582]},{"name":"SQL_BCP_OFF","features":[582]},{"name":"SQL_BCP_ON","features":[582]},{"name":"SQL_BEST_ROWID","features":[582]},{"name":"SQL_BIGINT","features":[582]},{"name":"SQL_BINARY","features":[582]},{"name":"SQL_BIND_BY_COLUMN","features":[582]},{"name":"SQL_BIND_TYPE","features":[582]},{"name":"SQL_BIND_TYPE_DEFAULT","features":[582]},{"name":"SQL_BIT","features":[582]},{"name":"SQL_BOOKMARK_PERSISTENCE","features":[582]},{"name":"SQL_BP_CLOSE","features":[582]},{"name":"SQL_BP_DELETE","features":[582]},{"name":"SQL_BP_DROP","features":[582]},{"name":"SQL_BP_OTHER_HSTMT","features":[582]},{"name":"SQL_BP_SCROLL","features":[582]},{"name":"SQL_BP_TRANSACTION","features":[582]},{"name":"SQL_BP_UPDATE","features":[582]},{"name":"SQL_BRC_EXPLICIT","features":[582]},{"name":"SQL_BRC_PROCEDURES","features":[582]},{"name":"SQL_BRC_ROLLED_UP","features":[582]},{"name":"SQL_BS_ROW_COUNT_EXPLICIT","features":[582]},{"name":"SQL_BS_ROW_COUNT_PROC","features":[582]},{"name":"SQL_BS_SELECT_EXPLICIT","features":[582]},{"name":"SQL_BS_SELECT_PROC","features":[582]},{"name":"SQL_CA1_ABSOLUTE","features":[582]},{"name":"SQL_CA1_BOOKMARK","features":[582]},{"name":"SQL_CA1_BULK_ADD","features":[582]},{"name":"SQL_CA1_BULK_DELETE_BY_BOOKMARK","features":[582]},{"name":"SQL_CA1_BULK_FETCH_BY_BOOKMARK","features":[582]},{"name":"SQL_CA1_BULK_UPDATE_BY_BOOKMARK","features":[582]},{"name":"SQL_CA1_LOCK_EXCLUSIVE","features":[582]},{"name":"SQL_CA1_LOCK_NO_CHANGE","features":[582]},{"name":"SQL_CA1_LOCK_UNLOCK","features":[582]},{"name":"SQL_CA1_NEXT","features":[582]},{"name":"SQL_CA1_POSITIONED_DELETE","features":[582]},{"name":"SQL_CA1_POSITIONED_UPDATE","features":[582]},{"name":"SQL_CA1_POS_DELETE","features":[582]},{"name":"SQL_CA1_POS_POSITION","features":[582]},{"name":"SQL_CA1_POS_REFRESH","features":[582]},{"name":"SQL_CA1_POS_UPDATE","features":[582]},{"name":"SQL_CA1_RELATIVE","features":[582]},{"name":"SQL_CA1_SELECT_FOR_UPDATE","features":[582]},{"name":"SQL_CA2_CRC_APPROXIMATE","features":[582]},{"name":"SQL_CA2_CRC_EXACT","features":[582]},{"name":"SQL_CA2_LOCK_CONCURRENCY","features":[582]},{"name":"SQL_CA2_MAX_ROWS_CATALOG","features":[582]},{"name":"SQL_CA2_MAX_ROWS_DELETE","features":[582]},{"name":"SQL_CA2_MAX_ROWS_INSERT","features":[582]},{"name":"SQL_CA2_MAX_ROWS_SELECT","features":[582]},{"name":"SQL_CA2_MAX_ROWS_UPDATE","features":[582]},{"name":"SQL_CA2_OPT_ROWVER_CONCURRENCY","features":[582]},{"name":"SQL_CA2_OPT_VALUES_CONCURRENCY","features":[582]},{"name":"SQL_CA2_READ_ONLY_CONCURRENCY","features":[582]},{"name":"SQL_CA2_SENSITIVITY_ADDITIONS","features":[582]},{"name":"SQL_CA2_SENSITIVITY_DELETIONS","features":[582]},{"name":"SQL_CA2_SENSITIVITY_UPDATES","features":[582]},{"name":"SQL_CA2_SIMULATE_NON_UNIQUE","features":[582]},{"name":"SQL_CA2_SIMULATE_TRY_UNIQUE","features":[582]},{"name":"SQL_CA2_SIMULATE_UNIQUE","features":[582]},{"name":"SQL_CACHE_DATA_NO","features":[582]},{"name":"SQL_CACHE_DATA_YES","features":[582]},{"name":"SQL_CASCADE","features":[582]},{"name":"SQL_CATALOG_LOCATION","features":[582]},{"name":"SQL_CATALOG_NAME","features":[582]},{"name":"SQL_CATALOG_NAME_SEPARATOR","features":[582]},{"name":"SQL_CATALOG_TERM","features":[582]},{"name":"SQL_CATALOG_USAGE","features":[582]},{"name":"SQL_CA_CONSTRAINT_DEFERRABLE","features":[582]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_DEFERRED","features":[582]},{"name":"SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE","features":[582]},{"name":"SQL_CA_CONSTRAINT_NON_DEFERRABLE","features":[582]},{"name":"SQL_CA_CREATE_ASSERTION","features":[582]},{"name":"SQL_CA_SS_BASE","features":[582]},{"name":"SQL_CA_SS_COLUMN_COLLATION","features":[582]},{"name":"SQL_CA_SS_COLUMN_HIDDEN","features":[582]},{"name":"SQL_CA_SS_COLUMN_ID","features":[582]},{"name":"SQL_CA_SS_COLUMN_KEY","features":[582]},{"name":"SQL_CA_SS_COLUMN_OP","features":[582]},{"name":"SQL_CA_SS_COLUMN_ORDER","features":[582]},{"name":"SQL_CA_SS_COLUMN_SIZE","features":[582]},{"name":"SQL_CA_SS_COLUMN_SSTYPE","features":[582]},{"name":"SQL_CA_SS_COLUMN_UTYPE","features":[582]},{"name":"SQL_CA_SS_COLUMN_VARYLEN","features":[582]},{"name":"SQL_CA_SS_COMPUTE_BYLIST","features":[582]},{"name":"SQL_CA_SS_COMPUTE_ID","features":[582]},{"name":"SQL_CA_SS_MAX_USED","features":[582]},{"name":"SQL_CA_SS_NUM_COMPUTES","features":[582]},{"name":"SQL_CA_SS_NUM_ORDERS","features":[582]},{"name":"SQL_CA_SS_VARIANT_SERVER_TYPE","features":[582]},{"name":"SQL_CA_SS_VARIANT_SQL_TYPE","features":[582]},{"name":"SQL_CA_SS_VARIANT_TYPE","features":[582]},{"name":"SQL_CB_CLOSE","features":[582]},{"name":"SQL_CB_DELETE","features":[582]},{"name":"SQL_CB_NON_NULL","features":[582]},{"name":"SQL_CB_NULL","features":[582]},{"name":"SQL_CB_PRESERVE","features":[582]},{"name":"SQL_CCOL_CREATE_COLLATION","features":[582]},{"name":"SQL_CCS_COLLATE_CLAUSE","features":[582]},{"name":"SQL_CCS_CREATE_CHARACTER_SET","features":[582]},{"name":"SQL_CCS_LIMITED_COLLATION","features":[582]},{"name":"SQL_CC_CLOSE","features":[582]},{"name":"SQL_CC_DELETE","features":[582]},{"name":"SQL_CC_PRESERVE","features":[582]},{"name":"SQL_CDO_COLLATION","features":[582]},{"name":"SQL_CDO_CONSTRAINT","features":[582]},{"name":"SQL_CDO_CONSTRAINT_DEFERRABLE","features":[582]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED","features":[582]},{"name":"SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE","features":[582]},{"name":"SQL_CDO_CONSTRAINT_NAME_DEFINITION","features":[582]},{"name":"SQL_CDO_CONSTRAINT_NON_DEFERRABLE","features":[582]},{"name":"SQL_CDO_CREATE_DOMAIN","features":[582]},{"name":"SQL_CDO_DEFAULT","features":[582]},{"name":"SQL_CD_FALSE","features":[582]},{"name":"SQL_CD_TRUE","features":[582]},{"name":"SQL_CHAR","features":[582]},{"name":"SQL_CLOSE","features":[582]},{"name":"SQL_CL_END","features":[582]},{"name":"SQL_CL_START","features":[582]},{"name":"SQL_CN_ANY","features":[582]},{"name":"SQL_CN_DEFAULT","features":[582]},{"name":"SQL_CN_DIFFERENT","features":[582]},{"name":"SQL_CN_NONE","features":[582]},{"name":"SQL_CN_OFF","features":[582]},{"name":"SQL_CN_ON","features":[582]},{"name":"SQL_CODE_DATE","features":[582]},{"name":"SQL_CODE_DAY","features":[582]},{"name":"SQL_CODE_DAY_TO_HOUR","features":[582]},{"name":"SQL_CODE_DAY_TO_MINUTE","features":[582]},{"name":"SQL_CODE_DAY_TO_SECOND","features":[582]},{"name":"SQL_CODE_HOUR","features":[582]},{"name":"SQL_CODE_HOUR_TO_MINUTE","features":[582]},{"name":"SQL_CODE_HOUR_TO_SECOND","features":[582]},{"name":"SQL_CODE_MINUTE","features":[582]},{"name":"SQL_CODE_MINUTE_TO_SECOND","features":[582]},{"name":"SQL_CODE_MONTH","features":[582]},{"name":"SQL_CODE_SECOND","features":[582]},{"name":"SQL_CODE_TIME","features":[582]},{"name":"SQL_CODE_TIMESTAMP","features":[582]},{"name":"SQL_CODE_YEAR","features":[582]},{"name":"SQL_CODE_YEAR_TO_MONTH","features":[582]},{"name":"SQL_COLATT_OPT_MAX","features":[582]},{"name":"SQL_COLATT_OPT_MIN","features":[582]},{"name":"SQL_COLLATION_SEQ","features":[582]},{"name":"SQL_COLUMN_ALIAS","features":[582]},{"name":"SQL_COLUMN_AUTO_INCREMENT","features":[582]},{"name":"SQL_COLUMN_CASE_SENSITIVE","features":[582]},{"name":"SQL_COLUMN_COUNT","features":[582]},{"name":"SQL_COLUMN_DISPLAY_SIZE","features":[582]},{"name":"SQL_COLUMN_DRIVER_START","features":[582]},{"name":"SQL_COLUMN_IGNORE","features":[582]},{"name":"SQL_COLUMN_LABEL","features":[582]},{"name":"SQL_COLUMN_LENGTH","features":[582]},{"name":"SQL_COLUMN_MONEY","features":[582]},{"name":"SQL_COLUMN_NAME","features":[582]},{"name":"SQL_COLUMN_NULLABLE","features":[582]},{"name":"SQL_COLUMN_NUMBER_UNKNOWN","features":[582]},{"name":"SQL_COLUMN_OWNER_NAME","features":[582]},{"name":"SQL_COLUMN_PRECISION","features":[582]},{"name":"SQL_COLUMN_QUALIFIER_NAME","features":[582]},{"name":"SQL_COLUMN_SCALE","features":[582]},{"name":"SQL_COLUMN_SEARCHABLE","features":[582]},{"name":"SQL_COLUMN_TABLE_NAME","features":[582]},{"name":"SQL_COLUMN_TYPE","features":[582]},{"name":"SQL_COLUMN_TYPE_NAME","features":[582]},{"name":"SQL_COLUMN_UNSIGNED","features":[582]},{"name":"SQL_COLUMN_UPDATABLE","features":[582]},{"name":"SQL_COMMIT","features":[582]},{"name":"SQL_CONCAT_NULL_BEHAVIOR","features":[582]},{"name":"SQL_CONCURRENCY","features":[582]},{"name":"SQL_CONCUR_DEFAULT","features":[582]},{"name":"SQL_CONCUR_LOCK","features":[582]},{"name":"SQL_CONCUR_READ_ONLY","features":[582]},{"name":"SQL_CONCUR_ROWVER","features":[582]},{"name":"SQL_CONCUR_TIMESTAMP","features":[582]},{"name":"SQL_CONCUR_VALUES","features":[582]},{"name":"SQL_CONNECT_OPT_DRVR_START","features":[582]},{"name":"SQL_CONN_OPT_MAX","features":[582]},{"name":"SQL_CONN_OPT_MIN","features":[582]},{"name":"SQL_CONN_POOL_RATING_BEST","features":[582]},{"name":"SQL_CONN_POOL_RATING_GOOD_ENOUGH","features":[582]},{"name":"SQL_CONN_POOL_RATING_USELESS","features":[582]},{"name":"SQL_CONVERT_BIGINT","features":[582]},{"name":"SQL_CONVERT_BINARY","features":[582]},{"name":"SQL_CONVERT_BIT","features":[582]},{"name":"SQL_CONVERT_CHAR","features":[582]},{"name":"SQL_CONVERT_DATE","features":[582]},{"name":"SQL_CONVERT_DECIMAL","features":[582]},{"name":"SQL_CONVERT_DOUBLE","features":[582]},{"name":"SQL_CONVERT_FLOAT","features":[582]},{"name":"SQL_CONVERT_FUNCTIONS","features":[582]},{"name":"SQL_CONVERT_GUID","features":[582]},{"name":"SQL_CONVERT_INTEGER","features":[582]},{"name":"SQL_CONVERT_INTERVAL_DAY_TIME","features":[582]},{"name":"SQL_CONVERT_INTERVAL_YEAR_MONTH","features":[582]},{"name":"SQL_CONVERT_LONGVARBINARY","features":[582]},{"name":"SQL_CONVERT_LONGVARCHAR","features":[582]},{"name":"SQL_CONVERT_NUMERIC","features":[582]},{"name":"SQL_CONVERT_REAL","features":[582]},{"name":"SQL_CONVERT_SMALLINT","features":[582]},{"name":"SQL_CONVERT_TIME","features":[582]},{"name":"SQL_CONVERT_TIMESTAMP","features":[582]},{"name":"SQL_CONVERT_TINYINT","features":[582]},{"name":"SQL_CONVERT_VARBINARY","features":[582]},{"name":"SQL_CONVERT_VARCHAR","features":[582]},{"name":"SQL_CONVERT_WCHAR","features":[582]},{"name":"SQL_CONVERT_WLONGVARCHAR","features":[582]},{"name":"SQL_CONVERT_WVARCHAR","features":[582]},{"name":"SQL_COPT_SS_ANSI_NPW","features":[582]},{"name":"SQL_COPT_SS_ANSI_OEM","features":[582]},{"name":"SQL_COPT_SS_ATTACHDBFILENAME","features":[582]},{"name":"SQL_COPT_SS_BASE","features":[582]},{"name":"SQL_COPT_SS_BASE_EX","features":[582]},{"name":"SQL_COPT_SS_BCP","features":[582]},{"name":"SQL_COPT_SS_BROWSE_CACHE_DATA","features":[582]},{"name":"SQL_COPT_SS_BROWSE_CONNECT","features":[582]},{"name":"SQL_COPT_SS_BROWSE_SERVER","features":[582]},{"name":"SQL_COPT_SS_CONCAT_NULL","features":[582]},{"name":"SQL_COPT_SS_CONNECTION_DEAD","features":[582]},{"name":"SQL_COPT_SS_ENCRYPT","features":[582]},{"name":"SQL_COPT_SS_EX_MAX_USED","features":[582]},{"name":"SQL_COPT_SS_FALLBACK_CONNECT","features":[582]},{"name":"SQL_COPT_SS_INTEGRATED_SECURITY","features":[582]},{"name":"SQL_COPT_SS_MAX_USED","features":[582]},{"name":"SQL_COPT_SS_PERF_DATA","features":[582]},{"name":"SQL_COPT_SS_PERF_DATA_LOG","features":[582]},{"name":"SQL_COPT_SS_PERF_DATA_LOG_NOW","features":[582]},{"name":"SQL_COPT_SS_PERF_QUERY","features":[582]},{"name":"SQL_COPT_SS_PERF_QUERY_INTERVAL","features":[582]},{"name":"SQL_COPT_SS_PERF_QUERY_LOG","features":[582]},{"name":"SQL_COPT_SS_PRESERVE_CURSORS","features":[582]},{"name":"SQL_COPT_SS_QUOTED_IDENT","features":[582]},{"name":"SQL_COPT_SS_REMOTE_PWD","features":[582]},{"name":"SQL_COPT_SS_RESET_CONNECTION","features":[582]},{"name":"SQL_COPT_SS_TRANSLATE","features":[582]},{"name":"SQL_COPT_SS_USER_DATA","features":[582]},{"name":"SQL_COPT_SS_USE_PROC_FOR_PREP","features":[582]},{"name":"SQL_COPT_SS_WARN_ON_CP_ERROR","features":[582]},{"name":"SQL_CORRELATION_NAME","features":[582]},{"name":"SQL_CO_AF","features":[582]},{"name":"SQL_CO_DEFAULT","features":[582]},{"name":"SQL_CO_FFO","features":[582]},{"name":"SQL_CO_FIREHOSE_AF","features":[582]},{"name":"SQL_CO_OFF","features":[582]},{"name":"SQL_CP_DEFAULT","features":[582]},{"name":"SQL_CP_DRIVER_AWARE","features":[582]},{"name":"SQL_CP_MATCH_DEFAULT","features":[582]},{"name":"SQL_CP_OFF","features":[582]},{"name":"SQL_CP_ONE_PER_DRIVER","features":[582]},{"name":"SQL_CP_ONE_PER_HENV","features":[582]},{"name":"SQL_CP_RELAXED_MATCH","features":[582]},{"name":"SQL_CP_STRICT_MATCH","features":[582]},{"name":"SQL_CREATE_ASSERTION","features":[582]},{"name":"SQL_CREATE_CHARACTER_SET","features":[582]},{"name":"SQL_CREATE_COLLATION","features":[582]},{"name":"SQL_CREATE_DOMAIN","features":[582]},{"name":"SQL_CREATE_SCHEMA","features":[582]},{"name":"SQL_CREATE_TABLE","features":[582]},{"name":"SQL_CREATE_TRANSLATION","features":[582]},{"name":"SQL_CREATE_VIEW","features":[582]},{"name":"SQL_CR_CLOSE","features":[582]},{"name":"SQL_CR_DELETE","features":[582]},{"name":"SQL_CR_PRESERVE","features":[582]},{"name":"SQL_CS_AUTHORIZATION","features":[582]},{"name":"SQL_CS_CREATE_SCHEMA","features":[582]},{"name":"SQL_CS_DEFAULT_CHARACTER_SET","features":[582]},{"name":"SQL_CTR_CREATE_TRANSLATION","features":[582]},{"name":"SQL_CT_COLUMN_COLLATION","features":[582]},{"name":"SQL_CT_COLUMN_CONSTRAINT","features":[582]},{"name":"SQL_CT_COLUMN_DEFAULT","features":[582]},{"name":"SQL_CT_COMMIT_DELETE","features":[582]},{"name":"SQL_CT_COMMIT_PRESERVE","features":[582]},{"name":"SQL_CT_CONSTRAINT_DEFERRABLE","features":[582]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_DEFERRED","features":[582]},{"name":"SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE","features":[582]},{"name":"SQL_CT_CONSTRAINT_NAME_DEFINITION","features":[582]},{"name":"SQL_CT_CONSTRAINT_NON_DEFERRABLE","features":[582]},{"name":"SQL_CT_CREATE_TABLE","features":[582]},{"name":"SQL_CT_GLOBAL_TEMPORARY","features":[582]},{"name":"SQL_CT_LOCAL_TEMPORARY","features":[582]},{"name":"SQL_CT_TABLE_CONSTRAINT","features":[582]},{"name":"SQL_CURRENT_QUALIFIER","features":[582]},{"name":"SQL_CURSOR_COMMIT_BEHAVIOR","features":[582]},{"name":"SQL_CURSOR_DYNAMIC","features":[582]},{"name":"SQL_CURSOR_FAST_FORWARD_ONLY","features":[582]},{"name":"SQL_CURSOR_FORWARD_ONLY","features":[582]},{"name":"SQL_CURSOR_KEYSET_DRIVEN","features":[582]},{"name":"SQL_CURSOR_ROLLBACK_BEHAVIOR","features":[582]},{"name":"SQL_CURSOR_SENSITIVITY","features":[582]},{"name":"SQL_CURSOR_STATIC","features":[582]},{"name":"SQL_CURSOR_TYPE","features":[582]},{"name":"SQL_CURSOR_TYPE_DEFAULT","features":[582]},{"name":"SQL_CUR_DEFAULT","features":[582]},{"name":"SQL_CUR_USE_DRIVER","features":[582]},{"name":"SQL_CUR_USE_IF_NEEDED","features":[582]},{"name":"SQL_CUR_USE_ODBC","features":[582]},{"name":"SQL_CU_DML_STATEMENTS","features":[582]},{"name":"SQL_CU_INDEX_DEFINITION","features":[582]},{"name":"SQL_CU_PRIVILEGE_DEFINITION","features":[582]},{"name":"SQL_CU_PROCEDURE_INVOCATION","features":[582]},{"name":"SQL_CU_TABLE_DEFINITION","features":[582]},{"name":"SQL_CVT_BIGINT","features":[582]},{"name":"SQL_CVT_BINARY","features":[582]},{"name":"SQL_CVT_BIT","features":[582]},{"name":"SQL_CVT_CHAR","features":[582]},{"name":"SQL_CVT_DATE","features":[582]},{"name":"SQL_CVT_DECIMAL","features":[582]},{"name":"SQL_CVT_DOUBLE","features":[582]},{"name":"SQL_CVT_FLOAT","features":[582]},{"name":"SQL_CVT_GUID","features":[582]},{"name":"SQL_CVT_INTEGER","features":[582]},{"name":"SQL_CVT_INTERVAL_DAY_TIME","features":[582]},{"name":"SQL_CVT_INTERVAL_YEAR_MONTH","features":[582]},{"name":"SQL_CVT_LONGVARBINARY","features":[582]},{"name":"SQL_CVT_LONGVARCHAR","features":[582]},{"name":"SQL_CVT_NUMERIC","features":[582]},{"name":"SQL_CVT_REAL","features":[582]},{"name":"SQL_CVT_SMALLINT","features":[582]},{"name":"SQL_CVT_TIME","features":[582]},{"name":"SQL_CVT_TIMESTAMP","features":[582]},{"name":"SQL_CVT_TINYINT","features":[582]},{"name":"SQL_CVT_VARBINARY","features":[582]},{"name":"SQL_CVT_VARCHAR","features":[582]},{"name":"SQL_CVT_WCHAR","features":[582]},{"name":"SQL_CVT_WLONGVARCHAR","features":[582]},{"name":"SQL_CVT_WVARCHAR","features":[582]},{"name":"SQL_CV_CASCADED","features":[582]},{"name":"SQL_CV_CHECK_OPTION","features":[582]},{"name":"SQL_CV_CREATE_VIEW","features":[582]},{"name":"SQL_CV_LOCAL","features":[582]},{"name":"SQL_C_BINARY","features":[582]},{"name":"SQL_C_BIT","features":[582]},{"name":"SQL_C_CHAR","features":[582]},{"name":"SQL_C_DATE","features":[582]},{"name":"SQL_C_DEFAULT","features":[582]},{"name":"SQL_C_DOUBLE","features":[582]},{"name":"SQL_C_FLOAT","features":[582]},{"name":"SQL_C_GUID","features":[582]},{"name":"SQL_C_INTERVAL_DAY","features":[582]},{"name":"SQL_C_INTERVAL_DAY_TO_HOUR","features":[582]},{"name":"SQL_C_INTERVAL_DAY_TO_MINUTE","features":[582]},{"name":"SQL_C_INTERVAL_DAY_TO_SECOND","features":[582]},{"name":"SQL_C_INTERVAL_HOUR","features":[582]},{"name":"SQL_C_INTERVAL_HOUR_TO_MINUTE","features":[582]},{"name":"SQL_C_INTERVAL_HOUR_TO_SECOND","features":[582]},{"name":"SQL_C_INTERVAL_MINUTE","features":[582]},{"name":"SQL_C_INTERVAL_MINUTE_TO_SECOND","features":[582]},{"name":"SQL_C_INTERVAL_MONTH","features":[582]},{"name":"SQL_C_INTERVAL_SECOND","features":[582]},{"name":"SQL_C_INTERVAL_YEAR","features":[582]},{"name":"SQL_C_INTERVAL_YEAR_TO_MONTH","features":[582]},{"name":"SQL_C_LONG","features":[582]},{"name":"SQL_C_NUMERIC","features":[582]},{"name":"SQL_C_SHORT","features":[582]},{"name":"SQL_C_TCHAR","features":[582]},{"name":"SQL_C_TIME","features":[582]},{"name":"SQL_C_TIMESTAMP","features":[582]},{"name":"SQL_C_TINYINT","features":[582]},{"name":"SQL_C_TYPE_DATE","features":[582]},{"name":"SQL_C_TYPE_TIME","features":[582]},{"name":"SQL_C_TYPE_TIMESTAMP","features":[582]},{"name":"SQL_C_VARBOOKMARK","features":[582]},{"name":"SQL_C_WCHAR","features":[582]},{"name":"SQL_DATABASE_NAME","features":[582]},{"name":"SQL_DATA_AT_EXEC","features":[582]},{"name":"SQL_DATA_SOURCE_NAME","features":[582]},{"name":"SQL_DATA_SOURCE_READ_ONLY","features":[582]},{"name":"SQL_DATE","features":[582]},{"name":"SQL_DATETIME","features":[582]},{"name":"SQL_DATETIME_LITERALS","features":[582]},{"name":"SQL_DATE_LEN","features":[582]},{"name":"SQL_DAY","features":[582]},{"name":"SQL_DAY_SECOND_STRUCT","features":[582]},{"name":"SQL_DAY_TO_HOUR","features":[582]},{"name":"SQL_DAY_TO_MINUTE","features":[582]},{"name":"SQL_DAY_TO_SECOND","features":[582]},{"name":"SQL_DA_DROP_ASSERTION","features":[582]},{"name":"SQL_DBMS_NAME","features":[582]},{"name":"SQL_DBMS_VER","features":[582]},{"name":"SQL_DB_DEFAULT","features":[582]},{"name":"SQL_DB_DISCONNECT","features":[582]},{"name":"SQL_DB_RETURN_TO_POOL","features":[582]},{"name":"SQL_DCS_DROP_CHARACTER_SET","features":[582]},{"name":"SQL_DC_DROP_COLLATION","features":[582]},{"name":"SQL_DDL_INDEX","features":[582]},{"name":"SQL_DD_CASCADE","features":[582]},{"name":"SQL_DD_DROP_DOMAIN","features":[582]},{"name":"SQL_DD_RESTRICT","features":[582]},{"name":"SQL_DECIMAL","features":[582]},{"name":"SQL_DEFAULT","features":[582]},{"name":"SQL_DEFAULT_PARAM","features":[582]},{"name":"SQL_DEFAULT_TXN_ISOLATION","features":[582]},{"name":"SQL_DELETE","features":[582]},{"name":"SQL_DELETE_BY_BOOKMARK","features":[582]},{"name":"SQL_DESCRIBE_PARAMETER","features":[582]},{"name":"SQL_DESC_ALLOC_AUTO","features":[582]},{"name":"SQL_DESC_ALLOC_TYPE","features":[582]},{"name":"SQL_DESC_ALLOC_USER","features":[582]},{"name":"SQL_DESC_ARRAY_SIZE","features":[582]},{"name":"SQL_DESC_ARRAY_STATUS_PTR","features":[582]},{"name":"SQL_DESC_BASE_COLUMN_NAME","features":[582]},{"name":"SQL_DESC_BASE_TABLE_NAME","features":[582]},{"name":"SQL_DESC_BIND_OFFSET_PTR","features":[582]},{"name":"SQL_DESC_BIND_TYPE","features":[582]},{"name":"SQL_DESC_COUNT","features":[582]},{"name":"SQL_DESC_DATA_PTR","features":[582]},{"name":"SQL_DESC_DATETIME_INTERVAL_CODE","features":[582]},{"name":"SQL_DESC_DATETIME_INTERVAL_PRECISION","features":[582]},{"name":"SQL_DESC_INDICATOR_PTR","features":[582]},{"name":"SQL_DESC_LENGTH","features":[582]},{"name":"SQL_DESC_LITERAL_PREFIX","features":[582]},{"name":"SQL_DESC_LITERAL_SUFFIX","features":[582]},{"name":"SQL_DESC_LOCAL_TYPE_NAME","features":[582]},{"name":"SQL_DESC_MAXIMUM_SCALE","features":[582]},{"name":"SQL_DESC_MINIMUM_SCALE","features":[582]},{"name":"SQL_DESC_NAME","features":[582]},{"name":"SQL_DESC_NULLABLE","features":[582]},{"name":"SQL_DESC_NUM_PREC_RADIX","features":[582]},{"name":"SQL_DESC_OCTET_LENGTH","features":[582]},{"name":"SQL_DESC_OCTET_LENGTH_PTR","features":[582]},{"name":"SQL_DESC_PARAMETER_TYPE","features":[582]},{"name":"SQL_DESC_PRECISION","features":[582]},{"name":"SQL_DESC_ROWS_PROCESSED_PTR","features":[582]},{"name":"SQL_DESC_ROWVER","features":[582]},{"name":"SQL_DESC_SCALE","features":[582]},{"name":"SQL_DESC_TYPE","features":[582]},{"name":"SQL_DESC_UNNAMED","features":[582]},{"name":"SQL_DIAG_ALTER_DOMAIN","features":[582]},{"name":"SQL_DIAG_ALTER_TABLE","features":[582]},{"name":"SQL_DIAG_CALL","features":[582]},{"name":"SQL_DIAG_CLASS_ORIGIN","features":[582]},{"name":"SQL_DIAG_COLUMN_NUMBER","features":[582]},{"name":"SQL_DIAG_CONNECTION_NAME","features":[582]},{"name":"SQL_DIAG_CREATE_ASSERTION","features":[582]},{"name":"SQL_DIAG_CREATE_CHARACTER_SET","features":[582]},{"name":"SQL_DIAG_CREATE_COLLATION","features":[582]},{"name":"SQL_DIAG_CREATE_DOMAIN","features":[582]},{"name":"SQL_DIAG_CREATE_INDEX","features":[582]},{"name":"SQL_DIAG_CREATE_SCHEMA","features":[582]},{"name":"SQL_DIAG_CREATE_TABLE","features":[582]},{"name":"SQL_DIAG_CREATE_TRANSLATION","features":[582]},{"name":"SQL_DIAG_CREATE_VIEW","features":[582]},{"name":"SQL_DIAG_CURSOR_ROW_COUNT","features":[582]},{"name":"SQL_DIAG_DELETE_WHERE","features":[582]},{"name":"SQL_DIAG_DFC_SS_ALTER_DATABASE","features":[582]},{"name":"SQL_DIAG_DFC_SS_BASE","features":[582]},{"name":"SQL_DIAG_DFC_SS_CHECKPOINT","features":[582]},{"name":"SQL_DIAG_DFC_SS_CONDITION","features":[582]},{"name":"SQL_DIAG_DFC_SS_CREATE_DATABASE","features":[582]},{"name":"SQL_DIAG_DFC_SS_CREATE_DEFAULT","features":[582]},{"name":"SQL_DIAG_DFC_SS_CREATE_PROCEDURE","features":[582]},{"name":"SQL_DIAG_DFC_SS_CREATE_RULE","features":[582]},{"name":"SQL_DIAG_DFC_SS_CREATE_TRIGGER","features":[582]},{"name":"SQL_DIAG_DFC_SS_CURSOR_CLOSE","features":[582]},{"name":"SQL_DIAG_DFC_SS_CURSOR_DECLARE","features":[582]},{"name":"SQL_DIAG_DFC_SS_CURSOR_FETCH","features":[582]},{"name":"SQL_DIAG_DFC_SS_CURSOR_OPEN","features":[582]},{"name":"SQL_DIAG_DFC_SS_DBCC","features":[582]},{"name":"SQL_DIAG_DFC_SS_DEALLOCATE_CURSOR","features":[582]},{"name":"SQL_DIAG_DFC_SS_DENY","features":[582]},{"name":"SQL_DIAG_DFC_SS_DISK","features":[582]},{"name":"SQL_DIAG_DFC_SS_DROP_DATABASE","features":[582]},{"name":"SQL_DIAG_DFC_SS_DROP_DEFAULT","features":[582]},{"name":"SQL_DIAG_DFC_SS_DROP_PROCEDURE","features":[582]},{"name":"SQL_DIAG_DFC_SS_DROP_RULE","features":[582]},{"name":"SQL_DIAG_DFC_SS_DROP_TRIGGER","features":[582]},{"name":"SQL_DIAG_DFC_SS_DUMP_DATABASE","features":[582]},{"name":"SQL_DIAG_DFC_SS_DUMP_TABLE","features":[582]},{"name":"SQL_DIAG_DFC_SS_DUMP_TRANSACTION","features":[582]},{"name":"SQL_DIAG_DFC_SS_GOTO","features":[582]},{"name":"SQL_DIAG_DFC_SS_INSERT_BULK","features":[582]},{"name":"SQL_DIAG_DFC_SS_KILL","features":[582]},{"name":"SQL_DIAG_DFC_SS_LOAD_DATABASE","features":[582]},{"name":"SQL_DIAG_DFC_SS_LOAD_HEADERONLY","features":[582]},{"name":"SQL_DIAG_DFC_SS_LOAD_TABLE","features":[582]},{"name":"SQL_DIAG_DFC_SS_LOAD_TRANSACTION","features":[582]},{"name":"SQL_DIAG_DFC_SS_PRINT","features":[582]},{"name":"SQL_DIAG_DFC_SS_RAISERROR","features":[582]},{"name":"SQL_DIAG_DFC_SS_READTEXT","features":[582]},{"name":"SQL_DIAG_DFC_SS_RECONFIGURE","features":[582]},{"name":"SQL_DIAG_DFC_SS_RETURN","features":[582]},{"name":"SQL_DIAG_DFC_SS_SELECT_INTO","features":[582]},{"name":"SQL_DIAG_DFC_SS_SET","features":[582]},{"name":"SQL_DIAG_DFC_SS_SETUSER","features":[582]},{"name":"SQL_DIAG_DFC_SS_SET_IDENTITY_INSERT","features":[582]},{"name":"SQL_DIAG_DFC_SS_SET_ROW_COUNT","features":[582]},{"name":"SQL_DIAG_DFC_SS_SET_STATISTICS","features":[582]},{"name":"SQL_DIAG_DFC_SS_SET_TEXTSIZE","features":[582]},{"name":"SQL_DIAG_DFC_SS_SET_XCTLVL","features":[582]},{"name":"SQL_DIAG_DFC_SS_SHUTDOWN","features":[582]},{"name":"SQL_DIAG_DFC_SS_TRANS_BEGIN","features":[582]},{"name":"SQL_DIAG_DFC_SS_TRANS_COMMIT","features":[582]},{"name":"SQL_DIAG_DFC_SS_TRANS_PREPARE","features":[582]},{"name":"SQL_DIAG_DFC_SS_TRANS_ROLLBACK","features":[582]},{"name":"SQL_DIAG_DFC_SS_TRANS_SAVE","features":[582]},{"name":"SQL_DIAG_DFC_SS_TRUNCATE_TABLE","features":[582]},{"name":"SQL_DIAG_DFC_SS_UPDATETEXT","features":[582]},{"name":"SQL_DIAG_DFC_SS_UPDATE_STATISTICS","features":[582]},{"name":"SQL_DIAG_DFC_SS_USE","features":[582]},{"name":"SQL_DIAG_DFC_SS_WAITFOR","features":[582]},{"name":"SQL_DIAG_DFC_SS_WRITETEXT","features":[582]},{"name":"SQL_DIAG_DROP_ASSERTION","features":[582]},{"name":"SQL_DIAG_DROP_CHARACTER_SET","features":[582]},{"name":"SQL_DIAG_DROP_COLLATION","features":[582]},{"name":"SQL_DIAG_DROP_DOMAIN","features":[582]},{"name":"SQL_DIAG_DROP_INDEX","features":[582]},{"name":"SQL_DIAG_DROP_SCHEMA","features":[582]},{"name":"SQL_DIAG_DROP_TABLE","features":[582]},{"name":"SQL_DIAG_DROP_TRANSLATION","features":[582]},{"name":"SQL_DIAG_DROP_VIEW","features":[582]},{"name":"SQL_DIAG_DYNAMIC_DELETE_CURSOR","features":[582]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION","features":[582]},{"name":"SQL_DIAG_DYNAMIC_FUNCTION_CODE","features":[582]},{"name":"SQL_DIAG_DYNAMIC_UPDATE_CURSOR","features":[582]},{"name":"SQL_DIAG_GRANT","features":[582]},{"name":"SQL_DIAG_INSERT","features":[582]},{"name":"SQL_DIAG_MESSAGE_TEXT","features":[582]},{"name":"SQL_DIAG_NATIVE","features":[582]},{"name":"SQL_DIAG_NUMBER","features":[582]},{"name":"SQL_DIAG_RETURNCODE","features":[582]},{"name":"SQL_DIAG_REVOKE","features":[582]},{"name":"SQL_DIAG_ROW_COUNT","features":[582]},{"name":"SQL_DIAG_ROW_NUMBER","features":[582]},{"name":"SQL_DIAG_SELECT_CURSOR","features":[582]},{"name":"SQL_DIAG_SERVER_NAME","features":[582]},{"name":"SQL_DIAG_SQLSTATE","features":[582]},{"name":"SQL_DIAG_SS_BASE","features":[582]},{"name":"SQL_DIAG_SS_LINE","features":[582]},{"name":"SQL_DIAG_SS_MSGSTATE","features":[582]},{"name":"SQL_DIAG_SS_PROCNAME","features":[582]},{"name":"SQL_DIAG_SS_SEVERITY","features":[582]},{"name":"SQL_DIAG_SS_SRVNAME","features":[582]},{"name":"SQL_DIAG_SUBCLASS_ORIGIN","features":[582]},{"name":"SQL_DIAG_UNKNOWN_STATEMENT","features":[582]},{"name":"SQL_DIAG_UPDATE_WHERE","features":[582]},{"name":"SQL_DI_CREATE_INDEX","features":[582]},{"name":"SQL_DI_DROP_INDEX","features":[582]},{"name":"SQL_DL_SQL92_DATE","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_DAY","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_MONTH","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_SECOND","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR","features":[582]},{"name":"SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH","features":[582]},{"name":"SQL_DL_SQL92_TIME","features":[582]},{"name":"SQL_DL_SQL92_TIMESTAMP","features":[582]},{"name":"SQL_DM_VER","features":[582]},{"name":"SQL_DOUBLE","features":[582]},{"name":"SQL_DP_OFF","features":[582]},{"name":"SQL_DP_ON","features":[582]},{"name":"SQL_DRIVER_AWARE_POOLING_CAPABLE","features":[582]},{"name":"SQL_DRIVER_AWARE_POOLING_NOT_CAPABLE","features":[582]},{"name":"SQL_DRIVER_AWARE_POOLING_SUPPORTED","features":[582]},{"name":"SQL_DRIVER_COMPLETE","features":[582]},{"name":"SQL_DRIVER_COMPLETE_REQUIRED","features":[582]},{"name":"SQL_DRIVER_CONN_ATTR_BASE","features":[582]},{"name":"SQL_DRIVER_C_TYPE_BASE","features":[582]},{"name":"SQL_DRIVER_DESC_FIELD_BASE","features":[582]},{"name":"SQL_DRIVER_DIAG_FIELD_BASE","features":[582]},{"name":"SQL_DRIVER_HDBC","features":[582]},{"name":"SQL_DRIVER_HDESC","features":[582]},{"name":"SQL_DRIVER_HENV","features":[582]},{"name":"SQL_DRIVER_HLIB","features":[582]},{"name":"SQL_DRIVER_HSTMT","features":[582]},{"name":"SQL_DRIVER_INFO_TYPE_BASE","features":[582]},{"name":"SQL_DRIVER_NAME","features":[582]},{"name":"SQL_DRIVER_NOPROMPT","features":[582]},{"name":"SQL_DRIVER_ODBC_VER","features":[582]},{"name":"SQL_DRIVER_PROMPT","features":[582]},{"name":"SQL_DRIVER_SQL_TYPE_BASE","features":[582]},{"name":"SQL_DRIVER_STMT_ATTR_BASE","features":[582]},{"name":"SQL_DRIVER_VER","features":[582]},{"name":"SQL_DROP","features":[582]},{"name":"SQL_DROP_ASSERTION","features":[582]},{"name":"SQL_DROP_CHARACTER_SET","features":[582]},{"name":"SQL_DROP_COLLATION","features":[582]},{"name":"SQL_DROP_DOMAIN","features":[582]},{"name":"SQL_DROP_SCHEMA","features":[582]},{"name":"SQL_DROP_TABLE","features":[582]},{"name":"SQL_DROP_TRANSLATION","features":[582]},{"name":"SQL_DROP_VIEW","features":[582]},{"name":"SQL_DS_CASCADE","features":[582]},{"name":"SQL_DS_DROP_SCHEMA","features":[582]},{"name":"SQL_DS_RESTRICT","features":[582]},{"name":"SQL_DTC_DONE","features":[582]},{"name":"SQL_DTC_ENLIST_EXPENSIVE","features":[582]},{"name":"SQL_DTC_TRANSITION_COST","features":[582]},{"name":"SQL_DTC_UNENLIST_EXPENSIVE","features":[582]},{"name":"SQL_DTR_DROP_TRANSLATION","features":[582]},{"name":"SQL_DT_CASCADE","features":[582]},{"name":"SQL_DT_DROP_TABLE","features":[582]},{"name":"SQL_DT_RESTRICT","features":[582]},{"name":"SQL_DV_CASCADE","features":[582]},{"name":"SQL_DV_DROP_VIEW","features":[582]},{"name":"SQL_DV_RESTRICT","features":[582]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES1","features":[582]},{"name":"SQL_DYNAMIC_CURSOR_ATTRIBUTES2","features":[582]},{"name":"SQL_ENSURE","features":[582]},{"name":"SQL_ENTIRE_ROWSET","features":[582]},{"name":"SQL_EN_OFF","features":[582]},{"name":"SQL_EN_ON","features":[582]},{"name":"SQL_ERROR","features":[582]},{"name":"SQL_EXPRESSIONS_IN_ORDERBY","features":[582]},{"name":"SQL_EXT_API_LAST","features":[582]},{"name":"SQL_EXT_API_START","features":[582]},{"name":"SQL_FALSE","features":[582]},{"name":"SQL_FAST_CONNECT","features":[582]},{"name":"SQL_FB_DEFAULT","features":[582]},{"name":"SQL_FB_OFF","features":[582]},{"name":"SQL_FB_ON","features":[582]},{"name":"SQL_FC_DEFAULT","features":[582]},{"name":"SQL_FC_OFF","features":[582]},{"name":"SQL_FC_ON","features":[582]},{"name":"SQL_FD_FETCH_ABSOLUTE","features":[582]},{"name":"SQL_FD_FETCH_BOOKMARK","features":[582]},{"name":"SQL_FD_FETCH_FIRST","features":[582]},{"name":"SQL_FD_FETCH_LAST","features":[582]},{"name":"SQL_FD_FETCH_NEXT","features":[582]},{"name":"SQL_FD_FETCH_PREV","features":[582]},{"name":"SQL_FD_FETCH_PRIOR","features":[582]},{"name":"SQL_FD_FETCH_RELATIVE","features":[582]},{"name":"SQL_FD_FETCH_RESUME","features":[582]},{"name":"SQL_FETCH_ABSOLUTE","features":[582]},{"name":"SQL_FETCH_BOOKMARK","features":[582]},{"name":"SQL_FETCH_BY_BOOKMARK","features":[582]},{"name":"SQL_FETCH_DIRECTION","features":[582]},{"name":"SQL_FETCH_FIRST","features":[582]},{"name":"SQL_FETCH_FIRST_SYSTEM","features":[582]},{"name":"SQL_FETCH_FIRST_USER","features":[582]},{"name":"SQL_FETCH_LAST","features":[582]},{"name":"SQL_FETCH_NEXT","features":[582]},{"name":"SQL_FETCH_PREV","features":[582]},{"name":"SQL_FETCH_PRIOR","features":[582]},{"name":"SQL_FETCH_RELATIVE","features":[582]},{"name":"SQL_FETCH_RESUME","features":[582]},{"name":"SQL_FILE_CATALOG","features":[582]},{"name":"SQL_FILE_NOT_SUPPORTED","features":[582]},{"name":"SQL_FILE_QUALIFIER","features":[582]},{"name":"SQL_FILE_TABLE","features":[582]},{"name":"SQL_FILE_USAGE","features":[582]},{"name":"SQL_FLOAT","features":[582]},{"name":"SQL_FN_CVT_CAST","features":[582]},{"name":"SQL_FN_CVT_CONVERT","features":[582]},{"name":"SQL_FN_NUM_ABS","features":[582]},{"name":"SQL_FN_NUM_ACOS","features":[582]},{"name":"SQL_FN_NUM_ASIN","features":[582]},{"name":"SQL_FN_NUM_ATAN","features":[582]},{"name":"SQL_FN_NUM_ATAN2","features":[582]},{"name":"SQL_FN_NUM_CEILING","features":[582]},{"name":"SQL_FN_NUM_COS","features":[582]},{"name":"SQL_FN_NUM_COT","features":[582]},{"name":"SQL_FN_NUM_DEGREES","features":[582]},{"name":"SQL_FN_NUM_EXP","features":[582]},{"name":"SQL_FN_NUM_FLOOR","features":[582]},{"name":"SQL_FN_NUM_LOG","features":[582]},{"name":"SQL_FN_NUM_LOG10","features":[582]},{"name":"SQL_FN_NUM_MOD","features":[582]},{"name":"SQL_FN_NUM_PI","features":[582]},{"name":"SQL_FN_NUM_POWER","features":[582]},{"name":"SQL_FN_NUM_RADIANS","features":[582]},{"name":"SQL_FN_NUM_RAND","features":[582]},{"name":"SQL_FN_NUM_ROUND","features":[582]},{"name":"SQL_FN_NUM_SIGN","features":[582]},{"name":"SQL_FN_NUM_SIN","features":[582]},{"name":"SQL_FN_NUM_SQRT","features":[582]},{"name":"SQL_FN_NUM_TAN","features":[582]},{"name":"SQL_FN_NUM_TRUNCATE","features":[582]},{"name":"SQL_FN_STR_ASCII","features":[582]},{"name":"SQL_FN_STR_BIT_LENGTH","features":[582]},{"name":"SQL_FN_STR_CHAR","features":[582]},{"name":"SQL_FN_STR_CHARACTER_LENGTH","features":[582]},{"name":"SQL_FN_STR_CHAR_LENGTH","features":[582]},{"name":"SQL_FN_STR_CONCAT","features":[582]},{"name":"SQL_FN_STR_DIFFERENCE","features":[582]},{"name":"SQL_FN_STR_INSERT","features":[582]},{"name":"SQL_FN_STR_LCASE","features":[582]},{"name":"SQL_FN_STR_LEFT","features":[582]},{"name":"SQL_FN_STR_LENGTH","features":[582]},{"name":"SQL_FN_STR_LOCATE","features":[582]},{"name":"SQL_FN_STR_LOCATE_2","features":[582]},{"name":"SQL_FN_STR_LTRIM","features":[582]},{"name":"SQL_FN_STR_OCTET_LENGTH","features":[582]},{"name":"SQL_FN_STR_POSITION","features":[582]},{"name":"SQL_FN_STR_REPEAT","features":[582]},{"name":"SQL_FN_STR_REPLACE","features":[582]},{"name":"SQL_FN_STR_RIGHT","features":[582]},{"name":"SQL_FN_STR_RTRIM","features":[582]},{"name":"SQL_FN_STR_SOUNDEX","features":[582]},{"name":"SQL_FN_STR_SPACE","features":[582]},{"name":"SQL_FN_STR_SUBSTRING","features":[582]},{"name":"SQL_FN_STR_UCASE","features":[582]},{"name":"SQL_FN_SYS_DBNAME","features":[582]},{"name":"SQL_FN_SYS_IFNULL","features":[582]},{"name":"SQL_FN_SYS_USERNAME","features":[582]},{"name":"SQL_FN_TD_CURDATE","features":[582]},{"name":"SQL_FN_TD_CURRENT_DATE","features":[582]},{"name":"SQL_FN_TD_CURRENT_TIME","features":[582]},{"name":"SQL_FN_TD_CURRENT_TIMESTAMP","features":[582]},{"name":"SQL_FN_TD_CURTIME","features":[582]},{"name":"SQL_FN_TD_DAYNAME","features":[582]},{"name":"SQL_FN_TD_DAYOFMONTH","features":[582]},{"name":"SQL_FN_TD_DAYOFWEEK","features":[582]},{"name":"SQL_FN_TD_DAYOFYEAR","features":[582]},{"name":"SQL_FN_TD_EXTRACT","features":[582]},{"name":"SQL_FN_TD_HOUR","features":[582]},{"name":"SQL_FN_TD_MINUTE","features":[582]},{"name":"SQL_FN_TD_MONTH","features":[582]},{"name":"SQL_FN_TD_MONTHNAME","features":[582]},{"name":"SQL_FN_TD_NOW","features":[582]},{"name":"SQL_FN_TD_QUARTER","features":[582]},{"name":"SQL_FN_TD_SECOND","features":[582]},{"name":"SQL_FN_TD_TIMESTAMPADD","features":[582]},{"name":"SQL_FN_TD_TIMESTAMPDIFF","features":[582]},{"name":"SQL_FN_TD_WEEK","features":[582]},{"name":"SQL_FN_TD_YEAR","features":[582]},{"name":"SQL_FN_TSI_DAY","features":[582]},{"name":"SQL_FN_TSI_FRAC_SECOND","features":[582]},{"name":"SQL_FN_TSI_HOUR","features":[582]},{"name":"SQL_FN_TSI_MINUTE","features":[582]},{"name":"SQL_FN_TSI_MONTH","features":[582]},{"name":"SQL_FN_TSI_QUARTER","features":[582]},{"name":"SQL_FN_TSI_SECOND","features":[582]},{"name":"SQL_FN_TSI_WEEK","features":[582]},{"name":"SQL_FN_TSI_YEAR","features":[582]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1","features":[582]},{"name":"SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2","features":[582]},{"name":"SQL_GB_COLLATE","features":[582]},{"name":"SQL_GB_GROUP_BY_CONTAINS_SELECT","features":[582]},{"name":"SQL_GB_GROUP_BY_EQUALS_SELECT","features":[582]},{"name":"SQL_GB_NOT_SUPPORTED","features":[582]},{"name":"SQL_GB_NO_RELATION","features":[582]},{"name":"SQL_GD_ANY_COLUMN","features":[582]},{"name":"SQL_GD_ANY_ORDER","features":[582]},{"name":"SQL_GD_BLOCK","features":[582]},{"name":"SQL_GD_BOUND","features":[582]},{"name":"SQL_GD_OUTPUT_PARAMS","features":[582]},{"name":"SQL_GETDATA_EXTENSIONS","features":[582]},{"name":"SQL_GET_BOOKMARK","features":[582]},{"name":"SQL_GROUP_BY","features":[582]},{"name":"SQL_GUID","features":[582]},{"name":"SQL_HANDLE_DBC","features":[582]},{"name":"SQL_HANDLE_DBC_INFO_TOKEN","features":[582]},{"name":"SQL_HANDLE_DESC","features":[582]},{"name":"SQL_HANDLE_ENV","features":[582]},{"name":"SQL_HANDLE_SENV","features":[582]},{"name":"SQL_HANDLE_STMT","features":[582]},{"name":"SQL_HC_DEFAULT","features":[582]},{"name":"SQL_HC_OFF","features":[582]},{"name":"SQL_HC_ON","features":[582]},{"name":"SQL_HOUR","features":[582]},{"name":"SQL_HOUR_TO_MINUTE","features":[582]},{"name":"SQL_HOUR_TO_SECOND","features":[582]},{"name":"SQL_IC_LOWER","features":[582]},{"name":"SQL_IC_MIXED","features":[582]},{"name":"SQL_IC_SENSITIVE","features":[582]},{"name":"SQL_IC_UPPER","features":[582]},{"name":"SQL_IDENTIFIER_CASE","features":[582]},{"name":"SQL_IDENTIFIER_QUOTE_CHAR","features":[582]},{"name":"SQL_IGNORE","features":[582]},{"name":"SQL_IK_ASC","features":[582]},{"name":"SQL_IK_DESC","features":[582]},{"name":"SQL_IK_NONE","features":[582]},{"name":"SQL_INDEX_ALL","features":[582]},{"name":"SQL_INDEX_CLUSTERED","features":[582]},{"name":"SQL_INDEX_HASHED","features":[582]},{"name":"SQL_INDEX_KEYWORDS","features":[582]},{"name":"SQL_INDEX_OTHER","features":[582]},{"name":"SQL_INDEX_UNIQUE","features":[582]},{"name":"SQL_INFO_DRIVER_START","features":[582]},{"name":"SQL_INFO_FIRST","features":[582]},{"name":"SQL_INFO_LAST","features":[582]},{"name":"SQL_INFO_SCHEMA_VIEWS","features":[582]},{"name":"SQL_INFO_SS_FIRST","features":[582]},{"name":"SQL_INFO_SS_MAX_USED","features":[582]},{"name":"SQL_INFO_SS_NETLIB_NAME","features":[582]},{"name":"SQL_INFO_SS_NETLIB_NAMEA","features":[582]},{"name":"SQL_INFO_SS_NETLIB_NAMEW","features":[582]},{"name":"SQL_INITIALLY_DEFERRED","features":[582]},{"name":"SQL_INITIALLY_IMMEDIATE","features":[582]},{"name":"SQL_INSENSITIVE","features":[582]},{"name":"SQL_INSERT_STATEMENT","features":[582]},{"name":"SQL_INTEGER","features":[582]},{"name":"SQL_INTEGRATED_SECURITY","features":[582]},{"name":"SQL_INTEGRITY","features":[582]},{"name":"SQL_INTERVAL","features":[582]},{"name":"SQL_INTERVAL_DAY","features":[582]},{"name":"SQL_INTERVAL_DAY_TO_HOUR","features":[582]},{"name":"SQL_INTERVAL_DAY_TO_MINUTE","features":[582]},{"name":"SQL_INTERVAL_DAY_TO_SECOND","features":[582]},{"name":"SQL_INTERVAL_HOUR","features":[582]},{"name":"SQL_INTERVAL_HOUR_TO_MINUTE","features":[582]},{"name":"SQL_INTERVAL_HOUR_TO_SECOND","features":[582]},{"name":"SQL_INTERVAL_MINUTE","features":[582]},{"name":"SQL_INTERVAL_MINUTE_TO_SECOND","features":[582]},{"name":"SQL_INTERVAL_MONTH","features":[582]},{"name":"SQL_INTERVAL_SECOND","features":[582]},{"name":"SQL_INTERVAL_STRUCT","features":[582]},{"name":"SQL_INTERVAL_YEAR","features":[582]},{"name":"SQL_INTERVAL_YEAR_TO_MONTH","features":[582]},{"name":"SQL_INVALID_HANDLE","features":[582]},{"name":"SQL_ISV_ASSERTIONS","features":[582]},{"name":"SQL_ISV_CHARACTER_SETS","features":[582]},{"name":"SQL_ISV_CHECK_CONSTRAINTS","features":[582]},{"name":"SQL_ISV_COLLATIONS","features":[582]},{"name":"SQL_ISV_COLUMNS","features":[582]},{"name":"SQL_ISV_COLUMN_DOMAIN_USAGE","features":[582]},{"name":"SQL_ISV_COLUMN_PRIVILEGES","features":[582]},{"name":"SQL_ISV_CONSTRAINT_COLUMN_USAGE","features":[582]},{"name":"SQL_ISV_CONSTRAINT_TABLE_USAGE","features":[582]},{"name":"SQL_ISV_DOMAINS","features":[582]},{"name":"SQL_ISV_DOMAIN_CONSTRAINTS","features":[582]},{"name":"SQL_ISV_KEY_COLUMN_USAGE","features":[582]},{"name":"SQL_ISV_REFERENTIAL_CONSTRAINTS","features":[582]},{"name":"SQL_ISV_SCHEMATA","features":[582]},{"name":"SQL_ISV_SQL_LANGUAGES","features":[582]},{"name":"SQL_ISV_TABLES","features":[582]},{"name":"SQL_ISV_TABLE_CONSTRAINTS","features":[582]},{"name":"SQL_ISV_TABLE_PRIVILEGES","features":[582]},{"name":"SQL_ISV_TRANSLATIONS","features":[582]},{"name":"SQL_ISV_USAGE_PRIVILEGES","features":[582]},{"name":"SQL_ISV_VIEWS","features":[582]},{"name":"SQL_ISV_VIEW_COLUMN_USAGE","features":[582]},{"name":"SQL_ISV_VIEW_TABLE_USAGE","features":[582]},{"name":"SQL_IS_DAY","features":[582]},{"name":"SQL_IS_DAY_TO_HOUR","features":[582]},{"name":"SQL_IS_DAY_TO_MINUTE","features":[582]},{"name":"SQL_IS_DAY_TO_SECOND","features":[582]},{"name":"SQL_IS_DEFAULT","features":[582]},{"name":"SQL_IS_HOUR","features":[582]},{"name":"SQL_IS_HOUR_TO_MINUTE","features":[582]},{"name":"SQL_IS_HOUR_TO_SECOND","features":[582]},{"name":"SQL_IS_INSERT_LITERALS","features":[582]},{"name":"SQL_IS_INSERT_SEARCHED","features":[582]},{"name":"SQL_IS_INTEGER","features":[582]},{"name":"SQL_IS_MINUTE","features":[582]},{"name":"SQL_IS_MINUTE_TO_SECOND","features":[582]},{"name":"SQL_IS_MONTH","features":[582]},{"name":"SQL_IS_OFF","features":[582]},{"name":"SQL_IS_ON","features":[582]},{"name":"SQL_IS_POINTER","features":[582]},{"name":"SQL_IS_SECOND","features":[582]},{"name":"SQL_IS_SELECT_INTO","features":[582]},{"name":"SQL_IS_SMALLINT","features":[582]},{"name":"SQL_IS_UINTEGER","features":[582]},{"name":"SQL_IS_USMALLINT","features":[582]},{"name":"SQL_IS_YEAR","features":[582]},{"name":"SQL_IS_YEAR_TO_MONTH","features":[582]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES1","features":[582]},{"name":"SQL_KEYSET_CURSOR_ATTRIBUTES2","features":[582]},{"name":"SQL_KEYSET_SIZE","features":[582]},{"name":"SQL_KEYSET_SIZE_DEFAULT","features":[582]},{"name":"SQL_KEYWORDS","features":[582]},{"name":"SQL_LCK_EXCLUSIVE","features":[582]},{"name":"SQL_LCK_NO_CHANGE","features":[582]},{"name":"SQL_LCK_UNLOCK","features":[582]},{"name":"SQL_LEN_BINARY_ATTR_OFFSET","features":[582]},{"name":"SQL_LEN_DATA_AT_EXEC_OFFSET","features":[582]},{"name":"SQL_LIKE_ESCAPE_CLAUSE","features":[582]},{"name":"SQL_LIKE_ONLY","features":[582]},{"name":"SQL_LOCK_EXCLUSIVE","features":[582]},{"name":"SQL_LOCK_NO_CHANGE","features":[582]},{"name":"SQL_LOCK_TYPES","features":[582]},{"name":"SQL_LOCK_UNLOCK","features":[582]},{"name":"SQL_LOGIN_TIMEOUT","features":[582]},{"name":"SQL_LOGIN_TIMEOUT_DEFAULT","features":[582]},{"name":"SQL_LONGVARBINARY","features":[582]},{"name":"SQL_LONGVARCHAR","features":[582]},{"name":"SQL_MAXIMUM_CATALOG_NAME_LENGTH","features":[582]},{"name":"SQL_MAXIMUM_COLUMNS_IN_GROUP_BY","features":[582]},{"name":"SQL_MAXIMUM_COLUMNS_IN_INDEX","features":[582]},{"name":"SQL_MAXIMUM_COLUMNS_IN_ORDER_BY","features":[582]},{"name":"SQL_MAXIMUM_COLUMNS_IN_SELECT","features":[582]},{"name":"SQL_MAXIMUM_COLUMN_NAME_LENGTH","features":[582]},{"name":"SQL_MAXIMUM_CONCURRENT_ACTIVITIES","features":[582]},{"name":"SQL_MAXIMUM_CURSOR_NAME_LENGTH","features":[582]},{"name":"SQL_MAXIMUM_DRIVER_CONNECTIONS","features":[582]},{"name":"SQL_MAXIMUM_IDENTIFIER_LENGTH","features":[582]},{"name":"SQL_MAXIMUM_INDEX_SIZE","features":[582]},{"name":"SQL_MAXIMUM_ROW_SIZE","features":[582]},{"name":"SQL_MAXIMUM_SCHEMA_NAME_LENGTH","features":[582]},{"name":"SQL_MAXIMUM_STATEMENT_LENGTH","features":[582]},{"name":"SQL_MAXIMUM_TABLES_IN_SELECT","features":[582]},{"name":"SQL_MAXIMUM_USER_NAME_LENGTH","features":[582]},{"name":"SQL_MAX_ASYNC_CONCURRENT_STATEMENTS","features":[582]},{"name":"SQL_MAX_BINARY_LITERAL_LEN","features":[582]},{"name":"SQL_MAX_CATALOG_NAME_LEN","features":[582]},{"name":"SQL_MAX_CHAR_LITERAL_LEN","features":[582]},{"name":"SQL_MAX_COLUMNS_IN_GROUP_BY","features":[582]},{"name":"SQL_MAX_COLUMNS_IN_INDEX","features":[582]},{"name":"SQL_MAX_COLUMNS_IN_ORDER_BY","features":[582]},{"name":"SQL_MAX_COLUMNS_IN_SELECT","features":[582]},{"name":"SQL_MAX_COLUMNS_IN_TABLE","features":[582]},{"name":"SQL_MAX_COLUMN_NAME_LEN","features":[582]},{"name":"SQL_MAX_CONCURRENT_ACTIVITIES","features":[582]},{"name":"SQL_MAX_CURSOR_NAME_LEN","features":[582]},{"name":"SQL_MAX_DRIVER_CONNECTIONS","features":[582]},{"name":"SQL_MAX_DSN_LENGTH","features":[582]},{"name":"SQL_MAX_IDENTIFIER_LEN","features":[582]},{"name":"SQL_MAX_INDEX_SIZE","features":[582]},{"name":"SQL_MAX_LENGTH","features":[582]},{"name":"SQL_MAX_LENGTH_DEFAULT","features":[582]},{"name":"SQL_MAX_MESSAGE_LENGTH","features":[582]},{"name":"SQL_MAX_NUMERIC_LEN","features":[582]},{"name":"SQL_MAX_OPTION_STRING_LENGTH","features":[582]},{"name":"SQL_MAX_OWNER_NAME_LEN","features":[582]},{"name":"SQL_MAX_PROCEDURE_NAME_LEN","features":[582]},{"name":"SQL_MAX_QUALIFIER_NAME_LEN","features":[582]},{"name":"SQL_MAX_ROWS","features":[582]},{"name":"SQL_MAX_ROWS_DEFAULT","features":[582]},{"name":"SQL_MAX_ROW_SIZE","features":[582]},{"name":"SQL_MAX_ROW_SIZE_INCLUDES_LONG","features":[582]},{"name":"SQL_MAX_SCHEMA_NAME_LEN","features":[582]},{"name":"SQL_MAX_SQLSERVERNAME","features":[582]},{"name":"SQL_MAX_STATEMENT_LEN","features":[582]},{"name":"SQL_MAX_TABLES_IN_SELECT","features":[582]},{"name":"SQL_MAX_TABLE_NAME_LEN","features":[582]},{"name":"SQL_MAX_USER_NAME_LEN","features":[582]},{"name":"SQL_MINUTE","features":[582]},{"name":"SQL_MINUTE_TO_SECOND","features":[582]},{"name":"SQL_MODE_DEFAULT","features":[582]},{"name":"SQL_MODE_READ_ONLY","features":[582]},{"name":"SQL_MODE_READ_WRITE","features":[582]},{"name":"SQL_MONTH","features":[582]},{"name":"SQL_MORE_INFO_NO","features":[582]},{"name":"SQL_MORE_INFO_YES","features":[582]},{"name":"SQL_MULTIPLE_ACTIVE_TXN","features":[582]},{"name":"SQL_MULT_RESULT_SETS","features":[582]},{"name":"SQL_NAMED","features":[582]},{"name":"SQL_NB_DEFAULT","features":[582]},{"name":"SQL_NB_OFF","features":[582]},{"name":"SQL_NB_ON","features":[582]},{"name":"SQL_NC_END","features":[582]},{"name":"SQL_NC_HIGH","features":[582]},{"name":"SQL_NC_LOW","features":[582]},{"name":"SQL_NC_OFF","features":[582]},{"name":"SQL_NC_ON","features":[582]},{"name":"SQL_NC_START","features":[582]},{"name":"SQL_NEED_DATA","features":[582]},{"name":"SQL_NEED_LONG_DATA_LEN","features":[582]},{"name":"SQL_NNC_NON_NULL","features":[582]},{"name":"SQL_NNC_NULL","features":[582]},{"name":"SQL_NONSCROLLABLE","features":[582]},{"name":"SQL_NON_NULLABLE_COLUMNS","features":[582]},{"name":"SQL_NOSCAN","features":[582]},{"name":"SQL_NOSCAN_DEFAULT","features":[582]},{"name":"SQL_NOSCAN_OFF","features":[582]},{"name":"SQL_NOSCAN_ON","features":[582]},{"name":"SQL_NOT_DEFERRABLE","features":[582]},{"name":"SQL_NO_ACTION","features":[582]},{"name":"SQL_NO_COLUMN_NUMBER","features":[582]},{"name":"SQL_NO_DATA","features":[582]},{"name":"SQL_NO_DATA_FOUND","features":[582]},{"name":"SQL_NO_NULLS","features":[582]},{"name":"SQL_NO_ROW_NUMBER","features":[582]},{"name":"SQL_NO_TOTAL","features":[582]},{"name":"SQL_NTS","features":[582]},{"name":"SQL_NTSL","features":[582]},{"name":"SQL_NULLABLE","features":[582]},{"name":"SQL_NULLABLE_UNKNOWN","features":[582]},{"name":"SQL_NULL_COLLATION","features":[582]},{"name":"SQL_NULL_DATA","features":[582]},{"name":"SQL_NULL_HANDLE","features":[582]},{"name":"SQL_NULL_HDBC","features":[582]},{"name":"SQL_NULL_HDESC","features":[582]},{"name":"SQL_NULL_HENV","features":[582]},{"name":"SQL_NULL_HSTMT","features":[582]},{"name":"SQL_NUMERIC","features":[582]},{"name":"SQL_NUMERIC_FUNCTIONS","features":[582]},{"name":"SQL_NUMERIC_STRUCT","features":[582]},{"name":"SQL_NUM_FUNCTIONS","features":[582]},{"name":"SQL_OAC_LEVEL1","features":[582]},{"name":"SQL_OAC_LEVEL2","features":[582]},{"name":"SQL_OAC_NONE","features":[582]},{"name":"SQL_ODBC_API_CONFORMANCE","features":[582]},{"name":"SQL_ODBC_CURSORS","features":[582]},{"name":"SQL_ODBC_INTERFACE_CONFORMANCE","features":[582]},{"name":"SQL_ODBC_KEYWORDS","features":[582]},{"name":"SQL_ODBC_SAG_CLI_CONFORMANCE","features":[582]},{"name":"SQL_ODBC_SQL_CONFORMANCE","features":[582]},{"name":"SQL_ODBC_SQL_OPT_IEF","features":[582]},{"name":"SQL_ODBC_VER","features":[582]},{"name":"SQL_OIC_CORE","features":[582]},{"name":"SQL_OIC_LEVEL1","features":[582]},{"name":"SQL_OIC_LEVEL2","features":[582]},{"name":"SQL_OJ_ALL_COMPARISON_OPS","features":[582]},{"name":"SQL_OJ_CAPABILITIES","features":[582]},{"name":"SQL_OJ_FULL","features":[582]},{"name":"SQL_OJ_INNER","features":[582]},{"name":"SQL_OJ_LEFT","features":[582]},{"name":"SQL_OJ_NESTED","features":[582]},{"name":"SQL_OJ_NOT_ORDERED","features":[582]},{"name":"SQL_OJ_RIGHT","features":[582]},{"name":"SQL_OPT_TRACE","features":[582]},{"name":"SQL_OPT_TRACEFILE","features":[582]},{"name":"SQL_OPT_TRACE_DEFAULT","features":[582]},{"name":"SQL_OPT_TRACE_FILE_DEFAULT","features":[582]},{"name":"SQL_OPT_TRACE_OFF","features":[582]},{"name":"SQL_OPT_TRACE_ON","features":[582]},{"name":"SQL_ORDER_BY_COLUMNS_IN_SELECT","features":[582]},{"name":"SQL_OSCC_COMPLIANT","features":[582]},{"name":"SQL_OSCC_NOT_COMPLIANT","features":[582]},{"name":"SQL_OSC_CORE","features":[582]},{"name":"SQL_OSC_EXTENDED","features":[582]},{"name":"SQL_OSC_MINIMUM","features":[582]},{"name":"SQL_OUTER_JOINS","features":[582]},{"name":"SQL_OUTER_JOIN_CAPABILITIES","features":[582]},{"name":"SQL_OU_DML_STATEMENTS","features":[582]},{"name":"SQL_OU_INDEX_DEFINITION","features":[582]},{"name":"SQL_OU_PRIVILEGE_DEFINITION","features":[582]},{"name":"SQL_OU_PROCEDURE_INVOCATION","features":[582]},{"name":"SQL_OU_TABLE_DEFINITION","features":[582]},{"name":"SQL_OV_ODBC2","features":[582]},{"name":"SQL_OV_ODBC3","features":[582]},{"name":"SQL_OV_ODBC3_80","features":[582]},{"name":"SQL_OWNER_TERM","features":[582]},{"name":"SQL_OWNER_USAGE","features":[582]},{"name":"SQL_PACKET_SIZE","features":[582]},{"name":"SQL_PARAM_ARRAY_ROW_COUNTS","features":[582]},{"name":"SQL_PARAM_ARRAY_SELECTS","features":[582]},{"name":"SQL_PARAM_BIND_BY_COLUMN","features":[582]},{"name":"SQL_PARAM_BIND_TYPE_DEFAULT","features":[582]},{"name":"SQL_PARAM_DATA_AVAILABLE","features":[582]},{"name":"SQL_PARAM_DIAG_UNAVAILABLE","features":[582]},{"name":"SQL_PARAM_ERROR","features":[582]},{"name":"SQL_PARAM_IGNORE","features":[582]},{"name":"SQL_PARAM_INPUT","features":[582]},{"name":"SQL_PARAM_INPUT_OUTPUT","features":[582]},{"name":"SQL_PARAM_INPUT_OUTPUT_STREAM","features":[582]},{"name":"SQL_PARAM_OUTPUT","features":[582]},{"name":"SQL_PARAM_OUTPUT_STREAM","features":[582]},{"name":"SQL_PARAM_PROCEED","features":[582]},{"name":"SQL_PARAM_SUCCESS","features":[582]},{"name":"SQL_PARAM_SUCCESS_WITH_INFO","features":[582]},{"name":"SQL_PARAM_TYPE_UNKNOWN","features":[582]},{"name":"SQL_PARAM_UNUSED","features":[582]},{"name":"SQL_PARC_BATCH","features":[582]},{"name":"SQL_PARC_NO_BATCH","features":[582]},{"name":"SQL_PAS_BATCH","features":[582]},{"name":"SQL_PAS_NO_BATCH","features":[582]},{"name":"SQL_PAS_NO_SELECT","features":[582]},{"name":"SQL_PC_DEFAULT","features":[582]},{"name":"SQL_PC_NON_PSEUDO","features":[582]},{"name":"SQL_PC_NOT_PSEUDO","features":[582]},{"name":"SQL_PC_OFF","features":[582]},{"name":"SQL_PC_ON","features":[582]},{"name":"SQL_PC_PSEUDO","features":[582]},{"name":"SQL_PC_UNKNOWN","features":[582]},{"name":"SQL_PERF_START","features":[582]},{"name":"SQL_PERF_STOP","features":[582]},{"name":"SQL_POSITION","features":[582]},{"name":"SQL_POSITIONED_STATEMENTS","features":[582]},{"name":"SQL_POS_ADD","features":[582]},{"name":"SQL_POS_DELETE","features":[582]},{"name":"SQL_POS_OPERATIONS","features":[582]},{"name":"SQL_POS_POSITION","features":[582]},{"name":"SQL_POS_REFRESH","features":[582]},{"name":"SQL_POS_UPDATE","features":[582]},{"name":"SQL_PRED_BASIC","features":[582]},{"name":"SQL_PRED_CHAR","features":[582]},{"name":"SQL_PRED_NONE","features":[582]},{"name":"SQL_PRED_SEARCHABLE","features":[582]},{"name":"SQL_PRESERVE_CURSORS","features":[582]},{"name":"SQL_PROCEDURES","features":[582]},{"name":"SQL_PROCEDURE_TERM","features":[582]},{"name":"SQL_PS_POSITIONED_DELETE","features":[582]},{"name":"SQL_PS_POSITIONED_UPDATE","features":[582]},{"name":"SQL_PS_SELECT_FOR_UPDATE","features":[582]},{"name":"SQL_PT_FUNCTION","features":[582]},{"name":"SQL_PT_PROCEDURE","features":[582]},{"name":"SQL_PT_UNKNOWN","features":[582]},{"name":"SQL_QI_DEFAULT","features":[582]},{"name":"SQL_QI_OFF","features":[582]},{"name":"SQL_QI_ON","features":[582]},{"name":"SQL_QL_END","features":[582]},{"name":"SQL_QL_START","features":[582]},{"name":"SQL_QUALIFIER_LOCATION","features":[582]},{"name":"SQL_QUALIFIER_NAME_SEPARATOR","features":[582]},{"name":"SQL_QUALIFIER_TERM","features":[582]},{"name":"SQL_QUALIFIER_USAGE","features":[582]},{"name":"SQL_QUERY_TIMEOUT","features":[582]},{"name":"SQL_QUERY_TIMEOUT_DEFAULT","features":[582]},{"name":"SQL_QUICK","features":[582]},{"name":"SQL_QUIET_MODE","features":[582]},{"name":"SQL_QUOTED_IDENTIFIER_CASE","features":[582]},{"name":"SQL_QU_DML_STATEMENTS","features":[582]},{"name":"SQL_QU_INDEX_DEFINITION","features":[582]},{"name":"SQL_QU_PRIVILEGE_DEFINITION","features":[582]},{"name":"SQL_QU_PROCEDURE_INVOCATION","features":[582]},{"name":"SQL_QU_TABLE_DEFINITION","features":[582]},{"name":"SQL_RD_DEFAULT","features":[582]},{"name":"SQL_RD_OFF","features":[582]},{"name":"SQL_RD_ON","features":[582]},{"name":"SQL_REAL","features":[582]},{"name":"SQL_REFRESH","features":[582]},{"name":"SQL_REMOTE_PWD","features":[582]},{"name":"SQL_RESET_CONNECTION_YES","features":[582]},{"name":"SQL_RESET_PARAMS","features":[582]},{"name":"SQL_RESET_YES","features":[582]},{"name":"SQL_RESTRICT","features":[582]},{"name":"SQL_RESULT_COL","features":[582]},{"name":"SQL_RETRIEVE_DATA","features":[582]},{"name":"SQL_RETURN_VALUE","features":[582]},{"name":"SQL_RE_DEFAULT","features":[582]},{"name":"SQL_RE_OFF","features":[582]},{"name":"SQL_RE_ON","features":[582]},{"name":"SQL_ROLLBACK","features":[582]},{"name":"SQL_ROWSET_SIZE","features":[582]},{"name":"SQL_ROWSET_SIZE_DEFAULT","features":[582]},{"name":"SQL_ROWVER","features":[582]},{"name":"SQL_ROW_ADDED","features":[582]},{"name":"SQL_ROW_DELETED","features":[582]},{"name":"SQL_ROW_ERROR","features":[582]},{"name":"SQL_ROW_IDENTIFIER","features":[582]},{"name":"SQL_ROW_IGNORE","features":[582]},{"name":"SQL_ROW_NOROW","features":[582]},{"name":"SQL_ROW_NUMBER","features":[582]},{"name":"SQL_ROW_NUMBER_UNKNOWN","features":[582]},{"name":"SQL_ROW_PROCEED","features":[582]},{"name":"SQL_ROW_SUCCESS","features":[582]},{"name":"SQL_ROW_SUCCESS_WITH_INFO","features":[582]},{"name":"SQL_ROW_UPDATED","features":[582]},{"name":"SQL_ROW_UPDATES","features":[582]},{"name":"SQL_SCCO_LOCK","features":[582]},{"name":"SQL_SCCO_OPT_ROWVER","features":[582]},{"name":"SQL_SCCO_OPT_TIMESTAMP","features":[582]},{"name":"SQL_SCCO_OPT_VALUES","features":[582]},{"name":"SQL_SCCO_READ_ONLY","features":[582]},{"name":"SQL_SCC_ISO92_CLI","features":[582]},{"name":"SQL_SCC_XOPEN_CLI_VERSION1","features":[582]},{"name":"SQL_SCHEMA_TERM","features":[582]},{"name":"SQL_SCHEMA_USAGE","features":[582]},{"name":"SQL_SCOPE_CURROW","features":[582]},{"name":"SQL_SCOPE_SESSION","features":[582]},{"name":"SQL_SCOPE_TRANSACTION","features":[582]},{"name":"SQL_SCROLLABLE","features":[582]},{"name":"SQL_SCROLL_CONCURRENCY","features":[582]},{"name":"SQL_SCROLL_DYNAMIC","features":[582]},{"name":"SQL_SCROLL_FORWARD_ONLY","features":[582]},{"name":"SQL_SCROLL_KEYSET_DRIVEN","features":[582]},{"name":"SQL_SCROLL_OPTIONS","features":[582]},{"name":"SQL_SCROLL_STATIC","features":[582]},{"name":"SQL_SC_FIPS127_2_TRANSITIONAL","features":[582]},{"name":"SQL_SC_NON_UNIQUE","features":[582]},{"name":"SQL_SC_SQL92_ENTRY","features":[582]},{"name":"SQL_SC_SQL92_FULL","features":[582]},{"name":"SQL_SC_SQL92_INTERMEDIATE","features":[582]},{"name":"SQL_SC_TRY_UNIQUE","features":[582]},{"name":"SQL_SC_UNIQUE","features":[582]},{"name":"SQL_SDF_CURRENT_DATE","features":[582]},{"name":"SQL_SDF_CURRENT_TIME","features":[582]},{"name":"SQL_SDF_CURRENT_TIMESTAMP","features":[582]},{"name":"SQL_SEARCHABLE","features":[582]},{"name":"SQL_SEARCH_PATTERN_ESCAPE","features":[582]},{"name":"SQL_SECOND","features":[582]},{"name":"SQL_SENSITIVE","features":[582]},{"name":"SQL_SERVER_NAME","features":[582]},{"name":"SQL_SETPARAM_VALUE_MAX","features":[582]},{"name":"SQL_SETPOS_MAX_LOCK_VALUE","features":[582]},{"name":"SQL_SETPOS_MAX_OPTION_VALUE","features":[582]},{"name":"SQL_SET_DEFAULT","features":[582]},{"name":"SQL_SET_NULL","features":[582]},{"name":"SQL_SFKD_CASCADE","features":[582]},{"name":"SQL_SFKD_NO_ACTION","features":[582]},{"name":"SQL_SFKD_SET_DEFAULT","features":[582]},{"name":"SQL_SFKD_SET_NULL","features":[582]},{"name":"SQL_SFKU_CASCADE","features":[582]},{"name":"SQL_SFKU_NO_ACTION","features":[582]},{"name":"SQL_SFKU_SET_DEFAULT","features":[582]},{"name":"SQL_SFKU_SET_NULL","features":[582]},{"name":"SQL_SG_DELETE_TABLE","features":[582]},{"name":"SQL_SG_INSERT_COLUMN","features":[582]},{"name":"SQL_SG_INSERT_TABLE","features":[582]},{"name":"SQL_SG_REFERENCES_COLUMN","features":[582]},{"name":"SQL_SG_REFERENCES_TABLE","features":[582]},{"name":"SQL_SG_SELECT_TABLE","features":[582]},{"name":"SQL_SG_UPDATE_COLUMN","features":[582]},{"name":"SQL_SG_UPDATE_TABLE","features":[582]},{"name":"SQL_SG_USAGE_ON_CHARACTER_SET","features":[582]},{"name":"SQL_SG_USAGE_ON_COLLATION","features":[582]},{"name":"SQL_SG_USAGE_ON_DOMAIN","features":[582]},{"name":"SQL_SG_USAGE_ON_TRANSLATION","features":[582]},{"name":"SQL_SG_WITH_GRANT_OPTION","features":[582]},{"name":"SQL_SIGNED_OFFSET","features":[582]},{"name":"SQL_SIMULATE_CURSOR","features":[582]},{"name":"SQL_SMALLINT","features":[582]},{"name":"SQL_SNVF_BIT_LENGTH","features":[582]},{"name":"SQL_SNVF_CHARACTER_LENGTH","features":[582]},{"name":"SQL_SNVF_CHAR_LENGTH","features":[582]},{"name":"SQL_SNVF_EXTRACT","features":[582]},{"name":"SQL_SNVF_OCTET_LENGTH","features":[582]},{"name":"SQL_SNVF_POSITION","features":[582]},{"name":"SQL_SOPT_SS_BASE","features":[582]},{"name":"SQL_SOPT_SS_CURRENT_COMMAND","features":[582]},{"name":"SQL_SOPT_SS_CURSOR_OPTIONS","features":[582]},{"name":"SQL_SOPT_SS_DEFER_PREPARE","features":[582]},{"name":"SQL_SOPT_SS_HIDDEN_COLUMNS","features":[582]},{"name":"SQL_SOPT_SS_MAX_USED","features":[582]},{"name":"SQL_SOPT_SS_NOBROWSETABLE","features":[582]},{"name":"SQL_SOPT_SS_NOCOUNT_STATUS","features":[582]},{"name":"SQL_SOPT_SS_REGIONALIZE","features":[582]},{"name":"SQL_SOPT_SS_TEXTPTR_LOGGING","features":[582]},{"name":"SQL_SO_DYNAMIC","features":[582]},{"name":"SQL_SO_FORWARD_ONLY","features":[582]},{"name":"SQL_SO_KEYSET_DRIVEN","features":[582]},{"name":"SQL_SO_MIXED","features":[582]},{"name":"SQL_SO_STATIC","features":[582]},{"name":"SQL_SPECIAL_CHARACTERS","features":[582]},{"name":"SQL_SPEC_MAJOR","features":[582]},{"name":"SQL_SPEC_MINOR","features":[582]},{"name":"SQL_SPEC_STRING","features":[582]},{"name":"SQL_SP_BETWEEN","features":[582]},{"name":"SQL_SP_COMPARISON","features":[582]},{"name":"SQL_SP_EXISTS","features":[582]},{"name":"SQL_SP_IN","features":[582]},{"name":"SQL_SP_ISNOTNULL","features":[582]},{"name":"SQL_SP_ISNULL","features":[582]},{"name":"SQL_SP_LIKE","features":[582]},{"name":"SQL_SP_MATCH_FULL","features":[582]},{"name":"SQL_SP_MATCH_PARTIAL","features":[582]},{"name":"SQL_SP_MATCH_UNIQUE_FULL","features":[582]},{"name":"SQL_SP_MATCH_UNIQUE_PARTIAL","features":[582]},{"name":"SQL_SP_OVERLAPS","features":[582]},{"name":"SQL_SP_QUANTIFIED_COMPARISON","features":[582]},{"name":"SQL_SP_UNIQUE","features":[582]},{"name":"SQL_SQL92_DATETIME_FUNCTIONS","features":[582]},{"name":"SQL_SQL92_FOREIGN_KEY_DELETE_RULE","features":[582]},{"name":"SQL_SQL92_FOREIGN_KEY_UPDATE_RULE","features":[582]},{"name":"SQL_SQL92_GRANT","features":[582]},{"name":"SQL_SQL92_NUMERIC_VALUE_FUNCTIONS","features":[582]},{"name":"SQL_SQL92_PREDICATES","features":[582]},{"name":"SQL_SQL92_RELATIONAL_JOIN_OPERATORS","features":[582]},{"name":"SQL_SQL92_REVOKE","features":[582]},{"name":"SQL_SQL92_ROW_VALUE_CONSTRUCTOR","features":[582]},{"name":"SQL_SQL92_STRING_FUNCTIONS","features":[582]},{"name":"SQL_SQL92_VALUE_EXPRESSIONS","features":[582]},{"name":"SQL_SQLSTATE_SIZE","features":[582]},{"name":"SQL_SQLSTATE_SIZEW","features":[582]},{"name":"SQL_SQL_CONFORMANCE","features":[582]},{"name":"SQL_SQ_COMPARISON","features":[582]},{"name":"SQL_SQ_CORRELATED_SUBQUERIES","features":[582]},{"name":"SQL_SQ_EXISTS","features":[582]},{"name":"SQL_SQ_IN","features":[582]},{"name":"SQL_SQ_QUANTIFIED","features":[582]},{"name":"SQL_SRJO_CORRESPONDING_CLAUSE","features":[582]},{"name":"SQL_SRJO_CROSS_JOIN","features":[582]},{"name":"SQL_SRJO_EXCEPT_JOIN","features":[582]},{"name":"SQL_SRJO_FULL_OUTER_JOIN","features":[582]},{"name":"SQL_SRJO_INNER_JOIN","features":[582]},{"name":"SQL_SRJO_INTERSECT_JOIN","features":[582]},{"name":"SQL_SRJO_LEFT_OUTER_JOIN","features":[582]},{"name":"SQL_SRJO_NATURAL_JOIN","features":[582]},{"name":"SQL_SRJO_RIGHT_OUTER_JOIN","features":[582]},{"name":"SQL_SRJO_UNION_JOIN","features":[582]},{"name":"SQL_SRVC_DEFAULT","features":[582]},{"name":"SQL_SRVC_NULL","features":[582]},{"name":"SQL_SRVC_ROW_SUBQUERY","features":[582]},{"name":"SQL_SRVC_VALUE_EXPRESSION","features":[582]},{"name":"SQL_SR_CASCADE","features":[582]},{"name":"SQL_SR_DELETE_TABLE","features":[582]},{"name":"SQL_SR_GRANT_OPTION_FOR","features":[582]},{"name":"SQL_SR_INSERT_COLUMN","features":[582]},{"name":"SQL_SR_INSERT_TABLE","features":[582]},{"name":"SQL_SR_REFERENCES_COLUMN","features":[582]},{"name":"SQL_SR_REFERENCES_TABLE","features":[582]},{"name":"SQL_SR_RESTRICT","features":[582]},{"name":"SQL_SR_SELECT_TABLE","features":[582]},{"name":"SQL_SR_UPDATE_COLUMN","features":[582]},{"name":"SQL_SR_UPDATE_TABLE","features":[582]},{"name":"SQL_SR_USAGE_ON_CHARACTER_SET","features":[582]},{"name":"SQL_SR_USAGE_ON_COLLATION","features":[582]},{"name":"SQL_SR_USAGE_ON_DOMAIN","features":[582]},{"name":"SQL_SR_USAGE_ON_TRANSLATION","features":[582]},{"name":"SQL_SSF_CONVERT","features":[582]},{"name":"SQL_SSF_LOWER","features":[582]},{"name":"SQL_SSF_SUBSTRING","features":[582]},{"name":"SQL_SSF_TRANSLATE","features":[582]},{"name":"SQL_SSF_TRIM_BOTH","features":[582]},{"name":"SQL_SSF_TRIM_LEADING","features":[582]},{"name":"SQL_SSF_TRIM_TRAILING","features":[582]},{"name":"SQL_SSF_UPPER","features":[582]},{"name":"SQL_SS_ADDITIONS","features":[582]},{"name":"SQL_SS_DELETIONS","features":[582]},{"name":"SQL_SS_DL_DEFAULT","features":[582]},{"name":"SQL_SS_QI_DEFAULT","features":[582]},{"name":"SQL_SS_QL_DEFAULT","features":[582]},{"name":"SQL_SS_UPDATES","features":[582]},{"name":"SQL_SS_VARIANT","features":[582]},{"name":"SQL_STANDARD_CLI_CONFORMANCE","features":[582]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES1","features":[582]},{"name":"SQL_STATIC_CURSOR_ATTRIBUTES2","features":[582]},{"name":"SQL_STATIC_SENSITIVITY","features":[582]},{"name":"SQL_STILL_EXECUTING","features":[582]},{"name":"SQL_STMT_OPT_MAX","features":[582]},{"name":"SQL_STMT_OPT_MIN","features":[582]},{"name":"SQL_STRING_FUNCTIONS","features":[582]},{"name":"SQL_SUBQUERIES","features":[582]},{"name":"SQL_SUCCESS","features":[582]},{"name":"SQL_SUCCESS_WITH_INFO","features":[582]},{"name":"SQL_SU_DML_STATEMENTS","features":[582]},{"name":"SQL_SU_INDEX_DEFINITION","features":[582]},{"name":"SQL_SU_PRIVILEGE_DEFINITION","features":[582]},{"name":"SQL_SU_PROCEDURE_INVOCATION","features":[582]},{"name":"SQL_SU_TABLE_DEFINITION","features":[582]},{"name":"SQL_SVE_CASE","features":[582]},{"name":"SQL_SVE_CAST","features":[582]},{"name":"SQL_SVE_COALESCE","features":[582]},{"name":"SQL_SVE_NULLIF","features":[582]},{"name":"SQL_SYSTEM_FUNCTIONS","features":[582]},{"name":"SQL_TABLE_STAT","features":[582]},{"name":"SQL_TABLE_TERM","features":[582]},{"name":"SQL_TC_ALL","features":[582]},{"name":"SQL_TC_DDL_COMMIT","features":[582]},{"name":"SQL_TC_DDL_IGNORE","features":[582]},{"name":"SQL_TC_DML","features":[582]},{"name":"SQL_TC_NONE","features":[582]},{"name":"SQL_TEXTPTR_LOGGING","features":[582]},{"name":"SQL_TIME","features":[582]},{"name":"SQL_TIMEDATE_ADD_INTERVALS","features":[582]},{"name":"SQL_TIMEDATE_DIFF_INTERVALS","features":[582]},{"name":"SQL_TIMEDATE_FUNCTIONS","features":[582]},{"name":"SQL_TIMESTAMP","features":[582]},{"name":"SQL_TIMESTAMP_LEN","features":[582]},{"name":"SQL_TIME_LEN","features":[582]},{"name":"SQL_TINYINT","features":[582]},{"name":"SQL_TL_DEFAULT","features":[582]},{"name":"SQL_TL_OFF","features":[582]},{"name":"SQL_TL_ON","features":[582]},{"name":"SQL_TRANSACTION_CAPABLE","features":[582]},{"name":"SQL_TRANSACTION_ISOLATION_OPTION","features":[582]},{"name":"SQL_TRANSACTION_READ_COMMITTED","features":[582]},{"name":"SQL_TRANSACTION_READ_UNCOMMITTED","features":[582]},{"name":"SQL_TRANSACTION_REPEATABLE_READ","features":[582]},{"name":"SQL_TRANSACTION_SERIALIZABLE","features":[582]},{"name":"SQL_TRANSLATE_DLL","features":[582]},{"name":"SQL_TRANSLATE_OPTION","features":[582]},{"name":"SQL_TRUE","features":[582]},{"name":"SQL_TXN_CAPABLE","features":[582]},{"name":"SQL_TXN_ISOLATION","features":[582]},{"name":"SQL_TXN_ISOLATION_OPTION","features":[582]},{"name":"SQL_TXN_READ_COMMITTED","features":[582]},{"name":"SQL_TXN_READ_UNCOMMITTED","features":[582]},{"name":"SQL_TXN_REPEATABLE_READ","features":[582]},{"name":"SQL_TXN_SERIALIZABLE","features":[582]},{"name":"SQL_TXN_VERSIONING","features":[582]},{"name":"SQL_TYPE_DATE","features":[582]},{"name":"SQL_TYPE_DRIVER_END","features":[582]},{"name":"SQL_TYPE_DRIVER_START","features":[582]},{"name":"SQL_TYPE_MAX","features":[582]},{"name":"SQL_TYPE_MIN","features":[582]},{"name":"SQL_TYPE_NULL","features":[582]},{"name":"SQL_TYPE_TIME","features":[582]},{"name":"SQL_TYPE_TIMESTAMP","features":[582]},{"name":"SQL_UB_DEFAULT","features":[582]},{"name":"SQL_UB_FIXED","features":[582]},{"name":"SQL_UB_OFF","features":[582]},{"name":"SQL_UB_ON","features":[582]},{"name":"SQL_UB_VARIABLE","features":[582]},{"name":"SQL_UNBIND","features":[582]},{"name":"SQL_UNICODE","features":[582]},{"name":"SQL_UNICODE_CHAR","features":[582]},{"name":"SQL_UNICODE_LONGVARCHAR","features":[582]},{"name":"SQL_UNICODE_VARCHAR","features":[582]},{"name":"SQL_UNION","features":[582]},{"name":"SQL_UNION_STATEMENT","features":[582]},{"name":"SQL_UNKNOWN_TYPE","features":[582]},{"name":"SQL_UNNAMED","features":[582]},{"name":"SQL_UNSEARCHABLE","features":[582]},{"name":"SQL_UNSIGNED_OFFSET","features":[582]},{"name":"SQL_UNSPECIFIED","features":[582]},{"name":"SQL_UPDATE","features":[582]},{"name":"SQL_UPDATE_BY_BOOKMARK","features":[582]},{"name":"SQL_UP_DEFAULT","features":[582]},{"name":"SQL_UP_OFF","features":[582]},{"name":"SQL_UP_ON","features":[582]},{"name":"SQL_UP_ON_DROP","features":[582]},{"name":"SQL_USER_NAME","features":[582]},{"name":"SQL_USE_BOOKMARKS","features":[582]},{"name":"SQL_USE_PROCEDURE_FOR_PREPARE","features":[582]},{"name":"SQL_US_UNION","features":[582]},{"name":"SQL_US_UNION_ALL","features":[582]},{"name":"SQL_U_UNION","features":[582]},{"name":"SQL_U_UNION_ALL","features":[582]},{"name":"SQL_VARBINARY","features":[582]},{"name":"SQL_VARCHAR","features":[582]},{"name":"SQL_VARLEN_DATA","features":[582]},{"name":"SQL_WARN_NO","features":[582]},{"name":"SQL_WARN_YES","features":[582]},{"name":"SQL_WCHAR","features":[582]},{"name":"SQL_WLONGVARCHAR","features":[582]},{"name":"SQL_WVARCHAR","features":[582]},{"name":"SQL_XL_DEFAULT","features":[582]},{"name":"SQL_XL_OFF","features":[582]},{"name":"SQL_XL_ON","features":[582]},{"name":"SQL_XOPEN_CLI_YEAR","features":[582]},{"name":"SQL_YEAR","features":[582]},{"name":"SQL_YEAR_MONTH_STRUCT","features":[582]},{"name":"SQL_YEAR_TO_MONTH","features":[582]},{"name":"SQLudtBINARY","features":[582]},{"name":"SQLudtBIT","features":[582]},{"name":"SQLudtBITN","features":[582]},{"name":"SQLudtCHAR","features":[582]},{"name":"SQLudtDATETIM4","features":[582]},{"name":"SQLudtDATETIME","features":[582]},{"name":"SQLudtDATETIMN","features":[582]},{"name":"SQLudtDECML","features":[582]},{"name":"SQLudtDECMLN","features":[582]},{"name":"SQLudtFLT4","features":[582]},{"name":"SQLudtFLT8","features":[582]},{"name":"SQLudtFLTN","features":[582]},{"name":"SQLudtIMAGE","features":[582]},{"name":"SQLudtINT1","features":[582]},{"name":"SQLudtINT2","features":[582]},{"name":"SQLudtINT4","features":[582]},{"name":"SQLudtINTN","features":[582]},{"name":"SQLudtMONEY","features":[582]},{"name":"SQLudtMONEY4","features":[582]},{"name":"SQLudtMONEYN","features":[582]},{"name":"SQLudtNUM","features":[582]},{"name":"SQLudtNUMN","features":[582]},{"name":"SQLudtSYSNAME","features":[582]},{"name":"SQLudtTEXT","features":[582]},{"name":"SQLudtTIMESTAMP","features":[582]},{"name":"SQLudtUNIQUEIDENTIFIER","features":[582]},{"name":"SQLudtVARBINARY","features":[582]},{"name":"SQLudtVARCHAR","features":[582]},{"name":"SQMO_DEFAULT_PROPERTY","features":[582]},{"name":"SQMO_GENERATOR_FOR_TYPE","features":[582]},{"name":"SQMO_MAP_PROPERTY","features":[582]},{"name":"SQMO_VIRTUAL_PROPERTY","features":[582]},{"name":"SQPE_EXTRA_CLOSING_PARENTHESIS","features":[582]},{"name":"SQPE_EXTRA_OPENING_PARENTHESIS","features":[582]},{"name":"SQPE_IGNORED_CONNECTOR","features":[582]},{"name":"SQPE_IGNORED_KEYWORD","features":[582]},{"name":"SQPE_IGNORED_MODIFIER","features":[582]},{"name":"SQPE_NONE","features":[582]},{"name":"SQPE_UNHANDLED","features":[582]},{"name":"SQRO_ADD_ROBUST_ITEM_NAME","features":[582]},{"name":"SQRO_ADD_VALUE_TYPE_FOR_PLAIN_VALUES","features":[582]},{"name":"SQRO_ALWAYS_ONE_INTERVAL","features":[582]},{"name":"SQRO_DEFAULT","features":[582]},{"name":"SQRO_DONT_MAP_RELATIONS","features":[582]},{"name":"SQRO_DONT_REMOVE_UNRESTRICTED_KEYWORDS","features":[582]},{"name":"SQRO_DONT_RESOLVE_DATETIME","features":[582]},{"name":"SQRO_DONT_RESOLVE_RANGES","features":[582]},{"name":"SQRO_DONT_SIMPLIFY_CONDITION_TREES","features":[582]},{"name":"SQRO_DONT_SPLIT_WORDS","features":[582]},{"name":"SQRO_IGNORE_PHRASE_ORDER","features":[582]},{"name":"SQSO_AUTOMATIC_WILDCARD","features":[582]},{"name":"SQSO_CONNECTOR_CASE","features":[582]},{"name":"SQSO_IMPLICIT_CONNECTOR","features":[582]},{"name":"SQSO_LANGUAGE_KEYWORDS","features":[582]},{"name":"SQSO_LOCALE_WORD_BREAKING","features":[582]},{"name":"SQSO_NATURAL_SYNTAX","features":[582]},{"name":"SQSO_SCHEMA","features":[582]},{"name":"SQSO_SYNTAX","features":[582]},{"name":"SQSO_TIME_ZONE","features":[582]},{"name":"SQSO_TRACE_LEVEL","features":[582]},{"name":"SQSO_WORD_BREAKER","features":[582]},{"name":"SQS_ADVANCED_QUERY_SYNTAX","features":[582]},{"name":"SQS_NATURAL_QUERY_SYNTAX","features":[582]},{"name":"SQS_NO_SYNTAX","features":[582]},{"name":"SRCH_SCHEMA_CACHE_E_UNEXPECTED","features":[582]},{"name":"SSERRORINFO","features":[582]},{"name":"SSPROPVAL_COMMANDTYPE_BULKLOAD","features":[582]},{"name":"SSPROPVAL_COMMANDTYPE_REGULAR","features":[582]},{"name":"SSPROPVAL_USEPROCFORPREP_OFF","features":[582]},{"name":"SSPROPVAL_USEPROCFORPREP_ON","features":[582]},{"name":"SSPROPVAL_USEPROCFORPREP_ON_DROP","features":[582]},{"name":"SSPROP_ALLOWNATIVEVARIANT","features":[582]},{"name":"SSPROP_AUTH_REPL_SERVER_NAME","features":[582]},{"name":"SSPROP_CHARACTERSET","features":[582]},{"name":"SSPROP_COLUMNLEVELCOLLATION","features":[582]},{"name":"SSPROP_COL_COLLATIONNAME","features":[582]},{"name":"SSPROP_CURRENTCOLLATION","features":[582]},{"name":"SSPROP_CURSORAUTOFETCH","features":[582]},{"name":"SSPROP_DEFERPREPARE","features":[582]},{"name":"SSPROP_ENABLEFASTLOAD","features":[582]},{"name":"SSPROP_FASTLOADKEEPIDENTITY","features":[582]},{"name":"SSPROP_FASTLOADKEEPNULLS","features":[582]},{"name":"SSPROP_FASTLOADOPTIONS","features":[582]},{"name":"SSPROP_INIT_APPNAME","features":[582]},{"name":"SSPROP_INIT_AUTOTRANSLATE","features":[582]},{"name":"SSPROP_INIT_CURRENTLANGUAGE","features":[582]},{"name":"SSPROP_INIT_ENCRYPT","features":[582]},{"name":"SSPROP_INIT_FILENAME","features":[582]},{"name":"SSPROP_INIT_NETWORKADDRESS","features":[582]},{"name":"SSPROP_INIT_NETWORKLIBRARY","features":[582]},{"name":"SSPROP_INIT_PACKETSIZE","features":[582]},{"name":"SSPROP_INIT_TAGCOLUMNCOLLATION","features":[582]},{"name":"SSPROP_INIT_USEPROCFORPREP","features":[582]},{"name":"SSPROP_INIT_WSID","features":[582]},{"name":"SSPROP_IRowsetFastLoad","features":[582]},{"name":"SSPROP_MAXBLOBLENGTH","features":[582]},{"name":"SSPROP_QUOTEDCATALOGNAMES","features":[582]},{"name":"SSPROP_SORTORDER","features":[582]},{"name":"SSPROP_SQLXMLXPROGID","features":[582]},{"name":"SSPROP_STREAM_BASEPATH","features":[582]},{"name":"SSPROP_STREAM_COMMANDTYPE","features":[582]},{"name":"SSPROP_STREAM_CONTENTTYPE","features":[582]},{"name":"SSPROP_STREAM_FLAGS","features":[582]},{"name":"SSPROP_STREAM_MAPPINGSCHEMA","features":[582]},{"name":"SSPROP_STREAM_XMLROOT","features":[582]},{"name":"SSPROP_STREAM_XSL","features":[582]},{"name":"SSPROP_UNICODECOMPARISONSTYLE","features":[582]},{"name":"SSPROP_UNICODELCID","features":[582]},{"name":"SSVARIANT","features":[305,356,582]},{"name":"STD_BOOKMARKLENGTH","features":[582]},{"name":"STGM_COLLECTION","features":[582]},{"name":"STGM_OPEN","features":[582]},{"name":"STGM_OUTPUT","features":[582]},{"name":"STGM_RECURSIVE","features":[582]},{"name":"STGM_STRICTOPEN","features":[582]},{"name":"STREAM_FLAGS_DISALLOW_ABSOLUTE_PATH","features":[582]},{"name":"STREAM_FLAGS_DISALLOW_QUERY","features":[582]},{"name":"STREAM_FLAGS_DISALLOW_UPDATEGRAMS","features":[582]},{"name":"STREAM_FLAGS_DISALLOW_URL","features":[582]},{"name":"STREAM_FLAGS_DONTCACHEMAPPINGSCHEMA","features":[582]},{"name":"STREAM_FLAGS_DONTCACHETEMPLATE","features":[582]},{"name":"STREAM_FLAGS_DONTCACHEXSL","features":[582]},{"name":"STREAM_FLAGS_RESERVED","features":[582]},{"name":"STRUCTURED_QUERY_MULTIOPTION","features":[582]},{"name":"STRUCTURED_QUERY_PARSE_ERROR","features":[582]},{"name":"STRUCTURED_QUERY_RESOLVE_OPTION","features":[582]},{"name":"STRUCTURED_QUERY_SINGLE_OPTION","features":[582]},{"name":"STRUCTURED_QUERY_SYNTAX","features":[582]},{"name":"STS_ABORTXMLPARSE","features":[582]},{"name":"STS_WS_ERROR","features":[582]},{"name":"SUBSCRIPTIONINFO","features":[305,582]},{"name":"SUBSCRIPTIONINFOFLAGS","features":[582]},{"name":"SUBSCRIPTIONITEMINFO","features":[582]},{"name":"SUBSCRIPTIONSCHEDULE","features":[582]},{"name":"SUBSCRIPTIONTYPE","features":[582]},{"name":"SUBSINFO_ALLFLAGS","features":[582]},{"name":"SUBSINFO_CHANGESONLY","features":[582]},{"name":"SUBSINFO_CHANNELFLAGS","features":[582]},{"name":"SUBSINFO_FRIENDLYNAME","features":[582]},{"name":"SUBSINFO_GLEAM","features":[582]},{"name":"SUBSINFO_MAILNOT","features":[582]},{"name":"SUBSINFO_MAXSIZEKB","features":[582]},{"name":"SUBSINFO_NEEDPASSWORD","features":[582]},{"name":"SUBSINFO_PASSWORD","features":[582]},{"name":"SUBSINFO_RECURSE","features":[582]},{"name":"SUBSINFO_SCHEDULE","features":[582]},{"name":"SUBSINFO_TASKFLAGS","features":[582]},{"name":"SUBSINFO_TYPE","features":[582]},{"name":"SUBSINFO_USER","features":[582]},{"name":"SUBSINFO_WEBCRAWL","features":[582]},{"name":"SUBSMGRENUM_MASK","features":[582]},{"name":"SUBSMGRENUM_TEMP","features":[582]},{"name":"SUBSMGRUPDATE_MASK","features":[582]},{"name":"SUBSMGRUPDATE_MINIMIZE","features":[582]},{"name":"SUBSSCHED_AUTO","features":[582]},{"name":"SUBSSCHED_CUSTOM","features":[582]},{"name":"SUBSSCHED_DAILY","features":[582]},{"name":"SUBSSCHED_MANUAL","features":[582]},{"name":"SUBSSCHED_WEEKLY","features":[582]},{"name":"SUBSTYPE_CHANNEL","features":[582]},{"name":"SUBSTYPE_DESKTOPCHANNEL","features":[582]},{"name":"SUBSTYPE_DESKTOPURL","features":[582]},{"name":"SUBSTYPE_EXTERNAL","features":[582]},{"name":"SUBSTYPE_URL","features":[582]},{"name":"SUCCEED","features":[582]},{"name":"SUCCEED_ABORT","features":[582]},{"name":"SUCCEED_ASYNC","features":[582]},{"name":"SubscriptionMgr","features":[582]},{"name":"TEXT_SOURCE","features":[582]},{"name":"TIMEOUT_INFO","features":[582]},{"name":"TIMESTAMP_STRUCT","features":[582]},{"name":"TIME_STRUCT","features":[582]},{"name":"TRACE_ON","features":[582]},{"name":"TRACE_VERSION","features":[582]},{"name":"TRACE_VS_EVENT_ON","features":[582]},{"name":"VECTORRESTRICTION","features":[510,429,582]},{"name":"VT_SS_BINARY","features":[582]},{"name":"VT_SS_BIT","features":[582]},{"name":"VT_SS_DATETIME","features":[582]},{"name":"VT_SS_DECIMAL","features":[582]},{"name":"VT_SS_EMPTY","features":[582]},{"name":"VT_SS_GUID","features":[582]},{"name":"VT_SS_I2","features":[582]},{"name":"VT_SS_I4","features":[582]},{"name":"VT_SS_I8","features":[582]},{"name":"VT_SS_MONEY","features":[582]},{"name":"VT_SS_NULL","features":[582]},{"name":"VT_SS_NUMERIC","features":[582]},{"name":"VT_SS_R4","features":[582]},{"name":"VT_SS_R8","features":[582]},{"name":"VT_SS_SMALLDATETIME","features":[582]},{"name":"VT_SS_SMALLMONEY","features":[582]},{"name":"VT_SS_STRING","features":[582]},{"name":"VT_SS_UI1","features":[582]},{"name":"VT_SS_UNKNOWN","features":[582]},{"name":"VT_SS_VARBINARY","features":[582]},{"name":"VT_SS_VARSTRING","features":[582]},{"name":"VT_SS_WSTRING","features":[582]},{"name":"VT_SS_WVARSTRING","features":[582]},{"name":"WEBCRAWL_DONT_MAKE_STICKY","features":[582]},{"name":"WEBCRAWL_GET_BGSOUNDS","features":[582]},{"name":"WEBCRAWL_GET_CONTROLS","features":[582]},{"name":"WEBCRAWL_GET_IMAGES","features":[582]},{"name":"WEBCRAWL_GET_VIDEOS","features":[582]},{"name":"WEBCRAWL_IGNORE_ROBOTSTXT","features":[582]},{"name":"WEBCRAWL_LINKS_ELSEWHERE","features":[582]},{"name":"WEBCRAWL_ONLY_LINKS_TO_HTML","features":[582]},{"name":"WEBCRAWL_RECURSEFLAGS","features":[582]},{"name":"XML_E_BADSXQL","features":[582]},{"name":"XML_E_NODEFAULTNS","features":[582]},{"name":"_MAPI_E_ACCOUNT_DISABLED","features":[582]},{"name":"_MAPI_E_BAD_CHARWIDTH","features":[582]},{"name":"_MAPI_E_BAD_COLUMN","features":[582]},{"name":"_MAPI_E_BUSY","features":[582]},{"name":"_MAPI_E_COMPUTED","features":[582]},{"name":"_MAPI_E_CORRUPT_DATA","features":[582]},{"name":"_MAPI_E_DISK_ERROR","features":[582]},{"name":"_MAPI_E_END_OF_SESSION","features":[582]},{"name":"_MAPI_E_EXTENDED_ERROR","features":[582]},{"name":"_MAPI_E_FAILONEPROVIDER","features":[582]},{"name":"_MAPI_E_INVALID_ACCESS_TIME","features":[582]},{"name":"_MAPI_E_INVALID_ENTRYID","features":[582]},{"name":"_MAPI_E_INVALID_OBJECT","features":[582]},{"name":"_MAPI_E_INVALID_WORKSTATION_ACCOUNT","features":[582]},{"name":"_MAPI_E_LOGON_FAILED","features":[582]},{"name":"_MAPI_E_MISSING_REQUIRED_COLUMN","features":[582]},{"name":"_MAPI_E_NETWORK_ERROR","features":[582]},{"name":"_MAPI_E_NOT_ENOUGH_DISK","features":[582]},{"name":"_MAPI_E_NOT_ENOUGH_RESOURCES","features":[582]},{"name":"_MAPI_E_NOT_FOUND","features":[582]},{"name":"_MAPI_E_NO_SUPPORT","features":[582]},{"name":"_MAPI_E_OBJECT_CHANGED","features":[582]},{"name":"_MAPI_E_OBJECT_DELETED","features":[582]},{"name":"_MAPI_E_PASSWORD_CHANGE_REQUIRED","features":[582]},{"name":"_MAPI_E_PASSWORD_EXPIRED","features":[582]},{"name":"_MAPI_E_SESSION_LIMIT","features":[582]},{"name":"_MAPI_E_STRING_TOO_LONG","features":[582]},{"name":"_MAPI_E_TOO_COMPLEX","features":[582]},{"name":"_MAPI_E_UNABLE_TO_ABORT","features":[582]},{"name":"_MAPI_E_UNCONFIGURED","features":[582]},{"name":"_MAPI_E_UNKNOWN_CPID","features":[582]},{"name":"_MAPI_E_UNKNOWN_ENTRYID","features":[582]},{"name":"_MAPI_E_UNKNOWN_FLAGS","features":[582]},{"name":"_MAPI_E_UNKNOWN_LCID","features":[582]},{"name":"_MAPI_E_USER_CANCEL","features":[582]},{"name":"_MAPI_E_VERSION","features":[582]},{"name":"_MAPI_W_NO_SERVICE","features":[582]},{"name":"bcp_batch","features":[582]},{"name":"bcp_bind","features":[582]},{"name":"bcp_colfmt","features":[582]},{"name":"bcp_collen","features":[582]},{"name":"bcp_colptr","features":[582]},{"name":"bcp_columns","features":[582]},{"name":"bcp_control","features":[582]},{"name":"bcp_done","features":[582]},{"name":"bcp_exec","features":[582]},{"name":"bcp_getcolfmt","features":[582]},{"name":"bcp_initA","features":[582]},{"name":"bcp_initW","features":[582]},{"name":"bcp_moretext","features":[582]},{"name":"bcp_readfmtA","features":[582]},{"name":"bcp_readfmtW","features":[582]},{"name":"bcp_sendrow","features":[582]},{"name":"bcp_setcolfmt","features":[582]},{"name":"bcp_writefmtA","features":[582]},{"name":"bcp_writefmtW","features":[582]},{"name":"dbprtypeA","features":[582]},{"name":"dbprtypeW","features":[582]},{"name":"eAUTH_TYPE_ANONYMOUS","features":[582]},{"name":"eAUTH_TYPE_BASIC","features":[582]},{"name":"eAUTH_TYPE_NTLM","features":[582]}],"605":[{"name":"CONDITION_OPERATION","features":[583]},{"name":"CONDITION_TYPE","features":[583]},{"name":"COP_APPLICATION_SPECIFIC","features":[583]},{"name":"COP_DOSWILDCARDS","features":[583]},{"name":"COP_EQUAL","features":[583]},{"name":"COP_GREATERTHAN","features":[583]},{"name":"COP_GREATERTHANOREQUAL","features":[583]},{"name":"COP_IMPLICIT","features":[583]},{"name":"COP_LESSTHAN","features":[583]},{"name":"COP_LESSTHANOREQUAL","features":[583]},{"name":"COP_NOTEQUAL","features":[583]},{"name":"COP_VALUE_CONTAINS","features":[583]},{"name":"COP_VALUE_ENDSWITH","features":[583]},{"name":"COP_VALUE_NOTCONTAINS","features":[583]},{"name":"COP_VALUE_STARTSWITH","features":[583]},{"name":"COP_WORD_EQUAL","features":[583]},{"name":"COP_WORD_STARTSWITH","features":[583]},{"name":"CT_AND_CONDITION","features":[583]},{"name":"CT_LEAF_CONDITION","features":[583]},{"name":"CT_NOT_CONDITION","features":[583]},{"name":"CT_OR_CONDITION","features":[583]}],"606":[{"name":"IWSCDefaultProduct","features":[356,584]},{"name":"IWSCProductList","features":[356,584]},{"name":"IWscProduct","features":[356,584]},{"name":"IWscProduct2","features":[356,584]},{"name":"IWscProduct3","features":[356,584]},{"name":"SECURITY_PRODUCT_TYPE","features":[584]},{"name":"SECURITY_PRODUCT_TYPE_ANTISPYWARE","features":[584]},{"name":"SECURITY_PRODUCT_TYPE_ANTIVIRUS","features":[584]},{"name":"SECURITY_PRODUCT_TYPE_FIREWALL","features":[584]},{"name":"WSCDefaultProduct","features":[584]},{"name":"WSCProductList","features":[584]},{"name":"WSC_SECURITY_PRODUCT_OUT_OF_DATE","features":[584]},{"name":"WSC_SECURITY_PRODUCT_STATE","features":[584]},{"name":"WSC_SECURITY_PRODUCT_STATE_EXPIRED","features":[584]},{"name":"WSC_SECURITY_PRODUCT_STATE_OFF","features":[584]},{"name":"WSC_SECURITY_PRODUCT_STATE_ON","features":[584]},{"name":"WSC_SECURITY_PRODUCT_STATE_SNOOZED","features":[584]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS","features":[584]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_NEEDED","features":[584]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_ACTION_RECOMMENDED","features":[584]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NOT_SET","features":[584]},{"name":"WSC_SECURITY_PRODUCT_SUBSTATUS_NO_ACTION","features":[584]},{"name":"WSC_SECURITY_PRODUCT_UP_TO_DATE","features":[584]},{"name":"WSC_SECURITY_PROVIDER","features":[584]},{"name":"WSC_SECURITY_PROVIDER_ALL","features":[584]},{"name":"WSC_SECURITY_PROVIDER_ANTISPYWARE","features":[584]},{"name":"WSC_SECURITY_PROVIDER_ANTIVIRUS","features":[584]},{"name":"WSC_SECURITY_PROVIDER_AUTOUPDATE_SETTINGS","features":[584]},{"name":"WSC_SECURITY_PROVIDER_FIREWALL","features":[584]},{"name":"WSC_SECURITY_PROVIDER_HEALTH","features":[584]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_GOOD","features":[584]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_NOTMONITORED","features":[584]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_POOR","features":[584]},{"name":"WSC_SECURITY_PROVIDER_HEALTH_SNOOZE","features":[584]},{"name":"WSC_SECURITY_PROVIDER_INTERNET_SETTINGS","features":[584]},{"name":"WSC_SECURITY_PROVIDER_NONE","features":[584]},{"name":"WSC_SECURITY_PROVIDER_SERVICE","features":[584]},{"name":"WSC_SECURITY_PROVIDER_USER_ACCOUNT_CONTROL","features":[584]},{"name":"WSC_SECURITY_SIGNATURE_STATUS","features":[584]},{"name":"WscGetAntiMalwareUri","features":[584]},{"name":"WscGetSecurityProviderHealth","features":[584]},{"name":"WscQueryAntiMalwareUri","features":[584]},{"name":"WscRegisterForChanges","features":[305,584,340]},{"name":"WscRegisterForUserNotifications","features":[584]},{"name":"WscUnRegisterChanges","features":[305,584]}],"607":[{"name":"IWsbApplicationAsync","features":[585]},{"name":"IWsbApplicationBackupSupport","features":[585]},{"name":"IWsbApplicationRestoreSupport","features":[585]},{"name":"WSBAPP_ASYNC_IN_PROGRESS","features":[585]},{"name":"WSB_MAX_OB_STATUS_ENTRY","features":[585]},{"name":"WSB_MAX_OB_STATUS_VALUE_TYPE_PAIR","features":[585]},{"name":"WSB_OB_ET_DATETIME","features":[585]},{"name":"WSB_OB_ET_MAX","features":[585]},{"name":"WSB_OB_ET_NUMBER","features":[585]},{"name":"WSB_OB_ET_SIZE","features":[585]},{"name":"WSB_OB_ET_STRING","features":[585]},{"name":"WSB_OB_ET_TIME","features":[585]},{"name":"WSB_OB_ET_UNDEFINED","features":[585]},{"name":"WSB_OB_REGISTRATION_INFO","features":[305,585]},{"name":"WSB_OB_STATUS_ENTRY","features":[585]},{"name":"WSB_OB_STATUS_ENTRY_PAIR_TYPE","features":[585]},{"name":"WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR","features":[585]},{"name":"WSB_OB_STATUS_INFO","features":[585]}],"608":[{"name":"CUSTOM_SYSTEM_STATE_CHANGE_EVENT_GUID","features":[469]},{"name":"ChangeServiceConfig2A","features":[305,469]},{"name":"ChangeServiceConfig2W","features":[305,469]},{"name":"ChangeServiceConfigA","features":[305,469]},{"name":"ChangeServiceConfigW","features":[305,469]},{"name":"CloseServiceHandle","features":[305,469]},{"name":"ControlService","features":[305,469]},{"name":"ControlServiceExA","features":[305,469]},{"name":"ControlServiceExW","features":[305,469]},{"name":"CreateServiceA","features":[469]},{"name":"CreateServiceW","features":[469]},{"name":"DOMAIN_JOIN_GUID","features":[469]},{"name":"DOMAIN_LEAVE_GUID","features":[469]},{"name":"DeleteService","features":[305,469]},{"name":"ENUM_SERVICE_STATE","features":[469]},{"name":"ENUM_SERVICE_STATUSA","features":[469]},{"name":"ENUM_SERVICE_STATUSW","features":[469]},{"name":"ENUM_SERVICE_STATUS_PROCESSA","features":[469]},{"name":"ENUM_SERVICE_STATUS_PROCESSW","features":[469]},{"name":"ENUM_SERVICE_TYPE","features":[469]},{"name":"EnumDependentServicesA","features":[305,469]},{"name":"EnumDependentServicesW","features":[305,469]},{"name":"EnumServicesStatusA","features":[305,469]},{"name":"EnumServicesStatusExA","features":[305,469]},{"name":"EnumServicesStatusExW","features":[305,469]},{"name":"EnumServicesStatusW","features":[305,469]},{"name":"FIREWALL_PORT_CLOSE_GUID","features":[469]},{"name":"FIREWALL_PORT_OPEN_GUID","features":[469]},{"name":"GetServiceDirectory","features":[469]},{"name":"GetServiceDisplayNameA","features":[305,469]},{"name":"GetServiceDisplayNameW","features":[305,469]},{"name":"GetServiceKeyNameA","features":[305,469]},{"name":"GetServiceKeyNameW","features":[305,469]},{"name":"GetServiceRegistryStateKey","features":[366,469]},{"name":"GetSharedServiceDirectory","features":[469]},{"name":"GetSharedServiceRegistryStateKey","features":[366,469]},{"name":"HANDLER_FUNCTION","features":[469]},{"name":"HANDLER_FUNCTION_EX","features":[469]},{"name":"LPHANDLER_FUNCTION","features":[469]},{"name":"LPHANDLER_FUNCTION_EX","features":[469]},{"name":"LPSERVICE_MAIN_FUNCTIONA","features":[469]},{"name":"LPSERVICE_MAIN_FUNCTIONW","features":[469]},{"name":"LockServiceDatabase","features":[469]},{"name":"MACHINE_POLICY_PRESENT_GUID","features":[469]},{"name":"MaxServiceRegistryStateType","features":[469]},{"name":"NAMED_PIPE_EVENT_GUID","features":[469]},{"name":"NETWORK_MANAGER_FIRST_IP_ADDRESS_ARRIVAL_GUID","features":[469]},{"name":"NETWORK_MANAGER_LAST_IP_ADDRESS_REMOVAL_GUID","features":[469]},{"name":"NotifyBootConfigStatus","features":[305,469]},{"name":"NotifyServiceStatusChangeA","features":[469]},{"name":"NotifyServiceStatusChangeW","features":[469]},{"name":"OpenSCManagerA","features":[469]},{"name":"OpenSCManagerW","features":[469]},{"name":"OpenServiceA","features":[469]},{"name":"OpenServiceW","features":[469]},{"name":"PFN_SC_NOTIFY_CALLBACK","features":[469]},{"name":"PSC_NOTIFICATION_CALLBACK","features":[469]},{"name":"PSC_NOTIFICATION_REGISTRATION","features":[469]},{"name":"QUERY_SERVICE_CONFIGA","features":[469]},{"name":"QUERY_SERVICE_CONFIGW","features":[469]},{"name":"QUERY_SERVICE_LOCK_STATUSA","features":[469]},{"name":"QUERY_SERVICE_LOCK_STATUSW","features":[469]},{"name":"QueryServiceConfig2A","features":[305,469]},{"name":"QueryServiceConfig2W","features":[305,469]},{"name":"QueryServiceConfigA","features":[305,469]},{"name":"QueryServiceConfigW","features":[305,469]},{"name":"QueryServiceDynamicInformation","features":[305,469]},{"name":"QueryServiceLockStatusA","features":[305,469]},{"name":"QueryServiceLockStatusW","features":[305,469]},{"name":"QueryServiceObjectSecurity","features":[305,308,469]},{"name":"QueryServiceStatus","features":[305,469]},{"name":"QueryServiceStatusEx","features":[305,469]},{"name":"RPC_INTERFACE_EVENT_GUID","features":[469]},{"name":"RegisterServiceCtrlHandlerA","features":[469]},{"name":"RegisterServiceCtrlHandlerExA","features":[469]},{"name":"RegisterServiceCtrlHandlerExW","features":[469]},{"name":"RegisterServiceCtrlHandlerW","features":[469]},{"name":"SC_ACTION","features":[469]},{"name":"SC_ACTION_NONE","features":[469]},{"name":"SC_ACTION_OWN_RESTART","features":[469]},{"name":"SC_ACTION_REBOOT","features":[469]},{"name":"SC_ACTION_RESTART","features":[469]},{"name":"SC_ACTION_RUN_COMMAND","features":[469]},{"name":"SC_ACTION_TYPE","features":[469]},{"name":"SC_AGGREGATE_STORAGE_KEY","features":[469]},{"name":"SC_ENUM_PROCESS_INFO","features":[469]},{"name":"SC_ENUM_TYPE","features":[469]},{"name":"SC_EVENT_DATABASE_CHANGE","features":[469]},{"name":"SC_EVENT_PROPERTY_CHANGE","features":[469]},{"name":"SC_EVENT_STATUS_CHANGE","features":[469]},{"name":"SC_EVENT_TYPE","features":[469]},{"name":"SC_HANDLE","features":[469]},{"name":"SC_MANAGER_ALL_ACCESS","features":[469]},{"name":"SC_MANAGER_CONNECT","features":[469]},{"name":"SC_MANAGER_CREATE_SERVICE","features":[469]},{"name":"SC_MANAGER_ENUMERATE_SERVICE","features":[469]},{"name":"SC_MANAGER_LOCK","features":[469]},{"name":"SC_MANAGER_MODIFY_BOOT_CONFIG","features":[469]},{"name":"SC_MANAGER_QUERY_LOCK_STATUS","features":[469]},{"name":"SC_STATUS_PROCESS_INFO","features":[469]},{"name":"SC_STATUS_TYPE","features":[469]},{"name":"SERVICES_ACTIVE_DATABASE","features":[469]},{"name":"SERVICES_ACTIVE_DATABASEA","features":[469]},{"name":"SERVICES_ACTIVE_DATABASEW","features":[469]},{"name":"SERVICES_FAILED_DATABASE","features":[469]},{"name":"SERVICES_FAILED_DATABASEA","features":[469]},{"name":"SERVICES_FAILED_DATABASEW","features":[469]},{"name":"SERVICE_ACCEPT_HARDWAREPROFILECHANGE","features":[469]},{"name":"SERVICE_ACCEPT_LOWRESOURCES","features":[469]},{"name":"SERVICE_ACCEPT_NETBINDCHANGE","features":[469]},{"name":"SERVICE_ACCEPT_PARAMCHANGE","features":[469]},{"name":"SERVICE_ACCEPT_PAUSE_CONTINUE","features":[469]},{"name":"SERVICE_ACCEPT_POWEREVENT","features":[469]},{"name":"SERVICE_ACCEPT_PRESHUTDOWN","features":[469]},{"name":"SERVICE_ACCEPT_SESSIONCHANGE","features":[469]},{"name":"SERVICE_ACCEPT_SHUTDOWN","features":[469]},{"name":"SERVICE_ACCEPT_STOP","features":[469]},{"name":"SERVICE_ACCEPT_SYSTEMLOWRESOURCES","features":[469]},{"name":"SERVICE_ACCEPT_TIMECHANGE","features":[469]},{"name":"SERVICE_ACCEPT_TRIGGEREVENT","features":[469]},{"name":"SERVICE_ACCEPT_USER_LOGOFF","features":[469]},{"name":"SERVICE_ACTIVE","features":[469]},{"name":"SERVICE_ADAPTER","features":[469]},{"name":"SERVICE_ALL_ACCESS","features":[469]},{"name":"SERVICE_AUTO_START","features":[469]},{"name":"SERVICE_BOOT_START","features":[469]},{"name":"SERVICE_CHANGE_CONFIG","features":[469]},{"name":"SERVICE_CONFIG","features":[469]},{"name":"SERVICE_CONFIG_DELAYED_AUTO_START_INFO","features":[469]},{"name":"SERVICE_CONFIG_DESCRIPTION","features":[469]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS","features":[469]},{"name":"SERVICE_CONFIG_FAILURE_ACTIONS_FLAG","features":[469]},{"name":"SERVICE_CONFIG_LAUNCH_PROTECTED","features":[469]},{"name":"SERVICE_CONFIG_PREFERRED_NODE","features":[469]},{"name":"SERVICE_CONFIG_PRESHUTDOWN_INFO","features":[469]},{"name":"SERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO","features":[469]},{"name":"SERVICE_CONFIG_SERVICE_SID_INFO","features":[469]},{"name":"SERVICE_CONFIG_TRIGGER_INFO","features":[469]},{"name":"SERVICE_CONTINUE_PENDING","features":[469]},{"name":"SERVICE_CONTROL_CONTINUE","features":[469]},{"name":"SERVICE_CONTROL_DEVICEEVENT","features":[469]},{"name":"SERVICE_CONTROL_HARDWAREPROFILECHANGE","features":[469]},{"name":"SERVICE_CONTROL_INTERROGATE","features":[469]},{"name":"SERVICE_CONTROL_LOWRESOURCES","features":[469]},{"name":"SERVICE_CONTROL_NETBINDADD","features":[469]},{"name":"SERVICE_CONTROL_NETBINDDISABLE","features":[469]},{"name":"SERVICE_CONTROL_NETBINDENABLE","features":[469]},{"name":"SERVICE_CONTROL_NETBINDREMOVE","features":[469]},{"name":"SERVICE_CONTROL_PARAMCHANGE","features":[469]},{"name":"SERVICE_CONTROL_PAUSE","features":[469]},{"name":"SERVICE_CONTROL_POWEREVENT","features":[469]},{"name":"SERVICE_CONTROL_PRESHUTDOWN","features":[469]},{"name":"SERVICE_CONTROL_SESSIONCHANGE","features":[469]},{"name":"SERVICE_CONTROL_SHUTDOWN","features":[469]},{"name":"SERVICE_CONTROL_STATUS_REASON_INFO","features":[469]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSA","features":[469]},{"name":"SERVICE_CONTROL_STATUS_REASON_PARAMSW","features":[469]},{"name":"SERVICE_CONTROL_STOP","features":[469]},{"name":"SERVICE_CONTROL_SYSTEMLOWRESOURCES","features":[469]},{"name":"SERVICE_CONTROL_TIMECHANGE","features":[469]},{"name":"SERVICE_CONTROL_TRIGGEREVENT","features":[469]},{"name":"SERVICE_CUSTOM_SYSTEM_STATE_CHANGE_DATA_ITEM","features":[469]},{"name":"SERVICE_DELAYED_AUTO_START_INFO","features":[305,469]},{"name":"SERVICE_DEMAND_START","features":[469]},{"name":"SERVICE_DESCRIPTIONA","features":[469]},{"name":"SERVICE_DESCRIPTIONW","features":[469]},{"name":"SERVICE_DIRECTORY_TYPE","features":[469]},{"name":"SERVICE_DISABLED","features":[469]},{"name":"SERVICE_DRIVER","features":[469]},{"name":"SERVICE_DYNAMIC_INFORMATION_LEVEL_START_REASON","features":[469]},{"name":"SERVICE_ENUMERATE_DEPENDENTS","features":[469]},{"name":"SERVICE_ERROR","features":[469]},{"name":"SERVICE_ERROR_CRITICAL","features":[469]},{"name":"SERVICE_ERROR_IGNORE","features":[469]},{"name":"SERVICE_ERROR_NORMAL","features":[469]},{"name":"SERVICE_ERROR_SEVERE","features":[469]},{"name":"SERVICE_FAILURE_ACTIONSA","features":[469]},{"name":"SERVICE_FAILURE_ACTIONSW","features":[469]},{"name":"SERVICE_FAILURE_ACTIONS_FLAG","features":[305,469]},{"name":"SERVICE_FILE_SYSTEM_DRIVER","features":[469]},{"name":"SERVICE_INACTIVE","features":[469]},{"name":"SERVICE_INTERROGATE","features":[469]},{"name":"SERVICE_KERNEL_DRIVER","features":[469]},{"name":"SERVICE_LAUNCH_PROTECTED_ANTIMALWARE_LIGHT","features":[469]},{"name":"SERVICE_LAUNCH_PROTECTED_INFO","features":[469]},{"name":"SERVICE_LAUNCH_PROTECTED_NONE","features":[469]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS","features":[469]},{"name":"SERVICE_LAUNCH_PROTECTED_WINDOWS_LIGHT","features":[469]},{"name":"SERVICE_MAIN_FUNCTIONA","features":[469]},{"name":"SERVICE_MAIN_FUNCTIONW","features":[469]},{"name":"SERVICE_NOTIFY","features":[469]},{"name":"SERVICE_NOTIFY_1","features":[469]},{"name":"SERVICE_NOTIFY_2A","features":[469]},{"name":"SERVICE_NOTIFY_2W","features":[469]},{"name":"SERVICE_NOTIFY_CONTINUE_PENDING","features":[469]},{"name":"SERVICE_NOTIFY_CREATED","features":[469]},{"name":"SERVICE_NOTIFY_DELETED","features":[469]},{"name":"SERVICE_NOTIFY_DELETE_PENDING","features":[469]},{"name":"SERVICE_NOTIFY_PAUSED","features":[469]},{"name":"SERVICE_NOTIFY_PAUSE_PENDING","features":[469]},{"name":"SERVICE_NOTIFY_RUNNING","features":[469]},{"name":"SERVICE_NOTIFY_START_PENDING","features":[469]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE","features":[469]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_1","features":[469]},{"name":"SERVICE_NOTIFY_STATUS_CHANGE_2","features":[469]},{"name":"SERVICE_NOTIFY_STOPPED","features":[469]},{"name":"SERVICE_NOTIFY_STOP_PENDING","features":[469]},{"name":"SERVICE_NO_CHANGE","features":[469]},{"name":"SERVICE_PAUSED","features":[469]},{"name":"SERVICE_PAUSE_CONTINUE","features":[469]},{"name":"SERVICE_PAUSE_PENDING","features":[469]},{"name":"SERVICE_PREFERRED_NODE_INFO","features":[305,469]},{"name":"SERVICE_PRESHUTDOWN_INFO","features":[469]},{"name":"SERVICE_QUERY_CONFIG","features":[469]},{"name":"SERVICE_QUERY_STATUS","features":[469]},{"name":"SERVICE_RECOGNIZER_DRIVER","features":[469]},{"name":"SERVICE_REGISTRY_STATE_TYPE","features":[469]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOA","features":[469]},{"name":"SERVICE_REQUIRED_PRIVILEGES_INFOW","features":[469]},{"name":"SERVICE_RUNNING","features":[469]},{"name":"SERVICE_RUNS_IN_NON_SYSTEM_OR_NOT_RUNNING","features":[469]},{"name":"SERVICE_RUNS_IN_PROCESS","features":[469]},{"name":"SERVICE_RUNS_IN_SYSTEM_PROCESS","features":[469]},{"name":"SERVICE_SHARED_DIRECTORY_TYPE","features":[469]},{"name":"SERVICE_SHARED_REGISTRY_STATE_TYPE","features":[469]},{"name":"SERVICE_SID_INFO","features":[469]},{"name":"SERVICE_SID_TYPE_NONE","features":[469]},{"name":"SERVICE_SID_TYPE_UNRESTRICTED","features":[469]},{"name":"SERVICE_START","features":[469]},{"name":"SERVICE_START_PENDING","features":[469]},{"name":"SERVICE_START_REASON","features":[469]},{"name":"SERVICE_START_REASON_AUTO","features":[469]},{"name":"SERVICE_START_REASON_DELAYEDAUTO","features":[469]},{"name":"SERVICE_START_REASON_DEMAND","features":[469]},{"name":"SERVICE_START_REASON_RESTART_ON_FAILURE","features":[469]},{"name":"SERVICE_START_REASON_TRIGGER","features":[469]},{"name":"SERVICE_START_TYPE","features":[469]},{"name":"SERVICE_STATE_ALL","features":[469]},{"name":"SERVICE_STATUS","features":[469]},{"name":"SERVICE_STATUS_CURRENT_STATE","features":[469]},{"name":"SERVICE_STATUS_HANDLE","features":[469]},{"name":"SERVICE_STATUS_PROCESS","features":[469]},{"name":"SERVICE_STOP","features":[469]},{"name":"SERVICE_STOPPED","features":[469]},{"name":"SERVICE_STOP_PENDING","features":[469]},{"name":"SERVICE_STOP_REASON_FLAG_CUSTOM","features":[469]},{"name":"SERVICE_STOP_REASON_FLAG_MAX","features":[469]},{"name":"SERVICE_STOP_REASON_FLAG_MIN","features":[469]},{"name":"SERVICE_STOP_REASON_FLAG_PLANNED","features":[469]},{"name":"SERVICE_STOP_REASON_FLAG_UNPLANNED","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_APPLICATION","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_HARDWARE","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_MAX_CUSTOM","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_MIN_CUSTOM","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_NONE","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_OPERATINGSYSTEM","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_OTHER","features":[469]},{"name":"SERVICE_STOP_REASON_MAJOR_SOFTWARE","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_DISK","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_ENVIRONMENT","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_HARDWARE_DRIVER","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_HUNG","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_INSTALLATION","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_MAINTENANCE","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_MAX","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_MAX_CUSTOM","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_MEMOTYLIMIT","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_MIN","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_MIN_CUSTOM","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_MMC","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORKCARD","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_NETWORK_CONNECTIVITY","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_NONE","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_OTHER","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_OTHERDRIVER","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_RECONFIG","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITY","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_SOFTWARE_UPDATE_UNINSTALL","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_UNSTABLE","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_UPGRADE","features":[469]},{"name":"SERVICE_STOP_REASON_MINOR_WMI","features":[469]},{"name":"SERVICE_SYSTEM_START","features":[469]},{"name":"SERVICE_TABLE_ENTRYA","features":[469]},{"name":"SERVICE_TABLE_ENTRYW","features":[469]},{"name":"SERVICE_TIMECHANGE_INFO","features":[469]},{"name":"SERVICE_TRIGGER","features":[469]},{"name":"SERVICE_TRIGGER_ACTION","features":[469]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_START","features":[469]},{"name":"SERVICE_TRIGGER_ACTION_SERVICE_STOP","features":[469]},{"name":"SERVICE_TRIGGER_CUSTOM_STATE_ID","features":[469]},{"name":"SERVICE_TRIGGER_DATA_TYPE_BINARY","features":[469]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ALL","features":[469]},{"name":"SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ANY","features":[469]},{"name":"SERVICE_TRIGGER_DATA_TYPE_LEVEL","features":[469]},{"name":"SERVICE_TRIGGER_DATA_TYPE_STRING","features":[469]},{"name":"SERVICE_TRIGGER_INFO","features":[469]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM","features":[469]},{"name":"SERVICE_TRIGGER_SPECIFIC_DATA_ITEM_DATA_TYPE","features":[469]},{"name":"SERVICE_TRIGGER_STARTED_ARGUMENT","features":[469]},{"name":"SERVICE_TRIGGER_TYPE","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_AGGREGATE","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_CUSTOM_SYSTEM_STATE_CHANGE","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_DEVICE_INTERFACE_ARRIVAL","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_DOMAIN_JOIN","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_FIREWALL_PORT_EVENT","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_GROUP_POLICY","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_IP_ADDRESS_AVAILABILITY","features":[469]},{"name":"SERVICE_TRIGGER_TYPE_NETWORK_ENDPOINT","features":[469]},{"name":"SERVICE_USER_DEFINED_CONTROL","features":[469]},{"name":"SERVICE_USER_OWN_PROCESS","features":[469]},{"name":"SERVICE_USER_SHARE_PROCESS","features":[469]},{"name":"SERVICE_WIN32","features":[469]},{"name":"SERVICE_WIN32_OWN_PROCESS","features":[469]},{"name":"SERVICE_WIN32_SHARE_PROCESS","features":[469]},{"name":"ServiceDirectoryPersistentState","features":[469]},{"name":"ServiceDirectoryTypeMax","features":[469]},{"name":"ServiceRegistryStateParameters","features":[469]},{"name":"ServiceRegistryStatePersistent","features":[469]},{"name":"ServiceSharedDirectoryPersistentState","features":[469]},{"name":"ServiceSharedRegistryPersistentState","features":[469]},{"name":"SetServiceBits","features":[305,469]},{"name":"SetServiceObjectSecurity","features":[305,308,469]},{"name":"SetServiceStatus","features":[305,469]},{"name":"StartServiceA","features":[305,469]},{"name":"StartServiceCtrlDispatcherA","features":[305,469]},{"name":"StartServiceCtrlDispatcherW","features":[305,469]},{"name":"StartServiceW","features":[305,469]},{"name":"SubscribeServiceChangeNotifications","features":[469]},{"name":"USER_POLICY_PRESENT_GUID","features":[469]},{"name":"UnlockServiceDatabase","features":[305,469]},{"name":"UnsubscribeServiceChangeNotifications","features":[469]},{"name":"WaitServiceState","features":[305,469]}],"609":[{"name":"AllEnumeration","features":[586]},{"name":"IItemEnumerator","features":[586]},{"name":"ISettingsContext","features":[586]},{"name":"ISettingsEngine","features":[586]},{"name":"ISettingsIdentity","features":[586]},{"name":"ISettingsItem","features":[586]},{"name":"ISettingsNamespace","features":[586]},{"name":"ISettingsResult","features":[586]},{"name":"ITargetInfo","features":[586]},{"name":"LIMITED_VALIDATION_MODE","features":[586]},{"name":"LINK_STORE_TO_ENGINE_INSTANCE","features":[586]},{"name":"OfflineMode","features":[586]},{"name":"OnlineMode","features":[586]},{"name":"ReadOnlyAccess","features":[586]},{"name":"ReadWriteAccess","features":[586]},{"name":"SettingsEngine","features":[586]},{"name":"SharedEnumeration","features":[586]},{"name":"UnknownStatus","features":[586]},{"name":"UserEnumeration","features":[586]},{"name":"UserLoaded","features":[586]},{"name":"UserRegistered","features":[586]},{"name":"UserUnloaded","features":[586]},{"name":"UserUnregistered","features":[586]},{"name":"WCM_E_ABORTOPERATION","features":[586]},{"name":"WCM_E_ASSERTIONFAILED","features":[586]},{"name":"WCM_E_ATTRIBUTENOTALLOWED","features":[586]},{"name":"WCM_E_ATTRIBUTENOTFOUND","features":[586]},{"name":"WCM_E_CONFLICTINGASSERTION","features":[586]},{"name":"WCM_E_CYCLICREFERENCE","features":[586]},{"name":"WCM_E_DUPLICATENAME","features":[586]},{"name":"WCM_E_EXPRESSIONNOTFOUND","features":[586]},{"name":"WCM_E_HANDLERNOTFOUND","features":[586]},{"name":"WCM_E_INTERNALERROR","features":[586]},{"name":"WCM_E_INVALIDATTRIBUTECOMBINATION","features":[586]},{"name":"WCM_E_INVALIDDATATYPE","features":[586]},{"name":"WCM_E_INVALIDEXPRESSIONSYNTAX","features":[586]},{"name":"WCM_E_INVALIDHANDLERSYNTAX","features":[586]},{"name":"WCM_E_INVALIDKEY","features":[586]},{"name":"WCM_E_INVALIDLANGUAGEFORMAT","features":[586]},{"name":"WCM_E_INVALIDPATH","features":[586]},{"name":"WCM_E_INVALIDPROCESSORFORMAT","features":[586]},{"name":"WCM_E_INVALIDSTREAM","features":[586]},{"name":"WCM_E_INVALIDVALUE","features":[586]},{"name":"WCM_E_INVALIDVALUEFORMAT","features":[586]},{"name":"WCM_E_INVALIDVERSIONFORMAT","features":[586]},{"name":"WCM_E_KEYNOTCHANGEABLE","features":[586]},{"name":"WCM_E_MANIFESTCOMPILATIONFAILED","features":[586]},{"name":"WCM_E_MISSINGCONFIGURATION","features":[586]},{"name":"WCM_E_MIXTYPEASSERTION","features":[586]},{"name":"WCM_E_NAMESPACEALREADYREGISTERED","features":[586]},{"name":"WCM_E_NAMESPACENOTFOUND","features":[586]},{"name":"WCM_E_NOTIFICATIONNOTFOUND","features":[586]},{"name":"WCM_E_NOTPOSITIONED","features":[586]},{"name":"WCM_E_NOTSUPPORTEDFUNCTION","features":[586]},{"name":"WCM_E_READONLYITEM","features":[586]},{"name":"WCM_E_RESTRICTIONFAILED","features":[586]},{"name":"WCM_E_SOURCEMANEMPTYVALUE","features":[586]},{"name":"WCM_E_STATENODENOTALLOWED","features":[586]},{"name":"WCM_E_STATENODENOTFOUND","features":[586]},{"name":"WCM_E_STORECORRUPTED","features":[586]},{"name":"WCM_E_SUBSTITUTIONNOTFOUND","features":[586]},{"name":"WCM_E_TYPENOTSPECIFIED","features":[586]},{"name":"WCM_E_UNKNOWNRESULT","features":[586]},{"name":"WCM_E_USERALREADYREGISTERED","features":[586]},{"name":"WCM_E_USERNOTFOUND","features":[586]},{"name":"WCM_E_VALIDATIONFAILED","features":[586]},{"name":"WCM_E_VALUETOOBIG","features":[586]},{"name":"WCM_E_WRONGESCAPESTRING","features":[586]},{"name":"WCM_SETTINGS_ID_ARCHITECTURE","features":[586]},{"name":"WCM_SETTINGS_ID_FLAG_DEFINITION","features":[586]},{"name":"WCM_SETTINGS_ID_FLAG_REFERENCE","features":[586]},{"name":"WCM_SETTINGS_ID_LANGUAGE","features":[586]},{"name":"WCM_SETTINGS_ID_NAME","features":[586]},{"name":"WCM_SETTINGS_ID_TOKEN","features":[586]},{"name":"WCM_SETTINGS_ID_URI","features":[586]},{"name":"WCM_SETTINGS_ID_VERSION","features":[586]},{"name":"WCM_SETTINGS_ID_VERSION_SCOPE","features":[586]},{"name":"WCM_S_ATTRIBUTENOTALLOWED","features":[586]},{"name":"WCM_S_ATTRIBUTENOTFOUND","features":[586]},{"name":"WCM_S_INTERNALERROR","features":[586]},{"name":"WCM_S_INVALIDATTRIBUTECOMBINATION","features":[586]},{"name":"WCM_S_LEGACYSETTINGWARNING","features":[586]},{"name":"WCM_S_NAMESPACENOTFOUND","features":[586]},{"name":"WcmDataType","features":[586]},{"name":"WcmNamespaceAccess","features":[586]},{"name":"WcmNamespaceEnumerationFlags","features":[586]},{"name":"WcmRestrictionFacets","features":[586]},{"name":"WcmSettingType","features":[586]},{"name":"WcmTargetMode","features":[586]},{"name":"WcmUserStatus","features":[586]},{"name":"dataTypeBoolean","features":[586]},{"name":"dataTypeByte","features":[586]},{"name":"dataTypeFlagArray","features":[586]},{"name":"dataTypeInt16","features":[586]},{"name":"dataTypeInt32","features":[586]},{"name":"dataTypeInt64","features":[586]},{"name":"dataTypeSByte","features":[586]},{"name":"dataTypeString","features":[586]},{"name":"dataTypeUInt16","features":[586]},{"name":"dataTypeUInt32","features":[586]},{"name":"dataTypeUInt64","features":[586]},{"name":"restrictionFacetEnumeration","features":[586]},{"name":"restrictionFacetMaxInclusive","features":[586]},{"name":"restrictionFacetMaxLength","features":[586]},{"name":"restrictionFacetMinInclusive","features":[586]},{"name":"settingTypeComplex","features":[586]},{"name":"settingTypeList","features":[586]},{"name":"settingTypeScalar","features":[586]}],"610":[{"name":"OOBEComplete","features":[305,587]},{"name":"OOBE_COMPLETED_CALLBACK","features":[587]},{"name":"RegisterWaitUntilOOBECompleted","features":[305,587]},{"name":"UnregisterWaitUntilOOBECompleted","features":[305,587]}],"611":[{"name":"AbortSystemShutdownA","features":[305,588]},{"name":"AbortSystemShutdownW","features":[305,588]},{"name":"CheckForHiberboot","features":[305,588]},{"name":"EWX_ARSO","features":[588]},{"name":"EWX_BOOTOPTIONS","features":[588]},{"name":"EWX_CHECK_SAFE_FOR_SERVER","features":[588]},{"name":"EWX_FORCE","features":[588]},{"name":"EWX_FORCEIFHUNG","features":[588]},{"name":"EWX_HYBRID_SHUTDOWN","features":[588]},{"name":"EWX_LOGOFF","features":[588]},{"name":"EWX_POWEROFF","features":[588]},{"name":"EWX_QUICKRESOLVE","features":[588]},{"name":"EWX_REBOOT","features":[588]},{"name":"EWX_RESTARTAPPS","features":[588]},{"name":"EWX_SHUTDOWN","features":[588]},{"name":"EWX_SYSTEM_INITIATED","features":[588]},{"name":"EXIT_WINDOWS_FLAGS","features":[588]},{"name":"ExitWindowsEx","features":[305,588]},{"name":"InitiateShutdownA","features":[588]},{"name":"InitiateShutdownW","features":[588]},{"name":"InitiateSystemShutdownA","features":[305,588]},{"name":"InitiateSystemShutdownExA","features":[305,588]},{"name":"InitiateSystemShutdownExW","features":[305,588]},{"name":"InitiateSystemShutdownW","features":[305,588]},{"name":"LockWorkStation","features":[305,588]},{"name":"MAX_NUM_REASONS","features":[588]},{"name":"MAX_REASON_BUGID_LEN","features":[588]},{"name":"MAX_REASON_COMMENT_LEN","features":[588]},{"name":"MAX_REASON_DESC_LEN","features":[588]},{"name":"MAX_REASON_NAME_LEN","features":[588]},{"name":"POLICY_SHOWREASONUI_ALWAYS","features":[588]},{"name":"POLICY_SHOWREASONUI_NEVER","features":[588]},{"name":"POLICY_SHOWREASONUI_SERVERONLY","features":[588]},{"name":"POLICY_SHOWREASONUI_WORKSTATIONONLY","features":[588]},{"name":"SHTDN_REASON_FLAG_CLEAN_UI","features":[588]},{"name":"SHTDN_REASON_FLAG_COMMENT_REQUIRED","features":[588]},{"name":"SHTDN_REASON_FLAG_DIRTY_PROBLEM_ID_REQUIRED","features":[588]},{"name":"SHTDN_REASON_FLAG_DIRTY_UI","features":[588]},{"name":"SHTDN_REASON_FLAG_MOBILE_UI_RESERVED","features":[588]},{"name":"SHTDN_REASON_FLAG_PLANNED","features":[588]},{"name":"SHTDN_REASON_FLAG_USER_DEFINED","features":[588]},{"name":"SHTDN_REASON_LEGACY_API","features":[588]},{"name":"SHTDN_REASON_MAJOR_APPLICATION","features":[588]},{"name":"SHTDN_REASON_MAJOR_HARDWARE","features":[588]},{"name":"SHTDN_REASON_MAJOR_LEGACY_API","features":[588]},{"name":"SHTDN_REASON_MAJOR_NONE","features":[588]},{"name":"SHTDN_REASON_MAJOR_OPERATINGSYSTEM","features":[588]},{"name":"SHTDN_REASON_MAJOR_OTHER","features":[588]},{"name":"SHTDN_REASON_MAJOR_POWER","features":[588]},{"name":"SHTDN_REASON_MAJOR_SOFTWARE","features":[588]},{"name":"SHTDN_REASON_MAJOR_SYSTEM","features":[588]},{"name":"SHTDN_REASON_MINOR_BLUESCREEN","features":[588]},{"name":"SHTDN_REASON_MINOR_CORDUNPLUGGED","features":[588]},{"name":"SHTDN_REASON_MINOR_DC_DEMOTION","features":[588]},{"name":"SHTDN_REASON_MINOR_DC_PROMOTION","features":[588]},{"name":"SHTDN_REASON_MINOR_DISK","features":[588]},{"name":"SHTDN_REASON_MINOR_ENVIRONMENT","features":[588]},{"name":"SHTDN_REASON_MINOR_HARDWARE_DRIVER","features":[588]},{"name":"SHTDN_REASON_MINOR_HOTFIX","features":[588]},{"name":"SHTDN_REASON_MINOR_HOTFIX_UNINSTALL","features":[588]},{"name":"SHTDN_REASON_MINOR_HUNG","features":[588]},{"name":"SHTDN_REASON_MINOR_INSTALLATION","features":[588]},{"name":"SHTDN_REASON_MINOR_MAINTENANCE","features":[588]},{"name":"SHTDN_REASON_MINOR_MMC","features":[588]},{"name":"SHTDN_REASON_MINOR_NETWORKCARD","features":[588]},{"name":"SHTDN_REASON_MINOR_NETWORK_CONNECTIVITY","features":[588]},{"name":"SHTDN_REASON_MINOR_NONE","features":[588]},{"name":"SHTDN_REASON_MINOR_OTHER","features":[588]},{"name":"SHTDN_REASON_MINOR_OTHERDRIVER","features":[588]},{"name":"SHTDN_REASON_MINOR_POWER_SUPPLY","features":[588]},{"name":"SHTDN_REASON_MINOR_PROCESSOR","features":[588]},{"name":"SHTDN_REASON_MINOR_RECONFIG","features":[588]},{"name":"SHTDN_REASON_MINOR_SECURITY","features":[588]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX","features":[588]},{"name":"SHTDN_REASON_MINOR_SECURITYFIX_UNINSTALL","features":[588]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK","features":[588]},{"name":"SHTDN_REASON_MINOR_SERVICEPACK_UNINSTALL","features":[588]},{"name":"SHTDN_REASON_MINOR_SYSTEMRESTORE","features":[588]},{"name":"SHTDN_REASON_MINOR_TERMSRV","features":[588]},{"name":"SHTDN_REASON_MINOR_UNSTABLE","features":[588]},{"name":"SHTDN_REASON_MINOR_UPGRADE","features":[588]},{"name":"SHTDN_REASON_MINOR_WMI","features":[588]},{"name":"SHTDN_REASON_NONE","features":[588]},{"name":"SHTDN_REASON_UNKNOWN","features":[588]},{"name":"SHTDN_REASON_VALID_BIT_MASK","features":[588]},{"name":"SHUTDOWN_ARSO","features":[588]},{"name":"SHUTDOWN_CHECK_SAFE_FOR_SERVER","features":[588]},{"name":"SHUTDOWN_FLAGS","features":[588]},{"name":"SHUTDOWN_FORCE_OTHERS","features":[588]},{"name":"SHUTDOWN_FORCE_SELF","features":[588]},{"name":"SHUTDOWN_GRACE_OVERRIDE","features":[588]},{"name":"SHUTDOWN_HYBRID","features":[588]},{"name":"SHUTDOWN_INSTALL_UPDATES","features":[588]},{"name":"SHUTDOWN_MOBILE_UI","features":[588]},{"name":"SHUTDOWN_NOREBOOT","features":[588]},{"name":"SHUTDOWN_POWEROFF","features":[588]},{"name":"SHUTDOWN_REASON","features":[588]},{"name":"SHUTDOWN_RESTART","features":[588]},{"name":"SHUTDOWN_RESTARTAPPS","features":[588]},{"name":"SHUTDOWN_RESTART_BOOTOPTIONS","features":[588]},{"name":"SHUTDOWN_SKIP_SVC_PRESHUTDOWN","features":[588]},{"name":"SHUTDOWN_SOFT_REBOOT","features":[588]},{"name":"SHUTDOWN_SYSTEM_INITIATED","features":[588]},{"name":"SHUTDOWN_TYPE_LEN","features":[588]},{"name":"SHUTDOWN_VAIL_CONTAINER","features":[588]},{"name":"SNAPSHOT_POLICY_ALWAYS","features":[588]},{"name":"SNAPSHOT_POLICY_NEVER","features":[588]},{"name":"SNAPSHOT_POLICY_UNPLANNED","features":[588]},{"name":"ShutdownBlockReasonCreate","features":[305,588]},{"name":"ShutdownBlockReasonDestroy","features":[305,588]},{"name":"ShutdownBlockReasonQuery","features":[305,588]}],"612":[{"name":"APPLICATION_EVENT_DATA","features":[589]},{"name":"CONTENT_ID_GLANCE","features":[589]},{"name":"CONTENT_ID_HOME","features":[589]},{"name":"CONTENT_MISSING_EVENT_DATA","features":[589]},{"name":"DEVICE_USER_CHANGE_EVENT_DATA","features":[589]},{"name":"EVENT_DATA_HEADER","features":[589]},{"name":"GUID_DEVINTERFACE_SIDESHOW","features":[589]},{"name":"ISideShowBulkCapabilities","features":[589]},{"name":"ISideShowCapabilities","features":[589]},{"name":"ISideShowCapabilitiesCollection","features":[589]},{"name":"ISideShowContent","features":[589]},{"name":"ISideShowContentManager","features":[589]},{"name":"ISideShowEvents","features":[589]},{"name":"ISideShowKeyCollection","features":[589]},{"name":"ISideShowNotification","features":[589]},{"name":"ISideShowNotificationManager","features":[589]},{"name":"ISideShowPropVariantCollection","features":[589]},{"name":"ISideShowSession","features":[589]},{"name":"NEW_EVENT_DATA_AVAILABLE","features":[589]},{"name":"SCF_BUTTON_BACK","features":[589]},{"name":"SCF_BUTTON_DOWN","features":[589]},{"name":"SCF_BUTTON_FASTFORWARD","features":[589]},{"name":"SCF_BUTTON_IDS","features":[589]},{"name":"SCF_BUTTON_LEFT","features":[589]},{"name":"SCF_BUTTON_MENU","features":[589]},{"name":"SCF_BUTTON_PAUSE","features":[589]},{"name":"SCF_BUTTON_PLAY","features":[589]},{"name":"SCF_BUTTON_REWIND","features":[589]},{"name":"SCF_BUTTON_RIGHT","features":[589]},{"name":"SCF_BUTTON_SELECT","features":[589]},{"name":"SCF_BUTTON_STOP","features":[589]},{"name":"SCF_BUTTON_UP","features":[589]},{"name":"SCF_CONTEXTMENU_EVENT","features":[589]},{"name":"SCF_EVENT_CONTEXTMENU","features":[589]},{"name":"SCF_EVENT_HEADER","features":[589]},{"name":"SCF_EVENT_IDS","features":[589]},{"name":"SCF_EVENT_MENUACTION","features":[589]},{"name":"SCF_EVENT_NAVIGATION","features":[589]},{"name":"SCF_MENUACTION_EVENT","features":[589]},{"name":"SCF_NAVIGATION_EVENT","features":[589]},{"name":"SIDESHOW_APPLICATION_EVENT","features":[589]},{"name":"SIDESHOW_CAPABILITY_CLIENT_AREA_HEIGHT","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_CLIENT_AREA_WIDTH","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_COLOR_DEPTH","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_COLOR_TYPE","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_CURRENT_LANGUAGE","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_DATA_CACHE","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_DEVICE_ID","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_DEVICE_PROPERTIES","features":[589]},{"name":"SIDESHOW_CAPABILITY_SCREEN_HEIGHT","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_SCREEN_TYPE","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_SCREEN_WIDTH","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_SUPPORTED_IMAGE_FORMATS","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_SUPPORTED_LANGUAGES","features":[589,376]},{"name":"SIDESHOW_CAPABILITY_SUPPORTED_THEMES","features":[589,376]},{"name":"SIDESHOW_COLOR_TYPE","features":[589]},{"name":"SIDESHOW_COLOR_TYPE_BLACK_AND_WHITE","features":[589]},{"name":"SIDESHOW_COLOR_TYPE_COLOR","features":[589]},{"name":"SIDESHOW_COLOR_TYPE_GREYSCALE","features":[589]},{"name":"SIDESHOW_CONTENT_MISSING_EVENT","features":[589]},{"name":"SIDESHOW_ENDPOINT_ICAL","features":[589]},{"name":"SIDESHOW_ENDPOINT_SIMPLE_CONTENT_FORMAT","features":[589]},{"name":"SIDESHOW_EVENTID_APPLICATION_ENTER","features":[589]},{"name":"SIDESHOW_EVENTID_APPLICATION_EXIT","features":[589]},{"name":"SIDESHOW_NEW_EVENT_DATA_AVAILABLE","features":[589]},{"name":"SIDESHOW_SCREEN_TYPE","features":[589]},{"name":"SIDESHOW_SCREEN_TYPE_BITMAP","features":[589]},{"name":"SIDESHOW_SCREEN_TYPE_TEXT","features":[589]},{"name":"SIDESHOW_USER_CHANGE_REQUEST_EVENT","features":[589]},{"name":"SideShowKeyCollection","features":[589]},{"name":"SideShowNotification","features":[589]},{"name":"SideShowPropVariantCollection","features":[589]},{"name":"SideShowSession","features":[589]},{"name":"VERSION_1_WINDOWS_7","features":[589]}],"613":[{"name":"BROADCAST_SYSTEM_MESSAGE_FLAGS","features":[499]},{"name":"BROADCAST_SYSTEM_MESSAGE_INFO","features":[499]},{"name":"BSF_ALLOWSFW","features":[499]},{"name":"BSF_FLUSHDISK","features":[499]},{"name":"BSF_FORCEIFHUNG","features":[499]},{"name":"BSF_IGNORECURRENTTASK","features":[499]},{"name":"BSF_LUID","features":[499]},{"name":"BSF_NOHANG","features":[499]},{"name":"BSF_NOTIMEOUTIFNOTHUNG","features":[499]},{"name":"BSF_POSTMESSAGE","features":[499]},{"name":"BSF_QUERY","features":[499]},{"name":"BSF_RETURNHDESK","features":[499]},{"name":"BSF_SENDNOTIFYMESSAGE","features":[499]},{"name":"BSMINFO","features":[305,499]},{"name":"BSM_ALLCOMPONENTS","features":[499]},{"name":"BSM_ALLDESKTOPS","features":[499]},{"name":"BSM_APPLICATIONS","features":[499]},{"name":"BroadcastSystemMessageA","features":[305,499]},{"name":"BroadcastSystemMessageExA","features":[305,499]},{"name":"BroadcastSystemMessageExW","features":[305,499]},{"name":"BroadcastSystemMessageW","features":[305,499]},{"name":"CloseDesktop","features":[305,499]},{"name":"CloseWindowStation","features":[305,499]},{"name":"CreateDesktopA","features":[305,316,308,499]},{"name":"CreateDesktopExA","features":[305,316,308,499]},{"name":"CreateDesktopExW","features":[305,316,308,499]},{"name":"CreateDesktopW","features":[305,316,308,499]},{"name":"CreateWindowStationA","features":[305,308,499]},{"name":"CreateWindowStationW","features":[305,308,499]},{"name":"DESKTOPENUMPROCA","features":[305,499]},{"name":"DESKTOPENUMPROCW","features":[305,499]},{"name":"DESKTOP_ACCESS_FLAGS","features":[499]},{"name":"DESKTOP_CONTROL_FLAGS","features":[499]},{"name":"DESKTOP_CREATEMENU","features":[499]},{"name":"DESKTOP_CREATEWINDOW","features":[499]},{"name":"DESKTOP_DELETE","features":[499]},{"name":"DESKTOP_ENUMERATE","features":[499]},{"name":"DESKTOP_HOOKCONTROL","features":[499]},{"name":"DESKTOP_JOURNALPLAYBACK","features":[499]},{"name":"DESKTOP_JOURNALRECORD","features":[499]},{"name":"DESKTOP_READOBJECTS","features":[499]},{"name":"DESKTOP_READ_CONTROL","features":[499]},{"name":"DESKTOP_SWITCHDESKTOP","features":[499]},{"name":"DESKTOP_SYNCHRONIZE","features":[499]},{"name":"DESKTOP_WRITEOBJECTS","features":[499]},{"name":"DESKTOP_WRITE_DAC","features":[499]},{"name":"DESKTOP_WRITE_OWNER","features":[499]},{"name":"DF_ALLOWOTHERACCOUNTHOOK","features":[499]},{"name":"EnumDesktopWindows","features":[305,499,367]},{"name":"EnumDesktopsA","features":[305,499]},{"name":"EnumDesktopsW","features":[305,499]},{"name":"EnumWindowStationsA","features":[305,499]},{"name":"EnumWindowStationsW","features":[305,499]},{"name":"GetProcessWindowStation","features":[499]},{"name":"GetThreadDesktop","features":[499]},{"name":"GetUserObjectInformationA","features":[305,499]},{"name":"GetUserObjectInformationW","features":[305,499]},{"name":"HDESK","features":[499]},{"name":"HWINSTA","features":[499]},{"name":"OpenDesktopA","features":[305,499]},{"name":"OpenDesktopW","features":[305,499]},{"name":"OpenInputDesktop","features":[305,499]},{"name":"OpenWindowStationA","features":[305,499]},{"name":"OpenWindowStationW","features":[305,499]},{"name":"SetProcessWindowStation","features":[305,499]},{"name":"SetThreadDesktop","features":[305,499]},{"name":"SetUserObjectInformationA","features":[305,499]},{"name":"SetUserObjectInformationW","features":[305,499]},{"name":"SwitchDesktop","features":[305,499]},{"name":"UOI_FLAGS","features":[499]},{"name":"UOI_HEAPSIZE","features":[499]},{"name":"UOI_IO","features":[499]},{"name":"UOI_NAME","features":[499]},{"name":"UOI_TYPE","features":[499]},{"name":"UOI_USER_SID","features":[499]},{"name":"USEROBJECTFLAGS","features":[305,499]},{"name":"USER_OBJECT_INFORMATION_INDEX","features":[499]},{"name":"WINSTAENUMPROCA","features":[305,499]},{"name":"WINSTAENUMPROCW","features":[305,499]}],"614":[{"name":"WSL_DISTRIBUTION_FLAGS","features":[590]},{"name":"WSL_DISTRIBUTION_FLAGS_APPEND_NT_PATH","features":[590]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_DRIVE_MOUNTING","features":[590]},{"name":"WSL_DISTRIBUTION_FLAGS_ENABLE_INTEROP","features":[590]},{"name":"WSL_DISTRIBUTION_FLAGS_NONE","features":[590]},{"name":"WslConfigureDistribution","features":[590]},{"name":"WslGetDistributionConfiguration","features":[590]},{"name":"WslIsDistributionRegistered","features":[305,590]},{"name":"WslLaunch","features":[305,590]},{"name":"WslLaunchInteractive","features":[305,590]},{"name":"WslRegisterDistribution","features":[590]},{"name":"WslUnregisterDistribution","features":[590]}],"615":[{"name":"ACPI","features":[336]},{"name":"CACHE_DESCRIPTOR","features":[336]},{"name":"CACHE_RELATIONSHIP","features":[336]},{"name":"COMPUTER_NAME_FORMAT","features":[336]},{"name":"CPU_SET_INFORMATION_TYPE","features":[336]},{"name":"CacheData","features":[336]},{"name":"CacheInstruction","features":[336]},{"name":"CacheTrace","features":[336]},{"name":"CacheUnified","features":[336]},{"name":"ComputerNameDnsDomain","features":[336]},{"name":"ComputerNameDnsFullyQualified","features":[336]},{"name":"ComputerNameDnsHostname","features":[336]},{"name":"ComputerNameMax","features":[336]},{"name":"ComputerNameNetBIOS","features":[336]},{"name":"ComputerNamePhysicalDnsDomain","features":[336]},{"name":"ComputerNamePhysicalDnsFullyQualified","features":[336]},{"name":"ComputerNamePhysicalDnsHostname","features":[336]},{"name":"ComputerNamePhysicalNetBIOS","features":[336]},{"name":"CpuSetInformation","features":[336]},{"name":"DEPPolicyAlwaysOff","features":[336]},{"name":"DEPPolicyAlwaysOn","features":[336]},{"name":"DEPPolicyOptIn","features":[336]},{"name":"DEPPolicyOptOut","features":[336]},{"name":"DEPTotalPolicyCount","features":[336]},{"name":"DEP_SYSTEM_POLICY_TYPE","features":[336]},{"name":"DEVELOPER_DRIVE_ENABLEMENT_STATE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_ALLINONE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_BANKING","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_BUILDING_AUTOMATION","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_CONVERTIBLE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_DESKTOP","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_DETACHABLE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_DIGITAL_SIGNAGE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_GAMING","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_HMD","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_HOME_AUTOMATION","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRIAL_AUTOMATION","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_HANDHELD","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_OTHER","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_INDUSTRY_TABLET","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_KIOSK","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_LARGESCREEN","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_MAKER_BOARD","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_MAX","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_MEDICAL","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_NETWORKING","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_NOTEBOOK","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_PHONE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_POINT_OF_SERVICE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_PRINTING","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_PUCK","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_STICKPC","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_TABLET","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_THIN_CLIENT","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_TOY","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_UNKNOWN","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_VENDING","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_S","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_ONE_X_DEVKIT","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_01","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_02","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_03","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_04","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_05","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_06","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_07","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_08","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_RESERVED_09","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_S","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X","features":[336]},{"name":"DEVICEFAMILYDEVICEFORM_XBOX_SERIES_X_DEVKIT","features":[336]},{"name":"DEVICEFAMILYINFOENUM","features":[336]},{"name":"DEVICEFAMILYINFOENUM_7067329","features":[336]},{"name":"DEVICEFAMILYINFOENUM_8828080","features":[336]},{"name":"DEVICEFAMILYINFOENUM_DESKTOP","features":[336]},{"name":"DEVICEFAMILYINFOENUM_HOLOGRAPHIC","features":[336]},{"name":"DEVICEFAMILYINFOENUM_IOT","features":[336]},{"name":"DEVICEFAMILYINFOENUM_IOT_HEADLESS","features":[336]},{"name":"DEVICEFAMILYINFOENUM_MAX","features":[336]},{"name":"DEVICEFAMILYINFOENUM_MOBILE","features":[336]},{"name":"DEVICEFAMILYINFOENUM_SERVER","features":[336]},{"name":"DEVICEFAMILYINFOENUM_SERVER_NANO","features":[336]},{"name":"DEVICEFAMILYINFOENUM_TEAM","features":[336]},{"name":"DEVICEFAMILYINFOENUM_UAP","features":[336]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_8X","features":[336]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE","features":[336]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_CORE_HEADLESS","features":[336]},{"name":"DEVICEFAMILYINFOENUM_WINDOWS_PHONE_8X","features":[336]},{"name":"DEVICEFAMILYINFOENUM_XBOX","features":[336]},{"name":"DEVICEFAMILYINFOENUM_XBOXERA","features":[336]},{"name":"DEVICEFAMILYINFOENUM_XBOXSRA","features":[336]},{"name":"DeveloperDriveDisabledByGroupPolicy","features":[336]},{"name":"DeveloperDriveDisabledBySystemPolicy","features":[336]},{"name":"DeveloperDriveEnabled","features":[336]},{"name":"DeveloperDriveEnablementStateError","features":[336]},{"name":"DnsHostnameToComputerNameExW","features":[305,336]},{"name":"EnumSystemFirmwareTables","features":[336]},{"name":"FIRM","features":[336]},{"name":"FIRMWARE_TABLE_PROVIDER","features":[336]},{"name":"FIRMWARE_TYPE","features":[336]},{"name":"FirmwareTypeBios","features":[336]},{"name":"FirmwareTypeMax","features":[336]},{"name":"FirmwareTypeUefi","features":[336]},{"name":"FirmwareTypeUnknown","features":[336]},{"name":"GROUP_AFFINITY","features":[336]},{"name":"GROUP_RELATIONSHIP","features":[336]},{"name":"GetComputerNameExA","features":[305,336]},{"name":"GetComputerNameExW","features":[305,336]},{"name":"GetDeveloperDriveEnablementState","features":[336]},{"name":"GetFirmwareType","features":[305,336]},{"name":"GetIntegratedDisplaySize","features":[336]},{"name":"GetLocalTime","features":[305,336]},{"name":"GetLogicalProcessorInformation","features":[305,336]},{"name":"GetLogicalProcessorInformationEx","features":[305,336]},{"name":"GetNativeSystemInfo","features":[336]},{"name":"GetOsManufacturingMode","features":[305,336]},{"name":"GetOsSafeBootMode","features":[305,336]},{"name":"GetPhysicallyInstalledSystemMemory","features":[305,336]},{"name":"GetProcessorSystemCycleTime","features":[305,336]},{"name":"GetProductInfo","features":[305,336]},{"name":"GetSystemCpuSetInformation","features":[305,336]},{"name":"GetSystemDEPPolicy","features":[336]},{"name":"GetSystemDirectoryA","features":[336]},{"name":"GetSystemDirectoryW","features":[336]},{"name":"GetSystemFirmwareTable","features":[336]},{"name":"GetSystemInfo","features":[336]},{"name":"GetSystemLeapSecondInformation","features":[305,336]},{"name":"GetSystemTime","features":[305,336]},{"name":"GetSystemTimeAdjustment","features":[305,336]},{"name":"GetSystemTimeAdjustmentPrecise","features":[305,336]},{"name":"GetSystemTimeAsFileTime","features":[305,336]},{"name":"GetSystemTimePreciseAsFileTime","features":[305,336]},{"name":"GetSystemWindowsDirectoryA","features":[336]},{"name":"GetSystemWindowsDirectoryW","features":[336]},{"name":"GetSystemWow64Directory2A","features":[336]},{"name":"GetSystemWow64Directory2W","features":[336]},{"name":"GetSystemWow64DirectoryA","features":[336]},{"name":"GetSystemWow64DirectoryW","features":[336]},{"name":"GetTickCount","features":[336]},{"name":"GetTickCount64","features":[336]},{"name":"GetVersion","features":[336]},{"name":"GetVersionExA","features":[305,336]},{"name":"GetVersionExW","features":[305,336]},{"name":"GetWindowsDirectoryA","features":[336]},{"name":"GetWindowsDirectoryW","features":[336]},{"name":"GlobalDataIdConsoleSharedDataFlags","features":[336]},{"name":"GlobalDataIdCyclesPerYield","features":[336]},{"name":"GlobalDataIdImageNumberHigh","features":[336]},{"name":"GlobalDataIdImageNumberLow","features":[336]},{"name":"GlobalDataIdInterruptTime","features":[336]},{"name":"GlobalDataIdKdDebuggerEnabled","features":[336]},{"name":"GlobalDataIdLastSystemRITEventTickCount","features":[336]},{"name":"GlobalDataIdNtMajorVersion","features":[336]},{"name":"GlobalDataIdNtMinorVersion","features":[336]},{"name":"GlobalDataIdNtSystemRootDrive","features":[336]},{"name":"GlobalDataIdQpcBias","features":[336]},{"name":"GlobalDataIdQpcBypassEnabled","features":[336]},{"name":"GlobalDataIdQpcData","features":[336]},{"name":"GlobalDataIdQpcShift","features":[336]},{"name":"GlobalDataIdRngSeedVersion","features":[336]},{"name":"GlobalDataIdSafeBootMode","features":[336]},{"name":"GlobalDataIdSystemExpirationDate","features":[336]},{"name":"GlobalDataIdTimeZoneBias","features":[336]},{"name":"GlobalDataIdTimeZoneId","features":[336]},{"name":"GlobalDataIdUnknown","features":[336]},{"name":"GlobalMemoryStatus","features":[336]},{"name":"GlobalMemoryStatusEx","features":[305,336]},{"name":"IMAGE_FILE_MACHINE","features":[336]},{"name":"IMAGE_FILE_MACHINE_ALPHA","features":[336]},{"name":"IMAGE_FILE_MACHINE_ALPHA64","features":[336]},{"name":"IMAGE_FILE_MACHINE_AM33","features":[336]},{"name":"IMAGE_FILE_MACHINE_AMD64","features":[336]},{"name":"IMAGE_FILE_MACHINE_ARM","features":[336]},{"name":"IMAGE_FILE_MACHINE_ARM64","features":[336]},{"name":"IMAGE_FILE_MACHINE_ARMNT","features":[336]},{"name":"IMAGE_FILE_MACHINE_AXP64","features":[336]},{"name":"IMAGE_FILE_MACHINE_CEE","features":[336]},{"name":"IMAGE_FILE_MACHINE_CEF","features":[336]},{"name":"IMAGE_FILE_MACHINE_EBC","features":[336]},{"name":"IMAGE_FILE_MACHINE_I386","features":[336]},{"name":"IMAGE_FILE_MACHINE_IA64","features":[336]},{"name":"IMAGE_FILE_MACHINE_M32R","features":[336]},{"name":"IMAGE_FILE_MACHINE_MIPS16","features":[336]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU","features":[336]},{"name":"IMAGE_FILE_MACHINE_MIPSFPU16","features":[336]},{"name":"IMAGE_FILE_MACHINE_POWERPC","features":[336]},{"name":"IMAGE_FILE_MACHINE_POWERPCFP","features":[336]},{"name":"IMAGE_FILE_MACHINE_R10000","features":[336]},{"name":"IMAGE_FILE_MACHINE_R3000","features":[336]},{"name":"IMAGE_FILE_MACHINE_R4000","features":[336]},{"name":"IMAGE_FILE_MACHINE_SH3","features":[336]},{"name":"IMAGE_FILE_MACHINE_SH3DSP","features":[336]},{"name":"IMAGE_FILE_MACHINE_SH3E","features":[336]},{"name":"IMAGE_FILE_MACHINE_SH4","features":[336]},{"name":"IMAGE_FILE_MACHINE_SH5","features":[336]},{"name":"IMAGE_FILE_MACHINE_TARGET_HOST","features":[336]},{"name":"IMAGE_FILE_MACHINE_THUMB","features":[336]},{"name":"IMAGE_FILE_MACHINE_TRICORE","features":[336]},{"name":"IMAGE_FILE_MACHINE_UNKNOWN","features":[336]},{"name":"IMAGE_FILE_MACHINE_WCEMIPSV2","features":[336]},{"name":"IsUserCetAvailableInEnvironment","features":[305,336]},{"name":"IsWow64GuestMachineSupported","features":[305,336]},{"name":"LOGICAL_PROCESSOR_RELATIONSHIP","features":[336]},{"name":"MEMORYSTATUS","features":[336]},{"name":"MEMORYSTATUSEX","features":[336]},{"name":"NTDDI_LONGHORN","features":[336]},{"name":"NTDDI_VERSION","features":[336]},{"name":"NTDDI_VISTA","features":[336]},{"name":"NTDDI_VISTASP1","features":[336]},{"name":"NTDDI_VISTASP2","features":[336]},{"name":"NTDDI_VISTASP3","features":[336]},{"name":"NTDDI_VISTASP4","features":[336]},{"name":"NTDDI_WIN10","features":[336]},{"name":"NTDDI_WIN10_19H1","features":[336]},{"name":"NTDDI_WIN10_CO","features":[336]},{"name":"NTDDI_WIN10_FE","features":[336]},{"name":"NTDDI_WIN10_MN","features":[336]},{"name":"NTDDI_WIN10_NI","features":[336]},{"name":"NTDDI_WIN10_RS1","features":[336]},{"name":"NTDDI_WIN10_RS2","features":[336]},{"name":"NTDDI_WIN10_RS3","features":[336]},{"name":"NTDDI_WIN10_RS4","features":[336]},{"name":"NTDDI_WIN10_RS5","features":[336]},{"name":"NTDDI_WIN10_TH2","features":[336]},{"name":"NTDDI_WIN10_VB","features":[336]},{"name":"NTDDI_WIN2K","features":[336]},{"name":"NTDDI_WIN2KSP1","features":[336]},{"name":"NTDDI_WIN2KSP2","features":[336]},{"name":"NTDDI_WIN2KSP3","features":[336]},{"name":"NTDDI_WIN2KSP4","features":[336]},{"name":"NTDDI_WIN4","features":[336]},{"name":"NTDDI_WIN6","features":[336]},{"name":"NTDDI_WIN6SP1","features":[336]},{"name":"NTDDI_WIN6SP2","features":[336]},{"name":"NTDDI_WIN6SP3","features":[336]},{"name":"NTDDI_WIN6SP4","features":[336]},{"name":"NTDDI_WIN7","features":[336]},{"name":"NTDDI_WIN8","features":[336]},{"name":"NTDDI_WINBLUE","features":[336]},{"name":"NTDDI_WINTHRESHOLD","features":[336]},{"name":"NTDDI_WINXP","features":[336]},{"name":"NTDDI_WINXPSP1","features":[336]},{"name":"NTDDI_WINXPSP2","features":[336]},{"name":"NTDDI_WINXPSP3","features":[336]},{"name":"NTDDI_WINXPSP4","features":[336]},{"name":"NTDDI_WS03","features":[336]},{"name":"NTDDI_WS03SP1","features":[336]},{"name":"NTDDI_WS03SP2","features":[336]},{"name":"NTDDI_WS03SP3","features":[336]},{"name":"NTDDI_WS03SP4","features":[336]},{"name":"NTDDI_WS08","features":[336]},{"name":"NTDDI_WS08SP2","features":[336]},{"name":"NTDDI_WS08SP3","features":[336]},{"name":"NTDDI_WS08SP4","features":[336]},{"name":"NUMA_NODE_RELATIONSHIP","features":[336]},{"name":"OSVERSIONINFOA","features":[336]},{"name":"OSVERSIONINFOEXA","features":[336]},{"name":"OSVERSIONINFOEXW","features":[336]},{"name":"OSVERSIONINFOW","features":[336]},{"name":"OSVERSION_MASK","features":[336]},{"name":"OS_DEPLOYEMENT_STATE_VALUES","features":[336]},{"name":"OS_DEPLOYMENT_COMPACT","features":[336]},{"name":"OS_DEPLOYMENT_STANDARD","features":[336]},{"name":"OS_PRODUCT_TYPE","features":[336]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_A","features":[336]},{"name":"PGET_SYSTEM_WOW64_DIRECTORY_W","features":[336]},{"name":"PROCESSOR_ARCHITECTURE","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_ALPHA64","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_AMD64","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_ARM","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_ARM32_ON_WIN64","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_ARM64","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_ARM64","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_IA32_ON_WIN64","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_IA64","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_INTEL","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_MIPS","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_MSIL","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_NEUTRAL","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_PPC","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_SHX","features":[336]},{"name":"PROCESSOR_ARCHITECTURE_UNKNOWN","features":[336]},{"name":"PROCESSOR_CACHE_TYPE","features":[336]},{"name":"PROCESSOR_GROUP_INFO","features":[336]},{"name":"PROCESSOR_RELATIONSHIP","features":[336]},{"name":"PRODUCT_BUSINESS","features":[336]},{"name":"PRODUCT_BUSINESS_N","features":[336]},{"name":"PRODUCT_CLUSTER_SERVER","features":[336]},{"name":"PRODUCT_CLUSTER_SERVER_V","features":[336]},{"name":"PRODUCT_CORE","features":[336]},{"name":"PRODUCT_CORE_COUNTRYSPECIFIC","features":[336]},{"name":"PRODUCT_CORE_N","features":[336]},{"name":"PRODUCT_CORE_SINGLELANGUAGE","features":[336]},{"name":"PRODUCT_DATACENTER_A_SERVER_CORE","features":[336]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER","features":[336]},{"name":"PRODUCT_DATACENTER_SERVER","features":[336]},{"name":"PRODUCT_DATACENTER_SERVER_CORE","features":[336]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_V","features":[336]},{"name":"PRODUCT_DATACENTER_SERVER_V","features":[336]},{"name":"PRODUCT_EDUCATION","features":[336]},{"name":"PRODUCT_EDUCATION_N","features":[336]},{"name":"PRODUCT_ENTERPRISE","features":[336]},{"name":"PRODUCT_ENTERPRISE_E","features":[336]},{"name":"PRODUCT_ENTERPRISE_EVALUATION","features":[336]},{"name":"PRODUCT_ENTERPRISE_N","features":[336]},{"name":"PRODUCT_ENTERPRISE_N_EVALUATION","features":[336]},{"name":"PRODUCT_ENTERPRISE_S","features":[336]},{"name":"PRODUCT_ENTERPRISE_SERVER","features":[336]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE","features":[336]},{"name":"PRODUCT_ENTERPRISE_SERVER_CORE_V","features":[336]},{"name":"PRODUCT_ENTERPRISE_SERVER_IA64","features":[336]},{"name":"PRODUCT_ENTERPRISE_SERVER_V","features":[336]},{"name":"PRODUCT_ENTERPRISE_S_EVALUATION","features":[336]},{"name":"PRODUCT_ENTERPRISE_S_N","features":[336]},{"name":"PRODUCT_ENTERPRISE_S_N_EVALUATION","features":[336]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDL","features":[336]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_ADDLSVC","features":[336]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMT","features":[336]},{"name":"PRODUCT_ESSENTIALBUSINESS_SERVER_MGMTSVC","features":[336]},{"name":"PRODUCT_HOME_BASIC","features":[336]},{"name":"PRODUCT_HOME_BASIC_E","features":[336]},{"name":"PRODUCT_HOME_BASIC_N","features":[336]},{"name":"PRODUCT_HOME_PREMIUM","features":[336]},{"name":"PRODUCT_HOME_PREMIUM_E","features":[336]},{"name":"PRODUCT_HOME_PREMIUM_N","features":[336]},{"name":"PRODUCT_HOME_PREMIUM_SERVER","features":[336]},{"name":"PRODUCT_HOME_SERVER","features":[336]},{"name":"PRODUCT_HYPERV","features":[336]},{"name":"PRODUCT_IOTUAP","features":[336]},{"name":"PRODUCT_IOTUAPCOMMERCIAL","features":[336]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MANAGEMENT","features":[336]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING","features":[336]},{"name":"PRODUCT_MEDIUMBUSINESS_SERVER_SECURITY","features":[336]},{"name":"PRODUCT_MOBILE_CORE","features":[336]},{"name":"PRODUCT_MOBILE_ENTERPRISE","features":[336]},{"name":"PRODUCT_MULTIPOINT_PREMIUM_SERVER","features":[336]},{"name":"PRODUCT_MULTIPOINT_STANDARD_SERVER","features":[336]},{"name":"PRODUCT_PROFESSIONAL","features":[336]},{"name":"PRODUCT_PROFESSIONAL_E","features":[336]},{"name":"PRODUCT_PROFESSIONAL_N","features":[336]},{"name":"PRODUCT_PROFESSIONAL_WMC","features":[336]},{"name":"PRODUCT_PRO_WORKSTATION","features":[336]},{"name":"PRODUCT_PRO_WORKSTATION_N","features":[336]},{"name":"PRODUCT_SB_SOLUTION_SERVER","features":[336]},{"name":"PRODUCT_SB_SOLUTION_SERVER_EM","features":[336]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS","features":[336]},{"name":"PRODUCT_SERVER_FOR_SB_SOLUTIONS_EM","features":[336]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS","features":[336]},{"name":"PRODUCT_SERVER_FOR_SMALLBUSINESS_V","features":[336]},{"name":"PRODUCT_SERVER_FOUNDATION","features":[336]},{"name":"PRODUCT_SMALLBUSINESS_SERVER","features":[336]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM","features":[336]},{"name":"PRODUCT_SMALLBUSINESS_SERVER_PREMIUM_CORE","features":[336]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER","features":[336]},{"name":"PRODUCT_STANDARD_A_SERVER_CORE","features":[336]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER","features":[336]},{"name":"PRODUCT_STANDARD_SERVER","features":[336]},{"name":"PRODUCT_STANDARD_SERVER_CORE_","features":[336]},{"name":"PRODUCT_STANDARD_SERVER_CORE_V","features":[336]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS","features":[336]},{"name":"PRODUCT_STANDARD_SERVER_SOLUTIONS_CORE","features":[336]},{"name":"PRODUCT_STANDARD_SERVER_V","features":[336]},{"name":"PRODUCT_STARTER","features":[336]},{"name":"PRODUCT_STARTER_E","features":[336]},{"name":"PRODUCT_STARTER_N","features":[336]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER","features":[336]},{"name":"PRODUCT_STORAGE_ENTERPRISE_SERVER_CORE","features":[336]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER","features":[336]},{"name":"PRODUCT_STORAGE_EXPRESS_SERVER_CORE","features":[336]},{"name":"PRODUCT_STORAGE_STANDARD_EVALUATION_SERVER","features":[336]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER","features":[336]},{"name":"PRODUCT_STORAGE_STANDARD_SERVER_CORE","features":[336]},{"name":"PRODUCT_STORAGE_WORKGROUP_EVALUATION_SERVER","features":[336]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER","features":[336]},{"name":"PRODUCT_STORAGE_WORKGROUP_SERVER_CORE","features":[336]},{"name":"PRODUCT_ULTIMATE","features":[336]},{"name":"PRODUCT_ULTIMATE_E","features":[336]},{"name":"PRODUCT_ULTIMATE_N","features":[336]},{"name":"PRODUCT_UNDEFINED","features":[336]},{"name":"PRODUCT_WEB_SERVER","features":[336]},{"name":"PRODUCT_WEB_SERVER_CORE","features":[336]},{"name":"RSMB","features":[336]},{"name":"RTL_SYSTEM_GLOBAL_DATA_ID","features":[336]},{"name":"RelationAll","features":[336]},{"name":"RelationCache","features":[336]},{"name":"RelationGroup","features":[336]},{"name":"RelationNumaNode","features":[336]},{"name":"RelationNumaNodeEx","features":[336]},{"name":"RelationProcessorCore","features":[336]},{"name":"RelationProcessorDie","features":[336]},{"name":"RelationProcessorModule","features":[336]},{"name":"RelationProcessorPackage","features":[336]},{"name":"RtlConvertDeviceFamilyInfoToString","features":[336]},{"name":"RtlGetDeviceFamilyInfoEnum","features":[336]},{"name":"RtlGetProductInfo","features":[305,336]},{"name":"RtlGetSystemGlobalData","features":[336]},{"name":"RtlOsDeploymentState","features":[336]},{"name":"RtlSwitchedVVI","features":[336]},{"name":"SCEX2_ALT_NETBIOS_NAME","features":[336]},{"name":"SPVERSION_MASK","features":[336]},{"name":"SUBVERSION_MASK","features":[336]},{"name":"SYSTEM_CPU_SET_INFORMATION","features":[336]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED","features":[336]},{"name":"SYSTEM_CPU_SET_INFORMATION_ALLOCATED_TO_TARGET_PROCESS","features":[336]},{"name":"SYSTEM_CPU_SET_INFORMATION_PARKED","features":[336]},{"name":"SYSTEM_CPU_SET_INFORMATION_REALTIME","features":[336]},{"name":"SYSTEM_INFO","features":[336]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION","features":[336]},{"name":"SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX","features":[336]},{"name":"SYSTEM_POOL_ZEROING_INFORMATION","features":[305,336]},{"name":"SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION","features":[336]},{"name":"SYSTEM_SUPPORTED_PROCESSOR_ARCHITECTURES_INFORMATION","features":[336]},{"name":"SetComputerNameA","features":[305,336]},{"name":"SetComputerNameEx2W","features":[305,336]},{"name":"SetComputerNameExA","features":[305,336]},{"name":"SetComputerNameExW","features":[305,336]},{"name":"SetComputerNameW","features":[305,336]},{"name":"SetLocalTime","features":[305,336]},{"name":"SetSystemTime","features":[305,336]},{"name":"SetSystemTimeAdjustment","features":[305,336]},{"name":"SetSystemTimeAdjustmentPrecise","features":[305,336]},{"name":"USER_CET_ENVIRONMENT","features":[336]},{"name":"USER_CET_ENVIRONMENT_SGX2_ENCLAVE","features":[336]},{"name":"USER_CET_ENVIRONMENT_VBS_BASIC_ENCLAVE","features":[336]},{"name":"USER_CET_ENVIRONMENT_VBS_ENCLAVE","features":[336]},{"name":"USER_CET_ENVIRONMENT_WIN32_PROCESS","features":[336]},{"name":"VER_BUILDNUMBER","features":[336]},{"name":"VER_FLAGS","features":[336]},{"name":"VER_MAJORVERSION","features":[336]},{"name":"VER_MINORVERSION","features":[336]},{"name":"VER_PLATFORMID","features":[336]},{"name":"VER_PRODUCT_TYPE","features":[336]},{"name":"VER_SERVICEPACKMAJOR","features":[336]},{"name":"VER_SERVICEPACKMINOR","features":[336]},{"name":"VER_SUITENAME","features":[336]},{"name":"VerSetConditionMask","features":[336]},{"name":"VerifyVersionInfoA","features":[305,336]},{"name":"VerifyVersionInfoW","features":[305,336]},{"name":"WDK_NTDDI_VERSION","features":[336]},{"name":"_WIN32_IE_IE100","features":[336]},{"name":"_WIN32_IE_IE110","features":[336]},{"name":"_WIN32_IE_IE20","features":[336]},{"name":"_WIN32_IE_IE30","features":[336]},{"name":"_WIN32_IE_IE302","features":[336]},{"name":"_WIN32_IE_IE40","features":[336]},{"name":"_WIN32_IE_IE401","features":[336]},{"name":"_WIN32_IE_IE50","features":[336]},{"name":"_WIN32_IE_IE501","features":[336]},{"name":"_WIN32_IE_IE55","features":[336]},{"name":"_WIN32_IE_IE60","features":[336]},{"name":"_WIN32_IE_IE60SP1","features":[336]},{"name":"_WIN32_IE_IE60SP2","features":[336]},{"name":"_WIN32_IE_IE70","features":[336]},{"name":"_WIN32_IE_IE80","features":[336]},{"name":"_WIN32_IE_IE90","features":[336]},{"name":"_WIN32_IE_LONGHORN","features":[336]},{"name":"_WIN32_IE_NT4","features":[336]},{"name":"_WIN32_IE_NT4SP1","features":[336]},{"name":"_WIN32_IE_NT4SP2","features":[336]},{"name":"_WIN32_IE_NT4SP3","features":[336]},{"name":"_WIN32_IE_NT4SP4","features":[336]},{"name":"_WIN32_IE_NT4SP5","features":[336]},{"name":"_WIN32_IE_NT4SP6","features":[336]},{"name":"_WIN32_IE_WIN10","features":[336]},{"name":"_WIN32_IE_WIN2K","features":[336]},{"name":"_WIN32_IE_WIN2KSP1","features":[336]},{"name":"_WIN32_IE_WIN2KSP2","features":[336]},{"name":"_WIN32_IE_WIN2KSP3","features":[336]},{"name":"_WIN32_IE_WIN2KSP4","features":[336]},{"name":"_WIN32_IE_WIN6","features":[336]},{"name":"_WIN32_IE_WIN7","features":[336]},{"name":"_WIN32_IE_WIN8","features":[336]},{"name":"_WIN32_IE_WIN98","features":[336]},{"name":"_WIN32_IE_WIN98SE","features":[336]},{"name":"_WIN32_IE_WINBLUE","features":[336]},{"name":"_WIN32_IE_WINME","features":[336]},{"name":"_WIN32_IE_WINTHRESHOLD","features":[336]},{"name":"_WIN32_IE_WS03","features":[336]},{"name":"_WIN32_IE_WS03SP1","features":[336]},{"name":"_WIN32_IE_XP","features":[336]},{"name":"_WIN32_IE_XPSP1","features":[336]},{"name":"_WIN32_IE_XPSP2","features":[336]},{"name":"_WIN32_WINNT_LONGHORN","features":[336]},{"name":"_WIN32_WINNT_NT4","features":[336]},{"name":"_WIN32_WINNT_VISTA","features":[336]},{"name":"_WIN32_WINNT_WIN10","features":[336]},{"name":"_WIN32_WINNT_WIN2K","features":[336]},{"name":"_WIN32_WINNT_WIN6","features":[336]},{"name":"_WIN32_WINNT_WIN7","features":[336]},{"name":"_WIN32_WINNT_WIN8","features":[336]},{"name":"_WIN32_WINNT_WINBLUE","features":[336]},{"name":"_WIN32_WINNT_WINTHRESHOLD","features":[336]},{"name":"_WIN32_WINNT_WINXP","features":[336]},{"name":"_WIN32_WINNT_WS03","features":[336]},{"name":"_WIN32_WINNT_WS08","features":[336]}],"616":[{"name":"ACCESS_ALLOWED_ACE_TYPE","features":[339]},{"name":"ACCESS_ALLOWED_CALLBACK_ACE_TYPE","features":[339]},{"name":"ACCESS_ALLOWED_CALLBACK_OBJECT_ACE_TYPE","features":[339]},{"name":"ACCESS_ALLOWED_COMPOUND_ACE_TYPE","features":[339]},{"name":"ACCESS_ALLOWED_OBJECT_ACE_TYPE","features":[339]},{"name":"ACCESS_DENIED_ACE_TYPE","features":[339]},{"name":"ACCESS_DENIED_CALLBACK_ACE_TYPE","features":[339]},{"name":"ACCESS_DENIED_CALLBACK_OBJECT_ACE_TYPE","features":[339]},{"name":"ACCESS_DENIED_OBJECT_ACE_TYPE","features":[339]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_A","features":[339]},{"name":"ACCESS_DS_OBJECT_TYPE_NAME_W","features":[339]},{"name":"ACCESS_DS_SOURCE_A","features":[339]},{"name":"ACCESS_DS_SOURCE_W","features":[339]},{"name":"ACCESS_FILTER_SECURITY_INFORMATION","features":[339]},{"name":"ACCESS_MAX_LEVEL","features":[339]},{"name":"ACCESS_MAX_MS_ACE_TYPE","features":[339]},{"name":"ACCESS_MAX_MS_OBJECT_ACE_TYPE","features":[339]},{"name":"ACCESS_MAX_MS_V2_ACE_TYPE","features":[339]},{"name":"ACCESS_MAX_MS_V3_ACE_TYPE","features":[339]},{"name":"ACCESS_MAX_MS_V4_ACE_TYPE","features":[339]},{"name":"ACCESS_MAX_MS_V5_ACE_TYPE","features":[339]},{"name":"ACCESS_MIN_MS_ACE_TYPE","features":[339]},{"name":"ACCESS_MIN_MS_OBJECT_ACE_TYPE","features":[339]},{"name":"ACCESS_OBJECT_GUID","features":[339]},{"name":"ACCESS_PROPERTY_GUID","features":[339]},{"name":"ACCESS_PROPERTY_SET_GUID","features":[339]},{"name":"ACCESS_REASON_DATA_MASK","features":[339]},{"name":"ACCESS_REASON_EXDATA_MASK","features":[339]},{"name":"ACCESS_REASON_STAGING_MASK","features":[339]},{"name":"ACCESS_REASON_TYPE","features":[339]},{"name":"ACCESS_REASON_TYPE_MASK","features":[339]},{"name":"ACCESS_SYSTEM_SECURITY","features":[339]},{"name":"ACL_REVISION1","features":[339]},{"name":"ACL_REVISION2","features":[339]},{"name":"ACL_REVISION3","features":[339]},{"name":"ACL_REVISION4","features":[339]},{"name":"ACPI_PPM_HARDWARE_ALL","features":[339]},{"name":"ACPI_PPM_SOFTWARE_ALL","features":[339]},{"name":"ACPI_PPM_SOFTWARE_ANY","features":[339]},{"name":"ACTIVATION_CONTEXT_INFO_CLASS","features":[339]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF","features":[339]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_NONE","features":[339]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_URL","features":[339]},{"name":"ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_APPLICATION_SETTINGS","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_COMPATIBILITY_INFO","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION","features":[339]},{"name":"ACTIVATION_CONTEXT_SECTION_WINRT_ACTIVATABLE_CLASSES","features":[339]},{"name":"ALERT_SYSTEM_CRITICAL","features":[339]},{"name":"ALERT_SYSTEM_ERROR","features":[339]},{"name":"ALERT_SYSTEM_INFORMATIONAL","features":[339]},{"name":"ALERT_SYSTEM_QUERY","features":[339]},{"name":"ALERT_SYSTEM_SEV","features":[339]},{"name":"ALERT_SYSTEM_WARNING","features":[339]},{"name":"ALL_POWERSCHEMES_GUID","features":[339]},{"name":"ANON_OBJECT_HEADER","features":[339]},{"name":"ANON_OBJECT_HEADER_BIGOBJ","features":[339]},{"name":"ANON_OBJECT_HEADER_V2","features":[339]},{"name":"ANYSIZE_ARRAY","features":[339]},{"name":"APPCOMMAND_BASS_BOOST","features":[339]},{"name":"APPCOMMAND_BASS_DOWN","features":[339]},{"name":"APPCOMMAND_BASS_UP","features":[339]},{"name":"APPCOMMAND_BROWSER_BACKWARD","features":[339]},{"name":"APPCOMMAND_BROWSER_FAVORITES","features":[339]},{"name":"APPCOMMAND_BROWSER_FORWARD","features":[339]},{"name":"APPCOMMAND_BROWSER_HOME","features":[339]},{"name":"APPCOMMAND_BROWSER_REFRESH","features":[339]},{"name":"APPCOMMAND_BROWSER_SEARCH","features":[339]},{"name":"APPCOMMAND_BROWSER_STOP","features":[339]},{"name":"APPCOMMAND_CLOSE","features":[339]},{"name":"APPCOMMAND_COPY","features":[339]},{"name":"APPCOMMAND_CORRECTION_LIST","features":[339]},{"name":"APPCOMMAND_CUT","features":[339]},{"name":"APPCOMMAND_DELETE","features":[339]},{"name":"APPCOMMAND_DICTATE_OR_COMMAND_CONTROL_TOGGLE","features":[339]},{"name":"APPCOMMAND_DWM_FLIP3D","features":[339]},{"name":"APPCOMMAND_FIND","features":[339]},{"name":"APPCOMMAND_FORWARD_MAIL","features":[339]},{"name":"APPCOMMAND_HELP","features":[339]},{"name":"APPCOMMAND_ID","features":[339]},{"name":"APPCOMMAND_LAUNCH_APP1","features":[339]},{"name":"APPCOMMAND_LAUNCH_APP2","features":[339]},{"name":"APPCOMMAND_LAUNCH_MAIL","features":[339]},{"name":"APPCOMMAND_LAUNCH_MEDIA_SELECT","features":[339]},{"name":"APPCOMMAND_MEDIA_CHANNEL_DOWN","features":[339]},{"name":"APPCOMMAND_MEDIA_CHANNEL_UP","features":[339]},{"name":"APPCOMMAND_MEDIA_FAST_FORWARD","features":[339]},{"name":"APPCOMMAND_MEDIA_NEXTTRACK","features":[339]},{"name":"APPCOMMAND_MEDIA_PAUSE","features":[339]},{"name":"APPCOMMAND_MEDIA_PLAY","features":[339]},{"name":"APPCOMMAND_MEDIA_PLAY_PAUSE","features":[339]},{"name":"APPCOMMAND_MEDIA_PREVIOUSTRACK","features":[339]},{"name":"APPCOMMAND_MEDIA_RECORD","features":[339]},{"name":"APPCOMMAND_MEDIA_REWIND","features":[339]},{"name":"APPCOMMAND_MEDIA_STOP","features":[339]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_DOWN","features":[339]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_MUTE","features":[339]},{"name":"APPCOMMAND_MICROPHONE_VOLUME_UP","features":[339]},{"name":"APPCOMMAND_MIC_ON_OFF_TOGGLE","features":[339]},{"name":"APPCOMMAND_NEW","features":[339]},{"name":"APPCOMMAND_OPEN","features":[339]},{"name":"APPCOMMAND_PASTE","features":[339]},{"name":"APPCOMMAND_PRINT","features":[339]},{"name":"APPCOMMAND_REDO","features":[339]},{"name":"APPCOMMAND_REPLY_TO_MAIL","features":[339]},{"name":"APPCOMMAND_SAVE","features":[339]},{"name":"APPCOMMAND_SEND_MAIL","features":[339]},{"name":"APPCOMMAND_SPELL_CHECK","features":[339]},{"name":"APPCOMMAND_TREBLE_DOWN","features":[339]},{"name":"APPCOMMAND_TREBLE_UP","features":[339]},{"name":"APPCOMMAND_UNDO","features":[339]},{"name":"APPCOMMAND_VOLUME_DOWN","features":[339]},{"name":"APPCOMMAND_VOLUME_MUTE","features":[339]},{"name":"APPCOMMAND_VOLUME_UP","features":[339]},{"name":"APPLICATIONLAUNCH_SETTING_VALUE","features":[339]},{"name":"APPLICATION_ERROR_MASK","features":[339]},{"name":"ARM64_FNPDATA_CR","features":[339]},{"name":"ARM64_FNPDATA_FLAGS","features":[339]},{"name":"ARM64_MAX_BREAKPOINTS","features":[339]},{"name":"ARM64_MAX_WATCHPOINTS","features":[339]},{"name":"ARM64_MULT_INTRINSICS_SUPPORTED","features":[339]},{"name":"ARM64_PREFETCH_KEEP","features":[339]},{"name":"ARM64_PREFETCH_L1","features":[339]},{"name":"ARM64_PREFETCH_L2","features":[339]},{"name":"ARM64_PREFETCH_L3","features":[339]},{"name":"ARM64_PREFETCH_PLD","features":[339]},{"name":"ARM64_PREFETCH_PLI","features":[339]},{"name":"ARM64_PREFETCH_PST","features":[339]},{"name":"ARM64_PREFETCH_STRM","features":[339]},{"name":"ARM_CACHE_ALIGNMENT_SIZE","features":[339]},{"name":"ARM_MAX_BREAKPOINTS","features":[339]},{"name":"ARM_MAX_WATCHPOINTS","features":[339]},{"name":"ASSERT_BREAKPOINT","features":[339]},{"name":"ATF_FLAGS","features":[339]},{"name":"ATF_ONOFFFEEDBACK","features":[339]},{"name":"ATF_TIMEOUTON","features":[339]},{"name":"AUDIT_ALLOW_NO_PRIVILEGE","features":[339]},{"name":"AccessReasonAllowedAce","features":[339]},{"name":"AccessReasonAllowedParentAce","features":[339]},{"name":"AccessReasonDeniedAce","features":[339]},{"name":"AccessReasonDeniedParentAce","features":[339]},{"name":"AccessReasonEmptyDacl","features":[339]},{"name":"AccessReasonFilterAce","features":[339]},{"name":"AccessReasonFromPrivilege","features":[339]},{"name":"AccessReasonIntegrityLevel","features":[339]},{"name":"AccessReasonMissingPrivilege","features":[339]},{"name":"AccessReasonNoGrant","features":[339]},{"name":"AccessReasonNoSD","features":[339]},{"name":"AccessReasonNone","features":[339]},{"name":"AccessReasonNotGrantedByCape","features":[339]},{"name":"AccessReasonNotGrantedByParentCape","features":[339]},{"name":"AccessReasonNotGrantedToAppContainer","features":[339]},{"name":"AccessReasonNullDacl","features":[339]},{"name":"AccessReasonOwnership","features":[339]},{"name":"AccessReasonTrustLabel","features":[339]},{"name":"ActivationContextBasicInformation","features":[339]},{"name":"ActivationContextDetailedInformation","features":[339]},{"name":"ActivationContextManifestResourceName","features":[339]},{"name":"AdapterType","features":[339]},{"name":"AssemblyDetailedInformationInActivationContext","features":[339]},{"name":"AssemblyDetailedInformationInActivationContxt","features":[339]},{"name":"AutoLoad","features":[339]},{"name":"BATTERY_DISCHARGE_FLAGS_ENABLE","features":[339]},{"name":"BATTERY_DISCHARGE_FLAGS_EVENTCODE_MASK","features":[339]},{"name":"BREAK_DEBUG_BASE","features":[339]},{"name":"BootLoad","features":[339]},{"name":"CACHE_FULLY_ASSOCIATIVE","features":[339]},{"name":"CFE_UNDERLINE","features":[339]},{"name":"CFG_CALL_TARGET_CONVERT_EXPORT_SUPPRESSED_TO_VALID","features":[339]},{"name":"CFG_CALL_TARGET_CONVERT_XFG_TO_CFG","features":[339]},{"name":"CFG_CALL_TARGET_PROCESSED","features":[339]},{"name":"CFG_CALL_TARGET_VALID","features":[339]},{"name":"CFG_CALL_TARGET_VALID_XFG","features":[339]},{"name":"CFU_CF1UNDERLINE","features":[339]},{"name":"CFU_INVERT","features":[339]},{"name":"CFU_UNDERLINE","features":[339]},{"name":"CFU_UNDERLINEDASH","features":[339]},{"name":"CFU_UNDERLINEDASHDOT","features":[339]},{"name":"CFU_UNDERLINEDASHDOTDOT","features":[339]},{"name":"CFU_UNDERLINEDOTTED","features":[339]},{"name":"CFU_UNDERLINEDOUBLE","features":[339]},{"name":"CFU_UNDERLINEDOUBLEWAVE","features":[339]},{"name":"CFU_UNDERLINEHAIRLINE","features":[339]},{"name":"CFU_UNDERLINEHEAVYWAVE","features":[339]},{"name":"CFU_UNDERLINELONGDASH","features":[339]},{"name":"CFU_UNDERLINENONE","features":[339]},{"name":"CFU_UNDERLINETHICK","features":[339]},{"name":"CFU_UNDERLINETHICKDASH","features":[339]},{"name":"CFU_UNDERLINETHICKDASHDOT","features":[339]},{"name":"CFU_UNDERLINETHICKDASHDOTDOT","features":[339]},{"name":"CFU_UNDERLINETHICKDOTTED","features":[339]},{"name":"CFU_UNDERLINETHICKLONGDASH","features":[339]},{"name":"CFU_UNDERLINEWAVE","features":[339]},{"name":"CFU_UNDERLINEWORD","features":[339]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION","features":[339]},{"name":"CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1","features":[339]},{"name":"CLAIM_SECURITY_ATTRIBUTE_CUSTOM_FLAGS","features":[339]},{"name":"CLAIM_SECURITY_ATTRIBUTE_TYPE_INVALID","features":[339]},{"name":"CM_SERVICE_MEASURED_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_NETWORK_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_RAM_DISK_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_SD_DISK_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_USB3_DISK_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_USB_DISK_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_VERIFIER_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_VIRTUAL_DISK_BOOT_LOAD","features":[339]},{"name":"CM_SERVICE_WINPE_BOOT_LOAD","features":[339]},{"name":"COMIMAGE_FLAGS_32BITPREFERRED","features":[339]},{"name":"COMIMAGE_FLAGS_32BITREQUIRED","features":[339]},{"name":"COMIMAGE_FLAGS_ILONLY","features":[339]},{"name":"COMIMAGE_FLAGS_IL_LIBRARY","features":[339]},{"name":"COMIMAGE_FLAGS_NATIVE_ENTRYPOINT","features":[339]},{"name":"COMIMAGE_FLAGS_STRONGNAMESIGNED","features":[339]},{"name":"COMIMAGE_FLAGS_TRACKDEBUGDATA","features":[339]},{"name":"COMPONENT_FILTER","features":[339]},{"name":"COMPONENT_KTM","features":[339]},{"name":"COMPONENT_VALID_FLAGS","features":[339]},{"name":"COMPRESSION_ENGINE_HIBER","features":[339]},{"name":"COMPRESSION_ENGINE_MAXIMUM","features":[339]},{"name":"COMPRESSION_ENGINE_STANDARD","features":[339]},{"name":"CORE_PARKING_POLICY_CHANGE_IDEAL","features":[339]},{"name":"CORE_PARKING_POLICY_CHANGE_MAX","features":[339]},{"name":"CORE_PARKING_POLICY_CHANGE_MULTISTEP","features":[339]},{"name":"CORE_PARKING_POLICY_CHANGE_ROCKET","features":[339]},{"name":"CORE_PARKING_POLICY_CHANGE_SINGLE","features":[339]},{"name":"COR_DELETED_NAME_LENGTH","features":[339]},{"name":"COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE","features":[339]},{"name":"COR_VERSION_MAJOR","features":[339]},{"name":"COR_VERSION_MAJOR_V2","features":[339]},{"name":"COR_VERSION_MINOR","features":[339]},{"name":"COR_VTABLEGAP_NAME_LENGTH","features":[339]},{"name":"COR_VTABLE_32BIT","features":[339]},{"name":"COR_VTABLE_64BIT","features":[339]},{"name":"COR_VTABLE_CALL_MOST_DERIVED","features":[339]},{"name":"COR_VTABLE_FROM_UNMANAGED","features":[339]},{"name":"COR_VTABLE_FROM_UNMANAGED_RETAIN_APPDOMAIN","features":[339]},{"name":"CREATE_BOUNDARY_DESCRIPTOR_ADD_APPCONTAINER_SID","features":[339]},{"name":"CRITICAL_ACE_FLAG","features":[339]},{"name":"CTMF_INCLUDE_APPCONTAINER","features":[339]},{"name":"CTMF_INCLUDE_LPAC","features":[339]},{"name":"CompatibilityInformationInActivationContext","features":[339]},{"name":"CriticalError","features":[339]},{"name":"DECIMAL_NEG","features":[339]},{"name":"DEDICATED_MEMORY_CACHE_ELIGIBLE","features":[339]},{"name":"DEVICEFAMILYDEVICEFORM_KEY","features":[339]},{"name":"DEVICEFAMILYDEVICEFORM_VALUE","features":[339]},{"name":"DIAGNOSTIC_REASON_DETAILED_STRING","features":[339]},{"name":"DIAGNOSTIC_REASON_NOT_SPECIFIED","features":[339]},{"name":"DIAGNOSTIC_REASON_SIMPLE_STRING","features":[339]},{"name":"DIAGNOSTIC_REASON_VERSION","features":[339]},{"name":"DISCHARGE_POLICY_CRITICAL","features":[339]},{"name":"DISCHARGE_POLICY_LOW","features":[339]},{"name":"DISPATCHER_CONTEXT_NONVOLREG_ARM64","features":[339]},{"name":"DLL_PROCESS_ATTACH","features":[339]},{"name":"DLL_PROCESS_DETACH","features":[339]},{"name":"DLL_THREAD_ATTACH","features":[339]},{"name":"DLL_THREAD_DETACH","features":[339]},{"name":"DOMAIN_ALIAS_RID_ACCESS_CONTROL_ASSISTANCE_OPS","features":[339]},{"name":"DOMAIN_ALIAS_RID_ACCOUNT_OPS","features":[339]},{"name":"DOMAIN_ALIAS_RID_ADMINS","features":[339]},{"name":"DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS","features":[339]},{"name":"DOMAIN_ALIAS_RID_BACKUP_OPS","features":[339]},{"name":"DOMAIN_ALIAS_RID_CACHEABLE_PRINCIPALS_GROUP","features":[339]},{"name":"DOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP","features":[339]},{"name":"DOMAIN_ALIAS_RID_CRYPTO_OPERATORS","features":[339]},{"name":"DOMAIN_ALIAS_RID_DCOM_USERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_DEFAULT_ACCOUNT","features":[339]},{"name":"DOMAIN_ALIAS_RID_DEVICE_OWNERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP","features":[339]},{"name":"DOMAIN_ALIAS_RID_GUESTS","features":[339]},{"name":"DOMAIN_ALIAS_RID_HYPER_V_ADMINS","features":[339]},{"name":"DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_IUSERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_LOGGING_USERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_MONITORING_USERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS","features":[339]},{"name":"DOMAIN_ALIAS_RID_NON_CACHEABLE_PRINCIPALS_GROUP","features":[339]},{"name":"DOMAIN_ALIAS_RID_POWER_USERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_PREW2KCOMPACCESS","features":[339]},{"name":"DOMAIN_ALIAS_RID_PRINT_OPS","features":[339]},{"name":"DOMAIN_ALIAS_RID_RAS_SERVERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_RDS_ENDPOINT_SERVERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_RDS_MANAGEMENT_SERVERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_RDS_REMOTE_ACCESS_SERVERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_REMOTE_MANAGEMENT_USERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_REPLICATOR","features":[339]},{"name":"DOMAIN_ALIAS_RID_STORAGE_REPLICA_ADMINS","features":[339]},{"name":"DOMAIN_ALIAS_RID_SYSTEM_OPS","features":[339]},{"name":"DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS","features":[339]},{"name":"DOMAIN_ALIAS_RID_USERS","features":[339]},{"name":"DOMAIN_GROUP_RID_ADMINS","features":[339]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_CONTAINS_CLAIMS","features":[339]},{"name":"DOMAIN_GROUP_RID_AUTHORIZATION_DATA_IS_COMPOUNDED","features":[339]},{"name":"DOMAIN_GROUP_RID_CDC_RESERVED","features":[339]},{"name":"DOMAIN_GROUP_RID_CERT_ADMINS","features":[339]},{"name":"DOMAIN_GROUP_RID_CLONEABLE_CONTROLLERS","features":[339]},{"name":"DOMAIN_GROUP_RID_COMPUTERS","features":[339]},{"name":"DOMAIN_GROUP_RID_CONTROLLERS","features":[339]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_ADMINS","features":[339]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_KEY_ADMINS","features":[339]},{"name":"DOMAIN_GROUP_RID_ENTERPRISE_READONLY_DOMAIN_CONTROLLERS","features":[339]},{"name":"DOMAIN_GROUP_RID_GUESTS","features":[339]},{"name":"DOMAIN_GROUP_RID_KEY_ADMINS","features":[339]},{"name":"DOMAIN_GROUP_RID_POLICY_ADMINS","features":[339]},{"name":"DOMAIN_GROUP_RID_PROTECTED_USERS","features":[339]},{"name":"DOMAIN_GROUP_RID_READONLY_CONTROLLERS","features":[339]},{"name":"DOMAIN_GROUP_RID_SCHEMA_ADMINS","features":[339]},{"name":"DOMAIN_GROUP_RID_USERS","features":[339]},{"name":"DOMAIN_USER_RID_ADMIN","features":[339]},{"name":"DOMAIN_USER_RID_DEFAULT_ACCOUNT","features":[339]},{"name":"DOMAIN_USER_RID_GUEST","features":[339]},{"name":"DOMAIN_USER_RID_KRBTGT","features":[339]},{"name":"DOMAIN_USER_RID_MAX","features":[339]},{"name":"DOMAIN_USER_RID_WDAG_ACCOUNT","features":[339]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_ADD","features":[339]},{"name":"DYNAMIC_EH_CONTINUATION_TARGET_PROCESSED","features":[339]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_ADD","features":[339]},{"name":"DYNAMIC_ENFORCED_ADDRESS_RANGE_PROCESSED","features":[339]},{"name":"DemandLoad","features":[339]},{"name":"DisableLoad","features":[339]},{"name":"DriverType","features":[339]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IC_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_IC_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_IC_VAL_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41a_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41a_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41a_VAL_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41b_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41b_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41b_VAL_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41c_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41c_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM41c_VAL_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM5C_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM5C_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM5C_VAL_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM7B_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM7B_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM7B_VAL_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM9D_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM9D_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_IMM9D_VAL_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_POS_X","features":[339]},{"name":"EMARCH_ENC_I17_SIGN_INST_WORD_X","features":[339]},{"name":"EMARCH_ENC_I17_SIGN_SIZE_X","features":[339]},{"name":"EMARCH_ENC_I17_SIGN_VAL_POS_X","features":[339]},{"name":"ENCLAVE_LONG_ID_LENGTH","features":[339]},{"name":"ENCLAVE_SHORT_ID_LENGTH","features":[339]},{"name":"ENCLAVE_TYPE_SGX","features":[339]},{"name":"ENCLAVE_TYPE_SGX2","features":[339]},{"name":"ENCLAVE_TYPE_VBS","features":[339]},{"name":"ENCLAVE_TYPE_VBS_BASIC","features":[339]},{"name":"ENCLAVE_VBS_FLAG_DEBUG","features":[339]},{"name":"ENLISTMENT_BASIC_INFORMATION","features":[339]},{"name":"ENLISTMENT_CRM_INFORMATION","features":[339]},{"name":"ENLISTMENT_INFORMATION_CLASS","features":[339]},{"name":"ENLISTMENT_QUERY_INFORMATION","features":[339]},{"name":"ENLISTMENT_RECOVER","features":[339]},{"name":"ENLISTMENT_SET_INFORMATION","features":[339]},{"name":"ENLISTMENT_SUBORDINATE_RIGHTS","features":[339]},{"name":"ENLISTMENT_SUPERIOR_RIGHTS","features":[339]},{"name":"ERROR_SEVERITY_ERROR","features":[339]},{"name":"ERROR_SEVERITY_INFORMATIONAL","features":[339]},{"name":"ERROR_SEVERITY_SUCCESS","features":[339]},{"name":"ERROR_SEVERITY_WARNING","features":[339]},{"name":"EVENTLOG_BACKWARDS_READ","features":[339]},{"name":"EVENTLOG_END_ALL_PAIRED_EVENTS","features":[339]},{"name":"EVENTLOG_END_PAIRED_EVENT","features":[339]},{"name":"EVENTLOG_FORWARDS_READ","features":[339]},{"name":"EVENTLOG_PAIRED_EVENT_ACTIVE","features":[339]},{"name":"EVENTLOG_PAIRED_EVENT_INACTIVE","features":[339]},{"name":"EVENTLOG_START_PAIRED_EVENT","features":[339]},{"name":"EXCEPTION_COLLIDED_UNWIND","features":[339]},{"name":"EXCEPTION_EXECUTE_FAULT","features":[339]},{"name":"EXCEPTION_EXIT_UNWIND","features":[339]},{"name":"EXCEPTION_MAXIMUM_PARAMETERS","features":[339]},{"name":"EXCEPTION_NESTED_CALL","features":[339]},{"name":"EXCEPTION_NONCONTINUABLE","features":[339]},{"name":"EXCEPTION_READ_FAULT","features":[339]},{"name":"EXCEPTION_SOFTWARE_ORIGINATE","features":[339]},{"name":"EXCEPTION_STACK_INVALID","features":[339]},{"name":"EXCEPTION_TARGET_UNWIND","features":[339]},{"name":"EXCEPTION_UNWINDING","features":[339]},{"name":"EXCEPTION_WRITE_FAULT","features":[339]},{"name":"EnlistmentBasicInformation","features":[339]},{"name":"EnlistmentCrmInformation","features":[339]},{"name":"EnlistmentRecoveryInformation","features":[339]},{"name":"FAST_FAIL_ADMINLESS_ACCESS_DENIED","features":[339]},{"name":"FAST_FAIL_APCS_DISABLED","features":[339]},{"name":"FAST_FAIL_CAST_GUARD","features":[339]},{"name":"FAST_FAIL_CERTIFICATION_FAILURE","features":[339]},{"name":"FAST_FAIL_CONTROL_INVALID_RETURN_ADDRESS","features":[339]},{"name":"FAST_FAIL_CORRUPT_LIST_ENTRY","features":[339]},{"name":"FAST_FAIL_CRYPTO_LIBRARY","features":[339]},{"name":"FAST_FAIL_DEPRECATED_SERVICE_INVOKED","features":[339]},{"name":"FAST_FAIL_DLOAD_PROTECTION_FAILURE","features":[339]},{"name":"FAST_FAIL_ENCLAVE_CALL_FAILURE","features":[339]},{"name":"FAST_FAIL_ETW_CORRUPTION","features":[339]},{"name":"FAST_FAIL_FATAL_APP_EXIT","features":[339]},{"name":"FAST_FAIL_FLAGS_CORRUPTION","features":[339]},{"name":"FAST_FAIL_GS_COOKIE_INIT","features":[339]},{"name":"FAST_FAIL_GUARD_EXPORT_SUPPRESSION_FAILURE","features":[339]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE","features":[339]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_FAILURE_XFG","features":[339]},{"name":"FAST_FAIL_GUARD_ICALL_CHECK_SUPPRESSED","features":[339]},{"name":"FAST_FAIL_GUARD_JUMPTABLE","features":[339]},{"name":"FAST_FAIL_GUARD_SS_FAILURE","features":[339]},{"name":"FAST_FAIL_GUARD_WRITE_CHECK_FAILURE","features":[339]},{"name":"FAST_FAIL_HEAP_METADATA_CORRUPTION","features":[339]},{"name":"FAST_FAIL_HOST_VISIBILITY_CHANGE","features":[339]},{"name":"FAST_FAIL_INCORRECT_STACK","features":[339]},{"name":"FAST_FAIL_INVALID_ARG","features":[339]},{"name":"FAST_FAIL_INVALID_BALANCED_TREE","features":[339]},{"name":"FAST_FAIL_INVALID_BUFFER_ACCESS","features":[339]},{"name":"FAST_FAIL_INVALID_CALL_IN_DLL_CALLOUT","features":[339]},{"name":"FAST_FAIL_INVALID_CONTROL_STACK","features":[339]},{"name":"FAST_FAIL_INVALID_DISPATCH_CONTEXT","features":[339]},{"name":"FAST_FAIL_INVALID_EXCEPTION_CHAIN","features":[339]},{"name":"FAST_FAIL_INVALID_FAST_FAIL_CODE","features":[339]},{"name":"FAST_FAIL_INVALID_FIBER_SWITCH","features":[339]},{"name":"FAST_FAIL_INVALID_FILE_OPERATION","features":[339]},{"name":"FAST_FAIL_INVALID_FLS_DATA","features":[339]},{"name":"FAST_FAIL_INVALID_IAT","features":[339]},{"name":"FAST_FAIL_INVALID_IDLE_STATE","features":[339]},{"name":"FAST_FAIL_INVALID_IMAGE_BASE","features":[339]},{"name":"FAST_FAIL_INVALID_JUMP_BUFFER","features":[339]},{"name":"FAST_FAIL_INVALID_LOCK_STATE","features":[339]},{"name":"FAST_FAIL_INVALID_LONGJUMP_TARGET","features":[339]},{"name":"FAST_FAIL_INVALID_NEXT_THREAD","features":[339]},{"name":"FAST_FAIL_INVALID_PFN","features":[339]},{"name":"FAST_FAIL_INVALID_REFERENCE_COUNT","features":[339]},{"name":"FAST_FAIL_INVALID_SET_OF_CONTEXT","features":[339]},{"name":"FAST_FAIL_INVALID_SYSCALL_NUMBER","features":[339]},{"name":"FAST_FAIL_INVALID_THREAD","features":[339]},{"name":"FAST_FAIL_KERNEL_CET_SHADOW_STACK_ASSIST","features":[339]},{"name":"FAST_FAIL_LEGACY_GS_VIOLATION","features":[339]},{"name":"FAST_FAIL_LOADER_CONTINUITY_FAILURE","features":[339]},{"name":"FAST_FAIL_LOW_LABEL_ACCESS_DENIED","features":[339]},{"name":"FAST_FAIL_LPAC_ACCESS_DENIED","features":[339]},{"name":"FAST_FAIL_MRDATA_MODIFIED","features":[339]},{"name":"FAST_FAIL_MRDATA_PROTECTION_FAILURE","features":[339]},{"name":"FAST_FAIL_NTDLL_PATCH_FAILED","features":[339]},{"name":"FAST_FAIL_PATCH_CALLBACK_FAILED","features":[339]},{"name":"FAST_FAIL_PAYLOAD_RESTRICTION_VIOLATION","features":[339]},{"name":"FAST_FAIL_RANGE_CHECK_FAILURE","features":[339]},{"name":"FAST_FAIL_RIO_ABORT","features":[339]},{"name":"FAST_FAIL_SET_CONTEXT_DENIED","features":[339]},{"name":"FAST_FAIL_STACK_COOKIE_CHECK_FAILURE","features":[339]},{"name":"FAST_FAIL_UNEXPECTED_CALL","features":[339]},{"name":"FAST_FAIL_UNEXPECTED_HEAP_EXCEPTION","features":[339]},{"name":"FAST_FAIL_UNEXPECTED_HOST_BEHAVIOR","features":[339]},{"name":"FAST_FAIL_UNHANDLED_LSS_EXCEPTON","features":[339]},{"name":"FAST_FAIL_UNSAFE_EXTENSION_CALL","features":[339]},{"name":"FAST_FAIL_UNSAFE_REGISTRY_ACCESS","features":[339]},{"name":"FAST_FAIL_VEH_CORRUPTION","features":[339]},{"name":"FAST_FAIL_VTGUARD_CHECK_FAILURE","features":[339]},{"name":"FILE_ATTRIBUTE_STRICTLY_SEQUENTIAL","features":[339]},{"name":"FILE_CASE_PRESERVED_NAMES","features":[339]},{"name":"FILE_CASE_SENSITIVE_SEARCH","features":[339]},{"name":"FILE_CS_FLAG_CASE_SENSITIVE_DIR","features":[339]},{"name":"FILE_DAX_VOLUME","features":[339]},{"name":"FILE_FILE_COMPRESSION","features":[339]},{"name":"FILE_NAMED_STREAMS","features":[339]},{"name":"FILE_NAME_FLAGS_UNSPECIFIED","features":[339]},{"name":"FILE_NAME_FLAG_BOTH","features":[339]},{"name":"FILE_NAME_FLAG_DOS","features":[339]},{"name":"FILE_NAME_FLAG_HARDLINK","features":[339]},{"name":"FILE_NAME_FLAG_NTFS","features":[339]},{"name":"FILE_NOTIFY_FULL_INFORMATION","features":[339]},{"name":"FILE_PERSISTENT_ACLS","features":[339]},{"name":"FILE_READ_ONLY_VOLUME","features":[339]},{"name":"FILE_RETURNS_CLEANUP_RESULT_INFO","features":[339]},{"name":"FILE_SEQUENTIAL_WRITE_ONCE","features":[339]},{"name":"FILE_SUPPORTS_BLOCK_REFCOUNTING","features":[339]},{"name":"FILE_SUPPORTS_BYPASS_IO","features":[339]},{"name":"FILE_SUPPORTS_CASE_SENSITIVE_DIRS","features":[339]},{"name":"FILE_SUPPORTS_ENCRYPTION","features":[339]},{"name":"FILE_SUPPORTS_EXTENDED_ATTRIBUTES","features":[339]},{"name":"FILE_SUPPORTS_GHOSTING","features":[339]},{"name":"FILE_SUPPORTS_HARD_LINKS","features":[339]},{"name":"FILE_SUPPORTS_INTEGRITY_STREAMS","features":[339]},{"name":"FILE_SUPPORTS_OBJECT_IDS","features":[339]},{"name":"FILE_SUPPORTS_OPEN_BY_FILE_ID","features":[339]},{"name":"FILE_SUPPORTS_POSIX_UNLINK_RENAME","features":[339]},{"name":"FILE_SUPPORTS_REMOTE_STORAGE","features":[339]},{"name":"FILE_SUPPORTS_REPARSE_POINTS","features":[339]},{"name":"FILE_SUPPORTS_SPARSE_FILES","features":[339]},{"name":"FILE_SUPPORTS_SPARSE_VDL","features":[339]},{"name":"FILE_SUPPORTS_STREAM_SNAPSHOTS","features":[339]},{"name":"FILE_SUPPORTS_TRANSACTIONS","features":[339]},{"name":"FILE_SUPPORTS_USN_JOURNAL","features":[339]},{"name":"FILE_UNICODE_ON_DISK","features":[339]},{"name":"FILE_VOLUME_IS_COMPRESSED","features":[339]},{"name":"FILE_VOLUME_QUOTAS","features":[339]},{"name":"FILL_NV_MEMORY_FLAG_FLUSH","features":[339]},{"name":"FILL_NV_MEMORY_FLAG_NON_TEMPORAL","features":[339]},{"name":"FILL_NV_MEMORY_FLAG_NO_DRAIN","features":[339]},{"name":"FLS_MAXIMUM_AVAILABLE","features":[339]},{"name":"FLUSH_FLAGS_FILE_DATA_ONLY","features":[339]},{"name":"FLUSH_FLAGS_FILE_DATA_SYNC_ONLY","features":[339]},{"name":"FLUSH_FLAGS_NO_SYNC","features":[339]},{"name":"FLUSH_NV_MEMORY_IN_FLAG_NO_DRAIN","features":[339]},{"name":"FOREST_USER_RID_MAX","features":[339]},{"name":"FRAME_FPO","features":[339]},{"name":"FRAME_NONFPO","features":[339]},{"name":"FRAME_TRAP","features":[339]},{"name":"FRAME_TSS","features":[339]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContext","features":[339]},{"name":"FileInformationInAssemblyOfAssemblyInActivationContxt","features":[339]},{"name":"FileSystemType","features":[339]},{"name":"GC_ALLGESTURES","features":[339]},{"name":"GC_PAN","features":[339]},{"name":"GC_PAN_WITH_GUTTER","features":[339]},{"name":"GC_PAN_WITH_INERTIA","features":[339]},{"name":"GC_PAN_WITH_SINGLE_FINGER_HORIZONTALLY","features":[339]},{"name":"GC_PAN_WITH_SINGLE_FINGER_VERTICALLY","features":[339]},{"name":"GC_PRESSANDTAP","features":[339]},{"name":"GC_ROLLOVER","features":[339]},{"name":"GC_ROTATE","features":[339]},{"name":"GC_TWOFINGERTAP","features":[339]},{"name":"GC_ZOOM","features":[339]},{"name":"GDI_NONREMOTE","features":[356,339]},{"name":"GESTURECONFIG_FLAGS","features":[339]},{"name":"GUID_ACDC_POWER_SOURCE","features":[339]},{"name":"GUID_ACTIVE_POWERSCHEME","features":[339]},{"name":"GUID_ADAPTIVE_INPUT_CONTROLLER_STATE","features":[339]},{"name":"GUID_ADAPTIVE_POWER_BEHAVIOR_SUBGROUP","features":[339]},{"name":"GUID_ADVANCED_COLOR_QUALITY_BIAS","features":[339]},{"name":"GUID_ALLOW_AWAYMODE","features":[339]},{"name":"GUID_ALLOW_DISPLAY_REQUIRED","features":[339]},{"name":"GUID_ALLOW_RTC_WAKE","features":[339]},{"name":"GUID_ALLOW_STANDBY_STATES","features":[339]},{"name":"GUID_ALLOW_SYSTEM_REQUIRED","features":[339]},{"name":"GUID_APPLAUNCH_BUTTON","features":[339]},{"name":"GUID_BACKGROUND_TASK_NOTIFICATION","features":[339]},{"name":"GUID_BATTERY_COUNT","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_0","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_1","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_2","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_ACTION_3","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_0","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_1","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_2","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_FLAGS_3","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_0","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_1","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_2","features":[339]},{"name":"GUID_BATTERY_DISCHARGE_LEVEL_3","features":[339]},{"name":"GUID_BATTERY_PERCENTAGE_REMAINING","features":[339]},{"name":"GUID_BATTERY_SUBGROUP","features":[339]},{"name":"GUID_CONNECTIVITY_IN_STANDBY","features":[339]},{"name":"GUID_CONSOLE_DISPLAY_STATE","features":[339]},{"name":"GUID_CRITICAL_POWER_TRANSITION","features":[339]},{"name":"GUID_DEEP_SLEEP_ENABLED","features":[339]},{"name":"GUID_DEEP_SLEEP_PLATFORM_STATE","features":[339]},{"name":"GUID_DEVICE_IDLE_POLICY","features":[339]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_BRIGHTNESS","features":[339]},{"name":"GUID_DEVICE_POWER_POLICY_VIDEO_DIM_BRIGHTNESS","features":[339]},{"name":"GUID_DISCONNECTED_STANDBY_MODE","features":[339]},{"name":"GUID_DISK_ADAPTIVE_POWERDOWN","features":[339]},{"name":"GUID_DISK_BURST_IGNORE_THRESHOLD","features":[339]},{"name":"GUID_DISK_COALESCING_POWERDOWN_TIMEOUT","features":[339]},{"name":"GUID_DISK_IDLE_TIMEOUT","features":[339]},{"name":"GUID_DISK_MAX_POWER","features":[339]},{"name":"GUID_DISK_NVME_NOPPME","features":[339]},{"name":"GUID_DISK_POWERDOWN_TIMEOUT","features":[339]},{"name":"GUID_DISK_SUBGROUP","features":[339]},{"name":"GUID_ENABLE_SWITCH_FORCED_SHUTDOWN","features":[339]},{"name":"GUID_ENERGY_SAVER_BATTERY_THRESHOLD","features":[339]},{"name":"GUID_ENERGY_SAVER_BRIGHTNESS","features":[339]},{"name":"GUID_ENERGY_SAVER_POLICY","features":[339]},{"name":"GUID_ENERGY_SAVER_SUBGROUP","features":[339]},{"name":"GUID_EXECUTION_REQUIRED_REQUEST_TIMEOUT","features":[339]},{"name":"GUID_GLOBAL_USER_PRESENCE","features":[339]},{"name":"GUID_GPU_PREFERENCE_POLICY","features":[339]},{"name":"GUID_GRAPHICS_SUBGROUP","features":[339]},{"name":"GUID_HIBERNATE_FASTS4_POLICY","features":[339]},{"name":"GUID_HIBERNATE_TIMEOUT","features":[339]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DIM_TIMEOUT","features":[339]},{"name":"GUID_HUPR_ADAPTIVE_AWAY_DISPLAY_TIMEOUT","features":[339]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DIM_TIMEOUT","features":[339]},{"name":"GUID_HUPR_ADAPTIVE_INATTENTIVE_DISPLAY_TIMEOUT","features":[339]},{"name":"GUID_IDLE_BACKGROUND_TASK","features":[339]},{"name":"GUID_IDLE_RESILIENCY_PERIOD","features":[339]},{"name":"GUID_IDLE_RESILIENCY_SUBGROUP","features":[339]},{"name":"GUID_INTSTEER_LOAD_PER_PROC_TRIGGER","features":[339]},{"name":"GUID_INTSTEER_MODE","features":[339]},{"name":"GUID_INTSTEER_SUBGROUP","features":[339]},{"name":"GUID_INTSTEER_TIME_UNPARK_TRIGGER","features":[339]},{"name":"GUID_LEGACY_RTC_MITIGATION","features":[339]},{"name":"GUID_LIDCLOSE_ACTION","features":[339]},{"name":"GUID_LIDOPEN_POWERSTATE","features":[339]},{"name":"GUID_LIDSWITCH_STATE_CHANGE","features":[339]},{"name":"GUID_LIDSWITCH_STATE_RELIABILITY","features":[339]},{"name":"GUID_LOCK_CONSOLE_ON_WAKE","features":[339]},{"name":"GUID_MAX_POWER_SAVINGS","features":[339]},{"name":"GUID_MIN_POWER_SAVINGS","features":[339]},{"name":"GUID_MIXED_REALITY_MODE","features":[339]},{"name":"GUID_MONITOR_POWER_ON","features":[339]},{"name":"GUID_NON_ADAPTIVE_INPUT_TIMEOUT","features":[339]},{"name":"GUID_PCIEXPRESS_ASPM_POLICY","features":[339]},{"name":"GUID_PCIEXPRESS_SETTINGS_SUBGROUP","features":[339]},{"name":"GUID_POWERBUTTON_ACTION","features":[339]},{"name":"GUID_POWERSCHEME_PERSONALITY","features":[339]},{"name":"GUID_POWER_SAVING_STATUS","features":[339]},{"name":"GUID_PROCESSOR_ALLOW_THROTTLING","features":[339]},{"name":"GUID_PROCESSOR_CLASS0_FLOOR_PERF","features":[339]},{"name":"GUID_PROCESSOR_CLASS1_INITIAL_PERF","features":[339]},{"name":"GUID_PROCESSOR_COMPLEX_PARKING_POLICY","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_DECREASE_FACTOR","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_HISTORY_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_AFFINITY_WEIGHTING","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_POLICY","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_DECREASE_TIME","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_POLICY","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_INCREASE_TIME","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_MAX_CORES_1","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_MIN_CORES_1","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_DECREASE_FACTOR","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_HISTORY_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_CORE_PARKING_OVER_UTILIZATION_WEIGHTING","features":[339]},{"name":"GUID_PROCESSOR_DISTRIBUTE_UTILITY","features":[339]},{"name":"GUID_PROCESSOR_DUTY_CYCLING","features":[339]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT","features":[339]},{"name":"GUID_PROCESSOR_FREQUENCY_LIMIT_1","features":[339]},{"name":"GUID_PROCESSOR_HETEROGENEOUS_POLICY","features":[339]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_THRESHOLD_1","features":[339]},{"name":"GUID_PROCESSOR_HETERO_DECREASE_TIME","features":[339]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_THRESHOLD_1","features":[339]},{"name":"GUID_PROCESSOR_HETERO_INCREASE_TIME","features":[339]},{"name":"GUID_PROCESSOR_IDLESTATE_POLICY","features":[339]},{"name":"GUID_PROCESSOR_IDLE_ALLOW_SCALING","features":[339]},{"name":"GUID_PROCESSOR_IDLE_DEMOTE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_IDLE_DISABLE","features":[339]},{"name":"GUID_PROCESSOR_IDLE_PROMOTE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_IDLE_STATE_MAXIMUM","features":[339]},{"name":"GUID_PROCESSOR_IDLE_TIME_CHECK","features":[339]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK","features":[339]},{"name":"GUID_PROCESSOR_LATENCY_HINT_MIN_UNPARK_1","features":[339]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_LONG_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_MODULE_PARKING_POLICY","features":[339]},{"name":"GUID_PROCESSOR_PARKING_CONCURRENCY_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_PARKING_CORE_OVERRIDE","features":[339]},{"name":"GUID_PROCESSOR_PARKING_DISTRIBUTION_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_PARKING_HEADROOM_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE","features":[339]},{"name":"GUID_PROCESSOR_PARKING_PERF_STATE_1","features":[339]},{"name":"GUID_PROCESSOR_PERFSTATE_POLICY","features":[339]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_ACTIVITY_WINDOW","features":[339]},{"name":"GUID_PROCESSOR_PERF_AUTONOMOUS_MODE","features":[339]},{"name":"GUID_PROCESSOR_PERF_BOOST_MODE","features":[339]},{"name":"GUID_PROCESSOR_PERF_BOOST_POLICY","features":[339]},{"name":"GUID_PROCESSOR_PERF_CORE_PARKING_HISTORY","features":[339]},{"name":"GUID_PROCESSOR_PERF_DECREASE_HISTORY","features":[339]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY","features":[339]},{"name":"GUID_PROCESSOR_PERF_DECREASE_POLICY_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_PERF_DECREASE_THRESHOLD_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME","features":[339]},{"name":"GUID_PROCESSOR_PERF_DECREASE_TIME_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE","features":[339]},{"name":"GUID_PROCESSOR_PERF_ENERGY_PERFORMANCE_PREFERENCE_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_HISTORY","features":[339]},{"name":"GUID_PROCESSOR_PERF_HISTORY_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_INCREASE_HISTORY","features":[339]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY","features":[339]},{"name":"GUID_PROCESSOR_PERF_INCREASE_POLICY_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_PERF_INCREASE_THRESHOLD_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME","features":[339]},{"name":"GUID_PROCESSOR_PERF_INCREASE_TIME_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT","features":[339]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF","features":[339]},{"name":"GUID_PROCESSOR_PERF_LATENCY_HINT_PERF_1","features":[339]},{"name":"GUID_PROCESSOR_PERF_TIME_CHECK","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_THRESHOLD_1","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_DISABLE_TIME_1","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_THRESHOLD_1","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_ENABLE_TIME_1","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_EPP_CEILING_1","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR","features":[339]},{"name":"GUID_PROCESSOR_RESPONSIVENESS_PERF_FLOOR_1","features":[339]},{"name":"GUID_PROCESSOR_SETTINGS_SUBGROUP","features":[339]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_LOWER_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_SHORT_THREAD_ARCH_CLASS_UPPER_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_SHORT_THREAD_RUNTIME_THRESHOLD","features":[339]},{"name":"GUID_PROCESSOR_SHORT_THREAD_SCHEDULING_POLICY","features":[339]},{"name":"GUID_PROCESSOR_SMT_UNPARKING_POLICY","features":[339]},{"name":"GUID_PROCESSOR_SOFT_PARKING_LATENCY","features":[339]},{"name":"GUID_PROCESSOR_THREAD_SCHEDULING_POLICY","features":[339]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM","features":[339]},{"name":"GUID_PROCESSOR_THROTTLE_MAXIMUM_1","features":[339]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM","features":[339]},{"name":"GUID_PROCESSOR_THROTTLE_MINIMUM_1","features":[339]},{"name":"GUID_PROCESSOR_THROTTLE_POLICY","features":[339]},{"name":"GUID_SESSION_DISPLAY_STATUS","features":[339]},{"name":"GUID_SESSION_USER_PRESENCE","features":[339]},{"name":"GUID_SLEEPBUTTON_ACTION","features":[339]},{"name":"GUID_SLEEP_IDLE_THRESHOLD","features":[339]},{"name":"GUID_SLEEP_SUBGROUP","features":[339]},{"name":"GUID_SPR_ACTIVE_SESSION_CHANGE","features":[339]},{"name":"GUID_STANDBY_BUDGET_GRACE_PERIOD","features":[339]},{"name":"GUID_STANDBY_BUDGET_PERCENT","features":[339]},{"name":"GUID_STANDBY_RESERVE_GRACE_PERIOD","features":[339]},{"name":"GUID_STANDBY_RESERVE_TIME","features":[339]},{"name":"GUID_STANDBY_RESET_PERCENT","features":[339]},{"name":"GUID_STANDBY_TIMEOUT","features":[339]},{"name":"GUID_SYSTEM_AWAYMODE","features":[339]},{"name":"GUID_SYSTEM_BUTTON_SUBGROUP","features":[339]},{"name":"GUID_SYSTEM_COOLING_POLICY","features":[339]},{"name":"GUID_TYPICAL_POWER_SAVINGS","features":[339]},{"name":"GUID_UNATTEND_SLEEP_TIMEOUT","features":[339]},{"name":"GUID_USERINTERFACEBUTTON_ACTION","features":[339]},{"name":"GUID_USER_PRESENCE_PREDICTION","features":[339]},{"name":"GUID_VIDEO_ADAPTIVE_DISPLAY_BRIGHTNESS","features":[339]},{"name":"GUID_VIDEO_ADAPTIVE_PERCENT_INCREASE","features":[339]},{"name":"GUID_VIDEO_ADAPTIVE_POWERDOWN","features":[339]},{"name":"GUID_VIDEO_ANNOYANCE_TIMEOUT","features":[339]},{"name":"GUID_VIDEO_CONSOLE_LOCK_TIMEOUT","features":[339]},{"name":"GUID_VIDEO_CURRENT_MONITOR_BRIGHTNESS","features":[339]},{"name":"GUID_VIDEO_DIM_TIMEOUT","features":[339]},{"name":"GUID_VIDEO_POWERDOWN_TIMEOUT","features":[339]},{"name":"GUID_VIDEO_SUBGROUP","features":[339]},{"name":"HEAP_OPTIMIZE_RESOURCES_CURRENT_VERSION","features":[339]},{"name":"HEAP_OPTIMIZE_RESOURCES_INFORMATION","features":[339]},{"name":"HIBERFILE_BUCKET","features":[339]},{"name":"HIBERFILE_BUCKET_SIZE","features":[339]},{"name":"HIBERFILE_TYPE_FULL","features":[339]},{"name":"HIBERFILE_TYPE_MAX","features":[339]},{"name":"HIBERFILE_TYPE_NONE","features":[339]},{"name":"HIBERFILE_TYPE_REDUCED","features":[339]},{"name":"HiberFileBucket16GB","features":[339]},{"name":"HiberFileBucket1GB","features":[339]},{"name":"HiberFileBucket2GB","features":[339]},{"name":"HiberFileBucket32GB","features":[339]},{"name":"HiberFileBucket4GB","features":[339]},{"name":"HiberFileBucket8GB","features":[339]},{"name":"HiberFileBucketMax","features":[339]},{"name":"HiberFileBucketUnlimited","features":[339]},{"name":"IGP_CONVERSION","features":[339]},{"name":"IGP_GETIMEVERSION","features":[339]},{"name":"IGP_ID","features":[339]},{"name":"IGP_PROPERTY","features":[339]},{"name":"IGP_SELECT","features":[339]},{"name":"IGP_SENTENCE","features":[339]},{"name":"IGP_SETCOMPSTR","features":[339]},{"name":"IGP_UI","features":[339]},{"name":"IMAGE_ALPHA64_RUNTIME_FUNCTION_ENTRY","features":[339]},{"name":"IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY","features":[339]},{"name":"IMAGE_ARCHITECTURE_ENTRY","features":[339]},{"name":"IMAGE_ARCHITECTURE_HEADER","features":[339]},{"name":"IMAGE_ARCHIVE_END","features":[339]},{"name":"IMAGE_ARCHIVE_HYBRIDMAP_MEMBER","features":[339]},{"name":"IMAGE_ARCHIVE_LINKER_MEMBER","features":[339]},{"name":"IMAGE_ARCHIVE_LONGNAMES_MEMBER","features":[339]},{"name":"IMAGE_ARCHIVE_MEMBER_HEADER","features":[339]},{"name":"IMAGE_ARCHIVE_PAD","features":[339]},{"name":"IMAGE_ARCHIVE_START","features":[339]},{"name":"IMAGE_ARCHIVE_START_SIZE","features":[339]},{"name":"IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY_XDATA","features":[339]},{"name":"IMAGE_ARM_RUNTIME_FUNCTION_ENTRY","features":[339]},{"name":"IMAGE_AUX_SYMBOL","features":[339]},{"name":"IMAGE_AUX_SYMBOL_EX","features":[339]},{"name":"IMAGE_AUX_SYMBOL_TOKEN_DEF","features":[339]},{"name":"IMAGE_AUX_SYMBOL_TYPE","features":[339]},{"name":"IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF","features":[339]},{"name":"IMAGE_BASE_RELOCATION","features":[339]},{"name":"IMAGE_BDD_DYNAMIC_RELOCATION","features":[339]},{"name":"IMAGE_BDD_INFO","features":[339]},{"name":"IMAGE_BOUND_FORWARDER_REF","features":[339]},{"name":"IMAGE_BOUND_IMPORT_DESCRIPTOR","features":[339]},{"name":"IMAGE_CE_RUNTIME_FUNCTION_ENTRY","features":[339]},{"name":"IMAGE_COMDAT_SELECT_ANY","features":[339]},{"name":"IMAGE_COMDAT_SELECT_ASSOCIATIVE","features":[339]},{"name":"IMAGE_COMDAT_SELECT_EXACT_MATCH","features":[339]},{"name":"IMAGE_COMDAT_SELECT_LARGEST","features":[339]},{"name":"IMAGE_COMDAT_SELECT_NEWEST","features":[339]},{"name":"IMAGE_COMDAT_SELECT_NODUPLICATES","features":[339]},{"name":"IMAGE_COMDAT_SELECT_SAME_SIZE","features":[339]},{"name":"IMAGE_COR_EATJ_THUNK_SIZE","features":[339]},{"name":"IMAGE_COR_MIH_BASICBLOCK","features":[339]},{"name":"IMAGE_COR_MIH_EHRVA","features":[339]},{"name":"IMAGE_COR_MIH_METHODRVA","features":[339]},{"name":"IMAGE_DEBUG_MISC","features":[305,339]},{"name":"IMAGE_DEBUG_MISC_EXENAME","features":[339]},{"name":"IMAGE_DEBUG_TYPE_BBT","features":[339]},{"name":"IMAGE_DEBUG_TYPE_CLSID","features":[339]},{"name":"IMAGE_DEBUG_TYPE_EX_DLLCHARACTERISTICS","features":[339]},{"name":"IMAGE_DEBUG_TYPE_ILTCG","features":[339]},{"name":"IMAGE_DEBUG_TYPE_MPX","features":[339]},{"name":"IMAGE_DEBUG_TYPE_OMAP_FROM_SRC","features":[339]},{"name":"IMAGE_DEBUG_TYPE_OMAP_TO_SRC","features":[339]},{"name":"IMAGE_DEBUG_TYPE_POGO","features":[339]},{"name":"IMAGE_DEBUG_TYPE_REPRO","features":[339]},{"name":"IMAGE_DEBUG_TYPE_RESERVED10","features":[339]},{"name":"IMAGE_DEBUG_TYPE_SPGO","features":[339]},{"name":"IMAGE_DEBUG_TYPE_VC_FEATURE","features":[339]},{"name":"IMAGE_DOS_HEADER","features":[339]},{"name":"IMAGE_DOS_SIGNATURE","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION32","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION32_V2","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION64","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION64_V2","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION_FUNCTION_OVERRIDE","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_IMPORT_CONTROL_TRANSFER","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_INDIR_CONTROL_TRANSFER","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_EPILOGUE","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_RF_PROLOGUE","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION_GUARD_SWITCHTABLE_BRANCH","features":[339]},{"name":"IMAGE_DYNAMIC_RELOCATION_TABLE","features":[339]},{"name":"IMAGE_ENCLAVE_FLAG_PRIMARY_IMAGE","features":[339]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_AUTHOR_ID","features":[339]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_FAMILY_ID","features":[339]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_IMAGE_ID","features":[339]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_NONE","features":[339]},{"name":"IMAGE_ENCLAVE_IMPORT_MATCH_UNIQUE_ID","features":[339]},{"name":"IMAGE_ENCLAVE_LONG_ID_LENGTH","features":[339]},{"name":"IMAGE_ENCLAVE_POLICY_DEBUGGABLE","features":[339]},{"name":"IMAGE_ENCLAVE_SHORT_ID_LENGTH","features":[339]},{"name":"IMAGE_EPILOGUE_DYNAMIC_RELOCATION_HEADER","features":[339]},{"name":"IMAGE_EXPORT_DIRECTORY","features":[339]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_BRANCH26","features":[339]},{"name":"IMAGE_FUNCTION_OVERRIDE_ARM64_THUNK","features":[339]},{"name":"IMAGE_FUNCTION_OVERRIDE_DYNAMIC_RELOCATION","features":[339]},{"name":"IMAGE_FUNCTION_OVERRIDE_HEADER","features":[339]},{"name":"IMAGE_FUNCTION_OVERRIDE_INVALID","features":[339]},{"name":"IMAGE_FUNCTION_OVERRIDE_X64_REL32","features":[339]},{"name":"IMAGE_GUARD_CASTGUARD_PRESENT","features":[339]},{"name":"IMAGE_GUARD_CFW_INSTRUMENTED","features":[339]},{"name":"IMAGE_GUARD_CF_ENABLE_EXPORT_SUPPRESSION","features":[339]},{"name":"IMAGE_GUARD_CF_EXPORT_SUPPRESSION_INFO_PRESENT","features":[339]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_PRESENT","features":[339]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_MASK","features":[339]},{"name":"IMAGE_GUARD_CF_FUNCTION_TABLE_SIZE_SHIFT","features":[339]},{"name":"IMAGE_GUARD_CF_INSTRUMENTED","features":[339]},{"name":"IMAGE_GUARD_CF_LONGJUMP_TABLE_PRESENT","features":[339]},{"name":"IMAGE_GUARD_DELAYLOAD_IAT_IN_ITS_OWN_SECTION","features":[339]},{"name":"IMAGE_GUARD_EH_CONTINUATION_TABLE_PRESENT","features":[339]},{"name":"IMAGE_GUARD_FLAG_EXPORT_SUPPRESSED","features":[339]},{"name":"IMAGE_GUARD_FLAG_FID_LANGEXCPTHANDLER","features":[339]},{"name":"IMAGE_GUARD_FLAG_FID_SUPPRESSED","features":[339]},{"name":"IMAGE_GUARD_FLAG_FID_XFG","features":[339]},{"name":"IMAGE_GUARD_MEMCPY_PRESENT","features":[339]},{"name":"IMAGE_GUARD_PROTECT_DELAYLOAD_IAT","features":[339]},{"name":"IMAGE_GUARD_RETPOLINE_PRESENT","features":[339]},{"name":"IMAGE_GUARD_RF_ENABLE","features":[339]},{"name":"IMAGE_GUARD_RF_INSTRUMENTED","features":[339]},{"name":"IMAGE_GUARD_RF_STRICT","features":[339]},{"name":"IMAGE_GUARD_SECURITY_COOKIE_UNUSED","features":[339]},{"name":"IMAGE_GUARD_XFG_ENABLED","features":[339]},{"name":"IMAGE_HOT_PATCH_ABSOLUTE","features":[339]},{"name":"IMAGE_HOT_PATCH_BASE","features":[339]},{"name":"IMAGE_HOT_PATCH_BASE_CAN_ROLL_BACK","features":[339]},{"name":"IMAGE_HOT_PATCH_BASE_OBLIGATORY","features":[339]},{"name":"IMAGE_HOT_PATCH_CALL_TARGET","features":[339]},{"name":"IMAGE_HOT_PATCH_CHUNK_INVERSE","features":[339]},{"name":"IMAGE_HOT_PATCH_CHUNK_OBLIGATORY","features":[339]},{"name":"IMAGE_HOT_PATCH_CHUNK_RESERVED","features":[339]},{"name":"IMAGE_HOT_PATCH_CHUNK_SIZE","features":[339]},{"name":"IMAGE_HOT_PATCH_CHUNK_SOURCE_RVA","features":[339]},{"name":"IMAGE_HOT_PATCH_CHUNK_TARGET_RVA","features":[339]},{"name":"IMAGE_HOT_PATCH_CHUNK_TYPE","features":[339]},{"name":"IMAGE_HOT_PATCH_DYNAMIC_VALUE","features":[339]},{"name":"IMAGE_HOT_PATCH_FUNCTION","features":[339]},{"name":"IMAGE_HOT_PATCH_HASHES","features":[339]},{"name":"IMAGE_HOT_PATCH_INDIRECT","features":[339]},{"name":"IMAGE_HOT_PATCH_INFO","features":[339]},{"name":"IMAGE_HOT_PATCH_NONE","features":[339]},{"name":"IMAGE_HOT_PATCH_NO_CALL_TARGET","features":[339]},{"name":"IMAGE_HOT_PATCH_REL32","features":[339]},{"name":"IMAGE_IMPORT_BY_NAME","features":[339]},{"name":"IMAGE_IMPORT_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[339]},{"name":"IMAGE_IMPORT_DESCRIPTOR","features":[339]},{"name":"IMAGE_INDIR_CONTROL_TRANSFER_DYNAMIC_RELOCATION","features":[339]},{"name":"IMAGE_LINENUMBER","features":[339]},{"name":"IMAGE_NT_SIGNATURE","features":[339]},{"name":"IMAGE_NUMBEROF_DIRECTORY_ENTRIES","features":[339]},{"name":"IMAGE_ORDINAL_FLAG32","features":[339]},{"name":"IMAGE_ORDINAL_FLAG64","features":[339]},{"name":"IMAGE_OS2_HEADER","features":[339]},{"name":"IMAGE_OS2_SIGNATURE","features":[339]},{"name":"IMAGE_OS2_SIGNATURE_LE","features":[339]},{"name":"IMAGE_POLICY_ENTRY","features":[305,339]},{"name":"IMAGE_POLICY_ENTRY_TYPE","features":[339]},{"name":"IMAGE_POLICY_ID","features":[339]},{"name":"IMAGE_POLICY_METADATA","features":[305,339]},{"name":"IMAGE_POLICY_METADATA_VERSION","features":[339]},{"name":"IMAGE_POLICY_SECTION_NAME","features":[339]},{"name":"IMAGE_PROLOGUE_DYNAMIC_RELOCATION_HEADER","features":[339]},{"name":"IMAGE_RELOCATION","features":[339]},{"name":"IMAGE_REL_ALPHA_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_ALPHA_BRADDR","features":[339]},{"name":"IMAGE_REL_ALPHA_GPDISP","features":[339]},{"name":"IMAGE_REL_ALPHA_GPREL32","features":[339]},{"name":"IMAGE_REL_ALPHA_GPRELHI","features":[339]},{"name":"IMAGE_REL_ALPHA_GPRELLO","features":[339]},{"name":"IMAGE_REL_ALPHA_HINT","features":[339]},{"name":"IMAGE_REL_ALPHA_INLINE_REFLONG","features":[339]},{"name":"IMAGE_REL_ALPHA_LITERAL","features":[339]},{"name":"IMAGE_REL_ALPHA_LITUSE","features":[339]},{"name":"IMAGE_REL_ALPHA_MATCH","features":[339]},{"name":"IMAGE_REL_ALPHA_PAIR","features":[339]},{"name":"IMAGE_REL_ALPHA_REFHI","features":[339]},{"name":"IMAGE_REL_ALPHA_REFLO","features":[339]},{"name":"IMAGE_REL_ALPHA_REFLONG","features":[339]},{"name":"IMAGE_REL_ALPHA_REFLONGNB","features":[339]},{"name":"IMAGE_REL_ALPHA_REFQ1","features":[339]},{"name":"IMAGE_REL_ALPHA_REFQ2","features":[339]},{"name":"IMAGE_REL_ALPHA_REFQ3","features":[339]},{"name":"IMAGE_REL_ALPHA_REFQUAD","features":[339]},{"name":"IMAGE_REL_ALPHA_SECREL","features":[339]},{"name":"IMAGE_REL_ALPHA_SECRELHI","features":[339]},{"name":"IMAGE_REL_ALPHA_SECRELLO","features":[339]},{"name":"IMAGE_REL_ALPHA_SECTION","features":[339]},{"name":"IMAGE_REL_AMD64_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_AMD64_ADDR32","features":[339]},{"name":"IMAGE_REL_AMD64_ADDR32NB","features":[339]},{"name":"IMAGE_REL_AMD64_ADDR64","features":[339]},{"name":"IMAGE_REL_AMD64_CFG_BR","features":[339]},{"name":"IMAGE_REL_AMD64_CFG_BR_REX","features":[339]},{"name":"IMAGE_REL_AMD64_CFG_CALL","features":[339]},{"name":"IMAGE_REL_AMD64_EHANDLER","features":[339]},{"name":"IMAGE_REL_AMD64_IMPORT_BR","features":[339]},{"name":"IMAGE_REL_AMD64_IMPORT_CALL","features":[339]},{"name":"IMAGE_REL_AMD64_INDIR_BR","features":[339]},{"name":"IMAGE_REL_AMD64_INDIR_BR_REX","features":[339]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_FIRST","features":[339]},{"name":"IMAGE_REL_AMD64_INDIR_BR_SWITCHTABLE_LAST","features":[339]},{"name":"IMAGE_REL_AMD64_INDIR_CALL","features":[339]},{"name":"IMAGE_REL_AMD64_PAIR","features":[339]},{"name":"IMAGE_REL_AMD64_REL32","features":[339]},{"name":"IMAGE_REL_AMD64_REL32_1","features":[339]},{"name":"IMAGE_REL_AMD64_REL32_2","features":[339]},{"name":"IMAGE_REL_AMD64_REL32_3","features":[339]},{"name":"IMAGE_REL_AMD64_REL32_4","features":[339]},{"name":"IMAGE_REL_AMD64_REL32_5","features":[339]},{"name":"IMAGE_REL_AMD64_SECREL","features":[339]},{"name":"IMAGE_REL_AMD64_SECREL7","features":[339]},{"name":"IMAGE_REL_AMD64_SECTION","features":[339]},{"name":"IMAGE_REL_AMD64_SREL32","features":[339]},{"name":"IMAGE_REL_AMD64_SSPAN32","features":[339]},{"name":"IMAGE_REL_AMD64_TOKEN","features":[339]},{"name":"IMAGE_REL_AM_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_AM_ADDR32","features":[339]},{"name":"IMAGE_REL_AM_ADDR32NB","features":[339]},{"name":"IMAGE_REL_AM_CALL32","features":[339]},{"name":"IMAGE_REL_AM_FUNCINFO","features":[339]},{"name":"IMAGE_REL_AM_REL32_1","features":[339]},{"name":"IMAGE_REL_AM_REL32_2","features":[339]},{"name":"IMAGE_REL_AM_SECREL","features":[339]},{"name":"IMAGE_REL_AM_SECTION","features":[339]},{"name":"IMAGE_REL_AM_TOKEN","features":[339]},{"name":"IMAGE_REL_ARM64_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_ARM64_ADDR32","features":[339]},{"name":"IMAGE_REL_ARM64_ADDR32NB","features":[339]},{"name":"IMAGE_REL_ARM64_ADDR64","features":[339]},{"name":"IMAGE_REL_ARM64_BRANCH19","features":[339]},{"name":"IMAGE_REL_ARM64_BRANCH26","features":[339]},{"name":"IMAGE_REL_ARM64_PAGEBASE_REL21","features":[339]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12A","features":[339]},{"name":"IMAGE_REL_ARM64_PAGEOFFSET_12L","features":[339]},{"name":"IMAGE_REL_ARM64_REL21","features":[339]},{"name":"IMAGE_REL_ARM64_SECREL","features":[339]},{"name":"IMAGE_REL_ARM64_SECREL_HIGH12A","features":[339]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12A","features":[339]},{"name":"IMAGE_REL_ARM64_SECREL_LOW12L","features":[339]},{"name":"IMAGE_REL_ARM64_SECTION","features":[339]},{"name":"IMAGE_REL_ARM64_TOKEN","features":[339]},{"name":"IMAGE_REL_ARM_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_ARM_ADDR32","features":[339]},{"name":"IMAGE_REL_ARM_ADDR32NB","features":[339]},{"name":"IMAGE_REL_ARM_BLX11","features":[339]},{"name":"IMAGE_REL_ARM_BLX23T","features":[339]},{"name":"IMAGE_REL_ARM_BLX24","features":[339]},{"name":"IMAGE_REL_ARM_BRANCH11","features":[339]},{"name":"IMAGE_REL_ARM_BRANCH20T","features":[339]},{"name":"IMAGE_REL_ARM_BRANCH24","features":[339]},{"name":"IMAGE_REL_ARM_BRANCH24T","features":[339]},{"name":"IMAGE_REL_ARM_GPREL12","features":[339]},{"name":"IMAGE_REL_ARM_GPREL7","features":[339]},{"name":"IMAGE_REL_ARM_MOV32","features":[339]},{"name":"IMAGE_REL_ARM_MOV32A","features":[339]},{"name":"IMAGE_REL_ARM_MOV32T","features":[339]},{"name":"IMAGE_REL_ARM_SECREL","features":[339]},{"name":"IMAGE_REL_ARM_SECTION","features":[339]},{"name":"IMAGE_REL_ARM_TOKEN","features":[339]},{"name":"IMAGE_REL_BASED_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_BASED_ARM_MOV32","features":[339]},{"name":"IMAGE_REL_BASED_DIR64","features":[339]},{"name":"IMAGE_REL_BASED_HIGH","features":[339]},{"name":"IMAGE_REL_BASED_HIGHADJ","features":[339]},{"name":"IMAGE_REL_BASED_HIGHLOW","features":[339]},{"name":"IMAGE_REL_BASED_IA64_IMM64","features":[339]},{"name":"IMAGE_REL_BASED_LOW","features":[339]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_5","features":[339]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_7","features":[339]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_8","features":[339]},{"name":"IMAGE_REL_BASED_MACHINE_SPECIFIC_9","features":[339]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR","features":[339]},{"name":"IMAGE_REL_BASED_MIPS_JMPADDR16","features":[339]},{"name":"IMAGE_REL_BASED_RESERVED","features":[339]},{"name":"IMAGE_REL_BASED_THUMB_MOV32","features":[339]},{"name":"IMAGE_REL_CEE_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_CEE_ADDR32","features":[339]},{"name":"IMAGE_REL_CEE_ADDR32NB","features":[339]},{"name":"IMAGE_REL_CEE_ADDR64","features":[339]},{"name":"IMAGE_REL_CEE_SECREL","features":[339]},{"name":"IMAGE_REL_CEE_SECTION","features":[339]},{"name":"IMAGE_REL_CEE_TOKEN","features":[339]},{"name":"IMAGE_REL_CEF_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_CEF_ADDR32","features":[339]},{"name":"IMAGE_REL_CEF_ADDR32NB","features":[339]},{"name":"IMAGE_REL_CEF_ADDR64","features":[339]},{"name":"IMAGE_REL_CEF_SECREL","features":[339]},{"name":"IMAGE_REL_CEF_SECTION","features":[339]},{"name":"IMAGE_REL_CEF_TOKEN","features":[339]},{"name":"IMAGE_REL_EBC_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_EBC_ADDR32NB","features":[339]},{"name":"IMAGE_REL_EBC_REL32","features":[339]},{"name":"IMAGE_REL_EBC_SECREL","features":[339]},{"name":"IMAGE_REL_EBC_SECTION","features":[339]},{"name":"IMAGE_REL_I386_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_I386_DIR16","features":[339]},{"name":"IMAGE_REL_I386_DIR32","features":[339]},{"name":"IMAGE_REL_I386_DIR32NB","features":[339]},{"name":"IMAGE_REL_I386_REL16","features":[339]},{"name":"IMAGE_REL_I386_REL32","features":[339]},{"name":"IMAGE_REL_I386_SECREL","features":[339]},{"name":"IMAGE_REL_I386_SECREL7","features":[339]},{"name":"IMAGE_REL_I386_SECTION","features":[339]},{"name":"IMAGE_REL_I386_SEG12","features":[339]},{"name":"IMAGE_REL_I386_TOKEN","features":[339]},{"name":"IMAGE_REL_IA64_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_IA64_ADDEND","features":[339]},{"name":"IMAGE_REL_IA64_DIR32","features":[339]},{"name":"IMAGE_REL_IA64_DIR32NB","features":[339]},{"name":"IMAGE_REL_IA64_DIR64","features":[339]},{"name":"IMAGE_REL_IA64_GPREL22","features":[339]},{"name":"IMAGE_REL_IA64_GPREL32","features":[339]},{"name":"IMAGE_REL_IA64_IMM14","features":[339]},{"name":"IMAGE_REL_IA64_IMM22","features":[339]},{"name":"IMAGE_REL_IA64_IMM64","features":[339]},{"name":"IMAGE_REL_IA64_IMMGPREL64","features":[339]},{"name":"IMAGE_REL_IA64_LTOFF22","features":[339]},{"name":"IMAGE_REL_IA64_PCREL21B","features":[339]},{"name":"IMAGE_REL_IA64_PCREL21F","features":[339]},{"name":"IMAGE_REL_IA64_PCREL21M","features":[339]},{"name":"IMAGE_REL_IA64_PCREL60B","features":[339]},{"name":"IMAGE_REL_IA64_PCREL60F","features":[339]},{"name":"IMAGE_REL_IA64_PCREL60I","features":[339]},{"name":"IMAGE_REL_IA64_PCREL60M","features":[339]},{"name":"IMAGE_REL_IA64_PCREL60X","features":[339]},{"name":"IMAGE_REL_IA64_SECREL22","features":[339]},{"name":"IMAGE_REL_IA64_SECREL32","features":[339]},{"name":"IMAGE_REL_IA64_SECREL64I","features":[339]},{"name":"IMAGE_REL_IA64_SECTION","features":[339]},{"name":"IMAGE_REL_IA64_SREL14","features":[339]},{"name":"IMAGE_REL_IA64_SREL22","features":[339]},{"name":"IMAGE_REL_IA64_SREL32","features":[339]},{"name":"IMAGE_REL_IA64_TOKEN","features":[339]},{"name":"IMAGE_REL_IA64_UREL32","features":[339]},{"name":"IMAGE_REL_M32R_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_M32R_ADDR24","features":[339]},{"name":"IMAGE_REL_M32R_ADDR32","features":[339]},{"name":"IMAGE_REL_M32R_ADDR32NB","features":[339]},{"name":"IMAGE_REL_M32R_GPREL16","features":[339]},{"name":"IMAGE_REL_M32R_PAIR","features":[339]},{"name":"IMAGE_REL_M32R_PCREL16","features":[339]},{"name":"IMAGE_REL_M32R_PCREL24","features":[339]},{"name":"IMAGE_REL_M32R_PCREL8","features":[339]},{"name":"IMAGE_REL_M32R_REFHALF","features":[339]},{"name":"IMAGE_REL_M32R_REFHI","features":[339]},{"name":"IMAGE_REL_M32R_REFLO","features":[339]},{"name":"IMAGE_REL_M32R_SECREL32","features":[339]},{"name":"IMAGE_REL_M32R_SECTION","features":[339]},{"name":"IMAGE_REL_M32R_TOKEN","features":[339]},{"name":"IMAGE_REL_MIPS_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_MIPS_GPREL","features":[339]},{"name":"IMAGE_REL_MIPS_JMPADDR","features":[339]},{"name":"IMAGE_REL_MIPS_JMPADDR16","features":[339]},{"name":"IMAGE_REL_MIPS_LITERAL","features":[339]},{"name":"IMAGE_REL_MIPS_PAIR","features":[339]},{"name":"IMAGE_REL_MIPS_REFHALF","features":[339]},{"name":"IMAGE_REL_MIPS_REFHI","features":[339]},{"name":"IMAGE_REL_MIPS_REFLO","features":[339]},{"name":"IMAGE_REL_MIPS_REFWORD","features":[339]},{"name":"IMAGE_REL_MIPS_REFWORDNB","features":[339]},{"name":"IMAGE_REL_MIPS_SECREL","features":[339]},{"name":"IMAGE_REL_MIPS_SECRELHI","features":[339]},{"name":"IMAGE_REL_MIPS_SECRELLO","features":[339]},{"name":"IMAGE_REL_MIPS_SECTION","features":[339]},{"name":"IMAGE_REL_MIPS_TOKEN","features":[339]},{"name":"IMAGE_REL_PPC_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_PPC_ADDR14","features":[339]},{"name":"IMAGE_REL_PPC_ADDR16","features":[339]},{"name":"IMAGE_REL_PPC_ADDR24","features":[339]},{"name":"IMAGE_REL_PPC_ADDR32","features":[339]},{"name":"IMAGE_REL_PPC_ADDR32NB","features":[339]},{"name":"IMAGE_REL_PPC_ADDR64","features":[339]},{"name":"IMAGE_REL_PPC_BRNTAKEN","features":[339]},{"name":"IMAGE_REL_PPC_BRTAKEN","features":[339]},{"name":"IMAGE_REL_PPC_GPREL","features":[339]},{"name":"IMAGE_REL_PPC_IFGLUE","features":[339]},{"name":"IMAGE_REL_PPC_IMGLUE","features":[339]},{"name":"IMAGE_REL_PPC_NEG","features":[339]},{"name":"IMAGE_REL_PPC_PAIR","features":[339]},{"name":"IMAGE_REL_PPC_REFHI","features":[339]},{"name":"IMAGE_REL_PPC_REFLO","features":[339]},{"name":"IMAGE_REL_PPC_REL14","features":[339]},{"name":"IMAGE_REL_PPC_REL24","features":[339]},{"name":"IMAGE_REL_PPC_SECREL","features":[339]},{"name":"IMAGE_REL_PPC_SECREL16","features":[339]},{"name":"IMAGE_REL_PPC_SECRELHI","features":[339]},{"name":"IMAGE_REL_PPC_SECRELLO","features":[339]},{"name":"IMAGE_REL_PPC_SECTION","features":[339]},{"name":"IMAGE_REL_PPC_TOCDEFN","features":[339]},{"name":"IMAGE_REL_PPC_TOCREL14","features":[339]},{"name":"IMAGE_REL_PPC_TOCREL16","features":[339]},{"name":"IMAGE_REL_PPC_TOKEN","features":[339]},{"name":"IMAGE_REL_PPC_TYPEMASK","features":[339]},{"name":"IMAGE_REL_SH3_ABSOLUTE","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT16","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT32","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT32_NB","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT4","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT4_LONG","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT4_WORD","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT8","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT8_LONG","features":[339]},{"name":"IMAGE_REL_SH3_DIRECT8_WORD","features":[339]},{"name":"IMAGE_REL_SH3_GPREL4_LONG","features":[339]},{"name":"IMAGE_REL_SH3_PCREL12_WORD","features":[339]},{"name":"IMAGE_REL_SH3_PCREL8_LONG","features":[339]},{"name":"IMAGE_REL_SH3_PCREL8_WORD","features":[339]},{"name":"IMAGE_REL_SH3_SECREL","features":[339]},{"name":"IMAGE_REL_SH3_SECTION","features":[339]},{"name":"IMAGE_REL_SH3_SIZEOF_SECTION","features":[339]},{"name":"IMAGE_REL_SH3_STARTOF_SECTION","features":[339]},{"name":"IMAGE_REL_SH3_TOKEN","features":[339]},{"name":"IMAGE_REL_SHM_PAIR","features":[339]},{"name":"IMAGE_REL_SHM_PCRELPT","features":[339]},{"name":"IMAGE_REL_SHM_REFHALF","features":[339]},{"name":"IMAGE_REL_SHM_REFLO","features":[339]},{"name":"IMAGE_REL_SHM_RELHALF","features":[339]},{"name":"IMAGE_REL_SHM_RELLO","features":[339]},{"name":"IMAGE_REL_SH_NOMODE","features":[339]},{"name":"IMAGE_REL_THUMB_BLX23","features":[339]},{"name":"IMAGE_REL_THUMB_BRANCH20","features":[339]},{"name":"IMAGE_REL_THUMB_BRANCH24","features":[339]},{"name":"IMAGE_REL_THUMB_MOV32","features":[339]},{"name":"IMAGE_RESOURCE_DATA_ENTRY","features":[339]},{"name":"IMAGE_RESOURCE_DATA_IS_DIRECTORY","features":[339]},{"name":"IMAGE_RESOURCE_DIRECTORY","features":[339]},{"name":"IMAGE_RESOURCE_DIRECTORY_ENTRY","features":[339]},{"name":"IMAGE_RESOURCE_DIRECTORY_STRING","features":[339]},{"name":"IMAGE_RESOURCE_DIR_STRING_U","features":[339]},{"name":"IMAGE_RESOURCE_NAME_IS_STRING","features":[339]},{"name":"IMAGE_SEPARATE_DEBUG_FLAGS_MASK","features":[339]},{"name":"IMAGE_SEPARATE_DEBUG_HEADER","features":[339]},{"name":"IMAGE_SEPARATE_DEBUG_MISMATCH","features":[339]},{"name":"IMAGE_SEPARATE_DEBUG_SIGNATURE","features":[339]},{"name":"IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR","features":[339]},{"name":"IMAGE_SIZEOF_FILE_HEADER","features":[339]},{"name":"IMAGE_SIZEOF_SECTION_HEADER","features":[339]},{"name":"IMAGE_SIZEOF_SHORT_NAME","features":[339]},{"name":"IMAGE_SIZEOF_SYMBOL","features":[339]},{"name":"IMAGE_SWITCHTABLE_BRANCH_DYNAMIC_RELOCATION","features":[339]},{"name":"IMAGE_SYMBOL","features":[339]},{"name":"IMAGE_SYMBOL_EX","features":[339]},{"name":"IMAGE_SYM_CLASS_ARGUMENT","features":[339]},{"name":"IMAGE_SYM_CLASS_AUTOMATIC","features":[339]},{"name":"IMAGE_SYM_CLASS_BIT_FIELD","features":[339]},{"name":"IMAGE_SYM_CLASS_BLOCK","features":[339]},{"name":"IMAGE_SYM_CLASS_CLR_TOKEN","features":[339]},{"name":"IMAGE_SYM_CLASS_END_OF_STRUCT","features":[339]},{"name":"IMAGE_SYM_CLASS_ENUM_TAG","features":[339]},{"name":"IMAGE_SYM_CLASS_EXTERNAL","features":[339]},{"name":"IMAGE_SYM_CLASS_EXTERNAL_DEF","features":[339]},{"name":"IMAGE_SYM_CLASS_FAR_EXTERNAL","features":[339]},{"name":"IMAGE_SYM_CLASS_FILE","features":[339]},{"name":"IMAGE_SYM_CLASS_FUNCTION","features":[339]},{"name":"IMAGE_SYM_CLASS_LABEL","features":[339]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_ENUM","features":[339]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_STRUCT","features":[339]},{"name":"IMAGE_SYM_CLASS_MEMBER_OF_UNION","features":[339]},{"name":"IMAGE_SYM_CLASS_NULL","features":[339]},{"name":"IMAGE_SYM_CLASS_REGISTER","features":[339]},{"name":"IMAGE_SYM_CLASS_REGISTER_PARAM","features":[339]},{"name":"IMAGE_SYM_CLASS_SECTION","features":[339]},{"name":"IMAGE_SYM_CLASS_STATIC","features":[339]},{"name":"IMAGE_SYM_CLASS_STRUCT_TAG","features":[339]},{"name":"IMAGE_SYM_CLASS_TYPE_DEFINITION","features":[339]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_LABEL","features":[339]},{"name":"IMAGE_SYM_CLASS_UNDEFINED_STATIC","features":[339]},{"name":"IMAGE_SYM_CLASS_UNION_TAG","features":[339]},{"name":"IMAGE_SYM_CLASS_WEAK_EXTERNAL","features":[339]},{"name":"IMAGE_SYM_DTYPE_ARRAY","features":[339]},{"name":"IMAGE_SYM_DTYPE_FUNCTION","features":[339]},{"name":"IMAGE_SYM_DTYPE_NULL","features":[339]},{"name":"IMAGE_SYM_DTYPE_POINTER","features":[339]},{"name":"IMAGE_SYM_SECTION_MAX","features":[339]},{"name":"IMAGE_SYM_SECTION_MAX_EX","features":[339]},{"name":"IMAGE_SYM_TYPE_BYTE","features":[339]},{"name":"IMAGE_SYM_TYPE_CHAR","features":[339]},{"name":"IMAGE_SYM_TYPE_DOUBLE","features":[339]},{"name":"IMAGE_SYM_TYPE_DWORD","features":[339]},{"name":"IMAGE_SYM_TYPE_ENUM","features":[339]},{"name":"IMAGE_SYM_TYPE_FLOAT","features":[339]},{"name":"IMAGE_SYM_TYPE_INT","features":[339]},{"name":"IMAGE_SYM_TYPE_LONG","features":[339]},{"name":"IMAGE_SYM_TYPE_MOE","features":[339]},{"name":"IMAGE_SYM_TYPE_NULL","features":[339]},{"name":"IMAGE_SYM_TYPE_PCODE","features":[339]},{"name":"IMAGE_SYM_TYPE_SHORT","features":[339]},{"name":"IMAGE_SYM_TYPE_STRUCT","features":[339]},{"name":"IMAGE_SYM_TYPE_UINT","features":[339]},{"name":"IMAGE_SYM_TYPE_UNION","features":[339]},{"name":"IMAGE_SYM_TYPE_VOID","features":[339]},{"name":"IMAGE_SYM_TYPE_WORD","features":[339]},{"name":"IMAGE_TLS_DIRECTORY32","features":[339]},{"name":"IMAGE_TLS_DIRECTORY64","features":[339]},{"name":"IMAGE_VXD_HEADER","features":[339]},{"name":"IMAGE_VXD_SIGNATURE","features":[339]},{"name":"IMAGE_WEAK_EXTERN_ANTI_DEPENDENCY","features":[339]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_ALIAS","features":[339]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_LIBRARY","features":[339]},{"name":"IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY","features":[339]},{"name":"IMPORT_OBJECT_CODE","features":[339]},{"name":"IMPORT_OBJECT_CONST","features":[339]},{"name":"IMPORT_OBJECT_DATA","features":[339]},{"name":"IMPORT_OBJECT_HDR_SIG2","features":[339]},{"name":"IMPORT_OBJECT_HEADER","features":[339]},{"name":"IMPORT_OBJECT_NAME","features":[339]},{"name":"IMPORT_OBJECT_NAME_EXPORTAS","features":[339]},{"name":"IMPORT_OBJECT_NAME_NO_PREFIX","features":[339]},{"name":"IMPORT_OBJECT_NAME_TYPE","features":[339]},{"name":"IMPORT_OBJECT_NAME_UNDECORATE","features":[339]},{"name":"IMPORT_OBJECT_ORDINAL","features":[339]},{"name":"IMPORT_OBJECT_TYPE","features":[339]},{"name":"INITIAL_CPSR","features":[339]},{"name":"INITIAL_FPCSR","features":[339]},{"name":"INITIAL_FPSCR","features":[339]},{"name":"INITIAL_MXCSR","features":[339]},{"name":"IO_COMPLETION_MODIFY_STATE","features":[339]},{"name":"IO_REPARSE_TAG_AF_UNIX","features":[339]},{"name":"IO_REPARSE_TAG_APPEXECLINK","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_1","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_2","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_3","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_4","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_5","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_6","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_7","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_8","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_9","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_A","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_B","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_C","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_D","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_E","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_F","features":[339]},{"name":"IO_REPARSE_TAG_CLOUD_MASK","features":[339]},{"name":"IO_REPARSE_TAG_CSV","features":[339]},{"name":"IO_REPARSE_TAG_DATALESS_CIM","features":[339]},{"name":"IO_REPARSE_TAG_DEDUP","features":[339]},{"name":"IO_REPARSE_TAG_DFS","features":[339]},{"name":"IO_REPARSE_TAG_DFSR","features":[339]},{"name":"IO_REPARSE_TAG_FILE_PLACEHOLDER","features":[339]},{"name":"IO_REPARSE_TAG_GLOBAL_REPARSE","features":[339]},{"name":"IO_REPARSE_TAG_HSM","features":[339]},{"name":"IO_REPARSE_TAG_HSM2","features":[339]},{"name":"IO_REPARSE_TAG_MOUNT_POINT","features":[339]},{"name":"IO_REPARSE_TAG_NFS","features":[339]},{"name":"IO_REPARSE_TAG_ONEDRIVE","features":[339]},{"name":"IO_REPARSE_TAG_PROJFS","features":[339]},{"name":"IO_REPARSE_TAG_PROJFS_TOMBSTONE","features":[339]},{"name":"IO_REPARSE_TAG_RESERVED_INVALID","features":[339]},{"name":"IO_REPARSE_TAG_RESERVED_ONE","features":[339]},{"name":"IO_REPARSE_TAG_RESERVED_RANGE","features":[339]},{"name":"IO_REPARSE_TAG_RESERVED_TWO","features":[339]},{"name":"IO_REPARSE_TAG_RESERVED_ZERO","features":[339]},{"name":"IO_REPARSE_TAG_SIS","features":[339]},{"name":"IO_REPARSE_TAG_STORAGE_SYNC","features":[339]},{"name":"IO_REPARSE_TAG_SYMLINK","features":[339]},{"name":"IO_REPARSE_TAG_UNHANDLED","features":[339]},{"name":"IO_REPARSE_TAG_WCI","features":[339]},{"name":"IO_REPARSE_TAG_WCI_1","features":[339]},{"name":"IO_REPARSE_TAG_WCI_LINK","features":[339]},{"name":"IO_REPARSE_TAG_WCI_LINK_1","features":[339]},{"name":"IO_REPARSE_TAG_WCI_TOMBSTONE","features":[339]},{"name":"IO_REPARSE_TAG_WIM","features":[339]},{"name":"IO_REPARSE_TAG_WOF","features":[339]},{"name":"IS_TEXT_UNICODE_DBCS_LEADBYTE","features":[339]},{"name":"IS_TEXT_UNICODE_UTF8","features":[339]},{"name":"ITWW_OPEN_CONNECT","features":[339]},{"name":"IgnoreError","features":[339]},{"name":"ImagePolicyEntryTypeAnsiString","features":[339]},{"name":"ImagePolicyEntryTypeBool","features":[339]},{"name":"ImagePolicyEntryTypeInt16","features":[339]},{"name":"ImagePolicyEntryTypeInt32","features":[339]},{"name":"ImagePolicyEntryTypeInt64","features":[339]},{"name":"ImagePolicyEntryTypeInt8","features":[339]},{"name":"ImagePolicyEntryTypeMaximum","features":[339]},{"name":"ImagePolicyEntryTypeNone","features":[339]},{"name":"ImagePolicyEntryTypeOverride","features":[339]},{"name":"ImagePolicyEntryTypeUInt16","features":[339]},{"name":"ImagePolicyEntryTypeUInt32","features":[339]},{"name":"ImagePolicyEntryTypeUInt64","features":[339]},{"name":"ImagePolicyEntryTypeUInt8","features":[339]},{"name":"ImagePolicyEntryTypeUnicodeString","features":[339]},{"name":"ImagePolicyIdCapability","features":[339]},{"name":"ImagePolicyIdCrashDump","features":[339]},{"name":"ImagePolicyIdCrashDumpKey","features":[339]},{"name":"ImagePolicyIdCrashDumpKeyGuid","features":[339]},{"name":"ImagePolicyIdDebug","features":[339]},{"name":"ImagePolicyIdDeviceId","features":[339]},{"name":"ImagePolicyIdEtw","features":[339]},{"name":"ImagePolicyIdMaximum","features":[339]},{"name":"ImagePolicyIdNone","features":[339]},{"name":"ImagePolicyIdParentSd","features":[339]},{"name":"ImagePolicyIdParentSdRev","features":[339]},{"name":"ImagePolicyIdScenarioId","features":[339]},{"name":"ImagePolicyIdSvn","features":[339]},{"name":"JOB_OBJECT_ASSIGN_PROCESS","features":[339]},{"name":"JOB_OBJECT_IMPERSONATE","features":[339]},{"name":"JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS","features":[339]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT","features":[339]},{"name":"JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO","features":[339]},{"name":"JOB_OBJECT_MSG_END_OF_JOB_TIME","features":[339]},{"name":"JOB_OBJECT_MSG_END_OF_PROCESS_TIME","features":[339]},{"name":"JOB_OBJECT_MSG_EXIT_PROCESS","features":[339]},{"name":"JOB_OBJECT_MSG_JOB_CYCLE_TIME_LIMIT","features":[339]},{"name":"JOB_OBJECT_MSG_JOB_MEMORY_LIMIT","features":[339]},{"name":"JOB_OBJECT_MSG_MAXIMUM","features":[339]},{"name":"JOB_OBJECT_MSG_MINIMUM","features":[339]},{"name":"JOB_OBJECT_MSG_NEW_PROCESS","features":[339]},{"name":"JOB_OBJECT_MSG_NOTIFICATION_LIMIT","features":[339]},{"name":"JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT","features":[339]},{"name":"JOB_OBJECT_MSG_SILO_TERMINATED","features":[339]},{"name":"JOB_OBJECT_NET_RATE_CONTROL_MAX_DSCP_TAG","features":[339]},{"name":"JOB_OBJECT_QUERY","features":[339]},{"name":"JOB_OBJECT_SET_ATTRIBUTES","features":[339]},{"name":"JOB_OBJECT_SET_SECURITY_ATTRIBUTES","features":[339]},{"name":"JOB_OBJECT_TERMINATE","features":[339]},{"name":"JOB_OBJECT_UILIMIT_ALL","features":[339]},{"name":"JOB_OBJECT_UILIMIT_IME","features":[339]},{"name":"JOB_OBJECT_UI_VALID_FLAGS","features":[339]},{"name":"KERNEL_CET_CONTEXT","features":[339]},{"name":"KTMOBJECT_CURSOR","features":[339]},{"name":"KTMOBJECT_ENLISTMENT","features":[339]},{"name":"KTMOBJECT_INVALID","features":[339]},{"name":"KTMOBJECT_RESOURCE_MANAGER","features":[339]},{"name":"KTMOBJECT_TRANSACTION","features":[339]},{"name":"KTMOBJECT_TRANSACTION_MANAGER","features":[339]},{"name":"KTMOBJECT_TYPE","features":[339]},{"name":"LANG_AFRIKAANS","features":[339]},{"name":"LANG_ALBANIAN","features":[339]},{"name":"LANG_ALSATIAN","features":[339]},{"name":"LANG_AMHARIC","features":[339]},{"name":"LANG_ARABIC","features":[339]},{"name":"LANG_ARMENIAN","features":[339]},{"name":"LANG_ASSAMESE","features":[339]},{"name":"LANG_AZERBAIJANI","features":[339]},{"name":"LANG_AZERI","features":[339]},{"name":"LANG_BANGLA","features":[339]},{"name":"LANG_BASHKIR","features":[339]},{"name":"LANG_BASQUE","features":[339]},{"name":"LANG_BELARUSIAN","features":[339]},{"name":"LANG_BENGALI","features":[339]},{"name":"LANG_BOSNIAN","features":[339]},{"name":"LANG_BOSNIAN_NEUTRAL","features":[339]},{"name":"LANG_BRETON","features":[339]},{"name":"LANG_BULGARIAN","features":[339]},{"name":"LANG_CATALAN","features":[339]},{"name":"LANG_CENTRAL_KURDISH","features":[339]},{"name":"LANG_CHEROKEE","features":[339]},{"name":"LANG_CHINESE","features":[339]},{"name":"LANG_CHINESE_SIMPLIFIED","features":[339]},{"name":"LANG_CHINESE_TRADITIONAL","features":[339]},{"name":"LANG_CORSICAN","features":[339]},{"name":"LANG_CROATIAN","features":[339]},{"name":"LANG_CZECH","features":[339]},{"name":"LANG_DANISH","features":[339]},{"name":"LANG_DARI","features":[339]},{"name":"LANG_DIVEHI","features":[339]},{"name":"LANG_DUTCH","features":[339]},{"name":"LANG_ENGLISH","features":[339]},{"name":"LANG_ESTONIAN","features":[339]},{"name":"LANG_FAEROESE","features":[339]},{"name":"LANG_FARSI","features":[339]},{"name":"LANG_FILIPINO","features":[339]},{"name":"LANG_FINNISH","features":[339]},{"name":"LANG_FRENCH","features":[339]},{"name":"LANG_FRISIAN","features":[339]},{"name":"LANG_FULAH","features":[339]},{"name":"LANG_GALICIAN","features":[339]},{"name":"LANG_GEORGIAN","features":[339]},{"name":"LANG_GERMAN","features":[339]},{"name":"LANG_GREEK","features":[339]},{"name":"LANG_GREENLANDIC","features":[339]},{"name":"LANG_GUJARATI","features":[339]},{"name":"LANG_HAUSA","features":[339]},{"name":"LANG_HAWAIIAN","features":[339]},{"name":"LANG_HEBREW","features":[339]},{"name":"LANG_HINDI","features":[339]},{"name":"LANG_HUNGARIAN","features":[339]},{"name":"LANG_ICELANDIC","features":[339]},{"name":"LANG_IGBO","features":[339]},{"name":"LANG_INDONESIAN","features":[339]},{"name":"LANG_INUKTITUT","features":[339]},{"name":"LANG_INVARIANT","features":[339]},{"name":"LANG_IRISH","features":[339]},{"name":"LANG_ITALIAN","features":[339]},{"name":"LANG_JAPANESE","features":[339]},{"name":"LANG_KANNADA","features":[339]},{"name":"LANG_KASHMIRI","features":[339]},{"name":"LANG_KAZAK","features":[339]},{"name":"LANG_KHMER","features":[339]},{"name":"LANG_KICHE","features":[339]},{"name":"LANG_KINYARWANDA","features":[339]},{"name":"LANG_KONKANI","features":[339]},{"name":"LANG_KOREAN","features":[339]},{"name":"LANG_KYRGYZ","features":[339]},{"name":"LANG_LAO","features":[339]},{"name":"LANG_LATVIAN","features":[339]},{"name":"LANG_LITHUANIAN","features":[339]},{"name":"LANG_LOWER_SORBIAN","features":[339]},{"name":"LANG_LUXEMBOURGISH","features":[339]},{"name":"LANG_MACEDONIAN","features":[339]},{"name":"LANG_MALAY","features":[339]},{"name":"LANG_MALAYALAM","features":[339]},{"name":"LANG_MALTESE","features":[339]},{"name":"LANG_MANIPURI","features":[339]},{"name":"LANG_MAORI","features":[339]},{"name":"LANG_MAPUDUNGUN","features":[339]},{"name":"LANG_MARATHI","features":[339]},{"name":"LANG_MOHAWK","features":[339]},{"name":"LANG_MONGOLIAN","features":[339]},{"name":"LANG_NEPALI","features":[339]},{"name":"LANG_NEUTRAL","features":[339]},{"name":"LANG_NORWEGIAN","features":[339]},{"name":"LANG_OCCITAN","features":[339]},{"name":"LANG_ODIA","features":[339]},{"name":"LANG_ORIYA","features":[339]},{"name":"LANG_PASHTO","features":[339]},{"name":"LANG_PERSIAN","features":[339]},{"name":"LANG_POLISH","features":[339]},{"name":"LANG_PORTUGUESE","features":[339]},{"name":"LANG_PULAR","features":[339]},{"name":"LANG_PUNJABI","features":[339]},{"name":"LANG_QUECHUA","features":[339]},{"name":"LANG_ROMANIAN","features":[339]},{"name":"LANG_ROMANSH","features":[339]},{"name":"LANG_RUSSIAN","features":[339]},{"name":"LANG_SAKHA","features":[339]},{"name":"LANG_SAMI","features":[339]},{"name":"LANG_SANSKRIT","features":[339]},{"name":"LANG_SCOTTISH_GAELIC","features":[339]},{"name":"LANG_SERBIAN","features":[339]},{"name":"LANG_SERBIAN_NEUTRAL","features":[339]},{"name":"LANG_SINDHI","features":[339]},{"name":"LANG_SINHALESE","features":[339]},{"name":"LANG_SLOVAK","features":[339]},{"name":"LANG_SLOVENIAN","features":[339]},{"name":"LANG_SOTHO","features":[339]},{"name":"LANG_SPANISH","features":[339]},{"name":"LANG_SWAHILI","features":[339]},{"name":"LANG_SWEDISH","features":[339]},{"name":"LANG_SYRIAC","features":[339]},{"name":"LANG_TAJIK","features":[339]},{"name":"LANG_TAMAZIGHT","features":[339]},{"name":"LANG_TAMIL","features":[339]},{"name":"LANG_TATAR","features":[339]},{"name":"LANG_TELUGU","features":[339]},{"name":"LANG_THAI","features":[339]},{"name":"LANG_TIBETAN","features":[339]},{"name":"LANG_TIGRIGNA","features":[339]},{"name":"LANG_TIGRINYA","features":[339]},{"name":"LANG_TSWANA","features":[339]},{"name":"LANG_TURKISH","features":[339]},{"name":"LANG_TURKMEN","features":[339]},{"name":"LANG_UIGHUR","features":[339]},{"name":"LANG_UKRAINIAN","features":[339]},{"name":"LANG_UPPER_SORBIAN","features":[339]},{"name":"LANG_URDU","features":[339]},{"name":"LANG_UZBEK","features":[339]},{"name":"LANG_VALENCIAN","features":[339]},{"name":"LANG_VIETNAMESE","features":[339]},{"name":"LANG_WELSH","features":[339]},{"name":"LANG_WOLOF","features":[339]},{"name":"LANG_XHOSA","features":[339]},{"name":"LANG_YAKUT","features":[339]},{"name":"LANG_YI","features":[339]},{"name":"LANG_YORUBA","features":[339]},{"name":"LANG_ZULU","features":[339]},{"name":"LMEM_DISCARDABLE","features":[339]},{"name":"LMEM_DISCARDED","features":[339]},{"name":"LMEM_INVALID_HANDLE","features":[339]},{"name":"LMEM_LOCKCOUNT","features":[339]},{"name":"LMEM_MODIFY","features":[339]},{"name":"LMEM_NOCOMPACT","features":[339]},{"name":"LMEM_NODISCARD","features":[339]},{"name":"LMEM_VALID_FLAGS","features":[339]},{"name":"LOCALE_NAME_MAX_LENGTH","features":[339]},{"name":"LOCALE_TRANSIENT_KEYBOARD1","features":[339]},{"name":"LOCALE_TRANSIENT_KEYBOARD2","features":[339]},{"name":"LOCALE_TRANSIENT_KEYBOARD3","features":[339]},{"name":"LOCALE_TRANSIENT_KEYBOARD4","features":[339]},{"name":"LTP_PC_SMT","features":[339]},{"name":"MAILSLOT_NO_MESSAGE","features":[339]},{"name":"MAILSLOT_WAIT_FOREVER","features":[339]},{"name":"MAXBYTE","features":[339]},{"name":"MAXCHAR","features":[339]},{"name":"MAXDWORD","features":[339]},{"name":"MAXIMUM_ALLOWED","features":[339]},{"name":"MAXIMUM_PROCESSORS","features":[339]},{"name":"MAXIMUM_PROC_PER_GROUP","features":[339]},{"name":"MAXIMUM_SUPPORTED_EXTENSION","features":[339]},{"name":"MAXIMUM_SUSPEND_COUNT","features":[339]},{"name":"MAXIMUM_WAIT_OBJECTS","features":[339]},{"name":"MAXIMUM_XSTATE_FEATURES","features":[339]},{"name":"MAXLOGICALLOGNAMESIZE","features":[339]},{"name":"MAXLONG","features":[339]},{"name":"MAXLONGLONG","features":[339]},{"name":"MAXSHORT","features":[339]},{"name":"MAXVERSIONTESTED_INFO","features":[339]},{"name":"MAXWORD","features":[339]},{"name":"MAX_ACL_REVISION","features":[339]},{"name":"MAX_CLASS_NAME","features":[339]},{"name":"MAX_HW_COUNTERS","features":[339]},{"name":"MAX_PACKAGE_NAME","features":[339]},{"name":"MAX_UCSCHAR","features":[339]},{"name":"MEMORY_ALLOCATION_ALIGNMENT","features":[339]},{"name":"MEMORY_PARTITION_MODIFY_ACCESS","features":[339]},{"name":"MEMORY_PARTITION_QUERY_ACCESS","features":[339]},{"name":"MEMORY_PRIORITY_LOWEST","features":[339]},{"name":"MEM_4MB_PAGES","features":[339]},{"name":"MEM_COALESCE_PLACEHOLDERS","features":[339]},{"name":"MEM_DIFFERENT_IMAGE_BASE_OK","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_EC_CODE","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_GRAPHICS","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_IMAGE_NO_HPAT","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_HUGE","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_NONPAGED_LARGE","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_SOFT_FAULT_PAGES","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_TYPE_BITS","features":[339]},{"name":"MEM_EXTENDED_PARAMETER_ZERO_PAGES_OPTIONAL","features":[339]},{"name":"MEM_PHYSICAL","features":[339]},{"name":"MEM_ROTATE","features":[339]},{"name":"MEM_TOP_DOWN","features":[339]},{"name":"MEM_WRITE_WATCH","features":[339]},{"name":"MESSAGE_RESOURCE_UNICODE","features":[339]},{"name":"MESSAGE_RESOURCE_UTF8","features":[339]},{"name":"MINCHAR","features":[339]},{"name":"MINLONG","features":[339]},{"name":"MINSHORT","features":[339]},{"name":"MIN_UCSCHAR","features":[339]},{"name":"MK_CONTROL","features":[339]},{"name":"MK_LBUTTON","features":[339]},{"name":"MK_MBUTTON","features":[339]},{"name":"MK_RBUTTON","features":[339]},{"name":"MK_SHIFT","features":[339]},{"name":"MK_XBUTTON1","features":[339]},{"name":"MK_XBUTTON2","features":[339]},{"name":"MODIFIERKEYS_FLAGS","features":[339]},{"name":"MONITOR_DISPLAY_STATE","features":[339]},{"name":"MS_PPM_SOFTWARE_ALL","features":[339]},{"name":"MUTANT_QUERY_STATE","features":[339]},{"name":"MaxActivationContextInfoClass","features":[339]},{"name":"NATIVE_TYPE_MAX_CB","features":[339]},{"name":"NETWORK_APP_INSTANCE_CSV_FLAGS_VALID_ONLY_IF_CSV_COORDINATOR","features":[339]},{"name":"NETWORK_APP_INSTANCE_EA","features":[339]},{"name":"NLS_VALID_LOCALE_MASK","features":[339]},{"name":"NONVOL_FP_NUMREG_ARM64","features":[339]},{"name":"NONVOL_INT_NUMREG_ARM64","features":[339]},{"name":"NON_PAGED_DEBUG_INFO","features":[339]},{"name":"NON_PAGED_DEBUG_SIGNATURE","features":[339]},{"name":"NOTIFY_USER_POWER_SETTING","features":[339]},{"name":"NO_SUBGROUP_GUID","features":[339]},{"name":"NT_TIB32","features":[339]},{"name":"NT_TIB64","features":[339]},{"name":"NUMA_NO_PREFERRED_NODE","features":[339]},{"name":"NUM_DISCHARGE_POLICIES","features":[339]},{"name":"N_BTMASK","features":[339]},{"name":"N_BTSHFT","features":[339]},{"name":"N_TMASK","features":[339]},{"name":"N_TMASK1","features":[339]},{"name":"N_TMASK2","features":[339]},{"name":"N_TSHIFT","features":[339]},{"name":"NormalError","features":[339]},{"name":"OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME","features":[339]},{"name":"PACKEDEVENTINFO","features":[339]},{"name":"PARKING_TOPOLOGY_POLICY_DISABLED","features":[339]},{"name":"PARKING_TOPOLOGY_POLICY_ROUNDROBIN","features":[339]},{"name":"PARKING_TOPOLOGY_POLICY_SEQUENTIAL","features":[339]},{"name":"PERFORMANCE_DATA_VERSION","features":[339]},{"name":"PERFSTATE_POLICY_CHANGE_DECREASE_MAX","features":[339]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL","features":[339]},{"name":"PERFSTATE_POLICY_CHANGE_IDEAL_AGGRESSIVE","features":[339]},{"name":"PERFSTATE_POLICY_CHANGE_INCREASE_MAX","features":[339]},{"name":"PERFSTATE_POLICY_CHANGE_ROCKET","features":[339]},{"name":"PERFSTATE_POLICY_CHANGE_SINGLE","features":[339]},{"name":"PEXCEPTION_FILTER","features":[305,334,311,339]},{"name":"PF_NON_TEMPORAL_LEVEL_ALL","features":[339]},{"name":"PF_TEMPORAL_LEVEL_1","features":[339]},{"name":"PF_TEMPORAL_LEVEL_2","features":[339]},{"name":"PF_TEMPORAL_LEVEL_3","features":[339]},{"name":"PIMAGE_TLS_CALLBACK","features":[339]},{"name":"POLICY_AUDIT_SUBCATEGORY_COUNT","features":[339]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[305,334,339]},{"name":"POUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK","features":[305,334,339]},{"name":"POWERBUTTON_ACTION_INDEX_HIBERNATE","features":[339]},{"name":"POWERBUTTON_ACTION_INDEX_NOTHING","features":[339]},{"name":"POWERBUTTON_ACTION_INDEX_SHUTDOWN","features":[339]},{"name":"POWERBUTTON_ACTION_INDEX_SLEEP","features":[339]},{"name":"POWERBUTTON_ACTION_INDEX_TURN_OFF_THE_DISPLAY","features":[339]},{"name":"POWERBUTTON_ACTION_VALUE_HIBERNATE","features":[339]},{"name":"POWERBUTTON_ACTION_VALUE_NOTHING","features":[339]},{"name":"POWERBUTTON_ACTION_VALUE_SHUTDOWN","features":[339]},{"name":"POWERBUTTON_ACTION_VALUE_SLEEP","features":[339]},{"name":"POWERBUTTON_ACTION_VALUE_TURN_OFF_THE_DISPLAY","features":[339]},{"name":"POWER_ACTION_ACPI_CRITICAL","features":[339]},{"name":"POWER_ACTION_ACPI_USER_NOTIFY","features":[339]},{"name":"POWER_ACTION_CRITICAL","features":[339]},{"name":"POWER_ACTION_DIRECTED_DRIPS","features":[339]},{"name":"POWER_ACTION_DISABLE_WAKES","features":[339]},{"name":"POWER_ACTION_DOZE_TO_HIBERNATE","features":[339]},{"name":"POWER_ACTION_HIBERBOOT","features":[339]},{"name":"POWER_ACTION_LIGHTEST_FIRST","features":[339]},{"name":"POWER_ACTION_LOCK_CONSOLE","features":[339]},{"name":"POWER_ACTION_OVERRIDE_APPS","features":[339]},{"name":"POWER_ACTION_PSEUDO_TRANSITION","features":[339]},{"name":"POWER_ACTION_QUERY_ALLOWED","features":[339]},{"name":"POWER_ACTION_UI_ALLOWED","features":[339]},{"name":"POWER_ACTION_USER_NOTIFY","features":[339]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_DISABLED","features":[339]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_ENABLED","features":[339]},{"name":"POWER_CONNECTIVITY_IN_STANDBY_SYSTEM_MANAGED","features":[339]},{"name":"POWER_DEVICE_IDLE_POLICY_CONSERVATIVE","features":[339]},{"name":"POWER_DEVICE_IDLE_POLICY_PERFORMANCE","features":[339]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_AGGRESSIVE","features":[339]},{"name":"POWER_DISCONNECTED_STANDBY_MODE_NORMAL","features":[339]},{"name":"POWER_REQUEST_CONTEXT_VERSION","features":[339]},{"name":"POWER_SETTING_VALUE_VERSION","features":[339]},{"name":"POWER_SYSTEM_MAXIMUM","features":[339]},{"name":"POWER_USER_NOTIFY_FORCED_SHUTDOWN","features":[339]},{"name":"PO_THROTTLE_ADAPTIVE","features":[339]},{"name":"PO_THROTTLE_CONSTANT","features":[339]},{"name":"PO_THROTTLE_DEGRADE","features":[339]},{"name":"PO_THROTTLE_MAXIMUM","features":[339]},{"name":"PO_THROTTLE_NONE","features":[339]},{"name":"PRAGMA_DEPRECATED_DDK","features":[339]},{"name":"PRIVILEGE_SET_ALL_NECESSARY","features":[339]},{"name":"PROCESSOR_ALPHA_21064","features":[339]},{"name":"PROCESSOR_AMD_X8664","features":[339]},{"name":"PROCESSOR_ARM720","features":[339]},{"name":"PROCESSOR_ARM820","features":[339]},{"name":"PROCESSOR_ARM920","features":[339]},{"name":"PROCESSOR_ARM_7TDMI","features":[339]},{"name":"PROCESSOR_DUTY_CYCLING_DISABLED","features":[339]},{"name":"PROCESSOR_DUTY_CYCLING_ENABLED","features":[339]},{"name":"PROCESSOR_HITACHI_SH3","features":[339]},{"name":"PROCESSOR_HITACHI_SH3E","features":[339]},{"name":"PROCESSOR_HITACHI_SH4","features":[339]},{"name":"PROCESSOR_IDLESTATE_INFO","features":[339]},{"name":"PROCESSOR_IDLESTATE_POLICY","features":[339]},{"name":"PROCESSOR_IDLESTATE_POLICY_COUNT","features":[339]},{"name":"PROCESSOR_INTEL_386","features":[339]},{"name":"PROCESSOR_INTEL_486","features":[339]},{"name":"PROCESSOR_INTEL_IA64","features":[339]},{"name":"PROCESSOR_INTEL_PENTIUM","features":[339]},{"name":"PROCESSOR_MIPS_R4000","features":[339]},{"name":"PROCESSOR_MOTOROLA_821","features":[339]},{"name":"PROCESSOR_OPTIL","features":[339]},{"name":"PROCESSOR_PERFSTATE_POLICY","features":[339]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_DISABLED","features":[339]},{"name":"PROCESSOR_PERF_AUTONOMOUS_MODE_ENABLED","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_AGGRESSIVE_AT_GUARANTEED","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_DISABLED","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_AGGRESSIVE_AT_GUARANTEED","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_EFFICIENT_ENABLED","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_ENABLED","features":[339]},{"name":"PROCESSOR_PERF_BOOST_MODE_MAX","features":[339]},{"name":"PROCESSOR_PERF_BOOST_POLICY_DISABLED","features":[339]},{"name":"PROCESSOR_PERF_BOOST_POLICY_MAX","features":[339]},{"name":"PROCESSOR_PERF_ENERGY_PREFERENCE","features":[339]},{"name":"PROCESSOR_PERF_MAXIMUM_ACTIVITY_WINDOW","features":[339]},{"name":"PROCESSOR_PERF_MINIMUM_ACTIVITY_WINDOW","features":[339]},{"name":"PROCESSOR_PERF_PERFORMANCE_PREFERENCE","features":[339]},{"name":"PROCESSOR_PPC_601","features":[339]},{"name":"PROCESSOR_PPC_603","features":[339]},{"name":"PROCESSOR_PPC_604","features":[339]},{"name":"PROCESSOR_PPC_620","features":[339]},{"name":"PROCESSOR_SHx_SH3","features":[339]},{"name":"PROCESSOR_SHx_SH4","features":[339]},{"name":"PROCESSOR_STRONGARM","features":[339]},{"name":"PROCESSOR_THROTTLE_AUTOMATIC","features":[339]},{"name":"PROCESSOR_THROTTLE_DISABLED","features":[339]},{"name":"PROCESSOR_THROTTLE_ENABLED","features":[339]},{"name":"PROCESS_HEAP_ENTRY_BUSY","features":[339]},{"name":"PROCESS_HEAP_ENTRY_DDESHARE","features":[339]},{"name":"PROCESS_HEAP_ENTRY_MOVEABLE","features":[339]},{"name":"PROCESS_HEAP_REGION","features":[339]},{"name":"PROCESS_HEAP_SEG_ALLOC","features":[339]},{"name":"PROCESS_HEAP_UNCOMMITTED_RANGE","features":[339]},{"name":"PROCESS_MITIGATION_ACTIVATION_CONTEXT_TRUST_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_ASLR_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_CHILD_PROCESS_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_DEP_POLICY","features":[305,339]},{"name":"PROCESS_MITIGATION_DYNAMIC_CODE_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_FONT_DISABLE_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_IMAGE_LOAD_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_PAYLOAD_RESTRICTION_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_REDIRECTION_TRUST_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_SEHOP_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_SIDE_CHANNEL_ISOLATION_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_SYSTEM_CALL_FILTER_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_USER_POINTER_AUTH_POLICY","features":[339]},{"name":"PROCESS_MITIGATION_USER_SHADOW_STACK_POLICY","features":[339]},{"name":"PROCESS_TRUST_LABEL_SECURITY_INFORMATION","features":[339]},{"name":"PROC_IDLE_BUCKET_COUNT","features":[339]},{"name":"PROC_IDLE_BUCKET_COUNT_EX","features":[339]},{"name":"PRODUCT_ARM64_SERVER","features":[339]},{"name":"PRODUCT_AZURESTACKHCI_SERVER_CORE","features":[339]},{"name":"PRODUCT_AZURE_NANO_SERVER","features":[339]},{"name":"PRODUCT_AZURE_SERVER_CLOUDHOST","features":[339]},{"name":"PRODUCT_AZURE_SERVER_CLOUDMOS","features":[339]},{"name":"PRODUCT_AZURE_SERVER_CORE","features":[339]},{"name":"PRODUCT_CLOUD","features":[339]},{"name":"PRODUCT_CLOUDE","features":[339]},{"name":"PRODUCT_CLOUDEDITION","features":[339]},{"name":"PRODUCT_CLOUDEDITIONN","features":[339]},{"name":"PRODUCT_CLOUDEN","features":[339]},{"name":"PRODUCT_CLOUDN","features":[339]},{"name":"PRODUCT_CLOUD_HOST_INFRASTRUCTURE_SERVER","features":[339]},{"name":"PRODUCT_CLOUD_STORAGE_SERVER","features":[339]},{"name":"PRODUCT_CONNECTED_CAR","features":[339]},{"name":"PRODUCT_CORE_ARM","features":[339]},{"name":"PRODUCT_CORE_CONNECTED","features":[339]},{"name":"PRODUCT_CORE_CONNECTED_COUNTRYSPECIFIC","features":[339]},{"name":"PRODUCT_CORE_CONNECTED_N","features":[339]},{"name":"PRODUCT_CORE_CONNECTED_SINGLELANGUAGE","features":[339]},{"name":"PRODUCT_DATACENTER_EVALUATION_SERVER_CORE","features":[339]},{"name":"PRODUCT_DATACENTER_NANO_SERVER","features":[339]},{"name":"PRODUCT_DATACENTER_SERVER_AZURE_EDITION","features":[339]},{"name":"PRODUCT_DATACENTER_SERVER_CORE_AZURE_EDITION","features":[339]},{"name":"PRODUCT_DATACENTER_WS_SERVER_CORE","features":[339]},{"name":"PRODUCT_EMBEDDED","features":[339]},{"name":"PRODUCT_EMBEDDED_A","features":[339]},{"name":"PRODUCT_EMBEDDED_AUTOMOTIVE","features":[339]},{"name":"PRODUCT_EMBEDDED_E","features":[339]},{"name":"PRODUCT_EMBEDDED_EVAL","features":[339]},{"name":"PRODUCT_EMBEDDED_E_EVAL","features":[339]},{"name":"PRODUCT_EMBEDDED_INDUSTRY","features":[339]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A","features":[339]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_A_E","features":[339]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E","features":[339]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_EVAL","features":[339]},{"name":"PRODUCT_EMBEDDED_INDUSTRY_E_EVAL","features":[339]},{"name":"PRODUCT_ENTERPRISEG","features":[339]},{"name":"PRODUCT_ENTERPRISEGN","features":[339]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION","features":[339]},{"name":"PRODUCT_ENTERPRISE_SUBSCRIPTION_N","features":[339]},{"name":"PRODUCT_HOLOGRAPHIC","features":[339]},{"name":"PRODUCT_HOLOGRAPHIC_BUSINESS","features":[339]},{"name":"PRODUCT_HUBOS","features":[339]},{"name":"PRODUCT_INDUSTRY_HANDHELD","features":[339]},{"name":"PRODUCT_IOTEDGEOS","features":[339]},{"name":"PRODUCT_IOTENTERPRISE","features":[339]},{"name":"PRODUCT_IOTENTERPRISES","features":[339]},{"name":"PRODUCT_IOTOS","features":[339]},{"name":"PRODUCT_LITE","features":[339]},{"name":"PRODUCT_NANO_SERVER","features":[339]},{"name":"PRODUCT_ONECOREUPDATEOS","features":[339]},{"name":"PRODUCT_PPI_PRO","features":[339]},{"name":"PRODUCT_PROFESSIONAL_EMBEDDED","features":[339]},{"name":"PRODUCT_PROFESSIONAL_S","features":[339]},{"name":"PRODUCT_PROFESSIONAL_STUDENT","features":[339]},{"name":"PRODUCT_PROFESSIONAL_STUDENT_N","features":[339]},{"name":"PRODUCT_PROFESSIONAL_S_N","features":[339]},{"name":"PRODUCT_PRO_CHINA","features":[339]},{"name":"PRODUCT_PRO_FOR_EDUCATION","features":[339]},{"name":"PRODUCT_PRO_FOR_EDUCATION_N","features":[339]},{"name":"PRODUCT_PRO_SINGLE_LANGUAGE","features":[339]},{"name":"PRODUCT_SERVERRDSH","features":[339]},{"name":"PRODUCT_SOLUTION_EMBEDDEDSERVER_CORE","features":[339]},{"name":"PRODUCT_STANDARD_EVALUATION_SERVER_CORE","features":[339]},{"name":"PRODUCT_STANDARD_NANO_SERVER","features":[339]},{"name":"PRODUCT_STANDARD_SERVER_CORE","features":[339]},{"name":"PRODUCT_STANDARD_WS_SERVER_CORE","features":[339]},{"name":"PRODUCT_THINPC","features":[339]},{"name":"PRODUCT_UNLICENSED","features":[339]},{"name":"PRODUCT_UTILITY_VM","features":[339]},{"name":"PRODUCT_XBOX_DURANGOHOSTOS","features":[339]},{"name":"PRODUCT_XBOX_ERAOS","features":[339]},{"name":"PRODUCT_XBOX_GAMEOS","features":[339]},{"name":"PRODUCT_XBOX_KEYSTONE","features":[339]},{"name":"PRODUCT_XBOX_SCARLETTHOSTOS","features":[339]},{"name":"PRODUCT_XBOX_SYSTEMOS","features":[339]},{"name":"PTERMINATION_HANDLER","features":[305,339]},{"name":"PTERMINATION_HANDLER","features":[305,339]},{"name":"PUMS_SCHEDULER_ENTRY_POINT","features":[339]},{"name":"PcTeb","features":[339]},{"name":"PdataCrChained","features":[339]},{"name":"PdataCrChainedWithPac","features":[339]},{"name":"PdataCrUnchained","features":[339]},{"name":"PdataCrUnchainedSavedLr","features":[339]},{"name":"PdataPackedUnwindFragment","features":[339]},{"name":"PdataPackedUnwindFunction","features":[339]},{"name":"PdataRefToFullXdata","features":[339]},{"name":"PowerMonitorDim","features":[339]},{"name":"PowerMonitorOff","features":[339]},{"name":"PowerMonitorOn","features":[339]},{"name":"QUOTA_LIMITS_EX","features":[339]},{"name":"QUOTA_LIMITS_USE_DEFAULT_LIMITS","features":[339]},{"name":"RATE_QUOTA_LIMIT","features":[339]},{"name":"READ_THREAD_PROFILING_FLAG_DISPATCHING","features":[339]},{"name":"READ_THREAD_PROFILING_FLAG_HARDWARE_COUNTERS","features":[339]},{"name":"REARRANGE_FILE_DATA","features":[305,339]},{"name":"REARRANGE_FILE_DATA32","features":[339]},{"name":"RECO_COPY","features":[339]},{"name":"RECO_CUT","features":[339]},{"name":"RECO_DRAG","features":[339]},{"name":"RECO_DROP","features":[339]},{"name":"RECO_FLAGS","features":[339]},{"name":"RECO_PASTE","features":[339]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO","features":[339]},{"name":"REDBOOK_DIGITAL_AUDIO_EXTRACTION_INFO_VERSION","features":[339]},{"name":"REG_APP_HIVE","features":[339]},{"name":"REG_APP_HIVE_OPEN_READ_ONLY","features":[339]},{"name":"REG_BOOT_HIVE","features":[339]},{"name":"REG_FLUSH_HIVE_FILE_GROWTH","features":[339]},{"name":"REG_FORCE_UNLOAD","features":[339]},{"name":"REG_HIVE_EXACT_FILE_GROWTH","features":[339]},{"name":"REG_HIVE_NO_RM","features":[339]},{"name":"REG_HIVE_SINGLE_LOG","features":[339]},{"name":"REG_IMMUTABLE","features":[339]},{"name":"REG_LOAD_HIVE_OPEN_HANDLE","features":[339]},{"name":"REG_NO_IMPERSONATION_FALLBACK","features":[339]},{"name":"REG_NO_LAZY_FLUSH","features":[339]},{"name":"REG_OPEN_READ_ONLY","features":[339]},{"name":"REG_PROCESS_PRIVATE","features":[339]},{"name":"REG_REFRESH_HIVE","features":[339]},{"name":"REG_START_JOURNAL","features":[339]},{"name":"REG_UNLOAD_LEGAL_FLAGS","features":[339]},{"name":"RESOURCEMANAGER_BASIC_INFORMATION","features":[339]},{"name":"RESOURCEMANAGER_COMPLETE_PROPAGATION","features":[339]},{"name":"RESOURCEMANAGER_COMPLETION_INFORMATION","features":[305,339]},{"name":"RESOURCEMANAGER_ENLIST","features":[339]},{"name":"RESOURCEMANAGER_GET_NOTIFICATION","features":[339]},{"name":"RESOURCEMANAGER_INFORMATION_CLASS","features":[339]},{"name":"RESOURCEMANAGER_QUERY_INFORMATION","features":[339]},{"name":"RESOURCEMANAGER_RECOVER","features":[339]},{"name":"RESOURCEMANAGER_REGISTER_PROTOCOL","features":[339]},{"name":"RESOURCEMANAGER_SET_INFORMATION","features":[339]},{"name":"ROT_COMPARE_MAX","features":[339]},{"name":"RTL_UMS_SCHEDULER_REASON","features":[339]},{"name":"RTL_UMS_VERSION","features":[339]},{"name":"RTL_VIRTUAL_UNWIND2_VALIDATE_PAC","features":[339]},{"name":"RUNTIME_FUNCTION_INDIRECT","features":[339]},{"name":"RecognizerType","features":[339]},{"name":"RemHBITMAP","features":[339]},{"name":"RemHBRUSH","features":[339]},{"name":"RemHENHMETAFILE","features":[339]},{"name":"RemHGLOBAL","features":[339]},{"name":"RemHMETAFILEPICT","features":[339]},{"name":"RemHPALETTE","features":[339]},{"name":"RemotableHandle","features":[339]},{"name":"ReplacesCorHdrNumericDefines","features":[339]},{"name":"ResourceManagerBasicInformation","features":[339]},{"name":"ResourceManagerCompletionInformation","features":[339]},{"name":"RunlevelInformationInActivationContext","features":[339]},{"name":"SCOPE_TABLE_AMD64","features":[339]},{"name":"SCOPE_TABLE_ARM","features":[339]},{"name":"SCOPE_TABLE_ARM64","features":[339]},{"name":"SCRUB_DATA_INPUT","features":[339]},{"name":"SCRUB_DATA_INPUT_FLAG_IGNORE_REDUNDANCY","features":[339]},{"name":"SCRUB_DATA_INPUT_FLAG_OPLOCK_NOT_ACQUIRED","features":[339]},{"name":"SCRUB_DATA_INPUT_FLAG_RESUME","features":[339]},{"name":"SCRUB_DATA_INPUT_FLAG_SCRUB_BY_OBJECT_ID","features":[339]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_DATA","features":[339]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_IN_SYNC","features":[339]},{"name":"SCRUB_DATA_INPUT_FLAG_SKIP_NON_INTEGRITY_DATA","features":[339]},{"name":"SCRUB_DATA_OUTPUT","features":[339]},{"name":"SCRUB_DATA_OUTPUT_FLAG_INCOMPLETE","features":[339]},{"name":"SCRUB_DATA_OUTPUT_FLAG_NON_USER_DATA_RANGE","features":[339]},{"name":"SCRUB_DATA_OUTPUT_FLAG_PARITY_EXTENT_DATA_RETURNED","features":[339]},{"name":"SCRUB_DATA_OUTPUT_FLAG_RESUME_CONTEXT_LENGTH_SPECIFIED","features":[339]},{"name":"SCRUB_PARITY_EXTENT","features":[339]},{"name":"SCRUB_PARITY_EXTENT_DATA","features":[339]},{"name":"SECURITY_ANONYMOUS_LOGON_RID","features":[339]},{"name":"SECURITY_APPPOOL_ID_BASE_RID","features":[339]},{"name":"SECURITY_APPPOOL_ID_RID_COUNT","features":[339]},{"name":"SECURITY_APP_PACKAGE_BASE_RID","features":[339]},{"name":"SECURITY_APP_PACKAGE_RID_COUNT","features":[339]},{"name":"SECURITY_AUTHENTICATED_USER_RID","features":[339]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_ASSERTED_RID","features":[339]},{"name":"SECURITY_AUTHENTICATION_AUTHORITY_RID_COUNT","features":[339]},{"name":"SECURITY_AUTHENTICATION_FRESH_KEY_AUTH_RID","features":[339]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_ATTESTATION_RID","features":[339]},{"name":"SECURITY_AUTHENTICATION_KEY_PROPERTY_MFA_RID","features":[339]},{"name":"SECURITY_AUTHENTICATION_KEY_TRUST_RID","features":[339]},{"name":"SECURITY_AUTHENTICATION_SERVICE_ASSERTED_RID","features":[339]},{"name":"SECURITY_BATCH_RID","features":[339]},{"name":"SECURITY_BUILTIN_APP_PACKAGE_RID_COUNT","features":[339]},{"name":"SECURITY_BUILTIN_CAPABILITY_RID_COUNT","features":[339]},{"name":"SECURITY_BUILTIN_DOMAIN_RID","features":[339]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE","features":[339]},{"name":"SECURITY_BUILTIN_PACKAGE_ANY_RESTRICTED_PACKAGE","features":[339]},{"name":"SECURITY_CAPABILITY_APPOINTMENTS","features":[339]},{"name":"SECURITY_CAPABILITY_APP_RID","features":[339]},{"name":"SECURITY_CAPABILITY_APP_SILO_RID","features":[339]},{"name":"SECURITY_CAPABILITY_BASE_RID","features":[339]},{"name":"SECURITY_CAPABILITY_CONTACTS","features":[339]},{"name":"SECURITY_CAPABILITY_DOCUMENTS_LIBRARY","features":[339]},{"name":"SECURITY_CAPABILITY_ENTERPRISE_AUTHENTICATION","features":[339]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT","features":[339]},{"name":"SECURITY_CAPABILITY_INTERNET_CLIENT_SERVER","features":[339]},{"name":"SECURITY_CAPABILITY_INTERNET_EXPLORER","features":[339]},{"name":"SECURITY_CAPABILITY_MUSIC_LIBRARY","features":[339]},{"name":"SECURITY_CAPABILITY_PICTURES_LIBRARY","features":[339]},{"name":"SECURITY_CAPABILITY_PRIVATE_NETWORK_CLIENT_SERVER","features":[339]},{"name":"SECURITY_CAPABILITY_REMOVABLE_STORAGE","features":[339]},{"name":"SECURITY_CAPABILITY_RID_COUNT","features":[339]},{"name":"SECURITY_CAPABILITY_SHARED_USER_CERTIFICATES","features":[339]},{"name":"SECURITY_CAPABILITY_VIDEOS_LIBRARY","features":[339]},{"name":"SECURITY_CCG_ID_BASE_RID","features":[339]},{"name":"SECURITY_CHILD_PACKAGE_RID_COUNT","features":[339]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_BASE_RID","features":[339]},{"name":"SECURITY_CLOUD_INFRASTRUCTURE_SERVICES_ID_RID_COUNT","features":[339]},{"name":"SECURITY_COM_ID_BASE_RID","features":[339]},{"name":"SECURITY_CREATOR_GROUP_RID","features":[339]},{"name":"SECURITY_CREATOR_GROUP_SERVER_RID","features":[339]},{"name":"SECURITY_CREATOR_OWNER_RID","features":[339]},{"name":"SECURITY_CREATOR_OWNER_RIGHTS_RID","features":[339]},{"name":"SECURITY_CREATOR_OWNER_SERVER_RID","features":[339]},{"name":"SECURITY_CRED_TYPE_BASE_RID","features":[339]},{"name":"SECURITY_CRED_TYPE_RID_COUNT","features":[339]},{"name":"SECURITY_CRED_TYPE_THIS_ORG_CERT_RID","features":[339]},{"name":"SECURITY_DASHOST_ID_BASE_RID","features":[339]},{"name":"SECURITY_DASHOST_ID_RID_COUNT","features":[339]},{"name":"SECURITY_DESCRIPTOR_REVISION","features":[339]},{"name":"SECURITY_DESCRIPTOR_REVISION1","features":[339]},{"name":"SECURITY_DIALUP_RID","features":[339]},{"name":"SECURITY_ENTERPRISE_CONTROLLERS_RID","features":[339]},{"name":"SECURITY_ENTERPRISE_READONLY_CONTROLLERS_RID","features":[339]},{"name":"SECURITY_INSTALLER_CAPABILITY_RID_COUNT","features":[339]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_BASE","features":[339]},{"name":"SECURITY_INSTALLER_GROUP_CAPABILITY_RID_COUNT","features":[339]},{"name":"SECURITY_INTERACTIVE_RID","features":[339]},{"name":"SECURITY_IUSER_RID","features":[339]},{"name":"SECURITY_LOCAL_ACCOUNT_AND_ADMIN_RID","features":[339]},{"name":"SECURITY_LOCAL_ACCOUNT_RID","features":[339]},{"name":"SECURITY_LOCAL_LOGON_RID","features":[339]},{"name":"SECURITY_LOCAL_RID","features":[339]},{"name":"SECURITY_LOCAL_SERVICE_RID","features":[339]},{"name":"SECURITY_LOCAL_SYSTEM_RID","features":[339]},{"name":"SECURITY_LOGON_IDS_RID","features":[339]},{"name":"SECURITY_LOGON_IDS_RID_COUNT","features":[339]},{"name":"SECURITY_MANDATORY_HIGH_RID","features":[339]},{"name":"SECURITY_MANDATORY_LOW_RID","features":[339]},{"name":"SECURITY_MANDATORY_MAXIMUM_USER_RID","features":[339]},{"name":"SECURITY_MANDATORY_MEDIUM_PLUS_RID","features":[339]},{"name":"SECURITY_MANDATORY_MEDIUM_RID","features":[339]},{"name":"SECURITY_MANDATORY_PROTECTED_PROCESS_RID","features":[339]},{"name":"SECURITY_MANDATORY_SYSTEM_RID","features":[339]},{"name":"SECURITY_MANDATORY_UNTRUSTED_RID","features":[339]},{"name":"SECURITY_MAX_ALWAYS_FILTERED","features":[339]},{"name":"SECURITY_MAX_BASE_RID","features":[339]},{"name":"SECURITY_MIN_BASE_RID","features":[339]},{"name":"SECURITY_MIN_NEVER_FILTERED","features":[339]},{"name":"SECURITY_NETWORK_RID","features":[339]},{"name":"SECURITY_NETWORK_SERVICE_RID","features":[339]},{"name":"SECURITY_NFS_ID_BASE_RID","features":[339]},{"name":"SECURITY_NT_NON_UNIQUE","features":[339]},{"name":"SECURITY_NT_NON_UNIQUE_SUB_AUTH_COUNT","features":[339]},{"name":"SECURITY_NULL_RID","features":[339]},{"name":"SECURITY_OBJECT_AI_PARAMS","features":[339]},{"name":"SECURITY_OTHER_ORGANIZATION_RID","features":[339]},{"name":"SECURITY_PACKAGE_BASE_RID","features":[339]},{"name":"SECURITY_PACKAGE_DIGEST_RID","features":[339]},{"name":"SECURITY_PACKAGE_NTLM_RID","features":[339]},{"name":"SECURITY_PACKAGE_RID_COUNT","features":[339]},{"name":"SECURITY_PACKAGE_SCHANNEL_RID","features":[339]},{"name":"SECURITY_PARENT_PACKAGE_RID_COUNT","features":[339]},{"name":"SECURITY_PRINCIPAL_SELF_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_ANTIMALWARE_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_APP_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_AUTHENTICODE_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_NONE_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINDOWS_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_LEVEL_WINTCB_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_FULL_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_LITE_RID","features":[339]},{"name":"SECURITY_PROCESS_PROTECTION_TYPE_NONE_RID","features":[339]},{"name":"SECURITY_PROCESS_TRUST_AUTHORITY_RID_COUNT","features":[339]},{"name":"SECURITY_PROXY_RID","features":[339]},{"name":"SECURITY_RDV_GFX_BASE_RID","features":[339]},{"name":"SECURITY_REMOTE_LOGON_RID","features":[339]},{"name":"SECURITY_RESERVED_ID_BASE_RID","features":[339]},{"name":"SECURITY_RESTRICTED_CODE_RID","features":[339]},{"name":"SECURITY_SERVER_LOGON_RID","features":[339]},{"name":"SECURITY_SERVICE_ID_BASE_RID","features":[339]},{"name":"SECURITY_SERVICE_ID_RID_COUNT","features":[339]},{"name":"SECURITY_SERVICE_RID","features":[339]},{"name":"SECURITY_TASK_ID_BASE_RID","features":[339]},{"name":"SECURITY_TERMINAL_SERVER_RID","features":[339]},{"name":"SECURITY_THIS_ORGANIZATION_RID","features":[339]},{"name":"SECURITY_TRUSTED_INSTALLER_RID1","features":[339]},{"name":"SECURITY_TRUSTED_INSTALLER_RID2","features":[339]},{"name":"SECURITY_TRUSTED_INSTALLER_RID3","features":[339]},{"name":"SECURITY_TRUSTED_INSTALLER_RID4","features":[339]},{"name":"SECURITY_TRUSTED_INSTALLER_RID5","features":[339]},{"name":"SECURITY_UMFD_BASE_RID","features":[339]},{"name":"SECURITY_USERMANAGER_ID_BASE_RID","features":[339]},{"name":"SECURITY_USERMANAGER_ID_RID_COUNT","features":[339]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_BASE_RID","features":[339]},{"name":"SECURITY_USERMODEDRIVERHOST_ID_RID_COUNT","features":[339]},{"name":"SECURITY_VIRTUALACCOUNT_ID_RID_COUNT","features":[339]},{"name":"SECURITY_VIRTUALSERVER_ID_BASE_RID","features":[339]},{"name":"SECURITY_VIRTUALSERVER_ID_RID_COUNT","features":[339]},{"name":"SECURITY_WINDOWSMOBILE_ID_BASE_RID","features":[339]},{"name":"SECURITY_WINDOW_MANAGER_BASE_RID","features":[339]},{"name":"SECURITY_WINRM_ID_BASE_RID","features":[339]},{"name":"SECURITY_WINRM_ID_RID_COUNT","features":[339]},{"name":"SECURITY_WMIHOST_ID_BASE_RID","features":[339]},{"name":"SECURITY_WMIHOST_ID_RID_COUNT","features":[339]},{"name":"SECURITY_WORLD_RID","features":[339]},{"name":"SECURITY_WRITE_RESTRICTED_CODE_RID","features":[339]},{"name":"SEC_HUGE_PAGES","features":[339]},{"name":"SEF_AI_USE_EXTRA_PARAMS","features":[339]},{"name":"SEF_FORCE_USER_MODE","features":[339]},{"name":"SEF_NORMALIZE_OUTPUT_DESCRIPTOR","features":[339]},{"name":"SERVERSILO_BASIC_INFORMATION","features":[305,339]},{"name":"SERVERSILO_INITING","features":[339]},{"name":"SERVERSILO_SHUTTING_DOWN","features":[339]},{"name":"SERVERSILO_STARTED","features":[339]},{"name":"SERVERSILO_STATE","features":[339]},{"name":"SERVERSILO_TERMINATED","features":[339]},{"name":"SERVERSILO_TERMINATING","features":[339]},{"name":"SERVICE_ERROR_TYPE","features":[339]},{"name":"SERVICE_INTERACTIVE_PROCESS","features":[339]},{"name":"SERVICE_LOAD_TYPE","features":[339]},{"name":"SERVICE_NODE_TYPE","features":[339]},{"name":"SERVICE_PKG_SERVICE","features":[339]},{"name":"SERVICE_USERSERVICE_INSTANCE","features":[339]},{"name":"SERVICE_USER_SERVICE","features":[339]},{"name":"SESSION_MODIFY_ACCESS","features":[339]},{"name":"SESSION_QUERY_ACCESS","features":[339]},{"name":"SE_ACCESS_CHECK_FLAG_NO_LEARNING_MODE_LOGGING","features":[339]},{"name":"SE_ACCESS_CHECK_VALID_FLAGS","features":[339]},{"name":"SE_ACTIVATE_AS_USER_CAPABILITY","features":[339]},{"name":"SE_APP_SILO_PRINT_CAPABILITY","features":[339]},{"name":"SE_APP_SILO_PROFILES_ROOT_MINIMAL_CAPABILITY","features":[339]},{"name":"SE_APP_SILO_USER_PROFILE_MINIMAL_CAPABILITY","features":[339]},{"name":"SE_APP_SILO_VOLUME_ROOT_MINIMAL_CAPABILITY","features":[339]},{"name":"SE_CONSTRAINED_IMPERSONATION_CAPABILITY","features":[339]},{"name":"SE_DEVELOPMENT_MODE_NETWORK_CAPABILITY","features":[339]},{"name":"SE_GROUP_ENABLED","features":[339]},{"name":"SE_GROUP_ENABLED_BY_DEFAULT","features":[339]},{"name":"SE_GROUP_INTEGRITY","features":[339]},{"name":"SE_GROUP_INTEGRITY_ENABLED","features":[339]},{"name":"SE_GROUP_LOGON_ID","features":[339]},{"name":"SE_GROUP_MANDATORY","features":[339]},{"name":"SE_GROUP_OWNER","features":[339]},{"name":"SE_GROUP_RESOURCE","features":[339]},{"name":"SE_GROUP_USE_FOR_DENY_ONLY","features":[339]},{"name":"SE_IMAGE_SIGNATURE_TYPE","features":[339]},{"name":"SE_LEARNING_MODE_LOGGING_CAPABILITY","features":[339]},{"name":"SE_MUMA_CAPABILITY","features":[339]},{"name":"SE_PERMISSIVE_LEARNING_MODE_CAPABILITY","features":[339]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_ACCESS_FILTER_ACE","features":[339]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_LABEL_ACE","features":[339]},{"name":"SE_SECURITY_DESCRIPTOR_FLAG_NO_OWNER_ACE","features":[339]},{"name":"SE_SECURITY_DESCRIPTOR_VALID_FLAGS","features":[339]},{"name":"SE_SESSION_IMPERSONATION_CAPABILITY","features":[339]},{"name":"SE_SIGNING_LEVEL_ANTIMALWARE","features":[339]},{"name":"SE_SIGNING_LEVEL_AUTHENTICODE","features":[339]},{"name":"SE_SIGNING_LEVEL_CUSTOM_1","features":[339]},{"name":"SE_SIGNING_LEVEL_CUSTOM_2","features":[339]},{"name":"SE_SIGNING_LEVEL_CUSTOM_3","features":[339]},{"name":"SE_SIGNING_LEVEL_CUSTOM_4","features":[339]},{"name":"SE_SIGNING_LEVEL_CUSTOM_5","features":[339]},{"name":"SE_SIGNING_LEVEL_CUSTOM_6","features":[339]},{"name":"SE_SIGNING_LEVEL_CUSTOM_7","features":[339]},{"name":"SE_SIGNING_LEVEL_DEVELOPER","features":[339]},{"name":"SE_SIGNING_LEVEL_DYNAMIC_CODEGEN","features":[339]},{"name":"SE_SIGNING_LEVEL_ENTERPRISE","features":[339]},{"name":"SE_SIGNING_LEVEL_MICROSOFT","features":[339]},{"name":"SE_SIGNING_LEVEL_STORE","features":[339]},{"name":"SE_SIGNING_LEVEL_UNCHECKED","features":[339]},{"name":"SE_SIGNING_LEVEL_UNSIGNED","features":[339]},{"name":"SE_SIGNING_LEVEL_WINDOWS","features":[339]},{"name":"SE_SIGNING_LEVEL_WINDOWS_TCB","features":[339]},{"name":"SE_TOKEN_USER","features":[308,339]},{"name":"SFGAO_BROWSABLE","features":[339]},{"name":"SFGAO_CANCOPY","features":[339]},{"name":"SFGAO_CANDELETE","features":[339]},{"name":"SFGAO_CANLINK","features":[339]},{"name":"SFGAO_CANMONIKER","features":[339]},{"name":"SFGAO_CANMOVE","features":[339]},{"name":"SFGAO_CANRENAME","features":[339]},{"name":"SFGAO_CAPABILITYMASK","features":[339]},{"name":"SFGAO_COMPRESSED","features":[339]},{"name":"SFGAO_CONTENTSMASK","features":[339]},{"name":"SFGAO_DISPLAYATTRMASK","features":[339]},{"name":"SFGAO_DROPTARGET","features":[339]},{"name":"SFGAO_ENCRYPTED","features":[339]},{"name":"SFGAO_FILESYSANCESTOR","features":[339]},{"name":"SFGAO_FILESYSTEM","features":[339]},{"name":"SFGAO_FLAGS","features":[339]},{"name":"SFGAO_FOLDER","features":[339]},{"name":"SFGAO_GHOSTED","features":[339]},{"name":"SFGAO_HASPROPSHEET","features":[339]},{"name":"SFGAO_HASSTORAGE","features":[339]},{"name":"SFGAO_HASSUBFOLDER","features":[339]},{"name":"SFGAO_HIDDEN","features":[339]},{"name":"SFGAO_ISSLOW","features":[339]},{"name":"SFGAO_LINK","features":[339]},{"name":"SFGAO_NEWCONTENT","features":[339]},{"name":"SFGAO_NONENUMERATED","features":[339]},{"name":"SFGAO_PKEYSFGAOMASK","features":[339]},{"name":"SFGAO_PLACEHOLDER","features":[339]},{"name":"SFGAO_READONLY","features":[339]},{"name":"SFGAO_REMOVABLE","features":[339]},{"name":"SFGAO_SHARE","features":[339]},{"name":"SFGAO_STORAGE","features":[339]},{"name":"SFGAO_STORAGEANCESTOR","features":[339]},{"name":"SFGAO_STORAGECAPMASK","features":[339]},{"name":"SFGAO_STREAM","features":[339]},{"name":"SFGAO_SYSTEM","features":[339]},{"name":"SFGAO_VALIDATE","features":[339]},{"name":"SHARED_VIRTUAL_DISK_SUPPORT","features":[339]},{"name":"SHUFFLE_FILE_DATA","features":[339]},{"name":"SHUFFLE_FILE_FLAG_SKIP_INITIALIZING_NEW_CLUSTERS","features":[339]},{"name":"SID_HASH_SIZE","features":[339]},{"name":"SID_MAX_SUB_AUTHORITIES","features":[339]},{"name":"SID_RECOMMENDED_SUB_AUTHORITIES","features":[339]},{"name":"SID_REVISION","features":[339]},{"name":"SILOOBJECT_BASIC_INFORMATION","features":[305,339]},{"name":"SIZEOF_RFPO_DATA","features":[339]},{"name":"SIZE_OF_80387_REGISTERS","features":[339]},{"name":"SMB_CCF_APP_INSTANCE_EA_NAME","features":[339]},{"name":"SMT_UNPARKING_POLICY_CORE","features":[339]},{"name":"SMT_UNPARKING_POLICY_CORE_PER_THREAD","features":[339]},{"name":"SMT_UNPARKING_POLICY_LP_ROUNDROBIN","features":[339]},{"name":"SMT_UNPARKING_POLICY_LP_SEQUENTIAL","features":[339]},{"name":"SORT_CHINESE_BIG5","features":[339]},{"name":"SORT_CHINESE_BOPOMOFO","features":[339]},{"name":"SORT_CHINESE_PRC","features":[339]},{"name":"SORT_CHINESE_PRCP","features":[339]},{"name":"SORT_CHINESE_RADICALSTROKE","features":[339]},{"name":"SORT_CHINESE_UNICODE","features":[339]},{"name":"SORT_DEFAULT","features":[339]},{"name":"SORT_GEORGIAN_MODERN","features":[339]},{"name":"SORT_GEORGIAN_TRADITIONAL","features":[339]},{"name":"SORT_GERMAN_PHONE_BOOK","features":[339]},{"name":"SORT_HUNGARIAN_DEFAULT","features":[339]},{"name":"SORT_HUNGARIAN_TECHNICAL","features":[339]},{"name":"SORT_INVARIANT_MATH","features":[339]},{"name":"SORT_JAPANESE_RADICALSTROKE","features":[339]},{"name":"SORT_JAPANESE_UNICODE","features":[339]},{"name":"SORT_JAPANESE_XJIS","features":[339]},{"name":"SORT_KOREAN_KSC","features":[339]},{"name":"SORT_KOREAN_UNICODE","features":[339]},{"name":"SS_BITMAP","features":[339]},{"name":"SS_BLACKFRAME","features":[339]},{"name":"SS_BLACKRECT","features":[339]},{"name":"SS_CENTER","features":[339]},{"name":"SS_CENTERIMAGE","features":[339]},{"name":"SS_EDITCONTROL","features":[339]},{"name":"SS_ELLIPSISMASK","features":[339]},{"name":"SS_ENDELLIPSIS","features":[339]},{"name":"SS_ENHMETAFILE","features":[339]},{"name":"SS_ETCHEDFRAME","features":[339]},{"name":"SS_ETCHEDHORZ","features":[339]},{"name":"SS_ETCHEDVERT","features":[339]},{"name":"SS_GRAYFRAME","features":[339]},{"name":"SS_GRAYRECT","features":[339]},{"name":"SS_ICON","features":[339]},{"name":"SS_LEFT","features":[339]},{"name":"SS_LEFTNOWORDWRAP","features":[339]},{"name":"SS_NOPREFIX","features":[339]},{"name":"SS_NOTIFY","features":[339]},{"name":"SS_OWNERDRAW","features":[339]},{"name":"SS_PATHELLIPSIS","features":[339]},{"name":"SS_REALSIZECONTROL","features":[339]},{"name":"SS_REALSIZEIMAGE","features":[339]},{"name":"SS_RIGHT","features":[339]},{"name":"SS_RIGHTJUST","features":[339]},{"name":"SS_SIMPLE","features":[339]},{"name":"SS_SUNKEN","features":[339]},{"name":"SS_TYPEMASK","features":[339]},{"name":"SS_USERITEM","features":[339]},{"name":"SS_WHITEFRAME","features":[339]},{"name":"SS_WHITERECT","features":[339]},{"name":"SS_WORDELLIPSIS","features":[339]},{"name":"STATIC_STYLES","features":[339]},{"name":"SUBLANG_AFRIKAANS_SOUTH_AFRICA","features":[339]},{"name":"SUBLANG_ALBANIAN_ALBANIA","features":[339]},{"name":"SUBLANG_ALSATIAN_FRANCE","features":[339]},{"name":"SUBLANG_AMHARIC_ETHIOPIA","features":[339]},{"name":"SUBLANG_ARABIC_ALGERIA","features":[339]},{"name":"SUBLANG_ARABIC_BAHRAIN","features":[339]},{"name":"SUBLANG_ARABIC_EGYPT","features":[339]},{"name":"SUBLANG_ARABIC_IRAQ","features":[339]},{"name":"SUBLANG_ARABIC_JORDAN","features":[339]},{"name":"SUBLANG_ARABIC_KUWAIT","features":[339]},{"name":"SUBLANG_ARABIC_LEBANON","features":[339]},{"name":"SUBLANG_ARABIC_LIBYA","features":[339]},{"name":"SUBLANG_ARABIC_MOROCCO","features":[339]},{"name":"SUBLANG_ARABIC_OMAN","features":[339]},{"name":"SUBLANG_ARABIC_QATAR","features":[339]},{"name":"SUBLANG_ARABIC_SAUDI_ARABIA","features":[339]},{"name":"SUBLANG_ARABIC_SYRIA","features":[339]},{"name":"SUBLANG_ARABIC_TUNISIA","features":[339]},{"name":"SUBLANG_ARABIC_UAE","features":[339]},{"name":"SUBLANG_ARABIC_YEMEN","features":[339]},{"name":"SUBLANG_ARMENIAN_ARMENIA","features":[339]},{"name":"SUBLANG_ASSAMESE_INDIA","features":[339]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_CYRILLIC","features":[339]},{"name":"SUBLANG_AZERBAIJANI_AZERBAIJAN_LATIN","features":[339]},{"name":"SUBLANG_AZERI_CYRILLIC","features":[339]},{"name":"SUBLANG_AZERI_LATIN","features":[339]},{"name":"SUBLANG_BANGLA_BANGLADESH","features":[339]},{"name":"SUBLANG_BANGLA_INDIA","features":[339]},{"name":"SUBLANG_BASHKIR_RUSSIA","features":[339]},{"name":"SUBLANG_BASQUE_BASQUE","features":[339]},{"name":"SUBLANG_BELARUSIAN_BELARUS","features":[339]},{"name":"SUBLANG_BENGALI_BANGLADESH","features":[339]},{"name":"SUBLANG_BENGALI_INDIA","features":[339]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[339]},{"name":"SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN","features":[339]},{"name":"SUBLANG_BRETON_FRANCE","features":[339]},{"name":"SUBLANG_BULGARIAN_BULGARIA","features":[339]},{"name":"SUBLANG_CATALAN_CATALAN","features":[339]},{"name":"SUBLANG_CENTRAL_KURDISH_IRAQ","features":[339]},{"name":"SUBLANG_CHEROKEE_CHEROKEE","features":[339]},{"name":"SUBLANG_CHINESE_HONGKONG","features":[339]},{"name":"SUBLANG_CHINESE_MACAU","features":[339]},{"name":"SUBLANG_CHINESE_SIMPLIFIED","features":[339]},{"name":"SUBLANG_CHINESE_SINGAPORE","features":[339]},{"name":"SUBLANG_CHINESE_TRADITIONAL","features":[339]},{"name":"SUBLANG_CORSICAN_FRANCE","features":[339]},{"name":"SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN","features":[339]},{"name":"SUBLANG_CROATIAN_CROATIA","features":[339]},{"name":"SUBLANG_CUSTOM_DEFAULT","features":[339]},{"name":"SUBLANG_CUSTOM_UNSPECIFIED","features":[339]},{"name":"SUBLANG_CZECH_CZECH_REPUBLIC","features":[339]},{"name":"SUBLANG_DANISH_DENMARK","features":[339]},{"name":"SUBLANG_DARI_AFGHANISTAN","features":[339]},{"name":"SUBLANG_DEFAULT","features":[339]},{"name":"SUBLANG_DIVEHI_MALDIVES","features":[339]},{"name":"SUBLANG_DUTCH","features":[339]},{"name":"SUBLANG_DUTCH_BELGIAN","features":[339]},{"name":"SUBLANG_ENGLISH_AUS","features":[339]},{"name":"SUBLANG_ENGLISH_BELIZE","features":[339]},{"name":"SUBLANG_ENGLISH_CAN","features":[339]},{"name":"SUBLANG_ENGLISH_CARIBBEAN","features":[339]},{"name":"SUBLANG_ENGLISH_EIRE","features":[339]},{"name":"SUBLANG_ENGLISH_INDIA","features":[339]},{"name":"SUBLANG_ENGLISH_JAMAICA","features":[339]},{"name":"SUBLANG_ENGLISH_MALAYSIA","features":[339]},{"name":"SUBLANG_ENGLISH_NZ","features":[339]},{"name":"SUBLANG_ENGLISH_PHILIPPINES","features":[339]},{"name":"SUBLANG_ENGLISH_SINGAPORE","features":[339]},{"name":"SUBLANG_ENGLISH_SOUTH_AFRICA","features":[339]},{"name":"SUBLANG_ENGLISH_TRINIDAD","features":[339]},{"name":"SUBLANG_ENGLISH_UK","features":[339]},{"name":"SUBLANG_ENGLISH_US","features":[339]},{"name":"SUBLANG_ENGLISH_ZIMBABWE","features":[339]},{"name":"SUBLANG_ESTONIAN_ESTONIA","features":[339]},{"name":"SUBLANG_FAEROESE_FAROE_ISLANDS","features":[339]},{"name":"SUBLANG_FILIPINO_PHILIPPINES","features":[339]},{"name":"SUBLANG_FINNISH_FINLAND","features":[339]},{"name":"SUBLANG_FRENCH","features":[339]},{"name":"SUBLANG_FRENCH_BELGIAN","features":[339]},{"name":"SUBLANG_FRENCH_CANADIAN","features":[339]},{"name":"SUBLANG_FRENCH_LUXEMBOURG","features":[339]},{"name":"SUBLANG_FRENCH_MONACO","features":[339]},{"name":"SUBLANG_FRENCH_SWISS","features":[339]},{"name":"SUBLANG_FRISIAN_NETHERLANDS","features":[339]},{"name":"SUBLANG_FULAH_SENEGAL","features":[339]},{"name":"SUBLANG_GALICIAN_GALICIAN","features":[339]},{"name":"SUBLANG_GEORGIAN_GEORGIA","features":[339]},{"name":"SUBLANG_GERMAN","features":[339]},{"name":"SUBLANG_GERMAN_AUSTRIAN","features":[339]},{"name":"SUBLANG_GERMAN_LIECHTENSTEIN","features":[339]},{"name":"SUBLANG_GERMAN_LUXEMBOURG","features":[339]},{"name":"SUBLANG_GERMAN_SWISS","features":[339]},{"name":"SUBLANG_GREEK_GREECE","features":[339]},{"name":"SUBLANG_GREENLANDIC_GREENLAND","features":[339]},{"name":"SUBLANG_GUJARATI_INDIA","features":[339]},{"name":"SUBLANG_HAUSA_NIGERIA_LATIN","features":[339]},{"name":"SUBLANG_HAWAIIAN_US","features":[339]},{"name":"SUBLANG_HEBREW_ISRAEL","features":[339]},{"name":"SUBLANG_HINDI_INDIA","features":[339]},{"name":"SUBLANG_HUNGARIAN_HUNGARY","features":[339]},{"name":"SUBLANG_ICELANDIC_ICELAND","features":[339]},{"name":"SUBLANG_IGBO_NIGERIA","features":[339]},{"name":"SUBLANG_INDONESIAN_INDONESIA","features":[339]},{"name":"SUBLANG_INUKTITUT_CANADA","features":[339]},{"name":"SUBLANG_INUKTITUT_CANADA_LATIN","features":[339]},{"name":"SUBLANG_IRISH_IRELAND","features":[339]},{"name":"SUBLANG_ITALIAN","features":[339]},{"name":"SUBLANG_ITALIAN_SWISS","features":[339]},{"name":"SUBLANG_JAPANESE_JAPAN","features":[339]},{"name":"SUBLANG_KANNADA_INDIA","features":[339]},{"name":"SUBLANG_KASHMIRI_INDIA","features":[339]},{"name":"SUBLANG_KASHMIRI_SASIA","features":[339]},{"name":"SUBLANG_KAZAK_KAZAKHSTAN","features":[339]},{"name":"SUBLANG_KHMER_CAMBODIA","features":[339]},{"name":"SUBLANG_KICHE_GUATEMALA","features":[339]},{"name":"SUBLANG_KINYARWANDA_RWANDA","features":[339]},{"name":"SUBLANG_KONKANI_INDIA","features":[339]},{"name":"SUBLANG_KOREAN","features":[339]},{"name":"SUBLANG_KYRGYZ_KYRGYZSTAN","features":[339]},{"name":"SUBLANG_LAO_LAO","features":[339]},{"name":"SUBLANG_LATVIAN_LATVIA","features":[339]},{"name":"SUBLANG_LITHUANIAN","features":[339]},{"name":"SUBLANG_LOWER_SORBIAN_GERMANY","features":[339]},{"name":"SUBLANG_LUXEMBOURGISH_LUXEMBOURG","features":[339]},{"name":"SUBLANG_MACEDONIAN_MACEDONIA","features":[339]},{"name":"SUBLANG_MALAYALAM_INDIA","features":[339]},{"name":"SUBLANG_MALAY_BRUNEI_DARUSSALAM","features":[339]},{"name":"SUBLANG_MALAY_MALAYSIA","features":[339]},{"name":"SUBLANG_MALTESE_MALTA","features":[339]},{"name":"SUBLANG_MAORI_NEW_ZEALAND","features":[339]},{"name":"SUBLANG_MAPUDUNGUN_CHILE","features":[339]},{"name":"SUBLANG_MARATHI_INDIA","features":[339]},{"name":"SUBLANG_MOHAWK_MOHAWK","features":[339]},{"name":"SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA","features":[339]},{"name":"SUBLANG_MONGOLIAN_PRC","features":[339]},{"name":"SUBLANG_NEPALI_INDIA","features":[339]},{"name":"SUBLANG_NEPALI_NEPAL","features":[339]},{"name":"SUBLANG_NEUTRAL","features":[339]},{"name":"SUBLANG_NORWEGIAN_BOKMAL","features":[339]},{"name":"SUBLANG_NORWEGIAN_NYNORSK","features":[339]},{"name":"SUBLANG_OCCITAN_FRANCE","features":[339]},{"name":"SUBLANG_ODIA_INDIA","features":[339]},{"name":"SUBLANG_ORIYA_INDIA","features":[339]},{"name":"SUBLANG_PASHTO_AFGHANISTAN","features":[339]},{"name":"SUBLANG_PERSIAN_IRAN","features":[339]},{"name":"SUBLANG_POLISH_POLAND","features":[339]},{"name":"SUBLANG_PORTUGUESE","features":[339]},{"name":"SUBLANG_PORTUGUESE_BRAZILIAN","features":[339]},{"name":"SUBLANG_PULAR_SENEGAL","features":[339]},{"name":"SUBLANG_PUNJABI_INDIA","features":[339]},{"name":"SUBLANG_PUNJABI_PAKISTAN","features":[339]},{"name":"SUBLANG_QUECHUA_BOLIVIA","features":[339]},{"name":"SUBLANG_QUECHUA_ECUADOR","features":[339]},{"name":"SUBLANG_QUECHUA_PERU","features":[339]},{"name":"SUBLANG_ROMANIAN_ROMANIA","features":[339]},{"name":"SUBLANG_ROMANSH_SWITZERLAND","features":[339]},{"name":"SUBLANG_RUSSIAN_RUSSIA","features":[339]},{"name":"SUBLANG_SAKHA_RUSSIA","features":[339]},{"name":"SUBLANG_SAMI_INARI_FINLAND","features":[339]},{"name":"SUBLANG_SAMI_LULE_NORWAY","features":[339]},{"name":"SUBLANG_SAMI_LULE_SWEDEN","features":[339]},{"name":"SUBLANG_SAMI_NORTHERN_FINLAND","features":[339]},{"name":"SUBLANG_SAMI_NORTHERN_NORWAY","features":[339]},{"name":"SUBLANG_SAMI_NORTHERN_SWEDEN","features":[339]},{"name":"SUBLANG_SAMI_SKOLT_FINLAND","features":[339]},{"name":"SUBLANG_SAMI_SOUTHERN_NORWAY","features":[339]},{"name":"SUBLANG_SAMI_SOUTHERN_SWEDEN","features":[339]},{"name":"SUBLANG_SANSKRIT_INDIA","features":[339]},{"name":"SUBLANG_SCOTTISH_GAELIC","features":[339]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC","features":[339]},{"name":"SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN","features":[339]},{"name":"SUBLANG_SERBIAN_CROATIA","features":[339]},{"name":"SUBLANG_SERBIAN_CYRILLIC","features":[339]},{"name":"SUBLANG_SERBIAN_LATIN","features":[339]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_CYRILLIC","features":[339]},{"name":"SUBLANG_SERBIAN_MONTENEGRO_LATIN","features":[339]},{"name":"SUBLANG_SERBIAN_SERBIA_CYRILLIC","features":[339]},{"name":"SUBLANG_SERBIAN_SERBIA_LATIN","features":[339]},{"name":"SUBLANG_SINDHI_AFGHANISTAN","features":[339]},{"name":"SUBLANG_SINDHI_INDIA","features":[339]},{"name":"SUBLANG_SINDHI_PAKISTAN","features":[339]},{"name":"SUBLANG_SINHALESE_SRI_LANKA","features":[339]},{"name":"SUBLANG_SLOVAK_SLOVAKIA","features":[339]},{"name":"SUBLANG_SLOVENIAN_SLOVENIA","features":[339]},{"name":"SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA","features":[339]},{"name":"SUBLANG_SPANISH","features":[339]},{"name":"SUBLANG_SPANISH_ARGENTINA","features":[339]},{"name":"SUBLANG_SPANISH_BOLIVIA","features":[339]},{"name":"SUBLANG_SPANISH_CHILE","features":[339]},{"name":"SUBLANG_SPANISH_COLOMBIA","features":[339]},{"name":"SUBLANG_SPANISH_COSTA_RICA","features":[339]},{"name":"SUBLANG_SPANISH_DOMINICAN_REPUBLIC","features":[339]},{"name":"SUBLANG_SPANISH_ECUADOR","features":[339]},{"name":"SUBLANG_SPANISH_EL_SALVADOR","features":[339]},{"name":"SUBLANG_SPANISH_GUATEMALA","features":[339]},{"name":"SUBLANG_SPANISH_HONDURAS","features":[339]},{"name":"SUBLANG_SPANISH_MEXICAN","features":[339]},{"name":"SUBLANG_SPANISH_MODERN","features":[339]},{"name":"SUBLANG_SPANISH_NICARAGUA","features":[339]},{"name":"SUBLANG_SPANISH_PANAMA","features":[339]},{"name":"SUBLANG_SPANISH_PARAGUAY","features":[339]},{"name":"SUBLANG_SPANISH_PERU","features":[339]},{"name":"SUBLANG_SPANISH_PUERTO_RICO","features":[339]},{"name":"SUBLANG_SPANISH_URUGUAY","features":[339]},{"name":"SUBLANG_SPANISH_US","features":[339]},{"name":"SUBLANG_SPANISH_VENEZUELA","features":[339]},{"name":"SUBLANG_SWAHILI_KENYA","features":[339]},{"name":"SUBLANG_SWEDISH","features":[339]},{"name":"SUBLANG_SWEDISH_FINLAND","features":[339]},{"name":"SUBLANG_SYRIAC_SYRIA","features":[339]},{"name":"SUBLANG_SYS_DEFAULT","features":[339]},{"name":"SUBLANG_TAJIK_TAJIKISTAN","features":[339]},{"name":"SUBLANG_TAMAZIGHT_ALGERIA_LATIN","features":[339]},{"name":"SUBLANG_TAMAZIGHT_MOROCCO_TIFINAGH","features":[339]},{"name":"SUBLANG_TAMIL_INDIA","features":[339]},{"name":"SUBLANG_TAMIL_SRI_LANKA","features":[339]},{"name":"SUBLANG_TATAR_RUSSIA","features":[339]},{"name":"SUBLANG_TELUGU_INDIA","features":[339]},{"name":"SUBLANG_THAI_THAILAND","features":[339]},{"name":"SUBLANG_TIBETAN_PRC","features":[339]},{"name":"SUBLANG_TIGRIGNA_ERITREA","features":[339]},{"name":"SUBLANG_TIGRINYA_ERITREA","features":[339]},{"name":"SUBLANG_TIGRINYA_ETHIOPIA","features":[339]},{"name":"SUBLANG_TSWANA_BOTSWANA","features":[339]},{"name":"SUBLANG_TSWANA_SOUTH_AFRICA","features":[339]},{"name":"SUBLANG_TURKISH_TURKEY","features":[339]},{"name":"SUBLANG_TURKMEN_TURKMENISTAN","features":[339]},{"name":"SUBLANG_UIGHUR_PRC","features":[339]},{"name":"SUBLANG_UI_CUSTOM_DEFAULT","features":[339]},{"name":"SUBLANG_UKRAINIAN_UKRAINE","features":[339]},{"name":"SUBLANG_UPPER_SORBIAN_GERMANY","features":[339]},{"name":"SUBLANG_URDU_INDIA","features":[339]},{"name":"SUBLANG_URDU_PAKISTAN","features":[339]},{"name":"SUBLANG_UZBEK_CYRILLIC","features":[339]},{"name":"SUBLANG_UZBEK_LATIN","features":[339]},{"name":"SUBLANG_VALENCIAN_VALENCIA","features":[339]},{"name":"SUBLANG_VIETNAMESE_VIETNAM","features":[339]},{"name":"SUBLANG_WELSH_UNITED_KINGDOM","features":[339]},{"name":"SUBLANG_WOLOF_SENEGAL","features":[339]},{"name":"SUBLANG_XHOSA_SOUTH_AFRICA","features":[339]},{"name":"SUBLANG_YAKUT_RUSSIA","features":[339]},{"name":"SUBLANG_YI_PRC","features":[339]},{"name":"SUBLANG_YORUBA_NIGERIA","features":[339]},{"name":"SUBLANG_ZULU_SOUTH_AFRICA","features":[339]},{"name":"SUPPORTED_OS_INFO","features":[339]},{"name":"SYSTEM_ACCESS_FILTER_ACE_TYPE","features":[339]},{"name":"SYSTEM_ACCESS_FILTER_NOCONSTRAINT_MASK","features":[339]},{"name":"SYSTEM_ACCESS_FILTER_VALID_MASK","features":[339]},{"name":"SYSTEM_ALARM_ACE_TYPE","features":[339]},{"name":"SYSTEM_ALARM_CALLBACK_ACE_TYPE","features":[339]},{"name":"SYSTEM_ALARM_CALLBACK_OBJECT_ACE_TYPE","features":[339]},{"name":"SYSTEM_ALARM_OBJECT_ACE_TYPE","features":[339]},{"name":"SYSTEM_AUDIT_ACE_TYPE","features":[339]},{"name":"SYSTEM_AUDIT_CALLBACK_ACE_TYPE","features":[339]},{"name":"SYSTEM_AUDIT_CALLBACK_OBJECT_ACE_TYPE","features":[339]},{"name":"SYSTEM_AUDIT_OBJECT_ACE_TYPE","features":[339]},{"name":"SYSTEM_CACHE_ALIGNMENT_SIZE","features":[339]},{"name":"SYSTEM_MANDATORY_LABEL_ACE_TYPE","features":[339]},{"name":"SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP","features":[339]},{"name":"SYSTEM_MANDATORY_LABEL_NO_READ_UP","features":[339]},{"name":"SYSTEM_MANDATORY_LABEL_NO_WRITE_UP","features":[339]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_ACE_TYPE","features":[339]},{"name":"SYSTEM_PROCESS_TRUST_LABEL_VALID_MASK","features":[339]},{"name":"SYSTEM_PROCESS_TRUST_NOCONSTRAINT_MASK","features":[339]},{"name":"SYSTEM_RESOURCE_ATTRIBUTE_ACE_TYPE","features":[339]},{"name":"SYSTEM_SCOPED_POLICY_ID_ACE_TYPE","features":[339]},{"name":"SeImageSignatureCache","features":[339]},{"name":"SeImageSignatureCatalogCached","features":[339]},{"name":"SeImageSignatureCatalogHint","features":[339]},{"name":"SeImageSignatureCatalogNotCached","features":[339]},{"name":"SeImageSignatureEmbedded","features":[339]},{"name":"SeImageSignatureNone","features":[339]},{"name":"SeImageSignaturePackageCatalog","features":[339]},{"name":"SeImageSignaturePplMitigated","features":[339]},{"name":"SevereError","features":[339]},{"name":"SharedVirtualDiskCDPSnapshotsSupported","features":[339]},{"name":"SharedVirtualDiskHandleState","features":[339]},{"name":"SharedVirtualDiskHandleStateFileShared","features":[339]},{"name":"SharedVirtualDiskHandleStateHandleShared","features":[339]},{"name":"SharedVirtualDiskHandleStateNone","features":[339]},{"name":"SharedVirtualDiskSnapshotsSupported","features":[339]},{"name":"SharedVirtualDiskSupportType","features":[339]},{"name":"SharedVirtualDisksSupported","features":[339]},{"name":"SharedVirtualDisksUnsupported","features":[339]},{"name":"SystemLoad","features":[339]},{"name":"TAPE_CHECK_FOR_DRIVE_PROBLEM","features":[339]},{"name":"TAPE_CREATE_PARTITION","features":[339]},{"name":"TAPE_DRIVE_ABSOLUTE_BLK","features":[339]},{"name":"TAPE_DRIVE_ABS_BLK_IMMED","features":[339]},{"name":"TAPE_DRIVE_CLEAN_REQUESTS","features":[339]},{"name":"TAPE_DRIVE_COMPRESSION","features":[339]},{"name":"TAPE_DRIVE_ECC","features":[339]},{"name":"TAPE_DRIVE_EJECT_MEDIA","features":[339]},{"name":"TAPE_DRIVE_END_OF_DATA","features":[339]},{"name":"TAPE_DRIVE_EOT_WZ_SIZE","features":[339]},{"name":"TAPE_DRIVE_ERASE_BOP_ONLY","features":[339]},{"name":"TAPE_DRIVE_ERASE_IMMEDIATE","features":[339]},{"name":"TAPE_DRIVE_ERASE_LONG","features":[339]},{"name":"TAPE_DRIVE_ERASE_SHORT","features":[339]},{"name":"TAPE_DRIVE_FILEMARKS","features":[339]},{"name":"TAPE_DRIVE_FIXED","features":[339]},{"name":"TAPE_DRIVE_FIXED_BLOCK","features":[339]},{"name":"TAPE_DRIVE_FORMAT","features":[339]},{"name":"TAPE_DRIVE_FORMAT_IMMEDIATE","features":[339]},{"name":"TAPE_DRIVE_GET_ABSOLUTE_BLK","features":[339]},{"name":"TAPE_DRIVE_GET_LOGICAL_BLK","features":[339]},{"name":"TAPE_DRIVE_HIGH_FEATURES","features":[339]},{"name":"TAPE_DRIVE_INITIATOR","features":[339]},{"name":"TAPE_DRIVE_LOAD_UNLD_IMMED","features":[339]},{"name":"TAPE_DRIVE_LOAD_UNLOAD","features":[339]},{"name":"TAPE_DRIVE_LOCK_UNLK_IMMED","features":[339]},{"name":"TAPE_DRIVE_LOCK_UNLOCK","features":[339]},{"name":"TAPE_DRIVE_LOGICAL_BLK","features":[339]},{"name":"TAPE_DRIVE_LOG_BLK_IMMED","features":[339]},{"name":"TAPE_DRIVE_PADDING","features":[339]},{"name":"TAPE_DRIVE_PROBLEM_TYPE","features":[339]},{"name":"TAPE_DRIVE_RELATIVE_BLKS","features":[339]},{"name":"TAPE_DRIVE_REPORT_SMKS","features":[339]},{"name":"TAPE_DRIVE_RESERVED_BIT","features":[339]},{"name":"TAPE_DRIVE_REVERSE_POSITION","features":[339]},{"name":"TAPE_DRIVE_REWIND_IMMEDIATE","features":[339]},{"name":"TAPE_DRIVE_SELECT","features":[339]},{"name":"TAPE_DRIVE_SEQUENTIAL_FMKS","features":[339]},{"name":"TAPE_DRIVE_SEQUENTIAL_SMKS","features":[339]},{"name":"TAPE_DRIVE_SETMARKS","features":[339]},{"name":"TAPE_DRIVE_SET_BLOCK_SIZE","features":[339]},{"name":"TAPE_DRIVE_SET_CMP_BOP_ONLY","features":[339]},{"name":"TAPE_DRIVE_SET_COMPRESSION","features":[339]},{"name":"TAPE_DRIVE_SET_ECC","features":[339]},{"name":"TAPE_DRIVE_SET_EOT_WZ_SIZE","features":[339]},{"name":"TAPE_DRIVE_SET_PADDING","features":[339]},{"name":"TAPE_DRIVE_SET_REPORT_SMKS","features":[339]},{"name":"TAPE_DRIVE_SPACE_IMMEDIATE","features":[339]},{"name":"TAPE_DRIVE_TAPE_CAPACITY","features":[339]},{"name":"TAPE_DRIVE_TAPE_REMAINING","features":[339]},{"name":"TAPE_DRIVE_TENSION","features":[339]},{"name":"TAPE_DRIVE_TENSION_IMMED","features":[339]},{"name":"TAPE_DRIVE_VARIABLE_BLOCK","features":[339]},{"name":"TAPE_DRIVE_WRITE_FILEMARKS","features":[339]},{"name":"TAPE_DRIVE_WRITE_LONG_FMKS","features":[339]},{"name":"TAPE_DRIVE_WRITE_MARK_IMMED","features":[339]},{"name":"TAPE_DRIVE_WRITE_PROTECT","features":[339]},{"name":"TAPE_DRIVE_WRITE_SETMARKS","features":[339]},{"name":"TAPE_DRIVE_WRITE_SHORT_FMKS","features":[339]},{"name":"TAPE_GET_DRIVE_PARAMETERS","features":[305,339]},{"name":"TAPE_GET_DRIVE_PARAMETERS_FEATURES_HIGH","features":[339]},{"name":"TAPE_GET_MEDIA_PARAMETERS","features":[305,339]},{"name":"TAPE_PSEUDO_LOGICAL_BLOCK","features":[339]},{"name":"TAPE_PSEUDO_LOGICAL_POSITION","features":[339]},{"name":"TAPE_QUERY_DEVICE_ERROR_DATA","features":[339]},{"name":"TAPE_QUERY_DRIVE_PARAMETERS","features":[339]},{"name":"TAPE_QUERY_IO_ERROR_DATA","features":[339]},{"name":"TAPE_QUERY_MEDIA_CAPACITY","features":[339]},{"name":"TAPE_SET_DRIVE_PARAMETERS","features":[305,339]},{"name":"TAPE_SET_MEDIA_PARAMETERS","features":[339]},{"name":"TAPE_WMI_OPERATIONS","features":[339]},{"name":"THREAD_BASE_PRIORITY_IDLE","features":[339]},{"name":"THREAD_BASE_PRIORITY_LOWRT","features":[339]},{"name":"THREAD_BASE_PRIORITY_MAX","features":[339]},{"name":"THREAD_BASE_PRIORITY_MIN","features":[339]},{"name":"THREAD_DYNAMIC_CODE_ALLOW","features":[339]},{"name":"THREAD_PROFILING_FLAG_DISPATCH","features":[339]},{"name":"TIME_ZONE_ID_DAYLIGHT","features":[339]},{"name":"TIME_ZONE_ID_STANDARD","features":[339]},{"name":"TIME_ZONE_ID_UNKNOWN","features":[339]},{"name":"TLS_MINIMUM_AVAILABLE","features":[339]},{"name":"TOKEN_BNO_ISOLATION_INFORMATION","features":[305,339]},{"name":"TOKEN_SID_INFORMATION","features":[308,339]},{"name":"TOKEN_SOURCE_LENGTH","features":[339]},{"name":"TRANSACTIONMANAGER_BASIC_INFORMATION","features":[339]},{"name":"TRANSACTIONMANAGER_BIND_TRANSACTION","features":[339]},{"name":"TRANSACTIONMANAGER_CREATE_RM","features":[339]},{"name":"TRANSACTIONMANAGER_INFORMATION_CLASS","features":[339]},{"name":"TRANSACTIONMANAGER_LOGPATH_INFORMATION","features":[339]},{"name":"TRANSACTIONMANAGER_LOG_INFORMATION","features":[339]},{"name":"TRANSACTIONMANAGER_OLDEST_INFORMATION","features":[339]},{"name":"TRANSACTIONMANAGER_QUERY_INFORMATION","features":[339]},{"name":"TRANSACTIONMANAGER_RECOVER","features":[339]},{"name":"TRANSACTIONMANAGER_RECOVERY_INFORMATION","features":[339]},{"name":"TRANSACTIONMANAGER_RENAME","features":[339]},{"name":"TRANSACTIONMANAGER_SET_INFORMATION","features":[339]},{"name":"TRANSACTION_BASIC_INFORMATION","features":[339]},{"name":"TRANSACTION_BIND_INFORMATION","features":[305,339]},{"name":"TRANSACTION_COMMIT","features":[339]},{"name":"TRANSACTION_ENLIST","features":[339]},{"name":"TRANSACTION_ENLISTMENTS_INFORMATION","features":[339]},{"name":"TRANSACTION_ENLISTMENT_PAIR","features":[339]},{"name":"TRANSACTION_INFORMATION_CLASS","features":[339]},{"name":"TRANSACTION_LIST_ENTRY","features":[339]},{"name":"TRANSACTION_LIST_INFORMATION","features":[339]},{"name":"TRANSACTION_PROPAGATE","features":[339]},{"name":"TRANSACTION_PROPERTIES_INFORMATION","features":[339]},{"name":"TRANSACTION_QUERY_INFORMATION","features":[339]},{"name":"TRANSACTION_RIGHT_RESERVED1","features":[339]},{"name":"TRANSACTION_ROLLBACK","features":[339]},{"name":"TRANSACTION_SET_INFORMATION","features":[339]},{"name":"TRANSACTION_STATE","features":[339]},{"name":"TRANSACTION_SUPERIOR_ENLISTMENT_INFORMATION","features":[339]},{"name":"TREE_CONNECT_ATTRIBUTE_GLOBAL","features":[339]},{"name":"TREE_CONNECT_ATTRIBUTE_INTEGRITY","features":[339]},{"name":"TREE_CONNECT_ATTRIBUTE_PINNED","features":[339]},{"name":"TREE_CONNECT_ATTRIBUTE_PRIVACY","features":[339]},{"name":"TRUST_PROTECTED_FILTER_ACE_FLAG","features":[339]},{"name":"TapeDriveCleanDriveNow","features":[339]},{"name":"TapeDriveHardwareError","features":[339]},{"name":"TapeDriveMediaLifeExpired","features":[339]},{"name":"TapeDriveProblemNone","features":[339]},{"name":"TapeDriveReadError","features":[339]},{"name":"TapeDriveReadWarning","features":[339]},{"name":"TapeDriveReadWriteError","features":[339]},{"name":"TapeDriveReadWriteWarning","features":[339]},{"name":"TapeDriveScsiConnectionError","features":[339]},{"name":"TapeDriveSnappedTape","features":[339]},{"name":"TapeDriveTimetoClean","features":[339]},{"name":"TapeDriveUnsupportedMedia","features":[339]},{"name":"TapeDriveWriteError","features":[339]},{"name":"TapeDriveWriteWarning","features":[339]},{"name":"TransactionBasicInformation","features":[339]},{"name":"TransactionBindInformation","features":[339]},{"name":"TransactionDTCPrivateInformation","features":[339]},{"name":"TransactionEnlistmentInformation","features":[339]},{"name":"TransactionManagerBasicInformation","features":[339]},{"name":"TransactionManagerLogInformation","features":[339]},{"name":"TransactionManagerLogPathInformation","features":[339]},{"name":"TransactionManagerOldestTransactionInformation","features":[339]},{"name":"TransactionManagerOnlineProbeInformation","features":[339]},{"name":"TransactionManagerRecoveryInformation","features":[339]},{"name":"TransactionPropertiesInformation","features":[339]},{"name":"TransactionStateCommittedNotify","features":[339]},{"name":"TransactionStateIndoubt","features":[339]},{"name":"TransactionStateNormal","features":[339]},{"name":"TransactionSuperiorEnlistmentInformation","features":[339]},{"name":"UCSCHAR_INVALID_CHARACTER","features":[339]},{"name":"UMS_CREATE_THREAD_ATTRIBUTES","features":[339]},{"name":"UNICODE_STRING_MAX_CHARS","features":[339]},{"name":"UNIFIEDBUILDREVISION_KEY","features":[339]},{"name":"UNIFIEDBUILDREVISION_MIN","features":[339]},{"name":"UNIFIEDBUILDREVISION_VALUE","features":[339]},{"name":"UNWIND_CHAIN_LIMIT","features":[339]},{"name":"UNWIND_HISTORY_TABLE_SIZE","features":[339]},{"name":"UNW_FLAG_NO_EPILOGUE","features":[339]},{"name":"UmsSchedulerStartup","features":[339]},{"name":"UmsSchedulerThreadBlocked","features":[339]},{"name":"UmsSchedulerThreadYield","features":[339]},{"name":"VALID_INHERIT_FLAGS","features":[339]},{"name":"VBS_BASIC_PAGE_MEASURED_DATA","features":[339]},{"name":"VBS_BASIC_PAGE_SYSTEM_CALL","features":[339]},{"name":"VBS_BASIC_PAGE_THREAD_DESCRIPTOR","features":[339]},{"name":"VBS_BASIC_PAGE_UNMEASURED_DATA","features":[339]},{"name":"VBS_BASIC_PAGE_ZERO_FILL","features":[339]},{"name":"VER_AND","features":[339]},{"name":"VER_CONDITION_MASK","features":[339]},{"name":"VER_EQUAL","features":[339]},{"name":"VER_GREATER","features":[339]},{"name":"VER_GREATER_EQUAL","features":[339]},{"name":"VER_LESS","features":[339]},{"name":"VER_LESS_EQUAL","features":[339]},{"name":"VER_NT_DOMAIN_CONTROLLER","features":[339]},{"name":"VER_NT_SERVER","features":[339]},{"name":"VER_NT_WORKSTATION","features":[339]},{"name":"VER_NUM_BITS_PER_CONDITION_MASK","features":[339]},{"name":"VER_OR","features":[339]},{"name":"VER_SERVER_NT","features":[339]},{"name":"VER_SUITE_BACKOFFICE","features":[339]},{"name":"VER_SUITE_BLADE","features":[339]},{"name":"VER_SUITE_COMMUNICATIONS","features":[339]},{"name":"VER_SUITE_COMPUTE_SERVER","features":[339]},{"name":"VER_SUITE_DATACENTER","features":[339]},{"name":"VER_SUITE_EMBEDDEDNT","features":[339]},{"name":"VER_SUITE_EMBEDDED_RESTRICTED","features":[339]},{"name":"VER_SUITE_ENTERPRISE","features":[339]},{"name":"VER_SUITE_MULTIUSERTS","features":[339]},{"name":"VER_SUITE_PERSONAL","features":[339]},{"name":"VER_SUITE_SECURITY_APPLIANCE","features":[339]},{"name":"VER_SUITE_SINGLEUSERTS","features":[339]},{"name":"VER_SUITE_SMALLBUSINESS","features":[339]},{"name":"VER_SUITE_SMALLBUSINESS_RESTRICTED","features":[339]},{"name":"VER_SUITE_STORAGE_SERVER","features":[339]},{"name":"VER_SUITE_TERMINAL","features":[339]},{"name":"VER_SUITE_WH_SERVER","features":[339]},{"name":"VER_WORKSTATION_NT","features":[339]},{"name":"VRL_CUSTOM_CLASS_BEGIN","features":[339]},{"name":"VRL_ENABLE_KERNEL_BREAKS","features":[339]},{"name":"VRL_PREDEFINED_CLASS_BEGIN","features":[339]},{"name":"WDT_INPROC64_CALL","features":[339]},{"name":"WDT_INPROC_CALL","features":[339]},{"name":"WDT_REMOTE_CALL","features":[339]},{"name":"WORD_WHEEL_OPEN_FLAGS","features":[339]},{"name":"WRITE_NV_MEMORY_FLAG_FLUSH","features":[339]},{"name":"WRITE_NV_MEMORY_FLAG_NON_TEMPORAL","features":[339]},{"name":"WRITE_NV_MEMORY_FLAG_NO_DRAIN","features":[339]},{"name":"WRITE_WATCH_FLAG_RESET","features":[339]},{"name":"WT_EXECUTEDELETEWAIT","features":[339]},{"name":"WT_EXECUTEINLONGTHREAD","features":[339]},{"name":"WT_EXECUTEINPERSISTENTIOTHREAD","features":[339]},{"name":"WT_EXECUTEINUITHREAD","features":[339]},{"name":"Win32ServiceOwnProcess","features":[339]},{"name":"Win32ServiceShareProcess","features":[339]},{"name":"X3_BTYPE_QP_INST_VAL_POS_X","features":[339]},{"name":"X3_BTYPE_QP_INST_WORD_POS_X","features":[339]},{"name":"X3_BTYPE_QP_INST_WORD_X","features":[339]},{"name":"X3_BTYPE_QP_SIZE_X","features":[339]},{"name":"X3_D_WH_INST_WORD_POS_X","features":[339]},{"name":"X3_D_WH_INST_WORD_X","features":[339]},{"name":"X3_D_WH_SIGN_VAL_POS_X","features":[339]},{"name":"X3_D_WH_SIZE_X","features":[339]},{"name":"X3_EMPTY_INST_VAL_POS_X","features":[339]},{"name":"X3_EMPTY_INST_WORD_POS_X","features":[339]},{"name":"X3_EMPTY_INST_WORD_X","features":[339]},{"name":"X3_EMPTY_SIZE_X","features":[339]},{"name":"X3_IMM20_INST_WORD_POS_X","features":[339]},{"name":"X3_IMM20_INST_WORD_X","features":[339]},{"name":"X3_IMM20_SIGN_VAL_POS_X","features":[339]},{"name":"X3_IMM20_SIZE_X","features":[339]},{"name":"X3_IMM39_1_INST_WORD_POS_X","features":[339]},{"name":"X3_IMM39_1_INST_WORD_X","features":[339]},{"name":"X3_IMM39_1_SIGN_VAL_POS_X","features":[339]},{"name":"X3_IMM39_1_SIZE_X","features":[339]},{"name":"X3_IMM39_2_INST_WORD_POS_X","features":[339]},{"name":"X3_IMM39_2_INST_WORD_X","features":[339]},{"name":"X3_IMM39_2_SIGN_VAL_POS_X","features":[339]},{"name":"X3_IMM39_2_SIZE_X","features":[339]},{"name":"X3_I_INST_WORD_POS_X","features":[339]},{"name":"X3_I_INST_WORD_X","features":[339]},{"name":"X3_I_SIGN_VAL_POS_X","features":[339]},{"name":"X3_I_SIZE_X","features":[339]},{"name":"X3_OPCODE_INST_WORD_POS_X","features":[339]},{"name":"X3_OPCODE_INST_WORD_X","features":[339]},{"name":"X3_OPCODE_SIGN_VAL_POS_X","features":[339]},{"name":"X3_OPCODE_SIZE_X","features":[339]},{"name":"X3_P_INST_WORD_POS_X","features":[339]},{"name":"X3_P_INST_WORD_X","features":[339]},{"name":"X3_P_SIGN_VAL_POS_X","features":[339]},{"name":"X3_P_SIZE_X","features":[339]},{"name":"X3_TMPLT_INST_WORD_POS_X","features":[339]},{"name":"X3_TMPLT_INST_WORD_X","features":[339]},{"name":"X3_TMPLT_SIGN_VAL_POS_X","features":[339]},{"name":"X3_TMPLT_SIZE_X","features":[339]},{"name":"X86_CACHE_ALIGNMENT_SIZE","features":[339]},{"name":"XSAVE_CET_U_FORMAT","features":[339]},{"name":"XSTATE_ALIGN_BIT","features":[339]},{"name":"XSTATE_AMX_TILE_CONFIG","features":[339]},{"name":"XSTATE_AMX_TILE_DATA","features":[339]},{"name":"XSTATE_AVX","features":[339]},{"name":"XSTATE_AVX512_KMASK","features":[339]},{"name":"XSTATE_AVX512_ZMM","features":[339]},{"name":"XSTATE_AVX512_ZMM_H","features":[339]},{"name":"XSTATE_CET_S","features":[339]},{"name":"XSTATE_CET_U","features":[339]},{"name":"XSTATE_COMPACTION_ENABLE","features":[339]},{"name":"XSTATE_CONTROLFLAG_XFD_MASK","features":[339]},{"name":"XSTATE_CONTROLFLAG_XSAVEC_MASK","features":[339]},{"name":"XSTATE_CONTROLFLAG_XSAVEOPT_MASK","features":[339]},{"name":"XSTATE_GSSE","features":[339]},{"name":"XSTATE_IPT","features":[339]},{"name":"XSTATE_LEGACY_FLOATING_POINT","features":[339]},{"name":"XSTATE_LEGACY_SSE","features":[339]},{"name":"XSTATE_LWP","features":[339]},{"name":"XSTATE_MPX_BNDCSR","features":[339]},{"name":"XSTATE_MPX_BNDREGS","features":[339]},{"name":"XSTATE_PASID","features":[339]},{"name":"XSTATE_XFD_BIT","features":[339]},{"name":"_MM_HINT_NTA","features":[339]},{"name":"_MM_HINT_T0","features":[339]},{"name":"_MM_HINT_T1","features":[339]},{"name":"_MM_HINT_T2","features":[339]},{"name":"remoteMETAFILEPICT","features":[356,339]},{"name":"userBITMAP","features":[339]},{"name":"userCLIPFORMAT","features":[339]},{"name":"userHBITMAP","features":[339]},{"name":"userHENHMETAFILE","features":[356,339]},{"name":"userHGLOBAL","features":[356,339]},{"name":"userHMETAFILE","features":[356,339]},{"name":"userHMETAFILEPICT","features":[356,339]},{"name":"userHPALETTE","features":[316,339]}],"617":[{"name":"CLSID_CTask","features":[591]},{"name":"CLSID_CTaskScheduler","features":[591]},{"name":"DAILY","features":[591]},{"name":"IAction","features":[356,591]},{"name":"IActionCollection","features":[356,591]},{"name":"IBootTrigger","features":[356,591]},{"name":"IComHandlerAction","features":[356,591]},{"name":"IDailyTrigger","features":[356,591]},{"name":"IEmailAction","features":[356,591]},{"name":"IEnumWorkItems","features":[591]},{"name":"IEventTrigger","features":[356,591]},{"name":"IExecAction","features":[356,591]},{"name":"IExecAction2","features":[356,591]},{"name":"IIdleSettings","features":[356,591]},{"name":"IIdleTrigger","features":[356,591]},{"name":"ILogonTrigger","features":[356,591]},{"name":"IMaintenanceSettings","features":[356,591]},{"name":"IMonthlyDOWTrigger","features":[356,591]},{"name":"IMonthlyTrigger","features":[356,591]},{"name":"INetworkSettings","features":[356,591]},{"name":"IPrincipal","features":[356,591]},{"name":"IPrincipal2","features":[356,591]},{"name":"IProvideTaskPage","features":[591]},{"name":"IRegisteredTask","features":[356,591]},{"name":"IRegisteredTaskCollection","features":[356,591]},{"name":"IRegistrationInfo","features":[356,591]},{"name":"IRegistrationTrigger","features":[356,591]},{"name":"IRepetitionPattern","features":[356,591]},{"name":"IRunningTask","features":[356,591]},{"name":"IRunningTaskCollection","features":[356,591]},{"name":"IScheduledWorkItem","features":[591]},{"name":"ISessionStateChangeTrigger","features":[356,591]},{"name":"IShowMessageAction","features":[356,591]},{"name":"ITask","features":[591]},{"name":"ITaskDefinition","features":[356,591]},{"name":"ITaskFolder","features":[356,591]},{"name":"ITaskFolderCollection","features":[356,591]},{"name":"ITaskHandler","features":[591]},{"name":"ITaskHandlerStatus","features":[591]},{"name":"ITaskNamedValueCollection","features":[356,591]},{"name":"ITaskNamedValuePair","features":[356,591]},{"name":"ITaskScheduler","features":[591]},{"name":"ITaskService","features":[356,591]},{"name":"ITaskSettings","features":[356,591]},{"name":"ITaskSettings2","features":[356,591]},{"name":"ITaskSettings3","features":[356,591]},{"name":"ITaskTrigger","features":[591]},{"name":"ITaskVariables","features":[591]},{"name":"ITimeTrigger","features":[356,591]},{"name":"ITrigger","features":[356,591]},{"name":"ITriggerCollection","features":[356,591]},{"name":"IWeeklyTrigger","features":[356,591]},{"name":"MONTHLYDATE","features":[591]},{"name":"MONTHLYDOW","features":[591]},{"name":"TASKPAGE","features":[591]},{"name":"TASKPAGE_SCHEDULE","features":[591]},{"name":"TASKPAGE_SETTINGS","features":[591]},{"name":"TASKPAGE_TASK","features":[591]},{"name":"TASK_ACTION_COM_HANDLER","features":[591]},{"name":"TASK_ACTION_EXEC","features":[591]},{"name":"TASK_ACTION_SEND_EMAIL","features":[591]},{"name":"TASK_ACTION_SHOW_MESSAGE","features":[591]},{"name":"TASK_ACTION_TYPE","features":[591]},{"name":"TASK_APRIL","features":[591]},{"name":"TASK_AUGUST","features":[591]},{"name":"TASK_COMPATIBILITY","features":[591]},{"name":"TASK_COMPATIBILITY_AT","features":[591]},{"name":"TASK_COMPATIBILITY_V1","features":[591]},{"name":"TASK_COMPATIBILITY_V2","features":[591]},{"name":"TASK_COMPATIBILITY_V2_1","features":[591]},{"name":"TASK_COMPATIBILITY_V2_2","features":[591]},{"name":"TASK_COMPATIBILITY_V2_3","features":[591]},{"name":"TASK_COMPATIBILITY_V2_4","features":[591]},{"name":"TASK_CONSOLE_CONNECT","features":[591]},{"name":"TASK_CONSOLE_DISCONNECT","features":[591]},{"name":"TASK_CREATE","features":[591]},{"name":"TASK_CREATE_OR_UPDATE","features":[591]},{"name":"TASK_CREATION","features":[591]},{"name":"TASK_DECEMBER","features":[591]},{"name":"TASK_DISABLE","features":[591]},{"name":"TASK_DONT_ADD_PRINCIPAL_ACE","features":[591]},{"name":"TASK_ENUM_FLAGS","features":[591]},{"name":"TASK_ENUM_HIDDEN","features":[591]},{"name":"TASK_EVENT_TRIGGER_AT_LOGON","features":[591]},{"name":"TASK_EVENT_TRIGGER_AT_SYSTEMSTART","features":[591]},{"name":"TASK_EVENT_TRIGGER_ON_IDLE","features":[591]},{"name":"TASK_FEBRUARY","features":[591]},{"name":"TASK_FIRST_WEEK","features":[591]},{"name":"TASK_FLAG_DELETE_WHEN_DONE","features":[591]},{"name":"TASK_FLAG_DISABLED","features":[591]},{"name":"TASK_FLAG_DONT_START_IF_ON_BATTERIES","features":[591]},{"name":"TASK_FLAG_HIDDEN","features":[591]},{"name":"TASK_FLAG_INTERACTIVE","features":[591]},{"name":"TASK_FLAG_KILL_IF_GOING_ON_BATTERIES","features":[591]},{"name":"TASK_FLAG_KILL_ON_IDLE_END","features":[591]},{"name":"TASK_FLAG_RESTART_ON_IDLE_RESUME","features":[591]},{"name":"TASK_FLAG_RUN_IF_CONNECTED_TO_INTERNET","features":[591]},{"name":"TASK_FLAG_RUN_ONLY_IF_DOCKED","features":[591]},{"name":"TASK_FLAG_RUN_ONLY_IF_LOGGED_ON","features":[591]},{"name":"TASK_FLAG_START_ONLY_IF_IDLE","features":[591]},{"name":"TASK_FLAG_SYSTEM_REQUIRED","features":[591]},{"name":"TASK_FOURTH_WEEK","features":[591]},{"name":"TASK_FRIDAY","features":[591]},{"name":"TASK_IGNORE_REGISTRATION_TRIGGERS","features":[591]},{"name":"TASK_INSTANCES_IGNORE_NEW","features":[591]},{"name":"TASK_INSTANCES_PARALLEL","features":[591]},{"name":"TASK_INSTANCES_POLICY","features":[591]},{"name":"TASK_INSTANCES_QUEUE","features":[591]},{"name":"TASK_INSTANCES_STOP_EXISTING","features":[591]},{"name":"TASK_JANUARY","features":[591]},{"name":"TASK_JULY","features":[591]},{"name":"TASK_JUNE","features":[591]},{"name":"TASK_LAST_WEEK","features":[591]},{"name":"TASK_LOGON_GROUP","features":[591]},{"name":"TASK_LOGON_INTERACTIVE_TOKEN","features":[591]},{"name":"TASK_LOGON_INTERACTIVE_TOKEN_OR_PASSWORD","features":[591]},{"name":"TASK_LOGON_NONE","features":[591]},{"name":"TASK_LOGON_PASSWORD","features":[591]},{"name":"TASK_LOGON_S4U","features":[591]},{"name":"TASK_LOGON_SERVICE_ACCOUNT","features":[591]},{"name":"TASK_LOGON_TYPE","features":[591]},{"name":"TASK_MARCH","features":[591]},{"name":"TASK_MAX_RUN_TIMES","features":[591]},{"name":"TASK_MAY","features":[591]},{"name":"TASK_MONDAY","features":[591]},{"name":"TASK_NOVEMBER","features":[591]},{"name":"TASK_OCTOBER","features":[591]},{"name":"TASK_PROCESSTOKENSID_DEFAULT","features":[591]},{"name":"TASK_PROCESSTOKENSID_NONE","features":[591]},{"name":"TASK_PROCESSTOKENSID_TYPE","features":[591]},{"name":"TASK_PROCESSTOKENSID_UNRESTRICTED","features":[591]},{"name":"TASK_REMOTE_CONNECT","features":[591]},{"name":"TASK_REMOTE_DISCONNECT","features":[591]},{"name":"TASK_RUNLEVEL_HIGHEST","features":[591]},{"name":"TASK_RUNLEVEL_LUA","features":[591]},{"name":"TASK_RUNLEVEL_TYPE","features":[591]},{"name":"TASK_RUN_AS_SELF","features":[591]},{"name":"TASK_RUN_FLAGS","features":[591]},{"name":"TASK_RUN_IGNORE_CONSTRAINTS","features":[591]},{"name":"TASK_RUN_NO_FLAGS","features":[591]},{"name":"TASK_RUN_USER_SID","features":[591]},{"name":"TASK_RUN_USE_SESSION_ID","features":[591]},{"name":"TASK_SATURDAY","features":[591]},{"name":"TASK_SECOND_WEEK","features":[591]},{"name":"TASK_SEPTEMBER","features":[591]},{"name":"TASK_SESSION_LOCK","features":[591]},{"name":"TASK_SESSION_STATE_CHANGE_TYPE","features":[591]},{"name":"TASK_SESSION_UNLOCK","features":[591]},{"name":"TASK_STATE","features":[591]},{"name":"TASK_STATE_DISABLED","features":[591]},{"name":"TASK_STATE_QUEUED","features":[591]},{"name":"TASK_STATE_READY","features":[591]},{"name":"TASK_STATE_RUNNING","features":[591]},{"name":"TASK_STATE_UNKNOWN","features":[591]},{"name":"TASK_SUNDAY","features":[591]},{"name":"TASK_THIRD_WEEK","features":[591]},{"name":"TASK_THURSDAY","features":[591]},{"name":"TASK_TIME_TRIGGER_DAILY","features":[591]},{"name":"TASK_TIME_TRIGGER_MONTHLYDATE","features":[591]},{"name":"TASK_TIME_TRIGGER_MONTHLYDOW","features":[591]},{"name":"TASK_TIME_TRIGGER_ONCE","features":[591]},{"name":"TASK_TIME_TRIGGER_WEEKLY","features":[591]},{"name":"TASK_TRIGGER","features":[591]},{"name":"TASK_TRIGGER_BOOT","features":[591]},{"name":"TASK_TRIGGER_CUSTOM_TRIGGER_01","features":[591]},{"name":"TASK_TRIGGER_DAILY","features":[591]},{"name":"TASK_TRIGGER_EVENT","features":[591]},{"name":"TASK_TRIGGER_FLAG_DISABLED","features":[591]},{"name":"TASK_TRIGGER_FLAG_HAS_END_DATE","features":[591]},{"name":"TASK_TRIGGER_FLAG_KILL_AT_DURATION_END","features":[591]},{"name":"TASK_TRIGGER_IDLE","features":[591]},{"name":"TASK_TRIGGER_LOGON","features":[591]},{"name":"TASK_TRIGGER_MONTHLY","features":[591]},{"name":"TASK_TRIGGER_MONTHLYDOW","features":[591]},{"name":"TASK_TRIGGER_REGISTRATION","features":[591]},{"name":"TASK_TRIGGER_SESSION_STATE_CHANGE","features":[591]},{"name":"TASK_TRIGGER_TIME","features":[591]},{"name":"TASK_TRIGGER_TYPE","features":[591]},{"name":"TASK_TRIGGER_TYPE2","features":[591]},{"name":"TASK_TRIGGER_WEEKLY","features":[591]},{"name":"TASK_TUESDAY","features":[591]},{"name":"TASK_UPDATE","features":[591]},{"name":"TASK_VALIDATE_ONLY","features":[591]},{"name":"TASK_WEDNESDAY","features":[591]},{"name":"TRIGGER_TYPE_UNION","features":[591]},{"name":"TaskHandlerPS","features":[591]},{"name":"TaskHandlerStatusPS","features":[591]},{"name":"TaskScheduler","features":[591]},{"name":"WEEKLY","features":[591]}],"618":[{"name":"ABOVE_NORMAL_PRIORITY_CLASS","features":[340]},{"name":"ALL_PROCESSOR_GROUPS","features":[340]},{"name":"APC_CALLBACK_FUNCTION","features":[340]},{"name":"APP_MEMORY_INFORMATION","features":[340]},{"name":"AVRT_PRIORITY","features":[340]},{"name":"AVRT_PRIORITY_CRITICAL","features":[340]},{"name":"AVRT_PRIORITY_HIGH","features":[340]},{"name":"AVRT_PRIORITY_LOW","features":[340]},{"name":"AVRT_PRIORITY_NORMAL","features":[340]},{"name":"AVRT_PRIORITY_VERYLOW","features":[340]},{"name":"AcquireSRWLockExclusive","features":[340]},{"name":"AcquireSRWLockShared","features":[340]},{"name":"AddIntegrityLabelToBoundaryDescriptor","features":[305,308,340]},{"name":"AddSIDToBoundaryDescriptor","features":[305,308,340]},{"name":"AttachThreadInput","features":[305,340]},{"name":"AvQuerySystemResponsiveness","features":[305,340]},{"name":"AvRevertMmThreadCharacteristics","features":[305,340]},{"name":"AvRtCreateThreadOrderingGroup","features":[305,340]},{"name":"AvRtCreateThreadOrderingGroupExA","features":[305,340]},{"name":"AvRtCreateThreadOrderingGroupExW","features":[305,340]},{"name":"AvRtDeleteThreadOrderingGroup","features":[305,340]},{"name":"AvRtJoinThreadOrderingGroup","features":[305,340]},{"name":"AvRtLeaveThreadOrderingGroup","features":[305,340]},{"name":"AvRtWaitOnThreadOrderingGroup","features":[305,340]},{"name":"AvSetMmMaxThreadCharacteristicsA","features":[305,340]},{"name":"AvSetMmMaxThreadCharacteristicsW","features":[305,340]},{"name":"AvSetMmThreadCharacteristicsA","features":[305,340]},{"name":"AvSetMmThreadCharacteristicsW","features":[305,340]},{"name":"AvSetMmThreadPriority","features":[305,340]},{"name":"BELOW_NORMAL_PRIORITY_CLASS","features":[340]},{"name":"CONDITION_VARIABLE","features":[340]},{"name":"CONDITION_VARIABLE_INIT","features":[340]},{"name":"CONDITION_VARIABLE_LOCKMODE_SHARED","features":[340]},{"name":"CREATE_BREAKAWAY_FROM_JOB","features":[340]},{"name":"CREATE_DEFAULT_ERROR_MODE","features":[340]},{"name":"CREATE_EVENT","features":[340]},{"name":"CREATE_EVENT_INITIAL_SET","features":[340]},{"name":"CREATE_EVENT_MANUAL_RESET","features":[340]},{"name":"CREATE_FORCEDOS","features":[340]},{"name":"CREATE_IGNORE_SYSTEM_DEFAULT","features":[340]},{"name":"CREATE_MUTEX_INITIAL_OWNER","features":[340]},{"name":"CREATE_NEW_CONSOLE","features":[340]},{"name":"CREATE_NEW_PROCESS_GROUP","features":[340]},{"name":"CREATE_NO_WINDOW","features":[340]},{"name":"CREATE_PRESERVE_CODE_AUTHZ_LEVEL","features":[340]},{"name":"CREATE_PROCESS_LOGON_FLAGS","features":[340]},{"name":"CREATE_PROTECTED_PROCESS","features":[340]},{"name":"CREATE_SECURE_PROCESS","features":[340]},{"name":"CREATE_SEPARATE_WOW_VDM","features":[340]},{"name":"CREATE_SHARED_WOW_VDM","features":[340]},{"name":"CREATE_SUSPENDED","features":[340]},{"name":"CREATE_UNICODE_ENVIRONMENT","features":[340]},{"name":"CREATE_WAITABLE_TIMER_HIGH_RESOLUTION","features":[340]},{"name":"CREATE_WAITABLE_TIMER_MANUAL_RESET","features":[340]},{"name":"CRITICAL_SECTION","features":[305,311,340]},{"name":"CRITICAL_SECTION_DEBUG","features":[305,311,340]},{"name":"CallbackMayRunLong","features":[305,340]},{"name":"CancelThreadpoolIo","features":[340]},{"name":"CancelTimerQueueTimer","features":[305,340]},{"name":"CancelWaitableTimer","features":[305,340]},{"name":"ChangeTimerQueueTimer","features":[305,340]},{"name":"ClosePrivateNamespace","features":[305,340]},{"name":"CloseThreadpool","features":[340]},{"name":"CloseThreadpoolCleanupGroup","features":[340]},{"name":"CloseThreadpoolCleanupGroupMembers","features":[305,340]},{"name":"CloseThreadpoolIo","features":[340]},{"name":"CloseThreadpoolTimer","features":[340]},{"name":"CloseThreadpoolWait","features":[340]},{"name":"CloseThreadpoolWork","features":[340]},{"name":"ConvertFiberToThread","features":[305,340]},{"name":"ConvertThreadToFiber","features":[340]},{"name":"ConvertThreadToFiberEx","features":[340]},{"name":"CreateBoundaryDescriptorA","features":[305,340]},{"name":"CreateBoundaryDescriptorW","features":[305,340]},{"name":"CreateEventA","features":[305,308,340]},{"name":"CreateEventExA","features":[305,308,340]},{"name":"CreateEventExW","features":[305,308,340]},{"name":"CreateEventW","features":[305,308,340]},{"name":"CreateFiber","features":[340]},{"name":"CreateFiberEx","features":[340]},{"name":"CreateMutexA","features":[305,308,340]},{"name":"CreateMutexExA","features":[305,308,340]},{"name":"CreateMutexExW","features":[305,308,340]},{"name":"CreateMutexW","features":[305,308,340]},{"name":"CreatePrivateNamespaceA","features":[305,308,340]},{"name":"CreatePrivateNamespaceW","features":[305,308,340]},{"name":"CreateProcessA","features":[305,308,340]},{"name":"CreateProcessAsUserA","features":[305,308,340]},{"name":"CreateProcessAsUserW","features":[305,308,340]},{"name":"CreateProcessW","features":[305,308,340]},{"name":"CreateProcessWithLogonW","features":[305,340]},{"name":"CreateProcessWithTokenW","features":[305,340]},{"name":"CreateRemoteThread","features":[305,308,340]},{"name":"CreateRemoteThreadEx","features":[305,308,340]},{"name":"CreateSemaphoreA","features":[305,308,340]},{"name":"CreateSemaphoreExA","features":[305,308,340]},{"name":"CreateSemaphoreExW","features":[305,308,340]},{"name":"CreateSemaphoreW","features":[305,308,340]},{"name":"CreateThread","features":[305,308,340]},{"name":"CreateThreadpool","features":[340]},{"name":"CreateThreadpoolCleanupGroup","features":[340]},{"name":"CreateThreadpoolIo","features":[305,340]},{"name":"CreateThreadpoolTimer","features":[340]},{"name":"CreateThreadpoolWait","features":[340]},{"name":"CreateThreadpoolWork","features":[340]},{"name":"CreateTimerQueue","features":[305,340]},{"name":"CreateTimerQueueTimer","features":[305,340]},{"name":"CreateUmsCompletionList","features":[305,340]},{"name":"CreateUmsThreadContext","features":[305,340]},{"name":"CreateWaitableTimerA","features":[305,308,340]},{"name":"CreateWaitableTimerExA","features":[305,308,340]},{"name":"CreateWaitableTimerExW","features":[305,308,340]},{"name":"CreateWaitableTimerW","features":[305,308,340]},{"name":"DEBUG_ONLY_THIS_PROCESS","features":[340]},{"name":"DEBUG_PROCESS","features":[340]},{"name":"DETACHED_PROCESS","features":[340]},{"name":"DeleteBoundaryDescriptor","features":[305,340]},{"name":"DeleteCriticalSection","features":[305,311,340]},{"name":"DeleteFiber","features":[340]},{"name":"DeleteProcThreadAttributeList","features":[340]},{"name":"DeleteSynchronizationBarrier","features":[305,340]},{"name":"DeleteTimerQueue","features":[305,340]},{"name":"DeleteTimerQueueEx","features":[305,340]},{"name":"DeleteTimerQueueTimer","features":[305,340]},{"name":"DeleteUmsCompletionList","features":[305,340]},{"name":"DeleteUmsThreadContext","features":[305,340]},{"name":"DequeueUmsCompletionListItems","features":[305,340]},{"name":"DisassociateCurrentThreadFromCallback","features":[340]},{"name":"EVENT_ALL_ACCESS","features":[340]},{"name":"EVENT_MODIFY_STATE","features":[340]},{"name":"EXTENDED_STARTUPINFO_PRESENT","features":[340]},{"name":"EnterCriticalSection","features":[305,311,340]},{"name":"EnterSynchronizationBarrier","features":[305,340]},{"name":"EnterUmsSchedulingMode","features":[305,339,340]},{"name":"ExecuteUmsThread","features":[305,340]},{"name":"ExitProcess","features":[340]},{"name":"ExitThread","features":[340]},{"name":"FLS_OUT_OF_INDEXES","features":[340]},{"name":"FlsAlloc","features":[340]},{"name":"FlsFree","features":[305,340]},{"name":"FlsGetValue","features":[340]},{"name":"FlsSetValue","features":[305,340]},{"name":"FlushProcessWriteBuffers","features":[340]},{"name":"FreeLibraryWhenCallbackReturns","features":[305,340]},{"name":"GET_GUI_RESOURCES_FLAGS","features":[340]},{"name":"GR_GDIOBJECTS","features":[340]},{"name":"GR_GDIOBJECTS_PEAK","features":[340]},{"name":"GR_GLOBAL","features":[340]},{"name":"GR_USEROBJECTS","features":[340]},{"name":"GR_USEROBJECTS_PEAK","features":[340]},{"name":"GetActiveProcessorCount","features":[340]},{"name":"GetActiveProcessorGroupCount","features":[340]},{"name":"GetCurrentProcess","features":[305,340]},{"name":"GetCurrentProcessId","features":[340]},{"name":"GetCurrentProcessToken","features":[305,340]},{"name":"GetCurrentProcessorNumber","features":[340]},{"name":"GetCurrentProcessorNumberEx","features":[311,340]},{"name":"GetCurrentThread","features":[305,340]},{"name":"GetCurrentThreadEffectiveToken","features":[305,340]},{"name":"GetCurrentThreadId","features":[340]},{"name":"GetCurrentThreadStackLimits","features":[340]},{"name":"GetCurrentThreadToken","features":[305,340]},{"name":"GetCurrentUmsThread","features":[340]},{"name":"GetExitCodeProcess","features":[305,340]},{"name":"GetExitCodeThread","features":[305,340]},{"name":"GetGuiResources","features":[305,340]},{"name":"GetMachineTypeAttributes","features":[340]},{"name":"GetMaximumProcessorCount","features":[340]},{"name":"GetMaximumProcessorGroupCount","features":[340]},{"name":"GetNextUmsListItem","features":[340]},{"name":"GetNumaAvailableMemoryNode","features":[305,340]},{"name":"GetNumaAvailableMemoryNodeEx","features":[305,340]},{"name":"GetNumaHighestNodeNumber","features":[305,340]},{"name":"GetNumaNodeNumberFromHandle","features":[305,340]},{"name":"GetNumaNodeProcessorMask","features":[305,340]},{"name":"GetNumaNodeProcessorMask2","features":[305,336,340]},{"name":"GetNumaNodeProcessorMaskEx","features":[305,336,340]},{"name":"GetNumaProcessorNode","features":[305,340]},{"name":"GetNumaProcessorNodeEx","features":[305,311,340]},{"name":"GetNumaProximityNode","features":[305,340]},{"name":"GetNumaProximityNodeEx","features":[305,340]},{"name":"GetPriorityClass","features":[305,340]},{"name":"GetProcessAffinityMask","features":[305,340]},{"name":"GetProcessDEPPolicy","features":[305,340]},{"name":"GetProcessDefaultCpuSetMasks","features":[305,336,340]},{"name":"GetProcessDefaultCpuSets","features":[305,340]},{"name":"GetProcessGroupAffinity","features":[305,340]},{"name":"GetProcessHandleCount","features":[305,340]},{"name":"GetProcessHandleFromHwnd","features":[305,340]},{"name":"GetProcessId","features":[305,340]},{"name":"GetProcessIdOfThread","features":[305,340]},{"name":"GetProcessInformation","features":[305,340]},{"name":"GetProcessIoCounters","features":[305,340]},{"name":"GetProcessMitigationPolicy","features":[305,340]},{"name":"GetProcessPriorityBoost","features":[305,340]},{"name":"GetProcessShutdownParameters","features":[305,340]},{"name":"GetProcessTimes","features":[305,340]},{"name":"GetProcessVersion","features":[340]},{"name":"GetProcessWorkingSetSize","features":[305,340]},{"name":"GetStartupInfoA","features":[305,340]},{"name":"GetStartupInfoW","features":[305,340]},{"name":"GetSystemTimes","features":[305,340]},{"name":"GetThreadDescription","features":[305,340]},{"name":"GetThreadGroupAffinity","features":[305,336,340]},{"name":"GetThreadIOPendingFlag","features":[305,340]},{"name":"GetThreadId","features":[305,340]},{"name":"GetThreadIdealProcessorEx","features":[305,311,340]},{"name":"GetThreadInformation","features":[305,340]},{"name":"GetThreadPriority","features":[305,340]},{"name":"GetThreadPriorityBoost","features":[305,340]},{"name":"GetThreadSelectedCpuSetMasks","features":[305,336,340]},{"name":"GetThreadSelectedCpuSets","features":[305,340]},{"name":"GetThreadTimes","features":[305,340]},{"name":"GetUmsCompletionListEvent","features":[305,340]},{"name":"GetUmsSystemThreadInformation","features":[305,340]},{"name":"HIGH_PRIORITY_CLASS","features":[340]},{"name":"IDLE_PRIORITY_CLASS","features":[340]},{"name":"INFINITE","features":[340]},{"name":"INHERIT_CALLER_PRIORITY","features":[340]},{"name":"INHERIT_PARENT_AFFINITY","features":[340]},{"name":"INIT_ONCE","features":[340]},{"name":"INIT_ONCE_ASYNC","features":[340]},{"name":"INIT_ONCE_CHECK_ONLY","features":[340]},{"name":"INIT_ONCE_CTX_RESERVED_BITS","features":[340]},{"name":"INIT_ONCE_INIT_FAILED","features":[340]},{"name":"INIT_ONCE_STATIC_INIT","features":[340]},{"name":"IO_COUNTERS","features":[340]},{"name":"IRtwqAsyncCallback","features":[340]},{"name":"IRtwqAsyncResult","features":[340]},{"name":"IRtwqPlatformEvents","features":[340]},{"name":"InitOnceBeginInitialize","features":[305,340]},{"name":"InitOnceComplete","features":[305,340]},{"name":"InitOnceExecuteOnce","features":[305,340]},{"name":"InitOnceInitialize","features":[340]},{"name":"InitializeConditionVariable","features":[340]},{"name":"InitializeCriticalSection","features":[305,311,340]},{"name":"InitializeCriticalSectionAndSpinCount","features":[305,311,340]},{"name":"InitializeCriticalSectionEx","features":[305,311,340]},{"name":"InitializeProcThreadAttributeList","features":[305,340]},{"name":"InitializeSListHead","features":[311,340]},{"name":"InitializeSRWLock","features":[340]},{"name":"InitializeSynchronizationBarrier","features":[305,340]},{"name":"InterlockedFlushSList","features":[311,340]},{"name":"InterlockedPopEntrySList","features":[311,340]},{"name":"InterlockedPushEntrySList","features":[311,340]},{"name":"InterlockedPushListSListEx","features":[311,340]},{"name":"IsImmersiveProcess","features":[305,340]},{"name":"IsProcessCritical","features":[305,340]},{"name":"IsProcessorFeaturePresent","features":[305,340]},{"name":"IsThreadAFiber","features":[305,340]},{"name":"IsThreadpoolTimerSet","features":[305,340]},{"name":"IsWow64Process","features":[305,340]},{"name":"IsWow64Process2","features":[305,336,340]},{"name":"KernelEnabled","features":[340]},{"name":"LOGON_NETCREDENTIALS_ONLY","features":[340]},{"name":"LOGON_WITH_PROFILE","features":[340]},{"name":"LPFIBER_START_ROUTINE","features":[340]},{"name":"LPPROC_THREAD_ATTRIBUTE_LIST","features":[340]},{"name":"LPTHREAD_START_ROUTINE","features":[340]},{"name":"LeaveCriticalSection","features":[305,311,340]},{"name":"LeaveCriticalSectionWhenCallbackReturns","features":[305,311,340]},{"name":"MACHINE_ATTRIBUTES","features":[340]},{"name":"MEMORY_PRIORITY","features":[340]},{"name":"MEMORY_PRIORITY_BELOW_NORMAL","features":[340]},{"name":"MEMORY_PRIORITY_INFORMATION","features":[340]},{"name":"MEMORY_PRIORITY_LOW","features":[340]},{"name":"MEMORY_PRIORITY_MEDIUM","features":[340]},{"name":"MEMORY_PRIORITY_NORMAL","features":[340]},{"name":"MEMORY_PRIORITY_VERY_LOW","features":[340]},{"name":"MUTEX_ALL_ACCESS","features":[340]},{"name":"MUTEX_MODIFY_STATE","features":[340]},{"name":"MaxProcessMitigationPolicy","features":[340]},{"name":"NORMAL_PRIORITY_CLASS","features":[340]},{"name":"OVERRIDE_PREFETCH_PARAMETER","features":[340]},{"name":"OpenEventA","features":[305,340]},{"name":"OpenEventW","features":[305,340]},{"name":"OpenMutexW","features":[305,340]},{"name":"OpenPrivateNamespaceA","features":[305,340]},{"name":"OpenPrivateNamespaceW","features":[305,340]},{"name":"OpenProcess","features":[305,340]},{"name":"OpenProcessToken","features":[305,308,340]},{"name":"OpenSemaphoreW","features":[305,340]},{"name":"OpenThread","features":[305,340]},{"name":"OpenThreadToken","features":[305,308,340]},{"name":"OpenWaitableTimerA","features":[305,340]},{"name":"OpenWaitableTimerW","features":[305,340]},{"name":"PEB","features":[305,311,340]},{"name":"PEB_LDR_DATA","features":[311,340]},{"name":"PFLS_CALLBACK_FUNCTION","features":[340]},{"name":"PF_3DNOW_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ALPHA_BYTE_INSTRUCTIONS","features":[340]},{"name":"PF_ARM_64BIT_LOADSTORE_ATOMIC","features":[340]},{"name":"PF_ARM_DIVIDE_INSTRUCTION_AVAILABLE","features":[340]},{"name":"PF_ARM_EXTERNAL_CACHE_AVAILABLE","features":[340]},{"name":"PF_ARM_FMAC_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_NEON_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_V81_ATOMIC_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_V82_DP_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_V83_LRCPC_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_V8_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_ARM_VFP_32_REGISTERS_AVAILABLE","features":[340]},{"name":"PF_AVX2_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_AVX512F_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_AVX_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_CHANNELS_ENABLED","features":[340]},{"name":"PF_COMPARE64_EXCHANGE128","features":[340]},{"name":"PF_COMPARE_EXCHANGE128","features":[340]},{"name":"PF_COMPARE_EXCHANGE_DOUBLE","features":[340]},{"name":"PF_ERMS_AVAILABLE","features":[340]},{"name":"PF_FASTFAIL_AVAILABLE","features":[340]},{"name":"PF_FLOATING_POINT_EMULATED","features":[340]},{"name":"PF_FLOATING_POINT_PRECISION_ERRATA","features":[340]},{"name":"PF_MMX_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_MONITORX_INSTRUCTION_AVAILABLE","features":[340]},{"name":"PF_NX_ENABLED","features":[340]},{"name":"PF_PAE_ENABLED","features":[340]},{"name":"PF_PPC_MOVEMEM_64BIT_OK","features":[340]},{"name":"PF_RDPID_INSTRUCTION_AVAILABLE","features":[340]},{"name":"PF_RDRAND_INSTRUCTION_AVAILABLE","features":[340]},{"name":"PF_RDTSCP_INSTRUCTION_AVAILABLE","features":[340]},{"name":"PF_RDTSC_INSTRUCTION_AVAILABLE","features":[340]},{"name":"PF_RDWRFSGSBASE_AVAILABLE","features":[340]},{"name":"PF_SECOND_LEVEL_ADDRESS_TRANSLATION","features":[340]},{"name":"PF_SSE3_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_SSE4_1_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_SSE4_2_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_SSE_DAZ_MODE_AVAILABLE","features":[340]},{"name":"PF_SSSE3_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_VIRT_FIRMWARE_ENABLED","features":[340]},{"name":"PF_XMMI64_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_XMMI_INSTRUCTIONS_AVAILABLE","features":[340]},{"name":"PF_XSAVE_ENABLED","features":[340]},{"name":"PINIT_ONCE_FN","features":[305,340]},{"name":"PMETypeFailFastOnCommitFailure","features":[340]},{"name":"PMETypeMax","features":[340]},{"name":"PME_CURRENT_VERSION","features":[340]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_DISABLE","features":[340]},{"name":"PME_FAILFAST_ON_COMMIT_FAIL_ENABLE","features":[340]},{"name":"POWER_REQUEST_CONTEXT_DETAILED_STRING","features":[340]},{"name":"POWER_REQUEST_CONTEXT_FLAGS","features":[340]},{"name":"POWER_REQUEST_CONTEXT_SIMPLE_STRING","features":[340]},{"name":"PPS_POST_PROCESS_INIT_ROUTINE","features":[340]},{"name":"PRIVATE_NAMESPACE_FLAG_DESTROY","features":[340]},{"name":"PROCESSOR_FEATURE_ID","features":[340]},{"name":"PROCESS_ACCESS_RIGHTS","features":[340]},{"name":"PROCESS_AFFINITY_AUTO_UPDATE_FLAGS","features":[340]},{"name":"PROCESS_AFFINITY_DISABLE_AUTO_UPDATE","features":[340]},{"name":"PROCESS_AFFINITY_ENABLE_AUTO_UPDATE","features":[340]},{"name":"PROCESS_ALL_ACCESS","features":[340]},{"name":"PROCESS_BASIC_INFORMATION","features":[305,311,340]},{"name":"PROCESS_CREATE_PROCESS","features":[340]},{"name":"PROCESS_CREATE_THREAD","features":[340]},{"name":"PROCESS_CREATION_FLAGS","features":[340]},{"name":"PROCESS_DELETE","features":[340]},{"name":"PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION","features":[340]},{"name":"PROCESS_DEP_ENABLE","features":[340]},{"name":"PROCESS_DEP_FLAGS","features":[340]},{"name":"PROCESS_DEP_NONE","features":[340]},{"name":"PROCESS_DUP_HANDLE","features":[340]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGET","features":[340]},{"name":"PROCESS_DYNAMIC_EH_CONTINUATION_TARGETS_INFORMATION","features":[340]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGE","features":[340]},{"name":"PROCESS_DYNAMIC_ENFORCED_ADDRESS_RANGES_INFORMATION","features":[340]},{"name":"PROCESS_INFORMATION","features":[305,340]},{"name":"PROCESS_INFORMATION_CLASS","features":[340]},{"name":"PROCESS_LEAP_SECOND_INFO","features":[340]},{"name":"PROCESS_LEAP_SECOND_INFO_FLAG_ENABLE_SIXTY_SECOND","features":[340]},{"name":"PROCESS_LEAP_SECOND_INFO_VALID_FLAGS","features":[340]},{"name":"PROCESS_MACHINE_INFORMATION","features":[336,340]},{"name":"PROCESS_MEMORY_EXHAUSTION_INFO","features":[340]},{"name":"PROCESS_MEMORY_EXHAUSTION_TYPE","features":[340]},{"name":"PROCESS_MITIGATION_POLICY","features":[340]},{"name":"PROCESS_MODE_BACKGROUND_BEGIN","features":[340]},{"name":"PROCESS_MODE_BACKGROUND_END","features":[340]},{"name":"PROCESS_NAME_FORMAT","features":[340]},{"name":"PROCESS_NAME_NATIVE","features":[340]},{"name":"PROCESS_NAME_WIN32","features":[340]},{"name":"PROCESS_POWER_THROTTLING_CURRENT_VERSION","features":[340]},{"name":"PROCESS_POWER_THROTTLING_EXECUTION_SPEED","features":[340]},{"name":"PROCESS_POWER_THROTTLING_IGNORE_TIMER_RESOLUTION","features":[340]},{"name":"PROCESS_POWER_THROTTLING_STATE","features":[340]},{"name":"PROCESS_PROTECTION_LEVEL","features":[340]},{"name":"PROCESS_PROTECTION_LEVEL_INFORMATION","features":[340]},{"name":"PROCESS_QUERY_INFORMATION","features":[340]},{"name":"PROCESS_QUERY_LIMITED_INFORMATION","features":[340]},{"name":"PROCESS_READ_CONTROL","features":[340]},{"name":"PROCESS_SET_INFORMATION","features":[340]},{"name":"PROCESS_SET_LIMITED_INFORMATION","features":[340]},{"name":"PROCESS_SET_QUOTA","features":[340]},{"name":"PROCESS_SET_SESSIONID","features":[340]},{"name":"PROCESS_STANDARD_RIGHTS_REQUIRED","features":[340]},{"name":"PROCESS_SUSPEND_RESUME","features":[340]},{"name":"PROCESS_SYNCHRONIZE","features":[340]},{"name":"PROCESS_TERMINATE","features":[340]},{"name":"PROCESS_VM_OPERATION","features":[340]},{"name":"PROCESS_VM_READ","features":[340]},{"name":"PROCESS_VM_WRITE","features":[340]},{"name":"PROCESS_WRITE_DAC","features":[340]},{"name":"PROCESS_WRITE_OWNER","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_ALL_APPLICATION_PACKAGES_POLICY","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_CHILD_PROCESS_POLICY","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_COMPONENT_FILTER","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_DESKTOP_APP_POLICY","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_ENABLE_OPTIONAL_XSTATE_FEATURES","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_GROUP_AFFINITY","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_HANDLE_LIST","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_IDEAL_PROCESSOR","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_JOB_LIST","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_MACHINE_TYPE","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_AUDIT_POLICY","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_MITIGATION_POLICY","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_NUM","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_PARENT_PROCESS","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_PREFERRED_NODE","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_PROTECTION_LEVEL","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_REPLACE_VALUE","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_SECURITY_CAPABILITIES","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_UMS_THREAD","features":[340]},{"name":"PROC_THREAD_ATTRIBUTE_WIN32K_FILTER","features":[340]},{"name":"PROFILE_KERNEL","features":[340]},{"name":"PROFILE_SERVER","features":[340]},{"name":"PROFILE_USER","features":[340]},{"name":"PROTECTION_LEVEL_ANTIMALWARE_LIGHT","features":[340]},{"name":"PROTECTION_LEVEL_AUTHENTICODE","features":[340]},{"name":"PROTECTION_LEVEL_CODEGEN_LIGHT","features":[340]},{"name":"PROTECTION_LEVEL_LSA_LIGHT","features":[340]},{"name":"PROTECTION_LEVEL_NONE","features":[340]},{"name":"PROTECTION_LEVEL_PPL_APP","features":[340]},{"name":"PROTECTION_LEVEL_WINDOWS","features":[340]},{"name":"PROTECTION_LEVEL_WINDOWS_LIGHT","features":[340]},{"name":"PROTECTION_LEVEL_WINTCB","features":[340]},{"name":"PROTECTION_LEVEL_WINTCB_LIGHT","features":[340]},{"name":"PRTL_UMS_SCHEDULER_ENTRY_POINT","features":[339,340]},{"name":"PTIMERAPCROUTINE","features":[340]},{"name":"PTP_CALLBACK_INSTANCE","features":[340]},{"name":"PTP_CLEANUP_GROUP","features":[340]},{"name":"PTP_CLEANUP_GROUP_CANCEL_CALLBACK","features":[340]},{"name":"PTP_IO","features":[340]},{"name":"PTP_POOL","features":[340]},{"name":"PTP_SIMPLE_CALLBACK","features":[340]},{"name":"PTP_TIMER","features":[340]},{"name":"PTP_TIMER_CALLBACK","features":[340]},{"name":"PTP_WAIT","features":[340]},{"name":"PTP_WAIT_CALLBACK","features":[340]},{"name":"PTP_WIN32_IO_CALLBACK","features":[340]},{"name":"PTP_WORK","features":[340]},{"name":"PTP_WORK_CALLBACK","features":[340]},{"name":"ProcThreadAttributeAllApplicationPackagesPolicy","features":[340]},{"name":"ProcThreadAttributeChildProcessPolicy","features":[340]},{"name":"ProcThreadAttributeComponentFilter","features":[340]},{"name":"ProcThreadAttributeDesktopAppPolicy","features":[340]},{"name":"ProcThreadAttributeEnableOptionalXStateFeatures","features":[340]},{"name":"ProcThreadAttributeGroupAffinity","features":[340]},{"name":"ProcThreadAttributeHandleList","features":[340]},{"name":"ProcThreadAttributeIdealProcessor","features":[340]},{"name":"ProcThreadAttributeJobList","features":[340]},{"name":"ProcThreadAttributeMachineType","features":[340]},{"name":"ProcThreadAttributeMitigationAuditPolicy","features":[340]},{"name":"ProcThreadAttributeMitigationPolicy","features":[340]},{"name":"ProcThreadAttributeParentProcess","features":[340]},{"name":"ProcThreadAttributePreferredNode","features":[340]},{"name":"ProcThreadAttributeProtectionLevel","features":[340]},{"name":"ProcThreadAttributePseudoConsole","features":[340]},{"name":"ProcThreadAttributeSafeOpenPromptOriginClaim","features":[340]},{"name":"ProcThreadAttributeSecurityCapabilities","features":[340]},{"name":"ProcThreadAttributeTrustedApp","features":[340]},{"name":"ProcThreadAttributeUmsThread","features":[340]},{"name":"ProcThreadAttributeWin32kFilter","features":[340]},{"name":"ProcessASLRPolicy","features":[340]},{"name":"ProcessActivationContextTrustPolicy","features":[340]},{"name":"ProcessAppMemoryInfo","features":[340]},{"name":"ProcessChildProcessPolicy","features":[340]},{"name":"ProcessControlFlowGuardPolicy","features":[340]},{"name":"ProcessDEPPolicy","features":[340]},{"name":"ProcessDynamicCodePolicy","features":[340]},{"name":"ProcessExtensionPointDisablePolicy","features":[340]},{"name":"ProcessFontDisablePolicy","features":[340]},{"name":"ProcessImageLoadPolicy","features":[340]},{"name":"ProcessInPrivateInfo","features":[340]},{"name":"ProcessInformationClassMax","features":[340]},{"name":"ProcessLeapSecondInfo","features":[340]},{"name":"ProcessMachineTypeInfo","features":[340]},{"name":"ProcessMaxOverridePrefetchParameter","features":[340]},{"name":"ProcessMemoryExhaustionInfo","features":[340]},{"name":"ProcessMemoryPriority","features":[340]},{"name":"ProcessMitigationOptionsMask","features":[340]},{"name":"ProcessOverrideSubsequentPrefetchParameter","features":[340]},{"name":"ProcessPayloadRestrictionPolicy","features":[340]},{"name":"ProcessPowerThrottling","features":[340]},{"name":"ProcessProtectionLevelInfo","features":[340]},{"name":"ProcessRedirectionTrustPolicy","features":[340]},{"name":"ProcessReservedValue1","features":[340]},{"name":"ProcessSEHOPPolicy","features":[340]},{"name":"ProcessSideChannelIsolationPolicy","features":[340]},{"name":"ProcessSignaturePolicy","features":[340]},{"name":"ProcessStrictHandleCheckPolicy","features":[340]},{"name":"ProcessSystemCallDisablePolicy","features":[340]},{"name":"ProcessSystemCallFilterPolicy","features":[340]},{"name":"ProcessTelemetryCoverageInfo","features":[340]},{"name":"ProcessUserPointerAuthPolicy","features":[340]},{"name":"ProcessUserShadowStackPolicy","features":[340]},{"name":"PulseEvent","features":[305,340]},{"name":"QUEUE_USER_APC_CALLBACK_DATA_CONTEXT","features":[340]},{"name":"QUEUE_USER_APC_FLAGS","features":[340]},{"name":"QUEUE_USER_APC_FLAGS_NONE","features":[340]},{"name":"QUEUE_USER_APC_FLAGS_SPECIAL_USER_APC","features":[340]},{"name":"QueryDepthSList","features":[311,340]},{"name":"QueryFullProcessImageNameA","features":[305,340]},{"name":"QueryFullProcessImageNameW","features":[305,340]},{"name":"QueryProcessAffinityUpdateMode","features":[305,340]},{"name":"QueryProtectedPolicy","features":[305,340]},{"name":"QueryThreadpoolStackInformation","features":[305,340]},{"name":"QueryUmsThreadInformation","features":[305,340]},{"name":"QueueUserAPC","features":[305,340]},{"name":"QueueUserAPC2","features":[305,340]},{"name":"QueueUserWorkItem","features":[305,340]},{"name":"REALTIME_PRIORITY_CLASS","features":[340]},{"name":"REASON_CONTEXT","features":[305,340]},{"name":"RTL_CRITICAL_SECTION_ALL_FLAG_BITS","features":[340]},{"name":"RTL_CRITICAL_SECTION_DEBUG_FLAG_STATIC_INIT","features":[340]},{"name":"RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN","features":[340]},{"name":"RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO","features":[340]},{"name":"RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO","features":[340]},{"name":"RTL_CRITICAL_SECTION_FLAG_RESOURCE_TYPE","features":[340]},{"name":"RTL_CRITICAL_SECTION_FLAG_STATIC_INIT","features":[340]},{"name":"RTL_USER_PROCESS_PARAMETERS","features":[305,340]},{"name":"RTWQASYNCRESULT","features":[340]},{"name":"RTWQPERIODICCALLBACK","features":[340]},{"name":"RTWQ_MULTITHREADED_WORKQUEUE","features":[340]},{"name":"RTWQ_STANDARD_WORKQUEUE","features":[340]},{"name":"RTWQ_WINDOW_WORKQUEUE","features":[340]},{"name":"RTWQ_WORKQUEUE_TYPE","features":[340]},{"name":"RegisterWaitForSingleObject","features":[305,340]},{"name":"ReleaseMutex","features":[305,340]},{"name":"ReleaseMutexWhenCallbackReturns","features":[305,340]},{"name":"ReleaseSRWLockExclusive","features":[340]},{"name":"ReleaseSRWLockShared","features":[340]},{"name":"ReleaseSemaphore","features":[305,340]},{"name":"ReleaseSemaphoreWhenCallbackReturns","features":[305,340]},{"name":"ResetEvent","features":[305,340]},{"name":"ResumeThread","features":[305,340]},{"name":"RtwqAddPeriodicCallback","features":[340]},{"name":"RtwqAllocateSerialWorkQueue","features":[340]},{"name":"RtwqAllocateWorkQueue","features":[340]},{"name":"RtwqBeginRegisterWorkQueueWithMMCSS","features":[340]},{"name":"RtwqBeginUnregisterWorkQueueWithMMCSS","features":[340]},{"name":"RtwqCancelDeadline","features":[305,340]},{"name":"RtwqCancelWorkItem","features":[340]},{"name":"RtwqCreateAsyncResult","features":[340]},{"name":"RtwqEndRegisterWorkQueueWithMMCSS","features":[340]},{"name":"RtwqGetWorkQueueMMCSSClass","features":[340]},{"name":"RtwqGetWorkQueueMMCSSPriority","features":[340]},{"name":"RtwqGetWorkQueueMMCSSTaskId","features":[340]},{"name":"RtwqInvokeCallback","features":[340]},{"name":"RtwqJoinWorkQueue","features":[305,340]},{"name":"RtwqLockPlatform","features":[340]},{"name":"RtwqLockSharedWorkQueue","features":[340]},{"name":"RtwqLockWorkQueue","features":[340]},{"name":"RtwqPutWaitingWorkItem","features":[305,340]},{"name":"RtwqPutWorkItem","features":[340]},{"name":"RtwqRegisterPlatformEvents","features":[340]},{"name":"RtwqRegisterPlatformWithMMCSS","features":[340]},{"name":"RtwqRemovePeriodicCallback","features":[340]},{"name":"RtwqScheduleWorkItem","features":[340]},{"name":"RtwqSetDeadline","features":[305,340]},{"name":"RtwqSetDeadline2","features":[305,340]},{"name":"RtwqSetLongRunning","features":[305,340]},{"name":"RtwqShutdown","features":[340]},{"name":"RtwqStartup","features":[340]},{"name":"RtwqUnjoinWorkQueue","features":[305,340]},{"name":"RtwqUnlockPlatform","features":[340]},{"name":"RtwqUnlockWorkQueue","features":[340]},{"name":"RtwqUnregisterPlatformEvents","features":[340]},{"name":"RtwqUnregisterPlatformFromMMCSS","features":[340]},{"name":"SEMAPHORE_ALL_ACCESS","features":[340]},{"name":"SEMAPHORE_MODIFY_STATE","features":[340]},{"name":"SRWLOCK","features":[340]},{"name":"SRWLOCK_INIT","features":[340]},{"name":"STACK_SIZE_PARAM_IS_A_RESERVATION","features":[340]},{"name":"STARTF_FORCEOFFFEEDBACK","features":[340]},{"name":"STARTF_FORCEONFEEDBACK","features":[340]},{"name":"STARTF_PREVENTPINNING","features":[340]},{"name":"STARTF_RUNFULLSCREEN","features":[340]},{"name":"STARTF_TITLEISAPPID","features":[340]},{"name":"STARTF_TITLEISLINKNAME","features":[340]},{"name":"STARTF_UNTRUSTEDSOURCE","features":[340]},{"name":"STARTF_USECOUNTCHARS","features":[340]},{"name":"STARTF_USEFILLATTRIBUTE","features":[340]},{"name":"STARTF_USEHOTKEY","features":[340]},{"name":"STARTF_USEPOSITION","features":[340]},{"name":"STARTF_USESHOWWINDOW","features":[340]},{"name":"STARTF_USESIZE","features":[340]},{"name":"STARTF_USESTDHANDLES","features":[340]},{"name":"STARTUPINFOA","features":[305,340]},{"name":"STARTUPINFOEXA","features":[305,340]},{"name":"STARTUPINFOEXW","features":[305,340]},{"name":"STARTUPINFOW","features":[305,340]},{"name":"STARTUPINFOW_FLAGS","features":[340]},{"name":"SYNCHRONIZATION_ACCESS_RIGHTS","features":[340]},{"name":"SYNCHRONIZATION_BARRIER","features":[340]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_BLOCK_ONLY","features":[340]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_NO_DELETE","features":[340]},{"name":"SYNCHRONIZATION_BARRIER_FLAGS_SPIN_ONLY","features":[340]},{"name":"SYNCHRONIZATION_DELETE","features":[340]},{"name":"SYNCHRONIZATION_READ_CONTROL","features":[340]},{"name":"SYNCHRONIZATION_SYNCHRONIZE","features":[340]},{"name":"SYNCHRONIZATION_WRITE_DAC","features":[340]},{"name":"SYNCHRONIZATION_WRITE_OWNER","features":[340]},{"name":"SetCriticalSectionSpinCount","features":[305,311,340]},{"name":"SetEvent","features":[305,340]},{"name":"SetEventWhenCallbackReturns","features":[305,340]},{"name":"SetPriorityClass","features":[305,340]},{"name":"SetProcessAffinityMask","features":[305,340]},{"name":"SetProcessAffinityUpdateMode","features":[305,340]},{"name":"SetProcessDEPPolicy","features":[305,340]},{"name":"SetProcessDefaultCpuSetMasks","features":[305,336,340]},{"name":"SetProcessDefaultCpuSets","features":[305,340]},{"name":"SetProcessDynamicEHContinuationTargets","features":[305,340]},{"name":"SetProcessDynamicEnforcedCetCompatibleRanges","features":[305,340]},{"name":"SetProcessInformation","features":[305,340]},{"name":"SetProcessMitigationPolicy","features":[305,340]},{"name":"SetProcessPriorityBoost","features":[305,340]},{"name":"SetProcessRestrictionExemption","features":[305,340]},{"name":"SetProcessShutdownParameters","features":[305,340]},{"name":"SetProcessWorkingSetSize","features":[305,340]},{"name":"SetProtectedPolicy","features":[305,340]},{"name":"SetThreadAffinityMask","features":[305,340]},{"name":"SetThreadDescription","features":[305,340]},{"name":"SetThreadGroupAffinity","features":[305,336,340]},{"name":"SetThreadIdealProcessor","features":[305,340]},{"name":"SetThreadIdealProcessorEx","features":[305,311,340]},{"name":"SetThreadInformation","features":[305,340]},{"name":"SetThreadPriority","features":[305,340]},{"name":"SetThreadPriorityBoost","features":[305,340]},{"name":"SetThreadSelectedCpuSetMasks","features":[305,336,340]},{"name":"SetThreadSelectedCpuSets","features":[305,340]},{"name":"SetThreadStackGuarantee","features":[305,340]},{"name":"SetThreadToken","features":[305,340]},{"name":"SetThreadpoolStackInformation","features":[305,340]},{"name":"SetThreadpoolThreadMaximum","features":[340]},{"name":"SetThreadpoolThreadMinimum","features":[305,340]},{"name":"SetThreadpoolTimer","features":[305,340]},{"name":"SetThreadpoolTimerEx","features":[305,340]},{"name":"SetThreadpoolWait","features":[305,340]},{"name":"SetThreadpoolWaitEx","features":[305,340]},{"name":"SetTimerQueueTimer","features":[305,340]},{"name":"SetUmsThreadInformation","features":[305,340]},{"name":"SetWaitableTimer","features":[305,340]},{"name":"SetWaitableTimerEx","features":[305,340]},{"name":"SignalObjectAndWait","features":[305,340]},{"name":"Sleep","features":[340]},{"name":"SleepConditionVariableCS","features":[305,311,340]},{"name":"SleepConditionVariableSRW","features":[305,340]},{"name":"SleepEx","features":[305,340]},{"name":"StartThreadpoolIo","features":[340]},{"name":"SubmitThreadpoolWork","features":[340]},{"name":"SuspendThread","features":[305,340]},{"name":"SwitchToFiber","features":[340]},{"name":"SwitchToThread","features":[305,340]},{"name":"TEB","features":[305,311,340]},{"name":"THREAD_ACCESS_RIGHTS","features":[340]},{"name":"THREAD_ALL_ACCESS","features":[340]},{"name":"THREAD_CREATE_RUN_IMMEDIATELY","features":[340]},{"name":"THREAD_CREATE_SUSPENDED","features":[340]},{"name":"THREAD_CREATION_FLAGS","features":[340]},{"name":"THREAD_DELETE","features":[340]},{"name":"THREAD_DIRECT_IMPERSONATION","features":[340]},{"name":"THREAD_GET_CONTEXT","features":[340]},{"name":"THREAD_IMPERSONATE","features":[340]},{"name":"THREAD_INFORMATION_CLASS","features":[340]},{"name":"THREAD_MODE_BACKGROUND_BEGIN","features":[340]},{"name":"THREAD_MODE_BACKGROUND_END","features":[340]},{"name":"THREAD_POWER_THROTTLING_CURRENT_VERSION","features":[340]},{"name":"THREAD_POWER_THROTTLING_EXECUTION_SPEED","features":[340]},{"name":"THREAD_POWER_THROTTLING_STATE","features":[340]},{"name":"THREAD_POWER_THROTTLING_VALID_FLAGS","features":[340]},{"name":"THREAD_PRIORITY","features":[340]},{"name":"THREAD_PRIORITY_ABOVE_NORMAL","features":[340]},{"name":"THREAD_PRIORITY_BELOW_NORMAL","features":[340]},{"name":"THREAD_PRIORITY_HIGHEST","features":[340]},{"name":"THREAD_PRIORITY_IDLE","features":[340]},{"name":"THREAD_PRIORITY_LOWEST","features":[340]},{"name":"THREAD_PRIORITY_MIN","features":[340]},{"name":"THREAD_PRIORITY_NORMAL","features":[340]},{"name":"THREAD_PRIORITY_TIME_CRITICAL","features":[340]},{"name":"THREAD_QUERY_INFORMATION","features":[340]},{"name":"THREAD_QUERY_LIMITED_INFORMATION","features":[340]},{"name":"THREAD_READ_CONTROL","features":[340]},{"name":"THREAD_RESUME","features":[340]},{"name":"THREAD_SET_CONTEXT","features":[340]},{"name":"THREAD_SET_INFORMATION","features":[340]},{"name":"THREAD_SET_LIMITED_INFORMATION","features":[340]},{"name":"THREAD_SET_THREAD_TOKEN","features":[340]},{"name":"THREAD_STANDARD_RIGHTS_REQUIRED","features":[340]},{"name":"THREAD_SUSPEND_RESUME","features":[340]},{"name":"THREAD_SYNCHRONIZE","features":[340]},{"name":"THREAD_TERMINATE","features":[340]},{"name":"THREAD_WRITE_DAC","features":[340]},{"name":"THREAD_WRITE_OWNER","features":[340]},{"name":"TIMER_ALL_ACCESS","features":[340]},{"name":"TIMER_MODIFY_STATE","features":[340]},{"name":"TIMER_QUERY_STATE","features":[340]},{"name":"TLS_OUT_OF_INDEXES","features":[340]},{"name":"TP_CALLBACK_ENVIRON_V3","features":[340]},{"name":"TP_CALLBACK_PRIORITY","features":[340]},{"name":"TP_CALLBACK_PRIORITY_COUNT","features":[340]},{"name":"TP_CALLBACK_PRIORITY_HIGH","features":[340]},{"name":"TP_CALLBACK_PRIORITY_INVALID","features":[340]},{"name":"TP_CALLBACK_PRIORITY_LOW","features":[340]},{"name":"TP_CALLBACK_PRIORITY_NORMAL","features":[340]},{"name":"TP_POOL_STACK_INFORMATION","features":[340]},{"name":"TerminateProcess","features":[305,340]},{"name":"TerminateThread","features":[305,340]},{"name":"ThreadAbsoluteCpuPriority","features":[340]},{"name":"ThreadDynamicCodePolicy","features":[340]},{"name":"ThreadInformationClassMax","features":[340]},{"name":"ThreadMemoryPriority","features":[340]},{"name":"ThreadPowerThrottling","features":[340]},{"name":"TlsAlloc","features":[340]},{"name":"TlsFree","features":[305,340]},{"name":"TlsGetValue","features":[340]},{"name":"TlsSetValue","features":[305,340]},{"name":"TryAcquireSRWLockExclusive","features":[305,340]},{"name":"TryAcquireSRWLockShared","features":[305,340]},{"name":"TryEnterCriticalSection","features":[305,311,340]},{"name":"TrySubmitThreadpoolCallback","features":[305,340]},{"name":"UMS_SCHEDULER_STARTUP_INFO","features":[339,340]},{"name":"UMS_SYSTEM_THREAD_INFORMATION","features":[340]},{"name":"UMS_THREAD_INFO_CLASS","features":[340]},{"name":"UmsThreadAffinity","features":[340]},{"name":"UmsThreadInvalidInfoClass","features":[340]},{"name":"UmsThreadIsSuspended","features":[340]},{"name":"UmsThreadIsTerminated","features":[340]},{"name":"UmsThreadMaxInfoClass","features":[340]},{"name":"UmsThreadPriority","features":[340]},{"name":"UmsThreadTeb","features":[340]},{"name":"UmsThreadUserContext","features":[340]},{"name":"UmsThreadYield","features":[305,340]},{"name":"UnregisterWait","features":[305,340]},{"name":"UnregisterWaitEx","features":[305,340]},{"name":"UpdateProcThreadAttribute","features":[305,340]},{"name":"UserEnabled","features":[340]},{"name":"WAITORTIMERCALLBACK","features":[305,340]},{"name":"WORKERCALLBACKFUNC","features":[340]},{"name":"WORKER_THREAD_FLAGS","features":[340]},{"name":"WT_EXECUTEDEFAULT","features":[340]},{"name":"WT_EXECUTEINIOTHREAD","features":[340]},{"name":"WT_EXECUTEINPERSISTENTTHREAD","features":[340]},{"name":"WT_EXECUTEINTIMERTHREAD","features":[340]},{"name":"WT_EXECUTEINWAITTHREAD","features":[340]},{"name":"WT_EXECUTELONGFUNCTION","features":[340]},{"name":"WT_EXECUTEONLYONCE","features":[340]},{"name":"WT_TRANSFER_IMPERSONATION","features":[340]},{"name":"WaitForInputIdle","features":[305,340]},{"name":"WaitForMultipleObjects","features":[305,340]},{"name":"WaitForMultipleObjectsEx","features":[305,340]},{"name":"WaitForSingleObject","features":[305,340]},{"name":"WaitForSingleObjectEx","features":[305,340]},{"name":"WaitForThreadpoolIoCallbacks","features":[305,340]},{"name":"WaitForThreadpoolTimerCallbacks","features":[305,340]},{"name":"WaitForThreadpoolWaitCallbacks","features":[305,340]},{"name":"WaitForThreadpoolWorkCallbacks","features":[305,340]},{"name":"WaitOnAddress","features":[305,340]},{"name":"WakeAllConditionVariable","features":[340]},{"name":"WakeByAddressAll","features":[340]},{"name":"WakeByAddressSingle","features":[340]},{"name":"WakeConditionVariable","features":[340]},{"name":"WinExec","features":[340]},{"name":"Wow64Container","features":[340]},{"name":"Wow64SetThreadDefaultGuestMachine","features":[340]},{"name":"Wow64SuspendThread","features":[305,340]}],"619":[{"name":"DYNAMIC_TIME_ZONE_INFORMATION","features":[305,543]},{"name":"EnumDynamicTimeZoneInformation","features":[305,543]},{"name":"FileTimeToSystemTime","features":[305,543]},{"name":"GetDynamicTimeZoneInformation","features":[305,543]},{"name":"GetDynamicTimeZoneInformationEffectiveYears","features":[305,543]},{"name":"GetTimeZoneInformation","features":[305,543]},{"name":"GetTimeZoneInformationForYear","features":[305,543]},{"name":"LocalFileTimeToLocalSystemTime","features":[305,543]},{"name":"LocalSystemTimeToLocalFileTime","features":[305,543]},{"name":"SetDynamicTimeZoneInformation","features":[305,543]},{"name":"SetTimeZoneInformation","features":[305,543]},{"name":"SystemTimeToFileTime","features":[305,543]},{"name":"SystemTimeToTzSpecificLocalTime","features":[305,543]},{"name":"SystemTimeToTzSpecificLocalTimeEx","features":[305,543]},{"name":"TIME_ZONE_ID_INVALID","features":[543]},{"name":"TIME_ZONE_INFORMATION","features":[305,543]},{"name":"TSF_Authenticated","features":[543]},{"name":"TSF_Hardware","features":[543]},{"name":"TSF_IPv6","features":[543]},{"name":"TSF_SignatureAuthenticated","features":[543]},{"name":"TzSpecificLocalTimeToSystemTime","features":[305,543]},{"name":"TzSpecificLocalTimeToSystemTimeEx","features":[305,543]},{"name":"wszW32TimeRegKeyPolicyTimeProviders","features":[543]},{"name":"wszW32TimeRegKeyTimeProviders","features":[543]},{"name":"wszW32TimeRegValueDllName","features":[543]},{"name":"wszW32TimeRegValueEnabled","features":[543]},{"name":"wszW32TimeRegValueInputProvider","features":[543]},{"name":"wszW32TimeRegValueMetaDataProvider","features":[543]}],"620":[{"name":"GetDeviceID","features":[305,592]},{"name":"GetDeviceIDString","features":[305,592]},{"name":"TBS_COMMAND_LOCALITY","features":[592]},{"name":"TBS_COMMAND_LOCALITY_FOUR","features":[592]},{"name":"TBS_COMMAND_LOCALITY_ONE","features":[592]},{"name":"TBS_COMMAND_LOCALITY_THREE","features":[592]},{"name":"TBS_COMMAND_LOCALITY_TWO","features":[592]},{"name":"TBS_COMMAND_LOCALITY_ZERO","features":[592]},{"name":"TBS_COMMAND_PRIORITY","features":[592]},{"name":"TBS_COMMAND_PRIORITY_HIGH","features":[592]},{"name":"TBS_COMMAND_PRIORITY_LOW","features":[592]},{"name":"TBS_COMMAND_PRIORITY_MAX","features":[592]},{"name":"TBS_COMMAND_PRIORITY_NORMAL","features":[592]},{"name":"TBS_COMMAND_PRIORITY_SYSTEM","features":[592]},{"name":"TBS_CONTEXT_PARAMS","features":[592]},{"name":"TBS_CONTEXT_PARAMS2","features":[592]},{"name":"TBS_CONTEXT_VERSION_ONE","features":[592]},{"name":"TBS_CONTEXT_VERSION_TWO","features":[592]},{"name":"TBS_OWNERAUTH_TYPE_ADMIN","features":[592]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT","features":[592]},{"name":"TBS_OWNERAUTH_TYPE_ENDORSEMENT_20","features":[592]},{"name":"TBS_OWNERAUTH_TYPE_FULL","features":[592]},{"name":"TBS_OWNERAUTH_TYPE_STORAGE_20","features":[592]},{"name":"TBS_OWNERAUTH_TYPE_USER","features":[592]},{"name":"TBS_SUCCESS","features":[592]},{"name":"TBS_TCGLOG_DRTM_BOOT","features":[592]},{"name":"TBS_TCGLOG_DRTM_CURRENT","features":[592]},{"name":"TBS_TCGLOG_DRTM_RESUME","features":[592]},{"name":"TBS_TCGLOG_SRTM_BOOT","features":[592]},{"name":"TBS_TCGLOG_SRTM_CURRENT","features":[592]},{"name":"TBS_TCGLOG_SRTM_RESUME","features":[592]},{"name":"TPM_DEVICE_INFO","features":[592]},{"name":"TPM_IFTYPE_1","features":[592]},{"name":"TPM_IFTYPE_EMULATOR","features":[592]},{"name":"TPM_IFTYPE_HW","features":[592]},{"name":"TPM_IFTYPE_SPB","features":[592]},{"name":"TPM_IFTYPE_TRUSTZONE","features":[592]},{"name":"TPM_IFTYPE_UNKNOWN","features":[592]},{"name":"TPM_VERSION_12","features":[592]},{"name":"TPM_VERSION_20","features":[592]},{"name":"TPM_VERSION_UNKNOWN","features":[592]},{"name":"TPM_WNF_INFO_CLEAR_SUCCESSFUL","features":[592]},{"name":"TPM_WNF_INFO_NO_REBOOT_REQUIRED","features":[592]},{"name":"TPM_WNF_INFO_OWNERSHIP_SUCCESSFUL","features":[592]},{"name":"TPM_WNF_PROVISIONING","features":[592]},{"name":"Tbsi_Context_Create","features":[592]},{"name":"Tbsi_Create_Windows_Key","features":[592]},{"name":"Tbsi_GetDeviceInfo","features":[592]},{"name":"Tbsi_Get_OwnerAuth","features":[592]},{"name":"Tbsi_Get_TCG_Log","features":[592]},{"name":"Tbsi_Get_TCG_Log_Ex","features":[592]},{"name":"Tbsi_Is_Tpm_Present","features":[305,592]},{"name":"Tbsi_Physical_Presence_Command","features":[592]},{"name":"Tbsi_Revoke_Attestation","features":[592]},{"name":"Tbsip_Cancel_Commands","features":[592]},{"name":"Tbsip_Context_Close","features":[592]},{"name":"Tbsip_Submit_Command","features":[592]}],"621":[{"name":"Catalog","features":[593]},{"name":"CatalogCollection","features":[593]},{"name":"CatalogObject","features":[593]},{"name":"ComponentUtil","features":[593]},{"name":"ICatalog","features":[356,593]},{"name":"IComponentUtil","features":[356,593]},{"name":"IPackageUtil","features":[356,593]},{"name":"IRemoteComponentUtil","features":[356,593]},{"name":"IRoleAssociationUtil","features":[356,593]},{"name":"MTSAdminErrorCodes","features":[593]},{"name":"MTSPackageExportOptions","features":[593]},{"name":"MTSPackageInstallOptions","features":[593]},{"name":"PackageUtil","features":[593]},{"name":"RemoteComponentUtil","features":[593]},{"name":"RoleAssociationUtil","features":[593]},{"name":"mtsErrAlreadyInstalled","features":[593]},{"name":"mtsErrAuthenticationLevel","features":[593]},{"name":"mtsErrBadForward","features":[593]},{"name":"mtsErrBadIID","features":[593]},{"name":"mtsErrBadPath","features":[593]},{"name":"mtsErrBadRegistryLibID","features":[593]},{"name":"mtsErrBadRegistryProgID","features":[593]},{"name":"mtsErrCLSIDOrIIDMismatch","features":[593]},{"name":"mtsErrCantCopyFile","features":[593]},{"name":"mtsErrCoReqCompInstalled","features":[593]},{"name":"mtsErrCompFileBadTLB","features":[593]},{"name":"mtsErrCompFileClassNotAvail","features":[593]},{"name":"mtsErrCompFileDoesNotExist","features":[593]},{"name":"mtsErrCompFileGetClassObj","features":[593]},{"name":"mtsErrCompFileLoadDLLFail","features":[593]},{"name":"mtsErrCompFileNoRegistrar","features":[593]},{"name":"mtsErrCompFileNotInstallable","features":[593]},{"name":"mtsErrDllLoadFailed","features":[593]},{"name":"mtsErrDllRegisterServer","features":[593]},{"name":"mtsErrDownloadFailed","features":[593]},{"name":"mtsErrInvalidUserids","features":[593]},{"name":"mtsErrKeyMissing","features":[593]},{"name":"mtsErrNoAccessToUNC","features":[593]},{"name":"mtsErrNoRegistryCLSID","features":[593]},{"name":"mtsErrNoRegistryRead","features":[593]},{"name":"mtsErrNoRegistryRepair","features":[593]},{"name":"mtsErrNoRegistryWrite","features":[593]},{"name":"mtsErrNoServerShare","features":[593]},{"name":"mtsErrNoTypeLib","features":[593]},{"name":"mtsErrNoUser","features":[593]},{"name":"mtsErrNotChangeable","features":[593]},{"name":"mtsErrNotDeletable","features":[593]},{"name":"mtsErrObjectErrors","features":[593]},{"name":"mtsErrObjectInvalid","features":[593]},{"name":"mtsErrPDFReadFail","features":[593]},{"name":"mtsErrPDFVersion","features":[593]},{"name":"mtsErrPDFWriteFail","features":[593]},{"name":"mtsErrPackDirNotFound","features":[593]},{"name":"mtsErrPackageExists","features":[593]},{"name":"mtsErrRegistrarFailed","features":[593]},{"name":"mtsErrRemoteInterface","features":[593]},{"name":"mtsErrRoleExists","features":[593]},{"name":"mtsErrSession","features":[593]},{"name":"mtsErrTreatAs","features":[593]},{"name":"mtsErrUserPasswdNotValid","features":[593]},{"name":"mtsExportUsers","features":[593]},{"name":"mtsInstallUsers","features":[593]}],"622":[{"name":"AddServiceFlag","features":[594]},{"name":"AutoDownloadMode","features":[594]},{"name":"AutoSelectionMode","features":[594]},{"name":"AutomaticUpdates","features":[594]},{"name":"AutomaticUpdatesNotificationLevel","features":[594]},{"name":"AutomaticUpdatesPermissionType","features":[594]},{"name":"AutomaticUpdatesScheduledInstallationDay","features":[594]},{"name":"AutomaticUpdatesUserType","features":[594]},{"name":"DeploymentAction","features":[594]},{"name":"DownloadPhase","features":[594]},{"name":"DownloadPriority","features":[594]},{"name":"IAutomaticUpdates","features":[356,594]},{"name":"IAutomaticUpdates2","features":[356,594]},{"name":"IAutomaticUpdatesResults","features":[356,594]},{"name":"IAutomaticUpdatesSettings","features":[356,594]},{"name":"IAutomaticUpdatesSettings2","features":[356,594]},{"name":"IAutomaticUpdatesSettings3","features":[356,594]},{"name":"ICategory","features":[356,594]},{"name":"ICategoryCollection","features":[356,594]},{"name":"IDownloadCompletedCallback","features":[594]},{"name":"IDownloadCompletedCallbackArgs","features":[356,594]},{"name":"IDownloadJob","features":[356,594]},{"name":"IDownloadProgress","features":[356,594]},{"name":"IDownloadProgressChangedCallback","features":[594]},{"name":"IDownloadProgressChangedCallbackArgs","features":[356,594]},{"name":"IDownloadResult","features":[356,594]},{"name":"IImageInformation","features":[356,594]},{"name":"IInstallationAgent","features":[356,594]},{"name":"IInstallationBehavior","features":[356,594]},{"name":"IInstallationCompletedCallback","features":[594]},{"name":"IInstallationCompletedCallbackArgs","features":[356,594]},{"name":"IInstallationJob","features":[356,594]},{"name":"IInstallationProgress","features":[356,594]},{"name":"IInstallationProgressChangedCallback","features":[594]},{"name":"IInstallationProgressChangedCallbackArgs","features":[356,594]},{"name":"IInstallationResult","features":[356,594]},{"name":"IInvalidProductLicenseException","features":[356,594]},{"name":"ISearchCompletedCallback","features":[594]},{"name":"ISearchCompletedCallbackArgs","features":[356,594]},{"name":"ISearchJob","features":[356,594]},{"name":"ISearchResult","features":[356,594]},{"name":"IStringCollection","features":[356,594]},{"name":"ISystemInformation","features":[356,594]},{"name":"IUpdate","features":[356,594]},{"name":"IUpdate2","features":[356,594]},{"name":"IUpdate3","features":[356,594]},{"name":"IUpdate4","features":[356,594]},{"name":"IUpdate5","features":[356,594]},{"name":"IUpdateCollection","features":[356,594]},{"name":"IUpdateDownloadContent","features":[356,594]},{"name":"IUpdateDownloadContent2","features":[356,594]},{"name":"IUpdateDownloadContentCollection","features":[356,594]},{"name":"IUpdateDownloadResult","features":[356,594]},{"name":"IUpdateDownloader","features":[356,594]},{"name":"IUpdateException","features":[356,594]},{"name":"IUpdateExceptionCollection","features":[356,594]},{"name":"IUpdateHistoryEntry","features":[356,594]},{"name":"IUpdateHistoryEntry2","features":[356,594]},{"name":"IUpdateHistoryEntryCollection","features":[356,594]},{"name":"IUpdateIdentity","features":[356,594]},{"name":"IUpdateInstallationResult","features":[356,594]},{"name":"IUpdateInstaller","features":[356,594]},{"name":"IUpdateInstaller2","features":[356,594]},{"name":"IUpdateInstaller3","features":[356,594]},{"name":"IUpdateInstaller4","features":[356,594]},{"name":"IUpdateLockdown","features":[594]},{"name":"IUpdateSearcher","features":[356,594]},{"name":"IUpdateSearcher2","features":[356,594]},{"name":"IUpdateSearcher3","features":[356,594]},{"name":"IUpdateService","features":[356,594]},{"name":"IUpdateService2","features":[356,594]},{"name":"IUpdateServiceCollection","features":[356,594]},{"name":"IUpdateServiceManager","features":[356,594]},{"name":"IUpdateServiceManager2","features":[356,594]},{"name":"IUpdateServiceRegistration","features":[356,594]},{"name":"IUpdateSession","features":[356,594]},{"name":"IUpdateSession2","features":[356,594]},{"name":"IUpdateSession3","features":[356,594]},{"name":"IWebProxy","features":[356,594]},{"name":"IWindowsDriverUpdate","features":[356,594]},{"name":"IWindowsDriverUpdate2","features":[356,594]},{"name":"IWindowsDriverUpdate3","features":[356,594]},{"name":"IWindowsDriverUpdate4","features":[356,594]},{"name":"IWindowsDriverUpdate5","features":[356,594]},{"name":"IWindowsDriverUpdateEntry","features":[356,594]},{"name":"IWindowsDriverUpdateEntryCollection","features":[356,594]},{"name":"IWindowsUpdateAgentInfo","features":[356,594]},{"name":"InstallationAgent","features":[594]},{"name":"InstallationImpact","features":[594]},{"name":"InstallationRebootBehavior","features":[594]},{"name":"LIBID_WUApiLib","features":[594]},{"name":"OperationResultCode","features":[594]},{"name":"SearchScope","features":[594]},{"name":"ServerSelection","features":[594]},{"name":"StringCollection","features":[594]},{"name":"SystemInformation","features":[594]},{"name":"UPDATE_LOCKDOWN_WEBSITE_ACCESS","features":[594]},{"name":"UpdateCollection","features":[594]},{"name":"UpdateDownloader","features":[594]},{"name":"UpdateExceptionContext","features":[594]},{"name":"UpdateInstaller","features":[594]},{"name":"UpdateLockdownOption","features":[594]},{"name":"UpdateOperation","features":[594]},{"name":"UpdateSearcher","features":[594]},{"name":"UpdateServiceManager","features":[594]},{"name":"UpdateServiceOption","features":[594]},{"name":"UpdateServiceRegistrationState","features":[594]},{"name":"UpdateSession","features":[594]},{"name":"UpdateType","features":[594]},{"name":"WU_E_ALL_UPDATES_FAILED","features":[594]},{"name":"WU_E_AUCLIENT_UNEXPECTED","features":[594]},{"name":"WU_E_AU_CALL_CANCELLED","features":[594]},{"name":"WU_E_AU_DETECT_SVCID_MISMATCH","features":[594]},{"name":"WU_E_AU_LEGACYCLIENTDISABLED","features":[594]},{"name":"WU_E_AU_NONLEGACYSERVER","features":[594]},{"name":"WU_E_AU_NOSERVICE","features":[594]},{"name":"WU_E_AU_NO_REGISTERED_SERVICE","features":[594]},{"name":"WU_E_AU_OOBE_IN_PROGRESS","features":[594]},{"name":"WU_E_AU_PAUSED","features":[594]},{"name":"WU_E_AU_UNEXPECTED","features":[594]},{"name":"WU_E_BAD_FILE_URL","features":[594]},{"name":"WU_E_BAD_XML_HARDWARECAPABILITY","features":[594]},{"name":"WU_E_BIN_SOURCE_ABSENT","features":[594]},{"name":"WU_E_CALLBACK_COOKIE_NOT_FOUND","features":[594]},{"name":"WU_E_CALL_CANCELLED","features":[594]},{"name":"WU_E_CALL_CANCELLED_BY_HIDE","features":[594]},{"name":"WU_E_CALL_CANCELLED_BY_INTERACTIVE_SEARCH","features":[594]},{"name":"WU_E_CALL_CANCELLED_BY_INVALID","features":[594]},{"name":"WU_E_CALL_CANCELLED_BY_POLICY","features":[594]},{"name":"WU_E_COULDNOTCANCEL","features":[594]},{"name":"WU_E_CYCLE_DETECTED","features":[594]},{"name":"WU_E_DM_BG_ERROR_TOKEN_REQUIRED","features":[594]},{"name":"WU_E_DM_BITSTRANSFERERROR","features":[594]},{"name":"WU_E_DM_CONTENTCHANGED","features":[594]},{"name":"WU_E_DM_DOSVC_REQUIRED","features":[594]},{"name":"WU_E_DM_DOWNLOADFILEMISSING","features":[594]},{"name":"WU_E_DM_DOWNLOADFILEPATHUNKNOWN","features":[594]},{"name":"WU_E_DM_DOWNLOADLIMITEDBYUPDATESIZE","features":[594]},{"name":"WU_E_DM_DOWNLOADLOCATIONCHANGED","features":[594]},{"name":"WU_E_DM_DOWNLOADSANDBOXNOTFOUND","features":[594]},{"name":"WU_E_DM_DOWNLOAD_VOLUME_CONFLICT","features":[594]},{"name":"WU_E_DM_FAILTOCONNECTTOBITS","features":[594]},{"name":"WU_E_DM_FALLINGBACKTOBITS","features":[594]},{"name":"WU_E_DM_HARDRESERVEID_CONFLICT","features":[594]},{"name":"WU_E_DM_INCORRECTFILEHASH","features":[594]},{"name":"WU_E_DM_NEEDDOWNLOADREQUEST","features":[594]},{"name":"WU_E_DM_NONETWORK","features":[594]},{"name":"WU_E_DM_NOTDOWNLOADED","features":[594]},{"name":"WU_E_DM_READRANGEFAILED","features":[594]},{"name":"WU_E_DM_SANDBOX_HASH_MISMATCH","features":[594]},{"name":"WU_E_DM_UNAUTHORIZED","features":[594]},{"name":"WU_E_DM_UNAUTHORIZED_DOMAIN_USER","features":[594]},{"name":"WU_E_DM_UNAUTHORIZED_LOCAL_USER","features":[594]},{"name":"WU_E_DM_UNAUTHORIZED_MSA_USER","features":[594]},{"name":"WU_E_DM_UNAUTHORIZED_NO_USER","features":[594]},{"name":"WU_E_DM_UNEXPECTED","features":[594]},{"name":"WU_E_DM_UNKNOWNALGORITHM","features":[594]},{"name":"WU_E_DM_UPDATEREMOVED","features":[594]},{"name":"WU_E_DM_URLNOTAVAILABLE","features":[594]},{"name":"WU_E_DM_WRONGBITSVERSION","features":[594]},{"name":"WU_E_DOWNLOAD_FAILED","features":[594]},{"name":"WU_E_DRV_DEVICE_PROBLEM","features":[594]},{"name":"WU_E_DRV_MISSING_ATTRIBUTE","features":[594]},{"name":"WU_E_DRV_NOPROP_OR_LEGACY","features":[594]},{"name":"WU_E_DRV_NO_METADATA","features":[594]},{"name":"WU_E_DRV_NO_PRINTER_CONTENT","features":[594]},{"name":"WU_E_DRV_PRUNED","features":[594]},{"name":"WU_E_DRV_REG_MISMATCH","features":[594]},{"name":"WU_E_DRV_SYNC_FAILED","features":[594]},{"name":"WU_E_DRV_UNEXPECTED","features":[594]},{"name":"WU_E_DS_BADVERSION","features":[594]},{"name":"WU_E_DS_CANNOTREGISTER","features":[594]},{"name":"WU_E_DS_CANTDELETE","features":[594]},{"name":"WU_E_DS_DATANOTAVAILABLE","features":[594]},{"name":"WU_E_DS_DATANOTLOADED","features":[594]},{"name":"WU_E_DS_DECLINENOTALLOWED","features":[594]},{"name":"WU_E_DS_DUPLICATEUPDATEID","features":[594]},{"name":"WU_E_DS_IMPERSONATED","features":[594]},{"name":"WU_E_DS_INUSE","features":[594]},{"name":"WU_E_DS_INVALID","features":[594]},{"name":"WU_E_DS_INVALIDOPERATION","features":[594]},{"name":"WU_E_DS_INVALIDTABLENAME","features":[594]},{"name":"WU_E_DS_LOCKTIMEOUTEXPIRED","features":[594]},{"name":"WU_E_DS_MISSINGDATA","features":[594]},{"name":"WU_E_DS_MISSINGREF","features":[594]},{"name":"WU_E_DS_NEEDWINDOWSSERVICE","features":[594]},{"name":"WU_E_DS_NOCATEGORIES","features":[594]},{"name":"WU_E_DS_NODATA","features":[594]},{"name":"WU_E_DS_NODATA_CCR","features":[594]},{"name":"WU_E_DS_NODATA_COOKIE","features":[594]},{"name":"WU_E_DS_NODATA_DOWNLOADJOB","features":[594]},{"name":"WU_E_DS_NODATA_EULA","features":[594]},{"name":"WU_E_DS_NODATA_FILE","features":[594]},{"name":"WU_E_DS_NODATA_NOSUCHREVISION","features":[594]},{"name":"WU_E_DS_NODATA_NOSUCHUPDATE","features":[594]},{"name":"WU_E_DS_NODATA_SERVICE","features":[594]},{"name":"WU_E_DS_NODATA_TIMER","features":[594]},{"name":"WU_E_DS_NODATA_TMI","features":[594]},{"name":"WU_E_DS_RESETREQUIRED","features":[594]},{"name":"WU_E_DS_ROWEXISTS","features":[594]},{"name":"WU_E_DS_SCHEMAMISMATCH","features":[594]},{"name":"WU_E_DS_SERVICEEXPIRED","features":[594]},{"name":"WU_E_DS_SESSIONLOCKMISMATCH","features":[594]},{"name":"WU_E_DS_SHUTDOWN","features":[594]},{"name":"WU_E_DS_STOREFILELOCKED","features":[594]},{"name":"WU_E_DS_TABLEINCORRECT","features":[594]},{"name":"WU_E_DS_TABLEMISSING","features":[594]},{"name":"WU_E_DS_TABLESESSIONMISMATCH","features":[594]},{"name":"WU_E_DS_UNABLETOSTART","features":[594]},{"name":"WU_E_DS_UNEXPECTED","features":[594]},{"name":"WU_E_DS_UNKNOWNHANDLER","features":[594]},{"name":"WU_E_DS_UNKNOWNSERVICE","features":[594]},{"name":"WU_E_DUPLICATE_ITEM","features":[594]},{"name":"WU_E_EE_CLUSTER_ERROR","features":[594]},{"name":"WU_E_EE_INVALID_ATTRIBUTEDATA","features":[594]},{"name":"WU_E_EE_INVALID_EXPRESSION","features":[594]},{"name":"WU_E_EE_INVALID_VERSION","features":[594]},{"name":"WU_E_EE_MISSING_METADATA","features":[594]},{"name":"WU_E_EE_NOT_INITIALIZED","features":[594]},{"name":"WU_E_EE_UNEXPECTED","features":[594]},{"name":"WU_E_EE_UNKNOWN_EXPRESSION","features":[594]},{"name":"WU_E_EULAS_DECLINED","features":[594]},{"name":"WU_E_EULA_UNAVAILABLE","features":[594]},{"name":"WU_E_EXCLUSIVE_INSTALL_CONFLICT","features":[594]},{"name":"WU_E_EXTENDEDERROR_FAILED","features":[594]},{"name":"WU_E_EXTENDEDERROR_NOTSET","features":[594]},{"name":"WU_E_FILETRUST_DUALSIGNATURE_ECC","features":[594]},{"name":"WU_E_FILETRUST_DUALSIGNATURE_RSA","features":[594]},{"name":"WU_E_FILETRUST_SHA2SIGNATURE_MISSING","features":[594]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_DISCOVERY","features":[594]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_DOWNLOAD","features":[594]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_INSTALL","features":[594]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_OTHER","features":[594]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_SEARCH","features":[594]},{"name":"WU_E_IDLESHUTDOWN_OPCOUNT_SERVICEREGISTRATION","features":[594]},{"name":"WU_E_INFRASTRUCTUREFILE_INVALID_FORMAT","features":[594]},{"name":"WU_E_INFRASTRUCTUREFILE_REQUIRES_SSL","features":[594]},{"name":"WU_E_INSTALLATION_RESULTS_INVALID_DATA","features":[594]},{"name":"WU_E_INSTALLATION_RESULTS_NOT_FOUND","features":[594]},{"name":"WU_E_INSTALLATION_RESULTS_UNKNOWN_VERSION","features":[594]},{"name":"WU_E_INSTALL_JOB_NOT_SUSPENDED","features":[594]},{"name":"WU_E_INSTALL_JOB_RESUME_NOT_ALLOWED","features":[594]},{"name":"WU_E_INSTALL_NOT_ALLOWED","features":[594]},{"name":"WU_E_INSTALL_USERCONTEXT_ACCESSDENIED","features":[594]},{"name":"WU_E_INTERACTIVE_CALL_CANCELLED","features":[594]},{"name":"WU_E_INVALIDINDEX","features":[594]},{"name":"WU_E_INVALID_CRITERIA","features":[594]},{"name":"WU_E_INVALID_EVENT","features":[594]},{"name":"WU_E_INVALID_EVENT_PAYLOAD","features":[594]},{"name":"WU_E_INVALID_EVENT_PAYLOADSIZE","features":[594]},{"name":"WU_E_INVALID_FILE","features":[594]},{"name":"WU_E_INVALID_INSTALL_REQUESTED","features":[594]},{"name":"WU_E_INVALID_NOTIFICATION_INFO","features":[594]},{"name":"WU_E_INVALID_OPERATION","features":[594]},{"name":"WU_E_INVALID_PRODUCT_LICENSE","features":[594]},{"name":"WU_E_INVALID_PROXY_SERVER","features":[594]},{"name":"WU_E_INVALID_RELATIONSHIP","features":[594]},{"name":"WU_E_INVALID_SERIALIZATION_VERSION","features":[594]},{"name":"WU_E_INVALID_UPDATE","features":[594]},{"name":"WU_E_INVALID_UPDATE_TYPE","features":[594]},{"name":"WU_E_INVALID_VOLUMEID","features":[594]},{"name":"WU_E_INVENTORY_GET_INVENTORY_TYPE_FAILED","features":[594]},{"name":"WU_E_INVENTORY_PARSEFAILED","features":[594]},{"name":"WU_E_INVENTORY_RESULT_UPLOAD_FAILED","features":[594]},{"name":"WU_E_INVENTORY_UNEXPECTED","features":[594]},{"name":"WU_E_INVENTORY_WMI_ERROR","features":[594]},{"name":"WU_E_ITEMNOTFOUND","features":[594]},{"name":"WU_E_LEGACYSERVER","features":[594]},{"name":"WU_E_LOW_BATTERY","features":[594]},{"name":"WU_E_MAX_CAPACITY_REACHED","features":[594]},{"name":"WU_E_METADATATRUST_CERTIFICATECHAIN_VERIFICATION","features":[594]},{"name":"WU_E_METADATATRUST_UNTRUSTED_CERTIFICATECHAIN","features":[594]},{"name":"WU_E_METADATA_BAD_FRAGMENTSIGNING_CONFIG","features":[594]},{"name":"WU_E_METADATA_BAD_SIGNATURE","features":[594]},{"name":"WU_E_METADATA_CERT_MISSING","features":[594]},{"name":"WU_E_METADATA_CERT_UNTRUSTED","features":[594]},{"name":"WU_E_METADATA_CONFIG_INVALID_BINARY_ENCODING","features":[594]},{"name":"WU_E_METADATA_FAILURE_PROCESSING_FRAGMENTSIGNING_CONFIG","features":[594]},{"name":"WU_E_METADATA_FETCH_CONFIG","features":[594]},{"name":"WU_E_METADATA_INTCERT_BAD_TRANSPORT_ENCODING","features":[594]},{"name":"WU_E_METADATA_INVALID_PARAMETER","features":[594]},{"name":"WU_E_METADATA_LEAFCERT_BAD_TRANSPORT_ENCODING","features":[594]},{"name":"WU_E_METADATA_NOOP","features":[594]},{"name":"WU_E_METADATA_NO_VERIFICATION_DATA","features":[594]},{"name":"WU_E_METADATA_SIGNATURE_VERIFY_FAILED","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_ALL_BAD","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_CACHELOOKUP","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_CERTCHAIN","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_MISSING","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_NODATA","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_REFRESHONLINE","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_SIGNATURE","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_UNEXPECTED","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_UNTRUSTED","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_VALIDITYWINDOW_UNEXPECTED","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_VALIDITY_WINDOW","features":[594]},{"name":"WU_E_METADATA_TIMESTAMP_TOKEN_VERIFICATION_FAILED","features":[594]},{"name":"WU_E_METADATA_UNEXPECTED","features":[594]},{"name":"WU_E_METADATA_UNSUPPORTED_HASH_ALG","features":[594]},{"name":"WU_E_METADATA_XML_BASE64CERDATA_MISSING","features":[594]},{"name":"WU_E_METADATA_XML_FRAGMENTSIGNING_MISSING","features":[594]},{"name":"WU_E_METADATA_XML_INTERMEDIATECERT_MISSING","features":[594]},{"name":"WU_E_METADATA_XML_LEAFCERT_ID_MISSING","features":[594]},{"name":"WU_E_METADATA_XML_LEAFCERT_MISSING","features":[594]},{"name":"WU_E_METADATA_XML_MISSING","features":[594]},{"name":"WU_E_METADATA_XML_MODE_INVALID","features":[594]},{"name":"WU_E_METADATA_XML_MODE_MISSING","features":[594]},{"name":"WU_E_METADATA_XML_VALIDITY_INVALID","features":[594]},{"name":"WU_E_MISSING_HANDLER","features":[594]},{"name":"WU_E_MSI_NOT_CONFIGURED","features":[594]},{"name":"WU_E_MSI_NOT_PRESENT","features":[594]},{"name":"WU_E_MSI_WRONG_APP_CONTEXT","features":[594]},{"name":"WU_E_MSI_WRONG_VERSION","features":[594]},{"name":"WU_E_MSP_DISABLED","features":[594]},{"name":"WU_E_MSP_UNEXPECTED","features":[594]},{"name":"WU_E_NETWORK_COST_EXCEEDS_POLICY","features":[594]},{"name":"WU_E_NON_UI_MODE","features":[594]},{"name":"WU_E_NOOP","features":[594]},{"name":"WU_E_NOT_APPLICABLE","features":[594]},{"name":"WU_E_NOT_INITIALIZED","features":[594]},{"name":"WU_E_NOT_SUPPORTED","features":[594]},{"name":"WU_E_NO_CONNECTION","features":[594]},{"name":"WU_E_NO_INTERACTIVE_USER","features":[594]},{"name":"WU_E_NO_SERVER_CORE_SUPPORT","features":[594]},{"name":"WU_E_NO_SERVICE","features":[594]},{"name":"WU_E_NO_SUCH_HANDLER_PLUGIN","features":[594]},{"name":"WU_E_NO_UI_SUPPORT","features":[594]},{"name":"WU_E_NO_UPDATE","features":[594]},{"name":"WU_E_NO_USERTOKEN","features":[594]},{"name":"WU_E_OL_INVALID_SCANFILE","features":[594]},{"name":"WU_E_OL_NEWCLIENT_REQUIRED","features":[594]},{"name":"WU_E_OL_UNEXPECTED","features":[594]},{"name":"WU_E_OPERATIONINPROGRESS","features":[594]},{"name":"WU_E_ORPHANED_DOWNLOAD_JOB","features":[594]},{"name":"WU_E_OUTOFRANGE","features":[594]},{"name":"WU_E_PER_MACHINE_UPDATE_ACCESS_DENIED","features":[594]},{"name":"WU_E_POLICY_NOT_SET","features":[594]},{"name":"WU_E_PT_ADDRESS_IN_USE","features":[594]},{"name":"WU_E_PT_ADDRESS_NOT_AVAILABLE","features":[594]},{"name":"WU_E_PT_CATALOG_SYNC_REQUIRED","features":[594]},{"name":"WU_E_PT_CONFIG_PROP_MISSING","features":[594]},{"name":"WU_E_PT_DATA_BOUNDARY_RESTRICTED","features":[594]},{"name":"WU_E_PT_DOUBLE_INITIALIZATION","features":[594]},{"name":"WU_E_PT_ECP_FAILURE_TO_DECOMPRESS_CAB_FILE","features":[594]},{"name":"WU_E_PT_ECP_FAILURE_TO_EXTRACT_DIGEST","features":[594]},{"name":"WU_E_PT_ECP_FILE_LOCATION_ERROR","features":[594]},{"name":"WU_E_PT_ECP_INIT_FAILED","features":[594]},{"name":"WU_E_PT_ECP_INVALID_FILE_FORMAT","features":[594]},{"name":"WU_E_PT_ECP_INVALID_METADATA","features":[594]},{"name":"WU_E_PT_ECP_SUCCEEDED_WITH_ERRORS","features":[594]},{"name":"WU_E_PT_ENDPOINTURL_NOTAVAIL","features":[594]},{"name":"WU_E_PT_ENDPOINT_DISCONNECTED","features":[594]},{"name":"WU_E_PT_ENDPOINT_REFRESH_REQUIRED","features":[594]},{"name":"WU_E_PT_ENDPOINT_UNREACHABLE","features":[594]},{"name":"WU_E_PT_EXCEEDED_MAX_SERVER_TRIPS","features":[594]},{"name":"WU_E_PT_FILE_LOCATIONS_CHANGED","features":[594]},{"name":"WU_E_PT_GENERAL_AAD_CLIENT_ERROR","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_BAD_GATEWAY","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_BAD_METHOD","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_BAD_REQUEST","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_CONFLICT","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_DENIED","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_FORBIDDEN","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_GATEWAY_TIMEOUT","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_GONE","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_NOT_FOUND","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_NOT_MAPPED","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_NOT_SUPPORTED","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_PROXY_AUTH_REQ","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_REQUEST_TIMEOUT","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_SERVER_ERROR","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_SERVICE_UNAVAIL","features":[594]},{"name":"WU_E_PT_HTTP_STATUS_VERSION_NOT_SUP","features":[594]},{"name":"WU_E_PT_INVALID_COMPUTER_NAME","features":[594]},{"name":"WU_E_PT_INVALID_CONFIG_PROP","features":[594]},{"name":"WU_E_PT_INVALID_FORMAT","features":[594]},{"name":"WU_E_PT_INVALID_OPERATION","features":[594]},{"name":"WU_E_PT_INVALID_URL","features":[594]},{"name":"WU_E_PT_LOAD_SHEDDING","features":[594]},{"name":"WU_E_PT_NO_AUTH_COOKIES_CREATED","features":[594]},{"name":"WU_E_PT_NO_AUTH_PLUGINS_REQUESTED","features":[594]},{"name":"WU_E_PT_NO_MANAGED_RECOVER","features":[594]},{"name":"WU_E_PT_NO_TRANSLATION_AVAILABLE","features":[594]},{"name":"WU_E_PT_NUMERIC_OVERFLOW","features":[594]},{"name":"WU_E_PT_NWS_NOT_LOADED","features":[594]},{"name":"WU_E_PT_OBJECT_FAULTED","features":[594]},{"name":"WU_E_PT_OPERATION_ABANDONED","features":[594]},{"name":"WU_E_PT_OPERATION_ABORTED","features":[594]},{"name":"WU_E_PT_OTHER","features":[594]},{"name":"WU_E_PT_PROXY_AUTH_SCHEME_NOT_SUPPORTED","features":[594]},{"name":"WU_E_PT_QUOTA_EXCEEDED","features":[594]},{"name":"WU_E_PT_REFRESH_CACHE_REQUIRED","features":[594]},{"name":"WU_E_PT_REGISTRATION_NOT_SUPPORTED","features":[594]},{"name":"WU_E_PT_SAME_REDIR_ID","features":[594]},{"name":"WU_E_PT_SECURITY_SYSTEM_FAILURE","features":[594]},{"name":"WU_E_PT_SECURITY_VERIFICATION_FAILURE","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_BASE","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_CONNECT","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_GENERATE","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_INITIALIZE","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_OUTOFMEMORY","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_PARSE","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_PARSEFAULT","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_READ","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_SEND","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_SERVER","features":[594]},{"name":"WU_E_PT_SOAPCLIENT_SOAPFAULT","features":[594]},{"name":"WU_E_PT_SOAP_CLIENT","features":[594]},{"name":"WU_E_PT_SOAP_MUST_UNDERSTAND","features":[594]},{"name":"WU_E_PT_SOAP_SERVER","features":[594]},{"name":"WU_E_PT_SOAP_VERSION","features":[594]},{"name":"WU_E_PT_SUS_SERVER_NOT_SET","features":[594]},{"name":"WU_E_PT_UNEXPECTED","features":[594]},{"name":"WU_E_PT_WINHTTP_NAME_NOT_RESOLVED","features":[594]},{"name":"WU_E_PT_WMI_ERROR","features":[594]},{"name":"WU_E_RANGEOVERLAP","features":[594]},{"name":"WU_E_REBOOT_IN_PROGRESS","features":[594]},{"name":"WU_E_REDIRECTOR_ATTRPROVIDER_EXCEEDED_MAX_NAMEVALUE","features":[594]},{"name":"WU_E_REDIRECTOR_ATTRPROVIDER_INVALID_NAME","features":[594]},{"name":"WU_E_REDIRECTOR_ATTRPROVIDER_INVALID_VALUE","features":[594]},{"name":"WU_E_REDIRECTOR_CONNECT_POLICY","features":[594]},{"name":"WU_E_REDIRECTOR_ID_SMALLER","features":[594]},{"name":"WU_E_REDIRECTOR_INVALID_RESPONSE","features":[594]},{"name":"WU_E_REDIRECTOR_LOAD_XML","features":[594]},{"name":"WU_E_REDIRECTOR_ONLINE_DISALLOWED","features":[594]},{"name":"WU_E_REDIRECTOR_SLS_GENERIC_ERROR","features":[594]},{"name":"WU_E_REDIRECTOR_S_FALSE","features":[594]},{"name":"WU_E_REDIRECTOR_UNEXPECTED","features":[594]},{"name":"WU_E_REDIRECTOR_UNKNOWN_SERVICE","features":[594]},{"name":"WU_E_REDIRECTOR_UNSUPPORTED_CONTENTTYPE","features":[594]},{"name":"WU_E_REG_VALUE_INVALID","features":[594]},{"name":"WU_E_REPORTER_EVENTCACHECORRUPT","features":[594]},{"name":"WU_E_REPORTER_EVENTNAMESPACEPARSEFAILED","features":[594]},{"name":"WU_E_REPORTER_UNEXPECTED","features":[594]},{"name":"WU_E_REVERT_NOT_ALLOWED","features":[594]},{"name":"WU_E_SELFUPDATE_IN_PROGRESS","features":[594]},{"name":"WU_E_SELFUPDATE_REQUIRED","features":[594]},{"name":"WU_E_SELFUPDATE_REQUIRED_ADMIN","features":[594]},{"name":"WU_E_SELFUPDATE_SKIP_ON_FAILURE","features":[594]},{"name":"WU_E_SERVER_BUSY","features":[594]},{"name":"WU_E_SERVICEPROP_NOTAVAIL","features":[594]},{"name":"WU_E_SERVICE_NOT_REGISTERED","features":[594]},{"name":"WU_E_SERVICE_STOP","features":[594]},{"name":"WU_E_SETUP_ALREADYRUNNING","features":[594]},{"name":"WU_E_SETUP_ALREADY_INITIALIZED","features":[594]},{"name":"WU_E_SETUP_BLOCKED_CONFIGURATION","features":[594]},{"name":"WU_E_SETUP_DEFERRABLE_REBOOT_PENDING","features":[594]},{"name":"WU_E_SETUP_FAIL","features":[594]},{"name":"WU_E_SETUP_HANDLER_EXEC_FAILURE","features":[594]},{"name":"WU_E_SETUP_INVALID_IDENTDATA","features":[594]},{"name":"WU_E_SETUP_INVALID_INFDATA","features":[594]},{"name":"WU_E_SETUP_INVALID_REGISTRY_DATA","features":[594]},{"name":"WU_E_SETUP_IN_PROGRESS","features":[594]},{"name":"WU_E_SETUP_NON_DEFERRABLE_REBOOT_PENDING","features":[594]},{"name":"WU_E_SETUP_NOT_INITIALIZED","features":[594]},{"name":"WU_E_SETUP_REBOOTREQUIRED","features":[594]},{"name":"WU_E_SETUP_REBOOT_TO_FIX","features":[594]},{"name":"WU_E_SETUP_REGISTRATION_FAILED","features":[594]},{"name":"WU_E_SETUP_SKIP_UPDATE","features":[594]},{"name":"WU_E_SETUP_SOURCE_VERSION_MISMATCH","features":[594]},{"name":"WU_E_SETUP_TARGET_VERSION_GREATER","features":[594]},{"name":"WU_E_SETUP_UNEXPECTED","features":[594]},{"name":"WU_E_SETUP_UNSUPPORTED_CONFIGURATION","features":[594]},{"name":"WU_E_SETUP_WRONG_SERVER_VERSION","features":[594]},{"name":"WU_E_SIH_ACTION_NOT_FOUND","features":[594]},{"name":"WU_E_SIH_ANOTHER_INSTANCE_RUNNING","features":[594]},{"name":"WU_E_SIH_BLOCKED_FOR_PLATFORM","features":[594]},{"name":"WU_E_SIH_DNSRESILIENCY_OFF","features":[594]},{"name":"WU_E_SIH_ENGINE_EXCEPTION","features":[594]},{"name":"WU_E_SIH_INVALIDHASH","features":[594]},{"name":"WU_E_SIH_NONSTDEXCEPTION","features":[594]},{"name":"WU_E_SIH_NO_ENGINE","features":[594]},{"name":"WU_E_SIH_PARSE","features":[594]},{"name":"WU_E_SIH_POLICY","features":[594]},{"name":"WU_E_SIH_POST_REBOOT_INSTALL_FAILED","features":[594]},{"name":"WU_E_SIH_POST_REBOOT_NO_CACHED_SLS_RESPONSE","features":[594]},{"name":"WU_E_SIH_PPL","features":[594]},{"name":"WU_E_SIH_SECURITY","features":[594]},{"name":"WU_E_SIH_SLS_PARSE","features":[594]},{"name":"WU_E_SIH_STDEXCEPTION","features":[594]},{"name":"WU_E_SIH_UNEXPECTED","features":[594]},{"name":"WU_E_SIH_VERIFY_DOWNLOAD_ENGINE","features":[594]},{"name":"WU_E_SIH_VERIFY_DOWNLOAD_PAYLOAD","features":[594]},{"name":"WU_E_SIH_VERIFY_STAGE_ENGINE","features":[594]},{"name":"WU_E_SIH_VERIFY_STAGE_PAYLOAD","features":[594]},{"name":"WU_E_SKIPPED_UPDATE_INSTALLATION","features":[594]},{"name":"WU_E_SLS_INVALID_REVISION","features":[594]},{"name":"WU_E_SOURCE_ABSENT","features":[594]},{"name":"WU_E_SYSPREP_IN_PROGRESS","features":[594]},{"name":"WU_E_SYSTEM_UNSUPPORTED","features":[594]},{"name":"WU_E_TIME_OUT","features":[594]},{"name":"WU_E_TOOMANYRANGES","features":[594]},{"name":"WU_E_TOO_DEEP_RELATION","features":[594]},{"name":"WU_E_TOO_MANY_RESYNC","features":[594]},{"name":"WU_E_TRAYICON_FAILURE","features":[594]},{"name":"WU_E_TRUST_PROVIDER_UNKNOWN","features":[594]},{"name":"WU_E_TRUST_SUBJECT_NOT_TRUSTED","features":[594]},{"name":"WU_E_UH_APPX_DEFAULT_PACKAGE_VOLUME_UNAVAILABLE","features":[594]},{"name":"WU_E_UH_APPX_INSTALLED_PACKAGE_VOLUME_UNAVAILABLE","features":[594]},{"name":"WU_E_UH_APPX_INVALID_PACKAGE_VOLUME","features":[594]},{"name":"WU_E_UH_APPX_NOT_PRESENT","features":[594]},{"name":"WU_E_UH_APPX_PACKAGE_FAMILY_NOT_FOUND","features":[594]},{"name":"WU_E_UH_APPX_SYSTEM_VOLUME_NOT_FOUND","features":[594]},{"name":"WU_E_UH_BADCBSPACKAGEID","features":[594]},{"name":"WU_E_UH_BADHANDLERXML","features":[594]},{"name":"WU_E_UH_CALLED_BACK_FAILURE","features":[594]},{"name":"WU_E_UH_CANREQUIREINPUT","features":[594]},{"name":"WU_E_UH_CUSTOMINSTALLER_INVALID_SIGNATURE","features":[594]},{"name":"WU_E_UH_DECRYPTFAILURE","features":[594]},{"name":"WU_E_UH_DOESNOTSUPPORTACTION","features":[594]},{"name":"WU_E_UH_FALLBACKERROR","features":[594]},{"name":"WU_E_UH_FALLBACKTOSELFCONTAINED","features":[594]},{"name":"WU_E_UH_HANDLER_DISABLEDUNTILREBOOT","features":[594]},{"name":"WU_E_UH_INCONSISTENT_FILE_NAMES","features":[594]},{"name":"WU_E_UH_INSTALLERFAILURE","features":[594]},{"name":"WU_E_UH_INSTALLERHUNG","features":[594]},{"name":"WU_E_UH_INVALIDMETADATA","features":[594]},{"name":"WU_E_UH_INVALID_TARGETSESSION","features":[594]},{"name":"WU_E_UH_LOCALONLY","features":[594]},{"name":"WU_E_UH_NEEDANOTHERDOWNLOAD","features":[594]},{"name":"WU_E_UH_NEW_SERVICING_STACK_REQUIRED","features":[594]},{"name":"WU_E_UH_NOTIFYFAILURE","features":[594]},{"name":"WU_E_UH_NOTREADYTOCOMMIT","features":[594]},{"name":"WU_E_UH_OPERATIONCANCELLED","features":[594]},{"name":"WU_E_UH_POSTREBOOTRESULTUNKNOWN","features":[594]},{"name":"WU_E_UH_POSTREBOOTSTILLPENDING","features":[594]},{"name":"WU_E_UH_POSTREBOOTUNEXPECTEDSTATE","features":[594]},{"name":"WU_E_UH_REMOTEALREADYACTIVE","features":[594]},{"name":"WU_E_UH_REMOTEUNAVAILABLE","features":[594]},{"name":"WU_E_UH_TOOMANYDOWNLOADREQUESTS","features":[594]},{"name":"WU_E_UH_UNEXPECTED","features":[594]},{"name":"WU_E_UH_UNEXPECTEDCBSRESPONSE","features":[594]},{"name":"WU_E_UH_UNKNOWNHANDLER","features":[594]},{"name":"WU_E_UH_UNSUPPORTED_INSTALLCONTEXT","features":[594]},{"name":"WU_E_UH_WRONGHANDLER","features":[594]},{"name":"WU_E_UNEXPECTED","features":[594]},{"name":"WU_E_UNINSTALL_NOT_ALLOWED","features":[594]},{"name":"WU_E_UNKNOWN_HARDWARECAPABILITY","features":[594]},{"name":"WU_E_UNKNOWN_ID","features":[594]},{"name":"WU_E_UNKNOWN_SERVICE","features":[594]},{"name":"WU_E_UNRECOGNIZED_VOLUMEID","features":[594]},{"name":"WU_E_UNSUPPORTED_SEARCHSCOPE","features":[594]},{"name":"WU_E_UPDATE_MERGE_NOT_ALLOWED","features":[594]},{"name":"WU_E_UPDATE_NOT_APPROVED","features":[594]},{"name":"WU_E_UPDATE_NOT_PROCESSED","features":[594]},{"name":"WU_E_URL_TOO_LONG","features":[594]},{"name":"WU_E_USER_ACCESS_DISABLED","features":[594]},{"name":"WU_E_WINHTTP_INVALID_FILE","features":[594]},{"name":"WU_E_WMI_NOT_SUPPORTED","features":[594]},{"name":"WU_E_WUCLTUI_UNSUPPORTED_VERSION","features":[594]},{"name":"WU_E_WUTASK_CANCELINSTALL_DISALLOWED","features":[594]},{"name":"WU_E_WUTASK_INPROGRESS","features":[594]},{"name":"WU_E_WUTASK_NOT_STARTED","features":[594]},{"name":"WU_E_WUTASK_RETRY","features":[594]},{"name":"WU_E_WUTASK_STATUS_DISABLED","features":[594]},{"name":"WU_E_WU_DISABLED","features":[594]},{"name":"WU_E_XML_INVALID","features":[594]},{"name":"WU_E_XML_MISSINGDATA","features":[594]},{"name":"WU_S_AAD_DEVICE_TICKET_NOT_NEEDED","features":[594]},{"name":"WU_S_ALREADY_DOWNLOADED","features":[594]},{"name":"WU_S_ALREADY_INSTALLED","features":[594]},{"name":"WU_S_ALREADY_REVERTED","features":[594]},{"name":"WU_S_ALREADY_UNINSTALLED","features":[594]},{"name":"WU_S_DM_ALREADYDOWNLOADING","features":[594]},{"name":"WU_S_MARKED_FOR_DISCONNECT","features":[594]},{"name":"WU_S_METADATA_IGNORED_SIGNATURE_VERIFICATION","features":[594]},{"name":"WU_S_METADATA_SKIPPED_BY_ENFORCEMENTMODE","features":[594]},{"name":"WU_S_REBOOT_REQUIRED","features":[594]},{"name":"WU_S_SEARCH_CRITERIA_NOT_SUPPORTED","features":[594]},{"name":"WU_S_SEARCH_LOAD_SHEDDING","features":[594]},{"name":"WU_S_SELFUPDATE","features":[594]},{"name":"WU_S_SERVICE_STOP","features":[594]},{"name":"WU_S_SIH_NOOP","features":[594]},{"name":"WU_S_SOME_UPDATES_SKIPPED_ON_BATTERY","features":[594]},{"name":"WU_S_UH_DOWNLOAD_SIZE_CALCULATED","features":[594]},{"name":"WU_S_UH_INSTALLSTILLPENDING","features":[594]},{"name":"WU_S_UPDATE_ERROR","features":[594]},{"name":"WebProxy","features":[594]},{"name":"WindowsUpdateAgentInfo","features":[594]},{"name":"adAlwaysAutoDownload","features":[594]},{"name":"adLetWindowsUpdateDecide","features":[594]},{"name":"adNeverAutoDownload","features":[594]},{"name":"asAlwaysAutoSelect","features":[594]},{"name":"asAutoSelectIfDownloaded","features":[594]},{"name":"asLetWindowsUpdateDecide","features":[594]},{"name":"asNeverAutoSelect","features":[594]},{"name":"asfAllowOnlineRegistration","features":[594]},{"name":"asfAllowPendingRegistration","features":[594]},{"name":"asfRegisterServiceWithAU","features":[594]},{"name":"aunlDisabled","features":[594]},{"name":"aunlNotConfigured","features":[594]},{"name":"aunlNotifyBeforeDownload","features":[594]},{"name":"aunlNotifyBeforeInstallation","features":[594]},{"name":"aunlScheduledInstallation","features":[594]},{"name":"auptDisableAutomaticUpdates","features":[594]},{"name":"auptSetFeaturedUpdatesEnabled","features":[594]},{"name":"auptSetIncludeRecommendedUpdates","features":[594]},{"name":"auptSetNonAdministratorsElevated","features":[594]},{"name":"auptSetNotificationLevel","features":[594]},{"name":"ausidEveryDay","features":[594]},{"name":"ausidEveryFriday","features":[594]},{"name":"ausidEveryMonday","features":[594]},{"name":"ausidEverySaturday","features":[594]},{"name":"ausidEverySunday","features":[594]},{"name":"ausidEveryThursday","features":[594]},{"name":"ausidEveryTuesday","features":[594]},{"name":"ausidEveryWednesday","features":[594]},{"name":"auutCurrentUser","features":[594]},{"name":"auutLocalAdministrator","features":[594]},{"name":"daDetection","features":[594]},{"name":"daInstallation","features":[594]},{"name":"daNone","features":[594]},{"name":"daOptionalInstallation","features":[594]},{"name":"daUninstallation","features":[594]},{"name":"dpExtraHigh","features":[594]},{"name":"dpHigh","features":[594]},{"name":"dpLow","features":[594]},{"name":"dpNormal","features":[594]},{"name":"dphDownloading","features":[594]},{"name":"dphInitializing","features":[594]},{"name":"dphVerifying","features":[594]},{"name":"iiMinor","features":[594]},{"name":"iiNormal","features":[594]},{"name":"iiRequiresExclusiveHandling","features":[594]},{"name":"irbAlwaysRequiresReboot","features":[594]},{"name":"irbCanRequestReboot","features":[594]},{"name":"irbNeverReboots","features":[594]},{"name":"orcAborted","features":[594]},{"name":"orcFailed","features":[594]},{"name":"orcInProgress","features":[594]},{"name":"orcNotStarted","features":[594]},{"name":"orcSucceeded","features":[594]},{"name":"orcSucceededWithErrors","features":[594]},{"name":"searchScopeAllUsers","features":[594]},{"name":"searchScopeCurrentUserOnly","features":[594]},{"name":"searchScopeDefault","features":[594]},{"name":"searchScopeMachineAndAllUsers","features":[594]},{"name":"searchScopeMachineAndCurrentUser","features":[594]},{"name":"searchScopeMachineOnly","features":[594]},{"name":"ssDefault","features":[594]},{"name":"ssManagedServer","features":[594]},{"name":"ssOthers","features":[594]},{"name":"ssWindowsUpdate","features":[594]},{"name":"uecGeneral","features":[594]},{"name":"uecSearchIncomplete","features":[594]},{"name":"uecWindowsDriver","features":[594]},{"name":"uecWindowsInstaller","features":[594]},{"name":"uloForWebsiteAccess","features":[594]},{"name":"uoInstallation","features":[594]},{"name":"uoUninstallation","features":[594]},{"name":"usoNonVolatileService","features":[594]},{"name":"usrsNotRegistered","features":[594]},{"name":"usrsRegistered","features":[594]},{"name":"usrsRegistrationPending","features":[594]},{"name":"utDriver","features":[594]},{"name":"utSoftware","features":[594]}],"623":[{"name":"IWaaSAssessor","features":[595]},{"name":"OSUpdateAssessment","features":[305,595]},{"name":"UpdateAssessment","features":[595]},{"name":"UpdateAssessmentStatus","features":[595]},{"name":"UpdateAssessmentStatus_Latest","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestDeferredFeature","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestDeferredQuality","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestEndOfSupport","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestHardRestriction","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestManaged","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestPausedFeature","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestPausedQuality","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestServicingTrain","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestSoftRestriction","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestTargetedVersion","features":[595]},{"name":"UpdateAssessmentStatus_NotLatestUnknown","features":[595]},{"name":"UpdateImpactLevel","features":[595]},{"name":"UpdateImpactLevel_High","features":[595]},{"name":"UpdateImpactLevel_Low","features":[595]},{"name":"UpdateImpactLevel_Medium","features":[595]},{"name":"UpdateImpactLevel_None","features":[595]},{"name":"WaaSAssessor","features":[595]}],"624":[{"name":"UAL_DATA_BLOB","features":[318,596]},{"name":"UalInstrument","features":[318,596]},{"name":"UalRegisterProduct","features":[596]},{"name":"UalStart","features":[318,596]},{"name":"UalStop","features":[318,596]}],"625":[{"name":"ClearVariantArray","features":[380]},{"name":"DPF_ERROR","features":[380]},{"name":"DPF_MARQUEE","features":[380]},{"name":"DPF_MARQUEE_COMPLETE","features":[380]},{"name":"DPF_NONE","features":[380]},{"name":"DPF_STOPPED","features":[380]},{"name":"DPF_WARNING","features":[380]},{"name":"DRAWPROGRESSFLAGS","features":[380]},{"name":"DosDateTimeToVariantTime","features":[380]},{"name":"InitVariantFromBooleanArray","features":[305,380]},{"name":"InitVariantFromBuffer","features":[380]},{"name":"InitVariantFromDoubleArray","features":[380]},{"name":"InitVariantFromFileTime","features":[305,380]},{"name":"InitVariantFromFileTimeArray","features":[305,380]},{"name":"InitVariantFromGUIDAsString","features":[380]},{"name":"InitVariantFromInt16Array","features":[380]},{"name":"InitVariantFromInt32Array","features":[380]},{"name":"InitVariantFromInt64Array","features":[380]},{"name":"InitVariantFromResource","features":[305,380]},{"name":"InitVariantFromStringArray","features":[380]},{"name":"InitVariantFromUInt16Array","features":[380]},{"name":"InitVariantFromUInt32Array","features":[380]},{"name":"InitVariantFromUInt64Array","features":[380]},{"name":"InitVariantFromVariantArrayElem","features":[380]},{"name":"PSTF_LOCAL","features":[380]},{"name":"PSTF_UTC","features":[380]},{"name":"PSTIME_FLAGS","features":[380]},{"name":"SystemTimeToVariantTime","features":[305,380]},{"name":"VARENUM","features":[380]},{"name":"VARIANT","features":[305,356,415,380]},{"name":"VARIANT_ALPHABOOL","features":[380]},{"name":"VARIANT_CALENDAR_GREGORIAN","features":[380]},{"name":"VARIANT_CALENDAR_HIJRI","features":[380]},{"name":"VARIANT_CALENDAR_THAI","features":[380]},{"name":"VARIANT_LOCALBOOL","features":[380]},{"name":"VARIANT_NOUSEROVERRIDE","features":[380]},{"name":"VARIANT_NOVALUEPROP","features":[380]},{"name":"VARIANT_USE_NLS","features":[380]},{"name":"VARIANT_UserFree","features":[380]},{"name":"VARIANT_UserFree64","features":[380]},{"name":"VARIANT_UserMarshal","features":[380]},{"name":"VARIANT_UserMarshal64","features":[380]},{"name":"VARIANT_UserSize","features":[380]},{"name":"VARIANT_UserSize64","features":[380]},{"name":"VARIANT_UserUnmarshal","features":[380]},{"name":"VARIANT_UserUnmarshal64","features":[380]},{"name":"VAR_CHANGE_FLAGS","features":[380]},{"name":"VT_ARRAY","features":[380]},{"name":"VT_BLOB","features":[380]},{"name":"VT_BLOB_OBJECT","features":[380]},{"name":"VT_BOOL","features":[380]},{"name":"VT_BSTR","features":[380]},{"name":"VT_BSTR_BLOB","features":[380]},{"name":"VT_BYREF","features":[380]},{"name":"VT_CARRAY","features":[380]},{"name":"VT_CF","features":[380]},{"name":"VT_CLSID","features":[380]},{"name":"VT_CY","features":[380]},{"name":"VT_DATE","features":[380]},{"name":"VT_DECIMAL","features":[380]},{"name":"VT_DISPATCH","features":[380]},{"name":"VT_EMPTY","features":[380]},{"name":"VT_ERROR","features":[380]},{"name":"VT_FILETIME","features":[380]},{"name":"VT_HRESULT","features":[380]},{"name":"VT_I1","features":[380]},{"name":"VT_I2","features":[380]},{"name":"VT_I4","features":[380]},{"name":"VT_I8","features":[380]},{"name":"VT_ILLEGAL","features":[380]},{"name":"VT_ILLEGALMASKED","features":[380]},{"name":"VT_INT","features":[380]},{"name":"VT_INT_PTR","features":[380]},{"name":"VT_LPSTR","features":[380]},{"name":"VT_LPWSTR","features":[380]},{"name":"VT_NULL","features":[380]},{"name":"VT_PTR","features":[380]},{"name":"VT_R4","features":[380]},{"name":"VT_R8","features":[380]},{"name":"VT_RECORD","features":[380]},{"name":"VT_RESERVED","features":[380]},{"name":"VT_SAFEARRAY","features":[380]},{"name":"VT_STORAGE","features":[380]},{"name":"VT_STORED_OBJECT","features":[380]},{"name":"VT_STREAM","features":[380]},{"name":"VT_STREAMED_OBJECT","features":[380]},{"name":"VT_TYPEMASK","features":[380]},{"name":"VT_UI1","features":[380]},{"name":"VT_UI2","features":[380]},{"name":"VT_UI4","features":[380]},{"name":"VT_UI8","features":[380]},{"name":"VT_UINT","features":[380]},{"name":"VT_UINT_PTR","features":[380]},{"name":"VT_UNKNOWN","features":[380]},{"name":"VT_USERDEFINED","features":[380]},{"name":"VT_VARIANT","features":[380]},{"name":"VT_VECTOR","features":[380]},{"name":"VT_VERSIONED_STREAM","features":[380]},{"name":"VT_VOID","features":[380]},{"name":"VariantChangeType","features":[380]},{"name":"VariantChangeTypeEx","features":[380]},{"name":"VariantClear","features":[380]},{"name":"VariantCompare","features":[380]},{"name":"VariantCopy","features":[380]},{"name":"VariantCopyInd","features":[380]},{"name":"VariantGetBooleanElem","features":[305,380]},{"name":"VariantGetDoubleElem","features":[380]},{"name":"VariantGetElementCount","features":[380]},{"name":"VariantGetInt16Elem","features":[380]},{"name":"VariantGetInt32Elem","features":[380]},{"name":"VariantGetInt64Elem","features":[380]},{"name":"VariantGetStringElem","features":[380]},{"name":"VariantGetUInt16Elem","features":[380]},{"name":"VariantGetUInt32Elem","features":[380]},{"name":"VariantGetUInt64Elem","features":[380]},{"name":"VariantInit","features":[380]},{"name":"VariantTimeToDosDateTime","features":[380]},{"name":"VariantTimeToSystemTime","features":[305,380]},{"name":"VariantToBoolean","features":[305,380]},{"name":"VariantToBooleanArray","features":[305,380]},{"name":"VariantToBooleanArrayAlloc","features":[305,380]},{"name":"VariantToBooleanWithDefault","features":[305,380]},{"name":"VariantToBuffer","features":[380]},{"name":"VariantToDosDateTime","features":[380]},{"name":"VariantToDouble","features":[380]},{"name":"VariantToDoubleArray","features":[380]},{"name":"VariantToDoubleArrayAlloc","features":[380]},{"name":"VariantToDoubleWithDefault","features":[380]},{"name":"VariantToFileTime","features":[305,380]},{"name":"VariantToGUID","features":[380]},{"name":"VariantToInt16","features":[380]},{"name":"VariantToInt16Array","features":[380]},{"name":"VariantToInt16ArrayAlloc","features":[380]},{"name":"VariantToInt16WithDefault","features":[380]},{"name":"VariantToInt32","features":[380]},{"name":"VariantToInt32Array","features":[380]},{"name":"VariantToInt32ArrayAlloc","features":[380]},{"name":"VariantToInt32WithDefault","features":[380]},{"name":"VariantToInt64","features":[380]},{"name":"VariantToInt64Array","features":[380]},{"name":"VariantToInt64ArrayAlloc","features":[380]},{"name":"VariantToInt64WithDefault","features":[380]},{"name":"VariantToString","features":[380]},{"name":"VariantToStringAlloc","features":[380]},{"name":"VariantToStringArray","features":[380]},{"name":"VariantToStringArrayAlloc","features":[380]},{"name":"VariantToStringWithDefault","features":[380]},{"name":"VariantToUInt16","features":[380]},{"name":"VariantToUInt16Array","features":[380]},{"name":"VariantToUInt16ArrayAlloc","features":[380]},{"name":"VariantToUInt16WithDefault","features":[380]},{"name":"VariantToUInt32","features":[380]},{"name":"VariantToUInt32Array","features":[380]},{"name":"VariantToUInt32ArrayAlloc","features":[380]},{"name":"VariantToUInt32WithDefault","features":[380]},{"name":"VariantToUInt64","features":[380]},{"name":"VariantToUInt64Array","features":[380]},{"name":"VariantToUInt64ArrayAlloc","features":[380]},{"name":"VariantToUInt64WithDefault","features":[380]}],"626":[{"name":"DBG_ATTACH","features":[597]},{"name":"DBG_BREAK","features":[597]},{"name":"DBG_DIVOVERFLOW","features":[597]},{"name":"DBG_DLLSTART","features":[597]},{"name":"DBG_DLLSTOP","features":[597]},{"name":"DBG_GPFAULT","features":[597]},{"name":"DBG_GPFAULT2","features":[597]},{"name":"DBG_INIT","features":[597]},{"name":"DBG_INSTRFAULT","features":[597]},{"name":"DBG_MODFREE","features":[597]},{"name":"DBG_MODLOAD","features":[597]},{"name":"DBG_MODMOVE","features":[597]},{"name":"DBG_SEGFREE","features":[597]},{"name":"DBG_SEGLOAD","features":[597]},{"name":"DBG_SEGMOVE","features":[597]},{"name":"DBG_SINGLESTEP","features":[597]},{"name":"DBG_STACKFAULT","features":[597]},{"name":"DBG_TASKSTART","features":[597]},{"name":"DBG_TASKSTOP","features":[597]},{"name":"DBG_TEMPBP","features":[597]},{"name":"DBG_TOOLHELP","features":[597]},{"name":"DBG_WOWINIT","features":[597]},{"name":"DEBUGEVENTPROC","features":[305,334,340,597]},{"name":"GD_ACCELERATORS","features":[597]},{"name":"GD_BITMAP","features":[597]},{"name":"GD_CURSOR","features":[597]},{"name":"GD_CURSORCOMPONENT","features":[597]},{"name":"GD_DIALOG","features":[597]},{"name":"GD_ERRTABLE","features":[597]},{"name":"GD_FONT","features":[597]},{"name":"GD_FONTDIR","features":[597]},{"name":"GD_ICON","features":[597]},{"name":"GD_ICONCOMPONENT","features":[597]},{"name":"GD_MAX_RESOURCE","features":[597]},{"name":"GD_MENU","features":[597]},{"name":"GD_NAMETABLE","features":[597]},{"name":"GD_RCDATA","features":[597]},{"name":"GD_STRING","features":[597]},{"name":"GD_USERDEFINED","features":[597]},{"name":"GLOBALENTRY","features":[305,597]},{"name":"GLOBAL_ALL","features":[597]},{"name":"GLOBAL_FREE","features":[597]},{"name":"GLOBAL_LRU","features":[597]},{"name":"GT_BURGERMASTER","features":[597]},{"name":"GT_CODE","features":[597]},{"name":"GT_DATA","features":[597]},{"name":"GT_DGROUP","features":[597]},{"name":"GT_FREE","features":[597]},{"name":"GT_INTERNAL","features":[597]},{"name":"GT_MODULE","features":[597]},{"name":"GT_RESOURCE","features":[597]},{"name":"GT_SENTINEL","features":[597]},{"name":"GT_TASK","features":[597]},{"name":"GT_UNKNOWN","features":[597]},{"name":"IMAGE_NOTE","features":[597]},{"name":"MAX_MODULE_NAME","features":[597]},{"name":"MAX_PATH16","features":[597]},{"name":"MODULEENTRY","features":[305,597]},{"name":"PROCESSENUMPROC","features":[305,597]},{"name":"SEGMENT_NOTE","features":[597]},{"name":"SN_CODE","features":[597]},{"name":"SN_DATA","features":[597]},{"name":"SN_V86","features":[597]},{"name":"STATUS_VDM_EVENT","features":[597]},{"name":"TASKENUMPROC","features":[305,597]},{"name":"TASKENUMPROCEX","features":[305,597]},{"name":"TEMP_BP_NOTE","features":[305,597]},{"name":"V86FLAGS_ALIGNMENT","features":[597]},{"name":"V86FLAGS_AUXCARRY","features":[597]},{"name":"V86FLAGS_CARRY","features":[597]},{"name":"V86FLAGS_DIRECTION","features":[597]},{"name":"V86FLAGS_INTERRUPT","features":[597]},{"name":"V86FLAGS_IOPL","features":[597]},{"name":"V86FLAGS_IOPL_BITS","features":[597]},{"name":"V86FLAGS_OVERFLOW","features":[597]},{"name":"V86FLAGS_PARITY","features":[597]},{"name":"V86FLAGS_RESUME","features":[597]},{"name":"V86FLAGS_SIGN","features":[597]},{"name":"V86FLAGS_TRACE","features":[597]},{"name":"V86FLAGS_V86","features":[597]},{"name":"V86FLAGS_ZERO","features":[597]},{"name":"VDMADDR_PM16","features":[597]},{"name":"VDMADDR_PM32","features":[597]},{"name":"VDMADDR_V86","features":[597]},{"name":"VDMBREAKTHREADPROC","features":[305,597]},{"name":"VDMCONTEXT","features":[311,597]},{"name":"VDMCONTEXT_WITHOUT_XSAVE","features":[311,597]},{"name":"VDMCONTEXT_i386","features":[597]},{"name":"VDMCONTEXT_i486","features":[597]},{"name":"VDMDBG_BREAK_DEBUGGER","features":[597]},{"name":"VDMDBG_BREAK_DIVIDEBYZERO","features":[597]},{"name":"VDMDBG_BREAK_DOSTASK","features":[597]},{"name":"VDMDBG_BREAK_EXCEPTIONS","features":[597]},{"name":"VDMDBG_BREAK_LOADDLL","features":[597]},{"name":"VDMDBG_BREAK_WOWTASK","features":[597]},{"name":"VDMDBG_INITIAL_FLAGS","features":[597]},{"name":"VDMDBG_MAX_SYMBOL_BUFFER","features":[597]},{"name":"VDMDBG_TRACE_HISTORY","features":[597]},{"name":"VDMDETECTWOWPROC","features":[305,597]},{"name":"VDMENUMPROCESSWOWPROC","features":[305,597]},{"name":"VDMENUMTASKWOWEXPROC","features":[305,597]},{"name":"VDMENUMTASKWOWPROC","features":[305,597]},{"name":"VDMEVENT_ALLFLAGS","features":[597]},{"name":"VDMEVENT_NEEDS_INTERACTIVE","features":[597]},{"name":"VDMEVENT_PE","features":[597]},{"name":"VDMEVENT_PM16","features":[597]},{"name":"VDMEVENT_V86","features":[597]},{"name":"VDMEVENT_VERBOSE","features":[597]},{"name":"VDMGETADDREXPRESSIONPROC","features":[305,597]},{"name":"VDMGETCONTEXTPROC","features":[305,311,597]},{"name":"VDMGETCONTEXTPROC","features":[305,334,311,597]},{"name":"VDMGETDBGFLAGSPROC","features":[305,597]},{"name":"VDMGETMODULESELECTORPROC","features":[305,597]},{"name":"VDMGETPOINTERPROC","features":[305,597]},{"name":"VDMGETSEGMENTINFOPROC","features":[305,597]},{"name":"VDMGETSELECTORMODULEPROC","features":[305,597]},{"name":"VDMGETSYMBOLPROC","features":[305,597]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[305,597]},{"name":"VDMGETTHREADSELECTORENTRYPROC","features":[305,334,597]},{"name":"VDMGLOBALFIRSTPROC","features":[305,334,340,597]},{"name":"VDMGLOBALNEXTPROC","features":[305,334,340,597]},{"name":"VDMISMODULELOADEDPROC","features":[305,597]},{"name":"VDMKILLWOWPROC","features":[305,597]},{"name":"VDMLDT_ENTRY","features":[597]},{"name":"VDMMODULEFIRSTPROC","features":[305,334,340,597]},{"name":"VDMMODULENEXTPROC","features":[305,334,340,597]},{"name":"VDMPROCESSEXCEPTIONPROC","features":[305,334,340,597]},{"name":"VDMSETCONTEXTPROC","features":[305,311,597]},{"name":"VDMSETCONTEXTPROC","features":[305,334,311,597]},{"name":"VDMSETDBGFLAGSPROC","features":[305,597]},{"name":"VDMSTARTTASKINWOWPROC","features":[305,597]},{"name":"VDMTERMINATETASKINWOWPROC","features":[305,597]},{"name":"VDM_KGDT_R3_CODE","features":[597]},{"name":"VDM_MAXIMUM_SUPPORTED_EXTENSION","features":[597]},{"name":"VDM_SEGINFO","features":[597]},{"name":"WOW_SYSTEM","features":[597]}],"627":[{"name":"ACTIVATIONTYPE","features":[598]},{"name":"ACTIVATIONTYPE_FROM_DATA","features":[598]},{"name":"ACTIVATIONTYPE_FROM_FILE","features":[598]},{"name":"ACTIVATIONTYPE_FROM_MONIKER","features":[598]},{"name":"ACTIVATIONTYPE_FROM_STORAGE","features":[598]},{"name":"ACTIVATIONTYPE_FROM_STREAM","features":[598]},{"name":"ACTIVATIONTYPE_UNCATEGORIZED","features":[598]},{"name":"AGILEREFERENCE_DEFAULT","features":[598]},{"name":"AGILEREFERENCE_DELAYEDMARSHAL","features":[598]},{"name":"APARTMENT_SHUTDOWN_REGISTRATION_COOKIE","features":[598]},{"name":"AgileReferenceOptions","features":[598]},{"name":"BSOS_DEFAULT","features":[598]},{"name":"BSOS_OPTIONS","features":[598]},{"name":"BSOS_PREFERDESTINATIONSTREAM","features":[598]},{"name":"BaseTrust","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS_DEVICE_DID_NOT_RESPOND","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS_DEVICE_ERROR","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS_DEVICE_LOCKED","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS_INVALID_CASTING_SOURCE","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS_PROTECTED_PLAYBACK_FAILED","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS_SUCCEEDED","features":[598]},{"name":"CASTING_CONNECTION_ERROR_STATUS_UNKNOWN","features":[598]},{"name":"CASTING_CONNECTION_STATE","features":[598]},{"name":"CASTING_CONNECTION_STATE_CONNECTED","features":[598]},{"name":"CASTING_CONNECTION_STATE_CONNECTING","features":[598]},{"name":"CASTING_CONNECTION_STATE_DISCONNECTED","features":[598]},{"name":"CASTING_CONNECTION_STATE_DISCONNECTING","features":[598]},{"name":"CASTING_CONNECTION_STATE_RENDERING","features":[598]},{"name":"CastingSourceInfo_Property_CastingTypes","features":[598]},{"name":"CastingSourceInfo_Property_PreferredSourceUriScheme","features":[598]},{"name":"CastingSourceInfo_Property_ProtectedMedia","features":[598]},{"name":"CoDecodeProxy","features":[598]},{"name":"CreateControlInput","features":[598]},{"name":"CreateControlInputEx","features":[598]},{"name":"CreateDispatcherQueueController","features":[245,598]},{"name":"CreateRandomAccessStreamOnFile","features":[598]},{"name":"CreateRandomAccessStreamOverStream","features":[356,598]},{"name":"CreateStreamOverRandomAccessStream","features":[598]},{"name":"DISPATCHERQUEUE_THREAD_APARTMENTTYPE","features":[598]},{"name":"DISPATCHERQUEUE_THREAD_TYPE","features":[598]},{"name":"DQTAT_COM_ASTA","features":[598]},{"name":"DQTAT_COM_NONE","features":[598]},{"name":"DQTAT_COM_STA","features":[598]},{"name":"DQTYPE_THREAD_CURRENT","features":[598]},{"name":"DQTYPE_THREAD_DEDICATED","features":[598]},{"name":"DispatcherQueueOptions","features":[598]},{"name":"EventRegistrationToken","features":[598]},{"name":"FullTrust","features":[598]},{"name":"GetRestrictedErrorInfo","features":[598]},{"name":"HSTRING","features":[598]},{"name":"HSTRING_BUFFER","features":[598]},{"name":"HSTRING_HEADER","features":[598]},{"name":"HSTRING_UserFree","features":[598]},{"name":"HSTRING_UserFree64","features":[598]},{"name":"HSTRING_UserMarshal","features":[598]},{"name":"HSTRING_UserMarshal64","features":[598]},{"name":"HSTRING_UserSize","features":[598]},{"name":"HSTRING_UserSize64","features":[598]},{"name":"HSTRING_UserUnmarshal","features":[598]},{"name":"HSTRING_UserUnmarshal64","features":[598]},{"name":"IAccountsSettingsPaneInterop","features":[598]},{"name":"IActivationFactory","features":[598]},{"name":"IAgileReference","features":[598]},{"name":"IApartmentShutdown","features":[598]},{"name":"IAppServiceConnectionExtendedExecution","features":[598]},{"name":"IBufferByteAccess","features":[598]},{"name":"ICastingController","features":[598]},{"name":"ICastingEventHandler","features":[598]},{"name":"ICastingSourceInfo","features":[598]},{"name":"ICoreInputInterop","features":[598]},{"name":"ICoreInputInterop2","features":[598]},{"name":"ICoreWindowAdapterInterop","features":[598]},{"name":"ICoreWindowComponentInterop","features":[598]},{"name":"ICoreWindowInterop","features":[598]},{"name":"ICorrelationVectorInformation","features":[598]},{"name":"ICorrelationVectorSource","features":[598]},{"name":"IDragDropManagerInterop","features":[598]},{"name":"IHolographicSpaceInterop","features":[598]},{"name":"IInputPaneInterop","features":[598]},{"name":"IInspectable","features":[598]},{"name":"ILanguageExceptionErrorInfo","features":[598]},{"name":"ILanguageExceptionErrorInfo2","features":[598]},{"name":"ILanguageExceptionStackBackTrace","features":[598]},{"name":"ILanguageExceptionTransform","features":[598]},{"name":"IMemoryBufferByteAccess","features":[598]},{"name":"IMessageDispatcher","features":[598]},{"name":"IPlayToManagerInterop","features":[598]},{"name":"IRestrictedErrorInfo","features":[598]},{"name":"IShareWindowCommandEventArgsInterop","features":[598]},{"name":"IShareWindowCommandSourceInterop","features":[598]},{"name":"ISpatialInteractionManagerInterop","features":[598]},{"name":"ISystemMediaTransportControlsInterop","features":[598]},{"name":"IUIViewSettingsInterop","features":[598]},{"name":"IUserActivityInterop","features":[598]},{"name":"IUserActivityRequestManagerInterop","features":[598]},{"name":"IUserActivitySourceHostInterop","features":[598]},{"name":"IUserConsentVerifierInterop","features":[598]},{"name":"IWeakReference","features":[598]},{"name":"IWeakReferenceSource","features":[598]},{"name":"IWebAuthenticationCoreManagerInterop","features":[598]},{"name":"IsErrorPropagationEnabled","features":[305,598]},{"name":"MAX_ERROR_MESSAGE_CHARS","features":[598]},{"name":"PFNGETACTIVATIONFACTORY","features":[598]},{"name":"PINSPECT_HSTRING_CALLBACK","features":[598]},{"name":"PINSPECT_HSTRING_CALLBACK2","features":[598]},{"name":"PINSPECT_MEMORY_CALLBACK","features":[598]},{"name":"PartialTrust","features":[598]},{"name":"RO_ERROR_REPORTING_FLAGS","features":[598]},{"name":"RO_ERROR_REPORTING_FORCEEXCEPTIONS","features":[598]},{"name":"RO_ERROR_REPORTING_NONE","features":[598]},{"name":"RO_ERROR_REPORTING_SUPPRESSEXCEPTIONS","features":[598]},{"name":"RO_ERROR_REPORTING_SUPPRESSSETERRORINFO","features":[598]},{"name":"RO_ERROR_REPORTING_USESETERRORINFO","features":[598]},{"name":"RO_INIT_MULTITHREADED","features":[598]},{"name":"RO_INIT_SINGLETHREADED","features":[598]},{"name":"RO_INIT_TYPE","features":[598]},{"name":"RO_REGISTRATION_COOKIE","features":[598]},{"name":"RoActivateInstance","features":[598]},{"name":"RoCaptureErrorContext","features":[598]},{"name":"RoClearError","features":[598]},{"name":"RoFailFastWithErrorContext","features":[598]},{"name":"RoGetActivationFactory","features":[598]},{"name":"RoGetAgileReference","features":[598]},{"name":"RoGetApartmentIdentifier","features":[598]},{"name":"RoGetBufferMarshaler","features":[531,598]},{"name":"RoGetErrorReportingFlags","features":[598]},{"name":"RoGetMatchingRestrictedErrorInfo","features":[598]},{"name":"RoGetServerActivatableClasses","features":[598]},{"name":"RoInitialize","features":[598]},{"name":"RoInspectCapturedStackBackTrace","features":[598]},{"name":"RoInspectThreadErrorInfo","features":[598]},{"name":"RoOriginateError","features":[305,598]},{"name":"RoOriginateErrorW","features":[305,598]},{"name":"RoOriginateLanguageException","features":[305,598]},{"name":"RoRegisterActivationFactories","features":[598]},{"name":"RoRegisterForApartmentShutdown","features":[598]},{"name":"RoReportFailedDelegate","features":[598]},{"name":"RoReportUnhandledError","features":[598]},{"name":"RoResolveRestrictedErrorInfoReference","features":[598]},{"name":"RoRevokeActivationFactories","features":[598]},{"name":"RoSetErrorReportingFlags","features":[598]},{"name":"RoTransformError","features":[305,598]},{"name":"RoTransformErrorW","features":[305,598]},{"name":"RoUninitialize","features":[598]},{"name":"RoUnregisterForApartmentShutdown","features":[598]},{"name":"ServerInformation","features":[598]},{"name":"SetRestrictedErrorInfo","features":[598]},{"name":"TrustLevel","features":[598]},{"name":"WindowsCompareStringOrdinal","features":[598]},{"name":"WindowsConcatString","features":[598]},{"name":"WindowsCreateString","features":[598]},{"name":"WindowsCreateStringReference","features":[598]},{"name":"WindowsDeleteString","features":[598]},{"name":"WindowsDeleteStringBuffer","features":[598]},{"name":"WindowsDuplicateString","features":[598]},{"name":"WindowsGetStringLen","features":[598]},{"name":"WindowsGetStringRawBuffer","features":[598]},{"name":"WindowsInspectString","features":[598]},{"name":"WindowsInspectString2","features":[598]},{"name":"WindowsIsStringEmpty","features":[305,598]},{"name":"WindowsPreallocateStringBuffer","features":[598]},{"name":"WindowsPromoteStringBuffer","features":[598]},{"name":"WindowsReplaceString","features":[598]},{"name":"WindowsStringHasEmbeddedNull","features":[305,598]},{"name":"WindowsSubstring","features":[598]},{"name":"WindowsSubstringWithSpecifiedLength","features":[598]},{"name":"WindowsTrimStringEnd","features":[598]},{"name":"WindowsTrimStringStart","features":[598]}],"628":[{"name":"IWindowsDevicesAllJoynBusAttachmentFactoryInterop","features":[599]},{"name":"IWindowsDevicesAllJoynBusAttachmentInterop","features":[599]},{"name":"IWindowsDevicesAllJoynBusObjectFactoryInterop","features":[599]},{"name":"IWindowsDevicesAllJoynBusObjectInterop","features":[599]}],"629":[{"name":"ICompositionCapabilitiesInteropFactory","features":[600]},{"name":"ICompositionDrawingSurfaceInterop","features":[600]},{"name":"ICompositionDrawingSurfaceInterop2","features":[600]},{"name":"ICompositionGraphicsDeviceInterop","features":[600]},{"name":"ICompositionTextureInterop","features":[600]},{"name":"ICompositorDesktopInterop","features":[600]},{"name":"ICompositorInterop","features":[600]},{"name":"ICompositorInterop2","features":[600]},{"name":"IDesktopWindowTargetInterop","features":[600]},{"name":"IVisualInteractionSourceInterop","features":[600]}],"630":[{"name":"ICoreFrameworkInputViewInterop","features":[601]}],"631":[{"name":"CreateDirect3D11DeviceFromDXGIDevice","features":[397,602]},{"name":"CreateDirect3D11SurfaceFromDXGISurface","features":[397,602]},{"name":"IDirect3DDxgiInterfaceAccess","features":[602]}],"632":[{"name":"IDisplayDeviceInterop","features":[603]},{"name":"IDisplayPathInterop","features":[603]}],"633":[{"name":"IGraphicsCaptureItemInterop","features":[604]}],"634":[{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_COLORMATRIX_ALPHA_MODE","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR3","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_COLOR_TO_VECTOR4","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_DIRECT","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_RADIANS_TO_DEGREES","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_RECT_TO_VECTOR4","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_UNKNOWN","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORW","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORX","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORY","features":[605]},{"name":"GRAPHICS_EFFECT_PROPERTY_MAPPING_VECTORZ","features":[605]},{"name":"IGeometrySource2DInterop","features":[605]},{"name":"IGraphicsEffectD2D1Interop","features":[605]}],"635":[{"name":"CLSID_SoftwareBitmapNativeFactory","features":[606]},{"name":"ISoftwareBitmapNative","features":[606]},{"name":"ISoftwareBitmapNativeFactory","features":[606]}],"636":[{"name":"IHolographicCameraInterop","features":[607]},{"name":"IHolographicCameraRenderingParametersInterop","features":[607]},{"name":"IHolographicQuadLayerInterop","features":[607]},{"name":"IHolographicQuadLayerUpdateParametersInterop","features":[607]}],"637":[{"name":"IIsolatedEnvironmentInterop","features":[608]}],"638":[{"name":"ILearningModelDeviceFactoryNative","features":[609]},{"name":"ILearningModelOperatorProviderNative","features":[609]},{"name":"ILearningModelSessionOptionsNative","features":[609]},{"name":"ILearningModelSessionOptionsNative1","features":[609]},{"name":"ITensorNative","features":[609]},{"name":"ITensorStaticsNative","features":[609]}],"639":[{"name":"CLSID_AudioFrameNativeFactory","features":[610]},{"name":"CLSID_VideoFrameNativeFactory","features":[610]},{"name":"IAudioFrameNative","features":[610]},{"name":"IAudioFrameNativeFactory","features":[610]},{"name":"IVideoFrameNative","features":[610]},{"name":"IVideoFrameNativeFactory","features":[610]}],"640":[{"name":"ASSEMBLYMETADATA","features":[542]},{"name":"ASSEMBLY_METADATA_TYPE","features":[542]},{"name":"ASSEMBLY_METADATA_TYPE_W","features":[542]},{"name":"CLSID_CLR_v1_MetaData","features":[542]},{"name":"CLSID_CLR_v2_MetaData","features":[542]},{"name":"CLSID_Cor","features":[542]},{"name":"CLSID_CorMetaDataDispenser","features":[542]},{"name":"CLSID_CorMetaDataDispenserReg","features":[542]},{"name":"CLSID_CorMetaDataDispenserRuntime","features":[542]},{"name":"CLSID_CorMetaDataReg","features":[542]},{"name":"CMOD_CALLCONV_NAMESPACE","features":[542]},{"name":"CMOD_CALLCONV_NAMESPACE_OLD","features":[542]},{"name":"CMOD_CALLCONV_NAME_CDECL","features":[542]},{"name":"CMOD_CALLCONV_NAME_FASTCALL","features":[542]},{"name":"CMOD_CALLCONV_NAME_STDCALL","features":[542]},{"name":"CMOD_CALLCONV_NAME_THISCALL","features":[542]},{"name":"COINITCOR_DEFAULT","features":[542]},{"name":"COINITEE_DEFAULT","features":[542]},{"name":"COINITEE_DLL","features":[542]},{"name":"COINITEE_MAIN","features":[542]},{"name":"COINITICOR","features":[542]},{"name":"COINITIEE","features":[542]},{"name":"COMPILATIONRELAXATIONS_TYPE","features":[542]},{"name":"COMPILATIONRELAXATIONS_TYPE_W","features":[542]},{"name":"COR_BASE_SECURITY_ATTRIBUTE_CLASS","features":[542]},{"name":"COR_BASE_SECURITY_ATTRIBUTE_CLASS_ANSI","features":[542]},{"name":"COR_CCTOR_METHOD_NAME","features":[542]},{"name":"COR_CCTOR_METHOD_NAME_W","features":[542]},{"name":"COR_COMPILERSERVICE_DISCARDABLEATTRIBUTE","features":[542]},{"name":"COR_COMPILERSERVICE_DISCARDABLEATTRIBUTE_ASNI","features":[542]},{"name":"COR_CTOR_METHOD_NAME","features":[542]},{"name":"COR_CTOR_METHOD_NAME_W","features":[542]},{"name":"COR_DELETED_NAME_A","features":[542]},{"name":"COR_DELETED_NAME_W","features":[542]},{"name":"COR_ENUM_FIELD_NAME","features":[542]},{"name":"COR_ENUM_FIELD_NAME_W","features":[542]},{"name":"COR_E_AMBIGUOUSMATCH","features":[542]},{"name":"COR_E_ARGUMENT","features":[542]},{"name":"COR_E_BADIMAGEFORMAT","features":[542]},{"name":"COR_E_DIVIDEBYZERO","features":[542]},{"name":"COR_E_INVALIDCAST","features":[542]},{"name":"COR_E_NULLREFERENCE","features":[542]},{"name":"COR_E_OUTOFMEMORY","features":[542]},{"name":"COR_E_TARGETPARAMCOUNT","features":[542]},{"name":"COR_E_UNAUTHORIZEDACCESS","features":[542]},{"name":"COR_FIELD_OFFSET","features":[542]},{"name":"COR_ILEXCEPTION_CLAUSE_DEPRECATED","features":[542]},{"name":"COR_ILEXCEPTION_CLAUSE_DUPLICATED","features":[542]},{"name":"COR_ILEXCEPTION_CLAUSE_FAULT","features":[542]},{"name":"COR_ILEXCEPTION_CLAUSE_FILTER","features":[542]},{"name":"COR_ILEXCEPTION_CLAUSE_FINALLY","features":[542]},{"name":"COR_ILEXCEPTION_CLAUSE_NONE","features":[542]},{"name":"COR_ILEXCEPTION_CLAUSE_OFFSETLEN","features":[542]},{"name":"COR_NATIVE_LINK","features":[542]},{"name":"COR_NATIVE_LINK_CUSTOM_VALUE","features":[542]},{"name":"COR_NATIVE_LINK_CUSTOM_VALUE_ANSI","features":[542]},{"name":"COR_NATIVE_LINK_CUSTOM_VALUE_CC","features":[542]},{"name":"COR_REQUIRES_SECOBJ_ATTRIBUTE","features":[542]},{"name":"COR_REQUIRES_SECOBJ_ATTRIBUTE_ANSI","features":[542]},{"name":"COR_SECATTR","features":[542]},{"name":"COR_SUPPRESS_UNMANAGED_CODE_CHECK_ATTRIBUTE","features":[542]},{"name":"COR_SUPPRESS_UNMANAGED_CODE_CHECK_ATTRIBUTE_ANSI","features":[542]},{"name":"COR_UNVER_CODE_ATTRIBUTE","features":[542]},{"name":"COR_UNVER_CODE_ATTRIBUTE_ANSI","features":[542]},{"name":"COR_VTABLEGAP_NAME_A","features":[542]},{"name":"COR_VTABLEGAP_NAME_W","features":[542]},{"name":"COUNINITEE_DEFAULT","features":[542]},{"name":"COUNINITEE_DLL","features":[542]},{"name":"COUNINITIEE","features":[542]},{"name":"CVStruct","features":[542]},{"name":"CeeSectionAttr","features":[542]},{"name":"CeeSectionRelocExtra","features":[542]},{"name":"CeeSectionRelocType","features":[542]},{"name":"CompilationRelaxationsEnum","features":[542]},{"name":"CompilationRelaxations_NoStringInterning","features":[542]},{"name":"CorArgType","features":[542]},{"name":"CorAssemblyFlags","features":[542]},{"name":"CorAttributeTargets","features":[542]},{"name":"CorCallingConvention","features":[542]},{"name":"CorCheckDuplicatesFor","features":[542]},{"name":"CorDeclSecurity","features":[542]},{"name":"CorElementType","features":[542]},{"name":"CorErrorIfEmitOutOfOrder","features":[542]},{"name":"CorEventAttr","features":[542]},{"name":"CorExceptionFlag","features":[542]},{"name":"CorFieldAttr","features":[542]},{"name":"CorFileFlags","features":[542]},{"name":"CorFileMapping","features":[542]},{"name":"CorGenericParamAttr","features":[542]},{"name":"CorILMethodFlags","features":[542]},{"name":"CorILMethodSect","features":[542]},{"name":"CorILMethod_CompressedIL","features":[542]},{"name":"CorILMethod_FatFormat","features":[542]},{"name":"CorILMethod_FormatMask","features":[542]},{"name":"CorILMethod_FormatShift","features":[542]},{"name":"CorILMethod_InitLocals","features":[542]},{"name":"CorILMethod_MoreSects","features":[542]},{"name":"CorILMethod_Sect_EHTable","features":[542]},{"name":"CorILMethod_Sect_FatFormat","features":[542]},{"name":"CorILMethod_Sect_KindMask","features":[542]},{"name":"CorILMethod_Sect_MoreSects","features":[542]},{"name":"CorILMethod_Sect_OptILTable","features":[542]},{"name":"CorILMethod_Sect_Reserved","features":[542]},{"name":"CorILMethod_SmallFormat","features":[542]},{"name":"CorILMethod_TinyFormat","features":[542]},{"name":"CorILMethod_TinyFormat1","features":[542]},{"name":"CorImportOptions","features":[542]},{"name":"CorLinkerOptions","features":[542]},{"name":"CorLocalRefPreservation","features":[542]},{"name":"CorManifestResourceFlags","features":[542]},{"name":"CorMethodAttr","features":[542]},{"name":"CorMethodImpl","features":[542]},{"name":"CorMethodSemanticsAttr","features":[542]},{"name":"CorNativeLinkFlags","features":[542]},{"name":"CorNativeLinkType","features":[542]},{"name":"CorNativeType","features":[542]},{"name":"CorNotificationForTokenMovement","features":[542]},{"name":"CorOpenFlags","features":[542]},{"name":"CorPEKind","features":[542]},{"name":"CorParamAttr","features":[542]},{"name":"CorPinvokeMap","features":[542]},{"name":"CorPropertyAttr","features":[542]},{"name":"CorRefToDefCheck","features":[542]},{"name":"CorRegFlags","features":[542]},{"name":"CorSaveSize","features":[542]},{"name":"CorSerializationType","features":[542]},{"name":"CorSetENC","features":[542]},{"name":"CorThreadSafetyOptions","features":[542]},{"name":"CorTokenType","features":[542]},{"name":"CorTypeAttr","features":[542]},{"name":"CorUnmanagedCallingConvention","features":[542]},{"name":"CorValidatorModuleType","features":[542]},{"name":"DEFAULTDEPENDENCY_TYPE","features":[542]},{"name":"DEFAULTDEPENDENCY_TYPE_W","features":[542]},{"name":"DEFAULTDOMAIN_LOADEROPTIMIZATION_TYPE","features":[542]},{"name":"DEFAULTDOMAIN_LOADEROPTIMIZATION_TYPE_W","features":[542]},{"name":"DEFAULTDOMAIN_MTA_TYPE","features":[542]},{"name":"DEFAULTDOMAIN_MTA_TYPE_W","features":[542]},{"name":"DEFAULTDOMAIN_STA_TYPE","features":[542]},{"name":"DEFAULTDOMAIN_STA_TYPE_W","features":[542]},{"name":"DEPENDENCY_TYPE","features":[542]},{"name":"DEPENDENCY_TYPE_W","features":[542]},{"name":"DESCR_GROUP_METHODDEF","features":[542]},{"name":"DESCR_GROUP_METHODIMPL","features":[542]},{"name":"DISABLED_PRIVATE_REFLECTION_TYPE","features":[542]},{"name":"DISABLED_PRIVATE_REFLECTION_TYPE_W","features":[542]},{"name":"DropMemberRefCAs","features":[542]},{"name":"ELEMENT_TYPE_ARRAY","features":[542]},{"name":"ELEMENT_TYPE_BOOLEAN","features":[542]},{"name":"ELEMENT_TYPE_BYREF","features":[542]},{"name":"ELEMENT_TYPE_CHAR","features":[542]},{"name":"ELEMENT_TYPE_CLASS","features":[542]},{"name":"ELEMENT_TYPE_CMOD_OPT","features":[542]},{"name":"ELEMENT_TYPE_CMOD_REQD","features":[542]},{"name":"ELEMENT_TYPE_END","features":[542]},{"name":"ELEMENT_TYPE_FNPTR","features":[542]},{"name":"ELEMENT_TYPE_GENERICINST","features":[542]},{"name":"ELEMENT_TYPE_I","features":[542]},{"name":"ELEMENT_TYPE_I1","features":[542]},{"name":"ELEMENT_TYPE_I2","features":[542]},{"name":"ELEMENT_TYPE_I4","features":[542]},{"name":"ELEMENT_TYPE_I8","features":[542]},{"name":"ELEMENT_TYPE_INTERNAL","features":[542]},{"name":"ELEMENT_TYPE_MAX","features":[542]},{"name":"ELEMENT_TYPE_MODIFIER","features":[542]},{"name":"ELEMENT_TYPE_MVAR","features":[542]},{"name":"ELEMENT_TYPE_OBJECT","features":[542]},{"name":"ELEMENT_TYPE_PINNED","features":[542]},{"name":"ELEMENT_TYPE_PTR","features":[542]},{"name":"ELEMENT_TYPE_R4","features":[542]},{"name":"ELEMENT_TYPE_R8","features":[542]},{"name":"ELEMENT_TYPE_SENTINEL","features":[542]},{"name":"ELEMENT_TYPE_STRING","features":[542]},{"name":"ELEMENT_TYPE_SZARRAY","features":[542]},{"name":"ELEMENT_TYPE_TYPEDBYREF","features":[542]},{"name":"ELEMENT_TYPE_U","features":[542]},{"name":"ELEMENT_TYPE_U1","features":[542]},{"name":"ELEMENT_TYPE_U2","features":[542]},{"name":"ELEMENT_TYPE_U4","features":[542]},{"name":"ELEMENT_TYPE_U8","features":[542]},{"name":"ELEMENT_TYPE_VALUETYPE","features":[542]},{"name":"ELEMENT_TYPE_VAR","features":[542]},{"name":"ELEMENT_TYPE_VOID","features":[542]},{"name":"FORWARD_INTEROP_STUB_METHOD_TYPE","features":[542]},{"name":"FORWARD_INTEROP_STUB_METHOD_TYPE_W","features":[542]},{"name":"FRAMEWORK_REGISTRY_KEY","features":[542]},{"name":"FRAMEWORK_REGISTRY_KEY_W","features":[542]},{"name":"FRIEND_ACCESS_ALLOWED_ATTRIBUTE_TYPE","features":[542]},{"name":"FRIEND_ACCESS_ALLOWED_ATTRIBUTE_TYPE_W","features":[542]},{"name":"FRIEND_ASSEMBLY_TYPE","features":[542]},{"name":"FRIEND_ASSEMBLY_TYPE_W","features":[542]},{"name":"GUID_DispIdOverride","features":[542]},{"name":"GUID_ExportedFromComPlus","features":[542]},{"name":"GUID_ForceIEnumerable","features":[542]},{"name":"GUID_Function2Getter","features":[542]},{"name":"GUID_ManagedName","features":[542]},{"name":"GUID_PropGetCA","features":[542]},{"name":"GUID_PropPutCA","features":[542]},{"name":"ICeeGen","features":[542]},{"name":"IHostFilter","features":[542]},{"name":"IMAGE_CEE_CS_BYVALUE","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_C","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_DEFAULT","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_EXPLICITTHIS","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_FASTCALL","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_FIELD","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_GENERIC","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_GENERICINST","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_HASTHIS","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_LOCAL_SIG","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_MASK","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_MAX","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_NATIVEVARARG","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_PROPERTY","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_STDCALL","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_THISCALL","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_UNMGD","features":[542]},{"name":"IMAGE_CEE_CS_CALLCONV_VARARG","features":[542]},{"name":"IMAGE_CEE_CS_END","features":[542]},{"name":"IMAGE_CEE_CS_I4","features":[542]},{"name":"IMAGE_CEE_CS_I8","features":[542]},{"name":"IMAGE_CEE_CS_OBJECT","features":[542]},{"name":"IMAGE_CEE_CS_PTR","features":[542]},{"name":"IMAGE_CEE_CS_R4","features":[542]},{"name":"IMAGE_CEE_CS_R8","features":[542]},{"name":"IMAGE_CEE_CS_STRUCT32","features":[542]},{"name":"IMAGE_CEE_CS_STRUCT4","features":[542]},{"name":"IMAGE_CEE_CS_VOID","features":[542]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_C","features":[542]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_FASTCALL","features":[542]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_STDCALL","features":[542]},{"name":"IMAGE_CEE_UNMANAGED_CALLCONV_THISCALL","features":[542]},{"name":"IMAGE_COR_ILMETHOD","features":[542]},{"name":"IMAGE_COR_ILMETHOD_FAT","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_FAT","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_CLAUSE_SMALL","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_FAT","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_EH_SMALL","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_FAT","features":[542]},{"name":"IMAGE_COR_ILMETHOD_SECT_SMALL","features":[542]},{"name":"IMAGE_COR_ILMETHOD_TINY","features":[542]},{"name":"IMAGE_COR_VTABLEFIXUP","features":[542]},{"name":"IMAGE_DIRECTORY_ENTRY_COMHEADER","features":[542]},{"name":"IMapToken","features":[542]},{"name":"IMetaDataAssemblyEmit","features":[542]},{"name":"IMetaDataAssemblyImport","features":[542]},{"name":"IMetaDataDispenser","features":[542]},{"name":"IMetaDataDispenserEx","features":[542]},{"name":"IMetaDataEmit","features":[542]},{"name":"IMetaDataEmit2","features":[542]},{"name":"IMetaDataError","features":[542]},{"name":"IMetaDataFilter","features":[542]},{"name":"IMetaDataImport","features":[542]},{"name":"IMetaDataImport2","features":[542]},{"name":"IMetaDataInfo","features":[542]},{"name":"IMetaDataTables","features":[542]},{"name":"IMetaDataTables2","features":[542]},{"name":"IMetaDataValidate","features":[542]},{"name":"IMetaDataWinMDImport","features":[542]},{"name":"INTEROP_AUTOPROXY_TYPE","features":[542]},{"name":"INTEROP_AUTOPROXY_TYPE_W","features":[542]},{"name":"INTEROP_BESTFITMAPPING_TYPE","features":[542]},{"name":"INTEROP_BESTFITMAPPING_TYPE_W","features":[542]},{"name":"INTEROP_CLASSINTERFACE_TYPE","features":[542]},{"name":"INTEROP_CLASSINTERFACE_TYPE_W","features":[542]},{"name":"INTEROP_COCLASS_TYPE","features":[542]},{"name":"INTEROP_COCLASS_TYPE_W","features":[542]},{"name":"INTEROP_COMALIASNAME_TYPE","features":[542]},{"name":"INTEROP_COMALIASNAME_TYPE_W","features":[542]},{"name":"INTEROP_COMCOMPATIBLEVERSION_TYPE","features":[542]},{"name":"INTEROP_COMCOMPATIBLEVERSION_TYPE_W","features":[542]},{"name":"INTEROP_COMCONVERSIONLOSS_TYPE","features":[542]},{"name":"INTEROP_COMCONVERSIONLOSS_TYPE_W","features":[542]},{"name":"INTEROP_COMDEFAULTINTERFACE_TYPE","features":[542]},{"name":"INTEROP_COMDEFAULTINTERFACE_TYPE_W","features":[542]},{"name":"INTEROP_COMEMULATE_TYPE","features":[542]},{"name":"INTEROP_COMEMULATE_TYPE_W","features":[542]},{"name":"INTEROP_COMEVENTINTERFACE_TYPE","features":[542]},{"name":"INTEROP_COMEVENTINTERFACE_TYPE_W","features":[542]},{"name":"INTEROP_COMIMPORT_TYPE","features":[542]},{"name":"INTEROP_COMIMPORT_TYPE_W","features":[542]},{"name":"INTEROP_COMREGISTERFUNCTION_TYPE","features":[542]},{"name":"INTEROP_COMREGISTERFUNCTION_TYPE_W","features":[542]},{"name":"INTEROP_COMSOURCEINTERFACES_TYPE","features":[542]},{"name":"INTEROP_COMSOURCEINTERFACES_TYPE_W","features":[542]},{"name":"INTEROP_COMSUBSTITUTABLEINTERFACE_TYPE","features":[542]},{"name":"INTEROP_COMSUBSTITUTABLEINTERFACE_TYPE_W","features":[542]},{"name":"INTEROP_COMUNREGISTERFUNCTION_TYPE","features":[542]},{"name":"INTEROP_COMUNREGISTERFUNCTION_TYPE_W","features":[542]},{"name":"INTEROP_COMVISIBLE_TYPE","features":[542]},{"name":"INTEROP_COMVISIBLE_TYPE_W","features":[542]},{"name":"INTEROP_DATETIMEVALUE_TYPE","features":[542]},{"name":"INTEROP_DATETIMEVALUE_TYPE_W","features":[542]},{"name":"INTEROP_DECIMALVALUE_TYPE","features":[542]},{"name":"INTEROP_DECIMALVALUE_TYPE_W","features":[542]},{"name":"INTEROP_DEFAULTMEMBER_TYPE","features":[542]},{"name":"INTEROP_DEFAULTMEMBER_TYPE_W","features":[542]},{"name":"INTEROP_DISPID_TYPE","features":[542]},{"name":"INTEROP_DISPID_TYPE_W","features":[542]},{"name":"INTEROP_GUID_TYPE","features":[542]},{"name":"INTEROP_GUID_TYPE_W","features":[542]},{"name":"INTEROP_IDISPATCHIMPL_TYPE","features":[542]},{"name":"INTEROP_IDISPATCHIMPL_TYPE_W","features":[542]},{"name":"INTEROP_IDISPATCHVALUE_TYPE","features":[542]},{"name":"INTEROP_IDISPATCHVALUE_TYPE_W","features":[542]},{"name":"INTEROP_IMPORTEDFROMTYPELIB_TYPE","features":[542]},{"name":"INTEROP_IMPORTEDFROMTYPELIB_TYPE_W","features":[542]},{"name":"INTEROP_INTERFACETYPE_TYPE","features":[542]},{"name":"INTEROP_INTERFACETYPE_TYPE_W","features":[542]},{"name":"INTEROP_IN_TYPE","features":[542]},{"name":"INTEROP_IN_TYPE_W","features":[542]},{"name":"INTEROP_IUNKNOWNVALUE_TYPE","features":[542]},{"name":"INTEROP_IUNKNOWNVALUE_TYPE_W","features":[542]},{"name":"INTEROP_LCIDCONVERSION_TYPE","features":[542]},{"name":"INTEROP_LCIDCONVERSION_TYPE_W","features":[542]},{"name":"INTEROP_MARSHALAS_TYPE","features":[542]},{"name":"INTEROP_MARSHALAS_TYPE_W","features":[542]},{"name":"INTEROP_OUT_TYPE","features":[542]},{"name":"INTEROP_OUT_TYPE_W","features":[542]},{"name":"INTEROP_PARAMARRAY_TYPE","features":[542]},{"name":"INTEROP_PARAMARRAY_TYPE_W","features":[542]},{"name":"INTEROP_PRESERVESIG_TYPE","features":[542]},{"name":"INTEROP_PRESERVESIG_TYPE_W","features":[542]},{"name":"INTEROP_PRIMARYINTEROPASSEMBLY_TYPE","features":[542]},{"name":"INTEROP_PRIMARYINTEROPASSEMBLY_TYPE_W","features":[542]},{"name":"INTEROP_SERIALIZABLE_TYPE","features":[542]},{"name":"INTEROP_SERIALIZABLE_TYPE_W","features":[542]},{"name":"INTEROP_SETWIN32CONTEXTINIDISPATCHATTRIBUTE_TYPE","features":[542]},{"name":"INTEROP_SETWIN32CONTEXTINIDISPATCHATTRIBUTE_TYPE_W","features":[542]},{"name":"INTEROP_TYPELIBFUNC_TYPE","features":[542]},{"name":"INTEROP_TYPELIBFUNC_TYPE_W","features":[542]},{"name":"INTEROP_TYPELIBIMPORTCLASS_TYPE","features":[542]},{"name":"INTEROP_TYPELIBIMPORTCLASS_TYPE_W","features":[542]},{"name":"INTEROP_TYPELIBTYPE_TYPE","features":[542]},{"name":"INTEROP_TYPELIBTYPE_TYPE_W","features":[542]},{"name":"INTEROP_TYPELIBVAR_TYPE","features":[542]},{"name":"INTEROP_TYPELIBVAR_TYPE_W","features":[542]},{"name":"INTEROP_TYPELIBVERSION_TYPE","features":[542]},{"name":"INTEROP_TYPELIBVERSION_TYPE_W","features":[542]},{"name":"INVALID_CONNECTION_ID","features":[542]},{"name":"INVALID_TASK_ID","features":[542]},{"name":"IRoMetaDataLocator","features":[542]},{"name":"IRoSimpleMetaDataBuilder","features":[542]},{"name":"LIBID_ComPlusRuntime","features":[542]},{"name":"LoadAlways","features":[542]},{"name":"LoadDefault","features":[542]},{"name":"LoadHintEnum","features":[542]},{"name":"LoadNever","features":[542]},{"name":"LoadSometimes","features":[542]},{"name":"MAIN_CLR_MODULE_NAME_A","features":[542]},{"name":"MAIN_CLR_MODULE_NAME_W","features":[542]},{"name":"MAX_CONNECTION_NAME","features":[542]},{"name":"MDAssembly","features":[542]},{"name":"MDDupAll","features":[542]},{"name":"MDDupAssembly","features":[542]},{"name":"MDDupAssemblyRef","features":[542]},{"name":"MDDupCustomAttribute","features":[542]},{"name":"MDDupDefault","features":[542]},{"name":"MDDupENC","features":[542]},{"name":"MDDupEvent","features":[542]},{"name":"MDDupExportedType","features":[542]},{"name":"MDDupFieldDef","features":[542]},{"name":"MDDupFile","features":[542]},{"name":"MDDupGenericParam","features":[542]},{"name":"MDDupGenericParamConstraint","features":[542]},{"name":"MDDupImplMap","features":[542]},{"name":"MDDupInterfaceImpl","features":[542]},{"name":"MDDupManifestResource","features":[542]},{"name":"MDDupMemberRef","features":[542]},{"name":"MDDupMethodDef","features":[542]},{"name":"MDDupMethodSpec","features":[542]},{"name":"MDDupModuleRef","features":[542]},{"name":"MDDupParamDef","features":[542]},{"name":"MDDupPermission","features":[542]},{"name":"MDDupProperty","features":[542]},{"name":"MDDupSignature","features":[542]},{"name":"MDDupTypeDef","features":[542]},{"name":"MDDupTypeRef","features":[542]},{"name":"MDDupTypeSpec","features":[542]},{"name":"MDErrorOutOfOrderAll","features":[542]},{"name":"MDErrorOutOfOrderDefault","features":[542]},{"name":"MDErrorOutOfOrderNone","features":[542]},{"name":"MDEventOutOfOrder","features":[542]},{"name":"MDFieldOutOfOrder","features":[542]},{"name":"MDImportOptionAll","features":[542]},{"name":"MDImportOptionAllCustomAttributes","features":[542]},{"name":"MDImportOptionAllEvents","features":[542]},{"name":"MDImportOptionAllExportedTypes","features":[542]},{"name":"MDImportOptionAllFieldDefs","features":[542]},{"name":"MDImportOptionAllMethodDefs","features":[542]},{"name":"MDImportOptionAllProperties","features":[542]},{"name":"MDImportOptionAllTypeDefs","features":[542]},{"name":"MDImportOptionDefault","features":[542]},{"name":"MDMemberRefToDef","features":[542]},{"name":"MDMethodOutOfOrder","features":[542]},{"name":"MDNetModule","features":[542]},{"name":"MDNoDupChecks","features":[542]},{"name":"MDNotifyAll","features":[542]},{"name":"MDNotifyAssemblyRef","features":[542]},{"name":"MDNotifyCustomAttribute","features":[542]},{"name":"MDNotifyDefault","features":[542]},{"name":"MDNotifyEvent","features":[542]},{"name":"MDNotifyExportedType","features":[542]},{"name":"MDNotifyFieldDef","features":[542]},{"name":"MDNotifyFile","features":[542]},{"name":"MDNotifyInterfaceImpl","features":[542]},{"name":"MDNotifyMemberRef","features":[542]},{"name":"MDNotifyMethodDef","features":[542]},{"name":"MDNotifyModuleRef","features":[542]},{"name":"MDNotifyNameSpace","features":[542]},{"name":"MDNotifyNone","features":[542]},{"name":"MDNotifyParamDef","features":[542]},{"name":"MDNotifyPermission","features":[542]},{"name":"MDNotifyProperty","features":[542]},{"name":"MDNotifyResource","features":[542]},{"name":"MDNotifySecurityValue","features":[542]},{"name":"MDNotifySignature","features":[542]},{"name":"MDNotifyTypeDef","features":[542]},{"name":"MDNotifyTypeRef","features":[542]},{"name":"MDNotifyTypeSpec","features":[542]},{"name":"MDParamOutOfOrder","features":[542]},{"name":"MDPreserveLocalMemberRef","features":[542]},{"name":"MDPreserveLocalRefsNone","features":[542]},{"name":"MDPreserveLocalTypeRef","features":[542]},{"name":"MDPropertyOutOfOrder","features":[542]},{"name":"MDRefToDefAll","features":[542]},{"name":"MDRefToDefDefault","features":[542]},{"name":"MDRefToDefNone","features":[542]},{"name":"MDSetENCOff","features":[542]},{"name":"MDSetENCOn","features":[542]},{"name":"MDThreadSafetyDefault","features":[542]},{"name":"MDThreadSafetyOff","features":[542]},{"name":"MDThreadSafetyOn","features":[542]},{"name":"MDTypeRefToDef","features":[542]},{"name":"MDUpdateDelta","features":[542]},{"name":"MDUpdateENC","features":[542]},{"name":"MDUpdateExtension","features":[542]},{"name":"MDUpdateFull","features":[542]},{"name":"MDUpdateIncremental","features":[542]},{"name":"MDUpdateMask","features":[542]},{"name":"MSCOREE_SHIM_A","features":[542]},{"name":"MSCOREE_SHIM_W","features":[542]},{"name":"MergeExportedTypes","features":[542]},{"name":"MergeFlags","features":[542]},{"name":"MergeFlagsNone","features":[542]},{"name":"MergeManifest","features":[542]},{"name":"MetaDataCheckDuplicatesFor","features":[542]},{"name":"MetaDataErrorIfEmitOutOfOrder","features":[542]},{"name":"MetaDataGenerateTCEAdapters","features":[542]},{"name":"MetaDataGetDispenser","features":[542]},{"name":"MetaDataImportOption","features":[542]},{"name":"MetaDataLinkerOptions","features":[542]},{"name":"MetaDataMergerOptions","features":[542]},{"name":"MetaDataNotificationForTokenMovement","features":[542]},{"name":"MetaDataPreserveLocalRefs","features":[542]},{"name":"MetaDataRefToDefCheck","features":[542]},{"name":"MetaDataRuntimeVersion","features":[542]},{"name":"MetaDataSetUpdate","features":[542]},{"name":"MetaDataThreadSafetyOptions","features":[542]},{"name":"MetaDataTypeLibImportNamespace","features":[542]},{"name":"NATIVE_TYPE_ANSIBSTR","features":[542]},{"name":"NATIVE_TYPE_ARRAY","features":[542]},{"name":"NATIVE_TYPE_ASANY","features":[542]},{"name":"NATIVE_TYPE_BOOLEAN","features":[542]},{"name":"NATIVE_TYPE_BSTR","features":[542]},{"name":"NATIVE_TYPE_BYVALSTR","features":[542]},{"name":"NATIVE_TYPE_CURRENCY","features":[542]},{"name":"NATIVE_TYPE_CUSTOMMARSHALER","features":[542]},{"name":"NATIVE_TYPE_DATE","features":[542]},{"name":"NATIVE_TYPE_DECIMAL","features":[542]},{"name":"NATIVE_TYPE_END","features":[542]},{"name":"NATIVE_TYPE_ERROR","features":[542]},{"name":"NATIVE_TYPE_FIXEDARRAY","features":[542]},{"name":"NATIVE_TYPE_FIXEDSYSSTRING","features":[542]},{"name":"NATIVE_TYPE_FUNC","features":[542]},{"name":"NATIVE_TYPE_HSTRING","features":[542]},{"name":"NATIVE_TYPE_I1","features":[542]},{"name":"NATIVE_TYPE_I2","features":[542]},{"name":"NATIVE_TYPE_I4","features":[542]},{"name":"NATIVE_TYPE_I8","features":[542]},{"name":"NATIVE_TYPE_IDISPATCH","features":[542]},{"name":"NATIVE_TYPE_IINSPECTABLE","features":[542]},{"name":"NATIVE_TYPE_INT","features":[542]},{"name":"NATIVE_TYPE_INTF","features":[542]},{"name":"NATIVE_TYPE_IUNKNOWN","features":[542]},{"name":"NATIVE_TYPE_LPSTR","features":[542]},{"name":"NATIVE_TYPE_LPSTRUCT","features":[542]},{"name":"NATIVE_TYPE_LPTSTR","features":[542]},{"name":"NATIVE_TYPE_LPUTF8STR","features":[542]},{"name":"NATIVE_TYPE_LPWSTR","features":[542]},{"name":"NATIVE_TYPE_MAX","features":[542]},{"name":"NATIVE_TYPE_NESTEDSTRUCT","features":[542]},{"name":"NATIVE_TYPE_OBJECTREF","features":[542]},{"name":"NATIVE_TYPE_PTR","features":[542]},{"name":"NATIVE_TYPE_R4","features":[542]},{"name":"NATIVE_TYPE_R8","features":[542]},{"name":"NATIVE_TYPE_SAFEARRAY","features":[542]},{"name":"NATIVE_TYPE_STRUCT","features":[542]},{"name":"NATIVE_TYPE_SYSCHAR","features":[542]},{"name":"NATIVE_TYPE_TBSTR","features":[542]},{"name":"NATIVE_TYPE_U1","features":[542]},{"name":"NATIVE_TYPE_U2","features":[542]},{"name":"NATIVE_TYPE_U4","features":[542]},{"name":"NATIVE_TYPE_U8","features":[542]},{"name":"NATIVE_TYPE_UINT","features":[542]},{"name":"NATIVE_TYPE_VARIANT","features":[542]},{"name":"NATIVE_TYPE_VARIANTBOOL","features":[542]},{"name":"NATIVE_TYPE_VOID","features":[542]},{"name":"NGenDefault","features":[542]},{"name":"NGenEager","features":[542]},{"name":"NGenHintEnum","features":[542]},{"name":"NGenLazy","features":[542]},{"name":"NGenNever","features":[542]},{"name":"NONVERSIONABLE_TYPE","features":[542]},{"name":"NONVERSIONABLE_TYPE_W","features":[542]},{"name":"NativeTypeArrayFlags","features":[542]},{"name":"NoDupCheck","features":[542]},{"name":"OSINFO","features":[542]},{"name":"ROPARAMIIDHANDLE","features":[542]},{"name":"RUNTIMECOMPATIBILITY_TYPE","features":[542]},{"name":"RUNTIMECOMPATIBILITY_TYPE_W","features":[542]},{"name":"ReplacesGeneralNumericDefines","features":[542]},{"name":"RoCreateNonAgilePropertySet","features":[36,542]},{"name":"RoCreatePropertySetSerializer","features":[70,542]},{"name":"RoFreeParameterizedTypeExtra","features":[542]},{"name":"RoGetMetaDataFile","features":[542]},{"name":"RoGetParameterizedTypeInstanceIID","features":[542]},{"name":"RoIsApiContractMajorVersionPresent","features":[305,542]},{"name":"RoIsApiContractPresent","features":[305,542]},{"name":"RoParameterizedTypeExtraGetTypeSignature","features":[542]},{"name":"RoParseTypeName","features":[542]},{"name":"RoResolveNamespace","features":[542]},{"name":"SERIALIZATION_TYPE_BOOLEAN","features":[542]},{"name":"SERIALIZATION_TYPE_CHAR","features":[542]},{"name":"SERIALIZATION_TYPE_ENUM","features":[542]},{"name":"SERIALIZATION_TYPE_FIELD","features":[542]},{"name":"SERIALIZATION_TYPE_I1","features":[542]},{"name":"SERIALIZATION_TYPE_I2","features":[542]},{"name":"SERIALIZATION_TYPE_I4","features":[542]},{"name":"SERIALIZATION_TYPE_I8","features":[542]},{"name":"SERIALIZATION_TYPE_PROPERTY","features":[542]},{"name":"SERIALIZATION_TYPE_R4","features":[542]},{"name":"SERIALIZATION_TYPE_R8","features":[542]},{"name":"SERIALIZATION_TYPE_STRING","features":[542]},{"name":"SERIALIZATION_TYPE_SZARRAY","features":[542]},{"name":"SERIALIZATION_TYPE_TAGGED_OBJECT","features":[542]},{"name":"SERIALIZATION_TYPE_TYPE","features":[542]},{"name":"SERIALIZATION_TYPE_U1","features":[542]},{"name":"SERIALIZATION_TYPE_U2","features":[542]},{"name":"SERIALIZATION_TYPE_U4","features":[542]},{"name":"SERIALIZATION_TYPE_U8","features":[542]},{"name":"SERIALIZATION_TYPE_UNDEFINED","features":[542]},{"name":"SIGN_MASK_FOURBYTE","features":[542]},{"name":"SIGN_MASK_ONEBYTE","features":[542]},{"name":"SIGN_MASK_TWOBYTE","features":[542]},{"name":"SUBJECT_ASSEMBLY_TYPE","features":[542]},{"name":"SUBJECT_ASSEMBLY_TYPE_W","features":[542]},{"name":"TARGET_FRAMEWORK_TYPE","features":[542]},{"name":"TARGET_FRAMEWORK_TYPE_W","features":[542]},{"name":"USER_FRAMEWORK_REGISTRY_KEY","features":[542]},{"name":"USER_FRAMEWORK_REGISTRY_KEY_W","features":[542]},{"name":"ValidatorModuleTypeEnc","features":[542]},{"name":"ValidatorModuleTypeIncr","features":[542]},{"name":"ValidatorModuleTypeInvalid","features":[542]},{"name":"ValidatorModuleTypeMax","features":[542]},{"name":"ValidatorModuleTypeMin","features":[542]},{"name":"ValidatorModuleTypeObj","features":[542]},{"name":"ValidatorModuleTypePE","features":[542]},{"name":"afContentType_Default","features":[542]},{"name":"afContentType_Mask","features":[542]},{"name":"afContentType_WindowsRuntime","features":[542]},{"name":"afDisableJITcompileOptimizer","features":[542]},{"name":"afEnableJITcompileTracking","features":[542]},{"name":"afPA_AMD64","features":[542]},{"name":"afPA_ARM","features":[542]},{"name":"afPA_FullMask","features":[542]},{"name":"afPA_IA64","features":[542]},{"name":"afPA_MSIL","features":[542]},{"name":"afPA_Mask","features":[542]},{"name":"afPA_NoPlatform","features":[542]},{"name":"afPA_None","features":[542]},{"name":"afPA_Shift","features":[542]},{"name":"afPA_Specified","features":[542]},{"name":"afPA_x86","features":[542]},{"name":"afPublicKey","features":[542]},{"name":"afRetargetable","features":[542]},{"name":"catAll","features":[542]},{"name":"catAssembly","features":[542]},{"name":"catClass","features":[542]},{"name":"catClassMembers","features":[542]},{"name":"catConstructor","features":[542]},{"name":"catDelegate","features":[542]},{"name":"catEnum","features":[542]},{"name":"catEvent","features":[542]},{"name":"catField","features":[542]},{"name":"catGenericParameter","features":[542]},{"name":"catInterface","features":[542]},{"name":"catMethod","features":[542]},{"name":"catModule","features":[542]},{"name":"catParameter","features":[542]},{"name":"catProperty","features":[542]},{"name":"catStruct","features":[542]},{"name":"cssAccurate","features":[542]},{"name":"cssDiscardTransientCAs","features":[542]},{"name":"cssQuick","features":[542]},{"name":"dclActionMask","features":[542]},{"name":"dclActionNil","features":[542]},{"name":"dclAssert","features":[542]},{"name":"dclDemand","features":[542]},{"name":"dclDeny","features":[542]},{"name":"dclInheritanceCheck","features":[542]},{"name":"dclLinktimeCheck","features":[542]},{"name":"dclMaximumValue","features":[542]},{"name":"dclNonCasDemand","features":[542]},{"name":"dclNonCasInheritance","features":[542]},{"name":"dclNonCasLinkDemand","features":[542]},{"name":"dclPermitOnly","features":[542]},{"name":"dclPrejitDenied","features":[542]},{"name":"dclPrejitGrant","features":[542]},{"name":"dclRequest","features":[542]},{"name":"dclRequestMinimum","features":[542]},{"name":"dclRequestOptional","features":[542]},{"name":"dclRequestRefuse","features":[542]},{"name":"evRTSpecialName","features":[542]},{"name":"evReservedMask","features":[542]},{"name":"evSpecialName","features":[542]},{"name":"fdAssembly","features":[542]},{"name":"fdFamANDAssem","features":[542]},{"name":"fdFamORAssem","features":[542]},{"name":"fdFamily","features":[542]},{"name":"fdFieldAccessMask","features":[542]},{"name":"fdHasDefault","features":[542]},{"name":"fdHasFieldMarshal","features":[542]},{"name":"fdHasFieldRVA","features":[542]},{"name":"fdInitOnly","features":[542]},{"name":"fdLiteral","features":[542]},{"name":"fdNotSerialized","features":[542]},{"name":"fdPinvokeImpl","features":[542]},{"name":"fdPrivate","features":[542]},{"name":"fdPrivateScope","features":[542]},{"name":"fdPublic","features":[542]},{"name":"fdRTSpecialName","features":[542]},{"name":"fdReservedMask","features":[542]},{"name":"fdSpecialName","features":[542]},{"name":"fdStatic","features":[542]},{"name":"ffContainsMetaData","features":[542]},{"name":"ffContainsNoMetaData","features":[542]},{"name":"fmExecutableImage","features":[542]},{"name":"fmFlat","features":[542]},{"name":"gpContravariant","features":[542]},{"name":"gpCovariant","features":[542]},{"name":"gpDefaultConstructorConstraint","features":[542]},{"name":"gpNoSpecialConstraint","features":[542]},{"name":"gpNonVariant","features":[542]},{"name":"gpNotNullableValueTypeConstraint","features":[542]},{"name":"gpReferenceTypeConstraint","features":[542]},{"name":"gpSpecialConstraintMask","features":[542]},{"name":"gpVarianceMask","features":[542]},{"name":"mdAbstract","features":[542]},{"name":"mdAssem","features":[542]},{"name":"mdCheckAccessOnOverride","features":[542]},{"name":"mdFamANDAssem","features":[542]},{"name":"mdFamORAssem","features":[542]},{"name":"mdFamily","features":[542]},{"name":"mdFinal","features":[542]},{"name":"mdHasSecurity","features":[542]},{"name":"mdHideBySig","features":[542]},{"name":"mdMemberAccessMask","features":[542]},{"name":"mdNewSlot","features":[542]},{"name":"mdPinvokeImpl","features":[542]},{"name":"mdPrivate","features":[542]},{"name":"mdPrivateScope","features":[542]},{"name":"mdPublic","features":[542]},{"name":"mdRTSpecialName","features":[542]},{"name":"mdRequireSecObject","features":[542]},{"name":"mdReservedMask","features":[542]},{"name":"mdReuseSlot","features":[542]},{"name":"mdSpecialName","features":[542]},{"name":"mdStatic","features":[542]},{"name":"mdUnmanagedExport","features":[542]},{"name":"mdVirtual","features":[542]},{"name":"mdVtableLayoutMask","features":[542]},{"name":"mdtAssembly","features":[542]},{"name":"mdtAssemblyRef","features":[542]},{"name":"mdtBaseType","features":[542]},{"name":"mdtCustomAttribute","features":[542]},{"name":"mdtEvent","features":[542]},{"name":"mdtExportedType","features":[542]},{"name":"mdtFieldDef","features":[542]},{"name":"mdtFile","features":[542]},{"name":"mdtGenericParam","features":[542]},{"name":"mdtGenericParamConstraint","features":[542]},{"name":"mdtInterfaceImpl","features":[542]},{"name":"mdtManifestResource","features":[542]},{"name":"mdtMemberRef","features":[542]},{"name":"mdtMethodDef","features":[542]},{"name":"mdtMethodImpl","features":[542]},{"name":"mdtMethodSpec","features":[542]},{"name":"mdtModule","features":[542]},{"name":"mdtModuleRef","features":[542]},{"name":"mdtName","features":[542]},{"name":"mdtParamDef","features":[542]},{"name":"mdtPermission","features":[542]},{"name":"mdtProperty","features":[542]},{"name":"mdtSignature","features":[542]},{"name":"mdtString","features":[542]},{"name":"mdtTypeDef","features":[542]},{"name":"mdtTypeRef","features":[542]},{"name":"mdtTypeSpec","features":[542]},{"name":"miAggressiveInlining","features":[542]},{"name":"miCodeTypeMask","features":[542]},{"name":"miForwardRef","features":[542]},{"name":"miIL","features":[542]},{"name":"miInternalCall","features":[542]},{"name":"miManaged","features":[542]},{"name":"miManagedMask","features":[542]},{"name":"miMaxMethodImplVal","features":[542]},{"name":"miNative","features":[542]},{"name":"miNoInlining","features":[542]},{"name":"miNoOptimization","features":[542]},{"name":"miOPTIL","features":[542]},{"name":"miPreserveSig","features":[542]},{"name":"miRuntime","features":[542]},{"name":"miSecurityMitigations","features":[542]},{"name":"miSynchronized","features":[542]},{"name":"miUnmanaged","features":[542]},{"name":"miUserMask","features":[542]},{"name":"mrPrivate","features":[542]},{"name":"mrPublic","features":[542]},{"name":"mrVisibilityMask","features":[542]},{"name":"msAddOn","features":[542]},{"name":"msFire","features":[542]},{"name":"msGetter","features":[542]},{"name":"msOther","features":[542]},{"name":"msRemoveOn","features":[542]},{"name":"msSetter","features":[542]},{"name":"nlfLastError","features":[542]},{"name":"nlfMaxValue","features":[542]},{"name":"nlfNoMangle","features":[542]},{"name":"nlfNone","features":[542]},{"name":"nltAnsi","features":[542]},{"name":"nltAuto","features":[542]},{"name":"nltMaxValue","features":[542]},{"name":"nltNone","features":[542]},{"name":"nltOle","features":[542]},{"name":"nltUnicode","features":[542]},{"name":"ntaReserved","features":[542]},{"name":"ntaSizeParamIndexSpecified","features":[542]},{"name":"ofCheckIntegrity","features":[542]},{"name":"ofCopyMemory","features":[542]},{"name":"ofNoTransform","features":[542]},{"name":"ofNoTypeLib","features":[542]},{"name":"ofRead","features":[542]},{"name":"ofReadOnly","features":[542]},{"name":"ofReadWriteMask","features":[542]},{"name":"ofReserved","features":[542]},{"name":"ofReserved1","features":[542]},{"name":"ofReserved2","features":[542]},{"name":"ofReserved3","features":[542]},{"name":"ofTakeOwnership","features":[542]},{"name":"ofWrite","features":[542]},{"name":"pdHasDefault","features":[542]},{"name":"pdHasFieldMarshal","features":[542]},{"name":"pdIn","features":[542]},{"name":"pdOptional","features":[542]},{"name":"pdOut","features":[542]},{"name":"pdReservedMask","features":[542]},{"name":"pdUnused","features":[542]},{"name":"pe32BitPreferred","features":[542]},{"name":"pe32BitRequired","features":[542]},{"name":"pe32Plus","features":[542]},{"name":"pe32Unmanaged","features":[542]},{"name":"peILonly","features":[542]},{"name":"peNot","features":[542]},{"name":"pmBestFitDisabled","features":[542]},{"name":"pmBestFitEnabled","features":[542]},{"name":"pmBestFitMask","features":[542]},{"name":"pmBestFitUseAssem","features":[542]},{"name":"pmCallConvCdecl","features":[542]},{"name":"pmCallConvFastcall","features":[542]},{"name":"pmCallConvMask","features":[542]},{"name":"pmCallConvStdcall","features":[542]},{"name":"pmCallConvThiscall","features":[542]},{"name":"pmCallConvWinapi","features":[542]},{"name":"pmCharSetAnsi","features":[542]},{"name":"pmCharSetAuto","features":[542]},{"name":"pmCharSetMask","features":[542]},{"name":"pmCharSetNotSpec","features":[542]},{"name":"pmCharSetUnicode","features":[542]},{"name":"pmMaxValue","features":[542]},{"name":"pmNoMangle","features":[542]},{"name":"pmSupportsLastError","features":[542]},{"name":"pmThrowOnUnmappableCharDisabled","features":[542]},{"name":"pmThrowOnUnmappableCharEnabled","features":[542]},{"name":"pmThrowOnUnmappableCharMask","features":[542]},{"name":"pmThrowOnUnmappableCharUseAssem","features":[542]},{"name":"prHasDefault","features":[542]},{"name":"prRTSpecialName","features":[542]},{"name":"prReservedMask","features":[542]},{"name":"prSpecialName","features":[542]},{"name":"prUnused","features":[542]},{"name":"regConfig","features":[542]},{"name":"regHasRefs","features":[542]},{"name":"regNoCopy","features":[542]},{"name":"sdExecute","features":[542]},{"name":"sdNone","features":[542]},{"name":"sdReadOnly","features":[542]},{"name":"sdReadWrite","features":[542]},{"name":"srNoBaseReloc","features":[542]},{"name":"srRelocAbsolute","features":[542]},{"name":"srRelocAbsolutePtr","features":[542]},{"name":"srRelocAbsoluteTagged","features":[542]},{"name":"srRelocCodeRelative","features":[542]},{"name":"srRelocDir64","features":[542]},{"name":"srRelocDir64Ptr","features":[542]},{"name":"srRelocFilePos","features":[542]},{"name":"srRelocHighAdj","features":[542]},{"name":"srRelocHighLow","features":[542]},{"name":"srRelocHighLowPtr","features":[542]},{"name":"srRelocIA64Imm64","features":[542]},{"name":"srRelocIA64Imm64Ptr","features":[542]},{"name":"srRelocIA64PcRel25","features":[542]},{"name":"srRelocIA64PcRel64","features":[542]},{"name":"srRelocMapToken","features":[542]},{"name":"srRelocPtr","features":[542]},{"name":"srRelocRelative","features":[542]},{"name":"srRelocRelativePtr","features":[542]},{"name":"srRelocSentinel","features":[542]},{"name":"tdAbstract","features":[542]},{"name":"tdAnsiClass","features":[542]},{"name":"tdAutoClass","features":[542]},{"name":"tdAutoLayout","features":[542]},{"name":"tdBeforeFieldInit","features":[542]},{"name":"tdClass","features":[542]},{"name":"tdClassSemanticsMask","features":[542]},{"name":"tdCustomFormatClass","features":[542]},{"name":"tdCustomFormatMask","features":[542]},{"name":"tdExplicitLayout","features":[542]},{"name":"tdForwarder","features":[542]},{"name":"tdHasSecurity","features":[542]},{"name":"tdImport","features":[542]},{"name":"tdInterface","features":[542]},{"name":"tdLayoutMask","features":[542]},{"name":"tdNestedAssembly","features":[542]},{"name":"tdNestedFamANDAssem","features":[542]},{"name":"tdNestedFamORAssem","features":[542]},{"name":"tdNestedFamily","features":[542]},{"name":"tdNestedPrivate","features":[542]},{"name":"tdNestedPublic","features":[542]},{"name":"tdNotPublic","features":[542]},{"name":"tdPublic","features":[542]},{"name":"tdRTSpecialName","features":[542]},{"name":"tdReservedMask","features":[542]},{"name":"tdSealed","features":[542]},{"name":"tdSequentialLayout","features":[542]},{"name":"tdSerializable","features":[542]},{"name":"tdSpecialName","features":[542]},{"name":"tdStringFormatMask","features":[542]},{"name":"tdUnicodeClass","features":[542]},{"name":"tdVisibilityMask","features":[542]},{"name":"tdWindowsRuntime","features":[542]}],"641":[{"name":"IPdfRendererNative","features":[611]},{"name":"PDF_RENDER_PARAMS","features":[305,396,611]},{"name":"PFN_PDF_CREATE_RENDERER","features":[397,611]},{"name":"PdfCreateRenderer","features":[397,611]}],"642":[{"name":"IPrintDocumentPageSource","features":[612]},{"name":"IPrintManagerInterop","features":[612]},{"name":"IPrintPreviewPageCollection","features":[612]},{"name":"IPrintWorkflowConfigurationNative","features":[612]},{"name":"IPrintWorkflowObjectModelSourceFileContentNative","features":[612]},{"name":"IPrintWorkflowXpsObjectModelTargetPackageNative","features":[612]},{"name":"IPrintWorkflowXpsReceiver","features":[612]},{"name":"IPrintWorkflowXpsReceiver2","features":[612]},{"name":"IPrinting3DManagerInterop","features":[612]}],"643":[{"name":"CpAicLaunchAdminProcess","features":[613]},{"name":"CpCreateProcess","features":[613]},{"name":"CpCreateProcessAsUser","features":[613]},{"name":"CreateProcessMethod","features":[613]},{"name":"IDDEInitializer","features":[613]}],"644":[{"name":"HANDLE_ACCESS_OPTIONS","features":[614]},{"name":"HANDLE_CREATION_OPTIONS","features":[614]},{"name":"HANDLE_OPTIONS","features":[614]},{"name":"HANDLE_SHARING_OPTIONS","features":[614]},{"name":"HAO_DELETE","features":[614]},{"name":"HAO_NONE","features":[614]},{"name":"HAO_READ","features":[614]},{"name":"HAO_READ_ATTRIBUTES","features":[614]},{"name":"HAO_WRITE","features":[614]},{"name":"HCO_CREATE_ALWAYS","features":[614]},{"name":"HCO_CREATE_NEW","features":[614]},{"name":"HCO_OPEN_ALWAYS","features":[614]},{"name":"HCO_OPEN_EXISTING","features":[614]},{"name":"HCO_TRUNCATE_EXISTING","features":[614]},{"name":"HO_DELETE_ON_CLOSE","features":[614]},{"name":"HO_NONE","features":[614]},{"name":"HO_NO_BUFFERING","features":[614]},{"name":"HO_OPEN_REQUIRING_OPLOCK","features":[614]},{"name":"HO_OVERLAPPED","features":[614]},{"name":"HO_RANDOM_ACCESS","features":[614]},{"name":"HO_SEQUENTIAL_SCAN","features":[614]},{"name":"HO_WRITE_THROUGH","features":[614]},{"name":"HSO_SHARE_DELETE","features":[614]},{"name":"HSO_SHARE_NONE","features":[614]},{"name":"HSO_SHARE_READ","features":[614]},{"name":"HSO_SHARE_WRITE","features":[614]},{"name":"IOplockBreakingHandler","features":[614]},{"name":"IRandomAccessStreamFileAccessMode","features":[614]},{"name":"IStorageFolderHandleAccess","features":[614]},{"name":"IStorageItemHandleAccess","features":[614]},{"name":"IUnbufferedFileHandleOplockCallback","features":[614]},{"name":"IUnbufferedFileHandleProvider","features":[614]}],"646":[{"name":"AADBE_ADD_ENTRY","features":[338]},{"name":"AADBE_DEL_ENTRY","features":[338]},{"name":"ACTCTX_FLAG_APPLICATION_NAME_VALID","features":[338]},{"name":"ACTCTX_FLAG_ASSEMBLY_DIRECTORY_VALID","features":[338]},{"name":"ACTCTX_FLAG_HMODULE_VALID","features":[338]},{"name":"ACTCTX_FLAG_LANGID_VALID","features":[338]},{"name":"ACTCTX_FLAG_PROCESSOR_ARCHITECTURE_VALID","features":[338]},{"name":"ACTCTX_FLAG_RESOURCE_NAME_VALID","features":[338]},{"name":"ACTCTX_FLAG_SET_PROCESS_DEFAULT","features":[338]},{"name":"ACTCTX_FLAG_SOURCE_IS_ASSEMBLYREF","features":[338]},{"name":"ACTCTX_SECTION_KEYED_DATA_2600","features":[305,338]},{"name":"ACTCTX_SECTION_KEYED_DATA_ASSEMBLY_METADATA","features":[338]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION","features":[305,338]},{"name":"ACTIVATION_CONTEXT_BASIC_INFORMATION_DEFINED","features":[338]},{"name":"AC_LINE_BACKUP_POWER","features":[338]},{"name":"AC_LINE_OFFLINE","features":[338]},{"name":"AC_LINE_ONLINE","features":[338]},{"name":"AC_LINE_UNKNOWN","features":[338]},{"name":"ADN_DEL_IF_EMPTY","features":[338]},{"name":"ADN_DEL_UNC_PATHS","features":[338]},{"name":"ADN_DONT_DEL_DIR","features":[338]},{"name":"ADN_DONT_DEL_SUBDIRS","features":[338]},{"name":"AFSR_BACKNEW","features":[338]},{"name":"AFSR_EXTRAINCREFCNT","features":[338]},{"name":"AFSR_NODELETENEW","features":[338]},{"name":"AFSR_NOMESSAGES","features":[338]},{"name":"AFSR_NOPROGRESS","features":[338]},{"name":"AFSR_RESTORE","features":[338]},{"name":"AFSR_UPDREFCNT","features":[338]},{"name":"AFSR_USEREFCNT","features":[338]},{"name":"AIF_FORCE_FILE_IN_USE","features":[338]},{"name":"AIF_NOLANGUAGECHECK","features":[338]},{"name":"AIF_NOOVERWRITE","features":[338]},{"name":"AIF_NOSKIP","features":[338]},{"name":"AIF_NOVERSIONCHECK","features":[338]},{"name":"AIF_NO_VERSION_DIALOG","features":[338]},{"name":"AIF_QUIET","features":[338]},{"name":"AIF_REPLACEONLY","features":[338]},{"name":"AIF_WARNIFSKIP","features":[338]},{"name":"ALINF_BKINSTALL","features":[338]},{"name":"ALINF_CHECKBKDATA","features":[338]},{"name":"ALINF_DELAYREGISTEROCX","features":[338]},{"name":"ALINF_NGCONV","features":[338]},{"name":"ALINF_QUIET","features":[338]},{"name":"ALINF_ROLLBACK","features":[338]},{"name":"ALINF_ROLLBKDOALL","features":[338]},{"name":"ALINF_UPDHLPDLLS","features":[338]},{"name":"APPLICATION_RECOVERY_CALLBACK","features":[338]},{"name":"ARSR_NOMESSAGES","features":[338]},{"name":"ARSR_REGSECTION","features":[338]},{"name":"ARSR_REMOVREGBKDATA","features":[338]},{"name":"ARSR_RESTORE","features":[338]},{"name":"ATOM_FLAG_GLOBAL","features":[338]},{"name":"AT_ARP","features":[338]},{"name":"AT_ENTITY","features":[338]},{"name":"AT_NULL","features":[338]},{"name":"AddDelBackupEntryA","features":[338]},{"name":"AddDelBackupEntryW","features":[338]},{"name":"AdvInstallFileA","features":[305,338]},{"name":"AdvInstallFileW","features":[305,338]},{"name":"ApphelpCheckShellObject","features":[305,338]},{"name":"BACKUP_GHOSTED_FILE_EXTENTS","features":[338]},{"name":"BACKUP_INVALID","features":[338]},{"name":"BASE_SEARCH_PATH_DISABLE_SAFE_SEARCHMODE","features":[338]},{"name":"BASE_SEARCH_PATH_ENABLE_SAFE_SEARCHMODE","features":[338]},{"name":"BASE_SEARCH_PATH_PERMANENT","features":[338]},{"name":"BATTERY_FLAG_CHARGING","features":[338]},{"name":"BATTERY_FLAG_CRITICAL","features":[338]},{"name":"BATTERY_FLAG_HIGH","features":[338]},{"name":"BATTERY_FLAG_LOW","features":[338]},{"name":"BATTERY_FLAG_NO_BATTERY","features":[338]},{"name":"BATTERY_FLAG_UNKNOWN","features":[338]},{"name":"BATTERY_LIFE_UNKNOWN","features":[338]},{"name":"BATTERY_PERCENTAGE_UNKNOWN","features":[338]},{"name":"BAUD_075","features":[338]},{"name":"BAUD_110","features":[338]},{"name":"BAUD_115200","features":[338]},{"name":"BAUD_1200","features":[338]},{"name":"BAUD_128K","features":[338]},{"name":"BAUD_134_5","features":[338]},{"name":"BAUD_14400","features":[338]},{"name":"BAUD_150","features":[338]},{"name":"BAUD_1800","features":[338]},{"name":"BAUD_19200","features":[338]},{"name":"BAUD_2400","features":[338]},{"name":"BAUD_300","features":[338]},{"name":"BAUD_38400","features":[338]},{"name":"BAUD_4800","features":[338]},{"name":"BAUD_56K","features":[338]},{"name":"BAUD_57600","features":[338]},{"name":"BAUD_600","features":[338]},{"name":"BAUD_7200","features":[338]},{"name":"BAUD_9600","features":[338]},{"name":"BAUD_USER","features":[338]},{"name":"CABINFOA","features":[338]},{"name":"CABINFOW","features":[338]},{"name":"CATID_DeleteBrowsingHistory","features":[338]},{"name":"CBR_110","features":[338]},{"name":"CBR_115200","features":[338]},{"name":"CBR_1200","features":[338]},{"name":"CBR_128000","features":[338]},{"name":"CBR_14400","features":[338]},{"name":"CBR_19200","features":[338]},{"name":"CBR_2400","features":[338]},{"name":"CBR_256000","features":[338]},{"name":"CBR_300","features":[338]},{"name":"CBR_38400","features":[338]},{"name":"CBR_4800","features":[338]},{"name":"CBR_56000","features":[338]},{"name":"CBR_57600","features":[338]},{"name":"CBR_600","features":[338]},{"name":"CBR_9600","features":[338]},{"name":"CE_DNS","features":[338]},{"name":"CE_IOE","features":[338]},{"name":"CE_MODE","features":[338]},{"name":"CE_OOP","features":[338]},{"name":"CE_PTO","features":[338]},{"name":"CE_TXFULL","features":[338]},{"name":"CLIENT_ID","features":[305,338]},{"name":"CL_NL_ENTITY","features":[338]},{"name":"CL_NL_IP","features":[338]},{"name":"CL_NL_IPX","features":[338]},{"name":"CL_TL_ENTITY","features":[338]},{"name":"CL_TL_NBF","features":[338]},{"name":"CL_TL_UDP","features":[338]},{"name":"CODEINTEGRITY_OPTION_DEBUGMODE_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_FLIGHTING_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_FLIGHT_BUILD","features":[338]},{"name":"CODEINTEGRITY_OPTION_HVCI_IUM_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_AUDITMODE_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_HVCI_KMCI_STRICTMODE_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_PREPRODUCTION_BUILD","features":[338]},{"name":"CODEINTEGRITY_OPTION_TESTSIGN","features":[338]},{"name":"CODEINTEGRITY_OPTION_TEST_BUILD","features":[338]},{"name":"CODEINTEGRITY_OPTION_UMCI_AUDITMODE_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_UMCI_ENABLED","features":[338]},{"name":"CODEINTEGRITY_OPTION_UMCI_EXCLUSIONPATHS_ENABLED","features":[338]},{"name":"COMMPROP_INITIALIZED","features":[338]},{"name":"CONTEXT_SIZE","features":[338]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MAX","features":[338]},{"name":"COPYFILE2_IO_CYCLE_SIZE_MIN","features":[338]},{"name":"COPYFILE2_IO_RATE_MIN","features":[338]},{"name":"COPYFILE2_MESSAGE_COPY_OFFLOAD","features":[338]},{"name":"COPY_FILE2_V2_DONT_COPY_JUNCTIONS","features":[338]},{"name":"COPY_FILE2_V2_VALID_FLAGS","features":[338]},{"name":"COPY_FILE_ALLOW_DECRYPTED_DESTINATION","features":[338]},{"name":"COPY_FILE_COPY_SYMLINK","features":[338]},{"name":"COPY_FILE_DIRECTORY","features":[338]},{"name":"COPY_FILE_DISABLE_PRE_ALLOCATION","features":[338]},{"name":"COPY_FILE_DONT_REQUEST_DEST_WRITE_DAC","features":[338]},{"name":"COPY_FILE_ENABLE_LOW_FREE_SPACE_MODE","features":[338]},{"name":"COPY_FILE_ENABLE_SPARSE_COPY","features":[338]},{"name":"COPY_FILE_FAIL_IF_EXISTS","features":[338]},{"name":"COPY_FILE_IGNORE_EDP_BLOCK","features":[338]},{"name":"COPY_FILE_IGNORE_SOURCE_ENCRYPTION","features":[338]},{"name":"COPY_FILE_NO_BUFFERING","features":[338]},{"name":"COPY_FILE_NO_OFFLOAD","features":[338]},{"name":"COPY_FILE_OPEN_AND_COPY_REPARSE_POINT","features":[338]},{"name":"COPY_FILE_OPEN_SOURCE_FOR_WRITE","features":[338]},{"name":"COPY_FILE_REQUEST_COMPRESSED_TRAFFIC","features":[338]},{"name":"COPY_FILE_REQUEST_SECURITY_PRIVILEGES","features":[338]},{"name":"COPY_FILE_RESTARTABLE","features":[338]},{"name":"COPY_FILE_RESUME_FROM_PAUSE","features":[338]},{"name":"COPY_FILE_SKIP_ALTERNATE_STREAMS","features":[338]},{"name":"CO_NL_ENTITY","features":[338]},{"name":"CO_TL_ENTITY","features":[338]},{"name":"CO_TL_NBF","features":[338]},{"name":"CO_TL_SPP","features":[338]},{"name":"CO_TL_SPX","features":[338]},{"name":"CO_TL_TCP","features":[338]},{"name":"CP_DIRECT","features":[338]},{"name":"CP_HWND","features":[338]},{"name":"CP_LEVEL","features":[338]},{"name":"CP_OPEN","features":[338]},{"name":"CREATE_FOR_DIR","features":[338]},{"name":"CREATE_FOR_IMPORT","features":[338]},{"name":"CRITICAL_SECTION_NO_DEBUG_INFO","features":[338]},{"name":"CUSTOM_SYSTEM_EVENT_TRIGGER_CONFIG","features":[338]},{"name":"CameraUIControl","features":[338]},{"name":"CameraUIControlCaptureMode","features":[338]},{"name":"CameraUIControlLinearSelectionMode","features":[338]},{"name":"CameraUIControlMode","features":[338]},{"name":"CameraUIControlPhotoFormat","features":[338]},{"name":"CameraUIControlVideoFormat","features":[338]},{"name":"CameraUIControlViewType","features":[338]},{"name":"CancelDeviceWakeupRequest","features":[305,338]},{"name":"CloseINFEngine","features":[338]},{"name":"ConvertAuxiliaryCounterToPerformanceCounter","features":[338]},{"name":"ConvertPerformanceCounterToAuxiliaryCounter","features":[338]},{"name":"DATETIME","features":[338]},{"name":"DCIBeginAccess","features":[338]},{"name":"DCICMD","features":[338]},{"name":"DCICREATEINPUT","features":[338]},{"name":"DCICREATEOFFSCREENSURFACE","features":[338]},{"name":"DCICREATEOVERLAYSURFACE","features":[338]},{"name":"DCICREATEPRIMARYSURFACE","features":[338]},{"name":"DCICloseProvider","features":[316,338]},{"name":"DCICreateOffscreen","features":[316,338]},{"name":"DCICreateOverlay","features":[316,338]},{"name":"DCICreatePrimary","features":[316,338]},{"name":"DCIDestroy","features":[338]},{"name":"DCIDraw","features":[338]},{"name":"DCIENUMINPUT","features":[305,338]},{"name":"DCIENUMSURFACE","features":[338]},{"name":"DCIESCAPE","features":[338]},{"name":"DCIEndAccess","features":[338]},{"name":"DCIEnum","features":[305,316,338]},{"name":"DCIOFFSCREEN","features":[338]},{"name":"DCIOVERLAY","features":[338]},{"name":"DCIOpenProvider","features":[316,338]},{"name":"DCISURFACEINFO","features":[338]},{"name":"DCISetClipList","features":[305,316,338]},{"name":"DCISetDestination","features":[305,338]},{"name":"DCISetSrcDestClip","features":[305,316,338]},{"name":"DCI_1632_ACCESS","features":[338]},{"name":"DCI_ASYNC","features":[338]},{"name":"DCI_CANOVERLAY","features":[338]},{"name":"DCI_CAN_STRETCHX","features":[338]},{"name":"DCI_CAN_STRETCHXN","features":[338]},{"name":"DCI_CAN_STRETCHY","features":[338]},{"name":"DCI_CAN_STRETCHYN","features":[338]},{"name":"DCI_CHROMAKEY","features":[338]},{"name":"DCI_DWORDALIGN","features":[338]},{"name":"DCI_DWORDSIZE","features":[338]},{"name":"DCI_ERR_CURRENTLYNOTAVAIL","features":[338]},{"name":"DCI_ERR_HEIGHTALIGN","features":[338]},{"name":"DCI_ERR_INVALIDCLIPLIST","features":[338]},{"name":"DCI_ERR_INVALIDPOSITION","features":[338]},{"name":"DCI_ERR_INVALIDRECT","features":[338]},{"name":"DCI_ERR_INVALIDSTRETCH","features":[338]},{"name":"DCI_ERR_OUTOFMEMORY","features":[338]},{"name":"DCI_ERR_SURFACEISOBSCURED","features":[338]},{"name":"DCI_ERR_TOOBIGHEIGHT","features":[338]},{"name":"DCI_ERR_TOOBIGSIZE","features":[338]},{"name":"DCI_ERR_TOOBIGWIDTH","features":[338]},{"name":"DCI_ERR_UNSUPPORTEDFORMAT","features":[338]},{"name":"DCI_ERR_UNSUPPORTEDMASK","features":[338]},{"name":"DCI_ERR_WIDTHALIGN","features":[338]},{"name":"DCI_ERR_XALIGN","features":[338]},{"name":"DCI_ERR_XYALIGN","features":[338]},{"name":"DCI_ERR_YALIGN","features":[338]},{"name":"DCI_FAIL_GENERIC","features":[338]},{"name":"DCI_FAIL_INVALIDSURFACE","features":[338]},{"name":"DCI_FAIL_UNSUPPORTED","features":[338]},{"name":"DCI_FAIL_UNSUPPORTEDVERSION","features":[338]},{"name":"DCI_OFFSCREEN","features":[338]},{"name":"DCI_OK","features":[338]},{"name":"DCI_OVERLAY","features":[338]},{"name":"DCI_PRIMARY","features":[338]},{"name":"DCI_STATUS_CHROMAKEYCHANGED","features":[338]},{"name":"DCI_STATUS_FORMATCHANGED","features":[338]},{"name":"DCI_STATUS_POINTERCHANGED","features":[338]},{"name":"DCI_STATUS_STRIDECHANGED","features":[338]},{"name":"DCI_STATUS_SURFACEINFOCHANGED","features":[338]},{"name":"DCI_STATUS_WASSTILLDRAWING","features":[338]},{"name":"DCI_SURFACE_TYPE","features":[338]},{"name":"DCI_VERSION","features":[338]},{"name":"DCI_VISIBLE","features":[338]},{"name":"DCI_WRITEONLY","features":[338]},{"name":"DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION","features":[338]},{"name":"DECISION_LOCATION","features":[338]},{"name":"DECISION_LOCATION_AUDIT","features":[338]},{"name":"DECISION_LOCATION_ENFORCE_STATE_LIST","features":[338]},{"name":"DECISION_LOCATION_ENTERPRISE_DEFINED_CLASS_ID","features":[338]},{"name":"DECISION_LOCATION_FAILED_CONVERT_GUID","features":[338]},{"name":"DECISION_LOCATION_GLOBAL_BUILT_IN_LIST","features":[338]},{"name":"DECISION_LOCATION_NOT_FOUND","features":[338]},{"name":"DECISION_LOCATION_PARAMETER_VALIDATION","features":[338]},{"name":"DECISION_LOCATION_PROVIDER_BUILT_IN_LIST","features":[338]},{"name":"DECISION_LOCATION_REFRESH_GLOBAL_DATA","features":[338]},{"name":"DECISION_LOCATION_UNKNOWN","features":[338]},{"name":"DELAYLOAD_GPA_FAILURE","features":[338]},{"name":"DELAYLOAD_INFO","features":[338]},{"name":"DELAYLOAD_INFO","features":[338]},{"name":"DELAYLOAD_PROC_DESCRIPTOR","features":[338]},{"name":"DELETE_BROWSING_HISTORY_COOKIES","features":[338]},{"name":"DELETE_BROWSING_HISTORY_DOWNLOADHISTORY","features":[338]},{"name":"DELETE_BROWSING_HISTORY_FORMDATA","features":[338]},{"name":"DELETE_BROWSING_HISTORY_HISTORY","features":[338]},{"name":"DELETE_BROWSING_HISTORY_PASSWORDS","features":[338]},{"name":"DELETE_BROWSING_HISTORY_PRESERVEFAVORITES","features":[338]},{"name":"DELETE_BROWSING_HISTORY_TIF","features":[338]},{"name":"DOCKINFO_DOCKED","features":[338]},{"name":"DOCKINFO_UNDOCKED","features":[338]},{"name":"DOCKINFO_USER_SUPPLIED","features":[338]},{"name":"DRIVE_CDROM","features":[338]},{"name":"DRIVE_FIXED","features":[338]},{"name":"DRIVE_NO_ROOT_DIR","features":[338]},{"name":"DRIVE_RAMDISK","features":[338]},{"name":"DRIVE_REMOTE","features":[338]},{"name":"DRIVE_REMOVABLE","features":[338]},{"name":"DRIVE_UNKNOWN","features":[338]},{"name":"DTR_CONTROL_DISABLE","features":[338]},{"name":"DTR_CONTROL_ENABLE","features":[338]},{"name":"DTR_CONTROL_HANDSHAKE","features":[338]},{"name":"DefaultBrowserSyncSettings","features":[338]},{"name":"DelNodeA","features":[338]},{"name":"DelNodeRunDLL32W","features":[305,338]},{"name":"DelNodeW","features":[338]},{"name":"DnsHostnameToComputerNameA","features":[305,338]},{"name":"DnsHostnameToComputerNameW","features":[305,338]},{"name":"DosDateTimeToFileTime","features":[305,338]},{"name":"EFSRPC_SECURE_ONLY","features":[338]},{"name":"EFS_DROP_ALTERNATE_STREAMS","features":[338]},{"name":"EFS_USE_RECOVERY_KEYS","features":[338]},{"name":"ENTITY_LIST_ID","features":[338]},{"name":"ENTITY_TYPE_ID","features":[338]},{"name":"ENUM_CALLBACK","features":[338]},{"name":"ER_ENTITY","features":[338]},{"name":"ER_ICMP","features":[338]},{"name":"EVENTLOG_FULL_INFO","features":[338]},{"name":"EditionUpgradeBroker","features":[338]},{"name":"EditionUpgradeHelper","features":[338]},{"name":"EnableProcessOptionalXStateFeatures","features":[305,338]},{"name":"EndpointIoControlType","features":[338]},{"name":"ExecuteCabA","features":[305,338]},{"name":"ExecuteCabW","features":[305,338]},{"name":"ExtractFilesA","features":[338]},{"name":"ExtractFilesW","features":[338]},{"name":"FAIL_FAST_GENERATE_EXCEPTION_ADDRESS","features":[338]},{"name":"FAIL_FAST_NO_HARD_ERROR_DLG","features":[338]},{"name":"FEATURE_CHANGE_TIME","features":[338]},{"name":"FEATURE_CHANGE_TIME_MODULE_RELOAD","features":[338]},{"name":"FEATURE_CHANGE_TIME_READ","features":[338]},{"name":"FEATURE_CHANGE_TIME_REBOOT","features":[338]},{"name":"FEATURE_CHANGE_TIME_SESSION","features":[338]},{"name":"FEATURE_ENABLED_STATE","features":[338]},{"name":"FEATURE_ENABLED_STATE_DEFAULT","features":[338]},{"name":"FEATURE_ENABLED_STATE_DISABLED","features":[338]},{"name":"FEATURE_ENABLED_STATE_ENABLED","features":[338]},{"name":"FEATURE_ERROR","features":[338]},{"name":"FEATURE_STATE_CHANGE_SUBSCRIPTION","features":[338]},{"name":"FIBER_FLAG_FLOAT_SWITCH","features":[338]},{"name":"FILE_CASE_SENSITIVE_INFO","features":[338]},{"name":"FILE_CREATED","features":[338]},{"name":"FILE_DIR_DISALLOWED","features":[338]},{"name":"FILE_DOES_NOT_EXIST","features":[338]},{"name":"FILE_ENCRYPTABLE","features":[338]},{"name":"FILE_EXISTS","features":[338]},{"name":"FILE_FLAG_IGNORE_IMPERSONATED_DEVICEMAP","features":[338]},{"name":"FILE_FLAG_OPEN_REQUIRING_OPLOCK","features":[338]},{"name":"FILE_IS_ENCRYPTED","features":[338]},{"name":"FILE_MAXIMUM_DISPOSITION","features":[338]},{"name":"FILE_NO_COMPRESSION","features":[338]},{"name":"FILE_OPENED","features":[338]},{"name":"FILE_OPEN_NO_RECALL","features":[338]},{"name":"FILE_OPEN_REMOTE_INSTANCE","features":[338]},{"name":"FILE_OVERWRITTEN","features":[338]},{"name":"FILE_READ_ONLY","features":[338]},{"name":"FILE_RENAME_FLAG_POSIX_SEMANTICS","features":[338]},{"name":"FILE_RENAME_FLAG_REPLACE_IF_EXISTS","features":[338]},{"name":"FILE_RENAME_FLAG_SUPPRESS_PIN_STATE_INHERITANCE","features":[338]},{"name":"FILE_ROOT_DIR","features":[338]},{"name":"FILE_SKIP_COMPLETION_PORT_ON_SUCCESS","features":[338]},{"name":"FILE_SKIP_SET_EVENT_ON_HANDLE","features":[338]},{"name":"FILE_SUPERSEDED","features":[338]},{"name":"FILE_SYSTEM_ATTR","features":[338]},{"name":"FILE_SYSTEM_DIR","features":[338]},{"name":"FILE_SYSTEM_NOT_SUPPORT","features":[338]},{"name":"FILE_UNKNOWN","features":[338]},{"name":"FILE_USER_DISALLOWED","features":[338]},{"name":"FILE_VALID_MAILSLOT_OPTION_FLAGS","features":[338]},{"name":"FILE_VALID_OPTION_FLAGS","features":[338]},{"name":"FILE_VALID_PIPE_OPTION_FLAGS","features":[338]},{"name":"FILE_VALID_SET_FLAGS","features":[338]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_ASSEMBLY_METADATA","features":[338]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_FLAGS","features":[338]},{"name":"FIND_ACTCTX_SECTION_KEY_RETURN_HACTCTX","features":[338]},{"name":"FORMAT_MESSAGE_MAX_WIDTH_MASK","features":[338]},{"name":"FS_CASE_IS_PRESERVED","features":[338]},{"name":"FS_CASE_SENSITIVE","features":[338]},{"name":"FS_FILE_COMPRESSION","features":[338]},{"name":"FS_FILE_ENCRYPTION","features":[338]},{"name":"FS_PERSISTENT_ACLS","features":[338]},{"name":"FS_UNICODE_STORED_ON_DISK","features":[338]},{"name":"FS_VOL_IS_COMPRESSED","features":[338]},{"name":"FileSaveMarkNotExistA","features":[338]},{"name":"FileSaveMarkNotExistW","features":[338]},{"name":"FileSaveRestoreOnINFA","features":[305,338]},{"name":"FileSaveRestoreOnINFW","features":[305,338]},{"name":"FileSaveRestoreW","features":[305,338]},{"name":"FileTimeToDosDateTime","features":[305,338]},{"name":"GENERIC_ENTITY","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_A","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_T","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_A_W","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_A","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_T","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_T_W","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_A","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_T","features":[338]},{"name":"GET_SYSTEM_WOW64_DIRECTORY_NAME_W_W","features":[338]},{"name":"GMEM_DDESHARE","features":[338]},{"name":"GMEM_DISCARDABLE","features":[338]},{"name":"GMEM_DISCARDED","features":[338]},{"name":"GMEM_INVALID_HANDLE","features":[338]},{"name":"GMEM_LOCKCOUNT","features":[338]},{"name":"GMEM_LOWER","features":[338]},{"name":"GMEM_MODIFY","features":[338]},{"name":"GMEM_NOCOMPACT","features":[338]},{"name":"GMEM_NODISCARD","features":[338]},{"name":"GMEM_NOTIFY","features":[338]},{"name":"GMEM_NOT_BANKED","features":[338]},{"name":"GMEM_SHARE","features":[338]},{"name":"GMEM_VALID_FLAGS","features":[338]},{"name":"GdiEntry13","features":[338]},{"name":"GetComputerNameA","features":[305,338]},{"name":"GetComputerNameW","features":[305,338]},{"name":"GetCurrentHwProfileA","features":[305,338]},{"name":"GetCurrentHwProfileW","features":[305,338]},{"name":"GetDCRegionData","features":[305,316,338]},{"name":"GetFeatureEnabledState","features":[338]},{"name":"GetFeatureVariant","features":[305,338]},{"name":"GetFirmwareEnvironmentVariableA","features":[338]},{"name":"GetFirmwareEnvironmentVariableExA","features":[338]},{"name":"GetFirmwareEnvironmentVariableExW","features":[338]},{"name":"GetFirmwareEnvironmentVariableW","features":[338]},{"name":"GetPrivateProfileIntA","features":[338]},{"name":"GetPrivateProfileIntW","features":[338]},{"name":"GetPrivateProfileSectionA","features":[338]},{"name":"GetPrivateProfileSectionNamesA","features":[338]},{"name":"GetPrivateProfileSectionNamesW","features":[338]},{"name":"GetPrivateProfileSectionW","features":[338]},{"name":"GetPrivateProfileStringA","features":[338]},{"name":"GetPrivateProfileStringW","features":[338]},{"name":"GetPrivateProfileStructA","features":[305,338]},{"name":"GetPrivateProfileStructW","features":[305,338]},{"name":"GetProfileIntA","features":[338]},{"name":"GetProfileIntW","features":[338]},{"name":"GetProfileSectionA","features":[338]},{"name":"GetProfileSectionW","features":[338]},{"name":"GetProfileStringA","features":[338]},{"name":"GetProfileStringW","features":[338]},{"name":"GetSockOptIoControlType","features":[338]},{"name":"GetSystemRegistryQuota","features":[305,338]},{"name":"GetThreadEnabledXStateFeatures","features":[338]},{"name":"GetUserNameA","features":[305,338]},{"name":"GetUserNameW","features":[305,338]},{"name":"GetVersionFromFileA","features":[305,338]},{"name":"GetVersionFromFileExA","features":[305,338]},{"name":"GetVersionFromFileExW","features":[305,338]},{"name":"GetVersionFromFileW","features":[305,338]},{"name":"GetWindowRegionData","features":[305,316,338]},{"name":"GlobalCompact","features":[338]},{"name":"GlobalFix","features":[305,338]},{"name":"GlobalUnWire","features":[305,338]},{"name":"GlobalUnfix","features":[305,338]},{"name":"GlobalWire","features":[305,338]},{"name":"HANJA_WINDOW","features":[338]},{"name":"HINSTANCE_ERROR","features":[338]},{"name":"HWINWATCH","features":[338]},{"name":"HW_PROFILE_GUIDLEN","features":[338]},{"name":"HW_PROFILE_INFOA","features":[338]},{"name":"HW_PROFILE_INFOW","features":[338]},{"name":"ICameraUIControl","features":[338]},{"name":"ICameraUIControlEventCallback","features":[338]},{"name":"IClipServiceNotificationHelper","features":[338]},{"name":"IContainerActivationHelper","features":[338]},{"name":"IDefaultBrowserSyncSettings","features":[338]},{"name":"IDeleteBrowsingHistory","features":[338]},{"name":"IE4_BACKNEW","features":[338]},{"name":"IE4_EXTRAINCREFCNT","features":[338]},{"name":"IE4_FRDOALL","features":[338]},{"name":"IE4_NODELETENEW","features":[338]},{"name":"IE4_NOENUMKEY","features":[338]},{"name":"IE4_NOMESSAGES","features":[338]},{"name":"IE4_NOPROGRESS","features":[338]},{"name":"IE4_NO_CRC_MAPPING","features":[338]},{"name":"IE4_REGSECTION","features":[338]},{"name":"IE4_REMOVREGBKDATA","features":[338]},{"name":"IE4_RESTORE","features":[338]},{"name":"IE4_UPDREFCNT","features":[338]},{"name":"IE4_USEREFCNT","features":[338]},{"name":"IE_BADID","features":[338]},{"name":"IE_BAUDRATE","features":[338]},{"name":"IE_BYTESIZE","features":[338]},{"name":"IE_DEFAULT","features":[338]},{"name":"IE_HARDWARE","features":[338]},{"name":"IE_MEMORY","features":[338]},{"name":"IE_NOPEN","features":[338]},{"name":"IE_OPEN","features":[338]},{"name":"IEditionUpgradeBroker","features":[338]},{"name":"IEditionUpgradeHelper","features":[338]},{"name":"IFClipNotificationHelper","features":[338]},{"name":"IF_ENTITY","features":[338]},{"name":"IF_GENERIC","features":[338]},{"name":"IF_MIB","features":[338]},{"name":"IGNORE","features":[338]},{"name":"IMAGE_DELAYLOAD_DESCRIPTOR","features":[338]},{"name":"IMAGE_THUNK_DATA32","features":[338]},{"name":"IMAGE_THUNK_DATA64","features":[338]},{"name":"IMEA_INIT","features":[338]},{"name":"IMEA_NEXT","features":[338]},{"name":"IMEA_PREV","features":[338]},{"name":"IMEPROA","features":[305,338]},{"name":"IMEPROW","features":[305,338]},{"name":"IMESTRUCT","features":[305,338]},{"name":"IME_BANJAtoJUNJA","features":[338]},{"name":"IME_ENABLE_CONVERT","features":[338]},{"name":"IME_ENTERWORDREGISTERMODE","features":[338]},{"name":"IME_GETCONVERSIONMODE","features":[338]},{"name":"IME_GETIMECAPS","features":[338]},{"name":"IME_GETOPEN","features":[338]},{"name":"IME_GETVERSION","features":[338]},{"name":"IME_JOHABtoKS","features":[338]},{"name":"IME_JUNJAtoBANJA","features":[338]},{"name":"IME_KStoJOHAB","features":[338]},{"name":"IME_MAXPROCESS","features":[338]},{"name":"IME_MODE_ALPHANUMERIC","features":[338]},{"name":"IME_MODE_CODEINPUT","features":[338]},{"name":"IME_MODE_DBCSCHAR","features":[338]},{"name":"IME_MODE_HANJACONVERT","features":[338]},{"name":"IME_MODE_HIRAGANA","features":[338]},{"name":"IME_MODE_KATAKANA","features":[338]},{"name":"IME_MODE_NOCODEINPUT","features":[338]},{"name":"IME_MODE_NOROMAN","features":[338]},{"name":"IME_MODE_ROMAN","features":[338]},{"name":"IME_MODE_SBCSCHAR","features":[338]},{"name":"IME_MOVEIMEWINDOW","features":[338]},{"name":"IME_REQUEST_CONVERT","features":[338]},{"name":"IME_RS_DISKERROR","features":[338]},{"name":"IME_RS_ERROR","features":[338]},{"name":"IME_RS_ILLEGAL","features":[338]},{"name":"IME_RS_INVALID","features":[338]},{"name":"IME_RS_NEST","features":[338]},{"name":"IME_RS_NOIME","features":[338]},{"name":"IME_RS_NOROOM","features":[338]},{"name":"IME_RS_NOTFOUND","features":[338]},{"name":"IME_RS_SYSTEMMODAL","features":[338]},{"name":"IME_RS_TOOLONG","features":[338]},{"name":"IME_SENDVKEY","features":[338]},{"name":"IME_SETCONVERSIONFONTEX","features":[338]},{"name":"IME_SETCONVERSIONMODE","features":[338]},{"name":"IME_SETCONVERSIONWINDOW","features":[338]},{"name":"IME_SETOPEN","features":[338]},{"name":"IME_SET_MODE","features":[338]},{"name":"IMPGetIMEA","features":[305,338]},{"name":"IMPGetIMEW","features":[305,338]},{"name":"IMPQueryIMEA","features":[305,338]},{"name":"IMPQueryIMEW","features":[305,338]},{"name":"IMPSetIMEA","features":[305,338]},{"name":"IMPSetIMEW","features":[305,338]},{"name":"INFO_CLASS_GENERIC","features":[338]},{"name":"INFO_CLASS_IMPLEMENTATION","features":[338]},{"name":"INFO_CLASS_PROTOCOL","features":[338]},{"name":"INFO_TYPE_ADDRESS_OBJECT","features":[338]},{"name":"INFO_TYPE_CONNECTION","features":[338]},{"name":"INFO_TYPE_PROVIDER","features":[338]},{"name":"INTERIM_WINDOW","features":[338]},{"name":"INVALID_ENTITY_INSTANCE","features":[338]},{"name":"IOCTL_TDI_TL_IO_CONTROL_ENDPOINT","features":[338]},{"name":"IR_CHANGECONVERT","features":[338]},{"name":"IR_CLOSECONVERT","features":[338]},{"name":"IR_DBCSCHAR","features":[338]},{"name":"IR_FULLCONVERT","features":[338]},{"name":"IR_IMESELECT","features":[338]},{"name":"IR_MODEINFO","features":[338]},{"name":"IR_OPENCONVERT","features":[338]},{"name":"IR_STRING","features":[338]},{"name":"IR_STRINGEND","features":[338]},{"name":"IR_STRINGEX","features":[338]},{"name":"IR_STRINGSTART","features":[338]},{"name":"IR_UNDETERMINE","features":[338]},{"name":"IWindowsLockModeHelper","features":[338]},{"name":"IsApiSetImplemented","features":[305,338]},{"name":"IsBadHugeReadPtr","features":[305,338]},{"name":"IsBadHugeWritePtr","features":[305,338]},{"name":"IsNTAdmin","features":[305,338]},{"name":"IsNativeVhdBoot","features":[305,338]},{"name":"IsTokenUntrusted","features":[305,338]},{"name":"JAVA_TRUST","features":[305,338]},{"name":"JIT_DEBUG_INFO","features":[338]},{"name":"KEY_ALL_KEYS","features":[338]},{"name":"KEY_OVERRIDE","features":[338]},{"name":"KEY_UNKNOWN","features":[338]},{"name":"LDR_DATA_TABLE_ENTRY","features":[305,311,338]},{"name":"LIS_NOGRPCONV","features":[338]},{"name":"LIS_QUIET","features":[338]},{"name":"LOGON32_PROVIDER_VIRTUAL","features":[338]},{"name":"LOGON32_PROVIDER_WINNT35","features":[338]},{"name":"LOGON_ZERO_PASSWORD_BUFFER","features":[338]},{"name":"LPTx","features":[338]},{"name":"LaunchINFSectionExW","features":[305,338]},{"name":"LaunchINFSectionW","features":[305,338]},{"name":"LocalCompact","features":[338]},{"name":"LocalShrink","features":[305,338]},{"name":"MAXINTATOM","features":[338]},{"name":"MAX_COMPUTERNAME_LENGTH","features":[338]},{"name":"MAX_TDI_ENTITIES","features":[338]},{"name":"MCW_DEFAULT","features":[338]},{"name":"MCW_HIDDEN","features":[338]},{"name":"MCW_RECT","features":[338]},{"name":"MCW_SCREEN","features":[338]},{"name":"MCW_VERTICAL","features":[338]},{"name":"MCW_WINDOW","features":[338]},{"name":"MICROSOFT_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[338]},{"name":"MICROSOFT_WINDOWS_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS","features":[338]},{"name":"MODE_WINDOW","features":[338]},{"name":"MulDiv","features":[338]},{"name":"NeedReboot","features":[305,338]},{"name":"NeedRebootInit","features":[338]},{"name":"OFS_MAXPATHNAME","features":[338]},{"name":"OPERATION_API_VERSION","features":[338]},{"name":"OVERWRITE_HIDDEN","features":[338]},{"name":"OpenINFEngineA","features":[338]},{"name":"OpenINFEngineW","features":[338]},{"name":"OpenMutexA","features":[305,338]},{"name":"OpenSemaphoreA","features":[305,338]},{"name":"PCF_16BITMODE","features":[338]},{"name":"PCF_DTRDSR","features":[338]},{"name":"PCF_INTTIMEOUTS","features":[338]},{"name":"PCF_PARITY_CHECK","features":[338]},{"name":"PCF_RLSD","features":[338]},{"name":"PCF_RTSCTS","features":[338]},{"name":"PCF_SETXCHAR","features":[338]},{"name":"PCF_SPECIALCHARS","features":[338]},{"name":"PCF_TOTALTIMEOUTS","features":[338]},{"name":"PCF_XONXOFF","features":[338]},{"name":"PDELAYLOAD_FAILURE_DLL_CALLBACK","features":[338]},{"name":"PERUSERSECTIONA","features":[305,338]},{"name":"PERUSERSECTIONW","features":[305,338]},{"name":"PFEATURE_STATE_CHANGE_CALLBACK","features":[338]},{"name":"PFIBER_CALLOUT_ROUTINE","features":[338]},{"name":"PQUERYACTCTXW_FUNC","features":[305,338]},{"name":"PROCESS_CREATION_ALL_APPLICATION_PACKAGES_OPT_OUT","features":[338]},{"name":"PROCESS_CREATION_CHILD_PROCESS_OVERRIDE","features":[338]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED","features":[338]},{"name":"PROCESS_CREATION_CHILD_PROCESS_RESTRICTED_UNLESS_SECURE","features":[338]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_DISABLE_PROCESS_TREE","features":[338]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_ENABLE_PROCESS_TREE","features":[338]},{"name":"PROCESS_CREATION_DESKTOP_APP_BREAKAWAY_OVERRIDE","features":[338]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ATL_THUNK_ENABLE","features":[338]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_DEP_ENABLE","features":[338]},{"name":"PROCESS_CREATION_MITIGATION_POLICY_SEHOP_ENABLE","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_ADDITIVE","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_INPUT","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_NUMBER","features":[338]},{"name":"PROC_THREAD_ATTRIBUTE_THREAD","features":[338]},{"name":"PROGRESS_CANCEL","features":[338]},{"name":"PROGRESS_CONTINUE","features":[338]},{"name":"PROGRESS_QUIET","features":[338]},{"name":"PROGRESS_STOP","features":[338]},{"name":"PROTECTION_LEVEL_SAME","features":[338]},{"name":"PST_FAX","features":[338]},{"name":"PST_LAT","features":[338]},{"name":"PST_MODEM","features":[338]},{"name":"PST_NETWORK_BRIDGE","features":[338]},{"name":"PST_PARALLELPORT","features":[338]},{"name":"PST_RS232","features":[338]},{"name":"PST_RS422","features":[338]},{"name":"PST_RS423","features":[338]},{"name":"PST_RS449","features":[338]},{"name":"PST_SCANNER","features":[338]},{"name":"PST_TCPIP_TELNET","features":[338]},{"name":"PST_UNSPECIFIED","features":[338]},{"name":"PST_X25","features":[338]},{"name":"PUBLIC_OBJECT_BASIC_INFORMATION","features":[338]},{"name":"PUBLIC_OBJECT_TYPE_INFORMATION","features":[305,338]},{"name":"PWINSTATIONQUERYINFORMATIONW","features":[305,338]},{"name":"PWLDP_CANEXECUTEBUFFER_API","features":[338]},{"name":"PWLDP_CANEXECUTEFILE_API","features":[305,338]},{"name":"PWLDP_CANEXECUTESTREAM_API","features":[356,338]},{"name":"PWLDP_ISAPPAPPROVEDBYPOLICY_API","features":[338]},{"name":"PWLDP_ISDYNAMICCODEPOLICYENABLED_API","features":[305,338]},{"name":"PWLDP_ISPRODUCTIONCONFIGURATION_API","features":[305,338]},{"name":"PWLDP_ISWCOSPRODUCTIONCONFIGURATION_API","features":[305,338]},{"name":"PWLDP_QUERYDEVICESECURITYINFORMATION_API","features":[338]},{"name":"PWLDP_QUERYDYNAMICODETRUST_API","features":[305,338]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED2_API","features":[305,338]},{"name":"PWLDP_QUERYPOLICYSETTINGENABLED_API","features":[305,338]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNMODE_API","features":[338]},{"name":"PWLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_API","features":[338]},{"name":"PWLDP_RESETPRODUCTIONCONFIGURATION_API","features":[338]},{"name":"PWLDP_RESETWCOSPRODUCTIONCONFIGURATION_API","features":[338]},{"name":"PWLDP_SETDYNAMICCODETRUST_API","features":[305,338]},{"name":"PWLDP_SETWINDOWSLOCKDOWNRESTRICTION_API","features":[338]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS","features":[338]},{"name":"QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE","features":[338]},{"name":"QUERY_ACTCTX_FLAG_NO_ADDREF","features":[338]},{"name":"QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX","features":[338]},{"name":"QueryAuxiliaryCounterFrequency","features":[338]},{"name":"QueryIdleProcessorCycleTime","features":[305,338]},{"name":"QueryIdleProcessorCycleTimeEx","features":[305,338]},{"name":"QueryInterruptTime","features":[338]},{"name":"QueryInterruptTimePrecise","features":[338]},{"name":"QueryProcessCycleTime","features":[305,338]},{"name":"QueryThreadCycleTime","features":[305,338]},{"name":"QueryUnbiasedInterruptTime","features":[305,338]},{"name":"QueryUnbiasedInterruptTimePrecise","features":[338]},{"name":"RECOVERY_DEFAULT_PING_INTERVAL","features":[338]},{"name":"REGINSTALLA","features":[305,338]},{"name":"REG_RESTORE_LOG_KEY","features":[338]},{"name":"REG_SAVE_LOG_KEY","features":[338]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_LOOPBACK","features":[338]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_OFFLINE","features":[338]},{"name":"REMOTE_PROTOCOL_INFO_FLAG_PERSISTENT_HANDLE","features":[338]},{"name":"RESETDEV","features":[338]},{"name":"RESTART_MAX_CMD_LINE","features":[338]},{"name":"RPI_FLAG_SMB2_SHARECAP_CLUSTER","features":[338]},{"name":"RPI_FLAG_SMB2_SHARECAP_CONTINUOUS_AVAILABILITY","features":[338]},{"name":"RPI_FLAG_SMB2_SHARECAP_DFS","features":[338]},{"name":"RPI_FLAG_SMB2_SHARECAP_SCALEOUT","features":[338]},{"name":"RPI_FLAG_SMB2_SHARECAP_TIMEWARP","features":[338]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DFS","features":[338]},{"name":"RPI_SMB2_FLAG_SERVERCAP_DIRECTORY_LEASING","features":[338]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LARGEMTU","features":[338]},{"name":"RPI_SMB2_FLAG_SERVERCAP_LEASING","features":[338]},{"name":"RPI_SMB2_FLAG_SERVERCAP_MULTICHANNEL","features":[338]},{"name":"RPI_SMB2_FLAG_SERVERCAP_PERSISTENT_HANDLES","features":[338]},{"name":"RPI_SMB2_SHAREFLAG_COMPRESS_DATA","features":[338]},{"name":"RPI_SMB2_SHAREFLAG_ENCRYPT_DATA","features":[338]},{"name":"RSC_FLAG_DELAYREGISTEROCX","features":[338]},{"name":"RSC_FLAG_INF","features":[338]},{"name":"RSC_FLAG_NGCONV","features":[338]},{"name":"RSC_FLAG_QUIET","features":[338]},{"name":"RSC_FLAG_SETUPAPI","features":[338]},{"name":"RSC_FLAG_SKIPDISKSPACECHECK","features":[338]},{"name":"RSC_FLAG_UPDHLPDLLS","features":[338]},{"name":"RTS_CONTROL_DISABLE","features":[338]},{"name":"RTS_CONTROL_ENABLE","features":[338]},{"name":"RTS_CONTROL_HANDSHAKE","features":[338]},{"name":"RTS_CONTROL_TOGGLE","features":[338]},{"name":"RUNCMDS_DELAYPOSTCMD","features":[338]},{"name":"RUNCMDS_NOWAIT","features":[338]},{"name":"RUNCMDS_QUIET","features":[338]},{"name":"RaiseCustomSystemEventTrigger","features":[338]},{"name":"RebootCheckOnInstallA","features":[305,338]},{"name":"RebootCheckOnInstallW","features":[305,338]},{"name":"RecordFeatureError","features":[338]},{"name":"RecordFeatureUsage","features":[338]},{"name":"RegInstallA","features":[305,338]},{"name":"RegInstallW","features":[305,338]},{"name":"RegRestoreAllA","features":[305,366,338]},{"name":"RegRestoreAllW","features":[305,366,338]},{"name":"RegSaveRestoreA","features":[305,366,338]},{"name":"RegSaveRestoreOnINFA","features":[305,366,338]},{"name":"RegSaveRestoreOnINFW","features":[305,366,338]},{"name":"RegSaveRestoreW","features":[305,366,338]},{"name":"ReplacePartitionUnit","features":[305,338]},{"name":"RequestDeviceWakeup","features":[305,338]},{"name":"RtlAnsiStringToUnicodeString","features":[305,311,338]},{"name":"RtlCharToInteger","features":[305,338]},{"name":"RtlFreeAnsiString","features":[311,338]},{"name":"RtlFreeOemString","features":[311,338]},{"name":"RtlFreeUnicodeString","features":[305,338]},{"name":"RtlGetReturnAddressHijackTarget","features":[338]},{"name":"RtlInitAnsiString","features":[311,338]},{"name":"RtlInitAnsiStringEx","features":[305,311,338]},{"name":"RtlInitString","features":[311,338]},{"name":"RtlInitStringEx","features":[305,311,338]},{"name":"RtlInitUnicodeString","features":[305,338]},{"name":"RtlIsNameLegalDOS8Dot3","features":[305,311,338]},{"name":"RtlLocalTimeToSystemTime","features":[305,338]},{"name":"RtlRaiseCustomSystemEventTrigger","features":[338]},{"name":"RtlTimeToSecondsSince1970","features":[305,338]},{"name":"RtlUnicodeStringToAnsiString","features":[305,311,338]},{"name":"RtlUnicodeStringToOemString","features":[305,311,338]},{"name":"RtlUnicodeToMultiByteSize","features":[305,338]},{"name":"RtlUniform","features":[338]},{"name":"RunSetupCommandA","features":[305,338]},{"name":"RunSetupCommandW","features":[305,338]},{"name":"SCS_32BIT_BINARY","features":[338]},{"name":"SCS_64BIT_BINARY","features":[338]},{"name":"SCS_DOS_BINARY","features":[338]},{"name":"SCS_OS216_BINARY","features":[338]},{"name":"SCS_PIF_BINARY","features":[338]},{"name":"SCS_POSIX_BINARY","features":[338]},{"name":"SCS_THIS_PLATFORM_BINARY","features":[338]},{"name":"SCS_WOW_BINARY","features":[338]},{"name":"SHUTDOWN_NORETRY","features":[338]},{"name":"SP_BAUD","features":[338]},{"name":"SP_DATABITS","features":[338]},{"name":"SP_HANDSHAKING","features":[338]},{"name":"SP_PARITY","features":[338]},{"name":"SP_PARITY_CHECK","features":[338]},{"name":"SP_RLSD","features":[338]},{"name":"SP_SERIALCOMM","features":[338]},{"name":"SP_STOPBITS","features":[338]},{"name":"STARTF_HOLOGRAPHIC","features":[338]},{"name":"STORAGE_INFO_FLAGS_ALIGNED_DEVICE","features":[338]},{"name":"STORAGE_INFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE","features":[338]},{"name":"STORAGE_INFO_OFFSET_UNKNOWN","features":[338]},{"name":"STREAM_CONTAINS_GHOSTED_FILE_EXTENTS","features":[338]},{"name":"STREAM_CONTAINS_PROPERTIES","features":[338]},{"name":"STREAM_CONTAINS_SECURITY","features":[338]},{"name":"STREAM_MODIFIED_WHEN_READ","features":[338]},{"name":"STREAM_NORMAL_ATTRIBUTE","features":[338]},{"name":"STREAM_SPARSE_ATTRIBUTE","features":[338]},{"name":"STRENTRYA","features":[338]},{"name":"STRENTRYW","features":[338]},{"name":"STRINGEXSTRUCT","features":[338]},{"name":"STRTABLEA","features":[338]},{"name":"STRTABLEW","features":[338]},{"name":"SYSTEM_BASIC_INFORMATION","features":[338]},{"name":"SYSTEM_CODEINTEGRITY_INFORMATION","features":[338]},{"name":"SYSTEM_EXCEPTION_INFORMATION","features":[338]},{"name":"SYSTEM_INTERRUPT_INFORMATION","features":[338]},{"name":"SYSTEM_LOOKASIDE_INFORMATION","features":[338]},{"name":"SYSTEM_PERFORMANCE_INFORMATION","features":[338]},{"name":"SYSTEM_POLICY_INFORMATION","features":[338]},{"name":"SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION","features":[338]},{"name":"SYSTEM_PROCESS_INFORMATION","features":[305,338]},{"name":"SYSTEM_REGISTRY_QUOTA_INFORMATION","features":[338]},{"name":"SYSTEM_STATUS_FLAG_POWER_SAVING_ON","features":[338]},{"name":"SYSTEM_THREAD_INFORMATION","features":[305,338]},{"name":"SYSTEM_TIMEOFDAY_INFORMATION","features":[338]},{"name":"S_ALLTHRESHOLD","features":[338]},{"name":"S_LEGATO","features":[338]},{"name":"S_NORMAL","features":[338]},{"name":"S_PERIOD1024","features":[338]},{"name":"S_PERIOD2048","features":[338]},{"name":"S_PERIOD512","features":[338]},{"name":"S_PERIODVOICE","features":[338]},{"name":"S_QUEUEEMPTY","features":[338]},{"name":"S_SERBDNT","features":[338]},{"name":"S_SERDCC","features":[338]},{"name":"S_SERDDR","features":[338]},{"name":"S_SERDFQ","features":[338]},{"name":"S_SERDLN","features":[338]},{"name":"S_SERDMD","features":[338]},{"name":"S_SERDPT","features":[338]},{"name":"S_SERDSH","features":[338]},{"name":"S_SERDSR","features":[338]},{"name":"S_SERDST","features":[338]},{"name":"S_SERDTP","features":[338]},{"name":"S_SERDVL","features":[338]},{"name":"S_SERDVNA","features":[338]},{"name":"S_SERMACT","features":[338]},{"name":"S_SEROFM","features":[338]},{"name":"S_SERQFUL","features":[338]},{"name":"S_STACCATO","features":[338]},{"name":"S_THRESHOLD","features":[338]},{"name":"S_WHITE1024","features":[338]},{"name":"S_WHITE2048","features":[338]},{"name":"S_WHITE512","features":[338]},{"name":"S_WHITEVOICE","features":[338]},{"name":"SendIMEMessageExA","features":[305,338]},{"name":"SendIMEMessageExW","features":[305,338]},{"name":"SetEnvironmentStringsA","features":[305,338]},{"name":"SetFirmwareEnvironmentVariableA","features":[305,338]},{"name":"SetFirmwareEnvironmentVariableExA","features":[305,338]},{"name":"SetFirmwareEnvironmentVariableExW","features":[305,338]},{"name":"SetFirmwareEnvironmentVariableW","features":[305,338]},{"name":"SetHandleCount","features":[338]},{"name":"SetMessageWaitingIndicator","features":[305,338]},{"name":"SetPerUserSecValuesA","features":[305,338]},{"name":"SetPerUserSecValuesW","features":[305,338]},{"name":"SetSockOptIoControlType","features":[338]},{"name":"SocketIoControlType","features":[338]},{"name":"SubscribeFeatureStateChangeNotification","features":[338]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX32_XP","features":[338]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_W2K","features":[338]},{"name":"TCP_REQUEST_QUERY_INFORMATION_EX_XP","features":[338]},{"name":"TCP_REQUEST_SET_INFORMATION_EX","features":[338]},{"name":"TC_GP_TRAP","features":[338]},{"name":"TC_HARDERR","features":[338]},{"name":"TC_NORMAL","features":[338]},{"name":"TC_SIGNAL","features":[338]},{"name":"TDIENTITY_ENTITY_TYPE","features":[338]},{"name":"TDIEntityID","features":[338]},{"name":"TDIObjectID","features":[338]},{"name":"TDI_TL_IO_CONTROL_ENDPOINT","features":[338]},{"name":"TDI_TL_IO_CONTROL_TYPE","features":[338]},{"name":"THREAD_NAME_INFORMATION","features":[305,338]},{"name":"THREAD_PRIORITY_ERROR_RETURN","features":[338]},{"name":"TranslateInfStringA","features":[338]},{"name":"TranslateInfStringExA","features":[338]},{"name":"TranslateInfStringExW","features":[338]},{"name":"TranslateInfStringW","features":[338]},{"name":"UMS_VERSION","features":[338]},{"name":"UNDETERMINESTRUCT","features":[338]},{"name":"UnsubscribeFeatureStateChangeNotification","features":[338]},{"name":"UserInstStubWrapperA","features":[305,338]},{"name":"UserInstStubWrapperW","features":[305,338]},{"name":"UserUnInstStubWrapperA","features":[305,338]},{"name":"UserUnInstStubWrapperW","features":[305,338]},{"name":"VALUENAME","features":[338]},{"name":"VALUENAME_BUILT_IN_LIST","features":[338]},{"name":"VALUENAME_ENTERPRISE_DEFINED_CLASS_ID","features":[338]},{"name":"VALUENAME_UNKNOWN","features":[338]},{"name":"WINNLSEnableIME","features":[305,338]},{"name":"WINNLSGetEnableStatus","features":[305,338]},{"name":"WINNLSGetIMEHotkey","features":[305,338]},{"name":"WINSTATIONINFOCLASS","features":[338]},{"name":"WINSTATIONINFORMATIONW","features":[338]},{"name":"WINWATCHNOTIFYPROC","features":[305,338]},{"name":"WINWATCHNOTIFY_CHANGED","features":[338]},{"name":"WINWATCHNOTIFY_CHANGING","features":[338]},{"name":"WINWATCHNOTIFY_DESTROY","features":[338]},{"name":"WINWATCHNOTIFY_START","features":[338]},{"name":"WINWATCHNOTIFY_STOP","features":[338]},{"name":"WLDP_CANEXECUTEBUFFER_FN","features":[338]},{"name":"WLDP_CANEXECUTEFILE_FN","features":[338]},{"name":"WLDP_DEVICE_SECURITY_INFORMATION","features":[338]},{"name":"WLDP_DLL","features":[338]},{"name":"WLDP_EXECUTION_EVALUATION_OPTIONS","features":[338]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_EXECUTE_IN_INTERACTIVE_SESSION","features":[338]},{"name":"WLDP_EXECUTION_EVALUATION_OPTION_NONE","features":[338]},{"name":"WLDP_EXECUTION_POLICY","features":[338]},{"name":"WLDP_EXECUTION_POLICY_ALLOWED","features":[338]},{"name":"WLDP_EXECUTION_POLICY_BLOCKED","features":[338]},{"name":"WLDP_EXECUTION_POLICY_REQUIRE_SANDBOX","features":[338]},{"name":"WLDP_FLAGS_SKIPSIGNATUREVALIDATION","features":[338]},{"name":"WLDP_GETLOCKDOWNPOLICY_FN","features":[338]},{"name":"WLDP_HOST","features":[338]},{"name":"WLDP_HOST_CMD","features":[338]},{"name":"WLDP_HOST_HTML","features":[338]},{"name":"WLDP_HOST_ID","features":[338]},{"name":"WLDP_HOST_ID_ALL","features":[338]},{"name":"WLDP_HOST_ID_GLOBAL","features":[338]},{"name":"WLDP_HOST_ID_IE","features":[338]},{"name":"WLDP_HOST_ID_MAX","features":[338]},{"name":"WLDP_HOST_ID_MSI","features":[338]},{"name":"WLDP_HOST_ID_POWERSHELL","features":[338]},{"name":"WLDP_HOST_ID_UNKNOWN","features":[338]},{"name":"WLDP_HOST_ID_VBA","features":[338]},{"name":"WLDP_HOST_ID_WSH","features":[338]},{"name":"WLDP_HOST_INFORMATION","features":[305,338]},{"name":"WLDP_HOST_INFORMATION_REVISION","features":[338]},{"name":"WLDP_HOST_JAVASCRIPT","features":[338]},{"name":"WLDP_HOST_MAX","features":[338]},{"name":"WLDP_HOST_MSI","features":[338]},{"name":"WLDP_HOST_OTHER","features":[338]},{"name":"WLDP_HOST_POWERSHELL","features":[338]},{"name":"WLDP_HOST_PYTHON","features":[338]},{"name":"WLDP_HOST_RUNDLL32","features":[338]},{"name":"WLDP_HOST_SVCHOST","features":[338]},{"name":"WLDP_HOST_WINDOWS_SCRIPT_HOST","features":[338]},{"name":"WLDP_HOST_XML","features":[338]},{"name":"WLDP_ISAPPAPPROVEDBYPOLICY_FN","features":[338]},{"name":"WLDP_ISCLASSINAPPROVEDLIST_FN","features":[338]},{"name":"WLDP_ISDYNAMICCODEPOLICYENABLED_FN","features":[338]},{"name":"WLDP_ISPRODUCTIONCONFIGURATION_FN","features":[338]},{"name":"WLDP_ISWCOSPRODUCTIONCONFIGURATION_FN","features":[338]},{"name":"WLDP_KEY","features":[338]},{"name":"WLDP_LOCKDOWN_AUDIT_FLAG","features":[338]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_AUDIT_FLAG","features":[338]},{"name":"WLDP_LOCKDOWN_CONFIG_CI_FLAG","features":[338]},{"name":"WLDP_LOCKDOWN_DEFINED_FLAG","features":[338]},{"name":"WLDP_LOCKDOWN_EXCLUSION_FLAG","features":[338]},{"name":"WLDP_LOCKDOWN_OFF","features":[338]},{"name":"WLDP_LOCKDOWN_UMCIENFORCE_FLAG","features":[338]},{"name":"WLDP_LOCKDOWN_UNDEFINED","features":[338]},{"name":"WLDP_POLICY_SETTING","features":[338]},{"name":"WLDP_POLICY_SETTING_AV_PERF_MODE","features":[338]},{"name":"WLDP_QUERYDANAMICCODETRUST_FN","features":[338]},{"name":"WLDP_QUERYDEVICESECURITYINFORMATION_FN","features":[338]},{"name":"WLDP_QUERYDYNAMICCODETRUST_FN","features":[338]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED2_FN","features":[338]},{"name":"WLDP_QUERYPOLICYSETTINGENABLED_FN","features":[338]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNMODE_FN","features":[338]},{"name":"WLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_FN","features":[338]},{"name":"WLDP_RESETPRODUCTIONCONFIGURATION_FN","features":[338]},{"name":"WLDP_RESETWCOSPRODUCTIONCONFIGURATION_FN","features":[338]},{"name":"WLDP_SETDYNAMICCODETRUST_FN","features":[338]},{"name":"WLDP_SETWINDOWSLOCKDOWNRESTRICTION_FN","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_LOCKED","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_MAX","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_TRIAL","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_MODE_UNLOCKED","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_MAX","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NONE","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK","features":[338]},{"name":"WLDP_WINDOWS_LOCKDOWN_RESTRICTION_NOUNLOCK_PERMANENT","features":[338]},{"name":"WM_CONVERTREQUEST","features":[338]},{"name":"WM_CONVERTRESULT","features":[338]},{"name":"WM_IMEKEYDOWN","features":[338]},{"name":"WM_IMEKEYUP","features":[338]},{"name":"WM_IME_REPORT","features":[338]},{"name":"WM_INTERIM","features":[338]},{"name":"WM_WNT_CONVERTREQUESTEX","features":[338]},{"name":"WinStationInformation","features":[338]},{"name":"WinWatchClose","features":[338]},{"name":"WinWatchDidStatusChange","features":[305,338]},{"name":"WinWatchGetClipList","features":[305,316,338]},{"name":"WinWatchNotify","features":[305,338]},{"name":"WinWatchOpen","features":[305,338]},{"name":"WldpCanExecuteBuffer","features":[338]},{"name":"WldpCanExecuteFile","features":[305,338]},{"name":"WldpCanExecuteStream","features":[356,338]},{"name":"WldpGetLockdownPolicy","features":[305,338]},{"name":"WldpIsClassInApprovedList","features":[305,338]},{"name":"WldpIsDynamicCodePolicyEnabled","features":[305,338]},{"name":"WldpQueryDeviceSecurityInformation","features":[338]},{"name":"WldpQueryDynamicCodeTrust","features":[305,338]},{"name":"WldpSetDynamicCodeTrust","features":[305,338]},{"name":"WritePrivateProfileSectionA","features":[305,338]},{"name":"WritePrivateProfileSectionW","features":[305,338]},{"name":"WritePrivateProfileStringA","features":[305,338]},{"name":"WritePrivateProfileStringW","features":[305,338]},{"name":"WritePrivateProfileStructA","features":[305,338]},{"name":"WritePrivateProfileStructW","features":[305,338]},{"name":"WriteProfileSectionA","features":[305,338]},{"name":"WriteProfileSectionW","features":[305,338]},{"name":"WriteProfileStringA","features":[305,338]},{"name":"WriteProfileStringW","features":[305,338]},{"name":"_hread","features":[338]},{"name":"_hwrite","features":[338]},{"name":"_lclose","features":[338]},{"name":"_lcreat","features":[338]},{"name":"_llseek","features":[338]},{"name":"_lopen","features":[338]},{"name":"_lread","features":[338]},{"name":"_lwrite","features":[338]},{"name":"uaw_lstrcmpW","features":[338]},{"name":"uaw_lstrcmpiW","features":[338]},{"name":"uaw_lstrlenW","features":[338]},{"name":"uaw_wcschr","features":[338]},{"name":"uaw_wcscpy","features":[338]},{"name":"uaw_wcsicmp","features":[338]},{"name":"uaw_wcslen","features":[338]},{"name":"uaw_wcsrchr","features":[338]}],"647":[{"name":"CCR_COLLISION","features":[615]},{"name":"CCR_IDENTITY","features":[615]},{"name":"CCR_NOPARENT","features":[615]},{"name":"CCR_OTHER","features":[615]},{"name":"CONFLICT_RESOLUTION_POLICY","features":[615]},{"name":"CONSTRAINT_CONFLICT_REASON","features":[615]},{"name":"CRP_DESTINATION_PROVIDER_WINS","features":[615]},{"name":"CRP_LAST","features":[615]},{"name":"CRP_NONE","features":[615]},{"name":"CRP_SOURCE_PROVIDER_WINS","features":[615]},{"name":"FCT_INTERSECTION","features":[615]},{"name":"FILTERING_TYPE","features":[615]},{"name":"FILTER_COMBINATION_TYPE","features":[615]},{"name":"FT_CURRENT_ITEMS_AND_VERSIONS_FOR_MOVED_OUT_ITEMS","features":[615]},{"name":"FT_CURRENT_ITEMS_ONLY","features":[615]},{"name":"IAsynchronousDataRetriever","features":[615]},{"name":"IChangeConflict","features":[615]},{"name":"IChangeUnitException","features":[615]},{"name":"IChangeUnitListFilterInfo","features":[615]},{"name":"IClockVector","features":[615]},{"name":"IClockVectorElement","features":[615]},{"name":"ICombinedFilterInfo","features":[615]},{"name":"IConstraintConflict","features":[615]},{"name":"IConstructReplicaKeyMap","features":[615]},{"name":"ICoreFragment","features":[615]},{"name":"ICoreFragmentInspector","features":[615]},{"name":"ICustomFilterInfo","features":[615]},{"name":"ID_PARAMETERS","features":[305,615]},{"name":"ID_PARAMETER_PAIR","features":[305,615]},{"name":"IDataRetrieverCallback","features":[615]},{"name":"IEnumChangeUnitExceptions","features":[615]},{"name":"IEnumClockVector","features":[615]},{"name":"IEnumFeedClockVector","features":[615]},{"name":"IEnumItemIds","features":[615]},{"name":"IEnumRangeExceptions","features":[615]},{"name":"IEnumSingleItemExceptions","features":[615]},{"name":"IEnumSyncChangeUnits","features":[615]},{"name":"IEnumSyncChanges","features":[615]},{"name":"IEnumSyncProviderConfigUIInfos","features":[615]},{"name":"IEnumSyncProviderInfos","features":[615]},{"name":"IFeedClockVector","features":[615]},{"name":"IFeedClockVectorElement","features":[615]},{"name":"IFilterKeyMap","features":[615]},{"name":"IFilterRequestCallback","features":[615]},{"name":"IFilterTrackingProvider","features":[615]},{"name":"IFilterTrackingRequestCallback","features":[615]},{"name":"IFilterTrackingSyncChangeBuilder","features":[615]},{"name":"IForgottenKnowledge","features":[615]},{"name":"IKnowledgeSyncProvider","features":[615]},{"name":"ILoadChangeContext","features":[615]},{"name":"IProviderConverter","features":[615]},{"name":"IRangeException","features":[615]},{"name":"IRecoverableError","features":[615]},{"name":"IRecoverableErrorData","features":[615]},{"name":"IRegisteredSyncProvider","features":[615]},{"name":"IReplicaKeyMap","features":[615]},{"name":"IRequestFilteredSync","features":[615]},{"name":"ISingleItemException","features":[615]},{"name":"ISupportFilteredSync","features":[615]},{"name":"ISupportLastWriteTime","features":[615]},{"name":"ISyncCallback","features":[615]},{"name":"ISyncCallback2","features":[615]},{"name":"ISyncChange","features":[615]},{"name":"ISyncChangeBatch","features":[615]},{"name":"ISyncChangeBatch2","features":[615]},{"name":"ISyncChangeBatchAdvanced","features":[615]},{"name":"ISyncChangeBatchBase","features":[615]},{"name":"ISyncChangeBatchBase2","features":[615]},{"name":"ISyncChangeBatchWithFilterKeyMap","features":[615]},{"name":"ISyncChangeBatchWithPrerequisite","features":[615]},{"name":"ISyncChangeBuilder","features":[615]},{"name":"ISyncChangeUnit","features":[615]},{"name":"ISyncChangeWithFilterKeyMap","features":[615]},{"name":"ISyncChangeWithPrerequisite","features":[615]},{"name":"ISyncConstraintCallback","features":[615]},{"name":"ISyncDataConverter","features":[615]},{"name":"ISyncFilter","features":[615]},{"name":"ISyncFilterDeserializer","features":[615]},{"name":"ISyncFilterInfo","features":[615]},{"name":"ISyncFilterInfo2","features":[615]},{"name":"ISyncFullEnumerationChange","features":[615]},{"name":"ISyncFullEnumerationChangeBatch","features":[615]},{"name":"ISyncFullEnumerationChangeBatch2","features":[615]},{"name":"ISyncKnowledge","features":[615]},{"name":"ISyncKnowledge2","features":[615]},{"name":"ISyncMergeTombstoneChange","features":[615]},{"name":"ISyncProvider","features":[615]},{"name":"ISyncProviderConfigUI","features":[615]},{"name":"ISyncProviderConfigUIInfo","features":[615,376]},{"name":"ISyncProviderInfo","features":[615,376]},{"name":"ISyncProviderRegistration","features":[615]},{"name":"ISyncRegistrationChange","features":[615]},{"name":"ISyncSessionExtendedErrorInfo","features":[615]},{"name":"ISyncSessionState","features":[615]},{"name":"ISyncSessionState2","features":[615]},{"name":"ISynchronousDataRetriever","features":[615]},{"name":"KCCR_COOKIE_KNOWLEDGE_CONTAINED","features":[615]},{"name":"KCCR_COOKIE_KNOWLEDGE_CONTAINS","features":[615]},{"name":"KCCR_COOKIE_KNOWLEDGE_EQUAL","features":[615]},{"name":"KCCR_COOKIE_KNOWLEDGE_NOT_COMPARABLE","features":[615]},{"name":"KNOWLEDGE_COOKIE_COMPARISON_RESULT","features":[615]},{"name":"PKEY_CONFIGUI_CAPABILITIES","features":[615,376]},{"name":"PKEY_CONFIGUI_CLSID","features":[615,376]},{"name":"PKEY_CONFIGUI_CONTENTTYPE","features":[615,376]},{"name":"PKEY_CONFIGUI_DESCRIPTION","features":[615,376]},{"name":"PKEY_CONFIGUI_ICON","features":[615,376]},{"name":"PKEY_CONFIGUI_INSTANCEID","features":[615,376]},{"name":"PKEY_CONFIGUI_IS_GLOBAL","features":[615,376]},{"name":"PKEY_CONFIGUI_MENUITEM","features":[615,376]},{"name":"PKEY_CONFIGUI_MENUITEM_NOUI","features":[615,376]},{"name":"PKEY_CONFIGUI_NAME","features":[615,376]},{"name":"PKEY_CONFIGUI_SUPPORTED_ARCHITECTURE","features":[615,376]},{"name":"PKEY_CONFIGUI_TOOLTIPS","features":[615,376]},{"name":"PKEY_PROVIDER_CAPABILITIES","features":[615,376]},{"name":"PKEY_PROVIDER_CLSID","features":[615,376]},{"name":"PKEY_PROVIDER_CONFIGUI","features":[615,376]},{"name":"PKEY_PROVIDER_CONTENTTYPE","features":[615,376]},{"name":"PKEY_PROVIDER_DESCRIPTION","features":[615,376]},{"name":"PKEY_PROVIDER_ICON","features":[615,376]},{"name":"PKEY_PROVIDER_INSTANCEID","features":[615,376]},{"name":"PKEY_PROVIDER_NAME","features":[615,376]},{"name":"PKEY_PROVIDER_SUPPORTED_ARCHITECTURE","features":[615,376]},{"name":"PKEY_PROVIDER_TOOLTIPS","features":[615,376]},{"name":"SCC_CAN_CREATE_WITHOUT_UI","features":[615]},{"name":"SCC_CAN_MODIFY_WITHOUT_UI","features":[615]},{"name":"SCC_CREATE_NOT_SUPPORTED","features":[615]},{"name":"SCC_DEFAULT","features":[615]},{"name":"SCC_MODIFY_NOT_SUPPORTED","features":[615]},{"name":"SCRA_ACCEPT_DESTINATION_PROVIDER","features":[615]},{"name":"SCRA_ACCEPT_SOURCE_PROVIDER","features":[615]},{"name":"SCRA_DEFER","features":[615]},{"name":"SCRA_MERGE","features":[615]},{"name":"SCRA_RENAME_DESTINATION","features":[615]},{"name":"SCRA_RENAME_SOURCE","features":[615]},{"name":"SCRA_TRANSFER_AND_DEFER","features":[615]},{"name":"SFEA_ABORT","features":[615]},{"name":"SFEA_FULL_ENUMERATION","features":[615]},{"name":"SFEA_PARTIAL_SYNC","features":[615]},{"name":"SPC_DEFAULT","features":[615]},{"name":"SPR_DESTINATION","features":[615]},{"name":"SPR_SOURCE","features":[615]},{"name":"SPS_CHANGE_APPLICATION","features":[615]},{"name":"SPS_CHANGE_DETECTION","features":[615]},{"name":"SPS_CHANGE_ENUMERATION","features":[615]},{"name":"SRA_ACCEPT_DESTINATION_PROVIDER","features":[615]},{"name":"SRA_ACCEPT_SOURCE_PROVIDER","features":[615]},{"name":"SRA_DEFER","features":[615]},{"name":"SRA_LAST","features":[615]},{"name":"SRA_MERGE","features":[615]},{"name":"SRA_TRANSFER_AND_DEFER","features":[615]},{"name":"SRE_CONFIGUI_ADDED","features":[615]},{"name":"SRE_CONFIGUI_REMOVED","features":[615]},{"name":"SRE_CONFIGUI_UPDATED","features":[615]},{"name":"SRE_PROVIDER_ADDED","features":[615]},{"name":"SRE_PROVIDER_REMOVED","features":[615]},{"name":"SRE_PROVIDER_STATE_CHANGED","features":[615]},{"name":"SRE_PROVIDER_UPDATED","features":[615]},{"name":"SYNC_32_BIT_SUPPORTED","features":[615]},{"name":"SYNC_64_BIT_SUPPORTED","features":[615]},{"name":"SYNC_CHANGE_FLAG_DELETED","features":[615]},{"name":"SYNC_CHANGE_FLAG_DOES_NOT_EXIST","features":[615]},{"name":"SYNC_CHANGE_FLAG_GHOST","features":[615]},{"name":"SYNC_CONSTRAINT_RESOLVE_ACTION","features":[615]},{"name":"SYNC_FILTER_CHANGE","features":[305,615]},{"name":"SYNC_FILTER_INFO_COMBINED","features":[615]},{"name":"SYNC_FILTER_INFO_FLAG_CHANGE_UNIT_LIST","features":[615]},{"name":"SYNC_FILTER_INFO_FLAG_CUSTOM","features":[615]},{"name":"SYNC_FILTER_INFO_FLAG_ITEM_LIST","features":[615]},{"name":"SYNC_FULL_ENUMERATION_ACTION","features":[615]},{"name":"SYNC_PROGRESS_STAGE","features":[615]},{"name":"SYNC_PROVIDER_CONFIGUI_CONFIGURATION_VERSION","features":[615]},{"name":"SYNC_PROVIDER_CONFIGURATION_VERSION","features":[615]},{"name":"SYNC_PROVIDER_ROLE","features":[615]},{"name":"SYNC_PROVIDER_STATE_DIRTY","features":[615]},{"name":"SYNC_PROVIDER_STATE_ENABLED","features":[615]},{"name":"SYNC_RANGE","features":[615]},{"name":"SYNC_REGISTRATION_EVENT","features":[615]},{"name":"SYNC_RESOLVE_ACTION","features":[615]},{"name":"SYNC_SERIALIZATION_VERSION","features":[615]},{"name":"SYNC_SERIALIZATION_VERSION_V1","features":[615]},{"name":"SYNC_SERIALIZATION_VERSION_V2","features":[615]},{"name":"SYNC_SERIALIZATION_VERSION_V3","features":[615]},{"name":"SYNC_SERIALIZE_REPLICA_KEY_MAP","features":[615]},{"name":"SYNC_SESSION_STATISTICS","features":[615]},{"name":"SYNC_STATISTICS","features":[615]},{"name":"SYNC_STATISTICS_RANGE_COUNT","features":[615]},{"name":"SYNC_TIME","features":[615]},{"name":"SYNC_VERSION","features":[615]},{"name":"SYNC_VERSION_FLAG_FROM_FEED","features":[615]},{"name":"SYNC_VERSION_FLAG_HAS_BY","features":[615]},{"name":"SyncProviderConfigUIConfiguration","features":[305,615]},{"name":"SyncProviderConfiguration","features":[615]},{"name":"SyncProviderRegistration","features":[615]}],"648":[{"name":"CIMTYPE_ENUMERATION","features":[556]},{"name":"CIM_BOOLEAN","features":[556]},{"name":"CIM_CHAR16","features":[556]},{"name":"CIM_DATETIME","features":[556]},{"name":"CIM_EMPTY","features":[556]},{"name":"CIM_FLAG_ARRAY","features":[556]},{"name":"CIM_ILLEGAL","features":[556]},{"name":"CIM_OBJECT","features":[556]},{"name":"CIM_REAL32","features":[556]},{"name":"CIM_REAL64","features":[556]},{"name":"CIM_REFERENCE","features":[556]},{"name":"CIM_SINT16","features":[556]},{"name":"CIM_SINT32","features":[556]},{"name":"CIM_SINT64","features":[556]},{"name":"CIM_SINT8","features":[556]},{"name":"CIM_STRING","features":[556]},{"name":"CIM_UINT16","features":[556]},{"name":"CIM_UINT32","features":[556]},{"name":"CIM_UINT64","features":[556]},{"name":"CIM_UINT8","features":[556]},{"name":"IEnumWbemClassObject","features":[556]},{"name":"IMofCompiler","features":[556]},{"name":"ISWbemDateTime","features":[356,556]},{"name":"ISWbemEventSource","features":[356,556]},{"name":"ISWbemLastError","features":[356,556]},{"name":"ISWbemLocator","features":[356,556]},{"name":"ISWbemMethod","features":[356,556]},{"name":"ISWbemMethodSet","features":[356,556]},{"name":"ISWbemNamedValue","features":[356,556]},{"name":"ISWbemNamedValueSet","features":[356,556]},{"name":"ISWbemObject","features":[356,556]},{"name":"ISWbemObjectEx","features":[356,556]},{"name":"ISWbemObjectPath","features":[356,556]},{"name":"ISWbemObjectSet","features":[356,556]},{"name":"ISWbemPrivilege","features":[356,556]},{"name":"ISWbemPrivilegeSet","features":[356,556]},{"name":"ISWbemProperty","features":[356,556]},{"name":"ISWbemPropertySet","features":[356,556]},{"name":"ISWbemQualifier","features":[356,556]},{"name":"ISWbemQualifierSet","features":[356,556]},{"name":"ISWbemRefreshableItem","features":[356,556]},{"name":"ISWbemRefresher","features":[356,556]},{"name":"ISWbemSecurity","features":[356,556]},{"name":"ISWbemServices","features":[356,556]},{"name":"ISWbemServicesEx","features":[356,556]},{"name":"ISWbemSink","features":[356,556]},{"name":"ISWbemSinkEvents","features":[356,556]},{"name":"IUnsecuredApartment","features":[556]},{"name":"IWMIExtension","features":[356,556]},{"name":"IWbemAddressResolution","features":[556]},{"name":"IWbemBackupRestore","features":[556]},{"name":"IWbemBackupRestoreEx","features":[556]},{"name":"IWbemCallResult","features":[556]},{"name":"IWbemClassObject","features":[556]},{"name":"IWbemClientConnectionTransport","features":[556]},{"name":"IWbemClientTransport","features":[556]},{"name":"IWbemConfigureRefresher","features":[556]},{"name":"IWbemConnectorLogin","features":[556]},{"name":"IWbemConstructClassObject","features":[556]},{"name":"IWbemContext","features":[556]},{"name":"IWbemDecoupledBasicEventProvider","features":[556]},{"name":"IWbemDecoupledRegistrar","features":[556]},{"name":"IWbemEventConsumerProvider","features":[556]},{"name":"IWbemEventProvider","features":[556]},{"name":"IWbemEventProviderQuerySink","features":[556]},{"name":"IWbemEventProviderSecurity","features":[556]},{"name":"IWbemEventSink","features":[556]},{"name":"IWbemHiPerfEnum","features":[556]},{"name":"IWbemHiPerfProvider","features":[556]},{"name":"IWbemLevel1Login","features":[556]},{"name":"IWbemLocator","features":[556]},{"name":"IWbemObjectAccess","features":[556]},{"name":"IWbemObjectSink","features":[556]},{"name":"IWbemObjectSinkEx","features":[556]},{"name":"IWbemObjectTextSrc","features":[556]},{"name":"IWbemPath","features":[556]},{"name":"IWbemPathKeyList","features":[556]},{"name":"IWbemPropertyProvider","features":[556]},{"name":"IWbemProviderIdentity","features":[556]},{"name":"IWbemProviderInit","features":[556]},{"name":"IWbemProviderInitSink","features":[556]},{"name":"IWbemQualifierSet","features":[556]},{"name":"IWbemQuery","features":[556]},{"name":"IWbemRefresher","features":[556]},{"name":"IWbemServices","features":[556]},{"name":"IWbemShutdown","features":[556]},{"name":"IWbemStatusCodeText","features":[556]},{"name":"IWbemTransport","features":[556]},{"name":"IWbemUnboundObjectSink","features":[556]},{"name":"IWbemUnsecuredApartment","features":[556]},{"name":"MI_ARRAY","features":[556]},{"name":"MI_Application","features":[556]},{"name":"MI_ApplicationFT","features":[556]},{"name":"MI_Application_InitializeV1","features":[556]},{"name":"MI_Array","features":[556]},{"name":"MI_ArrayField","features":[556]},{"name":"MI_BOOLEAN","features":[556]},{"name":"MI_BOOLEANA","features":[556]},{"name":"MI_BooleanA","features":[556]},{"name":"MI_BooleanAField","features":[556]},{"name":"MI_BooleanField","features":[556]},{"name":"MI_CALLBACKMODE_IGNORE","features":[556]},{"name":"MI_CALLBACKMODE_INQUIRE","features":[556]},{"name":"MI_CALLBACKMODE_REPORT","features":[556]},{"name":"MI_CALL_VERSION","features":[556]},{"name":"MI_CHAR16","features":[556]},{"name":"MI_CHAR16A","features":[556]},{"name":"MI_CHAR_TYPE","features":[556]},{"name":"MI_CallbackMode","features":[556]},{"name":"MI_CancelCallback","features":[556]},{"name":"MI_CancellationReason","features":[556]},{"name":"MI_Char16A","features":[556]},{"name":"MI_Char16AField","features":[556]},{"name":"MI_Char16Field","features":[556]},{"name":"MI_Class","features":[556]},{"name":"MI_ClassDecl","features":[556]},{"name":"MI_ClassFT","features":[556]},{"name":"MI_ClientFT_V1","features":[556]},{"name":"MI_ConstBooleanA","features":[556]},{"name":"MI_ConstBooleanAField","features":[556]},{"name":"MI_ConstBooleanField","features":[556]},{"name":"MI_ConstChar16A","features":[556]},{"name":"MI_ConstChar16AField","features":[556]},{"name":"MI_ConstChar16Field","features":[556]},{"name":"MI_ConstDatetimeA","features":[556]},{"name":"MI_ConstDatetimeAField","features":[556]},{"name":"MI_ConstDatetimeField","features":[556]},{"name":"MI_ConstInstanceA","features":[556]},{"name":"MI_ConstInstanceAField","features":[556]},{"name":"MI_ConstInstanceField","features":[556]},{"name":"MI_ConstReal32A","features":[556]},{"name":"MI_ConstReal32AField","features":[556]},{"name":"MI_ConstReal32Field","features":[556]},{"name":"MI_ConstReal64A","features":[556]},{"name":"MI_ConstReal64AField","features":[556]},{"name":"MI_ConstReal64Field","features":[556]},{"name":"MI_ConstReferenceA","features":[556]},{"name":"MI_ConstReferenceAField","features":[556]},{"name":"MI_ConstReferenceField","features":[556]},{"name":"MI_ConstSint16A","features":[556]},{"name":"MI_ConstSint16AField","features":[556]},{"name":"MI_ConstSint16Field","features":[556]},{"name":"MI_ConstSint32A","features":[556]},{"name":"MI_ConstSint32AField","features":[556]},{"name":"MI_ConstSint32Field","features":[556]},{"name":"MI_ConstSint64A","features":[556]},{"name":"MI_ConstSint64AField","features":[556]},{"name":"MI_ConstSint64Field","features":[556]},{"name":"MI_ConstSint8A","features":[556]},{"name":"MI_ConstSint8AField","features":[556]},{"name":"MI_ConstSint8Field","features":[556]},{"name":"MI_ConstStringA","features":[556]},{"name":"MI_ConstStringAField","features":[556]},{"name":"MI_ConstStringField","features":[556]},{"name":"MI_ConstUint16A","features":[556]},{"name":"MI_ConstUint16AField","features":[556]},{"name":"MI_ConstUint16Field","features":[556]},{"name":"MI_ConstUint32A","features":[556]},{"name":"MI_ConstUint32AField","features":[556]},{"name":"MI_ConstUint32Field","features":[556]},{"name":"MI_ConstUint64A","features":[556]},{"name":"MI_ConstUint64AField","features":[556]},{"name":"MI_ConstUint64Field","features":[556]},{"name":"MI_ConstUint8A","features":[556]},{"name":"MI_ConstUint8AField","features":[556]},{"name":"MI_ConstUint8Field","features":[556]},{"name":"MI_Context","features":[556]},{"name":"MI_ContextFT","features":[556]},{"name":"MI_DATETIME","features":[556]},{"name":"MI_DATETIMEA","features":[556]},{"name":"MI_Datetime","features":[556]},{"name":"MI_DatetimeA","features":[556]},{"name":"MI_DatetimeAField","features":[556]},{"name":"MI_DatetimeField","features":[556]},{"name":"MI_Deserializer","features":[556]},{"name":"MI_DeserializerFT","features":[556]},{"name":"MI_Deserializer_ClassObjectNeeded","features":[556]},{"name":"MI_DestinationOptions","features":[556]},{"name":"MI_DestinationOptionsFT","features":[556]},{"name":"MI_DestinationOptions_ImpersonationType","features":[556]},{"name":"MI_DestinationOptions_ImpersonationType_Default","features":[556]},{"name":"MI_DestinationOptions_ImpersonationType_Delegate","features":[556]},{"name":"MI_DestinationOptions_ImpersonationType_Identify","features":[556]},{"name":"MI_DestinationOptions_ImpersonationType_Impersonate","features":[556]},{"name":"MI_DestinationOptions_ImpersonationType_None","features":[556]},{"name":"MI_ERRORCATEGORY_ACCESS_DENIED","features":[556]},{"name":"MI_ERRORCATEGORY_AUTHENTICATION_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_CLOS_EERROR","features":[556]},{"name":"MI_ERRORCATEGORY_CONNECTION_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_DEADLOCK_DETECTED","features":[556]},{"name":"MI_ERRORCATEGORY_DEVICE_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_FROM_STDERR","features":[556]},{"name":"MI_ERRORCATEGORY_INVALID_ARGUMENT","features":[556]},{"name":"MI_ERRORCATEGORY_INVALID_DATA","features":[556]},{"name":"MI_ERRORCATEGORY_INVALID_OPERATION","features":[556]},{"name":"MI_ERRORCATEGORY_INVALID_RESULT","features":[556]},{"name":"MI_ERRORCATEGORY_INVALID_TYPE","features":[556]},{"name":"MI_ERRORCATEGORY_LIMITS_EXCEEDED","features":[556]},{"name":"MI_ERRORCATEGORY_METADATA_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_NOT_ENABLED","features":[556]},{"name":"MI_ERRORCATEGORY_NOT_IMPLEMENTED","features":[556]},{"name":"MI_ERRORCATEGORY_NOT_INSTALLED","features":[556]},{"name":"MI_ERRORCATEGORY_NOT_SPECIFIED","features":[556]},{"name":"MI_ERRORCATEGORY_OBJECT_NOT_FOUND","features":[556]},{"name":"MI_ERRORCATEGORY_OPEN_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_OPERATION_STOPPED","features":[556]},{"name":"MI_ERRORCATEGORY_OPERATION_TIMEOUT","features":[556]},{"name":"MI_ERRORCATEGORY_PARSER_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_PROTOCOL_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_QUOTA_EXCEEDED","features":[556]},{"name":"MI_ERRORCATEGORY_READ_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_RESOURCE_BUSY","features":[556]},{"name":"MI_ERRORCATEGORY_RESOURCE_EXISTS","features":[556]},{"name":"MI_ERRORCATEGORY_RESOURCE_UNAVAILABLE","features":[556]},{"name":"MI_ERRORCATEGORY_SECURITY_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_SYNTAX_ERROR","features":[556]},{"name":"MI_ERRORCATEGORY_WRITE_ERROR","features":[556]},{"name":"MI_ErrorCategory","features":[556]},{"name":"MI_FLAG_ABSTRACT","features":[556]},{"name":"MI_FLAG_ADOPT","features":[556]},{"name":"MI_FLAG_ANY","features":[556]},{"name":"MI_FLAG_ASSOCIATION","features":[556]},{"name":"MI_FLAG_BORROW","features":[556]},{"name":"MI_FLAG_CLASS","features":[556]},{"name":"MI_FLAG_DISABLEOVERRIDE","features":[556]},{"name":"MI_FLAG_ENABLEOVERRIDE","features":[556]},{"name":"MI_FLAG_EXPENSIVE","features":[556]},{"name":"MI_FLAG_EXTENDED","features":[556]},{"name":"MI_FLAG_IN","features":[556]},{"name":"MI_FLAG_INDICATION","features":[556]},{"name":"MI_FLAG_KEY","features":[556]},{"name":"MI_FLAG_METHOD","features":[556]},{"name":"MI_FLAG_NOT_MODIFIED","features":[556]},{"name":"MI_FLAG_NULL","features":[556]},{"name":"MI_FLAG_OUT","features":[556]},{"name":"MI_FLAG_PARAMETER","features":[556]},{"name":"MI_FLAG_PROPERTY","features":[556]},{"name":"MI_FLAG_READONLY","features":[556]},{"name":"MI_FLAG_REFERENCE","features":[556]},{"name":"MI_FLAG_REQUIRED","features":[556]},{"name":"MI_FLAG_RESTRICTED","features":[556]},{"name":"MI_FLAG_STATIC","features":[556]},{"name":"MI_FLAG_STREAM","features":[556]},{"name":"MI_FLAG_TERMINAL","features":[556]},{"name":"MI_FLAG_TOSUBCLASS","features":[556]},{"name":"MI_FLAG_TRANSLATABLE","features":[556]},{"name":"MI_FLAG_VERSION","features":[556]},{"name":"MI_FeatureDecl","features":[556]},{"name":"MI_Filter","features":[556]},{"name":"MI_FilterFT","features":[556]},{"name":"MI_HostedProvider","features":[556]},{"name":"MI_HostedProviderFT","features":[556]},{"name":"MI_INSTANCE","features":[556]},{"name":"MI_INSTANCEA","features":[556]},{"name":"MI_Instance","features":[556]},{"name":"MI_InstanceA","features":[556]},{"name":"MI_InstanceAField","features":[556]},{"name":"MI_InstanceExFT","features":[556]},{"name":"MI_InstanceFT","features":[556]},{"name":"MI_InstanceField","features":[556]},{"name":"MI_Interval","features":[556]},{"name":"MI_LOCALE_TYPE_CLOSEST_DATA","features":[556]},{"name":"MI_LOCALE_TYPE_CLOSEST_UI","features":[556]},{"name":"MI_LOCALE_TYPE_REQUESTED_DATA","features":[556]},{"name":"MI_LOCALE_TYPE_REQUESTED_UI","features":[556]},{"name":"MI_LocaleType","features":[556]},{"name":"MI_MAX_LOCALE_SIZE","features":[556]},{"name":"MI_MODULE_FLAG_BOOLEANS","features":[556]},{"name":"MI_MODULE_FLAG_CPLUSPLUS","features":[556]},{"name":"MI_MODULE_FLAG_DESCRIPTIONS","features":[556]},{"name":"MI_MODULE_FLAG_FILTER_SUPPORT","features":[556]},{"name":"MI_MODULE_FLAG_LOCALIZED","features":[556]},{"name":"MI_MODULE_FLAG_MAPPING_STRINGS","features":[556]},{"name":"MI_MODULE_FLAG_STANDARD_QUALIFIERS","features":[556]},{"name":"MI_MODULE_FLAG_VALUES","features":[556]},{"name":"MI_MainFunction","features":[556]},{"name":"MI_MethodDecl","features":[556]},{"name":"MI_MethodDecl_Invoke","features":[556]},{"name":"MI_Module","features":[556]},{"name":"MI_Module_Load","features":[556]},{"name":"MI_Module_Self","features":[556]},{"name":"MI_Module_Unload","features":[556]},{"name":"MI_OPERATIONFLAGS_BASIC_RTTI","features":[556]},{"name":"MI_OPERATIONFLAGS_DEFAULT_RTTI","features":[556]},{"name":"MI_OPERATIONFLAGS_EXPENSIVE_PROPERTIES","features":[556]},{"name":"MI_OPERATIONFLAGS_FULL_RTTI","features":[556]},{"name":"MI_OPERATIONFLAGS_LOCALIZED_QUALIFIERS","features":[556]},{"name":"MI_OPERATIONFLAGS_MANUAL_ACK_RESULTS","features":[556]},{"name":"MI_OPERATIONFLAGS_NO_RTTI","features":[556]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_DEEP_BASE_PROPS_ONLY","features":[556]},{"name":"MI_OPERATIONFLAGS_POLYMORPHISM_SHALLOW","features":[556]},{"name":"MI_OPERATIONFLAGS_REPORT_OPERATION_STARTED","features":[556]},{"name":"MI_OPERATIONFLAGS_STANDARD_RTTI","features":[556]},{"name":"MI_ObjectDecl","features":[556]},{"name":"MI_Operation","features":[556]},{"name":"MI_OperationCallback_Class","features":[556]},{"name":"MI_OperationCallback_Indication","features":[556]},{"name":"MI_OperationCallback_Instance","features":[556]},{"name":"MI_OperationCallback_PromptUser","features":[556]},{"name":"MI_OperationCallback_ResponseType","features":[556]},{"name":"MI_OperationCallback_ResponseType_No","features":[556]},{"name":"MI_OperationCallback_ResponseType_NoToAll","features":[556]},{"name":"MI_OperationCallback_ResponseType_Yes","features":[556]},{"name":"MI_OperationCallback_ResponseType_YesToAll","features":[556]},{"name":"MI_OperationCallback_StreamedParameter","features":[556]},{"name":"MI_OperationCallback_WriteError","features":[556]},{"name":"MI_OperationCallback_WriteMessage","features":[556]},{"name":"MI_OperationCallback_WriteProgress","features":[556]},{"name":"MI_OperationCallbacks","features":[556]},{"name":"MI_OperationFT","features":[556]},{"name":"MI_OperationOptions","features":[556]},{"name":"MI_OperationOptionsFT","features":[556]},{"name":"MI_PROMPTTYPE_CRITICAL","features":[556]},{"name":"MI_PROMPTTYPE_NORMAL","features":[556]},{"name":"MI_PROVIDER_ARCHITECTURE_32BIT","features":[556]},{"name":"MI_PROVIDER_ARCHITECTURE_64BIT","features":[556]},{"name":"MI_ParameterDecl","features":[556]},{"name":"MI_ParameterSet","features":[556]},{"name":"MI_ParameterSetFT","features":[556]},{"name":"MI_PromptType","features":[556]},{"name":"MI_PropertyDecl","features":[556]},{"name":"MI_PropertySet","features":[556]},{"name":"MI_PropertySetFT","features":[556]},{"name":"MI_ProviderArchitecture","features":[556]},{"name":"MI_ProviderFT","features":[556]},{"name":"MI_ProviderFT_AssociatorInstances","features":[556]},{"name":"MI_ProviderFT_CreateInstance","features":[556]},{"name":"MI_ProviderFT_DeleteInstance","features":[556]},{"name":"MI_ProviderFT_DisableIndications","features":[556]},{"name":"MI_ProviderFT_EnableIndications","features":[556]},{"name":"MI_ProviderFT_EnumerateInstances","features":[556]},{"name":"MI_ProviderFT_GetInstance","features":[556]},{"name":"MI_ProviderFT_Invoke","features":[556]},{"name":"MI_ProviderFT_Load","features":[556]},{"name":"MI_ProviderFT_ModifyInstance","features":[556]},{"name":"MI_ProviderFT_ReferenceInstances","features":[556]},{"name":"MI_ProviderFT_Subscribe","features":[556]},{"name":"MI_ProviderFT_Unload","features":[556]},{"name":"MI_ProviderFT_Unsubscribe","features":[556]},{"name":"MI_Qualifier","features":[556]},{"name":"MI_QualifierDecl","features":[556]},{"name":"MI_QualifierSet","features":[556]},{"name":"MI_QualifierSetFT","features":[556]},{"name":"MI_REAL32","features":[556]},{"name":"MI_REAL32A","features":[556]},{"name":"MI_REAL64","features":[556]},{"name":"MI_REAL64A","features":[556]},{"name":"MI_REASON_NONE","features":[556]},{"name":"MI_REASON_SERVICESTOP","features":[556]},{"name":"MI_REASON_SHUTDOWN","features":[556]},{"name":"MI_REASON_TIMEOUT","features":[556]},{"name":"MI_REFERENCE","features":[556]},{"name":"MI_REFERENCEA","features":[556]},{"name":"MI_RESULT_ACCESS_DENIED","features":[556]},{"name":"MI_RESULT_ALREADY_EXISTS","features":[556]},{"name":"MI_RESULT_CLASS_HAS_CHILDREN","features":[556]},{"name":"MI_RESULT_CLASS_HAS_INSTANCES","features":[556]},{"name":"MI_RESULT_CONTINUATION_ON_ERROR_NOT_SUPPORTED","features":[556]},{"name":"MI_RESULT_FAILED","features":[556]},{"name":"MI_RESULT_FILTERED_ENUMERATION_NOT_SUPPORTED","features":[556]},{"name":"MI_RESULT_INVALID_CLASS","features":[556]},{"name":"MI_RESULT_INVALID_ENUMERATION_CONTEXT","features":[556]},{"name":"MI_RESULT_INVALID_NAMESPACE","features":[556]},{"name":"MI_RESULT_INVALID_OPERATION_TIMEOUT","features":[556]},{"name":"MI_RESULT_INVALID_PARAMETER","features":[556]},{"name":"MI_RESULT_INVALID_QUERY","features":[556]},{"name":"MI_RESULT_INVALID_SUPERCLASS","features":[556]},{"name":"MI_RESULT_METHOD_NOT_AVAILABLE","features":[556]},{"name":"MI_RESULT_METHOD_NOT_FOUND","features":[556]},{"name":"MI_RESULT_NAMESPACE_NOT_EMPTY","features":[556]},{"name":"MI_RESULT_NOT_FOUND","features":[556]},{"name":"MI_RESULT_NOT_SUPPORTED","features":[556]},{"name":"MI_RESULT_NO_SUCH_PROPERTY","features":[556]},{"name":"MI_RESULT_OK","features":[556]},{"name":"MI_RESULT_PULL_CANNOT_BE_ABANDONED","features":[556]},{"name":"MI_RESULT_PULL_HAS_BEEN_ABANDONED","features":[556]},{"name":"MI_RESULT_QUERY_LANGUAGE_NOT_SUPPORTED","features":[556]},{"name":"MI_RESULT_SERVER_IS_SHUTTING_DOWN","features":[556]},{"name":"MI_RESULT_SERVER_LIMITS_EXCEEDED","features":[556]},{"name":"MI_RESULT_TYPE_MISMATCH","features":[556]},{"name":"MI_Real32A","features":[556]},{"name":"MI_Real32AField","features":[556]},{"name":"MI_Real32Field","features":[556]},{"name":"MI_Real64A","features":[556]},{"name":"MI_Real64AField","features":[556]},{"name":"MI_Real64Field","features":[556]},{"name":"MI_ReferenceA","features":[556]},{"name":"MI_ReferenceAField","features":[556]},{"name":"MI_ReferenceField","features":[556]},{"name":"MI_Result","features":[556]},{"name":"MI_SERIALIZER_FLAGS_CLASS_DEEP","features":[556]},{"name":"MI_SERIALIZER_FLAGS_INSTANCE_WITH_CLASS","features":[556]},{"name":"MI_SINT16","features":[556]},{"name":"MI_SINT16A","features":[556]},{"name":"MI_SINT32","features":[556]},{"name":"MI_SINT32A","features":[556]},{"name":"MI_SINT64","features":[556]},{"name":"MI_SINT64A","features":[556]},{"name":"MI_SINT8","features":[556]},{"name":"MI_SINT8A","features":[556]},{"name":"MI_STRING","features":[556]},{"name":"MI_STRINGA","features":[556]},{"name":"MI_SUBSCRIBE_BOOKMARK_NEWEST","features":[556]},{"name":"MI_SUBSCRIBE_BOOKMARK_OLDEST","features":[556]},{"name":"MI_SchemaDecl","features":[556]},{"name":"MI_Serializer","features":[556]},{"name":"MI_SerializerFT","features":[556]},{"name":"MI_Server","features":[556]},{"name":"MI_ServerFT","features":[556]},{"name":"MI_Session","features":[556]},{"name":"MI_SessionCallbacks","features":[556]},{"name":"MI_SessionFT","features":[556]},{"name":"MI_Sint16A","features":[556]},{"name":"MI_Sint16AField","features":[556]},{"name":"MI_Sint16Field","features":[556]},{"name":"MI_Sint32A","features":[556]},{"name":"MI_Sint32AField","features":[556]},{"name":"MI_Sint32Field","features":[556]},{"name":"MI_Sint64A","features":[556]},{"name":"MI_Sint64AField","features":[556]},{"name":"MI_Sint64Field","features":[556]},{"name":"MI_Sint8A","features":[556]},{"name":"MI_Sint8AField","features":[556]},{"name":"MI_Sint8Field","features":[556]},{"name":"MI_StringA","features":[556]},{"name":"MI_StringAField","features":[556]},{"name":"MI_StringField","features":[556]},{"name":"MI_SubscriptionDeliveryOptions","features":[556]},{"name":"MI_SubscriptionDeliveryOptionsFT","features":[556]},{"name":"MI_SubscriptionDeliveryType","features":[556]},{"name":"MI_SubscriptionDeliveryType_Pull","features":[556]},{"name":"MI_SubscriptionDeliveryType_Push","features":[556]},{"name":"MI_Timestamp","features":[556]},{"name":"MI_Type","features":[556]},{"name":"MI_UINT16","features":[556]},{"name":"MI_UINT16A","features":[556]},{"name":"MI_UINT32","features":[556]},{"name":"MI_UINT32A","features":[556]},{"name":"MI_UINT64","features":[556]},{"name":"MI_UINT64A","features":[556]},{"name":"MI_UINT8","features":[556]},{"name":"MI_UINT8A","features":[556]},{"name":"MI_Uint16A","features":[556]},{"name":"MI_Uint16AField","features":[556]},{"name":"MI_Uint16Field","features":[556]},{"name":"MI_Uint32A","features":[556]},{"name":"MI_Uint32AField","features":[556]},{"name":"MI_Uint32Field","features":[556]},{"name":"MI_Uint64A","features":[556]},{"name":"MI_Uint64AField","features":[556]},{"name":"MI_Uint64Field","features":[556]},{"name":"MI_Uint8A","features":[556]},{"name":"MI_Uint8AField","features":[556]},{"name":"MI_Uint8Field","features":[556]},{"name":"MI_UserCredentials","features":[556]},{"name":"MI_UsernamePasswordCreds","features":[556]},{"name":"MI_UtilitiesFT","features":[556]},{"name":"MI_Value","features":[556]},{"name":"MI_WRITEMESSAGE_CHANNEL_DEBUG","features":[556]},{"name":"MI_WRITEMESSAGE_CHANNEL_VERBOSE","features":[556]},{"name":"MI_WRITEMESSAGE_CHANNEL_WARNING","features":[556]},{"name":"MofCompiler","features":[556]},{"name":"SWbemAnalysisMatrix","features":[305,556]},{"name":"SWbemAnalysisMatrixList","features":[305,556]},{"name":"SWbemAssocQueryInf","features":[556]},{"name":"SWbemDateTime","features":[556]},{"name":"SWbemEventSource","features":[556]},{"name":"SWbemLastError","features":[556]},{"name":"SWbemLocator","features":[556]},{"name":"SWbemMethod","features":[556]},{"name":"SWbemMethodSet","features":[556]},{"name":"SWbemNamedValue","features":[556]},{"name":"SWbemNamedValueSet","features":[556]},{"name":"SWbemObject","features":[556]},{"name":"SWbemObjectEx","features":[556]},{"name":"SWbemObjectPath","features":[556]},{"name":"SWbemObjectSet","features":[556]},{"name":"SWbemPrivilege","features":[556]},{"name":"SWbemPrivilegeSet","features":[556]},{"name":"SWbemProperty","features":[556]},{"name":"SWbemPropertySet","features":[556]},{"name":"SWbemQualifier","features":[556]},{"name":"SWbemQualifierSet","features":[556]},{"name":"SWbemQueryQualifiedName","features":[305,556]},{"name":"SWbemRefreshableItem","features":[556]},{"name":"SWbemRefresher","features":[556]},{"name":"SWbemRpnConst","features":[305,556]},{"name":"SWbemRpnEncodedQuery","features":[305,556]},{"name":"SWbemRpnQueryToken","features":[305,556]},{"name":"SWbemRpnTokenList","features":[556]},{"name":"SWbemSecurity","features":[556]},{"name":"SWbemServices","features":[556]},{"name":"SWbemServicesEx","features":[556]},{"name":"SWbemSink","features":[556]},{"name":"UnsecuredApartment","features":[556]},{"name":"WBEMESS_E_AUTHZ_NOT_PRIVILEGED","features":[556]},{"name":"WBEMESS_E_REGISTRATION_TOO_BROAD","features":[556]},{"name":"WBEMESS_E_REGISTRATION_TOO_PRECISE","features":[556]},{"name":"WBEMMOF_E_ALIASES_IN_EMBEDDED","features":[556]},{"name":"WBEMMOF_E_CIMTYPE_QUALIFIER","features":[556]},{"name":"WBEMMOF_E_DUPLICATE_PROPERTY","features":[556]},{"name":"WBEMMOF_E_DUPLICATE_QUALIFIER","features":[556]},{"name":"WBEMMOF_E_ERROR_CREATING_TEMP_FILE","features":[556]},{"name":"WBEMMOF_E_ERROR_INVALID_INCLUDE_FILE","features":[556]},{"name":"WBEMMOF_E_EXPECTED_ALIAS_NAME","features":[556]},{"name":"WBEMMOF_E_EXPECTED_BRACE_OR_BAD_TYPE","features":[556]},{"name":"WBEMMOF_E_EXPECTED_CLASS_NAME","features":[556]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACE","features":[556]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_BRACKET","features":[556]},{"name":"WBEMMOF_E_EXPECTED_CLOSE_PAREN","features":[556]},{"name":"WBEMMOF_E_EXPECTED_DOLLAR","features":[556]},{"name":"WBEMMOF_E_EXPECTED_FLAVOR_TYPE","features":[556]},{"name":"WBEMMOF_E_EXPECTED_OPEN_BRACE","features":[556]},{"name":"WBEMMOF_E_EXPECTED_OPEN_PAREN","features":[556]},{"name":"WBEMMOF_E_EXPECTED_PROPERTY_NAME","features":[556]},{"name":"WBEMMOF_E_EXPECTED_QUALIFIER_NAME","features":[556]},{"name":"WBEMMOF_E_EXPECTED_SEMI","features":[556]},{"name":"WBEMMOF_E_EXPECTED_TYPE_IDENTIFIER","features":[556]},{"name":"WBEMMOF_E_ILLEGAL_CONSTANT_VALUE","features":[556]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES","features":[556]},{"name":"WBEMMOF_E_INCOMPATIBLE_FLAVOR_TYPES2","features":[556]},{"name":"WBEMMOF_E_INVALID_AMENDMENT_SYNTAX","features":[556]},{"name":"WBEMMOF_E_INVALID_CLASS_DECLARATION","features":[556]},{"name":"WBEMMOF_E_INVALID_DELETECLASS_SYNTAX","features":[556]},{"name":"WBEMMOF_E_INVALID_DELETEINSTANCE_SYNTAX","features":[556]},{"name":"WBEMMOF_E_INVALID_DUPLICATE_AMENDMENT","features":[556]},{"name":"WBEMMOF_E_INVALID_FILE","features":[556]},{"name":"WBEMMOF_E_INVALID_FLAGS_SYNTAX","features":[556]},{"name":"WBEMMOF_E_INVALID_INSTANCE_DECLARATION","features":[556]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SPECIFICATION","features":[556]},{"name":"WBEMMOF_E_INVALID_NAMESPACE_SYNTAX","features":[556]},{"name":"WBEMMOF_E_INVALID_PRAGMA","features":[556]},{"name":"WBEMMOF_E_INVALID_QUALIFIER_SYNTAX","features":[556]},{"name":"WBEMMOF_E_MULTIPLE_ALIASES","features":[556]},{"name":"WBEMMOF_E_MUST_BE_IN_OR_OUT","features":[556]},{"name":"WBEMMOF_E_NO_ARRAYS_RETURNED","features":[556]},{"name":"WBEMMOF_E_NULL_ARRAY_ELEM","features":[556]},{"name":"WBEMMOF_E_OUT_OF_RANGE","features":[556]},{"name":"WBEMMOF_E_QUALIFIER_USED_OUTSIDE_SCOPE","features":[556]},{"name":"WBEMMOF_E_TYPEDEF_NOT_SUPPORTED","features":[556]},{"name":"WBEMMOF_E_TYPE_MISMATCH","features":[556]},{"name":"WBEMMOF_E_UNEXPECTED_ALIAS","features":[556]},{"name":"WBEMMOF_E_UNEXPECTED_ARRAY_INIT","features":[556]},{"name":"WBEMMOF_E_UNRECOGNIZED_TOKEN","features":[556]},{"name":"WBEMMOF_E_UNRECOGNIZED_TYPE","features":[556]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_DATA_TYPE","features":[556]},{"name":"WBEMMOF_E_UNSUPPORTED_CIMV22_QUAL_VALUE","features":[556]},{"name":"WBEMPATH_COMPRESSED","features":[556]},{"name":"WBEMPATH_CREATE_ACCEPT_ABSOLUTE","features":[556]},{"name":"WBEMPATH_CREATE_ACCEPT_ALL","features":[556]},{"name":"WBEMPATH_CREATE_ACCEPT_RELATIVE","features":[556]},{"name":"WBEMPATH_GET_NAMESPACE_ONLY","features":[556]},{"name":"WBEMPATH_GET_ORIGINAL","features":[556]},{"name":"WBEMPATH_GET_RELATIVE_ONLY","features":[556]},{"name":"WBEMPATH_GET_SERVER_AND_NAMESPACE_ONLY","features":[556]},{"name":"WBEMPATH_GET_SERVER_TOO","features":[556]},{"name":"WBEMPATH_INFO_ANON_LOCAL_MACHINE","features":[556]},{"name":"WBEMPATH_INFO_CIM_COMPLIANT","features":[556]},{"name":"WBEMPATH_INFO_CONTAINS_SINGLETON","features":[556]},{"name":"WBEMPATH_INFO_HAS_IMPLIED_KEY","features":[556]},{"name":"WBEMPATH_INFO_HAS_MACHINE_NAME","features":[556]},{"name":"WBEMPATH_INFO_HAS_SUBSCOPES","features":[556]},{"name":"WBEMPATH_INFO_HAS_V2_REF_PATHS","features":[556]},{"name":"WBEMPATH_INFO_IS_CLASS_REF","features":[556]},{"name":"WBEMPATH_INFO_IS_COMPOUND","features":[556]},{"name":"WBEMPATH_INFO_IS_INST_REF","features":[556]},{"name":"WBEMPATH_INFO_IS_PARENT","features":[556]},{"name":"WBEMPATH_INFO_IS_SINGLETON","features":[556]},{"name":"WBEMPATH_INFO_NATIVE_PATH","features":[556]},{"name":"WBEMPATH_INFO_PATH_HAD_SERVER","features":[556]},{"name":"WBEMPATH_INFO_SERVER_NAMESPACE_ONLY","features":[556]},{"name":"WBEMPATH_INFO_V1_COMPLIANT","features":[556]},{"name":"WBEMPATH_INFO_V2_COMPLIANT","features":[556]},{"name":"WBEMPATH_INFO_WMI_PATH","features":[556]},{"name":"WBEMPATH_QUOTEDTEXT","features":[556]},{"name":"WBEMPATH_TEXT","features":[556]},{"name":"WBEMPATH_TREAT_SINGLE_IDENT_AS_NS","features":[556]},{"name":"WBEMSTATUS","features":[556]},{"name":"WBEMSTATUS_FORMAT","features":[556]},{"name":"WBEMSTATUS_FORMAT_NEWLINE","features":[556]},{"name":"WBEMSTATUS_FORMAT_NO_NEWLINE","features":[556]},{"name":"WBEMS_DISPID_COMPLETED","features":[556]},{"name":"WBEMS_DISPID_CONNECTION_READY","features":[556]},{"name":"WBEMS_DISPID_DERIVATION","features":[556]},{"name":"WBEMS_DISPID_OBJECT_PUT","features":[556]},{"name":"WBEMS_DISPID_OBJECT_READY","features":[556]},{"name":"WBEMS_DISPID_PROGRESS","features":[556]},{"name":"WBEM_AUTHENTICATION_METHOD_MASK","features":[556]},{"name":"WBEM_BACKUP_RESTORE_FLAGS","features":[556]},{"name":"WBEM_BATCH_TYPE","features":[556]},{"name":"WBEM_CHANGE_FLAG_TYPE","features":[556]},{"name":"WBEM_COMPARISON_FLAG","features":[556]},{"name":"WBEM_COMPARISON_INCLUDE_ALL","features":[556]},{"name":"WBEM_COMPILER_OPTIONS","features":[556]},{"name":"WBEM_COMPILE_STATUS_INFO","features":[556]},{"name":"WBEM_CONDITION_FLAG_TYPE","features":[556]},{"name":"WBEM_CONNECT_OPTIONS","features":[556]},{"name":"WBEM_ENABLE","features":[556]},{"name":"WBEM_EXTRA_RETURN_CODES","features":[556]},{"name":"WBEM_E_ACCESS_DENIED","features":[556]},{"name":"WBEM_E_AGGREGATING_BY_OBJECT","features":[556]},{"name":"WBEM_E_ALREADY_EXISTS","features":[556]},{"name":"WBEM_E_AMBIGUOUS_OPERATION","features":[556]},{"name":"WBEM_E_AMENDED_OBJECT","features":[556]},{"name":"WBEM_E_BACKUP_RESTORE_WINMGMT_RUNNING","features":[556]},{"name":"WBEM_E_BUFFER_TOO_SMALL","features":[556]},{"name":"WBEM_E_CALL_CANCELLED","features":[556]},{"name":"WBEM_E_CANNOT_BE_ABSTRACT","features":[556]},{"name":"WBEM_E_CANNOT_BE_KEY","features":[556]},{"name":"WBEM_E_CANNOT_BE_SINGLETON","features":[556]},{"name":"WBEM_E_CANNOT_CHANGE_INDEX_INHERITANCE","features":[556]},{"name":"WBEM_E_CANNOT_CHANGE_KEY_INHERITANCE","features":[556]},{"name":"WBEM_E_CIRCULAR_REFERENCE","features":[556]},{"name":"WBEM_E_CLASS_HAS_CHILDREN","features":[556]},{"name":"WBEM_E_CLASS_HAS_INSTANCES","features":[556]},{"name":"WBEM_E_CLASS_NAME_TOO_WIDE","features":[556]},{"name":"WBEM_E_CLIENT_TOO_SLOW","features":[556]},{"name":"WBEM_E_CONNECTION_FAILED","features":[556]},{"name":"WBEM_E_CRITICAL_ERROR","features":[556]},{"name":"WBEM_E_DATABASE_VER_MISMATCH","features":[556]},{"name":"WBEM_E_ENCRYPTED_CONNECTION_REQUIRED","features":[556]},{"name":"WBEM_E_FAILED","features":[556]},{"name":"WBEM_E_FATAL_TRANSPORT_ERROR","features":[556]},{"name":"WBEM_E_HANDLE_OUT_OF_DATE","features":[556]},{"name":"WBEM_E_ILLEGAL_NULL","features":[556]},{"name":"WBEM_E_ILLEGAL_OPERATION","features":[556]},{"name":"WBEM_E_INCOMPLETE_CLASS","features":[556]},{"name":"WBEM_E_INITIALIZATION_FAILURE","features":[556]},{"name":"WBEM_E_INVALID_ASSOCIATION","features":[556]},{"name":"WBEM_E_INVALID_CIM_TYPE","features":[556]},{"name":"WBEM_E_INVALID_CLASS","features":[556]},{"name":"WBEM_E_INVALID_CONTEXT","features":[556]},{"name":"WBEM_E_INVALID_DUPLICATE_PARAMETER","features":[556]},{"name":"WBEM_E_INVALID_FLAVOR","features":[556]},{"name":"WBEM_E_INVALID_HANDLE_REQUEST","features":[556]},{"name":"WBEM_E_INVALID_LOCALE","features":[556]},{"name":"WBEM_E_INVALID_METHOD","features":[556]},{"name":"WBEM_E_INVALID_METHOD_PARAMETERS","features":[556]},{"name":"WBEM_E_INVALID_NAMESPACE","features":[556]},{"name":"WBEM_E_INVALID_OBJECT","features":[556]},{"name":"WBEM_E_INVALID_OBJECT_PATH","features":[556]},{"name":"WBEM_E_INVALID_OPERATION","features":[556]},{"name":"WBEM_E_INVALID_OPERATOR","features":[556]},{"name":"WBEM_E_INVALID_PARAMETER","features":[556]},{"name":"WBEM_E_INVALID_PARAMETER_ID","features":[556]},{"name":"WBEM_E_INVALID_PROPERTY","features":[556]},{"name":"WBEM_E_INVALID_PROPERTY_TYPE","features":[556]},{"name":"WBEM_E_INVALID_PROVIDER_REGISTRATION","features":[556]},{"name":"WBEM_E_INVALID_QUALIFIER","features":[556]},{"name":"WBEM_E_INVALID_QUALIFIER_TYPE","features":[556]},{"name":"WBEM_E_INVALID_QUERY","features":[556]},{"name":"WBEM_E_INVALID_QUERY_TYPE","features":[556]},{"name":"WBEM_E_INVALID_STREAM","features":[556]},{"name":"WBEM_E_INVALID_SUPERCLASS","features":[556]},{"name":"WBEM_E_INVALID_SYNTAX","features":[556]},{"name":"WBEM_E_LOCAL_CREDENTIALS","features":[556]},{"name":"WBEM_E_MARSHAL_INVALID_SIGNATURE","features":[556]},{"name":"WBEM_E_MARSHAL_VERSION_MISMATCH","features":[556]},{"name":"WBEM_E_METHOD_DISABLED","features":[556]},{"name":"WBEM_E_METHOD_NAME_TOO_WIDE","features":[556]},{"name":"WBEM_E_METHOD_NOT_IMPLEMENTED","features":[556]},{"name":"WBEM_E_MISSING_AGGREGATION_LIST","features":[556]},{"name":"WBEM_E_MISSING_GROUP_WITHIN","features":[556]},{"name":"WBEM_E_MISSING_PARAMETER_ID","features":[556]},{"name":"WBEM_E_NONCONSECUTIVE_PARAMETER_IDS","features":[556]},{"name":"WBEM_E_NONDECORATED_OBJECT","features":[556]},{"name":"WBEM_E_NOT_AVAILABLE","features":[556]},{"name":"WBEM_E_NOT_EVENT_CLASS","features":[556]},{"name":"WBEM_E_NOT_FOUND","features":[556]},{"name":"WBEM_E_NOT_SUPPORTED","features":[556]},{"name":"WBEM_E_NO_KEY","features":[556]},{"name":"WBEM_E_NO_SCHEMA","features":[556]},{"name":"WBEM_E_NULL_SECURITY_DESCRIPTOR","features":[556]},{"name":"WBEM_E_OUT_OF_DISK_SPACE","features":[556]},{"name":"WBEM_E_OUT_OF_MEMORY","features":[556]},{"name":"WBEM_E_OVERRIDE_NOT_ALLOWED","features":[556]},{"name":"WBEM_E_PARAMETER_ID_ON_RETVAL","features":[556]},{"name":"WBEM_E_PRIVILEGE_NOT_HELD","features":[556]},{"name":"WBEM_E_PROPAGATED_METHOD","features":[556]},{"name":"WBEM_E_PROPAGATED_PROPERTY","features":[556]},{"name":"WBEM_E_PROPAGATED_QUALIFIER","features":[556]},{"name":"WBEM_E_PROPERTY_NAME_TOO_WIDE","features":[556]},{"name":"WBEM_E_PROPERTY_NOT_AN_OBJECT","features":[556]},{"name":"WBEM_E_PROVIDER_ALREADY_REGISTERED","features":[556]},{"name":"WBEM_E_PROVIDER_DISABLED","features":[556]},{"name":"WBEM_E_PROVIDER_FAILURE","features":[556]},{"name":"WBEM_E_PROVIDER_LOAD_FAILURE","features":[556]},{"name":"WBEM_E_PROVIDER_NOT_CAPABLE","features":[556]},{"name":"WBEM_E_PROVIDER_NOT_FOUND","features":[556]},{"name":"WBEM_E_PROVIDER_NOT_REGISTERED","features":[556]},{"name":"WBEM_E_PROVIDER_SUSPENDED","features":[556]},{"name":"WBEM_E_PROVIDER_TIMED_OUT","features":[556]},{"name":"WBEM_E_QUALIFIER_NAME_TOO_WIDE","features":[556]},{"name":"WBEM_E_QUERY_NOT_IMPLEMENTED","features":[556]},{"name":"WBEM_E_QUEUE_OVERFLOW","features":[556]},{"name":"WBEM_E_QUOTA_VIOLATION","features":[556]},{"name":"WBEM_E_READ_ONLY","features":[556]},{"name":"WBEM_E_REFRESHER_BUSY","features":[556]},{"name":"WBEM_E_RERUN_COMMAND","features":[556]},{"name":"WBEM_E_RESERVED_001","features":[556]},{"name":"WBEM_E_RESERVED_002","features":[556]},{"name":"WBEM_E_RESOURCE_CONTENTION","features":[556]},{"name":"WBEM_E_RETRY_LATER","features":[556]},{"name":"WBEM_E_SERVER_TOO_BUSY","features":[556]},{"name":"WBEM_E_SHUTTING_DOWN","features":[556]},{"name":"WBEM_E_SYNCHRONIZATION_REQUIRED","features":[556]},{"name":"WBEM_E_SYSTEM_PROPERTY","features":[556]},{"name":"WBEM_E_TIMED_OUT","features":[556]},{"name":"WBEM_E_TOO_MANY_PROPERTIES","features":[556]},{"name":"WBEM_E_TOO_MUCH_DATA","features":[556]},{"name":"WBEM_E_TRANSPORT_FAILURE","features":[556]},{"name":"WBEM_E_TYPE_MISMATCH","features":[556]},{"name":"WBEM_E_UNEXPECTED","features":[556]},{"name":"WBEM_E_UNINTERPRETABLE_PROVIDER_QUERY","features":[556]},{"name":"WBEM_E_UNKNOWN_OBJECT_TYPE","features":[556]},{"name":"WBEM_E_UNKNOWN_PACKET_TYPE","features":[556]},{"name":"WBEM_E_UNPARSABLE_QUERY","features":[556]},{"name":"WBEM_E_UNSUPPORTED_CLASS_UPDATE","features":[556]},{"name":"WBEM_E_UNSUPPORTED_LOCALE","features":[556]},{"name":"WBEM_E_UNSUPPORTED_PARAMETER","features":[556]},{"name":"WBEM_E_UNSUPPORTED_PUT_EXTENSION","features":[556]},{"name":"WBEM_E_UPDATE_OVERRIDE_NOT_ALLOWED","features":[556]},{"name":"WBEM_E_UPDATE_PROPAGATED_METHOD","features":[556]},{"name":"WBEM_E_UPDATE_TYPE_MISMATCH","features":[556]},{"name":"WBEM_E_VALUE_OUT_OF_RANGE","features":[556]},{"name":"WBEM_E_VETO_DELETE","features":[556]},{"name":"WBEM_E_VETO_PUT","features":[556]},{"name":"WBEM_FLAG_ADVISORY","features":[556]},{"name":"WBEM_FLAG_ALLOW_READ","features":[556]},{"name":"WBEM_FLAG_ALWAYS","features":[556]},{"name":"WBEM_FLAG_AUTORECOVER","features":[556]},{"name":"WBEM_FLAG_BACKUP_RESTORE_DEFAULT","features":[556]},{"name":"WBEM_FLAG_BACKUP_RESTORE_FORCE_SHUTDOWN","features":[556]},{"name":"WBEM_FLAG_BATCH_IF_NEEDED","features":[556]},{"name":"WBEM_FLAG_BIDIRECTIONAL","features":[556]},{"name":"WBEM_FLAG_CHECK_ONLY","features":[556]},{"name":"WBEM_FLAG_CLASS_LOCAL_AND_OVERRIDES","features":[556]},{"name":"WBEM_FLAG_CLASS_OVERRIDES_ONLY","features":[556]},{"name":"WBEM_FLAG_CONNECT_PROVIDERS","features":[556]},{"name":"WBEM_FLAG_CONNECT_REPOSITORY_ONLY","features":[556]},{"name":"WBEM_FLAG_CONNECT_USE_MAX_WAIT","features":[556]},{"name":"WBEM_FLAG_CONSOLE_PRINT","features":[556]},{"name":"WBEM_FLAG_CREATE_ONLY","features":[556]},{"name":"WBEM_FLAG_CREATE_OR_UPDATE","features":[556]},{"name":"WBEM_FLAG_DEEP","features":[556]},{"name":"WBEM_FLAG_DIRECT_READ","features":[556]},{"name":"WBEM_FLAG_DONT_ADD_TO_LIST","features":[556]},{"name":"WBEM_FLAG_DONT_SEND_STATUS","features":[556]},{"name":"WBEM_FLAG_ENSURE_LOCATABLE","features":[556]},{"name":"WBEM_FLAG_EXCLUDE_OBJECT_QUALIFIERS","features":[556]},{"name":"WBEM_FLAG_EXCLUDE_PROPERTY_QUALIFIERS","features":[556]},{"name":"WBEM_FLAG_FORWARD_ONLY","features":[556]},{"name":"WBEM_FLAG_IGNORE_CASE","features":[556]},{"name":"WBEM_FLAG_IGNORE_CLASS","features":[556]},{"name":"WBEM_FLAG_IGNORE_DEFAULT_VALUES","features":[556]},{"name":"WBEM_FLAG_IGNORE_FLAVOR","features":[556]},{"name":"WBEM_FLAG_IGNORE_OBJECT_SOURCE","features":[556]},{"name":"WBEM_FLAG_IGNORE_QUALIFIERS","features":[556]},{"name":"WBEM_FLAG_INPROC_LOGIN","features":[556]},{"name":"WBEM_FLAG_KEYS_ONLY","features":[556]},{"name":"WBEM_FLAG_LOCAL_LOGIN","features":[556]},{"name":"WBEM_FLAG_LOCAL_ONLY","features":[556]},{"name":"WBEM_FLAG_LONG_NAME","features":[556]},{"name":"WBEM_FLAG_MUST_BATCH","features":[556]},{"name":"WBEM_FLAG_MUST_NOT_BATCH","features":[556]},{"name":"WBEM_FLAG_NONSYSTEM_ONLY","features":[556]},{"name":"WBEM_FLAG_NO_ERROR_OBJECT","features":[556]},{"name":"WBEM_FLAG_NO_FLAVORS","features":[556]},{"name":"WBEM_FLAG_ONLY_IF_FALSE","features":[556]},{"name":"WBEM_FLAG_ONLY_IF_IDENTICAL","features":[556]},{"name":"WBEM_FLAG_ONLY_IF_TRUE","features":[556]},{"name":"WBEM_FLAG_OWNER_UPDATE","features":[556]},{"name":"WBEM_FLAG_PROPAGATED_ONLY","features":[556]},{"name":"WBEM_FLAG_PROTOTYPE","features":[556]},{"name":"WBEM_FLAG_REFRESH_AUTO_RECONNECT","features":[556]},{"name":"WBEM_FLAG_REFRESH_NO_AUTO_RECONNECT","features":[556]},{"name":"WBEM_FLAG_REFS_ONLY","features":[556]},{"name":"WBEM_FLAG_REMOTE_LOGIN","features":[556]},{"name":"WBEM_FLAG_RETURN_ERROR_OBJECT","features":[556]},{"name":"WBEM_FLAG_RETURN_IMMEDIATELY","features":[556]},{"name":"WBEM_FLAG_RETURN_WBEM_COMPLETE","features":[556]},{"name":"WBEM_FLAG_SEND_ONLY_SELECTED","features":[556]},{"name":"WBEM_FLAG_SEND_STATUS","features":[556]},{"name":"WBEM_FLAG_SHALLOW","features":[556]},{"name":"WBEM_FLAG_SHORT_NAME","features":[556]},{"name":"WBEM_FLAG_SPLIT_FILES","features":[556]},{"name":"WBEM_FLAG_STORE_FILE","features":[556]},{"name":"WBEM_FLAG_STRONG_VALIDATION","features":[556]},{"name":"WBEM_FLAG_SYSTEM_ONLY","features":[556]},{"name":"WBEM_FLAG_UNSECAPP_CHECK_ACCESS","features":[556]},{"name":"WBEM_FLAG_UNSECAPP_DEFAULT_CHECK_ACCESS","features":[556]},{"name":"WBEM_FLAG_UNSECAPP_DONT_CHECK_ACCESS","features":[556]},{"name":"WBEM_FLAG_UPDATE_COMPATIBLE","features":[556]},{"name":"WBEM_FLAG_UPDATE_FORCE_MODE","features":[556]},{"name":"WBEM_FLAG_UPDATE_ONLY","features":[556]},{"name":"WBEM_FLAG_UPDATE_SAFE_MODE","features":[556]},{"name":"WBEM_FLAG_USE_AMENDED_QUALIFIERS","features":[556]},{"name":"WBEM_FLAG_USE_MULTIPLE_CHALLENGES","features":[556]},{"name":"WBEM_FLAG_WMI_CHECK","features":[556]},{"name":"WBEM_FLAVOR_AMENDED","features":[556]},{"name":"WBEM_FLAVOR_DONT_PROPAGATE","features":[556]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_DERIVED_CLASS","features":[556]},{"name":"WBEM_FLAVOR_FLAG_PROPAGATE_TO_INSTANCE","features":[556]},{"name":"WBEM_FLAVOR_MASK_AMENDED","features":[556]},{"name":"WBEM_FLAVOR_MASK_ORIGIN","features":[556]},{"name":"WBEM_FLAVOR_MASK_PERMISSIONS","features":[556]},{"name":"WBEM_FLAVOR_MASK_PROPAGATION","features":[556]},{"name":"WBEM_FLAVOR_NOT_AMENDED","features":[556]},{"name":"WBEM_FLAVOR_NOT_OVERRIDABLE","features":[556]},{"name":"WBEM_FLAVOR_ORIGIN_LOCAL","features":[556]},{"name":"WBEM_FLAVOR_ORIGIN_PROPAGATED","features":[556]},{"name":"WBEM_FLAVOR_ORIGIN_SYSTEM","features":[556]},{"name":"WBEM_FLAVOR_OVERRIDABLE","features":[556]},{"name":"WBEM_FLAVOR_TYPE","features":[556]},{"name":"WBEM_FULL_WRITE_REP","features":[556]},{"name":"WBEM_GENERIC_FLAG_TYPE","features":[556]},{"name":"WBEM_GENUS_CLASS","features":[556]},{"name":"WBEM_GENUS_INSTANCE","features":[556]},{"name":"WBEM_GENUS_TYPE","features":[556]},{"name":"WBEM_GET_KEY_FLAGS","features":[556]},{"name":"WBEM_GET_TEXT_FLAGS","features":[556]},{"name":"WBEM_INFINITE","features":[556]},{"name":"WBEM_INFORMATION_FLAG_TYPE","features":[556]},{"name":"WBEM_LIMITATION_FLAG_TYPE","features":[556]},{"name":"WBEM_LIMITS","features":[556]},{"name":"WBEM_LOCKING_FLAG_TYPE","features":[556]},{"name":"WBEM_LOGIN_TYPE","features":[556]},{"name":"WBEM_MASK_CLASS_CONDITION","features":[556]},{"name":"WBEM_MASK_CONDITION_ORIGIN","features":[556]},{"name":"WBEM_MASK_PRIMARY_CONDITION","features":[556]},{"name":"WBEM_MASK_RESERVED_FLAGS","features":[556]},{"name":"WBEM_MASK_UPDATE_MODE","features":[556]},{"name":"WBEM_MAX_IDENTIFIER","features":[556]},{"name":"WBEM_MAX_OBJECT_NESTING","features":[556]},{"name":"WBEM_MAX_PATH","features":[556]},{"name":"WBEM_MAX_QUERY","features":[556]},{"name":"WBEM_MAX_USER_PROPERTIES","features":[556]},{"name":"WBEM_METHOD_EXECUTE","features":[556]},{"name":"WBEM_NO_ERROR","features":[556]},{"name":"WBEM_NO_WAIT","features":[556]},{"name":"WBEM_PARTIAL_WRITE_REP","features":[556]},{"name":"WBEM_PATH_CREATE_FLAG","features":[556]},{"name":"WBEM_PATH_STATUS_FLAG","features":[556]},{"name":"WBEM_PROVIDER_FLAGS","features":[556]},{"name":"WBEM_PROVIDER_REQUIREMENTS_TYPE","features":[556]},{"name":"WBEM_QUERY_FLAG_TYPE","features":[556]},{"name":"WBEM_REFRESHER_FLAGS","features":[556]},{"name":"WBEM_REMOTE_ACCESS","features":[556]},{"name":"WBEM_REQUIREMENTS_RECHECK_SUBSCRIPTIONS","features":[556]},{"name":"WBEM_REQUIREMENTS_START_POSTFILTER","features":[556]},{"name":"WBEM_REQUIREMENTS_STOP_POSTFILTER","features":[556]},{"name":"WBEM_RETURN_IMMEDIATELY","features":[556]},{"name":"WBEM_RETURN_WHEN_COMPLETE","features":[556]},{"name":"WBEM_RIGHT_PUBLISH","features":[556]},{"name":"WBEM_RIGHT_SUBSCRIBE","features":[556]},{"name":"WBEM_SECURITY_FLAGS","features":[556]},{"name":"WBEM_SHUTDOWN_FLAGS","features":[556]},{"name":"WBEM_SHUTDOWN_OS","features":[556]},{"name":"WBEM_SHUTDOWN_UNLOAD_COMPONENT","features":[556]},{"name":"WBEM_SHUTDOWN_WMI","features":[556]},{"name":"WBEM_STATUS_COMPLETE","features":[556]},{"name":"WBEM_STATUS_LOGGING_INFORMATION","features":[556]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_ESS","features":[556]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_HOST","features":[556]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_PROVIDER","features":[556]},{"name":"WBEM_STATUS_LOGGING_INFORMATION_REPOSITORY","features":[556]},{"name":"WBEM_STATUS_PROGRESS","features":[556]},{"name":"WBEM_STATUS_REQUIREMENTS","features":[556]},{"name":"WBEM_STATUS_TYPE","features":[556]},{"name":"WBEM_S_ACCESS_DENIED","features":[556]},{"name":"WBEM_S_ALREADY_EXISTS","features":[556]},{"name":"WBEM_S_DIFFERENT","features":[556]},{"name":"WBEM_S_DUPLICATE_OBJECTS","features":[556]},{"name":"WBEM_S_FALSE","features":[556]},{"name":"WBEM_S_INDIRECTLY_UPDATED","features":[556]},{"name":"WBEM_S_INITIALIZED","features":[556]},{"name":"WBEM_S_LIMITED_SERVICE","features":[556]},{"name":"WBEM_S_NO_ERROR","features":[556]},{"name":"WBEM_S_NO_MORE_DATA","features":[556]},{"name":"WBEM_S_OPERATION_CANCELLED","features":[556]},{"name":"WBEM_S_PARTIAL_RESULTS","features":[556]},{"name":"WBEM_S_PENDING","features":[556]},{"name":"WBEM_S_RESET_TO_DEFAULT","features":[556]},{"name":"WBEM_S_SAME","features":[556]},{"name":"WBEM_S_SOURCE_NOT_AVAILABLE","features":[556]},{"name":"WBEM_S_SUBJECT_TO_SDS","features":[556]},{"name":"WBEM_S_TIMEDOUT","features":[556]},{"name":"WBEM_TEXT_FLAG_TYPE","features":[556]},{"name":"WBEM_UNSECAPP_FLAG_TYPE","features":[556]},{"name":"WBEM_WRITE_PROVIDER","features":[556]},{"name":"WMIExtension","features":[556]},{"name":"WMIQ_ANALYSIS_ASSOC_QUERY","features":[556]},{"name":"WMIQ_ANALYSIS_PROP_ANALYSIS_MATRIX","features":[556]},{"name":"WMIQ_ANALYSIS_QUERY_TEXT","features":[556]},{"name":"WMIQ_ANALYSIS_RESERVED","features":[556]},{"name":"WMIQ_ANALYSIS_RPN_SEQUENCE","features":[556]},{"name":"WMIQ_ANALYSIS_TYPE","features":[556]},{"name":"WMIQ_ASSOCQ_ASSOCCLASS","features":[556]},{"name":"WMIQ_ASSOCQ_ASSOCIATORS","features":[556]},{"name":"WMIQ_ASSOCQ_CLASSDEFSONLY","features":[556]},{"name":"WMIQ_ASSOCQ_CLASSREFSONLY","features":[556]},{"name":"WMIQ_ASSOCQ_FLAGS","features":[556]},{"name":"WMIQ_ASSOCQ_KEYSONLY","features":[556]},{"name":"WMIQ_ASSOCQ_REFERENCES","features":[556]},{"name":"WMIQ_ASSOCQ_REQUIREDASSOCQUALIFIER","features":[556]},{"name":"WMIQ_ASSOCQ_REQUIREDQUALIFIER","features":[556]},{"name":"WMIQ_ASSOCQ_RESULTCLASS","features":[556]},{"name":"WMIQ_ASSOCQ_RESULTROLE","features":[556]},{"name":"WMIQ_ASSOCQ_ROLE","features":[556]},{"name":"WMIQ_ASSOCQ_SCHEMAONLY","features":[556]},{"name":"WMIQ_LANGUAGE_FEATURES","features":[556]},{"name":"WMIQ_LF10_COMPEX_SUBEXPRESSIONS","features":[556]},{"name":"WMIQ_LF11_ALIASING","features":[556]},{"name":"WMIQ_LF12_GROUP_BY_HAVING","features":[556]},{"name":"WMIQ_LF13_WMI_WITHIN","features":[556]},{"name":"WMIQ_LF14_SQL_WRITE_OPERATIONS","features":[556]},{"name":"WMIQ_LF15_GO","features":[556]},{"name":"WMIQ_LF16_SINGLE_LEVEL_TRANSACTIONS","features":[556]},{"name":"WMIQ_LF17_QUALIFIED_NAMES","features":[556]},{"name":"WMIQ_LF18_ASSOCIATONS","features":[556]},{"name":"WMIQ_LF19_SYSTEM_PROPERTIES","features":[556]},{"name":"WMIQ_LF1_BASIC_SELECT","features":[556]},{"name":"WMIQ_LF20_EXTENDED_SYSTEM_PROPERTIES","features":[556]},{"name":"WMIQ_LF21_SQL89_JOINS","features":[556]},{"name":"WMIQ_LF22_SQL92_JOINS","features":[556]},{"name":"WMIQ_LF23_SUBSELECTS","features":[556]},{"name":"WMIQ_LF24_UMI_EXTENSIONS","features":[556]},{"name":"WMIQ_LF25_DATEPART","features":[556]},{"name":"WMIQ_LF26_LIKE","features":[556]},{"name":"WMIQ_LF27_CIM_TEMPORAL_CONSTRUCTS","features":[556]},{"name":"WMIQ_LF28_STANDARD_AGGREGATES","features":[556]},{"name":"WMIQ_LF29_MULTI_LEVEL_ORDER_BY","features":[556]},{"name":"WMIQ_LF2_CLASS_NAME_IN_QUERY","features":[556]},{"name":"WMIQ_LF30_WMI_PRAGMAS","features":[556]},{"name":"WMIQ_LF31_QUALIFIER_TESTS","features":[556]},{"name":"WMIQ_LF32_SP_EXECUTE","features":[556]},{"name":"WMIQ_LF33_ARRAY_ACCESS","features":[556]},{"name":"WMIQ_LF34_UNION","features":[556]},{"name":"WMIQ_LF35_COMPLEX_SELECT_TARGET","features":[556]},{"name":"WMIQ_LF36_REFERENCE_TESTS","features":[556]},{"name":"WMIQ_LF37_SELECT_INTO","features":[556]},{"name":"WMIQ_LF38_BASIC_DATETIME_TESTS","features":[556]},{"name":"WMIQ_LF39_COUNT_COLUMN","features":[556]},{"name":"WMIQ_LF3_STRING_CASE_FUNCTIONS","features":[556]},{"name":"WMIQ_LF40_BETWEEN","features":[556]},{"name":"WMIQ_LF4_PROP_TO_PROP_TESTS","features":[556]},{"name":"WMIQ_LF5_COUNT_STAR","features":[556]},{"name":"WMIQ_LF6_ORDER_BY","features":[556]},{"name":"WMIQ_LF7_DISTINCT","features":[556]},{"name":"WMIQ_LF8_ISA","features":[556]},{"name":"WMIQ_LF9_THIS","features":[556]},{"name":"WMIQ_LF_LAST","features":[556]},{"name":"WMIQ_RPNF_ARRAY_ACCESS_USED","features":[556]},{"name":"WMIQ_RPNF_COUNT_STAR","features":[556]},{"name":"WMIQ_RPNF_EQUALITY_TESTS_ONLY","features":[556]},{"name":"WMIQ_RPNF_FEATURE","features":[556]},{"name":"WMIQ_RPNF_FEATURE_SELECT_STAR","features":[556]},{"name":"WMIQ_RPNF_GROUP_BY_HAVING","features":[556]},{"name":"WMIQ_RPNF_ISA_USED","features":[556]},{"name":"WMIQ_RPNF_ORDER_BY","features":[556]},{"name":"WMIQ_RPNF_PROJECTION","features":[556]},{"name":"WMIQ_RPNF_PROP_TO_PROP_TESTS","features":[556]},{"name":"WMIQ_RPNF_QUALIFIED_NAMES_USED","features":[556]},{"name":"WMIQ_RPNF_QUERY_IS_CONJUNCTIVE","features":[556]},{"name":"WMIQ_RPNF_QUERY_IS_DISJUNCTIVE","features":[556]},{"name":"WMIQ_RPNF_SYSPROP_CLASS_USED","features":[556]},{"name":"WMIQ_RPNF_WHERE_CLAUSE_PRESENT","features":[556]},{"name":"WMIQ_RPN_CONST","features":[556]},{"name":"WMIQ_RPN_CONST2","features":[556]},{"name":"WMIQ_RPN_FROM_CLASS_LIST","features":[556]},{"name":"WMIQ_RPN_FROM_MULTIPLE","features":[556]},{"name":"WMIQ_RPN_FROM_PATH","features":[556]},{"name":"WMIQ_RPN_FROM_UNARY","features":[556]},{"name":"WMIQ_RPN_GET_EXPR_SHAPE","features":[556]},{"name":"WMIQ_RPN_GET_LEFT_FUNCTION","features":[556]},{"name":"WMIQ_RPN_GET_RELOP","features":[556]},{"name":"WMIQ_RPN_GET_RIGHT_FUNCTION","features":[556]},{"name":"WMIQ_RPN_GET_TOKEN_TYPE","features":[556]},{"name":"WMIQ_RPN_LEFT_FUNCTION","features":[556]},{"name":"WMIQ_RPN_LEFT_PROPERTY_NAME","features":[556]},{"name":"WMIQ_RPN_NEXT_TOKEN","features":[556]},{"name":"WMIQ_RPN_OP_EQ","features":[556]},{"name":"WMIQ_RPN_OP_GE","features":[556]},{"name":"WMIQ_RPN_OP_GT","features":[556]},{"name":"WMIQ_RPN_OP_ISA","features":[556]},{"name":"WMIQ_RPN_OP_ISNOTA","features":[556]},{"name":"WMIQ_RPN_OP_ISNOTNULL","features":[556]},{"name":"WMIQ_RPN_OP_ISNULL","features":[556]},{"name":"WMIQ_RPN_OP_LE","features":[556]},{"name":"WMIQ_RPN_OP_LIKE","features":[556]},{"name":"WMIQ_RPN_OP_LT","features":[556]},{"name":"WMIQ_RPN_OP_NE","features":[556]},{"name":"WMIQ_RPN_OP_UNDEFINED","features":[556]},{"name":"WMIQ_RPN_RELOP","features":[556]},{"name":"WMIQ_RPN_RIGHT_FUNCTION","features":[556]},{"name":"WMIQ_RPN_RIGHT_PROPERTY_NAME","features":[556]},{"name":"WMIQ_RPN_TOKEN_AND","features":[556]},{"name":"WMIQ_RPN_TOKEN_EXPRESSION","features":[556]},{"name":"WMIQ_RPN_TOKEN_FLAGS","features":[556]},{"name":"WMIQ_RPN_TOKEN_NOT","features":[556]},{"name":"WMIQ_RPN_TOKEN_OR","features":[556]},{"name":"WMI_OBJ_TEXT","features":[556]},{"name":"WMI_OBJ_TEXT_CIM_DTD_2_0","features":[556]},{"name":"WMI_OBJ_TEXT_LAST","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_DTD_2_0","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT1","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT10","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT2","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT3","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT4","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT5","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT6","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT7","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT8","features":[556]},{"name":"WMI_OBJ_TEXT_WMI_EXT9","features":[556]},{"name":"WbemAdministrativeLocator","features":[556]},{"name":"WbemAuthenticatedLocator","features":[556]},{"name":"WbemAuthenticationLevelEnum","features":[556]},{"name":"WbemBackupRestore","features":[556]},{"name":"WbemChangeFlagEnum","features":[556]},{"name":"WbemCimtypeEnum","features":[556]},{"name":"WbemClassObject","features":[556]},{"name":"WbemComparisonFlagEnum","features":[556]},{"name":"WbemConnectOptionsEnum","features":[556]},{"name":"WbemContext","features":[556]},{"name":"WbemDCOMTransport","features":[556]},{"name":"WbemDecoupledBasicEventProvider","features":[556]},{"name":"WbemDecoupledRegistrar","features":[556]},{"name":"WbemDefPath","features":[556]},{"name":"WbemErrorEnum","features":[556]},{"name":"WbemFlagEnum","features":[556]},{"name":"WbemImpersonationLevelEnum","features":[556]},{"name":"WbemLevel1Login","features":[556]},{"name":"WbemLocalAddrRes","features":[556]},{"name":"WbemLocator","features":[556]},{"name":"WbemObjectTextFormatEnum","features":[556]},{"name":"WbemObjectTextSrc","features":[556]},{"name":"WbemPrivilegeEnum","features":[556]},{"name":"WbemQuery","features":[556]},{"name":"WbemQueryFlagEnum","features":[556]},{"name":"WbemRefresher","features":[556]},{"name":"WbemStatusCodeText","features":[556]},{"name":"WbemTextFlagEnum","features":[556]},{"name":"WbemTimeout","features":[556]},{"name":"WbemUnauthenticatedLocator","features":[556]},{"name":"WbemUninitializedClassObject","features":[556]},{"name":"wbemAuthenticationLevelCall","features":[556]},{"name":"wbemAuthenticationLevelConnect","features":[556]},{"name":"wbemAuthenticationLevelDefault","features":[556]},{"name":"wbemAuthenticationLevelNone","features":[556]},{"name":"wbemAuthenticationLevelPkt","features":[556]},{"name":"wbemAuthenticationLevelPktIntegrity","features":[556]},{"name":"wbemAuthenticationLevelPktPrivacy","features":[556]},{"name":"wbemChangeFlagAdvisory","features":[556]},{"name":"wbemChangeFlagCreateOnly","features":[556]},{"name":"wbemChangeFlagCreateOrUpdate","features":[556]},{"name":"wbemChangeFlagStrongValidation","features":[556]},{"name":"wbemChangeFlagUpdateCompatible","features":[556]},{"name":"wbemChangeFlagUpdateForceMode","features":[556]},{"name":"wbemChangeFlagUpdateOnly","features":[556]},{"name":"wbemChangeFlagUpdateSafeMode","features":[556]},{"name":"wbemCimtypeBoolean","features":[556]},{"name":"wbemCimtypeChar16","features":[556]},{"name":"wbemCimtypeDatetime","features":[556]},{"name":"wbemCimtypeObject","features":[556]},{"name":"wbemCimtypeReal32","features":[556]},{"name":"wbemCimtypeReal64","features":[556]},{"name":"wbemCimtypeReference","features":[556]},{"name":"wbemCimtypeSint16","features":[556]},{"name":"wbemCimtypeSint32","features":[556]},{"name":"wbemCimtypeSint64","features":[556]},{"name":"wbemCimtypeSint8","features":[556]},{"name":"wbemCimtypeString","features":[556]},{"name":"wbemCimtypeUint16","features":[556]},{"name":"wbemCimtypeUint32","features":[556]},{"name":"wbemCimtypeUint64","features":[556]},{"name":"wbemCimtypeUint8","features":[556]},{"name":"wbemComparisonFlagIgnoreCase","features":[556]},{"name":"wbemComparisonFlagIgnoreClass","features":[556]},{"name":"wbemComparisonFlagIgnoreDefaultValues","features":[556]},{"name":"wbemComparisonFlagIgnoreFlavor","features":[556]},{"name":"wbemComparisonFlagIgnoreObjectSource","features":[556]},{"name":"wbemComparisonFlagIgnoreQualifiers","features":[556]},{"name":"wbemComparisonFlagIncludeAll","features":[556]},{"name":"wbemConnectFlagUseMaxWait","features":[556]},{"name":"wbemErrAccessDenied","features":[556]},{"name":"wbemErrAggregatingByObject","features":[556]},{"name":"wbemErrAlreadyExists","features":[556]},{"name":"wbemErrAmbiguousOperation","features":[556]},{"name":"wbemErrAmendedObject","features":[556]},{"name":"wbemErrBackupRestoreWinmgmtRunning","features":[556]},{"name":"wbemErrBufferTooSmall","features":[556]},{"name":"wbemErrCallCancelled","features":[556]},{"name":"wbemErrCannotBeAbstract","features":[556]},{"name":"wbemErrCannotBeKey","features":[556]},{"name":"wbemErrCannotBeSingleton","features":[556]},{"name":"wbemErrCannotChangeIndexInheritance","features":[556]},{"name":"wbemErrCannotChangeKeyInheritance","features":[556]},{"name":"wbemErrCircularReference","features":[556]},{"name":"wbemErrClassHasChildren","features":[556]},{"name":"wbemErrClassHasInstances","features":[556]},{"name":"wbemErrClassNameTooWide","features":[556]},{"name":"wbemErrClientTooSlow","features":[556]},{"name":"wbemErrConnectionFailed","features":[556]},{"name":"wbemErrCriticalError","features":[556]},{"name":"wbemErrDatabaseVerMismatch","features":[556]},{"name":"wbemErrEncryptedConnectionRequired","features":[556]},{"name":"wbemErrFailed","features":[556]},{"name":"wbemErrFatalTransportError","features":[556]},{"name":"wbemErrForcedRollback","features":[556]},{"name":"wbemErrHandleOutOfDate","features":[556]},{"name":"wbemErrIllegalNull","features":[556]},{"name":"wbemErrIllegalOperation","features":[556]},{"name":"wbemErrIncompleteClass","features":[556]},{"name":"wbemErrInitializationFailure","features":[556]},{"name":"wbemErrInvalidAssociation","features":[556]},{"name":"wbemErrInvalidCimType","features":[556]},{"name":"wbemErrInvalidClass","features":[556]},{"name":"wbemErrInvalidContext","features":[556]},{"name":"wbemErrInvalidDuplicateParameter","features":[556]},{"name":"wbemErrInvalidFlavor","features":[556]},{"name":"wbemErrInvalidHandleRequest","features":[556]},{"name":"wbemErrInvalidLocale","features":[556]},{"name":"wbemErrInvalidMethod","features":[556]},{"name":"wbemErrInvalidMethodParameters","features":[556]},{"name":"wbemErrInvalidNamespace","features":[556]},{"name":"wbemErrInvalidObject","features":[556]},{"name":"wbemErrInvalidObjectPath","features":[556]},{"name":"wbemErrInvalidOperation","features":[556]},{"name":"wbemErrInvalidOperator","features":[556]},{"name":"wbemErrInvalidParameter","features":[556]},{"name":"wbemErrInvalidParameterId","features":[556]},{"name":"wbemErrInvalidProperty","features":[556]},{"name":"wbemErrInvalidPropertyType","features":[556]},{"name":"wbemErrInvalidProviderRegistration","features":[556]},{"name":"wbemErrInvalidQualifier","features":[556]},{"name":"wbemErrInvalidQualifierType","features":[556]},{"name":"wbemErrInvalidQuery","features":[556]},{"name":"wbemErrInvalidQueryType","features":[556]},{"name":"wbemErrInvalidStream","features":[556]},{"name":"wbemErrInvalidSuperclass","features":[556]},{"name":"wbemErrInvalidSyntax","features":[556]},{"name":"wbemErrLocalCredentials","features":[556]},{"name":"wbemErrMarshalInvalidSignature","features":[556]},{"name":"wbemErrMarshalVersionMismatch","features":[556]},{"name":"wbemErrMethodDisabled","features":[556]},{"name":"wbemErrMethodNameTooWide","features":[556]},{"name":"wbemErrMethodNotImplemented","features":[556]},{"name":"wbemErrMissingAggregationList","features":[556]},{"name":"wbemErrMissingGroupWithin","features":[556]},{"name":"wbemErrMissingParameter","features":[556]},{"name":"wbemErrNoSchema","features":[556]},{"name":"wbemErrNonConsecutiveParameterIds","features":[556]},{"name":"wbemErrNondecoratedObject","features":[556]},{"name":"wbemErrNotAvailable","features":[556]},{"name":"wbemErrNotEventClass","features":[556]},{"name":"wbemErrNotFound","features":[556]},{"name":"wbemErrNotSupported","features":[556]},{"name":"wbemErrNullSecurityDescriptor","features":[556]},{"name":"wbemErrOutOfDiskSpace","features":[556]},{"name":"wbemErrOutOfMemory","features":[556]},{"name":"wbemErrOverrideNotAllowed","features":[556]},{"name":"wbemErrParameterIdOnRetval","features":[556]},{"name":"wbemErrPrivilegeNotHeld","features":[556]},{"name":"wbemErrPropagatedMethod","features":[556]},{"name":"wbemErrPropagatedProperty","features":[556]},{"name":"wbemErrPropagatedQualifier","features":[556]},{"name":"wbemErrPropertyNameTooWide","features":[556]},{"name":"wbemErrPropertyNotAnObject","features":[556]},{"name":"wbemErrProviderAlreadyRegistered","features":[556]},{"name":"wbemErrProviderFailure","features":[556]},{"name":"wbemErrProviderLoadFailure","features":[556]},{"name":"wbemErrProviderNotCapable","features":[556]},{"name":"wbemErrProviderNotFound","features":[556]},{"name":"wbemErrProviderNotRegistered","features":[556]},{"name":"wbemErrProviderSuspended","features":[556]},{"name":"wbemErrQualifierNameTooWide","features":[556]},{"name":"wbemErrQueryNotImplemented","features":[556]},{"name":"wbemErrQueueOverflow","features":[556]},{"name":"wbemErrQuotaViolation","features":[556]},{"name":"wbemErrReadOnly","features":[556]},{"name":"wbemErrRefresherBusy","features":[556]},{"name":"wbemErrRegistrationTooBroad","features":[556]},{"name":"wbemErrRegistrationTooPrecise","features":[556]},{"name":"wbemErrRerunCommand","features":[556]},{"name":"wbemErrResetToDefault","features":[556]},{"name":"wbemErrServerTooBusy","features":[556]},{"name":"wbemErrShuttingDown","features":[556]},{"name":"wbemErrSynchronizationRequired","features":[556]},{"name":"wbemErrSystemProperty","features":[556]},{"name":"wbemErrTimedout","features":[556]},{"name":"wbemErrTimeout","features":[556]},{"name":"wbemErrTooManyProperties","features":[556]},{"name":"wbemErrTooMuchData","features":[556]},{"name":"wbemErrTransactionConflict","features":[556]},{"name":"wbemErrTransportFailure","features":[556]},{"name":"wbemErrTypeMismatch","features":[556]},{"name":"wbemErrUnexpected","features":[556]},{"name":"wbemErrUninterpretableProviderQuery","features":[556]},{"name":"wbemErrUnknownObjectType","features":[556]},{"name":"wbemErrUnknownPacketType","features":[556]},{"name":"wbemErrUnparsableQuery","features":[556]},{"name":"wbemErrUnsupportedClassUpdate","features":[556]},{"name":"wbemErrUnsupportedLocale","features":[556]},{"name":"wbemErrUnsupportedParameter","features":[556]},{"name":"wbemErrUnsupportedPutExtension","features":[556]},{"name":"wbemErrUpdateOverrideNotAllowed","features":[556]},{"name":"wbemErrUpdatePropagatedMethod","features":[556]},{"name":"wbemErrUpdateTypeMismatch","features":[556]},{"name":"wbemErrValueOutOfRange","features":[556]},{"name":"wbemErrVetoDelete","features":[556]},{"name":"wbemErrVetoPut","features":[556]},{"name":"wbemFlagBidirectional","features":[556]},{"name":"wbemFlagDirectRead","features":[556]},{"name":"wbemFlagDontSendStatus","features":[556]},{"name":"wbemFlagEnsureLocatable","features":[556]},{"name":"wbemFlagForwardOnly","features":[556]},{"name":"wbemFlagGetDefault","features":[556]},{"name":"wbemFlagNoErrorObject","features":[556]},{"name":"wbemFlagReturnErrorObject","features":[556]},{"name":"wbemFlagReturnImmediately","features":[556]},{"name":"wbemFlagReturnWhenComplete","features":[556]},{"name":"wbemFlagSendOnlySelected","features":[556]},{"name":"wbemFlagSendStatus","features":[556]},{"name":"wbemFlagSpawnInstance","features":[556]},{"name":"wbemFlagUseAmendedQualifiers","features":[556]},{"name":"wbemFlagUseCurrentTime","features":[556]},{"name":"wbemImpersonationLevelAnonymous","features":[556]},{"name":"wbemImpersonationLevelDelegate","features":[556]},{"name":"wbemImpersonationLevelIdentify","features":[556]},{"name":"wbemImpersonationLevelImpersonate","features":[556]},{"name":"wbemNoErr","features":[556]},{"name":"wbemObjectTextFormatCIMDTD20","features":[556]},{"name":"wbemObjectTextFormatWMIDTD20","features":[556]},{"name":"wbemPrivilegeAudit","features":[556]},{"name":"wbemPrivilegeBackup","features":[556]},{"name":"wbemPrivilegeChangeNotify","features":[556]},{"name":"wbemPrivilegeCreatePagefile","features":[556]},{"name":"wbemPrivilegeCreatePermanent","features":[556]},{"name":"wbemPrivilegeCreateToken","features":[556]},{"name":"wbemPrivilegeDebug","features":[556]},{"name":"wbemPrivilegeEnableDelegation","features":[556]},{"name":"wbemPrivilegeIncreaseBasePriority","features":[556]},{"name":"wbemPrivilegeIncreaseQuota","features":[556]},{"name":"wbemPrivilegeLoadDriver","features":[556]},{"name":"wbemPrivilegeLockMemory","features":[556]},{"name":"wbemPrivilegeMachineAccount","features":[556]},{"name":"wbemPrivilegeManageVolume","features":[556]},{"name":"wbemPrivilegePrimaryToken","features":[556]},{"name":"wbemPrivilegeProfileSingleProcess","features":[556]},{"name":"wbemPrivilegeRemoteShutdown","features":[556]},{"name":"wbemPrivilegeRestore","features":[556]},{"name":"wbemPrivilegeSecurity","features":[556]},{"name":"wbemPrivilegeShutdown","features":[556]},{"name":"wbemPrivilegeSyncAgent","features":[556]},{"name":"wbemPrivilegeSystemEnvironment","features":[556]},{"name":"wbemPrivilegeSystemProfile","features":[556]},{"name":"wbemPrivilegeSystemtime","features":[556]},{"name":"wbemPrivilegeTakeOwnership","features":[556]},{"name":"wbemPrivilegeTcb","features":[556]},{"name":"wbemPrivilegeUndock","features":[556]},{"name":"wbemQueryFlagDeep","features":[556]},{"name":"wbemQueryFlagPrototype","features":[556]},{"name":"wbemQueryFlagShallow","features":[556]},{"name":"wbemTextFlagNoFlavors","features":[556]},{"name":"wbemTimeoutInfinite","features":[556]}],"649":[{"name":"ACCESSTIMEOUT","features":[526]},{"name":"ACC_UTILITY_STATE_FLAGS","features":[526]},{"name":"ANNO_CONTAINER","features":[526]},{"name":"ANNO_THIS","features":[526]},{"name":"ANRUS_ON_SCREEN_KEYBOARD_ACTIVE","features":[526]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE","features":[526]},{"name":"ANRUS_PRIORITY_AUDIO_ACTIVE_NODUCK","features":[526]},{"name":"ANRUS_PRIORITY_AUDIO_DYNAMIC_DUCK","features":[526]},{"name":"ANRUS_TOUCH_MODIFICATION_ACTIVE","features":[526]},{"name":"AccNotifyTouchInteraction","features":[305,526]},{"name":"AccSetRunningUtilityState","features":[305,526]},{"name":"AcceleratorKey_Property_GUID","features":[526]},{"name":"AccessKey_Property_GUID","features":[526]},{"name":"AccessibleChildren","features":[356,526]},{"name":"AccessibleObjectFromEvent","features":[305,356,526]},{"name":"AccessibleObjectFromPoint","features":[305,356,526]},{"name":"AccessibleObjectFromWindow","features":[305,526]},{"name":"ActiveEnd","features":[526]},{"name":"ActiveEnd_End","features":[526]},{"name":"ActiveEnd_None","features":[526]},{"name":"ActiveEnd_Start","features":[526]},{"name":"ActiveTextPositionChanged_Event_GUID","features":[526]},{"name":"AnimationStyle","features":[526]},{"name":"AnimationStyle_BlinkingBackground","features":[526]},{"name":"AnimationStyle_LasVegasLights","features":[526]},{"name":"AnimationStyle_MarchingBlackAnts","features":[526]},{"name":"AnimationStyle_MarchingRedAnts","features":[526]},{"name":"AnimationStyle_None","features":[526]},{"name":"AnimationStyle_Other","features":[526]},{"name":"AnimationStyle_Shimmer","features":[526]},{"name":"AnimationStyle_SparkleText","features":[526]},{"name":"AnnoScope","features":[526]},{"name":"AnnotationObjects_Property_GUID","features":[526]},{"name":"AnnotationType_AdvancedProofingIssue","features":[526]},{"name":"AnnotationType_Author","features":[526]},{"name":"AnnotationType_CircularReferenceError","features":[526]},{"name":"AnnotationType_Comment","features":[526]},{"name":"AnnotationType_ConflictingChange","features":[526]},{"name":"AnnotationType_DataValidationError","features":[526]},{"name":"AnnotationType_DeletionChange","features":[526]},{"name":"AnnotationType_EditingLockedChange","features":[526]},{"name":"AnnotationType_Endnote","features":[526]},{"name":"AnnotationType_ExternalChange","features":[526]},{"name":"AnnotationType_Footer","features":[526]},{"name":"AnnotationType_Footnote","features":[526]},{"name":"AnnotationType_FormatChange","features":[526]},{"name":"AnnotationType_FormulaError","features":[526]},{"name":"AnnotationType_GrammarError","features":[526]},{"name":"AnnotationType_Header","features":[526]},{"name":"AnnotationType_Highlighted","features":[526]},{"name":"AnnotationType_InsertionChange","features":[526]},{"name":"AnnotationType_Mathematics","features":[526]},{"name":"AnnotationType_MoveChange","features":[526]},{"name":"AnnotationType_Sensitive","features":[526]},{"name":"AnnotationType_SpellingError","features":[526]},{"name":"AnnotationType_TrackChanges","features":[526]},{"name":"AnnotationType_Unknown","features":[526]},{"name":"AnnotationType_UnsyncedChange","features":[526]},{"name":"AnnotationTypes_Property_GUID","features":[526]},{"name":"Annotation_AdvancedProofingIssue_GUID","features":[526]},{"name":"Annotation_AnnotationTypeId_Property_GUID","features":[526]},{"name":"Annotation_AnnotationTypeName_Property_GUID","features":[526]},{"name":"Annotation_Author_GUID","features":[526]},{"name":"Annotation_Author_Property_GUID","features":[526]},{"name":"Annotation_CircularReferenceError_GUID","features":[526]},{"name":"Annotation_Comment_GUID","features":[526]},{"name":"Annotation_ConflictingChange_GUID","features":[526]},{"name":"Annotation_Custom_GUID","features":[526]},{"name":"Annotation_DataValidationError_GUID","features":[526]},{"name":"Annotation_DateTime_Property_GUID","features":[526]},{"name":"Annotation_DeletionChange_GUID","features":[526]},{"name":"Annotation_EditingLockedChange_GUID","features":[526]},{"name":"Annotation_Endnote_GUID","features":[526]},{"name":"Annotation_ExternalChange_GUID","features":[526]},{"name":"Annotation_Footer_GUID","features":[526]},{"name":"Annotation_Footnote_GUID","features":[526]},{"name":"Annotation_FormatChange_GUID","features":[526]},{"name":"Annotation_FormulaError_GUID","features":[526]},{"name":"Annotation_GrammarError_GUID","features":[526]},{"name":"Annotation_Header_GUID","features":[526]},{"name":"Annotation_Highlighted_GUID","features":[526]},{"name":"Annotation_InsertionChange_GUID","features":[526]},{"name":"Annotation_Mathematics_GUID","features":[526]},{"name":"Annotation_MoveChange_GUID","features":[526]},{"name":"Annotation_Pattern_GUID","features":[526]},{"name":"Annotation_Sensitive_GUID","features":[526]},{"name":"Annotation_SpellingError_GUID","features":[526]},{"name":"Annotation_Target_Property_GUID","features":[526]},{"name":"Annotation_TrackChanges_GUID","features":[526]},{"name":"Annotation_UnsyncedChange_GUID","features":[526]},{"name":"AppBar_Control_GUID","features":[526]},{"name":"AriaProperties_Property_GUID","features":[526]},{"name":"AriaRole_Property_GUID","features":[526]},{"name":"Assertive","features":[526]},{"name":"AsyncContentLoadedState","features":[526]},{"name":"AsyncContentLoadedState_Beginning","features":[526]},{"name":"AsyncContentLoadedState_Completed","features":[526]},{"name":"AsyncContentLoadedState_Progress","features":[526]},{"name":"AsyncContentLoaded_Event_GUID","features":[526]},{"name":"AutomationElementMode","features":[526]},{"name":"AutomationElementMode_Full","features":[526]},{"name":"AutomationElementMode_None","features":[526]},{"name":"AutomationFocusChanged_Event_GUID","features":[526]},{"name":"AutomationId_Property_GUID","features":[526]},{"name":"AutomationIdentifierType","features":[526]},{"name":"AutomationIdentifierType_Annotation","features":[526]},{"name":"AutomationIdentifierType_Changes","features":[526]},{"name":"AutomationIdentifierType_ControlType","features":[526]},{"name":"AutomationIdentifierType_Event","features":[526]},{"name":"AutomationIdentifierType_LandmarkType","features":[526]},{"name":"AutomationIdentifierType_Pattern","features":[526]},{"name":"AutomationIdentifierType_Property","features":[526]},{"name":"AutomationIdentifierType_Style","features":[526]},{"name":"AutomationIdentifierType_TextAttribute","features":[526]},{"name":"AutomationPropertyChanged_Event_GUID","features":[526]},{"name":"BoundingRectangle_Property_GUID","features":[526]},{"name":"BulletStyle","features":[526]},{"name":"BulletStyle_DashBullet","features":[526]},{"name":"BulletStyle_FilledRoundBullet","features":[526]},{"name":"BulletStyle_FilledSquareBullet","features":[526]},{"name":"BulletStyle_HollowRoundBullet","features":[526]},{"name":"BulletStyle_HollowSquareBullet","features":[526]},{"name":"BulletStyle_None","features":[526]},{"name":"BulletStyle_Other","features":[526]},{"name":"Button_Control_GUID","features":[526]},{"name":"CAccPropServices","features":[526]},{"name":"CLSID_AccPropServices","features":[526]},{"name":"CUIAutomation","features":[526]},{"name":"CUIAutomation8","features":[526]},{"name":"CUIAutomationRegistrar","features":[526]},{"name":"Calendar_Control_GUID","features":[526]},{"name":"CapStyle","features":[526]},{"name":"CapStyle_AllCap","features":[526]},{"name":"CapStyle_AllPetiteCaps","features":[526]},{"name":"CapStyle_None","features":[526]},{"name":"CapStyle_Other","features":[526]},{"name":"CapStyle_PetiteCaps","features":[526]},{"name":"CapStyle_SmallCap","features":[526]},{"name":"CapStyle_Titling","features":[526]},{"name":"CapStyle_Unicase","features":[526]},{"name":"CaretBidiMode","features":[526]},{"name":"CaretBidiMode_LTR","features":[526]},{"name":"CaretBidiMode_RTL","features":[526]},{"name":"CaretPosition","features":[526]},{"name":"CaretPosition_BeginningOfLine","features":[526]},{"name":"CaretPosition_EndOfLine","features":[526]},{"name":"CaretPosition_Unknown","features":[526]},{"name":"CenterPoint_Property_GUID","features":[526]},{"name":"Changes_Event_GUID","features":[526]},{"name":"Changes_Summary_GUID","features":[526]},{"name":"CheckBox_Control_GUID","features":[526]},{"name":"ClassName_Property_GUID","features":[526]},{"name":"ClickablePoint_Property_GUID","features":[526]},{"name":"CoalesceEventsOptions","features":[526]},{"name":"CoalesceEventsOptions_Disabled","features":[526]},{"name":"CoalesceEventsOptions_Enabled","features":[526]},{"name":"ComboBox_Control_GUID","features":[526]},{"name":"ConditionType","features":[526]},{"name":"ConditionType_And","features":[526]},{"name":"ConditionType_False","features":[526]},{"name":"ConditionType_Not","features":[526]},{"name":"ConditionType_Or","features":[526]},{"name":"ConditionType_Property","features":[526]},{"name":"ConditionType_True","features":[526]},{"name":"ConnectionRecoveryBehaviorOptions","features":[526]},{"name":"ConnectionRecoveryBehaviorOptions_Disabled","features":[526]},{"name":"ConnectionRecoveryBehaviorOptions_Enabled","features":[526]},{"name":"ControlType_Property_GUID","features":[526]},{"name":"ControllerFor_Property_GUID","features":[526]},{"name":"CreateStdAccessibleObject","features":[305,526]},{"name":"CreateStdAccessibleProxyA","features":[305,526]},{"name":"CreateStdAccessibleProxyW","features":[305,526]},{"name":"Culture_Property_GUID","features":[526]},{"name":"CustomNavigation_Pattern_GUID","features":[526]},{"name":"Custom_Control_GUID","features":[526]},{"name":"DISPID_ACC_CHILD","features":[526]},{"name":"DISPID_ACC_CHILDCOUNT","features":[526]},{"name":"DISPID_ACC_DEFAULTACTION","features":[526]},{"name":"DISPID_ACC_DESCRIPTION","features":[526]},{"name":"DISPID_ACC_DODEFAULTACTION","features":[526]},{"name":"DISPID_ACC_FOCUS","features":[526]},{"name":"DISPID_ACC_HELP","features":[526]},{"name":"DISPID_ACC_HELPTOPIC","features":[526]},{"name":"DISPID_ACC_HITTEST","features":[526]},{"name":"DISPID_ACC_KEYBOARDSHORTCUT","features":[526]},{"name":"DISPID_ACC_LOCATION","features":[526]},{"name":"DISPID_ACC_NAME","features":[526]},{"name":"DISPID_ACC_NAVIGATE","features":[526]},{"name":"DISPID_ACC_PARENT","features":[526]},{"name":"DISPID_ACC_ROLE","features":[526]},{"name":"DISPID_ACC_SELECT","features":[526]},{"name":"DISPID_ACC_SELECTION","features":[526]},{"name":"DISPID_ACC_STATE","features":[526]},{"name":"DISPID_ACC_VALUE","features":[526]},{"name":"DataGrid_Control_GUID","features":[526]},{"name":"DataItem_Control_GUID","features":[526]},{"name":"DescribedBy_Property_GUID","features":[526]},{"name":"DockPattern_SetDockPosition","features":[526]},{"name":"DockPosition","features":[526]},{"name":"DockPosition_Bottom","features":[526]},{"name":"DockPosition_Fill","features":[526]},{"name":"DockPosition_Left","features":[526]},{"name":"DockPosition_None","features":[526]},{"name":"DockPosition_Right","features":[526]},{"name":"DockPosition_Top","features":[526]},{"name":"Dock_DockPosition_Property_GUID","features":[526]},{"name":"Dock_Pattern_GUID","features":[526]},{"name":"Document_Control_GUID","features":[526]},{"name":"Drag_DragCancel_Event_GUID","features":[526]},{"name":"Drag_DragComplete_Event_GUID","features":[526]},{"name":"Drag_DragStart_Event_GUID","features":[526]},{"name":"Drag_DropEffect_Property_GUID","features":[526]},{"name":"Drag_DropEffects_Property_GUID","features":[526]},{"name":"Drag_GrabbedItems_Property_GUID","features":[526]},{"name":"Drag_IsGrabbed_Property_GUID","features":[526]},{"name":"Drag_Pattern_GUID","features":[526]},{"name":"DropTarget_DragEnter_Event_GUID","features":[526]},{"name":"DropTarget_DragLeave_Event_GUID","features":[526]},{"name":"DropTarget_DropTargetEffect_Property_GUID","features":[526]},{"name":"DropTarget_DropTargetEffects_Property_GUID","features":[526]},{"name":"DropTarget_Dropped_Event_GUID","features":[526]},{"name":"DropTarget_Pattern_GUID","features":[526]},{"name":"Edit_Control_GUID","features":[526]},{"name":"EventArgsType","features":[526]},{"name":"EventArgsType_ActiveTextPositionChanged","features":[526]},{"name":"EventArgsType_AsyncContentLoaded","features":[526]},{"name":"EventArgsType_Changes","features":[526]},{"name":"EventArgsType_Notification","features":[526]},{"name":"EventArgsType_PropertyChanged","features":[526]},{"name":"EventArgsType_Simple","features":[526]},{"name":"EventArgsType_StructureChanged","features":[526]},{"name":"EventArgsType_StructuredMarkup","features":[526]},{"name":"EventArgsType_TextEditTextChanged","features":[526]},{"name":"EventArgsType_WindowClosed","features":[526]},{"name":"ExpandCollapsePattern_Collapse","features":[526]},{"name":"ExpandCollapsePattern_Expand","features":[526]},{"name":"ExpandCollapseState","features":[526]},{"name":"ExpandCollapseState_Collapsed","features":[526]},{"name":"ExpandCollapseState_Expanded","features":[526]},{"name":"ExpandCollapseState_LeafNode","features":[526]},{"name":"ExpandCollapseState_PartiallyExpanded","features":[526]},{"name":"ExpandCollapse_ExpandCollapseState_Property_GUID","features":[526]},{"name":"ExpandCollapse_Pattern_GUID","features":[526]},{"name":"ExtendedProperty","features":[526]},{"name":"FILTERKEYS","features":[526]},{"name":"FillColor_Property_GUID","features":[526]},{"name":"FillType","features":[526]},{"name":"FillType_Color","features":[526]},{"name":"FillType_Gradient","features":[526]},{"name":"FillType_None","features":[526]},{"name":"FillType_Pattern","features":[526]},{"name":"FillType_Picture","features":[526]},{"name":"FillType_Property_GUID","features":[526]},{"name":"FlowDirections","features":[526]},{"name":"FlowDirections_BottomToTop","features":[526]},{"name":"FlowDirections_Default","features":[526]},{"name":"FlowDirections_RightToLeft","features":[526]},{"name":"FlowDirections_Vertical","features":[526]},{"name":"FlowsFrom_Property_GUID","features":[526]},{"name":"FlowsTo_Property_GUID","features":[526]},{"name":"FrameworkId_Property_GUID","features":[526]},{"name":"FullDescription_Property_GUID","features":[526]},{"name":"GetOleaccVersionInfo","features":[526]},{"name":"GetRoleTextA","features":[526]},{"name":"GetRoleTextW","features":[526]},{"name":"GetStateTextA","features":[526]},{"name":"GetStateTextW","features":[526]},{"name":"GridItem_ColumnSpan_Property_GUID","features":[526]},{"name":"GridItem_Column_Property_GUID","features":[526]},{"name":"GridItem_Parent_Property_GUID","features":[526]},{"name":"GridItem_Pattern_GUID","features":[526]},{"name":"GridItem_RowSpan_Property_GUID","features":[526]},{"name":"GridItem_Row_Property_GUID","features":[526]},{"name":"GridPattern_GetItem","features":[526]},{"name":"Grid_ColumnCount_Property_GUID","features":[526]},{"name":"Grid_Pattern_GUID","features":[526]},{"name":"Grid_RowCount_Property_GUID","features":[526]},{"name":"Group_Control_GUID","features":[526]},{"name":"HCF_AVAILABLE","features":[526]},{"name":"HCF_CONFIRMHOTKEY","features":[526]},{"name":"HCF_HIGHCONTRASTON","features":[526]},{"name":"HCF_HOTKEYACTIVE","features":[526]},{"name":"HCF_HOTKEYAVAILABLE","features":[526]},{"name":"HCF_HOTKEYSOUND","features":[526]},{"name":"HCF_INDICATOR","features":[526]},{"name":"HCF_OPTION_NOTHEMECHANGE","features":[526]},{"name":"HIGHCONTRASTA","features":[526]},{"name":"HIGHCONTRASTW","features":[526]},{"name":"HIGHCONTRASTW_FLAGS","features":[526]},{"name":"HUIAEVENT","features":[526]},{"name":"HUIANODE","features":[526]},{"name":"HUIAPATTERNOBJECT","features":[526]},{"name":"HUIATEXTRANGE","features":[526]},{"name":"HWINEVENTHOOK","features":[526]},{"name":"HasKeyboardFocus_Property_GUID","features":[526]},{"name":"HeaderItem_Control_GUID","features":[526]},{"name":"Header_Control_GUID","features":[526]},{"name":"HeadingLevel1","features":[526]},{"name":"HeadingLevel2","features":[526]},{"name":"HeadingLevel3","features":[526]},{"name":"HeadingLevel4","features":[526]},{"name":"HeadingLevel5","features":[526]},{"name":"HeadingLevel6","features":[526]},{"name":"HeadingLevel7","features":[526]},{"name":"HeadingLevel8","features":[526]},{"name":"HeadingLevel9","features":[526]},{"name":"HeadingLevel_None","features":[526]},{"name":"HeadingLevel_Property_GUID","features":[526]},{"name":"HelpText_Property_GUID","features":[526]},{"name":"HorizontalTextAlignment","features":[526]},{"name":"HorizontalTextAlignment_Centered","features":[526]},{"name":"HorizontalTextAlignment_Justified","features":[526]},{"name":"HorizontalTextAlignment_Left","features":[526]},{"name":"HorizontalTextAlignment_Right","features":[526]},{"name":"HostedFragmentRootsInvalidated_Event_GUID","features":[526]},{"name":"Hyperlink_Control_GUID","features":[526]},{"name":"IAccIdentity","features":[526]},{"name":"IAccPropServer","features":[526]},{"name":"IAccPropServices","features":[526]},{"name":"IAccessible","features":[356,526]},{"name":"IAccessibleEx","features":[526]},{"name":"IAccessibleHandler","features":[526]},{"name":"IAccessibleHostingElementProviders","features":[526]},{"name":"IAccessibleWindowlessSite","features":[526]},{"name":"IAnnotationProvider","features":[526]},{"name":"ICustomNavigationProvider","features":[526]},{"name":"IDockProvider","features":[526]},{"name":"IDragProvider","features":[526]},{"name":"IDropTargetProvider","features":[526]},{"name":"IExpandCollapseProvider","features":[526]},{"name":"IGridItemProvider","features":[526]},{"name":"IGridProvider","features":[526]},{"name":"IIS_ControlAccessible","features":[526]},{"name":"IIS_IsOleaccProxy","features":[526]},{"name":"IInvokeProvider","features":[526]},{"name":"IItemContainerProvider","features":[526]},{"name":"ILegacyIAccessibleProvider","features":[526]},{"name":"IMultipleViewProvider","features":[526]},{"name":"IObjectModelProvider","features":[526]},{"name":"IProxyProviderWinEventHandler","features":[526]},{"name":"IProxyProviderWinEventSink","features":[526]},{"name":"IRangeValueProvider","features":[526]},{"name":"IRawElementProviderAdviseEvents","features":[526]},{"name":"IRawElementProviderFragment","features":[526]},{"name":"IRawElementProviderFragmentRoot","features":[526]},{"name":"IRawElementProviderHostingAccessibles","features":[526]},{"name":"IRawElementProviderHwndOverride","features":[526]},{"name":"IRawElementProviderSimple","features":[526]},{"name":"IRawElementProviderSimple2","features":[526]},{"name":"IRawElementProviderSimple3","features":[526]},{"name":"IRawElementProviderWindowlessSite","features":[526]},{"name":"IRichEditUiaInformation","features":[526]},{"name":"IRicheditWindowlessAccessibility","features":[526]},{"name":"IScrollItemProvider","features":[526]},{"name":"IScrollProvider","features":[526]},{"name":"ISelectionItemProvider","features":[526]},{"name":"ISelectionProvider","features":[526]},{"name":"ISelectionProvider2","features":[526]},{"name":"ISpreadsheetItemProvider","features":[526]},{"name":"ISpreadsheetProvider","features":[526]},{"name":"IStylesProvider","features":[526]},{"name":"ISynchronizedInputProvider","features":[526]},{"name":"ITableItemProvider","features":[526]},{"name":"ITableProvider","features":[526]},{"name":"ITextChildProvider","features":[526]},{"name":"ITextEditProvider","features":[526]},{"name":"ITextProvider","features":[526]},{"name":"ITextProvider2","features":[526]},{"name":"ITextRangeProvider","features":[526]},{"name":"ITextRangeProvider2","features":[526]},{"name":"IToggleProvider","features":[526]},{"name":"ITransformProvider","features":[526]},{"name":"ITransformProvider2","features":[526]},{"name":"IUIAutomation","features":[526]},{"name":"IUIAutomation2","features":[526]},{"name":"IUIAutomation3","features":[526]},{"name":"IUIAutomation4","features":[526]},{"name":"IUIAutomation5","features":[526]},{"name":"IUIAutomation6","features":[526]},{"name":"IUIAutomationActiveTextPositionChangedEventHandler","features":[526]},{"name":"IUIAutomationAndCondition","features":[526]},{"name":"IUIAutomationAnnotationPattern","features":[526]},{"name":"IUIAutomationBoolCondition","features":[526]},{"name":"IUIAutomationCacheRequest","features":[526]},{"name":"IUIAutomationChangesEventHandler","features":[526]},{"name":"IUIAutomationCondition","features":[526]},{"name":"IUIAutomationCustomNavigationPattern","features":[526]},{"name":"IUIAutomationDockPattern","features":[526]},{"name":"IUIAutomationDragPattern","features":[526]},{"name":"IUIAutomationDropTargetPattern","features":[526]},{"name":"IUIAutomationElement","features":[526]},{"name":"IUIAutomationElement2","features":[526]},{"name":"IUIAutomationElement3","features":[526]},{"name":"IUIAutomationElement4","features":[526]},{"name":"IUIAutomationElement5","features":[526]},{"name":"IUIAutomationElement6","features":[526]},{"name":"IUIAutomationElement7","features":[526]},{"name":"IUIAutomationElement8","features":[526]},{"name":"IUIAutomationElement9","features":[526]},{"name":"IUIAutomationElementArray","features":[526]},{"name":"IUIAutomationEventHandler","features":[526]},{"name":"IUIAutomationEventHandlerGroup","features":[526]},{"name":"IUIAutomationExpandCollapsePattern","features":[526]},{"name":"IUIAutomationFocusChangedEventHandler","features":[526]},{"name":"IUIAutomationGridItemPattern","features":[526]},{"name":"IUIAutomationGridPattern","features":[526]},{"name":"IUIAutomationInvokePattern","features":[526]},{"name":"IUIAutomationItemContainerPattern","features":[526]},{"name":"IUIAutomationLegacyIAccessiblePattern","features":[526]},{"name":"IUIAutomationMultipleViewPattern","features":[526]},{"name":"IUIAutomationNotCondition","features":[526]},{"name":"IUIAutomationNotificationEventHandler","features":[526]},{"name":"IUIAutomationObjectModelPattern","features":[526]},{"name":"IUIAutomationOrCondition","features":[526]},{"name":"IUIAutomationPatternHandler","features":[526]},{"name":"IUIAutomationPatternInstance","features":[526]},{"name":"IUIAutomationPropertyChangedEventHandler","features":[526]},{"name":"IUIAutomationPropertyCondition","features":[526]},{"name":"IUIAutomationProxyFactory","features":[526]},{"name":"IUIAutomationProxyFactoryEntry","features":[526]},{"name":"IUIAutomationProxyFactoryMapping","features":[526]},{"name":"IUIAutomationRangeValuePattern","features":[526]},{"name":"IUIAutomationRegistrar","features":[526]},{"name":"IUIAutomationScrollItemPattern","features":[526]},{"name":"IUIAutomationScrollPattern","features":[526]},{"name":"IUIAutomationSelectionItemPattern","features":[526]},{"name":"IUIAutomationSelectionPattern","features":[526]},{"name":"IUIAutomationSelectionPattern2","features":[526]},{"name":"IUIAutomationSpreadsheetItemPattern","features":[526]},{"name":"IUIAutomationSpreadsheetPattern","features":[526]},{"name":"IUIAutomationStructureChangedEventHandler","features":[526]},{"name":"IUIAutomationStylesPattern","features":[526]},{"name":"IUIAutomationSynchronizedInputPattern","features":[526]},{"name":"IUIAutomationTableItemPattern","features":[526]},{"name":"IUIAutomationTablePattern","features":[526]},{"name":"IUIAutomationTextChildPattern","features":[526]},{"name":"IUIAutomationTextEditPattern","features":[526]},{"name":"IUIAutomationTextEditTextChangedEventHandler","features":[526]},{"name":"IUIAutomationTextPattern","features":[526]},{"name":"IUIAutomationTextPattern2","features":[526]},{"name":"IUIAutomationTextRange","features":[526]},{"name":"IUIAutomationTextRange2","features":[526]},{"name":"IUIAutomationTextRange3","features":[526]},{"name":"IUIAutomationTextRangeArray","features":[526]},{"name":"IUIAutomationTogglePattern","features":[526]},{"name":"IUIAutomationTransformPattern","features":[526]},{"name":"IUIAutomationTransformPattern2","features":[526]},{"name":"IUIAutomationTreeWalker","features":[526]},{"name":"IUIAutomationValuePattern","features":[526]},{"name":"IUIAutomationVirtualizedItemPattern","features":[526]},{"name":"IUIAutomationWindowPattern","features":[526]},{"name":"IValueProvider","features":[526]},{"name":"IVirtualizedItemProvider","features":[526]},{"name":"IWindowProvider","features":[526]},{"name":"Image_Control_GUID","features":[526]},{"name":"InputDiscarded_Event_GUID","features":[526]},{"name":"InputReachedOtherElement_Event_GUID","features":[526]},{"name":"InputReachedTarget_Event_GUID","features":[526]},{"name":"InvokePattern_Invoke","features":[526]},{"name":"Invoke_Invoked_Event_GUID","features":[526]},{"name":"Invoke_Pattern_GUID","features":[526]},{"name":"IsAnnotationPatternAvailable_Property_GUID","features":[526]},{"name":"IsContentElement_Property_GUID","features":[526]},{"name":"IsControlElement_Property_GUID","features":[526]},{"name":"IsCustomNavigationPatternAvailable_Property_GUID","features":[526]},{"name":"IsDataValidForForm_Property_GUID","features":[526]},{"name":"IsDialog_Property_GUID","features":[526]},{"name":"IsDockPatternAvailable_Property_GUID","features":[526]},{"name":"IsDragPatternAvailable_Property_GUID","features":[526]},{"name":"IsDropTargetPatternAvailable_Property_GUID","features":[526]},{"name":"IsEnabled_Property_GUID","features":[526]},{"name":"IsExpandCollapsePatternAvailable_Property_GUID","features":[526]},{"name":"IsGridItemPatternAvailable_Property_GUID","features":[526]},{"name":"IsGridPatternAvailable_Property_GUID","features":[526]},{"name":"IsInvokePatternAvailable_Property_GUID","features":[526]},{"name":"IsItemContainerPatternAvailable_Property_GUID","features":[526]},{"name":"IsKeyboardFocusable_Property_GUID","features":[526]},{"name":"IsLegacyIAccessiblePatternAvailable_Property_GUID","features":[526]},{"name":"IsMultipleViewPatternAvailable_Property_GUID","features":[526]},{"name":"IsObjectModelPatternAvailable_Property_GUID","features":[526]},{"name":"IsOffscreen_Property_GUID","features":[526]},{"name":"IsPassword_Property_GUID","features":[526]},{"name":"IsPeripheral_Property_GUID","features":[526]},{"name":"IsRangeValuePatternAvailable_Property_GUID","features":[526]},{"name":"IsRequiredForForm_Property_GUID","features":[526]},{"name":"IsScrollItemPatternAvailable_Property_GUID","features":[526]},{"name":"IsScrollPatternAvailable_Property_GUID","features":[526]},{"name":"IsSelectionItemPatternAvailable_Property_GUID","features":[526]},{"name":"IsSelectionPattern2Available_Property_GUID","features":[526]},{"name":"IsSelectionPatternAvailable_Property_GUID","features":[526]},{"name":"IsSpreadsheetItemPatternAvailable_Property_GUID","features":[526]},{"name":"IsSpreadsheetPatternAvailable_Property_GUID","features":[526]},{"name":"IsStructuredMarkupPatternAvailable_Property_GUID","features":[526]},{"name":"IsStylesPatternAvailable_Property_GUID","features":[526]},{"name":"IsSynchronizedInputPatternAvailable_Property_GUID","features":[526]},{"name":"IsTableItemPatternAvailable_Property_GUID","features":[526]},{"name":"IsTablePatternAvailable_Property_GUID","features":[526]},{"name":"IsTextChildPatternAvailable_Property_GUID","features":[526]},{"name":"IsTextEditPatternAvailable_Property_GUID","features":[526]},{"name":"IsTextPattern2Available_Property_GUID","features":[526]},{"name":"IsTextPatternAvailable_Property_GUID","features":[526]},{"name":"IsTogglePatternAvailable_Property_GUID","features":[526]},{"name":"IsTransformPattern2Available_Property_GUID","features":[526]},{"name":"IsTransformPatternAvailable_Property_GUID","features":[526]},{"name":"IsValuePatternAvailable_Property_GUID","features":[526]},{"name":"IsVirtualizedItemPatternAvailable_Property_GUID","features":[526]},{"name":"IsWinEventHookInstalled","features":[305,526]},{"name":"IsWindowPatternAvailable_Property_GUID","features":[526]},{"name":"ItemContainerPattern_FindItemByProperty","features":[526]},{"name":"ItemContainer_Pattern_GUID","features":[526]},{"name":"ItemStatus_Property_GUID","features":[526]},{"name":"ItemType_Property_GUID","features":[526]},{"name":"LIBID_Accessibility","features":[526]},{"name":"LPFNACCESSIBLECHILDREN","features":[356,526]},{"name":"LPFNACCESSIBLEOBJECTFROMPOINT","features":[305,356,526]},{"name":"LPFNACCESSIBLEOBJECTFROMWINDOW","features":[305,526]},{"name":"LPFNCREATESTDACCESSIBLEOBJECT","features":[305,526]},{"name":"LPFNLRESULTFROMOBJECT","features":[305,526]},{"name":"LPFNOBJECTFROMLRESULT","features":[305,526]},{"name":"LabeledBy_Property_GUID","features":[526]},{"name":"LandmarkType_Property_GUID","features":[526]},{"name":"LayoutInvalidated_Event_GUID","features":[526]},{"name":"LegacyIAccessiblePattern_DoDefaultAction","features":[526]},{"name":"LegacyIAccessiblePattern_GetIAccessible","features":[356,526]},{"name":"LegacyIAccessiblePattern_Select","features":[526]},{"name":"LegacyIAccessiblePattern_SetValue","features":[526]},{"name":"LegacyIAccessible_ChildId_Property_GUID","features":[526]},{"name":"LegacyIAccessible_DefaultAction_Property_GUID","features":[526]},{"name":"LegacyIAccessible_Description_Property_GUID","features":[526]},{"name":"LegacyIAccessible_Help_Property_GUID","features":[526]},{"name":"LegacyIAccessible_KeyboardShortcut_Property_GUID","features":[526]},{"name":"LegacyIAccessible_Name_Property_GUID","features":[526]},{"name":"LegacyIAccessible_Pattern_GUID","features":[526]},{"name":"LegacyIAccessible_Role_Property_GUID","features":[526]},{"name":"LegacyIAccessible_Selection_Property_GUID","features":[526]},{"name":"LegacyIAccessible_State_Property_GUID","features":[526]},{"name":"LegacyIAccessible_Value_Property_GUID","features":[526]},{"name":"Level_Property_GUID","features":[526]},{"name":"ListItem_Control_GUID","features":[526]},{"name":"List_Control_GUID","features":[526]},{"name":"LiveRegionChanged_Event_GUID","features":[526]},{"name":"LiveSetting","features":[526]},{"name":"LiveSetting_Property_GUID","features":[526]},{"name":"LocalizedControlType_Property_GUID","features":[526]},{"name":"LocalizedLandmarkType_Property_GUID","features":[526]},{"name":"LresultFromObject","features":[305,526]},{"name":"MOUSEKEYS","features":[526]},{"name":"MSAAMENUINFO","features":[526]},{"name":"MSAA_MENU_SIG","features":[526]},{"name":"MenuBar_Control_GUID","features":[526]},{"name":"MenuClosed_Event_GUID","features":[526]},{"name":"MenuItem_Control_GUID","features":[526]},{"name":"MenuModeEnd_Event_GUID","features":[526]},{"name":"MenuModeStart_Event_GUID","features":[526]},{"name":"MenuOpened_Event_GUID","features":[526]},{"name":"Menu_Control_GUID","features":[526]},{"name":"MultipleViewPattern_GetViewName","features":[526]},{"name":"MultipleViewPattern_SetCurrentView","features":[526]},{"name":"MultipleView_CurrentView_Property_GUID","features":[526]},{"name":"MultipleView_Pattern_GUID","features":[526]},{"name":"MultipleView_SupportedViews_Property_GUID","features":[526]},{"name":"NAVDIR_DOWN","features":[526]},{"name":"NAVDIR_FIRSTCHILD","features":[526]},{"name":"NAVDIR_LASTCHILD","features":[526]},{"name":"NAVDIR_LEFT","features":[526]},{"name":"NAVDIR_MAX","features":[526]},{"name":"NAVDIR_MIN","features":[526]},{"name":"NAVDIR_NEXT","features":[526]},{"name":"NAVDIR_PREVIOUS","features":[526]},{"name":"NAVDIR_RIGHT","features":[526]},{"name":"NAVDIR_UP","features":[526]},{"name":"Name_Property_GUID","features":[526]},{"name":"NavigateDirection","features":[526]},{"name":"NavigateDirection_FirstChild","features":[526]},{"name":"NavigateDirection_LastChild","features":[526]},{"name":"NavigateDirection_NextSibling","features":[526]},{"name":"NavigateDirection_Parent","features":[526]},{"name":"NavigateDirection_PreviousSibling","features":[526]},{"name":"NewNativeWindowHandle_Property_GUID","features":[526]},{"name":"NormalizeState","features":[526]},{"name":"NormalizeState_Custom","features":[526]},{"name":"NormalizeState_None","features":[526]},{"name":"NormalizeState_View","features":[526]},{"name":"NotificationKind","features":[526]},{"name":"NotificationKind_ActionAborted","features":[526]},{"name":"NotificationKind_ActionCompleted","features":[526]},{"name":"NotificationKind_ItemAdded","features":[526]},{"name":"NotificationKind_ItemRemoved","features":[526]},{"name":"NotificationKind_Other","features":[526]},{"name":"NotificationProcessing","features":[526]},{"name":"NotificationProcessing_All","features":[526]},{"name":"NotificationProcessing_CurrentThenMostRecent","features":[526]},{"name":"NotificationProcessing_ImportantAll","features":[526]},{"name":"NotificationProcessing_ImportantMostRecent","features":[526]},{"name":"NotificationProcessing_MostRecent","features":[526]},{"name":"Notification_Event_GUID","features":[526]},{"name":"NotifyWinEvent","features":[305,526]},{"name":"ObjectFromLresult","features":[305,526]},{"name":"ObjectModel_Pattern_GUID","features":[526]},{"name":"Off","features":[526]},{"name":"OptimizeForVisualContent_Property_GUID","features":[526]},{"name":"OrientationType","features":[526]},{"name":"OrientationType_Horizontal","features":[526]},{"name":"OrientationType_None","features":[526]},{"name":"OrientationType_Vertical","features":[526]},{"name":"Orientation_Property_GUID","features":[526]},{"name":"OutlineColor_Property_GUID","features":[526]},{"name":"OutlineStyles","features":[526]},{"name":"OutlineStyles_Embossed","features":[526]},{"name":"OutlineStyles_Engraved","features":[526]},{"name":"OutlineStyles_None","features":[526]},{"name":"OutlineStyles_Outline","features":[526]},{"name":"OutlineStyles_Shadow","features":[526]},{"name":"OutlineThickness_Property_GUID","features":[526]},{"name":"PROPID_ACC_DEFAULTACTION","features":[526]},{"name":"PROPID_ACC_DESCRIPTION","features":[526]},{"name":"PROPID_ACC_DESCRIPTIONMAP","features":[526]},{"name":"PROPID_ACC_DODEFAULTACTION","features":[526]},{"name":"PROPID_ACC_FOCUS","features":[526]},{"name":"PROPID_ACC_HELP","features":[526]},{"name":"PROPID_ACC_HELPTOPIC","features":[526]},{"name":"PROPID_ACC_KEYBOARDSHORTCUT","features":[526]},{"name":"PROPID_ACC_NAME","features":[526]},{"name":"PROPID_ACC_NAV_DOWN","features":[526]},{"name":"PROPID_ACC_NAV_FIRSTCHILD","features":[526]},{"name":"PROPID_ACC_NAV_LASTCHILD","features":[526]},{"name":"PROPID_ACC_NAV_LEFT","features":[526]},{"name":"PROPID_ACC_NAV_NEXT","features":[526]},{"name":"PROPID_ACC_NAV_PREV","features":[526]},{"name":"PROPID_ACC_NAV_RIGHT","features":[526]},{"name":"PROPID_ACC_NAV_UP","features":[526]},{"name":"PROPID_ACC_PARENT","features":[526]},{"name":"PROPID_ACC_ROLE","features":[526]},{"name":"PROPID_ACC_ROLEMAP","features":[526]},{"name":"PROPID_ACC_SELECTION","features":[526]},{"name":"PROPID_ACC_STATE","features":[526]},{"name":"PROPID_ACC_STATEMAP","features":[526]},{"name":"PROPID_ACC_VALUE","features":[526]},{"name":"PROPID_ACC_VALUEMAP","features":[526]},{"name":"Pane_Control_GUID","features":[526]},{"name":"Polite","features":[526]},{"name":"PositionInSet_Property_GUID","features":[526]},{"name":"ProcessId_Property_GUID","features":[526]},{"name":"ProgressBar_Control_GUID","features":[526]},{"name":"PropertyConditionFlags","features":[526]},{"name":"PropertyConditionFlags_IgnoreCase","features":[526]},{"name":"PropertyConditionFlags_MatchSubstring","features":[526]},{"name":"PropertyConditionFlags_None","features":[526]},{"name":"ProviderDescription_Property_GUID","features":[526]},{"name":"ProviderOptions","features":[526]},{"name":"ProviderOptions_ClientSideProvider","features":[526]},{"name":"ProviderOptions_HasNativeIAccessible","features":[526]},{"name":"ProviderOptions_NonClientAreaProvider","features":[526]},{"name":"ProviderOptions_OverrideProvider","features":[526]},{"name":"ProviderOptions_ProviderOwnsSetFocus","features":[526]},{"name":"ProviderOptions_RefuseNonClientSupport","features":[526]},{"name":"ProviderOptions_ServerSideProvider","features":[526]},{"name":"ProviderOptions_UseClientCoordinates","features":[526]},{"name":"ProviderOptions_UseComThreading","features":[526]},{"name":"ProviderType","features":[526]},{"name":"ProviderType_BaseHwnd","features":[526]},{"name":"ProviderType_NonClientArea","features":[526]},{"name":"ProviderType_Proxy","features":[526]},{"name":"ROLE_SYSTEM_ALERT","features":[526]},{"name":"ROLE_SYSTEM_ANIMATION","features":[526]},{"name":"ROLE_SYSTEM_APPLICATION","features":[526]},{"name":"ROLE_SYSTEM_BORDER","features":[526]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWN","features":[526]},{"name":"ROLE_SYSTEM_BUTTONDROPDOWNGRID","features":[526]},{"name":"ROLE_SYSTEM_BUTTONMENU","features":[526]},{"name":"ROLE_SYSTEM_CARET","features":[526]},{"name":"ROLE_SYSTEM_CELL","features":[526]},{"name":"ROLE_SYSTEM_CHARACTER","features":[526]},{"name":"ROLE_SYSTEM_CHART","features":[526]},{"name":"ROLE_SYSTEM_CHECKBUTTON","features":[526]},{"name":"ROLE_SYSTEM_CLIENT","features":[526]},{"name":"ROLE_SYSTEM_CLOCK","features":[526]},{"name":"ROLE_SYSTEM_COLUMN","features":[526]},{"name":"ROLE_SYSTEM_COLUMNHEADER","features":[526]},{"name":"ROLE_SYSTEM_COMBOBOX","features":[526]},{"name":"ROLE_SYSTEM_CURSOR","features":[526]},{"name":"ROLE_SYSTEM_DIAGRAM","features":[526]},{"name":"ROLE_SYSTEM_DIAL","features":[526]},{"name":"ROLE_SYSTEM_DIALOG","features":[526]},{"name":"ROLE_SYSTEM_DOCUMENT","features":[526]},{"name":"ROLE_SYSTEM_DROPLIST","features":[526]},{"name":"ROLE_SYSTEM_EQUATION","features":[526]},{"name":"ROLE_SYSTEM_GRAPHIC","features":[526]},{"name":"ROLE_SYSTEM_GRIP","features":[526]},{"name":"ROLE_SYSTEM_GROUPING","features":[526]},{"name":"ROLE_SYSTEM_HELPBALLOON","features":[526]},{"name":"ROLE_SYSTEM_HOTKEYFIELD","features":[526]},{"name":"ROLE_SYSTEM_INDICATOR","features":[526]},{"name":"ROLE_SYSTEM_IPADDRESS","features":[526]},{"name":"ROLE_SYSTEM_LINK","features":[526]},{"name":"ROLE_SYSTEM_LIST","features":[526]},{"name":"ROLE_SYSTEM_LISTITEM","features":[526]},{"name":"ROLE_SYSTEM_MENUBAR","features":[526]},{"name":"ROLE_SYSTEM_MENUITEM","features":[526]},{"name":"ROLE_SYSTEM_MENUPOPUP","features":[526]},{"name":"ROLE_SYSTEM_OUTLINE","features":[526]},{"name":"ROLE_SYSTEM_OUTLINEBUTTON","features":[526]},{"name":"ROLE_SYSTEM_OUTLINEITEM","features":[526]},{"name":"ROLE_SYSTEM_PAGETAB","features":[526]},{"name":"ROLE_SYSTEM_PAGETABLIST","features":[526]},{"name":"ROLE_SYSTEM_PANE","features":[526]},{"name":"ROLE_SYSTEM_PROGRESSBAR","features":[526]},{"name":"ROLE_SYSTEM_PROPERTYPAGE","features":[526]},{"name":"ROLE_SYSTEM_PUSHBUTTON","features":[526]},{"name":"ROLE_SYSTEM_RADIOBUTTON","features":[526]},{"name":"ROLE_SYSTEM_ROW","features":[526]},{"name":"ROLE_SYSTEM_ROWHEADER","features":[526]},{"name":"ROLE_SYSTEM_SCROLLBAR","features":[526]},{"name":"ROLE_SYSTEM_SEPARATOR","features":[526]},{"name":"ROLE_SYSTEM_SLIDER","features":[526]},{"name":"ROLE_SYSTEM_SOUND","features":[526]},{"name":"ROLE_SYSTEM_SPINBUTTON","features":[526]},{"name":"ROLE_SYSTEM_SPLITBUTTON","features":[526]},{"name":"ROLE_SYSTEM_STATICTEXT","features":[526]},{"name":"ROLE_SYSTEM_STATUSBAR","features":[526]},{"name":"ROLE_SYSTEM_TABLE","features":[526]},{"name":"ROLE_SYSTEM_TEXT","features":[526]},{"name":"ROLE_SYSTEM_TITLEBAR","features":[526]},{"name":"ROLE_SYSTEM_TOOLBAR","features":[526]},{"name":"ROLE_SYSTEM_TOOLTIP","features":[526]},{"name":"ROLE_SYSTEM_WHITESPACE","features":[526]},{"name":"ROLE_SYSTEM_WINDOW","features":[526]},{"name":"RadioButton_Control_GUID","features":[526]},{"name":"RangeValuePattern_SetValue","features":[526]},{"name":"RangeValue_IsReadOnly_Property_GUID","features":[526]},{"name":"RangeValue_LargeChange_Property_GUID","features":[526]},{"name":"RangeValue_Maximum_Property_GUID","features":[526]},{"name":"RangeValue_Minimum_Property_GUID","features":[526]},{"name":"RangeValue_Pattern_GUID","features":[526]},{"name":"RangeValue_SmallChange_Property_GUID","features":[526]},{"name":"RangeValue_Value_Property_GUID","features":[526]},{"name":"RegisterPointerInputTarget","features":[305,526,367]},{"name":"RegisterPointerInputTargetEx","features":[305,526,367]},{"name":"Rotation_Property_GUID","features":[526]},{"name":"RowOrColumnMajor","features":[526]},{"name":"RowOrColumnMajor_ColumnMajor","features":[526]},{"name":"RowOrColumnMajor_Indeterminate","features":[526]},{"name":"RowOrColumnMajor_RowMajor","features":[526]},{"name":"RuntimeId_Property_GUID","features":[526]},{"name":"SELFLAG_ADDSELECTION","features":[526]},{"name":"SELFLAG_EXTENDSELECTION","features":[526]},{"name":"SELFLAG_NONE","features":[526]},{"name":"SELFLAG_REMOVESELECTION","features":[526]},{"name":"SELFLAG_TAKEFOCUS","features":[526]},{"name":"SELFLAG_TAKESELECTION","features":[526]},{"name":"SELFLAG_VALID","features":[526]},{"name":"SERIALKEYSA","features":[526]},{"name":"SERIALKEYSW","features":[526]},{"name":"SERIALKEYS_FLAGS","features":[526]},{"name":"SERKF_AVAILABLE","features":[526]},{"name":"SERKF_INDICATOR","features":[526]},{"name":"SERKF_SERIALKEYSON","features":[526]},{"name":"SID_ControlElementProvider","features":[526]},{"name":"SID_IsUIAutomationObject","features":[526]},{"name":"SKF_AUDIBLEFEEDBACK","features":[526]},{"name":"SKF_AVAILABLE","features":[526]},{"name":"SKF_CONFIRMHOTKEY","features":[526]},{"name":"SKF_HOTKEYACTIVE","features":[526]},{"name":"SKF_HOTKEYSOUND","features":[526]},{"name":"SKF_INDICATOR","features":[526]},{"name":"SKF_LALTLATCHED","features":[526]},{"name":"SKF_LALTLOCKED","features":[526]},{"name":"SKF_LCTLLATCHED","features":[526]},{"name":"SKF_LCTLLOCKED","features":[526]},{"name":"SKF_LSHIFTLATCHED","features":[526]},{"name":"SKF_LSHIFTLOCKED","features":[526]},{"name":"SKF_LWINLATCHED","features":[526]},{"name":"SKF_LWINLOCKED","features":[526]},{"name":"SKF_RALTLATCHED","features":[526]},{"name":"SKF_RALTLOCKED","features":[526]},{"name":"SKF_RCTLLATCHED","features":[526]},{"name":"SKF_RCTLLOCKED","features":[526]},{"name":"SKF_RSHIFTLATCHED","features":[526]},{"name":"SKF_RSHIFTLOCKED","features":[526]},{"name":"SKF_RWINLATCHED","features":[526]},{"name":"SKF_RWINLOCKED","features":[526]},{"name":"SKF_STICKYKEYSON","features":[526]},{"name":"SKF_TRISTATE","features":[526]},{"name":"SKF_TWOKEYSOFF","features":[526]},{"name":"SOUNDSENTRYA","features":[526]},{"name":"SOUNDSENTRYW","features":[526]},{"name":"SOUNDSENTRY_FLAGS","features":[526]},{"name":"SOUNDSENTRY_TEXT_EFFECT","features":[526]},{"name":"SOUNDSENTRY_WINDOWS_EFFECT","features":[526]},{"name":"SOUND_SENTRY_GRAPHICS_EFFECT","features":[526]},{"name":"SSF_AVAILABLE","features":[526]},{"name":"SSF_INDICATOR","features":[526]},{"name":"SSF_SOUNDSENTRYON","features":[526]},{"name":"SSGF_DISPLAY","features":[526]},{"name":"SSGF_NONE","features":[526]},{"name":"SSTF_BORDER","features":[526]},{"name":"SSTF_CHARS","features":[526]},{"name":"SSTF_DISPLAY","features":[526]},{"name":"SSTF_NONE","features":[526]},{"name":"SSWF_CUSTOM","features":[526]},{"name":"SSWF_DISPLAY","features":[526]},{"name":"SSWF_NONE","features":[526]},{"name":"SSWF_TITLE","features":[526]},{"name":"SSWF_WINDOW","features":[526]},{"name":"STATE_SYSTEM_HASPOPUP","features":[526]},{"name":"STATE_SYSTEM_NORMAL","features":[526]},{"name":"STICKYKEYS","features":[526]},{"name":"STICKYKEYS_FLAGS","features":[526]},{"name":"SayAsInterpretAs","features":[526]},{"name":"SayAsInterpretAs_Address","features":[526]},{"name":"SayAsInterpretAs_Alphanumeric","features":[526]},{"name":"SayAsInterpretAs_Cardinal","features":[526]},{"name":"SayAsInterpretAs_Currency","features":[526]},{"name":"SayAsInterpretAs_Date","features":[526]},{"name":"SayAsInterpretAs_Date_DayMonth","features":[526]},{"name":"SayAsInterpretAs_Date_DayMonthYear","features":[526]},{"name":"SayAsInterpretAs_Date_MonthDay","features":[526]},{"name":"SayAsInterpretAs_Date_MonthDayYear","features":[526]},{"name":"SayAsInterpretAs_Date_MonthYear","features":[526]},{"name":"SayAsInterpretAs_Date_Year","features":[526]},{"name":"SayAsInterpretAs_Date_YearMonth","features":[526]},{"name":"SayAsInterpretAs_Date_YearMonthDay","features":[526]},{"name":"SayAsInterpretAs_Media","features":[526]},{"name":"SayAsInterpretAs_Name","features":[526]},{"name":"SayAsInterpretAs_Net","features":[526]},{"name":"SayAsInterpretAs_None","features":[526]},{"name":"SayAsInterpretAs_Number","features":[526]},{"name":"SayAsInterpretAs_Ordinal","features":[526]},{"name":"SayAsInterpretAs_Spell","features":[526]},{"name":"SayAsInterpretAs_Telephone","features":[526]},{"name":"SayAsInterpretAs_Time","features":[526]},{"name":"SayAsInterpretAs_Time_HoursMinutes12","features":[526]},{"name":"SayAsInterpretAs_Time_HoursMinutes24","features":[526]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds12","features":[526]},{"name":"SayAsInterpretAs_Time_HoursMinutesSeconds24","features":[526]},{"name":"SayAsInterpretAs_Url","features":[526]},{"name":"ScrollAmount","features":[526]},{"name":"ScrollAmount_LargeDecrement","features":[526]},{"name":"ScrollAmount_LargeIncrement","features":[526]},{"name":"ScrollAmount_NoAmount","features":[526]},{"name":"ScrollAmount_SmallDecrement","features":[526]},{"name":"ScrollAmount_SmallIncrement","features":[526]},{"name":"ScrollBar_Control_GUID","features":[526]},{"name":"ScrollItemPattern_ScrollIntoView","features":[526]},{"name":"ScrollItem_Pattern_GUID","features":[526]},{"name":"ScrollPattern_Scroll","features":[526]},{"name":"ScrollPattern_SetScrollPercent","features":[526]},{"name":"Scroll_HorizontalScrollPercent_Property_GUID","features":[526]},{"name":"Scroll_HorizontalViewSize_Property_GUID","features":[526]},{"name":"Scroll_HorizontallyScrollable_Property_GUID","features":[526]},{"name":"Scroll_Pattern_GUID","features":[526]},{"name":"Scroll_VerticalScrollPercent_Property_GUID","features":[526]},{"name":"Scroll_VerticalViewSize_Property_GUID","features":[526]},{"name":"Scroll_VerticallyScrollable_Property_GUID","features":[526]},{"name":"Selection2_CurrentSelectedItem_Property_GUID","features":[526]},{"name":"Selection2_FirstSelectedItem_Property_GUID","features":[526]},{"name":"Selection2_ItemCount_Property_GUID","features":[526]},{"name":"Selection2_LastSelectedItem_Property_GUID","features":[526]},{"name":"SelectionItemPattern_AddToSelection","features":[526]},{"name":"SelectionItemPattern_RemoveFromSelection","features":[526]},{"name":"SelectionItemPattern_Select","features":[526]},{"name":"SelectionItem_ElementAddedToSelectionEvent_Event_GUID","features":[526]},{"name":"SelectionItem_ElementRemovedFromSelectionEvent_Event_GUID","features":[526]},{"name":"SelectionItem_ElementSelectedEvent_Event_GUID","features":[526]},{"name":"SelectionItem_IsSelected_Property_GUID","features":[526]},{"name":"SelectionItem_Pattern_GUID","features":[526]},{"name":"SelectionItem_SelectionContainer_Property_GUID","features":[526]},{"name":"Selection_CanSelectMultiple_Property_GUID","features":[526]},{"name":"Selection_InvalidatedEvent_Event_GUID","features":[526]},{"name":"Selection_IsSelectionRequired_Property_GUID","features":[526]},{"name":"Selection_Pattern2_GUID","features":[526]},{"name":"Selection_Pattern_GUID","features":[526]},{"name":"Selection_Selection_Property_GUID","features":[526]},{"name":"SemanticZoom_Control_GUID","features":[526]},{"name":"Separator_Control_GUID","features":[526]},{"name":"SetWinEventHook","features":[305,526]},{"name":"SizeOfSet_Property_GUID","features":[526]},{"name":"Size_Property_GUID","features":[526]},{"name":"Slider_Control_GUID","features":[526]},{"name":"Spinner_Control_GUID","features":[526]},{"name":"SplitButton_Control_GUID","features":[526]},{"name":"SpreadsheetItem_AnnotationObjects_Property_GUID","features":[526]},{"name":"SpreadsheetItem_AnnotationTypes_Property_GUID","features":[526]},{"name":"SpreadsheetItem_Formula_Property_GUID","features":[526]},{"name":"SpreadsheetItem_Pattern_GUID","features":[526]},{"name":"Spreadsheet_Pattern_GUID","features":[526]},{"name":"StatusBar_Control_GUID","features":[526]},{"name":"StructureChangeType","features":[526]},{"name":"StructureChangeType_ChildAdded","features":[526]},{"name":"StructureChangeType_ChildRemoved","features":[526]},{"name":"StructureChangeType_ChildrenBulkAdded","features":[526]},{"name":"StructureChangeType_ChildrenBulkRemoved","features":[526]},{"name":"StructureChangeType_ChildrenInvalidated","features":[526]},{"name":"StructureChangeType_ChildrenReordered","features":[526]},{"name":"StructureChanged_Event_GUID","features":[526]},{"name":"StructuredMarkup_CompositionComplete_Event_GUID","features":[526]},{"name":"StructuredMarkup_Deleted_Event_GUID","features":[526]},{"name":"StructuredMarkup_Pattern_GUID","features":[526]},{"name":"StructuredMarkup_SelectionChanged_Event_GUID","features":[526]},{"name":"StyleId_BulletedList","features":[526]},{"name":"StyleId_BulletedList_GUID","features":[526]},{"name":"StyleId_Custom","features":[526]},{"name":"StyleId_Custom_GUID","features":[526]},{"name":"StyleId_Emphasis","features":[526]},{"name":"StyleId_Emphasis_GUID","features":[526]},{"name":"StyleId_Heading1","features":[526]},{"name":"StyleId_Heading1_GUID","features":[526]},{"name":"StyleId_Heading2","features":[526]},{"name":"StyleId_Heading2_GUID","features":[526]},{"name":"StyleId_Heading3","features":[526]},{"name":"StyleId_Heading3_GUID","features":[526]},{"name":"StyleId_Heading4","features":[526]},{"name":"StyleId_Heading4_GUID","features":[526]},{"name":"StyleId_Heading5","features":[526]},{"name":"StyleId_Heading5_GUID","features":[526]},{"name":"StyleId_Heading6","features":[526]},{"name":"StyleId_Heading6_GUID","features":[526]},{"name":"StyleId_Heading7","features":[526]},{"name":"StyleId_Heading7_GUID","features":[526]},{"name":"StyleId_Heading8","features":[526]},{"name":"StyleId_Heading8_GUID","features":[526]},{"name":"StyleId_Heading9","features":[526]},{"name":"StyleId_Heading9_GUID","features":[526]},{"name":"StyleId_Normal","features":[526]},{"name":"StyleId_Normal_GUID","features":[526]},{"name":"StyleId_NumberedList","features":[526]},{"name":"StyleId_NumberedList_GUID","features":[526]},{"name":"StyleId_Quote","features":[526]},{"name":"StyleId_Quote_GUID","features":[526]},{"name":"StyleId_Subtitle","features":[526]},{"name":"StyleId_Subtitle_GUID","features":[526]},{"name":"StyleId_Title","features":[526]},{"name":"StyleId_Title_GUID","features":[526]},{"name":"Styles_ExtendedProperties_Property_GUID","features":[526]},{"name":"Styles_FillColor_Property_GUID","features":[526]},{"name":"Styles_FillPatternColor_Property_GUID","features":[526]},{"name":"Styles_FillPatternStyle_Property_GUID","features":[526]},{"name":"Styles_Pattern_GUID","features":[526]},{"name":"Styles_Shape_Property_GUID","features":[526]},{"name":"Styles_StyleId_Property_GUID","features":[526]},{"name":"Styles_StyleName_Property_GUID","features":[526]},{"name":"SupportedTextSelection","features":[526]},{"name":"SupportedTextSelection_Multiple","features":[526]},{"name":"SupportedTextSelection_None","features":[526]},{"name":"SupportedTextSelection_Single","features":[526]},{"name":"SynchronizedInputPattern_Cancel","features":[526]},{"name":"SynchronizedInputPattern_StartListening","features":[526]},{"name":"SynchronizedInputType","features":[526]},{"name":"SynchronizedInputType_KeyDown","features":[526]},{"name":"SynchronizedInputType_KeyUp","features":[526]},{"name":"SynchronizedInputType_LeftMouseDown","features":[526]},{"name":"SynchronizedInputType_LeftMouseUp","features":[526]},{"name":"SynchronizedInputType_RightMouseDown","features":[526]},{"name":"SynchronizedInputType_RightMouseUp","features":[526]},{"name":"SynchronizedInput_Pattern_GUID","features":[526]},{"name":"SystemAlert_Event_GUID","features":[526]},{"name":"TOGGLEKEYS","features":[526]},{"name":"TabItem_Control_GUID","features":[526]},{"name":"Tab_Control_GUID","features":[526]},{"name":"TableItem_ColumnHeaderItems_Property_GUID","features":[526]},{"name":"TableItem_Pattern_GUID","features":[526]},{"name":"TableItem_RowHeaderItems_Property_GUID","features":[526]},{"name":"Table_ColumnHeaders_Property_GUID","features":[526]},{"name":"Table_Control_GUID","features":[526]},{"name":"Table_Pattern_GUID","features":[526]},{"name":"Table_RowHeaders_Property_GUID","features":[526]},{"name":"Table_RowOrColumnMajor_Property_GUID","features":[526]},{"name":"TextChild_Pattern_GUID","features":[526]},{"name":"TextDecorationLineStyle","features":[526]},{"name":"TextDecorationLineStyle_Dash","features":[526]},{"name":"TextDecorationLineStyle_DashDot","features":[526]},{"name":"TextDecorationLineStyle_DashDotDot","features":[526]},{"name":"TextDecorationLineStyle_Dot","features":[526]},{"name":"TextDecorationLineStyle_Double","features":[526]},{"name":"TextDecorationLineStyle_DoubleWavy","features":[526]},{"name":"TextDecorationLineStyle_LongDash","features":[526]},{"name":"TextDecorationLineStyle_None","features":[526]},{"name":"TextDecorationLineStyle_Other","features":[526]},{"name":"TextDecorationLineStyle_Single","features":[526]},{"name":"TextDecorationLineStyle_ThickDash","features":[526]},{"name":"TextDecorationLineStyle_ThickDashDot","features":[526]},{"name":"TextDecorationLineStyle_ThickDashDotDot","features":[526]},{"name":"TextDecorationLineStyle_ThickDot","features":[526]},{"name":"TextDecorationLineStyle_ThickLongDash","features":[526]},{"name":"TextDecorationLineStyle_ThickSingle","features":[526]},{"name":"TextDecorationLineStyle_ThickWavy","features":[526]},{"name":"TextDecorationLineStyle_Wavy","features":[526]},{"name":"TextDecorationLineStyle_WordsOnly","features":[526]},{"name":"TextEditChangeType","features":[526]},{"name":"TextEditChangeType_AutoComplete","features":[526]},{"name":"TextEditChangeType_AutoCorrect","features":[526]},{"name":"TextEditChangeType_Composition","features":[526]},{"name":"TextEditChangeType_CompositionFinalized","features":[526]},{"name":"TextEditChangeType_None","features":[526]},{"name":"TextEdit_ConversionTargetChanged_Event_GUID","features":[526]},{"name":"TextEdit_Pattern_GUID","features":[526]},{"name":"TextEdit_TextChanged_Event_GUID","features":[526]},{"name":"TextPatternRangeEndpoint","features":[526]},{"name":"TextPatternRangeEndpoint_End","features":[526]},{"name":"TextPatternRangeEndpoint_Start","features":[526]},{"name":"TextPattern_GetSelection","features":[356,526]},{"name":"TextPattern_GetVisibleRanges","features":[356,526]},{"name":"TextPattern_RangeFromChild","features":[526]},{"name":"TextPattern_RangeFromPoint","features":[526]},{"name":"TextPattern_get_DocumentRange","features":[526]},{"name":"TextPattern_get_SupportedTextSelection","features":[526]},{"name":"TextRange_AddToSelection","features":[526]},{"name":"TextRange_Clone","features":[526]},{"name":"TextRange_Compare","features":[305,526]},{"name":"TextRange_CompareEndpoints","features":[526]},{"name":"TextRange_ExpandToEnclosingUnit","features":[526]},{"name":"TextRange_FindAttribute","features":[305,526]},{"name":"TextRange_FindText","features":[305,526]},{"name":"TextRange_GetAttributeValue","features":[526]},{"name":"TextRange_GetBoundingRectangles","features":[356,526]},{"name":"TextRange_GetChildren","features":[356,526]},{"name":"TextRange_GetEnclosingElement","features":[526]},{"name":"TextRange_GetText","features":[526]},{"name":"TextRange_Move","features":[526]},{"name":"TextRange_MoveEndpointByRange","features":[526]},{"name":"TextRange_MoveEndpointByUnit","features":[526]},{"name":"TextRange_RemoveFromSelection","features":[526]},{"name":"TextRange_ScrollIntoView","features":[305,526]},{"name":"TextRange_Select","features":[526]},{"name":"TextUnit","features":[526]},{"name":"TextUnit_Character","features":[526]},{"name":"TextUnit_Document","features":[526]},{"name":"TextUnit_Format","features":[526]},{"name":"TextUnit_Line","features":[526]},{"name":"TextUnit_Page","features":[526]},{"name":"TextUnit_Paragraph","features":[526]},{"name":"TextUnit_Word","features":[526]},{"name":"Text_AfterParagraphSpacing_Attribute_GUID","features":[526]},{"name":"Text_AfterSpacing_Attribute_GUID","features":[526]},{"name":"Text_AnimationStyle_Attribute_GUID","features":[526]},{"name":"Text_AnnotationObjects_Attribute_GUID","features":[526]},{"name":"Text_AnnotationTypes_Attribute_GUID","features":[526]},{"name":"Text_BackgroundColor_Attribute_GUID","features":[526]},{"name":"Text_BeforeParagraphSpacing_Attribute_GUID","features":[526]},{"name":"Text_BeforeSpacing_Attribute_GUID","features":[526]},{"name":"Text_BulletStyle_Attribute_GUID","features":[526]},{"name":"Text_CapStyle_Attribute_GUID","features":[526]},{"name":"Text_CaretBidiMode_Attribute_GUID","features":[526]},{"name":"Text_CaretPosition_Attribute_GUID","features":[526]},{"name":"Text_Control_GUID","features":[526]},{"name":"Text_Culture_Attribute_GUID","features":[526]},{"name":"Text_FontName_Attribute_GUID","features":[526]},{"name":"Text_FontSize_Attribute_GUID","features":[526]},{"name":"Text_FontWeight_Attribute_GUID","features":[526]},{"name":"Text_ForegroundColor_Attribute_GUID","features":[526]},{"name":"Text_HorizontalTextAlignment_Attribute_GUID","features":[526]},{"name":"Text_IndentationFirstLine_Attribute_GUID","features":[526]},{"name":"Text_IndentationLeading_Attribute_GUID","features":[526]},{"name":"Text_IndentationTrailing_Attribute_GUID","features":[526]},{"name":"Text_IsActive_Attribute_GUID","features":[526]},{"name":"Text_IsHidden_Attribute_GUID","features":[526]},{"name":"Text_IsItalic_Attribute_GUID","features":[526]},{"name":"Text_IsReadOnly_Attribute_GUID","features":[526]},{"name":"Text_IsSubscript_Attribute_GUID","features":[526]},{"name":"Text_IsSuperscript_Attribute_GUID","features":[526]},{"name":"Text_LineSpacing_Attribute_GUID","features":[526]},{"name":"Text_Link_Attribute_GUID","features":[526]},{"name":"Text_MarginBottom_Attribute_GUID","features":[526]},{"name":"Text_MarginLeading_Attribute_GUID","features":[526]},{"name":"Text_MarginTop_Attribute_GUID","features":[526]},{"name":"Text_MarginTrailing_Attribute_GUID","features":[526]},{"name":"Text_OutlineStyles_Attribute_GUID","features":[526]},{"name":"Text_OverlineColor_Attribute_GUID","features":[526]},{"name":"Text_OverlineStyle_Attribute_GUID","features":[526]},{"name":"Text_Pattern2_GUID","features":[526]},{"name":"Text_Pattern_GUID","features":[526]},{"name":"Text_SayAsInterpretAs_Attribute_GUID","features":[526]},{"name":"Text_SelectionActiveEnd_Attribute_GUID","features":[526]},{"name":"Text_StrikethroughColor_Attribute_GUID","features":[526]},{"name":"Text_StrikethroughStyle_Attribute_GUID","features":[526]},{"name":"Text_StyleId_Attribute_GUID","features":[526]},{"name":"Text_StyleName_Attribute_GUID","features":[526]},{"name":"Text_Tabs_Attribute_GUID","features":[526]},{"name":"Text_TextChangedEvent_Event_GUID","features":[526]},{"name":"Text_TextFlowDirections_Attribute_GUID","features":[526]},{"name":"Text_TextSelectionChangedEvent_Event_GUID","features":[526]},{"name":"Text_UnderlineColor_Attribute_GUID","features":[526]},{"name":"Text_UnderlineStyle_Attribute_GUID","features":[526]},{"name":"Thumb_Control_GUID","features":[526]},{"name":"TitleBar_Control_GUID","features":[526]},{"name":"TogglePattern_Toggle","features":[526]},{"name":"ToggleState","features":[526]},{"name":"ToggleState_Indeterminate","features":[526]},{"name":"ToggleState_Off","features":[526]},{"name":"ToggleState_On","features":[526]},{"name":"Toggle_Pattern_GUID","features":[526]},{"name":"Toggle_ToggleState_Property_GUID","features":[526]},{"name":"ToolBar_Control_GUID","features":[526]},{"name":"ToolTipClosed_Event_GUID","features":[526]},{"name":"ToolTipOpened_Event_GUID","features":[526]},{"name":"ToolTip_Control_GUID","features":[526]},{"name":"Tranform_Pattern2_GUID","features":[526]},{"name":"Transform2_CanZoom_Property_GUID","features":[526]},{"name":"Transform2_ZoomLevel_Property_GUID","features":[526]},{"name":"Transform2_ZoomMaximum_Property_GUID","features":[526]},{"name":"Transform2_ZoomMinimum_Property_GUID","features":[526]},{"name":"TransformPattern_Move","features":[526]},{"name":"TransformPattern_Resize","features":[526]},{"name":"TransformPattern_Rotate","features":[526]},{"name":"Transform_CanMove_Property_GUID","features":[526]},{"name":"Transform_CanResize_Property_GUID","features":[526]},{"name":"Transform_CanRotate_Property_GUID","features":[526]},{"name":"Transform_Pattern_GUID","features":[526]},{"name":"TreeItem_Control_GUID","features":[526]},{"name":"TreeScope","features":[526]},{"name":"TreeScope_Ancestors","features":[526]},{"name":"TreeScope_Children","features":[526]},{"name":"TreeScope_Descendants","features":[526]},{"name":"TreeScope_Element","features":[526]},{"name":"TreeScope_None","features":[526]},{"name":"TreeScope_Parent","features":[526]},{"name":"TreeScope_Subtree","features":[526]},{"name":"TreeTraversalOptions","features":[526]},{"name":"TreeTraversalOptions_Default","features":[526]},{"name":"TreeTraversalOptions_LastToFirstOrder","features":[526]},{"name":"TreeTraversalOptions_PostOrder","features":[526]},{"name":"Tree_Control_GUID","features":[526]},{"name":"UIA_ANNOTATIONTYPE","features":[526]},{"name":"UIA_AcceleratorKeyPropertyId","features":[526]},{"name":"UIA_AccessKeyPropertyId","features":[526]},{"name":"UIA_ActiveTextPositionChangedEventId","features":[526]},{"name":"UIA_AfterParagraphSpacingAttributeId","features":[526]},{"name":"UIA_AnimationStyleAttributeId","features":[526]},{"name":"UIA_AnnotationAnnotationTypeIdPropertyId","features":[526]},{"name":"UIA_AnnotationAnnotationTypeNamePropertyId","features":[526]},{"name":"UIA_AnnotationAuthorPropertyId","features":[526]},{"name":"UIA_AnnotationDateTimePropertyId","features":[526]},{"name":"UIA_AnnotationObjectsAttributeId","features":[526]},{"name":"UIA_AnnotationObjectsPropertyId","features":[526]},{"name":"UIA_AnnotationPatternId","features":[526]},{"name":"UIA_AnnotationTargetPropertyId","features":[526]},{"name":"UIA_AnnotationTypesAttributeId","features":[526]},{"name":"UIA_AnnotationTypesPropertyId","features":[526]},{"name":"UIA_AppBarControlTypeId","features":[526]},{"name":"UIA_AriaPropertiesPropertyId","features":[526]},{"name":"UIA_AriaRolePropertyId","features":[526]},{"name":"UIA_AsyncContentLoadedEventId","features":[526]},{"name":"UIA_AutomationFocusChangedEventId","features":[526]},{"name":"UIA_AutomationIdPropertyId","features":[526]},{"name":"UIA_AutomationPropertyChangedEventId","features":[526]},{"name":"UIA_BackgroundColorAttributeId","features":[526]},{"name":"UIA_BeforeParagraphSpacingAttributeId","features":[526]},{"name":"UIA_BoundingRectanglePropertyId","features":[526]},{"name":"UIA_BulletStyleAttributeId","features":[526]},{"name":"UIA_ButtonControlTypeId","features":[526]},{"name":"UIA_CHANGE_ID","features":[526]},{"name":"UIA_CONTROLTYPE_ID","features":[526]},{"name":"UIA_CalendarControlTypeId","features":[526]},{"name":"UIA_CapStyleAttributeId","features":[526]},{"name":"UIA_CaretBidiModeAttributeId","features":[526]},{"name":"UIA_CaretPositionAttributeId","features":[526]},{"name":"UIA_CenterPointPropertyId","features":[526]},{"name":"UIA_ChangesEventId","features":[526]},{"name":"UIA_CheckBoxControlTypeId","features":[526]},{"name":"UIA_ClassNamePropertyId","features":[526]},{"name":"UIA_ClickablePointPropertyId","features":[526]},{"name":"UIA_ComboBoxControlTypeId","features":[526]},{"name":"UIA_ControlTypePropertyId","features":[526]},{"name":"UIA_ControllerForPropertyId","features":[526]},{"name":"UIA_CultureAttributeId","features":[526]},{"name":"UIA_CulturePropertyId","features":[526]},{"name":"UIA_CustomControlTypeId","features":[526]},{"name":"UIA_CustomLandmarkTypeId","features":[526]},{"name":"UIA_CustomNavigationPatternId","features":[526]},{"name":"UIA_DataGridControlTypeId","features":[526]},{"name":"UIA_DataItemControlTypeId","features":[526]},{"name":"UIA_DescribedByPropertyId","features":[526]},{"name":"UIA_DockDockPositionPropertyId","features":[526]},{"name":"UIA_DockPatternId","features":[526]},{"name":"UIA_DocumentControlTypeId","features":[526]},{"name":"UIA_DragDropEffectPropertyId","features":[526]},{"name":"UIA_DragDropEffectsPropertyId","features":[526]},{"name":"UIA_DragGrabbedItemsPropertyId","features":[526]},{"name":"UIA_DragIsGrabbedPropertyId","features":[526]},{"name":"UIA_DragPatternId","features":[526]},{"name":"UIA_Drag_DragCancelEventId","features":[526]},{"name":"UIA_Drag_DragCompleteEventId","features":[526]},{"name":"UIA_Drag_DragStartEventId","features":[526]},{"name":"UIA_DropTargetDropTargetEffectPropertyId","features":[526]},{"name":"UIA_DropTargetDropTargetEffectsPropertyId","features":[526]},{"name":"UIA_DropTargetPatternId","features":[526]},{"name":"UIA_DropTarget_DragEnterEventId","features":[526]},{"name":"UIA_DropTarget_DragLeaveEventId","features":[526]},{"name":"UIA_DropTarget_DroppedEventId","features":[526]},{"name":"UIA_EVENT_ID","features":[526]},{"name":"UIA_E_ELEMENTNOTAVAILABLE","features":[526]},{"name":"UIA_E_ELEMENTNOTENABLED","features":[526]},{"name":"UIA_E_INVALIDOPERATION","features":[526]},{"name":"UIA_E_NOCLICKABLEPOINT","features":[526]},{"name":"UIA_E_NOTSUPPORTED","features":[526]},{"name":"UIA_E_PROXYASSEMBLYNOTLOADED","features":[526]},{"name":"UIA_E_TIMEOUT","features":[526]},{"name":"UIA_EditControlTypeId","features":[526]},{"name":"UIA_ExpandCollapseExpandCollapseStatePropertyId","features":[526]},{"name":"UIA_ExpandCollapsePatternId","features":[526]},{"name":"UIA_FillColorPropertyId","features":[526]},{"name":"UIA_FillTypePropertyId","features":[526]},{"name":"UIA_FlowsFromPropertyId","features":[526]},{"name":"UIA_FlowsToPropertyId","features":[526]},{"name":"UIA_FontNameAttributeId","features":[526]},{"name":"UIA_FontSizeAttributeId","features":[526]},{"name":"UIA_FontWeightAttributeId","features":[526]},{"name":"UIA_ForegroundColorAttributeId","features":[526]},{"name":"UIA_FormLandmarkTypeId","features":[526]},{"name":"UIA_FrameworkIdPropertyId","features":[526]},{"name":"UIA_FullDescriptionPropertyId","features":[526]},{"name":"UIA_GridColumnCountPropertyId","features":[526]},{"name":"UIA_GridItemColumnPropertyId","features":[526]},{"name":"UIA_GridItemColumnSpanPropertyId","features":[526]},{"name":"UIA_GridItemContainingGridPropertyId","features":[526]},{"name":"UIA_GridItemPatternId","features":[526]},{"name":"UIA_GridItemRowPropertyId","features":[526]},{"name":"UIA_GridItemRowSpanPropertyId","features":[526]},{"name":"UIA_GridPatternId","features":[526]},{"name":"UIA_GridRowCountPropertyId","features":[526]},{"name":"UIA_GroupControlTypeId","features":[526]},{"name":"UIA_HEADINGLEVEL_ID","features":[526]},{"name":"UIA_HasKeyboardFocusPropertyId","features":[526]},{"name":"UIA_HeaderControlTypeId","features":[526]},{"name":"UIA_HeaderItemControlTypeId","features":[526]},{"name":"UIA_HeadingLevelPropertyId","features":[526]},{"name":"UIA_HelpTextPropertyId","features":[526]},{"name":"UIA_HorizontalTextAlignmentAttributeId","features":[526]},{"name":"UIA_HostedFragmentRootsInvalidatedEventId","features":[526]},{"name":"UIA_HyperlinkControlTypeId","features":[526]},{"name":"UIA_IAFP_DEFAULT","features":[526]},{"name":"UIA_IAFP_UNWRAP_BRIDGE","features":[526]},{"name":"UIA_ImageControlTypeId","features":[526]},{"name":"UIA_IndentationFirstLineAttributeId","features":[526]},{"name":"UIA_IndentationLeadingAttributeId","features":[526]},{"name":"UIA_IndentationTrailingAttributeId","features":[526]},{"name":"UIA_InputDiscardedEventId","features":[526]},{"name":"UIA_InputReachedOtherElementEventId","features":[526]},{"name":"UIA_InputReachedTargetEventId","features":[526]},{"name":"UIA_InvokePatternId","features":[526]},{"name":"UIA_Invoke_InvokedEventId","features":[526]},{"name":"UIA_IsActiveAttributeId","features":[526]},{"name":"UIA_IsAnnotationPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsContentElementPropertyId","features":[526]},{"name":"UIA_IsControlElementPropertyId","features":[526]},{"name":"UIA_IsCustomNavigationPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsDataValidForFormPropertyId","features":[526]},{"name":"UIA_IsDialogPropertyId","features":[526]},{"name":"UIA_IsDockPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsDragPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsDropTargetPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsEnabledPropertyId","features":[526]},{"name":"UIA_IsExpandCollapsePatternAvailablePropertyId","features":[526]},{"name":"UIA_IsGridItemPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsGridPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsHiddenAttributeId","features":[526]},{"name":"UIA_IsInvokePatternAvailablePropertyId","features":[526]},{"name":"UIA_IsItalicAttributeId","features":[526]},{"name":"UIA_IsItemContainerPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsKeyboardFocusablePropertyId","features":[526]},{"name":"UIA_IsLegacyIAccessiblePatternAvailablePropertyId","features":[526]},{"name":"UIA_IsMultipleViewPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsObjectModelPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsOffscreenPropertyId","features":[526]},{"name":"UIA_IsPasswordPropertyId","features":[526]},{"name":"UIA_IsPeripheralPropertyId","features":[526]},{"name":"UIA_IsRangeValuePatternAvailablePropertyId","features":[526]},{"name":"UIA_IsReadOnlyAttributeId","features":[526]},{"name":"UIA_IsRequiredForFormPropertyId","features":[526]},{"name":"UIA_IsScrollItemPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsScrollPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsSelectionItemPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsSelectionPattern2AvailablePropertyId","features":[526]},{"name":"UIA_IsSelectionPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsSpreadsheetItemPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsSpreadsheetPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsStylesPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsSubscriptAttributeId","features":[526]},{"name":"UIA_IsSuperscriptAttributeId","features":[526]},{"name":"UIA_IsSynchronizedInputPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsTableItemPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsTablePatternAvailablePropertyId","features":[526]},{"name":"UIA_IsTextChildPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsTextEditPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsTextPattern2AvailablePropertyId","features":[526]},{"name":"UIA_IsTextPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsTogglePatternAvailablePropertyId","features":[526]},{"name":"UIA_IsTransformPattern2AvailablePropertyId","features":[526]},{"name":"UIA_IsTransformPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsValuePatternAvailablePropertyId","features":[526]},{"name":"UIA_IsVirtualizedItemPatternAvailablePropertyId","features":[526]},{"name":"UIA_IsWindowPatternAvailablePropertyId","features":[526]},{"name":"UIA_ItemContainerPatternId","features":[526]},{"name":"UIA_ItemStatusPropertyId","features":[526]},{"name":"UIA_ItemTypePropertyId","features":[526]},{"name":"UIA_LANDMARKTYPE_ID","features":[526]},{"name":"UIA_LabeledByPropertyId","features":[526]},{"name":"UIA_LandmarkTypePropertyId","features":[526]},{"name":"UIA_LayoutInvalidatedEventId","features":[526]},{"name":"UIA_LegacyIAccessibleChildIdPropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleDefaultActionPropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleDescriptionPropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleHelpPropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleKeyboardShortcutPropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleNamePropertyId","features":[526]},{"name":"UIA_LegacyIAccessiblePatternId","features":[526]},{"name":"UIA_LegacyIAccessibleRolePropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleSelectionPropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleStatePropertyId","features":[526]},{"name":"UIA_LegacyIAccessibleValuePropertyId","features":[526]},{"name":"UIA_LevelPropertyId","features":[526]},{"name":"UIA_LineSpacingAttributeId","features":[526]},{"name":"UIA_LinkAttributeId","features":[526]},{"name":"UIA_ListControlTypeId","features":[526]},{"name":"UIA_ListItemControlTypeId","features":[526]},{"name":"UIA_LiveRegionChangedEventId","features":[526]},{"name":"UIA_LiveSettingPropertyId","features":[526]},{"name":"UIA_LocalizedControlTypePropertyId","features":[526]},{"name":"UIA_LocalizedLandmarkTypePropertyId","features":[526]},{"name":"UIA_METADATA_ID","features":[526]},{"name":"UIA_MainLandmarkTypeId","features":[526]},{"name":"UIA_MarginBottomAttributeId","features":[526]},{"name":"UIA_MarginLeadingAttributeId","features":[526]},{"name":"UIA_MarginTopAttributeId","features":[526]},{"name":"UIA_MarginTrailingAttributeId","features":[526]},{"name":"UIA_MenuBarControlTypeId","features":[526]},{"name":"UIA_MenuClosedEventId","features":[526]},{"name":"UIA_MenuControlTypeId","features":[526]},{"name":"UIA_MenuItemControlTypeId","features":[526]},{"name":"UIA_MenuModeEndEventId","features":[526]},{"name":"UIA_MenuModeStartEventId","features":[526]},{"name":"UIA_MenuOpenedEventId","features":[526]},{"name":"UIA_MultipleViewCurrentViewPropertyId","features":[526]},{"name":"UIA_MultipleViewPatternId","features":[526]},{"name":"UIA_MultipleViewSupportedViewsPropertyId","features":[526]},{"name":"UIA_NamePropertyId","features":[526]},{"name":"UIA_NativeWindowHandlePropertyId","features":[526]},{"name":"UIA_NavigationLandmarkTypeId","features":[526]},{"name":"UIA_NotificationEventId","features":[526]},{"name":"UIA_ObjectModelPatternId","features":[526]},{"name":"UIA_OptimizeForVisualContentPropertyId","features":[526]},{"name":"UIA_OrientationPropertyId","features":[526]},{"name":"UIA_OutlineColorPropertyId","features":[526]},{"name":"UIA_OutlineStylesAttributeId","features":[526]},{"name":"UIA_OutlineThicknessPropertyId","features":[526]},{"name":"UIA_OverlineColorAttributeId","features":[526]},{"name":"UIA_OverlineStyleAttributeId","features":[526]},{"name":"UIA_PATTERN_ID","features":[526]},{"name":"UIA_PFIA_DEFAULT","features":[526]},{"name":"UIA_PFIA_UNWRAP_BRIDGE","features":[526]},{"name":"UIA_PROPERTY_ID","features":[526]},{"name":"UIA_PaneControlTypeId","features":[526]},{"name":"UIA_PositionInSetPropertyId","features":[526]},{"name":"UIA_ProcessIdPropertyId","features":[526]},{"name":"UIA_ProgressBarControlTypeId","features":[526]},{"name":"UIA_ProviderDescriptionPropertyId","features":[526]},{"name":"UIA_RadioButtonControlTypeId","features":[526]},{"name":"UIA_RangeValueIsReadOnlyPropertyId","features":[526]},{"name":"UIA_RangeValueLargeChangePropertyId","features":[526]},{"name":"UIA_RangeValueMaximumPropertyId","features":[526]},{"name":"UIA_RangeValueMinimumPropertyId","features":[526]},{"name":"UIA_RangeValuePatternId","features":[526]},{"name":"UIA_RangeValueSmallChangePropertyId","features":[526]},{"name":"UIA_RangeValueValuePropertyId","features":[526]},{"name":"UIA_RotationPropertyId","features":[526]},{"name":"UIA_RuntimeIdPropertyId","features":[526]},{"name":"UIA_STYLE_ID","features":[526]},{"name":"UIA_SayAsInterpretAsAttributeId","features":[526]},{"name":"UIA_SayAsInterpretAsMetadataId","features":[526]},{"name":"UIA_ScrollBarControlTypeId","features":[526]},{"name":"UIA_ScrollHorizontalScrollPercentPropertyId","features":[526]},{"name":"UIA_ScrollHorizontalViewSizePropertyId","features":[526]},{"name":"UIA_ScrollHorizontallyScrollablePropertyId","features":[526]},{"name":"UIA_ScrollItemPatternId","features":[526]},{"name":"UIA_ScrollPatternId","features":[526]},{"name":"UIA_ScrollPatternNoScroll","features":[526]},{"name":"UIA_ScrollVerticalScrollPercentPropertyId","features":[526]},{"name":"UIA_ScrollVerticalViewSizePropertyId","features":[526]},{"name":"UIA_ScrollVerticallyScrollablePropertyId","features":[526]},{"name":"UIA_SearchLandmarkTypeId","features":[526]},{"name":"UIA_Selection2CurrentSelectedItemPropertyId","features":[526]},{"name":"UIA_Selection2FirstSelectedItemPropertyId","features":[526]},{"name":"UIA_Selection2ItemCountPropertyId","features":[526]},{"name":"UIA_Selection2LastSelectedItemPropertyId","features":[526]},{"name":"UIA_SelectionActiveEndAttributeId","features":[526]},{"name":"UIA_SelectionCanSelectMultiplePropertyId","features":[526]},{"name":"UIA_SelectionIsSelectionRequiredPropertyId","features":[526]},{"name":"UIA_SelectionItemIsSelectedPropertyId","features":[526]},{"name":"UIA_SelectionItemPatternId","features":[526]},{"name":"UIA_SelectionItemSelectionContainerPropertyId","features":[526]},{"name":"UIA_SelectionItem_ElementAddedToSelectionEventId","features":[526]},{"name":"UIA_SelectionItem_ElementRemovedFromSelectionEventId","features":[526]},{"name":"UIA_SelectionItem_ElementSelectedEventId","features":[526]},{"name":"UIA_SelectionPattern2Id","features":[526]},{"name":"UIA_SelectionPatternId","features":[526]},{"name":"UIA_SelectionSelectionPropertyId","features":[526]},{"name":"UIA_Selection_InvalidatedEventId","features":[526]},{"name":"UIA_SemanticZoomControlTypeId","features":[526]},{"name":"UIA_SeparatorControlTypeId","features":[526]},{"name":"UIA_SizeOfSetPropertyId","features":[526]},{"name":"UIA_SizePropertyId","features":[526]},{"name":"UIA_SliderControlTypeId","features":[526]},{"name":"UIA_SpinnerControlTypeId","features":[526]},{"name":"UIA_SplitButtonControlTypeId","features":[526]},{"name":"UIA_SpreadsheetItemAnnotationObjectsPropertyId","features":[526]},{"name":"UIA_SpreadsheetItemAnnotationTypesPropertyId","features":[526]},{"name":"UIA_SpreadsheetItemFormulaPropertyId","features":[526]},{"name":"UIA_SpreadsheetItemPatternId","features":[526]},{"name":"UIA_SpreadsheetPatternId","features":[526]},{"name":"UIA_StatusBarControlTypeId","features":[526]},{"name":"UIA_StrikethroughColorAttributeId","features":[526]},{"name":"UIA_StrikethroughStyleAttributeId","features":[526]},{"name":"UIA_StructureChangedEventId","features":[526]},{"name":"UIA_StyleIdAttributeId","features":[526]},{"name":"UIA_StyleNameAttributeId","features":[526]},{"name":"UIA_StylesExtendedPropertiesPropertyId","features":[526]},{"name":"UIA_StylesFillColorPropertyId","features":[526]},{"name":"UIA_StylesFillPatternColorPropertyId","features":[526]},{"name":"UIA_StylesFillPatternStylePropertyId","features":[526]},{"name":"UIA_StylesPatternId","features":[526]},{"name":"UIA_StylesShapePropertyId","features":[526]},{"name":"UIA_StylesStyleIdPropertyId","features":[526]},{"name":"UIA_StylesStyleNamePropertyId","features":[526]},{"name":"UIA_SummaryChangeId","features":[526]},{"name":"UIA_SynchronizedInputPatternId","features":[526]},{"name":"UIA_SystemAlertEventId","features":[526]},{"name":"UIA_TEXTATTRIBUTE_ID","features":[526]},{"name":"UIA_TabControlTypeId","features":[526]},{"name":"UIA_TabItemControlTypeId","features":[526]},{"name":"UIA_TableColumnHeadersPropertyId","features":[526]},{"name":"UIA_TableControlTypeId","features":[526]},{"name":"UIA_TableItemColumnHeaderItemsPropertyId","features":[526]},{"name":"UIA_TableItemPatternId","features":[526]},{"name":"UIA_TableItemRowHeaderItemsPropertyId","features":[526]},{"name":"UIA_TablePatternId","features":[526]},{"name":"UIA_TableRowHeadersPropertyId","features":[526]},{"name":"UIA_TableRowOrColumnMajorPropertyId","features":[526]},{"name":"UIA_TabsAttributeId","features":[526]},{"name":"UIA_TextChildPatternId","features":[526]},{"name":"UIA_TextControlTypeId","features":[526]},{"name":"UIA_TextEditPatternId","features":[526]},{"name":"UIA_TextEdit_ConversionTargetChangedEventId","features":[526]},{"name":"UIA_TextEdit_TextChangedEventId","features":[526]},{"name":"UIA_TextFlowDirectionsAttributeId","features":[526]},{"name":"UIA_TextPattern2Id","features":[526]},{"name":"UIA_TextPatternId","features":[526]},{"name":"UIA_Text_TextChangedEventId","features":[526]},{"name":"UIA_Text_TextSelectionChangedEventId","features":[526]},{"name":"UIA_ThumbControlTypeId","features":[526]},{"name":"UIA_TitleBarControlTypeId","features":[526]},{"name":"UIA_TogglePatternId","features":[526]},{"name":"UIA_ToggleToggleStatePropertyId","features":[526]},{"name":"UIA_ToolBarControlTypeId","features":[526]},{"name":"UIA_ToolTipClosedEventId","features":[526]},{"name":"UIA_ToolTipControlTypeId","features":[526]},{"name":"UIA_ToolTipOpenedEventId","features":[526]},{"name":"UIA_Transform2CanZoomPropertyId","features":[526]},{"name":"UIA_Transform2ZoomLevelPropertyId","features":[526]},{"name":"UIA_Transform2ZoomMaximumPropertyId","features":[526]},{"name":"UIA_Transform2ZoomMinimumPropertyId","features":[526]},{"name":"UIA_TransformCanMovePropertyId","features":[526]},{"name":"UIA_TransformCanResizePropertyId","features":[526]},{"name":"UIA_TransformCanRotatePropertyId","features":[526]},{"name":"UIA_TransformPattern2Id","features":[526]},{"name":"UIA_TransformPatternId","features":[526]},{"name":"UIA_TreeControlTypeId","features":[526]},{"name":"UIA_TreeItemControlTypeId","features":[526]},{"name":"UIA_UnderlineColorAttributeId","features":[526]},{"name":"UIA_UnderlineStyleAttributeId","features":[526]},{"name":"UIA_ValueIsReadOnlyPropertyId","features":[526]},{"name":"UIA_ValuePatternId","features":[526]},{"name":"UIA_ValueValuePropertyId","features":[526]},{"name":"UIA_VirtualizedItemPatternId","features":[526]},{"name":"UIA_VisualEffectsPropertyId","features":[526]},{"name":"UIA_WindowCanMaximizePropertyId","features":[526]},{"name":"UIA_WindowCanMinimizePropertyId","features":[526]},{"name":"UIA_WindowControlTypeId","features":[526]},{"name":"UIA_WindowIsModalPropertyId","features":[526]},{"name":"UIA_WindowIsTopmostPropertyId","features":[526]},{"name":"UIA_WindowPatternId","features":[526]},{"name":"UIA_WindowWindowInteractionStatePropertyId","features":[526]},{"name":"UIA_WindowWindowVisualStatePropertyId","features":[526]},{"name":"UIA_Window_WindowClosedEventId","features":[526]},{"name":"UIA_Window_WindowOpenedEventId","features":[526]},{"name":"UIAutomationEventInfo","features":[526]},{"name":"UIAutomationMethodInfo","features":[305,526]},{"name":"UIAutomationParameter","features":[526]},{"name":"UIAutomationPatternInfo","features":[305,526]},{"name":"UIAutomationPropertyInfo","features":[526]},{"name":"UIAutomationType","features":[526]},{"name":"UIAutomationType_Array","features":[526]},{"name":"UIAutomationType_Bool","features":[526]},{"name":"UIAutomationType_BoolArray","features":[526]},{"name":"UIAutomationType_Double","features":[526]},{"name":"UIAutomationType_DoubleArray","features":[526]},{"name":"UIAutomationType_Element","features":[526]},{"name":"UIAutomationType_ElementArray","features":[526]},{"name":"UIAutomationType_Int","features":[526]},{"name":"UIAutomationType_IntArray","features":[526]},{"name":"UIAutomationType_Out","features":[526]},{"name":"UIAutomationType_OutBool","features":[526]},{"name":"UIAutomationType_OutBoolArray","features":[526]},{"name":"UIAutomationType_OutDouble","features":[526]},{"name":"UIAutomationType_OutDoubleArray","features":[526]},{"name":"UIAutomationType_OutElement","features":[526]},{"name":"UIAutomationType_OutElementArray","features":[526]},{"name":"UIAutomationType_OutInt","features":[526]},{"name":"UIAutomationType_OutIntArray","features":[526]},{"name":"UIAutomationType_OutPoint","features":[526]},{"name":"UIAutomationType_OutPointArray","features":[526]},{"name":"UIAutomationType_OutRect","features":[526]},{"name":"UIAutomationType_OutRectArray","features":[526]},{"name":"UIAutomationType_OutString","features":[526]},{"name":"UIAutomationType_OutStringArray","features":[526]},{"name":"UIAutomationType_Point","features":[526]},{"name":"UIAutomationType_PointArray","features":[526]},{"name":"UIAutomationType_Rect","features":[526]},{"name":"UIAutomationType_RectArray","features":[526]},{"name":"UIAutomationType_String","features":[526]},{"name":"UIAutomationType_StringArray","features":[526]},{"name":"UiaAddEvent","features":[356,526]},{"name":"UiaAndOrCondition","features":[526]},{"name":"UiaAppendRuntimeId","features":[526]},{"name":"UiaAsyncContentLoadedEventArgs","features":[526]},{"name":"UiaCacheRequest","features":[526]},{"name":"UiaChangeInfo","features":[526]},{"name":"UiaChangesEventArgs","features":[526]},{"name":"UiaClientsAreListening","features":[305,526]},{"name":"UiaCondition","features":[526]},{"name":"UiaDisconnectAllProviders","features":[526]},{"name":"UiaDisconnectProvider","features":[526]},{"name":"UiaEventAddWindow","features":[305,526]},{"name":"UiaEventArgs","features":[526]},{"name":"UiaEventCallback","features":[356,526]},{"name":"UiaEventRemoveWindow","features":[305,526]},{"name":"UiaFind","features":[305,356,526]},{"name":"UiaFindParams","features":[305,526]},{"name":"UiaGetErrorDescription","features":[305,526]},{"name":"UiaGetPatternProvider","features":[526]},{"name":"UiaGetPropertyValue","features":[526]},{"name":"UiaGetReservedMixedAttributeValue","features":[526]},{"name":"UiaGetReservedNotSupportedValue","features":[526]},{"name":"UiaGetRootNode","features":[526]},{"name":"UiaGetRuntimeId","features":[356,526]},{"name":"UiaGetUpdatedCache","features":[356,526]},{"name":"UiaHPatternObjectFromVariant","features":[526]},{"name":"UiaHTextRangeFromVariant","features":[526]},{"name":"UiaHUiaNodeFromVariant","features":[526]},{"name":"UiaHasServerSideProvider","features":[305,526]},{"name":"UiaHostProviderFromHwnd","features":[305,526]},{"name":"UiaIAccessibleFromProvider","features":[356,526]},{"name":"UiaLookupId","features":[526]},{"name":"UiaNavigate","features":[356,526]},{"name":"UiaNodeFromFocus","features":[356,526]},{"name":"UiaNodeFromHandle","features":[305,526]},{"name":"UiaNodeFromPoint","features":[356,526]},{"name":"UiaNodeFromProvider","features":[526]},{"name":"UiaNodeRelease","features":[305,526]},{"name":"UiaNotCondition","features":[526]},{"name":"UiaPatternRelease","features":[305,526]},{"name":"UiaPoint","features":[526]},{"name":"UiaPropertyChangedEventArgs","features":[526]},{"name":"UiaPropertyCondition","features":[526]},{"name":"UiaProviderCallback","features":[305,356,526]},{"name":"UiaProviderForNonClient","features":[305,526]},{"name":"UiaProviderFromIAccessible","features":[356,526]},{"name":"UiaRaiseActiveTextPositionChangedEvent","features":[526]},{"name":"UiaRaiseAsyncContentLoadedEvent","features":[526]},{"name":"UiaRaiseAutomationEvent","features":[526]},{"name":"UiaRaiseAutomationPropertyChangedEvent","features":[526]},{"name":"UiaRaiseChangesEvent","features":[526]},{"name":"UiaRaiseNotificationEvent","features":[526]},{"name":"UiaRaiseStructureChangedEvent","features":[526]},{"name":"UiaRaiseTextEditTextChangedEvent","features":[356,526]},{"name":"UiaRect","features":[526]},{"name":"UiaRegisterProviderCallback","features":[305,356,526]},{"name":"UiaRemoveEvent","features":[526]},{"name":"UiaReturnRawElementProvider","features":[305,526]},{"name":"UiaRootObjectId","features":[526]},{"name":"UiaSetFocus","features":[526]},{"name":"UiaStructureChangedEventArgs","features":[526]},{"name":"UiaTextEditTextChangedEventArgs","features":[356,526]},{"name":"UiaTextRangeRelease","features":[305,526]},{"name":"UiaWindowClosedEventArgs","features":[526]},{"name":"UnhookWinEvent","features":[305,526]},{"name":"UnregisterPointerInputTarget","features":[305,526,367]},{"name":"UnregisterPointerInputTargetEx","features":[305,526,367]},{"name":"ValuePattern_SetValue","features":[526]},{"name":"Value_IsReadOnly_Property_GUID","features":[526]},{"name":"Value_Pattern_GUID","features":[526]},{"name":"Value_Value_Property_GUID","features":[526]},{"name":"VirtualizedItemPattern_Realize","features":[526]},{"name":"VirtualizedItem_Pattern_GUID","features":[526]},{"name":"VisualEffects","features":[526]},{"name":"VisualEffects_Bevel","features":[526]},{"name":"VisualEffects_Glow","features":[526]},{"name":"VisualEffects_None","features":[526]},{"name":"VisualEffects_Property_GUID","features":[526]},{"name":"VisualEffects_Reflection","features":[526]},{"name":"VisualEffects_Shadow","features":[526]},{"name":"VisualEffects_SoftEdges","features":[526]},{"name":"WINEVENTPROC","features":[305,526]},{"name":"WindowFromAccessibleObject","features":[305,356,526]},{"name":"WindowInteractionState","features":[526]},{"name":"WindowInteractionState_BlockedByModalWindow","features":[526]},{"name":"WindowInteractionState_Closing","features":[526]},{"name":"WindowInteractionState_NotResponding","features":[526]},{"name":"WindowInteractionState_ReadyForUserInteraction","features":[526]},{"name":"WindowInteractionState_Running","features":[526]},{"name":"WindowPattern_Close","features":[526]},{"name":"WindowPattern_SetWindowVisualState","features":[526]},{"name":"WindowPattern_WaitForInputIdle","features":[305,526]},{"name":"WindowVisualState","features":[526]},{"name":"WindowVisualState_Maximized","features":[526]},{"name":"WindowVisualState_Minimized","features":[526]},{"name":"WindowVisualState_Normal","features":[526]},{"name":"Window_CanMaximize_Property_GUID","features":[526]},{"name":"Window_CanMinimize_Property_GUID","features":[526]},{"name":"Window_Control_GUID","features":[526]},{"name":"Window_IsModal_Property_GUID","features":[526]},{"name":"Window_IsTopmost_Property_GUID","features":[526]},{"name":"Window_Pattern_GUID","features":[526]},{"name":"Window_WindowClosed_Event_GUID","features":[526]},{"name":"Window_WindowInteractionState_Property_GUID","features":[526]},{"name":"Window_WindowOpened_Event_GUID","features":[526]},{"name":"Window_WindowVisualState_Property_GUID","features":[526]},{"name":"ZoomUnit","features":[526]},{"name":"ZoomUnit_LargeDecrement","features":[526]},{"name":"ZoomUnit_LargeIncrement","features":[526]},{"name":"ZoomUnit_NoAmount","features":[526]},{"name":"ZoomUnit_SmallDecrement","features":[526]},{"name":"ZoomUnit_SmallIncrement","features":[526]}],"650":[{"name":"IUIAnimationInterpolator","features":[616]},{"name":"IUIAnimationInterpolator2","features":[616]},{"name":"IUIAnimationLoopIterationChangeHandler2","features":[616]},{"name":"IUIAnimationManager","features":[616]},{"name":"IUIAnimationManager2","features":[616]},{"name":"IUIAnimationManagerEventHandler","features":[616]},{"name":"IUIAnimationManagerEventHandler2","features":[616]},{"name":"IUIAnimationPrimitiveInterpolation","features":[616]},{"name":"IUIAnimationPriorityComparison","features":[616]},{"name":"IUIAnimationPriorityComparison2","features":[616]},{"name":"IUIAnimationStoryboard","features":[616]},{"name":"IUIAnimationStoryboard2","features":[616]},{"name":"IUIAnimationStoryboardEventHandler","features":[616]},{"name":"IUIAnimationStoryboardEventHandler2","features":[616]},{"name":"IUIAnimationTimer","features":[616]},{"name":"IUIAnimationTimerClientEventHandler","features":[616]},{"name":"IUIAnimationTimerEventHandler","features":[616]},{"name":"IUIAnimationTimerUpdateHandler","features":[616]},{"name":"IUIAnimationTransition","features":[616]},{"name":"IUIAnimationTransition2","features":[616]},{"name":"IUIAnimationTransitionFactory","features":[616]},{"name":"IUIAnimationTransitionFactory2","features":[616]},{"name":"IUIAnimationTransitionLibrary","features":[616]},{"name":"IUIAnimationTransitionLibrary2","features":[616]},{"name":"IUIAnimationVariable","features":[616]},{"name":"IUIAnimationVariable2","features":[616]},{"name":"IUIAnimationVariableChangeHandler","features":[616]},{"name":"IUIAnimationVariableChangeHandler2","features":[616]},{"name":"IUIAnimationVariableCurveChangeHandler2","features":[616]},{"name":"IUIAnimationVariableIntegerChangeHandler","features":[616]},{"name":"IUIAnimationVariableIntegerChangeHandler2","features":[616]},{"name":"UIAnimationManager","features":[616]},{"name":"UIAnimationManager2","features":[616]},{"name":"UIAnimationTimer","features":[616]},{"name":"UIAnimationTransitionFactory","features":[616]},{"name":"UIAnimationTransitionFactory2","features":[616]},{"name":"UIAnimationTransitionLibrary","features":[616]},{"name":"UIAnimationTransitionLibrary2","features":[616]},{"name":"UI_ANIMATION_DEPENDENCIES","features":[616]},{"name":"UI_ANIMATION_DEPENDENCY_DURATION","features":[616]},{"name":"UI_ANIMATION_DEPENDENCY_FINAL_VALUE","features":[616]},{"name":"UI_ANIMATION_DEPENDENCY_FINAL_VELOCITY","features":[616]},{"name":"UI_ANIMATION_DEPENDENCY_INTERMEDIATE_VALUES","features":[616]},{"name":"UI_ANIMATION_DEPENDENCY_NONE","features":[616]},{"name":"UI_ANIMATION_IDLE_BEHAVIOR","features":[616]},{"name":"UI_ANIMATION_IDLE_BEHAVIOR_CONTINUE","features":[616]},{"name":"UI_ANIMATION_IDLE_BEHAVIOR_DISABLE","features":[616]},{"name":"UI_ANIMATION_KEYFRAME","features":[616]},{"name":"UI_ANIMATION_MANAGER_BUSY","features":[616]},{"name":"UI_ANIMATION_MANAGER_IDLE","features":[616]},{"name":"UI_ANIMATION_MANAGER_STATUS","features":[616]},{"name":"UI_ANIMATION_MODE","features":[616]},{"name":"UI_ANIMATION_MODE_DISABLED","features":[616]},{"name":"UI_ANIMATION_MODE_ENABLED","features":[616]},{"name":"UI_ANIMATION_MODE_SYSTEM_DEFAULT","features":[616]},{"name":"UI_ANIMATION_PRIORITY_EFFECT","features":[616]},{"name":"UI_ANIMATION_PRIORITY_EFFECT_DELAY","features":[616]},{"name":"UI_ANIMATION_PRIORITY_EFFECT_FAILURE","features":[616]},{"name":"UI_ANIMATION_REPEAT_INDEFINITELY","features":[616]},{"name":"UI_ANIMATION_REPEAT_INDEFINITELY_CONCLUDE_AT_END","features":[616]},{"name":"UI_ANIMATION_REPEAT_INDEFINITELY_CONCLUDE_AT_START","features":[616]},{"name":"UI_ANIMATION_REPEAT_MODE","features":[616]},{"name":"UI_ANIMATION_REPEAT_MODE_ALTERNATE","features":[616]},{"name":"UI_ANIMATION_REPEAT_MODE_NORMAL","features":[616]},{"name":"UI_ANIMATION_ROUNDING_CEILING","features":[616]},{"name":"UI_ANIMATION_ROUNDING_FLOOR","features":[616]},{"name":"UI_ANIMATION_ROUNDING_MODE","features":[616]},{"name":"UI_ANIMATION_ROUNDING_NEAREST","features":[616]},{"name":"UI_ANIMATION_SCHEDULING_ALREADY_SCHEDULED","features":[616]},{"name":"UI_ANIMATION_SCHEDULING_DEFERRED","features":[616]},{"name":"UI_ANIMATION_SCHEDULING_INSUFFICIENT_PRIORITY","features":[616]},{"name":"UI_ANIMATION_SCHEDULING_RESULT","features":[616]},{"name":"UI_ANIMATION_SCHEDULING_SUCCEEDED","features":[616]},{"name":"UI_ANIMATION_SCHEDULING_UNEXPECTED_FAILURE","features":[616]},{"name":"UI_ANIMATION_SECONDS_EVENTUALLY","features":[616]},{"name":"UI_ANIMATION_SECONDS_INFINITE","features":[616]},{"name":"UI_ANIMATION_SLOPE","features":[616]},{"name":"UI_ANIMATION_SLOPE_DECREASING","features":[616]},{"name":"UI_ANIMATION_SLOPE_INCREASING","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_BUILDING","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_CANCELLED","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_FINISHED","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_INSUFFICIENT_PRIORITY","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_PLAYING","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_READY","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_SCHEDULED","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_STATUS","features":[616]},{"name":"UI_ANIMATION_STORYBOARD_TRUNCATED","features":[616]},{"name":"UI_ANIMATION_TIMER_CLIENT_BUSY","features":[616]},{"name":"UI_ANIMATION_TIMER_CLIENT_IDLE","features":[616]},{"name":"UI_ANIMATION_TIMER_CLIENT_STATUS","features":[616]},{"name":"UI_ANIMATION_UPDATE_NO_CHANGE","features":[616]},{"name":"UI_ANIMATION_UPDATE_RESULT","features":[616]},{"name":"UI_ANIMATION_UPDATE_VARIABLES_CHANGED","features":[616]}],"651":[{"name":"ATTRIB_MATTE","features":[372]},{"name":"ATTRIB_TRANSPARENCY","features":[372]},{"name":"AssociateColorProfileWithDeviceA","features":[305,372]},{"name":"AssociateColorProfileWithDeviceW","features":[305,372]},{"name":"BEST_MODE","features":[372]},{"name":"BMFORMAT","features":[372]},{"name":"BM_10b_G3CH","features":[372]},{"name":"BM_10b_Lab","features":[372]},{"name":"BM_10b_RGB","features":[372]},{"name":"BM_10b_XYZ","features":[372]},{"name":"BM_10b_Yxy","features":[372]},{"name":"BM_16b_G3CH","features":[372]},{"name":"BM_16b_GRAY","features":[372]},{"name":"BM_16b_Lab","features":[372]},{"name":"BM_16b_RGB","features":[372]},{"name":"BM_16b_XYZ","features":[372]},{"name":"BM_16b_Yxy","features":[372]},{"name":"BM_32b_scARGB","features":[372]},{"name":"BM_32b_scRGB","features":[372]},{"name":"BM_565RGB","features":[372]},{"name":"BM_5CHANNEL","features":[372]},{"name":"BM_6CHANNEL","features":[372]},{"name":"BM_7CHANNEL","features":[372]},{"name":"BM_8CHANNEL","features":[372]},{"name":"BM_BGRTRIPLETS","features":[372]},{"name":"BM_CMYKQUADS","features":[372]},{"name":"BM_G3CHTRIPLETS","features":[372]},{"name":"BM_GRAY","features":[372]},{"name":"BM_KYMCQUADS","features":[372]},{"name":"BM_LabTRIPLETS","features":[372]},{"name":"BM_NAMED_INDEX","features":[372]},{"name":"BM_R10G10B10A2","features":[372]},{"name":"BM_R10G10B10A2_XR","features":[372]},{"name":"BM_R16G16B16A16_FLOAT","features":[372]},{"name":"BM_RGBTRIPLETS","features":[372]},{"name":"BM_S2DOT13FIXED_scARGB","features":[372]},{"name":"BM_S2DOT13FIXED_scRGB","features":[372]},{"name":"BM_XYZTRIPLETS","features":[372]},{"name":"BM_YxyTRIPLETS","features":[372]},{"name":"BM_x555G3CH","features":[372]},{"name":"BM_x555Lab","features":[372]},{"name":"BM_x555RGB","features":[372]},{"name":"BM_x555XYZ","features":[372]},{"name":"BM_x555Yxy","features":[372]},{"name":"BM_xBGRQUADS","features":[372]},{"name":"BM_xG3CHQUADS","features":[372]},{"name":"BM_xRGBQUADS","features":[372]},{"name":"BlackInformation","features":[305,372]},{"name":"CATID_WcsPlugin","features":[372]},{"name":"CMCheckColors","features":[305,372]},{"name":"CMCheckColorsInGamut","features":[305,316,372]},{"name":"CMCheckRGBs","features":[305,372]},{"name":"CMConvertColorNameToIndex","features":[305,372]},{"name":"CMConvertIndexToColorName","features":[305,372]},{"name":"CMCreateDeviceLinkProfile","features":[305,372]},{"name":"CMCreateMultiProfileTransform","features":[372]},{"name":"CMCreateProfile","features":[305,316,372]},{"name":"CMCreateProfileW","features":[305,316,372]},{"name":"CMCreateTransform","features":[316,372]},{"name":"CMCreateTransformExt","features":[316,372]},{"name":"CMCreateTransformExtW","features":[316,372]},{"name":"CMCreateTransformW","features":[316,372]},{"name":"CMDeleteTransform","features":[305,372]},{"name":"CMGetInfo","features":[372]},{"name":"CMGetNamedProfileInfo","features":[305,372]},{"name":"CMIsProfileValid","features":[305,372]},{"name":"CMM_DESCRIPTION","features":[372]},{"name":"CMM_DLL_VERSION","features":[372]},{"name":"CMM_DRIVER_VERSION","features":[372]},{"name":"CMM_FROM_PROFILE","features":[372]},{"name":"CMM_IDENT","features":[372]},{"name":"CMM_LOGOICON","features":[372]},{"name":"CMM_VERSION","features":[372]},{"name":"CMM_WIN_VERSION","features":[372]},{"name":"CMS_BACKWARD","features":[372]},{"name":"CMS_DISABLEICM","features":[372]},{"name":"CMS_DISABLEINTENT","features":[372]},{"name":"CMS_DISABLERENDERINTENT","features":[372]},{"name":"CMS_ENABLEPROOFING","features":[372]},{"name":"CMS_FORWARD","features":[372]},{"name":"CMS_MONITOROVERFLOW","features":[372]},{"name":"CMS_PRINTEROVERFLOW","features":[372]},{"name":"CMS_SETMONITORPROFILE","features":[372]},{"name":"CMS_SETPRINTERPROFILE","features":[372]},{"name":"CMS_SETPROOFINTENT","features":[372]},{"name":"CMS_SETRENDERINTENT","features":[372]},{"name":"CMS_SETTARGETPROFILE","features":[372]},{"name":"CMS_TARGETOVERFLOW","features":[372]},{"name":"CMS_USEAPPLYCALLBACK","features":[372]},{"name":"CMS_USEDESCRIPTION","features":[372]},{"name":"CMS_USEHOOK","features":[372]},{"name":"CMTranslateColors","features":[305,372]},{"name":"CMTranslateRGB","features":[305,372]},{"name":"CMTranslateRGBs","features":[305,372]},{"name":"CMTranslateRGBsExt","features":[305,372]},{"name":"CMYKCOLOR","features":[372]},{"name":"COLOR","features":[372]},{"name":"COLORDATATYPE","features":[372]},{"name":"COLORMATCHSETUPA","features":[305,372,367]},{"name":"COLORMATCHSETUPW","features":[305,372,367]},{"name":"COLORPROFILESUBTYPE","features":[372]},{"name":"COLORPROFILETYPE","features":[372]},{"name":"COLORTYPE","features":[372]},{"name":"COLOR_10b_R10G10B10A2","features":[372]},{"name":"COLOR_10b_R10G10B10A2_XR","features":[372]},{"name":"COLOR_3_CHANNEL","features":[372]},{"name":"COLOR_5_CHANNEL","features":[372]},{"name":"COLOR_6_CHANNEL","features":[372]},{"name":"COLOR_7_CHANNEL","features":[372]},{"name":"COLOR_8_CHANNEL","features":[372]},{"name":"COLOR_BYTE","features":[372]},{"name":"COLOR_CMYK","features":[372]},{"name":"COLOR_FLOAT","features":[372]},{"name":"COLOR_FLOAT16","features":[372]},{"name":"COLOR_GRAY","features":[372]},{"name":"COLOR_Lab","features":[372]},{"name":"COLOR_MATCH_TO_TARGET_ACTION","features":[372]},{"name":"COLOR_MATCH_VERSION","features":[372]},{"name":"COLOR_NAMED","features":[372]},{"name":"COLOR_RGB","features":[372]},{"name":"COLOR_S2DOT13FIXED","features":[372]},{"name":"COLOR_WORD","features":[372]},{"name":"COLOR_XYZ","features":[372]},{"name":"COLOR_Yxy","features":[372]},{"name":"CPST_ABSOLUTE_COLORIMETRIC","features":[372]},{"name":"CPST_CUSTOM_WORKING_SPACE","features":[372]},{"name":"CPST_EXTENDED_DISPLAY_COLOR_MODE","features":[372]},{"name":"CPST_NONE","features":[372]},{"name":"CPST_PERCEPTUAL","features":[372]},{"name":"CPST_RELATIVE_COLORIMETRIC","features":[372]},{"name":"CPST_RGB_WORKING_SPACE","features":[372]},{"name":"CPST_SATURATION","features":[372]},{"name":"CPST_STANDARD_DISPLAY_COLOR_MODE","features":[372]},{"name":"CPT_CAMP","features":[372]},{"name":"CPT_DMP","features":[372]},{"name":"CPT_GMMP","features":[372]},{"name":"CPT_ICC","features":[372]},{"name":"CSA_A","features":[372]},{"name":"CSA_ABC","features":[372]},{"name":"CSA_CMYK","features":[372]},{"name":"CSA_DEF","features":[372]},{"name":"CSA_DEFG","features":[372]},{"name":"CSA_GRAY","features":[372]},{"name":"CSA_Lab","features":[372]},{"name":"CSA_RGB","features":[372]},{"name":"CS_DELETE_TRANSFORM","features":[372]},{"name":"CS_DISABLE","features":[372]},{"name":"CS_ENABLE","features":[372]},{"name":"CheckBitmapBits","features":[305,372]},{"name":"CheckColors","features":[305,372]},{"name":"CheckColorsInGamut","features":[305,316,372]},{"name":"CloseColorProfile","features":[305,372]},{"name":"ColorCorrectPalette","features":[305,316,372]},{"name":"ColorMatchToTarget","features":[305,316,372]},{"name":"ColorProfileAddDisplayAssociation","features":[305,372]},{"name":"ColorProfileGetDisplayDefault","features":[305,372]},{"name":"ColorProfileGetDisplayList","features":[305,372]},{"name":"ColorProfileGetDisplayUserScope","features":[305,372]},{"name":"ColorProfileRemoveDisplayAssociation","features":[305,372]},{"name":"ColorProfileSetDisplayDefaultAssociation","features":[305,372]},{"name":"ConvertColorNameToIndex","features":[305,372]},{"name":"ConvertIndexToColorName","features":[305,372]},{"name":"CreateColorSpaceA","features":[316,372]},{"name":"CreateColorSpaceW","features":[316,372]},{"name":"CreateColorTransformA","features":[316,372]},{"name":"CreateColorTransformW","features":[316,372]},{"name":"CreateDeviceLinkProfile","features":[305,372]},{"name":"CreateMultiProfileTransform","features":[372]},{"name":"CreateProfileFromLogColorSpaceA","features":[305,316,372]},{"name":"CreateProfileFromLogColorSpaceW","features":[305,316,372]},{"name":"DONT_USE_EMBEDDED_WCS_PROFILES","features":[372]},{"name":"DeleteColorSpace","features":[305,372]},{"name":"DeleteColorTransform","features":[305,372]},{"name":"DisassociateColorProfileFromDeviceA","features":[305,372]},{"name":"DisassociateColorProfileFromDeviceW","features":[305,372]},{"name":"EMRCREATECOLORSPACE","features":[316,372]},{"name":"EMRCREATECOLORSPACEW","features":[316,372]},{"name":"ENABLE_GAMUT_CHECKING","features":[372]},{"name":"ENUMTYPEA","features":[372]},{"name":"ENUMTYPEW","features":[372]},{"name":"ENUM_TYPE_VERSION","features":[372]},{"name":"ET_ATTRIBUTES","features":[372]},{"name":"ET_CLASS","features":[372]},{"name":"ET_CMMTYPE","features":[372]},{"name":"ET_CONNECTIONSPACE","features":[372]},{"name":"ET_CREATOR","features":[372]},{"name":"ET_DATACOLORSPACE","features":[372]},{"name":"ET_DEVICECLASS","features":[372]},{"name":"ET_DEVICENAME","features":[372]},{"name":"ET_DITHERMODE","features":[372]},{"name":"ET_EXTENDEDDISPLAYCOLOR","features":[372]},{"name":"ET_MANUFACTURER","features":[372]},{"name":"ET_MEDIATYPE","features":[372]},{"name":"ET_MODEL","features":[372]},{"name":"ET_PLATFORM","features":[372]},{"name":"ET_PROFILEFLAGS","features":[372]},{"name":"ET_RENDERINGINTENT","features":[372]},{"name":"ET_RESOLUTION","features":[372]},{"name":"ET_SIGNATURE","features":[372]},{"name":"ET_STANDARDDISPLAYCOLOR","features":[372]},{"name":"EnumColorProfilesA","features":[305,372]},{"name":"EnumColorProfilesW","features":[305,372]},{"name":"EnumICMProfilesA","features":[305,316,372]},{"name":"EnumICMProfilesW","features":[305,316,372]},{"name":"FAST_TRANSLATE","features":[372]},{"name":"FLAG_DEPENDENTONDATA","features":[372]},{"name":"FLAG_EMBEDDEDPROFILE","features":[372]},{"name":"FLAG_ENABLE_CHROMATIC_ADAPTATION","features":[372]},{"name":"GENERIC3CHANNEL","features":[372]},{"name":"GRAYCOLOR","features":[372]},{"name":"GamutBoundaryDescription","features":[372]},{"name":"GamutShell","features":[372]},{"name":"GamutShellTriangle","features":[372]},{"name":"GetCMMInfo","features":[372]},{"name":"GetColorDirectoryA","features":[305,372]},{"name":"GetColorDirectoryW","features":[305,372]},{"name":"GetColorProfileElement","features":[305,372]},{"name":"GetColorProfileElementTag","features":[305,372]},{"name":"GetColorProfileFromHandle","features":[305,372]},{"name":"GetColorProfileHeader","features":[305,316,372]},{"name":"GetColorSpace","features":[316,372]},{"name":"GetCountColorProfileElements","features":[305,372]},{"name":"GetDeviceGammaRamp","features":[305,316,372]},{"name":"GetICMProfileA","features":[305,316,372]},{"name":"GetICMProfileW","features":[305,316,372]},{"name":"GetLogColorSpaceA","features":[305,316,372]},{"name":"GetLogColorSpaceW","features":[305,316,372]},{"name":"GetNamedProfileInfo","features":[305,372]},{"name":"GetPS2ColorRenderingDictionary","features":[305,372]},{"name":"GetPS2ColorRenderingIntent","features":[305,372]},{"name":"GetPS2ColorSpaceArray","features":[305,372]},{"name":"GetStandardColorSpaceProfileA","features":[305,372]},{"name":"GetStandardColorSpaceProfileW","features":[305,372]},{"name":"HCOLORSPACE","features":[372]},{"name":"HiFiCOLOR","features":[372]},{"name":"ICMENUMPROCA","features":[305,372]},{"name":"ICMENUMPROCW","features":[305,372]},{"name":"ICM_ADDPROFILE","features":[372]},{"name":"ICM_COMMAND","features":[372]},{"name":"ICM_DELETEPROFILE","features":[372]},{"name":"ICM_DONE_OUTSIDEDC","features":[372]},{"name":"ICM_MODE","features":[372]},{"name":"ICM_OFF","features":[372]},{"name":"ICM_ON","features":[372]},{"name":"ICM_QUERY","features":[372]},{"name":"ICM_QUERYMATCH","features":[372]},{"name":"ICM_QUERYPROFILE","features":[372]},{"name":"ICM_REGISTERICMATCHER","features":[372]},{"name":"ICM_SETDEFAULTPROFILE","features":[372]},{"name":"ICM_UNREGISTERICMATCHER","features":[372]},{"name":"IDeviceModelPlugIn","features":[372]},{"name":"IGamutMapModelPlugIn","features":[372]},{"name":"INDEX_DONT_CARE","features":[372]},{"name":"INTENT_ABSOLUTE_COLORIMETRIC","features":[372]},{"name":"INTENT_PERCEPTUAL","features":[372]},{"name":"INTENT_RELATIVE_COLORIMETRIC","features":[372]},{"name":"INTENT_SATURATION","features":[372]},{"name":"InstallColorProfileA","features":[305,372]},{"name":"InstallColorProfileW","features":[305,372]},{"name":"IsColorProfileTagPresent","features":[305,372]},{"name":"IsColorProfileValid","features":[305,372]},{"name":"JChColorF","features":[372]},{"name":"JabColorF","features":[372]},{"name":"LCSCSTYPE","features":[372]},{"name":"LCS_CALIBRATED_RGB","features":[372]},{"name":"LCS_WINDOWS_COLOR_SPACE","features":[372]},{"name":"LCS_sRGB","features":[372]},{"name":"LOGCOLORSPACEA","features":[316,372]},{"name":"LOGCOLORSPACEW","features":[316,372]},{"name":"LPBMCALLBACKFN","features":[305,372]},{"name":"LabCOLOR","features":[372]},{"name":"MAX_COLOR_CHANNELS","features":[372]},{"name":"MicrosoftHardwareColorV2","features":[372]},{"name":"NAMEDCOLOR","features":[372]},{"name":"NAMED_PROFILE_INFO","features":[372]},{"name":"NORMAL_MODE","features":[372]},{"name":"OpenColorProfileA","features":[372]},{"name":"OpenColorProfileW","features":[372]},{"name":"PCMSCALLBACKA","features":[305,372,367]},{"name":"PCMSCALLBACKW","features":[305,372,367]},{"name":"PRESERVEBLACK","features":[372]},{"name":"PROFILE","features":[372]},{"name":"PROFILEHEADER","features":[316,372]},{"name":"PROFILE_FILENAME","features":[372]},{"name":"PROFILE_MEMBUFFER","features":[372]},{"name":"PROFILE_READ","features":[372]},{"name":"PROFILE_READWRITE","features":[372]},{"name":"PROOF_MODE","features":[372]},{"name":"PrimaryJabColors","features":[372]},{"name":"PrimaryXYZColors","features":[372]},{"name":"RESERVED","features":[372]},{"name":"RGBCOLOR","features":[372]},{"name":"RegisterCMMA","features":[305,372]},{"name":"RegisterCMMW","features":[305,372]},{"name":"SEQUENTIAL_TRANSFORM","features":[372]},{"name":"SelectCMM","features":[305,372]},{"name":"SetColorProfileElement","features":[305,372]},{"name":"SetColorProfileElementReference","features":[305,372]},{"name":"SetColorProfileElementSize","features":[305,372]},{"name":"SetColorProfileHeader","features":[305,316,372]},{"name":"SetColorSpace","features":[316,372]},{"name":"SetDeviceGammaRamp","features":[305,316,372]},{"name":"SetICMMode","features":[316,372]},{"name":"SetICMProfileA","features":[305,316,372]},{"name":"SetICMProfileW","features":[305,316,372]},{"name":"SetStandardColorSpaceProfileA","features":[305,372]},{"name":"SetStandardColorSpaceProfileW","features":[305,372]},{"name":"SetupColorMatchingA","features":[305,372,367]},{"name":"SetupColorMatchingW","features":[305,372,367]},{"name":"TranslateBitmapBits","features":[305,372]},{"name":"TranslateColors","features":[305,372]},{"name":"USE_RELATIVE_COLORIMETRIC","features":[372]},{"name":"UninstallColorProfileA","features":[305,372]},{"name":"UninstallColorProfileW","features":[305,372]},{"name":"UnregisterCMMA","features":[305,372]},{"name":"UnregisterCMMW","features":[305,372]},{"name":"UpdateICMRegKeyA","features":[305,372]},{"name":"UpdateICMRegKeyW","features":[305,372]},{"name":"VideoCardGammaTable","features":[372]},{"name":"WCS_ALWAYS","features":[372]},{"name":"WCS_DEFAULT","features":[372]},{"name":"WCS_DEVICE_CAPABILITIES_TYPE","features":[372]},{"name":"WCS_DEVICE_MHC2_CAPABILITIES","features":[305,372]},{"name":"WCS_DEVICE_VCGT_CAPABILITIES","features":[305,372]},{"name":"WCS_ICCONLY","features":[372]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE","features":[372]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_CURRENT_USER","features":[372]},{"name":"WCS_PROFILE_MANAGEMENT_SCOPE_SYSTEM_WIDE","features":[372]},{"name":"WcsAssociateColorProfileWithDevice","features":[305,372]},{"name":"WcsCheckColors","features":[305,372]},{"name":"WcsCreateIccProfile","features":[372]},{"name":"WcsDisassociateColorProfileFromDevice","features":[305,372]},{"name":"WcsEnumColorProfiles","features":[305,372]},{"name":"WcsEnumColorProfilesSize","features":[305,372]},{"name":"WcsGetCalibrationManagementState","features":[305,372]},{"name":"WcsGetDefaultColorProfile","features":[305,372]},{"name":"WcsGetDefaultColorProfileSize","features":[305,372]},{"name":"WcsGetDefaultRenderingIntent","features":[305,372]},{"name":"WcsGetUsePerUserProfiles","features":[305,372]},{"name":"WcsOpenColorProfileA","features":[372]},{"name":"WcsOpenColorProfileW","features":[372]},{"name":"WcsSetCalibrationManagementState","features":[305,372]},{"name":"WcsSetDefaultColorProfile","features":[305,372]},{"name":"WcsSetDefaultRenderingIntent","features":[305,372]},{"name":"WcsSetUsePerUserProfiles","features":[305,372]},{"name":"WcsTranslateColors","features":[305,372]},{"name":"XYZCOLOR","features":[372]},{"name":"XYZColorF","features":[372]},{"name":"YxyCOLOR","features":[372]}],"652":[{"name":"ABS_DOWNDISABLED","features":[355]},{"name":"ABS_DOWNHOT","features":[355]},{"name":"ABS_DOWNHOVER","features":[355]},{"name":"ABS_DOWNNORMAL","features":[355]},{"name":"ABS_DOWNPRESSED","features":[355]},{"name":"ABS_LEFTDISABLED","features":[355]},{"name":"ABS_LEFTHOT","features":[355]},{"name":"ABS_LEFTHOVER","features":[355]},{"name":"ABS_LEFTNORMAL","features":[355]},{"name":"ABS_LEFTPRESSED","features":[355]},{"name":"ABS_RIGHTDISABLED","features":[355]},{"name":"ABS_RIGHTHOT","features":[355]},{"name":"ABS_RIGHTHOVER","features":[355]},{"name":"ABS_RIGHTNORMAL","features":[355]},{"name":"ABS_RIGHTPRESSED","features":[355]},{"name":"ABS_UPDISABLED","features":[355]},{"name":"ABS_UPHOT","features":[355]},{"name":"ABS_UPHOVER","features":[355]},{"name":"ABS_UPNORMAL","features":[355]},{"name":"ABS_UPPRESSED","features":[355]},{"name":"ACM_ISPLAYING","features":[355]},{"name":"ACM_OPEN","features":[355]},{"name":"ACM_OPENA","features":[355]},{"name":"ACM_OPENW","features":[355]},{"name":"ACM_PLAY","features":[355]},{"name":"ACM_STOP","features":[355]},{"name":"ACN_START","features":[355]},{"name":"ACN_STOP","features":[355]},{"name":"ACS_AUTOPLAY","features":[355]},{"name":"ACS_CENTER","features":[355]},{"name":"ACS_TIMER","features":[355]},{"name":"ACS_TRANSPARENT","features":[355]},{"name":"AEROWIZARDPARTS","features":[355]},{"name":"ALLOW_CONTROLS","features":[355]},{"name":"ALLOW_NONCLIENT","features":[355]},{"name":"ALLOW_WEBCONTENT","features":[355]},{"name":"ANIMATE_CLASS","features":[355]},{"name":"ANIMATE_CLASSA","features":[355]},{"name":"ANIMATE_CLASSW","features":[355]},{"name":"ARROWBTNSTATES","features":[355]},{"name":"AW_BUTTON","features":[355]},{"name":"AW_COMMANDAREA","features":[355]},{"name":"AW_CONTENTAREA","features":[355]},{"name":"AW_HEADERAREA","features":[355]},{"name":"AW_S_CONTENTAREA_NOMARGIN","features":[355]},{"name":"AW_S_HEADERAREA_NOMARGIN","features":[355]},{"name":"AW_S_TITLEBAR_ACTIVE","features":[355]},{"name":"AW_S_TITLEBAR_INACTIVE","features":[355]},{"name":"AW_TITLEBAR","features":[355]},{"name":"BACKGROUNDSTATES","features":[355]},{"name":"BACKGROUNDWITHBORDERSTATES","features":[355]},{"name":"BALLOONSTATES","features":[355]},{"name":"BALLOONSTEMSTATES","features":[355]},{"name":"BARBACKGROUNDSTATES","features":[355]},{"name":"BARITEMSTATES","features":[355]},{"name":"BCM_FIRST","features":[355]},{"name":"BCM_GETIDEALSIZE","features":[355]},{"name":"BCM_GETIMAGELIST","features":[355]},{"name":"BCM_GETNOTE","features":[355]},{"name":"BCM_GETNOTELENGTH","features":[355]},{"name":"BCM_GETSPLITINFO","features":[355]},{"name":"BCM_GETTEXTMARGIN","features":[355]},{"name":"BCM_SETDROPDOWNSTATE","features":[355]},{"name":"BCM_SETIMAGELIST","features":[355]},{"name":"BCM_SETNOTE","features":[355]},{"name":"BCM_SETSHIELD","features":[355]},{"name":"BCM_SETSPLITINFO","features":[355]},{"name":"BCM_SETTEXTMARGIN","features":[355]},{"name":"BCN_DROPDOWN","features":[355]},{"name":"BCN_FIRST","features":[355]},{"name":"BCN_HOTITEMCHANGE","features":[355]},{"name":"BCN_LAST","features":[355]},{"name":"BCSIF_GLYPH","features":[355]},{"name":"BCSIF_IMAGE","features":[355]},{"name":"BCSIF_SIZE","features":[355]},{"name":"BCSIF_STYLE","features":[355]},{"name":"BCSS_ALIGNLEFT","features":[355]},{"name":"BCSS_IMAGE","features":[355]},{"name":"BCSS_NOSPLIT","features":[355]},{"name":"BCSS_STRETCH","features":[355]},{"name":"BGTYPE","features":[355]},{"name":"BODYSTATES","features":[355]},{"name":"BORDERSTATES","features":[355]},{"name":"BORDERTYPE","features":[355]},{"name":"BORDER_HSCROLLSTATES","features":[355]},{"name":"BORDER_HVSCROLLSTATES","features":[355]},{"name":"BORDER_NOSCROLLSTATES","features":[355]},{"name":"BORDER_VSCROLLSTATES","features":[355]},{"name":"BPAS_CUBIC","features":[355]},{"name":"BPAS_LINEAR","features":[355]},{"name":"BPAS_NONE","features":[355]},{"name":"BPAS_SINE","features":[355]},{"name":"BPBF_COMPATIBLEBITMAP","features":[355]},{"name":"BPBF_DIB","features":[355]},{"name":"BPBF_TOPDOWNDIB","features":[355]},{"name":"BPBF_TOPDOWNMONODIB","features":[355]},{"name":"BPPF_ERASE","features":[355]},{"name":"BPPF_NOCLIP","features":[355]},{"name":"BPPF_NONCLIENT","features":[355]},{"name":"BP_ANIMATIONPARAMS","features":[355]},{"name":"BP_ANIMATIONSTYLE","features":[355]},{"name":"BP_BUFFERFORMAT","features":[355]},{"name":"BP_CHECKBOX","features":[355]},{"name":"BP_CHECKBOX_HCDISABLED","features":[355]},{"name":"BP_COMMANDLINK","features":[355]},{"name":"BP_COMMANDLINKGLYPH","features":[355]},{"name":"BP_GROUPBOX","features":[355]},{"name":"BP_GROUPBOX_HCDISABLED","features":[355]},{"name":"BP_PAINTPARAMS","features":[305,316,355]},{"name":"BP_PAINTPARAMS_FLAGS","features":[355]},{"name":"BP_PUSHBUTTON","features":[355]},{"name":"BP_PUSHBUTTONDROPDOWN","features":[355]},{"name":"BP_RADIOBUTTON","features":[355]},{"name":"BP_RADIOBUTTON_HCDISABLED","features":[355]},{"name":"BP_USERBUTTON","features":[355]},{"name":"BST_CHECKED","features":[355]},{"name":"BST_DROPDOWNPUSHED","features":[355]},{"name":"BST_HOT","features":[355]},{"name":"BST_INDETERMINATE","features":[355]},{"name":"BST_UNCHECKED","features":[355]},{"name":"BS_COMMANDLINK","features":[355]},{"name":"BS_DEFCOMMANDLINK","features":[355]},{"name":"BS_DEFSPLITBUTTON","features":[355]},{"name":"BS_SPLITBUTTON","features":[355]},{"name":"BTNS_AUTOSIZE","features":[355]},{"name":"BTNS_BUTTON","features":[355]},{"name":"BTNS_CHECK","features":[355]},{"name":"BTNS_DROPDOWN","features":[355]},{"name":"BTNS_GROUP","features":[355]},{"name":"BTNS_NOPREFIX","features":[355]},{"name":"BTNS_SEP","features":[355]},{"name":"BTNS_SHOWTEXT","features":[355]},{"name":"BTNS_WHOLEDROPDOWN","features":[355]},{"name":"BT_BORDERFILL","features":[355]},{"name":"BT_ELLIPSE","features":[355]},{"name":"BT_IMAGEFILE","features":[355]},{"name":"BT_NONE","features":[355]},{"name":"BT_RECT","features":[355]},{"name":"BT_ROUNDRECT","features":[355]},{"name":"BUTTONPARTS","features":[355]},{"name":"BUTTON_IMAGELIST","features":[305,355]},{"name":"BUTTON_IMAGELIST_ALIGN","features":[355]},{"name":"BUTTON_IMAGELIST_ALIGN_BOTTOM","features":[355]},{"name":"BUTTON_IMAGELIST_ALIGN_CENTER","features":[355]},{"name":"BUTTON_IMAGELIST_ALIGN_LEFT","features":[355]},{"name":"BUTTON_IMAGELIST_ALIGN_RIGHT","features":[355]},{"name":"BUTTON_IMAGELIST_ALIGN_TOP","features":[355]},{"name":"BUTTON_SPLITINFO","features":[305,355]},{"name":"BeginBufferedAnimation","features":[305,316,355]},{"name":"BeginBufferedPaint","features":[305,316,355]},{"name":"BeginPanningFeedback","features":[305,355]},{"name":"BufferedPaintClear","features":[305,355]},{"name":"BufferedPaintInit","features":[355]},{"name":"BufferedPaintRenderAnimation","features":[305,316,355]},{"name":"BufferedPaintSetAlpha","features":[305,355]},{"name":"BufferedPaintStopAllAnimations","features":[305,355]},{"name":"BufferedPaintUnInit","features":[355]},{"name":"CAPTIONSTATES","features":[355]},{"name":"CA_CENTER","features":[355]},{"name":"CA_LEFT","features":[355]},{"name":"CA_RIGHT","features":[355]},{"name":"CBB_DISABLED","features":[355]},{"name":"CBB_FOCUSED","features":[355]},{"name":"CBB_HOT","features":[355]},{"name":"CBB_NORMAL","features":[355]},{"name":"CBCB_DISABLED","features":[355]},{"name":"CBCB_HOT","features":[355]},{"name":"CBCB_NORMAL","features":[355]},{"name":"CBCB_PRESSED","features":[355]},{"name":"CBDI_HIGHLIGHTED","features":[355]},{"name":"CBDI_NORMAL","features":[355]},{"name":"CBEIF_DI_SETITEM","features":[355]},{"name":"CBEIF_IMAGE","features":[355]},{"name":"CBEIF_INDENT","features":[355]},{"name":"CBEIF_LPARAM","features":[355]},{"name":"CBEIF_OVERLAY","features":[355]},{"name":"CBEIF_SELECTEDIMAGE","features":[355]},{"name":"CBEIF_TEXT","features":[355]},{"name":"CBEMAXSTRLEN","features":[355]},{"name":"CBEM_GETCOMBOCONTROL","features":[355]},{"name":"CBEM_GETEDITCONTROL","features":[355]},{"name":"CBEM_GETEXSTYLE","features":[355]},{"name":"CBEM_GETEXTENDEDSTYLE","features":[355]},{"name":"CBEM_GETIMAGELIST","features":[355]},{"name":"CBEM_GETITEM","features":[355]},{"name":"CBEM_GETITEMA","features":[355]},{"name":"CBEM_GETITEMW","features":[355]},{"name":"CBEM_GETUNICODEFORMAT","features":[355]},{"name":"CBEM_HASEDITCHANGED","features":[355]},{"name":"CBEM_INSERTITEM","features":[355]},{"name":"CBEM_INSERTITEMA","features":[355]},{"name":"CBEM_INSERTITEMW","features":[355]},{"name":"CBEM_SETEXSTYLE","features":[355]},{"name":"CBEM_SETEXTENDEDSTYLE","features":[355]},{"name":"CBEM_SETIMAGELIST","features":[355]},{"name":"CBEM_SETITEM","features":[355]},{"name":"CBEM_SETITEMA","features":[355]},{"name":"CBEM_SETITEMW","features":[355]},{"name":"CBEM_SETUNICODEFORMAT","features":[355]},{"name":"CBEM_SETWINDOWTHEME","features":[355]},{"name":"CBENF_DROPDOWN","features":[355]},{"name":"CBENF_ESCAPE","features":[355]},{"name":"CBENF_KILLFOCUS","features":[355]},{"name":"CBENF_RETURN","features":[355]},{"name":"CBEN_BEGINEDIT","features":[355]},{"name":"CBEN_DELETEITEM","features":[355]},{"name":"CBEN_DRAGBEGIN","features":[355]},{"name":"CBEN_DRAGBEGINA","features":[355]},{"name":"CBEN_DRAGBEGINW","features":[355]},{"name":"CBEN_ENDEDIT","features":[355]},{"name":"CBEN_ENDEDITA","features":[355]},{"name":"CBEN_ENDEDITW","features":[355]},{"name":"CBEN_FIRST","features":[355]},{"name":"CBEN_GETDISPINFOA","features":[355]},{"name":"CBEN_GETDISPINFOW","features":[355]},{"name":"CBEN_INSERTITEM","features":[355]},{"name":"CBEN_LAST","features":[355]},{"name":"CBES_EX_CASESENSITIVE","features":[355]},{"name":"CBES_EX_NOEDITIMAGE","features":[355]},{"name":"CBES_EX_NOEDITIMAGEINDENT","features":[355]},{"name":"CBES_EX_NOSIZELIMIT","features":[355]},{"name":"CBES_EX_PATHWORDBREAKPROC","features":[355]},{"name":"CBES_EX_TEXTENDELLIPSIS","features":[355]},{"name":"CBM_FIRST","features":[355]},{"name":"CBRO_DISABLED","features":[355]},{"name":"CBRO_HOT","features":[355]},{"name":"CBRO_NORMAL","features":[355]},{"name":"CBRO_PRESSED","features":[355]},{"name":"CBS_CHECKEDDISABLED","features":[355]},{"name":"CBS_CHECKEDHOT","features":[355]},{"name":"CBS_CHECKEDNORMAL","features":[355]},{"name":"CBS_CHECKEDPRESSED","features":[355]},{"name":"CBS_DISABLED","features":[355]},{"name":"CBS_EXCLUDEDDISABLED","features":[355]},{"name":"CBS_EXCLUDEDHOT","features":[355]},{"name":"CBS_EXCLUDEDNORMAL","features":[355]},{"name":"CBS_EXCLUDEDPRESSED","features":[355]},{"name":"CBS_HOT","features":[355]},{"name":"CBS_IMPLICITDISABLED","features":[355]},{"name":"CBS_IMPLICITHOT","features":[355]},{"name":"CBS_IMPLICITNORMAL","features":[355]},{"name":"CBS_IMPLICITPRESSED","features":[355]},{"name":"CBS_MIXEDDISABLED","features":[355]},{"name":"CBS_MIXEDHOT","features":[355]},{"name":"CBS_MIXEDNORMAL","features":[355]},{"name":"CBS_MIXEDPRESSED","features":[355]},{"name":"CBS_NORMAL","features":[355]},{"name":"CBS_PUSHED","features":[355]},{"name":"CBS_UNCHECKEDDISABLED","features":[355]},{"name":"CBS_UNCHECKEDHOT","features":[355]},{"name":"CBS_UNCHECKEDNORMAL","features":[355]},{"name":"CBS_UNCHECKEDPRESSED","features":[355]},{"name":"CBTBS_DISABLED","features":[355]},{"name":"CBTBS_FOCUSED","features":[355]},{"name":"CBTBS_HOT","features":[355]},{"name":"CBTBS_NORMAL","features":[355]},{"name":"CBXSL_DISABLED","features":[355]},{"name":"CBXSL_HOT","features":[355]},{"name":"CBXSL_NORMAL","features":[355]},{"name":"CBXSL_PRESSED","features":[355]},{"name":"CBXSR_DISABLED","features":[355]},{"name":"CBXSR_HOT","features":[355]},{"name":"CBXSR_NORMAL","features":[355]},{"name":"CBXSR_PRESSED","features":[355]},{"name":"CBXS_DISABLED","features":[355]},{"name":"CBXS_HOT","features":[355]},{"name":"CBXS_NORMAL","features":[355]},{"name":"CBXS_PRESSED","features":[355]},{"name":"CB_GETCUEBANNER","features":[355]},{"name":"CB_GETMINVISIBLE","features":[355]},{"name":"CB_SETCUEBANNER","features":[355]},{"name":"CB_SETMINVISIBLE","features":[355]},{"name":"CCF_NOTEXT","features":[355]},{"name":"CCHCCCLASS","features":[355]},{"name":"CCHCCDESC","features":[355]},{"name":"CCHCCTEXT","features":[355]},{"name":"CCINFOA","features":[305,316,355]},{"name":"CCINFOW","features":[305,316,355]},{"name":"CCM_DPISCALE","features":[355]},{"name":"CCM_FIRST","features":[355]},{"name":"CCM_GETCOLORSCHEME","features":[355]},{"name":"CCM_GETDROPTARGET","features":[355]},{"name":"CCM_GETUNICODEFORMAT","features":[355]},{"name":"CCM_GETVERSION","features":[355]},{"name":"CCM_LAST","features":[355]},{"name":"CCM_SETBKCOLOR","features":[355]},{"name":"CCM_SETCOLORSCHEME","features":[355]},{"name":"CCM_SETNOTIFYWINDOW","features":[355]},{"name":"CCM_SETUNICODEFORMAT","features":[355]},{"name":"CCM_SETVERSION","features":[355]},{"name":"CCM_SETWINDOWTHEME","features":[355]},{"name":"CCSTYLEA","features":[355]},{"name":"CCSTYLEFLAGA","features":[355]},{"name":"CCSTYLEFLAGW","features":[355]},{"name":"CCSTYLEW","features":[355]},{"name":"CCS_ADJUSTABLE","features":[355]},{"name":"CCS_BOTTOM","features":[355]},{"name":"CCS_NODIVIDER","features":[355]},{"name":"CCS_NOMOVEY","features":[355]},{"name":"CCS_NOPARENTALIGN","features":[355]},{"name":"CCS_NORESIZE","features":[355]},{"name":"CCS_TOP","features":[355]},{"name":"CCS_VERT","features":[355]},{"name":"CDDS_ITEM","features":[355]},{"name":"CDDS_ITEMPOSTERASE","features":[355]},{"name":"CDDS_ITEMPOSTPAINT","features":[355]},{"name":"CDDS_ITEMPREERASE","features":[355]},{"name":"CDDS_ITEMPREPAINT","features":[355]},{"name":"CDDS_POSTERASE","features":[355]},{"name":"CDDS_POSTPAINT","features":[355]},{"name":"CDDS_PREERASE","features":[355]},{"name":"CDDS_PREPAINT","features":[355]},{"name":"CDDS_SUBITEM","features":[355]},{"name":"CDIS_CHECKED","features":[355]},{"name":"CDIS_DEFAULT","features":[355]},{"name":"CDIS_DISABLED","features":[355]},{"name":"CDIS_DROPHILITED","features":[355]},{"name":"CDIS_FOCUS","features":[355]},{"name":"CDIS_GRAYED","features":[355]},{"name":"CDIS_HOT","features":[355]},{"name":"CDIS_INDETERMINATE","features":[355]},{"name":"CDIS_MARKED","features":[355]},{"name":"CDIS_NEARHOT","features":[355]},{"name":"CDIS_OTHERSIDEHOT","features":[355]},{"name":"CDIS_SELECTED","features":[355]},{"name":"CDIS_SHOWKEYBOARDCUES","features":[355]},{"name":"CDN_FIRST","features":[355]},{"name":"CDN_LAST","features":[355]},{"name":"CDRF_DODEFAULT","features":[355]},{"name":"CDRF_DOERASE","features":[355]},{"name":"CDRF_NEWFONT","features":[355]},{"name":"CDRF_NOTIFYITEMDRAW","features":[355]},{"name":"CDRF_NOTIFYPOSTERASE","features":[355]},{"name":"CDRF_NOTIFYPOSTPAINT","features":[355]},{"name":"CDRF_NOTIFYSUBITEMDRAW","features":[355]},{"name":"CDRF_SKIPDEFAULT","features":[355]},{"name":"CDRF_SKIPPOSTPAINT","features":[355]},{"name":"CHECKBOXSTATES","features":[355]},{"name":"CHEVRONSTATES","features":[355]},{"name":"CHEVRONVERTSTATES","features":[355]},{"name":"CHEVSV_HOT","features":[355]},{"name":"CHEVSV_NORMAL","features":[355]},{"name":"CHEVSV_PRESSED","features":[355]},{"name":"CHEVS_HOT","features":[355]},{"name":"CHEVS_NORMAL","features":[355]},{"name":"CHEVS_PRESSED","features":[355]},{"name":"CLOCKPARTS","features":[355]},{"name":"CLOCKSTATES","features":[355]},{"name":"CLOSEBUTTONSTATES","features":[355]},{"name":"CLOSESTATES","features":[355]},{"name":"CLP_TIME","features":[355]},{"name":"CLR_DEFAULT","features":[355]},{"name":"CLR_HILIGHT","features":[355]},{"name":"CLR_NONE","features":[355]},{"name":"CLS_HOT","features":[355]},{"name":"CLS_NORMAL","features":[355]},{"name":"CLS_PRESSED","features":[355]},{"name":"CMB_MASKED","features":[355]},{"name":"CMDLGS_DEFAULTED","features":[355]},{"name":"CMDLGS_DISABLED","features":[355]},{"name":"CMDLGS_HOT","features":[355]},{"name":"CMDLGS_NORMAL","features":[355]},{"name":"CMDLGS_PRESSED","features":[355]},{"name":"CMDLS_DEFAULTED","features":[355]},{"name":"CMDLS_DEFAULTED_ANIMATING","features":[355]},{"name":"CMDLS_DISABLED","features":[355]},{"name":"CMDLS_HOT","features":[355]},{"name":"CMDLS_NORMAL","features":[355]},{"name":"CMDLS_PRESSED","features":[355]},{"name":"COLLAPSEBUTTONSTATES","features":[355]},{"name":"COLORMAP","features":[305,355]},{"name":"COLORMGMTDLGORD","features":[355]},{"name":"COLORSCHEME","features":[305,355]},{"name":"COMBOBOXEXITEMA","features":[305,355]},{"name":"COMBOBOXEXITEMW","features":[305,355]},{"name":"COMBOBOXINFO","features":[305,355]},{"name":"COMBOBOXINFO_BUTTON_STATE","features":[355]},{"name":"COMBOBOXPARTS","features":[355]},{"name":"COMBOBOXSTYLESTATES","features":[355]},{"name":"COMBOBOX_EX_ITEM_FLAGS","features":[355]},{"name":"COMCTL32_VERSION","features":[355]},{"name":"COMMANDLINKGLYPHSTATES","features":[355]},{"name":"COMMANDLINKSTATES","features":[355]},{"name":"COMMUNICATIONSPARTS","features":[355]},{"name":"COMPAREITEMSTRUCT","features":[305,355]},{"name":"CONTENTALIGNMENT","features":[355]},{"name":"CONTENTAREASTATES","features":[355]},{"name":"CONTENTLINKSTATES","features":[355]},{"name":"CONTENTPANESTATES","features":[355]},{"name":"CONTROLLABELSTATES","features":[355]},{"name":"CONTROLPANELPARTS","features":[355]},{"name":"COPYSTATES","features":[355]},{"name":"CPANEL_BANNERAREA","features":[355]},{"name":"CPANEL_BODYTEXT","features":[355]},{"name":"CPANEL_BODYTITLE","features":[355]},{"name":"CPANEL_BUTTON","features":[355]},{"name":"CPANEL_CONTENTLINK","features":[355]},{"name":"CPANEL_CONTENTPANE","features":[355]},{"name":"CPANEL_CONTENTPANELABEL","features":[355]},{"name":"CPANEL_CONTENTPANELINE","features":[355]},{"name":"CPANEL_GROUPTEXT","features":[355]},{"name":"CPANEL_HELPLINK","features":[355]},{"name":"CPANEL_LARGECOMMANDAREA","features":[355]},{"name":"CPANEL_MESSAGETEXT","features":[355]},{"name":"CPANEL_NAVIGATIONPANE","features":[355]},{"name":"CPANEL_NAVIGATIONPANELABEL","features":[355]},{"name":"CPANEL_NAVIGATIONPANELINE","features":[355]},{"name":"CPANEL_SECTIONTITLELINK","features":[355]},{"name":"CPANEL_SMALLCOMMANDAREA","features":[355]},{"name":"CPANEL_TASKLINK","features":[355]},{"name":"CPANEL_TITLE","features":[355]},{"name":"CPCL_DISABLED","features":[355]},{"name":"CPCL_HOT","features":[355]},{"name":"CPCL_NORMAL","features":[355]},{"name":"CPCL_PRESSED","features":[355]},{"name":"CPHL_DISABLED","features":[355]},{"name":"CPHL_HOT","features":[355]},{"name":"CPHL_NORMAL","features":[355]},{"name":"CPHL_PRESSED","features":[355]},{"name":"CPSTL_HOT","features":[355]},{"name":"CPSTL_NORMAL","features":[355]},{"name":"CPTL_DISABLED","features":[355]},{"name":"CPTL_HOT","features":[355]},{"name":"CPTL_NORMAL","features":[355]},{"name":"CPTL_PAGE","features":[355]},{"name":"CPTL_PRESSED","features":[355]},{"name":"CP_BACKGROUND","features":[355]},{"name":"CP_BORDER","features":[355]},{"name":"CP_CUEBANNER","features":[355]},{"name":"CP_DROPDOWNBUTTON","features":[355]},{"name":"CP_DROPDOWNBUTTONLEFT","features":[355]},{"name":"CP_DROPDOWNBUTTONRIGHT","features":[355]},{"name":"CP_DROPDOWNITEM","features":[355]},{"name":"CP_READONLY","features":[355]},{"name":"CP_TRANSPARENTBACKGROUND","features":[355]},{"name":"CREATELINKSTATES","features":[355]},{"name":"CSST_TAB","features":[355]},{"name":"CSTB_HOT","features":[355]},{"name":"CSTB_NORMAL","features":[355]},{"name":"CSTB_SELECTED","features":[355]},{"name":"CS_ACTIVE","features":[355]},{"name":"CS_DISABLED","features":[355]},{"name":"CS_INACTIVE","features":[355]},{"name":"CUEBANNERSTATES","features":[355]},{"name":"CheckDlgButton","features":[305,355]},{"name":"CheckRadioButton","features":[305,355]},{"name":"CloseThemeData","features":[355]},{"name":"CreateMappedBitmap","features":[305,316,355]},{"name":"CreatePropertySheetPageA","features":[305,316,355,367]},{"name":"CreatePropertySheetPageW","features":[305,316,355,367]},{"name":"CreateStatusWindowA","features":[305,355]},{"name":"CreateStatusWindowW","features":[305,355]},{"name":"CreateSyntheticPointerDevice","features":[355,367]},{"name":"CreateToolbarEx","features":[305,355]},{"name":"CreateUpDownControl","features":[305,355]},{"name":"DATEBORDERSTATES","features":[355]},{"name":"DATEPICKERPARTS","features":[355]},{"name":"DATETEXTSTATES","features":[355]},{"name":"DATETIMEPICKERINFO","features":[305,355]},{"name":"DATETIMEPICK_CLASS","features":[355]},{"name":"DATETIMEPICK_CLASSA","features":[355]},{"name":"DATETIMEPICK_CLASSW","features":[355]},{"name":"DA_ERR","features":[355]},{"name":"DA_LAST","features":[355]},{"name":"DDCOPY_HIGHLIGHT","features":[355]},{"name":"DDCOPY_NOHIGHLIGHT","features":[355]},{"name":"DDCREATELINK_HIGHLIGHT","features":[355]},{"name":"DDCREATELINK_NOHIGHLIGHT","features":[355]},{"name":"DDL_ARCHIVE","features":[355]},{"name":"DDL_DIRECTORY","features":[355]},{"name":"DDL_DRIVES","features":[355]},{"name":"DDL_EXCLUSIVE","features":[355]},{"name":"DDL_HIDDEN","features":[355]},{"name":"DDL_POSTMSGS","features":[355]},{"name":"DDL_READONLY","features":[355]},{"name":"DDL_READWRITE","features":[355]},{"name":"DDL_SYSTEM","features":[355]},{"name":"DDMOVE_HIGHLIGHT","features":[355]},{"name":"DDMOVE_NOHIGHLIGHT","features":[355]},{"name":"DDNONE_HIGHLIGHT","features":[355]},{"name":"DDNONE_NOHIGHLIGHT","features":[355]},{"name":"DDUPDATEMETADATA_HIGHLIGHT","features":[355]},{"name":"DDUPDATEMETADATA_NOHIGHLIGHT","features":[355]},{"name":"DDWARNING_HIGHLIGHT","features":[355]},{"name":"DDWARNING_NOHIGHLIGHT","features":[355]},{"name":"DD_COPY","features":[355]},{"name":"DD_CREATELINK","features":[355]},{"name":"DD_IMAGEBG","features":[355]},{"name":"DD_MOVE","features":[355]},{"name":"DD_NONE","features":[355]},{"name":"DD_TEXTBG","features":[355]},{"name":"DD_UPDATEMETADATA","features":[355]},{"name":"DD_WARNING","features":[355]},{"name":"DELETEITEMSTRUCT","features":[305,355]},{"name":"DLG_BUTTON_CHECK_STATE","features":[355]},{"name":"DLG_DIR_LIST_FILE_TYPE","features":[355]},{"name":"DL_BEGINDRAG","features":[355]},{"name":"DL_CANCELDRAG","features":[355]},{"name":"DL_COPYCURSOR","features":[355]},{"name":"DL_CURSORSET","features":[355]},{"name":"DL_DRAGGING","features":[355]},{"name":"DL_DROPPED","features":[355]},{"name":"DL_MOVECURSOR","features":[355]},{"name":"DL_STOPCURSOR","features":[355]},{"name":"DNHZS_DISABLED","features":[355]},{"name":"DNHZS_HOT","features":[355]},{"name":"DNHZS_NORMAL","features":[355]},{"name":"DNHZS_PRESSED","features":[355]},{"name":"DNS_DISABLED","features":[355]},{"name":"DNS_HOT","features":[355]},{"name":"DNS_NORMAL","features":[355]},{"name":"DNS_PRESSED","features":[355]},{"name":"DOWNHORZSTATES","features":[355]},{"name":"DOWNSTATES","features":[355]},{"name":"DPAMM_DELETE","features":[355]},{"name":"DPAMM_INSERT","features":[355]},{"name":"DPAMM_MERGE","features":[355]},{"name":"DPAMM_MESSAGE","features":[355]},{"name":"DPAM_INTERSECT","features":[355]},{"name":"DPAM_NORMAL","features":[355]},{"name":"DPAM_SORTED","features":[355]},{"name":"DPAM_UNION","features":[355]},{"name":"DPASTREAMINFO","features":[355]},{"name":"DPAS_INSERTAFTER","features":[355]},{"name":"DPAS_INSERTBEFORE","features":[355]},{"name":"DPAS_SORTED","features":[355]},{"name":"DPA_APPEND","features":[355]},{"name":"DPA_Clone","features":[355]},{"name":"DPA_Create","features":[355]},{"name":"DPA_CreateEx","features":[305,355]},{"name":"DPA_DeleteAllPtrs","features":[305,355]},{"name":"DPA_DeletePtr","features":[355]},{"name":"DPA_Destroy","features":[305,355]},{"name":"DPA_DestroyCallback","features":[355]},{"name":"DPA_ERR","features":[355]},{"name":"DPA_EnumCallback","features":[355]},{"name":"DPA_GetPtr","features":[355]},{"name":"DPA_GetPtrIndex","features":[355]},{"name":"DPA_GetSize","features":[355]},{"name":"DPA_Grow","features":[305,355]},{"name":"DPA_InsertPtr","features":[355]},{"name":"DPA_LoadStream","features":[356,355]},{"name":"DPA_Merge","features":[305,355]},{"name":"DPA_SaveStream","features":[356,355]},{"name":"DPA_Search","features":[305,355]},{"name":"DPA_SetPtr","features":[305,355]},{"name":"DPA_Sort","features":[305,355]},{"name":"DPDB_DISABLED","features":[355]},{"name":"DPDB_FOCUSED","features":[355]},{"name":"DPDB_HOT","features":[355]},{"name":"DPDB_NORMAL","features":[355]},{"name":"DPDT_DISABLED","features":[355]},{"name":"DPDT_NORMAL","features":[355]},{"name":"DPDT_SELECTED","features":[355]},{"name":"DPSCBR_DISABLED","features":[355]},{"name":"DPSCBR_HOT","features":[355]},{"name":"DPSCBR_NORMAL","features":[355]},{"name":"DPSCBR_PRESSED","features":[355]},{"name":"DP_DATEBORDER","features":[355]},{"name":"DP_DATETEXT","features":[355]},{"name":"DP_SHOWCALENDARBUTTONRIGHT","features":[355]},{"name":"DRAGDROPPARTS","features":[355]},{"name":"DRAGLISTINFO","features":[305,355]},{"name":"DRAGLISTINFO_NOTIFICATION_FLAGS","features":[355]},{"name":"DRAGLISTMSGSTRING","features":[355]},{"name":"DRAWITEMSTRUCT","features":[305,316,355]},{"name":"DRAWITEMSTRUCT_CTL_TYPE","features":[355]},{"name":"DRAW_THEME_PARENT_BACKGROUND_FLAGS","features":[355]},{"name":"DROPDOWNBUTTONLEFTSTATES","features":[355]},{"name":"DROPDOWNBUTTONRIGHTSTATES","features":[355]},{"name":"DROPDOWNITEMSTATES","features":[355]},{"name":"DSA_APPEND","features":[355]},{"name":"DSA_Clone","features":[355]},{"name":"DSA_Create","features":[355]},{"name":"DSA_DeleteAllItems","features":[305,355]},{"name":"DSA_DeleteItem","features":[305,355]},{"name":"DSA_Destroy","features":[305,355]},{"name":"DSA_DestroyCallback","features":[355]},{"name":"DSA_ERR","features":[355]},{"name":"DSA_EnumCallback","features":[355]},{"name":"DSA_GetItem","features":[305,355]},{"name":"DSA_GetItemPtr","features":[355]},{"name":"DSA_GetSize","features":[355]},{"name":"DSA_InsertItem","features":[355]},{"name":"DSA_SetItem","features":[305,355]},{"name":"DSA_Sort","features":[305,355]},{"name":"DTBGOPTS","features":[305,355]},{"name":"DTBG_CLIPRECT","features":[355]},{"name":"DTBG_COMPUTINGREGION","features":[355]},{"name":"DTBG_DRAWSOLID","features":[355]},{"name":"DTBG_MIRRORDC","features":[355]},{"name":"DTBG_NOMIRROR","features":[355]},{"name":"DTBG_OMITBORDER","features":[355]},{"name":"DTBG_OMITCONTENT","features":[355]},{"name":"DTM_CLOSEMONTHCAL","features":[355]},{"name":"DTM_FIRST","features":[355]},{"name":"DTM_GETDATETIMEPICKERINFO","features":[355]},{"name":"DTM_GETIDEALSIZE","features":[355]},{"name":"DTM_GETMCCOLOR","features":[355]},{"name":"DTM_GETMCFONT","features":[355]},{"name":"DTM_GETMCSTYLE","features":[355]},{"name":"DTM_GETMONTHCAL","features":[355]},{"name":"DTM_GETRANGE","features":[355]},{"name":"DTM_GETSYSTEMTIME","features":[355]},{"name":"DTM_SETFORMAT","features":[355]},{"name":"DTM_SETFORMATA","features":[355]},{"name":"DTM_SETFORMATW","features":[355]},{"name":"DTM_SETMCCOLOR","features":[355]},{"name":"DTM_SETMCFONT","features":[355]},{"name":"DTM_SETMCSTYLE","features":[355]},{"name":"DTM_SETRANGE","features":[355]},{"name":"DTM_SETSYSTEMTIME","features":[355]},{"name":"DTN_CLOSEUP","features":[355]},{"name":"DTN_DATETIMECHANGE","features":[355]},{"name":"DTN_DROPDOWN","features":[355]},{"name":"DTN_FIRST","features":[355]},{"name":"DTN_FIRST2","features":[355]},{"name":"DTN_FORMAT","features":[355]},{"name":"DTN_FORMATA","features":[355]},{"name":"DTN_FORMATQUERY","features":[355]},{"name":"DTN_FORMATQUERYA","features":[355]},{"name":"DTN_FORMATQUERYW","features":[355]},{"name":"DTN_FORMATW","features":[355]},{"name":"DTN_LAST","features":[355]},{"name":"DTN_LAST2","features":[355]},{"name":"DTN_USERSTRING","features":[355]},{"name":"DTN_USERSTRINGA","features":[355]},{"name":"DTN_USERSTRINGW","features":[355]},{"name":"DTN_WMKEYDOWN","features":[355]},{"name":"DTN_WMKEYDOWNA","features":[355]},{"name":"DTN_WMKEYDOWNW","features":[355]},{"name":"DTPB_USECTLCOLORSTATIC","features":[355]},{"name":"DTPB_USEERASEBKGND","features":[355]},{"name":"DTPB_WINDOWDC","features":[355]},{"name":"DTS_APPCANPARSE","features":[355]},{"name":"DTS_LONGDATEFORMAT","features":[355]},{"name":"DTS_RIGHTALIGN","features":[355]},{"name":"DTS_SHORTDATECENTURYFORMAT","features":[355]},{"name":"DTS_SHORTDATEFORMAT","features":[355]},{"name":"DTS_SHOWNONE","features":[355]},{"name":"DTS_TIMEFORMAT","features":[355]},{"name":"DTS_UPDOWN","features":[355]},{"name":"DTTOPTS","features":[305,316,355]},{"name":"DTTOPTS_FLAGS","features":[355]},{"name":"DTT_APPLYOVERLAY","features":[355]},{"name":"DTT_BORDERCOLOR","features":[355]},{"name":"DTT_BORDERSIZE","features":[355]},{"name":"DTT_CALCRECT","features":[355]},{"name":"DTT_CALLBACK","features":[355]},{"name":"DTT_CALLBACK_PROC","features":[305,316,355]},{"name":"DTT_COLORPROP","features":[355]},{"name":"DTT_COMPOSITED","features":[355]},{"name":"DTT_FLAGS2VALIDBITS","features":[355]},{"name":"DTT_FONTPROP","features":[355]},{"name":"DTT_GLOWSIZE","features":[355]},{"name":"DTT_GRAYED","features":[355]},{"name":"DTT_SHADOWCOLOR","features":[355]},{"name":"DTT_SHADOWOFFSET","features":[355]},{"name":"DTT_SHADOWTYPE","features":[355]},{"name":"DTT_STATEID","features":[355]},{"name":"DTT_TEXTCOLOR","features":[355]},{"name":"DTT_VALIDBITS","features":[355]},{"name":"DestroyPropertySheetPage","features":[305,355]},{"name":"DestroySyntheticPointerDevice","features":[355]},{"name":"DlgDirListA","features":[305,355]},{"name":"DlgDirListComboBoxA","features":[305,355]},{"name":"DlgDirListComboBoxW","features":[305,355]},{"name":"DlgDirListW","features":[305,355]},{"name":"DlgDirSelectComboBoxExA","features":[305,355]},{"name":"DlgDirSelectComboBoxExW","features":[305,355]},{"name":"DlgDirSelectExA","features":[305,355]},{"name":"DlgDirSelectExW","features":[305,355]},{"name":"DrawInsert","features":[305,355]},{"name":"DrawShadowText","features":[305,316,355]},{"name":"DrawStatusTextA","features":[305,316,355]},{"name":"DrawStatusTextW","features":[305,316,355]},{"name":"DrawThemeBackground","features":[305,316,355]},{"name":"DrawThemeBackgroundEx","features":[305,316,355]},{"name":"DrawThemeEdge","features":[305,316,355]},{"name":"DrawThemeIcon","features":[305,316,355]},{"name":"DrawThemeParentBackground","features":[305,316,355]},{"name":"DrawThemeParentBackgroundEx","features":[305,316,355]},{"name":"DrawThemeText","features":[305,316,355]},{"name":"DrawThemeTextEx","features":[305,316,355]},{"name":"EBHC_HOT","features":[355]},{"name":"EBHC_NORMAL","features":[355]},{"name":"EBHC_PRESSED","features":[355]},{"name":"EBHP_HOT","features":[355]},{"name":"EBHP_NORMAL","features":[355]},{"name":"EBHP_PRESSED","features":[355]},{"name":"EBHP_SELECTEDHOT","features":[355]},{"name":"EBHP_SELECTEDNORMAL","features":[355]},{"name":"EBHP_SELECTEDPRESSED","features":[355]},{"name":"EBM_HOT","features":[355]},{"name":"EBM_NORMAL","features":[355]},{"name":"EBM_PRESSED","features":[355]},{"name":"EBNGC_HOT","features":[355]},{"name":"EBNGC_NORMAL","features":[355]},{"name":"EBNGC_PRESSED","features":[355]},{"name":"EBNGE_HOT","features":[355]},{"name":"EBNGE_NORMAL","features":[355]},{"name":"EBNGE_PRESSED","features":[355]},{"name":"EBP_HEADERBACKGROUND","features":[355]},{"name":"EBP_HEADERCLOSE","features":[355]},{"name":"EBP_HEADERPIN","features":[355]},{"name":"EBP_IEBARMENU","features":[355]},{"name":"EBP_NORMALGROUPBACKGROUND","features":[355]},{"name":"EBP_NORMALGROUPCOLLAPSE","features":[355]},{"name":"EBP_NORMALGROUPEXPAND","features":[355]},{"name":"EBP_NORMALGROUPHEAD","features":[355]},{"name":"EBP_SPECIALGROUPBACKGROUND","features":[355]},{"name":"EBP_SPECIALGROUPCOLLAPSE","features":[355]},{"name":"EBP_SPECIALGROUPEXPAND","features":[355]},{"name":"EBP_SPECIALGROUPHEAD","features":[355]},{"name":"EBSGC_HOT","features":[355]},{"name":"EBSGC_NORMAL","features":[355]},{"name":"EBSGC_PRESSED","features":[355]},{"name":"EBSGE_HOT","features":[355]},{"name":"EBSGE_NORMAL","features":[355]},{"name":"EBSGE_PRESSED","features":[355]},{"name":"EBS_ASSIST","features":[355]},{"name":"EBS_DISABLED","features":[355]},{"name":"EBS_FOCUSED","features":[355]},{"name":"EBS_HOT","features":[355]},{"name":"EBS_NORMAL","features":[355]},{"name":"EBS_READONLY","features":[355]},{"name":"EBWBS_DISABLED","features":[355]},{"name":"EBWBS_FOCUSED","features":[355]},{"name":"EBWBS_HOT","features":[355]},{"name":"EBWBS_NORMAL","features":[355]},{"name":"ECM_FIRST","features":[355]},{"name":"EC_ENDOFLINE","features":[355]},{"name":"EC_ENDOFLINE_CR","features":[355]},{"name":"EC_ENDOFLINE_CRLF","features":[355]},{"name":"EC_ENDOFLINE_DETECTFROMCONTENT","features":[355]},{"name":"EC_ENDOFLINE_LF","features":[355]},{"name":"EC_SEARCHWEB_ENTRYPOINT","features":[355]},{"name":"EC_SEARCHWEB_ENTRYPOINT_CONTEXTMENU","features":[355]},{"name":"EC_SEARCHWEB_ENTRYPOINT_EXTERNAL","features":[355]},{"name":"EDITBALLOONTIP","features":[355]},{"name":"EDITBALLOONTIP_ICON","features":[355]},{"name":"EDITBORDER_HSCROLLSTATES","features":[355]},{"name":"EDITBORDER_HVSCROLLSTATES","features":[355]},{"name":"EDITBORDER_NOSCROLLSTATES","features":[355]},{"name":"EDITBORDER_VSCROLLSTATES","features":[355]},{"name":"EDITPARTS","features":[355]},{"name":"EDITTEXTSTATES","features":[355]},{"name":"EDITWORDBREAKPROCA","features":[355]},{"name":"EDITWORDBREAKPROCW","features":[355]},{"name":"EMF_CENTERED","features":[355]},{"name":"EMPTYMARKUPPARTS","features":[355]},{"name":"EMP_MARKUPTEXT","features":[355]},{"name":"EMT_LINKTEXT","features":[355]},{"name":"EMT_NORMALTEXT","features":[355]},{"name":"EM_CANUNDO","features":[355]},{"name":"EM_CHARFROMPOS","features":[355]},{"name":"EM_EMPTYUNDOBUFFER","features":[355]},{"name":"EM_ENABLEFEATURE","features":[355]},{"name":"EM_ENABLESEARCHWEB","features":[355]},{"name":"EM_FILELINEFROMCHAR","features":[355]},{"name":"EM_FILELINEINDEX","features":[355]},{"name":"EM_FILELINELENGTH","features":[355]},{"name":"EM_FMTLINES","features":[355]},{"name":"EM_GETCARETINDEX","features":[355]},{"name":"EM_GETCUEBANNER","features":[355]},{"name":"EM_GETENDOFLINE","features":[355]},{"name":"EM_GETEXTENDEDSTYLE","features":[355]},{"name":"EM_GETFILELINE","features":[355]},{"name":"EM_GETFILELINECOUNT","features":[355]},{"name":"EM_GETFIRSTVISIBLELINE","features":[355]},{"name":"EM_GETHANDLE","features":[355]},{"name":"EM_GETHILITE","features":[355]},{"name":"EM_GETIMESTATUS","features":[355]},{"name":"EM_GETLIMITTEXT","features":[355]},{"name":"EM_GETLINE","features":[355]},{"name":"EM_GETLINECOUNT","features":[355]},{"name":"EM_GETMARGINS","features":[355]},{"name":"EM_GETMODIFY","features":[355]},{"name":"EM_GETPASSWORDCHAR","features":[355]},{"name":"EM_GETRECT","features":[355]},{"name":"EM_GETSEL","features":[355]},{"name":"EM_GETTHUMB","features":[355]},{"name":"EM_GETWORDBREAKPROC","features":[355]},{"name":"EM_HIDEBALLOONTIP","features":[355]},{"name":"EM_LIMITTEXT","features":[355]},{"name":"EM_LINEFROMCHAR","features":[355]},{"name":"EM_LINEINDEX","features":[355]},{"name":"EM_LINELENGTH","features":[355]},{"name":"EM_LINESCROLL","features":[355]},{"name":"EM_NOSETFOCUS","features":[355]},{"name":"EM_POSFROMCHAR","features":[355]},{"name":"EM_REPLACESEL","features":[355]},{"name":"EM_SCROLL","features":[355]},{"name":"EM_SCROLLCARET","features":[355]},{"name":"EM_SEARCHWEB","features":[355]},{"name":"EM_SETCARETINDEX","features":[355]},{"name":"EM_SETCUEBANNER","features":[355]},{"name":"EM_SETENDOFLINE","features":[355]},{"name":"EM_SETEXTENDEDSTYLE","features":[355]},{"name":"EM_SETHANDLE","features":[355]},{"name":"EM_SETHILITE","features":[355]},{"name":"EM_SETIMESTATUS","features":[355]},{"name":"EM_SETLIMITTEXT","features":[355]},{"name":"EM_SETMARGINS","features":[355]},{"name":"EM_SETMODIFY","features":[355]},{"name":"EM_SETPASSWORDCHAR","features":[355]},{"name":"EM_SETREADONLY","features":[355]},{"name":"EM_SETRECT","features":[355]},{"name":"EM_SETRECTNP","features":[355]},{"name":"EM_SETSEL","features":[355]},{"name":"EM_SETTABSTOPS","features":[355]},{"name":"EM_SETWORDBREAKPROC","features":[355]},{"name":"EM_SHOWBALLOONTIP","features":[355]},{"name":"EM_TAKEFOCUS","features":[355]},{"name":"EM_UNDO","features":[355]},{"name":"ENABLE_SCROLL_BAR_ARROWS","features":[355]},{"name":"EN_FIRST","features":[355]},{"name":"EN_LAST","features":[355]},{"name":"EN_SEARCHWEB","features":[355]},{"name":"EPSHV_DISABLED","features":[355]},{"name":"EPSHV_FOCUSED","features":[355]},{"name":"EPSHV_HOT","features":[355]},{"name":"EPSHV_NORMAL","features":[355]},{"name":"EPSH_DISABLED","features":[355]},{"name":"EPSH_FOCUSED","features":[355]},{"name":"EPSH_HOT","features":[355]},{"name":"EPSH_NORMAL","features":[355]},{"name":"EPSN_DISABLED","features":[355]},{"name":"EPSN_FOCUSED","features":[355]},{"name":"EPSN_HOT","features":[355]},{"name":"EPSN_NORMAL","features":[355]},{"name":"EPSV_DISABLED","features":[355]},{"name":"EPSV_FOCUSED","features":[355]},{"name":"EPSV_HOT","features":[355]},{"name":"EPSV_NORMAL","features":[355]},{"name":"EP_BACKGROUND","features":[355]},{"name":"EP_BACKGROUNDWITHBORDER","features":[355]},{"name":"EP_CARET","features":[355]},{"name":"EP_EDITBORDER_HSCROLL","features":[355]},{"name":"EP_EDITBORDER_HVSCROLL","features":[355]},{"name":"EP_EDITBORDER_NOSCROLL","features":[355]},{"name":"EP_EDITBORDER_VSCROLL","features":[355]},{"name":"EP_EDITTEXT","features":[355]},{"name":"EP_PASSWORD","features":[355]},{"name":"ESB_DISABLE_BOTH","features":[355]},{"name":"ESB_DISABLE_DOWN","features":[355]},{"name":"ESB_DISABLE_LEFT","features":[355]},{"name":"ESB_DISABLE_LTUP","features":[355]},{"name":"ESB_DISABLE_RIGHT","features":[355]},{"name":"ESB_DISABLE_RTDN","features":[355]},{"name":"ESB_DISABLE_UP","features":[355]},{"name":"ESB_ENABLE_BOTH","features":[355]},{"name":"ES_EX_ALLOWEOL_CR","features":[355]},{"name":"ES_EX_ALLOWEOL_LF","features":[355]},{"name":"ES_EX_CONVERT_EOL_ON_PASTE","features":[355]},{"name":"ES_EX_ZOOMABLE","features":[355]},{"name":"ETDT_DISABLE","features":[355]},{"name":"ETDT_ENABLE","features":[355]},{"name":"ETDT_USEAEROWIZARDTABTEXTURE","features":[355]},{"name":"ETDT_USETABTEXTURE","features":[355]},{"name":"ETS_ASSIST","features":[355]},{"name":"ETS_CUEBANNER","features":[355]},{"name":"ETS_DISABLED","features":[355]},{"name":"ETS_FOCUSED","features":[355]},{"name":"ETS_HOT","features":[355]},{"name":"ETS_NORMAL","features":[355]},{"name":"ETS_READONLY","features":[355]},{"name":"ETS_SELECTED","features":[355]},{"name":"EXPANDBUTTONSTATES","features":[355]},{"name":"EXPANDOBUTTONSTATES","features":[355]},{"name":"EXPLORERBARPARTS","features":[355]},{"name":"EnableScrollBar","features":[305,355]},{"name":"EnableThemeDialogTexture","features":[305,355]},{"name":"EnableTheming","features":[305,355]},{"name":"EndBufferedAnimation","features":[305,355]},{"name":"EndBufferedPaint","features":[305,355]},{"name":"EndPanningFeedback","features":[305,355]},{"name":"EvaluateProximityToPolygon","features":[305,355]},{"name":"EvaluateProximityToRect","features":[305,355]},{"name":"FBS_EMPHASIZED","features":[355]},{"name":"FBS_NORMAL","features":[355]},{"name":"FEEDBACK_GESTURE_PRESSANDTAP","features":[355]},{"name":"FEEDBACK_MAX","features":[355]},{"name":"FEEDBACK_PEN_BARRELVISUALIZATION","features":[355]},{"name":"FEEDBACK_PEN_DOUBLETAP","features":[355]},{"name":"FEEDBACK_PEN_PRESSANDHOLD","features":[355]},{"name":"FEEDBACK_PEN_RIGHTTAP","features":[355]},{"name":"FEEDBACK_PEN_TAP","features":[355]},{"name":"FEEDBACK_TOUCH_CONTACTVISUALIZATION","features":[355]},{"name":"FEEDBACK_TOUCH_DOUBLETAP","features":[355]},{"name":"FEEDBACK_TOUCH_PRESSANDHOLD","features":[355]},{"name":"FEEDBACK_TOUCH_RIGHTTAP","features":[355]},{"name":"FEEDBACK_TOUCH_TAP","features":[355]},{"name":"FEEDBACK_TYPE","features":[355]},{"name":"FILEOPENORD","features":[355]},{"name":"FILLSTATES","features":[355]},{"name":"FILLTYPE","features":[355]},{"name":"FILLVERTSTATES","features":[355]},{"name":"FINDDLGORD","features":[355]},{"name":"FLH_HOVER","features":[355]},{"name":"FLH_NORMAL","features":[355]},{"name":"FLS_DISABLED","features":[355]},{"name":"FLS_EMPHASIZED","features":[355]},{"name":"FLS_NORMAL","features":[355]},{"name":"FLS_SELECTED","features":[355]},{"name":"FLYOUTLINK_HOVER","features":[355]},{"name":"FLYOUTLINK_NORMAL","features":[355]},{"name":"FLYOUTPARTS","features":[355]},{"name":"FLYOUT_BODY","features":[355]},{"name":"FLYOUT_DIVIDER","features":[355]},{"name":"FLYOUT_HEADER","features":[355]},{"name":"FLYOUT_LABEL","features":[355]},{"name":"FLYOUT_LINK","features":[355]},{"name":"FLYOUT_LINKAREA","features":[355]},{"name":"FLYOUT_LINKHEADER","features":[355]},{"name":"FLYOUT_WINDOW","features":[355]},{"name":"FONTDLGORD","features":[355]},{"name":"FORMATDLGORD30","features":[355]},{"name":"FORMATDLGORD31","features":[355]},{"name":"FRAMEBOTTOMSTATES","features":[355]},{"name":"FRAMELEFTSTATES","features":[355]},{"name":"FRAMERIGHTSTATES","features":[355]},{"name":"FRAMESTATES","features":[355]},{"name":"FRB_ACTIVE","features":[355]},{"name":"FRB_INACTIVE","features":[355]},{"name":"FRL_ACTIVE","features":[355]},{"name":"FRL_INACTIVE","features":[355]},{"name":"FRR_ACTIVE","features":[355]},{"name":"FRR_INACTIVE","features":[355]},{"name":"FSB_ENCARTA_MODE","features":[355]},{"name":"FSB_FLAT_MODE","features":[355]},{"name":"FSB_REGULAR_MODE","features":[355]},{"name":"FS_ACTIVE","features":[355]},{"name":"FS_INACTIVE","features":[355]},{"name":"FT_HORZGRADIENT","features":[355]},{"name":"FT_RADIALGRADIENT","features":[355]},{"name":"FT_SOLID","features":[355]},{"name":"FT_TILEIMAGE","features":[355]},{"name":"FT_VERTGRADIENT","features":[355]},{"name":"FlatSB_EnableScrollBar","features":[305,355]},{"name":"FlatSB_GetScrollInfo","features":[305,355,367]},{"name":"FlatSB_GetScrollPos","features":[305,355,367]},{"name":"FlatSB_GetScrollProp","features":[305,355]},{"name":"FlatSB_GetScrollRange","features":[305,355,367]},{"name":"FlatSB_SetScrollInfo","features":[305,355,367]},{"name":"FlatSB_SetScrollPos","features":[305,355,367]},{"name":"FlatSB_SetScrollProp","features":[305,355]},{"name":"FlatSB_SetScrollRange","features":[305,355,367]},{"name":"FlatSB_ShowScrollBar","features":[305,355,367]},{"name":"GBF_COPY","features":[355]},{"name":"GBF_DIRECT","features":[355]},{"name":"GBF_VALIDBITS","features":[355]},{"name":"GBS_DISABLED","features":[355]},{"name":"GBS_NORMAL","features":[355]},{"name":"GDTR_MAX","features":[355]},{"name":"GDTR_MIN","features":[355]},{"name":"GDT_ERROR","features":[355]},{"name":"GDT_NONE","features":[355]},{"name":"GDT_VALID","features":[355]},{"name":"GET_THEME_BITMAP_FLAGS","features":[355]},{"name":"GFST_DPI","features":[355]},{"name":"GFST_NONE","features":[355]},{"name":"GFST_SIZE","features":[355]},{"name":"GLPS_CLOSED","features":[355]},{"name":"GLPS_OPENED","features":[355]},{"name":"GLYPHFONTSIZINGTYPE","features":[355]},{"name":"GLYPHSTATES","features":[355]},{"name":"GLYPHTYPE","features":[355]},{"name":"GMR_DAYSTATE","features":[355]},{"name":"GMR_VISIBLE","features":[355]},{"name":"GRIDCELLBACKGROUNDSTATES","features":[355]},{"name":"GRIDCELLSTATES","features":[355]},{"name":"GRIDCELLUPPERSTATES","features":[355]},{"name":"GRIPPERSTATES","features":[355]},{"name":"GROUPBOXSTATES","features":[355]},{"name":"GROUPHEADERLINESTATES","features":[355]},{"name":"GROUPHEADERSTATES","features":[355]},{"name":"GT_FONTGLYPH","features":[355]},{"name":"GT_IMAGEGLYPH","features":[355]},{"name":"GT_NONE","features":[355]},{"name":"GetBufferedPaintBits","features":[316,355]},{"name":"GetBufferedPaintDC","features":[316,355]},{"name":"GetBufferedPaintTargetDC","features":[316,355]},{"name":"GetBufferedPaintTargetRect","features":[305,355]},{"name":"GetComboBoxInfo","features":[305,355]},{"name":"GetCurrentThemeName","features":[355]},{"name":"GetEffectiveClientRect","features":[305,355]},{"name":"GetListBoxInfo","features":[305,355]},{"name":"GetMUILanguage","features":[355]},{"name":"GetThemeAnimationProperty","features":[355]},{"name":"GetThemeAnimationTransform","features":[355]},{"name":"GetThemeAppProperties","features":[355]},{"name":"GetThemeBackgroundContentRect","features":[305,316,355]},{"name":"GetThemeBackgroundExtent","features":[305,316,355]},{"name":"GetThemeBackgroundRegion","features":[305,316,355]},{"name":"GetThemeBitmap","features":[316,355]},{"name":"GetThemeBool","features":[305,355]},{"name":"GetThemeColor","features":[305,355]},{"name":"GetThemeDocumentationProperty","features":[355]},{"name":"GetThemeEnumValue","features":[355]},{"name":"GetThemeFilename","features":[355]},{"name":"GetThemeFont","features":[316,355]},{"name":"GetThemeInt","features":[355]},{"name":"GetThemeIntList","features":[355]},{"name":"GetThemeMargins","features":[305,316,355]},{"name":"GetThemeMetric","features":[316,355]},{"name":"GetThemePartSize","features":[305,316,355]},{"name":"GetThemePosition","features":[305,355]},{"name":"GetThemePropertyOrigin","features":[355]},{"name":"GetThemeRect","features":[305,355]},{"name":"GetThemeStream","features":[305,355]},{"name":"GetThemeString","features":[355]},{"name":"GetThemeSysBool","features":[305,355]},{"name":"GetThemeSysColor","features":[305,355]},{"name":"GetThemeSysColorBrush","features":[316,355]},{"name":"GetThemeSysFont","features":[316,355]},{"name":"GetThemeSysInt","features":[355]},{"name":"GetThemeSysSize","features":[355]},{"name":"GetThemeSysString","features":[355]},{"name":"GetThemeTextExtent","features":[305,316,355]},{"name":"GetThemeTextMetrics","features":[316,355]},{"name":"GetThemeTimingFunction","features":[355]},{"name":"GetThemeTransitionDuration","features":[355]},{"name":"GetWindowFeedbackSetting","features":[305,355]},{"name":"GetWindowTheme","features":[305,355]},{"name":"HALIGN","features":[355]},{"name":"HA_CENTER","features":[355]},{"name":"HA_LEFT","features":[355]},{"name":"HA_RIGHT","features":[355]},{"name":"HBG_DETAILS","features":[355]},{"name":"HBG_ICON","features":[355]},{"name":"HBS_DISABLED","features":[355]},{"name":"HBS_HOT","features":[355]},{"name":"HBS_NORMAL","features":[355]},{"name":"HBS_PUSHED","features":[355]},{"name":"HDDFS_HOT","features":[355]},{"name":"HDDFS_NORMAL","features":[355]},{"name":"HDDFS_SOFTHOT","features":[355]},{"name":"HDDS_HOT","features":[355]},{"name":"HDDS_NORMAL","features":[355]},{"name":"HDDS_SOFTHOT","features":[355]},{"name":"HDFT_HASNOVALUE","features":[355]},{"name":"HDFT_ISDATE","features":[355]},{"name":"HDFT_ISNUMBER","features":[355]},{"name":"HDFT_ISSTRING","features":[355]},{"name":"HDF_BITMAP","features":[355]},{"name":"HDF_BITMAP_ON_RIGHT","features":[355]},{"name":"HDF_CENTER","features":[355]},{"name":"HDF_CHECKBOX","features":[355]},{"name":"HDF_CHECKED","features":[355]},{"name":"HDF_FIXEDWIDTH","features":[355]},{"name":"HDF_IMAGE","features":[355]},{"name":"HDF_JUSTIFYMASK","features":[355]},{"name":"HDF_LEFT","features":[355]},{"name":"HDF_OWNERDRAW","features":[355]},{"name":"HDF_RIGHT","features":[355]},{"name":"HDF_RTLREADING","features":[355]},{"name":"HDF_SORTDOWN","features":[355]},{"name":"HDF_SORTUP","features":[355]},{"name":"HDF_SPLITBUTTON","features":[355]},{"name":"HDF_STRING","features":[355]},{"name":"HDHITTESTINFO","features":[305,355]},{"name":"HDIS_FOCUSED","features":[355]},{"name":"HDITEMA","features":[305,316,355]},{"name":"HDITEMW","features":[305,316,355]},{"name":"HDI_BITMAP","features":[355]},{"name":"HDI_DI_SETITEM","features":[355]},{"name":"HDI_FILTER","features":[355]},{"name":"HDI_FORMAT","features":[355]},{"name":"HDI_HEIGHT","features":[355]},{"name":"HDI_IMAGE","features":[355]},{"name":"HDI_LPARAM","features":[355]},{"name":"HDI_MASK","features":[355]},{"name":"HDI_ORDER","features":[355]},{"name":"HDI_STATE","features":[355]},{"name":"HDI_TEXT","features":[355]},{"name":"HDI_WIDTH","features":[355]},{"name":"HDLAYOUT","features":[305,355,367]},{"name":"HDM_CLEARFILTER","features":[355]},{"name":"HDM_CREATEDRAGIMAGE","features":[355]},{"name":"HDM_DELETEITEM","features":[355]},{"name":"HDM_EDITFILTER","features":[355]},{"name":"HDM_FIRST","features":[355]},{"name":"HDM_GETBITMAPMARGIN","features":[355]},{"name":"HDM_GETFOCUSEDITEM","features":[355]},{"name":"HDM_GETIMAGELIST","features":[355]},{"name":"HDM_GETITEM","features":[355]},{"name":"HDM_GETITEMA","features":[355]},{"name":"HDM_GETITEMCOUNT","features":[355]},{"name":"HDM_GETITEMDROPDOWNRECT","features":[355]},{"name":"HDM_GETITEMRECT","features":[355]},{"name":"HDM_GETITEMW","features":[355]},{"name":"HDM_GETORDERARRAY","features":[355]},{"name":"HDM_GETOVERFLOWRECT","features":[355]},{"name":"HDM_GETUNICODEFORMAT","features":[355]},{"name":"HDM_HITTEST","features":[355]},{"name":"HDM_INSERTITEM","features":[355]},{"name":"HDM_INSERTITEMA","features":[355]},{"name":"HDM_INSERTITEMW","features":[355]},{"name":"HDM_LAYOUT","features":[355]},{"name":"HDM_ORDERTOINDEX","features":[355]},{"name":"HDM_SETBITMAPMARGIN","features":[355]},{"name":"HDM_SETFILTERCHANGETIMEOUT","features":[355]},{"name":"HDM_SETFOCUSEDITEM","features":[355]},{"name":"HDM_SETHOTDIVIDER","features":[355]},{"name":"HDM_SETIMAGELIST","features":[355]},{"name":"HDM_SETITEM","features":[355]},{"name":"HDM_SETITEMA","features":[355]},{"name":"HDM_SETITEMW","features":[355]},{"name":"HDM_SETORDERARRAY","features":[355]},{"name":"HDM_SETUNICODEFORMAT","features":[355]},{"name":"HDN_BEGINDRAG","features":[355]},{"name":"HDN_BEGINFILTEREDIT","features":[355]},{"name":"HDN_BEGINTRACK","features":[355]},{"name":"HDN_BEGINTRACKA","features":[355]},{"name":"HDN_BEGINTRACKW","features":[355]},{"name":"HDN_DIVIDERDBLCLICK","features":[355]},{"name":"HDN_DIVIDERDBLCLICKA","features":[355]},{"name":"HDN_DIVIDERDBLCLICKW","features":[355]},{"name":"HDN_DROPDOWN","features":[355]},{"name":"HDN_ENDDRAG","features":[355]},{"name":"HDN_ENDFILTEREDIT","features":[355]},{"name":"HDN_ENDTRACK","features":[355]},{"name":"HDN_ENDTRACKA","features":[355]},{"name":"HDN_ENDTRACKW","features":[355]},{"name":"HDN_FILTERBTNCLICK","features":[355]},{"name":"HDN_FILTERCHANGE","features":[355]},{"name":"HDN_FIRST","features":[355]},{"name":"HDN_GETDISPINFO","features":[355]},{"name":"HDN_GETDISPINFOA","features":[355]},{"name":"HDN_GETDISPINFOW","features":[355]},{"name":"HDN_ITEMCHANGED","features":[355]},{"name":"HDN_ITEMCHANGEDA","features":[355]},{"name":"HDN_ITEMCHANGEDW","features":[355]},{"name":"HDN_ITEMCHANGING","features":[355]},{"name":"HDN_ITEMCHANGINGA","features":[355]},{"name":"HDN_ITEMCHANGINGW","features":[355]},{"name":"HDN_ITEMCLICK","features":[355]},{"name":"HDN_ITEMCLICKA","features":[355]},{"name":"HDN_ITEMCLICKW","features":[355]},{"name":"HDN_ITEMDBLCLICK","features":[355]},{"name":"HDN_ITEMDBLCLICKA","features":[355]},{"name":"HDN_ITEMDBLCLICKW","features":[355]},{"name":"HDN_ITEMKEYDOWN","features":[355]},{"name":"HDN_ITEMSTATEICONCLICK","features":[355]},{"name":"HDN_LAST","features":[355]},{"name":"HDN_OVERFLOWCLICK","features":[355]},{"name":"HDN_TRACK","features":[355]},{"name":"HDN_TRACKA","features":[355]},{"name":"HDN_TRACKW","features":[355]},{"name":"HDPA","features":[355]},{"name":"HDSA","features":[355]},{"name":"HDSIL_NORMAL","features":[355]},{"name":"HDSIL_STATE","features":[355]},{"name":"HDS_BUTTONS","features":[355]},{"name":"HDS_CHECKBOXES","features":[355]},{"name":"HDS_DRAGDROP","features":[355]},{"name":"HDS_FILTERBAR","features":[355]},{"name":"HDS_FLAT","features":[355]},{"name":"HDS_FULLDRAG","features":[355]},{"name":"HDS_HIDDEN","features":[355]},{"name":"HDS_HORZ","features":[355]},{"name":"HDS_HOTTRACK","features":[355]},{"name":"HDS_NOSIZING","features":[355]},{"name":"HDS_OVERFLOW","features":[355]},{"name":"HD_TEXTFILTERA","features":[355]},{"name":"HD_TEXTFILTERW","features":[355]},{"name":"HEADERAREASTATES","features":[355]},{"name":"HEADERCLOSESTATES","features":[355]},{"name":"HEADERDROPDOWNFILTERSTATES","features":[355]},{"name":"HEADERDROPDOWNSTATES","features":[355]},{"name":"HEADERITEMLEFTSTATES","features":[355]},{"name":"HEADERITEMRIGHTSTATES","features":[355]},{"name":"HEADERITEMSTATES","features":[355]},{"name":"HEADEROVERFLOWSTATES","features":[355]},{"name":"HEADERPARTS","features":[355]},{"name":"HEADERPINSTATES","features":[355]},{"name":"HEADERSORTARROWSTATES","features":[355]},{"name":"HEADERSTYLESTATES","features":[355]},{"name":"HEADER_CONTROL_FORMAT_FLAGS","features":[355]},{"name":"HEADER_CONTROL_FORMAT_STATE","features":[355]},{"name":"HEADER_CONTROL_FORMAT_TYPE","features":[355]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON","features":[355]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_LEFT","features":[355]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_MIDDLE","features":[355]},{"name":"HEADER_CONTROL_NOTIFICATION_BUTTON_RIGHT","features":[355]},{"name":"HEADER_HITTEST_INFO_FLAGS","features":[355]},{"name":"HELPBUTTONSTATES","features":[355]},{"name":"HELPLINKSTATES","features":[355]},{"name":"HGLPS_CLOSED","features":[355]},{"name":"HGLPS_OPENED","features":[355]},{"name":"HHT_ABOVE","features":[355]},{"name":"HHT_BELOW","features":[355]},{"name":"HHT_NOWHERE","features":[355]},{"name":"HHT_ONDIVIDER","features":[355]},{"name":"HHT_ONDIVOPEN","features":[355]},{"name":"HHT_ONDROPDOWN","features":[355]},{"name":"HHT_ONFILTER","features":[355]},{"name":"HHT_ONFILTERBUTTON","features":[355]},{"name":"HHT_ONHEADER","features":[355]},{"name":"HHT_ONITEMSTATEICON","features":[355]},{"name":"HHT_ONOVERFLOW","features":[355]},{"name":"HHT_TOLEFT","features":[355]},{"name":"HHT_TORIGHT","features":[355]},{"name":"HICF_ACCELERATOR","features":[355]},{"name":"HICF_ARROWKEYS","features":[355]},{"name":"HICF_DUPACCEL","features":[355]},{"name":"HICF_ENTERING","features":[355]},{"name":"HICF_LEAVING","features":[355]},{"name":"HICF_LMOUSE","features":[355]},{"name":"HICF_MOUSE","features":[355]},{"name":"HICF_OTHER","features":[355]},{"name":"HICF_RESELECT","features":[355]},{"name":"HICF_TOGGLEDROPDOWN","features":[355]},{"name":"HILS_HOT","features":[355]},{"name":"HILS_NORMAL","features":[355]},{"name":"HILS_PRESSED","features":[355]},{"name":"HIMAGELIST","features":[355]},{"name":"HIMAGELIST_QueryInterface","features":[355]},{"name":"HIRS_HOT","features":[355]},{"name":"HIRS_NORMAL","features":[355]},{"name":"HIRS_PRESSED","features":[355]},{"name":"HIST_ADDTOFAVORITES","features":[355]},{"name":"HIST_BACK","features":[355]},{"name":"HIST_FAVORITES","features":[355]},{"name":"HIST_FORWARD","features":[355]},{"name":"HIST_VIEWTREE","features":[355]},{"name":"HIS_HOT","features":[355]},{"name":"HIS_ICONHOT","features":[355]},{"name":"HIS_ICONNORMAL","features":[355]},{"name":"HIS_ICONPRESSED","features":[355]},{"name":"HIS_ICONSORTEDHOT","features":[355]},{"name":"HIS_ICONSORTEDNORMAL","features":[355]},{"name":"HIS_ICONSORTEDPRESSED","features":[355]},{"name":"HIS_NORMAL","features":[355]},{"name":"HIS_PRESSED","features":[355]},{"name":"HIS_SORTEDHOT","features":[355]},{"name":"HIS_SORTEDNORMAL","features":[355]},{"name":"HIS_SORTEDPRESSED","features":[355]},{"name":"HIT_TEST_BACKGROUND_OPTIONS","features":[355]},{"name":"HKCOMB_A","features":[355]},{"name":"HKCOMB_C","features":[355]},{"name":"HKCOMB_CA","features":[355]},{"name":"HKCOMB_NONE","features":[355]},{"name":"HKCOMB_S","features":[355]},{"name":"HKCOMB_SA","features":[355]},{"name":"HKCOMB_SC","features":[355]},{"name":"HKCOMB_SCA","features":[355]},{"name":"HKM_GETHOTKEY","features":[355]},{"name":"HKM_SETHOTKEY","features":[355]},{"name":"HKM_SETRULES","features":[355]},{"name":"HLS_LINKTEXT","features":[355]},{"name":"HLS_NORMALTEXT","features":[355]},{"name":"HOFS_HOT","features":[355]},{"name":"HOFS_NORMAL","features":[355]},{"name":"HORZSCROLLSTATES","features":[355]},{"name":"HORZTHUMBSTATES","features":[355]},{"name":"HOTGLYPHSTATES","features":[355]},{"name":"HOTKEYF_ALT","features":[355]},{"name":"HOTKEYF_CONTROL","features":[355]},{"name":"HOTKEYF_EXT","features":[355]},{"name":"HOTKEYF_SHIFT","features":[355]},{"name":"HOTKEY_CLASS","features":[355]},{"name":"HOTKEY_CLASSA","features":[355]},{"name":"HOTKEY_CLASSW","features":[355]},{"name":"HOVERBACKGROUNDSTATES","features":[355]},{"name":"HOVER_DEFAULT","features":[355]},{"name":"HPROPSHEETPAGE","features":[355]},{"name":"HP_HEADERDROPDOWN","features":[355]},{"name":"HP_HEADERDROPDOWNFILTER","features":[355]},{"name":"HP_HEADERITEM","features":[355]},{"name":"HP_HEADERITEMLEFT","features":[355]},{"name":"HP_HEADERITEMRIGHT","features":[355]},{"name":"HP_HEADEROVERFLOW","features":[355]},{"name":"HP_HEADERSORTARROW","features":[355]},{"name":"HSAS_SORTEDDOWN","features":[355]},{"name":"HSAS_SORTEDUP","features":[355]},{"name":"HSS_DISABLED","features":[355]},{"name":"HSS_HOT","features":[355]},{"name":"HSS_NORMAL","features":[355]},{"name":"HSS_PUSHED","features":[355]},{"name":"HSYNTHETICPOINTERDEVICE","features":[355]},{"name":"HTHEME","features":[355]},{"name":"HTREEITEM","features":[355]},{"name":"HTS_DISABLED","features":[355]},{"name":"HTS_HOT","features":[355]},{"name":"HTS_NORMAL","features":[355]},{"name":"HTS_PUSHED","features":[355]},{"name":"HTTB_BACKGROUNDSEG","features":[355]},{"name":"HTTB_CAPTION","features":[355]},{"name":"HTTB_FIXEDBORDER","features":[355]},{"name":"HTTB_RESIZINGBORDER","features":[355]},{"name":"HTTB_RESIZINGBORDER_BOTTOM","features":[355]},{"name":"HTTB_RESIZINGBORDER_LEFT","features":[355]},{"name":"HTTB_RESIZINGBORDER_RIGHT","features":[355]},{"name":"HTTB_RESIZINGBORDER_TOP","features":[355]},{"name":"HTTB_SIZINGTEMPLATE","features":[355]},{"name":"HTTB_SYSTEMSIZINGMARGINS","features":[355]},{"name":"HYPERLINKSTATES","features":[355]},{"name":"HYPERLINKTEXTSTATES","features":[355]},{"name":"HitTestThemeBackground","features":[305,316,355]},{"name":"ICC_ANIMATE_CLASS","features":[355]},{"name":"ICC_BAR_CLASSES","features":[355]},{"name":"ICC_COOL_CLASSES","features":[355]},{"name":"ICC_DATE_CLASSES","features":[355]},{"name":"ICC_HOTKEY_CLASS","features":[355]},{"name":"ICC_INTERNET_CLASSES","features":[355]},{"name":"ICC_LINK_CLASS","features":[355]},{"name":"ICC_LISTVIEW_CLASSES","features":[355]},{"name":"ICC_NATIVEFNTCTL_CLASS","features":[355]},{"name":"ICC_PAGESCROLLER_CLASS","features":[355]},{"name":"ICC_PROGRESS_CLASS","features":[355]},{"name":"ICC_STANDARD_CLASSES","features":[355]},{"name":"ICC_TAB_CLASSES","features":[355]},{"name":"ICC_TREEVIEW_CLASSES","features":[355]},{"name":"ICC_UPDOWN_CLASS","features":[355]},{"name":"ICC_USEREX_CLASSES","features":[355]},{"name":"ICC_WIN95_CLASSES","features":[355]},{"name":"ICE_ALPHA","features":[355]},{"name":"ICE_GLOW","features":[355]},{"name":"ICE_NONE","features":[355]},{"name":"ICE_PULSE","features":[355]},{"name":"ICE_SHADOW","features":[355]},{"name":"ICONEFFECT","features":[355]},{"name":"IDB_HIST_DISABLED","features":[355]},{"name":"IDB_HIST_HOT","features":[355]},{"name":"IDB_HIST_LARGE_COLOR","features":[355]},{"name":"IDB_HIST_NORMAL","features":[355]},{"name":"IDB_HIST_PRESSED","features":[355]},{"name":"IDB_HIST_SMALL_COLOR","features":[355]},{"name":"IDB_STD_LARGE_COLOR","features":[355]},{"name":"IDB_STD_SMALL_COLOR","features":[355]},{"name":"IDB_VIEW_LARGE_COLOR","features":[355]},{"name":"IDB_VIEW_SMALL_COLOR","features":[355]},{"name":"IDC_MANAGE_LINK","features":[355]},{"name":"ID_PSRESTARTWINDOWS","features":[355]},{"name":"IEBARMENUSTATES","features":[355]},{"name":"IImageList","features":[355]},{"name":"IImageList2","features":[355]},{"name":"ILCF_MOVE","features":[355]},{"name":"ILCF_SWAP","features":[355]},{"name":"ILC_COLOR","features":[355]},{"name":"ILC_COLOR16","features":[355]},{"name":"ILC_COLOR24","features":[355]},{"name":"ILC_COLOR32","features":[355]},{"name":"ILC_COLOR4","features":[355]},{"name":"ILC_COLOR8","features":[355]},{"name":"ILC_COLORDDB","features":[355]},{"name":"ILC_HIGHQUALITYSCALE","features":[355]},{"name":"ILC_MASK","features":[355]},{"name":"ILC_MIRROR","features":[355]},{"name":"ILC_ORIGINALSIZE","features":[355]},{"name":"ILC_PALETTE","features":[355]},{"name":"ILC_PERITEMMIRROR","features":[355]},{"name":"ILDI_PURGE","features":[355]},{"name":"ILDI_QUERYACCESS","features":[355]},{"name":"ILDI_RESETACCESS","features":[355]},{"name":"ILDI_STANDBY","features":[355]},{"name":"ILDRF_IMAGELOWQUALITY","features":[355]},{"name":"ILDRF_OVERLAYLOWQUALITY","features":[355]},{"name":"ILD_ASYNC","features":[355]},{"name":"ILD_BLEND","features":[355]},{"name":"ILD_BLEND25","features":[355]},{"name":"ILD_BLEND50","features":[355]},{"name":"ILD_DPISCALE","features":[355]},{"name":"ILD_FOCUS","features":[355]},{"name":"ILD_IMAGE","features":[355]},{"name":"ILD_MASK","features":[355]},{"name":"ILD_NORMAL","features":[355]},{"name":"ILD_OVERLAYMASK","features":[355]},{"name":"ILD_PRESERVEALPHA","features":[355]},{"name":"ILD_ROP","features":[355]},{"name":"ILD_SCALE","features":[355]},{"name":"ILD_SELECTED","features":[355]},{"name":"ILD_TRANSPARENT","features":[355]},{"name":"ILFIP_ALWAYS","features":[355]},{"name":"ILFIP_FROMSTANDBY","features":[355]},{"name":"ILGOS_ALWAYS","features":[355]},{"name":"ILGOS_FROMSTANDBY","features":[355]},{"name":"ILGT_ASYNC","features":[355]},{"name":"ILGT_NORMAL","features":[355]},{"name":"ILIF_ALPHA","features":[355]},{"name":"ILIF_LOWQUALITY","features":[355]},{"name":"ILP_DOWNLEVEL","features":[355]},{"name":"ILP_NORMAL","features":[355]},{"name":"ILR_DEFAULT","features":[355]},{"name":"ILR_HORIZONTAL_CENTER","features":[355]},{"name":"ILR_HORIZONTAL_LEFT","features":[355]},{"name":"ILR_HORIZONTAL_RIGHT","features":[355]},{"name":"ILR_SCALE_ASPECTRATIO","features":[355]},{"name":"ILR_SCALE_CLIP","features":[355]},{"name":"ILR_VERTICAL_BOTTOM","features":[355]},{"name":"ILR_VERTICAL_CENTER","features":[355]},{"name":"ILR_VERTICAL_TOP","features":[355]},{"name":"ILS_ALPHA","features":[355]},{"name":"ILS_GLOW","features":[355]},{"name":"ILS_NORMAL","features":[355]},{"name":"ILS_SATURATE","features":[355]},{"name":"ILS_SHADOW","features":[355]},{"name":"IL_HORIZONTAL","features":[355]},{"name":"IL_VERTICAL","features":[355]},{"name":"IMAGEINFO","features":[305,316,355]},{"name":"IMAGELAYOUT","features":[355]},{"name":"IMAGELISTDRAWPARAMS","features":[305,316,355]},{"name":"IMAGELISTSTATS","features":[355]},{"name":"IMAGELIST_CREATION_FLAGS","features":[355]},{"name":"IMAGESELECTTYPE","features":[355]},{"name":"IMAGE_LIST_COPY_FLAGS","features":[355]},{"name":"IMAGE_LIST_DRAW_STYLE","features":[355]},{"name":"IMAGE_LIST_ITEM_FLAGS","features":[355]},{"name":"IMAGE_LIST_WRITE_STREAM_FLAGS","features":[355]},{"name":"INFOTIPSIZE","features":[355]},{"name":"INITCOMMONCONTROLSEX","features":[355]},{"name":"INITCOMMONCONTROLSEX_ICC","features":[355]},{"name":"INTLIST","features":[355]},{"name":"INVALID_LINK_INDEX","features":[355]},{"name":"IPM_CLEARADDRESS","features":[355]},{"name":"IPM_GETADDRESS","features":[355]},{"name":"IPM_ISBLANK","features":[355]},{"name":"IPM_SETADDRESS","features":[355]},{"name":"IPM_SETFOCUS","features":[355]},{"name":"IPM_SETRANGE","features":[355]},{"name":"IPN_FIELDCHANGED","features":[355]},{"name":"IPN_FIRST","features":[355]},{"name":"IPN_LAST","features":[355]},{"name":"IST_DPI","features":[355]},{"name":"IST_NONE","features":[355]},{"name":"IST_SIZE","features":[355]},{"name":"ITEMSTATES","features":[355]},{"name":"I_CHILDRENAUTO","features":[355]},{"name":"I_CHILDRENCALLBACK","features":[355]},{"name":"I_GROUPIDCALLBACK","features":[355]},{"name":"I_GROUPIDNONE","features":[355]},{"name":"I_IMAGECALLBACK","features":[355]},{"name":"I_IMAGENONE","features":[355]},{"name":"I_INDENTCALLBACK","features":[355]},{"name":"I_ONE_OR_MORE","features":[355]},{"name":"I_ZERO","features":[355]},{"name":"ImageList","features":[355]},{"name":"ImageList_Add","features":[316,355]},{"name":"ImageList_AddMasked","features":[305,316,355]},{"name":"ImageList_BeginDrag","features":[305,355]},{"name":"ImageList_CoCreateInstance","features":[355]},{"name":"ImageList_Copy","features":[305,355]},{"name":"ImageList_Create","features":[355]},{"name":"ImageList_Destroy","features":[305,355]},{"name":"ImageList_DragEnter","features":[305,355]},{"name":"ImageList_DragLeave","features":[305,355]},{"name":"ImageList_DragMove","features":[305,355]},{"name":"ImageList_DragShowNolock","features":[305,355]},{"name":"ImageList_Draw","features":[305,316,355]},{"name":"ImageList_DrawEx","features":[305,316,355]},{"name":"ImageList_DrawIndirect","features":[305,316,355]},{"name":"ImageList_Duplicate","features":[355]},{"name":"ImageList_EndDrag","features":[355]},{"name":"ImageList_GetBkColor","features":[305,355]},{"name":"ImageList_GetDragImage","features":[305,355]},{"name":"ImageList_GetIcon","features":[355,367]},{"name":"ImageList_GetIconSize","features":[305,355]},{"name":"ImageList_GetImageCount","features":[355]},{"name":"ImageList_GetImageInfo","features":[305,316,355]},{"name":"ImageList_LoadImageA","features":[305,355,367]},{"name":"ImageList_LoadImageW","features":[305,355,367]},{"name":"ImageList_Merge","features":[355]},{"name":"ImageList_Read","features":[356,355]},{"name":"ImageList_ReadEx","features":[356,355]},{"name":"ImageList_Remove","features":[305,355]},{"name":"ImageList_Replace","features":[305,316,355]},{"name":"ImageList_ReplaceIcon","features":[355,367]},{"name":"ImageList_SetBkColor","features":[305,355]},{"name":"ImageList_SetDragCursorImage","features":[305,355]},{"name":"ImageList_SetIconSize","features":[305,355]},{"name":"ImageList_SetImageCount","features":[305,355]},{"name":"ImageList_SetOverlayImage","features":[305,355]},{"name":"ImageList_Write","features":[305,356,355]},{"name":"ImageList_WriteEx","features":[356,355]},{"name":"InitCommonControls","features":[355]},{"name":"InitCommonControlsEx","features":[305,355]},{"name":"InitMUILanguage","features":[355]},{"name":"InitializeFlatSB","features":[305,355]},{"name":"IsAppThemed","features":[305,355]},{"name":"IsCharLowerW","features":[305,355]},{"name":"IsCompositionActive","features":[305,355]},{"name":"IsDlgButtonChecked","features":[305,355]},{"name":"IsThemeActive","features":[305,355]},{"name":"IsThemeBackgroundPartiallyTransparent","features":[305,355]},{"name":"IsThemeDialogTextureEnabled","features":[305,355]},{"name":"IsThemePartDefined","features":[305,355]},{"name":"LABELSTATES","features":[355]},{"name":"LBCP_BORDER_HSCROLL","features":[355]},{"name":"LBCP_BORDER_HVSCROLL","features":[355]},{"name":"LBCP_BORDER_NOSCROLL","features":[355]},{"name":"LBCP_BORDER_VSCROLL","features":[355]},{"name":"LBCP_ITEM","features":[355]},{"name":"LBItemFromPt","features":[305,355]},{"name":"LBPSHV_DISABLED","features":[355]},{"name":"LBPSHV_FOCUSED","features":[355]},{"name":"LBPSHV_HOT","features":[355]},{"name":"LBPSHV_NORMAL","features":[355]},{"name":"LBPSH_DISABLED","features":[355]},{"name":"LBPSH_FOCUSED","features":[355]},{"name":"LBPSH_HOT","features":[355]},{"name":"LBPSH_NORMAL","features":[355]},{"name":"LBPSI_HOT","features":[355]},{"name":"LBPSI_HOTSELECTED","features":[355]},{"name":"LBPSI_SELECTED","features":[355]},{"name":"LBPSI_SELECTEDNOTFOCUS","features":[355]},{"name":"LBPSN_DISABLED","features":[355]},{"name":"LBPSN_FOCUSED","features":[355]},{"name":"LBPSN_HOT","features":[355]},{"name":"LBPSN_NORMAL","features":[355]},{"name":"LBPSV_DISABLED","features":[355]},{"name":"LBPSV_FOCUSED","features":[355]},{"name":"LBPSV_HOT","features":[355]},{"name":"LBPSV_NORMAL","features":[355]},{"name":"LHITTESTINFO","features":[305,355]},{"name":"LIF_ITEMID","features":[355]},{"name":"LIF_ITEMINDEX","features":[355]},{"name":"LIF_STATE","features":[355]},{"name":"LIF_URL","features":[355]},{"name":"LIM_LARGE","features":[355]},{"name":"LIM_SMALL","features":[355]},{"name":"LINKHEADERSTATES","features":[355]},{"name":"LINKPARTS","features":[355]},{"name":"LINKSTATES","features":[355]},{"name":"LISS_DISABLED","features":[355]},{"name":"LISS_HOT","features":[355]},{"name":"LISS_HOTSELECTED","features":[355]},{"name":"LISS_NORMAL","features":[355]},{"name":"LISS_SELECTED","features":[355]},{"name":"LISS_SELECTEDNOTFOCUS","features":[355]},{"name":"LISTBOXPARTS","features":[355]},{"name":"LISTITEMSTATES","features":[355]},{"name":"LISTVIEWPARTS","features":[355]},{"name":"LIST_ITEM_FLAGS","features":[355]},{"name":"LIST_ITEM_STATE_FLAGS","features":[355]},{"name":"LIST_VIEW_BACKGROUND_IMAGE_FLAGS","features":[355]},{"name":"LIST_VIEW_GROUP_ALIGN_FLAGS","features":[355]},{"name":"LIST_VIEW_GROUP_STATE_FLAGS","features":[355]},{"name":"LIST_VIEW_ITEM_COLUMN_FORMAT_FLAGS","features":[355]},{"name":"LIST_VIEW_ITEM_FLAGS","features":[355]},{"name":"LIST_VIEW_ITEM_STATE_FLAGS","features":[355]},{"name":"LIS_DEFAULTCOLORS","features":[355]},{"name":"LIS_ENABLED","features":[355]},{"name":"LIS_FOCUSED","features":[355]},{"name":"LIS_HOTTRACK","features":[355]},{"name":"LIS_VISITED","features":[355]},{"name":"LITEM","features":[355]},{"name":"LM_GETIDEALHEIGHT","features":[355]},{"name":"LM_GETIDEALSIZE","features":[355]},{"name":"LM_GETITEM","features":[355]},{"name":"LM_HITTEST","features":[355]},{"name":"LM_SETITEM","features":[355]},{"name":"LOGOFFBUTTONSSTATES","features":[355]},{"name":"LPFNADDPROPSHEETPAGES","features":[305,355]},{"name":"LPFNCCINFOA","features":[305,316,355]},{"name":"LPFNCCINFOW","features":[305,316,355]},{"name":"LPFNCCSIZETOTEXTA","features":[316,355]},{"name":"LPFNCCSIZETOTEXTW","features":[316,355]},{"name":"LPFNCCSTYLEA","features":[305,355]},{"name":"LPFNCCSTYLEW","features":[305,355]},{"name":"LPFNPSPCALLBACKA","features":[305,316,355,367]},{"name":"LPFNPSPCALLBACKW","features":[305,316,355,367]},{"name":"LPFNSVADDPROPSHEETPAGE","features":[305,355]},{"name":"LP_HYPERLINK","features":[355]},{"name":"LVA_ALIGNLEFT","features":[355]},{"name":"LVA_ALIGNTOP","features":[355]},{"name":"LVA_DEFAULT","features":[355]},{"name":"LVA_SNAPTOGRID","features":[355]},{"name":"LVBKIF_FLAG_ALPHABLEND","features":[355]},{"name":"LVBKIF_FLAG_TILEOFFSET","features":[355]},{"name":"LVBKIF_SOURCE_HBITMAP","features":[355]},{"name":"LVBKIF_SOURCE_MASK","features":[355]},{"name":"LVBKIF_SOURCE_NONE","features":[355]},{"name":"LVBKIF_SOURCE_URL","features":[355]},{"name":"LVBKIF_STYLE_MASK","features":[355]},{"name":"LVBKIF_STYLE_NORMAL","features":[355]},{"name":"LVBKIF_STYLE_TILE","features":[355]},{"name":"LVBKIF_TYPE_WATERMARK","features":[355]},{"name":"LVBKIMAGEA","features":[316,355]},{"name":"LVBKIMAGEW","features":[316,355]},{"name":"LVCB_HOVER","features":[355]},{"name":"LVCB_NORMAL","features":[355]},{"name":"LVCB_PUSHED","features":[355]},{"name":"LVCDI_GROUP","features":[355]},{"name":"LVCDI_ITEM","features":[355]},{"name":"LVCDI_ITEMSLIST","features":[355]},{"name":"LVCDRF_NOGROUPFRAME","features":[355]},{"name":"LVCDRF_NOSELECT","features":[355]},{"name":"LVCFMT_BITMAP_ON_RIGHT","features":[355]},{"name":"LVCFMT_CENTER","features":[355]},{"name":"LVCFMT_COL_HAS_IMAGES","features":[355]},{"name":"LVCFMT_FILL","features":[355]},{"name":"LVCFMT_FIXED_RATIO","features":[355]},{"name":"LVCFMT_FIXED_WIDTH","features":[355]},{"name":"LVCFMT_IMAGE","features":[355]},{"name":"LVCFMT_JUSTIFYMASK","features":[355]},{"name":"LVCFMT_LEFT","features":[355]},{"name":"LVCFMT_LINE_BREAK","features":[355]},{"name":"LVCFMT_NO_DPI_SCALE","features":[355]},{"name":"LVCFMT_NO_TITLE","features":[355]},{"name":"LVCFMT_RIGHT","features":[355]},{"name":"LVCFMT_SPLITBUTTON","features":[355]},{"name":"LVCFMT_TILE_PLACEMENTMASK","features":[355]},{"name":"LVCFMT_WRAP","features":[355]},{"name":"LVCF_DEFAULTWIDTH","features":[355]},{"name":"LVCF_FMT","features":[355]},{"name":"LVCF_IDEALWIDTH","features":[355]},{"name":"LVCF_IMAGE","features":[355]},{"name":"LVCF_MINWIDTH","features":[355]},{"name":"LVCF_ORDER","features":[355]},{"name":"LVCF_SUBITEM","features":[355]},{"name":"LVCF_TEXT","features":[355]},{"name":"LVCF_WIDTH","features":[355]},{"name":"LVCOLUMNA","features":[355]},{"name":"LVCOLUMNW","features":[355]},{"name":"LVCOLUMNW_FORMAT","features":[355]},{"name":"LVCOLUMNW_MASK","features":[355]},{"name":"LVEB_HOVER","features":[355]},{"name":"LVEB_NORMAL","features":[355]},{"name":"LVEB_PUSHED","features":[355]},{"name":"LVFF_ITEMCOUNT","features":[355]},{"name":"LVFIF_STATE","features":[355]},{"name":"LVFIF_TEXT","features":[355]},{"name":"LVFINDINFOA","features":[305,355]},{"name":"LVFINDINFOW","features":[305,355]},{"name":"LVFINDINFOW_FLAGS","features":[355]},{"name":"LVFIS_FOCUSED","features":[355]},{"name":"LVFI_NEARESTXY","features":[355]},{"name":"LVFI_PARAM","features":[355]},{"name":"LVFI_PARTIAL","features":[355]},{"name":"LVFI_STRING","features":[355]},{"name":"LVFI_SUBSTRING","features":[355]},{"name":"LVFI_WRAP","features":[355]},{"name":"LVFOOTERINFO","features":[355]},{"name":"LVFOOTERITEM","features":[355]},{"name":"LVFOOTERITEM_MASK","features":[355]},{"name":"LVGA_FOOTER_CENTER","features":[355]},{"name":"LVGA_FOOTER_LEFT","features":[355]},{"name":"LVGA_FOOTER_RIGHT","features":[355]},{"name":"LVGA_HEADER_CENTER","features":[355]},{"name":"LVGA_HEADER_LEFT","features":[355]},{"name":"LVGA_HEADER_RIGHT","features":[355]},{"name":"LVGF_ALIGN","features":[355]},{"name":"LVGF_DESCRIPTIONBOTTOM","features":[355]},{"name":"LVGF_DESCRIPTIONTOP","features":[355]},{"name":"LVGF_EXTENDEDIMAGE","features":[355]},{"name":"LVGF_FOOTER","features":[355]},{"name":"LVGF_GROUPID","features":[355]},{"name":"LVGF_HEADER","features":[355]},{"name":"LVGF_ITEMS","features":[355]},{"name":"LVGF_NONE","features":[355]},{"name":"LVGF_STATE","features":[355]},{"name":"LVGF_SUBSET","features":[355]},{"name":"LVGF_SUBSETITEMS","features":[355]},{"name":"LVGF_SUBTITLE","features":[355]},{"name":"LVGF_TASK","features":[355]},{"name":"LVGF_TITLEIMAGE","features":[355]},{"name":"LVGGR_GROUP","features":[355]},{"name":"LVGGR_HEADER","features":[355]},{"name":"LVGGR_LABEL","features":[355]},{"name":"LVGGR_SUBSETLINK","features":[355]},{"name":"LVGHL_CLOSE","features":[355]},{"name":"LVGHL_CLOSEHOT","features":[355]},{"name":"LVGHL_CLOSEMIXEDSELECTION","features":[355]},{"name":"LVGHL_CLOSEMIXEDSELECTIONHOT","features":[355]},{"name":"LVGHL_CLOSESELECTED","features":[355]},{"name":"LVGHL_CLOSESELECTEDHOT","features":[355]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSED","features":[355]},{"name":"LVGHL_CLOSESELECTEDNOTFOCUSEDHOT","features":[355]},{"name":"LVGHL_OPEN","features":[355]},{"name":"LVGHL_OPENHOT","features":[355]},{"name":"LVGHL_OPENMIXEDSELECTION","features":[355]},{"name":"LVGHL_OPENMIXEDSELECTIONHOT","features":[355]},{"name":"LVGHL_OPENSELECTED","features":[355]},{"name":"LVGHL_OPENSELECTEDHOT","features":[355]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSED","features":[355]},{"name":"LVGHL_OPENSELECTEDNOTFOCUSEDHOT","features":[355]},{"name":"LVGH_CLOSE","features":[355]},{"name":"LVGH_CLOSEHOT","features":[355]},{"name":"LVGH_CLOSEMIXEDSELECTION","features":[355]},{"name":"LVGH_CLOSEMIXEDSELECTIONHOT","features":[355]},{"name":"LVGH_CLOSESELECTED","features":[355]},{"name":"LVGH_CLOSESELECTEDHOT","features":[355]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSED","features":[355]},{"name":"LVGH_CLOSESELECTEDNOTFOCUSEDHOT","features":[355]},{"name":"LVGH_OPEN","features":[355]},{"name":"LVGH_OPENHOT","features":[355]},{"name":"LVGH_OPENMIXEDSELECTION","features":[355]},{"name":"LVGH_OPENMIXEDSELECTIONHOT","features":[355]},{"name":"LVGH_OPENSELECTED","features":[355]},{"name":"LVGH_OPENSELECTEDHOT","features":[355]},{"name":"LVGH_OPENSELECTEDNOTFOCUSED","features":[355]},{"name":"LVGH_OPENSELECTEDNOTFOCUSEDHOT","features":[355]},{"name":"LVGIT_UNFOLDED","features":[355]},{"name":"LVGIT_ZERO","features":[355]},{"name":"LVGMF_BORDERCOLOR","features":[355]},{"name":"LVGMF_BORDERSIZE","features":[355]},{"name":"LVGMF_NONE","features":[355]},{"name":"LVGMF_TEXTCOLOR","features":[355]},{"name":"LVGROUP","features":[355]},{"name":"LVGROUPMETRICS","features":[305,355]},{"name":"LVGROUP_MASK","features":[355]},{"name":"LVGS_COLLAPSED","features":[355]},{"name":"LVGS_COLLAPSIBLE","features":[355]},{"name":"LVGS_FOCUSED","features":[355]},{"name":"LVGS_HIDDEN","features":[355]},{"name":"LVGS_NOHEADER","features":[355]},{"name":"LVGS_NORMAL","features":[355]},{"name":"LVGS_SELECTED","features":[355]},{"name":"LVGS_SUBSETED","features":[355]},{"name":"LVGS_SUBSETLINKFOCUSED","features":[355]},{"name":"LVHITTESTINFO","features":[305,355]},{"name":"LVHITTESTINFO_FLAGS","features":[355]},{"name":"LVHT_ABOVE","features":[355]},{"name":"LVHT_BELOW","features":[355]},{"name":"LVHT_EX_FOOTER","features":[355]},{"name":"LVHT_EX_GROUP","features":[355]},{"name":"LVHT_EX_GROUP_BACKGROUND","features":[355]},{"name":"LVHT_EX_GROUP_COLLAPSE","features":[355]},{"name":"LVHT_EX_GROUP_FOOTER","features":[355]},{"name":"LVHT_EX_GROUP_HEADER","features":[355]},{"name":"LVHT_EX_GROUP_STATEICON","features":[355]},{"name":"LVHT_EX_GROUP_SUBSETLINK","features":[355]},{"name":"LVHT_EX_ONCONTENTS","features":[355]},{"name":"LVHT_NOWHERE","features":[355]},{"name":"LVHT_ONITEMICON","features":[355]},{"name":"LVHT_ONITEMLABEL","features":[355]},{"name":"LVHT_ONITEMSTATEICON","features":[355]},{"name":"LVHT_TOLEFT","features":[355]},{"name":"LVHT_TORIGHT","features":[355]},{"name":"LVIF_COLFMT","features":[355]},{"name":"LVIF_COLUMNS","features":[355]},{"name":"LVIF_DI_SETITEM","features":[355]},{"name":"LVIF_GROUPID","features":[355]},{"name":"LVIF_IMAGE","features":[355]},{"name":"LVIF_INDENT","features":[355]},{"name":"LVIF_NORECOMPUTE","features":[355]},{"name":"LVIF_PARAM","features":[355]},{"name":"LVIF_STATE","features":[355]},{"name":"LVIF_TEXT","features":[355]},{"name":"LVIM_AFTER","features":[355]},{"name":"LVINSERTGROUPSORTED","features":[355]},{"name":"LVINSERTMARK","features":[355]},{"name":"LVIR_BOUNDS","features":[355]},{"name":"LVIR_ICON","features":[355]},{"name":"LVIR_LABEL","features":[355]},{"name":"LVIR_SELECTBOUNDS","features":[355]},{"name":"LVIS_ACTIVATING","features":[355]},{"name":"LVIS_CUT","features":[355]},{"name":"LVIS_DROPHILITED","features":[355]},{"name":"LVIS_FOCUSED","features":[355]},{"name":"LVIS_GLOW","features":[355]},{"name":"LVIS_OVERLAYMASK","features":[355]},{"name":"LVIS_SELECTED","features":[355]},{"name":"LVIS_STATEIMAGEMASK","features":[355]},{"name":"LVITEMA","features":[305,355]},{"name":"LVITEMA_GROUP_ID","features":[355]},{"name":"LVITEMINDEX","features":[355]},{"name":"LVITEMW","features":[305,355]},{"name":"LVKF_ALT","features":[355]},{"name":"LVKF_CONTROL","features":[355]},{"name":"LVKF_SHIFT","features":[355]},{"name":"LVM_APPROXIMATEVIEWRECT","features":[355]},{"name":"LVM_ARRANGE","features":[355]},{"name":"LVM_CANCELEDITLABEL","features":[355]},{"name":"LVM_CREATEDRAGIMAGE","features":[355]},{"name":"LVM_DELETEALLITEMS","features":[355]},{"name":"LVM_DELETECOLUMN","features":[355]},{"name":"LVM_DELETEITEM","features":[355]},{"name":"LVM_EDITLABEL","features":[355]},{"name":"LVM_EDITLABELA","features":[355]},{"name":"LVM_EDITLABELW","features":[355]},{"name":"LVM_ENABLEGROUPVIEW","features":[355]},{"name":"LVM_ENSUREVISIBLE","features":[355]},{"name":"LVM_FINDITEM","features":[355]},{"name":"LVM_FINDITEMA","features":[355]},{"name":"LVM_FINDITEMW","features":[355]},{"name":"LVM_FIRST","features":[355]},{"name":"LVM_GETBKCOLOR","features":[355]},{"name":"LVM_GETBKIMAGE","features":[355]},{"name":"LVM_GETBKIMAGEA","features":[355]},{"name":"LVM_GETBKIMAGEW","features":[355]},{"name":"LVM_GETCALLBACKMASK","features":[355]},{"name":"LVM_GETCOLUMN","features":[355]},{"name":"LVM_GETCOLUMNA","features":[355]},{"name":"LVM_GETCOLUMNORDERARRAY","features":[355]},{"name":"LVM_GETCOLUMNW","features":[355]},{"name":"LVM_GETCOLUMNWIDTH","features":[355]},{"name":"LVM_GETCOUNTPERPAGE","features":[355]},{"name":"LVM_GETEDITCONTROL","features":[355]},{"name":"LVM_GETEMPTYTEXT","features":[355]},{"name":"LVM_GETEXTENDEDLISTVIEWSTYLE","features":[355]},{"name":"LVM_GETFOCUSEDGROUP","features":[355]},{"name":"LVM_GETFOOTERINFO","features":[355]},{"name":"LVM_GETFOOTERITEM","features":[355]},{"name":"LVM_GETFOOTERITEMRECT","features":[355]},{"name":"LVM_GETFOOTERRECT","features":[355]},{"name":"LVM_GETGROUPCOUNT","features":[355]},{"name":"LVM_GETGROUPINFO","features":[355]},{"name":"LVM_GETGROUPINFOBYINDEX","features":[355]},{"name":"LVM_GETGROUPMETRICS","features":[355]},{"name":"LVM_GETGROUPRECT","features":[355]},{"name":"LVM_GETGROUPSTATE","features":[355]},{"name":"LVM_GETHEADER","features":[355]},{"name":"LVM_GETHOTCURSOR","features":[355]},{"name":"LVM_GETHOTITEM","features":[355]},{"name":"LVM_GETHOVERTIME","features":[355]},{"name":"LVM_GETIMAGELIST","features":[355]},{"name":"LVM_GETINSERTMARK","features":[355]},{"name":"LVM_GETINSERTMARKCOLOR","features":[355]},{"name":"LVM_GETINSERTMARKRECT","features":[355]},{"name":"LVM_GETISEARCHSTRING","features":[355]},{"name":"LVM_GETISEARCHSTRINGA","features":[355]},{"name":"LVM_GETISEARCHSTRINGW","features":[355]},{"name":"LVM_GETITEM","features":[355]},{"name":"LVM_GETITEMA","features":[355]},{"name":"LVM_GETITEMCOUNT","features":[355]},{"name":"LVM_GETITEMINDEXRECT","features":[355]},{"name":"LVM_GETITEMPOSITION","features":[355]},{"name":"LVM_GETITEMRECT","features":[355]},{"name":"LVM_GETITEMSPACING","features":[355]},{"name":"LVM_GETITEMSTATE","features":[355]},{"name":"LVM_GETITEMTEXT","features":[355]},{"name":"LVM_GETITEMTEXTA","features":[355]},{"name":"LVM_GETITEMTEXTW","features":[355]},{"name":"LVM_GETITEMW","features":[355]},{"name":"LVM_GETNEXTITEM","features":[355]},{"name":"LVM_GETNEXTITEMINDEX","features":[355]},{"name":"LVM_GETNUMBEROFWORKAREAS","features":[355]},{"name":"LVM_GETORIGIN","features":[355]},{"name":"LVM_GETOUTLINECOLOR","features":[355]},{"name":"LVM_GETSELECTEDCOLUMN","features":[355]},{"name":"LVM_GETSELECTEDCOUNT","features":[355]},{"name":"LVM_GETSELECTIONMARK","features":[355]},{"name":"LVM_GETSTRINGWIDTH","features":[355]},{"name":"LVM_GETSTRINGWIDTHA","features":[355]},{"name":"LVM_GETSTRINGWIDTHW","features":[355]},{"name":"LVM_GETSUBITEMRECT","features":[355]},{"name":"LVM_GETTEXTBKCOLOR","features":[355]},{"name":"LVM_GETTEXTCOLOR","features":[355]},{"name":"LVM_GETTILEINFO","features":[355]},{"name":"LVM_GETTILEVIEWINFO","features":[355]},{"name":"LVM_GETTOOLTIPS","features":[355]},{"name":"LVM_GETTOPINDEX","features":[355]},{"name":"LVM_GETUNICODEFORMAT","features":[355]},{"name":"LVM_GETVIEW","features":[355]},{"name":"LVM_GETVIEWRECT","features":[355]},{"name":"LVM_GETWORKAREAS","features":[355]},{"name":"LVM_HASGROUP","features":[355]},{"name":"LVM_HITTEST","features":[355]},{"name":"LVM_INSERTCOLUMN","features":[355]},{"name":"LVM_INSERTCOLUMNA","features":[355]},{"name":"LVM_INSERTCOLUMNW","features":[355]},{"name":"LVM_INSERTGROUP","features":[355]},{"name":"LVM_INSERTGROUPSORTED","features":[355]},{"name":"LVM_INSERTITEM","features":[355]},{"name":"LVM_INSERTITEMA","features":[355]},{"name":"LVM_INSERTITEMW","features":[355]},{"name":"LVM_INSERTMARKHITTEST","features":[355]},{"name":"LVM_ISGROUPVIEWENABLED","features":[355]},{"name":"LVM_ISITEMVISIBLE","features":[355]},{"name":"LVM_MAPIDTOINDEX","features":[355]},{"name":"LVM_MAPINDEXTOID","features":[355]},{"name":"LVM_MOVEGROUP","features":[355]},{"name":"LVM_MOVEITEMTOGROUP","features":[355]},{"name":"LVM_REDRAWITEMS","features":[355]},{"name":"LVM_REMOVEALLGROUPS","features":[355]},{"name":"LVM_REMOVEGROUP","features":[355]},{"name":"LVM_SCROLL","features":[355]},{"name":"LVM_SETBKCOLOR","features":[355]},{"name":"LVM_SETBKIMAGE","features":[355]},{"name":"LVM_SETBKIMAGEA","features":[355]},{"name":"LVM_SETBKIMAGEW","features":[355]},{"name":"LVM_SETCALLBACKMASK","features":[355]},{"name":"LVM_SETCOLUMN","features":[355]},{"name":"LVM_SETCOLUMNA","features":[355]},{"name":"LVM_SETCOLUMNORDERARRAY","features":[355]},{"name":"LVM_SETCOLUMNW","features":[355]},{"name":"LVM_SETCOLUMNWIDTH","features":[355]},{"name":"LVM_SETEXTENDEDLISTVIEWSTYLE","features":[355]},{"name":"LVM_SETGROUPINFO","features":[355]},{"name":"LVM_SETGROUPMETRICS","features":[355]},{"name":"LVM_SETHOTCURSOR","features":[355]},{"name":"LVM_SETHOTITEM","features":[355]},{"name":"LVM_SETHOVERTIME","features":[355]},{"name":"LVM_SETICONSPACING","features":[355]},{"name":"LVM_SETIMAGELIST","features":[355]},{"name":"LVM_SETINFOTIP","features":[355]},{"name":"LVM_SETINSERTMARK","features":[355]},{"name":"LVM_SETINSERTMARKCOLOR","features":[355]},{"name":"LVM_SETITEM","features":[355]},{"name":"LVM_SETITEMA","features":[355]},{"name":"LVM_SETITEMCOUNT","features":[355]},{"name":"LVM_SETITEMINDEXSTATE","features":[355]},{"name":"LVM_SETITEMPOSITION","features":[355]},{"name":"LVM_SETITEMPOSITION32","features":[355]},{"name":"LVM_SETITEMSTATE","features":[355]},{"name":"LVM_SETITEMTEXT","features":[355]},{"name":"LVM_SETITEMTEXTA","features":[355]},{"name":"LVM_SETITEMTEXTW","features":[355]},{"name":"LVM_SETITEMW","features":[355]},{"name":"LVM_SETOUTLINECOLOR","features":[355]},{"name":"LVM_SETSELECTEDCOLUMN","features":[355]},{"name":"LVM_SETSELECTIONMARK","features":[355]},{"name":"LVM_SETTEXTBKCOLOR","features":[355]},{"name":"LVM_SETTEXTCOLOR","features":[355]},{"name":"LVM_SETTILEINFO","features":[355]},{"name":"LVM_SETTILEVIEWINFO","features":[355]},{"name":"LVM_SETTOOLTIPS","features":[355]},{"name":"LVM_SETUNICODEFORMAT","features":[355]},{"name":"LVM_SETVIEW","features":[355]},{"name":"LVM_SETWORKAREAS","features":[355]},{"name":"LVM_SORTGROUPS","features":[355]},{"name":"LVM_SORTITEMS","features":[355]},{"name":"LVM_SORTITEMSEX","features":[355]},{"name":"LVM_SUBITEMHITTEST","features":[355]},{"name":"LVM_UPDATE","features":[355]},{"name":"LVNI_ABOVE","features":[355]},{"name":"LVNI_ALL","features":[355]},{"name":"LVNI_BELOW","features":[355]},{"name":"LVNI_CUT","features":[355]},{"name":"LVNI_DROPHILITED","features":[355]},{"name":"LVNI_FOCUSED","features":[355]},{"name":"LVNI_PREVIOUS","features":[355]},{"name":"LVNI_SAMEGROUPONLY","features":[355]},{"name":"LVNI_SELECTED","features":[355]},{"name":"LVNI_TOLEFT","features":[355]},{"name":"LVNI_TORIGHT","features":[355]},{"name":"LVNI_VISIBLEONLY","features":[355]},{"name":"LVNI_VISIBLEORDER","features":[355]},{"name":"LVNSCH_DEFAULT","features":[355]},{"name":"LVNSCH_ERROR","features":[355]},{"name":"LVNSCH_IGNORE","features":[355]},{"name":"LVN_BEGINDRAG","features":[355]},{"name":"LVN_BEGINLABELEDIT","features":[355]},{"name":"LVN_BEGINLABELEDITA","features":[355]},{"name":"LVN_BEGINLABELEDITW","features":[355]},{"name":"LVN_BEGINRDRAG","features":[355]},{"name":"LVN_BEGINSCROLL","features":[355]},{"name":"LVN_COLUMNCLICK","features":[355]},{"name":"LVN_COLUMNDROPDOWN","features":[355]},{"name":"LVN_COLUMNOVERFLOWCLICK","features":[355]},{"name":"LVN_DELETEALLITEMS","features":[355]},{"name":"LVN_DELETEITEM","features":[355]},{"name":"LVN_ENDLABELEDIT","features":[355]},{"name":"LVN_ENDLABELEDITA","features":[355]},{"name":"LVN_ENDLABELEDITW","features":[355]},{"name":"LVN_ENDSCROLL","features":[355]},{"name":"LVN_FIRST","features":[355]},{"name":"LVN_GETDISPINFO","features":[355]},{"name":"LVN_GETDISPINFOA","features":[355]},{"name":"LVN_GETDISPINFOW","features":[355]},{"name":"LVN_GETEMPTYMARKUP","features":[355]},{"name":"LVN_GETINFOTIP","features":[355]},{"name":"LVN_GETINFOTIPA","features":[355]},{"name":"LVN_GETINFOTIPW","features":[355]},{"name":"LVN_HOTTRACK","features":[355]},{"name":"LVN_INCREMENTALSEARCH","features":[355]},{"name":"LVN_INCREMENTALSEARCHA","features":[355]},{"name":"LVN_INCREMENTALSEARCHW","features":[355]},{"name":"LVN_INSERTITEM","features":[355]},{"name":"LVN_ITEMACTIVATE","features":[355]},{"name":"LVN_ITEMCHANGED","features":[355]},{"name":"LVN_ITEMCHANGING","features":[355]},{"name":"LVN_KEYDOWN","features":[355]},{"name":"LVN_LAST","features":[355]},{"name":"LVN_LINKCLICK","features":[355]},{"name":"LVN_MARQUEEBEGIN","features":[355]},{"name":"LVN_ODCACHEHINT","features":[355]},{"name":"LVN_ODFINDITEM","features":[355]},{"name":"LVN_ODFINDITEMA","features":[355]},{"name":"LVN_ODFINDITEMW","features":[355]},{"name":"LVN_ODSTATECHANGED","features":[355]},{"name":"LVN_SETDISPINFO","features":[355]},{"name":"LVN_SETDISPINFOA","features":[355]},{"name":"LVN_SETDISPINFOW","features":[355]},{"name":"LVP_COLLAPSEBUTTON","features":[355]},{"name":"LVP_COLUMNDETAIL","features":[355]},{"name":"LVP_EMPTYTEXT","features":[355]},{"name":"LVP_EXPANDBUTTON","features":[355]},{"name":"LVP_GROUPHEADER","features":[355]},{"name":"LVP_GROUPHEADERLINE","features":[355]},{"name":"LVP_LISTDETAIL","features":[355]},{"name":"LVP_LISTGROUP","features":[355]},{"name":"LVP_LISTITEM","features":[355]},{"name":"LVP_LISTSORTEDDETAIL","features":[355]},{"name":"LVSCW_AUTOSIZE","features":[355]},{"name":"LVSCW_AUTOSIZE_USEHEADER","features":[355]},{"name":"LVSETINFOTIP","features":[355]},{"name":"LVSICF_NOINVALIDATEALL","features":[355]},{"name":"LVSICF_NOSCROLL","features":[355]},{"name":"LVSIL_GROUPHEADER","features":[355]},{"name":"LVSIL_NORMAL","features":[355]},{"name":"LVSIL_SMALL","features":[355]},{"name":"LVSIL_STATE","features":[355]},{"name":"LVS_ALIGNLEFT","features":[355]},{"name":"LVS_ALIGNMASK","features":[355]},{"name":"LVS_ALIGNTOP","features":[355]},{"name":"LVS_AUTOARRANGE","features":[355]},{"name":"LVS_EDITLABELS","features":[355]},{"name":"LVS_EX_AUTOAUTOARRANGE","features":[355]},{"name":"LVS_EX_AUTOCHECKSELECT","features":[355]},{"name":"LVS_EX_AUTOSIZECOLUMNS","features":[355]},{"name":"LVS_EX_BORDERSELECT","features":[355]},{"name":"LVS_EX_CHECKBOXES","features":[355]},{"name":"LVS_EX_COLUMNOVERFLOW","features":[355]},{"name":"LVS_EX_COLUMNSNAPPOINTS","features":[355]},{"name":"LVS_EX_DOUBLEBUFFER","features":[355]},{"name":"LVS_EX_FLATSB","features":[355]},{"name":"LVS_EX_FULLROWSELECT","features":[355]},{"name":"LVS_EX_GRIDLINES","features":[355]},{"name":"LVS_EX_HEADERDRAGDROP","features":[355]},{"name":"LVS_EX_HEADERINALLVIEWS","features":[355]},{"name":"LVS_EX_HIDELABELS","features":[355]},{"name":"LVS_EX_INFOTIP","features":[355]},{"name":"LVS_EX_JUSTIFYCOLUMNS","features":[355]},{"name":"LVS_EX_LABELTIP","features":[355]},{"name":"LVS_EX_MULTIWORKAREAS","features":[355]},{"name":"LVS_EX_ONECLICKACTIVATE","features":[355]},{"name":"LVS_EX_REGIONAL","features":[355]},{"name":"LVS_EX_SIMPLESELECT","features":[355]},{"name":"LVS_EX_SINGLEROW","features":[355]},{"name":"LVS_EX_SNAPTOGRID","features":[355]},{"name":"LVS_EX_SUBITEMIMAGES","features":[355]},{"name":"LVS_EX_TRACKSELECT","features":[355]},{"name":"LVS_EX_TRANSPARENTBKGND","features":[355]},{"name":"LVS_EX_TRANSPARENTSHADOWTEXT","features":[355]},{"name":"LVS_EX_TWOCLICKACTIVATE","features":[355]},{"name":"LVS_EX_UNDERLINECOLD","features":[355]},{"name":"LVS_EX_UNDERLINEHOT","features":[355]},{"name":"LVS_ICON","features":[355]},{"name":"LVS_LIST","features":[355]},{"name":"LVS_NOCOLUMNHEADER","features":[355]},{"name":"LVS_NOLABELWRAP","features":[355]},{"name":"LVS_NOSCROLL","features":[355]},{"name":"LVS_NOSORTHEADER","features":[355]},{"name":"LVS_OWNERDATA","features":[355]},{"name":"LVS_OWNERDRAWFIXED","features":[355]},{"name":"LVS_REPORT","features":[355]},{"name":"LVS_SHAREIMAGELISTS","features":[355]},{"name":"LVS_SHOWSELALWAYS","features":[355]},{"name":"LVS_SINGLESEL","features":[355]},{"name":"LVS_SMALLICON","features":[355]},{"name":"LVS_SORTASCENDING","features":[355]},{"name":"LVS_SORTDESCENDING","features":[355]},{"name":"LVS_TYPEMASK","features":[355]},{"name":"LVS_TYPESTYLEMASK","features":[355]},{"name":"LVTILEINFO","features":[355]},{"name":"LVTILEVIEWINFO","features":[305,355]},{"name":"LVTILEVIEWINFO_FLAGS","features":[355]},{"name":"LVTILEVIEWINFO_MASK","features":[355]},{"name":"LVTVIF_AUTOSIZE","features":[355]},{"name":"LVTVIF_EXTENDED","features":[355]},{"name":"LVTVIF_FIXEDHEIGHT","features":[355]},{"name":"LVTVIF_FIXEDSIZE","features":[355]},{"name":"LVTVIF_FIXEDWIDTH","features":[355]},{"name":"LVTVIM_COLUMNS","features":[355]},{"name":"LVTVIM_LABELMARGIN","features":[355]},{"name":"LVTVIM_TILESIZE","features":[355]},{"name":"LV_MAX_WORKAREAS","features":[355]},{"name":"LV_VIEW_DETAILS","features":[355]},{"name":"LV_VIEW_ICON","features":[355]},{"name":"LV_VIEW_LIST","features":[355]},{"name":"LV_VIEW_MAX","features":[355]},{"name":"LV_VIEW_SMALLICON","features":[355]},{"name":"LV_VIEW_TILE","features":[355]},{"name":"LWS_IGNORERETURN","features":[355]},{"name":"LWS_NOPREFIX","features":[355]},{"name":"LWS_RIGHT","features":[355]},{"name":"LWS_TRANSPARENT","features":[355]},{"name":"LWS_USECUSTOMTEXT","features":[355]},{"name":"LWS_USEVISUALSTYLE","features":[355]},{"name":"LoadIconMetric","features":[305,355,367]},{"name":"LoadIconWithScaleDown","features":[305,355,367]},{"name":"MARGINS","features":[355]},{"name":"MARKUPTEXTSTATES","features":[355]},{"name":"MAXBS_DISABLED","features":[355]},{"name":"MAXBS_HOT","features":[355]},{"name":"MAXBS_NORMAL","features":[355]},{"name":"MAXBS_PUSHED","features":[355]},{"name":"MAXBUTTONSTATES","features":[355]},{"name":"MAXCAPTIONSTATES","features":[355]},{"name":"MAXPROPPAGES","features":[355]},{"name":"MAX_INTLIST_COUNT","features":[355]},{"name":"MAX_LINKID_TEXT","features":[355]},{"name":"MAX_THEMECOLOR","features":[355]},{"name":"MAX_THEMESIZE","features":[355]},{"name":"MBI_DISABLED","features":[355]},{"name":"MBI_DISABLEDHOT","features":[355]},{"name":"MBI_DISABLEDPUSHED","features":[355]},{"name":"MBI_HOT","features":[355]},{"name":"MBI_NORMAL","features":[355]},{"name":"MBI_PUSHED","features":[355]},{"name":"MB_ACTIVE","features":[355]},{"name":"MB_INACTIVE","features":[355]},{"name":"MCB_BITMAP","features":[355]},{"name":"MCB_DISABLED","features":[355]},{"name":"MCB_NORMAL","features":[355]},{"name":"MCGCB_HOT","features":[355]},{"name":"MCGCB_SELECTED","features":[355]},{"name":"MCGCB_SELECTEDHOT","features":[355]},{"name":"MCGCB_SELECTEDNOTFOCUSED","features":[355]},{"name":"MCGCB_TODAY","features":[355]},{"name":"MCGCB_TODAYSELECTED","features":[355]},{"name":"MCGCU_HASSTATE","features":[355]},{"name":"MCGCU_HASSTATEHOT","features":[355]},{"name":"MCGCU_HOT","features":[355]},{"name":"MCGCU_SELECTED","features":[355]},{"name":"MCGCU_SELECTEDHOT","features":[355]},{"name":"MCGC_HASSTATE","features":[355]},{"name":"MCGC_HASSTATEHOT","features":[355]},{"name":"MCGC_HOT","features":[355]},{"name":"MCGC_SELECTED","features":[355]},{"name":"MCGC_SELECTEDHOT","features":[355]},{"name":"MCGC_TODAY","features":[355]},{"name":"MCGC_TODAYSELECTED","features":[355]},{"name":"MCGIF_DATE","features":[355]},{"name":"MCGIF_NAME","features":[355]},{"name":"MCGIF_RECT","features":[355]},{"name":"MCGIP_CALENDAR","features":[355]},{"name":"MCGIP_CALENDARBODY","features":[355]},{"name":"MCGIP_CALENDARCELL","features":[355]},{"name":"MCGIP_CALENDARCONTROL","features":[355]},{"name":"MCGIP_CALENDARHEADER","features":[355]},{"name":"MCGIP_CALENDARROW","features":[355]},{"name":"MCGIP_FOOTER","features":[355]},{"name":"MCGIP_NEXT","features":[355]},{"name":"MCGIP_PREV","features":[355]},{"name":"MCGRIDINFO","features":[305,355]},{"name":"MCGRIDINFO_FLAGS","features":[355]},{"name":"MCGRIDINFO_PART","features":[355]},{"name":"MCHITTESTINFO","features":[305,355]},{"name":"MCHITTESTINFO_HIT_FLAGS","features":[355]},{"name":"MCHT_CALENDAR","features":[355]},{"name":"MCHT_CALENDARBK","features":[355]},{"name":"MCHT_CALENDARCONTROL","features":[355]},{"name":"MCHT_CALENDARDATE","features":[355]},{"name":"MCHT_CALENDARDATEMAX","features":[355]},{"name":"MCHT_CALENDARDATEMIN","features":[355]},{"name":"MCHT_CALENDARDATENEXT","features":[355]},{"name":"MCHT_CALENDARDATEPREV","features":[355]},{"name":"MCHT_CALENDARDAY","features":[355]},{"name":"MCHT_CALENDARWEEKNUM","features":[355]},{"name":"MCHT_NEXT","features":[355]},{"name":"MCHT_NOWHERE","features":[355]},{"name":"MCHT_PREV","features":[355]},{"name":"MCHT_TITLE","features":[355]},{"name":"MCHT_TITLEBK","features":[355]},{"name":"MCHT_TITLEBTNNEXT","features":[355]},{"name":"MCHT_TITLEBTNPREV","features":[355]},{"name":"MCHT_TITLEMONTH","features":[355]},{"name":"MCHT_TITLEYEAR","features":[355]},{"name":"MCHT_TODAYLINK","features":[355]},{"name":"MCMV_CENTURY","features":[355]},{"name":"MCMV_DECADE","features":[355]},{"name":"MCMV_MAX","features":[355]},{"name":"MCMV_MONTH","features":[355]},{"name":"MCMV_YEAR","features":[355]},{"name":"MCM_FIRST","features":[355]},{"name":"MCM_GETCALENDARBORDER","features":[355]},{"name":"MCM_GETCALENDARCOUNT","features":[355]},{"name":"MCM_GETCALENDARGRIDINFO","features":[355]},{"name":"MCM_GETCALID","features":[355]},{"name":"MCM_GETCOLOR","features":[355]},{"name":"MCM_GETCURRENTVIEW","features":[355]},{"name":"MCM_GETCURSEL","features":[355]},{"name":"MCM_GETFIRSTDAYOFWEEK","features":[355]},{"name":"MCM_GETMAXSELCOUNT","features":[355]},{"name":"MCM_GETMAXTODAYWIDTH","features":[355]},{"name":"MCM_GETMINREQRECT","features":[355]},{"name":"MCM_GETMONTHDELTA","features":[355]},{"name":"MCM_GETMONTHRANGE","features":[355]},{"name":"MCM_GETRANGE","features":[355]},{"name":"MCM_GETSELRANGE","features":[355]},{"name":"MCM_GETTODAY","features":[355]},{"name":"MCM_GETUNICODEFORMAT","features":[355]},{"name":"MCM_HITTEST","features":[355]},{"name":"MCM_SETCALENDARBORDER","features":[355]},{"name":"MCM_SETCALID","features":[355]},{"name":"MCM_SETCOLOR","features":[355]},{"name":"MCM_SETCURRENTVIEW","features":[355]},{"name":"MCM_SETCURSEL","features":[355]},{"name":"MCM_SETDAYSTATE","features":[355]},{"name":"MCM_SETFIRSTDAYOFWEEK","features":[355]},{"name":"MCM_SETMAXSELCOUNT","features":[355]},{"name":"MCM_SETMONTHDELTA","features":[355]},{"name":"MCM_SETRANGE","features":[355]},{"name":"MCM_SETSELRANGE","features":[355]},{"name":"MCM_SETTODAY","features":[355]},{"name":"MCM_SETUNICODEFORMAT","features":[355]},{"name":"MCM_SIZERECTTOMIN","features":[355]},{"name":"MCNN_DISABLED","features":[355]},{"name":"MCNN_HOT","features":[355]},{"name":"MCNN_NORMAL","features":[355]},{"name":"MCNN_PRESSED","features":[355]},{"name":"MCNP_DISABLED","features":[355]},{"name":"MCNP_HOT","features":[355]},{"name":"MCNP_NORMAL","features":[355]},{"name":"MCNP_PRESSED","features":[355]},{"name":"MCN_FIRST","features":[355]},{"name":"MCN_GETDAYSTATE","features":[355]},{"name":"MCN_LAST","features":[355]},{"name":"MCN_SELCHANGE","features":[355]},{"name":"MCN_SELECT","features":[355]},{"name":"MCN_VIEWCHANGE","features":[355]},{"name":"MCSC_BACKGROUND","features":[355]},{"name":"MCSC_MONTHBK","features":[355]},{"name":"MCSC_TEXT","features":[355]},{"name":"MCSC_TITLEBK","features":[355]},{"name":"MCSC_TITLETEXT","features":[355]},{"name":"MCSC_TRAILINGTEXT","features":[355]},{"name":"MCS_DAYSTATE","features":[355]},{"name":"MCS_MULTISELECT","features":[355]},{"name":"MCS_NOSELCHANGEONNAV","features":[355]},{"name":"MCS_NOTODAY","features":[355]},{"name":"MCS_NOTODAYCIRCLE","features":[355]},{"name":"MCS_NOTRAILINGDATES","features":[355]},{"name":"MCS_SHORTDAYSOFWEEK","features":[355]},{"name":"MCS_WEEKNUMBERS","features":[355]},{"name":"MCTGCU_HASSTATE","features":[355]},{"name":"MCTGCU_HASSTATEHOT","features":[355]},{"name":"MCTGCU_HOT","features":[355]},{"name":"MCTGCU_SELECTED","features":[355]},{"name":"MCTGCU_SELECTEDHOT","features":[355]},{"name":"MCTGC_HASSTATE","features":[355]},{"name":"MCTGC_HASSTATEHOT","features":[355]},{"name":"MCTGC_HOT","features":[355]},{"name":"MCTGC_SELECTED","features":[355]},{"name":"MCTGC_SELECTEDHOT","features":[355]},{"name":"MCTGC_TODAY","features":[355]},{"name":"MCTGC_TODAYSELECTED","features":[355]},{"name":"MC_BACKGROUND","features":[355]},{"name":"MC_BORDERS","features":[355]},{"name":"MC_BULLETDISABLED","features":[355]},{"name":"MC_BULLETNORMAL","features":[355]},{"name":"MC_CHECKMARKDISABLED","features":[355]},{"name":"MC_CHECKMARKNORMAL","features":[355]},{"name":"MC_COLHEADERSPLITTER","features":[355]},{"name":"MC_GRIDBACKGROUND","features":[355]},{"name":"MC_GRIDCELL","features":[355]},{"name":"MC_GRIDCELLBACKGROUND","features":[355]},{"name":"MC_GRIDCELLUPPER","features":[355]},{"name":"MC_NAVNEXT","features":[355]},{"name":"MC_NAVPREV","features":[355]},{"name":"MC_TRAILINGGRIDCELL","features":[355]},{"name":"MC_TRAILINGGRIDCELLUPPER","features":[355]},{"name":"MDCL_DISABLED","features":[355]},{"name":"MDCL_HOT","features":[355]},{"name":"MDCL_NORMAL","features":[355]},{"name":"MDCL_PUSHED","features":[355]},{"name":"MDICLOSEBUTTONSTATES","features":[355]},{"name":"MDIMINBUTTONSTATES","features":[355]},{"name":"MDIRESTOREBUTTONSTATES","features":[355]},{"name":"MDMI_DISABLED","features":[355]},{"name":"MDMI_HOT","features":[355]},{"name":"MDMI_NORMAL","features":[355]},{"name":"MDMI_PUSHED","features":[355]},{"name":"MDP_NEWAPPBUTTON","features":[355]},{"name":"MDP_SEPERATOR","features":[355]},{"name":"MDRE_DISABLED","features":[355]},{"name":"MDRE_HOT","features":[355]},{"name":"MDRE_NORMAL","features":[355]},{"name":"MDRE_PUSHED","features":[355]},{"name":"MDS_CHECKED","features":[355]},{"name":"MDS_DISABLED","features":[355]},{"name":"MDS_HOT","features":[355]},{"name":"MDS_HOTCHECKED","features":[355]},{"name":"MDS_NORMAL","features":[355]},{"name":"MDS_PRESSED","features":[355]},{"name":"MEASUREITEMSTRUCT","features":[355]},{"name":"MENUBANDPARTS","features":[355]},{"name":"MENUBANDSTATES","features":[355]},{"name":"MENUPARTS","features":[355]},{"name":"MENU_BARBACKGROUND","features":[355]},{"name":"MENU_BARITEM","features":[355]},{"name":"MENU_CHEVRON_TMSCHEMA","features":[355]},{"name":"MENU_MENUBARDROPDOWN_TMSCHEMA","features":[355]},{"name":"MENU_MENUBARITEM_TMSCHEMA","features":[355]},{"name":"MENU_MENUDROPDOWN_TMSCHEMA","features":[355]},{"name":"MENU_MENUITEM_TMSCHEMA","features":[355]},{"name":"MENU_POPUPBACKGROUND","features":[355]},{"name":"MENU_POPUPBORDERS","features":[355]},{"name":"MENU_POPUPCHECK","features":[355]},{"name":"MENU_POPUPCHECKBACKGROUND","features":[355]},{"name":"MENU_POPUPGUTTER","features":[355]},{"name":"MENU_POPUPITEM","features":[355]},{"name":"MENU_POPUPITEMKBFOCUS","features":[355]},{"name":"MENU_POPUPITEM_FOCUSABLE","features":[355]},{"name":"MENU_POPUPSEPARATOR","features":[355]},{"name":"MENU_POPUPSUBMENU","features":[355]},{"name":"MENU_POPUPSUBMENU_HCHOT","features":[355]},{"name":"MENU_SEPARATOR_TMSCHEMA","features":[355]},{"name":"MENU_SYSTEMCLOSE","features":[355]},{"name":"MENU_SYSTEMCLOSE_HCHOT","features":[355]},{"name":"MENU_SYSTEMMAXIMIZE","features":[355]},{"name":"MENU_SYSTEMMAXIMIZE_HCHOT","features":[355]},{"name":"MENU_SYSTEMMINIMIZE","features":[355]},{"name":"MENU_SYSTEMMINIMIZE_HCHOT","features":[355]},{"name":"MENU_SYSTEMRESTORE","features":[355]},{"name":"MENU_SYSTEMRESTORE_HCHOT","features":[355]},{"name":"MINBS_DISABLED","features":[355]},{"name":"MINBS_HOT","features":[355]},{"name":"MINBS_NORMAL","features":[355]},{"name":"MINBS_PUSHED","features":[355]},{"name":"MINBUTTONSTATES","features":[355]},{"name":"MINCAPTIONSTATES","features":[355]},{"name":"MNCS_ACTIVE","features":[355]},{"name":"MNCS_DISABLED","features":[355]},{"name":"MNCS_INACTIVE","features":[355]},{"name":"MONTHCALPARTS","features":[355]},{"name":"MONTHCAL_CLASS","features":[355]},{"name":"MONTHCAL_CLASSA","features":[355]},{"name":"MONTHCAL_CLASSW","features":[355]},{"name":"MONTH_CALDENDAR_MESSAGES_VIEW","features":[355]},{"name":"MOREPROGRAMSARROWBACKSTATES","features":[355]},{"name":"MOREPROGRAMSARROWSTATES","features":[355]},{"name":"MOREPROGRAMSTABSTATES","features":[355]},{"name":"MOVESTATES","features":[355]},{"name":"MPIF_DISABLED","features":[355]},{"name":"MPIF_DISABLEDHOT","features":[355]},{"name":"MPIF_HOT","features":[355]},{"name":"MPIF_NORMAL","features":[355]},{"name":"MPIKBFOCUS_NORMAL","features":[355]},{"name":"MPI_DISABLED","features":[355]},{"name":"MPI_DISABLEDHOT","features":[355]},{"name":"MPI_HOT","features":[355]},{"name":"MPI_NORMAL","features":[355]},{"name":"MSGF_COMMCTRL_BEGINDRAG","features":[355]},{"name":"MSGF_COMMCTRL_DRAGSELECT","features":[355]},{"name":"MSGF_COMMCTRL_SIZEHEADER","features":[355]},{"name":"MSGF_COMMCTRL_TOOLBARCUST","features":[355]},{"name":"MSMHC_HOT","features":[355]},{"name":"MSM_DISABLED","features":[355]},{"name":"MSM_NORMAL","features":[355]},{"name":"MSYSCHC_HOT","features":[355]},{"name":"MSYSC_DISABLED","features":[355]},{"name":"MSYSC_NORMAL","features":[355]},{"name":"MSYSMNHC_HOT","features":[355]},{"name":"MSYSMN_DISABLED","features":[355]},{"name":"MSYSMN_NORMAL","features":[355]},{"name":"MSYSMXHC_HOT","features":[355]},{"name":"MSYSMX_DISABLED","features":[355]},{"name":"MSYSMX_NORMAL","features":[355]},{"name":"MSYSRHC_HOT","features":[355]},{"name":"MSYSR_DISABLED","features":[355]},{"name":"MSYSR_NORMAL","features":[355]},{"name":"MULTIFILEOPENORD","features":[355]},{"name":"MXCS_ACTIVE","features":[355]},{"name":"MXCS_DISABLED","features":[355]},{"name":"MXCS_INACTIVE","features":[355]},{"name":"MakeDragList","features":[305,355]},{"name":"MenuHelp","features":[305,355,367]},{"name":"NAVIGATIONPARTS","features":[355]},{"name":"NAVNEXTSTATES","features":[355]},{"name":"NAVPREVSTATES","features":[355]},{"name":"NAV_BACKBUTTON","features":[355]},{"name":"NAV_BACKBUTTONSTATES","features":[355]},{"name":"NAV_BB_DISABLED","features":[355]},{"name":"NAV_BB_HOT","features":[355]},{"name":"NAV_BB_NORMAL","features":[355]},{"name":"NAV_BB_PRESSED","features":[355]},{"name":"NAV_FB_DISABLED","features":[355]},{"name":"NAV_FB_HOT","features":[355]},{"name":"NAV_FB_NORMAL","features":[355]},{"name":"NAV_FB_PRESSED","features":[355]},{"name":"NAV_FORWARDBUTTON","features":[355]},{"name":"NAV_FORWARDBUTTONSTATES","features":[355]},{"name":"NAV_MB_DISABLED","features":[355]},{"name":"NAV_MB_HOT","features":[355]},{"name":"NAV_MB_NORMAL","features":[355]},{"name":"NAV_MB_PRESSED","features":[355]},{"name":"NAV_MENUBUTTON","features":[355]},{"name":"NAV_MENUBUTTONSTATES","features":[355]},{"name":"NEWFILEOPENORD","features":[355]},{"name":"NEWFILEOPENV2ORD","features":[355]},{"name":"NEWFILEOPENV3ORD","features":[355]},{"name":"NEWFORMATDLGWITHLINK","features":[355]},{"name":"NFS_ALL","features":[355]},{"name":"NFS_BUTTON","features":[355]},{"name":"NFS_EDIT","features":[355]},{"name":"NFS_LISTCOMBO","features":[355]},{"name":"NFS_STATIC","features":[355]},{"name":"NFS_USEFONTASSOC","features":[355]},{"name":"NMBCDROPDOWN","features":[305,355]},{"name":"NMBCHOTITEM","features":[305,355]},{"name":"NMCBEDRAGBEGINA","features":[305,355]},{"name":"NMCBEDRAGBEGINW","features":[305,355]},{"name":"NMCBEENDEDITA","features":[305,355]},{"name":"NMCBEENDEDITW","features":[305,355]},{"name":"NMCHAR","features":[305,355]},{"name":"NMCOMBOBOXEXA","features":[305,355]},{"name":"NMCOMBOBOXEXW","features":[305,355]},{"name":"NMCUSTOMDRAW","features":[305,316,355]},{"name":"NMCUSTOMDRAW_DRAW_STAGE","features":[355]},{"name":"NMCUSTOMDRAW_DRAW_STATE_FLAGS","features":[355]},{"name":"NMCUSTOMSPLITRECTINFO","features":[305,355]},{"name":"NMCUSTOMTEXT","features":[305,316,355]},{"name":"NMDATETIMECHANGE","features":[305,355]},{"name":"NMDATETIMECHANGE_FLAGS","features":[355]},{"name":"NMDATETIMEFORMATA","features":[305,355]},{"name":"NMDATETIMEFORMATQUERYA","features":[305,355]},{"name":"NMDATETIMEFORMATQUERYW","features":[305,355]},{"name":"NMDATETIMEFORMATW","features":[305,355]},{"name":"NMDATETIMESTRINGA","features":[305,355]},{"name":"NMDATETIMESTRINGW","features":[305,355]},{"name":"NMDATETIMEWMKEYDOWNA","features":[305,355]},{"name":"NMDATETIMEWMKEYDOWNW","features":[305,355]},{"name":"NMDAYSTATE","features":[305,355]},{"name":"NMHDDISPINFOA","features":[305,355]},{"name":"NMHDDISPINFOW","features":[305,355]},{"name":"NMHDFILTERBTNCLICK","features":[305,355]},{"name":"NMHDR","features":[305,355]},{"name":"NMHEADERA","features":[305,316,355]},{"name":"NMHEADERW","features":[305,316,355]},{"name":"NMIPADDRESS","features":[305,355]},{"name":"NMITEMACTIVATE","features":[305,355]},{"name":"NMKEY","features":[305,355]},{"name":"NMLINK","features":[305,355]},{"name":"NMLISTVIEW","features":[305,355]},{"name":"NMLVCACHEHINT","features":[305,355]},{"name":"NMLVCUSTOMDRAW","features":[305,316,355]},{"name":"NMLVCUSTOMDRAW_ITEM_TYPE","features":[355]},{"name":"NMLVDISPINFOA","features":[305,355]},{"name":"NMLVDISPINFOW","features":[305,355]},{"name":"NMLVEMPTYMARKUP","features":[305,355]},{"name":"NMLVEMPTYMARKUP_FLAGS","features":[355]},{"name":"NMLVFINDITEMA","features":[305,355]},{"name":"NMLVFINDITEMW","features":[305,355]},{"name":"NMLVGETINFOTIPA","features":[305,355]},{"name":"NMLVGETINFOTIPW","features":[305,355]},{"name":"NMLVGETINFOTIP_FLAGS","features":[355]},{"name":"NMLVKEYDOWN","features":[305,355]},{"name":"NMLVLINK","features":[305,355]},{"name":"NMLVODSTATECHANGE","features":[305,355]},{"name":"NMLVSCROLL","features":[305,355]},{"name":"NMMOUSE","features":[305,355]},{"name":"NMOBJECTNOTIFY","features":[305,355]},{"name":"NMPGCALCSIZE","features":[305,355]},{"name":"NMPGCALCSIZE_FLAGS","features":[355]},{"name":"NMPGHOTITEM","features":[305,355]},{"name":"NMPGSCROLL","features":[305,355]},{"name":"NMPGSCROLL_DIR","features":[355]},{"name":"NMPGSCROLL_KEYS","features":[355]},{"name":"NMRBAUTOSIZE","features":[305,355]},{"name":"NMREBAR","features":[305,355]},{"name":"NMREBARAUTOBREAK","features":[305,355]},{"name":"NMREBARCHEVRON","features":[305,355]},{"name":"NMREBARCHILDSIZE","features":[305,355]},{"name":"NMREBARSPLITTER","features":[305,355]},{"name":"NMREBAR_MASK_FLAGS","features":[355]},{"name":"NMSEARCHWEB","features":[305,355]},{"name":"NMSELCHANGE","features":[305,355]},{"name":"NMTBCUSTOMDRAW","features":[305,316,355]},{"name":"NMTBDISPINFOA","features":[305,355]},{"name":"NMTBDISPINFOW","features":[305,355]},{"name":"NMTBDISPINFOW_MASK","features":[355]},{"name":"NMTBGETINFOTIPA","features":[305,355]},{"name":"NMTBGETINFOTIPW","features":[305,355]},{"name":"NMTBHOTITEM","features":[305,355]},{"name":"NMTBHOTITEM_FLAGS","features":[355]},{"name":"NMTBRESTORE","features":[305,355]},{"name":"NMTBSAVE","features":[305,355]},{"name":"NMTCKEYDOWN","features":[305,355]},{"name":"NMTOOLBARA","features":[305,355]},{"name":"NMTOOLBARW","features":[305,355]},{"name":"NMTOOLTIPSCREATED","features":[305,355]},{"name":"NMTRBTHUMBPOSCHANGING","features":[305,355]},{"name":"NMTREEVIEWA","features":[305,355]},{"name":"NMTREEVIEWW","features":[305,355]},{"name":"NMTTCUSTOMDRAW","features":[305,316,355]},{"name":"NMTTDISPINFOA","features":[305,355]},{"name":"NMTTDISPINFOW","features":[305,355]},{"name":"NMTVASYNCDRAW","features":[305,316,355]},{"name":"NMTVCUSTOMDRAW","features":[305,316,355]},{"name":"NMTVDISPINFOA","features":[305,355]},{"name":"NMTVDISPINFOEXA","features":[305,355]},{"name":"NMTVDISPINFOEXW","features":[305,355]},{"name":"NMTVDISPINFOW","features":[305,355]},{"name":"NMTVGETINFOTIPA","features":[305,355]},{"name":"NMTVGETINFOTIPW","features":[305,355]},{"name":"NMTVITEMCHANGE","features":[305,355]},{"name":"NMTVKEYDOWN","features":[305,355]},{"name":"NMTVSTATEIMAGECHANGING","features":[305,355]},{"name":"NMUPDOWN","features":[305,355]},{"name":"NMVIEWCHANGE","features":[305,355]},{"name":"NM_CHAR","features":[355]},{"name":"NM_CLICK","features":[355]},{"name":"NM_CUSTOMDRAW","features":[355]},{"name":"NM_CUSTOMTEXT","features":[355]},{"name":"NM_DBLCLK","features":[355]},{"name":"NM_FIRST","features":[355]},{"name":"NM_FONTCHANGED","features":[355]},{"name":"NM_GETCUSTOMSPLITRECT","features":[355]},{"name":"NM_HOVER","features":[355]},{"name":"NM_KEYDOWN","features":[355]},{"name":"NM_KILLFOCUS","features":[355]},{"name":"NM_LAST","features":[355]},{"name":"NM_LDOWN","features":[355]},{"name":"NM_NCHITTEST","features":[355]},{"name":"NM_OUTOFMEMORY","features":[355]},{"name":"NM_RCLICK","features":[355]},{"name":"NM_RDBLCLK","features":[355]},{"name":"NM_RDOWN","features":[355]},{"name":"NM_RELEASEDCAPTURE","features":[355]},{"name":"NM_RETURN","features":[355]},{"name":"NM_SETCURSOR","features":[355]},{"name":"NM_SETFOCUS","features":[355]},{"name":"NM_THEMECHANGED","features":[355]},{"name":"NM_TOOLTIPSCREATED","features":[355]},{"name":"NM_TREEVIEW_ACTION","features":[355]},{"name":"NM_TVSTATEIMAGECHANGING","features":[355]},{"name":"NONESTATES","features":[355]},{"name":"NORMALGROUPCOLLAPSESTATES","features":[355]},{"name":"NORMALGROUPEXPANDSTATES","features":[355]},{"name":"ODA_DRAWENTIRE","features":[355]},{"name":"ODA_FLAGS","features":[355]},{"name":"ODA_FOCUS","features":[355]},{"name":"ODA_SELECT","features":[355]},{"name":"ODS_CHECKED","features":[355]},{"name":"ODS_COMBOBOXEDIT","features":[355]},{"name":"ODS_DEFAULT","features":[355]},{"name":"ODS_DISABLED","features":[355]},{"name":"ODS_FLAGS","features":[355]},{"name":"ODS_FOCUS","features":[355]},{"name":"ODS_GRAYED","features":[355]},{"name":"ODS_HOTLIGHT","features":[355]},{"name":"ODS_INACTIVE","features":[355]},{"name":"ODS_NOACCEL","features":[355]},{"name":"ODS_NOFOCUSRECT","features":[355]},{"name":"ODS_SELECTED","features":[355]},{"name":"ODT_BUTTON","features":[355]},{"name":"ODT_COMBOBOX","features":[355]},{"name":"ODT_HEADER","features":[355]},{"name":"ODT_LISTBOX","features":[355]},{"name":"ODT_LISTVIEW","features":[355]},{"name":"ODT_MENU","features":[355]},{"name":"ODT_STATIC","features":[355]},{"name":"ODT_TAB","features":[355]},{"name":"OFFSETTYPE","features":[355]},{"name":"OPENBOXSTATES","features":[355]},{"name":"OPEN_THEME_DATA_FLAGS","features":[355]},{"name":"OTD_FORCE_RECT_SIZING","features":[355]},{"name":"OTD_NONCLIENT","features":[355]},{"name":"OT_ABOVELASTBUTTON","features":[355]},{"name":"OT_BELOWLASTBUTTON","features":[355]},{"name":"OT_BOTTOMLEFT","features":[355]},{"name":"OT_BOTTOMMIDDLE","features":[355]},{"name":"OT_BOTTOMRIGHT","features":[355]},{"name":"OT_LEFTOFCAPTION","features":[355]},{"name":"OT_LEFTOFLASTBUTTON","features":[355]},{"name":"OT_MIDDLELEFT","features":[355]},{"name":"OT_MIDDLERIGHT","features":[355]},{"name":"OT_RIGHTOFCAPTION","features":[355]},{"name":"OT_RIGHTOFLASTBUTTON","features":[355]},{"name":"OT_TOPLEFT","features":[355]},{"name":"OT_TOPMIDDLE","features":[355]},{"name":"OT_TOPRIGHT","features":[355]},{"name":"OpenThemeData","features":[305,355]},{"name":"OpenThemeDataEx","features":[305,355]},{"name":"PAGEPARTS","features":[355]},{"name":"PAGESETUPDLGORD","features":[355]},{"name":"PAGESETUPDLGORDMOTIF","features":[355]},{"name":"PBBS_NORMAL","features":[355]},{"name":"PBBS_PARTIAL","features":[355]},{"name":"PBBVS_NORMAL","features":[355]},{"name":"PBBVS_PARTIAL","features":[355]},{"name":"PBDDS_DISABLED","features":[355]},{"name":"PBDDS_NORMAL","features":[355]},{"name":"PBFS_ERROR","features":[355]},{"name":"PBFS_NORMAL","features":[355]},{"name":"PBFS_PARTIAL","features":[355]},{"name":"PBFS_PAUSED","features":[355]},{"name":"PBFVS_ERROR","features":[355]},{"name":"PBFVS_NORMAL","features":[355]},{"name":"PBFVS_PARTIAL","features":[355]},{"name":"PBFVS_PAUSED","features":[355]},{"name":"PBM_DELTAPOS","features":[355]},{"name":"PBM_GETBARCOLOR","features":[355]},{"name":"PBM_GETBKCOLOR","features":[355]},{"name":"PBM_GETPOS","features":[355]},{"name":"PBM_GETRANGE","features":[355]},{"name":"PBM_GETSTATE","features":[355]},{"name":"PBM_GETSTEP","features":[355]},{"name":"PBM_SETBARCOLOR","features":[355]},{"name":"PBM_SETBKCOLOR","features":[355]},{"name":"PBM_SETMARQUEE","features":[355]},{"name":"PBM_SETPOS","features":[355]},{"name":"PBM_SETRANGE","features":[355]},{"name":"PBM_SETRANGE32","features":[355]},{"name":"PBM_SETSTATE","features":[355]},{"name":"PBM_SETSTEP","features":[355]},{"name":"PBM_STEPIT","features":[355]},{"name":"PBRANGE","features":[355]},{"name":"PBST_ERROR","features":[355]},{"name":"PBST_NORMAL","features":[355]},{"name":"PBST_PAUSED","features":[355]},{"name":"PBS_DEFAULTED","features":[355]},{"name":"PBS_DEFAULTED_ANIMATING","features":[355]},{"name":"PBS_DISABLED","features":[355]},{"name":"PBS_HOT","features":[355]},{"name":"PBS_MARQUEE","features":[355]},{"name":"PBS_NORMAL","features":[355]},{"name":"PBS_PRESSED","features":[355]},{"name":"PBS_SMOOTH","features":[355]},{"name":"PBS_SMOOTHREVERSE","features":[355]},{"name":"PBS_VERTICAL","features":[355]},{"name":"PFNDACOMPARE","features":[305,355]},{"name":"PFNDACOMPARECONST","features":[305,355]},{"name":"PFNDAENUMCALLBACK","features":[355]},{"name":"PFNDAENUMCALLBACKCONST","features":[355]},{"name":"PFNDPAMERGE","features":[305,355]},{"name":"PFNDPAMERGECONST","features":[305,355]},{"name":"PFNDPASTREAM","features":[356,355]},{"name":"PFNLVCOMPARE","features":[305,355]},{"name":"PFNLVGROUPCOMPARE","features":[355]},{"name":"PFNPROPSHEETCALLBACK","features":[305,355]},{"name":"PFNTVCOMPARE","features":[305,355]},{"name":"PFTASKDIALOGCALLBACK","features":[305,355]},{"name":"PGB_BOTTOMORRIGHT","features":[355]},{"name":"PGB_TOPORLEFT","features":[355]},{"name":"PGF_CALCHEIGHT","features":[355]},{"name":"PGF_CALCWIDTH","features":[355]},{"name":"PGF_DEPRESSED","features":[355]},{"name":"PGF_GRAYED","features":[355]},{"name":"PGF_HOT","features":[355]},{"name":"PGF_INVISIBLE","features":[355]},{"name":"PGF_NORMAL","features":[355]},{"name":"PGF_SCROLLDOWN","features":[355]},{"name":"PGF_SCROLLLEFT","features":[355]},{"name":"PGF_SCROLLRIGHT","features":[355]},{"name":"PGF_SCROLLUP","features":[355]},{"name":"PGK_CONTROL","features":[355]},{"name":"PGK_MENU","features":[355]},{"name":"PGK_NONE","features":[355]},{"name":"PGK_SHIFT","features":[355]},{"name":"PGM_FIRST","features":[355]},{"name":"PGM_FORWARDMOUSE","features":[355]},{"name":"PGM_GETBKCOLOR","features":[355]},{"name":"PGM_GETBORDER","features":[355]},{"name":"PGM_GETBUTTONSIZE","features":[355]},{"name":"PGM_GETBUTTONSTATE","features":[355]},{"name":"PGM_GETDROPTARGET","features":[355]},{"name":"PGM_GETPOS","features":[355]},{"name":"PGM_RECALCSIZE","features":[355]},{"name":"PGM_SETBKCOLOR","features":[355]},{"name":"PGM_SETBORDER","features":[355]},{"name":"PGM_SETBUTTONSIZE","features":[355]},{"name":"PGM_SETCHILD","features":[355]},{"name":"PGM_SETPOS","features":[355]},{"name":"PGM_SETSCROLLINFO","features":[355]},{"name":"PGN_CALCSIZE","features":[355]},{"name":"PGN_FIRST","features":[355]},{"name":"PGN_HOTITEMCHANGE","features":[355]},{"name":"PGN_LAST","features":[355]},{"name":"PGN_SCROLL","features":[355]},{"name":"PGRP_DOWN","features":[355]},{"name":"PGRP_DOWNHORZ","features":[355]},{"name":"PGRP_UP","features":[355]},{"name":"PGRP_UPHORZ","features":[355]},{"name":"PGS_AUTOSCROLL","features":[355]},{"name":"PGS_DRAGNDROP","features":[355]},{"name":"PGS_HORZ","features":[355]},{"name":"PGS_VERT","features":[355]},{"name":"POINTER_DEVICE_CURSOR_INFO","features":[355]},{"name":"POINTER_DEVICE_CURSOR_TYPE","features":[355]},{"name":"POINTER_DEVICE_CURSOR_TYPE_ERASER","features":[355]},{"name":"POINTER_DEVICE_CURSOR_TYPE_MAX","features":[355]},{"name":"POINTER_DEVICE_CURSOR_TYPE_TIP","features":[355]},{"name":"POINTER_DEVICE_CURSOR_TYPE_UNKNOWN","features":[355]},{"name":"POINTER_DEVICE_INFO","features":[305,316,355]},{"name":"POINTER_DEVICE_PROPERTY","features":[355]},{"name":"POINTER_DEVICE_TYPE","features":[355]},{"name":"POINTER_DEVICE_TYPE_EXTERNAL_PEN","features":[355]},{"name":"POINTER_DEVICE_TYPE_INTEGRATED_PEN","features":[355]},{"name":"POINTER_DEVICE_TYPE_MAX","features":[355]},{"name":"POINTER_DEVICE_TYPE_TOUCH","features":[355]},{"name":"POINTER_DEVICE_TYPE_TOUCH_PAD","features":[355]},{"name":"POINTER_FEEDBACK_DEFAULT","features":[355]},{"name":"POINTER_FEEDBACK_INDIRECT","features":[355]},{"name":"POINTER_FEEDBACK_MODE","features":[355]},{"name":"POINTER_FEEDBACK_NONE","features":[355]},{"name":"POINTER_TYPE_INFO","features":[305,355,617,367]},{"name":"POPUPCHECKBACKGROUNDSTATES","features":[355]},{"name":"POPUPCHECKSTATES","features":[355]},{"name":"POPUPITEMFOCUSABLESTATES","features":[355]},{"name":"POPUPITEMKBFOCUSSTATES","features":[355]},{"name":"POPUPITEMSTATES","features":[355]},{"name":"POPUPSUBMENUHCHOTSTATES","features":[355]},{"name":"POPUPSUBMENUSTATES","features":[355]},{"name":"PO_CLASS","features":[355]},{"name":"PO_GLOBAL","features":[355]},{"name":"PO_NOTFOUND","features":[355]},{"name":"PO_PART","features":[355]},{"name":"PO_STATE","features":[355]},{"name":"PP_BAR","features":[355]},{"name":"PP_BARVERT","features":[355]},{"name":"PP_CHUNK","features":[355]},{"name":"PP_CHUNKVERT","features":[355]},{"name":"PP_FILL","features":[355]},{"name":"PP_FILLVERT","features":[355]},{"name":"PP_MOVEOVERLAY","features":[355]},{"name":"PP_MOVEOVERLAYVERT","features":[355]},{"name":"PP_PULSEOVERLAY","features":[355]},{"name":"PP_PULSEOVERLAYVERT","features":[355]},{"name":"PP_TRANSPARENTBAR","features":[355]},{"name":"PP_TRANSPARENTBARVERT","features":[355]},{"name":"PRINTDLGEXORD","features":[355]},{"name":"PRINTDLGORD","features":[355]},{"name":"PRNSETUPDLGORD","features":[355]},{"name":"PROGRESSPARTS","features":[355]},{"name":"PROGRESS_CLASS","features":[355]},{"name":"PROGRESS_CLASSA","features":[355]},{"name":"PROGRESS_CLASSW","features":[355]},{"name":"PROPERTYORIGIN","features":[355]},{"name":"PROPSHEETHEADERA_V1","features":[305,316,355,367]},{"name":"PROPSHEETHEADERA_V2","features":[305,316,355,367]},{"name":"PROPSHEETHEADERW_V1","features":[305,316,355,367]},{"name":"PROPSHEETHEADERW_V2","features":[305,316,355,367]},{"name":"PROPSHEETPAGEA","features":[305,316,355,367]},{"name":"PROPSHEETPAGEA_V1","features":[305,316,355,367]},{"name":"PROPSHEETPAGEA_V2","features":[305,316,355,367]},{"name":"PROPSHEETPAGEA_V3","features":[305,316,355,367]},{"name":"PROPSHEETPAGEW","features":[305,316,355,367]},{"name":"PROPSHEETPAGEW_V1","features":[305,316,355,367]},{"name":"PROPSHEETPAGEW_V2","features":[305,316,355,367]},{"name":"PROPSHEETPAGEW_V3","features":[305,316,355,367]},{"name":"PROP_LG_CXDLG","features":[355]},{"name":"PROP_LG_CYDLG","features":[355]},{"name":"PROP_MED_CXDLG","features":[355]},{"name":"PROP_MED_CYDLG","features":[355]},{"name":"PROP_SM_CXDLG","features":[355]},{"name":"PROP_SM_CYDLG","features":[355]},{"name":"PSBTN_APPLYNOW","features":[355]},{"name":"PSBTN_BACK","features":[355]},{"name":"PSBTN_CANCEL","features":[355]},{"name":"PSBTN_FINISH","features":[355]},{"name":"PSBTN_HELP","features":[355]},{"name":"PSBTN_MAX","features":[355]},{"name":"PSBTN_NEXT","features":[355]},{"name":"PSBTN_OK","features":[355]},{"name":"PSCB_BUTTONPRESSED","features":[355]},{"name":"PSCB_INITIALIZED","features":[355]},{"name":"PSCB_PRECREATE","features":[355]},{"name":"PSHNOTIFY","features":[305,355]},{"name":"PSH_AEROWIZARD","features":[355]},{"name":"PSH_DEFAULT","features":[355]},{"name":"PSH_HASHELP","features":[355]},{"name":"PSH_HEADER","features":[355]},{"name":"PSH_HEADERBITMAP","features":[355]},{"name":"PSH_MODELESS","features":[355]},{"name":"PSH_NOAPPLYNOW","features":[355]},{"name":"PSH_NOCONTEXTHELP","features":[355]},{"name":"PSH_NOMARGIN","features":[355]},{"name":"PSH_PROPSHEETPAGE","features":[355]},{"name":"PSH_PROPTITLE","features":[355]},{"name":"PSH_RESIZABLE","features":[355]},{"name":"PSH_RTLREADING","features":[355]},{"name":"PSH_STRETCHWATERMARK","features":[355]},{"name":"PSH_USECALLBACK","features":[355]},{"name":"PSH_USEHBMHEADER","features":[355]},{"name":"PSH_USEHBMWATERMARK","features":[355]},{"name":"PSH_USEHICON","features":[355]},{"name":"PSH_USEHPLWATERMARK","features":[355]},{"name":"PSH_USEICONID","features":[355]},{"name":"PSH_USEPAGELANG","features":[355]},{"name":"PSH_USEPSTARTPAGE","features":[355]},{"name":"PSH_WATERMARK","features":[355]},{"name":"PSH_WIZARD","features":[355]},{"name":"PSH_WIZARD97","features":[355]},{"name":"PSH_WIZARDCONTEXTHELP","features":[355]},{"name":"PSH_WIZARDHASFINISH","features":[355]},{"name":"PSH_WIZARD_LITE","features":[355]},{"name":"PSM_ADDPAGE","features":[355]},{"name":"PSM_APPLY","features":[355]},{"name":"PSM_CANCELTOCLOSE","features":[355]},{"name":"PSM_CHANGED","features":[355]},{"name":"PSM_ENABLEWIZBUTTONS","features":[355]},{"name":"PSM_GETCURRENTPAGEHWND","features":[355]},{"name":"PSM_GETRESULT","features":[355]},{"name":"PSM_GETTABCONTROL","features":[355]},{"name":"PSM_HWNDTOINDEX","features":[355]},{"name":"PSM_IDTOINDEX","features":[355]},{"name":"PSM_INDEXTOHWND","features":[355]},{"name":"PSM_INDEXTOID","features":[355]},{"name":"PSM_INDEXTOPAGE","features":[355]},{"name":"PSM_INSERTPAGE","features":[355]},{"name":"PSM_ISDIALOGMESSAGE","features":[355]},{"name":"PSM_PAGETOINDEX","features":[355]},{"name":"PSM_PRESSBUTTON","features":[355]},{"name":"PSM_QUERYSIBLINGS","features":[355]},{"name":"PSM_REBOOTSYSTEM","features":[355]},{"name":"PSM_RECALCPAGESIZES","features":[355]},{"name":"PSM_REMOVEPAGE","features":[355]},{"name":"PSM_RESTARTWINDOWS","features":[355]},{"name":"PSM_SETBUTTONTEXT","features":[355]},{"name":"PSM_SETBUTTONTEXTW","features":[355]},{"name":"PSM_SETCURSEL","features":[355]},{"name":"PSM_SETCURSELID","features":[355]},{"name":"PSM_SETFINISHTEXT","features":[355]},{"name":"PSM_SETFINISHTEXTA","features":[355]},{"name":"PSM_SETFINISHTEXTW","features":[355]},{"name":"PSM_SETHEADERSUBTITLE","features":[355]},{"name":"PSM_SETHEADERSUBTITLEA","features":[355]},{"name":"PSM_SETHEADERSUBTITLEW","features":[355]},{"name":"PSM_SETHEADERTITLE","features":[355]},{"name":"PSM_SETHEADERTITLEA","features":[355]},{"name":"PSM_SETHEADERTITLEW","features":[355]},{"name":"PSM_SETNEXTTEXT","features":[355]},{"name":"PSM_SETNEXTTEXTW","features":[355]},{"name":"PSM_SETTITLE","features":[355]},{"name":"PSM_SETTITLEA","features":[355]},{"name":"PSM_SETTITLEW","features":[355]},{"name":"PSM_SETWIZBUTTONS","features":[355]},{"name":"PSM_SHOWWIZBUTTONS","features":[355]},{"name":"PSM_UNCHANGED","features":[355]},{"name":"PSNRET_INVALID","features":[355]},{"name":"PSNRET_INVALID_NOCHANGEPAGE","features":[355]},{"name":"PSNRET_MESSAGEHANDLED","features":[355]},{"name":"PSNRET_NOERROR","features":[355]},{"name":"PSN_APPLY","features":[355]},{"name":"PSN_FIRST","features":[355]},{"name":"PSN_GETOBJECT","features":[355]},{"name":"PSN_HELP","features":[355]},{"name":"PSN_KILLACTIVE","features":[355]},{"name":"PSN_LAST","features":[355]},{"name":"PSN_QUERYCANCEL","features":[355]},{"name":"PSN_QUERYINITIALFOCUS","features":[355]},{"name":"PSN_RESET","features":[355]},{"name":"PSN_SETACTIVE","features":[355]},{"name":"PSN_TRANSLATEACCELERATOR","features":[355]},{"name":"PSN_WIZBACK","features":[355]},{"name":"PSN_WIZFINISH","features":[355]},{"name":"PSN_WIZNEXT","features":[355]},{"name":"PSPCB_ADDREF","features":[355]},{"name":"PSPCB_CREATE","features":[355]},{"name":"PSPCB_MESSAGE","features":[355]},{"name":"PSPCB_RELEASE","features":[355]},{"name":"PSPCB_SI_INITDIALOG","features":[355]},{"name":"PSP_DEFAULT","features":[355]},{"name":"PSP_DLGINDIRECT","features":[355]},{"name":"PSP_HASHELP","features":[355]},{"name":"PSP_HIDEHEADER","features":[355]},{"name":"PSP_PREMATURE","features":[355]},{"name":"PSP_RTLREADING","features":[355]},{"name":"PSP_USECALLBACK","features":[355]},{"name":"PSP_USEFUSIONCONTEXT","features":[355]},{"name":"PSP_USEHEADERSUBTITLE","features":[355]},{"name":"PSP_USEHEADERTITLE","features":[355]},{"name":"PSP_USEHICON","features":[355]},{"name":"PSP_USEICONID","features":[355]},{"name":"PSP_USEREFPARENT","features":[355]},{"name":"PSP_USETITLE","features":[355]},{"name":"PSWIZBF_ELEVATIONREQUIRED","features":[355]},{"name":"PSWIZB_BACK","features":[355]},{"name":"PSWIZB_CANCEL","features":[355]},{"name":"PSWIZB_DISABLEDFINISH","features":[355]},{"name":"PSWIZB_FINISH","features":[355]},{"name":"PSWIZB_NEXT","features":[355]},{"name":"PSWIZB_RESTORE","features":[355]},{"name":"PSWIZB_SHOW","features":[355]},{"name":"PUSHBUTTONDROPDOWNSTATES","features":[355]},{"name":"PUSHBUTTONSTATES","features":[355]},{"name":"PackTouchHitTestingProximityEvaluation","features":[305,355]},{"name":"PropertySheetA","features":[305,316,355,367]},{"name":"PropertySheetW","features":[305,316,355,367]},{"name":"RADIOBUTTONSTATES","features":[355]},{"name":"RBAB_ADDBAND","features":[355]},{"name":"RBAB_AUTOSIZE","features":[355]},{"name":"RBBIM_BACKGROUND","features":[355]},{"name":"RBBIM_CHEVRONLOCATION","features":[355]},{"name":"RBBIM_CHEVRONSTATE","features":[355]},{"name":"RBBIM_CHILD","features":[355]},{"name":"RBBIM_CHILDSIZE","features":[355]},{"name":"RBBIM_COLORS","features":[355]},{"name":"RBBIM_HEADERSIZE","features":[355]},{"name":"RBBIM_ID","features":[355]},{"name":"RBBIM_IDEALSIZE","features":[355]},{"name":"RBBIM_IMAGE","features":[355]},{"name":"RBBIM_LPARAM","features":[355]},{"name":"RBBIM_SIZE","features":[355]},{"name":"RBBIM_STYLE","features":[355]},{"name":"RBBIM_TEXT","features":[355]},{"name":"RBBS_BREAK","features":[355]},{"name":"RBBS_CHILDEDGE","features":[355]},{"name":"RBBS_FIXEDBMP","features":[355]},{"name":"RBBS_FIXEDSIZE","features":[355]},{"name":"RBBS_GRIPPERALWAYS","features":[355]},{"name":"RBBS_HIDDEN","features":[355]},{"name":"RBBS_HIDETITLE","features":[355]},{"name":"RBBS_NOGRIPPER","features":[355]},{"name":"RBBS_NOVERT","features":[355]},{"name":"RBBS_TOPALIGN","features":[355]},{"name":"RBBS_USECHEVRON","features":[355]},{"name":"RBBS_VARIABLEHEIGHT","features":[355]},{"name":"RBHITTESTINFO","features":[305,355]},{"name":"RBHT_CAPTION","features":[355]},{"name":"RBHT_CHEVRON","features":[355]},{"name":"RBHT_CLIENT","features":[355]},{"name":"RBHT_GRABBER","features":[355]},{"name":"RBHT_NOWHERE","features":[355]},{"name":"RBHT_SPLITTER","features":[355]},{"name":"RBIM_IMAGELIST","features":[355]},{"name":"RBNM_ID","features":[355]},{"name":"RBNM_LPARAM","features":[355]},{"name":"RBNM_STYLE","features":[355]},{"name":"RBN_AUTOBREAK","features":[355]},{"name":"RBN_AUTOSIZE","features":[355]},{"name":"RBN_BEGINDRAG","features":[355]},{"name":"RBN_CHEVRONPUSHED","features":[355]},{"name":"RBN_CHILDSIZE","features":[355]},{"name":"RBN_DELETEDBAND","features":[355]},{"name":"RBN_DELETINGBAND","features":[355]},{"name":"RBN_ENDDRAG","features":[355]},{"name":"RBN_FIRST","features":[355]},{"name":"RBN_GETOBJECT","features":[355]},{"name":"RBN_HEIGHTCHANGE","features":[355]},{"name":"RBN_LAST","features":[355]},{"name":"RBN_LAYOUTCHANGED","features":[355]},{"name":"RBN_MINMAX","features":[355]},{"name":"RBN_SPLITTERDRAG","features":[355]},{"name":"RBSTR_CHANGERECT","features":[355]},{"name":"RBS_AUTOSIZE","features":[355]},{"name":"RBS_BANDBORDERS","features":[355]},{"name":"RBS_CHECKEDDISABLED","features":[355]},{"name":"RBS_CHECKEDHOT","features":[355]},{"name":"RBS_CHECKEDNORMAL","features":[355]},{"name":"RBS_CHECKEDPRESSED","features":[355]},{"name":"RBS_DBLCLKTOGGLE","features":[355]},{"name":"RBS_DISABLED","features":[355]},{"name":"RBS_FIXEDORDER","features":[355]},{"name":"RBS_HOT","features":[355]},{"name":"RBS_NORMAL","features":[355]},{"name":"RBS_PUSHED","features":[355]},{"name":"RBS_REGISTERDROP","features":[355]},{"name":"RBS_TOOLTIPS","features":[355]},{"name":"RBS_UNCHECKEDDISABLED","features":[355]},{"name":"RBS_UNCHECKEDHOT","features":[355]},{"name":"RBS_UNCHECKEDNORMAL","features":[355]},{"name":"RBS_UNCHECKEDPRESSED","features":[355]},{"name":"RBS_VARHEIGHT","features":[355]},{"name":"RBS_VERTICALGRIPPER","features":[355]},{"name":"RB_BEGINDRAG","features":[355]},{"name":"RB_DELETEBAND","features":[355]},{"name":"RB_DRAGMOVE","features":[355]},{"name":"RB_ENDDRAG","features":[355]},{"name":"RB_GETBANDBORDERS","features":[355]},{"name":"RB_GETBANDCOUNT","features":[355]},{"name":"RB_GETBANDINFO","features":[355]},{"name":"RB_GETBANDINFOA","features":[355]},{"name":"RB_GETBANDINFOW","features":[355]},{"name":"RB_GETBANDMARGINS","features":[355]},{"name":"RB_GETBARHEIGHT","features":[355]},{"name":"RB_GETBARINFO","features":[355]},{"name":"RB_GETBKCOLOR","features":[355]},{"name":"RB_GETCOLORSCHEME","features":[355]},{"name":"RB_GETDROPTARGET","features":[355]},{"name":"RB_GETEXTENDEDSTYLE","features":[355]},{"name":"RB_GETPALETTE","features":[355]},{"name":"RB_GETRECT","features":[355]},{"name":"RB_GETROWCOUNT","features":[355]},{"name":"RB_GETROWHEIGHT","features":[355]},{"name":"RB_GETTEXTCOLOR","features":[355]},{"name":"RB_GETTOOLTIPS","features":[355]},{"name":"RB_GETUNICODEFORMAT","features":[355]},{"name":"RB_HITTEST","features":[355]},{"name":"RB_IDTOINDEX","features":[355]},{"name":"RB_INSERTBAND","features":[355]},{"name":"RB_INSERTBANDA","features":[355]},{"name":"RB_INSERTBANDW","features":[355]},{"name":"RB_MAXIMIZEBAND","features":[355]},{"name":"RB_MINIMIZEBAND","features":[355]},{"name":"RB_MOVEBAND","features":[355]},{"name":"RB_PUSHCHEVRON","features":[355]},{"name":"RB_SETBANDINFO","features":[355]},{"name":"RB_SETBANDINFOA","features":[355]},{"name":"RB_SETBANDINFOW","features":[355]},{"name":"RB_SETBANDWIDTH","features":[355]},{"name":"RB_SETBARINFO","features":[355]},{"name":"RB_SETBKCOLOR","features":[355]},{"name":"RB_SETCOLORSCHEME","features":[355]},{"name":"RB_SETEXTENDEDSTYLE","features":[355]},{"name":"RB_SETPALETTE","features":[355]},{"name":"RB_SETPARENT","features":[355]},{"name":"RB_SETTEXTCOLOR","features":[355]},{"name":"RB_SETTOOLTIPS","features":[355]},{"name":"RB_SETUNICODEFORMAT","features":[355]},{"name":"RB_SETWINDOWTHEME","features":[355]},{"name":"RB_SHOWBAND","features":[355]},{"name":"RB_SIZETORECT","features":[355]},{"name":"READONLYSTATES","features":[355]},{"name":"REBARBANDINFOA","features":[305,316,355]},{"name":"REBARBANDINFOW","features":[305,316,355]},{"name":"REBARCLASSNAME","features":[355]},{"name":"REBARCLASSNAMEA","features":[355]},{"name":"REBARCLASSNAMEW","features":[355]},{"name":"REBARINFO","features":[355]},{"name":"REBARPARTS","features":[355]},{"name":"REPLACEDLGORD","features":[355]},{"name":"RESTOREBUTTONSTATES","features":[355]},{"name":"RP_BACKGROUND","features":[355]},{"name":"RP_BAND","features":[355]},{"name":"RP_CHEVRON","features":[355]},{"name":"RP_CHEVRONVERT","features":[355]},{"name":"RP_GRIPPER","features":[355]},{"name":"RP_GRIPPERVERT","features":[355]},{"name":"RP_SPLITTER","features":[355]},{"name":"RP_SPLITTERVERT","features":[355]},{"name":"RUNDLGORD","features":[355]},{"name":"RegisterPointerDeviceNotifications","features":[305,355]},{"name":"RegisterTouchHitTestingWindow","features":[305,355]},{"name":"SBARS_SIZEGRIP","features":[355]},{"name":"SBARS_TOOLTIPS","features":[355]},{"name":"SBN_FIRST","features":[355]},{"name":"SBN_LAST","features":[355]},{"name":"SBN_SIMPLEMODECHANGE","features":[355]},{"name":"SBP_ARROWBTN","features":[355]},{"name":"SBP_GRIPPERHORZ","features":[355]},{"name":"SBP_GRIPPERVERT","features":[355]},{"name":"SBP_LOWERTRACKHORZ","features":[355]},{"name":"SBP_LOWERTRACKVERT","features":[355]},{"name":"SBP_SIZEBOX","features":[355]},{"name":"SBP_SIZEBOXBKGND","features":[355]},{"name":"SBP_THUMBBTNHORZ","features":[355]},{"name":"SBP_THUMBBTNVERT","features":[355]},{"name":"SBP_UPPERTRACKHORZ","features":[355]},{"name":"SBP_UPPERTRACKVERT","features":[355]},{"name":"SBS_DISABLED","features":[355]},{"name":"SBS_HOT","features":[355]},{"name":"SBS_NORMAL","features":[355]},{"name":"SBS_PUSHED","features":[355]},{"name":"SBT_NOBORDERS","features":[355]},{"name":"SBT_NOTABPARSING","features":[355]},{"name":"SBT_OWNERDRAW","features":[355]},{"name":"SBT_POPOUT","features":[355]},{"name":"SBT_RTLREADING","features":[355]},{"name":"SBT_TOOLTIPS","features":[355]},{"name":"SB_GETBORDERS","features":[355]},{"name":"SB_GETICON","features":[355]},{"name":"SB_GETPARTS","features":[355]},{"name":"SB_GETRECT","features":[355]},{"name":"SB_GETTEXT","features":[355]},{"name":"SB_GETTEXTA","features":[355]},{"name":"SB_GETTEXTLENGTH","features":[355]},{"name":"SB_GETTEXTLENGTHA","features":[355]},{"name":"SB_GETTEXTLENGTHW","features":[355]},{"name":"SB_GETTEXTW","features":[355]},{"name":"SB_GETTIPTEXTA","features":[355]},{"name":"SB_GETTIPTEXTW","features":[355]},{"name":"SB_GETUNICODEFORMAT","features":[355]},{"name":"SB_ISSIMPLE","features":[355]},{"name":"SB_SETBKCOLOR","features":[355]},{"name":"SB_SETICON","features":[355]},{"name":"SB_SETMINHEIGHT","features":[355]},{"name":"SB_SETPARTS","features":[355]},{"name":"SB_SETTEXT","features":[355]},{"name":"SB_SETTEXTA","features":[355]},{"name":"SB_SETTEXTW","features":[355]},{"name":"SB_SETTIPTEXTA","features":[355]},{"name":"SB_SETTIPTEXTW","features":[355]},{"name":"SB_SETUNICODEFORMAT","features":[355]},{"name":"SB_SIMPLE","features":[355]},{"name":"SB_SIMPLEID","features":[355]},{"name":"SCBS_DISABLED","features":[355]},{"name":"SCBS_HOT","features":[355]},{"name":"SCBS_NORMAL","features":[355]},{"name":"SCBS_PUSHED","features":[355]},{"name":"SCRBS_DISABLED","features":[355]},{"name":"SCRBS_HOT","features":[355]},{"name":"SCRBS_HOVER","features":[355]},{"name":"SCRBS_NORMAL","features":[355]},{"name":"SCRBS_PRESSED","features":[355]},{"name":"SCROLLBARPARTS","features":[355]},{"name":"SCROLLBARSTYLESTATES","features":[355]},{"name":"SCS_ACTIVE","features":[355]},{"name":"SCS_DISABLED","features":[355]},{"name":"SCS_INACTIVE","features":[355]},{"name":"SECTIONTITLELINKSTATES","features":[355]},{"name":"SET_THEME_APP_PROPERTIES_FLAGS","features":[355]},{"name":"SFRB_ACTIVE","features":[355]},{"name":"SFRB_INACTIVE","features":[355]},{"name":"SFRL_ACTIVE","features":[355]},{"name":"SFRL_INACTIVE","features":[355]},{"name":"SFRR_ACTIVE","features":[355]},{"name":"SFRR_INACTIVE","features":[355]},{"name":"SHOWCALENDARBUTTONRIGHTSTATES","features":[355]},{"name":"SIZEBOXSTATES","features":[355]},{"name":"SIZINGTYPE","features":[355]},{"name":"SMALLCAPTIONSTATES","features":[355]},{"name":"SMALLCLOSEBUTTONSTATES","features":[355]},{"name":"SMALLFRAMEBOTTOMSTATES","features":[355]},{"name":"SMALLFRAMELEFTSTATES","features":[355]},{"name":"SMALLFRAMERIGHTSTATES","features":[355]},{"name":"SOFTWAREEXPLORERSTATES","features":[355]},{"name":"SPECIALGROUPCOLLAPSESTATES","features":[355]},{"name":"SPECIALGROUPEXPANDSTATES","features":[355]},{"name":"SPINPARTS","features":[355]},{"name":"SPLITSV_HOT","features":[355]},{"name":"SPLITSV_NORMAL","features":[355]},{"name":"SPLITSV_PRESSED","features":[355]},{"name":"SPLITS_HOT","features":[355]},{"name":"SPLITS_NORMAL","features":[355]},{"name":"SPLITS_PRESSED","features":[355]},{"name":"SPLITTERSTATES","features":[355]},{"name":"SPLITTERVERTSTATES","features":[355]},{"name":"SPLS_HOT","features":[355]},{"name":"SPLS_NORMAL","features":[355]},{"name":"SPLS_PRESSED","features":[355]},{"name":"SPMPT_DISABLED","features":[355]},{"name":"SPMPT_FOCUSED","features":[355]},{"name":"SPMPT_HOT","features":[355]},{"name":"SPMPT_NORMAL","features":[355]},{"name":"SPMPT_SELECTED","features":[355]},{"name":"SPNP_DOWN","features":[355]},{"name":"SPNP_DOWNHORZ","features":[355]},{"name":"SPNP_UP","features":[355]},{"name":"SPNP_UPHORZ","features":[355]},{"name":"SPOB_DISABLED","features":[355]},{"name":"SPOB_FOCUSED","features":[355]},{"name":"SPOB_HOT","features":[355]},{"name":"SPOB_NORMAL","features":[355]},{"name":"SPOB_SELECTED","features":[355]},{"name":"SPP_LOGOFF","features":[355]},{"name":"SPP_LOGOFFBUTTONS","features":[355]},{"name":"SPP_LOGOFFSPLITBUTTONDROPDOWN","features":[355]},{"name":"SPP_MOREPROGRAMS","features":[355]},{"name":"SPP_MOREPROGRAMSARROW","features":[355]},{"name":"SPP_MOREPROGRAMSARROWBACK","features":[355]},{"name":"SPP_MOREPROGRAMSTAB","features":[355]},{"name":"SPP_NSCHOST","features":[355]},{"name":"SPP_OPENBOX","features":[355]},{"name":"SPP_PLACESLIST","features":[355]},{"name":"SPP_PLACESLISTSEPARATOR","features":[355]},{"name":"SPP_PREVIEW","features":[355]},{"name":"SPP_PROGLIST","features":[355]},{"name":"SPP_PROGLISTSEPARATOR","features":[355]},{"name":"SPP_SEARCHVIEW","features":[355]},{"name":"SPP_SOFTWAREEXPLORER","features":[355]},{"name":"SPP_TOPMATCH","features":[355]},{"name":"SPP_USERPANE","features":[355]},{"name":"SPP_USERPICTURE","features":[355]},{"name":"SPSB_HOT","features":[355]},{"name":"SPSB_NORMAL","features":[355]},{"name":"SPSB_PRESSED","features":[355]},{"name":"SPSE_DISABLED","features":[355]},{"name":"SPSE_FOCUSED","features":[355]},{"name":"SPSE_HOT","features":[355]},{"name":"SPSE_NORMAL","features":[355]},{"name":"SPSE_SELECTED","features":[355]},{"name":"SPS_HOT","features":[355]},{"name":"SPS_NORMAL","features":[355]},{"name":"SPS_PRESSED","features":[355]},{"name":"SP_GRIPPER","features":[355]},{"name":"SP_GRIPPERPANE","features":[355]},{"name":"SP_PANE","features":[355]},{"name":"STANDARDSTATES","features":[355]},{"name":"STARTPANELPARTS","features":[355]},{"name":"STATE_SYSTEM_FOCUSABLE","features":[355]},{"name":"STATE_SYSTEM_INVISIBLE","features":[355]},{"name":"STATE_SYSTEM_OFFSCREEN","features":[355]},{"name":"STATE_SYSTEM_PRESSED","features":[355]},{"name":"STATE_SYSTEM_UNAVAILABLE","features":[355]},{"name":"STATICPARTS","features":[355]},{"name":"STATUSCLASSNAME","features":[355]},{"name":"STATUSCLASSNAMEA","features":[355]},{"name":"STATUSCLASSNAMEW","features":[355]},{"name":"STATUSPARTS","features":[355]},{"name":"STAT_TEXT","features":[355]},{"name":"STD_COPY","features":[355]},{"name":"STD_CUT","features":[355]},{"name":"STD_DELETE","features":[355]},{"name":"STD_FILENEW","features":[355]},{"name":"STD_FILEOPEN","features":[355]},{"name":"STD_FILESAVE","features":[355]},{"name":"STD_FIND","features":[355]},{"name":"STD_HELP","features":[355]},{"name":"STD_PASTE","features":[355]},{"name":"STD_PRINT","features":[355]},{"name":"STD_PRINTPRE","features":[355]},{"name":"STD_PROPERTIES","features":[355]},{"name":"STD_REDOW","features":[355]},{"name":"STD_REPLACE","features":[355]},{"name":"STD_UNDO","features":[355]},{"name":"ST_STRETCH","features":[355]},{"name":"ST_TILE","features":[355]},{"name":"ST_TRUESIZE","features":[355]},{"name":"SYSBUTTONSTATES","features":[355]},{"name":"SYSTEMCLOSEHCHOTSTATES","features":[355]},{"name":"SYSTEMCLOSESTATES","features":[355]},{"name":"SYSTEMMAXIMIZEHCHOTSTATES","features":[355]},{"name":"SYSTEMMAXIMIZESTATES","features":[355]},{"name":"SYSTEMMINIMIZEHCHOTSTATES","features":[355]},{"name":"SYSTEMMINIMIZESTATES","features":[355]},{"name":"SYSTEMRESTOREHCHOTSTATES","features":[355]},{"name":"SYSTEMRESTORESTATES","features":[355]},{"name":"SZB_HALFBOTTOMLEFTALIGN","features":[355]},{"name":"SZB_HALFBOTTOMRIGHTALIGN","features":[355]},{"name":"SZB_HALFTOPLEFTALIGN","features":[355]},{"name":"SZB_HALFTOPRIGHTALIGN","features":[355]},{"name":"SZB_LEFTALIGN","features":[355]},{"name":"SZB_RIGHTALIGN","features":[355]},{"name":"SZB_TOPLEFTALIGN","features":[355]},{"name":"SZB_TOPRIGHTALIGN","features":[355]},{"name":"SZ_THDOCPROP_AUTHOR","features":[355]},{"name":"SZ_THDOCPROP_CANONICALNAME","features":[355]},{"name":"SZ_THDOCPROP_DISPLAYNAME","features":[355]},{"name":"SZ_THDOCPROP_TOOLTIP","features":[355]},{"name":"SetScrollInfo","features":[305,355,367]},{"name":"SetScrollPos","features":[305,355,367]},{"name":"SetScrollRange","features":[305,355,367]},{"name":"SetThemeAppProperties","features":[355]},{"name":"SetWindowFeedbackSetting","features":[305,355]},{"name":"SetWindowTheme","features":[305,355]},{"name":"SetWindowThemeAttribute","features":[305,355]},{"name":"ShowHideMenuCtl","features":[305,355]},{"name":"ShowScrollBar","features":[305,355,367]},{"name":"Str_SetPtrW","features":[305,355]},{"name":"TABITEMBOTHEDGESTATES","features":[355]},{"name":"TABITEMLEFTEDGESTATES","features":[355]},{"name":"TABITEMRIGHTEDGESTATES","features":[355]},{"name":"TABITEMSTATES","features":[355]},{"name":"TABPARTS","features":[355]},{"name":"TABP_AEROWIZARDBODY","features":[355]},{"name":"TABP_BODY","features":[355]},{"name":"TABP_PANE","features":[355]},{"name":"TABP_TABITEM","features":[355]},{"name":"TABP_TABITEMBOTHEDGE","features":[355]},{"name":"TABP_TABITEMLEFTEDGE","features":[355]},{"name":"TABP_TABITEMRIGHTEDGE","features":[355]},{"name":"TABP_TOPTABITEM","features":[355]},{"name":"TABP_TOPTABITEMBOTHEDGE","features":[355]},{"name":"TABP_TOPTABITEMLEFTEDGE","features":[355]},{"name":"TABP_TOPTABITEMRIGHTEDGE","features":[355]},{"name":"TABSTATES","features":[355]},{"name":"TAB_CONTROL_ITEM_STATE","features":[355]},{"name":"TAPF_ALLOWCOLLECTION","features":[355]},{"name":"TAPF_HASBACKGROUND","features":[355]},{"name":"TAPF_HASPERSPECTIVE","features":[355]},{"name":"TAPF_HASSTAGGER","features":[355]},{"name":"TAPF_ISRTLAWARE","features":[355]},{"name":"TAPF_NONE","features":[355]},{"name":"TAP_FLAGS","features":[355]},{"name":"TAP_STAGGERDELAY","features":[355]},{"name":"TAP_STAGGERDELAYCAP","features":[355]},{"name":"TAP_STAGGERDELAYFACTOR","features":[355]},{"name":"TAP_TRANSFORMCOUNT","features":[355]},{"name":"TAP_ZORDER","features":[355]},{"name":"TASKBANDPARTS","features":[355]},{"name":"TASKBARPARTS","features":[355]},{"name":"TASKDIALOGCONFIG","features":[305,355,367]},{"name":"TASKDIALOGPARTS","features":[355]},{"name":"TASKDIALOG_BUTTON","features":[355]},{"name":"TASKDIALOG_COMMON_BUTTON_FLAGS","features":[355]},{"name":"TASKDIALOG_ELEMENTS","features":[355]},{"name":"TASKDIALOG_FLAGS","features":[355]},{"name":"TASKDIALOG_ICON_ELEMENTS","features":[355]},{"name":"TASKDIALOG_MESSAGES","features":[355]},{"name":"TASKDIALOG_NOTIFICATIONS","features":[355]},{"name":"TASKLINKSTATES","features":[355]},{"name":"TATF_HASINITIALVALUES","features":[355]},{"name":"TATF_HASORIGINVALUES","features":[355]},{"name":"TATF_NONE","features":[355]},{"name":"TATF_TARGETVALUES_USER","features":[355]},{"name":"TATT_CLIP","features":[355]},{"name":"TATT_OPACITY","features":[355]},{"name":"TATT_SCALE_2D","features":[355]},{"name":"TATT_TRANSLATE_2D","features":[355]},{"name":"TA_CUBIC_BEZIER","features":[355]},{"name":"TA_PROPERTY","features":[355]},{"name":"TA_PROPERTY_FLAG","features":[355]},{"name":"TA_TIMINGFUNCTION","features":[355]},{"name":"TA_TIMINGFUNCTION_TYPE","features":[355]},{"name":"TA_TRANSFORM","features":[355]},{"name":"TA_TRANSFORM_2D","features":[355]},{"name":"TA_TRANSFORM_CLIP","features":[355]},{"name":"TA_TRANSFORM_FLAG","features":[355]},{"name":"TA_TRANSFORM_OPACITY","features":[355]},{"name":"TA_TRANSFORM_TYPE","features":[355]},{"name":"TBADDBITMAP","features":[305,355]},{"name":"TBBF_LARGE","features":[355]},{"name":"TBBUTTON","features":[355]},{"name":"TBBUTTON","features":[355]},{"name":"TBBUTTONINFOA","features":[355]},{"name":"TBBUTTONINFOW","features":[355]},{"name":"TBBUTTONINFOW_MASK","features":[355]},{"name":"TBCDRF_BLENDICON","features":[355]},{"name":"TBCDRF_HILITEHOTTRACK","features":[355]},{"name":"TBCDRF_NOBACKGROUND","features":[355]},{"name":"TBCDRF_NOEDGES","features":[355]},{"name":"TBCDRF_NOETCHEDEFFECT","features":[355]},{"name":"TBCDRF_NOMARK","features":[355]},{"name":"TBCDRF_NOOFFSET","features":[355]},{"name":"TBCDRF_USECDCOLORS","features":[355]},{"name":"TBCD_CHANNEL","features":[355]},{"name":"TBCD_THUMB","features":[355]},{"name":"TBCD_TICS","features":[355]},{"name":"TBDDRET_DEFAULT","features":[355]},{"name":"TBDDRET_NODEFAULT","features":[355]},{"name":"TBDDRET_TREATPRESSED","features":[355]},{"name":"TBIF_BYINDEX","features":[355]},{"name":"TBIF_COMMAND","features":[355]},{"name":"TBIF_IMAGE","features":[355]},{"name":"TBIF_LPARAM","features":[355]},{"name":"TBIF_SIZE","features":[355]},{"name":"TBIF_STATE","features":[355]},{"name":"TBIF_STYLE","features":[355]},{"name":"TBIF_TEXT","features":[355]},{"name":"TBIMHT_AFTER","features":[355]},{"name":"TBIMHT_BACKGROUND","features":[355]},{"name":"TBIMHT_NONE","features":[355]},{"name":"TBINSERTMARK","features":[355]},{"name":"TBINSERTMARK_FLAGS","features":[355]},{"name":"TBMETRICS","features":[355]},{"name":"TBMF_BARPAD","features":[355]},{"name":"TBMF_BUTTONSPACING","features":[355]},{"name":"TBMF_PAD","features":[355]},{"name":"TBM_CLEARSEL","features":[355]},{"name":"TBM_CLEARTICS","features":[355]},{"name":"TBM_GETBUDDY","features":[355]},{"name":"TBM_GETCHANNELRECT","features":[355]},{"name":"TBM_GETLINESIZE","features":[355]},{"name":"TBM_GETNUMTICS","features":[355]},{"name":"TBM_GETPAGESIZE","features":[355]},{"name":"TBM_GETPTICS","features":[355]},{"name":"TBM_GETRANGEMAX","features":[355]},{"name":"TBM_GETRANGEMIN","features":[355]},{"name":"TBM_GETSELEND","features":[355]},{"name":"TBM_GETSELSTART","features":[355]},{"name":"TBM_GETTHUMBLENGTH","features":[355]},{"name":"TBM_GETTHUMBRECT","features":[355]},{"name":"TBM_GETTIC","features":[355]},{"name":"TBM_GETTICPOS","features":[355]},{"name":"TBM_GETTOOLTIPS","features":[355]},{"name":"TBM_GETUNICODEFORMAT","features":[355]},{"name":"TBM_SETBUDDY","features":[355]},{"name":"TBM_SETLINESIZE","features":[355]},{"name":"TBM_SETPAGESIZE","features":[355]},{"name":"TBM_SETPOS","features":[355]},{"name":"TBM_SETPOSNOTIFY","features":[355]},{"name":"TBM_SETRANGE","features":[355]},{"name":"TBM_SETRANGEMAX","features":[355]},{"name":"TBM_SETRANGEMIN","features":[355]},{"name":"TBM_SETSEL","features":[355]},{"name":"TBM_SETSELEND","features":[355]},{"name":"TBM_SETSELSTART","features":[355]},{"name":"TBM_SETTHUMBLENGTH","features":[355]},{"name":"TBM_SETTIC","features":[355]},{"name":"TBM_SETTICFREQ","features":[355]},{"name":"TBM_SETTIPSIDE","features":[355]},{"name":"TBM_SETTOOLTIPS","features":[355]},{"name":"TBM_SETUNICODEFORMAT","features":[355]},{"name":"TBNF_DI_SETITEM","features":[355]},{"name":"TBNF_IMAGE","features":[355]},{"name":"TBNF_TEXT","features":[355]},{"name":"TBNRF_ENDCUSTOMIZE","features":[355]},{"name":"TBNRF_HIDEHELP","features":[355]},{"name":"TBN_BEGINADJUST","features":[355]},{"name":"TBN_BEGINDRAG","features":[355]},{"name":"TBN_CUSTHELP","features":[355]},{"name":"TBN_DELETINGBUTTON","features":[355]},{"name":"TBN_DRAGOUT","features":[355]},{"name":"TBN_DRAGOVER","features":[355]},{"name":"TBN_DROPDOWN","features":[355]},{"name":"TBN_DUPACCELERATOR","features":[355]},{"name":"TBN_ENDADJUST","features":[355]},{"name":"TBN_ENDDRAG","features":[355]},{"name":"TBN_FIRST","features":[355]},{"name":"TBN_GETBUTTONINFO","features":[355]},{"name":"TBN_GETBUTTONINFOA","features":[355]},{"name":"TBN_GETBUTTONINFOW","features":[355]},{"name":"TBN_GETDISPINFO","features":[355]},{"name":"TBN_GETDISPINFOA","features":[355]},{"name":"TBN_GETDISPINFOW","features":[355]},{"name":"TBN_GETINFOTIP","features":[355]},{"name":"TBN_GETINFOTIPA","features":[355]},{"name":"TBN_GETINFOTIPW","features":[355]},{"name":"TBN_GETOBJECT","features":[355]},{"name":"TBN_HOTITEMCHANGE","features":[355]},{"name":"TBN_INITCUSTOMIZE","features":[355]},{"name":"TBN_LAST","features":[355]},{"name":"TBN_MAPACCELERATOR","features":[355]},{"name":"TBN_QUERYDELETE","features":[355]},{"name":"TBN_QUERYINSERT","features":[355]},{"name":"TBN_RESET","features":[355]},{"name":"TBN_RESTORE","features":[355]},{"name":"TBN_SAVE","features":[355]},{"name":"TBN_TOOLBARCHANGE","features":[355]},{"name":"TBN_WRAPACCELERATOR","features":[355]},{"name":"TBN_WRAPHOTITEM","features":[355]},{"name":"TBP_BACKGROUNDBOTTOM","features":[355]},{"name":"TBP_BACKGROUNDLEFT","features":[355]},{"name":"TBP_BACKGROUNDRIGHT","features":[355]},{"name":"TBP_BACKGROUNDTOP","features":[355]},{"name":"TBP_SIZINGBARBOTTOM","features":[355]},{"name":"TBP_SIZINGBARLEFT","features":[355]},{"name":"TBP_SIZINGBARRIGHT","features":[355]},{"name":"TBP_SIZINGBARTOP","features":[355]},{"name":"TBREPLACEBITMAP","features":[305,355]},{"name":"TBSAVEPARAMSA","features":[366,355]},{"name":"TBSAVEPARAMSW","features":[366,355]},{"name":"TBSTATE_CHECKED","features":[355]},{"name":"TBSTATE_ELLIPSES","features":[355]},{"name":"TBSTATE_ENABLED","features":[355]},{"name":"TBSTATE_HIDDEN","features":[355]},{"name":"TBSTATE_INDETERMINATE","features":[355]},{"name":"TBSTATE_MARKED","features":[355]},{"name":"TBSTATE_PRESSED","features":[355]},{"name":"TBSTATE_WRAP","features":[355]},{"name":"TBSTYLE_ALTDRAG","features":[355]},{"name":"TBSTYLE_AUTOSIZE","features":[355]},{"name":"TBSTYLE_BUTTON","features":[355]},{"name":"TBSTYLE_CHECK","features":[355]},{"name":"TBSTYLE_CUSTOMERASE","features":[355]},{"name":"TBSTYLE_DROPDOWN","features":[355]},{"name":"TBSTYLE_EX_DOUBLEBUFFER","features":[355]},{"name":"TBSTYLE_EX_DRAWDDARROWS","features":[355]},{"name":"TBSTYLE_EX_HIDECLIPPEDBUTTONS","features":[355]},{"name":"TBSTYLE_EX_MIXEDBUTTONS","features":[355]},{"name":"TBSTYLE_EX_MULTICOLUMN","features":[355]},{"name":"TBSTYLE_EX_VERTICAL","features":[355]},{"name":"TBSTYLE_FLAT","features":[355]},{"name":"TBSTYLE_GROUP","features":[355]},{"name":"TBSTYLE_LIST","features":[355]},{"name":"TBSTYLE_NOPREFIX","features":[355]},{"name":"TBSTYLE_REGISTERDROP","features":[355]},{"name":"TBSTYLE_SEP","features":[355]},{"name":"TBSTYLE_TOOLTIPS","features":[355]},{"name":"TBSTYLE_TRANSPARENT","features":[355]},{"name":"TBSTYLE_WRAPABLE","features":[355]},{"name":"TBS_AUTOTICKS","features":[355]},{"name":"TBS_BOTH","features":[355]},{"name":"TBS_BOTTOM","features":[355]},{"name":"TBS_DOWNISLEFT","features":[355]},{"name":"TBS_ENABLESELRANGE","features":[355]},{"name":"TBS_FIXEDLENGTH","features":[355]},{"name":"TBS_HORZ","features":[355]},{"name":"TBS_LEFT","features":[355]},{"name":"TBS_NOTHUMB","features":[355]},{"name":"TBS_NOTICKS","features":[355]},{"name":"TBS_NOTIFYBEFOREMOVE","features":[355]},{"name":"TBS_REVERSED","features":[355]},{"name":"TBS_RIGHT","features":[355]},{"name":"TBS_TOOLTIPS","features":[355]},{"name":"TBS_TOP","features":[355]},{"name":"TBS_TRANSPARENTBKGND","features":[355]},{"name":"TBS_VERT","features":[355]},{"name":"TBTS_BOTTOM","features":[355]},{"name":"TBTS_LEFT","features":[355]},{"name":"TBTS_RIGHT","features":[355]},{"name":"TBTS_TOP","features":[355]},{"name":"TB_ADDBITMAP","features":[355]},{"name":"TB_ADDBUTTONS","features":[355]},{"name":"TB_ADDBUTTONSA","features":[355]},{"name":"TB_ADDBUTTONSW","features":[355]},{"name":"TB_ADDSTRING","features":[355]},{"name":"TB_ADDSTRINGA","features":[355]},{"name":"TB_ADDSTRINGW","features":[355]},{"name":"TB_AUTOSIZE","features":[355]},{"name":"TB_BOTTOM","features":[355]},{"name":"TB_BUTTONCOUNT","features":[355]},{"name":"TB_BUTTONSTRUCTSIZE","features":[355]},{"name":"TB_CHANGEBITMAP","features":[355]},{"name":"TB_CHECKBUTTON","features":[355]},{"name":"TB_COMMANDTOINDEX","features":[355]},{"name":"TB_CUSTOMIZE","features":[355]},{"name":"TB_DELETEBUTTON","features":[355]},{"name":"TB_ENABLEBUTTON","features":[355]},{"name":"TB_ENDTRACK","features":[355]},{"name":"TB_GETANCHORHIGHLIGHT","features":[355]},{"name":"TB_GETBITMAP","features":[355]},{"name":"TB_GETBITMAPFLAGS","features":[355]},{"name":"TB_GETBUTTON","features":[355]},{"name":"TB_GETBUTTONINFO","features":[355]},{"name":"TB_GETBUTTONINFOA","features":[355]},{"name":"TB_GETBUTTONINFOW","features":[355]},{"name":"TB_GETBUTTONSIZE","features":[355]},{"name":"TB_GETBUTTONTEXT","features":[355]},{"name":"TB_GETBUTTONTEXTA","features":[355]},{"name":"TB_GETBUTTONTEXTW","features":[355]},{"name":"TB_GETCOLORSCHEME","features":[355]},{"name":"TB_GETDISABLEDIMAGELIST","features":[355]},{"name":"TB_GETEXTENDEDSTYLE","features":[355]},{"name":"TB_GETHOTIMAGELIST","features":[355]},{"name":"TB_GETHOTITEM","features":[355]},{"name":"TB_GETIDEALSIZE","features":[355]},{"name":"TB_GETIMAGELIST","features":[355]},{"name":"TB_GETIMAGELISTCOUNT","features":[355]},{"name":"TB_GETINSERTMARK","features":[355]},{"name":"TB_GETINSERTMARKCOLOR","features":[355]},{"name":"TB_GETITEMDROPDOWNRECT","features":[355]},{"name":"TB_GETITEMRECT","features":[355]},{"name":"TB_GETMAXSIZE","features":[355]},{"name":"TB_GETMETRICS","features":[355]},{"name":"TB_GETOBJECT","features":[355]},{"name":"TB_GETPADDING","features":[355]},{"name":"TB_GETPRESSEDIMAGELIST","features":[355]},{"name":"TB_GETRECT","features":[355]},{"name":"TB_GETROWS","features":[355]},{"name":"TB_GETSTATE","features":[355]},{"name":"TB_GETSTRING","features":[355]},{"name":"TB_GETSTRINGA","features":[355]},{"name":"TB_GETSTRINGW","features":[355]},{"name":"TB_GETSTYLE","features":[355]},{"name":"TB_GETTEXTROWS","features":[355]},{"name":"TB_GETTOOLTIPS","features":[355]},{"name":"TB_GETUNICODEFORMAT","features":[355]},{"name":"TB_HASACCELERATOR","features":[355]},{"name":"TB_HIDEBUTTON","features":[355]},{"name":"TB_HITTEST","features":[355]},{"name":"TB_INDETERMINATE","features":[355]},{"name":"TB_INSERTBUTTON","features":[355]},{"name":"TB_INSERTBUTTONA","features":[355]},{"name":"TB_INSERTBUTTONW","features":[355]},{"name":"TB_INSERTMARKHITTEST","features":[355]},{"name":"TB_ISBUTTONCHECKED","features":[355]},{"name":"TB_ISBUTTONENABLED","features":[355]},{"name":"TB_ISBUTTONHIDDEN","features":[355]},{"name":"TB_ISBUTTONHIGHLIGHTED","features":[355]},{"name":"TB_ISBUTTONINDETERMINATE","features":[355]},{"name":"TB_ISBUTTONPRESSED","features":[355]},{"name":"TB_LINEDOWN","features":[355]},{"name":"TB_LINEUP","features":[355]},{"name":"TB_LOADIMAGES","features":[355]},{"name":"TB_MAPACCELERATOR","features":[355]},{"name":"TB_MAPACCELERATORA","features":[355]},{"name":"TB_MAPACCELERATORW","features":[355]},{"name":"TB_MARKBUTTON","features":[355]},{"name":"TB_MOVEBUTTON","features":[355]},{"name":"TB_PAGEDOWN","features":[355]},{"name":"TB_PAGEUP","features":[355]},{"name":"TB_PRESSBUTTON","features":[355]},{"name":"TB_REPLACEBITMAP","features":[355]},{"name":"TB_SAVERESTORE","features":[355]},{"name":"TB_SAVERESTOREA","features":[355]},{"name":"TB_SAVERESTOREW","features":[355]},{"name":"TB_SETANCHORHIGHLIGHT","features":[355]},{"name":"TB_SETBITMAPSIZE","features":[355]},{"name":"TB_SETBOUNDINGSIZE","features":[355]},{"name":"TB_SETBUTTONINFO","features":[355]},{"name":"TB_SETBUTTONINFOA","features":[355]},{"name":"TB_SETBUTTONINFOW","features":[355]},{"name":"TB_SETBUTTONSIZE","features":[355]},{"name":"TB_SETBUTTONWIDTH","features":[355]},{"name":"TB_SETCMDID","features":[355]},{"name":"TB_SETCOLORSCHEME","features":[355]},{"name":"TB_SETDISABLEDIMAGELIST","features":[355]},{"name":"TB_SETDRAWTEXTFLAGS","features":[355]},{"name":"TB_SETEXTENDEDSTYLE","features":[355]},{"name":"TB_SETHOTIMAGELIST","features":[355]},{"name":"TB_SETHOTITEM","features":[355]},{"name":"TB_SETHOTITEM2","features":[355]},{"name":"TB_SETIMAGELIST","features":[355]},{"name":"TB_SETINDENT","features":[355]},{"name":"TB_SETINSERTMARK","features":[355]},{"name":"TB_SETINSERTMARKCOLOR","features":[355]},{"name":"TB_SETLISTGAP","features":[355]},{"name":"TB_SETMAXTEXTROWS","features":[355]},{"name":"TB_SETMETRICS","features":[355]},{"name":"TB_SETPADDING","features":[355]},{"name":"TB_SETPARENT","features":[355]},{"name":"TB_SETPRESSEDIMAGELIST","features":[355]},{"name":"TB_SETROWS","features":[355]},{"name":"TB_SETSTATE","features":[355]},{"name":"TB_SETSTYLE","features":[355]},{"name":"TB_SETTOOLTIPS","features":[355]},{"name":"TB_SETUNICODEFORMAT","features":[355]},{"name":"TB_SETWINDOWTHEME","features":[355]},{"name":"TB_THUMBPOSITION","features":[355]},{"name":"TB_THUMBTRACK","features":[355]},{"name":"TB_TOP","features":[355]},{"name":"TCHITTESTINFO","features":[305,355]},{"name":"TCHITTESTINFO_FLAGS","features":[355]},{"name":"TCHT_NOWHERE","features":[355]},{"name":"TCHT_ONITEM","features":[355]},{"name":"TCHT_ONITEMICON","features":[355]},{"name":"TCHT_ONITEMLABEL","features":[355]},{"name":"TCIF_IMAGE","features":[355]},{"name":"TCIF_PARAM","features":[355]},{"name":"TCIF_RTLREADING","features":[355]},{"name":"TCIF_STATE","features":[355]},{"name":"TCIF_TEXT","features":[355]},{"name":"TCIS_BUTTONPRESSED","features":[355]},{"name":"TCIS_HIGHLIGHTED","features":[355]},{"name":"TCITEMA","features":[305,355]},{"name":"TCITEMHEADERA","features":[355]},{"name":"TCITEMHEADERA_MASK","features":[355]},{"name":"TCITEMHEADERW","features":[355]},{"name":"TCITEMW","features":[305,355]},{"name":"TCM_ADJUSTRECT","features":[355]},{"name":"TCM_DELETEALLITEMS","features":[355]},{"name":"TCM_DELETEITEM","features":[355]},{"name":"TCM_DESELECTALL","features":[355]},{"name":"TCM_FIRST","features":[355]},{"name":"TCM_GETCURFOCUS","features":[355]},{"name":"TCM_GETCURSEL","features":[355]},{"name":"TCM_GETEXTENDEDSTYLE","features":[355]},{"name":"TCM_GETIMAGELIST","features":[355]},{"name":"TCM_GETITEM","features":[355]},{"name":"TCM_GETITEMA","features":[355]},{"name":"TCM_GETITEMCOUNT","features":[355]},{"name":"TCM_GETITEMRECT","features":[355]},{"name":"TCM_GETITEMW","features":[355]},{"name":"TCM_GETROWCOUNT","features":[355]},{"name":"TCM_GETTOOLTIPS","features":[355]},{"name":"TCM_GETUNICODEFORMAT","features":[355]},{"name":"TCM_HIGHLIGHTITEM","features":[355]},{"name":"TCM_HITTEST","features":[355]},{"name":"TCM_INSERTITEM","features":[355]},{"name":"TCM_INSERTITEMA","features":[355]},{"name":"TCM_INSERTITEMW","features":[355]},{"name":"TCM_REMOVEIMAGE","features":[355]},{"name":"TCM_SETCURFOCUS","features":[355]},{"name":"TCM_SETCURSEL","features":[355]},{"name":"TCM_SETEXTENDEDSTYLE","features":[355]},{"name":"TCM_SETIMAGELIST","features":[355]},{"name":"TCM_SETITEM","features":[355]},{"name":"TCM_SETITEMA","features":[355]},{"name":"TCM_SETITEMEXTRA","features":[355]},{"name":"TCM_SETITEMSIZE","features":[355]},{"name":"TCM_SETITEMW","features":[355]},{"name":"TCM_SETMINTABWIDTH","features":[355]},{"name":"TCM_SETPADDING","features":[355]},{"name":"TCM_SETTOOLTIPS","features":[355]},{"name":"TCM_SETUNICODEFORMAT","features":[355]},{"name":"TCN_FIRST","features":[355]},{"name":"TCN_FOCUSCHANGE","features":[355]},{"name":"TCN_GETOBJECT","features":[355]},{"name":"TCN_KEYDOWN","features":[355]},{"name":"TCN_LAST","features":[355]},{"name":"TCN_SELCHANGE","features":[355]},{"name":"TCN_SELCHANGING","features":[355]},{"name":"TCS_BOTTOM","features":[355]},{"name":"TCS_BUTTONS","features":[355]},{"name":"TCS_EX_FLATSEPARATORS","features":[355]},{"name":"TCS_EX_REGISTERDROP","features":[355]},{"name":"TCS_FIXEDWIDTH","features":[355]},{"name":"TCS_FLATBUTTONS","features":[355]},{"name":"TCS_FOCUSNEVER","features":[355]},{"name":"TCS_FOCUSONBUTTONDOWN","features":[355]},{"name":"TCS_FORCEICONLEFT","features":[355]},{"name":"TCS_FORCELABELLEFT","features":[355]},{"name":"TCS_HOTTRACK","features":[355]},{"name":"TCS_MULTILINE","features":[355]},{"name":"TCS_MULTISELECT","features":[355]},{"name":"TCS_OWNERDRAWFIXED","features":[355]},{"name":"TCS_RAGGEDRIGHT","features":[355]},{"name":"TCS_RIGHT","features":[355]},{"name":"TCS_RIGHTJUSTIFY","features":[355]},{"name":"TCS_SCROLLOPPOSITE","features":[355]},{"name":"TCS_SINGLELINE","features":[355]},{"name":"TCS_TABS","features":[355]},{"name":"TCS_TOOLTIPS","features":[355]},{"name":"TCS_VERTICAL","features":[355]},{"name":"TDCBF_ABORT_BUTTON","features":[355]},{"name":"TDCBF_CANCEL_BUTTON","features":[355]},{"name":"TDCBF_CLOSE_BUTTON","features":[355]},{"name":"TDCBF_CONTINUE_BUTTON","features":[355]},{"name":"TDCBF_HELP_BUTTON","features":[355]},{"name":"TDCBF_IGNORE_BUTTON","features":[355]},{"name":"TDCBF_NO_BUTTON","features":[355]},{"name":"TDCBF_OK_BUTTON","features":[355]},{"name":"TDCBF_RETRY_BUTTON","features":[355]},{"name":"TDCBF_TRYAGAIN_BUTTON","features":[355]},{"name":"TDCBF_YES_BUTTON","features":[355]},{"name":"TDE_CONTENT","features":[355]},{"name":"TDE_EXPANDED_INFORMATION","features":[355]},{"name":"TDE_FOOTER","features":[355]},{"name":"TDE_MAIN_INSTRUCTION","features":[355]},{"name":"TDF_ALLOW_DIALOG_CANCELLATION","features":[355]},{"name":"TDF_CALLBACK_TIMER","features":[355]},{"name":"TDF_CAN_BE_MINIMIZED","features":[355]},{"name":"TDF_ENABLE_HYPERLINKS","features":[355]},{"name":"TDF_EXPANDED_BY_DEFAULT","features":[355]},{"name":"TDF_EXPAND_FOOTER_AREA","features":[355]},{"name":"TDF_NO_DEFAULT_RADIO_BUTTON","features":[355]},{"name":"TDF_NO_SET_FOREGROUND","features":[355]},{"name":"TDF_POSITION_RELATIVE_TO_WINDOW","features":[355]},{"name":"TDF_RTL_LAYOUT","features":[355]},{"name":"TDF_SHOW_MARQUEE_PROGRESS_BAR","features":[355]},{"name":"TDF_SHOW_PROGRESS_BAR","features":[355]},{"name":"TDF_SIZE_TO_CONTENT","features":[355]},{"name":"TDF_USE_COMMAND_LINKS","features":[355]},{"name":"TDF_USE_COMMAND_LINKS_NO_ICON","features":[355]},{"name":"TDF_USE_HICON_FOOTER","features":[355]},{"name":"TDF_USE_HICON_MAIN","features":[355]},{"name":"TDF_VERIFICATION_FLAG_CHECKED","features":[355]},{"name":"TDIE_ICON_FOOTER","features":[355]},{"name":"TDIE_ICON_MAIN","features":[355]},{"name":"TDLGCPS_STANDALONE","features":[355]},{"name":"TDLGEBS_EXPANDEDDISABLED","features":[355]},{"name":"TDLGEBS_EXPANDEDHOVER","features":[355]},{"name":"TDLGEBS_EXPANDEDNORMAL","features":[355]},{"name":"TDLGEBS_EXPANDEDPRESSED","features":[355]},{"name":"TDLGEBS_HOVER","features":[355]},{"name":"TDLGEBS_NORMAL","features":[355]},{"name":"TDLGEBS_NORMALDISABLED","features":[355]},{"name":"TDLGEBS_PRESSED","features":[355]},{"name":"TDLG_BUTTONSECTION","features":[355]},{"name":"TDLG_BUTTONWRAPPER","features":[355]},{"name":"TDLG_COMMANDLINKPANE","features":[355]},{"name":"TDLG_CONTENTICON","features":[355]},{"name":"TDLG_CONTENTPANE","features":[355]},{"name":"TDLG_CONTROLPANE","features":[355]},{"name":"TDLG_EXPANDEDCONTENT","features":[355]},{"name":"TDLG_EXPANDEDFOOTERAREA","features":[355]},{"name":"TDLG_EXPANDOBUTTON","features":[355]},{"name":"TDLG_EXPANDOTEXT","features":[355]},{"name":"TDLG_FOOTNOTEAREA","features":[355]},{"name":"TDLG_FOOTNOTEPANE","features":[355]},{"name":"TDLG_FOOTNOTESEPARATOR","features":[355]},{"name":"TDLG_IMAGEALIGNMENT","features":[355]},{"name":"TDLG_MAINICON","features":[355]},{"name":"TDLG_MAININSTRUCTIONPANE","features":[355]},{"name":"TDLG_PRIMARYPANEL","features":[355]},{"name":"TDLG_PROGRESSBAR","features":[355]},{"name":"TDLG_RADIOBUTTONPANE","features":[355]},{"name":"TDLG_SECONDARYPANEL","features":[355]},{"name":"TDLG_VERIFICATIONTEXT","features":[355]},{"name":"TDM_CLICK_BUTTON","features":[355]},{"name":"TDM_CLICK_RADIO_BUTTON","features":[355]},{"name":"TDM_CLICK_VERIFICATION","features":[355]},{"name":"TDM_ENABLE_BUTTON","features":[355]},{"name":"TDM_ENABLE_RADIO_BUTTON","features":[355]},{"name":"TDM_NAVIGATE_PAGE","features":[355]},{"name":"TDM_SET_BUTTON_ELEVATION_REQUIRED_STATE","features":[355]},{"name":"TDM_SET_ELEMENT_TEXT","features":[355]},{"name":"TDM_SET_MARQUEE_PROGRESS_BAR","features":[355]},{"name":"TDM_SET_PROGRESS_BAR_MARQUEE","features":[355]},{"name":"TDM_SET_PROGRESS_BAR_POS","features":[355]},{"name":"TDM_SET_PROGRESS_BAR_RANGE","features":[355]},{"name":"TDM_SET_PROGRESS_BAR_STATE","features":[355]},{"name":"TDM_UPDATE_ELEMENT_TEXT","features":[355]},{"name":"TDM_UPDATE_ICON","features":[355]},{"name":"TDN_BUTTON_CLICKED","features":[355]},{"name":"TDN_CREATED","features":[355]},{"name":"TDN_DESTROYED","features":[355]},{"name":"TDN_DIALOG_CONSTRUCTED","features":[355]},{"name":"TDN_EXPANDO_BUTTON_CLICKED","features":[355]},{"name":"TDN_HELP","features":[355]},{"name":"TDN_HYPERLINK_CLICKED","features":[355]},{"name":"TDN_NAVIGATED","features":[355]},{"name":"TDN_RADIO_BUTTON_CLICKED","features":[355]},{"name":"TDN_TIMER","features":[355]},{"name":"TDN_VERIFICATION_CLICKED","features":[355]},{"name":"TDP_FLASHBUTTON","features":[355]},{"name":"TDP_FLASHBUTTONGROUPMENU","features":[355]},{"name":"TDP_GROUPCOUNT","features":[355]},{"name":"TD_ERROR_ICON","features":[355]},{"name":"TD_INFORMATION_ICON","features":[355]},{"name":"TD_SHIELD_ICON","features":[355]},{"name":"TD_WARNING_ICON","features":[355]},{"name":"TEXTSELECTIONGRIPPERPARTS","features":[355]},{"name":"TEXTSHADOWTYPE","features":[355]},{"name":"TEXTSTYLEPARTS","features":[355]},{"name":"TEXT_BODYTEXT","features":[355]},{"name":"TEXT_BODYTITLE","features":[355]},{"name":"TEXT_CONTROLLABEL","features":[355]},{"name":"TEXT_EXPANDED","features":[355]},{"name":"TEXT_HYPERLINKTEXT","features":[355]},{"name":"TEXT_INSTRUCTION","features":[355]},{"name":"TEXT_LABEL","features":[355]},{"name":"TEXT_MAININSTRUCTION","features":[355]},{"name":"TEXT_SECONDARYTEXT","features":[355]},{"name":"THEMESIZE","features":[355]},{"name":"THEME_PROPERTY_SYMBOL_ID","features":[355]},{"name":"THUMBBOTTOMSTATES","features":[355]},{"name":"THUMBLEFTSTATES","features":[355]},{"name":"THUMBRIGHTSTATES","features":[355]},{"name":"THUMBSTATES","features":[355]},{"name":"THUMBTOPSTATES","features":[355]},{"name":"THUMBVERTSTATES","features":[355]},{"name":"TIBES_DISABLED","features":[355]},{"name":"TIBES_FOCUSED","features":[355]},{"name":"TIBES_HOT","features":[355]},{"name":"TIBES_NORMAL","features":[355]},{"name":"TIBES_SELECTED","features":[355]},{"name":"TICSSTATES","features":[355]},{"name":"TICSVERTSTATES","features":[355]},{"name":"TILES_DISABLED","features":[355]},{"name":"TILES_FOCUSED","features":[355]},{"name":"TILES_HOT","features":[355]},{"name":"TILES_NORMAL","features":[355]},{"name":"TILES_SELECTED","features":[355]},{"name":"TIRES_DISABLED","features":[355]},{"name":"TIRES_FOCUSED","features":[355]},{"name":"TIRES_HOT","features":[355]},{"name":"TIRES_NORMAL","features":[355]},{"name":"TIRES_SELECTED","features":[355]},{"name":"TIS_DISABLED","features":[355]},{"name":"TIS_FOCUSED","features":[355]},{"name":"TIS_HOT","features":[355]},{"name":"TIS_NORMAL","features":[355]},{"name":"TIS_SELECTED","features":[355]},{"name":"TITLEBARSTATES","features":[355]},{"name":"TKP_THUMB","features":[355]},{"name":"TKP_THUMBBOTTOM","features":[355]},{"name":"TKP_THUMBLEFT","features":[355]},{"name":"TKP_THUMBRIGHT","features":[355]},{"name":"TKP_THUMBTOP","features":[355]},{"name":"TKP_THUMBVERT","features":[355]},{"name":"TKP_TICS","features":[355]},{"name":"TKP_TICSVERT","features":[355]},{"name":"TKP_TRACK","features":[355]},{"name":"TKP_TRACKVERT","features":[355]},{"name":"TKS_NORMAL","features":[355]},{"name":"TMTVS_RESERVEDHIGH","features":[355]},{"name":"TMTVS_RESERVEDLOW","features":[355]},{"name":"TMT_ACCENTCOLORHINT","features":[355]},{"name":"TMT_ACTIVEBORDER","features":[355]},{"name":"TMT_ACTIVECAPTION","features":[355]},{"name":"TMT_ALIAS","features":[355]},{"name":"TMT_ALPHALEVEL","features":[355]},{"name":"TMT_ALPHATHRESHOLD","features":[355]},{"name":"TMT_ALWAYSSHOWSIZINGBAR","features":[355]},{"name":"TMT_ANIMATIONBUTTONRECT","features":[355]},{"name":"TMT_ANIMATIONDELAY","features":[355]},{"name":"TMT_ANIMATIONDURATION","features":[355]},{"name":"TMT_APPWORKSPACE","features":[355]},{"name":"TMT_ATLASIMAGE","features":[355]},{"name":"TMT_ATLASINPUTIMAGE","features":[355]},{"name":"TMT_ATLASRECT","features":[355]},{"name":"TMT_AUTHOR","features":[355]},{"name":"TMT_AUTOSIZE","features":[355]},{"name":"TMT_BACKGROUND","features":[355]},{"name":"TMT_BGFILL","features":[355]},{"name":"TMT_BGTYPE","features":[355]},{"name":"TMT_BITMAPREF","features":[355]},{"name":"TMT_BLENDCOLOR","features":[355]},{"name":"TMT_BODYFONT","features":[355]},{"name":"TMT_BODYTEXTCOLOR","features":[355]},{"name":"TMT_BOOL","features":[355]},{"name":"TMT_BORDERCOLOR","features":[355]},{"name":"TMT_BORDERCOLORHINT","features":[355]},{"name":"TMT_BORDERONLY","features":[355]},{"name":"TMT_BORDERSIZE","features":[355]},{"name":"TMT_BORDERTYPE","features":[355]},{"name":"TMT_BTNFACE","features":[355]},{"name":"TMT_BTNHIGHLIGHT","features":[355]},{"name":"TMT_BTNSHADOW","features":[355]},{"name":"TMT_BTNTEXT","features":[355]},{"name":"TMT_BUTTONALTERNATEFACE","features":[355]},{"name":"TMT_CAPTIONBARHEIGHT","features":[355]},{"name":"TMT_CAPTIONBARWIDTH","features":[355]},{"name":"TMT_CAPTIONFONT","features":[355]},{"name":"TMT_CAPTIONMARGINS","features":[355]},{"name":"TMT_CAPTIONTEXT","features":[355]},{"name":"TMT_CHARSET","features":[355]},{"name":"TMT_CLASSICVALUE","features":[355]},{"name":"TMT_COLOR","features":[355]},{"name":"TMT_COLORIZATIONCOLOR","features":[355]},{"name":"TMT_COLORIZATIONOPACITY","features":[355]},{"name":"TMT_COLORSCHEMES","features":[355]},{"name":"TMT_COMPANY","features":[355]},{"name":"TMT_COMPOSITED","features":[355]},{"name":"TMT_COMPOSITEDOPAQUE","features":[355]},{"name":"TMT_CONTENTALIGNMENT","features":[355]},{"name":"TMT_CONTENTMARGINS","features":[355]},{"name":"TMT_COPYRIGHT","features":[355]},{"name":"TMT_CSSNAME","features":[355]},{"name":"TMT_CUSTOMSPLITRECT","features":[355]},{"name":"TMT_DEFAULTPANESIZE","features":[355]},{"name":"TMT_DESCRIPTION","features":[355]},{"name":"TMT_DIBDATA","features":[355]},{"name":"TMT_DISKSTREAM","features":[355]},{"name":"TMT_DISPLAYNAME","features":[355]},{"name":"TMT_DKSHADOW3D","features":[355]},{"name":"TMT_DRAWBORDERS","features":[355]},{"name":"TMT_EDGEDKSHADOWCOLOR","features":[355]},{"name":"TMT_EDGEFILLCOLOR","features":[355]},{"name":"TMT_EDGEHIGHLIGHTCOLOR","features":[355]},{"name":"TMT_EDGELIGHTCOLOR","features":[355]},{"name":"TMT_EDGESHADOWCOLOR","features":[355]},{"name":"TMT_ENUM","features":[355]},{"name":"TMT_FILENAME","features":[355]},{"name":"TMT_FILLCOLOR","features":[355]},{"name":"TMT_FILLCOLORHINT","features":[355]},{"name":"TMT_FILLTYPE","features":[355]},{"name":"TMT_FIRSTBOOL","features":[355]},{"name":"TMT_FIRSTCOLOR","features":[355]},{"name":"TMT_FIRSTFONT","features":[355]},{"name":"TMT_FIRSTINT","features":[355]},{"name":"TMT_FIRSTSIZE","features":[355]},{"name":"TMT_FIRSTSTRING","features":[355]},{"name":"TMT_FIRST_RCSTRING_NAME","features":[355]},{"name":"TMT_FLATMENUS","features":[355]},{"name":"TMT_FLOAT","features":[355]},{"name":"TMT_FLOATLIST","features":[355]},{"name":"TMT_FONT","features":[355]},{"name":"TMT_FRAMESPERSECOND","features":[355]},{"name":"TMT_FROMCOLOR1","features":[355]},{"name":"TMT_FROMCOLOR2","features":[355]},{"name":"TMT_FROMCOLOR3","features":[355]},{"name":"TMT_FROMCOLOR4","features":[355]},{"name":"TMT_FROMCOLOR5","features":[355]},{"name":"TMT_FROMHUE1","features":[355]},{"name":"TMT_FROMHUE2","features":[355]},{"name":"TMT_FROMHUE3","features":[355]},{"name":"TMT_FROMHUE4","features":[355]},{"name":"TMT_FROMHUE5","features":[355]},{"name":"TMT_GLOWCOLOR","features":[355]},{"name":"TMT_GLOWINTENSITY","features":[355]},{"name":"TMT_GLYPHDIBDATA","features":[355]},{"name":"TMT_GLYPHFONT","features":[355]},{"name":"TMT_GLYPHFONTSIZINGTYPE","features":[355]},{"name":"TMT_GLYPHIMAGEFILE","features":[355]},{"name":"TMT_GLYPHINDEX","features":[355]},{"name":"TMT_GLYPHONLY","features":[355]},{"name":"TMT_GLYPHTEXTCOLOR","features":[355]},{"name":"TMT_GLYPHTRANSPARENT","features":[355]},{"name":"TMT_GLYPHTRANSPARENTCOLOR","features":[355]},{"name":"TMT_GLYPHTYPE","features":[355]},{"name":"TMT_GRADIENTACTIVECAPTION","features":[355]},{"name":"TMT_GRADIENTCOLOR1","features":[355]},{"name":"TMT_GRADIENTCOLOR2","features":[355]},{"name":"TMT_GRADIENTCOLOR3","features":[355]},{"name":"TMT_GRADIENTCOLOR4","features":[355]},{"name":"TMT_GRADIENTCOLOR5","features":[355]},{"name":"TMT_GRADIENTINACTIVECAPTION","features":[355]},{"name":"TMT_GRADIENTRATIO1","features":[355]},{"name":"TMT_GRADIENTRATIO2","features":[355]},{"name":"TMT_GRADIENTRATIO3","features":[355]},{"name":"TMT_GRADIENTRATIO4","features":[355]},{"name":"TMT_GRADIENTRATIO5","features":[355]},{"name":"TMT_GRAYTEXT","features":[355]},{"name":"TMT_HALIGN","features":[355]},{"name":"TMT_HBITMAP","features":[355]},{"name":"TMT_HEADING1FONT","features":[355]},{"name":"TMT_HEADING1TEXTCOLOR","features":[355]},{"name":"TMT_HEADING2FONT","features":[355]},{"name":"TMT_HEADING2TEXTCOLOR","features":[355]},{"name":"TMT_HEIGHT","features":[355]},{"name":"TMT_HIGHLIGHT","features":[355]},{"name":"TMT_HIGHLIGHTTEXT","features":[355]},{"name":"TMT_HOTTRACKING","features":[355]},{"name":"TMT_ICONEFFECT","features":[355]},{"name":"TMT_ICONTITLEFONT","features":[355]},{"name":"TMT_IMAGECOUNT","features":[355]},{"name":"TMT_IMAGEFILE","features":[355]},{"name":"TMT_IMAGEFILE1","features":[355]},{"name":"TMT_IMAGEFILE2","features":[355]},{"name":"TMT_IMAGEFILE3","features":[355]},{"name":"TMT_IMAGEFILE4","features":[355]},{"name":"TMT_IMAGEFILE5","features":[355]},{"name":"TMT_IMAGEFILE6","features":[355]},{"name":"TMT_IMAGEFILE7","features":[355]},{"name":"TMT_IMAGELAYOUT","features":[355]},{"name":"TMT_IMAGESELECTTYPE","features":[355]},{"name":"TMT_INACTIVEBORDER","features":[355]},{"name":"TMT_INACTIVECAPTION","features":[355]},{"name":"TMT_INACTIVECAPTIONTEXT","features":[355]},{"name":"TMT_INFOBK","features":[355]},{"name":"TMT_INFOTEXT","features":[355]},{"name":"TMT_INT","features":[355]},{"name":"TMT_INTEGRALSIZING","features":[355]},{"name":"TMT_INTLIST","features":[355]},{"name":"TMT_LASTBOOL","features":[355]},{"name":"TMT_LASTCOLOR","features":[355]},{"name":"TMT_LASTFONT","features":[355]},{"name":"TMT_LASTINT","features":[355]},{"name":"TMT_LASTSIZE","features":[355]},{"name":"TMT_LASTSTRING","features":[355]},{"name":"TMT_LASTUPDATED","features":[355]},{"name":"TMT_LAST_RCSTRING_NAME","features":[355]},{"name":"TMT_LIGHT3D","features":[355]},{"name":"TMT_LOCALIZEDMIRRORIMAGE","features":[355]},{"name":"TMT_MARGINS","features":[355]},{"name":"TMT_MENU","features":[355]},{"name":"TMT_MENUBAR","features":[355]},{"name":"TMT_MENUBARHEIGHT","features":[355]},{"name":"TMT_MENUBARWIDTH","features":[355]},{"name":"TMT_MENUFONT","features":[355]},{"name":"TMT_MENUHILIGHT","features":[355]},{"name":"TMT_MENUTEXT","features":[355]},{"name":"TMT_MINCOLORDEPTH","features":[355]},{"name":"TMT_MINDPI1","features":[355]},{"name":"TMT_MINDPI2","features":[355]},{"name":"TMT_MINDPI3","features":[355]},{"name":"TMT_MINDPI4","features":[355]},{"name":"TMT_MINDPI5","features":[355]},{"name":"TMT_MINDPI6","features":[355]},{"name":"TMT_MINDPI7","features":[355]},{"name":"TMT_MINSIZE","features":[355]},{"name":"TMT_MINSIZE1","features":[355]},{"name":"TMT_MINSIZE2","features":[355]},{"name":"TMT_MINSIZE3","features":[355]},{"name":"TMT_MINSIZE4","features":[355]},{"name":"TMT_MINSIZE5","features":[355]},{"name":"TMT_MINSIZE6","features":[355]},{"name":"TMT_MINSIZE7","features":[355]},{"name":"TMT_MIRRORIMAGE","features":[355]},{"name":"TMT_MSGBOXFONT","features":[355]},{"name":"TMT_NAME","features":[355]},{"name":"TMT_NOETCHEDEFFECT","features":[355]},{"name":"TMT_NORMALSIZE","features":[355]},{"name":"TMT_OFFSET","features":[355]},{"name":"TMT_OFFSETTYPE","features":[355]},{"name":"TMT_OPACITY","features":[355]},{"name":"TMT_PADDEDBORDERWIDTH","features":[355]},{"name":"TMT_PIXELSPERFRAME","features":[355]},{"name":"TMT_POSITION","features":[355]},{"name":"TMT_PROGRESSCHUNKSIZE","features":[355]},{"name":"TMT_PROGRESSSPACESIZE","features":[355]},{"name":"TMT_RECT","features":[355]},{"name":"TMT_RESERVEDHIGH","features":[355]},{"name":"TMT_RESERVEDLOW","features":[355]},{"name":"TMT_ROUNDCORNERHEIGHT","features":[355]},{"name":"TMT_ROUNDCORNERWIDTH","features":[355]},{"name":"TMT_SATURATION","features":[355]},{"name":"TMT_SCALEDBACKGROUND","features":[355]},{"name":"TMT_SCROLLBAR","features":[355]},{"name":"TMT_SCROLLBARHEIGHT","features":[355]},{"name":"TMT_SCROLLBARWIDTH","features":[355]},{"name":"TMT_SHADOWCOLOR","features":[355]},{"name":"TMT_SIZE","features":[355]},{"name":"TMT_SIZES","features":[355]},{"name":"TMT_SIZINGBORDERWIDTH","features":[355]},{"name":"TMT_SIZINGMARGINS","features":[355]},{"name":"TMT_SIZINGTYPE","features":[355]},{"name":"TMT_SMALLCAPTIONFONT","features":[355]},{"name":"TMT_SMCAPTIONBARHEIGHT","features":[355]},{"name":"TMT_SMCAPTIONBARWIDTH","features":[355]},{"name":"TMT_SOURCEGROW","features":[355]},{"name":"TMT_SOURCESHRINK","features":[355]},{"name":"TMT_STATUSFONT","features":[355]},{"name":"TMT_STREAM","features":[355]},{"name":"TMT_STRING","features":[355]},{"name":"TMT_TEXT","features":[355]},{"name":"TMT_TEXTAPPLYOVERLAY","features":[355]},{"name":"TMT_TEXTBORDERCOLOR","features":[355]},{"name":"TMT_TEXTBORDERSIZE","features":[355]},{"name":"TMT_TEXTCOLOR","features":[355]},{"name":"TMT_TEXTCOLORHINT","features":[355]},{"name":"TMT_TEXTGLOW","features":[355]},{"name":"TMT_TEXTGLOWSIZE","features":[355]},{"name":"TMT_TEXTITALIC","features":[355]},{"name":"TMT_TEXTSHADOWCOLOR","features":[355]},{"name":"TMT_TEXTSHADOWOFFSET","features":[355]},{"name":"TMT_TEXTSHADOWTYPE","features":[355]},{"name":"TMT_TOCOLOR1","features":[355]},{"name":"TMT_TOCOLOR2","features":[355]},{"name":"TMT_TOCOLOR3","features":[355]},{"name":"TMT_TOCOLOR4","features":[355]},{"name":"TMT_TOCOLOR5","features":[355]},{"name":"TMT_TOHUE1","features":[355]},{"name":"TMT_TOHUE2","features":[355]},{"name":"TMT_TOHUE3","features":[355]},{"name":"TMT_TOHUE4","features":[355]},{"name":"TMT_TOHUE5","features":[355]},{"name":"TMT_TOOLTIP","features":[355]},{"name":"TMT_TRANSITIONDURATIONS","features":[355]},{"name":"TMT_TRANSPARENT","features":[355]},{"name":"TMT_TRANSPARENTCOLOR","features":[355]},{"name":"TMT_TRUESIZESCALINGTYPE","features":[355]},{"name":"TMT_TRUESIZESTRETCHMARK","features":[355]},{"name":"TMT_UNIFORMSIZING","features":[355]},{"name":"TMT_URL","features":[355]},{"name":"TMT_USERPICTURE","features":[355]},{"name":"TMT_VALIGN","features":[355]},{"name":"TMT_VERSION","features":[355]},{"name":"TMT_WIDTH","features":[355]},{"name":"TMT_WINDOW","features":[355]},{"name":"TMT_WINDOWFRAME","features":[355]},{"name":"TMT_WINDOWTEXT","features":[355]},{"name":"TMT_XMLNAME","features":[355]},{"name":"TNP_ANIMBACKGROUND","features":[355]},{"name":"TNP_BACKGROUND","features":[355]},{"name":"TOOLBARCLASSNAME","features":[355]},{"name":"TOOLBARCLASSNAMEA","features":[355]},{"name":"TOOLBARCLASSNAMEW","features":[355]},{"name":"TOOLBARPARTS","features":[355]},{"name":"TOOLBARSTYLESTATES","features":[355]},{"name":"TOOLTIPPARTS","features":[355]},{"name":"TOOLTIPS_CLASS","features":[355]},{"name":"TOOLTIPS_CLASSA","features":[355]},{"name":"TOOLTIPS_CLASSW","features":[355]},{"name":"TOOLTIP_FLAGS","features":[355]},{"name":"TOPTABITEMBOTHEDGESTATES","features":[355]},{"name":"TOPTABITEMLEFTEDGESTATES","features":[355]},{"name":"TOPTABITEMRIGHTEDGESTATES","features":[355]},{"name":"TOPTABITEMSTATES","features":[355]},{"name":"TOUCH_HIT_TESTING_INPUT","features":[305,355]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_EVALUATION","features":[305,355]},{"name":"TP_BUTTON","features":[355]},{"name":"TP_DROPDOWNBUTTON","features":[355]},{"name":"TP_DROPDOWNBUTTONGLYPH","features":[355]},{"name":"TP_SEPARATOR","features":[355]},{"name":"TP_SEPARATORVERT","features":[355]},{"name":"TP_SPLITBUTTON","features":[355]},{"name":"TP_SPLITBUTTONDROPDOWN","features":[355]},{"name":"TRACKBARPARTS","features":[355]},{"name":"TRACKBARSTYLESTATES","features":[355]},{"name":"TRACKBAR_CLASS","features":[355]},{"name":"TRACKBAR_CLASSA","features":[355]},{"name":"TRACKBAR_CLASSW","features":[355]},{"name":"TRACKSTATES","features":[355]},{"name":"TRACKVERTSTATES","features":[355]},{"name":"TRAILINGGRIDCELLSTATES","features":[355]},{"name":"TRAILINGGRIDCELLUPPERSTATES","features":[355]},{"name":"TRANSPARENTBACKGROUNDSTATES","features":[355]},{"name":"TRANSPARENTBARSTATES","features":[355]},{"name":"TRANSPARENTBARVERTSTATES","features":[355]},{"name":"TRAYNOTIFYPARTS","features":[355]},{"name":"TRBN_FIRST","features":[355]},{"name":"TRBN_LAST","features":[355]},{"name":"TRBN_THUMBPOSCHANGING","features":[355]},{"name":"TREEITEMSTATES","features":[355]},{"name":"TREEVIEWPARTS","features":[355]},{"name":"TREE_VIEW_ITEM_STATE_FLAGS","features":[355]},{"name":"TREIS_DISABLED","features":[355]},{"name":"TREIS_HOT","features":[355]},{"name":"TREIS_HOTSELECTED","features":[355]},{"name":"TREIS_NORMAL","features":[355]},{"name":"TREIS_SELECTED","features":[355]},{"name":"TREIS_SELECTEDNOTFOCUS","features":[355]},{"name":"TRS_NORMAL","features":[355]},{"name":"TRUESIZESCALINGTYPE","features":[355]},{"name":"TRVS_NORMAL","features":[355]},{"name":"TSGP_GRIPPER","features":[355]},{"name":"TSGS_CENTERED","features":[355]},{"name":"TSGS_NORMAL","features":[355]},{"name":"TSST_DPI","features":[355]},{"name":"TSST_NONE","features":[355]},{"name":"TSST_SIZE","features":[355]},{"name":"TSS_NORMAL","features":[355]},{"name":"TST_CONTINUOUS","features":[355]},{"name":"TST_NONE","features":[355]},{"name":"TST_SINGLE","features":[355]},{"name":"TSVS_NORMAL","features":[355]},{"name":"TS_CHECKED","features":[355]},{"name":"TS_CONTROLLABEL_DISABLED","features":[355]},{"name":"TS_CONTROLLABEL_NORMAL","features":[355]},{"name":"TS_DISABLED","features":[355]},{"name":"TS_DRAW","features":[355]},{"name":"TS_HOT","features":[355]},{"name":"TS_HOTCHECKED","features":[355]},{"name":"TS_HYPERLINK_DISABLED","features":[355]},{"name":"TS_HYPERLINK_HOT","features":[355]},{"name":"TS_HYPERLINK_NORMAL","features":[355]},{"name":"TS_HYPERLINK_PRESSED","features":[355]},{"name":"TS_MIN","features":[355]},{"name":"TS_NEARHOT","features":[355]},{"name":"TS_NORMAL","features":[355]},{"name":"TS_OTHERSIDEHOT","features":[355]},{"name":"TS_PRESSED","features":[355]},{"name":"TS_TRUE","features":[355]},{"name":"TTBSS_POINTINGDOWNCENTERED","features":[355]},{"name":"TTBSS_POINTINGDOWNLEFTWALL","features":[355]},{"name":"TTBSS_POINTINGDOWNRIGHTWALL","features":[355]},{"name":"TTBSS_POINTINGUPCENTERED","features":[355]},{"name":"TTBSS_POINTINGUPLEFTWALL","features":[355]},{"name":"TTBSS_POINTINGUPRIGHTWALL","features":[355]},{"name":"TTBS_LINK","features":[355]},{"name":"TTBS_NORMAL","features":[355]},{"name":"TTCS_HOT","features":[355]},{"name":"TTCS_NORMAL","features":[355]},{"name":"TTCS_PRESSED","features":[355]},{"name":"TTDT_AUTOMATIC","features":[355]},{"name":"TTDT_AUTOPOP","features":[355]},{"name":"TTDT_INITIAL","features":[355]},{"name":"TTDT_RESHOW","features":[355]},{"name":"TTFT_CUBIC_BEZIER","features":[355]},{"name":"TTFT_UNDEFINED","features":[355]},{"name":"TTF_ABSOLUTE","features":[355]},{"name":"TTF_CENTERTIP","features":[355]},{"name":"TTF_DI_SETITEM","features":[355]},{"name":"TTF_IDISHWND","features":[355]},{"name":"TTF_PARSELINKS","features":[355]},{"name":"TTF_RTLREADING","features":[355]},{"name":"TTF_SUBCLASS","features":[355]},{"name":"TTF_TRACK","features":[355]},{"name":"TTF_TRANSPARENT","features":[355]},{"name":"TTGETTITLE","features":[355]},{"name":"TTHITTESTINFOA","features":[305,355]},{"name":"TTHITTESTINFOW","features":[305,355]},{"name":"TTIBES_DISABLED","features":[355]},{"name":"TTIBES_FOCUSED","features":[355]},{"name":"TTIBES_HOT","features":[355]},{"name":"TTIBES_NORMAL","features":[355]},{"name":"TTIBES_SELECTED","features":[355]},{"name":"TTILES_DISABLED","features":[355]},{"name":"TTILES_FOCUSED","features":[355]},{"name":"TTILES_HOT","features":[355]},{"name":"TTILES_NORMAL","features":[355]},{"name":"TTILES_SELECTED","features":[355]},{"name":"TTIRES_DISABLED","features":[355]},{"name":"TTIRES_FOCUSED","features":[355]},{"name":"TTIRES_HOT","features":[355]},{"name":"TTIRES_NORMAL","features":[355]},{"name":"TTIRES_SELECTED","features":[355]},{"name":"TTIS_DISABLED","features":[355]},{"name":"TTIS_FOCUSED","features":[355]},{"name":"TTIS_HOT","features":[355]},{"name":"TTIS_NORMAL","features":[355]},{"name":"TTIS_SELECTED","features":[355]},{"name":"TTI_ERROR","features":[355]},{"name":"TTI_ERROR_LARGE","features":[355]},{"name":"TTI_INFO","features":[355]},{"name":"TTI_INFO_LARGE","features":[355]},{"name":"TTI_NONE","features":[355]},{"name":"TTI_WARNING","features":[355]},{"name":"TTI_WARNING_LARGE","features":[355]},{"name":"TTM_ACTIVATE","features":[355]},{"name":"TTM_ADDTOOL","features":[355]},{"name":"TTM_ADDTOOLA","features":[355]},{"name":"TTM_ADDTOOLW","features":[355]},{"name":"TTM_ADJUSTRECT","features":[355]},{"name":"TTM_DELTOOL","features":[355]},{"name":"TTM_DELTOOLA","features":[355]},{"name":"TTM_DELTOOLW","features":[355]},{"name":"TTM_ENUMTOOLS","features":[355]},{"name":"TTM_ENUMTOOLSA","features":[355]},{"name":"TTM_ENUMTOOLSW","features":[355]},{"name":"TTM_GETBUBBLESIZE","features":[355]},{"name":"TTM_GETCURRENTTOOL","features":[355]},{"name":"TTM_GETCURRENTTOOLA","features":[355]},{"name":"TTM_GETCURRENTTOOLW","features":[355]},{"name":"TTM_GETDELAYTIME","features":[355]},{"name":"TTM_GETMARGIN","features":[355]},{"name":"TTM_GETMAXTIPWIDTH","features":[355]},{"name":"TTM_GETTEXT","features":[355]},{"name":"TTM_GETTEXTA","features":[355]},{"name":"TTM_GETTEXTW","features":[355]},{"name":"TTM_GETTIPBKCOLOR","features":[355]},{"name":"TTM_GETTIPTEXTCOLOR","features":[355]},{"name":"TTM_GETTITLE","features":[355]},{"name":"TTM_GETTOOLCOUNT","features":[355]},{"name":"TTM_GETTOOLINFO","features":[355]},{"name":"TTM_GETTOOLINFOA","features":[355]},{"name":"TTM_GETTOOLINFOW","features":[355]},{"name":"TTM_HITTEST","features":[355]},{"name":"TTM_HITTESTA","features":[355]},{"name":"TTM_HITTESTW","features":[355]},{"name":"TTM_NEWTOOLRECT","features":[355]},{"name":"TTM_NEWTOOLRECTA","features":[355]},{"name":"TTM_NEWTOOLRECTW","features":[355]},{"name":"TTM_POP","features":[355]},{"name":"TTM_POPUP","features":[355]},{"name":"TTM_RELAYEVENT","features":[355]},{"name":"TTM_SETDELAYTIME","features":[355]},{"name":"TTM_SETMARGIN","features":[355]},{"name":"TTM_SETMAXTIPWIDTH","features":[355]},{"name":"TTM_SETTIPBKCOLOR","features":[355]},{"name":"TTM_SETTIPTEXTCOLOR","features":[355]},{"name":"TTM_SETTITLE","features":[355]},{"name":"TTM_SETTITLEA","features":[355]},{"name":"TTM_SETTITLEW","features":[355]},{"name":"TTM_SETTOOLINFO","features":[355]},{"name":"TTM_SETTOOLINFOA","features":[355]},{"name":"TTM_SETTOOLINFOW","features":[355]},{"name":"TTM_SETWINDOWTHEME","features":[355]},{"name":"TTM_TRACKACTIVATE","features":[355]},{"name":"TTM_TRACKPOSITION","features":[355]},{"name":"TTM_UPDATE","features":[355]},{"name":"TTM_UPDATETIPTEXT","features":[355]},{"name":"TTM_UPDATETIPTEXTA","features":[355]},{"name":"TTM_UPDATETIPTEXTW","features":[355]},{"name":"TTM_WINDOWFROMPOINT","features":[355]},{"name":"TTN_FIRST","features":[355]},{"name":"TTN_GETDISPINFO","features":[355]},{"name":"TTN_GETDISPINFOA","features":[355]},{"name":"TTN_GETDISPINFOW","features":[355]},{"name":"TTN_LAST","features":[355]},{"name":"TTN_LINKCLICK","features":[355]},{"name":"TTN_NEEDTEXT","features":[355]},{"name":"TTN_NEEDTEXTA","features":[355]},{"name":"TTN_NEEDTEXTW","features":[355]},{"name":"TTN_POP","features":[355]},{"name":"TTN_SHOW","features":[355]},{"name":"TTP_BALLOON","features":[355]},{"name":"TTP_BALLOONSTEM","features":[355]},{"name":"TTP_BALLOONTITLE","features":[355]},{"name":"TTP_CLOSE","features":[355]},{"name":"TTP_STANDARD","features":[355]},{"name":"TTP_STANDARDTITLE","features":[355]},{"name":"TTP_WRENCH","features":[355]},{"name":"TTSS_LINK","features":[355]},{"name":"TTSS_NORMAL","features":[355]},{"name":"TTS_ALWAYSTIP","features":[355]},{"name":"TTS_BALLOON","features":[355]},{"name":"TTS_CLOSE","features":[355]},{"name":"TTS_NOANIMATE","features":[355]},{"name":"TTS_NOFADE","features":[355]},{"name":"TTS_NOPREFIX","features":[355]},{"name":"TTS_USEVISUALSTYLE","features":[355]},{"name":"TTTOOLINFOA","features":[305,355]},{"name":"TTTOOLINFOW","features":[305,355]},{"name":"TTWS_HOT","features":[355]},{"name":"TTWS_NORMAL","features":[355]},{"name":"TTWS_PRESSED","features":[355]},{"name":"TUBS_DISABLED","features":[355]},{"name":"TUBS_FOCUSED","features":[355]},{"name":"TUBS_HOT","features":[355]},{"name":"TUBS_NORMAL","features":[355]},{"name":"TUBS_PRESSED","features":[355]},{"name":"TUS_DISABLED","features":[355]},{"name":"TUS_FOCUSED","features":[355]},{"name":"TUS_HOT","features":[355]},{"name":"TUS_NORMAL","features":[355]},{"name":"TUS_PRESSED","features":[355]},{"name":"TUTS_DISABLED","features":[355]},{"name":"TUTS_FOCUSED","features":[355]},{"name":"TUTS_HOT","features":[355]},{"name":"TUTS_NORMAL","features":[355]},{"name":"TUTS_PRESSED","features":[355]},{"name":"TUVLS_DISABLED","features":[355]},{"name":"TUVLS_FOCUSED","features":[355]},{"name":"TUVLS_HOT","features":[355]},{"name":"TUVLS_NORMAL","features":[355]},{"name":"TUVLS_PRESSED","features":[355]},{"name":"TUVRS_DISABLED","features":[355]},{"name":"TUVRS_FOCUSED","features":[355]},{"name":"TUVRS_HOT","features":[355]},{"name":"TUVRS_NORMAL","features":[355]},{"name":"TUVRS_PRESSED","features":[355]},{"name":"TUVS_DISABLED","features":[355]},{"name":"TUVS_FOCUSED","features":[355]},{"name":"TUVS_HOT","features":[355]},{"name":"TUVS_NORMAL","features":[355]},{"name":"TUVS_PRESSED","features":[355]},{"name":"TVCDRF_NOIMAGES","features":[355]},{"name":"TVC_BYKEYBOARD","features":[355]},{"name":"TVC_BYMOUSE","features":[355]},{"name":"TVC_UNKNOWN","features":[355]},{"name":"TVE_COLLAPSE","features":[355]},{"name":"TVE_COLLAPSERESET","features":[355]},{"name":"TVE_EXPAND","features":[355]},{"name":"TVE_EXPANDPARTIAL","features":[355]},{"name":"TVE_TOGGLE","features":[355]},{"name":"TVGETITEMPARTRECTINFO","features":[305,355]},{"name":"TVGIPR_BUTTON","features":[355]},{"name":"TVGN_CARET","features":[355]},{"name":"TVGN_CHILD","features":[355]},{"name":"TVGN_DROPHILITE","features":[355]},{"name":"TVGN_FIRSTVISIBLE","features":[355]},{"name":"TVGN_LASTVISIBLE","features":[355]},{"name":"TVGN_NEXT","features":[355]},{"name":"TVGN_NEXTSELECTED","features":[355]},{"name":"TVGN_NEXTVISIBLE","features":[355]},{"name":"TVGN_PARENT","features":[355]},{"name":"TVGN_PREVIOUS","features":[355]},{"name":"TVGN_PREVIOUSVISIBLE","features":[355]},{"name":"TVGN_ROOT","features":[355]},{"name":"TVHITTESTINFO","features":[305,355]},{"name":"TVHITTESTINFO_FLAGS","features":[355]},{"name":"TVHT_ABOVE","features":[355]},{"name":"TVHT_BELOW","features":[355]},{"name":"TVHT_NOWHERE","features":[355]},{"name":"TVHT_ONITEM","features":[355]},{"name":"TVHT_ONITEMBUTTON","features":[355]},{"name":"TVHT_ONITEMICON","features":[355]},{"name":"TVHT_ONITEMINDENT","features":[355]},{"name":"TVHT_ONITEMLABEL","features":[355]},{"name":"TVHT_ONITEMRIGHT","features":[355]},{"name":"TVHT_ONITEMSTATEICON","features":[355]},{"name":"TVHT_TOLEFT","features":[355]},{"name":"TVHT_TORIGHT","features":[355]},{"name":"TVIF_CHILDREN","features":[355]},{"name":"TVIF_DI_SETITEM","features":[355]},{"name":"TVIF_EXPANDEDIMAGE","features":[355]},{"name":"TVIF_HANDLE","features":[355]},{"name":"TVIF_IMAGE","features":[355]},{"name":"TVIF_INTEGRAL","features":[355]},{"name":"TVIF_PARAM","features":[355]},{"name":"TVIF_SELECTEDIMAGE","features":[355]},{"name":"TVIF_STATE","features":[355]},{"name":"TVIF_STATEEX","features":[355]},{"name":"TVIF_TEXT","features":[355]},{"name":"TVINSERTSTRUCTA","features":[305,355]},{"name":"TVINSERTSTRUCTW","features":[305,355]},{"name":"TVIS_BOLD","features":[355]},{"name":"TVIS_CUT","features":[355]},{"name":"TVIS_DROPHILITED","features":[355]},{"name":"TVIS_EXPANDED","features":[355]},{"name":"TVIS_EXPANDEDONCE","features":[355]},{"name":"TVIS_EXPANDPARTIAL","features":[355]},{"name":"TVIS_EX_ALL","features":[355]},{"name":"TVIS_EX_DISABLED","features":[355]},{"name":"TVIS_EX_FLAT","features":[355]},{"name":"TVIS_OVERLAYMASK","features":[355]},{"name":"TVIS_SELECTED","features":[355]},{"name":"TVIS_STATEIMAGEMASK","features":[355]},{"name":"TVIS_USERMASK","features":[355]},{"name":"TVITEMA","features":[305,355]},{"name":"TVITEMEXA","features":[305,355]},{"name":"TVITEMEXW","features":[305,355]},{"name":"TVITEMEXW_CHILDREN","features":[355]},{"name":"TVITEMPART","features":[355]},{"name":"TVITEMW","features":[305,355]},{"name":"TVITEM_MASK","features":[355]},{"name":"TVI_FIRST","features":[355]},{"name":"TVI_LAST","features":[355]},{"name":"TVI_ROOT","features":[355]},{"name":"TVI_SORT","features":[355]},{"name":"TVM_CREATEDRAGIMAGE","features":[355]},{"name":"TVM_DELETEITEM","features":[355]},{"name":"TVM_EDITLABEL","features":[355]},{"name":"TVM_EDITLABELA","features":[355]},{"name":"TVM_EDITLABELW","features":[355]},{"name":"TVM_ENDEDITLABELNOW","features":[355]},{"name":"TVM_ENSUREVISIBLE","features":[355]},{"name":"TVM_EXPAND","features":[355]},{"name":"TVM_GETBKCOLOR","features":[355]},{"name":"TVM_GETCOUNT","features":[355]},{"name":"TVM_GETEDITCONTROL","features":[355]},{"name":"TVM_GETEXTENDEDSTYLE","features":[355]},{"name":"TVM_GETIMAGELIST","features":[355]},{"name":"TVM_GETINDENT","features":[355]},{"name":"TVM_GETINSERTMARKCOLOR","features":[355]},{"name":"TVM_GETISEARCHSTRING","features":[355]},{"name":"TVM_GETISEARCHSTRINGA","features":[355]},{"name":"TVM_GETISEARCHSTRINGW","features":[355]},{"name":"TVM_GETITEM","features":[355]},{"name":"TVM_GETITEMA","features":[355]},{"name":"TVM_GETITEMHEIGHT","features":[355]},{"name":"TVM_GETITEMPARTRECT","features":[355]},{"name":"TVM_GETITEMRECT","features":[355]},{"name":"TVM_GETITEMSTATE","features":[355]},{"name":"TVM_GETITEMW","features":[355]},{"name":"TVM_GETLINECOLOR","features":[355]},{"name":"TVM_GETNEXTITEM","features":[355]},{"name":"TVM_GETSCROLLTIME","features":[355]},{"name":"TVM_GETSELECTEDCOUNT","features":[355]},{"name":"TVM_GETTEXTCOLOR","features":[355]},{"name":"TVM_GETTOOLTIPS","features":[355]},{"name":"TVM_GETUNICODEFORMAT","features":[355]},{"name":"TVM_GETVISIBLECOUNT","features":[355]},{"name":"TVM_HITTEST","features":[355]},{"name":"TVM_INSERTITEM","features":[355]},{"name":"TVM_INSERTITEMA","features":[355]},{"name":"TVM_INSERTITEMW","features":[355]},{"name":"TVM_MAPACCIDTOHTREEITEM","features":[355]},{"name":"TVM_MAPHTREEITEMTOACCID","features":[355]},{"name":"TVM_SELECTITEM","features":[355]},{"name":"TVM_SETAUTOSCROLLINFO","features":[355]},{"name":"TVM_SETBKCOLOR","features":[355]},{"name":"TVM_SETBORDER","features":[355]},{"name":"TVM_SETEXTENDEDSTYLE","features":[355]},{"name":"TVM_SETHOT","features":[355]},{"name":"TVM_SETIMAGELIST","features":[355]},{"name":"TVM_SETINDENT","features":[355]},{"name":"TVM_SETINSERTMARK","features":[355]},{"name":"TVM_SETINSERTMARKCOLOR","features":[355]},{"name":"TVM_SETITEM","features":[355]},{"name":"TVM_SETITEMA","features":[355]},{"name":"TVM_SETITEMHEIGHT","features":[355]},{"name":"TVM_SETITEMW","features":[355]},{"name":"TVM_SETLINECOLOR","features":[355]},{"name":"TVM_SETSCROLLTIME","features":[355]},{"name":"TVM_SETTEXTCOLOR","features":[355]},{"name":"TVM_SETTOOLTIPS","features":[355]},{"name":"TVM_SETUNICODEFORMAT","features":[355]},{"name":"TVM_SHOWINFOTIP","features":[355]},{"name":"TVM_SORTCHILDREN","features":[355]},{"name":"TVM_SORTCHILDRENCB","features":[355]},{"name":"TVNRET_DEFAULT","features":[355]},{"name":"TVNRET_SKIPNEW","features":[355]},{"name":"TVNRET_SKIPOLD","features":[355]},{"name":"TVN_ASYNCDRAW","features":[355]},{"name":"TVN_BEGINDRAG","features":[355]},{"name":"TVN_BEGINDRAGA","features":[355]},{"name":"TVN_BEGINDRAGW","features":[355]},{"name":"TVN_BEGINLABELEDIT","features":[355]},{"name":"TVN_BEGINLABELEDITA","features":[355]},{"name":"TVN_BEGINLABELEDITW","features":[355]},{"name":"TVN_BEGINRDRAG","features":[355]},{"name":"TVN_BEGINRDRAGA","features":[355]},{"name":"TVN_BEGINRDRAGW","features":[355]},{"name":"TVN_DELETEITEM","features":[355]},{"name":"TVN_DELETEITEMA","features":[355]},{"name":"TVN_DELETEITEMW","features":[355]},{"name":"TVN_ENDLABELEDIT","features":[355]},{"name":"TVN_ENDLABELEDITA","features":[355]},{"name":"TVN_ENDLABELEDITW","features":[355]},{"name":"TVN_FIRST","features":[355]},{"name":"TVN_GETDISPINFO","features":[355]},{"name":"TVN_GETDISPINFOA","features":[355]},{"name":"TVN_GETDISPINFOW","features":[355]},{"name":"TVN_GETINFOTIP","features":[355]},{"name":"TVN_GETINFOTIPA","features":[355]},{"name":"TVN_GETINFOTIPW","features":[355]},{"name":"TVN_ITEMCHANGED","features":[355]},{"name":"TVN_ITEMCHANGEDA","features":[355]},{"name":"TVN_ITEMCHANGEDW","features":[355]},{"name":"TVN_ITEMCHANGING","features":[355]},{"name":"TVN_ITEMCHANGINGA","features":[355]},{"name":"TVN_ITEMCHANGINGW","features":[355]},{"name":"TVN_ITEMEXPANDED","features":[355]},{"name":"TVN_ITEMEXPANDEDA","features":[355]},{"name":"TVN_ITEMEXPANDEDW","features":[355]},{"name":"TVN_ITEMEXPANDING","features":[355]},{"name":"TVN_ITEMEXPANDINGA","features":[355]},{"name":"TVN_ITEMEXPANDINGW","features":[355]},{"name":"TVN_KEYDOWN","features":[355]},{"name":"TVN_LAST","features":[355]},{"name":"TVN_SELCHANGED","features":[355]},{"name":"TVN_SELCHANGEDA","features":[355]},{"name":"TVN_SELCHANGEDW","features":[355]},{"name":"TVN_SELCHANGING","features":[355]},{"name":"TVN_SELCHANGINGA","features":[355]},{"name":"TVN_SELCHANGINGW","features":[355]},{"name":"TVN_SETDISPINFO","features":[355]},{"name":"TVN_SETDISPINFOA","features":[355]},{"name":"TVN_SETDISPINFOW","features":[355]},{"name":"TVN_SINGLEEXPAND","features":[355]},{"name":"TVP_BRANCH","features":[355]},{"name":"TVP_GLYPH","features":[355]},{"name":"TVP_HOTGLYPH","features":[355]},{"name":"TVP_TREEITEM","features":[355]},{"name":"TVSBF_XBORDER","features":[355]},{"name":"TVSBF_YBORDER","features":[355]},{"name":"TVSIL_NORMAL","features":[355]},{"name":"TVSIL_STATE","features":[355]},{"name":"TVSI_NOSINGLEEXPAND","features":[355]},{"name":"TVSORTCB","features":[305,355]},{"name":"TVS_CHECKBOXES","features":[355]},{"name":"TVS_DISABLEDRAGDROP","features":[355]},{"name":"TVS_EDITLABELS","features":[355]},{"name":"TVS_EX_AUTOHSCROLL","features":[355]},{"name":"TVS_EX_DIMMEDCHECKBOXES","features":[355]},{"name":"TVS_EX_DOUBLEBUFFER","features":[355]},{"name":"TVS_EX_DRAWIMAGEASYNC","features":[355]},{"name":"TVS_EX_EXCLUSIONCHECKBOXES","features":[355]},{"name":"TVS_EX_FADEINOUTEXPANDOS","features":[355]},{"name":"TVS_EX_MULTISELECT","features":[355]},{"name":"TVS_EX_NOINDENTSTATE","features":[355]},{"name":"TVS_EX_NOSINGLECOLLAPSE","features":[355]},{"name":"TVS_EX_PARTIALCHECKBOXES","features":[355]},{"name":"TVS_EX_RICHTOOLTIP","features":[355]},{"name":"TVS_FULLROWSELECT","features":[355]},{"name":"TVS_HASBUTTONS","features":[355]},{"name":"TVS_HASLINES","features":[355]},{"name":"TVS_INFOTIP","features":[355]},{"name":"TVS_LINESATROOT","features":[355]},{"name":"TVS_NOHSCROLL","features":[355]},{"name":"TVS_NONEVENHEIGHT","features":[355]},{"name":"TVS_NOSCROLL","features":[355]},{"name":"TVS_NOTOOLTIPS","features":[355]},{"name":"TVS_RTLREADING","features":[355]},{"name":"TVS_SHOWSELALWAYS","features":[355]},{"name":"TVS_SINGLEEXPAND","features":[355]},{"name":"TVS_TRACKSELECT","features":[355]},{"name":"TV_FIRST","features":[355]},{"name":"TaskDialog","features":[305,355]},{"name":"TaskDialogIndirect","features":[305,355,367]},{"name":"UDACCEL","features":[355]},{"name":"UDM_GETACCEL","features":[355]},{"name":"UDM_GETBASE","features":[355]},{"name":"UDM_GETBUDDY","features":[355]},{"name":"UDM_GETPOS","features":[355]},{"name":"UDM_GETPOS32","features":[355]},{"name":"UDM_GETRANGE","features":[355]},{"name":"UDM_GETRANGE32","features":[355]},{"name":"UDM_GETUNICODEFORMAT","features":[355]},{"name":"UDM_SETACCEL","features":[355]},{"name":"UDM_SETBASE","features":[355]},{"name":"UDM_SETBUDDY","features":[355]},{"name":"UDM_SETPOS","features":[355]},{"name":"UDM_SETPOS32","features":[355]},{"name":"UDM_SETRANGE","features":[355]},{"name":"UDM_SETRANGE32","features":[355]},{"name":"UDM_SETUNICODEFORMAT","features":[355]},{"name":"UDN_DELTAPOS","features":[355]},{"name":"UDN_FIRST","features":[355]},{"name":"UDN_LAST","features":[355]},{"name":"UDS_ALIGNLEFT","features":[355]},{"name":"UDS_ALIGNRIGHT","features":[355]},{"name":"UDS_ARROWKEYS","features":[355]},{"name":"UDS_AUTOBUDDY","features":[355]},{"name":"UDS_HORZ","features":[355]},{"name":"UDS_HOTTRACK","features":[355]},{"name":"UDS_NOTHOUSANDS","features":[355]},{"name":"UDS_SETBUDDYINT","features":[355]},{"name":"UDS_WRAP","features":[355]},{"name":"UD_MAXVAL","features":[355]},{"name":"UPDATEMETADATASTATES","features":[355]},{"name":"UPDOWN_CLASS","features":[355]},{"name":"UPDOWN_CLASSA","features":[355]},{"name":"UPDOWN_CLASSW","features":[355]},{"name":"UPHORZSTATES","features":[355]},{"name":"UPHZS_DISABLED","features":[355]},{"name":"UPHZS_HOT","features":[355]},{"name":"UPHZS_NORMAL","features":[355]},{"name":"UPHZS_PRESSED","features":[355]},{"name":"UPSTATES","features":[355]},{"name":"UPS_DISABLED","features":[355]},{"name":"UPS_HOT","features":[355]},{"name":"UPS_NORMAL","features":[355]},{"name":"UPS_PRESSED","features":[355]},{"name":"USAGE_PROPERTIES","features":[355]},{"name":"USERTILEPARTS","features":[355]},{"name":"UTP_HOVERBACKGROUND","features":[355]},{"name":"UTP_STROKEBACKGROUND","features":[355]},{"name":"UTS_HOT","features":[355]},{"name":"UTS_NORMAL","features":[355]},{"name":"UTS_PRESSED","features":[355]},{"name":"UninitializeFlatSB","features":[305,355]},{"name":"UpdatePanningFeedback","features":[305,355]},{"name":"VALIDBITS","features":[355]},{"name":"VALIGN","features":[355]},{"name":"VA_BOTTOM","features":[355]},{"name":"VA_CENTER","features":[355]},{"name":"VA_TOP","features":[355]},{"name":"VERTSCROLLSTATES","features":[355]},{"name":"VERTTHUMBSTATES","features":[355]},{"name":"VIEW_DETAILS","features":[355]},{"name":"VIEW_LARGEICONS","features":[355]},{"name":"VIEW_LIST","features":[355]},{"name":"VIEW_NETCONNECT","features":[355]},{"name":"VIEW_NETDISCONNECT","features":[355]},{"name":"VIEW_NEWFOLDER","features":[355]},{"name":"VIEW_PARENTFOLDER","features":[355]},{"name":"VIEW_SMALLICONS","features":[355]},{"name":"VIEW_SORTDATE","features":[355]},{"name":"VIEW_SORTNAME","features":[355]},{"name":"VIEW_SORTSIZE","features":[355]},{"name":"VIEW_SORTTYPE","features":[355]},{"name":"VIEW_VIEWMENU","features":[355]},{"name":"VSCLASS_AEROWIZARD","features":[355]},{"name":"VSCLASS_AEROWIZARDSTYLE","features":[355]},{"name":"VSCLASS_BUTTON","features":[355]},{"name":"VSCLASS_BUTTONSTYLE","features":[355]},{"name":"VSCLASS_CLOCK","features":[355]},{"name":"VSCLASS_COMBOBOX","features":[355]},{"name":"VSCLASS_COMBOBOXSTYLE","features":[355]},{"name":"VSCLASS_COMMUNICATIONS","features":[355]},{"name":"VSCLASS_COMMUNICATIONSSTYLE","features":[355]},{"name":"VSCLASS_CONTROLPANEL","features":[355]},{"name":"VSCLASS_CONTROLPANELSTYLE","features":[355]},{"name":"VSCLASS_DATEPICKER","features":[355]},{"name":"VSCLASS_DATEPICKERSTYLE","features":[355]},{"name":"VSCLASS_DRAGDROP","features":[355]},{"name":"VSCLASS_DRAGDROPSTYLE","features":[355]},{"name":"VSCLASS_EDIT","features":[355]},{"name":"VSCLASS_EDITSTYLE","features":[355]},{"name":"VSCLASS_EMPTYMARKUP","features":[355]},{"name":"VSCLASS_EXPLORERBAR","features":[355]},{"name":"VSCLASS_EXPLORERBARSTYLE","features":[355]},{"name":"VSCLASS_FLYOUT","features":[355]},{"name":"VSCLASS_FLYOUTSTYLE","features":[355]},{"name":"VSCLASS_HEADER","features":[355]},{"name":"VSCLASS_HEADERSTYLE","features":[355]},{"name":"VSCLASS_LINK","features":[355]},{"name":"VSCLASS_LISTBOX","features":[355]},{"name":"VSCLASS_LISTBOXSTYLE","features":[355]},{"name":"VSCLASS_LISTVIEW","features":[355]},{"name":"VSCLASS_LISTVIEWSTYLE","features":[355]},{"name":"VSCLASS_MENU","features":[355]},{"name":"VSCLASS_MENUBAND","features":[355]},{"name":"VSCLASS_MENUSTYLE","features":[355]},{"name":"VSCLASS_MONTHCAL","features":[355]},{"name":"VSCLASS_NAVIGATION","features":[355]},{"name":"VSCLASS_PAGE","features":[355]},{"name":"VSCLASS_PROGRESS","features":[355]},{"name":"VSCLASS_PROGRESSSTYLE","features":[355]},{"name":"VSCLASS_REBAR","features":[355]},{"name":"VSCLASS_REBARSTYLE","features":[355]},{"name":"VSCLASS_SCROLLBAR","features":[355]},{"name":"VSCLASS_SCROLLBARSTYLE","features":[355]},{"name":"VSCLASS_SPIN","features":[355]},{"name":"VSCLASS_SPINSTYLE","features":[355]},{"name":"VSCLASS_STARTPANEL","features":[355]},{"name":"VSCLASS_STATIC","features":[355]},{"name":"VSCLASS_STATUS","features":[355]},{"name":"VSCLASS_STATUSSTYLE","features":[355]},{"name":"VSCLASS_TAB","features":[355]},{"name":"VSCLASS_TABSTYLE","features":[355]},{"name":"VSCLASS_TASKBAND","features":[355]},{"name":"VSCLASS_TASKBAR","features":[355]},{"name":"VSCLASS_TASKDIALOG","features":[355]},{"name":"VSCLASS_TASKDIALOGSTYLE","features":[355]},{"name":"VSCLASS_TEXTSELECTIONGRIPPER","features":[355]},{"name":"VSCLASS_TEXTSTYLE","features":[355]},{"name":"VSCLASS_TOOLBAR","features":[355]},{"name":"VSCLASS_TOOLBARSTYLE","features":[355]},{"name":"VSCLASS_TOOLTIP","features":[355]},{"name":"VSCLASS_TOOLTIPSTYLE","features":[355]},{"name":"VSCLASS_TRACKBAR","features":[355]},{"name":"VSCLASS_TRACKBARSTYLE","features":[355]},{"name":"VSCLASS_TRAYNOTIFY","features":[355]},{"name":"VSCLASS_TREEVIEW","features":[355]},{"name":"VSCLASS_TREEVIEWSTYLE","features":[355]},{"name":"VSCLASS_USERTILE","features":[355]},{"name":"VSCLASS_WINDOW","features":[355]},{"name":"VSCLASS_WINDOWSTYLE","features":[355]},{"name":"VSS_DISABLED","features":[355]},{"name":"VSS_HOT","features":[355]},{"name":"VSS_NORMAL","features":[355]},{"name":"VSS_PUSHED","features":[355]},{"name":"VTS_DISABLED","features":[355]},{"name":"VTS_HOT","features":[355]},{"name":"VTS_NORMAL","features":[355]},{"name":"VTS_PUSHED","features":[355]},{"name":"WARNINGSTATES","features":[355]},{"name":"WB_CLASSIFY","features":[355]},{"name":"WB_ISDELIMITER","features":[355]},{"name":"WB_LEFT","features":[355]},{"name":"WB_LEFTBREAK","features":[355]},{"name":"WB_MOVEWORDLEFT","features":[355]},{"name":"WB_MOVEWORDRIGHT","features":[355]},{"name":"WB_RIGHT","features":[355]},{"name":"WB_RIGHTBREAK","features":[355]},{"name":"WC_BUTTON","features":[355]},{"name":"WC_BUTTONA","features":[355]},{"name":"WC_BUTTONW","features":[355]},{"name":"WC_COMBOBOX","features":[355]},{"name":"WC_COMBOBOXA","features":[355]},{"name":"WC_COMBOBOXEX","features":[355]},{"name":"WC_COMBOBOXEXA","features":[355]},{"name":"WC_COMBOBOXEXW","features":[355]},{"name":"WC_COMBOBOXW","features":[355]},{"name":"WC_EDIT","features":[355]},{"name":"WC_EDITA","features":[355]},{"name":"WC_EDITW","features":[355]},{"name":"WC_HEADER","features":[355]},{"name":"WC_HEADERA","features":[355]},{"name":"WC_HEADERW","features":[355]},{"name":"WC_IPADDRESS","features":[355]},{"name":"WC_IPADDRESSA","features":[355]},{"name":"WC_IPADDRESSW","features":[355]},{"name":"WC_LINK","features":[355]},{"name":"WC_LISTBOX","features":[355]},{"name":"WC_LISTBOXA","features":[355]},{"name":"WC_LISTBOXW","features":[355]},{"name":"WC_LISTVIEW","features":[355]},{"name":"WC_LISTVIEWA","features":[355]},{"name":"WC_LISTVIEWW","features":[355]},{"name":"WC_NATIVEFONTCTL","features":[355]},{"name":"WC_NATIVEFONTCTLA","features":[355]},{"name":"WC_NATIVEFONTCTLW","features":[355]},{"name":"WC_PAGESCROLLER","features":[355]},{"name":"WC_PAGESCROLLERA","features":[355]},{"name":"WC_PAGESCROLLERW","features":[355]},{"name":"WC_SCROLLBAR","features":[355]},{"name":"WC_SCROLLBARA","features":[355]},{"name":"WC_SCROLLBARW","features":[355]},{"name":"WC_STATIC","features":[355]},{"name":"WC_STATICA","features":[355]},{"name":"WC_STATICW","features":[355]},{"name":"WC_TABCONTROL","features":[355]},{"name":"WC_TABCONTROLA","features":[355]},{"name":"WC_TABCONTROLW","features":[355]},{"name":"WC_TREEVIEW","features":[355]},{"name":"WC_TREEVIEWA","features":[355]},{"name":"WC_TREEVIEWW","features":[355]},{"name":"WINDOWPARTS","features":[355]},{"name":"WINDOWTHEMEATTRIBUTETYPE","features":[355]},{"name":"WIZ_BODYCX","features":[355]},{"name":"WIZ_BODYX","features":[355]},{"name":"WIZ_CXBMP","features":[355]},{"name":"WIZ_CXDLG","features":[355]},{"name":"WIZ_CYDLG","features":[355]},{"name":"WMN_FIRST","features":[355]},{"name":"WMN_LAST","features":[355]},{"name":"WM_CTLCOLOR","features":[355]},{"name":"WM_MOUSEHOVER","features":[355]},{"name":"WM_MOUSELEAVE","features":[355]},{"name":"WORD_BREAK_ACTION","features":[355]},{"name":"WP_BORDER","features":[355]},{"name":"WP_CAPTION","features":[355]},{"name":"WP_CAPTIONSIZINGTEMPLATE","features":[355]},{"name":"WP_CLOSEBUTTON","features":[355]},{"name":"WP_DIALOG","features":[355]},{"name":"WP_FRAME","features":[355]},{"name":"WP_FRAMEBOTTOM","features":[355]},{"name":"WP_FRAMEBOTTOMSIZINGTEMPLATE","features":[355]},{"name":"WP_FRAMELEFT","features":[355]},{"name":"WP_FRAMELEFTSIZINGTEMPLATE","features":[355]},{"name":"WP_FRAMERIGHT","features":[355]},{"name":"WP_FRAMERIGHTSIZINGTEMPLATE","features":[355]},{"name":"WP_HELPBUTTON","features":[355]},{"name":"WP_HORZSCROLL","features":[355]},{"name":"WP_HORZTHUMB","features":[355]},{"name":"WP_MAXBUTTON","features":[355]},{"name":"WP_MAXCAPTION","features":[355]},{"name":"WP_MDICLOSEBUTTON","features":[355]},{"name":"WP_MDIHELPBUTTON","features":[355]},{"name":"WP_MDIMINBUTTON","features":[355]},{"name":"WP_MDIRESTOREBUTTON","features":[355]},{"name":"WP_MDISYSBUTTON","features":[355]},{"name":"WP_MINBUTTON","features":[355]},{"name":"WP_MINCAPTION","features":[355]},{"name":"WP_RESTOREBUTTON","features":[355]},{"name":"WP_SMALLCAPTION","features":[355]},{"name":"WP_SMALLCAPTIONSIZINGTEMPLATE","features":[355]},{"name":"WP_SMALLCLOSEBUTTON","features":[355]},{"name":"WP_SMALLFRAMEBOTTOM","features":[355]},{"name":"WP_SMALLFRAMEBOTTOMSIZINGTEMPLATE","features":[355]},{"name":"WP_SMALLFRAMELEFT","features":[355]},{"name":"WP_SMALLFRAMELEFTSIZINGTEMPLATE","features":[355]},{"name":"WP_SMALLFRAMERIGHT","features":[355]},{"name":"WP_SMALLFRAMERIGHTSIZINGTEMPLATE","features":[355]},{"name":"WP_SMALLMAXCAPTION","features":[355]},{"name":"WP_SMALLMINCAPTION","features":[355]},{"name":"WP_SYSBUTTON","features":[355]},{"name":"WP_VERTSCROLL","features":[355]},{"name":"WP_VERTTHUMB","features":[355]},{"name":"WRENCHSTATES","features":[355]},{"name":"WSB_PROP","features":[355]},{"name":"WSB_PROP_CXHSCROLL","features":[355]},{"name":"WSB_PROP_CXHTHUMB","features":[355]},{"name":"WSB_PROP_CXVSCROLL","features":[355]},{"name":"WSB_PROP_CYHSCROLL","features":[355]},{"name":"WSB_PROP_CYVSCROLL","features":[355]},{"name":"WSB_PROP_CYVTHUMB","features":[355]},{"name":"WSB_PROP_HBKGCOLOR","features":[355]},{"name":"WSB_PROP_HSTYLE","features":[355]},{"name":"WSB_PROP_MASK","features":[355]},{"name":"WSB_PROP_PALETTE","features":[355]},{"name":"WSB_PROP_VBKGCOLOR","features":[355]},{"name":"WSB_PROP_VSTYLE","features":[355]},{"name":"WSB_PROP_WINSTYLE","features":[355]},{"name":"WTA_NONCLIENT","features":[355]},{"name":"WTA_OPTIONS","features":[355]},{"name":"WTNCA_NODRAWCAPTION","features":[355]},{"name":"WTNCA_NODRAWICON","features":[355]},{"name":"WTNCA_NOMIRRORHELP","features":[355]},{"name":"WTNCA_NOSYSMENU","features":[355]},{"name":"_LI_METRIC","features":[355]},{"name":"chx1","features":[355]},{"name":"chx10","features":[355]},{"name":"chx11","features":[355]},{"name":"chx12","features":[355]},{"name":"chx13","features":[355]},{"name":"chx14","features":[355]},{"name":"chx15","features":[355]},{"name":"chx16","features":[355]},{"name":"chx2","features":[355]},{"name":"chx3","features":[355]},{"name":"chx4","features":[355]},{"name":"chx5","features":[355]},{"name":"chx6","features":[355]},{"name":"chx7","features":[355]},{"name":"chx8","features":[355]},{"name":"chx9","features":[355]},{"name":"cmb1","features":[355]},{"name":"cmb10","features":[355]},{"name":"cmb11","features":[355]},{"name":"cmb12","features":[355]},{"name":"cmb13","features":[355]},{"name":"cmb14","features":[355]},{"name":"cmb15","features":[355]},{"name":"cmb16","features":[355]},{"name":"cmb2","features":[355]},{"name":"cmb3","features":[355]},{"name":"cmb4","features":[355]},{"name":"cmb5","features":[355]},{"name":"cmb6","features":[355]},{"name":"cmb7","features":[355]},{"name":"cmb8","features":[355]},{"name":"cmb9","features":[355]},{"name":"ctl1","features":[355]},{"name":"ctlFirst","features":[355]},{"name":"ctlLast","features":[355]},{"name":"edt1","features":[355]},{"name":"edt10","features":[355]},{"name":"edt11","features":[355]},{"name":"edt12","features":[355]},{"name":"edt13","features":[355]},{"name":"edt14","features":[355]},{"name":"edt15","features":[355]},{"name":"edt16","features":[355]},{"name":"edt2","features":[355]},{"name":"edt3","features":[355]},{"name":"edt4","features":[355]},{"name":"edt5","features":[355]},{"name":"edt6","features":[355]},{"name":"edt7","features":[355]},{"name":"edt8","features":[355]},{"name":"edt9","features":[355]},{"name":"frm1","features":[355]},{"name":"frm2","features":[355]},{"name":"frm3","features":[355]},{"name":"frm4","features":[355]},{"name":"grp1","features":[355]},{"name":"grp2","features":[355]},{"name":"grp3","features":[355]},{"name":"grp4","features":[355]},{"name":"ico1","features":[355]},{"name":"ico2","features":[355]},{"name":"ico3","features":[355]},{"name":"ico4","features":[355]},{"name":"lst1","features":[355]},{"name":"lst10","features":[355]},{"name":"lst11","features":[355]},{"name":"lst12","features":[355]},{"name":"lst13","features":[355]},{"name":"lst14","features":[355]},{"name":"lst15","features":[355]},{"name":"lst16","features":[355]},{"name":"lst2","features":[355]},{"name":"lst3","features":[355]},{"name":"lst4","features":[355]},{"name":"lst5","features":[355]},{"name":"lst6","features":[355]},{"name":"lst7","features":[355]},{"name":"lst8","features":[355]},{"name":"lst9","features":[355]},{"name":"psh1","features":[355]},{"name":"psh10","features":[355]},{"name":"psh11","features":[355]},{"name":"psh12","features":[355]},{"name":"psh13","features":[355]},{"name":"psh14","features":[355]},{"name":"psh15","features":[355]},{"name":"psh16","features":[355]},{"name":"psh2","features":[355]},{"name":"psh3","features":[355]},{"name":"psh4","features":[355]},{"name":"psh5","features":[355]},{"name":"psh6","features":[355]},{"name":"psh7","features":[355]},{"name":"psh8","features":[355]},{"name":"psh9","features":[355]},{"name":"pshHelp","features":[355]},{"name":"rad1","features":[355]},{"name":"rad10","features":[355]},{"name":"rad11","features":[355]},{"name":"rad12","features":[355]},{"name":"rad13","features":[355]},{"name":"rad14","features":[355]},{"name":"rad15","features":[355]},{"name":"rad16","features":[355]},{"name":"rad2","features":[355]},{"name":"rad3","features":[355]},{"name":"rad4","features":[355]},{"name":"rad5","features":[355]},{"name":"rad6","features":[355]},{"name":"rad7","features":[355]},{"name":"rad8","features":[355]},{"name":"rad9","features":[355]},{"name":"rct1","features":[355]},{"name":"rct2","features":[355]},{"name":"rct3","features":[355]},{"name":"rct4","features":[355]},{"name":"scr1","features":[355]},{"name":"scr2","features":[355]},{"name":"scr3","features":[355]},{"name":"scr4","features":[355]},{"name":"scr5","features":[355]},{"name":"scr6","features":[355]},{"name":"scr7","features":[355]},{"name":"scr8","features":[355]},{"name":"stc1","features":[355]},{"name":"stc10","features":[355]},{"name":"stc11","features":[355]},{"name":"stc12","features":[355]},{"name":"stc13","features":[355]},{"name":"stc14","features":[355]},{"name":"stc15","features":[355]},{"name":"stc16","features":[355]},{"name":"stc17","features":[355]},{"name":"stc18","features":[355]},{"name":"stc19","features":[355]},{"name":"stc2","features":[355]},{"name":"stc20","features":[355]},{"name":"stc21","features":[355]},{"name":"stc22","features":[355]},{"name":"stc23","features":[355]},{"name":"stc24","features":[355]},{"name":"stc25","features":[355]},{"name":"stc26","features":[355]},{"name":"stc27","features":[355]},{"name":"stc28","features":[355]},{"name":"stc29","features":[355]},{"name":"stc3","features":[355]},{"name":"stc30","features":[355]},{"name":"stc31","features":[355]},{"name":"stc32","features":[355]},{"name":"stc4","features":[355]},{"name":"stc5","features":[355]},{"name":"stc6","features":[355]},{"name":"stc7","features":[355]},{"name":"stc8","features":[355]},{"name":"stc9","features":[355]}],"653":[{"name":"BOLD_FONTTYPE","features":[436]},{"name":"CCERR_CHOOSECOLORCODES","features":[436]},{"name":"CC_ANYCOLOR","features":[436]},{"name":"CC_ENABLEHOOK","features":[436]},{"name":"CC_ENABLETEMPLATE","features":[436]},{"name":"CC_ENABLETEMPLATEHANDLE","features":[436]},{"name":"CC_FULLOPEN","features":[436]},{"name":"CC_PREVENTFULLOPEN","features":[436]},{"name":"CC_RGBINIT","features":[436]},{"name":"CC_SHOWHELP","features":[436]},{"name":"CC_SOLIDCOLOR","features":[436]},{"name":"CDERR_DIALOGFAILURE","features":[436]},{"name":"CDERR_FINDRESFAILURE","features":[436]},{"name":"CDERR_GENERALCODES","features":[436]},{"name":"CDERR_INITIALIZATION","features":[436]},{"name":"CDERR_LOADRESFAILURE","features":[436]},{"name":"CDERR_LOADSTRFAILURE","features":[436]},{"name":"CDERR_LOCKRESFAILURE","features":[436]},{"name":"CDERR_MEMALLOCFAILURE","features":[436]},{"name":"CDERR_MEMLOCKFAILURE","features":[436]},{"name":"CDERR_NOHINSTANCE","features":[436]},{"name":"CDERR_NOHOOK","features":[436]},{"name":"CDERR_NOTEMPLATE","features":[436]},{"name":"CDERR_REGISTERMSGFAIL","features":[436]},{"name":"CDERR_STRUCTSIZE","features":[436]},{"name":"CDM_FIRST","features":[436]},{"name":"CDM_GETFILEPATH","features":[436]},{"name":"CDM_GETFOLDERIDLIST","features":[436]},{"name":"CDM_GETFOLDERPATH","features":[436]},{"name":"CDM_GETSPEC","features":[436]},{"name":"CDM_HIDECONTROL","features":[436]},{"name":"CDM_LAST","features":[436]},{"name":"CDM_SETCONTROLTEXT","features":[436]},{"name":"CDM_SETDEFEXT","features":[436]},{"name":"CDN_FILEOK","features":[436]},{"name":"CDN_FOLDERCHANGE","features":[436]},{"name":"CDN_HELP","features":[436]},{"name":"CDN_INCLUDEITEM","features":[436]},{"name":"CDN_INITDONE","features":[436]},{"name":"CDN_SELCHANGE","features":[436]},{"name":"CDN_SHAREVIOLATION","features":[436]},{"name":"CDN_TYPECHANGE","features":[436]},{"name":"CD_LBSELADD","features":[436]},{"name":"CD_LBSELCHANGE","features":[436]},{"name":"CD_LBSELNOITEMS","features":[436]},{"name":"CD_LBSELSUB","features":[436]},{"name":"CFERR_CHOOSEFONTCODES","features":[436]},{"name":"CFERR_MAXLESSTHANMIN","features":[436]},{"name":"CFERR_NOFONTS","features":[436]},{"name":"CF_ANSIONLY","features":[436]},{"name":"CF_APPLY","features":[436]},{"name":"CF_BOTH","features":[436]},{"name":"CF_EFFECTS","features":[436]},{"name":"CF_ENABLEHOOK","features":[436]},{"name":"CF_ENABLETEMPLATE","features":[436]},{"name":"CF_ENABLETEMPLATEHANDLE","features":[436]},{"name":"CF_FIXEDPITCHONLY","features":[436]},{"name":"CF_FORCEFONTEXIST","features":[436]},{"name":"CF_INACTIVEFONTS","features":[436]},{"name":"CF_INITTOLOGFONTSTRUCT","features":[436]},{"name":"CF_LIMITSIZE","features":[436]},{"name":"CF_NOFACESEL","features":[436]},{"name":"CF_NOOEMFONTS","features":[436]},{"name":"CF_NOSCRIPTSEL","features":[436]},{"name":"CF_NOSIMULATIONS","features":[436]},{"name":"CF_NOSIZESEL","features":[436]},{"name":"CF_NOSTYLESEL","features":[436]},{"name":"CF_NOVECTORFONTS","features":[436]},{"name":"CF_NOVERTFONTS","features":[436]},{"name":"CF_PRINTERFONTS","features":[436]},{"name":"CF_SCALABLEONLY","features":[436]},{"name":"CF_SCREENFONTS","features":[436]},{"name":"CF_SCRIPTSONLY","features":[436]},{"name":"CF_SELECTSCRIPT","features":[436]},{"name":"CF_SHOWHELP","features":[436]},{"name":"CF_TTONLY","features":[436]},{"name":"CF_USESTYLE","features":[436]},{"name":"CF_WYSIWYG","features":[436]},{"name":"CHOOSECOLORA","features":[305,436]},{"name":"CHOOSECOLORA","features":[305,436]},{"name":"CHOOSECOLORW","features":[305,436]},{"name":"CHOOSECOLORW","features":[305,436]},{"name":"CHOOSECOLOR_FLAGS","features":[436]},{"name":"CHOOSEFONTA","features":[305,316,436]},{"name":"CHOOSEFONTA","features":[305,316,436]},{"name":"CHOOSEFONTW","features":[305,316,436]},{"name":"CHOOSEFONTW","features":[305,316,436]},{"name":"CHOOSEFONT_FLAGS","features":[436]},{"name":"CHOOSEFONT_FONT_TYPE","features":[436]},{"name":"COLOROKSTRING","features":[436]},{"name":"COLOROKSTRINGA","features":[436]},{"name":"COLOROKSTRINGW","features":[436]},{"name":"COLOR_ADD","features":[436]},{"name":"COLOR_BLUE","features":[436]},{"name":"COLOR_BLUEACCEL","features":[436]},{"name":"COLOR_BOX1","features":[436]},{"name":"COLOR_CURRENT","features":[436]},{"name":"COLOR_CUSTOM1","features":[436]},{"name":"COLOR_ELEMENT","features":[436]},{"name":"COLOR_GREEN","features":[436]},{"name":"COLOR_GREENACCEL","features":[436]},{"name":"COLOR_HUE","features":[436]},{"name":"COLOR_HUEACCEL","features":[436]},{"name":"COLOR_HUESCROLL","features":[436]},{"name":"COLOR_LUM","features":[436]},{"name":"COLOR_LUMACCEL","features":[436]},{"name":"COLOR_LUMSCROLL","features":[436]},{"name":"COLOR_MIX","features":[436]},{"name":"COLOR_PALETTE","features":[436]},{"name":"COLOR_RAINBOW","features":[436]},{"name":"COLOR_RED","features":[436]},{"name":"COLOR_REDACCEL","features":[436]},{"name":"COLOR_SAMPLES","features":[436]},{"name":"COLOR_SAT","features":[436]},{"name":"COLOR_SATACCEL","features":[436]},{"name":"COLOR_SATSCROLL","features":[436]},{"name":"COLOR_SAVE","features":[436]},{"name":"COLOR_SCHEMES","features":[436]},{"name":"COLOR_SOLID","features":[436]},{"name":"COLOR_SOLID_LEFT","features":[436]},{"name":"COLOR_SOLID_RIGHT","features":[436]},{"name":"COLOR_TUNE","features":[436]},{"name":"COMMON_DLG_ERRORS","features":[436]},{"name":"ChooseColorA","features":[305,436]},{"name":"ChooseColorW","features":[305,436]},{"name":"ChooseFontA","features":[305,316,436]},{"name":"ChooseFontW","features":[305,316,436]},{"name":"CommDlgExtendedError","features":[436]},{"name":"DEVNAMES","features":[436]},{"name":"DEVNAMES","features":[436]},{"name":"DLG_COLOR","features":[436]},{"name":"DN_DEFAULTPRN","features":[436]},{"name":"FILEOKSTRING","features":[436]},{"name":"FILEOKSTRINGA","features":[436]},{"name":"FILEOKSTRINGW","features":[436]},{"name":"FINDMSGSTRING","features":[436]},{"name":"FINDMSGSTRINGA","features":[436]},{"name":"FINDMSGSTRINGW","features":[436]},{"name":"FINDREPLACEA","features":[305,436]},{"name":"FINDREPLACEA","features":[305,436]},{"name":"FINDREPLACEW","features":[305,436]},{"name":"FINDREPLACEW","features":[305,436]},{"name":"FINDREPLACE_FLAGS","features":[436]},{"name":"FNERR_BUFFERTOOSMALL","features":[436]},{"name":"FNERR_FILENAMECODES","features":[436]},{"name":"FNERR_INVALIDFILENAME","features":[436]},{"name":"FNERR_SUBCLASSFAILURE","features":[436]},{"name":"FRERR_BUFFERLENGTHZERO","features":[436]},{"name":"FRERR_FINDREPLACECODES","features":[436]},{"name":"FRM_FIRST","features":[436]},{"name":"FRM_LAST","features":[436]},{"name":"FRM_SETOPERATIONRESULT","features":[436]},{"name":"FRM_SETOPERATIONRESULTTEXT","features":[436]},{"name":"FR_DIALOGTERM","features":[436]},{"name":"FR_DOWN","features":[436]},{"name":"FR_ENABLEHOOK","features":[436]},{"name":"FR_ENABLETEMPLATE","features":[436]},{"name":"FR_ENABLETEMPLATEHANDLE","features":[436]},{"name":"FR_FINDNEXT","features":[436]},{"name":"FR_HIDEMATCHCASE","features":[436]},{"name":"FR_HIDEUPDOWN","features":[436]},{"name":"FR_HIDEWHOLEWORD","features":[436]},{"name":"FR_MATCHALEFHAMZA","features":[436]},{"name":"FR_MATCHCASE","features":[436]},{"name":"FR_MATCHDIAC","features":[436]},{"name":"FR_MATCHKASHIDA","features":[436]},{"name":"FR_NOMATCHCASE","features":[436]},{"name":"FR_NOUPDOWN","features":[436]},{"name":"FR_NOWHOLEWORD","features":[436]},{"name":"FR_NOWRAPAROUND","features":[436]},{"name":"FR_RAW","features":[436]},{"name":"FR_REPLACE","features":[436]},{"name":"FR_REPLACEALL","features":[436]},{"name":"FR_SHOWHELP","features":[436]},{"name":"FR_SHOWWRAPAROUND","features":[436]},{"name":"FR_WHOLEWORD","features":[436]},{"name":"FR_WRAPAROUND","features":[436]},{"name":"FindTextA","features":[305,436]},{"name":"FindTextW","features":[305,436]},{"name":"GetFileTitleA","features":[436]},{"name":"GetFileTitleW","features":[436]},{"name":"GetOpenFileNameA","features":[305,436]},{"name":"GetOpenFileNameW","features":[305,436]},{"name":"GetSaveFileNameA","features":[305,436]},{"name":"GetSaveFileNameW","features":[305,436]},{"name":"HELPMSGSTRING","features":[436]},{"name":"HELPMSGSTRINGA","features":[436]},{"name":"HELPMSGSTRINGW","features":[436]},{"name":"IPrintDialogCallback","features":[436]},{"name":"IPrintDialogServices","features":[436]},{"name":"ITALIC_FONTTYPE","features":[436]},{"name":"LBSELCHSTRING","features":[436]},{"name":"LBSELCHSTRINGA","features":[436]},{"name":"LBSELCHSTRINGW","features":[436]},{"name":"LPCCHOOKPROC","features":[305,436]},{"name":"LPCFHOOKPROC","features":[305,436]},{"name":"LPFRHOOKPROC","features":[305,436]},{"name":"LPOFNHOOKPROC","features":[305,436]},{"name":"LPPAGEPAINTHOOK","features":[305,436]},{"name":"LPPAGESETUPHOOK","features":[305,436]},{"name":"LPPRINTHOOKPROC","features":[305,436]},{"name":"LPSETUPHOOKPROC","features":[305,436]},{"name":"NUM_BASIC_COLORS","features":[436]},{"name":"NUM_CUSTOM_COLORS","features":[436]},{"name":"OFNOTIFYA","features":[305,436]},{"name":"OFNOTIFYA","features":[305,436]},{"name":"OFNOTIFYEXA","features":[305,436]},{"name":"OFNOTIFYEXA","features":[305,436]},{"name":"OFNOTIFYEXW","features":[305,436]},{"name":"OFNOTIFYEXW","features":[305,436]},{"name":"OFNOTIFYW","features":[305,436]},{"name":"OFNOTIFYW","features":[305,436]},{"name":"OFN_ALLOWMULTISELECT","features":[436]},{"name":"OFN_CREATEPROMPT","features":[436]},{"name":"OFN_DONTADDTORECENT","features":[436]},{"name":"OFN_ENABLEHOOK","features":[436]},{"name":"OFN_ENABLEINCLUDENOTIFY","features":[436]},{"name":"OFN_ENABLESIZING","features":[436]},{"name":"OFN_ENABLETEMPLATE","features":[436]},{"name":"OFN_ENABLETEMPLATEHANDLE","features":[436]},{"name":"OFN_EXPLORER","features":[436]},{"name":"OFN_EXTENSIONDIFFERENT","features":[436]},{"name":"OFN_EX_NONE","features":[436]},{"name":"OFN_EX_NOPLACESBAR","features":[436]},{"name":"OFN_FILEMUSTEXIST","features":[436]},{"name":"OFN_FORCESHOWHIDDEN","features":[436]},{"name":"OFN_HIDEREADONLY","features":[436]},{"name":"OFN_LONGNAMES","features":[436]},{"name":"OFN_NOCHANGEDIR","features":[436]},{"name":"OFN_NODEREFERENCELINKS","features":[436]},{"name":"OFN_NOLONGNAMES","features":[436]},{"name":"OFN_NONETWORKBUTTON","features":[436]},{"name":"OFN_NOREADONLYRETURN","features":[436]},{"name":"OFN_NOTESTFILECREATE","features":[436]},{"name":"OFN_NOVALIDATE","features":[436]},{"name":"OFN_OVERWRITEPROMPT","features":[436]},{"name":"OFN_PATHMUSTEXIST","features":[436]},{"name":"OFN_READONLY","features":[436]},{"name":"OFN_SHAREAWARE","features":[436]},{"name":"OFN_SHAREFALLTHROUGH","features":[436]},{"name":"OFN_SHARENOWARN","features":[436]},{"name":"OFN_SHAREWARN","features":[436]},{"name":"OFN_SHOWHELP","features":[436]},{"name":"OPENFILENAMEA","features":[305,436]},{"name":"OPENFILENAMEA","features":[305,436]},{"name":"OPENFILENAMEW","features":[305,436]},{"name":"OPENFILENAMEW","features":[305,436]},{"name":"OPENFILENAME_NT4A","features":[305,436]},{"name":"OPENFILENAME_NT4A","features":[305,436]},{"name":"OPENFILENAME_NT4W","features":[305,436]},{"name":"OPENFILENAME_NT4W","features":[305,436]},{"name":"OPEN_FILENAME_FLAGS","features":[436]},{"name":"OPEN_FILENAME_FLAGS_EX","features":[436]},{"name":"PAGESETUPDLGA","features":[305,436]},{"name":"PAGESETUPDLGA","features":[305,436]},{"name":"PAGESETUPDLGW","features":[305,436]},{"name":"PAGESETUPDLGW","features":[305,436]},{"name":"PAGESETUPDLG_FLAGS","features":[436]},{"name":"PDERR_CREATEICFAILURE","features":[436]},{"name":"PDERR_DEFAULTDIFFERENT","features":[436]},{"name":"PDERR_DNDMMISMATCH","features":[436]},{"name":"PDERR_GETDEVMODEFAIL","features":[436]},{"name":"PDERR_INITFAILURE","features":[436]},{"name":"PDERR_LOADDRVFAILURE","features":[436]},{"name":"PDERR_NODEFAULTPRN","features":[436]},{"name":"PDERR_NODEVICES","features":[436]},{"name":"PDERR_PARSEFAILURE","features":[436]},{"name":"PDERR_PRINTERCODES","features":[436]},{"name":"PDERR_PRINTERNOTFOUND","features":[436]},{"name":"PDERR_RETDEFFAILURE","features":[436]},{"name":"PDERR_SETUPFAILURE","features":[436]},{"name":"PD_ALLPAGES","features":[436]},{"name":"PD_COLLATE","features":[436]},{"name":"PD_CURRENTPAGE","features":[436]},{"name":"PD_DISABLEPRINTTOFILE","features":[436]},{"name":"PD_ENABLEPRINTHOOK","features":[436]},{"name":"PD_ENABLEPRINTTEMPLATE","features":[436]},{"name":"PD_ENABLEPRINTTEMPLATEHANDLE","features":[436]},{"name":"PD_ENABLESETUPHOOK","features":[436]},{"name":"PD_ENABLESETUPTEMPLATE","features":[436]},{"name":"PD_ENABLESETUPTEMPLATEHANDLE","features":[436]},{"name":"PD_EXCLUSIONFLAGS","features":[436]},{"name":"PD_HIDEPRINTTOFILE","features":[436]},{"name":"PD_NOCURRENTPAGE","features":[436]},{"name":"PD_NONETWORKBUTTON","features":[436]},{"name":"PD_NOPAGENUMS","features":[436]},{"name":"PD_NOSELECTION","features":[436]},{"name":"PD_NOWARNING","features":[436]},{"name":"PD_PAGENUMS","features":[436]},{"name":"PD_PRINTSETUP","features":[436]},{"name":"PD_PRINTTOFILE","features":[436]},{"name":"PD_RESULT_APPLY","features":[436]},{"name":"PD_RESULT_CANCEL","features":[436]},{"name":"PD_RESULT_PRINT","features":[436]},{"name":"PD_RETURNDC","features":[436]},{"name":"PD_RETURNDEFAULT","features":[436]},{"name":"PD_RETURNIC","features":[436]},{"name":"PD_SELECTION","features":[436]},{"name":"PD_SHOWHELP","features":[436]},{"name":"PD_USEDEVMODECOPIES","features":[436]},{"name":"PD_USEDEVMODECOPIESANDCOLLATE","features":[436]},{"name":"PD_USELARGETEMPLATE","features":[436]},{"name":"PRINTDLGA","features":[305,316,436]},{"name":"PRINTDLGA","features":[305,316,436]},{"name":"PRINTDLGEXA","features":[305,316,436]},{"name":"PRINTDLGEXA","features":[305,316,436]},{"name":"PRINTDLGEXW","features":[305,316,436]},{"name":"PRINTDLGEXW","features":[305,316,436]},{"name":"PRINTDLGEX_FLAGS","features":[436]},{"name":"PRINTDLGW","features":[305,316,436]},{"name":"PRINTDLGW","features":[305,316,436]},{"name":"PRINTER_FONTTYPE","features":[436]},{"name":"PRINTPAGERANGE","features":[436]},{"name":"PRINTPAGERANGE","features":[436]},{"name":"PSD_DEFAULTMINMARGINS","features":[436]},{"name":"PSD_DISABLEMARGINS","features":[436]},{"name":"PSD_DISABLEORIENTATION","features":[436]},{"name":"PSD_DISABLEPAGEPAINTING","features":[436]},{"name":"PSD_DISABLEPAPER","features":[436]},{"name":"PSD_DISABLEPRINTER","features":[436]},{"name":"PSD_ENABLEPAGEPAINTHOOK","features":[436]},{"name":"PSD_ENABLEPAGESETUPHOOK","features":[436]},{"name":"PSD_ENABLEPAGESETUPTEMPLATE","features":[436]},{"name":"PSD_ENABLEPAGESETUPTEMPLATEHANDLE","features":[436]},{"name":"PSD_INHUNDREDTHSOFMILLIMETERS","features":[436]},{"name":"PSD_INTHOUSANDTHSOFINCHES","features":[436]},{"name":"PSD_INWININIINTLMEASURE","features":[436]},{"name":"PSD_MARGINS","features":[436]},{"name":"PSD_MINMARGINS","features":[436]},{"name":"PSD_NONETWORKBUTTON","features":[436]},{"name":"PSD_NOWARNING","features":[436]},{"name":"PSD_RETURNDEFAULT","features":[436]},{"name":"PSD_SHOWHELP","features":[436]},{"name":"PS_OPENTYPE_FONTTYPE","features":[436]},{"name":"PageSetupDlgA","features":[305,436]},{"name":"PageSetupDlgW","features":[305,436]},{"name":"PrintDlgA","features":[305,316,436]},{"name":"PrintDlgExA","features":[305,316,436]},{"name":"PrintDlgExW","features":[305,316,436]},{"name":"PrintDlgW","features":[305,316,436]},{"name":"REGULAR_FONTTYPE","features":[436]},{"name":"ReplaceTextA","features":[305,436]},{"name":"ReplaceTextW","features":[305,436]},{"name":"SCREEN_FONTTYPE","features":[436]},{"name":"SETRGBSTRING","features":[436]},{"name":"SETRGBSTRINGA","features":[436]},{"name":"SETRGBSTRINGW","features":[436]},{"name":"SHAREVISTRING","features":[436]},{"name":"SHAREVISTRINGA","features":[436]},{"name":"SHAREVISTRINGW","features":[436]},{"name":"SIMULATED_FONTTYPE","features":[436]},{"name":"START_PAGE_GENERAL","features":[436]},{"name":"SYMBOL_FONTTYPE","features":[436]},{"name":"TT_OPENTYPE_FONTTYPE","features":[436]},{"name":"TYPE1_FONTTYPE","features":[436]},{"name":"WM_CHOOSEFONT_GETLOGFONT","features":[436]},{"name":"WM_CHOOSEFONT_SETFLAGS","features":[436]},{"name":"WM_CHOOSEFONT_SETLOGFONT","features":[436]},{"name":"WM_PSD_ENVSTAMPRECT","features":[436]},{"name":"WM_PSD_FULLPAGERECT","features":[436]},{"name":"WM_PSD_GREEKTEXTRECT","features":[436]},{"name":"WM_PSD_MARGINRECT","features":[436]},{"name":"WM_PSD_MINMARGINRECT","features":[436]},{"name":"WM_PSD_YAFULLPAGERECT","features":[436]}],"654":[{"name":"ATP_CHANGE","features":[618]},{"name":"ATP_NOCHANGE","features":[618]},{"name":"ATP_NODELIMITER","features":[618]},{"name":"ATP_REPLACEALLTEXT","features":[618]},{"name":"AURL_DISABLEMIXEDLGC","features":[618]},{"name":"AURL_ENABLEDRIVELETTERS","features":[618]},{"name":"AURL_ENABLEEA","features":[618]},{"name":"AURL_ENABLEEAURLS","features":[618]},{"name":"AURL_ENABLEEMAILADDR","features":[618]},{"name":"AURL_ENABLETELNO","features":[618]},{"name":"AURL_ENABLEURL","features":[618]},{"name":"AutoCorrectProc","features":[618]},{"name":"BIDIOPTIONS","features":[618]},{"name":"BOE_CONTEXTALIGNMENT","features":[618]},{"name":"BOE_CONTEXTREADING","features":[618]},{"name":"BOE_FORCERECALC","features":[618]},{"name":"BOE_LEGACYBIDICLASS","features":[618]},{"name":"BOE_NEUTRALOVERRIDE","features":[618]},{"name":"BOE_PLAINTEXT","features":[618]},{"name":"BOE_RTLDIR","features":[618]},{"name":"BOE_UNICODEBIDI","features":[618]},{"name":"BOM_CONTEXTALIGNMENT","features":[618]},{"name":"BOM_CONTEXTREADING","features":[618]},{"name":"BOM_DEFPARADIR","features":[618]},{"name":"BOM_LEGACYBIDICLASS","features":[618]},{"name":"BOM_NEUTRALOVERRIDE","features":[618]},{"name":"BOM_PLAINTEXT","features":[618]},{"name":"BOM_UNICODEBIDI","features":[618]},{"name":"CARET_CUSTOM","features":[618]},{"name":"CARET_FLAGS","features":[618]},{"name":"CARET_INFO","features":[316,618]},{"name":"CARET_ITALIC","features":[618]},{"name":"CARET_NONE","features":[618]},{"name":"CARET_NULL","features":[618]},{"name":"CARET_ROTATE90","features":[618]},{"name":"CARET_RTL","features":[618]},{"name":"CERICHEDIT_CLASSA","features":[618]},{"name":"CERICHEDIT_CLASSW","features":[618]},{"name":"CFE_ALLCAPS","features":[618]},{"name":"CFE_AUTOBACKCOLOR","features":[618]},{"name":"CFE_AUTOCOLOR","features":[618]},{"name":"CFE_BOLD","features":[618]},{"name":"CFE_DISABLED","features":[618]},{"name":"CFE_EFFECTS","features":[618]},{"name":"CFE_EMBOSS","features":[618]},{"name":"CFE_EXTENDED","features":[618]},{"name":"CFE_FONTBOUND","features":[618]},{"name":"CFE_HIDDEN","features":[618]},{"name":"CFE_IMPRINT","features":[618]},{"name":"CFE_ITALIC","features":[618]},{"name":"CFE_LINK","features":[618]},{"name":"CFE_LINKPROTECTED","features":[618]},{"name":"CFE_MATH","features":[618]},{"name":"CFE_MATHNOBUILDUP","features":[618]},{"name":"CFE_MATHORDINARY","features":[618]},{"name":"CFE_OUTLINE","features":[618]},{"name":"CFE_PROTECTED","features":[618]},{"name":"CFE_REVISED","features":[618]},{"name":"CFE_SHADOW","features":[618]},{"name":"CFE_SMALLCAPS","features":[618]},{"name":"CFE_STRIKEOUT","features":[618]},{"name":"CFE_SUBSCRIPT","features":[618]},{"name":"CFE_SUPERSCRIPT","features":[618]},{"name":"CFE_UNDERLINE","features":[618]},{"name":"CFM_ALL","features":[618]},{"name":"CFM_ALL2","features":[618]},{"name":"CFM_ALLCAPS","features":[618]},{"name":"CFM_ALLEFFECTS","features":[618]},{"name":"CFM_ANIMATION","features":[618]},{"name":"CFM_BACKCOLOR","features":[618]},{"name":"CFM_BOLD","features":[618]},{"name":"CFM_CHARSET","features":[618]},{"name":"CFM_COLOR","features":[618]},{"name":"CFM_COOKIE","features":[618]},{"name":"CFM_DISABLED","features":[618]},{"name":"CFM_EFFECTS","features":[618]},{"name":"CFM_EFFECTS2","features":[618]},{"name":"CFM_EMBOSS","features":[618]},{"name":"CFM_EXTENDED","features":[618]},{"name":"CFM_FACE","features":[618]},{"name":"CFM_FONTBOUND","features":[618]},{"name":"CFM_HIDDEN","features":[618]},{"name":"CFM_IMPRINT","features":[618]},{"name":"CFM_ITALIC","features":[618]},{"name":"CFM_KERNING","features":[618]},{"name":"CFM_LCID","features":[618]},{"name":"CFM_LINK","features":[618]},{"name":"CFM_LINKPROTECTED","features":[618]},{"name":"CFM_MASK","features":[618]},{"name":"CFM_MATH","features":[618]},{"name":"CFM_MATHNOBUILDUP","features":[618]},{"name":"CFM_MATHORDINARY","features":[618]},{"name":"CFM_OFFSET","features":[618]},{"name":"CFM_OUTLINE","features":[618]},{"name":"CFM_PROTECTED","features":[618]},{"name":"CFM_REVAUTHOR","features":[618]},{"name":"CFM_REVISED","features":[618]},{"name":"CFM_SHADOW","features":[618]},{"name":"CFM_SIZE","features":[618]},{"name":"CFM_SMALLCAPS","features":[618]},{"name":"CFM_SPACING","features":[618]},{"name":"CFM_STRIKEOUT","features":[618]},{"name":"CFM_STYLE","features":[618]},{"name":"CFM_SUBSCRIPT","features":[618]},{"name":"CFM_SUPERSCRIPT","features":[618]},{"name":"CFM_UNDERLINE","features":[618]},{"name":"CFM_UNDERLINETYPE","features":[618]},{"name":"CFM_WEIGHT","features":[618]},{"name":"CF_RETEXTOBJ","features":[618]},{"name":"CF_RTF","features":[618]},{"name":"CF_RTFNOOBJS","features":[618]},{"name":"CHANGENOTIFY","features":[618]},{"name":"CHANGETYPE","features":[618]},{"name":"CHARFORMAT2A","features":[305,316,618]},{"name":"CHARFORMAT2W","features":[305,316,618]},{"name":"CHARFORMATA","features":[305,316,618]},{"name":"CHARFORMATW","features":[305,316,618]},{"name":"CHARRANGE","features":[618]},{"name":"CLIPBOARDFORMAT","features":[305,618]},{"name":"CLIPBOARDFORMAT","features":[305,618]},{"name":"CN_GENERIC","features":[618]},{"name":"CN_NEWREDO","features":[618]},{"name":"CN_NEWUNDO","features":[618]},{"name":"CN_TEXTCHANGED","features":[618]},{"name":"COMPCOLOR","features":[305,618]},{"name":"CTFMODEBIAS_CONVERSATION","features":[618]},{"name":"CTFMODEBIAS_DATETIME","features":[618]},{"name":"CTFMODEBIAS_DEFAULT","features":[618]},{"name":"CTFMODEBIAS_FILENAME","features":[618]},{"name":"CTFMODEBIAS_FULLWIDTHALPHANUMERIC","features":[618]},{"name":"CTFMODEBIAS_HALFWIDTHALPHANUMERIC","features":[618]},{"name":"CTFMODEBIAS_HALFWIDTHKATAKANA","features":[618]},{"name":"CTFMODEBIAS_HANGUL","features":[618]},{"name":"CTFMODEBIAS_HIRAGANA","features":[618]},{"name":"CTFMODEBIAS_KATAKANA","features":[618]},{"name":"CTFMODEBIAS_NAME","features":[618]},{"name":"CTFMODEBIAS_NUMERIC","features":[618]},{"name":"CTFMODEBIAS_READING","features":[618]},{"name":"ECN_ENDCOMPOSITION","features":[618]},{"name":"ECN_NEWTEXT","features":[618]},{"name":"ECOOP_AND","features":[618]},{"name":"ECOOP_OR","features":[618]},{"name":"ECOOP_SET","features":[618]},{"name":"ECOOP_XOR","features":[618]},{"name":"ECO_AUTOHSCROLL","features":[618]},{"name":"ECO_AUTOVSCROLL","features":[618]},{"name":"ECO_AUTOWORDSELECTION","features":[618]},{"name":"ECO_NOHIDESEL","features":[618]},{"name":"ECO_READONLY","features":[618]},{"name":"ECO_SAVESEL","features":[618]},{"name":"ECO_SELECTIONBAR","features":[618]},{"name":"ECO_VERTICAL","features":[618]},{"name":"ECO_WANTRETURN","features":[618]},{"name":"EDITSTREAM","features":[618]},{"name":"EDITSTREAM","features":[618]},{"name":"EDITSTREAMCALLBACK","features":[618]},{"name":"EDITWORDBREAKPROCEX","features":[618]},{"name":"ELLIPSIS_END","features":[618]},{"name":"ELLIPSIS_MASK","features":[618]},{"name":"ELLIPSIS_NONE","features":[618]},{"name":"ELLIPSIS_WORD","features":[618]},{"name":"EMO_ENTER","features":[618]},{"name":"EMO_EXIT","features":[618]},{"name":"EMO_EXPAND","features":[618]},{"name":"EMO_EXPANDDOCUMENT","features":[618]},{"name":"EMO_EXPANDSELECTION","features":[618]},{"name":"EMO_GETVIEWMODE","features":[618]},{"name":"EMO_MOVESELECTION","features":[618]},{"name":"EMO_PROMOTE","features":[618]},{"name":"EM_AUTOURLDETECT","features":[618]},{"name":"EM_CALLAUTOCORRECTPROC","features":[618]},{"name":"EM_CANPASTE","features":[618]},{"name":"EM_CANREDO","features":[618]},{"name":"EM_CONVPOSITION","features":[618]},{"name":"EM_DISPLAYBAND","features":[618]},{"name":"EM_EXGETSEL","features":[618]},{"name":"EM_EXLIMITTEXT","features":[618]},{"name":"EM_EXLINEFROMCHAR","features":[618]},{"name":"EM_EXSETSEL","features":[618]},{"name":"EM_FINDTEXT","features":[618]},{"name":"EM_FINDTEXTEX","features":[618]},{"name":"EM_FINDTEXTEXW","features":[618]},{"name":"EM_FINDTEXTW","features":[618]},{"name":"EM_FINDWORDBREAK","features":[618]},{"name":"EM_FORMATRANGE","features":[618]},{"name":"EM_GETAUTOCORRECTPROC","features":[618]},{"name":"EM_GETAUTOURLDETECT","features":[618]},{"name":"EM_GETBIDIOPTIONS","features":[618]},{"name":"EM_GETCHARFORMAT","features":[618]},{"name":"EM_GETCTFMODEBIAS","features":[618]},{"name":"EM_GETCTFOPENSTATUS","features":[618]},{"name":"EM_GETEDITSTYLE","features":[618]},{"name":"EM_GETEDITSTYLEEX","features":[618]},{"name":"EM_GETELLIPSISMODE","features":[618]},{"name":"EM_GETELLIPSISSTATE","features":[618]},{"name":"EM_GETEVENTMASK","features":[618]},{"name":"EM_GETHYPHENATEINFO","features":[618]},{"name":"EM_GETIMECOLOR","features":[618]},{"name":"EM_GETIMECOMPMODE","features":[618]},{"name":"EM_GETIMECOMPTEXT","features":[618]},{"name":"EM_GETIMEMODEBIAS","features":[618]},{"name":"EM_GETIMEOPTIONS","features":[618]},{"name":"EM_GETIMEPROPERTY","features":[618]},{"name":"EM_GETLANGOPTIONS","features":[618]},{"name":"EM_GETOLEINTERFACE","features":[618]},{"name":"EM_GETOPTIONS","features":[618]},{"name":"EM_GETPAGE","features":[618]},{"name":"EM_GETPAGEROTATE","features":[618]},{"name":"EM_GETPARAFORMAT","features":[618]},{"name":"EM_GETPUNCTUATION","features":[618]},{"name":"EM_GETQUERYRTFOBJ","features":[618]},{"name":"EM_GETREDONAME","features":[618]},{"name":"EM_GETSCROLLPOS","features":[618]},{"name":"EM_GETSELTEXT","features":[618]},{"name":"EM_GETSTORYTYPE","features":[618]},{"name":"EM_GETTABLEPARMS","features":[618]},{"name":"EM_GETTEXTEX","features":[618]},{"name":"EM_GETTEXTLENGTHEX","features":[618]},{"name":"EM_GETTEXTMODE","features":[618]},{"name":"EM_GETTEXTRANGE","features":[618]},{"name":"EM_GETTOUCHOPTIONS","features":[618]},{"name":"EM_GETTYPOGRAPHYOPTIONS","features":[618]},{"name":"EM_GETUNDONAME","features":[618]},{"name":"EM_GETVIEWKIND","features":[618]},{"name":"EM_GETWORDBREAKPROCEX","features":[618]},{"name":"EM_GETWORDWRAPMODE","features":[618]},{"name":"EM_GETZOOM","features":[618]},{"name":"EM_HIDESELECTION","features":[618]},{"name":"EM_INSERTIMAGE","features":[618]},{"name":"EM_INSERTTABLE","features":[618]},{"name":"EM_ISIME","features":[618]},{"name":"EM_OUTLINE","features":[618]},{"name":"EM_PASTESPECIAL","features":[618]},{"name":"EM_RECONVERSION","features":[618]},{"name":"EM_REDO","features":[618]},{"name":"EM_REQUESTRESIZE","features":[618]},{"name":"EM_SELECTIONTYPE","features":[618]},{"name":"EM_SETAUTOCORRECTPROC","features":[618]},{"name":"EM_SETBIDIOPTIONS","features":[618]},{"name":"EM_SETBKGNDCOLOR","features":[618]},{"name":"EM_SETCHARFORMAT","features":[618]},{"name":"EM_SETCTFMODEBIAS","features":[618]},{"name":"EM_SETCTFOPENSTATUS","features":[618]},{"name":"EM_SETDISABLEOLELINKCONVERSION","features":[618]},{"name":"EM_SETEDITSTYLE","features":[618]},{"name":"EM_SETEDITSTYLEEX","features":[618]},{"name":"EM_SETELLIPSISMODE","features":[618]},{"name":"EM_SETEVENTMASK","features":[618]},{"name":"EM_SETFONTSIZE","features":[618]},{"name":"EM_SETHYPHENATEINFO","features":[618]},{"name":"EM_SETIMECOLOR","features":[618]},{"name":"EM_SETIMEMODEBIAS","features":[618]},{"name":"EM_SETIMEOPTIONS","features":[618]},{"name":"EM_SETLANGOPTIONS","features":[618]},{"name":"EM_SETOLECALLBACK","features":[618]},{"name":"EM_SETOPTIONS","features":[618]},{"name":"EM_SETPAGE","features":[618]},{"name":"EM_SETPAGEROTATE","features":[618]},{"name":"EM_SETPALETTE","features":[618]},{"name":"EM_SETPARAFORMAT","features":[618]},{"name":"EM_SETPUNCTUATION","features":[618]},{"name":"EM_SETQUERYCONVERTOLELINKCALLBACK","features":[618]},{"name":"EM_SETQUERYRTFOBJ","features":[618]},{"name":"EM_SETSCROLLPOS","features":[618]},{"name":"EM_SETSTORYTYPE","features":[618]},{"name":"EM_SETTABLEPARMS","features":[618]},{"name":"EM_SETTARGETDEVICE","features":[618]},{"name":"EM_SETTEXTEX","features":[618]},{"name":"EM_SETTEXTMODE","features":[618]},{"name":"EM_SETTOUCHOPTIONS","features":[618]},{"name":"EM_SETTYPOGRAPHYOPTIONS","features":[618]},{"name":"EM_SETUIANAME","features":[618]},{"name":"EM_SETUNDOLIMIT","features":[618]},{"name":"EM_SETVIEWKIND","features":[618]},{"name":"EM_SETWORDBREAKPROCEX","features":[618]},{"name":"EM_SETWORDWRAPMODE","features":[618]},{"name":"EM_SETZOOM","features":[618]},{"name":"EM_SHOWSCROLLBAR","features":[618]},{"name":"EM_STOPGROUPTYPING","features":[618]},{"name":"EM_STREAMIN","features":[618]},{"name":"EM_STREAMOUT","features":[618]},{"name":"ENCORRECTTEXT","features":[305,618]},{"name":"ENCORRECTTEXT","features":[305,618]},{"name":"ENDCOMPOSITIONNOTIFY","features":[305,618]},{"name":"ENDCOMPOSITIONNOTIFY","features":[305,618]},{"name":"ENDCOMPOSITIONNOTIFY_CODE","features":[618]},{"name":"ENDROPFILES","features":[305,618]},{"name":"ENDROPFILES","features":[305,618]},{"name":"ENLINK","features":[305,618]},{"name":"ENLINK","features":[305,618]},{"name":"ENLOWFIRTF","features":[305,618]},{"name":"ENLOWFIRTF","features":[305,618]},{"name":"ENM_CHANGE","features":[618]},{"name":"ENM_CLIPFORMAT","features":[618]},{"name":"ENM_CORRECTTEXT","features":[618]},{"name":"ENM_DRAGDROPDONE","features":[618]},{"name":"ENM_DROPFILES","features":[618]},{"name":"ENM_ENDCOMPOSITION","features":[618]},{"name":"ENM_GROUPTYPINGCHANGE","features":[618]},{"name":"ENM_HIDELINKTOOLTIP","features":[618]},{"name":"ENM_IMECHANGE","features":[618]},{"name":"ENM_KEYEVENTS","features":[618]},{"name":"ENM_LANGCHANGE","features":[618]},{"name":"ENM_LINK","features":[618]},{"name":"ENM_LOWFIRTF","features":[618]},{"name":"ENM_MOUSEEVENTS","features":[618]},{"name":"ENM_NONE","features":[618]},{"name":"ENM_OBJECTPOSITIONS","features":[618]},{"name":"ENM_PAGECHANGE","features":[618]},{"name":"ENM_PARAGRAPHEXPANDED","features":[618]},{"name":"ENM_PROTECTED","features":[618]},{"name":"ENM_REQUESTRESIZE","features":[618]},{"name":"ENM_SCROLL","features":[618]},{"name":"ENM_SCROLLEVENTS","features":[618]},{"name":"ENM_SELCHANGE","features":[618]},{"name":"ENM_STARTCOMPOSITION","features":[618]},{"name":"ENM_UPDATE","features":[618]},{"name":"ENOLEOPFAILED","features":[305,618]},{"name":"ENOLEOPFAILED","features":[305,618]},{"name":"ENPROTECTED","features":[305,618]},{"name":"ENPROTECTED","features":[305,618]},{"name":"ENSAVECLIPBOARD","features":[305,618]},{"name":"ENSAVECLIPBOARD","features":[305,618]},{"name":"EN_ALIGNLTR","features":[618]},{"name":"EN_ALIGNRTL","features":[618]},{"name":"EN_CLIPFORMAT","features":[618]},{"name":"EN_CORRECTTEXT","features":[618]},{"name":"EN_DRAGDROPDONE","features":[618]},{"name":"EN_DROPFILES","features":[618]},{"name":"EN_ENDCOMPOSITION","features":[618]},{"name":"EN_IMECHANGE","features":[618]},{"name":"EN_LINK","features":[618]},{"name":"EN_LOWFIRTF","features":[618]},{"name":"EN_MSGFILTER","features":[618]},{"name":"EN_OBJECTPOSITIONS","features":[618]},{"name":"EN_OLEOPFAILED","features":[618]},{"name":"EN_PAGECHANGE","features":[618]},{"name":"EN_PARAGRAPHEXPANDED","features":[618]},{"name":"EN_PROTECTED","features":[618]},{"name":"EN_REQUESTRESIZE","features":[618]},{"name":"EN_SAVECLIPBOARD","features":[618]},{"name":"EN_SELCHANGE","features":[618]},{"name":"EN_STARTCOMPOSITION","features":[618]},{"name":"EN_STOPNOUNDO","features":[618]},{"name":"EPR_0","features":[618]},{"name":"EPR_180","features":[618]},{"name":"EPR_270","features":[618]},{"name":"EPR_90","features":[618]},{"name":"EPR_SE","features":[618]},{"name":"ES_DISABLENOSCROLL","features":[618]},{"name":"ES_EX_NOCALLOLEINIT","features":[618]},{"name":"ES_NOIME","features":[618]},{"name":"ES_NOOLEDRAGDROP","features":[618]},{"name":"ES_SAVESEL","features":[618]},{"name":"ES_SELECTIONBAR","features":[618]},{"name":"ES_SELFIME","features":[618]},{"name":"ES_SUNKEN","features":[618]},{"name":"ES_VERTICAL","features":[618]},{"name":"FINDTEXTA","features":[618]},{"name":"FINDTEXTA","features":[618]},{"name":"FINDTEXTEXA","features":[618]},{"name":"FINDTEXTEXA","features":[618]},{"name":"FINDTEXTEXW","features":[618]},{"name":"FINDTEXTEXW","features":[618]},{"name":"FINDTEXTW","features":[618]},{"name":"FINDTEXTW","features":[618]},{"name":"FORMATRANGE","features":[305,316,618]},{"name":"FORMATRANGE","features":[305,316,618]},{"name":"GCMF_GRIPPER","features":[618]},{"name":"GCMF_MOUSEMENU","features":[618]},{"name":"GCMF_SPELLING","features":[618]},{"name":"GCMF_TOUCHMENU","features":[618]},{"name":"GCM_MOUSEMENU","features":[618]},{"name":"GCM_RIGHTMOUSEDROP","features":[618]},{"name":"GCM_TOUCHMENU","features":[618]},{"name":"GETCONTEXTMENUEX","features":[305,618]},{"name":"GETCONTEXTMENUEX","features":[305,618]},{"name":"GETTEXTEX","features":[305,618]},{"name":"GETTEXTEX","features":[305,618]},{"name":"GETTEXTEX_FLAGS","features":[618]},{"name":"GETTEXTLENGTHEX","features":[618]},{"name":"GETTEXTLENGTHEX_FLAGS","features":[618]},{"name":"GROUPTYPINGCHANGE","features":[305,618]},{"name":"GTL_CLOSE","features":[618]},{"name":"GTL_DEFAULT","features":[618]},{"name":"GTL_NUMBYTES","features":[618]},{"name":"GTL_NUMCHARS","features":[618]},{"name":"GTL_PRECISE","features":[618]},{"name":"GTL_USECRLF","features":[618]},{"name":"GT_DEFAULT","features":[618]},{"name":"GT_NOHIDDENTEXT","features":[618]},{"name":"GT_RAWTEXT","features":[618]},{"name":"GT_SELECTION","features":[618]},{"name":"GT_USECRLF","features":[618]},{"name":"HYPHENATEINFO","features":[618]},{"name":"HYPHENATEINFO","features":[618]},{"name":"HYPHRESULT","features":[618]},{"name":"ICM_CTF","features":[618]},{"name":"ICM_LEVEL2","features":[618]},{"name":"ICM_LEVEL2_5","features":[618]},{"name":"ICM_LEVEL2_SUI","features":[618]},{"name":"ICM_LEVEL3","features":[618]},{"name":"ICM_NOTOPEN","features":[618]},{"name":"ICT_RESULTREADSTR","features":[618]},{"name":"IMECOMPTEXT","features":[618]},{"name":"IMECOMPTEXT_FLAGS","features":[618]},{"name":"IMF_AUTOFONT","features":[618]},{"name":"IMF_AUTOFONTSIZEADJUST","features":[618]},{"name":"IMF_AUTOKEYBOARD","features":[618]},{"name":"IMF_CLOSESTATUSWINDOW","features":[618]},{"name":"IMF_DUALFONT","features":[618]},{"name":"IMF_FORCEACTIVE","features":[618]},{"name":"IMF_FORCEDISABLE","features":[618]},{"name":"IMF_FORCEENABLE","features":[618]},{"name":"IMF_FORCEINACTIVE","features":[618]},{"name":"IMF_FORCENONE","features":[618]},{"name":"IMF_FORCEREMEMBER","features":[618]},{"name":"IMF_IMEALWAYSSENDNOTIFY","features":[618]},{"name":"IMF_IMECANCELCOMPLETE","features":[618]},{"name":"IMF_IMEUIINTEGRATION","features":[618]},{"name":"IMF_MULTIPLEEDIT","features":[618]},{"name":"IMF_NOIMPLICITLANG","features":[618]},{"name":"IMF_NOKBDLIDFIXUP","features":[618]},{"name":"IMF_NORTFFONTSUBSTITUTE","features":[618]},{"name":"IMF_SMODE_NONE","features":[618]},{"name":"IMF_SMODE_PLAURALCLAUSE","features":[618]},{"name":"IMF_SPELLCHECKING","features":[618]},{"name":"IMF_TKBPREDICTION","features":[618]},{"name":"IMF_UIFONTS","features":[618]},{"name":"IMF_VERTICAL","features":[618]},{"name":"IRichEditOle","features":[618]},{"name":"IRichEditOleCallback","features":[618]},{"name":"IRicheditUiaOverrides","features":[618]},{"name":"ITextDisplays","features":[356,618]},{"name":"ITextDocument","features":[356,618]},{"name":"ITextDocument2","features":[356,618]},{"name":"ITextDocument2Old","features":[356,618]},{"name":"ITextFont","features":[356,618]},{"name":"ITextFont2","features":[356,618]},{"name":"ITextHost","features":[618]},{"name":"ITextHost2","features":[618]},{"name":"ITextPara","features":[356,618]},{"name":"ITextPara2","features":[356,618]},{"name":"ITextRange","features":[356,618]},{"name":"ITextRange2","features":[356,618]},{"name":"ITextRow","features":[356,618]},{"name":"ITextSelection","features":[356,618]},{"name":"ITextSelection2","features":[356,618]},{"name":"ITextServices","features":[618]},{"name":"ITextServices2","features":[618]},{"name":"ITextStory","features":[618]},{"name":"ITextStoryRanges","features":[356,618]},{"name":"ITextStoryRanges2","features":[356,618]},{"name":"ITextStrings","features":[356,618]},{"name":"KHYPH","features":[618]},{"name":"MANCODE","features":[618]},{"name":"MAX_TABLE_CELLS","features":[618]},{"name":"MAX_TAB_STOPS","features":[618]},{"name":"MBOLD","features":[618]},{"name":"MFRAK","features":[618]},{"name":"MGREEK","features":[618]},{"name":"MINIT","features":[618]},{"name":"MISOL","features":[618]},{"name":"MITAL","features":[618]},{"name":"MLOOP","features":[618]},{"name":"MMATH","features":[618]},{"name":"MMONO","features":[618]},{"name":"MOPEN","features":[618]},{"name":"MOPENA","features":[618]},{"name":"MROMN","features":[618]},{"name":"MSANS","features":[618]},{"name":"MSCRP","features":[618]},{"name":"MSFTEDIT_CLASS","features":[618]},{"name":"MSGFILTER","features":[305,618]},{"name":"MSGFILTER","features":[305,618]},{"name":"MSTRCH","features":[618]},{"name":"MTAIL","features":[618]},{"name":"OBJECTPOSITIONS","features":[305,618]},{"name":"OBJECTPOSITIONS","features":[305,618]},{"name":"OBJECTTYPE","features":[618]},{"name":"OLEOP_DOVERB","features":[618]},{"name":"PARAFORMAT","features":[618]},{"name":"PARAFORMAT2","features":[618]},{"name":"PARAFORMAT_ALIGNMENT","features":[618]},{"name":"PARAFORMAT_BORDERS","features":[618]},{"name":"PARAFORMAT_BORDERS_AUTOCOLOR","features":[618]},{"name":"PARAFORMAT_BORDERS_BOTTOM","features":[618]},{"name":"PARAFORMAT_BORDERS_INSIDE","features":[618]},{"name":"PARAFORMAT_BORDERS_LEFT","features":[618]},{"name":"PARAFORMAT_BORDERS_OUTSIDE","features":[618]},{"name":"PARAFORMAT_BORDERS_RIGHT","features":[618]},{"name":"PARAFORMAT_BORDERS_TOP","features":[618]},{"name":"PARAFORMAT_MASK","features":[618]},{"name":"PARAFORMAT_NUMBERING","features":[618]},{"name":"PARAFORMAT_NUMBERING_STYLE","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_DOWN_DIAG","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_GRID","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_HORIZ","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_TRELLIS","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_UP_DIAG","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_DARK_VERT","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_DOWN_DIAG","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_GRID","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_HORZ","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_TRELLIS","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_UP_DIAG","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_LIGHT_VERT","features":[618]},{"name":"PARAFORMAT_SHADING_STYLE_NONE","features":[618]},{"name":"PC_DELIMITER","features":[618]},{"name":"PC_FOLLOWING","features":[618]},{"name":"PC_LEADING","features":[618]},{"name":"PC_OVERFLOW","features":[618]},{"name":"PCreateTextServices","features":[618]},{"name":"PFA_CENTER","features":[618]},{"name":"PFA_FULL_GLYPHS","features":[618]},{"name":"PFA_FULL_INTERLETTER","features":[618]},{"name":"PFA_FULL_INTERWORD","features":[618]},{"name":"PFA_FULL_NEWSPAPER","features":[618]},{"name":"PFA_FULL_SCALED","features":[618]},{"name":"PFA_JUSTIFY","features":[618]},{"name":"PFA_LEFT","features":[618]},{"name":"PFA_RIGHT","features":[618]},{"name":"PFM_ALIGNMENT","features":[618]},{"name":"PFM_ALL","features":[618]},{"name":"PFM_ALL2","features":[618]},{"name":"PFM_BORDER","features":[618]},{"name":"PFM_BOX","features":[618]},{"name":"PFM_COLLAPSED","features":[618]},{"name":"PFM_DONOTHYPHEN","features":[618]},{"name":"PFM_EFFECTS","features":[618]},{"name":"PFM_KEEP","features":[618]},{"name":"PFM_KEEPNEXT","features":[618]},{"name":"PFM_LINESPACING","features":[618]},{"name":"PFM_NOLINENUMBER","features":[618]},{"name":"PFM_NOWIDOWCONTROL","features":[618]},{"name":"PFM_NUMBERING","features":[618]},{"name":"PFM_NUMBERINGSTART","features":[618]},{"name":"PFM_NUMBERINGSTYLE","features":[618]},{"name":"PFM_NUMBERINGTAB","features":[618]},{"name":"PFM_OFFSET","features":[618]},{"name":"PFM_OFFSETINDENT","features":[618]},{"name":"PFM_OUTLINELEVEL","features":[618]},{"name":"PFM_PAGEBREAKBEFORE","features":[618]},{"name":"PFM_RESERVED2","features":[618]},{"name":"PFM_RIGHTINDENT","features":[618]},{"name":"PFM_RTLPARA","features":[618]},{"name":"PFM_SHADING","features":[618]},{"name":"PFM_SIDEBYSIDE","features":[618]},{"name":"PFM_SPACEAFTER","features":[618]},{"name":"PFM_SPACEBEFORE","features":[618]},{"name":"PFM_STARTINDENT","features":[618]},{"name":"PFM_STYLE","features":[618]},{"name":"PFM_TABLE","features":[618]},{"name":"PFM_TABLEROWDELIMITER","features":[618]},{"name":"PFM_TABSTOPS","features":[618]},{"name":"PFM_TEXTWRAPPINGBREAK","features":[618]},{"name":"PFNS_NEWNUMBER","features":[618]},{"name":"PFNS_NONUMBER","features":[618]},{"name":"PFNS_PAREN","features":[618]},{"name":"PFNS_PARENS","features":[618]},{"name":"PFNS_PERIOD","features":[618]},{"name":"PFNS_PLAIN","features":[618]},{"name":"PFN_ARABIC","features":[618]},{"name":"PFN_BULLET","features":[618]},{"name":"PFN_LCLETTER","features":[618]},{"name":"PFN_LCROMAN","features":[618]},{"name":"PFN_UCLETTER","features":[618]},{"name":"PFN_UCROMAN","features":[618]},{"name":"PShutdownTextServices","features":[618]},{"name":"PUNCTUATION","features":[618]},{"name":"PUNCTUATION","features":[618]},{"name":"REOBJECT","features":[305,429,415,618]},{"name":"REOBJECT_FLAGS","features":[618]},{"name":"REO_ALIGNTORIGHT","features":[618]},{"name":"REO_BELOWBASELINE","features":[618]},{"name":"REO_BLANK","features":[618]},{"name":"REO_CANROTATE","features":[618]},{"name":"REO_DONTNEEDPALETTE","features":[618]},{"name":"REO_DYNAMICSIZE","features":[618]},{"name":"REO_GETMETAFILE","features":[618]},{"name":"REO_GETOBJ_ALL_INTERFACES","features":[618]},{"name":"REO_GETOBJ_NO_INTERFACES","features":[618]},{"name":"REO_GETOBJ_POLEOBJ","features":[618]},{"name":"REO_GETOBJ_POLESITE","features":[618]},{"name":"REO_GETOBJ_PSTG","features":[618]},{"name":"REO_HILITED","features":[618]},{"name":"REO_INPLACEACTIVE","features":[618]},{"name":"REO_INVERTEDSELECT","features":[618]},{"name":"REO_LINK","features":[618]},{"name":"REO_LINKAVAILABLE","features":[618]},{"name":"REO_NULL","features":[618]},{"name":"REO_OPEN","features":[618]},{"name":"REO_OWNERDRAWSELECT","features":[618]},{"name":"REO_READWRITEMASK","features":[618]},{"name":"REO_RESIZABLE","features":[618]},{"name":"REO_SELECTED","features":[618]},{"name":"REO_STATIC","features":[618]},{"name":"REO_USEASBACKGROUND","features":[618]},{"name":"REO_WRAPTEXTAROUND","features":[618]},{"name":"REPASTESPECIAL","features":[356,618]},{"name":"REPASTESPECIAL","features":[356,618]},{"name":"REQRESIZE","features":[305,618]},{"name":"REQRESIZE","features":[305,618]},{"name":"RICHEDIT60_CLASS","features":[618]},{"name":"RICHEDIT_CLASS","features":[618]},{"name":"RICHEDIT_CLASS10A","features":[618]},{"name":"RICHEDIT_CLASSA","features":[618]},{"name":"RICHEDIT_CLASSW","features":[618]},{"name":"RICHEDIT_IMAGE_PARAMETERS","features":[356,618]},{"name":"RICHEDIT_IMAGE_PARAMETERS","features":[356,618]},{"name":"RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE","features":[618]},{"name":"RICH_EDIT_GET_OBJECT_FLAGS","features":[618]},{"name":"RTO_DISABLEHANDLES","features":[618]},{"name":"RTO_READINGMODE","features":[618]},{"name":"RTO_SHOWHANDLES","features":[618]},{"name":"SCF_ALL","features":[618]},{"name":"SCF_ASSOCIATEFONT","features":[618]},{"name":"SCF_ASSOCIATEFONT2","features":[618]},{"name":"SCF_CHARREPFROMLCID","features":[618]},{"name":"SCF_DEFAULT","features":[618]},{"name":"SCF_NOKBUPDATE","features":[618]},{"name":"SCF_SELECTION","features":[618]},{"name":"SCF_SMARTFONT","features":[618]},{"name":"SCF_USEUIRULES","features":[618]},{"name":"SCF_WORD","features":[618]},{"name":"SELCHANGE","features":[305,618]},{"name":"SELCHANGE","features":[305,618]},{"name":"SEL_EMPTY","features":[618]},{"name":"SEL_MULTICHAR","features":[618]},{"name":"SEL_MULTIOBJECT","features":[618]},{"name":"SEL_OBJECT","features":[618]},{"name":"SEL_TEXT","features":[618]},{"name":"SES_ALLOWBEEPS","features":[618]},{"name":"SES_BEEPONMAXTEXT","features":[618]},{"name":"SES_BIDI","features":[618]},{"name":"SES_CTFALLOWEMBED","features":[618]},{"name":"SES_CTFALLOWPROOFING","features":[618]},{"name":"SES_CTFALLOWSMARTTAG","features":[618]},{"name":"SES_CTFNOLOCK","features":[618]},{"name":"SES_CUSTOMLOOK","features":[618]},{"name":"SES_DEFAULTLATINLIGA","features":[618]},{"name":"SES_DRAFTMODE","features":[618]},{"name":"SES_EMULATE10","features":[618]},{"name":"SES_EMULATESYSEDIT","features":[618]},{"name":"SES_EXTENDBACKCOLOR","features":[618]},{"name":"SES_EX_HANDLEFRIENDLYURL","features":[618]},{"name":"SES_EX_HIDETEMPFORMAT","features":[618]},{"name":"SES_EX_MULTITOUCH","features":[618]},{"name":"SES_EX_NOACETATESELECTION","features":[618]},{"name":"SES_EX_NOMATH","features":[618]},{"name":"SES_EX_NOTABLE","features":[618]},{"name":"SES_EX_NOTHEMING","features":[618]},{"name":"SES_EX_USEMOUSEWPARAM","features":[618]},{"name":"SES_EX_USESINGLELINE","features":[618]},{"name":"SES_HIDEGRIDLINES","features":[618]},{"name":"SES_HYPERLINKTOOLTIPS","features":[618]},{"name":"SES_LBSCROLLNOTIFY","features":[618]},{"name":"SES_LOGICALCARET","features":[618]},{"name":"SES_LOWERCASE","features":[618]},{"name":"SES_MAPCPS","features":[618]},{"name":"SES_MAX","features":[618]},{"name":"SES_MULTISELECT","features":[618]},{"name":"SES_NOEALINEHEIGHTADJUST","features":[618]},{"name":"SES_NOFOCUSLINKNOTIFY","features":[618]},{"name":"SES_NOIME","features":[618]},{"name":"SES_NOINPUTSEQUENCECHK","features":[618]},{"name":"SES_SCROLLONKILLFOCUS","features":[618]},{"name":"SES_SMARTDRAGDROP","features":[618]},{"name":"SES_UPPERCASE","features":[618]},{"name":"SES_USEAIMM","features":[618]},{"name":"SES_USEATFONT","features":[618]},{"name":"SES_USECRLF","features":[618]},{"name":"SES_USECTF","features":[618]},{"name":"SES_WORDDRAGDROP","features":[618]},{"name":"SES_XLTCRCRLFTOCR","features":[618]},{"name":"SETTEXTEX","features":[618]},{"name":"SFF_KEEPDOCINFO","features":[618]},{"name":"SFF_PERSISTVIEWSCALE","features":[618]},{"name":"SFF_PLAINRTF","features":[618]},{"name":"SFF_PWD","features":[618]},{"name":"SFF_SELECTION","features":[618]},{"name":"SFF_WRITEXTRAPAR","features":[618]},{"name":"SF_NCRFORNONASCII","features":[618]},{"name":"SF_RTF","features":[618]},{"name":"SF_RTFNOOBJS","features":[618]},{"name":"SF_RTFVAL","features":[618]},{"name":"SF_TEXT","features":[618]},{"name":"SF_TEXTIZED","features":[618]},{"name":"SF_UNICODE","features":[618]},{"name":"SF_USECODEPAGE","features":[618]},{"name":"SPF_DONTSETDEFAULT","features":[618]},{"name":"SPF_SETDEFAULT","features":[618]},{"name":"ST_DEFAULT","features":[618]},{"name":"ST_KEEPUNDO","features":[618]},{"name":"ST_NEWCHARS","features":[618]},{"name":"ST_SELECTION","features":[618]},{"name":"ST_UNICODE","features":[618]},{"name":"S_MSG_KEY_IGNORED","features":[618]},{"name":"TABLECELLPARMS","features":[305,618]},{"name":"TABLEROWPARMS","features":[618]},{"name":"TEXTMODE","features":[618]},{"name":"TEXTRANGEA","features":[618]},{"name":"TEXTRANGEA","features":[618]},{"name":"TEXTRANGEW","features":[618]},{"name":"TEXTRANGEW","features":[618]},{"name":"TM_MULTICODEPAGE","features":[618]},{"name":"TM_MULTILEVELUNDO","features":[618]},{"name":"TM_PLAINTEXT","features":[618]},{"name":"TM_RICHTEXT","features":[618]},{"name":"TM_SINGLECODEPAGE","features":[618]},{"name":"TM_SINGLELEVELUNDO","features":[618]},{"name":"TO_ADVANCEDLAYOUT","features":[618]},{"name":"TO_ADVANCEDTYPOGRAPHY","features":[618]},{"name":"TO_DISABLECUSTOMTEXTOUT","features":[618]},{"name":"TO_SIMPLELINEBREAK","features":[618]},{"name":"TXES_ISDIALOG","features":[618]},{"name":"TXTBACKSTYLE","features":[618]},{"name":"TXTBACK_OPAQUE","features":[618]},{"name":"TXTBACK_TRANSPARENT","features":[618]},{"name":"TXTBIT_ADVANCEDINPUT","features":[618]},{"name":"TXTBIT_ALLOWBEEP","features":[618]},{"name":"TXTBIT_AUTOWORDSEL","features":[618]},{"name":"TXTBIT_BACKSTYLECHANGE","features":[618]},{"name":"TXTBIT_CHARFORMATCHANGE","features":[618]},{"name":"TXTBIT_CLIENTRECTCHANGE","features":[618]},{"name":"TXTBIT_D2DDWRITE","features":[618]},{"name":"TXTBIT_D2DPIXELSNAPPED","features":[618]},{"name":"TXTBIT_D2DSIMPLETYPOGRAPHY","features":[618]},{"name":"TXTBIT_D2DSUBPIXELLINES","features":[618]},{"name":"TXTBIT_DISABLEDRAG","features":[618]},{"name":"TXTBIT_EXTENTCHANGE","features":[618]},{"name":"TXTBIT_FLASHLASTPASSWORDCHAR","features":[618]},{"name":"TXTBIT_HIDESELECTION","features":[618]},{"name":"TXTBIT_MAXLENGTHCHANGE","features":[618]},{"name":"TXTBIT_MULTILINE","features":[618]},{"name":"TXTBIT_NOTHREADREFCOUNT","features":[618]},{"name":"TXTBIT_PARAFORMATCHANGE","features":[618]},{"name":"TXTBIT_READONLY","features":[618]},{"name":"TXTBIT_RICHTEXT","features":[618]},{"name":"TXTBIT_SAVESELECTION","features":[618]},{"name":"TXTBIT_SCROLLBARCHANGE","features":[618]},{"name":"TXTBIT_SELBARCHANGE","features":[618]},{"name":"TXTBIT_SHOWACCELERATOR","features":[618]},{"name":"TXTBIT_SHOWPASSWORD","features":[618]},{"name":"TXTBIT_USECURRENTBKG","features":[618]},{"name":"TXTBIT_USEPASSWORD","features":[618]},{"name":"TXTBIT_VERTICAL","features":[618]},{"name":"TXTBIT_VIEWINSETCHANGE","features":[618]},{"name":"TXTBIT_WORDWRAP","features":[618]},{"name":"TXTHITRESULT","features":[618]},{"name":"TXTHITRESULT_CLOSE","features":[618]},{"name":"TXTHITRESULT_HIT","features":[618]},{"name":"TXTHITRESULT_NOHIT","features":[618]},{"name":"TXTHITRESULT_TRANSPARENT","features":[618]},{"name":"TXTNATURALSIZE","features":[618]},{"name":"TXTNS_EMU","features":[618]},{"name":"TXTNS_FITTOCONTENT","features":[618]},{"name":"TXTNS_FITTOCONTENT2","features":[618]},{"name":"TXTNS_FITTOCONTENT3","features":[618]},{"name":"TXTNS_FITTOCONTENTWSP","features":[618]},{"name":"TXTNS_INCLUDELASTLINE","features":[618]},{"name":"TXTNS_ROUNDTOLINE","features":[618]},{"name":"TXTVIEW","features":[618]},{"name":"TXTVIEW_ACTIVE","features":[618]},{"name":"TXTVIEW_INACTIVE","features":[618]},{"name":"UID_AUTOTABLE","features":[618]},{"name":"UID_CUT","features":[618]},{"name":"UID_DELETE","features":[618]},{"name":"UID_DRAGDROP","features":[618]},{"name":"UID_PASTE","features":[618]},{"name":"UID_TYPING","features":[618]},{"name":"UID_UNKNOWN","features":[618]},{"name":"UNDONAMEID","features":[618]},{"name":"VM_NORMAL","features":[618]},{"name":"VM_OUTLINE","features":[618]},{"name":"VM_PAGE","features":[618]},{"name":"WBF_CUSTOM","features":[618]},{"name":"WBF_LEVEL1","features":[618]},{"name":"WBF_LEVEL2","features":[618]},{"name":"WBF_OVERFLOW","features":[618]},{"name":"WBF_WORDBREAK","features":[618]},{"name":"WBF_WORDWRAP","features":[618]},{"name":"WB_MOVEWORDNEXT","features":[618]},{"name":"WB_MOVEWORDPREV","features":[618]},{"name":"WB_NEXTBREAK","features":[618]},{"name":"WB_PREVBREAK","features":[618]},{"name":"cchTextLimitDefault","features":[618]},{"name":"khyphAddBefore","features":[618]},{"name":"khyphChangeAfter","features":[618]},{"name":"khyphChangeBefore","features":[618]},{"name":"khyphDelAndChange","features":[618]},{"name":"khyphDeleteBefore","features":[618]},{"name":"khyphNil","features":[618]},{"name":"khyphNormal","features":[618]},{"name":"lDefaultTab","features":[618]},{"name":"tomAboriginal","features":[618]},{"name":"tomAccent","features":[618]},{"name":"tomAdjustCRLF","features":[618]},{"name":"tomAlignBar","features":[618]},{"name":"tomAlignCenter","features":[618]},{"name":"tomAlignDecimal","features":[618]},{"name":"tomAlignDefault","features":[618]},{"name":"tomAlignInterLetter","features":[618]},{"name":"tomAlignInterWord","features":[618]},{"name":"tomAlignJustify","features":[618]},{"name":"tomAlignLeft","features":[618]},{"name":"tomAlignMatchAscentDescent","features":[618]},{"name":"tomAlignNewspaper","features":[618]},{"name":"tomAlignRight","features":[618]},{"name":"tomAlignScaled","features":[618]},{"name":"tomAllCaps","features":[618]},{"name":"tomAllowFinalEOP","features":[618]},{"name":"tomAllowMathBold","features":[618]},{"name":"tomAllowOffClient","features":[618]},{"name":"tomAnimationMax","features":[618]},{"name":"tomAnsi","features":[618]},{"name":"tomApplyLater","features":[618]},{"name":"tomApplyNow","features":[618]},{"name":"tomApplyRtfDocProps","features":[618]},{"name":"tomApplyTmp","features":[618]},{"name":"tomArabic","features":[618]},{"name":"tomArmenian","features":[618]},{"name":"tomAtEnd","features":[618]},{"name":"tomAutoBackColor","features":[618]},{"name":"tomAutoColor","features":[618]},{"name":"tomAutoLinkEmail","features":[618]},{"name":"tomAutoLinkPath","features":[618]},{"name":"tomAutoLinkPhone","features":[618]},{"name":"tomAutoLinkURL","features":[618]},{"name":"tomAutoSpaceAlpha","features":[618]},{"name":"tomAutoSpaceNumeric","features":[618]},{"name":"tomAutoSpaceParens","features":[618]},{"name":"tomAutoTextColor","features":[618]},{"name":"tomBIG5","features":[618]},{"name":"tomBackward","features":[618]},{"name":"tomBaltic","features":[618]},{"name":"tomBengali","features":[618]},{"name":"tomBlinkingBackground","features":[618]},{"name":"tomBold","features":[618]},{"name":"tomBox","features":[618]},{"name":"tomBoxAlignCenter","features":[618]},{"name":"tomBoxHideBottom","features":[618]},{"name":"tomBoxHideLeft","features":[618]},{"name":"tomBoxHideRight","features":[618]},{"name":"tomBoxHideTop","features":[618]},{"name":"tomBoxStrikeBLTR","features":[618]},{"name":"tomBoxStrikeH","features":[618]},{"name":"tomBoxStrikeTLBR","features":[618]},{"name":"tomBoxStrikeV","features":[618]},{"name":"tomBoxedFormula","features":[618]},{"name":"tomBrackets","features":[618]},{"name":"tomBracketsWithSeps","features":[618]},{"name":"tomBraille","features":[618]},{"name":"tomCacheParms","features":[618]},{"name":"tomCanCopy","features":[618]},{"name":"tomCanRedo","features":[618]},{"name":"tomCanUndo","features":[618]},{"name":"tomCell","features":[618]},{"name":"tomCellStructureChangeOnly","features":[618]},{"name":"tomCharFormat","features":[618]},{"name":"tomCharRepFromLcid","features":[618]},{"name":"tomCharRepMax","features":[618]},{"name":"tomCharacter","features":[618]},{"name":"tomCharset","features":[618]},{"name":"tomCheckTextLimit","features":[618]},{"name":"tomCherokee","features":[618]},{"name":"tomClientCoord","features":[618]},{"name":"tomClientLink","features":[618]},{"name":"tomCluster","features":[618]},{"name":"tomCollapseEnd","features":[618]},{"name":"tomCollapseStart","features":[618]},{"name":"tomColumn","features":[618]},{"name":"tomCommentsStory","features":[618]},{"name":"tomCompressMax","features":[618]},{"name":"tomCompressNone","features":[618]},{"name":"tomCompressPunctuation","features":[618]},{"name":"tomCompressPunctuationAndKana","features":[618]},{"name":"tomConstants","features":[618]},{"name":"tomConvertMathChar","features":[618]},{"name":"tomConvertRTF","features":[618]},{"name":"tomCreateAlways","features":[618]},{"name":"tomCreateNew","features":[618]},{"name":"tomCyrillic","features":[618]},{"name":"tomDash","features":[618]},{"name":"tomDashDot","features":[618]},{"name":"tomDashDotDot","features":[618]},{"name":"tomDashes","features":[618]},{"name":"tomDecDecSize","features":[618]},{"name":"tomDecSize","features":[618]},{"name":"tomDefault","features":[618]},{"name":"tomDefaultCharRep","features":[618]},{"name":"tomDefaultTab","features":[618]},{"name":"tomDeseret","features":[618]},{"name":"tomDevanagari","features":[618]},{"name":"tomDisableSmartFont","features":[618]},{"name":"tomDisabled","features":[618]},{"name":"tomDocAutoLink","features":[618]},{"name":"tomDocMathBuild","features":[618]},{"name":"tomDontGrowWithContent","features":[618]},{"name":"tomDots","features":[618]},{"name":"tomDotted","features":[618]},{"name":"tomDouble","features":[618]},{"name":"tomDoubleWave","features":[618]},{"name":"tomDoublestrike","features":[618]},{"name":"tomEastEurope","features":[618]},{"name":"tomEllipsisEnd","features":[618]},{"name":"tomEllipsisMode","features":[618]},{"name":"tomEllipsisNone","features":[618]},{"name":"tomEllipsisPresent","features":[618]},{"name":"tomEllipsisState","features":[618]},{"name":"tomEllipsisWord","features":[618]},{"name":"tomEmbeddedFont","features":[618]},{"name":"tomEmboss","features":[618]},{"name":"tomEmoji","features":[618]},{"name":"tomEnableSmartFont","features":[618]},{"name":"tomEnd","features":[618]},{"name":"tomEndnotesStory","features":[618]},{"name":"tomEq","features":[618]},{"name":"tomEqArrayAlignBottomRow","features":[618]},{"name":"tomEqArrayAlignCenter","features":[618]},{"name":"tomEqArrayAlignMask","features":[618]},{"name":"tomEqArrayAlignTopRow","features":[618]},{"name":"tomEqArrayLayoutWidth","features":[618]},{"name":"tomEquals","features":[618]},{"name":"tomEquationArray","features":[618]},{"name":"tomEthiopic","features":[618]},{"name":"tomEvenPagesFooterStory","features":[618]},{"name":"tomEvenPagesHeaderStory","features":[618]},{"name":"tomExtend","features":[618]},{"name":"tomExtendedChar","features":[618]},{"name":"tomFalse","features":[618]},{"name":"tomFindStory","features":[618]},{"name":"tomFirstPageFooterStory","features":[618]},{"name":"tomFirstPageHeaderStory","features":[618]},{"name":"tomFoldMathAlpha","features":[618]},{"name":"tomFontAlignmentAuto","features":[618]},{"name":"tomFontAlignmentBaseline","features":[618]},{"name":"tomFontAlignmentBottom","features":[618]},{"name":"tomFontAlignmentCenter","features":[618]},{"name":"tomFontAlignmentMax","features":[618]},{"name":"tomFontAlignmentTop","features":[618]},{"name":"tomFontBound","features":[618]},{"name":"tomFontPropAlign","features":[618]},{"name":"tomFontPropTeXStyle","features":[618]},{"name":"tomFontStretch","features":[618]},{"name":"tomFontStretchCondensed","features":[618]},{"name":"tomFontStretchDefault","features":[618]},{"name":"tomFontStretchExpanded","features":[618]},{"name":"tomFontStretchExtraCondensed","features":[618]},{"name":"tomFontStretchExtraExpanded","features":[618]},{"name":"tomFontStretchNormal","features":[618]},{"name":"tomFontStretchSemiCondensed","features":[618]},{"name":"tomFontStretchSemiExpanded","features":[618]},{"name":"tomFontStretchUltraCondensed","features":[618]},{"name":"tomFontStretchUltraExpanded","features":[618]},{"name":"tomFontStyle","features":[618]},{"name":"tomFontStyleItalic","features":[618]},{"name":"tomFontStyleOblique","features":[618]},{"name":"tomFontStyleUpright","features":[618]},{"name":"tomFontWeightBlack","features":[618]},{"name":"tomFontWeightBold","features":[618]},{"name":"tomFontWeightDefault","features":[618]},{"name":"tomFontWeightExtraBlack","features":[618]},{"name":"tomFontWeightExtraBold","features":[618]},{"name":"tomFontWeightExtraLight","features":[618]},{"name":"tomFontWeightHeavy","features":[618]},{"name":"tomFontWeightLight","features":[618]},{"name":"tomFontWeightMedium","features":[618]},{"name":"tomFontWeightNormal","features":[618]},{"name":"tomFontWeightRegular","features":[618]},{"name":"tomFontWeightSemiBold","features":[618]},{"name":"tomFontWeightThin","features":[618]},{"name":"tomFootnotesStory","features":[618]},{"name":"tomForward","features":[618]},{"name":"tomFraction","features":[618]},{"name":"tomFriendlyLinkAddress","features":[618]},{"name":"tomFriendlyLinkName","features":[618]},{"name":"tomFunctionApply","features":[618]},{"name":"tomFunctionTypeIsLim","features":[618]},{"name":"tomFunctionTypeNone","features":[618]},{"name":"tomFunctionTypeTakesArg","features":[618]},{"name":"tomFunctionTypeTakesLim","features":[618]},{"name":"tomFunctionTypeTakesLim2","features":[618]},{"name":"tomGB2312","features":[618]},{"name":"tomGeorgian","features":[618]},{"name":"tomGetHeightOnly","features":[618]},{"name":"tomGlagolitic","features":[618]},{"name":"tomGothic","features":[618]},{"name":"tomGravityBack","features":[618]},{"name":"tomGravityBackward","features":[618]},{"name":"tomGravityFore","features":[618]},{"name":"tomGravityForward","features":[618]},{"name":"tomGravityIn","features":[618]},{"name":"tomGravityOut","features":[618]},{"name":"tomGravityUI","features":[618]},{"name":"tomGreek","features":[618]},{"name":"tomGrowWithContent","features":[618]},{"name":"tomGujarati","features":[618]},{"name":"tomGurmukhi","features":[618]},{"name":"tomHContCell","features":[618]},{"name":"tomHStartCell","features":[618]},{"name":"tomHTML","features":[618]},{"name":"tomHair","features":[618]},{"name":"tomHangul","features":[618]},{"name":"tomHardParagraph","features":[618]},{"name":"tomHeavyWave","features":[618]},{"name":"tomHebrew","features":[618]},{"name":"tomHidden","features":[618]},{"name":"tomHorzVert","features":[618]},{"name":"tomHstring","features":[618]},{"name":"tomIgnoreCurrentFont","features":[618]},{"name":"tomIgnoreNumberStyle","features":[618]},{"name":"tomImprint","features":[618]},{"name":"tomIncIncSize","features":[618]},{"name":"tomIncSize","features":[618]},{"name":"tomIncludeInset","features":[618]},{"name":"tomIncludeNumbering","features":[618]},{"name":"tomInlineObject","features":[618]},{"name":"tomInlineObjectArg","features":[618]},{"name":"tomInlineObjectStart","features":[618]},{"name":"tomItalic","features":[618]},{"name":"tomJamo","features":[618]},{"name":"tomKannada","features":[618]},{"name":"tomKayahli","features":[618]},{"name":"tomKharoshthi","features":[618]},{"name":"tomKhmer","features":[618]},{"name":"tomKoreanBlockCaret","features":[618]},{"name":"tomLanguageTag","features":[618]},{"name":"tomLao","features":[618]},{"name":"tomLasVegasLights","features":[618]},{"name":"tomLayoutColumn","features":[618]},{"name":"tomLeafLine","features":[618]},{"name":"tomLeftSubSup","features":[618]},{"name":"tomLimbu","features":[618]},{"name":"tomLimitAlignCenter","features":[618]},{"name":"tomLimitAlignLeft","features":[618]},{"name":"tomLimitAlignMask","features":[618]},{"name":"tomLimitAlignRight","features":[618]},{"name":"tomLimitsDefault","features":[618]},{"name":"tomLimitsOpposite","features":[618]},{"name":"tomLimitsSubSup","features":[618]},{"name":"tomLimitsUnderOver","features":[618]},{"name":"tomLine","features":[618]},{"name":"tomLineSpace1pt5","features":[618]},{"name":"tomLineSpaceAtLeast","features":[618]},{"name":"tomLineSpaceDouble","features":[618]},{"name":"tomLineSpaceExactly","features":[618]},{"name":"tomLineSpaceMultiple","features":[618]},{"name":"tomLineSpacePercent","features":[618]},{"name":"tomLineSpaceSingle","features":[618]},{"name":"tomLines","features":[618]},{"name":"tomLink","features":[618]},{"name":"tomLinkProtected","features":[618]},{"name":"tomListBullet","features":[618]},{"name":"tomListMinus","features":[618]},{"name":"tomListNoNumber","features":[618]},{"name":"tomListNone","features":[618]},{"name":"tomListNumberAsArabic","features":[618]},{"name":"tomListNumberAsLCLetter","features":[618]},{"name":"tomListNumberAsLCRoman","features":[618]},{"name":"tomListNumberAsSequence","features":[618]},{"name":"tomListNumberAsUCLetter","features":[618]},{"name":"tomListNumberAsUCRoman","features":[618]},{"name":"tomListNumberedArabic1","features":[618]},{"name":"tomListNumberedArabic2","features":[618]},{"name":"tomListNumberedArabicWide","features":[618]},{"name":"tomListNumberedBlackCircleWingding","features":[618]},{"name":"tomListNumberedChS","features":[618]},{"name":"tomListNumberedChT","features":[618]},{"name":"tomListNumberedCircle","features":[618]},{"name":"tomListNumberedHebrew","features":[618]},{"name":"tomListNumberedHindiAlpha","features":[618]},{"name":"tomListNumberedHindiAlpha1","features":[618]},{"name":"tomListNumberedHindiNum","features":[618]},{"name":"tomListNumberedJpnChS","features":[618]},{"name":"tomListNumberedJpnKor","features":[618]},{"name":"tomListNumberedThaiAlpha","features":[618]},{"name":"tomListNumberedThaiNum","features":[618]},{"name":"tomListNumberedWhiteCircleWingding","features":[618]},{"name":"tomListParentheses","features":[618]},{"name":"tomListPeriod","features":[618]},{"name":"tomListPlain","features":[618]},{"name":"tomLisu","features":[618]},{"name":"tomLongDash","features":[618]},{"name":"tomLowerCase","features":[618]},{"name":"tomLowerLimit","features":[618]},{"name":"tomMac","features":[618]},{"name":"tomMainTextStory","features":[618]},{"name":"tomMalayalam","features":[618]},{"name":"tomMarchingBlackAnts","features":[618]},{"name":"tomMarchingRedAnts","features":[618]},{"name":"tomMatchAscii","features":[618]},{"name":"tomMatchCase","features":[618]},{"name":"tomMatchCharRep","features":[618]},{"name":"tomMatchFontSignature","features":[618]},{"name":"tomMatchMathFont","features":[618]},{"name":"tomMatchPattern","features":[618]},{"name":"tomMatchWord","features":[618]},{"name":"tomMath","features":[618]},{"name":"tomMathArgShadingEnd","features":[618]},{"name":"tomMathArgShadingStart","features":[618]},{"name":"tomMathBreakCenter","features":[618]},{"name":"tomMathBreakLeft","features":[618]},{"name":"tomMathBreakRight","features":[618]},{"name":"tomMathBrkBinAfter","features":[618]},{"name":"tomMathBrkBinBefore","features":[618]},{"name":"tomMathBrkBinDup","features":[618]},{"name":"tomMathBrkBinMask","features":[618]},{"name":"tomMathBrkBinSubMM","features":[618]},{"name":"tomMathBrkBinSubMP","features":[618]},{"name":"tomMathBrkBinSubMask","features":[618]},{"name":"tomMathBrkBinSubPM","features":[618]},{"name":"tomMathCFCheck","features":[618]},{"name":"tomMathDispAlignCenter","features":[618]},{"name":"tomMathDispAlignCenterGroup","features":[618]},{"name":"tomMathDispAlignLeft","features":[618]},{"name":"tomMathDispAlignMask","features":[618]},{"name":"tomMathDispAlignRight","features":[618]},{"name":"tomMathDispDef","features":[618]},{"name":"tomMathDispFracTeX","features":[618]},{"name":"tomMathDispIntUnderOver","features":[618]},{"name":"tomMathDispNaryGrow","features":[618]},{"name":"tomMathDispNarySubSup","features":[618]},{"name":"tomMathDocDiffDefault","features":[618]},{"name":"tomMathDocDiffItalic","features":[618]},{"name":"tomMathDocDiffMask","features":[618]},{"name":"tomMathDocDiffOpenItalic","features":[618]},{"name":"tomMathDocDiffUpright","features":[618]},{"name":"tomMathDocEmptyArgAlways","features":[618]},{"name":"tomMathDocEmptyArgAuto","features":[618]},{"name":"tomMathDocEmptyArgMask","features":[618]},{"name":"tomMathDocEmptyArgNever","features":[618]},{"name":"tomMathDocSbSpOpUnchanged","features":[618]},{"name":"tomMathEnableRtl","features":[618]},{"name":"tomMathEqAlign","features":[618]},{"name":"tomMathInterSpace","features":[618]},{"name":"tomMathIntraSpace","features":[618]},{"name":"tomMathLMargin","features":[618]},{"name":"tomMathManualBreakMask","features":[618]},{"name":"tomMathObjShadingEnd","features":[618]},{"name":"tomMathObjShadingStart","features":[618]},{"name":"tomMathParaAlignCenter","features":[618]},{"name":"tomMathParaAlignCenterGroup","features":[618]},{"name":"tomMathParaAlignDefault","features":[618]},{"name":"tomMathParaAlignLeft","features":[618]},{"name":"tomMathParaAlignRight","features":[618]},{"name":"tomMathPostSpace","features":[618]},{"name":"tomMathPreSpace","features":[618]},{"name":"tomMathRMargin","features":[618]},{"name":"tomMathRelSize","features":[618]},{"name":"tomMathVariant","features":[618]},{"name":"tomMathWrapIndent","features":[618]},{"name":"tomMathWrapRight","features":[618]},{"name":"tomMathZone","features":[618]},{"name":"tomMathZoneDisplay","features":[618]},{"name":"tomMathZoneNoBuildUp","features":[618]},{"name":"tomMathZoneOrdinary","features":[618]},{"name":"tomMatrix","features":[618]},{"name":"tomMatrixAlignBottomRow","features":[618]},{"name":"tomMatrixAlignCenter","features":[618]},{"name":"tomMatrixAlignMask","features":[618]},{"name":"tomMatrixAlignTopRow","features":[618]},{"name":"tomModWidthPairs","features":[618]},{"name":"tomModWidthSpace","features":[618]},{"name":"tomMongolian","features":[618]},{"name":"tomMove","features":[618]},{"name":"tomMyanmar","features":[618]},{"name":"tomNKo","features":[618]},{"name":"tomNary","features":[618]},{"name":"tomNewTaiLue","features":[618]},{"name":"tomNoAnimation","features":[618]},{"name":"tomNoBreak","features":[618]},{"name":"tomNoHidden","features":[618]},{"name":"tomNoIME","features":[618]},{"name":"tomNoLink","features":[618]},{"name":"tomNoMathZoneBrackets","features":[618]},{"name":"tomNoSelection","features":[618]},{"name":"tomNoUCGreekItalic","features":[618]},{"name":"tomNoUpScroll","features":[618]},{"name":"tomNoVpScroll","features":[618]},{"name":"tomNone","features":[618]},{"name":"tomNormalCaret","features":[618]},{"name":"tomNullCaret","features":[618]},{"name":"tomOEM","features":[618]},{"name":"tomObject","features":[618]},{"name":"tomObjectArg","features":[618]},{"name":"tomObjectMax","features":[618]},{"name":"tomOgham","features":[618]},{"name":"tomOpChar","features":[618]},{"name":"tomOpenAlways","features":[618]},{"name":"tomOpenExisting","features":[618]},{"name":"tomOriya","features":[618]},{"name":"tomOsmanya","features":[618]},{"name":"tomOutline","features":[618]},{"name":"tomOverbar","features":[618]},{"name":"tomOverlapping","features":[618]},{"name":"tomPC437","features":[618]},{"name":"tomPage","features":[618]},{"name":"tomParaEffectBox","features":[618]},{"name":"tomParaEffectCollapsed","features":[618]},{"name":"tomParaEffectDoNotHyphen","features":[618]},{"name":"tomParaEffectKeep","features":[618]},{"name":"tomParaEffectKeepNext","features":[618]},{"name":"tomParaEffectNoLineNumber","features":[618]},{"name":"tomParaEffectNoWidowControl","features":[618]},{"name":"tomParaEffectOutlineLevel","features":[618]},{"name":"tomParaEffectPageBreakBefore","features":[618]},{"name":"tomParaEffectRTL","features":[618]},{"name":"tomParaEffectSideBySide","features":[618]},{"name":"tomParaEffectTable","features":[618]},{"name":"tomParaEffectTableRowDelimiter","features":[618]},{"name":"tomParaFormat","features":[618]},{"name":"tomParaPropMathAlign","features":[618]},{"name":"tomParaStyleHeading1","features":[618]},{"name":"tomParaStyleHeading2","features":[618]},{"name":"tomParaStyleHeading3","features":[618]},{"name":"tomParaStyleHeading4","features":[618]},{"name":"tomParaStyleHeading5","features":[618]},{"name":"tomParaStyleHeading6","features":[618]},{"name":"tomParaStyleHeading7","features":[618]},{"name":"tomParaStyleHeading8","features":[618]},{"name":"tomParaStyleHeading9","features":[618]},{"name":"tomParaStyleNormal","features":[618]},{"name":"tomParagraph","features":[618]},{"name":"tomPasteFile","features":[618]},{"name":"tomPhagsPa","features":[618]},{"name":"tomPhantom","features":[618]},{"name":"tomPhantomASmash","features":[618]},{"name":"tomPhantomDSmash","features":[618]},{"name":"tomPhantomHSmash","features":[618]},{"name":"tomPhantomHorz","features":[618]},{"name":"tomPhantomShow","features":[618]},{"name":"tomPhantomSmash","features":[618]},{"name":"tomPhantomTransparent","features":[618]},{"name":"tomPhantomVert","features":[618]},{"name":"tomPhantomZeroAscent","features":[618]},{"name":"tomPhantomZeroDescent","features":[618]},{"name":"tomPhantomZeroWidth","features":[618]},{"name":"tomPrimaryFooterStory","features":[618]},{"name":"tomPrimaryHeaderStory","features":[618]},{"name":"tomProcessId","features":[618]},{"name":"tomProtected","features":[618]},{"name":"tomRE10Mode","features":[618]},{"name":"tomRTF","features":[618]},{"name":"tomRadical","features":[618]},{"name":"tomReadOnly","features":[618]},{"name":"tomReplaceStory","features":[618]},{"name":"tomResume","features":[618]},{"name":"tomRevised","features":[618]},{"name":"tomRow","features":[618]},{"name":"tomRowApplyDefault","features":[618]},{"name":"tomRowHeightActual","features":[618]},{"name":"tomRowUpdate","features":[618]},{"name":"tomRuby","features":[618]},{"name":"tomRubyAlign010","features":[618]},{"name":"tomRubyAlign121","features":[618]},{"name":"tomRubyAlignCenter","features":[618]},{"name":"tomRubyAlignLeft","features":[618]},{"name":"tomRubyAlignRight","features":[618]},{"name":"tomRubyBelow","features":[618]},{"name":"tomRunic","features":[618]},{"name":"tomScratchStory","features":[618]},{"name":"tomScreen","features":[618]},{"name":"tomSection","features":[618]},{"name":"tomSelActive","features":[618]},{"name":"tomSelAtEOL","features":[618]},{"name":"tomSelOvertype","features":[618]},{"name":"tomSelRange","features":[618]},{"name":"tomSelReplace","features":[618]},{"name":"tomSelStartActive","features":[618]},{"name":"tomSelectionBlock","features":[618]},{"name":"tomSelectionColumn","features":[618]},{"name":"tomSelectionFrame","features":[618]},{"name":"tomSelectionIP","features":[618]},{"name":"tomSelectionInlineShape","features":[618]},{"name":"tomSelectionNormal","features":[618]},{"name":"tomSelectionRow","features":[618]},{"name":"tomSelectionShape","features":[618]},{"name":"tomSelfIME","features":[618]},{"name":"tomSentence","features":[618]},{"name":"tomSentenceCase","features":[618]},{"name":"tomShadow","features":[618]},{"name":"tomShareDenyRead","features":[618]},{"name":"tomShareDenyWrite","features":[618]},{"name":"tomShiftJIS","features":[618]},{"name":"tomShimmer","features":[618]},{"name":"tomShowDegPlaceHldr","features":[618]},{"name":"tomShowLLimPlaceHldr","features":[618]},{"name":"tomShowMatPlaceHldr","features":[618]},{"name":"tomShowULimPlaceHldr","features":[618]},{"name":"tomSimpleText","features":[618]},{"name":"tomSingle","features":[618]},{"name":"tomSinhala","features":[618]},{"name":"tomSizeScript","features":[618]},{"name":"tomSizeScriptScript","features":[618]},{"name":"tomSizeText","features":[618]},{"name":"tomSlashedFraction","features":[618]},{"name":"tomSmallCaps","features":[618]},{"name":"tomSpaceBinary","features":[618]},{"name":"tomSpaceDefault","features":[618]},{"name":"tomSpaceDifferential","features":[618]},{"name":"tomSpaceMask","features":[618]},{"name":"tomSpaceOrd","features":[618]},{"name":"tomSpaceRelational","features":[618]},{"name":"tomSpaceSkip","features":[618]},{"name":"tomSpaceUnary","features":[618]},{"name":"tomSpaces","features":[618]},{"name":"tomSparkleText","features":[618]},{"name":"tomStack","features":[618]},{"name":"tomStart","features":[618]},{"name":"tomStory","features":[618]},{"name":"tomStoryActiveDisplay","features":[618]},{"name":"tomStoryActiveDisplayUI","features":[618]},{"name":"tomStoryActiveUI","features":[618]},{"name":"tomStoryInactive","features":[618]},{"name":"tomStretchBaseAbove","features":[618]},{"name":"tomStretchBaseBelow","features":[618]},{"name":"tomStretchCharAbove","features":[618]},{"name":"tomStretchCharBelow","features":[618]},{"name":"tomStretchStack","features":[618]},{"name":"tomStrikeout","features":[618]},{"name":"tomStyleDefault","features":[618]},{"name":"tomStyleDisplay","features":[618]},{"name":"tomStyleDisplayCramped","features":[618]},{"name":"tomStyleScript","features":[618]},{"name":"tomStyleScriptCramped","features":[618]},{"name":"tomStyleScriptScript","features":[618]},{"name":"tomStyleScriptScriptCramped","features":[618]},{"name":"tomStyleText","features":[618]},{"name":"tomStyleTextCramped","features":[618]},{"name":"tomSubSup","features":[618]},{"name":"tomSubSupAlign","features":[618]},{"name":"tomSubscript","features":[618]},{"name":"tomSubscriptCF","features":[618]},{"name":"tomSuperscript","features":[618]},{"name":"tomSuperscriptCF","features":[618]},{"name":"tomSuspend","features":[618]},{"name":"tomSylotiNagri","features":[618]},{"name":"tomSymbol","features":[618]},{"name":"tomSyriac","features":[618]},{"name":"tomTabBack","features":[618]},{"name":"tomTabHere","features":[618]},{"name":"tomTabNext","features":[618]},{"name":"tomTable","features":[618]},{"name":"tomTableColumn","features":[618]},{"name":"tomTaiLe","features":[618]},{"name":"tomTamil","features":[618]},{"name":"tomTelugu","features":[618]},{"name":"tomText","features":[618]},{"name":"tomTextFlowES","features":[618]},{"name":"tomTextFlowMask","features":[618]},{"name":"tomTextFlowNE","features":[618]},{"name":"tomTextFlowSW","features":[618]},{"name":"tomTextFlowWN","features":[618]},{"name":"tomTextFrameStory","features":[618]},{"name":"tomTextize","features":[618]},{"name":"tomThaana","features":[618]},{"name":"tomThai","features":[618]},{"name":"tomThick","features":[618]},{"name":"tomThickDash","features":[618]},{"name":"tomThickDashDot","features":[618]},{"name":"tomThickDashDotDot","features":[618]},{"name":"tomThickDotted","features":[618]},{"name":"tomThickLines","features":[618]},{"name":"tomThickLongDash","features":[618]},{"name":"tomTibetan","features":[618]},{"name":"tomTifinagh","features":[618]},{"name":"tomTitleCase","features":[618]},{"name":"tomToggle","features":[618]},{"name":"tomToggleCase","features":[618]},{"name":"tomTrackParms","features":[618]},{"name":"tomTransform","features":[618]},{"name":"tomTranslateTableCell","features":[618]},{"name":"tomTransparentForPositioning","features":[618]},{"name":"tomTransparentForSpacing","features":[618]},{"name":"tomTrue","features":[618]},{"name":"tomTruncateExisting","features":[618]},{"name":"tomTurkish","features":[618]},{"name":"tomUndefined","features":[618]},{"name":"tomUnderbar","features":[618]},{"name":"tomUnderline","features":[618]},{"name":"tomUnderlinePositionAbove","features":[618]},{"name":"tomUnderlinePositionAuto","features":[618]},{"name":"tomUnderlinePositionBelow","features":[618]},{"name":"tomUnderlinePositionMax","features":[618]},{"name":"tomUndoLimit","features":[618]},{"name":"tomUnhide","features":[618]},{"name":"tomUnicodeBiDi","features":[618]},{"name":"tomUnknownStory","features":[618]},{"name":"tomUnlink","features":[618]},{"name":"tomUpperCase","features":[618]},{"name":"tomUpperLimit","features":[618]},{"name":"tomUpperLimitAsSuperScript","features":[618]},{"name":"tomUseAtFont","features":[618]},{"name":"tomUseCRLF","features":[618]},{"name":"tomUsePoints","features":[618]},{"name":"tomUseTwips","features":[618]},{"name":"tomUsymbol","features":[618]},{"name":"tomVLowCell","features":[618]},{"name":"tomVTopCell","features":[618]},{"name":"tomVai","features":[618]},{"name":"tomVietnamese","features":[618]},{"name":"tomWarichu","features":[618]},{"name":"tomWave","features":[618]},{"name":"tomWindow","features":[618]},{"name":"tomWipeDown","features":[618]},{"name":"tomWipeRight","features":[618]},{"name":"tomWord","features":[618]},{"name":"tomWordDocument","features":[618]},{"name":"tomWords","features":[618]},{"name":"tomYi","features":[618]},{"name":"yHeightCharPtsMost","features":[618]}],"655":[{"name":"AdjustWindowRectExForDpi","features":[305,619,367]},{"name":"AreDpiAwarenessContextsEqual","features":[305,619]},{"name":"DCDC_DEFAULT","features":[619]},{"name":"DCDC_DISABLE_FONT_UPDATE","features":[619]},{"name":"DCDC_DISABLE_RELAYOUT","features":[619]},{"name":"DDC_DEFAULT","features":[619]},{"name":"DDC_DISABLE_ALL","features":[619]},{"name":"DDC_DISABLE_CONTROL_RELAYOUT","features":[619]},{"name":"DDC_DISABLE_RESIZE","features":[619]},{"name":"DIALOG_CONTROL_DPI_CHANGE_BEHAVIORS","features":[619]},{"name":"DIALOG_DPI_CHANGE_BEHAVIORS","features":[619]},{"name":"DPI_AWARENESS","features":[619]},{"name":"DPI_AWARENESS_CONTEXT","features":[619]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE","features":[619]},{"name":"DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2","features":[619]},{"name":"DPI_AWARENESS_CONTEXT_SYSTEM_AWARE","features":[619]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE","features":[619]},{"name":"DPI_AWARENESS_CONTEXT_UNAWARE_GDISCALED","features":[619]},{"name":"DPI_AWARENESS_INVALID","features":[619]},{"name":"DPI_AWARENESS_PER_MONITOR_AWARE","features":[619]},{"name":"DPI_AWARENESS_SYSTEM_AWARE","features":[619]},{"name":"DPI_AWARENESS_UNAWARE","features":[619]},{"name":"DPI_HOSTING_BEHAVIOR","features":[619]},{"name":"DPI_HOSTING_BEHAVIOR_DEFAULT","features":[619]},{"name":"DPI_HOSTING_BEHAVIOR_INVALID","features":[619]},{"name":"DPI_HOSTING_BEHAVIOR_MIXED","features":[619]},{"name":"EnableNonClientDpiScaling","features":[305,619]},{"name":"GetAwarenessFromDpiAwarenessContext","features":[619]},{"name":"GetDialogControlDpiChangeBehavior","features":[305,619]},{"name":"GetDialogDpiChangeBehavior","features":[305,619]},{"name":"GetDpiAwarenessContextForProcess","features":[305,619]},{"name":"GetDpiForMonitor","features":[316,619]},{"name":"GetDpiForSystem","features":[619]},{"name":"GetDpiForWindow","features":[305,619]},{"name":"GetDpiFromDpiAwarenessContext","features":[619]},{"name":"GetProcessDpiAwareness","features":[305,619]},{"name":"GetSystemDpiForProcess","features":[305,619]},{"name":"GetSystemMetricsForDpi","features":[619,367]},{"name":"GetThreadDpiAwarenessContext","features":[619]},{"name":"GetThreadDpiHostingBehavior","features":[619]},{"name":"GetWindowDpiAwarenessContext","features":[305,619]},{"name":"GetWindowDpiHostingBehavior","features":[305,619]},{"name":"IsValidDpiAwarenessContext","features":[305,619]},{"name":"LogicalToPhysicalPointForPerMonitorDPI","features":[305,619]},{"name":"MDT_ANGULAR_DPI","features":[619]},{"name":"MDT_DEFAULT","features":[619]},{"name":"MDT_EFFECTIVE_DPI","features":[619]},{"name":"MDT_RAW_DPI","features":[619]},{"name":"MONITOR_DPI_TYPE","features":[619]},{"name":"OpenThemeDataForDpi","features":[305,355,619]},{"name":"PROCESS_DPI_AWARENESS","features":[619]},{"name":"PROCESS_DPI_UNAWARE","features":[619]},{"name":"PROCESS_PER_MONITOR_DPI_AWARE","features":[619]},{"name":"PROCESS_SYSTEM_DPI_AWARE","features":[619]},{"name":"PhysicalToLogicalPointForPerMonitorDPI","features":[305,619]},{"name":"SetDialogControlDpiChangeBehavior","features":[305,619]},{"name":"SetDialogDpiChangeBehavior","features":[305,619]},{"name":"SetProcessDpiAwareness","features":[619]},{"name":"SetProcessDpiAwarenessContext","features":[305,619]},{"name":"SetThreadDpiAwarenessContext","features":[619]},{"name":"SetThreadDpiHostingBehavior","features":[619]},{"name":"SystemParametersInfoForDpi","features":[305,619]}],"656":[{"name":"DefRawInputProc","features":[305,620]},{"name":"GetCIMSSM","features":[305,620]},{"name":"GetCurrentInputMessageSource","features":[305,620]},{"name":"GetRawInputBuffer","features":[305,620]},{"name":"GetRawInputData","features":[620]},{"name":"GetRawInputDeviceInfoA","features":[305,620]},{"name":"GetRawInputDeviceInfoW","features":[305,620]},{"name":"GetRawInputDeviceList","features":[305,620]},{"name":"GetRegisteredRawInputDevices","features":[305,620]},{"name":"HRAWINPUT","features":[620]},{"name":"IMDT_KEYBOARD","features":[620]},{"name":"IMDT_MOUSE","features":[620]},{"name":"IMDT_PEN","features":[620]},{"name":"IMDT_TOUCH","features":[620]},{"name":"IMDT_TOUCHPAD","features":[620]},{"name":"IMDT_UNAVAILABLE","features":[620]},{"name":"IMO_HARDWARE","features":[620]},{"name":"IMO_INJECTED","features":[620]},{"name":"IMO_SYSTEM","features":[620]},{"name":"IMO_UNAVAILABLE","features":[620]},{"name":"INPUT_MESSAGE_DEVICE_TYPE","features":[620]},{"name":"INPUT_MESSAGE_ORIGIN_ID","features":[620]},{"name":"INPUT_MESSAGE_SOURCE","features":[620]},{"name":"MOUSE_ATTRIBUTES_CHANGED","features":[620]},{"name":"MOUSE_MOVE_ABSOLUTE","features":[620]},{"name":"MOUSE_MOVE_NOCOALESCE","features":[620]},{"name":"MOUSE_MOVE_RELATIVE","features":[620]},{"name":"MOUSE_STATE","features":[620]},{"name":"MOUSE_VIRTUAL_DESKTOP","features":[620]},{"name":"RAWHID","features":[620]},{"name":"RAWINPUT","features":[305,620]},{"name":"RAWINPUTDEVICE","features":[305,620]},{"name":"RAWINPUTDEVICELIST","features":[305,620]},{"name":"RAWINPUTDEVICE_FLAGS","features":[620]},{"name":"RAWINPUTHEADER","features":[305,620]},{"name":"RAWKEYBOARD","features":[620]},{"name":"RAWMOUSE","features":[620]},{"name":"RAW_INPUT_DATA_COMMAND_FLAGS","features":[620]},{"name":"RAW_INPUT_DEVICE_INFO_COMMAND","features":[620]},{"name":"RIDEV_APPKEYS","features":[620]},{"name":"RIDEV_CAPTUREMOUSE","features":[620]},{"name":"RIDEV_DEVNOTIFY","features":[620]},{"name":"RIDEV_EXCLUDE","features":[620]},{"name":"RIDEV_EXINPUTSINK","features":[620]},{"name":"RIDEV_INPUTSINK","features":[620]},{"name":"RIDEV_NOHOTKEYS","features":[620]},{"name":"RIDEV_NOLEGACY","features":[620]},{"name":"RIDEV_PAGEONLY","features":[620]},{"name":"RIDEV_REMOVE","features":[620]},{"name":"RIDI_DEVICEINFO","features":[620]},{"name":"RIDI_DEVICENAME","features":[620]},{"name":"RIDI_PREPARSEDDATA","features":[620]},{"name":"RID_DEVICE_INFO","features":[305,620]},{"name":"RID_DEVICE_INFO_HID","features":[620]},{"name":"RID_DEVICE_INFO_KEYBOARD","features":[620]},{"name":"RID_DEVICE_INFO_MOUSE","features":[305,620]},{"name":"RID_DEVICE_INFO_TYPE","features":[620]},{"name":"RID_HEADER","features":[620]},{"name":"RID_INPUT","features":[620]},{"name":"RIM_TYPEHID","features":[620]},{"name":"RIM_TYPEKEYBOARD","features":[620]},{"name":"RIM_TYPEMOUSE","features":[620]},{"name":"RegisterRawInputDevices","features":[305,620]}],"657":[{"name":"APPLETIDLIST","features":[621]},{"name":"APPLYCANDEXPARAM","features":[621]},{"name":"ATTR_CONVERTED","features":[621]},{"name":"ATTR_FIXEDCONVERTED","features":[621]},{"name":"ATTR_INPUT","features":[621]},{"name":"ATTR_INPUT_ERROR","features":[621]},{"name":"ATTR_TARGET_CONVERTED","features":[621]},{"name":"ATTR_TARGET_NOTCONVERTED","features":[621]},{"name":"CANDIDATEFORM","features":[305,621]},{"name":"CANDIDATEINFO","features":[621]},{"name":"CANDIDATELIST","features":[621]},{"name":"CATID_MSIME_IImePadApplet","features":[621]},{"name":"CATID_MSIME_IImePadApplet1000","features":[621]},{"name":"CATID_MSIME_IImePadApplet1200","features":[621]},{"name":"CATID_MSIME_IImePadApplet900","features":[621]},{"name":"CATID_MSIME_IImePadApplet_VER7","features":[621]},{"name":"CATID_MSIME_IImePadApplet_VER80","features":[621]},{"name":"CATID_MSIME_IImePadApplet_VER81","features":[621]},{"name":"CActiveIMM","features":[621]},{"name":"CFS_CANDIDATEPOS","features":[621]},{"name":"CFS_DEFAULT","features":[621]},{"name":"CFS_EXCLUDE","features":[621]},{"name":"CFS_FORCE_POSITION","features":[621]},{"name":"CFS_POINT","features":[621]},{"name":"CFS_RECT","features":[621]},{"name":"CHARINFO_APPLETID_MASK","features":[621]},{"name":"CHARINFO_CHARID_MASK","features":[621]},{"name":"CHARINFO_FEID_MASK","features":[621]},{"name":"CLSID_ImePlugInDictDictionaryList_CHS","features":[621]},{"name":"CLSID_ImePlugInDictDictionaryList_JPN","features":[621]},{"name":"CLSID_VERSION_DEPENDENT_MSIME_JAPANESE","features":[621]},{"name":"COMPOSITIONFORM","features":[305,621]},{"name":"COMPOSITIONSTRING","features":[621]},{"name":"CPS_CANCEL","features":[621]},{"name":"CPS_COMPLETE","features":[621]},{"name":"CPS_CONVERT","features":[621]},{"name":"CPS_REVERT","features":[621]},{"name":"CS_INSERTCHAR","features":[621]},{"name":"CS_NOMOVECARET","features":[621]},{"name":"E_LARGEINPUT","features":[621]},{"name":"E_NOCAND","features":[621]},{"name":"E_NOTENOUGH_BUFFER","features":[621]},{"name":"E_NOTENOUGH_WDD","features":[621]},{"name":"FEID_CHINESE_HONGKONG","features":[621]},{"name":"FEID_CHINESE_SIMPLIFIED","features":[621]},{"name":"FEID_CHINESE_SINGAPORE","features":[621]},{"name":"FEID_CHINESE_TRADITIONAL","features":[621]},{"name":"FEID_JAPANESE","features":[621]},{"name":"FEID_KOREAN","features":[621]},{"name":"FEID_KOREAN_JOHAB","features":[621]},{"name":"FEID_NONE","features":[621]},{"name":"FELANG_CLMN_FIXD","features":[621]},{"name":"FELANG_CLMN_FIXR","features":[621]},{"name":"FELANG_CLMN_NOPBREAK","features":[621]},{"name":"FELANG_CLMN_NOWBREAK","features":[621]},{"name":"FELANG_CLMN_PBREAK","features":[621]},{"name":"FELANG_CLMN_WBREAK","features":[621]},{"name":"FELANG_CMODE_AUTOMATIC","features":[621]},{"name":"FELANG_CMODE_BESTFIRST","features":[621]},{"name":"FELANG_CMODE_BOPOMOFO","features":[621]},{"name":"FELANG_CMODE_CONVERSATION","features":[621]},{"name":"FELANG_CMODE_FULLWIDTHOUT","features":[621]},{"name":"FELANG_CMODE_HALFWIDTHOUT","features":[621]},{"name":"FELANG_CMODE_HANGUL","features":[621]},{"name":"FELANG_CMODE_HIRAGANAOUT","features":[621]},{"name":"FELANG_CMODE_KATAKANAOUT","features":[621]},{"name":"FELANG_CMODE_MERGECAND","features":[621]},{"name":"FELANG_CMODE_MONORUBY","features":[621]},{"name":"FELANG_CMODE_NAME","features":[621]},{"name":"FELANG_CMODE_NOINVISIBLECHAR","features":[621]},{"name":"FELANG_CMODE_NONE","features":[621]},{"name":"FELANG_CMODE_NOPRUNING","features":[621]},{"name":"FELANG_CMODE_PHRASEPREDICT","features":[621]},{"name":"FELANG_CMODE_PINYIN","features":[621]},{"name":"FELANG_CMODE_PLAURALCLAUSE","features":[621]},{"name":"FELANG_CMODE_PRECONV","features":[621]},{"name":"FELANG_CMODE_RADICAL","features":[621]},{"name":"FELANG_CMODE_ROMAN","features":[621]},{"name":"FELANG_CMODE_SINGLECONVERT","features":[621]},{"name":"FELANG_CMODE_UNKNOWNREADING","features":[621]},{"name":"FELANG_CMODE_USENOREVWORDS","features":[621]},{"name":"FELANG_INVALD_PO","features":[621]},{"name":"FELANG_REQ_CONV","features":[621]},{"name":"FELANG_REQ_RECONV","features":[621]},{"name":"FELANG_REQ_REV","features":[621]},{"name":"FID_MSIME_KMS_DEL_KEYLIST","features":[621]},{"name":"FID_MSIME_KMS_FUNCDESC","features":[621]},{"name":"FID_MSIME_KMS_GETMAP","features":[621]},{"name":"FID_MSIME_KMS_GETMAPFAST","features":[621]},{"name":"FID_MSIME_KMS_GETMAPSEAMLESS","features":[621]},{"name":"FID_MSIME_KMS_INIT","features":[621]},{"name":"FID_MSIME_KMS_INVOKE","features":[621]},{"name":"FID_MSIME_KMS_NOTIFY","features":[621]},{"name":"FID_MSIME_KMS_SETMAP","features":[621]},{"name":"FID_MSIME_KMS_TERM","features":[621]},{"name":"FID_MSIME_KMS_VERSION","features":[621]},{"name":"FID_MSIME_VERSION","features":[621]},{"name":"FID_RECONVERT_VERSION","features":[621]},{"name":"GCL_CONVERSION","features":[621]},{"name":"GCL_REVERSECONVERSION","features":[621]},{"name":"GCL_REVERSE_LENGTH","features":[621]},{"name":"GCSEX_CANCELRECONVERT","features":[621]},{"name":"GCS_COMPATTR","features":[621]},{"name":"GCS_COMPCLAUSE","features":[621]},{"name":"GCS_COMPREADATTR","features":[621]},{"name":"GCS_COMPREADCLAUSE","features":[621]},{"name":"GCS_COMPREADSTR","features":[621]},{"name":"GCS_COMPSTR","features":[621]},{"name":"GCS_CURSORPOS","features":[621]},{"name":"GCS_DELTASTART","features":[621]},{"name":"GCS_RESULTCLAUSE","features":[621]},{"name":"GCS_RESULTREADCLAUSE","features":[621]},{"name":"GCS_RESULTREADSTR","features":[621]},{"name":"GCS_RESULTSTR","features":[621]},{"name":"GET_CONVERSION_LIST_FLAG","features":[621]},{"name":"GET_GUIDE_LINE_TYPE","features":[621]},{"name":"GGL_INDEX","features":[621]},{"name":"GGL_LEVEL","features":[621]},{"name":"GGL_PRIVATE","features":[621]},{"name":"GGL_STRING","features":[621]},{"name":"GL_ID_CANNOTSAVE","features":[621]},{"name":"GL_ID_CHOOSECANDIDATE","features":[621]},{"name":"GL_ID_INPUTCODE","features":[621]},{"name":"GL_ID_INPUTRADICAL","features":[621]},{"name":"GL_ID_INPUTREADING","features":[621]},{"name":"GL_ID_INPUTSYMBOL","features":[621]},{"name":"GL_ID_NOCONVERT","features":[621]},{"name":"GL_ID_NODICTIONARY","features":[621]},{"name":"GL_ID_NOMODULE","features":[621]},{"name":"GL_ID_PRIVATE_FIRST","features":[621]},{"name":"GL_ID_PRIVATE_LAST","features":[621]},{"name":"GL_ID_READINGCONFLICT","features":[621]},{"name":"GL_ID_REVERSECONVERSION","features":[621]},{"name":"GL_ID_TOOMANYSTROKE","features":[621]},{"name":"GL_ID_TYPINGERROR","features":[621]},{"name":"GL_ID_UNKNOWN","features":[621]},{"name":"GL_LEVEL_ERROR","features":[621]},{"name":"GL_LEVEL_FATAL","features":[621]},{"name":"GL_LEVEL_INFORMATION","features":[621]},{"name":"GL_LEVEL_NOGUIDELINE","features":[621]},{"name":"GL_LEVEL_WARNING","features":[621]},{"name":"GUIDELINE","features":[621]},{"name":"HIMC","features":[621]},{"name":"HIMCC","features":[621]},{"name":"IACE_CHILDREN","features":[621]},{"name":"IACE_DEFAULT","features":[621]},{"name":"IACE_IGNORENOCONTEXT","features":[621]},{"name":"IActiveIME","features":[621]},{"name":"IActiveIME2","features":[621]},{"name":"IActiveIMMApp","features":[621]},{"name":"IActiveIMMIME","features":[621]},{"name":"IActiveIMMMessagePumpOwner","features":[621]},{"name":"IActiveIMMRegistrar","features":[621]},{"name":"IEnumInputContext","features":[621]},{"name":"IEnumRegisterWordA","features":[621]},{"name":"IEnumRegisterWordW","features":[621]},{"name":"IFEC_S_ALREADY_DEFAULT","features":[621]},{"name":"IFEClassFactory","features":[356,621]},{"name":"IFECommon","features":[621]},{"name":"IFED_ACTIVE_DICT","features":[621]},{"name":"IFED_ATOK10","features":[621]},{"name":"IFED_ATOK9","features":[621]},{"name":"IFED_E_INVALID_FORMAT","features":[621]},{"name":"IFED_E_NOT_FOUND","features":[621]},{"name":"IFED_E_NOT_SUPPORTED","features":[621]},{"name":"IFED_E_NOT_USER_DIC","features":[621]},{"name":"IFED_E_NO_ENTRY","features":[621]},{"name":"IFED_E_OPEN_FAILED","features":[621]},{"name":"IFED_E_REGISTER_DISCONNECTED","features":[621]},{"name":"IFED_E_REGISTER_FAILED","features":[621]},{"name":"IFED_E_REGISTER_ILLEGAL_POS","features":[621]},{"name":"IFED_E_REGISTER_IMPROPER_WORD","features":[621]},{"name":"IFED_E_USER_COMMENT","features":[621]},{"name":"IFED_E_WRITE_FAILED","features":[621]},{"name":"IFED_MSIME2_BIN_SYSTEM","features":[621]},{"name":"IFED_MSIME2_BIN_USER","features":[621]},{"name":"IFED_MSIME2_TEXT_USER","features":[621]},{"name":"IFED_MSIME95_BIN_SYSTEM","features":[621]},{"name":"IFED_MSIME95_BIN_USER","features":[621]},{"name":"IFED_MSIME95_TEXT_USER","features":[621]},{"name":"IFED_MSIME97_BIN_SYSTEM","features":[621]},{"name":"IFED_MSIME97_BIN_USER","features":[621]},{"name":"IFED_MSIME97_TEXT_USER","features":[621]},{"name":"IFED_MSIME98_BIN_SYSTEM","features":[621]},{"name":"IFED_MSIME98_BIN_USER","features":[621]},{"name":"IFED_MSIME98_SYSTEM_CE","features":[621]},{"name":"IFED_MSIME98_TEXT_USER","features":[621]},{"name":"IFED_MSIME_BIN_SYSTEM","features":[621]},{"name":"IFED_MSIME_BIN_USER","features":[621]},{"name":"IFED_MSIME_TEXT_USER","features":[621]},{"name":"IFED_NEC_AI_","features":[621]},{"name":"IFED_PIME2_BIN_STANDARD_SYSTEM","features":[621]},{"name":"IFED_PIME2_BIN_SYSTEM","features":[621]},{"name":"IFED_PIME2_BIN_USER","features":[621]},{"name":"IFED_POS_ADJECTIVE","features":[621]},{"name":"IFED_POS_ADJECTIVE_VERB","features":[621]},{"name":"IFED_POS_ADNOUN","features":[621]},{"name":"IFED_POS_ADVERB","features":[621]},{"name":"IFED_POS_AFFIX","features":[621]},{"name":"IFED_POS_ALL","features":[621]},{"name":"IFED_POS_AUXILIARY_VERB","features":[621]},{"name":"IFED_POS_CONJUNCTION","features":[621]},{"name":"IFED_POS_DEPENDENT","features":[621]},{"name":"IFED_POS_IDIOMS","features":[621]},{"name":"IFED_POS_INDEPENDENT","features":[621]},{"name":"IFED_POS_INFLECTIONALSUFFIX","features":[621]},{"name":"IFED_POS_INTERJECTION","features":[621]},{"name":"IFED_POS_NONE","features":[621]},{"name":"IFED_POS_NOUN","features":[621]},{"name":"IFED_POS_PARTICLE","features":[621]},{"name":"IFED_POS_PREFIX","features":[621]},{"name":"IFED_POS_SUB_VERB","features":[621]},{"name":"IFED_POS_SUFFIX","features":[621]},{"name":"IFED_POS_SYMBOLS","features":[621]},{"name":"IFED_POS_TANKANJI","features":[621]},{"name":"IFED_POS_VERB","features":[621]},{"name":"IFED_REG_ALL","features":[621]},{"name":"IFED_REG_AUTO","features":[621]},{"name":"IFED_REG_DEL","features":[621]},{"name":"IFED_REG_GRAMMAR","features":[621]},{"name":"IFED_REG_HEAD","features":[621]},{"name":"IFED_REG_NONE","features":[621]},{"name":"IFED_REG_TAIL","features":[621]},{"name":"IFED_REG_USER","features":[621]},{"name":"IFED_REL_ALL","features":[621]},{"name":"IFED_REL_DE","features":[621]},{"name":"IFED_REL_FUKU_YOUGEN","features":[621]},{"name":"IFED_REL_GA","features":[621]},{"name":"IFED_REL_HE","features":[621]},{"name":"IFED_REL_IDEOM","features":[621]},{"name":"IFED_REL_KARA","features":[621]},{"name":"IFED_REL_KEIDOU1_YOUGEN","features":[621]},{"name":"IFED_REL_KEIDOU2_YOUGEN","features":[621]},{"name":"IFED_REL_KEIYOU_TARU_YOUGEN","features":[621]},{"name":"IFED_REL_KEIYOU_TO_YOUGEN","features":[621]},{"name":"IFED_REL_KEIYOU_YOUGEN","features":[621]},{"name":"IFED_REL_MADE","features":[621]},{"name":"IFED_REL_NI","features":[621]},{"name":"IFED_REL_NO","features":[621]},{"name":"IFED_REL_NONE","features":[621]},{"name":"IFED_REL_RENSOU","features":[621]},{"name":"IFED_REL_RENTAI_MEI","features":[621]},{"name":"IFED_REL_TAIGEN","features":[621]},{"name":"IFED_REL_TO","features":[621]},{"name":"IFED_REL_UNKNOWN1","features":[621]},{"name":"IFED_REL_UNKNOWN2","features":[621]},{"name":"IFED_REL_WO","features":[621]},{"name":"IFED_REL_YORI","features":[621]},{"name":"IFED_REL_YOUGEN","features":[621]},{"name":"IFED_SELECT_ALL","features":[621]},{"name":"IFED_SELECT_COMMENT","features":[621]},{"name":"IFED_SELECT_DISPLAY","features":[621]},{"name":"IFED_SELECT_NONE","features":[621]},{"name":"IFED_SELECT_POS","features":[621]},{"name":"IFED_SELECT_READING","features":[621]},{"name":"IFED_S_COMMENT_CHANGED","features":[621]},{"name":"IFED_S_EMPTY_DICTIONARY","features":[621]},{"name":"IFED_S_MORE_ENTRIES","features":[621]},{"name":"IFED_S_WORD_EXISTS","features":[621]},{"name":"IFED_TYPE_ALL","features":[621]},{"name":"IFED_TYPE_ENGLISH","features":[621]},{"name":"IFED_TYPE_GENERAL","features":[621]},{"name":"IFED_TYPE_NAMEPLACE","features":[621]},{"name":"IFED_TYPE_NONE","features":[621]},{"name":"IFED_TYPE_REVERSE","features":[621]},{"name":"IFED_TYPE_SPEECH","features":[621]},{"name":"IFED_UCT_MAX","features":[621]},{"name":"IFED_UCT_NONE","features":[621]},{"name":"IFED_UCT_STRING_SJIS","features":[621]},{"name":"IFED_UCT_STRING_UNICODE","features":[621]},{"name":"IFED_UCT_USER_DEFINED","features":[621]},{"name":"IFED_UNKNOWN","features":[621]},{"name":"IFED_VJE_20","features":[621]},{"name":"IFED_WX_II","features":[621]},{"name":"IFED_WX_III","features":[621]},{"name":"IFEDictionary","features":[621]},{"name":"IFELanguage","features":[621]},{"name":"IGIMIF_RIGHTMENU","features":[621]},{"name":"IGIMII_CMODE","features":[621]},{"name":"IGIMII_CONFIGURE","features":[621]},{"name":"IGIMII_HELP","features":[621]},{"name":"IGIMII_INPUTTOOLS","features":[621]},{"name":"IGIMII_OTHER","features":[621]},{"name":"IGIMII_SMODE","features":[621]},{"name":"IGIMII_TOOLS","features":[621]},{"name":"IImePad","features":[621]},{"name":"IImePadApplet","features":[621]},{"name":"IImePlugInDictDictionaryList","features":[621]},{"name":"IImeSpecifyApplets","features":[621]},{"name":"IMCENUMPROC","features":[305,621]},{"name":"IMC_CLOSESTATUSWINDOW","features":[621]},{"name":"IMC_GETCANDIDATEPOS","features":[621]},{"name":"IMC_GETCOMPOSITIONFONT","features":[621]},{"name":"IMC_GETCOMPOSITIONWINDOW","features":[621]},{"name":"IMC_GETSOFTKBDFONT","features":[621]},{"name":"IMC_GETSOFTKBDPOS","features":[621]},{"name":"IMC_GETSOFTKBDSUBTYPE","features":[621]},{"name":"IMC_GETSTATUSWINDOWPOS","features":[621]},{"name":"IMC_OPENSTATUSWINDOW","features":[621]},{"name":"IMC_SETCANDIDATEPOS","features":[621]},{"name":"IMC_SETCOMPOSITIONFONT","features":[621]},{"name":"IMC_SETCOMPOSITIONWINDOW","features":[621]},{"name":"IMC_SETCONVERSIONMODE","features":[621]},{"name":"IMC_SETOPENSTATUS","features":[621]},{"name":"IMC_SETSENTENCEMODE","features":[621]},{"name":"IMC_SETSOFTKBDDATA","features":[621]},{"name":"IMC_SETSOFTKBDFONT","features":[621]},{"name":"IMC_SETSOFTKBDPOS","features":[621]},{"name":"IMC_SETSOFTKBDSUBTYPE","features":[621]},{"name":"IMC_SETSTATUSWINDOWPOS","features":[621]},{"name":"IMEAPPLETCFG","features":[305,621,367]},{"name":"IMEAPPLETUI","features":[305,621]},{"name":"IMECHARINFO","features":[621]},{"name":"IMECHARPOSITION","features":[305,621]},{"name":"IMECOMPOSITIONSTRINGINFO","features":[621]},{"name":"IMEDLG","features":[305,621]},{"name":"IMEDP","features":[621]},{"name":"IMEFAREASTINFO","features":[621]},{"name":"IMEFAREASTINFO_TYPE_COMMENT","features":[621]},{"name":"IMEFAREASTINFO_TYPE_COSTTIME","features":[621]},{"name":"IMEFAREASTINFO_TYPE_DEFAULT","features":[621]},{"name":"IMEFAREASTINFO_TYPE_READING","features":[621]},{"name":"IMEFMT","features":[621]},{"name":"IMEINFO","features":[621]},{"name":"IMEITEM","features":[621]},{"name":"IMEITEMCANDIDATE","features":[621]},{"name":"IMEKEYCTRLMASK_ALT","features":[621]},{"name":"IMEKEYCTRLMASK_CTRL","features":[621]},{"name":"IMEKEYCTRLMASK_SHIFT","features":[621]},{"name":"IMEKEYCTRL_DOWN","features":[621]},{"name":"IMEKEYCTRL_UP","features":[621]},{"name":"IMEKMS","features":[621]},{"name":"IMEKMSFUNCDESC","features":[621]},{"name":"IMEKMSINIT","features":[305,621]},{"name":"IMEKMSINVK","features":[621]},{"name":"IMEKMSKEY","features":[621]},{"name":"IMEKMSKMP","features":[621]},{"name":"IMEKMSNTFY","features":[305,621]},{"name":"IMEKMS_2NDLEVEL","features":[621]},{"name":"IMEKMS_CANDIDATE","features":[621]},{"name":"IMEKMS_COMPOSITION","features":[621]},{"name":"IMEKMS_IMEOFF","features":[621]},{"name":"IMEKMS_INPTGL","features":[621]},{"name":"IMEKMS_NOCOMPOSITION","features":[621]},{"name":"IMEKMS_SELECTION","features":[621]},{"name":"IMEKMS_TYPECAND","features":[621]},{"name":"IMEMENUITEMINFOA","features":[316,621]},{"name":"IMEMENUITEMINFOW","features":[316,621]},{"name":"IMEMENUITEM_STRING_SIZE","features":[621]},{"name":"IMEMOUSERET_NOTHANDLED","features":[621]},{"name":"IMEMOUSE_LDOWN","features":[621]},{"name":"IMEMOUSE_MDOWN","features":[621]},{"name":"IMEMOUSE_NONE","features":[621]},{"name":"IMEMOUSE_RDOWN","features":[621]},{"name":"IMEMOUSE_VERSION","features":[621]},{"name":"IMEMOUSE_WDOWN","features":[621]},{"name":"IMEMOUSE_WUP","features":[621]},{"name":"IMEPADCTRL_CARETBACKSPACE","features":[621]},{"name":"IMEPADCTRL_CARETBOTTOM","features":[621]},{"name":"IMEPADCTRL_CARETDELETE","features":[621]},{"name":"IMEPADCTRL_CARETLEFT","features":[621]},{"name":"IMEPADCTRL_CARETRIGHT","features":[621]},{"name":"IMEPADCTRL_CARETSET","features":[621]},{"name":"IMEPADCTRL_CARETTOP","features":[621]},{"name":"IMEPADCTRL_CLEARALL","features":[621]},{"name":"IMEPADCTRL_CONVERTALL","features":[621]},{"name":"IMEPADCTRL_DETERMINALL","features":[621]},{"name":"IMEPADCTRL_DETERMINCHAR","features":[621]},{"name":"IMEPADCTRL_INSERTFULLSPACE","features":[621]},{"name":"IMEPADCTRL_INSERTHALFSPACE","features":[621]},{"name":"IMEPADCTRL_INSERTSPACE","features":[621]},{"name":"IMEPADCTRL_OFFIME","features":[621]},{"name":"IMEPADCTRL_OFFPRECONVERSION","features":[621]},{"name":"IMEPADCTRL_ONIME","features":[621]},{"name":"IMEPADCTRL_ONPRECONVERSION","features":[621]},{"name":"IMEPADCTRL_PHONETICCANDIDATE","features":[621]},{"name":"IMEPADCTRL_PHRASEDELETE","features":[621]},{"name":"IMEPADREQ_CHANGESTRING","features":[621]},{"name":"IMEPADREQ_CHANGESTRINGCANDIDATEINFO","features":[621]},{"name":"IMEPADREQ_CHANGESTRINGINFO","features":[621]},{"name":"IMEPADREQ_DELETESTRING","features":[621]},{"name":"IMEPADREQ_FIRST","features":[621]},{"name":"IMEPADREQ_FORCEIMEPADWINDOWSHOW","features":[621]},{"name":"IMEPADREQ_GETAPPLETDATA","features":[621]},{"name":"IMEPADREQ_GETAPPLETUISTYLE","features":[621]},{"name":"IMEPADREQ_GETAPPLHWND","features":[621]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRING","features":[621]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGID","features":[621]},{"name":"IMEPADREQ_GETCOMPOSITIONSTRINGINFO","features":[621]},{"name":"IMEPADREQ_GETCONVERSIONSTATUS","features":[621]},{"name":"IMEPADREQ_GETCURRENTIMEINFO","features":[621]},{"name":"IMEPADREQ_GETCURRENTUILANGID","features":[621]},{"name":"IMEPADREQ_GETDEFAULTUILANGID","features":[621]},{"name":"IMEPADREQ_GETSELECTEDSTRING","features":[621]},{"name":"IMEPADREQ_GETVERSION","features":[621]},{"name":"IMEPADREQ_INSERTITEMCANDIDATE","features":[621]},{"name":"IMEPADREQ_INSERTSTRING","features":[621]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATE","features":[621]},{"name":"IMEPADREQ_INSERTSTRINGCANDIDATEINFO","features":[621]},{"name":"IMEPADREQ_INSERTSTRINGINFO","features":[621]},{"name":"IMEPADREQ_ISAPPLETACTIVE","features":[621]},{"name":"IMEPADREQ_ISIMEPADWINDOWVISIBLE","features":[621]},{"name":"IMEPADREQ_POSTMODALNOTIFY","features":[621]},{"name":"IMEPADREQ_SENDCONTROL","features":[621]},{"name":"IMEPADREQ_SENDKEYCONTROL","features":[621]},{"name":"IMEPADREQ_SETAPPLETDATA","features":[621]},{"name":"IMEPADREQ_SETAPPLETMINMAXSIZE","features":[621]},{"name":"IMEPADREQ_SETAPPLETSIZE","features":[621]},{"name":"IMEPADREQ_SETAPPLETUISTYLE","features":[621]},{"name":"IMEPADREQ_SETTITLEFONT","features":[621]},{"name":"IMEPN_ACTIVATE","features":[621]},{"name":"IMEPN_APPLYCAND","features":[621]},{"name":"IMEPN_APPLYCANDEX","features":[621]},{"name":"IMEPN_CONFIG","features":[621]},{"name":"IMEPN_FIRST","features":[621]},{"name":"IMEPN_HELP","features":[621]},{"name":"IMEPN_HIDE","features":[621]},{"name":"IMEPN_INACTIVATE","features":[621]},{"name":"IMEPN_QUERYCAND","features":[621]},{"name":"IMEPN_SETTINGCHANGED","features":[621]},{"name":"IMEPN_SHOW","features":[621]},{"name":"IMEPN_SIZECHANGED","features":[621]},{"name":"IMEPN_SIZECHANGING","features":[621]},{"name":"IMEPN_USER","features":[621]},{"name":"IMEREG","features":[621]},{"name":"IMEREL","features":[621]},{"name":"IMESHF","features":[621]},{"name":"IMESTRINGCANDIDATE","features":[621]},{"name":"IMESTRINGCANDIDATEINFO","features":[621]},{"name":"IMESTRINGINFO","features":[621]},{"name":"IMEUCT","features":[621]},{"name":"IMEVER_0310","features":[621]},{"name":"IMEVER_0400","features":[621]},{"name":"IMEWRD","features":[621]},{"name":"IME_CAND_CODE","features":[621]},{"name":"IME_CAND_MEANING","features":[621]},{"name":"IME_CAND_RADICAL","features":[621]},{"name":"IME_CAND_READ","features":[621]},{"name":"IME_CAND_STROKE","features":[621]},{"name":"IME_CAND_UNKNOWN","features":[621]},{"name":"IME_CHOTKEY_IME_NONIME_TOGGLE","features":[621]},{"name":"IME_CHOTKEY_SHAPE_TOGGLE","features":[621]},{"name":"IME_CHOTKEY_SYMBOL_TOGGLE","features":[621]},{"name":"IME_CMODE_ALPHANUMERIC","features":[621]},{"name":"IME_CMODE_CHARCODE","features":[621]},{"name":"IME_CMODE_CHINESE","features":[621]},{"name":"IME_CMODE_EUDC","features":[621]},{"name":"IME_CMODE_FIXED","features":[621]},{"name":"IME_CMODE_FULLSHAPE","features":[621]},{"name":"IME_CMODE_HANGEUL","features":[621]},{"name":"IME_CMODE_HANGUL","features":[621]},{"name":"IME_CMODE_HANJACONVERT","features":[621]},{"name":"IME_CMODE_JAPANESE","features":[621]},{"name":"IME_CMODE_KATAKANA","features":[621]},{"name":"IME_CMODE_LANGUAGE","features":[621]},{"name":"IME_CMODE_NATIVE","features":[621]},{"name":"IME_CMODE_NATIVESYMBOL","features":[621]},{"name":"IME_CMODE_NOCONVERSION","features":[621]},{"name":"IME_CMODE_RESERVED","features":[621]},{"name":"IME_CMODE_ROMAN","features":[621]},{"name":"IME_CMODE_SOFTKBD","features":[621]},{"name":"IME_CMODE_SYMBOL","features":[621]},{"name":"IME_COMPOSITION_STRING","features":[621]},{"name":"IME_CONFIG_GENERAL","features":[621]},{"name":"IME_CONFIG_REGISTERWORD","features":[621]},{"name":"IME_CONFIG_SELECTDICTIONARY","features":[621]},{"name":"IME_CONVERSION_MODE","features":[621]},{"name":"IME_ESCAPE","features":[621]},{"name":"IME_ESC_AUTOMATA","features":[621]},{"name":"IME_ESC_GETHELPFILENAME","features":[621]},{"name":"IME_ESC_GET_EUDC_DICTIONARY","features":[621]},{"name":"IME_ESC_HANJA_MODE","features":[621]},{"name":"IME_ESC_IME_NAME","features":[621]},{"name":"IME_ESC_MAX_KEY","features":[621]},{"name":"IME_ESC_PRIVATE_FIRST","features":[621]},{"name":"IME_ESC_PRIVATE_HOTKEY","features":[621]},{"name":"IME_ESC_PRIVATE_LAST","features":[621]},{"name":"IME_ESC_QUERY_SUPPORT","features":[621]},{"name":"IME_ESC_RESERVED_FIRST","features":[621]},{"name":"IME_ESC_RESERVED_LAST","features":[621]},{"name":"IME_ESC_SEQUENCE_TO_INTERNAL","features":[621]},{"name":"IME_ESC_SET_EUDC_DICTIONARY","features":[621]},{"name":"IME_ESC_STRING_BUFFER_SIZE","features":[621]},{"name":"IME_ESC_SYNC_HOTKEY","features":[621]},{"name":"IME_HOTKEY_DSWITCH_FIRST","features":[621]},{"name":"IME_HOTKEY_DSWITCH_LAST","features":[621]},{"name":"IME_HOTKEY_IDENTIFIER","features":[621]},{"name":"IME_HOTKEY_PRIVATE_FIRST","features":[621]},{"name":"IME_HOTKEY_PRIVATE_LAST","features":[621]},{"name":"IME_ITHOTKEY_PREVIOUS_COMPOSITION","features":[621]},{"name":"IME_ITHOTKEY_RECONVERTSTRING","features":[621]},{"name":"IME_ITHOTKEY_RESEND_RESULTSTR","features":[621]},{"name":"IME_ITHOTKEY_UISTYLE_TOGGLE","features":[621]},{"name":"IME_JHOTKEY_CLOSE_OPEN","features":[621]},{"name":"IME_KHOTKEY_ENGLISH","features":[621]},{"name":"IME_KHOTKEY_HANJACONVERT","features":[621]},{"name":"IME_KHOTKEY_SHAPE_TOGGLE","features":[621]},{"name":"IME_PAD_REQUEST_FLAGS","features":[621]},{"name":"IME_PROP_ACCEPT_WIDE_VKEY","features":[621]},{"name":"IME_PROP_AT_CARET","features":[621]},{"name":"IME_PROP_CANDLIST_START_FROM_1","features":[621]},{"name":"IME_PROP_COMPLETE_ON_UNSELECT","features":[621]},{"name":"IME_PROP_END_UNLOAD","features":[621]},{"name":"IME_PROP_IGNORE_UPKEYS","features":[621]},{"name":"IME_PROP_KBD_CHAR_FIRST","features":[621]},{"name":"IME_PROP_NEED_ALTKEY","features":[621]},{"name":"IME_PROP_NO_KEYS_ON_CLOSE","features":[621]},{"name":"IME_PROP_SPECIAL_UI","features":[621]},{"name":"IME_PROP_UNICODE","features":[621]},{"name":"IME_REGWORD_STYLE_EUDC","features":[621]},{"name":"IME_REGWORD_STYLE_USER_FIRST","features":[621]},{"name":"IME_REGWORD_STYLE_USER_LAST","features":[621]},{"name":"IME_SENTENCE_MODE","features":[621]},{"name":"IME_SMODE_AUTOMATIC","features":[621]},{"name":"IME_SMODE_CONVERSATION","features":[621]},{"name":"IME_SMODE_NONE","features":[621]},{"name":"IME_SMODE_PHRASEPREDICT","features":[621]},{"name":"IME_SMODE_PLAURALCLAUSE","features":[621]},{"name":"IME_SMODE_RESERVED","features":[621]},{"name":"IME_SMODE_SINGLECONVERT","features":[621]},{"name":"IME_SYSINFO_WINLOGON","features":[621]},{"name":"IME_THOTKEY_IME_NONIME_TOGGLE","features":[621]},{"name":"IME_THOTKEY_SHAPE_TOGGLE","features":[621]},{"name":"IME_THOTKEY_SYMBOL_TOGGLE","features":[621]},{"name":"IME_UI_CLASS_NAME_SIZE","features":[621]},{"name":"IMFT_RADIOCHECK","features":[621]},{"name":"IMFT_SEPARATOR","features":[621]},{"name":"IMFT_SUBMENU","features":[621]},{"name":"IMMGWLP_IMC","features":[621]},{"name":"IMMGWL_IMC","features":[621]},{"name":"IMM_ERROR_GENERAL","features":[621]},{"name":"IMM_ERROR_NODATA","features":[621]},{"name":"IMN_CHANGECANDIDATE","features":[621]},{"name":"IMN_CLOSECANDIDATE","features":[621]},{"name":"IMN_CLOSESTATUSWINDOW","features":[621]},{"name":"IMN_GUIDELINE","features":[621]},{"name":"IMN_OPENCANDIDATE","features":[621]},{"name":"IMN_OPENSTATUSWINDOW","features":[621]},{"name":"IMN_PRIVATE","features":[621]},{"name":"IMN_SETCANDIDATEPOS","features":[621]},{"name":"IMN_SETCOMPOSITIONFONT","features":[621]},{"name":"IMN_SETCOMPOSITIONWINDOW","features":[621]},{"name":"IMN_SETCONVERSIONMODE","features":[621]},{"name":"IMN_SETOPENSTATUS","features":[621]},{"name":"IMN_SETSENTENCEMODE","features":[621]},{"name":"IMN_SETSTATUSWINDOWPOS","features":[621]},{"name":"IMN_SOFTKBDDESTROYED","features":[621]},{"name":"IMR_CANDIDATEWINDOW","features":[621]},{"name":"IMR_COMPOSITIONFONT","features":[621]},{"name":"IMR_COMPOSITIONWINDOW","features":[621]},{"name":"IMR_CONFIRMRECONVERTSTRING","features":[621]},{"name":"IMR_DOCUMENTFEED","features":[621]},{"name":"IMR_QUERYCHARPOSITION","features":[621]},{"name":"IMR_RECONVERTSTRING","features":[621]},{"name":"INFOMASK_APPLY_CAND","features":[621]},{"name":"INFOMASK_APPLY_CAND_EX","features":[621]},{"name":"INFOMASK_BLOCK_CAND","features":[621]},{"name":"INFOMASK_HIDE_CAND","features":[621]},{"name":"INFOMASK_NONE","features":[621]},{"name":"INFOMASK_QUERY_CAND","features":[621]},{"name":"INFOMASK_STRING_FIX","features":[621]},{"name":"INIT_COMPFORM","features":[621]},{"name":"INIT_CONVERSION","features":[621]},{"name":"INIT_LOGFONT","features":[621]},{"name":"INIT_SENTENCE","features":[621]},{"name":"INIT_SOFTKBDPOS","features":[621]},{"name":"INIT_STATUSWNDPOS","features":[621]},{"name":"INPUTCONTEXT","features":[305,316,621]},{"name":"IPACFG_CATEGORY","features":[621]},{"name":"IPACFG_HELP","features":[621]},{"name":"IPACFG_LANG","features":[621]},{"name":"IPACFG_NONE","features":[621]},{"name":"IPACFG_PROPERTY","features":[621]},{"name":"IPACFG_TITLE","features":[621]},{"name":"IPACFG_TITLEFONTFACE","features":[621]},{"name":"IPACID_CHARLIST","features":[621]},{"name":"IPACID_EPWING","features":[621]},{"name":"IPACID_HANDWRITING","features":[621]},{"name":"IPACID_NONE","features":[621]},{"name":"IPACID_OCR","features":[621]},{"name":"IPACID_RADICALSEARCH","features":[621]},{"name":"IPACID_SOFTKEY","features":[621]},{"name":"IPACID_STROKESEARCH","features":[621]},{"name":"IPACID_SYMBOLSEARCH","features":[621]},{"name":"IPACID_USER","features":[621]},{"name":"IPACID_VOICE","features":[621]},{"name":"IPAWS_ENABLED","features":[621]},{"name":"IPAWS_HORIZONTALFIXED","features":[621]},{"name":"IPAWS_MAXHEIGHTFIXED","features":[621]},{"name":"IPAWS_MAXSIZEFIXED","features":[621]},{"name":"IPAWS_MAXWIDTHFIXED","features":[621]},{"name":"IPAWS_MINHEIGHTFIXED","features":[621]},{"name":"IPAWS_MINSIZEFIXED","features":[621]},{"name":"IPAWS_MINWIDTHFIXED","features":[621]},{"name":"IPAWS_SIZEFIXED","features":[621]},{"name":"IPAWS_SIZINGNOTIFY","features":[621]},{"name":"IPAWS_VERTICALFIXED","features":[621]},{"name":"ISC_SHOWUIALL","features":[621]},{"name":"ISC_SHOWUIALLCANDIDATEWINDOW","features":[621]},{"name":"ISC_SHOWUICANDIDATEWINDOW","features":[621]},{"name":"ISC_SHOWUICOMPOSITIONWINDOW","features":[621]},{"name":"ISC_SHOWUIGUIDELINE","features":[621]},{"name":"ImmAssociateContext","features":[305,621]},{"name":"ImmAssociateContextEx","features":[305,621]},{"name":"ImmConfigureIMEA","features":[305,621,622]},{"name":"ImmConfigureIMEW","features":[305,621,622]},{"name":"ImmCreateContext","features":[621]},{"name":"ImmCreateIMCC","features":[621]},{"name":"ImmCreateSoftKeyboard","features":[305,621]},{"name":"ImmDestroyContext","features":[305,621]},{"name":"ImmDestroyIMCC","features":[621]},{"name":"ImmDestroySoftKeyboard","features":[305,621]},{"name":"ImmDisableIME","features":[305,621]},{"name":"ImmDisableLegacyIME","features":[305,621]},{"name":"ImmDisableTextFrameService","features":[305,621]},{"name":"ImmEnumInputContext","features":[305,621]},{"name":"ImmEnumRegisterWordA","features":[621,622]},{"name":"ImmEnumRegisterWordW","features":[621,622]},{"name":"ImmEscapeA","features":[305,621,622]},{"name":"ImmEscapeW","features":[305,621,622]},{"name":"ImmGenerateMessage","features":[305,621]},{"name":"ImmGetCandidateListA","features":[621]},{"name":"ImmGetCandidateListCountA","features":[621]},{"name":"ImmGetCandidateListCountW","features":[621]},{"name":"ImmGetCandidateListW","features":[621]},{"name":"ImmGetCandidateWindow","features":[305,621]},{"name":"ImmGetCompositionFontA","features":[305,316,621]},{"name":"ImmGetCompositionFontW","features":[305,316,621]},{"name":"ImmGetCompositionStringA","features":[621]},{"name":"ImmGetCompositionStringW","features":[621]},{"name":"ImmGetCompositionWindow","features":[305,621]},{"name":"ImmGetContext","features":[305,621]},{"name":"ImmGetConversionListA","features":[621,622]},{"name":"ImmGetConversionListW","features":[621,622]},{"name":"ImmGetConversionStatus","features":[305,621]},{"name":"ImmGetDefaultIMEWnd","features":[305,621]},{"name":"ImmGetDescriptionA","features":[621,622]},{"name":"ImmGetDescriptionW","features":[621,622]},{"name":"ImmGetGuideLineA","features":[621]},{"name":"ImmGetGuideLineW","features":[621]},{"name":"ImmGetHotKey","features":[305,621,622]},{"name":"ImmGetIMCCLockCount","features":[621]},{"name":"ImmGetIMCCSize","features":[621]},{"name":"ImmGetIMCLockCount","features":[621]},{"name":"ImmGetIMEFileNameA","features":[621,622]},{"name":"ImmGetIMEFileNameW","features":[621,622]},{"name":"ImmGetImeMenuItemsA","features":[316,621]},{"name":"ImmGetImeMenuItemsW","features":[316,621]},{"name":"ImmGetOpenStatus","features":[305,621]},{"name":"ImmGetProperty","features":[621,622]},{"name":"ImmGetRegisterWordStyleA","features":[621,622]},{"name":"ImmGetRegisterWordStyleW","features":[621,622]},{"name":"ImmGetStatusWindowPos","features":[305,621]},{"name":"ImmGetVirtualKey","features":[305,621]},{"name":"ImmInstallIMEA","features":[621,622]},{"name":"ImmInstallIMEW","features":[621,622]},{"name":"ImmIsIME","features":[305,621,622]},{"name":"ImmIsUIMessageA","features":[305,621]},{"name":"ImmIsUIMessageW","features":[305,621]},{"name":"ImmLockIMC","features":[305,316,621]},{"name":"ImmLockIMCC","features":[621]},{"name":"ImmNotifyIME","features":[305,621]},{"name":"ImmReSizeIMCC","features":[621]},{"name":"ImmRegisterWordA","features":[305,621,622]},{"name":"ImmRegisterWordW","features":[305,621,622]},{"name":"ImmReleaseContext","features":[305,621]},{"name":"ImmRequestMessageA","features":[305,621]},{"name":"ImmRequestMessageW","features":[305,621]},{"name":"ImmSetCandidateWindow","features":[305,621]},{"name":"ImmSetCompositionFontA","features":[305,316,621]},{"name":"ImmSetCompositionFontW","features":[305,316,621]},{"name":"ImmSetCompositionStringA","features":[305,621]},{"name":"ImmSetCompositionStringW","features":[305,621]},{"name":"ImmSetCompositionWindow","features":[305,621]},{"name":"ImmSetConversionStatus","features":[305,621]},{"name":"ImmSetHotKey","features":[305,621,622]},{"name":"ImmSetOpenStatus","features":[305,621]},{"name":"ImmSetStatusWindowPos","features":[305,621]},{"name":"ImmShowSoftKeyboard","features":[305,621]},{"name":"ImmSimulateHotKey","features":[305,621]},{"name":"ImmUnlockIMC","features":[305,621]},{"name":"ImmUnlockIMCC","features":[305,621]},{"name":"ImmUnregisterWordA","features":[305,621,622]},{"name":"ImmUnregisterWordW","features":[305,621,622]},{"name":"JPOS_1DAN","features":[621]},{"name":"JPOS_4DAN_HA","features":[621]},{"name":"JPOS_5DAN_AWA","features":[621]},{"name":"JPOS_5DAN_AWAUON","features":[621]},{"name":"JPOS_5DAN_BA","features":[621]},{"name":"JPOS_5DAN_GA","features":[621]},{"name":"JPOS_5DAN_KA","features":[621]},{"name":"JPOS_5DAN_KASOKUON","features":[621]},{"name":"JPOS_5DAN_MA","features":[621]},{"name":"JPOS_5DAN_NA","features":[621]},{"name":"JPOS_5DAN_RA","features":[621]},{"name":"JPOS_5DAN_RAHEN","features":[621]},{"name":"JPOS_5DAN_SA","features":[621]},{"name":"JPOS_5DAN_TA","features":[621]},{"name":"JPOS_BUPPIN","features":[621]},{"name":"JPOS_CHIMEI","features":[621]},{"name":"JPOS_CHIMEI_EKI","features":[621]},{"name":"JPOS_CHIMEI_GUN","features":[621]},{"name":"JPOS_CHIMEI_KEN","features":[621]},{"name":"JPOS_CHIMEI_KU","features":[621]},{"name":"JPOS_CHIMEI_KUNI","features":[621]},{"name":"JPOS_CHIMEI_MACHI","features":[621]},{"name":"JPOS_CHIMEI_MURA","features":[621]},{"name":"JPOS_CHIMEI_SHI","features":[621]},{"name":"JPOS_CLOSEBRACE","features":[621]},{"name":"JPOS_DAIMEISHI","features":[621]},{"name":"JPOS_DAIMEISHI_NINSHOU","features":[621]},{"name":"JPOS_DAIMEISHI_SHIJI","features":[621]},{"name":"JPOS_DOKURITSUGO","features":[621]},{"name":"JPOS_EIJI","features":[621]},{"name":"JPOS_FUKUSHI","features":[621]},{"name":"JPOS_FUKUSHI_DA","features":[621]},{"name":"JPOS_FUKUSHI_NANO","features":[621]},{"name":"JPOS_FUKUSHI_NI","features":[621]},{"name":"JPOS_FUKUSHI_SAHEN","features":[621]},{"name":"JPOS_FUKUSHI_TO","features":[621]},{"name":"JPOS_FUKUSHI_TOSURU","features":[621]},{"name":"JPOS_FUTEIGO","features":[621]},{"name":"JPOS_HUKUSIMEISHI","features":[621]},{"name":"JPOS_JINMEI","features":[621]},{"name":"JPOS_JINMEI_MEI","features":[621]},{"name":"JPOS_JINMEI_SEI","features":[621]},{"name":"JPOS_KANDOUSHI","features":[621]},{"name":"JPOS_KANJI","features":[621]},{"name":"JPOS_KANYOUKU","features":[621]},{"name":"JPOS_KAZU","features":[621]},{"name":"JPOS_KAZU_SURYOU","features":[621]},{"name":"JPOS_KAZU_SUSHI","features":[621]},{"name":"JPOS_KEIDOU","features":[621]},{"name":"JPOS_KEIDOU_GARU","features":[621]},{"name":"JPOS_KEIDOU_NO","features":[621]},{"name":"JPOS_KEIDOU_TARU","features":[621]},{"name":"JPOS_KEIYOU","features":[621]},{"name":"JPOS_KEIYOU_GARU","features":[621]},{"name":"JPOS_KEIYOU_GE","features":[621]},{"name":"JPOS_KEIYOU_ME","features":[621]},{"name":"JPOS_KEIYOU_U","features":[621]},{"name":"JPOS_KEIYOU_YUU","features":[621]},{"name":"JPOS_KENCHIKU","features":[621]},{"name":"JPOS_KIGOU","features":[621]},{"name":"JPOS_KURU_KI","features":[621]},{"name":"JPOS_KURU_KITA","features":[621]},{"name":"JPOS_KURU_KITARA","features":[621]},{"name":"JPOS_KURU_KITARI","features":[621]},{"name":"JPOS_KURU_KITAROU","features":[621]},{"name":"JPOS_KURU_KITE","features":[621]},{"name":"JPOS_KURU_KO","features":[621]},{"name":"JPOS_KURU_KOI","features":[621]},{"name":"JPOS_KURU_KOYOU","features":[621]},{"name":"JPOS_KURU_KUREBA","features":[621]},{"name":"JPOS_KUTEN","features":[621]},{"name":"JPOS_MEISA_KEIDOU","features":[621]},{"name":"JPOS_MEISHI_FUTSU","features":[621]},{"name":"JPOS_MEISHI_KEIYOUDOUSHI","features":[621]},{"name":"JPOS_MEISHI_SAHEN","features":[621]},{"name":"JPOS_MEISHI_ZAHEN","features":[621]},{"name":"JPOS_OPENBRACE","features":[621]},{"name":"JPOS_RENTAISHI","features":[621]},{"name":"JPOS_RENTAISHI_SHIJI","features":[621]},{"name":"JPOS_RENYOU_SETSUBI","features":[621]},{"name":"JPOS_SETSUBI","features":[621]},{"name":"JPOS_SETSUBI_CHIMEI","features":[621]},{"name":"JPOS_SETSUBI_CHOU","features":[621]},{"name":"JPOS_SETSUBI_CHU","features":[621]},{"name":"JPOS_SETSUBI_DONO","features":[621]},{"name":"JPOS_SETSUBI_EKI","features":[621]},{"name":"JPOS_SETSUBI_FU","features":[621]},{"name":"JPOS_SETSUBI_FUKUSU","features":[621]},{"name":"JPOS_SETSUBI_GUN","features":[621]},{"name":"JPOS_SETSUBI_JIKAN","features":[621]},{"name":"JPOS_SETSUBI_JIKANPLUS","features":[621]},{"name":"JPOS_SETSUBI_JINMEI","features":[621]},{"name":"JPOS_SETSUBI_JOSUSHI","features":[621]},{"name":"JPOS_SETSUBI_JOSUSHIPLUS","features":[621]},{"name":"JPOS_SETSUBI_KA","features":[621]},{"name":"JPOS_SETSUBI_KATA","features":[621]},{"name":"JPOS_SETSUBI_KEN","features":[621]},{"name":"JPOS_SETSUBI_KENCHIKU","features":[621]},{"name":"JPOS_SETSUBI_KU","features":[621]},{"name":"JPOS_SETSUBI_KUN","features":[621]},{"name":"JPOS_SETSUBI_KUNI","features":[621]},{"name":"JPOS_SETSUBI_MACHI","features":[621]},{"name":"JPOS_SETSUBI_MEISHIRENDAKU","features":[621]},{"name":"JPOS_SETSUBI_MURA","features":[621]},{"name":"JPOS_SETSUBI_RA","features":[621]},{"name":"JPOS_SETSUBI_RYU","features":[621]},{"name":"JPOS_SETSUBI_SAMA","features":[621]},{"name":"JPOS_SETSUBI_SAN","features":[621]},{"name":"JPOS_SETSUBI_SEI","features":[621]},{"name":"JPOS_SETSUBI_SHAMEI","features":[621]},{"name":"JPOS_SETSUBI_SHI","features":[621]},{"name":"JPOS_SETSUBI_SON","features":[621]},{"name":"JPOS_SETSUBI_SONOTA","features":[621]},{"name":"JPOS_SETSUBI_SOSHIKI","features":[621]},{"name":"JPOS_SETSUBI_TACHI","features":[621]},{"name":"JPOS_SETSUBI_TEINEI","features":[621]},{"name":"JPOS_SETSUBI_TEKI","features":[621]},{"name":"JPOS_SETSUBI_YOU","features":[621]},{"name":"JPOS_SETSUZOKUSHI","features":[621]},{"name":"JPOS_SETTOU","features":[621]},{"name":"JPOS_SETTOU_CHIMEI","features":[621]},{"name":"JPOS_SETTOU_CHOUTAN","features":[621]},{"name":"JPOS_SETTOU_DAISHOU","features":[621]},{"name":"JPOS_SETTOU_FUKU","features":[621]},{"name":"JPOS_SETTOU_JINMEI","features":[621]},{"name":"JPOS_SETTOU_JOSUSHI","features":[621]},{"name":"JPOS_SETTOU_KAKU","features":[621]},{"name":"JPOS_SETTOU_KOUTEI","features":[621]},{"name":"JPOS_SETTOU_MI","features":[621]},{"name":"JPOS_SETTOU_SAI","features":[621]},{"name":"JPOS_SETTOU_SHINKYU","features":[621]},{"name":"JPOS_SETTOU_SONOTA","features":[621]},{"name":"JPOS_SETTOU_TEINEI_GO","features":[621]},{"name":"JPOS_SETTOU_TEINEI_O","features":[621]},{"name":"JPOS_SETTOU_TEINEI_ON","features":[621]},{"name":"JPOS_SHAMEI","features":[621]},{"name":"JPOS_SONOTA","features":[621]},{"name":"JPOS_SOSHIKI","features":[621]},{"name":"JPOS_SURU_SA","features":[621]},{"name":"JPOS_SURU_SE","features":[621]},{"name":"JPOS_SURU_SEYO","features":[621]},{"name":"JPOS_SURU_SI","features":[621]},{"name":"JPOS_SURU_SIATRI","features":[621]},{"name":"JPOS_SURU_SITA","features":[621]},{"name":"JPOS_SURU_SITARA","features":[621]},{"name":"JPOS_SURU_SITAROU","features":[621]},{"name":"JPOS_SURU_SITE","features":[621]},{"name":"JPOS_SURU_SIYOU","features":[621]},{"name":"JPOS_SURU_SUREBA","features":[621]},{"name":"JPOS_TANKANJI","features":[621]},{"name":"JPOS_TANKANJI_KAO","features":[621]},{"name":"JPOS_TANSHUKU","features":[621]},{"name":"JPOS_TOKUSHU_KAHEN","features":[621]},{"name":"JPOS_TOKUSHU_NAHEN","features":[621]},{"name":"JPOS_TOKUSHU_SAHEN","features":[621]},{"name":"JPOS_TOKUSHU_SAHENSURU","features":[621]},{"name":"JPOS_TOKUSHU_ZAHEN","features":[621]},{"name":"JPOS_TOUTEN","features":[621]},{"name":"JPOS_UNDEFINED","features":[621]},{"name":"JPOS_YOKUSEI","features":[621]},{"name":"MAX_APPLETTITLE","features":[621]},{"name":"MAX_FONTFACE","features":[621]},{"name":"MODEBIASMODE_DEFAULT","features":[621]},{"name":"MODEBIASMODE_DIGIT","features":[621]},{"name":"MODEBIASMODE_FILENAME","features":[621]},{"name":"MODEBIASMODE_READING","features":[621]},{"name":"MODEBIAS_GETVALUE","features":[621]},{"name":"MODEBIAS_GETVERSION","features":[621]},{"name":"MODEBIAS_SETVALUE","features":[621]},{"name":"MOD_IGNORE_ALL_MODIFIER","features":[621]},{"name":"MOD_LEFT","features":[621]},{"name":"MOD_ON_KEYUP","features":[621]},{"name":"MOD_RIGHT","features":[621]},{"name":"MORRSLT","features":[621]},{"name":"NI_CHANGECANDIDATELIST","features":[621]},{"name":"NI_CLOSECANDIDATE","features":[621]},{"name":"NI_COMPOSITIONSTR","features":[621]},{"name":"NI_CONTEXTUPDATED","features":[621]},{"name":"NI_FINALIZECONVERSIONRESULT","features":[621]},{"name":"NI_IMEMENUSELECTED","features":[621]},{"name":"NI_OPENCANDIDATE","features":[621]},{"name":"NI_SELECTCANDIDATESTR","features":[621]},{"name":"NI_SETCANDIDATE_PAGESIZE","features":[621]},{"name":"NI_SETCANDIDATE_PAGESTART","features":[621]},{"name":"NOTIFY_IME_ACTION","features":[621]},{"name":"NOTIFY_IME_INDEX","features":[621]},{"name":"PFNLOG","features":[305,621]},{"name":"POSTBL","features":[621]},{"name":"POS_UNDEFINED","features":[621]},{"name":"RECONVERTSTRING","features":[621]},{"name":"RECONVOPT_NONE","features":[621]},{"name":"RECONVOPT_USECANCELNOTIFY","features":[621]},{"name":"REGISTERWORDA","features":[621]},{"name":"REGISTERWORDENUMPROCA","features":[621]},{"name":"REGISTERWORDENUMPROCW","features":[621]},{"name":"REGISTERWORDW","features":[621]},{"name":"RWM_CHGKEYMAP","features":[621]},{"name":"RWM_DOCUMENTFEED","features":[621]},{"name":"RWM_KEYMAP","features":[621]},{"name":"RWM_MODEBIAS","features":[621]},{"name":"RWM_MOUSE","features":[621]},{"name":"RWM_NTFYKEYMAP","features":[621]},{"name":"RWM_QUERYPOSITION","features":[621]},{"name":"RWM_RECONVERT","features":[621]},{"name":"RWM_RECONVERTOPTIONS","features":[621]},{"name":"RWM_RECONVERTREQUEST","features":[621]},{"name":"RWM_SERVICE","features":[621]},{"name":"RWM_SHOWIMEPAD","features":[621]},{"name":"RWM_UIREADY","features":[621]},{"name":"SCS_CAP_COMPSTR","features":[621]},{"name":"SCS_CAP_MAKEREAD","features":[621]},{"name":"SCS_CAP_SETRECONVERTSTRING","features":[621]},{"name":"SCS_CHANGEATTR","features":[621]},{"name":"SCS_CHANGECLAUSE","features":[621]},{"name":"SCS_QUERYRECONVERTSTRING","features":[621]},{"name":"SCS_SETRECONVERTSTRING","features":[621]},{"name":"SCS_SETSTR","features":[621]},{"name":"SELECT_CAP_CONVERSION","features":[621]},{"name":"SELECT_CAP_SENTENCE","features":[621]},{"name":"SET_COMPOSITION_STRING_TYPE","features":[621]},{"name":"SHOWIMEPAD_CATEGORY","features":[621]},{"name":"SHOWIMEPAD_DEFAULT","features":[621]},{"name":"SHOWIMEPAD_GUID","features":[621]},{"name":"SOFTKBDDATA","features":[621]},{"name":"SOFTKEYBOARD_TYPE_C1","features":[621]},{"name":"SOFTKEYBOARD_TYPE_T1","features":[621]},{"name":"STYLEBUFA","features":[621]},{"name":"STYLEBUFW","features":[621]},{"name":"STYLE_DESCRIPTION_SIZE","features":[621]},{"name":"TRANSMSG","features":[305,621]},{"name":"TRANSMSGLIST","features":[305,621]},{"name":"UI_CAP_2700","features":[621]},{"name":"UI_CAP_ROT90","features":[621]},{"name":"UI_CAP_ROTANY","features":[621]},{"name":"UI_CAP_SOFTKBD","features":[621]},{"name":"VERSION_DOCUMENTFEED","features":[621]},{"name":"VERSION_ID_CHINESE_SIMPLIFIED","features":[621]},{"name":"VERSION_ID_CHINESE_TRADITIONAL","features":[621]},{"name":"VERSION_ID_JAPANESE","features":[621]},{"name":"VERSION_ID_KOREAN","features":[621]},{"name":"VERSION_MODEBIAS","features":[621]},{"name":"VERSION_MOUSE_OPERATION","features":[621]},{"name":"VERSION_QUERYPOSITION","features":[621]},{"name":"VERSION_RECONVERSION","features":[621]},{"name":"WDD","features":[621]},{"name":"cbCommentMax","features":[621]},{"name":"fpCreateIFECommonInstanceType","features":[621]},{"name":"fpCreateIFEDictionaryInstanceType","features":[621]},{"name":"fpCreateIFELanguageInstanceType","features":[621]},{"name":"szImeChina","features":[621]},{"name":"szImeJapan","features":[621]},{"name":"szImeKorea","features":[621]},{"name":"szImeTaiwan","features":[621]},{"name":"wchPrivate1","features":[621]}],"658":[{"name":"IInkCommitRequestHandler","features":[623]},{"name":"IInkD2DRenderer","features":[623]},{"name":"IInkD2DRenderer2","features":[623]},{"name":"IInkDesktopHost","features":[623]},{"name":"IInkHostWorkItem","features":[623]},{"name":"IInkPresenterDesktop","features":[623]},{"name":"INK_HIGH_CONTRAST_ADJUSTMENT","features":[623]},{"name":"InkD2DRenderer","features":[623]},{"name":"InkDesktopHost","features":[623]},{"name":"USE_ORIGINAL_COLORS","features":[623]},{"name":"USE_SYSTEM_COLORS","features":[623]},{"name":"USE_SYSTEM_COLORS_WHEN_NECESSARY","features":[623]}],"659":[{"name":"ACTIVATE_KEYBOARD_LAYOUT_FLAGS","features":[622]},{"name":"ACUTE","features":[622]},{"name":"AX_KBD_DESKTOP_TYPE","features":[622]},{"name":"ActivateKeyboardLayout","features":[622]},{"name":"BREVE","features":[622]},{"name":"BlockInput","features":[305,622]},{"name":"CAPLOK","features":[622]},{"name":"CAPLOKALTGR","features":[622]},{"name":"CEDILLA","features":[622]},{"name":"CIRCUMFLEX","features":[622]},{"name":"DEADKEY","features":[622]},{"name":"DEC_KBD_ANSI_LAYOUT_TYPE","features":[622]},{"name":"DEC_KBD_JIS_LAYOUT_TYPE","features":[622]},{"name":"DIARESIS","features":[622]},{"name":"DIARESIS_TONOS","features":[622]},{"name":"DKF_DEAD","features":[622]},{"name":"DONTCARE_BIT","features":[622]},{"name":"DOT_ABOVE","features":[622]},{"name":"DOUBLE_ACUTE","features":[622]},{"name":"DragDetect","features":[305,622]},{"name":"EXTENDED_BIT","features":[622]},{"name":"EnableWindow","features":[305,622]},{"name":"FAKE_KEYSTROKE","features":[622]},{"name":"FMR_KBD_JIS_TYPE","features":[622]},{"name":"FMR_KBD_OASYS_TYPE","features":[622]},{"name":"FMV_KBD_OASYS_TYPE","features":[622]},{"name":"GET_MOUSE_MOVE_POINTS_EX_RESOLUTION","features":[622]},{"name":"GMMP_USE_DISPLAY_POINTS","features":[622]},{"name":"GMMP_USE_HIGH_RESOLUTION_POINTS","features":[622]},{"name":"GRAVE","features":[622]},{"name":"GRPSELTAP","features":[622]},{"name":"GetActiveWindow","features":[305,622]},{"name":"GetAsyncKeyState","features":[622]},{"name":"GetCapture","features":[305,622]},{"name":"GetDoubleClickTime","features":[622]},{"name":"GetFocus","features":[305,622]},{"name":"GetKBCodePage","features":[622]},{"name":"GetKeyNameTextA","features":[622]},{"name":"GetKeyNameTextW","features":[622]},{"name":"GetKeyState","features":[622]},{"name":"GetKeyboardLayout","features":[622]},{"name":"GetKeyboardLayoutList","features":[622]},{"name":"GetKeyboardLayoutNameA","features":[305,622]},{"name":"GetKeyboardLayoutNameW","features":[305,622]},{"name":"GetKeyboardState","features":[305,622]},{"name":"GetKeyboardType","features":[622]},{"name":"GetLastInputInfo","features":[305,622]},{"name":"GetMouseMovePointsEx","features":[622]},{"name":"HACEK","features":[622]},{"name":"HARDWAREINPUT","features":[622]},{"name":"HKL","features":[622]},{"name":"HOOK_ABOVE","features":[622]},{"name":"HOT_KEY_MODIFIERS","features":[622]},{"name":"INPUT","features":[622]},{"name":"INPUT_HARDWARE","features":[622]},{"name":"INPUT_KEYBOARD","features":[622]},{"name":"INPUT_MOUSE","features":[622]},{"name":"INPUT_TYPE","features":[622]},{"name":"IsWindowEnabled","features":[305,622]},{"name":"KANALOK","features":[622]},{"name":"KBDALT","features":[622]},{"name":"KBDBASE","features":[622]},{"name":"KBDCTRL","features":[622]},{"name":"KBDGRPSELTAP","features":[622]},{"name":"KBDKANA","features":[622]},{"name":"KBDLOYA","features":[622]},{"name":"KBDNLSTABLES","features":[622]},{"name":"KBDNLS_ALPHANUM","features":[622]},{"name":"KBDNLS_CODEINPUT","features":[622]},{"name":"KBDNLS_CONV_OR_NONCONV","features":[622]},{"name":"KBDNLS_HELP_OR_END","features":[622]},{"name":"KBDNLS_HIRAGANA","features":[622]},{"name":"KBDNLS_HOME_OR_CLEAR","features":[622]},{"name":"KBDNLS_INDEX_ALT","features":[622]},{"name":"KBDNLS_INDEX_NORMAL","features":[622]},{"name":"KBDNLS_KANAEVENT","features":[622]},{"name":"KBDNLS_KANALOCK","features":[622]},{"name":"KBDNLS_KATAKANA","features":[622]},{"name":"KBDNLS_NOEVENT","features":[622]},{"name":"KBDNLS_NULL","features":[622]},{"name":"KBDNLS_NUMPAD","features":[622]},{"name":"KBDNLS_ROMAN","features":[622]},{"name":"KBDNLS_SBCSDBCS","features":[622]},{"name":"KBDNLS_SEND_BASE_VK","features":[622]},{"name":"KBDNLS_SEND_PARAM_VK","features":[622]},{"name":"KBDNLS_TYPE_NORMAL","features":[622]},{"name":"KBDNLS_TYPE_NULL","features":[622]},{"name":"KBDNLS_TYPE_TOGGLE","features":[622]},{"name":"KBDROYA","features":[622]},{"name":"KBDSHIFT","features":[622]},{"name":"KBDTABLES","features":[622]},{"name":"KBDTABLE_DESC","features":[622]},{"name":"KBDTABLE_MULTI","features":[622]},{"name":"KBDTABLE_MULTI_MAX","features":[622]},{"name":"KBD_TYPE","features":[622]},{"name":"KBD_TYPE_INFO","features":[622]},{"name":"KBD_VERSION","features":[622]},{"name":"KEYBDINPUT","features":[622]},{"name":"KEYBD_EVENT_FLAGS","features":[622]},{"name":"KEYBOARD_TYPE_GENERIC_101","features":[622]},{"name":"KEYBOARD_TYPE_JAPAN","features":[622]},{"name":"KEYBOARD_TYPE_KOREA","features":[622]},{"name":"KEYBOARD_TYPE_UNKNOWN","features":[622]},{"name":"KEYEVENTF_EXTENDEDKEY","features":[622]},{"name":"KEYEVENTF_KEYUP","features":[622]},{"name":"KEYEVENTF_SCANCODE","features":[622]},{"name":"KEYEVENTF_UNICODE","features":[622]},{"name":"KLF_ACTIVATE","features":[622]},{"name":"KLF_NOTELLSHELL","features":[622]},{"name":"KLF_REORDER","features":[622]},{"name":"KLF_REPLACELANG","features":[622]},{"name":"KLF_RESET","features":[622]},{"name":"KLF_SETFORPROCESS","features":[622]},{"name":"KLF_SHIFTLOCK","features":[622]},{"name":"KLF_SUBSTITUTE_OK","features":[622]},{"name":"KLLF_ALTGR","features":[622]},{"name":"KLLF_GLOBAL_ATTRS","features":[622]},{"name":"KLLF_LRM_RLM","features":[622]},{"name":"KLLF_SHIFTLOCK","features":[622]},{"name":"LASTINPUTINFO","features":[622]},{"name":"LIGATURE1","features":[622]},{"name":"LIGATURE2","features":[622]},{"name":"LIGATURE3","features":[622]},{"name":"LIGATURE4","features":[622]},{"name":"LIGATURE5","features":[622]},{"name":"LoadKeyboardLayoutA","features":[622]},{"name":"LoadKeyboardLayoutW","features":[622]},{"name":"MACRON","features":[622]},{"name":"MAPVK_VK_TO_CHAR","features":[622]},{"name":"MAPVK_VK_TO_VSC","features":[622]},{"name":"MAPVK_VK_TO_VSC_EX","features":[622]},{"name":"MAPVK_VSC_TO_VK","features":[622]},{"name":"MAPVK_VSC_TO_VK_EX","features":[622]},{"name":"MAP_VIRTUAL_KEY_TYPE","features":[622]},{"name":"MICROSOFT_KBD_001_TYPE","features":[622]},{"name":"MICROSOFT_KBD_002_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101A_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101B_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101C_TYPE","features":[622]},{"name":"MICROSOFT_KBD_101_TYPE","features":[622]},{"name":"MICROSOFT_KBD_103_TYPE","features":[622]},{"name":"MICROSOFT_KBD_106_TYPE","features":[622]},{"name":"MICROSOFT_KBD_AX_TYPE","features":[622]},{"name":"MICROSOFT_KBD_FUNC","features":[622]},{"name":"MODIFIERS","features":[622]},{"name":"MOD_ALT","features":[622]},{"name":"MOD_CONTROL","features":[622]},{"name":"MOD_NOREPEAT","features":[622]},{"name":"MOD_SHIFT","features":[622]},{"name":"MOD_WIN","features":[622]},{"name":"MOUSEEVENTF_ABSOLUTE","features":[622]},{"name":"MOUSEEVENTF_HWHEEL","features":[622]},{"name":"MOUSEEVENTF_LEFTDOWN","features":[622]},{"name":"MOUSEEVENTF_LEFTUP","features":[622]},{"name":"MOUSEEVENTF_MIDDLEDOWN","features":[622]},{"name":"MOUSEEVENTF_MIDDLEUP","features":[622]},{"name":"MOUSEEVENTF_MOVE","features":[622]},{"name":"MOUSEEVENTF_MOVE_NOCOALESCE","features":[622]},{"name":"MOUSEEVENTF_RIGHTDOWN","features":[622]},{"name":"MOUSEEVENTF_RIGHTUP","features":[622]},{"name":"MOUSEEVENTF_VIRTUALDESK","features":[622]},{"name":"MOUSEEVENTF_WHEEL","features":[622]},{"name":"MOUSEEVENTF_XDOWN","features":[622]},{"name":"MOUSEEVENTF_XUP","features":[622]},{"name":"MOUSEINPUT","features":[622]},{"name":"MOUSEMOVEPOINT","features":[622]},{"name":"MOUSE_EVENT_FLAGS","features":[622]},{"name":"MapVirtualKeyA","features":[622]},{"name":"MapVirtualKeyExA","features":[622]},{"name":"MapVirtualKeyExW","features":[622]},{"name":"MapVirtualKeyW","features":[622]},{"name":"NEC_KBD_106_TYPE","features":[622]},{"name":"NEC_KBD_H_MODE_TYPE","features":[622]},{"name":"NEC_KBD_LAPTOP_TYPE","features":[622]},{"name":"NEC_KBD_NORMAL_TYPE","features":[622]},{"name":"NEC_KBD_N_MODE_TYPE","features":[622]},{"name":"NLSKBD_INFO_ACCESSIBILITY_KEYMAP","features":[622]},{"name":"NLSKBD_INFO_EMURATE_101_KEYBOARD","features":[622]},{"name":"NLSKBD_INFO_EMURATE_106_KEYBOARD","features":[622]},{"name":"NLSKBD_INFO_SEND_IME_NOTIFICATION","features":[622]},{"name":"NLSKBD_OEM_AX","features":[622]},{"name":"NLSKBD_OEM_DEC","features":[622]},{"name":"NLSKBD_OEM_EPSON","features":[622]},{"name":"NLSKBD_OEM_FUJITSU","features":[622]},{"name":"NLSKBD_OEM_IBM","features":[622]},{"name":"NLSKBD_OEM_MATSUSHITA","features":[622]},{"name":"NLSKBD_OEM_MICROSOFT","features":[622]},{"name":"NLSKBD_OEM_NEC","features":[622]},{"name":"NLSKBD_OEM_TOSHIBA","features":[622]},{"name":"OGONEK","features":[622]},{"name":"OVERSCORE","features":[622]},{"name":"OemKeyScan","features":[622]},{"name":"RING","features":[622]},{"name":"RegisterHotKey","features":[305,622]},{"name":"ReleaseCapture","features":[305,622]},{"name":"SCANCODE_ALT","features":[622]},{"name":"SCANCODE_CTRL","features":[622]},{"name":"SCANCODE_LSHIFT","features":[622]},{"name":"SCANCODE_LWIN","features":[622]},{"name":"SCANCODE_NUMPAD_FIRST","features":[622]},{"name":"SCANCODE_NUMPAD_LAST","features":[622]},{"name":"SCANCODE_RSHIFT","features":[622]},{"name":"SCANCODE_RWIN","features":[622]},{"name":"SCANCODE_THAI_LAYOUT_TOGGLE","features":[622]},{"name":"SGCAPS","features":[622]},{"name":"SHFT_INVALID","features":[622]},{"name":"SendInput","features":[622]},{"name":"SetActiveWindow","features":[305,622]},{"name":"SetCapture","features":[305,622]},{"name":"SetDoubleClickTime","features":[305,622]},{"name":"SetFocus","features":[305,622]},{"name":"SetKeyboardState","features":[305,622]},{"name":"SwapMouseButton","features":[305,622]},{"name":"TILDE","features":[622]},{"name":"TME_CANCEL","features":[622]},{"name":"TME_HOVER","features":[622]},{"name":"TME_LEAVE","features":[622]},{"name":"TME_NONCLIENT","features":[622]},{"name":"TME_QUERY","features":[622]},{"name":"TONOS","features":[622]},{"name":"TOSHIBA_KBD_DESKTOP_TYPE","features":[622]},{"name":"TOSHIBA_KBD_LAPTOP_TYPE","features":[622]},{"name":"TRACKMOUSEEVENT","features":[305,622]},{"name":"TRACKMOUSEEVENT_FLAGS","features":[622]},{"name":"ToAscii","features":[622]},{"name":"ToAsciiEx","features":[622]},{"name":"ToUnicode","features":[622]},{"name":"ToUnicodeEx","features":[622]},{"name":"TrackMouseEvent","features":[305,622]},{"name":"UMLAUT","features":[622]},{"name":"UnloadKeyboardLayout","features":[305,622]},{"name":"UnregisterHotKey","features":[305,622]},{"name":"VIRTUAL_KEY","features":[622]},{"name":"VK_0","features":[622]},{"name":"VK_1","features":[622]},{"name":"VK_2","features":[622]},{"name":"VK_3","features":[622]},{"name":"VK_4","features":[622]},{"name":"VK_5","features":[622]},{"name":"VK_6","features":[622]},{"name":"VK_7","features":[622]},{"name":"VK_8","features":[622]},{"name":"VK_9","features":[622]},{"name":"VK_A","features":[622]},{"name":"VK_ABNT_C1","features":[622]},{"name":"VK_ABNT_C2","features":[622]},{"name":"VK_ACCEPT","features":[622]},{"name":"VK_ADD","features":[622]},{"name":"VK_APPS","features":[622]},{"name":"VK_ATTN","features":[622]},{"name":"VK_B","features":[622]},{"name":"VK_BACK","features":[622]},{"name":"VK_BROWSER_BACK","features":[622]},{"name":"VK_BROWSER_FAVORITES","features":[622]},{"name":"VK_BROWSER_FORWARD","features":[622]},{"name":"VK_BROWSER_HOME","features":[622]},{"name":"VK_BROWSER_REFRESH","features":[622]},{"name":"VK_BROWSER_SEARCH","features":[622]},{"name":"VK_BROWSER_STOP","features":[622]},{"name":"VK_C","features":[622]},{"name":"VK_CANCEL","features":[622]},{"name":"VK_CAPITAL","features":[622]},{"name":"VK_CLEAR","features":[622]},{"name":"VK_CONTROL","features":[622]},{"name":"VK_CONVERT","features":[622]},{"name":"VK_CRSEL","features":[622]},{"name":"VK_D","features":[622]},{"name":"VK_DBE_ALPHANUMERIC","features":[622]},{"name":"VK_DBE_CODEINPUT","features":[622]},{"name":"VK_DBE_DBCSCHAR","features":[622]},{"name":"VK_DBE_DETERMINESTRING","features":[622]},{"name":"VK_DBE_ENTERDLGCONVERSIONMODE","features":[622]},{"name":"VK_DBE_ENTERIMECONFIGMODE","features":[622]},{"name":"VK_DBE_ENTERWORDREGISTERMODE","features":[622]},{"name":"VK_DBE_FLUSHSTRING","features":[622]},{"name":"VK_DBE_HIRAGANA","features":[622]},{"name":"VK_DBE_KATAKANA","features":[622]},{"name":"VK_DBE_NOCODEINPUT","features":[622]},{"name":"VK_DBE_NOROMAN","features":[622]},{"name":"VK_DBE_ROMAN","features":[622]},{"name":"VK_DBE_SBCSCHAR","features":[622]},{"name":"VK_DECIMAL","features":[622]},{"name":"VK_DELETE","features":[622]},{"name":"VK_DIVIDE","features":[622]},{"name":"VK_DOWN","features":[622]},{"name":"VK_E","features":[622]},{"name":"VK_END","features":[622]},{"name":"VK_EREOF","features":[622]},{"name":"VK_ESCAPE","features":[622]},{"name":"VK_EXECUTE","features":[622]},{"name":"VK_EXSEL","features":[622]},{"name":"VK_F","features":[622]},{"name":"VK_F","features":[622]},{"name":"VK_F1","features":[622]},{"name":"VK_F10","features":[622]},{"name":"VK_F11","features":[622]},{"name":"VK_F12","features":[622]},{"name":"VK_F13","features":[622]},{"name":"VK_F14","features":[622]},{"name":"VK_F15","features":[622]},{"name":"VK_F16","features":[622]},{"name":"VK_F17","features":[622]},{"name":"VK_F18","features":[622]},{"name":"VK_F19","features":[622]},{"name":"VK_F2","features":[622]},{"name":"VK_F20","features":[622]},{"name":"VK_F21","features":[622]},{"name":"VK_F22","features":[622]},{"name":"VK_F23","features":[622]},{"name":"VK_F24","features":[622]},{"name":"VK_F3","features":[622]},{"name":"VK_F4","features":[622]},{"name":"VK_F5","features":[622]},{"name":"VK_F6","features":[622]},{"name":"VK_F7","features":[622]},{"name":"VK_F8","features":[622]},{"name":"VK_F9","features":[622]},{"name":"VK_FINAL","features":[622]},{"name":"VK_FPARAM","features":[622]},{"name":"VK_G","features":[622]},{"name":"VK_GAMEPAD_A","features":[622]},{"name":"VK_GAMEPAD_B","features":[622]},{"name":"VK_GAMEPAD_DPAD_DOWN","features":[622]},{"name":"VK_GAMEPAD_DPAD_LEFT","features":[622]},{"name":"VK_GAMEPAD_DPAD_RIGHT","features":[622]},{"name":"VK_GAMEPAD_DPAD_UP","features":[622]},{"name":"VK_GAMEPAD_LEFT_SHOULDER","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_BUTTON","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_DOWN","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_LEFT","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_RIGHT","features":[622]},{"name":"VK_GAMEPAD_LEFT_THUMBSTICK_UP","features":[622]},{"name":"VK_GAMEPAD_LEFT_TRIGGER","features":[622]},{"name":"VK_GAMEPAD_MENU","features":[622]},{"name":"VK_GAMEPAD_RIGHT_SHOULDER","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_BUTTON","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_DOWN","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_LEFT","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_RIGHT","features":[622]},{"name":"VK_GAMEPAD_RIGHT_THUMBSTICK_UP","features":[622]},{"name":"VK_GAMEPAD_RIGHT_TRIGGER","features":[622]},{"name":"VK_GAMEPAD_VIEW","features":[622]},{"name":"VK_GAMEPAD_X","features":[622]},{"name":"VK_GAMEPAD_Y","features":[622]},{"name":"VK_H","features":[622]},{"name":"VK_HANGEUL","features":[622]},{"name":"VK_HANGUL","features":[622]},{"name":"VK_HANJA","features":[622]},{"name":"VK_HELP","features":[622]},{"name":"VK_HOME","features":[622]},{"name":"VK_I","features":[622]},{"name":"VK_ICO_00","features":[622]},{"name":"VK_ICO_CLEAR","features":[622]},{"name":"VK_ICO_HELP","features":[622]},{"name":"VK_IME_OFF","features":[622]},{"name":"VK_IME_ON","features":[622]},{"name":"VK_INSERT","features":[622]},{"name":"VK_J","features":[622]},{"name":"VK_JUNJA","features":[622]},{"name":"VK_K","features":[622]},{"name":"VK_KANA","features":[622]},{"name":"VK_KANJI","features":[622]},{"name":"VK_L","features":[622]},{"name":"VK_LAUNCH_APP1","features":[622]},{"name":"VK_LAUNCH_APP2","features":[622]},{"name":"VK_LAUNCH_MAIL","features":[622]},{"name":"VK_LAUNCH_MEDIA_SELECT","features":[622]},{"name":"VK_LBUTTON","features":[622]},{"name":"VK_LCONTROL","features":[622]},{"name":"VK_LEFT","features":[622]},{"name":"VK_LMENU","features":[622]},{"name":"VK_LSHIFT","features":[622]},{"name":"VK_LWIN","features":[622]},{"name":"VK_M","features":[622]},{"name":"VK_MBUTTON","features":[622]},{"name":"VK_MEDIA_NEXT_TRACK","features":[622]},{"name":"VK_MEDIA_PLAY_PAUSE","features":[622]},{"name":"VK_MEDIA_PREV_TRACK","features":[622]},{"name":"VK_MEDIA_STOP","features":[622]},{"name":"VK_MENU","features":[622]},{"name":"VK_MODECHANGE","features":[622]},{"name":"VK_MULTIPLY","features":[622]},{"name":"VK_N","features":[622]},{"name":"VK_NAVIGATION_ACCEPT","features":[622]},{"name":"VK_NAVIGATION_CANCEL","features":[622]},{"name":"VK_NAVIGATION_DOWN","features":[622]},{"name":"VK_NAVIGATION_LEFT","features":[622]},{"name":"VK_NAVIGATION_MENU","features":[622]},{"name":"VK_NAVIGATION_RIGHT","features":[622]},{"name":"VK_NAVIGATION_UP","features":[622]},{"name":"VK_NAVIGATION_VIEW","features":[622]},{"name":"VK_NEXT","features":[622]},{"name":"VK_NONAME","features":[622]},{"name":"VK_NONCONVERT","features":[622]},{"name":"VK_NUMLOCK","features":[622]},{"name":"VK_NUMPAD0","features":[622]},{"name":"VK_NUMPAD1","features":[622]},{"name":"VK_NUMPAD2","features":[622]},{"name":"VK_NUMPAD3","features":[622]},{"name":"VK_NUMPAD4","features":[622]},{"name":"VK_NUMPAD5","features":[622]},{"name":"VK_NUMPAD6","features":[622]},{"name":"VK_NUMPAD7","features":[622]},{"name":"VK_NUMPAD8","features":[622]},{"name":"VK_NUMPAD9","features":[622]},{"name":"VK_O","features":[622]},{"name":"VK_OEM_1","features":[622]},{"name":"VK_OEM_102","features":[622]},{"name":"VK_OEM_2","features":[622]},{"name":"VK_OEM_3","features":[622]},{"name":"VK_OEM_4","features":[622]},{"name":"VK_OEM_5","features":[622]},{"name":"VK_OEM_6","features":[622]},{"name":"VK_OEM_7","features":[622]},{"name":"VK_OEM_8","features":[622]},{"name":"VK_OEM_ATTN","features":[622]},{"name":"VK_OEM_AUTO","features":[622]},{"name":"VK_OEM_AX","features":[622]},{"name":"VK_OEM_BACKTAB","features":[622]},{"name":"VK_OEM_CLEAR","features":[622]},{"name":"VK_OEM_COMMA","features":[622]},{"name":"VK_OEM_COPY","features":[622]},{"name":"VK_OEM_CUSEL","features":[622]},{"name":"VK_OEM_ENLW","features":[622]},{"name":"VK_OEM_FINISH","features":[622]},{"name":"VK_OEM_FJ_JISHO","features":[622]},{"name":"VK_OEM_FJ_LOYA","features":[622]},{"name":"VK_OEM_FJ_MASSHOU","features":[622]},{"name":"VK_OEM_FJ_ROYA","features":[622]},{"name":"VK_OEM_FJ_TOUROKU","features":[622]},{"name":"VK_OEM_JUMP","features":[622]},{"name":"VK_OEM_MINUS","features":[622]},{"name":"VK_OEM_NEC_EQUAL","features":[622]},{"name":"VK_OEM_PA1","features":[622]},{"name":"VK_OEM_PA2","features":[622]},{"name":"VK_OEM_PA3","features":[622]},{"name":"VK_OEM_PERIOD","features":[622]},{"name":"VK_OEM_PLUS","features":[622]},{"name":"VK_OEM_RESET","features":[622]},{"name":"VK_OEM_WSCTRL","features":[622]},{"name":"VK_P","features":[622]},{"name":"VK_PA1","features":[622]},{"name":"VK_PACKET","features":[622]},{"name":"VK_PAUSE","features":[622]},{"name":"VK_PLAY","features":[622]},{"name":"VK_PRINT","features":[622]},{"name":"VK_PRIOR","features":[622]},{"name":"VK_PROCESSKEY","features":[622]},{"name":"VK_Q","features":[622]},{"name":"VK_R","features":[622]},{"name":"VK_RBUTTON","features":[622]},{"name":"VK_RCONTROL","features":[622]},{"name":"VK_RETURN","features":[622]},{"name":"VK_RIGHT","features":[622]},{"name":"VK_RMENU","features":[622]},{"name":"VK_RSHIFT","features":[622]},{"name":"VK_RWIN","features":[622]},{"name":"VK_S","features":[622]},{"name":"VK_SCROLL","features":[622]},{"name":"VK_SELECT","features":[622]},{"name":"VK_SEPARATOR","features":[622]},{"name":"VK_SHIFT","features":[622]},{"name":"VK_SLEEP","features":[622]},{"name":"VK_SNAPSHOT","features":[622]},{"name":"VK_SPACE","features":[622]},{"name":"VK_SUBTRACT","features":[622]},{"name":"VK_T","features":[622]},{"name":"VK_TAB","features":[622]},{"name":"VK_TO_BIT","features":[622]},{"name":"VK_TO_WCHARS1","features":[622]},{"name":"VK_TO_WCHARS10","features":[622]},{"name":"VK_TO_WCHARS2","features":[622]},{"name":"VK_TO_WCHARS3","features":[622]},{"name":"VK_TO_WCHARS4","features":[622]},{"name":"VK_TO_WCHARS5","features":[622]},{"name":"VK_TO_WCHARS6","features":[622]},{"name":"VK_TO_WCHARS7","features":[622]},{"name":"VK_TO_WCHARS8","features":[622]},{"name":"VK_TO_WCHARS9","features":[622]},{"name":"VK_TO_WCHAR_TABLE","features":[622]},{"name":"VK_U","features":[622]},{"name":"VK_UP","features":[622]},{"name":"VK_V","features":[622]},{"name":"VK_VOLUME_DOWN","features":[622]},{"name":"VK_VOLUME_MUTE","features":[622]},{"name":"VK_VOLUME_UP","features":[622]},{"name":"VK_VSC","features":[622]},{"name":"VK_W","features":[622]},{"name":"VK_X","features":[622]},{"name":"VK_XBUTTON1","features":[622]},{"name":"VK_XBUTTON2","features":[622]},{"name":"VK_Y","features":[622]},{"name":"VK_Z","features":[622]},{"name":"VK_ZOOM","features":[622]},{"name":"VK__none_","features":[622]},{"name":"VSC_LPWSTR","features":[622]},{"name":"VSC_VK","features":[622]},{"name":"VkKeyScanA","features":[622]},{"name":"VkKeyScanExA","features":[622]},{"name":"VkKeyScanExW","features":[622]},{"name":"VkKeyScanW","features":[622]},{"name":"WCH_DEAD","features":[622]},{"name":"WCH_LGTR","features":[622]},{"name":"WCH_NONE","features":[622]},{"name":"_TrackMouseEvent","features":[305,622]},{"name":"keybd_event","features":[622]},{"name":"mouse_event","features":[622]},{"name":"wszACUTE","features":[622]},{"name":"wszBREVE","features":[622]},{"name":"wszCEDILLA","features":[622]},{"name":"wszCIRCUMFLEX","features":[622]},{"name":"wszDIARESIS_TONOS","features":[622]},{"name":"wszDOT_ABOVE","features":[622]},{"name":"wszDOUBLE_ACUTE","features":[622]},{"name":"wszGRAVE","features":[622]},{"name":"wszHACEK","features":[622]},{"name":"wszHOOK_ABOVE","features":[622]},{"name":"wszMACRON","features":[622]},{"name":"wszOGONEK","features":[622]},{"name":"wszOVERSCORE","features":[622]},{"name":"wszRING","features":[622]},{"name":"wszTILDE","features":[622]},{"name":"wszTONOS","features":[622]},{"name":"wszUMLAUT","features":[622]}],"660":[{"name":"EnableMouseInPointer","features":[305,617]},{"name":"GetPointerCursorId","features":[305,617]},{"name":"GetPointerDevice","features":[305,316,355,617]},{"name":"GetPointerDeviceCursors","features":[305,355,617]},{"name":"GetPointerDeviceProperties","features":[305,355,617]},{"name":"GetPointerDeviceRects","features":[305,617]},{"name":"GetPointerDevices","features":[305,316,355,617]},{"name":"GetPointerFrameInfo","features":[305,617,367]},{"name":"GetPointerFrameInfoHistory","features":[305,617,367]},{"name":"GetPointerFramePenInfo","features":[305,617,367]},{"name":"GetPointerFramePenInfoHistory","features":[305,617,367]},{"name":"GetPointerFrameTouchInfo","features":[305,617,367]},{"name":"GetPointerFrameTouchInfoHistory","features":[305,617,367]},{"name":"GetPointerInfo","features":[305,617,367]},{"name":"GetPointerInfoHistory","features":[305,617,367]},{"name":"GetPointerInputTransform","features":[305,617]},{"name":"GetPointerPenInfo","features":[305,617,367]},{"name":"GetPointerPenInfoHistory","features":[305,617,367]},{"name":"GetPointerTouchInfo","features":[305,617,367]},{"name":"GetPointerTouchInfoHistory","features":[305,617,367]},{"name":"GetPointerType","features":[305,617,367]},{"name":"GetRawPointerDeviceData","features":[305,355,617]},{"name":"GetUnpredictedMessagePos","features":[617]},{"name":"INPUT_INJECTION_VALUE","features":[617]},{"name":"INPUT_TRANSFORM","features":[617]},{"name":"InitializeTouchInjection","features":[305,617]},{"name":"InjectSyntheticPointerInput","features":[305,355,617,367]},{"name":"InjectTouchInput","features":[305,617,367]},{"name":"IsMouseInPointerEnabled","features":[305,617]},{"name":"POINTER_BUTTON_CHANGE_TYPE","features":[617]},{"name":"POINTER_CHANGE_FIFTHBUTTON_DOWN","features":[617]},{"name":"POINTER_CHANGE_FIFTHBUTTON_UP","features":[617]},{"name":"POINTER_CHANGE_FIRSTBUTTON_DOWN","features":[617]},{"name":"POINTER_CHANGE_FIRSTBUTTON_UP","features":[617]},{"name":"POINTER_CHANGE_FOURTHBUTTON_DOWN","features":[617]},{"name":"POINTER_CHANGE_FOURTHBUTTON_UP","features":[617]},{"name":"POINTER_CHANGE_NONE","features":[617]},{"name":"POINTER_CHANGE_SECONDBUTTON_DOWN","features":[617]},{"name":"POINTER_CHANGE_SECONDBUTTON_UP","features":[617]},{"name":"POINTER_CHANGE_THIRDBUTTON_DOWN","features":[617]},{"name":"POINTER_CHANGE_THIRDBUTTON_UP","features":[617]},{"name":"POINTER_FLAGS","features":[617]},{"name":"POINTER_FLAG_CANCELED","features":[617]},{"name":"POINTER_FLAG_CAPTURECHANGED","features":[617]},{"name":"POINTER_FLAG_CONFIDENCE","features":[617]},{"name":"POINTER_FLAG_DOWN","features":[617]},{"name":"POINTER_FLAG_FIFTHBUTTON","features":[617]},{"name":"POINTER_FLAG_FIRSTBUTTON","features":[617]},{"name":"POINTER_FLAG_FOURTHBUTTON","features":[617]},{"name":"POINTER_FLAG_HASTRANSFORM","features":[617]},{"name":"POINTER_FLAG_HWHEEL","features":[617]},{"name":"POINTER_FLAG_INCONTACT","features":[617]},{"name":"POINTER_FLAG_INRANGE","features":[617]},{"name":"POINTER_FLAG_NEW","features":[617]},{"name":"POINTER_FLAG_NONE","features":[617]},{"name":"POINTER_FLAG_PRIMARY","features":[617]},{"name":"POINTER_FLAG_SECONDBUTTON","features":[617]},{"name":"POINTER_FLAG_THIRDBUTTON","features":[617]},{"name":"POINTER_FLAG_UP","features":[617]},{"name":"POINTER_FLAG_UPDATE","features":[617]},{"name":"POINTER_FLAG_WHEEL","features":[617]},{"name":"POINTER_INFO","features":[305,617,367]},{"name":"POINTER_PEN_INFO","features":[305,617,367]},{"name":"POINTER_TOUCH_INFO","features":[305,617,367]},{"name":"SkipPointerFrameMessages","features":[305,617]},{"name":"TOUCH_FEEDBACK_DEFAULT","features":[617]},{"name":"TOUCH_FEEDBACK_INDIRECT","features":[617]},{"name":"TOUCH_FEEDBACK_MODE","features":[617]},{"name":"TOUCH_FEEDBACK_NONE","features":[617]}],"661":[{"name":"IRadialControllerConfigurationInterop","features":[624]},{"name":"IRadialControllerIndependentInputSourceInterop","features":[624]},{"name":"IRadialControllerInterop","features":[624]}],"662":[{"name":"CloseGestureInfoHandle","features":[305,625]},{"name":"CloseTouchInputHandle","features":[305,625]},{"name":"GESTURECONFIG","features":[625]},{"name":"GESTURECONFIG_ID","features":[625]},{"name":"GESTUREINFO","features":[305,625]},{"name":"GESTURENOTIFYSTRUCT","features":[305,625]},{"name":"GID_BEGIN","features":[625]},{"name":"GID_END","features":[625]},{"name":"GID_PAN","features":[625]},{"name":"GID_PRESSANDTAP","features":[625]},{"name":"GID_ROLLOVER","features":[625]},{"name":"GID_ROTATE","features":[625]},{"name":"GID_TWOFINGERTAP","features":[625]},{"name":"GID_ZOOM","features":[625]},{"name":"GetGestureConfig","features":[305,625]},{"name":"GetGestureExtraArgs","features":[305,625]},{"name":"GetGestureInfo","features":[305,625]},{"name":"GetTouchInputInfo","features":[305,625]},{"name":"HGESTUREINFO","features":[625]},{"name":"HTOUCHINPUT","features":[625]},{"name":"IInertiaProcessor","features":[625]},{"name":"IManipulationProcessor","features":[625]},{"name":"InertiaProcessor","features":[625]},{"name":"IsTouchWindow","features":[305,625]},{"name":"MANIPULATION_ALL","features":[625]},{"name":"MANIPULATION_NONE","features":[625]},{"name":"MANIPULATION_PROCESSOR_MANIPULATIONS","features":[625]},{"name":"MANIPULATION_ROTATE","features":[625]},{"name":"MANIPULATION_SCALE","features":[625]},{"name":"MANIPULATION_TRANSLATE_X","features":[625]},{"name":"MANIPULATION_TRANSLATE_Y","features":[625]},{"name":"ManipulationProcessor","features":[625]},{"name":"REGISTER_TOUCH_WINDOW_FLAGS","features":[625]},{"name":"RegisterTouchWindow","features":[305,625]},{"name":"SetGestureConfig","features":[305,625]},{"name":"TOUCHEVENTF_DOWN","features":[625]},{"name":"TOUCHEVENTF_FLAGS","features":[625]},{"name":"TOUCHEVENTF_INRANGE","features":[625]},{"name":"TOUCHEVENTF_MOVE","features":[625]},{"name":"TOUCHEVENTF_NOCOALESCE","features":[625]},{"name":"TOUCHEVENTF_PALM","features":[625]},{"name":"TOUCHEVENTF_PEN","features":[625]},{"name":"TOUCHEVENTF_PRIMARY","features":[625]},{"name":"TOUCHEVENTF_UP","features":[625]},{"name":"TOUCHINPUT","features":[305,625]},{"name":"TOUCHINPUTMASKF_CONTACTAREA","features":[625]},{"name":"TOUCHINPUTMASKF_EXTRAINFO","features":[625]},{"name":"TOUCHINPUTMASKF_MASK","features":[625]},{"name":"TOUCHINPUTMASKF_TIMEFROMSYSTEM","features":[625]},{"name":"TWF_FINETOUCH","features":[625]},{"name":"TWF_WANTPALM","features":[625]},{"name":"UnregisterTouchWindow","features":[305,625]},{"name":"_IManipulationEvents","features":[625]}],"663":[{"name":"BATTERY_DEVTYPE","features":[626]},{"name":"BATTERY_DEVTYPE_GAMEPAD","features":[626]},{"name":"BATTERY_DEVTYPE_HEADSET","features":[626]},{"name":"BATTERY_LEVEL","features":[626]},{"name":"BATTERY_LEVEL_EMPTY","features":[626]},{"name":"BATTERY_LEVEL_FULL","features":[626]},{"name":"BATTERY_LEVEL_LOW","features":[626]},{"name":"BATTERY_LEVEL_MEDIUM","features":[626]},{"name":"BATTERY_TYPE","features":[626]},{"name":"BATTERY_TYPE_ALKALINE","features":[626]},{"name":"BATTERY_TYPE_DISCONNECTED","features":[626]},{"name":"BATTERY_TYPE_NIMH","features":[626]},{"name":"BATTERY_TYPE_UNKNOWN","features":[626]},{"name":"BATTERY_TYPE_WIRED","features":[626]},{"name":"VK_PAD_A","features":[626]},{"name":"VK_PAD_B","features":[626]},{"name":"VK_PAD_BACK","features":[626]},{"name":"VK_PAD_DPAD_DOWN","features":[626]},{"name":"VK_PAD_DPAD_LEFT","features":[626]},{"name":"VK_PAD_DPAD_RIGHT","features":[626]},{"name":"VK_PAD_DPAD_UP","features":[626]},{"name":"VK_PAD_LSHOULDER","features":[626]},{"name":"VK_PAD_LTHUMB_DOWN","features":[626]},{"name":"VK_PAD_LTHUMB_DOWNLEFT","features":[626]},{"name":"VK_PAD_LTHUMB_DOWNRIGHT","features":[626]},{"name":"VK_PAD_LTHUMB_LEFT","features":[626]},{"name":"VK_PAD_LTHUMB_PRESS","features":[626]},{"name":"VK_PAD_LTHUMB_RIGHT","features":[626]},{"name":"VK_PAD_LTHUMB_UP","features":[626]},{"name":"VK_PAD_LTHUMB_UPLEFT","features":[626]},{"name":"VK_PAD_LTHUMB_UPRIGHT","features":[626]},{"name":"VK_PAD_LTRIGGER","features":[626]},{"name":"VK_PAD_RSHOULDER","features":[626]},{"name":"VK_PAD_RTHUMB_DOWN","features":[626]},{"name":"VK_PAD_RTHUMB_DOWNLEFT","features":[626]},{"name":"VK_PAD_RTHUMB_DOWNRIGHT","features":[626]},{"name":"VK_PAD_RTHUMB_LEFT","features":[626]},{"name":"VK_PAD_RTHUMB_PRESS","features":[626]},{"name":"VK_PAD_RTHUMB_RIGHT","features":[626]},{"name":"VK_PAD_RTHUMB_UP","features":[626]},{"name":"VK_PAD_RTHUMB_UPLEFT","features":[626]},{"name":"VK_PAD_RTHUMB_UPRIGHT","features":[626]},{"name":"VK_PAD_RTRIGGER","features":[626]},{"name":"VK_PAD_START","features":[626]},{"name":"VK_PAD_X","features":[626]},{"name":"VK_PAD_Y","features":[626]},{"name":"XINPUT_BATTERY_INFORMATION","features":[626]},{"name":"XINPUT_CAPABILITIES","features":[626]},{"name":"XINPUT_CAPABILITIES_FLAGS","features":[626]},{"name":"XINPUT_CAPS_FFB_SUPPORTED","features":[626]},{"name":"XINPUT_CAPS_NO_NAVIGATION","features":[626]},{"name":"XINPUT_CAPS_PMD_SUPPORTED","features":[626]},{"name":"XINPUT_CAPS_VOICE_SUPPORTED","features":[626]},{"name":"XINPUT_CAPS_WIRELESS","features":[626]},{"name":"XINPUT_DEVSUBTYPE","features":[626]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_PAD","features":[626]},{"name":"XINPUT_DEVSUBTYPE_ARCADE_STICK","features":[626]},{"name":"XINPUT_DEVSUBTYPE_DANCE_PAD","features":[626]},{"name":"XINPUT_DEVSUBTYPE_DRUM_KIT","features":[626]},{"name":"XINPUT_DEVSUBTYPE_FLIGHT_STICK","features":[626]},{"name":"XINPUT_DEVSUBTYPE_GAMEPAD","features":[626]},{"name":"XINPUT_DEVSUBTYPE_GUITAR","features":[626]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_ALTERNATE","features":[626]},{"name":"XINPUT_DEVSUBTYPE_GUITAR_BASS","features":[626]},{"name":"XINPUT_DEVSUBTYPE_UNKNOWN","features":[626]},{"name":"XINPUT_DEVSUBTYPE_WHEEL","features":[626]},{"name":"XINPUT_DEVTYPE","features":[626]},{"name":"XINPUT_DEVTYPE_GAMEPAD","features":[626]},{"name":"XINPUT_DLL","features":[626]},{"name":"XINPUT_DLL_A","features":[626]},{"name":"XINPUT_DLL_W","features":[626]},{"name":"XINPUT_FLAG","features":[626]},{"name":"XINPUT_FLAG_ALL","features":[626]},{"name":"XINPUT_FLAG_GAMEPAD","features":[626]},{"name":"XINPUT_GAMEPAD","features":[626]},{"name":"XINPUT_GAMEPAD_A","features":[626]},{"name":"XINPUT_GAMEPAD_B","features":[626]},{"name":"XINPUT_GAMEPAD_BACK","features":[626]},{"name":"XINPUT_GAMEPAD_BUTTON_FLAGS","features":[626]},{"name":"XINPUT_GAMEPAD_DPAD_DOWN","features":[626]},{"name":"XINPUT_GAMEPAD_DPAD_LEFT","features":[626]},{"name":"XINPUT_GAMEPAD_DPAD_RIGHT","features":[626]},{"name":"XINPUT_GAMEPAD_DPAD_UP","features":[626]},{"name":"XINPUT_GAMEPAD_LEFT_SHOULDER","features":[626]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB","features":[626]},{"name":"XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE","features":[626]},{"name":"XINPUT_GAMEPAD_RIGHT_SHOULDER","features":[626]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB","features":[626]},{"name":"XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE","features":[626]},{"name":"XINPUT_GAMEPAD_START","features":[626]},{"name":"XINPUT_GAMEPAD_TRIGGER_THRESHOLD","features":[626]},{"name":"XINPUT_GAMEPAD_X","features":[626]},{"name":"XINPUT_GAMEPAD_Y","features":[626]},{"name":"XINPUT_KEYSTROKE","features":[626]},{"name":"XINPUT_KEYSTROKE_FLAGS","features":[626]},{"name":"XINPUT_KEYSTROKE_KEYDOWN","features":[626]},{"name":"XINPUT_KEYSTROKE_KEYUP","features":[626]},{"name":"XINPUT_KEYSTROKE_REPEAT","features":[626]},{"name":"XINPUT_STATE","features":[626]},{"name":"XINPUT_VIBRATION","features":[626]},{"name":"XINPUT_VIRTUAL_KEY","features":[626]},{"name":"XInputEnable","features":[305,626]},{"name":"XInputGetAudioDeviceIds","features":[626]},{"name":"XInputGetBatteryInformation","features":[626]},{"name":"XInputGetCapabilities","features":[626]},{"name":"XInputGetKeystroke","features":[626]},{"name":"XInputGetState","features":[626]},{"name":"XInputSetState","features":[626]},{"name":"XUSER_INDEX_ANY","features":[626]},{"name":"XUSER_MAX_COUNT","features":[626]}],"664":[{"name":"AddPointerInteractionContext","features":[627]},{"name":"BufferPointerPacketsInteractionContext","features":[305,617,627,367]},{"name":"CROSS_SLIDE_FLAGS","features":[627]},{"name":"CROSS_SLIDE_FLAGS_MAX","features":[627]},{"name":"CROSS_SLIDE_FLAGS_NONE","features":[627]},{"name":"CROSS_SLIDE_FLAGS_REARRANGE","features":[627]},{"name":"CROSS_SLIDE_FLAGS_SELECT","features":[627]},{"name":"CROSS_SLIDE_FLAGS_SPEED_BUMP","features":[627]},{"name":"CROSS_SLIDE_PARAMETER","features":[627]},{"name":"CROSS_SLIDE_THRESHOLD","features":[627]},{"name":"CROSS_SLIDE_THRESHOLD_COUNT","features":[627]},{"name":"CROSS_SLIDE_THRESHOLD_MAX","features":[627]},{"name":"CROSS_SLIDE_THRESHOLD_REARRANGE_START","features":[627]},{"name":"CROSS_SLIDE_THRESHOLD_SELECT_START","features":[627]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_END","features":[627]},{"name":"CROSS_SLIDE_THRESHOLD_SPEED_BUMP_START","features":[627]},{"name":"CreateInteractionContext","features":[627]},{"name":"DestroyInteractionContext","features":[627]},{"name":"GetCrossSlideParameterInteractionContext","features":[627]},{"name":"GetHoldParameterInteractionContext","features":[627]},{"name":"GetInertiaParameterInteractionContext","features":[627]},{"name":"GetInteractionConfigurationInteractionContext","features":[627]},{"name":"GetMouseWheelParameterInteractionContext","features":[627]},{"name":"GetPropertyInteractionContext","features":[627]},{"name":"GetStateInteractionContext","features":[305,617,627,367]},{"name":"GetTapParameterInteractionContext","features":[627]},{"name":"GetTranslationParameterInteractionContext","features":[627]},{"name":"HINTERACTIONCONTEXT","features":[627]},{"name":"HOLD_PARAMETER","features":[627]},{"name":"HOLD_PARAMETER_MAX","features":[627]},{"name":"HOLD_PARAMETER_MAX_CONTACT_COUNT","features":[627]},{"name":"HOLD_PARAMETER_MIN_CONTACT_COUNT","features":[627]},{"name":"HOLD_PARAMETER_THRESHOLD_RADIUS","features":[627]},{"name":"HOLD_PARAMETER_THRESHOLD_START_DELAY","features":[627]},{"name":"INERTIA_PARAMETER","features":[627]},{"name":"INERTIA_PARAMETER_EXPANSION_DECELERATION","features":[627]},{"name":"INERTIA_PARAMETER_EXPANSION_EXPANSION","features":[627]},{"name":"INERTIA_PARAMETER_MAX","features":[627]},{"name":"INERTIA_PARAMETER_ROTATION_ANGLE","features":[627]},{"name":"INERTIA_PARAMETER_ROTATION_DECELERATION","features":[627]},{"name":"INERTIA_PARAMETER_TRANSLATION_DECELERATION","features":[627]},{"name":"INERTIA_PARAMETER_TRANSLATION_DISPLACEMENT","features":[627]},{"name":"INTERACTION_ARGUMENTS_CROSS_SLIDE","features":[627]},{"name":"INTERACTION_ARGUMENTS_MANIPULATION","features":[627]},{"name":"INTERACTION_ARGUMENTS_TAP","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAGS","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_EXACT","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_HORIZONTAL","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_REARRANGE","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SELECT","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_CROSS_SLIDE_SPEED_BUMP","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_DRAG","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MOUSE","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_HOLD_MULTIPLE_FINGER","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_EXACT","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_MULTIPLE_FINGER_PANNING","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_X","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_RAILS_Y","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_ROTATION_INERTIA","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_SCALING_INERTIA","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_INERTIA","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_X","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MANIPULATION_TRANSLATION_Y","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_MAX","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_NONE","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_SECONDARY_TAP","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_DOUBLE","features":[627]},{"name":"INTERACTION_CONFIGURATION_FLAG_TAP_MULTIPLE_FINGER","features":[627]},{"name":"INTERACTION_CONTEXT_CONFIGURATION","features":[627]},{"name":"INTERACTION_CONTEXT_OUTPUT","features":[627,367]},{"name":"INTERACTION_CONTEXT_OUTPUT2","features":[627,367]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK","features":[627,367]},{"name":"INTERACTION_CONTEXT_OUTPUT_CALLBACK2","features":[627,367]},{"name":"INTERACTION_CONTEXT_PROPERTY","features":[627]},{"name":"INTERACTION_CONTEXT_PROPERTY_FILTER_POINTERS","features":[627]},{"name":"INTERACTION_CONTEXT_PROPERTY_INTERACTION_UI_FEEDBACK","features":[627]},{"name":"INTERACTION_CONTEXT_PROPERTY_MAX","features":[627]},{"name":"INTERACTION_CONTEXT_PROPERTY_MEASUREMENT_UNITS","features":[627]},{"name":"INTERACTION_FLAGS","features":[627]},{"name":"INTERACTION_FLAG_BEGIN","features":[627]},{"name":"INTERACTION_FLAG_CANCEL","features":[627]},{"name":"INTERACTION_FLAG_END","features":[627]},{"name":"INTERACTION_FLAG_INERTIA","features":[627]},{"name":"INTERACTION_FLAG_MAX","features":[627]},{"name":"INTERACTION_FLAG_NONE","features":[627]},{"name":"INTERACTION_ID","features":[627]},{"name":"INTERACTION_ID_CROSS_SLIDE","features":[627]},{"name":"INTERACTION_ID_DRAG","features":[627]},{"name":"INTERACTION_ID_HOLD","features":[627]},{"name":"INTERACTION_ID_MANIPULATION","features":[627]},{"name":"INTERACTION_ID_MAX","features":[627]},{"name":"INTERACTION_ID_NONE","features":[627]},{"name":"INTERACTION_ID_SECONDARY_TAP","features":[627]},{"name":"INTERACTION_ID_TAP","features":[627]},{"name":"INTERACTION_STATE","features":[627]},{"name":"INTERACTION_STATE_IDLE","features":[627]},{"name":"INTERACTION_STATE_IN_INTERACTION","features":[627]},{"name":"INTERACTION_STATE_MAX","features":[627]},{"name":"INTERACTION_STATE_POSSIBLE_DOUBLE_TAP","features":[627]},{"name":"MANIPULATION_RAILS_STATE","features":[627]},{"name":"MANIPULATION_RAILS_STATE_FREE","features":[627]},{"name":"MANIPULATION_RAILS_STATE_MAX","features":[627]},{"name":"MANIPULATION_RAILS_STATE_RAILED","features":[627]},{"name":"MANIPULATION_RAILS_STATE_UNDECIDED","features":[627]},{"name":"MANIPULATION_TRANSFORM","features":[627]},{"name":"MANIPULATION_VELOCITY","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_X","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER_CHAR_TRANSLATION_Y","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_ROTATION","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER_DELTA_SCALE","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER_MAX","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_X","features":[627]},{"name":"MOUSE_WHEEL_PARAMETER_PAGE_TRANSLATION_Y","features":[627]},{"name":"ProcessBufferedPacketsInteractionContext","features":[627]},{"name":"ProcessInertiaInteractionContext","features":[627]},{"name":"ProcessPointerFramesInteractionContext","features":[305,617,627,367]},{"name":"RegisterOutputCallbackInteractionContext","features":[627,367]},{"name":"RegisterOutputCallbackInteractionContext2","features":[627,367]},{"name":"RemovePointerInteractionContext","features":[627]},{"name":"ResetInteractionContext","features":[627]},{"name":"SetCrossSlideParametersInteractionContext","features":[627]},{"name":"SetHoldParameterInteractionContext","features":[627]},{"name":"SetInertiaParameterInteractionContext","features":[627]},{"name":"SetInteractionConfigurationInteractionContext","features":[627]},{"name":"SetMouseWheelParameterInteractionContext","features":[627]},{"name":"SetPivotInteractionContext","features":[627]},{"name":"SetPropertyInteractionContext","features":[627]},{"name":"SetTapParameterInteractionContext","features":[627]},{"name":"SetTranslationParameterInteractionContext","features":[627]},{"name":"StopInteractionContext","features":[627]},{"name":"TAP_PARAMETER","features":[627]},{"name":"TAP_PARAMETER_MAX","features":[627]},{"name":"TAP_PARAMETER_MAX_CONTACT_COUNT","features":[627]},{"name":"TAP_PARAMETER_MIN_CONTACT_COUNT","features":[627]},{"name":"TRANSLATION_PARAMETER","features":[627]},{"name":"TRANSLATION_PARAMETER_MAX","features":[627]},{"name":"TRANSLATION_PARAMETER_MAX_CONTACT_COUNT","features":[627]},{"name":"TRANSLATION_PARAMETER_MIN_CONTACT_COUNT","features":[627]}],"665":[{"name":"ALL_RECONCILE_FLAGS","features":[628]},{"name":"EMPTY_VOLUME_CACHE_FLAGS","features":[628]},{"name":"EVCCBF_LASTNOTIFICATION","features":[628]},{"name":"EVCF_DONTSHOWIFZERO","features":[628]},{"name":"EVCF_ENABLEBYDEFAULT","features":[628]},{"name":"EVCF_ENABLEBYDEFAULT_AUTO","features":[628]},{"name":"EVCF_HASSETTINGS","features":[628]},{"name":"EVCF_OUTOFDISKSPACE","features":[628]},{"name":"EVCF_REMOVEFROMLIST","features":[628]},{"name":"EVCF_SETTINGSMODE","features":[628]},{"name":"EVCF_SYSTEMAUTORUN","features":[628]},{"name":"EVCF_USERCONSENTOBTAINED","features":[628]},{"name":"IADesktopP2","features":[628]},{"name":"IActiveDesktopP","features":[628]},{"name":"IBriefcaseInitiator","features":[628]},{"name":"IEmptyVolumeCache","features":[628]},{"name":"IEmptyVolumeCache2","features":[628]},{"name":"IEmptyVolumeCacheCallBack","features":[628]},{"name":"IReconcilableObject","features":[628]},{"name":"IReconcileInitiator","features":[628]},{"name":"RECONCILEF","features":[628]},{"name":"RECONCILEF_FEEDBACKWINDOWVALID","features":[628]},{"name":"RECONCILEF_MAYBOTHERUSER","features":[628]},{"name":"RECONCILEF_NORESIDUESOK","features":[628]},{"name":"RECONCILEF_OMITSELFRESIDUE","features":[628]},{"name":"RECONCILEF_ONLYYOUWERECHANGED","features":[628]},{"name":"RECONCILEF_RESUMERECONCILIATION","features":[628]},{"name":"RECONCILEF_YOUMAYDOTHEUPDATES","features":[628]},{"name":"REC_E_ABORTED","features":[628]},{"name":"REC_E_INEEDTODOTHEUPDATES","features":[628]},{"name":"REC_E_NOCALLBACK","features":[628]},{"name":"REC_E_NORESIDUES","features":[628]},{"name":"REC_E_TOODIFFERENT","features":[628]},{"name":"REC_S_IDIDTHEUPDATES","features":[628]},{"name":"REC_S_NOTCOMPLETE","features":[628]},{"name":"REC_S_NOTCOMPLETEBUTPROPAGATE","features":[628]},{"name":"STATEBITS_FLAT","features":[628]}],"666":[{"name":"MAGCOLOREFFECT","features":[629]},{"name":"MAGIMAGEHEADER","features":[629]},{"name":"MAGTRANSFORM","features":[629]},{"name":"MS_CLIPAROUNDCURSOR","features":[629]},{"name":"MS_INVERTCOLORS","features":[629]},{"name":"MS_SHOWMAGNIFIEDCURSOR","features":[629]},{"name":"MW_FILTERMODE","features":[629]},{"name":"MW_FILTERMODE_EXCLUDE","features":[629]},{"name":"MW_FILTERMODE_INCLUDE","features":[629]},{"name":"MagGetColorEffect","features":[305,629]},{"name":"MagGetFullscreenColorEffect","features":[305,629]},{"name":"MagGetFullscreenTransform","features":[305,629]},{"name":"MagGetImageScalingCallback","features":[305,316,629]},{"name":"MagGetInputTransform","features":[305,629]},{"name":"MagGetWindowFilterList","features":[305,629]},{"name":"MagGetWindowSource","features":[305,629]},{"name":"MagGetWindowTransform","features":[305,629]},{"name":"MagImageScalingCallback","features":[305,316,629]},{"name":"MagInitialize","features":[305,629]},{"name":"MagSetColorEffect","features":[305,629]},{"name":"MagSetFullscreenColorEffect","features":[305,629]},{"name":"MagSetFullscreenTransform","features":[305,629]},{"name":"MagSetImageScalingCallback","features":[305,316,629]},{"name":"MagSetInputTransform","features":[305,629]},{"name":"MagSetWindowFilterList","features":[305,629]},{"name":"MagSetWindowSource","features":[305,629]},{"name":"MagSetWindowTransform","features":[305,629]},{"name":"MagShowSystemCursor","features":[305,629]},{"name":"MagUninitialize","features":[305,629]},{"name":"WC_MAGNIFIER","features":[629]},{"name":"WC_MAGNIFIERA","features":[629]},{"name":"WC_MAGNIFIERW","features":[629]}],"667":[{"name":"INotificationActivationCallback","features":[630]},{"name":"NOTIFICATION_USER_INPUT_DATA","features":[630]}],"668":[{"name":"IUIApplication","features":[631]},{"name":"IUICollection","features":[631]},{"name":"IUICollectionChangedEvent","features":[631]},{"name":"IUICommandHandler","features":[631]},{"name":"IUIContextualUI","features":[631]},{"name":"IUIEventLogger","features":[631]},{"name":"IUIEventingManager","features":[631]},{"name":"IUIFramework","features":[631]},{"name":"IUIImage","features":[631]},{"name":"IUIImageFromBitmap","features":[631]},{"name":"IUIRibbon","features":[631]},{"name":"IUISimplePropertySet","features":[631]},{"name":"LIBID_UIRibbon","features":[631]},{"name":"UIRibbonFramework","features":[631]},{"name":"UIRibbonImageFromBitmapFactory","features":[631]},{"name":"UI_ALL_COMMANDS","features":[631]},{"name":"UI_COLLECTIONCHANGE","features":[631]},{"name":"UI_COLLECTIONCHANGE_INSERT","features":[631]},{"name":"UI_COLLECTIONCHANGE_REMOVE","features":[631]},{"name":"UI_COLLECTIONCHANGE_REPLACE","features":[631]},{"name":"UI_COLLECTIONCHANGE_RESET","features":[631]},{"name":"UI_COLLECTION_INVALIDINDEX","features":[631]},{"name":"UI_COMMANDTYPE","features":[631]},{"name":"UI_COMMANDTYPE_ACTION","features":[631]},{"name":"UI_COMMANDTYPE_ANCHOR","features":[631]},{"name":"UI_COMMANDTYPE_BOOLEAN","features":[631]},{"name":"UI_COMMANDTYPE_COLLECTION","features":[631]},{"name":"UI_COMMANDTYPE_COLORANCHOR","features":[631]},{"name":"UI_COMMANDTYPE_COLORCOLLECTION","features":[631]},{"name":"UI_COMMANDTYPE_COMMANDCOLLECTION","features":[631]},{"name":"UI_COMMANDTYPE_CONTEXT","features":[631]},{"name":"UI_COMMANDTYPE_DECIMAL","features":[631]},{"name":"UI_COMMANDTYPE_FONT","features":[631]},{"name":"UI_COMMANDTYPE_GROUP","features":[631]},{"name":"UI_COMMANDTYPE_RECENTITEMS","features":[631]},{"name":"UI_COMMANDTYPE_UNKNOWN","features":[631]},{"name":"UI_CONTEXTAVAILABILITY","features":[631]},{"name":"UI_CONTEXTAVAILABILITY_ACTIVE","features":[631]},{"name":"UI_CONTEXTAVAILABILITY_AVAILABLE","features":[631]},{"name":"UI_CONTEXTAVAILABILITY_NOTAVAILABLE","features":[631]},{"name":"UI_CONTROLDOCK","features":[631]},{"name":"UI_CONTROLDOCK_BOTTOM","features":[631]},{"name":"UI_CONTROLDOCK_TOP","features":[631]},{"name":"UI_EVENTLOCATION","features":[631]},{"name":"UI_EVENTLOCATION_ApplicationMenu","features":[631]},{"name":"UI_EVENTLOCATION_ContextPopup","features":[631]},{"name":"UI_EVENTLOCATION_QAT","features":[631]},{"name":"UI_EVENTLOCATION_Ribbon","features":[631]},{"name":"UI_EVENTPARAMS","features":[631]},{"name":"UI_EVENTPARAMS_COMMAND","features":[631]},{"name":"UI_EVENTTYPE","features":[631]},{"name":"UI_EVENTTYPE_ApplicationMenuOpened","features":[631]},{"name":"UI_EVENTTYPE_ApplicationModeSwitched","features":[631]},{"name":"UI_EVENTTYPE_CommandExecuted","features":[631]},{"name":"UI_EVENTTYPE_MenuOpened","features":[631]},{"name":"UI_EVENTTYPE_RibbonExpanded","features":[631]},{"name":"UI_EVENTTYPE_RibbonMinimized","features":[631]},{"name":"UI_EVENTTYPE_TabActivated","features":[631]},{"name":"UI_EVENTTYPE_TooltipShown","features":[631]},{"name":"UI_EXECUTIONVERB","features":[631]},{"name":"UI_EXECUTIONVERB_CANCELPREVIEW","features":[631]},{"name":"UI_EXECUTIONVERB_EXECUTE","features":[631]},{"name":"UI_EXECUTIONVERB_PREVIEW","features":[631]},{"name":"UI_FONTDELTASIZE","features":[631]},{"name":"UI_FONTDELTASIZE_GROW","features":[631]},{"name":"UI_FONTDELTASIZE_SHRINK","features":[631]},{"name":"UI_FONTPROPERTIES","features":[631]},{"name":"UI_FONTPROPERTIES_NOTAVAILABLE","features":[631]},{"name":"UI_FONTPROPERTIES_NOTSET","features":[631]},{"name":"UI_FONTPROPERTIES_SET","features":[631]},{"name":"UI_FONTUNDERLINE","features":[631]},{"name":"UI_FONTUNDERLINE_NOTAVAILABLE","features":[631]},{"name":"UI_FONTUNDERLINE_NOTSET","features":[631]},{"name":"UI_FONTUNDERLINE_SET","features":[631]},{"name":"UI_FONTVERTICALPOSITION","features":[631]},{"name":"UI_FONTVERTICALPOSITION_NOTAVAILABLE","features":[631]},{"name":"UI_FONTVERTICALPOSITION_NOTSET","features":[631]},{"name":"UI_FONTVERTICALPOSITION_SUBSCRIPT","features":[631]},{"name":"UI_FONTVERTICALPOSITION_SUPERSCRIPT","features":[631]},{"name":"UI_INVALIDATIONS","features":[631]},{"name":"UI_INVALIDATIONS_ALLPROPERTIES","features":[631]},{"name":"UI_INVALIDATIONS_PROPERTY","features":[631]},{"name":"UI_INVALIDATIONS_STATE","features":[631]},{"name":"UI_INVALIDATIONS_VALUE","features":[631]},{"name":"UI_OWNERSHIP","features":[631]},{"name":"UI_OWNERSHIP_COPY","features":[631]},{"name":"UI_OWNERSHIP_TRANSFER","features":[631]},{"name":"UI_SWATCHCOLORMODE","features":[631]},{"name":"UI_SWATCHCOLORMODE_MONOCHROME","features":[631]},{"name":"UI_SWATCHCOLORMODE_NORMAL","features":[631]},{"name":"UI_SWATCHCOLORTYPE","features":[631]},{"name":"UI_SWATCHCOLORTYPE_AUTOMATIC","features":[631]},{"name":"UI_SWATCHCOLORTYPE_NOCOLOR","features":[631]},{"name":"UI_SWATCHCOLORTYPE_RGB","features":[631]},{"name":"UI_VIEWTYPE","features":[631]},{"name":"UI_VIEWTYPE_RIBBON","features":[631]},{"name":"UI_VIEWVERB","features":[631]},{"name":"UI_VIEWVERB_CREATE","features":[631]},{"name":"UI_VIEWVERB_DESTROY","features":[631]},{"name":"UI_VIEWVERB_ERROR","features":[631]},{"name":"UI_VIEWVERB_SIZE","features":[631]}],"669":[{"name":"AASHELLMENUFILENAME","features":[466]},{"name":"AASHELLMENUITEM","features":[466]},{"name":"ABE_BOTTOM","features":[466]},{"name":"ABE_LEFT","features":[466]},{"name":"ABE_RIGHT","features":[466]},{"name":"ABE_TOP","features":[466]},{"name":"ABM_ACTIVATE","features":[466]},{"name":"ABM_GETAUTOHIDEBAR","features":[466]},{"name":"ABM_GETAUTOHIDEBAREX","features":[466]},{"name":"ABM_GETSTATE","features":[466]},{"name":"ABM_GETTASKBARPOS","features":[466]},{"name":"ABM_NEW","features":[466]},{"name":"ABM_QUERYPOS","features":[466]},{"name":"ABM_REMOVE","features":[466]},{"name":"ABM_SETAUTOHIDEBAR","features":[466]},{"name":"ABM_SETAUTOHIDEBAREX","features":[466]},{"name":"ABM_SETPOS","features":[466]},{"name":"ABM_SETSTATE","features":[466]},{"name":"ABM_WINDOWPOSCHANGED","features":[466]},{"name":"ABN_FULLSCREENAPP","features":[466]},{"name":"ABN_POSCHANGED","features":[466]},{"name":"ABN_STATECHANGE","features":[466]},{"name":"ABN_WINDOWARRANGE","features":[466]},{"name":"ABS_ALWAYSONTOP","features":[466]},{"name":"ABS_AUTOHIDE","features":[466]},{"name":"ACDD_VISIBLE","features":[466]},{"name":"ACENUMOPTION","features":[466]},{"name":"ACEO_FIRSTUNUSED","features":[466]},{"name":"ACEO_MOSTRECENTFIRST","features":[466]},{"name":"ACEO_NONE","features":[466]},{"name":"ACLO_CURRENTDIR","features":[466]},{"name":"ACLO_DESKTOP","features":[466]},{"name":"ACLO_FAVORITES","features":[466]},{"name":"ACLO_FILESYSDIRS","features":[466]},{"name":"ACLO_FILESYSONLY","features":[466]},{"name":"ACLO_MYCOMPUTER","features":[466]},{"name":"ACLO_NONE","features":[466]},{"name":"ACLO_VIRTUALNAMESPACE","features":[466]},{"name":"ACO_AUTOAPPEND","features":[466]},{"name":"ACO_AUTOSUGGEST","features":[466]},{"name":"ACO_FILTERPREFIXES","features":[466]},{"name":"ACO_NONE","features":[466]},{"name":"ACO_NOPREFIXFILTERING","features":[466]},{"name":"ACO_RTLREADING","features":[466]},{"name":"ACO_SEARCH","features":[466]},{"name":"ACO_UPDOWNKEYDROPSLIST","features":[466]},{"name":"ACO_USETAB","features":[466]},{"name":"ACO_WORD_FILTER","features":[466]},{"name":"ACTIVATEOPTIONS","features":[466]},{"name":"ADDURL_SILENT","features":[466]},{"name":"ADE_LEFT","features":[466]},{"name":"ADE_NONE","features":[466]},{"name":"ADE_RIGHT","features":[466]},{"name":"ADJACENT_DISPLAY_EDGES","features":[466]},{"name":"ADLT_FREQUENT","features":[466]},{"name":"ADLT_RECENT","features":[466]},{"name":"AD_APPLY_BUFFERED_REFRESH","features":[466]},{"name":"AD_APPLY_DYNAMICREFRESH","features":[466]},{"name":"AD_APPLY_FORCE","features":[466]},{"name":"AD_APPLY_HTMLGEN","features":[466]},{"name":"AD_APPLY_REFRESH","features":[466]},{"name":"AD_APPLY_SAVE","features":[466]},{"name":"AD_GETWP_BMP","features":[466]},{"name":"AD_GETWP_IMAGE","features":[466]},{"name":"AD_GETWP_LAST_APPLIED","features":[466]},{"name":"AHE_DESKTOP","features":[466]},{"name":"AHE_IMMERSIVE","features":[466]},{"name":"AHE_TYPE","features":[466]},{"name":"AHTYPE","features":[466]},{"name":"AHTYPE_ANY_APPLICATION","features":[466]},{"name":"AHTYPE_ANY_PROGID","features":[466]},{"name":"AHTYPE_APPLICATION","features":[466]},{"name":"AHTYPE_CLASS_APPLICATION","features":[466]},{"name":"AHTYPE_MACHINEDEFAULT","features":[466]},{"name":"AHTYPE_PROGID","features":[466]},{"name":"AHTYPE_UNDEFINED","features":[466]},{"name":"AHTYPE_USER_APPLICATION","features":[466]},{"name":"AIM_COMMENTS","features":[466]},{"name":"AIM_CONTACT","features":[466]},{"name":"AIM_DISPLAYNAME","features":[466]},{"name":"AIM_HELPLINK","features":[466]},{"name":"AIM_IMAGE","features":[466]},{"name":"AIM_INSTALLDATE","features":[466]},{"name":"AIM_INSTALLLOCATION","features":[466]},{"name":"AIM_INSTALLSOURCE","features":[466]},{"name":"AIM_LANGUAGE","features":[466]},{"name":"AIM_PRODUCTID","features":[466]},{"name":"AIM_PUBLISHER","features":[466]},{"name":"AIM_READMEURL","features":[466]},{"name":"AIM_REGISTEREDCOMPANY","features":[466]},{"name":"AIM_REGISTEREDOWNER","features":[466]},{"name":"AIM_SUPPORTTELEPHONE","features":[466]},{"name":"AIM_SUPPORTURL","features":[466]},{"name":"AIM_UPDATEINFOURL","features":[466]},{"name":"AIM_VERSION","features":[466]},{"name":"AL_EFFECTIVE","features":[466]},{"name":"AL_MACHINE","features":[466]},{"name":"AL_USER","features":[466]},{"name":"AO_DESIGNMODE","features":[466]},{"name":"AO_NOERRORUI","features":[466]},{"name":"AO_NONE","features":[466]},{"name":"AO_NOSPLASHSCREEN","features":[466]},{"name":"AO_PRELAUNCH","features":[466]},{"name":"APPACTIONFLAGS","features":[466]},{"name":"APPACTION_ADDLATER","features":[466]},{"name":"APPACTION_CANGETSIZE","features":[466]},{"name":"APPACTION_INSTALL","features":[466]},{"name":"APPACTION_MODIFY","features":[466]},{"name":"APPACTION_MODIFYREMOVE","features":[466]},{"name":"APPACTION_REPAIR","features":[466]},{"name":"APPACTION_UNINSTALL","features":[466]},{"name":"APPACTION_UNSCHEDULE","features":[466]},{"name":"APPACTION_UPGRADE","features":[466]},{"name":"APPBARDATA","features":[305,466]},{"name":"APPBARDATA","features":[305,466]},{"name":"APPCATEGORYINFO","features":[466]},{"name":"APPCATEGORYINFOLIST","features":[466]},{"name":"APPDOCLISTTYPE","features":[466]},{"name":"APPINFODATA","features":[466]},{"name":"APPINFODATAFLAGS","features":[466]},{"name":"APPLET_PROC","features":[305,466]},{"name":"APPLICATION_VIEW_MIN_WIDTH","features":[466]},{"name":"APPLICATION_VIEW_ORIENTATION","features":[466]},{"name":"APPLICATION_VIEW_SIZE_PREFERENCE","features":[466]},{"name":"APPLICATION_VIEW_STATE","features":[466]},{"name":"APPNAMEBUFFERLEN","features":[466]},{"name":"ARCONTENT_AUDIOCD","features":[466]},{"name":"ARCONTENT_AUTOPLAYMUSIC","features":[466]},{"name":"ARCONTENT_AUTOPLAYPIX","features":[466]},{"name":"ARCONTENT_AUTOPLAYVIDEO","features":[466]},{"name":"ARCONTENT_AUTORUNINF","features":[466]},{"name":"ARCONTENT_BLANKBD","features":[466]},{"name":"ARCONTENT_BLANKCD","features":[466]},{"name":"ARCONTENT_BLANKDVD","features":[466]},{"name":"ARCONTENT_BLURAY","features":[466]},{"name":"ARCONTENT_CAMERASTORAGE","features":[466]},{"name":"ARCONTENT_CUSTOMEVENT","features":[466]},{"name":"ARCONTENT_DVDAUDIO","features":[466]},{"name":"ARCONTENT_DVDMOVIE","features":[466]},{"name":"ARCONTENT_MASK","features":[466]},{"name":"ARCONTENT_NONE","features":[466]},{"name":"ARCONTENT_PHASE_FINAL","features":[466]},{"name":"ARCONTENT_PHASE_MASK","features":[466]},{"name":"ARCONTENT_PHASE_PRESNIFF","features":[466]},{"name":"ARCONTENT_PHASE_SNIFFING","features":[466]},{"name":"ARCONTENT_PHASE_UNKNOWN","features":[466]},{"name":"ARCONTENT_SVCD","features":[466]},{"name":"ARCONTENT_UNKNOWNCONTENT","features":[466]},{"name":"ARCONTENT_VCD","features":[466]},{"name":"ASSOCCLASS","features":[466]},{"name":"ASSOCCLASS_APP_KEY","features":[466]},{"name":"ASSOCCLASS_APP_STR","features":[466]},{"name":"ASSOCCLASS_CLSID_KEY","features":[466]},{"name":"ASSOCCLASS_CLSID_STR","features":[466]},{"name":"ASSOCCLASS_FIXED_PROGID_STR","features":[466]},{"name":"ASSOCCLASS_FOLDER","features":[466]},{"name":"ASSOCCLASS_PROGID_KEY","features":[466]},{"name":"ASSOCCLASS_PROGID_STR","features":[466]},{"name":"ASSOCCLASS_PROTOCOL_STR","features":[466]},{"name":"ASSOCCLASS_SHELL_KEY","features":[466]},{"name":"ASSOCCLASS_STAR","features":[466]},{"name":"ASSOCCLASS_SYSTEM_STR","features":[466]},{"name":"ASSOCDATA","features":[466]},{"name":"ASSOCDATA_EDITFLAGS","features":[466]},{"name":"ASSOCDATA_HASPERUSERASSOC","features":[466]},{"name":"ASSOCDATA_MAX","features":[466]},{"name":"ASSOCDATA_MSIDESCRIPTOR","features":[466]},{"name":"ASSOCDATA_NOACTIVATEHANDLER","features":[466]},{"name":"ASSOCDATA_UNUSED1","features":[466]},{"name":"ASSOCDATA_VALUE","features":[466]},{"name":"ASSOCENUM","features":[466]},{"name":"ASSOCENUM_NONE","features":[466]},{"name":"ASSOCF","features":[466]},{"name":"ASSOCF_APP_TO_APP","features":[466]},{"name":"ASSOCF_IGNOREBASECLASS","features":[466]},{"name":"ASSOCF_INIT_BYEXENAME","features":[466]},{"name":"ASSOCF_INIT_DEFAULTTOFOLDER","features":[466]},{"name":"ASSOCF_INIT_DEFAULTTOSTAR","features":[466]},{"name":"ASSOCF_INIT_FIXED_PROGID","features":[466]},{"name":"ASSOCF_INIT_FOR_FILE","features":[466]},{"name":"ASSOCF_INIT_IGNOREUNKNOWN","features":[466]},{"name":"ASSOCF_INIT_NOREMAPCLSID","features":[466]},{"name":"ASSOCF_IS_FULL_URI","features":[466]},{"name":"ASSOCF_IS_PROTOCOL","features":[466]},{"name":"ASSOCF_NOFIXUPS","features":[466]},{"name":"ASSOCF_NONE","features":[466]},{"name":"ASSOCF_NOTRUNCATE","features":[466]},{"name":"ASSOCF_NOUSERSETTINGS","features":[466]},{"name":"ASSOCF_OPEN_BYEXENAME","features":[466]},{"name":"ASSOCF_PER_MACHINE_ONLY","features":[466]},{"name":"ASSOCF_REMAPRUNDLL","features":[466]},{"name":"ASSOCF_VERIFY","features":[466]},{"name":"ASSOCIATIONELEMENT","features":[366,466]},{"name":"ASSOCIATIONELEMENT","features":[366,466]},{"name":"ASSOCIATIONLEVEL","features":[466]},{"name":"ASSOCIATIONTYPE","features":[466]},{"name":"ASSOCKEY","features":[466]},{"name":"ASSOCKEY_APP","features":[466]},{"name":"ASSOCKEY_BASECLASS","features":[466]},{"name":"ASSOCKEY_CLASS","features":[466]},{"name":"ASSOCKEY_MAX","features":[466]},{"name":"ASSOCKEY_SHELLEXECCLASS","features":[466]},{"name":"ASSOCSTR","features":[466]},{"name":"ASSOCSTR_APPICONREFERENCE","features":[466]},{"name":"ASSOCSTR_APPID","features":[466]},{"name":"ASSOCSTR_APPPUBLISHER","features":[466]},{"name":"ASSOCSTR_COMMAND","features":[466]},{"name":"ASSOCSTR_CONTENTTYPE","features":[466]},{"name":"ASSOCSTR_DDEAPPLICATION","features":[466]},{"name":"ASSOCSTR_DDECOMMAND","features":[466]},{"name":"ASSOCSTR_DDEIFEXEC","features":[466]},{"name":"ASSOCSTR_DDETOPIC","features":[466]},{"name":"ASSOCSTR_DEFAULTICON","features":[466]},{"name":"ASSOCSTR_DELEGATEEXECUTE","features":[466]},{"name":"ASSOCSTR_DROPTARGET","features":[466]},{"name":"ASSOCSTR_EXECUTABLE","features":[466]},{"name":"ASSOCSTR_FRIENDLYAPPNAME","features":[466]},{"name":"ASSOCSTR_FRIENDLYDOCNAME","features":[466]},{"name":"ASSOCSTR_INFOTIP","features":[466]},{"name":"ASSOCSTR_MAX","features":[466]},{"name":"ASSOCSTR_NOOPEN","features":[466]},{"name":"ASSOCSTR_PROGID","features":[466]},{"name":"ASSOCSTR_QUICKTIP","features":[466]},{"name":"ASSOCSTR_SHELLEXTENSION","features":[466]},{"name":"ASSOCSTR_SHELLNEWVALUE","features":[466]},{"name":"ASSOCSTR_SUPPORTED_URI_PROTOCOLS","features":[466]},{"name":"ASSOCSTR_TILEINFO","features":[466]},{"name":"ASSOC_FILTER","features":[466]},{"name":"ASSOC_FILTER_NONE","features":[466]},{"name":"ASSOC_FILTER_RECOMMENDED","features":[466]},{"name":"ATTACHMENT_ACTION","features":[466]},{"name":"ATTACHMENT_ACTION_CANCEL","features":[466]},{"name":"ATTACHMENT_ACTION_EXEC","features":[466]},{"name":"ATTACHMENT_ACTION_SAVE","features":[466]},{"name":"ATTACHMENT_PROMPT","features":[466]},{"name":"ATTACHMENT_PROMPT_EXEC","features":[466]},{"name":"ATTACHMENT_PROMPT_EXEC_OR_SAVE","features":[466]},{"name":"ATTACHMENT_PROMPT_NONE","features":[466]},{"name":"ATTACHMENT_PROMPT_SAVE","features":[466]},{"name":"AT_FILEEXTENSION","features":[466]},{"name":"AT_MIMETYPE","features":[466]},{"name":"AT_STARTMENUCLIENT","features":[466]},{"name":"AT_URLPROTOCOL","features":[466]},{"name":"AUTOCOMPLETELISTOPTIONS","features":[466]},{"name":"AUTOCOMPLETEOPTIONS","features":[466]},{"name":"AUTO_SCROLL_DATA","features":[305,466]},{"name":"AVMW_320","features":[466]},{"name":"AVMW_500","features":[466]},{"name":"AVMW_DEFAULT","features":[466]},{"name":"AVO_LANDSCAPE","features":[466]},{"name":"AVO_PORTRAIT","features":[466]},{"name":"AVSP_CUSTOM","features":[466]},{"name":"AVSP_DEFAULT","features":[466]},{"name":"AVSP_USE_HALF","features":[466]},{"name":"AVSP_USE_LESS","features":[466]},{"name":"AVSP_USE_MINIMUM","features":[466]},{"name":"AVSP_USE_MORE","features":[466]},{"name":"AVSP_USE_NONE","features":[466]},{"name":"AVS_FILLED","features":[466]},{"name":"AVS_FULLSCREEN_LANDSCAPE","features":[466]},{"name":"AVS_FULLSCREEN_PORTRAIT","features":[466]},{"name":"AVS_SNAPPED","features":[466]},{"name":"AccessibilityDockingService","features":[466]},{"name":"AllowSmallerSize","features":[466]},{"name":"AlphabeticalCategorizer","features":[466]},{"name":"AppShellVerbHandler","features":[466]},{"name":"AppStartupLink","features":[466]},{"name":"AppVisibility","features":[466]},{"name":"ApplicationActivationManager","features":[466]},{"name":"ApplicationAssociationRegistration","features":[466]},{"name":"ApplicationAssociationRegistrationUI","features":[466]},{"name":"ApplicationDesignModeSettings","features":[466]},{"name":"ApplicationDestinations","features":[466]},{"name":"ApplicationDocumentLists","features":[466]},{"name":"AssocCreate","features":[466]},{"name":"AssocCreateForClasses","features":[366,466]},{"name":"AssocGetDetailsOfPropKey","features":[305,632,376]},{"name":"AssocGetPerceivedType","features":[632]},{"name":"AssocIsDangerous","features":[305,466]},{"name":"AssocQueryKeyA","features":[366,466]},{"name":"AssocQueryKeyW","features":[366,466]},{"name":"AssocQueryStringA","features":[466]},{"name":"AssocQueryStringByKeyA","features":[366,466]},{"name":"AssocQueryStringByKeyW","features":[366,466]},{"name":"AssocQueryStringW","features":[466]},{"name":"AttachmentServices","features":[466]},{"name":"BANDINFOSFB","features":[305,632]},{"name":"BANDSITECID","features":[466]},{"name":"BANDSITEINFO","features":[466]},{"name":"BANNER_NOTIFICATION","features":[466]},{"name":"BANNER_NOTIFICATION_EVENT","features":[466]},{"name":"BASEBROWSERDATALH","features":[305,356,415,632]},{"name":"BASEBROWSERDATAXP","features":[305,356,415,632]},{"name":"BFFCALLBACK","features":[305,466]},{"name":"BFFM_ENABLEOK","features":[466]},{"name":"BFFM_INITIALIZED","features":[466]},{"name":"BFFM_IUNKNOWN","features":[466]},{"name":"BFFM_SELCHANGED","features":[466]},{"name":"BFFM_SETEXPANDED","features":[466]},{"name":"BFFM_SETOKTEXT","features":[466]},{"name":"BFFM_SETSELECTION","features":[466]},{"name":"BFFM_SETSELECTIONA","features":[466]},{"name":"BFFM_SETSELECTIONW","features":[466]},{"name":"BFFM_SETSTATUSTEXT","features":[466]},{"name":"BFFM_SETSTATUSTEXTA","features":[466]},{"name":"BFFM_SETSTATUSTEXTW","features":[466]},{"name":"BFFM_VALIDATEFAILED","features":[466]},{"name":"BFFM_VALIDATEFAILEDA","features":[466]},{"name":"BFFM_VALIDATEFAILEDW","features":[466]},{"name":"BFO_ADD_IE_TOCAPTIONBAR","features":[466]},{"name":"BFO_BOTH_OPTIONS","features":[466]},{"name":"BFO_BROWSER_PERSIST_SETTINGS","features":[466]},{"name":"BFO_BROWSE_NO_IN_NEW_PROCESS","features":[466]},{"name":"BFO_ENABLE_HYPERLINK_TRACKING","features":[466]},{"name":"BFO_GO_HOME_PAGE","features":[466]},{"name":"BFO_NONE","features":[466]},{"name":"BFO_NO_PARENT_FOLDER_SUPPORT","features":[466]},{"name":"BFO_NO_REOPEN_NEXT_RESTART","features":[466]},{"name":"BFO_PREFER_IEPROCESS","features":[466]},{"name":"BFO_QUERY_ALL","features":[466]},{"name":"BFO_RENAME_FOLDER_OPTIONS_TOINTERNET","features":[466]},{"name":"BFO_SHOW_NAVIGATION_CANCELLED","features":[466]},{"name":"BFO_SUBSTITUE_INTERNET_START_PAGE","features":[466]},{"name":"BFO_USE_DIALUP_REF","features":[466]},{"name":"BFO_USE_IE_LOGOBANDING","features":[466]},{"name":"BFO_USE_IE_OFFLINE_SUPPORT","features":[466]},{"name":"BFO_USE_IE_STATUSBAR","features":[466]},{"name":"BFO_USE_IE_TOOLBAR","features":[466]},{"name":"BHID_AssociationArray","features":[466]},{"name":"BHID_DataObject","features":[466]},{"name":"BHID_EnumAssocHandlers","features":[466]},{"name":"BHID_EnumItems","features":[466]},{"name":"BHID_FilePlaceholder","features":[466]},{"name":"BHID_Filter","features":[466]},{"name":"BHID_LinkTargetItem","features":[466]},{"name":"BHID_PropertyStore","features":[466]},{"name":"BHID_RandomAccessStream","features":[466]},{"name":"BHID_SFObject","features":[466]},{"name":"BHID_SFUIObject","features":[466]},{"name":"BHID_SFViewObject","features":[466]},{"name":"BHID_Storage","features":[466]},{"name":"BHID_StorageEnum","features":[466]},{"name":"BHID_StorageItem","features":[466]},{"name":"BHID_Stream","features":[466]},{"name":"BHID_ThumbnailHandler","features":[466]},{"name":"BHID_Transfer","features":[466]},{"name":"BIF_BROWSEFILEJUNCTIONS","features":[466]},{"name":"BIF_BROWSEFORCOMPUTER","features":[466]},{"name":"BIF_BROWSEFORPRINTER","features":[466]},{"name":"BIF_BROWSEINCLUDEFILES","features":[466]},{"name":"BIF_BROWSEINCLUDEURLS","features":[466]},{"name":"BIF_DONTGOBELOWDOMAIN","features":[466]},{"name":"BIF_EDITBOX","features":[466]},{"name":"BIF_NEWDIALOGSTYLE","features":[466]},{"name":"BIF_NONEWFOLDERBUTTON","features":[466]},{"name":"BIF_NOTRANSLATETARGETS","features":[466]},{"name":"BIF_PREFER_INTERNET_SHORTCUT","features":[466]},{"name":"BIF_RETURNFSANCESTORS","features":[466]},{"name":"BIF_RETURNONLYFSDIRS","features":[466]},{"name":"BIF_SHAREABLE","features":[466]},{"name":"BIF_STATUSTEXT","features":[466]},{"name":"BIF_UAHINT","features":[466]},{"name":"BIF_VALIDATE","features":[466]},{"name":"BIND_INTERRUPTABLE","features":[466]},{"name":"BMICON_LARGE","features":[466]},{"name":"BMICON_SMALL","features":[466]},{"name":"BNE_Button1Clicked","features":[466]},{"name":"BNE_Button2Clicked","features":[466]},{"name":"BNE_Closed","features":[466]},{"name":"BNE_Dismissed","features":[466]},{"name":"BNE_Hovered","features":[466]},{"name":"BNE_Rendered","features":[466]},{"name":"BNSTATE","features":[466]},{"name":"BNS_BEGIN_NAVIGATE","features":[466]},{"name":"BNS_NAVIGATE","features":[466]},{"name":"BNS_NORMAL","features":[466]},{"name":"BROWSEINFOA","features":[305,632]},{"name":"BROWSEINFOW","features":[305,632]},{"name":"BSF_CANMAXIMIZE","features":[466]},{"name":"BSF_DELEGATEDNAVIGATION","features":[466]},{"name":"BSF_DONTSHOWNAVCANCELPAGE","features":[466]},{"name":"BSF_FEEDNAVIGATION","features":[466]},{"name":"BSF_FEEDSUBSCRIBED","features":[466]},{"name":"BSF_HTMLNAVCANCELED","features":[466]},{"name":"BSF_MERGEDMENUS","features":[466]},{"name":"BSF_NAVNOHISTORY","features":[466]},{"name":"BSF_NOLOCALFILEWARNING","features":[466]},{"name":"BSF_REGISTERASDROPTARGET","features":[466]},{"name":"BSF_RESIZABLE","features":[466]},{"name":"BSF_SETNAVIGATABLECODEPAGE","features":[466]},{"name":"BSF_THEATERMODE","features":[466]},{"name":"BSF_TOPBROWSER","features":[466]},{"name":"BSF_TRUSTEDFORACTIVEX","features":[466]},{"name":"BSF_UISETBYAUTOMATION","features":[466]},{"name":"BSID_BANDADDED","features":[466]},{"name":"BSID_BANDREMOVED","features":[466]},{"name":"BSIM_STATE","features":[466]},{"name":"BSIM_STYLE","features":[466]},{"name":"BSIS_ALWAYSGRIPPER","features":[466]},{"name":"BSIS_AUTOGRIPPER","features":[466]},{"name":"BSIS_FIXEDORDER","features":[466]},{"name":"BSIS_LEFTALIGN","features":[466]},{"name":"BSIS_LOCKED","features":[466]},{"name":"BSIS_NOCAPTION","features":[466]},{"name":"BSIS_NOCONTEXTMENU","features":[466]},{"name":"BSIS_NODROPTARGET","features":[466]},{"name":"BSIS_NOGRIPPER","features":[466]},{"name":"BSIS_PREFERNOLINEBREAK","features":[466]},{"name":"BSIS_PRESERVEORDERDURINGLAYOUT","features":[466]},{"name":"BSIS_SINGLECLICK","features":[466]},{"name":"BSSF_NOTITLE","features":[466]},{"name":"BSSF_UNDELETEABLE","features":[466]},{"name":"BSSF_VISIBLE","features":[466]},{"name":"BUFFLEN","features":[466]},{"name":"BrowserNavConstants","features":[466]},{"name":"CABINETSTATE","features":[466]},{"name":"CABINETSTATE_VERSION","features":[466]},{"name":"CAMERAROLL_E_NO_DOWNSAMPLING_REQUIRED","features":[466]},{"name":"CATEGORYINFO_FLAGS","features":[466]},{"name":"CATEGORY_INFO","features":[466]},{"name":"CATID_BrowsableShellExt","features":[466]},{"name":"CATID_BrowseInPlace","features":[466]},{"name":"CATID_CommBand","features":[466]},{"name":"CATID_DeskBand","features":[466]},{"name":"CATID_FilePlaceholderMergeHandler","features":[466]},{"name":"CATID_InfoBand","features":[466]},{"name":"CATID_LocationFactory","features":[466]},{"name":"CATID_LocationProvider","features":[466]},{"name":"CATID_SearchableApplication","features":[466]},{"name":"CATINFO_COLLAPSED","features":[466]},{"name":"CATINFO_EXPANDED","features":[466]},{"name":"CATINFO_HIDDEN","features":[466]},{"name":"CATINFO_NOHEADER","features":[466]},{"name":"CATINFO_NOHEADERCOUNT","features":[466]},{"name":"CATINFO_NORMAL","features":[466]},{"name":"CATINFO_NOTCOLLAPSIBLE","features":[466]},{"name":"CATINFO_SEPARATE_IMAGES","features":[466]},{"name":"CATINFO_SHOWEMPTY","features":[466]},{"name":"CATINFO_SUBSETTED","features":[466]},{"name":"CATSORT_DEFAULT","features":[466]},{"name":"CATSORT_FLAGS","features":[466]},{"name":"CATSORT_NAME","features":[466]},{"name":"CDB2GVF_ADDSHIELD","features":[466]},{"name":"CDB2GVF_ALLOWPREVIEWPANE","features":[466]},{"name":"CDB2GVF_ISFILESAVE","features":[466]},{"name":"CDB2GVF_ISFOLDERPICKER","features":[466]},{"name":"CDB2GVF_NOINCLUDEITEM","features":[466]},{"name":"CDB2GVF_NOSELECTVERB","features":[466]},{"name":"CDB2GVF_SHOWALLFILES","features":[466]},{"name":"CDB2N_CONTEXTMENU_DONE","features":[466]},{"name":"CDB2N_CONTEXTMENU_START","features":[466]},{"name":"CDBE_RET_DEFAULT","features":[466]},{"name":"CDBE_RET_DONTRUNOTHEREXTS","features":[466]},{"name":"CDBE_RET_STOPWIZARD","features":[466]},{"name":"CDBE_TYPE_ALL","features":[466]},{"name":"CDBE_TYPE_DATA","features":[466]},{"name":"CDBE_TYPE_MUSIC","features":[466]},{"name":"CDBOSC_KILLFOCUS","features":[466]},{"name":"CDBOSC_RENAME","features":[466]},{"name":"CDBOSC_SELCHANGE","features":[466]},{"name":"CDBOSC_SETFOCUS","features":[466]},{"name":"CDBOSC_STATECHANGE","features":[466]},{"name":"CDBURNINGEXTENSIONRET","features":[466]},{"name":"CDBurn","features":[466]},{"name":"CDCONTROLSTATEF","features":[466]},{"name":"CDCS_ENABLED","features":[466]},{"name":"CDCS_ENABLEDVISIBLE","features":[466]},{"name":"CDCS_INACTIVE","features":[466]},{"name":"CDCS_VISIBLE","features":[466]},{"name":"CDefFolderMenu_Create2","features":[305,356,366,632]},{"name":"CFSTR_AUTOPLAY_SHELLIDLISTS","features":[466]},{"name":"CFSTR_DROPDESCRIPTION","features":[466]},{"name":"CFSTR_FILECONTENTS","features":[466]},{"name":"CFSTR_FILEDESCRIPTOR","features":[466]},{"name":"CFSTR_FILEDESCRIPTORA","features":[466]},{"name":"CFSTR_FILEDESCRIPTORW","features":[466]},{"name":"CFSTR_FILENAME","features":[466]},{"name":"CFSTR_FILENAMEA","features":[466]},{"name":"CFSTR_FILENAMEMAP","features":[466]},{"name":"CFSTR_FILENAMEMAPA","features":[466]},{"name":"CFSTR_FILENAMEMAPW","features":[466]},{"name":"CFSTR_FILENAMEW","features":[466]},{"name":"CFSTR_FILE_ATTRIBUTES_ARRAY","features":[466]},{"name":"CFSTR_INDRAGLOOP","features":[466]},{"name":"CFSTR_INETURL","features":[466]},{"name":"CFSTR_INETURLA","features":[466]},{"name":"CFSTR_INETURLW","features":[466]},{"name":"CFSTR_INVOKECOMMAND_DROPPARAM","features":[466]},{"name":"CFSTR_LOGICALPERFORMEDDROPEFFECT","features":[466]},{"name":"CFSTR_MOUNTEDVOLUME","features":[466]},{"name":"CFSTR_NETRESOURCES","features":[466]},{"name":"CFSTR_PASTESUCCEEDED","features":[466]},{"name":"CFSTR_PERFORMEDDROPEFFECT","features":[466]},{"name":"CFSTR_PERSISTEDDATAOBJECT","features":[466]},{"name":"CFSTR_PREFERREDDROPEFFECT","features":[466]},{"name":"CFSTR_PRINTERGROUP","features":[466]},{"name":"CFSTR_SHELLDROPHANDLER","features":[466]},{"name":"CFSTR_SHELLIDLIST","features":[466]},{"name":"CFSTR_SHELLIDLISTOFFSET","features":[466]},{"name":"CFSTR_SHELLURL","features":[466]},{"name":"CFSTR_TARGETCLSID","features":[466]},{"name":"CFSTR_UNTRUSTEDDRAGDROP","features":[466]},{"name":"CFSTR_ZONEIDENTIFIER","features":[466]},{"name":"CGID_DefView","features":[466]},{"name":"CGID_Explorer","features":[466]},{"name":"CGID_ExplorerBarDoc","features":[466]},{"name":"CGID_MENUDESKBAR","features":[466]},{"name":"CGID_ShellDocView","features":[466]},{"name":"CGID_ShellServiceObject","features":[466]},{"name":"CGID_ShortCut","features":[466]},{"name":"CIDA","features":[466]},{"name":"CIDLData_CreateFromIDArray","features":[356,632]},{"name":"CIE4ConnectionPoint","features":[356,466]},{"name":"CLOSEPROPS_DISCARD","features":[466]},{"name":"CLOSEPROPS_NONE","features":[466]},{"name":"CLSID_ACLCustomMRU","features":[466]},{"name":"CLSID_ACLHistory","features":[466]},{"name":"CLSID_ACLMRU","features":[466]},{"name":"CLSID_ACLMulti","features":[466]},{"name":"CLSID_ACListISF","features":[466]},{"name":"CLSID_ActiveDesktop","features":[466]},{"name":"CLSID_AutoComplete","features":[466]},{"name":"CLSID_CAnchorBrowsePropertyPage","features":[466]},{"name":"CLSID_CDocBrowsePropertyPage","features":[466]},{"name":"CLSID_CFSIconOverlayManager","features":[466]},{"name":"CLSID_CImageBrowsePropertyPage","features":[466]},{"name":"CLSID_CURLSearchHook","features":[466]},{"name":"CLSID_CUrlHistory","features":[466]},{"name":"CLSID_CUrlHistoryBoth","features":[466]},{"name":"CLSID_ControlPanel","features":[466]},{"name":"CLSID_DarwinAppPublisher","features":[466]},{"name":"CLSID_DocHostUIHandler","features":[466]},{"name":"CLSID_DragDropHelper","features":[466]},{"name":"CLSID_FileTypes","features":[466]},{"name":"CLSID_FolderItemsMultiLevel","features":[466]},{"name":"CLSID_FolderShortcut","features":[466]},{"name":"CLSID_HWShellExecute","features":[466]},{"name":"CLSID_ISFBand","features":[466]},{"name":"CLSID_Internet","features":[466]},{"name":"CLSID_InternetButtons","features":[466]},{"name":"CLSID_InternetShortcut","features":[466]},{"name":"CLSID_LinkColumnProvider","features":[466]},{"name":"CLSID_MSOButtons","features":[466]},{"name":"CLSID_MenuBand","features":[466]},{"name":"CLSID_MenuBandSite","features":[466]},{"name":"CLSID_MenuToolbarBase","features":[466]},{"name":"CLSID_MyComputer","features":[466]},{"name":"CLSID_MyDocuments","features":[466]},{"name":"CLSID_NetworkDomain","features":[466]},{"name":"CLSID_NetworkServer","features":[466]},{"name":"CLSID_NetworkShare","features":[466]},{"name":"CLSID_NewMenu","features":[466]},{"name":"CLSID_Printers","features":[466]},{"name":"CLSID_ProgressDialog","features":[466]},{"name":"CLSID_QueryAssociations","features":[466]},{"name":"CLSID_QuickLinks","features":[466]},{"name":"CLSID_RecycleBin","features":[466]},{"name":"CLSID_ShellFldSetExt","features":[466]},{"name":"CLSID_ShellThumbnailDiskCache","features":[466]},{"name":"CLSID_ToolbarExtButtons","features":[466]},{"name":"CMDID_INTSHORTCUTCREATE","features":[466]},{"name":"CMDSTR_NEWFOLDER","features":[466]},{"name":"CMDSTR_NEWFOLDERA","features":[466]},{"name":"CMDSTR_NEWFOLDERW","features":[466]},{"name":"CMDSTR_VIEWDETAILS","features":[466]},{"name":"CMDSTR_VIEWDETAILSA","features":[466]},{"name":"CMDSTR_VIEWDETAILSW","features":[466]},{"name":"CMDSTR_VIEWLIST","features":[466]},{"name":"CMDSTR_VIEWLISTA","features":[466]},{"name":"CMDSTR_VIEWLISTW","features":[466]},{"name":"CMF_ASYNCVERBSTATE","features":[466]},{"name":"CMF_CANRENAME","features":[466]},{"name":"CMF_DEFAULTONLY","features":[466]},{"name":"CMF_DISABLEDVERBS","features":[466]},{"name":"CMF_DONOTPICKDEFAULT","features":[466]},{"name":"CMF_EXPLORE","features":[466]},{"name":"CMF_EXTENDEDVERBS","features":[466]},{"name":"CMF_INCLUDESTATIC","features":[466]},{"name":"CMF_ITEMMENU","features":[466]},{"name":"CMF_NODEFAULT","features":[466]},{"name":"CMF_NORMAL","features":[466]},{"name":"CMF_NOVERBS","features":[466]},{"name":"CMF_OPTIMIZEFORINVOKE","features":[466]},{"name":"CMF_RESERVED","features":[466]},{"name":"CMF_SYNCCASCADEMENU","features":[466]},{"name":"CMF_VERBSONLY","features":[466]},{"name":"CMIC_MASK_CONTROL_DOWN","features":[466]},{"name":"CMIC_MASK_PTINVOKE","features":[466]},{"name":"CMIC_MASK_SHIFT_DOWN","features":[466]},{"name":"CMINVOKECOMMANDINFO","features":[305,466]},{"name":"CMINVOKECOMMANDINFOEX","features":[305,466]},{"name":"CMINVOKECOMMANDINFOEX_REMOTE","features":[305,466]},{"name":"CM_COLUMNINFO","features":[466]},{"name":"CM_ENUM_ALL","features":[466]},{"name":"CM_ENUM_FLAGS","features":[466]},{"name":"CM_ENUM_VISIBLE","features":[466]},{"name":"CM_MASK","features":[466]},{"name":"CM_MASK_DEFAULTWIDTH","features":[466]},{"name":"CM_MASK_IDEALWIDTH","features":[466]},{"name":"CM_MASK_NAME","features":[466]},{"name":"CM_MASK_STATE","features":[466]},{"name":"CM_MASK_WIDTH","features":[466]},{"name":"CM_SET_WIDTH_VALUE","features":[466]},{"name":"CM_STATE","features":[466]},{"name":"CM_STATE_ALWAYSVISIBLE","features":[466]},{"name":"CM_STATE_FIXEDWIDTH","features":[466]},{"name":"CM_STATE_NONE","features":[466]},{"name":"CM_STATE_NOSORTBYFOLDERNESS","features":[466]},{"name":"CM_STATE_VISIBLE","features":[466]},{"name":"CM_WIDTH_AUTOSIZE","features":[466]},{"name":"CM_WIDTH_USEDEFAULT","features":[466]},{"name":"COMPONENT_DEFAULT_LEFT","features":[466]},{"name":"COMPONENT_DEFAULT_TOP","features":[466]},{"name":"COMPONENT_TOP","features":[466]},{"name":"COMP_ELEM_CHECKED","features":[466]},{"name":"COMP_ELEM_CURITEMSTATE","features":[466]},{"name":"COMP_ELEM_DIRTY","features":[466]},{"name":"COMP_ELEM_FRIENDLYNAME","features":[466]},{"name":"COMP_ELEM_NOSCROLL","features":[466]},{"name":"COMP_ELEM_ORIGINAL_CSI","features":[466]},{"name":"COMP_ELEM_POS_LEFT","features":[466]},{"name":"COMP_ELEM_POS_TOP","features":[466]},{"name":"COMP_ELEM_POS_ZINDEX","features":[466]},{"name":"COMP_ELEM_RESTORED_CSI","features":[466]},{"name":"COMP_ELEM_SIZE_HEIGHT","features":[466]},{"name":"COMP_ELEM_SIZE_WIDTH","features":[466]},{"name":"COMP_ELEM_SOURCE","features":[466]},{"name":"COMP_ELEM_SUBSCRIBEDURL","features":[466]},{"name":"COMP_ELEM_TYPE","features":[466]},{"name":"COMP_TYPE_CFHTML","features":[466]},{"name":"COMP_TYPE_CONTROL","features":[466]},{"name":"COMP_TYPE_HTMLDOC","features":[466]},{"name":"COMP_TYPE_MAX","features":[466]},{"name":"COMP_TYPE_PICTURE","features":[466]},{"name":"COMP_TYPE_WEBSITE","features":[466]},{"name":"CONFIRM_CONFLICT_ITEM","features":[466]},{"name":"CONFIRM_CONFLICT_RESULT_INFO","features":[466]},{"name":"CONFLICT_RESOLUTION_CLSID_KEY","features":[466]},{"name":"COPYENGINE_E_ACCESSDENIED_READONLY","features":[466]},{"name":"COPYENGINE_E_ACCESS_DENIED_DEST","features":[466]},{"name":"COPYENGINE_E_ACCESS_DENIED_SRC","features":[466]},{"name":"COPYENGINE_E_ALREADY_EXISTS_FOLDER","features":[466]},{"name":"COPYENGINE_E_ALREADY_EXISTS_NORMAL","features":[466]},{"name":"COPYENGINE_E_ALREADY_EXISTS_READONLY","features":[466]},{"name":"COPYENGINE_E_ALREADY_EXISTS_SYSTEM","features":[466]},{"name":"COPYENGINE_E_BLOCKED_BY_DLP_POLICY","features":[466]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[466]},{"name":"COPYENGINE_E_BLOCKED_BY_EDP_POLICY","features":[466]},{"name":"COPYENGINE_E_CANCELLED","features":[466]},{"name":"COPYENGINE_E_CANNOT_MOVE_FROM_RECYCLE_BIN","features":[466]},{"name":"COPYENGINE_E_CANNOT_MOVE_SHARED_FOLDER","features":[466]},{"name":"COPYENGINE_E_CANT_REACH_SOURCE","features":[466]},{"name":"COPYENGINE_E_DEST_IS_RO_CD","features":[466]},{"name":"COPYENGINE_E_DEST_IS_RO_DVD","features":[466]},{"name":"COPYENGINE_E_DEST_IS_RW_CD","features":[466]},{"name":"COPYENGINE_E_DEST_IS_RW_DVD","features":[466]},{"name":"COPYENGINE_E_DEST_IS_R_CD","features":[466]},{"name":"COPYENGINE_E_DEST_IS_R_DVD","features":[466]},{"name":"COPYENGINE_E_DEST_SAME_TREE","features":[466]},{"name":"COPYENGINE_E_DEST_SUBTREE","features":[466]},{"name":"COPYENGINE_E_DIFF_DIR","features":[466]},{"name":"COPYENGINE_E_DIR_NOT_EMPTY","features":[466]},{"name":"COPYENGINE_E_DISK_FULL","features":[466]},{"name":"COPYENGINE_E_DISK_FULL_CLEAN","features":[466]},{"name":"COPYENGINE_E_EA_LOSS","features":[466]},{"name":"COPYENGINE_E_EA_NOT_SUPPORTED","features":[466]},{"name":"COPYENGINE_E_ENCRYPTION_LOSS","features":[466]},{"name":"COPYENGINE_E_FAT_MAX_IN_ROOT","features":[466]},{"name":"COPYENGINE_E_FILE_IS_FLD_DEST","features":[466]},{"name":"COPYENGINE_E_FILE_TOO_LARGE","features":[466]},{"name":"COPYENGINE_E_FLD_IS_FILE_DEST","features":[466]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_ERROR","features":[466]},{"name":"COPYENGINE_E_INTERNET_ITEM_STORAGE_PROVIDER_PAUSED","features":[466]},{"name":"COPYENGINE_E_INTERNET_ITEM_UNAVAILABLE","features":[466]},{"name":"COPYENGINE_E_INVALID_FILES_DEST","features":[466]},{"name":"COPYENGINE_E_INVALID_FILES_SRC","features":[466]},{"name":"COPYENGINE_E_MANY_SRC_1_DEST","features":[466]},{"name":"COPYENGINE_E_NET_DISCONNECT_DEST","features":[466]},{"name":"COPYENGINE_E_NET_DISCONNECT_SRC","features":[466]},{"name":"COPYENGINE_E_NEWFILE_NAME_TOO_LONG","features":[466]},{"name":"COPYENGINE_E_NEWFOLDER_NAME_TOO_LONG","features":[466]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_DEST","features":[466]},{"name":"COPYENGINE_E_PATH_NOT_FOUND_SRC","features":[466]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_DEST","features":[466]},{"name":"COPYENGINE_E_PATH_TOO_DEEP_SRC","features":[466]},{"name":"COPYENGINE_E_PROPERTIES_LOSS","features":[466]},{"name":"COPYENGINE_E_PROPERTY_LOSS","features":[466]},{"name":"COPYENGINE_E_RECYCLE_BIN_NOT_FOUND","features":[466]},{"name":"COPYENGINE_E_RECYCLE_FORCE_NUKE","features":[466]},{"name":"COPYENGINE_E_RECYCLE_PATH_TOO_LONG","features":[466]},{"name":"COPYENGINE_E_RECYCLE_SIZE_TOO_BIG","features":[466]},{"name":"COPYENGINE_E_RECYCLE_UNKNOWN_ERROR","features":[466]},{"name":"COPYENGINE_E_REDIRECTED_TO_WEBPAGE","features":[466]},{"name":"COPYENGINE_E_REMOVABLE_FULL","features":[466]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT","features":[466]},{"name":"COPYENGINE_E_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[466]},{"name":"COPYENGINE_E_REQUIRES_ELEVATION","features":[466]},{"name":"COPYENGINE_E_RMS_BLOCKED_BY_EDP_FOR_REMOVABLE_DRIVE","features":[466]},{"name":"COPYENGINE_E_RMS_REQUIRES_EDP_CONSENT_FOR_REMOVABLE_DRIVE","features":[466]},{"name":"COPYENGINE_E_ROOT_DIR_DEST","features":[466]},{"name":"COPYENGINE_E_ROOT_DIR_SRC","features":[466]},{"name":"COPYENGINE_E_SAME_FILE","features":[466]},{"name":"COPYENGINE_E_SERVER_BAD_FILE_TYPE","features":[466]},{"name":"COPYENGINE_E_SHARING_VIOLATION_DEST","features":[466]},{"name":"COPYENGINE_E_SHARING_VIOLATION_SRC","features":[466]},{"name":"COPYENGINE_E_SILENT_FAIL_BY_DLP_POLICY","features":[466]},{"name":"COPYENGINE_E_SRC_IS_RO_CD","features":[466]},{"name":"COPYENGINE_E_SRC_IS_RO_DVD","features":[466]},{"name":"COPYENGINE_E_SRC_IS_RW_CD","features":[466]},{"name":"COPYENGINE_E_SRC_IS_RW_DVD","features":[466]},{"name":"COPYENGINE_E_SRC_IS_R_CD","features":[466]},{"name":"COPYENGINE_E_SRC_IS_R_DVD","features":[466]},{"name":"COPYENGINE_E_STREAM_LOSS","features":[466]},{"name":"COPYENGINE_E_USER_CANCELLED","features":[466]},{"name":"COPYENGINE_E_WARNED_BY_DLP_POLICY","features":[466]},{"name":"COPYENGINE_S_ALREADY_DONE","features":[466]},{"name":"COPYENGINE_S_CLOSE_PROGRAM","features":[466]},{"name":"COPYENGINE_S_COLLISIONRESOLVED","features":[466]},{"name":"COPYENGINE_S_DONT_PROCESS_CHILDREN","features":[466]},{"name":"COPYENGINE_S_KEEP_BOTH","features":[466]},{"name":"COPYENGINE_S_MERGE","features":[466]},{"name":"COPYENGINE_S_NOT_HANDLED","features":[466]},{"name":"COPYENGINE_S_PENDING","features":[466]},{"name":"COPYENGINE_S_PENDING_DELETE","features":[466]},{"name":"COPYENGINE_S_PROGRESS_PAUSE","features":[466]},{"name":"COPYENGINE_S_USER_IGNORED","features":[466]},{"name":"COPYENGINE_S_USER_RETRY","features":[466]},{"name":"COPYENGINE_S_YES","features":[466]},{"name":"CPAO_EMPTY_CONNECTED","features":[466]},{"name":"CPAO_EMPTY_LOCAL","features":[466]},{"name":"CPAO_NONE","features":[466]},{"name":"CPCFO_ENABLE_PASSWORD_REVEAL","features":[466]},{"name":"CPCFO_ENABLE_TOUCH_KEYBOARD_AUTO_INVOKE","features":[466]},{"name":"CPCFO_IS_EMAIL_ADDRESS","features":[466]},{"name":"CPCFO_NONE","features":[466]},{"name":"CPCFO_NUMBERS_ONLY","features":[466]},{"name":"CPCFO_SHOW_ENGLISH_KEYBOARD","features":[466]},{"name":"CPFG_CREDENTIAL_PROVIDER_LABEL","features":[466]},{"name":"CPFG_CREDENTIAL_PROVIDER_LOGO","features":[466]},{"name":"CPFG_LOGON_PASSWORD","features":[466]},{"name":"CPFG_LOGON_USERNAME","features":[466]},{"name":"CPFG_SMARTCARD_PIN","features":[466]},{"name":"CPFG_SMARTCARD_USERNAME","features":[466]},{"name":"CPFG_STANDALONE_SUBMIT_BUTTON","features":[466]},{"name":"CPFG_STYLE_LINK_AS_BUTTON","features":[466]},{"name":"CPFIS_DISABLED","features":[466]},{"name":"CPFIS_FOCUSED","features":[466]},{"name":"CPFIS_NONE","features":[466]},{"name":"CPFIS_READONLY","features":[466]},{"name":"CPFS_DISPLAY_IN_BOTH","features":[466]},{"name":"CPFS_DISPLAY_IN_DESELECTED_TILE","features":[466]},{"name":"CPFS_DISPLAY_IN_SELECTED_TILE","features":[466]},{"name":"CPFS_HIDDEN","features":[466]},{"name":"CPFT_CHECKBOX","features":[466]},{"name":"CPFT_COMBOBOX","features":[466]},{"name":"CPFT_COMMAND_LINK","features":[466]},{"name":"CPFT_EDIT_TEXT","features":[466]},{"name":"CPFT_INVALID","features":[466]},{"name":"CPFT_LARGE_TEXT","features":[466]},{"name":"CPFT_PASSWORD_TEXT","features":[466]},{"name":"CPFT_SMALL_TEXT","features":[466]},{"name":"CPFT_SUBMIT_BUTTON","features":[466]},{"name":"CPFT_TILE_IMAGE","features":[466]},{"name":"CPGSR_NO_CREDENTIAL_FINISHED","features":[466]},{"name":"CPGSR_NO_CREDENTIAL_NOT_FINISHED","features":[466]},{"name":"CPGSR_RETURN_CREDENTIAL_FINISHED","features":[466]},{"name":"CPGSR_RETURN_NO_CREDENTIAL_FINISHED","features":[466]},{"name":"CPLINFO","features":[466]},{"name":"CPLPAGE_DISPLAY_BACKGROUND","features":[466]},{"name":"CPLPAGE_KEYBOARD_SPEED","features":[466]},{"name":"CPLPAGE_MOUSE_BUTTONS","features":[466]},{"name":"CPLPAGE_MOUSE_PTRMOTION","features":[466]},{"name":"CPLPAGE_MOUSE_WHEEL","features":[466]},{"name":"CPL_DBLCLK","features":[466]},{"name":"CPL_DYNAMIC_RES","features":[466]},{"name":"CPL_EXIT","features":[466]},{"name":"CPL_GETCOUNT","features":[466]},{"name":"CPL_INIT","features":[466]},{"name":"CPL_INQUIRE","features":[466]},{"name":"CPL_NEWINQUIRE","features":[466]},{"name":"CPL_SELECT","features":[466]},{"name":"CPL_SETUP","features":[466]},{"name":"CPL_STARTWPARMS","features":[466]},{"name":"CPL_STARTWPARMSA","features":[466]},{"name":"CPL_STARTWPARMSW","features":[466]},{"name":"CPL_STOP","features":[466]},{"name":"CPSI_ERROR","features":[466]},{"name":"CPSI_NONE","features":[466]},{"name":"CPSI_SUCCESS","features":[466]},{"name":"CPSI_WARNING","features":[466]},{"name":"CPUS_CHANGE_PASSWORD","features":[466]},{"name":"CPUS_CREDUI","features":[466]},{"name":"CPUS_INVALID","features":[466]},{"name":"CPUS_LOGON","features":[466]},{"name":"CPUS_PLAP","features":[466]},{"name":"CPUS_UNLOCK_WORKSTATION","features":[466]},{"name":"CPVIEW","features":[466]},{"name":"CPVIEW_ALLITEMS","features":[466]},{"name":"CPVIEW_CATEGORY","features":[466]},{"name":"CPVIEW_CLASSIC","features":[466]},{"name":"CPVIEW_HOME","features":[466]},{"name":"CREDENTIAL_PROVIDER_ACCOUNT_OPTIONS","features":[466]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_FIELD_OPTIONS","features":[466]},{"name":"CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION","features":[466]},{"name":"CREDENTIAL_PROVIDER_FIELD_DESCRIPTOR","features":[466]},{"name":"CREDENTIAL_PROVIDER_FIELD_INTERACTIVE_STATE","features":[466]},{"name":"CREDENTIAL_PROVIDER_FIELD_STATE","features":[466]},{"name":"CREDENTIAL_PROVIDER_FIELD_TYPE","features":[466]},{"name":"CREDENTIAL_PROVIDER_GET_SERIALIZATION_RESPONSE","features":[466]},{"name":"CREDENTIAL_PROVIDER_NO_DEFAULT","features":[466]},{"name":"CREDENTIAL_PROVIDER_STATUS_ICON","features":[466]},{"name":"CREDENTIAL_PROVIDER_USAGE_SCENARIO","features":[466]},{"name":"CSC_NAVIGATEBACK","features":[466]},{"name":"CSC_NAVIGATEFORWARD","features":[466]},{"name":"CSC_UPDATECOMMANDS","features":[466]},{"name":"CSFV","features":[305,415,632]},{"name":"CSIDL_ADMINTOOLS","features":[466]},{"name":"CSIDL_ALTSTARTUP","features":[466]},{"name":"CSIDL_APPDATA","features":[466]},{"name":"CSIDL_BITBUCKET","features":[466]},{"name":"CSIDL_CDBURN_AREA","features":[466]},{"name":"CSIDL_COMMON_ADMINTOOLS","features":[466]},{"name":"CSIDL_COMMON_ALTSTARTUP","features":[466]},{"name":"CSIDL_COMMON_APPDATA","features":[466]},{"name":"CSIDL_COMMON_DESKTOPDIRECTORY","features":[466]},{"name":"CSIDL_COMMON_DOCUMENTS","features":[466]},{"name":"CSIDL_COMMON_FAVORITES","features":[466]},{"name":"CSIDL_COMMON_MUSIC","features":[466]},{"name":"CSIDL_COMMON_OEM_LINKS","features":[466]},{"name":"CSIDL_COMMON_PICTURES","features":[466]},{"name":"CSIDL_COMMON_PROGRAMS","features":[466]},{"name":"CSIDL_COMMON_STARTMENU","features":[466]},{"name":"CSIDL_COMMON_STARTUP","features":[466]},{"name":"CSIDL_COMMON_TEMPLATES","features":[466]},{"name":"CSIDL_COMMON_VIDEO","features":[466]},{"name":"CSIDL_COMPUTERSNEARME","features":[466]},{"name":"CSIDL_CONNECTIONS","features":[466]},{"name":"CSIDL_CONTROLS","features":[466]},{"name":"CSIDL_COOKIES","features":[466]},{"name":"CSIDL_DESKTOP","features":[466]},{"name":"CSIDL_DESKTOPDIRECTORY","features":[466]},{"name":"CSIDL_DRIVES","features":[466]},{"name":"CSIDL_FAVORITES","features":[466]},{"name":"CSIDL_FLAG_CREATE","features":[466]},{"name":"CSIDL_FLAG_DONT_UNEXPAND","features":[466]},{"name":"CSIDL_FLAG_DONT_VERIFY","features":[466]},{"name":"CSIDL_FLAG_MASK","features":[466]},{"name":"CSIDL_FLAG_NO_ALIAS","features":[466]},{"name":"CSIDL_FLAG_PER_USER_INIT","features":[466]},{"name":"CSIDL_FLAG_PFTI_TRACKTARGET","features":[466]},{"name":"CSIDL_FONTS","features":[466]},{"name":"CSIDL_HISTORY","features":[466]},{"name":"CSIDL_INTERNET","features":[466]},{"name":"CSIDL_INTERNET_CACHE","features":[466]},{"name":"CSIDL_LOCAL_APPDATA","features":[466]},{"name":"CSIDL_MYDOCUMENTS","features":[466]},{"name":"CSIDL_MYMUSIC","features":[466]},{"name":"CSIDL_MYPICTURES","features":[466]},{"name":"CSIDL_MYVIDEO","features":[466]},{"name":"CSIDL_NETHOOD","features":[466]},{"name":"CSIDL_NETWORK","features":[466]},{"name":"CSIDL_PERSONAL","features":[466]},{"name":"CSIDL_PRINTERS","features":[466]},{"name":"CSIDL_PRINTHOOD","features":[466]},{"name":"CSIDL_PROFILE","features":[466]},{"name":"CSIDL_PROGRAMS","features":[466]},{"name":"CSIDL_PROGRAM_FILES","features":[466]},{"name":"CSIDL_PROGRAM_FILESX86","features":[466]},{"name":"CSIDL_PROGRAM_FILES_COMMON","features":[466]},{"name":"CSIDL_PROGRAM_FILES_COMMONX86","features":[466]},{"name":"CSIDL_RECENT","features":[466]},{"name":"CSIDL_RESOURCES","features":[466]},{"name":"CSIDL_RESOURCES_LOCALIZED","features":[466]},{"name":"CSIDL_SENDTO","features":[466]},{"name":"CSIDL_STARTMENU","features":[466]},{"name":"CSIDL_STARTUP","features":[466]},{"name":"CSIDL_SYSTEM","features":[466]},{"name":"CSIDL_SYSTEMX86","features":[466]},{"name":"CSIDL_TEMPLATES","features":[466]},{"name":"CSIDL_WINDOWS","features":[466]},{"name":"CScriptErrorList","features":[466]},{"name":"CTF_COINIT","features":[466]},{"name":"CTF_COINIT_MTA","features":[466]},{"name":"CTF_COINIT_STA","features":[466]},{"name":"CTF_FREELIBANDEXIT","features":[466]},{"name":"CTF_INHERITWOW64","features":[466]},{"name":"CTF_INSIST","features":[466]},{"name":"CTF_KEYBOARD_LOCALE","features":[466]},{"name":"CTF_NOADDREFLIB","features":[466]},{"name":"CTF_OLEINITIALIZE","features":[466]},{"name":"CTF_PROCESS_REF","features":[466]},{"name":"CTF_REF_COUNTED","features":[466]},{"name":"CTF_THREAD_REF","features":[466]},{"name":"CTF_UNUSED","features":[466]},{"name":"CTF_WAIT_ALLOWCOM","features":[466]},{"name":"CTF_WAIT_NO_REENTRANCY","features":[466]},{"name":"ChrCmpIA","features":[305,466]},{"name":"ChrCmpIW","features":[305,466]},{"name":"ColorAdjustLuma","features":[305,466]},{"name":"ColorHLSToRGB","features":[305,466]},{"name":"ColorRGBToHLS","features":[305,466]},{"name":"CommandLineToArgvW","features":[466]},{"name":"CommandStateChangeConstants","features":[466]},{"name":"ConflictFolder","features":[466]},{"name":"ConnectToConnectionPoint","features":[305,356,466]},{"name":"CreateProfile","features":[466]},{"name":"DAD_AutoScroll","features":[305,466]},{"name":"DAD_DragEnterEx","features":[305,466]},{"name":"DAD_DragEnterEx2","features":[305,356,466]},{"name":"DAD_DragLeave","features":[305,466]},{"name":"DAD_DragMove","features":[305,466]},{"name":"DAD_SetDragImage","features":[305,355,466]},{"name":"DAD_ShowDragImage","features":[305,466]},{"name":"DATABLOCK_HEADER","features":[466]},{"name":"DATAOBJ_GET_ITEM_FLAGS","features":[466]},{"name":"DBCID_CLSIDOFBAR","features":[466]},{"name":"DBCID_EMPTY","features":[466]},{"name":"DBCID_GETBAR","features":[466]},{"name":"DBCID_ONDRAG","features":[466]},{"name":"DBCID_RESIZE","features":[466]},{"name":"DBCID_UPDATESIZE","features":[466]},{"name":"DBC_GS_IDEAL","features":[466]},{"name":"DBC_GS_SIZEDOWN","features":[466]},{"name":"DBC_HIDE","features":[466]},{"name":"DBC_SHOW","features":[466]},{"name":"DBC_SHOWOBSCURE","features":[466]},{"name":"DBID_BANDINFOCHANGED","features":[466]},{"name":"DBID_DELAYINIT","features":[466]},{"name":"DBID_FINISHINIT","features":[466]},{"name":"DBID_MAXIMIZEBAND","features":[466]},{"name":"DBID_PERMITAUTOHIDE","features":[466]},{"name":"DBID_PUSHCHEVRON","features":[466]},{"name":"DBID_SETWINDOWTHEME","features":[466]},{"name":"DBID_SHOWONLY","features":[466]},{"name":"DBIF_VIEWMODE_FLOATING","features":[466]},{"name":"DBIF_VIEWMODE_NORMAL","features":[466]},{"name":"DBIF_VIEWMODE_TRANSPARENT","features":[466]},{"name":"DBIF_VIEWMODE_VERTICAL","features":[466]},{"name":"DBIMF_ADDTOFRONT","features":[466]},{"name":"DBIMF_ALWAYSGRIPPER","features":[466]},{"name":"DBIMF_BKCOLOR","features":[466]},{"name":"DBIMF_BREAK","features":[466]},{"name":"DBIMF_DEBOSSED","features":[466]},{"name":"DBIMF_FIXED","features":[466]},{"name":"DBIMF_FIXEDBMP","features":[466]},{"name":"DBIMF_NOGRIPPER","features":[466]},{"name":"DBIMF_NOMARGINS","features":[466]},{"name":"DBIMF_NORMAL","features":[466]},{"name":"DBIMF_TOPALIGN","features":[466]},{"name":"DBIMF_UNDELETEABLE","features":[466]},{"name":"DBIMF_USECHEVRON","features":[466]},{"name":"DBIMF_VARIABLEHEIGHT","features":[466]},{"name":"DBIM_ACTUAL","features":[466]},{"name":"DBIM_BKCOLOR","features":[466]},{"name":"DBIM_INTEGRAL","features":[466]},{"name":"DBIM_MAXSIZE","features":[466]},{"name":"DBIM_MINSIZE","features":[466]},{"name":"DBIM_MODEFLAGS","features":[466]},{"name":"DBIM_TITLE","features":[466]},{"name":"DBPC_SELECTFIRST","features":[466]},{"name":"DEFAULTSAVEFOLDERTYPE","features":[466]},{"name":"DEFAULT_FOLDER_MENU_RESTRICTIONS","features":[466]},{"name":"DEFCONTEXTMENU","features":[305,366,632]},{"name":"DEFSHAREID_PUBLIC","features":[466]},{"name":"DEFSHAREID_USERS","features":[466]},{"name":"DEF_SHARE_ID","features":[466]},{"name":"DELEGATEITEMID","features":[466]},{"name":"DESKBANDCID","features":[466]},{"name":"DESKBANDINFO","features":[305,466]},{"name":"DESKTOP_SLIDESHOW_DIRECTION","features":[466]},{"name":"DESKTOP_SLIDESHOW_OPTIONS","features":[466]},{"name":"DESKTOP_SLIDESHOW_STATE","features":[466]},{"name":"DESKTOP_WALLPAPER_POSITION","features":[466]},{"name":"DETAILSINFO","features":[632]},{"name":"DEVICE_IMMERSIVE","features":[466]},{"name":"DEVICE_PRIMARY","features":[466]},{"name":"DFConstraint","features":[356,466]},{"name":"DFMICS","features":[305,466]},{"name":"DFMR_DEFAULT","features":[466]},{"name":"DFMR_NO_ASYNC_VERBS","features":[466]},{"name":"DFMR_NO_NATIVECPU_VERBS","features":[466]},{"name":"DFMR_NO_NONWOW_VERBS","features":[466]},{"name":"DFMR_NO_RESOURCE_VERBS","features":[466]},{"name":"DFMR_NO_STATIC_VERBS","features":[466]},{"name":"DFMR_OPTIN_HANDLERS_ONLY","features":[466]},{"name":"DFMR_RESOURCE_AND_FOLDER_VERBS_ONLY","features":[466]},{"name":"DFMR_STATIC_VERBS_ONLY","features":[466]},{"name":"DFMR_USE_SPECIFIED_HANDLERS","features":[466]},{"name":"DFMR_USE_SPECIFIED_VERBS","features":[466]},{"name":"DFM_CMD","features":[466]},{"name":"DFM_CMD_COPY","features":[466]},{"name":"DFM_CMD_DELETE","features":[466]},{"name":"DFM_CMD_LINK","features":[466]},{"name":"DFM_CMD_MODALPROP","features":[466]},{"name":"DFM_CMD_MOVE","features":[466]},{"name":"DFM_CMD_NEWFOLDER","features":[466]},{"name":"DFM_CMD_PASTE","features":[466]},{"name":"DFM_CMD_PASTELINK","features":[466]},{"name":"DFM_CMD_PASTESPECIAL","features":[466]},{"name":"DFM_CMD_PROPERTIES","features":[466]},{"name":"DFM_CMD_RENAME","features":[466]},{"name":"DFM_CMD_VIEWDETAILS","features":[466]},{"name":"DFM_CMD_VIEWLIST","features":[466]},{"name":"DFM_GETDEFSTATICID","features":[466]},{"name":"DFM_GETHELPTEXT","features":[466]},{"name":"DFM_GETHELPTEXTW","features":[466]},{"name":"DFM_GETVERBA","features":[466]},{"name":"DFM_GETVERBW","features":[466]},{"name":"DFM_INVOKECOMMAND","features":[466]},{"name":"DFM_INVOKECOMMANDEX","features":[466]},{"name":"DFM_MAPCOMMANDNAME","features":[466]},{"name":"DFM_MERGECONTEXTMENU","features":[466]},{"name":"DFM_MERGECONTEXTMENU_BOTTOM","features":[466]},{"name":"DFM_MERGECONTEXTMENU_TOP","features":[466]},{"name":"DFM_MESSAGE_ID","features":[466]},{"name":"DFM_MODIFYQCMFLAGS","features":[466]},{"name":"DFM_VALIDATECMD","features":[466]},{"name":"DFM_WM_DRAWITEM","features":[466]},{"name":"DFM_WM_INITMENUPOPUP","features":[466]},{"name":"DFM_WM_MEASUREITEM","features":[466]},{"name":"DISPID_BEGINDRAG","features":[466]},{"name":"DISPID_CHECKSTATECHANGED","features":[466]},{"name":"DISPID_COLUMNSCHANGED","features":[466]},{"name":"DISPID_CONTENTSCHANGED","features":[466]},{"name":"DISPID_CTRLMOUSEWHEEL","features":[466]},{"name":"DISPID_DEFAULTVERBINVOKED","features":[466]},{"name":"DISPID_ENTERPRESSED","features":[466]},{"name":"DISPID_ENTERPRISEIDCHANGED","features":[466]},{"name":"DISPID_EXPLORERWINDOWREADY","features":[466]},{"name":"DISPID_FILELISTENUMDONE","features":[466]},{"name":"DISPID_FILTERINVOKED","features":[466]},{"name":"DISPID_FOCUSCHANGED","features":[466]},{"name":"DISPID_FOLDERCHANGED","features":[466]},{"name":"DISPID_IADCCTL_DEFAULTCAT","features":[466]},{"name":"DISPID_IADCCTL_DIRTY","features":[466]},{"name":"DISPID_IADCCTL_FORCEX86","features":[466]},{"name":"DISPID_IADCCTL_ONDOMAIN","features":[466]},{"name":"DISPID_IADCCTL_PUBCAT","features":[466]},{"name":"DISPID_IADCCTL_SHOWPOSTSETUP","features":[466]},{"name":"DISPID_IADCCTL_SORT","features":[466]},{"name":"DISPID_ICONSIZECHANGED","features":[466]},{"name":"DISPID_INITIALENUMERATIONDONE","features":[466]},{"name":"DISPID_NOITEMSTATE_CHANGED","features":[466]},{"name":"DISPID_ORDERCHANGED","features":[466]},{"name":"DISPID_SEARCHCOMMAND_ABORT","features":[466]},{"name":"DISPID_SEARCHCOMMAND_COMPLETE","features":[466]},{"name":"DISPID_SEARCHCOMMAND_ERROR","features":[466]},{"name":"DISPID_SEARCHCOMMAND_PROGRESSTEXT","features":[466]},{"name":"DISPID_SEARCHCOMMAND_RESTORE","features":[466]},{"name":"DISPID_SEARCHCOMMAND_START","features":[466]},{"name":"DISPID_SEARCHCOMMAND_UPDATE","features":[466]},{"name":"DISPID_SELECTEDITEMCHANGED","features":[466]},{"name":"DISPID_SELECTIONCHANGED","features":[466]},{"name":"DISPID_SORTDONE","features":[466]},{"name":"DISPID_UPDATEIMAGE","features":[466]},{"name":"DISPID_VERBINVOKED","features":[466]},{"name":"DISPID_VIEWMODECHANGED","features":[466]},{"name":"DISPID_VIEWPAINTDONE","features":[466]},{"name":"DISPID_WORDWHEELEDITED","features":[466]},{"name":"DISPLAY_DEVICE_TYPE","features":[466]},{"name":"DI_GETDRAGIMAGE","features":[466]},{"name":"DLG_SCRNSAVECONFIGURE","features":[466]},{"name":"DLLGETVERSIONPROC","features":[466]},{"name":"DLLVERSIONINFO","features":[466]},{"name":"DLLVERSIONINFO2","features":[466]},{"name":"DLLVER_BUILD_MASK","features":[466]},{"name":"DLLVER_MAJOR_MASK","features":[466]},{"name":"DLLVER_MINOR_MASK","features":[466]},{"name":"DLLVER_PLATFORM_NT","features":[466]},{"name":"DLLVER_PLATFORM_WINDOWS","features":[466]},{"name":"DLLVER_QFE_MASK","features":[466]},{"name":"DOGIF_DEFAULT","features":[466]},{"name":"DOGIF_NO_HDROP","features":[466]},{"name":"DOGIF_NO_URL","features":[466]},{"name":"DOGIF_ONLY_IF_ONE","features":[466]},{"name":"DOGIF_TRAVERSE_LINK","features":[466]},{"name":"DRAGINFOA","features":[305,466]},{"name":"DRAGINFOA","features":[305,466]},{"name":"DRAGINFOW","features":[305,466]},{"name":"DRAGINFOW","features":[305,466]},{"name":"DROPDESCRIPTION","features":[466]},{"name":"DROPFILES","features":[305,466]},{"name":"DROPIMAGETYPE","features":[466]},{"name":"DROPIMAGE_COPY","features":[466]},{"name":"DROPIMAGE_INVALID","features":[466]},{"name":"DROPIMAGE_LABEL","features":[466]},{"name":"DROPIMAGE_LINK","features":[466]},{"name":"DROPIMAGE_MOVE","features":[466]},{"name":"DROPIMAGE_NOIMAGE","features":[466]},{"name":"DROPIMAGE_NONE","features":[466]},{"name":"DROPIMAGE_WARNING","features":[466]},{"name":"DSD_BACKWARD","features":[466]},{"name":"DSD_FORWARD","features":[466]},{"name":"DSFT_DETECT","features":[466]},{"name":"DSFT_PRIVATE","features":[466]},{"name":"DSFT_PUBLIC","features":[466]},{"name":"DSH_ALLOWDROPDESCRIPTIONTEXT","features":[466]},{"name":"DSH_FLAGS","features":[466]},{"name":"DSO_SHUFFLEIMAGES","features":[466]},{"name":"DSS_DISABLED_BY_REMOTE_SESSION","features":[466]},{"name":"DSS_ENABLED","features":[466]},{"name":"DSS_SLIDESHOW","features":[466]},{"name":"DShellFolderViewEvents","features":[356,466]},{"name":"DShellNameSpaceEvents","features":[356,466]},{"name":"DShellWindowsEvents","features":[356,466]},{"name":"DVASPECT_COPY","features":[466]},{"name":"DVASPECT_LINK","features":[466]},{"name":"DVASPECT_SHORTNAME","features":[466]},{"name":"DWFAF_AUTOHIDE","features":[466]},{"name":"DWFAF_GROUP1","features":[466]},{"name":"DWFAF_GROUP2","features":[466]},{"name":"DWFAF_HIDDEN","features":[466]},{"name":"DWFRF_DELETECONFIGDATA","features":[466]},{"name":"DWFRF_NORMAL","features":[466]},{"name":"DWPOS_CENTER","features":[466]},{"name":"DWPOS_FILL","features":[466]},{"name":"DWPOS_FIT","features":[466]},{"name":"DWPOS_SPAN","features":[466]},{"name":"DWPOS_STRETCH","features":[466]},{"name":"DWPOS_TILE","features":[466]},{"name":"DWebBrowserEvents","features":[356,466]},{"name":"DWebBrowserEvents2","features":[356,466]},{"name":"DefFolderMenu","features":[466]},{"name":"DefSubclassProc","features":[305,466]},{"name":"DeleteProfileA","features":[305,466]},{"name":"DeleteProfileW","features":[305,466]},{"name":"DesktopGadget","features":[466]},{"name":"DesktopWallpaper","features":[466]},{"name":"DestinationList","features":[466]},{"name":"DoEnvironmentSubstA","features":[466]},{"name":"DoEnvironmentSubstW","features":[466]},{"name":"DocPropShellExtension","features":[466]},{"name":"DragAcceptFiles","features":[305,466]},{"name":"DragFinish","features":[466]},{"name":"DragQueryFileA","features":[466]},{"name":"DragQueryFileW","features":[466]},{"name":"DragQueryPoint","features":[305,466]},{"name":"DriveSizeCategorizer","features":[466]},{"name":"DriveType","features":[466]},{"name":"DriveTypeCategorizer","features":[466]},{"name":"DuplicateIcon","features":[305,466,367]},{"name":"EBF_NODROPTARGET","features":[466]},{"name":"EBF_NONE","features":[466]},{"name":"EBF_SELECTFROMDATAOBJECT","features":[466]},{"name":"EBO_ALWAYSNAVIGATE","features":[466]},{"name":"EBO_HTMLSHAREPOINTVIEW","features":[466]},{"name":"EBO_NAVIGATEONCE","features":[466]},{"name":"EBO_NOBORDER","features":[466]},{"name":"EBO_NONE","features":[466]},{"name":"EBO_NOPERSISTVIEWSTATE","features":[466]},{"name":"EBO_NOTRAVELLOG","features":[466]},{"name":"EBO_NOWRAPPERWINDOW","features":[466]},{"name":"EBO_SHOWFRAMES","features":[466]},{"name":"ECF_AUTOMENUICONS","features":[466]},{"name":"ECF_DEFAULT","features":[466]},{"name":"ECF_HASLUASHIELD","features":[466]},{"name":"ECF_HASSPLITBUTTON","features":[466]},{"name":"ECF_HASSUBCOMMANDS","features":[466]},{"name":"ECF_HIDELABEL","features":[466]},{"name":"ECF_ISDROPDOWN","features":[466]},{"name":"ECF_ISSEPARATOR","features":[466]},{"name":"ECF_SEPARATORAFTER","features":[466]},{"name":"ECF_SEPARATORBEFORE","features":[466]},{"name":"ECF_TOGGLEABLE","features":[466]},{"name":"ECHUIM_DESKTOP","features":[466]},{"name":"ECHUIM_IMMERSIVE","features":[466]},{"name":"ECHUIM_SYSTEM_LAUNCHER","features":[466]},{"name":"ECS_CHECKBOX","features":[466]},{"name":"ECS_CHECKED","features":[466]},{"name":"ECS_DISABLED","features":[466]},{"name":"ECS_ENABLED","features":[466]},{"name":"ECS_HIDDEN","features":[466]},{"name":"ECS_RADIOCHECK","features":[466]},{"name":"EC_HOST_UI_MODE","features":[466]},{"name":"EDGE_GESTURE_KIND","features":[466]},{"name":"EGK_KEYBOARD","features":[466]},{"name":"EGK_MOUSE","features":[466]},{"name":"EGK_TOUCH","features":[466]},{"name":"EPS_DEFAULT_OFF","features":[466]},{"name":"EPS_DEFAULT_ON","features":[466]},{"name":"EPS_DONTCARE","features":[466]},{"name":"EPS_FORCE","features":[466]},{"name":"EPS_INITIALSTATE","features":[466]},{"name":"EPS_STATEMASK","features":[466]},{"name":"EP_AdvQueryPane","features":[466]},{"name":"EP_Commands","features":[466]},{"name":"EP_Commands_Organize","features":[466]},{"name":"EP_Commands_View","features":[466]},{"name":"EP_DetailsPane","features":[466]},{"name":"EP_NavPane","features":[466]},{"name":"EP_PreviewPane","features":[466]},{"name":"EP_QueryPane","features":[466]},{"name":"EP_Ribbon","features":[466]},{"name":"EP_StatusBar","features":[466]},{"name":"EXECUTE_E_LAUNCH_APPLICATION","features":[466]},{"name":"EXPLORER_BROWSER_FILL_FLAGS","features":[466]},{"name":"EXPLORER_BROWSER_OPTIONS","features":[466]},{"name":"EXPPS_FILETYPES","features":[466]},{"name":"EXP_DARWIN_ID_SIG","features":[466]},{"name":"EXP_DARWIN_LINK","features":[466]},{"name":"EXP_PROPERTYSTORAGE","features":[466]},{"name":"EXP_PROPERTYSTORAGE_SIG","features":[466]},{"name":"EXP_SPECIAL_FOLDER","features":[466]},{"name":"EXP_SPECIAL_FOLDER_SIG","features":[466]},{"name":"EXP_SZ_ICON_SIG","features":[466]},{"name":"EXP_SZ_LINK","features":[466]},{"name":"EXP_SZ_LINK_SIG","features":[466]},{"name":"EXTRASEARCH","features":[466]},{"name":"E_ACTIVATIONDENIED_SHELLERROR","features":[466]},{"name":"E_ACTIVATIONDENIED_SHELLNOTREADY","features":[466]},{"name":"E_ACTIVATIONDENIED_SHELLRESTART","features":[466]},{"name":"E_ACTIVATIONDENIED_UNEXPECTED","features":[466]},{"name":"E_ACTIVATIONDENIED_USERCLOSE","features":[466]},{"name":"E_FILE_PLACEHOLDER_NOT_INITIALIZED","features":[466]},{"name":"E_FILE_PLACEHOLDER_SERVER_TIMED_OUT","features":[466]},{"name":"E_FILE_PLACEHOLDER_STORAGEPROVIDER_NOT_FOUND","features":[466]},{"name":"E_FILE_PLACEHOLDER_VERSION_MISMATCH","features":[466]},{"name":"E_FLAGS","features":[466]},{"name":"E_IMAGEFEED_CHANGEDISABLED","features":[466]},{"name":"E_NOTVALIDFORANIMATEDIMAGE","features":[466]},{"name":"E_PREVIEWHANDLER_CORRUPT","features":[466]},{"name":"E_PREVIEWHANDLER_DRM_FAIL","features":[466]},{"name":"E_PREVIEWHANDLER_NOAUTH","features":[466]},{"name":"E_PREVIEWHANDLER_NOTFOUND","features":[466]},{"name":"E_SHELL_EXTENSION_BLOCKED","features":[466]},{"name":"E_TILE_NOTIFICATIONS_PLATFORM_FAILURE","features":[466]},{"name":"E_USERTILE_CHANGEDISABLED","features":[466]},{"name":"E_USERTILE_FILESIZE","features":[466]},{"name":"E_USERTILE_LARGEORDYNAMIC","features":[466]},{"name":"E_USERTILE_UNSUPPORTEDFILETYPE","features":[466]},{"name":"E_USERTILE_VIDEOFRAMESIZE","features":[466]},{"name":"EnumerableObjectCollection","features":[466]},{"name":"ExecuteFolder","features":[466]},{"name":"ExecuteUnknown","features":[466]},{"name":"ExplorerBrowser","features":[466]},{"name":"ExtractAssociatedIconA","features":[305,466,367]},{"name":"ExtractAssociatedIconExA","features":[305,466,367]},{"name":"ExtractAssociatedIconExW","features":[305,466,367]},{"name":"ExtractAssociatedIconW","features":[305,466,367]},{"name":"ExtractIconA","features":[305,466,367]},{"name":"ExtractIconExA","features":[466,367]},{"name":"ExtractIconExW","features":[466,367]},{"name":"ExtractIconW","features":[305,466,367]},{"name":"ExtractIfNotCached","features":[466]},{"name":"FCIDM_BROWSERFIRST","features":[466]},{"name":"FCIDM_BROWSERLAST","features":[466]},{"name":"FCIDM_GLOBALFIRST","features":[466]},{"name":"FCIDM_GLOBALLAST","features":[466]},{"name":"FCIDM_MENU_EDIT","features":[466]},{"name":"FCIDM_MENU_EXPLORE","features":[466]},{"name":"FCIDM_MENU_FAVORITES","features":[466]},{"name":"FCIDM_MENU_FILE","features":[466]},{"name":"FCIDM_MENU_FIND","features":[466]},{"name":"FCIDM_MENU_HELP","features":[466]},{"name":"FCIDM_MENU_TOOLS","features":[466]},{"name":"FCIDM_MENU_TOOLS_SEP_GOTO","features":[466]},{"name":"FCIDM_MENU_VIEW","features":[466]},{"name":"FCIDM_MENU_VIEW_SEP_OPTIONS","features":[466]},{"name":"FCIDM_SHVIEWFIRST","features":[466]},{"name":"FCIDM_SHVIEWLAST","features":[466]},{"name":"FCIDM_STATUS","features":[466]},{"name":"FCIDM_TOOLBAR","features":[466]},{"name":"FCSM_CLSID","features":[466]},{"name":"FCSM_FLAGS","features":[466]},{"name":"FCSM_ICONFILE","features":[466]},{"name":"FCSM_INFOTIP","features":[466]},{"name":"FCSM_LOGO","features":[466]},{"name":"FCSM_VIEWID","features":[466]},{"name":"FCSM_WEBVIEWTEMPLATE","features":[466]},{"name":"FCS_FLAG_DRAGDROP","features":[466]},{"name":"FCS_FORCEWRITE","features":[466]},{"name":"FCS_READ","features":[466]},{"name":"FCT_ADDTOEND","features":[466]},{"name":"FCT_CONFIGABLE","features":[466]},{"name":"FCT_MERGE","features":[466]},{"name":"FCW_INTERNETBAR","features":[466]},{"name":"FCW_PROGRESS","features":[466]},{"name":"FCW_STATUS","features":[466]},{"name":"FCW_TOOLBAR","features":[466]},{"name":"FCW_TREE","features":[466]},{"name":"FDAP","features":[466]},{"name":"FDAP_BOTTOM","features":[466]},{"name":"FDAP_TOP","features":[466]},{"name":"FDEOR_ACCEPT","features":[466]},{"name":"FDEOR_DEFAULT","features":[466]},{"name":"FDEOR_REFUSE","features":[466]},{"name":"FDESVR_ACCEPT","features":[466]},{"name":"FDESVR_DEFAULT","features":[466]},{"name":"FDESVR_REFUSE","features":[466]},{"name":"FDE_OVERWRITE_RESPONSE","features":[466]},{"name":"FDE_SHAREVIOLATION_RESPONSE","features":[466]},{"name":"FDTF_LONGDATE","features":[466]},{"name":"FDTF_LONGTIME","features":[466]},{"name":"FDTF_LTRDATE","features":[466]},{"name":"FDTF_NOAUTOREADINGORDER","features":[466]},{"name":"FDTF_RELATIVE","features":[466]},{"name":"FDTF_RTLDATE","features":[466]},{"name":"FDTF_SHORTDATE","features":[466]},{"name":"FDTF_SHORTTIME","features":[466]},{"name":"FD_ACCESSTIME","features":[466]},{"name":"FD_ATTRIBUTES","features":[466]},{"name":"FD_CLSID","features":[466]},{"name":"FD_CREATETIME","features":[466]},{"name":"FD_FILESIZE","features":[466]},{"name":"FD_FLAGS","features":[466]},{"name":"FD_LINKUI","features":[466]},{"name":"FD_PROGRESSUI","features":[466]},{"name":"FD_SIZEPOINT","features":[466]},{"name":"FD_UNICODE","features":[466]},{"name":"FD_WRITESTIME","features":[466]},{"name":"FEM_NAVIGATION","features":[466]},{"name":"FEM_VIEWRESULT","features":[466]},{"name":"FFFP_EXACTMATCH","features":[466]},{"name":"FFFP_MODE","features":[466]},{"name":"FFFP_NEARESTPARENTMATCH","features":[466]},{"name":"FILEDESCRIPTORA","features":[305,466]},{"name":"FILEDESCRIPTORW","features":[305,466]},{"name":"FILEGROUPDESCRIPTORA","features":[305,466]},{"name":"FILEGROUPDESCRIPTORW","features":[305,466]},{"name":"FILEOPENDIALOGOPTIONS","features":[466]},{"name":"FILEOPERATION_FLAGS","features":[466]},{"name":"FILETYPEATTRIBUTEFLAGS","features":[466]},{"name":"FILE_ATTRIBUTES_ARRAY","features":[466]},{"name":"FILE_OPERATION_FLAGS2","features":[466]},{"name":"FILE_USAGE_TYPE","features":[466]},{"name":"FLVM_CONTENT","features":[466]},{"name":"FLVM_DETAILS","features":[466]},{"name":"FLVM_FIRST","features":[466]},{"name":"FLVM_ICONS","features":[466]},{"name":"FLVM_LAST","features":[466]},{"name":"FLVM_LIST","features":[466]},{"name":"FLVM_TILES","features":[466]},{"name":"FLVM_UNSPECIFIED","features":[466]},{"name":"FLYOUT_PLACEMENT","features":[466]},{"name":"FMTID_Briefcase","features":[466]},{"name":"FMTID_CustomImageProperties","features":[466]},{"name":"FMTID_DRM","features":[466]},{"name":"FMTID_Displaced","features":[466]},{"name":"FMTID_ImageProperties","features":[466]},{"name":"FMTID_InternetSite","features":[466]},{"name":"FMTID_Intshcut","features":[466]},{"name":"FMTID_LibraryProperties","features":[466]},{"name":"FMTID_MUSIC","features":[466]},{"name":"FMTID_Misc","features":[466]},{"name":"FMTID_Query","features":[466]},{"name":"FMTID_ShellDetails","features":[466]},{"name":"FMTID_Storage","features":[466]},{"name":"FMTID_Volume","features":[466]},{"name":"FMTID_WebView","features":[466]},{"name":"FOF2_MERGEFOLDERSONCOLLISION","features":[466]},{"name":"FOF2_NONE","features":[466]},{"name":"FOFX_ADDUNDORECORD","features":[466]},{"name":"FOFX_COPYASDOWNLOAD","features":[466]},{"name":"FOFX_DONTDISPLAYDESTPATH","features":[466]},{"name":"FOFX_DONTDISPLAYLOCATIONS","features":[466]},{"name":"FOFX_DONTDISPLAYSOURCEPATH","features":[466]},{"name":"FOFX_EARLYFAILURE","features":[466]},{"name":"FOFX_KEEPNEWERFILE","features":[466]},{"name":"FOFX_MOVEACLSACROSSVOLUMES","features":[466]},{"name":"FOFX_NOCOPYHOOKS","features":[466]},{"name":"FOFX_NOMINIMIZEBOX","features":[466]},{"name":"FOFX_NOSKIPJUNCTIONS","features":[466]},{"name":"FOFX_PREFERHARDLINK","features":[466]},{"name":"FOFX_PRESERVEFILEEXTENSIONS","features":[466]},{"name":"FOFX_RECYCLEONDELETE","features":[466]},{"name":"FOFX_REQUIREELEVATION","features":[466]},{"name":"FOFX_SHOWELEVATIONPROMPT","features":[466]},{"name":"FOF_ALLOWUNDO","features":[466]},{"name":"FOF_CONFIRMMOUSE","features":[466]},{"name":"FOF_FILESONLY","features":[466]},{"name":"FOF_MULTIDESTFILES","features":[466]},{"name":"FOF_NOCONFIRMATION","features":[466]},{"name":"FOF_NOCONFIRMMKDIR","features":[466]},{"name":"FOF_NOCOPYSECURITYATTRIBS","features":[466]},{"name":"FOF_NOERRORUI","features":[466]},{"name":"FOF_NORECURSEREPARSE","features":[466]},{"name":"FOF_NORECURSION","features":[466]},{"name":"FOF_NO_CONNECTED_ELEMENTS","features":[466]},{"name":"FOF_NO_UI","features":[466]},{"name":"FOF_RENAMEONCOLLISION","features":[466]},{"name":"FOF_SILENT","features":[466]},{"name":"FOF_SIMPLEPROGRESS","features":[466]},{"name":"FOF_WANTMAPPINGHANDLE","features":[466]},{"name":"FOF_WANTNUKEWARNING","features":[466]},{"name":"FOLDERFLAGS","features":[466]},{"name":"FOLDERID_AccountPictures","features":[466]},{"name":"FOLDERID_AddNewPrograms","features":[466]},{"name":"FOLDERID_AdminTools","features":[466]},{"name":"FOLDERID_AllAppMods","features":[466]},{"name":"FOLDERID_AppCaptures","features":[466]},{"name":"FOLDERID_AppDataDesktop","features":[466]},{"name":"FOLDERID_AppDataDocuments","features":[466]},{"name":"FOLDERID_AppDataFavorites","features":[466]},{"name":"FOLDERID_AppDataProgramData","features":[466]},{"name":"FOLDERID_AppUpdates","features":[466]},{"name":"FOLDERID_ApplicationShortcuts","features":[466]},{"name":"FOLDERID_AppsFolder","features":[466]},{"name":"FOLDERID_CDBurning","features":[466]},{"name":"FOLDERID_CameraRoll","features":[466]},{"name":"FOLDERID_CameraRollLibrary","features":[466]},{"name":"FOLDERID_ChangeRemovePrograms","features":[466]},{"name":"FOLDERID_CommonAdminTools","features":[466]},{"name":"FOLDERID_CommonOEMLinks","features":[466]},{"name":"FOLDERID_CommonPrograms","features":[466]},{"name":"FOLDERID_CommonStartMenu","features":[466]},{"name":"FOLDERID_CommonStartMenuPlaces","features":[466]},{"name":"FOLDERID_CommonStartup","features":[466]},{"name":"FOLDERID_CommonTemplates","features":[466]},{"name":"FOLDERID_ComputerFolder","features":[466]},{"name":"FOLDERID_ConflictFolder","features":[466]},{"name":"FOLDERID_ConnectionsFolder","features":[466]},{"name":"FOLDERID_Contacts","features":[466]},{"name":"FOLDERID_ControlPanelFolder","features":[466]},{"name":"FOLDERID_Cookies","features":[466]},{"name":"FOLDERID_CurrentAppMods","features":[466]},{"name":"FOLDERID_Desktop","features":[466]},{"name":"FOLDERID_DevelopmentFiles","features":[466]},{"name":"FOLDERID_Device","features":[466]},{"name":"FOLDERID_DeviceMetadataStore","features":[466]},{"name":"FOLDERID_Documents","features":[466]},{"name":"FOLDERID_DocumentsLibrary","features":[466]},{"name":"FOLDERID_Downloads","features":[466]},{"name":"FOLDERID_Favorites","features":[466]},{"name":"FOLDERID_Fonts","features":[466]},{"name":"FOLDERID_GameTasks","features":[466]},{"name":"FOLDERID_Games","features":[466]},{"name":"FOLDERID_History","features":[466]},{"name":"FOLDERID_HomeGroup","features":[466]},{"name":"FOLDERID_HomeGroupCurrentUser","features":[466]},{"name":"FOLDERID_ImplicitAppShortcuts","features":[466]},{"name":"FOLDERID_InternetCache","features":[466]},{"name":"FOLDERID_InternetFolder","features":[466]},{"name":"FOLDERID_Libraries","features":[466]},{"name":"FOLDERID_Links","features":[466]},{"name":"FOLDERID_LocalAppData","features":[466]},{"name":"FOLDERID_LocalAppDataLow","features":[466]},{"name":"FOLDERID_LocalDocuments","features":[466]},{"name":"FOLDERID_LocalDownloads","features":[466]},{"name":"FOLDERID_LocalMusic","features":[466]},{"name":"FOLDERID_LocalPictures","features":[466]},{"name":"FOLDERID_LocalStorage","features":[466]},{"name":"FOLDERID_LocalVideos","features":[466]},{"name":"FOLDERID_LocalizedResourcesDir","features":[466]},{"name":"FOLDERID_Music","features":[466]},{"name":"FOLDERID_MusicLibrary","features":[466]},{"name":"FOLDERID_NetHood","features":[466]},{"name":"FOLDERID_NetworkFolder","features":[466]},{"name":"FOLDERID_Objects3D","features":[466]},{"name":"FOLDERID_OneDrive","features":[466]},{"name":"FOLDERID_OriginalImages","features":[466]},{"name":"FOLDERID_PhotoAlbums","features":[466]},{"name":"FOLDERID_Pictures","features":[466]},{"name":"FOLDERID_PicturesLibrary","features":[466]},{"name":"FOLDERID_Playlists","features":[466]},{"name":"FOLDERID_PrintHood","features":[466]},{"name":"FOLDERID_PrintersFolder","features":[466]},{"name":"FOLDERID_Profile","features":[466]},{"name":"FOLDERID_ProgramData","features":[466]},{"name":"FOLDERID_ProgramFiles","features":[466]},{"name":"FOLDERID_ProgramFilesCommon","features":[466]},{"name":"FOLDERID_ProgramFilesCommonX64","features":[466]},{"name":"FOLDERID_ProgramFilesCommonX86","features":[466]},{"name":"FOLDERID_ProgramFilesX64","features":[466]},{"name":"FOLDERID_ProgramFilesX86","features":[466]},{"name":"FOLDERID_Programs","features":[466]},{"name":"FOLDERID_Public","features":[466]},{"name":"FOLDERID_PublicDesktop","features":[466]},{"name":"FOLDERID_PublicDocuments","features":[466]},{"name":"FOLDERID_PublicDownloads","features":[466]},{"name":"FOLDERID_PublicGameTasks","features":[466]},{"name":"FOLDERID_PublicLibraries","features":[466]},{"name":"FOLDERID_PublicMusic","features":[466]},{"name":"FOLDERID_PublicPictures","features":[466]},{"name":"FOLDERID_PublicRingtones","features":[466]},{"name":"FOLDERID_PublicUserTiles","features":[466]},{"name":"FOLDERID_PublicVideos","features":[466]},{"name":"FOLDERID_QuickLaunch","features":[466]},{"name":"FOLDERID_Recent","features":[466]},{"name":"FOLDERID_RecordedCalls","features":[466]},{"name":"FOLDERID_RecordedTVLibrary","features":[466]},{"name":"FOLDERID_RecycleBinFolder","features":[466]},{"name":"FOLDERID_ResourceDir","features":[466]},{"name":"FOLDERID_RetailDemo","features":[466]},{"name":"FOLDERID_Ringtones","features":[466]},{"name":"FOLDERID_RoamedTileImages","features":[466]},{"name":"FOLDERID_RoamingAppData","features":[466]},{"name":"FOLDERID_RoamingTiles","features":[466]},{"name":"FOLDERID_SEARCH_CSC","features":[466]},{"name":"FOLDERID_SEARCH_MAPI","features":[466]},{"name":"FOLDERID_SampleMusic","features":[466]},{"name":"FOLDERID_SamplePictures","features":[466]},{"name":"FOLDERID_SamplePlaylists","features":[466]},{"name":"FOLDERID_SampleVideos","features":[466]},{"name":"FOLDERID_SavedGames","features":[466]},{"name":"FOLDERID_SavedPictures","features":[466]},{"name":"FOLDERID_SavedPicturesLibrary","features":[466]},{"name":"FOLDERID_SavedSearches","features":[466]},{"name":"FOLDERID_Screenshots","features":[466]},{"name":"FOLDERID_SearchHistory","features":[466]},{"name":"FOLDERID_SearchHome","features":[466]},{"name":"FOLDERID_SearchTemplates","features":[466]},{"name":"FOLDERID_SendTo","features":[466]},{"name":"FOLDERID_SidebarDefaultParts","features":[466]},{"name":"FOLDERID_SidebarParts","features":[466]},{"name":"FOLDERID_SkyDrive","features":[466]},{"name":"FOLDERID_SkyDriveCameraRoll","features":[466]},{"name":"FOLDERID_SkyDriveDocuments","features":[466]},{"name":"FOLDERID_SkyDriveMusic","features":[466]},{"name":"FOLDERID_SkyDrivePictures","features":[466]},{"name":"FOLDERID_StartMenu","features":[466]},{"name":"FOLDERID_StartMenuAllPrograms","features":[466]},{"name":"FOLDERID_Startup","features":[466]},{"name":"FOLDERID_SyncManagerFolder","features":[466]},{"name":"FOLDERID_SyncResultsFolder","features":[466]},{"name":"FOLDERID_SyncSetupFolder","features":[466]},{"name":"FOLDERID_System","features":[466]},{"name":"FOLDERID_SystemX86","features":[466]},{"name":"FOLDERID_Templates","features":[466]},{"name":"FOLDERID_UserPinned","features":[466]},{"name":"FOLDERID_UserProfiles","features":[466]},{"name":"FOLDERID_UserProgramFiles","features":[466]},{"name":"FOLDERID_UserProgramFilesCommon","features":[466]},{"name":"FOLDERID_UsersFiles","features":[466]},{"name":"FOLDERID_UsersLibraries","features":[466]},{"name":"FOLDERID_Videos","features":[466]},{"name":"FOLDERID_VideosLibrary","features":[466]},{"name":"FOLDERID_Windows","features":[466]},{"name":"FOLDERLOGICALVIEWMODE","features":[466]},{"name":"FOLDERSETDATA","features":[466]},{"name":"FOLDERSETTINGS","features":[466]},{"name":"FOLDERTYPEID_AccountPictures","features":[466]},{"name":"FOLDERTYPEID_Communications","features":[466]},{"name":"FOLDERTYPEID_CompressedFolder","features":[466]},{"name":"FOLDERTYPEID_Contacts","features":[466]},{"name":"FOLDERTYPEID_ControlPanelCategory","features":[466]},{"name":"FOLDERTYPEID_ControlPanelClassic","features":[466]},{"name":"FOLDERTYPEID_Documents","features":[466]},{"name":"FOLDERTYPEID_Downloads","features":[466]},{"name":"FOLDERTYPEID_Games","features":[466]},{"name":"FOLDERTYPEID_Generic","features":[466]},{"name":"FOLDERTYPEID_GenericLibrary","features":[466]},{"name":"FOLDERTYPEID_GenericSearchResults","features":[466]},{"name":"FOLDERTYPEID_Invalid","features":[466]},{"name":"FOLDERTYPEID_Music","features":[466]},{"name":"FOLDERTYPEID_NetworkExplorer","features":[466]},{"name":"FOLDERTYPEID_OpenSearch","features":[466]},{"name":"FOLDERTYPEID_OtherUsers","features":[466]},{"name":"FOLDERTYPEID_Pictures","features":[466]},{"name":"FOLDERTYPEID_Printers","features":[466]},{"name":"FOLDERTYPEID_PublishedItems","features":[466]},{"name":"FOLDERTYPEID_RecordedTV","features":[466]},{"name":"FOLDERTYPEID_RecycleBin","features":[466]},{"name":"FOLDERTYPEID_SavedGames","features":[466]},{"name":"FOLDERTYPEID_SearchConnector","features":[466]},{"name":"FOLDERTYPEID_SearchHome","features":[466]},{"name":"FOLDERTYPEID_Searches","features":[466]},{"name":"FOLDERTYPEID_SoftwareExplorer","features":[466]},{"name":"FOLDERTYPEID_StartMenu","features":[466]},{"name":"FOLDERTYPEID_StorageProviderDocuments","features":[466]},{"name":"FOLDERTYPEID_StorageProviderGeneric","features":[466]},{"name":"FOLDERTYPEID_StorageProviderMusic","features":[466]},{"name":"FOLDERTYPEID_StorageProviderPictures","features":[466]},{"name":"FOLDERTYPEID_StorageProviderVideos","features":[466]},{"name":"FOLDERTYPEID_UserFiles","features":[466]},{"name":"FOLDERTYPEID_UsersLibraries","features":[466]},{"name":"FOLDERTYPEID_Videos","features":[466]},{"name":"FOLDERVIEWMODE","features":[466]},{"name":"FOLDERVIEWOPTIONS","features":[466]},{"name":"FOLDER_ENUM_MODE","features":[466]},{"name":"FOS_ALLNONSTORAGEITEMS","features":[466]},{"name":"FOS_ALLOWMULTISELECT","features":[466]},{"name":"FOS_CREATEPROMPT","features":[466]},{"name":"FOS_DEFAULTNOMINIMODE","features":[466]},{"name":"FOS_DONTADDTORECENT","features":[466]},{"name":"FOS_FILEMUSTEXIST","features":[466]},{"name":"FOS_FORCEFILESYSTEM","features":[466]},{"name":"FOS_FORCEPREVIEWPANEON","features":[466]},{"name":"FOS_FORCESHOWHIDDEN","features":[466]},{"name":"FOS_HIDEMRUPLACES","features":[466]},{"name":"FOS_HIDEPINNEDPLACES","features":[466]},{"name":"FOS_NOCHANGEDIR","features":[466]},{"name":"FOS_NODEREFERENCELINKS","features":[466]},{"name":"FOS_NOREADONLYRETURN","features":[466]},{"name":"FOS_NOTESTFILECREATE","features":[466]},{"name":"FOS_NOVALIDATE","features":[466]},{"name":"FOS_OKBUTTONNEEDSINTERACTION","features":[466]},{"name":"FOS_OVERWRITEPROMPT","features":[466]},{"name":"FOS_PATHMUSTEXIST","features":[466]},{"name":"FOS_PICKFOLDERS","features":[466]},{"name":"FOS_SHAREAWARE","features":[466]},{"name":"FOS_STRICTFILETYPES","features":[466]},{"name":"FOS_SUPPORTSTREAMABLEITEMS","features":[466]},{"name":"FO_COPY","features":[466]},{"name":"FO_DELETE","features":[466]},{"name":"FO_MOVE","features":[466]},{"name":"FO_RENAME","features":[466]},{"name":"FP_ABOVE","features":[466]},{"name":"FP_BELOW","features":[466]},{"name":"FP_DEFAULT","features":[466]},{"name":"FP_LEFT","features":[466]},{"name":"FP_RIGHT","features":[466]},{"name":"FSCopyHandler","features":[466]},{"name":"FTA_AlwaysUnsafe","features":[466]},{"name":"FTA_AlwaysUseDirectInvoke","features":[466]},{"name":"FTA_Exclude","features":[466]},{"name":"FTA_HasExtension","features":[466]},{"name":"FTA_NoDDE","features":[466]},{"name":"FTA_NoEdit","features":[466]},{"name":"FTA_NoEditDesc","features":[466]},{"name":"FTA_NoEditDflt","features":[466]},{"name":"FTA_NoEditIcon","features":[466]},{"name":"FTA_NoEditMIME","features":[466]},{"name":"FTA_NoEditVerb","features":[466]},{"name":"FTA_NoEditVerbCmd","features":[466]},{"name":"FTA_NoEditVerbExe","features":[466]},{"name":"FTA_NoNewVerb","features":[466]},{"name":"FTA_NoRecentDocs","features":[466]},{"name":"FTA_NoRemove","features":[466]},{"name":"FTA_NoRemoveVerb","features":[466]},{"name":"FTA_None","features":[466]},{"name":"FTA_OpenIsSafe","features":[466]},{"name":"FTA_SafeForElevation","features":[466]},{"name":"FTA_Show","features":[466]},{"name":"FUT_EDITING","features":[466]},{"name":"FUT_GENERIC","features":[466]},{"name":"FUT_PLAYING","features":[466]},{"name":"FVM_AUTO","features":[466]},{"name":"FVM_CONTENT","features":[466]},{"name":"FVM_DETAILS","features":[466]},{"name":"FVM_FIRST","features":[466]},{"name":"FVM_ICON","features":[466]},{"name":"FVM_LAST","features":[466]},{"name":"FVM_LIST","features":[466]},{"name":"FVM_SMALLICON","features":[466]},{"name":"FVM_THUMBNAIL","features":[466]},{"name":"FVM_THUMBSTRIP","features":[466]},{"name":"FVM_TILE","features":[466]},{"name":"FVO_CUSTOMORDERING","features":[466]},{"name":"FVO_CUSTOMPOSITION","features":[466]},{"name":"FVO_DEFAULT","features":[466]},{"name":"FVO_NOANIMATIONS","features":[466]},{"name":"FVO_NOSCROLLTIPS","features":[466]},{"name":"FVO_SUPPORTHYPERLINKS","features":[466]},{"name":"FVO_VISTALAYOUT","features":[466]},{"name":"FVSIF_CANVIEWIT","features":[466]},{"name":"FVSIF_NEWFAILED","features":[466]},{"name":"FVSIF_NEWFILE","features":[466]},{"name":"FVSIF_PINNED","features":[466]},{"name":"FVSIF_RECT","features":[466]},{"name":"FVST_EMPTYTEXT","features":[466]},{"name":"FVTEXTTYPE","features":[466]},{"name":"FWF_ABBREVIATEDNAMES","features":[466]},{"name":"FWF_ALIGNLEFT","features":[466]},{"name":"FWF_ALLOWRTLREADING","features":[466]},{"name":"FWF_AUTOARRANGE","features":[466]},{"name":"FWF_AUTOCHECKSELECT","features":[466]},{"name":"FWF_BESTFITWINDOW","features":[466]},{"name":"FWF_CHECKSELECT","features":[466]},{"name":"FWF_DESKTOP","features":[466]},{"name":"FWF_EXTENDEDTILES","features":[466]},{"name":"FWF_FULLROWSELECT","features":[466]},{"name":"FWF_HIDEFILENAMES","features":[466]},{"name":"FWF_NOBROWSERVIEWSTATE","features":[466]},{"name":"FWF_NOCLIENTEDGE","features":[466]},{"name":"FWF_NOCOLUMNHEADER","features":[466]},{"name":"FWF_NOENUMREFRESH","features":[466]},{"name":"FWF_NOFILTERS","features":[466]},{"name":"FWF_NOGROUPING","features":[466]},{"name":"FWF_NOHEADERINALLVIEWS","features":[466]},{"name":"FWF_NOICONS","features":[466]},{"name":"FWF_NONE","features":[466]},{"name":"FWF_NOSCROLL","features":[466]},{"name":"FWF_NOSUBFOLDERS","features":[466]},{"name":"FWF_NOVISIBLE","features":[466]},{"name":"FWF_NOWEBVIEW","features":[466]},{"name":"FWF_OWNERDATA","features":[466]},{"name":"FWF_SHOWSELALWAYS","features":[466]},{"name":"FWF_SINGLECLICKACTIVATE","features":[466]},{"name":"FWF_SINGLESEL","features":[466]},{"name":"FWF_SNAPTOGRID","features":[466]},{"name":"FWF_SUBSETGROUPS","features":[466]},{"name":"FWF_TRANSPARENT","features":[466]},{"name":"FWF_TRICHECKSELECT","features":[466]},{"name":"FWF_USESEARCHFOLDER","features":[466]},{"name":"FileIconInit","features":[305,466]},{"name":"FileOpenDialog","features":[466]},{"name":"FileOperation","features":[466]},{"name":"FileSaveDialog","features":[466]},{"name":"FileSearchBand","features":[466]},{"name":"FindExecutableA","features":[305,466]},{"name":"FindExecutableW","features":[305,466]},{"name":"Folder","features":[356,466]},{"name":"Folder2","features":[356,466]},{"name":"Folder3","features":[356,466]},{"name":"FolderItem","features":[356,466]},{"name":"FolderItem2","features":[356,466]},{"name":"FolderItemVerb","features":[356,466]},{"name":"FolderItemVerbs","features":[356,466]},{"name":"FolderItems","features":[356,466]},{"name":"FolderItems2","features":[356,466]},{"name":"FolderItems3","features":[356,466]},{"name":"FolderViewHost","features":[466]},{"name":"FrameworkInputPane","features":[466]},{"name":"FreeSpaceCategorizer","features":[466]},{"name":"GADOF_DIRTY","features":[466]},{"name":"GCS_HELPTEXT","features":[466]},{"name":"GCS_HELPTEXTA","features":[466]},{"name":"GCS_HELPTEXTW","features":[466]},{"name":"GCS_UNICODE","features":[466]},{"name":"GCS_VALIDATE","features":[466]},{"name":"GCS_VALIDATEA","features":[466]},{"name":"GCS_VALIDATEW","features":[466]},{"name":"GCS_VERB","features":[466]},{"name":"GCS_VERBA","features":[466]},{"name":"GCS_VERBICONW","features":[466]},{"name":"GCS_VERBW","features":[466]},{"name":"GCT_INVALID","features":[466]},{"name":"GCT_LFNCHAR","features":[466]},{"name":"GCT_SEPARATOR","features":[466]},{"name":"GCT_SHORTCHAR","features":[466]},{"name":"GCT_WILD","features":[466]},{"name":"GETPROPS_NONE","features":[466]},{"name":"GIL_ASYNC","features":[466]},{"name":"GIL_CHECKSHIELD","features":[466]},{"name":"GIL_DEFAULTICON","features":[466]},{"name":"GIL_DONTCACHE","features":[466]},{"name":"GIL_FORCENOSHIELD","features":[466]},{"name":"GIL_FORSHELL","features":[466]},{"name":"GIL_FORSHORTCUT","features":[466]},{"name":"GIL_NOTFILENAME","features":[466]},{"name":"GIL_OPENICON","features":[466]},{"name":"GIL_PERCLASS","features":[466]},{"name":"GIL_PERINSTANCE","features":[466]},{"name":"GIL_SHIELD","features":[466]},{"name":"GIL_SIMULATEDOC","features":[466]},{"name":"GLOBALCOUNTER_APPLICATION_DESTINATIONS","features":[466]},{"name":"GLOBALCOUNTER_APPROVEDSITES","features":[466]},{"name":"GLOBALCOUNTER_APPSFOLDER_FILETYPEASSOCIATION_COUNTER","features":[466]},{"name":"GLOBALCOUNTER_APP_ITEMS_STATE_STORE_CACHE","features":[466]},{"name":"GLOBALCOUNTER_ASSOCCHANGED","features":[466]},{"name":"GLOBALCOUNTER_BANNERS_DATAMODEL_CACHE_MACHINEWIDE","features":[466]},{"name":"GLOBALCOUNTER_BITBUCKETNUMDELETERS","features":[466]},{"name":"GLOBALCOUNTER_COMMONPLACES_LIST_CACHE","features":[466]},{"name":"GLOBALCOUNTER_FOLDERDEFINITION_CACHE","features":[466]},{"name":"GLOBALCOUNTER_FOLDERSETTINGSCHANGE","features":[466]},{"name":"GLOBALCOUNTER_IEONLY_SESSIONS","features":[466]},{"name":"GLOBALCOUNTER_IESESSIONS","features":[466]},{"name":"GLOBALCOUNTER_INTERNETTOOLBAR_LAYOUT","features":[466]},{"name":"GLOBALCOUNTER_MAXIMUMVALUE","features":[466]},{"name":"GLOBALCOUNTER_OVERLAYMANAGER","features":[466]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE","features":[466]},{"name":"GLOBALCOUNTER_PRIVATE_PROFILE_CACHE_MACHINEWIDE","features":[466]},{"name":"GLOBALCOUNTER_QUERYASSOCIATIONS","features":[466]},{"name":"GLOBALCOUNTER_RATINGS","features":[466]},{"name":"GLOBALCOUNTER_RATINGS_STATECOUNTER","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEBINCORRUPTED","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEBINENUM","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_A","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_B","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_C","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_D","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_E","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_F","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_G","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_H","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_I","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_J","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_K","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_L","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_M","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_N","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_O","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_P","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Q","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_R","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_S","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_T","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_U","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_V","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_W","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_X","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Y","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_DRIVE_Z","features":[466]},{"name":"GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SHARES","features":[466]},{"name":"GLOBALCOUNTER_RESTRICTIONS","features":[466]},{"name":"GLOBALCOUNTER_SEARCHMANAGER","features":[466]},{"name":"GLOBALCOUNTER_SEARCHOPTIONS","features":[466]},{"name":"GLOBALCOUNTER_SETTINGSYNC_ENABLED","features":[466]},{"name":"GLOBALCOUNTER_SHELLSETTINGSCHANGED","features":[466]},{"name":"GLOBALCOUNTER_SYNC_ENGINE_INFORMATION_CACHE_MACHINEWIDE","features":[466]},{"name":"GLOBALCOUNTER_SYSTEMPIDLCHANGE","features":[466]},{"name":"GLOBALCOUNTER_USERINFOCHANGED","features":[466]},{"name":"GPFIDL_ALTNAME","features":[466]},{"name":"GPFIDL_DEFAULT","features":[466]},{"name":"GPFIDL_FLAGS","features":[466]},{"name":"GPFIDL_UNCPRINTER","features":[466]},{"name":"GenericCredentialProvider","features":[466]},{"name":"GetAcceptLanguagesA","features":[466]},{"name":"GetAcceptLanguagesW","features":[466]},{"name":"GetAllUsersProfileDirectoryA","features":[305,466]},{"name":"GetAllUsersProfileDirectoryW","features":[305,466]},{"name":"GetCurrentProcessExplicitAppUserModelID","features":[466]},{"name":"GetDefaultUserProfileDirectoryA","features":[305,466]},{"name":"GetDefaultUserProfileDirectoryW","features":[305,466]},{"name":"GetDpiForShellUIComponent","features":[466]},{"name":"GetFileNameFromBrowse","features":[305,466]},{"name":"GetMenuContextHelpId","features":[466,367]},{"name":"GetMenuPosFromID","features":[466,367]},{"name":"GetProfileType","features":[305,466]},{"name":"GetProfilesDirectoryA","features":[305,466]},{"name":"GetProfilesDirectoryW","features":[305,466]},{"name":"GetScaleFactorForDevice","features":[632]},{"name":"GetScaleFactorForMonitor","features":[316,632]},{"name":"GetUserProfileDirectoryA","features":[305,466]},{"name":"GetUserProfileDirectoryW","features":[305,466]},{"name":"GetWindowContextHelpId","features":[305,466]},{"name":"GetWindowSubclass","features":[305,466]},{"name":"HDROP","features":[466]},{"name":"HELPINFO","features":[305,466]},{"name":"HELPINFO_MENUITEM","features":[466]},{"name":"HELPINFO_WINDOW","features":[466]},{"name":"HELPWININFOA","features":[466]},{"name":"HELPWININFOW","features":[466]},{"name":"HELP_INFO_TYPE","features":[466]},{"name":"HGSC_DOCUMENTSLIBRARY","features":[466]},{"name":"HGSC_MUSICLIBRARY","features":[466]},{"name":"HGSC_NONE","features":[466]},{"name":"HGSC_PICTURESLIBRARY","features":[466]},{"name":"HGSC_PRINTERS","features":[466]},{"name":"HGSC_VIDEOSLIBRARY","features":[466]},{"name":"HLBWIF_DOCWNDMAXIMIZED","features":[466]},{"name":"HLBWIF_FLAGS","features":[466]},{"name":"HLBWIF_FRAMEWNDMAXIMIZED","features":[466]},{"name":"HLBWIF_HASDOCWNDINFO","features":[466]},{"name":"HLBWIF_HASFRAMEWNDINFO","features":[466]},{"name":"HLBWIF_HASWEBTOOLBARINFO","features":[466]},{"name":"HLBWIF_WEBTOOLBARHIDDEN","features":[466]},{"name":"HLBWINFO","features":[305,466]},{"name":"HLFNAMEF","features":[466]},{"name":"HLFNAMEF_DEFAULT","features":[466]},{"name":"HLFNAMEF_TRYCACHE","features":[466]},{"name":"HLFNAMEF_TRYFULLTARGET","features":[466]},{"name":"HLFNAMEF_TRYPRETTYTARGET","features":[466]},{"name":"HLFNAMEF_TRYWIN95SHORTCUT","features":[466]},{"name":"HLID_CURRENT","features":[466]},{"name":"HLID_INFO","features":[466]},{"name":"HLID_INVALID","features":[466]},{"name":"HLID_NEXT","features":[466]},{"name":"HLID_PREVIOUS","features":[466]},{"name":"HLID_STACKBOTTOM","features":[466]},{"name":"HLID_STACKTOP","features":[466]},{"name":"HLINKGETREF","features":[466]},{"name":"HLINKGETREF_ABSOLUTE","features":[466]},{"name":"HLINKGETREF_DEFAULT","features":[466]},{"name":"HLINKGETREF_RELATIVE","features":[466]},{"name":"HLINKMISC","features":[466]},{"name":"HLINKMISC_RELATIVE","features":[466]},{"name":"HLINKSETF","features":[466]},{"name":"HLINKSETF_LOCATION","features":[466]},{"name":"HLINKSETF_TARGET","features":[466]},{"name":"HLINKWHICHMK","features":[466]},{"name":"HLINKWHICHMK_BASE","features":[466]},{"name":"HLINKWHICHMK_CONTAINER","features":[466]},{"name":"HLINK_E_FIRST","features":[466]},{"name":"HLINK_S_DONTHIDE","features":[466]},{"name":"HLINK_S_FIRST","features":[466]},{"name":"HLITEM","features":[466]},{"name":"HLNF","features":[466]},{"name":"HLNF_ALLOW_AUTONAVIGATE","features":[466]},{"name":"HLNF_CALLERUNTRUSTED","features":[466]},{"name":"HLNF_CREATENOHISTORY","features":[466]},{"name":"HLNF_DISABLEWINDOWRESTRICTIONS","features":[466]},{"name":"HLNF_EXTERNALNAVIGATE","features":[466]},{"name":"HLNF_INTERNALJUMP","features":[466]},{"name":"HLNF_NAVIGATINGBACK","features":[466]},{"name":"HLNF_NAVIGATINGFORWARD","features":[466]},{"name":"HLNF_NAVIGATINGTOSTACKITEM","features":[466]},{"name":"HLNF_NEWWINDOWSMANAGED","features":[466]},{"name":"HLNF_OPENINNEWWINDOW","features":[466]},{"name":"HLNF_TRUSTEDFORACTIVEX","features":[466]},{"name":"HLNF_TRUSTFIRSTDOWNLOAD","features":[466]},{"name":"HLNF_UNTRUSTEDFORDOWNLOAD","features":[466]},{"name":"HLQF_INFO","features":[466]},{"name":"HLQF_ISCURRENT","features":[466]},{"name":"HLQF_ISVALID","features":[466]},{"name":"HLSHORTCUTF","features":[466]},{"name":"HLSHORTCUTF_DEFAULT","features":[466]},{"name":"HLSHORTCUTF_DONTACTUALLYCREATE","features":[466]},{"name":"HLSHORTCUTF_MAYUSEEXISTINGSHORTCUT","features":[466]},{"name":"HLSHORTCUTF_USEFILENAMEFROMFRIENDLYNAME","features":[466]},{"name":"HLSHORTCUTF_USEUNIQUEFILENAME","features":[466]},{"name":"HLSR","features":[466]},{"name":"HLSR_HISTORYFOLDER","features":[466]},{"name":"HLSR_HOME","features":[466]},{"name":"HLSR_SEARCHPAGE","features":[466]},{"name":"HLTBINFO","features":[305,466]},{"name":"HLTB_DOCKEDBOTTOM","features":[466]},{"name":"HLTB_DOCKEDLEFT","features":[466]},{"name":"HLTB_DOCKEDRIGHT","features":[466]},{"name":"HLTB_DOCKEDTOP","features":[466]},{"name":"HLTB_FLOATING","features":[466]},{"name":"HLTB_INFO","features":[466]},{"name":"HLTRANSLATEF","features":[466]},{"name":"HLTRANSLATEF_DEFAULT","features":[466]},{"name":"HLTRANSLATEF_DONTAPPLYDEFAULTPREFIX","features":[466]},{"name":"HMONITOR_UserFree","features":[316,466]},{"name":"HMONITOR_UserFree64","features":[316,466]},{"name":"HMONITOR_UserMarshal","features":[316,466]},{"name":"HMONITOR_UserMarshal64","features":[316,466]},{"name":"HMONITOR_UserSize","features":[316,466]},{"name":"HMONITOR_UserSize64","features":[316,466]},{"name":"HMONITOR_UserUnmarshal","features":[316,466]},{"name":"HMONITOR_UserUnmarshal64","features":[316,466]},{"name":"HOMEGROUPSHARINGCHOICES","features":[466]},{"name":"HOMEGROUP_SECURITY_GROUP","features":[466]},{"name":"HOMEGROUP_SECURITY_GROUP_MULTI","features":[466]},{"name":"HPSXA","features":[466]},{"name":"HashData","features":[466]},{"name":"HideInputPaneAnimationCoordinator","features":[466]},{"name":"HlinkClone","features":[466]},{"name":"HlinkCreateBrowseContext","features":[466]},{"name":"HlinkCreateExtensionServices","features":[305,466]},{"name":"HlinkCreateFromData","features":[356,466]},{"name":"HlinkCreateFromMoniker","features":[356,466]},{"name":"HlinkCreateFromString","features":[466]},{"name":"HlinkCreateShortcut","features":[466]},{"name":"HlinkCreateShortcutFromMoniker","features":[356,466]},{"name":"HlinkCreateShortcutFromString","features":[466]},{"name":"HlinkGetSpecialReference","features":[466]},{"name":"HlinkGetValueFromParams","features":[466]},{"name":"HlinkIsShortcut","features":[466]},{"name":"HlinkNavigate","features":[356,466]},{"name":"HlinkNavigateToStringReference","features":[356,466]},{"name":"HlinkOnNavigate","features":[356,466]},{"name":"HlinkOnRenameDocument","features":[356,466]},{"name":"HlinkParseDisplayName","features":[305,356,466]},{"name":"HlinkPreprocessMoniker","features":[356,466]},{"name":"HlinkQueryCreateFromData","features":[356,466]},{"name":"HlinkResolveMonikerForData","features":[356,466]},{"name":"HlinkResolveShortcut","features":[466]},{"name":"HlinkResolveShortcutToMoniker","features":[356,466]},{"name":"HlinkResolveShortcutToString","features":[466]},{"name":"HlinkResolveStringForData","features":[356,466]},{"name":"HlinkSetSpecialReference","features":[466]},{"name":"HlinkTranslateURL","features":[466]},{"name":"HlinkUpdateStackItem","features":[356,466]},{"name":"HomeGroup","features":[466]},{"name":"IACList","features":[466]},{"name":"IACList2","features":[466]},{"name":"IAccessibilityDockingService","features":[466]},{"name":"IAccessibilityDockingServiceCallback","features":[466]},{"name":"IAccessibleObject","features":[466]},{"name":"IActionProgress","features":[466]},{"name":"IActionProgressDialog","features":[466]},{"name":"IAppActivationUIInfo","features":[466]},{"name":"IAppPublisher","features":[466]},{"name":"IAppVisibility","features":[466]},{"name":"IAppVisibilityEvents","features":[466]},{"name":"IApplicationActivationManager","features":[466]},{"name":"IApplicationAssociationRegistration","features":[466]},{"name":"IApplicationAssociationRegistrationUI","features":[466]},{"name":"IApplicationDesignModeSettings","features":[466]},{"name":"IApplicationDesignModeSettings2","features":[466]},{"name":"IApplicationDestinations","features":[466]},{"name":"IApplicationDocumentLists","features":[466]},{"name":"IAssocHandler","features":[466]},{"name":"IAssocHandlerInvoker","features":[466]},{"name":"IAttachmentExecute","features":[466]},{"name":"IAutoComplete","features":[466]},{"name":"IAutoComplete2","features":[466]},{"name":"IAutoCompleteDropDown","features":[466]},{"name":"IBandHost","features":[466]},{"name":"IBandSite","features":[466]},{"name":"IBannerNotificationHandler","features":[466]},{"name":"IBanneredBar","features":[466]},{"name":"IBrowserFrameOptions","features":[466]},{"name":"IBrowserService","features":[466]},{"name":"IBrowserService2","features":[466]},{"name":"IBrowserService3","features":[466]},{"name":"IBrowserService4","features":[466]},{"name":"ICDBurn","features":[466]},{"name":"ICDBurnExt","features":[466]},{"name":"ICategorizer","features":[466]},{"name":"ICategoryProvider","features":[466]},{"name":"IColumnManager","features":[466]},{"name":"IColumnProvider","features":[466]},{"name":"ICommDlgBrowser","features":[466]},{"name":"ICommDlgBrowser2","features":[466]},{"name":"ICommDlgBrowser3","features":[466]},{"name":"IComputerInfoChangeNotify","features":[466]},{"name":"IConnectableCredentialProviderCredential","features":[466]},{"name":"IContactManagerInterop","features":[466]},{"name":"IContextMenu","features":[466]},{"name":"IContextMenu2","features":[466]},{"name":"IContextMenu3","features":[466]},{"name":"IContextMenuCB","features":[466]},{"name":"IContextMenuSite","features":[466]},{"name":"ICopyHookA","features":[466]},{"name":"ICopyHookW","features":[466]},{"name":"ICreateProcessInputs","features":[466]},{"name":"ICreatingProcess","features":[466]},{"name":"ICredentialProvider","features":[466]},{"name":"ICredentialProviderCredential","features":[466]},{"name":"ICredentialProviderCredential2","features":[466]},{"name":"ICredentialProviderCredentialEvents","features":[466]},{"name":"ICredentialProviderCredentialEvents2","features":[466]},{"name":"ICredentialProviderCredentialWithFieldOptions","features":[466]},{"name":"ICredentialProviderEvents","features":[466]},{"name":"ICredentialProviderFilter","features":[466]},{"name":"ICredentialProviderSetUserArray","features":[466]},{"name":"ICredentialProviderUser","features":[466]},{"name":"ICredentialProviderUserArray","features":[466]},{"name":"ICurrentItem","features":[466]},{"name":"ICurrentWorkingDirectory","features":[466]},{"name":"ICustomDestinationList","features":[466]},{"name":"IDC_OFFLINE_HAND","features":[466]},{"name":"IDC_PANTOOL_HAND_CLOSED","features":[466]},{"name":"IDC_PANTOOL_HAND_OPEN","features":[466]},{"name":"IDD_WIZEXTN_FIRST","features":[466]},{"name":"IDD_WIZEXTN_LAST","features":[466]},{"name":"IDO_SHGIOI_DEFAULT","features":[466]},{"name":"IDO_SHGIOI_LINK","features":[466]},{"name":"IDO_SHGIOI_SHARE","features":[466]},{"name":"IDO_SHGIOI_SLOWFILE","features":[466]},{"name":"IDS_DESCRIPTION","features":[466]},{"name":"ID_APP","features":[466]},{"name":"IDataObjectAsyncCapability","features":[466]},{"name":"IDataObjectProvider","features":[466]},{"name":"IDataTransferManagerInterop","features":[466]},{"name":"IDefaultExtractIconInit","features":[466]},{"name":"IDefaultFolderMenuInitialize","features":[466]},{"name":"IDelegateFolder","features":[466]},{"name":"IDelegateItem","features":[466]},{"name":"IDeskBand","features":[415,466]},{"name":"IDeskBand2","features":[415,466]},{"name":"IDeskBandInfo","features":[466]},{"name":"IDeskBar","features":[415,466]},{"name":"IDeskBarClient","features":[415,466]},{"name":"IDesktopGadget","features":[466]},{"name":"IDesktopWallpaper","features":[466]},{"name":"IDestinationStreamFactory","features":[466]},{"name":"IDisplayItem","features":[466]},{"name":"IDocViewSite","features":[466]},{"name":"IDockingWindow","features":[415,466]},{"name":"IDockingWindowFrame","features":[415,466]},{"name":"IDockingWindowSite","features":[415,466]},{"name":"IDragSourceHelper","features":[466]},{"name":"IDragSourceHelper2","features":[466]},{"name":"IDropTargetHelper","features":[466]},{"name":"IDynamicHWHandler","features":[466]},{"name":"IEIFLAG_ASPECT","features":[466]},{"name":"IEIFLAG_ASYNC","features":[466]},{"name":"IEIFLAG_CACHE","features":[466]},{"name":"IEIFLAG_GLEAM","features":[466]},{"name":"IEIFLAG_NOBORDER","features":[466]},{"name":"IEIFLAG_NOSTAMP","features":[466]},{"name":"IEIFLAG_OFFLINE","features":[466]},{"name":"IEIFLAG_ORIGSIZE","features":[466]},{"name":"IEIFLAG_QUALITY","features":[466]},{"name":"IEIFLAG_REFRESH","features":[466]},{"name":"IEIFLAG_SCREEN","features":[466]},{"name":"IEIT_PRIORITY_NORMAL","features":[466]},{"name":"IEI_PRIORITY_MAX","features":[466]},{"name":"IEI_PRIORITY_MIN","features":[466]},{"name":"IENamespaceTreeControl","features":[466]},{"name":"IEPDNFLAGS","features":[466]},{"name":"IEPDN_BINDINGUI","features":[466]},{"name":"IESHORTCUTFLAGS","features":[466]},{"name":"IESHORTCUT_BACKGROUNDTAB","features":[466]},{"name":"IESHORTCUT_FORCENAVIGATE","features":[466]},{"name":"IESHORTCUT_NEWBROWSER","features":[466]},{"name":"IESHORTCUT_OPENNEWTAB","features":[466]},{"name":"IEnumACString","features":[356,466]},{"name":"IEnumAssocHandlers","features":[466]},{"name":"IEnumExplorerCommand","features":[466]},{"name":"IEnumExtraSearch","features":[466]},{"name":"IEnumFullIDList","features":[466]},{"name":"IEnumHLITEM","features":[466]},{"name":"IEnumIDList","features":[466]},{"name":"IEnumObjects","features":[466]},{"name":"IEnumPublishedApps","features":[466]},{"name":"IEnumReadyCallback","features":[466]},{"name":"IEnumResources","features":[466]},{"name":"IEnumShellItems","features":[466]},{"name":"IEnumSyncMgrConflict","features":[466]},{"name":"IEnumSyncMgrEvents","features":[466]},{"name":"IEnumSyncMgrSyncItems","features":[466]},{"name":"IEnumTravelLogEntry","features":[466]},{"name":"IEnumerableView","features":[466]},{"name":"IExecuteCommand","features":[466]},{"name":"IExecuteCommandApplicationHostEnvironment","features":[466]},{"name":"IExecuteCommandHost","features":[466]},{"name":"IExpDispSupport","features":[466]},{"name":"IExpDispSupportXP","features":[466]},{"name":"IExplorerBrowser","features":[466]},{"name":"IExplorerBrowserEvents","features":[466]},{"name":"IExplorerCommand","features":[466]},{"name":"IExplorerCommandProvider","features":[466]},{"name":"IExplorerCommandState","features":[466]},{"name":"IExplorerPaneVisibility","features":[466]},{"name":"IExtensionServices","features":[466]},{"name":"IExtractIconA","features":[466]},{"name":"IExtractIconW","features":[466]},{"name":"IExtractImage","features":[466]},{"name":"IExtractImage2","features":[466]},{"name":"IFileDialog","features":[466]},{"name":"IFileDialog2","features":[466]},{"name":"IFileDialogControlEvents","features":[466]},{"name":"IFileDialogCustomize","features":[466]},{"name":"IFileDialogEvents","features":[466]},{"name":"IFileIsInUse","features":[466]},{"name":"IFileOpenDialog","features":[466]},{"name":"IFileOperation","features":[466]},{"name":"IFileOperation2","features":[466]},{"name":"IFileOperationProgressSink","features":[466]},{"name":"IFileSaveDialog","features":[466]},{"name":"IFileSearchBand","features":[356,466]},{"name":"IFileSyncMergeHandler","features":[466]},{"name":"IFileSystemBindData","features":[466]},{"name":"IFileSystemBindData2","features":[466]},{"name":"IFolderBandPriv","features":[466]},{"name":"IFolderFilter","features":[466]},{"name":"IFolderFilterSite","features":[466]},{"name":"IFolderView","features":[466]},{"name":"IFolderView2","features":[466]},{"name":"IFolderViewHost","features":[466]},{"name":"IFolderViewOC","features":[356,466]},{"name":"IFolderViewOptions","features":[466]},{"name":"IFolderViewSettings","features":[466]},{"name":"IFrameworkInputPane","features":[466]},{"name":"IFrameworkInputPaneHandler","features":[466]},{"name":"IGetServiceIds","features":[466]},{"name":"IHWEventHandler","features":[466]},{"name":"IHWEventHandler2","features":[466]},{"name":"IHandlerActivationHost","features":[466]},{"name":"IHandlerInfo","features":[466]},{"name":"IHandlerInfo2","features":[466]},{"name":"IHlink","features":[466]},{"name":"IHlinkBrowseContext","features":[466]},{"name":"IHlinkFrame","features":[466]},{"name":"IHlinkSite","features":[466]},{"name":"IHlinkTarget","features":[466]},{"name":"IHomeGroup","features":[466]},{"name":"IIOCancelInformation","features":[466]},{"name":"IIdentityName","features":[466]},{"name":"IImageRecompress","features":[466]},{"name":"IInitializeCommand","features":[466]},{"name":"IInitializeNetworkFolder","features":[466]},{"name":"IInitializeObject","features":[466]},{"name":"IInitializeWithBindCtx","features":[466]},{"name":"IInitializeWithItem","features":[466]},{"name":"IInitializeWithPropertyStore","features":[466]},{"name":"IInitializeWithWindow","features":[466]},{"name":"IInputObject","features":[466]},{"name":"IInputObject2","features":[466]},{"name":"IInputObjectSite","features":[466]},{"name":"IInputPaneAnimationCoordinator","features":[466]},{"name":"IInputPanelConfiguration","features":[466]},{"name":"IInputPanelInvocationConfiguration","features":[466]},{"name":"IInsertItem","features":[466]},{"name":"IItemNameLimits","features":[466]},{"name":"IKnownFolder","features":[466]},{"name":"IKnownFolderManager","features":[466]},{"name":"ILAppendID","features":[305,632]},{"name":"ILClone","features":[632]},{"name":"ILCloneFirst","features":[632]},{"name":"ILCombine","features":[632]},{"name":"ILCreateFromPathA","features":[632]},{"name":"ILCreateFromPathW","features":[632]},{"name":"ILFindChild","features":[632]},{"name":"ILFindLastID","features":[632]},{"name":"ILFree","features":[632]},{"name":"ILGetNext","features":[632]},{"name":"ILGetSize","features":[632]},{"name":"ILIsEqual","features":[305,632]},{"name":"ILIsParent","features":[305,632]},{"name":"ILLoadFromStreamEx","features":[356,632]},{"name":"ILMM_IE4","features":[466]},{"name":"ILRemoveLastID","features":[305,632]},{"name":"ILSaveToStream","features":[356,632]},{"name":"ILaunchSourceAppUserModelId","features":[466]},{"name":"ILaunchSourceViewSizePreference","features":[466]},{"name":"ILaunchTargetMonitor","features":[466]},{"name":"ILaunchTargetViewSizePreference","features":[466]},{"name":"ILaunchUIContext","features":[466]},{"name":"ILaunchUIContextProvider","features":[466]},{"name":"IMM_ACC_DOCKING_E_DOCKOCCUPIED","features":[466]},{"name":"IMM_ACC_DOCKING_E_INSUFFICIENTHEIGHT","features":[466]},{"name":"IMSC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[466]},{"name":"IMenuBand","features":[466]},{"name":"IMenuPopup","features":[415,466]},{"name":"IModalWindow","features":[466]},{"name":"INTERNET_MAX_PATH_LENGTH","features":[466]},{"name":"INTERNET_MAX_SCHEME_LENGTH","features":[466]},{"name":"INameSpaceTreeAccessible","features":[466]},{"name":"INameSpaceTreeControl","features":[466]},{"name":"INameSpaceTreeControl2","features":[466]},{"name":"INameSpaceTreeControlCustomDraw","features":[466]},{"name":"INameSpaceTreeControlDropHandler","features":[466]},{"name":"INameSpaceTreeControlEvents","features":[466]},{"name":"INameSpaceTreeControlFolderCapabilities","features":[466]},{"name":"INamedPropertyBag","features":[466]},{"name":"INamespaceWalk","features":[466]},{"name":"INamespaceWalkCB","features":[466]},{"name":"INamespaceWalkCB2","features":[466]},{"name":"INetworkFolderInternal","features":[466]},{"name":"INewMenuClient","features":[466]},{"name":"INewShortcutHookA","features":[466]},{"name":"INewShortcutHookW","features":[466]},{"name":"INewWDEvents","features":[356,466]},{"name":"INewWindowManager","features":[466]},{"name":"INotifyReplica","features":[466]},{"name":"IObjMgr","features":[466]},{"name":"IObjectProvider","features":[466]},{"name":"IObjectWithAppUserModelID","features":[466]},{"name":"IObjectWithBackReferences","features":[466]},{"name":"IObjectWithCancelEvent","features":[466]},{"name":"IObjectWithFolderEnumMode","features":[466]},{"name":"IObjectWithProgID","features":[466]},{"name":"IObjectWithSelection","features":[466]},{"name":"IOpenControlPanel","features":[466]},{"name":"IOpenSearchSource","features":[466]},{"name":"IOperationsProgressDialog","features":[466]},{"name":"IPackageDebugSettings","features":[466]},{"name":"IPackageDebugSettings2","features":[466]},{"name":"IPackageExecutionStateChangeNotification","features":[466]},{"name":"IParentAndItem","features":[466]},{"name":"IParseAndCreateItem","features":[466]},{"name":"IPersistFolder","features":[356,466]},{"name":"IPersistFolder2","features":[356,466]},{"name":"IPersistFolder3","features":[356,466]},{"name":"IPersistIDList","features":[356,466]},{"name":"IPreviewHandler","features":[466]},{"name":"IPreviewHandlerFrame","features":[466]},{"name":"IPreviewHandlerVisuals","features":[466]},{"name":"IPreviewItem","features":[466]},{"name":"IPreviousVersionsInfo","features":[466]},{"name":"IProfferService","features":[466]},{"name":"IProgressDialog","features":[466]},{"name":"IPropertyKeyStore","features":[466]},{"name":"IPublishedApp","features":[466]},{"name":"IPublishedApp2","features":[466]},{"name":"IPublishingWizard","features":[466]},{"name":"IQueryAssociations","features":[466]},{"name":"IQueryCancelAutoPlay","features":[466]},{"name":"IQueryCodePage","features":[466]},{"name":"IQueryContinue","features":[466]},{"name":"IQueryContinueWithStatus","features":[466]},{"name":"IQueryInfo","features":[466]},{"name":"IRTIR_TASK_FINISHED","features":[466]},{"name":"IRTIR_TASK_NOT_RUNNING","features":[466]},{"name":"IRTIR_TASK_PENDING","features":[466]},{"name":"IRTIR_TASK_RUNNING","features":[466]},{"name":"IRTIR_TASK_SUSPENDED","features":[466]},{"name":"IRegTreeItem","features":[466]},{"name":"IRelatedItem","features":[466]},{"name":"IRemoteComputer","features":[466]},{"name":"IResolveShellLink","features":[466]},{"name":"IResultsFolder","features":[466]},{"name":"IRunnableTask","features":[466]},{"name":"ISFBVIEWMODE_LARGEICONS","features":[466]},{"name":"ISFBVIEWMODE_LOGOS","features":[466]},{"name":"ISFBVIEWMODE_SMALLICONS","features":[466]},{"name":"ISFB_MASK_BKCOLOR","features":[466]},{"name":"ISFB_MASK_COLORS","features":[466]},{"name":"ISFB_MASK_IDLIST","features":[466]},{"name":"ISFB_MASK_SHELLFOLDER","features":[466]},{"name":"ISFB_MASK_STATE","features":[466]},{"name":"ISFB_MASK_VIEWMODE","features":[466]},{"name":"ISFB_STATE_ALLOWRENAME","features":[466]},{"name":"ISFB_STATE_BTNMINSIZE","features":[466]},{"name":"ISFB_STATE_CHANNELBAR","features":[466]},{"name":"ISFB_STATE_DEBOSSED","features":[466]},{"name":"ISFB_STATE_DEFAULT","features":[466]},{"name":"ISFB_STATE_FULLOPEN","features":[466]},{"name":"ISFB_STATE_NONAMESORT","features":[466]},{"name":"ISFB_STATE_NOSHOWTEXT","features":[466]},{"name":"ISFB_STATE_QLINKSMODE","features":[466]},{"name":"ISHCUTCMDID_COMMITHISTORY","features":[466]},{"name":"ISHCUTCMDID_DOWNLOADICON","features":[466]},{"name":"ISHCUTCMDID_INTSHORTCUTCREATE","features":[466]},{"name":"ISHCUTCMDID_SETUSERAWURL","features":[466]},{"name":"ISIOI_ICONFILE","features":[466]},{"name":"ISIOI_ICONINDEX","features":[466]},{"name":"IS_E_EXEC_FAILED","features":[466]},{"name":"IS_FULLSCREEN","features":[466]},{"name":"IS_NORMAL","features":[466]},{"name":"IS_SPLIT","features":[466]},{"name":"IScriptErrorList","features":[356,466]},{"name":"ISearchBoxInfo","features":[466]},{"name":"ISearchContext","features":[466]},{"name":"ISearchFolderItemFactory","features":[466]},{"name":"ISharedBitmap","features":[466]},{"name":"ISharingConfigurationManager","features":[466]},{"name":"IShellApp","features":[466]},{"name":"IShellBrowser","features":[415,466]},{"name":"IShellChangeNotify","features":[466]},{"name":"IShellDetails","features":[466]},{"name":"IShellDispatch","features":[356,466]},{"name":"IShellDispatch2","features":[356,466]},{"name":"IShellDispatch3","features":[356,466]},{"name":"IShellDispatch4","features":[356,466]},{"name":"IShellDispatch5","features":[356,466]},{"name":"IShellDispatch6","features":[356,466]},{"name":"IShellExtInit","features":[466]},{"name":"IShellFavoritesNameSpace","features":[356,466]},{"name":"IShellFolder","features":[466]},{"name":"IShellFolder2","features":[466]},{"name":"IShellFolderBand","features":[466]},{"name":"IShellFolderView","features":[466]},{"name":"IShellFolderViewCB","features":[466]},{"name":"IShellFolderViewDual","features":[356,466]},{"name":"IShellFolderViewDual2","features":[356,466]},{"name":"IShellFolderViewDual3","features":[356,466]},{"name":"IShellIcon","features":[466]},{"name":"IShellIconOverlay","features":[466]},{"name":"IShellIconOverlayIdentifier","features":[466]},{"name":"IShellIconOverlayManager","features":[466]},{"name":"IShellImageData","features":[466]},{"name":"IShellImageDataAbort","features":[466]},{"name":"IShellImageDataFactory","features":[466]},{"name":"IShellItem","features":[466]},{"name":"IShellItem2","features":[466]},{"name":"IShellItemArray","features":[466]},{"name":"IShellItemFilter","features":[466]},{"name":"IShellItemImageFactory","features":[466]},{"name":"IShellItemResources","features":[466]},{"name":"IShellLibrary","features":[466]},{"name":"IShellLinkA","features":[466]},{"name":"IShellLinkDataList","features":[466]},{"name":"IShellLinkDual","features":[356,466]},{"name":"IShellLinkDual2","features":[356,466]},{"name":"IShellLinkW","features":[466]},{"name":"IShellMenu","features":[466]},{"name":"IShellMenuCallback","features":[466]},{"name":"IShellNameSpace","features":[356,466]},{"name":"IShellPropSheetExt","features":[466]},{"name":"IShellRunDll","features":[466]},{"name":"IShellService","features":[466]},{"name":"IShellTaskScheduler","features":[466]},{"name":"IShellUIHelper","features":[356,466]},{"name":"IShellUIHelper2","features":[356,466]},{"name":"IShellUIHelper3","features":[356,466]},{"name":"IShellUIHelper4","features":[356,466]},{"name":"IShellUIHelper5","features":[356,466]},{"name":"IShellUIHelper6","features":[356,466]},{"name":"IShellUIHelper7","features":[356,466]},{"name":"IShellUIHelper8","features":[356,466]},{"name":"IShellUIHelper9","features":[356,466]},{"name":"IShellView","features":[415,466]},{"name":"IShellView2","features":[415,466]},{"name":"IShellView3","features":[415,466]},{"name":"IShellWindows","features":[356,466]},{"name":"ISortColumnArray","features":[466]},{"name":"IStartMenuPinnedList","features":[466]},{"name":"IStorageProviderBanners","features":[466]},{"name":"IStorageProviderCopyHook","features":[466]},{"name":"IStorageProviderHandler","features":[466]},{"name":"IStorageProviderPropertyHandler","features":[466]},{"name":"IStreamAsync","features":[356,466]},{"name":"IStreamUnbufferedInfo","features":[466]},{"name":"IStream_Copy","features":[356,466]},{"name":"IStream_Read","features":[356,466]},{"name":"IStream_ReadPidl","features":[356,632]},{"name":"IStream_ReadStr","features":[356,466]},{"name":"IStream_Reset","features":[356,466]},{"name":"IStream_Size","features":[356,466]},{"name":"IStream_Write","features":[356,466]},{"name":"IStream_WritePidl","features":[356,632]},{"name":"IStream_WriteStr","features":[356,466]},{"name":"ISuspensionDependencyManager","features":[466]},{"name":"ISyncMgrConflict","features":[466]},{"name":"ISyncMgrConflictFolder","features":[466]},{"name":"ISyncMgrConflictItems","features":[466]},{"name":"ISyncMgrConflictPresenter","features":[466]},{"name":"ISyncMgrConflictResolutionItems","features":[466]},{"name":"ISyncMgrConflictResolveInfo","features":[466]},{"name":"ISyncMgrConflictStore","features":[466]},{"name":"ISyncMgrControl","features":[466]},{"name":"ISyncMgrEnumItems","features":[466]},{"name":"ISyncMgrEvent","features":[466]},{"name":"ISyncMgrEventLinkUIOperation","features":[466]},{"name":"ISyncMgrEventStore","features":[466]},{"name":"ISyncMgrHandler","features":[466]},{"name":"ISyncMgrHandlerCollection","features":[466]},{"name":"ISyncMgrHandlerInfo","features":[466]},{"name":"ISyncMgrRegister","features":[466]},{"name":"ISyncMgrResolutionHandler","features":[466]},{"name":"ISyncMgrScheduleWizardUIOperation","features":[466]},{"name":"ISyncMgrSessionCreator","features":[466]},{"name":"ISyncMgrSyncCallback","features":[466]},{"name":"ISyncMgrSyncItem","features":[466]},{"name":"ISyncMgrSyncItemContainer","features":[466]},{"name":"ISyncMgrSyncItemInfo","features":[466]},{"name":"ISyncMgrSyncResult","features":[466]},{"name":"ISyncMgrSynchronize","features":[466]},{"name":"ISyncMgrSynchronizeCallback","features":[466]},{"name":"ISyncMgrSynchronizeInvoke","features":[466]},{"name":"ISyncMgrUIOperation","features":[466]},{"name":"ITEMSPACING","features":[466]},{"name":"ITSAT_DEFAULT_PRIORITY","features":[466]},{"name":"ITSAT_MAX_PRIORITY","features":[466]},{"name":"ITSAT_MIN_PRIORITY","features":[466]},{"name":"ITSSFLAG_COMPLETE_ON_DESTROY","features":[466]},{"name":"ITSSFLAG_FLAGS_MASK","features":[466]},{"name":"ITSSFLAG_KILL_ON_DESTROY","features":[466]},{"name":"ITSS_THREAD_TIMEOUT_NO_CHANGE","features":[466]},{"name":"ITaskbarList","features":[466]},{"name":"ITaskbarList2","features":[466]},{"name":"ITaskbarList3","features":[466]},{"name":"ITaskbarList4","features":[466]},{"name":"IThumbnailCache","features":[466]},{"name":"IThumbnailCachePrimer","features":[466]},{"name":"IThumbnailCapture","features":[466]},{"name":"IThumbnailHandlerFactory","features":[466]},{"name":"IThumbnailProvider","features":[466]},{"name":"IThumbnailSettings","features":[466]},{"name":"IThumbnailStreamCache","features":[466]},{"name":"ITrackShellMenu","features":[466]},{"name":"ITranscodeImage","features":[466]},{"name":"ITransferAdviseSink","features":[466]},{"name":"ITransferDestination","features":[466]},{"name":"ITransferMediumItem","features":[466]},{"name":"ITransferSource","features":[466]},{"name":"ITravelEntry","features":[466]},{"name":"ITravelLog","features":[466]},{"name":"ITravelLogClient","features":[466]},{"name":"ITravelLogEntry","features":[466]},{"name":"ITravelLogStg","features":[466]},{"name":"ITrayDeskBand","features":[466]},{"name":"IURLSearchHook","features":[466]},{"name":"IURLSearchHook2","features":[466]},{"name":"IURL_INVOKECOMMAND_FLAGS","features":[466]},{"name":"IURL_INVOKECOMMAND_FL_ALLOW_UI","features":[466]},{"name":"IURL_INVOKECOMMAND_FL_ASYNCOK","features":[466]},{"name":"IURL_INVOKECOMMAND_FL_DDEWAIT","features":[466]},{"name":"IURL_INVOKECOMMAND_FL_LOG_USAGE","features":[466]},{"name":"IURL_INVOKECOMMAND_FL_USE_DEFAULT_VERB","features":[466]},{"name":"IURL_SETURL_FLAGS","features":[466]},{"name":"IURL_SETURL_FL_GUESS_PROTOCOL","features":[466]},{"name":"IURL_SETURL_FL_USE_DEFAULT_PROTOCOL","features":[466]},{"name":"IUniformResourceLocatorA","features":[466]},{"name":"IUniformResourceLocatorW","features":[466]},{"name":"IUnknown_AtomicRelease","features":[466]},{"name":"IUnknown_GetSite","features":[466]},{"name":"IUnknown_GetWindow","features":[305,466]},{"name":"IUnknown_QueryService","features":[466]},{"name":"IUnknown_Set","features":[466]},{"name":"IUnknown_SetSite","features":[466]},{"name":"IUpdateIDList","features":[466]},{"name":"IUseToBrowseItem","features":[466]},{"name":"IUserAccountChangeCallback","features":[466]},{"name":"IUserNotification","features":[466]},{"name":"IUserNotification2","features":[466]},{"name":"IUserNotificationCallback","features":[466]},{"name":"IViewStateIdentityItem","features":[466]},{"name":"IVirtualDesktopManager","features":[466]},{"name":"IVisualProperties","features":[466]},{"name":"IWebBrowser","features":[356,466]},{"name":"IWebBrowser2","features":[356,466]},{"name":"IWebBrowserApp","features":[356,466]},{"name":"IWebWizardExtension","features":[466]},{"name":"IWebWizardHost","features":[356,466]},{"name":"IWebWizardHost2","features":[356,466]},{"name":"IWizardExtension","features":[466]},{"name":"IWizardSite","features":[466]},{"name":"Identity_LocalUserProvider","features":[466]},{"name":"ImageProperties","features":[466]},{"name":"ImageRecompress","features":[466]},{"name":"ImageTranscode","features":[466]},{"name":"ImportPrivacySettings","features":[305,466]},{"name":"InitNetworkAddressControl","features":[305,466]},{"name":"InitPropVariantFromStrRet","features":[632]},{"name":"InitVariantFromStrRet","features":[632]},{"name":"InputPanelConfiguration","features":[466]},{"name":"InternetExplorer","features":[466]},{"name":"InternetExplorerMedium","features":[466]},{"name":"InternetPrintOrdering","features":[466]},{"name":"IntlStrEqWorkerA","features":[305,466]},{"name":"IntlStrEqWorkerW","features":[305,466]},{"name":"IsCharSpaceA","features":[305,466]},{"name":"IsCharSpaceW","features":[305,466]},{"name":"IsInternetESCEnabled","features":[305,466]},{"name":"IsLFNDriveA","features":[305,466]},{"name":"IsLFNDriveW","features":[305,466]},{"name":"IsNetDrive","features":[466]},{"name":"IsOS","features":[305,466]},{"name":"IsUserAnAdmin","features":[305,466]},{"name":"ItemCount_Property_GUID","features":[466]},{"name":"ItemIndex_Property_GUID","features":[466]},{"name":"KDC_FREQUENT","features":[466]},{"name":"KDC_RECENT","features":[466]},{"name":"KFDF_LOCAL_REDIRECT_ONLY","features":[466]},{"name":"KFDF_NO_REDIRECT_UI","features":[466]},{"name":"KFDF_PRECREATE","features":[466]},{"name":"KFDF_PUBLISHEXPANDEDPATH","features":[466]},{"name":"KFDF_ROAMABLE","features":[466]},{"name":"KFDF_STREAM","features":[466]},{"name":"KF_CATEGORY","features":[466]},{"name":"KF_CATEGORY_COMMON","features":[466]},{"name":"KF_CATEGORY_FIXED","features":[466]},{"name":"KF_CATEGORY_PERUSER","features":[466]},{"name":"KF_CATEGORY_VIRTUAL","features":[466]},{"name":"KF_FLAG_ALIAS_ONLY","features":[466]},{"name":"KF_FLAG_CREATE","features":[466]},{"name":"KF_FLAG_DEFAULT","features":[466]},{"name":"KF_FLAG_DEFAULT_PATH","features":[466]},{"name":"KF_FLAG_DONT_UNEXPAND","features":[466]},{"name":"KF_FLAG_DONT_VERIFY","features":[466]},{"name":"KF_FLAG_FORCE_APPCONTAINER_REDIRECTION","features":[466]},{"name":"KF_FLAG_FORCE_APP_DATA_REDIRECTION","features":[466]},{"name":"KF_FLAG_FORCE_PACKAGE_REDIRECTION","features":[466]},{"name":"KF_FLAG_INIT","features":[466]},{"name":"KF_FLAG_NOT_PARENT_RELATIVE","features":[466]},{"name":"KF_FLAG_NO_ALIAS","features":[466]},{"name":"KF_FLAG_NO_APPCONTAINER_REDIRECTION","features":[466]},{"name":"KF_FLAG_NO_PACKAGE_REDIRECTION","features":[466]},{"name":"KF_FLAG_RETURN_FILTER_REDIRECTION_TARGET","features":[466]},{"name":"KF_FLAG_SIMPLE_IDLIST","features":[466]},{"name":"KF_REDIRECTION_CAPABILITIES_ALLOW_ALL","features":[466]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_ALL","features":[466]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_PERMISSIONS","features":[466]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY","features":[466]},{"name":"KF_REDIRECTION_CAPABILITIES_DENY_POLICY_REDIRECTED","features":[466]},{"name":"KF_REDIRECTION_CAPABILITIES_REDIRECTABLE","features":[466]},{"name":"KF_REDIRECT_CHECK_ONLY","features":[466]},{"name":"KF_REDIRECT_COPY_CONTENTS","features":[466]},{"name":"KF_REDIRECT_COPY_SOURCE_DACL","features":[466]},{"name":"KF_REDIRECT_DEL_SOURCE_CONTENTS","features":[466]},{"name":"KF_REDIRECT_EXCLUDE_ALL_KNOWN_SUBFOLDERS","features":[466]},{"name":"KF_REDIRECT_OWNER_USER","features":[466]},{"name":"KF_REDIRECT_PIN","features":[466]},{"name":"KF_REDIRECT_SET_OWNER_EXPLICIT","features":[466]},{"name":"KF_REDIRECT_UNPIN","features":[466]},{"name":"KF_REDIRECT_USER_EXCLUSIVE","features":[466]},{"name":"KF_REDIRECT_WITH_UI","features":[466]},{"name":"KNOWNDESTCATEGORY","features":[466]},{"name":"KNOWNFOLDER_DEFINITION","features":[466]},{"name":"KNOWN_FOLDER_FLAG","features":[466]},{"name":"KnownFolderManager","features":[466]},{"name":"LFF_ALLITEMS","features":[466]},{"name":"LFF_FORCEFILESYSTEM","features":[466]},{"name":"LFF_STORAGEITEMS","features":[466]},{"name":"LIBRARYFOLDERFILTER","features":[466]},{"name":"LIBRARYMANAGEDIALOGOPTIONS","features":[466]},{"name":"LIBRARYOPTIONFLAGS","features":[466]},{"name":"LIBRARYSAVEFLAGS","features":[466]},{"name":"LIBRARY_E_NO_ACCESSIBLE_LOCATION","features":[466]},{"name":"LIBRARY_E_NO_SAVE_LOCATION","features":[466]},{"name":"LINK_E_DELETE","features":[466]},{"name":"LMD_ALLOWUNINDEXABLENETWORKLOCATIONS","features":[466]},{"name":"LMD_DEFAULT","features":[466]},{"name":"LOF_DEFAULT","features":[466]},{"name":"LOF_MASK_ALL","features":[466]},{"name":"LOF_PINNEDTONAVPANE","features":[466]},{"name":"LPFNDFMCALLBACK","features":[305,356,466]},{"name":"LPFNVIEWCALLBACK","features":[305,415,466]},{"name":"LSF_FAILIFTHERE","features":[466]},{"name":"LSF_MAKEUNIQUENAME","features":[466]},{"name":"LSF_OVERRIDEEXISTING","features":[466]},{"name":"LoadUserProfileA","features":[305,466]},{"name":"LoadUserProfileW","features":[305,466]},{"name":"LocalThumbnailCache","features":[466]},{"name":"MAV_APP_VISIBLE","features":[466]},{"name":"MAV_NO_APP_VISIBLE","features":[466]},{"name":"MAV_UNKNOWN","features":[466]},{"name":"MAXFILELEN","features":[466]},{"name":"MAX_COLUMN_DESC_LEN","features":[466]},{"name":"MAX_COLUMN_NAME_LEN","features":[466]},{"name":"MAX_SYNCMGRHANDLERNAME","features":[466]},{"name":"MAX_SYNCMGRITEMNAME","features":[466]},{"name":"MAX_SYNCMGR_ID","features":[466]},{"name":"MAX_SYNCMGR_NAME","features":[466]},{"name":"MAX_SYNCMGR_PROGRESSTEXT","features":[466]},{"name":"MBHANDCID_PIDLSELECT","features":[466]},{"name":"MENUBANDHANDLERCID","features":[466]},{"name":"MENUPOPUPPOPUPFLAGS","features":[466]},{"name":"MENUPOPUPSELECT","features":[466]},{"name":"MERGE_UPDATE_STATUS","features":[466]},{"name":"MIMEASSOCDLG_FL_REGISTER_ASSOC","features":[466]},{"name":"MIMEASSOCIATIONDIALOG_IN_FLAGS","features":[466]},{"name":"MM_ADDSEPARATOR","features":[466]},{"name":"MM_DONTREMOVESEPS","features":[466]},{"name":"MM_FLAGS","features":[466]},{"name":"MM_SUBMENUSHAVEIDS","features":[466]},{"name":"MONITOR_APP_VISIBILITY","features":[466]},{"name":"MPOS_CANCELLEVEL","features":[466]},{"name":"MPOS_CHILDTRACKING","features":[466]},{"name":"MPOS_EXECUTE","features":[466]},{"name":"MPOS_FULLCANCEL","features":[466]},{"name":"MPOS_SELECTLEFT","features":[466]},{"name":"MPOS_SELECTRIGHT","features":[466]},{"name":"MPPF_ALIGN_LEFT","features":[466]},{"name":"MPPF_ALIGN_RIGHT","features":[466]},{"name":"MPPF_BOTTOM","features":[466]},{"name":"MPPF_FINALSELECT","features":[466]},{"name":"MPPF_FORCEZORDER","features":[466]},{"name":"MPPF_INITIALSELECT","features":[466]},{"name":"MPPF_KEYBOARD","features":[466]},{"name":"MPPF_LEFT","features":[466]},{"name":"MPPF_NOANIMATE","features":[466]},{"name":"MPPF_POS_MASK","features":[466]},{"name":"MPPF_REPOSITION","features":[466]},{"name":"MPPF_RIGHT","features":[466]},{"name":"MPPF_SETFOCUS","features":[466]},{"name":"MPPF_TOP","features":[466]},{"name":"MULTIKEYHELPA","features":[466]},{"name":"MULTIKEYHELPW","features":[466]},{"name":"MUS_COMPLETE","features":[466]},{"name":"MUS_FAILED","features":[466]},{"name":"MUS_USERINPUTNEEDED","features":[466]},{"name":"MailRecipient","features":[466]},{"name":"MergedCategorizer","features":[466]},{"name":"NAMESPACEWALKFLAG","features":[466]},{"name":"NATIVE_DISPLAY_ORIENTATION","features":[466]},{"name":"NCM_DISPLAYERRORTIP","features":[466]},{"name":"NCM_GETADDRESS","features":[466]},{"name":"NCM_GETALLOWTYPE","features":[466]},{"name":"NCM_SETALLOWTYPE","features":[466]},{"name":"NC_ADDRESS","features":[444,318,466]},{"name":"NDO_LANDSCAPE","features":[466]},{"name":"NDO_PORTRAIT","features":[466]},{"name":"NETCACHE_E_NEGATIVE_CACHE","features":[466]},{"name":"NEWCPLINFOA","features":[466,367]},{"name":"NEWCPLINFOW","features":[466,367]},{"name":"NIF_GUID","features":[466]},{"name":"NIF_ICON","features":[466]},{"name":"NIF_INFO","features":[466]},{"name":"NIF_MESSAGE","features":[466]},{"name":"NIF_REALTIME","features":[466]},{"name":"NIF_SHOWTIP","features":[466]},{"name":"NIF_STATE","features":[466]},{"name":"NIF_TIP","features":[466]},{"name":"NIIF_ERROR","features":[466]},{"name":"NIIF_ICON_MASK","features":[466]},{"name":"NIIF_INFO","features":[466]},{"name":"NIIF_LARGE_ICON","features":[466]},{"name":"NIIF_NONE","features":[466]},{"name":"NIIF_NOSOUND","features":[466]},{"name":"NIIF_RESPECT_QUIET_TIME","features":[466]},{"name":"NIIF_USER","features":[466]},{"name":"NIIF_WARNING","features":[466]},{"name":"NIM_ADD","features":[466]},{"name":"NIM_DELETE","features":[466]},{"name":"NIM_MODIFY","features":[466]},{"name":"NIM_SETFOCUS","features":[466]},{"name":"NIM_SETVERSION","features":[466]},{"name":"NINF_KEY","features":[466]},{"name":"NIN_BALLOONHIDE","features":[466]},{"name":"NIN_BALLOONSHOW","features":[466]},{"name":"NIN_BALLOONTIMEOUT","features":[466]},{"name":"NIN_BALLOONUSERCLICK","features":[466]},{"name":"NIN_POPUPCLOSE","features":[466]},{"name":"NIN_POPUPOPEN","features":[466]},{"name":"NIN_SELECT","features":[466]},{"name":"NIS_HIDDEN","features":[466]},{"name":"NIS_SHAREDICON","features":[466]},{"name":"NMCII_FOLDERS","features":[466]},{"name":"NMCII_ITEMS","features":[466]},{"name":"NMCII_NONE","features":[466]},{"name":"NMCSAEI_EDIT","features":[466]},{"name":"NMCSAEI_SELECT","features":[466]},{"name":"NOTIFYICONDATAA","features":[305,466,367]},{"name":"NOTIFYICONDATAA","features":[305,466,367]},{"name":"NOTIFYICONDATAW","features":[305,466,367]},{"name":"NOTIFYICONDATAW","features":[305,466,367]},{"name":"NOTIFYICONIDENTIFIER","features":[305,466]},{"name":"NOTIFYICONIDENTIFIER","features":[305,466]},{"name":"NOTIFYICON_VERSION","features":[466]},{"name":"NOTIFYICON_VERSION_4","features":[466]},{"name":"NOTIFY_ICON_DATA_FLAGS","features":[466]},{"name":"NOTIFY_ICON_INFOTIP_FLAGS","features":[466]},{"name":"NOTIFY_ICON_MESSAGE","features":[466]},{"name":"NOTIFY_ICON_STATE","features":[466]},{"name":"NPCredentialProvider","features":[466]},{"name":"NRESARRAY","features":[456,466]},{"name":"NSTCCUSTOMDRAW","features":[355,466]},{"name":"NSTCDHPOS_ONTOP","features":[466]},{"name":"NSTCECT_BUTTON","features":[466]},{"name":"NSTCECT_DBLCLICK","features":[466]},{"name":"NSTCECT_LBUTTON","features":[466]},{"name":"NSTCECT_MBUTTON","features":[466]},{"name":"NSTCECT_RBUTTON","features":[466]},{"name":"NSTCEHT_NOWHERE","features":[466]},{"name":"NSTCEHT_ONITEM","features":[466]},{"name":"NSTCEHT_ONITEMBUTTON","features":[466]},{"name":"NSTCEHT_ONITEMICON","features":[466]},{"name":"NSTCEHT_ONITEMINDENT","features":[466]},{"name":"NSTCEHT_ONITEMLABEL","features":[466]},{"name":"NSTCEHT_ONITEMRIGHT","features":[466]},{"name":"NSTCEHT_ONITEMSTATEICON","features":[466]},{"name":"NSTCEHT_ONITEMTABBUTTON","features":[466]},{"name":"NSTCFC_DELAY_REGISTER_NOTIFY","features":[466]},{"name":"NSTCFC_NONE","features":[466]},{"name":"NSTCFC_PINNEDITEMFILTERING","features":[466]},{"name":"NSTCFOLDERCAPABILITIES","features":[466]},{"name":"NSTCGNI","features":[466]},{"name":"NSTCGNI_CHILD","features":[466]},{"name":"NSTCGNI_FIRSTVISIBLE","features":[466]},{"name":"NSTCGNI_LASTVISIBLE","features":[466]},{"name":"NSTCGNI_NEXT","features":[466]},{"name":"NSTCGNI_NEXTVISIBLE","features":[466]},{"name":"NSTCGNI_PARENT","features":[466]},{"name":"NSTCGNI_PREV","features":[466]},{"name":"NSTCGNI_PREVVISIBLE","features":[466]},{"name":"NSTCIS_BOLD","features":[466]},{"name":"NSTCIS_DISABLED","features":[466]},{"name":"NSTCIS_EXPANDED","features":[466]},{"name":"NSTCIS_NONE","features":[466]},{"name":"NSTCIS_SELECTED","features":[466]},{"name":"NSTCIS_SELECTEDNOEXPAND","features":[466]},{"name":"NSTCRS_EXPANDED","features":[466]},{"name":"NSTCRS_HIDDEN","features":[466]},{"name":"NSTCRS_VISIBLE","features":[466]},{"name":"NSTCS2_DEFAULT","features":[466]},{"name":"NSTCS2_DISPLAYPADDING","features":[466]},{"name":"NSTCS2_DISPLAYPINNEDONLY","features":[466]},{"name":"NSTCS2_INTERRUPTNOTIFICATIONS","features":[466]},{"name":"NSTCS2_SHOWNULLSPACEMENU","features":[466]},{"name":"NSTCSTYLE2","features":[466]},{"name":"NSTCS_ALLOWJUNCTIONS","features":[466]},{"name":"NSTCS_AUTOHSCROLL","features":[466]},{"name":"NSTCS_BORDER","features":[466]},{"name":"NSTCS_CHECKBOXES","features":[466]},{"name":"NSTCS_DIMMEDCHECKBOXES","features":[466]},{"name":"NSTCS_DISABLEDRAGDROP","features":[466]},{"name":"NSTCS_EMPTYTEXT","features":[466]},{"name":"NSTCS_EVENHEIGHT","features":[466]},{"name":"NSTCS_EXCLUSIONCHECKBOXES","features":[466]},{"name":"NSTCS_FADEINOUTEXPANDOS","features":[466]},{"name":"NSTCS_FAVORITESMODE","features":[466]},{"name":"NSTCS_FULLROWSELECT","features":[466]},{"name":"NSTCS_HASEXPANDOS","features":[466]},{"name":"NSTCS_HASLINES","features":[466]},{"name":"NSTCS_HORIZONTALSCROLL","features":[466]},{"name":"NSTCS_NOEDITLABELS","features":[466]},{"name":"NSTCS_NOINDENTCHECKS","features":[466]},{"name":"NSTCS_NOINFOTIP","features":[466]},{"name":"NSTCS_NOORDERSTREAM","features":[466]},{"name":"NSTCS_NOREPLACEOPEN","features":[466]},{"name":"NSTCS_PARTIALCHECKBOXES","features":[466]},{"name":"NSTCS_RICHTOOLTIP","features":[466]},{"name":"NSTCS_ROOTHASEXPANDO","features":[466]},{"name":"NSTCS_SHOWDELETEBUTTON","features":[466]},{"name":"NSTCS_SHOWREFRESHBUTTON","features":[466]},{"name":"NSTCS_SHOWSELECTIONALWAYS","features":[466]},{"name":"NSTCS_SHOWTABSBUTTON","features":[466]},{"name":"NSTCS_SINGLECLICKEXPAND","features":[466]},{"name":"NSTCS_SPRINGEXPAND","features":[466]},{"name":"NSTCS_TABSTOP","features":[466]},{"name":"NSWF_ACCUMULATE_FOLDERS","features":[466]},{"name":"NSWF_ANY_IMPLIES_ALL","features":[466]},{"name":"NSWF_ASYNC","features":[466]},{"name":"NSWF_DEFAULT","features":[466]},{"name":"NSWF_DONT_ACCUMULATE_RESULT","features":[466]},{"name":"NSWF_DONT_RESOLVE_LINKS","features":[466]},{"name":"NSWF_DONT_SORT","features":[466]},{"name":"NSWF_DONT_TRAVERSE_LINKS","features":[466]},{"name":"NSWF_DONT_TRAVERSE_STREAM_JUNCTIONS","features":[466]},{"name":"NSWF_FILESYSTEM_ONLY","features":[466]},{"name":"NSWF_FLAG_VIEWORDER","features":[466]},{"name":"NSWF_IGNORE_AUTOPLAY_HIDA","features":[466]},{"name":"NSWF_NONE_IMPLIES_ALL","features":[466]},{"name":"NSWF_ONE_IMPLIES_ALL","features":[466]},{"name":"NSWF_SHOW_PROGRESS","features":[466]},{"name":"NSWF_TRAVERSE_STREAM_JUNCTIONS","features":[466]},{"name":"NSWF_USE_TRANSFER_MEDIUM","features":[466]},{"name":"NTSCS2_NEVERINSERTNONENUMERATED","features":[466]},{"name":"NTSCS2_NOSINGLETONAUTOEXPAND","features":[466]},{"name":"NT_CONSOLE_PROPS","features":[305,370,466]},{"name":"NT_CONSOLE_PROPS_SIG","features":[466]},{"name":"NT_FE_CONSOLE_PROPS","features":[466]},{"name":"NT_FE_CONSOLE_PROPS_SIG","features":[466]},{"name":"NUM_POINTS","features":[466]},{"name":"NWMF","features":[466]},{"name":"NWMF_FIRST","features":[466]},{"name":"NWMF_FORCETAB","features":[466]},{"name":"NWMF_FORCEWINDOW","features":[466]},{"name":"NWMF_FROMDIALOGCHILD","features":[466]},{"name":"NWMF_HTMLDIALOG","features":[466]},{"name":"NWMF_INACTIVETAB","features":[466]},{"name":"NWMF_OVERRIDEKEY","features":[466]},{"name":"NWMF_SHOWHELP","features":[466]},{"name":"NWMF_SUGGESTTAB","features":[466]},{"name":"NWMF_SUGGESTWINDOW","features":[466]},{"name":"NWMF_UNLOADING","features":[466]},{"name":"NWMF_USERALLOWED","features":[466]},{"name":"NWMF_USERINITED","features":[466]},{"name":"NWMF_USERREQUESTED","features":[466]},{"name":"NamespaceTreeControl","features":[466]},{"name":"NamespaceWalker","features":[466]},{"name":"NetworkConnections","features":[466]},{"name":"NetworkExplorerFolder","features":[466]},{"name":"NetworkPlaces","features":[466]},{"name":"NewProcessCauseConstants","features":[466]},{"name":"OAIF_ALLOW_REGISTRATION","features":[466]},{"name":"OAIF_EXEC","features":[466]},{"name":"OAIF_FILE_IS_URI","features":[466]},{"name":"OAIF_FORCE_REGISTRATION","features":[466]},{"name":"OAIF_HIDE_REGISTRATION","features":[466]},{"name":"OAIF_REGISTER_EXT","features":[466]},{"name":"OAIF_URL_PROTOCOL","features":[466]},{"name":"OFASI_EDIT","features":[466]},{"name":"OFASI_OPENDESKTOP","features":[466]},{"name":"OFFLINE_STATUS_INCOMPLETE","features":[466]},{"name":"OFFLINE_STATUS_LOCAL","features":[466]},{"name":"OFFLINE_STATUS_REMOTE","features":[466]},{"name":"OFS_DIRTYCACHE","features":[466]},{"name":"OFS_INACTIVE","features":[466]},{"name":"OFS_OFFLINE","features":[466]},{"name":"OFS_ONLINE","features":[466]},{"name":"OFS_SERVERBACK","features":[466]},{"name":"OF_CAP_CANCLOSE","features":[466]},{"name":"OF_CAP_CANSWITCHTO","features":[466]},{"name":"OI_ASYNC","features":[466]},{"name":"OI_DEFAULT","features":[466]},{"name":"OPENASINFO","features":[466]},{"name":"OPENPROPS_INHIBITPIF","features":[466]},{"name":"OPENPROPS_NONE","features":[466]},{"name":"OPEN_AS_INFO_FLAGS","features":[466]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[305,466]},{"name":"OPEN_PRINTER_PROPS_INFOA","features":[305,466]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[305,466]},{"name":"OPEN_PRINTER_PROPS_INFOW","features":[305,466]},{"name":"OPPROGDLG_ALLOWUNDO","features":[466]},{"name":"OPPROGDLG_DEFAULT","features":[466]},{"name":"OPPROGDLG_DONTDISPLAYDESTPATH","features":[466]},{"name":"OPPROGDLG_DONTDISPLAYLOCATIONS","features":[466]},{"name":"OPPROGDLG_DONTDISPLAYSOURCEPATH","features":[466]},{"name":"OPPROGDLG_ENABLEPAUSE","features":[466]},{"name":"OPPROGDLG_NOMULTIDAYESTIMATES","features":[466]},{"name":"OS","features":[466]},{"name":"OS_ADVSERVER","features":[466]},{"name":"OS_ANYSERVER","features":[466]},{"name":"OS_APPLIANCE","features":[466]},{"name":"OS_DATACENTER","features":[466]},{"name":"OS_DOMAINMEMBER","features":[466]},{"name":"OS_EMBEDDED","features":[466]},{"name":"OS_FASTUSERSWITCHING","features":[466]},{"name":"OS_HOME","features":[466]},{"name":"OS_MEDIACENTER","features":[466]},{"name":"OS_MEORGREATER","features":[466]},{"name":"OS_NT","features":[466]},{"name":"OS_NT4ORGREATER","features":[466]},{"name":"OS_PERSONALTERMINALSERVER","features":[466]},{"name":"OS_PROFESSIONAL","features":[466]},{"name":"OS_SERVER","features":[466]},{"name":"OS_SERVERADMINUI","features":[466]},{"name":"OS_SMALLBUSINESSSERVER","features":[466]},{"name":"OS_TABLETPC","features":[466]},{"name":"OS_TERMINALCLIENT","features":[466]},{"name":"OS_TERMINALREMOTEADMIN","features":[466]},{"name":"OS_TERMINALSERVER","features":[466]},{"name":"OS_WEBSERVER","features":[466]},{"name":"OS_WELCOMELOGONUI","features":[466]},{"name":"OS_WIN2000ADVSERVER","features":[466]},{"name":"OS_WIN2000DATACENTER","features":[466]},{"name":"OS_WIN2000ORGREATER","features":[466]},{"name":"OS_WIN2000PRO","features":[466]},{"name":"OS_WIN2000SERVER","features":[466]},{"name":"OS_WIN2000TERMINAL","features":[466]},{"name":"OS_WIN95ORGREATER","features":[466]},{"name":"OS_WIN95_GOLD","features":[466]},{"name":"OS_WIN98ORGREATER","features":[466]},{"name":"OS_WIN98_GOLD","features":[466]},{"name":"OS_WINDOWS","features":[466]},{"name":"OS_WOW6432","features":[466]},{"name":"OS_XPORGREATER","features":[466]},{"name":"OfflineFolderStatus","features":[466]},{"name":"OleSaveToStreamEx","features":[305,356,466]},{"name":"OnexCredentialProvider","features":[466]},{"name":"OnexPlapSmartcardCredentialProvider","features":[466]},{"name":"OpenControlPanel","features":[466]},{"name":"OpenRegStream","features":[356,366,466]},{"name":"PACKAGE_EXECUTION_STATE","features":[466]},{"name":"PAI_ASSIGNEDTIME","features":[466]},{"name":"PAI_EXPIRETIME","features":[466]},{"name":"PAI_PUBLISHEDTIME","features":[466]},{"name":"PAI_SCHEDULEDTIME","features":[466]},{"name":"PAI_SOURCE","features":[466]},{"name":"PANE_NAVIGATION","features":[466]},{"name":"PANE_NONE","features":[466]},{"name":"PANE_OFFLINE","features":[466]},{"name":"PANE_PRINTER","features":[466]},{"name":"PANE_PRIVACY","features":[466]},{"name":"PANE_PROGRESS","features":[466]},{"name":"PANE_SSL","features":[466]},{"name":"PANE_ZONE","features":[466]},{"name":"PAPPCONSTRAIN_CHANGE_ROUTINE","features":[305,466]},{"name":"PAPPCONSTRAIN_REGISTRATION","features":[466]},{"name":"PAPPSTATE_CHANGE_ROUTINE","features":[305,466]},{"name":"PAPPSTATE_REGISTRATION","features":[466]},{"name":"PARSEDURLA","features":[466]},{"name":"PARSEDURLW","features":[466]},{"name":"PATHCCH_ALLOW_LONG_PATHS","features":[466]},{"name":"PATHCCH_CANONICALIZE_SLASHES","features":[466]},{"name":"PATHCCH_DO_NOT_NORMALIZE_SEGMENTS","features":[466]},{"name":"PATHCCH_ENSURE_IS_EXTENDED_LENGTH_PATH","features":[466]},{"name":"PATHCCH_ENSURE_TRAILING_SLASH","features":[466]},{"name":"PATHCCH_FORCE_DISABLE_LONG_NAME_PROCESS","features":[466]},{"name":"PATHCCH_FORCE_ENABLE_LONG_NAME_PROCESS","features":[466]},{"name":"PATHCCH_MAX_CCH","features":[466]},{"name":"PATHCCH_NONE","features":[466]},{"name":"PATHCCH_OPTIONS","features":[466]},{"name":"PCS_FATAL","features":[466]},{"name":"PCS_PATHTOOLONG","features":[466]},{"name":"PCS_REMOVEDCHAR","features":[466]},{"name":"PCS_REPLACEDCHAR","features":[466]},{"name":"PCS_RET","features":[466]},{"name":"PCS_TRUNCATED","features":[466]},{"name":"PDM_DEFAULT","features":[466]},{"name":"PDM_ERRORSBLOCKING","features":[466]},{"name":"PDM_INDETERMINATE","features":[466]},{"name":"PDM_PREFLIGHT","features":[466]},{"name":"PDM_RUN","features":[466]},{"name":"PDM_UNDOING","features":[466]},{"name":"PDTIMER_PAUSE","features":[466]},{"name":"PDTIMER_RESET","features":[466]},{"name":"PDTIMER_RESUME","features":[466]},{"name":"PERSIST_FOLDER_TARGET_INFO","features":[632]},{"name":"PES_RUNNING","features":[466]},{"name":"PES_SUSPENDED","features":[466]},{"name":"PES_SUSPENDING","features":[466]},{"name":"PES_TERMINATED","features":[466]},{"name":"PES_UNKNOWN","features":[466]},{"name":"PFNCANSHAREFOLDERW","features":[466]},{"name":"PFNSHOWSHAREFOLDERUIW","features":[305,466]},{"name":"PIDASI_AVG_DATA_RATE","features":[466]},{"name":"PIDASI_CHANNEL_COUNT","features":[466]},{"name":"PIDASI_COMPRESSION","features":[466]},{"name":"PIDASI_FORMAT","features":[466]},{"name":"PIDASI_SAMPLE_RATE","features":[466]},{"name":"PIDASI_SAMPLE_SIZE","features":[466]},{"name":"PIDASI_STREAM_NAME","features":[466]},{"name":"PIDASI_STREAM_NUMBER","features":[466]},{"name":"PIDASI_TIMELENGTH","features":[466]},{"name":"PIDDRSI_DESCRIPTION","features":[466]},{"name":"PIDDRSI_PLAYCOUNT","features":[466]},{"name":"PIDDRSI_PLAYEXPIRES","features":[466]},{"name":"PIDDRSI_PLAYSTARTS","features":[466]},{"name":"PIDDRSI_PROTECTED","features":[466]},{"name":"PIDISF_CACHEDSTICKY","features":[466]},{"name":"PIDISF_CACHEIMAGES","features":[466]},{"name":"PIDISF_FLAGS","features":[466]},{"name":"PIDISF_FOLLOWALLLINKS","features":[466]},{"name":"PIDISF_RECENTLYCHANGED","features":[466]},{"name":"PIDISM_DONTWATCH","features":[466]},{"name":"PIDISM_GLOBAL","features":[466]},{"name":"PIDISM_OPTIONS","features":[466]},{"name":"PIDISM_WATCH","features":[466]},{"name":"PIDISR_INFO","features":[466]},{"name":"PIDISR_NEEDS_ADD","features":[466]},{"name":"PIDISR_NEEDS_DELETE","features":[466]},{"name":"PIDISR_NEEDS_UPDATE","features":[466]},{"name":"PIDISR_UP_TO_DATE","features":[466]},{"name":"PIDSI_ALBUM","features":[466]},{"name":"PIDSI_ARTIST","features":[466]},{"name":"PIDSI_COMMENT","features":[466]},{"name":"PIDSI_GENRE","features":[466]},{"name":"PIDSI_LYRICS","features":[466]},{"name":"PIDSI_SONGTITLE","features":[466]},{"name":"PIDSI_TRACK","features":[466]},{"name":"PIDSI_YEAR","features":[466]},{"name":"PIDVSI_COMPRESSION","features":[466]},{"name":"PIDVSI_DATA_RATE","features":[466]},{"name":"PIDVSI_FRAME_COUNT","features":[466]},{"name":"PIDVSI_FRAME_HEIGHT","features":[466]},{"name":"PIDVSI_FRAME_RATE","features":[466]},{"name":"PIDVSI_FRAME_WIDTH","features":[466]},{"name":"PIDVSI_SAMPLE_SIZE","features":[466]},{"name":"PIDVSI_STREAM_NAME","features":[466]},{"name":"PIDVSI_STREAM_NUMBER","features":[466]},{"name":"PIDVSI_TIMELENGTH","features":[466]},{"name":"PID_COMPUTERNAME","features":[466]},{"name":"PID_CONTROLPANEL_CATEGORY","features":[466]},{"name":"PID_DESCRIPTIONID","features":[466]},{"name":"PID_DISPLACED_DATE","features":[466]},{"name":"PID_DISPLACED_FROM","features":[466]},{"name":"PID_DISPLAY_PROPERTIES","features":[466]},{"name":"PID_FINDDATA","features":[466]},{"name":"PID_HTMLINFOTIPFILE","features":[466]},{"name":"PID_INTROTEXT","features":[466]},{"name":"PID_INTSITE","features":[466]},{"name":"PID_INTSITE_AUTHOR","features":[466]},{"name":"PID_INTSITE_CODEPAGE","features":[466]},{"name":"PID_INTSITE_COMMENT","features":[466]},{"name":"PID_INTSITE_CONTENTCODE","features":[466]},{"name":"PID_INTSITE_CONTENTLEN","features":[466]},{"name":"PID_INTSITE_DESCRIPTION","features":[466]},{"name":"PID_INTSITE_FLAGS","features":[466]},{"name":"PID_INTSITE_ICONFILE","features":[466]},{"name":"PID_INTSITE_ICONINDEX","features":[466]},{"name":"PID_INTSITE_LASTMOD","features":[466]},{"name":"PID_INTSITE_LASTVISIT","features":[466]},{"name":"PID_INTSITE_RECURSE","features":[466]},{"name":"PID_INTSITE_ROAMED","features":[466]},{"name":"PID_INTSITE_SUBSCRIPTION","features":[466]},{"name":"PID_INTSITE_TITLE","features":[466]},{"name":"PID_INTSITE_TRACKING","features":[466]},{"name":"PID_INTSITE_URL","features":[466]},{"name":"PID_INTSITE_VISITCOUNT","features":[466]},{"name":"PID_INTSITE_WATCH","features":[466]},{"name":"PID_INTSITE_WHATSNEW","features":[466]},{"name":"PID_IS","features":[466]},{"name":"PID_IS_AUTHOR","features":[466]},{"name":"PID_IS_COMMENT","features":[466]},{"name":"PID_IS_DESCRIPTION","features":[466]},{"name":"PID_IS_HOTKEY","features":[466]},{"name":"PID_IS_ICONFILE","features":[466]},{"name":"PID_IS_ICONINDEX","features":[466]},{"name":"PID_IS_NAME","features":[466]},{"name":"PID_IS_ROAMED","features":[466]},{"name":"PID_IS_SHOWCMD","features":[466]},{"name":"PID_IS_URL","features":[466]},{"name":"PID_IS_WHATSNEW","features":[466]},{"name":"PID_IS_WORKINGDIR","features":[466]},{"name":"PID_LINK_TARGET","features":[466]},{"name":"PID_LINK_TARGET_TYPE","features":[466]},{"name":"PID_MISC_ACCESSCOUNT","features":[466]},{"name":"PID_MISC_OWNER","features":[466]},{"name":"PID_MISC_PICS","features":[466]},{"name":"PID_MISC_STATUS","features":[466]},{"name":"PID_NETRESOURCE","features":[466]},{"name":"PID_NETWORKLOCATION","features":[466]},{"name":"PID_QUERY_RANK","features":[466]},{"name":"PID_SHARE_CSC_STATUS","features":[466]},{"name":"PID_SYNC_COPY_IN","features":[466]},{"name":"PID_VOLUME_CAPACITY","features":[466]},{"name":"PID_VOLUME_FILESYSTEM","features":[466]},{"name":"PID_VOLUME_FREE","features":[466]},{"name":"PID_WHICHFOLDER","features":[466]},{"name":"PIFDEFFILESIZE","features":[466]},{"name":"PIFDEFPATHSIZE","features":[466]},{"name":"PIFMAXFILEPATH","features":[466]},{"name":"PIFNAMESIZE","features":[466]},{"name":"PIFPARAMSSIZE","features":[466]},{"name":"PIFSHDATASIZE","features":[466]},{"name":"PIFSHPROGSIZE","features":[466]},{"name":"PIFSTARTLOCSIZE","features":[466]},{"name":"PINLogonCredentialProvider","features":[466]},{"name":"PLATFORM_BROWSERONLY","features":[466]},{"name":"PLATFORM_IE3","features":[466]},{"name":"PLATFORM_INTEGRATED","features":[466]},{"name":"PLATFORM_UNKNOWN","features":[466]},{"name":"PMSF_DONT_STRIP_SPACES","features":[466]},{"name":"PMSF_MULTIPLE","features":[466]},{"name":"PMSF_NORMAL","features":[466]},{"name":"PO_DELETE","features":[466]},{"name":"PO_PORTCHANGE","features":[466]},{"name":"PO_RENAME","features":[466]},{"name":"PO_REN_PORT","features":[466]},{"name":"PPCF_ADDARGUMENTS","features":[466]},{"name":"PPCF_ADDQUOTES","features":[466]},{"name":"PPCF_FORCEQUALIFY","features":[466]},{"name":"PPCF_LONGESTPOSSIBLE","features":[466]},{"name":"PPCF_NODIRECTORIES","features":[466]},{"name":"PREVIEWHANDLERFRAMEINFO","features":[466,367]},{"name":"PRF_DONTFINDLNK","features":[466]},{"name":"PRF_FIRSTDIRDEF","features":[466]},{"name":"PRF_FLAGS","features":[466]},{"name":"PRF_REQUIREABSOLUTE","features":[466]},{"name":"PRF_TRYPROGRAMEXTENSIONS","features":[466]},{"name":"PRF_VERIFYEXISTS","features":[466]},{"name":"PRINTACTION_DOCUMENTDEFAULTS","features":[466]},{"name":"PRINTACTION_NETINSTALL","features":[466]},{"name":"PRINTACTION_NETINSTALLLINK","features":[466]},{"name":"PRINTACTION_OPEN","features":[466]},{"name":"PRINTACTION_OPENNETPRN","features":[466]},{"name":"PRINTACTION_PROPERTIES","features":[466]},{"name":"PRINTACTION_SERVERPROPERTIES","features":[466]},{"name":"PRINTACTION_TESTPAGE","features":[466]},{"name":"PRINT_PROP_FORCE_NAME","features":[466]},{"name":"PROFILEINFOA","features":[305,466]},{"name":"PROFILEINFOW","features":[305,466]},{"name":"PROGDLG_AUTOTIME","features":[466]},{"name":"PROGDLG_MARQUEEPROGRESS","features":[466]},{"name":"PROGDLG_MODAL","features":[466]},{"name":"PROGDLG_NOCANCEL","features":[466]},{"name":"PROGDLG_NOMINIMIZE","features":[466]},{"name":"PROGDLG_NOPROGRESSBAR","features":[466]},{"name":"PROGDLG_NORMAL","features":[466]},{"name":"PROGDLG_NOTIME","features":[466]},{"name":"PROPSTR_EXTENSIONCOMPLETIONSTATE","features":[466]},{"name":"PROP_CONTRACT_DELEGATE","features":[466]},{"name":"PSGUID_AUDIO","features":[466]},{"name":"PSGUID_BRIEFCASE","features":[466]},{"name":"PSGUID_CONTROLPANEL","features":[466]},{"name":"PSGUID_CUSTOMIMAGEPROPERTIES","features":[466]},{"name":"PSGUID_DISPLACED","features":[466]},{"name":"PSGUID_DOCUMENTSUMMARYINFORMATION","features":[466]},{"name":"PSGUID_DRM","features":[466]},{"name":"PSGUID_IMAGEPROPERTIES","features":[466]},{"name":"PSGUID_IMAGESUMMARYINFORMATION","features":[466]},{"name":"PSGUID_LIBRARYPROPERTIES","features":[466]},{"name":"PSGUID_LINK","features":[466]},{"name":"PSGUID_MEDIAFILESUMMARYINFORMATION","features":[466]},{"name":"PSGUID_MISC","features":[466]},{"name":"PSGUID_MUSIC","features":[466]},{"name":"PSGUID_QUERY_D","features":[466]},{"name":"PSGUID_SHARE","features":[466]},{"name":"PSGUID_SHELLDETAILS","features":[466]},{"name":"PSGUID_SUMMARYINFORMATION","features":[466]},{"name":"PSGUID_VIDEO","features":[466]},{"name":"PSGUID_VOLUME","features":[466]},{"name":"PSGUID_WEBVIEW","features":[466]},{"name":"PUBAPPINFO","features":[305,466]},{"name":"PUBAPPINFOFLAGS","features":[466]},{"name":"PackageDebugSettings","features":[466]},{"name":"ParseURLA","features":[466]},{"name":"ParseURLW","features":[466]},{"name":"PasswordCredentialProvider","features":[466]},{"name":"PathAddBackslashA","features":[466]},{"name":"PathAddBackslashW","features":[466]},{"name":"PathAddExtensionA","features":[305,466]},{"name":"PathAddExtensionW","features":[305,466]},{"name":"PathAllocCanonicalize","features":[466]},{"name":"PathAllocCombine","features":[466]},{"name":"PathAppendA","features":[305,466]},{"name":"PathAppendW","features":[305,466]},{"name":"PathBuildRootA","features":[466]},{"name":"PathBuildRootW","features":[466]},{"name":"PathCanonicalizeA","features":[305,466]},{"name":"PathCanonicalizeW","features":[305,466]},{"name":"PathCchAddBackslash","features":[466]},{"name":"PathCchAddBackslashEx","features":[466]},{"name":"PathCchAddExtension","features":[466]},{"name":"PathCchAppend","features":[466]},{"name":"PathCchAppendEx","features":[466]},{"name":"PathCchCanonicalize","features":[466]},{"name":"PathCchCanonicalizeEx","features":[466]},{"name":"PathCchCombine","features":[466]},{"name":"PathCchCombineEx","features":[466]},{"name":"PathCchFindExtension","features":[466]},{"name":"PathCchIsRoot","features":[305,466]},{"name":"PathCchRemoveBackslash","features":[466]},{"name":"PathCchRemoveBackslashEx","features":[466]},{"name":"PathCchRemoveExtension","features":[466]},{"name":"PathCchRemoveFileSpec","features":[466]},{"name":"PathCchRenameExtension","features":[466]},{"name":"PathCchSkipRoot","features":[466]},{"name":"PathCchStripPrefix","features":[466]},{"name":"PathCchStripToRoot","features":[466]},{"name":"PathCleanupSpec","features":[466]},{"name":"PathCombineA","features":[466]},{"name":"PathCombineW","features":[466]},{"name":"PathCommonPrefixA","features":[466]},{"name":"PathCommonPrefixW","features":[466]},{"name":"PathCompactPathA","features":[305,316,466]},{"name":"PathCompactPathExA","features":[305,466]},{"name":"PathCompactPathExW","features":[305,466]},{"name":"PathCompactPathW","features":[305,316,466]},{"name":"PathCreateFromUrlA","features":[466]},{"name":"PathCreateFromUrlAlloc","features":[466]},{"name":"PathCreateFromUrlW","features":[466]},{"name":"PathFileExistsA","features":[305,466]},{"name":"PathFileExistsW","features":[305,466]},{"name":"PathFindExtensionA","features":[466]},{"name":"PathFindExtensionW","features":[466]},{"name":"PathFindFileNameA","features":[466]},{"name":"PathFindFileNameW","features":[466]},{"name":"PathFindNextComponentA","features":[466]},{"name":"PathFindNextComponentW","features":[466]},{"name":"PathFindOnPathA","features":[305,466]},{"name":"PathFindOnPathW","features":[305,466]},{"name":"PathFindSuffixArrayA","features":[466]},{"name":"PathFindSuffixArrayW","features":[466]},{"name":"PathGetArgsA","features":[466]},{"name":"PathGetArgsW","features":[466]},{"name":"PathGetCharTypeA","features":[466]},{"name":"PathGetCharTypeW","features":[466]},{"name":"PathGetDriveNumberA","features":[466]},{"name":"PathGetDriveNumberW","features":[466]},{"name":"PathGetShortPath","features":[466]},{"name":"PathIsContentTypeA","features":[305,466]},{"name":"PathIsContentTypeW","features":[305,466]},{"name":"PathIsDirectoryA","features":[305,466]},{"name":"PathIsDirectoryEmptyA","features":[305,466]},{"name":"PathIsDirectoryEmptyW","features":[305,466]},{"name":"PathIsDirectoryW","features":[305,466]},{"name":"PathIsExe","features":[305,466]},{"name":"PathIsFileSpecA","features":[305,466]},{"name":"PathIsFileSpecW","features":[305,466]},{"name":"PathIsLFNFileSpecA","features":[305,466]},{"name":"PathIsLFNFileSpecW","features":[305,466]},{"name":"PathIsNetworkPathA","features":[305,466]},{"name":"PathIsNetworkPathW","features":[305,466]},{"name":"PathIsPrefixA","features":[305,466]},{"name":"PathIsPrefixW","features":[305,466]},{"name":"PathIsRelativeA","features":[305,466]},{"name":"PathIsRelativeW","features":[305,466]},{"name":"PathIsRootA","features":[305,466]},{"name":"PathIsRootW","features":[305,466]},{"name":"PathIsSameRootA","features":[305,466]},{"name":"PathIsSameRootW","features":[305,466]},{"name":"PathIsSlowA","features":[305,466]},{"name":"PathIsSlowW","features":[305,466]},{"name":"PathIsSystemFolderA","features":[305,466]},{"name":"PathIsSystemFolderW","features":[305,466]},{"name":"PathIsUNCA","features":[305,466]},{"name":"PathIsUNCEx","features":[305,466]},{"name":"PathIsUNCServerA","features":[305,466]},{"name":"PathIsUNCServerShareA","features":[305,466]},{"name":"PathIsUNCServerShareW","features":[305,466]},{"name":"PathIsUNCServerW","features":[305,466]},{"name":"PathIsUNCW","features":[305,466]},{"name":"PathIsURLA","features":[305,466]},{"name":"PathIsURLW","features":[305,466]},{"name":"PathMakePrettyA","features":[305,466]},{"name":"PathMakePrettyW","features":[305,466]},{"name":"PathMakeSystemFolderA","features":[305,466]},{"name":"PathMakeSystemFolderW","features":[305,466]},{"name":"PathMakeUniqueName","features":[305,466]},{"name":"PathMatchSpecA","features":[305,466]},{"name":"PathMatchSpecExA","features":[466]},{"name":"PathMatchSpecExW","features":[466]},{"name":"PathMatchSpecW","features":[305,466]},{"name":"PathParseIconLocationA","features":[466]},{"name":"PathParseIconLocationW","features":[466]},{"name":"PathQualify","features":[466]},{"name":"PathQuoteSpacesA","features":[305,466]},{"name":"PathQuoteSpacesW","features":[305,466]},{"name":"PathRelativePathToA","features":[305,466]},{"name":"PathRelativePathToW","features":[305,466]},{"name":"PathRemoveArgsA","features":[466]},{"name":"PathRemoveArgsW","features":[466]},{"name":"PathRemoveBackslashA","features":[466]},{"name":"PathRemoveBackslashW","features":[466]},{"name":"PathRemoveBlanksA","features":[466]},{"name":"PathRemoveBlanksW","features":[466]},{"name":"PathRemoveExtensionA","features":[466]},{"name":"PathRemoveExtensionW","features":[466]},{"name":"PathRemoveFileSpecA","features":[305,466]},{"name":"PathRemoveFileSpecW","features":[305,466]},{"name":"PathRenameExtensionA","features":[305,466]},{"name":"PathRenameExtensionW","features":[305,466]},{"name":"PathResolve","features":[466]},{"name":"PathSearchAndQualifyA","features":[305,466]},{"name":"PathSearchAndQualifyW","features":[305,466]},{"name":"PathSetDlgItemPathA","features":[305,466]},{"name":"PathSetDlgItemPathW","features":[305,466]},{"name":"PathSkipRootA","features":[466]},{"name":"PathSkipRootW","features":[466]},{"name":"PathStripPathA","features":[466]},{"name":"PathStripPathW","features":[466]},{"name":"PathStripToRootA","features":[305,466]},{"name":"PathStripToRootW","features":[305,466]},{"name":"PathUnExpandEnvStringsA","features":[305,466]},{"name":"PathUnExpandEnvStringsW","features":[305,466]},{"name":"PathUndecorateA","features":[466]},{"name":"PathUndecorateW","features":[466]},{"name":"PathUnmakeSystemFolderA","features":[305,466]},{"name":"PathUnmakeSystemFolderW","features":[305,466]},{"name":"PathUnquoteSpacesA","features":[305,466]},{"name":"PathUnquoteSpacesW","features":[305,466]},{"name":"PathYetAnotherMakeUniqueName","features":[305,466]},{"name":"PickIconDlg","features":[305,466]},{"name":"PreviousVersions","features":[466]},{"name":"PropVariantToStrRet","features":[632]},{"name":"PropertiesUI","features":[466]},{"name":"ProtectedModeRedirect","features":[466]},{"name":"PublishDropTarget","features":[466]},{"name":"PublishingWizard","features":[466]},{"name":"QCMINFO","features":[466,367]},{"name":"QCMINFO_IDMAP","features":[466]},{"name":"QCMINFO_IDMAP_PLACEMENT","features":[466]},{"name":"QCMINFO_PLACE_AFTER","features":[466]},{"name":"QCMINFO_PLACE_BEFORE","features":[466]},{"name":"QIF_CACHED","features":[466]},{"name":"QIF_DONTEXPANDFOLDER","features":[466]},{"name":"QISearch","features":[466]},{"name":"QITAB","features":[466]},{"name":"QITIPF_DEFAULT","features":[466]},{"name":"QITIPF_FLAGS","features":[466]},{"name":"QITIPF_LINKNOTARGET","features":[466]},{"name":"QITIPF_LINKUSETARGET","features":[466]},{"name":"QITIPF_SINGLELINE","features":[466]},{"name":"QITIPF_USENAME","features":[466]},{"name":"QITIPF_USESLOWTIP","features":[466]},{"name":"QUERY_USER_NOTIFICATION_STATE","features":[466]},{"name":"QUNS_ACCEPTS_NOTIFICATIONS","features":[466]},{"name":"QUNS_APP","features":[466]},{"name":"QUNS_BUSY","features":[466]},{"name":"QUNS_NOT_PRESENT","features":[466]},{"name":"QUNS_PRESENTATION_MODE","features":[466]},{"name":"QUNS_QUIET_TIME","features":[466]},{"name":"QUNS_RUNNING_D3D_FULL_SCREEN","features":[466]},{"name":"QueryCancelAutoPlay","features":[466]},{"name":"RASProvider","features":[466]},{"name":"REFRESH_COMPLETELY","features":[466]},{"name":"REFRESH_IFEXPIRED","features":[466]},{"name":"REFRESH_NORMAL","features":[466]},{"name":"RESTRICTIONS","features":[466]},{"name":"REST_ALLOWBITBUCKDRIVES","features":[466]},{"name":"REST_ALLOWCOMMENTTOGGLE","features":[466]},{"name":"REST_ALLOWFILECLSIDJUNCTIONS","features":[466]},{"name":"REST_ALLOWLEGACYWEBVIEW","features":[466]},{"name":"REST_ALLOWUNHASHEDWEBVIEW","features":[466]},{"name":"REST_ARP_DONTGROUPPATCHES","features":[466]},{"name":"REST_ARP_NOADDPAGE","features":[466]},{"name":"REST_ARP_NOARP","features":[466]},{"name":"REST_ARP_NOCHOOSEPROGRAMSPAGE","features":[466]},{"name":"REST_ARP_NOREMOVEPAGE","features":[466]},{"name":"REST_ARP_NOWINSETUPPAGE","features":[466]},{"name":"REST_ARP_ShowPostSetup","features":[466]},{"name":"REST_BITBUCKCONFIRMDELETE","features":[466]},{"name":"REST_BITBUCKNOPROP","features":[466]},{"name":"REST_BITBUCKNUKEONDELETE","features":[466]},{"name":"REST_CLASSICSHELL","features":[466]},{"name":"REST_CLEARRECENTDOCSONEXIT","features":[466]},{"name":"REST_DISALLOWCPL","features":[466]},{"name":"REST_DISALLOWRUN","features":[466]},{"name":"REST_DONTRETRYBADNETNAME","features":[466]},{"name":"REST_DONTSHOWSUPERHIDDEN","features":[466]},{"name":"REST_ENFORCESHELLEXTSECURITY","features":[466]},{"name":"REST_ENUMWORKGROUP","features":[466]},{"name":"REST_FORCEACTIVEDESKTOPON","features":[466]},{"name":"REST_FORCECOPYACLWITHFILE","features":[466]},{"name":"REST_FORCESTARTMENULOGOFF","features":[466]},{"name":"REST_GREYMSIADS","features":[466]},{"name":"REST_HASFINDCOMPUTERS","features":[466]},{"name":"REST_HIDECLOCK","features":[466]},{"name":"REST_HIDERUNASVERB","features":[466]},{"name":"REST_INHERITCONSOLEHANDLES","features":[466]},{"name":"REST_INTELLIMENUS","features":[466]},{"name":"REST_LINKRESOLVEIGNORELINKINFO","features":[466]},{"name":"REST_MYCOMPNOPROP","features":[466]},{"name":"REST_MYDOCSNOPROP","features":[466]},{"name":"REST_MYDOCSONNET","features":[466]},{"name":"REST_MaxRecentDocs","features":[466]},{"name":"REST_NOACTIVEDESKTOP","features":[466]},{"name":"REST_NOACTIVEDESKTOPCHANGES","features":[466]},{"name":"REST_NOADDDESKCOMP","features":[466]},{"name":"REST_NOAUTOTRAYNOTIFY","features":[466]},{"name":"REST_NOCDBURNING","features":[466]},{"name":"REST_NOCHANGEMAPPEDDRIVECOMMENT","features":[466]},{"name":"REST_NOCHANGEMAPPEDDRIVELABEL","features":[466]},{"name":"REST_NOCHANGESTARMENU","features":[466]},{"name":"REST_NOCHANGINGWALLPAPER","features":[466]},{"name":"REST_NOCLOSE","features":[466]},{"name":"REST_NOCLOSEDESKCOMP","features":[466]},{"name":"REST_NOCLOSE_DRAGDROPBAND","features":[466]},{"name":"REST_NOCOLORCHOICE","features":[466]},{"name":"REST_NOCOMMONGROUPS","features":[466]},{"name":"REST_NOCONTROLPANEL","features":[466]},{"name":"REST_NOCONTROLPANELBARRICADE","features":[466]},{"name":"REST_NOCSC","features":[466]},{"name":"REST_NOCURRENTUSERRUN","features":[466]},{"name":"REST_NOCURRENTUSERRUNONCE","features":[466]},{"name":"REST_NOCUSTOMIZETHISFOLDER","features":[466]},{"name":"REST_NOCUSTOMIZEWEBVIEW","features":[466]},{"name":"REST_NODELDESKCOMP","features":[466]},{"name":"REST_NODESKCOMP","features":[466]},{"name":"REST_NODESKTOP","features":[466]},{"name":"REST_NODESKTOPCLEANUP","features":[466]},{"name":"REST_NODISCONNECT","features":[466]},{"name":"REST_NODISPBACKGROUND","features":[466]},{"name":"REST_NODISPLAYAPPEARANCEPAGE","features":[466]},{"name":"REST_NODISPLAYCPL","features":[466]},{"name":"REST_NODISPSCREENSAVEPG","features":[466]},{"name":"REST_NODISPSCREENSAVEPREVIEW","features":[466]},{"name":"REST_NODISPSETTINGSPG","features":[466]},{"name":"REST_NODRIVEAUTORUN","features":[466]},{"name":"REST_NODRIVES","features":[466]},{"name":"REST_NODRIVETYPEAUTORUN","features":[466]},{"name":"REST_NOEDITDESKCOMP","features":[466]},{"name":"REST_NOENCRYPTION","features":[466]},{"name":"REST_NOENCRYPTONMOVE","features":[466]},{"name":"REST_NOENTIRENETWORK","features":[466]},{"name":"REST_NOENUMENTIRENETWORK","features":[466]},{"name":"REST_NOEXITTODOS","features":[466]},{"name":"REST_NOFAVORITESMENU","features":[466]},{"name":"REST_NOFILEASSOCIATE","features":[466]},{"name":"REST_NOFILEMENU","features":[466]},{"name":"REST_NOFIND","features":[466]},{"name":"REST_NOFOLDEROPTIONS","features":[466]},{"name":"REST_NOFORGETSOFTWAREUPDATE","features":[466]},{"name":"REST_NOHARDWARETAB","features":[466]},{"name":"REST_NOHTMLWALLPAPER","features":[466]},{"name":"REST_NOINTERNETICON","features":[466]},{"name":"REST_NOINTERNETOPENWITH","features":[466]},{"name":"REST_NOLOCALMACHINERUN","features":[466]},{"name":"REST_NOLOCALMACHINERUNONCE","features":[466]},{"name":"REST_NOLOWDISKSPACECHECKS","features":[466]},{"name":"REST_NOMANAGEMYCOMPUTERVERB","features":[466]},{"name":"REST_NOMOVINGBAND","features":[466]},{"name":"REST_NOMYCOMPUTERICON","features":[466]},{"name":"REST_NONE","features":[466]},{"name":"REST_NONETCONNECTDISCONNECT","features":[466]},{"name":"REST_NONETCRAWL","features":[466]},{"name":"REST_NONETHOOD","features":[466]},{"name":"REST_NONETWORKCONNECTIONS","features":[466]},{"name":"REST_NONLEGACYSHELLMODE","features":[466]},{"name":"REST_NOONLINEPRINTSWIZARD","features":[466]},{"name":"REST_NOPRINTERADD","features":[466]},{"name":"REST_NOPRINTERDELETE","features":[466]},{"name":"REST_NOPRINTERTABS","features":[466]},{"name":"REST_NOPUBLISHWIZARD","features":[466]},{"name":"REST_NORECENTDOCSHISTORY","features":[466]},{"name":"REST_NORECENTDOCSMENU","features":[466]},{"name":"REST_NOREMOTECHANGENOTIFY","features":[466]},{"name":"REST_NOREMOTERECURSIVEEVENTS","features":[466]},{"name":"REST_NORESOLVESEARCH","features":[466]},{"name":"REST_NORESOLVETRACK","features":[466]},{"name":"REST_NORUN","features":[466]},{"name":"REST_NORUNASINSTALLPROMPT","features":[466]},{"name":"REST_NOSAVESET","features":[466]},{"name":"REST_NOSECURITY","features":[466]},{"name":"REST_NOSETACTIVEDESKTOP","features":[466]},{"name":"REST_NOSETFOLDERS","features":[466]},{"name":"REST_NOSETTASKBAR","features":[466]},{"name":"REST_NOSETTINGSASSIST","features":[466]},{"name":"REST_NOSHAREDDOCUMENTS","features":[466]},{"name":"REST_NOSHELLSEARCHBUTTON","features":[466]},{"name":"REST_NOSIZECHOICE","features":[466]},{"name":"REST_NOSMBALLOONTIP","features":[466]},{"name":"REST_NOSMCONFIGUREPROGRAMS","features":[466]},{"name":"REST_NOSMEJECTPC","features":[466]},{"name":"REST_NOSMHELP","features":[466]},{"name":"REST_NOSMMFUPROGRAMS","features":[466]},{"name":"REST_NOSMMOREPROGRAMS","features":[466]},{"name":"REST_NOSMMYDOCS","features":[466]},{"name":"REST_NOSMMYMUSIC","features":[466]},{"name":"REST_NOSMMYPICS","features":[466]},{"name":"REST_NOSMNETWORKPLACES","features":[466]},{"name":"REST_NOSMPINNEDLIST","features":[466]},{"name":"REST_NOSTARTMENUSUBFOLDERS","features":[466]},{"name":"REST_NOSTARTPAGE","features":[466]},{"name":"REST_NOSTARTPANEL","features":[466]},{"name":"REST_NOSTRCMPLOGICAL","features":[466]},{"name":"REST_NOTASKGROUPING","features":[466]},{"name":"REST_NOTHEMESTAB","features":[466]},{"name":"REST_NOTHUMBNAILCACHE","features":[466]},{"name":"REST_NOTOOLBARSONTASKBAR","features":[466]},{"name":"REST_NOTRAYCONTEXTMENU","features":[466]},{"name":"REST_NOTRAYITEMSDISPLAY","features":[466]},{"name":"REST_NOUPDATEWINDOWS","features":[466]},{"name":"REST_NOUPNPINSTALL","features":[466]},{"name":"REST_NOUSERNAMEINSTARTPANEL","features":[466]},{"name":"REST_NOVIEWCONTEXTMENU","features":[466]},{"name":"REST_NOVIEWONDRIVE","features":[466]},{"name":"REST_NOVISUALSTYLECHOICE","features":[466]},{"name":"REST_NOWEB","features":[466]},{"name":"REST_NOWEBSERVICES","features":[466]},{"name":"REST_NOWEBVIEW","features":[466]},{"name":"REST_NOWELCOMESCREEN","features":[466]},{"name":"REST_NOWINKEYS","features":[466]},{"name":"REST_PROMPTRUNASINSTALLNETPATH","features":[466]},{"name":"REST_RESTRICTCPL","features":[466]},{"name":"REST_RESTRICTRUN","features":[466]},{"name":"REST_REVERTWEBVIEWSECURITY","features":[466]},{"name":"REST_RUNDLGMEMCHECKBOX","features":[466]},{"name":"REST_SEPARATEDESKTOPPROCESS","features":[466]},{"name":"REST_SETVISUALSTYLE","features":[466]},{"name":"REST_STARTBANNER","features":[466]},{"name":"REST_STARTMENULOGOFF","features":[466]},{"name":"REST_STARTRUNNOHOMEPATH","features":[466]},{"name":"ReadCabinetState","features":[305,466]},{"name":"RealDriveType","features":[305,466]},{"name":"RefreshConstants","features":[466]},{"name":"RegisterAppConstrainedChangeNotification","features":[305,466]},{"name":"RegisterAppStateChangeNotification","features":[305,466]},{"name":"RegisterScaleChangeEvent","features":[305,466]},{"name":"RegisterScaleChangeNotifications","features":[305,466]},{"name":"RemoveWindowSubclass","features":[305,466]},{"name":"ResizeThumbnail","features":[466]},{"name":"RestartDialog","features":[305,466]},{"name":"RestartDialogEx","features":[305,466]},{"name":"ReturnOnlyIfCached","features":[466]},{"name":"RevokeScaleChangeNotifications","features":[466]},{"name":"SBSC_HIDE","features":[466]},{"name":"SBSC_QUERY","features":[466]},{"name":"SBSC_SHOW","features":[466]},{"name":"SBSC_TOGGLE","features":[466]},{"name":"SBSP_ABSOLUTE","features":[466]},{"name":"SBSP_ACTIVATE_NOFOCUS","features":[466]},{"name":"SBSP_ALLOW_AUTONAVIGATE","features":[466]},{"name":"SBSP_CALLERUNTRUSTED","features":[466]},{"name":"SBSP_CREATENOHISTORY","features":[466]},{"name":"SBSP_DEFBROWSER","features":[466]},{"name":"SBSP_DEFMODE","features":[466]},{"name":"SBSP_EXPLOREMODE","features":[466]},{"name":"SBSP_FEEDNAVIGATION","features":[466]},{"name":"SBSP_HELPMODE","features":[466]},{"name":"SBSP_INITIATEDBYHLINKFRAME","features":[466]},{"name":"SBSP_KEEPSAMETEMPLATE","features":[466]},{"name":"SBSP_KEEPWORDWHEELTEXT","features":[466]},{"name":"SBSP_NAVIGATEBACK","features":[466]},{"name":"SBSP_NAVIGATEFORWARD","features":[466]},{"name":"SBSP_NEWBROWSER","features":[466]},{"name":"SBSP_NOAUTOSELECT","features":[466]},{"name":"SBSP_NOTRANSFERHIST","features":[466]},{"name":"SBSP_OPENMODE","features":[466]},{"name":"SBSP_PARENT","features":[466]},{"name":"SBSP_PLAYNOSOUND","features":[466]},{"name":"SBSP_REDIRECT","features":[466]},{"name":"SBSP_RELATIVE","features":[466]},{"name":"SBSP_SAMEBROWSER","features":[466]},{"name":"SBSP_TRUSTEDFORACTIVEX","features":[466]},{"name":"SBSP_TRUSTFIRSTDOWNLOAD","features":[466]},{"name":"SBSP_UNTRUSTEDFORDOWNLOAD","features":[466]},{"name":"SBSP_WRITENOHISTORY","features":[466]},{"name":"SCALE_CHANGE_FLAGS","features":[466]},{"name":"SCF_PHYSICAL","features":[466]},{"name":"SCF_SCALE","features":[466]},{"name":"SCF_VALUE_NONE","features":[466]},{"name":"SCHEME_CREATE","features":[466]},{"name":"SCHEME_DISPLAY","features":[466]},{"name":"SCHEME_DONOTUSE","features":[466]},{"name":"SCHEME_EDIT","features":[466]},{"name":"SCHEME_GLOBAL","features":[466]},{"name":"SCHEME_LOCAL","features":[466]},{"name":"SCHEME_REFRESH","features":[466]},{"name":"SCHEME_UPDATE","features":[466]},{"name":"SCNRT_DISABLE","features":[466]},{"name":"SCNRT_ENABLE","features":[466]},{"name":"SCNRT_STATUS","features":[466]},{"name":"SCRM_VERIFYPW","features":[466]},{"name":"SECURELOCKCODE","features":[466]},{"name":"SECURELOCK_FIRSTSUGGEST","features":[466]},{"name":"SECURELOCK_NOCHANGE","features":[466]},{"name":"SECURELOCK_SET_FORTEZZA","features":[466]},{"name":"SECURELOCK_SET_MIXED","features":[466]},{"name":"SECURELOCK_SET_SECURE128BIT","features":[466]},{"name":"SECURELOCK_SET_SECURE40BIT","features":[466]},{"name":"SECURELOCK_SET_SECURE56BIT","features":[466]},{"name":"SECURELOCK_SET_SECUREUNKNOWNBIT","features":[466]},{"name":"SECURELOCK_SET_UNSECURE","features":[466]},{"name":"SECURELOCK_SUGGEST_FORTEZZA","features":[466]},{"name":"SECURELOCK_SUGGEST_MIXED","features":[466]},{"name":"SECURELOCK_SUGGEST_SECURE128BIT","features":[466]},{"name":"SECURELOCK_SUGGEST_SECURE40BIT","features":[466]},{"name":"SECURELOCK_SUGGEST_SECURE56BIT","features":[466]},{"name":"SECURELOCK_SUGGEST_SECUREUNKNOWNBIT","features":[466]},{"name":"SECURELOCK_SUGGEST_UNSECURE","features":[466]},{"name":"SEE_MASK_ASYNCOK","features":[466]},{"name":"SEE_MASK_CLASSKEY","features":[466]},{"name":"SEE_MASK_CLASSNAME","features":[466]},{"name":"SEE_MASK_CONNECTNETDRV","features":[466]},{"name":"SEE_MASK_DEFAULT","features":[466]},{"name":"SEE_MASK_DOENVSUBST","features":[466]},{"name":"SEE_MASK_FLAG_DDEWAIT","features":[466]},{"name":"SEE_MASK_FLAG_HINST_IS_SITE","features":[466]},{"name":"SEE_MASK_FLAG_LOG_USAGE","features":[466]},{"name":"SEE_MASK_FLAG_NO_UI","features":[466]},{"name":"SEE_MASK_HMONITOR","features":[466]},{"name":"SEE_MASK_HOTKEY","features":[466]},{"name":"SEE_MASK_ICON","features":[466]},{"name":"SEE_MASK_IDLIST","features":[466]},{"name":"SEE_MASK_INVOKEIDLIST","features":[466]},{"name":"SEE_MASK_NOASYNC","features":[466]},{"name":"SEE_MASK_NOCLOSEPROCESS","features":[466]},{"name":"SEE_MASK_NOQUERYCLASSSTORE","features":[466]},{"name":"SEE_MASK_NOZONECHECKS","features":[466]},{"name":"SEE_MASK_NO_CONSOLE","features":[466]},{"name":"SEE_MASK_UNICODE","features":[466]},{"name":"SEE_MASK_WAITFORINPUTIDLE","features":[466]},{"name":"SETPROPS_NONE","features":[466]},{"name":"SE_ERR_ACCESSDENIED","features":[466]},{"name":"SE_ERR_ASSOCINCOMPLETE","features":[466]},{"name":"SE_ERR_DDEBUSY","features":[466]},{"name":"SE_ERR_DDEFAIL","features":[466]},{"name":"SE_ERR_DDETIMEOUT","features":[466]},{"name":"SE_ERR_DLLNOTFOUND","features":[466]},{"name":"SE_ERR_FNF","features":[466]},{"name":"SE_ERR_NOASSOC","features":[466]},{"name":"SE_ERR_OOM","features":[466]},{"name":"SE_ERR_PNF","features":[466]},{"name":"SE_ERR_SHARE","features":[466]},{"name":"SFBID_PIDLCHANGED","features":[466]},{"name":"SFBS_FLAGS","features":[466]},{"name":"SFBS_FLAGS_ROUND_TO_NEAREST_DISPLAYED_DIGIT","features":[466]},{"name":"SFBS_FLAGS_TRUNCATE_UNDISPLAYED_DECIMAL_DIGITS","features":[466]},{"name":"SFVM_ADDOBJECT","features":[466]},{"name":"SFVM_ADDPROPERTYPAGES","features":[466]},{"name":"SFVM_BACKGROUNDENUM","features":[466]},{"name":"SFVM_BACKGROUNDENUMDONE","features":[466]},{"name":"SFVM_COLUMNCLICK","features":[466]},{"name":"SFVM_DEFITEMCOUNT","features":[466]},{"name":"SFVM_DEFVIEWMODE","features":[466]},{"name":"SFVM_DIDDRAGDROP","features":[466]},{"name":"SFVM_FSNOTIFY","features":[466]},{"name":"SFVM_GETANIMATION","features":[466]},{"name":"SFVM_GETBUTTONINFO","features":[466]},{"name":"SFVM_GETBUTTONS","features":[466]},{"name":"SFVM_GETDETAILSOF","features":[466]},{"name":"SFVM_GETHELPTEXT","features":[466]},{"name":"SFVM_GETHELPTOPIC","features":[466]},{"name":"SFVM_GETNOTIFY","features":[466]},{"name":"SFVM_GETPANE","features":[466]},{"name":"SFVM_GETSELECTEDOBJECTS","features":[466]},{"name":"SFVM_GETSORTDEFAULTS","features":[466]},{"name":"SFVM_GETTOOLTIPTEXT","features":[466]},{"name":"SFVM_GETZONE","features":[466]},{"name":"SFVM_HELPTOPIC_DATA","features":[466]},{"name":"SFVM_INITMENUPOPUP","features":[466]},{"name":"SFVM_INVOKECOMMAND","features":[466]},{"name":"SFVM_MERGEMENU","features":[466]},{"name":"SFVM_MESSAGE_ID","features":[466]},{"name":"SFVM_PROPPAGE_DATA","features":[305,355,466]},{"name":"SFVM_QUERYFSNOTIFY","features":[466]},{"name":"SFVM_REARRANGE","features":[466]},{"name":"SFVM_REMOVEOBJECT","features":[466]},{"name":"SFVM_SETCLIPBOARD","features":[466]},{"name":"SFVM_SETISFV","features":[466]},{"name":"SFVM_SETITEMPOS","features":[466]},{"name":"SFVM_SETPOINTS","features":[466]},{"name":"SFVM_SIZE","features":[466]},{"name":"SFVM_THISIDLIST","features":[466]},{"name":"SFVM_UNMERGEMENU","features":[466]},{"name":"SFVM_UPDATEOBJECT","features":[466]},{"name":"SFVM_UPDATESTATUSBAR","features":[466]},{"name":"SFVM_WINDOWCREATED","features":[466]},{"name":"SFVSOC_INVALIDATE_ALL","features":[466]},{"name":"SFVSOC_NOSCROLL","features":[466]},{"name":"SFVS_SELECT","features":[466]},{"name":"SFVS_SELECT_ALLITEMS","features":[466]},{"name":"SFVS_SELECT_INVERT","features":[466]},{"name":"SFVS_SELECT_NONE","features":[466]},{"name":"SFVVO_DESKTOPHTML","features":[466]},{"name":"SFVVO_DOUBLECLICKINWEBVIEW","features":[466]},{"name":"SFVVO_SHOWALLOBJECTS","features":[466]},{"name":"SFVVO_SHOWCOMPCOLOR","features":[466]},{"name":"SFVVO_SHOWEXTENSIONS","features":[466]},{"name":"SFVVO_SHOWSYSFILES","features":[466]},{"name":"SFVVO_WIN95CLASSIC","features":[466]},{"name":"SFV_CREATE","features":[415,466]},{"name":"SFV_SETITEMPOS","features":[305,632]},{"name":"SHACF_AUTOAPPEND_FORCE_OFF","features":[466]},{"name":"SHACF_AUTOAPPEND_FORCE_ON","features":[466]},{"name":"SHACF_AUTOSUGGEST_FORCE_OFF","features":[466]},{"name":"SHACF_AUTOSUGGEST_FORCE_ON","features":[466]},{"name":"SHACF_DEFAULT","features":[466]},{"name":"SHACF_FILESYSTEM","features":[466]},{"name":"SHACF_FILESYS_DIRS","features":[466]},{"name":"SHACF_FILESYS_ONLY","features":[466]},{"name":"SHACF_URLALL","features":[466]},{"name":"SHACF_URLHISTORY","features":[466]},{"name":"SHACF_URLMRU","features":[466]},{"name":"SHACF_USETAB","features":[466]},{"name":"SHACF_VIRTUAL_NAMESPACE","features":[466]},{"name":"SHARD","features":[466]},{"name":"SHARDAPPIDINFO","features":[466]},{"name":"SHARDAPPIDINFOIDLIST","features":[632]},{"name":"SHARDAPPIDINFOLINK","features":[466]},{"name":"SHARD_APPIDINFO","features":[466]},{"name":"SHARD_APPIDINFOIDLIST","features":[466]},{"name":"SHARD_APPIDINFOLINK","features":[466]},{"name":"SHARD_LINK","features":[466]},{"name":"SHARD_PATHA","features":[466]},{"name":"SHARD_PATHW","features":[466]},{"name":"SHARD_PIDL","features":[466]},{"name":"SHARD_SHELLITEM","features":[466]},{"name":"SHARE_ROLE","features":[466]},{"name":"SHARE_ROLE_CONTRIBUTOR","features":[466]},{"name":"SHARE_ROLE_CO_OWNER","features":[466]},{"name":"SHARE_ROLE_CUSTOM","features":[466]},{"name":"SHARE_ROLE_INVALID","features":[466]},{"name":"SHARE_ROLE_MIXED","features":[466]},{"name":"SHARE_ROLE_OWNER","features":[466]},{"name":"SHARE_ROLE_READER","features":[466]},{"name":"SHAddFromPropSheetExtArray","features":[305,355,466]},{"name":"SHAddToRecentDocs","features":[466]},{"name":"SHAlloc","features":[466]},{"name":"SHAllocShared","features":[305,466]},{"name":"SHAnsiToAnsi","features":[466]},{"name":"SHAnsiToUnicode","features":[466]},{"name":"SHAppBarMessage","features":[305,466]},{"name":"SHAssocEnumHandlers","features":[466]},{"name":"SHAssocEnumHandlersForProtocolByApplication","features":[466]},{"name":"SHAutoComplete","features":[305,466]},{"name":"SHBindToFolderIDListParent","features":[632]},{"name":"SHBindToFolderIDListParentEx","features":[356,632]},{"name":"SHBindToObject","features":[356,632]},{"name":"SHBindToParent","features":[632]},{"name":"SHBrowseForFolderA","features":[305,632]},{"name":"SHBrowseForFolderW","features":[305,632]},{"name":"SHCDF_UPDATEITEM","features":[466]},{"name":"SHCIDS_ALLFIELDS","features":[466]},{"name":"SHCIDS_BITMASK","features":[466]},{"name":"SHCIDS_CANONICALONLY","features":[466]},{"name":"SHCIDS_COLUMNMASK","features":[466]},{"name":"SHCLSIDFromString","features":[466]},{"name":"SHCNEE_MSI_CHANGE","features":[466]},{"name":"SHCNEE_MSI_UNINSTALL","features":[466]},{"name":"SHCNEE_ORDERCHANGED","features":[466]},{"name":"SHCNE_ALLEVENTS","features":[466]},{"name":"SHCNE_ASSOCCHANGED","features":[466]},{"name":"SHCNE_ATTRIBUTES","features":[466]},{"name":"SHCNE_CREATE","features":[466]},{"name":"SHCNE_DELETE","features":[466]},{"name":"SHCNE_DISKEVENTS","features":[466]},{"name":"SHCNE_DRIVEADD","features":[466]},{"name":"SHCNE_DRIVEADDGUI","features":[466]},{"name":"SHCNE_DRIVEREMOVED","features":[466]},{"name":"SHCNE_EXTENDED_EVENT","features":[466]},{"name":"SHCNE_FREESPACE","features":[466]},{"name":"SHCNE_GLOBALEVENTS","features":[466]},{"name":"SHCNE_ID","features":[466]},{"name":"SHCNE_INTERRUPT","features":[466]},{"name":"SHCNE_MEDIAINSERTED","features":[466]},{"name":"SHCNE_MEDIAREMOVED","features":[466]},{"name":"SHCNE_MKDIR","features":[466]},{"name":"SHCNE_NETSHARE","features":[466]},{"name":"SHCNE_NETUNSHARE","features":[466]},{"name":"SHCNE_RENAMEFOLDER","features":[466]},{"name":"SHCNE_RENAMEITEM","features":[466]},{"name":"SHCNE_RMDIR","features":[466]},{"name":"SHCNE_SERVERDISCONNECT","features":[466]},{"name":"SHCNE_UPDATEDIR","features":[466]},{"name":"SHCNE_UPDATEIMAGE","features":[466]},{"name":"SHCNE_UPDATEITEM","features":[466]},{"name":"SHCNF_DWORD","features":[466]},{"name":"SHCNF_FLAGS","features":[466]},{"name":"SHCNF_FLUSH","features":[466]},{"name":"SHCNF_FLUSHNOWAIT","features":[466]},{"name":"SHCNF_IDLIST","features":[466]},{"name":"SHCNF_NOTIFYRECURSIVE","features":[466]},{"name":"SHCNF_PATH","features":[466]},{"name":"SHCNF_PATHA","features":[466]},{"name":"SHCNF_PATHW","features":[466]},{"name":"SHCNF_PRINTER","features":[466]},{"name":"SHCNF_PRINTERA","features":[466]},{"name":"SHCNF_PRINTERW","features":[466]},{"name":"SHCNF_TYPE","features":[466]},{"name":"SHCNRF_InterruptLevel","features":[466]},{"name":"SHCNRF_NewDelivery","features":[466]},{"name":"SHCNRF_RecursiveInterrupt","features":[466]},{"name":"SHCNRF_SOURCE","features":[466]},{"name":"SHCNRF_ShellLevel","features":[466]},{"name":"SHCOLUMNDATA","features":[466]},{"name":"SHCOLUMNINFO","features":[380,376]},{"name":"SHCOLUMNINIT","features":[466]},{"name":"SHCONTF_CHECKING_FOR_CHILDREN","features":[466]},{"name":"SHCONTF_ENABLE_ASYNC","features":[466]},{"name":"SHCONTF_FASTITEMS","features":[466]},{"name":"SHCONTF_FLATLIST","features":[466]},{"name":"SHCONTF_FOLDERS","features":[466]},{"name":"SHCONTF_INCLUDEHIDDEN","features":[466]},{"name":"SHCONTF_INCLUDESUPERHIDDEN","features":[466]},{"name":"SHCONTF_INIT_ON_FIRST_NEXT","features":[466]},{"name":"SHCONTF_NAVIGATION_ENUM","features":[466]},{"name":"SHCONTF_NETPRINTERSRCH","features":[466]},{"name":"SHCONTF_NONFOLDERS","features":[466]},{"name":"SHCONTF_SHAREABLE","features":[466]},{"name":"SHCONTF_STORAGE","features":[466]},{"name":"SHCREATEPROCESSINFOW","features":[305,308,340,466]},{"name":"SHCREATEPROCESSINFOW","features":[305,308,340,466]},{"name":"SHC_E_SHELL_COMPONENT_STARTUP_FAILURE","features":[466]},{"name":"SHChangeDWORDAsIDList","features":[466]},{"name":"SHChangeNotification_Lock","features":[305,632]},{"name":"SHChangeNotification_Unlock","features":[305,466]},{"name":"SHChangeNotify","features":[466]},{"name":"SHChangeNotifyDeregister","features":[305,466]},{"name":"SHChangeNotifyEntry","features":[305,632]},{"name":"SHChangeNotifyRegister","features":[305,632]},{"name":"SHChangeNotifyRegisterThread","features":[466]},{"name":"SHChangeProductKeyAsIDList","features":[466]},{"name":"SHChangeUpdateImageIDList","features":[466]},{"name":"SHCloneSpecialIDList","features":[305,632]},{"name":"SHCoCreateInstance","features":[466]},{"name":"SHCopyKeyA","features":[305,366,466]},{"name":"SHCopyKeyW","features":[305,366,466]},{"name":"SHCreateAssociationRegistration","features":[466]},{"name":"SHCreateDataObject","features":[356,632]},{"name":"SHCreateDefaultContextMenu","features":[305,366,632]},{"name":"SHCreateDefaultExtractIcon","features":[466]},{"name":"SHCreateDefaultPropertiesOp","features":[466]},{"name":"SHCreateDirectory","features":[305,466]},{"name":"SHCreateDirectoryExA","features":[305,308,466]},{"name":"SHCreateDirectoryExW","features":[305,308,466]},{"name":"SHCreateFileExtractIconW","features":[466]},{"name":"SHCreateItemFromIDList","features":[632]},{"name":"SHCreateItemFromParsingName","features":[356,466]},{"name":"SHCreateItemFromRelativeName","features":[356,466]},{"name":"SHCreateItemInKnownFolder","features":[466]},{"name":"SHCreateItemWithParent","features":[632]},{"name":"SHCreateMemStream","features":[356,466]},{"name":"SHCreateProcessAsUserW","features":[305,308,340,466]},{"name":"SHCreatePropSheetExtArray","features":[366,466]},{"name":"SHCreateQueryCancelAutoPlayMoniker","features":[356,466]},{"name":"SHCreateShellFolderView","features":[415,466]},{"name":"SHCreateShellFolderViewEx","features":[305,415,632]},{"name":"SHCreateShellItem","features":[632]},{"name":"SHCreateShellItemArray","features":[632]},{"name":"SHCreateShellItemArrayFromDataObject","features":[356,466]},{"name":"SHCreateShellItemArrayFromIDLists","features":[632]},{"name":"SHCreateShellItemArrayFromShellItem","features":[466]},{"name":"SHCreateShellPalette","features":[316,466]},{"name":"SHCreateStdEnumFmtEtc","features":[356,466]},{"name":"SHCreateStreamOnFileA","features":[356,466]},{"name":"SHCreateStreamOnFileEx","features":[305,356,466]},{"name":"SHCreateStreamOnFileW","features":[356,466]},{"name":"SHCreateThread","features":[305,340,466]},{"name":"SHCreateThreadRef","features":[466]},{"name":"SHCreateThreadWithHandle","features":[305,340,466]},{"name":"SHDESCRIPTIONID","features":[466]},{"name":"SHDID_COMPUTER_AUDIO","features":[466]},{"name":"SHDID_COMPUTER_CDROM","features":[466]},{"name":"SHDID_COMPUTER_DRIVE35","features":[466]},{"name":"SHDID_COMPUTER_DRIVE525","features":[466]},{"name":"SHDID_COMPUTER_FIXED","features":[466]},{"name":"SHDID_COMPUTER_IMAGING","features":[466]},{"name":"SHDID_COMPUTER_NETDRIVE","features":[466]},{"name":"SHDID_COMPUTER_OTHER","features":[466]},{"name":"SHDID_COMPUTER_RAMDISK","features":[466]},{"name":"SHDID_COMPUTER_REMOVABLE","features":[466]},{"name":"SHDID_COMPUTER_SHAREDDOCS","features":[466]},{"name":"SHDID_FS_DIRECTORY","features":[466]},{"name":"SHDID_FS_FILE","features":[466]},{"name":"SHDID_FS_OTHER","features":[466]},{"name":"SHDID_ID","features":[466]},{"name":"SHDID_MOBILE_DEVICE","features":[466]},{"name":"SHDID_NET_DOMAIN","features":[466]},{"name":"SHDID_NET_OTHER","features":[466]},{"name":"SHDID_NET_RESTOFNET","features":[466]},{"name":"SHDID_NET_SERVER","features":[466]},{"name":"SHDID_NET_SHARE","features":[466]},{"name":"SHDID_REMOTE_DESKTOP_DRIVE","features":[466]},{"name":"SHDID_ROOT_REGITEM","features":[466]},{"name":"SHDRAGIMAGE","features":[305,316,466]},{"name":"SHDefExtractIconA","features":[466,367]},{"name":"SHDefExtractIconW","features":[466,367]},{"name":"SHDeleteEmptyKeyA","features":[305,366,466]},{"name":"SHDeleteEmptyKeyW","features":[305,366,466]},{"name":"SHDeleteKeyA","features":[305,366,466]},{"name":"SHDeleteKeyW","features":[305,366,466]},{"name":"SHDeleteValueA","features":[305,366,466]},{"name":"SHDeleteValueW","features":[305,366,466]},{"name":"SHDestroyPropSheetExtArray","features":[466]},{"name":"SHDoDragDrop","features":[305,356,415,466]},{"name":"SHELLBROWSERSHOWCONTROL","features":[466]},{"name":"SHELLEXECUTEINFOA","features":[305,366,466]},{"name":"SHELLEXECUTEINFOA","features":[305,366,466]},{"name":"SHELLEXECUTEINFOW","features":[305,366,466]},{"name":"SHELLEXECUTEINFOW","features":[305,366,466]},{"name":"SHELLFLAGSTATE","features":[466]},{"name":"SHELLSTATEA","features":[466]},{"name":"SHELLSTATEVERSION_IE4","features":[466]},{"name":"SHELLSTATEVERSION_WIN2K","features":[466]},{"name":"SHELLSTATEW","features":[466]},{"name":"SHELL_AUTOCOMPLETE_FLAGS","features":[466]},{"name":"SHELL_E_WRONG_BITDEPTH","features":[466]},{"name":"SHELL_ITEM_RESOURCE","features":[466]},{"name":"SHELL_LINK_DATA_FLAGS","features":[466]},{"name":"SHELL_UI_COMPONENT","features":[466]},{"name":"SHELL_UI_COMPONENT_DESKBAND","features":[466]},{"name":"SHELL_UI_COMPONENT_NOTIFICATIONAREA","features":[466]},{"name":"SHELL_UI_COMPONENT_TASKBARS","features":[466]},{"name":"SHERB_NOCONFIRMATION","features":[466]},{"name":"SHERB_NOPROGRESSUI","features":[466]},{"name":"SHERB_NOSOUND","features":[466]},{"name":"SHEmptyRecycleBinA","features":[305,466]},{"name":"SHEmptyRecycleBinW","features":[305,466]},{"name":"SHEnumKeyExA","features":[305,366,466]},{"name":"SHEnumKeyExW","features":[305,366,466]},{"name":"SHEnumValueA","features":[305,366,466]},{"name":"SHEnumValueW","features":[305,366,466]},{"name":"SHEnumerateUnreadMailAccountsW","features":[366,466]},{"name":"SHEvaluateSystemCommandTemplate","features":[466]},{"name":"SHFILEINFOA","features":[466,367]},{"name":"SHFILEINFOA","features":[466,367]},{"name":"SHFILEINFOW","features":[466,367]},{"name":"SHFILEINFOW","features":[466,367]},{"name":"SHFILEOPSTRUCTA","features":[305,466]},{"name":"SHFILEOPSTRUCTA","features":[305,466]},{"name":"SHFILEOPSTRUCTW","features":[305,466]},{"name":"SHFILEOPSTRUCTW","features":[305,466]},{"name":"SHFMT_CANCEL","features":[466]},{"name":"SHFMT_ERROR","features":[466]},{"name":"SHFMT_ID","features":[466]},{"name":"SHFMT_ID_DEFAULT","features":[466]},{"name":"SHFMT_NOFORMAT","features":[466]},{"name":"SHFMT_OPT","features":[466]},{"name":"SHFMT_OPT_FULL","features":[466]},{"name":"SHFMT_OPT_NONE","features":[466]},{"name":"SHFMT_OPT_SYSONLY","features":[466]},{"name":"SHFMT_RET","features":[466]},{"name":"SHFOLDERCUSTOMSETTINGS","features":[466]},{"name":"SHFileOperationA","features":[305,466]},{"name":"SHFileOperationW","features":[305,466]},{"name":"SHFindFiles","features":[305,632]},{"name":"SHFind_InitMenuPopup","features":[305,466,367]},{"name":"SHFlushSFCache","features":[466]},{"name":"SHFormatDateTimeA","features":[305,466]},{"name":"SHFormatDateTimeW","features":[305,466]},{"name":"SHFormatDrive","features":[305,466]},{"name":"SHFree","features":[466]},{"name":"SHFreeNameMappings","features":[305,466]},{"name":"SHFreeShared","features":[305,466]},{"name":"SHGDFIL_DESCRIPTIONID","features":[466]},{"name":"SHGDFIL_FINDDATA","features":[466]},{"name":"SHGDFIL_FORMAT","features":[466]},{"name":"SHGDFIL_NETRESOURCE","features":[466]},{"name":"SHGDNF","features":[466]},{"name":"SHGDN_FORADDRESSBAR","features":[466]},{"name":"SHGDN_FOREDITING","features":[466]},{"name":"SHGDN_FORPARSING","features":[466]},{"name":"SHGDN_INFOLDER","features":[466]},{"name":"SHGDN_NORMAL","features":[466]},{"name":"SHGFI_ADDOVERLAYS","features":[466]},{"name":"SHGFI_ATTRIBUTES","features":[466]},{"name":"SHGFI_ATTR_SPECIFIED","features":[466]},{"name":"SHGFI_DISPLAYNAME","features":[466]},{"name":"SHGFI_EXETYPE","features":[466]},{"name":"SHGFI_FLAGS","features":[466]},{"name":"SHGFI_ICON","features":[466]},{"name":"SHGFI_ICONLOCATION","features":[466]},{"name":"SHGFI_LARGEICON","features":[466]},{"name":"SHGFI_LINKOVERLAY","features":[466]},{"name":"SHGFI_OPENICON","features":[466]},{"name":"SHGFI_OVERLAYINDEX","features":[466]},{"name":"SHGFI_PIDL","features":[466]},{"name":"SHGFI_SELECTED","features":[466]},{"name":"SHGFI_SHELLICONSIZE","features":[466]},{"name":"SHGFI_SMALLICON","features":[466]},{"name":"SHGFI_SYSICONINDEX","features":[466]},{"name":"SHGFI_TYPENAME","features":[466]},{"name":"SHGFI_USEFILEATTRIBUTES","features":[466]},{"name":"SHGFP_TYPE","features":[466]},{"name":"SHGFP_TYPE_CURRENT","features":[466]},{"name":"SHGFP_TYPE_DEFAULT","features":[466]},{"name":"SHGLOBALCOUNTER","features":[466]},{"name":"SHGNLI_NOLNK","features":[466]},{"name":"SHGNLI_NOLOCNAME","features":[466]},{"name":"SHGNLI_NOUNIQUE","features":[466]},{"name":"SHGNLI_PIDL","features":[466]},{"name":"SHGNLI_PREFIXNAME","features":[466]},{"name":"SHGNLI_USEURLEXT","features":[466]},{"name":"SHGSI_FLAGS","features":[466]},{"name":"SHGSI_ICON","features":[466]},{"name":"SHGSI_ICONLOCATION","features":[466]},{"name":"SHGSI_LARGEICON","features":[466]},{"name":"SHGSI_LINKOVERLAY","features":[466]},{"name":"SHGSI_SELECTED","features":[466]},{"name":"SHGSI_SHELLICONSIZE","features":[466]},{"name":"SHGSI_SMALLICON","features":[466]},{"name":"SHGSI_SYSICONINDEX","features":[466]},{"name":"SHGVSPB_ALLFOLDERS","features":[466]},{"name":"SHGVSPB_ALLUSERS","features":[466]},{"name":"SHGVSPB_INHERIT","features":[466]},{"name":"SHGVSPB_NOAUTODEFAULTS","features":[466]},{"name":"SHGVSPB_PERFOLDER","features":[466]},{"name":"SHGVSPB_PERUSER","features":[466]},{"name":"SHGVSPB_ROAM","features":[466]},{"name":"SHGetAttributesFromDataObject","features":[356,466]},{"name":"SHGetDataFromIDListA","features":[632]},{"name":"SHGetDataFromIDListW","features":[632]},{"name":"SHGetDesktopFolder","features":[466]},{"name":"SHGetDiskFreeSpaceExA","features":[305,466]},{"name":"SHGetDiskFreeSpaceExW","features":[305,466]},{"name":"SHGetDriveMedia","features":[466]},{"name":"SHGetFileInfoA","features":[324,466,367]},{"name":"SHGetFileInfoW","features":[324,466,367]},{"name":"SHGetFolderLocation","features":[305,632]},{"name":"SHGetFolderPathA","features":[305,466]},{"name":"SHGetFolderPathAndSubDirA","features":[305,466]},{"name":"SHGetFolderPathAndSubDirW","features":[305,466]},{"name":"SHGetFolderPathW","features":[305,466]},{"name":"SHGetIDListFromObject","features":[632]},{"name":"SHGetIconOverlayIndexA","features":[466]},{"name":"SHGetIconOverlayIndexW","features":[466]},{"name":"SHGetImageList","features":[466]},{"name":"SHGetInstanceExplorer","features":[466]},{"name":"SHGetInverseCMAP","features":[466]},{"name":"SHGetItemFromDataObject","features":[356,466]},{"name":"SHGetItemFromObject","features":[466]},{"name":"SHGetKnownFolderIDList","features":[305,632]},{"name":"SHGetKnownFolderItem","features":[305,466]},{"name":"SHGetKnownFolderPath","features":[305,466]},{"name":"SHGetLocalizedName","features":[466]},{"name":"SHGetMalloc","features":[356,466]},{"name":"SHGetNameFromIDList","features":[632]},{"name":"SHGetNewLinkInfoA","features":[305,466]},{"name":"SHGetNewLinkInfoW","features":[305,466]},{"name":"SHGetPathFromIDListA","features":[305,632]},{"name":"SHGetPathFromIDListEx","features":[305,632]},{"name":"SHGetPathFromIDListW","features":[305,632]},{"name":"SHGetRealIDL","features":[632]},{"name":"SHGetSetFolderCustomSettings","features":[466]},{"name":"SHGetSetSettings","features":[305,466]},{"name":"SHGetSettings","features":[466]},{"name":"SHGetSpecialFolderLocation","features":[305,632]},{"name":"SHGetSpecialFolderPathA","features":[305,466]},{"name":"SHGetSpecialFolderPathW","features":[305,466]},{"name":"SHGetStockIconInfo","features":[466,367]},{"name":"SHGetTemporaryPropertyForItem","features":[376]},{"name":"SHGetThreadRef","features":[466]},{"name":"SHGetUnreadMailCountW","features":[305,366,466]},{"name":"SHGetValueA","features":[305,366,466]},{"name":"SHGetValueW","features":[305,366,466]},{"name":"SHGetViewStatePropertyBag","features":[632]},{"name":"SHGlobalCounterDecrement","features":[466]},{"name":"SHGlobalCounterGetValue","features":[466]},{"name":"SHGlobalCounterIncrement","features":[466]},{"name":"SHHLNF_NOAUTOSELECT","features":[466]},{"name":"SHHLNF_WRITENOHISTORY","features":[466]},{"name":"SHHandleUpdateImage","features":[632]},{"name":"SHILCreateFromPath","features":[632]},{"name":"SHIL_EXTRALARGE","features":[466]},{"name":"SHIL_JUMBO","features":[466]},{"name":"SHIL_LARGE","features":[466]},{"name":"SHIL_LAST","features":[466]},{"name":"SHIL_SMALL","features":[466]},{"name":"SHIL_SYSSMALL","features":[466]},{"name":"SHIMGDEC_DEFAULT","features":[466]},{"name":"SHIMGDEC_LOADFULL","features":[466]},{"name":"SHIMGDEC_THUMBNAIL","features":[466]},{"name":"SHIMGKEY_QUALITY","features":[466]},{"name":"SHIMGKEY_RAWFORMAT","features":[466]},{"name":"SHIMSTCAPFLAG_LOCKABLE","features":[466]},{"name":"SHIMSTCAPFLAG_PURGEABLE","features":[466]},{"name":"SHInvokePrinterCommandA","features":[305,466]},{"name":"SHInvokePrinterCommandW","features":[305,466]},{"name":"SHIsFileAvailableOffline","features":[466]},{"name":"SHIsLowMemoryMachine","features":[305,466]},{"name":"SHLimitInputEdit","features":[305,466]},{"name":"SHLoadInProc","features":[466]},{"name":"SHLoadIndirectString","features":[466]},{"name":"SHLoadNonloadedIconOverlayIdentifiers","features":[466]},{"name":"SHLockShared","features":[305,466]},{"name":"SHMapPIDLToSystemImageListIndex","features":[632]},{"name":"SHMessageBoxCheckA","features":[305,466]},{"name":"SHMessageBoxCheckW","features":[305,466]},{"name":"SHMultiFileProperties","features":[356,466]},{"name":"SHNAMEMAPPINGA","features":[466]},{"name":"SHNAMEMAPPINGA","features":[466]},{"name":"SHNAMEMAPPINGW","features":[466]},{"name":"SHNAMEMAPPINGW","features":[466]},{"name":"SHOP_FILEPATH","features":[466]},{"name":"SHOP_PRINTERNAME","features":[466]},{"name":"SHOP_TYPE","features":[466]},{"name":"SHOP_VOLUMEGUID","features":[466]},{"name":"SHObjectProperties","features":[305,466]},{"name":"SHOpenFolderAndSelectItems","features":[632]},{"name":"SHOpenPropSheetW","features":[305,356,415,366,466]},{"name":"SHOpenRegStream2A","features":[356,366,466]},{"name":"SHOpenRegStream2W","features":[356,366,466]},{"name":"SHOpenRegStreamA","features":[356,366,466]},{"name":"SHOpenRegStreamW","features":[356,366,466]},{"name":"SHOpenWithDialog","features":[305,466]},{"name":"SHPPFW_ASKDIRCREATE","features":[466]},{"name":"SHPPFW_DIRCREATE","features":[466]},{"name":"SHPPFW_IGNOREFILENAME","features":[466]},{"name":"SHPPFW_MEDIACHECKONLY","features":[466]},{"name":"SHPPFW_NONE","features":[466]},{"name":"SHPPFW_NOWRITECHECK","features":[466]},{"name":"SHPWHF_ANYLOCATION","features":[466]},{"name":"SHPWHF_NOFILESELECTOR","features":[466]},{"name":"SHPWHF_NONETPLACECREATE","features":[466]},{"name":"SHPWHF_NORECOMPRESS","features":[466]},{"name":"SHPWHF_USEMRU","features":[466]},{"name":"SHPWHF_VALIDATEVIAWEBFOLDERS","features":[466]},{"name":"SHParseDisplayName","features":[356,632]},{"name":"SHPathPrepareForWriteA","features":[305,466]},{"name":"SHPathPrepareForWriteW","features":[305,466]},{"name":"SHQUERYRBINFO","features":[466]},{"name":"SHQUERYRBINFO","features":[466]},{"name":"SHQueryInfoKeyA","features":[305,366,466]},{"name":"SHQueryInfoKeyW","features":[305,366,466]},{"name":"SHQueryRecycleBinA","features":[466]},{"name":"SHQueryRecycleBinW","features":[466]},{"name":"SHQueryUserNotificationState","features":[466]},{"name":"SHQueryValueExA","features":[305,366,466]},{"name":"SHQueryValueExW","features":[305,366,466]},{"name":"SHREGDEL_BOTH","features":[466]},{"name":"SHREGDEL_DEFAULT","features":[466]},{"name":"SHREGDEL_FLAGS","features":[466]},{"name":"SHREGDEL_HKCU","features":[466]},{"name":"SHREGDEL_HKLM","features":[466]},{"name":"SHREGENUM_BOTH","features":[466]},{"name":"SHREGENUM_DEFAULT","features":[466]},{"name":"SHREGENUM_FLAGS","features":[466]},{"name":"SHREGENUM_HKCU","features":[466]},{"name":"SHREGENUM_HKLM","features":[466]},{"name":"SHREGSET_FORCE_HKCU","features":[466]},{"name":"SHREGSET_FORCE_HKLM","features":[466]},{"name":"SHREGSET_HKCU","features":[466]},{"name":"SHREGSET_HKLM","features":[466]},{"name":"SHRegCloseUSKey","features":[305,466]},{"name":"SHRegCreateUSKeyA","features":[305,466]},{"name":"SHRegCreateUSKeyW","features":[305,466]},{"name":"SHRegDeleteEmptyUSKeyA","features":[305,466]},{"name":"SHRegDeleteEmptyUSKeyW","features":[305,466]},{"name":"SHRegDeleteUSValueA","features":[305,466]},{"name":"SHRegDeleteUSValueW","features":[305,466]},{"name":"SHRegDuplicateHKey","features":[366,466]},{"name":"SHRegEnumUSKeyA","features":[305,466]},{"name":"SHRegEnumUSKeyW","features":[305,466]},{"name":"SHRegEnumUSValueA","features":[305,466]},{"name":"SHRegEnumUSValueW","features":[305,466]},{"name":"SHRegGetBoolUSValueA","features":[305,466]},{"name":"SHRegGetBoolUSValueW","features":[305,466]},{"name":"SHRegGetIntW","features":[366,466]},{"name":"SHRegGetPathA","features":[305,366,466]},{"name":"SHRegGetPathW","features":[305,366,466]},{"name":"SHRegGetUSValueA","features":[305,466]},{"name":"SHRegGetUSValueW","features":[305,466]},{"name":"SHRegGetValueA","features":[305,366,466]},{"name":"SHRegGetValueFromHKCUHKLM","features":[305,466]},{"name":"SHRegGetValueW","features":[305,366,466]},{"name":"SHRegOpenUSKeyA","features":[305,466]},{"name":"SHRegOpenUSKeyW","features":[305,466]},{"name":"SHRegQueryInfoUSKeyA","features":[305,466]},{"name":"SHRegQueryInfoUSKeyW","features":[305,466]},{"name":"SHRegQueryUSValueA","features":[305,466]},{"name":"SHRegQueryUSValueW","features":[305,466]},{"name":"SHRegSetPathA","features":[305,366,466]},{"name":"SHRegSetPathW","features":[305,366,466]},{"name":"SHRegSetUSValueA","features":[305,466]},{"name":"SHRegSetUSValueW","features":[305,466]},{"name":"SHRegWriteUSValueA","features":[305,466]},{"name":"SHRegWriteUSValueW","features":[305,466]},{"name":"SHReleaseThreadRef","features":[466]},{"name":"SHRemoveLocalizedName","features":[466]},{"name":"SHReplaceFromPropSheetExtArray","features":[305,355,466]},{"name":"SHResolveLibrary","features":[466]},{"name":"SHRestricted","features":[466]},{"name":"SHSTOCKICONID","features":[466]},{"name":"SHSTOCKICONINFO","features":[466,367]},{"name":"SHSTOCKICONINFO","features":[466,367]},{"name":"SHSendMessageBroadcastA","features":[305,466]},{"name":"SHSendMessageBroadcastW","features":[305,466]},{"name":"SHSetDefaultProperties","features":[305,466]},{"name":"SHSetFolderPathA","features":[305,466]},{"name":"SHSetFolderPathW","features":[305,466]},{"name":"SHSetInstanceExplorer","features":[466]},{"name":"SHSetKnownFolderPath","features":[305,466]},{"name":"SHSetLocalizedName","features":[466]},{"name":"SHSetTemporaryPropertyForItem","features":[376]},{"name":"SHSetThreadRef","features":[466]},{"name":"SHSetUnreadMailCountW","features":[466]},{"name":"SHSetValueA","features":[366,466]},{"name":"SHSetValueW","features":[366,466]},{"name":"SHShellFolderView_Message","features":[305,466]},{"name":"SHShowManageLibraryUI","features":[305,466]},{"name":"SHSimpleIDListFromPath","features":[632]},{"name":"SHSkipJunction","features":[305,356,466]},{"name":"SHStartNetConnectionDialogW","features":[305,466]},{"name":"SHStrDupA","features":[466]},{"name":"SHStrDupW","features":[466]},{"name":"SHStripMneumonicA","features":[466]},{"name":"SHStripMneumonicW","features":[466]},{"name":"SHTestTokenMembership","features":[305,466]},{"name":"SHUnicodeToAnsi","features":[466]},{"name":"SHUnicodeToUnicode","features":[466]},{"name":"SHUnlockShared","features":[305,466]},{"name":"SHUpdateImageA","features":[466]},{"name":"SHUpdateImageW","features":[466]},{"name":"SHValidateUNC","features":[305,466]},{"name":"SIATTRIBFLAGS","features":[466]},{"name":"SIATTRIBFLAGS_ALLITEMS","features":[466]},{"name":"SIATTRIBFLAGS_AND","features":[466]},{"name":"SIATTRIBFLAGS_APPCOMPAT","features":[466]},{"name":"SIATTRIBFLAGS_MASK","features":[466]},{"name":"SIATTRIBFLAGS_OR","features":[466]},{"name":"SICHINT_ALLFIELDS","features":[466]},{"name":"SICHINT_CANONICAL","features":[466]},{"name":"SICHINT_DISPLAY","features":[466]},{"name":"SICHINT_TEST_FILESYSPATH_IF_NOT_EQUAL","features":[466]},{"name":"SID_CommandsPropertyBag","features":[466]},{"name":"SID_CtxQueryAssociations","features":[466]},{"name":"SID_DefView","features":[466]},{"name":"SID_LaunchSourceAppUserModelId","features":[466]},{"name":"SID_LaunchSourceViewSizePreference","features":[466]},{"name":"SID_LaunchTargetViewSizePreference","features":[466]},{"name":"SID_MenuShellFolder","features":[466]},{"name":"SID_SCommDlgBrowser","features":[466]},{"name":"SID_SCommandBarState","features":[466]},{"name":"SID_SGetViewFromViewDual","features":[466]},{"name":"SID_SInPlaceBrowser","features":[466]},{"name":"SID_SMenuBandBKContextMenu","features":[466]},{"name":"SID_SMenuBandBottom","features":[466]},{"name":"SID_SMenuBandBottomSelected","features":[466]},{"name":"SID_SMenuBandChild","features":[466]},{"name":"SID_SMenuBandContextMenuModifier","features":[466]},{"name":"SID_SMenuBandParent","features":[466]},{"name":"SID_SMenuBandTop","features":[466]},{"name":"SID_SMenuPopup","features":[466]},{"name":"SID_SSearchBoxInfo","features":[466]},{"name":"SID_STopLevelBrowser","features":[466]},{"name":"SID_STopWindow","features":[466]},{"name":"SID_ShellExecuteNamedPropertyStore","features":[466]},{"name":"SID_URLExecutionContext","features":[466]},{"name":"SIGDN","features":[466]},{"name":"SIGDN_DESKTOPABSOLUTEEDITING","features":[466]},{"name":"SIGDN_DESKTOPABSOLUTEPARSING","features":[466]},{"name":"SIGDN_FILESYSPATH","features":[466]},{"name":"SIGDN_NORMALDISPLAY","features":[466]},{"name":"SIGDN_PARENTRELATIVE","features":[466]},{"name":"SIGDN_PARENTRELATIVEEDITING","features":[466]},{"name":"SIGDN_PARENTRELATIVEFORADDRESSBAR","features":[466]},{"name":"SIGDN_PARENTRELATIVEFORUI","features":[466]},{"name":"SIGDN_PARENTRELATIVEPARSING","features":[466]},{"name":"SIGDN_URL","features":[466]},{"name":"SIID_APPLICATION","features":[466]},{"name":"SIID_AUDIOFILES","features":[466]},{"name":"SIID_AUTOLIST","features":[466]},{"name":"SIID_CLUSTEREDDRIVE","features":[466]},{"name":"SIID_DELETE","features":[466]},{"name":"SIID_DESKTOPPC","features":[466]},{"name":"SIID_DEVICEAUDIOPLAYER","features":[466]},{"name":"SIID_DEVICECAMERA","features":[466]},{"name":"SIID_DEVICECELLPHONE","features":[466]},{"name":"SIID_DEVICEVIDEOCAMERA","features":[466]},{"name":"SIID_DOCASSOC","features":[466]},{"name":"SIID_DOCNOASSOC","features":[466]},{"name":"SIID_DRIVE35","features":[466]},{"name":"SIID_DRIVE525","features":[466]},{"name":"SIID_DRIVEBD","features":[466]},{"name":"SIID_DRIVECD","features":[466]},{"name":"SIID_DRIVEDVD","features":[466]},{"name":"SIID_DRIVEFIXED","features":[466]},{"name":"SIID_DRIVEHDDVD","features":[466]},{"name":"SIID_DRIVENET","features":[466]},{"name":"SIID_DRIVENETDISABLED","features":[466]},{"name":"SIID_DRIVERAM","features":[466]},{"name":"SIID_DRIVEREMOVE","features":[466]},{"name":"SIID_DRIVEUNKNOWN","features":[466]},{"name":"SIID_ERROR","features":[466]},{"name":"SIID_FIND","features":[466]},{"name":"SIID_FOLDER","features":[466]},{"name":"SIID_FOLDERBACK","features":[466]},{"name":"SIID_FOLDERFRONT","features":[466]},{"name":"SIID_FOLDEROPEN","features":[466]},{"name":"SIID_HELP","features":[466]},{"name":"SIID_IMAGEFILES","features":[466]},{"name":"SIID_INFO","features":[466]},{"name":"SIID_INTERNET","features":[466]},{"name":"SIID_KEY","features":[466]},{"name":"SIID_LINK","features":[466]},{"name":"SIID_LOCK","features":[466]},{"name":"SIID_MAX_ICONS","features":[466]},{"name":"SIID_MEDIAAUDIODVD","features":[466]},{"name":"SIID_MEDIABDR","features":[466]},{"name":"SIID_MEDIABDRE","features":[466]},{"name":"SIID_MEDIABDROM","features":[466]},{"name":"SIID_MEDIABLANKCD","features":[466]},{"name":"SIID_MEDIABLURAY","features":[466]},{"name":"SIID_MEDIACDAUDIO","features":[466]},{"name":"SIID_MEDIACDAUDIOPLUS","features":[466]},{"name":"SIID_MEDIACDBURN","features":[466]},{"name":"SIID_MEDIACDR","features":[466]},{"name":"SIID_MEDIACDROM","features":[466]},{"name":"SIID_MEDIACDRW","features":[466]},{"name":"SIID_MEDIACOMPACTFLASH","features":[466]},{"name":"SIID_MEDIADVD","features":[466]},{"name":"SIID_MEDIADVDPLUSR","features":[466]},{"name":"SIID_MEDIADVDPLUSRW","features":[466]},{"name":"SIID_MEDIADVDR","features":[466]},{"name":"SIID_MEDIADVDRAM","features":[466]},{"name":"SIID_MEDIADVDROM","features":[466]},{"name":"SIID_MEDIADVDRW","features":[466]},{"name":"SIID_MEDIAENHANCEDCD","features":[466]},{"name":"SIID_MEDIAENHANCEDDVD","features":[466]},{"name":"SIID_MEDIAHDDVD","features":[466]},{"name":"SIID_MEDIAHDDVDR","features":[466]},{"name":"SIID_MEDIAHDDVDRAM","features":[466]},{"name":"SIID_MEDIAHDDVDROM","features":[466]},{"name":"SIID_MEDIAMOVIEDVD","features":[466]},{"name":"SIID_MEDIASMARTMEDIA","features":[466]},{"name":"SIID_MEDIASVCD","features":[466]},{"name":"SIID_MEDIAVCD","features":[466]},{"name":"SIID_MIXEDFILES","features":[466]},{"name":"SIID_MOBILEPC","features":[466]},{"name":"SIID_MYNETWORK","features":[466]},{"name":"SIID_NETWORKCONNECT","features":[466]},{"name":"SIID_PRINTER","features":[466]},{"name":"SIID_PRINTERFAX","features":[466]},{"name":"SIID_PRINTERFAXNET","features":[466]},{"name":"SIID_PRINTERFILE","features":[466]},{"name":"SIID_PRINTERNET","features":[466]},{"name":"SIID_RECYCLER","features":[466]},{"name":"SIID_RECYCLERFULL","features":[466]},{"name":"SIID_RENAME","features":[466]},{"name":"SIID_SERVER","features":[466]},{"name":"SIID_SERVERSHARE","features":[466]},{"name":"SIID_SETTINGS","features":[466]},{"name":"SIID_SHARE","features":[466]},{"name":"SIID_SHIELD","features":[466]},{"name":"SIID_SLOWFILE","features":[466]},{"name":"SIID_SOFTWARE","features":[466]},{"name":"SIID_STACK","features":[466]},{"name":"SIID_STUFFEDFOLDER","features":[466]},{"name":"SIID_USERS","features":[466]},{"name":"SIID_VIDEOFILES","features":[466]},{"name":"SIID_WARNING","features":[466]},{"name":"SIID_WORLD","features":[466]},{"name":"SIID_ZIPFILE","features":[466]},{"name":"SIIGBF","features":[466]},{"name":"SIIGBF_BIGGERSIZEOK","features":[466]},{"name":"SIIGBF_CROPTOSQUARE","features":[466]},{"name":"SIIGBF_ICONBACKGROUND","features":[466]},{"name":"SIIGBF_ICONONLY","features":[466]},{"name":"SIIGBF_INCACHEONLY","features":[466]},{"name":"SIIGBF_MEMORYONLY","features":[466]},{"name":"SIIGBF_RESIZETOFIT","features":[466]},{"name":"SIIGBF_SCALEUP","features":[466]},{"name":"SIIGBF_THUMBNAILONLY","features":[466]},{"name":"SIIGBF_WIDETHUMBNAILS","features":[466]},{"name":"SIOM_ICONINDEX","features":[466]},{"name":"SIOM_OVERLAYINDEX","features":[466]},{"name":"SIOM_RESERVED_DEFAULT","features":[466]},{"name":"SIOM_RESERVED_LINK","features":[466]},{"name":"SIOM_RESERVED_SHARED","features":[466]},{"name":"SIOM_RESERVED_SLOWFILE","features":[466]},{"name":"SLDF_ALLOW_LINK_TO_LINK","features":[466]},{"name":"SLDF_DEFAULT","features":[466]},{"name":"SLDF_DISABLE_KNOWNFOLDER_RELATIVE_TRACKING","features":[466]},{"name":"SLDF_DISABLE_LINK_PATH_TRACKING","features":[466]},{"name":"SLDF_ENABLE_TARGET_METADATA","features":[466]},{"name":"SLDF_FORCE_NO_LINKINFO","features":[466]},{"name":"SLDF_FORCE_NO_LINKTRACK","features":[466]},{"name":"SLDF_FORCE_UNCNAME","features":[466]},{"name":"SLDF_HAS_ARGS","features":[466]},{"name":"SLDF_HAS_DARWINID","features":[466]},{"name":"SLDF_HAS_EXP_ICON_SZ","features":[466]},{"name":"SLDF_HAS_EXP_SZ","features":[466]},{"name":"SLDF_HAS_ICONLOCATION","features":[466]},{"name":"SLDF_HAS_ID_LIST","features":[466]},{"name":"SLDF_HAS_LINK_INFO","features":[466]},{"name":"SLDF_HAS_NAME","features":[466]},{"name":"SLDF_HAS_RELPATH","features":[466]},{"name":"SLDF_HAS_WORKINGDIR","features":[466]},{"name":"SLDF_KEEP_LOCAL_IDLIST_FOR_UNC_TARGET","features":[466]},{"name":"SLDF_NO_KF_ALIAS","features":[466]},{"name":"SLDF_NO_PIDL_ALIAS","features":[466]},{"name":"SLDF_PERSIST_VOLUME_ID_RELATIVE","features":[466]},{"name":"SLDF_PREFER_ENVIRONMENT_PATH","features":[466]},{"name":"SLDF_RESERVED","features":[466]},{"name":"SLDF_RUNAS_USER","features":[466]},{"name":"SLDF_RUN_IN_SEPARATE","features":[466]},{"name":"SLDF_RUN_WITH_SHIMLAYER","features":[466]},{"name":"SLDF_UNALIAS_ON_SAVE","features":[466]},{"name":"SLDF_UNICODE","features":[466]},{"name":"SLDF_VALID","features":[466]},{"name":"SLGP_FLAGS","features":[466]},{"name":"SLGP_RAWPATH","features":[466]},{"name":"SLGP_RELATIVEPRIORITY","features":[466]},{"name":"SLGP_SHORTPATH","features":[466]},{"name":"SLGP_UNCPRIORITY","features":[466]},{"name":"SLOWAPPINFO","features":[305,466]},{"name":"SLR_ANY_MATCH","features":[466]},{"name":"SLR_FLAGS","features":[466]},{"name":"SLR_INVOKE_MSI","features":[466]},{"name":"SLR_KNOWNFOLDER","features":[466]},{"name":"SLR_MACHINE_IN_LOCAL_TARGET","features":[466]},{"name":"SLR_NOLINKINFO","features":[466]},{"name":"SLR_NONE","features":[466]},{"name":"SLR_NOSEARCH","features":[466]},{"name":"SLR_NOTRACK","features":[466]},{"name":"SLR_NOUPDATE","features":[466]},{"name":"SLR_NO_OBJECT_ID","features":[466]},{"name":"SLR_NO_UI","features":[466]},{"name":"SLR_NO_UI_WITH_MSG_PUMP","features":[466]},{"name":"SLR_OFFER_DELETE_WITHOUT_FILE","features":[466]},{"name":"SLR_UPDATE","features":[466]},{"name":"SLR_UPDATE_MACHINE_AND_SID","features":[466]},{"name":"SMAE_CONTRACTED","features":[466]},{"name":"SMAE_EXPANDED","features":[466]},{"name":"SMAE_USER","features":[466]},{"name":"SMAE_VALID","features":[466]},{"name":"SMCSHCHANGENOTIFYSTRUCT","features":[632]},{"name":"SMC_AUTOEXPANDCHANGE","features":[466]},{"name":"SMC_CHEVRONEXPAND","features":[466]},{"name":"SMC_CHEVRONGETTIP","features":[466]},{"name":"SMC_CREATE","features":[466]},{"name":"SMC_DEFAULTICON","features":[466]},{"name":"SMC_DEMOTE","features":[466]},{"name":"SMC_DISPLAYCHEVRONTIP","features":[466]},{"name":"SMC_EXITMENU","features":[466]},{"name":"SMC_GETAUTOEXPANDSTATE","features":[466]},{"name":"SMC_GETBKCONTEXTMENU","features":[466]},{"name":"SMC_GETCONTEXTMENUMODIFIER","features":[466]},{"name":"SMC_GETINFO","features":[466]},{"name":"SMC_GETOBJECT","features":[466]},{"name":"SMC_GETSFINFO","features":[466]},{"name":"SMC_GETSFOBJECT","features":[466]},{"name":"SMC_INITMENU","features":[466]},{"name":"SMC_NEWITEM","features":[466]},{"name":"SMC_OPEN","features":[466]},{"name":"SMC_PROMOTE","features":[466]},{"name":"SMC_REFRESH","features":[466]},{"name":"SMC_SETSFOBJECT","features":[466]},{"name":"SMC_SFDDRESTRICTED","features":[466]},{"name":"SMC_SFEXEC","features":[466]},{"name":"SMC_SFEXEC_MIDDLE","features":[466]},{"name":"SMC_SFSELECTITEM","features":[466]},{"name":"SMC_SHCHANGENOTIFY","features":[466]},{"name":"SMDATA","features":[305,632,367]},{"name":"SMDM_HMENU","features":[466]},{"name":"SMDM_SHELLFOLDER","features":[466]},{"name":"SMDM_TOOLBAR","features":[466]},{"name":"SMIF_ACCELERATOR","features":[466]},{"name":"SMIF_ALTSTATE","features":[466]},{"name":"SMIF_CHECKED","features":[466]},{"name":"SMIF_DEMOTED","features":[466]},{"name":"SMIF_DISABLED","features":[466]},{"name":"SMIF_DRAGNDROP","features":[466]},{"name":"SMIF_DROPCASCADE","features":[466]},{"name":"SMIF_DROPTARGET","features":[466]},{"name":"SMIF_HIDDEN","features":[466]},{"name":"SMIF_ICON","features":[466]},{"name":"SMIF_NEW","features":[466]},{"name":"SMIF_SUBMENU","features":[466]},{"name":"SMIF_TRACKPOPUP","features":[466]},{"name":"SMIM_FLAGS","features":[466]},{"name":"SMIM_ICON","features":[466]},{"name":"SMIM_TYPE","features":[466]},{"name":"SMINFO","features":[466]},{"name":"SMINFOFLAGS","features":[466]},{"name":"SMINFOMASK","features":[466]},{"name":"SMINFOTYPE","features":[466]},{"name":"SMINIT_AUTOEXPAND","features":[466]},{"name":"SMINIT_AUTOTOOLTIP","features":[466]},{"name":"SMINIT_CACHED","features":[466]},{"name":"SMINIT_DEFAULT","features":[466]},{"name":"SMINIT_DROPONCONTAINER","features":[466]},{"name":"SMINIT_HORIZONTAL","features":[466]},{"name":"SMINIT_RESTRICT_DRAGDROP","features":[466]},{"name":"SMINIT_TOPLEVEL","features":[466]},{"name":"SMINIT_VERTICAL","features":[466]},{"name":"SMINV_ID","features":[466]},{"name":"SMINV_REFRESH","features":[466]},{"name":"SMIT_SEPARATOR","features":[466]},{"name":"SMIT_STRING","features":[466]},{"name":"SMSET_BOTTOM","features":[466]},{"name":"SMSET_DONTOWN","features":[466]},{"name":"SMSET_TOP","features":[466]},{"name":"SORTCOLUMN","features":[376]},{"name":"SORTDIRECTION","features":[466]},{"name":"SORT_ASCENDING","features":[466]},{"name":"SORT_DESCENDING","features":[466]},{"name":"SORT_ORDER_TYPE","features":[466]},{"name":"SOT_DEFAULT","features":[466]},{"name":"SOT_IGNORE_FOLDERNESS","features":[466]},{"name":"SPACTION","features":[466]},{"name":"SPACTION_APPLYINGATTRIBS","features":[466]},{"name":"SPACTION_CALCULATING","features":[466]},{"name":"SPACTION_COPYING","features":[466]},{"name":"SPACTION_COPY_MOVING","features":[466]},{"name":"SPACTION_DELETING","features":[466]},{"name":"SPACTION_DOWNLOADING","features":[466]},{"name":"SPACTION_FORMATTING","features":[466]},{"name":"SPACTION_MOVING","features":[466]},{"name":"SPACTION_NONE","features":[466]},{"name":"SPACTION_RECYCLING","features":[466]},{"name":"SPACTION_RENAMING","features":[466]},{"name":"SPACTION_SEARCHING_FILES","features":[466]},{"name":"SPACTION_SEARCHING_INTERNET","features":[466]},{"name":"SPACTION_UPLOADING","features":[466]},{"name":"SPBEGINF_AUTOTIME","features":[466]},{"name":"SPBEGINF_MARQUEEPROGRESS","features":[466]},{"name":"SPBEGINF_NOCANCELBUTTON","features":[466]},{"name":"SPBEGINF_NOPROGRESSBAR","features":[466]},{"name":"SPBEGINF_NORMAL","features":[466]},{"name":"SPFF_CREATED_ON_THIS_DEVICE","features":[466]},{"name":"SPFF_DOWNLOAD_BY_DEFAULT","features":[466]},{"name":"SPFF_NONE","features":[466]},{"name":"SPINITF_MODAL","features":[466]},{"name":"SPINITF_NOMINIMIZE","features":[466]},{"name":"SPINITF_NORMAL","features":[466]},{"name":"SPMODE_BROWSER","features":[466]},{"name":"SPMODE_DBMON","features":[466]},{"name":"SPMODE_DEBUGBREAK","features":[466]},{"name":"SPMODE_DEBUGOUT","features":[466]},{"name":"SPMODE_EVENT","features":[466]},{"name":"SPMODE_EVENTTRACE","features":[466]},{"name":"SPMODE_FLUSH","features":[466]},{"name":"SPMODE_FORMATTEXT","features":[466]},{"name":"SPMODE_MEMWATCH","features":[466]},{"name":"SPMODE_MSGTRACE","features":[466]},{"name":"SPMODE_MSVM","features":[466]},{"name":"SPMODE_MULTISTOP","features":[466]},{"name":"SPMODE_PERFTAGS","features":[466]},{"name":"SPMODE_PROFILE","features":[466]},{"name":"SPMODE_SHELL","features":[466]},{"name":"SPMODE_TEST","features":[466]},{"name":"SPTEXT","features":[466]},{"name":"SPTEXT_ACTIONDESCRIPTION","features":[466]},{"name":"SPTEXT_ACTIONDETAIL","features":[466]},{"name":"SRRF_NOEXPAND","features":[466]},{"name":"SRRF_NOVIRT","features":[466]},{"name":"SRRF_RM_ANY","features":[466]},{"name":"SRRF_RM_NORMAL","features":[466]},{"name":"SRRF_RM_SAFE","features":[466]},{"name":"SRRF_RM_SAFENETWORK","features":[466]},{"name":"SRRF_RT_ANY","features":[466]},{"name":"SRRF_RT_REG_BINARY","features":[466]},{"name":"SRRF_RT_REG_DWORD","features":[466]},{"name":"SRRF_RT_REG_EXPAND_SZ","features":[466]},{"name":"SRRF_RT_REG_MULTI_SZ","features":[466]},{"name":"SRRF_RT_REG_NONE","features":[466]},{"name":"SRRF_RT_REG_QWORD","features":[466]},{"name":"SRRF_RT_REG_SZ","features":[466]},{"name":"SRRF_ZEROONFAILURE","features":[466]},{"name":"SSF_AUTOCHECKSELECT","features":[466]},{"name":"SSF_DESKTOPHTML","features":[466]},{"name":"SSF_DONTPRETTYPATH","features":[466]},{"name":"SSF_DOUBLECLICKINWEBVIEW","features":[466]},{"name":"SSF_FILTER","features":[466]},{"name":"SSF_HIDDENFILEEXTS","features":[466]},{"name":"SSF_HIDEICONS","features":[466]},{"name":"SSF_ICONSONLY","features":[466]},{"name":"SSF_MAPNETDRVBUTTON","features":[466]},{"name":"SSF_MASK","features":[466]},{"name":"SSF_NOCONFIRMRECYCLE","features":[466]},{"name":"SSF_NONETCRAWLING","features":[466]},{"name":"SSF_SEPPROCESS","features":[466]},{"name":"SSF_SERVERADMINUI","features":[466]},{"name":"SSF_SHOWALLOBJECTS","features":[466]},{"name":"SSF_SHOWATTRIBCOL","features":[466]},{"name":"SSF_SHOWCOMPCOLOR","features":[466]},{"name":"SSF_SHOWEXTENSIONS","features":[466]},{"name":"SSF_SHOWINFOTIP","features":[466]},{"name":"SSF_SHOWSTARTPAGE","features":[466]},{"name":"SSF_SHOWSTATUSBAR","features":[466]},{"name":"SSF_SHOWSUPERHIDDEN","features":[466]},{"name":"SSF_SHOWSYSFILES","features":[466]},{"name":"SSF_SHOWTYPEOVERLAY","features":[466]},{"name":"SSF_SORTCOLUMNS","features":[466]},{"name":"SSF_STARTPANELON","features":[466]},{"name":"SSF_WEBVIEW","features":[466]},{"name":"SSF_WIN95CLASSIC","features":[466]},{"name":"SSM_CLEAR","features":[466]},{"name":"SSM_REFRESH","features":[466]},{"name":"SSM_SET","features":[466]},{"name":"SSM_UPDATE","features":[466]},{"name":"STGOP","features":[466]},{"name":"STGOP_APPLYPROPERTIES","features":[466]},{"name":"STGOP_COPY","features":[466]},{"name":"STGOP_MOVE","features":[466]},{"name":"STGOP_NEW","features":[466]},{"name":"STGOP_REMOVE","features":[466]},{"name":"STGOP_RENAME","features":[466]},{"name":"STGOP_SYNC","features":[466]},{"name":"STIF_DEFAULT","features":[466]},{"name":"STIF_SUPPORT_HEX","features":[466]},{"name":"STORAGE_PROVIDER_FILE_FLAGS","features":[466]},{"name":"STORE_E_NEWER_VERSION_AVAILABLE","features":[466]},{"name":"STPFLAG","features":[466]},{"name":"STPF_NONE","features":[466]},{"name":"STPF_USEAPPPEEKALWAYS","features":[466]},{"name":"STPF_USEAPPPEEKWHENACTIVE","features":[466]},{"name":"STPF_USEAPPTHUMBNAILALWAYS","features":[466]},{"name":"STPF_USEAPPTHUMBNAILWHENACTIVE","features":[466]},{"name":"STR_AVOID_DRIVE_RESTRICTION_POLICY","features":[466]},{"name":"STR_BIND_DELEGATE_CREATE_OBJECT","features":[466]},{"name":"STR_BIND_FOLDERS_READ_ONLY","features":[466]},{"name":"STR_BIND_FOLDER_ENUM_MODE","features":[466]},{"name":"STR_BIND_FORCE_FOLDER_SHORTCUT_RESOLVE","features":[466]},{"name":"STR_DONT_PARSE_RELATIVE","features":[466]},{"name":"STR_DONT_RESOLVE_LINK","features":[466]},{"name":"STR_ENUM_ITEMS_FLAGS","features":[466]},{"name":"STR_FILE_SYS_BIND_DATA","features":[466]},{"name":"STR_FILE_SYS_BIND_DATA_WIN7_FORMAT","features":[466]},{"name":"STR_GET_ASYNC_HANDLER","features":[466]},{"name":"STR_GPS_BESTEFFORT","features":[466]},{"name":"STR_GPS_DELAYCREATION","features":[466]},{"name":"STR_GPS_FASTPROPERTIESONLY","features":[466]},{"name":"STR_GPS_HANDLERPROPERTIESONLY","features":[466]},{"name":"STR_GPS_NO_OPLOCK","features":[466]},{"name":"STR_GPS_OPENSLOWITEM","features":[466]},{"name":"STR_INTERNAL_NAVIGATE","features":[466]},{"name":"STR_INTERNETFOLDER_PARSE_ONLY_URLMON_BINDABLE","features":[466]},{"name":"STR_ITEM_CACHE_CONTEXT","features":[466]},{"name":"STR_MYDOCS_CLSID","features":[466]},{"name":"STR_NO_VALIDATE_FILENAME_CHARS","features":[466]},{"name":"STR_PARSE_ALLOW_INTERNET_SHELL_FOLDERS","features":[466]},{"name":"STR_PARSE_AND_CREATE_ITEM","features":[466]},{"name":"STR_PARSE_DONT_REQUIRE_VALIDATED_URLS","features":[466]},{"name":"STR_PARSE_EXPLICIT_ASSOCIATION_SUCCESSFUL","features":[466]},{"name":"STR_PARSE_PARTIAL_IDLIST","features":[466]},{"name":"STR_PARSE_PREFER_FOLDER_BROWSING","features":[466]},{"name":"STR_PARSE_PREFER_WEB_BROWSING","features":[466]},{"name":"STR_PARSE_PROPERTYSTORE","features":[466]},{"name":"STR_PARSE_SHELL_PROTOCOL_TO_FILE_OBJECTS","features":[466]},{"name":"STR_PARSE_SHOW_NET_DIAGNOSTICS_UI","features":[466]},{"name":"STR_PARSE_SKIP_NET_CACHE","features":[466]},{"name":"STR_PARSE_TRANSLATE_ALIASES","features":[466]},{"name":"STR_PARSE_WITH_EXPLICIT_ASSOCAPP","features":[466]},{"name":"STR_PARSE_WITH_EXPLICIT_PROGID","features":[466]},{"name":"STR_PARSE_WITH_PROPERTIES","features":[466]},{"name":"STR_PROPERTYBAG_PARAM","features":[466]},{"name":"STR_REFERRER_IDENTIFIER","features":[466]},{"name":"STR_SKIP_BINDING_CLSID","features":[466]},{"name":"STR_STORAGEITEM_CREATION_FLAGS","features":[466]},{"name":"STR_TAB_REUSE_IDENTIFIER","features":[466]},{"name":"STR_TRACK_CLSID","features":[466]},{"name":"SUBCLASSPROC","features":[305,466]},{"name":"SV2CVW2_PARAMS","features":[305,415,466]},{"name":"SV3CVW3_DEFAULT","features":[466]},{"name":"SV3CVW3_FORCEFOLDERFLAGS","features":[466]},{"name":"SV3CVW3_FORCEVIEWMODE","features":[466]},{"name":"SV3CVW3_NONINTERACTIVE","features":[466]},{"name":"SVGIO_ALLVIEW","features":[466]},{"name":"SVGIO_BACKGROUND","features":[466]},{"name":"SVGIO_CHECKED","features":[466]},{"name":"SVGIO_FLAG_VIEWORDER","features":[466]},{"name":"SVGIO_SELECTION","features":[466]},{"name":"SVGIO_TYPE_MASK","features":[466]},{"name":"SVSI_CHECK","features":[466]},{"name":"SVSI_CHECK2","features":[466]},{"name":"SVSI_DESELECT","features":[466]},{"name":"SVSI_DESELECTOTHERS","features":[466]},{"name":"SVSI_EDIT","features":[466]},{"name":"SVSI_ENSUREVISIBLE","features":[466]},{"name":"SVSI_FOCUSED","features":[466]},{"name":"SVSI_KEYBOARDSELECT","features":[466]},{"name":"SVSI_NOTAKEFOCUS","features":[466]},{"name":"SVSI_POSITIONITEM","features":[466]},{"name":"SVSI_SELECT","features":[466]},{"name":"SVSI_SELECTIONMARK","features":[466]},{"name":"SVSI_TRANSLATEPT","features":[466]},{"name":"SVUIA_ACTIVATE_FOCUS","features":[466]},{"name":"SVUIA_ACTIVATE_NOFOCUS","features":[466]},{"name":"SVUIA_DEACTIVATE","features":[466]},{"name":"SVUIA_INPLACEACTIVATE","features":[466]},{"name":"SVUIA_STATUS","features":[466]},{"name":"SWC_3RDPARTY","features":[466]},{"name":"SWC_BROWSER","features":[466]},{"name":"SWC_CALLBACK","features":[466]},{"name":"SWC_DESKTOP","features":[466]},{"name":"SWC_EXPLORER","features":[466]},{"name":"SWFO_COOKIEPASSED","features":[466]},{"name":"SWFO_INCLUDEPENDING","features":[466]},{"name":"SWFO_NEEDDISPATCH","features":[466]},{"name":"SYNCMGRERRORFLAGS","features":[466]},{"name":"SYNCMGRERRORFLAG_ENABLEJUMPTEXT","features":[466]},{"name":"SYNCMGRFLAG","features":[466]},{"name":"SYNCMGRFLAG_CONNECT","features":[466]},{"name":"SYNCMGRFLAG_EVENTMASK","features":[466]},{"name":"SYNCMGRFLAG_IDLE","features":[466]},{"name":"SYNCMGRFLAG_INVOKE","features":[466]},{"name":"SYNCMGRFLAG_MANUAL","features":[466]},{"name":"SYNCMGRFLAG_MAYBOTHERUSER","features":[466]},{"name":"SYNCMGRFLAG_PENDINGDISCONNECT","features":[466]},{"name":"SYNCMGRFLAG_SCHEDULED","features":[466]},{"name":"SYNCMGRFLAG_SETTINGS","features":[466]},{"name":"SYNCMGRHANDLERFLAGS","features":[466]},{"name":"SYNCMGRHANDLERFLAG_MASK","features":[466]},{"name":"SYNCMGRHANDLERINFO","features":[466,367]},{"name":"SYNCMGRHANDLER_ALWAYSLISTHANDLER","features":[466]},{"name":"SYNCMGRHANDLER_HASPROPERTIES","features":[466]},{"name":"SYNCMGRHANDLER_HIDDEN","features":[466]},{"name":"SYNCMGRHANDLER_MAYESTABLISHCONNECTION","features":[466]},{"name":"SYNCMGRINVOKEFLAGS","features":[466]},{"name":"SYNCMGRINVOKE_MINIMIZED","features":[466]},{"name":"SYNCMGRINVOKE_STARTSYNC","features":[466]},{"name":"SYNCMGRITEM","features":[305,466,367]},{"name":"SYNCMGRITEMFLAGS","features":[466]},{"name":"SYNCMGRITEMSTATE","features":[466]},{"name":"SYNCMGRITEMSTATE_CHECKED","features":[466]},{"name":"SYNCMGRITEMSTATE_UNCHECKED","features":[466]},{"name":"SYNCMGRITEM_HASPROPERTIES","features":[466]},{"name":"SYNCMGRITEM_HIDDEN","features":[466]},{"name":"SYNCMGRITEM_ITEMFLAGMASK","features":[466]},{"name":"SYNCMGRITEM_LASTUPDATETIME","features":[466]},{"name":"SYNCMGRITEM_MAYDELETEITEM","features":[466]},{"name":"SYNCMGRITEM_ROAMINGUSER","features":[466]},{"name":"SYNCMGRITEM_TEMPORARY","features":[466]},{"name":"SYNCMGRLOGERRORINFO","features":[466]},{"name":"SYNCMGRLOGERROR_ERRORFLAGS","features":[466]},{"name":"SYNCMGRLOGERROR_ERRORID","features":[466]},{"name":"SYNCMGRLOGERROR_ITEMID","features":[466]},{"name":"SYNCMGRLOGLEVEL","features":[466]},{"name":"SYNCMGRLOGLEVEL_ERROR","features":[466]},{"name":"SYNCMGRLOGLEVEL_INFORMATION","features":[466]},{"name":"SYNCMGRLOGLEVEL_LOGLEVELMAX","features":[466]},{"name":"SYNCMGRLOGLEVEL_WARNING","features":[466]},{"name":"SYNCMGRPROGRESSITEM","features":[466]},{"name":"SYNCMGRPROGRESSITEM_MAXVALUE","features":[466]},{"name":"SYNCMGRPROGRESSITEM_PROGVALUE","features":[466]},{"name":"SYNCMGRPROGRESSITEM_STATUSTEXT","features":[466]},{"name":"SYNCMGRPROGRESSITEM_STATUSTYPE","features":[466]},{"name":"SYNCMGRREGISTERFLAGS","features":[466]},{"name":"SYNCMGRREGISTERFLAGS_MASK","features":[466]},{"name":"SYNCMGRREGISTERFLAG_CONNECT","features":[466]},{"name":"SYNCMGRREGISTERFLAG_IDLE","features":[466]},{"name":"SYNCMGRREGISTERFLAG_PENDINGDISCONNECT","features":[466]},{"name":"SYNCMGRSTATUS","features":[466]},{"name":"SYNCMGRSTATUS_DELETED","features":[466]},{"name":"SYNCMGRSTATUS_FAILED","features":[466]},{"name":"SYNCMGRSTATUS_PAUSED","features":[466]},{"name":"SYNCMGRSTATUS_PENDING","features":[466]},{"name":"SYNCMGRSTATUS_RESUMING","features":[466]},{"name":"SYNCMGRSTATUS_SKIPPED","features":[466]},{"name":"SYNCMGRSTATUS_STOPPED","features":[466]},{"name":"SYNCMGRSTATUS_SUCCEEDED","features":[466]},{"name":"SYNCMGRSTATUS_UPDATING","features":[466]},{"name":"SYNCMGRSTATUS_UPDATING_INDETERMINATE","features":[466]},{"name":"SYNCMGR_CANCEL_REQUEST","features":[466]},{"name":"SYNCMGR_CF_NONE","features":[466]},{"name":"SYNCMGR_CF_NOUI","features":[466]},{"name":"SYNCMGR_CF_NOWAIT","features":[466]},{"name":"SYNCMGR_CF_VALID","features":[466]},{"name":"SYNCMGR_CF_WAIT","features":[466]},{"name":"SYNCMGR_CIT_DELETED","features":[466]},{"name":"SYNCMGR_CIT_UPDATED","features":[466]},{"name":"SYNCMGR_CONFLICT_ID_INFO","features":[356,466]},{"name":"SYNCMGR_CONFLICT_ITEM_TYPE","features":[466]},{"name":"SYNCMGR_CONTROL_FLAGS","features":[466]},{"name":"SYNCMGR_CR_CANCEL_ALL","features":[466]},{"name":"SYNCMGR_CR_CANCEL_ITEM","features":[466]},{"name":"SYNCMGR_CR_MAX","features":[466]},{"name":"SYNCMGR_CR_NONE","features":[466]},{"name":"SYNCMGR_EF_NONE","features":[466]},{"name":"SYNCMGR_EF_VALID","features":[466]},{"name":"SYNCMGR_EL_ERROR","features":[466]},{"name":"SYNCMGR_EL_INFORMATION","features":[466]},{"name":"SYNCMGR_EL_MAX","features":[466]},{"name":"SYNCMGR_EL_WARNING","features":[466]},{"name":"SYNCMGR_EVENT_FLAGS","features":[466]},{"name":"SYNCMGR_EVENT_LEVEL","features":[466]},{"name":"SYNCMGR_HANDLER_CAPABILITIES","features":[466]},{"name":"SYNCMGR_HANDLER_POLICIES","features":[466]},{"name":"SYNCMGR_HANDLER_TYPE","features":[466]},{"name":"SYNCMGR_HCM_CAN_BROWSE_CONTENT","features":[466]},{"name":"SYNCMGR_HCM_CAN_SHOW_SCHEDULE","features":[466]},{"name":"SYNCMGR_HCM_CONFLICT_STORE","features":[466]},{"name":"SYNCMGR_HCM_EVENT_STORE","features":[466]},{"name":"SYNCMGR_HCM_NONE","features":[466]},{"name":"SYNCMGR_HCM_PROVIDES_ICON","features":[466]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ACTIVATE","features":[466]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DEACTIVATE","features":[466]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_DISABLE","features":[466]},{"name":"SYNCMGR_HCM_QUERY_BEFORE_ENABLE","features":[466]},{"name":"SYNCMGR_HCM_SUPPORTS_CONCURRENT_SESSIONS","features":[466]},{"name":"SYNCMGR_HCM_VALID_MASK","features":[466]},{"name":"SYNCMGR_HPM_BACKGROUND_SYNC_ONLY","features":[466]},{"name":"SYNCMGR_HPM_DISABLE_BROWSE","features":[466]},{"name":"SYNCMGR_HPM_DISABLE_DISABLE","features":[466]},{"name":"SYNCMGR_HPM_DISABLE_ENABLE","features":[466]},{"name":"SYNCMGR_HPM_DISABLE_SCHEDULE","features":[466]},{"name":"SYNCMGR_HPM_DISABLE_START_SYNC","features":[466]},{"name":"SYNCMGR_HPM_DISABLE_STOP_SYNC","features":[466]},{"name":"SYNCMGR_HPM_HIDDEN_BY_DEFAULT","features":[466]},{"name":"SYNCMGR_HPM_NONE","features":[466]},{"name":"SYNCMGR_HPM_PREVENT_ACTIVATE","features":[466]},{"name":"SYNCMGR_HPM_PREVENT_DEACTIVATE","features":[466]},{"name":"SYNCMGR_HPM_PREVENT_DISABLE","features":[466]},{"name":"SYNCMGR_HPM_PREVENT_ENABLE","features":[466]},{"name":"SYNCMGR_HPM_PREVENT_START_SYNC","features":[466]},{"name":"SYNCMGR_HPM_PREVENT_STOP_SYNC","features":[466]},{"name":"SYNCMGR_HPM_VALID_MASK","features":[466]},{"name":"SYNCMGR_HT_APPLICATION","features":[466]},{"name":"SYNCMGR_HT_COMPUTER","features":[466]},{"name":"SYNCMGR_HT_DEVICE","features":[466]},{"name":"SYNCMGR_HT_FOLDER","features":[466]},{"name":"SYNCMGR_HT_MAX","features":[466]},{"name":"SYNCMGR_HT_MIN","features":[466]},{"name":"SYNCMGR_HT_SERVICE","features":[466]},{"name":"SYNCMGR_HT_UNSPECIFIED","features":[466]},{"name":"SYNCMGR_ICM_CAN_BROWSE_CONTENT","features":[466]},{"name":"SYNCMGR_ICM_CAN_DELETE","features":[466]},{"name":"SYNCMGR_ICM_CONFLICT_STORE","features":[466]},{"name":"SYNCMGR_ICM_EVENT_STORE","features":[466]},{"name":"SYNCMGR_ICM_NONE","features":[466]},{"name":"SYNCMGR_ICM_PROVIDES_ICON","features":[466]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DELETE","features":[466]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_DISABLE","features":[466]},{"name":"SYNCMGR_ICM_QUERY_BEFORE_ENABLE","features":[466]},{"name":"SYNCMGR_ICM_VALID_MASK","features":[466]},{"name":"SYNCMGR_IPM_DISABLE_BROWSE","features":[466]},{"name":"SYNCMGR_IPM_DISABLE_DELETE","features":[466]},{"name":"SYNCMGR_IPM_DISABLE_DISABLE","features":[466]},{"name":"SYNCMGR_IPM_DISABLE_ENABLE","features":[466]},{"name":"SYNCMGR_IPM_DISABLE_START_SYNC","features":[466]},{"name":"SYNCMGR_IPM_DISABLE_STOP_SYNC","features":[466]},{"name":"SYNCMGR_IPM_HIDDEN_BY_DEFAULT","features":[466]},{"name":"SYNCMGR_IPM_NONE","features":[466]},{"name":"SYNCMGR_IPM_PREVENT_DISABLE","features":[466]},{"name":"SYNCMGR_IPM_PREVENT_ENABLE","features":[466]},{"name":"SYNCMGR_IPM_PREVENT_START_SYNC","features":[466]},{"name":"SYNCMGR_IPM_PREVENT_STOP_SYNC","features":[466]},{"name":"SYNCMGR_IPM_VALID_MASK","features":[466]},{"name":"SYNCMGR_ITEM_CAPABILITIES","features":[466]},{"name":"SYNCMGR_ITEM_POLICIES","features":[466]},{"name":"SYNCMGR_OBJECTID_BrowseContent","features":[466]},{"name":"SYNCMGR_OBJECTID_ConflictStore","features":[466]},{"name":"SYNCMGR_OBJECTID_EventLinkClick","features":[466]},{"name":"SYNCMGR_OBJECTID_EventStore","features":[466]},{"name":"SYNCMGR_OBJECTID_Icon","features":[466]},{"name":"SYNCMGR_OBJECTID_QueryBeforeActivate","features":[466]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDeactivate","features":[466]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDelete","features":[466]},{"name":"SYNCMGR_OBJECTID_QueryBeforeDisable","features":[466]},{"name":"SYNCMGR_OBJECTID_QueryBeforeEnable","features":[466]},{"name":"SYNCMGR_OBJECTID_ShowSchedule","features":[466]},{"name":"SYNCMGR_PC_KEEP_MULTIPLE","features":[466]},{"name":"SYNCMGR_PC_KEEP_ONE","features":[466]},{"name":"SYNCMGR_PC_KEEP_RECENT","features":[466]},{"name":"SYNCMGR_PC_NO_CHOICE","features":[466]},{"name":"SYNCMGR_PC_REMOVE_FROM_SYNC_SET","features":[466]},{"name":"SYNCMGR_PC_SKIP","features":[466]},{"name":"SYNCMGR_PNS_CANCEL","features":[466]},{"name":"SYNCMGR_PNS_CONTINUE","features":[466]},{"name":"SYNCMGR_PNS_DEFAULT","features":[466]},{"name":"SYNCMGR_PRESENTER_CHOICE","features":[466]},{"name":"SYNCMGR_PRESENTER_NEXT_STEP","features":[466]},{"name":"SYNCMGR_PROGRESS_STATUS","features":[466]},{"name":"SYNCMGR_PS_CANCELED","features":[466]},{"name":"SYNCMGR_PS_DISCONNECTED","features":[466]},{"name":"SYNCMGR_PS_FAILED","features":[466]},{"name":"SYNCMGR_PS_MAX","features":[466]},{"name":"SYNCMGR_PS_SUCCEEDED","features":[466]},{"name":"SYNCMGR_PS_UPDATING","features":[466]},{"name":"SYNCMGR_PS_UPDATING_INDETERMINATE","features":[466]},{"name":"SYNCMGR_RA_KEEPOTHER","features":[466]},{"name":"SYNCMGR_RA_KEEPRECENT","features":[466]},{"name":"SYNCMGR_RA_KEEP_MULTIPLE","features":[466]},{"name":"SYNCMGR_RA_KEEP_SINGLE","features":[466]},{"name":"SYNCMGR_RA_REMOVEFROMSYNCSET","features":[466]},{"name":"SYNCMGR_RA_VALID","features":[466]},{"name":"SYNCMGR_RESOLUTION_ABILITIES","features":[466]},{"name":"SYNCMGR_RESOLUTION_FEEDBACK","features":[466]},{"name":"SYNCMGR_RF_CANCEL","features":[466]},{"name":"SYNCMGR_RF_CONTINUE","features":[466]},{"name":"SYNCMGR_RF_REFRESH","features":[466]},{"name":"SYNCMGR_SCF_IGNORE_IF_ALREADY_SYNCING","features":[466]},{"name":"SYNCMGR_SCF_NONE","features":[466]},{"name":"SYNCMGR_SCF_VALID","features":[466]},{"name":"SYNCMGR_SYNC_CONTROL_FLAGS","features":[466]},{"name":"SYNCMGR_UPDATE_REASON","features":[466]},{"name":"SYNCMGR_UR_ADDED","features":[466]},{"name":"SYNCMGR_UR_CHANGED","features":[466]},{"name":"SYNCMGR_UR_MAX","features":[466]},{"name":"SYNCMGR_UR_REMOVED","features":[466]},{"name":"SZ_CONTENTTYPE_CDF","features":[466]},{"name":"SZ_CONTENTTYPE_CDFA","features":[466]},{"name":"SZ_CONTENTTYPE_CDFW","features":[466]},{"name":"SZ_CONTENTTYPE_HTML","features":[466]},{"name":"SZ_CONTENTTYPE_HTMLA","features":[466]},{"name":"SZ_CONTENTTYPE_HTMLW","features":[466]},{"name":"S_SYNCMGR_CANCELALL","features":[466]},{"name":"S_SYNCMGR_CANCELITEM","features":[466]},{"name":"S_SYNCMGR_ENUMITEMS","features":[466]},{"name":"S_SYNCMGR_ITEMDELETED","features":[466]},{"name":"S_SYNCMGR_MISSINGITEMS","features":[466]},{"name":"S_SYNCMGR_RETRYSYNC","features":[466]},{"name":"ScheduledTasks","features":[466]},{"name":"SearchFolderItemFactory","features":[466]},{"name":"SecureLockIconConstants","features":[466]},{"name":"SelectedItemCount_Property_GUID","features":[466]},{"name":"SetCurrentProcessExplicitAppUserModelID","features":[466]},{"name":"SetMenuContextHelpId","features":[305,466,367]},{"name":"SetWindowContextHelpId","features":[305,466]},{"name":"SetWindowSubclass","features":[305,466]},{"name":"SharedBitmap","features":[466]},{"name":"SharingConfigurationManager","features":[466]},{"name":"Shell","features":[466]},{"name":"ShellAboutA","features":[305,466,367]},{"name":"ShellAboutW","features":[305,466,367]},{"name":"ShellBrowserWindow","features":[466]},{"name":"ShellDesktop","features":[466]},{"name":"ShellDispatchInproc","features":[466]},{"name":"ShellExecuteA","features":[305,466,367]},{"name":"ShellExecuteExA","features":[305,366,466]},{"name":"ShellExecuteExW","features":[305,366,466]},{"name":"ShellExecuteW","features":[305,466,367]},{"name":"ShellFSFolder","features":[466]},{"name":"ShellFolderItem","features":[466]},{"name":"ShellFolderView","features":[466]},{"name":"ShellFolderViewOC","features":[466]},{"name":"ShellFolderViewOptions","features":[466]},{"name":"ShellImageDataFactory","features":[466]},{"name":"ShellItem","features":[466]},{"name":"ShellLibrary","features":[466]},{"name":"ShellLink","features":[466]},{"name":"ShellLinkObject","features":[466]},{"name":"ShellMessageBoxA","features":[305,466,367]},{"name":"ShellMessageBoxW","features":[305,466,367]},{"name":"ShellNameSpace","features":[466]},{"name":"ShellSpecialFolderConstants","features":[466]},{"name":"ShellUIHelper","features":[466]},{"name":"ShellWindowFindWindowOptions","features":[466]},{"name":"ShellWindowTypeConstants","features":[466]},{"name":"ShellWindows","features":[466]},{"name":"Shell_GetCachedImageIndex","features":[466]},{"name":"Shell_GetCachedImageIndexA","features":[466]},{"name":"Shell_GetCachedImageIndexW","features":[466]},{"name":"Shell_GetImageLists","features":[305,355,466]},{"name":"Shell_MergeMenus","features":[466,367]},{"name":"Shell_NotifyIconA","features":[305,466,367]},{"name":"Shell_NotifyIconGetRect","features":[305,466]},{"name":"Shell_NotifyIconW","features":[305,466,367]},{"name":"ShowInputPaneAnimationCoordinator","features":[466]},{"name":"SignalFileOpen","features":[305,632]},{"name":"SimpleConflictPresenter","features":[466]},{"name":"SizeCategorizer","features":[466]},{"name":"SmartcardCredentialProvider","features":[466]},{"name":"SmartcardPinProvider","features":[466]},{"name":"SmartcardReaderSelectionProvider","features":[466]},{"name":"SmartcardWinRTProvider","features":[466]},{"name":"SoftwareUpdateMessageBox","features":[305,533,466]},{"name":"StartMenuPin","features":[466]},{"name":"StgMakeUniqueName","features":[429,466]},{"name":"StorageProviderBanners","features":[466]},{"name":"StrCSpnA","features":[466]},{"name":"StrCSpnIA","features":[466]},{"name":"StrCSpnIW","features":[466]},{"name":"StrCSpnW","features":[466]},{"name":"StrCatBuffA","features":[466]},{"name":"StrCatBuffW","features":[466]},{"name":"StrCatChainW","features":[466]},{"name":"StrCatW","features":[466]},{"name":"StrChrA","features":[466]},{"name":"StrChrIA","features":[466]},{"name":"StrChrIW","features":[466]},{"name":"StrChrNIW","features":[466]},{"name":"StrChrNW","features":[466]},{"name":"StrChrW","features":[466]},{"name":"StrCmpCA","features":[466]},{"name":"StrCmpCW","features":[466]},{"name":"StrCmpICA","features":[466]},{"name":"StrCmpICW","features":[466]},{"name":"StrCmpIW","features":[466]},{"name":"StrCmpLogicalW","features":[466]},{"name":"StrCmpNA","features":[466]},{"name":"StrCmpNCA","features":[466]},{"name":"StrCmpNCW","features":[466]},{"name":"StrCmpNIA","features":[466]},{"name":"StrCmpNICA","features":[466]},{"name":"StrCmpNICW","features":[466]},{"name":"StrCmpNIW","features":[466]},{"name":"StrCmpNW","features":[466]},{"name":"StrCmpW","features":[466]},{"name":"StrCpyNW","features":[466]},{"name":"StrCpyW","features":[466]},{"name":"StrDupA","features":[466]},{"name":"StrDupW","features":[466]},{"name":"StrFormatByteSize64A","features":[466]},{"name":"StrFormatByteSizeA","features":[466]},{"name":"StrFormatByteSizeEx","features":[466]},{"name":"StrFormatByteSizeW","features":[466]},{"name":"StrFormatKBSizeA","features":[466]},{"name":"StrFormatKBSizeW","features":[466]},{"name":"StrFromTimeIntervalA","features":[466]},{"name":"StrFromTimeIntervalW","features":[466]},{"name":"StrIsIntlEqualA","features":[305,466]},{"name":"StrIsIntlEqualW","features":[305,466]},{"name":"StrNCatA","features":[466]},{"name":"StrNCatW","features":[466]},{"name":"StrPBrkA","features":[466]},{"name":"StrPBrkW","features":[466]},{"name":"StrRChrA","features":[466]},{"name":"StrRChrIA","features":[466]},{"name":"StrRChrIW","features":[466]},{"name":"StrRChrW","features":[466]},{"name":"StrRStrIA","features":[466]},{"name":"StrRStrIW","features":[466]},{"name":"StrRetToBSTR","features":[632]},{"name":"StrRetToBufA","features":[632]},{"name":"StrRetToBufW","features":[632]},{"name":"StrRetToStrA","features":[632]},{"name":"StrRetToStrW","features":[632]},{"name":"StrSpnA","features":[466]},{"name":"StrSpnW","features":[466]},{"name":"StrStrA","features":[466]},{"name":"StrStrIA","features":[466]},{"name":"StrStrIW","features":[466]},{"name":"StrStrNIW","features":[466]},{"name":"StrStrNW","features":[466]},{"name":"StrStrW","features":[466]},{"name":"StrToInt64ExA","features":[305,466]},{"name":"StrToInt64ExW","features":[305,466]},{"name":"StrToIntA","features":[466]},{"name":"StrToIntExA","features":[305,466]},{"name":"StrToIntExW","features":[305,466]},{"name":"StrToIntW","features":[466]},{"name":"StrTrimA","features":[305,466]},{"name":"StrTrimW","features":[305,466]},{"name":"SuspensionDependencyManager","features":[466]},{"name":"SyncMgr","features":[466]},{"name":"SyncMgrClient","features":[466]},{"name":"SyncMgrControl","features":[466]},{"name":"SyncMgrFolder","features":[466]},{"name":"SyncMgrScheduleWizard","features":[466]},{"name":"SyncResultsFolder","features":[466]},{"name":"SyncSetupFolder","features":[466]},{"name":"TBIF_APPEND","features":[466]},{"name":"TBIF_DEFAULT","features":[466]},{"name":"TBIF_INTERNETBAR","features":[466]},{"name":"TBIF_NOTOOLBAR","features":[466]},{"name":"TBIF_PREPEND","features":[466]},{"name":"TBIF_REPLACE","features":[466]},{"name":"TBIF_STANDARDTOOLBAR","features":[466]},{"name":"TBINFO","features":[466]},{"name":"TBPFLAG","features":[466]},{"name":"TBPF_ERROR","features":[466]},{"name":"TBPF_INDETERMINATE","features":[466]},{"name":"TBPF_NOPROGRESS","features":[466]},{"name":"TBPF_NORMAL","features":[466]},{"name":"TBPF_PAUSED","features":[466]},{"name":"THBF_DISABLED","features":[466]},{"name":"THBF_DISMISSONCLICK","features":[466]},{"name":"THBF_ENABLED","features":[466]},{"name":"THBF_HIDDEN","features":[466]},{"name":"THBF_NOBACKGROUND","features":[466]},{"name":"THBF_NONINTERACTIVE","features":[466]},{"name":"THBN_CLICKED","features":[466]},{"name":"THB_BITMAP","features":[466]},{"name":"THB_FLAGS","features":[466]},{"name":"THB_ICON","features":[466]},{"name":"THB_TOOLTIP","features":[466]},{"name":"THUMBBUTTON","features":[466,367]},{"name":"THUMBBUTTONFLAGS","features":[466]},{"name":"THUMBBUTTONMASK","features":[466]},{"name":"TITLEBARNAMELEN","features":[466]},{"name":"TI_BITMAP","features":[466]},{"name":"TI_FLAGS","features":[466]},{"name":"TI_JPEG","features":[466]},{"name":"TLEF_ABSOLUTE","features":[466]},{"name":"TLEF_EXCLUDE_ABOUT_PAGES","features":[466]},{"name":"TLEF_EXCLUDE_SUBFRAME_ENTRIES","features":[466]},{"name":"TLEF_INCLUDE_UNINVOKEABLE","features":[466]},{"name":"TLEF_RELATIVE_BACK","features":[466]},{"name":"TLEF_RELATIVE_FORE","features":[466]},{"name":"TLEF_RELATIVE_INCLUDE_CURRENT","features":[466]},{"name":"TLENUMF","features":[466]},{"name":"TLMENUF_BACK","features":[466]},{"name":"TLMENUF_FORE","features":[466]},{"name":"TLMENUF_INCLUDECURRENT","features":[466]},{"name":"TLOG_BACK","features":[466]},{"name":"TLOG_CURRENT","features":[466]},{"name":"TLOG_FORE","features":[466]},{"name":"TOOLBARITEM","features":[305,316,415,466]},{"name":"TRANSLATEURL_FL_GUESS_PROTOCOL","features":[466]},{"name":"TRANSLATEURL_FL_USE_DEFAULT_PROTOCOL","features":[466]},{"name":"TRANSLATEURL_IN_FLAGS","features":[466]},{"name":"TSF_ALLOW_DECRYPTION","features":[466]},{"name":"TSF_COPY_CREATION_TIME","features":[466]},{"name":"TSF_COPY_HARD_LINK","features":[466]},{"name":"TSF_COPY_LOCALIZED_NAME","features":[466]},{"name":"TSF_COPY_WRITE_TIME","features":[466]},{"name":"TSF_DELETE_RECYCLE_IF_POSSIBLE","features":[466]},{"name":"TSF_FAIL_EXIST","features":[466]},{"name":"TSF_MOVE_AS_COPY_DELETE","features":[466]},{"name":"TSF_NORMAL","features":[466]},{"name":"TSF_NO_SECURITY","features":[466]},{"name":"TSF_OVERWRITE_EXIST","features":[466]},{"name":"TSF_RENAME_EXIST","features":[466]},{"name":"TSF_SUSPEND_SHELLEVENTS","features":[466]},{"name":"TSF_USE_FULL_ACCESS","features":[466]},{"name":"TS_INDETERMINATE","features":[466]},{"name":"TS_NONE","features":[466]},{"name":"TS_PERFORMING","features":[466]},{"name":"TS_PREPARING","features":[466]},{"name":"TaskbarList","features":[466]},{"name":"ThumbnailStreamCache","features":[466]},{"name":"ThumbnailStreamCacheOptions","features":[466]},{"name":"TimeCategorizer","features":[466]},{"name":"TrackShellMenu","features":[466]},{"name":"TrayBandSiteService","features":[466]},{"name":"TrayDeskBand","features":[466]},{"name":"UNDOCK_REASON","features":[466]},{"name":"URLASSOCDLG_FL_REGISTER_ASSOC","features":[466]},{"name":"URLASSOCDLG_FL_USE_DEFAULT_NAME","features":[466]},{"name":"URLASSOCIATIONDIALOG_IN_FLAGS","features":[466]},{"name":"URLINVOKECOMMANDINFOA","features":[305,466]},{"name":"URLINVOKECOMMANDINFOW","features":[305,466]},{"name":"URLIS","features":[466]},{"name":"URLIS_APPLIABLE","features":[466]},{"name":"URLIS_DIRECTORY","features":[466]},{"name":"URLIS_FILEURL","features":[466]},{"name":"URLIS_HASQUERY","features":[466]},{"name":"URLIS_NOHISTORY","features":[466]},{"name":"URLIS_OPAQUE","features":[466]},{"name":"URLIS_URL","features":[466]},{"name":"URL_APPLY_DEFAULT","features":[466]},{"name":"URL_APPLY_FORCEAPPLY","features":[466]},{"name":"URL_APPLY_GUESSFILE","features":[466]},{"name":"URL_APPLY_GUESSSCHEME","features":[466]},{"name":"URL_BROWSER_MODE","features":[466]},{"name":"URL_CONVERT_IF_DOSPATH","features":[466]},{"name":"URL_DONT_ESCAPE_EXTRA_INFO","features":[466]},{"name":"URL_DONT_SIMPLIFY","features":[466]},{"name":"URL_DONT_UNESCAPE","features":[466]},{"name":"URL_DONT_UNESCAPE_EXTRA_INFO","features":[466]},{"name":"URL_ESCAPE_ASCII_URI_COMPONENT","features":[466]},{"name":"URL_ESCAPE_AS_UTF8","features":[466]},{"name":"URL_ESCAPE_PERCENT","features":[466]},{"name":"URL_ESCAPE_SEGMENT_ONLY","features":[466]},{"name":"URL_ESCAPE_SPACES_ONLY","features":[466]},{"name":"URL_ESCAPE_UNSAFE","features":[466]},{"name":"URL_E_INVALID_SYNTAX","features":[466]},{"name":"URL_E_UNREGISTERED_PROTOCOL","features":[466]},{"name":"URL_FILE_USE_PATHURL","features":[466]},{"name":"URL_INTERNAL_PATH","features":[466]},{"name":"URL_NO_META","features":[466]},{"name":"URL_PART","features":[466]},{"name":"URL_PARTFLAG_KEEPSCHEME","features":[466]},{"name":"URL_PART_HOSTNAME","features":[466]},{"name":"URL_PART_NONE","features":[466]},{"name":"URL_PART_PASSWORD","features":[466]},{"name":"URL_PART_PORT","features":[466]},{"name":"URL_PART_QUERY","features":[466]},{"name":"URL_PART_SCHEME","features":[466]},{"name":"URL_PART_USERNAME","features":[466]},{"name":"URL_PLUGGABLE_PROTOCOL","features":[466]},{"name":"URL_SCHEME","features":[466]},{"name":"URL_SCHEME_ABOUT","features":[466]},{"name":"URL_SCHEME_FILE","features":[466]},{"name":"URL_SCHEME_FTP","features":[466]},{"name":"URL_SCHEME_GOPHER","features":[466]},{"name":"URL_SCHEME_HTTP","features":[466]},{"name":"URL_SCHEME_HTTPS","features":[466]},{"name":"URL_SCHEME_INVALID","features":[466]},{"name":"URL_SCHEME_JAVASCRIPT","features":[466]},{"name":"URL_SCHEME_KNOWNFOLDER","features":[466]},{"name":"URL_SCHEME_LOCAL","features":[466]},{"name":"URL_SCHEME_MAILTO","features":[466]},{"name":"URL_SCHEME_MAXVALUE","features":[466]},{"name":"URL_SCHEME_MK","features":[466]},{"name":"URL_SCHEME_MSHELP","features":[466]},{"name":"URL_SCHEME_MSSHELLDEVICE","features":[466]},{"name":"URL_SCHEME_MSSHELLIDLIST","features":[466]},{"name":"URL_SCHEME_MSSHELLROOTED","features":[466]},{"name":"URL_SCHEME_NEWS","features":[466]},{"name":"URL_SCHEME_NNTP","features":[466]},{"name":"URL_SCHEME_RES","features":[466]},{"name":"URL_SCHEME_SEARCH","features":[466]},{"name":"URL_SCHEME_SEARCH_MS","features":[466]},{"name":"URL_SCHEME_SHELL","features":[466]},{"name":"URL_SCHEME_SNEWS","features":[466]},{"name":"URL_SCHEME_TELNET","features":[466]},{"name":"URL_SCHEME_UNKNOWN","features":[466]},{"name":"URL_SCHEME_VBSCRIPT","features":[466]},{"name":"URL_SCHEME_WAIS","features":[466]},{"name":"URL_SCHEME_WILDCARD","features":[466]},{"name":"URL_UNESCAPE","features":[466]},{"name":"URL_UNESCAPE_AS_UTF8","features":[466]},{"name":"URL_UNESCAPE_HIGH_ANSI_ONLY","features":[466]},{"name":"URL_UNESCAPE_INPLACE","features":[466]},{"name":"URL_UNESCAPE_URI_COMPONENT","features":[466]},{"name":"URL_WININET_COMPATIBILITY","features":[466]},{"name":"UR_MONITOR_DISCONNECT","features":[466]},{"name":"UR_RESOLUTION_CHANGE","features":[466]},{"name":"UnloadUserProfile","features":[305,466]},{"name":"UnregisterAppConstrainedChangeNotification","features":[466]},{"name":"UnregisterAppStateChangeNotification","features":[466]},{"name":"UnregisterScaleChangeEvent","features":[466]},{"name":"UrlApplySchemeA","features":[466]},{"name":"UrlApplySchemeW","features":[466]},{"name":"UrlCanonicalizeA","features":[466]},{"name":"UrlCanonicalizeW","features":[466]},{"name":"UrlCombineA","features":[466]},{"name":"UrlCombineW","features":[466]},{"name":"UrlCompareA","features":[305,466]},{"name":"UrlCompareW","features":[305,466]},{"name":"UrlCreateFromPathA","features":[466]},{"name":"UrlCreateFromPathW","features":[466]},{"name":"UrlEscapeA","features":[466]},{"name":"UrlEscapeW","features":[466]},{"name":"UrlFixupW","features":[466]},{"name":"UrlGetLocationA","features":[466]},{"name":"UrlGetLocationW","features":[466]},{"name":"UrlGetPartA","features":[466]},{"name":"UrlGetPartW","features":[466]},{"name":"UrlHashA","features":[466]},{"name":"UrlHashW","features":[466]},{"name":"UrlIsA","features":[305,466]},{"name":"UrlIsNoHistoryA","features":[305,466]},{"name":"UrlIsNoHistoryW","features":[305,466]},{"name":"UrlIsOpaqueA","features":[305,466]},{"name":"UrlIsOpaqueW","features":[305,466]},{"name":"UrlIsW","features":[305,466]},{"name":"UrlUnescapeA","features":[466]},{"name":"UrlUnescapeW","features":[466]},{"name":"UserNotification","features":[466]},{"name":"V1PasswordCredentialProvider","features":[466]},{"name":"V1SmartcardCredentialProvider","features":[466]},{"name":"V1WinBioCredentialProvider","features":[466]},{"name":"VALIDATEUNC_CONNECT","features":[466]},{"name":"VALIDATEUNC_NOUI","features":[466]},{"name":"VALIDATEUNC_OPTION","features":[466]},{"name":"VALIDATEUNC_PERSIST","features":[466]},{"name":"VALIDATEUNC_PRINT","features":[466]},{"name":"VALIDATEUNC_VALID","features":[466]},{"name":"VID_Content","features":[466]},{"name":"VID_Details","features":[466]},{"name":"VID_LargeIcons","features":[466]},{"name":"VID_List","features":[466]},{"name":"VID_SmallIcons","features":[466]},{"name":"VID_ThumbStrip","features":[466]},{"name":"VID_Thumbnails","features":[466]},{"name":"VID_Tile","features":[466]},{"name":"VIEW_PRIORITY_CACHEHIT","features":[466]},{"name":"VIEW_PRIORITY_CACHEMISS","features":[466]},{"name":"VIEW_PRIORITY_DESPERATE","features":[466]},{"name":"VIEW_PRIORITY_INHERIT","features":[466]},{"name":"VIEW_PRIORITY_NONE","features":[466]},{"name":"VIEW_PRIORITY_RESTRICTED","features":[466]},{"name":"VIEW_PRIORITY_SHELLEXT","features":[466]},{"name":"VIEW_PRIORITY_SHELLEXT_ASBACKUP","features":[466]},{"name":"VIEW_PRIORITY_STALECACHEHIT","features":[466]},{"name":"VIEW_PRIORITY_USEASDEFAULT","features":[466]},{"name":"VOLUME_PREFIX","features":[466]},{"name":"VPCF_BACKGROUND","features":[466]},{"name":"VPCF_SORTCOLUMN","features":[466]},{"name":"VPCF_SUBTEXT","features":[466]},{"name":"VPCF_TEXT","features":[466]},{"name":"VPCF_TEXTBACKGROUND","features":[466]},{"name":"VPCOLORFLAGS","features":[466]},{"name":"VPWATERMARKFLAGS","features":[466]},{"name":"VPWF_ALPHABLEND","features":[466]},{"name":"VPWF_DEFAULT","features":[466]},{"name":"VariantToStrRet","features":[632]},{"name":"VaultProvider","features":[466]},{"name":"VirtualDesktopManager","features":[466]},{"name":"WC_NETADDRESS","features":[466]},{"name":"WINDOWDATA","features":[632]},{"name":"WM_CPL_LAUNCH","features":[466]},{"name":"WM_CPL_LAUNCHED","features":[466]},{"name":"WPSTYLE_CENTER","features":[466]},{"name":"WPSTYLE_CROPTOFIT","features":[466]},{"name":"WPSTYLE_KEEPASPECT","features":[466]},{"name":"WPSTYLE_MAX","features":[466]},{"name":"WPSTYLE_SPAN","features":[466]},{"name":"WPSTYLE_STRETCH","features":[466]},{"name":"WPSTYLE_TILE","features":[466]},{"name":"WTSAT_ARGB","features":[466]},{"name":"WTSAT_RGB","features":[466]},{"name":"WTSAT_UNKNOWN","features":[466]},{"name":"WTSCF_APPSTYLE","features":[466]},{"name":"WTSCF_DEFAULT","features":[466]},{"name":"WTSCF_FAST","features":[466]},{"name":"WTSCF_SQUARE","features":[466]},{"name":"WTSCF_WIDE","features":[466]},{"name":"WTS_ALPHATYPE","features":[466]},{"name":"WTS_APPSTYLE","features":[466]},{"name":"WTS_CACHED","features":[466]},{"name":"WTS_CACHEFLAGS","features":[466]},{"name":"WTS_CONTEXTFLAGS","features":[466]},{"name":"WTS_CROPTOSQUARE","features":[466]},{"name":"WTS_DEFAULT","features":[466]},{"name":"WTS_EXTRACT","features":[466]},{"name":"WTS_EXTRACTDONOTCACHE","features":[466]},{"name":"WTS_EXTRACTINPROC","features":[466]},{"name":"WTS_E_DATAFILEUNAVAILABLE","features":[466]},{"name":"WTS_E_EXTRACTIONBLOCKED","features":[466]},{"name":"WTS_E_EXTRACTIONPENDING","features":[466]},{"name":"WTS_E_EXTRACTIONTIMEDOUT","features":[466]},{"name":"WTS_E_FAILEDEXTRACTION","features":[466]},{"name":"WTS_E_FASTEXTRACTIONNOTSUPPORTED","features":[466]},{"name":"WTS_E_NOSTORAGEPROVIDERTHUMBNAILHANDLER","features":[466]},{"name":"WTS_E_SURROGATEUNAVAILABLE","features":[466]},{"name":"WTS_FASTEXTRACT","features":[466]},{"name":"WTS_FLAGS","features":[466]},{"name":"WTS_FORCEEXTRACTION","features":[466]},{"name":"WTS_IDEALCACHESIZEONLY","features":[466]},{"name":"WTS_INCACHEONLY","features":[466]},{"name":"WTS_INSTANCESURROGATE","features":[466]},{"name":"WTS_LOWQUALITY","features":[466]},{"name":"WTS_NONE","features":[466]},{"name":"WTS_REQUIRESURROGATE","features":[466]},{"name":"WTS_SCALETOREQUESTEDSIZE","features":[466]},{"name":"WTS_SCALEUP","features":[466]},{"name":"WTS_SKIPFASTEXTRACT","features":[466]},{"name":"WTS_SLOWRECLAIM","features":[466]},{"name":"WTS_THUMBNAILID","features":[466]},{"name":"WTS_WIDETHUMBNAILS","features":[466]},{"name":"WebBrowser","features":[466]},{"name":"WebBrowser_V1","features":[466]},{"name":"WebWizardHost","features":[466]},{"name":"WhichPlatform","features":[466]},{"name":"Win32DeleteFile","features":[305,466]},{"name":"WinBioCredentialProvider","features":[466]},{"name":"WinHelpA","features":[305,466]},{"name":"WinHelpW","features":[305,466]},{"name":"WriteCabinetState","features":[305,466]},{"name":"_BROWSERFRAMEOPTIONS","features":[466]},{"name":"_CDBE_ACTIONS","features":[466]},{"name":"_EXPCMDFLAGS","features":[466]},{"name":"_EXPCMDSTATE","features":[466]},{"name":"_EXPLORERPANESTATE","features":[466]},{"name":"_EXPPS","features":[466]},{"name":"_KF_DEFINITION_FLAGS","features":[466]},{"name":"_KF_REDIRECTION_CAPABILITIES","features":[466]},{"name":"_KF_REDIRECT_FLAGS","features":[466]},{"name":"_NMCII_FLAGS","features":[466]},{"name":"_NMCSAEI_FLAGS","features":[466]},{"name":"_NSTCECLICKTYPE","features":[466]},{"name":"_NSTCEHITTEST","features":[466]},{"name":"_NSTCITEMSTATE","features":[466]},{"name":"_NSTCROOTSTYLE","features":[466]},{"name":"_NSTCSTYLE","features":[466]},{"name":"_OPPROGDLGF","features":[466]},{"name":"_PDMODE","features":[466]},{"name":"_SHCONTF","features":[466]},{"name":"_SICHINTF","features":[466]},{"name":"_SPBEGINF","features":[466]},{"name":"_SPINITF","features":[466]},{"name":"_SV3CVW3_FLAGS","features":[466]},{"name":"_SVGIO","features":[466]},{"name":"_SVSIF","features":[466]},{"name":"_TRANSFER_ADVISE_STATE","features":[466]},{"name":"_TRANSFER_SOURCE_FLAGS","features":[466]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_CSCSYNCINPROGRESS","features":[466]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEDIRTYCOUNT_SERVERDRIVE","features":[466]},{"name":"__UNUSED_RECYCLE_WAS_GLOBALCOUNTER_RECYCLEGLOBALDIRTYCOUNT","features":[466]},{"name":"idsAppName","features":[466]},{"name":"idsBadOldPW","features":[466]},{"name":"idsChangePW","features":[466]},{"name":"idsDefKeyword","features":[466]},{"name":"idsDifferentPW","features":[466]},{"name":"idsHelpFile","features":[466]},{"name":"idsIniFile","features":[466]},{"name":"idsIsPassword","features":[466]},{"name":"idsNoHelpMemory","features":[466]},{"name":"idsPassword","features":[466]},{"name":"idsScreenSaver","features":[466]},{"name":"navAllowAutosearch","features":[466]},{"name":"navBlockRedirectsXDomain","features":[466]},{"name":"navBrowserBar","features":[466]},{"name":"navDeferUnload","features":[466]},{"name":"navEnforceRestricted","features":[466]},{"name":"navHomepageNavigate","features":[466]},{"name":"navHostNavigation","features":[466]},{"name":"navHyperlink","features":[466]},{"name":"navKeepWordWheelText","features":[466]},{"name":"navNewWindowsManaged","features":[466]},{"name":"navNoHistory","features":[466]},{"name":"navNoReadFromCache","features":[466]},{"name":"navNoWriteToCache","features":[466]},{"name":"navOpenInBackgroundTab","features":[466]},{"name":"navOpenInNewTab","features":[466]},{"name":"navOpenInNewWindow","features":[466]},{"name":"navOpenNewForegroundTab","features":[466]},{"name":"navRefresh","features":[466]},{"name":"navReserved1","features":[466]},{"name":"navReserved2","features":[466]},{"name":"navReserved3","features":[466]},{"name":"navReserved4","features":[466]},{"name":"navReserved5","features":[466]},{"name":"navReserved6","features":[466]},{"name":"navReserved7","features":[466]},{"name":"navSpeculative","features":[466]},{"name":"navSuggestNewTab","features":[466]},{"name":"navSuggestNewWindow","features":[466]},{"name":"navTravelLogScreenshot","features":[466]},{"name":"navTrustedForActiveX","features":[466]},{"name":"navUntrustedForDownload","features":[466]},{"name":"navVirtualTab","features":[466]},{"name":"secureLockIconMixed","features":[466]},{"name":"secureLockIconSecure128Bit","features":[466]},{"name":"secureLockIconSecure40Bit","features":[466]},{"name":"secureLockIconSecure56Bit","features":[466]},{"name":"secureLockIconSecureFortezza","features":[466]},{"name":"secureLockIconSecureUnknownBits","features":[466]},{"name":"secureLockIconUnsecure","features":[466]},{"name":"ssfALTSTARTUP","features":[466]},{"name":"ssfAPPDATA","features":[466]},{"name":"ssfBITBUCKET","features":[466]},{"name":"ssfCOMMONALTSTARTUP","features":[466]},{"name":"ssfCOMMONAPPDATA","features":[466]},{"name":"ssfCOMMONDESKTOPDIR","features":[466]},{"name":"ssfCOMMONFAVORITES","features":[466]},{"name":"ssfCOMMONPROGRAMS","features":[466]},{"name":"ssfCOMMONSTARTMENU","features":[466]},{"name":"ssfCOMMONSTARTUP","features":[466]},{"name":"ssfCONTROLS","features":[466]},{"name":"ssfCOOKIES","features":[466]},{"name":"ssfDESKTOP","features":[466]},{"name":"ssfDESKTOPDIRECTORY","features":[466]},{"name":"ssfDRIVES","features":[466]},{"name":"ssfFAVORITES","features":[466]},{"name":"ssfFONTS","features":[466]},{"name":"ssfHISTORY","features":[466]},{"name":"ssfINTERNETCACHE","features":[466]},{"name":"ssfLOCALAPPDATA","features":[466]},{"name":"ssfMYPICTURES","features":[466]},{"name":"ssfNETHOOD","features":[466]},{"name":"ssfNETWORK","features":[466]},{"name":"ssfPERSONAL","features":[466]},{"name":"ssfPRINTERS","features":[466]},{"name":"ssfPRINTHOOD","features":[466]},{"name":"ssfPROFILE","features":[466]},{"name":"ssfPROGRAMFILES","features":[466]},{"name":"ssfPROGRAMFILESx86","features":[466]},{"name":"ssfPROGRAMS","features":[466]},{"name":"ssfRECENT","features":[466]},{"name":"ssfSENDTO","features":[466]},{"name":"ssfSTARTMENU","features":[466]},{"name":"ssfSTARTUP","features":[466]},{"name":"ssfSYSTEM","features":[466]},{"name":"ssfSYSTEMx86","features":[466]},{"name":"ssfTEMPLATES","features":[466]},{"name":"ssfWINDOWS","features":[466]},{"name":"wnsprintfA","features":[466]},{"name":"wnsprintfW","features":[466]},{"name":"wvnsprintfA","features":[466]},{"name":"wvnsprintfW","features":[466]}],"670":[{"name":"COMDLG_FILTERSPEC","features":[632]},{"name":"DEVICE_SCALE_FACTOR","features":[632]},{"name":"DEVICE_SCALE_FACTOR_INVALID","features":[632]},{"name":"IObjectArray","features":[632]},{"name":"IObjectCollection","features":[632]},{"name":"ITEMIDLIST","features":[632]},{"name":"PERCEIVED","features":[632]},{"name":"PERCEIVEDFLAG_GDIPLUS","features":[632]},{"name":"PERCEIVEDFLAG_HARDCODED","features":[632]},{"name":"PERCEIVEDFLAG_NATIVESUPPORT","features":[632]},{"name":"PERCEIVEDFLAG_SOFTCODED","features":[632]},{"name":"PERCEIVEDFLAG_UNDEFINED","features":[632]},{"name":"PERCEIVEDFLAG_WMSDK","features":[632]},{"name":"PERCEIVEDFLAG_ZIPFOLDER","features":[632]},{"name":"PERCEIVED_TYPE_APPLICATION","features":[632]},{"name":"PERCEIVED_TYPE_AUDIO","features":[632]},{"name":"PERCEIVED_TYPE_COMPRESSED","features":[632]},{"name":"PERCEIVED_TYPE_CONTACTS","features":[632]},{"name":"PERCEIVED_TYPE_CUSTOM","features":[632]},{"name":"PERCEIVED_TYPE_DOCUMENT","features":[632]},{"name":"PERCEIVED_TYPE_FIRST","features":[632]},{"name":"PERCEIVED_TYPE_FOLDER","features":[632]},{"name":"PERCEIVED_TYPE_GAMEMEDIA","features":[632]},{"name":"PERCEIVED_TYPE_IMAGE","features":[632]},{"name":"PERCEIVED_TYPE_LAST","features":[632]},{"name":"PERCEIVED_TYPE_SYSTEM","features":[632]},{"name":"PERCEIVED_TYPE_TEXT","features":[632]},{"name":"PERCEIVED_TYPE_UNKNOWN","features":[632]},{"name":"PERCEIVED_TYPE_UNSPECIFIED","features":[632]},{"name":"PERCEIVED_TYPE_VIDEO","features":[632]},{"name":"SCALE_100_PERCENT","features":[632]},{"name":"SCALE_120_PERCENT","features":[632]},{"name":"SCALE_125_PERCENT","features":[632]},{"name":"SCALE_140_PERCENT","features":[632]},{"name":"SCALE_150_PERCENT","features":[632]},{"name":"SCALE_160_PERCENT","features":[632]},{"name":"SCALE_175_PERCENT","features":[632]},{"name":"SCALE_180_PERCENT","features":[632]},{"name":"SCALE_200_PERCENT","features":[632]},{"name":"SCALE_225_PERCENT","features":[632]},{"name":"SCALE_250_PERCENT","features":[632]},{"name":"SCALE_300_PERCENT","features":[632]},{"name":"SCALE_350_PERCENT","features":[632]},{"name":"SCALE_400_PERCENT","features":[632]},{"name":"SCALE_450_PERCENT","features":[632]},{"name":"SCALE_500_PERCENT","features":[632]},{"name":"SHCOLSTATE","features":[632]},{"name":"SHCOLSTATE_BATCHREAD","features":[632]},{"name":"SHCOLSTATE_DEFAULT","features":[632]},{"name":"SHCOLSTATE_DISPLAYMASK","features":[632]},{"name":"SHCOLSTATE_EXTENDED","features":[632]},{"name":"SHCOLSTATE_FIXED_RATIO","features":[632]},{"name":"SHCOLSTATE_FIXED_WIDTH","features":[632]},{"name":"SHCOLSTATE_HIDDEN","features":[632]},{"name":"SHCOLSTATE_NODPISCALE","features":[632]},{"name":"SHCOLSTATE_NOSORTBYFOLDERNESS","features":[632]},{"name":"SHCOLSTATE_NO_GROUPBY","features":[632]},{"name":"SHCOLSTATE_ONBYDEFAULT","features":[632]},{"name":"SHCOLSTATE_PREFER_FMTCMP","features":[632]},{"name":"SHCOLSTATE_PREFER_VARCMP","features":[632]},{"name":"SHCOLSTATE_SECONDARYUI","features":[632]},{"name":"SHCOLSTATE_SLOW","features":[632]},{"name":"SHCOLSTATE_TYPEMASK","features":[632]},{"name":"SHCOLSTATE_TYPE_DATE","features":[632]},{"name":"SHCOLSTATE_TYPE_INT","features":[632]},{"name":"SHCOLSTATE_TYPE_STR","features":[632]},{"name":"SHCOLSTATE_VIEWONLY","features":[632]},{"name":"SHELLDETAILS","features":[632]},{"name":"SHITEMID","features":[632]},{"name":"STRRET","features":[632]},{"name":"STRRET_CSTR","features":[632]},{"name":"STRRET_OFFSET","features":[632]},{"name":"STRRET_TYPE","features":[632]},{"name":"STRRET_WSTR","features":[632]}],"671":[{"name":"FPSPS_DEFAULT","features":[376]},{"name":"FPSPS_READONLY","features":[376]},{"name":"FPSPS_TREAT_NEW_VALUES_AS_DIRTY","features":[376]},{"name":"GETPROPERTYSTOREFLAGS","features":[376]},{"name":"GPS_BESTEFFORT","features":[376]},{"name":"GPS_DEFAULT","features":[376]},{"name":"GPS_DELAYCREATION","features":[376]},{"name":"GPS_EXTRINSICPROPERTIES","features":[376]},{"name":"GPS_EXTRINSICPROPERTIESONLY","features":[376]},{"name":"GPS_FASTPROPERTIESONLY","features":[376]},{"name":"GPS_HANDLERPROPERTIESONLY","features":[376]},{"name":"GPS_MASK_VALID","features":[376]},{"name":"GPS_NO_OPLOCK","features":[376]},{"name":"GPS_OPENSLOWITEM","features":[376]},{"name":"GPS_PREFERQUERYPROPERTIES","features":[376]},{"name":"GPS_READWRITE","features":[376]},{"name":"GPS_TEMPORARY","features":[376]},{"name":"GPS_VOLATILEPROPERTIES","features":[376]},{"name":"GPS_VOLATILEPROPERTIESONLY","features":[376]},{"name":"ICreateObject","features":[376]},{"name":"IDelayedPropertyStoreFactory","features":[376]},{"name":"IInitializeWithFile","features":[376]},{"name":"IInitializeWithStream","features":[376]},{"name":"INamedPropertyStore","features":[376]},{"name":"IObjectWithPropertyKey","features":[376]},{"name":"IPersistSerializedPropStorage","features":[376]},{"name":"IPersistSerializedPropStorage2","features":[376]},{"name":"IPropertyChange","features":[376]},{"name":"IPropertyChangeArray","features":[376]},{"name":"IPropertyDescription","features":[376]},{"name":"IPropertyDescription2","features":[376]},{"name":"IPropertyDescriptionAliasInfo","features":[376]},{"name":"IPropertyDescriptionList","features":[376]},{"name":"IPropertyDescriptionRelatedPropertyInfo","features":[376]},{"name":"IPropertyDescriptionSearchInfo","features":[376]},{"name":"IPropertyEnumType","features":[376]},{"name":"IPropertyEnumType2","features":[376]},{"name":"IPropertyEnumTypeList","features":[376]},{"name":"IPropertyStore","features":[376]},{"name":"IPropertyStoreCache","features":[376]},{"name":"IPropertyStoreCapabilities","features":[376]},{"name":"IPropertyStoreFactory","features":[376]},{"name":"IPropertySystem","features":[376]},{"name":"IPropertySystemChangeNotify","features":[376]},{"name":"IPropertyUI","features":[376]},{"name":"InMemoryPropertyStore","features":[376]},{"name":"InMemoryPropertyStoreMarshalByValue","features":[376]},{"name":"PCUSERIALIZEDPROPSTORAGE","features":[376]},{"name":"PDAT_AVERAGE","features":[376]},{"name":"PDAT_DATERANGE","features":[376]},{"name":"PDAT_DEFAULT","features":[376]},{"name":"PDAT_FIRST","features":[376]},{"name":"PDAT_MAX","features":[376]},{"name":"PDAT_MIN","features":[376]},{"name":"PDAT_SUM","features":[376]},{"name":"PDAT_UNION","features":[376]},{"name":"PDCIT_INMEMORY","features":[376]},{"name":"PDCIT_NONE","features":[376]},{"name":"PDCIT_ONDEMAND","features":[376]},{"name":"PDCIT_ONDISK","features":[376]},{"name":"PDCIT_ONDISKALL","features":[376]},{"name":"PDCIT_ONDISKVECTOR","features":[376]},{"name":"PDCOT_BOOLEAN","features":[376]},{"name":"PDCOT_DATETIME","features":[376]},{"name":"PDCOT_NONE","features":[376]},{"name":"PDCOT_NUMBER","features":[376]},{"name":"PDCOT_SIZE","features":[376]},{"name":"PDCOT_STRING","features":[376]},{"name":"PDDT_BOOLEAN","features":[376]},{"name":"PDDT_DATETIME","features":[376]},{"name":"PDDT_ENUMERATED","features":[376]},{"name":"PDDT_NUMBER","features":[376]},{"name":"PDDT_STRING","features":[376]},{"name":"PDEF_ALL","features":[376]},{"name":"PDEF_COLUMN","features":[376]},{"name":"PDEF_INFULLTEXTQUERY","features":[376]},{"name":"PDEF_NONSYSTEM","features":[376]},{"name":"PDEF_QUERYABLE","features":[376]},{"name":"PDEF_SYSTEM","features":[376]},{"name":"PDEF_VIEWABLE","features":[376]},{"name":"PDFF_ALWAYSKB","features":[376]},{"name":"PDFF_DEFAULT","features":[376]},{"name":"PDFF_FILENAME","features":[376]},{"name":"PDFF_HIDEDATE","features":[376]},{"name":"PDFF_HIDETIME","features":[376]},{"name":"PDFF_LONGDATE","features":[376]},{"name":"PDFF_LONGTIME","features":[376]},{"name":"PDFF_NOAUTOREADINGORDER","features":[376]},{"name":"PDFF_PREFIXNAME","features":[376]},{"name":"PDFF_READONLY","features":[376]},{"name":"PDFF_RELATIVEDATE","features":[376]},{"name":"PDFF_RESERVED_RIGHTTOLEFT","features":[376]},{"name":"PDFF_SHORTDATE","features":[376]},{"name":"PDFF_SHORTTIME","features":[376]},{"name":"PDFF_USEEDITINVITATION","features":[376]},{"name":"PDGR_ALPHANUMERIC","features":[376]},{"name":"PDGR_DATE","features":[376]},{"name":"PDGR_DISCRETE","features":[376]},{"name":"PDGR_DYNAMIC","features":[376]},{"name":"PDGR_ENUMERATED","features":[376]},{"name":"PDGR_PERCENT","features":[376]},{"name":"PDGR_SIZE","features":[376]},{"name":"PDOPSTATUS","features":[376]},{"name":"PDOPS_CANCELLED","features":[376]},{"name":"PDOPS_ERRORS","features":[376]},{"name":"PDOPS_PAUSED","features":[376]},{"name":"PDOPS_RUNNING","features":[376]},{"name":"PDOPS_STOPPED","features":[376]},{"name":"PDRDT_COUNT","features":[376]},{"name":"PDRDT_DATE","features":[376]},{"name":"PDRDT_DURATION","features":[376]},{"name":"PDRDT_GENERAL","features":[376]},{"name":"PDRDT_LENGTH","features":[376]},{"name":"PDRDT_PRIORITY","features":[376]},{"name":"PDRDT_RATE","features":[376]},{"name":"PDRDT_RATING","features":[376]},{"name":"PDRDT_REVISION","features":[376]},{"name":"PDRDT_SIZE","features":[376]},{"name":"PDRDT_SPEED","features":[376]},{"name":"PDSD_A_Z","features":[376]},{"name":"PDSD_GENERAL","features":[376]},{"name":"PDSD_LOWEST_HIGHEST","features":[376]},{"name":"PDSD_OLDEST_NEWEST","features":[376]},{"name":"PDSD_SMALLEST_BIGGEST","features":[376]},{"name":"PDSIF_ALWAYSINCLUDE","features":[376]},{"name":"PDSIF_DEFAULT","features":[376]},{"name":"PDSIF_ININVERTEDINDEX","features":[376]},{"name":"PDSIF_ISCOLUMN","features":[376]},{"name":"PDSIF_ISCOLUMNSPARSE","features":[376]},{"name":"PDSIF_USEFORTYPEAHEAD","features":[376]},{"name":"PDTF_ALWAYSINSUPPLEMENTALSTORE","features":[376]},{"name":"PDTF_CANBEPURGED","features":[376]},{"name":"PDTF_CANGROUPBY","features":[376]},{"name":"PDTF_CANSTACKBY","features":[376]},{"name":"PDTF_DEFAULT","features":[376]},{"name":"PDTF_DONTCOERCEEMPTYSTRINGS","features":[376]},{"name":"PDTF_INCLUDEINFULLTEXTQUERY","features":[376]},{"name":"PDTF_ISGROUP","features":[376]},{"name":"PDTF_ISINNATE","features":[376]},{"name":"PDTF_ISQUERYABLE","features":[376]},{"name":"PDTF_ISSYSTEMPROPERTY","features":[376]},{"name":"PDTF_ISTREEPROPERTY","features":[376]},{"name":"PDTF_ISVIEWABLE","features":[376]},{"name":"PDTF_MASK_ALL","features":[376]},{"name":"PDTF_MULTIPLEVALUES","features":[376]},{"name":"PDTF_SEARCHRAWVALUE","features":[376]},{"name":"PDVF_BEGINNEWGROUP","features":[376]},{"name":"PDVF_CANWRAP","features":[376]},{"name":"PDVF_CENTERALIGN","features":[376]},{"name":"PDVF_DEFAULT","features":[376]},{"name":"PDVF_FILLAREA","features":[376]},{"name":"PDVF_HIDDEN","features":[376]},{"name":"PDVF_HIDELABEL","features":[376]},{"name":"PDVF_MASK_ALL","features":[376]},{"name":"PDVF_RIGHTALIGN","features":[376]},{"name":"PDVF_SHOWBYDEFAULT","features":[376]},{"name":"PDVF_SHOWINPRIMARYLIST","features":[376]},{"name":"PDVF_SHOWINSECONDARYLIST","features":[376]},{"name":"PDVF_SHOWONLYIFPRESENT","features":[376]},{"name":"PDVF_SORTDESCENDING","features":[376]},{"name":"PET_DEFAULTVALUE","features":[376]},{"name":"PET_DISCRETEVALUE","features":[376]},{"name":"PET_ENDRANGE","features":[376]},{"name":"PET_RANGEDVALUE","features":[376]},{"name":"PKA_APPEND","features":[376]},{"name":"PKA_DELETE","features":[376]},{"name":"PKA_FLAGS","features":[376]},{"name":"PKA_SET","features":[376]},{"name":"PKEY_PIDSTR_MAX","features":[376]},{"name":"PLACEHOLDER_STATES","features":[376]},{"name":"PROPDESC_AGGREGATION_TYPE","features":[376]},{"name":"PROPDESC_COLUMNINDEX_TYPE","features":[376]},{"name":"PROPDESC_CONDITION_TYPE","features":[376]},{"name":"PROPDESC_DISPLAYTYPE","features":[376]},{"name":"PROPDESC_ENUMFILTER","features":[376]},{"name":"PROPDESC_FORMAT_FLAGS","features":[376]},{"name":"PROPDESC_GROUPING_RANGE","features":[376]},{"name":"PROPDESC_RELATIVEDESCRIPTION_TYPE","features":[376]},{"name":"PROPDESC_SEARCHINFO_FLAGS","features":[376]},{"name":"PROPDESC_SORTDESCRIPTION","features":[376]},{"name":"PROPDESC_TYPE_FLAGS","features":[376]},{"name":"PROPDESC_VIEW_FLAGS","features":[376]},{"name":"PROPENUMTYPE","features":[376]},{"name":"PROPERTYKEY","features":[376]},{"name":"PROPERTYUI_FLAGS","features":[376]},{"name":"PROPERTYUI_FORMAT_FLAGS","features":[376]},{"name":"PROPERTYUI_NAME_FLAGS","features":[376]},{"name":"PROPPRG","features":[376]},{"name":"PSC_DIRTY","features":[376]},{"name":"PSC_NORMAL","features":[376]},{"name":"PSC_NOTINSOURCE","features":[376]},{"name":"PSC_READONLY","features":[376]},{"name":"PSC_STATE","features":[376]},{"name":"PSCoerceToCanonicalValue","features":[376]},{"name":"PSCreateAdapterFromPropertyStore","features":[376]},{"name":"PSCreateDelayedMultiplexPropertyStore","features":[376]},{"name":"PSCreateMemoryPropertyStore","features":[376]},{"name":"PSCreateMultiplexPropertyStore","features":[376]},{"name":"PSCreatePropertyChangeArray","features":[376]},{"name":"PSCreatePropertyStoreFromObject","features":[376]},{"name":"PSCreatePropertyStoreFromPropertySetStorage","features":[429,376]},{"name":"PSCreateSimplePropertyChange","features":[376]},{"name":"PSEnumeratePropertyDescriptions","features":[376]},{"name":"PSFormatForDisplay","features":[376]},{"name":"PSFormatForDisplayAlloc","features":[376]},{"name":"PSFormatPropertyValue","features":[376]},{"name":"PSGetImageReferenceForValue","features":[376]},{"name":"PSGetItemPropertyHandler","features":[305,376]},{"name":"PSGetItemPropertyHandlerWithCreateObject","features":[305,376]},{"name":"PSGetNameFromPropertyKey","features":[376]},{"name":"PSGetNamedPropertyFromPropertyStorage","features":[376]},{"name":"PSGetPropertyDescription","features":[376]},{"name":"PSGetPropertyDescriptionByName","features":[376]},{"name":"PSGetPropertyDescriptionListFromString","features":[376]},{"name":"PSGetPropertyFromPropertyStorage","features":[376]},{"name":"PSGetPropertyKeyFromName","features":[376]},{"name":"PSGetPropertySystem","features":[376]},{"name":"PSGetPropertyValue","features":[376]},{"name":"PSLookupPropertyHandlerCLSID","features":[376]},{"name":"PSPropertyBag_Delete","features":[429,376]},{"name":"PSPropertyBag_ReadBOOL","features":[305,429,376]},{"name":"PSPropertyBag_ReadBSTR","features":[429,376]},{"name":"PSPropertyBag_ReadDWORD","features":[429,376]},{"name":"PSPropertyBag_ReadGUID","features":[429,376]},{"name":"PSPropertyBag_ReadInt","features":[429,376]},{"name":"PSPropertyBag_ReadLONG","features":[429,376]},{"name":"PSPropertyBag_ReadPOINTL","features":[305,429,376]},{"name":"PSPropertyBag_ReadPOINTS","features":[305,429,376]},{"name":"PSPropertyBag_ReadPropertyKey","features":[429,376]},{"name":"PSPropertyBag_ReadRECTL","features":[305,429,376]},{"name":"PSPropertyBag_ReadSHORT","features":[429,376]},{"name":"PSPropertyBag_ReadStr","features":[429,376]},{"name":"PSPropertyBag_ReadStrAlloc","features":[429,376]},{"name":"PSPropertyBag_ReadStream","features":[429,376]},{"name":"PSPropertyBag_ReadType","features":[429,380,376]},{"name":"PSPropertyBag_ReadULONGLONG","features":[429,376]},{"name":"PSPropertyBag_ReadUnknown","features":[429,376]},{"name":"PSPropertyBag_WriteBOOL","features":[305,429,376]},{"name":"PSPropertyBag_WriteBSTR","features":[429,376]},{"name":"PSPropertyBag_WriteDWORD","features":[429,376]},{"name":"PSPropertyBag_WriteGUID","features":[429,376]},{"name":"PSPropertyBag_WriteInt","features":[429,376]},{"name":"PSPropertyBag_WriteLONG","features":[429,376]},{"name":"PSPropertyBag_WritePOINTL","features":[305,429,376]},{"name":"PSPropertyBag_WritePOINTS","features":[305,429,376]},{"name":"PSPropertyBag_WritePropertyKey","features":[429,376]},{"name":"PSPropertyBag_WriteRECTL","features":[305,429,376]},{"name":"PSPropertyBag_WriteSHORT","features":[429,376]},{"name":"PSPropertyBag_WriteStr","features":[429,376]},{"name":"PSPropertyBag_WriteStream","features":[429,376]},{"name":"PSPropertyBag_WriteULONGLONG","features":[429,376]},{"name":"PSPropertyBag_WriteUnknown","features":[429,376]},{"name":"PSPropertyKeyFromString","features":[376]},{"name":"PSRefreshPropertySchema","features":[376]},{"name":"PSRegisterPropertySchema","features":[376]},{"name":"PSSetPropertyValue","features":[376]},{"name":"PSStringFromPropertyKey","features":[376]},{"name":"PSUnregisterPropertySchema","features":[376]},{"name":"PS_ALL","features":[376]},{"name":"PS_CLOUDFILE_PLACEHOLDER","features":[376]},{"name":"PS_CREATE_FILE_ACCESSIBLE","features":[376]},{"name":"PS_DEFAULT","features":[376]},{"name":"PS_FULL_PRIMARY_STREAM_AVAILABLE","features":[376]},{"name":"PS_MARKED_FOR_OFFLINE_AVAILABILITY","features":[376]},{"name":"PS_NONE","features":[376]},{"name":"PUIFFDF_DEFAULT","features":[376]},{"name":"PUIFFDF_FRIENDLYDATE","features":[376]},{"name":"PUIFFDF_NOTIME","features":[376]},{"name":"PUIFFDF_RIGHTTOLEFT","features":[376]},{"name":"PUIFFDF_SHORTFORMAT","features":[376]},{"name":"PUIFNF_DEFAULT","features":[376]},{"name":"PUIFNF_MNEMONIC","features":[376]},{"name":"PUIF_DEFAULT","features":[376]},{"name":"PUIF_NOLABELININFOTIP","features":[376]},{"name":"PUIF_RIGHTALIGN","features":[376]},{"name":"PifMgr_CloseProperties","features":[305,376]},{"name":"PifMgr_GetProperties","features":[305,376]},{"name":"PifMgr_OpenProperties","features":[305,376]},{"name":"PifMgr_SetProperties","features":[305,376]},{"name":"PropertySystem","features":[376]},{"name":"SERIALIZEDPROPSTORAGE","features":[376]},{"name":"SESF_ALL_FLAGS","features":[376]},{"name":"SESF_AUTHENTICATION_ERROR","features":[376]},{"name":"SESF_NONE","features":[376]},{"name":"SESF_PAUSED_DUE_TO_CLIENT_POLICY","features":[376]},{"name":"SESF_PAUSED_DUE_TO_DISK_SPACE_FULL","features":[376]},{"name":"SESF_PAUSED_DUE_TO_METERED_NETWORK","features":[376]},{"name":"SESF_PAUSED_DUE_TO_SERVICE_POLICY","features":[376]},{"name":"SESF_PAUSED_DUE_TO_USER_REQUEST","features":[376]},{"name":"SESF_SERVICE_QUOTA_EXCEEDED_LIMIT","features":[376]},{"name":"SESF_SERVICE_QUOTA_NEARING_LIMIT","features":[376]},{"name":"SESF_SERVICE_UNAVAILABLE","features":[376]},{"name":"SHAddDefaultPropertiesByExt","features":[376]},{"name":"SHGetPropertyStoreForWindow","features":[305,376]},{"name":"SHGetPropertyStoreFromIDList","features":[632,376]},{"name":"SHGetPropertyStoreFromParsingName","features":[356,376]},{"name":"SHPropStgCreate","features":[429,376]},{"name":"SHPropStgReadMultiple","features":[429,376]},{"name":"SHPropStgWriteMultiple","features":[429,376]},{"name":"STS_EXCLUDED","features":[376]},{"name":"STS_FETCHING_METADATA","features":[376]},{"name":"STS_HASERROR","features":[376]},{"name":"STS_HASWARNING","features":[376]},{"name":"STS_INCOMPLETE","features":[376]},{"name":"STS_NEEDSDOWNLOAD","features":[376]},{"name":"STS_NEEDSUPLOAD","features":[376]},{"name":"STS_NONE","features":[376]},{"name":"STS_PAUSED","features":[376]},{"name":"STS_PLACEHOLDER_IFEMPTY","features":[376]},{"name":"STS_TRANSFERRING","features":[376]},{"name":"STS_USER_REQUESTED_REFRESH","features":[376]},{"name":"SYNC_ENGINE_STATE_FLAGS","features":[376]},{"name":"SYNC_TRANSFER_STATUS","features":[376]},{"name":"_PERSIST_SPROPSTORE_FLAGS","features":[376]}],"672":[{"name":"ALT_BREAKS","features":[633]},{"name":"ALT_BREAKS_FULL","features":[633]},{"name":"ALT_BREAKS_SAME","features":[633]},{"name":"ALT_BREAKS_UNIQUE","features":[633]},{"name":"ASYNC_RECO_ADDSTROKE_FAILED","features":[633]},{"name":"ASYNC_RECO_INTERRUPTED","features":[633]},{"name":"ASYNC_RECO_PROCESS_FAILED","features":[633]},{"name":"ASYNC_RECO_RESETCONTEXT_FAILED","features":[633]},{"name":"ASYNC_RECO_SETCACMODE_FAILED","features":[633]},{"name":"ASYNC_RECO_SETFACTOID_FAILED","features":[633]},{"name":"ASYNC_RECO_SETFLAGS_FAILED","features":[633]},{"name":"ASYNC_RECO_SETGUIDE_FAILED","features":[633]},{"name":"ASYNC_RECO_SETTEXTCONTEXT_FAILED","features":[633]},{"name":"ASYNC_RECO_SETWORDLIST_FAILED","features":[633]},{"name":"AddStroke","features":[316,633]},{"name":"AddWordsToWordList","features":[633]},{"name":"AdviseInkChange","features":[305,633]},{"name":"AppearanceConstants","features":[633]},{"name":"AsyncStylusQueue","features":[633]},{"name":"AsyncStylusQueueImmediate","features":[633]},{"name":"BEST_COMPLETE","features":[633]},{"name":"BorderStyleConstants","features":[633]},{"name":"CAC_FULL","features":[633]},{"name":"CAC_PREFIX","features":[633]},{"name":"CAC_RANDOM","features":[633]},{"name":"CFL_INTERMEDIATE","features":[633]},{"name":"CFL_POOR","features":[633]},{"name":"CFL_STRONG","features":[633]},{"name":"CHARACTER_RANGE","features":[633]},{"name":"CONFIDENCE_LEVEL","features":[633]},{"name":"Closed","features":[633]},{"name":"CorrectionMode","features":[633]},{"name":"CorrectionMode_NotVisible","features":[633]},{"name":"CorrectionMode_PostInsertionCollapsed","features":[633]},{"name":"CorrectionMode_PostInsertionExpanded","features":[633]},{"name":"CorrectionMode_PreInsertion","features":[633]},{"name":"CorrectionPosition","features":[633]},{"name":"CorrectionPosition_Auto","features":[633]},{"name":"CorrectionPosition_Bottom","features":[633]},{"name":"CorrectionPosition_Top","features":[633]},{"name":"CreateContext","features":[633]},{"name":"CreateRecognizer","features":[633]},{"name":"DISPID_DAAntiAliased","features":[633]},{"name":"DISPID_DAClone","features":[633]},{"name":"DISPID_DAColor","features":[633]},{"name":"DISPID_DAExtendedProperties","features":[633]},{"name":"DISPID_DAFitToCurve","features":[633]},{"name":"DISPID_DAHeight","features":[633]},{"name":"DISPID_DAIgnorePressure","features":[633]},{"name":"DISPID_DAPenTip","features":[633]},{"name":"DISPID_DARasterOperation","features":[633]},{"name":"DISPID_DATransparency","features":[633]},{"name":"DISPID_DAWidth","features":[633]},{"name":"DISPID_DisableNoScroll","features":[633]},{"name":"DISPID_DragIcon","features":[633]},{"name":"DISPID_DrawAttr","features":[633]},{"name":"DISPID_Enabled","features":[633]},{"name":"DISPID_Factoid","features":[633]},{"name":"DISPID_GetGestStatus","features":[633]},{"name":"DISPID_Hwnd","features":[633]},{"name":"DISPID_IAddStrokesAtRectangle","features":[633]},{"name":"DISPID_ICAutoRedraw","features":[633]},{"name":"DISPID_ICBId","features":[633]},{"name":"DISPID_ICBName","features":[633]},{"name":"DISPID_ICBState","features":[633]},{"name":"DISPID_ICBsCount","features":[633]},{"name":"DISPID_ICBsItem","features":[633]},{"name":"DISPID_ICBs_NewEnum","features":[633]},{"name":"DISPID_ICCollectingInk","features":[633]},{"name":"DISPID_ICCollectionMode","features":[633]},{"name":"DISPID_ICCursors","features":[633]},{"name":"DISPID_ICDefaultDrawingAttributes","features":[633]},{"name":"DISPID_ICDesiredPacketDescription","features":[633]},{"name":"DISPID_ICDynamicRendering","features":[633]},{"name":"DISPID_ICECursorButtonDown","features":[633]},{"name":"DISPID_ICECursorButtonUp","features":[633]},{"name":"DISPID_ICECursorDown","features":[633]},{"name":"DISPID_ICECursorInRange","features":[633]},{"name":"DISPID_ICECursorOutOfRange","features":[633]},{"name":"DISPID_ICEGesture","features":[633]},{"name":"DISPID_ICENewInAirPackets","features":[633]},{"name":"DISPID_ICENewPackets","features":[633]},{"name":"DISPID_ICEStroke","features":[633]},{"name":"DISPID_ICESystemGesture","features":[633]},{"name":"DISPID_ICETabletAdded","features":[633]},{"name":"DISPID_ICETabletRemoved","features":[633]},{"name":"DISPID_ICEnabled","features":[633]},{"name":"DISPID_ICGetEventInterest","features":[633]},{"name":"DISPID_ICGetGestureStatus","features":[633]},{"name":"DISPID_ICGetWindowInputRectangle","features":[633]},{"name":"DISPID_ICHwnd","features":[633]},{"name":"DISPID_ICInk","features":[633]},{"name":"DISPID_ICMarginX","features":[633]},{"name":"DISPID_ICMarginY","features":[633]},{"name":"DISPID_ICMouseIcon","features":[633]},{"name":"DISPID_ICMousePointer","features":[633]},{"name":"DISPID_ICPaint","features":[633]},{"name":"DISPID_ICRenderer","features":[633]},{"name":"DISPID_ICSetAllTabletsMode","features":[633]},{"name":"DISPID_ICSetEventInterest","features":[633]},{"name":"DISPID_ICSetGestureStatus","features":[633]},{"name":"DISPID_ICSetSingleTabletIntegratedMode","features":[633]},{"name":"DISPID_ICSetWindowInputRectangle","features":[633]},{"name":"DISPID_ICSsAdd","features":[633]},{"name":"DISPID_ICSsClear","features":[633]},{"name":"DISPID_ICSsCount","features":[633]},{"name":"DISPID_ICSsItem","features":[633]},{"name":"DISPID_ICSsRemove","features":[633]},{"name":"DISPID_ICSs_NewEnum","features":[633]},{"name":"DISPID_ICSupportHighContrastInk","features":[633]},{"name":"DISPID_ICTablet","features":[633]},{"name":"DISPID_ICText","features":[633]},{"name":"DISPID_ICanPaste","features":[633]},{"name":"DISPID_IClip","features":[633]},{"name":"DISPID_IClipboardCopy","features":[633]},{"name":"DISPID_IClipboardCopyWithRectangle","features":[633]},{"name":"DISPID_IClipboardPaste","features":[633]},{"name":"DISPID_IClone","features":[633]},{"name":"DISPID_ICreateStroke","features":[633]},{"name":"DISPID_ICreateStrokeFromPoints","features":[633]},{"name":"DISPID_ICreateStrokes","features":[633]},{"name":"DISPID_ICsCount","features":[633]},{"name":"DISPID_ICsItem","features":[633]},{"name":"DISPID_ICs_NewEnum","features":[633]},{"name":"DISPID_ICsrButtons","features":[633]},{"name":"DISPID_ICsrDrawingAttributes","features":[633]},{"name":"DISPID_ICsrId","features":[633]},{"name":"DISPID_ICsrInverted","features":[633]},{"name":"DISPID_ICsrName","features":[633]},{"name":"DISPID_ICsrTablet","features":[633]},{"name":"DISPID_ICustomStrokes","features":[633]},{"name":"DISPID_IDeleteStroke","features":[633]},{"name":"DISPID_IDeleteStrokes","features":[633]},{"name":"DISPID_IDirty","features":[633]},{"name":"DISPID_IEInkAdded","features":[633]},{"name":"DISPID_IEInkDeleted","features":[633]},{"name":"DISPID_IEPData","features":[633]},{"name":"DISPID_IEPGuid","features":[633]},{"name":"DISPID_IEPsAdd","features":[633]},{"name":"DISPID_IEPsClear","features":[633]},{"name":"DISPID_IEPsCount","features":[633]},{"name":"DISPID_IEPsDoesPropertyExist","features":[633]},{"name":"DISPID_IEPsItem","features":[633]},{"name":"DISPID_IEPsRemove","features":[633]},{"name":"DISPID_IEPs_NewEnum","features":[633]},{"name":"DISPID_IExtendedProperties","features":[633]},{"name":"DISPID_IExtractStrokes","features":[633]},{"name":"DISPID_IExtractWithRectangle","features":[633]},{"name":"DISPID_IGConfidence","features":[633]},{"name":"DISPID_IGGetHotPoint","features":[633]},{"name":"DISPID_IGId","features":[633]},{"name":"DISPID_IGetBoundingBox","features":[633]},{"name":"DISPID_IHitTestCircle","features":[633]},{"name":"DISPID_IHitTestWithLasso","features":[633]},{"name":"DISPID_IHitTestWithRectangle","features":[633]},{"name":"DISPID_IInkDivider_Divide","features":[633]},{"name":"DISPID_IInkDivider_LineHeight","features":[633]},{"name":"DISPID_IInkDivider_RecognizerContext","features":[633]},{"name":"DISPID_IInkDivider_Strokes","features":[633]},{"name":"DISPID_IInkDivisionResult_ResultByType","features":[633]},{"name":"DISPID_IInkDivisionResult_Strokes","features":[633]},{"name":"DISPID_IInkDivisionUnit_DivisionType","features":[633]},{"name":"DISPID_IInkDivisionUnit_RecognizedString","features":[633]},{"name":"DISPID_IInkDivisionUnit_RotationTransform","features":[633]},{"name":"DISPID_IInkDivisionUnit_Strokes","features":[633]},{"name":"DISPID_IInkDivisionUnits_Count","features":[633]},{"name":"DISPID_IInkDivisionUnits_Item","features":[633]},{"name":"DISPID_IInkDivisionUnits_NewEnum","features":[633]},{"name":"DISPID_ILoad","features":[633]},{"name":"DISPID_INearestPoint","features":[633]},{"name":"DISPID_IOAttachMode","features":[633]},{"name":"DISPID_IODraw","features":[633]},{"name":"DISPID_IOEPainted","features":[633]},{"name":"DISPID_IOEPainting","features":[633]},{"name":"DISPID_IOESelectionChanged","features":[633]},{"name":"DISPID_IOESelectionChanging","features":[633]},{"name":"DISPID_IOESelectionMoved","features":[633]},{"name":"DISPID_IOESelectionMoving","features":[633]},{"name":"DISPID_IOESelectionResized","features":[633]},{"name":"DISPID_IOESelectionResizing","features":[633]},{"name":"DISPID_IOEStrokesDeleted","features":[633]},{"name":"DISPID_IOEStrokesDeleting","features":[633]},{"name":"DISPID_IOEditingMode","features":[633]},{"name":"DISPID_IOEraserMode","features":[633]},{"name":"DISPID_IOEraserWidth","features":[633]},{"name":"DISPID_IOHitTestSelection","features":[633]},{"name":"DISPID_IOSelection","features":[633]},{"name":"DISPID_IOSupportHighContrastSelectionUI","features":[633]},{"name":"DISPID_IPBackColor","features":[633]},{"name":"DISPID_IPEChangeUICues","features":[633]},{"name":"DISPID_IPEClick","features":[633]},{"name":"DISPID_IPEDblClick","features":[633]},{"name":"DISPID_IPEInvalidated","features":[633]},{"name":"DISPID_IPEKeyDown","features":[633]},{"name":"DISPID_IPEKeyPress","features":[633]},{"name":"DISPID_IPEKeyUp","features":[633]},{"name":"DISPID_IPEMouseDown","features":[633]},{"name":"DISPID_IPEMouseEnter","features":[633]},{"name":"DISPID_IPEMouseHover","features":[633]},{"name":"DISPID_IPEMouseLeave","features":[633]},{"name":"DISPID_IPEMouseMove","features":[633]},{"name":"DISPID_IPEMouseUp","features":[633]},{"name":"DISPID_IPEMouseWheel","features":[633]},{"name":"DISPID_IPEResize","features":[633]},{"name":"DISPID_IPESizeChanged","features":[633]},{"name":"DISPID_IPESizeModeChanged","features":[633]},{"name":"DISPID_IPEStyleChanged","features":[633]},{"name":"DISPID_IPESystemColorsChanged","features":[633]},{"name":"DISPID_IPInkEnabled","features":[633]},{"name":"DISPID_IPPicture","features":[633]},{"name":"DISPID_IPSizeMode","features":[633]},{"name":"DISPID_IRBottom","features":[633]},{"name":"DISPID_IRData","features":[633]},{"name":"DISPID_IRDraw","features":[633]},{"name":"DISPID_IRDrawStroke","features":[633]},{"name":"DISPID_IRERecognition","features":[633]},{"name":"DISPID_IRERecognitionWithAlternates","features":[633]},{"name":"DISPID_IRGColumns","features":[633]},{"name":"DISPID_IRGDrawnBox","features":[633]},{"name":"DISPID_IRGGuideData","features":[633]},{"name":"DISPID_IRGMidline","features":[633]},{"name":"DISPID_IRGRows","features":[633]},{"name":"DISPID_IRGWritingBox","features":[633]},{"name":"DISPID_IRGetObjectTransform","features":[633]},{"name":"DISPID_IRGetRectangle","features":[633]},{"name":"DISPID_IRGetViewTransform","features":[633]},{"name":"DISPID_IRInkSpaceToPixel","features":[633]},{"name":"DISPID_IRInkSpaceToPixelFromPoints","features":[633]},{"name":"DISPID_IRLeft","features":[633]},{"name":"DISPID_IRMeasure","features":[633]},{"name":"DISPID_IRMeasureStroke","features":[633]},{"name":"DISPID_IRMove","features":[633]},{"name":"DISPID_IRPixelToInkSpace","features":[633]},{"name":"DISPID_IRPixelToInkSpaceFromPoints","features":[633]},{"name":"DISPID_IRRight","features":[633]},{"name":"DISPID_IRRotate","features":[633]},{"name":"DISPID_IRScale","features":[633]},{"name":"DISPID_IRSetObjectTransform","features":[633]},{"name":"DISPID_IRSetRectangle","features":[633]},{"name":"DISPID_IRSetViewTransform","features":[633]},{"name":"DISPID_IRTop","features":[633]},{"name":"DISPID_IRecoCtx2_EnabledUnicodeRanges","features":[633]},{"name":"DISPID_IRecoCtx_BackgroundRecognize","features":[633]},{"name":"DISPID_IRecoCtx_BackgroundRecognizeWithAlternates","features":[633]},{"name":"DISPID_IRecoCtx_CharacterAutoCompletionMode","features":[633]},{"name":"DISPID_IRecoCtx_Clone","features":[633]},{"name":"DISPID_IRecoCtx_EndInkInput","features":[633]},{"name":"DISPID_IRecoCtx_Factoid","features":[633]},{"name":"DISPID_IRecoCtx_Flags","features":[633]},{"name":"DISPID_IRecoCtx_Guide","features":[633]},{"name":"DISPID_IRecoCtx_IsStringSupported","features":[633]},{"name":"DISPID_IRecoCtx_PrefixText","features":[633]},{"name":"DISPID_IRecoCtx_Recognize","features":[633]},{"name":"DISPID_IRecoCtx_Recognizer","features":[633]},{"name":"DISPID_IRecoCtx_StopBackgroundRecognition","features":[633]},{"name":"DISPID_IRecoCtx_StopRecognition","features":[633]},{"name":"DISPID_IRecoCtx_Strokes","features":[633]},{"name":"DISPID_IRecoCtx_SuffixText","features":[633]},{"name":"DISPID_IRecoCtx_WordList","features":[633]},{"name":"DISPID_IRecosCount","features":[633]},{"name":"DISPID_IRecosGetDefaultRecognizer","features":[633]},{"name":"DISPID_IRecosItem","features":[633]},{"name":"DISPID_IRecos_NewEnum","features":[633]},{"name":"DISPID_ISDBezierCusps","features":[633]},{"name":"DISPID_ISDBezierPoints","features":[633]},{"name":"DISPID_ISDClip","features":[633]},{"name":"DISPID_ISDDeleted","features":[633]},{"name":"DISPID_ISDDrawingAttributes","features":[633]},{"name":"DISPID_ISDExtendedProperties","features":[633]},{"name":"DISPID_ISDFindIntersections","features":[633]},{"name":"DISPID_ISDGetBoundingBox","features":[633]},{"name":"DISPID_ISDGetFlattenedBezierPoints","features":[633]},{"name":"DISPID_ISDGetPacketData","features":[633]},{"name":"DISPID_ISDGetPacketDescriptionPropertyMetrics","features":[633]},{"name":"DISPID_ISDGetPacketValuesByProperty","features":[633]},{"name":"DISPID_ISDGetPoints","features":[633]},{"name":"DISPID_ISDGetRectangleIntersections","features":[633]},{"name":"DISPID_ISDHitTestCircle","features":[633]},{"name":"DISPID_ISDID","features":[633]},{"name":"DISPID_ISDInk","features":[633]},{"name":"DISPID_ISDInkIndex","features":[633]},{"name":"DISPID_ISDMove","features":[633]},{"name":"DISPID_ISDNearestPoint","features":[633]},{"name":"DISPID_ISDPacketCount","features":[633]},{"name":"DISPID_ISDPacketDescription","features":[633]},{"name":"DISPID_ISDPacketSize","features":[633]},{"name":"DISPID_ISDPolylineCusps","features":[633]},{"name":"DISPID_ISDRotate","features":[633]},{"name":"DISPID_ISDScale","features":[633]},{"name":"DISPID_ISDScaleToRectangle","features":[633]},{"name":"DISPID_ISDSelfIntersections","features":[633]},{"name":"DISPID_ISDSetPacketValuesByProperty","features":[633]},{"name":"DISPID_ISDSetPoints","features":[633]},{"name":"DISPID_ISDShear","features":[633]},{"name":"DISPID_ISDSplit","features":[633]},{"name":"DISPID_ISDTransform","features":[633]},{"name":"DISPID_ISave","features":[633]},{"name":"DISPID_ISsAdd","features":[633]},{"name":"DISPID_ISsAddStrokes","features":[633]},{"name":"DISPID_ISsClip","features":[633]},{"name":"DISPID_ISsCount","features":[633]},{"name":"DISPID_ISsGetBoundingBox","features":[633]},{"name":"DISPID_ISsInk","features":[633]},{"name":"DISPID_ISsItem","features":[633]},{"name":"DISPID_ISsModifyDrawingAttributes","features":[633]},{"name":"DISPID_ISsMove","features":[633]},{"name":"DISPID_ISsRecognitionResult","features":[633]},{"name":"DISPID_ISsRemove","features":[633]},{"name":"DISPID_ISsRemoveRecognitionResult","features":[633]},{"name":"DISPID_ISsRemoveStrokes","features":[633]},{"name":"DISPID_ISsRotate","features":[633]},{"name":"DISPID_ISsScale","features":[633]},{"name":"DISPID_ISsScaleToRectangle","features":[633]},{"name":"DISPID_ISsShear","features":[633]},{"name":"DISPID_ISsToString","features":[633]},{"name":"DISPID_ISsTransform","features":[633]},{"name":"DISPID_ISsValid","features":[633]},{"name":"DISPID_ISs_NewEnum","features":[633]},{"name":"DISPID_IStrokes","features":[633]},{"name":"DISPID_IT2DeviceKind","features":[633]},{"name":"DISPID_IT3IsMultiTouch","features":[633]},{"name":"DISPID_IT3MaximumCursors","features":[633]},{"name":"DISPID_ITData","features":[633]},{"name":"DISPID_ITGetTransform","features":[633]},{"name":"DISPID_ITHardwareCapabilities","features":[633]},{"name":"DISPID_ITIsPacketPropertySupported","features":[633]},{"name":"DISPID_ITMaximumInputRectangle","features":[633]},{"name":"DISPID_ITName","features":[633]},{"name":"DISPID_ITPlugAndPlayId","features":[633]},{"name":"DISPID_ITPropertyMetrics","features":[633]},{"name":"DISPID_ITReflect","features":[633]},{"name":"DISPID_ITReset","features":[633]},{"name":"DISPID_ITRotate","features":[633]},{"name":"DISPID_ITScale","features":[633]},{"name":"DISPID_ITSetTransform","features":[633]},{"name":"DISPID_ITShear","features":[633]},{"name":"DISPID_ITTranslate","features":[633]},{"name":"DISPID_ITeDx","features":[633]},{"name":"DISPID_ITeDy","features":[633]},{"name":"DISPID_ITeM11","features":[633]},{"name":"DISPID_ITeM12","features":[633]},{"name":"DISPID_ITeM21","features":[633]},{"name":"DISPID_ITeM22","features":[633]},{"name":"DISPID_ITsCount","features":[633]},{"name":"DISPID_ITsDefaultTablet","features":[633]},{"name":"DISPID_ITsIsPacketPropertySupported","features":[633]},{"name":"DISPID_ITsItem","features":[633]},{"name":"DISPID_ITs_NewEnum","features":[633]},{"name":"DISPID_IeeChange","features":[633]},{"name":"DISPID_IeeClick","features":[633]},{"name":"DISPID_IeeCursorDown","features":[633]},{"name":"DISPID_IeeDblClick","features":[633]},{"name":"DISPID_IeeGesture","features":[633]},{"name":"DISPID_IeeKeyDown","features":[633]},{"name":"DISPID_IeeKeyPress","features":[633]},{"name":"DISPID_IeeKeyUp","features":[633]},{"name":"DISPID_IeeMouseDown","features":[633]},{"name":"DISPID_IeeMouseMove","features":[633]},{"name":"DISPID_IeeMouseUp","features":[633]},{"name":"DISPID_IeeRecognitionResult","features":[633]},{"name":"DISPID_IeeSelChange","features":[633]},{"name":"DISPID_IeeStroke","features":[633]},{"name":"DISPID_Ink","features":[633]},{"name":"DISPID_InkCollector","features":[633]},{"name":"DISPID_InkCollectorEvent","features":[633]},{"name":"DISPID_InkCursor","features":[633]},{"name":"DISPID_InkCursorButton","features":[633]},{"name":"DISPID_InkCursorButtons","features":[633]},{"name":"DISPID_InkCursors","features":[633]},{"name":"DISPID_InkCustomStrokes","features":[633]},{"name":"DISPID_InkDivider","features":[633]},{"name":"DISPID_InkDivisionResult","features":[633]},{"name":"DISPID_InkDivisionUnit","features":[633]},{"name":"DISPID_InkDivisionUnits","features":[633]},{"name":"DISPID_InkDrawingAttributes","features":[633]},{"name":"DISPID_InkEdit","features":[633]},{"name":"DISPID_InkEditEvents","features":[633]},{"name":"DISPID_InkEvent","features":[633]},{"name":"DISPID_InkExtendedProperties","features":[633]},{"name":"DISPID_InkExtendedProperty","features":[633]},{"name":"DISPID_InkGesture","features":[633]},{"name":"DISPID_InkInsertMode","features":[633]},{"name":"DISPID_InkMode","features":[633]},{"name":"DISPID_InkRecoAlternate","features":[633]},{"name":"DISPID_InkRecoAlternate_AlternatesWithConstantPropertyValues","features":[633]},{"name":"DISPID_InkRecoAlternate_Ascender","features":[633]},{"name":"DISPID_InkRecoAlternate_Baseline","features":[633]},{"name":"DISPID_InkRecoAlternate_Confidence","features":[633]},{"name":"DISPID_InkRecoAlternate_ConfidenceAlternates","features":[633]},{"name":"DISPID_InkRecoAlternate_Descender","features":[633]},{"name":"DISPID_InkRecoAlternate_GetPropertyValue","features":[633]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromStrokeRanges","features":[633]},{"name":"DISPID_InkRecoAlternate_GetStrokesFromTextRange","features":[633]},{"name":"DISPID_InkRecoAlternate_GetTextRangeFromStrokes","features":[633]},{"name":"DISPID_InkRecoAlternate_LineAlternates","features":[633]},{"name":"DISPID_InkRecoAlternate_LineNumber","features":[633]},{"name":"DISPID_InkRecoAlternate_Midline","features":[633]},{"name":"DISPID_InkRecoAlternate_String","features":[633]},{"name":"DISPID_InkRecoAlternate_Strokes","features":[633]},{"name":"DISPID_InkRecoContext","features":[633]},{"name":"DISPID_InkRecoContext2","features":[633]},{"name":"DISPID_InkRecognitionAlternates","features":[633]},{"name":"DISPID_InkRecognitionAlternates_Count","features":[633]},{"name":"DISPID_InkRecognitionAlternates_Item","features":[633]},{"name":"DISPID_InkRecognitionAlternates_NewEnum","features":[633]},{"name":"DISPID_InkRecognitionAlternates_Strokes","features":[633]},{"name":"DISPID_InkRecognitionEvent","features":[633]},{"name":"DISPID_InkRecognitionResult","features":[633]},{"name":"DISPID_InkRecognitionResult_AlternatesFromSelection","features":[633]},{"name":"DISPID_InkRecognitionResult_ModifyTopAlternate","features":[633]},{"name":"DISPID_InkRecognitionResult_SetResultOnStrokes","features":[633]},{"name":"DISPID_InkRecognitionResult_Strokes","features":[633]},{"name":"DISPID_InkRecognitionResult_TopAlternate","features":[633]},{"name":"DISPID_InkRecognitionResult_TopConfidence","features":[633]},{"name":"DISPID_InkRecognitionResult_TopString","features":[633]},{"name":"DISPID_InkRecognizer","features":[633]},{"name":"DISPID_InkRecognizer2","features":[633]},{"name":"DISPID_InkRecognizerGuide","features":[633]},{"name":"DISPID_InkRecognizers","features":[633]},{"name":"DISPID_InkRectangle","features":[633]},{"name":"DISPID_InkRenderer","features":[633]},{"name":"DISPID_InkStrokeDisp","features":[633]},{"name":"DISPID_InkStrokes","features":[633]},{"name":"DISPID_InkTablet","features":[633]},{"name":"DISPID_InkTablet2","features":[633]},{"name":"DISPID_InkTablet3","features":[633]},{"name":"DISPID_InkTablets","features":[633]},{"name":"DISPID_InkTransform","features":[633]},{"name":"DISPID_InkWordList","features":[633]},{"name":"DISPID_InkWordList2","features":[633]},{"name":"DISPID_InkWordList2_AddWords","features":[633]},{"name":"DISPID_InkWordList_AddWord","features":[633]},{"name":"DISPID_InkWordList_Merge","features":[633]},{"name":"DISPID_InkWordList_RemoveWord","features":[633]},{"name":"DISPID_Locked","features":[633]},{"name":"DISPID_MICClear","features":[633]},{"name":"DISPID_MICClose","features":[633]},{"name":"DISPID_MICInsert","features":[633]},{"name":"DISPID_MICPaint","features":[633]},{"name":"DISPID_MathInputControlEvents","features":[633]},{"name":"DISPID_MaxLength","features":[633]},{"name":"DISPID_MultiLine","features":[633]},{"name":"DISPID_PIPAttachedEditWindow","features":[633]},{"name":"DISPID_PIPAutoShow","features":[633]},{"name":"DISPID_PIPBusy","features":[633]},{"name":"DISPID_PIPCommitPendingInput","features":[633]},{"name":"DISPID_PIPCurrentPanel","features":[633]},{"name":"DISPID_PIPDefaultPanel","features":[633]},{"name":"DISPID_PIPEInputFailed","features":[633]},{"name":"DISPID_PIPEPanelChanged","features":[633]},{"name":"DISPID_PIPEPanelMoving","features":[633]},{"name":"DISPID_PIPEVisibleChanged","features":[633]},{"name":"DISPID_PIPEnableTsf","features":[633]},{"name":"DISPID_PIPFactoid","features":[633]},{"name":"DISPID_PIPHeight","features":[633]},{"name":"DISPID_PIPHorizontalOffset","features":[633]},{"name":"DISPID_PIPLeft","features":[633]},{"name":"DISPID_PIPMoveTo","features":[633]},{"name":"DISPID_PIPRefresh","features":[633]},{"name":"DISPID_PIPTop","features":[633]},{"name":"DISPID_PIPVerticalOffset","features":[633]},{"name":"DISPID_PIPVisible","features":[633]},{"name":"DISPID_PIPWidth","features":[633]},{"name":"DISPID_PenInputPanel","features":[633]},{"name":"DISPID_PenInputPanelEvents","features":[633]},{"name":"DISPID_RTSelLength","features":[633]},{"name":"DISPID_RTSelStart","features":[633]},{"name":"DISPID_RTSelText","features":[633]},{"name":"DISPID_RecoCapabilities","features":[633]},{"name":"DISPID_RecoClsid","features":[633]},{"name":"DISPID_RecoCreateRecognizerContext","features":[633]},{"name":"DISPID_RecoId","features":[633]},{"name":"DISPID_RecoLanguageID","features":[633]},{"name":"DISPID_RecoName","features":[633]},{"name":"DISPID_RecoPreferredPacketDescription","features":[633]},{"name":"DISPID_RecoSupportedProperties","features":[633]},{"name":"DISPID_RecoTimeout","features":[633]},{"name":"DISPID_RecoUnicodeRanges","features":[633]},{"name":"DISPID_RecoVendor","features":[633]},{"name":"DISPID_Recognize","features":[633]},{"name":"DISPID_Recognizer","features":[633]},{"name":"DISPID_Refresh","features":[633]},{"name":"DISPID_SEStrokesAdded","features":[633]},{"name":"DISPID_SEStrokesRemoved","features":[633]},{"name":"DISPID_ScrollBars","features":[633]},{"name":"DISPID_SelAlignment","features":[633]},{"name":"DISPID_SelBold","features":[633]},{"name":"DISPID_SelCharOffset","features":[633]},{"name":"DISPID_SelColor","features":[633]},{"name":"DISPID_SelFontName","features":[633]},{"name":"DISPID_SelFontSize","features":[633]},{"name":"DISPID_SelInk","features":[633]},{"name":"DISPID_SelInksDisplayMode","features":[633]},{"name":"DISPID_SelItalic","features":[633]},{"name":"DISPID_SelRTF","features":[633]},{"name":"DISPID_SelUnderline","features":[633]},{"name":"DISPID_SetGestStatus","features":[633]},{"name":"DISPID_Status","features":[633]},{"name":"DISPID_StrokeEvent","features":[633]},{"name":"DISPID_Text","features":[633]},{"name":"DISPID_TextRTF","features":[633]},{"name":"DISPID_UseMouseForInput","features":[633]},{"name":"DYNAMIC_RENDERER_CACHED_DATA","features":[633]},{"name":"DestroyContext","features":[633]},{"name":"DestroyRecognizer","features":[633]},{"name":"DestroyWordList","features":[633]},{"name":"DockedBottom","features":[633]},{"name":"DockedTop","features":[633]},{"name":"DynamicRenderer","features":[633]},{"name":"EM_GETDRAWATTR","features":[633]},{"name":"EM_GETFACTOID","features":[633]},{"name":"EM_GETGESTURESTATUS","features":[633]},{"name":"EM_GETINKINSERTMODE","features":[633]},{"name":"EM_GETINKMODE","features":[633]},{"name":"EM_GETMOUSEICON","features":[633]},{"name":"EM_GETMOUSEPOINTER","features":[633]},{"name":"EM_GETRECOGNIZER","features":[633]},{"name":"EM_GETRECOTIMEOUT","features":[633]},{"name":"EM_GETSELINK","features":[633]},{"name":"EM_GETSELINKDISPLAYMODE","features":[633]},{"name":"EM_GETSTATUS","features":[633]},{"name":"EM_GETUSEMOUSEFORINPUT","features":[633]},{"name":"EM_RECOGNIZE","features":[633]},{"name":"EM_SETDRAWATTR","features":[633]},{"name":"EM_SETFACTOID","features":[633]},{"name":"EM_SETGESTURESTATUS","features":[633]},{"name":"EM_SETINKINSERTMODE","features":[633]},{"name":"EM_SETINKMODE","features":[633]},{"name":"EM_SETMOUSEICON","features":[633]},{"name":"EM_SETMOUSEPOINTER","features":[633]},{"name":"EM_SETRECOGNIZER","features":[633]},{"name":"EM_SETRECOTIMEOUT","features":[633]},{"name":"EM_SETSELINK","features":[633]},{"name":"EM_SETSELINKDISPLAYMODE","features":[633]},{"name":"EM_SETUSEMOUSEFORINPUT","features":[633]},{"name":"EndInkInput","features":[633]},{"name":"EventMask","features":[633]},{"name":"EventMask_All","features":[633]},{"name":"EventMask_CorrectionModeChanged","features":[633]},{"name":"EventMask_CorrectionModeChanging","features":[633]},{"name":"EventMask_InPlaceSizeChanged","features":[633]},{"name":"EventMask_InPlaceSizeChanging","features":[633]},{"name":"EventMask_InPlaceStateChanged","features":[633]},{"name":"EventMask_InPlaceStateChanging","features":[633]},{"name":"EventMask_InPlaceVisibilityChanged","features":[633]},{"name":"EventMask_InPlaceVisibilityChanging","features":[633]},{"name":"EventMask_InputAreaChanged","features":[633]},{"name":"EventMask_InputAreaChanging","features":[633]},{"name":"EventMask_TextInserted","features":[633]},{"name":"EventMask_TextInserting","features":[633]},{"name":"FACILITY_INK","features":[633]},{"name":"FACTOID_BOPOMOFO","features":[633]},{"name":"FACTOID_CHINESESIMPLECOMMON","features":[633]},{"name":"FACTOID_CHINESETRADITIONALCOMMON","features":[633]},{"name":"FACTOID_CURRENCY","features":[633]},{"name":"FACTOID_DATE","features":[633]},{"name":"FACTOID_DEFAULT","features":[633]},{"name":"FACTOID_DIGIT","features":[633]},{"name":"FACTOID_EMAIL","features":[633]},{"name":"FACTOID_FILENAME","features":[633]},{"name":"FACTOID_HANGULCOMMON","features":[633]},{"name":"FACTOID_HANGULRARE","features":[633]},{"name":"FACTOID_HIRAGANA","features":[633]},{"name":"FACTOID_JAMO","features":[633]},{"name":"FACTOID_JAPANESECOMMON","features":[633]},{"name":"FACTOID_KANJICOMMON","features":[633]},{"name":"FACTOID_KANJIRARE","features":[633]},{"name":"FACTOID_KATAKANA","features":[633]},{"name":"FACTOID_KOREANCOMMON","features":[633]},{"name":"FACTOID_LOWERCHAR","features":[633]},{"name":"FACTOID_NONE","features":[633]},{"name":"FACTOID_NUMBER","features":[633]},{"name":"FACTOID_NUMBERSIMPLE","features":[633]},{"name":"FACTOID_ONECHAR","features":[633]},{"name":"FACTOID_PERCENT","features":[633]},{"name":"FACTOID_POSTALCODE","features":[633]},{"name":"FACTOID_PUNCCHAR","features":[633]},{"name":"FACTOID_SYSTEMDICTIONARY","features":[633]},{"name":"FACTOID_TELEPHONE","features":[633]},{"name":"FACTOID_TIME","features":[633]},{"name":"FACTOID_UPPERCHAR","features":[633]},{"name":"FACTOID_WEB","features":[633]},{"name":"FACTOID_WORDLIST","features":[633]},{"name":"FLICKACTION_COMMANDCODE","features":[633]},{"name":"FLICKACTION_COMMANDCODE_APPCOMMAND","features":[633]},{"name":"FLICKACTION_COMMANDCODE_CUSTOMKEY","features":[633]},{"name":"FLICKACTION_COMMANDCODE_KEYMODIFIER","features":[633]},{"name":"FLICKACTION_COMMANDCODE_NULL","features":[633]},{"name":"FLICKACTION_COMMANDCODE_SCROLL","features":[633]},{"name":"FLICKDIRECTION","features":[633]},{"name":"FLICKDIRECTION_DOWN","features":[633]},{"name":"FLICKDIRECTION_DOWNLEFT","features":[633]},{"name":"FLICKDIRECTION_DOWNRIGHT","features":[633]},{"name":"FLICKDIRECTION_INVALID","features":[633]},{"name":"FLICKDIRECTION_LEFT","features":[633]},{"name":"FLICKDIRECTION_MIN","features":[633]},{"name":"FLICKDIRECTION_RIGHT","features":[633]},{"name":"FLICKDIRECTION_UP","features":[633]},{"name":"FLICKDIRECTION_UPLEFT","features":[633]},{"name":"FLICKDIRECTION_UPRIGHT","features":[633]},{"name":"FLICKMODE","features":[633]},{"name":"FLICKMODE_DEFAULT","features":[633]},{"name":"FLICKMODE_LEARNING","features":[633]},{"name":"FLICKMODE_MAX","features":[633]},{"name":"FLICKMODE_MIN","features":[633]},{"name":"FLICKMODE_OFF","features":[633]},{"name":"FLICKMODE_ON","features":[633]},{"name":"FLICK_DATA","features":[633]},{"name":"FLICK_POINT","features":[633]},{"name":"FLICK_WM_HANDLED_MASK","features":[633]},{"name":"Floating","features":[633]},{"name":"GESTURE_ARROW_DOWN","features":[633]},{"name":"GESTURE_ARROW_LEFT","features":[633]},{"name":"GESTURE_ARROW_RIGHT","features":[633]},{"name":"GESTURE_ARROW_UP","features":[633]},{"name":"GESTURE_ASTERISK","features":[633]},{"name":"GESTURE_BRACE_LEFT","features":[633]},{"name":"GESTURE_BRACE_OVER","features":[633]},{"name":"GESTURE_BRACE_RIGHT","features":[633]},{"name":"GESTURE_BRACE_UNDER","features":[633]},{"name":"GESTURE_BRACKET_LEFT","features":[633]},{"name":"GESTURE_BRACKET_OVER","features":[633]},{"name":"GESTURE_BRACKET_RIGHT","features":[633]},{"name":"GESTURE_BRACKET_UNDER","features":[633]},{"name":"GESTURE_BULLET","features":[633]},{"name":"GESTURE_BULLET_CROSS","features":[633]},{"name":"GESTURE_CHECK","features":[633]},{"name":"GESTURE_CHEVRON_DOWN","features":[633]},{"name":"GESTURE_CHEVRON_LEFT","features":[633]},{"name":"GESTURE_CHEVRON_RIGHT","features":[633]},{"name":"GESTURE_CHEVRON_UP","features":[633]},{"name":"GESTURE_CIRCLE","features":[633]},{"name":"GESTURE_CIRCLE_CIRCLE","features":[633]},{"name":"GESTURE_CIRCLE_CROSS","features":[633]},{"name":"GESTURE_CIRCLE_LINE_HORZ","features":[633]},{"name":"GESTURE_CIRCLE_LINE_VERT","features":[633]},{"name":"GESTURE_CIRCLE_TAP","features":[633]},{"name":"GESTURE_CLOSEUP","features":[633]},{"name":"GESTURE_CROSS","features":[633]},{"name":"GESTURE_CURLICUE","features":[633]},{"name":"GESTURE_DATA","features":[633]},{"name":"GESTURE_DIAGONAL_LEFTDOWN","features":[633]},{"name":"GESTURE_DIAGONAL_LEFTUP","features":[633]},{"name":"GESTURE_DIAGONAL_RIGHTDOWN","features":[633]},{"name":"GESTURE_DIAGONAL_RIGHTUP","features":[633]},{"name":"GESTURE_DIGIT_0","features":[633]},{"name":"GESTURE_DIGIT_1","features":[633]},{"name":"GESTURE_DIGIT_2","features":[633]},{"name":"GESTURE_DIGIT_3","features":[633]},{"name":"GESTURE_DIGIT_4","features":[633]},{"name":"GESTURE_DIGIT_5","features":[633]},{"name":"GESTURE_DIGIT_6","features":[633]},{"name":"GESTURE_DIGIT_7","features":[633]},{"name":"GESTURE_DIGIT_8","features":[633]},{"name":"GESTURE_DIGIT_9","features":[633]},{"name":"GESTURE_DOLLAR","features":[633]},{"name":"GESTURE_DOUBLE_ARROW_DOWN","features":[633]},{"name":"GESTURE_DOUBLE_ARROW_LEFT","features":[633]},{"name":"GESTURE_DOUBLE_ARROW_RIGHT","features":[633]},{"name":"GESTURE_DOUBLE_ARROW_UP","features":[633]},{"name":"GESTURE_DOUBLE_CIRCLE","features":[633]},{"name":"GESTURE_DOUBLE_CURLICUE","features":[633]},{"name":"GESTURE_DOUBLE_DOWN","features":[633]},{"name":"GESTURE_DOUBLE_LEFT","features":[633]},{"name":"GESTURE_DOUBLE_RIGHT","features":[633]},{"name":"GESTURE_DOUBLE_TAP","features":[633]},{"name":"GESTURE_DOUBLE_UP","features":[633]},{"name":"GESTURE_DOWN","features":[633]},{"name":"GESTURE_DOWN_ARROW_LEFT","features":[633]},{"name":"GESTURE_DOWN_ARROW_RIGHT","features":[633]},{"name":"GESTURE_DOWN_LEFT","features":[633]},{"name":"GESTURE_DOWN_LEFT_LONG","features":[633]},{"name":"GESTURE_DOWN_RIGHT","features":[633]},{"name":"GESTURE_DOWN_RIGHT_LONG","features":[633]},{"name":"GESTURE_DOWN_UP","features":[633]},{"name":"GESTURE_EXCLAMATION","features":[633]},{"name":"GESTURE_INFINITY","features":[633]},{"name":"GESTURE_LEFT","features":[633]},{"name":"GESTURE_LEFT_ARROW_DOWN","features":[633]},{"name":"GESTURE_LEFT_ARROW_UP","features":[633]},{"name":"GESTURE_LEFT_DOWN","features":[633]},{"name":"GESTURE_LEFT_RIGHT","features":[633]},{"name":"GESTURE_LEFT_UP","features":[633]},{"name":"GESTURE_LETTER_A","features":[633]},{"name":"GESTURE_LETTER_B","features":[633]},{"name":"GESTURE_LETTER_C","features":[633]},{"name":"GESTURE_LETTER_D","features":[633]},{"name":"GESTURE_LETTER_E","features":[633]},{"name":"GESTURE_LETTER_F","features":[633]},{"name":"GESTURE_LETTER_G","features":[633]},{"name":"GESTURE_LETTER_H","features":[633]},{"name":"GESTURE_LETTER_I","features":[633]},{"name":"GESTURE_LETTER_J","features":[633]},{"name":"GESTURE_LETTER_K","features":[633]},{"name":"GESTURE_LETTER_L","features":[633]},{"name":"GESTURE_LETTER_M","features":[633]},{"name":"GESTURE_LETTER_N","features":[633]},{"name":"GESTURE_LETTER_O","features":[633]},{"name":"GESTURE_LETTER_P","features":[633]},{"name":"GESTURE_LETTER_Q","features":[633]},{"name":"GESTURE_LETTER_R","features":[633]},{"name":"GESTURE_LETTER_S","features":[633]},{"name":"GESTURE_LETTER_T","features":[633]},{"name":"GESTURE_LETTER_U","features":[633]},{"name":"GESTURE_LETTER_V","features":[633]},{"name":"GESTURE_LETTER_W","features":[633]},{"name":"GESTURE_LETTER_X","features":[633]},{"name":"GESTURE_LETTER_Y","features":[633]},{"name":"GESTURE_LETTER_Z","features":[633]},{"name":"GESTURE_NULL","features":[633]},{"name":"GESTURE_OPENUP","features":[633]},{"name":"GESTURE_PARAGRAPH","features":[633]},{"name":"GESTURE_PLUS","features":[633]},{"name":"GESTURE_QUAD_TAP","features":[633]},{"name":"GESTURE_QUESTION","features":[633]},{"name":"GESTURE_RECTANGLE","features":[633]},{"name":"GESTURE_RIGHT","features":[633]},{"name":"GESTURE_RIGHT_ARROW_DOWN","features":[633]},{"name":"GESTURE_RIGHT_ARROW_UP","features":[633]},{"name":"GESTURE_RIGHT_DOWN","features":[633]},{"name":"GESTURE_RIGHT_LEFT","features":[633]},{"name":"GESTURE_RIGHT_UP","features":[633]},{"name":"GESTURE_SCRATCHOUT","features":[633]},{"name":"GESTURE_SECTION","features":[633]},{"name":"GESTURE_SEMICIRCLE_LEFT","features":[633]},{"name":"GESTURE_SEMICIRCLE_RIGHT","features":[633]},{"name":"GESTURE_SHARP","features":[633]},{"name":"GESTURE_SQUARE","features":[633]},{"name":"GESTURE_SQUIGGLE","features":[633]},{"name":"GESTURE_STAR","features":[633]},{"name":"GESTURE_SWAP","features":[633]},{"name":"GESTURE_TAP","features":[633]},{"name":"GESTURE_TRIANGLE","features":[633]},{"name":"GESTURE_TRIPLE_DOWN","features":[633]},{"name":"GESTURE_TRIPLE_LEFT","features":[633]},{"name":"GESTURE_TRIPLE_RIGHT","features":[633]},{"name":"GESTURE_TRIPLE_TAP","features":[633]},{"name":"GESTURE_TRIPLE_UP","features":[633]},{"name":"GESTURE_UP","features":[633]},{"name":"GESTURE_UP_ARROW_LEFT","features":[633]},{"name":"GESTURE_UP_ARROW_RIGHT","features":[633]},{"name":"GESTURE_UP_DOWN","features":[633]},{"name":"GESTURE_UP_LEFT","features":[633]},{"name":"GESTURE_UP_LEFT_LONG","features":[633]},{"name":"GESTURE_UP_RIGHT","features":[633]},{"name":"GESTURE_UP_RIGHT_LONG","features":[633]},{"name":"GET_DANDIDATE_FLAGS","features":[633]},{"name":"GUID_DYNAMIC_RENDERER_CACHED_DATA","features":[633]},{"name":"GUID_GESTURE_DATA","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_ALTITUDE_ORIENTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_AZIMUTH_ORIENTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_BUTTON_PRESSURE","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_DEVICE_CONTACT_ID","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_FINGERCONTACTCONFIDENCE","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_HEIGHT","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_NORMAL_PRESSURE","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_PACKET_STATUS","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_PITCH_ROTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_ROLL_ROTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_SERIAL_NUMBER","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_TANGENT_PRESSURE","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_TIMER_TICK","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_TWIST_ORIENTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_WIDTH","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_X","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_X_TILT_ORIENTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_Y","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_YAW_ROTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_Y_TILT_ORIENTATION","features":[633]},{"name":"GUID_PACKETPROPERTY_GUID_Z","features":[633]},{"name":"GestureRecognizer","features":[633]},{"name":"GetAllRecognizers","features":[633]},{"name":"GetBestResultString","features":[633]},{"name":"GetLatticePtr","features":[633]},{"name":"GetLeftSeparator","features":[633]},{"name":"GetRecoAttributes","features":[633]},{"name":"GetResultPropertyList","features":[633]},{"name":"GetRightSeparator","features":[633]},{"name":"GetUnicodeRanges","features":[633]},{"name":"HRECOALT","features":[633]},{"name":"HRECOCONTEXT","features":[633]},{"name":"HRECOGNIZER","features":[633]},{"name":"HRECOLATTICE","features":[633]},{"name":"HRECOWORDLIST","features":[633]},{"name":"HandwrittenTextInsertion","features":[633]},{"name":"IAG_AllGestures","features":[633]},{"name":"IAG_ArrowDown","features":[633]},{"name":"IAG_ArrowLeft","features":[633]},{"name":"IAG_ArrowRight","features":[633]},{"name":"IAG_ArrowUp","features":[633]},{"name":"IAG_Check","features":[633]},{"name":"IAG_ChevronDown","features":[633]},{"name":"IAG_ChevronLeft","features":[633]},{"name":"IAG_ChevronRight","features":[633]},{"name":"IAG_ChevronUp","features":[633]},{"name":"IAG_Circle","features":[633]},{"name":"IAG_Curlicue","features":[633]},{"name":"IAG_DoubleCircle","features":[633]},{"name":"IAG_DoubleCurlicue","features":[633]},{"name":"IAG_DoubleTap","features":[633]},{"name":"IAG_Down","features":[633]},{"name":"IAG_DownLeft","features":[633]},{"name":"IAG_DownLeftLong","features":[633]},{"name":"IAG_DownRight","features":[633]},{"name":"IAG_DownRightLong","features":[633]},{"name":"IAG_DownUp","features":[633]},{"name":"IAG_Exclamation","features":[633]},{"name":"IAG_Left","features":[633]},{"name":"IAG_LeftDown","features":[633]},{"name":"IAG_LeftRight","features":[633]},{"name":"IAG_LeftUp","features":[633]},{"name":"IAG_NoGesture","features":[633]},{"name":"IAG_Right","features":[633]},{"name":"IAG_RightDown","features":[633]},{"name":"IAG_RightLeft","features":[633]},{"name":"IAG_RightUp","features":[633]},{"name":"IAG_Scratchout","features":[633]},{"name":"IAG_SemiCircleLeft","features":[633]},{"name":"IAG_SemiCircleRight","features":[633]},{"name":"IAG_Square","features":[633]},{"name":"IAG_Star","features":[633]},{"name":"IAG_Tap","features":[633]},{"name":"IAG_Triangle","features":[633]},{"name":"IAG_Up","features":[633]},{"name":"IAG_UpDown","features":[633]},{"name":"IAG_UpLeft","features":[633]},{"name":"IAG_UpLeftLong","features":[633]},{"name":"IAG_UpRight","features":[633]},{"name":"IAG_UpRightLong","features":[633]},{"name":"IBBM_CurveFit","features":[633]},{"name":"IBBM_Default","features":[633]},{"name":"IBBM_NoCurveFit","features":[633]},{"name":"IBBM_PointsOnly","features":[633]},{"name":"IBBM_Union","features":[633]},{"name":"ICBS_Down","features":[633]},{"name":"ICBS_Unavailable","features":[633]},{"name":"ICBS_Up","features":[633]},{"name":"ICB_Copy","features":[633]},{"name":"ICB_Cut","features":[633]},{"name":"ICB_Default","features":[633]},{"name":"ICB_DelayedCopy","features":[633]},{"name":"ICB_ExtractOnly","features":[633]},{"name":"ICEI_AllEvents","features":[633]},{"name":"ICEI_CursorButtonDown","features":[633]},{"name":"ICEI_CursorButtonUp","features":[633]},{"name":"ICEI_CursorDown","features":[633]},{"name":"ICEI_CursorInRange","features":[633]},{"name":"ICEI_CursorOutOfRange","features":[633]},{"name":"ICEI_DblClick","features":[633]},{"name":"ICEI_DefaultEvents","features":[633]},{"name":"ICEI_MouseDown","features":[633]},{"name":"ICEI_MouseMove","features":[633]},{"name":"ICEI_MouseUp","features":[633]},{"name":"ICEI_MouseWheel","features":[633]},{"name":"ICEI_NewInAirPackets","features":[633]},{"name":"ICEI_NewPackets","features":[633]},{"name":"ICEI_Stroke","features":[633]},{"name":"ICEI_SystemGesture","features":[633]},{"name":"ICEI_TabletAdded","features":[633]},{"name":"ICEI_TabletRemoved","features":[633]},{"name":"ICF_Bitmap","features":[633]},{"name":"ICF_CopyMask","features":[633]},{"name":"ICF_Default","features":[633]},{"name":"ICF_EnhancedMetafile","features":[633]},{"name":"ICF_InkSerializedFormat","features":[633]},{"name":"ICF_Metafile","features":[633]},{"name":"ICF_None","features":[633]},{"name":"ICF_PasteMask","features":[633]},{"name":"ICF_SketchInk","features":[633]},{"name":"ICF_TextInk","features":[633]},{"name":"ICM_GestureOnly","features":[633]},{"name":"ICM_InkAndGesture","features":[633]},{"name":"ICM_InkOnly","features":[633]},{"name":"IDM_Ink","features":[633]},{"name":"IDM_Text","features":[633]},{"name":"IDT_Drawing","features":[633]},{"name":"IDT_Line","features":[633]},{"name":"IDT_Paragraph","features":[633]},{"name":"IDT_Segment","features":[633]},{"name":"IDynamicRenderer","features":[633]},{"name":"IECN_GESTURE","features":[633]},{"name":"IECN_RECOGNITIONRESULT","features":[633]},{"name":"IECN_STROKE","features":[633]},{"name":"IECN__BASE","features":[633]},{"name":"IEC_GESTUREINFO","features":[305,356,355,633]},{"name":"IEC_RECOGNITIONRESULTINFO","features":[305,356,355,633]},{"name":"IEC_STROKEINFO","features":[305,356,355,633]},{"name":"IEC__BASE","features":[633]},{"name":"IEF_CopyFromOriginal","features":[633]},{"name":"IEF_Default","features":[633]},{"name":"IEF_RemoveFromOriginal","features":[633]},{"name":"IEM_Disabled","features":[633]},{"name":"IEM_Ink","features":[633]},{"name":"IEM_InkAndGesture","features":[633]},{"name":"IEM_InsertInk","features":[633]},{"name":"IEM_InsertText","features":[633]},{"name":"IES_Collecting","features":[633]},{"name":"IES_Idle","features":[633]},{"name":"IES_Recognizing","features":[633]},{"name":"IGestureRecognizer","features":[633]},{"name":"IHandwrittenTextInsertion","features":[633]},{"name":"IInk","features":[356,633]},{"name":"IInkCollector","features":[356,633]},{"name":"IInkCursor","features":[356,633]},{"name":"IInkCursorButton","features":[356,633]},{"name":"IInkCursorButtons","features":[356,633]},{"name":"IInkCursors","features":[356,633]},{"name":"IInkCustomStrokes","features":[356,633]},{"name":"IInkDisp","features":[356,633]},{"name":"IInkDivider","features":[356,633]},{"name":"IInkDivisionResult","features":[356,633]},{"name":"IInkDivisionUnit","features":[356,633]},{"name":"IInkDivisionUnits","features":[356,633]},{"name":"IInkDrawingAttributes","features":[356,633]},{"name":"IInkEdit","features":[356,633]},{"name":"IInkExtendedProperties","features":[356,633]},{"name":"IInkExtendedProperty","features":[356,633]},{"name":"IInkGesture","features":[356,633]},{"name":"IInkLineInfo","features":[633]},{"name":"IInkOverlay","features":[356,633]},{"name":"IInkPicture","features":[356,633]},{"name":"IInkRecognitionAlternate","features":[356,633]},{"name":"IInkRecognitionAlternates","features":[356,633]},{"name":"IInkRecognitionResult","features":[356,633]},{"name":"IInkRecognizer","features":[356,633]},{"name":"IInkRecognizer2","features":[356,633]},{"name":"IInkRecognizerContext","features":[356,633]},{"name":"IInkRecognizerContext2","features":[356,633]},{"name":"IInkRecognizerGuide","features":[356,633]},{"name":"IInkRecognizers","features":[356,633]},{"name":"IInkRectangle","features":[356,633]},{"name":"IInkRenderer","features":[356,633]},{"name":"IInkStrokeDisp","features":[356,633]},{"name":"IInkStrokes","features":[356,633]},{"name":"IInkTablet","features":[356,633]},{"name":"IInkTablet2","features":[356,633]},{"name":"IInkTablet3","features":[356,633]},{"name":"IInkTablets","features":[356,633]},{"name":"IInkTransform","features":[356,633]},{"name":"IInkWordList","features":[356,633]},{"name":"IInkWordList2","features":[356,633]},{"name":"IInputPanelWindowHandle","features":[633]},{"name":"IKM_Alt","features":[633]},{"name":"IKM_Control","features":[633]},{"name":"IKM_Shift","features":[633]},{"name":"IMF_BOLD","features":[633]},{"name":"IMF_FONT_SELECTED_IN_HDC","features":[633]},{"name":"IMF_ITALIC","features":[633]},{"name":"IMF_Left","features":[633]},{"name":"IMF_Middle","features":[633]},{"name":"IMF_Right","features":[633]},{"name":"IMP_Arrow","features":[633]},{"name":"IMP_ArrowHourglass","features":[633]},{"name":"IMP_ArrowQuestion","features":[633]},{"name":"IMP_Crosshair","features":[633]},{"name":"IMP_Custom","features":[633]},{"name":"IMP_Default","features":[633]},{"name":"IMP_Hand","features":[633]},{"name":"IMP_Hourglass","features":[633]},{"name":"IMP_Ibeam","features":[633]},{"name":"IMP_NoDrop","features":[633]},{"name":"IMP_SizeAll","features":[633]},{"name":"IMP_SizeNESW","features":[633]},{"name":"IMP_SizeNS","features":[633]},{"name":"IMP_SizeNWSE","features":[633]},{"name":"IMP_SizeWE","features":[633]},{"name":"IMP_UpArrow","features":[633]},{"name":"IMathInputControl","features":[356,633]},{"name":"INKEDIT_CLASS","features":[633]},{"name":"INKEDIT_CLASSW","features":[633]},{"name":"INKMETRIC","features":[305,633]},{"name":"INKRECOGNITIONPROPERTY_BOXNUMBER","features":[633]},{"name":"INKRECOGNITIONPROPERTY_CONFIDENCELEVEL","features":[633]},{"name":"INKRECOGNITIONPROPERTY_HOTPOINT","features":[633]},{"name":"INKRECOGNITIONPROPERTY_LINEMETRICS","features":[633]},{"name":"INKRECOGNITIONPROPERTY_LINENUMBER","features":[633]},{"name":"INKRECOGNITIONPROPERTY_MAXIMUMSTROKECOUNT","features":[633]},{"name":"INKRECOGNITIONPROPERTY_POINTSPERINCH","features":[633]},{"name":"INKRECOGNITIONPROPERTY_SEGMENTATION","features":[633]},{"name":"INK_METRIC_FLAGS","features":[633]},{"name":"INK_SERIALIZED_FORMAT","features":[633]},{"name":"IOAM_Behind","features":[633]},{"name":"IOAM_InFront","features":[633]},{"name":"IOEM_Delete","features":[633]},{"name":"IOEM_Ink","features":[633]},{"name":"IOEM_Select","features":[633]},{"name":"IOERM_PointErase","features":[633]},{"name":"IOERM_StrokeErase","features":[633]},{"name":"IPCM_Default","features":[633]},{"name":"IPCM_MaximumCompression","features":[633]},{"name":"IPCM_NoCompression","features":[633]},{"name":"IPF_Base64GIF","features":[633]},{"name":"IPF_Base64InkSerializedFormat","features":[633]},{"name":"IPF_GIF","features":[633]},{"name":"IPF_InkSerializedFormat","features":[633]},{"name":"IPSM_AutoSize","features":[633]},{"name":"IPSM_CenterImage","features":[633]},{"name":"IPSM_Normal","features":[633]},{"name":"IPSM_StretchImage","features":[633]},{"name":"IPT_Ball","features":[633]},{"name":"IPT_Rectangle","features":[633]},{"name":"IP_CURSOR_DOWN","features":[633]},{"name":"IP_INVERTED","features":[633]},{"name":"IP_MARGIN","features":[633]},{"name":"IPenInputPanel","features":[356,633]},{"name":"IRAS_All","features":[633]},{"name":"IRAS_DefaultCount","features":[633]},{"name":"IRAS_Start","features":[633]},{"name":"IRCACM_Full","features":[633]},{"name":"IRCACM_Prefix","features":[633]},{"name":"IRCACM_Random","features":[633]},{"name":"IRC_AdviseInkChange","features":[633]},{"name":"IRC_Alpha","features":[633]},{"name":"IRC_ArbitraryAngle","features":[633]},{"name":"IRC_Beta","features":[633]},{"name":"IRC_BoxedInput","features":[633]},{"name":"IRC_CharacterAutoCompletionInput","features":[633]},{"name":"IRC_Cursive","features":[633]},{"name":"IRC_DontCare","features":[633]},{"name":"IRC_DownAndLeft","features":[633]},{"name":"IRC_DownAndRight","features":[633]},{"name":"IRC_FreeInput","features":[633]},{"name":"IRC_Intermediate","features":[633]},{"name":"IRC_Lattice","features":[633]},{"name":"IRC_LeftAndDown","features":[633]},{"name":"IRC_LinedInput","features":[633]},{"name":"IRC_Object","features":[633]},{"name":"IRC_Personalizable","features":[633]},{"name":"IRC_Poor","features":[633]},{"name":"IRC_PrefersArbitraryAngle","features":[633]},{"name":"IRC_PrefersParagraphBreaking","features":[633]},{"name":"IRC_PrefersSegmentation","features":[633]},{"name":"IRC_RightAndDown","features":[633]},{"name":"IRC_StrokeReorder","features":[633]},{"name":"IRC_Strong","features":[633]},{"name":"IRC_TextPrediction","features":[633]},{"name":"IRM_AutoSpace","features":[633]},{"name":"IRM_Coerce","features":[633]},{"name":"IRM_DisablePersonalization","features":[633]},{"name":"IRM_LineMode","features":[633]},{"name":"IRM_Max","features":[633]},{"name":"IRM_None","features":[633]},{"name":"IRM_PrefixOk","features":[633]},{"name":"IRM_TopInkBreaksOnly","features":[633]},{"name":"IRM_WordModeOnly","features":[633]},{"name":"IRO_Black","features":[633]},{"name":"IRO_CopyPen","features":[633]},{"name":"IRO_MaskNotPen","features":[633]},{"name":"IRO_MaskPen","features":[633]},{"name":"IRO_MaskPenNot","features":[633]},{"name":"IRO_MergeNotPen","features":[633]},{"name":"IRO_MergePen","features":[633]},{"name":"IRO_MergePenNot","features":[633]},{"name":"IRO_NoOperation","features":[633]},{"name":"IRO_Not","features":[633]},{"name":"IRO_NotCopyPen","features":[633]},{"name":"IRO_NotMaskPen","features":[633]},{"name":"IRO_NotMergePen","features":[633]},{"name":"IRO_NotXOrPen","features":[633]},{"name":"IRO_White","features":[633]},{"name":"IRO_XOrPen","features":[633]},{"name":"IRS_InkAddedFailed","features":[633]},{"name":"IRS_Interrupted","features":[633]},{"name":"IRS_NoError","features":[633]},{"name":"IRS_ProcessFailed","features":[633]},{"name":"IRS_SetAutoCompletionModeFailed","features":[633]},{"name":"IRS_SetFactoidFailed","features":[633]},{"name":"IRS_SetFlagsFailed","features":[633]},{"name":"IRS_SetGuideFailed","features":[633]},{"name":"IRS_SetPrefixSuffixFailed","features":[633]},{"name":"IRS_SetStrokesFailed","features":[633]},{"name":"IRS_SetWordListFailed","features":[633]},{"name":"IRealTimeStylus","features":[633]},{"name":"IRealTimeStylus2","features":[633]},{"name":"IRealTimeStylus3","features":[633]},{"name":"IRealTimeStylusSynchronization","features":[633]},{"name":"ISC_AllElements","features":[633]},{"name":"ISC_FirstElement","features":[633]},{"name":"ISG_DoubleTap","features":[633]},{"name":"ISG_Drag","features":[633]},{"name":"ISG_Flick","features":[633]},{"name":"ISG_HoldEnter","features":[633]},{"name":"ISG_HoldLeave","features":[633]},{"name":"ISG_HoverEnter","features":[633]},{"name":"ISG_HoverLeave","features":[633]},{"name":"ISG_RightDrag","features":[633]},{"name":"ISG_RightTap","features":[633]},{"name":"ISG_Tap","features":[633]},{"name":"ISketchInk","features":[356,633]},{"name":"IStrokeBuilder","features":[633]},{"name":"IStylusAsyncPlugin","features":[633]},{"name":"IStylusPlugin","features":[633]},{"name":"IStylusSyncPlugin","features":[633]},{"name":"ITextInputPanel","features":[633]},{"name":"ITextInputPanelEventSink","features":[633]},{"name":"ITextInputPanelRunInfo","features":[633]},{"name":"ITipAutoCompleteClient","features":[633]},{"name":"ITipAutoCompleteProvider","features":[633]},{"name":"InPlace","features":[633]},{"name":"InPlaceDirection","features":[633]},{"name":"InPlaceDirection_Auto","features":[633]},{"name":"InPlaceDirection_Bottom","features":[633]},{"name":"InPlaceDirection_Top","features":[633]},{"name":"InPlaceState","features":[633]},{"name":"InPlaceState_Auto","features":[633]},{"name":"InPlaceState_Expanded","features":[633]},{"name":"InPlaceState_HoverTarget","features":[633]},{"name":"Ink","features":[633]},{"name":"InkApplicationGesture","features":[633]},{"name":"InkBoundingBoxMode","features":[633]},{"name":"InkClipboardFormats","features":[633]},{"name":"InkClipboardModes","features":[633]},{"name":"InkCollectionMode","features":[633]},{"name":"InkCollector","features":[633]},{"name":"InkCollectorClipInkToMargin","features":[633]},{"name":"InkCollectorDefaultMargin","features":[633]},{"name":"InkCollectorEventInterest","features":[633]},{"name":"InkCursorButtonState","features":[633]},{"name":"InkDisp","features":[633]},{"name":"InkDisplayMode","features":[633]},{"name":"InkDivider","features":[633]},{"name":"InkDivisionType","features":[633]},{"name":"InkDrawingAttributes","features":[633]},{"name":"InkEdit","features":[633]},{"name":"InkEditStatus","features":[633]},{"name":"InkExtractFlags","features":[633]},{"name":"InkInsertMode","features":[633]},{"name":"InkMaxTransparencyValue","features":[633]},{"name":"InkMinTransparencyValue","features":[633]},{"name":"InkMode","features":[633]},{"name":"InkMouseButton","features":[633]},{"name":"InkMousePointer","features":[633]},{"name":"InkOverlay","features":[633]},{"name":"InkOverlayAttachMode","features":[633]},{"name":"InkOverlayEditingMode","features":[633]},{"name":"InkOverlayEraserMode","features":[633]},{"name":"InkPenTip","features":[633]},{"name":"InkPersistenceCompressionMode","features":[633]},{"name":"InkPersistenceFormat","features":[633]},{"name":"InkPicture","features":[633]},{"name":"InkPictureSizeMode","features":[633]},{"name":"InkRasterOperation","features":[633]},{"name":"InkRecoGuide","features":[305,633]},{"name":"InkRecognitionAlternatesSelection","features":[633]},{"name":"InkRecognitionConfidence","features":[633]},{"name":"InkRecognitionModes","features":[633]},{"name":"InkRecognitionStatus","features":[633]},{"name":"InkRecognizerCapabilities","features":[633]},{"name":"InkRecognizerCharacterAutoCompletionMode","features":[633]},{"name":"InkRecognizerContext","features":[633]},{"name":"InkRecognizerGuide","features":[633]},{"name":"InkRecognizers","features":[633]},{"name":"InkRectangle","features":[633]},{"name":"InkRenderer","features":[633]},{"name":"InkSelectionConstants","features":[633]},{"name":"InkShiftKeyModifierFlags","features":[633]},{"name":"InkStrokes","features":[633]},{"name":"InkSystemGesture","features":[633]},{"name":"InkTablets","features":[633]},{"name":"InkTransform","features":[633]},{"name":"InkWordList","features":[633]},{"name":"InteractionMode","features":[633]},{"name":"InteractionMode_DockedBottom","features":[633]},{"name":"InteractionMode_DockedTop","features":[633]},{"name":"InteractionMode_Floating","features":[633]},{"name":"InteractionMode_InPlace","features":[633]},{"name":"IsStringSupported","features":[633]},{"name":"KEYMODIFIER","features":[633]},{"name":"KEYMODIFIER_ALTGR","features":[633]},{"name":"KEYMODIFIER_CONTROL","features":[633]},{"name":"KEYMODIFIER_EXT","features":[633]},{"name":"KEYMODIFIER_MENU","features":[633]},{"name":"KEYMODIFIER_SHIFT","features":[633]},{"name":"KEYMODIFIER_WIN","features":[633]},{"name":"LATTICE_METRICS","features":[305,633]},{"name":"LEFT_BUTTON","features":[633]},{"name":"LINE_METRICS","features":[633]},{"name":"LINE_SEGMENT","features":[305,633]},{"name":"LM_ASCENDER","features":[633]},{"name":"LM_BASELINE","features":[633]},{"name":"LM_DESCENDER","features":[633]},{"name":"LM_MIDLINE","features":[633]},{"name":"LoadCachedAttributes","features":[633]},{"name":"MAX_FRIENDLYNAME","features":[633]},{"name":"MAX_LANGUAGES","features":[633]},{"name":"MAX_PACKET_BUTTON_COUNT","features":[633]},{"name":"MAX_PACKET_PROPERTY_COUNT","features":[633]},{"name":"MAX_VENDORNAME","features":[633]},{"name":"MICROSOFT_PENINPUT_PANEL_PROPERTY_T","features":[633]},{"name":"MICROSOFT_TIP_COMBOBOXLIST_PROPERTY","features":[633]},{"name":"MICROSOFT_TIP_NO_INSERT_BUTTON_PROPERTY","features":[633]},{"name":"MICROSOFT_TIP_OPENING_MSG","features":[633]},{"name":"MICROSOFT_URL_EXPERIENCE_PROPERTY","features":[633]},{"name":"MICUIELEMENT","features":[633]},{"name":"MICUIELEMENTSTATE","features":[633]},{"name":"MICUIELEMENTSTATE_DISABLED","features":[633]},{"name":"MICUIELEMENTSTATE_HOT","features":[633]},{"name":"MICUIELEMENTSTATE_NORMAL","features":[633]},{"name":"MICUIELEMENTSTATE_PRESSED","features":[633]},{"name":"MICUIELEMENT_BUTTON_CANCEL","features":[633]},{"name":"MICUIELEMENT_BUTTON_CLEAR","features":[633]},{"name":"MICUIELEMENT_BUTTON_CORRECT","features":[633]},{"name":"MICUIELEMENT_BUTTON_ERASE","features":[633]},{"name":"MICUIELEMENT_BUTTON_INSERT","features":[633]},{"name":"MICUIELEMENT_BUTTON_REDO","features":[633]},{"name":"MICUIELEMENT_BUTTON_UNDO","features":[633]},{"name":"MICUIELEMENT_BUTTON_WRITE","features":[633]},{"name":"MICUIELEMENT_INKPANEL_BACKGROUND","features":[633]},{"name":"MICUIELEMENT_RESULTPANEL_BACKGROUND","features":[633]},{"name":"MIDDLE_BUTTON","features":[633]},{"name":"MakeWordList","features":[633]},{"name":"MathInputControl","features":[633]},{"name":"MouseButton","features":[633]},{"name":"NO_BUTTON","features":[633]},{"name":"NUM_FLICK_DIRECTIONS","features":[633]},{"name":"PACKET_DESCRIPTION","features":[633]},{"name":"PACKET_PROPERTY","features":[633]},{"name":"PROPERTY_METRICS","features":[633]},{"name":"PROPERTY_UNITS","features":[633]},{"name":"PROPERTY_UNITS_AMPERE","features":[633]},{"name":"PROPERTY_UNITS_CANDELA","features":[633]},{"name":"PROPERTY_UNITS_CENTIMETERS","features":[633]},{"name":"PROPERTY_UNITS_DEFAULT","features":[633]},{"name":"PROPERTY_UNITS_DEGREES","features":[633]},{"name":"PROPERTY_UNITS_ENGLINEAR","features":[633]},{"name":"PROPERTY_UNITS_ENGROTATION","features":[633]},{"name":"PROPERTY_UNITS_FAHRENHEIT","features":[633]},{"name":"PROPERTY_UNITS_GRAMS","features":[633]},{"name":"PROPERTY_UNITS_INCHES","features":[633]},{"name":"PROPERTY_UNITS_KELVIN","features":[633]},{"name":"PROPERTY_UNITS_POUNDS","features":[633]},{"name":"PROPERTY_UNITS_RADIANS","features":[633]},{"name":"PROPERTY_UNITS_SECONDS","features":[633]},{"name":"PROPERTY_UNITS_SILINEAR","features":[633]},{"name":"PROPERTY_UNITS_SIROTATION","features":[633]},{"name":"PROPERTY_UNITS_SLUGS","features":[633]},{"name":"PT_Default","features":[633]},{"name":"PT_Handwriting","features":[633]},{"name":"PT_Inactive","features":[633]},{"name":"PT_Keyboard","features":[633]},{"name":"PanelInputArea","features":[633]},{"name":"PanelInputArea_Auto","features":[633]},{"name":"PanelInputArea_CharacterPad","features":[633]},{"name":"PanelInputArea_Keyboard","features":[633]},{"name":"PanelInputArea_WritingPad","features":[633]},{"name":"PanelType","features":[633]},{"name":"PenInputPanel","features":[633]},{"name":"PenInputPanel_Internal","features":[633]},{"name":"PfnRecoCallback","features":[633]},{"name":"Process","features":[305,633]},{"name":"RECOCONF_HIGHCONFIDENCE","features":[633]},{"name":"RECOCONF_LOWCONFIDENCE","features":[633]},{"name":"RECOCONF_MEDIUMCONFIDENCE","features":[633]},{"name":"RECOCONF_NOTSET","features":[633]},{"name":"RECOFLAG_AUTOSPACE","features":[633]},{"name":"RECOFLAG_COERCE","features":[633]},{"name":"RECOFLAG_DISABLEPERSONALIZATION","features":[633]},{"name":"RECOFLAG_LINEMODE","features":[633]},{"name":"RECOFLAG_PREFIXOK","features":[633]},{"name":"RECOFLAG_SINGLESEG","features":[633]},{"name":"RECOFLAG_WORDMODE","features":[633]},{"name":"RECO_ATTRS","features":[633]},{"name":"RECO_GUIDE","features":[633]},{"name":"RECO_LATTICE","features":[633]},{"name":"RECO_LATTICE_COLUMN","features":[633]},{"name":"RECO_LATTICE_ELEMENT","features":[633]},{"name":"RECO_LATTICE_PROPERTIES","features":[633]},{"name":"RECO_LATTICE_PROPERTY","features":[633]},{"name":"RECO_RANGE","features":[633]},{"name":"RECO_TYPE","features":[633]},{"name":"RECO_TYPE_WCHAR","features":[633]},{"name":"RECO_TYPE_WSTRING","features":[633]},{"name":"RF_ADVISEINKCHANGE","features":[633]},{"name":"RF_ARBITRARY_ANGLE","features":[633]},{"name":"RF_BOXED_INPUT","features":[633]},{"name":"RF_CAC_INPUT","features":[633]},{"name":"RF_DONTCARE","features":[633]},{"name":"RF_DOWN_AND_LEFT","features":[633]},{"name":"RF_DOWN_AND_RIGHT","features":[633]},{"name":"RF_FREE_INPUT","features":[633]},{"name":"RF_LATTICE","features":[633]},{"name":"RF_LEFT_AND_DOWN","features":[633]},{"name":"RF_LINED_INPUT","features":[633]},{"name":"RF_OBJECT","features":[633]},{"name":"RF_PERFORMSLINEBREAKING","features":[633]},{"name":"RF_PERSONALIZABLE","features":[633]},{"name":"RF_REQUIRESSEGMENTATIONBREAKING","features":[633]},{"name":"RF_RIGHT_AND_DOWN","features":[633]},{"name":"RF_STROKEREORDER","features":[633]},{"name":"RIGHT_BUTTON","features":[633]},{"name":"RTSDI_AllData","features":[633]},{"name":"RTSDI_CustomStylusDataAdded","features":[633]},{"name":"RTSDI_DefaultEvents","features":[633]},{"name":"RTSDI_Error","features":[633]},{"name":"RTSDI_InAirPackets","features":[633]},{"name":"RTSDI_None","features":[633]},{"name":"RTSDI_Packets","features":[633]},{"name":"RTSDI_RealTimeStylusDisabled","features":[633]},{"name":"RTSDI_RealTimeStylusEnabled","features":[633]},{"name":"RTSDI_StylusButtonDown","features":[633]},{"name":"RTSDI_StylusButtonUp","features":[633]},{"name":"RTSDI_StylusDown","features":[633]},{"name":"RTSDI_StylusInRange","features":[633]},{"name":"RTSDI_StylusNew","features":[633]},{"name":"RTSDI_StylusOutOfRange","features":[633]},{"name":"RTSDI_StylusUp","features":[633]},{"name":"RTSDI_SystemEvents","features":[633]},{"name":"RTSDI_TabletAdded","features":[633]},{"name":"RTSDI_TabletRemoved","features":[633]},{"name":"RTSDI_UpdateMapping","features":[633]},{"name":"RTSLT_AsyncEventLock","features":[633]},{"name":"RTSLT_AsyncObjLock","features":[633]},{"name":"RTSLT_ExcludeCallback","features":[633]},{"name":"RTSLT_ObjLock","features":[633]},{"name":"RTSLT_SyncEventLock","features":[633]},{"name":"RTSLT_SyncObjLock","features":[633]},{"name":"RealTimeStylus","features":[633]},{"name":"RealTimeStylusDataInterest","features":[633]},{"name":"RealTimeStylusLockType","features":[633]},{"name":"SAFE_PARTIAL","features":[633]},{"name":"SCROLLDIRECTION","features":[633]},{"name":"SCROLLDIRECTION_DOWN","features":[633]},{"name":"SCROLLDIRECTION_UP","features":[633]},{"name":"SHR_E","features":[633]},{"name":"SHR_N","features":[633]},{"name":"SHR_NE","features":[633]},{"name":"SHR_NW","features":[633]},{"name":"SHR_None","features":[633]},{"name":"SHR_S","features":[633]},{"name":"SHR_SE","features":[633]},{"name":"SHR_SW","features":[633]},{"name":"SHR_Selection","features":[633]},{"name":"SHR_W","features":[633]},{"name":"STROKE_RANGE","features":[633]},{"name":"STR_GUID_ALTITUDEORIENTATION","features":[633]},{"name":"STR_GUID_AZIMUTHORIENTATION","features":[633]},{"name":"STR_GUID_BUTTONPRESSURE","features":[633]},{"name":"STR_GUID_DEVICE_CONTACT_ID","features":[633]},{"name":"STR_GUID_FINGERCONTACTCONFIDENCE","features":[633]},{"name":"STR_GUID_HEIGHT","features":[633]},{"name":"STR_GUID_NORMALPRESSURE","features":[633]},{"name":"STR_GUID_PAKETSTATUS","features":[633]},{"name":"STR_GUID_PITCHROTATION","features":[633]},{"name":"STR_GUID_ROLLROTATION","features":[633]},{"name":"STR_GUID_SERIALNUMBER","features":[633]},{"name":"STR_GUID_TANGENTPRESSURE","features":[633]},{"name":"STR_GUID_TIMERTICK","features":[633]},{"name":"STR_GUID_TWISTORIENTATION","features":[633]},{"name":"STR_GUID_WIDTH","features":[633]},{"name":"STR_GUID_X","features":[633]},{"name":"STR_GUID_XTILTORIENTATION","features":[633]},{"name":"STR_GUID_Y","features":[633]},{"name":"STR_GUID_YAWROTATION","features":[633]},{"name":"STR_GUID_YTILTORIENTATION","features":[633]},{"name":"STR_GUID_Z","features":[633]},{"name":"SYSTEM_EVENT_DATA","features":[633]},{"name":"ScrollBarsConstants","features":[633]},{"name":"SelAlignmentConstants","features":[633]},{"name":"SelectionHitResult","features":[633]},{"name":"SetEnabledUnicodeRanges","features":[633]},{"name":"SetFactoid","features":[633]},{"name":"SetFlags","features":[633]},{"name":"SetGuide","features":[633]},{"name":"SetTextContext","features":[633]},{"name":"SetWordList","features":[633]},{"name":"SketchInk","features":[633]},{"name":"StrokeBuilder","features":[633]},{"name":"StylusInfo","features":[305,633]},{"name":"StylusQueue","features":[633]},{"name":"SyncStylusQueue","features":[633]},{"name":"TABLET_DISABLE_FLICKFALLBACKKEYS","features":[633]},{"name":"TABLET_DISABLE_FLICKS","features":[633]},{"name":"TABLET_DISABLE_PENBARRELFEEDBACK","features":[633]},{"name":"TABLET_DISABLE_PENTAPFEEDBACK","features":[633]},{"name":"TABLET_DISABLE_PRESSANDHOLD","features":[633]},{"name":"TABLET_DISABLE_SMOOTHSCROLLING","features":[633]},{"name":"TABLET_DISABLE_TOUCHSWITCH","features":[633]},{"name":"TABLET_DISABLE_TOUCHUIFORCEOFF","features":[633]},{"name":"TABLET_DISABLE_TOUCHUIFORCEON","features":[633]},{"name":"TABLET_ENABLE_FLICKLEARNINGMODE","features":[633]},{"name":"TABLET_ENABLE_FLICKSONCONTEXT","features":[633]},{"name":"TABLET_ENABLE_MULTITOUCHDATA","features":[633]},{"name":"TCF_ALLOW_RECOGNITION","features":[633]},{"name":"TCF_FORCE_RECOGNITION","features":[633]},{"name":"TDK_Mouse","features":[633]},{"name":"TDK_Pen","features":[633]},{"name":"TDK_Touch","features":[633]},{"name":"THWC_CursorMustTouch","features":[633]},{"name":"THWC_CursorsHavePhysicalIds","features":[633]},{"name":"THWC_HardProximity","features":[633]},{"name":"THWC_Integrated","features":[633]},{"name":"TPMU_Centimeters","features":[633]},{"name":"TPMU_Default","features":[633]},{"name":"TPMU_Degrees","features":[633]},{"name":"TPMU_Grams","features":[633]},{"name":"TPMU_Inches","features":[633]},{"name":"TPMU_Pounds","features":[633]},{"name":"TPMU_Radians","features":[633]},{"name":"TPMU_Seconds","features":[633]},{"name":"TabletDeviceKind","features":[633]},{"name":"TabletHardwareCapabilities","features":[633]},{"name":"TabletPropertyMetricUnit","features":[633]},{"name":"TextInputPanel","features":[633]},{"name":"TipAutoCompleteClient","features":[633]},{"name":"VisualState","features":[633]},{"name":"WM_TABLET_ADDED","features":[633]},{"name":"WM_TABLET_DEFBASE","features":[633]},{"name":"WM_TABLET_DELETED","features":[633]},{"name":"WM_TABLET_FLICK","features":[633]},{"name":"WM_TABLET_MAXOFFSET","features":[633]},{"name":"WM_TABLET_QUERYSYSTEMGESTURESTATUS","features":[633]},{"name":"_IInkCollectorEvents","features":[356,633]},{"name":"_IInkEditEvents","features":[356,633]},{"name":"_IInkEvents","features":[356,633]},{"name":"_IInkOverlayEvents","features":[356,633]},{"name":"_IInkPictureEvents","features":[356,633]},{"name":"_IInkRecognitionEvents","features":[356,633]},{"name":"_IInkStrokesEvents","features":[356,633]},{"name":"_IMathInputControlEvents","features":[356,633]},{"name":"_IPenInputPanelEvents","features":[356,633]},{"name":"rtfBoth","features":[633]},{"name":"rtfCenter","features":[633]},{"name":"rtfFixedSingle","features":[633]},{"name":"rtfFlat","features":[633]},{"name":"rtfHorizontal","features":[633]},{"name":"rtfLeft","features":[633]},{"name":"rtfNoBorder","features":[633]},{"name":"rtfNone","features":[633]},{"name":"rtfRight","features":[633]},{"name":"rtfThreeD","features":[633]},{"name":"rtfVertical","features":[633]}],"673":[{"name":"ANCHOR_CHANGE_HISTORY_FLAGS","features":[634]},{"name":"AccClientDocMgr","features":[634]},{"name":"AccDictionary","features":[634]},{"name":"AccServerDocMgr","features":[634]},{"name":"AccStore","features":[634]},{"name":"CAND_CANCELED","features":[634]},{"name":"CAND_FINALIZED","features":[634]},{"name":"CAND_SELECTED","features":[634]},{"name":"CLSID_TF_CategoryMgr","features":[634]},{"name":"CLSID_TF_ClassicLangBar","features":[634]},{"name":"CLSID_TF_DisplayAttributeMgr","features":[634]},{"name":"CLSID_TF_InputProcessorProfiles","features":[634]},{"name":"CLSID_TF_LangBarItemMgr","features":[634]},{"name":"CLSID_TF_LangBarMgr","features":[634]},{"name":"CLSID_TF_ThreadMgr","features":[634]},{"name":"CLSID_TF_TransitoryExtensionUIEntry","features":[634]},{"name":"CLSID_TsfServices","features":[634]},{"name":"DCM_FLAGS_CTFMON","features":[634]},{"name":"DCM_FLAGS_LOCALTHREADTSF","features":[634]},{"name":"DCM_FLAGS_TASKENG","features":[634]},{"name":"DoMsCtfMonitor","features":[305,634]},{"name":"DocWrap","features":[634]},{"name":"GETIF_DICTGRAM","features":[634]},{"name":"GETIF_RECOCONTEXT","features":[634]},{"name":"GETIF_RECOGNIZER","features":[634]},{"name":"GETIF_RECOGNIZERNOINIT","features":[634]},{"name":"GETIF_RESMGR","features":[634]},{"name":"GETIF_VOICE","features":[634]},{"name":"GET_TEXT_AND_PROPERTY_UPDATES_FLAGS","features":[634]},{"name":"GUID_APP_FUNCTIONPROVIDER","features":[634]},{"name":"GUID_COMPARTMENT_CONVERSIONMODEBIAS","features":[634]},{"name":"GUID_COMPARTMENT_EMPTYCONTEXT","features":[634]},{"name":"GUID_COMPARTMENT_ENABLED_PROFILES_UPDATED","features":[634]},{"name":"GUID_COMPARTMENT_HANDWRITING_OPENCLOSE","features":[634]},{"name":"GUID_COMPARTMENT_KEYBOARD_DISABLED","features":[634]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE","features":[634]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_CONVERSION","features":[634]},{"name":"GUID_COMPARTMENT_KEYBOARD_INPUTMODE_SENTENCE","features":[634]},{"name":"GUID_COMPARTMENT_KEYBOARD_OPENCLOSE","features":[634]},{"name":"GUID_COMPARTMENT_SAPI_AUDIO","features":[634]},{"name":"GUID_COMPARTMENT_SPEECH_CFGMENU","features":[634]},{"name":"GUID_COMPARTMENT_SPEECH_DISABLED","features":[634]},{"name":"GUID_COMPARTMENT_SPEECH_GLOBALSTATE","features":[634]},{"name":"GUID_COMPARTMENT_SPEECH_OPENCLOSE","features":[634]},{"name":"GUID_COMPARTMENT_SPEECH_UI_STATUS","features":[634]},{"name":"GUID_COMPARTMENT_TIPUISTATUS","features":[634]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION","features":[634]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_DOCUMENTMANAGER","features":[634]},{"name":"GUID_COMPARTMENT_TRANSITORYEXTENSION_PARENT","features":[634]},{"name":"GUID_INTEGRATIONSTYLE_SEARCHBOX","features":[634]},{"name":"GUID_LBI_INPUTMODE","features":[634]},{"name":"GUID_LBI_SAPILAYR_CFGMENUBUTTON","features":[634]},{"name":"GUID_MODEBIAS_CHINESE","features":[634]},{"name":"GUID_MODEBIAS_CONVERSATION","features":[634]},{"name":"GUID_MODEBIAS_DATETIME","features":[634]},{"name":"GUID_MODEBIAS_FILENAME","features":[634]},{"name":"GUID_MODEBIAS_FULLWIDTHALPHANUMERIC","features":[634]},{"name":"GUID_MODEBIAS_FULLWIDTHHANGUL","features":[634]},{"name":"GUID_MODEBIAS_HALFWIDTHKATAKANA","features":[634]},{"name":"GUID_MODEBIAS_HANGUL","features":[634]},{"name":"GUID_MODEBIAS_HIRAGANA","features":[634]},{"name":"GUID_MODEBIAS_KATAKANA","features":[634]},{"name":"GUID_MODEBIAS_NAME","features":[634]},{"name":"GUID_MODEBIAS_NONE","features":[634]},{"name":"GUID_MODEBIAS_NUMERIC","features":[634]},{"name":"GUID_MODEBIAS_READING","features":[634]},{"name":"GUID_MODEBIAS_URLHISTORY","features":[634]},{"name":"GUID_PROP_ATTRIBUTE","features":[634]},{"name":"GUID_PROP_COMPOSING","features":[634]},{"name":"GUID_PROP_INPUTSCOPE","features":[634]},{"name":"GUID_PROP_LANGID","features":[634]},{"name":"GUID_PROP_MODEBIAS","features":[634]},{"name":"GUID_PROP_READING","features":[634]},{"name":"GUID_PROP_TEXTOWNER","features":[634]},{"name":"GUID_PROP_TKB_ALTERNATES","features":[634]},{"name":"GUID_SYSTEM_FUNCTIONPROVIDER","features":[634]},{"name":"GUID_TFCAT_CATEGORY_OF_TIP","features":[634]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROPERTY","features":[634]},{"name":"GUID_TFCAT_DISPLAYATTRIBUTEPROVIDER","features":[634]},{"name":"GUID_TFCAT_PROPSTYLE_STATIC","features":[634]},{"name":"GUID_TFCAT_PROP_AUDIODATA","features":[634]},{"name":"GUID_TFCAT_PROP_INKDATA","features":[634]},{"name":"GUID_TFCAT_TIPCAP_COMLESS","features":[634]},{"name":"GUID_TFCAT_TIPCAP_DUALMODE","features":[634]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVEONLY","features":[634]},{"name":"GUID_TFCAT_TIPCAP_IMMERSIVESUPPORT","features":[634]},{"name":"GUID_TFCAT_TIPCAP_INPUTMODECOMPARTMENT","features":[634]},{"name":"GUID_TFCAT_TIPCAP_LOCALSERVER","features":[634]},{"name":"GUID_TFCAT_TIPCAP_SECUREMODE","features":[634]},{"name":"GUID_TFCAT_TIPCAP_SYSTRAYSUPPORT","features":[634]},{"name":"GUID_TFCAT_TIPCAP_TSF3","features":[634]},{"name":"GUID_TFCAT_TIPCAP_UIELEMENTENABLED","features":[634]},{"name":"GUID_TFCAT_TIPCAP_WOW16","features":[634]},{"name":"GUID_TFCAT_TIP_HANDWRITING","features":[634]},{"name":"GUID_TFCAT_TIP_KEYBOARD","features":[634]},{"name":"GUID_TFCAT_TIP_SPEECH","features":[634]},{"name":"GUID_TFCAT_TRANSITORYEXTENSIONUI","features":[634]},{"name":"GUID_TS_SERVICE_ACCESSIBLE","features":[634]},{"name":"GUID_TS_SERVICE_ACTIVEX","features":[634]},{"name":"GUID_TS_SERVICE_DATAOBJECT","features":[634]},{"name":"GXFPF_NEAREST","features":[634]},{"name":"GXFPF_ROUND_NEAREST","features":[634]},{"name":"IAccClientDocMgr","features":[634]},{"name":"IAccDictionary","features":[634]},{"name":"IAccServerDocMgr","features":[634]},{"name":"IAccStore","features":[634]},{"name":"IAnchor","features":[634]},{"name":"IClonableWrapper","features":[634]},{"name":"ICoCreateLocally","features":[634]},{"name":"ICoCreatedLocally","features":[634]},{"name":"IDocWrap","features":[634]},{"name":"IEnumITfCompositionView","features":[634]},{"name":"IEnumSpeechCommands","features":[634]},{"name":"IEnumTfCandidates","features":[634]},{"name":"IEnumTfContextViews","features":[634]},{"name":"IEnumTfContexts","features":[634]},{"name":"IEnumTfDisplayAttributeInfo","features":[634]},{"name":"IEnumTfDocumentMgrs","features":[634]},{"name":"IEnumTfFunctionProviders","features":[634]},{"name":"IEnumTfInputProcessorProfiles","features":[634]},{"name":"IEnumTfLangBarItems","features":[634]},{"name":"IEnumTfLanguageProfiles","features":[634]},{"name":"IEnumTfLatticeElements","features":[634]},{"name":"IEnumTfProperties","features":[634]},{"name":"IEnumTfPropertyValue","features":[634]},{"name":"IEnumTfRanges","features":[634]},{"name":"IEnumTfUIElements","features":[634]},{"name":"IInternalDocWrap","features":[634]},{"name":"ILMCM_CHECKLAYOUTANDTIPENABLED","features":[634]},{"name":"ILMCM_LANGUAGEBAROFF","features":[634]},{"name":"INSERT_TEXT_AT_SELECTION_FLAGS","features":[634]},{"name":"IS_ADDRESS_CITY","features":[634]},{"name":"IS_ADDRESS_COUNTRYNAME","features":[634]},{"name":"IS_ADDRESS_COUNTRYSHORTNAME","features":[634]},{"name":"IS_ADDRESS_FULLPOSTALADDRESS","features":[634]},{"name":"IS_ADDRESS_POSTALCODE","features":[634]},{"name":"IS_ADDRESS_STATEORPROVINCE","features":[634]},{"name":"IS_ADDRESS_STREET","features":[634]},{"name":"IS_ALPHANUMERIC_FULLWIDTH","features":[634]},{"name":"IS_ALPHANUMERIC_HALFWIDTH","features":[634]},{"name":"IS_ALPHANUMERIC_PIN","features":[634]},{"name":"IS_ALPHANUMERIC_PIN_SET","features":[634]},{"name":"IS_BOPOMOFO","features":[634]},{"name":"IS_CHAT","features":[634]},{"name":"IS_CHAT_WITHOUT_EMOJI","features":[634]},{"name":"IS_CHINESE_FULLWIDTH","features":[634]},{"name":"IS_CHINESE_HALFWIDTH","features":[634]},{"name":"IS_CURRENCY_AMOUNT","features":[634]},{"name":"IS_CURRENCY_AMOUNTANDSYMBOL","features":[634]},{"name":"IS_CURRENCY_CHINESE","features":[634]},{"name":"IS_DATE_DAY","features":[634]},{"name":"IS_DATE_DAYNAME","features":[634]},{"name":"IS_DATE_FULLDATE","features":[634]},{"name":"IS_DATE_MONTH","features":[634]},{"name":"IS_DATE_MONTHNAME","features":[634]},{"name":"IS_DATE_YEAR","features":[634]},{"name":"IS_DEFAULT","features":[634]},{"name":"IS_DIGITS","features":[634]},{"name":"IS_EMAILNAME_OR_ADDRESS","features":[634]},{"name":"IS_EMAIL_SMTPEMAILADDRESS","features":[634]},{"name":"IS_EMAIL_USERNAME","features":[634]},{"name":"IS_ENUMSTRING","features":[634]},{"name":"IS_FILE_FILENAME","features":[634]},{"name":"IS_FILE_FULLFILEPATH","features":[634]},{"name":"IS_FORMULA","features":[634]},{"name":"IS_FORMULA_NUMBER","features":[634]},{"name":"IS_HANGUL_FULLWIDTH","features":[634]},{"name":"IS_HANGUL_HALFWIDTH","features":[634]},{"name":"IS_HANJA","features":[634]},{"name":"IS_HIRAGANA","features":[634]},{"name":"IS_KATAKANA_FULLWIDTH","features":[634]},{"name":"IS_KATAKANA_HALFWIDTH","features":[634]},{"name":"IS_LOGINNAME","features":[634]},{"name":"IS_MAPS","features":[634]},{"name":"IS_NAME_OR_PHONENUMBER","features":[634]},{"name":"IS_NATIVE_SCRIPT","features":[634]},{"name":"IS_NUMBER","features":[634]},{"name":"IS_NUMBER_FULLWIDTH","features":[634]},{"name":"IS_NUMERIC_PASSWORD","features":[634]},{"name":"IS_NUMERIC_PIN","features":[634]},{"name":"IS_ONECHAR","features":[634]},{"name":"IS_PASSWORD","features":[634]},{"name":"IS_PERSONALNAME_FULLNAME","features":[634]},{"name":"IS_PERSONALNAME_GIVENNAME","features":[634]},{"name":"IS_PERSONALNAME_MIDDLENAME","features":[634]},{"name":"IS_PERSONALNAME_PREFIX","features":[634]},{"name":"IS_PERSONALNAME_SUFFIX","features":[634]},{"name":"IS_PERSONALNAME_SURNAME","features":[634]},{"name":"IS_PHRASELIST","features":[634]},{"name":"IS_PRIVATE","features":[634]},{"name":"IS_REGULAREXPRESSION","features":[634]},{"name":"IS_SEARCH","features":[634]},{"name":"IS_SEARCH_INCREMENTAL","features":[634]},{"name":"IS_SRGS","features":[634]},{"name":"IS_TELEPHONE_AREACODE","features":[634]},{"name":"IS_TELEPHONE_COUNTRYCODE","features":[634]},{"name":"IS_TELEPHONE_FULLTELEPHONENUMBER","features":[634]},{"name":"IS_TELEPHONE_LOCALNUMBER","features":[634]},{"name":"IS_TEXT","features":[634]},{"name":"IS_TIME_FULLTIME","features":[634]},{"name":"IS_TIME_HOUR","features":[634]},{"name":"IS_TIME_MINORSEC","features":[634]},{"name":"IS_URL","features":[634]},{"name":"IS_XML","features":[634]},{"name":"IS_YOMI","features":[634]},{"name":"ISpeechCommandProvider","features":[634]},{"name":"ITextStoreACP","features":[634]},{"name":"ITextStoreACP2","features":[634]},{"name":"ITextStoreACPEx","features":[634]},{"name":"ITextStoreACPServices","features":[634]},{"name":"ITextStoreACPSink","features":[634]},{"name":"ITextStoreACPSinkEx","features":[634]},{"name":"ITextStoreAnchor","features":[634]},{"name":"ITextStoreAnchorEx","features":[634]},{"name":"ITextStoreAnchorSink","features":[634]},{"name":"ITextStoreSinkAnchorEx","features":[634]},{"name":"ITfActiveLanguageProfileNotifySink","features":[634]},{"name":"ITfCandidateList","features":[634]},{"name":"ITfCandidateListUIElement","features":[634]},{"name":"ITfCandidateListUIElementBehavior","features":[634]},{"name":"ITfCandidateString","features":[634]},{"name":"ITfCategoryMgr","features":[634]},{"name":"ITfCleanupContextDurationSink","features":[634]},{"name":"ITfCleanupContextSink","features":[634]},{"name":"ITfClientId","features":[634]},{"name":"ITfCompartment","features":[634]},{"name":"ITfCompartmentEventSink","features":[634]},{"name":"ITfCompartmentMgr","features":[634]},{"name":"ITfComposition","features":[634]},{"name":"ITfCompositionSink","features":[634]},{"name":"ITfCompositionView","features":[634]},{"name":"ITfConfigureSystemKeystrokeFeed","features":[634]},{"name":"ITfContext","features":[634]},{"name":"ITfContextComposition","features":[634]},{"name":"ITfContextKeyEventSink","features":[634]},{"name":"ITfContextOwner","features":[634]},{"name":"ITfContextOwnerCompositionServices","features":[634]},{"name":"ITfContextOwnerCompositionSink","features":[634]},{"name":"ITfContextOwnerServices","features":[634]},{"name":"ITfContextView","features":[634]},{"name":"ITfCreatePropertyStore","features":[634]},{"name":"ITfDisplayAttributeInfo","features":[634]},{"name":"ITfDisplayAttributeMgr","features":[634]},{"name":"ITfDisplayAttributeNotifySink","features":[634]},{"name":"ITfDisplayAttributeProvider","features":[634]},{"name":"ITfDocumentMgr","features":[634]},{"name":"ITfEditRecord","features":[634]},{"name":"ITfEditSession","features":[634]},{"name":"ITfEditTransactionSink","features":[634]},{"name":"ITfFnAdviseText","features":[634]},{"name":"ITfFnBalloon","features":[634]},{"name":"ITfFnConfigure","features":[634]},{"name":"ITfFnConfigureRegisterEudc","features":[634]},{"name":"ITfFnConfigureRegisterWord","features":[634]},{"name":"ITfFnCustomSpeechCommand","features":[634]},{"name":"ITfFnGetLinguisticAlternates","features":[634]},{"name":"ITfFnGetPreferredTouchKeyboardLayout","features":[634]},{"name":"ITfFnGetSAPIObject","features":[634]},{"name":"ITfFnLMInternal","features":[634]},{"name":"ITfFnLMProcessor","features":[634]},{"name":"ITfFnLangProfileUtil","features":[634]},{"name":"ITfFnPlayBack","features":[634]},{"name":"ITfFnPropertyUIStatus","features":[634]},{"name":"ITfFnReconversion","features":[634]},{"name":"ITfFnSearchCandidateProvider","features":[634]},{"name":"ITfFnShowHelp","features":[634]},{"name":"ITfFunction","features":[634]},{"name":"ITfFunctionProvider","features":[634]},{"name":"ITfInputProcessorProfileActivationSink","features":[634]},{"name":"ITfInputProcessorProfileMgr","features":[634]},{"name":"ITfInputProcessorProfileSubstituteLayout","features":[634]},{"name":"ITfInputProcessorProfiles","features":[634]},{"name":"ITfInputProcessorProfilesEx","features":[634]},{"name":"ITfInputScope","features":[634]},{"name":"ITfInputScope2","features":[634]},{"name":"ITfInsertAtSelection","features":[634]},{"name":"ITfIntegratableCandidateListUIElement","features":[634]},{"name":"ITfKeyEventSink","features":[634]},{"name":"ITfKeyTraceEventSink","features":[634]},{"name":"ITfKeystrokeMgr","features":[634]},{"name":"ITfLMLattice","features":[634]},{"name":"ITfLangBarEventSink","features":[634]},{"name":"ITfLangBarItem","features":[634]},{"name":"ITfLangBarItemBalloon","features":[634]},{"name":"ITfLangBarItemBitmap","features":[634]},{"name":"ITfLangBarItemBitmapButton","features":[634]},{"name":"ITfLangBarItemButton","features":[634]},{"name":"ITfLangBarItemMgr","features":[634]},{"name":"ITfLangBarItemSink","features":[634]},{"name":"ITfLangBarMgr","features":[634]},{"name":"ITfLanguageProfileNotifySink","features":[634]},{"name":"ITfMSAAControl","features":[634]},{"name":"ITfMenu","features":[634]},{"name":"ITfMessagePump","features":[634]},{"name":"ITfMouseSink","features":[634]},{"name":"ITfMouseTracker","features":[634]},{"name":"ITfMouseTrackerACP","features":[634]},{"name":"ITfPersistentPropertyLoaderACP","features":[634]},{"name":"ITfPreservedKeyNotifySink","features":[634]},{"name":"ITfProperty","features":[634]},{"name":"ITfPropertyStore","features":[634]},{"name":"ITfQueryEmbedded","features":[634]},{"name":"ITfRange","features":[634]},{"name":"ITfRangeACP","features":[634]},{"name":"ITfRangeBackup","features":[634]},{"name":"ITfReadOnlyProperty","features":[634]},{"name":"ITfReadingInformationUIElement","features":[634]},{"name":"ITfReverseConversion","features":[634]},{"name":"ITfReverseConversionList","features":[634]},{"name":"ITfReverseConversionMgr","features":[634]},{"name":"ITfSource","features":[634]},{"name":"ITfSourceSingle","features":[634]},{"name":"ITfSpeechUIServer","features":[634]},{"name":"ITfStatusSink","features":[634]},{"name":"ITfSystemDeviceTypeLangBarItem","features":[634]},{"name":"ITfSystemLangBarItem","features":[634]},{"name":"ITfSystemLangBarItemSink","features":[634]},{"name":"ITfSystemLangBarItemText","features":[634]},{"name":"ITfTextEditSink","features":[634]},{"name":"ITfTextInputProcessor","features":[634]},{"name":"ITfTextInputProcessorEx","features":[634]},{"name":"ITfTextLayoutSink","features":[634]},{"name":"ITfThreadFocusSink","features":[634]},{"name":"ITfThreadMgr","features":[634]},{"name":"ITfThreadMgr2","features":[634]},{"name":"ITfThreadMgrEventSink","features":[634]},{"name":"ITfThreadMgrEx","features":[634]},{"name":"ITfToolTipUIElement","features":[634]},{"name":"ITfTransitoryExtensionSink","features":[634]},{"name":"ITfTransitoryExtensionUIElement","features":[634]},{"name":"ITfUIElement","features":[634]},{"name":"ITfUIElementMgr","features":[634]},{"name":"ITfUIElementSink","features":[634]},{"name":"IUIManagerEventSink","features":[634]},{"name":"IVersionInfo","features":[634]},{"name":"InitLocalMsCtfMonitor","features":[634]},{"name":"InputScope","features":[634]},{"name":"LANG_BAR_ITEM_ICON_MODE_FLAGS","features":[634]},{"name":"LIBID_MSAATEXTLib","features":[634]},{"name":"MSAAControl","features":[634]},{"name":"STYLE_ACTIVE_SELECTION","features":[634]},{"name":"STYLE_IMPLIED_SELECTION","features":[634]},{"name":"TEXT_STORE_CHANGE_FLAGS","features":[634]},{"name":"TEXT_STORE_LOCK_FLAGS","features":[634]},{"name":"TEXT_STORE_TEXT_CHANGE_FLAGS","features":[634]},{"name":"TF_AE_END","features":[634]},{"name":"TF_AE_NONE","features":[634]},{"name":"TF_AE_START","features":[634]},{"name":"TF_ANCHOR_END","features":[634]},{"name":"TF_ANCHOR_START","features":[634]},{"name":"TF_ATTR_CONVERTED","features":[634]},{"name":"TF_ATTR_FIXEDCONVERTED","features":[634]},{"name":"TF_ATTR_INPUT","features":[634]},{"name":"TF_ATTR_INPUT_ERROR","features":[634]},{"name":"TF_ATTR_OTHER","features":[634]},{"name":"TF_ATTR_TARGET_CONVERTED","features":[634]},{"name":"TF_ATTR_TARGET_NOTCONVERTED","features":[634]},{"name":"TF_CHAR_EMBEDDED","features":[634]},{"name":"TF_CLUIE_COUNT","features":[634]},{"name":"TF_CLUIE_CURRENTPAGE","features":[634]},{"name":"TF_CLUIE_DOCUMENTMGR","features":[634]},{"name":"TF_CLUIE_PAGEINDEX","features":[634]},{"name":"TF_CLUIE_SELECTION","features":[634]},{"name":"TF_CLUIE_STRING","features":[634]},{"name":"TF_COMMANDING_ENABLED","features":[634]},{"name":"TF_COMMANDING_ON","features":[634]},{"name":"TF_CONTEXT_EDIT_CONTEXT_FLAGS","features":[634]},{"name":"TF_CONVERSIONMODE_ALPHANUMERIC","features":[634]},{"name":"TF_CONVERSIONMODE_CHARCODE","features":[634]},{"name":"TF_CONVERSIONMODE_EUDC","features":[634]},{"name":"TF_CONVERSIONMODE_FIXED","features":[634]},{"name":"TF_CONVERSIONMODE_FULLSHAPE","features":[634]},{"name":"TF_CONVERSIONMODE_KATAKANA","features":[634]},{"name":"TF_CONVERSIONMODE_NATIVE","features":[634]},{"name":"TF_CONVERSIONMODE_NOCONVERSION","features":[634]},{"name":"TF_CONVERSIONMODE_ROMAN","features":[634]},{"name":"TF_CONVERSIONMODE_SOFTKEYBOARD","features":[634]},{"name":"TF_CONVERSIONMODE_SYMBOL","features":[634]},{"name":"TF_CT_COLORREF","features":[634]},{"name":"TF_CT_NONE","features":[634]},{"name":"TF_CT_SYSCOLOR","features":[634]},{"name":"TF_DA_ATTR_INFO","features":[634]},{"name":"TF_DA_COLOR","features":[305,634]},{"name":"TF_DA_COLORTYPE","features":[634]},{"name":"TF_DA_LINESTYLE","features":[634]},{"name":"TF_DEFAULT_SELECTION","features":[634]},{"name":"TF_DICTATION_ENABLED","features":[634]},{"name":"TF_DICTATION_ON","features":[634]},{"name":"TF_DISABLE_BALLOON","features":[634]},{"name":"TF_DISABLE_COMMANDING","features":[634]},{"name":"TF_DISABLE_DICTATION","features":[634]},{"name":"TF_DISABLE_SPEECH","features":[634]},{"name":"TF_DISPLAYATTRIBUTE","features":[305,634]},{"name":"TF_DTLBI_NONE","features":[634]},{"name":"TF_DTLBI_USEPROFILEICON","features":[634]},{"name":"TF_ENABLE_PROCESS_ATOM","features":[634]},{"name":"TF_ES_ASYNC","features":[634]},{"name":"TF_ES_ASYNCDONTCARE","features":[634]},{"name":"TF_ES_READ","features":[634]},{"name":"TF_ES_READWRITE","features":[634]},{"name":"TF_ES_SYNC","features":[634]},{"name":"TF_E_ALREADY_EXISTS","features":[634]},{"name":"TF_E_COMPOSITION_REJECTED","features":[634]},{"name":"TF_E_DISCONNECTED","features":[634]},{"name":"TF_E_EMPTYCONTEXT","features":[634]},{"name":"TF_E_FORMAT","features":[634]},{"name":"TF_E_INVALIDPOINT","features":[634]},{"name":"TF_E_INVALIDPOS","features":[634]},{"name":"TF_E_INVALIDVIEW","features":[634]},{"name":"TF_E_LOCKED","features":[634]},{"name":"TF_E_NOCONVERSION","features":[634]},{"name":"TF_E_NOINTERFACE","features":[634]},{"name":"TF_E_NOLAYOUT","features":[634]},{"name":"TF_E_NOLOCK","features":[634]},{"name":"TF_E_NOOBJECT","features":[634]},{"name":"TF_E_NOPROVIDER","features":[634]},{"name":"TF_E_NOSELECTION","features":[634]},{"name":"TF_E_NOSERVICE","features":[634]},{"name":"TF_E_NOTOWNEDRANGE","features":[634]},{"name":"TF_E_RANGE_NOT_COVERED","features":[634]},{"name":"TF_E_READONLY","features":[634]},{"name":"TF_E_STACKFULL","features":[634]},{"name":"TF_E_SYNCHRONOUS","features":[634]},{"name":"TF_FLOATINGLANGBAR_WNDTITLE","features":[634]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEA","features":[634]},{"name":"TF_FLOATINGLANGBAR_WNDTITLEW","features":[634]},{"name":"TF_GRAVITY_BACKWARD","features":[634]},{"name":"TF_GRAVITY_FORWARD","features":[634]},{"name":"TF_GTP_INCL_TEXT","features":[634]},{"name":"TF_GTP_NONE","features":[634]},{"name":"TF_HALTCOND","features":[634]},{"name":"TF_HF_OBJECT","features":[634]},{"name":"TF_IAS_NOQUERY","features":[634]},{"name":"TF_IAS_NO_DEFAULT_COMPOSITION","features":[634]},{"name":"TF_IAS_QUERYONLY","features":[634]},{"name":"TF_IE_CORRECTION","features":[634]},{"name":"TF_INPUTPROCESSORPROFILE","features":[622,634]},{"name":"TF_INVALID_COOKIE","features":[634]},{"name":"TF_INVALID_EDIT_COOKIE","features":[634]},{"name":"TF_IPPMF_DISABLEPROFILE","features":[634]},{"name":"TF_IPPMF_DONTCARECURRENTINPUTLANGUAGE","features":[634]},{"name":"TF_IPPMF_ENABLEPROFILE","features":[634]},{"name":"TF_IPPMF_FORPROCESS","features":[634]},{"name":"TF_IPPMF_FORSESSION","features":[634]},{"name":"TF_IPPMF_FORSYSTEMALL","features":[634]},{"name":"TF_IPP_CAPS_COMLESSSUPPORT","features":[634]},{"name":"TF_IPP_CAPS_DISABLEONTRANSITORY","features":[634]},{"name":"TF_IPP_CAPS_IMMERSIVESUPPORT","features":[634]},{"name":"TF_IPP_CAPS_SECUREMODESUPPORT","features":[634]},{"name":"TF_IPP_CAPS_SYSTRAYSUPPORT","features":[634]},{"name":"TF_IPP_CAPS_UIELEMENTENABLED","features":[634]},{"name":"TF_IPP_CAPS_WOW16SUPPORT","features":[634]},{"name":"TF_IPP_FLAG_ACTIVE","features":[634]},{"name":"TF_IPP_FLAG_ENABLED","features":[634]},{"name":"TF_IPP_FLAG_SUBSTITUTEDBYINPUTPROCESSOR","features":[634]},{"name":"TF_IPSINK_FLAG_ACTIVE","features":[634]},{"name":"TF_LANGBARITEMINFO","features":[634]},{"name":"TF_LANGUAGEPROFILE","features":[305,634]},{"name":"TF_LBBALLOONINFO","features":[634]},{"name":"TF_LBI_BALLOON","features":[634]},{"name":"TF_LBI_BITMAP","features":[634]},{"name":"TF_LBI_BMPF_VERTICAL","features":[634]},{"name":"TF_LBI_CLK_LEFT","features":[634]},{"name":"TF_LBI_CLK_RIGHT","features":[634]},{"name":"TF_LBI_CUSTOMUI","features":[634]},{"name":"TF_LBI_DESC_MAXLEN","features":[634]},{"name":"TF_LBI_ICON","features":[634]},{"name":"TF_LBI_STATUS","features":[634]},{"name":"TF_LBI_STATUS_BTN_TOGGLED","features":[634]},{"name":"TF_LBI_STATUS_DISABLED","features":[634]},{"name":"TF_LBI_STATUS_HIDDEN","features":[634]},{"name":"TF_LBI_STYLE_BTN_BUTTON","features":[634]},{"name":"TF_LBI_STYLE_BTN_MENU","features":[634]},{"name":"TF_LBI_STYLE_BTN_TOGGLE","features":[634]},{"name":"TF_LBI_STYLE_HIDDENBYDEFAULT","features":[634]},{"name":"TF_LBI_STYLE_HIDDENSTATUSCONTROL","features":[634]},{"name":"TF_LBI_STYLE_HIDEONNOOTHERITEMS","features":[634]},{"name":"TF_LBI_STYLE_SHOWNINTRAY","features":[634]},{"name":"TF_LBI_STYLE_SHOWNINTRAYONLY","features":[634]},{"name":"TF_LBI_STYLE_TEXTCOLORICON","features":[634]},{"name":"TF_LBI_TEXT","features":[634]},{"name":"TF_LBI_TOOLTIP","features":[634]},{"name":"TF_LBMENUF_CHECKED","features":[634]},{"name":"TF_LBMENUF_GRAYED","features":[634]},{"name":"TF_LBMENUF_RADIOCHECKED","features":[634]},{"name":"TF_LBMENUF_SEPARATOR","features":[634]},{"name":"TF_LBMENUF_SUBMENU","features":[634]},{"name":"TF_LB_BALLOON_MISS","features":[634]},{"name":"TF_LB_BALLOON_RECO","features":[634]},{"name":"TF_LB_BALLOON_SHOW","features":[634]},{"name":"TF_LC_CHANGE","features":[634]},{"name":"TF_LC_CREATE","features":[634]},{"name":"TF_LC_DESTROY","features":[634]},{"name":"TF_LMLATTELEMENT","features":[634]},{"name":"TF_LS_DASH","features":[634]},{"name":"TF_LS_DOT","features":[634]},{"name":"TF_LS_NONE","features":[634]},{"name":"TF_LS_SOLID","features":[634]},{"name":"TF_LS_SQUIGGLE","features":[634]},{"name":"TF_MENUREADY","features":[634]},{"name":"TF_MOD_ALT","features":[634]},{"name":"TF_MOD_CONTROL","features":[634]},{"name":"TF_MOD_IGNORE_ALL_MODIFIER","features":[634]},{"name":"TF_MOD_LALT","features":[634]},{"name":"TF_MOD_LCONTROL","features":[634]},{"name":"TF_MOD_LSHIFT","features":[634]},{"name":"TF_MOD_ON_KEYUP","features":[634]},{"name":"TF_MOD_RALT","features":[634]},{"name":"TF_MOD_RCONTROL","features":[634]},{"name":"TF_MOD_RSHIFT","features":[634]},{"name":"TF_MOD_SHIFT","features":[634]},{"name":"TF_PERSISTENT_PROPERTY_HEADER_ACP","features":[634]},{"name":"TF_POPF_ALL","features":[634]},{"name":"TF_PRESERVEDKEY","features":[634]},{"name":"TF_PROCESS_ATOM","features":[634]},{"name":"TF_PROFILETYPE_INPUTPROCESSOR","features":[634]},{"name":"TF_PROFILETYPE_KEYBOARDLAYOUT","features":[634]},{"name":"TF_PROFILE_ARRAY","features":[634]},{"name":"TF_PROFILE_CANTONESE","features":[634]},{"name":"TF_PROFILE_CHANGJIE","features":[634]},{"name":"TF_PROFILE_DAYI","features":[634]},{"name":"TF_PROFILE_NEWCHANGJIE","features":[634]},{"name":"TF_PROFILE_NEWPHONETIC","features":[634]},{"name":"TF_PROFILE_NEWQUICK","features":[634]},{"name":"TF_PROFILE_PHONETIC","features":[634]},{"name":"TF_PROFILE_PINYIN","features":[634]},{"name":"TF_PROFILE_QUICK","features":[634]},{"name":"TF_PROFILE_SIMPLEFAST","features":[634]},{"name":"TF_PROFILE_TIGRINYA","features":[634]},{"name":"TF_PROFILE_WUBI","features":[634]},{"name":"TF_PROFILE_YI","features":[634]},{"name":"TF_PROPERTYVAL","features":[634]},{"name":"TF_PROPUI_STATUS_SAVETOFILE","features":[634]},{"name":"TF_RCM_COMLESS","features":[634]},{"name":"TF_RCM_HINT_COLLISION","features":[634]},{"name":"TF_RCM_HINT_READING_LENGTH","features":[634]},{"name":"TF_RCM_VKEY","features":[634]},{"name":"TF_RIP_FLAG_FREEUNUSEDLIBRARIES","features":[634]},{"name":"TF_RIUIE_CONTEXT","features":[634]},{"name":"TF_RIUIE_ERRORINDEX","features":[634]},{"name":"TF_RIUIE_MAXREADINGSTRINGLENGTH","features":[634]},{"name":"TF_RIUIE_STRING","features":[634]},{"name":"TF_RIUIE_VERTICALORDER","features":[634]},{"name":"TF_RP_HIDDENINSETTINGUI","features":[634]},{"name":"TF_RP_LOCALPROCESS","features":[634]},{"name":"TF_RP_LOCALTHREAD","features":[634]},{"name":"TF_RP_SUBITEMINSETTINGUI","features":[634]},{"name":"TF_SD_BACKWARD","features":[634]},{"name":"TF_SD_FORWARD","features":[634]},{"name":"TF_SD_LOADING","features":[634]},{"name":"TF_SD_READONLY","features":[634]},{"name":"TF_SELECTION","features":[305,634]},{"name":"TF_SELECTIONSTYLE","features":[305,634]},{"name":"TF_SENTENCEMODE_AUTOMATIC","features":[634]},{"name":"TF_SENTENCEMODE_CONVERSATION","features":[634]},{"name":"TF_SENTENCEMODE_NONE","features":[634]},{"name":"TF_SENTENCEMODE_PHRASEPREDICT","features":[634]},{"name":"TF_SENTENCEMODE_PLAURALCLAUSE","features":[634]},{"name":"TF_SENTENCEMODE_SINGLECONVERT","features":[634]},{"name":"TF_SFT_DESKBAND","features":[634]},{"name":"TF_SFT_DOCK","features":[634]},{"name":"TF_SFT_EXTRAICONSONMINIMIZED","features":[634]},{"name":"TF_SFT_HIDDEN","features":[634]},{"name":"TF_SFT_HIGHTRANSPARENCY","features":[634]},{"name":"TF_SFT_LABELS","features":[634]},{"name":"TF_SFT_LOWTRANSPARENCY","features":[634]},{"name":"TF_SFT_MINIMIZED","features":[634]},{"name":"TF_SFT_NOEXTRAICONSONMINIMIZED","features":[634]},{"name":"TF_SFT_NOLABELS","features":[634]},{"name":"TF_SFT_NOTRANSPARENCY","features":[634]},{"name":"TF_SFT_SHOWNORMAL","features":[634]},{"name":"TF_SHOW_BALLOON","features":[634]},{"name":"TF_SPEECHUI_SHOWN","features":[634]},{"name":"TF_SS_DISJOINTSEL","features":[634]},{"name":"TF_SS_REGIONS","features":[634]},{"name":"TF_SS_TKBAUTOCORRECTENABLE","features":[634]},{"name":"TF_SS_TKBPREDICTIONENABLE","features":[634]},{"name":"TF_SS_TRANSITORY","features":[634]},{"name":"TF_ST_CORRECTION","features":[634]},{"name":"TF_S_ASYNC","features":[634]},{"name":"TF_TF_IGNOREEND","features":[634]},{"name":"TF_TF_MOVESTART","features":[634]},{"name":"TF_TMAE_COMLESS","features":[634]},{"name":"TF_TMAE_CONSOLE","features":[634]},{"name":"TF_TMAE_NOACTIVATEKEYBOARDLAYOUT","features":[634]},{"name":"TF_TMAE_NOACTIVATETIP","features":[634]},{"name":"TF_TMAE_SECUREMODE","features":[634]},{"name":"TF_TMAE_UIELEMENTENABLEDONLY","features":[634]},{"name":"TF_TMAE_WOW16","features":[634]},{"name":"TF_TMF_ACTIVATED","features":[634]},{"name":"TF_TMF_COMLESS","features":[634]},{"name":"TF_TMF_CONSOLE","features":[634]},{"name":"TF_TMF_IMMERSIVEMODE","features":[634]},{"name":"TF_TMF_NOACTIVATETIP","features":[634]},{"name":"TF_TMF_SECUREMODE","features":[634]},{"name":"TF_TMF_UIELEMENTENABLEDONLY","features":[634]},{"name":"TF_TMF_WOW16","features":[634]},{"name":"TF_TRANSITORYEXTENSION_ATSELECTION","features":[634]},{"name":"TF_TRANSITORYEXTENSION_FLOATING","features":[634]},{"name":"TF_TRANSITORYEXTENSION_NONE","features":[634]},{"name":"TF_TU_CORRECTION","features":[634]},{"name":"TF_URP_ALLPROFILES","features":[634]},{"name":"TF_URP_LOCALPROCESS","features":[634]},{"name":"TF_URP_LOCALTHREAD","features":[634]},{"name":"TF_US_HIDETIPUI","features":[634]},{"name":"TKBLT_CLASSIC","features":[634]},{"name":"TKBLT_OPTIMIZED","features":[634]},{"name":"TKBLT_UNDEFINED","features":[634]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_CHANGJIE","features":[634]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_DAYI","features":[634]},{"name":"TKBL_CLASSIC_TRADITIONAL_CHINESE_PHONETIC","features":[634]},{"name":"TKBL_OPT_JAPANESE_ABC","features":[634]},{"name":"TKBL_OPT_KOREAN_HANGUL_2_BULSIK","features":[634]},{"name":"TKBL_OPT_SIMPLIFIED_CHINESE_PINYIN","features":[634]},{"name":"TKBL_OPT_TRADITIONAL_CHINESE_PHONETIC","features":[634]},{"name":"TKBL_UNDEFINED","features":[634]},{"name":"TKBLayoutType","features":[634]},{"name":"TKB_ALTERNATES_AUTOCORRECTION_APPLIED","features":[634]},{"name":"TKB_ALTERNATES_FOR_AUTOCORRECTION","features":[634]},{"name":"TKB_ALTERNATES_FOR_PREDICTION","features":[634]},{"name":"TKB_ALTERNATES_STANDARD","features":[634]},{"name":"TSATTRID_App","features":[634]},{"name":"TSATTRID_App_IncorrectGrammar","features":[634]},{"name":"TSATTRID_App_IncorrectSpelling","features":[634]},{"name":"TSATTRID_Font","features":[634]},{"name":"TSATTRID_Font_FaceName","features":[634]},{"name":"TSATTRID_Font_SizePts","features":[634]},{"name":"TSATTRID_Font_Style","features":[634]},{"name":"TSATTRID_Font_Style_Animation","features":[634]},{"name":"TSATTRID_Font_Style_Animation_BlinkingBackground","features":[634]},{"name":"TSATTRID_Font_Style_Animation_LasVegasLights","features":[634]},{"name":"TSATTRID_Font_Style_Animation_MarchingBlackAnts","features":[634]},{"name":"TSATTRID_Font_Style_Animation_MarchingRedAnts","features":[634]},{"name":"TSATTRID_Font_Style_Animation_Shimmer","features":[634]},{"name":"TSATTRID_Font_Style_Animation_SparkleText","features":[634]},{"name":"TSATTRID_Font_Style_Animation_WipeDown","features":[634]},{"name":"TSATTRID_Font_Style_Animation_WipeRight","features":[634]},{"name":"TSATTRID_Font_Style_BackgroundColor","features":[634]},{"name":"TSATTRID_Font_Style_Blink","features":[634]},{"name":"TSATTRID_Font_Style_Bold","features":[634]},{"name":"TSATTRID_Font_Style_Capitalize","features":[634]},{"name":"TSATTRID_Font_Style_Color","features":[634]},{"name":"TSATTRID_Font_Style_Emboss","features":[634]},{"name":"TSATTRID_Font_Style_Engrave","features":[634]},{"name":"TSATTRID_Font_Style_Height","features":[634]},{"name":"TSATTRID_Font_Style_Hidden","features":[634]},{"name":"TSATTRID_Font_Style_Italic","features":[634]},{"name":"TSATTRID_Font_Style_Kerning","features":[634]},{"name":"TSATTRID_Font_Style_Lowercase","features":[634]},{"name":"TSATTRID_Font_Style_Outlined","features":[634]},{"name":"TSATTRID_Font_Style_Overline","features":[634]},{"name":"TSATTRID_Font_Style_Overline_Double","features":[634]},{"name":"TSATTRID_Font_Style_Overline_Single","features":[634]},{"name":"TSATTRID_Font_Style_Position","features":[634]},{"name":"TSATTRID_Font_Style_Protected","features":[634]},{"name":"TSATTRID_Font_Style_Shadow","features":[634]},{"name":"TSATTRID_Font_Style_SmallCaps","features":[634]},{"name":"TSATTRID_Font_Style_Spacing","features":[634]},{"name":"TSATTRID_Font_Style_Strikethrough","features":[634]},{"name":"TSATTRID_Font_Style_Strikethrough_Double","features":[634]},{"name":"TSATTRID_Font_Style_Strikethrough_Single","features":[634]},{"name":"TSATTRID_Font_Style_Subscript","features":[634]},{"name":"TSATTRID_Font_Style_Superscript","features":[634]},{"name":"TSATTRID_Font_Style_Underline","features":[634]},{"name":"TSATTRID_Font_Style_Underline_Double","features":[634]},{"name":"TSATTRID_Font_Style_Underline_Single","features":[634]},{"name":"TSATTRID_Font_Style_Uppercase","features":[634]},{"name":"TSATTRID_Font_Style_Weight","features":[634]},{"name":"TSATTRID_List","features":[634]},{"name":"TSATTRID_List_LevelIndel","features":[634]},{"name":"TSATTRID_List_Type","features":[634]},{"name":"TSATTRID_List_Type_Arabic","features":[634]},{"name":"TSATTRID_List_Type_Bullet","features":[634]},{"name":"TSATTRID_List_Type_LowerLetter","features":[634]},{"name":"TSATTRID_List_Type_LowerRoman","features":[634]},{"name":"TSATTRID_List_Type_UpperLetter","features":[634]},{"name":"TSATTRID_List_Type_UpperRoman","features":[634]},{"name":"TSATTRID_OTHERS","features":[634]},{"name":"TSATTRID_Text","features":[634]},{"name":"TSATTRID_Text_Alignment","features":[634]},{"name":"TSATTRID_Text_Alignment_Center","features":[634]},{"name":"TSATTRID_Text_Alignment_Justify","features":[634]},{"name":"TSATTRID_Text_Alignment_Left","features":[634]},{"name":"TSATTRID_Text_Alignment_Right","features":[634]},{"name":"TSATTRID_Text_EmbeddedObject","features":[634]},{"name":"TSATTRID_Text_Hyphenation","features":[634]},{"name":"TSATTRID_Text_Language","features":[634]},{"name":"TSATTRID_Text_Link","features":[634]},{"name":"TSATTRID_Text_Orientation","features":[634]},{"name":"TSATTRID_Text_Para","features":[634]},{"name":"TSATTRID_Text_Para_FirstLineIndent","features":[634]},{"name":"TSATTRID_Text_Para_LeftIndent","features":[634]},{"name":"TSATTRID_Text_Para_LineSpacing","features":[634]},{"name":"TSATTRID_Text_Para_LineSpacing_AtLeast","features":[634]},{"name":"TSATTRID_Text_Para_LineSpacing_Double","features":[634]},{"name":"TSATTRID_Text_Para_LineSpacing_Exactly","features":[634]},{"name":"TSATTRID_Text_Para_LineSpacing_Multiple","features":[634]},{"name":"TSATTRID_Text_Para_LineSpacing_OnePtFive","features":[634]},{"name":"TSATTRID_Text_Para_LineSpacing_Single","features":[634]},{"name":"TSATTRID_Text_Para_RightIndent","features":[634]},{"name":"TSATTRID_Text_Para_SpaceAfter","features":[634]},{"name":"TSATTRID_Text_Para_SpaceBefore","features":[634]},{"name":"TSATTRID_Text_ReadOnly","features":[634]},{"name":"TSATTRID_Text_RightToLeft","features":[634]},{"name":"TSATTRID_Text_VerticalWriting","features":[634]},{"name":"TS_AE_END","features":[634]},{"name":"TS_AE_NONE","features":[634]},{"name":"TS_AE_START","features":[634]},{"name":"TS_AS_ATTR_CHANGE","features":[634]},{"name":"TS_AS_LAYOUT_CHANGE","features":[634]},{"name":"TS_AS_SEL_CHANGE","features":[634]},{"name":"TS_AS_STATUS_CHANGE","features":[634]},{"name":"TS_AS_TEXT_CHANGE","features":[634]},{"name":"TS_ATTRVAL","features":[634]},{"name":"TS_ATTR_FIND_BACKWARDS","features":[634]},{"name":"TS_ATTR_FIND_HIDDEN","features":[634]},{"name":"TS_ATTR_FIND_UPDATESTART","features":[634]},{"name":"TS_ATTR_FIND_WANT_END","features":[634]},{"name":"TS_ATTR_FIND_WANT_OFFSET","features":[634]},{"name":"TS_ATTR_FIND_WANT_VALUE","features":[634]},{"name":"TS_CHAR_EMBEDDED","features":[634]},{"name":"TS_CHAR_REGION","features":[634]},{"name":"TS_CHAR_REPLACEMENT","features":[634]},{"name":"TS_CH_FOLLOWING_DEL","features":[634]},{"name":"TS_CH_PRECEDING_DEL","features":[634]},{"name":"TS_DEFAULT_SELECTION","features":[634]},{"name":"TS_E_FORMAT","features":[634]},{"name":"TS_E_INVALIDPOINT","features":[634]},{"name":"TS_E_INVALIDPOS","features":[634]},{"name":"TS_E_NOINTERFACE","features":[634]},{"name":"TS_E_NOLAYOUT","features":[634]},{"name":"TS_E_NOLOCK","features":[634]},{"name":"TS_E_NOOBJECT","features":[634]},{"name":"TS_E_NOSELECTION","features":[634]},{"name":"TS_E_NOSERVICE","features":[634]},{"name":"TS_E_READONLY","features":[634]},{"name":"TS_E_SYNCHRONOUS","features":[634]},{"name":"TS_GEA_HIDDEN","features":[634]},{"name":"TS_GR_BACKWARD","features":[634]},{"name":"TS_GR_FORWARD","features":[634]},{"name":"TS_GTA_HIDDEN","features":[634]},{"name":"TS_IAS_NOQUERY","features":[634]},{"name":"TS_IAS_QUERYONLY","features":[634]},{"name":"TS_IE_COMPOSITION","features":[634]},{"name":"TS_IE_CORRECTION","features":[634]},{"name":"TS_LC_CHANGE","features":[634]},{"name":"TS_LC_CREATE","features":[634]},{"name":"TS_LC_DESTROY","features":[634]},{"name":"TS_LF_READ","features":[634]},{"name":"TS_LF_READWRITE","features":[634]},{"name":"TS_LF_SYNC","features":[634]},{"name":"TS_RT_HIDDEN","features":[634]},{"name":"TS_RT_OPAQUE","features":[634]},{"name":"TS_RT_PLAIN","features":[634]},{"name":"TS_RUNINFO","features":[634]},{"name":"TS_SD_BACKWARD","features":[634]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_ENABLED","features":[634]},{"name":"TS_SD_EMBEDDEDHANDWRITINGVIEW_VISIBLE","features":[634]},{"name":"TS_SD_FORWARD","features":[634]},{"name":"TS_SD_INPUTPANEMANUALDISPLAYENABLE","features":[634]},{"name":"TS_SD_LOADING","features":[634]},{"name":"TS_SD_READONLY","features":[634]},{"name":"TS_SD_RESERVED","features":[634]},{"name":"TS_SD_TKBAUTOCORRECTENABLE","features":[634]},{"name":"TS_SD_TKBPREDICTIONENABLE","features":[634]},{"name":"TS_SD_UIINTEGRATIONENABLE","features":[634]},{"name":"TS_SELECTIONSTYLE","features":[305,634]},{"name":"TS_SELECTION_ACP","features":[305,634]},{"name":"TS_SELECTION_ANCHOR","features":[305,634]},{"name":"TS_SHIFT_COUNT_HIDDEN","features":[634]},{"name":"TS_SHIFT_COUNT_ONLY","features":[634]},{"name":"TS_SHIFT_HALT_HIDDEN","features":[634]},{"name":"TS_SHIFT_HALT_VISIBLE","features":[634]},{"name":"TS_SS_DISJOINTSEL","features":[634]},{"name":"TS_SS_NOHIDDENTEXT","features":[634]},{"name":"TS_SS_REGIONS","features":[634]},{"name":"TS_SS_TKBAUTOCORRECTENABLE","features":[634]},{"name":"TS_SS_TKBPREDICTIONENABLE","features":[634]},{"name":"TS_SS_TRANSITORY","features":[634]},{"name":"TS_SS_UWPCONTROL","features":[634]},{"name":"TS_STATUS","features":[634]},{"name":"TS_STRF_END","features":[634]},{"name":"TS_STRF_MID","features":[634]},{"name":"TS_STRF_START","features":[634]},{"name":"TS_ST_CORRECTION","features":[634]},{"name":"TS_ST_NONE","features":[634]},{"name":"TS_S_ASYNC","features":[634]},{"name":"TS_TC_CORRECTION","features":[634]},{"name":"TS_TC_NONE","features":[634]},{"name":"TS_TEXTCHANGE","features":[634]},{"name":"TS_VCOOKIE_NUL","features":[634]},{"name":"TfActiveSelEnd","features":[634]},{"name":"TfAnchor","features":[634]},{"name":"TfCandidateResult","features":[634]},{"name":"TfGravity","features":[634]},{"name":"TfIntegratableCandidateListSelectionStyle","features":[634]},{"name":"TfLBBalloonStyle","features":[634]},{"name":"TfLBIClick","features":[634]},{"name":"TfLayoutCode","features":[634]},{"name":"TfSapiObject","features":[634]},{"name":"TfShiftDir","features":[634]},{"name":"TsActiveSelEnd","features":[634]},{"name":"TsGravity","features":[634]},{"name":"TsLayoutCode","features":[634]},{"name":"TsRunType","features":[634]},{"name":"TsShiftDir","features":[634]},{"name":"UninitLocalMsCtfMonitor","features":[634]}],"674":[{"name":"ACCEL","features":[367]},{"name":"ACCEL_VIRT_FLAGS","features":[367]},{"name":"ALTTABINFO","features":[305,367]},{"name":"ANIMATE_WINDOW_FLAGS","features":[367]},{"name":"ANIMATIONINFO","features":[367]},{"name":"ARW_BOTTOMLEFT","features":[367]},{"name":"ARW_BOTTOMRIGHT","features":[367]},{"name":"ARW_DOWN","features":[367]},{"name":"ARW_HIDE","features":[367]},{"name":"ARW_LEFT","features":[367]},{"name":"ARW_RIGHT","features":[367]},{"name":"ARW_STARTMASK","features":[367]},{"name":"ARW_STARTRIGHT","features":[367]},{"name":"ARW_STARTTOP","features":[367]},{"name":"ARW_TOPLEFT","features":[367]},{"name":"ARW_TOPRIGHT","features":[367]},{"name":"ARW_UP","features":[367]},{"name":"ASFW_ANY","features":[367]},{"name":"AUDIODESCRIPTION","features":[305,367]},{"name":"AW_ACTIVATE","features":[367]},{"name":"AW_BLEND","features":[367]},{"name":"AW_CENTER","features":[367]},{"name":"AW_HIDE","features":[367]},{"name":"AW_HOR_NEGATIVE","features":[367]},{"name":"AW_HOR_POSITIVE","features":[367]},{"name":"AW_SLIDE","features":[367]},{"name":"AW_VER_NEGATIVE","features":[367]},{"name":"AW_VER_POSITIVE","features":[367]},{"name":"AdjustWindowRect","features":[305,367]},{"name":"AdjustWindowRectEx","features":[305,367]},{"name":"AllowSetForegroundWindow","features":[305,367]},{"name":"AnimateWindow","features":[305,367]},{"name":"AnyPopup","features":[305,367]},{"name":"AppendMenuA","features":[305,367]},{"name":"AppendMenuW","features":[305,367]},{"name":"ArrangeIconicWindows","features":[305,367]},{"name":"BM_CLICK","features":[367]},{"name":"BM_GETCHECK","features":[367]},{"name":"BM_GETIMAGE","features":[367]},{"name":"BM_GETSTATE","features":[367]},{"name":"BM_SETCHECK","features":[367]},{"name":"BM_SETDONTCLICK","features":[367]},{"name":"BM_SETIMAGE","features":[367]},{"name":"BM_SETSTATE","features":[367]},{"name":"BM_SETSTYLE","features":[367]},{"name":"BN_CLICKED","features":[367]},{"name":"BN_DBLCLK","features":[367]},{"name":"BN_DISABLE","features":[367]},{"name":"BN_DOUBLECLICKED","features":[367]},{"name":"BN_HILITE","features":[367]},{"name":"BN_KILLFOCUS","features":[367]},{"name":"BN_PAINT","features":[367]},{"name":"BN_PUSHED","features":[367]},{"name":"BN_SETFOCUS","features":[367]},{"name":"BN_UNHILITE","features":[367]},{"name":"BN_UNPUSHED","features":[367]},{"name":"BROADCAST_QUERY_DENY","features":[367]},{"name":"BSF_MSGSRV32ISOK","features":[367]},{"name":"BSF_MSGSRV32ISOK_BIT","features":[367]},{"name":"BSM_INSTALLABLEDRIVERS","features":[367]},{"name":"BSM_NETDRIVER","features":[367]},{"name":"BSM_VXDS","features":[367]},{"name":"BST_FOCUS","features":[367]},{"name":"BST_PUSHED","features":[367]},{"name":"BS_3STATE","features":[367]},{"name":"BS_AUTO3STATE","features":[367]},{"name":"BS_AUTOCHECKBOX","features":[367]},{"name":"BS_AUTORADIOBUTTON","features":[367]},{"name":"BS_BITMAP","features":[367]},{"name":"BS_BOTTOM","features":[367]},{"name":"BS_CENTER","features":[367]},{"name":"BS_CHECKBOX","features":[367]},{"name":"BS_DEFPUSHBUTTON","features":[367]},{"name":"BS_FLAT","features":[367]},{"name":"BS_GROUPBOX","features":[367]},{"name":"BS_ICON","features":[367]},{"name":"BS_LEFT","features":[367]},{"name":"BS_LEFTTEXT","features":[367]},{"name":"BS_MULTILINE","features":[367]},{"name":"BS_NOTIFY","features":[367]},{"name":"BS_OWNERDRAW","features":[367]},{"name":"BS_PUSHBOX","features":[367]},{"name":"BS_PUSHBUTTON","features":[367]},{"name":"BS_PUSHLIKE","features":[367]},{"name":"BS_RADIOBUTTON","features":[367]},{"name":"BS_RIGHT","features":[367]},{"name":"BS_RIGHTBUTTON","features":[367]},{"name":"BS_TEXT","features":[367]},{"name":"BS_TOP","features":[367]},{"name":"BS_TYPEMASK","features":[367]},{"name":"BS_USERBUTTON","features":[367]},{"name":"BS_VCENTER","features":[367]},{"name":"BeginDeferWindowPos","features":[367]},{"name":"BringWindowToTop","features":[305,367]},{"name":"CALERT_SYSTEM","features":[367]},{"name":"CASCADE_WINDOWS_HOW","features":[367]},{"name":"CBN_CLOSEUP","features":[367]},{"name":"CBN_DBLCLK","features":[367]},{"name":"CBN_DROPDOWN","features":[367]},{"name":"CBN_EDITCHANGE","features":[367]},{"name":"CBN_EDITUPDATE","features":[367]},{"name":"CBN_ERRSPACE","features":[367]},{"name":"CBN_KILLFOCUS","features":[367]},{"name":"CBN_SELCHANGE","features":[367]},{"name":"CBN_SELENDCANCEL","features":[367]},{"name":"CBN_SELENDOK","features":[367]},{"name":"CBN_SETFOCUS","features":[367]},{"name":"CBS_AUTOHSCROLL","features":[367]},{"name":"CBS_DISABLENOSCROLL","features":[367]},{"name":"CBS_DROPDOWN","features":[367]},{"name":"CBS_DROPDOWNLIST","features":[367]},{"name":"CBS_HASSTRINGS","features":[367]},{"name":"CBS_LOWERCASE","features":[367]},{"name":"CBS_NOINTEGRALHEIGHT","features":[367]},{"name":"CBS_OEMCONVERT","features":[367]},{"name":"CBS_OWNERDRAWFIXED","features":[367]},{"name":"CBS_OWNERDRAWVARIABLE","features":[367]},{"name":"CBS_SIMPLE","features":[367]},{"name":"CBS_SORT","features":[367]},{"name":"CBS_UPPERCASE","features":[367]},{"name":"CBTACTIVATESTRUCT","features":[305,367]},{"name":"CBT_CREATEWNDA","features":[305,367]},{"name":"CBT_CREATEWNDW","features":[305,367]},{"name":"CB_ADDSTRING","features":[367]},{"name":"CB_DELETESTRING","features":[367]},{"name":"CB_DIR","features":[367]},{"name":"CB_ERR","features":[367]},{"name":"CB_ERRSPACE","features":[367]},{"name":"CB_FINDSTRING","features":[367]},{"name":"CB_FINDSTRINGEXACT","features":[367]},{"name":"CB_GETCOMBOBOXINFO","features":[367]},{"name":"CB_GETCOUNT","features":[367]},{"name":"CB_GETCURSEL","features":[367]},{"name":"CB_GETDROPPEDCONTROLRECT","features":[367]},{"name":"CB_GETDROPPEDSTATE","features":[367]},{"name":"CB_GETDROPPEDWIDTH","features":[367]},{"name":"CB_GETEDITSEL","features":[367]},{"name":"CB_GETEXTENDEDUI","features":[367]},{"name":"CB_GETHORIZONTALEXTENT","features":[367]},{"name":"CB_GETITEMDATA","features":[367]},{"name":"CB_GETITEMHEIGHT","features":[367]},{"name":"CB_GETLBTEXT","features":[367]},{"name":"CB_GETLBTEXTLEN","features":[367]},{"name":"CB_GETLOCALE","features":[367]},{"name":"CB_GETTOPINDEX","features":[367]},{"name":"CB_INITSTORAGE","features":[367]},{"name":"CB_INSERTSTRING","features":[367]},{"name":"CB_LIMITTEXT","features":[367]},{"name":"CB_MSGMAX","features":[367]},{"name":"CB_MULTIPLEADDSTRING","features":[367]},{"name":"CB_OKAY","features":[367]},{"name":"CB_RESETCONTENT","features":[367]},{"name":"CB_SELECTSTRING","features":[367]},{"name":"CB_SETCURSEL","features":[367]},{"name":"CB_SETDROPPEDWIDTH","features":[367]},{"name":"CB_SETEDITSEL","features":[367]},{"name":"CB_SETEXTENDEDUI","features":[367]},{"name":"CB_SETHORIZONTALEXTENT","features":[367]},{"name":"CB_SETITEMDATA","features":[367]},{"name":"CB_SETITEMHEIGHT","features":[367]},{"name":"CB_SETLOCALE","features":[367]},{"name":"CB_SETTOPINDEX","features":[367]},{"name":"CB_SHOWDROPDOWN","features":[367]},{"name":"CCHILDREN_SCROLLBAR","features":[367]},{"name":"CCHILDREN_TITLEBAR","features":[367]},{"name":"CHANGEFILTERSTRUCT","features":[367]},{"name":"CHANGE_WINDOW_MESSAGE_FILTER_FLAGS","features":[367]},{"name":"CHILDID_SELF","features":[367]},{"name":"CLIENTCREATESTRUCT","features":[305,367]},{"name":"CONSOLE_APPLICATION_16BIT","features":[367]},{"name":"CONSOLE_CARET_SELECTION","features":[367]},{"name":"CONSOLE_CARET_VISIBLE","features":[367]},{"name":"CONTACTVISUALIZATION_OFF","features":[367]},{"name":"CONTACTVISUALIZATION_ON","features":[367]},{"name":"CONTACTVISUALIZATION_PRESENTATIONMODE","features":[367]},{"name":"CREATEPROCESS_MANIFEST_RESOURCE_ID","features":[367]},{"name":"CREATESTRUCTA","features":[305,367]},{"name":"CREATESTRUCTW","features":[305,367]},{"name":"CSOUND_SYSTEM","features":[367]},{"name":"CS_BYTEALIGNCLIENT","features":[367]},{"name":"CS_BYTEALIGNWINDOW","features":[367]},{"name":"CS_CLASSDC","features":[367]},{"name":"CS_DBLCLKS","features":[367]},{"name":"CS_DROPSHADOW","features":[367]},{"name":"CS_GLOBALCLASS","features":[367]},{"name":"CS_HREDRAW","features":[367]},{"name":"CS_IME","features":[367]},{"name":"CS_NOCLOSE","features":[367]},{"name":"CS_OWNDC","features":[367]},{"name":"CS_PARENTDC","features":[367]},{"name":"CS_SAVEBITS","features":[367]},{"name":"CS_VREDRAW","features":[367]},{"name":"CTLCOLOR_BTN","features":[367]},{"name":"CTLCOLOR_DLG","features":[367]},{"name":"CTLCOLOR_EDIT","features":[367]},{"name":"CTLCOLOR_LISTBOX","features":[367]},{"name":"CTLCOLOR_MAX","features":[367]},{"name":"CTLCOLOR_MSGBOX","features":[367]},{"name":"CTLCOLOR_SCROLLBAR","features":[367]},{"name":"CTLCOLOR_STATIC","features":[367]},{"name":"CURSORINFO","features":[305,367]},{"name":"CURSORINFO_FLAGS","features":[367]},{"name":"CURSORSHAPE","features":[367]},{"name":"CURSOR_CREATION_SCALING_DEFAULT","features":[367]},{"name":"CURSOR_CREATION_SCALING_NONE","features":[367]},{"name":"CURSOR_SHOWING","features":[367]},{"name":"CURSOR_SUPPRESSED","features":[367]},{"name":"CWF_CREATE_ONLY","features":[367]},{"name":"CWPRETSTRUCT","features":[305,367]},{"name":"CWPSTRUCT","features":[305,367]},{"name":"CWP_ALL","features":[367]},{"name":"CWP_FLAGS","features":[367]},{"name":"CWP_SKIPDISABLED","features":[367]},{"name":"CWP_SKIPINVISIBLE","features":[367]},{"name":"CWP_SKIPTRANSPARENT","features":[367]},{"name":"CW_USEDEFAULT","features":[367]},{"name":"CalculatePopupWindowPosition","features":[305,367]},{"name":"CallMsgFilterA","features":[305,367]},{"name":"CallMsgFilterW","features":[305,367]},{"name":"CallNextHookEx","features":[305,367]},{"name":"CallWindowProcA","features":[305,367]},{"name":"CallWindowProcW","features":[305,367]},{"name":"CancelShutdown","features":[305,367]},{"name":"CascadeWindows","features":[305,367]},{"name":"ChangeMenuA","features":[305,367]},{"name":"ChangeMenuW","features":[305,367]},{"name":"ChangeWindowMessageFilter","features":[305,367]},{"name":"ChangeWindowMessageFilterEx","features":[305,367]},{"name":"CharLowerA","features":[367]},{"name":"CharLowerBuffA","features":[367]},{"name":"CharLowerBuffW","features":[367]},{"name":"CharLowerW","features":[367]},{"name":"CharNextA","features":[367]},{"name":"CharNextExA","features":[367]},{"name":"CharNextW","features":[367]},{"name":"CharPrevA","features":[367]},{"name":"CharPrevExA","features":[367]},{"name":"CharPrevW","features":[367]},{"name":"CharToOemA","features":[305,367]},{"name":"CharToOemBuffA","features":[305,367]},{"name":"CharToOemBuffW","features":[305,367]},{"name":"CharToOemW","features":[305,367]},{"name":"CharUpperA","features":[367]},{"name":"CharUpperBuffA","features":[367]},{"name":"CharUpperBuffW","features":[367]},{"name":"CharUpperW","features":[367]},{"name":"CheckMenuItem","features":[367]},{"name":"CheckMenuRadioItem","features":[305,367]},{"name":"ChildWindowFromPoint","features":[305,367]},{"name":"ChildWindowFromPointEx","features":[305,367]},{"name":"ClipCursor","features":[305,367]},{"name":"CloseWindow","features":[305,367]},{"name":"CopyAcceleratorTableA","features":[367]},{"name":"CopyAcceleratorTableW","features":[367]},{"name":"CopyIcon","features":[367]},{"name":"CopyImage","features":[305,367]},{"name":"CreateAcceleratorTableA","features":[367]},{"name":"CreateAcceleratorTableW","features":[367]},{"name":"CreateCaret","features":[305,316,367]},{"name":"CreateCursor","features":[305,367]},{"name":"CreateDialogIndirectParamA","features":[305,367]},{"name":"CreateDialogIndirectParamW","features":[305,367]},{"name":"CreateDialogParamA","features":[305,367]},{"name":"CreateDialogParamW","features":[305,367]},{"name":"CreateIcon","features":[305,367]},{"name":"CreateIconFromResource","features":[305,367]},{"name":"CreateIconFromResourceEx","features":[305,367]},{"name":"CreateIconIndirect","features":[305,316,367]},{"name":"CreateMDIWindowA","features":[305,367]},{"name":"CreateMDIWindowW","features":[305,367]},{"name":"CreateMenu","features":[367]},{"name":"CreatePopupMenu","features":[367]},{"name":"CreateResourceIndexer","features":[367]},{"name":"CreateWindowExA","features":[305,367]},{"name":"CreateWindowExW","features":[305,367]},{"name":"DBTF_MEDIA","features":[367]},{"name":"DBTF_NET","features":[367]},{"name":"DBTF_RESOURCE","features":[367]},{"name":"DBTF_SLOWNET","features":[367]},{"name":"DBTF_XPORT","features":[367]},{"name":"DBT_APPYBEGIN","features":[367]},{"name":"DBT_APPYEND","features":[367]},{"name":"DBT_CONFIGCHANGECANCELED","features":[367]},{"name":"DBT_CONFIGCHANGED","features":[367]},{"name":"DBT_CONFIGMGAPI32","features":[367]},{"name":"DBT_CONFIGMGPRIVATE","features":[367]},{"name":"DBT_CUSTOMEVENT","features":[367]},{"name":"DBT_DEVICEARRIVAL","features":[367]},{"name":"DBT_DEVICEQUERYREMOVE","features":[367]},{"name":"DBT_DEVICEQUERYREMOVEFAILED","features":[367]},{"name":"DBT_DEVICEREMOVECOMPLETE","features":[367]},{"name":"DBT_DEVICEREMOVEPENDING","features":[367]},{"name":"DBT_DEVICETYPESPECIFIC","features":[367]},{"name":"DBT_DEVNODES_CHANGED","features":[367]},{"name":"DBT_DEVTYP_DEVICEINTERFACE","features":[367]},{"name":"DBT_DEVTYP_DEVNODE","features":[367]},{"name":"DBT_DEVTYP_HANDLE","features":[367]},{"name":"DBT_DEVTYP_NET","features":[367]},{"name":"DBT_DEVTYP_OEM","features":[367]},{"name":"DBT_DEVTYP_PORT","features":[367]},{"name":"DBT_DEVTYP_VOLUME","features":[367]},{"name":"DBT_LOW_DISK_SPACE","features":[367]},{"name":"DBT_MONITORCHANGE","features":[367]},{"name":"DBT_NO_DISK_SPACE","features":[367]},{"name":"DBT_QUERYCHANGECONFIG","features":[367]},{"name":"DBT_SHELLLOGGEDON","features":[367]},{"name":"DBT_USERDEFINED","features":[367]},{"name":"DBT_VOLLOCKLOCKFAILED","features":[367]},{"name":"DBT_VOLLOCKLOCKRELEASED","features":[367]},{"name":"DBT_VOLLOCKLOCKTAKEN","features":[367]},{"name":"DBT_VOLLOCKQUERYLOCK","features":[367]},{"name":"DBT_VOLLOCKQUERYUNLOCK","features":[367]},{"name":"DBT_VOLLOCKUNLOCKFAILED","features":[367]},{"name":"DBT_VPOWERDAPI","features":[367]},{"name":"DBT_VXDINITCOMPLETE","features":[367]},{"name":"DCX_EXCLUDEUPDATE","features":[367]},{"name":"DC_HASDEFID","features":[367]},{"name":"DEBUGHOOKINFO","features":[305,367]},{"name":"DEVICE_EVENT_BECOMING_READY","features":[367]},{"name":"DEVICE_EVENT_EXTERNAL_REQUEST","features":[367]},{"name":"DEVICE_EVENT_GENERIC_DATA","features":[367]},{"name":"DEVICE_EVENT_MOUNT","features":[367]},{"name":"DEVICE_EVENT_RBC_DATA","features":[367]},{"name":"DEVICE_NOTIFY_ALL_INTERFACE_CLASSES","features":[367]},{"name":"DEVICE_NOTIFY_CALLBACK","features":[367]},{"name":"DEVICE_NOTIFY_SERVICE_HANDLE","features":[367]},{"name":"DEVICE_NOTIFY_WINDOW_HANDLE","features":[367]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_A","features":[367]},{"name":"DEV_BROADCAST_DEVICEINTERFACE_W","features":[367]},{"name":"DEV_BROADCAST_DEVNODE","features":[367]},{"name":"DEV_BROADCAST_HANDLE","features":[305,367]},{"name":"DEV_BROADCAST_HANDLE32","features":[367]},{"name":"DEV_BROADCAST_HANDLE64","features":[367]},{"name":"DEV_BROADCAST_HDR","features":[367]},{"name":"DEV_BROADCAST_HDR_DEVICE_TYPE","features":[367]},{"name":"DEV_BROADCAST_NET","features":[367]},{"name":"DEV_BROADCAST_OEM","features":[367]},{"name":"DEV_BROADCAST_PORT_A","features":[367]},{"name":"DEV_BROADCAST_PORT_W","features":[367]},{"name":"DEV_BROADCAST_VOLUME","features":[367]},{"name":"DEV_BROADCAST_VOLUME_FLAGS","features":[367]},{"name":"DIFFERENCE","features":[367]},{"name":"DISK_HEALTH_NOTIFICATION_DATA","features":[367]},{"name":"DI_COMPAT","features":[367]},{"name":"DI_DEFAULTSIZE","features":[367]},{"name":"DI_FLAGS","features":[367]},{"name":"DI_IMAGE","features":[367]},{"name":"DI_MASK","features":[367]},{"name":"DI_NOMIRROR","features":[367]},{"name":"DI_NORMAL","features":[367]},{"name":"DLGC_BUTTON","features":[367]},{"name":"DLGC_DEFPUSHBUTTON","features":[367]},{"name":"DLGC_HASSETSEL","features":[367]},{"name":"DLGC_RADIOBUTTON","features":[367]},{"name":"DLGC_STATIC","features":[367]},{"name":"DLGC_UNDEFPUSHBUTTON","features":[367]},{"name":"DLGC_WANTALLKEYS","features":[367]},{"name":"DLGC_WANTARROWS","features":[367]},{"name":"DLGC_WANTCHARS","features":[367]},{"name":"DLGC_WANTMESSAGE","features":[367]},{"name":"DLGC_WANTTAB","features":[367]},{"name":"DLGITEMTEMPLATE","features":[367]},{"name":"DLGPROC","features":[305,367]},{"name":"DLGTEMPLATE","features":[367]},{"name":"DLGWINDOWEXTRA","features":[367]},{"name":"DM_GETDEFID","features":[367]},{"name":"DM_POINTERHITTEST","features":[367]},{"name":"DM_REPOSITION","features":[367]},{"name":"DM_SETDEFID","features":[367]},{"name":"DOF_DIRECTORY","features":[367]},{"name":"DOF_DOCUMENT","features":[367]},{"name":"DOF_EXECUTABLE","features":[367]},{"name":"DOF_MULTIPLE","features":[367]},{"name":"DOF_PROGMAN","features":[367]},{"name":"DOF_SHELLDATA","features":[367]},{"name":"DO_DROPFILE","features":[367]},{"name":"DO_PRINTFILE","features":[367]},{"name":"DROPSTRUCT","features":[305,367]},{"name":"DS_3DLOOK","features":[367]},{"name":"DS_ABSALIGN","features":[367]},{"name":"DS_CENTER","features":[367]},{"name":"DS_CENTERMOUSE","features":[367]},{"name":"DS_CONTEXTHELP","features":[367]},{"name":"DS_CONTROL","features":[367]},{"name":"DS_FIXEDSYS","features":[367]},{"name":"DS_LOCALEDIT","features":[367]},{"name":"DS_MODALFRAME","features":[367]},{"name":"DS_NOFAILCREATE","features":[367]},{"name":"DS_NOIDLEMSG","features":[367]},{"name":"DS_SETFONT","features":[367]},{"name":"DS_SETFOREGROUND","features":[367]},{"name":"DS_SYSMODAL","features":[367]},{"name":"DS_USEPIXELS","features":[367]},{"name":"DWLP_MSGRESULT","features":[367]},{"name":"DWL_DLGPROC","features":[367]},{"name":"DWL_MSGRESULT","features":[367]},{"name":"DWL_USER","features":[367]},{"name":"DefDlgProcA","features":[305,367]},{"name":"DefDlgProcW","features":[305,367]},{"name":"DefFrameProcA","features":[305,367]},{"name":"DefFrameProcW","features":[305,367]},{"name":"DefMDIChildProcA","features":[305,367]},{"name":"DefMDIChildProcW","features":[305,367]},{"name":"DefWindowProcA","features":[305,367]},{"name":"DefWindowProcW","features":[305,367]},{"name":"DeferWindowPos","features":[305,367]},{"name":"DeleteMenu","features":[305,367]},{"name":"DeregisterShellHookWindow","features":[305,367]},{"name":"DestroyAcceleratorTable","features":[305,367]},{"name":"DestroyCaret","features":[305,367]},{"name":"DestroyCursor","features":[305,367]},{"name":"DestroyIcon","features":[305,367]},{"name":"DestroyIndexedResults","features":[367]},{"name":"DestroyMenu","features":[305,367]},{"name":"DestroyResourceIndexer","features":[367]},{"name":"DestroyWindow","features":[305,367]},{"name":"DialogBoxIndirectParamA","features":[305,367]},{"name":"DialogBoxIndirectParamW","features":[305,367]},{"name":"DialogBoxParamA","features":[305,367]},{"name":"DialogBoxParamW","features":[305,367]},{"name":"DisableProcessWindowsGhosting","features":[367]},{"name":"DispatchMessageA","features":[305,367]},{"name":"DispatchMessageW","features":[305,367]},{"name":"DragObject","features":[305,367]},{"name":"DrawIcon","features":[305,316,367]},{"name":"DrawIconEx","features":[305,316,367]},{"name":"DrawMenuBar","features":[305,367]},{"name":"EC_LEFTMARGIN","features":[367]},{"name":"EC_RIGHTMARGIN","features":[367]},{"name":"EC_USEFONTINFO","features":[367]},{"name":"EDD_GET_DEVICE_INTERFACE_NAME","features":[367]},{"name":"EDIT_CONTROL_FEATURE","features":[367]},{"name":"EDIT_CONTROL_FEATURE_ENTERPRISE_DATA_PROTECTION_PASTE_SUPPORT","features":[367]},{"name":"EDIT_CONTROL_FEATURE_PASTE_NOTIFICATIONS","features":[367]},{"name":"EIMES_CANCELCOMPSTRINFOCUS","features":[367]},{"name":"EIMES_COMPLETECOMPSTRKILLFOCUS","features":[367]},{"name":"EIMES_GETCOMPSTRATONCE","features":[367]},{"name":"EMSIS_COMPOSITIONSTRING","features":[367]},{"name":"ENDSESSION_CLOSEAPP","features":[367]},{"name":"ENDSESSION_CRITICAL","features":[367]},{"name":"ENDSESSION_LOGOFF","features":[367]},{"name":"EN_AFTER_PASTE","features":[367]},{"name":"EN_ALIGN_LTR_EC","features":[367]},{"name":"EN_ALIGN_RTL_EC","features":[367]},{"name":"EN_BEFORE_PASTE","features":[367]},{"name":"EN_CHANGE","features":[367]},{"name":"EN_ERRSPACE","features":[367]},{"name":"EN_HSCROLL","features":[367]},{"name":"EN_KILLFOCUS","features":[367]},{"name":"EN_MAXTEXT","features":[367]},{"name":"EN_SETFOCUS","features":[367]},{"name":"EN_UPDATE","features":[367]},{"name":"EN_VSCROLL","features":[367]},{"name":"ES_AUTOHSCROLL","features":[367]},{"name":"ES_AUTOVSCROLL","features":[367]},{"name":"ES_CENTER","features":[367]},{"name":"ES_LEFT","features":[367]},{"name":"ES_LOWERCASE","features":[367]},{"name":"ES_MULTILINE","features":[367]},{"name":"ES_NOHIDESEL","features":[367]},{"name":"ES_NUMBER","features":[367]},{"name":"ES_OEMCONVERT","features":[367]},{"name":"ES_PASSWORD","features":[367]},{"name":"ES_READONLY","features":[367]},{"name":"ES_RIGHT","features":[367]},{"name":"ES_UPPERCASE","features":[367]},{"name":"ES_WANTRETURN","features":[367]},{"name":"EVENTMSG","features":[305,367]},{"name":"EVENT_AIA_END","features":[367]},{"name":"EVENT_AIA_START","features":[367]},{"name":"EVENT_CONSOLE_CARET","features":[367]},{"name":"EVENT_CONSOLE_END","features":[367]},{"name":"EVENT_CONSOLE_END_APPLICATION","features":[367]},{"name":"EVENT_CONSOLE_LAYOUT","features":[367]},{"name":"EVENT_CONSOLE_START_APPLICATION","features":[367]},{"name":"EVENT_CONSOLE_UPDATE_REGION","features":[367]},{"name":"EVENT_CONSOLE_UPDATE_SCROLL","features":[367]},{"name":"EVENT_CONSOLE_UPDATE_SIMPLE","features":[367]},{"name":"EVENT_MAX","features":[367]},{"name":"EVENT_MIN","features":[367]},{"name":"EVENT_OBJECT_ACCELERATORCHANGE","features":[367]},{"name":"EVENT_OBJECT_CLOAKED","features":[367]},{"name":"EVENT_OBJECT_CONTENTSCROLLED","features":[367]},{"name":"EVENT_OBJECT_CREATE","features":[367]},{"name":"EVENT_OBJECT_DEFACTIONCHANGE","features":[367]},{"name":"EVENT_OBJECT_DESCRIPTIONCHANGE","features":[367]},{"name":"EVENT_OBJECT_DESTROY","features":[367]},{"name":"EVENT_OBJECT_DRAGCANCEL","features":[367]},{"name":"EVENT_OBJECT_DRAGCOMPLETE","features":[367]},{"name":"EVENT_OBJECT_DRAGDROPPED","features":[367]},{"name":"EVENT_OBJECT_DRAGENTER","features":[367]},{"name":"EVENT_OBJECT_DRAGLEAVE","features":[367]},{"name":"EVENT_OBJECT_DRAGSTART","features":[367]},{"name":"EVENT_OBJECT_END","features":[367]},{"name":"EVENT_OBJECT_FOCUS","features":[367]},{"name":"EVENT_OBJECT_HELPCHANGE","features":[367]},{"name":"EVENT_OBJECT_HIDE","features":[367]},{"name":"EVENT_OBJECT_HOSTEDOBJECTSINVALIDATED","features":[367]},{"name":"EVENT_OBJECT_IME_CHANGE","features":[367]},{"name":"EVENT_OBJECT_IME_HIDE","features":[367]},{"name":"EVENT_OBJECT_IME_SHOW","features":[367]},{"name":"EVENT_OBJECT_INVOKED","features":[367]},{"name":"EVENT_OBJECT_LIVEREGIONCHANGED","features":[367]},{"name":"EVENT_OBJECT_LOCATIONCHANGE","features":[367]},{"name":"EVENT_OBJECT_NAMECHANGE","features":[367]},{"name":"EVENT_OBJECT_PARENTCHANGE","features":[367]},{"name":"EVENT_OBJECT_REORDER","features":[367]},{"name":"EVENT_OBJECT_SELECTION","features":[367]},{"name":"EVENT_OBJECT_SELECTIONADD","features":[367]},{"name":"EVENT_OBJECT_SELECTIONREMOVE","features":[367]},{"name":"EVENT_OBJECT_SELECTIONWITHIN","features":[367]},{"name":"EVENT_OBJECT_SHOW","features":[367]},{"name":"EVENT_OBJECT_STATECHANGE","features":[367]},{"name":"EVENT_OBJECT_TEXTEDIT_CONVERSIONTARGETCHANGED","features":[367]},{"name":"EVENT_OBJECT_TEXTSELECTIONCHANGED","features":[367]},{"name":"EVENT_OBJECT_UNCLOAKED","features":[367]},{"name":"EVENT_OBJECT_VALUECHANGE","features":[367]},{"name":"EVENT_OEM_DEFINED_END","features":[367]},{"name":"EVENT_OEM_DEFINED_START","features":[367]},{"name":"EVENT_SYSTEM_ALERT","features":[367]},{"name":"EVENT_SYSTEM_ARRANGMENTPREVIEW","features":[367]},{"name":"EVENT_SYSTEM_CAPTUREEND","features":[367]},{"name":"EVENT_SYSTEM_CAPTURESTART","features":[367]},{"name":"EVENT_SYSTEM_CONTEXTHELPEND","features":[367]},{"name":"EVENT_SYSTEM_CONTEXTHELPSTART","features":[367]},{"name":"EVENT_SYSTEM_DESKTOPSWITCH","features":[367]},{"name":"EVENT_SYSTEM_DIALOGEND","features":[367]},{"name":"EVENT_SYSTEM_DIALOGSTART","features":[367]},{"name":"EVENT_SYSTEM_DRAGDROPEND","features":[367]},{"name":"EVENT_SYSTEM_DRAGDROPSTART","features":[367]},{"name":"EVENT_SYSTEM_END","features":[367]},{"name":"EVENT_SYSTEM_FOREGROUND","features":[367]},{"name":"EVENT_SYSTEM_IME_KEY_NOTIFICATION","features":[367]},{"name":"EVENT_SYSTEM_MENUEND","features":[367]},{"name":"EVENT_SYSTEM_MENUPOPUPEND","features":[367]},{"name":"EVENT_SYSTEM_MENUPOPUPSTART","features":[367]},{"name":"EVENT_SYSTEM_MENUSTART","features":[367]},{"name":"EVENT_SYSTEM_MINIMIZEEND","features":[367]},{"name":"EVENT_SYSTEM_MINIMIZESTART","features":[367]},{"name":"EVENT_SYSTEM_MOVESIZEEND","features":[367]},{"name":"EVENT_SYSTEM_MOVESIZESTART","features":[367]},{"name":"EVENT_SYSTEM_SCROLLINGEND","features":[367]},{"name":"EVENT_SYSTEM_SCROLLINGSTART","features":[367]},{"name":"EVENT_SYSTEM_SOUND","features":[367]},{"name":"EVENT_SYSTEM_SWITCHEND","features":[367]},{"name":"EVENT_SYSTEM_SWITCHER_APPDROPPED","features":[367]},{"name":"EVENT_SYSTEM_SWITCHER_APPGRABBED","features":[367]},{"name":"EVENT_SYSTEM_SWITCHER_APPOVERTARGET","features":[367]},{"name":"EVENT_SYSTEM_SWITCHER_CANCELLED","features":[367]},{"name":"EVENT_SYSTEM_SWITCHSTART","features":[367]},{"name":"EVENT_UIA_EVENTID_END","features":[367]},{"name":"EVENT_UIA_EVENTID_START","features":[367]},{"name":"EVENT_UIA_PROPID_END","features":[367]},{"name":"EVENT_UIA_PROPID_START","features":[367]},{"name":"EnableMenuItem","features":[305,367]},{"name":"EndDeferWindowPos","features":[305,367]},{"name":"EndDialog","features":[305,367]},{"name":"EndMenu","features":[305,367]},{"name":"EnumChildWindows","features":[305,367]},{"name":"EnumPropsA","features":[305,367]},{"name":"EnumPropsExA","features":[305,367]},{"name":"EnumPropsExW","features":[305,367]},{"name":"EnumPropsW","features":[305,367]},{"name":"EnumThreadWindows","features":[305,367]},{"name":"EnumWindows","features":[305,367]},{"name":"FALT","features":[367]},{"name":"FAPPCOMMAND_KEY","features":[367]},{"name":"FAPPCOMMAND_MASK","features":[367]},{"name":"FAPPCOMMAND_MOUSE","features":[367]},{"name":"FAPPCOMMAND_OEM","features":[367]},{"name":"FCONTROL","features":[367]},{"name":"FE_FONTSMOOTHINGCLEARTYPE","features":[367]},{"name":"FE_FONTSMOOTHINGORIENTATIONBGR","features":[367]},{"name":"FE_FONTSMOOTHINGORIENTATIONRGB","features":[367]},{"name":"FE_FONTSMOOTHINGSTANDARD","features":[367]},{"name":"FKF_AVAILABLE","features":[367]},{"name":"FKF_CLICKON","features":[367]},{"name":"FKF_CONFIRMHOTKEY","features":[367]},{"name":"FKF_FILTERKEYSON","features":[367]},{"name":"FKF_HOTKEYACTIVE","features":[367]},{"name":"FKF_HOTKEYSOUND","features":[367]},{"name":"FKF_INDICATOR","features":[367]},{"name":"FLASHWINFO","features":[305,367]},{"name":"FLASHWINFO_FLAGS","features":[367]},{"name":"FLASHW_ALL","features":[367]},{"name":"FLASHW_CAPTION","features":[367]},{"name":"FLASHW_STOP","features":[367]},{"name":"FLASHW_TIMER","features":[367]},{"name":"FLASHW_TIMERNOFG","features":[367]},{"name":"FLASHW_TRAY","features":[367]},{"name":"FNOINVERT","features":[367]},{"name":"FOREGROUND_WINDOW_LOCK_CODE","features":[367]},{"name":"FSHIFT","features":[367]},{"name":"FVIRTKEY","features":[367]},{"name":"FindWindowA","features":[305,367]},{"name":"FindWindowExA","features":[305,367]},{"name":"FindWindowExW","features":[305,367]},{"name":"FindWindowW","features":[305,367]},{"name":"FlashWindow","features":[305,367]},{"name":"FlashWindowEx","features":[305,367]},{"name":"GA_PARENT","features":[367]},{"name":"GA_ROOT","features":[367]},{"name":"GA_ROOTOWNER","features":[367]},{"name":"GCF_INCLUDE_ANCESTORS","features":[367]},{"name":"GCLP_HBRBACKGROUND","features":[367]},{"name":"GCLP_HCURSOR","features":[367]},{"name":"GCLP_HICON","features":[367]},{"name":"GCLP_HICONSM","features":[367]},{"name":"GCLP_HMODULE","features":[367]},{"name":"GCLP_MENUNAME","features":[367]},{"name":"GCLP_WNDPROC","features":[367]},{"name":"GCL_CBCLSEXTRA","features":[367]},{"name":"GCL_CBWNDEXTRA","features":[367]},{"name":"GCL_HBRBACKGROUND","features":[367]},{"name":"GCL_HCURSOR","features":[367]},{"name":"GCL_HICON","features":[367]},{"name":"GCL_HICONSM","features":[367]},{"name":"GCL_HMODULE","features":[367]},{"name":"GCL_MENUNAME","features":[367]},{"name":"GCL_STYLE","features":[367]},{"name":"GCL_WNDPROC","features":[367]},{"name":"GCW_ATOM","features":[367]},{"name":"GDI_IMAGE_TYPE","features":[367]},{"name":"GESTURECONFIGMAXCOUNT","features":[367]},{"name":"GESTUREVISUALIZATION_DOUBLETAP","features":[367]},{"name":"GESTUREVISUALIZATION_OFF","features":[367]},{"name":"GESTUREVISUALIZATION_ON","features":[367]},{"name":"GESTUREVISUALIZATION_PRESSANDHOLD","features":[367]},{"name":"GESTUREVISUALIZATION_PRESSANDTAP","features":[367]},{"name":"GESTUREVISUALIZATION_RIGHTTAP","features":[367]},{"name":"GESTUREVISUALIZATION_TAP","features":[367]},{"name":"GETCLIPBMETADATA","features":[305,367]},{"name":"GET_ANCESTOR_FLAGS","features":[367]},{"name":"GET_CLASS_LONG_INDEX","features":[367]},{"name":"GET_MENU_DEFAULT_ITEM_FLAGS","features":[367]},{"name":"GET_WINDOW_CMD","features":[367]},{"name":"GF_BEGIN","features":[367]},{"name":"GF_END","features":[367]},{"name":"GF_INERTIA","features":[367]},{"name":"GIDC_ARRIVAL","features":[367]},{"name":"GIDC_REMOVAL","features":[367]},{"name":"GMDI_GOINTOPOPUPS","features":[367]},{"name":"GMDI_USEDISABLED","features":[367]},{"name":"GUID_DEVICE_EVENT_RBC","features":[367]},{"name":"GUID_IO_CDROM_EXCLUSIVE_LOCK","features":[367]},{"name":"GUID_IO_CDROM_EXCLUSIVE_UNLOCK","features":[367]},{"name":"GUID_IO_DEVICE_BECOMING_READY","features":[367]},{"name":"GUID_IO_DEVICE_EXTERNAL_REQUEST","features":[367]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL","features":[367]},{"name":"GUID_IO_DISK_CLONE_ARRIVAL_INFORMATION","features":[367]},{"name":"GUID_IO_DISK_HEALTH_NOTIFICATION","features":[367]},{"name":"GUID_IO_DISK_LAYOUT_CHANGE","features":[367]},{"name":"GUID_IO_DRIVE_REQUIRES_CLEANING","features":[367]},{"name":"GUID_IO_MEDIA_ARRIVAL","features":[367]},{"name":"GUID_IO_MEDIA_EJECT_REQUEST","features":[367]},{"name":"GUID_IO_MEDIA_REMOVAL","features":[367]},{"name":"GUID_IO_TAPE_ERASE","features":[367]},{"name":"GUID_IO_VOLUME_BACKGROUND_FORMAT","features":[367]},{"name":"GUID_IO_VOLUME_CHANGE","features":[367]},{"name":"GUID_IO_VOLUME_CHANGE_SIZE","features":[367]},{"name":"GUID_IO_VOLUME_DEVICE_INTERFACE","features":[367]},{"name":"GUID_IO_VOLUME_DISMOUNT","features":[367]},{"name":"GUID_IO_VOLUME_DISMOUNT_FAILED","features":[367]},{"name":"GUID_IO_VOLUME_FORCE_CLOSED","features":[367]},{"name":"GUID_IO_VOLUME_FVE_STATUS_CHANGE","features":[367]},{"name":"GUID_IO_VOLUME_INFO_MAKE_COMPAT","features":[367]},{"name":"GUID_IO_VOLUME_LOCK","features":[367]},{"name":"GUID_IO_VOLUME_LOCK_FAILED","features":[367]},{"name":"GUID_IO_VOLUME_MOUNT","features":[367]},{"name":"GUID_IO_VOLUME_NAME_CHANGE","features":[367]},{"name":"GUID_IO_VOLUME_NEED_CHKDSK","features":[367]},{"name":"GUID_IO_VOLUME_PHYSICAL_CONFIGURATION_CHANGE","features":[367]},{"name":"GUID_IO_VOLUME_PREPARING_EJECT","features":[367]},{"name":"GUID_IO_VOLUME_UNIQUE_ID_CHANGE","features":[367]},{"name":"GUID_IO_VOLUME_UNLOCK","features":[367]},{"name":"GUID_IO_VOLUME_WEARING_OUT","features":[367]},{"name":"GUID_IO_VOLUME_WORM_NEAR_FULL","features":[367]},{"name":"GUITHREADINFO","features":[305,367]},{"name":"GUITHREADINFO_FLAGS","features":[367]},{"name":"GUI_16BITTASK","features":[367]},{"name":"GUI_CARETBLINKING","features":[367]},{"name":"GUI_INMENUMODE","features":[367]},{"name":"GUI_INMOVESIZE","features":[367]},{"name":"GUI_POPUPMENUMODE","features":[367]},{"name":"GUI_SYSTEMMENUMODE","features":[367]},{"name":"GWFS_INCLUDE_ANCESTORS","features":[367]},{"name":"GWLP_HINSTANCE","features":[367]},{"name":"GWLP_HWNDPARENT","features":[367]},{"name":"GWLP_ID","features":[367]},{"name":"GWLP_USERDATA","features":[367]},{"name":"GWLP_WNDPROC","features":[367]},{"name":"GWL_EXSTYLE","features":[367]},{"name":"GWL_HINSTANCE","features":[367]},{"name":"GWL_HWNDPARENT","features":[367]},{"name":"GWL_ID","features":[367]},{"name":"GWL_STYLE","features":[367]},{"name":"GWL_USERDATA","features":[367]},{"name":"GWL_WNDPROC","features":[367]},{"name":"GW_CHILD","features":[367]},{"name":"GW_ENABLEDPOPUP","features":[367]},{"name":"GW_HWNDFIRST","features":[367]},{"name":"GW_HWNDLAST","features":[367]},{"name":"GW_HWNDNEXT","features":[367]},{"name":"GW_HWNDPREV","features":[367]},{"name":"GW_MAX","features":[367]},{"name":"GW_OWNER","features":[367]},{"name":"GetAltTabInfoA","features":[305,367]},{"name":"GetAltTabInfoW","features":[305,367]},{"name":"GetAncestor","features":[305,367]},{"name":"GetCaretBlinkTime","features":[367]},{"name":"GetCaretPos","features":[305,367]},{"name":"GetClassInfoA","features":[305,316,367]},{"name":"GetClassInfoExA","features":[305,316,367]},{"name":"GetClassInfoExW","features":[305,316,367]},{"name":"GetClassInfoW","features":[305,316,367]},{"name":"GetClassLongA","features":[305,367]},{"name":"GetClassLongPtrA","features":[305,367]},{"name":"GetClassLongPtrW","features":[305,367]},{"name":"GetClassLongW","features":[305,367]},{"name":"GetClassNameA","features":[305,367]},{"name":"GetClassNameW","features":[305,367]},{"name":"GetClassWord","features":[305,367]},{"name":"GetClientRect","features":[305,367]},{"name":"GetClipCursor","features":[305,367]},{"name":"GetCursor","features":[367]},{"name":"GetCursorInfo","features":[305,367]},{"name":"GetCursorPos","features":[305,367]},{"name":"GetDesktopWindow","features":[305,367]},{"name":"GetDialogBaseUnits","features":[367]},{"name":"GetDlgCtrlID","features":[305,367]},{"name":"GetDlgItem","features":[305,367]},{"name":"GetDlgItemInt","features":[305,367]},{"name":"GetDlgItemTextA","features":[305,367]},{"name":"GetDlgItemTextW","features":[305,367]},{"name":"GetForegroundWindow","features":[305,367]},{"name":"GetGUIThreadInfo","features":[305,367]},{"name":"GetIconInfo","features":[305,316,367]},{"name":"GetIconInfoExA","features":[305,316,367]},{"name":"GetIconInfoExW","features":[305,316,367]},{"name":"GetInputState","features":[305,367]},{"name":"GetLastActivePopup","features":[305,367]},{"name":"GetLayeredWindowAttributes","features":[305,367]},{"name":"GetMenu","features":[305,367]},{"name":"GetMenuBarInfo","features":[305,367]},{"name":"GetMenuCheckMarkDimensions","features":[367]},{"name":"GetMenuDefaultItem","features":[367]},{"name":"GetMenuInfo","features":[305,316,367]},{"name":"GetMenuItemCount","features":[367]},{"name":"GetMenuItemID","features":[367]},{"name":"GetMenuItemInfoA","features":[305,316,367]},{"name":"GetMenuItemInfoW","features":[305,316,367]},{"name":"GetMenuItemRect","features":[305,367]},{"name":"GetMenuState","features":[367]},{"name":"GetMenuStringA","features":[367]},{"name":"GetMenuStringW","features":[367]},{"name":"GetMessageA","features":[305,367]},{"name":"GetMessageExtraInfo","features":[305,367]},{"name":"GetMessagePos","features":[367]},{"name":"GetMessageTime","features":[367]},{"name":"GetMessageW","features":[305,367]},{"name":"GetNextDlgGroupItem","features":[305,367]},{"name":"GetNextDlgTabItem","features":[305,367]},{"name":"GetParent","features":[305,367]},{"name":"GetPhysicalCursorPos","features":[305,367]},{"name":"GetProcessDefaultLayout","features":[305,367]},{"name":"GetPropA","features":[305,367]},{"name":"GetPropW","features":[305,367]},{"name":"GetQueueStatus","features":[367]},{"name":"GetScrollBarInfo","features":[305,367]},{"name":"GetScrollInfo","features":[305,367]},{"name":"GetScrollPos","features":[305,367]},{"name":"GetScrollRange","features":[305,367]},{"name":"GetShellWindow","features":[305,367]},{"name":"GetSubMenu","features":[367]},{"name":"GetSystemMenu","features":[305,367]},{"name":"GetSystemMetrics","features":[367]},{"name":"GetTitleBarInfo","features":[305,367]},{"name":"GetTopWindow","features":[305,367]},{"name":"GetWindow","features":[305,367]},{"name":"GetWindowDisplayAffinity","features":[305,367]},{"name":"GetWindowInfo","features":[305,367]},{"name":"GetWindowLongA","features":[305,367]},{"name":"GetWindowLongPtrA","features":[305,367]},{"name":"GetWindowLongPtrW","features":[305,367]},{"name":"GetWindowLongW","features":[305,367]},{"name":"GetWindowModuleFileNameA","features":[305,367]},{"name":"GetWindowModuleFileNameW","features":[305,367]},{"name":"GetWindowPlacement","features":[305,367]},{"name":"GetWindowRect","features":[305,367]},{"name":"GetWindowTextA","features":[305,367]},{"name":"GetWindowTextLengthA","features":[305,367]},{"name":"GetWindowTextLengthW","features":[305,367]},{"name":"GetWindowTextW","features":[305,367]},{"name":"GetWindowThreadProcessId","features":[305,367]},{"name":"GetWindowWord","features":[305,367]},{"name":"HACCEL","features":[367]},{"name":"HANDEDNESS","features":[367]},{"name":"HANDEDNESS_LEFT","features":[367]},{"name":"HANDEDNESS_RIGHT","features":[367]},{"name":"HARDWAREHOOKSTRUCT","features":[305,367]},{"name":"HBMMENU_CALLBACK","features":[316,367]},{"name":"HBMMENU_MBAR_CLOSE","features":[316,367]},{"name":"HBMMENU_MBAR_CLOSE_D","features":[316,367]},{"name":"HBMMENU_MBAR_MINIMIZE","features":[316,367]},{"name":"HBMMENU_MBAR_MINIMIZE_D","features":[316,367]},{"name":"HBMMENU_MBAR_RESTORE","features":[316,367]},{"name":"HBMMENU_POPUP_CLOSE","features":[316,367]},{"name":"HBMMENU_POPUP_MAXIMIZE","features":[316,367]},{"name":"HBMMENU_POPUP_MINIMIZE","features":[316,367]},{"name":"HBMMENU_POPUP_RESTORE","features":[316,367]},{"name":"HBMMENU_SYSTEM","features":[316,367]},{"name":"HCBT_ACTIVATE","features":[367]},{"name":"HCBT_CLICKSKIPPED","features":[367]},{"name":"HCBT_CREATEWND","features":[367]},{"name":"HCBT_DESTROYWND","features":[367]},{"name":"HCBT_KEYSKIPPED","features":[367]},{"name":"HCBT_MINMAX","features":[367]},{"name":"HCBT_MOVESIZE","features":[367]},{"name":"HCBT_QS","features":[367]},{"name":"HCBT_SETFOCUS","features":[367]},{"name":"HCBT_SYSCOMMAND","features":[367]},{"name":"HCF_DEFAULTDESKTOP","features":[367]},{"name":"HCF_LOGONDESKTOP","features":[367]},{"name":"HCURSOR","features":[367]},{"name":"HC_ACTION","features":[367]},{"name":"HC_GETNEXT","features":[367]},{"name":"HC_NOREM","features":[367]},{"name":"HC_NOREMOVE","features":[367]},{"name":"HC_SKIP","features":[367]},{"name":"HC_SYSMODALOFF","features":[367]},{"name":"HC_SYSMODALON","features":[367]},{"name":"HDEVNOTIFY","features":[367]},{"name":"HDWP","features":[367]},{"name":"HELP_COMMAND","features":[367]},{"name":"HELP_CONTENTS","features":[367]},{"name":"HELP_CONTEXT","features":[367]},{"name":"HELP_CONTEXTMENU","features":[367]},{"name":"HELP_CONTEXTPOPUP","features":[367]},{"name":"HELP_FINDER","features":[367]},{"name":"HELP_FORCEFILE","features":[367]},{"name":"HELP_HELPONHELP","features":[367]},{"name":"HELP_INDEX","features":[367]},{"name":"HELP_KEY","features":[367]},{"name":"HELP_MULTIKEY","features":[367]},{"name":"HELP_PARTIALKEY","features":[367]},{"name":"HELP_QUIT","features":[367]},{"name":"HELP_SETCONTENTS","features":[367]},{"name":"HELP_SETINDEX","features":[367]},{"name":"HELP_SETPOPUP_POS","features":[367]},{"name":"HELP_SETWINPOS","features":[367]},{"name":"HELP_TCARD","features":[367]},{"name":"HELP_TCARD_DATA","features":[367]},{"name":"HELP_TCARD_OTHER_CALLER","features":[367]},{"name":"HELP_WM_HELP","features":[367]},{"name":"HHOOK","features":[367]},{"name":"HICON","features":[367]},{"name":"HIDE_WINDOW","features":[367]},{"name":"HKL_NEXT","features":[367]},{"name":"HKL_PREV","features":[367]},{"name":"HMENU","features":[367]},{"name":"HOOKPROC","features":[305,367]},{"name":"HSHELL_ACCESSIBILITYSTATE","features":[367]},{"name":"HSHELL_ACTIVATESHELLWINDOW","features":[367]},{"name":"HSHELL_APPCOMMAND","features":[367]},{"name":"HSHELL_ENDTASK","features":[367]},{"name":"HSHELL_GETMINRECT","features":[367]},{"name":"HSHELL_HIGHBIT","features":[367]},{"name":"HSHELL_LANGUAGE","features":[367]},{"name":"HSHELL_MONITORCHANGED","features":[367]},{"name":"HSHELL_REDRAW","features":[367]},{"name":"HSHELL_SYSMENU","features":[367]},{"name":"HSHELL_TASKMAN","features":[367]},{"name":"HSHELL_WINDOWACTIVATED","features":[367]},{"name":"HSHELL_WINDOWCREATED","features":[367]},{"name":"HSHELL_WINDOWDESTROYED","features":[367]},{"name":"HSHELL_WINDOWREPLACED","features":[367]},{"name":"HSHELL_WINDOWREPLACING","features":[367]},{"name":"HTBORDER","features":[367]},{"name":"HTBOTTOM","features":[367]},{"name":"HTBOTTOMLEFT","features":[367]},{"name":"HTBOTTOMRIGHT","features":[367]},{"name":"HTCAPTION","features":[367]},{"name":"HTCLIENT","features":[367]},{"name":"HTCLOSE","features":[367]},{"name":"HTERROR","features":[367]},{"name":"HTGROWBOX","features":[367]},{"name":"HTHELP","features":[367]},{"name":"HTHSCROLL","features":[367]},{"name":"HTLEFT","features":[367]},{"name":"HTMAXBUTTON","features":[367]},{"name":"HTMENU","features":[367]},{"name":"HTMINBUTTON","features":[367]},{"name":"HTNOWHERE","features":[367]},{"name":"HTOBJECT","features":[367]},{"name":"HTREDUCE","features":[367]},{"name":"HTRIGHT","features":[367]},{"name":"HTSIZE","features":[367]},{"name":"HTSIZEFIRST","features":[367]},{"name":"HTSIZELAST","features":[367]},{"name":"HTSYSMENU","features":[367]},{"name":"HTTOP","features":[367]},{"name":"HTTOPLEFT","features":[367]},{"name":"HTTOPRIGHT","features":[367]},{"name":"HTTRANSPARENT","features":[367]},{"name":"HTVSCROLL","features":[367]},{"name":"HTZOOM","features":[367]},{"name":"HWND_BOTTOM","features":[305,367]},{"name":"HWND_BROADCAST","features":[305,367]},{"name":"HWND_DESKTOP","features":[305,367]},{"name":"HWND_MESSAGE","features":[305,367]},{"name":"HWND_NOTOPMOST","features":[305,367]},{"name":"HWND_TOP","features":[305,367]},{"name":"HWND_TOPMOST","features":[305,367]},{"name":"HideCaret","features":[305,367]},{"name":"HiliteMenuItem","features":[305,367]},{"name":"ICONINFO","features":[305,316,367]},{"name":"ICONINFOEXA","features":[305,316,367]},{"name":"ICONINFOEXW","features":[305,316,367]},{"name":"ICONMETRICSA","features":[316,367]},{"name":"ICONMETRICSW","features":[316,367]},{"name":"ICON_BIG","features":[367]},{"name":"ICON_SMALL","features":[367]},{"name":"ICON_SMALL2","features":[367]},{"name":"IDABORT","features":[367]},{"name":"IDANI_CAPTION","features":[367]},{"name":"IDANI_OPEN","features":[367]},{"name":"IDASYNC","features":[367]},{"name":"IDCANCEL","features":[367]},{"name":"IDCLOSE","features":[367]},{"name":"IDCONTINUE","features":[367]},{"name":"IDC_APPSTARTING","features":[367]},{"name":"IDC_ARROW","features":[367]},{"name":"IDC_CROSS","features":[367]},{"name":"IDC_HAND","features":[367]},{"name":"IDC_HELP","features":[367]},{"name":"IDC_IBEAM","features":[367]},{"name":"IDC_ICON","features":[367]},{"name":"IDC_NO","features":[367]},{"name":"IDC_PERSON","features":[367]},{"name":"IDC_PIN","features":[367]},{"name":"IDC_SIZE","features":[367]},{"name":"IDC_SIZEALL","features":[367]},{"name":"IDC_SIZENESW","features":[367]},{"name":"IDC_SIZENS","features":[367]},{"name":"IDC_SIZENWSE","features":[367]},{"name":"IDC_SIZEWE","features":[367]},{"name":"IDC_STATIC","features":[367]},{"name":"IDC_UPARROW","features":[367]},{"name":"IDC_WAIT","features":[367]},{"name":"IDHELP","features":[367]},{"name":"IDHOT_SNAPDESKTOP","features":[367]},{"name":"IDHOT_SNAPWINDOW","features":[367]},{"name":"IDH_CANCEL","features":[367]},{"name":"IDH_GENERIC_HELP_BUTTON","features":[367]},{"name":"IDH_HELP","features":[367]},{"name":"IDH_MISSING_CONTEXT","features":[367]},{"name":"IDH_NO_HELP","features":[367]},{"name":"IDH_OK","features":[367]},{"name":"IDIGNORE","features":[367]},{"name":"IDI_APPLICATION","features":[367]},{"name":"IDI_ASTERISK","features":[367]},{"name":"IDI_ERROR","features":[367]},{"name":"IDI_EXCLAMATION","features":[367]},{"name":"IDI_HAND","features":[367]},{"name":"IDI_INFORMATION","features":[367]},{"name":"IDI_QUESTION","features":[367]},{"name":"IDI_SHIELD","features":[367]},{"name":"IDI_WARNING","features":[367]},{"name":"IDI_WINLOGO","features":[367]},{"name":"IDNO","features":[367]},{"name":"IDOK","features":[367]},{"name":"IDRETRY","features":[367]},{"name":"IDTIMEOUT","features":[367]},{"name":"IDTRYAGAIN","features":[367]},{"name":"IDYES","features":[367]},{"name":"IMAGE_BITMAP","features":[367]},{"name":"IMAGE_CURSOR","features":[367]},{"name":"IMAGE_ENHMETAFILE","features":[367]},{"name":"IMAGE_FLAGS","features":[367]},{"name":"IMAGE_ICON","features":[367]},{"name":"INDEXID_CONTAINER","features":[367]},{"name":"INDEXID_OBJECT","features":[367]},{"name":"INPUTLANGCHANGE_BACKWARD","features":[367]},{"name":"INPUTLANGCHANGE_FORWARD","features":[367]},{"name":"INPUTLANGCHANGE_SYSCHARSET","features":[367]},{"name":"ISMEX_CALLBACK","features":[367]},{"name":"ISMEX_NOSEND","features":[367]},{"name":"ISMEX_NOTIFY","features":[367]},{"name":"ISMEX_REPLIED","features":[367]},{"name":"ISMEX_SEND","features":[367]},{"name":"ISOLATIONAWARE_MANIFEST_RESOURCE_ID","features":[367]},{"name":"ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID","features":[367]},{"name":"ISOLATIONPOLICY_BROWSER_MANIFEST_RESOURCE_ID","features":[367]},{"name":"ISOLATIONPOLICY_MANIFEST_RESOURCE_ID","features":[367]},{"name":"InSendMessage","features":[305,367]},{"name":"InSendMessageEx","features":[367]},{"name":"IndexFilePath","features":[367]},{"name":"IndexedResourceQualifier","features":[367]},{"name":"InheritWindowMonitor","features":[305,367]},{"name":"InsertMenuA","features":[305,367]},{"name":"InsertMenuItemA","features":[305,316,367]},{"name":"InsertMenuItemW","features":[305,316,367]},{"name":"InsertMenuW","features":[305,367]},{"name":"InternalGetWindowText","features":[305,367]},{"name":"IsCharAlphaA","features":[305,367]},{"name":"IsCharAlphaNumericA","features":[305,367]},{"name":"IsCharAlphaNumericW","features":[305,367]},{"name":"IsCharAlphaW","features":[305,367]},{"name":"IsCharLowerA","features":[305,367]},{"name":"IsCharUpperA","features":[305,367]},{"name":"IsCharUpperW","features":[305,367]},{"name":"IsChild","features":[305,367]},{"name":"IsDialogMessageA","features":[305,367]},{"name":"IsDialogMessageW","features":[305,367]},{"name":"IsGUIThread","features":[305,367]},{"name":"IsHungAppWindow","features":[305,367]},{"name":"IsIconic","features":[305,367]},{"name":"IsMenu","features":[305,367]},{"name":"IsProcessDPIAware","features":[305,367]},{"name":"IsWindow","features":[305,367]},{"name":"IsWindowArranged","features":[305,367]},{"name":"IsWindowUnicode","features":[305,367]},{"name":"IsWindowVisible","features":[305,367]},{"name":"IsWow64Message","features":[305,367]},{"name":"IsZoomed","features":[305,367]},{"name":"KBDLLHOOKSTRUCT","features":[367]},{"name":"KBDLLHOOKSTRUCT_FLAGS","features":[367]},{"name":"KF_ALTDOWN","features":[367]},{"name":"KF_DLGMODE","features":[367]},{"name":"KF_EXTENDED","features":[367]},{"name":"KF_MENUMODE","features":[367]},{"name":"KF_REPEAT","features":[367]},{"name":"KF_UP","features":[367]},{"name":"KL_NAMELENGTH","features":[367]},{"name":"KillTimer","features":[305,367]},{"name":"LAYERED_WINDOW_ATTRIBUTES_FLAGS","features":[367]},{"name":"LBN_DBLCLK","features":[367]},{"name":"LBN_ERRSPACE","features":[367]},{"name":"LBN_KILLFOCUS","features":[367]},{"name":"LBN_SELCANCEL","features":[367]},{"name":"LBN_SELCHANGE","features":[367]},{"name":"LBN_SETFOCUS","features":[367]},{"name":"LBS_COMBOBOX","features":[367]},{"name":"LBS_DISABLENOSCROLL","features":[367]},{"name":"LBS_EXTENDEDSEL","features":[367]},{"name":"LBS_HASSTRINGS","features":[367]},{"name":"LBS_MULTICOLUMN","features":[367]},{"name":"LBS_MULTIPLESEL","features":[367]},{"name":"LBS_NODATA","features":[367]},{"name":"LBS_NOINTEGRALHEIGHT","features":[367]},{"name":"LBS_NOREDRAW","features":[367]},{"name":"LBS_NOSEL","features":[367]},{"name":"LBS_NOTIFY","features":[367]},{"name":"LBS_OWNERDRAWFIXED","features":[367]},{"name":"LBS_OWNERDRAWVARIABLE","features":[367]},{"name":"LBS_SORT","features":[367]},{"name":"LBS_STANDARD","features":[367]},{"name":"LBS_USETABSTOPS","features":[367]},{"name":"LBS_WANTKEYBOARDINPUT","features":[367]},{"name":"LB_ADDFILE","features":[367]},{"name":"LB_ADDSTRING","features":[367]},{"name":"LB_CTLCODE","features":[367]},{"name":"LB_DELETESTRING","features":[367]},{"name":"LB_DIR","features":[367]},{"name":"LB_ERR","features":[367]},{"name":"LB_ERRSPACE","features":[367]},{"name":"LB_FINDSTRING","features":[367]},{"name":"LB_FINDSTRINGEXACT","features":[367]},{"name":"LB_GETANCHORINDEX","features":[367]},{"name":"LB_GETCARETINDEX","features":[367]},{"name":"LB_GETCOUNT","features":[367]},{"name":"LB_GETCURSEL","features":[367]},{"name":"LB_GETHORIZONTALEXTENT","features":[367]},{"name":"LB_GETITEMDATA","features":[367]},{"name":"LB_GETITEMHEIGHT","features":[367]},{"name":"LB_GETITEMRECT","features":[367]},{"name":"LB_GETLISTBOXINFO","features":[367]},{"name":"LB_GETLOCALE","features":[367]},{"name":"LB_GETSEL","features":[367]},{"name":"LB_GETSELCOUNT","features":[367]},{"name":"LB_GETSELITEMS","features":[367]},{"name":"LB_GETTEXT","features":[367]},{"name":"LB_GETTEXTLEN","features":[367]},{"name":"LB_GETTOPINDEX","features":[367]},{"name":"LB_INITSTORAGE","features":[367]},{"name":"LB_INSERTSTRING","features":[367]},{"name":"LB_ITEMFROMPOINT","features":[367]},{"name":"LB_MSGMAX","features":[367]},{"name":"LB_MULTIPLEADDSTRING","features":[367]},{"name":"LB_OKAY","features":[367]},{"name":"LB_RESETCONTENT","features":[367]},{"name":"LB_SELECTSTRING","features":[367]},{"name":"LB_SELITEMRANGE","features":[367]},{"name":"LB_SELITEMRANGEEX","features":[367]},{"name":"LB_SETANCHORINDEX","features":[367]},{"name":"LB_SETCARETINDEX","features":[367]},{"name":"LB_SETCOLUMNWIDTH","features":[367]},{"name":"LB_SETCOUNT","features":[367]},{"name":"LB_SETCURSEL","features":[367]},{"name":"LB_SETHORIZONTALEXTENT","features":[367]},{"name":"LB_SETITEMDATA","features":[367]},{"name":"LB_SETITEMHEIGHT","features":[367]},{"name":"LB_SETLOCALE","features":[367]},{"name":"LB_SETSEL","features":[367]},{"name":"LB_SETTABSTOPS","features":[367]},{"name":"LB_SETTOPINDEX","features":[367]},{"name":"LLKHF_ALTDOWN","features":[367]},{"name":"LLKHF_EXTENDED","features":[367]},{"name":"LLKHF_INJECTED","features":[367]},{"name":"LLKHF_LOWER_IL_INJECTED","features":[367]},{"name":"LLKHF_UP","features":[367]},{"name":"LLMHF_INJECTED","features":[367]},{"name":"LLMHF_LOWER_IL_INJECTED","features":[367]},{"name":"LOCKF_LOGICAL_LOCK","features":[367]},{"name":"LOCKF_PHYSICAL_LOCK","features":[367]},{"name":"LOCKP_ALLOW_MEM_MAPPING","features":[367]},{"name":"LOCKP_ALLOW_WRITES","features":[367]},{"name":"LOCKP_FAIL_MEM_MAPPING","features":[367]},{"name":"LOCKP_FAIL_WRITES","features":[367]},{"name":"LOCKP_LOCK_FOR_FORMAT","features":[367]},{"name":"LOCKP_USER_MASK","features":[367]},{"name":"LR_COLOR","features":[367]},{"name":"LR_COPYDELETEORG","features":[367]},{"name":"LR_COPYFROMRESOURCE","features":[367]},{"name":"LR_COPYRETURNORG","features":[367]},{"name":"LR_CREATEDIBSECTION","features":[367]},{"name":"LR_DEFAULTCOLOR","features":[367]},{"name":"LR_DEFAULTSIZE","features":[367]},{"name":"LR_LOADFROMFILE","features":[367]},{"name":"LR_LOADMAP3DCOLORS","features":[367]},{"name":"LR_LOADTRANSPARENT","features":[367]},{"name":"LR_MONOCHROME","features":[367]},{"name":"LR_SHARED","features":[367]},{"name":"LR_VGACOLOR","features":[367]},{"name":"LSFW_LOCK","features":[367]},{"name":"LSFW_UNLOCK","features":[367]},{"name":"LWA_ALPHA","features":[367]},{"name":"LWA_COLORKEY","features":[367]},{"name":"LoadAcceleratorsA","features":[305,367]},{"name":"LoadAcceleratorsW","features":[305,367]},{"name":"LoadCursorA","features":[305,367]},{"name":"LoadCursorFromFileA","features":[367]},{"name":"LoadCursorFromFileW","features":[367]},{"name":"LoadCursorW","features":[305,367]},{"name":"LoadIconA","features":[305,367]},{"name":"LoadIconW","features":[305,367]},{"name":"LoadImageA","features":[305,367]},{"name":"LoadImageW","features":[305,367]},{"name":"LoadMenuA","features":[305,367]},{"name":"LoadMenuIndirectA","features":[367]},{"name":"LoadMenuIndirectW","features":[367]},{"name":"LoadMenuW","features":[305,367]},{"name":"LoadStringA","features":[305,367]},{"name":"LoadStringW","features":[305,367]},{"name":"LockSetForegroundWindow","features":[305,367]},{"name":"LogicalToPhysicalPoint","features":[305,367]},{"name":"LookupIconIdFromDirectory","features":[305,367]},{"name":"LookupIconIdFromDirectoryEx","features":[305,367]},{"name":"MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[367]},{"name":"MAX_LOGICALDPIOVERRIDE","features":[367]},{"name":"MAX_STR_BLOCKREASON","features":[367]},{"name":"MAX_TOUCH_COUNT","features":[367]},{"name":"MAX_TOUCH_PREDICTION_FILTER_TAPS","features":[367]},{"name":"MA_ACTIVATE","features":[367]},{"name":"MA_ACTIVATEANDEAT","features":[367]},{"name":"MA_NOACTIVATE","features":[367]},{"name":"MA_NOACTIVATEANDEAT","features":[367]},{"name":"MB_ABORTRETRYIGNORE","features":[367]},{"name":"MB_APPLMODAL","features":[367]},{"name":"MB_CANCELTRYCONTINUE","features":[367]},{"name":"MB_DEFAULT_DESKTOP_ONLY","features":[367]},{"name":"MB_DEFBUTTON1","features":[367]},{"name":"MB_DEFBUTTON2","features":[367]},{"name":"MB_DEFBUTTON3","features":[367]},{"name":"MB_DEFBUTTON4","features":[367]},{"name":"MB_DEFMASK","features":[367]},{"name":"MB_HELP","features":[367]},{"name":"MB_ICONASTERISK","features":[367]},{"name":"MB_ICONERROR","features":[367]},{"name":"MB_ICONEXCLAMATION","features":[367]},{"name":"MB_ICONHAND","features":[367]},{"name":"MB_ICONINFORMATION","features":[367]},{"name":"MB_ICONMASK","features":[367]},{"name":"MB_ICONQUESTION","features":[367]},{"name":"MB_ICONSTOP","features":[367]},{"name":"MB_ICONWARNING","features":[367]},{"name":"MB_MISCMASK","features":[367]},{"name":"MB_MODEMASK","features":[367]},{"name":"MB_NOFOCUS","features":[367]},{"name":"MB_OK","features":[367]},{"name":"MB_OKCANCEL","features":[367]},{"name":"MB_RETRYCANCEL","features":[367]},{"name":"MB_RIGHT","features":[367]},{"name":"MB_RTLREADING","features":[367]},{"name":"MB_SERVICE_NOTIFICATION","features":[367]},{"name":"MB_SERVICE_NOTIFICATION_NT3X","features":[367]},{"name":"MB_SETFOREGROUND","features":[367]},{"name":"MB_SYSTEMMODAL","features":[367]},{"name":"MB_TASKMODAL","features":[367]},{"name":"MB_TOPMOST","features":[367]},{"name":"MB_TYPEMASK","features":[367]},{"name":"MB_USERICON","features":[367]},{"name":"MB_YESNO","features":[367]},{"name":"MB_YESNOCANCEL","features":[367]},{"name":"MDICREATESTRUCTA","features":[305,367]},{"name":"MDICREATESTRUCTW","features":[305,367]},{"name":"MDINEXTMENU","features":[305,367]},{"name":"MDIS_ALLCHILDSTYLES","features":[367]},{"name":"MDITILE_HORIZONTAL","features":[367]},{"name":"MDITILE_SKIPDISABLED","features":[367]},{"name":"MDITILE_VERTICAL","features":[367]},{"name":"MDITILE_ZORDER","features":[367]},{"name":"MENUBARINFO","features":[305,367]},{"name":"MENUEX_TEMPLATE_HEADER","features":[367]},{"name":"MENUEX_TEMPLATE_ITEM","features":[367]},{"name":"MENUGETOBJECTINFO","features":[367]},{"name":"MENUGETOBJECTINFO_FLAGS","features":[367]},{"name":"MENUINFO","features":[316,367]},{"name":"MENUINFO_MASK","features":[367]},{"name":"MENUINFO_STYLE","features":[367]},{"name":"MENUITEMINFOA","features":[316,367]},{"name":"MENUITEMINFOW","features":[316,367]},{"name":"MENUITEMTEMPLATE","features":[367]},{"name":"MENUITEMTEMPLATEHEADER","features":[367]},{"name":"MENUTEMPLATEEX","features":[367]},{"name":"MENU_ITEM_FLAGS","features":[367]},{"name":"MENU_ITEM_MASK","features":[367]},{"name":"MENU_ITEM_STATE","features":[367]},{"name":"MENU_ITEM_TYPE","features":[367]},{"name":"MESSAGEBOX_RESULT","features":[367]},{"name":"MESSAGEBOX_STYLE","features":[367]},{"name":"MESSAGE_RESOURCE_BLOCK","features":[367]},{"name":"MESSAGE_RESOURCE_DATA","features":[367]},{"name":"MESSAGE_RESOURCE_ENTRY","features":[367]},{"name":"METRICS_USEDEFAULT","features":[367]},{"name":"MFS_CHECKED","features":[367]},{"name":"MFS_DEFAULT","features":[367]},{"name":"MFS_DISABLED","features":[367]},{"name":"MFS_ENABLED","features":[367]},{"name":"MFS_GRAYED","features":[367]},{"name":"MFS_HILITE","features":[367]},{"name":"MFS_UNCHECKED","features":[367]},{"name":"MFS_UNHILITE","features":[367]},{"name":"MFT_BITMAP","features":[367]},{"name":"MFT_MENUBARBREAK","features":[367]},{"name":"MFT_MENUBREAK","features":[367]},{"name":"MFT_OWNERDRAW","features":[367]},{"name":"MFT_RADIOCHECK","features":[367]},{"name":"MFT_RIGHTJUSTIFY","features":[367]},{"name":"MFT_RIGHTORDER","features":[367]},{"name":"MFT_SEPARATOR","features":[367]},{"name":"MFT_STRING","features":[367]},{"name":"MF_APPEND","features":[367]},{"name":"MF_BITMAP","features":[367]},{"name":"MF_BYCOMMAND","features":[367]},{"name":"MF_BYPOSITION","features":[367]},{"name":"MF_CHANGE","features":[367]},{"name":"MF_CHECKED","features":[367]},{"name":"MF_DEFAULT","features":[367]},{"name":"MF_DELETE","features":[367]},{"name":"MF_DISABLED","features":[367]},{"name":"MF_ENABLED","features":[367]},{"name":"MF_END","features":[367]},{"name":"MF_GRAYED","features":[367]},{"name":"MF_HELP","features":[367]},{"name":"MF_HILITE","features":[367]},{"name":"MF_INSERT","features":[367]},{"name":"MF_MENUBARBREAK","features":[367]},{"name":"MF_MENUBREAK","features":[367]},{"name":"MF_MOUSESELECT","features":[367]},{"name":"MF_OWNERDRAW","features":[367]},{"name":"MF_POPUP","features":[367]},{"name":"MF_REMOVE","features":[367]},{"name":"MF_RIGHTJUSTIFY","features":[367]},{"name":"MF_SEPARATOR","features":[367]},{"name":"MF_STRING","features":[367]},{"name":"MF_SYSMENU","features":[367]},{"name":"MF_UNCHECKED","features":[367]},{"name":"MF_UNHILITE","features":[367]},{"name":"MF_USECHECKBITMAPS","features":[367]},{"name":"MIIM_BITMAP","features":[367]},{"name":"MIIM_CHECKMARKS","features":[367]},{"name":"MIIM_DATA","features":[367]},{"name":"MIIM_FTYPE","features":[367]},{"name":"MIIM_ID","features":[367]},{"name":"MIIM_STATE","features":[367]},{"name":"MIIM_STRING","features":[367]},{"name":"MIIM_SUBMENU","features":[367]},{"name":"MIIM_TYPE","features":[367]},{"name":"MIM_APPLYTOSUBMENUS","features":[367]},{"name":"MIM_BACKGROUND","features":[367]},{"name":"MIM_HELPID","features":[367]},{"name":"MIM_MAXHEIGHT","features":[367]},{"name":"MIM_MENUDATA","features":[367]},{"name":"MIM_STYLE","features":[367]},{"name":"MINIMIZEDMETRICS","features":[367]},{"name":"MINIMIZEDMETRICS_ARRANGE","features":[367]},{"name":"MINIMUM_RESERVED_MANIFEST_RESOURCE_ID","features":[367]},{"name":"MINMAXINFO","features":[305,367]},{"name":"MIN_LOGICALDPIOVERRIDE","features":[367]},{"name":"MKF_AVAILABLE","features":[367]},{"name":"MKF_CONFIRMHOTKEY","features":[367]},{"name":"MKF_HOTKEYACTIVE","features":[367]},{"name":"MKF_HOTKEYSOUND","features":[367]},{"name":"MKF_INDICATOR","features":[367]},{"name":"MKF_LEFTBUTTONDOWN","features":[367]},{"name":"MKF_LEFTBUTTONSEL","features":[367]},{"name":"MKF_MODIFIERS","features":[367]},{"name":"MKF_MOUSEKEYSON","features":[367]},{"name":"MKF_MOUSEMODE","features":[367]},{"name":"MKF_REPLACENUMBERS","features":[367]},{"name":"MKF_RIGHTBUTTONDOWN","features":[367]},{"name":"MKF_RIGHTBUTTONSEL","features":[367]},{"name":"MNC_CLOSE","features":[367]},{"name":"MNC_EXECUTE","features":[367]},{"name":"MNC_IGNORE","features":[367]},{"name":"MNC_SELECT","features":[367]},{"name":"MND_CONTINUE","features":[367]},{"name":"MND_ENDMENU","features":[367]},{"name":"MNGOF_BOTTOMGAP","features":[367]},{"name":"MNGOF_TOPGAP","features":[367]},{"name":"MNGO_NOERROR","features":[367]},{"name":"MNGO_NOINTERFACE","features":[367]},{"name":"MNS_AUTODISMISS","features":[367]},{"name":"MNS_CHECKORBMP","features":[367]},{"name":"MNS_DRAGDROP","features":[367]},{"name":"MNS_MODELESS","features":[367]},{"name":"MNS_NOCHECK","features":[367]},{"name":"MNS_NOTIFYBYPOS","features":[367]},{"name":"MN_GETHMENU","features":[367]},{"name":"MONITORINFOF_PRIMARY","features":[367]},{"name":"MOUSEHOOKSTRUCT","features":[305,367]},{"name":"MOUSEHOOKSTRUCTEX","features":[305,367]},{"name":"MOUSEWHEEL_ROUTING_FOCUS","features":[367]},{"name":"MOUSEWHEEL_ROUTING_HYBRID","features":[367]},{"name":"MOUSEWHEEL_ROUTING_MOUSE_POS","features":[367]},{"name":"MSG","features":[305,367]},{"name":"MSGBOXCALLBACK","features":[305,466,367]},{"name":"MSGBOXPARAMSA","features":[305,466,367]},{"name":"MSGBOXPARAMSW","features":[305,466,367]},{"name":"MSGFLTINFO_ALLOWED_HIGHER","features":[367]},{"name":"MSGFLTINFO_ALREADYALLOWED_FORWND","features":[367]},{"name":"MSGFLTINFO_ALREADYDISALLOWED_FORWND","features":[367]},{"name":"MSGFLTINFO_NONE","features":[367]},{"name":"MSGFLTINFO_STATUS","features":[367]},{"name":"MSGFLT_ADD","features":[367]},{"name":"MSGFLT_ALLOW","features":[367]},{"name":"MSGFLT_DISALLOW","features":[367]},{"name":"MSGFLT_REMOVE","features":[367]},{"name":"MSGFLT_RESET","features":[367]},{"name":"MSGF_DIALOGBOX","features":[367]},{"name":"MSGF_MAX","features":[367]},{"name":"MSGF_MENU","features":[367]},{"name":"MSGF_MESSAGEBOX","features":[367]},{"name":"MSGF_NEXTWINDOW","features":[367]},{"name":"MSGF_SCROLLBAR","features":[367]},{"name":"MSGF_USER","features":[367]},{"name":"MSG_WAIT_FOR_MULTIPLE_OBJECTS_EX_FLAGS","features":[367]},{"name":"MSLLHOOKSTRUCT","features":[305,367]},{"name":"MWMO_ALERTABLE","features":[367]},{"name":"MWMO_INPUTAVAILABLE","features":[367]},{"name":"MWMO_NONE","features":[367]},{"name":"MWMO_WAITALL","features":[367]},{"name":"MapDialogRect","features":[305,367]},{"name":"MenuItemFromPoint","features":[305,367]},{"name":"MessageBoxA","features":[305,367]},{"name":"MessageBoxExA","features":[305,367]},{"name":"MessageBoxExW","features":[305,367]},{"name":"MessageBoxIndirectA","features":[305,466,367]},{"name":"MessageBoxIndirectW","features":[305,466,367]},{"name":"MessageBoxW","features":[305,367]},{"name":"ModifyMenuA","features":[305,367]},{"name":"ModifyMenuW","features":[305,367]},{"name":"MoveWindow","features":[305,367]},{"name":"MrmCreateConfig","features":[367]},{"name":"MrmCreateConfigInMemory","features":[367]},{"name":"MrmCreateResourceFile","features":[367]},{"name":"MrmCreateResourceFileInMemory","features":[367]},{"name":"MrmCreateResourceFileWithChecksum","features":[367]},{"name":"MrmCreateResourceIndexer","features":[367]},{"name":"MrmCreateResourceIndexerFromPreviousPriData","features":[367]},{"name":"MrmCreateResourceIndexerFromPreviousPriFile","features":[367]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaData","features":[367]},{"name":"MrmCreateResourceIndexerFromPreviousSchemaFile","features":[367]},{"name":"MrmCreateResourceIndexerWithFlags","features":[367]},{"name":"MrmDestroyIndexerAndMessages","features":[367]},{"name":"MrmDumpPriDataInMemory","features":[367]},{"name":"MrmDumpPriFile","features":[367]},{"name":"MrmDumpPriFileInMemory","features":[367]},{"name":"MrmDumpType","features":[367]},{"name":"MrmDumpType_Basic","features":[367]},{"name":"MrmDumpType_Detailed","features":[367]},{"name":"MrmDumpType_Schema","features":[367]},{"name":"MrmFreeMemory","features":[367]},{"name":"MrmGetPriFileContentChecksum","features":[367]},{"name":"MrmIndexEmbeddedData","features":[367]},{"name":"MrmIndexFile","features":[367]},{"name":"MrmIndexFileAutoQualifiers","features":[367]},{"name":"MrmIndexResourceContainerAutoQualifiers","features":[367]},{"name":"MrmIndexString","features":[367]},{"name":"MrmIndexerFlags","features":[367]},{"name":"MrmIndexerFlagsAutoMerge","features":[367]},{"name":"MrmIndexerFlagsCreateContentChecksum","features":[367]},{"name":"MrmIndexerFlagsNone","features":[367]},{"name":"MrmPackagingMode","features":[367]},{"name":"MrmPackagingModeAutoSplit","features":[367]},{"name":"MrmPackagingModeResourcePack","features":[367]},{"name":"MrmPackagingModeStandaloneFile","features":[367]},{"name":"MrmPackagingOptions","features":[367]},{"name":"MrmPackagingOptionsNone","features":[367]},{"name":"MrmPackagingOptionsOmitSchemaFromResourcePacks","features":[367]},{"name":"MrmPackagingOptionsSplitLanguageVariants","features":[367]},{"name":"MrmPeekResourceIndexerMessages","features":[367]},{"name":"MrmPlatformVersion","features":[367]},{"name":"MrmPlatformVersion_Default","features":[367]},{"name":"MrmPlatformVersion_Windows10_0_0_0","features":[367]},{"name":"MrmPlatformVersion_Windows10_0_0_5","features":[367]},{"name":"MrmResourceIndexerHandle","features":[367]},{"name":"MrmResourceIndexerMessage","features":[367]},{"name":"MrmResourceIndexerMessageSeverity","features":[367]},{"name":"MrmResourceIndexerMessageSeverityError","features":[367]},{"name":"MrmResourceIndexerMessageSeverityInfo","features":[367]},{"name":"MrmResourceIndexerMessageSeverityVerbose","features":[367]},{"name":"MrmResourceIndexerMessageSeverityWarning","features":[367]},{"name":"MsgWaitForMultipleObjects","features":[305,367]},{"name":"MsgWaitForMultipleObjectsEx","features":[305,367]},{"name":"NAMEENUMPROCA","features":[305,367]},{"name":"NAMEENUMPROCW","features":[305,367]},{"name":"NCCALCSIZE_PARAMS","features":[305,367]},{"name":"NFR_ANSI","features":[367]},{"name":"NFR_UNICODE","features":[367]},{"name":"NF_QUERY","features":[367]},{"name":"NF_REQUERY","features":[367]},{"name":"NID_EXTERNAL_PEN","features":[367]},{"name":"NID_EXTERNAL_TOUCH","features":[367]},{"name":"NID_INTEGRATED_PEN","features":[367]},{"name":"NID_INTEGRATED_TOUCH","features":[367]},{"name":"NID_MULTI_INPUT","features":[367]},{"name":"NID_READY","features":[367]},{"name":"NONCLIENTMETRICSA","features":[316,367]},{"name":"NONCLIENTMETRICSW","features":[316,367]},{"name":"OBJECT_IDENTIFIER","features":[367]},{"name":"OBJID_ALERT","features":[367]},{"name":"OBJID_CARET","features":[367]},{"name":"OBJID_CLIENT","features":[367]},{"name":"OBJID_CURSOR","features":[367]},{"name":"OBJID_HSCROLL","features":[367]},{"name":"OBJID_MENU","features":[367]},{"name":"OBJID_NATIVEOM","features":[367]},{"name":"OBJID_QUERYCLASSNAMEIDX","features":[367]},{"name":"OBJID_SIZEGRIP","features":[367]},{"name":"OBJID_SOUND","features":[367]},{"name":"OBJID_SYSMENU","features":[367]},{"name":"OBJID_TITLEBAR","features":[367]},{"name":"OBJID_VSCROLL","features":[367]},{"name":"OBJID_WINDOW","features":[367]},{"name":"OBM_BTNCORNERS","features":[367]},{"name":"OBM_BTSIZE","features":[367]},{"name":"OBM_CHECK","features":[367]},{"name":"OBM_CHECKBOXES","features":[367]},{"name":"OBM_CLOSE","features":[367]},{"name":"OBM_COMBO","features":[367]},{"name":"OBM_DNARROW","features":[367]},{"name":"OBM_DNARROWD","features":[367]},{"name":"OBM_DNARROWI","features":[367]},{"name":"OBM_LFARROW","features":[367]},{"name":"OBM_LFARROWD","features":[367]},{"name":"OBM_LFARROWI","features":[367]},{"name":"OBM_MNARROW","features":[367]},{"name":"OBM_OLD_CLOSE","features":[367]},{"name":"OBM_OLD_DNARROW","features":[367]},{"name":"OBM_OLD_LFARROW","features":[367]},{"name":"OBM_OLD_REDUCE","features":[367]},{"name":"OBM_OLD_RESTORE","features":[367]},{"name":"OBM_OLD_RGARROW","features":[367]},{"name":"OBM_OLD_UPARROW","features":[367]},{"name":"OBM_OLD_ZOOM","features":[367]},{"name":"OBM_REDUCE","features":[367]},{"name":"OBM_REDUCED","features":[367]},{"name":"OBM_RESTORE","features":[367]},{"name":"OBM_RESTORED","features":[367]},{"name":"OBM_RGARROW","features":[367]},{"name":"OBM_RGARROWD","features":[367]},{"name":"OBM_RGARROWI","features":[367]},{"name":"OBM_SIZE","features":[367]},{"name":"OBM_UPARROW","features":[367]},{"name":"OBM_UPARROWD","features":[367]},{"name":"OBM_UPARROWI","features":[367]},{"name":"OBM_ZOOM","features":[367]},{"name":"OBM_ZOOMD","features":[367]},{"name":"OCR_APPSTARTING","features":[367]},{"name":"OCR_CROSS","features":[367]},{"name":"OCR_HAND","features":[367]},{"name":"OCR_HELP","features":[367]},{"name":"OCR_IBEAM","features":[367]},{"name":"OCR_ICOCUR","features":[367]},{"name":"OCR_ICON","features":[367]},{"name":"OCR_NO","features":[367]},{"name":"OCR_NORMAL","features":[367]},{"name":"OCR_SIZE","features":[367]},{"name":"OCR_SIZEALL","features":[367]},{"name":"OCR_SIZENESW","features":[367]},{"name":"OCR_SIZENS","features":[367]},{"name":"OCR_SIZENWSE","features":[367]},{"name":"OCR_SIZEWE","features":[367]},{"name":"OCR_UP","features":[367]},{"name":"OCR_WAIT","features":[367]},{"name":"OIC_BANG","features":[367]},{"name":"OIC_ERROR","features":[367]},{"name":"OIC_HAND","features":[367]},{"name":"OIC_INFORMATION","features":[367]},{"name":"OIC_NOTE","features":[367]},{"name":"OIC_QUES","features":[367]},{"name":"OIC_SAMPLE","features":[367]},{"name":"OIC_SHIELD","features":[367]},{"name":"OIC_WARNING","features":[367]},{"name":"OIC_WINLOGO","features":[367]},{"name":"ORD_LANGDRIVER","features":[367]},{"name":"OemToCharA","features":[305,367]},{"name":"OemToCharBuffA","features":[305,367]},{"name":"OemToCharBuffW","features":[305,367]},{"name":"OemToCharW","features":[305,367]},{"name":"OpenIcon","features":[305,367]},{"name":"PA_ACTIVATE","features":[367]},{"name":"PA_NOACTIVATE","features":[367]},{"name":"PBTF_APMRESUMEFROMFAILURE","features":[367]},{"name":"PBT_APMBATTERYLOW","features":[367]},{"name":"PBT_APMOEMEVENT","features":[367]},{"name":"PBT_APMPOWERSTATUSCHANGE","features":[367]},{"name":"PBT_APMQUERYSTANDBY","features":[367]},{"name":"PBT_APMQUERYSTANDBYFAILED","features":[367]},{"name":"PBT_APMQUERYSUSPEND","features":[367]},{"name":"PBT_APMQUERYSUSPENDFAILED","features":[367]},{"name":"PBT_APMRESUMEAUTOMATIC","features":[367]},{"name":"PBT_APMRESUMECRITICAL","features":[367]},{"name":"PBT_APMRESUMESTANDBY","features":[367]},{"name":"PBT_APMRESUMESUSPEND","features":[367]},{"name":"PBT_APMSTANDBY","features":[367]},{"name":"PBT_APMSUSPEND","features":[367]},{"name":"PBT_POWERSETTINGCHANGE","features":[367]},{"name":"PDC_ARRIVAL","features":[367]},{"name":"PDC_MAPPING_CHANGE","features":[367]},{"name":"PDC_MODE_ASPECTRATIOPRESERVED","features":[367]},{"name":"PDC_MODE_CENTERED","features":[367]},{"name":"PDC_MODE_DEFAULT","features":[367]},{"name":"PDC_ORIENTATION_0","features":[367]},{"name":"PDC_ORIENTATION_180","features":[367]},{"name":"PDC_ORIENTATION_270","features":[367]},{"name":"PDC_ORIENTATION_90","features":[367]},{"name":"PDC_ORIGIN","features":[367]},{"name":"PDC_REMOVAL","features":[367]},{"name":"PDC_RESOLUTION","features":[367]},{"name":"PEEK_MESSAGE_REMOVE_TYPE","features":[367]},{"name":"PENARBITRATIONTYPE_FIS","features":[367]},{"name":"PENARBITRATIONTYPE_MAX","features":[367]},{"name":"PENARBITRATIONTYPE_NONE","features":[367]},{"name":"PENARBITRATIONTYPE_SPT","features":[367]},{"name":"PENARBITRATIONTYPE_WIN8","features":[367]},{"name":"PENVISUALIZATION_CURSOR","features":[367]},{"name":"PENVISUALIZATION_DOUBLETAP","features":[367]},{"name":"PENVISUALIZATION_OFF","features":[367]},{"name":"PENVISUALIZATION_ON","features":[367]},{"name":"PENVISUALIZATION_TAP","features":[367]},{"name":"PEN_FLAG_BARREL","features":[367]},{"name":"PEN_FLAG_ERASER","features":[367]},{"name":"PEN_FLAG_INVERTED","features":[367]},{"name":"PEN_FLAG_NONE","features":[367]},{"name":"PEN_MASK_NONE","features":[367]},{"name":"PEN_MASK_PRESSURE","features":[367]},{"name":"PEN_MASK_ROTATION","features":[367]},{"name":"PEN_MASK_TILT_X","features":[367]},{"name":"PEN_MASK_TILT_Y","features":[367]},{"name":"PMB_ACTIVE","features":[367]},{"name":"PM_NOREMOVE","features":[367]},{"name":"PM_NOYIELD","features":[367]},{"name":"PM_QS_INPUT","features":[367]},{"name":"PM_QS_PAINT","features":[367]},{"name":"PM_QS_POSTMESSAGE","features":[367]},{"name":"PM_QS_SENDMESSAGE","features":[367]},{"name":"PM_REMOVE","features":[367]},{"name":"POINTER_DEVICE_PRODUCT_STRING_MAX","features":[367]},{"name":"POINTER_INPUT_TYPE","features":[367]},{"name":"POINTER_MESSAGE_FLAG_CANCELED","features":[367]},{"name":"POINTER_MESSAGE_FLAG_CONFIDENCE","features":[367]},{"name":"POINTER_MESSAGE_FLAG_FIFTHBUTTON","features":[367]},{"name":"POINTER_MESSAGE_FLAG_FIRSTBUTTON","features":[367]},{"name":"POINTER_MESSAGE_FLAG_FOURTHBUTTON","features":[367]},{"name":"POINTER_MESSAGE_FLAG_INCONTACT","features":[367]},{"name":"POINTER_MESSAGE_FLAG_INRANGE","features":[367]},{"name":"POINTER_MESSAGE_FLAG_NEW","features":[367]},{"name":"POINTER_MESSAGE_FLAG_PRIMARY","features":[367]},{"name":"POINTER_MESSAGE_FLAG_SECONDBUTTON","features":[367]},{"name":"POINTER_MESSAGE_FLAG_THIRDBUTTON","features":[367]},{"name":"POINTER_MOD_CTRL","features":[367]},{"name":"POINTER_MOD_SHIFT","features":[367]},{"name":"PREGISTERCLASSNAMEW","features":[305,367]},{"name":"PRF_CHECKVISIBLE","features":[367]},{"name":"PRF_CHILDREN","features":[367]},{"name":"PRF_CLIENT","features":[367]},{"name":"PRF_ERASEBKGND","features":[367]},{"name":"PRF_NONCLIENT","features":[367]},{"name":"PRF_OWNED","features":[367]},{"name":"PROPENUMPROCA","features":[305,367]},{"name":"PROPENUMPROCEXA","features":[305,367]},{"name":"PROPENUMPROCEXW","features":[305,367]},{"name":"PROPENUMPROCW","features":[305,367]},{"name":"PT_MOUSE","features":[367]},{"name":"PT_PEN","features":[367]},{"name":"PT_POINTER","features":[367]},{"name":"PT_TOUCH","features":[367]},{"name":"PT_TOUCHPAD","features":[367]},{"name":"PWR_CRITICALRESUME","features":[367]},{"name":"PWR_FAIL","features":[367]},{"name":"PWR_OK","features":[367]},{"name":"PWR_SUSPENDREQUEST","features":[367]},{"name":"PWR_SUSPENDRESUME","features":[367]},{"name":"PW_RENDERFULLCONTENT","features":[367]},{"name":"PeekMessageA","features":[305,367]},{"name":"PeekMessageW","features":[305,367]},{"name":"PhysicalToLogicalPoint","features":[305,367]},{"name":"PostMessageA","features":[305,367]},{"name":"PostMessageW","features":[305,367]},{"name":"PostQuitMessage","features":[367]},{"name":"PostThreadMessageA","features":[305,367]},{"name":"PostThreadMessageW","features":[305,367]},{"name":"PrivateExtractIconsA","features":[367]},{"name":"PrivateExtractIconsW","features":[367]},{"name":"QS_ALLEVENTS","features":[367]},{"name":"QS_ALLINPUT","features":[367]},{"name":"QS_ALLPOSTMESSAGE","features":[367]},{"name":"QS_HOTKEY","features":[367]},{"name":"QS_INPUT","features":[367]},{"name":"QS_KEY","features":[367]},{"name":"QS_MOUSE","features":[367]},{"name":"QS_MOUSEBUTTON","features":[367]},{"name":"QS_MOUSEMOVE","features":[367]},{"name":"QS_PAINT","features":[367]},{"name":"QS_POINTER","features":[367]},{"name":"QS_POSTMESSAGE","features":[367]},{"name":"QS_RAWINPUT","features":[367]},{"name":"QS_SENDMESSAGE","features":[367]},{"name":"QS_TIMER","features":[367]},{"name":"QS_TOUCH","features":[367]},{"name":"QUEUE_STATUS_FLAGS","features":[367]},{"name":"REGISTER_NOTIFICATION_FLAGS","features":[367]},{"name":"RES_CURSOR","features":[367]},{"name":"RES_ICON","features":[367]},{"name":"RIDEV_EXMODEMASK","features":[367]},{"name":"RIM_INPUT","features":[367]},{"name":"RIM_INPUTSINK","features":[367]},{"name":"RIM_TYPEMAX","features":[367]},{"name":"RI_KEY_BREAK","features":[367]},{"name":"RI_KEY_E0","features":[367]},{"name":"RI_KEY_E1","features":[367]},{"name":"RI_KEY_MAKE","features":[367]},{"name":"RI_KEY_TERMSRV_SET_LED","features":[367]},{"name":"RI_KEY_TERMSRV_SHADOW","features":[367]},{"name":"RI_MOUSE_BUTTON_1_DOWN","features":[367]},{"name":"RI_MOUSE_BUTTON_1_UP","features":[367]},{"name":"RI_MOUSE_BUTTON_2_DOWN","features":[367]},{"name":"RI_MOUSE_BUTTON_2_UP","features":[367]},{"name":"RI_MOUSE_BUTTON_3_DOWN","features":[367]},{"name":"RI_MOUSE_BUTTON_3_UP","features":[367]},{"name":"RI_MOUSE_BUTTON_4_DOWN","features":[367]},{"name":"RI_MOUSE_BUTTON_4_UP","features":[367]},{"name":"RI_MOUSE_BUTTON_5_DOWN","features":[367]},{"name":"RI_MOUSE_BUTTON_5_UP","features":[367]},{"name":"RI_MOUSE_HWHEEL","features":[367]},{"name":"RI_MOUSE_LEFT_BUTTON_DOWN","features":[367]},{"name":"RI_MOUSE_LEFT_BUTTON_UP","features":[367]},{"name":"RI_MOUSE_MIDDLE_BUTTON_DOWN","features":[367]},{"name":"RI_MOUSE_MIDDLE_BUTTON_UP","features":[367]},{"name":"RI_MOUSE_RIGHT_BUTTON_DOWN","features":[367]},{"name":"RI_MOUSE_RIGHT_BUTTON_UP","features":[367]},{"name":"RI_MOUSE_WHEEL","features":[367]},{"name":"RT_ACCELERATOR","features":[367]},{"name":"RT_ANICURSOR","features":[367]},{"name":"RT_ANIICON","features":[367]},{"name":"RT_BITMAP","features":[367]},{"name":"RT_CURSOR","features":[367]},{"name":"RT_DIALOG","features":[367]},{"name":"RT_DLGINCLUDE","features":[367]},{"name":"RT_FONT","features":[367]},{"name":"RT_FONTDIR","features":[367]},{"name":"RT_GROUP_CURSOR","features":[367]},{"name":"RT_GROUP_ICON","features":[367]},{"name":"RT_HTML","features":[367]},{"name":"RT_ICON","features":[367]},{"name":"RT_MANIFEST","features":[367]},{"name":"RT_MENU","features":[367]},{"name":"RT_MESSAGETABLE","features":[367]},{"name":"RT_PLUGPLAY","features":[367]},{"name":"RT_VERSION","features":[367]},{"name":"RT_VXD","features":[367]},{"name":"RealChildWindowFromPoint","features":[305,367]},{"name":"RealGetWindowClassA","features":[305,367]},{"name":"RealGetWindowClassW","features":[305,367]},{"name":"RegisterClassA","features":[305,316,367]},{"name":"RegisterClassExA","features":[305,316,367]},{"name":"RegisterClassExW","features":[305,316,367]},{"name":"RegisterClassW","features":[305,316,367]},{"name":"RegisterDeviceNotificationA","features":[305,367]},{"name":"RegisterDeviceNotificationW","features":[305,367]},{"name":"RegisterForTooltipDismissNotification","features":[305,367]},{"name":"RegisterShellHookWindow","features":[305,367]},{"name":"RegisterWindowMessageA","features":[367]},{"name":"RegisterWindowMessageW","features":[367]},{"name":"RemoveMenu","features":[305,367]},{"name":"RemovePropA","features":[305,367]},{"name":"RemovePropW","features":[305,367]},{"name":"ReplyMessage","features":[305,367]},{"name":"SBM_ENABLE_ARROWS","features":[367]},{"name":"SBM_GETPOS","features":[367]},{"name":"SBM_GETRANGE","features":[367]},{"name":"SBM_GETSCROLLBARINFO","features":[367]},{"name":"SBM_GETSCROLLINFO","features":[367]},{"name":"SBM_SETPOS","features":[367]},{"name":"SBM_SETRANGE","features":[367]},{"name":"SBM_SETRANGEREDRAW","features":[367]},{"name":"SBM_SETSCROLLINFO","features":[367]},{"name":"SBS_BOTTOMALIGN","features":[367]},{"name":"SBS_HORZ","features":[367]},{"name":"SBS_LEFTALIGN","features":[367]},{"name":"SBS_RIGHTALIGN","features":[367]},{"name":"SBS_SIZEBOX","features":[367]},{"name":"SBS_SIZEBOXBOTTOMRIGHTALIGN","features":[367]},{"name":"SBS_SIZEBOXTOPLEFTALIGN","features":[367]},{"name":"SBS_SIZEGRIP","features":[367]},{"name":"SBS_TOPALIGN","features":[367]},{"name":"SBS_VERT","features":[367]},{"name":"SB_BOTH","features":[367]},{"name":"SB_BOTTOM","features":[367]},{"name":"SB_CTL","features":[367]},{"name":"SB_ENDSCROLL","features":[367]},{"name":"SB_HORZ","features":[367]},{"name":"SB_LEFT","features":[367]},{"name":"SB_LINEDOWN","features":[367]},{"name":"SB_LINELEFT","features":[367]},{"name":"SB_LINERIGHT","features":[367]},{"name":"SB_LINEUP","features":[367]},{"name":"SB_PAGEDOWN","features":[367]},{"name":"SB_PAGELEFT","features":[367]},{"name":"SB_PAGERIGHT","features":[367]},{"name":"SB_PAGEUP","features":[367]},{"name":"SB_RIGHT","features":[367]},{"name":"SB_THUMBPOSITION","features":[367]},{"name":"SB_THUMBTRACK","features":[367]},{"name":"SB_TOP","features":[367]},{"name":"SB_VERT","features":[367]},{"name":"SCF_ISSECURE","features":[367]},{"name":"SCROLLBARINFO","features":[305,367]},{"name":"SCROLLBAR_COMMAND","features":[367]},{"name":"SCROLLBAR_CONSTANTS","features":[367]},{"name":"SCROLLINFO","features":[367]},{"name":"SCROLLINFO_MASK","features":[367]},{"name":"SCROLL_WINDOW_FLAGS","features":[367]},{"name":"SC_ARRANGE","features":[367]},{"name":"SC_CLOSE","features":[367]},{"name":"SC_CONTEXTHELP","features":[367]},{"name":"SC_DEFAULT","features":[367]},{"name":"SC_HOTKEY","features":[367]},{"name":"SC_HSCROLL","features":[367]},{"name":"SC_ICON","features":[367]},{"name":"SC_KEYMENU","features":[367]},{"name":"SC_MAXIMIZE","features":[367]},{"name":"SC_MINIMIZE","features":[367]},{"name":"SC_MONITORPOWER","features":[367]},{"name":"SC_MOUSEMENU","features":[367]},{"name":"SC_MOVE","features":[367]},{"name":"SC_NEXTWINDOW","features":[367]},{"name":"SC_PREVWINDOW","features":[367]},{"name":"SC_RESTORE","features":[367]},{"name":"SC_SEPARATOR","features":[367]},{"name":"SC_SIZE","features":[367]},{"name":"SC_TASKLIST","features":[367]},{"name":"SC_VSCROLL","features":[367]},{"name":"SC_ZOOM","features":[367]},{"name":"SENDASYNCPROC","features":[305,367]},{"name":"SEND_MESSAGE_TIMEOUT_FLAGS","features":[367]},{"name":"SET_WINDOW_POS_FLAGS","features":[367]},{"name":"SHELLHOOKINFO","features":[305,367]},{"name":"SHOW_FULLSCREEN","features":[367]},{"name":"SHOW_ICONWINDOW","features":[367]},{"name":"SHOW_OPENNOACTIVATE","features":[367]},{"name":"SHOW_OPENWINDOW","features":[367]},{"name":"SHOW_WINDOW_CMD","features":[367]},{"name":"SHOW_WINDOW_STATUS","features":[367]},{"name":"SIF_ALL","features":[367]},{"name":"SIF_DISABLENOSCROLL","features":[367]},{"name":"SIF_PAGE","features":[367]},{"name":"SIF_POS","features":[367]},{"name":"SIF_RANGE","features":[367]},{"name":"SIF_TRACKPOS","features":[367]},{"name":"SIZEFULLSCREEN","features":[367]},{"name":"SIZEICONIC","features":[367]},{"name":"SIZENORMAL","features":[367]},{"name":"SIZEZOOMHIDE","features":[367]},{"name":"SIZEZOOMSHOW","features":[367]},{"name":"SIZE_MAXHIDE","features":[367]},{"name":"SIZE_MAXIMIZED","features":[367]},{"name":"SIZE_MAXSHOW","features":[367]},{"name":"SIZE_MINIMIZED","features":[367]},{"name":"SIZE_RESTORED","features":[367]},{"name":"SMTO_ABORTIFHUNG","features":[367]},{"name":"SMTO_BLOCK","features":[367]},{"name":"SMTO_ERRORONEXIT","features":[367]},{"name":"SMTO_NORMAL","features":[367]},{"name":"SMTO_NOTIMEOUTIFNOTHUNG","features":[367]},{"name":"SM_ARRANGE","features":[367]},{"name":"SM_CARETBLINKINGENABLED","features":[367]},{"name":"SM_CLEANBOOT","features":[367]},{"name":"SM_CMETRICS","features":[367]},{"name":"SM_CMONITORS","features":[367]},{"name":"SM_CMOUSEBUTTONS","features":[367]},{"name":"SM_CONVERTIBLESLATEMODE","features":[367]},{"name":"SM_CXBORDER","features":[367]},{"name":"SM_CXCURSOR","features":[367]},{"name":"SM_CXDLGFRAME","features":[367]},{"name":"SM_CXDOUBLECLK","features":[367]},{"name":"SM_CXDRAG","features":[367]},{"name":"SM_CXEDGE","features":[367]},{"name":"SM_CXFIXEDFRAME","features":[367]},{"name":"SM_CXFOCUSBORDER","features":[367]},{"name":"SM_CXFRAME","features":[367]},{"name":"SM_CXFULLSCREEN","features":[367]},{"name":"SM_CXHSCROLL","features":[367]},{"name":"SM_CXHTHUMB","features":[367]},{"name":"SM_CXICON","features":[367]},{"name":"SM_CXICONSPACING","features":[367]},{"name":"SM_CXMAXIMIZED","features":[367]},{"name":"SM_CXMAXTRACK","features":[367]},{"name":"SM_CXMENUCHECK","features":[367]},{"name":"SM_CXMENUSIZE","features":[367]},{"name":"SM_CXMIN","features":[367]},{"name":"SM_CXMINIMIZED","features":[367]},{"name":"SM_CXMINSPACING","features":[367]},{"name":"SM_CXMINTRACK","features":[367]},{"name":"SM_CXPADDEDBORDER","features":[367]},{"name":"SM_CXSCREEN","features":[367]},{"name":"SM_CXSIZE","features":[367]},{"name":"SM_CXSIZEFRAME","features":[367]},{"name":"SM_CXSMICON","features":[367]},{"name":"SM_CXSMSIZE","features":[367]},{"name":"SM_CXVIRTUALSCREEN","features":[367]},{"name":"SM_CXVSCROLL","features":[367]},{"name":"SM_CYBORDER","features":[367]},{"name":"SM_CYCAPTION","features":[367]},{"name":"SM_CYCURSOR","features":[367]},{"name":"SM_CYDLGFRAME","features":[367]},{"name":"SM_CYDOUBLECLK","features":[367]},{"name":"SM_CYDRAG","features":[367]},{"name":"SM_CYEDGE","features":[367]},{"name":"SM_CYFIXEDFRAME","features":[367]},{"name":"SM_CYFOCUSBORDER","features":[367]},{"name":"SM_CYFRAME","features":[367]},{"name":"SM_CYFULLSCREEN","features":[367]},{"name":"SM_CYHSCROLL","features":[367]},{"name":"SM_CYICON","features":[367]},{"name":"SM_CYICONSPACING","features":[367]},{"name":"SM_CYKANJIWINDOW","features":[367]},{"name":"SM_CYMAXIMIZED","features":[367]},{"name":"SM_CYMAXTRACK","features":[367]},{"name":"SM_CYMENU","features":[367]},{"name":"SM_CYMENUCHECK","features":[367]},{"name":"SM_CYMENUSIZE","features":[367]},{"name":"SM_CYMIN","features":[367]},{"name":"SM_CYMINIMIZED","features":[367]},{"name":"SM_CYMINSPACING","features":[367]},{"name":"SM_CYMINTRACK","features":[367]},{"name":"SM_CYSCREEN","features":[367]},{"name":"SM_CYSIZE","features":[367]},{"name":"SM_CYSIZEFRAME","features":[367]},{"name":"SM_CYSMCAPTION","features":[367]},{"name":"SM_CYSMICON","features":[367]},{"name":"SM_CYSMSIZE","features":[367]},{"name":"SM_CYVIRTUALSCREEN","features":[367]},{"name":"SM_CYVSCROLL","features":[367]},{"name":"SM_CYVTHUMB","features":[367]},{"name":"SM_DBCSENABLED","features":[367]},{"name":"SM_DEBUG","features":[367]},{"name":"SM_DIGITIZER","features":[367]},{"name":"SM_IMMENABLED","features":[367]},{"name":"SM_MAXIMUMTOUCHES","features":[367]},{"name":"SM_MEDIACENTER","features":[367]},{"name":"SM_MENUDROPALIGNMENT","features":[367]},{"name":"SM_MIDEASTENABLED","features":[367]},{"name":"SM_MOUSEHORIZONTALWHEELPRESENT","features":[367]},{"name":"SM_MOUSEPRESENT","features":[367]},{"name":"SM_MOUSEWHEELPRESENT","features":[367]},{"name":"SM_NETWORK","features":[367]},{"name":"SM_PENWINDOWS","features":[367]},{"name":"SM_REMOTECONTROL","features":[367]},{"name":"SM_REMOTESESSION","features":[367]},{"name":"SM_RESERVED1","features":[367]},{"name":"SM_RESERVED2","features":[367]},{"name":"SM_RESERVED3","features":[367]},{"name":"SM_RESERVED4","features":[367]},{"name":"SM_SAMEDISPLAYFORMAT","features":[367]},{"name":"SM_SECURE","features":[367]},{"name":"SM_SERVERR2","features":[367]},{"name":"SM_SHOWSOUNDS","features":[367]},{"name":"SM_SHUTTINGDOWN","features":[367]},{"name":"SM_SLOWMACHINE","features":[367]},{"name":"SM_STARTER","features":[367]},{"name":"SM_SWAPBUTTON","features":[367]},{"name":"SM_SYSTEMDOCKED","features":[367]},{"name":"SM_TABLETPC","features":[367]},{"name":"SM_XVIRTUALSCREEN","features":[367]},{"name":"SM_YVIRTUALSCREEN","features":[367]},{"name":"SOUND_SYSTEM_APPEND","features":[367]},{"name":"SOUND_SYSTEM_APPSTART","features":[367]},{"name":"SOUND_SYSTEM_BEEP","features":[367]},{"name":"SOUND_SYSTEM_ERROR","features":[367]},{"name":"SOUND_SYSTEM_FAULT","features":[367]},{"name":"SOUND_SYSTEM_INFORMATION","features":[367]},{"name":"SOUND_SYSTEM_MAXIMIZE","features":[367]},{"name":"SOUND_SYSTEM_MENUCOMMAND","features":[367]},{"name":"SOUND_SYSTEM_MENUPOPUP","features":[367]},{"name":"SOUND_SYSTEM_MINIMIZE","features":[367]},{"name":"SOUND_SYSTEM_QUESTION","features":[367]},{"name":"SOUND_SYSTEM_RESTOREDOWN","features":[367]},{"name":"SOUND_SYSTEM_RESTOREUP","features":[367]},{"name":"SOUND_SYSTEM_SHUTDOWN","features":[367]},{"name":"SOUND_SYSTEM_STARTUP","features":[367]},{"name":"SOUND_SYSTEM_WARNING","features":[367]},{"name":"SPIF_SENDCHANGE","features":[367]},{"name":"SPIF_SENDWININICHANGE","features":[367]},{"name":"SPIF_UPDATEINIFILE","features":[367]},{"name":"SPI_GETACCESSTIMEOUT","features":[367]},{"name":"SPI_GETACTIVEWINDOWTRACKING","features":[367]},{"name":"SPI_GETACTIVEWNDTRKTIMEOUT","features":[367]},{"name":"SPI_GETACTIVEWNDTRKZORDER","features":[367]},{"name":"SPI_GETANIMATION","features":[367]},{"name":"SPI_GETAUDIODESCRIPTION","features":[367]},{"name":"SPI_GETBEEP","features":[367]},{"name":"SPI_GETBLOCKSENDINPUTRESETS","features":[367]},{"name":"SPI_GETBORDER","features":[367]},{"name":"SPI_GETCARETBROWSING","features":[367]},{"name":"SPI_GETCARETTIMEOUT","features":[367]},{"name":"SPI_GETCARETWIDTH","features":[367]},{"name":"SPI_GETCLEARTYPE","features":[367]},{"name":"SPI_GETCLIENTAREAANIMATION","features":[367]},{"name":"SPI_GETCOMBOBOXANIMATION","features":[367]},{"name":"SPI_GETCONTACTVISUALIZATION","features":[367]},{"name":"SPI_GETCURSORSHADOW","features":[367]},{"name":"SPI_GETDEFAULTINPUTLANG","features":[367]},{"name":"SPI_GETDESKWALLPAPER","features":[367]},{"name":"SPI_GETDISABLEOVERLAPPEDCONTENT","features":[367]},{"name":"SPI_GETDOCKMOVING","features":[367]},{"name":"SPI_GETDRAGFROMMAXIMIZE","features":[367]},{"name":"SPI_GETDRAGFULLWINDOWS","features":[367]},{"name":"SPI_GETDROPSHADOW","features":[367]},{"name":"SPI_GETFASTTASKSWITCH","features":[367]},{"name":"SPI_GETFILTERKEYS","features":[367]},{"name":"SPI_GETFLATMENU","features":[367]},{"name":"SPI_GETFOCUSBORDERHEIGHT","features":[367]},{"name":"SPI_GETFOCUSBORDERWIDTH","features":[367]},{"name":"SPI_GETFONTSMOOTHING","features":[367]},{"name":"SPI_GETFONTSMOOTHINGCONTRAST","features":[367]},{"name":"SPI_GETFONTSMOOTHINGORIENTATION","features":[367]},{"name":"SPI_GETFONTSMOOTHINGTYPE","features":[367]},{"name":"SPI_GETFOREGROUNDFLASHCOUNT","features":[367]},{"name":"SPI_GETFOREGROUNDLOCKTIMEOUT","features":[367]},{"name":"SPI_GETGESTUREVISUALIZATION","features":[367]},{"name":"SPI_GETGRADIENTCAPTIONS","features":[367]},{"name":"SPI_GETGRIDGRANULARITY","features":[367]},{"name":"SPI_GETHANDEDNESS","features":[367]},{"name":"SPI_GETHIGHCONTRAST","features":[367]},{"name":"SPI_GETHOTTRACKING","features":[367]},{"name":"SPI_GETHUNGAPPTIMEOUT","features":[367]},{"name":"SPI_GETICONMETRICS","features":[367]},{"name":"SPI_GETICONTITLELOGFONT","features":[367]},{"name":"SPI_GETICONTITLEWRAP","features":[367]},{"name":"SPI_GETKEYBOARDCUES","features":[367]},{"name":"SPI_GETKEYBOARDDELAY","features":[367]},{"name":"SPI_GETKEYBOARDPREF","features":[367]},{"name":"SPI_GETKEYBOARDSPEED","features":[367]},{"name":"SPI_GETLISTBOXSMOOTHSCROLLING","features":[367]},{"name":"SPI_GETLOGICALDPIOVERRIDE","features":[367]},{"name":"SPI_GETLOWPOWERACTIVE","features":[367]},{"name":"SPI_GETLOWPOWERTIMEOUT","features":[367]},{"name":"SPI_GETMENUANIMATION","features":[367]},{"name":"SPI_GETMENUDROPALIGNMENT","features":[367]},{"name":"SPI_GETMENUFADE","features":[367]},{"name":"SPI_GETMENURECT","features":[367]},{"name":"SPI_GETMENUSHOWDELAY","features":[367]},{"name":"SPI_GETMENUUNDERLINES","features":[367]},{"name":"SPI_GETMESSAGEDURATION","features":[367]},{"name":"SPI_GETMINIMIZEDMETRICS","features":[367]},{"name":"SPI_GETMINIMUMHITRADIUS","features":[367]},{"name":"SPI_GETMOUSE","features":[367]},{"name":"SPI_GETMOUSECLICKLOCK","features":[367]},{"name":"SPI_GETMOUSECLICKLOCKTIME","features":[367]},{"name":"SPI_GETMOUSEDOCKTHRESHOLD","features":[367]},{"name":"SPI_GETMOUSEDRAGOUTTHRESHOLD","features":[367]},{"name":"SPI_GETMOUSEHOVERHEIGHT","features":[367]},{"name":"SPI_GETMOUSEHOVERTIME","features":[367]},{"name":"SPI_GETMOUSEHOVERWIDTH","features":[367]},{"name":"SPI_GETMOUSEKEYS","features":[367]},{"name":"SPI_GETMOUSESIDEMOVETHRESHOLD","features":[367]},{"name":"SPI_GETMOUSESONAR","features":[367]},{"name":"SPI_GETMOUSESPEED","features":[367]},{"name":"SPI_GETMOUSETRAILS","features":[367]},{"name":"SPI_GETMOUSEVANISH","features":[367]},{"name":"SPI_GETMOUSEWHEELROUTING","features":[367]},{"name":"SPI_GETNONCLIENTMETRICS","features":[367]},{"name":"SPI_GETPENARBITRATIONTYPE","features":[367]},{"name":"SPI_GETPENDOCKTHRESHOLD","features":[367]},{"name":"SPI_GETPENDRAGOUTTHRESHOLD","features":[367]},{"name":"SPI_GETPENSIDEMOVETHRESHOLD","features":[367]},{"name":"SPI_GETPENVISUALIZATION","features":[367]},{"name":"SPI_GETPOWEROFFACTIVE","features":[367]},{"name":"SPI_GETPOWEROFFTIMEOUT","features":[367]},{"name":"SPI_GETSCREENREADER","features":[367]},{"name":"SPI_GETSCREENSAVEACTIVE","features":[367]},{"name":"SPI_GETSCREENSAVERRUNNING","features":[367]},{"name":"SPI_GETSCREENSAVESECURE","features":[367]},{"name":"SPI_GETSCREENSAVETIMEOUT","features":[367]},{"name":"SPI_GETSELECTIONFADE","features":[367]},{"name":"SPI_GETSERIALKEYS","features":[367]},{"name":"SPI_GETSHOWIMEUI","features":[367]},{"name":"SPI_GETSHOWSOUNDS","features":[367]},{"name":"SPI_GETSNAPSIZING","features":[367]},{"name":"SPI_GETSNAPTODEFBUTTON","features":[367]},{"name":"SPI_GETSOUNDSENTRY","features":[367]},{"name":"SPI_GETSPEECHRECOGNITION","features":[367]},{"name":"SPI_GETSTICKYKEYS","features":[367]},{"name":"SPI_GETSYSTEMLANGUAGEBAR","features":[367]},{"name":"SPI_GETTHREADLOCALINPUTSETTINGS","features":[367]},{"name":"SPI_GETTOGGLEKEYS","features":[367]},{"name":"SPI_GETTOOLTIPANIMATION","features":[367]},{"name":"SPI_GETTOOLTIPFADE","features":[367]},{"name":"SPI_GETTOUCHPREDICTIONPARAMETERS","features":[367]},{"name":"SPI_GETUIEFFECTS","features":[367]},{"name":"SPI_GETWAITTOKILLSERVICETIMEOUT","features":[367]},{"name":"SPI_GETWAITTOKILLTIMEOUT","features":[367]},{"name":"SPI_GETWHEELSCROLLCHARS","features":[367]},{"name":"SPI_GETWHEELSCROLLLINES","features":[367]},{"name":"SPI_GETWINARRANGING","features":[367]},{"name":"SPI_GETWINDOWSEXTENSION","features":[367]},{"name":"SPI_GETWORKAREA","features":[367]},{"name":"SPI_ICONHORIZONTALSPACING","features":[367]},{"name":"SPI_ICONVERTICALSPACING","features":[367]},{"name":"SPI_LANGDRIVER","features":[367]},{"name":"SPI_SCREENSAVERRUNNING","features":[367]},{"name":"SPI_SETACCESSTIMEOUT","features":[367]},{"name":"SPI_SETACTIVEWINDOWTRACKING","features":[367]},{"name":"SPI_SETACTIVEWNDTRKTIMEOUT","features":[367]},{"name":"SPI_SETACTIVEWNDTRKZORDER","features":[367]},{"name":"SPI_SETANIMATION","features":[367]},{"name":"SPI_SETAUDIODESCRIPTION","features":[367]},{"name":"SPI_SETBEEP","features":[367]},{"name":"SPI_SETBLOCKSENDINPUTRESETS","features":[367]},{"name":"SPI_SETBORDER","features":[367]},{"name":"SPI_SETCARETBROWSING","features":[367]},{"name":"SPI_SETCARETTIMEOUT","features":[367]},{"name":"SPI_SETCARETWIDTH","features":[367]},{"name":"SPI_SETCLEARTYPE","features":[367]},{"name":"SPI_SETCLIENTAREAANIMATION","features":[367]},{"name":"SPI_SETCOMBOBOXANIMATION","features":[367]},{"name":"SPI_SETCONTACTVISUALIZATION","features":[367]},{"name":"SPI_SETCURSORS","features":[367]},{"name":"SPI_SETCURSORSHADOW","features":[367]},{"name":"SPI_SETDEFAULTINPUTLANG","features":[367]},{"name":"SPI_SETDESKPATTERN","features":[367]},{"name":"SPI_SETDESKWALLPAPER","features":[367]},{"name":"SPI_SETDISABLEOVERLAPPEDCONTENT","features":[367]},{"name":"SPI_SETDOCKMOVING","features":[367]},{"name":"SPI_SETDOUBLECLICKTIME","features":[367]},{"name":"SPI_SETDOUBLECLKHEIGHT","features":[367]},{"name":"SPI_SETDOUBLECLKWIDTH","features":[367]},{"name":"SPI_SETDRAGFROMMAXIMIZE","features":[367]},{"name":"SPI_SETDRAGFULLWINDOWS","features":[367]},{"name":"SPI_SETDRAGHEIGHT","features":[367]},{"name":"SPI_SETDRAGWIDTH","features":[367]},{"name":"SPI_SETDROPSHADOW","features":[367]},{"name":"SPI_SETFASTTASKSWITCH","features":[367]},{"name":"SPI_SETFILTERKEYS","features":[367]},{"name":"SPI_SETFLATMENU","features":[367]},{"name":"SPI_SETFOCUSBORDERHEIGHT","features":[367]},{"name":"SPI_SETFOCUSBORDERWIDTH","features":[367]},{"name":"SPI_SETFONTSMOOTHING","features":[367]},{"name":"SPI_SETFONTSMOOTHINGCONTRAST","features":[367]},{"name":"SPI_SETFONTSMOOTHINGORIENTATION","features":[367]},{"name":"SPI_SETFONTSMOOTHINGTYPE","features":[367]},{"name":"SPI_SETFOREGROUNDFLASHCOUNT","features":[367]},{"name":"SPI_SETFOREGROUNDLOCKTIMEOUT","features":[367]},{"name":"SPI_SETGESTUREVISUALIZATION","features":[367]},{"name":"SPI_SETGRADIENTCAPTIONS","features":[367]},{"name":"SPI_SETGRIDGRANULARITY","features":[367]},{"name":"SPI_SETHANDEDNESS","features":[367]},{"name":"SPI_SETHANDHELD","features":[367]},{"name":"SPI_SETHIGHCONTRAST","features":[367]},{"name":"SPI_SETHOTTRACKING","features":[367]},{"name":"SPI_SETHUNGAPPTIMEOUT","features":[367]},{"name":"SPI_SETICONMETRICS","features":[367]},{"name":"SPI_SETICONS","features":[367]},{"name":"SPI_SETICONTITLELOGFONT","features":[367]},{"name":"SPI_SETICONTITLEWRAP","features":[367]},{"name":"SPI_SETKEYBOARDCUES","features":[367]},{"name":"SPI_SETKEYBOARDDELAY","features":[367]},{"name":"SPI_SETKEYBOARDPREF","features":[367]},{"name":"SPI_SETKEYBOARDSPEED","features":[367]},{"name":"SPI_SETLANGTOGGLE","features":[367]},{"name":"SPI_SETLISTBOXSMOOTHSCROLLING","features":[367]},{"name":"SPI_SETLOGICALDPIOVERRIDE","features":[367]},{"name":"SPI_SETLOWPOWERACTIVE","features":[367]},{"name":"SPI_SETLOWPOWERTIMEOUT","features":[367]},{"name":"SPI_SETMENUANIMATION","features":[367]},{"name":"SPI_SETMENUDROPALIGNMENT","features":[367]},{"name":"SPI_SETMENUFADE","features":[367]},{"name":"SPI_SETMENURECT","features":[367]},{"name":"SPI_SETMENUSHOWDELAY","features":[367]},{"name":"SPI_SETMENUUNDERLINES","features":[367]},{"name":"SPI_SETMESSAGEDURATION","features":[367]},{"name":"SPI_SETMINIMIZEDMETRICS","features":[367]},{"name":"SPI_SETMINIMUMHITRADIUS","features":[367]},{"name":"SPI_SETMOUSE","features":[367]},{"name":"SPI_SETMOUSEBUTTONSWAP","features":[367]},{"name":"SPI_SETMOUSECLICKLOCK","features":[367]},{"name":"SPI_SETMOUSECLICKLOCKTIME","features":[367]},{"name":"SPI_SETMOUSEDOCKTHRESHOLD","features":[367]},{"name":"SPI_SETMOUSEDRAGOUTTHRESHOLD","features":[367]},{"name":"SPI_SETMOUSEHOVERHEIGHT","features":[367]},{"name":"SPI_SETMOUSEHOVERTIME","features":[367]},{"name":"SPI_SETMOUSEHOVERWIDTH","features":[367]},{"name":"SPI_SETMOUSEKEYS","features":[367]},{"name":"SPI_SETMOUSESIDEMOVETHRESHOLD","features":[367]},{"name":"SPI_SETMOUSESONAR","features":[367]},{"name":"SPI_SETMOUSESPEED","features":[367]},{"name":"SPI_SETMOUSETRAILS","features":[367]},{"name":"SPI_SETMOUSEVANISH","features":[367]},{"name":"SPI_SETMOUSEWHEELROUTING","features":[367]},{"name":"SPI_SETNONCLIENTMETRICS","features":[367]},{"name":"SPI_SETPENARBITRATIONTYPE","features":[367]},{"name":"SPI_SETPENDOCKTHRESHOLD","features":[367]},{"name":"SPI_SETPENDRAGOUTTHRESHOLD","features":[367]},{"name":"SPI_SETPENSIDEMOVETHRESHOLD","features":[367]},{"name":"SPI_SETPENVISUALIZATION","features":[367]},{"name":"SPI_SETPENWINDOWS","features":[367]},{"name":"SPI_SETPOWEROFFACTIVE","features":[367]},{"name":"SPI_SETPOWEROFFTIMEOUT","features":[367]},{"name":"SPI_SETSCREENREADER","features":[367]},{"name":"SPI_SETSCREENSAVEACTIVE","features":[367]},{"name":"SPI_SETSCREENSAVERRUNNING","features":[367]},{"name":"SPI_SETSCREENSAVESECURE","features":[367]},{"name":"SPI_SETSCREENSAVETIMEOUT","features":[367]},{"name":"SPI_SETSELECTIONFADE","features":[367]},{"name":"SPI_SETSERIALKEYS","features":[367]},{"name":"SPI_SETSHOWIMEUI","features":[367]},{"name":"SPI_SETSHOWSOUNDS","features":[367]},{"name":"SPI_SETSNAPSIZING","features":[367]},{"name":"SPI_SETSNAPTODEFBUTTON","features":[367]},{"name":"SPI_SETSOUNDSENTRY","features":[367]},{"name":"SPI_SETSPEECHRECOGNITION","features":[367]},{"name":"SPI_SETSTICKYKEYS","features":[367]},{"name":"SPI_SETSYSTEMLANGUAGEBAR","features":[367]},{"name":"SPI_SETTHREADLOCALINPUTSETTINGS","features":[367]},{"name":"SPI_SETTOGGLEKEYS","features":[367]},{"name":"SPI_SETTOOLTIPANIMATION","features":[367]},{"name":"SPI_SETTOOLTIPFADE","features":[367]},{"name":"SPI_SETTOUCHPREDICTIONPARAMETERS","features":[367]},{"name":"SPI_SETUIEFFECTS","features":[367]},{"name":"SPI_SETWAITTOKILLSERVICETIMEOUT","features":[367]},{"name":"SPI_SETWAITTOKILLTIMEOUT","features":[367]},{"name":"SPI_SETWHEELSCROLLCHARS","features":[367]},{"name":"SPI_SETWHEELSCROLLLINES","features":[367]},{"name":"SPI_SETWINARRANGING","features":[367]},{"name":"SPI_SETWORKAREA","features":[367]},{"name":"STATE_SYSTEM_ALERT_HIGH","features":[367]},{"name":"STATE_SYSTEM_ALERT_LOW","features":[367]},{"name":"STATE_SYSTEM_ALERT_MEDIUM","features":[367]},{"name":"STATE_SYSTEM_ANIMATED","features":[367]},{"name":"STATE_SYSTEM_BUSY","features":[367]},{"name":"STATE_SYSTEM_CHECKED","features":[367]},{"name":"STATE_SYSTEM_COLLAPSED","features":[367]},{"name":"STATE_SYSTEM_DEFAULT","features":[367]},{"name":"STATE_SYSTEM_EXPANDED","features":[367]},{"name":"STATE_SYSTEM_EXTSELECTABLE","features":[367]},{"name":"STATE_SYSTEM_FLOATING","features":[367]},{"name":"STATE_SYSTEM_FOCUSED","features":[367]},{"name":"STATE_SYSTEM_HOTTRACKED","features":[367]},{"name":"STATE_SYSTEM_INDETERMINATE","features":[367]},{"name":"STATE_SYSTEM_LINKED","features":[367]},{"name":"STATE_SYSTEM_MARQUEED","features":[367]},{"name":"STATE_SYSTEM_MIXED","features":[367]},{"name":"STATE_SYSTEM_MOVEABLE","features":[367]},{"name":"STATE_SYSTEM_MULTISELECTABLE","features":[367]},{"name":"STATE_SYSTEM_PROTECTED","features":[367]},{"name":"STATE_SYSTEM_READONLY","features":[367]},{"name":"STATE_SYSTEM_SELECTABLE","features":[367]},{"name":"STATE_SYSTEM_SELECTED","features":[367]},{"name":"STATE_SYSTEM_SELFVOICING","features":[367]},{"name":"STATE_SYSTEM_SIZEABLE","features":[367]},{"name":"STATE_SYSTEM_TRAVERSED","features":[367]},{"name":"STATE_SYSTEM_VALID","features":[367]},{"name":"STM_GETICON","features":[367]},{"name":"STM_GETIMAGE","features":[367]},{"name":"STM_MSGMAX","features":[367]},{"name":"STM_SETICON","features":[367]},{"name":"STM_SETIMAGE","features":[367]},{"name":"STN_CLICKED","features":[367]},{"name":"STN_DBLCLK","features":[367]},{"name":"STN_DISABLE","features":[367]},{"name":"STN_ENABLE","features":[367]},{"name":"STRSAFE_E_END_OF_FILE","features":[367]},{"name":"STRSAFE_E_INSUFFICIENT_BUFFER","features":[367]},{"name":"STRSAFE_E_INVALID_PARAMETER","features":[367]},{"name":"STRSAFE_FILL_BEHIND_NULL","features":[367]},{"name":"STRSAFE_FILL_ON_FAILURE","features":[367]},{"name":"STRSAFE_IGNORE_NULLS","features":[367]},{"name":"STRSAFE_MAX_CCH","features":[367]},{"name":"STRSAFE_MAX_LENGTH","features":[367]},{"name":"STRSAFE_NO_TRUNCATION","features":[367]},{"name":"STRSAFE_NULL_ON_FAILURE","features":[367]},{"name":"STRSAFE_USE_SECURE_CRT","features":[367]},{"name":"STYLESTRUCT","features":[367]},{"name":"SWP_ASYNCWINDOWPOS","features":[367]},{"name":"SWP_DEFERERASE","features":[367]},{"name":"SWP_DRAWFRAME","features":[367]},{"name":"SWP_FRAMECHANGED","features":[367]},{"name":"SWP_HIDEWINDOW","features":[367]},{"name":"SWP_NOACTIVATE","features":[367]},{"name":"SWP_NOCOPYBITS","features":[367]},{"name":"SWP_NOMOVE","features":[367]},{"name":"SWP_NOOWNERZORDER","features":[367]},{"name":"SWP_NOREDRAW","features":[367]},{"name":"SWP_NOREPOSITION","features":[367]},{"name":"SWP_NOSENDCHANGING","features":[367]},{"name":"SWP_NOSIZE","features":[367]},{"name":"SWP_NOZORDER","features":[367]},{"name":"SWP_SHOWWINDOW","features":[367]},{"name":"SW_ERASE","features":[367]},{"name":"SW_FORCEMINIMIZE","features":[367]},{"name":"SW_HIDE","features":[367]},{"name":"SW_INVALIDATE","features":[367]},{"name":"SW_MAX","features":[367]},{"name":"SW_MAXIMIZE","features":[367]},{"name":"SW_MINIMIZE","features":[367]},{"name":"SW_NORMAL","features":[367]},{"name":"SW_OTHERUNZOOM","features":[367]},{"name":"SW_OTHERZOOM","features":[367]},{"name":"SW_PARENTCLOSING","features":[367]},{"name":"SW_PARENTOPENING","features":[367]},{"name":"SW_RESTORE","features":[367]},{"name":"SW_SCROLLCHILDREN","features":[367]},{"name":"SW_SHOW","features":[367]},{"name":"SW_SHOWDEFAULT","features":[367]},{"name":"SW_SHOWMAXIMIZED","features":[367]},{"name":"SW_SHOWMINIMIZED","features":[367]},{"name":"SW_SHOWMINNOACTIVE","features":[367]},{"name":"SW_SHOWNA","features":[367]},{"name":"SW_SHOWNOACTIVATE","features":[367]},{"name":"SW_SHOWNORMAL","features":[367]},{"name":"SW_SMOOTHSCROLL","features":[367]},{"name":"SYSTEM_CURSOR_ID","features":[367]},{"name":"SYSTEM_METRICS_INDEX","features":[367]},{"name":"SYSTEM_PARAMETERS_INFO_ACTION","features":[367]},{"name":"SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS","features":[367]},{"name":"ScrollDC","features":[305,316,367]},{"name":"ScrollWindow","features":[305,367]},{"name":"ScrollWindowEx","features":[305,316,367]},{"name":"SendDlgItemMessageA","features":[305,367]},{"name":"SendDlgItemMessageW","features":[305,367]},{"name":"SendMessageA","features":[305,367]},{"name":"SendMessageCallbackA","features":[305,367]},{"name":"SendMessageCallbackW","features":[305,367]},{"name":"SendMessageTimeoutA","features":[305,367]},{"name":"SendMessageTimeoutW","features":[305,367]},{"name":"SendMessageW","features":[305,367]},{"name":"SendNotifyMessageA","features":[305,367]},{"name":"SendNotifyMessageW","features":[305,367]},{"name":"SetAdditionalForegroundBoostProcesses","features":[305,367]},{"name":"SetCaretBlinkTime","features":[305,367]},{"name":"SetCaretPos","features":[305,367]},{"name":"SetClassLongA","features":[305,367]},{"name":"SetClassLongPtrA","features":[305,367]},{"name":"SetClassLongPtrW","features":[305,367]},{"name":"SetClassLongW","features":[305,367]},{"name":"SetClassWord","features":[305,367]},{"name":"SetCoalescableTimer","features":[305,367]},{"name":"SetCursor","features":[367]},{"name":"SetCursorPos","features":[305,367]},{"name":"SetDebugErrorLevel","features":[367]},{"name":"SetDlgItemInt","features":[305,367]},{"name":"SetDlgItemTextA","features":[305,367]},{"name":"SetDlgItemTextW","features":[305,367]},{"name":"SetForegroundWindow","features":[305,367]},{"name":"SetLayeredWindowAttributes","features":[305,367]},{"name":"SetMenu","features":[305,367]},{"name":"SetMenuDefaultItem","features":[305,367]},{"name":"SetMenuInfo","features":[305,316,367]},{"name":"SetMenuItemBitmaps","features":[305,316,367]},{"name":"SetMenuItemInfoA","features":[305,316,367]},{"name":"SetMenuItemInfoW","features":[305,316,367]},{"name":"SetMessageExtraInfo","features":[305,367]},{"name":"SetMessageQueue","features":[305,367]},{"name":"SetParent","features":[305,367]},{"name":"SetPhysicalCursorPos","features":[305,367]},{"name":"SetProcessDPIAware","features":[305,367]},{"name":"SetProcessDefaultLayout","features":[305,367]},{"name":"SetPropA","features":[305,367]},{"name":"SetPropW","features":[305,367]},{"name":"SetSystemCursor","features":[305,367]},{"name":"SetTimer","features":[305,367]},{"name":"SetWindowDisplayAffinity","features":[305,367]},{"name":"SetWindowLongA","features":[305,367]},{"name":"SetWindowLongPtrA","features":[305,367]},{"name":"SetWindowLongPtrW","features":[305,367]},{"name":"SetWindowLongW","features":[305,367]},{"name":"SetWindowPlacement","features":[305,367]},{"name":"SetWindowPos","features":[305,367]},{"name":"SetWindowTextA","features":[305,367]},{"name":"SetWindowTextW","features":[305,367]},{"name":"SetWindowWord","features":[305,367]},{"name":"SetWindowsHookA","features":[305,367]},{"name":"SetWindowsHookExA","features":[305,367]},{"name":"SetWindowsHookExW","features":[305,367]},{"name":"SetWindowsHookW","features":[305,367]},{"name":"ShowCaret","features":[305,367]},{"name":"ShowCursor","features":[305,367]},{"name":"ShowOwnedPopups","features":[305,367]},{"name":"ShowWindow","features":[305,367]},{"name":"ShowWindowAsync","features":[305,367]},{"name":"SoundSentry","features":[305,367]},{"name":"SwitchToThisWindow","features":[305,367]},{"name":"SystemParametersInfoA","features":[305,367]},{"name":"SystemParametersInfoW","features":[305,367]},{"name":"TDF_REGISTER","features":[367]},{"name":"TDF_UNREGISTER","features":[367]},{"name":"TILE_WINDOWS_HOW","features":[367]},{"name":"TIMERPROC","features":[305,367]},{"name":"TIMERV_COALESCING_MAX","features":[367]},{"name":"TIMERV_COALESCING_MIN","features":[367]},{"name":"TIMERV_DEFAULT_COALESCING","features":[367]},{"name":"TIMERV_NO_COALESCING","features":[367]},{"name":"TITLEBARINFO","features":[305,367]},{"name":"TITLEBARINFOEX","features":[305,367]},{"name":"TKF_AVAILABLE","features":[367]},{"name":"TKF_CONFIRMHOTKEY","features":[367]},{"name":"TKF_HOTKEYACTIVE","features":[367]},{"name":"TKF_HOTKEYSOUND","features":[367]},{"name":"TKF_INDICATOR","features":[367]},{"name":"TKF_TOGGLEKEYSON","features":[367]},{"name":"TOOLTIP_DISMISS_FLAGS","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_LATENCY","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_DELTA","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_EXPO_SMOOTH_ALPHA","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_LEARNING_RATE","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MAX","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_RLS_LAMBDA_MIN","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_SAMPLETIME","features":[367]},{"name":"TOUCHPREDICTIONPARAMETERS_DEFAULT_USE_HW_TIMESTAMP","features":[367]},{"name":"TOUCH_FLAG_NONE","features":[367]},{"name":"TOUCH_HIT_TESTING_CLIENT","features":[367]},{"name":"TOUCH_HIT_TESTING_DEFAULT","features":[367]},{"name":"TOUCH_HIT_TESTING_NONE","features":[367]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_CLOSEST","features":[367]},{"name":"TOUCH_HIT_TESTING_PROXIMITY_FARTHEST","features":[367]},{"name":"TOUCH_MASK_CONTACTAREA","features":[367]},{"name":"TOUCH_MASK_NONE","features":[367]},{"name":"TOUCH_MASK_ORIENTATION","features":[367]},{"name":"TOUCH_MASK_PRESSURE","features":[367]},{"name":"TPMPARAMS","features":[305,367]},{"name":"TPM_BOTTOMALIGN","features":[367]},{"name":"TPM_CENTERALIGN","features":[367]},{"name":"TPM_HORIZONTAL","features":[367]},{"name":"TPM_HORNEGANIMATION","features":[367]},{"name":"TPM_HORPOSANIMATION","features":[367]},{"name":"TPM_LAYOUTRTL","features":[367]},{"name":"TPM_LEFTALIGN","features":[367]},{"name":"TPM_LEFTBUTTON","features":[367]},{"name":"TPM_NOANIMATION","features":[367]},{"name":"TPM_NONOTIFY","features":[367]},{"name":"TPM_RECURSE","features":[367]},{"name":"TPM_RETURNCMD","features":[367]},{"name":"TPM_RIGHTALIGN","features":[367]},{"name":"TPM_RIGHTBUTTON","features":[367]},{"name":"TPM_TOPALIGN","features":[367]},{"name":"TPM_VCENTERALIGN","features":[367]},{"name":"TPM_VERNEGANIMATION","features":[367]},{"name":"TPM_VERPOSANIMATION","features":[367]},{"name":"TPM_VERTICAL","features":[367]},{"name":"TPM_WORKAREA","features":[367]},{"name":"TRACK_POPUP_MENU_FLAGS","features":[367]},{"name":"TileWindows","features":[305,367]},{"name":"TrackPopupMenu","features":[305,367]},{"name":"TrackPopupMenuEx","features":[305,367]},{"name":"TranslateAcceleratorA","features":[305,367]},{"name":"TranslateAcceleratorW","features":[305,367]},{"name":"TranslateMDISysAccel","features":[305,367]},{"name":"TranslateMessage","features":[305,367]},{"name":"UISF_ACTIVE","features":[367]},{"name":"UISF_HIDEACCEL","features":[367]},{"name":"UISF_HIDEFOCUS","features":[367]},{"name":"UIS_CLEAR","features":[367]},{"name":"UIS_INITIALIZE","features":[367]},{"name":"UIS_SET","features":[367]},{"name":"ULW_ALPHA","features":[367]},{"name":"ULW_COLORKEY","features":[367]},{"name":"ULW_EX_NORESIZE","features":[367]},{"name":"ULW_OPAQUE","features":[367]},{"name":"UNICODE_NOCHAR","features":[367]},{"name":"UOI_TIMERPROC_EXCEPTION_SUPPRESSION","features":[367]},{"name":"UPDATELAYEREDWINDOWINFO","features":[305,316,367]},{"name":"UPDATE_LAYERED_WINDOW_FLAGS","features":[367]},{"name":"USER_DEFAULT_SCREEN_DPI","features":[367]},{"name":"USER_TIMER_MAXIMUM","features":[367]},{"name":"USER_TIMER_MINIMUM","features":[367]},{"name":"UnhookWindowsHook","features":[305,367]},{"name":"UnhookWindowsHookEx","features":[305,367]},{"name":"UnregisterClassA","features":[305,367]},{"name":"UnregisterClassW","features":[305,367]},{"name":"UnregisterDeviceNotification","features":[305,367]},{"name":"UpdateLayeredWindow","features":[305,316,367]},{"name":"UpdateLayeredWindowIndirect","features":[305,316,367]},{"name":"VolLockBroadcast","features":[367]},{"name":"WA_ACTIVE","features":[367]},{"name":"WA_CLICKACTIVE","features":[367]},{"name":"WA_INACTIVE","features":[367]},{"name":"WDA_EXCLUDEFROMCAPTURE","features":[367]},{"name":"WDA_MONITOR","features":[367]},{"name":"WDA_NONE","features":[367]},{"name":"WHEEL_DELTA","features":[367]},{"name":"WH_CALLWNDPROC","features":[367]},{"name":"WH_CALLWNDPROCRET","features":[367]},{"name":"WH_CBT","features":[367]},{"name":"WH_DEBUG","features":[367]},{"name":"WH_FOREGROUNDIDLE","features":[367]},{"name":"WH_GETMESSAGE","features":[367]},{"name":"WH_HARDWARE","features":[367]},{"name":"WH_JOURNALPLAYBACK","features":[367]},{"name":"WH_JOURNALRECORD","features":[367]},{"name":"WH_KEYBOARD","features":[367]},{"name":"WH_KEYBOARD_LL","features":[367]},{"name":"WH_MAX","features":[367]},{"name":"WH_MAXHOOK","features":[367]},{"name":"WH_MIN","features":[367]},{"name":"WH_MINHOOK","features":[367]},{"name":"WH_MOUSE","features":[367]},{"name":"WH_MOUSE_LL","features":[367]},{"name":"WH_MSGFILTER","features":[367]},{"name":"WH_SHELL","features":[367]},{"name":"WH_SYSMSGFILTER","features":[367]},{"name":"WINDOWINFO","features":[305,367]},{"name":"WINDOWPLACEMENT","features":[305,367]},{"name":"WINDOWPLACEMENT_FLAGS","features":[367]},{"name":"WINDOWPOS","features":[305,367]},{"name":"WINDOWS_HOOK_ID","features":[367]},{"name":"WINDOW_DISPLAY_AFFINITY","features":[367]},{"name":"WINDOW_EX_STYLE","features":[367]},{"name":"WINDOW_LONG_PTR_INDEX","features":[367]},{"name":"WINDOW_MESSAGE_FILTER_ACTION","features":[367]},{"name":"WINDOW_STYLE","features":[367]},{"name":"WINEVENT_INCONTEXT","features":[367]},{"name":"WINEVENT_OUTOFCONTEXT","features":[367]},{"name":"WINEVENT_SKIPOWNPROCESS","features":[367]},{"name":"WINEVENT_SKIPOWNTHREAD","features":[367]},{"name":"WINSTA_ACCESSCLIPBOARD","features":[367]},{"name":"WINSTA_ACCESSGLOBALATOMS","features":[367]},{"name":"WINSTA_ALL_ACCESS","features":[367]},{"name":"WINSTA_CREATEDESKTOP","features":[367]},{"name":"WINSTA_ENUMDESKTOPS","features":[367]},{"name":"WINSTA_ENUMERATE","features":[367]},{"name":"WINSTA_EXITWINDOWS","features":[367]},{"name":"WINSTA_READATTRIBUTES","features":[367]},{"name":"WINSTA_READSCREEN","features":[367]},{"name":"WINSTA_WRITEATTRIBUTES","features":[367]},{"name":"WMSZ_BOTTOM","features":[367]},{"name":"WMSZ_BOTTOMLEFT","features":[367]},{"name":"WMSZ_BOTTOMRIGHT","features":[367]},{"name":"WMSZ_LEFT","features":[367]},{"name":"WMSZ_RIGHT","features":[367]},{"name":"WMSZ_TOP","features":[367]},{"name":"WMSZ_TOPLEFT","features":[367]},{"name":"WMSZ_TOPRIGHT","features":[367]},{"name":"WM_ACTIVATE","features":[367]},{"name":"WM_ACTIVATEAPP","features":[367]},{"name":"WM_AFXFIRST","features":[367]},{"name":"WM_AFXLAST","features":[367]},{"name":"WM_APP","features":[367]},{"name":"WM_APPCOMMAND","features":[367]},{"name":"WM_ASKCBFORMATNAME","features":[367]},{"name":"WM_CANCELJOURNAL","features":[367]},{"name":"WM_CANCELMODE","features":[367]},{"name":"WM_CAPTURECHANGED","features":[367]},{"name":"WM_CHANGECBCHAIN","features":[367]},{"name":"WM_CHANGEUISTATE","features":[367]},{"name":"WM_CHAR","features":[367]},{"name":"WM_CHARTOITEM","features":[367]},{"name":"WM_CHILDACTIVATE","features":[367]},{"name":"WM_CLEAR","features":[367]},{"name":"WM_CLIPBOARDUPDATE","features":[367]},{"name":"WM_CLOSE","features":[367]},{"name":"WM_COMMAND","features":[367]},{"name":"WM_COMMNOTIFY","features":[367]},{"name":"WM_COMPACTING","features":[367]},{"name":"WM_COMPAREITEM","features":[367]},{"name":"WM_CONTEXTMENU","features":[367]},{"name":"WM_COPY","features":[367]},{"name":"WM_COPYDATA","features":[367]},{"name":"WM_CREATE","features":[367]},{"name":"WM_CTLCOLORBTN","features":[367]},{"name":"WM_CTLCOLORDLG","features":[367]},{"name":"WM_CTLCOLOREDIT","features":[367]},{"name":"WM_CTLCOLORLISTBOX","features":[367]},{"name":"WM_CTLCOLORMSGBOX","features":[367]},{"name":"WM_CTLCOLORSCROLLBAR","features":[367]},{"name":"WM_CTLCOLORSTATIC","features":[367]},{"name":"WM_CUT","features":[367]},{"name":"WM_DEADCHAR","features":[367]},{"name":"WM_DELETEITEM","features":[367]},{"name":"WM_DESTROY","features":[367]},{"name":"WM_DESTROYCLIPBOARD","features":[367]},{"name":"WM_DEVICECHANGE","features":[367]},{"name":"WM_DEVMODECHANGE","features":[367]},{"name":"WM_DISPLAYCHANGE","features":[367]},{"name":"WM_DPICHANGED","features":[367]},{"name":"WM_DPICHANGED_AFTERPARENT","features":[367]},{"name":"WM_DPICHANGED_BEFOREPARENT","features":[367]},{"name":"WM_DRAWCLIPBOARD","features":[367]},{"name":"WM_DRAWITEM","features":[367]},{"name":"WM_DROPFILES","features":[367]},{"name":"WM_DWMCOLORIZATIONCOLORCHANGED","features":[367]},{"name":"WM_DWMCOMPOSITIONCHANGED","features":[367]},{"name":"WM_DWMNCRENDERINGCHANGED","features":[367]},{"name":"WM_DWMSENDICONICLIVEPREVIEWBITMAP","features":[367]},{"name":"WM_DWMSENDICONICTHUMBNAIL","features":[367]},{"name":"WM_DWMWINDOWMAXIMIZEDCHANGE","features":[367]},{"name":"WM_ENABLE","features":[367]},{"name":"WM_ENDSESSION","features":[367]},{"name":"WM_ENTERIDLE","features":[367]},{"name":"WM_ENTERMENULOOP","features":[367]},{"name":"WM_ENTERSIZEMOVE","features":[367]},{"name":"WM_ERASEBKGND","features":[367]},{"name":"WM_EXITMENULOOP","features":[367]},{"name":"WM_EXITSIZEMOVE","features":[367]},{"name":"WM_FONTCHANGE","features":[367]},{"name":"WM_GESTURE","features":[367]},{"name":"WM_GESTURENOTIFY","features":[367]},{"name":"WM_GETDLGCODE","features":[367]},{"name":"WM_GETDPISCALEDSIZE","features":[367]},{"name":"WM_GETFONT","features":[367]},{"name":"WM_GETHOTKEY","features":[367]},{"name":"WM_GETICON","features":[367]},{"name":"WM_GETMINMAXINFO","features":[367]},{"name":"WM_GETOBJECT","features":[367]},{"name":"WM_GETTEXT","features":[367]},{"name":"WM_GETTEXTLENGTH","features":[367]},{"name":"WM_GETTITLEBARINFOEX","features":[367]},{"name":"WM_HANDHELDFIRST","features":[367]},{"name":"WM_HANDHELDLAST","features":[367]},{"name":"WM_HELP","features":[367]},{"name":"WM_HOTKEY","features":[367]},{"name":"WM_HSCROLL","features":[367]},{"name":"WM_HSCROLLCLIPBOARD","features":[367]},{"name":"WM_ICONERASEBKGND","features":[367]},{"name":"WM_IME_CHAR","features":[367]},{"name":"WM_IME_COMPOSITION","features":[367]},{"name":"WM_IME_COMPOSITIONFULL","features":[367]},{"name":"WM_IME_CONTROL","features":[367]},{"name":"WM_IME_ENDCOMPOSITION","features":[367]},{"name":"WM_IME_KEYDOWN","features":[367]},{"name":"WM_IME_KEYLAST","features":[367]},{"name":"WM_IME_KEYUP","features":[367]},{"name":"WM_IME_NOTIFY","features":[367]},{"name":"WM_IME_REQUEST","features":[367]},{"name":"WM_IME_SELECT","features":[367]},{"name":"WM_IME_SETCONTEXT","features":[367]},{"name":"WM_IME_STARTCOMPOSITION","features":[367]},{"name":"WM_INITDIALOG","features":[367]},{"name":"WM_INITMENU","features":[367]},{"name":"WM_INITMENUPOPUP","features":[367]},{"name":"WM_INPUT","features":[367]},{"name":"WM_INPUTLANGCHANGE","features":[367]},{"name":"WM_INPUTLANGCHANGEREQUEST","features":[367]},{"name":"WM_INPUT_DEVICE_CHANGE","features":[367]},{"name":"WM_KEYDOWN","features":[367]},{"name":"WM_KEYFIRST","features":[367]},{"name":"WM_KEYLAST","features":[367]},{"name":"WM_KEYUP","features":[367]},{"name":"WM_KILLFOCUS","features":[367]},{"name":"WM_LBUTTONDBLCLK","features":[367]},{"name":"WM_LBUTTONDOWN","features":[367]},{"name":"WM_LBUTTONUP","features":[367]},{"name":"WM_MBUTTONDBLCLK","features":[367]},{"name":"WM_MBUTTONDOWN","features":[367]},{"name":"WM_MBUTTONUP","features":[367]},{"name":"WM_MDIACTIVATE","features":[367]},{"name":"WM_MDICASCADE","features":[367]},{"name":"WM_MDICREATE","features":[367]},{"name":"WM_MDIDESTROY","features":[367]},{"name":"WM_MDIGETACTIVE","features":[367]},{"name":"WM_MDIICONARRANGE","features":[367]},{"name":"WM_MDIMAXIMIZE","features":[367]},{"name":"WM_MDINEXT","features":[367]},{"name":"WM_MDIREFRESHMENU","features":[367]},{"name":"WM_MDIRESTORE","features":[367]},{"name":"WM_MDISETMENU","features":[367]},{"name":"WM_MDITILE","features":[367]},{"name":"WM_MEASUREITEM","features":[367]},{"name":"WM_MENUCHAR","features":[367]},{"name":"WM_MENUCOMMAND","features":[367]},{"name":"WM_MENUDRAG","features":[367]},{"name":"WM_MENUGETOBJECT","features":[367]},{"name":"WM_MENURBUTTONUP","features":[367]},{"name":"WM_MENUSELECT","features":[367]},{"name":"WM_MOUSEACTIVATE","features":[367]},{"name":"WM_MOUSEFIRST","features":[367]},{"name":"WM_MOUSEHWHEEL","features":[367]},{"name":"WM_MOUSELAST","features":[367]},{"name":"WM_MOUSEMOVE","features":[367]},{"name":"WM_MOUSEWHEEL","features":[367]},{"name":"WM_MOVE","features":[367]},{"name":"WM_MOVING","features":[367]},{"name":"WM_NCACTIVATE","features":[367]},{"name":"WM_NCCALCSIZE","features":[367]},{"name":"WM_NCCREATE","features":[367]},{"name":"WM_NCDESTROY","features":[367]},{"name":"WM_NCHITTEST","features":[367]},{"name":"WM_NCLBUTTONDBLCLK","features":[367]},{"name":"WM_NCLBUTTONDOWN","features":[367]},{"name":"WM_NCLBUTTONUP","features":[367]},{"name":"WM_NCMBUTTONDBLCLK","features":[367]},{"name":"WM_NCMBUTTONDOWN","features":[367]},{"name":"WM_NCMBUTTONUP","features":[367]},{"name":"WM_NCMOUSEHOVER","features":[367]},{"name":"WM_NCMOUSELEAVE","features":[367]},{"name":"WM_NCMOUSEMOVE","features":[367]},{"name":"WM_NCPAINT","features":[367]},{"name":"WM_NCPOINTERDOWN","features":[367]},{"name":"WM_NCPOINTERUP","features":[367]},{"name":"WM_NCPOINTERUPDATE","features":[367]},{"name":"WM_NCRBUTTONDBLCLK","features":[367]},{"name":"WM_NCRBUTTONDOWN","features":[367]},{"name":"WM_NCRBUTTONUP","features":[367]},{"name":"WM_NCXBUTTONDBLCLK","features":[367]},{"name":"WM_NCXBUTTONDOWN","features":[367]},{"name":"WM_NCXBUTTONUP","features":[367]},{"name":"WM_NEXTDLGCTL","features":[367]},{"name":"WM_NEXTMENU","features":[367]},{"name":"WM_NOTIFY","features":[367]},{"name":"WM_NOTIFYFORMAT","features":[367]},{"name":"WM_NULL","features":[367]},{"name":"WM_PAINT","features":[367]},{"name":"WM_PAINTCLIPBOARD","features":[367]},{"name":"WM_PAINTICON","features":[367]},{"name":"WM_PALETTECHANGED","features":[367]},{"name":"WM_PALETTEISCHANGING","features":[367]},{"name":"WM_PARENTNOTIFY","features":[367]},{"name":"WM_PASTE","features":[367]},{"name":"WM_PENWINFIRST","features":[367]},{"name":"WM_PENWINLAST","features":[367]},{"name":"WM_POINTERACTIVATE","features":[367]},{"name":"WM_POINTERCAPTURECHANGED","features":[367]},{"name":"WM_POINTERDEVICECHANGE","features":[367]},{"name":"WM_POINTERDEVICEINRANGE","features":[367]},{"name":"WM_POINTERDEVICEOUTOFRANGE","features":[367]},{"name":"WM_POINTERDOWN","features":[367]},{"name":"WM_POINTERENTER","features":[367]},{"name":"WM_POINTERHWHEEL","features":[367]},{"name":"WM_POINTERLEAVE","features":[367]},{"name":"WM_POINTERROUTEDAWAY","features":[367]},{"name":"WM_POINTERROUTEDRELEASED","features":[367]},{"name":"WM_POINTERROUTEDTO","features":[367]},{"name":"WM_POINTERUP","features":[367]},{"name":"WM_POINTERUPDATE","features":[367]},{"name":"WM_POINTERWHEEL","features":[367]},{"name":"WM_POWER","features":[367]},{"name":"WM_POWERBROADCAST","features":[367]},{"name":"WM_PRINT","features":[367]},{"name":"WM_PRINTCLIENT","features":[367]},{"name":"WM_QUERYDRAGICON","features":[367]},{"name":"WM_QUERYENDSESSION","features":[367]},{"name":"WM_QUERYNEWPALETTE","features":[367]},{"name":"WM_QUERYOPEN","features":[367]},{"name":"WM_QUERYUISTATE","features":[367]},{"name":"WM_QUEUESYNC","features":[367]},{"name":"WM_QUIT","features":[367]},{"name":"WM_RBUTTONDBLCLK","features":[367]},{"name":"WM_RBUTTONDOWN","features":[367]},{"name":"WM_RBUTTONUP","features":[367]},{"name":"WM_RENDERALLFORMATS","features":[367]},{"name":"WM_RENDERFORMAT","features":[367]},{"name":"WM_SETCURSOR","features":[367]},{"name":"WM_SETFOCUS","features":[367]},{"name":"WM_SETFONT","features":[367]},{"name":"WM_SETHOTKEY","features":[367]},{"name":"WM_SETICON","features":[367]},{"name":"WM_SETREDRAW","features":[367]},{"name":"WM_SETTEXT","features":[367]},{"name":"WM_SETTINGCHANGE","features":[367]},{"name":"WM_SHOWWINDOW","features":[367]},{"name":"WM_SIZE","features":[367]},{"name":"WM_SIZECLIPBOARD","features":[367]},{"name":"WM_SIZING","features":[367]},{"name":"WM_SPOOLERSTATUS","features":[367]},{"name":"WM_STYLECHANGED","features":[367]},{"name":"WM_STYLECHANGING","features":[367]},{"name":"WM_SYNCPAINT","features":[367]},{"name":"WM_SYSCHAR","features":[367]},{"name":"WM_SYSCOLORCHANGE","features":[367]},{"name":"WM_SYSCOMMAND","features":[367]},{"name":"WM_SYSDEADCHAR","features":[367]},{"name":"WM_SYSKEYDOWN","features":[367]},{"name":"WM_SYSKEYUP","features":[367]},{"name":"WM_TABLET_FIRST","features":[367]},{"name":"WM_TABLET_LAST","features":[367]},{"name":"WM_TCARD","features":[367]},{"name":"WM_THEMECHANGED","features":[367]},{"name":"WM_TIMECHANGE","features":[367]},{"name":"WM_TIMER","features":[367]},{"name":"WM_TOOLTIPDISMISS","features":[367]},{"name":"WM_TOUCH","features":[367]},{"name":"WM_TOUCHHITTESTING","features":[367]},{"name":"WM_UNDO","features":[367]},{"name":"WM_UNICHAR","features":[367]},{"name":"WM_UNINITMENUPOPUP","features":[367]},{"name":"WM_UPDATEUISTATE","features":[367]},{"name":"WM_USER","features":[367]},{"name":"WM_USERCHANGED","features":[367]},{"name":"WM_VKEYTOITEM","features":[367]},{"name":"WM_VSCROLL","features":[367]},{"name":"WM_VSCROLLCLIPBOARD","features":[367]},{"name":"WM_WINDOWPOSCHANGED","features":[367]},{"name":"WM_WINDOWPOSCHANGING","features":[367]},{"name":"WM_WININICHANGE","features":[367]},{"name":"WM_WTSSESSION_CHANGE","features":[367]},{"name":"WM_XBUTTONDBLCLK","features":[367]},{"name":"WM_XBUTTONDOWN","features":[367]},{"name":"WM_XBUTTONUP","features":[367]},{"name":"WNDCLASSA","features":[305,316,367]},{"name":"WNDCLASSEXA","features":[305,316,367]},{"name":"WNDCLASSEXW","features":[305,316,367]},{"name":"WNDCLASSW","features":[305,316,367]},{"name":"WNDCLASS_STYLES","features":[367]},{"name":"WNDENUMPROC","features":[305,367]},{"name":"WNDPROC","features":[305,367]},{"name":"WPF_ASYNCWINDOWPLACEMENT","features":[367]},{"name":"WPF_RESTORETOMAXIMIZED","features":[367]},{"name":"WPF_SETMINPOSITION","features":[367]},{"name":"WSF_VISIBLE","features":[367]},{"name":"WS_ACTIVECAPTION","features":[367]},{"name":"WS_BORDER","features":[367]},{"name":"WS_CAPTION","features":[367]},{"name":"WS_CHILD","features":[367]},{"name":"WS_CHILDWINDOW","features":[367]},{"name":"WS_CLIPCHILDREN","features":[367]},{"name":"WS_CLIPSIBLINGS","features":[367]},{"name":"WS_DISABLED","features":[367]},{"name":"WS_DLGFRAME","features":[367]},{"name":"WS_EX_ACCEPTFILES","features":[367]},{"name":"WS_EX_APPWINDOW","features":[367]},{"name":"WS_EX_CLIENTEDGE","features":[367]},{"name":"WS_EX_COMPOSITED","features":[367]},{"name":"WS_EX_CONTEXTHELP","features":[367]},{"name":"WS_EX_CONTROLPARENT","features":[367]},{"name":"WS_EX_DLGMODALFRAME","features":[367]},{"name":"WS_EX_LAYERED","features":[367]},{"name":"WS_EX_LAYOUTRTL","features":[367]},{"name":"WS_EX_LEFT","features":[367]},{"name":"WS_EX_LEFTSCROLLBAR","features":[367]},{"name":"WS_EX_LTRREADING","features":[367]},{"name":"WS_EX_MDICHILD","features":[367]},{"name":"WS_EX_NOACTIVATE","features":[367]},{"name":"WS_EX_NOINHERITLAYOUT","features":[367]},{"name":"WS_EX_NOPARENTNOTIFY","features":[367]},{"name":"WS_EX_NOREDIRECTIONBITMAP","features":[367]},{"name":"WS_EX_OVERLAPPEDWINDOW","features":[367]},{"name":"WS_EX_PALETTEWINDOW","features":[367]},{"name":"WS_EX_RIGHT","features":[367]},{"name":"WS_EX_RIGHTSCROLLBAR","features":[367]},{"name":"WS_EX_RTLREADING","features":[367]},{"name":"WS_EX_STATICEDGE","features":[367]},{"name":"WS_EX_TOOLWINDOW","features":[367]},{"name":"WS_EX_TOPMOST","features":[367]},{"name":"WS_EX_TRANSPARENT","features":[367]},{"name":"WS_EX_WINDOWEDGE","features":[367]},{"name":"WS_GROUP","features":[367]},{"name":"WS_HSCROLL","features":[367]},{"name":"WS_ICONIC","features":[367]},{"name":"WS_MAXIMIZE","features":[367]},{"name":"WS_MAXIMIZEBOX","features":[367]},{"name":"WS_MINIMIZE","features":[367]},{"name":"WS_MINIMIZEBOX","features":[367]},{"name":"WS_OVERLAPPED","features":[367]},{"name":"WS_OVERLAPPEDWINDOW","features":[367]},{"name":"WS_POPUP","features":[367]},{"name":"WS_POPUPWINDOW","features":[367]},{"name":"WS_SIZEBOX","features":[367]},{"name":"WS_SYSMENU","features":[367]},{"name":"WS_TABSTOP","features":[367]},{"name":"WS_THICKFRAME","features":[367]},{"name":"WS_TILED","features":[367]},{"name":"WS_TILEDWINDOW","features":[367]},{"name":"WS_VISIBLE","features":[367]},{"name":"WS_VSCROLL","features":[367]},{"name":"WTS_CONSOLE_CONNECT","features":[367]},{"name":"WTS_CONSOLE_DISCONNECT","features":[367]},{"name":"WTS_REMOTE_CONNECT","features":[367]},{"name":"WTS_REMOTE_DISCONNECT","features":[367]},{"name":"WTS_SESSION_CREATE","features":[367]},{"name":"WTS_SESSION_LOCK","features":[367]},{"name":"WTS_SESSION_LOGOFF","features":[367]},{"name":"WTS_SESSION_LOGON","features":[367]},{"name":"WTS_SESSION_REMOTE_CONTROL","features":[367]},{"name":"WTS_SESSION_TERMINATE","features":[367]},{"name":"WTS_SESSION_UNLOCK","features":[367]},{"name":"WVR_ALIGNBOTTOM","features":[367]},{"name":"WVR_ALIGNLEFT","features":[367]},{"name":"WVR_ALIGNRIGHT","features":[367]},{"name":"WVR_ALIGNTOP","features":[367]},{"name":"WVR_HREDRAW","features":[367]},{"name":"WVR_REDRAW","features":[367]},{"name":"WVR_VALIDRECTS","features":[367]},{"name":"WVR_VREDRAW","features":[367]},{"name":"WaitMessage","features":[305,367]},{"name":"WindowFromPhysicalPoint","features":[305,367]},{"name":"WindowFromPoint","features":[305,367]},{"name":"XBUTTON1","features":[367]},{"name":"XBUTTON2","features":[367]},{"name":"_DEV_BROADCAST_HEADER","features":[367]},{"name":"_DEV_BROADCAST_USERDEFINED","features":[367]},{"name":"__WARNING_BANNED_API_USAGE","features":[367]},{"name":"__WARNING_CYCLOMATIC_COMPLEXITY","features":[367]},{"name":"__WARNING_DEREF_NULL_PTR","features":[367]},{"name":"__WARNING_HIGH_PRIORITY_OVERFLOW_POSTCONDITION","features":[367]},{"name":"__WARNING_INCORRECT_ANNOTATION","features":[367]},{"name":"__WARNING_INVALID_PARAM_VALUE_1","features":[367]},{"name":"__WARNING_INVALID_PARAM_VALUE_3","features":[367]},{"name":"__WARNING_MISSING_ZERO_TERMINATION2","features":[367]},{"name":"__WARNING_POSTCONDITION_NULLTERMINATION_VIOLATION","features":[367]},{"name":"__WARNING_POST_EXPECTED","features":[367]},{"name":"__WARNING_POTENTIAL_BUFFER_OVERFLOW_HIGH_PRIORITY","features":[367]},{"name":"__WARNING_POTENTIAL_RANGE_POSTCONDITION_VIOLATION","features":[367]},{"name":"__WARNING_PRECONDITION_NULLTERMINATION_VIOLATION","features":[367]},{"name":"__WARNING_RANGE_POSTCONDITION_VIOLATION","features":[367]},{"name":"__WARNING_RETURNING_BAD_RESULT","features":[367]},{"name":"__WARNING_RETURN_UNINIT_VAR","features":[367]},{"name":"__WARNING_USING_UNINIT_VAR","features":[367]},{"name":"wsprintfA","features":[367]},{"name":"wsprintfW","features":[367]},{"name":"wvsprintfA","features":[367]},{"name":"wvsprintfW","features":[367]}],"675":[{"name":"CLSID_MILBitmapEffectBevel","features":[635]},{"name":"CLSID_MILBitmapEffectBlur","features":[635]},{"name":"CLSID_MILBitmapEffectDropShadow","features":[635]},{"name":"CLSID_MILBitmapEffectEmboss","features":[635]},{"name":"CLSID_MILBitmapEffectGroup","features":[635]},{"name":"CLSID_MILBitmapEffectOuterGlow","features":[635]},{"name":"IMILBitmapEffect","features":[635]},{"name":"IMILBitmapEffectConnections","features":[635]},{"name":"IMILBitmapEffectConnectionsInfo","features":[635]},{"name":"IMILBitmapEffectConnector","features":[635]},{"name":"IMILBitmapEffectConnectorInfo","features":[635]},{"name":"IMILBitmapEffectEvents","features":[635]},{"name":"IMILBitmapEffectFactory","features":[635]},{"name":"IMILBitmapEffectGroup","features":[635]},{"name":"IMILBitmapEffectGroupImpl","features":[635]},{"name":"IMILBitmapEffectImpl","features":[635]},{"name":"IMILBitmapEffectInputConnector","features":[635]},{"name":"IMILBitmapEffectInteriorInputConnector","features":[635]},{"name":"IMILBitmapEffectInteriorOutputConnector","features":[635]},{"name":"IMILBitmapEffectOutputConnector","features":[635]},{"name":"IMILBitmapEffectOutputConnectorImpl","features":[635]},{"name":"IMILBitmapEffectPrimitive","features":[635]},{"name":"IMILBitmapEffectPrimitiveImpl","features":[635]},{"name":"IMILBitmapEffectRenderContext","features":[635]},{"name":"IMILBitmapEffectRenderContextImpl","features":[635]},{"name":"IMILBitmapEffects","features":[635]},{"name":"MILBITMAPEFFECT_SDK_VERSION","features":[635]},{"name":"MILMatrixF","features":[635]},{"name":"MilPoint2D","features":[635]},{"name":"MilRectD","features":[635]}],"677":[{"name":"ADDRESSBAND","features":[636]},{"name":"ADDURL_ADDTOCACHE","features":[636]},{"name":"ADDURL_ADDTOHISTORYANDCACHE","features":[636]},{"name":"ADDURL_FIRST","features":[636]},{"name":"ADDURL_FLAG","features":[636]},{"name":"ADDURL_Max","features":[636]},{"name":"ActivityContentCount","features":[636]},{"name":"ActivityContentDocument","features":[636]},{"name":"ActivityContentLink","features":[636]},{"name":"ActivityContentNone","features":[636]},{"name":"ActivityContentSelection","features":[636]},{"name":"AnchorClick","features":[636]},{"name":"CATID_MSOfficeAntiVirus","features":[636]},{"name":"CDeviceRect","features":[636]},{"name":"CDownloadBehavior","features":[636]},{"name":"CHeaderFooter","features":[636]},{"name":"CLayoutRect","features":[636]},{"name":"COLOR_NO_TRANSPARENT","features":[636]},{"name":"CPersistDataPeer","features":[636]},{"name":"CPersistHistory","features":[636]},{"name":"CPersistShortcut","features":[636]},{"name":"CPersistSnapshot","features":[636]},{"name":"CPersistUserData","features":[636]},{"name":"CoDitherToRGB8","features":[636]},{"name":"CoMapMIMEToCLSID","features":[636]},{"name":"CoSniffStream","features":[636]},{"name":"ComputeInvCMAP","features":[316,636]},{"name":"CreateDDrawSurfaceOnDIB","features":[315,316,636]},{"name":"CreateMIMEMap","features":[636]},{"name":"DISPID_ACTIVEXFILTERINGENABLED","features":[636]},{"name":"DISPID_ADDCHANNEL","features":[636]},{"name":"DISPID_ADDDESKTOPCOMPONENT","features":[636]},{"name":"DISPID_ADDFAVORITE","features":[636]},{"name":"DISPID_ADDSEARCHPROVIDER","features":[636]},{"name":"DISPID_ADDSERVICE","features":[636]},{"name":"DISPID_ADDSITEMODE","features":[636]},{"name":"DISPID_ADDTHUMBNAILBUTTONS","features":[636]},{"name":"DISPID_ADDTOFAVORITESBAR","features":[636]},{"name":"DISPID_ADDTRACKINGPROTECTIONLIST","features":[636]},{"name":"DISPID_ADVANCEERROR","features":[636]},{"name":"DISPID_AMBIENT_OFFLINEIFNOTCONNECTED","features":[636]},{"name":"DISPID_AMBIENT_SILENT","features":[636]},{"name":"DISPID_AUTOCOMPLETEATTACH","features":[636]},{"name":"DISPID_AUTOCOMPLETESAVEFORM","features":[636]},{"name":"DISPID_AUTOSCAN","features":[636]},{"name":"DISPID_BEFORENAVIGATE","features":[636]},{"name":"DISPID_BEFORENAVIGATE2","features":[636]},{"name":"DISPID_BEFORESCRIPTEXECUTE","features":[636]},{"name":"DISPID_BRANDIMAGEURI","features":[636]},{"name":"DISPID_BUILDNEWTABPAGE","features":[636]},{"name":"DISPID_CANADVANCEERROR","features":[636]},{"name":"DISPID_CANRETREATERROR","features":[636]},{"name":"DISPID_CHANGEDEFAULTBROWSER","features":[636]},{"name":"DISPID_CLEARNOTIFICATION","features":[636]},{"name":"DISPID_CLEARSITEMODEICONOVERLAY","features":[636]},{"name":"DISPID_CLIENTTOHOSTWINDOW","features":[636]},{"name":"DISPID_COMMANDSTATECHANGE","features":[636]},{"name":"DISPID_CONTENTDISCOVERYRESET","features":[636]},{"name":"DISPID_COUNTVIEWTYPES","features":[636]},{"name":"DISPID_CREATESUBSCRIPTION","features":[636]},{"name":"DISPID_CUSTOMIZECLEARTYPE","features":[636]},{"name":"DISPID_CUSTOMIZESETTINGS","features":[636]},{"name":"DISPID_DEFAULTSEARCHPROVIDER","features":[636]},{"name":"DISPID_DELETESUBSCRIPTION","features":[636]},{"name":"DISPID_DEPTH","features":[636]},{"name":"DISPID_DIAGNOSECONNECTION","features":[636]},{"name":"DISPID_DIAGNOSECONNECTIONUILESS","features":[636]},{"name":"DISPID_DOCUMENTCOMPLETE","features":[636]},{"name":"DISPID_DOUBLECLICK","features":[636]},{"name":"DISPID_DOWNLOADBEGIN","features":[636]},{"name":"DISPID_DOWNLOADCOMPLETE","features":[636]},{"name":"DISPID_ENABLENOTIFICATIONQUEUE","features":[636]},{"name":"DISPID_ENABLENOTIFICATIONQUEUELARGE","features":[636]},{"name":"DISPID_ENABLENOTIFICATIONQUEUESQUARE","features":[636]},{"name":"DISPID_ENABLENOTIFICATIONQUEUEWIDE","features":[636]},{"name":"DISPID_ENABLESUGGESTEDSITES","features":[636]},{"name":"DISPID_ENUMOPTIONS","features":[636]},{"name":"DISPID_EXPAND","features":[636]},{"name":"DISPID_EXPORT","features":[636]},{"name":"DISPID_FAVSELECTIONCHANGE","features":[636]},{"name":"DISPID_FILEDOWNLOAD","features":[636]},{"name":"DISPID_FLAGS","features":[636]},{"name":"DISPID_FRAMEBEFORENAVIGATE","features":[636]},{"name":"DISPID_FRAMENAVIGATECOMPLETE","features":[636]},{"name":"DISPID_FRAMENEWWINDOW","features":[636]},{"name":"DISPID_GETALWAYSSHOWLOCKSTATE","features":[636]},{"name":"DISPID_GETCVLISTDATA","features":[636]},{"name":"DISPID_GETCVLISTLOCALDATA","features":[636]},{"name":"DISPID_GETDETAILSSTATE","features":[636]},{"name":"DISPID_GETEMIELISTDATA","features":[636]},{"name":"DISPID_GETEMIELISTLOCALDATA","features":[636]},{"name":"DISPID_GETERRORCHAR","features":[636]},{"name":"DISPID_GETERRORCODE","features":[636]},{"name":"DISPID_GETERRORLINE","features":[636]},{"name":"DISPID_GETERRORMSG","features":[636]},{"name":"DISPID_GETERRORURL","features":[636]},{"name":"DISPID_GETEXPERIMENTALFLAG","features":[636]},{"name":"DISPID_GETEXPERIMENTALVALUE","features":[636]},{"name":"DISPID_GETNEEDHVSIAUTOLAUNCHFLAG","features":[636]},{"name":"DISPID_GETNEEDIEAUTOLAUNCHFLAG","features":[636]},{"name":"DISPID_GETOSSKU","features":[636]},{"name":"DISPID_GETPERERRSTATE","features":[636]},{"name":"DISPID_HASNEEDHVSIAUTOLAUNCHFLAG","features":[636]},{"name":"DISPID_HASNEEDIEAUTOLAUNCHFLAG","features":[636]},{"name":"DISPID_IMPORT","features":[636]},{"name":"DISPID_IMPORTEXPORTFAVORITES","features":[636]},{"name":"DISPID_INITIALIZED","features":[636]},{"name":"DISPID_INPRIVATEFILTERINGENABLED","features":[636]},{"name":"DISPID_INVOKECONTEXTMENU","features":[636]},{"name":"DISPID_ISMETAREFERRERAVAILABLE","features":[636]},{"name":"DISPID_ISSEARCHMIGRATED","features":[636]},{"name":"DISPID_ISSEARCHPROVIDERINSTALLED","features":[636]},{"name":"DISPID_ISSERVICEINSTALLED","features":[636]},{"name":"DISPID_ISSITEMODE","features":[636]},{"name":"DISPID_ISSITEMODEFIRSTRUN","features":[636]},{"name":"DISPID_ISSUBSCRIBED","features":[636]},{"name":"DISPID_LAUNCHIE","features":[636]},{"name":"DISPID_LAUNCHINHVSI","features":[636]},{"name":"DISPID_LAUNCHINTERNETOPTIONS","features":[636]},{"name":"DISPID_LAUNCHNETWORKCLIENTHELP","features":[636]},{"name":"DISPID_MODE","features":[636]},{"name":"DISPID_MOVESELECTIONDOWN","features":[636]},{"name":"DISPID_MOVESELECTIONTO","features":[636]},{"name":"DISPID_MOVESELECTIONUP","features":[636]},{"name":"DISPID_NAVIGATEANDFIND","features":[636]},{"name":"DISPID_NAVIGATECOMPLETE","features":[636]},{"name":"DISPID_NAVIGATECOMPLETE2","features":[636]},{"name":"DISPID_NAVIGATEERROR","features":[636]},{"name":"DISPID_NAVIGATETOSUGGESTEDSITES","features":[636]},{"name":"DISPID_NEWFOLDER","features":[636]},{"name":"DISPID_NEWPROCESS","features":[636]},{"name":"DISPID_NEWWINDOW","features":[636]},{"name":"DISPID_NEWWINDOW2","features":[636]},{"name":"DISPID_NEWWINDOW3","features":[636]},{"name":"DISPID_NSCOLUMNS","features":[636]},{"name":"DISPID_ONADDRESSBAR","features":[636]},{"name":"DISPID_ONFULLSCREEN","features":[636]},{"name":"DISPID_ONMENUBAR","features":[636]},{"name":"DISPID_ONQUIT","features":[636]},{"name":"DISPID_ONSTATUSBAR","features":[636]},{"name":"DISPID_ONTHEATERMODE","features":[636]},{"name":"DISPID_ONTOOLBAR","features":[636]},{"name":"DISPID_ONVISIBLE","features":[636]},{"name":"DISPID_OPENFAVORITESPANE","features":[636]},{"name":"DISPID_OPENFAVORITESSETTINGS","features":[636]},{"name":"DISPID_PHISHINGENABLED","features":[636]},{"name":"DISPID_PINNEDSITESTATE","features":[636]},{"name":"DISPID_PRINTTEMPLATEINSTANTIATION","features":[636]},{"name":"DISPID_PRINTTEMPLATETEARDOWN","features":[636]},{"name":"DISPID_PRIVACYIMPACTEDSTATECHANGE","features":[636]},{"name":"DISPID_PROGRESSCHANGE","features":[636]},{"name":"DISPID_PROPERTYCHANGE","features":[636]},{"name":"DISPID_PROVISIONNETWORKS","features":[636]},{"name":"DISPID_QUIT","features":[636]},{"name":"DISPID_REDIRECTXDOMAINBLOCKED","features":[636]},{"name":"DISPID_REFRESHOFFLINEDESKTOP","features":[636]},{"name":"DISPID_REMOVESCHEDULEDTILENOTIFICATION","features":[636]},{"name":"DISPID_REPORTSAFEURL","features":[636]},{"name":"DISPID_RESETEXPERIMENTALFLAGS","features":[636]},{"name":"DISPID_RESETFIRSTBOOTMODE","features":[636]},{"name":"DISPID_RESETSAFEMODE","features":[636]},{"name":"DISPID_RESETSORT","features":[636]},{"name":"DISPID_RETREATERROR","features":[636]},{"name":"DISPID_ROOT","features":[636]},{"name":"DISPID_RUNONCEHASSHOWN","features":[636]},{"name":"DISPID_RUNONCEREQUIREDSETTINGSCOMPLETE","features":[636]},{"name":"DISPID_RUNONCESHOWN","features":[636]},{"name":"DISPID_SCHEDULEDTILENOTIFICATION","features":[636]},{"name":"DISPID_SEARCHGUIDEURL","features":[636]},{"name":"DISPID_SELECTEDITEM","features":[636]},{"name":"DISPID_SELECTEDITEMS","features":[636]},{"name":"DISPID_SELECTIONCHANGE","features":[636]},{"name":"DISPID_SETACTIVITIESVISIBLE","features":[636]},{"name":"DISPID_SETDETAILSSTATE","features":[636]},{"name":"DISPID_SETEXPERIMENTALFLAG","features":[636]},{"name":"DISPID_SETEXPERIMENTALVALUE","features":[636]},{"name":"DISPID_SETMSDEFAULTS","features":[636]},{"name":"DISPID_SETNEEDHVSIAUTOLAUNCHFLAG","features":[636]},{"name":"DISPID_SETNEEDIEAUTOLAUNCHFLAG","features":[636]},{"name":"DISPID_SETPERERRSTATE","features":[636]},{"name":"DISPID_SETPHISHINGFILTERSTATUS","features":[636]},{"name":"DISPID_SETRECENTLYCLOSEDVISIBLE","features":[636]},{"name":"DISPID_SETROOT","features":[636]},{"name":"DISPID_SETSECURELOCKICON","features":[636]},{"name":"DISPID_SETSITEMODEICONOVERLAY","features":[636]},{"name":"DISPID_SETSITEMODEPROPERTIES","features":[636]},{"name":"DISPID_SETTHUMBNAILBUTTONS","features":[636]},{"name":"DISPID_SETVIEWTYPE","features":[636]},{"name":"DISPID_SHELLUIHELPERLAST","features":[636]},{"name":"DISPID_SHOWBROWSERUI","features":[636]},{"name":"DISPID_SHOWINPRIVATEHELP","features":[636]},{"name":"DISPID_SHOWTABSHELP","features":[636]},{"name":"DISPID_SITEMODEACTIVATE","features":[636]},{"name":"DISPID_SITEMODEADDBUTTONSTYLE","features":[636]},{"name":"DISPID_SITEMODEADDJUMPLISTITEM","features":[636]},{"name":"DISPID_SITEMODECLEARBADGE","features":[636]},{"name":"DISPID_SITEMODECLEARJUMPLIST","features":[636]},{"name":"DISPID_SITEMODECREATEJUMPLIST","features":[636]},{"name":"DISPID_SITEMODEREFRESHBADGE","features":[636]},{"name":"DISPID_SITEMODESHOWBUTTONSTYLE","features":[636]},{"name":"DISPID_SITEMODESHOWJUMPLIST","features":[636]},{"name":"DISPID_SKIPRUNONCE","features":[636]},{"name":"DISPID_SKIPTABSWELCOME","features":[636]},{"name":"DISPID_SQMENABLED","features":[636]},{"name":"DISPID_STARTBADGEUPDATE","features":[636]},{"name":"DISPID_STARTPERIODICUPDATE","features":[636]},{"name":"DISPID_STARTPERIODICUPDATEBATCH","features":[636]},{"name":"DISPID_STATUSTEXTCHANGE","features":[636]},{"name":"DISPID_STOPBADGEUPDATE","features":[636]},{"name":"DISPID_STOPPERIODICUPDATE","features":[636]},{"name":"DISPID_SUBSCRIPTIONSENABLED","features":[636]},{"name":"DISPID_SUGGESTEDSITESENABLED","features":[636]},{"name":"DISPID_SYNCHRONIZE","features":[636]},{"name":"DISPID_THIRDPARTYURLBLOCKED","features":[636]},{"name":"DISPID_TITLECHANGE","features":[636]},{"name":"DISPID_TITLEICONCHANGE","features":[636]},{"name":"DISPID_TRACKINGPROTECTIONENABLED","features":[636]},{"name":"DISPID_TVFLAGS","features":[636]},{"name":"DISPID_UNSELECTALL","features":[636]},{"name":"DISPID_UPDATEPAGESTATUS","features":[636]},{"name":"DISPID_UPDATETHUMBNAILBUTTON","features":[636]},{"name":"DISPID_VIEWUPDATE","features":[636]},{"name":"DISPID_WEBWORKERFINISHED","features":[636]},{"name":"DISPID_WEBWORKERSTARTED","features":[636]},{"name":"DISPID_WINDOWACTIVATE","features":[636]},{"name":"DISPID_WINDOWCLOSING","features":[636]},{"name":"DISPID_WINDOWMOVE","features":[636]},{"name":"DISPID_WINDOWREGISTERED","features":[636]},{"name":"DISPID_WINDOWRESIZE","features":[636]},{"name":"DISPID_WINDOWREVOKED","features":[636]},{"name":"DISPID_WINDOWSETHEIGHT","features":[636]},{"name":"DISPID_WINDOWSETLEFT","features":[636]},{"name":"DISPID_WINDOWSETRESIZABLE","features":[636]},{"name":"DISPID_WINDOWSETTOP","features":[636]},{"name":"DISPID_WINDOWSETWIDTH","features":[636]},{"name":"DISPID_WINDOWSTATECHANGED","features":[636]},{"name":"DecodeImage","features":[356,636]},{"name":"DecodeImageEx","features":[356,636]},{"name":"DitherTo8","features":[316,636]},{"name":"E_SURFACE_DISCARDED","features":[636]},{"name":"E_SURFACE_NODC","features":[636]},{"name":"E_SURFACE_NOSURFACE","features":[636]},{"name":"E_SURFACE_NOTMYDC","features":[636]},{"name":"E_SURFACE_NOTMYPOINTER","features":[636]},{"name":"E_SURFACE_UNKNOWN_FORMAT","features":[636]},{"name":"ExtensionValidationContextDynamic","features":[636]},{"name":"ExtensionValidationContextNone","features":[636]},{"name":"ExtensionValidationContextParsed","features":[636]},{"name":"ExtensionValidationContexts","features":[636]},{"name":"ExtensionValidationResultArrestPageLoad","features":[636]},{"name":"ExtensionValidationResultDoNotInstantiate","features":[636]},{"name":"ExtensionValidationResultNone","features":[636]},{"name":"ExtensionValidationResults","features":[636]},{"name":"FINDFRAME_FLAGS","features":[636]},{"name":"FINDFRAME_INTERNAL","features":[636]},{"name":"FINDFRAME_JUSTTESTEXISTENCE","features":[636]},{"name":"FINDFRAME_NONE","features":[636]},{"name":"FRAMEOPTIONS_BROWSERBAND","features":[636]},{"name":"FRAMEOPTIONS_DESKTOP","features":[636]},{"name":"FRAMEOPTIONS_FLAGS","features":[636]},{"name":"FRAMEOPTIONS_NO3DBORDER","features":[636]},{"name":"FRAMEOPTIONS_NORESIZE","features":[636]},{"name":"FRAMEOPTIONS_SCROLL_AUTO","features":[636]},{"name":"FRAMEOPTIONS_SCROLL_NO","features":[636]},{"name":"FRAMEOPTIONS_SCROLL_YES","features":[636]},{"name":"GetMaxMIMEIDBytes","features":[636]},{"name":"HomePage","features":[636]},{"name":"HomePageSetting","features":[636]},{"name":"IActiveXUIHandlerSite","features":[636]},{"name":"IActiveXUIHandlerSite2","features":[636]},{"name":"IActiveXUIHandlerSite3","features":[636]},{"name":"IAnchorClick","features":[356,636]},{"name":"IAudioSessionSite","features":[636]},{"name":"ICaretPositionProvider","features":[636]},{"name":"IDeviceRect","features":[356,636]},{"name":"IDithererImpl","features":[636]},{"name":"IDocObjectService","features":[636]},{"name":"IDownloadBehavior","features":[356,636]},{"name":"IDownloadManager","features":[636]},{"name":"IEAssociateThreadWithTab","features":[636]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL","features":[636]},{"name":"IECMDID_ARG_CLEAR_FORMS_ALL_BUT_PASSWORDS","features":[636]},{"name":"IECMDID_ARG_CLEAR_FORMS_PASSWORDS_ONLY","features":[636]},{"name":"IECMDID_BEFORENAVIGATE_DOEXTERNALBROWSE","features":[636]},{"name":"IECMDID_BEFORENAVIGATE_GETIDLIST","features":[636]},{"name":"IECMDID_BEFORENAVIGATE_GETSHELLBROWSE","features":[636]},{"name":"IECMDID_CLEAR_AUTOCOMPLETE_FOR_FORMS","features":[636]},{"name":"IECMDID_GET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[636]},{"name":"IECMDID_SETID_AUTOCOMPLETE_FOR_FORMS","features":[636]},{"name":"IECMDID_SET_INVOKE_DEFAULT_BROWSER_ON_NEW_WINDOW","features":[636]},{"name":"IECancelSaveFile","features":[305,636]},{"name":"IECreateDirectory","features":[305,308,636]},{"name":"IECreateFile","features":[305,308,636]},{"name":"IEDeleteFile","features":[305,636]},{"name":"IEDisassociateThreadWithTab","features":[636]},{"name":"IEFindFirstFile","features":[305,324,636]},{"name":"IEGetFileAttributesEx","features":[305,324,636]},{"name":"IEGetProcessModule_PROC_NAME","features":[636]},{"name":"IEGetProtectedModeCookie","features":[636]},{"name":"IEGetTabWindowExports_PROC_NAME","features":[636]},{"name":"IEGetWriteableFolderPath","features":[636]},{"name":"IEGetWriteableLowHKCU","features":[366,636]},{"name":"IEInPrivateFilteringEnabled","features":[305,636]},{"name":"IEIsInPrivateBrowsing","features":[305,636]},{"name":"IEIsProtectedModeProcess","features":[305,636]},{"name":"IEIsProtectedModeURL","features":[636]},{"name":"IELAUNCHOPTION_FLAGS","features":[636]},{"name":"IELAUNCHOPTION_FORCE_COMPAT","features":[636]},{"name":"IELAUNCHOPTION_FORCE_EDGE","features":[636]},{"name":"IELAUNCHOPTION_LOCK_ENGINE","features":[636]},{"name":"IELAUNCHOPTION_SCRIPTDEBUG","features":[636]},{"name":"IELAUNCHURLINFO","features":[636]},{"name":"IELaunchURL","features":[305,340,636]},{"name":"IEMoveFileEx","features":[305,636]},{"name":"IEPROCESS_MODULE_NAME","features":[636]},{"name":"IERefreshElevationPolicy","features":[636]},{"name":"IERegCreateKeyEx","features":[305,308,366,636]},{"name":"IERegSetValueEx","features":[636]},{"name":"IERegisterWritableRegistryKey","features":[305,636]},{"name":"IERegisterWritableRegistryValue","features":[636]},{"name":"IERemoveDirectory","features":[305,636]},{"name":"IESaveFile","features":[305,636]},{"name":"IESetProtectedModeCookie","features":[636]},{"name":"IEShowOpenFileDialog","features":[305,636]},{"name":"IEShowSaveFileDialog","features":[305,636]},{"name":"IETrackingProtectionEnabled","features":[305,636]},{"name":"IEUnregisterWritableRegistry","features":[636]},{"name":"IEWebDriverManager","features":[636]},{"name":"IE_USE_OE_MAIL_HKEY","features":[636]},{"name":"IE_USE_OE_MAIL_KEY","features":[636]},{"name":"IE_USE_OE_MAIL_VALUE","features":[636]},{"name":"IE_USE_OE_NEWS_HKEY","features":[636]},{"name":"IE_USE_OE_NEWS_KEY","features":[636]},{"name":"IE_USE_OE_NEWS_VALUE","features":[636]},{"name":"IE_USE_OE_PRESENT_HKEY","features":[636]},{"name":"IE_USE_OE_PRESENT_KEY","features":[636]},{"name":"IEnumManagerFrames","features":[636]},{"name":"IEnumOpenServiceActivity","features":[636]},{"name":"IEnumOpenServiceActivityCategory","features":[636]},{"name":"IEnumSTATURL","features":[636]},{"name":"IExtensionValidation","features":[636]},{"name":"IHTMLPersistData","features":[636]},{"name":"IHTMLPersistDataOM","features":[356,636]},{"name":"IHTMLUserDataOM","features":[356,636]},{"name":"IHeaderFooter","features":[356,636]},{"name":"IHeaderFooter2","features":[356,636]},{"name":"IHomePage","features":[356,636]},{"name":"IHomePageSetting","features":[636]},{"name":"IIEWebDriverManager","features":[356,636]},{"name":"IIEWebDriverSite","features":[356,636]},{"name":"IImageDecodeEventSink","features":[636]},{"name":"IImageDecodeEventSink2","features":[636]},{"name":"IImageDecodeFilter","features":[636]},{"name":"IIntelliForms","features":[356,636]},{"name":"IInternetExplorerManager","features":[636]},{"name":"IInternetExplorerManager2","features":[636]},{"name":"ILayoutRect","features":[356,636]},{"name":"IMGDECODE_EVENT_BEGINBITS","features":[636]},{"name":"IMGDECODE_EVENT_BITSCOMPLETE","features":[636]},{"name":"IMGDECODE_EVENT_PALETTE","features":[636]},{"name":"IMGDECODE_EVENT_PROGRESS","features":[636]},{"name":"IMGDECODE_EVENT_USEDDRAW","features":[636]},{"name":"IMGDECODE_HINT_BOTTOMUP","features":[636]},{"name":"IMGDECODE_HINT_FULLWIDTH","features":[636]},{"name":"IMGDECODE_HINT_TOPDOWN","features":[636]},{"name":"IMapMIMEToCLSID","features":[636]},{"name":"IMediaActivityNotifySite","features":[636]},{"name":"INTERNETEXPLORERCONFIGURATION","features":[636]},{"name":"INTERNETEXPLORERCONFIGURATION_HOST","features":[636]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER","features":[636]},{"name":"INTERNETEXPLORERCONFIGURATION_WEB_DRIVER_EDGE","features":[636]},{"name":"IOpenService","features":[636]},{"name":"IOpenServiceActivity","features":[636]},{"name":"IOpenServiceActivityCategory","features":[636]},{"name":"IOpenServiceActivityInput","features":[636]},{"name":"IOpenServiceActivityManager","features":[636]},{"name":"IOpenServiceActivityOutputContext","features":[636]},{"name":"IOpenServiceManager","features":[636]},{"name":"IPeerFactory","features":[636]},{"name":"IPersistHistory","features":[356,636]},{"name":"IPrintTaskRequestFactory","features":[636]},{"name":"IPrintTaskRequestHandler","features":[636]},{"name":"IScrollableContextMenu","features":[636]},{"name":"IScrollableContextMenu2","features":[636]},{"name":"ISniffStream","features":[636]},{"name":"ISurfacePresenterFlip","features":[636]},{"name":"ISurfacePresenterFlip2","features":[636]},{"name":"ISurfacePresenterFlipBuffer","features":[636]},{"name":"ITargetContainer","features":[636]},{"name":"ITargetEmbedding","features":[636]},{"name":"ITargetFrame","features":[636]},{"name":"ITargetFrame2","features":[636]},{"name":"ITargetFramePriv","features":[636]},{"name":"ITargetFramePriv2","features":[636]},{"name":"ITargetNotify","features":[636]},{"name":"ITargetNotify2","features":[636]},{"name":"ITimer","features":[636]},{"name":"ITimerEx","features":[636]},{"name":"ITimerService","features":[636]},{"name":"ITimerSink","features":[636]},{"name":"ITridentTouchInput","features":[636]},{"name":"ITridentTouchInputSite","features":[636]},{"name":"IUrlHistoryNotify","features":[415,636]},{"name":"IUrlHistoryStg","features":[636]},{"name":"IUrlHistoryStg2","features":[636]},{"name":"IViewObjectPresentFlip","features":[636]},{"name":"IViewObjectPresentFlip2","features":[636]},{"name":"IViewObjectPresentFlipSite","features":[636]},{"name":"IViewObjectPresentFlipSite2","features":[636]},{"name":"IWebBrowserEventsService","features":[636]},{"name":"IWebBrowserEventsUrlService","features":[636]},{"name":"IdentifyMIMEType","features":[636]},{"name":"IntelliForms","features":[636]},{"name":"InternetExplorerManager","features":[636]},{"name":"Iwfolders","features":[356,636]},{"name":"LINKSBAND","features":[636]},{"name":"MAPMIME_CLSID","features":[636]},{"name":"MAPMIME_DEFAULT","features":[636]},{"name":"MAPMIME_DEFAULT_ALWAYS","features":[636]},{"name":"MAPMIME_DISABLE","features":[636]},{"name":"MAX_SEARCH_FORMAT_STRING","features":[636]},{"name":"MEDIA_ACTIVITY_NOTIFY_TYPE","features":[636]},{"name":"MediaCasting","features":[636]},{"name":"MediaPlayback","features":[636]},{"name":"MediaRecording","features":[636]},{"name":"NAVIGATEDATA","features":[636]},{"name":"NAVIGATEFRAME_FLAGS","features":[636]},{"name":"NAVIGATEFRAME_FL_AUTH_FAIL_CACHE_OK","features":[636]},{"name":"NAVIGATEFRAME_FL_NO_DOC_CACHE","features":[636]},{"name":"NAVIGATEFRAME_FL_NO_IMAGE_CACHE","features":[636]},{"name":"NAVIGATEFRAME_FL_POST","features":[636]},{"name":"NAVIGATEFRAME_FL_REALLY_SENDING_FROM_FORM","features":[636]},{"name":"NAVIGATEFRAME_FL_RECORD","features":[636]},{"name":"NAVIGATEFRAME_FL_SENDING_FROM_FORM","features":[636]},{"name":"OS_E_CANCELLED","features":[636]},{"name":"OS_E_GPDISABLED","features":[636]},{"name":"OS_E_NOTFOUND","features":[636]},{"name":"OS_E_NOTSUPPORTED","features":[636]},{"name":"OpenServiceActivityContentType","features":[636]},{"name":"OpenServiceActivityManager","features":[636]},{"name":"OpenServiceErrors","features":[636]},{"name":"OpenServiceManager","features":[636]},{"name":"PeerFactory","features":[636]},{"name":"REGSTRA_VAL_STARTPAGE","features":[636]},{"name":"REGSTR_PATH_CURRENT","features":[636]},{"name":"REGSTR_PATH_DEFAULT","features":[636]},{"name":"REGSTR_PATH_INETCPL_RESTRICTIONS","features":[636]},{"name":"REGSTR_PATH_MIME_DATABASE","features":[636]},{"name":"REGSTR_PATH_REMOTEACCESS","features":[636]},{"name":"REGSTR_PATH_REMOTEACESS","features":[636]},{"name":"REGSTR_SHIFTQUICKSUFFIX","features":[636]},{"name":"REGSTR_VAL_ACCEPT_LANGUAGE","features":[636]},{"name":"REGSTR_VAL_ACCESSMEDIUM","features":[636]},{"name":"REGSTR_VAL_ACCESSTYPE","features":[636]},{"name":"REGSTR_VAL_ALIASTO","features":[636]},{"name":"REGSTR_VAL_ANCHORCOLOR","features":[636]},{"name":"REGSTR_VAL_ANCHORCOLORHOVER","features":[636]},{"name":"REGSTR_VAL_ANCHORCOLORVISITED","features":[636]},{"name":"REGSTR_VAL_ANCHORUNDERLINE","features":[636]},{"name":"REGSTR_VAL_AUTODETECT","features":[636]},{"name":"REGSTR_VAL_AUTODIALDLLNAME","features":[636]},{"name":"REGSTR_VAL_AUTODIALFCNNAME","features":[636]},{"name":"REGSTR_VAL_AUTODIAL_MONITORCLASSNAME","features":[636]},{"name":"REGSTR_VAL_AUTODIAL_TRYONLYONCE","features":[636]},{"name":"REGSTR_VAL_AUTONAVIGATE","features":[636]},{"name":"REGSTR_VAL_AUTOSEARCH","features":[636]},{"name":"REGSTR_VAL_BACKBITMAP","features":[636]},{"name":"REGSTR_VAL_BACKGROUNDCOLOR","features":[636]},{"name":"REGSTR_VAL_BODYCHARSET","features":[636]},{"name":"REGSTR_VAL_BYPASSAUTOCONFIG","features":[636]},{"name":"REGSTR_VAL_CACHEPREFIX","features":[636]},{"name":"REGSTR_VAL_CHECKASSOC","features":[636]},{"name":"REGSTR_VAL_CODEDOWNLOAD","features":[636]},{"name":"REGSTR_VAL_CODEDOWNLOAD_DEF","features":[636]},{"name":"REGSTR_VAL_CODEPAGE","features":[636]},{"name":"REGSTR_VAL_COVEREXCLUDE","features":[636]},{"name":"REGSTR_VAL_DAYSTOKEEP","features":[636]},{"name":"REGSTR_VAL_DEFAULT_CODEPAGE","features":[636]},{"name":"REGSTR_VAL_DEFAULT_SCRIPT","features":[636]},{"name":"REGSTR_VAL_DEF_ENCODING","features":[636]},{"name":"REGSTR_VAL_DEF_INETENCODING","features":[636]},{"name":"REGSTR_VAL_DESCRIPTION","features":[636]},{"name":"REGSTR_VAL_DIRECTORY","features":[636]},{"name":"REGSTR_VAL_DISCONNECTIDLETIME","features":[636]},{"name":"REGSTR_VAL_ENABLEAUTODIAL","features":[636]},{"name":"REGSTR_VAL_ENABLEAUTODIALDISCONNECT","features":[636]},{"name":"REGSTR_VAL_ENABLEAUTODISCONNECT","features":[636]},{"name":"REGSTR_VAL_ENABLEEXITDISCONNECT","features":[636]},{"name":"REGSTR_VAL_ENABLESECURITYCHECK","features":[636]},{"name":"REGSTR_VAL_ENABLEUNATTENDED","features":[636]},{"name":"REGSTR_VAL_ENCODENAME","features":[636]},{"name":"REGSTR_VAL_FAMILY","features":[636]},{"name":"REGSTR_VAL_FIXEDWIDTHFONT","features":[636]},{"name":"REGSTR_VAL_FIXED_FONT","features":[636]},{"name":"REGSTR_VAL_FONT_SCRIPT","features":[636]},{"name":"REGSTR_VAL_FONT_SCRIPTS","features":[636]},{"name":"REGSTR_VAL_FONT_SCRIPT_NAME","features":[636]},{"name":"REGSTR_VAL_FONT_SIZE","features":[636]},{"name":"REGSTR_VAL_FONT_SIZE_DEF","features":[636]},{"name":"REGSTR_VAL_HEADERCHARSET","features":[636]},{"name":"REGSTR_VAL_HTTP_ERRORS","features":[636]},{"name":"REGSTR_VAL_IE_CUSTOMCOLORS","features":[636]},{"name":"REGSTR_VAL_INETCPL_ADVANCEDTAB","features":[636]},{"name":"REGSTR_VAL_INETCPL_CONNECTIONSTAB","features":[636]},{"name":"REGSTR_VAL_INETCPL_CONTENTTAB","features":[636]},{"name":"REGSTR_VAL_INETCPL_GENERALTAB","features":[636]},{"name":"REGSTR_VAL_INETCPL_IEAK","features":[636]},{"name":"REGSTR_VAL_INETCPL_PRIVACYTAB","features":[636]},{"name":"REGSTR_VAL_INETCPL_PROGRAMSTAB","features":[636]},{"name":"REGSTR_VAL_INETCPL_SECURITYTAB","features":[636]},{"name":"REGSTR_VAL_INETENCODING","features":[636]},{"name":"REGSTR_VAL_INTERNETENTRY","features":[636]},{"name":"REGSTR_VAL_INTERNETENTRYBKUP","features":[636]},{"name":"REGSTR_VAL_INTERNETPROFILE","features":[636]},{"name":"REGSTR_VAL_JAVAJIT","features":[636]},{"name":"REGSTR_VAL_JAVAJIT_DEF","features":[636]},{"name":"REGSTR_VAL_JAVALOGGING","features":[636]},{"name":"REGSTR_VAL_JAVALOGGING_DEF","features":[636]},{"name":"REGSTR_VAL_LEVEL","features":[636]},{"name":"REGSTR_VAL_LOADIMAGES","features":[636]},{"name":"REGSTR_VAL_LOCALPAGE","features":[636]},{"name":"REGSTR_VAL_MOSDISCONNECT","features":[636]},{"name":"REGSTR_VAL_NEWDIRECTORY","features":[636]},{"name":"REGSTR_VAL_NONETAUTODIAL","features":[636]},{"name":"REGSTR_VAL_PLAYSOUNDS","features":[636]},{"name":"REGSTR_VAL_PLAYVIDEOS","features":[636]},{"name":"REGSTR_VAL_PRIVCONVERTER","features":[636]},{"name":"REGSTR_VAL_PROPORTIONALFONT","features":[636]},{"name":"REGSTR_VAL_PROP_FONT","features":[636]},{"name":"REGSTR_VAL_PROXYENABLE","features":[636]},{"name":"REGSTR_VAL_PROXYOVERRIDE","features":[636]},{"name":"REGSTR_VAL_PROXYSERVER","features":[636]},{"name":"REGSTR_VAL_REDIALATTEMPTS","features":[636]},{"name":"REGSTR_VAL_REDIALINTERVAL","features":[636]},{"name":"REGSTR_VAL_RNAINSTALLED","features":[636]},{"name":"REGSTR_VAL_SAFETYWARNINGLEVEL","features":[636]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL","features":[636]},{"name":"REGSTR_VAL_SCHANNELENABLEPROTOCOL_DEF","features":[636]},{"name":"REGSTR_VAL_SCRIPT_FIXED_FONT","features":[636]},{"name":"REGSTR_VAL_SCRIPT_PROP_FONT","features":[636]},{"name":"REGSTR_VAL_SEARCHPAGE","features":[636]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS","features":[636]},{"name":"REGSTR_VAL_SECURITYACTICEXSCRIPTS_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYACTIVEX","features":[636]},{"name":"REGSTR_VAL_SECURITYACTIVEX_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES","features":[636]},{"name":"REGSTR_VAL_SECURITYALLOWCOOKIES_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES","features":[636]},{"name":"REGSTR_VAL_SECURITYDISABLECACHINGOFSSLPAGES_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYJAVA","features":[636]},{"name":"REGSTR_VAL_SECURITYJAVA_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTSENDING_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONBADCERTVIEWING_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONSEND","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONSENDALWAYS_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONSEND_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONVIEW_DEF","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING","features":[636]},{"name":"REGSTR_VAL_SECURITYWARNONZONECROSSING_DEF","features":[636]},{"name":"REGSTR_VAL_SHOWADDRESSBAR","features":[636]},{"name":"REGSTR_VAL_SHOWFOCUS","features":[636]},{"name":"REGSTR_VAL_SHOWFOCUS_DEF","features":[636]},{"name":"REGSTR_VAL_SHOWFULLURLS","features":[636]},{"name":"REGSTR_VAL_SHOWTOOLBAR","features":[636]},{"name":"REGSTR_VAL_SMOOTHSCROLL","features":[636]},{"name":"REGSTR_VAL_SMOOTHSCROLL_DEF","features":[636]},{"name":"REGSTR_VAL_STARTPAGE","features":[636]},{"name":"REGSTR_VAL_TEXTCOLOR","features":[636]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_HIGH","features":[636]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_LOW","features":[636]},{"name":"REGSTR_VAL_TRUSTWARNINGLEVEL_MED","features":[636]},{"name":"REGSTR_VAL_USEAUTOAPPEND","features":[636]},{"name":"REGSTR_VAL_USEAUTOCOMPLETE","features":[636]},{"name":"REGSTR_VAL_USEAUTOSUGGEST","features":[636]},{"name":"REGSTR_VAL_USEDLGCOLORS","features":[636]},{"name":"REGSTR_VAL_USEHOVERCOLOR","features":[636]},{"name":"REGSTR_VAL_USEIBAR","features":[636]},{"name":"REGSTR_VAL_USEICM","features":[636]},{"name":"REGSTR_VAL_USEICM_DEF","features":[636]},{"name":"REGSTR_VAL_USERAGENT","features":[636]},{"name":"REGSTR_VAL_USESTYLESHEETS","features":[636]},{"name":"REGSTR_VAL_USESTYLESHEETS_DEF","features":[636]},{"name":"REGSTR_VAL_VISIBLEBANDS","features":[636]},{"name":"REGSTR_VAL_VISIBLEBANDS_DEF","features":[636]},{"name":"REGSTR_VAL_WEBCHARSET","features":[636]},{"name":"RatingAccessDeniedDialog","features":[305,636]},{"name":"RatingAccessDeniedDialog2","features":[305,636]},{"name":"RatingAccessDeniedDialog2W","features":[305,636]},{"name":"RatingAccessDeniedDialogW","features":[305,636]},{"name":"RatingAddToApprovedSites","features":[305,636]},{"name":"RatingCheckUserAccess","features":[636]},{"name":"RatingCheckUserAccessW","features":[636]},{"name":"RatingClickedOnPRFInternal","features":[305,636]},{"name":"RatingClickedOnRATInternal","features":[305,636]},{"name":"RatingEnable","features":[305,636]},{"name":"RatingEnableW","features":[305,636]},{"name":"RatingEnabledQuery","features":[636]},{"name":"RatingFreeDetails","features":[636]},{"name":"RatingInit","features":[636]},{"name":"RatingObtainCancel","features":[305,636]},{"name":"RatingObtainQuery","features":[305,636]},{"name":"RatingObtainQueryW","features":[305,636]},{"name":"RatingSetupUI","features":[305,636]},{"name":"RatingSetupUIW","features":[305,636]},{"name":"SCMP_BOTTOM","features":[636]},{"name":"SCMP_FULL","features":[636]},{"name":"SCMP_LEFT","features":[636]},{"name":"SCMP_RIGHT","features":[636]},{"name":"SCMP_TOP","features":[636]},{"name":"SCROLLABLECONTEXTMENU_PLACEMENT","features":[636]},{"name":"STATURL","features":[305,636]},{"name":"STATURLFLAG_ISCACHED","features":[636]},{"name":"STATURLFLAG_ISTOPLEVEL","features":[636]},{"name":"STATURL_QUERYFLAG_ISCACHED","features":[636]},{"name":"STATURL_QUERYFLAG_NOTITLE","features":[636]},{"name":"STATURL_QUERYFLAG_NOURL","features":[636]},{"name":"STATURL_QUERYFLAG_TOPLEVEL","features":[636]},{"name":"SURFACE_LOCK_ALLOW_DISCARD","features":[636]},{"name":"SURFACE_LOCK_EXCLUSIVE","features":[636]},{"name":"SURFACE_LOCK_WAIT","features":[636]},{"name":"SZBACKBITMAP","features":[636]},{"name":"SZJAVAVMPATH","features":[636]},{"name":"SZNOTEXT","features":[636]},{"name":"SZTOOLBAR","features":[636]},{"name":"SZTRUSTWARNLEVEL","features":[636]},{"name":"SZVISIBLE","features":[636]},{"name":"SZ_IE_DEFAULT_HTML_EDITOR","features":[636]},{"name":"SZ_IE_IBAR","features":[636]},{"name":"SZ_IE_IBAR_BANDS","features":[636]},{"name":"SZ_IE_MAIN","features":[636]},{"name":"SZ_IE_SEARCHSTRINGS","features":[636]},{"name":"SZ_IE_SECURITY","features":[636]},{"name":"SZ_IE_SETTINGS","features":[636]},{"name":"SZ_IE_THRESHOLDS","features":[636]},{"name":"S_SURFACE_DISCARDED","features":[636]},{"name":"SniffStream","features":[356,636]},{"name":"TARGET_NOTIFY_OBJECT_NAME","features":[636]},{"name":"TF_NAVIGATE","features":[636]},{"name":"TIMERMODE_NORMAL","features":[636]},{"name":"TIMERMODE_VISIBILITYAWARE","features":[636]},{"name":"TOOLSBAND","features":[636]},{"name":"TSZCALENDARPROTOCOL","features":[636]},{"name":"TSZCALLTOPROTOCOL","features":[636]},{"name":"TSZINTERNETCLIENTSPATH","features":[636]},{"name":"TSZLDAPPROTOCOL","features":[636]},{"name":"TSZMAILTOPROTOCOL","features":[636]},{"name":"TSZMICROSOFTPATH","features":[636]},{"name":"TSZNEWSPROTOCOL","features":[636]},{"name":"TSZPROTOCOLSPATH","features":[636]},{"name":"TSZSCHANNELPATH","features":[636]},{"name":"TSZVSOURCEPROTOCOL","features":[636]},{"name":"msodsvFailed","features":[636]},{"name":"msodsvLowSecurityLevel","features":[636]},{"name":"msodsvNoMacros","features":[636]},{"name":"msodsvPassedTrusted","features":[636]},{"name":"msodsvPassedTrustedCert","features":[636]},{"name":"msodsvUnsigned","features":[636]},{"name":"msoedmDisable","features":[636]},{"name":"msoedmDontOpen","features":[636]},{"name":"msoedmEnable","features":[636]},{"name":"msoslHigh","features":[636]},{"name":"msoslMedium","features":[636]},{"name":"msoslNone","features":[636]},{"name":"msoslUndefined","features":[636]},{"name":"wfolders","features":[636]}]}} \ No newline at end of file diff --git a/crates/libs/windows/src/Windows/Wdk/Devices/Bluetooth/mod.rs b/crates/libs/windows/src/Windows/Wdk/Devices/Bluetooth/mod.rs new file mode 100644 index 0000000000..7bac2031d9 --- /dev/null +++ b/crates/libs/windows/src/Windows/Wdk/Devices/Bluetooth/mod.rs @@ -0,0 +1,32 @@ +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_ClassOfDevice: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 10 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_ClassOfDevice_Deprecated: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 4 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceAddress: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 1 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceFlags: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 3 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceManufacturer: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 4 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceModelNumber: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 5 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DevicePID: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 8 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceProductVersion: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 9 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceVID: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 7 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_DeviceVIDSource: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 6 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_LastConnectedTime: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 11 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_LastConnectedTime_Deprecated: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 5 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_LastSeenTime: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 12 }; +#[cfg(feature = "Win32_Devices_Properties")] +pub const DEVPKEY_Bluetooth_ServiceGUID: super::super::super::Win32::Devices::Properties::DEVPROPKEY = super::super::super::Win32::Devices::Properties::DEVPROPKEY { fmtid: windows_core::GUID::from_u128(0x2bd67d8b_8beb_48d5_87e0_6cda3428040a), pid: 2 }; +pub const GUID_BTHDDI_PROFILE_DRIVER_INTERFACE: windows_core::GUID = windows_core::GUID::from_u128(0x94a59aa8_4383_4286_aa4f_34a160f40004); +pub const GUID_BTHDDI_SDP_NODE_INTERFACE: windows_core::GUID = windows_core::GUID::from_u128(0x81a7fdf3_86c1_4be8_a8c8_2a6d188b4177); +pub const GUID_BTHDDI_SDP_PARSE_INTERFACE: windows_core::GUID = windows_core::GUID::from_u128(0x4e719439_9cf1_4bab_ac1d_3279865743d2); +pub const GUID_BTH_DEVICE_INTERFACE: windows_core::GUID = windows_core::GUID::from_u128(0x00f40965_e89d_4487_9890_87c3abb211f4); diff --git a/crates/libs/windows/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs b/crates/libs/windows/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs index 8777e5c045..6d4bb88299 100644 --- a/crates/libs/windows/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs @@ -59,12 +59,12 @@ pub struct VHF_CONFIG { pub InstanceID: windows_core::PWSTR, pub ReportDescriptorLength: u16, pub ReportDescriptor: *mut u8, - pub EvtVhfReadyForNextReadReport: PEVT_VHF_READY_FOR_NEXT_READ_REPORT, - pub EvtVhfAsyncOperationGetFeature: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfAsyncOperationSetFeature: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfAsyncOperationWriteReport: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfAsyncOperationGetInputReport: PEVT_VHF_ASYNC_OPERATION, - pub EvtVhfCleanup: PEVT_VHF_CLEANUP, + pub EvtVhfReadyForNextReadReport: EVT_VHF_READY_FOR_NEXT_READ_REPORT, + pub EvtVhfAsyncOperationGetFeature: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfAsyncOperationSetFeature: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfAsyncOperationWriteReport: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfAsyncOperationGetInputReport: EVT_VHF_ASYNC_OPERATION, + pub EvtVhfCleanup: EVT_VHF_CLEANUP, pub HardwareIDsLength: u16, pub HardwareIDs: windows_core::PWSTR, } @@ -79,6 +79,3 @@ impl Default for VHF_CONFIG { pub type EVT_VHF_ASYNC_OPERATION = Option; pub type EVT_VHF_CLEANUP = Option; pub type EVT_VHF_READY_FOR_NEXT_READ_REPORT = Option; -pub type PEVT_VHF_ASYNC_OPERATION = Option; -pub type PEVT_VHF_CLEANUP = Option; -pub type PEVT_VHF_READY_FOR_NEXT_READ_REPORT = Option; diff --git a/crates/libs/windows/src/Windows/Wdk/Devices/mod.rs b/crates/libs/windows/src/Windows/Wdk/Devices/mod.rs index c7fc277704..e90977f98b 100644 --- a/crates/libs/windows/src/Windows/Wdk/Devices/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/Devices/mod.rs @@ -1,2 +1,4 @@ +#[cfg(feature = "Wdk_Devices_Bluetooth")] +pub mod Bluetooth; #[cfg(feature = "Wdk_Devices_HumanInterfaceDevice")] pub mod HumanInterfaceDevice; diff --git a/crates/libs/windows/src/Windows/Wdk/Foundation/mod.rs b/crates/libs/windows/src/Windows/Wdk/Foundation/mod.rs index 45bab2ce67..2b372f0767 100644 --- a/crates/libs/windows/src/Windows/Wdk/Foundation/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/Foundation/mod.rs @@ -636,10 +636,10 @@ impl windows_core::TypeKind for DMA_COMMON_BUFFER_VECTOR { } #[repr(C)] #[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] +#[derive(Clone, Copy, Debug)] pub struct DRIVER_EXTENSION { pub DriverObject: *mut DRIVER_OBJECT, - pub AddDevice: *mut DRIVER_ADD_DEVICE, + pub AddDevice: DRIVER_ADD_DEVICE, pub Count: u32, pub ServiceKeyName: super::super::Win32::Foundation::UNICODE_STRING, } @@ -655,7 +655,7 @@ impl Default for DRIVER_EXTENSION { } #[repr(C)] #[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] +#[derive(Clone, Copy, Debug)] pub struct DRIVER_OBJECT { pub Type: i16, pub Size: i16, @@ -668,10 +668,10 @@ pub struct DRIVER_OBJECT { pub DriverName: super::super::Win32::Foundation::UNICODE_STRING, pub HardwareDatabase: *mut super::super::Win32::Foundation::UNICODE_STRING, pub FastIoDispatch: *mut FAST_IO_DISPATCH, - pub DriverInit: *mut DRIVER_INITIALIZE, - pub DriverStartIo: *mut DRIVER_STARTIO, - pub DriverUnload: *mut DRIVER_UNLOAD, - pub MajorFunction: [*mut DRIVER_DISPATCH; 28], + pub DriverInit: DRIVER_INITIALIZE, + pub DriverStartIo: DRIVER_STARTIO, + pub DriverUnload: DRIVER_UNLOAD, + pub MajorFunction: [DRIVER_DISPATCH; 28], } #[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] impl windows_core::TypeKind for DRIVER_OBJECT { @@ -786,36 +786,36 @@ impl Default for ERESOURCE_1 { } #[repr(C)] #[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] +#[derive(Clone, Copy, Debug)] pub struct FAST_IO_DISPATCH { pub SizeOfFastIoDispatch: u32, - pub FastIoCheckIfPossible: *mut FAST_IO_CHECK_IF_POSSIBLE, - pub FastIoRead: *mut FAST_IO_READ, - pub FastIoWrite: *mut FAST_IO_WRITE, - pub FastIoQueryBasicInfo: *mut FAST_IO_QUERY_BASIC_INFO, - pub FastIoQueryStandardInfo: *mut FAST_IO_QUERY_STANDARD_INFO, - pub FastIoLock: *mut FAST_IO_LOCK, - pub FastIoUnlockSingle: *mut FAST_IO_UNLOCK_SINGLE, - pub FastIoUnlockAll: *mut FAST_IO_UNLOCK_ALL, - pub FastIoUnlockAllByKey: *mut FAST_IO_UNLOCK_ALL_BY_KEY, - pub FastIoDeviceControl: *mut FAST_IO_DEVICE_CONTROL, - pub AcquireFileForNtCreateSection: *mut FAST_IO_ACQUIRE_FILE, - pub ReleaseFileForNtCreateSection: *mut FAST_IO_RELEASE_FILE, - pub FastIoDetachDevice: *mut FAST_IO_DETACH_DEVICE, - pub FastIoQueryNetworkOpenInfo: *mut FAST_IO_QUERY_NETWORK_OPEN_INFO, - pub AcquireForModWrite: *mut FAST_IO_ACQUIRE_FOR_MOD_WRITE, - pub MdlRead: *mut FAST_IO_MDL_READ, - pub MdlReadComplete: *mut FAST_IO_MDL_READ_COMPLETE, - pub PrepareMdlWrite: *mut FAST_IO_PREPARE_MDL_WRITE, - pub MdlWriteComplete: *mut FAST_IO_MDL_WRITE_COMPLETE, - pub FastIoReadCompressed: *mut FAST_IO_READ_COMPRESSED, - pub FastIoWriteCompressed: *mut FAST_IO_WRITE_COMPRESSED, - pub MdlReadCompleteCompressed: *mut FAST_IO_MDL_READ_COMPLETE_COMPRESSED, - pub MdlWriteCompleteCompressed: *mut FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED, - pub FastIoQueryOpen: *mut FAST_IO_QUERY_OPEN, - pub ReleaseForModWrite: *mut FAST_IO_RELEASE_FOR_MOD_WRITE, - pub AcquireForCcFlush: *mut FAST_IO_ACQUIRE_FOR_CCFLUSH, - pub ReleaseForCcFlush: *mut FAST_IO_RELEASE_FOR_CCFLUSH, + pub FastIoCheckIfPossible: FAST_IO_CHECK_IF_POSSIBLE, + pub FastIoRead: FAST_IO_READ, + pub FastIoWrite: FAST_IO_WRITE, + pub FastIoQueryBasicInfo: FAST_IO_QUERY_BASIC_INFO, + pub FastIoQueryStandardInfo: FAST_IO_QUERY_STANDARD_INFO, + pub FastIoLock: FAST_IO_LOCK, + pub FastIoUnlockSingle: FAST_IO_UNLOCK_SINGLE, + pub FastIoUnlockAll: FAST_IO_UNLOCK_ALL, + pub FastIoUnlockAllByKey: FAST_IO_UNLOCK_ALL_BY_KEY, + pub FastIoDeviceControl: FAST_IO_DEVICE_CONTROL, + pub AcquireFileForNtCreateSection: FAST_IO_ACQUIRE_FILE, + pub ReleaseFileForNtCreateSection: FAST_IO_RELEASE_FILE, + pub FastIoDetachDevice: FAST_IO_DETACH_DEVICE, + pub FastIoQueryNetworkOpenInfo: FAST_IO_QUERY_NETWORK_OPEN_INFO, + pub AcquireForModWrite: FAST_IO_ACQUIRE_FOR_MOD_WRITE, + pub MdlRead: FAST_IO_MDL_READ, + pub MdlReadComplete: FAST_IO_MDL_READ_COMPLETE, + pub PrepareMdlWrite: FAST_IO_PREPARE_MDL_WRITE, + pub MdlWriteComplete: FAST_IO_MDL_WRITE_COMPLETE, + pub FastIoReadCompressed: FAST_IO_READ_COMPRESSED, + pub FastIoWriteCompressed: FAST_IO_WRITE_COMPRESSED, + pub MdlReadCompleteCompressed: FAST_IO_MDL_READ_COMPLETE_COMPRESSED, + pub MdlWriteCompleteCompressed: FAST_IO_MDL_WRITE_COMPLETE_COMPRESSED, + pub FastIoQueryOpen: FAST_IO_QUERY_OPEN, + pub ReleaseForModWrite: FAST_IO_RELEASE_FOR_MOD_WRITE, + pub AcquireForCcFlush: FAST_IO_ACQUIRE_FOR_CCFLUSH, + pub ReleaseForCcFlush: FAST_IO_RELEASE_FOR_CCFLUSH, } #[cfg(all(feature = "Wdk_Storage_FileSystem", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] impl windows_core::TypeKind for FAST_IO_DISPATCH { @@ -1426,7 +1426,7 @@ impl Default for IO_STACK_LOCATION_0_20 { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct IO_STACK_LOCATION_0_21 { pub Length: u32, - pub StartSid: super::super::Win32::Foundation::PSID, + pub StartSid: super::super::Win32::Security::PSID, pub SidList: *mut super::Storage::FileSystem::FILE_GET_QUOTA_INFORMATION, pub SidListLength: u32, } @@ -1790,7 +1790,7 @@ pub struct IRP { pub Anonymous: IRP_0, pub UserEvent: *mut KEVENT, pub Overlay: IRP_2, - pub CancelRoutine: *mut DRIVER_CANCEL, + pub CancelRoutine: DRIVER_CANCEL, pub UserBuffer: *mut core::ffi::c_void, pub Tail: IRP_3, } @@ -2657,7 +2657,12 @@ impl windows_core::TypeKind for POBJECT_TYPE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct POHANDLE(pub isize); +pub struct POHANDLE(pub *mut core::ffi::c_void); +impl POHANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for POHANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs b/crates/libs/windows/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs index 734d0a3c13..623beaa66a 100644 --- a/crates/libs/windows/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs @@ -4588,7 +4588,12 @@ impl Default for NDIS_PCI_DEVICE_CUSTOM_PROPERTIES { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct NDIS_PD_COUNTER_HANDLE(pub isize); +pub struct NDIS_PD_COUNTER_HANDLE(pub *mut core::ffi::c_void); +impl NDIS_PD_COUNTER_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for NDIS_PD_COUNTER_HANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4599,7 +4604,12 @@ impl windows_core::TypeKind for NDIS_PD_COUNTER_HANDLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct NDIS_PD_FILTER_HANDLE(pub isize); +pub struct NDIS_PD_FILTER_HANDLE(pub *mut core::ffi::c_void); +impl NDIS_PD_FILTER_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for NDIS_PD_FILTER_HANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4610,7 +4620,12 @@ impl windows_core::TypeKind for NDIS_PD_FILTER_HANDLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct NDIS_PD_PROVIDER_HANDLE(pub isize); +pub struct NDIS_PD_PROVIDER_HANDLE(pub *mut core::ffi::c_void); +impl NDIS_PD_PROVIDER_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for NDIS_PD_PROVIDER_HANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4682,7 +4697,12 @@ impl Default for NDIS_PNP_CAPABILITIES { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct NDIS_POLL_HANDLE(pub isize); +pub struct NDIS_POLL_HANDLE(pub *mut core::ffi::c_void); +impl NDIS_POLL_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for NDIS_POLL_HANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs b/crates/libs/windows/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs index 780cf34a87..b3083141c2 100644 --- a/crates/libs/windows/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs @@ -11,12 +11,9 @@ pub unsafe fn FwpmBfeStateSubscribeChanges0(deviceobject: *mut core::ffi::c_void FwpmBfeStateSubscribeChanges0(deviceobject, callback, core::mem::transmute(context.unwrap_or(std::ptr::null())), changehandle) } #[inline] -pub unsafe fn FwpmBfeStateUnsubscribeChanges0(changehandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ +pub unsafe fn FwpmBfeStateUnsubscribeChanges0(changehandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS { windows_targets::link!("fwpkclnt.sys" "system" fn FwpmBfeStateUnsubscribeChanges0(changehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmBfeStateUnsubscribeChanges0(changehandle.param().abi()) + FwpmBfeStateUnsubscribeChanges0(changehandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -54,13 +51,12 @@ where FwpmCalloutDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmCalloutDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmCalloutDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmCalloutDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmCalloutDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] #[inline] @@ -92,11 +88,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmCalloutGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmCalloutGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmCalloutGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -147,11 +143,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmConnectionGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmConnectionGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmConnectionGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -164,12 +160,9 @@ where FwpmConnectionSetSecurityInfo0(enginehandle.param().abi(), securityinfo, core::mem::transmute(sidowner.unwrap_or(std::ptr::null())), core::mem::transmute(sidgroup.unwrap_or(std::ptr::null())), core::mem::transmute(dacl.unwrap_or(std::ptr::null())), core::mem::transmute(sacl.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn FwpmEngineClose0(enginehandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ +pub unsafe fn FwpmEngineClose0(enginehandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineClose0(enginehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmEngineClose0(enginehandle.param().abi()) + FwpmEngineClose0(enginehandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -182,11 +175,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmEngineGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmEngineGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmEngineGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security", feature = "Win32_System_Rpc"))] @@ -252,13 +245,12 @@ where FwpmFilterDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmFilterDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmFilterDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmFilterDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmFilterDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -290,11 +282,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmFilterGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmFilterGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmFilterGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -369,13 +361,12 @@ where FwpmLayerCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn FwpmLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] #[inline] @@ -407,11 +398,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmLayerGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -433,13 +424,12 @@ where FwpmNetEventCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn FwpmNetEventDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmNetEventDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmNetEventDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmNetEventDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -503,11 +493,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmNetEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmNetEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmNetEventsGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -595,13 +585,12 @@ where FwpmProviderContextDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmProviderContextDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmProviderContextDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmProviderContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmProviderContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -717,11 +706,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmProviderContextGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -751,13 +740,12 @@ where FwpmProviderDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmProviderDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmProviderDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmProviderDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmProviderDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] #[inline] @@ -780,11 +768,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmProviderGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmProviderGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmProviderGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -806,13 +794,12 @@ where FwpmSessionCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn FwpmSessionDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmSessionDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSessionDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmSessionDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmSessionDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -852,13 +839,12 @@ where FwpmSubLayerDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmSubLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmSubLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - FwpmSubLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmSubLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] #[inline] @@ -881,11 +867,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmSubLayerGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -923,11 +909,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); FwpmvSwitchEventsGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -941,11 +927,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn IPsecDospGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IPsecDospGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); IPsecDospGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] @@ -976,13 +962,12 @@ where IPsecDospStateCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn IPsecDospStateDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IPsecDospStateDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospStateDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - IPsecDospStateDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IPsecDospStateDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] #[inline] @@ -1084,13 +1069,12 @@ where IPsecSaContextDeleteById0(enginehandle.param().abi(), id) } #[inline] -pub unsafe fn IPsecSaContextDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IPsecSaContextDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - IPsecSaContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IPsecSaContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -1185,11 +1169,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn IPsecSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IPsecSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); IPsecSaDbGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -1202,13 +1186,12 @@ where IPsecSaDbSetSecurityInfo0(enginehandle.param().abi(), securityinfo, core::mem::transmute(sidowner.unwrap_or(std::ptr::null())), core::mem::transmute(sidgroup.unwrap_or(std::ptr::null())), core::mem::transmute(dacl.unwrap_or(std::ptr::null())), core::mem::transmute(sacl.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn IPsecSaDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IPsecSaDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - IPsecSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IPsecSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(all(feature = "Win32_NetworkManagement_WindowsFilteringPlatform", feature = "Win32_Security"))] #[inline] @@ -1259,11 +1242,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn IkeextSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Foundation::PSID, sidgroup: *mut super::super::super::Win32::Foundation::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IkeextSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::super::Win32::Security::PSID, sidgroup: *mut super::super::super::Win32::Security::PSID, dacl: *mut *mut super::super::super::Win32::Security::ACL, sacl: *mut *mut super::super::super::Win32::Security::ACL, securitydescriptor: *mut super::super::super::Win32::Security::PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Foundation:: PSID, sidgroup : *mut super::super::super::Win32::Foundation:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::super::Win32::Security:: PSID, sidgroup : *mut super::super::super::Win32::Security:: PSID, dacl : *mut *mut super::super::super::Win32::Security:: ACL, sacl : *mut *mut super::super::super::Win32::Security:: ACL, securitydescriptor : *mut super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); IkeextSaDbGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -1284,13 +1267,12 @@ where IkeextSaDeleteById0(enginehandle.param().abi(), id) } #[inline] -pub unsafe fn IkeextSaDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IkeextSaDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDestroyEnumHandle0(enginehandle : super::super::super::Win32::Foundation:: HANDLE, enumhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - IkeextSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IkeextSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_NetworkManagement_WindowsFilteringPlatform")] #[inline] diff --git a/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs b/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs index 8357a79e05..4e52e9a370 100644 --- a/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs @@ -3254,7 +3254,7 @@ impl Default for FLT_PARAMETERS_20 { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct FLT_PARAMETERS_21 { pub Length: u32, - pub StartSid: super::super::super::super::Win32::Foundation::PSID, + pub StartSid: super::super::super::super::Win32::Security::PSID, pub SidList: *mut super::FILE_GET_QUOTA_INFORMATION, pub SidListLength: u32, pub QuotaBuffer: *mut core::ffi::c_void, diff --git a/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/mod.rs b/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/mod.rs index 775ee4ea34..ca31020555 100644 --- a/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/Storage/FileSystem/mod.rs @@ -1831,17 +1831,17 @@ pub unsafe fn IoRegisterFileSystem(deviceobject: *const super::super::Foundation } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoRegisterFsRegistrationChange(driverobject: *const super::super::Foundation::DRIVER_OBJECT, drivernotificationroutine: *const super::super::Foundation::DRIVER_FS_NOTIFICATION) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : *const super::super::Foundation:: DRIVER_FS_NOTIFICATION) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn IoRegisterFsRegistrationChange(driverobject: *const super::super::Foundation::DRIVER_OBJECT, drivernotificationroutine: super::super::Foundation::DRIVER_FS_NOTIFICATION) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : super::super::Foundation:: DRIVER_FS_NOTIFICATION) -> super::super::super::Win32::Foundation:: NTSTATUS); IoRegisterFsRegistrationChange(driverobject, drivernotificationroutine) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoRegisterFsRegistrationChangeMountAware(driverobject: *const super::super::Foundation::DRIVER_OBJECT, drivernotificationroutine: *const super::super::Foundation::DRIVER_FS_NOTIFICATION, synchronizewithmounts: P0) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn IoRegisterFsRegistrationChangeMountAware(driverobject: *const super::super::Foundation::DRIVER_OBJECT, drivernotificationroutine: super::super::Foundation::DRIVER_FS_NOTIFICATION, synchronizewithmounts: P0) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChangeMountAware(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : *const super::super::Foundation:: DRIVER_FS_NOTIFICATION, synchronizewithmounts : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterFsRegistrationChangeMountAware(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : super::super::Foundation:: DRIVER_FS_NOTIFICATION, synchronizewithmounts : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); IoRegisterFsRegistrationChangeMountAware(driverobject, drivernotificationroutine, synchronizewithmounts.param().abi()) } #[inline] @@ -1917,8 +1917,8 @@ pub unsafe fn IoUnregisterFileSystem(deviceobject: *const super::super::Foundati } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoUnregisterFsRegistrationChange(driverobject: *const super::super::Foundation::DRIVER_OBJECT, drivernotificationroutine: *const super::super::Foundation::DRIVER_FS_NOTIFICATION) { - windows_targets::link!("ntoskrnl.exe" "system" fn IoUnregisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : *const super::super::Foundation:: DRIVER_FS_NOTIFICATION)); +pub unsafe fn IoUnregisterFsRegistrationChange(driverobject: *const super::super::Foundation::DRIVER_OBJECT, drivernotificationroutine: super::super::Foundation::DRIVER_FS_NOTIFICATION) { + windows_targets::link!("ntoskrnl.exe" "system" fn IoUnregisterFsRegistrationChange(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, drivernotificationroutine : super::super::Foundation:: DRIVER_FS_NOTIFICATION)); IoUnregisterFsRegistrationChange(driverobject, drivernotificationroutine) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] @@ -2176,10 +2176,10 @@ pub unsafe fn NtAccessCheckByTypeAndAuditAlarm( ) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Foundation:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtAccessCheckByTypeAndAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), objecttypename, objectname, securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), objecttypelist.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, generateonclose) } #[cfg(feature = "Win32_Security")] @@ -2204,10 +2204,10 @@ pub unsafe fn NtAccessCheckByTypeResultListAndAuditAlarm( ) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Foundation:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtAccessCheckByTypeResultListAndAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), objecttypename, objectname, securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, generateonclose) } #[cfg(feature = "Win32_Security")] @@ -2234,10 +2234,10 @@ pub unsafe fn NtAccessCheckByTypeResultListAndAuditAlarmByHandle where P0: windows_core::Param, P1: windows_core::Param, - P2: windows_core::Param, + P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Foundation:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn NtAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), clienttoken.param().abi(), objecttypename, objectname, securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, generateonclose) } #[cfg(feature = "Win32_Security")] @@ -2268,6 +2268,15 @@ where windows_targets::link!("ntdll.dll" "system" fn NtAllocateVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, regionsize : *mut usize, allocationtype : u32, protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); NtAllocateVirtualMemory(processhandle.param().abi(), baseaddress, zerobits, regionsize, allocationtype, protect) } +#[cfg(feature = "Win32_System_Memory")] +#[inline] +pub unsafe fn NtAllocateVirtualMemoryEx(processhandle: P0, baseaddress: *mut *mut core::ffi::c_void, regionsize: *mut usize, allocationtype: u32, pageprotection: u32, extendedparameters: Option<&mut [super::super::super::Win32::System::Memory::MEM_EXTENDED_PARAMETER]>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtAllocateVirtualMemoryEx(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, allocationtype : u32, pageprotection : u32, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtAllocateVirtualMemoryEx(processhandle.param().abi(), baseaddress, regionsize, allocationtype, pageprotection, core::mem::transmute(extendedparameters.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), extendedparameters.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) +} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn NtCancelIoFileEx(filehandle: P0, iorequesttocancel: Option<*const super::super::super::Win32::System::IO::IO_STATUS_BLOCK>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation::NTSTATUS @@ -2285,6 +2294,21 @@ where windows_targets::link!("ntdll.dll" "system" fn NtCloseObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtCloseObjectAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), generateonclose.param().abi()) } +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtCreateDirectoryObject(directoryhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtCreateDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCreateDirectoryObject(directoryhandle, desiredaccess, objectattributes) +} +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] +#[inline] +pub unsafe fn NtCreateEvent(eventhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, eventtype: super::super::super::Win32::System::Kernel::EVENT_TYPE, initialstate: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtCreateEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, eventtype : super::super::super::Win32::System::Kernel:: EVENT_TYPE, initialstate : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCreateEvent(eventhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), eventtype, initialstate.param().abi()) +} #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_Storage_FileSystem", feature = "Win32_System_IO"))] #[inline] pub unsafe fn NtCreateFile(filehandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: super::super::super::Win32::Storage::FileSystem::FILE_ACCESS_RIGHTS, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, allocationsize: Option<*const i64>, fileattributes: super::super::super::Win32::Storage::FileSystem::FILE_FLAGS_AND_ATTRIBUTES, shareaccess: super::super::super::Win32::Storage::FileSystem::FILE_SHARE_MODE, createdisposition: NTCREATEFILE_CREATE_DISPOSITION, createoptions: NTCREATEFILE_CREATE_OPTIONS, eabuffer: Option<*const core::ffi::c_void>, ealength: u32) -> super::super::super::Win32::Foundation::NTSTATUS { @@ -2309,6 +2333,12 @@ where windows_targets::link!("ntdll.dll" "system" fn NtCreateSectionEx(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, maximumsize : *const i64, sectionpageprotection : u32, allocationattributes : u32, filehandle : super::super::super::Win32::Foundation:: HANDLE, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); NtCreateSectionEx(sectionhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), core::mem::transmute(maximumsize.unwrap_or(std::ptr::null())), sectionpageprotection, allocationattributes, filehandle.param().abi(), core::mem::transmute(extendedparameters.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), extendedparameters.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtDeleteFile(objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtDeleteFile(objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtDeleteFile(objectattributes) +} #[inline] pub unsafe fn NtDeleteObjectAuditAlarm(subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, handleid: Option<*const core::ffi::c_void>, generateonclose: P0) -> super::super::super::Win32::Foundation::NTSTATUS where @@ -2317,6 +2347,16 @@ where windows_targets::link!("ntdll.dll" "system" fn NtDeleteObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtDeleteObjectAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), generateonclose.param().abi()) } +#[inline] +pub unsafe fn NtDuplicateObject(sourceprocesshandle: P0, sourcehandle: P1, targetprocesshandle: P2, targethandle: Option<*mut super::super::super::Win32::Foundation::HANDLE>, desiredaccess: u32, handleattributes: u32, options: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtDuplicateObject(sourceprocesshandle : super::super::super::Win32::Foundation:: HANDLE, sourcehandle : super::super::super::Win32::Foundation:: HANDLE, targetprocesshandle : super::super::super::Win32::Foundation:: HANDLE, targethandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, handleattributes : u32, options : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtDuplicateObject(sourceprocesshandle.param().abi(), sourcehandle.param().abi(), targetprocesshandle.param().abi(), core::mem::transmute(targethandle.unwrap_or(std::ptr::null_mut())), desiredaccess, handleattributes, options) +} #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_Security"))] #[inline] pub unsafe fn NtDuplicateToken(existingtokenhandle: P0, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, effectiveonly: P1, tokentype: super::super::super::Win32::Security::TOKEN_TYPE, newtokenhandle: *mut super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS @@ -2338,6 +2378,15 @@ where } #[cfg(feature = "Win32_System_IO")] #[inline] +pub unsafe fn NtFlushBuffersFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtFlushBuffersFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtFlushBuffersFile(filehandle.param().abi(), iostatusblock) +} +#[cfg(feature = "Win32_System_IO")] +#[inline] pub unsafe fn NtFlushBuffersFileEx(filehandle: P0, flags: u32, parameters: *const core::ffi::c_void, parameterssize: u32, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -2345,6 +2394,15 @@ where windows_targets::link!("ntdll.dll" "system" fn NtFlushBuffersFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32, parameters : *const core::ffi::c_void, parameterssize : u32, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); NtFlushBuffersFileEx(filehandle.param().abi(), flags, parameters, parameterssize, iostatusblock) } +#[cfg(feature = "Win32_System_IO")] +#[inline] +pub unsafe fn NtFlushVirtualMemory(processhandle: P0, baseaddress: *mut *mut core::ffi::c_void, regionsize: *mut usize, iostatus: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtFlushVirtualMemory(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, iostatus : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtFlushVirtualMemory(processhandle.param().abi(), baseaddress, regionsize, iostatus) +} #[inline] pub unsafe fn NtFreeVirtualMemory(processhandle: P0, baseaddress: *mut *mut core::ffi::c_void, regionsize: *mut usize, freetype: u32) -> super::super::super::Win32::Foundation::NTSTATUS where @@ -2383,6 +2441,24 @@ where windows_targets::link!("ntdll.dll" "system" fn NtLockFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, byteoffset : *const i64, length : *const i64, key : u32, failimmediately : super::super::super::Win32::Foundation:: BOOLEAN, exclusivelock : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtLockFile(filehandle.param().abi(), event.param().abi(), apcroutine, core::mem::transmute(apccontext.unwrap_or(std::ptr::null())), iostatusblock, byteoffset, length, key, failimmediately.param().abi(), exclusivelock.param().abi()) } +#[cfg(feature = "Win32_System_IO")] +#[inline] +pub unsafe fn NtNotifyChangeKey(keyhandle: P0, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, completionfilter: u32, watchtree: P2, buffer: Option<*mut core::ffi::c_void>, buffersize: u32, asynchronous: P3) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtNotifyChangeKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, completionfilter : u32, watchtree : super::super::super::Win32::Foundation:: BOOLEAN, buffer : *mut core::ffi::c_void, buffersize : u32, asynchronous : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtNotifyChangeKey(keyhandle.param().abi(), event.param().abi(), apcroutine, core::mem::transmute(apccontext.unwrap_or(std::ptr::null())), iostatusblock, completionfilter, watchtree.param().abi(), core::mem::transmute(buffer.unwrap_or(std::ptr::null_mut())), buffersize, asynchronous.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenDirectoryObject(directoryhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenDirectoryObject(directoryhandle, desiredaccess, objectattributes) +} #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] #[inline] pub unsafe fn NtOpenFile(filehandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, shareaccess: u32, openoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { @@ -2417,6 +2493,12 @@ where windows_targets::link!("ntdll.dll" "system" fn NtOpenProcessTokenEx(processhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, handleattributes : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); NtOpenProcessTokenEx(processhandle.param().abi(), desiredaccess, handleattributes, tokenhandle) } +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenSymbolicLinkObject(linkhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenSymbolicLinkObject(linkhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenSymbolicLinkObject(linkhandle, desiredaccess, objectattributes) +} #[inline] pub unsafe fn NtOpenThreadToken(threadhandle: P0, desiredaccess: u32, openasself: P1, tokenhandle: *mut super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where @@ -2486,6 +2568,33 @@ where windows_targets::link!("ntdll.dll" "system" fn NtQueryDirectoryFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS, queryflags : u32, filename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); NtQueryDirectoryFileEx(filehandle.param().abi(), event.param().abi(), apcroutine, core::mem::transmute(apccontext.unwrap_or(std::ptr::null())), iostatusblock, fileinformation, length, fileinformationclass, queryflags, core::mem::transmute(filename.unwrap_or(std::ptr::null()))) } +#[inline] +pub unsafe fn NtQueryDirectoryObject(directoryhandle: P0, buffer: Option<*mut core::ffi::c_void>, length: u32, returnsingleentry: P1, restartscan: P2, context: *mut u32, returnlength: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtQueryDirectoryObject(directoryhandle : super::super::super::Win32::Foundation:: HANDLE, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, restartscan : super::super::super::Win32::Foundation:: BOOLEAN, context : *mut u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtQueryDirectoryObject(directoryhandle.param().abi(), core::mem::transmute(buffer.unwrap_or(std::ptr::null_mut())), length, returnsingleentry.param().abi(), restartscan.param().abi(), context, core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(feature = "Win32_System_IO")] +#[inline] +pub unsafe fn NtQueryEaFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, buffer: *mut core::ffi::c_void, length: u32, returnsingleentry: P1, ealist: Option<*const core::ffi::c_void>, ealistlength: u32, eaindex: Option<*const u32>, restartscan: P2) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtQueryEaFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, ealist : *const core::ffi::c_void, ealistlength : u32, eaindex : *const u32, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtQueryEaFile(filehandle.param().abi(), iostatusblock, buffer, length, returnsingleentry.param().abi(), core::mem::transmute(ealist.unwrap_or(std::ptr::null())), ealistlength, core::mem::transmute(eaindex.unwrap_or(std::ptr::null())), restartscan.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtQueryFullAttributesFile(objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, fileinformation: *mut FILE_NETWORK_OPEN_INFORMATION) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtQueryFullAttributesFile(objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, fileinformation : *mut FILE_NETWORK_OPEN_INFORMATION) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtQueryFullAttributesFile(objectattributes, fileinformation) +} #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] #[inline] pub unsafe fn NtQueryInformationByName(objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, fileinformation: *mut core::ffi::c_void, length: u32, fileinformationclass: FILE_INFORMATION_CLASS) -> super::super::super::Win32::Foundation::NTSTATUS { @@ -2510,16 +2619,16 @@ where windows_targets::link!("ntdll.dll" "system" fn NtQueryInformationToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, tokeninformationclass : super::super::super::Win32::Security:: TOKEN_INFORMATION_CLASS, tokeninformation : *mut core::ffi::c_void, tokeninformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); NtQueryInformationToken(tokenhandle.param().abi(), tokeninformationclass, core::mem::transmute(tokeninformation.unwrap_or(std::ptr::null_mut())), tokeninformationlength, returnlength) } -#[cfg(feature = "Win32_System_IO")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_IO"))] #[inline] pub unsafe fn NtQueryQuotaInformationFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, buffer: *mut core::ffi::c_void, length: u32, returnsingleentry: P1, sidlist: Option<*const core::ffi::c_void>, sidlistlength: u32, startsid: P2, restartscan: P3) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, P1: windows_core::Param, - P2: windows_core::Param, + P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn NtQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Foundation:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn NtQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Security:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtQueryQuotaInformationFile(filehandle.param().abi(), iostatusblock, buffer, length, returnsingleentry.param().abi(), core::mem::transmute(sidlist.unwrap_or(std::ptr::null())), sidlistlength, startsid.param().abi(), restartscan.param().abi()) } #[cfg(feature = "Win32_Security")] @@ -2532,6 +2641,14 @@ where NtQuerySecurityObject(handle.param().abi(), securityinformation, securitydescriptor, length, lengthneeded) } #[inline] +pub unsafe fn NtQuerySymbolicLinkObject(linkhandle: P0, linktarget: *mut super::super::super::Win32::Foundation::UNICODE_STRING, returnedlength: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtQuerySymbolicLinkObject(linkhandle : super::super::super::Win32::Foundation:: HANDLE, linktarget : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, returnedlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtQuerySymbolicLinkObject(linkhandle.param().abi(), linktarget, core::mem::transmute(returnedlength.unwrap_or(std::ptr::null_mut()))) +} +#[inline] pub unsafe fn NtQueryVirtualMemory(processhandle: P0, baseaddress: Option<*const core::ffi::c_void>, memoryinformationclass: MEMORY_INFORMATION_CLASS, memoryinformation: *mut core::ffi::c_void, memoryinformationlength: usize, returnlength: Option<*mut usize>) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -2560,6 +2677,23 @@ where } #[cfg(feature = "Win32_System_IO")] #[inline] +pub unsafe fn NtSetEaFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, buffer: *const core::ffi::c_void, length: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtSetEaFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *const core::ffi::c_void, length : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtSetEaFile(filehandle.param().abi(), iostatusblock, buffer, length) +} +#[inline] +pub unsafe fn NtSetEvent(eventhandle: P0, previousstate: Option<*mut i32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtSetEvent(eventhandle : super::super::super::Win32::Foundation:: HANDLE, previousstate : *mut i32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtSetEvent(eventhandle.param().abi(), core::mem::transmute(previousstate.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(feature = "Win32_System_IO")] +#[inline] pub unsafe fn NtSetInformationFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, fileinformation: *const core::ffi::c_void, length: u32, fileinformationclass: FILE_INFORMATION_CLASS) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -2895,18 +3029,18 @@ where #[inline] pub unsafe fn RtlAddAccessAllowedAce(acl: *mut super::super::super::Win32::Security::ACL, acerevision: u32, accessmask: u32, sid: P0) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAce(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, accessmask : u32, sid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAce(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, accessmask : u32, sid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlAddAccessAllowedAce(acl, acerevision, accessmask, sid.param().abi()) } #[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlAddAccessAllowedAceEx(acl: *mut super::super::super::Win32::Security::ACL, acerevision: u32, aceflags: u32, accessmask: u32, sid: P0) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAceEx(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, aceflags : u32, accessmask : u32, sid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlAddAccessAllowedAceEx(acl : *mut super::super::super::Win32::Security:: ACL, acerevision : u32, aceflags : u32, accessmask : u32, sid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlAddAccessAllowedAceEx(acl, acerevision, aceflags, accessmask, sid.param().abi()) } #[cfg(feature = "Win32_Security")] @@ -2917,14 +3051,14 @@ pub unsafe fn RtlAddAce(acl: *mut super::super::super::Win32::Security::ACL, ace } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlAllocateAndInitializeSid(identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthoritycount: u8, subauthority0: u32, subauthority1: u32, subauthority2: u32, subauthority3: u32, subauthority4: u32, subauthority5: u32, subauthority6: u32, subauthority7: u32, sid: *mut super::super::super::Win32::Foundation::PSID) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSid(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthority0 : u32, subauthority1 : u32, subauthority2 : u32, subauthority3 : u32, subauthority4 : u32, subauthority5 : u32, subauthority6 : u32, subauthority7 : u32, sid : *mut super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn RtlAllocateAndInitializeSid(identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthoritycount: u8, subauthority0: u32, subauthority1: u32, subauthority2: u32, subauthority3: u32, subauthority4: u32, subauthority5: u32, subauthority6: u32, subauthority7: u32, sid: *mut super::super::super::Win32::Security::PSID) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSid(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthority0 : u32, subauthority1 : u32, subauthority2 : u32, subauthority3 : u32, subauthority4 : u32, subauthority5 : u32, subauthority6 : u32, subauthority7 : u32, sid : *mut super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlAllocateAndInitializeSid(identifierauthority, subauthoritycount, subauthority0, subauthority1, subauthority2, subauthority3, subauthority4, subauthority5, subauthority6, subauthority7, sid) } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlAllocateAndInitializeSidEx(identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthorities: &[u32], sid: *mut super::super::super::Win32::Foundation::PSID) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSidEx(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthorities : *const u32, sid : *mut super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn RtlAllocateAndInitializeSidEx(identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthorities: &[u32], sid: *mut super::super::super::Win32::Security::PSID) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn RtlAllocateAndInitializeSidEx(identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8, subauthorities : *const u32, sid : *mut super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlAllocateAndInitializeSidEx(identifierauthority, subauthorities.len().try_into().unwrap(), core::mem::transmute(subauthorities.as_ptr()), sid) } #[inline] @@ -2963,12 +3097,13 @@ pub unsafe fn RtlCopyLuid(destinationluid: *mut super::super::super::Win32::Foun windows_targets::link!("ntdll.dll" "system" fn RtlCopyLuid(destinationluid : *mut super::super::super::Win32::Foundation:: LUID, sourceluid : *const super::super::super::Win32::Foundation:: LUID)); RtlCopyLuid(destinationluid, sourceluid) } +#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlCopySid(destinationsidlength: u32, destinationsid: super::super::super::Win32::Foundation::PSID, sourcesid: P0) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn RtlCopySid(destinationsidlength: u32, destinationsid: super::super::super::Win32::Security::PSID, sourcesid: P0) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlCopySid(destinationsidlength : u32, destinationsid : super::super::super::Win32::Foundation:: PSID, sourcesid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlCopySid(destinationsidlength : u32, destinationsid : super::super::super::Win32::Security:: PSID, sourcesid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlCopySid(destinationsidlength, destinationsid, sourcesid.param().abi()) } #[cfg(feature = "Win32_Security")] @@ -2982,9 +3117,10 @@ pub unsafe fn RtlCreateHeap(flags: u32, heapbase: Option<*const core::ffi::c_voi windows_targets::link!("ntdll.dll" "system" fn RtlCreateHeap(flags : u32, heapbase : *const core::ffi::c_void, reservesize : usize, commitsize : usize, lock : *const core::ffi::c_void, parameters : *const RTL_HEAP_PARAMETERS) -> *mut core::ffi::c_void); RtlCreateHeap(flags, core::mem::transmute(heapbase.unwrap_or(std::ptr::null())), reservesize, commitsize, core::mem::transmute(lock.unwrap_or(std::ptr::null())), core::mem::transmute(parameters.unwrap_or(std::ptr::null()))) } +#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlCreateServiceSid(servicename: *const super::super::super::Win32::Foundation::UNICODE_STRING, servicesid: super::super::super::Win32::Foundation::PSID, servicesidlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn RtlCreateServiceSid(servicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, servicesid : super::super::super::Win32::Foundation:: PSID, servicesidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn RtlCreateServiceSid(servicename: *const super::super::super::Win32::Foundation::UNICODE_STRING, servicesid: super::super::super::Win32::Security::PSID, servicesidlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn RtlCreateServiceSid(servicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, servicesid : super::super::super::Win32::Security:: PSID, servicesidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlCreateServiceSid(servicename, servicesid, servicesidlength) } #[inline] @@ -3000,9 +3136,10 @@ where windows_targets::link!("ntdll.dll" "system" fn RtlCreateUnicodeString(destinationstring : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, sourcestring : windows_core::PCWSTR) -> super::super::super::Win32::Foundation:: BOOLEAN); RtlCreateUnicodeString(destinationstring, sourcestring.param().abi()) } +#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlCreateVirtualAccountSid(name: *const super::super::super::Win32::Foundation::UNICODE_STRING, basesubauthority: u32, sid: super::super::super::Win32::Foundation::PSID, sidlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn RtlCreateVirtualAccountSid(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, basesubauthority : u32, sid : super::super::super::Win32::Foundation:: PSID, sidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn RtlCreateVirtualAccountSid(name: *const super::super::super::Win32::Foundation::UNICODE_STRING, basesubauthority: u32, sid: super::super::super::Win32::Security::PSID, sidlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn RtlCreateVirtualAccountSid(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, basesubauthority : u32, sid : super::super::super::Win32::Security:: PSID, sidlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlCreateVirtualAccountSid(name, basesubauthority, sid, sidlength) } #[inline] @@ -3069,22 +3206,24 @@ pub unsafe fn RtlDuplicateUnicodeString(flags: u32, stringin: *const super::supe windows_targets::link!("ntdll.dll" "system" fn RtlDuplicateUnicodeString(flags : u32, stringin : *const super::super::super::Win32::Foundation:: UNICODE_STRING, stringout : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlDuplicateUnicodeString(flags, stringin, stringout) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlEqualPrefixSid(sid1: P0, sid2: P1) -> super::super::super::Win32::Foundation::BOOLEAN where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlEqualPrefixSid(sid1 : super::super::super::Win32::Foundation:: PSID, sid2 : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); + windows_targets::link!("ntdll.dll" "system" fn RtlEqualPrefixSid(sid1 : super::super::super::Win32::Security:: PSID, sid2 : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); RtlEqualPrefixSid(sid1.param().abi(), sid2.param().abi()) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlEqualSid(sid1: P0, sid2: P1) -> super::super::super::Win32::Foundation::BOOLEAN where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlEqualSid(sid1 : super::super::super::Win32::Foundation:: PSID, sid2 : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); + windows_targets::link!("ntdll.dll" "system" fn RtlEqualSid(sid1 : super::super::super::Win32::Security:: PSID, sid2 : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); RtlEqualSid(sid1.param().abi(), sid2.param().abi()) } #[cfg(feature = "Wdk_Foundation")] @@ -3098,12 +3237,13 @@ pub unsafe fn RtlFreeHeap(heaphandle: *const core::ffi::c_void, flags: u32, base windows_targets::link!("ntdll.dll" "system" fn RtlFreeHeap(heaphandle : *const core::ffi::c_void, flags : u32, baseaddress : *const core::ffi::c_void) -> u32); RtlFreeHeap(heaphandle, flags, core::mem::transmute(baseaddress.unwrap_or(std::ptr::null()))) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlFreeSid(sid: P0) -> *mut core::ffi::c_void where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlFreeSid(sid : super::super::super::Win32::Foundation:: PSID) -> *mut core::ffi::c_void); + windows_targets::link!("ntdll.dll" "system" fn RtlFreeSid(sid : super::super::super::Win32::Security:: PSID) -> *mut core::ffi::c_void); RtlFreeSid(sid.param().abi()) } #[inline] @@ -3136,20 +3276,20 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlGetGroupSecurityDescriptor(securitydescriptor: P0, group: *mut super::super::super::Win32::Foundation::PSID, groupdefaulted: *mut super::super::super::Win32::Foundation::BOOLEAN) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn RtlGetGroupSecurityDescriptor(securitydescriptor: P0, group: *mut super::super::super::Win32::Security::PSID, groupdefaulted: *mut super::super::super::Win32::Foundation::BOOLEAN) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlGetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : *mut super::super::super::Win32::Foundation:: PSID, groupdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlGetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : *mut super::super::super::Win32::Security:: PSID, groupdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlGetGroupSecurityDescriptor(securitydescriptor.param().abi(), group, groupdefaulted) } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlGetOwnerSecurityDescriptor(securitydescriptor: P0, owner: *mut super::super::super::Win32::Foundation::PSID, ownerdefaulted: *mut super::super::super::Win32::Foundation::BOOLEAN) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn RtlGetOwnerSecurityDescriptor(securitydescriptor: P0, owner: *mut super::super::super::Win32::Security::PSID, ownerdefaulted: *mut super::super::super::Win32::Foundation::BOOLEAN) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlGetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : *mut super::super::super::Win32::Foundation:: PSID, ownerdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlGetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : *mut super::super::super::Win32::Security:: PSID, ownerdefaulted : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlGetOwnerSecurityDescriptor(securitydescriptor.param().abi(), owner, ownerdefaulted) } #[cfg(feature = "Win32_Security")] @@ -3165,9 +3305,9 @@ where #[inline] pub unsafe fn RtlIdentifierAuthoritySid(sid: P0) -> *mut super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlIdentifierAuthoritySid(sid : super::super::super::Win32::Foundation:: PSID) -> *mut super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY); + windows_targets::link!("ntdll.dll" "system" fn RtlIdentifierAuthoritySid(sid : super::super::super::Win32::Security:: PSID) -> *mut super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY); RtlIdentifierAuthoritySid(sid.param().abi()) } #[inline] @@ -3209,14 +3349,14 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlInitializeSid(sid: super::super::super::Win32::Foundation::PSID, identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthoritycount: u8) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn RtlInitializeSid(sid : super::super::super::Win32::Foundation:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn RtlInitializeSid(sid: super::super::super::Win32::Security::PSID, identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthoritycount: u8) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn RtlInitializeSid(sid : super::super::super::Win32::Security:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlInitializeSid(sid, identifierauthority, subauthoritycount) } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlInitializeSidEx(sid: super::super::super::Win32::Foundation::PSID, identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthoritycount: u8) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "cdecl" fn RtlInitializeSidEx(sid : super::super::super::Win32::Foundation:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn RtlInitializeSidEx(sid: super::super::super::Win32::Security::PSID, identifierauthority: *const super::super::super::Win32::Security::SID_IDENTIFIER_AUTHORITY, subauthoritycount: u8) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "cdecl" fn RtlInitializeSidEx(sid : super::super::super::Win32::Security:: PSID, identifierauthority : *const super::super::super::Win32::Security:: SID_IDENTIFIER_AUTHORITY, subauthoritycount : u8) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlInitializeSidEx(sid, identifierauthority, subauthoritycount) } #[cfg(feature = "Wdk_Foundation")] @@ -3285,12 +3425,13 @@ pub unsafe fn RtlLengthRequiredSid(subauthoritycount: u32) -> u32 { windows_targets::link!("ntdll.dll" "system" fn RtlLengthRequiredSid(subauthoritycount : u32) -> u32); RtlLengthRequiredSid(subauthoritycount) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlLengthSid(sid: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlLengthSid(sid : super::super::super::Win32::Foundation:: PSID) -> u32); + windows_targets::link!("ntdll.dll" "system" fn RtlLengthSid(sid : super::super::super::Win32::Security:: PSID) -> u32); RtlLengthSid(sid.param().abi()) } #[inline] @@ -3400,10 +3541,10 @@ pub unsafe fn RtlRemoveUnicodePrefix(prefixtable: *const UNICODE_PREFIX_TABLE, p #[inline] pub unsafe fn RtlReplaceSidInSd(securitydescriptor: super::super::super::Win32::Security::PSECURITY_DESCRIPTOR, oldsid: P0, newsid: P1, numchanges: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlReplaceSidInSd(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, oldsid : super::super::super::Win32::Foundation:: PSID, newsid : super::super::super::Win32::Foundation:: PSID, numchanges : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlReplaceSidInSd(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, oldsid : super::super::super::Win32::Security:: PSID, newsid : super::super::super::Win32::Security:: PSID, numchanges : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlReplaceSidInSd(securitydescriptor, oldsid.param().abi(), newsid.param().abi(), numchanges) } #[inline] @@ -3427,31 +3568,31 @@ pub unsafe fn RtlSecondsSince1980ToTime(elapsedseconds: u32) -> i64 { } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn RtlSelfRelativeToAbsoluteSD(selfrelativesecuritydescriptor: P0, absolutesecuritydescriptor: super::super::super::Win32::Security::PSECURITY_DESCRIPTOR, absolutesecuritydescriptorsize: *mut u32, dacl: Option<*mut super::super::super::Win32::Security::ACL>, daclsize: *mut u32, sacl: Option<*mut super::super::super::Win32::Security::ACL>, saclsize: *mut u32, owner: super::super::super::Win32::Foundation::PSID, ownersize: *mut u32, primarygroup: super::super::super::Win32::Foundation::PSID, primarygroupsize: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn RtlSelfRelativeToAbsoluteSD(selfrelativesecuritydescriptor: P0, absolutesecuritydescriptor: super::super::super::Win32::Security::PSECURITY_DESCRIPTOR, absolutesecuritydescriptorsize: *mut u32, dacl: Option<*mut super::super::super::Win32::Security::ACL>, daclsize: *mut u32, sacl: Option<*mut super::super::super::Win32::Security::ACL>, saclsize: *mut u32, owner: super::super::super::Win32::Security::PSID, ownersize: *mut u32, primarygroup: super::super::super::Win32::Security::PSID, primarygroupsize: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlSelfRelativeToAbsoluteSD(selfrelativesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptorsize : *mut u32, dacl : *mut super::super::super::Win32::Security:: ACL, daclsize : *mut u32, sacl : *mut super::super::super::Win32::Security:: ACL, saclsize : *mut u32, owner : super::super::super::Win32::Foundation:: PSID, ownersize : *mut u32, primarygroup : super::super::super::Win32::Foundation:: PSID, primarygroupsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlSelfRelativeToAbsoluteSD(selfrelativesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, absolutesecuritydescriptorsize : *mut u32, dacl : *mut super::super::super::Win32::Security:: ACL, daclsize : *mut u32, sacl : *mut super::super::super::Win32::Security:: ACL, saclsize : *mut u32, owner : super::super::super::Win32::Security:: PSID, ownersize : *mut u32, primarygroup : super::super::super::Win32::Security:: PSID, primarygroupsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlSelfRelativeToAbsoluteSD(selfrelativesecuritydescriptor.param().abi(), absolutesecuritydescriptor, absolutesecuritydescriptorsize, core::mem::transmute(dacl.unwrap_or(std::ptr::null_mut())), daclsize, core::mem::transmute(sacl.unwrap_or(std::ptr::null_mut())), saclsize, owner, ownersize, primarygroup, primarygroupsize) } #[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlSetGroupSecurityDescriptor(securitydescriptor: super::super::super::Win32::Security::PSECURITY_DESCRIPTOR, group: P0, groupdefaulted: P1) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlSetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : super::super::super::Win32::Foundation:: PSID, groupdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlSetGroupSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, group : super::super::super::Win32::Security:: PSID, groupdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlSetGroupSecurityDescriptor(securitydescriptor, group.param().abi(), groupdefaulted.param().abi()) } #[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlSetOwnerSecurityDescriptor(securitydescriptor: super::super::super::Win32::Security::PSECURITY_DESCRIPTOR, owner: P0, ownerdefaulted: P1) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlSetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : super::super::super::Win32::Foundation:: PSID, ownerdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlSetOwnerSecurityDescriptor(securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, owner : super::super::super::Win32::Security:: PSID, ownerdefaulted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlSetOwnerSecurityDescriptor(securitydescriptor, owner.param().abi(), ownerdefaulted.param().abi()) } #[inline] @@ -3464,20 +3605,22 @@ pub unsafe fn RtlSetThreadPlaceholderCompatibilityMode(mode: i8) -> i8 { windows_targets::link!("ntdll.dll" "system" fn RtlSetThreadPlaceholderCompatibilityMode(mode : i8) -> i8); RtlSetThreadPlaceholderCompatibilityMode(mode) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlSubAuthorityCountSid(sid: P0) -> *mut u8 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthorityCountSid(sid : super::super::super::Win32::Foundation:: PSID) -> *mut u8); + windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthorityCountSid(sid : super::super::super::Win32::Security:: PSID) -> *mut u8); RtlSubAuthorityCountSid(sid.param().abi()) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlSubAuthoritySid(sid: P0, subauthority: u32) -> *mut u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthoritySid(sid : super::super::super::Win32::Foundation:: PSID, subauthority : u32) -> *mut u32); + windows_targets::link!("ntdll.dll" "system" fn RtlSubAuthoritySid(sid : super::super::super::Win32::Security:: PSID, subauthority : u32) -> *mut u32); RtlSubAuthoritySid(sid.param().abi(), subauthority) } #[inline] @@ -3548,12 +3691,13 @@ pub unsafe fn RtlUpcaseUnicodeToOemN(oemstring: &mut [u8], bytesinoemstring: Opt windows_targets::link!("ntdll.dll" "system" fn RtlUpcaseUnicodeToOemN(oemstring : windows_core::PSTR, maxbytesinoemstring : u32, bytesinoemstring : *mut u32, unicodestring : *const u16, bytesinunicodestring : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); RtlUpcaseUnicodeToOemN(core::mem::transmute(oemstring.as_ptr()), oemstring.len().try_into().unwrap(), core::mem::transmute(bytesinoemstring.unwrap_or(std::ptr::null_mut())), unicodestring, bytesinunicodestring) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn RtlValidSid(sid: P0) -> super::super::super::Win32::Foundation::BOOLEAN where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlValidSid(sid : super::super::super::Win32::Foundation:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); + windows_targets::link!("ntdll.dll" "system" fn RtlValidSid(sid : super::super::super::Win32::Security:: PSID) -> super::super::super::Win32::Foundation:: BOOLEAN); RtlValidSid(sid.param().abi()) } #[inline] @@ -3963,9 +4107,9 @@ pub unsafe fn SeRegisterLogonSessionTerminatedRoutineEx(callbackroutine: PSE_LOG #[inline] pub unsafe fn SeReportSecurityEventWithSubCategory(flags: u32, sourcename: *const super::super::super::Win32::Foundation::UNICODE_STRING, usersid: P0, auditparameters: *const super::super::super::Win32::Security::Authentication::Identity::SE_ADT_PARAMETER_ARRAY, auditsubcategoryid: u32) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEventWithSubCategory(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Foundation:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY, auditsubcategoryid : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEventWithSubCategory(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Security:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY, auditsubcategoryid : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); SeReportSecurityEventWithSubCategory(flags, sourcename, usersid.param().abi(), auditparameters, auditsubcategoryid) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_System_SystemServices", feature = "Win32_Security"))] @@ -4040,23 +4184,23 @@ pub unsafe fn SeUnregisterLogonSessionTerminatedRoutineEx(callbackroutine: PSE_L } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn SecLookupAccountName(name: *const super::super::super::Win32::Foundation::UNICODE_STRING, sidsize: *mut u32, sid: super::super::super::Win32::Foundation::PSID, nameuse: *mut super::super::super::Win32::Security::SID_NAME_USE, domainsize: *mut u32, referenceddomain: Option<*mut super::super::super::Win32::Foundation::UNICODE_STRING>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountName(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, sidsize : *mut u32, sid : super::super::super::Win32::Foundation:: PSID, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE, domainsize : *mut u32, referenceddomain : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn SecLookupAccountName(name: *const super::super::super::Win32::Foundation::UNICODE_STRING, sidsize: *mut u32, sid: super::super::super::Win32::Security::PSID, nameuse: *mut super::super::super::Win32::Security::SID_NAME_USE, domainsize: *mut u32, referenceddomain: Option<*mut super::super::super::Win32::Foundation::UNICODE_STRING>) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountName(name : *const super::super::super::Win32::Foundation:: UNICODE_STRING, sidsize : *mut u32, sid : super::super::super::Win32::Security:: PSID, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE, domainsize : *mut u32, referenceddomain : *mut super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); SecLookupAccountName(name, sidsize, sid, nameuse, domainsize, core::mem::transmute(referenceddomain.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn SecLookupAccountSid(sid: P0, namesize: *mut u32, namebuffer: *mut super::super::super::Win32::Foundation::UNICODE_STRING, domainsize: *mut u32, domainbuffer: Option<*mut super::super::super::Win32::Foundation::UNICODE_STRING>, nameuse: *mut super::super::super::Win32::Security::SID_NAME_USE) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountSid(sid : super::super::super::Win32::Foundation:: PSID, namesize : *mut u32, namebuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, domainsize : *mut u32, domainbuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ksecdd.sys" "system" fn SecLookupAccountSid(sid : super::super::super::Win32::Security:: PSID, namesize : *mut u32, namebuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, domainsize : *mut u32, domainbuffer : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, nameuse : *mut super::super::super::Win32::Security:: SID_NAME_USE) -> super::super::super::Win32::Foundation:: NTSTATUS); SecLookupAccountSid(sid.param().abi(), namesize, namebuffer, domainsize, core::mem::transmute(domainbuffer.unwrap_or(std::ptr::null_mut())), nameuse) } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn SecLookupWellKnownSid(sidtype: super::super::super::Win32::Security::WELL_KNOWN_SID_TYPE, sid: super::super::super::Win32::Foundation::PSID, sidbuffersize: u32, sidsize: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ksecdd.sys" "system" fn SecLookupWellKnownSid(sidtype : super::super::super::Win32::Security:: WELL_KNOWN_SID_TYPE, sid : super::super::super::Win32::Foundation:: PSID, sidbuffersize : u32, sidsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn SecLookupWellKnownSid(sidtype: super::super::super::Win32::Security::WELL_KNOWN_SID_TYPE, sid: super::super::super::Win32::Security::PSID, sidbuffersize: u32, sidsize: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ksecdd.sys" "system" fn SecLookupWellKnownSid(sidtype : super::super::super::Win32::Security:: WELL_KNOWN_SID_TYPE, sid : super::super::super::Win32::Security:: PSID, sidbuffersize : u32, sidsize : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); SecLookupWellKnownSid(sidtype, sid, sidbuffersize, core::mem::transmute(sidsize.unwrap_or(std::ptr::null_mut()))) } #[inline] @@ -4189,6 +4333,121 @@ pub unsafe fn VerifySignature(phcontext: *const SecHandle, pmessage: *const SecB let mut result__ = core::mem::zeroed(); VerifySignature(phcontext, pmessage, messageseqno, &mut result__).map(|| result__) } +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwAccessCheckAndAuditAlarm(subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, handleid: Option<*const core::ffi::c_void>, objecttypename: *const super::super::super::Win32::Foundation::UNICODE_STRING, objectname: *const super::super::super::Win32::Foundation::UNICODE_STRING, securitydescriptor: P0, desiredaccess: u32, genericmapping: *const super::super::super::Win32::Security::GENERIC_MAPPING, objectcreation: P1, grantedaccess: *mut u32, accessstatus: *mut i32, generateonclose: *mut super::super::super::Win32::Foundation::BOOLEAN) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, desiredaccess : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwAccessCheckAndAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), objecttypename, objectname, securitydescriptor.param().abi(), desiredaccess, genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, generateonclose) +} +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwAccessCheckByTypeAndAuditAlarm( + subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, + handleid: Option<*const core::ffi::c_void>, + objecttypename: *const super::super::super::Win32::Foundation::UNICODE_STRING, + objectname: *const super::super::super::Win32::Foundation::UNICODE_STRING, + securitydescriptor: P0, + principalselfsid: P1, + desiredaccess: u32, + audittype: super::super::super::Win32::Security::AUDIT_EVENT_TYPE, + flags: u32, + objecttypelist: Option<&[super::super::super::Win32::Security::OBJECT_TYPE_LIST]>, + genericmapping: *const super::super::super::Win32::Security::GENERIC_MAPPING, + objectcreation: P2, + grantedaccess: *mut u32, + accessstatus: *mut i32, + generateonclose: *mut super::super::super::Win32::Foundation::BOOLEAN, +) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckByTypeAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwAccessCheckByTypeAndAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), objecttypename, objectname, securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), objecttypelist.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, generateonclose) +} +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwAccessCheckByTypeResultListAndAuditAlarm( + subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, + handleid: Option<*const core::ffi::c_void>, + objecttypename: *const super::super::super::Win32::Foundation::UNICODE_STRING, + objectname: *const super::super::super::Win32::Foundation::UNICODE_STRING, + securitydescriptor: P0, + principalselfsid: P1, + desiredaccess: u32, + audittype: super::super::super::Win32::Security::AUDIT_EVENT_TYPE, + flags: u32, + objecttypelist: Option<*const super::super::super::Win32::Security::OBJECT_TYPE_LIST>, + objecttypelistlength: u32, + genericmapping: *const super::super::super::Win32::Security::GENERIC_MAPPING, + objectcreation: P2, + grantedaccess: *mut u32, + accessstatus: *mut i32, + generateonclose: *mut super::super::super::Win32::Foundation::BOOLEAN, +) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckByTypeResultListAndAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwAccessCheckByTypeResultListAndAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), objecttypename, objectname, securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, generateonclose) +} +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwAccessCheckByTypeResultListAndAuditAlarmByHandle( + subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, + handleid: Option<*const core::ffi::c_void>, + clienttoken: P0, + objecttypename: *const super::super::super::Win32::Foundation::UNICODE_STRING, + objectname: *const super::super::super::Win32::Foundation::UNICODE_STRING, + securitydescriptor: P1, + principalselfsid: P2, + desiredaccess: u32, + audittype: super::super::super::Win32::Security::AUDIT_EVENT_TYPE, + flags: u32, + objecttypelist: Option<*const super::super::super::Win32::Security::OBJECT_TYPE_LIST>, + objecttypelistlength: u32, + genericmapping: *const super::super::super::Win32::Security::GENERIC_MAPPING, + objectcreation: P3, + grantedaccess: *mut u32, + accessstatus: *mut i32, + generateonclose: *mut super::super::super::Win32::Foundation::BOOLEAN, +) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, principalselfsid : super::super::super::Win32::Security:: PSID, desiredaccess : u32, audittype : super::super::super::Win32::Security:: AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *const super::super::super::Win32::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const super::super::super::Win32::Security:: GENERIC_MAPPING, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, grantedaccess : *mut u32, accessstatus : *mut i32, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwAccessCheckByTypeResultListAndAuditAlarmByHandle(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), clienttoken.param().abi(), objecttypename, objectname, securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, generateonclose) +} +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwAdjustGroupsToken(tokenhandle: P0, resettodefault: P1, newstate: Option<*const super::super::super::Win32::Security::TOKEN_GROUPS>, bufferlength: u32, previousstate: Option<*mut super::super::super::Win32::Security::TOKEN_GROUPS>, returnlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwAdjustGroupsToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, resettodefault : super::super::super::Win32::Foundation:: BOOLEAN, newstate : *const super::super::super::Win32::Security:: TOKEN_GROUPS, bufferlength : u32, previousstate : *mut super::super::super::Win32::Security:: TOKEN_GROUPS, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwAdjustGroupsToken(tokenhandle.param().abi(), resettodefault.param().abi(), core::mem::transmute(newstate.unwrap_or(std::ptr::null())), bufferlength, core::mem::transmute(previousstate.unwrap_or(std::ptr::null_mut())), returnlength) +} +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwAdjustPrivilegesToken(tokenhandle: P0, disableallprivileges: P1, newstate: Option<*const super::super::super::Win32::Security::TOKEN_PRIVILEGES>, bufferlength: u32, previousstate: Option<*mut super::super::super::Win32::Security::TOKEN_PRIVILEGES>, returnlength: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwAdjustPrivilegesToken(tokenhandle : super::super::super::Win32::Foundation:: HANDLE, disableallprivileges : super::super::super::Win32::Foundation:: BOOLEAN, newstate : *const super::super::super::Win32::Security:: TOKEN_PRIVILEGES, bufferlength : u32, previousstate : *mut super::super::super::Win32::Security:: TOKEN_PRIVILEGES, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwAdjustPrivilegesToken(tokenhandle.param().abi(), disableallprivileges.param().abi(), core::mem::transmute(newstate.unwrap_or(std::ptr::null())), bufferlength, core::mem::transmute(previousstate.unwrap_or(std::ptr::null_mut())), core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut()))) +} #[inline] pub unsafe fn ZwAllocateVirtualMemory(processhandle: P0, baseaddress: *mut *mut core::ffi::c_void, zerobits: usize, regionsize: *mut usize, allocationtype: u32, protect: u32) -> super::super::super::Win32::Foundation::NTSTATUS where @@ -4206,6 +4465,29 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwAllocateVirtualMemoryEx(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, regionsize : *mut usize, allocationtype : u32, pageprotection : u32, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwAllocateVirtualMemoryEx(processhandle.param().abi(), baseaddress, regionsize, allocationtype, pageprotection, core::mem::transmute(extendedparameters.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), extendedparameters.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } +#[cfg(feature = "Win32_System_IO")] +#[inline] +pub unsafe fn ZwCancelIoFileEx(filehandle: P0, iorequesttocancel: Option<*const super::super::super::Win32::System::IO::IO_STATUS_BLOCK>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwCancelIoFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, iorequesttocancel : *const super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCancelIoFileEx(filehandle.param().abi(), core::mem::transmute(iorequesttocancel.unwrap_or(std::ptr::null())), iostatusblock) +} +#[inline] +pub unsafe fn ZwCloseObjectAuditAlarm(subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, handleid: Option<*const core::ffi::c_void>, generateonclose: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwCloseObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCloseObjectAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), generateonclose.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwCreateDirectoryObject(directoryhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwCreateDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCreateDirectoryObject(directoryhandle, desiredaccess, objectattributes) +} #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] #[inline] pub unsafe fn ZwCreateEvent(eventhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, eventtype: super::super::super::Win32::System::Kernel::EVENT_TYPE, initialstate: P0) -> super::super::super::Win32::Foundation::NTSTATUS @@ -4215,6 +4497,15 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwCreateEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, eventtype : super::super::super::Win32::System::Kernel:: EVENT_TYPE, initialstate : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwCreateEvent(eventhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), eventtype, initialstate.param().abi()) } +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Memory"))] +#[inline] +pub unsafe fn ZwCreateSectionEx(sectionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, maximumsize: Option<*const i64>, sectionpageprotection: u32, allocationattributes: u32, filehandle: P0, extendedparameters: Option<&mut [super::super::super::Win32::System::Memory::MEM_EXTENDED_PARAMETER]>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwCreateSectionEx(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, maximumsize : *const i64, sectionpageprotection : u32, allocationattributes : u32, filehandle : super::super::super::Win32::Foundation:: HANDLE, extendedparameters : *mut super::super::super::Win32::System::Memory:: MEM_EXTENDED_PARAMETER, extendedparametercount : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCreateSectionEx(sectionhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), core::mem::transmute(maximumsize.unwrap_or(std::ptr::null())), sectionpageprotection, allocationattributes, filehandle.param().abi(), core::mem::transmute(extendedparameters.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), extendedparameters.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) +} #[cfg(feature = "Wdk_Foundation")] #[inline] pub unsafe fn ZwDeleteFile(objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { @@ -4222,6 +4513,14 @@ pub unsafe fn ZwDeleteFile(objectattributes: *const super::super::Foundation::OB ZwDeleteFile(objectattributes) } #[inline] +pub unsafe fn ZwDeleteObjectAuditAlarm(subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, handleid: Option<*const core::ffi::c_void>, generateonclose: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwDeleteObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, generateonclose : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwDeleteObjectAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), generateonclose.param().abi()) +} +#[inline] pub unsafe fn ZwDuplicateObject(sourceprocesshandle: P0, sourcehandle: P1, targetprocesshandle: P2, targethandle: Option<*mut super::super::super::Win32::Foundation::HANDLE>, desiredaccess: u32, handleattributes: u32, options: u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -4241,6 +4540,15 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwDuplicateToken(existingtokenhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, effectiveonly : super::super::super::Win32::Foundation:: BOOLEAN, tokentype : super::super::super::Win32::Security:: TOKEN_TYPE, newtokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwDuplicateToken(existingtokenhandle.param().abi(), desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), effectiveonly.param().abi(), tokentype, newtokenhandle) } +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwFilterToken(existingtokenhandle: P0, flags: u32, sidstodisable: Option<*const super::super::super::Win32::Security::TOKEN_GROUPS>, privilegestodelete: Option<*const super::super::super::Win32::Security::TOKEN_PRIVILEGES>, restrictedsids: Option<*const super::super::super::Win32::Security::TOKEN_GROUPS>, newtokenhandle: *mut super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwFilterToken(existingtokenhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32, sidstodisable : *const super::super::super::Win32::Security:: TOKEN_GROUPS, privilegestodelete : *const super::super::super::Win32::Security:: TOKEN_PRIVILEGES, restrictedsids : *const super::super::super::Win32::Security:: TOKEN_GROUPS, newtokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwFilterToken(existingtokenhandle.param().abi(), flags, core::mem::transmute(sidstodisable.unwrap_or(std::ptr::null())), core::mem::transmute(privilegestodelete.unwrap_or(std::ptr::null())), core::mem::transmute(restrictedsids.unwrap_or(std::ptr::null())), newtokenhandle) +} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn ZwFlushBuffersFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK) -> super::super::super::Win32::Foundation::NTSTATUS @@ -4286,6 +4594,14 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwFsControlFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fscontrolcode : u32, inputbuffer : *const core::ffi::c_void, inputbufferlength : u32, outputbuffer : *mut core::ffi::c_void, outputbufferlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwFsControlFile(filehandle.param().abi(), event.param().abi(), apcroutine, core::mem::transmute(apccontext.unwrap_or(std::ptr::null())), iostatusblock, fscontrolcode, core::mem::transmute(inputbuffer.unwrap_or(std::ptr::null())), inputbufferlength, core::mem::transmute(outputbuffer.unwrap_or(std::ptr::null_mut())), outputbufferlength) } +#[inline] +pub unsafe fn ZwImpersonateAnonymousToken(threadhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwImpersonateAnonymousToken(threadhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwImpersonateAnonymousToken(threadhandle.param().abi()) +} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn ZwLockFile(filehandle: P0, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, byteoffset: *const i64, length: *const i64, key: u32, failimmediately: P2, exclusivelock: P3) -> super::super::super::Win32::Foundation::NTSTATUS @@ -4316,6 +4632,26 @@ pub unsafe fn ZwOpenDirectoryObject(directoryhandle: *mut super::super::super::W windows_targets::link!("ntdll.dll" "system" fn ZwOpenDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwOpenDirectoryObject(directoryhandle, desiredaccess, objectattributes) } +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwOpenObjectAuditAlarm(subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, handleid: Option<*const core::ffi::c_void>, objecttypename: *const super::super::super::Win32::Foundation::UNICODE_STRING, objectname: *const super::super::super::Win32::Foundation::UNICODE_STRING, securitydescriptor: P0, clienttoken: P1, desiredaccess: u32, grantedaccess: u32, privileges: Option<*const super::super::super::Win32::Security::PRIVILEGE_SET>, objectcreation: P2, accessgranted: P3, generateonclose: *mut super::super::super::Win32::Foundation::BOOLEAN) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwOpenObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, objecttypename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, objectname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, securitydescriptor : super::super::super::Win32::Security:: PSECURITY_DESCRIPTOR, clienttoken : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, grantedaccess : u32, privileges : *const super::super::super::Win32::Security:: PRIVILEGE_SET, objectcreation : super::super::super::Win32::Foundation:: BOOLEAN, accessgranted : super::super::super::Win32::Foundation:: BOOLEAN, generateonclose : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenObjectAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), objecttypename, objectname, securitydescriptor.param().abi(), clienttoken.param().abi(), desiredaccess, grantedaccess, core::mem::transmute(privileges.unwrap_or(std::ptr::null())), objectcreation.param().abi(), accessgranted.param().abi(), generateonclose) +} +#[inline] +pub unsafe fn ZwOpenProcessToken(processhandle: P0, desiredaccess: u32, tokenhandle: *mut super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwOpenProcessToken(processhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenProcessToken(processhandle.param().abi(), desiredaccess, tokenhandle) +} #[inline] pub unsafe fn ZwOpenProcessTokenEx(processhandle: P0, desiredaccess: u32, handleattributes: u32, tokenhandle: *mut super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where @@ -4325,6 +4661,15 @@ where ZwOpenProcessTokenEx(processhandle.param().abi(), desiredaccess, handleattributes, tokenhandle) } #[inline] +pub unsafe fn ZwOpenThreadToken(threadhandle: P0, desiredaccess: u32, openasself: P1, tokenhandle: *mut super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwOpenThreadToken(threadhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, openasself : super::super::super::Win32::Foundation:: BOOLEAN, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenThreadToken(threadhandle.param().abi(), desiredaccess, openasself.param().abi(), tokenhandle) +} +#[inline] pub unsafe fn ZwOpenThreadTokenEx(threadhandle: P0, desiredaccess: u32, openasself: P1, handleattributes: u32, tokenhandle: *mut super::super::super::Win32::Foundation::HANDLE) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -4333,6 +4678,35 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwOpenThreadTokenEx(threadhandle : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, openasself : super::super::super::Win32::Foundation:: BOOLEAN, handleattributes : u32, tokenhandle : *mut super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwOpenThreadTokenEx(threadhandle.param().abi(), desiredaccess, openasself.param().abi(), handleattributes, tokenhandle) } +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwPrivilegeCheck(clienttoken: P0, requiredprivileges: *mut super::super::super::Win32::Security::PRIVILEGE_SET, result: *mut super::super::super::Win32::Foundation::BOOLEAN) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwPrivilegeCheck(clienttoken : super::super::super::Win32::Foundation:: HANDLE, requiredprivileges : *mut super::super::super::Win32::Security:: PRIVILEGE_SET, result : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwPrivilegeCheck(clienttoken.param().abi(), requiredprivileges, result) +} +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwPrivilegeObjectAuditAlarm(subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, handleid: Option<*const core::ffi::c_void>, clienttoken: P0, desiredaccess: u32, privileges: *const super::super::super::Win32::Security::PRIVILEGE_SET, accessgranted: P1) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwPrivilegeObjectAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, handleid : *const core::ffi::c_void, clienttoken : super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, privileges : *const super::super::super::Win32::Security:: PRIVILEGE_SET, accessgranted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwPrivilegeObjectAuditAlarm(subsystemname, core::mem::transmute(handleid.unwrap_or(std::ptr::null())), clienttoken.param().abi(), desiredaccess, privileges, accessgranted.param().abi()) +} +#[cfg(feature = "Win32_Security")] +#[inline] +pub unsafe fn ZwPrivilegedServiceAuditAlarm(subsystemname: *const super::super::super::Win32::Foundation::UNICODE_STRING, servicename: *const super::super::super::Win32::Foundation::UNICODE_STRING, clienttoken: P0, privileges: *const super::super::super::Win32::Security::PRIVILEGE_SET, accessgranted: P1) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwPrivilegedServiceAuditAlarm(subsystemname : *const super::super::super::Win32::Foundation:: UNICODE_STRING, servicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, clienttoken : super::super::super::Win32::Foundation:: HANDLE, privileges : *const super::super::super::Win32::Security:: PRIVILEGE_SET, accessgranted : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwPrivilegedServiceAuditAlarm(subsystemname, servicename, clienttoken.param().abi(), privileges, accessgranted.param().abi()) +} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn ZwQueryDirectoryFile(filehandle: P0, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, fileinformation: *mut core::ffi::c_void, length: u32, fileinformationclass: FILE_INFORMATION_CLASS, returnsingleentry: P2, filename: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>, restartscan: P3) -> super::super::super::Win32::Foundation::NTSTATUS @@ -4355,6 +4729,16 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwQueryDirectoryFileEx(filehandle : super::super::super::Win32::Foundation:: HANDLE, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, fileinformation : *mut core::ffi::c_void, length : u32, fileinformationclass : FILE_INFORMATION_CLASS, queryflags : u32, filename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwQueryDirectoryFileEx(filehandle.param().abi(), event.param().abi(), apcroutine, core::mem::transmute(apccontext.unwrap_or(std::ptr::null())), iostatusblock, fileinformation, length, fileinformationclass, queryflags, core::mem::transmute(filename.unwrap_or(std::ptr::null()))) } +#[inline] +pub unsafe fn ZwQueryDirectoryObject(directoryhandle: P0, buffer: Option<*mut core::ffi::c_void>, length: u32, returnsingleentry: P1, restartscan: P2, context: *mut u32, returnlength: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwQueryDirectoryObject(directoryhandle : super::super::super::Win32::Foundation:: HANDLE, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, restartscan : super::super::super::Win32::Foundation:: BOOLEAN, context : *mut u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQueryDirectoryObject(directoryhandle.param().abi(), core::mem::transmute(buffer.unwrap_or(std::ptr::null_mut())), length, returnsingleentry.param().abi(), restartscan.param().abi(), context, core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut()))) +} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn ZwQueryEaFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, buffer: *mut core::ffi::c_void, length: u32, returnsingleentry: P1, ealist: Option<*const core::ffi::c_void>, ealistlength: u32, eaindex: Option<*const u32>, restartscan: P2) -> super::super::super::Win32::Foundation::NTSTATUS @@ -4390,16 +4774,16 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwQueryObject(handle : super::super::super::Win32::Foundation:: HANDLE, objectinformationclass : super::super::Foundation:: OBJECT_INFORMATION_CLASS, objectinformation : *mut core::ffi::c_void, objectinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwQueryObject(handle.param().abi(), objectinformationclass, core::mem::transmute(objectinformation.unwrap_or(std::ptr::null_mut())), objectinformationlength, core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_System_IO")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_IO"))] #[inline] pub unsafe fn ZwQueryQuotaInformationFile(filehandle: P0, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, buffer: *mut core::ffi::c_void, length: u32, returnsingleentry: P1, sidlist: Option<*const core::ffi::c_void>, sidlistlength: u32, startsid: P2, restartscan: P3) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, P1: windows_core::Param, - P2: windows_core::Param, + P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn ZwQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Foundation:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn ZwQueryQuotaInformationFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, buffer : *mut core::ffi::c_void, length : u32, returnsingleentry : super::super::super::Win32::Foundation:: BOOLEAN, sidlist : *const core::ffi::c_void, sidlistlength : u32, startsid : super::super::super::Win32::Security:: PSID, restartscan : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwQueryQuotaInformationFile(filehandle.param().abi(), iostatusblock, buffer, length, returnsingleentry.param().abi(), core::mem::transmute(sidlist.unwrap_or(std::ptr::null())), sidlistlength, startsid.param().abi(), restartscan.param().abi()) } #[cfg(feature = "Win32_Security")] @@ -4499,15 +4883,6 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwUnlockFile(filehandle : super::super::super::Win32::Foundation:: HANDLE, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, byteoffset : *const i64, length : *const i64, key : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwUnlockFile(filehandle.param().abi(), iostatusblock, byteoffset, length, key) } -#[inline] -pub unsafe fn ZwWaitForSingleObject(handle: P0, alertable: P1, timeout: Option<*const i64>) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, - P1: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwWaitForSingleObject(handle : super::super::super::Win32::Foundation:: HANDLE, alertable : super::super::super::Win32::Foundation:: BOOLEAN, timeout : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwWaitForSingleObject(handle.param().abi(), alertable.param().abi(), core::mem::transmute(timeout.unwrap_or(std::ptr::null()))) -} pub const ATOMIC_CREATE_ECP_IN_FLAG_BEST_EFFORT: u32 = 256u32; pub const ATOMIC_CREATE_ECP_IN_FLAG_EOF_SPECIFIED: u32 = 4u32; pub const ATOMIC_CREATE_ECP_IN_FLAG_FILE_ATTRIBUTES_SPECIFIED: u32 = 32u32; @@ -8704,7 +9079,7 @@ impl Default for MSV1_0_GETUSERINFO_REQUEST { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct MSV1_0_GETUSERINFO_RESPONSE { pub MessageType: super::super::super::Win32::Security::Authentication::Identity::MSV1_0_PROTOCOL_MESSAGE_TYPE, - pub UserSid: super::super::super::Win32::Foundation::PSID, + pub UserSid: super::super::super::Win32::Security::PSID, pub UserName: super::super::super::Win32::Foundation::UNICODE_STRING, pub LogonDomainName: super::super::super::Win32::Foundation::UNICODE_STRING, pub LogonServer: super::super::super::Win32::Foundation::UNICODE_STRING, @@ -10089,6 +10464,7 @@ impl Default for SE_AUDIT_INFO { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct SE_EXPORTS { pub SeCreateTokenPrivilege: super::super::super::Win32::Foundation::LUID, @@ -10114,33 +10490,33 @@ pub struct SE_EXPORTS { pub SeSystemEnvironmentPrivilege: super::super::super::Win32::Foundation::LUID, pub SeChangeNotifyPrivilege: super::super::super::Win32::Foundation::LUID, pub SeRemoteShutdownPrivilege: super::super::super::Win32::Foundation::LUID, - pub SeNullSid: super::super::super::Win32::Foundation::PSID, - pub SeWorldSid: super::super::super::Win32::Foundation::PSID, - pub SeLocalSid: super::super::super::Win32::Foundation::PSID, - pub SeCreatorOwnerSid: super::super::super::Win32::Foundation::PSID, - pub SeCreatorGroupSid: super::super::super::Win32::Foundation::PSID, - pub SeNtAuthoritySid: super::super::super::Win32::Foundation::PSID, - pub SeDialupSid: super::super::super::Win32::Foundation::PSID, - pub SeNetworkSid: super::super::super::Win32::Foundation::PSID, - pub SeBatchSid: super::super::super::Win32::Foundation::PSID, - pub SeInteractiveSid: super::super::super::Win32::Foundation::PSID, - pub SeLocalSystemSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasAdminsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasUsersSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasGuestsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasPowerUsersSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasAccountOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasSystemOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasPrintOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAliasBackupOpsSid: super::super::super::Win32::Foundation::PSID, - pub SeAuthenticatedUsersSid: super::super::super::Win32::Foundation::PSID, - pub SeRestrictedSid: super::super::super::Win32::Foundation::PSID, - pub SeAnonymousLogonSid: super::super::super::Win32::Foundation::PSID, + pub SeNullSid: super::super::super::Win32::Security::PSID, + pub SeWorldSid: super::super::super::Win32::Security::PSID, + pub SeLocalSid: super::super::super::Win32::Security::PSID, + pub SeCreatorOwnerSid: super::super::super::Win32::Security::PSID, + pub SeCreatorGroupSid: super::super::super::Win32::Security::PSID, + pub SeNtAuthoritySid: super::super::super::Win32::Security::PSID, + pub SeDialupSid: super::super::super::Win32::Security::PSID, + pub SeNetworkSid: super::super::super::Win32::Security::PSID, + pub SeBatchSid: super::super::super::Win32::Security::PSID, + pub SeInteractiveSid: super::super::super::Win32::Security::PSID, + pub SeLocalSystemSid: super::super::super::Win32::Security::PSID, + pub SeAliasAdminsSid: super::super::super::Win32::Security::PSID, + pub SeAliasUsersSid: super::super::super::Win32::Security::PSID, + pub SeAliasGuestsSid: super::super::super::Win32::Security::PSID, + pub SeAliasPowerUsersSid: super::super::super::Win32::Security::PSID, + pub SeAliasAccountOpsSid: super::super::super::Win32::Security::PSID, + pub SeAliasSystemOpsSid: super::super::super::Win32::Security::PSID, + pub SeAliasPrintOpsSid: super::super::super::Win32::Security::PSID, + pub SeAliasBackupOpsSid: super::super::super::Win32::Security::PSID, + pub SeAuthenticatedUsersSid: super::super::super::Win32::Security::PSID, + pub SeRestrictedSid: super::super::super::Win32::Security::PSID, + pub SeAnonymousLogonSid: super::super::super::Win32::Security::PSID, pub SeUndockPrivilege: super::super::super::Win32::Foundation::LUID, pub SeSyncAgentPrivilege: super::super::super::Win32::Foundation::LUID, pub SeEnableDelegationPrivilege: super::super::super::Win32::Foundation::LUID, - pub SeLocalServiceSid: super::super::super::Win32::Foundation::PSID, - pub SeNetworkServiceSid: super::super::super::Win32::Foundation::PSID, + pub SeLocalServiceSid: super::super::super::Win32::Security::PSID, + pub SeNetworkServiceSid: super::super::super::Win32::Security::PSID, pub SeManageVolumePrivilege: super::super::super::Win32::Foundation::LUID, pub SeImpersonatePrivilege: super::super::super::Win32::Foundation::LUID, pub SeCreateGlobalPrivilege: super::super::super::Win32::Foundation::LUID, @@ -10149,25 +10525,27 @@ pub struct SE_EXPORTS { pub SeIncreaseWorkingSetPrivilege: super::super::super::Win32::Foundation::LUID, pub SeTimeZonePrivilege: super::super::super::Win32::Foundation::LUID, pub SeCreateSymbolicLinkPrivilege: super::super::super::Win32::Foundation::LUID, - pub SeIUserSid: super::super::super::Win32::Foundation::PSID, - pub SeUntrustedMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeLowMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeMediumMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeHighMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeSystemMandatorySid: super::super::super::Win32::Foundation::PSID, - pub SeOwnerRightsSid: super::super::super::Win32::Foundation::PSID, - pub SeAllAppPackagesSid: super::super::super::Win32::Foundation::PSID, - pub SeUserModeDriversSid: super::super::super::Win32::Foundation::PSID, - pub SeProcTrustWinTcbSid: super::super::super::Win32::Foundation::PSID, - pub SeTrustedInstallerSid: super::super::super::Win32::Foundation::PSID, + pub SeIUserSid: super::super::super::Win32::Security::PSID, + pub SeUntrustedMandatorySid: super::super::super::Win32::Security::PSID, + pub SeLowMandatorySid: super::super::super::Win32::Security::PSID, + pub SeMediumMandatorySid: super::super::super::Win32::Security::PSID, + pub SeHighMandatorySid: super::super::super::Win32::Security::PSID, + pub SeSystemMandatorySid: super::super::super::Win32::Security::PSID, + pub SeOwnerRightsSid: super::super::super::Win32::Security::PSID, + pub SeAllAppPackagesSid: super::super::super::Win32::Security::PSID, + pub SeUserModeDriversSid: super::super::super::Win32::Security::PSID, + pub SeProcTrustWinTcbSid: super::super::super::Win32::Security::PSID, + pub SeTrustedInstallerSid: super::super::super::Win32::Security::PSID, pub SeDelegateSessionUserImpersonatePrivilege: super::super::super::Win32::Foundation::LUID, - pub SeAppSiloSid: super::super::super::Win32::Foundation::PSID, - pub SeAppSiloVolumeRootMinimalCapabilitySid: super::super::super::Win32::Foundation::PSID, - pub SeAppSiloProfilesRootMinimalCapabilitySid: super::super::super::Win32::Foundation::PSID, + pub SeAppSiloSid: super::super::super::Win32::Security::PSID, + pub SeAppSiloVolumeRootMinimalCapabilitySid: super::super::super::Win32::Security::PSID, + pub SeAppSiloProfilesRootMinimalCapabilitySid: super::super::super::Win32::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for SE_EXPORTS { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for SE_EXPORTS { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Wdk/System/Memory/mod.rs b/crates/libs/windows/src/Windows/Wdk/System/Memory/mod.rs new file mode 100644 index 0000000000..965e84326c --- /dev/null +++ b/crates/libs/windows/src/Windows/Wdk/System/Memory/mod.rs @@ -0,0 +1,59 @@ +#[inline] +pub unsafe fn NtMapViewOfSection(sectionhandle: P0, processhandle: P1, baseaddress: *mut *mut core::ffi::c_void, zerobits: usize, commitsize: usize, sectionoffset: Option<*mut i64>, viewsize: *mut usize, inheritdisposition: SECTION_INHERIT, allocationtype: u32, win32protect: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtMapViewOfSection(sectionhandle : super::super::super::Win32::Foundation:: HANDLE, processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, commitsize : usize, sectionoffset : *mut i64, viewsize : *mut usize, inheritdisposition : SECTION_INHERIT, allocationtype : u32, win32protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtMapViewOfSection(sectionhandle.param().abi(), processhandle.param().abi(), baseaddress, zerobits, commitsize, core::mem::transmute(sectionoffset.unwrap_or(std::ptr::null_mut())), viewsize, inheritdisposition, allocationtype, win32protect) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenSection(sectionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenSection(sectionhandle, desiredaccess, objectattributes) +} +#[inline] +pub unsafe fn NtUnmapViewOfSection(processhandle: P0, baseaddress: Option<*const core::ffi::c_void>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtUnmapViewOfSection(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtUnmapViewOfSection(processhandle.param().abi(), core::mem::transmute(baseaddress.unwrap_or(std::ptr::null()))) +} +#[inline] +pub unsafe fn ZwMapViewOfSection(sectionhandle: P0, processhandle: P1, baseaddress: *mut *mut core::ffi::c_void, zerobits: usize, commitsize: usize, sectionoffset: Option<*mut i64>, viewsize: *mut usize, inheritdisposition: SECTION_INHERIT, allocationtype: u32, win32protect: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwMapViewOfSection(sectionhandle : super::super::super::Win32::Foundation:: HANDLE, processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, commitsize : usize, sectionoffset : *mut i64, viewsize : *mut usize, inheritdisposition : SECTION_INHERIT, allocationtype : u32, win32protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwMapViewOfSection(sectionhandle.param().abi(), processhandle.param().abi(), baseaddress, zerobits, commitsize, core::mem::transmute(sectionoffset.unwrap_or(std::ptr::null_mut())), viewsize, inheritdisposition, allocationtype, win32protect) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenSection(sectionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwOpenSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenSection(sectionhandle, desiredaccess, objectattributes) +} +#[inline] +pub unsafe fn ZwUnmapViewOfSection(processhandle: P0, baseaddress: Option<*const core::ffi::c_void>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwUnmapViewOfSection(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwUnmapViewOfSection(processhandle.param().abi(), core::mem::transmute(baseaddress.unwrap_or(std::ptr::null()))) +} +pub const ViewShare: SECTION_INHERIT = SECTION_INHERIT(1i32); +pub const ViewUnmap: SECTION_INHERIT = SECTION_INHERIT(2i32); +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct SECTION_INHERIT(pub i32); +impl windows_core::TypeKind for SECTION_INHERIT { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for SECTION_INHERIT { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("SECTION_INHERIT").field(&self.0).finish() + } +} diff --git a/crates/libs/windows/src/Windows/Wdk/System/OfflineRegistry/mod.rs b/crates/libs/windows/src/Windows/Wdk/System/OfflineRegistry/mod.rs index 685780a7dd..343223133b 100644 --- a/crates/libs/windows/src/Windows/Wdk/System/OfflineRegistry/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/System/OfflineRegistry/mod.rs @@ -204,13 +204,14 @@ pub unsafe fn ORStart() -> super::super::super::Win32::Foundation::WIN32_ERROR { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct ORHKEY(pub isize); +pub struct ORHKEY(pub *mut core::ffi::c_void); impl ORHKEY { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for ORHKEY { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = ORCloseKey(*self); diff --git a/crates/libs/windows/src/Windows/Wdk/System/Registry/mod.rs b/crates/libs/windows/src/Windows/Wdk/System/Registry/mod.rs index 473c22734e..cf627b63c8 100644 --- a/crates/libs/windows/src/Windows/Wdk/System/Registry/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/System/Registry/mod.rs @@ -1,3 +1,72 @@ +#[inline] +pub unsafe fn NtCommitRegistryTransaction(transactionhandle: P0, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtCommitRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCommitRegistryTransaction(transactionhandle.param().abi(), flags) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtCreateKey(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, titleindex: u32, class: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>, createoptions: u32, disposition: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtCreateKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCreateKey(keyhandle, desiredaccess, objectattributes, titleindex, core::mem::transmute(class.unwrap_or(std::ptr::null())), createoptions, core::mem::transmute(disposition.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtCreateKeyTransacted(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, titleindex: u32, class: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>, createoptions: u32, transactionhandle: P0, disposition: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtCreateKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCreateKeyTransacted(keyhandle, desiredaccess, objectattributes, titleindex, core::mem::transmute(class.unwrap_or(std::ptr::null())), createoptions, transactionhandle.param().abi(), core::mem::transmute(disposition.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtCreateRegistryTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, createoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtCreateRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCreateRegistryTransaction(transactionhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), createoptions) +} +#[inline] +pub unsafe fn NtDeleteKey(keyhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtDeleteKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtDeleteKey(keyhandle.param().abi()) +} +#[inline] +pub unsafe fn NtDeleteValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtDeleteValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtDeleteValueKey(keyhandle.param().abi(), valuename) +} +#[inline] +pub unsafe fn NtEnumerateKey(keyhandle: P0, index: u32, keyinformationclass: KEY_INFORMATION_CLASS, keyinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtEnumerateKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtEnumerateKey(keyhandle.param().abi(), index, keyinformationclass, core::mem::transmute(keyinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} +#[inline] +pub unsafe fn NtEnumerateValueKey(keyhandle: P0, index: u32, keyvalueinformationclass: KEY_VALUE_INFORMATION_CLASS, keyvalueinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtEnumerateValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtEnumerateValueKey(keyhandle.param().abi(), index, keyvalueinformationclass, core::mem::transmute(keyvalueinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} +#[inline] +pub unsafe fn NtFlushKey(keyhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtFlushKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtFlushKey(keyhandle.param().abi()) +} #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] #[inline] pub unsafe fn NtNotifyChangeMultipleKeys(masterkeyhandle: P0, subordinateobjects: Option<&[super::super::Foundation::OBJECT_ATTRIBUTES]>, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, completionfilter: u32, watchtree: P2, buffer: Option<*mut core::ffi::c_void>, buffersize: u32, asynchronous: P3) -> super::super::super::Win32::Foundation::NTSTATUS @@ -10,6 +79,50 @@ where windows_targets::link!("ntdll.dll" "system" fn NtNotifyChangeMultipleKeys(masterkeyhandle : super::super::super::Win32::Foundation:: HANDLE, count : u32, subordinateobjects : *const super::super::Foundation:: OBJECT_ATTRIBUTES, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, completionfilter : u32, watchtree : super::super::super::Win32::Foundation:: BOOLEAN, buffer : *mut core::ffi::c_void, buffersize : u32, asynchronous : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); NtNotifyChangeMultipleKeys(masterkeyhandle.param().abi(), subordinateobjects.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(subordinateobjects.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), event.param().abi(), apcroutine, core::mem::transmute(apccontext.unwrap_or(std::ptr::null())), iostatusblock, completionfilter, watchtree.param().abi(), core::mem::transmute(buffer.unwrap_or(std::ptr::null_mut())), buffersize, asynchronous.param().abi()) } +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenKey(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenKey(keyhandle, desiredaccess, objectattributes) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenKeyEx(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, openoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenKeyEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenKeyEx(keyhandle, desiredaccess, objectattributes, openoptions) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenKeyTransacted(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, transactionhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtOpenKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenKeyTransacted(keyhandle, desiredaccess, objectattributes, transactionhandle.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenKeyTransactedEx(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, openoptions: u32, transactionhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtOpenKeyTransactedEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenKeyTransactedEx(keyhandle, desiredaccess, objectattributes, openoptions, transactionhandle.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenRegistryTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenRegistryTransaction(transactionhandle, desiredaccess, objectattributes) +} +#[inline] +pub unsafe fn NtQueryKey(keyhandle: P0, keyinformationclass: KEY_INFORMATION_CLASS, keyinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtQueryKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtQueryKey(keyhandle.param().abi(), keyinformationclass, core::mem::transmute(keyinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} #[inline] pub unsafe fn NtQueryMultipleValueKey(keyhandle: P0, valueentries: &mut [KEY_VALUE_ENTRY], valuebuffer: *mut core::ffi::c_void, bufferlength: *mut u32, requiredbufferlength: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS where @@ -19,6 +132,14 @@ where NtQueryMultipleValueKey(keyhandle.param().abi(), core::mem::transmute(valueentries.as_ptr()), valueentries.len().try_into().unwrap(), valuebuffer, bufferlength, core::mem::transmute(requiredbufferlength.unwrap_or(std::ptr::null_mut()))) } #[inline] +pub unsafe fn NtQueryValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING, keyvalueinformationclass: KEY_VALUE_INFORMATION_CLASS, keyvalueinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtQueryValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtQueryValueKey(keyhandle.param().abi(), valuename, keyvalueinformationclass, core::mem::transmute(keyvalueinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} +#[inline] pub unsafe fn NtRenameKey(keyhandle: P0, newname: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -27,6 +148,41 @@ where NtRenameKey(keyhandle.param().abi(), newname) } #[inline] +pub unsafe fn NtRestoreKey(keyhandle: P0, filehandle: P1, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtRestoreKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtRestoreKey(keyhandle.param().abi(), filehandle.param().abi(), flags) +} +#[inline] +pub unsafe fn NtRollbackRegistryTransaction(transactionhandle: P0, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtRollbackRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtRollbackRegistryTransaction(transactionhandle.param().abi(), flags) +} +#[inline] +pub unsafe fn NtSaveKey(keyhandle: P0, filehandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtSaveKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtSaveKey(keyhandle.param().abi(), filehandle.param().abi()) +} +#[inline] +pub unsafe fn NtSaveKeyEx(keyhandle: P0, filehandle: P1, format: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtSaveKeyEx(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, format : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtSaveKeyEx(keyhandle.param().abi(), filehandle.param().abi(), format) +} +#[inline] pub unsafe fn NtSetInformationKey(keyhandle: P0, keysetinformationclass: KEY_SET_INFORMATION_CLASS, keysetinformation: *const core::ffi::c_void, keysetinformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -35,6 +191,198 @@ where NtSetInformationKey(keyhandle.param().abi(), keysetinformationclass, keysetinformation, keysetinformationlength) } #[inline] +pub unsafe fn NtSetValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING, titleindex: u32, r#type: u32, data: Option<*const core::ffi::c_void>, datasize: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtSetValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, titleindex : u32, r#type : u32, data : *const core::ffi::c_void, datasize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtSetValueKey(keyhandle.param().abi(), valuename, titleindex, r#type, core::mem::transmute(data.unwrap_or(std::ptr::null())), datasize) +} +#[inline] +pub unsafe fn ZwCommitRegistryTransaction(transactionhandle: P0, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwCommitRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCommitRegistryTransaction(transactionhandle.param().abi(), flags) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwCreateKey(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, titleindex: u32, class: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>, createoptions: u32, disposition: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwCreateKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCreateKey(keyhandle, desiredaccess, objectattributes, titleindex, core::mem::transmute(class.unwrap_or(std::ptr::null())), createoptions, core::mem::transmute(disposition.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwCreateKeyTransacted(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, titleindex: u32, class: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>, createoptions: u32, transactionhandle: P0, disposition: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwCreateKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCreateKeyTransacted(keyhandle, desiredaccess, objectattributes, titleindex, core::mem::transmute(class.unwrap_or(std::ptr::null())), createoptions, transactionhandle.param().abi(), core::mem::transmute(disposition.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwCreateRegistryTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, createoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwCreateRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCreateRegistryTransaction(transactionhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), createoptions) +} +#[inline] +pub unsafe fn ZwDeleteKey(keyhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwDeleteKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwDeleteKey(keyhandle.param().abi()) +} +#[inline] +pub unsafe fn ZwDeleteValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwDeleteValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwDeleteValueKey(keyhandle.param().abi(), valuename) +} +#[inline] +pub unsafe fn ZwEnumerateKey(keyhandle: P0, index: u32, keyinformationclass: KEY_INFORMATION_CLASS, keyinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwEnumerateKey(keyhandle.param().abi(), index, keyinformationclass, core::mem::transmute(keyinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} +#[inline] +pub unsafe fn ZwEnumerateValueKey(keyhandle: P0, index: u32, keyvalueinformationclass: KEY_VALUE_INFORMATION_CLASS, keyvalueinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwEnumerateValueKey(keyhandle.param().abi(), index, keyvalueinformationclass, core::mem::transmute(keyvalueinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} +#[inline] +pub unsafe fn ZwFlushKey(keyhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwFlushKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwFlushKey(keyhandle.param().abi()) +} +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] +#[inline] +pub unsafe fn ZwNotifyChangeMultipleKeys(masterkeyhandle: P0, subordinateobjects: Option<&[super::super::Foundation::OBJECT_ATTRIBUTES]>, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, completionfilter: u32, watchtree: P2, buffer: Option<*mut core::ffi::c_void>, buffersize: u32, asynchronous: P3) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwNotifyChangeMultipleKeys(masterkeyhandle : super::super::super::Win32::Foundation:: HANDLE, count : u32, subordinateobjects : *const super::super::Foundation:: OBJECT_ATTRIBUTES, event : super::super::super::Win32::Foundation:: HANDLE, apcroutine : super::super::super::Win32::System::IO:: PIO_APC_ROUTINE, apccontext : *const core::ffi::c_void, iostatusblock : *mut super::super::super::Win32::System::IO:: IO_STATUS_BLOCK, completionfilter : u32, watchtree : super::super::super::Win32::Foundation:: BOOLEAN, buffer : *mut core::ffi::c_void, buffersize : u32, asynchronous : super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwNotifyChangeMultipleKeys(masterkeyhandle.param().abi(), subordinateobjects.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(subordinateobjects.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), event.param().abi(), apcroutine, core::mem::transmute(apccontext.unwrap_or(std::ptr::null())), iostatusblock, completionfilter, watchtree.param().abi(), core::mem::transmute(buffer.unwrap_or(std::ptr::null_mut())), buffersize, asynchronous.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenKey(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwOpenKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenKey(keyhandle, desiredaccess, objectattributes) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenKeyEx(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, openoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenKeyEx(keyhandle, desiredaccess, objectattributes, openoptions) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenKeyTransacted(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, transactionhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenKeyTransacted(keyhandle, desiredaccess, objectattributes, transactionhandle.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenKeyTransactedEx(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, openoptions: u32, transactionhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransactedEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenKeyTransactedEx(keyhandle, desiredaccess, objectattributes, openoptions, transactionhandle.param().abi()) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenRegistryTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwOpenRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenRegistryTransaction(transactionhandle, desiredaccess, objectattributes) +} +#[inline] +pub unsafe fn ZwQueryKey(keyhandle: P0, keyinformationclass: KEY_INFORMATION_CLASS, keyinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwQueryKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQueryKey(keyhandle.param().abi(), keyinformationclass, core::mem::transmute(keyinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} +#[inline] +pub unsafe fn ZwQueryMultipleValueKey(keyhandle: P0, valueentries: &mut [KEY_VALUE_ENTRY], valuebuffer: *mut core::ffi::c_void, bufferlength: *mut u32, requiredbufferlength: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwQueryMultipleValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valueentries : *mut KEY_VALUE_ENTRY, entrycount : u32, valuebuffer : *mut core::ffi::c_void, bufferlength : *mut u32, requiredbufferlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQueryMultipleValueKey(keyhandle.param().abi(), core::mem::transmute(valueentries.as_ptr()), valueentries.len().try_into().unwrap(), valuebuffer, bufferlength, core::mem::transmute(requiredbufferlength.unwrap_or(std::ptr::null_mut()))) +} +#[inline] +pub unsafe fn ZwQueryValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING, keyvalueinformationclass: KEY_VALUE_INFORMATION_CLASS, keyvalueinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwQueryValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQueryValueKey(keyhandle.param().abi(), valuename, keyvalueinformationclass, core::mem::transmute(keyvalueinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) +} +#[inline] +pub unsafe fn ZwRenameKey(keyhandle: P0, newname: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwRenameKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, newname : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwRenameKey(keyhandle.param().abi(), newname) +} +#[inline] +pub unsafe fn ZwRestoreKey(keyhandle: P0, filehandle: P1, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwRestoreKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwRestoreKey(keyhandle.param().abi(), filehandle.param().abi(), flags) +} +#[inline] +pub unsafe fn ZwRollbackRegistryTransaction(transactionhandle: P0, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwRollbackRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwRollbackRegistryTransaction(transactionhandle.param().abi(), flags) +} +#[inline] +pub unsafe fn ZwSaveKey(keyhandle: P0, filehandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwSaveKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwSaveKey(keyhandle.param().abi(), filehandle.param().abi()) +} +#[inline] +pub unsafe fn ZwSaveKeyEx(keyhandle: P0, filehandle: P1, format: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwSaveKeyEx(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, format : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwSaveKeyEx(keyhandle.param().abi(), filehandle.param().abi(), format) +} +#[inline] pub unsafe fn ZwSetInformationKey(keyhandle: P0, keysetinformationclass: KEY_SET_INFORMATION_CLASS, keysetinformation: *const core::ffi::c_void, keysetinformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -42,14 +390,51 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keysetinformationclass : KEY_SET_INFORMATION_CLASS, keysetinformation : *const core::ffi::c_void, keysetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwSetInformationKey(keyhandle.param().abi(), keysetinformationclass, keysetinformation, keysetinformationlength) } +#[inline] +pub unsafe fn ZwSetValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING, titleindex: u32, r#type: u32, data: Option<*const core::ffi::c_void>, datasize: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwSetValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, titleindex : u32, r#type : u32, data : *const core::ffi::c_void, datasize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwSetValueKey(keyhandle.param().abi(), valuename, titleindex, r#type, core::mem::transmute(data.unwrap_or(std::ptr::null())), datasize) +} +pub const KeyBasicInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(0i32); +pub const KeyCachedInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(4i32); pub const KeyControlFlagsInformation: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(2i32); +pub const KeyFlagsInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(5i32); +pub const KeyFullInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(2i32); +pub const KeyHandleTagsInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(7i32); +pub const KeyLayerInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(9i32); +pub const KeyNameInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(3i32); +pub const KeyNodeInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(1i32); pub const KeySetDebugInformation: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(4i32); pub const KeySetHandleTagsInformation: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(5i32); pub const KeySetLayerInformation: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(6i32); pub const KeySetVirtualizationInformation: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(3i32); +pub const KeyTrustInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(8i32); +pub const KeyValueBasicInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(0i32); +pub const KeyValueFullInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(1i32); +pub const KeyValueFullInformationAlign64: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(3i32); +pub const KeyValueLayerInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(5i32); +pub const KeyValuePartialInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(2i32); +pub const KeyValuePartialInformationAlign64: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(4i32); +pub const KeyVirtualizationInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(6i32); pub const KeyWow64FlagsInformation: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(1i32); pub const KeyWriteTimeInformation: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(0i32); +pub const MaxKeyInfoClass: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(10i32); pub const MaxKeySetInfoClass: KEY_SET_INFORMATION_CLASS = KEY_SET_INFORMATION_CLASS(7i32); +pub const MaxKeyValueInfoClass: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(6i32); +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct KEY_INFORMATION_CLASS(pub i32); +impl windows_core::TypeKind for KEY_INFORMATION_CLASS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for KEY_INFORMATION_CLASS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("KEY_INFORMATION_CLASS").field(&self.0).finish() + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct KEY_SET_INFORMATION_CLASS(pub i32); @@ -61,6 +446,17 @@ impl core::fmt::Debug for KEY_SET_INFORMATION_CLASS { f.debug_tuple("KEY_SET_INFORMATION_CLASS").field(&self.0).finish() } } +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct KEY_VALUE_INFORMATION_CLASS(pub i32); +impl windows_core::TypeKind for KEY_VALUE_INFORMATION_CLASS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for KEY_VALUE_INFORMATION_CLASS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("KEY_VALUE_INFORMATION_CLASS").field(&self.0).finish() + } +} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct KEY_VALUE_ENTRY { @@ -79,6 +475,68 @@ impl Default for KEY_VALUE_ENTRY { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct REG_ENUMERATE_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub Index: u32, + pub KeyInformationClass: KEY_INFORMATION_CLASS, + pub KeyInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +impl windows_core::TypeKind for REG_ENUMERATE_KEY_INFORMATION { + type TypeKind = windows_core::CopyType; +} +impl Default for REG_ENUMERATE_KEY_INFORMATION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct REG_ENUMERATE_VALUE_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub Index: u32, + pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, + pub KeyValueInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +impl windows_core::TypeKind for REG_ENUMERATE_VALUE_KEY_INFORMATION { + type TypeKind = windows_core::CopyType; +} +impl Default for REG_ENUMERATE_VALUE_KEY_INFORMATION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct REG_QUERY_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub KeyInformationClass: KEY_INFORMATION_CLASS, + pub KeyInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +impl windows_core::TypeKind for REG_QUERY_KEY_INFORMATION { + type TypeKind = windows_core::CopyType; +} +impl Default for REG_QUERY_KEY_INFORMATION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION { pub Object: *mut core::ffi::c_void, pub ValueEntries: *mut KEY_VALUE_ENTRY, @@ -100,6 +558,27 @@ impl Default for REG_QUERY_MULTIPLE_VALUE_KEY_INFORMATION { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct REG_QUERY_VALUE_KEY_INFORMATION { + pub Object: *mut core::ffi::c_void, + pub ValueName: *mut super::super::super::Win32::Foundation::UNICODE_STRING, + pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, + pub KeyValueInformation: *mut core::ffi::c_void, + pub Length: u32, + pub ResultLength: *mut u32, + pub CallContext: *mut core::ffi::c_void, + pub ObjectContext: *mut core::ffi::c_void, + pub Reserved: *mut core::ffi::c_void, +} +impl windows_core::TypeKind for REG_QUERY_VALUE_KEY_INFORMATION { + type TypeKind = windows_core::CopyType; +} +impl Default for REG_QUERY_VALUE_KEY_INFORMATION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct REG_SET_INFORMATION_KEY_INFORMATION { pub Object: *mut core::ffi::c_void, pub KeySetInformationClass: KEY_SET_INFORMATION_CLASS, diff --git a/crates/libs/windows/src/Windows/Wdk/System/SystemInformation/mod.rs b/crates/libs/windows/src/Windows/Wdk/System/SystemInformation/mod.rs index c0cd88ab18..93a3fedccb 100644 --- a/crates/libs/windows/src/Windows/Wdk/System/SystemInformation/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/System/SystemInformation/mod.rs @@ -13,6 +13,21 @@ pub unsafe fn NtQueryTimerResolution(maximumtime: *mut u32, minimumtime: *mut u3 windows_targets::link!("ntdll.dll" "system" fn NtQueryTimerResolution(maximumtime : *mut u32, minimumtime : *mut u32, currenttime : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); NtQueryTimerResolution(maximumtime, minimumtime, currenttime) } +#[inline] +pub unsafe fn ZwQuerySystemInformation(systeminformationclass: SYSTEM_INFORMATION_CLASS, systeminformation: *mut core::ffi::c_void, systeminformationlength: u32, returnlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwQuerySystemInformation(systeminformationclass : SYSTEM_INFORMATION_CLASS, systeminformation : *mut core::ffi::c_void, systeminformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQuerySystemInformation(systeminformationclass, systeminformation, systeminformationlength, returnlength) +} +#[inline] +pub unsafe fn ZwQuerySystemTime(systemtime: *mut i64) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwQuerySystemTime(systemtime : *mut i64) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQuerySystemTime(systemtime) +} +#[inline] +pub unsafe fn ZwQueryTimerResolution(maximumtime: *mut u32, minimumtime: *mut u32, currenttime: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwQueryTimerResolution(maximumtime : *mut u32, minimumtime : *mut u32, currenttime : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQueryTimerResolution(maximumtime, minimumtime, currenttime) +} pub const SystemBasicInformation: SYSTEM_INFORMATION_CLASS = SYSTEM_INFORMATION_CLASS(0i32); pub const SystemCodeIntegrityInformation: SYSTEM_INFORMATION_CLASS = SYSTEM_INFORMATION_CLASS(103i32); pub const SystemExceptionInformation: SYSTEM_INFORMATION_CLASS = SYSTEM_INFORMATION_CLASS(33i32); diff --git a/crates/libs/windows/src/Windows/Wdk/System/SystemServices/mod.rs b/crates/libs/windows/src/Windows/Wdk/System/SystemServices/mod.rs index 9793dc7250..05db5f3eeb 100644 --- a/crates/libs/windows/src/Windows/Wdk/System/SystemServices/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/System/SystemServices/mod.rs @@ -478,14 +478,21 @@ pub unsafe fn EtwActivityIdControl(controlcode: u32, activityid: *mut windows_co } #[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwEventEnabled(reghandle: u64, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR) -> super::super::super::Win32::Foundation::BOOLEAN { - windows_targets::link!("ntdll.dll" "system" fn EtwEventEnabled(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR) -> super::super::super::Win32::Foundation:: BOOLEAN); - EtwEventEnabled(reghandle, eventdescriptor) +pub unsafe fn EtwEventEnabled(reghandle: P0, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR) -> super::super::super::Win32::Foundation::BOOLEAN +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn EtwEventEnabled(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR) -> super::super::super::Win32::Foundation:: BOOLEAN); + EtwEventEnabled(reghandle.param().abi(), eventdescriptor) } +#[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwProviderEnabled(reghandle: u64, level: u8, keyword: u64) -> super::super::super::Win32::Foundation::BOOLEAN { - windows_targets::link!("ntoskrnl.exe" "system" fn EtwProviderEnabled(reghandle : u64, level : u8, keyword : u64) -> super::super::super::Win32::Foundation:: BOOLEAN); - EtwProviderEnabled(reghandle, level, keyword) +pub unsafe fn EtwProviderEnabled(reghandle: P0, level: u8, keyword: u64) -> super::super::super::Win32::Foundation::BOOLEAN +where + P0: windows_core::Param, +{ + windows_targets::link!("ntoskrnl.exe" "system" fn EtwProviderEnabled(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, level : u8, keyword : u64) -> super::super::super::Win32::Foundation:: BOOLEAN); + EtwProviderEnabled(reghandle.param().abi(), level, keyword) } #[inline] pub unsafe fn EtwRegister(providerid: *const windows_core::GUID, enablecallback: PETWENABLECALLBACK, callbackcontext: Option<*const core::ffi::c_void>, reghandle: *mut u64) -> super::super::super::Win32::Foundation::NTSTATUS { @@ -494,40 +501,58 @@ pub unsafe fn EtwRegister(providerid: *const windows_core::GUID, enablecallback: } #[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwSetInformation(reghandle: u64, informationclass: super::super::super::Win32::System::Diagnostics::Etw::EVENT_INFO_CLASS, eventinformation: Option<*const core::ffi::c_void>, informationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn EtwSetInformation(reghandle : u64, informationclass : super::super::super::Win32::System::Diagnostics::Etw:: EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - EtwSetInformation(reghandle, informationclass, core::mem::transmute(eventinformation.unwrap_or(std::ptr::null())), informationlength) +pub unsafe fn EtwSetInformation(reghandle: P0, informationclass: super::super::super::Win32::System::Diagnostics::Etw::EVENT_INFO_CLASS, eventinformation: Option<*const core::ffi::c_void>, informationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntoskrnl.exe" "system" fn EtwSetInformation(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, informationclass : super::super::super::Win32::System::Diagnostics::Etw:: EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + EtwSetInformation(reghandle.param().abi(), informationclass, core::mem::transmute(eventinformation.unwrap_or(std::ptr::null())), informationlength) } +#[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwUnregister(reghandle: u64) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn EtwUnregister(reghandle : u64) -> super::super::super::Win32::Foundation:: NTSTATUS); - EtwUnregister(reghandle) +pub unsafe fn EtwUnregister(reghandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntoskrnl.exe" "system" fn EtwUnregister(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + EtwUnregister(reghandle.param().abi()) } #[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwWrite(reghandle: u64, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR, activityid: Option<*const windows_core::GUID>, userdata: Option<&[super::super::super::Win32::System::Diagnostics::Etw::EVENT_DATA_DESCRIPTOR]>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn EtwWrite(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); - EtwWrite(reghandle, eventdescriptor, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) +pub unsafe fn EtwWrite(reghandle: P0, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR, activityid: Option<*const windows_core::GUID>, userdata: Option<&[super::super::super::Win32::System::Diagnostics::Etw::EVENT_DATA_DESCRIPTOR]>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntoskrnl.exe" "system" fn EtwWrite(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + EtwWrite(reghandle.param().abi(), eventdescriptor, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) } #[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwWriteEx(reghandle: u64, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR, filter: u64, flags: u32, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[super::super::super::Win32::System::Diagnostics::Etw::EVENT_DATA_DESCRIPTOR]>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteEx(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); - EtwWriteEx(reghandle, eventdescriptor, filter, flags, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) +pub unsafe fn EtwWriteEx(reghandle: P0, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR, filter: u64, flags: u32, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[super::super::super::Win32::System::Diagnostics::Etw::EVENT_DATA_DESCRIPTOR]>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteEx(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + EtwWriteEx(reghandle.param().abi(), eventdescriptor, filter, flags, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) } +#[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwWriteString(reghandle: u64, level: u8, keyword: u64, activityid: Option<*const windows_core::GUID>, string: P0) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn EtwWriteString(reghandle: P0, level: u8, keyword: u64, activityid: Option<*const windows_core::GUID>, string: P1) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteString(reghandle : u64, level : u8, keyword : u64, activityid : *const windows_core::GUID, string : windows_core::PCWSTR) -> super::super::super::Win32::Foundation:: NTSTATUS); - EtwWriteString(reghandle, level, keyword, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), string.param().abi()) + windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteString(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, level : u8, keyword : u64, activityid : *const windows_core::GUID, string : windows_core::PCWSTR) -> super::super::super::Win32::Foundation:: NTSTATUS); + EtwWriteString(reghandle.param().abi(), level, keyword, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), string.param().abi()) } #[cfg(feature = "Win32_System_Diagnostics_Etw")] #[inline] -pub unsafe fn EtwWriteTransfer(reghandle: u64, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[super::super::super::Win32::System::Diagnostics::Etw::EVENT_DATA_DESCRIPTOR]>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteTransfer(reghandle : u64, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); - EtwWriteTransfer(reghandle, eventdescriptor, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) +pub unsafe fn EtwWriteTransfer(reghandle: P0, eventdescriptor: *const super::super::super::Win32::System::Diagnostics::Etw::EVENT_DESCRIPTOR, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[super::super::super::Win32::System::Diagnostics::Etw::EVENT_DATA_DESCRIPTOR]>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntoskrnl.exe" "system" fn EtwWriteTransfer(reghandle : super::super::super::Win32::System::Diagnostics::Etw:: REGHANDLE, eventdescriptor : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DESCRIPTOR, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const super::super::super::Win32::System::Diagnostics::Etw:: EVENT_DATA_DESCRIPTOR) -> super::super::super::Win32::Foundation:: NTSTATUS); + EtwWriteTransfer(reghandle.param().abi(), eventdescriptor, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) } #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] #[inline] @@ -1221,8 +1246,8 @@ pub unsafe fn HalAcquireDisplayOwnership(resetdisplayparameters: PHAL_RESET_DISP } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_Storage_IscsiDisc", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn HalAllocateAdapterChannel(adapterobject: *const super::super::super::Win32::Storage::IscsiDisc::_ADAPTER_OBJECT, wcb: *const WAIT_CONTEXT_BLOCK, numberofmapregisters: u32, executionroutine: *const super::super::Foundation::DRIVER_CONTROL) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("hal.dll" "system" fn HalAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, wcb : *const WAIT_CONTEXT_BLOCK, numberofmapregisters : u32, executionroutine : *const super::super::Foundation:: DRIVER_CONTROL) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn HalAllocateAdapterChannel(adapterobject: *const super::super::super::Win32::Storage::IscsiDisc::_ADAPTER_OBJECT, wcb: *const WAIT_CONTEXT_BLOCK, numberofmapregisters: u32, executionroutine: super::super::Foundation::DRIVER_CONTROL) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("hal.dll" "system" fn HalAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, wcb : *const WAIT_CONTEXT_BLOCK, numberofmapregisters : u32, executionroutine : super::super::Foundation:: DRIVER_CONTROL) -> super::super::super::Win32::Foundation:: NTSTATUS); HalAllocateAdapterChannel(adapterobject, wcb, numberofmapregisters, executionroutine) } #[cfg(feature = "Win32_Storage_IscsiDisc")] @@ -1380,14 +1405,14 @@ where } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_Storage_IscsiDisc", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoAllocateAdapterChannel(adapterobject: *const super::super::super::Win32::Storage::IscsiDisc::_ADAPTER_OBJECT, deviceobject: *const super::super::Foundation::DEVICE_OBJECT, numberofmapregisters: u32, executionroutine: *const super::super::Foundation::DRIVER_CONTROL, context: *const core::ffi::c_void) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, numberofmapregisters : u32, executionroutine : *const super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn IoAllocateAdapterChannel(adapterobject: *const super::super::super::Win32::Storage::IscsiDisc::_ADAPTER_OBJECT, deviceobject: *const super::super::Foundation::DEVICE_OBJECT, numberofmapregisters: u32, executionroutine: super::super::Foundation::DRIVER_CONTROL, context: *const core::ffi::c_void) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateAdapterChannel(adapterobject : *const super::super::super::Win32::Storage::IscsiDisc:: _ADAPTER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, numberofmapregisters : u32, executionroutine : super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); IoAllocateAdapterChannel(adapterobject, deviceobject, numberofmapregisters, executionroutine, context) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoAllocateController(controllerobject: *const CONTROLLER_OBJECT, deviceobject: *const super::super::Foundation::DEVICE_OBJECT, executionroutine: *const super::super::Foundation::DRIVER_CONTROL, context: Option<*const core::ffi::c_void>) { - windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateController(controllerobject : *const CONTROLLER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, executionroutine : *const super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void)); +pub unsafe fn IoAllocateController(controllerobject: *const CONTROLLER_OBJECT, deviceobject: *const super::super::Foundation::DEVICE_OBJECT, executionroutine: super::super::Foundation::DRIVER_CONTROL, context: Option<*const core::ffi::c_void>) { + windows_targets::link!("ntoskrnl.exe" "system" fn IoAllocateController(controllerobject : *const CONTROLLER_OBJECT, deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, executionroutine : super::super::Foundation:: DRIVER_CONTROL, context : *const core::ffi::c_void)); IoAllocateController(controllerobject, deviceobject, executionroutine, core::mem::transmute(context.unwrap_or(std::ptr::null()))) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] @@ -2242,8 +2267,8 @@ pub unsafe fn IoRegisterBootDriverCallback(callbackfunction: PBOOT_DRIVER_CALLBA } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoRegisterBootDriverReinitialization(driverobject: *const super::super::Foundation::DRIVER_OBJECT, driverreinitializationroutine: *const super::super::Foundation::DRIVER_REINITIALIZE, context: Option<*const core::ffi::c_void>) { - windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterBootDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : *const super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); +pub unsafe fn IoRegisterBootDriverReinitialization(driverobject: *const super::super::Foundation::DRIVER_OBJECT, driverreinitializationroutine: super::super::Foundation::DRIVER_REINITIALIZE, context: Option<*const core::ffi::c_void>) { + windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterBootDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); IoRegisterBootDriverReinitialization(driverobject, driverreinitializationroutine, core::mem::transmute(context.unwrap_or(std::ptr::null()))) } #[inline] @@ -2259,8 +2284,8 @@ pub unsafe fn IoRegisterDeviceInterface(physicaldeviceobject: *const super::supe } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoRegisterDriverReinitialization(driverobject: *const super::super::Foundation::DRIVER_OBJECT, driverreinitializationroutine: *const super::super::Foundation::DRIVER_REINITIALIZE, context: Option<*const core::ffi::c_void>) { - windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : *const super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); +pub unsafe fn IoRegisterDriverReinitialization(driverobject: *const super::super::Foundation::DRIVER_OBJECT, driverreinitializationroutine: super::super::Foundation::DRIVER_REINITIALIZE, context: Option<*const core::ffi::c_void>) { + windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterDriverReinitialization(driverobject : *const super::super::Foundation:: DRIVER_OBJECT, driverreinitializationroutine : super::super::Foundation:: DRIVER_REINITIALIZE, context : *const core::ffi::c_void)); IoRegisterDriverReinitialization(driverobject, driverreinitializationroutine, core::mem::transmute(context.unwrap_or(std::ptr::null()))) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] @@ -2271,8 +2296,8 @@ pub unsafe fn IoRegisterLastChanceShutdownNotification(deviceobject: *const supe } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoRegisterPlugPlayNotification(eventcategory: IO_NOTIFICATION_EVENT_CATEGORY, eventcategoryflags: u32, eventcategorydata: Option<*const core::ffi::c_void>, driverobject: *const super::super::Foundation::DRIVER_OBJECT, callbackroutine: *const super::super::Foundation::DRIVER_NOTIFICATION_CALLBACK_ROUTINE, context: Option<*mut core::ffi::c_void>, notificationentry: *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterPlugPlayNotification(eventcategory : IO_NOTIFICATION_EVENT_CATEGORY, eventcategoryflags : u32, eventcategorydata : *const core::ffi::c_void, driverobject : *const super::super::Foundation:: DRIVER_OBJECT, callbackroutine : *const super::super::Foundation:: DRIVER_NOTIFICATION_CALLBACK_ROUTINE, context : *mut core::ffi::c_void, notificationentry : *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); +pub unsafe fn IoRegisterPlugPlayNotification(eventcategory: IO_NOTIFICATION_EVENT_CATEGORY, eventcategoryflags: u32, eventcategorydata: Option<*const core::ffi::c_void>, driverobject: *const super::super::Foundation::DRIVER_OBJECT, callbackroutine: super::super::Foundation::DRIVER_NOTIFICATION_CALLBACK_ROUTINE, context: Option<*mut core::ffi::c_void>, notificationentry: *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntoskrnl.exe" "system" fn IoRegisterPlugPlayNotification(eventcategory : IO_NOTIFICATION_EVENT_CATEGORY, eventcategoryflags : u32, eventcategorydata : *const core::ffi::c_void, driverobject : *const super::super::Foundation:: DRIVER_OBJECT, callbackroutine : super::super::Foundation:: DRIVER_NOTIFICATION_CALLBACK_ROUTINE, context : *mut core::ffi::c_void, notificationentry : *mut *mut core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); IoRegisterPlugPlayNotification(eventcategory, eventcategoryflags, core::mem::transmute(eventcategorydata.unwrap_or(std::ptr::null())), driverobject, callbackroutine, core::mem::transmute(context.unwrap_or(std::ptr::null_mut())), notificationentry) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] @@ -2601,9 +2626,9 @@ where } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] -pub unsafe fn IoStartPacket(deviceobject: *const super::super::Foundation::DEVICE_OBJECT, irp: *const super::super::Foundation::IRP, key: Option<*const u32>, cancelfunction: Option<*const super::super::Foundation::DRIVER_CANCEL>) { - windows_targets::link!("ntoskrnl.exe" "system" fn IoStartPacket(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, irp : *const super::super::Foundation:: IRP, key : *const u32, cancelfunction : *const super::super::Foundation:: DRIVER_CANCEL)); - IoStartPacket(deviceobject, irp, core::mem::transmute(key.unwrap_or(std::ptr::null())), core::mem::transmute(cancelfunction.unwrap_or(std::ptr::null()))) +pub unsafe fn IoStartPacket(deviceobject: *const super::super::Foundation::DEVICE_OBJECT, irp: *const super::super::Foundation::IRP, key: Option<*const u32>, cancelfunction: super::super::Foundation::DRIVER_CANCEL) { + windows_targets::link!("ntoskrnl.exe" "system" fn IoStartPacket(deviceobject : *const super::super::Foundation:: DEVICE_OBJECT, irp : *const super::super::Foundation:: IRP, key : *const u32, cancelfunction : super::super::Foundation:: DRIVER_CANCEL)); + IoStartPacket(deviceobject, irp, core::mem::transmute(key.unwrap_or(std::ptr::null())), cancelfunction) } #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] #[inline] @@ -4132,6 +4157,11 @@ where MmUnsecureVirtualMemory(securehandle.param().abi()) } #[inline] +pub unsafe fn NtAllocateLocallyUniqueId(luid: *mut super::super::super::Win32::Foundation::LUID) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtAllocateLocallyUniqueId(luid : *mut super::super::super::Win32::Foundation:: LUID) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtAllocateLocallyUniqueId(luid) +} +#[inline] pub unsafe fn NtCommitComplete(enlistmenthandle: P0, tmvirtualclock: Option<*const i64>) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -4190,6 +4220,11 @@ pub unsafe fn NtCreateTransactionManager(tmhandle: *mut super::super::super::Win windows_targets::link!("ntdll.dll" "system" fn NtCreateTransactionManager(tmhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, commitstrength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); NtCreateTransactionManager(tmhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), core::mem::transmute(logfilename.unwrap_or(std::ptr::null())), createoptions, commitstrength) } +#[inline] +pub unsafe fn NtDisplayString(string: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtDisplayString(string : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtDisplayString(string) +} #[cfg(feature = "Win32_System_SystemServices")] #[inline] pub unsafe fn NtEnumerateTransactionObject(rootobjecthandle: P0, querytype: super::super::super::Win32::System::SystemServices::KTMOBJECT_TYPE, objectcursor: *mut super::super::super::Win32::System::SystemServices::KTMOBJECT_CURSOR, objectcursorlength: u32, returnlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS @@ -4209,6 +4244,19 @@ where NtGetNotificationResourceManager(resourcemanagerhandle.param().abi(), transactionnotification, notificationlength, core::mem::transmute(timeout.unwrap_or(std::ptr::null())), core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut())), asynchronous, asynchronouscontext) } #[inline] +pub unsafe fn NtLoadDriver(driverservicename: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtLoadDriver(driverservicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtLoadDriver(driverservicename) +} +#[inline] +pub unsafe fn NtMakeTemporaryObject(handle: P0) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtMakeTemporaryObject(handle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtMakeTemporaryObject(handle.param().abi()) +} +#[inline] pub unsafe fn NtManagePartition(targethandle: P0, sourcehandle: P1, partitioninformationclass: PARTITION_INFORMATION_CLASS, partitioninformation: *mut core::ffi::c_void, partitioninformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -4226,18 +4274,6 @@ where windows_targets::link!("ntdll.dll" "system" fn NtOpenEnlistment(enlistmenthandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, enlistmentguid : *const windows_core::GUID, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); NtOpenEnlistment(enlistmenthandle, desiredaccess, resourcemanagerhandle.param().abi(), enlistmentguid, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null()))) } -#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] -#[inline] -pub unsafe fn NtOpenProcess(processhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, clientid: Option<*const super::super::super::Win32::System::WindowsProgramming::CLIENT_ID>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn NtOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); - NtOpenProcess(processhandle, desiredaccess, objectattributes, core::mem::transmute(clientid.unwrap_or(std::ptr::null()))) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] -pub unsafe fn NtOpenRegistryTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn NtOpenRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); - NtOpenRegistryTransaction(transactionhandle, desiredaccess, objectattributes) -} #[cfg(feature = "Wdk_Foundation")] #[inline] pub unsafe fn NtOpenResourceManager(resourcemanagerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, tmhandle: P0, resourcemanagerguid: Option<*const windows_core::GUID>, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>) -> super::super::super::Win32::Foundation::NTSTATUS @@ -4415,14 +4451,6 @@ where NtRollbackEnlistment(enlistmenthandle.param().abi(), core::mem::transmute(tmvirtualclock.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn NtRollbackRegistryTransaction(transactionhandle: P0, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn NtRollbackRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - NtRollbackRegistryTransaction(transactionhandle.param().abi(), flags) -} -#[inline] pub unsafe fn NtRollbackTransaction(transactionhandle: P0, wait: P1) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -4484,6 +4512,11 @@ where NtSinglePhaseReject(enlistmenthandle.param().abi(), core::mem::transmute(tmvirtualclock.unwrap_or(std::ptr::null()))) } #[inline] +pub unsafe fn NtUnloadDriver(driverservicename: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtUnloadDriver(driverservicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtUnloadDriver(driverservicename) +} +#[inline] pub unsafe fn ObCloseHandle(handle: P0, previousmode: i8) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -6581,9 +6614,9 @@ pub unsafe fn SeReleaseSubjectContext(subjectcontext: *mut super::super::Foundat #[inline] pub unsafe fn SeReportSecurityEvent(flags: u32, sourcename: *const super::super::super::Win32::Foundation::UNICODE_STRING, usersid: P0, auditparameters: *const super::super::super::Win32::Security::Authentication::Identity::SE_ADT_PARAMETER_ARRAY) -> super::super::super::Win32::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEvent(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Foundation:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY) -> super::super::super::Win32::Foundation:: NTSTATUS); + windows_targets::link!("ntoskrnl.exe" "system" fn SeReportSecurityEvent(flags : u32, sourcename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, usersid : super::super::super::Win32::Security:: PSID, auditparameters : *const super::super::super::Win32::Security::Authentication::Identity:: SE_ADT_PARAMETER_ARRAY) -> super::super::super::Win32::Foundation:: NTSTATUS); SeReportSecurityEvent(flags, sourcename, usersid.param().abi(), auditparameters) } #[cfg(feature = "Win32_Security_Authentication_Identity")] @@ -6945,14 +6978,6 @@ pub unsafe fn ZwAllocateLocallyUniqueId(luid: *mut super::super::super::Win32::F ZwAllocateLocallyUniqueId(luid) } #[inline] -pub unsafe fn ZwCancelTimer(timerhandle: P0, currentstate: Option<*mut super::super::super::Win32::Foundation::BOOLEAN>) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwCancelTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, currentstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwCancelTimer(timerhandle.param().abi(), core::mem::transmute(currentstate.unwrap_or(std::ptr::null_mut()))) -} -#[inline] pub unsafe fn ZwClose(handle: P0) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -6977,14 +7002,6 @@ where ZwCommitEnlistment(enlistmenthandle.param().abi(), core::mem::transmute(tmvirtualclock.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn ZwCommitRegistryTransaction(transactionhandle: P0, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwCommitRegistryTransaction(transactionhandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwCommitRegistryTransaction(transactionhandle.param().abi(), flags) -} -#[inline] pub unsafe fn ZwCommitTransaction(transactionhandle: P0, wait: P1) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -6995,12 +7012,6 @@ where } #[cfg(feature = "Wdk_Foundation")] #[inline] -pub unsafe fn ZwCreateDirectoryObject(directoryhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwCreateDirectoryObject(directoryhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwCreateDirectoryObject(directoryhandle, desiredaccess, objectattributes) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] pub unsafe fn ZwCreateEnlistment(enlistmenthandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, resourcemanagerhandle: P0, transactionhandle: P1, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, createoptions: u32, notificationmask: u32, enlistmentkey: Option<*const core::ffi::c_void>) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -7017,27 +7028,6 @@ pub unsafe fn ZwCreateFile(filehandle: *mut super::super::super::Win32::Foundati } #[cfg(feature = "Wdk_Foundation")] #[inline] -pub unsafe fn ZwCreateKey(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, titleindex: u32, class: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>, createoptions: u32, disposition: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwCreateKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwCreateKey(keyhandle, desiredaccess, objectattributes, titleindex, core::mem::transmute(class.unwrap_or(std::ptr::null())), createoptions, core::mem::transmute(disposition.unwrap_or(std::ptr::null_mut()))) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] -pub unsafe fn ZwCreateKeyTransacted(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, titleindex: u32, class: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>, createoptions: u32, transactionhandle: P0, disposition: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwCreateKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, titleindex : u32, class : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE, disposition : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwCreateKeyTransacted(keyhandle, desiredaccess, objectattributes, titleindex, core::mem::transmute(class.unwrap_or(std::ptr::null())), createoptions, transactionhandle.param().abi(), core::mem::transmute(disposition.unwrap_or(std::ptr::null_mut()))) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] -pub unsafe fn ZwCreateRegistryTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, createoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwCreateRegistryTransaction(transactionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwCreateRegistryTransaction(transactionhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), createoptions) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] pub unsafe fn ZwCreateResourceManager(resourcemanagerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, tmhandle: P0, resourcemanagerguid: Option<*const windows_core::GUID>, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, createoptions: u32, description: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -7054,12 +7044,6 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwCreateSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, maximumsize : *const i64, sectionpageprotection : u32, allocationattributes : u32, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwCreateSection(sectionhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), core::mem::transmute(maximumsize.unwrap_or(std::ptr::null())), sectionpageprotection, allocationattributes, filehandle.param().abi()) } -#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] -#[inline] -pub unsafe fn ZwCreateTimer(timerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, timertype: super::super::super::Win32::System::Kernel::TIMER_TYPE) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwCreateTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, timertype : super::super::super::Win32::System::Kernel:: TIMER_TYPE) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwCreateTimer(timerhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), timertype) -} #[cfg(feature = "Wdk_Foundation")] #[inline] pub unsafe fn ZwCreateTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, uow: Option<*const windows_core::GUID>, tmhandle: P0, createoptions: u32, isolationlevel: u32, isolationflags: u32, timeout: Option<*const i64>, description: Option<*const super::super::super::Win32::Foundation::UNICODE_STRING>) -> super::super::super::Win32::Foundation::NTSTATUS @@ -7075,22 +7059,6 @@ pub unsafe fn ZwCreateTransactionManager(tmhandle: *mut super::super::super::Win windows_targets::link!("ntdll.dll" "system" fn ZwCreateTransactionManager(tmhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, createoptions : u32, commitstrength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwCreateTransactionManager(tmhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), core::mem::transmute(logfilename.unwrap_or(std::ptr::null())), createoptions, commitstrength) } -#[inline] -pub unsafe fn ZwDeleteKey(keyhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwDeleteKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwDeleteKey(keyhandle.param().abi()) -} -#[inline] -pub unsafe fn ZwDeleteValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwDeleteValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwDeleteValueKey(keyhandle.param().abi(), valuename) -} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn ZwDeviceIoControlFile(filehandle: P0, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, iocontrolcode: u32, inputbuffer: Option<*const core::ffi::c_void>, inputbufferlength: u32, outputbuffer: Option<*mut core::ffi::c_void>, outputbufferlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS @@ -7106,14 +7074,6 @@ pub unsafe fn ZwDisplayString(string: *const super::super::super::Win32::Foundat windows_targets::link!("ntdll.dll" "system" fn ZwDisplayString(string : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwDisplayString(string) } -#[inline] -pub unsafe fn ZwEnumerateKey(keyhandle: P0, index: u32, keyinformationclass: KEY_INFORMATION_CLASS, keyinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwEnumerateKey(keyhandle.param().abi(), index, keyinformationclass, core::mem::transmute(keyinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) -} #[cfg(feature = "Win32_System_SystemServices")] #[inline] pub unsafe fn ZwEnumerateTransactionObject(rootobjecthandle: P0, querytype: super::super::super::Win32::System::SystemServices::KTMOBJECT_TYPE, objectcursor: *mut super::super::super::Win32::System::SystemServices::KTMOBJECT_CURSOR, objectcursorlength: u32, returnlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS @@ -7123,22 +7083,6 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateTransactionObject(rootobjecthandle : super::super::super::Win32::Foundation:: HANDLE, querytype : super::super::super::Win32::System::SystemServices:: KTMOBJECT_TYPE, objectcursor : *mut super::super::super::Win32::System::SystemServices:: KTMOBJECT_CURSOR, objectcursorlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwEnumerateTransactionObject(rootobjecthandle.param().abi(), querytype, objectcursor, objectcursorlength, returnlength) } -#[inline] -pub unsafe fn ZwEnumerateValueKey(keyhandle: P0, index: u32, keyvalueinformationclass: KEY_VALUE_INFORMATION_CLASS, keyvalueinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwEnumerateValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, index : u32, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwEnumerateValueKey(keyhandle.param().abi(), index, keyvalueinformationclass, core::mem::transmute(keyvalueinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) -} -#[inline] -pub unsafe fn ZwFlushKey(keyhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwFlushKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwFlushKey(keyhandle.param().abi()) -} #[cfg(feature = "Win32_Storage_FileSystem")] #[inline] pub unsafe fn ZwGetNotificationResourceManager(resourcemanagerhandle: P0, transactionnotification: *mut super::super::super::Win32::Storage::FileSystem::TRANSACTION_NOTIFICATION, notificationlength: u32, timeout: *const i64, returnlength: Option<*mut u32>, asynchronous: u32, asynchronouscontext: usize) -> super::super::super::Win32::Foundation::NTSTATUS @@ -7162,13 +7106,13 @@ where ZwMakeTemporaryObject(handle.param().abi()) } #[inline] -pub unsafe fn ZwMapViewOfSection(sectionhandle: P0, processhandle: P1, baseaddress: *mut *mut core::ffi::c_void, zerobits: usize, commitsize: usize, sectionoffset: Option<*mut i64>, viewsize: *mut usize, inheritdisposition: SECTION_INHERIT, allocationtype: u32, win32protect: u32) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn ZwManagePartition(targethandle: P0, sourcehandle: P1, partitioninformationclass: PARTITION_INFORMATION_CLASS, partitioninformation: *mut core::ffi::c_void, partitioninformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn ZwMapViewOfSection(sectionhandle : super::super::super::Win32::Foundation:: HANDLE, processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *mut *mut core::ffi::c_void, zerobits : usize, commitsize : usize, sectionoffset : *mut i64, viewsize : *mut usize, inheritdisposition : SECTION_INHERIT, allocationtype : u32, win32protect : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwMapViewOfSection(sectionhandle.param().abi(), processhandle.param().abi(), baseaddress, zerobits, commitsize, core::mem::transmute(sectionoffset.unwrap_or(std::ptr::null_mut())), viewsize, inheritdisposition, allocationtype, win32protect) + windows_targets::link!("ntdll.dll" "system" fn ZwManagePartition(targethandle : super::super::super::Win32::Foundation:: HANDLE, sourcehandle : super::super::super::Win32::Foundation:: HANDLE, partitioninformationclass : PARTITION_INFORMATION_CLASS, partitioninformation : *mut core::ffi::c_void, partitioninformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwManagePartition(targethandle.param().abi(), sourcehandle.param().abi(), partitioninformationclass, partitioninformation, partitioninformationlength) } #[cfg(feature = "Wdk_Foundation")] #[inline] @@ -7179,12 +7123,6 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwOpenEnlistment(enlistmenthandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, rmhandle : super::super::super::Win32::Foundation:: HANDLE, enlistmentguid : *const windows_core::GUID, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwOpenEnlistment(enlistmenthandle, desiredaccess, rmhandle.param().abi(), enlistmentguid, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null()))) } -#[cfg(feature = "Wdk_Foundation")] -#[inline] -pub unsafe fn ZwOpenEvent(eventhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwOpenEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenEvent(eventhandle, desiredaccess, objectattributes) -} #[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_IO"))] #[inline] pub unsafe fn ZwOpenFile(filehandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, shareaccess: u32, openoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { @@ -7193,42 +7131,6 @@ pub unsafe fn ZwOpenFile(filehandle: *mut super::super::super::Win32::Foundation } #[cfg(feature = "Wdk_Foundation")] #[inline] -pub unsafe fn ZwOpenKey(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwOpenKey(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenKey(keyhandle, desiredaccess, objectattributes) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] -pub unsafe fn ZwOpenKeyEx(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, openoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenKeyEx(keyhandle, desiredaccess, objectattributes, openoptions) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] -pub unsafe fn ZwOpenKeyTransacted(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, transactionhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransacted(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenKeyTransacted(keyhandle, desiredaccess, objectattributes, transactionhandle.param().abi()) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] -pub unsafe fn ZwOpenKeyTransactedEx(keyhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, openoptions: u32, transactionhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwOpenKeyTransactedEx(keyhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, openoptions : u32, transactionhandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenKeyTransactedEx(keyhandle, desiredaccess, objectattributes, openoptions, transactionhandle.param().abi()) -} -#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] -#[inline] -pub unsafe fn ZwOpenProcess(processhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, clientid: Option<*const super::super::super::Win32::System::WindowsProgramming::CLIENT_ID>) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenProcess(processhandle, desiredaccess, objectattributes, core::mem::transmute(clientid.unwrap_or(std::ptr::null()))) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] pub unsafe fn ZwOpenResourceManager(resourcemanagerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, tmhandle: P0, resourcemanagerguid: *const windows_core::GUID, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -7238,24 +7140,12 @@ where } #[cfg(feature = "Wdk_Foundation")] #[inline] -pub unsafe fn ZwOpenSection(sectionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwOpenSection(sectionhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenSection(sectionhandle, desiredaccess, objectattributes) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] pub unsafe fn ZwOpenSymbolicLinkObject(linkhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { windows_targets::link!("ntdll.dll" "system" fn ZwOpenSymbolicLinkObject(linkhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwOpenSymbolicLinkObject(linkhandle, desiredaccess, objectattributes) } #[cfg(feature = "Wdk_Foundation")] #[inline] -pub unsafe fn ZwOpenTimer(timerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { - windows_targets::link!("ntdll.dll" "system" fn ZwOpenTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwOpenTimer(timerhandle, desiredaccess, objectattributes) -} -#[cfg(feature = "Wdk_Foundation")] -#[inline] pub unsafe fn ZwOpenTransaction(transactionhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, uow: *const windows_core::GUID, tmhandle: P0) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -7307,6 +7197,23 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwPrepareEnlistment(enlistmenthandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwPrepareEnlistment(enlistmenthandle.param().abi(), core::mem::transmute(tmvirtualclock.unwrap_or(std::ptr::null()))) } +#[inline] +pub unsafe fn ZwPropagationComplete(resourcemanagerhandle: P0, requestcookie: u32, bufferlength: u32, buffer: *const core::ffi::c_void) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwPropagationComplete(resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, requestcookie : u32, bufferlength : u32, buffer : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwPropagationComplete(resourcemanagerhandle.param().abi(), requestcookie, bufferlength, buffer) +} +#[inline] +pub unsafe fn ZwPropagationFailed(resourcemanagerhandle: P0, requestcookie: u32, propstatus: P1) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwPropagationFailed(resourcemanagerhandle : super::super::super::Win32::Foundation:: HANDLE, requestcookie : u32, propstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwPropagationFailed(resourcemanagerhandle.param().abi(), requestcookie, propstatus.param().abi()) +} #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_System_IO"))] #[inline] pub unsafe fn ZwQueryInformationByName(objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, fileinformation: *mut core::ffi::c_void, length: u32, fileinformationclass: super::super::Storage::FileSystem::FILE_INFORMATION_CLASS) -> super::super::super::Win32::Foundation::NTSTATUS { @@ -7359,14 +7266,6 @@ where ZwQueryInformationTransactionManager(transactionmanagerhandle.param().abi(), transactionmanagerinformationclass, transactionmanagerinformation, transactionmanagerinformationlength, core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut()))) } #[inline] -pub unsafe fn ZwQueryKey(keyhandle: P0, keyinformationclass: KEY_INFORMATION_CLASS, keyinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwQueryKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, keyinformationclass : KEY_INFORMATION_CLASS, keyinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwQueryKey(keyhandle.param().abi(), keyinformationclass, core::mem::transmute(keyinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) -} -#[inline] pub unsafe fn ZwQuerySymbolicLinkObject(linkhandle: P0, linktarget: *mut super::super::super::Win32::Foundation::UNICODE_STRING, returnedlength: Option<*mut u32>) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -7374,14 +7273,6 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwQuerySymbolicLinkObject(linkhandle : super::super::super::Win32::Foundation:: HANDLE, linktarget : *mut super::super::super::Win32::Foundation:: UNICODE_STRING, returnedlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwQuerySymbolicLinkObject(linkhandle.param().abi(), linktarget, core::mem::transmute(returnedlength.unwrap_or(std::ptr::null_mut()))) } -#[inline] -pub unsafe fn ZwQueryValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING, keyvalueinformationclass: KEY_VALUE_INFORMATION_CLASS, keyvalueinformation: Option<*mut core::ffi::c_void>, length: u32, resultlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwQueryValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, keyvalueinformationclass : KEY_VALUE_INFORMATION_CLASS, keyvalueinformation : *mut core::ffi::c_void, length : u32, resultlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwQueryValueKey(keyhandle.param().abi(), valuename, keyvalueinformationclass, core::mem::transmute(keyvalueinformation.unwrap_or(std::ptr::null_mut())), length, resultlength) -} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn ZwReadFile(filehandle: P0, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, buffer: *mut core::ffi::c_void, length: u32, byteoffset: Option<*const i64>, key: Option<*const u32>) -> super::super::super::Win32::Foundation::NTSTATUS @@ -7425,21 +7316,17 @@ where ZwRecoverTransactionManager(transactionmanagerhandle.param().abi()) } #[inline] -pub unsafe fn ZwRenameKey(keyhandle: P0, newname: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS +pub unsafe fn ZwRegisterProtocolAddressInformation(resourcemanager: P0, protocolid: *const windows_core::GUID, protocolinformationsize: u32, protocolinformation: *const core::ffi::c_void, createoptions: u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn ZwRenameKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, newname : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwRenameKey(keyhandle.param().abi(), newname) + windows_targets::link!("ntdll.dll" "system" fn ZwRegisterProtocolAddressInformation(resourcemanager : super::super::super::Win32::Foundation:: HANDLE, protocolid : *const windows_core::GUID, protocolinformationsize : u32, protocolinformation : *const core::ffi::c_void, createoptions : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwRegisterProtocolAddressInformation(resourcemanager.param().abi(), protocolid, protocolinformationsize, protocolinformation, createoptions) } #[inline] -pub unsafe fn ZwRestoreKey(keyhandle: P0, filehandle: P1, flags: u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, - P1: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwRestoreKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, flags : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwRestoreKey(keyhandle.param().abi(), filehandle.param().abi(), flags) +pub unsafe fn ZwRenameTransactionManager(logfilename: *const super::super::super::Win32::Foundation::UNICODE_STRING, existingtransactionmanagerguid: *const windows_core::GUID) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwRenameTransactionManager(logfilename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, existingtransactionmanagerguid : *const windows_core::GUID) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwRenameTransactionManager(logfilename, existingtransactionmanagerguid) } #[inline] pub unsafe fn ZwRollbackComplete(enlistmenthandle: P0, tmvirtualclock: Option<*const i64>) -> super::super::super::Win32::Foundation::NTSTATUS @@ -7474,24 +7361,6 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwRollforwardTransactionManager(transactionmanagerhandle : super::super::super::Win32::Foundation:: HANDLE, tmvirtualclock : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwRollforwardTransactionManager(transactionmanagerhandle.param().abi(), core::mem::transmute(tmvirtualclock.unwrap_or(std::ptr::null()))) } -#[inline] -pub unsafe fn ZwSaveKey(keyhandle: P0, filehandle: P1) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, - P1: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwSaveKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwSaveKey(keyhandle.param().abi(), filehandle.param().abi()) -} -#[inline] -pub unsafe fn ZwSaveKeyEx(keyhandle: P0, filehandle: P1, format: u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, - P1: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwSaveKeyEx(keyhandle : super::super::super::Win32::Foundation:: HANDLE, filehandle : super::super::super::Win32::Foundation:: HANDLE, format : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwSaveKeyEx(keyhandle.param().abi(), filehandle.param().abi(), format) -} #[cfg(feature = "Win32_System_SystemServices")] #[inline] pub unsafe fn ZwSetInformationEnlistment(enlistmenthandle: P0, enlistmentinformationclass: super::super::super::Win32::System::SystemServices::ENLISTMENT_INFORMATION_CLASS, enlistmentinformation: *const core::ffi::c_void, enlistmentinformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS @@ -7538,31 +7407,6 @@ where ZwSetInformationTransactionManager(tmhandle.param().abi(), transactionmanagerinformationclass, transactionmanagerinformation, transactionmanagerinformationlength) } #[inline] -pub unsafe fn ZwSetTimer(timerhandle: P0, duetime: *const i64, timerapcroutine: PTIMER_APC_ROUTINE, timercontext: Option<*const core::ffi::c_void>, resumetimer: P1, period: i32, previousstate: Option<*mut super::super::super::Win32::Foundation::BOOLEAN>) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, - P1: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwSetTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, duetime : *const i64, timerapcroutine : PTIMER_APC_ROUTINE, timercontext : *const core::ffi::c_void, resumetimer : super::super::super::Win32::Foundation:: BOOLEAN, period : i32, previousstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwSetTimer(timerhandle.param().abi(), duetime, timerapcroutine, core::mem::transmute(timercontext.unwrap_or(std::ptr::null())), resumetimer.param().abi(), period, core::mem::transmute(previousstate.unwrap_or(std::ptr::null_mut()))) -} -#[inline] -pub unsafe fn ZwSetTimerEx(timerhandle: P0, timersetinformationclass: TIMER_SET_INFORMATION_CLASS, timersetinformation: Option<*mut core::ffi::c_void>, timersetinformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwSetTimerEx(timerhandle : super::super::super::Win32::Foundation:: HANDLE, timersetinformationclass : TIMER_SET_INFORMATION_CLASS, timersetinformation : *mut core::ffi::c_void, timersetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwSetTimerEx(timerhandle.param().abi(), timersetinformationclass, core::mem::transmute(timersetinformation.unwrap_or(std::ptr::null_mut())), timersetinformationlength) -} -#[inline] -pub unsafe fn ZwSetValueKey(keyhandle: P0, valuename: *const super::super::super::Win32::Foundation::UNICODE_STRING, titleindex: u32, r#type: u32, data: Option<*const core::ffi::c_void>, datasize: u32) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwSetValueKey(keyhandle : super::super::super::Win32::Foundation:: HANDLE, valuename : *const super::super::super::Win32::Foundation:: UNICODE_STRING, titleindex : u32, r#type : u32, data : *const core::ffi::c_void, datasize : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwSetValueKey(keyhandle.param().abi(), valuename, titleindex, r#type, core::mem::transmute(data.unwrap_or(std::ptr::null())), datasize) -} -#[inline] pub unsafe fn ZwSinglePhaseReject(enlistmenthandle: P0, tmvirtualclock: Option<*const i64>) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -7571,27 +7415,10 @@ where ZwSinglePhaseReject(enlistmenthandle.param().abi(), core::mem::transmute(tmvirtualclock.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn ZwTerminateProcess(processhandle: P0, exitstatus: P1) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, - P1: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwTerminateProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, exitstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwTerminateProcess(processhandle.param().abi(), exitstatus.param().abi()) -} -#[inline] pub unsafe fn ZwUnloadDriver(driverservicename: *const super::super::super::Win32::Foundation::UNICODE_STRING) -> super::super::super::Win32::Foundation::NTSTATUS { windows_targets::link!("ntdll.dll" "system" fn ZwUnloadDriver(driverservicename : *const super::super::super::Win32::Foundation:: UNICODE_STRING) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwUnloadDriver(driverservicename) } -#[inline] -pub unsafe fn ZwUnmapViewOfSection(processhandle: P0, baseaddress: Option<*const core::ffi::c_void>) -> super::super::super::Win32::Foundation::NTSTATUS -where - P0: windows_core::Param, -{ - windows_targets::link!("ntdll.dll" "system" fn ZwUnmapViewOfSection(processhandle : super::super::super::Win32::Foundation:: HANDLE, baseaddress : *const core::ffi::c_void) -> super::super::super::Win32::Foundation:: NTSTATUS); - ZwUnmapViewOfSection(processhandle.param().abi(), core::mem::transmute(baseaddress.unwrap_or(std::ptr::null()))) -} #[cfg(feature = "Win32_System_IO")] #[inline] pub unsafe fn ZwWriteFile(filehandle: P0, event: P1, apcroutine: super::super::super::Win32::System::IO::PIO_APC_ROUTINE, apccontext: Option<*const core::ffi::c_void>, iostatusblock: *mut super::super::super::Win32::System::IO::IO_STATUS_BLOCK, buffer: *const core::ffi::c_void, length: u32, byteoffset: Option<*const i64>, key: Option<*const u32>) -> super::super::super::Win32::Foundation::NTSTATUS @@ -8672,22 +8499,6 @@ pub const KeProcessorAddFailureNotify: KE_PROCESSOR_CHANGE_NOTIFY_STATE = KE_PRO pub const KeProcessorAddStartNotify: KE_PROCESSOR_CHANGE_NOTIFY_STATE = KE_PROCESSOR_CHANGE_NOTIFY_STATE(0i32); pub const KeepObject: IO_ALLOCATION_ACTION = IO_ALLOCATION_ACTION(1i32); pub const KernelMode: MODE = MODE(0i32); -pub const KeyBasicInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(0i32); -pub const KeyCachedInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(4i32); -pub const KeyFlagsInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(5i32); -pub const KeyFullInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(2i32); -pub const KeyHandleTagsInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(7i32); -pub const KeyLayerInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(9i32); -pub const KeyNameInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(3i32); -pub const KeyNodeInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(1i32); -pub const KeyTrustInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(8i32); -pub const KeyValueBasicInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(0i32); -pub const KeyValueFullInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(1i32); -pub const KeyValueFullInformationAlign64: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(3i32); -pub const KeyValueLayerInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(5i32); -pub const KeyValuePartialInformation: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(2i32); -pub const KeyValuePartialInformationAlign64: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(4i32); -pub const KeyVirtualizationInformation: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(6i32); pub const KeyboardController: CONFIGURATION_TYPE = CONFIGURATION_TYPE(22i32); pub const KeyboardPeripheral: CONFIGURATION_TYPE = CONFIGURATION_TYPE(32i32); pub const L0sAndL1EntryDisabled: PCI_EXPRESS_ASPM_CONTROL = PCI_EXPRESS_ASPM_CONTROL(0i32); @@ -8818,8 +8629,6 @@ pub const MapPhysicalAddressTypeMdl: IOMMU_MAP_PHYSICAL_ADDRESS_TYPE = IOMMU_MAP pub const MapPhysicalAddressTypePfn: IOMMU_MAP_PHYSICAL_ADDRESS_TYPE = IOMMU_MAP_PHYSICAL_ADDRESS_TYPE(2i32); pub const MaxFaultType: FAULT_INFORMATION_ARM64_TYPE = FAULT_INFORMATION_ARM64_TYPE(7i32); pub const MaxHardwareCounterType: HARDWARE_COUNTER_TYPE = HARDWARE_COUNTER_TYPE(1i32); -pub const MaxKeyInfoClass: KEY_INFORMATION_CLASS = KEY_INFORMATION_CLASS(10i32); -pub const MaxKeyValueInfoClass: KEY_VALUE_INFORMATION_CLASS = KEY_VALUE_INFORMATION_CLASS(6i32); pub const MaxPayload1024Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = PCI_EXPRESS_MAX_PAYLOAD_SIZE(3i32); pub const MaxPayload128Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = PCI_EXPRESS_MAX_PAYLOAD_SIZE(0i32); pub const MaxPayload2048Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = PCI_EXPRESS_MAX_PAYLOAD_SIZE(4i32); @@ -8828,7 +8637,6 @@ pub const MaxPayload4096Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = PCI_EXPRESS_MAX_PA pub const MaxPayload512Bytes: PCI_EXPRESS_MAX_PAYLOAD_SIZE = PCI_EXPRESS_MAX_PAYLOAD_SIZE(2i32); pub const MaxRegNtNotifyClass: REG_NOTIFY_CLASS = REG_NOTIFY_CLASS(51i32); pub const MaxSubsystemInformationType: SUBSYSTEM_INFORMATION_TYPE = SUBSYSTEM_INFORMATION_TYPE(2i32); -pub const MaxTimerInfoClass: TIMER_SET_INFORMATION_CLASS = TIMER_SET_INFORMATION_CLASS(1i32); pub const MaxTraceInformationClass: TRACE_INFORMATION_CLASS = TRACE_INFORMATION_CLASS(16i32); pub const MaximumBusDataType: BUS_DATA_TYPE = BUS_DATA_TYPE(12i32); pub const MaximumDmaSpeed: DMA_SPEED = DMA_SPEED(5i32); @@ -9830,7 +9638,6 @@ pub const TapePeripheral: CONFIGURATION_TYPE = CONFIGURATION_TYPE(27i32); pub const TargetDeviceRelation: DEVICE_RELATION_TYPE = DEVICE_RELATION_TYPE(4i32); pub const TcAdapter: CONFIGURATION_TYPE = CONFIGURATION_TYPE(9i32); pub const TerminalPeripheral: CONFIGURATION_TYPE = CONFIGURATION_TYPE(33i32); -pub const TimerSetCoalescableTimer: TIMER_SET_INFORMATION_CLASS = TIMER_SET_INFORMATION_CLASS(0i32); pub const TlbMatchConflict: FAULT_INFORMATION_ARM64_TYPE = FAULT_INFORMATION_ARM64_TYPE(2i32); pub const TraceEnableFlagsClass: TRACE_INFORMATION_CLASS = TRACE_INFORMATION_CLASS(2i32); pub const TraceEnableLevelClass: TRACE_INFORMATION_CLASS = TRACE_INFORMATION_CLASS(3i32); @@ -9866,8 +9673,6 @@ pub const VPB_MOUNTED: u32 = 1u32; pub const VPB_PERSISTENT: u32 = 4u32; pub const VPB_RAW_MOUNT: u32 = 16u32; pub const VPB_REMOVE_PENDING: u32 = 8u32; -pub const ViewShare: SECTION_INHERIT = SECTION_INHERIT(1i32); -pub const ViewUnmap: SECTION_INHERIT = SECTION_INHERIT(2i32); pub const Vmcs: INTERFACE_TYPE = INTERFACE_TYPE(16i32); pub const WCS_RAS_REGISTER_NAME_MAX_LENGTH: u32 = 32u32; pub const WDM_MAJORVERSION: u32 = 6u32; @@ -11015,28 +10820,6 @@ impl core::fmt::Debug for KD_OPTION { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct KEY_INFORMATION_CLASS(pub i32); -impl windows_core::TypeKind for KEY_INFORMATION_CLASS { - type TypeKind = windows_core::CopyType; -} -impl core::fmt::Debug for KEY_INFORMATION_CLASS { - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("KEY_INFORMATION_CLASS").field(&self.0).finish() - } -} -#[repr(transparent)] -#[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct KEY_VALUE_INFORMATION_CLASS(pub i32); -impl windows_core::TypeKind for KEY_VALUE_INFORMATION_CLASS { - type TypeKind = windows_core::CopyType; -} -impl core::fmt::Debug for KEY_VALUE_INFORMATION_CLASS { - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("KEY_VALUE_INFORMATION_CLASS").field(&self.0).finish() - } -} -#[repr(transparent)] -#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct KE_PROCESSOR_CHANGE_NOTIFY_STATE(pub i32); impl windows_core::TypeKind for KE_PROCESSOR_CHANGE_NOTIFY_STATE { type TypeKind = windows_core::CopyType; @@ -11620,17 +11403,6 @@ impl core::fmt::Debug for RTL_GENERIC_COMPARE_RESULTS { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct SECTION_INHERIT(pub i32); -impl windows_core::TypeKind for SECTION_INHERIT { - type TypeKind = windows_core::CopyType; -} -impl core::fmt::Debug for SECTION_INHERIT { - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("SECTION_INHERIT").field(&self.0).finish() - } -} -#[repr(transparent)] -#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct SECURITY_OPERATION_CODE(pub i32); impl windows_core::TypeKind for SECURITY_OPERATION_CODE { type TypeKind = windows_core::CopyType; @@ -11730,17 +11502,6 @@ impl core::fmt::Debug for TABLE_SEARCH_RESULT { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct TIMER_SET_INFORMATION_CLASS(pub i32); -impl windows_core::TypeKind for TIMER_SET_INFORMATION_CLASS { - type TypeKind = windows_core::CopyType; -} -impl core::fmt::Debug for TIMER_SET_INFORMATION_CLASS { - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("TIMER_SET_INFORMATION_CLASS").field(&self.0).finish() - } -} -#[repr(transparent)] -#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct TRACE_INFORMATION_CLASS(pub i32); impl windows_core::TypeKind for TRACE_INFORMATION_CLASS { type TypeKind = windows_core::CopyType; @@ -13239,7 +13000,7 @@ impl Default for CM_PNP_BIOS_INSTALLATION_CHECK { pub struct CM_POWER_DATA { pub PD_Size: u32, pub PD_MostRecentPowerState: super::super::super::Win32::System::Power::DEVICE_POWER_STATE, - pub PD_Capabilities: u32, + pub PD_Capabilities: super::super::super::Win32::System::Power::DEVICE_POWER_CAPABILITIES, pub PD_D1Latency: u32, pub PD_D2Latency: u32, pub PD_D3Latency: u32, @@ -23997,48 +23758,6 @@ impl Default for REG_DELETE_VALUE_KEY_INFORMATION { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct REG_ENUMERATE_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub Index: u32, - pub KeyInformationClass: KEY_INFORMATION_CLASS, - pub KeyInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -impl windows_core::TypeKind for REG_ENUMERATE_KEY_INFORMATION { - type TypeKind = windows_core::CopyType; -} -impl Default for REG_ENUMERATE_KEY_INFORMATION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct REG_ENUMERATE_VALUE_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub Index: u32, - pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, - pub KeyValueInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -impl windows_core::TypeKind for REG_ENUMERATE_VALUE_KEY_INFORMATION { - type TypeKind = windows_core::CopyType; -} -impl Default for REG_ENUMERATE_VALUE_KEY_INFORMATION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct REG_KEY_HANDLE_CLOSE_INFORMATION { pub Object: *mut core::ffi::c_void, pub CallContext: *mut core::ffi::c_void, @@ -24148,26 +23867,6 @@ impl Default for REG_PRE_CREATE_KEY_INFORMATION { } } #[repr(C)] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct REG_QUERY_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub KeyInformationClass: KEY_INFORMATION_CLASS, - pub KeyInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -impl windows_core::TypeKind for REG_QUERY_KEY_INFORMATION { - type TypeKind = windows_core::CopyType; -} -impl Default for REG_QUERY_KEY_INFORMATION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -#[repr(C)] #[cfg(feature = "Wdk_Foundation")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct REG_QUERY_KEY_NAME { @@ -24213,27 +23912,6 @@ impl Default for REG_QUERY_KEY_SECURITY_INFORMATION { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct REG_QUERY_VALUE_KEY_INFORMATION { - pub Object: *mut core::ffi::c_void, - pub ValueName: *mut super::super::super::Win32::Foundation::UNICODE_STRING, - pub KeyValueInformationClass: KEY_VALUE_INFORMATION_CLASS, - pub KeyValueInformation: *mut core::ffi::c_void, - pub Length: u32, - pub ResultLength: *mut u32, - pub CallContext: *mut core::ffi::c_void, - pub ObjectContext: *mut core::ffi::c_void, - pub Reserved: *mut core::ffi::c_void, -} -impl windows_core::TypeKind for REG_QUERY_VALUE_KEY_INFORMATION { - type TypeKind = windows_core::CopyType; -} -impl Default for REG_QUERY_VALUE_KEY_INFORMATION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -#[repr(C)] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct REG_RENAME_KEY_INFORMATION { pub Object: *mut core::ffi::c_void, pub NewName: *mut super::super::super::Win32::Foundation::UNICODE_STRING, @@ -25232,7 +24910,7 @@ impl Default for VM_COUNTERS_EX2 { #[derive(Clone, Copy)] pub struct WAIT_CONTEXT_BLOCK { pub Anonymous: WAIT_CONTEXT_BLOCK_0, - pub DeviceRoutine: *mut super::super::Foundation::DRIVER_CONTROL, + pub DeviceRoutine: super::super::Foundation::DRIVER_CONTROL, pub DeviceContext: *mut core::ffi::c_void, pub NumberOfMapRegisters: u32, pub DeviceObject: *mut core::ffi::c_void, @@ -29434,9 +29112,9 @@ pub type NPEM_CONTROL_SET_STANDARD_CONTROL = Option; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PALLOCATE_ADAPTER_CHANNEL = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PALLOCATE_ADAPTER_CHANNEL = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PALLOCATE_ADAPTER_CHANNEL_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PALLOCATE_ADAPTER_CHANNEL_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] pub type PALLOCATE_COMMON_BUFFER = Option *mut core::ffi::c_void>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] @@ -29456,9 +29134,9 @@ pub type PBOUND_CALLBACK = Option BOUND_CALLBACK_ #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] pub type PBUILD_MDL_FROM_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PBUILD_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PBUILD_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PBUILD_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PBUILD_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] pub type PCALCULATE_SCATTER_GATHER_LIST_SIZE = Option super::super::super::Win32::Foundation::NTSTATUS>; pub type PCALLBACK_FUNCTION = Option; @@ -29584,9 +29262,9 @@ pub type PGET_DMA_TRANSFER_INFO = Option super::super::super::Win32::Foundation::NTSTATUS>; pub type PGET_LOCATION_STRING = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PGET_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PGET_SCATTER_GATHER_LIST = Option super::super::super::Win32::Foundation::NTSTATUS>; #[cfg(all(feature = "Wdk_Foundation", feature = "Wdk_Storage_FileSystem", feature = "Win32_Security", feature = "Win32_System_IO", feature = "Win32_System_Kernel", feature = "Win32_System_Power"))] -pub type PGET_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; +pub type PGET_SCATTER_GATHER_LIST_EX = Option super::super::super::Win32::Foundation::NTSTATUS>; pub type PGET_SDEV_IDENTIFIER = Option u64>; pub type PGET_SET_DEVICE_DATA = Option u32>; pub type PGET_UPDATED_BUS_RESOURCE = Option super::super::super::Win32::Foundation::NTSTATUS>; diff --git a/crates/libs/windows/src/Windows/Wdk/System/Threading/mod.rs b/crates/libs/windows/src/Windows/Wdk/System/Threading/mod.rs index 22ce396455..59f11ad8d7 100644 --- a/crates/libs/windows/src/Windows/Wdk/System/Threading/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/System/Threading/mod.rs @@ -1,4 +1,36 @@ #[inline] +pub unsafe fn NtCancelTimer(timerhandle: P0, currentstate: Option<*mut super::super::super::Win32::Foundation::BOOLEAN>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtCancelTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, currentstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCancelTimer(timerhandle.param().abi(), core::mem::transmute(currentstate.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] +#[inline] +pub unsafe fn NtCreateTimer(timerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, timertype: super::super::super::Win32::System::Kernel::TIMER_TYPE) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtCreateTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, timertype : super::super::super::Win32::System::Kernel:: TIMER_TYPE) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtCreateTimer(timerhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), timertype) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenEvent(eventhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenEvent(eventhandle, desiredaccess, objectattributes) +} +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] +#[inline] +pub unsafe fn NtOpenProcess(processhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, clientid: Option<*const super::super::super::Win32::System::WindowsProgramming::CLIENT_ID>) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenProcess(processhandle, desiredaccess, objectattributes, core::mem::transmute(clientid.unwrap_or(std::ptr::null()))) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn NtOpenTimer(timerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn NtOpenTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtOpenTimer(timerhandle, desiredaccess, objectattributes) +} +#[inline] pub unsafe fn NtQueryInformationProcess(processhandle: P0, processinformationclass: PROCESSINFOCLASS, processinformation: *mut core::ffi::c_void, processinformationlength: u32, returnlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -22,6 +54,33 @@ where windows_targets::link!("ntdll.dll" "system" fn NtSetInformationThread(threadhandle : super::super::super::Win32::Foundation:: HANDLE, threadinformationclass : THREADINFOCLASS, threadinformation : *const core::ffi::c_void, threadinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); NtSetInformationThread(threadhandle.param().abi(), threadinformationclass, threadinformation, threadinformationlength) } +#[cfg(feature = "Wdk_System_SystemServices")] +#[inline] +pub unsafe fn NtSetTimer(timerhandle: P0, duetime: *const i64, timerapcroutine: super::SystemServices::PTIMER_APC_ROUTINE, timercontext: Option<*const core::ffi::c_void>, resumetimer: P1, period: i32, previousstate: Option<*mut super::super::super::Win32::Foundation::BOOLEAN>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtSetTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, duetime : *const i64, timerapcroutine : super::SystemServices:: PTIMER_APC_ROUTINE, timercontext : *const core::ffi::c_void, resumetimer : super::super::super::Win32::Foundation:: BOOLEAN, period : i32, previousstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtSetTimer(timerhandle.param().abi(), duetime, timerapcroutine, core::mem::transmute(timercontext.unwrap_or(std::ptr::null())), resumetimer.param().abi(), period, core::mem::transmute(previousstate.unwrap_or(std::ptr::null_mut()))) +} +#[inline] +pub unsafe fn NtSetTimerEx(timerhandle: P0, timersetinformationclass: TIMER_SET_INFORMATION_CLASS, timersetinformation: Option<*mut core::ffi::c_void>, timersetinformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtSetTimerEx(timerhandle : super::super::super::Win32::Foundation:: HANDLE, timersetinformationclass : TIMER_SET_INFORMATION_CLASS, timersetinformation : *mut core::ffi::c_void, timersetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtSetTimerEx(timerhandle.param().abi(), timersetinformationclass, core::mem::transmute(timersetinformation.unwrap_or(std::ptr::null_mut())), timersetinformationlength) +} +#[inline] +pub unsafe fn NtTerminateProcess(processhandle: P0, exitstatus: P1) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn NtTerminateProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, exitstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); + NtTerminateProcess(processhandle.param().abi(), exitstatus.param().abi()) +} #[inline] pub unsafe fn NtWaitForSingleObject(handle: P0, alertable: P1, timeout: *mut i64) -> super::super::super::Win32::Foundation::NTSTATUS where @@ -32,6 +91,54 @@ where NtWaitForSingleObject(handle.param().abi(), alertable.param().abi(), timeout) } #[inline] +pub unsafe fn ZwCancelTimer(timerhandle: P0, currentstate: Option<*mut super::super::super::Win32::Foundation::BOOLEAN>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwCancelTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, currentstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCancelTimer(timerhandle.param().abi(), core::mem::transmute(currentstate.unwrap_or(std::ptr::null_mut()))) +} +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_Kernel"))] +#[inline] +pub unsafe fn ZwCreateTimer(timerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: Option<*const super::super::Foundation::OBJECT_ATTRIBUTES>, timertype: super::super::super::Win32::System::Kernel::TIMER_TYPE) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwCreateTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, timertype : super::super::super::Win32::System::Kernel:: TIMER_TYPE) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwCreateTimer(timerhandle, desiredaccess, core::mem::transmute(objectattributes.unwrap_or(std::ptr::null())), timertype) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenEvent(eventhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwOpenEvent(eventhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenEvent(eventhandle, desiredaccess, objectattributes) +} +#[cfg(all(feature = "Wdk_Foundation", feature = "Win32_System_WindowsProgramming"))] +#[inline] +pub unsafe fn ZwOpenProcess(processhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES, clientid: Option<*const super::super::super::Win32::System::WindowsProgramming::CLIENT_ID>) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwOpenProcess(processhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES, clientid : *const super::super::super::Win32::System::WindowsProgramming:: CLIENT_ID) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenProcess(processhandle, desiredaccess, objectattributes, core::mem::transmute(clientid.unwrap_or(std::ptr::null()))) +} +#[cfg(feature = "Wdk_Foundation")] +#[inline] +pub unsafe fn ZwOpenTimer(timerhandle: *mut super::super::super::Win32::Foundation::HANDLE, desiredaccess: u32, objectattributes: *const super::super::Foundation::OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation::NTSTATUS { + windows_targets::link!("ntdll.dll" "system" fn ZwOpenTimer(timerhandle : *mut super::super::super::Win32::Foundation:: HANDLE, desiredaccess : u32, objectattributes : *const super::super::Foundation:: OBJECT_ATTRIBUTES) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwOpenTimer(timerhandle, desiredaccess, objectattributes) +} +#[inline] +pub unsafe fn ZwQueryInformationProcess(processhandle: P0, processinformationclass: PROCESSINFOCLASS, processinformation: *mut core::ffi::c_void, processinformationlength: u32, returnlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, processinformationclass : PROCESSINFOCLASS, processinformation : *mut core::ffi::c_void, processinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQueryInformationProcess(processhandle.param().abi(), processinformationclass, processinformation, processinformationlength, returnlength) +} +#[inline] +pub unsafe fn ZwQueryInformationThread(threadhandle: P0, threadinformationclass: THREADINFOCLASS, threadinformation: *mut core::ffi::c_void, threadinformationlength: u32, returnlength: *mut u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwQueryInformationThread(threadhandle : super::super::super::Win32::Foundation:: HANDLE, threadinformationclass : THREADINFOCLASS, threadinformation : *mut core::ffi::c_void, threadinformationlength : u32, returnlength : *mut u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwQueryInformationThread(threadhandle.param().abi(), threadinformationclass, threadinformation, threadinformationlength, returnlength) +} +#[inline] pub unsafe fn ZwSetInformationThread(threadhandle: P0, threadinformationclass: THREADINFOCLASS, threadinformation: *const core::ffi::c_void, threadinformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS where P0: windows_core::Param, @@ -39,8 +146,45 @@ where windows_targets::link!("ntdll.dll" "system" fn ZwSetInformationThread(threadhandle : super::super::super::Win32::Foundation:: HANDLE, threadinformationclass : THREADINFOCLASS, threadinformation : *const core::ffi::c_void, threadinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); ZwSetInformationThread(threadhandle.param().abi(), threadinformationclass, threadinformation, threadinformationlength) } +#[cfg(feature = "Wdk_System_SystemServices")] +#[inline] +pub unsafe fn ZwSetTimer(timerhandle: P0, duetime: *const i64, timerapcroutine: super::SystemServices::PTIMER_APC_ROUTINE, timercontext: Option<*const core::ffi::c_void>, resumetimer: P1, period: i32, previousstate: Option<*mut super::super::super::Win32::Foundation::BOOLEAN>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwSetTimer(timerhandle : super::super::super::Win32::Foundation:: HANDLE, duetime : *const i64, timerapcroutine : super::SystemServices:: PTIMER_APC_ROUTINE, timercontext : *const core::ffi::c_void, resumetimer : super::super::super::Win32::Foundation:: BOOLEAN, period : i32, previousstate : *mut super::super::super::Win32::Foundation:: BOOLEAN) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwSetTimer(timerhandle.param().abi(), duetime, timerapcroutine, core::mem::transmute(timercontext.unwrap_or(std::ptr::null())), resumetimer.param().abi(), period, core::mem::transmute(previousstate.unwrap_or(std::ptr::null_mut()))) +} +#[inline] +pub unsafe fn ZwSetTimerEx(timerhandle: P0, timersetinformationclass: TIMER_SET_INFORMATION_CLASS, timersetinformation: Option<*mut core::ffi::c_void>, timersetinformationlength: u32) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwSetTimerEx(timerhandle : super::super::super::Win32::Foundation:: HANDLE, timersetinformationclass : TIMER_SET_INFORMATION_CLASS, timersetinformation : *mut core::ffi::c_void, timersetinformationlength : u32) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwSetTimerEx(timerhandle.param().abi(), timersetinformationclass, core::mem::transmute(timersetinformation.unwrap_or(std::ptr::null_mut())), timersetinformationlength) +} +#[inline] +pub unsafe fn ZwTerminateProcess(processhandle: P0, exitstatus: P1) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwTerminateProcess(processhandle : super::super::super::Win32::Foundation:: HANDLE, exitstatus : super::super::super::Win32::Foundation:: NTSTATUS) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwTerminateProcess(processhandle.param().abi(), exitstatus.param().abi()) +} +#[inline] +pub unsafe fn ZwWaitForSingleObject(handle: P0, alertable: P1, timeout: Option<*const i64>) -> super::super::super::Win32::Foundation::NTSTATUS +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ntdll.dll" "system" fn ZwWaitForSingleObject(handle : super::super::super::Win32::Foundation:: HANDLE, alertable : super::super::super::Win32::Foundation:: BOOLEAN, timeout : *const i64) -> super::super::super::Win32::Foundation:: NTSTATUS); + ZwWaitForSingleObject(handle.param().abi(), alertable.param().abi(), core::mem::transmute(timeout.unwrap_or(std::ptr::null()))) +} pub const MaxProcessInfoClass: PROCESSINFOCLASS = PROCESSINFOCLASS(83i32); pub const MaxThreadInfoClass: THREADINFOCLASS = THREADINFOCLASS(56i32); +pub const MaxTimerInfoClass: TIMER_SET_INFORMATION_CLASS = TIMER_SET_INFORMATION_CLASS(1i32); pub const ProcessAccessToken: PROCESSINFOCLASS = PROCESSINFOCLASS(9i32); pub const ProcessAffinityMask: PROCESSINFOCLASS = PROCESSINFOCLASS(21i32); pub const ProcessAffinityUpdateMode: PROCESSINFOCLASS = PROCESSINFOCLASS(45i32); @@ -140,6 +284,7 @@ pub const ThreadIoPriority: THREADINFOCLASS = THREADINFOCLASS(22i32); pub const ThreadIsIoPending: THREADINFOCLASS = THREADINFOCLASS(16i32); pub const ThreadIsTerminated: THREADINFOCLASS = THREADINFOCLASS(20i32); pub const ThreadLastSystemCall: THREADINFOCLASS = THREADINFOCLASS(21i32); +pub const ThreadNameInformation: THREADINFOCLASS = THREADINFOCLASS(38i32); pub const ThreadPagePriority: THREADINFOCLASS = THREADINFOCLASS(24i32); pub const ThreadPerformanceCount: THREADINFOCLASS = THREADINFOCLASS(11i32); pub const ThreadPriority: THREADINFOCLASS = THREADINFOCLASS(2i32); @@ -154,6 +299,7 @@ pub const ThreadTimes: THREADINFOCLASS = THREADINFOCLASS(1i32); pub const ThreadUmsInformation: THREADINFOCLASS = THREADINFOCLASS(31i32); pub const ThreadWow64Context: THREADINFOCLASS = THREADINFOCLASS(29i32); pub const ThreadZeroTlsCell: THREADINFOCLASS = THREADINFOCLASS(10i32); +pub const TimerSetCoalescableTimer: TIMER_SET_INFORMATION_CLASS = TIMER_SET_INFORMATION_CLASS(0i32); #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct PROCESSINFOCLASS(pub i32); @@ -176,3 +322,14 @@ impl core::fmt::Debug for THREADINFOCLASS { f.debug_tuple("THREADINFOCLASS").field(&self.0).finish() } } +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct TIMER_SET_INFORMATION_CLASS(pub i32); +impl windows_core::TypeKind for TIMER_SET_INFORMATION_CLASS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for TIMER_SET_INFORMATION_CLASS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("TIMER_SET_INFORMATION_CLASS").field(&self.0).finish() + } +} diff --git a/crates/libs/windows/src/Windows/Wdk/System/mod.rs b/crates/libs/windows/src/Windows/Wdk/System/mod.rs index 5296b0d30e..0ce8fbd2e3 100644 --- a/crates/libs/windows/src/Windows/Wdk/System/mod.rs +++ b/crates/libs/windows/src/Windows/Wdk/System/mod.rs @@ -1,5 +1,7 @@ #[cfg(feature = "Wdk_System_IO")] pub mod IO; +#[cfg(feature = "Wdk_System_Memory")] +pub mod Memory; #[cfg(feature = "Wdk_System_OfflineRegistry")] pub mod OfflineRegistry; #[cfg(feature = "Wdk_System_Registry")] diff --git a/crates/libs/windows/src/Windows/Win32/Devices/Bluetooth/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/Bluetooth/mod.rs index 3164aee0c2..fc538a6ecd 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/Bluetooth/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/Bluetooth/mod.rs @@ -2026,13 +2026,14 @@ impl windows_core::TypeKind for HANDLE_SDP_TYPE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HBLUETOOTH_DEVICE_FIND(pub isize); +pub struct HBLUETOOTH_DEVICE_FIND(pub *mut core::ffi::c_void); impl HBLUETOOTH_DEVICE_FIND { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HBLUETOOTH_DEVICE_FIND { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = BluetoothFindDeviceClose(*self); @@ -2049,13 +2050,14 @@ impl windows_core::TypeKind for HBLUETOOTH_DEVICE_FIND { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HBLUETOOTH_RADIO_FIND(pub isize); +pub struct HBLUETOOTH_RADIO_FIND(pub *mut core::ffi::c_void); impl HBLUETOOTH_RADIO_FIND { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HBLUETOOTH_RADIO_FIND { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = BluetoothFindRadioClose(*self); diff --git a/crates/libs/windows/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs index 61ae0a823f..db5fc36e8d 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs @@ -1707,21 +1707,21 @@ pub unsafe fn SetupCreateDiskSpaceListW(reserved1: Option<*const core::ffi::c_vo SetupCreateDiskSpaceListW(core::mem::transmute(reserved1.unwrap_or(std::ptr::null())), reserved2, flags) } #[inline] -pub unsafe fn SetupDecompressOrCopyFileA(sourcefilename: P0, targetfilename: P1, compressiontype: Option<*const u32>) -> u32 +pub unsafe fn SetupDecompressOrCopyFileA(sourcefilename: P0, targetfilename: P1, compressiontype: Option<*const FILE_COMPRESSION_TYPE>) -> u32 where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileA(sourcefilename : windows_core::PCSTR, targetfilename : windows_core::PCSTR, compressiontype : *const u32) -> u32); + windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileA(sourcefilename : windows_core::PCSTR, targetfilename : windows_core::PCSTR, compressiontype : *const FILE_COMPRESSION_TYPE) -> u32); SetupDecompressOrCopyFileA(sourcefilename.param().abi(), targetfilename.param().abi(), core::mem::transmute(compressiontype.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn SetupDecompressOrCopyFileW(sourcefilename: P0, targetfilename: P1, compressiontype: Option<*const u32>) -> u32 +pub unsafe fn SetupDecompressOrCopyFileW(sourcefilename: P0, targetfilename: P1, compressiontype: Option<*const FILE_COMPRESSION_TYPE>) -> u32 where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileW(sourcefilename : windows_core::PCWSTR, targetfilename : windows_core::PCWSTR, compressiontype : *const u32) -> u32); + windows_targets::link!("setupapi.dll" "system" fn SetupDecompressOrCopyFileW(sourcefilename : windows_core::PCWSTR, targetfilename : windows_core::PCWSTR, compressiontype : *const FILE_COMPRESSION_TYPE) -> u32); SetupDecompressOrCopyFileW(sourcefilename.param().abi(), targetfilename.param().abi(), core::mem::transmute(compressiontype.unwrap_or(std::ptr::null()))) } #[inline] @@ -3085,35 +3085,35 @@ pub unsafe fn SetupGetFieldCount(context: *const INFCONTEXT) -> u32 { SetupGetFieldCount(context) } #[inline] -pub unsafe fn SetupGetFileCompressionInfoA(sourcefilename: P0, actualsourcefilename: *mut windows_core::PSTR, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut u32) -> u32 +pub unsafe fn SetupGetFileCompressionInfoA(sourcefilename: P0, actualsourcefilename: *mut windows_core::PSTR, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut FILE_COMPRESSION_TYPE) -> u32 where P0: windows_core::Param, { - windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoA(sourcefilename : windows_core::PCSTR, actualsourcefilename : *mut windows_core::PSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> u32); + windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoA(sourcefilename : windows_core::PCSTR, actualsourcefilename : *mut windows_core::PSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> u32); SetupGetFileCompressionInfoA(sourcefilename.param().abi(), actualsourcefilename, sourcefilesize, targetfilesize, compressiontype) } #[inline] -pub unsafe fn SetupGetFileCompressionInfoExA(sourcefilename: P0, actualsourcefilenamebuffer: Option<&[u8]>, requiredbufferlen: Option<*mut u32>, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut u32) -> windows_core::Result<()> +pub unsafe fn SetupGetFileCompressionInfoExA(sourcefilename: P0, actualsourcefilenamebuffer: Option<&[u8]>, requiredbufferlen: Option<*mut u32>, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut FILE_COMPRESSION_TYPE) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExA(sourcefilename : windows_core::PCSTR, actualsourcefilenamebuffer : windows_core::PCSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExA(sourcefilename : windows_core::PCSTR, actualsourcefilenamebuffer : windows_core::PCSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> super::super::Foundation:: BOOL); SetupGetFileCompressionInfoExA(sourcefilename.param().abi(), core::mem::transmute(actualsourcefilenamebuffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), actualsourcefilenamebuffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(requiredbufferlen.unwrap_or(std::ptr::null_mut())), sourcefilesize, targetfilesize, compressiontype).ok() } #[inline] -pub unsafe fn SetupGetFileCompressionInfoExW(sourcefilename: P0, actualsourcefilenamebuffer: Option<&[u16]>, requiredbufferlen: Option<*mut u32>, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut u32) -> windows_core::Result<()> +pub unsafe fn SetupGetFileCompressionInfoExW(sourcefilename: P0, actualsourcefilenamebuffer: Option<&[u16]>, requiredbufferlen: Option<*mut u32>, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut FILE_COMPRESSION_TYPE) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExW(sourcefilename : windows_core::PCWSTR, actualsourcefilenamebuffer : windows_core::PCWSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoExW(sourcefilename : windows_core::PCWSTR, actualsourcefilenamebuffer : windows_core::PCWSTR, actualsourcefilenamebufferlen : u32, requiredbufferlen : *mut u32, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> super::super::Foundation:: BOOL); SetupGetFileCompressionInfoExW(sourcefilename.param().abi(), core::mem::transmute(actualsourcefilenamebuffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), actualsourcefilenamebuffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(requiredbufferlen.unwrap_or(std::ptr::null_mut())), sourcefilesize, targetfilesize, compressiontype).ok() } #[inline] -pub unsafe fn SetupGetFileCompressionInfoW(sourcefilename: P0, actualsourcefilename: *mut windows_core::PWSTR, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut u32) -> u32 +pub unsafe fn SetupGetFileCompressionInfoW(sourcefilename: P0, actualsourcefilename: *mut windows_core::PWSTR, sourcefilesize: *mut u32, targetfilesize: *mut u32, compressiontype: *mut FILE_COMPRESSION_TYPE) -> u32 where P0: windows_core::Param, { - windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoW(sourcefilename : windows_core::PCWSTR, actualsourcefilename : *mut windows_core::PWSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut u32) -> u32); + windows_targets::link!("setupapi.dll" "system" fn SetupGetFileCompressionInfoW(sourcefilename : windows_core::PCWSTR, actualsourcefilename : *mut windows_core::PWSTR, sourcefilesize : *mut u32, targetfilesize : *mut u32, compressiontype : *mut FILE_COMPRESSION_TYPE) -> u32); SetupGetFileCompressionInfoW(sourcefilename.param().abi(), actualsourcefilename, sourcefilesize, targetfilesize, compressiontype) } #[inline] @@ -4893,10 +4893,10 @@ pub const FILEOP_NEWPATH: u32 = 4u32; pub const FILEOP_RENAME: u32 = 1u32; pub const FILEOP_RETRY: u32 = 1u32; pub const FILEOP_SKIP: u32 = 2u32; -pub const FILE_COMPRESSION_MSZIP: u32 = 2u32; -pub const FILE_COMPRESSION_NONE: u32 = 0u32; -pub const FILE_COMPRESSION_NTCAB: u32 = 3u32; -pub const FILE_COMPRESSION_WINLZA: u32 = 1u32; +pub const FILE_COMPRESSION_MSZIP: FILE_COMPRESSION_TYPE = FILE_COMPRESSION_TYPE(2u32); +pub const FILE_COMPRESSION_NONE: FILE_COMPRESSION_TYPE = FILE_COMPRESSION_TYPE(0u32); +pub const FILE_COMPRESSION_NTCAB: FILE_COMPRESSION_TYPE = FILE_COMPRESSION_TYPE(3u32); +pub const FILE_COMPRESSION_WINLZA: FILE_COMPRESSION_TYPE = FILE_COMPRESSION_TYPE(1u32); pub const FILTERED_LOG_CONF: CM_LOG_CONF = CM_LOG_CONF(1u32); pub const FLG_ADDPROPERTY_AND: u32 = 16u32; pub const FLG_ADDPROPERTY_APPEND: u32 = 4u32; @@ -6467,6 +6467,50 @@ impl core::fmt::Debug for DI_FUNCTION { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct FILE_COMPRESSION_TYPE(pub u32); +impl windows_core::TypeKind for FILE_COMPRESSION_TYPE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for FILE_COMPRESSION_TYPE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("FILE_COMPRESSION_TYPE").field(&self.0).finish() + } +} +impl FILE_COMPRESSION_TYPE { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for FILE_COMPRESSION_TYPE { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for FILE_COMPRESSION_TYPE { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for FILE_COMPRESSION_TYPE { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for FILE_COMPRESSION_TYPE { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for FILE_COMPRESSION_TYPE { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct INF_STYLE(pub u32); impl windows_core::TypeKind for INF_STYLE { type TypeKind = windows_core::CopyType; @@ -8020,10 +8064,18 @@ impl Default for FILE_IN_CABINET_INFO_W { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCMNOTIFICATION(pub isize); +pub struct HCMNOTIFICATION(pub *mut core::ffi::c_void); impl HCMNOTIFICATION { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HCMNOTIFICATION { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CM_Unregister_Notification(*self); + } } } impl Default for HCMNOTIFICATION { @@ -8043,6 +8095,7 @@ impl HDEVINFO { } } impl windows_core::Free for HDEVINFO { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = SetupDiDestroyDeviceInfoList(*self); diff --git a/crates/libs/windows/src/Windows/Win32/Devices/DeviceQuery/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/DeviceQuery/mod.rs index e0fb167f64..6cf2fc433d 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/DeviceQuery/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/DeviceQuery/mod.rs @@ -434,7 +434,12 @@ impl Default for DEV_QUERY_RESULT_ACTION_DATA_0 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDEVQUERY(pub isize); +pub struct HDEVQUERY(pub *mut core::ffi::c_void); +impl HDEVQUERY { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HDEVQUERY { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/Devices/Display/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/Display/mod.rs index 652ef998e7..1495201a40 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/Display/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/Display/mod.rs @@ -2838,10 +2838,10 @@ impl Default for DEVINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct DHPDEV(pub isize); +pub struct DHPDEV(pub *mut core::ffi::c_void); impl DHPDEV { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for DHPDEV { @@ -2854,10 +2854,10 @@ impl windows_core::TypeKind for DHPDEV { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct DHSURF(pub isize); +pub struct DHSURF(pub *mut core::ffi::c_void); impl DHSURF { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for DHSURF { @@ -4359,10 +4359,10 @@ impl Default for GLYPHPOS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HBM(pub isize); +pub struct HBM(pub *mut core::ffi::c_void); impl HBM { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HBM { @@ -4375,10 +4375,10 @@ impl windows_core::TypeKind for HBM { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDEV(pub isize); +pub struct HDEV(pub *mut core::ffi::c_void); impl HDEV { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HDEV { @@ -4391,10 +4391,10 @@ impl windows_core::TypeKind for HDEV { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDRVOBJ(pub isize); +pub struct HDRVOBJ(pub *mut core::ffi::c_void); impl HDRVOBJ { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HDRVOBJ { @@ -4407,10 +4407,10 @@ impl windows_core::TypeKind for HDRVOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HFASTMUTEX(pub isize); +pub struct HFASTMUTEX(pub *mut core::ffi::c_void); impl HFASTMUTEX { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HFASTMUTEX { @@ -4423,13 +4423,14 @@ impl windows_core::TypeKind for HFASTMUTEX { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSEMAPHORE(pub isize); +pub struct HSEMAPHORE(pub *mut core::ffi::c_void); impl HSEMAPHORE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HSEMAPHORE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { EngDeleteSemaphore(*self); @@ -4446,10 +4447,10 @@ impl windows_core::TypeKind for HSEMAPHORE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSURF(pub isize); +pub struct HSURF(pub *mut core::ffi::c_void); impl HSURF { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HSURF { diff --git a/crates/libs/windows/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs index 3bae3cd1b4..3e29745810 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs @@ -1170,10 +1170,18 @@ impl core::fmt::Debug for SW_DEVICE_LIFETIME { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSWDEVICE(pub isize); +pub struct HSWDEVICE(pub *mut core::ffi::c_void); impl HSWDEVICE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HSWDEVICE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + SwDeviceClose(*self); + } } } impl Default for HSWDEVICE { diff --git a/crates/libs/windows/src/Windows/Win32/Devices/Fax/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/Fax/mod.rs index 3a6bbe81a3..b0d1259976 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/Fax/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/Fax/mod.rs @@ -279,14 +279,14 @@ pub unsafe fn FaxPrintCoverPageW(faxcontextinfo: *const FAX_CONTEXT_INFOW, cover FaxPrintCoverPageW(faxcontextinfo, coverpageinfo).ok() } #[inline] -pub unsafe fn FaxRegisterRoutingExtensionW(faxhandle: P0, extensionname: P1, friendlyname: P2, imagename: P3, callback: PFAX_ROUTING_INSTALLATION_CALLBACKW, context: *mut core::ffi::c_void) -> windows_core::Result<()> +pub unsafe fn FaxRegisterRoutingExtensionW(faxhandle: P0, extensionname: P1, friendlyname: P2, imagename: P3, callback: PFAX_ROUTING_INSTALLATION_CALLBACKW, context: *const core::ffi::c_void) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("winfax.dll" "system" fn FaxRegisterRoutingExtensionW(faxhandle : super::super::Foundation:: HANDLE, extensionname : windows_core::PCWSTR, friendlyname : windows_core::PCWSTR, imagename : windows_core::PCWSTR, callback : PFAX_ROUTING_INSTALLATION_CALLBACKW, context : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("winfax.dll" "system" fn FaxRegisterRoutingExtensionW(faxhandle : super::super::Foundation:: HANDLE, extensionname : windows_core::PCWSTR, friendlyname : windows_core::PCWSTR, imagename : windows_core::PCWSTR, callback : PFAX_ROUTING_INSTALLATION_CALLBACKW, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); FaxRegisterRoutingExtensionW(faxhandle.param().abi(), extensionname.param().abi(), friendlyname.param().abi(), imagename.param().abi(), callback, context).ok() } #[inline] @@ -301,39 +301,39 @@ where FaxRegisterServiceProviderW(deviceprovider.param().abi(), friendlyname.param().abi(), imagename.param().abi(), tspname.param().abi()).ok() } #[inline] -pub unsafe fn FaxSendDocumentA(faxhandle: P0, filename: P1, jobparams: *mut FAX_JOB_PARAMA, coverpageinfo: *const FAX_COVERPAGE_INFOA, faxjobid: *mut u32) -> windows_core::Result<()> +pub unsafe fn FaxSendDocumentA(faxhandle: P0, filename: P1, jobparams: *const FAX_JOB_PARAMA, coverpageinfo: *const FAX_COVERPAGE_INFOA, faxjobid: *mut u32) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCSTR, jobparams : *mut FAX_JOB_PARAMA, coverpageinfo : *const FAX_COVERPAGE_INFOA, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCSTR, jobparams : *const FAX_JOB_PARAMA, coverpageinfo : *const FAX_COVERPAGE_INFOA, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); FaxSendDocumentA(faxhandle.param().abi(), filename.param().abi(), jobparams, coverpageinfo, faxjobid).ok() } #[inline] -pub unsafe fn FaxSendDocumentForBroadcastA(faxhandle: P0, filename: P1, faxjobid: *mut u32, faxrecipientcallback: PFAX_RECIPIENT_CALLBACKA, context: *mut core::ffi::c_void) -> windows_core::Result<()> +pub unsafe fn FaxSendDocumentForBroadcastA(faxhandle: P0, filename: P1, faxjobid: *mut u32, faxrecipientcallback: PFAX_RECIPIENT_CALLBACKA, context: *const core::ffi::c_void) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKA, context : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastA(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKA, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); FaxSendDocumentForBroadcastA(faxhandle.param().abi(), filename.param().abi(), faxjobid, faxrecipientcallback, context).ok() } #[inline] -pub unsafe fn FaxSendDocumentForBroadcastW(faxhandle: P0, filename: P1, faxjobid: *mut u32, faxrecipientcallback: PFAX_RECIPIENT_CALLBACKW, context: *mut core::ffi::c_void) -> windows_core::Result<()> +pub unsafe fn FaxSendDocumentForBroadcastW(faxhandle: P0, filename: P1, faxjobid: *mut u32, faxrecipientcallback: PFAX_RECIPIENT_CALLBACKW, context: *const core::ffi::c_void) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCWSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKW, context : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentForBroadcastW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCWSTR, faxjobid : *mut u32, faxrecipientcallback : PFAX_RECIPIENT_CALLBACKW, context : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); FaxSendDocumentForBroadcastW(faxhandle.param().abi(), filename.param().abi(), faxjobid, faxrecipientcallback, context).ok() } #[inline] -pub unsafe fn FaxSendDocumentW(faxhandle: P0, filename: P1, jobparams: *mut FAX_JOB_PARAMW, coverpageinfo: *const FAX_COVERPAGE_INFOW, faxjobid: *mut u32) -> windows_core::Result<()> +pub unsafe fn FaxSendDocumentW(faxhandle: P0, filename: P1, jobparams: *const FAX_JOB_PARAMW, coverpageinfo: *const FAX_COVERPAGE_INFOW, faxjobid: *mut u32) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCWSTR, jobparams : *mut FAX_JOB_PARAMW, coverpageinfo : *const FAX_COVERPAGE_INFOW, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("winfax.dll" "system" fn FaxSendDocumentW(faxhandle : super::super::Foundation:: HANDLE, filename : windows_core::PCWSTR, jobparams : *const FAX_JOB_PARAMW, coverpageinfo : *const FAX_COVERPAGE_INFOW, faxjobid : *mut u32) -> super::super::Foundation:: BOOL); FaxSendDocumentW(faxhandle.param().abi(), filename.param().abi(), jobparams, coverpageinfo, faxjobid).ok() } #[inline] @@ -7401,7 +7401,7 @@ pub type PFAXOPENPORT = Option super::super::Foundation::BOOL>; #[cfg(feature = "Win32_Graphics_Gdi")] pub type PFAXPRINTCOVERPAGEW = Option super::super::Foundation::BOOL>; -pub type PFAXREGISTERROUTINGEXTENSIONW = Option super::super::Foundation::BOOL>; +pub type PFAXREGISTERROUTINGEXTENSIONW = Option super::super::Foundation::BOOL>; pub type PFAXREGISTERSERVICEPROVIDERW = Option super::super::Foundation::BOOL>; pub type PFAXROUTEADDFILE = Option i32>; pub type PFAXROUTEDELETEFILE = Option i32>; @@ -7415,10 +7415,10 @@ pub type PFAXROUTEINITIALIZE = Option super::super::Foundation::BOOL>; pub type PFAXROUTEMODIFYROUTINGDATA = Option super::super::Foundation::BOOL>; pub type PFAXROUTESETROUTINGINFO = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTA = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTFORBROADCASTA = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTFORBROADCASTW = Option super::super::Foundation::BOOL>; -pub type PFAXSENDDOCUMENTW = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTA = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTFORBROADCASTA = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTFORBROADCASTW = Option super::super::Foundation::BOOL>; +pub type PFAXSENDDOCUMENTW = Option super::super::Foundation::BOOL>; pub type PFAXSETCONFIGURATIONA = Option super::super::Foundation::BOOL>; pub type PFAXSETCONFIGURATIONW = Option super::super::Foundation::BOOL>; pub type PFAXSETGLOBALROUTINGINFOA = Option super::super::Foundation::BOOL>; @@ -7444,9 +7444,9 @@ pub type PFAX_EXT_REGISTER_FOR_EVENTS = Option u32>; pub type PFAX_EXT_UNREGISTER_FOR_EVENTS = Option u32>; pub type PFAX_LINECALLBACK = Option; -pub type PFAX_RECIPIENT_CALLBACKA = Option super::super::Foundation::BOOL>; -pub type PFAX_RECIPIENT_CALLBACKW = Option super::super::Foundation::BOOL>; -pub type PFAX_ROUTING_INSTALLATION_CALLBACKW = Option super::super::Foundation::BOOL>; +pub type PFAX_RECIPIENT_CALLBACKA = Option super::super::Foundation::BOOL>; +pub type PFAX_RECIPIENT_CALLBACKW = Option super::super::Foundation::BOOL>; +pub type PFAX_ROUTING_INSTALLATION_CALLBACKW = Option super::super::Foundation::BOOL>; pub type PFAX_SEND_CALLBACK = Option super::super::Foundation::BOOL>; pub type PFAX_SERVICE_CALLBACK = Option super::super::Foundation::BOOL>; #[cfg(feature = "implement")] diff --git a/crates/libs/windows/src/Windows/Win32/Devices/SerialCommunication/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/SerialCommunication/mod.rs index 98a71bad7f..23f0a50911 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/SerialCommunication/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/SerialCommunication/mod.rs @@ -152,10 +152,18 @@ impl core::fmt::Debug for SERENUM_PORTION { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCOMDB(pub isize); +pub struct HCOMDB(pub *mut core::ffi::c_void); impl HCOMDB { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HCOMDB { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = ComDBClose(*self); + } } } impl Default for HCOMDB { diff --git a/crates/libs/windows/src/Windows/Win32/Devices/Tapi/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/Tapi/mod.rs index be3c4bb7d3..eb90f7c153 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/Tapi/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/Tapi/mod.rs @@ -10010,7 +10010,12 @@ impl Default for DTR { pub const DispatchMapper: windows_core::GUID = windows_core::GUID::from_u128(0xe9225296_c759_11d1_a02b_00c04fb6809f); #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDRVCALL(pub isize); +pub struct HDRVCALL(pub *mut core::ffi::c_void); +impl HDRVCALL { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HDRVCALL { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10021,7 +10026,12 @@ impl windows_core::TypeKind for HDRVCALL { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDRVDIALOGINSTANCE(pub isize); +pub struct HDRVDIALOGINSTANCE(pub *mut core::ffi::c_void); +impl HDRVDIALOGINSTANCE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HDRVDIALOGINSTANCE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10032,7 +10042,12 @@ impl windows_core::TypeKind for HDRVDIALOGINSTANCE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDRVLINE(pub isize); +pub struct HDRVLINE(pub *mut core::ffi::c_void); +impl HDRVLINE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HDRVLINE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10043,7 +10058,12 @@ impl windows_core::TypeKind for HDRVLINE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDRVMSPLINE(pub isize); +pub struct HDRVMSPLINE(pub *mut core::ffi::c_void); +impl HDRVMSPLINE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HDRVMSPLINE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10054,7 +10074,12 @@ impl windows_core::TypeKind for HDRVMSPLINE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDRVPHONE(pub isize); +pub struct HDRVPHONE(pub *mut core::ffi::c_void); +impl HDRVPHONE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HDRVPHONE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10065,7 +10090,12 @@ impl windows_core::TypeKind for HDRVPHONE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPROVIDER(pub isize); +pub struct HPROVIDER(pub *mut core::ffi::c_void); +impl HPROVIDER { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HPROVIDER { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10076,7 +10106,12 @@ impl windows_core::TypeKind for HPROVIDER { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HTAPICALL(pub isize); +pub struct HTAPICALL(pub *mut core::ffi::c_void); +impl HTAPICALL { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HTAPICALL { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10087,7 +10122,12 @@ impl windows_core::TypeKind for HTAPICALL { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HTAPILINE(pub isize); +pub struct HTAPILINE(pub *mut core::ffi::c_void); +impl HTAPILINE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HTAPILINE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10098,7 +10138,12 @@ impl windows_core::TypeKind for HTAPILINE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HTAPIPHONE(pub isize); +pub struct HTAPIPHONE(pub *mut core::ffi::c_void); +impl HTAPIPHONE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HTAPIPHONE { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/Devices/Usb/mod.rs b/crates/libs/windows/src/Windows/Win32/Devices/Usb/mod.rs index c794663de8..6b91fdcc2c 100644 --- a/crates/libs/windows/src/Windows/Win32/Devices/Usb/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Devices/Usb/mod.rs @@ -2375,7 +2375,12 @@ impl Default for USB_BUS_STATISTICS_0 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct USB_CHANGE_REGISTRATION_HANDLE(pub isize); +pub struct USB_CHANGE_REGISTRATION_HANDLE(pub *mut core::ffi::c_void); +impl USB_CHANGE_REGISTRATION_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for USB_CHANGE_REGISTRATION_HANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4544,13 +4549,14 @@ impl Default for USB_USB2HW_VERSION_PARAMETERS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct WINUSB_INTERFACE_HANDLE(pub isize); +pub struct WINUSB_INTERFACE_HANDLE(pub *mut core::ffi::c_void); impl WINUSB_INTERFACE_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == 0 + self.0.is_null() } } impl windows_core::Free for WINUSB_INTERFACE_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = WinUsb_Free(*self); diff --git a/crates/libs/windows/src/Windows/Win32/Foundation/mod.rs b/crates/libs/windows/src/Windows/Win32/Foundation/mod.rs index 23ecce8104..4a5ffe523d 100644 --- a/crates/libs/windows/src/Windows/Win32/Foundation/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Foundation/mod.rs @@ -6189,18 +6189,7 @@ pub const RPC_NT_WRONG_KIND_OF_BINDING: NTSTATUS = NTSTATUS(0xC0020002_u32 as _) pub const RPC_NT_WRONG_PIPE_VERSION: NTSTATUS = NTSTATUS(0xC003005E_u32 as _); pub const RPC_NT_WRONG_STUB_VERSION: NTSTATUS = NTSTATUS(0xC003005B_u32 as _); pub const RPC_NT_ZERO_DIVIDE: NTSTATUS = NTSTATUS(0xC0020044_u32 as _); -pub const RPC_S_ACCESS_DENIED: i32 = -1073741790i32; -pub const RPC_S_ASYNC_CALL_PENDING: i32 = 259i32; -pub const RPC_S_BUFFER_TOO_SMALL: i32 = -1073741789i32; pub const RPC_S_CALLPENDING: windows_core::HRESULT = windows_core::HRESULT(0x80010115_u32 as _); -pub const RPC_S_INVALID_ARG: i32 = -1073741811i32; -pub const RPC_S_INVALID_LEVEL: i32 = -1073741811i32; -pub const RPC_S_INVALID_SECURITY_DESC: i32 = -1073741703i32; -pub const RPC_S_NOT_ENOUGH_QUOTA: i32 = -1073741756i32; -pub const RPC_S_OUT_OF_MEMORY: i32 = -1073741801i32; -pub const RPC_S_OUT_OF_THREADS: i32 = -1073741801i32; -pub const RPC_S_SERVER_OUT_OF_MEMORY: i32 = -1073741307i32; -pub const RPC_S_UNKNOWN_PRINCIPAL: i32 = -1073741709i32; pub const RPC_S_WAITONTIMER: windows_core::HRESULT = windows_core::HRESULT(0x80010116_u32 as _); pub const RPC_X_BAD_STUB_DATA: i32 = 1783i32; pub const RPC_X_BYTE_COUNT_TOO_SMALL: i32 = 1782i32; @@ -10651,13 +10640,14 @@ impl Default for FLOAT128 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HANDLE(pub isize); +pub struct HANDLE(pub *mut core::ffi::c_void); impl HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = CloseHandle(*self); @@ -10692,6 +10682,7 @@ impl HGLOBAL { } } impl windows_core::Free for HGLOBAL { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = GlobalFree(*self); @@ -10708,13 +10699,14 @@ impl windows_core::TypeKind for HGLOBAL { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HINSTANCE(pub isize); +pub struct HINSTANCE(pub *mut core::ffi::c_void); impl HINSTANCE { pub fn is_invalid(&self) -> bool { - self.0 == 0 + self.0.is_null() } } impl windows_core::Free for HINSTANCE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = FreeLibrary(*self); @@ -10744,6 +10736,7 @@ impl HLOCAL { } } impl windows_core::Free for HLOCAL { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = LocalFree(*self); @@ -10760,7 +10753,12 @@ impl windows_core::TypeKind for HLOCAL { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HLSURF(pub isize); +pub struct HLSURF(pub *mut core::ffi::c_void); +impl HLSURF { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HLSURF { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10771,13 +10769,14 @@ impl windows_core::TypeKind for HLSURF { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMODULE(pub isize); +pub struct HMODULE(pub *mut core::ffi::c_void); impl HMODULE { pub fn is_invalid(&self) -> bool { - self.0 == 0 + self.0.is_null() } } impl windows_core::Free for HMODULE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = FreeLibrary(*self); @@ -10800,10 +10799,10 @@ impl From for HINSTANCE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRSRC(pub isize); +pub struct HRSRC(pub *mut core::ffi::c_void); impl HRSRC { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HRSRC { @@ -10816,7 +10815,12 @@ impl windows_core::TypeKind for HRSRC { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSPRITE(pub isize); +pub struct HSPRITE(pub *mut core::ffi::c_void); +impl HSPRITE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HSPRITE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10827,7 +10831,12 @@ impl windows_core::TypeKind for HSPRITE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSTR(pub isize); +pub struct HSTR(pub *mut core::ffi::c_void); +impl HSTR { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HSTR { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10838,7 +10847,12 @@ impl windows_core::TypeKind for HSTR { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HUMPD(pub isize); +pub struct HUMPD(pub *mut core::ffi::c_void); +impl HUMPD { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HUMPD { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10849,7 +10863,12 @@ impl windows_core::TypeKind for HUMPD { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HWND(pub isize); +pub struct HWND(pub *mut core::ffi::c_void); +impl HWND { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for HWND { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -10954,22 +10973,6 @@ impl Default for POINTS { unsafe { core::mem::zeroed() } } } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct PSID(pub *mut core::ffi::c_void); -impl PSID { - pub fn is_invalid(&self) -> bool { - self.0.is_null() - } -} -impl Default for PSID { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for PSID { - type TypeKind = windows_core::CopyType; -} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct RECT { diff --git a/crates/libs/windows/src/Windows/Win32/Globalization/mod.rs b/crates/libs/windows/src/Windows/Win32/Globalization/mod.rs index 27c5d9641a..9c05c9319d 100644 --- a/crates/libs/windows/src/Windows/Win32/Globalization/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Globalization/mod.rs @@ -992,12 +992,12 @@ where } #[cfg(feature = "Win32_Graphics_Gdi")] #[inline] -pub unsafe fn ScriptStringAnalyse(hdc: P0, pstring: *const core::ffi::c_void, cglyphs: i32, icharset: i32, dwflags: u32, ireqwidth: i32, pscontrol: Option<*const SCRIPT_CONTROL>, psstate: Option<*const SCRIPT_STATE>, pidx: Option<&[i32]>, ptabdef: Option<*const SCRIPT_TABDEF>, pbinclass: *const u8, pssa: *mut *mut core::ffi::c_void) -> windows_core::Result<()> +pub unsafe fn ScriptStringAnalyse(hdc: P0, pstring: *const core::ffi::c_void, cstring: i32, cglyphs: i32, icharset: i32, dwflags: u32, ireqwidth: i32, pscontrol: Option<*const SCRIPT_CONTROL>, psstate: Option<*const SCRIPT_STATE>, pidx: Option<*const i32>, ptabdef: Option<*const SCRIPT_TABDEF>, pbinclass: *const u8, pssa: *mut *mut core::ffi::c_void) -> windows_core::Result<()> where P0: windows_core::Param, { windows_targets::link!("usp10.dll" "system" fn ScriptStringAnalyse(hdc : super::Graphics::Gdi:: HDC, pstring : *const core::ffi::c_void, cstring : i32, cglyphs : i32, icharset : i32, dwflags : u32, ireqwidth : i32, pscontrol : *const SCRIPT_CONTROL, psstate : *const SCRIPT_STATE, pidx : *const i32, ptabdef : *const SCRIPT_TABDEF, pbinclass : *const u8, pssa : *mut *mut core::ffi::c_void) -> windows_core::HRESULT); - ScriptStringAnalyse(hdc.param().abi(), pstring, pidx.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), cglyphs, icharset, dwflags, ireqwidth, core::mem::transmute(pscontrol.unwrap_or(std::ptr::null())), core::mem::transmute(psstate.unwrap_or(std::ptr::null())), core::mem::transmute(pidx.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), core::mem::transmute(ptabdef.unwrap_or(std::ptr::null())), pbinclass, pssa).ok() + ScriptStringAnalyse(hdc.param().abi(), pstring, cstring, cglyphs, icharset, dwflags, ireqwidth, core::mem::transmute(pscontrol.unwrap_or(std::ptr::null())), core::mem::transmute(psstate.unwrap_or(std::ptr::null())), core::mem::transmute(pidx.unwrap_or(std::ptr::null())), core::mem::transmute(ptabdef.unwrap_or(std::ptr::null())), pbinclass, pssa).ok() } #[inline] pub unsafe fn ScriptStringCPtoX(ssa: *const core::ffi::c_void, icp: i32, ftrailing: P0) -> windows_core::Result @@ -8686,6 +8686,8 @@ pub const IS_TEXT_UNICODE_REVERSE_STATISTICS: IS_TEXT_UNICODE_RESULT = IS_TEXT_U pub const IS_TEXT_UNICODE_SIGNATURE: IS_TEXT_UNICODE_RESULT = IS_TEXT_UNICODE_RESULT(8u32); pub const IS_TEXT_UNICODE_STATISTICS: IS_TEXT_UNICODE_RESULT = IS_TEXT_UNICODE_RESULT(2u32); pub const IS_TEXT_UNICODE_UNICODE_MASK: IS_TEXT_UNICODE_RESULT = IS_TEXT_UNICODE_RESULT(15u32); +pub const LANG_SYSTEM_DEFAULT: i32 = 2048i32; +pub const LANG_USER_DEFAULT: i32 = 1024i32; pub const LCID_ALTERNATE_SORTS: u32 = 4u32; pub const LCID_INSTALLED: IS_VALID_LOCALE_FLAGS = IS_VALID_LOCALE_FLAGS(1u32); pub const LCID_SUPPORTED: IS_VALID_LOCALE_FLAGS = IS_VALID_LOCALE_FLAGS(2u32); @@ -8895,6 +8897,8 @@ pub const LOCALE_STIME: u32 = 30u32; pub const LOCALE_STIMEFORMAT: u32 = 4099u32; pub const LOCALE_SUPPLEMENTAL: u32 = 2u32; pub const LOCALE_SYEARMONTH: u32 = 4102u32; +pub const LOCALE_SYSTEM_DEFAULT: u32 = 2048u32; +pub const LOCALE_USER_DEFAULT: u32 = 1024u32; pub const LOCALE_USE_CP_ACP: u32 = 1073741824u32; pub const LOCALE_WINDOWS: u32 = 1u32; pub const LOWLEVEL_SERVICE_TYPES: u32 = 2u32; @@ -13621,42 +13625,10 @@ impl Default for GOFFSET { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HIMC(pub isize); -impl HIMC { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HIMC { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HIMC { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HIMCC(pub isize); -impl HIMCC { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HIMCC { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HIMCC { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSAVEDUILANGUAGES(pub isize); +pub struct HSAVEDUILANGUAGES(pub *mut core::ffi::c_void); impl HSAVEDUILANGUAGES { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HSAVEDUILANGUAGES { diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/impl.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/impl.rs index 8c0bdb12f9..5c08e86996 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/impl.rs @@ -2398,7 +2398,7 @@ impl ID2D1DeviceContext6_Vtbl { } #[cfg(all(feature = "Foundation_Numerics", feature = "Win32_Graphics_Direct2D_Common", feature = "Win32_Graphics_DirectWrite", feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Imaging", feature = "Win32_System_Com"))] pub trait ID2D1DeviceContext7_Impl: Sized + ID2D1DeviceContext6_Impl { - fn GetPaintFeatureLevel(&self) -> DWRITE_PAINT_FEATURE_LEVEL; + fn GetPaintFeatureLevel(&self) -> super::DirectWrite::DWRITE_PAINT_FEATURE_LEVEL; fn DrawPaintGlyphRun(&self, baselineorigin: &Common::D2D_POINT_2F, glyphrun: *const super::DirectWrite::DWRITE_GLYPH_RUN, defaultfillbrush: Option<&ID2D1Brush>, colorpaletteindex: u32, measuringmode: super::DirectWrite::DWRITE_MEASURING_MODE); fn DrawGlyphRunWithColorSupport(&self, baselineorigin: &Common::D2D_POINT_2F, glyphrun: *const super::DirectWrite::DWRITE_GLYPH_RUN, glyphrundescription: *const super::DirectWrite::DWRITE_GLYPH_RUN_DESCRIPTION, foregroundbrush: Option<&ID2D1Brush>, svgglyphstyle: Option<&ID2D1SvgGlyphStyle>, colorpaletteindex: u32, measuringmode: super::DirectWrite::DWRITE_MEASURING_MODE, bitmapsnapoption: D2D1_COLOR_BITMAP_GLYPH_SNAP_OPTION); } @@ -2410,7 +2410,7 @@ impl ID2D1DeviceContext7_Vtbl { where Identity: ID2D1DeviceContext7_Impl, { - unsafe extern "system" fn GetPaintFeatureLevel(this: *mut core::ffi::c_void) -> DWRITE_PAINT_FEATURE_LEVEL + unsafe extern "system" fn GetPaintFeatureLevel(this: *mut core::ffi::c_void) -> super::DirectWrite::DWRITE_PAINT_FEATURE_LEVEL where Identity: ID2D1DeviceContext7_Impl, { diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/mod.rs index fdc0a1517c..6ac6469c89 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Direct2D/mod.rs @@ -1914,7 +1914,8 @@ impl core::ops::Deref for ID2D1DeviceContext7 { } windows_core::imp::interface_hierarchy!(ID2D1DeviceContext7, windows_core::IUnknown, ID2D1Resource, ID2D1RenderTarget, ID2D1DeviceContext, ID2D1DeviceContext1, ID2D1DeviceContext2, ID2D1DeviceContext3, ID2D1DeviceContext4, ID2D1DeviceContext5, ID2D1DeviceContext6); impl ID2D1DeviceContext7 { - pub unsafe fn GetPaintFeatureLevel(&self) -> DWRITE_PAINT_FEATURE_LEVEL { + #[cfg(feature = "Win32_Graphics_DirectWrite")] + pub unsafe fn GetPaintFeatureLevel(&self) -> super::DirectWrite::DWRITE_PAINT_FEATURE_LEVEL { (windows_core::Interface::vtable(self).GetPaintFeatureLevel)(windows_core::Interface::as_raw(self)) } #[cfg(all(feature = "Win32_Graphics_Direct2D_Common", feature = "Win32_Graphics_DirectWrite"))] @@ -1938,7 +1939,10 @@ unsafe impl Sync for ID2D1DeviceContext7 {} #[repr(C)] pub struct ID2D1DeviceContext7_Vtbl { pub base__: ID2D1DeviceContext6_Vtbl, - pub GetPaintFeatureLevel: unsafe extern "system" fn(*mut core::ffi::c_void) -> DWRITE_PAINT_FEATURE_LEVEL, + #[cfg(feature = "Win32_Graphics_DirectWrite")] + pub GetPaintFeatureLevel: unsafe extern "system" fn(*mut core::ffi::c_void) -> super::DirectWrite::DWRITE_PAINT_FEATURE_LEVEL, + #[cfg(not(feature = "Win32_Graphics_DirectWrite"))] + GetPaintFeatureLevel: usize, #[cfg(all(feature = "Win32_Graphics_Direct2D_Common", feature = "Win32_Graphics_DirectWrite"))] pub DrawPaintGlyphRun: unsafe extern "system" fn(*mut core::ffi::c_void, Common::D2D_POINT_2F, *const super::DirectWrite::DWRITE_GLYPH_RUN, *mut core::ffi::c_void, u32, super::DirectWrite::DWRITE_MEASURING_MODE), #[cfg(not(all(feature = "Win32_Graphics_Direct2D_Common", feature = "Win32_Graphics_DirectWrite")))] @@ -8739,17 +8743,6 @@ impl core::fmt::Debug for D2D1_YCBCR_PROP { f.debug_tuple("D2D1_YCBCR_PROP").field(&self.0).finish() } } -#[repr(transparent)] -#[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct DWRITE_PAINT_FEATURE_LEVEL(pub i32); -impl windows_core::TypeKind for DWRITE_PAINT_FEATURE_LEVEL { - type TypeKind = windows_core::CopyType; -} -impl core::fmt::Debug for DWRITE_PAINT_FEATURE_LEVEL { - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("DWRITE_PAINT_FEATURE_LEVEL").field(&self.0).finish() - } -} #[repr(C)] #[cfg(feature = "Win32_Graphics_Direct2D_Common")] #[derive(Clone, Copy, Debug, PartialEq)] diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D/mod.rs index 047ec7f004..efeedcf698 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D/mod.rs @@ -116,9 +116,15 @@ pub const D3D10_PRIMITIVE_TOPOLOGY_UNDEFINED: D3D_PRIMITIVE_TOPOLOGY = D3D_PRIMI pub const D3D10_PRIMITIVE_TRIANGLE: D3D_PRIMITIVE = D3D_PRIMITIVE(3i32); pub const D3D10_PRIMITIVE_TRIANGLE_ADJ: D3D_PRIMITIVE = D3D_PRIMITIVE(7i32); pub const D3D10_PRIMITIVE_UNDEFINED: D3D_PRIMITIVE = D3D_PRIMITIVE(0i32); +pub const D3D10_REGISTER_COMPONENT_FLOAT16: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(6i32); pub const D3D10_REGISTER_COMPONENT_FLOAT32: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(3i32); +pub const D3D10_REGISTER_COMPONENT_FLOAT64: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(9i32); +pub const D3D10_REGISTER_COMPONENT_SINT16: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(5i32); pub const D3D10_REGISTER_COMPONENT_SINT32: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(2i32); +pub const D3D10_REGISTER_COMPONENT_SINT64: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(8i32); +pub const D3D10_REGISTER_COMPONENT_UINT16: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(4i32); pub const D3D10_REGISTER_COMPONENT_UINT32: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(1i32); +pub const D3D10_REGISTER_COMPONENT_UINT64: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(7i32); pub const D3D10_REGISTER_COMPONENT_UNKNOWN: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(0i32); pub const D3D10_RETURN_TYPE_FLOAT: D3D_RESOURCE_RETURN_TYPE = D3D_RESOURCE_RETURN_TYPE(5i32); pub const D3D10_RETURN_TYPE_MIXED: D3D_RESOURCE_RETURN_TYPE = D3D_RESOURCE_RETURN_TYPE(6i32); @@ -539,9 +545,15 @@ pub const D3D_PRIMITIVE_TOPOLOGY_UNDEFINED: D3D_PRIMITIVE_TOPOLOGY = D3D_PRIMITI pub const D3D_PRIMITIVE_TRIANGLE: D3D_PRIMITIVE = D3D_PRIMITIVE(3i32); pub const D3D_PRIMITIVE_TRIANGLE_ADJ: D3D_PRIMITIVE = D3D_PRIMITIVE(7i32); pub const D3D_PRIMITIVE_UNDEFINED: D3D_PRIMITIVE = D3D_PRIMITIVE(0i32); +pub const D3D_REGISTER_COMPONENT_FLOAT16: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(6i32); pub const D3D_REGISTER_COMPONENT_FLOAT32: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(3i32); +pub const D3D_REGISTER_COMPONENT_FLOAT64: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(9i32); +pub const D3D_REGISTER_COMPONENT_SINT16: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(5i32); pub const D3D_REGISTER_COMPONENT_SINT32: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(2i32); +pub const D3D_REGISTER_COMPONENT_SINT64: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(8i32); +pub const D3D_REGISTER_COMPONENT_UINT16: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(4i32); pub const D3D_REGISTER_COMPONENT_UINT32: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(1i32); +pub const D3D_REGISTER_COMPONENT_UINT64: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(7i32); pub const D3D_REGISTER_COMPONENT_UNKNOWN: D3D_REGISTER_COMPONENT_TYPE = D3D_REGISTER_COMPONENT_TYPE(0i32); pub const D3D_RETURN_TYPE_CONTINUED: D3D_RESOURCE_RETURN_TYPE = D3D_RESOURCE_RETURN_TYPE(8i32); pub const D3D_RETURN_TYPE_DOUBLE: D3D_RESOURCE_RETURN_TYPE = D3D_RESOURCE_RETURN_TYPE(7i32); @@ -554,6 +566,7 @@ pub const D3D_RETURN_TYPE_UNORM: D3D_RESOURCE_RETURN_TYPE = D3D_RESOURCE_RETURN_ pub const D3D_SHADER_FEATURE_11_1_DOUBLE_EXTENSIONS: u32 = 32u32; pub const D3D_SHADER_FEATURE_11_1_SHADER_EXTENSIONS: u32 = 64u32; pub const D3D_SHADER_FEATURE_64_UAVS: u32 = 8u32; +pub const D3D_SHADER_FEATURE_ADVANCED_TEXTURE_OPS: u32 = 536870912u32; pub const D3D_SHADER_FEATURE_ATOMIC_INT64_ON_DESCRIPTOR_HEAP_RESOURCE: u32 = 268435456u32; pub const D3D_SHADER_FEATURE_ATOMIC_INT64_ON_GROUP_SHARED: u32 = 8388608u32; pub const D3D_SHADER_FEATURE_ATOMIC_INT64_ON_TYPED_RESOURCE: u32 = 4194304u32; @@ -571,6 +584,7 @@ pub const D3D_SHADER_FEATURE_RESOURCE_DESCRIPTOR_HEAP_INDEXING: u32 = 33554432u3 pub const D3D_SHADER_FEATURE_ROVS: u32 = 4096u32; pub const D3D_SHADER_FEATURE_SAMPLER_DESCRIPTOR_HEAP_INDEXING: u32 = 67108864u32; pub const D3D_SHADER_FEATURE_SAMPLER_FEEDBACK: u32 = 2097152u32; +pub const D3D_SHADER_FEATURE_SAMPLE_CMP_GRADIENT_OR_BIAS: u32 = 2147483648u32; pub const D3D_SHADER_FEATURE_SHADING_RATE: u32 = 524288u32; pub const D3D_SHADER_FEATURE_STENCIL_REF: u32 = 512u32; pub const D3D_SHADER_FEATURE_TILED_RESOURCES: u32 = 256u32; @@ -580,6 +594,7 @@ pub const D3D_SHADER_FEATURE_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDING pub const D3D_SHADER_FEATURE_VIEW_ID: u32 = 65536u32; pub const D3D_SHADER_FEATURE_WAVE_MMA: u32 = 134217728u32; pub const D3D_SHADER_FEATURE_WAVE_OPS: u32 = 16384u32; +pub const D3D_SHADER_FEATURE_WRITEABLE_MSAA_TEXTURES: u32 = 1073741824u32; pub const D3D_SIF_COMPARISON_SAMPLER: D3D_SHADER_INPUT_FLAGS = D3D_SHADER_INPUT_FLAGS(2i32); pub const D3D_SIF_TEXTURE_COMPONENTS: D3D_SHADER_INPUT_FLAGS = D3D_SHADER_INPUT_FLAGS(12i32); pub const D3D_SIF_TEXTURE_COMPONENT_0: D3D_SHADER_INPUT_FLAGS = D3D_SHADER_INPUT_FLAGS(4i32); diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/impl.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/impl.rs index 210d4776f7..9e58f8286c 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/impl.rs @@ -1304,6 +1304,49 @@ impl ID3D12Device13_Vtbl { } } #[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Security"))] +pub trait ID3D12Device14_Impl: Sized + ID3D12Device13_Impl { + fn CreateRootSignatureFromSubobjectInLibrary(&self, nodemask: u32, plibraryblob: *const core::ffi::c_void, bloblengthinbytes: usize, subobjectname: &windows_core::PCWSTR, riid: *const windows_core::GUID, ppvrootsignature: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; +} +#[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Security"))] +impl windows_core::RuntimeName for ID3D12Device14 {} +#[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Security"))] +impl ID3D12Device14_Vtbl { + pub const fn new() -> ID3D12Device14_Vtbl + where + Identity: ID3D12Device14_Impl, + { + unsafe extern "system" fn CreateRootSignatureFromSubobjectInLibrary(this: *mut core::ffi::c_void, nodemask: u32, plibraryblob: *const core::ffi::c_void, bloblengthinbytes: usize, subobjectname: windows_core::PCWSTR, riid: *const windows_core::GUID, ppvrootsignature: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + where + Identity: ID3D12Device14_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12Device14_Impl::CreateRootSignatureFromSubobjectInLibrary(this, core::mem::transmute_copy(&nodemask), core::mem::transmute_copy(&plibraryblob), core::mem::transmute_copy(&bloblengthinbytes), core::mem::transmute(&subobjectname), core::mem::transmute_copy(&riid), core::mem::transmute_copy(&ppvrootsignature)).into() + } + Self { + base__: ID3D12Device13_Vtbl::new::(), + CreateRootSignatureFromSubobjectInLibrary: CreateRootSignatureFromSubobjectInLibrary::, + } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + } +} +#[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Security"))] pub trait ID3D12Device2_Impl: Sized + ID3D12Device1_Impl { fn CreatePipelineState(&self, pdesc: *const D3D12_PIPELINE_STATE_STREAM_DESC, riid: *const windows_core::GUID, pppipelinestate: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; } @@ -1788,6 +1831,34 @@ impl ID3D12DeviceConfiguration_Vtbl { } } #[cfg(feature = "Win32_Graphics_Direct3D")] +pub trait ID3D12DeviceConfiguration1_Impl: Sized + ID3D12DeviceConfiguration_Impl { + fn CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary(&self, plibraryblob: *const core::ffi::c_void, size: usize, rootsignaturesubobjectname: &windows_core::PCWSTR, riid: *const windows_core::GUID, ppvdeserializer: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; +} +#[cfg(feature = "Win32_Graphics_Direct3D")] +impl windows_core::RuntimeName for ID3D12DeviceConfiguration1 {} +#[cfg(feature = "Win32_Graphics_Direct3D")] +impl ID3D12DeviceConfiguration1_Vtbl { + pub const fn new() -> ID3D12DeviceConfiguration1_Vtbl + where + Identity: ID3D12DeviceConfiguration1_Impl, + { + unsafe extern "system" fn CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary(this: *mut core::ffi::c_void, plibraryblob: *const core::ffi::c_void, size: usize, rootsignaturesubobjectname: windows_core::PCWSTR, riid: *const windows_core::GUID, ppvdeserializer: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + where + Identity: ID3D12DeviceConfiguration1_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12DeviceConfiguration1_Impl::CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary(this, core::mem::transmute_copy(&plibraryblob), core::mem::transmute_copy(&size), core::mem::transmute(&rootsignaturesubobjectname), core::mem::transmute_copy(&riid), core::mem::transmute_copy(&ppvdeserializer)).into() + } + Self { + base__: ID3D12DeviceConfiguration_Vtbl::new::(), + CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary: CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary::, + } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID || iid == &::IID + } +} +#[cfg(feature = "Win32_Graphics_Direct3D")] pub trait ID3D12DeviceFactory_Impl: Sized { fn InitializeFromGlobalState(&self) -> windows_core::Result<()>; fn ApplyToGlobalState(&self) -> windows_core::Result<()>; @@ -2257,6 +2328,91 @@ impl ID3D12FunctionReflection { unsafe { windows_core::ScopedInterface::new(core::mem::transmute(&this.vtable)) } } } +#[cfg(feature = "Win32_Graphics_Dxgi_Common")] +pub trait ID3D12GBVDiagnostics_Impl: Sized { + fn GetGBVEntireSubresourceStatesData(&self, presource: Option<&ID3D12Resource>, pdata: *mut i32, datasize: u32) -> windows_core::Result<()>; + fn GetGBVSubresourceState(&self, presource: Option<&ID3D12Resource>, subresource: u32) -> windows_core::Result; + fn GetGBVResourceUniformState(&self, presource: Option<&ID3D12Resource>) -> windows_core::Result; + fn GetGBVResourceInfo(&self, presource: Option<&ID3D12Resource>, presourcedesc: *const D3D12_RESOURCE_DESC, presourcehash: *const u32, psubresourcestatesbyteoffset: *const u32) -> windows_core::Result<()>; + fn GBVReserved0(&self); + fn GBVReserved1(&self); +} +#[cfg(feature = "Win32_Graphics_Dxgi_Common")] +impl windows_core::RuntimeName for ID3D12GBVDiagnostics {} +#[cfg(feature = "Win32_Graphics_Dxgi_Common")] +impl ID3D12GBVDiagnostics_Vtbl { + pub const fn new() -> ID3D12GBVDiagnostics_Vtbl + where + Identity: ID3D12GBVDiagnostics_Impl, + { + unsafe extern "system" fn GetGBVEntireSubresourceStatesData(this: *mut core::ffi::c_void, presource: *mut core::ffi::c_void, pdata: *mut i32, datasize: u32) -> windows_core::HRESULT + where + Identity: ID3D12GBVDiagnostics_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12GBVDiagnostics_Impl::GetGBVEntireSubresourceStatesData(this, windows_core::from_raw_borrowed(&presource), core::mem::transmute_copy(&pdata), core::mem::transmute_copy(&datasize)).into() + } + unsafe extern "system" fn GetGBVSubresourceState(this: *mut core::ffi::c_void, presource: *mut core::ffi::c_void, subresource: u32, pdata: *mut i32) -> windows_core::HRESULT + where + Identity: ID3D12GBVDiagnostics_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + match ID3D12GBVDiagnostics_Impl::GetGBVSubresourceState(this, windows_core::from_raw_borrowed(&presource), core::mem::transmute_copy(&subresource)) { + Ok(ok__) => { + pdata.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } + } + unsafe extern "system" fn GetGBVResourceUniformState(this: *mut core::ffi::c_void, presource: *mut core::ffi::c_void, pdata: *mut i32) -> windows_core::HRESULT + where + Identity: ID3D12GBVDiagnostics_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + match ID3D12GBVDiagnostics_Impl::GetGBVResourceUniformState(this, windows_core::from_raw_borrowed(&presource)) { + Ok(ok__) => { + pdata.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } + } + unsafe extern "system" fn GetGBVResourceInfo(this: *mut core::ffi::c_void, presource: *mut core::ffi::c_void, presourcedesc: *const D3D12_RESOURCE_DESC, presourcehash: *const u32, psubresourcestatesbyteoffset: *const u32) -> windows_core::HRESULT + where + Identity: ID3D12GBVDiagnostics_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12GBVDiagnostics_Impl::GetGBVResourceInfo(this, windows_core::from_raw_borrowed(&presource), core::mem::transmute_copy(&presourcedesc), core::mem::transmute_copy(&presourcehash), core::mem::transmute_copy(&psubresourcestatesbyteoffset)).into() + } + unsafe extern "system" fn GBVReserved0(this: *mut core::ffi::c_void) + where + Identity: ID3D12GBVDiagnostics_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12GBVDiagnostics_Impl::GBVReserved0(this) + } + unsafe extern "system" fn GBVReserved1(this: *mut core::ffi::c_void) + where + Identity: ID3D12GBVDiagnostics_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12GBVDiagnostics_Impl::GBVReserved1(this) + } + Self { + base__: windows_core::IUnknown_Vtbl::new::(), + GetGBVEntireSubresourceStatesData: GetGBVEntireSubresourceStatesData::, + GetGBVSubresourceState: GetGBVSubresourceState::, + GetGBVResourceUniformState: GetGBVResourceUniformState::, + GetGBVResourceInfo: GetGBVResourceInfo::, + GBVReserved0: GBVReserved0::, + GBVReserved1: GBVReserved1::, + } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID + } +} #[cfg(all(feature = "Win32_Graphics_Direct3D", feature = "Win32_Graphics_Dxgi_Common"))] pub trait ID3D12GraphicsCommandList_Impl: Sized + ID3D12CommandList_Impl { fn Close(&self) -> windows_core::Result<()>; @@ -2809,6 +2965,56 @@ impl ID3D12GraphicsCommandList1_Vtbl { } } #[cfg(all(feature = "Win32_Graphics_Direct3D", feature = "Win32_Graphics_Dxgi_Common"))] +pub trait ID3D12GraphicsCommandList10_Impl: Sized + ID3D12GraphicsCommandList9_Impl { + fn SetProgram(&self, pdesc: *const D3D12_SET_PROGRAM_DESC); + fn DispatchGraph(&self, pdesc: *const D3D12_DISPATCH_GRAPH_DESC); +} +#[cfg(all(feature = "Win32_Graphics_Direct3D", feature = "Win32_Graphics_Dxgi_Common"))] +impl windows_core::RuntimeName for ID3D12GraphicsCommandList10 {} +#[cfg(all(feature = "Win32_Graphics_Direct3D", feature = "Win32_Graphics_Dxgi_Common"))] +impl ID3D12GraphicsCommandList10_Vtbl { + pub const fn new() -> ID3D12GraphicsCommandList10_Vtbl + where + Identity: ID3D12GraphicsCommandList10_Impl, + { + unsafe extern "system" fn SetProgram(this: *mut core::ffi::c_void, pdesc: *const D3D12_SET_PROGRAM_DESC) + where + Identity: ID3D12GraphicsCommandList10_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12GraphicsCommandList10_Impl::SetProgram(this, core::mem::transmute_copy(&pdesc)) + } + unsafe extern "system" fn DispatchGraph(this: *mut core::ffi::c_void, pdesc: *const D3D12_DISPATCH_GRAPH_DESC) + where + Identity: ID3D12GraphicsCommandList10_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12GraphicsCommandList10_Impl::DispatchGraph(this, core::mem::transmute_copy(&pdesc)) + } + Self { + base__: ID3D12GraphicsCommandList9_Vtbl::new::(), + SetProgram: SetProgram::, + DispatchGraph: DispatchGraph::, + } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + || iid == &::IID + } +} +#[cfg(all(feature = "Win32_Graphics_Direct3D", feature = "Win32_Graphics_Dxgi_Common"))] pub trait ID3D12GraphicsCommandList2_Impl: Sized + ID3D12GraphicsCommandList1_Impl { fn WriteBufferImmediate(&self, count: u32, pparams: *const D3D12_WRITEBUFFERIMMEDIATE_PARAMETER, pmodes: *const D3D12_WRITEBUFFERIMMEDIATE_MODE); } @@ -4718,6 +4924,28 @@ impl ID3D12StateObjectProperties_Vtbl { iid == &::IID } } +pub trait ID3D12StateObjectProperties1_Impl: Sized + ID3D12StateObjectProperties_Impl { + fn GetProgramIdentifier(&self, pprogramname: &windows_core::PCWSTR) -> D3D12_PROGRAM_IDENTIFIER; +} +impl windows_core::RuntimeName for ID3D12StateObjectProperties1 {} +impl ID3D12StateObjectProperties1_Vtbl { + pub const fn new() -> ID3D12StateObjectProperties1_Vtbl + where + Identity: ID3D12StateObjectProperties1_Impl, + { + unsafe extern "system" fn GetProgramIdentifier(this: *mut core::ffi::c_void, result__: *mut D3D12_PROGRAM_IDENTIFIER, pprogramname: windows_core::PCWSTR) + where + Identity: ID3D12StateObjectProperties1_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + *result__ = ID3D12StateObjectProperties1_Impl::GetProgramIdentifier(this, core::mem::transmute(&pprogramname)) + } + Self { base__: ID3D12StateObjectProperties_Vtbl::new::(), GetProgramIdentifier: GetProgramIdentifier:: } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID || iid == &::IID + } +} pub trait ID3D12SwapChainAssistant_Impl: Sized { fn GetLUID(&self) -> super::super::Foundation::LUID; fn GetSwapChainObject(&self, riid: *const windows_core::GUID, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; @@ -4890,3 +5118,136 @@ impl ID3D12VirtualizationGuestDevice_Vtbl { iid == &::IID } } +pub trait ID3D12WorkGraphProperties_Impl: Sized { + fn GetNumWorkGraphs(&self) -> u32; + fn GetProgramName(&self, workgraphindex: u32) -> windows_core::PCWSTR; + fn GetWorkGraphIndex(&self, pprogramname: &windows_core::PCWSTR) -> u32; + fn GetNumNodes(&self, workgraphindex: u32) -> u32; + fn GetNodeID(&self, workgraphindex: u32, nodeindex: u32) -> D3D12_NODE_ID; + fn GetNodeIndex(&self, workgraphindex: u32, nodeid: &D3D12_NODE_ID) -> u32; + fn GetNodeLocalRootArgumentsTableIndex(&self, workgraphindex: u32, nodeindex: u32) -> u32; + fn GetNumEntrypoints(&self, workgraphindex: u32) -> u32; + fn GetEntrypointID(&self, workgraphindex: u32, entrypointindex: u32) -> D3D12_NODE_ID; + fn GetEntrypointIndex(&self, workgraphindex: u32, nodeid: &D3D12_NODE_ID) -> u32; + fn GetEntrypointRecordSizeInBytes(&self, workgraphindex: u32, entrypointindex: u32) -> u32; + fn GetWorkGraphMemoryRequirements(&self, workgraphindex: u32, pworkgraphmemoryrequirements: *mut D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS); + fn GetEntrypointRecordAlignmentInBytes(&self, workgraphindex: u32, entrypointindex: u32) -> u32; +} +impl windows_core::RuntimeName for ID3D12WorkGraphProperties {} +impl ID3D12WorkGraphProperties_Vtbl { + pub const fn new() -> ID3D12WorkGraphProperties_Vtbl + where + Identity: ID3D12WorkGraphProperties_Impl, + { + unsafe extern "system" fn GetNumWorkGraphs(this: *mut core::ffi::c_void) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetNumWorkGraphs(this) + } + unsafe extern "system" fn GetProgramName(this: *mut core::ffi::c_void, workgraphindex: u32) -> windows_core::PCWSTR + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetProgramName(this, core::mem::transmute_copy(&workgraphindex)) + } + unsafe extern "system" fn GetWorkGraphIndex(this: *mut core::ffi::c_void, pprogramname: windows_core::PCWSTR) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetWorkGraphIndex(this, core::mem::transmute(&pprogramname)) + } + unsafe extern "system" fn GetNumNodes(this: *mut core::ffi::c_void, workgraphindex: u32) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetNumNodes(this, core::mem::transmute_copy(&workgraphindex)) + } + unsafe extern "system" fn GetNodeID(this: *mut core::ffi::c_void, result__: *mut D3D12_NODE_ID, workgraphindex: u32, nodeindex: u32) + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + *result__ = ID3D12WorkGraphProperties_Impl::GetNodeID(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute_copy(&nodeindex)) + } + unsafe extern "system" fn GetNodeIndex(this: *mut core::ffi::c_void, workgraphindex: u32, nodeid: D3D12_NODE_ID) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetNodeIndex(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute(&nodeid)) + } + unsafe extern "system" fn GetNodeLocalRootArgumentsTableIndex(this: *mut core::ffi::c_void, workgraphindex: u32, nodeindex: u32) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetNodeLocalRootArgumentsTableIndex(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute_copy(&nodeindex)) + } + unsafe extern "system" fn GetNumEntrypoints(this: *mut core::ffi::c_void, workgraphindex: u32) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetNumEntrypoints(this, core::mem::transmute_copy(&workgraphindex)) + } + unsafe extern "system" fn GetEntrypointID(this: *mut core::ffi::c_void, result__: *mut D3D12_NODE_ID, workgraphindex: u32, entrypointindex: u32) + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + *result__ = ID3D12WorkGraphProperties_Impl::GetEntrypointID(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute_copy(&entrypointindex)) + } + unsafe extern "system" fn GetEntrypointIndex(this: *mut core::ffi::c_void, workgraphindex: u32, nodeid: D3D12_NODE_ID) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetEntrypointIndex(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute(&nodeid)) + } + unsafe extern "system" fn GetEntrypointRecordSizeInBytes(this: *mut core::ffi::c_void, workgraphindex: u32, entrypointindex: u32) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetEntrypointRecordSizeInBytes(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute_copy(&entrypointindex)) + } + unsafe extern "system" fn GetWorkGraphMemoryRequirements(this: *mut core::ffi::c_void, workgraphindex: u32, pworkgraphmemoryrequirements: *mut D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS) + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetWorkGraphMemoryRequirements(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute_copy(&pworkgraphmemoryrequirements)) + } + unsafe extern "system" fn GetEntrypointRecordAlignmentInBytes(this: *mut core::ffi::c_void, workgraphindex: u32, entrypointindex: u32) -> u32 + where + Identity: ID3D12WorkGraphProperties_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + ID3D12WorkGraphProperties_Impl::GetEntrypointRecordAlignmentInBytes(this, core::mem::transmute_copy(&workgraphindex), core::mem::transmute_copy(&entrypointindex)) + } + Self { + base__: windows_core::IUnknown_Vtbl::new::(), + GetNumWorkGraphs: GetNumWorkGraphs::, + GetProgramName: GetProgramName::, + GetWorkGraphIndex: GetWorkGraphIndex::, + GetNumNodes: GetNumNodes::, + GetNodeID: GetNodeID::, + GetNodeIndex: GetNodeIndex::, + GetNodeLocalRootArgumentsTableIndex: GetNodeLocalRootArgumentsTableIndex::, + GetNumEntrypoints: GetNumEntrypoints::, + GetEntrypointID: GetEntrypointID::, + GetEntrypointIndex: GetEntrypointIndex::, + GetEntrypointRecordSizeInBytes: GetEntrypointRecordSizeInBytes::, + GetWorkGraphMemoryRequirements: GetWorkGraphMemoryRequirements::, + GetEntrypointRecordAlignmentInBytes: GetEntrypointRecordAlignmentInBytes::, + } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID + } +} diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/mod.rs index caa4184bc6..ea500b1ce8 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Direct3D12/mod.rs @@ -1109,6 +1109,31 @@ pub struct ID3D12Device13_Vtbl { pub base__: ID3D12Device12_Vtbl, pub OpenExistingHeapFromAddress1: unsafe extern "system" fn(*mut core::ffi::c_void, *const core::ffi::c_void, usize, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, } +windows_core::imp::define_interface!(ID3D12Device14, ID3D12Device14_Vtbl, 0x5f6e592d_d895_44c2_8e4a_88ad4926d323); +impl core::ops::Deref for ID3D12Device14 { + type Target = ID3D12Device13; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(ID3D12Device14, windows_core::IUnknown, ID3D12Object, ID3D12Device, ID3D12Device1, ID3D12Device2, ID3D12Device3, ID3D12Device4, ID3D12Device5, ID3D12Device6, ID3D12Device7, ID3D12Device8, ID3D12Device9, ID3D12Device10, ID3D12Device11, ID3D12Device12, ID3D12Device13); +impl ID3D12Device14 { + pub unsafe fn CreateRootSignatureFromSubobjectInLibrary(&self, nodemask: u32, plibraryblob: &[u8], subobjectname: P0) -> windows_core::Result + where + P0: windows_core::Param, + T: windows_core::Interface, + { + let mut result__ = core::ptr::null_mut(); + (windows_core::Interface::vtable(self).CreateRootSignatureFromSubobjectInLibrary)(windows_core::Interface::as_raw(self), nodemask, core::mem::transmute(plibraryblob.as_ptr()), plibraryblob.len().try_into().unwrap(), subobjectname.param().abi(), &T::IID, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } +} +unsafe impl Send for ID3D12Device14 {} +unsafe impl Sync for ID3D12Device14 {} +#[repr(C)] +pub struct ID3D12Device14_Vtbl { + pub base__: ID3D12Device13_Vtbl, + pub CreateRootSignatureFromSubobjectInLibrary: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *const core::ffi::c_void, usize, windows_core::PCWSTR, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, +} windows_core::imp::define_interface!(ID3D12Device2, ID3D12Device2_Vtbl, 0x30baa41e_b15b_475c_a0bb_1af5c5b64328); impl core::ops::Deref for ID3D12Device2 { type Target = ID3D12Device1; @@ -1534,6 +1559,31 @@ pub struct ID3D12DeviceConfiguration_Vtbl { SerializeVersionedRootSignature: usize, pub CreateVersionedRootSignatureDeserializer: unsafe extern "system" fn(*mut core::ffi::c_void, *const core::ffi::c_void, usize, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, } +windows_core::imp::define_interface!(ID3D12DeviceConfiguration1, ID3D12DeviceConfiguration1_Vtbl, 0xed342442_6343_4e16_bb82_a3a577874e56); +impl core::ops::Deref for ID3D12DeviceConfiguration1 { + type Target = ID3D12DeviceConfiguration; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(ID3D12DeviceConfiguration1, windows_core::IUnknown, ID3D12DeviceConfiguration); +impl ID3D12DeviceConfiguration1 { + pub unsafe fn CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary(&self, plibraryblob: *const core::ffi::c_void, size: usize, rootsignaturesubobjectname: P0) -> windows_core::Result + where + P0: windows_core::Param, + T: windows_core::Interface, + { + let mut result__ = core::ptr::null_mut(); + (windows_core::Interface::vtable(self).CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary)(windows_core::Interface::as_raw(self), plibraryblob, size, rootsignaturesubobjectname.param().abi(), &T::IID, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } +} +unsafe impl Send for ID3D12DeviceConfiguration1 {} +unsafe impl Sync for ID3D12DeviceConfiguration1 {} +#[repr(C)] +pub struct ID3D12DeviceConfiguration1_Vtbl { + pub base__: ID3D12DeviceConfiguration_Vtbl, + pub CreateVersionedRootSignatureDeserializerFromSubobjectInLibrary: unsafe extern "system" fn(*mut core::ffi::c_void, *const core::ffi::c_void, usize, windows_core::PCWSTR, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, +} windows_core::imp::define_interface!(ID3D12DeviceFactory, ID3D12DeviceFactory_Vtbl, 0x61f307d3_d34e_4e7c_8374_3ba4de23cccb); impl core::ops::Deref for ID3D12DeviceFactory { type Target = windows_core::IUnknown; @@ -1861,6 +1911,64 @@ pub struct ID3D12FunctionReflection_Vtbl { GetResourceBindingDescByName: usize, pub GetFunctionParameter: unsafe extern "system" fn(*mut core::ffi::c_void, i32) -> Option, } +windows_core::imp::define_interface!(ID3D12GBVDiagnostics, ID3D12GBVDiagnostics_Vtbl, 0x597985ab_9b75_4dbb_be23_0761195bebee); +impl core::ops::Deref for ID3D12GBVDiagnostics { + type Target = windows_core::IUnknown; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(ID3D12GBVDiagnostics, windows_core::IUnknown); +impl ID3D12GBVDiagnostics { + pub unsafe fn GetGBVEntireSubresourceStatesData(&self, presource: P0, pdata: *mut i32, datasize: u32) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).GetGBVEntireSubresourceStatesData)(windows_core::Interface::as_raw(self), presource.param().abi(), pdata, datasize).ok() + } + pub unsafe fn GetGBVSubresourceState(&self, presource: P0, subresource: u32) -> windows_core::Result + where + P0: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetGBVSubresourceState)(windows_core::Interface::as_raw(self), presource.param().abi(), subresource, &mut result__).map(|| result__) + } + pub unsafe fn GetGBVResourceUniformState(&self, presource: P0) -> windows_core::Result + where + P0: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetGBVResourceUniformState)(windows_core::Interface::as_raw(self), presource.param().abi(), &mut result__).map(|| result__) + } + #[cfg(feature = "Win32_Graphics_Dxgi_Common")] + pub unsafe fn GetGBVResourceInfo(&self, presource: P0, presourcedesc: Option<*const D3D12_RESOURCE_DESC>, presourcehash: Option<*const u32>, psubresourcestatesbyteoffset: Option<*const u32>) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).GetGBVResourceInfo)(windows_core::Interface::as_raw(self), presource.param().abi(), core::mem::transmute(presourcedesc.unwrap_or(std::ptr::null())), core::mem::transmute(presourcehash.unwrap_or(std::ptr::null())), core::mem::transmute(psubresourcestatesbyteoffset.unwrap_or(std::ptr::null()))).ok() + } + pub unsafe fn GBVReserved0(&self) { + (windows_core::Interface::vtable(self).GBVReserved0)(windows_core::Interface::as_raw(self)) + } + pub unsafe fn GBVReserved1(&self) { + (windows_core::Interface::vtable(self).GBVReserved1)(windows_core::Interface::as_raw(self)) + } +} +unsafe impl Send for ID3D12GBVDiagnostics {} +unsafe impl Sync for ID3D12GBVDiagnostics {} +#[repr(C)] +pub struct ID3D12GBVDiagnostics_Vtbl { + pub base__: windows_core::IUnknown_Vtbl, + pub GetGBVEntireSubresourceStatesData: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *mut i32, u32) -> windows_core::HRESULT, + pub GetGBVSubresourceState: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, u32, *mut i32) -> windows_core::HRESULT, + pub GetGBVResourceUniformState: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *mut i32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Graphics_Dxgi_Common")] + pub GetGBVResourceInfo: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *const D3D12_RESOURCE_DESC, *const u32, *const u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Dxgi_Common"))] + GetGBVResourceInfo: usize, + pub GBVReserved0: unsafe extern "system" fn(*mut core::ffi::c_void), + pub GBVReserved1: unsafe extern "system" fn(*mut core::ffi::c_void), +} windows_core::imp::define_interface!(ID3D12GraphicsCommandList, ID3D12GraphicsCommandList_Vtbl, 0x5b160d0f_ac1b_4185_8ba8_b3ae42a5a455); impl core::ops::Deref for ID3D12GraphicsCommandList { type Target = ID3D12CommandList; @@ -2218,6 +2326,30 @@ pub struct ID3D12GraphicsCommandList1_Vtbl { ResolveSubresourceRegion: usize, pub SetViewInstanceMask: unsafe extern "system" fn(*mut core::ffi::c_void, u32), } +windows_core::imp::define_interface!(ID3D12GraphicsCommandList10, ID3D12GraphicsCommandList10_Vtbl, 0x7013c015_d161_4b63_a08c_238552dd8acc); +impl core::ops::Deref for ID3D12GraphicsCommandList10 { + type Target = ID3D12GraphicsCommandList9; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(ID3D12GraphicsCommandList10, windows_core::IUnknown, ID3D12Object, ID3D12DeviceChild, ID3D12CommandList, ID3D12GraphicsCommandList, ID3D12GraphicsCommandList1, ID3D12GraphicsCommandList2, ID3D12GraphicsCommandList3, ID3D12GraphicsCommandList4, ID3D12GraphicsCommandList5, ID3D12GraphicsCommandList6, ID3D12GraphicsCommandList7, ID3D12GraphicsCommandList8, ID3D12GraphicsCommandList9); +impl ID3D12GraphicsCommandList10 { + pub unsafe fn SetProgram(&self, pdesc: *const D3D12_SET_PROGRAM_DESC) { + (windows_core::Interface::vtable(self).SetProgram)(windows_core::Interface::as_raw(self), pdesc) + } + pub unsafe fn DispatchGraph(&self, pdesc: *const D3D12_DISPATCH_GRAPH_DESC) { + (windows_core::Interface::vtable(self).DispatchGraph)(windows_core::Interface::as_raw(self), pdesc) + } +} +unsafe impl Send for ID3D12GraphicsCommandList10 {} +unsafe impl Sync for ID3D12GraphicsCommandList10 {} +#[repr(C)] +pub struct ID3D12GraphicsCommandList10_Vtbl { + pub base__: ID3D12GraphicsCommandList9_Vtbl, + pub SetProgram: unsafe extern "system" fn(*mut core::ffi::c_void, *const D3D12_SET_PROGRAM_DESC), + pub DispatchGraph: unsafe extern "system" fn(*mut core::ffi::c_void, *const D3D12_DISPATCH_GRAPH_DESC), +} windows_core::imp::define_interface!(ID3D12GraphicsCommandList2, ID3D12GraphicsCommandList2_Vtbl, 0x38c3e585_ff17_412c_9150_4fc6f9d72a28); impl core::ops::Deref for ID3D12GraphicsCommandList2 { type Target = ID3D12GraphicsCommandList1; @@ -3600,6 +3732,31 @@ pub struct ID3D12StateObjectProperties_Vtbl { pub GetPipelineStackSize: unsafe extern "system" fn(*mut core::ffi::c_void) -> u64, pub SetPipelineStackSize: unsafe extern "system" fn(*mut core::ffi::c_void, u64), } +windows_core::imp::define_interface!(ID3D12StateObjectProperties1, ID3D12StateObjectProperties1_Vtbl, 0x460caac7_1d24_446a_a184_ca67db494138); +impl core::ops::Deref for ID3D12StateObjectProperties1 { + type Target = ID3D12StateObjectProperties; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(ID3D12StateObjectProperties1, windows_core::IUnknown, ID3D12StateObjectProperties); +impl ID3D12StateObjectProperties1 { + pub unsafe fn GetProgramIdentifier(&self, pprogramname: P0) -> D3D12_PROGRAM_IDENTIFIER + where + P0: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetProgramIdentifier)(windows_core::Interface::as_raw(self), &mut result__, pprogramname.param().abi()); + result__ + } +} +unsafe impl Send for ID3D12StateObjectProperties1 {} +unsafe impl Sync for ID3D12StateObjectProperties1 {} +#[repr(C)] +pub struct ID3D12StateObjectProperties1_Vtbl { + pub base__: ID3D12StateObjectProperties_Vtbl, + pub GetProgramIdentifier: unsafe extern "system" fn(*mut core::ffi::c_void, *mut D3D12_PROGRAM_IDENTIFIER, windows_core::PCWSTR), +} windows_core::imp::define_interface!(ID3D12SwapChainAssistant, ID3D12SwapChainAssistant_Vtbl, 0xf1df64b6_57fd_49cd_8807_c0eb88b45c8f); impl core::ops::Deref for ID3D12SwapChainAssistant { type Target = windows_core::IUnknown; @@ -3726,6 +3883,81 @@ pub struct ID3D12VirtualizationGuestDevice_Vtbl { pub ShareWithHost: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *mut super::super::Foundation::HANDLE) -> windows_core::HRESULT, pub CreateFenceFd: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, u64, *mut i32) -> windows_core::HRESULT, } +windows_core::imp::define_interface!(ID3D12WorkGraphProperties, ID3D12WorkGraphProperties_Vtbl, 0x065acf71_f863_4b89_82f4_02e4d5886757); +impl core::ops::Deref for ID3D12WorkGraphProperties { + type Target = windows_core::IUnknown; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(ID3D12WorkGraphProperties, windows_core::IUnknown); +impl ID3D12WorkGraphProperties { + pub unsafe fn GetNumWorkGraphs(&self) -> u32 { + (windows_core::Interface::vtable(self).GetNumWorkGraphs)(windows_core::Interface::as_raw(self)) + } + pub unsafe fn GetProgramName(&self, workgraphindex: u32) -> windows_core::PCWSTR { + (windows_core::Interface::vtable(self).GetProgramName)(windows_core::Interface::as_raw(self), workgraphindex) + } + pub unsafe fn GetWorkGraphIndex(&self, pprogramname: P0) -> u32 + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).GetWorkGraphIndex)(windows_core::Interface::as_raw(self), pprogramname.param().abi()) + } + pub unsafe fn GetNumNodes(&self, workgraphindex: u32) -> u32 { + (windows_core::Interface::vtable(self).GetNumNodes)(windows_core::Interface::as_raw(self), workgraphindex) + } + pub unsafe fn GetNodeID(&self, workgraphindex: u32, nodeindex: u32) -> D3D12_NODE_ID { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetNodeID)(windows_core::Interface::as_raw(self), &mut result__, workgraphindex, nodeindex); + result__ + } + pub unsafe fn GetNodeIndex(&self, workgraphindex: u32, nodeid: D3D12_NODE_ID) -> u32 { + (windows_core::Interface::vtable(self).GetNodeIndex)(windows_core::Interface::as_raw(self), workgraphindex, core::mem::transmute(nodeid)) + } + pub unsafe fn GetNodeLocalRootArgumentsTableIndex(&self, workgraphindex: u32, nodeindex: u32) -> u32 { + (windows_core::Interface::vtable(self).GetNodeLocalRootArgumentsTableIndex)(windows_core::Interface::as_raw(self), workgraphindex, nodeindex) + } + pub unsafe fn GetNumEntrypoints(&self, workgraphindex: u32) -> u32 { + (windows_core::Interface::vtable(self).GetNumEntrypoints)(windows_core::Interface::as_raw(self), workgraphindex) + } + pub unsafe fn GetEntrypointID(&self, workgraphindex: u32, entrypointindex: u32) -> D3D12_NODE_ID { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetEntrypointID)(windows_core::Interface::as_raw(self), &mut result__, workgraphindex, entrypointindex); + result__ + } + pub unsafe fn GetEntrypointIndex(&self, workgraphindex: u32, nodeid: D3D12_NODE_ID) -> u32 { + (windows_core::Interface::vtable(self).GetEntrypointIndex)(windows_core::Interface::as_raw(self), workgraphindex, core::mem::transmute(nodeid)) + } + pub unsafe fn GetEntrypointRecordSizeInBytes(&self, workgraphindex: u32, entrypointindex: u32) -> u32 { + (windows_core::Interface::vtable(self).GetEntrypointRecordSizeInBytes)(windows_core::Interface::as_raw(self), workgraphindex, entrypointindex) + } + pub unsafe fn GetWorkGraphMemoryRequirements(&self, workgraphindex: u32, pworkgraphmemoryrequirements: *mut D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS) { + (windows_core::Interface::vtable(self).GetWorkGraphMemoryRequirements)(windows_core::Interface::as_raw(self), workgraphindex, pworkgraphmemoryrequirements) + } + pub unsafe fn GetEntrypointRecordAlignmentInBytes(&self, workgraphindex: u32, entrypointindex: u32) -> u32 { + (windows_core::Interface::vtable(self).GetEntrypointRecordAlignmentInBytes)(windows_core::Interface::as_raw(self), workgraphindex, entrypointindex) + } +} +unsafe impl Send for ID3D12WorkGraphProperties {} +unsafe impl Sync for ID3D12WorkGraphProperties {} +#[repr(C)] +pub struct ID3D12WorkGraphProperties_Vtbl { + pub base__: windows_core::IUnknown_Vtbl, + pub GetNumWorkGraphs: unsafe extern "system" fn(*mut core::ffi::c_void) -> u32, + pub GetProgramName: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> windows_core::PCWSTR, + pub GetWorkGraphIndex: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR) -> u32, + pub GetNumNodes: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> u32, + pub GetNodeID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut D3D12_NODE_ID, u32, u32), + pub GetNodeIndex: unsafe extern "system" fn(*mut core::ffi::c_void, u32, D3D12_NODE_ID) -> u32, + pub GetNodeLocalRootArgumentsTableIndex: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32) -> u32, + pub GetNumEntrypoints: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> u32, + pub GetEntrypointID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut D3D12_NODE_ID, u32, u32), + pub GetEntrypointIndex: unsafe extern "system" fn(*mut core::ffi::c_void, u32, D3D12_NODE_ID) -> u32, + pub GetEntrypointRecordSizeInBytes: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32) -> u32, + pub GetWorkGraphMemoryRequirements: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS), + pub GetEntrypointRecordAlignmentInBytes: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32) -> u32, +} pub const CLSID_D3D12Debug: windows_core::GUID = windows_core::GUID::from_u128(0xf2352aeb_dd84_49fe_b97b_a9dcfdcc1b4f); pub const CLSID_D3D12DeviceFactory: windows_core::GUID = windows_core::GUID::from_u128(0x114863bf_c386_4aee_b39d_8f0bbb062955); pub const CLSID_D3D12DeviceRemovedExtendedData: windows_core::GUID = windows_core::GUID::from_u128(0x4a75bbc4_9ff4_4ad8_9f18_abae84dc5ff2); @@ -3758,6 +3990,7 @@ pub const D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME: D3D12_AUTO_BREADCRUMB_OP = D3D12 pub const D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME1: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(27i32); pub const D3D12_AUTO_BREADCRUMB_OP_DECODEFRAME2: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(29i32); pub const D3D12_AUTO_BREADCRUMB_OP_DISPATCH: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(6i32); +pub const D3D12_AUTO_BREADCRUMB_OP_DISPATCHGRAPH: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(47i32); pub const D3D12_AUTO_BREADCRUMB_OP_DISPATCHMESH: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(42i32); pub const D3D12_AUTO_BREADCRUMB_OP_DISPATCHRAYS: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(34i32); pub const D3D12_AUTO_BREADCRUMB_OP_DRAWINDEXEDINSTANCED: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(4i32); @@ -3784,6 +4017,7 @@ pub const D3D12_AUTO_BREADCRUMB_OP_RESOLVESUBRESOURCEREGION: D3D12_AUTO_BREADCRU pub const D3D12_AUTO_BREADCRUMB_OP_RESOURCEBARRIER: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(15i32); pub const D3D12_AUTO_BREADCRUMB_OP_SETMARKER: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(0i32); pub const D3D12_AUTO_BREADCRUMB_OP_SETPIPELINESTATE1: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(39i32); +pub const D3D12_AUTO_BREADCRUMB_OP_SETPROGRAM: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(48i32); pub const D3D12_AUTO_BREADCRUMB_OP_SETPROTECTEDRESOURCESESSION: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(28i32); pub const D3D12_AUTO_BREADCRUMB_OP_WRITEBUFFERIMMEDIATE: D3D12_AUTO_BREADCRUMB_OP = D3D12_AUTO_BREADCRUMB_OP(26i32); pub const D3D12_AXIS_SHADING_RATE_1X: D3D12_AXIS_SHADING_RATE = D3D12_AXIS_SHADING_RATE(0i32); @@ -3907,6 +4141,7 @@ pub const D3D12_BUFFER_SRV_FLAG_NONE: D3D12_BUFFER_SRV_FLAGS = D3D12_BUFFER_SRV_ pub const D3D12_BUFFER_SRV_FLAG_RAW: D3D12_BUFFER_SRV_FLAGS = D3D12_BUFFER_SRV_FLAGS(1i32); pub const D3D12_BUFFER_UAV_FLAG_NONE: D3D12_BUFFER_UAV_FLAGS = D3D12_BUFFER_UAV_FLAGS(0i32); pub const D3D12_BUFFER_UAV_FLAG_RAW: D3D12_BUFFER_UAV_FLAGS = D3D12_BUFFER_UAV_FLAGS(1i32); +pub const D3D12_CENTER_MULTISAMPLE_PATTERN: D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS = D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS(-2i32); pub const D3D12_CLEAR_FLAG_DEPTH: D3D12_CLEAR_FLAGS = D3D12_CLEAR_FLAGS(1i32); pub const D3D12_CLEAR_FLAG_STENCIL: D3D12_CLEAR_FLAGS = D3D12_CLEAR_FLAGS(2i32); pub const D3D12_CLIP_OR_CULL_DISTANCE_COUNT: u32 = 8u32; @@ -4136,6 +4371,10 @@ pub const D3D12_DEVICE_FLAG_GPU_BASED_VALIDATION_ENABLED: D3D12_DEVICE_FLAGS = D pub const D3D12_DEVICE_FLAG_NONE: D3D12_DEVICE_FLAGS = D3D12_DEVICE_FLAGS(0i32); pub const D3D12_DEVICE_FLAG_SHADER_INSTRUMENTATION_ENABLED: D3D12_DEVICE_FLAGS = D3D12_DEVICE_FLAGS(256i32); pub const D3D12_DEVICE_FLAG_SYNCHRONIZED_COMMAND_QUEUE_VALIDATION_DISABLED: D3D12_DEVICE_FLAGS = D3D12_DEVICE_FLAGS(4i32); +pub const D3D12_DISPATCH_MODE_MULTI_NODE_CPU_INPUT: D3D12_DISPATCH_MODE = D3D12_DISPATCH_MODE(2i32); +pub const D3D12_DISPATCH_MODE_MULTI_NODE_GPU_INPUT: D3D12_DISPATCH_MODE = D3D12_DISPATCH_MODE(3i32); +pub const D3D12_DISPATCH_MODE_NODE_CPU_INPUT: D3D12_DISPATCH_MODE = D3D12_DISPATCH_MODE(0i32); +pub const D3D12_DISPATCH_MODE_NODE_GPU_INPUT: D3D12_DISPATCH_MODE = D3D12_DISPATCH_MODE(1i32); pub const D3D12_DRED_ALLOCATION_TYPE_COMMAND_ALLOCATOR: D3D12_DRED_ALLOCATION_TYPE = D3D12_DRED_ALLOCATION_TYPE(20i32); pub const D3D12_DRED_ALLOCATION_TYPE_COMMAND_LIST: D3D12_DRED_ALLOCATION_TYPE = D3D12_DRED_ALLOCATION_TYPE(22i32); pub const D3D12_DRED_ALLOCATION_TYPE_COMMAND_POOL: D3D12_DRED_ALLOCATION_TYPE = D3D12_DRED_ALLOCATION_TYPE(40i32); @@ -4223,6 +4462,8 @@ pub const D3D12_DS_OUTPUT_REGISTER_COMPONENT_BIT_COUNT: u32 = 32u32; pub const D3D12_DS_OUTPUT_REGISTER_COUNT: u32 = 32u32; pub const D3D12_ELEMENTS_LAYOUT_ARRAY: D3D12_ELEMENTS_LAYOUT = D3D12_ELEMENTS_LAYOUT(0i32); pub const D3D12_ELEMENTS_LAYOUT_ARRAY_OF_POINTERS: D3D12_ELEMENTS_LAYOUT = D3D12_ELEMENTS_LAYOUT(1i32); +pub const D3D12_EXECUTE_INDIRECT_TIER_1_0: D3D12_EXECUTE_INDIRECT_TIER = D3D12_EXECUTE_INDIRECT_TIER(10i32); +pub const D3D12_EXECUTE_INDIRECT_TIER_1_1: D3D12_EXECUTE_INDIRECT_TIER = D3D12_EXECUTE_INDIRECT_TIER(11i32); pub const D3D12_EXPORT_FLAG_NONE: D3D12_EXPORT_FLAGS = D3D12_EXPORT_FLAGS(0i32); pub const D3D12_FEATURE_ARCHITECTURE: D3D12_FEATURE = D3D12_FEATURE(1i32); pub const D3D12_FEATURE_ARCHITECTURE1: D3D12_FEATURE = D3D12_FEATURE(16i32); @@ -4242,6 +4483,7 @@ pub const D3D12_FEATURE_D3D12_OPTIONS18: D3D12_FEATURE = D3D12_FEATURE(47i32); pub const D3D12_FEATURE_D3D12_OPTIONS19: D3D12_FEATURE = D3D12_FEATURE(48i32); pub const D3D12_FEATURE_D3D12_OPTIONS2: D3D12_FEATURE = D3D12_FEATURE(18i32); pub const D3D12_FEATURE_D3D12_OPTIONS20: D3D12_FEATURE = D3D12_FEATURE(49i32); +pub const D3D12_FEATURE_D3D12_OPTIONS21: D3D12_FEATURE = D3D12_FEATURE(53i32); pub const D3D12_FEATURE_D3D12_OPTIONS3: D3D12_FEATURE = D3D12_FEATURE(21i32); pub const D3D12_FEATURE_D3D12_OPTIONS4: D3D12_FEATURE = D3D12_FEATURE(23i32); pub const D3D12_FEATURE_D3D12_OPTIONS5: D3D12_FEATURE = D3D12_FEATURE(27i32); @@ -4516,6 +4758,7 @@ pub const D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_MESH: D3D12_INDIRECT_ARGUMENT_TY pub const D3D12_INDIRECT_ARGUMENT_TYPE_DISPATCH_RAYS: D3D12_INDIRECT_ARGUMENT_TYPE = D3D12_INDIRECT_ARGUMENT_TYPE(9i32); pub const D3D12_INDIRECT_ARGUMENT_TYPE_DRAW: D3D12_INDIRECT_ARGUMENT_TYPE = D3D12_INDIRECT_ARGUMENT_TYPE(0i32); pub const D3D12_INDIRECT_ARGUMENT_TYPE_DRAW_INDEXED: D3D12_INDIRECT_ARGUMENT_TYPE = D3D12_INDIRECT_ARGUMENT_TYPE(1i32); +pub const D3D12_INDIRECT_ARGUMENT_TYPE_INCREMENTING_CONSTANT: D3D12_INDIRECT_ARGUMENT_TYPE = D3D12_INDIRECT_ARGUMENT_TYPE(11i32); pub const D3D12_INDIRECT_ARGUMENT_TYPE_INDEX_BUFFER_VIEW: D3D12_INDIRECT_ARGUMENT_TYPE = D3D12_INDIRECT_ARGUMENT_TYPE(4i32); pub const D3D12_INDIRECT_ARGUMENT_TYPE_SHADER_RESOURCE_VIEW: D3D12_INDIRECT_ARGUMENT_TYPE = D3D12_INDIRECT_ARGUMENT_TYPE(7i32); pub const D3D12_INDIRECT_ARGUMENT_TYPE_UNORDERED_ACCESS_VIEW: D3D12_INDIRECT_ARGUMENT_TYPE = D3D12_INDIRECT_ARGUMENT_TYPE(8i32); @@ -4643,6 +4886,7 @@ pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_FORMAT_INVALID: D3D12_ pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_NOT_SET: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(211i32); pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_BUFFER_TOO_SMALL: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(213i32); pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INDEX_OFFSET_UNALIGNED: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(222i32); +pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INSTANCE_COUNT_ZERO: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1418i32); pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_INVALID_PRIMITIVETOPOLOGY: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(219i32); pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_RENDER_TARGET_DELETED: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(924i32); pub const D3D12_MESSAGE_ID_COMMAND_LIST_DRAW_ROOT_SIGNATURE_MISMATCH: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(201i32); @@ -5061,6 +5305,7 @@ pub const D3D12_MESSAGE_ID_CREATE_SAMPLER_COMPARISON_FUNC_IGNORED: D3D12_MESSAGE pub const D3D12_MESSAGE_ID_CREATE_SAMPLER_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(742i32); pub const D3D12_MESSAGE_ID_CREATE_SHADERCACHESESSION: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1280i32); pub const D3D12_MESSAGE_ID_CREATE_STATE_OBJECT_ERROR: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1194i32); +pub const D3D12_MESSAGE_ID_CREATE_STATE_OBJECT_WARNING: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1414i32); pub const D3D12_MESSAGE_ID_CREATE_TRACKEDWORKLOAD: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1167i32); pub const D3D12_MESSAGE_ID_CREATE_UNORDEREDACCESS_VIEW_INVALID_COUNTER_USAGE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(652i32); pub const D3D12_MESSAGE_ID_CREATE_VIDEODECODECOMMANDLIST: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(979i32); @@ -5087,7 +5332,7 @@ pub const D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_HEAP_UNSUPPORTED_PARAMETERS: D3D pub const D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_INVALID_PARAMETERS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1309i32); pub const D3D12_MESSAGE_ID_CREATE_VIDEO_ENCODER_UNSUPPORTED_PARAMETERS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1310i32); pub const D3D12_MESSAGE_ID_CREATE_VIDEO_PROCESSOR_CAPS_FAILURE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1108i32); -pub const D3D12_MESSAGE_ID_D3D12_MESSAGES_END: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1387i32); +pub const D3D12_MESSAGE_ID_D3D12_MESSAGES_END: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1421i32); pub const D3D12_MESSAGE_ID_DATA_STATIC_DESCRIPTOR_INVALID_DATA_CHANGE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1002i32); pub const D3D12_MESSAGE_ID_DATA_STATIC_WHILE_SET_AT_EXECUTE_DESCRIPTOR_INVALID_DATA_CHANGE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1003i32); pub const D3D12_MESSAGE_ID_DECODE_FRAME_INVALID_PARAMETERS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(988i32); @@ -5095,6 +5340,7 @@ pub const D3D12_MESSAGE_ID_DEPRECATED_API: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(9 pub const D3D12_MESSAGE_ID_DEPTH_STENCIL_FORMAT_MISMATCH_PIPELINE_STATE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(615i32); pub const D3D12_MESSAGE_ID_DEPTH_STENCIL_SAMPLE_DESC_MISMATCH_PIPELINE_STATE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(616i32); pub const D3D12_MESSAGE_ID_DESCRIPTOR_HANDLE_WITH_INVALID_RESOURCE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1042i32); +pub const D3D12_MESSAGE_ID_DESCRIPTOR_HEAP_NOT_SET_BEFORE_ROOT_SIGNATURE_WITH_DIRECTLY_INDEXED_FLAG: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1419i32); pub const D3D12_MESSAGE_ID_DESCRIPTOR_HEAP_NOT_SHADER_VISIBLE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1315i32); pub const D3D12_MESSAGE_ID_DESTROYOWNEDOBJECT_OBJECTNOTOWNED: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1166i32); pub const D3D12_MESSAGE_ID_DESTROY_COMMANDALLOCATOR: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(584i32); @@ -5164,9 +5410,36 @@ pub const D3D12_MESSAGE_ID_DEVICE_OPEN_SHARED_HANDLE_ACCESS_DENIED: D3D12_MESSAG pub const D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_AT_FAULT: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(232i32); pub const D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_NOT_AT_FAULT: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(234i32); pub const D3D12_MESSAGE_ID_DEVICE_REMOVAL_PROCESS_POSSIBLY_AT_FAULT: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(233i32); +pub const D3D12_MESSAGE_ID_DIFFERENT_DESCRIPTOR_HEAP_SET_AFTER_ROOT_SIGNATURE_WITH_DIRECTLY_INDEXED_FLAG: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1420i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_OUT_OF_MEMORY: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1409i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_DUPLICATE_VARIANT_ID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1408i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_ENGINE_CREATE_FLAGS_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1394i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXPOSURE_SCALE_FORMAT_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1393i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_ENGINE_CREATION_ERROR: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1396i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_LOAD_FAILURE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1395i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_UPSCALER_CREATION_ERROR: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1397i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_EXTENSION_INTERNAL_UPSCALER_EXECUTION_ERROR: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1398i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_SOURCE_COLOR_FORMAT_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1391i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_SOURCE_DEPTH_FORMAT_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1392i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_TARGET_DIMENSION_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1390i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_TARGET_FORMAT_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1389i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EVICT_UNDERFLOW: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1411i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_EXPOSURE_SCALE_TEXTURE_SIZE_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1405i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_FLAGS_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1403i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_FORMAT_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1404i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_INVALID_CAMERA_JITTER: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1413i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_MOTION_VECTORS_FORMAT_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1402i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_OPTIONAL_TEXTURE_IS_NULL: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1412i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_REGION_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1399i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_REQUIRED_TEXTURE_IS_NULL: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1401i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_TIME_DELTA_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1400i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_UPSCALER_EXECUTE_UNEXPECTED_TEXTURE_IS_IGNORED: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1410i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_VARIANT_ID_NOT_FOUND: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1407i32); +pub const D3D12_MESSAGE_ID_DIRECTSR_SUPERRES_VARIANT_INDEX_OUT_OF_BOUNDS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1406i32); pub const D3D12_MESSAGE_ID_DISCARD_INVALID_SUBRESOURCE_RANGE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(995i32); pub const D3D12_MESSAGE_ID_DISCARD_NO_RECTS_FOR_NON_TEXTURE2D: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(997i32); pub const D3D12_MESSAGE_ID_DISCARD_ONE_SUBRESOURCE_FOR_MIPS_WITH_RECTS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(996i32); +pub const D3D12_MESSAGE_ID_DISPATCH_GRAPH_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1388i32); pub const D3D12_MESSAGE_ID_DISPATCH_RAYS_INVALID: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1161i32); pub const D3D12_MESSAGE_ID_DRAW_EMPTY_SCISSOR_RECTANGLE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(695i32); pub const D3D12_MESSAGE_ID_DRAW_POTENTIALLY_OUTSIDE_OF_VALID_RENDER_AREA: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1378i32); @@ -5234,9 +5507,11 @@ pub const D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_ARGUMENT_UNINITIALIZED: D3D pub const D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_ROOT_DESCRIPTOR_ACCESS_OUT_OF_BOUNDS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(961i32); pub const D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SAMPLER_MODE_MISMATCH: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1006i32); pub const D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_SRV_RESOURCE_DIMENSION_MISMATCH: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(940i32); +pub const D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_STRUCTURED_BUFFER_STRIDE_MISMATCH: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1387i32); pub const D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UAV_RESOURCE_DIMENSION_MISMATCH: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(941i32); pub const D3D12_MESSAGE_ID_GPU_BASED_VALIDATION_UNSUPPORTED: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1000i32); pub const D3D12_MESSAGE_ID_GRAPHICS_PIPELINE_STATE_DESC_ZERO_SAMPLE_MASK: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1352i32); +pub const D3D12_MESSAGE_ID_GUID_TEXTURE_LAYOUT_UNSUPPORTED: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1415i32); pub const D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_HAS_NO_RESOURCE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(923i32); pub const D3D12_MESSAGE_ID_HEAP_ADDRESS_RANGE_INTERSECTS_MULTIPLE_BUFFERS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(926i32); pub const D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_ACCESS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1332i32); @@ -5247,6 +5522,7 @@ pub const D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_TYPE: D3D12_MESSAGE_ID = D3D12_M pub const D3D12_MESSAGE_ID_INCOMPATIBLE_BARRIER_VALUES: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1331i32); pub const D3D12_MESSAGE_ID_INCOMPLETE_TRACKED_WORKLOAD_PAIR: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1193i32); pub const D3D12_MESSAGE_ID_INDEPENDENT_STENCIL_REF_NOT_SUPPORTED: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1353i32); +pub const D3D12_MESSAGE_ID_INVALID_BARRIER_ACCESS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1417i32); pub const D3D12_MESSAGE_ID_INVALID_BUNDLE_API: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(546i32); pub const D3D12_MESSAGE_ID_INVALID_CAST_TARGET: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1371i32); pub const D3D12_MESSAGE_ID_INVALID_DESCRIPTOR_HANDLE: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(646i32); @@ -5392,6 +5668,7 @@ pub const D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_RESOURCE_MISMATCH: D3D12_MESSAGE_I pub const D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_INVALID_MIP_LEVEL_COUNT: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1269i32); pub const D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_ARRAY_SIZE_MISMATCH: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1270i32); pub const D3D12_MESSAGE_ID_RESOLVESUBRESOURCE_SAMPLER_FEEDBACK_TRANSCODE_INVALID_FORMAT: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1268i32); +pub const D3D12_MESSAGE_ID_RESOLVE_ENCODER_INPUT_PARAM_LAYOUT_INVALID_PARAMETERS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1416i32); pub const D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_INVALID_PARAMETERS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1307i32); pub const D3D12_MESSAGE_ID_RESOLVE_ENCODER_OUTPUT_METADATA_UNSUPPORTED_PARAMETERS: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1308i32); pub const D3D12_MESSAGE_ID_RESOLVE_MOTION_VECTOR_HEAP_INVALID_ARGUMENT: D3D12_MESSAGE_ID = D3D12_MESSAGE_ID(1221i32); @@ -5569,6 +5846,12 @@ pub const D3D12_MULTIPLE_FENCE_WAIT_FLAG_NONE: D3D12_MULTIPLE_FENCE_WAIT_FLAGS = pub const D3D12_MULTISAMPLE_ANTIALIAS_LINE_WIDTH: f32 = 1.4f32; pub const D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_NONE: D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS = D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS(0i32); pub const D3D12_MULTISAMPLE_QUALITY_LEVELS_FLAG_TILED_RESOURCE: D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS = D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS(1i32); +pub const D3D12_NODE_OVERRIDES_TYPE_BROADCASTING_LAUNCH: D3D12_NODE_OVERRIDES_TYPE = D3D12_NODE_OVERRIDES_TYPE(1i32); +pub const D3D12_NODE_OVERRIDES_TYPE_COALESCING_LAUNCH: D3D12_NODE_OVERRIDES_TYPE = D3D12_NODE_OVERRIDES_TYPE(2i32); +pub const D3D12_NODE_OVERRIDES_TYPE_COMMON_COMPUTE: D3D12_NODE_OVERRIDES_TYPE = D3D12_NODE_OVERRIDES_TYPE(4i32); +pub const D3D12_NODE_OVERRIDES_TYPE_NONE: D3D12_NODE_OVERRIDES_TYPE = D3D12_NODE_OVERRIDES_TYPE(0i32); +pub const D3D12_NODE_OVERRIDES_TYPE_THREAD_LAUNCH: D3D12_NODE_OVERRIDES_TYPE = D3D12_NODE_OVERRIDES_TYPE(3i32); +pub const D3D12_NODE_TYPE_SHADER: D3D12_NODE_TYPE = D3D12_NODE_TYPE(0i32); pub const D3D12_NONSAMPLE_FETCH_OUT_OF_RANGE_ACCESS_RESULT: u32 = 0u32; pub const D3D12_OS_RESERVED_REGISTER_SPACE_VALUES_END: u32 = 4294967295u32; pub const D3D12_OS_RESERVED_REGISTER_SPACE_VALUES_START: u32 = 4294967288u32; @@ -5609,7 +5892,7 @@ pub const D3D12_PIPELINE_STATE_SUBOBJECT_TYPE_VS: D3D12_PIPELINE_STATE_SUBOBJECT pub const D3D12_PIXEL_ADDRESS_RANGE_BIT_COUNT: u32 = 15u32; pub const D3D12_PREDICATION_OP_EQUAL_ZERO: D3D12_PREDICATION_OP = D3D12_PREDICATION_OP(0i32); pub const D3D12_PREDICATION_OP_NOT_EQUAL_ZERO: D3D12_PREDICATION_OP = D3D12_PREDICATION_OP(1i32); -pub const D3D12_PREVIEW_SDK_VERSION: u32 = 712u32; +pub const D3D12_PREVIEW_SDK_VERSION: u32 = 714u32; pub const D3D12_PRE_SCISSOR_PIXEL_ADDRESS_RANGE_BIT_COUNT: u32 = 16u32; pub const D3D12_PRIMITIVE_TOPOLOGY_TYPE_LINE: D3D12_PRIMITIVE_TOPOLOGY_TYPE = D3D12_PRIMITIVE_TOPOLOGY_TYPE(2i32); pub const D3D12_PRIMITIVE_TOPOLOGY_TYPE_PATCH: D3D12_PRIMITIVE_TOPOLOGY_TYPE = D3D12_PRIMITIVE_TOPOLOGY_TYPE(4i32); @@ -5619,6 +5902,9 @@ pub const D3D12_PRIMITIVE_TOPOLOGY_TYPE_UNDEFINED: D3D12_PRIMITIVE_TOPOLOGY_TYPE pub const D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_1: D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER = D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER(1i32); pub const D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_2: D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER = D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER(2i32); pub const D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER_NOT_SUPPORTED: D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER = D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER(0i32); +pub const D3D12_PROGRAM_TYPE_GENERIC_PIPELINE: D3D12_PROGRAM_TYPE = D3D12_PROGRAM_TYPE(1i32); +pub const D3D12_PROGRAM_TYPE_RAYTRACING_PIPELINE: D3D12_PROGRAM_TYPE = D3D12_PROGRAM_TYPE(4i32); +pub const D3D12_PROGRAM_TYPE_WORK_GRAPH: D3D12_PROGRAM_TYPE = D3D12_PROGRAM_TYPE(5i32); pub const D3D12_PROTECTED_RESOURCES_SESSION_HARDWARE_PROTECTED: windows_core::GUID = windows_core::GUID::from_u128(0x62b0084e_c70e_4daa_a109_30ff8d5a0482); pub const D3D12_PROTECTED_RESOURCE_SESSION_FLAG_NONE: D3D12_PROTECTED_RESOURCE_SESSION_FLAGS = D3D12_PROTECTED_RESOURCE_SESSION_FLAGS(0i32); pub const D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAG_NONE: D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS = D3D12_PROTECTED_RESOURCE_SESSION_SUPPORT_FLAGS(0i32); @@ -5890,8 +6176,10 @@ pub const D3D12_SAMPLER_FEEDBACK_TIER_NOT_SUPPORTED: D3D12_SAMPLER_FEEDBACK_TIER pub const D3D12_SAMPLER_FLAG_NONE: D3D12_SAMPLER_FLAGS = D3D12_SAMPLER_FLAGS(0i32); pub const D3D12_SAMPLER_FLAG_NON_NORMALIZED_COORDINATES: D3D12_SAMPLER_FLAGS = D3D12_SAMPLER_FLAGS(2i32); pub const D3D12_SAMPLER_FLAG_UINT_BORDER_COLOR: D3D12_SAMPLER_FLAGS = D3D12_SAMPLER_FLAGS(1i32); -pub const D3D12_SDK_VERSION: u32 = 611u32; +pub const D3D12_SDK_VERSION: u32 = 614u32; pub const D3D12_SERIALIZED_DATA_RAYTRACING_ACCELERATION_STRUCTURE: D3D12_SERIALIZED_DATA_TYPE = D3D12_SERIALIZED_DATA_TYPE(0i32); +pub const D3D12_SET_WORK_GRAPH_FLAG_INITIALIZE: D3D12_SET_WORK_GRAPH_FLAGS = D3D12_SET_WORK_GRAPH_FLAGS(1i32); +pub const D3D12_SET_WORK_GRAPH_FLAG_NONE: D3D12_SET_WORK_GRAPH_FLAGS = D3D12_SET_WORK_GRAPH_FLAGS(0i32); pub const D3D12_SHADER_CACHE_CONTROL_FLAG_CLEAR: D3D12_SHADER_CACHE_CONTROL_FLAGS = D3D12_SHADER_CACHE_CONTROL_FLAGS(4i32); pub const D3D12_SHADER_CACHE_CONTROL_FLAG_DISABLE: D3D12_SHADER_CACHE_CONTROL_FLAGS = D3D12_SHADER_CACHE_CONTROL_FLAGS(1i32); pub const D3D12_SHADER_CACHE_CONTROL_FLAG_ENABLE: D3D12_SHADER_CACHE_CONTROL_FLAGS = D3D12_SHADER_CACHE_CONTROL_FLAGS(2i32); @@ -5970,6 +6258,7 @@ pub const D3D12_SHVER_INTERSECTION_SHADER: D3D12_SHADER_VERSION_TYPE = D3D12_SHA pub const D3D12_SHVER_LIBRARY: D3D12_SHADER_VERSION_TYPE = D3D12_SHADER_VERSION_TYPE(6i32); pub const D3D12_SHVER_MESH_SHADER: D3D12_SHADER_VERSION_TYPE = D3D12_SHADER_VERSION_TYPE(13i32); pub const D3D12_SHVER_MISS_SHADER: D3D12_SHADER_VERSION_TYPE = D3D12_SHADER_VERSION_TYPE(11i32); +pub const D3D12_SHVER_NODE_SHADER: D3D12_SHADER_VERSION_TYPE = D3D12_SHADER_VERSION_TYPE(15i32); pub const D3D12_SHVER_PIXEL_SHADER: D3D12_SHADER_VERSION_TYPE = D3D12_SHADER_VERSION_TYPE(0i32); pub const D3D12_SHVER_RAY_GENERATION_SHADER: D3D12_SHADER_VERSION_TYPE = D3D12_SHADER_VERSION_TYPE(7i32); pub const D3D12_SHVER_RESERVED0: D3D12_SHADER_VERSION_TYPE = D3D12_SHADER_VERSION_TYPE(65520i32); @@ -6010,6 +6299,7 @@ pub const D3D12_SRV_DIMENSION_UNKNOWN: D3D12_SRV_DIMENSION = D3D12_SRV_DIMENSION pub const D3D12_STANDARD_COMPONENT_BIT_COUNT: u32 = 32u32; pub const D3D12_STANDARD_COMPONENT_BIT_COUNT_DOUBLED: u32 = 64u32; pub const D3D12_STANDARD_MAXIMUM_ELEMENT_ALIGNMENT_BYTE_MULTIPLE: u32 = 4u32; +pub const D3D12_STANDARD_MULTISAMPLE_PATTERN: D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS = D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS(-1i32); pub const D3D12_STANDARD_PIXEL_COMPONENT_COUNT: u32 = 128u32; pub const D3D12_STANDARD_PIXEL_ELEMENT_COUNT: u32 = 32u32; pub const D3D12_STANDARD_VECTOR_SIZE: u32 = 4u32; @@ -6020,20 +6310,38 @@ pub const D3D12_STATE_OBJECT_FLAG_ALLOW_LOCAL_DEPENDENCIES_ON_EXTERNAL_DEFINITIO pub const D3D12_STATE_OBJECT_FLAG_ALLOW_STATE_OBJECT_ADDITIONS: D3D12_STATE_OBJECT_FLAGS = D3D12_STATE_OBJECT_FLAGS(4i32); pub const D3D12_STATE_OBJECT_FLAG_NONE: D3D12_STATE_OBJECT_FLAGS = D3D12_STATE_OBJECT_FLAGS(0i32); pub const D3D12_STATE_OBJECT_TYPE_COLLECTION: D3D12_STATE_OBJECT_TYPE = D3D12_STATE_OBJECT_TYPE(0i32); +pub const D3D12_STATE_OBJECT_TYPE_EXECUTABLE: D3D12_STATE_OBJECT_TYPE = D3D12_STATE_OBJECT_TYPE(4i32); pub const D3D12_STATE_OBJECT_TYPE_RAYTRACING_PIPELINE: D3D12_STATE_OBJECT_TYPE = D3D12_STATE_OBJECT_TYPE(3i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_BLEND: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(15i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(18i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL1: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(27i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL2: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(30i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_DEPTH_STENCIL_FORMAT: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(23i32); pub const D3D12_STATE_SUBOBJECT_TYPE_DXIL_LIBRARY: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(5i32); pub const D3D12_STATE_SUBOBJECT_TYPE_DXIL_SUBOBJECT_TO_EXPORTS_ASSOCIATION: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(8i32); pub const D3D12_STATE_SUBOBJECT_TYPE_EXISTING_COLLECTION: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(6i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_FLAGS: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(26i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_GENERIC_PROGRAM: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(29i32); pub const D3D12_STATE_SUBOBJECT_TYPE_GLOBAL_ROOT_SIGNATURE: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(1i32); pub const D3D12_STATE_SUBOBJECT_TYPE_HIT_GROUP: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(11i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_IB_STRIP_CUT_VALUE: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(20i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_INPUT_LAYOUT: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(19i32); pub const D3D12_STATE_SUBOBJECT_TYPE_LOCAL_ROOT_SIGNATURE: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(2i32); -pub const D3D12_STATE_SUBOBJECT_TYPE_MAX_VALID: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(13i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_MAX_VALID: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(31i32); pub const D3D12_STATE_SUBOBJECT_TYPE_NODE_MASK: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(3i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_PRIMITIVE_TOPOLOGY: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(21i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_RASTERIZER: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(17i32); pub const D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(10i32); pub const D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_PIPELINE_CONFIG1: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(12i32); pub const D3D12_STATE_SUBOBJECT_TYPE_RAYTRACING_SHADER_CONFIG: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(9i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_RENDER_TARGET_FORMATS: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(22i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_SAMPLE_DESC: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(24i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_SAMPLE_MASK: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(16i32); pub const D3D12_STATE_SUBOBJECT_TYPE_STATE_OBJECT_CONFIG: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(0i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_STREAM_OUTPUT: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(14i32); pub const D3D12_STATE_SUBOBJECT_TYPE_SUBOBJECT_TO_EXPORTS_ASSOCIATION: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(7i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_VIEW_INSTANCING: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(28i32); +pub const D3D12_STATE_SUBOBJECT_TYPE_WORK_GRAPH: D3D12_STATE_SUBOBJECT_TYPE = D3D12_STATE_SUBOBJECT_TYPE(13i32); pub const D3D12_STATIC_BORDER_COLOR_OPAQUE_BLACK: D3D12_STATIC_BORDER_COLOR = D3D12_STATIC_BORDER_COLOR(1i32); pub const D3D12_STATIC_BORDER_COLOR_OPAQUE_BLACK_UINT: D3D12_STATIC_BORDER_COLOR = D3D12_STATIC_BORDER_COLOR(3i32); pub const D3D12_STATIC_BORDER_COLOR_OPAQUE_WHITE: D3D12_STATIC_BORDER_COLOR = D3D12_STATIC_BORDER_COLOR(2i32); @@ -6144,16 +6452,20 @@ pub const D3D12_WAVE_MMA_TIER_NOT_SUPPORTED: D3D12_WAVE_MMA_TIER = D3D12_WAVE_MM pub const D3D12_WHQL_CONTEXT_COUNT_FOR_RESOURCE_LIMIT: u32 = 10u32; pub const D3D12_WHQL_DRAWINDEXED_INDEX_COUNT_2_TO_EXP: u32 = 25u32; pub const D3D12_WHQL_DRAW_VERTEX_COUNT_2_TO_EXP: u32 = 25u32; +pub const D3D12_WORK_GRAPHS_BACKING_MEMORY_ALIGNMENT_IN_BYTES: u32 = 8u32; +pub const D3D12_WORK_GRAPHS_MAX_NODE_DEPTH: u32 = 32u32; +pub const D3D12_WORK_GRAPHS_TIER_1_0: D3D12_WORK_GRAPHS_TIER = D3D12_WORK_GRAPHS_TIER(10i32); +pub const D3D12_WORK_GRAPHS_TIER_NOT_SUPPORTED: D3D12_WORK_GRAPHS_TIER = D3D12_WORK_GRAPHS_TIER(0i32); +pub const D3D12_WORK_GRAPH_FLAG_INCLUDE_ALL_AVAILABLE_NODES: D3D12_WORK_GRAPH_FLAGS = D3D12_WORK_GRAPH_FLAGS(1i32); +pub const D3D12_WORK_GRAPH_FLAG_NONE: D3D12_WORK_GRAPH_FLAGS = D3D12_WORK_GRAPH_FLAGS(0i32); pub const D3D12_WRITEBUFFERIMMEDIATE_MODE_DEFAULT: D3D12_WRITEBUFFERIMMEDIATE_MODE = D3D12_WRITEBUFFERIMMEDIATE_MODE(0i32); pub const D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_IN: D3D12_WRITEBUFFERIMMEDIATE_MODE = D3D12_WRITEBUFFERIMMEDIATE_MODE(1i32); pub const D3D12_WRITEBUFFERIMMEDIATE_MODE_MARKER_OUT: D3D12_WRITEBUFFERIMMEDIATE_MODE = D3D12_WRITEBUFFERIMMEDIATE_MODE(2i32); -pub const D3D_HIGHEST_SHADER_MODEL: D3D_SHADER_MODEL = D3D_SHADER_MODEL(104i32); +pub const D3D_HIGHEST_SHADER_MODEL: D3D_SHADER_MODEL = D3D_SHADER_MODEL(105i32); pub const D3D_ROOT_SIGNATURE_VERSION_1: D3D_ROOT_SIGNATURE_VERSION = D3D_ROOT_SIGNATURE_VERSION(1i32); pub const D3D_ROOT_SIGNATURE_VERSION_1_0: D3D_ROOT_SIGNATURE_VERSION = D3D_ROOT_SIGNATURE_VERSION(1i32); pub const D3D_ROOT_SIGNATURE_VERSION_1_1: D3D_ROOT_SIGNATURE_VERSION = D3D_ROOT_SIGNATURE_VERSION(2i32); pub const D3D_ROOT_SIGNATURE_VERSION_1_2: D3D_ROOT_SIGNATURE_VERSION = D3D_ROOT_SIGNATURE_VERSION(3i32); -pub const D3D_SHADER_FEATURE_ADVANCED_TEXTURE_OPS: u32 = 536870912u32; -pub const D3D_SHADER_FEATURE_WRITEABLE_MSAA_TEXTURES: u32 = 1073741824u32; pub const D3D_SHADER_MODEL_5_1: D3D_SHADER_MODEL = D3D_SHADER_MODEL(81i32); pub const D3D_SHADER_MODEL_6_0: D3D_SHADER_MODEL = D3D_SHADER_MODEL(96i32); pub const D3D_SHADER_MODEL_6_1: D3D_SHADER_MODEL = D3D_SHADER_MODEL(97i32); @@ -6164,6 +6476,9 @@ pub const D3D_SHADER_MODEL_6_5: D3D_SHADER_MODEL = D3D_SHADER_MODEL(101i32); pub const D3D_SHADER_MODEL_6_6: D3D_SHADER_MODEL = D3D_SHADER_MODEL(102i32); pub const D3D_SHADER_MODEL_6_7: D3D_SHADER_MODEL = D3D_SHADER_MODEL(103i32); pub const D3D_SHADER_MODEL_6_8: D3D_SHADER_MODEL = D3D_SHADER_MODEL(104i32); +pub const D3D_SHADER_MODEL_6_9: D3D_SHADER_MODEL = D3D_SHADER_MODEL(105i32); +pub const D3D_SHADER_MODEL_NONE: D3D_SHADER_MODEL = D3D_SHADER_MODEL(0i32); +pub const D3D_SHADER_REQUIRES_ADVANCED_TEXTURE_OPS: u32 = 536870912u32; pub const D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_DESCRIPTOR_HEAP_RESOURCE: u32 = 268435456u32; pub const D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_GROUP_SHARED: u32 = 8388608u32; pub const D3D_SHADER_REQUIRES_ATOMIC_INT64_ON_TYPED_RESOURCE: u32 = 4194304u32; @@ -6177,6 +6492,7 @@ pub const D3D_SHADER_REQUIRES_RESOURCE_DESCRIPTOR_HEAP_INDEXING: u32 = 33554432u pub const D3D_SHADER_REQUIRES_ROVS: u32 = 4096u32; pub const D3D_SHADER_REQUIRES_SAMPLER_DESCRIPTOR_HEAP_INDEXING: u32 = 67108864u32; pub const D3D_SHADER_REQUIRES_SAMPLER_FEEDBACK: u32 = 2097152u32; +pub const D3D_SHADER_REQUIRES_SAMPLE_CMP_GRADIENT_OR_BIAS: u32 = 2147483648u32; pub const D3D_SHADER_REQUIRES_SHADING_RATE: u32 = 524288u32; pub const D3D_SHADER_REQUIRES_STENCIL_REF: u32 = 512u32; pub const D3D_SHADER_REQUIRES_TYPED_UAV_LOAD_ADDITIONAL_FORMATS: u32 = 2048u32; @@ -6184,6 +6500,7 @@ pub const D3D_SHADER_REQUIRES_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDIN pub const D3D_SHADER_REQUIRES_VIEW_ID: u32 = 65536u32; pub const D3D_SHADER_REQUIRES_WAVE_MMA: u32 = 134217728u32; pub const D3D_SHADER_REQUIRES_WAVE_OPS: u32 = 16384u32; +pub const D3D_SHADER_REQUIRES_WRITEABLE_MSAA_TEXTURES: u32 = 1073741824u32; pub const DXGI_DEBUG_D3D12: windows_core::GUID = windows_core::GUID::from_u128(0xcf59a98c_a950_4326_91ef_9bbaa17bfd95); pub const LUID_DEFINED: u32 = 1u32; pub const NUM_D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODES: D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE = D3D12_GPU_BASED_VALIDATION_SHADER_PATCH_MODE(4i32); @@ -7081,6 +7398,17 @@ impl core::ops::Not for D3D12_DEVICE_FLAGS { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_DISPATCH_MODE(pub i32); +impl windows_core::TypeKind for D3D12_DISPATCH_MODE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_DISPATCH_MODE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_DISPATCH_MODE").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_DRED_ALLOCATION_TYPE(pub i32); impl windows_core::TypeKind for D3D12_DRED_ALLOCATION_TYPE { type TypeKind = windows_core::CopyType; @@ -7290,6 +7618,17 @@ impl core::fmt::Debug for D3D12_ELEMENTS_LAYOUT { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_EXECUTE_INDIRECT_TIER(pub i32); +impl windows_core::TypeKind for D3D12_EXECUTE_INDIRECT_TIER { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_EXECUTE_INDIRECT_TIER { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_EXECUTE_INDIRECT_TIER").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_EXPORT_FLAGS(pub i32); impl windows_core::TypeKind for D3D12_EXPORT_FLAGS { type TypeKind = windows_core::CopyType; @@ -8082,6 +8421,28 @@ impl core::ops::Not for D3D12_MULTISAMPLE_QUALITY_LEVEL_FLAGS { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_NODE_OVERRIDES_TYPE(pub i32); +impl windows_core::TypeKind for D3D12_NODE_OVERRIDES_TYPE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_NODE_OVERRIDES_TYPE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_NODE_OVERRIDES_TYPE").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_NODE_TYPE(pub i32); +impl windows_core::TypeKind for D3D12_NODE_TYPE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_NODE_TYPE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_NODE_TYPE").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_PIPELINE_STATE_FLAGS(pub i32); impl windows_core::TypeKind for D3D12_PIPELINE_STATE_FLAGS { type TypeKind = windows_core::CopyType; @@ -8170,6 +8531,17 @@ impl core::fmt::Debug for D3D12_PROGRAMMABLE_SAMPLE_POSITIONS_TIER { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_PROGRAM_TYPE(pub i32); +impl windows_core::TypeKind for D3D12_PROGRAM_TYPE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_PROGRAM_TYPE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_PROGRAM_TYPE").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_PROTECTED_RESOURCE_SESSION_FLAGS(pub i32); impl windows_core::TypeKind for D3D12_PROTECTED_RESOURCE_SESSION_FLAGS { type TypeKind = windows_core::CopyType; @@ -9116,6 +9488,50 @@ impl core::fmt::Debug for D3D12_SERIALIZED_DATA_TYPE { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_SET_WORK_GRAPH_FLAGS(pub i32); +impl windows_core::TypeKind for D3D12_SET_WORK_GRAPH_FLAGS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_SET_WORK_GRAPH_FLAGS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_SET_WORK_GRAPH_FLAGS").field(&self.0).finish() + } +} +impl D3D12_SET_WORK_GRAPH_FLAGS { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for D3D12_SET_WORK_GRAPH_FLAGS { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for D3D12_SET_WORK_GRAPH_FLAGS { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for D3D12_SET_WORK_GRAPH_FLAGS { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for D3D12_SET_WORK_GRAPH_FLAGS { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for D3D12_SET_WORK_GRAPH_FLAGS { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_SHADER_CACHE_CONTROL_FLAGS(pub i32); impl windows_core::TypeKind for D3D12_SHADER_CACHE_CONTROL_FLAGS { type TypeKind = windows_core::CopyType; @@ -9424,6 +9840,17 @@ impl core::fmt::Debug for D3D12_SRV_DIMENSION { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS(pub i32); +impl windows_core::TypeKind for D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_STANDARD_MULTISAMPLE_QUALITY_LEVELS").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_STATE_OBJECT_FLAGS(pub i32); impl windows_core::TypeKind for D3D12_STATE_OBJECT_FLAGS { type TypeKind = windows_core::CopyType; @@ -9798,6 +10225,61 @@ impl core::fmt::Debug for D3D12_WAVE_MMA_TIER { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_WORK_GRAPHS_TIER(pub i32); +impl windows_core::TypeKind for D3D12_WORK_GRAPHS_TIER { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_WORK_GRAPHS_TIER { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_WORK_GRAPHS_TIER").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_WORK_GRAPH_FLAGS(pub i32); +impl windows_core::TypeKind for D3D12_WORK_GRAPH_FLAGS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_WORK_GRAPH_FLAGS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_WORK_GRAPH_FLAGS").field(&self.0).finish() + } +} +impl D3D12_WORK_GRAPH_FLAGS { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for D3D12_WORK_GRAPH_FLAGS { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for D3D12_WORK_GRAPH_FLAGS { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for D3D12_WORK_GRAPH_FLAGS { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for D3D12_WORK_GRAPH_FLAGS { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for D3D12_WORK_GRAPH_FLAGS { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_WRITEBUFFERIMMEDIATE_MODE(pub i32); impl windows_core::TypeKind for D3D12_WRITEBUFFERIMMEDIATE_MODE { type TypeKind = windows_core::CopyType; @@ -9967,6 +10449,26 @@ impl Default for D3D12_BOX { } } #[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_BROADCASTING_LAUNCH_OVERRIDES { + pub pLocalRootArgumentsTableIndex: *const u32, + pub pProgramEntry: *const super::super::Foundation::BOOL, + pub pNewName: *const D3D12_NODE_ID, + pub pShareInputOf: *const D3D12_NODE_ID, + pub pDispatchGrid: *const u32, + pub pMaxDispatchGrid: *const u32, + pub NumOutputOverrides: u32, + pub pOutputOverrides: *const D3D12_NODE_OUTPUT_OVERRIDES, +} +impl windows_core::TypeKind for D3D12_BROADCASTING_LAUNCH_OVERRIDES { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_BROADCASTING_LAUNCH_OVERRIDES { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[derive(Debug, Eq, PartialEq)] pub struct D3D12_BUFFER_BARRIER { pub SyncBefore: D3D12_BARRIER_SYNC, @@ -10158,6 +10660,24 @@ impl Default for D3D12_CLEAR_VALUE_0 { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_COALESCING_LAUNCH_OVERRIDES { + pub pLocalRootArgumentsTableIndex: *const u32, + pub pProgramEntry: *const super::super::Foundation::BOOL, + pub pNewName: *const D3D12_NODE_ID, + pub pShareInputOf: *const D3D12_NODE_ID, + pub NumOutputOverrides: u32, + pub pOutputOverrides: *const D3D12_NODE_OUTPUT_OVERRIDES, +} +impl windows_core::TypeKind for D3D12_COALESCING_LAUNCH_OVERRIDES { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_COALESCING_LAUNCH_OVERRIDES { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_COMMAND_QUEUE_DESC { pub Type: D3D12_COMMAND_LIST_TYPE, pub Priority: i32, @@ -10189,6 +10709,24 @@ impl Default for D3D12_COMMAND_SIGNATURE_DESC { } } #[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_COMMON_COMPUTE_NODE_OVERRIDES { + pub pLocalRootArgumentsTableIndex: *const u32, + pub pProgramEntry: *const super::super::Foundation::BOOL, + pub pNewName: *const D3D12_NODE_ID, + pub pShareInputOf: *const D3D12_NODE_ID, + pub NumOutputOverrides: u32, + pub pOutputOverrides: *const D3D12_NODE_OUTPUT_OVERRIDES, +} +impl windows_core::TypeKind for D3D12_COMMON_COMPUTE_NODE_OVERRIDES { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_COMMON_COMPUTE_NODE_OVERRIDES { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[derive(Debug, Eq, PartialEq)] pub struct D3D12_COMPUTE_PIPELINE_STATE_DESC { pub pRootSignature: core::mem::ManuallyDrop>, @@ -10373,9 +10911,25 @@ impl Default for D3D12_DEPTH_STENCIL_DESC2 { } } #[repr(C)] -#[derive(Clone, Copy, Debug, PartialEq)] -pub struct D3D12_DEPTH_STENCIL_VALUE { - pub Depth: f32, +#[cfg(feature = "Win32_Graphics_Dxgi_Common")] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_DEPTH_STENCIL_FORMAT { + pub DepthStencilFormat: super::Dxgi::Common::DXGI_FORMAT, +} +#[cfg(feature = "Win32_Graphics_Dxgi_Common")] +impl windows_core::TypeKind for D3D12_DEPTH_STENCIL_FORMAT { + type TypeKind = windows_core::CopyType; +} +#[cfg(feature = "Win32_Graphics_Dxgi_Common")] +impl Default for D3D12_DEPTH_STENCIL_FORMAT { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, PartialEq)] +pub struct D3D12_DEPTH_STENCIL_VALUE { + pub Depth: f32, pub Stencil: u8, } impl windows_core::TypeKind for D3D12_DEPTH_STENCIL_VALUE { @@ -10585,6 +11139,36 @@ impl Default for D3D12_DISPATCH_ARGUMENTS { } } #[repr(C)] +#[derive(Clone, Copy)] +pub struct D3D12_DISPATCH_GRAPH_DESC { + pub Mode: D3D12_DISPATCH_MODE, + pub Anonymous: D3D12_DISPATCH_GRAPH_DESC_0, +} +impl windows_core::TypeKind for D3D12_DISPATCH_GRAPH_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_DISPATCH_GRAPH_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy)] +pub union D3D12_DISPATCH_GRAPH_DESC_0 { + pub NodeCPUInput: D3D12_NODE_CPU_INPUT, + pub NodeGPUInput: u64, + pub MultiNodeCPUInput: D3D12_MULTI_NODE_CPU_INPUT, + pub MultiNodeGPUInput: u64, +} +impl windows_core::TypeKind for D3D12_DISPATCH_GRAPH_DESC_0 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_DISPATCH_GRAPH_DESC_0 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_DISPATCH_MESH_ARGUMENTS { pub ThreadGroupCountX: u32, @@ -11129,6 +11713,22 @@ impl Default for D3D12_FEATURE_DATA_D3D12_OPTIONS20 { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_FEATURE_DATA_D3D12_OPTIONS21 { + pub WorkGraphsTier: D3D12_WORK_GRAPHS_TIER, + pub ExecuteIndirectTier: D3D12_EXECUTE_INDIRECT_TIER, + pub SampleCmpGradientAndBiasSupported: super::super::Foundation::BOOL, + pub ExtendedCommandInfoSupported: super::super::Foundation::BOOL, +} +impl windows_core::TypeKind for D3D12_FEATURE_DATA_D3D12_OPTIONS21 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_FEATURE_DATA_D3D12_OPTIONS21 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_FEATURE_DATA_D3D12_OPTIONS3 { pub CopyQueueTimestampQueriesSupported: super::super::Foundation::BOOL, pub CastingFullyTypedFormatSupported: super::super::Foundation::BOOL, @@ -11558,6 +12158,23 @@ impl Default for D3D12_FUNCTION_DESC { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_GENERIC_PROGRAM_DESC { + pub ProgramName: windows_core::PCWSTR, + pub NumExports: u32, + pub pExports: *const windows_core::PCWSTR, + pub NumSubobjects: u32, + pub ppSubobjects: *const *const D3D12_STATE_SUBOBJECT, +} +impl windows_core::TypeKind for D3D12_GENERIC_PROGRAM_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_GENERIC_PROGRAM_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_GLOBAL_BARRIER { pub SyncBefore: D3D12_BARRIER_SYNC, pub SyncAfter: D3D12_BARRIER_SYNC, @@ -11739,6 +12356,19 @@ impl Default for D3D12_HIT_GROUP_DESC { } } #[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_IB_STRIP_CUT_VALUE { + pub IndexBufferStripCutValue: D3D12_INDEX_BUFFER_STRIP_CUT_VALUE, +} +impl windows_core::TypeKind for D3D12_IB_STRIP_CUT_VALUE { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_IB_STRIP_CUT_VALUE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[cfg(feature = "Win32_Graphics_Dxgi_Common")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_INDEX_BUFFER_VIEW { @@ -11773,11 +12403,12 @@ impl Default for D3D12_INDIRECT_ARGUMENT_DESC { #[repr(C)] #[derive(Clone, Copy)] pub union D3D12_INDIRECT_ARGUMENT_DESC_0 { - pub VertexBuffer: D3D12_INDIRECT_ARGUMENT_DESC_0_4, + pub VertexBuffer: D3D12_INDIRECT_ARGUMENT_DESC_0_5, pub Constant: D3D12_INDIRECT_ARGUMENT_DESC_0_1, pub ConstantBufferView: D3D12_INDIRECT_ARGUMENT_DESC_0_0, - pub ShaderResourceView: D3D12_INDIRECT_ARGUMENT_DESC_0_2, - pub UnorderedAccessView: D3D12_INDIRECT_ARGUMENT_DESC_0_3, + pub ShaderResourceView: D3D12_INDIRECT_ARGUMENT_DESC_0_3, + pub UnorderedAccessView: D3D12_INDIRECT_ARGUMENT_DESC_0_4, + pub IncrementingConstant: D3D12_INDIRECT_ARGUMENT_DESC_0_2, } impl windows_core::TypeKind for D3D12_INDIRECT_ARGUMENT_DESC_0 { type TypeKind = windows_core::CopyType; @@ -11819,6 +12450,7 @@ impl Default for D3D12_INDIRECT_ARGUMENT_DESC_0_1 { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_INDIRECT_ARGUMENT_DESC_0_2 { pub RootParameterIndex: u32, + pub DestOffsetIn32BitValues: u32, } impl windows_core::TypeKind for D3D12_INDIRECT_ARGUMENT_DESC_0_2 { type TypeKind = windows_core::CopyType; @@ -11844,7 +12476,7 @@ impl Default for D3D12_INDIRECT_ARGUMENT_DESC_0_3 { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_INDIRECT_ARGUMENT_DESC_0_4 { - pub Slot: u32, + pub RootParameterIndex: u32, } impl windows_core::TypeKind for D3D12_INDIRECT_ARGUMENT_DESC_0_4 { type TypeKind = windows_core::CopyType; @@ -11856,6 +12488,19 @@ impl Default for D3D12_INDIRECT_ARGUMENT_DESC_0_4 { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_INDIRECT_ARGUMENT_DESC_0_5 { + pub Slot: u32, +} +impl windows_core::TypeKind for D3D12_INDIRECT_ARGUMENT_DESC_0_5 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_INDIRECT_ARGUMENT_DESC_0_5 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_INFO_QUEUE_FILTER { pub AllowList: D3D12_INFO_QUEUE_FILTER_DESC, pub DenyList: D3D12_INFO_QUEUE_FILTER_DESC, @@ -12040,6 +12685,107 @@ impl Default for D3D12_MIP_REGION { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_MULTI_NODE_CPU_INPUT { + pub NumNodeInputs: u32, + pub pNodeInputs: *const D3D12_NODE_CPU_INPUT, + pub NodeInputStrideInBytes: u64, +} +impl windows_core::TypeKind for D3D12_MULTI_NODE_CPU_INPUT { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_MULTI_NODE_CPU_INPUT { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_MULTI_NODE_GPU_INPUT { + pub NumNodeInputs: u32, + pub NodeInputs: D3D12_GPU_VIRTUAL_ADDRESS_AND_STRIDE, +} +impl windows_core::TypeKind for D3D12_MULTI_NODE_GPU_INPUT { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_MULTI_NODE_GPU_INPUT { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct D3D12_NODE { + pub NodeType: D3D12_NODE_TYPE, + pub Anonymous: D3D12_NODE_0, +} +impl windows_core::TypeKind for D3D12_NODE { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_NODE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy)] +pub union D3D12_NODE_0 { + pub Shader: D3D12_SHADER_NODE, +} +impl windows_core::TypeKind for D3D12_NODE_0 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_NODE_0 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_NODE_CPU_INPUT { + pub EntrypointIndex: u32, + pub NumRecords: u32, + pub pRecords: *const core::ffi::c_void, + pub RecordStrideInBytes: u64, +} +impl windows_core::TypeKind for D3D12_NODE_CPU_INPUT { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_NODE_CPU_INPUT { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_NODE_GPU_INPUT { + pub EntrypointIndex: u32, + pub NumRecords: u32, + pub Records: D3D12_GPU_VIRTUAL_ADDRESS_AND_STRIDE, +} +impl windows_core::TypeKind for D3D12_NODE_GPU_INPUT { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_NODE_GPU_INPUT { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_NODE_ID { + pub Name: windows_core::PCWSTR, + pub ArrayIndex: u32, +} +impl windows_core::TypeKind for D3D12_NODE_ID { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_NODE_ID { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_NODE_MASK { pub NodeMask: u32, } @@ -12053,6 +12799,23 @@ impl Default for D3D12_NODE_MASK { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_NODE_OUTPUT_OVERRIDES { + pub OutputIndex: u32, + pub pNewName: *const D3D12_NODE_ID, + pub pAllowSparseNodes: *const super::super::Foundation::BOOL, + pub pMaxRecords: *const u32, + pub pMaxRecordsSharedWithOutputIndex: *const u32, +} +impl windows_core::TypeKind for D3D12_NODE_OUTPUT_OVERRIDES { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_NODE_OUTPUT_OVERRIDES { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_PACKED_MIP_INFO { pub NumStandardMips: u8, pub NumPackedMips: u8, @@ -12127,6 +12890,32 @@ impl Default for D3D12_PLACED_SUBRESOURCE_FOOTPRINT { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_PRIMITIVE_TOPOLOGY_DESC { + pub PrimitiveTopology: D3D12_PRIMITIVE_TOPOLOGY_TYPE, +} +impl windows_core::TypeKind for D3D12_PRIMITIVE_TOPOLOGY_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_PRIMITIVE_TOPOLOGY_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_PROGRAM_IDENTIFIER { + pub OpaqueData: [u64; 4], +} +impl windows_core::TypeKind for D3D12_PROGRAM_IDENTIFIER { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_PROGRAM_IDENTIFIER { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_PROTECTED_RESOURCE_SESSION_DESC { pub NodeMask: u32, pub Flags: D3D12_PROTECTED_RESOURCE_SESSION_FLAGS, @@ -13284,6 +14073,19 @@ impl Default for D3D12_SAMPLER_DESC2_0 { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_SAMPLE_MASK { + pub SampleMask: u32, +} +impl windows_core::TypeKind for D3D12_SAMPLE_MASK { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SAMPLE_MASK { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_SAMPLE_POSITION { pub X: i8, pub Y: i8, @@ -13327,6 +14129,77 @@ impl Default for D3D12_SERIALIZED_RAYTRACING_ACCELERATION_STRUCTURE_HEADER { } } #[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_SET_GENERIC_PIPELINE_DESC { + pub ProgramIdentifier: D3D12_PROGRAM_IDENTIFIER, +} +impl windows_core::TypeKind for D3D12_SET_GENERIC_PIPELINE_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SET_GENERIC_PIPELINE_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy)] +pub struct D3D12_SET_PROGRAM_DESC { + pub Type: D3D12_PROGRAM_TYPE, + pub Anonymous: D3D12_SET_PROGRAM_DESC_0, +} +impl windows_core::TypeKind for D3D12_SET_PROGRAM_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SET_PROGRAM_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy)] +pub union D3D12_SET_PROGRAM_DESC_0 { + pub GenericPipeline: D3D12_SET_GENERIC_PIPELINE_DESC, + pub RaytracingPipeline: D3D12_SET_RAYTRACING_PIPELINE_DESC, + pub WorkGraph: D3D12_SET_WORK_GRAPH_DESC, +} +impl windows_core::TypeKind for D3D12_SET_PROGRAM_DESC_0 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SET_PROGRAM_DESC_0 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_SET_RAYTRACING_PIPELINE_DESC { + pub ProgramIdentifier: D3D12_PROGRAM_IDENTIFIER, +} +impl windows_core::TypeKind for D3D12_SET_RAYTRACING_PIPELINE_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SET_RAYTRACING_PIPELINE_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_SET_WORK_GRAPH_DESC { + pub ProgramIdentifier: D3D12_PROGRAM_IDENTIFIER, + pub Flags: D3D12_SET_WORK_GRAPH_FLAGS, + pub BackingMemory: D3D12_GPU_VIRTUAL_ADDRESS_RANGE, + pub NodeLocalRootArgumentsTable: D3D12_GPU_VIRTUAL_ADDRESS_RANGE_AND_STRIDE, +} +impl windows_core::TypeKind for D3D12_SET_WORK_GRAPH_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SET_WORK_GRAPH_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[cfg(feature = "Win32_Graphics_Direct3D")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_SHADER_BUFFER_DESC { @@ -13458,6 +14331,37 @@ impl Default for D3D12_SHADER_INPUT_BIND_DESC { } } #[repr(C)] +#[derive(Clone, Copy)] +pub struct D3D12_SHADER_NODE { + pub Shader: windows_core::PCWSTR, + pub OverridesType: D3D12_NODE_OVERRIDES_TYPE, + pub Anonymous: D3D12_SHADER_NODE_0, +} +impl windows_core::TypeKind for D3D12_SHADER_NODE { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SHADER_NODE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy)] +pub union D3D12_SHADER_NODE_0 { + pub pBroadcastingLaunchOverrides: *const D3D12_BROADCASTING_LAUNCH_OVERRIDES, + pub pCoalescingLaunchOverrides: *const D3D12_COALESCING_LAUNCH_OVERRIDES, + pub pThreadLaunchOverrides: *const D3D12_THREAD_LAUNCH_OVERRIDES, + pub pCommonComputeNodeOverrides: *const D3D12_COMMON_COMPUTE_NODE_OVERRIDES, +} +impl windows_core::TypeKind for D3D12_SHADER_NODE_0 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_SHADER_NODE_0 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[cfg(feature = "Win32_Graphics_Dxgi_Common")] #[derive(Clone, Copy)] pub struct D3D12_SHADER_RESOURCE_VIEW_DESC { @@ -14299,6 +15203,24 @@ impl Default for D3D12_TEXTURE_COPY_LOCATION_0 { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_THREAD_LAUNCH_OVERRIDES { + pub pLocalRootArgumentsTableIndex: *const u32, + pub pProgramEntry: *const super::super::Foundation::BOOL, + pub pNewName: *const D3D12_NODE_ID, + pub pShareInputOf: *const D3D12_NODE_ID, + pub NumOutputOverrides: u32, + pub pOutputOverrides: *const D3D12_NODE_OUTPUT_OVERRIDES, +} +impl windows_core::TypeKind for D3D12_THREAD_LAUNCH_OVERRIDES { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_THREAD_LAUNCH_OVERRIDES { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_TILED_RESOURCE_COORDINATE { pub X: u32, pub Y: u32, @@ -14509,6 +15431,39 @@ impl Default for D3D12_VIEW_INSTANCING_DESC { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_WORK_GRAPH_DESC { + pub ProgramName: windows_core::PCWSTR, + pub Flags: D3D12_WORK_GRAPH_FLAGS, + pub NumEntrypoints: u32, + pub pEntrypoints: *const D3D12_NODE_ID, + pub NumExplicitlyDefinedNodes: u32, + pub pExplicitlyDefinedNodes: *const D3D12_NODE, +} +impl windows_core::TypeKind for D3D12_WORK_GRAPH_DESC { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_WORK_GRAPH_DESC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS { + pub MinSizeInBytes: u64, + pub MaxSizeInBytes: u64, + pub SizeGranularityInBytes: u32, +} +impl windows_core::TypeKind for D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_WORK_GRAPH_MEMORY_REQUIREMENTS { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct D3D12_WRITEBUFFERIMMEDIATE_PARAMETER { pub Dest: u64, pub Value: u32, diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/impl.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/impl.rs index 95ae0161d1..862db29583 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/impl.rs @@ -1,6 +1,6 @@ pub trait IDXGIAdapter_Impl: Sized + IDXGIObject_Impl { fn EnumOutputs(&self, output: u32) -> windows_core::Result; - fn GetDesc(&self, pdesc: *mut DXGI_ADAPTER_DESC) -> windows_core::Result<()>; + fn GetDesc(&self) -> windows_core::Result; fn CheckInterfaceSupport(&self, interfacename: *const windows_core::GUID) -> windows_core::Result; } impl windows_core::RuntimeName for IDXGIAdapter {} @@ -27,7 +27,13 @@ impl IDXGIAdapter_Vtbl { Identity: IDXGIAdapter_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGIAdapter_Impl::GetDesc(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGIAdapter_Impl::GetDesc(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } unsafe extern "system" fn CheckInterfaceSupport(this: *mut core::ffi::c_void, interfacename: *const windows_core::GUID, pumdversion: *mut i64) -> windows_core::HRESULT where @@ -54,7 +60,7 @@ impl IDXGIAdapter_Vtbl { } } pub trait IDXGIAdapter1_Impl: Sized + IDXGIAdapter_Impl { - fn GetDesc1(&self, pdesc: *mut DXGI_ADAPTER_DESC1) -> windows_core::Result<()>; + fn GetDesc1(&self) -> windows_core::Result; } impl windows_core::RuntimeName for IDXGIAdapter1 {} impl IDXGIAdapter1_Vtbl { @@ -67,7 +73,13 @@ impl IDXGIAdapter1_Vtbl { Identity: IDXGIAdapter1_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGIAdapter1_Impl::GetDesc1(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGIAdapter1_Impl::GetDesc1(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } Self { base__: IDXGIAdapter_Vtbl::new::(), GetDesc1: GetDesc1:: } } @@ -76,7 +88,7 @@ impl IDXGIAdapter1_Vtbl { } } pub trait IDXGIAdapter2_Impl: Sized + IDXGIAdapter1_Impl { - fn GetDesc2(&self, pdesc: *mut DXGI_ADAPTER_DESC2) -> windows_core::Result<()>; + fn GetDesc2(&self) -> windows_core::Result; } impl windows_core::RuntimeName for IDXGIAdapter2 {} impl IDXGIAdapter2_Vtbl { @@ -89,7 +101,13 @@ impl IDXGIAdapter2_Vtbl { Identity: IDXGIAdapter2_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGIAdapter2_Impl::GetDesc2(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGIAdapter2_Impl::GetDesc2(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } Self { base__: IDXGIAdapter1_Vtbl::new::(), GetDesc2: GetDesc2:: } } @@ -180,7 +198,7 @@ impl IDXGIAdapter3_Vtbl { } } pub trait IDXGIAdapter4_Impl: Sized + IDXGIAdapter3_Impl { - fn GetDesc3(&self, pdesc: *mut DXGI_ADAPTER_DESC3) -> windows_core::Result<()>; + fn GetDesc3(&self) -> windows_core::Result; } impl windows_core::RuntimeName for IDXGIAdapter4 {} impl IDXGIAdapter4_Vtbl { @@ -193,7 +211,13 @@ impl IDXGIAdapter4_Vtbl { Identity: IDXGIAdapter4_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGIAdapter4_Impl::GetDesc3(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGIAdapter4_Impl::GetDesc3(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } Self { base__: IDXGIAdapter3_Vtbl::new::(), GetDesc3: GetDesc3:: } } @@ -267,7 +291,7 @@ impl IDXGIDebug1_Vtbl { } } pub trait IDXGIDecodeSwapChain_Impl: Sized { - fn PresentBuffer(&self, buffertopresent: u32, syncinterval: u32, flags: u32) -> windows_core::HRESULT; + fn PresentBuffer(&self, buffertopresent: u32, syncinterval: u32, flags: DXGI_PRESENT) -> windows_core::HRESULT; fn SetSourceRect(&self, prect: *const super::super::Foundation::RECT) -> windows_core::Result<()>; fn SetTargetRect(&self, prect: *const super::super::Foundation::RECT) -> windows_core::Result<()>; fn SetDestSize(&self, width: u32, height: u32) -> windows_core::Result<()>; @@ -283,7 +307,7 @@ impl IDXGIDecodeSwapChain_Vtbl { where Identity: IDXGIDecodeSwapChain_Impl, { - unsafe extern "system" fn PresentBuffer(this: *mut core::ffi::c_void, buffertopresent: u32, syncinterval: u32, flags: u32) -> windows_core::HRESULT + unsafe extern "system" fn PresentBuffer(this: *mut core::ffi::c_void, buffertopresent: u32, syncinterval: u32, flags: DXGI_PRESENT) -> windows_core::HRESULT where Identity: IDXGIDecodeSwapChain_Impl, { @@ -567,7 +591,7 @@ impl IDXGIDevice3_Vtbl { } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub trait IDXGIDevice4_Impl: Sized + IDXGIDevice3_Impl { - fn OfferResources1(&self, numresources: u32, ppresources: *const Option, priority: DXGI_OFFER_RESOURCE_PRIORITY, flags: u32) -> windows_core::Result<()>; + fn OfferResources1(&self, numresources: u32, ppresources: *const Option, priority: DXGI_OFFER_RESOURCE_PRIORITY, flags: &DXGI_OFFER_RESOURCE_FLAGS) -> windows_core::Result<()>; fn ReclaimResources1(&self, numresources: u32, ppresources: *const Option, presults: *mut DXGI_RECLAIM_RESOURCE_RESULTS) -> windows_core::Result<()>; } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] @@ -583,7 +607,7 @@ impl IDXGIDevice4_Vtbl { Identity: IDXGIDevice4_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGIDevice4_Impl::OfferResources1(this, core::mem::transmute_copy(&numresources), core::mem::transmute_copy(&ppresources), core::mem::transmute_copy(&priority), core::mem::transmute_copy(&flags)).into() + IDXGIDevice4_Impl::OfferResources1(this, core::mem::transmute_copy(&numresources), core::mem::transmute_copy(&ppresources), core::mem::transmute_copy(&priority), core::mem::transmute(&flags)).into() } unsafe extern "system" fn ReclaimResources1(this: *mut core::ffi::c_void, numresources: u32, ppresources: *const *mut core::ffi::c_void, presults: *mut DXGI_RECLAIM_RESOURCE_RESULTS) -> windows_core::HRESULT where @@ -661,7 +685,7 @@ impl IDXGIDisplayControl_Vtbl { #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub trait IDXGIFactory_Impl: Sized + IDXGIObject_Impl { fn EnumAdapters(&self, adapter: u32) -> windows_core::Result; - fn MakeWindowAssociation(&self, windowhandle: super::super::Foundation::HWND, flags: u32) -> windows_core::Result<()>; + fn MakeWindowAssociation(&self, windowhandle: super::super::Foundation::HWND, flags: DXGI_MWA_FLAGS) -> windows_core::Result<()>; fn GetWindowAssociation(&self) -> windows_core::Result; fn CreateSwapChain(&self, pdevice: Option<&windows_core::IUnknown>, pdesc: *const DXGI_SWAP_CHAIN_DESC, ppswapchain: *mut Option) -> windows_core::HRESULT; fn CreateSoftwareAdapter(&self, module: super::super::Foundation::HMODULE) -> windows_core::Result; @@ -687,7 +711,7 @@ impl IDXGIFactory_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn MakeWindowAssociation(this: *mut core::ffi::c_void, windowhandle: super::super::Foundation::HWND, flags: u32) -> windows_core::HRESULT + unsafe extern "system" fn MakeWindowAssociation(this: *mut core::ffi::c_void, windowhandle: super::super::Foundation::HWND, flags: DXGI_MWA_FLAGS) -> windows_core::HRESULT where Identity: IDXGIFactory_Impl, { @@ -947,7 +971,7 @@ impl IDXGIFactory2_Vtbl { } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub trait IDXGIFactory3_Impl: Sized + IDXGIFactory2_Impl { - fn GetCreationFlags(&self) -> u32; + fn GetCreationFlags(&self) -> DXGI_CREATE_FACTORY_FLAGS; } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] impl windows_core::RuntimeName for IDXGIFactory3 {} @@ -957,7 +981,7 @@ impl IDXGIFactory3_Vtbl { where Identity: IDXGIFactory3_Impl, { - unsafe extern "system" fn GetCreationFlags(this: *mut core::ffi::c_void) -> u32 + unsafe extern "system" fn GetCreationFlags(this: *mut core::ffi::c_void) -> DXGI_CREATE_FACTORY_FLAGS where Identity: IDXGIFactory3_Impl, { @@ -1586,8 +1610,8 @@ impl IDXGIObject_Vtbl { } #[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Gdi"))] pub trait IDXGIOutput_Impl: Sized + IDXGIObject_Impl { - fn GetDesc(&self, pdesc: *mut DXGI_OUTPUT_DESC) -> windows_core::Result<()>; - fn GetDisplayModeList(&self, enumformat: Common::DXGI_FORMAT, flags: u32, pnummodes: *mut u32, pdesc: *mut Common::DXGI_MODE_DESC) -> windows_core::Result<()>; + fn GetDesc(&self) -> windows_core::Result; + fn GetDisplayModeList(&self, enumformat: Common::DXGI_FORMAT, flags: DXGI_ENUM_MODES, pnummodes: *mut u32, pdesc: *mut Common::DXGI_MODE_DESC) -> windows_core::Result<()>; fn FindClosestMatchingMode(&self, pmodetomatch: *const Common::DXGI_MODE_DESC, pclosestmatch: *mut Common::DXGI_MODE_DESC, pconcerneddevice: Option<&windows_core::IUnknown>) -> windows_core::Result<()>; fn WaitForVBlank(&self) -> windows_core::Result<()>; fn TakeOwnership(&self, pdevice: Option<&windows_core::IUnknown>, exclusive: super::super::Foundation::BOOL) -> windows_core::Result<()>; @@ -1612,9 +1636,15 @@ impl IDXGIOutput_Vtbl { Identity: IDXGIOutput_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGIOutput_Impl::GetDesc(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGIOutput_Impl::GetDesc(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } - unsafe extern "system" fn GetDisplayModeList(this: *mut core::ffi::c_void, enumformat: Common::DXGI_FORMAT, flags: u32, pnummodes: *mut u32, pdesc: *mut Common::DXGI_MODE_DESC) -> windows_core::HRESULT + unsafe extern "system" fn GetDisplayModeList(this: *mut core::ffi::c_void, enumformat: Common::DXGI_FORMAT, flags: DXGI_ENUM_MODES, pnummodes: *mut u32, pdesc: *mut Common::DXGI_MODE_DESC) -> windows_core::HRESULT where Identity: IDXGIOutput_Impl, { @@ -1713,7 +1743,7 @@ impl IDXGIOutput_Vtbl { } #[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Gdi"))] pub trait IDXGIOutput1_Impl: Sized + IDXGIOutput_Impl { - fn GetDisplayModeList1(&self, enumformat: Common::DXGI_FORMAT, flags: u32, pnummodes: *mut u32, pdesc: *mut DXGI_MODE_DESC1) -> windows_core::Result<()>; + fn GetDisplayModeList1(&self, enumformat: Common::DXGI_FORMAT, flags: DXGI_ENUM_MODES, pnummodes: *mut u32, pdesc: *mut DXGI_MODE_DESC1) -> windows_core::Result<()>; fn FindClosestMatchingMode1(&self, pmodetomatch: *const DXGI_MODE_DESC1, pclosestmatch: *mut DXGI_MODE_DESC1, pconcerneddevice: Option<&windows_core::IUnknown>) -> windows_core::Result<()>; fn GetDisplaySurfaceData1(&self, pdestination: Option<&IDXGIResource>) -> windows_core::Result<()>; fn DuplicateOutput(&self, pdevice: Option<&windows_core::IUnknown>) -> windows_core::Result; @@ -1726,7 +1756,7 @@ impl IDXGIOutput1_Vtbl { where Identity: IDXGIOutput1_Impl, { - unsafe extern "system" fn GetDisplayModeList1(this: *mut core::ffi::c_void, enumformat: Common::DXGI_FORMAT, flags: u32, pnummodes: *mut u32, pdesc: *mut DXGI_MODE_DESC1) -> windows_core::HRESULT + unsafe extern "system" fn GetDisplayModeList1(this: *mut core::ffi::c_void, enumformat: Common::DXGI_FORMAT, flags: DXGI_ENUM_MODES, pnummodes: *mut u32, pdesc: *mut DXGI_MODE_DESC1) -> windows_core::HRESULT where Identity: IDXGIOutput1_Impl, { @@ -1892,7 +1922,7 @@ impl IDXGIOutput5_Vtbl { } #[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Gdi"))] pub trait IDXGIOutput6_Impl: Sized + IDXGIOutput5_Impl { - fn GetDesc1(&self, pdesc: *mut DXGI_OUTPUT_DESC1) -> windows_core::Result<()>; + fn GetDesc1(&self) -> windows_core::Result; fn CheckHardwareCompositionSupport(&self) -> windows_core::Result; } #[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Gdi"))] @@ -1908,7 +1938,13 @@ impl IDXGIOutput6_Vtbl { Identity: IDXGIOutput6_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGIOutput6_Impl::GetDesc1(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGIOutput6_Impl::GetDesc1(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } unsafe extern "system" fn CheckHardwareCompositionSupport(this: *mut core::ffi::c_void, pflags: *mut u32) -> windows_core::HRESULT where @@ -2033,8 +2069,8 @@ impl IDXGIOutputDuplication_Vtbl { pub trait IDXGIResource_Impl: Sized + IDXGIDeviceSubObject_Impl { fn GetSharedHandle(&self) -> windows_core::Result; fn GetUsage(&self) -> windows_core::Result; - fn SetEvictionPriority(&self, evictionpriority: u32) -> windows_core::Result<()>; - fn GetEvictionPriority(&self) -> windows_core::Result; + fn SetEvictionPriority(&self, evictionpriority: DXGI_RESOURCE_PRIORITY) -> windows_core::Result<()>; + fn GetEvictionPriority(&self) -> windows_core::Result; } impl windows_core::RuntimeName for IDXGIResource {} impl IDXGIResource_Vtbl { @@ -2068,14 +2104,14 @@ impl IDXGIResource_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn SetEvictionPriority(this: *mut core::ffi::c_void, evictionpriority: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetEvictionPriority(this: *mut core::ffi::c_void, evictionpriority: DXGI_RESOURCE_PRIORITY) -> windows_core::HRESULT where Identity: IDXGIResource_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IDXGIResource_Impl::SetEvictionPriority(this, core::mem::transmute_copy(&evictionpriority)).into() } - unsafe extern "system" fn GetEvictionPriority(this: *mut core::ffi::c_void, pevictionpriority: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetEvictionPriority(this: *mut core::ffi::c_void, pevictionpriority: *mut DXGI_RESOURCE_PRIORITY) -> windows_core::HRESULT where Identity: IDXGIResource_Impl, { @@ -2151,8 +2187,8 @@ impl IDXGIResource1_Vtbl { } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub trait IDXGISurface_Impl: Sized + IDXGIDeviceSubObject_Impl { - fn GetDesc(&self, pdesc: *mut DXGI_SURFACE_DESC) -> windows_core::Result<()>; - fn Map(&self, plockedrect: *mut DXGI_MAPPED_RECT, mapflags: u32) -> windows_core::Result<()>; + fn GetDesc(&self) -> windows_core::Result; + fn Map(&self, plockedrect: *mut DXGI_MAPPED_RECT, mapflags: DXGI_MAP_FLAGS) -> windows_core::Result<()>; fn Unmap(&self) -> windows_core::Result<()>; } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] @@ -2168,9 +2204,15 @@ impl IDXGISurface_Vtbl { Identity: IDXGISurface_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGISurface_Impl::GetDesc(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGISurface_Impl::GetDesc(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } - unsafe extern "system" fn Map(this: *mut core::ffi::c_void, plockedrect: *mut DXGI_MAPPED_RECT, mapflags: u32) -> windows_core::HRESULT + unsafe extern "system" fn Map(this: *mut core::ffi::c_void, plockedrect: *mut DXGI_MAPPED_RECT, mapflags: DXGI_MAP_FLAGS) -> windows_core::HRESULT where Identity: IDXGISurface_Impl, { @@ -2261,12 +2303,12 @@ impl IDXGISurface2_Vtbl { } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub trait IDXGISwapChain_Impl: Sized + IDXGIDeviceSubObject_Impl { - fn Present(&self, syncinterval: u32, flags: u32) -> windows_core::HRESULT; + fn Present(&self, syncinterval: u32, flags: DXGI_PRESENT) -> windows_core::HRESULT; fn GetBuffer(&self, buffer: u32, riid: *const windows_core::GUID, ppsurface: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; fn SetFullscreenState(&self, fullscreen: super::super::Foundation::BOOL, ptarget: Option<&IDXGIOutput>) -> windows_core::Result<()>; fn GetFullscreenState(&self, pfullscreen: *mut super::super::Foundation::BOOL, pptarget: *mut Option) -> windows_core::Result<()>; - fn GetDesc(&self, pdesc: *mut DXGI_SWAP_CHAIN_DESC) -> windows_core::Result<()>; - fn ResizeBuffers(&self, buffercount: u32, width: u32, height: u32, newformat: Common::DXGI_FORMAT, swapchainflags: u32) -> windows_core::Result<()>; + fn GetDesc(&self) -> windows_core::Result; + fn ResizeBuffers(&self, buffercount: u32, width: u32, height: u32, newformat: Common::DXGI_FORMAT, swapchainflags: &DXGI_SWAP_CHAIN_FLAG) -> windows_core::Result<()>; fn ResizeTarget(&self, pnewtargetparameters: *const Common::DXGI_MODE_DESC) -> windows_core::Result<()>; fn GetContainingOutput(&self) -> windows_core::Result; fn GetFrameStatistics(&self, pstats: *mut DXGI_FRAME_STATISTICS) -> windows_core::Result<()>; @@ -2280,7 +2322,7 @@ impl IDXGISwapChain_Vtbl { where Identity: IDXGISwapChain_Impl, { - unsafe extern "system" fn Present(this: *mut core::ffi::c_void, syncinterval: u32, flags: u32) -> windows_core::HRESULT + unsafe extern "system" fn Present(this: *mut core::ffi::c_void, syncinterval: u32, flags: DXGI_PRESENT) -> windows_core::HRESULT where Identity: IDXGISwapChain_Impl, { @@ -2313,14 +2355,20 @@ impl IDXGISwapChain_Vtbl { Identity: IDXGISwapChain_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGISwapChain_Impl::GetDesc(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGISwapChain_Impl::GetDesc(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } unsafe extern "system" fn ResizeBuffers(this: *mut core::ffi::c_void, buffercount: u32, width: u32, height: u32, newformat: Common::DXGI_FORMAT, swapchainflags: u32) -> windows_core::HRESULT where Identity: IDXGISwapChain_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGISwapChain_Impl::ResizeBuffers(this, core::mem::transmute_copy(&buffercount), core::mem::transmute_copy(&width), core::mem::transmute_copy(&height), core::mem::transmute_copy(&newformat), core::mem::transmute_copy(&swapchainflags)).into() + IDXGISwapChain_Impl::ResizeBuffers(this, core::mem::transmute_copy(&buffercount), core::mem::transmute_copy(&width), core::mem::transmute_copy(&height), core::mem::transmute_copy(&newformat), core::mem::transmute(&swapchainflags)).into() } unsafe extern "system" fn ResizeTarget(this: *mut core::ffi::c_void, pnewtargetparameters: *const Common::DXGI_MODE_DESC) -> windows_core::HRESULT where @@ -2382,11 +2430,11 @@ impl IDXGISwapChain_Vtbl { } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub trait IDXGISwapChain1_Impl: Sized + IDXGISwapChain_Impl { - fn GetDesc1(&self, pdesc: *mut DXGI_SWAP_CHAIN_DESC1) -> windows_core::Result<()>; - fn GetFullscreenDesc(&self, pdesc: *mut DXGI_SWAP_CHAIN_FULLSCREEN_DESC) -> windows_core::Result<()>; + fn GetDesc1(&self) -> windows_core::Result; + fn GetFullscreenDesc(&self) -> windows_core::Result; fn GetHwnd(&self) -> windows_core::Result; fn GetCoreWindow(&self, refiid: *const windows_core::GUID, ppunk: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; - fn Present1(&self, syncinterval: u32, presentflags: u32, ppresentparameters: *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT; + fn Present1(&self, syncinterval: u32, presentflags: DXGI_PRESENT, ppresentparameters: *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT; fn IsTemporaryMonoSupported(&self) -> super::super::Foundation::BOOL; fn GetRestrictToOutput(&self) -> windows_core::Result; fn SetBackgroundColor(&self, pcolor: *const DXGI_RGBA) -> windows_core::Result<()>; @@ -2407,14 +2455,26 @@ impl IDXGISwapChain1_Vtbl { Identity: IDXGISwapChain1_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGISwapChain1_Impl::GetDesc1(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGISwapChain1_Impl::GetDesc1(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } unsafe extern "system" fn GetFullscreenDesc(this: *mut core::ffi::c_void, pdesc: *mut DXGI_SWAP_CHAIN_FULLSCREEN_DESC) -> windows_core::HRESULT where Identity: IDXGISwapChain1_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGISwapChain1_Impl::GetFullscreenDesc(this, core::mem::transmute_copy(&pdesc)).into() + match IDXGISwapChain1_Impl::GetFullscreenDesc(this) { + Ok(ok__) => { + pdesc.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } unsafe extern "system" fn GetHwnd(this: *mut core::ffi::c_void, phwnd: *mut super::super::Foundation::HWND) -> windows_core::HRESULT where @@ -2436,7 +2496,7 @@ impl IDXGISwapChain1_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IDXGISwapChain1_Impl::GetCoreWindow(this, core::mem::transmute_copy(&refiid), core::mem::transmute_copy(&ppunk)).into() } - unsafe extern "system" fn Present1(this: *mut core::ffi::c_void, syncinterval: u32, presentflags: u32, ppresentparameters: *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT + unsafe extern "system" fn Present1(this: *mut core::ffi::c_void, syncinterval: u32, presentflags: DXGI_PRESENT, ppresentparameters: *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT where Identity: IDXGISwapChain1_Impl, { @@ -2615,7 +2675,7 @@ pub trait IDXGISwapChain3_Impl: Sized + IDXGISwapChain2_Impl { fn GetCurrentBackBufferIndex(&self) -> u32; fn CheckColorSpaceSupport(&self, colorspace: Common::DXGI_COLOR_SPACE_TYPE) -> windows_core::Result; fn SetColorSpace1(&self, colorspace: Common::DXGI_COLOR_SPACE_TYPE) -> windows_core::Result<()>; - fn ResizeBuffers1(&self, buffercount: u32, width: u32, height: u32, format: Common::DXGI_FORMAT, swapchainflags: u32, pcreationnodemask: *const u32, pppresentqueue: *const Option) -> windows_core::Result<()>; + fn ResizeBuffers1(&self, buffercount: u32, width: u32, height: u32, format: Common::DXGI_FORMAT, swapchainflags: &DXGI_SWAP_CHAIN_FLAG, pcreationnodemask: *const u32, pppresentqueue: *const Option) -> windows_core::Result<()>; } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] impl windows_core::RuntimeName for IDXGISwapChain3 {} @@ -2657,7 +2717,7 @@ impl IDXGISwapChain3_Vtbl { Identity: IDXGISwapChain3_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IDXGISwapChain3_Impl::ResizeBuffers1(this, core::mem::transmute_copy(&buffercount), core::mem::transmute_copy(&width), core::mem::transmute_copy(&height), core::mem::transmute_copy(&format), core::mem::transmute_copy(&swapchainflags), core::mem::transmute_copy(&pcreationnodemask), core::mem::transmute_copy(&pppresentqueue)).into() + IDXGISwapChain3_Impl::ResizeBuffers1(this, core::mem::transmute_copy(&buffercount), core::mem::transmute_copy(&width), core::mem::transmute_copy(&height), core::mem::transmute_copy(&format), core::mem::transmute(&swapchainflags), core::mem::transmute_copy(&pcreationnodemask), core::mem::transmute_copy(&pppresentqueue)).into() } Self { base__: IDXGISwapChain2_Vtbl::new::(), diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/mod.rs index fce563ef27..c4e50abc40 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Dxgi/mod.rs @@ -19,11 +19,11 @@ where CreateDXGIFactory1(&T::IID, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } #[inline] -pub unsafe fn CreateDXGIFactory2(flags: u32) -> windows_core::Result +pub unsafe fn CreateDXGIFactory2(flags: DXGI_CREATE_FACTORY_FLAGS) -> windows_core::Result where T: windows_core::Interface, { - windows_targets::link!("dxgi.dll" "system" fn CreateDXGIFactory2(flags : u32, riid : *const windows_core::GUID, ppfactory : *mut *mut core::ffi::c_void) -> windows_core::HRESULT); + windows_targets::link!("dxgi.dll" "system" fn CreateDXGIFactory2(flags : DXGI_CREATE_FACTORY_FLAGS, riid : *const windows_core::GUID, ppfactory : *mut *mut core::ffi::c_void) -> windows_core::HRESULT); let mut result__ = core::ptr::null_mut(); CreateDXGIFactory2(flags, &T::IID, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } @@ -59,8 +59,9 @@ impl IDXGIAdapter { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).EnumOutputs)(windows_core::Interface::as_raw(self), output, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - pub unsafe fn GetDesc(&self, pdesc: *mut DXGI_ADAPTER_DESC) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } pub unsafe fn CheckInterfaceSupport(&self, interfacename: *const windows_core::GUID) -> windows_core::Result { let mut result__ = core::mem::zeroed(); @@ -85,8 +86,9 @@ impl core::ops::Deref for IDXGIAdapter1 { } windows_core::imp::interface_hierarchy!(IDXGIAdapter1, windows_core::IUnknown, IDXGIObject, IDXGIAdapter); impl IDXGIAdapter1 { - pub unsafe fn GetDesc1(&self, pdesc: *mut DXGI_ADAPTER_DESC1) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc1)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc1(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc1)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } } unsafe impl Send for IDXGIAdapter1 {} @@ -105,8 +107,9 @@ impl core::ops::Deref for IDXGIAdapter2 { } windows_core::imp::interface_hierarchy!(IDXGIAdapter2, windows_core::IUnknown, IDXGIObject, IDXGIAdapter, IDXGIAdapter1); impl IDXGIAdapter2 { - pub unsafe fn GetDesc2(&self, pdesc: *mut DXGI_ADAPTER_DESC2) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc2)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc2(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc2)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } } unsafe impl Send for IDXGIAdapter2 {} @@ -173,8 +176,9 @@ impl core::ops::Deref for IDXGIAdapter4 { } windows_core::imp::interface_hierarchy!(IDXGIAdapter4, windows_core::IUnknown, IDXGIObject, IDXGIAdapter, IDXGIAdapter1, IDXGIAdapter2, IDXGIAdapter3); impl IDXGIAdapter4 { - pub unsafe fn GetDesc3(&self, pdesc: *mut DXGI_ADAPTER_DESC3) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc3)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc3(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc3)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } } unsafe impl Send for IDXGIAdapter4 {} @@ -241,7 +245,7 @@ impl core::ops::Deref for IDXGIDecodeSwapChain { } windows_core::imp::interface_hierarchy!(IDXGIDecodeSwapChain, windows_core::IUnknown); impl IDXGIDecodeSwapChain { - pub unsafe fn PresentBuffer(&self, buffertopresent: u32, syncinterval: u32, flags: u32) -> windows_core::HRESULT { + pub unsafe fn PresentBuffer(&self, buffertopresent: u32, syncinterval: u32, flags: DXGI_PRESENT) -> windows_core::HRESULT { (windows_core::Interface::vtable(self).PresentBuffer)(windows_core::Interface::as_raw(self), buffertopresent, syncinterval, flags) } pub unsafe fn SetSourceRect(&self, prect: *const super::super::Foundation::RECT) -> windows_core::Result<()> { @@ -276,7 +280,7 @@ unsafe impl Sync for IDXGIDecodeSwapChain {} #[repr(C)] pub struct IDXGIDecodeSwapChain_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - pub PresentBuffer: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32, u32) -> windows_core::HRESULT, + pub PresentBuffer: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32, DXGI_PRESENT) -> windows_core::HRESULT, pub SetSourceRect: unsafe extern "system" fn(*mut core::ffi::c_void, *const super::super::Foundation::RECT) -> windows_core::HRESULT, pub SetTargetRect: unsafe extern "system" fn(*mut core::ffi::c_void, *const super::super::Foundation::RECT) -> windows_core::HRESULT, pub SetDestSize: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32) -> windows_core::HRESULT, @@ -413,8 +417,8 @@ impl core::ops::Deref for IDXGIDevice4 { } windows_core::imp::interface_hierarchy!(IDXGIDevice4, windows_core::IUnknown, IDXGIObject, IDXGIDevice, IDXGIDevice1, IDXGIDevice2, IDXGIDevice3); impl IDXGIDevice4 { - pub unsafe fn OfferResources1(&self, ppresources: &[Option], priority: DXGI_OFFER_RESOURCE_PRIORITY, flags: u32) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).OfferResources1)(windows_core::Interface::as_raw(self), ppresources.len().try_into().unwrap(), core::mem::transmute(ppresources.as_ptr()), priority, flags).ok() + pub unsafe fn OfferResources1(&self, ppresources: &[Option], priority: DXGI_OFFER_RESOURCE_PRIORITY, flags: DXGI_OFFER_RESOURCE_FLAGS) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).OfferResources1)(windows_core::Interface::as_raw(self), ppresources.len().try_into().unwrap(), core::mem::transmute(ppresources.as_ptr()), priority, flags.0 as _).ok() } pub unsafe fn ReclaimResources1(&self, numresources: u32, ppresources: *const Option, presults: *mut DXGI_RECLAIM_RESOURCE_RESULTS) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).ReclaimResources1)(windows_core::Interface::as_raw(self), numresources, core::mem::transmute(ppresources), presults).ok() @@ -492,7 +496,7 @@ impl IDXGIFactory { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).EnumAdapters)(windows_core::Interface::as_raw(self), adapter, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - pub unsafe fn MakeWindowAssociation(&self, windowhandle: P0, flags: u32) -> windows_core::Result<()> + pub unsafe fn MakeWindowAssociation(&self, windowhandle: P0, flags: DXGI_MWA_FLAGS) -> windows_core::Result<()> where P0: windows_core::Param, { @@ -523,7 +527,7 @@ unsafe impl Sync for IDXGIFactory {} pub struct IDXGIFactory_Vtbl { pub base__: IDXGIObject_Vtbl, pub EnumAdapters: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - pub MakeWindowAssociation: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::HWND, u32) -> windows_core::HRESULT, + pub MakeWindowAssociation: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::HWND, DXGI_MWA_FLAGS) -> windows_core::HRESULT, pub GetWindowAssociation: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::HWND) -> windows_core::HRESULT, #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub CreateSwapChain: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *const DXGI_SWAP_CHAIN_DESC, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, @@ -674,7 +678,7 @@ impl core::ops::Deref for IDXGIFactory3 { } windows_core::imp::interface_hierarchy!(IDXGIFactory3, windows_core::IUnknown, IDXGIObject, IDXGIFactory, IDXGIFactory1, IDXGIFactory2); impl IDXGIFactory3 { - pub unsafe fn GetCreationFlags(&self) -> u32 { + pub unsafe fn GetCreationFlags(&self) -> DXGI_CREATE_FACTORY_FLAGS { (windows_core::Interface::vtable(self).GetCreationFlags)(windows_core::Interface::as_raw(self)) } } @@ -683,7 +687,7 @@ unsafe impl Sync for IDXGIFactory3 {} #[repr(C)] pub struct IDXGIFactory3_Vtbl { pub base__: IDXGIFactory2_Vtbl, - pub GetCreationFlags: unsafe extern "system" fn(*mut core::ffi::c_void) -> u32, + pub GetCreationFlags: unsafe extern "system" fn(*mut core::ffi::c_void) -> DXGI_CREATE_FACTORY_FLAGS, } windows_core::imp::define_interface!(IDXGIFactory4, IDXGIFactory4_Vtbl, 0x1bc6ea02_ef36_464f_bf0c_21ca39e5168a); impl core::ops::Deref for IDXGIFactory4 { @@ -1085,11 +1089,12 @@ impl core::ops::Deref for IDXGIOutput { windows_core::imp::interface_hierarchy!(IDXGIOutput, windows_core::IUnknown, IDXGIObject); impl IDXGIOutput { #[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Gdi"))] - pub unsafe fn GetDesc(&self, pdesc: *mut DXGI_OUTPUT_DESC) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn GetDisplayModeList(&self, enumformat: Common::DXGI_FORMAT, flags: u32, pnummodes: *mut u32, pdesc: Option<*mut Common::DXGI_MODE_DESC>) -> windows_core::Result<()> { + pub unsafe fn GetDisplayModeList(&self, enumformat: Common::DXGI_FORMAT, flags: DXGI_ENUM_MODES, pnummodes: *mut u32, pdesc: Option<*mut Common::DXGI_MODE_DESC>) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetDisplayModeList)(windows_core::Interface::as_raw(self), enumformat, flags, pnummodes, core::mem::transmute(pdesc.unwrap_or(std::ptr::null_mut()))).ok() } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] @@ -1150,7 +1155,7 @@ pub struct IDXGIOutput_Vtbl { #[cfg(not(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Gdi")))] GetDesc: usize, #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub GetDisplayModeList: unsafe extern "system" fn(*mut core::ffi::c_void, Common::DXGI_FORMAT, u32, *mut u32, *mut Common::DXGI_MODE_DESC) -> windows_core::HRESULT, + pub GetDisplayModeList: unsafe extern "system" fn(*mut core::ffi::c_void, Common::DXGI_FORMAT, DXGI_ENUM_MODES, *mut u32, *mut Common::DXGI_MODE_DESC) -> windows_core::HRESULT, #[cfg(not(feature = "Win32_Graphics_Dxgi_Common"))] GetDisplayModeList: usize, #[cfg(feature = "Win32_Graphics_Dxgi_Common")] @@ -1186,7 +1191,7 @@ impl core::ops::Deref for IDXGIOutput1 { windows_core::imp::interface_hierarchy!(IDXGIOutput1, windows_core::IUnknown, IDXGIObject, IDXGIOutput); impl IDXGIOutput1 { #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn GetDisplayModeList1(&self, enumformat: Common::DXGI_FORMAT, flags: u32, pnummodes: *mut u32, pdesc: Option<*mut DXGI_MODE_DESC1>) -> windows_core::Result<()> { + pub unsafe fn GetDisplayModeList1(&self, enumformat: Common::DXGI_FORMAT, flags: DXGI_ENUM_MODES, pnummodes: *mut u32, pdesc: Option<*mut DXGI_MODE_DESC1>) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetDisplayModeList1)(windows_core::Interface::as_raw(self), enumformat, flags, pnummodes, core::mem::transmute(pdesc.unwrap_or(std::ptr::null_mut()))).ok() } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] @@ -1216,7 +1221,7 @@ unsafe impl Sync for IDXGIOutput1 {} pub struct IDXGIOutput1_Vtbl { pub base__: IDXGIOutput_Vtbl, #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub GetDisplayModeList1: unsafe extern "system" fn(*mut core::ffi::c_void, Common::DXGI_FORMAT, u32, *mut u32, *mut DXGI_MODE_DESC1) -> windows_core::HRESULT, + pub GetDisplayModeList1: unsafe extern "system" fn(*mut core::ffi::c_void, Common::DXGI_FORMAT, DXGI_ENUM_MODES, *mut u32, *mut DXGI_MODE_DESC1) -> windows_core::HRESULT, #[cfg(not(feature = "Win32_Graphics_Dxgi_Common"))] GetDisplayModeList1: usize, #[cfg(feature = "Win32_Graphics_Dxgi_Common")] @@ -1340,8 +1345,9 @@ impl core::ops::Deref for IDXGIOutput6 { windows_core::imp::interface_hierarchy!(IDXGIOutput6, windows_core::IUnknown, IDXGIObject, IDXGIOutput, IDXGIOutput1, IDXGIOutput2, IDXGIOutput3, IDXGIOutput4, IDXGIOutput5); impl IDXGIOutput6 { #[cfg(all(feature = "Win32_Graphics_Dxgi_Common", feature = "Win32_Graphics_Gdi"))] - pub unsafe fn GetDesc1(&self, pdesc: *mut DXGI_OUTPUT_DESC1) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc1)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc1(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc1)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } pub unsafe fn CheckHardwareCompositionSupport(&self) -> windows_core::Result { let mut result__ = core::mem::zeroed(); @@ -1369,8 +1375,10 @@ impl core::ops::Deref for IDXGIOutputDuplication { windows_core::imp::interface_hierarchy!(IDXGIOutputDuplication, windows_core::IUnknown, IDXGIObject); impl IDXGIOutputDuplication { #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn GetDesc(&self, pdesc: *mut DXGI_OUTDUPL_DESC) { - (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), pdesc) + pub unsafe fn GetDesc(&self) -> DXGI_OUTDUPL_DESC { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), &mut result__); + result__ } pub unsafe fn AcquireNextFrame(&self, timeoutinmilliseconds: u32, pframeinfo: *mut DXGI_OUTDUPL_FRAME_INFO, ppdesktopresource: *mut Option) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).AcquireNextFrame)(windows_core::Interface::as_raw(self), timeoutinmilliseconds, pframeinfo, core::mem::transmute(ppdesktopresource)).ok() @@ -1429,10 +1437,10 @@ impl IDXGIResource { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetUsage)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } - pub unsafe fn SetEvictionPriority(&self, evictionpriority: u32) -> windows_core::Result<()> { + pub unsafe fn SetEvictionPriority(&self, evictionpriority: DXGI_RESOURCE_PRIORITY) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).SetEvictionPriority)(windows_core::Interface::as_raw(self), evictionpriority).ok() } - pub unsafe fn GetEvictionPriority(&self) -> windows_core::Result { + pub unsafe fn GetEvictionPriority(&self) -> windows_core::Result { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetEvictionPriority)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } @@ -1444,8 +1452,8 @@ pub struct IDXGIResource_Vtbl { pub base__: IDXGIDeviceSubObject_Vtbl, pub GetSharedHandle: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::HANDLE) -> windows_core::HRESULT, pub GetUsage: unsafe extern "system" fn(*mut core::ffi::c_void, *mut DXGI_USAGE) -> windows_core::HRESULT, - pub SetEvictionPriority: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> windows_core::HRESULT, - pub GetEvictionPriority: unsafe extern "system" fn(*mut core::ffi::c_void, *mut u32) -> windows_core::HRESULT, + pub SetEvictionPriority: unsafe extern "system" fn(*mut core::ffi::c_void, DXGI_RESOURCE_PRIORITY) -> windows_core::HRESULT, + pub GetEvictionPriority: unsafe extern "system" fn(*mut core::ffi::c_void, *mut DXGI_RESOURCE_PRIORITY) -> windows_core::HRESULT, } windows_core::imp::define_interface!(IDXGIResource1, IDXGIResource1_Vtbl, 0x30961379_4609_4a41_998e_54fe567ee0c1); impl core::ops::Deref for IDXGIResource1 { @@ -1490,10 +1498,11 @@ impl core::ops::Deref for IDXGISurface { windows_core::imp::interface_hierarchy!(IDXGISurface, windows_core::IUnknown, IDXGIObject, IDXGIDeviceSubObject); impl IDXGISurface { #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn GetDesc(&self, pdesc: *mut DXGI_SURFACE_DESC) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } - pub unsafe fn Map(&self, plockedrect: *mut DXGI_MAPPED_RECT, mapflags: u32) -> windows_core::Result<()> { + pub unsafe fn Map(&self, plockedrect: *mut DXGI_MAPPED_RECT, mapflags: DXGI_MAP_FLAGS) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).Map)(windows_core::Interface::as_raw(self), plockedrect, mapflags).ok() } pub unsafe fn Unmap(&self) -> windows_core::Result<()> { @@ -1509,7 +1518,7 @@ pub struct IDXGISurface_Vtbl { pub GetDesc: unsafe extern "system" fn(*mut core::ffi::c_void, *mut DXGI_SURFACE_DESC) -> windows_core::HRESULT, #[cfg(not(feature = "Win32_Graphics_Dxgi_Common"))] GetDesc: usize, - pub Map: unsafe extern "system" fn(*mut core::ffi::c_void, *mut DXGI_MAPPED_RECT, u32) -> windows_core::HRESULT, + pub Map: unsafe extern "system" fn(*mut core::ffi::c_void, *mut DXGI_MAPPED_RECT, DXGI_MAP_FLAGS) -> windows_core::HRESULT, pub Unmap: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, } windows_core::imp::define_interface!(IDXGISurface1, IDXGISurface1_Vtbl, 0x4ae63092_6327_4c1b_80ae_bfe12ea32b86); @@ -1577,7 +1586,7 @@ impl core::ops::Deref for IDXGISwapChain { } windows_core::imp::interface_hierarchy!(IDXGISwapChain, windows_core::IUnknown, IDXGIObject, IDXGIDeviceSubObject); impl IDXGISwapChain { - pub unsafe fn Present(&self, syncinterval: u32, flags: u32) -> windows_core::HRESULT { + pub unsafe fn Present(&self, syncinterval: u32, flags: DXGI_PRESENT) -> windows_core::HRESULT { (windows_core::Interface::vtable(self).Present)(windows_core::Interface::as_raw(self), syncinterval, flags) } pub unsafe fn GetBuffer(&self, buffer: u32) -> windows_core::Result @@ -1598,12 +1607,13 @@ impl IDXGISwapChain { (windows_core::Interface::vtable(self).GetFullscreenState)(windows_core::Interface::as_raw(self), core::mem::transmute(pfullscreen.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pptarget.unwrap_or(std::ptr::null_mut()))).ok() } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn GetDesc(&self, pdesc: *mut DXGI_SWAP_CHAIN_DESC) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn ResizeBuffers(&self, buffercount: u32, width: u32, height: u32, newformat: Common::DXGI_FORMAT, swapchainflags: u32) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).ResizeBuffers)(windows_core::Interface::as_raw(self), buffercount, width, height, newformat, swapchainflags).ok() + pub unsafe fn ResizeBuffers(&self, buffercount: u32, width: u32, height: u32, newformat: Common::DXGI_FORMAT, swapchainflags: DXGI_SWAP_CHAIN_FLAG) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).ResizeBuffers)(windows_core::Interface::as_raw(self), buffercount, width, height, newformat, swapchainflags.0 as _).ok() } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] pub unsafe fn ResizeTarget(&self, pnewtargetparameters: *const Common::DXGI_MODE_DESC) -> windows_core::Result<()> { @@ -1626,7 +1636,7 @@ unsafe impl Sync for IDXGISwapChain {} #[repr(C)] pub struct IDXGISwapChain_Vtbl { pub base__: IDXGIDeviceSubObject_Vtbl, - pub Present: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32) -> windows_core::HRESULT, + pub Present: unsafe extern "system" fn(*mut core::ffi::c_void, u32, DXGI_PRESENT) -> windows_core::HRESULT, pub GetBuffer: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, pub SetFullscreenState: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::BOOL, *mut core::ffi::c_void) -> windows_core::HRESULT, pub GetFullscreenState: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::BOOL, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, @@ -1656,12 +1666,14 @@ impl core::ops::Deref for IDXGISwapChain1 { windows_core::imp::interface_hierarchy!(IDXGISwapChain1, windows_core::IUnknown, IDXGIObject, IDXGIDeviceSubObject, IDXGISwapChain); impl IDXGISwapChain1 { #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn GetDesc1(&self, pdesc: *mut DXGI_SWAP_CHAIN_DESC1) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetDesc1)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetDesc1(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetDesc1)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn GetFullscreenDesc(&self, pdesc: *mut DXGI_SWAP_CHAIN_FULLSCREEN_DESC) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).GetFullscreenDesc)(windows_core::Interface::as_raw(self), pdesc).ok() + pub unsafe fn GetFullscreenDesc(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetFullscreenDesc)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } pub unsafe fn GetHwnd(&self) -> windows_core::Result { let mut result__ = core::mem::zeroed(); @@ -1674,7 +1686,7 @@ impl IDXGISwapChain1 { let mut result__ = core::ptr::null_mut(); (windows_core::Interface::vtable(self).GetCoreWindow)(windows_core::Interface::as_raw(self), &T::IID, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - pub unsafe fn Present1(&self, syncinterval: u32, presentflags: u32, ppresentparameters: *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT { + pub unsafe fn Present1(&self, syncinterval: u32, presentflags: DXGI_PRESENT, ppresentparameters: *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT { (windows_core::Interface::vtable(self).Present1)(windows_core::Interface::as_raw(self), syncinterval, presentflags, ppresentparameters) } pub unsafe fn IsTemporaryMonoSupported(&self) -> super::super::Foundation::BOOL { @@ -1716,7 +1728,7 @@ pub struct IDXGISwapChain1_Vtbl { GetFullscreenDesc: usize, pub GetHwnd: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::HWND) -> windows_core::HRESULT, pub GetCoreWindow: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - pub Present1: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32, *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT, + pub Present1: unsafe extern "system" fn(*mut core::ffi::c_void, u32, DXGI_PRESENT, *const DXGI_PRESENT_PARAMETERS) -> windows_core::HRESULT, pub IsTemporaryMonoSupported: unsafe extern "system" fn(*mut core::ffi::c_void) -> super::super::Foundation::BOOL, pub GetRestrictToOutput: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, pub SetBackgroundColor: unsafe extern "system" fn(*mut core::ffi::c_void, *const DXGI_RGBA) -> windows_core::HRESULT, @@ -1797,8 +1809,8 @@ impl IDXGISwapChain3 { (windows_core::Interface::vtable(self).SetColorSpace1)(windows_core::Interface::as_raw(self), colorspace).ok() } #[cfg(feature = "Win32_Graphics_Dxgi_Common")] - pub unsafe fn ResizeBuffers1(&self, buffercount: u32, width: u32, height: u32, format: Common::DXGI_FORMAT, swapchainflags: u32, pcreationnodemask: *const u32, pppresentqueue: *const Option) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).ResizeBuffers1)(windows_core::Interface::as_raw(self), buffercount, width, height, format, swapchainflags, pcreationnodemask, core::mem::transmute(pppresentqueue)).ok() + pub unsafe fn ResizeBuffers1(&self, buffercount: u32, width: u32, height: u32, format: Common::DXGI_FORMAT, swapchainflags: DXGI_SWAP_CHAIN_FLAG, pcreationnodemask: *const u32, pppresentqueue: *const Option) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).ResizeBuffers1)(windows_core::Interface::as_raw(self), buffercount, width, height, format, swapchainflags.0 as _, pcreationnodemask, core::mem::transmute(pppresentqueue)).ok() } } unsafe impl Send for IDXGISwapChain3 {} @@ -1905,7 +1917,7 @@ pub const DXGI_COMPUTE_PREEMPTION_DMA_BUFFER_BOUNDARY: DXGI_COMPUTE_PREEMPTION_G pub const DXGI_COMPUTE_PREEMPTION_INSTRUCTION_BOUNDARY: DXGI_COMPUTE_PREEMPTION_GRANULARITY = DXGI_COMPUTE_PREEMPTION_GRANULARITY(4i32); pub const DXGI_COMPUTE_PREEMPTION_THREAD_BOUNDARY: DXGI_COMPUTE_PREEMPTION_GRANULARITY = DXGI_COMPUTE_PREEMPTION_GRANULARITY(3i32); pub const DXGI_COMPUTE_PREEMPTION_THREAD_GROUP_BOUNDARY: DXGI_COMPUTE_PREEMPTION_GRANULARITY = DXGI_COMPUTE_PREEMPTION_GRANULARITY(2i32); -pub const DXGI_CREATE_FACTORY_DEBUG: u32 = 1u32; +pub const DXGI_CREATE_FACTORY_DEBUG: DXGI_CREATE_FACTORY_FLAGS = DXGI_CREATE_FACTORY_FLAGS(1u32); pub const DXGI_DEBUG_ALL: windows_core::GUID = windows_core::GUID::from_u128(0xe48ae283_da80_490b_87e6_43e9a9cfda08); pub const DXGI_DEBUG_APP: windows_core::GUID = windows_core::GUID::from_u128(0x06cd6e01_4219_4ebd_8709_27ed23360c62); pub const DXGI_DEBUG_BINARY_VERSION: u32 = 1u32; @@ -1915,10 +1927,10 @@ pub const DXGI_DEBUG_RLO_ALL: DXGI_DEBUG_RLO_FLAGS = DXGI_DEBUG_RLO_FLAGS(7i32); pub const DXGI_DEBUG_RLO_DETAIL: DXGI_DEBUG_RLO_FLAGS = DXGI_DEBUG_RLO_FLAGS(2i32); pub const DXGI_DEBUG_RLO_IGNORE_INTERNAL: DXGI_DEBUG_RLO_FLAGS = DXGI_DEBUG_RLO_FLAGS(4i32); pub const DXGI_DEBUG_RLO_SUMMARY: DXGI_DEBUG_RLO_FLAGS = DXGI_DEBUG_RLO_FLAGS(1i32); -pub const DXGI_ENUM_MODES_DISABLED_STEREO: u32 = 8u32; -pub const DXGI_ENUM_MODES_INTERLACED: u32 = 1u32; -pub const DXGI_ENUM_MODES_SCALING: u32 = 2u32; -pub const DXGI_ENUM_MODES_STEREO: u32 = 4u32; +pub const DXGI_ENUM_MODES_DISABLED_STEREO: DXGI_ENUM_MODES = DXGI_ENUM_MODES(8u32); +pub const DXGI_ENUM_MODES_INTERLACED: DXGI_ENUM_MODES = DXGI_ENUM_MODES(1u32); +pub const DXGI_ENUM_MODES_SCALING: DXGI_ENUM_MODES = DXGI_ENUM_MODES(2u32); +pub const DXGI_ENUM_MODES_STEREO: DXGI_ENUM_MODES = DXGI_ENUM_MODES(4u32); pub const DXGI_ERROR_ACCESS_DENIED: windows_core::HRESULT = windows_core::HRESULT(0x887A002B_u32 as _); pub const DXGI_ERROR_ACCESS_LOST: windows_core::HRESULT = windows_core::HRESULT(0x887A0026_u32 as _); pub const DXGI_ERROR_ALREADY_EXISTS: windows_core::HRESULT = windows_core::HRESULT(0x887A0036_u32 as _); @@ -1989,9 +2001,9 @@ pub const DXGI_INFO_QUEUE_MESSAGE_SEVERITY_ERROR: DXGI_INFO_QUEUE_MESSAGE_SEVERI pub const DXGI_INFO_QUEUE_MESSAGE_SEVERITY_INFO: DXGI_INFO_QUEUE_MESSAGE_SEVERITY = DXGI_INFO_QUEUE_MESSAGE_SEVERITY(3i32); pub const DXGI_INFO_QUEUE_MESSAGE_SEVERITY_MESSAGE: DXGI_INFO_QUEUE_MESSAGE_SEVERITY = DXGI_INFO_QUEUE_MESSAGE_SEVERITY(4i32); pub const DXGI_INFO_QUEUE_MESSAGE_SEVERITY_WARNING: DXGI_INFO_QUEUE_MESSAGE_SEVERITY = DXGI_INFO_QUEUE_MESSAGE_SEVERITY(2i32); -pub const DXGI_MAP_DISCARD: u32 = 4u32; -pub const DXGI_MAP_READ: u32 = 1u32; -pub const DXGI_MAP_WRITE: u32 = 2u32; +pub const DXGI_MAP_DISCARD: DXGI_MAP_FLAGS = DXGI_MAP_FLAGS(4u32); +pub const DXGI_MAP_READ: DXGI_MAP_FLAGS = DXGI_MAP_FLAGS(1u32); +pub const DXGI_MAP_WRITE: DXGI_MAP_FLAGS = DXGI_MAP_FLAGS(2u32); pub const DXGI_MAX_SWAP_CHAIN_BUFFERS: u32 = 16u32; pub const DXGI_MEMORY_SEGMENT_GROUP_LOCAL: DXGI_MEMORY_SEGMENT_GROUP = DXGI_MEMORY_SEGMENT_GROUP(0i32); pub const DXGI_MEMORY_SEGMENT_GROUP_NON_LOCAL: DXGI_MEMORY_SEGMENT_GROUP = DXGI_MEMORY_SEGMENT_GROUP(1i32); @@ -2329,10 +2341,10 @@ pub const DXGI_MSG_Phone_IDXGISwapChain_SetFullscreenState_NotAvailable: DXGI_Me pub const DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709: DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS = DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS(2i32); pub const DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE: DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS = DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS(1i32); pub const DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAG_xvYCC: DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS = DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS(4i32); -pub const DXGI_MWA_NO_ALT_ENTER: u32 = 2u32; -pub const DXGI_MWA_NO_PRINT_SCREEN: u32 = 4u32; -pub const DXGI_MWA_NO_WINDOW_CHANGES: u32 = 1u32; -pub const DXGI_MWA_VALID: u32 = 7u32; +pub const DXGI_MWA_NO_ALT_ENTER: DXGI_MWA_FLAGS = DXGI_MWA_FLAGS(2u32); +pub const DXGI_MWA_NO_PRINT_SCREEN: DXGI_MWA_FLAGS = DXGI_MWA_FLAGS(4u32); +pub const DXGI_MWA_NO_WINDOW_CHANGES: DXGI_MWA_FLAGS = DXGI_MWA_FLAGS(1u32); +pub const DXGI_MWA_VALID: DXGI_MWA_FLAGS = DXGI_MWA_FLAGS(7u32); pub const DXGI_OFFER_RESOURCE_FLAG_ALLOW_DECOMMIT: DXGI_OFFER_RESOURCE_FLAGS = DXGI_OFFER_RESOURCE_FLAGS(1i32); pub const DXGI_OFFER_RESOURCE_PRIORITY_HIGH: DXGI_OFFER_RESOURCE_PRIORITY = DXGI_OFFER_RESOURCE_PRIORITY(3i32); pub const DXGI_OFFER_RESOURCE_PRIORITY_LOW: DXGI_OFFER_RESOURCE_PRIORITY = DXGI_OFFER_RESOURCE_PRIORITY(1i32); @@ -2344,31 +2356,31 @@ pub const DXGI_OUTDUPL_POINTER_SHAPE_TYPE_MONOCHROME: DXGI_OUTDUPL_POINTER_SHAPE pub const DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG_PRESENT: DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG = DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG(1i32); pub const DXGI_OVERLAY_SUPPORT_FLAG_DIRECT: DXGI_OVERLAY_SUPPORT_FLAG = DXGI_OVERLAY_SUPPORT_FLAG(1i32); pub const DXGI_OVERLAY_SUPPORT_FLAG_SCALING: DXGI_OVERLAY_SUPPORT_FLAG = DXGI_OVERLAY_SUPPORT_FLAG(2i32); -pub const DXGI_PRESENT_ALLOW_TEARING: u32 = 512u32; -pub const DXGI_PRESENT_DO_NOT_SEQUENCE: u32 = 2u32; -pub const DXGI_PRESENT_DO_NOT_WAIT: u32 = 8u32; -pub const DXGI_PRESENT_RESTART: u32 = 4u32; -pub const DXGI_PRESENT_RESTRICT_TO_OUTPUT: u32 = 64u32; -pub const DXGI_PRESENT_STEREO_PREFER_RIGHT: u32 = 16u32; -pub const DXGI_PRESENT_STEREO_TEMPORARY_MONO: u32 = 32u32; -pub const DXGI_PRESENT_TEST: u32 = 1u32; -pub const DXGI_PRESENT_USE_DURATION: u32 = 256u32; +pub const DXGI_PRESENT_ALLOW_TEARING: DXGI_PRESENT = DXGI_PRESENT(512u32); +pub const DXGI_PRESENT_DO_NOT_SEQUENCE: DXGI_PRESENT = DXGI_PRESENT(2u32); +pub const DXGI_PRESENT_DO_NOT_WAIT: DXGI_PRESENT = DXGI_PRESENT(8u32); +pub const DXGI_PRESENT_RESTART: DXGI_PRESENT = DXGI_PRESENT(4u32); +pub const DXGI_PRESENT_RESTRICT_TO_OUTPUT: DXGI_PRESENT = DXGI_PRESENT(64u32); +pub const DXGI_PRESENT_STEREO_PREFER_RIGHT: DXGI_PRESENT = DXGI_PRESENT(16u32); +pub const DXGI_PRESENT_STEREO_TEMPORARY_MONO: DXGI_PRESENT = DXGI_PRESENT(32u32); +pub const DXGI_PRESENT_TEST: DXGI_PRESENT = DXGI_PRESENT(1u32); +pub const DXGI_PRESENT_USE_DURATION: DXGI_PRESENT = DXGI_PRESENT(256u32); pub const DXGI_RECLAIM_RESOURCE_RESULT_DISCARDED: DXGI_RECLAIM_RESOURCE_RESULTS = DXGI_RECLAIM_RESOURCE_RESULTS(1i32); pub const DXGI_RECLAIM_RESOURCE_RESULT_NOT_COMMITTED: DXGI_RECLAIM_RESOURCE_RESULTS = DXGI_RECLAIM_RESOURCE_RESULTS(2i32); pub const DXGI_RECLAIM_RESOURCE_RESULT_OK: DXGI_RECLAIM_RESOURCE_RESULTS = DXGI_RECLAIM_RESOURCE_RESULTS(0i32); pub const DXGI_RESIDENCY_EVICTED_TO_DISK: DXGI_RESIDENCY = DXGI_RESIDENCY(3i32); pub const DXGI_RESIDENCY_FULLY_RESIDENT: DXGI_RESIDENCY = DXGI_RESIDENCY(1i32); pub const DXGI_RESIDENCY_RESIDENT_IN_SHARED_MEMORY: DXGI_RESIDENCY = DXGI_RESIDENCY(2i32); -pub const DXGI_RESOURCE_PRIORITY_HIGH: u32 = 2684354560u32; -pub const DXGI_RESOURCE_PRIORITY_LOW: u32 = 1342177280u32; -pub const DXGI_RESOURCE_PRIORITY_MAXIMUM: u32 = 3355443200u32; -pub const DXGI_RESOURCE_PRIORITY_MINIMUM: u32 = 671088640u32; -pub const DXGI_RESOURCE_PRIORITY_NORMAL: u32 = 2013265920u32; +pub const DXGI_RESOURCE_PRIORITY_HIGH: DXGI_RESOURCE_PRIORITY = DXGI_RESOURCE_PRIORITY(2684354560u32); +pub const DXGI_RESOURCE_PRIORITY_LOW: DXGI_RESOURCE_PRIORITY = DXGI_RESOURCE_PRIORITY(1342177280u32); +pub const DXGI_RESOURCE_PRIORITY_MAXIMUM: DXGI_RESOURCE_PRIORITY = DXGI_RESOURCE_PRIORITY(3355443200u32); +pub const DXGI_RESOURCE_PRIORITY_MINIMUM: DXGI_RESOURCE_PRIORITY = DXGI_RESOURCE_PRIORITY(671088640u32); +pub const DXGI_RESOURCE_PRIORITY_NORMAL: DXGI_RESOURCE_PRIORITY = DXGI_RESOURCE_PRIORITY(2013265920u32); pub const DXGI_SCALING_ASPECT_RATIO_STRETCH: DXGI_SCALING = DXGI_SCALING(2i32); pub const DXGI_SCALING_NONE: DXGI_SCALING = DXGI_SCALING(1i32); pub const DXGI_SCALING_STRETCH: DXGI_SCALING = DXGI_SCALING(0i32); -pub const DXGI_SHARED_RESOURCE_READ: u32 = 2147483648u32; -pub const DXGI_SHARED_RESOURCE_WRITE: u32 = 1u32; +pub const DXGI_SHARED_RESOURCE_READ: DXGI_SHARED_RESOURCE_RW = DXGI_SHARED_RESOURCE_RW(2147483648u32); +pub const DXGI_SHARED_RESOURCE_WRITE: DXGI_SHARED_RESOURCE_RW = DXGI_SHARED_RESOURCE_RW(1u32); pub const DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_OVERLAY_PRESENT: DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG = DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG(2i32); pub const DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_PRESENT: DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG = DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG(1i32); pub const DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH: DXGI_SWAP_CHAIN_FLAG = DXGI_SWAP_CHAIN_FLAG(2i32); @@ -2496,6 +2508,50 @@ impl core::fmt::Debug for DXGI_COMPUTE_PREEMPTION_GRANULARITY { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DXGI_CREATE_FACTORY_FLAGS(pub u32); +impl windows_core::TypeKind for DXGI_CREATE_FACTORY_FLAGS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DXGI_CREATE_FACTORY_FLAGS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DXGI_CREATE_FACTORY_FLAGS").field(&self.0).finish() + } +} +impl DXGI_CREATE_FACTORY_FLAGS { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_CREATE_FACTORY_FLAGS { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_CREATE_FACTORY_FLAGS { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_CREATE_FACTORY_FLAGS { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_CREATE_FACTORY_FLAGS { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_CREATE_FACTORY_FLAGS { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_DEBUG_RLO_FLAGS(pub i32); impl windows_core::TypeKind for DXGI_DEBUG_RLO_FLAGS { type TypeKind = windows_core::CopyType; @@ -2540,6 +2596,50 @@ impl core::ops::Not for DXGI_DEBUG_RLO_FLAGS { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DXGI_ENUM_MODES(pub u32); +impl windows_core::TypeKind for DXGI_ENUM_MODES { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DXGI_ENUM_MODES { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DXGI_ENUM_MODES").field(&self.0).finish() + } +} +impl DXGI_ENUM_MODES { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_ENUM_MODES { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_ENUM_MODES { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_ENUM_MODES { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_ENUM_MODES { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_ENUM_MODES { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_FEATURE(pub i32); impl windows_core::TypeKind for DXGI_FEATURE { type TypeKind = windows_core::CopyType; @@ -2661,6 +2761,50 @@ impl core::fmt::Debug for DXGI_INFO_QUEUE_MESSAGE_SEVERITY { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DXGI_MAP_FLAGS(pub u32); +impl windows_core::TypeKind for DXGI_MAP_FLAGS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DXGI_MAP_FLAGS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DXGI_MAP_FLAGS").field(&self.0).finish() + } +} +impl DXGI_MAP_FLAGS { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_MAP_FLAGS { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_MAP_FLAGS { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_MAP_FLAGS { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_MAP_FLAGS { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_MAP_FLAGS { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_MEMORY_SEGMENT_GROUP(pub i32); impl windows_core::TypeKind for DXGI_MEMORY_SEGMENT_GROUP { type TypeKind = windows_core::CopyType; @@ -2681,6 +2825,83 @@ impl core::fmt::Debug for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { f.debug_tuple("DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS").field(&self.0).finish() } } +impl DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DXGI_MWA_FLAGS(pub u32); +impl windows_core::TypeKind for DXGI_MWA_FLAGS { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DXGI_MWA_FLAGS { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DXGI_MWA_FLAGS").field(&self.0).finish() + } +} +impl DXGI_MWA_FLAGS { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_MWA_FLAGS { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_MWA_FLAGS { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_MWA_FLAGS { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_MWA_FLAGS { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_MWA_FLAGS { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_Message_Id(pub i32); @@ -2703,6 +2924,39 @@ impl core::fmt::Debug for DXGI_OFFER_RESOURCE_FLAGS { f.debug_tuple("DXGI_OFFER_RESOURCE_FLAGS").field(&self.0).finish() } } +impl DXGI_OFFER_RESOURCE_FLAGS { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_OFFER_RESOURCE_FLAGS { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_OFFER_RESOURCE_FLAGS { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_OFFER_RESOURCE_FLAGS { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_OFFER_RESOURCE_FLAGS { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_OFFER_RESOURCE_FLAGS { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_OFFER_RESOURCE_PRIORITY(pub i32); @@ -2725,6 +2979,39 @@ impl core::fmt::Debug for DXGI_OUTDUPL_FLAG { f.debug_tuple("DXGI_OUTDUPL_FLAG").field(&self.0).finish() } } +impl DXGI_OUTDUPL_FLAG { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_OUTDUPL_FLAG { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_OUTDUPL_FLAG { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_OUTDUPL_FLAG { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_OUTDUPL_FLAG { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_OUTDUPL_FLAG { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_OUTDUPL_POINTER_SHAPE_TYPE(pub i32); @@ -2747,6 +3034,39 @@ impl core::fmt::Debug for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG { f.debug_tuple("DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG").field(&self.0).finish() } } +impl DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_OVERLAY_COLOR_SPACE_SUPPORT_FLAG { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_OVERLAY_SUPPORT_FLAG(pub i32); @@ -2758,6 +3078,83 @@ impl core::fmt::Debug for DXGI_OVERLAY_SUPPORT_FLAG { f.debug_tuple("DXGI_OVERLAY_SUPPORT_FLAG").field(&self.0).finish() } } +impl DXGI_OVERLAY_SUPPORT_FLAG { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_OVERLAY_SUPPORT_FLAG { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_OVERLAY_SUPPORT_FLAG { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_OVERLAY_SUPPORT_FLAG { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_OVERLAY_SUPPORT_FLAG { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_OVERLAY_SUPPORT_FLAG { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DXGI_PRESENT(pub u32); +impl windows_core::TypeKind for DXGI_PRESENT { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DXGI_PRESENT { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DXGI_PRESENT").field(&self.0).finish() + } +} +impl DXGI_PRESENT { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_PRESENT { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_PRESENT { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_PRESENT { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_PRESENT { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_PRESENT { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_RECLAIM_RESOURCE_RESULTS(pub i32); @@ -2782,6 +3179,17 @@ impl core::fmt::Debug for DXGI_RESIDENCY { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DXGI_RESOURCE_PRIORITY(pub u32); +impl windows_core::TypeKind for DXGI_RESOURCE_PRIORITY { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DXGI_RESOURCE_PRIORITY { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DXGI_RESOURCE_PRIORITY").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_SCALING(pub i32); impl windows_core::TypeKind for DXGI_SCALING { type TypeKind = windows_core::CopyType; @@ -2793,6 +3201,50 @@ impl core::fmt::Debug for DXGI_SCALING { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DXGI_SHARED_RESOURCE_RW(pub u32); +impl windows_core::TypeKind for DXGI_SHARED_RESOURCE_RW { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DXGI_SHARED_RESOURCE_RW { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DXGI_SHARED_RESOURCE_RW").field(&self.0).finish() + } +} +impl DXGI_SHARED_RESOURCE_RW { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_SHARED_RESOURCE_RW { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_SHARED_RESOURCE_RW { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_SHARED_RESOURCE_RW { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_SHARED_RESOURCE_RW { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_SHARED_RESOURCE_RW { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG(pub i32); impl windows_core::TypeKind for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { type TypeKind = windows_core::CopyType; @@ -2802,6 +3254,39 @@ impl core::fmt::Debug for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { f.debug_tuple("DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG").field(&self.0).finish() } } +impl DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_SWAP_CHAIN_FLAG(pub i32); @@ -2813,6 +3298,39 @@ impl core::fmt::Debug for DXGI_SWAP_CHAIN_FLAG { f.debug_tuple("DXGI_SWAP_CHAIN_FLAG").field(&self.0).finish() } } +impl DXGI_SWAP_CHAIN_FLAG { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DXGI_SWAP_CHAIN_FLAG { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DXGI_SWAP_CHAIN_FLAG { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DXGI_SWAP_CHAIN_FLAG { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DXGI_SWAP_CHAIN_FLAG { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DXGI_SWAP_CHAIN_FLAG { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DXGI_SWAP_EFFECT(pub i32); diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Gdi/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Gdi/mod.rs index a80cd4c794..0a049ba53e 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Gdi/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Gdi/mod.rs @@ -8529,13 +8529,14 @@ impl Default for HANDLETABLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HBITMAP(pub isize); +pub struct HBITMAP(pub *mut core::ffi::c_void); impl HBITMAP { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HBITMAP { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteObject(*self); @@ -8558,13 +8559,14 @@ impl From for HGDIOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HBRUSH(pub isize); +pub struct HBRUSH(pub *mut core::ffi::c_void); impl HBRUSH { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HBRUSH { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteObject(*self); @@ -8587,10 +8589,10 @@ impl From for HGDIOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDC(pub isize); +pub struct HDC(pub *mut core::ffi::c_void); impl HDC { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HDC { @@ -8603,13 +8605,14 @@ impl windows_core::TypeKind for HDC { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HENHMETAFILE(pub isize); +pub struct HENHMETAFILE(pub *mut core::ffi::c_void); impl HENHMETAFILE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HENHMETAFILE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteEnhMetaFile(*self); @@ -8626,13 +8629,14 @@ impl windows_core::TypeKind for HENHMETAFILE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HFONT(pub isize); +pub struct HFONT(pub *mut core::ffi::c_void); impl HFONT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HFONT { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteObject(*self); @@ -8655,10 +8659,18 @@ impl From for HGDIOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HGDIOBJ(pub isize); +pub struct HGDIOBJ(pub *mut core::ffi::c_void); impl HGDIOBJ { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HGDIOBJ { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DeleteObject(*self); + } } } impl Default for HGDIOBJ { @@ -8671,13 +8683,14 @@ impl windows_core::TypeKind for HGDIOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMETAFILE(pub isize); +pub struct HMETAFILE(pub *mut core::ffi::c_void); impl HMETAFILE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HMETAFILE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteMetaFile(*self); @@ -8694,10 +8707,10 @@ impl windows_core::TypeKind for HMETAFILE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMONITOR(pub isize); +pub struct HMONITOR(pub *mut core::ffi::c_void); impl HMONITOR { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HMONITOR { @@ -8710,13 +8723,14 @@ impl windows_core::TypeKind for HMONITOR { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPALETTE(pub isize); +pub struct HPALETTE(pub *mut core::ffi::c_void); impl HPALETTE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HPALETTE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteObject(*self); @@ -8739,13 +8753,14 @@ impl From for HGDIOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPEN(pub isize); +pub struct HPEN(pub *mut core::ffi::c_void); impl HPEN { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HPEN { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteObject(*self); @@ -8768,13 +8783,14 @@ impl From for HGDIOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRGN(pub isize); +pub struct HRGN(pub *mut core::ffi::c_void); impl HRGN { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HRGN { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteObject(*self); diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/GdiPlus/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/GdiPlus/mod.rs index 1fe8c42a88..0904e2cdb5 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/GdiPlus/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/GdiPlus/mod.rs @@ -5732,270 +5732,270 @@ impl Default for GdiplusStartupOutput { unsafe { core::mem::zeroed() } } } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpAdjustableArrowCap(pub isize); +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpAdjustableArrowCap(pub u8); +impl windows_core::TypeKind for GpAdjustableArrowCap { + type TypeKind = windows_core::CopyType; +} impl Default for GpAdjustableArrowCap { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpAdjustableArrowCap { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpBitmap(pub u8); +impl windows_core::TypeKind for GpBitmap { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpBitmap(pub isize); impl Default for GpBitmap { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpBitmap { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpBrush(pub u8); +impl windows_core::TypeKind for GpBrush { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpBrush(pub isize); impl Default for GpBrush { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpBrush { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpCachedBitmap(pub u8); +impl windows_core::TypeKind for GpCachedBitmap { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpCachedBitmap(pub isize); impl Default for GpCachedBitmap { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpCachedBitmap { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpCustomLineCap(pub u8); +impl windows_core::TypeKind for GpCustomLineCap { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpCustomLineCap(pub isize); impl Default for GpCustomLineCap { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpCustomLineCap { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpFont(pub u8); +impl windows_core::TypeKind for GpFont { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpFont(pub isize); impl Default for GpFont { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpFont { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpFontCollection(pub u8); +impl windows_core::TypeKind for GpFontCollection { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpFontCollection(pub isize); impl Default for GpFontCollection { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpFontCollection { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpFontFamily(pub u8); +impl windows_core::TypeKind for GpFontFamily { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpFontFamily(pub isize); impl Default for GpFontFamily { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpFontFamily { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpGraphics(pub u8); +impl windows_core::TypeKind for GpGraphics { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpGraphics(pub isize); impl Default for GpGraphics { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpGraphics { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpHatch(pub u8); +impl windows_core::TypeKind for GpHatch { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpHatch(pub isize); impl Default for GpHatch { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpHatch { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpImage(pub u8); +impl windows_core::TypeKind for GpImage { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpImage(pub isize); impl Default for GpImage { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpImage { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpImageAttributes(pub u8); +impl windows_core::TypeKind for GpImageAttributes { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpImageAttributes(pub isize); impl Default for GpImageAttributes { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpImageAttributes { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpInstalledFontCollection(pub u8); +impl windows_core::TypeKind for GpInstalledFontCollection { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpInstalledFontCollection(pub isize); impl Default for GpInstalledFontCollection { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpInstalledFontCollection { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpLineGradient(pub u8); +impl windows_core::TypeKind for GpLineGradient { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpLineGradient(pub isize); impl Default for GpLineGradient { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpLineGradient { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpMetafile(pub u8); +impl windows_core::TypeKind for GpMetafile { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpMetafile(pub isize); impl Default for GpMetafile { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpMetafile { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpPath(pub u8); +impl windows_core::TypeKind for GpPath { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpPath(pub isize); impl Default for GpPath { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpPath { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpPathGradient(pub u8); +impl windows_core::TypeKind for GpPathGradient { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpPathGradient(pub isize); impl Default for GpPathGradient { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpPathGradient { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpPathIterator(pub u8); +impl windows_core::TypeKind for GpPathIterator { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpPathIterator(pub isize); impl Default for GpPathIterator { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpPathIterator { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpPen(pub u8); +impl windows_core::TypeKind for GpPen { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpPen(pub isize); impl Default for GpPen { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpPen { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpPrivateFontCollection(pub u8); +impl windows_core::TypeKind for GpPrivateFontCollection { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpPrivateFontCollection(pub isize); impl Default for GpPrivateFontCollection { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpPrivateFontCollection { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpRegion(pub u8); +impl windows_core::TypeKind for GpRegion { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpRegion(pub isize); impl Default for GpRegion { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpRegion { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpSolidFill(pub u8); +impl windows_core::TypeKind for GpSolidFill { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpSolidFill(pub isize); impl Default for GpSolidFill { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpSolidFill { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpStringFormat(pub u8); +impl windows_core::TypeKind for GpStringFormat { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpStringFormat(pub isize); impl Default for GpStringFormat { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpStringFormat { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct GpTexture(pub u8); +impl windows_core::TypeKind for GpTexture { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct GpTexture(pub isize); impl Default for GpTexture { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for GpTexture { - type TypeKind = windows_core::CopyType; -} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct HueSaturationLightness { diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/OpenGL/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/OpenGL/mod.rs index 4eee8c3342..e5b5661358 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/OpenGL/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/OpenGL/mod.rs @@ -3011,13 +3011,14 @@ impl Default for GLYPHMETRICSFLOAT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HGLRC(pub isize); +pub struct HGLRC(pub *mut core::ffi::c_void); impl HGLRC { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HGLRC { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = wglDeleteContext(*self); diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs index 4246492f3f..179d879358 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs @@ -1,95 +1,92 @@ -#[cfg(feature = "Win32_Storage_Xps")] #[inline] pub unsafe fn PTCloseProvider(hprovider: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTCloseProvider(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTCloseProvider(hprovider : HPTPROVIDER) -> windows_core::HRESULT); PTCloseProvider(hprovider.param().abi()).ok() } -#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_Storage_Xps", feature = "Win32_System_Com"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_System_Com"))] #[inline] pub unsafe fn PTConvertDevModeToPrintTicket(hprovider: P0, cbdevmode: u32, pdevmode: *const super::super::Gdi::DEVMODEA, scope: EPrintTicketScope, pprintticket: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTConvertDevModeToPrintTicket(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, cbdevmode : u32, pdevmode : *const super::super::Gdi:: DEVMODEA, scope : EPrintTicketScope, pprintticket : * mut core::ffi::c_void) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTConvertDevModeToPrintTicket(hprovider : HPTPROVIDER, cbdevmode : u32, pdevmode : *const super::super::Gdi:: DEVMODEA, scope : EPrintTicketScope, pprintticket : * mut core::ffi::c_void) -> windows_core::HRESULT); PTConvertDevModeToPrintTicket(hprovider.param().abi(), cbdevmode, pdevmode, scope, pprintticket.param().abi()).ok() } -#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_Storage_Xps", feature = "Win32_System_Com"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_System_Com"))] #[inline] pub unsafe fn PTConvertPrintTicketToDevMode(hprovider: P0, pprintticket: P1, basedevmodetype: EDefaultDevmodeType, scope: EPrintTicketScope, pcbdevmode: *mut u32, ppdevmode: *mut *mut super::super::Gdi::DEVMODEA, pbstrerrormessage: Option<*mut windows_core::BSTR>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTConvertPrintTicketToDevMode(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pprintticket : * mut core::ffi::c_void, basedevmodetype : EDefaultDevmodeType, scope : EPrintTicketScope, pcbdevmode : *mut u32, ppdevmode : *mut *mut super::super::Gdi:: DEVMODEA, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTConvertPrintTicketToDevMode(hprovider : HPTPROVIDER, pprintticket : * mut core::ffi::c_void, basedevmodetype : EDefaultDevmodeType, scope : EPrintTicketScope, pcbdevmode : *mut u32, ppdevmode : *mut *mut super::super::Gdi:: DEVMODEA, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); PTConvertPrintTicketToDevMode(hprovider.param().abi(), pprintticket.param().abi(), basedevmodetype, scope, pcbdevmode, ppdevmode, core::mem::transmute(pbstrerrormessage.unwrap_or(std::ptr::null_mut()))).ok() } -#[cfg(all(feature = "Win32_Storage_Xps", feature = "Win32_System_Com"))] +#[cfg(feature = "Win32_System_Com")] #[inline] pub unsafe fn PTGetPrintCapabilities(hprovider: P0, pprintticket: P1, pcapabilities: P2, pbstrerrormessage: Option<*mut windows_core::BSTR>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintCapabilities(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pcapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintCapabilities(hprovider : HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pcapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); PTGetPrintCapabilities(hprovider.param().abi(), pprintticket.param().abi(), pcapabilities.param().abi(), core::mem::transmute(pbstrerrormessage.unwrap_or(std::ptr::null_mut()))).ok() } -#[cfg(all(feature = "Win32_Storage_Xps", feature = "Win32_System_Com"))] +#[cfg(feature = "Win32_System_Com")] #[inline] pub unsafe fn PTGetPrintDeviceCapabilities(hprovider: P0, pprintticket: P1, pdevicecapabilities: P2, pbstrerrormessage: Option<*mut windows_core::BSTR>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceCapabilities(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pdevicecapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceCapabilities(hprovider : HPTPROVIDER, pprintticket : * mut core::ffi::c_void, pdevicecapabilities : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); PTGetPrintDeviceCapabilities(hprovider.param().abi(), pprintticket.param().abi(), pdevicecapabilities.param().abi(), core::mem::transmute(pbstrerrormessage.unwrap_or(std::ptr::null_mut()))).ok() } -#[cfg(all(feature = "Win32_Storage_Xps", feature = "Win32_System_Com"))] +#[cfg(feature = "Win32_System_Com")] #[inline] pub unsafe fn PTGetPrintDeviceResources(hprovider: P0, pszlocalename: P1, pprintticket: P2, pdeviceresources: P3, pbstrerrormessage: Option<*mut windows_core::BSTR>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceResources(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pszlocalename : windows_core::PCWSTR, pprintticket : * mut core::ffi::c_void, pdeviceresources : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTGetPrintDeviceResources(hprovider : HPTPROVIDER, pszlocalename : windows_core::PCWSTR, pprintticket : * mut core::ffi::c_void, pdeviceresources : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); PTGetPrintDeviceResources(hprovider.param().abi(), pszlocalename.param().abi(), pprintticket.param().abi(), pdeviceresources.param().abi(), core::mem::transmute(pbstrerrormessage.unwrap_or(std::ptr::null_mut()))).ok() } -#[cfg(all(feature = "Win32_Storage_Xps", feature = "Win32_System_Com"))] +#[cfg(feature = "Win32_System_Com")] #[inline] pub unsafe fn PTMergeAndValidatePrintTicket(hprovider: P0, pbaseticket: P1, pdeltaticket: P2, scope: EPrintTicketScope, presultticket: P3, pbstrerrormessage: Option<*mut windows_core::BSTR>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTMergeAndValidatePrintTicket(hprovider : super::super::super::Storage::Xps:: HPTPROVIDER, pbaseticket : * mut core::ffi::c_void, pdeltaticket : * mut core::ffi::c_void, scope : EPrintTicketScope, presultticket : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTMergeAndValidatePrintTicket(hprovider : HPTPROVIDER, pbaseticket : * mut core::ffi::c_void, pdeltaticket : * mut core::ffi::c_void, scope : EPrintTicketScope, presultticket : * mut core::ffi::c_void, pbstrerrormessage : *mut core::mem::MaybeUninit < windows_core::BSTR >) -> windows_core::HRESULT); PTMergeAndValidatePrintTicket(hprovider.param().abi(), pbaseticket.param().abi(), pdeltaticket.param().abi(), scope, presultticket.param().abi(), core::mem::transmute(pbstrerrormessage.unwrap_or(std::ptr::null_mut()))).ok() } -#[cfg(feature = "Win32_Storage_Xps")] #[inline] -pub unsafe fn PTOpenProvider(pszprintername: P0, dwversion: u32) -> windows_core::Result +pub unsafe fn PTOpenProvider(pszprintername: P0, dwversion: u32) -> windows_core::Result where P0: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTOpenProvider(pszprintername : windows_core::PCWSTR, dwversion : u32, phprovider : *mut super::super::super::Storage::Xps:: HPTPROVIDER) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTOpenProvider(pszprintername : windows_core::PCWSTR, dwversion : u32, phprovider : *mut HPTPROVIDER) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); PTOpenProvider(pszprintername.param().abi(), dwversion, &mut result__).map(|| result__) } -#[cfg(feature = "Win32_Storage_Xps")] #[inline] -pub unsafe fn PTOpenProviderEx(pszprintername: P0, dwmaxversion: u32, dwprefversion: u32, phprovider: *mut super::super::super::Storage::Xps::HPTPROVIDER, pusedversion: *mut u32) -> windows_core::Result<()> +pub unsafe fn PTOpenProviderEx(pszprintername: P0, dwmaxversion: u32, dwprefversion: u32, phprovider: *mut HPTPROVIDER, pusedversion: *mut u32) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("prntvpt.dll" "system" fn PTOpenProviderEx(pszprintername : windows_core::PCWSTR, dwmaxversion : u32, dwprefversion : u32, phprovider : *mut super::super::super::Storage::Xps:: HPTPROVIDER, pusedversion : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("prntvpt.dll" "system" fn PTOpenProviderEx(pszprintername : windows_core::PCWSTR, dwmaxversion : u32, dwprefversion : u32, phprovider : *mut HPTPROVIDER, pusedversion : *mut u32) -> windows_core::HRESULT); PTOpenProviderEx(pszprintername.param().abi(), dwmaxversion, dwprefversion, phprovider, pusedversion).ok() } #[inline] @@ -140,3 +137,27 @@ impl core::fmt::Debug for EPrintTicketScope { f.debug_tuple("EPrintTicketScope").field(&self.0).finish() } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HPTPROVIDER(pub *mut core::ffi::c_void); +impl HPTPROVIDER { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HPTPROVIDER { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = PTCloseProvider(*self); + } + } +} +impl Default for HPTPROVIDER { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HPTPROVIDER { + type TypeKind = windows_core::CopyType; +} diff --git a/crates/libs/windows/src/Windows/Win32/Graphics/Printing/mod.rs b/crates/libs/windows/src/Windows/Win32/Graphics/Printing/mod.rs index 806ff16fbf..217531c908 100644 --- a/crates/libs/windows/src/Windows/Win32/Graphics/Printing/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Graphics/Printing/mod.rs @@ -462,12 +462,9 @@ where DeletePrintProvidorW(pname.param().abi(), penvironment.param().abi(), pprintprovidorname.param().abi()) } #[inline] -pub unsafe fn DeletePrinter(hprinter: P0) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn DeletePrinter(hprinter: super::super::Foundation::HANDLE) -> windows_core::Result<()> { windows_targets::link!("winspool.drv" "system" fn DeletePrinter(hprinter : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); - DeletePrinter(hprinter.param().abi()).ok() + DeletePrinter(hprinter).ok() } #[inline] pub unsafe fn DeletePrinterConnectionA(pname: P0) -> super::super::Foundation::BOOL diff --git a/crates/libs/windows/src/Windows/Win32/Media/Audio/impl.rs b/crates/libs/windows/src/Windows/Win32/Media/Audio/impl.rs index 3dedc34ff4..f29ad1ba0d 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/Audio/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/Audio/impl.rs @@ -2236,7 +2236,7 @@ pub trait IMMDevice_Impl: Sized { fn Activate(&self, iid: *const windows_core::GUID, dwclsctx: super::super::System::Com::CLSCTX, pactivationparams: *const windows_core::PROPVARIANT, ppinterface: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; fn OpenPropertyStore(&self, stgmaccess: super::super::System::Com::STGM) -> windows_core::Result; fn GetId(&self) -> windows_core::Result; - fn GetState(&self, pdwstate: *mut u32) -> DEVICE_STATE; + fn GetState(&self) -> windows_core::Result; } #[cfg(all(feature = "Win32_System_Com", feature = "Win32_UI_Shell_PropertiesSystem"))] impl windows_core::RuntimeName for IMMDevice {} @@ -2279,12 +2279,18 @@ impl IMMDevice_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetState(this: *mut core::ffi::c_void, pdwstate: *mut u32) -> DEVICE_STATE + unsafe extern "system" fn GetState(this: *mut core::ffi::c_void, pdwstate: *mut DEVICE_STATE) -> windows_core::HRESULT where Identity: IMMDevice_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IMMDevice_Impl::GetState(this, core::mem::transmute_copy(&pdwstate)) + match IMMDevice_Impl::GetState(this) { + Ok(ok__) => { + pdwstate.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } } Self { base__: windows_core::IUnknown_Vtbl::new::(), diff --git a/crates/libs/windows/src/Windows/Win32/Media/Audio/mod.rs b/crates/libs/windows/src/Windows/Win32/Media/Audio/mod.rs index 61f315d102..63513cf4f3 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/Audio/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/Audio/mod.rs @@ -2524,8 +2524,9 @@ impl IMMDevice { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetId)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } - pub unsafe fn GetState(&self, pdwstate: *mut u32) -> DEVICE_STATE { - (windows_core::Interface::vtable(self).GetState)(windows_core::Interface::as_raw(self), pdwstate) + pub unsafe fn GetState(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetState)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } } #[repr(C)] @@ -2540,7 +2541,7 @@ pub struct IMMDevice_Vtbl { #[cfg(not(all(feature = "Win32_System_Com", feature = "Win32_UI_Shell_PropertiesSystem")))] OpenPropertyStore: usize, pub GetId: unsafe extern "system" fn(*mut core::ffi::c_void, *mut windows_core::PWSTR) -> windows_core::HRESULT, - pub GetState: unsafe extern "system" fn(*mut core::ffi::c_void, *mut u32) -> DEVICE_STATE, + pub GetState: unsafe extern "system" fn(*mut core::ffi::c_void, *mut DEVICE_STATE) -> windows_core::HRESULT, } windows_core::imp::define_interface!(IMMDeviceActivator, IMMDeviceActivator_Vtbl, 0x3b0d0ea4_d0a9_4b0e_935b_09516746fac0); impl core::ops::Deref for IMMDeviceActivator { @@ -5442,10 +5443,18 @@ impl Default for ECHOWAVEFILTER { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HACMDRIVER(pub isize); +pub struct HACMDRIVER(pub *mut core::ffi::c_void); impl HACMDRIVER { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HACMDRIVER { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = acmDriverClose(*self, 0); + } } } impl Default for HACMDRIVER { @@ -5458,10 +5467,10 @@ impl windows_core::TypeKind for HACMDRIVER { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HACMDRIVERID(pub isize); +pub struct HACMDRIVERID(pub *mut core::ffi::c_void); impl HACMDRIVERID { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HACMDRIVERID { @@ -5474,10 +5483,10 @@ impl windows_core::TypeKind for HACMDRIVERID { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HACMOBJ(pub isize); +pub struct HACMOBJ(pub *mut core::ffi::c_void); impl HACMOBJ { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HACMOBJ { @@ -5490,10 +5499,18 @@ impl windows_core::TypeKind for HACMOBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HACMSTREAM(pub isize); +pub struct HACMSTREAM(pub *mut core::ffi::c_void); impl HACMSTREAM { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HACMSTREAM { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = acmStreamClose(*self, 0); + } } } impl Default for HACMSTREAM { @@ -5506,10 +5523,10 @@ impl windows_core::TypeKind for HACMSTREAM { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMIDI(pub isize); +pub struct HMIDI(pub *mut core::ffi::c_void); impl HMIDI { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HMIDI { @@ -5522,10 +5539,18 @@ impl windows_core::TypeKind for HMIDI { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMIDIIN(pub isize); +pub struct HMIDIIN(pub *mut core::ffi::c_void); impl HMIDIIN { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HMIDIIN { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = midiInClose(*self); + } } } impl Default for HMIDIIN { @@ -5538,10 +5563,18 @@ impl windows_core::TypeKind for HMIDIIN { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMIDIOUT(pub isize); +pub struct HMIDIOUT(pub *mut core::ffi::c_void); impl HMIDIOUT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HMIDIOUT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = midiOutClose(*self); + } } } impl Default for HMIDIOUT { @@ -5554,10 +5587,18 @@ impl windows_core::TypeKind for HMIDIOUT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMIDISTRM(pub isize); +pub struct HMIDISTRM(pub *mut core::ffi::c_void); impl HMIDISTRM { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HMIDISTRM { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = midiStreamClose(*self); + } } } impl Default for HMIDISTRM { @@ -5570,10 +5611,18 @@ impl windows_core::TypeKind for HMIDISTRM { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMIXER(pub isize); +pub struct HMIXER(pub *mut core::ffi::c_void); impl HMIXER { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HMIXER { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = mixerClose(*self); + } } } impl Default for HMIXER { @@ -5586,10 +5635,10 @@ impl windows_core::TypeKind for HMIXER { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMIXEROBJ(pub isize); +pub struct HMIXEROBJ(pub *mut core::ffi::c_void); impl HMIXEROBJ { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HMIXEROBJ { @@ -5602,10 +5651,10 @@ impl windows_core::TypeKind for HMIXEROBJ { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HWAVE(pub isize); +pub struct HWAVE(pub *mut core::ffi::c_void); impl HWAVE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HWAVE { @@ -5618,10 +5667,18 @@ impl windows_core::TypeKind for HWAVE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HWAVEIN(pub isize); +pub struct HWAVEIN(pub *mut core::ffi::c_void); impl HWAVEIN { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HWAVEIN { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = waveInClose(*self); + } } } impl Default for HWAVEIN { @@ -5634,10 +5691,18 @@ impl windows_core::TypeKind for HWAVEIN { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HWAVEOUT(pub isize); +pub struct HWAVEOUT(pub *mut core::ffi::c_void); impl HWAVEOUT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HWAVEOUT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = waveOutClose(*self); + } } } impl Default for HWAVEOUT { diff --git a/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/impl.rs b/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/impl.rs index 361da0bdd9..46623f86c5 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/impl.rs @@ -24624,14 +24624,14 @@ impl IStreamBufferDataCounters_Vtbl { iid == &::IID } } -#[cfg(feature = "Win32_System_Registry")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Registry"))] pub trait IStreamBufferInitialize_Impl: Sized { fn SetHKEY(&self, hkeyroot: super::super::super::System::Registry::HKEY) -> windows_core::Result<()>; - fn SetSIDs(&self, csids: u32, ppsid: *mut super::super::super::Foundation::PSID) -> windows_core::Result<()>; + fn SetSIDs(&self, csids: u32, ppsid: *mut super::super::super::Security::PSID) -> windows_core::Result<()>; } -#[cfg(feature = "Win32_System_Registry")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Registry"))] impl windows_core::RuntimeName for IStreamBufferInitialize {} -#[cfg(feature = "Win32_System_Registry")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Registry"))] impl IStreamBufferInitialize_Vtbl { pub const fn new() -> IStreamBufferInitialize_Vtbl where @@ -24644,7 +24644,7 @@ impl IStreamBufferInitialize_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IStreamBufferInitialize_Impl::SetHKEY(this, core::mem::transmute_copy(&hkeyroot)).into() } - unsafe extern "system" fn SetSIDs(this: *mut core::ffi::c_void, csids: u32, ppsid: *mut super::super::super::Foundation::PSID) -> windows_core::HRESULT + unsafe extern "system" fn SetSIDs(this: *mut core::ffi::c_void, csids: u32, ppsid: *mut super::super::super::Security::PSID) -> windows_core::HRESULT where Identity: IStreamBufferInitialize_Impl, { diff --git a/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/mod.rs b/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/mod.rs index 223e708ae7..f93a4e6d11 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/DirectShow/Tv/mod.rs @@ -12747,7 +12747,8 @@ impl IStreamBufferInitialize { { (windows_core::Interface::vtable(self).SetHKEY)(windows_core::Interface::as_raw(self), hkeyroot.param().abi()).ok() } - pub unsafe fn SetSIDs(&self, csids: u32, ppsid: *mut super::super::super::Foundation::PSID) -> windows_core::Result<()> { + #[cfg(feature = "Win32_Security")] + pub unsafe fn SetSIDs(&self, csids: u32, ppsid: *mut super::super::super::Security::PSID) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).SetSIDs)(windows_core::Interface::as_raw(self), csids, ppsid).ok() } } @@ -12758,7 +12759,10 @@ pub struct IStreamBufferInitialize_Vtbl { pub SetHKEY: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::System::Registry::HKEY) -> windows_core::HRESULT, #[cfg(not(feature = "Win32_System_Registry"))] SetHKEY: usize, - pub SetSIDs: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut super::super::super::Foundation::PSID) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Security")] + pub SetSIDs: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut super::super::super::Security::PSID) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + SetSIDs: usize, } windows_core::imp::define_interface!(IStreamBufferMediaSeeking, IStreamBufferMediaSeeking_Vtbl, 0xf61f5c26_863d_4afa_b0ba_2f81dc978596); impl core::ops::Deref for IStreamBufferMediaSeeking { diff --git a/crates/libs/windows/src/Windows/Win32/Media/MediaFoundation/mod.rs b/crates/libs/windows/src/Windows/Win32/Media/MediaFoundation/mod.rs index d8f8d8723d..efecddef03 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/MediaFoundation/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/MediaFoundation/mod.rs @@ -16440,8 +16440,8 @@ pub const D3D12_FEATURE_VIDEO_PROCESS_MAX_INPUT_STREAMS: D3D12_FEATURE_VIDEO = D pub const D3D12_FEATURE_VIDEO_PROCESS_PROTECTED_RESOURCES: D3D12_FEATURE_VIDEO = D3D12_FEATURE_VIDEO(29i32); pub const D3D12_FEATURE_VIDEO_PROCESS_REFERENCE_INFO: D3D12_FEATURE_VIDEO = D3D12_FEATURE_VIDEO(7i32); pub const D3D12_FEATURE_VIDEO_PROCESS_SUPPORT: D3D12_FEATURE_VIDEO = D3D12_FEATURE_VIDEO(5i32); +pub const D3D12_VIDEO_DECODE_ARGUMENT_TYPE_HUFFMAN_TABLE: D3D12_VIDEO_DECODE_ARGUMENT_TYPE = D3D12_VIDEO_DECODE_ARGUMENT_TYPE(3i32); pub const D3D12_VIDEO_DECODE_ARGUMENT_TYPE_INVERSE_QUANTIZATION_MATRIX: D3D12_VIDEO_DECODE_ARGUMENT_TYPE = D3D12_VIDEO_DECODE_ARGUMENT_TYPE(1i32); -pub const D3D12_VIDEO_DECODE_ARGUMENT_TYPE_MAX_VALID: D3D12_VIDEO_DECODE_ARGUMENT_TYPE = D3D12_VIDEO_DECODE_ARGUMENT_TYPE(3i32); pub const D3D12_VIDEO_DECODE_ARGUMENT_TYPE_PICTURE_PARAMETERS: D3D12_VIDEO_DECODE_ARGUMENT_TYPE = D3D12_VIDEO_DECODE_ARGUMENT_TYPE(0i32); pub const D3D12_VIDEO_DECODE_ARGUMENT_TYPE_SLICE_CONTROL: D3D12_VIDEO_DECODE_ARGUMENT_TYPE = D3D12_VIDEO_DECODE_ARGUMENT_TYPE(2i32); pub const D3D12_VIDEO_DECODE_CONFIGURATION_FLAG_ALLOW_RESOLUTION_CHANGE_ON_NON_KEY_FRAME: D3D12_VIDEO_DECODE_CONFIGURATION_FLAGS = D3D12_VIDEO_DECODE_CONFIGURATION_FLAGS(8i32); @@ -16487,6 +16487,13 @@ pub const D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN16: windows_core::GUID = windows_c pub const D3D12_VIDEO_DECODE_PROFILE_HEVC_MAIN_444: windows_core::GUID = windows_core::GUID::from_u128(0x4008018f_f537_4b36_98cf_61af8a2c1a33); pub const D3D12_VIDEO_DECODE_PROFILE_HEVC_MONOCHROME: windows_core::GUID = windows_core::GUID::from_u128(0x0685b993_3d8c_43a0_8b28_d74c2d6899a4); pub const D3D12_VIDEO_DECODE_PROFILE_HEVC_MONOCHROME10: windows_core::GUID = windows_core::GUID::from_u128(0x142a1d0f_69dd_4ec9_8591_b12ffcb91a29); +pub const D3D12_VIDEO_DECODE_PROFILE_JPEG_VLD_420: windows_core::GUID = windows_core::GUID::from_u128(0xcf782c83_bef5_4a2c_87cb_6019e7b175ac); +pub const D3D12_VIDEO_DECODE_PROFILE_JPEG_VLD_422: windows_core::GUID = windows_core::GUID::from_u128(0xf04df417_eee2_4067_a778_f35c15ab9721); +pub const D3D12_VIDEO_DECODE_PROFILE_JPEG_VLD_444: windows_core::GUID = windows_core::GUID::from_u128(0x4cd00e17_89ba_48ef_b9f9_edcb82713f65); +pub const D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_420: windows_core::GUID = windows_core::GUID::from_u128(0x725cb506_0c29_43c4_9440_8e9397903a04); +pub const D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_422: windows_core::GUID = windows_core::GUID::from_u128(0x5b77b9cd_1a35_4c30_9fd8_ef4b60c035dd); +pub const D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_444: windows_core::GUID = windows_core::GUID::from_u128(0xd95161f9_0d44_47e6_bcf5_1bfbfb268f97); +pub const D3D12_VIDEO_DECODE_PROFILE_MJPEG_VLD_4444: windows_core::GUID = windows_core::GUID::from_u128(0xc91748d5_fd18_4aca_9db3_3a6634ab547d); pub const D3D12_VIDEO_DECODE_PROFILE_MPEG1_AND_MPEG2: windows_core::GUID = windows_core::GUID::from_u128(0x86695f12_340e_4f04_9fd3_9253dd327460); pub const D3D12_VIDEO_DECODE_PROFILE_MPEG2: windows_core::GUID = windows_core::GUID::from_u128(0xee27417f_5e28_4e65_beea_1d26b508adc9); pub const D3D12_VIDEO_DECODE_PROFILE_MPEG4PT2_ADVSIMPLE_NOGMC: windows_core::GUID = windows_core::GUID::from_u128(0xed418a9f_010d_4eda_9ae3_9a65358d8d2e); @@ -16703,11 +16710,21 @@ pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_32x32: D3D12_VIDEO pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_64x64: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE(3i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE_8x8: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE(0i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ALLOW_REQUEST_INTRA_CONSTRAINED_SLICES: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(2i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_CABAC_BYPASS_ALIGNMENT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(32768i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_DISABLE_LOOP_FILTER_ACROSS_SLICES: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(1i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_LONG_TERM_REFERENCES: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(8i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_SAO_FILTER: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(4i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_ENABLE_TRANSFORM_SKIPPING: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(32i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_EXPLICIT_RDPCM: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(1024i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_EXTENDED_PRECISION_PROCESSING: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(2048i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_HIGH_PRECISION_OFFSETS: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(8192i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_IMPLICIT_RDPCM: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(512i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_INTRA_SMOOTHING_DISABLED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(4096i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_NONE: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(0i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_PERSISTENT_RICE_ADAPTATION: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(16384i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_SEPARATE_COLOUR_PLANE: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(65536i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_TRANSFORM_SKIP_CONTEXT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(256i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_TRANSFORM_SKIP_ROTATION: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(128i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_USE_ASYMETRIC_MOTION_PARTITION: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(16i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAG_USE_CONSTRAINED_INTRAPREDICTION: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_FLAGS(64i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE_16x16: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE(2i32); @@ -16722,15 +16739,42 @@ pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_DIRECT_SPATI pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_DIRECT_TEMPORAL_ENCODING_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS(32i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_INTRA_SLICE_CONSTRAINED_ENCODING_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS(2i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_NONE: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS(0i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAG_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264_FLAGS(128i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG1_NONE: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1(0i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG1_SEPARATE_COLOUR_PLANE_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1(2i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG1_SEPARATE_COLOUR_PLANE_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1(1i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_ASYMETRIC_MOTION_PARTITION_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(32i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_ASYMETRIC_MOTION_PARTITION_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(16i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_BFRAME_LTR_COMBINED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(1i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CABAC_BYPASS_ALIGNMENT_ENABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(134217728i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CABAC_BYPASS_ALIGNMENT_ENABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(67108864i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CHROMA_QP_OFFSET_LIST_ENABLED_FLAG_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(-2147483648i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CHROMA_QP_OFFSET_LIST_ENABLED_FLAG_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(1073741824i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CONSTRAINED_INTRAPREDICTION_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(4i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CROSS_COMPONENT_PREDICTION_ENABLED_FLAG_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(536870912i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_CROSS_COMPONENT_PREDICTION_ENABLED_FLAG_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(268435456i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_DISABLING_LOOP_FILTER_ACROSS_SLICES_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(128i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXPLICIT_RDPCM_ENABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(131072i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXPLICIT_RDPCM_ENABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(65536i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXTENDED_PRECISION_PROCESSING_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(524288i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_EXTENDED_PRECISION_PROCESSING_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(262144i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_HIGH_PRECISION_OFFSETS_ENABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(8388608i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_HIGH_PRECISION_OFFSETS_ENABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(4194304i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_IMPLICIT_RDPCM_ENABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(32768i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_IMPLICIT_RDPCM_ENABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(16384i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_INTRA_SLICE_CONSTRAINED_ENCODING_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(2i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_INTRA_SMOOTHING_DISABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(2097152i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_INTRA_SMOOTHING_DISABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(1048576i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_NONE: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(0i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(512i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_PERSISTENT_RICE_ADAPTATION_ENABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(33554432i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_PERSISTENT_RICE_ADAPTATION_ENABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(16777216i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_P_FRAMES_IMPLEMENTED_AS_LOW_DELAY_B_FRAMES: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(256i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_SAO_FILTER_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(8i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_CONTEXT_ENABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(8192i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_CONTEXT_ENABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(4096i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_ROTATION_ENABLED_REQUIRED: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(2048i32); +pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_ROTATION_ENABLED_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(1024i32); pub const D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAG_TRANSFORM_SKIP_SUPPORT: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS = D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS(64i32); pub const D3D12_VIDEO_ENCODER_CODEC_H264: D3D12_VIDEO_ENCODER_CODEC = D3D12_VIDEO_ENCODER_CODEC(0i32); pub const D3D12_VIDEO_ENCODER_CODEC_HEVC: D3D12_VIDEO_ENCODER_CODEC = D3D12_VIDEO_ENCODER_CODEC(1i32); @@ -16799,8 +16843,12 @@ pub const D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_MAXIMUM: D3D12_VI pub const D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE_QUARTER_PIXEL: D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE = D3D12_VIDEO_ENCODER_MOTION_ESTIMATION_PRECISION_MODE(3i32); pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_NONE: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS(0i32); pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_REQUEST_INTRA_CONSTRAINED_SLICES: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS(1i32); +pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAG_REQUEST_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264_FLAGS(2i32); +pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_CHROMA_QP_OFFSET_LIST: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS(8i32); +pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_CROSS_COMPONENT_PREDICTION: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS(4i32); pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_NONE: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS(0i32); pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_REQUEST_INTRA_CONSTRAINED_SLICES: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS(1i32); +pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAG_REQUEST_NUM_REF_IDX_ACTIVE_OVERRIDE_FLAG_SLICE: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS(2i32); pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAG_NONE: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAGS(0i32); pub const D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAG_USED_AS_REFERENCE_PICTURE: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAGS = D3D12_VIDEO_ENCODER_PICTURE_CONTROL_FLAGS(1i32); pub const D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH: D3D12_VIDEO_ENCODER_PROFILE_H264 = D3D12_VIDEO_ENCODER_PROFILE_H264(1i32); @@ -16808,6 +16856,13 @@ pub const D3D12_VIDEO_ENCODER_PROFILE_H264_HIGH_10: D3D12_VIDEO_ENCODER_PROFILE_ pub const D3D12_VIDEO_ENCODER_PROFILE_H264_MAIN: D3D12_VIDEO_ENCODER_PROFILE_H264 = D3D12_VIDEO_ENCODER_PROFILE_H264(0i32); pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(0i32); pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(1i32); +pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10_422: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(3i32); +pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN10_444: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(6i32); +pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN12: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(2i32); +pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN12_422: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(4i32); +pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN12_444: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(7i32); +pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN16_444: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(8i32); +pub const D3D12_VIDEO_ENCODER_PROFILE_HEVC_MAIN_444: D3D12_VIDEO_ENCODER_PROFILE_HEVC = D3D12_VIDEO_ENCODER_PROFILE_HEVC(5i32); pub const D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_DELTA_QP: D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS = D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS(1i32); pub const D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_EXTENSION1_SUPPORT: D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS = D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS(64i32); pub const D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAG_ENABLE_FRAME_ANALYSIS: D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS = D3D12_VIDEO_ENCODER_RATE_CONTROL_FLAGS(2i32); @@ -16840,6 +16895,7 @@ pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_MAX_FRAME_SIZE_AVAILABLE pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_QUALITY_VS_SPEED_AVAILABLE: D3D12_VIDEO_ENCODER_SUPPORT_FLAGS = D3D12_VIDEO_ENCODER_SUPPORT_FLAGS(16384i32); pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_RECONFIGURATION_AVAILABLE: D3D12_VIDEO_ENCODER_SUPPORT_FLAGS = D3D12_VIDEO_ENCODER_SUPPORT_FLAGS(2i32); pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RATE_CONTROL_VBV_SIZE_CONFIG_AVAILABLE: D3D12_VIDEO_ENCODER_SUPPORT_FLAGS = D3D12_VIDEO_ENCODER_SUPPORT_FLAGS(8i32); +pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_READABLE_RECONSTRUCTED_PICTURE_LAYOUT_AVAILABLE: D3D12_VIDEO_ENCODER_SUPPORT_FLAGS = D3D12_VIDEO_ENCODER_SUPPORT_FLAGS(32768i32); pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RECONSTRUCTED_FRAMES_REQUIRE_TEXTURE_ARRAYS: D3D12_VIDEO_ENCODER_SUPPORT_FLAGS = D3D12_VIDEO_ENCODER_SUPPORT_FLAGS(32i32); pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_RESOLUTION_RECONFIGURATION_AVAILABLE: D3D12_VIDEO_ENCODER_SUPPORT_FLAGS = D3D12_VIDEO_ENCODER_SUPPORT_FLAGS(4i32); pub const D3D12_VIDEO_ENCODER_SUPPORT_FLAG_SEQUENCE_GOP_RECONFIGURATION_AVAILABLE: D3D12_VIDEO_ENCODER_SUPPORT_FLAGS = D3D12_VIDEO_ENCODER_SUPPORT_FLAGS(2048i32); @@ -21728,6 +21784,50 @@ impl core::ops::Not for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLA } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1(pub i32); +impl windows_core::TypeKind for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1").field(&self.0).finish() + } +} +impl D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1 { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAGS(pub i32); impl windows_core::TypeKind for D3D12_VIDEO_ENCODER_ENCODE_ERROR_FLAGS { type TypeKind = windows_core::CopyType; @@ -28925,6 +29025,7 @@ impl Default for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT { pub union D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_0 { pub pH264Support: *mut D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_H264, pub pHEVCSupport: *mut D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC, + pub pHEVCSupport1: *mut D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC1, pub pAV1Support: *mut D3D12_VIDEO_ENCODER_AV1_CODEC_CONFIGURATION_SUPPORT, } impl windows_core::TypeKind for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_0 { @@ -28969,6 +29070,33 @@ impl Default for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC { } } #[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC1 { + pub SupportFlags: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS, + pub MinLumaCodingUnitSize: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE, + pub MaxLumaCodingUnitSize: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_CUSIZE, + pub MinLumaTransformUnitSize: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE, + pub MaxLumaTransformUnitSize: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_HEVC_TUSIZE, + pub max_transform_hierarchy_depth_inter: u8, + pub max_transform_hierarchy_depth_intra: u8, + pub allowed_diff_cu_chroma_qp_offset_depth_values: u32, + pub allowed_log2_sao_offset_scale_luma_values: u32, + pub allowed_log2_sao_offset_scale_chroma_values: u32, + pub allowed_log2_max_transform_skip_block_size_minus2_values: u32, + pub allowed_chroma_qp_offset_list_len_minus1_values: u32, + pub allowed_cb_qp_offset_list_values: [u32; 6], + pub allowed_cr_qp_offset_list_values: [u32; 6], + pub SupportFlags1: D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC_FLAGS1, +} +impl windows_core::TypeKind for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC1 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_VIDEO_ENCODER_CODEC_CONFIGURATION_SUPPORT_HEVC1 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[derive(Clone, Copy)] pub struct D3D12_VIDEO_ENCODER_CODEC_PICTURE_CONTROL_SUPPORT { pub DataSize: u32, @@ -29319,6 +29447,7 @@ impl Default for D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA { pub union D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_0 { pub pH264PicData: *mut D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_H264, pub pHEVCPicData: *mut D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC, + pub pHEVCPicData1: *mut D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC1, pub pAV1PicData: *mut D3D12_VIDEO_ENCODER_AV1_PICTURE_CONTROL_CODEC_DATA, } impl windows_core::TypeKind for D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_0 { @@ -29425,6 +29554,42 @@ impl Default for D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC { } } #[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC1 { + pub Flags: D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC_FLAGS, + pub FrameType: D3D12_VIDEO_ENCODER_FRAME_TYPE_HEVC, + pub slice_pic_parameter_set_id: u32, + pub PictureOrderCountNumber: u32, + pub TemporalLayerIndex: u32, + pub List0ReferenceFramesCount: u32, + pub pList0ReferenceFrames: *mut u32, + pub List1ReferenceFramesCount: u32, + pub pList1ReferenceFrames: *mut u32, + pub ReferenceFramesReconPictureDescriptorsCount: u32, + pub pReferenceFramesReconPictureDescriptors: *mut D3D12_VIDEO_ENCODER_REFERENCE_PICTURE_DESCRIPTOR_HEVC, + pub List0RefPicModificationsCount: u32, + pub pList0RefPicModifications: *mut u32, + pub List1RefPicModificationsCount: u32, + pub pList1RefPicModifications: *mut u32, + pub QPMapValuesCount: u32, + pub pRateControlQPMap: *mut i8, + pub diff_cu_chroma_qp_offset_depth: u8, + pub log2_sao_offset_scale_luma: u8, + pub log2_sao_offset_scale_chroma: u8, + pub log2_max_transform_skip_block_size_minus2: u8, + pub chroma_qp_offset_list_len_minus1: u8, + pub cb_qp_offset_list: [i8; 6], + pub cr_qp_offset_list: [i8; 6], +} +impl windows_core::TypeKind for D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC1 { + type TypeKind = windows_core::CopyType; +} +impl Default for D3D12_VIDEO_ENCODER_PICTURE_CONTROL_CODEC_DATA_HEVC1 { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[cfg(feature = "Win32_Graphics_Direct3D12")] #[derive(Clone, Copy)] pub struct D3D12_VIDEO_ENCODER_PICTURE_CONTROL_DESC { diff --git a/crates/libs/windows/src/Windows/Win32/Media/Multimedia/mod.rs b/crates/libs/windows/src/Windows/Win32/Media/Multimedia/mod.rs index 9e4234f2c0..5c20608876 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/Multimedia/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/Multimedia/mod.rs @@ -6896,10 +6896,10 @@ impl Default for GSM610WAVEFORMAT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDRVR(pub isize); +pub struct HDRVR(pub *mut core::ffi::c_void); impl HDRVR { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HDRVR { @@ -6912,10 +6912,18 @@ impl windows_core::TypeKind for HDRVR { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HIC(pub isize); +pub struct HIC(pub *mut core::ffi::c_void); impl HIC { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HIC { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = ICClose(*self); + } } } impl Default for HIC { @@ -6928,10 +6936,10 @@ impl windows_core::TypeKind for HIC { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMMIO(pub isize); +pub struct HMMIO(pub *mut core::ffi::c_void); impl HMMIO { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HMMIO { @@ -6944,10 +6952,10 @@ impl windows_core::TypeKind for HMMIO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HVIDEO(pub isize); +pub struct HVIDEO(pub *mut core::ffi::c_void); impl HVIDEO { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HVIDEO { diff --git a/crates/libs/windows/src/Windows/Win32/Media/Speech/mod.rs b/crates/libs/windows/src/Windows/Win32/Media/Speech/mod.rs index 227954e83d..7b1a2ff4e7 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/Speech/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/Speech/mod.rs @@ -9359,10 +9359,10 @@ impl Default for SPEVENTSOURCEINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPGRAMMARHANDLE(pub isize); +pub struct SPGRAMMARHANDLE(pub *mut core::ffi::c_void); impl SPGRAMMARHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPGRAMMARHANDLE { @@ -9568,10 +9568,10 @@ impl Default for SPPHRASEPROPERTY_0_0 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPPHRASEPROPERTYHANDLE(pub isize); +pub struct SPPHRASEPROPERTYHANDLE(pub *mut core::ffi::c_void); impl SPPHRASEPROPERTYHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPPHRASEPROPERTYHANDLE { @@ -9620,10 +9620,10 @@ impl Default for SPPHRASERULE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPPHRASERULEHANDLE(pub isize); +pub struct SPPHRASERULEHANDLE(pub *mut core::ffi::c_void); impl SPPHRASERULEHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPPHRASERULEHANDLE { @@ -9686,10 +9686,10 @@ impl Default for SPPROPERTYINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPRECOCONTEXTHANDLE(pub isize); +pub struct SPRECOCONTEXTHANDLE(pub *mut core::ffi::c_void); impl SPRECOCONTEXTHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPRECOCONTEXTHANDLE { @@ -9835,10 +9835,10 @@ impl Default for SPRULEENTRY { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPRULEHANDLE(pub isize); +pub struct SPRULEHANDLE(pub *mut core::ffi::c_void); impl SPRULEHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPRULEHANDLE { @@ -9960,10 +9960,10 @@ impl Default for SPSHORTCUTPAIRLIST { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPSTATEHANDLE(pub isize); +pub struct SPSTATEHANDLE(pub *mut core::ffi::c_void); impl SPSTATEHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPSTATEHANDLE { @@ -10115,10 +10115,10 @@ impl Default for SPTRANSITIONENTRY_1_2 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPTRANSITIONID(pub isize); +pub struct SPTRANSITIONID(pub *mut core::ffi::c_void); impl SPTRANSITIONID { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPTRANSITIONID { @@ -10282,10 +10282,10 @@ impl Default for SPWORDENTRY { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SPWORDHANDLE(pub isize); +pub struct SPWORDHANDLE(pub *mut core::ffi::c_void); impl SPWORDHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SPWORDHANDLE { diff --git a/crates/libs/windows/src/Windows/Win32/Media/mod.rs b/crates/libs/windows/src/Windows/Win32/Media/mod.rs index a7d7e4a49e..b767097c71 100644 --- a/crates/libs/windows/src/Windows/Win32/Media/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Media/mod.rs @@ -284,10 +284,10 @@ impl core::ops::Not for TIMECODE_SAMPLE_FLAGS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HTASK(pub isize); +pub struct HTASK(pub *mut core::ffi::c_void); impl HTASK { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HTASK { diff --git a/crates/libs/windows/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs b/crates/libs/windows/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs index 4af53c3367..34625c01a2 100644 --- a/crates/libs/windows/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs @@ -2365,10 +2365,18 @@ impl Default for FIXED_INFO_W2KSP1 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HIFTIMESTAMPCHANGE(pub isize); +pub struct HIFTIMESTAMPCHANGE(pub *mut core::ffi::c_void); impl HIFTIMESTAMPCHANGE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HIFTIMESTAMPCHANGE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + UnregisterInterfaceTimestampConfigChange(*self); + } } } impl Default for HIFTIMESTAMPCHANGE { diff --git a/crates/libs/windows/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs b/crates/libs/windows/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs index 728f53a179..272a7e2e00 100644 --- a/crates/libs/windows/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs @@ -431,14 +431,15 @@ where windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupAdd(servername : windows_core::PCWSTR, level : u32, buf : *const u8, parm_err : *mut u32) -> u32); NetLocalGroupAdd(servername.param().abi(), level, buf, core::mem::transmute(parm_err.unwrap_or(std::ptr::null_mut()))) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn NetLocalGroupAddMember(servername: P0, groupname: P1, membersid: P2) -> u32 where P0: windows_core::Param, P1: windows_core::Param, - P2: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupAddMember(servername : windows_core::PCWSTR, groupname : windows_core::PCWSTR, membersid : super::super::Foundation:: PSID) -> u32); + windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupAddMember(servername : windows_core::PCWSTR, groupname : windows_core::PCWSTR, membersid : super::super::Security:: PSID) -> u32); NetLocalGroupAddMember(servername.param().abi(), groupname.param().abi(), membersid.param().abi()) } #[inline] @@ -459,14 +460,15 @@ where windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupDel(servername : windows_core::PCWSTR, groupname : windows_core::PCWSTR) -> u32); NetLocalGroupDel(servername.param().abi(), groupname.param().abi()) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn NetLocalGroupDelMember(servername: P0, groupname: P1, membersid: P2) -> u32 where P0: windows_core::Param, P1: windows_core::Param, - P2: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupDelMember(servername : windows_core::PCWSTR, groupname : windows_core::PCWSTR, membersid : super::super::Foundation:: PSID) -> u32); + windows_targets::link!("netapi32.dll" "system" fn NetLocalGroupDelMember(servername : windows_core::PCWSTR, groupname : windows_core::PCWSTR, membersid : super::super::Security:: PSID) -> u32); NetLocalGroupDelMember(servername.param().abi(), groupname.param().abi(), membersid.param().abi()) } #[inline] @@ -5810,16 +5812,19 @@ impl Default for GROUP_INFO_2 { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct GROUP_INFO_3 { pub grpi3_name: windows_core::PWSTR, pub grpi3_comment: windows_core::PWSTR, - pub grpi3_group_sid: super::super::Foundation::PSID, + pub grpi3_group_sid: super::super::Security::PSID, pub grpi3_attributes: u32, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for GROUP_INFO_3 { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for GROUP_INFO_3 { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -5922,13 +5927,16 @@ impl Default for LOCALGROUP_INFO_1002 { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LOCALGROUP_MEMBERS_INFO_0 { - pub lgrmi0_sid: super::super::Foundation::PSID, + pub lgrmi0_sid: super::super::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for LOCALGROUP_MEMBERS_INFO_0 { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for LOCALGROUP_MEMBERS_INFO_0 { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -5938,7 +5946,7 @@ impl Default for LOCALGROUP_MEMBERS_INFO_0 { #[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LOCALGROUP_MEMBERS_INFO_1 { - pub lgrmi1_sid: super::super::Foundation::PSID, + pub lgrmi1_sid: super::super::Security::PSID, pub lgrmi1_sidusage: super::super::Security::SID_NAME_USE, pub lgrmi1_name: windows_core::PWSTR, } @@ -5956,7 +5964,7 @@ impl Default for LOCALGROUP_MEMBERS_INFO_1 { #[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LOCALGROUP_MEMBERS_INFO_2 { - pub lgrmi2_sid: super::super::Foundation::PSID, + pub lgrmi2_sid: super::super::Security::PSID, pub lgrmi2_sidusage: super::super::Security::SID_NAME_USE, pub lgrmi2_domainandname: windows_core::PWSTR, } @@ -8847,34 +8855,40 @@ impl Default for USER_INFO_22 { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct USER_INFO_23 { pub usri23_name: windows_core::PWSTR, pub usri23_full_name: windows_core::PWSTR, pub usri23_comment: windows_core::PWSTR, pub usri23_flags: USER_ACCOUNT_FLAGS, - pub usri23_user_sid: super::super::Foundation::PSID, + pub usri23_user_sid: super::super::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for USER_INFO_23 { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for USER_INFO_23 { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct USER_INFO_24 { pub usri24_internet_identity: super::super::Foundation::BOOL, pub usri24_flags: u32, pub usri24_internet_provider_name: windows_core::PWSTR, pub usri24_internet_principal_name: windows_core::PWSTR, - pub usri24_user_sid: super::super::Foundation::PSID, + pub usri24_user_sid: super::super::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for USER_INFO_24 { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for USER_INFO_24 { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -8922,6 +8936,7 @@ impl Default for USER_INFO_3 { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct USER_INFO_4 { pub usri4_name: windows_core::PWSTR, @@ -8948,15 +8963,17 @@ pub struct USER_INFO_4 { pub usri4_logon_server: windows_core::PWSTR, pub usri4_country_code: u32, pub usri4_code_page: u32, - pub usri4_user_sid: super::super::Foundation::PSID, + pub usri4_user_sid: super::super::Security::PSID, pub usri4_primary_group_id: u32, pub usri4_profile: windows_core::PWSTR, pub usri4_home_dir_drive: windows_core::PWSTR, pub usri4_password_expired: u32, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for USER_INFO_4 { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for USER_INFO_4 { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -9085,14 +9102,17 @@ impl Default for USER_MODALS_INFO_1007 { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct USER_MODALS_INFO_2 { pub usrmod2_domain_name: windows_core::PWSTR, - pub usrmod2_domain_id: super::super::Foundation::PSID, + pub usrmod2_domain_id: super::super::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for USER_MODALS_INFO_2 { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for USER_MODALS_INFO_2 { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/NetworkManagement/QoS/mod.rs b/crates/libs/windows/src/Windows/Win32/NetworkManagement/QoS/mod.rs index 8f4b4565db..600e51caa0 100644 --- a/crates/libs/windows/src/Windows/Win32/NetworkManagement/QoS/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/NetworkManagement/QoS/mod.rs @@ -1660,10 +1660,10 @@ impl Default for LPMIPTABLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct LPM_HANDLE(pub isize); +pub struct LPM_HANDLE(pub *mut core::ffi::c_void); impl LPM_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for LPM_HANDLE { @@ -2022,10 +2022,10 @@ impl Default for RESV_STYLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct RHANDLE(pub isize); +pub struct RHANDLE(pub *mut core::ffi::c_void); impl RHANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for RHANDLE { diff --git a/crates/libs/windows/src/Windows/Win32/NetworkManagement/Rras/mod.rs b/crates/libs/windows/src/Windows/Win32/NetworkManagement/Rras/mod.rs index 38cda97155..db1a2b2b8e 100644 --- a/crates/libs/windows/src/Windows/Win32/NetworkManagement/Rras/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/NetworkManagement/Rras/mod.rs @@ -3212,10 +3212,10 @@ impl Default for GRE_CONFIG_PARAMS0 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRASCONN(pub isize); +pub struct HRASCONN(pub *mut core::ffi::c_void); impl HRASCONN { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HRASCONN { diff --git a/crates/libs/windows/src/Windows/Win32/NetworkManagement/WNet/mod.rs b/crates/libs/windows/src/Windows/Win32/NetworkManagement/WNet/mod.rs index 92085acfef..33184f6d98 100644 --- a/crates/libs/windows/src/Windows/Win32/NetworkManagement/WNet/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/NetworkManagement/WNet/mod.rs @@ -18,13 +18,13 @@ where NPAddConnection(lpnetresource, lppassword.param().abi(), lpusername.param().abi()) } #[inline] -pub unsafe fn NPAddConnection3(hwndowner: P0, lpnetresource: *const NETRESOURCEW, lppassword: P1, lpusername: P2, dwflags: NET_USE_CONNECT_FLAGS) -> u32 +pub unsafe fn NPAddConnection3(hwndowner: P0, lpnetresource: *const NETRESOURCEW, lppassword: P1, lpusername: P2, dwflags: NET_CONNECT_FLAGS) -> u32 where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("davclnt.dll" "system" fn NPAddConnection3(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpusername : windows_core::PCWSTR, dwflags : NET_USE_CONNECT_FLAGS) -> u32); + windows_targets::link!("davclnt.dll" "system" fn NPAddConnection3(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpusername : windows_core::PCWSTR, dwflags : NET_CONNECT_FLAGS) -> u32); NPAddConnection3(hwndowner.param().abi(), lpnetresource, lppassword.param().abi(), lpusername.param().abi(), dwflags) } #[inline] @@ -146,57 +146,57 @@ pub unsafe fn NPOpenEnum(dwscope: u32, dwtype: u32, dwusage: u32, lpnetresource: NPOpenEnum(dwscope, dwtype, dwusage, core::mem::transmute(lpnetresource.unwrap_or(std::ptr::null())), lphenum) } #[inline] -pub unsafe fn WNetAddConnection2A(lpnetresource: *const NETRESOURCEA, lppassword: P0, lpusername: P1, dwflags: u32) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetAddConnection2A(lpnetresource: *const NETRESOURCEA, lppassword: P0, lpusername: P1, dwflags: NET_CONNECT_FLAGS) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2A(lpnetresource : *const NETRESOURCEA, lppassword : windows_core::PCSTR, lpusername : windows_core::PCSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2A(lpnetresource : *const NETRESOURCEA, lppassword : windows_core::PCSTR, lpusername : windows_core::PCSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); WNetAddConnection2A(lpnetresource, lppassword.param().abi(), lpusername.param().abi(), dwflags) } #[inline] -pub unsafe fn WNetAddConnection2W(lpnetresource: *const NETRESOURCEW, lppassword: P0, lpusername: P1, dwflags: u32) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetAddConnection2W(lpnetresource: *const NETRESOURCEW, lppassword: P0, lpusername: P1, dwflags: NET_CONNECT_FLAGS) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2W(lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpusername : windows_core::PCWSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetAddConnection2W(lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpusername : windows_core::PCWSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); WNetAddConnection2W(lpnetresource, lppassword.param().abi(), lpusername.param().abi(), dwflags) } #[inline] -pub unsafe fn WNetAddConnection3A(hwndowner: P0, lpnetresource: *const NETRESOURCEA, lppassword: P1, lpusername: P2, dwflags: u32) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetAddConnection3A(hwndowner: P0, lpnetresource: *const NETRESOURCEA, lppassword: P1, lpusername: P2, dwflags: NET_CONNECT_FLAGS) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_core::PCSTR, lpusername : windows_core::PCSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_core::PCSTR, lpusername : windows_core::PCSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); WNetAddConnection3A(hwndowner.param().abi(), lpnetresource, lppassword.param().abi(), lpusername.param().abi(), dwflags) } #[inline] -pub unsafe fn WNetAddConnection3W(hwndowner: P0, lpnetresource: *const NETRESOURCEW, lppassword: P1, lpusername: P2, dwflags: u32) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetAddConnection3W(hwndowner: P0, lpnetresource: *const NETRESOURCEW, lppassword: P1, lpusername: P2, dwflags: NET_CONNECT_FLAGS) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpusername : windows_core::PCWSTR, dwflags : u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetAddConnection3W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpusername : windows_core::PCWSTR, dwflags : NET_CONNECT_FLAGS) -> super::super::Foundation:: WIN32_ERROR); WNetAddConnection3W(hwndowner.param().abi(), lpnetresource, lppassword.param().abi(), lpusername.param().abi(), dwflags) } #[inline] -pub unsafe fn WNetAddConnection4A(hwndowner: P0, lpnetresource: *const NETRESOURCEA, pauthbuffer: *const core::ffi::c_void, cbauthbuffer: u32, dwflags: u32, lpuseoptions: &[u8]) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetAddConnection4A(hwndowner: P0, lpnetresource: *const NETRESOURCEA, pauthbuffer: *const core::ffi::c_void, cbauthbuffer: u32, dwflags: NET_CONNECT_FLAGS, lpuseoptions: &[u8]) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : u32, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4A(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : NET_CONNECT_FLAGS, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); WNetAddConnection4A(hwndowner.param().abi(), lpnetresource, pauthbuffer, cbauthbuffer, dwflags, core::mem::transmute(lpuseoptions.as_ptr()), lpuseoptions.len().try_into().unwrap()) } #[inline] -pub unsafe fn WNetAddConnection4W(hwndowner: P0, lpnetresource: *const NETRESOURCEW, pauthbuffer: *const core::ffi::c_void, cbauthbuffer: u32, dwflags: u32, lpuseoptions: &[u8]) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetAddConnection4W(hwndowner: P0, lpnetresource: *const NETRESOURCEW, pauthbuffer: *const core::ffi::c_void, cbauthbuffer: u32, dwflags: NET_CONNECT_FLAGS, lpuseoptions: &[u8]) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : u32, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetAddConnection4W(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, pauthbuffer : *const core::ffi::c_void, cbauthbuffer : u32, dwflags : NET_CONNECT_FLAGS, lpuseoptions : *const u8, cbuseoptions : u32) -> super::super::Foundation:: WIN32_ERROR); WNetAddConnection4W(hwndowner.param().abi(), lpnetresource, pauthbuffer, cbauthbuffer, dwflags, core::mem::transmute(lpuseoptions.as_ptr()), lpuseoptions.len().try_into().unwrap()) } #[inline] @@ -220,21 +220,21 @@ where WNetAddConnectionW(lpremotename.param().abi(), lppassword.param().abi(), lplocalname.param().abi()) } #[inline] -pub unsafe fn WNetCancelConnection2A(lpname: P0, dwflags: u32, fforce: P1) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetCancelConnection2A(lpname: P0, dwflags: NET_CONNECT_FLAGS, fforce: P1) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2A(lpname : windows_core::PCSTR, dwflags : u32, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2A(lpname : windows_core::PCSTR, dwflags : NET_CONNECT_FLAGS, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); WNetCancelConnection2A(lpname.param().abi(), dwflags, fforce.param().abi()) } #[inline] -pub unsafe fn WNetCancelConnection2W(lpname: P0, dwflags: u32, fforce: P1) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetCancelConnection2W(lpname: P0, dwflags: NET_CONNECT_FLAGS, fforce: P1) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2W(lpname : windows_core::PCWSTR, dwflags : u32, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetCancelConnection2W(lpname : windows_core::PCWSTR, dwflags : NET_CONNECT_FLAGS, fforce : super::super::Foundation:: BOOL) -> super::super::Foundation:: WIN32_ERROR); WNetCancelConnection2W(lpname.param().abi(), dwflags, fforce.param().abi()) } #[inline] @@ -464,23 +464,23 @@ where WNetUseConnection4W(hwndowner.param().abi(), lpnetresource, core::mem::transmute(pauthbuffer.unwrap_or(std::ptr::null())), cbauthbuffer, dwflags, core::mem::transmute(lpuseoptions.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpuseoptions.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(lpaccessname), core::mem::transmute(lpbuffersize.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpresult.unwrap_or(std::ptr::null_mut()))) } #[inline] -pub unsafe fn WNetUseConnectionA(hwndowner: P0, lpnetresource: *const NETRESOURCEA, lppassword: P1, lpuserid: P2, dwflags: NET_USE_CONNECT_FLAGS, lpaccessname: windows_core::PSTR, lpbuffersize: Option<*mut u32>, lpresult: Option<*mut u32>) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetUseConnectionA(hwndowner: P0, lpnetresource: *const NETRESOURCEA, lppassword: P1, lpuserid: P2, dwflags: NET_CONNECT_FLAGS, lpaccessname: windows_core::PSTR, lpbuffersize: Option<*mut u32>, lpresult: Option<*mut u32>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionA(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_core::PCSTR, lpuserid : windows_core::PCSTR, dwflags : NET_USE_CONNECT_FLAGS, lpaccessname : windows_core::PSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionA(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEA, lppassword : windows_core::PCSTR, lpuserid : windows_core::PCSTR, dwflags : NET_CONNECT_FLAGS, lpaccessname : windows_core::PSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); WNetUseConnectionA(hwndowner.param().abi(), lpnetresource, lppassword.param().abi(), lpuserid.param().abi(), dwflags, core::mem::transmute(lpaccessname), core::mem::transmute(lpbuffersize.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpresult.unwrap_or(std::ptr::null_mut()))) } #[inline] -pub unsafe fn WNetUseConnectionW(hwndowner: P0, lpnetresource: *const NETRESOURCEW, lppassword: P1, lpuserid: P2, dwflags: NET_USE_CONNECT_FLAGS, lpaccessname: windows_core::PWSTR, lpbuffersize: Option<*mut u32>, lpresult: Option<*mut u32>) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn WNetUseConnectionW(hwndowner: P0, lpnetresource: *const NETRESOURCEW, lppassword: P1, lpuserid: P2, dwflags: NET_CONNECT_FLAGS, lpaccessname: windows_core::PWSTR, lpbuffersize: Option<*mut u32>, lpresult: Option<*mut u32>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionW(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpuserid : windows_core::PCWSTR, dwflags : NET_USE_CONNECT_FLAGS, lpaccessname : windows_core::PWSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("mpr.dll" "system" fn WNetUseConnectionW(hwndowner : super::super::Foundation:: HWND, lpnetresource : *const NETRESOURCEW, lppassword : windows_core::PCWSTR, lpuserid : windows_core::PCWSTR, dwflags : NET_CONNECT_FLAGS, lpaccessname : windows_core::PWSTR, lpbuffersize : *mut u32, lpresult : *mut u32) -> super::super::Foundation:: WIN32_ERROR); WNetUseConnectionW(hwndowner.param().abi(), lpnetresource, lppassword.param().abi(), lpuserid.param().abi(), dwflags, core::mem::transmute(lpaccessname), core::mem::transmute(lpbuffersize.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpresult.unwrap_or(std::ptr::null_mut()))) } pub const CONNDLG_CONN_POINT: CONNECTDLGSTRUCT_FLAGS = CONNECTDLGSTRUCT_FLAGS(2u32); @@ -489,25 +489,25 @@ pub const CONNDLG_NOT_PERSIST: CONNECTDLGSTRUCT_FLAGS = CONNECTDLGSTRUCT_FLAGS(3 pub const CONNDLG_PERSIST: CONNECTDLGSTRUCT_FLAGS = CONNECTDLGSTRUCT_FLAGS(16u32); pub const CONNDLG_RO_PATH: CONNECTDLGSTRUCT_FLAGS = CONNECTDLGSTRUCT_FLAGS(1u32); pub const CONNDLG_USE_MRU: CONNECTDLGSTRUCT_FLAGS = CONNECTDLGSTRUCT_FLAGS(4u32); -pub const CONNECT_CMD_SAVECRED: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(4096u32); -pub const CONNECT_COMMANDLINE: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(2048u32); -pub const CONNECT_CRED_RESET: u32 = 8192u32; -pub const CONNECT_CURRENT_MEDIA: u32 = 512u32; -pub const CONNECT_DEFERRED: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(1024u32); -pub const CONNECT_GLOBAL_MAPPING: u32 = 262144u32; -pub const CONNECT_INTERACTIVE: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(8u32); -pub const CONNECT_LOCALDRIVE: u32 = 256u32; -pub const CONNECT_NEED_DRIVE: u32 = 32u32; -pub const CONNECT_PROMPT: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(16u32); -pub const CONNECT_REDIRECT: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(128u32); -pub const CONNECT_REFCOUNT: u32 = 64u32; -pub const CONNECT_REQUIRE_INTEGRITY: u32 = 16384u32; -pub const CONNECT_REQUIRE_PRIVACY: u32 = 32768u32; -pub const CONNECT_RESERVED: u32 = 4278190080u32; -pub const CONNECT_TEMPORARY: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(4u32); -pub const CONNECT_UPDATE_PROFILE: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(1u32); -pub const CONNECT_UPDATE_RECENT: NET_USE_CONNECT_FLAGS = NET_USE_CONNECT_FLAGS(2u32); -pub const CONNECT_WRITE_THROUGH_SEMANTICS: u32 = 65536u32; +pub const CONNECT_CMD_SAVECRED: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(4096u32); +pub const CONNECT_COMMANDLINE: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(2048u32); +pub const CONNECT_CRED_RESET: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(8192u32); +pub const CONNECT_CURRENT_MEDIA: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(512u32); +pub const CONNECT_DEFERRED: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(1024u32); +pub const CONNECT_GLOBAL_MAPPING: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(262144u32); +pub const CONNECT_INTERACTIVE: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(8u32); +pub const CONNECT_LOCALDRIVE: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(256u32); +pub const CONNECT_NEED_DRIVE: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(32u32); +pub const CONNECT_PROMPT: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(16u32); +pub const CONNECT_REDIRECT: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(128u32); +pub const CONNECT_REFCOUNT: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(64u32); +pub const CONNECT_REQUIRE_INTEGRITY: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(16384u32); +pub const CONNECT_REQUIRE_PRIVACY: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(32768u32); +pub const CONNECT_RESERVED: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(4278190080u32); +pub const CONNECT_TEMPORARY: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(4u32); +pub const CONNECT_UPDATE_PROFILE: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(1u32); +pub const CONNECT_UPDATE_RECENT: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(2u32); +pub const CONNECT_WRITE_THROUGH_SEMANTICS: NET_CONNECT_FLAGS = NET_CONNECT_FLAGS(65536u32); pub const DISC_NO_FORCE: DISCDLGSTRUCT_FLAGS = DISCDLGSTRUCT_FLAGS(64u32); pub const DISC_UPDATE_PROFILE: DISCDLGSTRUCT_FLAGS = DISCDLGSTRUCT_FLAGS(1u32); pub const NETINFO_DISKRED: NETINFOSTRUCT_CHARACTERISTICS = NETINFOSTRUCT_CHARACTERISTICS(4u32); @@ -756,54 +756,43 @@ impl core::fmt::Debug for NETWORK_NAME_FORMAT_FLAGS { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct NET_RESOURCE_SCOPE(pub u32); -impl windows_core::TypeKind for NET_RESOURCE_SCOPE { +pub struct NET_CONNECT_FLAGS(pub u32); +impl windows_core::TypeKind for NET_CONNECT_FLAGS { type TypeKind = windows_core::CopyType; } -impl core::fmt::Debug for NET_RESOURCE_SCOPE { +impl core::fmt::Debug for NET_CONNECT_FLAGS { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("NET_RESOURCE_SCOPE").field(&self.0).finish() + f.debug_tuple("NET_CONNECT_FLAGS").field(&self.0).finish() } } -#[repr(transparent)] -#[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct NET_RESOURCE_TYPE(pub u32); -impl windows_core::TypeKind for NET_RESOURCE_TYPE { - type TypeKind = windows_core::CopyType; -} -impl core::fmt::Debug for NET_RESOURCE_TYPE { - fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("NET_RESOURCE_TYPE").field(&self.0).finish() - } -} -impl NET_RESOURCE_TYPE { +impl NET_CONNECT_FLAGS { pub const fn contains(&self, other: Self) -> bool { self.0 & other.0 == other.0 } } -impl core::ops::BitOr for NET_RESOURCE_TYPE { +impl core::ops::BitOr for NET_CONNECT_FLAGS { type Output = Self; fn bitor(self, other: Self) -> Self { Self(self.0 | other.0) } } -impl core::ops::BitAnd for NET_RESOURCE_TYPE { +impl core::ops::BitAnd for NET_CONNECT_FLAGS { type Output = Self; fn bitand(self, other: Self) -> Self { Self(self.0 & other.0) } } -impl core::ops::BitOrAssign for NET_RESOURCE_TYPE { +impl core::ops::BitOrAssign for NET_CONNECT_FLAGS { fn bitor_assign(&mut self, other: Self) { self.0.bitor_assign(other.0) } } -impl core::ops::BitAndAssign for NET_RESOURCE_TYPE { +impl core::ops::BitAndAssign for NET_CONNECT_FLAGS { fn bitand_assign(&mut self, other: Self) { self.0.bitand_assign(other.0) } } -impl core::ops::Not for NET_RESOURCE_TYPE { +impl core::ops::Not for NET_CONNECT_FLAGS { type Output = Self; fn not(self) -> Self { Self(self.0.not()) @@ -811,43 +800,54 @@ impl core::ops::Not for NET_RESOURCE_TYPE { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] -pub struct NET_USE_CONNECT_FLAGS(pub u32); -impl windows_core::TypeKind for NET_USE_CONNECT_FLAGS { +pub struct NET_RESOURCE_SCOPE(pub u32); +impl windows_core::TypeKind for NET_RESOURCE_SCOPE { type TypeKind = windows_core::CopyType; } -impl core::fmt::Debug for NET_USE_CONNECT_FLAGS { +impl core::fmt::Debug for NET_RESOURCE_SCOPE { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { - f.debug_tuple("NET_USE_CONNECT_FLAGS").field(&self.0).finish() + f.debug_tuple("NET_RESOURCE_SCOPE").field(&self.0).finish() } } -impl NET_USE_CONNECT_FLAGS { +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct NET_RESOURCE_TYPE(pub u32); +impl windows_core::TypeKind for NET_RESOURCE_TYPE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for NET_RESOURCE_TYPE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("NET_RESOURCE_TYPE").field(&self.0).finish() + } +} +impl NET_RESOURCE_TYPE { pub const fn contains(&self, other: Self) -> bool { self.0 & other.0 == other.0 } } -impl core::ops::BitOr for NET_USE_CONNECT_FLAGS { +impl core::ops::BitOr for NET_RESOURCE_TYPE { type Output = Self; fn bitor(self, other: Self) -> Self { Self(self.0 | other.0) } } -impl core::ops::BitAnd for NET_USE_CONNECT_FLAGS { +impl core::ops::BitAnd for NET_RESOURCE_TYPE { type Output = Self; fn bitand(self, other: Self) -> Self { Self(self.0 & other.0) } } -impl core::ops::BitOrAssign for NET_USE_CONNECT_FLAGS { +impl core::ops::BitOrAssign for NET_RESOURCE_TYPE { fn bitor_assign(&mut self, other: Self) { self.0.bitor_assign(other.0) } } -impl core::ops::BitAndAssign for NET_USE_CONNECT_FLAGS { +impl core::ops::BitAndAssign for NET_RESOURCE_TYPE { fn bitand_assign(&mut self, other: Self) { self.0.bitand_assign(other.0) } } -impl core::ops::Not for NET_USE_CONNECT_FLAGS { +impl core::ops::Not for NET_RESOURCE_TYPE { type Output = Self; fn not(self) -> Self { Self(self.0.not()) @@ -1091,7 +1091,7 @@ impl Default for NETRESOURCEW { pub struct NOTIFYADD { pub hwndOwner: super::super::Foundation::HWND, pub NetResource: NETRESOURCEA, - pub dwAddFlags: NET_USE_CONNECT_FLAGS, + pub dwAddFlags: NET_CONNECT_FLAGS, } impl windows_core::TypeKind for NOTIFYADD { type TypeKind = windows_core::CopyType; diff --git a/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs b/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs index ec2aefeb6d..b453f83e00 100644 --- a/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs @@ -33,13 +33,12 @@ where FwpmCalloutDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmCalloutDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmCalloutDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmCalloutDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmCalloutDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[inline] pub unsafe fn FwpmCalloutEnum0(enginehandle: P0, enumhandle: P1, numentriesrequested: u32, entries: *mut *mut *mut FWPM_CALLOUT0, numentriesreturned: *mut u32) -> u32 @@ -68,11 +67,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmCalloutGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmCalloutGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmCalloutGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -101,13 +100,12 @@ where FwpmCalloutSubscriptionsGet0(enginehandle.param().abi(), entries, numentries) } #[inline] -pub unsafe fn FwpmCalloutUnsubscribeChanges0(enginehandle: P0, changehandle: P1) -> u32 +pub unsafe fn FwpmCalloutUnsubscribeChanges0(enginehandle: P0, changehandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32); - FwpmCalloutUnsubscribeChanges0(enginehandle.param().abi(), changehandle.param().abi()) + FwpmCalloutUnsubscribeChanges0(enginehandle.param().abi(), changehandle) } #[inline] pub unsafe fn FwpmConnectionCreateEnumHandle0(enginehandle: P0, enumtemplate: Option<*const FWPM_CONNECTION_ENUM_TEMPLATE0>, enumhandle: *mut super::super::Foundation::HANDLE) -> u32 @@ -145,11 +143,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmConnectionGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmConnectionGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmConnectionGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -170,13 +168,12 @@ where FwpmConnectionSubscribe0(enginehandle.param().abi(), subscription, callback, core::mem::transmute(context.unwrap_or(std::ptr::null())), eventshandle) } #[inline] -pub unsafe fn FwpmConnectionUnsubscribe0(enginehandle: P0, eventshandle: P1) -> u32 +pub unsafe fn FwpmConnectionUnsubscribe0(enginehandle: P0, eventshandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, eventshandle : super::super::Foundation:: HANDLE) -> u32); - FwpmConnectionUnsubscribe0(enginehandle.param().abi(), eventshandle.param().abi()) + FwpmConnectionUnsubscribe0(enginehandle.param().abi(), eventshandle) } #[inline] pub unsafe fn FwpmDynamicKeywordSubscribe0(flags: u32, callback: FWPM_DYNAMIC_KEYWORD_CALLBACK0, context: Option<*const core::ffi::c_void>, subscriptionhandle: *mut super::super::Foundation::HANDLE) -> u32 { @@ -192,12 +189,9 @@ where FwpmDynamicKeywordUnsubscribe0(subscriptionhandle.param().abi()) } #[inline] -pub unsafe fn FwpmEngineClose0(enginehandle: P0) -> u32 -where - P0: windows_core::Param, -{ +pub unsafe fn FwpmEngineClose0(enginehandle: super::super::Foundation::HANDLE) -> u32 { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineClose0(enginehandle : super::super::Foundation:: HANDLE) -> u32); - FwpmEngineClose0(enginehandle.param().abi()) + FwpmEngineClose0(enginehandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -210,11 +204,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmEngineGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmEngineGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmEngineGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(all(feature = "Win32_Security", feature = "Win32_System_Rpc"))] @@ -280,13 +274,12 @@ where FwpmFilterDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmFilterDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmFilterDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmFilterDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmFilterDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -318,11 +311,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmFilterGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmFilterGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmFilterGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -353,13 +346,12 @@ where FwpmFilterSubscriptionsGet0(enginehandle.param().abi(), entries, numentries) } #[inline] -pub unsafe fn FwpmFilterUnsubscribeChanges0(enginehandle: P0, changehandle: P1) -> u32 +pub unsafe fn FwpmFilterUnsubscribeChanges0(enginehandle: P0, changehandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32); - FwpmFilterUnsubscribeChanges0(enginehandle.param().abi(), changehandle.param().abi()) + FwpmFilterUnsubscribeChanges0(enginehandle.param().abi(), changehandle) } #[inline] pub unsafe fn FwpmFreeMemory0(p: *mut *mut core::ffi::c_void) { @@ -431,13 +423,12 @@ where FwpmLayerCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn FwpmLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[inline] pub unsafe fn FwpmLayerEnum0(enginehandle: P0, enumhandle: P1, numentriesrequested: u32, entries: *mut *mut *mut FWPM_LAYER0, numentriesreturned: *mut u32) -> u32 @@ -466,11 +457,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmLayerGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -492,13 +483,12 @@ where FwpmNetEventCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn FwpmNetEventDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmNetEventDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmNetEventDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmNetEventDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -615,21 +605,20 @@ where FwpmNetEventSubscriptionsGet0(enginehandle.param().abi(), entries, numentries) } #[inline] -pub unsafe fn FwpmNetEventUnsubscribe0(enginehandle: P0, eventshandle: P1) -> u32 +pub unsafe fn FwpmNetEventUnsubscribe0(enginehandle: P0, eventshandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, eventshandle : super::super::Foundation:: HANDLE) -> u32); - FwpmNetEventUnsubscribe0(enginehandle.param().abi(), eventshandle.param().abi()) + FwpmNetEventUnsubscribe0(enginehandle.param().abi(), eventshandle) } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmNetEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmNetEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmNetEventsGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -716,13 +705,12 @@ where FwpmProviderContextDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmProviderContextDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmProviderContextDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmProviderContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmProviderContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -838,11 +826,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmProviderContextGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -871,13 +859,12 @@ where FwpmProviderContextSubscriptionsGet0(enginehandle.param().abi(), entries, numentries) } #[inline] -pub unsafe fn FwpmProviderContextUnsubscribeChanges0(enginehandle: P0, changehandle: P1) -> u32 +pub unsafe fn FwpmProviderContextUnsubscribeChanges0(enginehandle: P0, changehandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32); - FwpmProviderContextUnsubscribeChanges0(enginehandle.param().abi(), changehandle.param().abi()) + FwpmProviderContextUnsubscribeChanges0(enginehandle.param().abi(), changehandle) } #[inline] pub unsafe fn FwpmProviderCreateEnumHandle0(enginehandle: P0, enumtemplate: Option<*const FWPM_PROVIDER_ENUM_TEMPLATE0>, enumhandle: *mut super::super::Foundation::HANDLE) -> u32 @@ -896,13 +883,12 @@ where FwpmProviderDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmProviderDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmProviderDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmProviderDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmProviderDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[inline] pub unsafe fn FwpmProviderEnum0(enginehandle: P0, enumhandle: P1, numentriesrequested: u32, entries: *mut *mut *mut FWPM_PROVIDER0, numentriesreturned: *mut u32) -> u32 @@ -923,11 +909,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmProviderGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmProviderGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmProviderGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -956,13 +942,12 @@ where FwpmProviderSubscriptionsGet0(enginehandle.param().abi(), entries, numentries) } #[inline] -pub unsafe fn FwpmProviderUnsubscribeChanges0(enginehandle: P0, changehandle: P1) -> u32 +pub unsafe fn FwpmProviderUnsubscribeChanges0(enginehandle: P0, changehandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32); - FwpmProviderUnsubscribeChanges0(enginehandle.param().abi(), changehandle.param().abi()) + FwpmProviderUnsubscribeChanges0(enginehandle.param().abi(), changehandle) } #[inline] pub unsafe fn FwpmSessionCreateEnumHandle0(enginehandle: P0, enumtemplate: Option<*const FWPM_SESSION_ENUM_TEMPLATE0>, enumhandle: *mut super::super::Foundation::HANDLE) -> u32 @@ -973,13 +958,12 @@ where FwpmSessionCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn FwpmSessionDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmSessionDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSessionDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmSessionDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmSessionDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -1018,13 +1002,12 @@ where FwpmSubLayerDeleteByKey0(enginehandle.param().abi(), key) } #[inline] -pub unsafe fn FwpmSubLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn FwpmSubLayerDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmSubLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + FwpmSubLayerDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[inline] pub unsafe fn FwpmSubLayerEnum0(enginehandle: P0, enumhandle: P1, numentriesrequested: u32, entries: *mut *mut *mut FWPM_SUBLAYER0, numentriesreturned: *mut u32) -> u32 @@ -1045,11 +1028,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle: P0, key: Option<*const windows_core::GUID>, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmSubLayerGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(key.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -1078,13 +1061,12 @@ where FwpmSubLayerSubscriptionsGet0(enginehandle.param().abi(), entries, numentries) } #[inline] -pub unsafe fn FwpmSubLayerUnsubscribeChanges0(enginehandle: P0, changehandle: P1) -> u32 +pub unsafe fn FwpmSubLayerUnsubscribeChanges0(enginehandle: P0, changehandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32); - FwpmSubLayerUnsubscribeChanges0(enginehandle.param().abi(), changehandle.param().abi()) + FwpmSubLayerUnsubscribeChanges0(enginehandle.param().abi(), changehandle) } #[inline] pub unsafe fn FwpmSystemPortsGet0(enginehandle: P0, sysports: *mut *mut FWPM_SYSTEM_PORTS0) -> u32 @@ -1103,13 +1085,12 @@ where FwpmSystemPortsSubscribe0(enginehandle.param().abi(), core::mem::transmute(reserved.unwrap_or(std::ptr::null())), callback, core::mem::transmute(context.unwrap_or(std::ptr::null())), sysportshandle) } #[inline] -pub unsafe fn FwpmSystemPortsUnsubscribe0(enginehandle: P0, sysportshandle: P1) -> u32 +pub unsafe fn FwpmSystemPortsUnsubscribe0(enginehandle: P0, sysportshandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSystemPortsUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, sysportshandle : super::super::Foundation:: HANDLE) -> u32); - FwpmSystemPortsUnsubscribe0(enginehandle.param().abi(), sysportshandle.param().abi()) + FwpmSystemPortsUnsubscribe0(enginehandle.param().abi(), sysportshandle) } #[inline] pub unsafe fn FwpmTransactionAbort0(enginehandle: P0) -> u32 @@ -1144,21 +1125,20 @@ where FwpmvSwitchEventSubscribe0(enginehandle.param().abi(), subscription, callback, core::mem::transmute(context.unwrap_or(std::ptr::null())), subscriptionhandle) } #[inline] -pub unsafe fn FwpmvSwitchEventUnsubscribe0(enginehandle: P0, subscriptionhandle: P1) -> u32 +pub unsafe fn FwpmvSwitchEventUnsubscribe0(enginehandle: P0, subscriptionhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscriptionhandle : super::super::Foundation:: HANDLE) -> u32); - FwpmvSwitchEventUnsubscribe0(enginehandle.param().abi(), subscriptionhandle.param().abi()) + FwpmvSwitchEventUnsubscribe0(enginehandle.param().abi(), subscriptionhandle) } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); FwpmvSwitchEventsGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -1172,11 +1152,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn IPsecDospGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn IPsecDospGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); IPsecDospGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[inline] @@ -1205,13 +1185,12 @@ where IPsecDospStateCreateEnumHandle0(enginehandle.param().abi(), core::mem::transmute(enumtemplate.unwrap_or(std::ptr::null())), enumhandle) } #[inline] -pub unsafe fn IPsecDospStateDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn IPsecDospStateDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospStateDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - IPsecDospStateDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IPsecDospStateDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[inline] pub unsafe fn IPsecDospStateEnum0(enginehandle: P0, enumhandle: P1, numentriesrequested: u32, entries: *mut *mut *mut IPSEC_DOSP_STATE0, numentries: *mut u32) -> u32 @@ -1249,11 +1228,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn IPsecKeyManagerGetSecurityInfoByKey0(enginehandle: P0, reserved: Option<*const core::ffi::c_void>, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn IPsecKeyManagerGetSecurityInfoByKey0(enginehandle: P0, reserved: Option<*const core::ffi::c_void>, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); IPsecKeyManagerGetSecurityInfoByKey0(enginehandle.param().abi(), core::mem::transmute(reserved.unwrap_or(std::ptr::null())), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -1348,13 +1327,12 @@ where IPsecSaContextDeleteById0(enginehandle.param().abi(), id) } #[inline] -pub unsafe fn IPsecSaContextDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn IPsecSaContextDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - IPsecSaContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IPsecSaContextDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -1445,13 +1423,12 @@ where IPsecSaContextSubscriptionsGet0(enginehandle.param().abi(), entries, numentries) } #[inline] -pub unsafe fn IPsecSaContextUnsubscribe0(enginehandle: P0, eventshandle: P1) -> u32 +pub unsafe fn IPsecSaContextUnsubscribe0(enginehandle: P0, eventshandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, eventshandle : super::super::Foundation:: HANDLE) -> u32); - IPsecSaContextUnsubscribe0(enginehandle.param().abi(), eventshandle.param().abi()) + IPsecSaContextUnsubscribe0(enginehandle.param().abi(), eventshandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -1472,11 +1449,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn IPsecSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn IPsecSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); IPsecSaDbGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -1489,13 +1466,12 @@ where IPsecSaDbSetSecurityInfo0(enginehandle.param().abi(), securityinfo, core::mem::transmute(sidowner.unwrap_or(std::ptr::null())), core::mem::transmute(sidgroup.unwrap_or(std::ptr::null())), core::mem::transmute(dacl.unwrap_or(std::ptr::null())), core::mem::transmute(sacl.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn IPsecSaDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn IPsecSaDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - IPsecSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IPsecSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[cfg(feature = "Win32_Security")] #[inline] @@ -1544,11 +1520,11 @@ where } #[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn IkeextSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Foundation::PSID, sidgroup: *mut super::super::Foundation::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 +pub unsafe fn IkeextSaDbGetSecurityInfo0(enginehandle: P0, securityinfo: u32, sidowner: *mut super::super::Security::PSID, sidgroup: *mut super::super::Security::PSID, dacl: *mut *mut super::super::Security::ACL, sacl: *mut *mut super::super::Security::ACL, securitydescriptor: *mut super::super::Security::PSECURITY_DESCRIPTOR) -> u32 where P0: windows_core::Param, { - windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Foundation:: PSID, sidgroup : *mut super::super::Foundation:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); + windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32); IkeextSaDbGetSecurityInfo0(enginehandle.param().abi(), securityinfo, sidowner, sidgroup, dacl, sacl, securitydescriptor) } #[cfg(feature = "Win32_Security")] @@ -1569,13 +1545,12 @@ where IkeextSaDeleteById0(enginehandle.param().abi(), id) } #[inline] -pub unsafe fn IkeextSaDestroyEnumHandle0(enginehandle: P0, enumhandle: P1) -> u32 +pub unsafe fn IkeextSaDestroyEnumHandle0(enginehandle: P0, enumhandle: super::super::Foundation::HANDLE) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32); - IkeextSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle.param().abi()) + IkeextSaDestroyEnumHandle0(enginehandle.param().abi(), enumhandle) } #[inline] pub unsafe fn IkeextSaEnum0(enginehandle: P0, enumhandle: P1, numentriesrequested: u32, entries: *mut *mut *mut IKEEXT_SA_DETAILS0, numentriesreturned: *mut u32) -> u32 diff --git a/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs b/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs index d2e8d89e27..127311e2d5 100644 --- a/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs @@ -73,16 +73,17 @@ pub unsafe fn NetworkIsolationSetAppContainerConfig(appcontainersids: &[super::s windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationSetAppContainerConfig(dwnumpublicappcs : u32, appcontainersids : *const super::super::Security:: SID_AND_ATTRIBUTES) -> u32); NetworkIsolationSetAppContainerConfig(appcontainersids.len().try_into().unwrap(), core::mem::transmute(appcontainersids.as_ptr())) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn NetworkIsolationSetupAppContainerBinaries(applicationcontainersid: P0, packagefullname: P1, packagefolder: P2, displayname: P3, bbinariesfullycomputed: P4, binaries: &[windows_core::PCWSTR]) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, P4: windows_core::Param, { - windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationSetupAppContainerBinaries(applicationcontainersid : super::super::Foundation:: PSID, packagefullname : windows_core::PCWSTR, packagefolder : windows_core::PCWSTR, displayname : windows_core::PCWSTR, bbinariesfullycomputed : super::super::Foundation:: BOOL, binaries : *const windows_core::PCWSTR, binariescount : u32) -> windows_core::HRESULT); + windows_targets::link!("api-ms-win-net-isolation-l1-1-0.dll" "system" fn NetworkIsolationSetupAppContainerBinaries(applicationcontainersid : super::super::Security:: PSID, packagefullname : windows_core::PCWSTR, packagefolder : windows_core::PCWSTR, displayname : windows_core::PCWSTR, bbinariesfullycomputed : super::super::Foundation:: BOOL, binaries : *const windows_core::PCWSTR, binariescount : u32) -> windows_core::HRESULT); NetworkIsolationSetupAppContainerBinaries(applicationcontainersid.param().abi(), packagefullname.param().abi(), packagefolder.param().abi(), displayname.param().abi(), bbinariesfullycomputed.param().abi(), core::mem::transmute(binaries.as_ptr()), binaries.len().try_into().unwrap()).ok() } #[inline] diff --git a/crates/libs/windows/src/Windows/Win32/Networking/ActiveDirectory/mod.rs b/crates/libs/windows/src/Windows/Win32/Networking/ActiveDirectory/mod.rs index 142308b068..5265adf69d 100644 --- a/crates/libs/windows/src/Windows/Win32/Networking/ActiveDirectory/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Networking/ActiveDirectory/mod.rs @@ -479,6 +479,7 @@ where windows_targets::link!("netapi32.dll" "system" fn DsDeregisterDnsHostRecordsW(servername : windows_core::PCWSTR, dnsdomainname : windows_core::PCWSTR, domainguid : *const windows_core::GUID, dsaguid : *const windows_core::GUID, dnshostname : windows_core::PCWSTR) -> u32); DsDeregisterDnsHostRecordsW(servername.param().abi(), dnsdomainname.param().abi(), core::mem::transmute(domainguid.unwrap_or(std::ptr::null())), core::mem::transmute(dsaguid.unwrap_or(std::ptr::null())), dnshostname.param().abi()) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn DsEnumerateDomainTrustsA(servername: P0, flags: u32, domains: *mut *mut DS_DOMAIN_TRUSTSA, domaincount: *mut u32) -> u32 where @@ -487,6 +488,7 @@ where windows_targets::link!("netapi32.dll" "system" fn DsEnumerateDomainTrustsA(servername : windows_core::PCSTR, flags : u32, domains : *mut *mut DS_DOMAIN_TRUSTSA, domaincount : *mut u32) -> u32); DsEnumerateDomainTrustsA(servername.param().abi(), flags, domains, domaincount) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn DsEnumerateDomainTrustsW(servername: P0, flags: u32, domains: *mut *mut DS_DOMAIN_TRUSTSW, domaincount: *mut u32) -> u32 where @@ -9265,6 +9267,7 @@ impl Default for DS_DOMAIN_CONTROLLER_INFO_3W { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct DS_DOMAIN_TRUSTSA { pub NetbiosDomainName: windows_core::PSTR, @@ -9273,18 +9276,21 @@ pub struct DS_DOMAIN_TRUSTSA { pub ParentIndex: u32, pub TrustType: u32, pub TrustAttributes: u32, - pub DomainSid: super::super::Foundation::PSID, + pub DomainSid: super::super::Security::PSID, pub DomainGuid: windows_core::GUID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for DS_DOMAIN_TRUSTSA { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for DS_DOMAIN_TRUSTSA { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct DS_DOMAIN_TRUSTSW { pub NetbiosDomainName: windows_core::PWSTR, @@ -9293,12 +9299,14 @@ pub struct DS_DOMAIN_TRUSTSW { pub ParentIndex: u32, pub TrustType: u32, pub TrustAttributes: u32, - pub DomainSid: super::super::Foundation::PSID, + pub DomainSid: super::super::Security::PSID, pub DomainGuid: windows_core::GUID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for DS_DOMAIN_TRUSTSW { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for DS_DOMAIN_TRUSTSW { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/Networking/Clustering/mod.rs b/crates/libs/windows/src/Windows/Win32/Networking/Clustering/mod.rs index b6873145ba..27212cb53e 100644 --- a/crates/libs/windows/src/Windows/Win32/Networking/Clustering/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Networking/Clustering/mod.rs @@ -3128,24 +3128,24 @@ where windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceEnvironment(pszservicename : windows_core::PCWSTR, hresource : HRESOURCE, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); ResUtilSetResourceServiceEnvironment(pszservicename.param().abi(), hresource.param().abi(), pfnlogevent, hresourcehandle) } -#[cfg(feature = "Win32_Security")] +#[cfg(feature = "Win32_System_Services")] #[inline] -pub unsafe fn ResUtilSetResourceServiceStartParameters(pszservicename: P0, schscmhandle: P1, phservice: *mut super::super::Security::SC_HANDLE, pfnlogevent: PLOG_EVENT_ROUTINE, hresourcehandle: isize) -> u32 +pub unsafe fn ResUtilSetResourceServiceStartParameters(pszservicename: P0, schscmhandle: P1, phservice: *mut super::super::System::Services::SC_HANDLE, pfnlogevent: PLOG_EVENT_ROUTINE, hresourcehandle: isize) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParameters(pszservicename : windows_core::PCWSTR, schscmhandle : super::super::Security:: SC_HANDLE, phservice : *mut super::super::Security:: SC_HANDLE, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); + windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParameters(pszservicename : windows_core::PCWSTR, schscmhandle : super::super::System::Services:: SC_HANDLE, phservice : *mut super::super::System::Services:: SC_HANDLE, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); ResUtilSetResourceServiceStartParameters(pszservicename.param().abi(), schscmhandle.param().abi(), phservice, pfnlogevent, hresourcehandle) } -#[cfg(feature = "Win32_Security")] +#[cfg(feature = "Win32_System_Services")] #[inline] -pub unsafe fn ResUtilSetResourceServiceStartParametersEx(pszservicename: P0, schscmhandle: P1, phservice: *mut super::super::Security::SC_HANDLE, dwdesiredaccess: u32, pfnlogevent: PLOG_EVENT_ROUTINE, hresourcehandle: isize) -> u32 +pub unsafe fn ResUtilSetResourceServiceStartParametersEx(pszservicename: P0, schscmhandle: P1, phservice: *mut super::super::System::Services::SC_HANDLE, dwdesiredaccess: u32, pfnlogevent: PLOG_EVENT_ROUTINE, hresourcehandle: isize) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParametersEx(pszservicename : windows_core::PCWSTR, schscmhandle : super::super::Security:: SC_HANDLE, phservice : *mut super::super::Security:: SC_HANDLE, dwdesiredaccess : u32, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); + windows_targets::link!("resutils.dll" "system" fn ResUtilSetResourceServiceStartParametersEx(pszservicename : windows_core::PCWSTR, schscmhandle : super::super::System::Services:: SC_HANDLE, phservice : *mut super::super::System::Services:: SC_HANDLE, dwdesiredaccess : u32, pfnlogevent : PLOG_EVENT_ROUTINE, hresourcehandle : isize) -> u32); ResUtilSetResourceServiceStartParametersEx(pszservicename.param().abi(), schscmhandle.param().abi(), phservice, dwdesiredaccess, pfnlogevent, hresourcehandle) } #[cfg(feature = "Win32_System_Registry")] @@ -3178,13 +3178,13 @@ where windows_targets::link!("resutils.dll" "system" fn ResUtilSetValueEx(hkeyclusterkey : super::super::System::Registry:: HKEY, valuename : windows_core::PCWSTR, valuetype : u32, valuedata : *const u8, valuesize : u32, flags : u32) -> u32); ResUtilSetValueEx(hkeyclusterkey.param().abi(), valuename.param().abi(), valuetype, core::mem::transmute(valuedata.as_ptr()), valuedata.len().try_into().unwrap(), flags) } -#[cfg(feature = "Win32_Security")] +#[cfg(feature = "Win32_System_Services")] #[inline] -pub unsafe fn ResUtilStartResourceService(pszservicename: P0, phservicehandle: *mut super::super::Security::SC_HANDLE) -> u32 +pub unsafe fn ResUtilStartResourceService(pszservicename: P0, phservicehandle: *mut super::super::System::Services::SC_HANDLE) -> u32 where P0: windows_core::Param, { - windows_targets::link!("resutils.dll" "system" fn ResUtilStartResourceService(pszservicename : windows_core::PCWSTR, phservicehandle : *mut super::super::Security:: SC_HANDLE) -> u32); + windows_targets::link!("resutils.dll" "system" fn ResUtilStartResourceService(pszservicename : windows_core::PCWSTR, phservicehandle : *mut super::super::System::Services:: SC_HANDLE) -> u32); ResUtilStartResourceService(pszservicename.param().abi(), phservicehandle) } #[inline] @@ -3195,13 +3195,13 @@ where windows_targets::link!("resutils.dll" "system" fn ResUtilStopResourceService(pszservicename : windows_core::PCWSTR) -> u32); ResUtilStopResourceService(pszservicename.param().abi()) } -#[cfg(feature = "Win32_Security")] +#[cfg(feature = "Win32_System_Services")] #[inline] pub unsafe fn ResUtilStopService(hservicehandle: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("resutils.dll" "system" fn ResUtilStopService(hservicehandle : super::super::Security:: SC_HANDLE) -> u32); + windows_targets::link!("resutils.dll" "system" fn ResUtilStopService(hservicehandle : super::super::System::Services:: SC_HANDLE) -> u32); ResUtilStopService(hservicehandle.param().abi()) } #[inline] @@ -3233,13 +3233,13 @@ where windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyResourceService(pszservicename : windows_core::PCWSTR) -> u32); ResUtilVerifyResourceService(pszservicename.param().abi()) } -#[cfg(feature = "Win32_Security")] +#[cfg(feature = "Win32_System_Services")] #[inline] pub unsafe fn ResUtilVerifyService(hservicehandle: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyService(hservicehandle : super::super::Security:: SC_HANDLE) -> u32); + windows_targets::link!("resutils.dll" "system" fn ResUtilVerifyService(hservicehandle : super::super::System::Services:: SC_HANDLE) -> u32); ResUtilVerifyService(hservicehandle.param().abi()) } #[inline] @@ -12450,25 +12450,25 @@ pub type PRESUTIL_SET_PROPERTY_TABLE_EX = Option u32>; pub type PRESUTIL_SET_RESOURCE_SERVICE_ENVIRONMENT = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_SET_RESOURCE_SERVICE_START_PARAMETERS_EX = Option u32>; #[cfg(feature = "Win32_System_Registry")] pub type PRESUTIL_SET_SZ_VALUE = Option u32>; #[cfg(feature = "Win32_System_Registry")] pub type PRESUTIL_SET_UNKNOWN_PROPERTIES = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_START_RESOURCE_SERVICE = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_START_RESOURCE_SERVICE = Option u32>; pub type PRESUTIL_STOP_RESOURCE_SERVICE = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_STOP_SERVICE = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_STOP_SERVICE = Option u32>; pub type PRESUTIL_TERMINATE_SERVICE_PROCESS_FROM_RES_DLL = Option u32>; pub type PRESUTIL_VERIFY_PRIVATE_PROPERTY_LIST = Option u32>; pub type PRESUTIL_VERIFY_PROPERTY_TABLE = Option u32>; pub type PRESUTIL_VERIFY_RESOURCE_SERVICE = Option u32>; -#[cfg(feature = "Win32_Security")] -pub type PRESUTIL_VERIFY_SERVICE = Option u32>; +#[cfg(feature = "Win32_System_Services")] +pub type PRESUTIL_VERIFY_SERVICE = Option u32>; pub type PRES_UTIL_VERIFY_SHUTDOWN_SAFE = Option u32>; pub type PSET_INTERNAL_STATE = Option u32>; pub type PSET_RESOURCE_INMEMORY_NODELOCAL_PROPERTIES_ROUTINE = Option u32>; diff --git a/crates/libs/windows/src/Windows/Win32/Networking/HttpServer/mod.rs b/crates/libs/windows/src/Windows/Win32/Networking/HttpServer/mod.rs index 6874f1981c..ba1b98217e 100644 --- a/crates/libs/windows/src/Windows/Win32/Networking/HttpServer/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Networking/HttpServer/mod.rs @@ -1,12 +1,12 @@ #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpAddFragmentToCache(requestqueuehandle: P0, urlprefix: P1, datachunk: *const HTTP_DATA_CHUNK, cachepolicy: *const HTTP_CACHE_POLICY, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpAddFragmentToCache(requestqueuehandle: P0, urlprefix: P1, datachunk: *const HTTP_DATA_CHUNK, cachepolicy: *const HTTP_CACHE_POLICY, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpAddFragmentToCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_core::PCWSTR, datachunk : *const HTTP_DATA_CHUNK, cachepolicy : *const HTTP_CACHE_POLICY, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpAddFragmentToCache(requestqueuehandle.param().abi(), urlprefix.param().abi(), datachunk, cachepolicy, core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpAddFragmentToCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_core::PCWSTR, datachunk : *const HTTP_DATA_CHUNK, cachepolicy : *const HTTP_CACHE_POLICY, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpAddFragmentToCache(requestqueuehandle.param().abi(), urlprefix.param().abi(), datachunk, cachepolicy, core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[inline] pub unsafe fn HttpAddUrl(requestqueuehandle: P0, fullyqualifiedurl: P1, reserved: Option<*const core::ffi::c_void>) -> u32 @@ -27,12 +27,12 @@ where } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpCancelHttpRequest(requestqueuehandle: P0, requestid: u64, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpCancelHttpRequest(requestqueuehandle: P0, requestid: u64, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpCancelHttpRequest(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpCancelHttpRequest(requestqueuehandle.param().abi(), requestid, core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpCancelHttpRequest(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpCancelHttpRequest(requestqueuehandle.param().abi(), requestid, core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[inline] pub unsafe fn HttpCloseRequestQueue(requestqueuehandle: P0) -> u32 @@ -115,13 +115,13 @@ where } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpFlushResponseCache(requestqueuehandle: P0, urlprefix: P1, flags: u32, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpFlushResponseCache(requestqueuehandle: P0, urlprefix: P1, flags: u32, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpFlushResponseCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_core::PCWSTR, flags : u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpFlushResponseCache(requestqueuehandle.param().abi(), urlprefix.param().abi(), flags, core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpFlushResponseCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_core::PCWSTR, flags : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpFlushResponseCache(requestqueuehandle.param().abi(), urlprefix.param().abi(), flags, core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[inline] pub unsafe fn HttpGetExtension(version: HTTPAPI_VERSION, extension: u32, buffer: *mut core::ffi::c_void, buffersize: u32) -> u32 { @@ -175,22 +175,22 @@ pub unsafe fn HttpQueryUrlGroupProperty(urlgroupid: u64, property: HTTP_SERVER_P } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpReadFragmentFromCache(requestqueuehandle: P0, urlprefix: P1, byterange: Option<*const HTTP_BYTE_RANGE>, buffer: *mut core::ffi::c_void, bufferlength: u32, bytesread: Option<*mut u32>, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpReadFragmentFromCache(requestqueuehandle: P0, urlprefix: P1, byterange: Option<*const HTTP_BYTE_RANGE>, buffer: *mut core::ffi::c_void, bufferlength: u32, bytesread: Option<*mut u32>, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpReadFragmentFromCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_core::PCWSTR, byterange : *const HTTP_BYTE_RANGE, buffer : *mut core::ffi::c_void, bufferlength : u32, bytesread : *mut u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpReadFragmentFromCache(requestqueuehandle.param().abi(), urlprefix.param().abi(), core::mem::transmute(byterange.unwrap_or(std::ptr::null())), buffer, bufferlength, core::mem::transmute(bytesread.unwrap_or(std::ptr::null_mut())), core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpReadFragmentFromCache(requestqueuehandle : super::super::Foundation:: HANDLE, urlprefix : windows_core::PCWSTR, byterange : *const HTTP_BYTE_RANGE, buffer : *mut core::ffi::c_void, bufferlength : u32, bytesread : *mut u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpReadFragmentFromCache(requestqueuehandle.param().abi(), urlprefix.param().abi(), core::mem::transmute(byterange.unwrap_or(std::ptr::null())), buffer, bufferlength, core::mem::transmute(bytesread.unwrap_or(std::ptr::null_mut())), core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpReceiveClientCertificate(requestqueuehandle: P0, connectionid: u64, flags: u32, sslclientcertinfo: *mut HTTP_SSL_CLIENT_CERT_INFO, sslclientcertinfosize: u32, bytesreceived: Option<*mut u32>, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpReceiveClientCertificate(requestqueuehandle: P0, connectionid: u64, flags: u32, sslclientcertinfo: *mut HTTP_SSL_CLIENT_CERT_INFO, sslclientcertinfosize: u32, bytesreceived: Option<*mut u32>, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpReceiveClientCertificate(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, flags : u32, sslclientcertinfo : *mut HTTP_SSL_CLIENT_CERT_INFO, sslclientcertinfosize : u32, bytesreceived : *mut u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpReceiveClientCertificate(requestqueuehandle.param().abi(), connectionid, flags, sslclientcertinfo, sslclientcertinfosize, core::mem::transmute(bytesreceived.unwrap_or(std::ptr::null_mut())), core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpReceiveClientCertificate(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, flags : u32, sslclientcertinfo : *mut HTTP_SSL_CLIENT_CERT_INFO, sslclientcertinfosize : u32, bytesreceived : *mut u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpReceiveClientCertificate(requestqueuehandle.param().abi(), connectionid, flags, sslclientcertinfo, sslclientcertinfosize, core::mem::transmute(bytesreceived.unwrap_or(std::ptr::null_mut())), core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[cfg(all(feature = "Win32_Networking_WinSock", feature = "Win32_System_IO"))] #[inline] @@ -203,12 +203,12 @@ where } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpReceiveRequestEntityBody(requestqueuehandle: P0, requestid: u64, flags: u32, entitybuffer: *mut core::ffi::c_void, entitybufferlength: u32, bytesreturned: Option<*mut u32>, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpReceiveRequestEntityBody(requestqueuehandle: P0, requestid: u64, flags: u32, entitybuffer: *mut core::ffi::c_void, entitybufferlength: u32, bytesreturned: Option<*mut u32>, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpReceiveRequestEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitybuffer : *mut core::ffi::c_void, entitybufferlength : u32, bytesreturned : *mut u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpReceiveRequestEntityBody(requestqueuehandle.param().abi(), requestid, flags, entitybuffer, entitybufferlength, core::mem::transmute(bytesreturned.unwrap_or(std::ptr::null_mut())), core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpReceiveRequestEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitybuffer : *mut core::ffi::c_void, entitybufferlength : u32, bytesreturned : *mut u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpReceiveRequestEntityBody(requestqueuehandle.param().abi(), requestid, flags, entitybuffer, entitybufferlength, core::mem::transmute(bytesreturned.unwrap_or(std::ptr::null_mut())), core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[inline] pub unsafe fn HttpRemoveUrl(requestqueuehandle: P0, fullyqualifiedurl: P1) -> u32 @@ -229,20 +229,20 @@ where } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpSendHttpResponse(requestqueuehandle: P0, requestid: u64, flags: u32, httpresponse: *const HTTP_RESPONSE_V2, cachepolicy: Option<*const HTTP_CACHE_POLICY>, bytessent: Option<*mut u32>, reserved1: Option<*const core::ffi::c_void>, reserved2: u32, overlapped: Option<*const super::super::System::IO::OVERLAPPED>, logdata: Option<*const HTTP_LOG_DATA>) -> u32 +pub unsafe fn HttpSendHttpResponse(requestqueuehandle: P0, requestid: u64, flags: u32, httpresponse: *const HTTP_RESPONSE_V2, cachepolicy: Option<*const HTTP_CACHE_POLICY>, bytessent: Option<*mut u32>, reserved1: Option<*const core::ffi::c_void>, reserved2: u32, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>, logdata: Option<*const HTTP_LOG_DATA>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpSendHttpResponse(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, httpresponse : *const HTTP_RESPONSE_V2, cachepolicy : *const HTTP_CACHE_POLICY, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *const super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); - HttpSendHttpResponse(requestqueuehandle.param().abi(), requestid, flags, httpresponse, core::mem::transmute(cachepolicy.unwrap_or(std::ptr::null())), core::mem::transmute(bytessent.unwrap_or(std::ptr::null_mut())), core::mem::transmute(reserved1.unwrap_or(std::ptr::null())), reserved2, core::mem::transmute(overlapped.unwrap_or(std::ptr::null())), core::mem::transmute(logdata.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpSendHttpResponse(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, httpresponse : *const HTTP_RESPONSE_V2, cachepolicy : *const HTTP_CACHE_POLICY, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); + HttpSendHttpResponse(requestqueuehandle.param().abi(), requestid, flags, httpresponse, core::mem::transmute(cachepolicy.unwrap_or(std::ptr::null())), core::mem::transmute(bytessent.unwrap_or(std::ptr::null_mut())), core::mem::transmute(reserved1.unwrap_or(std::ptr::null())), reserved2, core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut())), core::mem::transmute(logdata.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpSendResponseEntityBody(requestqueuehandle: P0, requestid: u64, flags: u32, entitychunks: Option<&[HTTP_DATA_CHUNK]>, bytessent: Option<*mut u32>, reserved1: Option<*const core::ffi::c_void>, reserved2: u32, overlapped: Option<*const super::super::System::IO::OVERLAPPED>, logdata: Option<*const HTTP_LOG_DATA>) -> u32 +pub unsafe fn HttpSendResponseEntityBody(requestqueuehandle: P0, requestid: u64, flags: u32, entitychunks: Option<&[HTTP_DATA_CHUNK]>, bytessent: Option<*mut u32>, reserved1: Option<*const core::ffi::c_void>, reserved2: u32, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>, logdata: Option<*const HTTP_LOG_DATA>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpSendResponseEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitychunkcount : u16, entitychunks : *const HTTP_DATA_CHUNK, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *const super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); + windows_targets::link!("httpapi.dll" "system" fn HttpSendResponseEntityBody(requestqueuehandle : super::super::Foundation:: HANDLE, requestid : u64, flags : u32, entitychunkcount : u16, entitychunks : *const HTTP_DATA_CHUNK, bytessent : *mut u32, reserved1 : *const core::ffi::c_void, reserved2 : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED, logdata : *const HTTP_LOG_DATA) -> u32); HttpSendResponseEntityBody( requestqueuehandle.param().abi(), requestid, @@ -252,7 +252,7 @@ where core::mem::transmute(bytessent.unwrap_or(std::ptr::null_mut())), core::mem::transmute(reserved1.unwrap_or(std::ptr::null())), reserved2, - core::mem::transmute(overlapped.unwrap_or(std::ptr::null())), + core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut())), core::mem::transmute(logdata.unwrap_or(std::ptr::null())), ) } @@ -316,30 +316,30 @@ where } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpWaitForDemandStart(requestqueuehandle: P0, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpWaitForDemandStart(requestqueuehandle: P0, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDemandStart(requestqueuehandle : super::super::Foundation:: HANDLE, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpWaitForDemandStart(requestqueuehandle.param().abi(), core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDemandStart(requestqueuehandle : super::super::Foundation:: HANDLE, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpWaitForDemandStart(requestqueuehandle.param().abi(), core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpWaitForDisconnect(requestqueuehandle: P0, connectionid: u64, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpWaitForDisconnect(requestqueuehandle: P0, connectionid: u64, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnect(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpWaitForDisconnect(requestqueuehandle.param().abi(), connectionid, core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnect(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpWaitForDisconnect(requestqueuehandle.param().abi(), connectionid, core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_System_IO")] #[inline] -pub unsafe fn HttpWaitForDisconnectEx(requestqueuehandle: P0, connectionid: u64, reserved: u32, overlapped: Option<*const super::super::System::IO::OVERLAPPED>) -> u32 +pub unsafe fn HttpWaitForDisconnectEx(requestqueuehandle: P0, connectionid: u64, reserved: u32, overlapped: Option<*mut super::super::System::IO::OVERLAPPED>) -> u32 where P0: windows_core::Param, { - windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnectEx(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, reserved : u32, overlapped : *const super::super::System::IO:: OVERLAPPED) -> u32); - HttpWaitForDisconnectEx(requestqueuehandle.param().abi(), connectionid, reserved, core::mem::transmute(overlapped.unwrap_or(std::ptr::null()))) + windows_targets::link!("httpapi.dll" "system" fn HttpWaitForDisconnectEx(requestqueuehandle : super::super::Foundation:: HANDLE, connectionid : u64, reserved : u32, overlapped : *mut super::super::System::IO:: OVERLAPPED) -> u32); + HttpWaitForDisconnectEx(requestqueuehandle.param().abi(), connectionid, reserved, core::mem::transmute(overlapped.unwrap_or(std::ptr::null_mut()))) } pub const CacheRangeChunkSize: HTTP_SERVICE_CONFIG_CACHE_KEY = HTTP_SERVICE_CONFIG_CACHE_KEY(1i32); pub const CreateRequestQueueExternalIdProperty: HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID = HTTP_CREATE_REQUEST_QUEUE_PROPERTY_ID(1i32); diff --git a/crates/libs/windows/src/Windows/Win32/Networking/WebSocket/mod.rs b/crates/libs/windows/src/Windows/Win32/Networking/WebSocket/mod.rs index 0bf89bf430..5067d69df1 100644 --- a/crates/libs/windows/src/Windows/Win32/Networking/WebSocket/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Networking/WebSocket/mod.rs @@ -242,10 +242,18 @@ impl Default for WEB_SOCKET_BUFFER_1 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct WEB_SOCKET_HANDLE(pub isize); +pub struct WEB_SOCKET_HANDLE(pub *mut core::ffi::c_void); impl WEB_SOCKET_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for WEB_SOCKET_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + WebSocketDeleteHandle(*self); + } } } impl Default for WEB_SOCKET_HANDLE { diff --git a/crates/libs/windows/src/Windows/Win32/Networking/WinInet/mod.rs b/crates/libs/windows/src/Windows/Win32/Networking/WinInet/mod.rs index 2b563a9877..2019077452 100644 --- a/crates/libs/windows/src/Windows/Win32/Networking/WinInet/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Networking/WinInet/mod.rs @@ -1705,12 +1705,9 @@ where InternetTimeToSystemTimeW(lpsztime.param().abi(), pst, dwreserved).ok() } #[inline] -pub unsafe fn InternetUnlockRequestFile(hlockrequestinfo: P0) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn InternetUnlockRequestFile(hlockrequestinfo: super::super::Foundation::HANDLE) -> windows_core::Result<()> { windows_targets::link!("wininet.dll" "system" fn InternetUnlockRequestFile(hlockrequestinfo : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); - InternetUnlockRequestFile(hlockrequestinfo.param().abi()).ok() + InternetUnlockRequestFile(hlockrequestinfo).ok() } #[inline] pub unsafe fn InternetWriteFile(hfile: *const core::ffi::c_void, lpbuffer: *const core::ffi::c_void, dwnumberofbytestowrite: u32, lpdwnumberofbyteswritten: *mut u32) -> windows_core::Result<()> { @@ -4243,10 +4240,10 @@ impl Default for HTTP_PUSH_TRANSPORT_SETTING { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HTTP_PUSH_WAIT_HANDLE(pub isize); +pub struct HTTP_PUSH_WAIT_HANDLE(pub *mut core::ffi::c_void); impl HTTP_PUSH_WAIT_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HTTP_PUSH_WAIT_HANDLE { diff --git a/crates/libs/windows/src/Windows/Win32/Networking/WinSock/mod.rs b/crates/libs/windows/src/Windows/Win32/Networking/WinSock/mod.rs index 82933fd984..c9c23abcad 100644 --- a/crates/libs/windows/src/Windows/Win32/Networking/WinSock/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Networking/WinSock/mod.rs @@ -373,12 +373,13 @@ where WPUCompleteOverlappedRequest(s.param().abi(), lpoverlapped, dwerror, cbtransferred, lperrno) } #[inline] -pub unsafe fn WSAAccept(s: P0, addr: Option<*mut SOCKADDR>, addrlen: Option<*mut i32>, lpfncondition: LPCONDITIONPROC, dwcallbackdata: usize) -> SOCKET +pub unsafe fn WSAAccept(s: P0, addr: Option<*mut SOCKADDR>, addrlen: Option<*mut i32>, lpfncondition: LPCONDITIONPROC, dwcallbackdata: usize) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("ws2_32.dll" "system" fn WSAAccept(s : SOCKET, addr : *mut SOCKADDR, addrlen : *mut i32, lpfncondition : LPCONDITIONPROC, dwcallbackdata : usize) -> SOCKET); - WSAAccept(s.param().abi(), core::mem::transmute(addr.unwrap_or(std::ptr::null_mut())), core::mem::transmute(addrlen.unwrap_or(std::ptr::null_mut())), lpfncondition, dwcallbackdata) + let result__ = WSAAccept(s.param().abi(), core::mem::transmute(addr.unwrap_or(std::ptr::null_mut())), core::mem::transmute(addrlen.unwrap_or(std::ptr::null_mut())), lpfncondition, dwcallbackdata); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn WSAAddressToStringA(lpsaaddress: *const SOCKADDR, dwaddresslength: u32, lpprotocolinfo: Option<*const WSAPROTOCOL_INFOA>, lpszaddressstring: windows_core::PSTR, lpdwaddressstringlength: *mut u32) -> i32 { @@ -485,9 +486,9 @@ pub unsafe fn WSACleanup() -> i32 { #[inline] pub unsafe fn WSACloseEvent(hevent: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("ws2_32.dll" "system" fn WSACloseEvent(hevent : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); + windows_targets::link!("ws2_32.dll" "system" fn WSACloseEvent(hevent : WSAEVENT) -> super::super::Foundation:: BOOL); WSACloseEvent(hevent.param().abi()).ok() } #[inline] @@ -530,8 +531,8 @@ where WSAConnectByNameW(s.param().abi(), nodename.param().abi(), servicename.param().abi(), core::mem::transmute(localaddresslength.unwrap_or(std::ptr::null_mut())), core::mem::transmute(localaddress.unwrap_or(std::ptr::null_mut())), core::mem::transmute(remoteaddresslength.unwrap_or(std::ptr::null_mut())), core::mem::transmute(remoteaddress.unwrap_or(std::ptr::null_mut())), core::mem::transmute(timeout.unwrap_or(std::ptr::null())), core::mem::transmute(reserved.unwrap_or(std::ptr::null()))).ok() } #[inline] -pub unsafe fn WSACreateEvent() -> windows_core::Result { - windows_targets::link!("ws2_32.dll" "system" fn WSACreateEvent() -> super::super::Foundation:: HANDLE); +pub unsafe fn WSACreateEvent() -> windows_core::Result { + windows_targets::link!("ws2_32.dll" "system" fn WSACreateEvent() -> WSAEVENT); let result__ = WSACreateEvent(); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } @@ -586,9 +587,9 @@ pub unsafe fn WSAEnumNameSpaceProvidersW(lpdwbufferlength: *mut u32, lpnspbuffer pub unsafe fn WSAEnumNetworkEvents(s: P0, heventobject: P1, lpnetworkevents: *mut WSANETWORKEVENTS) -> i32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("ws2_32.dll" "system" fn WSAEnumNetworkEvents(s : SOCKET, heventobject : super::super::Foundation:: HANDLE, lpnetworkevents : *mut WSANETWORKEVENTS) -> i32); + windows_targets::link!("ws2_32.dll" "system" fn WSAEnumNetworkEvents(s : SOCKET, heventobject : WSAEVENT, lpnetworkevents : *mut WSANETWORKEVENTS) -> i32); WSAEnumNetworkEvents(s.param().abi(), heventobject.param().abi(), lpnetworkevents) } #[inline] @@ -605,9 +606,9 @@ pub unsafe fn WSAEnumProtocolsW(lpiprotocols: Option<*const i32>, lpprotocolbuff pub unsafe fn WSAEventSelect(s: P0, heventobject: P1, lnetworkevents: i32) -> i32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("ws2_32.dll" "system" fn WSAEventSelect(s : SOCKET, heventobject : super::super::Foundation:: HANDLE, lnetworkevents : i32) -> i32); + windows_targets::link!("ws2_32.dll" "system" fn WSAEventSelect(s : SOCKET, heventobject : WSAEVENT, lnetworkevents : i32) -> i32); WSAEventSelect(s.param().abi(), heventobject.param().abi(), lnetworkevents) } #[inline] @@ -702,12 +703,13 @@ pub unsafe fn WSAIsBlocking() -> windows_core::Result<()> { WSAIsBlocking().ok() } #[inline] -pub unsafe fn WSAJoinLeaf(s: P0, name: *const SOCKADDR, namelen: i32, lpcallerdata: Option<*const WSABUF>, lpcalleedata: Option<*mut WSABUF>, lpsqos: Option<*const QOS>, lpgqos: Option<*const QOS>, dwflags: u32) -> SOCKET +pub unsafe fn WSAJoinLeaf(s: P0, name: *const SOCKADDR, namelen: i32, lpcallerdata: Option<*const WSABUF>, lpcalleedata: Option<*mut WSABUF>, lpsqos: Option<*const QOS>, lpgqos: Option<*const QOS>, dwflags: u32) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("ws2_32.dll" "system" fn WSAJoinLeaf(s : SOCKET, name : *const SOCKADDR, namelen : i32, lpcallerdata : *const WSABUF, lpcalleedata : *mut WSABUF, lpsqos : *const QOS, lpgqos : *const QOS, dwflags : u32) -> SOCKET); - WSAJoinLeaf(s.param().abi(), name, namelen, core::mem::transmute(lpcallerdata.unwrap_or(std::ptr::null())), core::mem::transmute(lpcalleedata.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpsqos.unwrap_or(std::ptr::null())), core::mem::transmute(lpgqos.unwrap_or(std::ptr::null())), dwflags) + let result__ = WSAJoinLeaf(s.param().abi(), name, namelen, core::mem::transmute(lpcallerdata.unwrap_or(std::ptr::null())), core::mem::transmute(lpcalleedata.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpsqos.unwrap_or(std::ptr::null())), core::mem::transmute(lpgqos.unwrap_or(std::ptr::null())), dwflags); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[cfg(feature = "Win32_System_Com")] #[inline] @@ -936,14 +938,16 @@ where WSASetSocketSecurity(socket.param().abi(), core::mem::transmute(securitysettings.unwrap_or(std::ptr::null())), securitysettingslen, core::mem::transmute(overlapped.unwrap_or(std::ptr::null())), completionroutine) } #[inline] -pub unsafe fn WSASocketA(af: i32, r#type: i32, protocol: i32, lpprotocolinfo: Option<*const WSAPROTOCOL_INFOA>, g: u32, dwflags: u32) -> SOCKET { +pub unsafe fn WSASocketA(af: i32, r#type: i32, protocol: i32, lpprotocolinfo: Option<*const WSAPROTOCOL_INFOA>, g: u32, dwflags: u32) -> windows_core::Result { windows_targets::link!("ws2_32.dll" "system" fn WSASocketA(af : i32, r#type : i32, protocol : i32, lpprotocolinfo : *const WSAPROTOCOL_INFOA, g : u32, dwflags : u32) -> SOCKET); - WSASocketA(af, r#type, protocol, core::mem::transmute(lpprotocolinfo.unwrap_or(std::ptr::null())), g, dwflags) + let result__ = WSASocketA(af, r#type, protocol, core::mem::transmute(lpprotocolinfo.unwrap_or(std::ptr::null())), g, dwflags); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn WSASocketW(af: i32, r#type: i32, protocol: i32, lpprotocolinfo: Option<*const WSAPROTOCOL_INFOW>, g: u32, dwflags: u32) -> SOCKET { +pub unsafe fn WSASocketW(af: i32, r#type: i32, protocol: i32, lpprotocolinfo: Option<*const WSAPROTOCOL_INFOW>, g: u32, dwflags: u32) -> windows_core::Result { windows_targets::link!("ws2_32.dll" "system" fn WSASocketW(af : i32, r#type : i32, protocol : i32, lpprotocolinfo : *const WSAPROTOCOL_INFOW, g : u32, dwflags : u32) -> SOCKET); - WSASocketW(af, r#type, protocol, core::mem::transmute(lpprotocolinfo.unwrap_or(std::ptr::null())), g, dwflags) + let result__ = WSASocketW(af, r#type, protocol, core::mem::transmute(lpprotocolinfo.unwrap_or(std::ptr::null())), g, dwflags); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn WSAStartup(wversionrequested: u16, lpwsadata: *mut WSADATA) -> i32 { @@ -1207,12 +1211,13 @@ where __WSAFDIsSet(fd.param().abi(), param1) } #[inline] -pub unsafe fn accept(s: P0, addr: Option<*mut SOCKADDR>, addrlen: Option<*mut i32>) -> SOCKET +pub unsafe fn accept(s: P0, addr: Option<*mut SOCKADDR>, addrlen: Option<*mut i32>) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("ws2_32.dll" "system" fn accept(s : SOCKET, addr : *mut SOCKADDR, addrlen : *mut i32) -> SOCKET); - accept(s.param().abi(), core::mem::transmute(addr.unwrap_or(std::ptr::null_mut())), core::mem::transmute(addrlen.unwrap_or(std::ptr::null_mut()))) + let result__ = accept(s.param().abi(), core::mem::transmute(addr.unwrap_or(std::ptr::null_mut())), core::mem::transmute(addrlen.unwrap_or(std::ptr::null_mut()))); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn bind(s: P0, name: *const SOCKADDR, namelen: i32) -> i32 @@ -1448,9 +1453,10 @@ where shutdown(s.param().abi(), how) } #[inline] -pub unsafe fn socket(af: i32, r#type: WINSOCK_SOCKET_TYPE, protocol: i32) -> SOCKET { +pub unsafe fn socket(af: i32, r#type: WINSOCK_SOCKET_TYPE, protocol: i32) -> windows_core::Result { windows_targets::link!("ws2_32.dll" "system" fn socket(af : i32, r#type : WINSOCK_SOCKET_TYPE, protocol : i32) -> SOCKET); - socket(af, r#type, protocol) + let result__ = socket(af, r#type, protocol); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } pub const AAL5_MODE_MESSAGE: u32 = 1u32; pub const AAL5_MODE_STREAMING: u32 = 2u32; @@ -1465,6 +1471,7 @@ pub const ADDRINFOEX_VERSION_3: u32 = 3u32; pub const ADDRINFOEX_VERSION_4: u32 = 4u32; pub const ADDRINFOEX_VERSION_5: u32 = 5u32; pub const ADDRINFOEX_VERSION_6: u32 = 6u32; +pub const ADDR_ANY: u32 = 0u32; pub const AF_12844: u16 = 25u16; pub const AF_APPLETALK: u16 = 16u16; pub const AF_ATM: u16 = 22u16; @@ -1768,6 +1775,8 @@ pub const IGMP_VERSION3_REPORT_TYPE: u32 = 34u32; pub const IMPLINK_HIGHEXPER: u32 = 158u32; pub const IMPLINK_IP: u32 = 155u32; pub const IMPLINK_LOWEXPER: u32 = 156u32; +pub const IN4ADDR_ANY: u32 = 0u32; +pub const IN4ADDR_BROADCAST: u32 = 4294967295u32; pub const IN4ADDR_LINKLOCALPREFIX_LENGTH: u32 = 16u32; pub const IN4ADDR_LOOPBACK: u32 = 16777343u32; pub const IN4ADDR_LOOPBACKPREFIX_LENGTH: u32 = 8u32; @@ -1780,6 +1789,8 @@ pub const IN6ADDR_TEREDOPREFIX_LENGTH: u32 = 32u32; pub const IN6ADDR_V4MAPPEDPREFIX_LENGTH: u32 = 96u32; pub const IN6_EMBEDDEDV4_BITS_IN_BYTE: u32 = 8u32; pub const IN6_EMBEDDEDV4_UOCTET_POSITION: u32 = 8u32; +pub const INADDR_ANY: u32 = 0u32; +pub const INADDR_BROADCAST: u32 = 4294967295u32; pub const INADDR_LOOPBACK: u32 = 2130706433u32; pub const INADDR_NONE: u32 = 4294967295u32; pub const INCL_WINSOCK_API_PROTOTYPES: u32 = 1u32; @@ -2737,8 +2748,10 @@ pub const SO_DISCDATA: i32 = 28674i32; pub const SO_DISCDATALEN: i32 = 28678i32; pub const SO_DISCOPT: i32 = 28675i32; pub const SO_DISCOPTLEN: i32 = 28679i32; +pub const SO_DONTLINGER: i32 = -129i32; pub const SO_DONTROUTE: i32 = 16i32; pub const SO_ERROR: i32 = 4103i32; +pub const SO_EXCLUSIVEADDRUSE: i32 = -5i32; pub const SO_GROUP_ID: i32 = 8193i32; pub const SO_GROUP_PRIORITY: i32 = 8194i32; pub const SO_KEEPALIVE: i32 = 8i32; @@ -2978,6 +2991,7 @@ pub const WSA_FLAG_NO_HANDLE_INHERIT: u32 = 128u32; pub const WSA_FLAG_OVERLAPPED: u32 = 1u32; pub const WSA_FLAG_REGISTERED_IO: u32 = 256u32; pub const WSA_INFINITE: u32 = 4294967295u32; +pub const WSA_INVALID_EVENT: WSAEVENT = WSAEVENT(0i32 as _); pub const WSA_INVALID_HANDLE: WSA_ERROR = WSA_ERROR(6i32); pub const WSA_INVALID_PARAMETER: WSA_ERROR = WSA_ERROR(87i32); pub const WSA_IO_INCOMPLETE: WSA_ERROR = WSA_ERROR(996i32); @@ -7672,6 +7686,19 @@ impl Default for SOCKADDR_VNS { #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct SOCKET(pub usize); +impl SOCKET { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ + } +} +impl windows_core::Free for SOCKET { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = closesocket(*self); + } + } +} impl Default for SOCKET { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -8605,7 +8632,7 @@ impl Default for WSADATA { pub struct WSAEVENT(pub isize); impl WSAEVENT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == 0 } } impl Default for WSAEVENT { @@ -9327,12 +9354,12 @@ pub type LPNSPV2LOOKUPSERVICENEXTEX = Option; pub type LPNSPV2STARTUP = Option i32>; pub type LPSERVICE_CALLBACK_PROC = Option; -pub type LPWPUCLOSEEVENT = Option super::super::Foundation::BOOL>; +pub type LPWPUCLOSEEVENT = Option super::super::Foundation::BOOL>; pub type LPWPUCLOSESOCKETHANDLE = Option i32>; pub type LPWPUCLOSETHREAD = Option i32>; #[cfg(feature = "Win32_System_IO")] pub type LPWPUCOMPLETEOVERLAPPEDREQUEST = Option i32>; -pub type LPWPUCREATEEVENT = Option super::super::Foundation::HANDLE>; +pub type LPWPUCREATEEVENT = Option WSAEVENT>; pub type LPWPUCREATESOCKETHANDLE = Option SOCKET>; pub type LPWPUFDISSET = Option i32>; pub type LPWPUGETPROVIDERPATH = Option i32>; @@ -9342,8 +9369,8 @@ pub type LPWPUPOSTMESSAGE = Option i32>; pub type LPWPUQUERYSOCKETHANDLECONTEXT = Option i32>; pub type LPWPUQUEUEAPC = Option i32>; -pub type LPWPURESETEVENT = Option super::super::Foundation::BOOL>; -pub type LPWPUSETEVENT = Option super::super::Foundation::BOOL>; +pub type LPWPURESETEVENT = Option super::super::Foundation::BOOL>; +pub type LPWPUSETEVENT = Option super::super::Foundation::BOOL>; #[cfg(feature = "Win32_System_IO")] pub type LPWSAOVERLAPPED_COMPLETION_ROUTINE = Option; pub type LPWSAUSERAPC = Option; @@ -9367,7 +9394,7 @@ pub type LPWSPCLOSESOCKET = Option i32>; pub type LPWSPDUPLICATESOCKET = Option i32>; pub type LPWSPENUMNETWORKEVENTS = Option i32>; -pub type LPWSPEVENTSELECT = Option i32>; +pub type LPWSPEVENTSELECT = Option i32>; #[cfg(feature = "Win32_System_IO")] pub type LPWSPGETOVERLAPPEDRESULT = Option super::super::Foundation::BOOL>; pub type LPWSPGETPEERNAME = Option i32>; diff --git a/crates/libs/windows/src/Windows/Win32/Security/Authentication/Identity/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/Authentication/Identity/mod.rs index aa6b53e8a5..dda82d9a22 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/Authentication/Identity/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/Authentication/Identity/mod.rs @@ -71,9 +71,9 @@ pub unsafe fn ApplyControlToken(phcontext: *const super::super::Credentials::Sec #[inline] pub unsafe fn AuditComputeEffectivePolicyBySid(psid: P0, psubcategoryguids: &[windows_core::GUID], ppauditpolicy: *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation::BOOLEAN where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AuditComputeEffectivePolicyBySid(psid : super::super::super::Foundation:: PSID, psubcategoryguids : *const windows_core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); + windows_targets::link!("advapi32.dll" "system" fn AuditComputeEffectivePolicyBySid(psid : super::super:: PSID, psubcategoryguids : *const windows_core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); AuditComputeEffectivePolicyBySid(psid.param().abi(), core::mem::transmute(psubcategoryguids.as_ptr()), psubcategoryguids.len().try_into().unwrap(), ppauditpolicy) } #[inline] @@ -156,9 +156,9 @@ where #[inline] pub unsafe fn AuditQueryPerUserPolicy(psid: P0, psubcategoryguids: &[windows_core::GUID], ppauditpolicy: *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation::BOOLEAN where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AuditQueryPerUserPolicy(psid : super::super::super::Foundation:: PSID, psubcategoryguids : *const windows_core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); + windows_targets::link!("advapi32.dll" "system" fn AuditQueryPerUserPolicy(psid : super::super:: PSID, psubcategoryguids : *const windows_core::GUID, dwpolicycount : u32, ppauditpolicy : *mut *mut AUDIT_POLICY_INFORMATION) -> super::super::super::Foundation:: BOOLEAN); AuditQueryPerUserPolicy(psid.param().abi(), core::mem::transmute(psubcategoryguids.as_ptr()), psubcategoryguids.len().try_into().unwrap(), ppauditpolicy) } #[inline] @@ -190,9 +190,9 @@ where #[inline] pub unsafe fn AuditSetPerUserPolicy(psid: P0, pauditpolicy: &[AUDIT_POLICY_INFORMATION]) -> super::super::super::Foundation::BOOLEAN where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AuditSetPerUserPolicy(psid : super::super::super::Foundation:: PSID, pauditpolicy : *const AUDIT_POLICY_INFORMATION, dwpolicycount : u32) -> super::super::super::Foundation:: BOOLEAN); + windows_targets::link!("advapi32.dll" "system" fn AuditSetPerUserPolicy(psid : super::super:: PSID, pauditpolicy : *const AUDIT_POLICY_INFORMATION, dwpolicycount : u32) -> super::super::super::Foundation:: BOOLEAN); AuditSetPerUserPolicy(psid.param().abi(), core::mem::transmute(pauditpolicy.as_ptr()), pauditpolicy.len().try_into().unwrap()) } #[inline] @@ -403,9 +403,9 @@ pub unsafe fn InitializeSecurityContextW(phcredential: Option<*const super::supe pub unsafe fn LsaAddAccountRights(policyhandle: P0, accountsid: P1, userrights: &[LSA_UNICODE_STRING]) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaAddAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super::super::Foundation:: PSID, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaAddAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super:: PSID, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); LsaAddAccountRights(policyhandle.param().abi(), accountsid.param().abi(), core::mem::transmute(userrights.as_ptr()), userrights.len().try_into().unwrap()) } #[inline] @@ -441,9 +441,9 @@ where pub unsafe fn LsaDeleteTrustedDomain(policyhandle: P0, trusteddomainsid: P1) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaDeleteTrustedDomain(policyhandle : LSA_HANDLE, trusteddomainsid : super::super::super::Foundation:: PSID) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaDeleteTrustedDomain(policyhandle : LSA_HANDLE, trusteddomainsid : super::super:: PSID) -> super::super::super::Foundation:: NTSTATUS); LsaDeleteTrustedDomain(policyhandle.param().abi(), trusteddomainsid.param().abi()) } #[inline] @@ -458,9 +458,9 @@ where pub unsafe fn LsaEnumerateAccountRights(policyhandle: P0, accountsid: P1, userrights: *mut *mut LSA_UNICODE_STRING, countofrights: *mut u32) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaEnumerateAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super::super::Foundation:: PSID, userrights : *mut *mut LSA_UNICODE_STRING, countofrights : *mut u32) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaEnumerateAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super:: PSID, userrights : *mut *mut LSA_UNICODE_STRING, countofrights : *mut u32) -> super::super::super::Foundation:: NTSTATUS); LsaEnumerateAccountRights(policyhandle.param().abi(), accountsid.param().abi(), userrights, countofrights) } #[inline] @@ -503,8 +503,8 @@ pub unsafe fn LsaFreeReturnBuffer(buffer: *const core::ffi::c_void) -> super::su LsaFreeReturnBuffer(buffer) } #[inline] -pub unsafe fn LsaGetAppliedCAPIDs(systemname: Option<*const LSA_UNICODE_STRING>, capids: *mut *mut super::super::super::Foundation::PSID, capidcount: *mut u32) -> super::super::super::Foundation::NTSTATUS { - windows_targets::link!("advapi32.dll" "system" fn LsaGetAppliedCAPIDs(systemname : *const LSA_UNICODE_STRING, capids : *mut *mut super::super::super::Foundation:: PSID, capidcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); +pub unsafe fn LsaGetAppliedCAPIDs(systemname: Option<*const LSA_UNICODE_STRING>, capids: *mut *mut super::super::PSID, capidcount: *mut u32) -> super::super::super::Foundation::NTSTATUS { + windows_targets::link!("advapi32.dll" "system" fn LsaGetAppliedCAPIDs(systemname : *const LSA_UNICODE_STRING, capids : *mut *mut super::super:: PSID, capidcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); LsaGetAppliedCAPIDs(core::mem::transmute(systemname.unwrap_or(std::ptr::null())), capids, capidcount) } #[inline] @@ -545,19 +545,19 @@ where LsaLookupNames2(policyhandle.param().abi(), flags, count, names, referenceddomains, sids) } #[inline] -pub unsafe fn LsaLookupSids(policyhandle: P0, count: u32, sids: *const super::super::super::Foundation::PSID, referenceddomains: *mut *mut LSA_REFERENCED_DOMAIN_LIST, names: *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation::NTSTATUS +pub unsafe fn LsaLookupSids(policyhandle: P0, count: u32, sids: *const super::super::PSID, referenceddomains: *mut *mut LSA_REFERENCED_DOMAIN_LIST, names: *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids(policyhandle : LSA_HANDLE, count : u32, sids : *const super::super::super::Foundation:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids(policyhandle : LSA_HANDLE, count : u32, sids : *const super::super:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); LsaLookupSids(policyhandle.param().abi(), count, sids, referenceddomains, names) } #[inline] -pub unsafe fn LsaLookupSids2(policyhandle: P0, lookupoptions: u32, count: u32, sids: *const super::super::super::Foundation::PSID, referenceddomains: *mut *mut LSA_REFERENCED_DOMAIN_LIST, names: *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation::NTSTATUS +pub unsafe fn LsaLookupSids2(policyhandle: P0, lookupoptions: u32, count: u32, sids: *const super::super::PSID, referenceddomains: *mut *mut LSA_REFERENCED_DOMAIN_LIST, names: *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids2(policyhandle : LSA_HANDLE, lookupoptions : u32, count : u32, sids : *const super::super::super::Foundation:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaLookupSids2(policyhandle : LSA_HANDLE, lookupoptions : u32, count : u32, sids : *const super::super:: PSID, referenceddomains : *mut *mut LSA_REFERENCED_DOMAIN_LIST, names : *mut *mut LSA_TRANSLATED_NAME) -> super::super::super::Foundation:: NTSTATUS); LsaLookupSids2(policyhandle.param().abi(), lookupoptions, count, sids, referenceddomains, names) } #[inline] @@ -582,8 +582,8 @@ where LsaOpenTrustedDomainByName(policyhandle.param().abi(), trusteddomainname, desiredaccess, trusteddomainhandle) } #[inline] -pub unsafe fn LsaQueryCAPs(capids: Option<&[super::super::super::Foundation::PSID]>, caps: *mut *mut CENTRAL_ACCESS_POLICY, capcount: *mut u32) -> super::super::super::Foundation::NTSTATUS { - windows_targets::link!("advapi32.dll" "system" fn LsaQueryCAPs(capids : *const super::super::super::Foundation:: PSID, capidcount : u32, caps : *mut *mut CENTRAL_ACCESS_POLICY, capcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); +pub unsafe fn LsaQueryCAPs(capids: Option<&[super::super::PSID]>, caps: *mut *mut CENTRAL_ACCESS_POLICY, capcount: *mut u32) -> super::super::super::Foundation::NTSTATUS { + windows_targets::link!("advapi32.dll" "system" fn LsaQueryCAPs(capids : *const super::super:: PSID, capidcount : u32, caps : *mut *mut CENTRAL_ACCESS_POLICY, capcount : *mut u32) -> super::super::super::Foundation:: NTSTATUS); LsaQueryCAPs(core::mem::transmute(capids.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), capids.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), caps, capcount) } #[inline] @@ -622,9 +622,9 @@ where pub unsafe fn LsaQueryTrustedDomainInfo(policyhandle: P0, trusteddomainsid: P1, informationclass: TRUSTED_INFORMATION_CLASS, buffer: *mut *mut core::ffi::c_void) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaQueryTrustedDomainInfo(policyhandle : LSA_HANDLE, trusteddomainsid : super::super::super::Foundation:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *mut *mut core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaQueryTrustedDomainInfo(policyhandle : LSA_HANDLE, trusteddomainsid : super::super:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *mut *mut core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); LsaQueryTrustedDomainInfo(policyhandle.param().abi(), trusteddomainsid.param().abi(), informationclass, buffer) } #[inline] @@ -652,10 +652,10 @@ where pub unsafe fn LsaRemoveAccountRights(policyhandle: P0, accountsid: P1, allrights: P2, userrights: Option<&[LSA_UNICODE_STRING]>) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaRemoveAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super::super::Foundation:: PSID, allrights : super::super::super::Foundation:: BOOLEAN, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaRemoveAccountRights(policyhandle : LSA_HANDLE, accountsid : super::super:: PSID, allrights : super::super::super::Foundation:: BOOLEAN, userrights : *const LSA_UNICODE_STRING, countofrights : u32) -> super::super::super::Foundation:: NTSTATUS); LsaRemoveAccountRights(policyhandle.param().abi(), accountsid.param().abi(), allrights.param().abi(), core::mem::transmute(userrights.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), userrights.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } #[inline] @@ -717,9 +717,9 @@ where pub unsafe fn LsaSetTrustedDomainInformation(policyhandle: P0, trusteddomainsid: P1, informationclass: TRUSTED_INFORMATION_CLASS, buffer: *const core::ffi::c_void) -> super::super::super::Foundation::NTSTATUS where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LsaSetTrustedDomainInformation(policyhandle : LSA_HANDLE, trusteddomainsid : super::super::super::Foundation:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); + windows_targets::link!("advapi32.dll" "system" fn LsaSetTrustedDomainInformation(policyhandle : LSA_HANDLE, trusteddomainsid : super::super:: PSID, informationclass : TRUSTED_INFORMATION_CLASS, buffer : *const core::ffi::c_void) -> super::super::super::Foundation:: NTSTATUS); LsaSetTrustedDomainInformation(policyhandle.param().abi(), trusteddomainsid.param().abi(), informationclass, buffer) } #[inline] @@ -4728,7 +4728,7 @@ impl Default for AUDIT_POLICY_INFORMATION { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct CENTRAL_ACCESS_POLICY { - pub CAPID: super::super::super::Foundation::PSID, + pub CAPID: super::super::PSID, pub Name: LSA_UNICODE_STRING, pub Description: LSA_UNICODE_STRING, pub ChangeId: LSA_UNICODE_STRING, @@ -6082,7 +6082,7 @@ impl Default for LSA_DISPATCH_TABLE { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LSA_ENUMERATION_INFORMATION { - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } impl windows_core::TypeKind for LSA_ENUMERATION_INFORMATION { type TypeKind = windows_core::CopyType; @@ -6139,7 +6139,7 @@ impl Default for LSA_FOREST_TRUST_COLLISION_RECORD { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LSA_FOREST_TRUST_DOMAIN_INFO { - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub DnsName: LSA_UNICODE_STRING, pub NetbiosName: LSA_UNICODE_STRING, } @@ -6245,7 +6245,7 @@ impl Default for LSA_FOREST_TRUST_RECORD2_0 { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LSA_FOREST_TRUST_SCANNER_INFO { - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, pub DnsName: LSA_UNICODE_STRING, pub NetbiosName: LSA_UNICODE_STRING, } @@ -6266,6 +6266,7 @@ impl LSA_HANDLE { } } impl windows_core::Free for LSA_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = LsaClose(*self); @@ -6510,7 +6511,7 @@ impl Default for LSA_TRANSLATED_SID { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LSA_TRANSLATED_SID2 { pub Use: super::super::SID_NAME_USE, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub DomainIndex: i32, pub Flags: u32, } @@ -6526,7 +6527,7 @@ impl Default for LSA_TRANSLATED_SID2 { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct LSA_TRUST_INFORMATION { pub Name: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } impl windows_core::TypeKind for LSA_TRUST_INFORMATION { type TypeKind = windows_core::CopyType; @@ -7125,7 +7126,7 @@ impl Default for PKU2U_CREDUI_CONTEXT { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct POLICY_ACCOUNT_DOMAIN_INFO { pub DomainName: LSA_UNICODE_STRING, - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, } impl windows_core::TypeKind for POLICY_ACCOUNT_DOMAIN_INFO { type TypeKind = windows_core::CopyType; @@ -7213,7 +7214,7 @@ impl Default for POLICY_AUDIT_LOG_INFO { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct POLICY_AUDIT_SID_ARRAY { pub UsersCount: u32, - pub UserSidArray: *mut super::super::super::Foundation::PSID, + pub UserSidArray: *mut super::super::PSID, } impl windows_core::TypeKind for POLICY_AUDIT_SID_ARRAY { type TypeKind = windows_core::CopyType; @@ -7257,7 +7258,7 @@ pub struct POLICY_DNS_DOMAIN_INFO { pub DnsDomainName: LSA_UNICODE_STRING, pub DnsForestName: LSA_UNICODE_STRING, pub DomainGuid: windows_core::GUID, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } impl windows_core::TypeKind for POLICY_DNS_DOMAIN_INFO { type TypeKind = windows_core::CopyType; @@ -7316,7 +7317,7 @@ impl Default for POLICY_LSA_SERVER_ROLE_INFO { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct POLICY_MACHINE_ACCT_INFO { pub Rid: u32, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } impl windows_core::TypeKind for POLICY_MACHINE_ACCT_INFO { type TypeKind = windows_core::CopyType; @@ -7330,7 +7331,7 @@ impl Default for POLICY_MACHINE_ACCT_INFO { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct POLICY_MACHINE_ACCT_INFO2 { pub Rid: u32, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub ObjectGuid: windows_core::GUID, } impl windows_core::TypeKind for POLICY_MACHINE_ACCT_INFO2 { @@ -7372,7 +7373,7 @@ impl Default for POLICY_PD_ACCOUNT_INFO { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct POLICY_PRIMARY_DOMAIN_INFO { pub Name: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, } impl windows_core::TypeKind for POLICY_PRIMARY_DOMAIN_INFO { type TypeKind = windows_core::CopyType; @@ -8136,7 +8137,7 @@ pub struct SECPKG_PARAMETERS { pub Version: u32, pub MachineState: u32, pub SetupMode: u32, - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, pub DomainName: LSA_UNICODE_STRING, pub DnsDomainName: LSA_UNICODE_STRING, pub DomainGuid: windows_core::GUID, @@ -8172,7 +8173,7 @@ pub struct SECPKG_PRIMARY_CRED { pub DomainName: LSA_UNICODE_STRING, pub Password: LSA_UNICODE_STRING, pub OldPassword: LSA_UNICODE_STRING, - pub UserSid: super::super::super::Foundation::PSID, + pub UserSid: super::super::PSID, pub Flags: u32, pub DnsDomainName: LSA_UNICODE_STRING, pub Upn: LSA_UNICODE_STRING, @@ -8198,7 +8199,7 @@ pub struct SECPKG_PRIMARY_CRED_EX { pub DomainName: LSA_UNICODE_STRING, pub Password: LSA_UNICODE_STRING, pub OldPassword: LSA_UNICODE_STRING, - pub UserSid: super::super::super::Foundation::PSID, + pub UserSid: super::super::PSID, pub Flags: u32, pub DnsDomainName: LSA_UNICODE_STRING, pub Upn: LSA_UNICODE_STRING, @@ -8348,7 +8349,7 @@ impl Default for SECPKG_SURROGATE_LOGON_ENTRY { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct SECPKG_TARGETINFO { - pub DomainSid: super::super::super::Foundation::PSID, + pub DomainSid: super::super::PSID, pub ComputerName: windows_core::PCWSTR, } impl windows_core::TypeKind for SECPKG_TARGETINFO { @@ -8409,7 +8410,7 @@ pub struct SECURITY_LOGON_SESSION_DATA { pub AuthenticationPackage: LSA_UNICODE_STRING, pub LogonType: u32, pub Session: u32, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub LogonTime: i64, pub LogonServer: LSA_UNICODE_STRING, pub DnsDomainName: LSA_UNICODE_STRING, @@ -8472,7 +8473,7 @@ pub struct SECURITY_USER_DATA { pub UserName: SECURITY_STRING, pub LogonDomainName: SECURITY_STRING, pub LogonServer: SECURITY_STRING, - pub pSid: super::super::super::Foundation::PSID, + pub pSid: super::super::PSID, } impl windows_core::TypeKind for SECURITY_USER_DATA { type TypeKind = windows_core::CopyType; @@ -10530,7 +10531,7 @@ impl Default for TRUSTED_DOMAIN_FULL_INFORMATION2 { pub struct TRUSTED_DOMAIN_INFORMATION_EX { pub Name: LSA_UNICODE_STRING, pub FlatName: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub TrustDirection: TRUSTED_DOMAIN_TRUST_DIRECTION, pub TrustType: TRUSTED_DOMAIN_TRUST_TYPE, pub TrustAttributes: TRUSTED_DOMAIN_TRUST_ATTRIBUTES, @@ -10548,7 +10549,7 @@ impl Default for TRUSTED_DOMAIN_INFORMATION_EX { pub struct TRUSTED_DOMAIN_INFORMATION_EX2 { pub Name: LSA_UNICODE_STRING, pub FlatName: LSA_UNICODE_STRING, - pub Sid: super::super::super::Foundation::PSID, + pub Sid: super::super::PSID, pub TrustDirection: u32, pub TrustType: u32, pub TrustAttributes: u32, @@ -10848,8 +10849,8 @@ pub type PLSA_AP_POST_LOGON_USER_SURROGATE = Option< >; pub type PLSA_AP_PRE_LOGON_USER_SURROGATE = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_AUDIT_ACCOUNT_LOGON = Option super::super::super::Foundation::NTSTATUS>; -pub type PLSA_AUDIT_LOGON = Option; -pub type PLSA_AUDIT_LOGON_EX = Option; +pub type PLSA_AUDIT_LOGON = Option; +pub type PLSA_AUDIT_LOGON_EX = Option; pub type PLSA_CALLBACK_FUNCTION = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_CALL_PACKAGE = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_CALL_PACKAGEEX = Option super::super::super::Foundation::NTSTATUS>; @@ -10897,7 +10898,7 @@ pub type PLSA_QUERY_CLIENT_REQUEST = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REDIRECTED_LOGON_CLEANUP_CALLBACK = Option; pub type PLSA_REDIRECTED_LOGON_GET_LOGON_CREDS = Option super::super::super::Foundation::NTSTATUS>; -pub type PLSA_REDIRECTED_LOGON_GET_SID = Option super::super::super::Foundation::NTSTATUS>; +pub type PLSA_REDIRECTED_LOGON_GET_SID = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REDIRECTED_LOGON_GET_SUPP_CREDS = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REDIRECTED_LOGON_INIT = Option super::super::super::Foundation::NTSTATUS>; pub type PLSA_REGISTER_CALLBACK = Option super::super::super::Foundation::NTSTATUS>; diff --git a/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/impl.rs b/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/impl.rs index ebdca6a3a4..fe836484cf 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/impl.rs @@ -1,5 +1,5 @@ pub trait IEffectivePermission_Impl: Sized { - fn GetEffectivePermission(&self, pguidobjecttype: *const windows_core::GUID, pusersid: super::super::super::Foundation::PSID, pszservername: &windows_core::PCWSTR, psd: super::super::PSECURITY_DESCRIPTOR, ppobjecttypelist: *mut *mut super::super::OBJECT_TYPE_LIST, pcobjecttypelistlength: *mut u32, ppgrantedaccesslist: *mut *mut u32, pcgrantedaccesslistlength: *mut u32) -> windows_core::Result<()>; + fn GetEffectivePermission(&self, pguidobjecttype: *const windows_core::GUID, pusersid: super::super::PSID, pszservername: &windows_core::PCWSTR, psd: super::super::PSECURITY_DESCRIPTOR, ppobjecttypelist: *mut *mut super::super::OBJECT_TYPE_LIST, pcobjecttypelistlength: *mut u32, ppgrantedaccesslist: *mut *mut u32, pcgrantedaccesslistlength: *mut u32) -> windows_core::Result<()>; } impl windows_core::RuntimeName for IEffectivePermission {} impl IEffectivePermission_Vtbl { @@ -7,7 +7,7 @@ impl IEffectivePermission_Vtbl { where Identity: IEffectivePermission_Impl, { - unsafe extern "system" fn GetEffectivePermission(this: *mut core::ffi::c_void, pguidobjecttype: *const windows_core::GUID, pusersid: super::super::super::Foundation::PSID, pszservername: windows_core::PCWSTR, psd: super::super::PSECURITY_DESCRIPTOR, ppobjecttypelist: *mut *mut super::super::OBJECT_TYPE_LIST, pcobjecttypelistlength: *mut u32, ppgrantedaccesslist: *mut *mut u32, pcgrantedaccesslistlength: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetEffectivePermission(this: *mut core::ffi::c_void, pguidobjecttype: *const windows_core::GUID, pusersid: super::super::PSID, pszservername: windows_core::PCWSTR, psd: super::super::PSECURITY_DESCRIPTOR, ppobjecttypelist: *mut *mut super::super::OBJECT_TYPE_LIST, pcobjecttypelistlength: *mut u32, ppgrantedaccesslist: *mut *mut u32, pcgrantedaccesslistlength: *mut u32) -> windows_core::HRESULT where Identity: IEffectivePermission_Impl, { @@ -23,8 +23,8 @@ impl IEffectivePermission_Vtbl { pub trait IEffectivePermission2_Impl: Sized { fn ComputeEffectivePermissionWithSecondarySecurity( &self, - psid: super::super::super::Foundation::PSID, - pdevicesid: super::super::super::Foundation::PSID, + psid: super::super::PSID, + pdevicesid: super::super::PSID, pszservername: &windows_core::PCWSTR, psecurityobjects: *mut SECURITY_OBJECT, dwsecurityobjectcount: u32, @@ -47,8 +47,8 @@ impl IEffectivePermission2_Vtbl { { unsafe extern "system" fn ComputeEffectivePermissionWithSecondarySecurity( this: *mut core::ffi::c_void, - psid: super::super::super::Foundation::PSID, - pdevicesid: super::super::super::Foundation::PSID, + psid: super::super::PSID, + pdevicesid: super::super::PSID, pszservername: windows_core::PCWSTR, psecurityobjects: *mut SECURITY_OBJECT, dwsecurityobjectcount: u32, @@ -179,7 +179,7 @@ impl ISecurityInformation_Vtbl { #[cfg(feature = "Win32_System_Com")] pub trait ISecurityInformation2_Impl: Sized { fn IsDaclCanonical(&self, pdacl: *const super::super::ACL) -> super::super::super::Foundation::BOOL; - fn LookupSids(&self, csids: u32, rgpsids: *const super::super::super::Foundation::PSID) -> windows_core::Result; + fn LookupSids(&self, csids: u32, rgpsids: *const super::super::PSID) -> windows_core::Result; } #[cfg(feature = "Win32_System_Com")] impl windows_core::RuntimeName for ISecurityInformation2 {} @@ -196,7 +196,7 @@ impl ISecurityInformation2_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ISecurityInformation2_Impl::IsDaclCanonical(this, core::mem::transmute_copy(&pdacl)) } - unsafe extern "system" fn LookupSids(this: *mut core::ffi::c_void, csids: u32, rgpsids: *const super::super::super::Foundation::PSID, ppdo: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn LookupSids(this: *mut core::ffi::c_void, csids: u32, rgpsids: *const super::super::PSID, ppdo: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: ISecurityInformation2_Impl, { diff --git a/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/mod.rs index f8104bc447..5ee2d63856 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/Authorization/UI/mod.rs @@ -37,7 +37,7 @@ windows_core::imp::interface_hierarchy!(IEffectivePermission, windows_core::IUnk impl IEffectivePermission { pub unsafe fn GetEffectivePermission(&self, pguidobjecttype: *const windows_core::GUID, pusersid: P0, pszservername: P1, psd: P2, ppobjecttypelist: *mut *mut super::super::OBJECT_TYPE_LIST, pcobjecttypelistlength: *mut u32, ppgrantedaccesslist: *mut *mut u32, pcgrantedaccesslistlength: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { @@ -47,7 +47,7 @@ impl IEffectivePermission { #[repr(C)] pub struct IEffectivePermission_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - pub GetEffectivePermission: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, super::super::super::Foundation::PSID, windows_core::PCWSTR, super::super::PSECURITY_DESCRIPTOR, *mut *mut super::super::OBJECT_TYPE_LIST, *mut u32, *mut *mut u32, *mut u32) -> windows_core::HRESULT, + pub GetEffectivePermission: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, super::super::PSID, windows_core::PCWSTR, super::super::PSECURITY_DESCRIPTOR, *mut *mut super::super::OBJECT_TYPE_LIST, *mut u32, *mut *mut u32, *mut u32) -> windows_core::HRESULT, } windows_core::imp::define_interface!(IEffectivePermission2, IEffectivePermission2_Vtbl, 0x941fabca_dd47_4fca_90bb_b0e10255f20d); impl core::ops::Deref for IEffectivePermission2 { @@ -76,8 +76,8 @@ impl IEffectivePermission2 { peffpermresultlists: *mut EFFPERM_RESULT_LIST, ) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).ComputeEffectivePermissionWithSecondarySecurity)( @@ -103,7 +103,7 @@ impl IEffectivePermission2 { #[repr(C)] pub struct IEffectivePermission2_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - pub ComputeEffectivePermissionWithSecondarySecurity: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::PSID, super::super::super::Foundation::PSID, windows_core::PCWSTR, *mut SECURITY_OBJECT, u32, *const super::super::TOKEN_GROUPS, *const super::AUTHZ_SID_OPERATION, *const super::super::TOKEN_GROUPS, *const super::AUTHZ_SID_OPERATION, *const super::AUTHZ_SECURITY_ATTRIBUTES_INFORMATION, *const super::AUTHZ_SECURITY_ATTRIBUTE_OPERATION, *const super::AUTHZ_SECURITY_ATTRIBUTES_INFORMATION, *const super::AUTHZ_SECURITY_ATTRIBUTE_OPERATION, *mut EFFPERM_RESULT_LIST) -> windows_core::HRESULT, + pub ComputeEffectivePermissionWithSecondarySecurity: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::PSID, super::super::PSID, windows_core::PCWSTR, *mut SECURITY_OBJECT, u32, *const super::super::TOKEN_GROUPS, *const super::AUTHZ_SID_OPERATION, *const super::super::TOKEN_GROUPS, *const super::AUTHZ_SID_OPERATION, *const super::AUTHZ_SECURITY_ATTRIBUTES_INFORMATION, *const super::AUTHZ_SECURITY_ATTRIBUTE_OPERATION, *const super::AUTHZ_SECURITY_ATTRIBUTES_INFORMATION, *const super::AUTHZ_SECURITY_ATTRIBUTE_OPERATION, *mut EFFPERM_RESULT_LIST) -> windows_core::HRESULT, } windows_core::imp::define_interface!(ISecurityInformation, ISecurityInformation_Vtbl, 0x965fc360_16ff_11d0_91cb_00aa00bbb723); impl core::ops::Deref for ISecurityInformation { @@ -173,7 +173,7 @@ impl ISecurityInformation2 { (windows_core::Interface::vtable(self).IsDaclCanonical)(windows_core::Interface::as_raw(self), pdacl) } #[cfg(feature = "Win32_System_Com")] - pub unsafe fn LookupSids(&self, csids: u32, rgpsids: *const super::super::super::Foundation::PSID) -> windows_core::Result { + pub unsafe fn LookupSids(&self, csids: u32, rgpsids: *const super::super::PSID) -> windows_core::Result { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).LookupSids)(windows_core::Interface::as_raw(self), csids, rgpsids, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } @@ -183,7 +183,7 @@ pub struct ISecurityInformation2_Vtbl { pub base__: windows_core::IUnknown_Vtbl, pub IsDaclCanonical: unsafe extern "system" fn(*mut core::ffi::c_void, *const super::super::ACL) -> super::super::super::Foundation::BOOL, #[cfg(feature = "Win32_System_Com")] - pub LookupSids: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *const super::super::super::Foundation::PSID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + pub LookupSids: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *const super::super::PSID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, #[cfg(not(feature = "Win32_System_Com"))] LookupSids: usize, } @@ -456,7 +456,7 @@ impl Default for SECURITY_OBJECT { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct SID_INFO { - pub pSid: super::super::super::Foundation::PSID, + pub pSid: super::super::PSID, pub pwzCommonName: windows_core::PWSTR, pub pwzClass: windows_core::PWSTR, pub pwzUPN: windows_core::PWSTR, diff --git a/crates/libs/windows/src/Windows/Win32/Security/Authorization/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/Authorization/mod.rs index 5e977f6e06..814a2a4427 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/Authorization/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/Authorization/mod.rs @@ -63,12 +63,9 @@ where AuthzFreeContext(hauthzclientcontext.param().abi()).ok() } #[inline] -pub unsafe fn AuthzFreeHandle(haccesscheckresults: P0) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn AuthzFreeHandle(haccesscheckresults: AUTHZ_ACCESS_CHECK_RESULTS_HANDLE) -> windows_core::Result<()> { windows_targets::link!("authz.dll" "system" fn AuthzFreeHandle(haccesscheckresults : AUTHZ_ACCESS_CHECK_RESULTS_HANDLE) -> super::super::Foundation:: BOOL); - AuthzFreeHandle(haccesscheckresults.param().abi()).ok() + AuthzFreeHandle(haccesscheckresults).ok() } #[inline] pub unsafe fn AuthzFreeResourceManager(hauthzresourcemanager: P0) -> windows_core::Result<()> @@ -106,10 +103,10 @@ where #[inline] pub unsafe fn AuthzInitializeContextFromSid(flags: u32, usersid: P0, hauthzresourcemanager: P1, pexpirationtime: Option<*const i64>, identifier: super::super::Foundation::LUID, dynamicgroupargs: Option<*const core::ffi::c_void>, phauthzclientcontext: *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("authz.dll" "system" fn AuthzInitializeContextFromSid(flags : u32, usersid : super::super::Foundation:: PSID, hauthzresourcemanager : AUTHZ_RESOURCE_MANAGER_HANDLE, pexpirationtime : *const i64, identifier : super::super::Foundation:: LUID, dynamicgroupargs : *const core::ffi::c_void, phauthzclientcontext : *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> super::super::Foundation:: BOOL); + windows_targets::link!("authz.dll" "system" fn AuthzInitializeContextFromSid(flags : u32, usersid : super:: PSID, hauthzresourcemanager : AUTHZ_RESOURCE_MANAGER_HANDLE, pexpirationtime : *const i64, identifier : super::super::Foundation:: LUID, dynamicgroupargs : *const core::ffi::c_void, phauthzclientcontext : *mut AUTHZ_CLIENT_CONTEXT_HANDLE) -> super::super::Foundation:: BOOL); AuthzInitializeContextFromSid(flags, usersid.param().abi(), hauthzresourcemanager.param().abi(), core::mem::transmute(pexpirationtime.unwrap_or(std::ptr::null())), core::mem::transmute(identifier), core::mem::transmute(dynamicgroupargs.unwrap_or(std::ptr::null())), phauthzclientcontext).ok() } #[inline] @@ -218,30 +215,28 @@ where AuthzRegisterSecurityEventSource(dwflags, szeventsourcename.param().abi(), pheventprovider).ok() } #[inline] -pub unsafe fn AuthzReportSecurityEvent(dwflags: u32, heventprovider: P0, dwauditid: u32, pusersid: P1, dwcount: u32) -> windows_core::Result<()> +pub unsafe fn AuthzReportSecurityEvent(dwflags: u32, heventprovider: AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid: u32, pusersid: P0, dwcount: u32) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("authz.dll" "cdecl" fn AuthzReportSecurityEvent(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super::super::Foundation:: PSID, dwcount : u32) -> super::super::Foundation:: BOOL); - AuthzReportSecurityEvent(dwflags, heventprovider.param().abi(), dwauditid, pusersid.param().abi(), dwcount).ok() + windows_targets::link!("authz.dll" "cdecl" fn AuthzReportSecurityEvent(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super:: PSID, dwcount : u32) -> super::super::Foundation:: BOOL); + AuthzReportSecurityEvent(dwflags, heventprovider, dwauditid, pusersid.param().abi(), dwcount).ok() } #[inline] -pub unsafe fn AuthzReportSecurityEventFromParams(dwflags: u32, heventprovider: P0, dwauditid: u32, pusersid: P1, pparams: *const AUDIT_PARAMS) -> windows_core::Result<()> +pub unsafe fn AuthzReportSecurityEventFromParams(dwflags: u32, heventprovider: AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid: u32, pusersid: P0, pparams: *const AUDIT_PARAMS) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("authz.dll" "system" fn AuthzReportSecurityEventFromParams(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super::super::Foundation:: PSID, pparams : *const AUDIT_PARAMS) -> super::super::Foundation:: BOOL); - AuthzReportSecurityEventFromParams(dwflags, heventprovider.param().abi(), dwauditid, pusersid.param().abi(), pparams).ok() + windows_targets::link!("authz.dll" "system" fn AuthzReportSecurityEventFromParams(dwflags : u32, heventprovider : AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE, dwauditid : u32, pusersid : super:: PSID, pparams : *const AUDIT_PARAMS) -> super::super::Foundation:: BOOL); + AuthzReportSecurityEventFromParams(dwflags, heventprovider, dwauditid, pusersid.param().abi(), pparams).ok() } #[inline] pub unsafe fn AuthzSetAppContainerInformation(hauthzclientcontext: P0, pappcontainersid: P1, pcapabilitysids: Option<&[super::SID_AND_ATTRIBUTES]>) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("authz.dll" "system" fn AuthzSetAppContainerInformation(hauthzclientcontext : AUTHZ_CLIENT_CONTEXT_HANDLE, pappcontainersid : super::super::Foundation:: PSID, capabilitycount : u32, pcapabilitysids : *const super:: SID_AND_ATTRIBUTES) -> super::super::Foundation:: BOOL); + windows_targets::link!("authz.dll" "system" fn AuthzSetAppContainerInformation(hauthzclientcontext : AUTHZ_CLIENT_CONTEXT_HANDLE, pappcontainersid : super:: PSID, capabilitycount : u32, pcapabilitysids : *const super:: SID_AND_ATTRIBUTES) -> super::super::Foundation:: BOOL); AuthzSetAppContainerInformation(hauthzclientcontext.param().abi(), pappcontainersid.param().abi(), pcapabilitysids.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(pcapabilitysids.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))).ok() } #[inline] @@ -382,33 +377,33 @@ where #[inline] pub unsafe fn BuildTrusteeWithObjectsAndSidA(ptrustee: *mut TRUSTEE_A, pobjsid: Option<*const OBJECTS_AND_SID>, pobjectguid: Option<*const windows_core::GUID>, pinheritedobjectguid: Option<*const windows_core::GUID>, psid: P0) where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidA(ptrustee : *mut TRUSTEE_A, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_core::GUID, pinheritedobjectguid : *const windows_core::GUID, psid : super::super::Foundation:: PSID)); + windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidA(ptrustee : *mut TRUSTEE_A, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_core::GUID, pinheritedobjectguid : *const windows_core::GUID, psid : super:: PSID)); BuildTrusteeWithObjectsAndSidA(ptrustee, core::mem::transmute(pobjsid.unwrap_or(std::ptr::null())), core::mem::transmute(pobjectguid.unwrap_or(std::ptr::null())), core::mem::transmute(pinheritedobjectguid.unwrap_or(std::ptr::null())), psid.param().abi()) } #[inline] pub unsafe fn BuildTrusteeWithObjectsAndSidW(ptrustee: *mut TRUSTEE_W, pobjsid: Option<*const OBJECTS_AND_SID>, pobjectguid: Option<*const windows_core::GUID>, pinheritedobjectguid: Option<*const windows_core::GUID>, psid: P0) where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidW(ptrustee : *mut TRUSTEE_W, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_core::GUID, pinheritedobjectguid : *const windows_core::GUID, psid : super::super::Foundation:: PSID)); + windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithObjectsAndSidW(ptrustee : *mut TRUSTEE_W, pobjsid : *const OBJECTS_AND_SID, pobjectguid : *const windows_core::GUID, pinheritedobjectguid : *const windows_core::GUID, psid : super:: PSID)); BuildTrusteeWithObjectsAndSidW(ptrustee, core::mem::transmute(pobjsid.unwrap_or(std::ptr::null())), core::mem::transmute(pobjectguid.unwrap_or(std::ptr::null())), core::mem::transmute(pinheritedobjectguid.unwrap_or(std::ptr::null())), psid.param().abi()) } #[inline] pub unsafe fn BuildTrusteeWithSidA(ptrustee: *mut TRUSTEE_A, psid: P0) where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidA(ptrustee : *mut TRUSTEE_A, psid : super::super::Foundation:: PSID)); + windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidA(ptrustee : *mut TRUSTEE_A, psid : super:: PSID)); BuildTrusteeWithSidA(ptrustee, psid.param().abi()) } #[inline] pub unsafe fn BuildTrusteeWithSidW(ptrustee: *mut TRUSTEE_W, psid: P0) where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidW(ptrustee : *mut TRUSTEE_W, psid : super::super::Foundation:: PSID)); + windows_targets::link!("advapi32.dll" "system" fn BuildTrusteeWithSidW(ptrustee : *mut TRUSTEE_W, psid : super:: PSID)); BuildTrusteeWithSidW(ptrustee, psid.param().abi()) } #[inline] @@ -430,17 +425,17 @@ where #[inline] pub unsafe fn ConvertSidToStringSidA(sid: P0, stringsid: *mut windows_core::PSTR) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidA(sid : super::super::Foundation:: PSID, stringsid : *mut windows_core::PSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidA(sid : super:: PSID, stringsid : *mut windows_core::PSTR) -> super::super::Foundation:: BOOL); ConvertSidToStringSidA(sid.param().abi(), stringsid).ok() } #[inline] pub unsafe fn ConvertSidToStringSidW(sid: P0, stringsid: *mut windows_core::PWSTR) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidW(sid : super::super::Foundation:: PSID, stringsid : *mut windows_core::PWSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ConvertSidToStringSidW(sid : super:: PSID, stringsid : *mut windows_core::PWSTR) -> super::super::Foundation:: BOOL); ConvertSidToStringSidW(sid.param().abi(), stringsid).ok() } #[inline] @@ -460,19 +455,19 @@ where ConvertStringSecurityDescriptorToSecurityDescriptorW(stringsecuritydescriptor.param().abi(), stringsdrevision, securitydescriptor, core::mem::transmute(securitydescriptorsize.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] -pub unsafe fn ConvertStringSidToSidA(stringsid: P0, sid: *mut super::super::Foundation::PSID) -> windows_core::Result<()> +pub unsafe fn ConvertStringSidToSidA(stringsid: P0, sid: *mut super::PSID) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidA(stringsid : windows_core::PCSTR, sid : *mut super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidA(stringsid : windows_core::PCSTR, sid : *mut super:: PSID) -> super::super::Foundation:: BOOL); ConvertStringSidToSidA(stringsid.param().abi(), sid).ok() } #[inline] -pub unsafe fn ConvertStringSidToSidW(stringsid: P0, sid: *mut super::super::Foundation::PSID) -> windows_core::Result<()> +pub unsafe fn ConvertStringSidToSidW(stringsid: P0, sid: *mut super::PSID) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidW(stringsid : windows_core::PCWSTR, sid : *mut super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ConvertStringSidToSidW(stringsid : windows_core::PCWSTR, sid : *mut super:: PSID) -> super::super::Foundation:: BOOL); ConvertStringSidToSidW(stringsid.param().abi(), sid).ok() } #[inline] @@ -549,27 +544,27 @@ pub unsafe fn GetMultipleTrusteeW(ptrustee: Option<*const TRUSTEE_W>) -> *mut TR GetMultipleTrusteeW(core::mem::transmute(ptrustee.unwrap_or(std::ptr::null()))) } #[inline] -pub unsafe fn GetNamedSecurityInfoA(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, ppsidowner: Option<*mut super::super::Foundation::PSID>, ppsidgroup: Option<*mut super::super::Foundation::PSID>, ppdacl: Option<*mut *mut super::ACL>, ppsacl: Option<*mut *mut super::ACL>, ppsecuritydescriptor: *mut super::PSECURITY_DESCRIPTOR) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn GetNamedSecurityInfoA(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, ppsidowner: Option<*mut super::PSID>, ppsidgroup: Option<*mut super::PSID>, ppdacl: Option<*mut *mut super::ACL>, ppsacl: Option<*mut *mut super::ACL>, ppsecuritydescriptor: *mut super::PSECURITY_DESCRIPTOR) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super::super::Foundation:: PSID, ppsidgroup : *mut super::super::Foundation:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super:: PSID, ppsidgroup : *mut super:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); GetNamedSecurityInfoA(pobjectname.param().abi(), objecttype, securityinfo, core::mem::transmute(ppsidowner.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppsidgroup.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppdacl.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppsacl.unwrap_or(std::ptr::null_mut())), ppsecuritydescriptor) } #[inline] -pub unsafe fn GetNamedSecurityInfoW(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, ppsidowner: Option<*mut super::super::Foundation::PSID>, ppsidgroup: Option<*mut super::super::Foundation::PSID>, ppdacl: Option<*mut *mut super::ACL>, ppsacl: Option<*mut *mut super::ACL>, ppsecuritydescriptor: *mut super::PSECURITY_DESCRIPTOR) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn GetNamedSecurityInfoW(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, ppsidowner: Option<*mut super::PSID>, ppsidgroup: Option<*mut super::PSID>, ppdacl: Option<*mut *mut super::ACL>, ppsacl: Option<*mut *mut super::ACL>, ppsecuritydescriptor: *mut super::PSECURITY_DESCRIPTOR) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super::super::Foundation:: PSID, ppsidgroup : *mut super::super::Foundation:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn GetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super:: PSID, ppsidgroup : *mut super:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); GetNamedSecurityInfoW(pobjectname.param().abi(), objecttype, securityinfo, core::mem::transmute(ppsidowner.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppsidgroup.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppdacl.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppsacl.unwrap_or(std::ptr::null_mut())), ppsecuritydescriptor) } #[inline] -pub unsafe fn GetSecurityInfo(handle: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, ppsidowner: Option<*mut super::super::Foundation::PSID>, ppsidgroup: Option<*mut super::super::Foundation::PSID>, ppdacl: Option<*mut *mut super::ACL>, ppsacl: Option<*mut *mut super::ACL>, ppsecuritydescriptor: Option<*mut super::PSECURITY_DESCRIPTOR>) -> super::super::Foundation::WIN32_ERROR +pub unsafe fn GetSecurityInfo(handle: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, ppsidowner: Option<*mut super::PSID>, ppsidgroup: Option<*mut super::PSID>, ppdacl: Option<*mut *mut super::ACL>, ppsacl: Option<*mut *mut super::ACL>, ppsecuritydescriptor: Option<*mut super::PSECURITY_DESCRIPTOR>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super::super::Foundation:: PSID, ppsidgroup : *mut super::super::Foundation:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn GetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, ppsidowner : *mut super:: PSID, ppsidgroup : *mut super:: PSID, ppdacl : *mut *mut super:: ACL, ppsacl : *mut *mut super:: ACL, ppsecuritydescriptor : *mut super:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: WIN32_ERROR); GetSecurityInfo(handle.param().abi(), objecttype, securityinfo, core::mem::transmute(ppsidowner.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppsidgroup.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppdacl.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppsacl.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppsecuritydescriptor.unwrap_or(std::ptr::null_mut()))) } #[inline] @@ -632,72 +627,72 @@ pub unsafe fn SetEntriesInAclW(plistofexplicitentries: Option<&[EXPLICIT_ACCESS_ pub unsafe fn SetNamedSecurityInfoA(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, psidowner: P1, psidgroup: P2, pdacl: Option<*const super::ACL>, psacl: Option<*const super::ACL>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super::super::Foundation:: PSID, psidgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super:: PSID, psidgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); SetNamedSecurityInfoA(pobjectname.param().abi(), objecttype, securityinfo, psidowner.param().abi(), psidgroup.param().abi(), core::mem::transmute(pdacl.unwrap_or(std::ptr::null())), core::mem::transmute(psacl.unwrap_or(std::ptr::null()))) } #[inline] pub unsafe fn SetNamedSecurityInfoW(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, psidowner: P1, psidgroup: P2, pdacl: Option<*const super::ACL>, psacl: Option<*const super::ACL>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super::super::Foundation:: PSID, psidgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn SetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super:: PSID, psidgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); SetNamedSecurityInfoW(pobjectname.param().abi(), objecttype, securityinfo, psidowner.param().abi(), psidgroup.param().abi(), core::mem::transmute(pdacl.unwrap_or(std::ptr::null())), core::mem::transmute(psacl.unwrap_or(std::ptr::null()))) } #[inline] pub unsafe fn SetSecurityInfo(handle: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, psidowner: P1, psidgroup: P2, pdacl: Option<*const super::ACL>, psacl: Option<*const super::ACL>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn SetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super::super::Foundation:: PSID, psidgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn SetSecurityInfo(handle : super::super::Foundation:: HANDLE, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, psidowner : super:: PSID, psidgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL) -> super::super::Foundation:: WIN32_ERROR); SetSecurityInfo(handle.param().abi(), objecttype, securityinfo, psidowner.param().abi(), psidgroup.param().abi(), core::mem::transmute(pdacl.unwrap_or(std::ptr::null())), core::mem::transmute(psacl.unwrap_or(std::ptr::null()))) } #[inline] pub unsafe fn TreeResetNamedSecurityInfoA(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, powner: P1, pgroup: P2, pdacl: Option<*const super::ACL>, psacl: Option<*const super::ACL>, keepexplicit: P3, fnprogress: FN_PROGRESS, progressinvokesetting: PROG_INVOKE_SETTING, args: Option<*const core::ffi::c_void>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); TreeResetNamedSecurityInfoA(pobjectname.param().abi(), objecttype, securityinfo, powner.param().abi(), pgroup.param().abi(), core::mem::transmute(pdacl.unwrap_or(std::ptr::null())), core::mem::transmute(psacl.unwrap_or(std::ptr::null())), keepexplicit.param().abi(), fnprogress, progressinvokesetting, core::mem::transmute(args.unwrap_or(std::ptr::null()))) } #[inline] pub unsafe fn TreeResetNamedSecurityInfoW(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, powner: P1, pgroup: P2, pdacl: Option<*const super::ACL>, psacl: Option<*const super::ACL>, keepexplicit: P3, fnprogress: FN_PROGRESS, progressinvokesetting: PROG_INVOKE_SETTING, args: Option<*const core::ffi::c_void>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, P3: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn TreeResetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, keepexplicit : super::super::Foundation:: BOOL, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); TreeResetNamedSecurityInfoW(pobjectname.param().abi(), objecttype, securityinfo, powner.param().abi(), pgroup.param().abi(), core::mem::transmute(pdacl.unwrap_or(std::ptr::null())), core::mem::transmute(psacl.unwrap_or(std::ptr::null())), keepexplicit.param().abi(), fnprogress, progressinvokesetting, core::mem::transmute(args.unwrap_or(std::ptr::null()))) } #[inline] pub unsafe fn TreeSetNamedSecurityInfoA(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, powner: P1, pgroup: P2, pdacl: Option<*const super::ACL>, psacl: Option<*const super::ACL>, dwaction: TREE_SEC_INFO, fnprogress: FN_PROGRESS, progressinvokesetting: PROG_INVOKE_SETTING, args: Option<*const core::ffi::c_void>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoA(pobjectname : windows_core::PCSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); TreeSetNamedSecurityInfoA(pobjectname.param().abi(), objecttype, securityinfo, powner.param().abi(), pgroup.param().abi(), core::mem::transmute(pdacl.unwrap_or(std::ptr::null())), core::mem::transmute(psacl.unwrap_or(std::ptr::null())), dwaction, fnprogress, progressinvokesetting, core::mem::transmute(args.unwrap_or(std::ptr::null()))) } #[inline] pub unsafe fn TreeSetNamedSecurityInfoW(pobjectname: P0, objecttype: SE_OBJECT_TYPE, securityinfo: super::OBJECT_SECURITY_INFORMATION, powner: P1, pgroup: P2, pdacl: Option<*const super::ACL>, psacl: Option<*const super::ACL>, dwaction: TREE_SEC_INFO, fnprogress: FN_PROGRESS, progressinvokesetting: PROG_INVOKE_SETTING, args: Option<*const core::ffi::c_void>) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super::super::Foundation:: PSID, pgroup : super::super::Foundation:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("advapi32.dll" "system" fn TreeSetNamedSecurityInfoW(pobjectname : windows_core::PCWSTR, objecttype : SE_OBJECT_TYPE, securityinfo : super:: OBJECT_SECURITY_INFORMATION, powner : super:: PSID, pgroup : super:: PSID, pdacl : *const super:: ACL, psacl : *const super:: ACL, dwaction : TREE_SEC_INFO, fnprogress : FN_PROGRESS, progressinvokesetting : PROG_INVOKE_SETTING, args : *const core::ffi::c_void) -> super::super::Foundation:: WIN32_ERROR); TreeSetNamedSecurityInfoW(pobjectname.param().abi(), objecttype, securityinfo, powner.param().abi(), pgroup.param().abi(), core::mem::transmute(pdacl.unwrap_or(std::ptr::null())), core::mem::transmute(psacl.unwrap_or(std::ptr::null())), dwaction, fnprogress, progressinvokesetting, core::mem::transmute(args.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_System_Com")] @@ -5139,10 +5134,18 @@ impl Default for AUDIT_PARAMS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct AUTHZ_ACCESS_CHECK_RESULTS_HANDLE(pub isize); +pub struct AUTHZ_ACCESS_CHECK_RESULTS_HANDLE(pub *mut core::ffi::c_void); impl AUTHZ_ACCESS_CHECK_RESULTS_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for AUTHZ_ACCESS_CHECK_RESULTS_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = AuthzFreeHandle(*self); + } } } impl Default for AUTHZ_ACCESS_CHECK_RESULTS_HANDLE { @@ -5173,7 +5176,7 @@ impl Default for AUTHZ_ACCESS_REPLY { #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct AUTHZ_ACCESS_REQUEST { pub DesiredAccess: u32, - pub PrincipalSelfSid: super::super::Foundation::PSID, + pub PrincipalSelfSid: super::PSID, pub ObjectTypeList: *mut super::OBJECT_TYPE_LIST, pub ObjectTypeListLength: u32, pub OptionalArguments: *mut core::ffi::c_void, @@ -5188,10 +5191,18 @@ impl Default for AUTHZ_ACCESS_REQUEST { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct AUTHZ_AUDIT_EVENT_HANDLE(pub isize); +pub struct AUTHZ_AUDIT_EVENT_HANDLE(pub *mut core::ffi::c_void); impl AUTHZ_AUDIT_EVENT_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for AUTHZ_AUDIT_EVENT_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = AuthzFreeAuditEvent(*self); + } } } impl Default for AUTHZ_AUDIT_EVENT_HANDLE { @@ -5204,10 +5215,10 @@ impl windows_core::TypeKind for AUTHZ_AUDIT_EVENT_HANDLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct AUTHZ_AUDIT_EVENT_TYPE_HANDLE(pub isize); +pub struct AUTHZ_AUDIT_EVENT_TYPE_HANDLE(pub *mut core::ffi::c_void); impl AUTHZ_AUDIT_EVENT_TYPE_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for AUTHZ_AUDIT_EVENT_TYPE_HANDLE { @@ -5266,10 +5277,18 @@ impl Default for AUTHZ_AUDIT_EVENT_TYPE_UNION { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE(pub isize); +pub struct AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE(pub *mut core::ffi::c_void); impl AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = AuthzUnregisterCapChangeNotification(*self); + } } } impl Default for AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE { @@ -5282,10 +5301,18 @@ impl windows_core::TypeKind for AUTHZ_CAP_CHANGE_SUBSCRIPTION_HANDLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct AUTHZ_CLIENT_CONTEXT_HANDLE(pub isize); +pub struct AUTHZ_CLIENT_CONTEXT_HANDLE(pub *mut core::ffi::c_void); impl AUTHZ_CLIENT_CONTEXT_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for AUTHZ_CLIENT_CONTEXT_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = AuthzFreeContext(*self); + } } } impl Default for AUTHZ_CLIENT_CONTEXT_HANDLE { @@ -5331,10 +5358,18 @@ impl Default for AUTHZ_REGISTRATION_OBJECT_TYPE_NAME_OFFSET { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct AUTHZ_RESOURCE_MANAGER_HANDLE(pub isize); +pub struct AUTHZ_RESOURCE_MANAGER_HANDLE(pub *mut core::ffi::c_void); impl AUTHZ_RESOURCE_MANAGER_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for AUTHZ_RESOURCE_MANAGER_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = AuthzFreeResourceManager(*self); + } } } impl Default for AUTHZ_RESOURCE_MANAGER_HANDLE { @@ -5458,10 +5493,10 @@ impl Default for AUTHZ_SECURITY_ATTRIBUTE_V1_0 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE(pub isize); +pub struct AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE(pub *mut core::ffi::c_void); impl AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for AUTHZ_SECURITY_EVENT_PROVIDER_HANDLE { @@ -5704,6 +5739,6 @@ pub type PFN_AUTHZ_COMPUTE_DYNAMIC_GROUPS = Option super::super::Foundation::BOOL>; pub type PFN_AUTHZ_FREE_CENTRAL_ACCESS_POLICY = Option; pub type PFN_AUTHZ_FREE_DYNAMIC_GROUPS = Option; -pub type PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY = Option super::super::Foundation::BOOL>; +pub type PFN_AUTHZ_GET_CENTRAL_ACCESS_POLICY = Option super::super::Foundation::BOOL>; #[cfg(feature = "implement")] core::include!("impl.rs"); diff --git a/crates/libs/windows/src/Windows/Win32/Security/Credentials/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/Credentials/mod.rs index 1325004562..b3302465f1 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/Credentials/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/Credentials/mod.rs @@ -227,37 +227,37 @@ where CredUIConfirmCredentialsW(psztargetname.param().abi(), bconfirm.param().abi()) } #[inline] -pub unsafe fn CredUIParseUserNameA(username: P0, user: &mut [u8], domain: &mut [u8]) -> u32 +pub unsafe fn CredUIParseUserNameA(username: P0, user: &mut [u8], domain: &mut [u8]) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameA(username : windows_core::PCSTR, user : windows_core::PSTR, userbuffersize : u32, domain : windows_core::PSTR, domainbuffersize : u32) -> u32); + windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameA(username : windows_core::PCSTR, user : windows_core::PSTR, userbuffersize : u32, domain : windows_core::PSTR, domainbuffersize : u32) -> super::super::Foundation:: WIN32_ERROR); CredUIParseUserNameA(username.param().abi(), core::mem::transmute(user.as_ptr()), user.len().try_into().unwrap(), core::mem::transmute(domain.as_ptr()), domain.len().try_into().unwrap()) } #[inline] -pub unsafe fn CredUIParseUserNameW(username: P0, user: &mut [u16], domain: &mut [u16]) -> u32 +pub unsafe fn CredUIParseUserNameW(username: P0, user: &mut [u16], domain: &mut [u16]) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameW(username : windows_core::PCWSTR, user : windows_core::PWSTR, userbuffersize : u32, domain : windows_core::PWSTR, domainbuffersize : u32) -> u32); + windows_targets::link!("credui.dll" "system" fn CredUIParseUserNameW(username : windows_core::PCWSTR, user : windows_core::PWSTR, userbuffersize : u32, domain : windows_core::PWSTR, domainbuffersize : u32) -> super::super::Foundation:: WIN32_ERROR); CredUIParseUserNameW(username.param().abi(), core::mem::transmute(user.as_ptr()), user.len().try_into().unwrap(), core::mem::transmute(domain.as_ptr()), domain.len().try_into().unwrap()) } #[cfg(feature = "Win32_Graphics_Gdi")] #[inline] -pub unsafe fn CredUIPromptForCredentialsA(puiinfo: Option<*const CREDUI_INFOA>, psztargetname: P0, pcontext: Option<*const SecHandle>, dwautherror: u32, pszusername: &mut [u8], pszpassword: &mut [u8], save: Option<*mut super::super::Foundation::BOOL>, dwflags: CREDUI_FLAGS) -> u32 +pub unsafe fn CredUIPromptForCredentialsA(puiinfo: Option<*const CREDUI_INFOA>, psztargetname: P0, pcontext: Option<*const SecHandle>, dwautherror: u32, pszusername: &mut [u8], pszpassword: &mut [u8], save: Option<*mut super::super::Foundation::BOOL>, dwflags: CREDUI_FLAGS) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsA(puiinfo : *const CREDUI_INFOA, psztargetname : windows_core::PCSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_core::PSTR, ulusernamebuffersize : u32, pszpassword : windows_core::PSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> u32); + windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsA(puiinfo : *const CREDUI_INFOA, psztargetname : windows_core::PCSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_core::PSTR, ulusernamebuffersize : u32, pszpassword : windows_core::PSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> super::super::Foundation:: WIN32_ERROR); CredUIPromptForCredentialsA(core::mem::transmute(puiinfo.unwrap_or(std::ptr::null())), psztargetname.param().abi(), core::mem::transmute(pcontext.unwrap_or(std::ptr::null())), dwautherror, core::mem::transmute(pszusername.as_ptr()), pszusername.len().try_into().unwrap(), core::mem::transmute(pszpassword.as_ptr()), pszpassword.len().try_into().unwrap(), core::mem::transmute(save.unwrap_or(std::ptr::null_mut())), dwflags) } #[cfg(feature = "Win32_Graphics_Gdi")] #[inline] -pub unsafe fn CredUIPromptForCredentialsW(puiinfo: Option<*const CREDUI_INFOW>, psztargetname: P0, pcontext: Option<*const SecHandle>, dwautherror: u32, pszusername: &mut [u16], pszpassword: &mut [u16], save: Option<*mut super::super::Foundation::BOOL>, dwflags: CREDUI_FLAGS) -> u32 +pub unsafe fn CredUIPromptForCredentialsW(puiinfo: Option<*const CREDUI_INFOW>, psztargetname: P0, pcontext: Option<*const SecHandle>, dwautherror: u32, pszusername: &mut [u16], pszpassword: &mut [u16], save: Option<*mut super::super::Foundation::BOOL>, dwflags: CREDUI_FLAGS) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsW(puiinfo : *const CREDUI_INFOW, psztargetname : windows_core::PCWSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_core::PWSTR, ulusernamebuffersize : u32, pszpassword : windows_core::PWSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> u32); + windows_targets::link!("credui.dll" "system" fn CredUIPromptForCredentialsW(puiinfo : *const CREDUI_INFOW, psztargetname : windows_core::PCWSTR, pcontext : *const SecHandle, dwautherror : u32, pszusername : windows_core::PWSTR, ulusernamebuffersize : u32, pszpassword : windows_core::PWSTR, ulpasswordbuffersize : u32, save : *mut super::super::Foundation:: BOOL, dwflags : CREDUI_FLAGS) -> super::super::Foundation:: WIN32_ERROR); CredUIPromptForCredentialsW(core::mem::transmute(puiinfo.unwrap_or(std::ptr::null())), psztargetname.param().abi(), core::mem::transmute(pcontext.unwrap_or(std::ptr::null())), dwautherror, core::mem::transmute(pszusername.as_ptr()), pszusername.len().try_into().unwrap(), core::mem::transmute(pszpassword.as_ptr()), pszpassword.len().try_into().unwrap(), core::mem::transmute(save.unwrap_or(std::ptr::null_mut())), dwflags) } #[cfg(feature = "Win32_Graphics_Gdi")] diff --git a/crates/libs/windows/src/Windows/Win32/Security/Cryptography/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/Cryptography/mod.rs index fb5a6d7e49..59728dc7b8 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/Cryptography/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/Cryptography/mod.rs @@ -2073,10 +2073,10 @@ pub unsafe fn CryptUnregisterOIDInfo(pinfo: *const CRYPT_OID_INFO) -> super::sup #[inline] pub unsafe fn CryptUpdateProtectedState(poldsid: P0, pwszoldpassword: P1, dwflags: u32, pdwsuccesscount: Option<*mut u32>, pdwfailurecount: Option<*mut u32>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("crypt32.dll" "system" fn CryptUpdateProtectedState(poldsid : super::super::Foundation:: PSID, pwszoldpassword : windows_core::PCWSTR, dwflags : u32, pdwsuccesscount : *mut u32, pdwfailurecount : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("crypt32.dll" "system" fn CryptUpdateProtectedState(poldsid : super:: PSID, pwszoldpassword : windows_core::PCWSTR, dwflags : u32, pdwsuccesscount : *mut u32, pdwfailurecount : *mut u32) -> super::super::Foundation:: BOOL); CryptUpdateProtectedState(poldsid.param().abi(), pwszoldpassword.param().abi(), dwflags, core::mem::transmute(pdwsuccesscount.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pdwfailurecount.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] @@ -2310,12 +2310,28 @@ pub unsafe fn GetCryptoTransform(hsymmetriccrypto: *const INFORMATIONCARD_CRYPTO GetCryptoTransform(hsymmetriccrypto, mode, padding, feedbacksize, direction, piv.len().try_into().unwrap(), core::mem::transmute(piv.as_ptr()), &mut result__).map(|| result__) } #[inline] +pub unsafe fn GetKeyStorageInterface(pszprovidername: P0, ppfunctiontable: *mut *mut NCRYPT_KEY_STORAGE_FUNCTION_TABLE, dwflags: u32) -> super::super::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn GetKeyStorageInterface(pszprovidername : windows_core::PCWSTR, ppfunctiontable : *mut *mut NCRYPT_KEY_STORAGE_FUNCTION_TABLE, dwflags : u32) -> super::super::Foundation:: NTSTATUS); + GetKeyStorageInterface(pszprovidername.param().abi(), ppfunctiontable, dwflags) +} +#[inline] pub unsafe fn GetKeyedHash(hsymmetriccrypto: *const INFORMATIONCARD_CRYPTO_HANDLE) -> windows_core::Result<*mut INFORMATIONCARD_CRYPTO_HANDLE> { windows_targets::link!("infocardapi.dll" "system" fn GetKeyedHash(hsymmetriccrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, pphhash : *mut *mut INFORMATIONCARD_CRYPTO_HANDLE) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); GetKeyedHash(hsymmetriccrypto, &mut result__).map(|| result__) } #[inline] +pub unsafe fn GetSChannelInterface(pszprovidername: P0, ppfunctiontable: *mut *mut NCRYPT_SSL_FUNCTION_TABLE, dwflags: u32) -> super::super::Foundation::NTSTATUS +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn GetSChannelInterface(pszprovidername : windows_core::PCWSTR, ppfunctiontable : *mut *mut NCRYPT_SSL_FUNCTION_TABLE, dwflags : u32) -> super::super::Foundation:: NTSTATUS); + GetSChannelInterface(pszprovidername.param().abi(), ppfunctiontable, dwflags) +} +#[inline] pub unsafe fn GetToken(ppolicychain: &[POLICY_ELEMENT], securitytoken: *mut *mut GENERIC_XML_TOKEN, phprooftokencrypto: *mut *mut INFORMATIONCARD_CRYPTO_HANDLE) -> windows_core::Result<()> { windows_targets::link!("infocardapi.dll" "system" fn GetToken(cpolicychain : u32, ppolicychain : *const POLICY_ELEMENT, securitytoken : *mut *mut GENERIC_XML_TOKEN, phprooftokencrypto : *mut *mut INFORMATIONCARD_CRYPTO_HANDLE) -> windows_core::HRESULT); GetToken(ppolicychain.len().try_into().unwrap(), core::mem::transmute(ppolicychain.as_ptr()), securitytoken, phprooftokencrypto).ok() @@ -2819,235 +2835,643 @@ where SignerTimeStampEx3(dwflags, dwindex, psubjectinfo, pwszhttptimestamp.param().abi(), pszalgorithmoid.param().abi(), core::mem::transmute(psrequest.unwrap_or(std::ptr::null())), core::mem::transmute(psipdata.unwrap_or(std::ptr::null())), ppsignercontext, core::mem::transmute(pcryptopolicy.unwrap_or(std::ptr::null())), core::mem::transmute(preserved.unwrap_or(std::ptr::null()))).ok() } #[inline] -pub unsafe fn SystemPrng(pbrandomdata: &mut [u8]) -> super::super::Foundation::BOOL { - windows_targets::link!("bcryptprimitives.dll" "system" fn SystemPrng(pbrandomdata : *mut u8, cbrandomdata : usize) -> super::super::Foundation:: BOOL); - SystemPrng(core::mem::transmute(pbrandomdata.as_ptr()), pbrandomdata.len().try_into().unwrap()) +pub unsafe fn SslChangeNotify(hevent: P0, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslChangeNotify(hevent : super::super::Foundation:: HANDLE, dwflags : u32) -> windows_core::HRESULT); + SslChangeNotify(hevent.param().abi(), dwflags).ok() } #[inline] -pub unsafe fn TransformBlock(hcrypto: *const INFORMATIONCARD_CRYPTO_HANDLE, pindata: &[u8], pcboutdata: *mut u32, ppoutdata: *mut *mut u8) -> windows_core::Result<()> { - windows_targets::link!("infocardapi.dll" "system" fn TransformBlock(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8, pcboutdata : *mut u32, ppoutdata : *mut *mut u8) -> windows_core::HRESULT); - TransformBlock(hcrypto, pindata.len().try_into().unwrap(), core::mem::transmute(pindata.as_ptr()), pcboutdata, ppoutdata).ok() +pub unsafe fn SslComputeClientAuthHash(hsslprovider: P0, hmasterkey: P1, hhandshakehash: P2, pszalgid: P3, pboutput: Option<&mut [u8]>, pcbresult: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslComputeClientAuthHash(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, pszalgid : windows_core::PCWSTR, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslComputeClientAuthHash(hsslprovider.param().abi(), hmasterkey.param().abi(), hhandshakehash.param().abi(), pszalgid.param().abi(), core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, dwflags).ok() } #[inline] -pub unsafe fn TransformFinalBlock(hcrypto: *const INFORMATIONCARD_CRYPTO_HANDLE, pindata: &[u8], pcboutdata: *mut u32, ppoutdata: *mut *mut u8) -> windows_core::Result<()> { - windows_targets::link!("infocardapi.dll" "system" fn TransformFinalBlock(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8, pcboutdata : *mut u32, ppoutdata : *mut *mut u8) -> windows_core::HRESULT); - TransformFinalBlock(hcrypto, pindata.len().try_into().unwrap(), core::mem::transmute(pindata.as_ptr()), pcboutdata, ppoutdata).ok() +pub unsafe fn SslComputeEapKeyBlock(hsslprovider: P0, hmasterkey: P1, pbrandoms: &[u8], pboutput: Option<&mut [u8]>, pcbresult: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslComputeEapKeyBlock(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, pbrandoms : *const u8, cbrandoms : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslComputeEapKeyBlock(hsslprovider.param().abi(), hmasterkey.param().abi(), core::mem::transmute(pbrandoms.as_ptr()), pbrandoms.len().try_into().unwrap(), core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, dwflags).ok() } #[inline] -pub unsafe fn VerifyHash(hcrypto: *const INFORMATIONCARD_CRYPTO_HANDLE, phash: &[u8], hashalgoid: P0, psig: &[u8]) -> windows_core::Result +pub unsafe fn SslComputeFinishedHash(hsslprovider: P0, hmasterkey: P1, hhandshakehash: P2, pboutput: &mut [u8], dwflags: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, { - windows_targets::link!("infocardapi.dll" "system" fn VerifyHash(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbhash : u32, phash : *const u8, hashalgoid : windows_core::PCWSTR, cbsig : u32, psig : *const u8, pfverified : *mut super::super::Foundation:: BOOL) -> windows_core::HRESULT); - let mut result__ = core::mem::zeroed(); - VerifyHash(hcrypto, phash.len().try_into().unwrap(), core::mem::transmute(phash.as_ptr()), hashalgoid.param().abi(), psig.len().try_into().unwrap(), core::mem::transmute(psig.as_ptr()), &mut result__).map(|| result__) + windows_targets::link!("ncrypt.dll" "system" fn SslComputeFinishedHash(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, pboutput : *mut u8, cboutput : u32, dwflags : u32) -> windows_core::HRESULT); + SslComputeFinishedHash(hsslprovider.param().abi(), hmasterkey.param().abi(), hhandshakehash.param().abi(), core::mem::transmute(pboutput.as_ptr()), pboutput.len().try_into().unwrap(), dwflags).ok() } -#[cfg(feature = "Win32_System_Com")] -windows_core::imp::define_interface!(ICertSrvSetup, ICertSrvSetup_Vtbl, 0xb760a1bb_4784_44c0_8f12_555f0780ff25); -#[cfg(feature = "Win32_System_Com")] -impl core::ops::Deref for ICertSrvSetup { - type Target = super::super::System::Com::IDispatch; - fn deref(&self) -> &Self::Target { - unsafe { core::mem::transmute(self) } - } +#[inline] +pub unsafe fn SslComputeSessionHash(hsslprovider: P0, hhandshakehash: P1, dwprotocol: u32, pboutput: Option<&mut [u8]>, pcbresult: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslComputeSessionHash(hsslprovider : NCRYPT_PROV_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, dwprotocol : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslComputeSessionHash(hsslprovider.param().abi(), hhandshakehash.param().abi(), dwprotocol, core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, dwflags).ok() } -#[cfg(feature = "Win32_System_Com")] -windows_core::imp::interface_hierarchy!(ICertSrvSetup, windows_core::IUnknown, super::super::System::Com::IDispatch); -#[cfg(feature = "Win32_System_Com")] -impl ICertSrvSetup { - pub unsafe fn CAErrorId(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).CAErrorId)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) - } - pub unsafe fn CAErrorString(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).CAErrorString)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn InitializeDefaults(&self, bserver: P0, bclient: P1) -> windows_core::Result<()> - where - P0: windows_core::Param, - P1: windows_core::Param, - { - (windows_core::Interface::vtable(self).InitializeDefaults)(windows_core::Interface::as_raw(self), bserver.param().abi(), bclient.param().abi()).ok() - } - pub unsafe fn GetCASetupProperty(&self, propertyid: CASetupProperty) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).GetCASetupProperty)(windows_core::Interface::as_raw(self), propertyid, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn SetCASetupProperty(&self, propertyid: CASetupProperty, ppropertyvalue: *const windows_core::VARIANT) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).SetCASetupProperty)(windows_core::Interface::as_raw(self), propertyid, core::mem::transmute(ppropertyvalue)).ok() - } - pub unsafe fn IsPropertyEditable(&self, propertyid: CASetupProperty) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).IsPropertyEditable)(windows_core::Interface::as_raw(self), propertyid, &mut result__).map(|| result__) - } - pub unsafe fn GetSupportedCATypes(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).GetSupportedCATypes)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn GetProviderNameList(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).GetProviderNameList)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn GetKeyLengthList(&self, bstrprovidername: P0) -> windows_core::Result - where - P0: windows_core::Param, - { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).GetKeyLengthList)(windows_core::Interface::as_raw(self), bstrprovidername.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn GetHashAlgorithmList(&self, bstrprovidername: P0) -> windows_core::Result - where - P0: windows_core::Param, - { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).GetHashAlgorithmList)(windows_core::Interface::as_raw(self), bstrprovidername.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn GetPrivateKeyContainerList(&self, bstrprovidername: P0) -> windows_core::Result - where - P0: windows_core::Param, - { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).GetPrivateKeyContainerList)(windows_core::Interface::as_raw(self), bstrprovidername.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - #[cfg(feature = "Win32_System_Com")] - pub unsafe fn GetExistingCACertificates(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).GetExistingCACertificates)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - #[cfg(feature = "Win32_System_Com")] - pub unsafe fn CAImportPFX(&self, bstrfilename: P0, bstrpasswd: P1, boverwriteexistingkey: P2) -> windows_core::Result - where - P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, - { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).CAImportPFX)(windows_core::Interface::as_raw(self), bstrfilename.param().abi(), bstrpasswd.param().abi(), boverwriteexistingkey.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn SetCADistinguishedName(&self, bstrcadn: P0, bignoreunicode: P1, boverwriteexistingkey: P2, boverwriteexistingcainds: P3) -> windows_core::Result<()> - where - P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, - P3: windows_core::Param, - { - (windows_core::Interface::vtable(self).SetCADistinguishedName)(windows_core::Interface::as_raw(self), bstrcadn.param().abi(), bignoreunicode.param().abi(), boverwriteexistingkey.param().abi(), boverwriteexistingcainds.param().abi()).ok() - } - pub unsafe fn SetDatabaseInformation(&self, bstrdbdirectory: P0, bstrlogdirectory: P1, bstrsharedfolder: P2, bforceoverwrite: P3) -> windows_core::Result<()> - where - P0: windows_core::Param, - P1: windows_core::Param, - P2: windows_core::Param, - P3: windows_core::Param, - { - (windows_core::Interface::vtable(self).SetDatabaseInformation)(windows_core::Interface::as_raw(self), bstrdbdirectory.param().abi(), bstrlogdirectory.param().abi(), bstrsharedfolder.param().abi(), bforceoverwrite.param().abi()).ok() - } - pub unsafe fn SetParentCAInformation(&self, bstrcaconfiguration: P0) -> windows_core::Result<()> - where - P0: windows_core::Param, - { - (windows_core::Interface::vtable(self).SetParentCAInformation)(windows_core::Interface::as_raw(self), bstrcaconfiguration.param().abi()).ok() - } - pub unsafe fn SetWebCAInformation(&self, bstrcaconfiguration: P0) -> windows_core::Result<()> - where - P0: windows_core::Param, - { - (windows_core::Interface::vtable(self).SetWebCAInformation)(windows_core::Interface::as_raw(self), bstrcaconfiguration.param().abi()).ok() - } - pub unsafe fn Install(&self) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).Install)(windows_core::Interface::as_raw(self)).ok() - } - pub unsafe fn PreUnInstall(&self, bclientonly: P0) -> windows_core::Result<()> - where - P0: windows_core::Param, - { - (windows_core::Interface::vtable(self).PreUnInstall)(windows_core::Interface::as_raw(self), bclientonly.param().abi()).ok() - } - pub unsafe fn PostUnInstall(&self) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).PostUnInstall)(windows_core::Interface::as_raw(self)).ok() - } +#[inline] +pub unsafe fn SslCreateClientAuthHash(hsslprovider: P0, phhandshakehash: *mut NCRYPT_HASH_HANDLE, dwprotocol: u32, dwciphersuite: u32, pszhashalgid: P1, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslCreateClientAuthHash(hsslprovider : NCRYPT_PROV_HANDLE, phhandshakehash : *mut NCRYPT_HASH_HANDLE, dwprotocol : u32, dwciphersuite : u32, pszhashalgid : windows_core::PCWSTR, dwflags : u32) -> windows_core::HRESULT); + SslCreateClientAuthHash(hsslprovider.param().abi(), phhandshakehash, dwprotocol, dwciphersuite, pszhashalgid.param().abi(), dwflags).ok() } -#[cfg(feature = "Win32_System_Com")] -#[repr(C)] -pub struct ICertSrvSetup_Vtbl { - pub base__: super::super::System::Com::IDispatch_Vtbl, - pub CAErrorId: unsafe extern "system" fn(*mut core::ffi::c_void, *mut i32) -> windows_core::HRESULT, - pub CAErrorString: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, - pub InitializeDefaults: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::VARIANT_BOOL, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, - pub GetCASetupProperty: unsafe extern "system" fn(*mut core::ffi::c_void, CASetupProperty, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, - pub SetCASetupProperty: unsafe extern "system" fn(*mut core::ffi::c_void, CASetupProperty, *const core::mem::MaybeUninit) -> windows_core::HRESULT, - pub IsPropertyEditable: unsafe extern "system" fn(*mut core::ffi::c_void, CASetupProperty, *mut super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, - pub GetSupportedCATypes: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, - pub GetProviderNameList: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, - pub GetKeyLengthList: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, - pub GetHashAlgorithmList: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, - pub GetPrivateKeyContainerList: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, - #[cfg(feature = "Win32_System_Com")] - pub GetExistingCACertificates: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_System_Com"))] - GetExistingCACertificates: usize, - #[cfg(feature = "Win32_System_Com")] - pub CAImportPFX: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, core::mem::MaybeUninit, super::super::Foundation::VARIANT_BOOL, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_System_Com"))] - CAImportPFX: usize, - pub SetCADistinguishedName: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, super::super::Foundation::VARIANT_BOOL, super::super::Foundation::VARIANT_BOOL, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, - pub SetDatabaseInformation: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, core::mem::MaybeUninit, core::mem::MaybeUninit, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, - pub SetParentCAInformation: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit) -> windows_core::HRESULT, - pub SetWebCAInformation: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit) -> windows_core::HRESULT, - pub Install: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, - pub PreUnInstall: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, - pub PostUnInstall: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, +#[inline] +pub unsafe fn SslCreateEphemeralKey(hsslprovider: P0, phephemeralkey: *mut NCRYPT_KEY_HANDLE, dwprotocol: u32, dwciphersuite: u32, dwkeytype: u32, dwkeybitlen: u32, pbparams: Option<&[u8]>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslCreateEphemeralKey(hsslprovider : NCRYPT_PROV_HANDLE, phephemeralkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, dwkeybitlen : u32, pbparams : *const u8, cbparams : u32, dwflags : u32) -> windows_core::HRESULT); + SslCreateEphemeralKey(hsslprovider.param().abi(), phephemeralkey, dwprotocol, dwciphersuite, dwkeytype, dwkeybitlen, core::mem::transmute(pbparams.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pbparams.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), dwflags).ok() } -#[cfg(feature = "Win32_System_Com")] -windows_core::imp::define_interface!(ICertSrvSetupKeyInformation, ICertSrvSetupKeyInformation_Vtbl, 0x6ba73778_36da_4c39_8a85_bcfa7d000793); -#[cfg(feature = "Win32_System_Com")] -impl core::ops::Deref for ICertSrvSetupKeyInformation { - type Target = super::super::System::Com::IDispatch; - fn deref(&self) -> &Self::Target { - unsafe { core::mem::transmute(self) } - } +#[inline] +pub unsafe fn SslCreateHandshakeHash(hsslprovider: P0, phhandshakehash: *mut NCRYPT_HASH_HANDLE, dwprotocol: u32, dwciphersuite: u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslCreateHandshakeHash(hsslprovider : NCRYPT_PROV_HANDLE, phhandshakehash : *mut NCRYPT_HASH_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwflags : u32) -> windows_core::HRESULT); + SslCreateHandshakeHash(hsslprovider.param().abi(), phhandshakehash, dwprotocol, dwciphersuite, dwflags).ok() } -#[cfg(feature = "Win32_System_Com")] -windows_core::imp::interface_hierarchy!(ICertSrvSetupKeyInformation, windows_core::IUnknown, super::super::System::Com::IDispatch); -#[cfg(feature = "Win32_System_Com")] -impl ICertSrvSetupKeyInformation { - pub unsafe fn ProviderName(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).ProviderName)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn SetProviderName(&self, bstrval: P0) -> windows_core::Result<()> - where - P0: windows_core::Param, - { - (windows_core::Interface::vtable(self).SetProviderName)(windows_core::Interface::as_raw(self), bstrval.param().abi()).ok() - } - pub unsafe fn Length(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).Length)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) - } - pub unsafe fn SetLength(&self, lval: i32) -> windows_core::Result<()> { - (windows_core::Interface::vtable(self).SetLength)(windows_core::Interface::as_raw(self), lval).ok() - } - pub unsafe fn Existing(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).Existing)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) - } - pub unsafe fn SetExisting(&self, bval: P0) -> windows_core::Result<()> - where - P0: windows_core::Param, - { - (windows_core::Interface::vtable(self).SetExisting)(windows_core::Interface::as_raw(self), bval.param().abi()).ok() - } - pub unsafe fn ContainerName(&self) -> windows_core::Result { - let mut result__ = core::mem::zeroed(); - (windows_core::Interface::vtable(self).ContainerName)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) - } - pub unsafe fn SetContainerName(&self, bstrval: P0) -> windows_core::Result<()> - where - P0: windows_core::Param, - { - (windows_core::Interface::vtable(self).SetContainerName)(windows_core::Interface::as_raw(self), bstrval.param().abi()).ok() +#[inline] +pub unsafe fn SslDecrementProviderReferenceCount(hsslprovider: P0) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslDecrementProviderReferenceCount(hsslprovider : NCRYPT_PROV_HANDLE) -> windows_core::HRESULT); + SslDecrementProviderReferenceCount(hsslprovider.param().abi()).ok() +} +#[inline] +pub unsafe fn SslDecryptPacket(hsslprovider: P0, hkey: P1, pbinput: &[u8], pboutput: Option<&mut [u8]>, pcbresult: *mut u32, sequencenumber: u64, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslDecryptPacket(hsslprovider : NCRYPT_PROV_HANDLE, hkey : NCRYPT_KEY_HANDLE, pbinput : *const u8, cbinput : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, sequencenumber : u64, dwflags : u32) -> windows_core::HRESULT); + SslDecryptPacket(hsslprovider.param().abi(), hkey.param().abi(), core::mem::transmute(pbinput.as_ptr()), pbinput.len().try_into().unwrap(), core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, sequencenumber, dwflags).ok() +} +#[inline] +pub unsafe fn SslDuplicateTranscriptHash(hsslprovider: P0, htranscripthash: P1, phtranscripthash: *mut NCRYPT_HASH_HANDLE, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslDuplicateTranscriptHash(hsslprovider : NCRYPT_PROV_HANDLE, htranscripthash : NCRYPT_HASH_HANDLE, phtranscripthash : *mut NCRYPT_HASH_HANDLE, dwflags : u32) -> windows_core::HRESULT); + SslDuplicateTranscriptHash(hsslprovider.param().abi(), htranscripthash.param().abi(), phtranscripthash, dwflags).ok() +} +#[inline] +pub unsafe fn SslEncryptPacket(hsslprovider: P0, hkey: P1, pbinput: &[u8], pboutput: Option<&mut [u8]>, pcbresult: *mut u32, sequencenumber: u64, dwcontenttype: u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslEncryptPacket(hsslprovider : NCRYPT_PROV_HANDLE, hkey : NCRYPT_KEY_HANDLE, pbinput : *const u8, cbinput : u32, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, sequencenumber : u64, dwcontenttype : u32, dwflags : u32) -> windows_core::HRESULT); + SslEncryptPacket(hsslprovider.param().abi(), hkey.param().abi(), core::mem::transmute(pbinput.as_ptr()), pbinput.len().try_into().unwrap(), core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, sequencenumber, dwcontenttype, dwflags).ok() +} +#[inline] +pub unsafe fn SslEnumCipherSuites(hsslprovider: P0, hprivatekey: P1, ppciphersuite: *mut *mut NCRYPT_SSL_CIPHER_SUITE, ppenumstate: *mut *mut core::ffi::c_void, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslEnumCipherSuites(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, ppciphersuite : *mut *mut NCRYPT_SSL_CIPHER_SUITE, ppenumstate : *mut *mut core::ffi::c_void, dwflags : u32) -> windows_core::HRESULT); + SslEnumCipherSuites(hsslprovider.param().abi(), hprivatekey.param().abi(), ppciphersuite, ppenumstate, dwflags).ok() +} +#[inline] +pub unsafe fn SslEnumCipherSuitesEx(hsslprovider: P0, hprivatekey: P1, ppciphersuite: *mut *mut NCRYPT_SSL_CIPHER_SUITE_EX, ppenumstate: *mut *mut core::ffi::c_void, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslEnumCipherSuitesEx(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, ppciphersuite : *mut *mut NCRYPT_SSL_CIPHER_SUITE_EX, ppenumstate : *mut *mut core::ffi::c_void, dwflags : u32) -> windows_core::HRESULT); + SslEnumCipherSuitesEx(hsslprovider.param().abi(), hprivatekey.param().abi(), ppciphersuite, ppenumstate, dwflags).ok() +} +#[inline] +pub unsafe fn SslEnumEccCurves(hsslprovider: P0, pecccurvecount: *mut u32, ppecccurve: *mut *mut NCRYPT_SSL_ECC_CURVE, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslEnumEccCurves(hsslprovider : NCRYPT_PROV_HANDLE, pecccurvecount : *mut u32, ppecccurve : *mut *mut NCRYPT_SSL_ECC_CURVE, dwflags : u32) -> windows_core::HRESULT); + SslEnumEccCurves(hsslprovider.param().abi(), pecccurvecount, ppecccurve, dwflags).ok() +} +#[inline] +pub unsafe fn SslEnumProtocolProviders(pdwprovidercount: *mut u32, ppproviderlist: *mut *mut NCryptProviderName, dwflags: u32) -> windows_core::Result<()> { + windows_targets::link!("ncrypt.dll" "system" fn SslEnumProtocolProviders(pdwprovidercount : *mut u32, ppproviderlist : *mut *mut NCryptProviderName, dwflags : u32) -> windows_core::HRESULT); + SslEnumProtocolProviders(pdwprovidercount, ppproviderlist, dwflags).ok() +} +#[inline] +pub unsafe fn SslExpandBinderKey(hsslprovider: P0, hearlykey: P1, phbinderkey: *mut NCRYPT_KEY_HANDLE, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExpandBinderKey(hsslprovider : NCRYPT_PROV_HANDLE, hearlykey : NCRYPT_KEY_HANDLE, phbinderkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExpandBinderKey(hsslprovider.param().abi(), hearlykey.param().abi(), phbinderkey, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExpandExporterMasterKey(hsslprovider: P0, hbasekey: P1, hhashvalue: P2, phexportermasterkey: *mut NCRYPT_KEY_HANDLE, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExpandExporterMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hbasekey : NCRYPT_KEY_HANDLE, hhashvalue : NCRYPT_HASH_HANDLE, phexportermasterkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExpandExporterMasterKey(hsslprovider.param().abi(), hbasekey.param().abi(), hhashvalue.param().abi(), phexportermasterkey, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExpandPreSharedKey(hsslprovider: P0, hresumptionmasterkey: P1, pbticketnonce: Option<&[u8]>, phpresharedkey: *mut NCRYPT_KEY_HANDLE, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExpandPreSharedKey(hsslprovider : NCRYPT_PROV_HANDLE, hresumptionmasterkey : NCRYPT_KEY_HANDLE, pbticketnonce : *const u8, cbticketnonce : u32, phpresharedkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExpandPreSharedKey(hsslprovider.param().abi(), hresumptionmasterkey.param().abi(), core::mem::transmute(pbticketnonce.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pbticketnonce.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), phpresharedkey, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExpandResumptionMasterKey(hsslprovider: P0, hmasterkey: P1, hhashvalue: P2, phresumptionmasterkey: *mut NCRYPT_KEY_HANDLE, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExpandResumptionMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, hhashvalue : NCRYPT_HASH_HANDLE, phresumptionmasterkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExpandResumptionMasterKey(hsslprovider.param().abi(), hmasterkey.param().abi(), hhashvalue.param().abi(), phresumptionmasterkey, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExpandTrafficKeys(hsslprovider: P0, hbasekey: P1, hhashvalue: P2, phclienttraffickey: Option<*mut NCRYPT_KEY_HANDLE>, phservertraffickey: Option<*mut NCRYPT_KEY_HANDLE>, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExpandTrafficKeys(hsslprovider : NCRYPT_PROV_HANDLE, hbasekey : NCRYPT_KEY_HANDLE, hhashvalue : NCRYPT_HASH_HANDLE, phclienttraffickey : *mut NCRYPT_KEY_HANDLE, phservertraffickey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExpandTrafficKeys(hsslprovider.param().abi(), hbasekey.param().abi(), hhashvalue.param().abi(), core::mem::transmute(phclienttraffickey.unwrap_or(std::ptr::null_mut())), core::mem::transmute(phservertraffickey.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExpandWriteKey(hsslprovider: P0, hbasetraffickey: P1, phwritekey: *mut NCRYPT_KEY_HANDLE, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExpandWriteKey(hsslprovider : NCRYPT_PROV_HANDLE, hbasetraffickey : NCRYPT_KEY_HANDLE, phwritekey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExpandWriteKey(hsslprovider.param().abi(), hbasetraffickey.param().abi(), phwritekey, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExportKey(hsslprovider: P0, hkey: P1, pszblobtype: P2, pboutput: Option<&mut [u8]>, pcbresult: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExportKey(hsslprovider : NCRYPT_PROV_HANDLE, hkey : NCRYPT_KEY_HANDLE, pszblobtype : windows_core::PCWSTR, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslExportKey(hsslprovider.param().abi(), hkey.param().abi(), pszblobtype.param().abi(), core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, dwflags).ok() +} +#[inline] +pub unsafe fn SslExportKeyingMaterial(hsslprovider: P0, hmasterkey: P1, slabel: P2, pbrandoms: Option<&[u8]>, pbcontextvalue: Option<&[u8]>, pboutput: &mut [u8], dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExportKeyingMaterial(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, slabel : windows_core::PCSTR, pbrandoms : *const u8, cbrandoms : u32, pbcontextvalue : *const u8, cbcontextvalue : u16, pboutput : *mut u8, cboutput : u32, dwflags : u32) -> windows_core::HRESULT); + SslExportKeyingMaterial( + hsslprovider.param().abi(), + hmasterkey.param().abi(), + slabel.param().abi(), + core::mem::transmute(pbrandoms.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), + pbrandoms.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), + core::mem::transmute(pbcontextvalue.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), + pbcontextvalue.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), + core::mem::transmute(pboutput.as_ptr()), + pboutput.len().try_into().unwrap(), + dwflags, + ) + .ok() +} +#[inline] +pub unsafe fn SslExtractEarlyKey(hsslprovider: P0, hpresharedkey: P1, phearlykey: *mut NCRYPT_KEY_HANDLE, dwprotocol: u32, dwciphersuite: u32, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExtractEarlyKey(hsslprovider : NCRYPT_PROV_HANDLE, hpresharedkey : NCRYPT_KEY_HANDLE, phearlykey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExtractEarlyKey(hsslprovider.param().abi(), hpresharedkey.param().abi(), phearlykey, dwprotocol, dwciphersuite, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExtractHandshakeKey(hsslprovider: P0, hprivatekey: P1, hpublickey: P2, hearlykey: P3, phhandshakekey: *mut NCRYPT_KEY_HANDLE, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExtractHandshakeKey(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, hearlykey : NCRYPT_KEY_HANDLE, phhandshakekey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExtractHandshakeKey(hsslprovider.param().abi(), hprivatekey.param().abi(), hpublickey.param().abi(), hearlykey.param().abi(), phhandshakekey, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslExtractMasterKey(hsslprovider: P0, hhandshakekey: P1, phmasterkey: *mut NCRYPT_KEY_HANDLE, pparameterlist: Option<*const BCryptBufferDesc>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslExtractMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hhandshakekey : NCRYPT_KEY_HANDLE, phmasterkey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslExtractMasterKey(hsslprovider.param().abi(), hhandshakekey.param().abi(), phmasterkey, core::mem::transmute(pparameterlist.unwrap_or(std::ptr::null())), dwflags).ok() +} +#[inline] +pub unsafe fn SslFreeBuffer(pvinput: *mut core::ffi::c_void) -> windows_core::Result<()> { + windows_targets::link!("ncrypt.dll" "system" fn SslFreeBuffer(pvinput : *mut core::ffi::c_void) -> windows_core::HRESULT); + SslFreeBuffer(pvinput).ok() +} +#[inline] +pub unsafe fn SslFreeObject(hobject: P0, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslFreeObject(hobject : NCRYPT_HANDLE, dwflags : u32) -> windows_core::HRESULT); + SslFreeObject(hobject.param().abi(), dwflags).ok() +} +#[inline] +pub unsafe fn SslGenerateMasterKey(hsslprovider: P0, hprivatekey: P1, hpublickey: P2, phmasterkey: *mut NCRYPT_KEY_HANDLE, dwprotocol: u32, dwciphersuite: u32, pparameterlist: *const BCryptBufferDesc, pboutput: Option<&mut [u8]>, pcbresult: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslGenerateMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, phmasterkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslGenerateMasterKey(hsslprovider.param().abi(), hprivatekey.param().abi(), hpublickey.param().abi(), phmasterkey, dwprotocol, dwciphersuite, pparameterlist, core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, dwflags).ok() +} +#[inline] +pub unsafe fn SslGeneratePreMasterKey(hsslprovider: P0, hpublickey: P1, phpremasterkey: *mut NCRYPT_KEY_HANDLE, dwprotocol: u32, dwciphersuite: u32, pparameterlist: *const BCryptBufferDesc, pboutput: Option<&mut [u8]>, pcbresult: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslGeneratePreMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, phpremasterkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, pboutput : *mut u8, cboutput : u32, pcbresult : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslGeneratePreMasterKey(hsslprovider.param().abi(), hpublickey.param().abi(), phpremasterkey, dwprotocol, dwciphersuite, pparameterlist, core::mem::transmute(pboutput.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pboutput.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, dwflags).ok() +} +#[inline] +pub unsafe fn SslGenerateSessionKeys(hsslprovider: P0, hmasterkey: P1, phreadkey: *mut NCRYPT_KEY_HANDLE, phwritekey: *mut NCRYPT_KEY_HANDLE, pparameterlist: *const BCryptBufferDesc, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslGenerateSessionKeys(hsslprovider : NCRYPT_PROV_HANDLE, hmasterkey : NCRYPT_KEY_HANDLE, phreadkey : *mut NCRYPT_KEY_HANDLE, phwritekey : *mut NCRYPT_KEY_HANDLE, pparameterlist : *const BCryptBufferDesc, dwflags : u32) -> windows_core::HRESULT); + SslGenerateSessionKeys(hsslprovider.param().abi(), hmasterkey.param().abi(), phreadkey, phwritekey, pparameterlist, dwflags).ok() +} +#[inline] +pub unsafe fn SslGetCipherSuitePRFHashAlgorithm(hsslprovider: P0, dwprotocol: u32, dwciphersuite: u32, dwkeytype: u32, szprfhash: &mut [u16; 64], dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslGetCipherSuitePRFHashAlgorithm(hsslprovider : NCRYPT_PROV_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, szprfhash : windows_core::PWSTR, dwflags : u32) -> windows_core::HRESULT); + SslGetCipherSuitePRFHashAlgorithm(hsslprovider.param().abi(), dwprotocol, dwciphersuite, dwkeytype, core::mem::transmute(szprfhash.as_ptr()), dwflags).ok() +} +#[inline] +pub unsafe fn SslGetKeyProperty(hkey: P0, pszproperty: P1, ppboutput: *mut *mut u8, pcboutput: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslGetKeyProperty(hkey : NCRYPT_KEY_HANDLE, pszproperty : windows_core::PCWSTR, ppboutput : *mut *mut u8, pcboutput : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslGetKeyProperty(hkey.param().abi(), pszproperty.param().abi(), ppboutput, pcboutput, dwflags).ok() +} +#[inline] +pub unsafe fn SslGetProviderProperty(hsslprovider: P0, pszproperty: P1, ppboutput: *mut *mut u8, pcboutput: *mut u32, ppenumstate: Option<*mut *mut core::ffi::c_void>, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslGetProviderProperty(hsslprovider : NCRYPT_PROV_HANDLE, pszproperty : windows_core::PCWSTR, ppboutput : *mut *mut u8, pcboutput : *mut u32, ppenumstate : *mut *mut core::ffi::c_void, dwflags : u32) -> windows_core::HRESULT); + SslGetProviderProperty(hsslprovider.param().abi(), pszproperty.param().abi(), ppboutput, pcboutput, core::mem::transmute(ppenumstate.unwrap_or(std::ptr::null_mut())), dwflags).ok() +} +#[inline] +pub unsafe fn SslHashHandshake(hsslprovider: P0, hhandshakehash: P1, pbinput: &[u8], dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslHashHandshake(hsslprovider : NCRYPT_PROV_HANDLE, hhandshakehash : NCRYPT_HASH_HANDLE, pbinput : *const u8, cbinput : u32, dwflags : u32) -> windows_core::HRESULT); + SslHashHandshake(hsslprovider.param().abi(), hhandshakehash.param().abi(), core::mem::transmute(pbinput.as_ptr()), pbinput.len().try_into().unwrap(), dwflags).ok() +} +#[inline] +pub unsafe fn SslImportKey(hsslprovider: P0, phkey: *mut NCRYPT_KEY_HANDLE, pszblobtype: P1, pbkeyblob: &[u8], dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslImportKey(hsslprovider : NCRYPT_PROV_HANDLE, phkey : *mut NCRYPT_KEY_HANDLE, pszblobtype : windows_core::PCWSTR, pbkeyblob : *const u8, cbkeyblob : u32, dwflags : u32) -> windows_core::HRESULT); + SslImportKey(hsslprovider.param().abi(), phkey, pszblobtype.param().abi(), core::mem::transmute(pbkeyblob.as_ptr()), pbkeyblob.len().try_into().unwrap(), dwflags).ok() +} +#[inline] +pub unsafe fn SslImportMasterKey(hsslprovider: P0, hprivatekey: P1, phmasterkey: *mut NCRYPT_KEY_HANDLE, dwprotocol: u32, dwciphersuite: u32, pparameterlist: *const BCryptBufferDesc, pbencryptedkey: &[u8], dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslImportMasterKey(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, phmasterkey : *mut NCRYPT_KEY_HANDLE, dwprotocol : u32, dwciphersuite : u32, pparameterlist : *const BCryptBufferDesc, pbencryptedkey : *const u8, cbencryptedkey : u32, dwflags : u32) -> windows_core::HRESULT); + SslImportMasterKey(hsslprovider.param().abi(), hprivatekey.param().abi(), phmasterkey, dwprotocol, dwciphersuite, pparameterlist, core::mem::transmute(pbencryptedkey.as_ptr()), pbencryptedkey.len().try_into().unwrap(), dwflags).ok() +} +#[inline] +pub unsafe fn SslIncrementProviderReferenceCount(hsslprovider: P0) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslIncrementProviderReferenceCount(hsslprovider : NCRYPT_PROV_HANDLE) -> windows_core::HRESULT); + SslIncrementProviderReferenceCount(hsslprovider.param().abi()).ok() +} +#[inline] +pub unsafe fn SslLookupCipherLengths(hsslprovider: P0, dwprotocol: u32, dwciphersuite: u32, dwkeytype: u32, pcipherlengths: *mut NCRYPT_SSL_CIPHER_LENGTHS, cbcipherlengths: u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslLookupCipherLengths(hsslprovider : NCRYPT_PROV_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, pcipherlengths : *mut NCRYPT_SSL_CIPHER_LENGTHS, cbcipherlengths : u32, dwflags : u32) -> windows_core::HRESULT); + SslLookupCipherLengths(hsslprovider.param().abi(), dwprotocol, dwciphersuite, dwkeytype, pcipherlengths, cbcipherlengths, dwflags).ok() +} +#[inline] +pub unsafe fn SslLookupCipherSuiteInfo(hsslprovider: P0, dwprotocol: u32, dwciphersuite: u32, dwkeytype: u32, pciphersuite: *mut NCRYPT_SSL_CIPHER_SUITE, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslLookupCipherSuiteInfo(hsslprovider : NCRYPT_PROV_HANDLE, dwprotocol : u32, dwciphersuite : u32, dwkeytype : u32, pciphersuite : *mut NCRYPT_SSL_CIPHER_SUITE, dwflags : u32) -> windows_core::HRESULT); + SslLookupCipherSuiteInfo(hsslprovider.param().abi(), dwprotocol, dwciphersuite, dwkeytype, pciphersuite, dwflags).ok() +} +#[inline] +pub unsafe fn SslOpenPrivateKey(hsslprovider: P0, phprivatekey: *mut NCRYPT_KEY_HANDLE, pcertcontext: *const CERT_CONTEXT, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslOpenPrivateKey(hsslprovider : NCRYPT_PROV_HANDLE, phprivatekey : *mut NCRYPT_KEY_HANDLE, pcertcontext : *const CERT_CONTEXT, dwflags : u32) -> windows_core::HRESULT); + SslOpenPrivateKey(hsslprovider.param().abi(), phprivatekey, pcertcontext, dwflags).ok() +} +#[inline] +pub unsafe fn SslOpenProvider(phsslprovider: *mut NCRYPT_PROV_HANDLE, pszprovidername: P0, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslOpenProvider(phsslprovider : *mut NCRYPT_PROV_HANDLE, pszprovidername : windows_core::PCWSTR, dwflags : u32) -> windows_core::HRESULT); + SslOpenProvider(phsslprovider, pszprovidername.param().abi(), dwflags).ok() +} +#[inline] +pub unsafe fn SslSignHash(hsslprovider: P0, hprivatekey: P1, pbhashvalue: &[u8], pbsignature: Option<&mut [u8]>, pcbresult: *mut u32, dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslSignHash(hsslprovider : NCRYPT_PROV_HANDLE, hprivatekey : NCRYPT_KEY_HANDLE, pbhashvalue : *const u8, cbhashvalue : u32, pbsignature : *mut u8, cbsignature : u32, pcbresult : *mut u32, dwflags : u32) -> windows_core::HRESULT); + SslSignHash(hsslprovider.param().abi(), hprivatekey.param().abi(), core::mem::transmute(pbhashvalue.as_ptr()), pbhashvalue.len().try_into().unwrap(), core::mem::transmute(pbsignature.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pbsignature.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbresult, dwflags).ok() +} +#[inline] +pub unsafe fn SslVerifySignature(hsslprovider: P0, hpublickey: P1, pbhashvalue: &[u8], pbsignature: &[u8], dwflags: u32) -> windows_core::Result<()> +where + P0: windows_core::Param, + P1: windows_core::Param, +{ + windows_targets::link!("ncrypt.dll" "system" fn SslVerifySignature(hsslprovider : NCRYPT_PROV_HANDLE, hpublickey : NCRYPT_KEY_HANDLE, pbhashvalue : *const u8, cbhashvalue : u32, pbsignature : *const u8, cbsignature : u32, dwflags : u32) -> windows_core::HRESULT); + SslVerifySignature(hsslprovider.param().abi(), hpublickey.param().abi(), core::mem::transmute(pbhashvalue.as_ptr()), pbhashvalue.len().try_into().unwrap(), core::mem::transmute(pbsignature.as_ptr()), pbsignature.len().try_into().unwrap(), dwflags).ok() +} +#[inline] +pub unsafe fn SystemPrng(pbrandomdata: &mut [u8]) -> super::super::Foundation::BOOL { + windows_targets::link!("bcryptprimitives.dll" "system" fn SystemPrng(pbrandomdata : *mut u8, cbrandomdata : usize) -> super::super::Foundation:: BOOL); + SystemPrng(core::mem::transmute(pbrandomdata.as_ptr()), pbrandomdata.len().try_into().unwrap()) +} +#[inline] +pub unsafe fn TransformBlock(hcrypto: *const INFORMATIONCARD_CRYPTO_HANDLE, pindata: &[u8], pcboutdata: *mut u32, ppoutdata: *mut *mut u8) -> windows_core::Result<()> { + windows_targets::link!("infocardapi.dll" "system" fn TransformBlock(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8, pcboutdata : *mut u32, ppoutdata : *mut *mut u8) -> windows_core::HRESULT); + TransformBlock(hcrypto, pindata.len().try_into().unwrap(), core::mem::transmute(pindata.as_ptr()), pcboutdata, ppoutdata).ok() +} +#[inline] +pub unsafe fn TransformFinalBlock(hcrypto: *const INFORMATIONCARD_CRYPTO_HANDLE, pindata: &[u8], pcboutdata: *mut u32, ppoutdata: *mut *mut u8) -> windows_core::Result<()> { + windows_targets::link!("infocardapi.dll" "system" fn TransformFinalBlock(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbindata : u32, pindata : *const u8, pcboutdata : *mut u32, ppoutdata : *mut *mut u8) -> windows_core::HRESULT); + TransformFinalBlock(hcrypto, pindata.len().try_into().unwrap(), core::mem::transmute(pindata.as_ptr()), pcboutdata, ppoutdata).ok() +} +#[inline] +pub unsafe fn VerifyHash(hcrypto: *const INFORMATIONCARD_CRYPTO_HANDLE, phash: &[u8], hashalgoid: P0, psig: &[u8]) -> windows_core::Result +where + P0: windows_core::Param, +{ + windows_targets::link!("infocardapi.dll" "system" fn VerifyHash(hcrypto : *const INFORMATIONCARD_CRYPTO_HANDLE, cbhash : u32, phash : *const u8, hashalgoid : windows_core::PCWSTR, cbsig : u32, psig : *const u8, pfverified : *mut super::super::Foundation:: BOOL) -> windows_core::HRESULT); + let mut result__ = core::mem::zeroed(); + VerifyHash(hcrypto, phash.len().try_into().unwrap(), core::mem::transmute(phash.as_ptr()), hashalgoid.param().abi(), psig.len().try_into().unwrap(), core::mem::transmute(psig.as_ptr()), &mut result__).map(|| result__) +} +#[cfg(feature = "Win32_System_Com")] +windows_core::imp::define_interface!(ICertSrvSetup, ICertSrvSetup_Vtbl, 0xb760a1bb_4784_44c0_8f12_555f0780ff25); +#[cfg(feature = "Win32_System_Com")] +impl core::ops::Deref for ICertSrvSetup { + type Target = super::super::System::Com::IDispatch; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +#[cfg(feature = "Win32_System_Com")] +windows_core::imp::interface_hierarchy!(ICertSrvSetup, windows_core::IUnknown, super::super::System::Com::IDispatch); +#[cfg(feature = "Win32_System_Com")] +impl ICertSrvSetup { + pub unsafe fn CAErrorId(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).CAErrorId)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) + } + pub unsafe fn CAErrorString(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).CAErrorString)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn InitializeDefaults(&self, bserver: P0, bclient: P1) -> windows_core::Result<()> + where + P0: windows_core::Param, + P1: windows_core::Param, + { + (windows_core::Interface::vtable(self).InitializeDefaults)(windows_core::Interface::as_raw(self), bserver.param().abi(), bclient.param().abi()).ok() + } + pub unsafe fn GetCASetupProperty(&self, propertyid: CASetupProperty) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetCASetupProperty)(windows_core::Interface::as_raw(self), propertyid, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn SetCASetupProperty(&self, propertyid: CASetupProperty, ppropertyvalue: *const windows_core::VARIANT) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).SetCASetupProperty)(windows_core::Interface::as_raw(self), propertyid, core::mem::transmute(ppropertyvalue)).ok() + } + pub unsafe fn IsPropertyEditable(&self, propertyid: CASetupProperty) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).IsPropertyEditable)(windows_core::Interface::as_raw(self), propertyid, &mut result__).map(|| result__) + } + pub unsafe fn GetSupportedCATypes(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetSupportedCATypes)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn GetProviderNameList(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetProviderNameList)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn GetKeyLengthList(&self, bstrprovidername: P0) -> windows_core::Result + where + P0: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetKeyLengthList)(windows_core::Interface::as_raw(self), bstrprovidername.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn GetHashAlgorithmList(&self, bstrprovidername: P0) -> windows_core::Result + where + P0: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetHashAlgorithmList)(windows_core::Interface::as_raw(self), bstrprovidername.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn GetPrivateKeyContainerList(&self, bstrprovidername: P0) -> windows_core::Result + where + P0: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetPrivateKeyContainerList)(windows_core::Interface::as_raw(self), bstrprovidername.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + #[cfg(feature = "Win32_System_Com")] + pub unsafe fn GetExistingCACertificates(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetExistingCACertificates)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + #[cfg(feature = "Win32_System_Com")] + pub unsafe fn CAImportPFX(&self, bstrfilename: P0, bstrpasswd: P1, boverwriteexistingkey: P2) -> windows_core::Result + where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).CAImportPFX)(windows_core::Interface::as_raw(self), bstrfilename.param().abi(), bstrpasswd.param().abi(), boverwriteexistingkey.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn SetCADistinguishedName(&self, bstrcadn: P0, bignoreunicode: P1, boverwriteexistingkey: P2, boverwriteexistingcainds: P3) -> windows_core::Result<()> + where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, + { + (windows_core::Interface::vtable(self).SetCADistinguishedName)(windows_core::Interface::as_raw(self), bstrcadn.param().abi(), bignoreunicode.param().abi(), boverwriteexistingkey.param().abi(), boverwriteexistingcainds.param().abi()).ok() + } + pub unsafe fn SetDatabaseInformation(&self, bstrdbdirectory: P0, bstrlogdirectory: P1, bstrsharedfolder: P2, bforceoverwrite: P3) -> windows_core::Result<()> + where + P0: windows_core::Param, + P1: windows_core::Param, + P2: windows_core::Param, + P3: windows_core::Param, + { + (windows_core::Interface::vtable(self).SetDatabaseInformation)(windows_core::Interface::as_raw(self), bstrdbdirectory.param().abi(), bstrlogdirectory.param().abi(), bstrsharedfolder.param().abi(), bforceoverwrite.param().abi()).ok() + } + pub unsafe fn SetParentCAInformation(&self, bstrcaconfiguration: P0) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).SetParentCAInformation)(windows_core::Interface::as_raw(self), bstrcaconfiguration.param().abi()).ok() + } + pub unsafe fn SetWebCAInformation(&self, bstrcaconfiguration: P0) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).SetWebCAInformation)(windows_core::Interface::as_raw(self), bstrcaconfiguration.param().abi()).ok() + } + pub unsafe fn Install(&self) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).Install)(windows_core::Interface::as_raw(self)).ok() + } + pub unsafe fn PreUnInstall(&self, bclientonly: P0) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).PreUnInstall)(windows_core::Interface::as_raw(self), bclientonly.param().abi()).ok() + } + pub unsafe fn PostUnInstall(&self) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).PostUnInstall)(windows_core::Interface::as_raw(self)).ok() + } +} +#[cfg(feature = "Win32_System_Com")] +#[repr(C)] +pub struct ICertSrvSetup_Vtbl { + pub base__: super::super::System::Com::IDispatch_Vtbl, + pub CAErrorId: unsafe extern "system" fn(*mut core::ffi::c_void, *mut i32) -> windows_core::HRESULT, + pub CAErrorString: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, + pub InitializeDefaults: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::VARIANT_BOOL, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, + pub GetCASetupProperty: unsafe extern "system" fn(*mut core::ffi::c_void, CASetupProperty, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, + pub SetCASetupProperty: unsafe extern "system" fn(*mut core::ffi::c_void, CASetupProperty, *const core::mem::MaybeUninit) -> windows_core::HRESULT, + pub IsPropertyEditable: unsafe extern "system" fn(*mut core::ffi::c_void, CASetupProperty, *mut super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, + pub GetSupportedCATypes: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, + pub GetProviderNameList: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, + pub GetKeyLengthList: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, + pub GetHashAlgorithmList: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, + pub GetPrivateKeyContainerList: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, + #[cfg(feature = "Win32_System_Com")] + pub GetExistingCACertificates: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_System_Com"))] + GetExistingCACertificates: usize, + #[cfg(feature = "Win32_System_Com")] + pub CAImportPFX: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, core::mem::MaybeUninit, super::super::Foundation::VARIANT_BOOL, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_System_Com"))] + CAImportPFX: usize, + pub SetCADistinguishedName: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, super::super::Foundation::VARIANT_BOOL, super::super::Foundation::VARIANT_BOOL, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, + pub SetDatabaseInformation: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit, core::mem::MaybeUninit, core::mem::MaybeUninit, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, + pub SetParentCAInformation: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit) -> windows_core::HRESULT, + pub SetWebCAInformation: unsafe extern "system" fn(*mut core::ffi::c_void, core::mem::MaybeUninit) -> windows_core::HRESULT, + pub Install: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, + pub PreUnInstall: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::VARIANT_BOOL) -> windows_core::HRESULT, + pub PostUnInstall: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, +} +#[cfg(feature = "Win32_System_Com")] +windows_core::imp::define_interface!(ICertSrvSetupKeyInformation, ICertSrvSetupKeyInformation_Vtbl, 0x6ba73778_36da_4c39_8a85_bcfa7d000793); +#[cfg(feature = "Win32_System_Com")] +impl core::ops::Deref for ICertSrvSetupKeyInformation { + type Target = super::super::System::Com::IDispatch; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +#[cfg(feature = "Win32_System_Com")] +windows_core::imp::interface_hierarchy!(ICertSrvSetupKeyInformation, windows_core::IUnknown, super::super::System::Com::IDispatch); +#[cfg(feature = "Win32_System_Com")] +impl ICertSrvSetupKeyInformation { + pub unsafe fn ProviderName(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).ProviderName)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn SetProviderName(&self, bstrval: P0) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).SetProviderName)(windows_core::Interface::as_raw(self), bstrval.param().abi()).ok() + } + pub unsafe fn Length(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).Length)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) + } + pub unsafe fn SetLength(&self, lval: i32) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).SetLength)(windows_core::Interface::as_raw(self), lval).ok() + } + pub unsafe fn Existing(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).Existing)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) + } + pub unsafe fn SetExisting(&self, bval: P0) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).SetExisting)(windows_core::Interface::as_raw(self), bval.param().abi()).ok() + } + pub unsafe fn ContainerName(&self) -> windows_core::Result { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).ContainerName)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + pub unsafe fn SetContainerName(&self, bstrval: P0) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).SetContainerName)(windows_core::Interface::as_raw(self), bstrval.param().abi()).ok() } pub unsafe fn HashAlgorithm(&self) -> windows_core::Result { let mut result__ = core::mem::zeroed(); @@ -3390,6 +3814,12 @@ pub const ALG_TYPE_RSA: u32 = 1024u32; pub const ALG_TYPE_SECURECHANNEL: u32 = 3072u32; pub const ALG_TYPE_STREAM: u32 = 2048u32; pub const ALG_TYPE_THIRDPARTY: u32 = 4096u32; +pub const AT_ECDHE_P256: u32 = 6u32; +pub const AT_ECDHE_P384: u32 = 7u32; +pub const AT_ECDHE_P521: u32 = 8u32; +pub const AT_ECDSA_P256: u32 = 3u32; +pub const AT_ECDSA_P384: u32 = 4u32; +pub const AT_ECDSA_P521: u32 = 5u32; pub const AT_KEYEXCHANGE: CERT_KEY_SPEC = CERT_KEY_SPEC(1u32); pub const AT_SIGNATURE: CERT_KEY_SPEC = CERT_KEY_SPEC(2u32); pub const AUDIT_CARD_DELETE: windows_core::HRESULT = windows_core::HRESULT(0x40050201_u32 as _); @@ -3401,6 +3831,11 @@ pub const AUDIT_STORE_EXPORT: windows_core::HRESULT = windows_core::HRESULT(0x40 pub const AUDIT_STORE_IMPORT: windows_core::HRESULT = windows_core::HRESULT(0x40050203_u32 as _); pub const AUTHTYPE_CLIENT: HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE = HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE(1u32); pub const AUTHTYPE_SERVER: HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE = HTTPSPOLICY_CALLBACK_DATA_AUTH_TYPE(2u32); +pub const AdminCreateDeleteDirAc: CARD_DIRECTORY_ACCESS_CONDITION = CARD_DIRECTORY_ACCESS_CONDITION(2i32); +pub const AdminReadWriteAc: CARD_FILE_ACCESS_CONDITION = CARD_FILE_ACCESS_CONDITION(6i32); +pub const AdministratorPin: SECRET_PURPOSE = SECRET_PURPOSE(4i32); +pub const AlphaNumericPinType: SECRET_TYPE = SECRET_TYPE(0i32); +pub const AuthenticationPin: SECRET_PURPOSE = SECRET_PURPOSE(0i32); pub const BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_CA_FLAG: u32 = 2147483648u32; pub const BASIC_CONSTRAINTS_CERT_CHAIN_POLICY_END_ENTITY_FLAG: u32 = 1073741824u32; pub const BCRYPTBUFFER_VERSION: u32 = 0u32; @@ -3449,6 +3884,7 @@ pub const BCRYPT_CHAIN_MODE_GCM: windows_core::PCWSTR = windows_core::w!("Chaini pub const BCRYPT_CHAIN_MODE_NA: windows_core::PCWSTR = windows_core::w!("ChainingModeN/A"); pub const BCRYPT_CIPHER_INTERFACE: BCRYPT_INTERFACE = BCRYPT_INTERFACE(1u32); pub const BCRYPT_CIPHER_OPERATION: BCRYPT_OPERATION = BCRYPT_OPERATION(1u32); +pub const BCRYPT_COPY_AFTER_PADDING_CHECK_FAILURE_FLAG: u32 = 256u32; pub const BCRYPT_DESX_ALGORITHM: windows_core::PCWSTR = windows_core::w!("DESX"); pub const BCRYPT_DESX_CBC_ALG_HANDLE: BCRYPT_ALG_HANDLE = BCRYPT_ALG_HANDLE(545u32 as _); pub const BCRYPT_DESX_CFB_ALG_HANDLE: BCRYPT_ALG_HANDLE = BCRYPT_ALG_HANDLE(577u32 as _); @@ -3530,6 +3966,7 @@ pub const BCRYPT_ECC_CURVE_X962P256V1: windows_core::PCWSTR = windows_core::w!(" pub const BCRYPT_ECC_FULLKEY_BLOB_V1: u32 = 1u32; pub const BCRYPT_ECC_PARAMETERS: windows_core::PCWSTR = windows_core::w!("ECCParameters"); pub const BCRYPT_ECC_PARAMETERS_MAGIC: u32 = 1346585413u32; +pub const BCRYPT_ECC_PARAMETER_HEADER_V1: u32 = 1u32; pub const BCRYPT_ECC_PRIME_MONTGOMERY_CURVE: ECC_CURVE_TYPE_ENUM = ECC_CURVE_TYPE_ENUM(3i32); pub const BCRYPT_ECC_PRIME_SHORT_WEIERSTRASS_CURVE: ECC_CURVE_TYPE_ENUM = ECC_CURVE_TYPE_ENUM(1i32); pub const BCRYPT_ECC_PRIME_TWISTED_EDWARDS_CURVE: ECC_CURVE_TYPE_ENUM = ECC_CURVE_TYPE_ENUM(2i32); @@ -3755,6 +4192,66 @@ pub const CALG_THIRDPARTY_KEY_EXCHANGE: ALG_ID = ALG_ID(45056u32); pub const CALG_THIRDPARTY_SIGNATURE: ALG_ID = ALG_ID(12288u32); pub const CALG_TLS1PRF: ALG_ID = ALG_ID(32778u32); pub const CALG_TLS1_MASTER: ALG_ID = ALG_ID(19462u32); +pub const CARD_3DES_112_ALGORITHM: windows_core::PCWSTR = windows_core::w!("3DES_112"); +pub const CARD_3DES_ALGORITHM: windows_core::PCWSTR = windows_core::w!("3DES"); +pub const CARD_AES_ALGORITHM: windows_core::PCWSTR = windows_core::w!("AES"); +pub const CARD_ASYMMETRIC_OPERATION: u32 = 2u32; +pub const CARD_AUTHENTICATE_CURRENT_VERSION: u32 = 7u32; +pub const CARD_AUTHENTICATE_GENERATE_SESSION_PIN: u32 = 268435456u32; +pub const CARD_AUTHENTICATE_PIN_CHALLENGE_RESPONSE: u32 = 1u32; +pub const CARD_AUTHENTICATE_PIN_PIN: u32 = 2u32; +pub const CARD_AUTHENTICATE_RESPONSE_CURRENT_VERSION: u32 = 7u32; +pub const CARD_AUTHENTICATE_RESPONSE_VERSION_SEVEN: u32 = 7u32; +pub const CARD_AUTHENTICATE_SESSION_PIN: u32 = 536870912u32; +pub const CARD_AUTHENTICATE_VERSION_SEVEN: u32 = 7u32; +pub const CARD_BUFFER_SIZE_ONLY: u32 = 536870912u32; +pub const CARD_CACHE_FILE_CURRENT_VERSION: u32 = 1u32; +pub const CARD_CAPABILITIES_CURRENT_VERSION: u32 = 1u32; +pub const CARD_CHAIN_MODE_CBC: windows_core::PCWSTR = windows_core::w!("ChainingModeCBC"); +pub const CARD_CHANGE_AUTHENTICATOR_CURRENT_VERSION: u32 = 7u32; +pub const CARD_CHANGE_AUTHENTICATOR_RESPONSE_CURRENT_VERSION: u32 = 7u32; +pub const CARD_CHANGE_AUTHENTICATOR_RESPONSE_VERSION_SEVEN: u32 = 7u32; +pub const CARD_CHANGE_AUTHENTICATOR_VERSION_SEVEN: u32 = 7u32; +pub const CARD_CIPHER_OPERATION: u32 = 1u32; +pub const CARD_CREATE_CONTAINER_KEY_GEN: u32 = 1u32; +pub const CARD_CREATE_CONTAINER_KEY_IMPORT: u32 = 2u32; +pub const CARD_DATA_CURRENT_VERSION: u32 = 7u32; +pub const CARD_DATA_VALUE_UNKNOWN: u32 = 4294967295u32; +pub const CARD_DATA_VERSION_FIVE: u32 = 5u32; +pub const CARD_DATA_VERSION_FOUR: u32 = 4u32; +pub const CARD_DATA_VERSION_SEVEN: u32 = 7u32; +pub const CARD_DATA_VERSION_SIX: u32 = 6u32; +pub const CARD_DERIVE_KEY_CURRENT_VERSION: u32 = 2u32; +pub const CARD_DERIVE_KEY_VERSION: u32 = 1u32; +pub const CARD_DERIVE_KEY_VERSION_TWO: u32 = 2u32; +pub const CARD_DH_AGREEMENT_INFO_VERSION: u32 = 2u32; +pub const CARD_FILE_INFO_CURRENT_VERSION: u32 = 1u32; +pub const CARD_FREE_SPACE_INFO_CURRENT_VERSION: u32 = 1u32; +pub const CARD_IMPORT_KEYPAIR_CURRENT_VERSION: u32 = 7u32; +pub const CARD_IMPORT_KEYPAIR_VERSION_SEVEN: u32 = 7u32; +pub const CARD_KEY_IMPORT_ECC_KEYEST: u32 = 4u32; +pub const CARD_KEY_IMPORT_PLAIN_TEXT: u32 = 1u32; +pub const CARD_KEY_IMPORT_RSA_KEYEST: u32 = 2u32; +pub const CARD_KEY_IMPORT_SHARED_SYMMETRIC: u32 = 8u32; +pub const CARD_KEY_SIZES_CURRENT_VERSION: u32 = 1u32; +pub const CARD_PADDING_INFO_PRESENT: u32 = 1073741824u32; +pub const CARD_PADDING_NONE: u32 = 1u32; +pub const CARD_PADDING_OAEP: u32 = 8u32; +pub const CARD_PADDING_PKCS1: u32 = 2u32; +pub const CARD_PADDING_PSS: u32 = 4u32; +pub const CARD_PIN_SILENT_CONTEXT: u32 = 64u32; +pub const CARD_PIN_STRENGTH_PLAINTEXT: u32 = 1u32; +pub const CARD_PIN_STRENGTH_SESSION_PIN: u32 = 2u32; +pub const CARD_RETURN_KEY_HANDLE: u32 = 16777216u32; +pub const CARD_RSA_KEY_DECRYPT_INFO_CURRENT_VERSION: u32 = 2u32; +pub const CARD_RSA_KEY_DECRYPT_INFO_VERSION_ONE: u32 = 1u32; +pub const CARD_RSA_KEY_DECRYPT_INFO_VERSION_TWO: u32 = 2u32; +pub const CARD_SECURE_KEY_INJECTION_NO_CARD_MODE: u32 = 1u32; +pub const CARD_SIGNING_INFO_BASIC_VERSION: u32 = 1u32; +pub const CARD_SIGNING_INFO_CURRENT_VERSION: u32 = 2u32; +pub const CCP_ASSOCIATED_ECDH_KEY: windows_core::PCWSTR = windows_core::w!("Associated ECDH Key"); +pub const CCP_CONTAINER_INFO: windows_core::PCWSTR = windows_core::w!("Container Info"); +pub const CCP_PIN_IDENTIFIER: windows_core::PCWSTR = windows_core::w!("PIN Identifier"); pub const CERT_ACCESS_STATE_GP_SYSTEM_STORE_FLAG: u32 = 8u32; pub const CERT_ACCESS_STATE_LM_SYSTEM_STORE_FLAG: u32 = 4u32; pub const CERT_ACCESS_STATE_PROP_ID: u32 = 14u32; @@ -4486,9 +4983,11 @@ pub const CERT_SUBJECT_OCSP_AUTHORITY_INFO_ACCESS_PROP_ID: u32 = 85u32; pub const CERT_SUBJECT_PUBLIC_KEY_MD5_HASH_PROP_ID: u32 = 25u32; pub const CERT_SUBJECT_PUB_KEY_BIT_LENGTH_PROP_ID: u32 = 92u32; pub const CERT_SYSTEM_STORE_CURRENT_SERVICE_ID: u32 = 4u32; +pub const CERT_SYSTEM_STORE_CURRENT_USER: u32 = 65536u32; pub const CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY_ID: u32 = 7u32; pub const CERT_SYSTEM_STORE_CURRENT_USER_ID: u32 = 1u32; pub const CERT_SYSTEM_STORE_DEFER_READ_FLAG: u32 = 536870912u32; +pub const CERT_SYSTEM_STORE_LOCAL_MACHINE: u32 = 131072u32; pub const CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE_ID: u32 = 9u32; pub const CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY_ID: u32 = 8u32; pub const CERT_SYSTEM_STORE_LOCAL_MACHINE_ID: u32 = 2u32; @@ -4582,6 +5081,26 @@ pub const CERT_VERIFY_TRUSTED_SIGNERS_FLAG: u32 = 2u32; pub const CERT_VERIFY_UPDATED_CTL_FLAG: u32 = 1u32; pub const CERT_X500_NAME_STR: CERT_STRING_TYPE = CERT_STRING_TYPE(3u32); pub const CERT_XML_NAME_STR: u32 = 4u32; +pub const CKP_BLOCK_LENGTH: windows_core::PCWSTR = windows_core::w!("BlockLength"); +pub const CKP_CHAINING_MODE: windows_core::PCWSTR = windows_core::w!("ChainingMode"); +pub const CKP_INITIALIZATION_VECTOR: windows_core::PCWSTR = windows_core::w!("IV"); +pub const CLMD_FILE_TAG_CARD_AUTH_CERT: u32 = 6275329u32; +pub const CLMD_FILE_TAG_CARD_CAPABILITY_CONTAINER: u32 = 6275335u32; +pub const CLMD_FILE_TAG_CHUID: u32 = 6275330u32; +pub const CLMD_FILE_TAG_FACIAL_IMAGE: u32 = 6275336u32; +pub const CLMD_FILE_TAG_FINGERPRINT: u32 = 6275331u32; +pub const CLMD_FILE_TAG_FIRST_RETIRED_KEY_MGMT_KEY: u32 = 6275341u32; +pub const CLMD_FILE_TAG_KEY_HISTORY: u32 = 6275340u32; +pub const CLMD_FILE_TAG_KEY_MGMT_CERT: u32 = 6275339u32; +pub const CLMD_FILE_TAG_LAST_RETIRED_KEY_MGMT_KEY: u32 = 6275360u32; +pub const CLMD_FILE_TAG_PIV_AUTH_CERT: u32 = 6275333u32; +pub const CLMD_FILE_TAG_PRINTED_INFORMATION: u32 = 6275337u32; +pub const CLMD_FILE_TAG_SECURITY_OBJECT: u32 = 6275334u32; +pub const CLMD_FILE_TAG_SIG_CERT: u32 = 6275338u32; +pub const CLMD_FILE_TAG_UNSIGNED_CHUID: u32 = 6275332u32; +pub const CLMD_PIV_CERT_DATA_CURRENT_VERSION: u32 = 0u32; +pub const CLMD_PIV_GENERATE_ASYMMETRIC_KEY_CURRENT_VERSION: u32 = 0u32; +pub const CLMD_PIV_PUBLIC_KEY_DATA_CURRENT_VERSION: u32 = 0u32; pub const CMC_ADD_ATTRIBUTES: windows_core::PCSTR = windows_core::PCSTR(63i32 as _); pub const CMC_ADD_EXTENSIONS: windows_core::PCSTR = windows_core::PCSTR(62i32 as _); pub const CMC_DATA: windows_core::PCSTR = windows_core::PCSTR(59i32 as _); @@ -4766,6 +5285,9 @@ pub const CMSG_VERSION_PARAM: u32 = 30u32; pub const CMS_SIGNER_INFO: windows_core::PCSTR = windows_core::PCSTR(501i32 as _); pub const CNG_RSA_PRIVATE_KEY_BLOB: windows_core::PCSTR = windows_core::PCSTR(83i32 as _); pub const CNG_RSA_PUBLIC_KEY_BLOB: windows_core::PCSTR = windows_core::PCSTR(72i32 as _); +pub const CONTAINER_INFO_CURRENT_VERSION: u32 = 1u32; +pub const CONTAINER_MAP_DEFAULT_CONTAINER: u32 = 2u32; +pub const CONTAINER_MAP_VALID_CONTAINER: u32 = 1u32; pub const CONTEXT_OID_CAPI2_ANY: windows_core::PCSTR = windows_core::PCSTR(5i32 as _); pub const CONTEXT_OID_CERTIFICATE: windows_core::PCSTR = windows_core::PCSTR(1i32 as _); pub const CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC: windows_core::PCSTR = windows_core::s!("ContextDllCreateObjectContext"); @@ -4773,6 +5295,41 @@ pub const CONTEXT_OID_CRL: windows_core::PCSTR = windows_core::PCSTR(2i32 as _); pub const CONTEXT_OID_CTL: windows_core::PCSTR = windows_core::PCSTR(3i32 as _); pub const CONTEXT_OID_OCSP_RESP: windows_core::PCSTR = windows_core::PCSTR(6i32 as _); pub const CONTEXT_OID_PKCS7: windows_core::PCSTR = windows_core::PCSTR(4i32 as _); +pub const CP_CACHE_MODE_GLOBAL_CACHE: u32 = 1u32; +pub const CP_CACHE_MODE_NO_CACHE: u32 = 3u32; +pub const CP_CACHE_MODE_SESSION_ONLY: u32 = 2u32; +pub const CP_CARD_AUTHENTICATED_STATE: windows_core::PCWSTR = windows_core::w!("Authenticated State"); +pub const CP_CARD_CACHE_MODE: windows_core::PCWSTR = windows_core::w!("Cache Mode"); +pub const CP_CARD_CAPABILITIES: windows_core::PCWSTR = windows_core::w!("Capabilities"); +pub const CP_CARD_FREE_SPACE: windows_core::PCWSTR = windows_core::w!("Free Space"); +pub const CP_CARD_GUID: windows_core::PCWSTR = windows_core::w!("Card Identifier"); +pub const CP_CARD_KEYSIZES: windows_core::PCWSTR = windows_core::w!("Key Sizes"); +pub const CP_CARD_LIST_PINS: windows_core::PCWSTR = windows_core::w!("PIN List"); +pub const CP_CARD_PIN_INFO: windows_core::PCWSTR = windows_core::w!("PIN Information"); +pub const CP_CARD_PIN_STRENGTH_CHANGE: windows_core::PCWSTR = windows_core::w!("PIN Strength Change"); +pub const CP_CARD_PIN_STRENGTH_UNBLOCK: windows_core::PCWSTR = windows_core::w!("PIN Strength Unblock"); +pub const CP_CARD_PIN_STRENGTH_VERIFY: windows_core::PCWSTR = windows_core::w!("PIN Strength Verify"); +pub const CP_CARD_PIV: windows_core::PCWSTR = windows_core::w!("PIV Card"); +pub const CP_CARD_READ_ONLY: windows_core::PCWSTR = windows_core::w!("Read Only Mode"); +pub const CP_CARD_SERIAL_NO: windows_core::PCWSTR = windows_core::w!("Card Serial Number"); +pub const CP_CHAINING_MODES: windows_core::PCWSTR = windows_core::w!("Chaining Modes"); +pub const CP_ENUM_ALGORITHMS: windows_core::PCWSTR = windows_core::w!("Algorithms"); +pub const CP_KEY_IMPORT_SUPPORT: windows_core::PCWSTR = windows_core::w!("Key Import Support"); +pub const CP_PADDING_SCHEMES: windows_core::PCWSTR = windows_core::w!("Padding Schemes"); +pub const CP_PARENT_WINDOW: windows_core::PCWSTR = windows_core::w!("Parent Window"); +pub const CP_PIN_CONTEXT_STRING: windows_core::PCWSTR = windows_core::w!("PIN Context String"); +pub const CP_PIV_CARD_CAPABILITY_CONTAINER: windows_core::PCWSTR = windows_core::w!("PIV CCC"); +pub const CP_PIV_CARD_HOLDER_UNIQUE_IDENTIFIER: windows_core::PCWSTR = windows_core::w!("PIV CHUID"); +pub const CP_PIV_CARD_HOLDER_UNSIGNED_UNIQUE_IDENTIFIER: windows_core::PCWSTR = windows_core::w!("PIV UCHUID"); +pub const CP_PIV_CERTIFICATE: windows_core::PCWSTR = windows_core::w!("PIV Certificate"); +pub const CP_PIV_FACIAL_IMAGE: windows_core::PCWSTR = windows_core::w!("PIV Facial Image"); +pub const CP_PIV_FINGERPRINT: windows_core::PCWSTR = windows_core::w!("PIV Fingerprint"); +pub const CP_PIV_GENERATE_KEY: windows_core::PCWSTR = windows_core::w!("PIV Generate Key"); +pub const CP_PIV_KEY_HISTORY_OBJECT: windows_core::PCWSTR = windows_core::w!("PIV Key History Object"); +pub const CP_PIV_PRINTED_INFORMATION: windows_core::PCWSTR = windows_core::w!("PIV Printed Information"); +pub const CP_PIV_PUBLIC_KEY: windows_core::PCWSTR = windows_core::w!("PIV Public Key"); +pub const CP_PIV_SECURITY_OBJECT: windows_core::PCWSTR = windows_core::w!("PIV Security Object"); +pub const CP_SUPPORTS_WIN_X509_ENROLLMENT: windows_core::PCWSTR = windows_core::w!("Supports Windows x.509 Enrollment"); pub const CREDENTIAL_OID_PASSWORD_CREDENTIALS: i32 = 2i32; pub const CREDENTIAL_OID_PASSWORD_CREDENTIALS_A: windows_core::PCSTR = windows_core::PCSTR(1i32 as _); pub const CREDENTIAL_OID_PASSWORD_CREDENTIALS_W: windows_core::PCSTR = windows_core::PCSTR(2i32 as _); @@ -4946,6 +5503,7 @@ pub const CRYPT_EXCLUSIVE: CRYPT_CONTEXT_CONFIG_FLAGS = CRYPT_CONTEXT_CONFIG_FLA pub const CRYPT_EXPORT: u32 = 4u32; pub const CRYPT_EXPORTABLE: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(1u32); pub const CRYPT_EXPORT_KEY: u32 = 64u32; +pub const CRYPT_EXTERNAL_SIGNATURE_LENGTH: u32 = 136u32; pub const CRYPT_EXT_OR_ATTR_OID_GROUP_ID: u32 = 6u32; pub const CRYPT_FAILED: u32 = 0u32; pub const CRYPT_FASTSGC: u32 = 2u32; @@ -5011,7 +5569,10 @@ pub const CRYPT_LOCALIZED_NAME_OID: windows_core::PCSTR = windows_core::s!("Loca pub const CRYPT_MAC: u32 = 32u32; pub const CRYPT_MACHINE_DEFAULT: u32 = 1u32; pub const CRYPT_MACHINE_KEYSET: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(32u32); +pub const CRYPT_MAC_RESOURCE: windows_core::PCWSTR = windows_core::w!("#667"); +pub const CRYPT_MAC_RESOURCE_NUMBER: u32 = 667u32; pub const CRYPT_MATCH_ANY_ENCODING_TYPE: u32 = 4294967295u32; +pub const CRYPT_MAX_PROVIDER_ID: u32 = 999u32; pub const CRYPT_MESSAGE_BARE_CONTENT_OUT_FLAG: u32 = 1u32; pub const CRYPT_MESSAGE_ENCAPSULATED_CONTENT_OUT_FLAG: u32 = 2u32; pub const CRYPT_MESSAGE_KEYID_RECIPIENT_FLAG: u32 = 4u32; @@ -5122,6 +5683,8 @@ pub const CRYPT_PREGEN: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(64u32); pub const CRYPT_PRIORITY_BOTTOM: u32 = 4294967295u32; pub const CRYPT_PRIORITY_TOP: u32 = 0u32; pub const CRYPT_PROCESS_ISOLATE: CRYPT_IMAGE_REF_FLAGS = CRYPT_IMAGE_REF_FLAGS(65536u32); +pub const CRYPT_PROVIDER_IOCTL__GET_SCHANNEL_INTERFACE: u32 = 4145180u32; +pub const CRYPT_PROVSTRUC_VERSION_V3: u32 = 3u32; pub const CRYPT_PROXY_CACHE_RETRIEVAL: u32 = 2097152u32; pub const CRYPT_PSTORE: u32 = 2u32; pub const CRYPT_PUBKEY_ALG_OID_GROUP_ID: u32 = 3u32; @@ -5145,6 +5708,9 @@ pub const CRYPT_SGC: u32 = 1u32; pub const CRYPT_SGCKEY: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(8192u32); pub const CRYPT_SGC_ENUM: u32 = 4u32; pub const CRYPT_SIGN_ALG_OID_GROUP_ID: u32 = 4u32; +pub const CRYPT_SIG_RESOURCE: windows_core::PCWSTR = windows_core::w!("#666"); +pub const CRYPT_SIG_RESOURCE_NUMBER: u32 = 666u32; +pub const CRYPT_SIG_RESOURCE_VERSION: u32 = 256u32; pub const CRYPT_SILENT: u32 = 64u32; pub const CRYPT_SORTED_CTL_ENCODE_HASHED_SUBJECT_IDENTIFIER_FLAG: u32 = 65536u32; pub const CRYPT_SSL2_FALLBACK: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(2u32); @@ -5296,6 +5862,9 @@ pub const CRYPT_XML_X509DATA_TYPE_ISSUER_SERIAL: CRYPT_XML_X509DATA_TYPE = CRYPT pub const CRYPT_XML_X509DATA_TYPE_SKI: CRYPT_XML_X509DATA_TYPE = CRYPT_XML_X509DATA_TYPE(2u32); pub const CRYPT_XML_X509DATA_TYPE_SUBJECT_NAME: CRYPT_XML_X509DATA_TYPE = CRYPT_XML_X509DATA_TYPE(3u32); pub const CRYPT_Y_ONLY: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(1u32); +pub const CSF_AUTHENTICATE: windows_core::PCWSTR = windows_core::w!("Authenticate"); +pub const CSF_CHANGE_AUTHENTICATOR: windows_core::PCWSTR = windows_core::w!("Change Authenticator"); +pub const CSF_IMPORT_KEYPAIR: windows_core::PCWSTR = windows_core::w!("Import Key Pair"); pub const CTL_ANY_SUBJECT_TYPE: u32 = 1u32; pub const CTL_CERT_SUBJECT_TYPE: u32 = 2u32; pub const CTL_ENTRY_FROM_PROP_CHAIN_FLAG: u32 = 1u32; @@ -5309,11 +5878,16 @@ pub const CTL_FIND_SUBJECT: CERT_FIND_TYPE = CERT_FIND_TYPE(4u32); pub const CTL_FIND_USAGE: CERT_FIND_TYPE = CERT_FIND_TYPE(3u32); pub const CTL_V1: u32 = 0u32; pub const CUR_BLOB_VERSION: u32 = 2u32; +pub const CUR_OFFLOAD_VERSION: u32 = 1u32; +pub const ChallengeResponsePinType: SECRET_TYPE = SECRET_TYPE(2i32); pub const DSA_FIPS186_2: DSAFIPSVERSION_ENUM = DSAFIPSVERSION_ENUM(0i32); pub const DSA_FIPS186_3: DSAFIPSVERSION_ENUM = DSAFIPSVERSION_ENUM(1i32); pub const DSA_HASH_ALGORITHM_SHA1: HASHALGORITHM_ENUM = HASHALGORITHM_ENUM(0i32); pub const DSA_HASH_ALGORITHM_SHA256: HASHALGORITHM_ENUM = HASHALGORITHM_ENUM(1i32); pub const DSA_HASH_ALGORITHM_SHA512: HASHALGORITHM_ENUM = HASHALGORITHM_ENUM(2i32); +pub const DTLS1_0_PROTOCOL_VERSION: u32 = 65279u32; +pub const DTLS1_2_PROTOCOL_VERSION: u32 = 65277u32; +pub const DigitalSignaturePin: SECRET_PURPOSE = SECRET_PURPOSE(1i32); pub const DirectionDecrypt: Direction = Direction(2i32); pub const DirectionEncrypt: Direction = Direction(1i32); pub const ECC_CMS_SHARED_INFO: windows_core::PCSTR = windows_core::PCSTR(77i32 as _); @@ -5391,6 +5965,11 @@ pub const E_ICARD_UI_INITIALIZATION: windows_core::HRESULT = windows_core::HRESU pub const E_ICARD_UNKNOWN_REFERENCE: windows_core::HRESULT = windows_core::HRESULT(0xC0050183_u32 as _); pub const E_ICARD_UNTRUSTED: windows_core::HRESULT = windows_core::HRESULT(0xC0050112_u32 as _); pub const E_ICARD_USERCANCELLED: windows_core::HRESULT = windows_core::HRESULT(0xC0050113_u32 as _); +pub const EmptyPinType: SECRET_TYPE = SECRET_TYPE(3i32); +pub const EncryptionPin: SECRET_PURPOSE = SECRET_PURPOSE(2i32); +pub const EveryoneReadAdminWriteAc: CARD_FILE_ACCESS_CONDITION = CARD_FILE_ACCESS_CONDITION(3i32); +pub const EveryoneReadUserWriteAc: CARD_FILE_ACCESS_CONDITION = CARD_FILE_ACCESS_CONDITION(1i32); +pub const ExternalPinType: SECRET_TYPE = SECRET_TYPE(1i32); pub const HP_ALGID: u32 = 1u32; pub const HP_HASHSIZE: u32 = 4u32; pub const HP_HASHVAL: CRYPT_SET_HASH_PARAM = CRYPT_SET_HASH_PARAM(2u32); @@ -5401,6 +5980,8 @@ pub const IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_1: u32 = 1u32; pub const IFX_RSA_KEYGEN_VUL_AFFECTED_LEVEL_2: u32 = 2u32; pub const IFX_RSA_KEYGEN_VUL_NOT_AFFECTED: u32 = 0u32; pub const INTERNATIONAL_USAGE: u32 = 1u32; +pub const InvalidAc: CARD_FILE_ACCESS_CONDITION = CARD_FILE_ACCESS_CONDITION(0i32); +pub const InvalidDirAc: CARD_DIRECTORY_ACCESS_CONDITION = CARD_DIRECTORY_ACCESS_CONDITION(0i32); pub const KDF_ALGORITHMID: u32 = 8u32; pub const KDF_CONTEXT: u32 = 14u32; pub const KDF_GENERIC_PARAMETER: u32 = 17u32; @@ -5487,9 +6068,13 @@ pub const LEGACY_DSA_V2_PUBLIC_BLOB: windows_core::PCWSTR = windows_core::w!("V2 pub const LEGACY_RSAPRIVATE_BLOB: windows_core::PCWSTR = windows_core::w!("CAPIPRIVATEBLOB"); pub const LEGACY_RSAPUBLIC_BLOB: windows_core::PCWSTR = windows_core::w!("CAPIPUBLICBLOB"); pub const MAXUIDLEN: u32 = 64u32; +pub const MAX_CONTAINER_NAME_LEN: u32 = 39u32; +pub const MAX_PINS: u32 = 8u32; pub const MICROSOFT_ROOT_CERT_CHAIN_POLICY_CHECK_APPLICATION_ROOT_FLAG: u32 = 131072u32; pub const MICROSOFT_ROOT_CERT_CHAIN_POLICY_DISABLE_FLIGHT_ROOT_FLAG: u32 = 262144u32; pub const MICROSOFT_ROOT_CERT_CHAIN_POLICY_ENABLE_TEST_ROOT_FLAG: u32 = 65536u32; +pub const MSCRYPT_ECC_MAX_CURVE_NAME_LENGTH: u32 = 255u32; +pub const MSCRYPT_ECC_MAX_OID_LENGTH: u32 = 255u32; pub const MS_DEF_DH_SCHANNEL_PROV: windows_core::PCWSTR = windows_core::w!("Microsoft DH SChannel Cryptographic Provider"); pub const MS_DEF_DH_SCHANNEL_PROV_A: windows_core::PCSTR = windows_core::s!("Microsoft DH SChannel Cryptographic Provider"); pub const MS_DEF_DH_SCHANNEL_PROV_W: windows_core::PCWSTR = windows_core::w!("Microsoft DH SChannel Cryptographic Provider"); @@ -5529,6 +6114,7 @@ pub const MS_PRIMITIVE_PROVIDER: windows_core::PCWSTR = windows_core::w!("Micros pub const MS_SCARD_PROV: windows_core::PCWSTR = windows_core::w!("Microsoft Base Smart Card Crypto Provider"); pub const MS_SCARD_PROV_A: windows_core::PCSTR = windows_core::s!("Microsoft Base Smart Card Crypto Provider"); pub const MS_SCARD_PROV_W: windows_core::PCWSTR = windows_core::w!("Microsoft Base Smart Card Crypto Provider"); +pub const MS_SCHANNEL_PROVIDER: windows_core::PCWSTR = windows_core::w!("Microsoft SSL Protocol Provider"); pub const MS_SMART_CARD_KEY_STORAGE_PROVIDER: windows_core::PCWSTR = windows_core::w!("Microsoft Smart Card Key Storage Provider"); pub const MS_STRONG_PROV: windows_core::PCWSTR = windows_core::w!("Microsoft Strong Cryptographic Provider"); pub const MS_STRONG_PROV_A: windows_core::PCSTR = windows_core::s!("Microsoft Strong Cryptographic Provider"); @@ -5820,6 +6406,20 @@ pub const NCRYPT_SILENT_FLAG: NCRYPT_FLAGS = NCRYPT_FLAGS(64u32); pub const NCRYPT_SMARTCARD_GUID_PROPERTY: windows_core::PCWSTR = windows_core::w!("SmartCardGuid"); pub const NCRYPT_SP800108_CTR_HMAC_ALGORITHM: windows_core::PCWSTR = windows_core::w!("SP800_108_CTR_HMAC"); pub const NCRYPT_SP80056A_CONCAT_ALGORITHM: windows_core::PCWSTR = windows_core::w!("SP800_56A_CONCAT"); +pub const NCRYPT_SSL_CIPHER_LENGTHS_BLOCK_PADDING: u32 = 1u32; +pub const NCRYPT_SSL_CIPHER_SUITE_EX_VERSION: u32 = 1u32; +pub const NCRYPT_SSL_CLIENT_FLAG: u32 = 1u32; +pub const NCRYPT_SSL_EAP_FAST_ID: u32 = 3u32; +pub const NCRYPT_SSL_EAP_ID: u32 = 0u32; +pub const NCRYPT_SSL_EAP_PRF_FIELD: u32 = 255u32; +pub const NCRYPT_SSL_EAP_TTLSV0_CHLNG_ID: u32 = 2u32; +pub const NCRYPT_SSL_EAP_TTLSV0_ID: u32 = 1u32; +pub const NCRYPT_SSL_EXTERNAL_PSK_FLAG: u32 = 1u32; +pub const NCRYPT_SSL_MAX_NAME_SIZE: u32 = 64u32; +pub const NCRYPT_SSL_RESUMPTION_PSK_FLAG: u32 = 2u32; +pub const NCRYPT_SSL_SERVER_FLAG: u32 = 2u32; +pub const NCRYPT_SSL_SIGN_INCLUDE_HASHOID: u32 = 1u32; +pub const NCRYPT_SSL_SIGN_USE_PSS_PADDING: u32 = 2u32; pub const NCRYPT_TPM12_PROVIDER: u32 = 65536u32; pub const NCRYPT_TPM_LOADABLE_KEY_BLOB: windows_core::PCWSTR = windows_core::w!("PcpTpmProtectedKeyBlob"); pub const NCRYPT_TPM_LOADABLE_KEY_BLOB_MAGIC: u32 = 1297371211u32; @@ -5860,6 +6460,7 @@ pub const NETSCAPE_SMIME_CERT_TYPE: u32 = 32u32; pub const NETSCAPE_SSL_CA_CERT_TYPE: u32 = 4u32; pub const NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE: u32 = 128u32; pub const NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE: u32 = 64u32; +pub const NonRepudiationPin: SECRET_PURPOSE = SECRET_PURPOSE(3i32); pub const OCSP_BASIC_BY_KEY_RESPONDER_ID: u32 = 2u32; pub const OCSP_BASIC_BY_NAME_RESPONDER_ID: u32 = 1u32; pub const OCSP_BASIC_GOOD_CERT_STATUS: u32 = 0u32; @@ -5879,6 +6480,13 @@ pub const OCSP_SUCCESSFUL_RESPONSE: u32 = 0u32; pub const OCSP_TRY_LATER_RESPONSE: u32 = 3u32; pub const OCSP_UNAUTHORIZED_RESPONSE: u32 = 6u32; pub const OPAQUEKEYBLOB: u32 = 9u32; +pub const PIN_CACHE_POLICY_CURRENT_VERSION: u32 = 6u32; +pub const PIN_CHANGE_FLAG_CHANGEPIN: u32 = 2u32; +pub const PIN_CHANGE_FLAG_UNBLOCK: u32 = 1u32; +pub const PIN_INFO_CURRENT_VERSION: u32 = 6u32; +pub const PIN_INFO_REQUIRE_SECURE_ENTRY: u32 = 1u32; +pub const PIN_SET_ALL_ROLES: u32 = 255u32; +pub const PIN_SET_NONE: u32 = 0u32; pub const PKCS12_ALLOW_OVERWRITE_KEY: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(16384u32); pub const PKCS12_ALWAYS_CNG_KSP: CRYPT_KEY_FLAGS = CRYPT_KEY_FLAGS(512u32); pub const PKCS12_CONFIG_REGPATH: windows_core::PCWSTR = windows_core::w!("Software\\Microsoft\\Windows\\CurrentVersion\\PFX"); @@ -6004,14 +6612,25 @@ pub const PUBLICKEYBLOB: u32 = 6u32; pub const PUBLICKEYBLOBEX: u32 = 10u32; pub const PVK_TYPE_FILE_NAME: SIGNER_PRIVATE_KEY_CHOICE = SIGNER_PRIVATE_KEY_CHOICE(1u32); pub const PVK_TYPE_KEYCONTAINER: SIGNER_PRIVATE_KEY_CHOICE = SIGNER_PRIVATE_KEY_CHOICE(2u32); +pub const PinCacheAlwaysPrompt: PIN_CACHE_POLICY_TYPE = PIN_CACHE_POLICY_TYPE(3i32); +pub const PinCacheNone: PIN_CACHE_POLICY_TYPE = PIN_CACHE_POLICY_TYPE(2i32); +pub const PinCacheNormal: PIN_CACHE_POLICY_TYPE = PIN_CACHE_POLICY_TYPE(0i32); +pub const PinCacheTimed: PIN_CACHE_POLICY_TYPE = PIN_CACHE_POLICY_TYPE(1i32); +pub const PrimaryCardPin: SECRET_PURPOSE = SECRET_PURPOSE(5i32); pub const RANDOM_PADDING: u32 = 2u32; pub const RECIPIENTPOLICYV1: u32 = 1u32; pub const RECIPIENTPOLICYV2: u32 = 2u32; pub const REPORT_NOT_ABLE_TO_EXPORT_PRIVATE_KEY: u32 = 2u32; pub const REPORT_NO_PRIVATE_KEY: u32 = 1u32; pub const REVOCATION_OID_CRL_REVOCATION: windows_core::PCSTR = windows_core::PCSTR(1i32 as _); +pub const ROLE_ADMIN: u32 = 2u32; +pub const ROLE_EVERYONE: u32 = 0u32; +pub const ROLE_PIN_ALWAYS: u32 = 3u32; +pub const ROLE_PUK: u32 = 4u32; +pub const ROLE_USER: u32 = 1u32; pub const RSA1024BIT_KEY: u32 = 67108864u32; pub const RSA_CSP_PUBLICKEYBLOB: windows_core::PCSTR = windows_core::PCSTR(19i32 as _); +pub const SCARD_PROVIDER_CARD_MODULE: u32 = 2147483649u32; pub const SCHANNEL_ENC_KEY: u32 = 1u32; pub const SCHANNEL_MAC_KEY: u32 = 0u32; pub const SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC: windows_core::PCSTR = windows_core::s!("SchemeDllRetrieveEncodedObjectW"); @@ -6042,12 +6661,23 @@ pub const SPC_INC_PE_DEBUG_INFO_FLAG: SIGNER_SIGN_FLAGS = SIGNER_SIGN_FLAGS(64u3 pub const SPC_INC_PE_IMPORT_ADDR_TABLE_FLAG: SIGNER_SIGN_FLAGS = SIGNER_SIGN_FLAGS(32u32); pub const SPC_INC_PE_PAGE_HASHES_FLAG: SIGNER_SIGN_FLAGS = SIGNER_SIGN_FLAGS(256u32); pub const SPC_INC_PE_RESOURCES_FLAG: SIGNER_SIGN_FLAGS = SIGNER_SIGN_FLAGS(128u32); +pub const SSL2_PROTOCOL_VERSION: u32 = 2u32; +pub const SSL3_PROTOCOL_VERSION: u32 = 768u32; +pub const SSL_CK_DES_192_EDE3_CBC_WITH_MD5: u32 = 458944u32; +pub const SSL_CK_DES_64_CBC_WITH_MD5: u32 = 393280u32; +pub const SSL_CK_IDEA_128_CBC_WITH_MD5: u32 = 327808u32; +pub const SSL_CK_RC2_128_CBC_EXPORT40_WITH_MD5: u32 = 262272u32; +pub const SSL_CK_RC2_128_CBC_WITH_MD5: u32 = 196736u32; +pub const SSL_CK_RC4_128_EXPORT40_WITH_MD5: u32 = 131200u32; +pub const SSL_CK_RC4_128_WITH_MD5: u32 = 65664u32; pub const SSL_ECCPUBLIC_BLOB: windows_core::PCWSTR = windows_core::w!("SSLECCPUBLICBLOB"); +pub const SSL_ECDSA_ALGORITHM: windows_core::PCWSTR = windows_core::w!("ECDSA"); pub const SSL_F12_ERROR_TEXT_LENGTH: u32 = 256u32; pub const SSL_HPKP_HEADER_COUNT: u32 = 2u32; pub const SSL_HPKP_PKP_HEADER_INDEX: u32 = 0u32; pub const SSL_HPKP_PKP_RO_HEADER_INDEX: u32 = 1u32; pub const SSL_KEY_PIN_ERROR_TEXT_LENGTH: u32 = 512u32; +pub const SSL_KEY_TYPE_PROPERTY: windows_core::PCWSTR = windows_core::w!("KEYTYPE"); pub const SSL_OBJECT_LOCATOR_CERT_VALIDATION_CONFIG_FUNC: windows_core::PCSTR = windows_core::s!("SslObjectLocatorInitializeCertValidationConfig"); pub const SSL_OBJECT_LOCATOR_ISSUER_LIST_FUNC: windows_core::PCSTR = windows_core::s!("SslObjectLocatorInitializeIssuerList"); pub const SSL_OBJECT_LOCATOR_PFX_FUNC: windows_core::PCSTR = windows_core::s!("SslObjectLocatorInitializePfx"); @@ -6085,6 +6715,64 @@ pub const TIME_VALID_OID_GET_CTL: windows_core::PCSTR = windows_core::PCSTR(1i32 pub const TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CERT: windows_core::PCSTR = windows_core::PCSTR(4i32 as _); pub const TIME_VALID_OID_GET_FRESHEST_CRL_FROM_CRL: windows_core::PCSTR = windows_core::PCSTR(5i32 as _); pub const TIME_VALID_OID_GET_OBJECT_FUNC: windows_core::PCSTR = windows_core::s!("TimeValidDllGetObject"); +pub const TLS1_0_PROTOCOL_VERSION: u32 = 769u32; +pub const TLS1_1_PROTOCOL_VERSION: u32 = 770u32; +pub const TLS1_2_PROTOCOL_VERSION: u32 = 771u32; +pub const TLS1_3_PROTOCOL_VERSION: u32 = 772u32; +pub const TLS1_PROTOCOL_VERSION: u32 = 769u32; +pub const TLS_AES_128_GCM_SHA256: u32 = 4865u32; +pub const TLS_AES_256_GCM_SHA384: u32 = 4866u32; +pub const TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA: u32 = 99u32; +pub const TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA: u32 = 19u32; +pub const TLS_DHE_DSS_WITH_AES_128_CBC_SHA: u32 = 50u32; +pub const TLS_DHE_DSS_WITH_AES_128_CBC_SHA256: u32 = 64u32; +pub const TLS_DHE_DSS_WITH_AES_256_CBC_SHA: u32 = 56u32; +pub const TLS_DHE_DSS_WITH_AES_256_CBC_SHA256: u32 = 106u32; +pub const TLS_DHE_DSS_WITH_DES_CBC_SHA: u32 = 18u32; +pub const TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA: u32 = 22u32; +pub const TLS_DHE_RSA_WITH_AES_128_CBC_SHA: u32 = 51u32; +pub const TLS_DHE_RSA_WITH_AES_128_GCM_SHA256: u32 = 158u32; +pub const TLS_DHE_RSA_WITH_AES_256_CBC_SHA: u32 = 57u32; +pub const TLS_DHE_RSA_WITH_AES_256_GCM_SHA384: u32 = 159u32; +pub const TLS_ECC_P256_CURVE_KEY_TYPE: u32 = 23u32; +pub const TLS_ECC_P384_CURVE_KEY_TYPE: u32 = 24u32; +pub const TLS_ECC_P521_CURVE_KEY_TYPE: u32 = 25u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA: u32 = 49161u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256: u32 = 49187u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256: u32 = 49195u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA: u32 = 49162u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384: u32 = 49188u32; +pub const TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384: u32 = 49196u32; +pub const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA: u32 = 49171u32; +pub const TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256: u32 = 49191u32; +pub const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256: u32 = 49199u32; +pub const TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA: u32 = 49172u32; +pub const TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384: u32 = 49192u32; +pub const TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384: u32 = 49200u32; +pub const TLS_PSK_EXCHANGE: windows_core::PCWSTR = windows_core::w!("PSK"); +pub const TLS_PSK_WITH_AES_128_CBC_SHA256: u32 = 174u32; +pub const TLS_PSK_WITH_AES_128_GCM_SHA256: u32 = 168u32; +pub const TLS_PSK_WITH_AES_256_CBC_SHA384: u32 = 175u32; +pub const TLS_PSK_WITH_AES_256_GCM_SHA384: u32 = 169u32; +pub const TLS_PSK_WITH_NULL_SHA256: u32 = 176u32; +pub const TLS_PSK_WITH_NULL_SHA384: u32 = 177u32; +pub const TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA: u32 = 98u32; +pub const TLS_RSA_EXPORT1024_WITH_RC4_56_SHA: u32 = 100u32; +pub const TLS_RSA_EXPORT_WITH_RC4_40_MD5: u32 = 3u32; +pub const TLS_RSA_PSK_EXCHANGE: windows_core::PCWSTR = windows_core::w!("RSA_PSK"); +pub const TLS_RSA_WITH_3DES_EDE_CBC_SHA: u32 = 10u32; +pub const TLS_RSA_WITH_AES_128_CBC_SHA: u32 = 47u32; +pub const TLS_RSA_WITH_AES_128_CBC_SHA256: u32 = 60u32; +pub const TLS_RSA_WITH_AES_128_GCM_SHA256: u32 = 156u32; +pub const TLS_RSA_WITH_AES_256_CBC_SHA: u32 = 53u32; +pub const TLS_RSA_WITH_AES_256_CBC_SHA256: u32 = 61u32; +pub const TLS_RSA_WITH_AES_256_GCM_SHA384: u32 = 157u32; +pub const TLS_RSA_WITH_DES_CBC_SHA: u32 = 9u32; +pub const TLS_RSA_WITH_NULL_MD5: u32 = 1u32; +pub const TLS_RSA_WITH_NULL_SHA: u32 = 2u32; +pub const TLS_RSA_WITH_NULL_SHA256: u32 = 59u32; +pub const TLS_RSA_WITH_RC4_128_MD5: u32 = 4u32; +pub const TLS_RSA_WITH_RC4_128_SHA: u32 = 5u32; pub const TPM_RSA_SRK_SEAL_KEY: windows_core::PCWSTR = windows_core::w!("MICROSOFT_PCP_KSP_RSA_SEAL_KEY_3BD1C4BF-004E-4E2F-8A4D-0BF633DCB074"); pub const URL_OID_CERTIFICATE_CRL_DIST_POINT: windows_core::PCSTR = windows_core::PCSTR(2i32 as _); pub const URL_OID_CERTIFICATE_CRL_DIST_POINT_AND_OCSP: windows_core::PCSTR = windows_core::PCSTR(11i32 as _); @@ -6102,6 +6790,11 @@ pub const URL_OID_CTL_NEXT_UPDATE: windows_core::PCSTR = windows_core::PCSTR(4i3 pub const URL_OID_GET_OBJECT_URL_FUNC: windows_core::PCSTR = windows_core::s!("UrlDllGetObjectUrl"); pub const USAGE_MATCH_TYPE_AND: u32 = 0u32; pub const USAGE_MATCH_TYPE_OR: u32 = 1u32; +pub const UnblockOnlyPin: SECRET_PURPOSE = SECRET_PURPOSE(6i32); +pub const UnknownAc: CARD_FILE_ACCESS_CONDITION = CARD_FILE_ACCESS_CONDITION(4i32); +pub const UserCreateDeleteDirAc: CARD_DIRECTORY_ACCESS_CONDITION = CARD_DIRECTORY_ACCESS_CONDITION(1i32); +pub const UserReadWriteAc: CARD_FILE_ACCESS_CONDITION = CARD_FILE_ACCESS_CONDITION(5i32); +pub const UserWriteExecuteAc: CARD_FILE_ACCESS_CONDITION = CARD_FILE_ACCESS_CONDITION(2i32); pub const X509_ALGORITHM_IDENTIFIER: windows_core::PCSTR = windows_core::PCSTR(74i32 as _); pub const X509_ALTERNATE_NAME: windows_core::PCSTR = windows_core::PCSTR(12i32 as _); pub const X509_ANY_STRING: i32 = 6i32; @@ -6171,7 +6864,12 @@ pub const cPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS_DEFAULT: u32 = 86400u32; pub const dwFORCE_KEY_PROTECTION_DISABLED: u32 = 0u32; pub const dwFORCE_KEY_PROTECTION_HIGH: u32 = 2u32; pub const dwFORCE_KEY_PROTECTION_USER_SELECT: u32 = 1u32; +pub const szBASE_CSP_DIR: windows_core::PCSTR = windows_core::s!("mscp"); +pub const szCACHE_FILE: windows_core::PCSTR = windows_core::s!("cardcf"); +pub const szCARD_IDENTIFIER_FILE: windows_core::PCSTR = windows_core::s!("cardid"); +pub const szCONTAINER_MAP_FILE: windows_core::PCSTR = windows_core::s!("cmapfile"); pub const szFORCE_KEY_PROTECTION: windows_core::PCSTR = windows_core::s!("ForceKeyProtection"); +pub const szINTERMEDIATE_CERTS_DIR: windows_core::PCSTR = windows_core::s!("mscerts"); pub const szKEY_CACHE_ENABLED: windows_core::PCSTR = windows_core::s!("CachePrivateKeys"); pub const szKEY_CACHE_SECONDS: windows_core::PCSTR = windows_core::s!("PrivateKeyLifetimeSeconds"); pub const szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS: windows_core::PCSTR = windows_core::s!("Software\\Policies\\Microsoft\\Cryptography"); @@ -6706,6 +7404,13 @@ pub const szOID_X957_SHA1DSA: windows_core::PCSTR = windows_core::s!("1.2.840.10 pub const szOID_YESNO_TRUST_ATTR: windows_core::PCSTR = windows_core::s!("1.3.6.1.4.1.311.10.4.1"); pub const szPRIV_KEY_CACHE_MAX_ITEMS: windows_core::PCSTR = windows_core::s!("PrivKeyCacheMaxItems"); pub const szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS: windows_core::PCSTR = windows_core::s!("PrivKeyCachePurgeIntervalSeconds"); +pub const szROOT_STORE_FILE: windows_core::PCSTR = windows_core::s!("msroots"); +pub const szUSER_KEYEXCHANGE_CERT_PREFIX: windows_core::PCSTR = windows_core::s!("kxc"); +pub const szUSER_KEYEXCHANGE_PRIVATE_KEY_PREFIX: windows_core::PCSTR = windows_core::s!("kxs"); +pub const szUSER_KEYEXCHANGE_PUBLIC_KEY_PREFIX: windows_core::PCSTR = windows_core::s!("kxp"); +pub const szUSER_SIGNATURE_CERT_PREFIX: windows_core::PCSTR = windows_core::s!("ksc"); +pub const szUSER_SIGNATURE_PRIVATE_KEY_PREFIX: windows_core::PCSTR = windows_core::s!("kss"); +pub const szUSER_SIGNATURE_PUBLIC_KEY_PREFIX: windows_core::PCSTR = windows_core::s!("ksp"); pub const sz_CERT_STORE_PROV_COLLECTION: windows_core::PCSTR = windows_core::s!("Collection"); pub const sz_CERT_STORE_PROV_FILENAME: windows_core::PCWSTR = windows_core::w!("File"); pub const sz_CERT_STORE_PROV_FILENAME_W: windows_core::PCSTR = windows_core::s!("File"); @@ -6723,6 +7428,9 @@ pub const sz_CERT_STORE_PROV_SYSTEM: windows_core::PCWSTR = windows_core::w!("Sy pub const sz_CERT_STORE_PROV_SYSTEM_REGISTRY: windows_core::PCWSTR = windows_core::w!("SystemRegistry"); pub const sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W: windows_core::PCSTR = windows_core::s!("SystemRegistry"); pub const sz_CERT_STORE_PROV_SYSTEM_W: windows_core::PCSTR = windows_core::s!("System"); +pub const wszCARD_USER_ADMIN: windows_core::PCWSTR = windows_core::w!("admin"); +pub const wszCARD_USER_EVERYONE: windows_core::PCWSTR = windows_core::w!("anonymous"); +pub const wszCARD_USER_USER: windows_core::PCWSTR = windows_core::w!("user"); pub const wszURI_CANONICALIZATION_C14N: windows_core::PCWSTR = windows_core::w!("http://www.w3.org/TR/2001/REC-xml-c14n-20010315"); pub const wszURI_CANONICALIZATION_C14NC: windows_core::PCWSTR = windows_core::w!("http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments"); pub const wszURI_CANONICALIZATION_EXSLUSIVE_C14N: windows_core::PCWSTR = windows_core::w!("http://www.w3.org/2001/10/xml-exc-c14n#"); @@ -7040,6 +7748,28 @@ impl core::fmt::Debug for BCRYPT_TABLE { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct CARD_DIRECTORY_ACCESS_CONDITION(pub i32); +impl windows_core::TypeKind for CARD_DIRECTORY_ACCESS_CONDITION { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for CARD_DIRECTORY_ACCESS_CONDITION { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("CARD_DIRECTORY_ACCESS_CONDITION").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct CARD_FILE_ACCESS_CONDITION(pub i32); +impl windows_core::TypeKind for CARD_FILE_ACCESS_CONDITION { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for CARD_FILE_ACCESS_CONDITION { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("CARD_FILE_ACCESS_CONDITION").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct CASetupProperty(pub i32); impl windows_core::TypeKind for CASetupProperty { type TypeKind = windows_core::CopyType; @@ -8509,6 +9239,17 @@ impl core::ops::Not for NCRYPT_OPERATION { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct PIN_CACHE_POLICY_TYPE(pub i32); +impl windows_core::TypeKind for PIN_CACHE_POLICY_TYPE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for PIN_CACHE_POLICY_TYPE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("PIN_CACHE_POLICY_TYPE").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct PaddingMode(pub i32); impl PaddingMode { pub const None: Self = Self(1i32); @@ -8527,6 +9268,28 @@ impl core::fmt::Debug for PaddingMode { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct SECRET_PURPOSE(pub i32); +impl windows_core::TypeKind for SECRET_PURPOSE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for SECRET_PURPOSE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("SECRET_PURPOSE").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct SECRET_TYPE(pub i32); +impl windows_core::TypeKind for SECRET_TYPE { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for SECRET_TYPE { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("SECRET_TYPE").field(&self.0).finish() + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct SIGNER_CERT_CHOICE(pub u32); impl windows_core::TypeKind for SIGNER_CERT_CHOICE { type TypeKind = windows_core::CopyType; @@ -8736,6 +9499,7 @@ impl BCRYPT_ALG_HANDLE { } } impl windows_core::Free for BCRYPT_ALG_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = BCryptCloseAlgorithmProvider(*self, 0); @@ -8757,6 +9521,32 @@ impl From for BCRYPT_HANDLE { } } #[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct BCRYPT_ASYMMETRIC_ENCRYPTION_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKeyPair: BCryptGenerateKeyPairFn, + pub FinalizeKeyPair: BCryptFinalizeKeyPairFn, + pub Encrypt: BCryptEncryptFn, + pub Decrypt: BCryptDecryptFn, + pub ImportKeyPair: BCryptImportKeyPairFn, + pub ExportKey: BCryptExportKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, + pub SignHash: BCryptSignHashFn, + pub VerifySignature: BCryptVerifySignatureFn, +} +impl windows_core::TypeKind for BCRYPT_ASYMMETRIC_ENCRYPTION_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_ASYMMETRIC_ENCRYPTION_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { pub cbSize: u32, @@ -8773,10 +9563,34 @@ pub struct BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { pub cbData: u64, pub dwFlags: u32, } -impl windows_core::TypeKind for BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { +impl windows_core::TypeKind for BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct BCRYPT_CIPHER_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKey: BCryptGenerateSymmetricKeyFn, + pub Encrypt: BCryptEncryptFn, + pub Decrypt: BCryptDecryptFn, + pub ImportKey: BCryptImportKeyFn, + pub ExportKey: BCryptExportKeyFn, + pub DuplicateKey: BCryptDuplicateKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, +} +impl windows_core::TypeKind for BCRYPT_CIPHER_FUNCTION_TABLE { type TypeKind = windows_core::CopyType; } -impl Default for BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO { +impl Default for BCRYPT_CIPHER_FUNCTION_TABLE { fn default() -> Self { unsafe { core::mem::zeroed() } } @@ -8932,6 +9746,25 @@ impl Default for BCRYPT_ECC_CURVE_NAMES { unsafe { core::mem::zeroed() } } } +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct BCRYPT_ECC_PARAMETER_HEADER { + pub dwVersion: u32, + pub dwCurveType: ECC_CURVE_TYPE_ENUM, + pub dwCurveGenerationAlgId: ECC_CURVE_ALG_ID_ENUM, + pub cbFieldLength: u32, + pub cbSubgroupOrder: u32, + pub cbCofactor: u32, + pub cbSeed: u32, +} +impl windows_core::TypeKind for BCRYPT_ECC_PARAMETER_HEADER { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_ECC_PARAMETER_HEADER { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct BCRYPT_HANDLE(pub *mut core::ffi::c_void); @@ -8948,6 +9781,30 @@ impl Default for BCRYPT_HANDLE { impl windows_core::TypeKind for BCRYPT_HANDLE { type TypeKind = windows_core::CopyType; } +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct BCRYPT_HASH_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub CreateHash: BCryptCreateHashFn, + pub HashData: BCryptHashDataFn, + pub FinishHash: BCryptFinishHashFn, + pub DuplicateHash: BCryptDuplicateHashFn, + pub DestroyHash: BCryptDestroyHashFn, + pub CreateMultiHash: BCryptCreateMultiHashFn, + pub ProcessMultiOperations: BCryptProcessMultiOperationsFn, +} +impl windows_core::TypeKind for BCRYPT_HASH_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_HASH_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct BCRYPT_HASH_HANDLE(pub *mut core::ffi::c_void); @@ -8957,6 +9814,7 @@ impl BCRYPT_HASH_HANDLE { } } impl windows_core::Free for BCRYPT_HASH_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = BCryptDestroyHash(*self); @@ -9019,6 +9877,29 @@ impl Default for BCRYPT_KEY_DATA_BLOB_HEADER { unsafe { core::mem::zeroed() } } } +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct BCRYPT_KEY_DERIVATION_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKey: BCryptGenerateSymmetricKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, + pub KeyDerivation: BCryptKeyDerivationFn, + pub ExportKey: BCryptExportKeyFn, + pub ImportKey: BCryptImportKeyFn, + pub DuplicateKey: BCryptDuplicateKeyFn, +} +impl windows_core::TypeKind for BCRYPT_KEY_DERIVATION_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_KEY_DERIVATION_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct BCRYPT_KEY_HANDLE(pub *mut core::ffi::c_void); @@ -9028,6 +9909,7 @@ impl BCRYPT_KEY_HANDLE { } } impl windows_core::Free for BCRYPT_KEY_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = BCryptDestroyKey(*self); @@ -9131,124 +10013,530 @@ pub struct BCRYPT_OID_LIST { impl windows_core::TypeKind for BCRYPT_OID_LIST { type TypeKind = windows_core::CopyType; } -impl Default for BCRYPT_OID_LIST { +impl Default for BCRYPT_OID_LIST { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct BCRYPT_PKCS1_PADDING_INFO { + pub pszAlgId: windows_core::PCWSTR, +} +impl windows_core::TypeKind for BCRYPT_PKCS1_PADDING_INFO { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_PKCS1_PADDING_INFO { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct BCRYPT_PROVIDER_NAME { + pub pszProviderName: windows_core::PWSTR, +} +impl windows_core::TypeKind for BCRYPT_PROVIDER_NAME { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_PROVIDER_NAME { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct BCRYPT_PSS_PADDING_INFO { + pub pszAlgId: windows_core::PCWSTR, + pub cbSalt: u32, +} +impl windows_core::TypeKind for BCRYPT_PSS_PADDING_INFO { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_PSS_PADDING_INFO { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct BCRYPT_RNG_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenRandom: BCryptGenRandomFn, +} +impl windows_core::TypeKind for BCRYPT_RNG_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_RNG_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct BCRYPT_RSAKEY_BLOB { + pub Magic: BCRYPT_RSAKEY_BLOB_MAGIC, + pub BitLength: u32, + pub cbPublicExp: u32, + pub cbModulus: u32, + pub cbPrime1: u32, + pub cbPrime2: u32, +} +impl windows_core::TypeKind for BCRYPT_RSAKEY_BLOB { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_RSAKEY_BLOB { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct BCRYPT_SECRET_AGREEMENT_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub SecretAgreement: BCryptSecretAgreementFn, + pub DeriveKey: BCryptDeriveKeyFn, + pub DestroySecret: BCryptDestroySecretFn, + pub GenerateKeyPair: BCryptGenerateKeyPairFn, + pub FinalizeKeyPair: BCryptFinalizeKeyPairFn, + pub ImportKeyPair: BCryptImportKeyPairFn, + pub ExportKey: BCryptExportKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, +} +impl windows_core::TypeKind for BCRYPT_SECRET_AGREEMENT_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_SECRET_AGREEMENT_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct BCRYPT_SECRET_HANDLE(pub *mut core::ffi::c_void); +impl BCRYPT_SECRET_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} +impl windows_core::Free for BCRYPT_SECRET_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = BCryptDestroySecret(*self); + } + } +} +impl Default for BCRYPT_SECRET_HANDLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for BCRYPT_SECRET_HANDLE { + type TypeKind = windows_core::CopyType; +} +impl windows_core::imp::CanInto for BCRYPT_SECRET_HANDLE {} +impl From for BCRYPT_HANDLE { + fn from(value: BCRYPT_SECRET_HANDLE) -> Self { + Self(value.0) + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct BCRYPT_SIGNATURE_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenAlgorithmProvider: BCryptOpenAlgorithmProviderFn, + pub GetProperty: BCryptGetPropertyFn, + pub SetProperty: BCryptSetPropertyFn, + pub CloseAlgorithmProvider: BCryptCloseAlgorithmProviderFn, + pub GenerateKeyPair: BCryptGenerateKeyPairFn, + pub FinalizeKeyPair: BCryptFinalizeKeyPairFn, + pub SignHash: BCryptSignHashFn, + pub VerifySignature: BCryptVerifySignatureFn, + pub ImportKeyPair: BCryptImportKeyPairFn, + pub ExportKey: BCryptExportKeyFn, + pub DestroyKey: BCryptDestroyKeyFn, +} +impl windows_core::TypeKind for BCRYPT_SIGNATURE_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for BCRYPT_SIGNATURE_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct BCryptBuffer { + pub cbBuffer: u32, + pub BufferType: u32, + pub pvBuffer: *mut core::ffi::c_void, +} +impl windows_core::TypeKind for BCryptBuffer { + type TypeKind = windows_core::CopyType; +} +impl Default for BCryptBuffer { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct BCryptBufferDesc { + pub ulVersion: u32, + pub cBuffers: u32, + pub pBuffers: *mut BCryptBuffer, +} +impl windows_core::TypeKind for BCryptBufferDesc { + type TypeKind = windows_core::CopyType; +} +impl Default for BCryptBufferDesc { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_AUTHENTICATE { + pub dwVersion: u32, + pub dwFlags: u32, + pub PinId: u32, + pub cbPinData: u32, + pub pbPinData: [u8; 1], +} +impl windows_core::TypeKind for CARD_AUTHENTICATE { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_AUTHENTICATE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_AUTHENTICATE_RESPONSE { + pub dwVersion: u32, + pub cbSessionPin: u32, + pub cAttemptsRemaining: u32, + pub pbSessionPin: [u8; 1], +} +impl windows_core::TypeKind for CARD_AUTHENTICATE_RESPONSE { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_AUTHENTICATE_RESPONSE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_CACHE_FILE_FORMAT { + pub bVersion: u8, + pub bPinsFreshness: u8, + pub wContainersFreshness: u16, + pub wFilesFreshness: u16, +} +impl windows_core::TypeKind for CARD_CACHE_FILE_FORMAT { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_CACHE_FILE_FORMAT { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_CAPABILITIES { + pub dwVersion: u32, + pub fCertificateCompression: super::super::Foundation::BOOL, + pub fKeyGen: super::super::Foundation::BOOL, +} +impl windows_core::TypeKind for CARD_CAPABILITIES { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_CAPABILITIES { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_CHANGE_AUTHENTICATOR { + pub dwVersion: u32, + pub dwFlags: u32, + pub dwAuthenticatingPinId: u32, + pub cbAuthenticatingPinData: u32, + pub dwTargetPinId: u32, + pub cbTargetData: u32, + pub cRetryCount: u32, + pub pbData: [u8; 1], +} +impl windows_core::TypeKind for CARD_CHANGE_AUTHENTICATOR { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_CHANGE_AUTHENTICATOR { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_CHANGE_AUTHENTICATOR_RESPONSE { + pub dwVersion: u32, + pub cAttemptsRemaining: u32, +} +impl windows_core::TypeKind for CARD_CHANGE_AUTHENTICATOR_RESPONSE { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_CHANGE_AUTHENTICATOR_RESPONSE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct CARD_DATA { + pub dwVersion: u32, + pub pbAtr: *mut u8, + pub cbAtr: u32, + pub pwszCardName: windows_core::PWSTR, + pub pfnCspAlloc: PFN_CSP_ALLOC, + pub pfnCspReAlloc: PFN_CSP_REALLOC, + pub pfnCspFree: PFN_CSP_FREE, + pub pfnCspCacheAddFile: PFN_CSP_CACHE_ADD_FILE, + pub pfnCspCacheLookupFile: PFN_CSP_CACHE_LOOKUP_FILE, + pub pfnCspCacheDeleteFile: PFN_CSP_CACHE_DELETE_FILE, + pub pvCacheContext: *mut core::ffi::c_void, + pub pfnCspPadData: PFN_CSP_PAD_DATA, + pub hSCardCtx: usize, + pub hScard: usize, + pub pvVendorSpecific: *mut core::ffi::c_void, + pub pfnCardDeleteContext: PFN_CARD_DELETE_CONTEXT, + pub pfnCardQueryCapabilities: PFN_CARD_QUERY_CAPABILITIES, + pub pfnCardDeleteContainer: PFN_CARD_DELETE_CONTAINER, + pub pfnCardCreateContainer: PFN_CARD_CREATE_CONTAINER, + pub pfnCardGetContainerInfo: PFN_CARD_GET_CONTAINER_INFO, + pub pfnCardAuthenticatePin: PFN_CARD_AUTHENTICATE_PIN, + pub pfnCardGetChallenge: PFN_CARD_GET_CHALLENGE, + pub pfnCardAuthenticateChallenge: PFN_CARD_AUTHENTICATE_CHALLENGE, + pub pfnCardUnblockPin: PFN_CARD_UNBLOCK_PIN, + pub pfnCardChangeAuthenticator: PFN_CARD_CHANGE_AUTHENTICATOR, + pub pfnCardDeauthenticate: PFN_CARD_DEAUTHENTICATE, + pub pfnCardCreateDirectory: PFN_CARD_CREATE_DIRECTORY, + pub pfnCardDeleteDirectory: PFN_CARD_DELETE_DIRECTORY, + pub pvUnused3: *mut core::ffi::c_void, + pub pvUnused4: *mut core::ffi::c_void, + pub pfnCardCreateFile: PFN_CARD_CREATE_FILE, + pub pfnCardReadFile: PFN_CARD_READ_FILE, + pub pfnCardWriteFile: PFN_CARD_WRITE_FILE, + pub pfnCardDeleteFile: PFN_CARD_DELETE_FILE, + pub pfnCardEnumFiles: PFN_CARD_ENUM_FILES, + pub pfnCardGetFileInfo: PFN_CARD_GET_FILE_INFO, + pub pfnCardQueryFreeSpace: PFN_CARD_QUERY_FREE_SPACE, + pub pfnCardQueryKeySizes: PFN_CARD_QUERY_KEY_SIZES, + pub pfnCardSignData: PFN_CARD_SIGN_DATA, + pub pfnCardRSADecrypt: PFN_CARD_RSA_DECRYPT, + pub pfnCardConstructDHAgreement: PFN_CARD_CONSTRUCT_DH_AGREEMENT, + pub pfnCardDeriveKey: PFN_CARD_DERIVE_KEY, + pub pfnCardDestroyDHAgreement: PFN_CARD_DESTROY_DH_AGREEMENT, + pub pfnCspGetDHAgreement: PFN_CSP_GET_DH_AGREEMENT, + pub pfnCardGetChallengeEx: PFN_CARD_GET_CHALLENGE_EX, + pub pfnCardAuthenticateEx: PFN_CARD_AUTHENTICATE_EX, + pub pfnCardChangeAuthenticatorEx: PFN_CARD_CHANGE_AUTHENTICATOR_EX, + pub pfnCardDeauthenticateEx: PFN_CARD_DEAUTHENTICATE_EX, + pub pfnCardGetContainerProperty: PFN_CARD_GET_CONTAINER_PROPERTY, + pub pfnCardSetContainerProperty: PFN_CARD_SET_CONTAINER_PROPERTY, + pub pfnCardGetProperty: PFN_CARD_GET_PROPERTY, + pub pfnCardSetProperty: PFN_CARD_SET_PROPERTY, + pub pfnCspUnpadData: PFN_CSP_UNPAD_DATA, + pub pfnMDImportSessionKey: PFN_MD_IMPORT_SESSION_KEY, + pub pfnMDEncryptData: PFN_MD_ENCRYPT_DATA, + pub pfnCardImportSessionKey: PFN_CARD_IMPORT_SESSION_KEY, + pub pfnCardGetSharedKeyHandle: PFN_CARD_GET_SHARED_KEY_HANDLE, + pub pfnCardGetAlgorithmProperty: PFN_CARD_GET_ALGORITHM_PROPERTY, + pub pfnCardGetKeyProperty: PFN_CARD_GET_KEY_PROPERTY, + pub pfnCardSetKeyProperty: PFN_CARD_SET_KEY_PROPERTY, + pub pfnCardDestroyKey: PFN_CARD_DESTROY_KEY, + pub pfnCardProcessEncryptedData: PFN_CARD_PROCESS_ENCRYPTED_DATA, + pub pfnCardCreateContainerEx: PFN_CARD_CREATE_CONTAINER_EX, +} +impl windows_core::TypeKind for CARD_DATA { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_DATA { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_DERIVE_KEY { + pub dwVersion: u32, + pub dwFlags: u32, + pub pwszKDF: windows_core::PWSTR, + pub bSecretAgreementIndex: u8, + pub pParameterList: *mut core::ffi::c_void, + pub pbDerivedKey: *mut u8, + pub cbDerivedKey: u32, + pub pwszAlgId: windows_core::PWSTR, + pub dwKeyLen: u32, + pub hKey: usize, +} +impl windows_core::TypeKind for CARD_DERIVE_KEY { + type TypeKind = windows_core::CopyType; +} +impl Default for CARD_DERIVE_KEY { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct BCRYPT_PKCS1_PADDING_INFO { - pub pszAlgId: windows_core::PCWSTR, +pub struct CARD_DH_AGREEMENT_INFO { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub dwFlags: u32, + pub dwPublicKey: u32, + pub pbPublicKey: *mut u8, + pub pbReserved: *mut u8, + pub cbReserved: u32, + pub bSecretAgreementIndex: u8, } -impl windows_core::TypeKind for BCRYPT_PKCS1_PADDING_INFO { +impl windows_core::TypeKind for CARD_DH_AGREEMENT_INFO { type TypeKind = windows_core::CopyType; } -impl Default for BCRYPT_PKCS1_PADDING_INFO { +impl Default for CARD_DH_AGREEMENT_INFO { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct BCRYPT_PROVIDER_NAME { - pub pszProviderName: windows_core::PWSTR, +pub struct CARD_ENCRYPTED_DATA { + pub pbEncryptedData: *mut u8, + pub cbEncryptedData: u32, } -impl windows_core::TypeKind for BCRYPT_PROVIDER_NAME { +impl windows_core::TypeKind for CARD_ENCRYPTED_DATA { type TypeKind = windows_core::CopyType; } -impl Default for BCRYPT_PROVIDER_NAME { +impl Default for CARD_ENCRYPTED_DATA { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct BCRYPT_PSS_PADDING_INFO { - pub pszAlgId: windows_core::PCWSTR, - pub cbSalt: u32, +pub struct CARD_FILE_INFO { + pub dwVersion: u32, + pub cbFileSize: u32, + pub AccessCondition: CARD_FILE_ACCESS_CONDITION, } -impl windows_core::TypeKind for BCRYPT_PSS_PADDING_INFO { +impl windows_core::TypeKind for CARD_FILE_INFO { type TypeKind = windows_core::CopyType; } -impl Default for BCRYPT_PSS_PADDING_INFO { +impl Default for CARD_FILE_INFO { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct BCRYPT_RSAKEY_BLOB { - pub Magic: BCRYPT_RSAKEY_BLOB_MAGIC, - pub BitLength: u32, - pub cbPublicExp: u32, - pub cbModulus: u32, - pub cbPrime1: u32, - pub cbPrime2: u32, +pub struct CARD_FREE_SPACE_INFO { + pub dwVersion: u32, + pub dwBytesAvailable: u32, + pub dwKeyContainersAvailable: u32, + pub dwMaxKeyContainers: u32, } -impl windows_core::TypeKind for BCRYPT_RSAKEY_BLOB { +impl windows_core::TypeKind for CARD_FREE_SPACE_INFO { type TypeKind = windows_core::CopyType; } -impl Default for BCRYPT_RSAKEY_BLOB { +impl Default for CARD_FREE_SPACE_INFO { fn default() -> Self { unsafe { core::mem::zeroed() } } } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct BCRYPT_SECRET_HANDLE(pub *mut core::ffi::c_void); -impl BCRYPT_SECRET_HANDLE { - pub fn is_invalid(&self) -> bool { - self.0.is_null() - } +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_IMPORT_KEYPAIR { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub PinId: u32, + pub dwKeySpec: u32, + pub dwKeySize: u32, + pub cbInput: u32, + pub pbInput: [u8; 1], } -impl windows_core::Free for BCRYPT_SECRET_HANDLE { - unsafe fn free(&mut self) { - if !self.is_invalid() { - _ = BCryptDestroySecret(*self); - } - } +impl windows_core::TypeKind for CARD_IMPORT_KEYPAIR { + type TypeKind = windows_core::CopyType; } -impl Default for BCRYPT_SECRET_HANDLE { +impl Default for CARD_IMPORT_KEYPAIR { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for BCRYPT_SECRET_HANDLE { +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CARD_KEY_SIZES { + pub dwVersion: u32, + pub dwMinimumBitlen: u32, + pub dwDefaultBitlen: u32, + pub dwMaximumBitlen: u32, + pub dwIncrementalBitlen: u32, +} +impl windows_core::TypeKind for CARD_KEY_SIZES { type TypeKind = windows_core::CopyType; } -impl windows_core::imp::CanInto for BCRYPT_SECRET_HANDLE {} -impl From for BCRYPT_HANDLE { - fn from(value: BCRYPT_SECRET_HANDLE) -> Self { - Self(value.0) +impl Default for CARD_KEY_SIZES { + fn default() -> Self { + unsafe { core::mem::zeroed() } } } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct BCryptBuffer { - pub cbBuffer: u32, - pub BufferType: u32, - pub pvBuffer: *mut core::ffi::c_void, +pub struct CARD_RSA_DECRYPT_INFO { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub dwKeySpec: u32, + pub pbData: *mut u8, + pub cbData: u32, + pub pPaddingInfo: *mut core::ffi::c_void, + pub dwPaddingType: u32, } -impl windows_core::TypeKind for BCryptBuffer { +impl windows_core::TypeKind for CARD_RSA_DECRYPT_INFO { type TypeKind = windows_core::CopyType; } -impl Default for BCryptBuffer { +impl Default for CARD_RSA_DECRYPT_INFO { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct BCryptBufferDesc { - pub ulVersion: u32, - pub cBuffers: u32, - pub pBuffers: *mut BCryptBuffer, +pub struct CARD_SIGNING_INFO { + pub dwVersion: u32, + pub bContainerIndex: u8, + pub dwKeySpec: u32, + pub dwSigningFlags: u32, + pub aiHashAlg: ALG_ID, + pub pbData: *mut u8, + pub cbData: u32, + pub pbSignedData: *mut u8, + pub cbSignedData: u32, + pub pPaddingInfo: *mut core::ffi::c_void, + pub dwPaddingType: u32, } -impl windows_core::TypeKind for BCryptBufferDesc { +impl windows_core::TypeKind for CARD_SIGNING_INFO { type TypeKind = windows_core::CopyType; } -impl Default for BCryptBufferDesc { +impl Default for CARD_SIGNING_INFO { fn default() -> Self { unsafe { core::mem::zeroed() } } @@ -10977,6 +12265,55 @@ impl Default for CLAIMLIST { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CLMD_PIV_CERT_DATA { + pub dwVersion: u32, + pub dwCertTag: u32, + pub pbCert: *mut u8, + pub cbCert: u32, +} +impl windows_core::TypeKind for CLMD_PIV_CERT_DATA { + type TypeKind = windows_core::CopyType; +} +impl Default for CLMD_PIV_CERT_DATA { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CLMD_PIV_GENERATE_ASYMMETRIC_KEY { + pub dwVersion: u32, + pub bAlgorithmId: u8, + pub bKeyId: u8, + pub pbKey: *mut u8, + pub cbKey: u32, +} +impl windows_core::TypeKind for CLMD_PIV_GENERATE_ASYMMETRIC_KEY { + type TypeKind = windows_core::CopyType; +} +impl Default for CLMD_PIV_GENERATE_ASYMMETRIC_KEY { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CLMD_PIV_PUBLIC_KEY_DATA { + pub dwVersion: u32, + pub bKeyId: u8, + pub pbPublicKey: *mut u8, + pub cbPublicKey: u32, +} +impl windows_core::TypeKind for CLMD_PIV_PUBLIC_KEY_DATA { + type TypeKind = windows_core::CopyType; +} +impl Default for CLMD_PIV_PUBLIC_KEY_DATA { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct CMC_ADD_ATTRIBUTES_INFO { pub dwCmcDataReference: u32, pub cCertReference: u32, @@ -11995,6 +13332,41 @@ impl Default for CMS_KEY_INFO { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CONTAINER_INFO { + pub dwVersion: u32, + pub dwReserved: u32, + pub cbSigPublicKey: u32, + pub pbSigPublicKey: *mut u8, + pub cbKeyExPublicKey: u32, + pub pbKeyExPublicKey: *mut u8, +} +impl windows_core::TypeKind for CONTAINER_INFO { + type TypeKind = windows_core::CopyType; +} +impl Default for CONTAINER_INFO { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct CONTAINER_MAP_RECORD { + pub wszGuid: [u16; 40], + pub bFlags: u8, + pub bReserved: u8, + pub wSigKeySizeBits: u16, + pub wKeyExchangeKeySizeBits: u16, +} +impl windows_core::TypeKind for CONTAINER_MAP_RECORD { + type TypeKind = windows_core::CopyType; +} +impl Default for CONTAINER_MAP_RECORD { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct CPS_URLS { pub pszURL: windows_core::PWSTR, pub pAlgorithm: *mut CRYPT_ALGORITHM_IDENTIFIER, @@ -14287,6 +15659,7 @@ impl HCERTCHAINENGINE { } } impl windows_core::Free for HCERTCHAINENGINE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { CertFreeCertificateChainEngine(*self); @@ -14342,6 +15715,7 @@ impl HCRYPTASYNC { } } impl windows_core::Free for HCRYPTASYNC { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = CryptCloseAsyncHandle(*self); @@ -14512,6 +15886,21 @@ impl Default for INFORMATIONCARD_TRANSFORM_CRYPTO_PARAMETERS { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct InFileSignatureResource { + pub dwVersion: u32, + pub dwCrcOffset: u32, + pub rgbSignature: [u8; 88], +} +impl windows_core::TypeKind for InFileSignatureResource { + type TypeKind = windows_core::CopyType; +} +impl Default for InFileSignatureResource { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct KEY_TYPE_SUBTYPE { pub dwKeySpec: u32, pub Type: windows_core::GUID, @@ -14599,6 +15988,14 @@ impl NCRYPT_HANDLE { self.0 == 0 } } +impl windows_core::Free for NCRYPT_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = NCryptFreeObject(*self); + } + } +} impl Default for NCRYPT_HANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -14696,6 +16093,7 @@ impl NCRYPT_KEY_HANDLE { } } impl windows_core::Free for NCRYPT_KEY_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = NCryptFreeObject(*self); @@ -14717,6 +16115,48 @@ impl From for NCRYPT_HANDLE { } } #[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct NCRYPT_KEY_STORAGE_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub OpenProvider: NCryptOpenStorageProviderFn, + pub OpenKey: NCryptOpenKeyFn, + pub CreatePersistedKey: NCryptCreatePersistedKeyFn, + pub GetProviderProperty: NCryptGetProviderPropertyFn, + pub GetKeyProperty: NCryptGetKeyPropertyFn, + pub SetProviderProperty: NCryptSetProviderPropertyFn, + pub SetKeyProperty: NCryptSetKeyPropertyFn, + pub FinalizeKey: NCryptFinalizeKeyFn, + pub DeleteKey: NCryptDeleteKeyFn, + pub FreeProvider: NCryptFreeProviderFn, + pub FreeKey: NCryptFreeKeyFn, + pub FreeBuffer: NCryptFreeBufferFn, + pub Encrypt: NCryptEncryptFn, + pub Decrypt: NCryptDecryptFn, + pub IsAlgSupported: NCryptIsAlgSupportedFn, + pub EnumAlgorithms: NCryptEnumAlgorithmsFn, + pub EnumKeys: NCryptEnumKeysFn, + pub ImportKey: NCryptImportKeyFn, + pub ExportKey: NCryptExportKeyFn, + pub SignHash: NCryptSignHashFn, + pub VerifySignature: NCryptVerifySignatureFn, + pub PromptUser: NCryptPromptUserFn, + pub NotifyChangeKey: NCryptNotifyChangeKeyFn, + pub SecretAgreement: NCryptSecretAgreementFn, + pub DeriveKey: NCryptDeriveKeyFn, + pub FreeSecret: NCryptFreeSecretFn, + pub KeyDerivation: NCryptKeyDerivationFn, + pub CreateClaim: NCryptCreateClaimFn, + pub VerifyClaim: NCryptVerifyClaimFn, +} +impl windows_core::TypeKind for NCRYPT_KEY_STORAGE_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for NCRYPT_KEY_STORAGE_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct NCRYPT_PCP_HMAC_AUTH_SIGNATURE_INFO { pub dwVersion: u32, @@ -14832,6 +16272,7 @@ impl NCRYPT_PROV_HANDLE { } } impl windows_core::Free for NCRYPT_PROV_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = NCryptFreeObject(*self); @@ -14870,6 +16311,148 @@ impl windows_core::TypeKind for NCRYPT_SECRET_HANDLE { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct NCRYPT_SSL_CIPHER_LENGTHS { + pub cbLength: u32, + pub dwHeaderLen: u32, + pub dwFixedTrailerLen: u32, + pub dwMaxVariableTrailerLen: u32, + pub dwFlags: u32, +} +impl windows_core::TypeKind for NCRYPT_SSL_CIPHER_LENGTHS { + type TypeKind = windows_core::CopyType; +} +impl Default for NCRYPT_SSL_CIPHER_LENGTHS { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct NCRYPT_SSL_CIPHER_SUITE { + pub dwProtocol: u32, + pub dwCipherSuite: u32, + pub dwBaseCipherSuite: u32, + pub szCipherSuite: [u16; 64], + pub szCipher: [u16; 64], + pub dwCipherLen: u32, + pub dwCipherBlockLen: u32, + pub szHash: [u16; 64], + pub dwHashLen: u32, + pub szExchange: [u16; 64], + pub dwMinExchangeLen: u32, + pub dwMaxExchangeLen: u32, + pub szCertificate: [u16; 64], + pub dwKeyType: u32, +} +impl windows_core::TypeKind for NCRYPT_SSL_CIPHER_SUITE { + type TypeKind = windows_core::CopyType; +} +impl Default for NCRYPT_SSL_CIPHER_SUITE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct NCRYPT_SSL_CIPHER_SUITE_EX { + pub dwVersion: u32, + pub dwProtocol: u32, + pub dwCipherSuite: u32, + pub dwBaseCipherSuite: u32, + pub szCipherSuite: [u16; 64], + pub szCipher: [u16; 64], + pub dwCipherLen: u32, + pub dwCipherBlockLen: u32, + pub szHash: [u16; 64], + pub dwHashLen: u32, + pub szExchange: [u16; 64], + pub dwMinExchangeLen: u32, + pub dwMaxExchangeLen: u32, + pub szCertificate: [u16; 64], + pub dwKeyType: u32, + pub szCipherMode: [u16; 64], +} +impl windows_core::TypeKind for NCRYPT_SSL_CIPHER_SUITE_EX { + type TypeKind = windows_core::CopyType; +} +impl Default for NCRYPT_SSL_CIPHER_SUITE_EX { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct NCRYPT_SSL_ECC_CURVE { + pub szCurveName: [u16; 255], + pub szOID: [i8; 255], + pub dwPublicKeyLength: u32, + pub dwCurveType: u32, + pub dwFlags: u32, +} +impl windows_core::TypeKind for NCRYPT_SSL_ECC_CURVE { + type TypeKind = windows_core::CopyType; +} +impl Default for NCRYPT_SSL_ECC_CURVE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct NCRYPT_SSL_FUNCTION_TABLE { + pub Version: BCRYPT_INTERFACE_VERSION, + pub ComputeClientAuthHash: SslComputeClientAuthHashFn, + pub ComputeEapKeyBlock: SslComputeEapKeyBlockFn, + pub ComputeFinishedHash: SslComputeFinishedHashFn, + pub CreateEphemeralKey: SslCreateEphemeralKeyFn, + pub CreateHandshakeHash: SslCreateHandshakeHashFn, + pub DecryptPacket: SslDecryptPacketFn, + pub EncryptPacket: SslEncryptPacketFn, + pub EnumCipherSuites: SslEnumCipherSuitesFn, + pub ExportKey: SslExportKeyFn, + pub FreeBuffer: SslFreeBufferFn, + pub FreeObject: SslFreeObjectFn, + pub GenerateMasterKey: SslGenerateMasterKeyFn, + pub GenerateSessionKeys: SslGenerateSessionKeysFn, + pub GetKeyProperty: SslGetKeyPropertyFn, + pub GetProviderProperty: SslGetProviderPropertyFn, + pub HashHandshake: SslHashHandshakeFn, + pub ImportMasterKey: SslImportMasterKeyFn, + pub ImportKey: SslImportKeyFn, + pub LookupCipherSuiteInfo: SslLookupCipherSuiteInfoFn, + pub OpenPrivateKey: SslOpenPrivateKeyFn, + pub OpenProvider: SslOpenProviderFn, + pub SignHash: SslSignHashFn, + pub VerifySignature: SslVerifySignatureFn, + pub LookupCipherLengths: SslLookupCipherLengthsFn, + pub CreateClientAuthHash: SslCreateClientAuthHashFn, + pub GetCipherSuitePRFHashAlgorithm: SslGetCipherSuitePRFHashAlgorithmFn, + pub ComputeSessionHash: SslComputeSessionHashFn, + pub GeneratePreMasterKey: SslGeneratePreMasterKeyFn, + pub EnumEccCurves: SslEnumEccCurvesFn, + pub ExportKeyingMaterial: SslExportKeyingMaterialFn, + pub ExtractEarlyKey: SslExtractEarlyKeyFn, + pub ExtractHandshakeKey: SslExtractHandshakeKeyFn, + pub ExtractMasterKey: SslExtractMasterKeyFn, + pub ExpandTrafficKeys: SslExpandTrafficKeysFn, + pub ExpandWriteKey: SslExpandWriteKeyFn, + pub ExpandExporterMasterKey: SslExpandExporterMasterKeyFn, + pub EnumCipherSuitesEx: SslEnumCipherSuitesExFn, + pub ExpandResumptionMasterKey: SslExpandResumptionMasterKeyFn, + pub DuplicateTranscriptHash: SslDuplicateTranscriptHashFn, + pub ExpandBinderKey: SslExpandBinderKeyFn, + pub ExpandPreSharedKey: SslExpandPreSharedKeyFn, +} +impl windows_core::TypeKind for NCRYPT_SSL_FUNCTION_TABLE { + type TypeKind = windows_core::CopyType; +} +impl Default for NCRYPT_SSL_FUNCTION_TABLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct NCRYPT_SUPPORTED_LENGTHS { pub dwMinLength: u32, pub dwMaxLength: u32, @@ -14938,6 +16521,23 @@ impl Default for NCRYPT_UI_POLICY { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct NCRYPT_UI_POLICY_BLOB { + pub dwVersion: u32, + pub dwFlags: u32, + pub cbCreationTitle: u32, + pub cbFriendlyName: u32, + pub cbDescription: u32, +} +impl windows_core::TypeKind for NCRYPT_UI_POLICY_BLOB { + type TypeKind = windows_core::CopyType; +} +impl Default for NCRYPT_UI_POLICY_BLOB { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct NCRYPT_VSM_KEY_ATTESTATION_CLAIM_RESTRICTIONS { pub Version: u32, pub TrustletId: u64, @@ -15207,6 +16807,57 @@ impl Default for OCSP_SIGNED_REQUEST_INFO { } #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct OFFLOAD_PRIVATE_KEY { + pub dwVersion: u32, + pub cbPrime1: u32, + pub cbPrime2: u32, + pub pbPrime1: *mut u8, + pub pbPrime2: *mut u8, +} +impl windows_core::TypeKind for OFFLOAD_PRIVATE_KEY { + type TypeKind = windows_core::CopyType; +} +impl Default for OFFLOAD_PRIVATE_KEY { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct PIN_CACHE_POLICY { + pub dwVersion: u32, + pub PinCachePolicyType: PIN_CACHE_POLICY_TYPE, + pub dwPinCachePolicyInfo: u32, +} +impl windows_core::TypeKind for PIN_CACHE_POLICY { + type TypeKind = windows_core::CopyType; +} +impl Default for PIN_CACHE_POLICY { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] +pub struct PIN_INFO { + pub dwVersion: u32, + pub PinType: SECRET_TYPE, + pub PinPurpose: SECRET_PURPOSE, + pub dwChangePermission: u32, + pub dwUnblockPermission: u32, + pub PinCachePolicy: PIN_CACHE_POLICY, + pub dwFlags: u32, +} +impl windows_core::TypeKind for PIN_INFO { + type TypeKind = windows_core::CopyType; +} +impl Default for PIN_INFO { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct PKCS12_PBES2_EXPORT_PARAMS { pub dwSize: u32, pub hNcryptDescriptor: *mut core::ffi::c_void, @@ -15787,6 +17438,78 @@ impl Default for SSL_KEY_PIN_EXTRA_CERT_CHAIN_POLICY_STATUS { unsafe { core::mem::zeroed() } } } +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct VTableProvStruc { + pub Version: u32, + pub FuncVerifyImage: CRYPT_VERIFY_IMAGE_A, + pub FuncReturnhWnd: CRYPT_RETURN_HWND, + pub dwProvType: u32, + pub pbContextInfo: *mut u8, + pub cbContextInfo: u32, + pub pszProvName: windows_core::PSTR, +} +impl windows_core::TypeKind for VTableProvStruc { + type TypeKind = windows_core::CopyType; +} +impl Default for VTableProvStruc { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] +#[derive(Clone, Copy, Debug)] +pub struct VTableProvStrucW { + pub Version: u32, + pub FuncVerifyImage: CRYPT_VERIFY_IMAGE_W, + pub FuncReturnhWnd: CRYPT_RETURN_HWND, + pub dwProvType: u32, + pub pbContextInfo: *mut u8, + pub cbContextInfo: u32, + pub pszProvName: windows_core::PWSTR, +} +impl windows_core::TypeKind for VTableProvStrucW { + type TypeKind = windows_core::CopyType; +} +impl Default for VTableProvStrucW { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +pub type BCryptCloseAlgorithmProviderFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptCreateHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptCreateMultiHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDecryptFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDeriveKeyCapiFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDeriveKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDeriveKeyPBKDF2Fn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDestroyHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDestroyKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDestroySecretFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDuplicateHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptDuplicateKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptEncryptFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptExportKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptFinalizeKeyPairFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptFinishHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptFreeBufferFn = Option; +pub type BCryptGenRandomFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptGenerateKeyPairFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptGenerateSymmetricKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptGetPropertyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptHashDataFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptImportKeyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptImportKeyPairFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptKeyDerivationFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptOpenAlgorithmProviderFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptProcessMultiOperationsFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptSecretAgreementFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptSetPropertyFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptSignHashFn = Option super::super::Foundation::NTSTATUS>; +pub type BCryptVerifySignatureFn = Option super::super::Foundation::NTSTATUS>; +pub type CRYPT_RETURN_HWND = Option; +pub type CRYPT_VERIFY_IMAGE_A = Option super::super::Foundation::BOOL>; +pub type CRYPT_VERIFY_IMAGE_W = Option super::super::Foundation::BOOL>; pub type CryptXmlDllCloseDigest = Option windows_core::HRESULT>; pub type CryptXmlDllCreateDigest = Option windows_core::HRESULT>; pub type CryptXmlDllCreateKey = Option windows_core::HRESULT>; @@ -15798,6 +17521,45 @@ pub type CryptXmlDllGetAlgorithmInfo = Option windows_core::HRESULT>; pub type CryptXmlDllSignData = Option windows_core::HRESULT>; pub type CryptXmlDllVerifySignature = Option windows_core::HRESULT>; +pub type GetAsymmetricEncryptionInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetCipherInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetHashInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetKeyDerivationInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetKeyStorageInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetRngInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetSChannelInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetSecretAgreementInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type GetSignatureInterfaceFn = Option super::super::Foundation::NTSTATUS>; +pub type NCryptCreateClaimFn = Option windows_core::HRESULT>; +pub type NCryptCreatePersistedKeyFn = Option windows_core::HRESULT>; +pub type NCryptDecryptFn = Option windows_core::HRESULT>; +pub type NCryptDeleteKeyFn = Option windows_core::HRESULT>; +pub type NCryptDeriveKeyFn = Option windows_core::HRESULT>; +pub type NCryptEncryptFn = Option windows_core::HRESULT>; +pub type NCryptEnumAlgorithmsFn = Option windows_core::HRESULT>; +pub type NCryptEnumKeysFn = Option windows_core::HRESULT>; +pub type NCryptEnumStorageProvidersFn = Option windows_core::HRESULT>; +pub type NCryptExportKeyFn = Option windows_core::HRESULT>; +pub type NCryptFinalizeKeyFn = Option windows_core::HRESULT>; +pub type NCryptFreeBufferFn = Option windows_core::HRESULT>; +pub type NCryptFreeKeyFn = Option windows_core::HRESULT>; +pub type NCryptFreeProviderFn = Option windows_core::HRESULT>; +pub type NCryptFreeSecretFn = Option windows_core::HRESULT>; +pub type NCryptGetKeyPropertyFn = Option windows_core::HRESULT>; +pub type NCryptGetProviderPropertyFn = Option windows_core::HRESULT>; +pub type NCryptImportKeyFn = Option windows_core::HRESULT>; +pub type NCryptIsAlgSupportedFn = Option windows_core::HRESULT>; +pub type NCryptKeyDerivationFn = Option windows_core::HRESULT>; +pub type NCryptNotifyChangeKeyFn = Option windows_core::HRESULT>; +pub type NCryptOpenKeyFn = Option windows_core::HRESULT>; +pub type NCryptOpenStorageProviderFn = Option windows_core::HRESULT>; +pub type NCryptPromptUserFn = Option windows_core::HRESULT>; +pub type NCryptSecretAgreementFn = Option windows_core::HRESULT>; +pub type NCryptSetKeyPropertyFn = Option windows_core::HRESULT>; +pub type NCryptSetProviderPropertyFn = Option windows_core::HRESULT>; +pub type NCryptSignHashFn = Option windows_core::HRESULT>; +pub type NCryptVerifyClaimFn = Option windows_core::HRESULT>; +pub type NCryptVerifySignatureFn = Option windows_core::HRESULT>; pub type PCRYPT_DECRYPT_PRIVATE_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PCRYPT_ENCRYPT_PRIVATE_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PCRYPT_RESOLVE_HCRYPTPROV_FUNC = Option super::super::Foundation::BOOL>; @@ -15808,6 +17570,49 @@ pub type PFN_AUTHENTICODE_DIGEST_SIGN_EX = Option windows_core::HRESULT>; pub type PFN_AUTHENTICODE_DIGEST_SIGN_WITHFILEHANDLE = Option windows_core::HRESULT>; pub type PFN_CANCEL_ASYNC_RETRIEVAL_FUNC = Option super::super::Foundation::BOOL>; +pub type PFN_CARD_ACQUIRE_CONTEXT = Option u32>; +pub type PFN_CARD_AUTHENTICATE_CHALLENGE = Option u32>; +pub type PFN_CARD_AUTHENTICATE_EX = Option u32>; +pub type PFN_CARD_AUTHENTICATE_PIN = Option u32>; +pub type PFN_CARD_CHANGE_AUTHENTICATOR = Option u32>; +pub type PFN_CARD_CHANGE_AUTHENTICATOR_EX = Option u32>; +pub type PFN_CARD_CONSTRUCT_DH_AGREEMENT = Option u32>; +pub type PFN_CARD_CREATE_CONTAINER = Option u32>; +pub type PFN_CARD_CREATE_CONTAINER_EX = Option u32>; +pub type PFN_CARD_CREATE_DIRECTORY = Option u32>; +pub type PFN_CARD_CREATE_FILE = Option u32>; +pub type PFN_CARD_DEAUTHENTICATE = Option u32>; +pub type PFN_CARD_DEAUTHENTICATE_EX = Option u32>; +pub type PFN_CARD_DELETE_CONTAINER = Option u32>; +pub type PFN_CARD_DELETE_CONTEXT = Option u32>; +pub type PFN_CARD_DELETE_DIRECTORY = Option u32>; +pub type PFN_CARD_DELETE_FILE = Option u32>; +pub type PFN_CARD_DERIVE_KEY = Option u32>; +pub type PFN_CARD_DESTROY_DH_AGREEMENT = Option u32>; +pub type PFN_CARD_DESTROY_KEY = Option u32>; +pub type PFN_CARD_ENUM_FILES = Option u32>; +pub type PFN_CARD_GET_ALGORITHM_PROPERTY = Option u32>; +pub type PFN_CARD_GET_CHALLENGE = Option u32>; +pub type PFN_CARD_GET_CHALLENGE_EX = Option u32>; +pub type PFN_CARD_GET_CONTAINER_INFO = Option u32>; +pub type PFN_CARD_GET_CONTAINER_PROPERTY = Option u32>; +pub type PFN_CARD_GET_FILE_INFO = Option u32>; +pub type PFN_CARD_GET_KEY_PROPERTY = Option u32>; +pub type PFN_CARD_GET_PROPERTY = Option u32>; +pub type PFN_CARD_GET_SHARED_KEY_HANDLE = Option u32>; +pub type PFN_CARD_IMPORT_SESSION_KEY = Option u32>; +pub type PFN_CARD_PROCESS_ENCRYPTED_DATA = Option u32>; +pub type PFN_CARD_QUERY_CAPABILITIES = Option u32>; +pub type PFN_CARD_QUERY_FREE_SPACE = Option u32>; +pub type PFN_CARD_QUERY_KEY_SIZES = Option u32>; +pub type PFN_CARD_READ_FILE = Option u32>; +pub type PFN_CARD_RSA_DECRYPT = Option u32>; +pub type PFN_CARD_SET_CONTAINER_PROPERTY = Option u32>; +pub type PFN_CARD_SET_KEY_PROPERTY = Option u32>; +pub type PFN_CARD_SET_PROPERTY = Option u32>; +pub type PFN_CARD_SIGN_DATA = Option u32>; +pub type PFN_CARD_UNBLOCK_PIN = Option u32>; +pub type PFN_CARD_WRITE_FILE = Option u32>; pub type PFN_CERT_CHAIN_FIND_BY_ISSUER_CALLBACK = Option super::super::Foundation::BOOL>; pub type PFN_CERT_CREATE_CONTEXT_SORT_FUNC = Option super::super::Foundation::BOOL>; pub type PFN_CERT_DLL_OPEN_STORE_PROV_FUNC = Option super::super::Foundation::BOOL>; @@ -15881,11 +17686,65 @@ pub type PFN_CRYPT_XML_DATA_PROVIDER_CLOSE = Option windows_core::HRESULT>; pub type PFN_CRYPT_XML_ENUM_ALG_INFO = Option super::super::Foundation::BOOL>; pub type PFN_CRYPT_XML_WRITE_CALLBACK = Option windows_core::HRESULT>; +pub type PFN_CSP_ALLOC = Option *mut core::ffi::c_void>; +pub type PFN_CSP_CACHE_ADD_FILE = Option u32>; +pub type PFN_CSP_CACHE_DELETE_FILE = Option u32>; +pub type PFN_CSP_CACHE_LOOKUP_FILE = Option u32>; +pub type PFN_CSP_FREE = Option; +pub type PFN_CSP_GET_DH_AGREEMENT = Option u32>; +pub type PFN_CSP_PAD_DATA = Option u32>; +pub type PFN_CSP_REALLOC = Option *mut core::ffi::c_void>; +pub type PFN_CSP_UNPAD_DATA = Option u32>; pub type PFN_EXPORT_PRIV_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PFN_FREE_ENCODED_OBJECT_FUNC = Option; pub type PFN_IMPORT_PRIV_KEY_FUNC = Option super::super::Foundation::BOOL>; pub type PFN_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC = Option super::super::Foundation::BOOL>; +pub type PFN_MD_ENCRYPT_DATA = Option u32>; +pub type PFN_MD_IMPORT_SESSION_KEY = Option u32>; pub type PFN_NCRYPT_ALLOC = Option *mut core::ffi::c_void>; pub type PFN_NCRYPT_FREE = Option; +pub type PFN_OFFLOAD_MOD_EXPO = Option super::super::Foundation::BOOL>; +pub type SslComputeClientAuthHashFn = Option windows_core::HRESULT>; +pub type SslComputeEapKeyBlockFn = Option windows_core::HRESULT>; +pub type SslComputeFinishedHashFn = Option windows_core::HRESULT>; +pub type SslComputeSessionHashFn = Option windows_core::HRESULT>; +pub type SslCreateClientAuthHashFn = Option windows_core::HRESULT>; +pub type SslCreateEphemeralKeyFn = Option windows_core::HRESULT>; +pub type SslCreateHandshakeHashFn = Option windows_core::HRESULT>; +pub type SslDecryptPacketFn = Option windows_core::HRESULT>; +pub type SslDuplicateTranscriptHashFn = Option windows_core::HRESULT>; +pub type SslEncryptPacketFn = Option windows_core::HRESULT>; +pub type SslEnumCipherSuitesExFn = Option windows_core::HRESULT>; +pub type SslEnumCipherSuitesFn = Option windows_core::HRESULT>; +pub type SslEnumEccCurvesFn = Option windows_core::HRESULT>; +pub type SslExpandBinderKeyFn = Option windows_core::HRESULT>; +pub type SslExpandExporterMasterKeyFn = Option windows_core::HRESULT>; +pub type SslExpandPreSharedKeyFn = Option windows_core::HRESULT>; +pub type SslExpandResumptionMasterKeyFn = Option windows_core::HRESULT>; +pub type SslExpandTrafficKeysFn = Option windows_core::HRESULT>; +pub type SslExpandWriteKeyFn = Option windows_core::HRESULT>; +pub type SslExportKeyFn = Option windows_core::HRESULT>; +pub type SslExportKeyingMaterialFn = Option windows_core::HRESULT>; +pub type SslExtractEarlyKeyFn = Option windows_core::HRESULT>; +pub type SslExtractHandshakeKeyFn = Option windows_core::HRESULT>; +pub type SslExtractMasterKeyFn = Option windows_core::HRESULT>; +pub type SslFreeBufferFn = Option windows_core::HRESULT>; +pub type SslFreeObjectFn = Option windows_core::HRESULT>; +pub type SslGenerateMasterKeyFn = Option windows_core::HRESULT>; +pub type SslGeneratePreMasterKeyFn = Option windows_core::HRESULT>; +pub type SslGenerateSessionKeysFn = Option windows_core::HRESULT>; +pub type SslGetCipherSuitePRFHashAlgorithmFn = Option windows_core::HRESULT>; +pub type SslGetKeyPropertyFn = Option windows_core::HRESULT>; +pub type SslGetProviderPropertyFn = Option windows_core::HRESULT>; +pub type SslHashHandshakeFn = Option windows_core::HRESULT>; +pub type SslImportKeyFn = Option windows_core::HRESULT>; +pub type SslImportMasterKeyFn = Option windows_core::HRESULT>; +pub type SslInitializeInterfaceFn = Option windows_core::HRESULT>; +pub type SslLookupCipherLengthsFn = Option windows_core::HRESULT>; +pub type SslLookupCipherSuiteInfoFn = Option windows_core::HRESULT>; +pub type SslOpenPrivateKeyFn = Option windows_core::HRESULT>; +pub type SslOpenProviderFn = Option windows_core::HRESULT>; +pub type SslSignHashFn = Option windows_core::HRESULT>; +pub type SslVerifySignatureFn = Option windows_core::HRESULT>; #[cfg(feature = "implement")] core::include!("impl.rs"); diff --git a/crates/libs/windows/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs index be4282176c..3845f51ee5 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs @@ -1,73 +1,73 @@ #[inline] pub unsafe fn DdqCancelDiagnosticRecordOperation(hsession: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCancelDiagnosticRecordOperation(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCancelDiagnosticRecordOperation(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_core::HRESULT); DdqCancelDiagnosticRecordOperation(hsession.param().abi()).ok() } #[inline] pub unsafe fn DdqCloseSession(hsession: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCloseSession(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCloseSession(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_core::HRESULT); DdqCloseSession(hsession.param().abi()).ok() } #[inline] -pub unsafe fn DdqCreateSession(accesslevel: DdqAccessLevel) -> windows_core::Result { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCreateSession(accesslevel : DdqAccessLevel, hsession : *mut super:: HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_core::HRESULT); +pub unsafe fn DdqCreateSession(accesslevel: DdqAccessLevel) -> windows_core::Result { + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqCreateSession(accesslevel : DdqAccessLevel, hsession : *mut HDIAGNOSTIC_DATA_QUERY_SESSION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqCreateSession(accesslevel, &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqExtractDiagnosticReport(hsession: P0, reportstoretype: u32, reportkey: P1, destinationpath: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqExtractDiagnosticReport(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportkey : windows_core::PCWSTR, destinationpath : windows_core::PCWSTR) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqExtractDiagnosticReport(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportkey : windows_core::PCWSTR, destinationpath : windows_core::PCWSTR) -> windows_core::HRESULT); DdqExtractDiagnosticReport(hsession.param().abi(), reportstoretype, reportkey.param().abi(), destinationpath.param().abi()).ok() } #[inline] pub unsafe fn DdqFreeDiagnosticRecordLocaleTags(htagdescription: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordLocaleTags(htagdescription : super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordLocaleTags(htagdescription : HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_core::HRESULT); DdqFreeDiagnosticRecordLocaleTags(htagdescription.param().abi()).ok() } #[inline] pub unsafe fn DdqFreeDiagnosticRecordPage(hrecord: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordPage(hrecord : super:: HDIAGNOSTIC_RECORD) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordPage(hrecord : HDIAGNOSTIC_RECORD) -> windows_core::HRESULT); DdqFreeDiagnosticRecordPage(hrecord.param().abi()).ok() } #[inline] pub unsafe fn DdqFreeDiagnosticRecordProducerCategories(hcategorydescription: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducerCategories(hcategorydescription : super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducerCategories(hcategorydescription : HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_core::HRESULT); DdqFreeDiagnosticRecordProducerCategories(hcategorydescription.param().abi()).ok() } #[inline] pub unsafe fn DdqFreeDiagnosticRecordProducers(hproducerdescription: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducers(hproducerdescription : super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticRecordProducers(hproducerdescription : HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_core::HRESULT); DdqFreeDiagnosticRecordProducers(hproducerdescription.param().abi()).ok() } #[inline] pub unsafe fn DdqFreeDiagnosticReport(hreport: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticReport(hreport : super:: HDIAGNOSTIC_REPORT) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqFreeDiagnosticReport(hreport : HDIAGNOSTIC_REPORT) -> windows_core::HRESULT); DdqFreeDiagnosticReport(hreport.param().abi()).ok() } #[inline] @@ -79,223 +79,223 @@ pub unsafe fn DdqGetDiagnosticDataAccessLevelAllowed() -> windows_core::Result(hrecord: P0, index: u32, record: *mut DIAGNOSTIC_DATA_RECORD) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordAtIndex(hrecord : super:: HDIAGNOSTIC_RECORD, index : u32, record : *mut DIAGNOSTIC_DATA_RECORD) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordAtIndex(hrecord : HDIAGNOSTIC_RECORD, index : u32, record : *mut DIAGNOSTIC_DATA_RECORD) -> windows_core::HRESULT); DdqGetDiagnosticRecordAtIndex(hrecord.param().abi(), index, record).ok() } #[inline] pub unsafe fn DdqGetDiagnosticRecordBinaryDistribution(hsession: P0, producernames: &[windows_core::PCWSTR], topnbinaries: u32, binarystats: *mut *mut DIAGNOSTIC_DATA_EVENT_BINARY_STATS, statcount: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordBinaryDistribution(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_core::PCWSTR, producernamecount : u32, topnbinaries : u32, binarystats : *mut *mut DIAGNOSTIC_DATA_EVENT_BINARY_STATS, statcount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordBinaryDistribution(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_core::PCWSTR, producernamecount : u32, topnbinaries : u32, binarystats : *mut *mut DIAGNOSTIC_DATA_EVENT_BINARY_STATS, statcount : *mut u32) -> windows_core::HRESULT); DdqGetDiagnosticRecordBinaryDistribution(hsession.param().abi(), core::mem::transmute(producernames.as_ptr()), producernames.len().try_into().unwrap(), topnbinaries, binarystats, statcount).ok() } #[inline] pub unsafe fn DdqGetDiagnosticRecordCategoryAtIndex(hcategorydescription: P0, index: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryAtIndex(hcategorydescription : super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, index : u32, categorydescription : *mut DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryAtIndex(hcategorydescription : HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, index : u32, categorydescription : *mut DIAGNOSTIC_DATA_EVENT_CATEGORY_DESCRIPTION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordCategoryAtIndex(hcategorydescription.param().abi(), index, &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordCategoryCount(hcategorydescription: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryCount(hcategorydescription : super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, categorydescriptioncount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCategoryCount(hcategorydescription : HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION, categorydescriptioncount : *mut u32) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordCategoryCount(hcategorydescription.param().abi(), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordCount(hrecord: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCount(hrecord : super:: HDIAGNOSTIC_RECORD, recordcount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordCount(hrecord : HDIAGNOSTIC_RECORD, recordcount : *mut u32) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordCount(hrecord.param().abi(), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordLocaleTagAtIndex(htagdescription: P0, index: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagAtIndex(htagdescription : super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, index : u32, tagdescription : *mut DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagAtIndex(htagdescription : HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, index : u32, tagdescription : *mut DIAGNOSTIC_DATA_EVENT_TAG_DESCRIPTION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordLocaleTagAtIndex(htagdescription.param().abi(), index, &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordLocaleTagCount(htagdescription: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagCount(htagdescription : super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, tagdescriptioncount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTagCount(htagdescription : HDIAGNOSTIC_EVENT_TAG_DESCRIPTION, tagdescriptioncount : *mut u32) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordLocaleTagCount(htagdescription.param().abi(), &mut result__).map(|| result__) } #[inline] -pub unsafe fn DdqGetDiagnosticRecordLocaleTags(hsession: P0, locale: P1) -> windows_core::Result +pub unsafe fn DdqGetDiagnosticRecordLocaleTags(hsession: P0, locale: P1) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTags(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, locale : windows_core::PCWSTR, htagdescription : *mut super:: HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordLocaleTags(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, locale : windows_core::PCWSTR, htagdescription : *mut HDIAGNOSTIC_EVENT_TAG_DESCRIPTION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordLocaleTags(hsession.param().abi(), locale.param().abi(), &mut result__).map(|| result__) } #[inline] -pub unsafe fn DdqGetDiagnosticRecordPage(hsession: P0, searchcriteria: *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, offset: u32, pagerecordcount: u32, baserowid: i64) -> windows_core::Result +pub unsafe fn DdqGetDiagnosticRecordPage(hsession: P0, searchcriteria: *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, offset: u32, pagerecordcount: u32, baserowid: i64) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPage(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, offset : u32, pagerecordcount : u32, baserowid : i64, hrecord : *mut super:: HDIAGNOSTIC_RECORD) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPage(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, offset : u32, pagerecordcount : u32, baserowid : i64, hrecord : *mut HDIAGNOSTIC_RECORD) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordPage(hsession.param().abi(), searchcriteria, offset, pagerecordcount, baserowid, &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordPayload(hsession: P0, rowid: i64) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPayload(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, rowid : i64, payload : *mut windows_core::PCWSTR) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordPayload(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, rowid : i64, payload : *mut windows_core::PCWSTR) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordPayload(hsession.param().abi(), rowid, &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordProducerAtIndex(hproducerdescription: P0, index: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerAtIndex(hproducerdescription : super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, index : u32, producerdescription : *mut DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerAtIndex(hproducerdescription : HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, index : u32, producerdescription : *mut DIAGNOSTIC_DATA_EVENT_PRODUCER_DESCRIPTION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordProducerAtIndex(hproducerdescription.param().abi(), index, &mut result__).map(|| result__) } #[inline] -pub unsafe fn DdqGetDiagnosticRecordProducerCategories(hsession: P0, producername: P1) -> windows_core::Result +pub unsafe fn DdqGetDiagnosticRecordProducerCategories(hsession: P0, producername: P1) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCategories(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producername : windows_core::PCWSTR, hcategorydescription : *mut super:: HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCategories(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producername : windows_core::PCWSTR, hcategorydescription : *mut HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordProducerCategories(hsession.param().abi(), producername.param().abi(), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordProducerCount(hproducerdescription: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCount(hproducerdescription : super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, producerdescriptioncount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducerCount(hproducerdescription : HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION, producerdescriptioncount : *mut u32) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordProducerCount(hproducerdescription.param().abi(), &mut result__).map(|| result__) } #[inline] -pub unsafe fn DdqGetDiagnosticRecordProducers(hsession: P0) -> windows_core::Result +pub unsafe fn DdqGetDiagnosticRecordProducers(hsession: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducers(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, hproducerdescription : *mut super:: HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordProducers(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, hproducerdescription : *mut HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticRecordProducers(hsession.param().abi(), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticRecordStats(hsession: P0, searchcriteria: *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, recordcount: *mut u32, minrowid: *mut i64, maxrowid: *mut i64) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordStats(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, recordcount : *mut u32, minrowid : *mut i64, maxrowid : *mut i64) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordStats(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, searchcriteria : *const DIAGNOSTIC_DATA_SEARCH_CRITERIA, recordcount : *mut u32, minrowid : *mut i64, maxrowid : *mut i64) -> windows_core::HRESULT); DdqGetDiagnosticRecordStats(hsession.param().abi(), searchcriteria, recordcount, minrowid, maxrowid).ok() } #[inline] pub unsafe fn DdqGetDiagnosticRecordSummary(hsession: P0, producernames: &[windows_core::PCWSTR], generalstats: *mut DIAGNOSTIC_DATA_GENERAL_STATS) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordSummary(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_core::PCWSTR, producernamecount : u32, generalstats : *mut DIAGNOSTIC_DATA_GENERAL_STATS) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordSummary(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_core::PCWSTR, producernamecount : u32, generalstats : *mut DIAGNOSTIC_DATA_GENERAL_STATS) -> windows_core::HRESULT); DdqGetDiagnosticRecordSummary(hsession.param().abi(), core::mem::transmute(producernames.as_ptr()), producernames.len().try_into().unwrap(), generalstats).ok() } #[inline] pub unsafe fn DdqGetDiagnosticRecordTagDistribution(hsession: P0, producernames: &[windows_core::PCWSTR], tagstats: *mut *mut DIAGNOSTIC_DATA_EVENT_TAG_STATS, statcount: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordTagDistribution(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_core::PCWSTR, producernamecount : u32, tagstats : *mut *mut DIAGNOSTIC_DATA_EVENT_TAG_STATS, statcount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticRecordTagDistribution(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, producernames : *const windows_core::PCWSTR, producernamecount : u32, tagstats : *mut *mut DIAGNOSTIC_DATA_EVENT_TAG_STATS, statcount : *mut u32) -> windows_core::HRESULT); DdqGetDiagnosticRecordTagDistribution(hsession.param().abi(), core::mem::transmute(producernames.as_ptr()), producernames.len().try_into().unwrap(), tagstats, statcount).ok() } #[inline] -pub unsafe fn DdqGetDiagnosticReport(hsession: P0, reportstoretype: u32) -> windows_core::Result +pub unsafe fn DdqGetDiagnosticReport(hsession: P0, reportstoretype: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReport(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, hreport : *mut super:: HDIAGNOSTIC_REPORT) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReport(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, hreport : *mut HDIAGNOSTIC_REPORT) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticReport(hsession.param().abi(), reportstoretype, &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticReportAtIndex(hreport: P0, index: u32, report: *mut DIAGNOSTIC_REPORT_DATA) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportAtIndex(hreport : super:: HDIAGNOSTIC_REPORT, index : u32, report : *mut DIAGNOSTIC_REPORT_DATA) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportAtIndex(hreport : HDIAGNOSTIC_REPORT, index : u32, report : *mut DIAGNOSTIC_REPORT_DATA) -> windows_core::HRESULT); DdqGetDiagnosticReportAtIndex(hreport.param().abi(), index, report).ok() } #[inline] pub unsafe fn DdqGetDiagnosticReportCount(hreport: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportCount(hreport : super:: HDIAGNOSTIC_REPORT, reportcount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportCount(hreport : HDIAGNOSTIC_REPORT, reportcount : *mut u32) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticReportCount(hreport.param().abi(), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetDiagnosticReportStoreReportCount(hsession: P0, reportstoretype: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportStoreReportCount(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportcount : *mut u32) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetDiagnosticReportStoreReportCount(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, reportstoretype : u32, reportcount : *mut u32) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetDiagnosticReportStoreReportCount(hsession.param().abi(), reportstoretype, &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetSessionAccessLevel(hsession: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetSessionAccessLevel(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, accesslevel : *mut DdqAccessLevel) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetSessionAccessLevel(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, accesslevel : *mut DdqAccessLevel) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetSessionAccessLevel(hsession.param().abi(), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqGetTranscriptConfiguration(hsession: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetTranscriptConfiguration(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, currentconfig : *mut DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqGetTranscriptConfiguration(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, currentconfig : *mut DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqGetTranscriptConfiguration(hsession.param().abi(), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqIsDiagnosticRecordSampledIn(hsession: P0, providergroup: *const windows_core::GUID, providerid: Option<*const windows_core::GUID>, providername: P1, eventid: Option<*const u32>, eventname: P2, eventversion: Option<*const u32>, eventkeywords: Option<*const u64>) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqIsDiagnosticRecordSampledIn(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, providergroup : *const windows_core::GUID, providerid : *const windows_core::GUID, providername : windows_core::PCWSTR, eventid : *const u32, eventname : windows_core::PCWSTR, eventversion : *const u32, eventkeywords : *const u64, issampledin : *mut super::super::Foundation:: BOOL) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqIsDiagnosticRecordSampledIn(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, providergroup : *const windows_core::GUID, providerid : *const windows_core::GUID, providername : windows_core::PCWSTR, eventid : *const u32, eventname : windows_core::PCWSTR, eventversion : *const u32, eventkeywords : *const u64, issampledin : *mut super::super::Foundation:: BOOL) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DdqIsDiagnosticRecordSampledIn(hsession.param().abi(), providergroup, core::mem::transmute(providerid.unwrap_or(std::ptr::null())), providername.param().abi(), core::mem::transmute(eventid.unwrap_or(std::ptr::null())), eventname.param().abi(), core::mem::transmute(eventversion.unwrap_or(std::ptr::null())), core::mem::transmute(eventkeywords.unwrap_or(std::ptr::null())), &mut result__).map(|| result__) } #[inline] pub unsafe fn DdqSetTranscriptConfiguration(hsession: P0, desiredconfig: *const DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqSetTranscriptConfiguration(hsession : super:: HDIAGNOSTIC_DATA_QUERY_SESSION, desiredconfig : *const DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_core::HRESULT); + windows_targets::link!("diagnosticdataquery.dll" "system" fn DdqSetTranscriptConfiguration(hsession : HDIAGNOSTIC_DATA_QUERY_SESSION, desiredconfig : *const DIAGNOSTIC_DATA_EVENT_TRANSCRIPT_CONFIGURATION) -> windows_core::HRESULT); DdqSetTranscriptConfiguration(hsession.param().abi(), desiredconfig).ok() } pub const AllUserData: DdqAccessLevel = DdqAccessLevel(2i32); @@ -519,3 +519,147 @@ impl Default for DIAGNOSTIC_REPORT_SIGNATURE { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HDIAGNOSTIC_DATA_QUERY_SESSION(pub *mut core::ffi::c_void); +impl HDIAGNOSTIC_DATA_QUERY_SESSION { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HDIAGNOSTIC_DATA_QUERY_SESSION { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdqCloseSession(*self); + } + } +} +impl Default for HDIAGNOSTIC_DATA_QUERY_SESSION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HDIAGNOSTIC_DATA_QUERY_SESSION { + type TypeKind = windows_core::CopyType; +} +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION(pub *mut core::ffi::c_void); +impl HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdqFreeDiagnosticRecordProducerCategories(*self); + } + } +} +impl Default for HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION { + type TypeKind = windows_core::CopyType; +} +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION(pub *mut core::ffi::c_void); +impl HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdqFreeDiagnosticRecordProducers(*self); + } + } +} +impl Default for HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION { + type TypeKind = windows_core::CopyType; +} +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HDIAGNOSTIC_EVENT_TAG_DESCRIPTION(pub *mut core::ffi::c_void); +impl HDIAGNOSTIC_EVENT_TAG_DESCRIPTION { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HDIAGNOSTIC_EVENT_TAG_DESCRIPTION { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdqFreeDiagnosticRecordLocaleTags(*self); + } + } +} +impl Default for HDIAGNOSTIC_EVENT_TAG_DESCRIPTION { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HDIAGNOSTIC_EVENT_TAG_DESCRIPTION { + type TypeKind = windows_core::CopyType; +} +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HDIAGNOSTIC_RECORD(pub *mut core::ffi::c_void); +impl HDIAGNOSTIC_RECORD { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HDIAGNOSTIC_RECORD { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdqFreeDiagnosticRecordPage(*self); + } + } +} +impl Default for HDIAGNOSTIC_RECORD { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HDIAGNOSTIC_RECORD { + type TypeKind = windows_core::CopyType; +} +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HDIAGNOSTIC_REPORT(pub *mut core::ffi::c_void); +impl HDIAGNOSTIC_REPORT { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HDIAGNOSTIC_REPORT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdqFreeDiagnosticReport(*self); + } + } +} +impl Default for HDIAGNOSTIC_REPORT { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HDIAGNOSTIC_REPORT { + type TypeKind = windows_core::CopyType; +} diff --git a/crates/libs/windows/src/Windows/Win32/Security/Isolation/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/Isolation/mod.rs index dfd764c56d..4a482d6e74 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/Isolation/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/Isolation/mod.rs @@ -1,11 +1,11 @@ #[inline] -pub unsafe fn CreateAppContainerProfile(pszappcontainername: P0, pszdisplayname: P1, pszdescription: P2, pcapabilities: Option<&[super::SID_AND_ATTRIBUTES]>) -> windows_core::Result +pub unsafe fn CreateAppContainerProfile(pszappcontainername: P0, pszdisplayname: P1, pszdescription: P2, pcapabilities: Option<&[super::SID_AND_ATTRIBUTES]>) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("userenv.dll" "system" fn CreateAppContainerProfile(pszappcontainername : windows_core::PCWSTR, pszdisplayname : windows_core::PCWSTR, pszdescription : windows_core::PCWSTR, pcapabilities : *const super:: SID_AND_ATTRIBUTES, dwcapabilitycount : u32, ppsidappcontainersid : *mut super::super::Foundation:: PSID) -> windows_core::HRESULT); + windows_targets::link!("userenv.dll" "system" fn CreateAppContainerProfile(pszappcontainername : windows_core::PCWSTR, pszdisplayname : windows_core::PCWSTR, pszdescription : windows_core::PCWSTR, pcapabilities : *const super:: SID_AND_ATTRIBUTES, dwcapabilitycount : u32, ppsidappcontainersid : *mut super:: PSID) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); CreateAppContainerProfile(pszappcontainername.param().abi(), pszdisplayname.param().abi(), pszdescription.param().abi(), core::mem::transmute(pcapabilities.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pcapabilities.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), &mut result__).map(|| result__) } @@ -18,21 +18,21 @@ where DeleteAppContainerProfile(pszappcontainername.param().abi()).ok() } #[inline] -pub unsafe fn DeriveAppContainerSidFromAppContainerName(pszappcontainername: P0) -> windows_core::Result +pub unsafe fn DeriveAppContainerSidFromAppContainerName(pszappcontainername: P0) -> windows_core::Result where P0: windows_core::Param, { - windows_targets::link!("userenv.dll" "system" fn DeriveAppContainerSidFromAppContainerName(pszappcontainername : windows_core::PCWSTR, ppsidappcontainersid : *mut super::super::Foundation:: PSID) -> windows_core::HRESULT); + windows_targets::link!("userenv.dll" "system" fn DeriveAppContainerSidFromAppContainerName(pszappcontainername : windows_core::PCWSTR, ppsidappcontainersid : *mut super:: PSID) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DeriveAppContainerSidFromAppContainerName(pszappcontainername.param().abi(), &mut result__).map(|| result__) } #[inline] -pub unsafe fn DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName(psidappcontainersid: P0, pszrestrictedappcontainername: P1) -> windows_core::Result +pub unsafe fn DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName(psidappcontainersid: P0, pszrestrictedappcontainername: P1) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("userenv.dll" "system" fn DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName(psidappcontainersid : super::super::Foundation:: PSID, pszrestrictedappcontainername : windows_core::PCWSTR, ppsidrestrictedappcontainersid : *mut super::super::Foundation:: PSID) -> windows_core::HRESULT); + windows_targets::link!("userenv.dll" "system" fn DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName(psidappcontainersid : super:: PSID, pszrestrictedappcontainername : windows_core::PCWSTR, ppsidrestrictedappcontainersid : *mut super:: PSID) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName(psidappcontainersid.param().abi(), pszrestrictedappcontainername.param().abi(), &mut result__).map(|| result__) } @@ -49,9 +49,9 @@ where pub unsafe fn GetAppContainerNamedObjectPath(token: P0, appcontainersid: P1, objectpath: Option<&mut [u16]>, returnlength: *mut u32) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn GetAppContainerNamedObjectPath(token : super::super::Foundation:: HANDLE, appcontainersid : super::super::Foundation:: PSID, objectpathlength : u32, objectpath : windows_core::PWSTR, returnlength : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn GetAppContainerNamedObjectPath(token : super::super::Foundation:: HANDLE, appcontainersid : super:: PSID, objectpathlength : u32, objectpath : windows_core::PWSTR, returnlength : *mut u32) -> super::super::Foundation:: BOOL); GetAppContainerNamedObjectPath(token.param().abi(), appcontainersid.param().abi(), objectpath.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(objectpath.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), returnlength).ok() } #[cfg(feature = "Win32_System_Registry")] diff --git a/crates/libs/windows/src/Windows/Win32/Security/mod.rs b/crates/libs/windows/src/Windows/Win32/Security/mod.rs index b501ab9d3b..0e29b176a3 100644 --- a/crates/libs/windows/src/Windows/Win32/Security/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Security/mod.rs @@ -67,10 +67,10 @@ where pub unsafe fn AccessCheckByType(psecuritydescriptor: P0, principalselfsid: P1, clienttoken: P2, desiredaccess: u32, objecttypelist: Option<&mut [OBJECT_TYPE_LIST]>, genericmapping: *const GENERIC_MAPPING, privilegeset: Option<*mut PRIVILEGE_SET>, privilegesetlength: *mut u32, grantedaccess: *mut u32, accessstatus: *mut super::Foundation::BOOL) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByType(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByType(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); AccessCheckByType(psecuritydescriptor.param().abi(), principalselfsid.param().abi(), clienttoken.param().abi(), desiredaccess, core::mem::transmute(objecttypelist.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), objecttypelist.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), genericmapping, core::mem::transmute(privilegeset.unwrap_or(std::ptr::null_mut())), privilegesetlength, grantedaccess, accessstatus).ok() } #[inline] @@ -80,10 +80,10 @@ where P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, - P4: windows_core::Param, + P4: windows_core::Param, P5: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmA(subsystemname : windows_core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCSTR, objectname : windows_core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmA(subsystemname : windows_core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCSTR, objectname : windows_core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); AccessCheckByTypeAndAuditAlarmA(subsystemname.param().abi(), handleid, objecttypename.param().abi(), objectname.param().abi(), securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), objecttypelist.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, pfgenerateonclose).ok() } #[inline] @@ -93,20 +93,20 @@ where P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, - P4: windows_core::Param, + P4: windows_core::Param, P5: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmW(subsystemname : windows_core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCWSTR, objectname : windows_core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeAndAuditAlarmW(subsystemname : windows_core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCWSTR, objectname : windows_core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatus : *mut super::Foundation:: BOOL, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); AccessCheckByTypeAndAuditAlarmW(subsystemname.param().abi(), handleid, objecttypename.param().abi(), objectname.param().abi(), securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), objecttypelist.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), genericmapping, objectcreation.param().abi(), grantedaccess, accessstatus, pfgenerateonclose) } #[inline] pub unsafe fn AccessCheckByTypeResultList(psecuritydescriptor: P0, principalselfsid: P1, clienttoken: P2, desiredaccess: u32, objecttypelist: Option<*mut OBJECT_TYPE_LIST>, objecttypelistlength: u32, genericmapping: *const GENERIC_MAPPING, privilegeset: Option<*mut PRIVILEGE_SET>, privilegesetlength: *mut u32, grantedaccesslist: *mut u32, accessstatuslist: *mut u32) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultList(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccesslist : *mut u32, accessstatuslist : *mut u32) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultList(psecuritydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, clienttoken : super::Foundation:: HANDLE, desiredaccess : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, privilegeset : *mut PRIVILEGE_SET, privilegesetlength : *mut u32, grantedaccesslist : *mut u32, accessstatuslist : *mut u32) -> super::Foundation:: BOOL); AccessCheckByTypeResultList(psecuritydescriptor.param().abi(), principalselfsid.param().abi(), clienttoken.param().abi(), desiredaccess, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null_mut())), objecttypelistlength, genericmapping, core::mem::transmute(privilegeset.unwrap_or(std::ptr::null_mut())), privilegesetlength, grantedaccesslist, accessstatuslist).ok() } #[inline] @@ -116,10 +116,10 @@ where P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, - P4: windows_core::Param, + P4: windows_core::Param, P5: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmA(subsystemname : windows_core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCSTR, objectname : windows_core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmA(subsystemname : windows_core::PCSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCSTR, objectname : windows_core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); AccessCheckByTypeResultListAndAuditAlarmA(subsystemname.param().abi(), handleid, objecttypename.param().abi(), objectname.param().abi(), securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null_mut())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccess, accessstatuslist, pfgenerateonclose).ok() } #[inline] @@ -130,10 +130,10 @@ where P2: windows_core::Param, P3: windows_core::Param, P4: windows_core::Param, - P5: windows_core::Param, + P5: windows_core::Param, P6: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleA(subsystemname : windows_core::PCSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_core::PCSTR, objectname : windows_core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleA(subsystemname : windows_core::PCSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_core::PCSTR, objectname : windows_core::PCSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccess : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); AccessCheckByTypeResultListAndAuditAlarmByHandleA(subsystemname.param().abi(), handleid, clienttoken.param().abi(), objecttypename.param().abi(), objectname.param().abi(), securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null_mut())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccess, accessstatuslist, pfgenerateonclose).ok() } #[inline] @@ -144,10 +144,10 @@ where P2: windows_core::Param, P3: windows_core::Param, P4: windows_core::Param, - P5: windows_core::Param, + P5: windows_core::Param, P6: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleW(subsystemname : windows_core::PCWSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_core::PCWSTR, objectname : windows_core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmByHandleW(subsystemname : windows_core::PCWSTR, handleid : *const core::ffi::c_void, clienttoken : super::Foundation:: HANDLE, objecttypename : windows_core::PCWSTR, objectname : windows_core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); AccessCheckByTypeResultListAndAuditAlarmByHandleW(subsystemname.param().abi(), handleid, clienttoken.param().abi(), objecttypename.param().abi(), objectname.param().abi(), securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null_mut())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccesslist, accessstatuslist, pfgenerateonclose) } #[inline] @@ -157,58 +157,58 @@ where P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, - P4: windows_core::Param, + P4: windows_core::Param, P5: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmW(subsystemname : windows_core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCWSTR, objectname : windows_core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : super::Foundation:: PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AccessCheckByTypeResultListAndAuditAlarmW(subsystemname : windows_core::PCWSTR, handleid : *const core::ffi::c_void, objecttypename : windows_core::PCWSTR, objectname : windows_core::PCWSTR, securitydescriptor : PSECURITY_DESCRIPTOR, principalselfsid : PSID, desiredaccess : u32, audittype : AUDIT_EVENT_TYPE, flags : u32, objecttypelist : *mut OBJECT_TYPE_LIST, objecttypelistlength : u32, genericmapping : *const GENERIC_MAPPING, objectcreation : super::Foundation:: BOOL, grantedaccesslist : *mut u32, accessstatuslist : *mut u32, pfgenerateonclose : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); AccessCheckByTypeResultListAndAuditAlarmW(subsystemname.param().abi(), handleid, objecttypename.param().abi(), objectname.param().abi(), securitydescriptor.param().abi(), principalselfsid.param().abi(), desiredaccess, audittype, flags, core::mem::transmute(objecttypelist.unwrap_or(std::ptr::null_mut())), objecttypelistlength, genericmapping, objectcreation.param().abi(), grantedaccesslist, accessstatuslist, pfgenerateonclose) } #[inline] pub unsafe fn AddAccessAllowedAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, accessmask: u32, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); AddAccessAllowedAce(pacl, dwacerevision, accessmask, psid.param().abi()).ok() } #[inline] pub unsafe fn AddAccessAllowedAceEx(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, accessmask: u32, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); AddAccessAllowedAceEx(pacl, dwacerevision, aceflags, accessmask, psid.param().abi()).ok() } #[inline] pub unsafe fn AddAccessAllowedObjectAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, accessmask: u32, objecttypeguid: Option<*const windows_core::GUID>, inheritedobjecttypeguid: Option<*const windows_core::GUID>, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_core::GUID, inheritedobjecttypeguid : *const windows_core::GUID, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAccessAllowedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_core::GUID, inheritedobjecttypeguid : *const windows_core::GUID, psid : PSID) -> super::Foundation:: BOOL); AddAccessAllowedObjectAce(pacl, dwacerevision, aceflags, accessmask, core::mem::transmute(objecttypeguid.unwrap_or(std::ptr::null())), core::mem::transmute(inheritedobjecttypeguid.unwrap_or(std::ptr::null())), psid.param().abi()).ok() } #[inline] pub unsafe fn AddAccessDeniedAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, accessmask: u32, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); AddAccessDeniedAce(pacl, dwacerevision, accessmask, psid.param().abi()).ok() } #[inline] pub unsafe fn AddAccessDeniedAceEx(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, accessmask: u32, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); AddAccessDeniedAceEx(pacl, dwacerevision, aceflags, accessmask, psid.param().abi()).ok() } #[inline] pub unsafe fn AddAccessDeniedObjectAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, accessmask: u32, objecttypeguid: Option<*const windows_core::GUID>, inheritedobjecttypeguid: Option<*const windows_core::GUID>, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_core::GUID, inheritedobjecttypeguid : *const windows_core::GUID, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAccessDeniedObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_core::GUID, inheritedobjecttypeguid : *const windows_core::GUID, psid : PSID) -> super::Foundation:: BOOL); AddAccessDeniedObjectAce(pacl, dwacerevision, aceflags, accessmask, core::mem::transmute(objecttypeguid.unwrap_or(std::ptr::null())), core::mem::transmute(inheritedobjecttypeguid.unwrap_or(std::ptr::null())), psid.param().abi()).ok() } #[inline] @@ -219,64 +219,64 @@ pub unsafe fn AddAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, dwstartingacei #[inline] pub unsafe fn AddAuditAccessAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, dwaccessmask: u32, psid: P0, bauditsuccess: P1, bauditfailure: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, dwaccessmask : u32, psid : super::Foundation:: PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, dwaccessmask : u32, psid : PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); AddAuditAccessAce(pacl, dwacerevision, dwaccessmask, psid.param().abi(), bauditsuccess.param().abi(), bauditfailure.param().abi()).ok() } #[inline] pub unsafe fn AddAuditAccessAceEx(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, dwaccessmask: u32, psid: P0, bauditsuccess: P1, bauditfailure: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, dwaccessmask : u32, psid : super::Foundation:: PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessAceEx(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, dwaccessmask : u32, psid : PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); AddAuditAccessAceEx(pacl, dwacerevision, aceflags, dwaccessmask, psid.param().abi(), bauditsuccess.param().abi(), bauditfailure.param().abi()).ok() } #[inline] pub unsafe fn AddAuditAccessObjectAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, accessmask: u32, objecttypeguid: Option<*const windows_core::GUID>, inheritedobjecttypeguid: Option<*const windows_core::GUID>, psid: P0, bauditsuccess: P1, bauditfailure: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_core::GUID, inheritedobjecttypeguid : *const windows_core::GUID, psid : super::Foundation:: PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddAuditAccessObjectAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, objecttypeguid : *const windows_core::GUID, inheritedobjecttypeguid : *const windows_core::GUID, psid : PSID, bauditsuccess : super::Foundation:: BOOL, bauditfailure : super::Foundation:: BOOL) -> super::Foundation:: BOOL); AddAuditAccessObjectAce(pacl, dwacerevision, aceflags, accessmask, core::mem::transmute(objecttypeguid.unwrap_or(std::ptr::null())), core::mem::transmute(inheritedobjecttypeguid.unwrap_or(std::ptr::null())), psid.param().abi(), bauditsuccess.param().abi(), bauditfailure.param().abi()).ok() } #[inline] pub unsafe fn AddConditionalAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, acetype: u8, accessmask: u32, psid: P0, conditionstr: P1, returnlength: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddConditionalAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, acetype : u8, accessmask : u32, psid : super::Foundation:: PSID, conditionstr : windows_core::PCWSTR, returnlength : *mut u32) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddConditionalAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, acetype : u8, accessmask : u32, psid : PSID, conditionstr : windows_core::PCWSTR, returnlength : *mut u32) -> super::Foundation:: BOOL); AddConditionalAce(pacl, dwacerevision, aceflags, acetype, accessmask, psid.param().abi(), conditionstr.param().abi(), returnlength).ok() } #[inline] pub unsafe fn AddMandatoryAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, mandatorypolicy: u32, plabelsid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn AddMandatoryAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, mandatorypolicy : u32, plabelsid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn AddMandatoryAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, mandatorypolicy : u32, plabelsid : PSID) -> super::Foundation:: BOOL); AddMandatoryAce(pacl, dwacerevision, aceflags, mandatorypolicy, plabelsid.param().abi()).ok() } #[inline] pub unsafe fn AddResourceAttributeAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, accessmask: u32, psid: P0, pattributeinfo: *const CLAIM_SECURITY_ATTRIBUTES_INFORMATION, preturnlength: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn AddResourceAttributeAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID, pattributeinfo : *const CLAIM_SECURITY_ATTRIBUTES_INFORMATION, preturnlength : *mut u32) -> super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn AddResourceAttributeAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID, pattributeinfo : *const CLAIM_SECURITY_ATTRIBUTES_INFORMATION, preturnlength : *mut u32) -> super::Foundation:: BOOL); AddResourceAttributeAce(pacl, dwacerevision, aceflags, accessmask, psid.param().abi(), pattributeinfo, preturnlength).ok() } #[inline] pub unsafe fn AddScopedPolicyIDAce(pacl: *mut ACL, dwacerevision: ACE_REVISION, aceflags: ACE_FLAGS, accessmask: u32, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn AddScopedPolicyIDAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn AddScopedPolicyIDAce(pacl : *mut ACL, dwacerevision : ACE_REVISION, aceflags : ACE_FLAGS, accessmask : u32, psid : PSID) -> super::Foundation:: BOOL); AddScopedPolicyIDAce(pacl, dwacerevision, aceflags, accessmask, psid.param().abi()).ok() } #[inline] @@ -298,8 +298,8 @@ where AdjustTokenPrivileges(tokenhandle.param().abi(), disableallprivileges.param().abi(), core::mem::transmute(newstate.unwrap_or(std::ptr::null())), bufferlength, core::mem::transmute(previousstate.unwrap_or(std::ptr::null_mut())), core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] -pub unsafe fn AllocateAndInitializeSid(pidentifierauthority: *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount: u8, nsubauthority0: u32, nsubauthority1: u32, nsubauthority2: u32, nsubauthority3: u32, nsubauthority4: u32, nsubauthority5: u32, nsubauthority6: u32, nsubauthority7: u32, psid: *mut super::Foundation::PSID) -> windows_core::Result<()> { - windows_targets::link!("advapi32.dll" "system" fn AllocateAndInitializeSid(pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8, nsubauthority0 : u32, nsubauthority1 : u32, nsubauthority2 : u32, nsubauthority3 : u32, nsubauthority4 : u32, nsubauthority5 : u32, nsubauthority6 : u32, nsubauthority7 : u32, psid : *mut super::Foundation:: PSID) -> super::Foundation:: BOOL); +pub unsafe fn AllocateAndInitializeSid(pidentifierauthority: *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount: u8, nsubauthority0: u32, nsubauthority1: u32, nsubauthority2: u32, nsubauthority3: u32, nsubauthority4: u32, nsubauthority5: u32, nsubauthority6: u32, nsubauthority7: u32, psid: *mut PSID) -> windows_core::Result<()> { + windows_targets::link!("advapi32.dll" "system" fn AllocateAndInitializeSid(pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8, nsubauthority0 : u32, nsubauthority1 : u32, nsubauthority2 : u32, nsubauthority3 : u32, nsubauthority4 : u32, nsubauthority5 : u32, nsubauthority6 : u32, nsubauthority7 : u32, psid : *mut PSID) -> super::Foundation:: BOOL); AllocateAndInitializeSid(pidentifierauthority, nsubauthoritycount, nsubauthority0, nsubauthority1, nsubauthority2, nsubauthority3, nsubauthority4, nsubauthority5, nsubauthority6, nsubauthority7, psid).ok() } #[inline] @@ -321,27 +321,27 @@ pub unsafe fn AreAnyAccessesGranted(grantedaccess: u32, desiredaccess: u32) -> s pub unsafe fn CheckTokenCapability(tokenhandle: P0, capabilitysidtocheck: P1, hascapability: *mut super::Foundation::BOOL) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn CheckTokenCapability(tokenhandle : super::Foundation:: HANDLE, capabilitysidtocheck : super::Foundation:: PSID, hascapability : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn CheckTokenCapability(tokenhandle : super::Foundation:: HANDLE, capabilitysidtocheck : PSID, hascapability : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); CheckTokenCapability(tokenhandle.param().abi(), capabilitysidtocheck.param().abi(), hascapability).ok() } #[inline] pub unsafe fn CheckTokenMembership(tokenhandle: P0, sidtocheck: P1, ismember: *mut super::Foundation::BOOL) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn CheckTokenMembership(tokenhandle : super::Foundation:: HANDLE, sidtocheck : super::Foundation:: PSID, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn CheckTokenMembership(tokenhandle : super::Foundation:: HANDLE, sidtocheck : PSID, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); CheckTokenMembership(tokenhandle.param().abi(), sidtocheck.param().abi(), ismember).ok() } #[inline] pub unsafe fn CheckTokenMembershipEx(tokenhandle: P0, sidtocheck: P1, flags: u32, ismember: *mut super::Foundation::BOOL) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn CheckTokenMembershipEx(tokenhandle : super::Foundation:: HANDLE, sidtocheck : super::Foundation:: PSID, flags : u32, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn CheckTokenMembershipEx(tokenhandle : super::Foundation:: HANDLE, sidtocheck : PSID, flags : u32, ismember : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); CheckTokenMembershipEx(tokenhandle.param().abi(), sidtocheck.param().abi(), flags, ismember).ok() } #[inline] @@ -355,11 +355,11 @@ where ConvertToAutoInheritPrivateObjectSecurity(parentdescriptor.param().abi(), currentsecuritydescriptor.param().abi(), newsecuritydescriptor, core::mem::transmute(objecttype.unwrap_or(std::ptr::null())), isdirectoryobject.param().abi(), genericmapping).ok() } #[inline] -pub unsafe fn CopySid(ndestinationsidlength: u32, pdestinationsid: super::Foundation::PSID, psourcesid: P0) -> windows_core::Result<()> +pub unsafe fn CopySid(ndestinationsidlength: u32, pdestinationsid: PSID, psourcesid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn CopySid(ndestinationsidlength : u32, pdestinationsid : super::Foundation:: PSID, psourcesid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn CopySid(ndestinationsidlength : u32, pdestinationsid : PSID, psourcesid : PSID) -> super::Foundation:: BOOL); CopySid(ndestinationsidlength, pdestinationsid, psourcesid.param().abi()).ok() } #[inline] @@ -415,11 +415,11 @@ where .ok() } #[inline] -pub unsafe fn CreateWellKnownSid(wellknownsidtype: WELL_KNOWN_SID_TYPE, domainsid: P0, psid: super::Foundation::PSID, cbsid: *mut u32) -> windows_core::Result<()> +pub unsafe fn CreateWellKnownSid(wellknownsidtype: WELL_KNOWN_SID_TYPE, domainsid: P0, psid: PSID, cbsid: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn CreateWellKnownSid(wellknownsidtype : WELL_KNOWN_SID_TYPE, domainsid : super::Foundation:: PSID, psid : super::Foundation:: PSID, cbsid : *mut u32) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn CreateWellKnownSid(wellknownsidtype : WELL_KNOWN_SID_TYPE, domainsid : PSID, psid : PSID, cbsid : *mut u32) -> super::Foundation:: BOOL); CreateWellKnownSid(wellknownsidtype, domainsid.param().abi(), psid, cbsid).ok() } #[inline] @@ -428,11 +428,11 @@ pub unsafe fn DeleteAce(pacl: *mut ACL, dwaceindex: u32) -> windows_core::Result DeleteAce(pacl, dwaceindex).ok() } #[inline] -pub unsafe fn DeriveCapabilitySidsFromName(capname: P0, capabilitygroupsids: *mut *mut super::Foundation::PSID, capabilitygroupsidcount: *mut u32, capabilitysids: *mut *mut super::Foundation::PSID, capabilitysidcount: *mut u32) -> windows_core::Result<()> +pub unsafe fn DeriveCapabilitySidsFromName(capname: P0, capabilitygroupsids: *mut *mut PSID, capabilitygroupsidcount: *mut u32, capabilitysids: *mut *mut PSID, capabilitysidcount: *mut u32) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("api-ms-win-security-base-l1-2-2.dll" "system" fn DeriveCapabilitySidsFromName(capname : windows_core::PCWSTR, capabilitygroupsids : *mut *mut super::Foundation:: PSID, capabilitygroupsidcount : *mut u32, capabilitysids : *mut *mut super::Foundation:: PSID, capabilitysidcount : *mut u32) -> super::Foundation:: BOOL); + windows_targets::link!("api-ms-win-security-base-l1-2-2.dll" "system" fn DeriveCapabilitySidsFromName(capname : windows_core::PCWSTR, capabilitygroupsids : *mut *mut PSID, capabilitygroupsidcount : *mut u32, capabilitysids : *mut *mut PSID, capabilitysidcount : *mut u32) -> super::Foundation:: BOOL); DeriveCapabilitySidsFromName(capname.param().abi(), capabilitygroupsids, capabilitygroupsidcount, capabilitysids, capabilitysidcount).ok() } #[inline] @@ -459,28 +459,28 @@ where #[inline] pub unsafe fn EqualDomainSid(psid1: P0, psid2: P1, pfequal: *mut super::Foundation::BOOL) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EqualDomainSid(psid1 : super::Foundation:: PSID, psid2 : super::Foundation:: PSID, pfequal : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EqualDomainSid(psid1 : PSID, psid2 : PSID, pfequal : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); EqualDomainSid(psid1.param().abi(), psid2.param().abi(), pfequal).ok() } #[inline] pub unsafe fn EqualPrefixSid(psid1: P0, psid2: P1) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EqualPrefixSid(psid1 : super::Foundation:: PSID, psid2 : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EqualPrefixSid(psid1 : PSID, psid2 : PSID) -> super::Foundation:: BOOL); EqualPrefixSid(psid1.param().abi(), psid2.param().abi()).ok() } #[inline] pub unsafe fn EqualSid(psid1: P0, psid2: P1) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EqualSid(psid1 : super::Foundation:: PSID, psid2 : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EqualSid(psid1 : PSID, psid2 : PSID) -> super::Foundation:: BOOL); EqualSid(psid1.param().abi(), psid2.param().abi()).ok() } #[inline] @@ -491,9 +491,9 @@ pub unsafe fn FindFirstFreeAce(pacl: *const ACL, pace: *mut *mut core::ffi::c_vo #[inline] pub unsafe fn FreeSid(psid: P0) -> *mut core::ffi::c_void where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn FreeSid(psid : super::Foundation:: PSID) -> *mut core::ffi::c_void); + windows_targets::link!("advapi32.dll" "system" fn FreeSid(psid : PSID) -> *mut core::ffi::c_void); FreeSid(psid.param().abi()) } #[inline] @@ -544,8 +544,8 @@ where GetKernelObjectSecurity(handle.param().abi(), requestedinformation, psecuritydescriptor, nlength, lpnlengthneeded).ok() } #[inline] -pub unsafe fn GetLengthSid(psid: super::Foundation::PSID) -> u32 { - windows_targets::link!("advapi32.dll" "system" fn GetLengthSid(psid : super::Foundation:: PSID) -> u32); +pub unsafe fn GetLengthSid(psid: PSID) -> u32 { + windows_targets::link!("advapi32.dll" "system" fn GetLengthSid(psid : PSID) -> u32); GetLengthSid(psid) } #[inline] @@ -573,11 +573,11 @@ where GetSecurityDescriptorDacl(psecuritydescriptor.param().abi(), lpbdaclpresent, pdacl, lpbdacldefaulted).ok() } #[inline] -pub unsafe fn GetSecurityDescriptorGroup(psecuritydescriptor: P0, pgroup: *mut super::Foundation::PSID, lpbgroupdefaulted: *mut super::Foundation::BOOL) -> windows_core::Result<()> +pub unsafe fn GetSecurityDescriptorGroup(psecuritydescriptor: P0, pgroup: *mut PSID, lpbgroupdefaulted: *mut super::Foundation::BOOL) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : *mut super::Foundation:: PSID, lpbgroupdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : *mut PSID, lpbgroupdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); GetSecurityDescriptorGroup(psecuritydescriptor.param().abi(), pgroup, lpbgroupdefaulted).ok() } #[inline] @@ -589,11 +589,11 @@ where GetSecurityDescriptorLength(psecuritydescriptor.param().abi()) } #[inline] -pub unsafe fn GetSecurityDescriptorOwner(psecuritydescriptor: P0, powner: *mut super::Foundation::PSID, lpbownerdefaulted: *mut super::Foundation::BOOL) -> windows_core::Result<()> +pub unsafe fn GetSecurityDescriptorOwner(psecuritydescriptor: P0, powner: *mut PSID, lpbownerdefaulted: *mut super::Foundation::BOOL) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : *mut super::Foundation:: PSID, lpbownerdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn GetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : *mut PSID, lpbownerdefaulted : *mut super::Foundation:: BOOL) -> super::Foundation:: BOOL); GetSecurityDescriptorOwner(psecuritydescriptor.param().abi(), powner, lpbownerdefaulted).ok() } #[inline] @@ -615,9 +615,9 @@ where #[inline] pub unsafe fn GetSidIdentifierAuthority(psid: P0) -> *mut SID_IDENTIFIER_AUTHORITY where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetSidIdentifierAuthority(psid : super::Foundation:: PSID) -> *mut SID_IDENTIFIER_AUTHORITY); + windows_targets::link!("advapi32.dll" "system" fn GetSidIdentifierAuthority(psid : PSID) -> *mut SID_IDENTIFIER_AUTHORITY); GetSidIdentifierAuthority(psid.param().abi()) } #[inline] @@ -628,17 +628,17 @@ pub unsafe fn GetSidLengthRequired(nsubauthoritycount: u8) -> u32 { #[inline] pub unsafe fn GetSidSubAuthority(psid: P0, nsubauthority: u32) -> *mut u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthority(psid : super::Foundation:: PSID, nsubauthority : u32) -> *mut u32); + windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthority(psid : PSID, nsubauthority : u32) -> *mut u32); GetSidSubAuthority(psid.param().abi(), nsubauthority) } #[inline] pub unsafe fn GetSidSubAuthorityCount(psid: P0) -> *mut u8 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthorityCount(psid : super::Foundation:: PSID) -> *mut u8); + windows_targets::link!("advapi32.dll" "system" fn GetSidSubAuthorityCount(psid : PSID) -> *mut u8); GetSidSubAuthorityCount(psid.param().abi()) } #[inline] @@ -658,11 +658,11 @@ where GetUserObjectSecurity(hobj.param().abi(), psirequested, psid, nlength, lpnlengthneeded).ok() } #[inline] -pub unsafe fn GetWindowsAccountDomainSid(psid: P0, pdomainsid: super::Foundation::PSID, cbdomainsid: *mut u32) -> windows_core::Result<()> +pub unsafe fn GetWindowsAccountDomainSid(psid: P0, pdomainsid: PSID, cbdomainsid: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetWindowsAccountDomainSid(psid : super::Foundation:: PSID, pdomainsid : super::Foundation:: PSID, cbdomainsid : *mut u32) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn GetWindowsAccountDomainSid(psid : PSID, pdomainsid : PSID, cbdomainsid : *mut u32) -> super::Foundation:: BOOL); GetWindowsAccountDomainSid(psid.param().abi(), pdomainsid, cbdomainsid).ok() } #[inline] @@ -697,8 +697,8 @@ pub unsafe fn InitializeSecurityDescriptor(psecuritydescriptor: PSECURITY_DESCRI InitializeSecurityDescriptor(psecuritydescriptor, dwrevision).ok() } #[inline] -pub unsafe fn InitializeSid(sid: super::Foundation::PSID, pidentifierauthority: *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount: u8) -> windows_core::Result<()> { - windows_targets::link!("advapi32.dll" "system" fn InitializeSid(sid : super::Foundation:: PSID, pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8) -> super::Foundation:: BOOL); +pub unsafe fn InitializeSid(sid: PSID, pidentifierauthority: *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount: u8) -> windows_core::Result<()> { + windows_targets::link!("advapi32.dll" "system" fn InitializeSid(sid : PSID, pidentifierauthority : *const SID_IDENTIFIER_AUTHORITY, nsubauthoritycount : u8) -> super::Foundation:: BOOL); InitializeSid(sid, pidentifierauthority, nsubauthoritycount).ok() } #[inline] @@ -725,17 +725,17 @@ where #[inline] pub unsafe fn IsValidSid(psid: P0) -> super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn IsValidSid(psid : super::Foundation:: PSID) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn IsValidSid(psid : PSID) -> super::Foundation:: BOOL); IsValidSid(psid.param().abi()) } #[inline] pub unsafe fn IsWellKnownSid(psid: P0, wellknownsidtype: WELL_KNOWN_SID_TYPE) -> super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn IsWellKnownSid(psid : super::Foundation:: PSID, wellknownsidtype : WELL_KNOWN_SID_TYPE) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn IsWellKnownSid(psid : PSID, wellknownsidtype : WELL_KNOWN_SID_TYPE) -> super::Foundation:: BOOL); IsWellKnownSid(psid.param().abi(), wellknownsidtype) } #[inline] @@ -749,23 +749,23 @@ where LogonUserA(lpszusername.param().abi(), lpszdomain.param().abi(), lpszpassword.param().abi(), dwlogontype, dwlogonprovider, phtoken).ok() } #[inline] -pub unsafe fn LogonUserExA(lpszusername: P0, lpszdomain: P1, lpszpassword: P2, dwlogontype: LOGON32_LOGON, dwlogonprovider: LOGON32_PROVIDER, phtoken: Option<*mut super::Foundation::HANDLE>, pplogonsid: Option<*mut super::Foundation::PSID>, ppprofilebuffer: Option<*mut *mut core::ffi::c_void>, pdwprofilelength: Option<*mut u32>, pquotalimits: Option<*mut QUOTA_LIMITS>) -> windows_core::Result<()> +pub unsafe fn LogonUserExA(lpszusername: P0, lpszdomain: P1, lpszpassword: P2, dwlogontype: LOGON32_LOGON, dwlogonprovider: LOGON32_PROVIDER, phtoken: Option<*mut super::Foundation::HANDLE>, pplogonsid: Option<*mut PSID>, ppprofilebuffer: Option<*mut *mut core::ffi::c_void>, pdwprofilelength: Option<*mut u32>, pquotalimits: Option<*mut QUOTA_LIMITS>) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LogonUserExA(lpszusername : windows_core::PCSTR, lpszdomain : windows_core::PCSTR, lpszpassword : windows_core::PCSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut super::Foundation:: PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn LogonUserExA(lpszusername : windows_core::PCSTR, lpszdomain : windows_core::PCSTR, lpszpassword : windows_core::PCSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); LogonUserExA(lpszusername.param().abi(), lpszdomain.param().abi(), lpszpassword.param().abi(), dwlogontype, dwlogonprovider, core::mem::transmute(phtoken.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pplogonsid.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppprofilebuffer.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pdwprofilelength.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pquotalimits.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] -pub unsafe fn LogonUserExW(lpszusername: P0, lpszdomain: P1, lpszpassword: P2, dwlogontype: LOGON32_LOGON, dwlogonprovider: LOGON32_PROVIDER, phtoken: Option<*mut super::Foundation::HANDLE>, pplogonsid: Option<*mut super::Foundation::PSID>, ppprofilebuffer: Option<*mut *mut core::ffi::c_void>, pdwprofilelength: Option<*mut u32>, pquotalimits: Option<*mut QUOTA_LIMITS>) -> windows_core::Result<()> +pub unsafe fn LogonUserExW(lpszusername: P0, lpszdomain: P1, lpszpassword: P2, dwlogontype: LOGON32_LOGON, dwlogonprovider: LOGON32_PROVIDER, phtoken: Option<*mut super::Foundation::HANDLE>, pplogonsid: Option<*mut PSID>, ppprofilebuffer: Option<*mut *mut core::ffi::c_void>, pdwprofilelength: Option<*mut u32>, pquotalimits: Option<*mut QUOTA_LIMITS>) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LogonUserExW(lpszusername : windows_core::PCWSTR, lpszdomain : windows_core::PCWSTR, lpszpassword : windows_core::PCWSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut super::Foundation:: PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn LogonUserExW(lpszusername : windows_core::PCWSTR, lpszdomain : windows_core::PCWSTR, lpszpassword : windows_core::PCWSTR, dwlogontype : LOGON32_LOGON, dwlogonprovider : LOGON32_PROVIDER, phtoken : *mut super::Foundation:: HANDLE, pplogonsid : *mut PSID, ppprofilebuffer : *mut *mut core::ffi::c_void, pdwprofilelength : *mut u32, pquotalimits : *mut QUOTA_LIMITS) -> super::Foundation:: BOOL); LogonUserExW(lpszusername.param().abi(), lpszdomain.param().abi(), lpszpassword.param().abi(), dwlogontype, dwlogonprovider, core::mem::transmute(phtoken.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pplogonsid.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ppprofilebuffer.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pdwprofilelength.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pquotalimits.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] @@ -779,39 +779,39 @@ where LogonUserW(lpszusername.param().abi(), lpszdomain.param().abi(), lpszpassword.param().abi(), dwlogontype, dwlogonprovider, phtoken).ok() } #[inline] -pub unsafe fn LookupAccountNameA(lpsystemname: P0, lpaccountname: P1, sid: super::Foundation::PSID, cbsid: *mut u32, referenceddomainname: windows_core::PSTR, cchreferenceddomainname: *mut u32, peuse: *mut SID_NAME_USE) -> windows_core::Result<()> +pub unsafe fn LookupAccountNameA(lpsystemname: P0, lpaccountname: P1, sid: PSID, cbsid: *mut u32, referenceddomainname: windows_core::PSTR, cchreferenceddomainname: *mut u32, peuse: *mut SID_NAME_USE) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameA(lpsystemname : windows_core::PCSTR, lpaccountname : windows_core::PCSTR, sid : super::Foundation:: PSID, cbsid : *mut u32, referenceddomainname : windows_core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameA(lpsystemname : windows_core::PCSTR, lpaccountname : windows_core::PCSTR, sid : PSID, cbsid : *mut u32, referenceddomainname : windows_core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); LookupAccountNameA(lpsystemname.param().abi(), lpaccountname.param().abi(), sid, cbsid, core::mem::transmute(referenceddomainname), cchreferenceddomainname, peuse).ok() } #[inline] -pub unsafe fn LookupAccountNameW(lpsystemname: P0, lpaccountname: P1, sid: super::Foundation::PSID, cbsid: *mut u32, referenceddomainname: windows_core::PWSTR, cchreferenceddomainname: *mut u32, peuse: *mut SID_NAME_USE) -> windows_core::Result<()> +pub unsafe fn LookupAccountNameW(lpsystemname: P0, lpaccountname: P1, sid: PSID, cbsid: *mut u32, referenceddomainname: windows_core::PWSTR, cchreferenceddomainname: *mut u32, peuse: *mut SID_NAME_USE) -> windows_core::Result<()> where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameW(lpsystemname : windows_core::PCWSTR, lpaccountname : windows_core::PCWSTR, sid : super::Foundation:: PSID, cbsid : *mut u32, referenceddomainname : windows_core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn LookupAccountNameW(lpsystemname : windows_core::PCWSTR, lpaccountname : windows_core::PCWSTR, sid : PSID, cbsid : *mut u32, referenceddomainname : windows_core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); LookupAccountNameW(lpsystemname.param().abi(), lpaccountname.param().abi(), sid, cbsid, core::mem::transmute(referenceddomainname), cchreferenceddomainname, peuse).ok() } #[inline] pub unsafe fn LookupAccountSidA(lpsystemname: P0, sid: P1, name: windows_core::PSTR, cchname: *mut u32, referenceddomainname: windows_core::PSTR, cchreferenceddomainname: *mut u32, peuse: *mut SID_NAME_USE) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidA(lpsystemname : windows_core::PCSTR, sid : super::Foundation:: PSID, name : windows_core::PSTR, cchname : *mut u32, referenceddomainname : windows_core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidA(lpsystemname : windows_core::PCSTR, sid : PSID, name : windows_core::PSTR, cchname : *mut u32, referenceddomainname : windows_core::PSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); LookupAccountSidA(lpsystemname.param().abi(), sid.param().abi(), core::mem::transmute(name), cchname, core::mem::transmute(referenceddomainname), cchreferenceddomainname, peuse).ok() } #[inline] pub unsafe fn LookupAccountSidW(lpsystemname: P0, sid: P1, name: windows_core::PWSTR, cchname: *mut u32, referenceddomainname: windows_core::PWSTR, cchreferenceddomainname: *mut u32, peuse: *mut SID_NAME_USE) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidW(lpsystemname : windows_core::PCWSTR, sid : super::Foundation:: PSID, name : windows_core::PWSTR, cchname : *mut u32, referenceddomainname : windows_core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn LookupAccountSidW(lpsystemname : windows_core::PCWSTR, sid : PSID, name : windows_core::PWSTR, cchname : *mut u32, referenceddomainname : windows_core::PWSTR, cchreferenceddomainname : *mut u32, peuse : *mut SID_NAME_USE) -> super::Foundation:: BOOL); LookupAccountSidW(lpsystemname.param().abi(), sid.param().abi(), core::mem::transmute(name), cchname, core::mem::transmute(referenceddomainname), cchreferenceddomainname, peuse).ok() } #[inline] @@ -867,11 +867,11 @@ where LookupPrivilegeValueW(lpsystemname.param().abi(), lpname.param().abi(), lpluid).ok() } #[inline] -pub unsafe fn MakeAbsoluteSD(pselfrelativesecuritydescriptor: P0, pabsolutesecuritydescriptor: PSECURITY_DESCRIPTOR, lpdwabsolutesecuritydescriptorsize: *mut u32, pdacl: Option<*mut ACL>, lpdwdaclsize: *mut u32, psacl: Option<*mut ACL>, lpdwsaclsize: *mut u32, powner: super::Foundation::PSID, lpdwownersize: *mut u32, pprimarygroup: super::Foundation::PSID, lpdwprimarygroupsize: *mut u32) -> windows_core::Result<()> +pub unsafe fn MakeAbsoluteSD(pselfrelativesecuritydescriptor: P0, pabsolutesecuritydescriptor: PSECURITY_DESCRIPTOR, lpdwabsolutesecuritydescriptorsize: *mut u32, pdacl: Option<*mut ACL>, lpdwdaclsize: *mut u32, psacl: Option<*mut ACL>, lpdwsaclsize: *mut u32, powner: PSID, lpdwownersize: *mut u32, pprimarygroup: PSID, lpdwprimarygroupsize: *mut u32) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn MakeAbsoluteSD(pselfrelativesecuritydescriptor : PSECURITY_DESCRIPTOR, pabsolutesecuritydescriptor : PSECURITY_DESCRIPTOR, lpdwabsolutesecuritydescriptorsize : *mut u32, pdacl : *mut ACL, lpdwdaclsize : *mut u32, psacl : *mut ACL, lpdwsaclsize : *mut u32, powner : super::Foundation:: PSID, lpdwownersize : *mut u32, pprimarygroup : super::Foundation:: PSID, lpdwprimarygroupsize : *mut u32) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn MakeAbsoluteSD(pselfrelativesecuritydescriptor : PSECURITY_DESCRIPTOR, pabsolutesecuritydescriptor : PSECURITY_DESCRIPTOR, lpdwabsolutesecuritydescriptorsize : *mut u32, pdacl : *mut ACL, lpdwdaclsize : *mut u32, psacl : *mut ACL, lpdwsaclsize : *mut u32, powner : PSID, lpdwownersize : *mut u32, pprimarygroup : PSID, lpdwprimarygroupsize : *mut u32) -> super::Foundation:: BOOL); MakeAbsoluteSD(pselfrelativesecuritydescriptor.param().abi(), pabsolutesecuritydescriptor, lpdwabsolutesecuritydescriptorsize, core::mem::transmute(pdacl.unwrap_or(std::ptr::null_mut())), lpdwdaclsize, core::mem::transmute(psacl.unwrap_or(std::ptr::null_mut())), lpdwsaclsize, powner, lpdwownersize, pprimarygroup, lpdwprimarygroupsize).ok() } #[inline] @@ -1016,10 +1016,10 @@ pub unsafe fn RevertToSelf() -> windows_core::Result<()> { #[inline] pub unsafe fn RtlConvertSidToUnicodeString(unicodestring: *mut super::Foundation::UNICODE_STRING, sid: P0, allocatedestinationstring: P1) -> super::Foundation::NTSTATUS where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("ntdll.dll" "system" fn RtlConvertSidToUnicodeString(unicodestring : *mut super::Foundation:: UNICODE_STRING, sid : super::Foundation:: PSID, allocatedestinationstring : super::Foundation:: BOOLEAN) -> super::Foundation:: NTSTATUS); + windows_targets::link!("ntdll.dll" "system" fn RtlConvertSidToUnicodeString(unicodestring : *mut super::Foundation:: UNICODE_STRING, sid : PSID, allocatedestinationstring : super::Foundation:: BOOLEAN) -> super::Foundation:: NTSTATUS); RtlConvertSidToUnicodeString(unicodestring, sid.param().abi(), allocatedestinationstring.param().abi()) } #[inline] @@ -1115,19 +1115,19 @@ where #[inline] pub unsafe fn SetSecurityDescriptorGroup(psecuritydescriptor: PSECURITY_DESCRIPTOR, pgroup: P0, bgroupdefaulted: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : super::Foundation:: PSID, bgroupdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorGroup(psecuritydescriptor : PSECURITY_DESCRIPTOR, pgroup : PSID, bgroupdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); SetSecurityDescriptorGroup(psecuritydescriptor, pgroup.param().abi(), bgroupdefaulted.param().abi()).ok() } #[inline] pub unsafe fn SetSecurityDescriptorOwner(psecuritydescriptor: PSECURITY_DESCRIPTOR, powner: P0, bownerdefaulted: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : super::Foundation:: PSID, bownerdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn SetSecurityDescriptorOwner(psecuritydescriptor : PSECURITY_DESCRIPTOR, powner : PSID, bownerdefaulted : super::Foundation:: BOOL) -> super::Foundation:: BOOL); SetSecurityDescriptorOwner(psecuritydescriptor, powner.param().abi(), bownerdefaulted.param().abi()).ok() } #[inline] @@ -1237,6 +1237,7 @@ pub const SECURITY_CREATOR_SID_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIF pub const SECURITY_DYNAMIC_TRACKING: super::Foundation::BOOLEAN = super::Foundation::BOOLEAN(1u8); pub const SECURITY_LOCAL_SID_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 2] }; pub const SECURITY_MANDATORY_LABEL_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 16] }; +pub const SECURITY_MAX_SID_SIZE: u32 = 68u32; pub const SECURITY_NON_UNIQUE_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 4] }; pub const SECURITY_NT_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 5] }; pub const SECURITY_NULL_SID_AUTHORITY: SID_IDENTIFIER_AUTHORITY = SID_IDENTIFIER_AUTHORITY { Value: [0, 0, 0, 0, 0, 0] }; @@ -2467,102 +2468,6 @@ impl Default for GENERIC_MAPPING { unsafe { core::mem::zeroed() } } } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDIAGNOSTIC_DATA_QUERY_SESSION(pub isize); -impl HDIAGNOSTIC_DATA_QUERY_SESSION { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HDIAGNOSTIC_DATA_QUERY_SESSION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HDIAGNOSTIC_DATA_QUERY_SESSION { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION(pub isize); -impl HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HDIAGNOSTIC_EVENT_CATEGORY_DESCRIPTION { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION(pub isize); -impl HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HDIAGNOSTIC_EVENT_PRODUCER_DESCRIPTION { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDIAGNOSTIC_EVENT_TAG_DESCRIPTION(pub isize); -impl HDIAGNOSTIC_EVENT_TAG_DESCRIPTION { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HDIAGNOSTIC_EVENT_TAG_DESCRIPTION { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HDIAGNOSTIC_EVENT_TAG_DESCRIPTION { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDIAGNOSTIC_RECORD(pub isize); -impl HDIAGNOSTIC_RECORD { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HDIAGNOSTIC_RECORD { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HDIAGNOSTIC_RECORD { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDIAGNOSTIC_REPORT(pub isize); -impl HDIAGNOSTIC_REPORT { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HDIAGNOSTIC_REPORT { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HDIAGNOSTIC_REPORT { - type TypeKind = windows_core::CopyType; -} #[repr(C)] #[derive(Clone, Copy)] pub struct LLFILETIME { @@ -2606,10 +2511,10 @@ impl Default for LUID_AND_ATTRIBUTES { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct NCRYPT_DESCRIPTOR_HANDLE(pub isize); +pub struct NCRYPT_DESCRIPTOR_HANDLE(pub *mut core::ffi::c_void); impl NCRYPT_DESCRIPTOR_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for NCRYPT_DESCRIPTOR_HANDLE { @@ -2622,10 +2527,10 @@ impl windows_core::TypeKind for NCRYPT_DESCRIPTOR_HANDLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct NCRYPT_STREAM_HANDLE(pub isize); +pub struct NCRYPT_STREAM_HANDLE(pub *mut core::ffi::c_void); impl NCRYPT_STREAM_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for NCRYPT_STREAM_HANDLE { @@ -2682,6 +2587,30 @@ impl Default for PSECURITY_DESCRIPTOR { impl windows_core::TypeKind for PSECURITY_DESCRIPTOR { type TypeKind = windows_core::CopyType; } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct PSID(pub *mut core::ffi::c_void); +impl PSID { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} +impl windows_core::Free for PSID { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = FreeSid(*self); + } + } +} +impl Default for PSID { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for PSID { + type TypeKind = windows_core::CopyType; +} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct QUOTA_LIMITS { @@ -2702,10 +2631,10 @@ impl Default for QUOTA_LIMITS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SAFER_LEVEL_HANDLE(pub isize); +pub struct SAFER_LEVEL_HANDLE(pub *mut core::ffi::c_void); impl SAFER_LEVEL_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SAFER_LEVEL_HANDLE { @@ -2716,22 +2645,6 @@ impl Default for SAFER_LEVEL_HANDLE { impl windows_core::TypeKind for SAFER_LEVEL_HANDLE { type TypeKind = windows_core::CopyType; } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SC_HANDLE(pub isize); -impl SC_HANDLE { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for SC_HANDLE { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for SC_HANDLE { - type TypeKind = windows_core::CopyType; -} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct SECURITY_ATTRIBUTES { @@ -2750,7 +2663,7 @@ impl Default for SECURITY_ATTRIBUTES { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct SECURITY_CAPABILITIES { - pub AppContainerSid: super::Foundation::PSID, + pub AppContainerSid: PSID, pub Capabilities: *mut SID_AND_ATTRIBUTES, pub CapabilityCount: u32, pub Reserved: u32, @@ -2769,8 +2682,8 @@ pub struct SECURITY_DESCRIPTOR { pub Revision: u8, pub Sbz1: u8, pub Control: SECURITY_DESCRIPTOR_CONTROL, - pub Owner: super::Foundation::PSID, - pub Group: super::Foundation::PSID, + pub Owner: PSID, + pub Group: PSID, pub Sacl: *mut ACL, pub Dacl: *mut ACL, } @@ -2842,7 +2755,7 @@ pub struct SE_ACCESS_REQUEST { pub SeSecurityDescriptor: *mut SE_SECURITY_DESCRIPTOR, pub DesiredAccess: u32, pub PreviouslyGrantedAccess: u32, - pub PrincipalSelfSid: super::Foundation::PSID, + pub PrincipalSelfSid: PSID, pub GenericMapping: *mut GENERIC_MAPPING, pub ObjectTypeListCount: u32, pub ObjectTypeList: *mut OBJECT_TYPE_LIST, @@ -2919,7 +2832,7 @@ impl Default for SID { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct SID_AND_ATTRIBUTES { - pub Sid: super::Foundation::PSID, + pub Sid: PSID, pub Attributes: u32, } impl windows_core::TypeKind for SID_AND_ATTRIBUTES { @@ -3177,9 +3090,9 @@ pub struct TOKEN_ACCESS_INFORMATION { pub MandatoryPolicy: TOKEN_MANDATORY_POLICY, pub Flags: u32, pub AppContainerNumber: u32, - pub PackageSid: super::Foundation::PSID, + pub PackageSid: PSID, pub CapabilitiesHash: *mut SID_AND_ATTRIBUTES_HASH, - pub TrustLevelSid: super::Foundation::PSID, + pub TrustLevelSid: PSID, pub SecurityAttributes: *mut core::ffi::c_void, } impl windows_core::TypeKind for TOKEN_ACCESS_INFORMATION { @@ -3193,7 +3106,7 @@ impl Default for TOKEN_ACCESS_INFORMATION { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct TOKEN_APPCONTAINER_INFORMATION { - pub TokenAppContainer: super::Foundation::PSID, + pub TokenAppContainer: PSID, } impl windows_core::TypeKind for TOKEN_APPCONTAINER_INFORMATION { type TypeKind = windows_core::CopyType; @@ -3362,7 +3275,7 @@ impl Default for TOKEN_ORIGIN { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct TOKEN_OWNER { - pub Owner: super::Foundation::PSID, + pub Owner: PSID, } impl windows_core::TypeKind for TOKEN_OWNER { type TypeKind = windows_core::CopyType; @@ -3375,7 +3288,7 @@ impl Default for TOKEN_OWNER { #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct TOKEN_PRIMARY_GROUP { - pub PrimaryGroup: super::Foundation::PSID, + pub PrimaryGroup: PSID, } impl windows_core::TypeKind for TOKEN_PRIMARY_GROUP { type TypeKind = windows_core::CopyType; diff --git a/crates/libs/windows/src/Windows/Win32/Storage/CloudFilters/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/CloudFilters/mod.rs index fc695a3f7b..9b17a56d3f 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/CloudFilters/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/CloudFilters/mod.rs @@ -2573,6 +2573,14 @@ impl CF_CONNECTION_KEY { self.0 == -1 || self.0 == 0 } } +impl windows_core::Free for CF_CONNECTION_KEY { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CfDisconnectSyncRoot(*self); + } + } +} impl Default for CF_CONNECTION_KEY { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/Storage/Compression/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/Compression/mod.rs index 2c907bb36b..dece5ca527 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/Compression/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/Compression/mod.rs @@ -7,9 +7,12 @@ where CloseCompressor(compressorhandle.param().abi()).ok() } #[inline] -pub unsafe fn CloseDecompressor(decompressorhandle: isize) -> windows_core::Result<()> { - windows_targets::link!("cabinet.dll" "system" fn CloseDecompressor(decompressorhandle : isize) -> super::super::Foundation:: BOOL); - CloseDecompressor(decompressorhandle).ok() +pub unsafe fn CloseDecompressor(decompressorhandle: P0) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("cabinet.dll" "system" fn CloseDecompressor(decompressorhandle : DECOMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); + CloseDecompressor(decompressorhandle.param().abi()).ok() } #[inline] pub unsafe fn Compress(compressorhandle: P0, uncompresseddata: Option<*const core::ffi::c_void>, uncompresseddatasize: usize, compressedbuffer: Option<*mut core::ffi::c_void>, compressedbuffersize: usize, compresseddatasize: *mut usize) -> windows_core::Result<()> @@ -25,14 +28,17 @@ pub unsafe fn CreateCompressor(algorithm: COMPRESS_ALGORITHM, allocationroutines CreateCompressor(algorithm, core::mem::transmute(allocationroutines.unwrap_or(std::ptr::null())), compressorhandle).ok() } #[inline] -pub unsafe fn CreateDecompressor(algorithm: COMPRESS_ALGORITHM, allocationroutines: Option<*const COMPRESS_ALLOCATION_ROUTINES>, decompressorhandle: *mut isize) -> windows_core::Result<()> { - windows_targets::link!("cabinet.dll" "system" fn CreateDecompressor(algorithm : COMPRESS_ALGORITHM, allocationroutines : *const COMPRESS_ALLOCATION_ROUTINES, decompressorhandle : *mut isize) -> super::super::Foundation:: BOOL); +pub unsafe fn CreateDecompressor(algorithm: COMPRESS_ALGORITHM, allocationroutines: Option<*const COMPRESS_ALLOCATION_ROUTINES>, decompressorhandle: *mut DECOMPRESSOR_HANDLE) -> windows_core::Result<()> { + windows_targets::link!("cabinet.dll" "system" fn CreateDecompressor(algorithm : COMPRESS_ALGORITHM, allocationroutines : *const COMPRESS_ALLOCATION_ROUTINES, decompressorhandle : *mut DECOMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); CreateDecompressor(algorithm, core::mem::transmute(allocationroutines.unwrap_or(std::ptr::null())), decompressorhandle).ok() } #[inline] -pub unsafe fn Decompress(decompressorhandle: isize, compresseddata: Option<*const core::ffi::c_void>, compresseddatasize: usize, uncompressedbuffer: Option<*mut core::ffi::c_void>, uncompressedbuffersize: usize, uncompresseddatasize: Option<*mut usize>) -> windows_core::Result<()> { - windows_targets::link!("cabinet.dll" "system" fn Decompress(decompressorhandle : isize, compresseddata : *const core::ffi::c_void, compresseddatasize : usize, uncompressedbuffer : *mut core::ffi::c_void, uncompressedbuffersize : usize, uncompresseddatasize : *mut usize) -> super::super::Foundation:: BOOL); - Decompress(decompressorhandle, core::mem::transmute(compresseddata.unwrap_or(std::ptr::null())), compresseddatasize, core::mem::transmute(uncompressedbuffer.unwrap_or(std::ptr::null_mut())), uncompressedbuffersize, core::mem::transmute(uncompresseddatasize.unwrap_or(std::ptr::null_mut()))).ok() +pub unsafe fn Decompress(decompressorhandle: P0, compresseddata: Option<*const core::ffi::c_void>, compresseddatasize: usize, uncompressedbuffer: Option<*mut core::ffi::c_void>, uncompressedbuffersize: usize, uncompresseddatasize: Option<*mut usize>) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("cabinet.dll" "system" fn Decompress(decompressorhandle : DECOMPRESSOR_HANDLE, compresseddata : *const core::ffi::c_void, compresseddatasize : usize, uncompressedbuffer : *mut core::ffi::c_void, uncompressedbuffersize : usize, uncompresseddatasize : *mut usize) -> super::super::Foundation:: BOOL); + Decompress(decompressorhandle.param().abi(), core::mem::transmute(compresseddata.unwrap_or(std::ptr::null())), compresseddatasize, core::mem::transmute(uncompressedbuffer.unwrap_or(std::ptr::null_mut())), uncompressedbuffersize, core::mem::transmute(uncompresseddatasize.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] pub unsafe fn QueryCompressorInformation(compressorhandle: P0, compressinformationclass: COMPRESS_INFORMATION_CLASS, compressinformation: *mut core::ffi::c_void, compressinformationsize: usize) -> windows_core::Result<()> @@ -43,9 +49,12 @@ where QueryCompressorInformation(compressorhandle.param().abi(), compressinformationclass, compressinformation, compressinformationsize).ok() } #[inline] -pub unsafe fn QueryDecompressorInformation(decompressorhandle: isize, compressinformationclass: COMPRESS_INFORMATION_CLASS, compressinformation: *mut core::ffi::c_void, compressinformationsize: usize) -> windows_core::Result<()> { - windows_targets::link!("cabinet.dll" "system" fn QueryDecompressorInformation(decompressorhandle : isize, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *mut core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); - QueryDecompressorInformation(decompressorhandle, compressinformationclass, compressinformation, compressinformationsize).ok() +pub unsafe fn QueryDecompressorInformation(decompressorhandle: P0, compressinformationclass: COMPRESS_INFORMATION_CLASS, compressinformation: *mut core::ffi::c_void, compressinformationsize: usize) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("cabinet.dll" "system" fn QueryDecompressorInformation(decompressorhandle : DECOMPRESSOR_HANDLE, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *mut core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); + QueryDecompressorInformation(decompressorhandle.param().abi(), compressinformationclass, compressinformation, compressinformationsize).ok() } #[inline] pub unsafe fn ResetCompressor(compressorhandle: P0) -> windows_core::Result<()> @@ -56,9 +65,12 @@ where ResetCompressor(compressorhandle.param().abi()).ok() } #[inline] -pub unsafe fn ResetDecompressor(decompressorhandle: isize) -> windows_core::Result<()> { - windows_targets::link!("cabinet.dll" "system" fn ResetDecompressor(decompressorhandle : isize) -> super::super::Foundation:: BOOL); - ResetDecompressor(decompressorhandle).ok() +pub unsafe fn ResetDecompressor(decompressorhandle: P0) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("cabinet.dll" "system" fn ResetDecompressor(decompressorhandle : DECOMPRESSOR_HANDLE) -> super::super::Foundation:: BOOL); + ResetDecompressor(decompressorhandle.param().abi()).ok() } #[inline] pub unsafe fn SetCompressorInformation(compressorhandle: P0, compressinformationclass: COMPRESS_INFORMATION_CLASS, compressinformation: *const core::ffi::c_void, compressinformationsize: usize) -> windows_core::Result<()> @@ -69,9 +81,12 @@ where SetCompressorInformation(compressorhandle.param().abi(), compressinformationclass, compressinformation, compressinformationsize).ok() } #[inline] -pub unsafe fn SetDecompressorInformation(decompressorhandle: isize, compressinformationclass: COMPRESS_INFORMATION_CLASS, compressinformation: *const core::ffi::c_void, compressinformationsize: usize) -> windows_core::Result<()> { - windows_targets::link!("cabinet.dll" "system" fn SetDecompressorInformation(decompressorhandle : isize, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *const core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); - SetDecompressorInformation(decompressorhandle, compressinformationclass, compressinformation, compressinformationsize).ok() +pub unsafe fn SetDecompressorInformation(decompressorhandle: P0, compressinformationclass: COMPRESS_INFORMATION_CLASS, compressinformation: *const core::ffi::c_void, compressinformationsize: usize) -> windows_core::Result<()> +where + P0: windows_core::Param, +{ + windows_targets::link!("cabinet.dll" "system" fn SetDecompressorInformation(decompressorhandle : DECOMPRESSOR_HANDLE, compressinformationclass : COMPRESS_INFORMATION_CLASS, compressinformation : *const core::ffi::c_void, compressinformationsize : usize) -> super::super::Foundation:: BOOL); + SetDecompressorInformation(decompressorhandle.param().abi(), compressinformationclass, compressinformation, compressinformationsize).ok() } pub const COMPRESS_ALGORITHM_INVALID: u32 = 0u32; pub const COMPRESS_ALGORITHM_LZMS: COMPRESS_ALGORITHM = COMPRESS_ALGORITHM(5u32); @@ -108,10 +123,10 @@ impl core::fmt::Debug for COMPRESS_INFORMATION_CLASS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct COMPRESSOR_HANDLE(pub isize); +pub struct COMPRESSOR_HANDLE(pub *mut core::ffi::c_void); impl COMPRESSOR_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for COMPRESSOR_HANDLE { @@ -137,5 +152,29 @@ impl Default for COMPRESS_ALLOCATION_ROUTINES { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct DECOMPRESSOR_HANDLE(pub *mut core::ffi::c_void); +impl DECOMPRESSOR_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for DECOMPRESSOR_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CloseDecompressor(*self); + } + } +} +impl Default for DECOMPRESSOR_HANDLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for DECOMPRESSOR_HANDLE { + type TypeKind = windows_core::CopyType; +} pub type PFN_COMPRESS_ALLOCATE = Option *mut core::ffi::c_void>; pub type PFN_COMPRESS_FREE = Option; diff --git a/crates/libs/windows/src/Windows/Win32/Storage/FileHistory/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/FileHistory/mod.rs index 7b8d11c5b3..4ab65cf70c 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/FileHistory/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/FileHistory/mod.rs @@ -1,67 +1,60 @@ -#[cfg(feature = "Win32_System_WindowsProgramming")] #[inline] pub unsafe fn FhServiceBlockBackup(pipe: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceBlockBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); + windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceBlockBackup(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); FhServiceBlockBackup(pipe.param().abi()).ok() } -#[cfg(feature = "Win32_System_WindowsProgramming")] #[inline] pub unsafe fn FhServiceClosePipe(pipe: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceClosePipe(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); + windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceClosePipe(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); FhServiceClosePipe(pipe.param().abi()).ok() } -#[cfg(feature = "Win32_System_WindowsProgramming")] #[inline] -pub unsafe fn FhServiceOpenPipe(startserviceifstopped: P0) -> windows_core::Result +pub unsafe fn FhServiceOpenPipe(startserviceifstopped: P0) -> windows_core::Result where P0: windows_core::Param, { - windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceOpenPipe(startserviceifstopped : super::super::Foundation:: BOOL, pipe : *mut super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); + windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceOpenPipe(startserviceifstopped : super::super::Foundation:: BOOL, pipe : *mut FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); FhServiceOpenPipe(startserviceifstopped.param().abi(), &mut result__).map(|| result__) } -#[cfg(feature = "Win32_System_WindowsProgramming")] #[inline] pub unsafe fn FhServiceReloadConfiguration(pipe: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceReloadConfiguration(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); + windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceReloadConfiguration(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); FhServiceReloadConfiguration(pipe.param().abi()).ok() } -#[cfg(feature = "Win32_System_WindowsProgramming")] #[inline] pub unsafe fn FhServiceStartBackup(pipe: P0, lowpriorityio: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStartBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE, lowpriorityio : super::super::Foundation:: BOOL) -> windows_core::HRESULT); + windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStartBackup(pipe : FH_SERVICE_PIPE_HANDLE, lowpriorityio : super::super::Foundation:: BOOL) -> windows_core::HRESULT); FhServiceStartBackup(pipe.param().abi(), lowpriorityio.param().abi()).ok() } -#[cfg(feature = "Win32_System_WindowsProgramming")] #[inline] pub unsafe fn FhServiceStopBackup(pipe: P0, stoptracking: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStopBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE, stoptracking : super::super::Foundation:: BOOL) -> windows_core::HRESULT); + windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceStopBackup(pipe : FH_SERVICE_PIPE_HANDLE, stoptracking : super::super::Foundation:: BOOL) -> windows_core::HRESULT); FhServiceStopBackup(pipe.param().abi(), stoptracking.param().abi()).ok() } -#[cfg(feature = "Win32_System_WindowsProgramming")] #[inline] pub unsafe fn FhServiceUnblockBackup(pipe: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceUnblockBackup(pipe : super::super::System::WindowsProgramming:: FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); + windows_targets::link!("fhsvcctl.dll" "system" fn FhServiceUnblockBackup(pipe : FH_SERVICE_PIPE_HANDLE) -> windows_core::HRESULT); FhServiceUnblockBackup(pipe.param().abi()).ok() } windows_core::imp::define_interface!(IFhConfigMgr, IFhConfigMgr_Vtbl, 0x6a5fea5b_bf8f_4ee5_b8c3_44d8a0d7331c); @@ -417,6 +410,30 @@ impl core::fmt::Debug for FhBackupStopReason { f.debug_tuple("FhBackupStopReason").field(&self.0).finish() } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct FH_SERVICE_PIPE_HANDLE(pub *mut core::ffi::c_void); +impl FH_SERVICE_PIPE_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for FH_SERVICE_PIPE_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = FhServiceClosePipe(*self); + } + } +} +impl Default for FH_SERVICE_PIPE_HANDLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for FH_SERVICE_PIPE_HANDLE { + type TypeKind = windows_core::CopyType; +} pub const FhConfigMgr: windows_core::GUID = windows_core::GUID::from_u128(0xed43bb3c_09e9_498a_9df6_2177244c6db4); pub const FhReassociation: windows_core::GUID = windows_core::GUID::from_u128(0x4d728e35_16fa_4320_9e8b_bfd7100a8846); #[cfg(feature = "implement")] diff --git a/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/impl.rs b/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/impl.rs index be266ee9d3..90eb08cf70 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/impl.rs @@ -1,4 +1,4 @@ -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Com"))] pub trait IDiskQuotaControl_Impl: Sized + super::super::System::Com::IConnectionPointContainer_Impl { fn Initialize(&self, pszpath: &windows_core::PCWSTR, breadwrite: super::super::Foundation::BOOL) -> windows_core::Result<()>; fn SetQuotaState(&self, dwstate: u32) -> windows_core::Result<()>; @@ -11,20 +11,20 @@ pub trait IDiskQuotaControl_Impl: Sized + super::super::System::Com::IConnection fn SetDefaultQuotaLimit(&self, lllimit: i64) -> windows_core::Result<()>; fn GetDefaultQuotaLimit(&self, plllimit: *mut i64) -> windows_core::Result<()>; fn GetDefaultQuotaLimitText(&self, psztext: &windows_core::PCWSTR, cchtext: u32) -> windows_core::Result<()>; - fn AddUserSid(&self, pusersid: super::super::Foundation::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE) -> windows_core::Result; + fn AddUserSid(&self, pusersid: super::super::Security::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE) -> windows_core::Result; fn AddUserName(&self, pszlogonname: &windows_core::PCWSTR, fnameresolution: DISKQUOTA_USERNAME_RESOLVE) -> windows_core::Result; fn DeleteUser(&self, puser: Option<&IDiskQuotaUser>) -> windows_core::Result<()>; - fn FindUserSid(&self, pusersid: super::super::Foundation::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE) -> windows_core::Result; + fn FindUserSid(&self, pusersid: super::super::Security::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE) -> windows_core::Result; fn FindUserName(&self, pszlogonname: &windows_core::PCWSTR) -> windows_core::Result; - fn CreateEnumUsers(&self, rgpusersids: *mut super::super::Foundation::PSID, cpsids: u32, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppenum: *mut Option) -> windows_core::Result<()>; + fn CreateEnumUsers(&self, rgpusersids: *mut super::super::Security::PSID, cpsids: u32, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppenum: *mut Option) -> windows_core::Result<()>; fn CreateUserBatch(&self) -> windows_core::Result; fn InvalidateSidNameCache(&self) -> windows_core::Result<()>; fn GiveUserNameResolutionPriority(&self, puser: Option<&IDiskQuotaUser>) -> windows_core::Result<()>; fn ShutdownNameResolution(&self) -> windows_core::Result<()>; } -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Com"))] impl windows_core::RuntimeName for IDiskQuotaControl {} -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Com"))] impl IDiskQuotaControl_Vtbl { pub const fn new() -> IDiskQuotaControl_Vtbl where @@ -107,7 +107,7 @@ impl IDiskQuotaControl_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IDiskQuotaControl_Impl::GetDefaultQuotaLimitText(this, core::mem::transmute(&psztext), core::mem::transmute_copy(&cchtext)).into() } - unsafe extern "system" fn AddUserSid(this: *mut core::ffi::c_void, pusersid: super::super::Foundation::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppuser: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn AddUserSid(this: *mut core::ffi::c_void, pusersid: super::super::Security::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppuser: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IDiskQuotaControl_Impl, { @@ -140,7 +140,7 @@ impl IDiskQuotaControl_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IDiskQuotaControl_Impl::DeleteUser(this, windows_core::from_raw_borrowed(&puser)).into() } - unsafe extern "system" fn FindUserSid(this: *mut core::ffi::c_void, pusersid: super::super::Foundation::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppuser: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn FindUserSid(this: *mut core::ffi::c_void, pusersid: super::super::Security::PSID, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppuser: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IDiskQuotaControl_Impl, { @@ -166,7 +166,7 @@ impl IDiskQuotaControl_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn CreateEnumUsers(this: *mut core::ffi::c_void, rgpusersids: *mut super::super::Foundation::PSID, cpsids: u32, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppenum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn CreateEnumUsers(this: *mut core::ffi::c_void, rgpusersids: *mut super::super::Security::PSID, cpsids: u32, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppenum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IDiskQuotaControl_Impl, { diff --git a/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/mod.rs index 0992803921..f50c4d2eb7 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/FileSystem/mod.rs @@ -779,12 +779,9 @@ pub unsafe fn FileTimeToLocalFileTime(lpfiletime: *const super::super::Foundatio FileTimeToLocalFileTime(lpfiletime, lplocalfiletime).ok() } #[inline] -pub unsafe fn FindClose(hfindfile: P0) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn FindClose(hfindfile: super::super::Foundation::HANDLE) -> windows_core::Result<()> { windows_targets::link!("kernel32.dll" "system" fn FindClose(hfindfile : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); - FindClose(hfindfile.param().abi()).ok() + FindClose(hfindfile).ok() } #[inline] pub unsafe fn FindCloseChangeNotification(hchangehandle: P0) -> windows_core::Result<()> @@ -987,12 +984,9 @@ where FindNextStreamW(hfindstream.param().abi(), lpfindstreamdata).ok() } #[inline] -pub unsafe fn FindNextVolumeA(hfindvolume: P0, lpszvolumename: &mut [u8]) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn FindNextVolumeA(hfindvolume: super::super::Foundation::HANDLE, lpszvolumename: &mut [u8]) -> windows_core::Result<()> { windows_targets::link!("kernel32.dll" "system" fn FindNextVolumeA(hfindvolume : super::super::Foundation:: HANDLE, lpszvolumename : windows_core::PSTR, cchbufferlength : u32) -> super::super::Foundation:: BOOL); - FindNextVolumeA(hfindvolume.param().abi(), core::mem::transmute(lpszvolumename.as_ptr()), lpszvolumename.len().try_into().unwrap()).ok() + FindNextVolumeA(hfindvolume, core::mem::transmute(lpszvolumename.as_ptr()), lpszvolumename.len().try_into().unwrap()).ok() } #[inline] pub unsafe fn FindNextVolumeMountPointA(hfindvolumemountpoint: P0, lpszvolumemountpoint: &mut [u8]) -> windows_core::Result<()> @@ -1011,12 +1005,9 @@ where FindNextVolumeMountPointW(hfindvolumemountpoint.param().abi(), core::mem::transmute(lpszvolumemountpoint.as_ptr()), lpszvolumemountpoint.len().try_into().unwrap()).ok() } #[inline] -pub unsafe fn FindNextVolumeW(hfindvolume: P0, lpszvolumename: &mut [u16]) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn FindNextVolumeW(hfindvolume: super::super::Foundation::HANDLE, lpszvolumename: &mut [u16]) -> windows_core::Result<()> { windows_targets::link!("kernel32.dll" "system" fn FindNextVolumeW(hfindvolume : super::super::Foundation:: HANDLE, lpszvolumename : windows_core::PWSTR, cchbufferlength : u32) -> super::super::Foundation:: BOOL); - FindNextVolumeW(hfindvolume.param().abi(), core::mem::transmute(lpszvolumename.as_ptr()), lpszvolumename.len().try_into().unwrap()).ok() + FindNextVolumeW(hfindvolume, core::mem::transmute(lpszvolumename.as_ptr()), lpszvolumename.len().try_into().unwrap()).ok() } #[inline] pub unsafe fn FindVolumeClose(hfindvolume: P0) -> windows_core::Result<()> @@ -2256,13 +2247,12 @@ pub unsafe fn OpenTransactionManagerById(transactionmanagerid: *const windows_co (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn PopIoRingCompletion(ioring: P0) -> windows_core::Result +pub unsafe fn PopIoRingCompletion(ioring: P0, cqe: *mut IORING_CQE) -> windows_core::HRESULT where P0: windows_core::Param, { windows_targets::link!("api-ms-win-core-ioring-l1-1-0.dll" "system" fn PopIoRingCompletion(ioring : HIORING, cqe : *mut IORING_CQE) -> windows_core::HRESULT); - let mut result__ = core::mem::zeroed(); - PopIoRingCompletion(ioring.param().abi(), &mut result__).map(|| result__) + PopIoRingCompletion(ioring.param().abi(), cqe) } #[inline] pub unsafe fn PrePrepareComplete(enlistmenthandle: P0, tmvirtualclock: *mut i64) -> windows_core::Result<()> @@ -3389,9 +3379,10 @@ impl IDiskQuotaControl { { (windows_core::Interface::vtable(self).GetDefaultQuotaLimitText)(windows_core::Interface::as_raw(self), psztext.param().abi(), cchtext).ok() } + #[cfg(feature = "Win32_Security")] pub unsafe fn AddUserSid(&self, pusersid: P0, fnameresolution: DISKQUOTA_USERNAME_RESOLVE) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).AddUserSid)(windows_core::Interface::as_raw(self), pusersid.param().abi(), fnameresolution, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) @@ -3409,9 +3400,10 @@ impl IDiskQuotaControl { { (windows_core::Interface::vtable(self).DeleteUser)(windows_core::Interface::as_raw(self), puser.param().abi()).ok() } + #[cfg(feature = "Win32_Security")] pub unsafe fn FindUserSid(&self, pusersid: P0, fnameresolution: DISKQUOTA_USERNAME_RESOLVE) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).FindUserSid)(windows_core::Interface::as_raw(self), pusersid.param().abi(), fnameresolution, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) @@ -3423,7 +3415,8 @@ impl IDiskQuotaControl { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).FindUserName)(windows_core::Interface::as_raw(self), pszlogonname.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - pub unsafe fn CreateEnumUsers(&self, rgpusersids: *mut super::super::Foundation::PSID, cpsids: u32, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppenum: *mut Option) -> windows_core::Result<()> { + #[cfg(feature = "Win32_Security")] + pub unsafe fn CreateEnumUsers(&self, rgpusersids: *mut super::super::Security::PSID, cpsids: u32, fnameresolution: DISKQUOTA_USERNAME_RESOLVE, ppenum: *mut Option) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).CreateEnumUsers)(windows_core::Interface::as_raw(self), rgpusersids, cpsids, fnameresolution, core::mem::transmute(ppenum)).ok() } pub unsafe fn CreateUserBatch(&self) -> windows_core::Result { @@ -3458,12 +3451,21 @@ pub struct IDiskQuotaControl_Vtbl { pub SetDefaultQuotaLimit: unsafe extern "system" fn(*mut core::ffi::c_void, i64) -> windows_core::HRESULT, pub GetDefaultQuotaLimit: unsafe extern "system" fn(*mut core::ffi::c_void, *mut i64) -> windows_core::HRESULT, pub GetDefaultQuotaLimitText: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, u32) -> windows_core::HRESULT, - pub AddUserSid: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::PSID, DISKQUOTA_USERNAME_RESOLVE, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Security")] + pub AddUserSid: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Security::PSID, DISKQUOTA_USERNAME_RESOLVE, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + AddUserSid: usize, pub AddUserName: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, DISKQUOTA_USERNAME_RESOLVE, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, pub DeleteUser: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void) -> windows_core::HRESULT, - pub FindUserSid: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::PSID, DISKQUOTA_USERNAME_RESOLVE, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Security")] + pub FindUserSid: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Security::PSID, DISKQUOTA_USERNAME_RESOLVE, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + FindUserSid: usize, pub FindUserName: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - pub CreateEnumUsers: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::PSID, u32, DISKQUOTA_USERNAME_RESOLVE, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Security")] + pub CreateEnumUsers: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Security::PSID, u32, DISKQUOTA_USERNAME_RESOLVE, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + CreateEnumUsers: usize, pub CreateUserBatch: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, pub InvalidateSidNameCache: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, pub GiveUserNameResolutionPriority: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void) -> windows_core::HRESULT, @@ -8235,7 +8237,20 @@ impl Default for FIO_CONTEXT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HIORING(pub isize); +pub struct HIORING(pub *mut core::ffi::c_void); +impl HIORING { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HIORING { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CloseIoRing(*self); + } + } +} impl Default for HIORING { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs index f81bba6fce..512c45a929 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs @@ -612,6 +612,7 @@ impl HFILTER { } } impl windows_core::Free for HFILTER { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = FilterClose(*self); @@ -635,6 +636,7 @@ impl HFILTER_INSTANCE { } } impl windows_core::Free for HFILTER_INSTANCE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = FilterInstanceClose(*self); diff --git a/crates/libs/windows/src/Windows/Win32/Storage/Jet/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/Jet/mod.rs index 83a62904ab..e934d0e461 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/Jet/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/Jet/mod.rs @@ -2,83 +2,75 @@ #[inline] pub unsafe fn JetAddColumnA(sesid: P0, tableid: P1, szcolumnname: *const i8, pcolumndef: *const JET_COLUMNDEF, pvdefault: Option<*const core::ffi::c_void>, cbdefault: u32, pcolumnid: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetAddColumnA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetAddColumnA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); JetAddColumnA(sesid.param().abi(), tableid.param().abi(), szcolumnname, pcolumndef, core::mem::transmute(pvdefault.unwrap_or(std::ptr::null())), cbdefault, core::mem::transmute(pcolumnid.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetAddColumnW(sesid: P0, tableid: P1, szcolumnname: *const u16, pcolumndef: *const JET_COLUMNDEF, pvdefault: Option<*const core::ffi::c_void>, cbdefault: u32, pcolumnid: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetAddColumnW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetAddColumnW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pcolumndef : *const JET_COLUMNDEF, pvdefault : *const core::ffi::c_void, cbdefault : u32, pcolumnid : *mut u32) -> i32); JetAddColumnW(sesid.param().abi(), tableid.param().abi(), szcolumnname, pcolumndef, core::mem::transmute(pvdefault.unwrap_or(std::ptr::null())), cbdefault, core::mem::transmute(pcolumnid.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetAttachDatabase2A(sesid: P0, szfilename: *const i8, cpgdatabasesizemax: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2A(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2A(sesid : JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, grbit : u32) -> i32); JetAttachDatabase2A(sesid.param().abi(), szfilename, cpgdatabasesizemax, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetAttachDatabase2W(sesid: P0, szfilename: *const u16, cpgdatabasesizemax: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2W(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetAttachDatabase2W(sesid : JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, grbit : u32) -> i32); JetAttachDatabase2W(sesid.param().abi(), szfilename, cpgdatabasesizemax, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetAttachDatabaseA(sesid: P0, szfilename: *const i8, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseA(sesid : JET_SESID, szfilename : *const i8, grbit : u32) -> i32); JetAttachDatabaseA(sesid.param().abi(), szfilename, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetAttachDatabaseW(sesid: P0, szfilename: *const u16, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetAttachDatabaseW(sesid : JET_SESID, szfilename : *const u16, grbit : u32) -> i32); JetAttachDatabaseW(sesid.param().abi(), szfilename, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBackupA(szbackuppath: *const i8, grbit: u32, pfnstatus: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetBackupA(szbackuppath : *const i8, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); JetBackupA(szbackuppath, grbit, pfnstatus) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBackupInstanceA(instance: P0, szbackuppath: *const i8, grbit: u32, pfnstatus: JET_PFNSTATUS) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBackupInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szbackuppath : *const i8, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBackupInstanceA(instance : JET_INSTANCE, szbackuppath : *const i8, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); JetBackupInstanceA(instance.param().abi(), szbackuppath, grbit, pfnstatus) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBackupInstanceW(instance: P0, szbackuppath: *const u16, grbit: u32, pfnstatus: JET_PFNSTATUS) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBackupInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, szbackuppath : *const u16, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBackupInstanceW(instance : JET_INSTANCE, szbackuppath : *const u16, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); JetBackupInstanceW(instance.param().abi(), szbackuppath, grbit, pfnstatus) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBackupW(szbackuppath: *const u16, grbit: u32, pfnstatus: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetBackupW(szbackuppath : *const u16, grbit : u32, pfnstatus : JET_PFNSTATUS) -> i32); @@ -89,67 +81,60 @@ pub unsafe fn JetBeginExternalBackup(grbit: u32) -> i32 { windows_targets::link!("esent.dll" "system" fn JetBeginExternalBackup(grbit : u32) -> i32); JetBeginExternalBackup(grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBeginExternalBackupInstance(instance: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBeginExternalBackupInstance(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBeginExternalBackupInstance(instance : JET_INSTANCE, grbit : u32) -> i32); JetBeginExternalBackupInstance(instance.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetBeginSessionA(instance: P0, psesid: *mut super::StructuredStorage::JET_SESID, szusername: Option<*const i8>, szpassword: Option<*const i8>) -> i32 +pub unsafe fn JetBeginSessionA(instance: P0, psesid: *mut JET_SESID, szusername: Option<*const i8>, szpassword: Option<*const i8>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBeginSessionA(instance : super::StructuredStorage:: JET_INSTANCE, psesid : *mut super::StructuredStorage:: JET_SESID, szusername : *const i8, szpassword : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBeginSessionA(instance : JET_INSTANCE, psesid : *mut JET_SESID, szusername : *const i8, szpassword : *const i8) -> i32); JetBeginSessionA(instance.param().abi(), psesid, core::mem::transmute(szusername.unwrap_or(std::ptr::null())), core::mem::transmute(szpassword.unwrap_or(std::ptr::null()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetBeginSessionW(instance: P0, psesid: *mut super::StructuredStorage::JET_SESID, szusername: Option<*const u16>, szpassword: Option<*const u16>) -> i32 +pub unsafe fn JetBeginSessionW(instance: P0, psesid: *mut JET_SESID, szusername: Option<*const u16>, szpassword: Option<*const u16>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBeginSessionW(instance : super::StructuredStorage:: JET_INSTANCE, psesid : *mut super::StructuredStorage:: JET_SESID, szusername : *const u16, szpassword : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBeginSessionW(instance : JET_INSTANCE, psesid : *mut JET_SESID, szusername : *const u16, szpassword : *const u16) -> i32); JetBeginSessionW(instance.param().abi(), psesid, core::mem::transmute(szusername.unwrap_or(std::ptr::null())), core::mem::transmute(szpassword.unwrap_or(std::ptr::null()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBeginTransaction(sesid: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBeginTransaction(sesid : super::StructuredStorage:: JET_SESID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBeginTransaction(sesid : JET_SESID) -> i32); JetBeginTransaction(sesid.param().abi()) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBeginTransaction2(sesid: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBeginTransaction2(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBeginTransaction2(sesid : JET_SESID, grbit : u32) -> i32); JetBeginTransaction2(sesid.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetBeginTransaction3(sesid: P0, trxid: i64, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetBeginTransaction3(sesid : super::StructuredStorage:: JET_SESID, trxid : i64, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetBeginTransaction3(sesid : JET_SESID, trxid : i64, grbit : u32) -> i32); JetBeginTransaction3(sesid.param().abi(), trxid, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCloseDatabase(sesid: P0, dbid: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCloseDatabase(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCloseDatabase(sesid : JET_SESID, dbid : u32, grbit : u32) -> i32); JetCloseDatabase(sesid.param().abi(), dbid, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] @@ -165,66 +150,62 @@ where #[inline] pub unsafe fn JetCloseFileInstance(instance: P0, hffile: P1) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCloseFileInstance(instance : super::StructuredStorage:: JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCloseFileInstance(instance : JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE) -> i32); JetCloseFileInstance(instance.param().abi(), hffile.param().abi()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCloseTable(sesid: P0, tableid: P1) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCloseTable(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCloseTable(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); JetCloseTable(sesid.param().abi(), tableid.param().abi()) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCommitTransaction(sesid: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCommitTransaction(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCommitTransaction(sesid : JET_SESID, grbit : u32) -> i32); JetCommitTransaction(sesid.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCommitTransaction2(sesid: P0, grbit: u32, cmsecdurablecommit: u32, pcommitid: Option<*mut JET_COMMIT_ID>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCommitTransaction2(sesid : super::StructuredStorage:: JET_SESID, grbit : u32, cmsecdurablecommit : u32, pcommitid : *mut JET_COMMIT_ID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCommitTransaction2(sesid : JET_SESID, grbit : u32, cmsecdurablecommit : u32, pcommitid : *mut JET_COMMIT_ID) -> i32); JetCommitTransaction2(sesid.param().abi(), grbit, cmsecdurablecommit, core::mem::transmute(pcommitid.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCompactA(sesid: P0, szdatabasesrc: *const i8, szdatabasedest: *const i8, pfnstatus: JET_PFNSTATUS, pconvert: Option<*const JET_CONVERT_A>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCompactA(sesid : super::StructuredStorage:: JET_SESID, szdatabasesrc : *const i8, szdatabasedest : *const i8, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_A, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCompactA(sesid : JET_SESID, szdatabasesrc : *const i8, szdatabasedest : *const i8, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_A, grbit : u32) -> i32); JetCompactA(sesid.param().abi(), szdatabasesrc, szdatabasedest, pfnstatus, core::mem::transmute(pconvert.unwrap_or(std::ptr::null())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCompactW(sesid: P0, szdatabasesrc: *const u16, szdatabasedest: *const u16, pfnstatus: JET_PFNSTATUS, pconvert: Option<*const JET_CONVERT_W>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCompactW(sesid : super::StructuredStorage:: JET_SESID, szdatabasesrc : *const u16, szdatabasedest : *const u16, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_W, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCompactW(sesid : JET_SESID, szdatabasesrc : *const u16, szdatabasedest : *const u16, pfnstatus : JET_PFNSTATUS, pconvert : *const JET_CONVERT_W, grbit : u32) -> i32); JetCompactW(sesid.param().abi(), szdatabasesrc, szdatabasedest, pfnstatus, core::mem::transmute(pconvert.unwrap_or(std::ptr::null())), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetComputeStats(sesid: P0, tableid: P1) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetComputeStats(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetComputeStats(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); JetComputeStats(sesid.param().abi(), tableid.param().abi()) } #[inline] @@ -232,432 +213,415 @@ pub unsafe fn JetConfigureProcessForCrashDump(grbit: u32) -> i32 { windows_targets::link!("esent.dll" "system" fn JetConfigureProcessForCrashDump(grbit : u32) -> i32); JetConfigureProcessForCrashDump(grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateDatabase2A(sesid: P0, szfilename: *const i8, cpgdatabasesizemax: u32, pdbid: *mut u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2A(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2A(sesid : JET_SESID, szfilename : *const i8, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); JetCreateDatabase2A(sesid.param().abi(), szfilename, cpgdatabasesizemax, pdbid, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateDatabase2W(sesid: P0, szfilename: *const u16, cpgdatabasesizemax: u32, pdbid: *mut u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2W(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateDatabase2W(sesid : JET_SESID, szfilename : *const u16, cpgdatabasesizemax : u32, pdbid : *mut u32, grbit : u32) -> i32); JetCreateDatabase2W(sesid.param().abi(), szfilename, cpgdatabasesizemax, pdbid, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateDatabaseA(sesid: P0, szfilename: *const i8, szconnect: Option<*const i8>, pdbid: *mut u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseA(sesid : JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); JetCreateDatabaseA(sesid.param().abi(), szfilename, core::mem::transmute(szconnect.unwrap_or(std::ptr::null())), pdbid, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateDatabaseW(sesid: P0, szfilename: *const u16, szconnect: Option<*const u16>, pdbid: *mut u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateDatabaseW(sesid : JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); JetCreateDatabaseW(sesid.param().abi(), szfilename, core::mem::transmute(szconnect.unwrap_or(std::ptr::null())), pdbid, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndex2A(sesid: P0, tableid: P1, pindexcreate: &[JET_INDEXCREATE_A]) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndex2A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_A, cindexcreate : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndex2A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_A, cindexcreate : u32) -> i32); JetCreateIndex2A(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pindexcreate.as_ptr()), pindexcreate.len().try_into().unwrap()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndex2W(sesid: P0, tableid: P1, pindexcreate: &[JET_INDEXCREATE_W]) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndex2W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_W, cindexcreate : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndex2W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE_W, cindexcreate : u32) -> i32); JetCreateIndex2W(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pindexcreate.as_ptr()), pindexcreate.len().try_into().unwrap()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndex3A(sesid: P0, tableid: P1, pindexcreate: &[JET_INDEXCREATE2_A]) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndex3A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_A, cindexcreate : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndex3A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_A, cindexcreate : u32) -> i32); JetCreateIndex3A(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pindexcreate.as_ptr()), pindexcreate.len().try_into().unwrap()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndex3W(sesid: P0, tableid: P1, pindexcreate: &[JET_INDEXCREATE2_W]) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndex3W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_W, cindexcreate : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndex3W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE2_W, cindexcreate : u32) -> i32); JetCreateIndex3W(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pindexcreate.as_ptr()), pindexcreate.len().try_into().unwrap()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndex4A(sesid: P0, tableid: P1, pindexcreate: &[JET_INDEXCREATE3_A]) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndex4A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_A, cindexcreate : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndex4A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_A, cindexcreate : u32) -> i32); JetCreateIndex4A(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pindexcreate.as_ptr()), pindexcreate.len().try_into().unwrap()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndex4W(sesid: P0, tableid: P1, pindexcreate: &[JET_INDEXCREATE3_W]) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndex4W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_W, cindexcreate : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndex4W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pindexcreate : *const JET_INDEXCREATE3_W, cindexcreate : u32) -> i32); JetCreateIndex4W(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pindexcreate.as_ptr()), pindexcreate.len().try_into().unwrap()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndexA(sesid: P0, tableid: P1, szindexname: *const i8, grbit: u32, szkey: &[u8], ldensity: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, szkey : windows_core::PCSTR, cbkey : u32, ldensity : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, szkey : windows_core::PCSTR, cbkey : u32, ldensity : u32) -> i32); JetCreateIndexA(sesid.param().abi(), tableid.param().abi(), szindexname, grbit, core::mem::transmute(szkey.as_ptr()), szkey.len().try_into().unwrap(), ldensity) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateIndexW(sesid: P0, tableid: P1, szindexname: *const u16, grbit: u32, szkey: P2, cbkey: u32, ldensity: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, szkey : windows_core::PCWSTR, cbkey : u32, ldensity : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, szkey : windows_core::PCWSTR, cbkey : u32, ldensity : u32) -> i32); JetCreateIndexW(sesid.param().abi(), tableid.param().abi(), szindexname, grbit, szkey.param().abi(), cbkey, ldensity) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetCreateInstance2A(pinstance: *mut super::StructuredStorage::JET_INSTANCE, szinstancename: Option<*const i8>, szdisplayname: Option<*const i8>, grbit: u32) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetCreateInstance2A(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const i8, szdisplayname : *const i8, grbit : u32) -> i32); +pub unsafe fn JetCreateInstance2A(pinstance: *mut JET_INSTANCE, szinstancename: Option<*const i8>, szdisplayname: Option<*const i8>, grbit: u32) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetCreateInstance2A(pinstance : *mut JET_INSTANCE, szinstancename : *const i8, szdisplayname : *const i8, grbit : u32) -> i32); JetCreateInstance2A(pinstance, core::mem::transmute(szinstancename.unwrap_or(std::ptr::null())), core::mem::transmute(szdisplayname.unwrap_or(std::ptr::null())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetCreateInstance2W(pinstance: *mut super::StructuredStorage::JET_INSTANCE, szinstancename: Option<*const u16>, szdisplayname: Option<*const u16>, grbit: u32) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetCreateInstance2W(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const u16, szdisplayname : *const u16, grbit : u32) -> i32); +pub unsafe fn JetCreateInstance2W(pinstance: *mut JET_INSTANCE, szinstancename: Option<*const u16>, szdisplayname: Option<*const u16>, grbit: u32) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetCreateInstance2W(pinstance : *mut JET_INSTANCE, szinstancename : *const u16, szdisplayname : *const u16, grbit : u32) -> i32); JetCreateInstance2W(pinstance, core::mem::transmute(szinstancename.unwrap_or(std::ptr::null())), core::mem::transmute(szdisplayname.unwrap_or(std::ptr::null())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetCreateInstanceA(pinstance: *mut super::StructuredStorage::JET_INSTANCE, szinstancename: Option<*const i8>) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetCreateInstanceA(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const i8) -> i32); +pub unsafe fn JetCreateInstanceA(pinstance: *mut JET_INSTANCE, szinstancename: Option<*const i8>) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetCreateInstanceA(pinstance : *mut JET_INSTANCE, szinstancename : *const i8) -> i32); JetCreateInstanceA(pinstance, core::mem::transmute(szinstancename.unwrap_or(std::ptr::null()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetCreateInstanceW(pinstance: *mut super::StructuredStorage::JET_INSTANCE, szinstancename: Option<*const u16>) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetCreateInstanceW(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, szinstancename : *const u16) -> i32); +pub unsafe fn JetCreateInstanceW(pinstance: *mut JET_INSTANCE, szinstancename: Option<*const u16>) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetCreateInstanceW(pinstance : *mut JET_INSTANCE, szinstancename : *const u16) -> i32); JetCreateInstanceW(pinstance, core::mem::transmute(szinstancename.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableA(sesid: P0, dbid: u32, sztablename: *const i8, lpages: u32, ldensity: u32, ptableid: *mut super::StructuredStorage::JET_TABLEID) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); JetCreateTableA(sesid.param().abi(), dbid, sztablename, lpages, ldensity, ptableid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndex2A(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE2_A) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_A) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2A(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_A) -> i32); JetCreateTableColumnIndex2A(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndex2W(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE2_W) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_W) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex2W(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE2_W) -> i32); JetCreateTableColumnIndex2W(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndex3A(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE3_A) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_A) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3A(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_A) -> i32); JetCreateTableColumnIndex3A(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndex3W(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE3_W) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_W) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex3W(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE3_W) -> i32); JetCreateTableColumnIndex3W(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndex4A(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE4_A) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_A) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4A(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_A) -> i32); JetCreateTableColumnIndex4A(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndex4W(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE4_W) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_W) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndex4W(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE4_W) -> i32); JetCreateTableColumnIndex4W(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndexA(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE_A) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_A) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexA(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_A) -> i32); JetCreateTableColumnIndexA(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableColumnIndexW(sesid: P0, dbid: u32, ptablecreate: *mut JET_TABLECREATE_W) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_W) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableColumnIndexW(sesid : JET_SESID, dbid : u32, ptablecreate : *mut JET_TABLECREATE_W) -> i32); JetCreateTableColumnIndexW(sesid.param().abi(), dbid, ptablecreate) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetCreateTableW(sesid: P0, dbid: u32, sztablename: *const u16, lpages: u32, ldensity: u32, ptableid: *mut super::StructuredStorage::JET_TABLEID) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetCreateTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetCreateTableW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, lpages : u32, ldensity : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); JetCreateTableW(sesid.param().abi(), dbid, sztablename, lpages, ldensity, ptableid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDefragment2A(sesid: P0, dbid: u32, sztablename: Option<*const i8>, pcpasses: Option<*mut u32>, pcseconds: Option<*mut u32>, callback: JET_CALLBACK, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDefragment2A(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDefragment2A(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); JetDefragment2A(sesid.param().abi(), dbid, core::mem::transmute(sztablename.unwrap_or(std::ptr::null())), core::mem::transmute(pcpasses.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pcseconds.unwrap_or(std::ptr::null_mut())), callback, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDefragment2W(sesid: P0, dbid: u32, sztablename: Option<*const u16>, pcpasses: Option<*mut u32>, pcseconds: Option<*mut u32>, callback: JET_CALLBACK, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDefragment2W(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDefragment2W(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, grbit : u32) -> i32); JetDefragment2W(sesid.param().abi(), dbid, core::mem::transmute(sztablename.unwrap_or(std::ptr::null())), core::mem::transmute(pcpasses.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pcseconds.unwrap_or(std::ptr::null_mut())), callback, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDefragment3A(sesid: P0, szdatabasename: *const i8, sztablename: Option<*const i8>, pcpasses: Option<*mut u32>, pcseconds: Option<*mut u32>, callback: JET_CALLBACK, pvcontext: *const core::ffi::c_void, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDefragment3A(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const i8, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDefragment3A(sesid : JET_SESID, szdatabasename : *const i8, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); JetDefragment3A(sesid.param().abi(), szdatabasename, core::mem::transmute(sztablename.unwrap_or(std::ptr::null())), core::mem::transmute(pcpasses.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pcseconds.unwrap_or(std::ptr::null_mut())), callback, pvcontext, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDefragment3W(sesid: P0, szdatabasename: *const u16, sztablename: Option<*const u16>, pcpasses: Option<*mut u32>, pcseconds: Option<*mut u32>, callback: JET_CALLBACK, pvcontext: *const core::ffi::c_void, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDefragment3W(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const u16, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDefragment3W(sesid : JET_SESID, szdatabasename : *const u16, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, callback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, grbit : u32) -> i32); JetDefragment3W(sesid.param().abi(), szdatabasename, core::mem::transmute(sztablename.unwrap_or(std::ptr::null())), core::mem::transmute(pcpasses.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pcseconds.unwrap_or(std::ptr::null_mut())), callback, pvcontext, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDefragmentA(sesid: P0, dbid: u32, sztablename: Option<*const i8>, pcpasses: Option<*mut u32>, pcseconds: Option<*mut u32>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDefragmentA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDefragmentA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); JetDefragmentA(sesid.param().abi(), dbid, core::mem::transmute(sztablename.unwrap_or(std::ptr::null())), core::mem::transmute(pcpasses.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pcseconds.unwrap_or(std::ptr::null_mut())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDefragmentW(sesid: P0, dbid: u32, sztablename: Option<*const u16>, pcpasses: Option<*mut u32>, pcseconds: Option<*mut u32>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDefragmentW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDefragmentW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pcpasses : *mut u32, pcseconds : *mut u32, grbit : u32) -> i32); JetDefragmentW(sesid.param().abi(), dbid, core::mem::transmute(sztablename.unwrap_or(std::ptr::null())), core::mem::transmute(pcpasses.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pcseconds.unwrap_or(std::ptr::null_mut())), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDelete(sesid: P0, tableid: P1) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDelete(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDelete(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID) -> i32); JetDelete(sesid.param().abi(), tableid.param().abi()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteColumn2A(sesid: P0, tableid: P1, szcolumnname: *const i8, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, grbit : u32) -> i32); JetDeleteColumn2A(sesid.param().abi(), tableid.param().abi(), szcolumnname, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteColumn2W(sesid: P0, tableid: P1, szcolumnname: *const u16, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteColumn2W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, grbit : u32) -> i32); JetDeleteColumn2W(sesid.param().abi(), tableid.param().abi(), szcolumnname, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteColumnA(sesid: P0, tableid: P1, szcolumnname: *const i8) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteColumnA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteColumnA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8) -> i32); JetDeleteColumnA(sesid.param().abi(), tableid.param().abi(), szcolumnname) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteColumnW(sesid: P0, tableid: P1, szcolumnname: *const u16) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteColumnW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteColumnW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16) -> i32); JetDeleteColumnW(sesid.param().abi(), tableid.param().abi(), szcolumnname) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteIndexA(sesid: P0, tableid: P1, szindexname: *const i8) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); JetDeleteIndexA(sesid.param().abi(), tableid.param().abi(), szindexname) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteIndexW(sesid: P0, tableid: P1, szindexname: *const u16) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); JetDeleteIndexW(sesid.param().abi(), tableid.param().abi(), szindexname) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteTableA(sesid: P0, dbid: u32, sztablename: *const i8) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteTableA(sesid : JET_SESID, dbid : u32, sztablename : *const i8) -> i32); JetDeleteTableA(sesid.param().abi(), dbid, sztablename) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDeleteTableW(sesid: P0, dbid: u32, sztablename: *const u16) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDeleteTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDeleteTableW(sesid : JET_SESID, dbid : u32, sztablename : *const u16) -> i32); JetDeleteTableW(sesid.param().abi(), dbid, sztablename) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDetachDatabase2A(sesid: P0, szfilename: Option<*const i8>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2A(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2A(sesid : JET_SESID, szfilename : *const i8, grbit : u32) -> i32); JetDetachDatabase2A(sesid.param().abi(), core::mem::transmute(szfilename.unwrap_or(std::ptr::null())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDetachDatabase2W(sesid: P0, szfilename: Option<*const u16>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2W(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDetachDatabase2W(sesid : JET_SESID, szfilename : *const u16, grbit : u32) -> i32); JetDetachDatabase2W(sesid.param().abi(), core::mem::transmute(szfilename.unwrap_or(std::ptr::null())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDetachDatabaseA(sesid: P0, szfilename: Option<*const i8>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseA(sesid : JET_SESID, szfilename : *const i8) -> i32); JetDetachDatabaseA(sesid.param().abi(), core::mem::transmute(szfilename.unwrap_or(std::ptr::null()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDetachDatabaseW(sesid: P0, szfilename: Option<*const u16>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDetachDatabaseW(sesid : JET_SESID, szfilename : *const u16) -> i32); JetDetachDatabaseW(sesid.param().abi(), core::mem::transmute(szfilename.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetDupCursor(sesid: P0, tableid: P1, ptableid: *mut super::StructuredStorage::JET_TABLEID, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDupCursor(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ptableid : *mut super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDupCursor(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ptableid : *mut super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); JetDupCursor(sesid.param().abi(), tableid.param().abi(), ptableid, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetDupSession(sesid: P0, psesid: *mut super::StructuredStorage::JET_SESID) -> i32 +pub unsafe fn JetDupSession(sesid: P0, psesid: *mut JET_SESID) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetDupSession(sesid : super::StructuredStorage:: JET_SESID, psesid : *mut super::StructuredStorage:: JET_SESID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetDupSession(sesid : JET_SESID, psesid : *mut JET_SESID) -> i32); JetDupSession(sesid.param().abi(), psesid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] @@ -677,72 +641,65 @@ pub unsafe fn JetEndExternalBackup() -> i32 { windows_targets::link!("esent.dll" "system" fn JetEndExternalBackup() -> i32); JetEndExternalBackup() } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetEndExternalBackupInstance(instance: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance(instance : JET_INSTANCE) -> i32); JetEndExternalBackupInstance(instance.param().abi()) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetEndExternalBackupInstance2(instance: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance2(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetEndExternalBackupInstance2(instance : JET_INSTANCE, grbit : u32) -> i32); JetEndExternalBackupInstance2(instance.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetEndSession(sesid: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetEndSession(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetEndSession(sesid : JET_SESID, grbit : u32) -> i32); JetEndSession(sesid.param().abi(), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetEnumerateColumns(sesid: P0, tableid: P1, rgenumcolumnid: Option<&[JET_ENUMCOLUMNID]>, pcenumcolumn: *mut u32, prgenumcolumn: *mut *mut JET_ENUMCOLUMN, pfnrealloc: JET_PFNREALLOC, pvrealloccontext: Option<*const core::ffi::c_void>, cbdatamost: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetEnumerateColumns(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cenumcolumnid : u32, rgenumcolumnid : *const JET_ENUMCOLUMNID, pcenumcolumn : *mut u32, prgenumcolumn : *mut *mut JET_ENUMCOLUMN, pfnrealloc : JET_PFNREALLOC, pvrealloccontext : *const core::ffi::c_void, cbdatamost : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetEnumerateColumns(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cenumcolumnid : u32, rgenumcolumnid : *const JET_ENUMCOLUMNID, pcenumcolumn : *mut u32, prgenumcolumn : *mut *mut JET_ENUMCOLUMN, pfnrealloc : JET_PFNREALLOC, pvrealloccontext : *const core::ffi::c_void, cbdatamost : u32, grbit : u32) -> i32); JetEnumerateColumns(sesid.param().abi(), tableid.param().abi(), rgenumcolumnid.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(rgenumcolumnid.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pcenumcolumn, prgenumcolumn, pfnrealloc, core::mem::transmute(pvrealloccontext.unwrap_or(std::ptr::null())), cbdatamost, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetEscrowUpdate(sesid: P0, tableid: P1, columnid: u32, pv: *const core::ffi::c_void, cbmax: u32, pvold: Option<*mut core::ffi::c_void>, cboldmax: u32, pcboldactual: Option<*mut u32>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetEscrowUpdate(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pv : *const core::ffi::c_void, cbmax : u32, pvold : *mut core::ffi::c_void, cboldmax : u32, pcboldactual : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetEscrowUpdate(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pv : *const core::ffi::c_void, cbmax : u32, pvold : *mut core::ffi::c_void, cboldmax : u32, pcboldactual : *mut u32, grbit : u32) -> i32); JetEscrowUpdate(sesid.param().abi(), tableid.param().abi(), columnid, pv, cbmax, core::mem::transmute(pvold.unwrap_or(std::ptr::null_mut())), cboldmax, core::mem::transmute(pcboldactual.unwrap_or(std::ptr::null_mut())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetExternalRestore2A(szcheckpointfilepath: *const i8, szlogpath: *const i8, rgrstmap: Option<&[JET_RSTMAP_A]>, szbackuplogpath: *const i8, ploginfo: *mut JET_LOGINFO_A, sztargetinstancename: Option<*const i8>, sztargetinstancelogpath: Option<*const i8>, sztargetinstancecheckpointpath: Option<*const i8>, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetExternalRestore2A(szcheckpointfilepath : *const i8, szlogpath : *const i8, rgrstmap : *const JET_RSTMAP_A, crstfilemap : i32, szbackuplogpath : *const i8, ploginfo : *mut JET_LOGINFO_A, sztargetinstancename : *const i8, sztargetinstancelogpath : *const i8, sztargetinstancecheckpointpath : *const i8, pfn : JET_PFNSTATUS) -> i32); JetExternalRestore2A(szcheckpointfilepath, szlogpath, core::mem::transmute(rgrstmap.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), rgrstmap.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), szbackuplogpath, ploginfo, core::mem::transmute(sztargetinstancename.unwrap_or(std::ptr::null())), core::mem::transmute(sztargetinstancelogpath.unwrap_or(std::ptr::null())), core::mem::transmute(sztargetinstancecheckpointpath.unwrap_or(std::ptr::null())), pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetExternalRestore2W(szcheckpointfilepath: *const u16, szlogpath: *const u16, rgrstmap: Option<&[JET_RSTMAP_W]>, szbackuplogpath: *const u16, ploginfo: *mut JET_LOGINFO_W, sztargetinstancename: Option<*const u16>, sztargetinstancelogpath: Option<*const u16>, sztargetinstancecheckpointpath: Option<*const u16>, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetExternalRestore2W(szcheckpointfilepath : *const u16, szlogpath : *const u16, rgrstmap : *const JET_RSTMAP_W, crstfilemap : i32, szbackuplogpath : *const u16, ploginfo : *mut JET_LOGINFO_W, sztargetinstancename : *const u16, sztargetinstancelogpath : *const u16, sztargetinstancecheckpointpath : *const u16, pfn : JET_PFNSTATUS) -> i32); JetExternalRestore2W(szcheckpointfilepath, szlogpath, core::mem::transmute(rgrstmap.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), rgrstmap.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), szbackuplogpath, ploginfo, core::mem::transmute(sztargetinstancename.unwrap_or(std::ptr::null())), core::mem::transmute(sztargetinstancelogpath.unwrap_or(std::ptr::null())), core::mem::transmute(sztargetinstancecheckpointpath.unwrap_or(std::ptr::null())), pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetExternalRestoreA(szcheckpointfilepath: *const i8, szlogpath: *const i8, rgrstmap: Option<&[JET_RSTMAP_A]>, szbackuplogpath: *const i8, genlow: i32, genhigh: i32, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetExternalRestoreA(szcheckpointfilepath : *const i8, szlogpath : *const i8, rgrstmap : *const JET_RSTMAP_A, crstfilemap : i32, szbackuplogpath : *const i8, genlow : i32, genhigh : i32, pfn : JET_PFNSTATUS) -> i32); JetExternalRestoreA(szcheckpointfilepath, szlogpath, core::mem::transmute(rgrstmap.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), rgrstmap.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), szbackuplogpath, genlow, genhigh, pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetExternalRestoreW(szcheckpointfilepath: *const u16, szlogpath: *const u16, rgrstmap: Option<&[JET_RSTMAP_W]>, szbackuplogpath: *const u16, genlow: i32, genhigh: i32, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetExternalRestoreW(szcheckpointfilepath : *const u16, szlogpath : *const u16, rgrstmap : *const JET_RSTMAP_W, crstfilemap : i32, szbackuplogpath : *const u16, genlow : i32, genhigh : i32, pfn : JET_PFNSTATUS) -> i32); @@ -761,22 +718,20 @@ pub unsafe fn JetGetAttachInfoA(szzdatabases: Option<&mut [u8]>, pcbactual: Opti windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoA(szzdatabases : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetAttachInfoA(core::mem::transmute(szzdatabases.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), szzdatabases.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetAttachInfoInstanceA(instance: P0, szzdatabases: Option<&mut [u8]>, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szzdatabases : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceA(instance : JET_INSTANCE, szzdatabases : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetAttachInfoInstanceA(instance.param().abi(), core::mem::transmute(szzdatabases.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), szzdatabases.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetAttachInfoInstanceW(instance: P0, szzdatabases: Option<*mut u16>, cbmax: u32, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, szzdatabases : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetAttachInfoInstanceW(instance : JET_INSTANCE, szzdatabases : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetAttachInfoInstanceW(instance.param().abi(), core::mem::transmute(szzdatabases.unwrap_or(std::ptr::null_mut())), cbmax, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } #[inline] @@ -788,58 +743,56 @@ pub unsafe fn JetGetAttachInfoW(wszzdatabases: Option<*mut u16>, cbmax: u32, pcb #[inline] pub unsafe fn JetGetBookmark(sesid: P0, tableid: P1, pvbookmark: Option<*mut core::ffi::c_void>, cbmax: u32, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetBookmark(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pvbookmark.unwrap_or(std::ptr::null_mut())), cbmax, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetColumnInfoA(sesid: P0, dbid: u32, sztablename: *const i8, pcolumnnameorid: Option<*const i8>, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pcolumnnameorid : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pcolumnnameorid : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetColumnInfoA(sesid.param().abi(), dbid, sztablename, core::mem::transmute(pcolumnnameorid.unwrap_or(std::ptr::null())), pvresult, cbmax, infolevel) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetColumnInfoW(sesid: P0, dbid: u32, sztablename: *const u16, pwcolumnnameorid: Option<*const u16>, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pwcolumnnameorid : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetColumnInfoW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pwcolumnnameorid : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetColumnInfoW(sesid.param().abi(), dbid, sztablename, core::mem::transmute(pwcolumnnameorid.unwrap_or(std::ptr::null())), pvresult, cbmax, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetCurrentIndexA(sesid: P0, tableid: P1, szindexname: &mut [u8]) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut i8, cbindexname : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut i8, cbindexname : u32) -> i32); JetGetCurrentIndexA(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.as_ptr()), szindexname.len().try_into().unwrap()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetCurrentIndexW(sesid: P0, tableid: P1, szindexname: *mut u16, cbindexname: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut u16, cbindexname : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetCurrentIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *mut u16, cbindexname : u32) -> i32); JetGetCurrentIndexW(sesid.param().abi(), tableid.param().abi(), szindexname, cbindexname) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetCursorInfo(sesid: P0, tableid: P1, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetCursorInfo(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetCursorInfo(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetCursorInfo(sesid.param().abi(), tableid.param().abi(), pvresult, cbmax, infolevel) } #[inline] @@ -852,22 +805,20 @@ pub unsafe fn JetGetDatabaseFileInfoW(szdatabasename: *const u16, pvresult: *mut windows_targets::link!("esent.dll" "system" fn JetGetDatabaseFileInfoW(szdatabasename : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetDatabaseFileInfoW(szdatabasename, pvresult, cbmax, infolevel) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetDatabaseInfoA(sesid: P0, dbid: u32, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoA(sesid : JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetDatabaseInfoA(sesid.param().abi(), dbid, pvresult, cbmax, infolevel) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetDatabaseInfoW(sesid: P0, dbid: u32, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetDatabaseInfoW(sesid : JET_SESID, dbid : u32, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetDatabaseInfoW(sesid.param().abi(), dbid, pvresult, cbmax, infolevel) } #[inline] @@ -875,22 +826,20 @@ pub unsafe fn JetGetErrorInfoW(pvcontext: Option<*const core::ffi::c_void>, pvre windows_targets::link!("esent.dll" "system" fn JetGetErrorInfoW(pvcontext : *const core::ffi::c_void, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32, grbit : u32) -> i32); JetGetErrorInfoW(core::mem::transmute(pvcontext.unwrap_or(std::ptr::null())), pvresult, cbmax, infolevel, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetIndexInfoA(sesid: P0, dbid: u32, sztablename: *const i8, szindexname: Option<*const i8>, pvresult: *mut core::ffi::c_void, cbresult: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); JetGetIndexInfoA(sesid.param().abi(), dbid, sztablename, core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), pvresult, cbresult, infolevel) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetIndexInfoW(sesid: P0, dbid: u32, sztablename: *const u16, szindexname: Option<*const u16>, pvresult: *mut core::ffi::c_void, cbresult: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetIndexInfoW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); JetGetIndexInfoW(sesid.param().abi(), dbid, sztablename, core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), pvresult, cbresult, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] @@ -905,33 +854,32 @@ pub unsafe fn JetGetInstanceInfoW(pcinstanceinfo: *mut u32, painstanceinfo: *mut windows_targets::link!("esent.dll" "system" fn JetGetInstanceInfoW(pcinstanceinfo : *mut u32, painstanceinfo : *mut *mut JET_INSTANCE_INFO_W) -> i32); JetGetInstanceInfoW(pcinstanceinfo, painstanceinfo) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetInstanceMiscInfo(instance: P0, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetInstanceMiscInfo(instance : super::StructuredStorage:: JET_INSTANCE, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetInstanceMiscInfo(instance : JET_INSTANCE, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetInstanceMiscInfo(instance.param().abi(), pvresult, cbmax, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetLS(sesid: P0, tableid: P1, pls: *mut JET_LS, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetLS(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pls : *mut JET_LS, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetLS(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pls : *mut JET_LS, grbit : u32) -> i32); JetGetLS(sesid.param().abi(), tableid.param().abi(), pls, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetLock(sesid: P0, tableid: P1, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetLock(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetLock(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); JetGetLock(sesid.param().abi(), tableid.param().abi(), grbit) } #[inline] @@ -939,40 +887,36 @@ pub unsafe fn JetGetLogInfoA(szzlogs: Option<&mut [u8]>, pcbactual: Option<*mut windows_targets::link!("esent.dll" "system" fn JetGetLogInfoA(szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetLogInfoA(core::mem::transmute(szzlogs.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), szzlogs.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetLogInfoInstance2A(instance: P0, szzlogs: Option<&mut [u8]>, pcbactual: Option<*mut u32>, ploginfo: Option<*mut JET_LOGINFO_A>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2A(instance : super::StructuredStorage:: JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_A) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2A(instance : JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_A) -> i32); JetGetLogInfoInstance2A(instance.param().abi(), core::mem::transmute(szzlogs.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), szzlogs.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ploginfo.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetLogInfoInstance2W(instance: P0, wszzlogs: Option<*mut u16>, cbmax: u32, pcbactual: Option<*mut u32>, ploginfo: Option<*mut JET_LOGINFO_W>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2W(instance : super::StructuredStorage:: JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_W) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstance2W(instance : JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32, ploginfo : *mut JET_LOGINFO_W) -> i32); JetGetLogInfoInstance2W(instance.param().abi(), core::mem::transmute(wszzlogs.unwrap_or(std::ptr::null_mut())), cbmax, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut())), core::mem::transmute(ploginfo.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetLogInfoInstanceA(instance: P0, szzlogs: Option<&mut [u8]>, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceA(instance : JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetLogInfoInstanceA(instance.param().abi(), core::mem::transmute(szzlogs.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), szzlogs.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetLogInfoInstanceW(instance: P0, wszzlogs: Option<*mut u16>, cbmax: u32, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetLogInfoInstanceW(instance : JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetLogInfoInstanceW(instance.param().abi(), core::mem::transmute(wszzlogs.unwrap_or(std::ptr::null_mut())), cbmax, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } #[inline] @@ -980,151 +924,148 @@ pub unsafe fn JetGetLogInfoW(szzlogs: Option<*mut u16>, cbmax: u32, pcbactual: O windows_targets::link!("esent.dll" "system" fn JetGetLogInfoW(szzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetLogInfoW(core::mem::transmute(szzlogs.unwrap_or(std::ptr::null_mut())), cbmax, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetObjectInfoA(sesid: P0, dbid: u32, objtyp: u32, szcontainername: Option<*const i8>, szobjectname: Option<*const i8>, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const i8, szobjectname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoA(sesid : JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const i8, szobjectname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetObjectInfoA(sesid.param().abi(), dbid, objtyp, core::mem::transmute(szcontainername.unwrap_or(std::ptr::null())), core::mem::transmute(szobjectname.unwrap_or(std::ptr::null())), pvresult, cbmax, infolevel) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetObjectInfoW(sesid: P0, dbid: u32, objtyp: u32, szcontainername: Option<*const u16>, szobjectname: Option<*const u16>, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const u16, szobjectname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetObjectInfoW(sesid : JET_SESID, dbid : u32, objtyp : u32, szcontainername : *const u16, szobjectname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetObjectInfoW(sesid.param().abi(), dbid, objtyp, core::mem::transmute(szcontainername.unwrap_or(std::ptr::null())), core::mem::transmute(szobjectname.unwrap_or(std::ptr::null())), pvresult, cbmax, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetRecordPosition(sesid: P0, tableid: P1, precpos: *mut JET_RECPOS, cbrecpos: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetRecordPosition(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *mut JET_RECPOS, cbrecpos : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetRecordPosition(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *mut JET_RECPOS, cbrecpos : u32) -> i32); JetGetRecordPosition(sesid.param().abi(), tableid.param().abi(), precpos, cbrecpos) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetRecordSize(sesid: P0, tableid: P1, precsize: *mut JET_RECSIZE, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetRecordSize(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetRecordSize(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE, grbit : u32) -> i32); JetGetRecordSize(sesid.param().abi(), tableid.param().abi(), precsize, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetRecordSize2(sesid: P0, tableid: P1, precsize: *mut JET_RECSIZE2, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetRecordSize2(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE2, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetRecordSize2(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precsize : *mut JET_RECSIZE2, grbit : u32) -> i32); JetGetRecordSize2(sesid.param().abi(), tableid.param().abi(), precsize, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetSecondaryIndexBookmark(sesid: P0, tableid: P1, pvsecondarykey: Option<*mut core::ffi::c_void>, cbsecondarykeymax: u32, pcbsecondarykeyactual: Option<*mut u32>, pvprimarybookmark: Option<*mut core::ffi::c_void>, cbprimarybookmarkmax: u32, pcbprimarybookmarkactual: Option<*mut u32>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetSecondaryIndexBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *mut core::ffi::c_void, cbsecondarykeymax : u32, pcbsecondarykeyactual : *mut u32, pvprimarybookmark : *mut core::ffi::c_void, cbprimarybookmarkmax : u32, pcbprimarybookmarkactual : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetSecondaryIndexBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *mut core::ffi::c_void, cbsecondarykeymax : u32, pcbsecondarykeyactual : *mut u32, pvprimarybookmark : *mut core::ffi::c_void, cbprimarybookmarkmax : u32, pcbprimarybookmarkactual : *mut u32, grbit : u32) -> i32); JetGetSecondaryIndexBookmark(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pvsecondarykey.unwrap_or(std::ptr::null_mut())), cbsecondarykeymax, core::mem::transmute(pcbsecondarykeyactual.unwrap_or(std::ptr::null_mut())), core::mem::transmute(pvprimarybookmark.unwrap_or(std::ptr::null_mut())), cbprimarybookmarkmax, core::mem::transmute(pcbprimarybookmarkactual.unwrap_or(std::ptr::null_mut())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetSessionParameter(sesid: P0, sesparamid: u32, pvparam: &mut [u8], pcbparamactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetSessionParameter(sesid : super::StructuredStorage:: JET_SESID, sesparamid : u32, pvparam : *mut core::ffi::c_void, cbparammax : u32, pcbparamactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetSessionParameter(sesid : JET_SESID, sesparamid : u32, pvparam : *mut core::ffi::c_void, cbparammax : u32, pcbparamactual : *mut u32) -> i32); JetGetSessionParameter(sesid.param().abi(), sesparamid, core::mem::transmute(pvparam.as_ptr()), pvparam.len().try_into().unwrap(), core::mem::transmute(pcbparamactual.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetSystemParameterA(instance: P0, sesid: P1, paramid: u32, plparam: Option<*mut super::StructuredStorage::JET_API_PTR>, szparam: Option<&mut [u8]>) -> i32 where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterA(instance : super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut i8, cbmax : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterA(instance : JET_INSTANCE, sesid : JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut i8, cbmax : u32) -> i32); JetGetSystemParameterA(instance.param().abi(), sesid.param().abi(), paramid, core::mem::transmute(plparam.unwrap_or(std::ptr::null_mut())), core::mem::transmute(szparam.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), szparam.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetSystemParameterW(instance: P0, sesid: P1, paramid: u32, plparam: Option<*mut super::StructuredStorage::JET_API_PTR>, szparam: Option<*mut u16>, cbmax: u32) -> i32 where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterW(instance : super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut u16, cbmax : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetSystemParameterW(instance : JET_INSTANCE, sesid : JET_SESID, paramid : u32, plparam : *mut super::StructuredStorage:: JET_API_PTR, szparam : *mut u16, cbmax : u32) -> i32); JetGetSystemParameterW(instance.param().abi(), sesid.param().abi(), paramid, core::mem::transmute(plparam.unwrap_or(std::ptr::null_mut())), core::mem::transmute(szparam.unwrap_or(std::ptr::null_mut())), cbmax) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTableColumnInfoA(sesid: P0, tableid: P1, szcolumnname: Option<*const i8>, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const i8, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetTableColumnInfoA(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szcolumnname.unwrap_or(std::ptr::null())), pvresult, cbmax, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTableColumnInfoW(sesid: P0, tableid: P1, szcolumnname: Option<*const u16>, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTableColumnInfoW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szcolumnname : *const u16, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetTableColumnInfoW(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szcolumnname.unwrap_or(std::ptr::null())), pvresult, cbmax, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTableIndexInfoA(sesid: P0, tableid: P1, szindexname: Option<*const i8>, pvresult: *mut core::ffi::c_void, cbresult: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); JetGetTableIndexInfoA(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), pvresult, cbresult, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTableIndexInfoW(sesid: P0, tableid: P1, szindexname: Option<*const u16>, pvresult: *mut core::ffi::c_void, cbresult: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTableIndexInfoW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pvresult : *mut core::ffi::c_void, cbresult : u32, infolevel : u32) -> i32); JetGetTableIndexInfoW(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), pvresult, cbresult, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTableInfoA(sesid: P0, tableid: P1, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTableInfoA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTableInfoA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetTableInfoA(sesid.param().abi(), tableid.param().abi(), pvresult, cbmax, infolevel) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTableInfoW(sesid: P0, tableid: P1, pvresult: *mut core::ffi::c_void, cbmax: u32, infolevel: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTableInfoW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTableInfoW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvresult : *mut core::ffi::c_void, cbmax : u32, infolevel : u32) -> i32); JetGetTableInfoW(sesid.param().abi(), tableid.param().abi(), pvresult, cbmax, infolevel) } #[inline] @@ -1132,142 +1073,133 @@ pub unsafe fn JetGetThreadStats(pvresult: *mut core::ffi::c_void, cbmax: u32) -> windows_targets::link!("esent.dll" "system" fn JetGetThreadStats(pvresult : *mut core::ffi::c_void, cbmax : u32) -> i32); JetGetThreadStats(pvresult, cbmax) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTruncateLogInfoInstanceA(instance: P0, szzlogs: Option<&mut [u8]>, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceA(instance : JET_INSTANCE, szzlogs : *mut i8, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetTruncateLogInfoInstanceA(instance.param().abi(), core::mem::transmute(szzlogs.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), szzlogs.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetTruncateLogInfoInstanceW(instance: P0, wszzlogs: Option<*mut u16>, cbmax: u32, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetTruncateLogInfoInstanceW(instance : JET_INSTANCE, wszzlogs : *mut u16, cbmax : u32, pcbactual : *mut u32) -> i32); JetGetTruncateLogInfoInstanceW(instance.param().abi(), core::mem::transmute(wszzlogs.unwrap_or(std::ptr::null_mut())), cbmax, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGetVersion(sesid: P0, pwversion: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGetVersion(sesid : super::StructuredStorage:: JET_SESID, pwversion : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGetVersion(sesid : JET_SESID, pwversion : *mut u32) -> i32); JetGetVersion(sesid.param().abi(), pwversion) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGotoBookmark(sesid: P0, tableid: P1, pvbookmark: *const core::ffi::c_void, cbbookmark: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGotoBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *const core::ffi::c_void, cbbookmark : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGotoBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *const core::ffi::c_void, cbbookmark : u32) -> i32); JetGotoBookmark(sesid.param().abi(), tableid.param().abi(), pvbookmark, cbbookmark) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGotoPosition(sesid: P0, tableid: P1, precpos: *const JET_RECPOS) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGotoPosition(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *const JET_RECPOS) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGotoPosition(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, precpos : *const JET_RECPOS) -> i32); JetGotoPosition(sesid.param().abi(), tableid.param().abi(), precpos) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGotoSecondaryIndexBookmark(sesid: P0, tableid: P1, pvsecondarykey: *const core::ffi::c_void, cbsecondarykey: u32, pvprimarybookmark: Option<*const core::ffi::c_void>, cbprimarybookmark: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGotoSecondaryIndexBookmark(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *const core::ffi::c_void, cbsecondarykey : u32, pvprimarybookmark : *const core::ffi::c_void, cbprimarybookmark : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGotoSecondaryIndexBookmark(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvsecondarykey : *const core::ffi::c_void, cbsecondarykey : u32, pvprimarybookmark : *const core::ffi::c_void, cbprimarybookmark : u32, grbit : u32) -> i32); JetGotoSecondaryIndexBookmark(sesid.param().abi(), tableid.param().abi(), pvsecondarykey, cbsecondarykey, core::mem::transmute(pvprimarybookmark.unwrap_or(std::ptr::null())), cbprimarybookmark, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetGrowDatabase(sesid: P0, dbid: u32, cpg: u32, pcpgreal: *const u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetGrowDatabase(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, cpg : u32, pcpgreal : *const u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetGrowDatabase(sesid : JET_SESID, dbid : u32, cpg : u32, pcpgreal : *const u32) -> i32); JetGrowDatabase(sesid.param().abi(), dbid, cpg, pcpgreal) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetIdle(sesid: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetIdle(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetIdle(sesid : JET_SESID, grbit : u32) -> i32); JetIdle(sesid.param().abi(), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetIndexRecordCount(sesid: P0, tableid: P1, pcrec: *mut u32, crecmax: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetIndexRecordCount(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pcrec : *mut u32, crecmax : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetIndexRecordCount(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pcrec : *mut u32, crecmax : u32) -> i32); JetIndexRecordCount(sesid.param().abi(), tableid.param().abi(), pcrec, crecmax) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetInit(pinstance: Option<*mut super::StructuredStorage::JET_INSTANCE>) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetInit(pinstance : *mut super::StructuredStorage:: JET_INSTANCE) -> i32); +pub unsafe fn JetInit(pinstance: Option<*mut JET_INSTANCE>) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetInit(pinstance : *mut JET_INSTANCE) -> i32); JetInit(core::mem::transmute(pinstance.unwrap_or(std::ptr::null_mut()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetInit2(pinstance: Option<*mut super::StructuredStorage::JET_INSTANCE>, grbit: u32) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetInit2(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); +pub unsafe fn JetInit2(pinstance: Option<*mut JET_INSTANCE>, grbit: u32) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetInit2(pinstance : *mut JET_INSTANCE, grbit : u32) -> i32); JetInit2(core::mem::transmute(pinstance.unwrap_or(std::ptr::null_mut())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetInit3A(pinstance: Option<*mut super::StructuredStorage::JET_INSTANCE>, prstinfo: Option<*const JET_RSTINFO_A>, grbit: u32) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetInit3A(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, prstinfo : *const JET_RSTINFO_A, grbit : u32) -> i32); +pub unsafe fn JetInit3A(pinstance: Option<*mut JET_INSTANCE>, prstinfo: Option<*const JET_RSTINFO_A>, grbit: u32) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetInit3A(pinstance : *mut JET_INSTANCE, prstinfo : *const JET_RSTINFO_A, grbit : u32) -> i32); JetInit3A(core::mem::transmute(pinstance.unwrap_or(std::ptr::null_mut())), core::mem::transmute(prstinfo.unwrap_or(std::ptr::null())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetInit3W(pinstance: Option<*mut super::StructuredStorage::JET_INSTANCE>, prstinfo: Option<*const JET_RSTINFO_W>, grbit: u32) -> i32 { - windows_targets::link!("esent.dll" "system" fn JetInit3W(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, prstinfo : *const JET_RSTINFO_W, grbit : u32) -> i32); +pub unsafe fn JetInit3W(pinstance: Option<*mut JET_INSTANCE>, prstinfo: Option<*const JET_RSTINFO_W>, grbit: u32) -> i32 { + windows_targets::link!("esent.dll" "system" fn JetInit3W(pinstance : *mut JET_INSTANCE, prstinfo : *const JET_RSTINFO_W, grbit : u32) -> i32); JetInit3W(core::mem::transmute(pinstance.unwrap_or(std::ptr::null_mut())), core::mem::transmute(prstinfo.unwrap_or(std::ptr::null())), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetIntersectIndexes(sesid: P0, rgindexrange: &[JET_INDEXRANGE], precordlist: *mut JET_RECORDLIST, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetIntersectIndexes(sesid : super::StructuredStorage:: JET_SESID, rgindexrange : *const JET_INDEXRANGE, cindexrange : u32, precordlist : *mut JET_RECORDLIST, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetIntersectIndexes(sesid : JET_SESID, rgindexrange : *const JET_INDEXRANGE, cindexrange : u32, precordlist : *mut JET_RECORDLIST, grbit : u32) -> i32); JetIntersectIndexes(sesid.param().abi(), core::mem::transmute(rgindexrange.as_ptr()), rgindexrange.len().try_into().unwrap(), precordlist, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetMakeKey(sesid: P0, tableid: P1, pvdata: Option<*const core::ffi::c_void>, cbdata: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetMakeKey(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetMakeKey(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); JetMakeKey(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pvdata.unwrap_or(std::ptr::null())), cbdata, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetMove(sesid: P0, tableid: P1, crow: i32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetMove(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, crow : i32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetMove(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, crow : i32, grbit : u32) -> i32); JetMove(sesid.param().abi(), tableid.param().abi(), crow, grbit) } #[inline] @@ -1327,14 +1259,13 @@ pub unsafe fn JetOSSnapshotPrepare(psnapid: *mut JET_OSSNAPID, grbit: u32) -> i3 windows_targets::link!("esent.dll" "system" fn JetOSSnapshotPrepare(psnapid : *mut JET_OSSNAPID, grbit : u32) -> i32); JetOSSnapshotPrepare(psnapid, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOSSnapshotPrepareInstance(snapid: P0, instance: P1, grbit: u32) -> i32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOSSnapshotPrepareInstance(snapid : JET_OSSNAPID, instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOSSnapshotPrepareInstance(snapid : JET_OSSNAPID, instance : JET_INSTANCE, grbit : u32) -> i32); JetOSSnapshotPrepareInstance(snapid.param().abi(), instance.param().abi(), grbit) } #[inline] @@ -1353,32 +1284,29 @@ where windows_targets::link!("esent.dll" "system" fn JetOSSnapshotTruncateLog(snapid : JET_OSSNAPID, grbit : u32) -> i32); JetOSSnapshotTruncateLog(snapid.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOSSnapshotTruncateLogInstance(snapid: P0, instance: P1, grbit: u32) -> i32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOSSnapshotTruncateLogInstance(snapid : JET_OSSNAPID, instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOSSnapshotTruncateLogInstance(snapid : JET_OSSNAPID, instance : JET_INSTANCE, grbit : u32) -> i32); JetOSSnapshotTruncateLogInstance(snapid.param().abi(), instance.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenDatabaseA(sesid: P0, szfilename: *const i8, szconnect: Option<*const i8>, pdbid: *mut u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseA(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseA(sesid : JET_SESID, szfilename : *const i8, szconnect : *const i8, pdbid : *mut u32, grbit : u32) -> i32); JetOpenDatabaseA(sesid.param().abi(), szfilename, core::mem::transmute(szconnect.unwrap_or(std::ptr::null())), pdbid, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenDatabaseW(sesid: P0, szfilename: *const u16, szconnect: Option<*const u16>, pdbid: *mut u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseW(sesid : super::StructuredStorage:: JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenDatabaseW(sesid : JET_SESID, szfilename : *const u16, szconnect : *const u16, pdbid : *mut u32, grbit : u32) -> i32); JetOpenDatabaseW(sesid.param().abi(), szfilename, core::mem::transmute(szconnect.unwrap_or(std::ptr::null())), pdbid, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] @@ -1391,18 +1319,18 @@ pub unsafe fn JetOpenFileA(szfilename: *const i8, phffile: *mut super::Structure #[inline] pub unsafe fn JetOpenFileInstanceA(instance: P0, szfilename: *const i8, phffile: *mut super::StructuredStorage::JET_HANDLE, pulfilesizelow: *mut u32, pulfilesizehigh: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, szfilename : *const i8, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceA(instance : JET_INSTANCE, szfilename : *const i8, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); JetOpenFileInstanceA(instance.param().abi(), szfilename, phffile, pulfilesizelow, pulfilesizehigh) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenFileInstanceW(instance: P0, szfilename: *const u16, phffile: *mut super::StructuredStorage::JET_HANDLE, pulfilesizelow: *mut u32, pulfilesizehigh: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, szfilename : *const u16, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenFileInstanceW(instance : JET_INSTANCE, szfilename : *const u16, phffile : *mut super::StructuredStorage:: JET_HANDLE, pulfilesizelow : *mut u32, pulfilesizehigh : *mut u32) -> i32); JetOpenFileInstanceW(instance.param().abi(), szfilename, phffile, pulfilesizelow, pulfilesizehigh) } #[cfg(feature = "Win32_Storage_StructuredStorage")] @@ -1415,93 +1343,93 @@ pub unsafe fn JetOpenFileW(szfilename: *const u16, phffile: *mut super::Structur #[inline] pub unsafe fn JetOpenTableA(sesid: P0, dbid: u32, sztablename: *const i8, pvparameters: Option<*const core::ffi::c_void>, cbparameters: u32, grbit: u32, ptableid: *mut super::StructuredStorage::JET_TABLEID) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenTableA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); JetOpenTableA(sesid.param().abi(), dbid, sztablename, core::mem::transmute(pvparameters.unwrap_or(std::ptr::null())), cbparameters, grbit, ptableid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenTableW(sesid: P0, dbid: u32, sztablename: *const u16, pvparameters: Option<*const core::ffi::c_void>, cbparameters: u32, grbit: u32, ptableid: *mut super::StructuredStorage::JET_TABLEID) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenTableW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, pvparameters : *const core::ffi::c_void, cbparameters : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID) -> i32); JetOpenTableW(sesid.param().abi(), dbid, sztablename, core::mem::transmute(pvparameters.unwrap_or(std::ptr::null())), cbparameters, grbit, ptableid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenTempTable(sesid: P0, prgcolumndef: *const JET_COLUMNDEF, ccolumn: u32, grbit: u32, ptableid: *mut super::StructuredStorage::JET_TABLEID, prgcolumnid: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenTempTable(sesid : super::StructuredStorage:: JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenTempTable(sesid : JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); JetOpenTempTable(sesid.param().abi(), prgcolumndef, ccolumn, grbit, ptableid, prgcolumnid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenTempTable2(sesid: P0, prgcolumndef: *const JET_COLUMNDEF, ccolumn: u32, lcid: u32, grbit: u32, ptableid: *mut super::StructuredStorage::JET_TABLEID, prgcolumnid: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenTempTable2(sesid : super::StructuredStorage:: JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, lcid : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenTempTable2(sesid : JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, lcid : u32, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); JetOpenTempTable2(sesid.param().abi(), prgcolumndef, ccolumn, lcid, grbit, ptableid, prgcolumnid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenTempTable3(sesid: P0, prgcolumndef: *const JET_COLUMNDEF, ccolumn: u32, pidxunicode: Option<*const JET_UNICODEINDEX>, grbit: u32, ptableid: *mut super::StructuredStorage::JET_TABLEID, prgcolumnid: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenTempTable3(sesid : super::StructuredStorage:: JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, pidxunicode : *const JET_UNICODEINDEX, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenTempTable3(sesid : JET_SESID, prgcolumndef : *const JET_COLUMNDEF, ccolumn : u32, pidxunicode : *const JET_UNICODEINDEX, grbit : u32, ptableid : *mut super::StructuredStorage:: JET_TABLEID, prgcolumnid : *mut u32) -> i32); JetOpenTempTable3(sesid.param().abi(), prgcolumndef, ccolumn, core::mem::transmute(pidxunicode.unwrap_or(std::ptr::null())), grbit, ptableid, prgcolumnid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenTemporaryTable(sesid: P0, popentemporarytable: *const JET_OPENTEMPORARYTABLE) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable(sesid : super::StructuredStorage:: JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable(sesid : JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE) -> i32); JetOpenTemporaryTable(sesid.param().abi(), popentemporarytable) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetOpenTemporaryTable2(sesid: P0, popentemporarytable: *const JET_OPENTEMPORARYTABLE2) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable2(sesid : super::StructuredStorage:: JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE2) -> i32); + windows_targets::link!("esent.dll" "system" fn JetOpenTemporaryTable2(sesid : JET_SESID, popentemporarytable : *const JET_OPENTEMPORARYTABLE2) -> i32); JetOpenTemporaryTable2(sesid.param().abi(), popentemporarytable) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetPrepareUpdate(sesid: P0, tableid: P1, prep: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetPrepareUpdate(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, prep : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetPrepareUpdate(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, prep : u32) -> i32); JetPrepareUpdate(sesid.param().abi(), tableid.param().abi(), prep) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetPrereadIndexRanges(sesid: P0, tableid: P1, rgindexranges: &[JET_INDEX_RANGE], pcrangespreread: Option<*mut u32>, rgcolumnidpreread: &[u32], grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetPrereadIndexRanges(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgindexranges : *const JET_INDEX_RANGE, cindexranges : u32, pcrangespreread : *mut u32, rgcolumnidpreread : *const u32, ccolumnidpreread : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetPrereadIndexRanges(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgindexranges : *const JET_INDEX_RANGE, cindexranges : u32, pcrangespreread : *mut u32, rgcolumnidpreread : *const u32, ccolumnidpreread : u32, grbit : u32) -> i32); JetPrereadIndexRanges(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(rgindexranges.as_ptr()), rgindexranges.len().try_into().unwrap(), core::mem::transmute(pcrangespreread.unwrap_or(std::ptr::null_mut())), core::mem::transmute(rgcolumnidpreread.as_ptr()), rgcolumnidpreread.len().try_into().unwrap(), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetPrereadKeys(sesid: P0, tableid: P1, rgpvkeys: *const *const core::ffi::c_void, rgcbkeys: *const u32, ckeys: i32, pckeyspreread: Option<*mut i32>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetPrereadKeys(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgpvkeys : *const *const core::ffi::c_void, rgcbkeys : *const u32, ckeys : i32, pckeyspreread : *mut i32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetPrereadKeys(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgpvkeys : *const *const core::ffi::c_void, rgcbkeys : *const u32, ckeys : i32, pckeyspreread : *mut i32, grbit : u32) -> i32); JetPrereadKeys(sesid.param().abi(), tableid.param().abi(), rgpvkeys, rgcbkeys, ckeys, core::mem::transmute(pckeyspreread.unwrap_or(std::ptr::null_mut())), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] @@ -1517,125 +1445,115 @@ where #[inline] pub unsafe fn JetReadFileInstance(instance: P0, hffile: P1, pv: *mut core::ffi::c_void, cb: u32, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetReadFileInstance(instance : super::StructuredStorage:: JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE, pv : *mut core::ffi::c_void, cb : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetReadFileInstance(instance : JET_INSTANCE, hffile : super::StructuredStorage:: JET_HANDLE, pv : *mut core::ffi::c_void, cb : u32, pcbactual : *mut u32) -> i32); JetReadFileInstance(instance.param().abi(), hffile.param().abi(), pv, cb, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRegisterCallback(sesid: P0, tableid: P1, cbtyp: u32, pcallback: JET_CALLBACK, pvcontext: Option<*const core::ffi::c_void>, phcallbackid: *const super::StructuredStorage::JET_HANDLE) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRegisterCallback(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, pcallback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, phcallbackid : *const super::StructuredStorage:: JET_HANDLE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRegisterCallback(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, pcallback : JET_CALLBACK, pvcontext : *const core::ffi::c_void, phcallbackid : *const super::StructuredStorage:: JET_HANDLE) -> i32); JetRegisterCallback(sesid.param().abi(), tableid.param().abi(), cbtyp, pcallback, core::mem::transmute(pvcontext.unwrap_or(std::ptr::null())), phcallbackid) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRenameColumnA(sesid: P0, tableid: P1, szname: *const i8, sznamenew: *const i8, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRenameColumnA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const i8, sznamenew : *const i8, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRenameColumnA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const i8, sznamenew : *const i8, grbit : u32) -> i32); JetRenameColumnA(sesid.param().abi(), tableid.param().abi(), szname, sznamenew, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRenameColumnW(sesid: P0, tableid: P1, szname: *const u16, sznamenew: *const u16, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRenameColumnW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const u16, sznamenew : *const u16, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRenameColumnW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szname : *const u16, sznamenew : *const u16, grbit : u32) -> i32); JetRenameColumnW(sesid.param().abi(), tableid.param().abi(), szname, sznamenew, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRenameTableA(sesid: P0, dbid: u32, szname: *const i8, sznamenew: *const i8) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRenameTableA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, szname : *const i8, sznamenew : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRenameTableA(sesid : JET_SESID, dbid : u32, szname : *const i8, sznamenew : *const i8) -> i32); JetRenameTableA(sesid.param().abi(), dbid, szname, sznamenew) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRenameTableW(sesid: P0, dbid: u32, szname: *const u16, sznamenew: *const u16) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRenameTableW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, szname : *const u16, sznamenew : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRenameTableW(sesid : JET_SESID, dbid : u32, szname : *const u16, sznamenew : *const u16) -> i32); JetRenameTableW(sesid.param().abi(), dbid, szname, sznamenew) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetResetSessionContext(sesid: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetResetSessionContext(sesid : super::StructuredStorage:: JET_SESID) -> i32); + windows_targets::link!("esent.dll" "system" fn JetResetSessionContext(sesid : JET_SESID) -> i32); JetResetSessionContext(sesid.param().abi()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetResetTableSequential(sesid: P0, tableid: P1, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetResetTableSequential(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetResetTableSequential(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); JetResetTableSequential(sesid.param().abi(), tableid.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetResizeDatabase(sesid: P0, dbid: u32, cpgtarget: u32, pcpgactual: *mut u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetResizeDatabase(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, cpgtarget : u32, pcpgactual : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetResizeDatabase(sesid : JET_SESID, dbid : u32, cpgtarget : u32, pcpgactual : *mut u32, grbit : u32) -> i32); JetResizeDatabase(sesid.param().abi(), dbid, cpgtarget, pcpgactual, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRestore2A(sz: *const i8, szdest: Option<*const i8>, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetRestore2A(sz : *const i8, szdest : *const i8, pfn : JET_PFNSTATUS) -> i32); JetRestore2A(sz, core::mem::transmute(szdest.unwrap_or(std::ptr::null())), pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRestore2W(sz: *const u16, szdest: Option<*const u16>, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetRestore2W(sz : *const u16, szdest : *const u16, pfn : JET_PFNSTATUS) -> i32); JetRestore2W(sz, core::mem::transmute(szdest.unwrap_or(std::ptr::null())), pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRestoreA(szsource: *const i8, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetRestoreA(szsource : *const i8, pfn : JET_PFNSTATUS) -> i32); JetRestoreA(szsource, pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRestoreInstanceA(instance: P0, sz: *const i8, szdest: Option<*const i8>, pfn: JET_PFNSTATUS) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceA(instance : super::StructuredStorage:: JET_INSTANCE, sz : *const i8, szdest : *const i8, pfn : JET_PFNSTATUS) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceA(instance : JET_INSTANCE, sz : *const i8, szdest : *const i8, pfn : JET_PFNSTATUS) -> i32); JetRestoreInstanceA(instance.param().abi(), sz, core::mem::transmute(szdest.unwrap_or(std::ptr::null())), pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRestoreInstanceW(instance: P0, sz: *const u16, szdest: Option<*const u16>, pfn: JET_PFNSTATUS) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceW(instance : super::StructuredStorage:: JET_INSTANCE, sz : *const u16, szdest : *const u16, pfn : JET_PFNSTATUS) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRestoreInstanceW(instance : JET_INSTANCE, sz : *const u16, szdest : *const u16, pfn : JET_PFNSTATUS) -> i32); JetRestoreInstanceW(instance.param().abi(), sz, core::mem::transmute(szdest.unwrap_or(std::ptr::null())), pfn) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRestoreW(szsource: *const u16, pfn: JET_PFNSTATUS) -> i32 { windows_targets::link!("esent.dll" "system" fn JetRestoreW(szsource : *const u16, pfn : JET_PFNSTATUS) -> i32); @@ -1645,265 +1563,259 @@ pub unsafe fn JetRestoreW(szsource: *const u16, pfn: JET_PFNSTATUS) -> i32 { #[inline] pub unsafe fn JetRetrieveColumn(sesid: P0, tableid: P1, columnid: u32, pvdata: Option<*mut core::ffi::c_void>, cbdata: u32, pcbactual: Option<*mut u32>, grbit: u32, pretinfo: Option<*mut JET_RETINFO>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRetrieveColumn(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *mut core::ffi::c_void, cbdata : u32, pcbactual : *mut u32, grbit : u32, pretinfo : *mut JET_RETINFO) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRetrieveColumn(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *mut core::ffi::c_void, cbdata : u32, pcbactual : *mut u32, grbit : u32, pretinfo : *mut JET_RETINFO) -> i32); JetRetrieveColumn(sesid.param().abi(), tableid.param().abi(), columnid, core::mem::transmute(pvdata.unwrap_or(std::ptr::null_mut())), cbdata, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut())), grbit, core::mem::transmute(pretinfo.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRetrieveColumns(sesid: P0, tableid: P1, pretrievecolumn: Option<&mut [JET_RETRIEVECOLUMN]>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRetrieveColumns(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pretrievecolumn : *mut JET_RETRIEVECOLUMN, cretrievecolumn : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRetrieveColumns(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pretrievecolumn : *mut JET_RETRIEVECOLUMN, cretrievecolumn : u32) -> i32); JetRetrieveColumns(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pretrievecolumn.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pretrievecolumn.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRetrieveKey(sesid: P0, tableid: P1, pvkey: Option<*mut core::ffi::c_void>, cbmax: u32, pcbactual: Option<*mut u32>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRetrieveKey(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvkey : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRetrieveKey(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvkey : *mut core::ffi::c_void, cbmax : u32, pcbactual : *mut u32, grbit : u32) -> i32); JetRetrieveKey(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pvkey.unwrap_or(std::ptr::null_mut())), cbmax, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut())), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetRollback(sesid: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetRollback(sesid : super::StructuredStorage:: JET_SESID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetRollback(sesid : JET_SESID, grbit : u32) -> i32); JetRollback(sesid.param().abi(), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSeek(sesid: P0, tableid: P1, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSeek(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSeek(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); JetSeek(sesid.param().abi(), tableid.param().abi(), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetColumn(sesid: P0, tableid: P1, columnid: u32, pvdata: Option<*const core::ffi::c_void>, cbdata: u32, grbit: u32, psetinfo: Option<*const JET_SETINFO>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetColumn(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32, psetinfo : *const JET_SETINFO) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetColumn(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, columnid : u32, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32, psetinfo : *const JET_SETINFO) -> i32); JetSetColumn(sesid.param().abi(), tableid.param().abi(), columnid, core::mem::transmute(pvdata.unwrap_or(std::ptr::null())), cbdata, grbit, core::mem::transmute(psetinfo.unwrap_or(std::ptr::null()))) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetColumnDefaultValueA(sesid: P0, dbid: u32, sztablename: *const i8, szcolumnname: *const i8, pvdata: *const core::ffi::c_void, cbdata: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueA(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const i8, szcolumnname : *const i8, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueA(sesid : JET_SESID, dbid : u32, sztablename : *const i8, szcolumnname : *const i8, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); JetSetColumnDefaultValueA(sesid.param().abi(), dbid, sztablename, szcolumnname, pvdata, cbdata, grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetColumnDefaultValueW(sesid: P0, dbid: u32, sztablename: *const u16, szcolumnname: *const u16, pvdata: *const core::ffi::c_void, cbdata: u32, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueW(sesid : super::StructuredStorage:: JET_SESID, dbid : u32, sztablename : *const u16, szcolumnname : *const u16, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetColumnDefaultValueW(sesid : JET_SESID, dbid : u32, sztablename : *const u16, szcolumnname : *const u16, pvdata : *const core::ffi::c_void, cbdata : u32, grbit : u32) -> i32); JetSetColumnDefaultValueW(sesid.param().abi(), dbid, sztablename, szcolumnname, pvdata, cbdata, grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetColumns(sesid: P0, tableid: P1, psetcolumn: Option<&[JET_SETCOLUMN]>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetColumns(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, psetcolumn : *const JET_SETCOLUMN, csetcolumn : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetColumns(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, psetcolumn : *const JET_SETCOLUMN, csetcolumn : u32) -> i32); JetSetColumns(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(psetcolumn.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), psetcolumn.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndex2A(sesid: P0, tableid: P1, szindexname: Option<*const i8>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32) -> i32); JetSetCurrentIndex2A(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndex2W(sesid: P0, tableid: P1, szindexname: Option<*const u16>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex2W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32) -> i32); JetSetCurrentIndex2W(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndex3A(sesid: P0, tableid: P1, szindexname: Option<*const i8>, grbit: u32, itagsequence: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, itagsequence : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, grbit : u32, itagsequence : u32) -> i32); JetSetCurrentIndex3A(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), grbit, itagsequence) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndex3W(sesid: P0, tableid: P1, szindexname: Option<*const u16>, grbit: u32, itagsequence: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, itagsequence : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex3W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, grbit : u32, itagsequence : u32) -> i32); JetSetCurrentIndex3W(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), grbit, itagsequence) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndex4A(sesid: P0, tableid: P1, szindexname: Option<*const i8>, pindexid: Option<*const JET_INDEXID>, grbit: u32, itagsequence: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4A(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4A(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); JetSetCurrentIndex4A(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), core::mem::transmute(pindexid.unwrap_or(std::ptr::null())), grbit, itagsequence) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndex4W(sesid: P0, tableid: P1, szindexname: Option<*const u16>, pindexid: Option<*const JET_INDEXID>, grbit: u32, itagsequence: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4W(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndex4W(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16, pindexid : *const JET_INDEXID, grbit : u32, itagsequence : u32) -> i32); JetSetCurrentIndex4W(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null())), core::mem::transmute(pindexid.unwrap_or(std::ptr::null())), grbit, itagsequence) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndexA(sesid: P0, tableid: P1, szindexname: Option<*const i8>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexA(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexA(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const i8) -> i32); JetSetCurrentIndexA(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCurrentIndexW(sesid: P0, tableid: P1, szindexname: Option<*const u16>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexW(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCurrentIndexW(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, szindexname : *const u16) -> i32); JetSetCurrentIndexW(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(szindexname.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetCursorFilter(sesid: P0, tableid: P1, rgcolumnfilters: &[JET_INDEX_COLUMN], grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetCursorFilter(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgcolumnfilters : *const JET_INDEX_COLUMN, ccolumnfilters : u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetCursorFilter(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, rgcolumnfilters : *const JET_INDEX_COLUMN, ccolumnfilters : u32, grbit : u32) -> i32); JetSetCursorFilter(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(rgcolumnfilters.as_ptr()), rgcolumnfilters.len().try_into().unwrap(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetDatabaseSizeA(sesid: P0, szdatabasename: *const i8, cpg: u32, pcpgreal: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeA(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const i8, cpg : u32, pcpgreal : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeA(sesid : JET_SESID, szdatabasename : *const i8, cpg : u32, pcpgreal : *mut u32) -> i32); JetSetDatabaseSizeA(sesid.param().abi(), szdatabasename, cpg, pcpgreal) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetDatabaseSizeW(sesid: P0, szdatabasename: *const u16, cpg: u32, pcpgreal: *mut u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeW(sesid : super::StructuredStorage:: JET_SESID, szdatabasename : *const u16, cpg : u32, pcpgreal : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetDatabaseSizeW(sesid : JET_SESID, szdatabasename : *const u16, cpg : u32, pcpgreal : *mut u32) -> i32); JetSetDatabaseSizeW(sesid.param().abi(), szdatabasename, cpg, pcpgreal) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetIndexRange(sesid: P0, tableidsrc: P1, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetIndexRange(sesid : super::StructuredStorage:: JET_SESID, tableidsrc : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetIndexRange(sesid : JET_SESID, tableidsrc : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); JetSetIndexRange(sesid.param().abi(), tableidsrc.param().abi(), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetLS(sesid: P0, tableid: P1, ls: P2, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetLS(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ls : JET_LS, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetLS(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, ls : JET_LS, grbit : u32) -> i32); JetSetLS(sesid.param().abi(), tableid.param().abi(), ls.param().abi(), grbit) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetSessionContext(sesid: P0, ulcontext: P1) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetSessionContext(sesid : super::StructuredStorage:: JET_SESID, ulcontext : super::StructuredStorage:: JET_API_PTR) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetSessionContext(sesid : JET_SESID, ulcontext : super::StructuredStorage:: JET_API_PTR) -> i32); JetSetSessionContext(sesid.param().abi(), ulcontext.param().abi()) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetSessionParameter(sesid: P0, sesparamid: u32, pvparam: Option<*const core::ffi::c_void>, cbparam: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetSessionParameter(sesid : super::StructuredStorage:: JET_SESID, sesparamid : u32, pvparam : *const core::ffi::c_void, cbparam : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetSessionParameter(sesid : JET_SESID, sesparamid : u32, pvparam : *const core::ffi::c_void, cbparam : u32) -> i32); JetSetSessionParameter(sesid.param().abi(), sesparamid, core::mem::transmute(pvparam.unwrap_or(std::ptr::null())), cbparam) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetSetSystemParameterA(pinstance: Option<*mut super::StructuredStorage::JET_INSTANCE>, sesid: P0, paramid: u32, lparam: P1, szparam: Option<*const i8>) -> i32 +pub unsafe fn JetSetSystemParameterA(pinstance: Option<*mut JET_INSTANCE>, sesid: P0, paramid: u32, lparam: P1, szparam: Option<*const i8>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterA(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const i8) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterA(pinstance : *mut JET_INSTANCE, sesid : JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const i8) -> i32); JetSetSystemParameterA(core::mem::transmute(pinstance.unwrap_or(std::ptr::null_mut())), sesid.param().abi(), paramid, lparam.param().abi(), core::mem::transmute(szparam.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] -pub unsafe fn JetSetSystemParameterW(pinstance: Option<*mut super::StructuredStorage::JET_INSTANCE>, sesid: P0, paramid: u32, lparam: P1, szparam: Option<*const u16>) -> i32 +pub unsafe fn JetSetSystemParameterW(pinstance: Option<*mut JET_INSTANCE>, sesid: P0, paramid: u32, lparam: P1, szparam: Option<*const u16>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterW(pinstance : *mut super::StructuredStorage:: JET_INSTANCE, sesid : super::StructuredStorage:: JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const u16) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetSystemParameterW(pinstance : *mut JET_INSTANCE, sesid : JET_SESID, paramid : u32, lparam : super::StructuredStorage:: JET_API_PTR, szparam : *const u16) -> i32); JetSetSystemParameterW(core::mem::transmute(pinstance.unwrap_or(std::ptr::null_mut())), sesid.param().abi(), paramid, lparam.param().abi(), core::mem::transmute(szparam.unwrap_or(std::ptr::null()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetSetTableSequential(sesid: P0, tableid: P1, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetSetTableSequential(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetSetTableSequential(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, grbit : u32) -> i32); JetSetTableSequential(sesid.param().abi(), tableid.param().abi(), grbit) } #[inline] @@ -1911,13 +1823,12 @@ pub unsafe fn JetStopBackup() -> i32 { windows_targets::link!("esent.dll" "system" fn JetStopBackup() -> i32); JetStopBackup() } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetStopBackupInstance(instance: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetStopBackupInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetStopBackupInstance(instance : JET_INSTANCE) -> i32); JetStopBackupInstance(instance.param().abi()) } #[inline] @@ -1925,40 +1836,36 @@ pub unsafe fn JetStopService() -> i32 { windows_targets::link!("esent.dll" "system" fn JetStopService() -> i32); JetStopService() } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetStopServiceInstance(instance: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance(instance : JET_INSTANCE) -> i32); JetStopServiceInstance(instance.param().abi()) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetStopServiceInstance2(instance: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance2(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetStopServiceInstance2(instance : JET_INSTANCE, grbit : u32) -> i32); JetStopServiceInstance2(instance.param().abi(), grbit) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetTerm(instance: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetTerm(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetTerm(instance : JET_INSTANCE) -> i32); JetTerm(instance.param().abi()) } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetTerm2(instance: P0, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetTerm2(instance : super::StructuredStorage:: JET_INSTANCE, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetTerm2(instance : JET_INSTANCE, grbit : u32) -> i32); JetTerm2(instance.param().abi(), grbit) } #[inline] @@ -1966,44 +1873,43 @@ pub unsafe fn JetTruncateLog() -> i32 { windows_targets::link!("esent.dll" "system" fn JetTruncateLog() -> i32); JetTruncateLog() } -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetTruncateLogInstance(instance: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetTruncateLogInstance(instance : super::StructuredStorage:: JET_INSTANCE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetTruncateLogInstance(instance : JET_INSTANCE) -> i32); JetTruncateLogInstance(instance.param().abi()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetUnregisterCallback(sesid: P0, tableid: P1, cbtyp: u32, hcallbackid: P2) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetUnregisterCallback(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, hcallbackid : super::StructuredStorage:: JET_HANDLE) -> i32); + windows_targets::link!("esent.dll" "system" fn JetUnregisterCallback(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, cbtyp : u32, hcallbackid : super::StructuredStorage:: JET_HANDLE) -> i32); JetUnregisterCallback(sesid.param().abi(), tableid.param().abi(), cbtyp, hcallbackid.param().abi()) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetUpdate(sesid: P0, tableid: P1, pvbookmark: Option<*mut core::ffi::c_void>, cbbookmark: u32, pcbactual: Option<*mut u32>) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetUpdate(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetUpdate(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32) -> i32); JetUpdate(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pvbookmark.unwrap_or(std::ptr::null_mut())), cbbookmark, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut()))) } #[cfg(feature = "Win32_Storage_StructuredStorage")] #[inline] pub unsafe fn JetUpdate2(sesid: P0, tableid: P1, pvbookmark: Option<*mut core::ffi::c_void>, cbbookmark: u32, pcbactual: Option<*mut u32>, grbit: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("esent.dll" "system" fn JetUpdate2(sesid : super::StructuredStorage:: JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32, grbit : u32) -> i32); + windows_targets::link!("esent.dll" "system" fn JetUpdate2(sesid : JET_SESID, tableid : super::StructuredStorage:: JET_TABLEID, pvbookmark : *mut core::ffi::c_void, cbbookmark : u32, pcbactual : *mut u32, grbit : u32) -> i32); JetUpdate2(sesid.param().abi(), tableid.param().abi(), core::mem::transmute(pvbookmark.unwrap_or(std::ptr::null_mut())), cbbookmark, core::mem::transmute(pcbactual.unwrap_or(std::ptr::null_mut())), grbit) } pub const JET_BASE_NAME_LENGTH: u32 = 3u32; @@ -4152,11 +4058,35 @@ impl Default for JET_INDEX_RANGE { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct JET_INSTANCE(pub usize); +impl JET_INSTANCE { + pub fn is_invalid(&self) -> bool { + self.0 == 0 + } +} +impl windows_core::Free for JET_INSTANCE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = JetTerm(*self); + } + } +} +impl Default for JET_INSTANCE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for JET_INSTANCE { + type TypeKind = windows_core::CopyType; +} #[repr(C)] #[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct JET_INSTANCE_INFO_A { - pub hInstanceId: super::StructuredStorage::JET_INSTANCE, + pub hInstanceId: JET_INSTANCE, pub szInstanceName: windows_core::PSTR, pub cDatabases: super::StructuredStorage::JET_API_PTR, pub szDatabaseFileName: *mut *mut i8, @@ -4177,7 +4107,7 @@ impl Default for JET_INSTANCE_INFO_A { #[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct JET_INSTANCE_INFO_W { - pub hInstanceId: super::StructuredStorage::JET_INSTANCE, + pub hInstanceId: JET_INSTANCE, pub szInstanceName: windows_core::PWSTR, pub cDatabases: super::StructuredStorage::JET_API_PTR, pub szDatabaseFileName: *mut *mut u16, @@ -4698,7 +4628,6 @@ impl Default for JET_RETRIEVECOLUMN { } } #[repr(C)] -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy)] pub struct JET_RSTINFO_A { pub cbStruct: u32, @@ -4708,18 +4637,15 @@ pub struct JET_RSTINFO_A { pub logtimeStop: JET_LOGTIME, pub pfnStatus: JET_PFNSTATUS, } -#[cfg(feature = "Win32_Storage_StructuredStorage")] impl windows_core::TypeKind for JET_RSTINFO_A { type TypeKind = windows_core::CopyType; } -#[cfg(feature = "Win32_Storage_StructuredStorage")] impl Default for JET_RSTINFO_A { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] -#[cfg(feature = "Win32_Storage_StructuredStorage")] #[derive(Clone, Copy)] pub struct JET_RSTINFO_W { pub cbStruct: u32, @@ -4729,11 +4655,9 @@ pub struct JET_RSTINFO_W { pub logtimeStop: JET_LOGTIME, pub pfnStatus: JET_PFNSTATUS, } -#[cfg(feature = "Win32_Storage_StructuredStorage")] impl windows_core::TypeKind for JET_RSTINFO_W { type TypeKind = windows_core::CopyType; } -#[cfg(feature = "Win32_Storage_StructuredStorage")] impl Default for JET_RSTINFO_W { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4767,6 +4691,30 @@ impl Default for JET_RSTMAP_W { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct JET_SESID(pub usize); +impl JET_SESID { + pub fn is_invalid(&self) -> bool { + self.0 == 0 + } +} +impl windows_core::Free for JET_SESID { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = JetEndSession(*self, 0); + } + } +} +impl Default for JET_SESID { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for JET_SESID { + type TypeKind = windows_core::CopyType; +} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct JET_SETCOLUMN { @@ -5277,9 +5225,7 @@ impl Default for JET_USERDEFINEDDEFAULT_W { } } #[cfg(feature = "Win32_Storage_StructuredStorage")] -pub type JET_CALLBACK = Option i32>; -#[cfg(feature = "Win32_Storage_StructuredStorage")] -pub type JET_PFNDURABLECOMMITCALLBACK = Option i32>; +pub type JET_CALLBACK = Option i32>; +pub type JET_PFNDURABLECOMMITCALLBACK = Option i32>; pub type JET_PFNREALLOC = Option *mut core::ffi::c_void>; -#[cfg(feature = "Win32_Storage_StructuredStorage")] -pub type JET_PFNSTATUS = Option i32>; +pub type JET_PFNSTATUS = Option i32>; diff --git a/crates/libs/windows/src/Windows/Win32/Storage/Packaging/Appx/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/Packaging/Appx/mod.rs index cc06842b06..87c055a227 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/Packaging/Appx/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/Packaging/Appx/mod.rs @@ -354,13 +354,14 @@ where windows_targets::link!("kernel32.dll" "system" fn OpenPackageInfoByFullName(packagefullname : windows_core::PCWSTR, reserved : u32, packageinforeference : *mut *mut _PACKAGE_INFO_REFERENCE) -> super::super::super::Foundation:: WIN32_ERROR); OpenPackageInfoByFullName(packagefullname.param().abi(), reserved, packageinforeference) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn OpenPackageInfoByFullNameForUser(usersid: P0, packagefullname: P1, reserved: u32, packageinforeference: *mut *mut _PACKAGE_INFO_REFERENCE) -> super::super::super::Foundation::WIN32_ERROR where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn OpenPackageInfoByFullNameForUser(usersid : super::super::super::Foundation:: PSID, packagefullname : windows_core::PCWSTR, reserved : u32, packageinforeference : *mut *mut _PACKAGE_INFO_REFERENCE) -> super::super::super::Foundation:: WIN32_ERROR); + windows_targets::link!("api-ms-win-appmodel-runtime-l1-1-1.dll" "system" fn OpenPackageInfoByFullNameForUser(usersid : super::super::super::Security:: PSID, packagefullname : windows_core::PCWSTR, reserved : u32, packageinforeference : *mut *mut _PACKAGE_INFO_REFERENCE) -> super::super::super::Foundation:: WIN32_ERROR); OpenPackageInfoByFullNameForUser(usersid.param().abi(), packagefullname.param().abi(), reserved, packageinforeference) } #[inline] @@ -421,14 +422,15 @@ where windows_targets::link!("kernelbase.dll" "system" fn RemovePackageDependency(packagedependencycontext : PACKAGEDEPENDENCY_CONTEXT) -> windows_core::HRESULT); RemovePackageDependency(packagedependencycontext.param().abi()).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn TryCreatePackageDependency(user: P0, packagefamilyname: P1, minversion: PACKAGE_VERSION, packagedependencyprocessorarchitectures: PackageDependencyProcessorArchitectures, lifetimekind: PackageDependencyLifetimeKind, lifetimeartifact: P2, options: CreatePackageDependencyOptions) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("kernelbase.dll" "system" fn TryCreatePackageDependency(user : super::super::super::Foundation:: PSID, packagefamilyname : windows_core::PCWSTR, minversion : PACKAGE_VERSION, packagedependencyprocessorarchitectures : PackageDependencyProcessorArchitectures, lifetimekind : PackageDependencyLifetimeKind, lifetimeartifact : windows_core::PCWSTR, options : CreatePackageDependencyOptions, packagedependencyid : *mut windows_core::PWSTR) -> windows_core::HRESULT); + windows_targets::link!("kernelbase.dll" "system" fn TryCreatePackageDependency(user : super::super::super::Security:: PSID, packagefamilyname : windows_core::PCWSTR, minversion : PACKAGE_VERSION, packagedependencyprocessorarchitectures : PackageDependencyProcessorArchitectures, lifetimekind : PackageDependencyLifetimeKind, lifetimeartifact : windows_core::PCWSTR, options : CreatePackageDependencyOptions, packagedependencyid : *mut windows_core::PWSTR) -> windows_core::HRESULT); let mut result__ = core::mem::zeroed(); TryCreatePackageDependency(user.param().abi(), packagefamilyname.param().abi(), core::mem::transmute(minversion), packagedependencyprocessorarchitectures, lifetimekind, lifetimeartifact.param().abi(), options, &mut result__).map(|| result__) } @@ -4064,7 +4066,12 @@ pub const AppxPackageEditor: windows_core::GUID = windows_core::GUID::from_u128( pub const AppxPackagingDiagnosticEventSinkManager: windows_core::GUID = windows_core::GUID::from_u128(0x50ca0a46_1588_4161_8ed2_ef9e469ced5d); #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct PACKAGEDEPENDENCY_CONTEXT(pub isize); +pub struct PACKAGEDEPENDENCY_CONTEXT(pub *mut core::ffi::c_void); +impl PACKAGEDEPENDENCY_CONTEXT { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for PACKAGEDEPENDENCY_CONTEXT { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4204,7 +4211,12 @@ impl Default for PACKAGE_VERSION_0_0 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE(pub isize); +pub struct PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE(pub *mut core::ffi::c_void); +impl PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for PACKAGE_VIRTUALIZATION_CONTEXT_HANDLE { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs index aa9a344fc5..6a2d2dfa84 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs @@ -585,10 +585,10 @@ impl Default for PRJ_COMPLETE_COMMAND_EXTENDED_PARAMETERS_0_1 { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct PRJ_DIR_ENTRY_BUFFER_HANDLE(pub isize); +pub struct PRJ_DIR_ENTRY_BUFFER_HANDLE(pub *mut core::ffi::c_void); impl PRJ_DIR_ENTRY_BUFFER_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for PRJ_DIR_ENTRY_BUFFER_HANDLE { @@ -661,10 +661,10 @@ impl Default for PRJ_FILE_BASIC_INFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT(pub isize); +pub struct PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT(pub *mut core::ffi::c_void); impl PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for PRJ_NAMESPACE_VIRTUALIZATION_CONTEXT { diff --git a/crates/libs/windows/src/Windows/Win32/Storage/StructuredStorage/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/StructuredStorage/mod.rs index ad048257ec..464257aeef 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/StructuredStorage/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/StructuredStorage/mod.rs @@ -32,38 +32,6 @@ impl windows_core::TypeKind for JET_HANDLE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct JET_INSTANCE(pub usize); -impl JET_INSTANCE { - pub fn is_invalid(&self) -> bool { - self.0 == 0 - } -} -impl Default for JET_INSTANCE { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for JET_INSTANCE { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct JET_SESID(pub usize); -impl JET_SESID { - pub fn is_invalid(&self) -> bool { - self.0 == 0 - } -} -impl Default for JET_SESID { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for JET_SESID { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct JET_TABLEID(pub usize); impl JET_TABLEID { pub fn is_invalid(&self) -> bool { diff --git a/crates/libs/windows/src/Windows/Win32/Storage/Xps/mod.rs b/crates/libs/windows/src/Windows/Win32/Storage/Xps/mod.rs index b6e6027787..0dc34d6e30 100644 --- a/crates/libs/windows/src/Windows/Win32/Storage/Xps/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/Storage/Xps/mod.rs @@ -5259,22 +5259,6 @@ impl Default for DRAWPATRECT { unsafe { core::mem::zeroed() } } } -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPTPROVIDER(pub isize); -impl HPTPROVIDER { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HPTPROVIDER { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HPTPROVIDER { - type TypeKind = windows_core::CopyType; -} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct PSFEATURE_CUSTPAPER { diff --git a/crates/libs/windows/src/Windows/Win32/System/Antimalware/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Antimalware/mod.rs index 4afe0d0193..a74b6ec31e 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Antimalware/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Antimalware/mod.rs @@ -432,10 +432,10 @@ impl Default for AMSI_UAC_REQUEST_PACKAGED_APP_INFO { pub const CAntimalware: windows_core::GUID = windows_core::GUID::from_u128(0xfdb00e52_a214_4aa1_8fba_4357bb0072ec); #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HAMSICONTEXT(pub isize); +pub struct HAMSICONTEXT(pub *mut core::ffi::c_void); impl HAMSICONTEXT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HAMSICONTEXT { @@ -448,10 +448,10 @@ impl windows_core::TypeKind for HAMSICONTEXT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HAMSISESSION(pub isize); +pub struct HAMSISESSION(pub *mut core::ffi::c_void); impl HAMSISESSION { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HAMSISESSION { diff --git a/crates/libs/windows/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs b/crates/libs/windows/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs index 0d468dd78e..d8a236aa45 100644 --- a/crates/libs/windows/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs @@ -1,18 +1,12 @@ #[inline] -pub unsafe fn ActivateActCtx(hactctx: P0, lpcookie: *mut usize) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn ActivateActCtx(hactctx: super::super::Foundation::HANDLE, lpcookie: *mut usize) -> windows_core::Result<()> { windows_targets::link!("kernel32.dll" "system" fn ActivateActCtx(hactctx : super::super::Foundation:: HANDLE, lpcookie : *mut usize) -> super::super::Foundation:: BOOL); - ActivateActCtx(hactctx.param().abi(), lpcookie).ok() + ActivateActCtx(hactctx, lpcookie).ok() } #[inline] -pub unsafe fn AddRefActCtx(hactctx: P0) -where - P0: windows_core::Param, -{ +pub unsafe fn AddRefActCtx(hactctx: super::super::Foundation::HANDLE) { windows_targets::link!("kernel32.dll" "system" fn AddRefActCtx(hactctx : super::super::Foundation:: HANDLE)); - AddRefActCtx(hactctx.param().abi()) + AddRefActCtx(hactctx) } #[inline] pub unsafe fn ApplyDeltaA(applyflags: i64, lpsourcename: P0, lpdeltaname: P1, lptargetname: P2) -> super::super::Foundation::BOOL @@ -2769,12 +2763,9 @@ where QueryActCtxW(dwflags, hactctx.param().abi(), core::mem::transmute(pvsubinstance.unwrap_or(std::ptr::null())), ulinfoclass, core::mem::transmute(pvbuffer.unwrap_or(std::ptr::null_mut())), cbbuffer, core::mem::transmute(pcbwrittenorrequired.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] -pub unsafe fn ReleaseActCtx(hactctx: P0) -where - P0: windows_core::Param, -{ +pub unsafe fn ReleaseActCtx(hactctx: super::super::Foundation::HANDLE) { windows_targets::link!("kernel32.dll" "system" fn ReleaseActCtx(hactctx : super::super::Foundation:: HANDLE)); - ReleaseActCtx(hactctx.param().abi()) + ReleaseActCtx(hactctx) } #[inline] pub unsafe fn SfcGetNextProtectedFile(rpchandle: P0, protfiledata: *mut PROTECTED_FILE_DATA) -> windows_core::Result<()> @@ -2844,12 +2835,9 @@ where TestApplyPatchToFileW(patchfilename.param().abi(), oldfilename.param().abi(), applyoptionflags) } #[inline] -pub unsafe fn ZombifyActCtx(hactctx: P0) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn ZombifyActCtx(hactctx: super::super::Foundation::HANDLE) -> windows_core::Result<()> { windows_targets::link!("kernel32.dll" "system" fn ZombifyActCtx(hactctx : super::super::Foundation:: HANDLE) -> super::super::Foundation:: BOOL); - ZombifyActCtx(hactctx.param().abi()).ok() + ZombifyActCtx(hactctx).ok() } windows_core::imp::define_interface!(IAssemblyCache, IAssemblyCache_Vtbl, 0xe707dcde_d1cd_11d2_bab9_00c04f8eceae); impl core::ops::Deref for IAssemblyCache { @@ -7665,6 +7653,7 @@ impl MSIHANDLE { } } impl windows_core::Free for MSIHANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = MsiCloseHandle(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/Com/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Com/mod.rs index 706a484e0f..e2dad0d25c 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Com/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Com/mod.rs @@ -4887,6 +4887,7 @@ pub const CLSCTX_RESERVED4: CLSCTX = CLSCTX(512u32); pub const CLSCTX_RESERVED5: CLSCTX = CLSCTX(2048u32); pub const CLSCTX_RESERVED6: CLSCTX = CLSCTX(16777216u32); pub const CLSCTX_SERVER: CLSCTX = CLSCTX(21u32); +pub const CLSID_GlobalOptions: windows_core::GUID = windows_core::GUID::from_u128(0x0000034b_0000_0000_c000_000000000046); pub const COINITBASE_MULTITHREADED: COINITBASE = COINITBASE(0i32); pub const COINIT_APARTMENTTHREADED: COINIT = COINIT(2i32); pub const COINIT_DISABLE_OLE1DDE: COINIT = COINIT(4i32); @@ -6629,10 +6630,18 @@ impl Default for COSERVERINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct CO_DEVICE_CATALOG_COOKIE(pub isize); +pub struct CO_DEVICE_CATALOG_COOKIE(pub *mut core::ffi::c_void); impl CO_DEVICE_CATALOG_COOKIE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for CO_DEVICE_CATALOG_COOKIE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CoRevokeDeviceCatalog(*self); + } } } impl Default for CO_DEVICE_CATALOG_COOKIE { @@ -6645,10 +6654,18 @@ impl windows_core::TypeKind for CO_DEVICE_CATALOG_COOKIE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct CO_MTA_USAGE_COOKIE(pub isize); +pub struct CO_MTA_USAGE_COOKIE(pub *mut core::ffi::c_void); impl CO_MTA_USAGE_COOKIE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for CO_MTA_USAGE_COOKIE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CoDecrementMTAUsage(*self); + } } } impl Default for CO_MTA_USAGE_COOKIE { @@ -7095,7 +7112,12 @@ impl Default for MULTI_QI { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct MachineGlobalObjectTableRegistrationToken(pub isize); +pub struct MachineGlobalObjectTableRegistrationToken(pub *mut core::ffi::c_void); +impl MachineGlobalObjectTableRegistrationToken { + pub fn is_invalid(&self) -> bool { + self.0.is_null() + } +} impl Default for MachineGlobalObjectTableRegistrationToken { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/System/ComponentServices/impl.rs b/crates/libs/windows/src/Windows/Win32/System/ComponentServices/impl.rs index 154aabe995..5005f59e69 100644 --- a/crates/libs/windows/src/Windows/Win32/System/ComponentServices/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/System/ComponentServices/impl.rs @@ -5904,48 +5904,51 @@ impl ISecurityIdentityColl_Vtbl { iid == &::IID || iid == &::IID } } +#[cfg(feature = "Win32_Security")] pub trait ISecurityProperty_Impl: Sized { - fn GetDirectCreatorSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()>; - fn GetOriginalCreatorSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()>; - fn GetDirectCallerSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()>; - fn GetOriginalCallerSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()>; - fn ReleaseSID(&self, psid: super::super::Foundation::PSID) -> windows_core::Result<()>; + fn GetDirectCreatorSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()>; + fn GetOriginalCreatorSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()>; + fn GetDirectCallerSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()>; + fn GetOriginalCallerSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()>; + fn ReleaseSID(&self, psid: super::super::Security::PSID) -> windows_core::Result<()>; } +#[cfg(feature = "Win32_Security")] impl windows_core::RuntimeName for ISecurityProperty {} +#[cfg(feature = "Win32_Security")] impl ISecurityProperty_Vtbl { pub const fn new() -> ISecurityProperty_Vtbl where Identity: ISecurityProperty_Impl, { - unsafe extern "system" fn GetDirectCreatorSID(this: *mut core::ffi::c_void, psid: *mut super::super::Foundation::PSID) -> windows_core::HRESULT + unsafe extern "system" fn GetDirectCreatorSID(this: *mut core::ffi::c_void, psid: *mut super::super::Security::PSID) -> windows_core::HRESULT where Identity: ISecurityProperty_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ISecurityProperty_Impl::GetDirectCreatorSID(this, core::mem::transmute_copy(&psid)).into() } - unsafe extern "system" fn GetOriginalCreatorSID(this: *mut core::ffi::c_void, psid: *mut super::super::Foundation::PSID) -> windows_core::HRESULT + unsafe extern "system" fn GetOriginalCreatorSID(this: *mut core::ffi::c_void, psid: *mut super::super::Security::PSID) -> windows_core::HRESULT where Identity: ISecurityProperty_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ISecurityProperty_Impl::GetOriginalCreatorSID(this, core::mem::transmute_copy(&psid)).into() } - unsafe extern "system" fn GetDirectCallerSID(this: *mut core::ffi::c_void, psid: *mut super::super::Foundation::PSID) -> windows_core::HRESULT + unsafe extern "system" fn GetDirectCallerSID(this: *mut core::ffi::c_void, psid: *mut super::super::Security::PSID) -> windows_core::HRESULT where Identity: ISecurityProperty_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ISecurityProperty_Impl::GetDirectCallerSID(this, core::mem::transmute_copy(&psid)).into() } - unsafe extern "system" fn GetOriginalCallerSID(this: *mut core::ffi::c_void, psid: *mut super::super::Foundation::PSID) -> windows_core::HRESULT + unsafe extern "system" fn GetOriginalCallerSID(this: *mut core::ffi::c_void, psid: *mut super::super::Security::PSID) -> windows_core::HRESULT where Identity: ISecurityProperty_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ISecurityProperty_Impl::GetOriginalCallerSID(this, core::mem::transmute_copy(&psid)).into() } - unsafe extern "system" fn ReleaseSID(this: *mut core::ffi::c_void, psid: super::super::Foundation::PSID) -> windows_core::HRESULT + unsafe extern "system" fn ReleaseSID(this: *mut core::ffi::c_void, psid: super::super::Security::PSID) -> windows_core::HRESULT where Identity: ISecurityProperty_Impl, { diff --git a/crates/libs/windows/src/Windows/Win32/System/ComponentServices/mod.rs b/crates/libs/windows/src/Windows/Win32/System/ComponentServices/mod.rs index 48e26265cb..0000533a8b 100644 --- a/crates/libs/windows/src/Windows/Win32/System/ComponentServices/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/ComponentServices/mod.rs @@ -3727,21 +3727,26 @@ impl core::ops::Deref for ISecurityProperty { } windows_core::imp::interface_hierarchy!(ISecurityProperty, windows_core::IUnknown); impl ISecurityProperty { - pub unsafe fn GetDirectCreatorSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()> { + #[cfg(feature = "Win32_Security")] + pub unsafe fn GetDirectCreatorSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetDirectCreatorSID)(windows_core::Interface::as_raw(self), psid).ok() } - pub unsafe fn GetOriginalCreatorSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()> { + #[cfg(feature = "Win32_Security")] + pub unsafe fn GetOriginalCreatorSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetOriginalCreatorSID)(windows_core::Interface::as_raw(self), psid).ok() } - pub unsafe fn GetDirectCallerSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()> { + #[cfg(feature = "Win32_Security")] + pub unsafe fn GetDirectCallerSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetDirectCallerSID)(windows_core::Interface::as_raw(self), psid).ok() } - pub unsafe fn GetOriginalCallerSID(&self, psid: *mut super::super::Foundation::PSID) -> windows_core::Result<()> { + #[cfg(feature = "Win32_Security")] + pub unsafe fn GetOriginalCallerSID(&self, psid: *mut super::super::Security::PSID) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetOriginalCallerSID)(windows_core::Interface::as_raw(self), psid).ok() } + #[cfg(feature = "Win32_Security")] pub unsafe fn ReleaseSID(&self, psid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).ReleaseSID)(windows_core::Interface::as_raw(self), psid.param().abi()).ok() } @@ -3749,11 +3754,26 @@ impl ISecurityProperty { #[repr(C)] pub struct ISecurityProperty_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - pub GetDirectCreatorSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::PSID) -> windows_core::HRESULT, - pub GetOriginalCreatorSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::PSID) -> windows_core::HRESULT, - pub GetDirectCallerSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::PSID) -> windows_core::HRESULT, - pub GetOriginalCallerSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Foundation::PSID) -> windows_core::HRESULT, - pub ReleaseSID: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Foundation::PSID) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Security")] + pub GetDirectCreatorSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Security::PSID) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + GetDirectCreatorSID: usize, + #[cfg(feature = "Win32_Security")] + pub GetOriginalCreatorSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Security::PSID) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + GetOriginalCreatorSID: usize, + #[cfg(feature = "Win32_Security")] + pub GetDirectCallerSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Security::PSID) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + GetDirectCallerSID: usize, + #[cfg(feature = "Win32_Security")] + pub GetOriginalCallerSID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::Security::PSID) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + GetOriginalCallerSID: usize, + #[cfg(feature = "Win32_Security")] + pub ReleaseSID: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Security::PSID) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Security"))] + ReleaseSID: usize, } windows_core::imp::define_interface!(ISelectCOMLBServer, ISelectCOMLBServer_Vtbl, 0xdcf443f4_3f8a_4872_b9f0_369a796d12d6); impl core::ops::Deref for ISelectCOMLBServer { diff --git a/crates/libs/windows/src/Windows/Win32/System/Console/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Console/mod.rs index 14a3760bde..0c8d5848d6 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Console/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Console/mod.rs @@ -628,7 +628,7 @@ pub unsafe fn WriteConsoleA(hconsoleoutput: P0, lpbuffer: &[u8], lpnumberofc where P0: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn WriteConsoleA(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : *const core::ffi::c_void, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn WriteConsoleA(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : windows_core::PCSTR, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); WriteConsoleA(hconsoleoutput.param().abi(), core::mem::transmute(lpbuffer.as_ptr()), lpbuffer.len().try_into().unwrap(), core::mem::transmute(lpnumberofcharswritten.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpreserved.unwrap_or(std::ptr::null()))).ok() } #[inline] @@ -688,11 +688,11 @@ where WriteConsoleOutputW(hconsoleoutput.param().abi(), lpbuffer, core::mem::transmute(dwbuffersize), core::mem::transmute(dwbuffercoord), lpwriteregion).ok() } #[inline] -pub unsafe fn WriteConsoleW(hconsoleoutput: P0, lpbuffer: &[u8], lpnumberofcharswritten: Option<*mut u32>, lpreserved: Option<*const core::ffi::c_void>) -> windows_core::Result<()> +pub unsafe fn WriteConsoleW(hconsoleoutput: P0, lpbuffer: &[u16], lpnumberofcharswritten: Option<*mut u32>, lpreserved: Option<*const core::ffi::c_void>) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn WriteConsoleW(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : *const core::ffi::c_void, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn WriteConsoleW(hconsoleoutput : super::super::Foundation:: HANDLE, lpbuffer : windows_core::PCWSTR, nnumberofcharstowrite : u32, lpnumberofcharswritten : *mut u32, lpreserved : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); WriteConsoleW(hconsoleoutput.param().abi(), core::mem::transmute(lpbuffer.as_ptr()), lpbuffer.len().try_into().unwrap(), core::mem::transmute(lpnumberofcharswritten.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpreserved.unwrap_or(std::ptr::null()))).ok() } pub const ALTNUMPAD_BIT: u32 = 67108864u32; @@ -1164,6 +1164,7 @@ impl HPCON { } } impl windows_core::Free for HPCON { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { ClosePseudoConsole(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/DataExchange/mod.rs b/crates/libs/windows/src/Windows/Win32/System/DataExchange/mod.rs index 5735888021..da2c9d3fc5 100644 --- a/crates/libs/windows/src/Windows/Win32/System/DataExchange/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/DataExchange/mod.rs @@ -363,9 +363,10 @@ pub unsafe fn GetClipboardFormatNameW(format: u32, lpszformatname: &mut [u16]) - GetClipboardFormatNameW(format, core::mem::transmute(lpszformatname.as_ptr()), lpszformatname.len().try_into().unwrap()) } #[inline] -pub unsafe fn GetClipboardOwner() -> super::super::Foundation::HWND { +pub unsafe fn GetClipboardOwner() -> windows_core::Result { windows_targets::link!("user32.dll" "system" fn GetClipboardOwner() -> super::super::Foundation:: HWND); - GetClipboardOwner() + let result__ = GetClipboardOwner(); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn GetClipboardSequenceNumber() -> u32 { @@ -373,14 +374,16 @@ pub unsafe fn GetClipboardSequenceNumber() -> u32 { GetClipboardSequenceNumber() } #[inline] -pub unsafe fn GetClipboardViewer() -> super::super::Foundation::HWND { +pub unsafe fn GetClipboardViewer() -> windows_core::Result { windows_targets::link!("user32.dll" "system" fn GetClipboardViewer() -> super::super::Foundation:: HWND); - GetClipboardViewer() + let result__ = GetClipboardViewer(); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn GetOpenClipboardWindow() -> super::super::Foundation::HWND { +pub unsafe fn GetOpenClipboardWindow() -> windows_core::Result { windows_targets::link!("user32.dll" "system" fn GetOpenClipboardWindow() -> super::super::Foundation:: HWND); - GetOpenClipboardWindow() + let result__ = GetOpenClipboardWindow(); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn GetPriorityClipboardFormat(paformatprioritylist: &[u32]) -> i32 { @@ -529,12 +532,13 @@ where (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn SetClipboardViewer(hwndnewviewer: P0) -> super::super::Foundation::HWND +pub unsafe fn SetClipboardViewer(hwndnewviewer: P0) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn SetClipboardViewer(hwndnewviewer : super::super::Foundation:: HWND) -> super::super::Foundation:: HWND); - SetClipboardViewer(hwndnewviewer.param().abi()) + let result__ = SetClipboardViewer(hwndnewviewer.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[cfg(feature = "Win32_Graphics_Gdi")] #[inline] @@ -1003,10 +1007,18 @@ impl Default for DDEUP { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCONV(pub isize); +pub struct HCONV(pub *mut core::ffi::c_void); impl HCONV { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HCONV { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdeDisconnect(*self); + } } } impl Default for HCONV { @@ -1019,10 +1031,18 @@ impl windows_core::TypeKind for HCONV { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCONVLIST(pub isize); +pub struct HCONVLIST(pub *mut core::ffi::c_void); impl HCONVLIST { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HCONVLIST { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdeDisconnectList(*self); + } } } impl Default for HCONVLIST { @@ -1035,10 +1055,18 @@ impl windows_core::TypeKind for HCONVLIST { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDDEDATA(pub isize); +pub struct HDDEDATA(pub *mut core::ffi::c_void); impl HDDEDATA { pub fn is_invalid(&self) -> bool { - self.0 == 0 + self.0.is_null() + } +} +impl windows_core::Free for HDDEDATA { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DdeFreeDataHandle(*self); + } } } impl Default for HDDEDATA { @@ -1051,10 +1079,10 @@ impl windows_core::TypeKind for HDDEDATA { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSZ(pub isize); +pub struct HSZ(pub *mut core::ffi::c_void); impl HSZ { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HSZ { diff --git a/crates/libs/windows/src/Windows/Win32/System/DeploymentServices/mod.rs b/crates/libs/windows/src/Windows/Win32/System/DeploymentServices/mod.rs index 2a48c3e4fe..c7eebfeab3 100644 --- a/crates/libs/windows/src/Windows/Win32/System/DeploymentServices/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/DeploymentServices/mod.rs @@ -253,12 +253,9 @@ where WdsBpQueryOption(hhandle.param().abi(), uoption, uvaluelen, pvalue, core::mem::transmute(pubytes.unwrap_or(std::ptr::null_mut()))) } #[inline] -pub unsafe fn WdsCliAuthorizeSession(hsession: P0, pcred: Option<*const WDS_CLI_CRED>) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn WdsCliAuthorizeSession(hsession: super::super::Foundation::HANDLE, pcred: Option<*const WDS_CLI_CRED>) -> windows_core::Result<()> { windows_targets::link!("wdsclientapi.dll" "system" fn WdsCliAuthorizeSession(hsession : super::super::Foundation:: HANDLE, pcred : *const WDS_CLI_CRED) -> windows_core::HRESULT); - WdsCliAuthorizeSession(hsession.param().abi(), core::mem::transmute(pcred.unwrap_or(std::ptr::null()))).ok() + WdsCliAuthorizeSession(hsession, core::mem::transmute(pcred.unwrap_or(std::ptr::null()))).ok() } #[inline] pub unsafe fn WdsCliCancelTransfer(htransfer: P0) -> windows_core::Result<()> diff --git a/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Debug/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Debug/mod.rs index d89fa39c96..44755ba354 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Debug/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Debug/mod.rs @@ -893,8 +893,8 @@ pub unsafe fn RtlUnwindEx(targetframe: Option<*const core::ffi::c_void>, targeti #[cfg(target_arch = "aarch64")] #[cfg(feature = "Win32_System_Kernel")] #[inline] -pub unsafe fn RtlVirtualUnwind(handlertype: RTL_VIRTUAL_UNWIND_HANDLER_TYPE, imagebase: usize, controlpc: usize, functionentry: *const IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, contextrecord: *mut CONTEXT, handlerdata: *mut *mut core::ffi::c_void, establisherframe: *mut usize, contextpointers: Option<*mut KNONVOLATILE_CONTEXT_POINTERS_ARM64>) -> super::super::Kernel::EXCEPTION_ROUTINE { - windows_targets::link!("kernel32.dll" "system" fn RtlVirtualUnwind(handlertype : RTL_VIRTUAL_UNWIND_HANDLER_TYPE, imagebase : usize, controlpc : usize, functionentry : *const IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, contextrecord : *mut CONTEXT, handlerdata : *mut *mut core::ffi::c_void, establisherframe : *mut usize, contextpointers : *mut KNONVOLATILE_CONTEXT_POINTERS_ARM64) -> super::super::Kernel:: EXCEPTION_ROUTINE); +pub unsafe fn RtlVirtualUnwind(handlertype: RTL_VIRTUAL_UNWIND_HANDLER_TYPE, imagebase: usize, controlpc: usize, functionentry: *const IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, contextrecord: *mut CONTEXT, handlerdata: *mut *mut core::ffi::c_void, establisherframe: *mut usize, contextpointers: Option<*mut KNONVOLATILE_CONTEXT_POINTERS>) -> super::super::Kernel::EXCEPTION_ROUTINE { + windows_targets::link!("kernel32.dll" "system" fn RtlVirtualUnwind(handlertype : RTL_VIRTUAL_UNWIND_HANDLER_TYPE, imagebase : usize, controlpc : usize, functionentry : *const IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, contextrecord : *mut CONTEXT, handlerdata : *mut *mut core::ffi::c_void, establisherframe : *mut usize, contextpointers : *mut KNONVOLATILE_CONTEXT_POINTERS) -> super::super::Kernel:: EXCEPTION_ROUTINE); RtlVirtualUnwind(handlertype, imagebase, controlpc, functionentry, contextrecord, handlerdata, establisherframe, core::mem::transmute(contextpointers.unwrap_or(std::ptr::null_mut()))) } #[cfg(any(target_arch = "arm64ec", target_arch = "x86_64"))] @@ -928,8 +928,8 @@ pub unsafe fn SetCheckUserInterruptShared(lpstartaddress: LPCALL_BACK_USER_INTER SetCheckUserInterruptShared(lpstartaddress) } #[inline] -pub unsafe fn SetErrorMode(umode: THREAD_ERROR_MODE) -> u32 { - windows_targets::link!("kernel32.dll" "system" fn SetErrorMode(umode : THREAD_ERROR_MODE) -> u32); +pub unsafe fn SetErrorMode(umode: THREAD_ERROR_MODE) -> THREAD_ERROR_MODE { + windows_targets::link!("kernel32.dll" "system" fn SetErrorMode(umode : THREAD_ERROR_MODE) -> THREAD_ERROR_MODE); SetErrorMode(umode) } #[cfg(any(target_arch = "aarch64", target_arch = "arm64ec", target_arch = "x86_64"))] @@ -7927,6 +7927,41 @@ impl Default for KDHELP64 { } } #[repr(C)] +#[cfg(target_arch = "aarch64")] +#[derive(Clone, Copy)] +pub struct KNONVOLATILE_CONTEXT_POINTERS { + pub X19: *mut u64, + pub X20: *mut u64, + pub X21: *mut u64, + pub X22: *mut u64, + pub X23: *mut u64, + pub X24: *mut u64, + pub X25: *mut u64, + pub X26: *mut u64, + pub X27: *mut u64, + pub X28: *mut u64, + pub Fp: *mut u64, + pub Lr: *mut u64, + pub D8: *mut u64, + pub D9: *mut u64, + pub D10: *mut u64, + pub D11: *mut u64, + pub D12: *mut u64, + pub D13: *mut u64, + pub D14: *mut u64, + pub D15: *mut u64, +} +#[cfg(target_arch = "aarch64")] +impl windows_core::TypeKind for KNONVOLATILE_CONTEXT_POINTERS { + type TypeKind = windows_core::CopyType; +} +#[cfg(target_arch = "aarch64")] +impl Default for KNONVOLATILE_CONTEXT_POINTERS { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +#[repr(C)] #[cfg(any(target_arch = "arm64ec", target_arch = "x86_64"))] #[derive(Clone, Copy)] pub struct KNONVOLATILE_CONTEXT_POINTERS { @@ -8056,41 +8091,6 @@ impl Default for KNONVOLATILE_CONTEXT_POINTERS { } } #[repr(C)] -#[cfg(target_arch = "aarch64")] -#[derive(Clone, Copy, Debug, Eq, PartialEq)] -pub struct KNONVOLATILE_CONTEXT_POINTERS_ARM64 { - pub X19: *mut u64, - pub X20: *mut u64, - pub X21: *mut u64, - pub X22: *mut u64, - pub X23: *mut u64, - pub X24: *mut u64, - pub X25: *mut u64, - pub X26: *mut u64, - pub X27: *mut u64, - pub X28: *mut u64, - pub Fp: *mut u64, - pub Lr: *mut u64, - pub D8: *mut u64, - pub D9: *mut u64, - pub D10: *mut u64, - pub D11: *mut u64, - pub D12: *mut u64, - pub D13: *mut u64, - pub D14: *mut u64, - pub D15: *mut u64, -} -#[cfg(target_arch = "aarch64")] -impl windows_core::TypeKind for KNONVOLATILE_CONTEXT_POINTERS_ARM64 { - type TypeKind = windows_core::CopyType; -} -#[cfg(target_arch = "aarch64")] -impl Default for KNONVOLATILE_CONTEXT_POINTERS_ARM64 { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -#[repr(C)] #[derive(Clone, Copy)] pub struct LDT_ENTRY { pub LimitLow: u16, diff --git a/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Etw/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Etw/mod.rs index b9654393e3..792e9fd833 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Etw/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Diagnostics/Etw/mod.rs @@ -61,13 +61,14 @@ pub unsafe fn EnumerateTraceGuidsEx(tracequeryinfoclass: TRACE_QUERY_INFO_CLASS, windows_targets::link!("advapi32.dll" "system" fn EnumerateTraceGuidsEx(tracequeryinfoclass : TRACE_QUERY_INFO_CLASS, inbuffer : *const core::ffi::c_void, inbuffersize : u32, outbuffer : *mut core::ffi::c_void, outbuffersize : u32, returnlength : *mut u32) -> super::super::super::Foundation:: WIN32_ERROR); EnumerateTraceGuidsEx(tracequeryinfoclass, core::mem::transmute(inbuffer.unwrap_or(std::ptr::null())), inbuffersize, core::mem::transmute(outbuffer.unwrap_or(std::ptr::null_mut())), outbuffersize, returnlength) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EventAccessControl(guid: *const windows_core::GUID, operation: u32, sid: P0, rights: u32, allowordeny: P1) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EventAccessControl(guid : *const windows_core::GUID, operation : u32, sid : super::super::super::Foundation:: PSID, rights : u32, allowordeny : super::super::super::Foundation:: BOOLEAN) -> u32); + windows_targets::link!("advapi32.dll" "system" fn EventAccessControl(guid : *const windows_core::GUID, operation : u32, sid : super::super::super::Security:: PSID, rights : u32, allowordeny : super::super::super::Foundation:: BOOLEAN) -> u32); EventAccessControl(guid, operation, sid.param().abi(), rights, allowordeny.param().abi()) } #[cfg(feature = "Win32_Security")] @@ -87,14 +88,20 @@ pub unsafe fn EventActivityIdControl(controlcode: u32, activityid: *mut windows_ EventActivityIdControl(controlcode, activityid) } #[inline] -pub unsafe fn EventEnabled(reghandle: u64, eventdescriptor: *const EVENT_DESCRIPTOR) -> super::super::super::Foundation::BOOLEAN { - windows_targets::link!("advapi32.dll" "system" fn EventEnabled(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR) -> super::super::super::Foundation:: BOOLEAN); - EventEnabled(reghandle, eventdescriptor) +pub unsafe fn EventEnabled(reghandle: P0, eventdescriptor: *const EVENT_DESCRIPTOR) -> super::super::super::Foundation::BOOLEAN +where + P0: windows_core::Param, +{ + windows_targets::link!("advapi32.dll" "system" fn EventEnabled(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR) -> super::super::super::Foundation:: BOOLEAN); + EventEnabled(reghandle.param().abi(), eventdescriptor) } #[inline] -pub unsafe fn EventProviderEnabled(reghandle: u64, level: u8, keyword: u64) -> super::super::super::Foundation::BOOLEAN { - windows_targets::link!("advapi32.dll" "system" fn EventProviderEnabled(reghandle : u64, level : u8, keyword : u64) -> super::super::super::Foundation:: BOOLEAN); - EventProviderEnabled(reghandle, level, keyword) +pub unsafe fn EventProviderEnabled(reghandle: P0, level: u8, keyword: u64) -> super::super::super::Foundation::BOOLEAN +where + P0: windows_core::Param, +{ + windows_targets::link!("advapi32.dll" "system" fn EventProviderEnabled(reghandle : REGHANDLE, level : u8, keyword : u64) -> super::super::super::Foundation:: BOOLEAN); + EventProviderEnabled(reghandle.param().abi(), level, keyword) } #[inline] pub unsafe fn EventRegister(providerid: *const windows_core::GUID, enablecallback: PENABLECALLBACK, callbackcontext: Option<*const core::ffi::c_void>, reghandle: *mut u64) -> u32 { @@ -102,37 +109,53 @@ pub unsafe fn EventRegister(providerid: *const windows_core::GUID, enablecallbac EventRegister(providerid, enablecallback, core::mem::transmute(callbackcontext.unwrap_or(std::ptr::null())), reghandle) } #[inline] -pub unsafe fn EventSetInformation(reghandle: u64, informationclass: EVENT_INFO_CLASS, eventinformation: *const core::ffi::c_void, informationlength: u32) -> u32 { - windows_targets::link!("advapi32.dll" "system" fn EventSetInformation(reghandle : u64, informationclass : EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> u32); - EventSetInformation(reghandle, informationclass, eventinformation, informationlength) +pub unsafe fn EventSetInformation(reghandle: P0, informationclass: EVENT_INFO_CLASS, eventinformation: *const core::ffi::c_void, informationlength: u32) -> u32 +where + P0: windows_core::Param, +{ + windows_targets::link!("advapi32.dll" "system" fn EventSetInformation(reghandle : REGHANDLE, informationclass : EVENT_INFO_CLASS, eventinformation : *const core::ffi::c_void, informationlength : u32) -> u32); + EventSetInformation(reghandle.param().abi(), informationclass, eventinformation, informationlength) } #[inline] -pub unsafe fn EventUnregister(reghandle: u64) -> u32 { - windows_targets::link!("advapi32.dll" "system" fn EventUnregister(reghandle : u64) -> u32); - EventUnregister(reghandle) +pub unsafe fn EventUnregister(reghandle: P0) -> u32 +where + P0: windows_core::Param, +{ + windows_targets::link!("advapi32.dll" "system" fn EventUnregister(reghandle : REGHANDLE) -> u32); + EventUnregister(reghandle.param().abi()) } #[inline] -pub unsafe fn EventWrite(reghandle: u64, eventdescriptor: *const EVENT_DESCRIPTOR, userdata: Option<&[EVENT_DATA_DESCRIPTOR]>) -> u32 { - windows_targets::link!("advapi32.dll" "system" fn EventWrite(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); - EventWrite(reghandle, eventdescriptor, userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) +pub unsafe fn EventWrite(reghandle: P0, eventdescriptor: *const EVENT_DESCRIPTOR, userdata: Option<&[EVENT_DATA_DESCRIPTOR]>) -> u32 +where + P0: windows_core::Param, +{ + windows_targets::link!("advapi32.dll" "system" fn EventWrite(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); + EventWrite(reghandle.param().abi(), eventdescriptor, userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) } #[inline] -pub unsafe fn EventWriteEx(reghandle: u64, eventdescriptor: *const EVENT_DESCRIPTOR, filter: u64, flags: u32, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[EVENT_DATA_DESCRIPTOR]>) -> u32 { - windows_targets::link!("advapi32.dll" "system" fn EventWriteEx(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); - EventWriteEx(reghandle, eventdescriptor, filter, flags, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) +pub unsafe fn EventWriteEx(reghandle: P0, eventdescriptor: *const EVENT_DESCRIPTOR, filter: u64, flags: u32, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[EVENT_DATA_DESCRIPTOR]>) -> u32 +where + P0: windows_core::Param, +{ + windows_targets::link!("advapi32.dll" "system" fn EventWriteEx(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR, filter : u64, flags : u32, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); + EventWriteEx(reghandle.param().abi(), eventdescriptor, filter, flags, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) } #[inline] -pub unsafe fn EventWriteString(reghandle: u64, level: u8, keyword: u64, string: P0) -> u32 +pub unsafe fn EventWriteString(reghandle: P0, level: u8, keyword: u64, string: P1) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EventWriteString(reghandle : u64, level : u8, keyword : u64, string : windows_core::PCWSTR) -> u32); - EventWriteString(reghandle, level, keyword, string.param().abi()) + windows_targets::link!("advapi32.dll" "system" fn EventWriteString(reghandle : REGHANDLE, level : u8, keyword : u64, string : windows_core::PCWSTR) -> u32); + EventWriteString(reghandle.param().abi(), level, keyword, string.param().abi()) } #[inline] -pub unsafe fn EventWriteTransfer(reghandle: u64, eventdescriptor: *const EVENT_DESCRIPTOR, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[EVENT_DATA_DESCRIPTOR]>) -> u32 { - windows_targets::link!("advapi32.dll" "system" fn EventWriteTransfer(reghandle : u64, eventdescriptor : *const EVENT_DESCRIPTOR, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); - EventWriteTransfer(reghandle, eventdescriptor, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) +pub unsafe fn EventWriteTransfer(reghandle: P0, eventdescriptor: *const EVENT_DESCRIPTOR, activityid: Option<*const windows_core::GUID>, relatedactivityid: Option<*const windows_core::GUID>, userdata: Option<&[EVENT_DATA_DESCRIPTOR]>) -> u32 +where + P0: windows_core::Param, +{ + windows_targets::link!("advapi32.dll" "system" fn EventWriteTransfer(reghandle : REGHANDLE, eventdescriptor : *const EVENT_DESCRIPTOR, activityid : *const windows_core::GUID, relatedactivityid : *const windows_core::GUID, userdatacount : u32, userdata : *const EVENT_DATA_DESCRIPTOR) -> u32); + EventWriteTransfer(reghandle.param().abi(), eventdescriptor, core::mem::transmute(activityid.unwrap_or(std::ptr::null())), core::mem::transmute(relatedactivityid.unwrap_or(std::ptr::null())), userdata.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(userdata.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) } #[inline] pub unsafe fn FlushTraceA(tracehandle: CONTROLTRACE_HANDLE, instancename: P0, properties: *mut EVENT_TRACE_PROPERTIES) -> super::super::super::Foundation::WIN32_ERROR @@ -3323,6 +3346,17 @@ impl Default for PROVIDER_FILTER_INFO { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct REGHANDLE(pub i64); +impl Default for REGHANDLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for REGHANDLE { + type TypeKind = windows_core::CopyType; +} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct RELOGSTREAM_HANDLE { @@ -3360,6 +3394,7 @@ impl TDH_HANDLE { } } impl windows_core::Free for TDH_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = TdhCloseDecodingHandle(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs index a7cee2b08f..b345b6f9c9 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs @@ -391,10 +391,10 @@ impl core::fmt::Debug for PSS_WALK_INFORMATION_CLASS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPSS(pub isize); +pub struct HPSS(pub *mut core::ffi::c_void); impl HPSS { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HPSS { @@ -407,10 +407,18 @@ impl windows_core::TypeKind for HPSS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPSSWALK(pub isize); +pub struct HPSSWALK(pub *mut core::ffi::c_void); impl HPSSWALK { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HPSSWALK { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = PssWalkMarkerFree(*self); + } } } impl Default for HPSSWALK { diff --git a/crates/libs/windows/src/Windows/Win32/System/ErrorReporting/mod.rs b/crates/libs/windows/src/Windows/Win32/System/ErrorReporting/mod.rs index 60857f01a7..c9881c37e8 100644 --- a/crates/libs/windows/src/Windows/Win32/System/ErrorReporting/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/ErrorReporting/mod.rs @@ -683,13 +683,14 @@ impl core::fmt::Debug for WER_SUBMIT_RESULT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HREPORT(pub isize); +pub struct HREPORT(pub *mut core::ffi::c_void); impl HREPORT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HREPORT { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = WerReportCloseHandle(*self); @@ -706,13 +707,14 @@ impl windows_core::TypeKind for HREPORT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HREPORTSTORE(pub isize); +pub struct HREPORTSTORE(pub *mut core::ffi::c_void); impl HREPORTSTORE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HREPORTSTORE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { WerStoreClose(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/EventLog/mod.rs b/crates/libs/windows/src/Windows/Win32/System/EventLog/mod.rs index 771cbacf08..0c7f298927 100644 --- a/crates/libs/windows/src/Windows/Win32/System/EventLog/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/EventLog/mod.rs @@ -111,6 +111,7 @@ where windows_targets::link!("wevtapi.dll" "system" fn EvtExportLog(session : EVT_HANDLE, path : windows_core::PCWSTR, query : windows_core::PCWSTR, targetfilepath : windows_core::PCWSTR, flags : u32) -> super::super::Foundation:: BOOL); EvtExportLog(session.param().abi(), path.param().abi(), query.param().abi(), targetfilepath.param().abi(), flags).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtFormatMessage(publishermetadata: P0, event: P1, messageid: u32, values: Option<&[EVT_VARIANT]>, flags: u32, buffer: Option<&mut [u16]>, bufferused: *mut u32) -> windows_core::Result<()> where @@ -120,6 +121,7 @@ where windows_targets::link!("wevtapi.dll" "system" fn EvtFormatMessage(publishermetadata : EVT_HANDLE, event : EVT_HANDLE, messageid : u32, valuecount : u32, values : *const EVT_VARIANT, flags : u32, buffersize : u32, buffer : windows_core::PWSTR, bufferused : *mut u32) -> super::super::Foundation:: BOOL); EvtFormatMessage(publishermetadata.param().abi(), event.param().abi(), messageid, values.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(values.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), flags, buffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(buffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), bufferused).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtGetChannelConfigProperty(channelconfig: P0, propertyid: EVT_CHANNEL_CONFIG_PROPERTY_ID, flags: u32, propertyvaluebuffersize: u32, propertyvaluebuffer: Option<*mut EVT_VARIANT>, propertyvaluebufferused: *mut u32) -> windows_core::Result<()> where @@ -128,6 +130,7 @@ where windows_targets::link!("wevtapi.dll" "system" fn EvtGetChannelConfigProperty(channelconfig : EVT_HANDLE, propertyid : EVT_CHANNEL_CONFIG_PROPERTY_ID, flags : u32, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); EvtGetChannelConfigProperty(channelconfig.param().abi(), propertyid, flags, propertyvaluebuffersize, core::mem::transmute(propertyvaluebuffer.unwrap_or(std::ptr::null_mut())), propertyvaluebufferused).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtGetEventInfo(event: P0, propertyid: EVT_EVENT_PROPERTY_ID, propertyvaluebuffersize: u32, propertyvaluebuffer: Option<*mut EVT_VARIANT>, propertyvaluebufferused: *mut u32) -> windows_core::Result<()> where @@ -136,6 +139,7 @@ where windows_targets::link!("wevtapi.dll" "system" fn EvtGetEventInfo(event : EVT_HANDLE, propertyid : EVT_EVENT_PROPERTY_ID, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); EvtGetEventInfo(event.param().abi(), propertyid, propertyvaluebuffersize, core::mem::transmute(propertyvaluebuffer.unwrap_or(std::ptr::null_mut())), propertyvaluebufferused).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtGetEventMetadataProperty(eventmetadata: P0, propertyid: EVT_EVENT_METADATA_PROPERTY_ID, flags: u32, eventmetadatapropertybuffersize: u32, eventmetadatapropertybuffer: Option<*mut EVT_VARIANT>, eventmetadatapropertybufferused: *mut u32) -> windows_core::Result<()> where @@ -149,6 +153,7 @@ pub unsafe fn EvtGetExtendedStatus(buffer: Option<&mut [u16]>, bufferused: *mut windows_targets::link!("wevtapi.dll" "system" fn EvtGetExtendedStatus(buffersize : u32, buffer : windows_core::PWSTR, bufferused : *mut u32) -> u32); EvtGetExtendedStatus(buffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(buffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), bufferused) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtGetLogInfo(log: P0, propertyid: EVT_LOG_PROPERTY_ID, propertyvaluebuffersize: u32, propertyvaluebuffer: Option<*mut EVT_VARIANT>, propertyvaluebufferused: *mut u32) -> windows_core::Result<()> where @@ -157,6 +162,7 @@ where windows_targets::link!("wevtapi.dll" "system" fn EvtGetLogInfo(log : EVT_HANDLE, propertyid : EVT_LOG_PROPERTY_ID, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); EvtGetLogInfo(log.param().abi(), propertyid, propertyvaluebuffersize, core::mem::transmute(propertyvaluebuffer.unwrap_or(std::ptr::null_mut())), propertyvaluebufferused).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtGetObjectArrayProperty(objectarray: isize, propertyid: u32, arrayindex: u32, flags: u32, propertyvaluebuffersize: u32, propertyvaluebuffer: Option<*mut EVT_VARIANT>, propertyvaluebufferused: *mut u32) -> windows_core::Result<()> { windows_targets::link!("wevtapi.dll" "system" fn EvtGetObjectArrayProperty(objectarray : isize, propertyid : u32, arrayindex : u32, flags : u32, propertyvaluebuffersize : u32, propertyvaluebuffer : *mut EVT_VARIANT, propertyvaluebufferused : *mut u32) -> super::super::Foundation:: BOOL); @@ -167,6 +173,7 @@ pub unsafe fn EvtGetObjectArraySize(objectarray: isize, objectarraysize: *mut u3 windows_targets::link!("wevtapi.dll" "system" fn EvtGetObjectArraySize(objectarray : isize, objectarraysize : *mut u32) -> super::super::Foundation:: BOOL); EvtGetObjectArraySize(objectarray, objectarraysize).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtGetPublisherMetadataProperty(publishermetadata: P0, propertyid: EVT_PUBLISHER_METADATA_PROPERTY_ID, flags: u32, publishermetadatapropertybuffersize: u32, publishermetadatapropertybuffer: Option<*mut EVT_VARIANT>, publishermetadatapropertybufferused: *mut u32) -> windows_core::Result<()> where @@ -175,6 +182,7 @@ where windows_targets::link!("wevtapi.dll" "system" fn EvtGetPublisherMetadataProperty(publishermetadata : EVT_HANDLE, propertyid : EVT_PUBLISHER_METADATA_PROPERTY_ID, flags : u32, publishermetadatapropertybuffersize : u32, publishermetadatapropertybuffer : *mut EVT_VARIANT, publishermetadatapropertybufferused : *mut u32) -> super::super::Foundation:: BOOL); EvtGetPublisherMetadataProperty(publishermetadata.param().abi(), propertyid, flags, publishermetadatapropertybuffersize, core::mem::transmute(publishermetadatapropertybuffer.unwrap_or(std::ptr::null_mut())), publishermetadatapropertybufferused).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtGetQueryInfo(queryorsubscription: P0, propertyid: EVT_QUERY_PROPERTY_ID, propertyvaluebuffersize: u32, propertyvaluebuffer: Option<*mut EVT_VARIANT>, propertyvaluebufferused: *mut u32) -> windows_core::Result<()> where @@ -317,6 +325,7 @@ where windows_targets::link!("wevtapi.dll" "system" fn EvtSeek(resultset : EVT_HANDLE, position : i64, bookmark : EVT_HANDLE, timeout : u32, flags : u32) -> super::super::Foundation:: BOOL); EvtSeek(resultset.param().abi(), position, bookmark.param().abi(), timeout, flags).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EvtSetChannelConfigProperty(channelconfig: P0, propertyid: EVT_CHANNEL_CONFIG_PROPERTY_ID, flags: u32, propertyvalue: *const EVT_VARIANT) -> windows_core::Result<()> where @@ -456,22 +465,24 @@ where let result__ = RegisterEventSourceW(lpuncservername.param().abi(), lpsourcename.param().abi()); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ReportEventA(heventlog: P0, wtype: REPORT_EVENT_TYPE, wcategory: u16, dweventid: u32, lpusersid: P1, dwdatasize: u32, lpstrings: Option<&[windows_core::PCSTR]>, lprawdata: Option<*const core::ffi::c_void>) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ReportEventA(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Foundation:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_core::PCSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ReportEventA(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Security:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_core::PCSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); ReportEventA(heventlog.param().abi(), wtype, wcategory, dweventid, lpusersid.param().abi(), lpstrings.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), dwdatasize, core::mem::transmute(lpstrings.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), core::mem::transmute(lprawdata.unwrap_or(std::ptr::null()))).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ReportEventW(heventlog: P0, wtype: REPORT_EVENT_TYPE, wcategory: u16, dweventid: u32, lpusersid: P1, dwdatasize: u32, lpstrings: Option<&[windows_core::PCWSTR]>, lprawdata: Option<*const core::ffi::c_void>) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ReportEventW(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Foundation:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_core::PCWSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ReportEventW(heventlog : super::super::Foundation:: HANDLE, wtype : REPORT_EVENT_TYPE, wcategory : u16, dweventid : u32, lpusersid : super::super::Security:: PSID, wnumstrings : u16, dwdatasize : u32, lpstrings : *const windows_core::PCWSTR, lprawdata : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); ReportEventW(heventlog.param().abi(), wtype, wcategory, dweventid, lpusersid.param().abi(), lpstrings.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), dwdatasize, core::mem::transmute(lpstrings.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), core::mem::transmute(lprawdata.unwrap_or(std::ptr::null()))).ok() } pub const EVENTLOG_AUDIT_FAILURE: REPORT_EVENT_TYPE = REPORT_EVENT_TYPE(16u16); @@ -1016,6 +1027,7 @@ impl EVT_HANDLE { } } impl windows_core::Free for EVT_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = EvtClose(*self); @@ -1048,21 +1060,25 @@ impl Default for EVT_RPC_LOGIN { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub struct EVT_VARIANT { pub Anonymous: EVT_VARIANT_0, pub Count: u32, pub Type: u32, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for EVT_VARIANT { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for EVT_VARIANT { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy)] pub union EVT_VARIANT_0 { pub BooleanVal: super::super::Foundation::BOOL, @@ -1082,7 +1098,7 @@ pub union EVT_VARIANT_0 { pub StringVal: windows_core::PCWSTR, pub AnsiStringVal: windows_core::PCSTR, pub BinaryVal: *mut u8, - pub SidVal: super::super::Foundation::PSID, + pub SidVal: super::super::Security::PSID, pub SizeTVal: usize, pub BooleanArr: *mut super::super::Foundation::BOOL, pub SByteArr: *mut i8, @@ -1100,15 +1116,17 @@ pub union EVT_VARIANT_0 { pub GuidArr: *mut windows_core::GUID, pub StringArr: *mut windows_core::PWSTR, pub AnsiStringArr: *mut windows_core::PSTR, - pub SidArr: *mut super::super::Foundation::PSID, + pub SidArr: *mut super::super::Security::PSID, pub SizeTArr: *mut usize, pub EvtHandleVal: EVT_HANDLE, pub XmlVal: windows_core::PCWSTR, pub XmlValArr: *const windows_core::PCWSTR, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for EVT_VARIANT_0 { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for EVT_VARIANT_0 { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/System/GroupPolicy/mod.rs b/crates/libs/windows/src/Windows/Win32/System/GroupPolicy/mod.rs index 986f4ec32a..b1ecfc3876 100644 --- a/crates/libs/windows/src/Windows/Win32/System/GroupPolicy/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/GroupPolicy/mod.rs @@ -75,22 +75,24 @@ where windows_targets::link!("userenv.dll" "system" fn GenerateGPNotification(bmachine : super::super::Foundation:: BOOL, lpwszmgmtproduct : windows_core::PCWSTR, dwmgmtproductoptions : u32) -> u32); GenerateGPNotification(bmachine.param().abi(), lpwszmgmtproduct.param().abi(), dwmgmtproductoptions) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn GetAppliedGPOListA(dwflags: u32, pmachinename: P0, psiduser: P1, pguidextension: *const windows_core::GUID, ppgpolist: *mut *mut GROUP_POLICY_OBJECTA) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListA(dwflags : u32, pmachinename : windows_core::PCSTR, psiduser : super::super::Foundation:: PSID, pguidextension : *const windows_core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTA) -> u32); + windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListA(dwflags : u32, pmachinename : windows_core::PCSTR, psiduser : super::super::Security:: PSID, pguidextension : *const windows_core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTA) -> u32); GetAppliedGPOListA(dwflags, pmachinename.param().abi(), psiduser.param().abi(), pguidextension, ppgpolist) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn GetAppliedGPOListW(dwflags: u32, pmachinename: P0, psiduser: P1, pguidextension: *const windows_core::GUID, ppgpolist: *mut *mut GROUP_POLICY_OBJECTW) -> u32 where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListW(dwflags : u32, pmachinename : windows_core::PCWSTR, psiduser : super::super::Foundation:: PSID, pguidextension : *const windows_core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTW) -> u32); + windows_targets::link!("userenv.dll" "system" fn GetAppliedGPOListW(dwflags : u32, pmachinename : windows_core::PCWSTR, psiduser : super::super::Security:: PSID, pguidextension : *const windows_core::GUID, ppgpolist : *mut *mut GROUP_POLICY_OBJECTW) -> u32); GetAppliedGPOListW(dwflags, pmachinename.param().abi(), psiduser.param().abi(), pguidextension, ppgpolist) } #[inline] @@ -204,9 +206,9 @@ where pub unsafe fn RsopAccessCheckByType(psecuritydescriptor: P0, pprincipalselfsid: P1, prsoptoken: *const core::ffi::c_void, dwdesiredaccessmask: u32, pobjecttypelist: Option<&[super::super::Security::OBJECT_TYPE_LIST]>, pgenericmapping: *const super::super::Security::GENERIC_MAPPING, pprivilegeset: Option<*const super::super::Security::PRIVILEGE_SET>, pdwprivilegesetlength: Option<*const u32>, pdwgrantedaccessmask: *mut u32, pbaccessstatus: *mut super::super::Foundation::BOOL) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("userenv.dll" "system" fn RsopAccessCheckByType(psecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, pprincipalselfsid : super::super::Foundation:: PSID, prsoptoken : *const core::ffi::c_void, dwdesiredaccessmask : u32, pobjecttypelist : *const super::super::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, pgenericmapping : *const super::super::Security:: GENERIC_MAPPING, pprivilegeset : *const super::super::Security:: PRIVILEGE_SET, pdwprivilegesetlength : *const u32, pdwgrantedaccessmask : *mut u32, pbaccessstatus : *mut super::super::Foundation:: BOOL) -> windows_core::HRESULT); + windows_targets::link!("userenv.dll" "system" fn RsopAccessCheckByType(psecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, pprincipalselfsid : super::super::Security:: PSID, prsoptoken : *const core::ffi::c_void, dwdesiredaccessmask : u32, pobjecttypelist : *const super::super::Security:: OBJECT_TYPE_LIST, objecttypelistlength : u32, pgenericmapping : *const super::super::Security:: GENERIC_MAPPING, pprivilegeset : *const super::super::Security:: PRIVILEGE_SET, pdwprivilegesetlength : *const u32, pdwgrantedaccessmask : *mut u32, pbaccessstatus : *mut super::super::Foundation:: BOOL) -> windows_core::HRESULT); RsopAccessCheckByType(psecuritydescriptor.param().abi(), pprincipalselfsid.param().abi(), prsoptoken, dwdesiredaccessmask, core::mem::transmute(pobjecttypelist.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pobjecttypelist.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pgenericmapping, core::mem::transmute(pprivilegeset.unwrap_or(std::ptr::null())), core::mem::transmute(pdwprivilegesetlength.unwrap_or(std::ptr::null())), pdwgrantedaccessmask, pbaccessstatus).ok() } #[inline] diff --git a/crates/libs/windows/src/Windows/Win32/System/HostCompute/mod.rs b/crates/libs/windows/src/Windows/Win32/System/HostCompute/mod.rs index 9f90ca5732..f5d2a4014e 100644 --- a/crates/libs/windows/src/Windows/Win32/System/HostCompute/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/HostCompute/mod.rs @@ -1,9 +1,9 @@ #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCS_CALLBACK(pub isize); +pub struct HCS_CALLBACK(pub *mut core::ffi::c_void); impl HCS_CALLBACK { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HCS_CALLBACK { diff --git a/crates/libs/windows/src/Windows/Win32/System/HostComputeSystem/mod.rs b/crates/libs/windows/src/Windows/Win32/System/HostComputeSystem/mod.rs index 146c7eacde..ac9e6b59b0 100644 --- a/crates/libs/windows/src/Windows/Win32/System/HostComputeSystem/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/HostComputeSystem/mod.rs @@ -845,13 +845,14 @@ impl Default for HCS_EVENT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCS_OPERATION(pub isize); +pub struct HCS_OPERATION(pub *mut core::ffi::c_void); impl HCS_OPERATION { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HCS_OPERATION { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { HcsCloseOperation(*self); @@ -868,13 +869,14 @@ impl windows_core::TypeKind for HCS_OPERATION { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCS_PROCESS(pub isize); +pub struct HCS_PROCESS(pub *mut core::ffi::c_void); impl HCS_PROCESS { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HCS_PROCESS { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { HcsCloseProcess(*self); @@ -908,13 +910,14 @@ impl Default for HCS_PROCESS_INFORMATION { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCS_SYSTEM(pub isize); +pub struct HCS_SYSTEM(pub *mut core::ffi::c_void); impl HCS_SYSTEM { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HCS_SYSTEM { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { HcsCloseComputeSystem(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/Hypervisor/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Hypervisor/mod.rs index 8c560bbbcb..ea37b46e7a 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Hypervisor/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Hypervisor/mod.rs @@ -3243,6 +3243,7 @@ impl WHV_PARTITION_HANDLE { } } impl windows_core::Free for WHV_PARTITION_HANDLE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = WHvDeletePartition(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/Memory/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Memory/mod.rs index c0673c0f9f..37b40537c5 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Memory/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Memory/mod.rs @@ -242,12 +242,9 @@ where HeapDestroy(hheap.param().abi()).ok() } #[inline] -pub unsafe fn HeapFree(hheap: P0, dwflags: HEAP_FLAGS, lpmem: Option<*const core::ffi::c_void>) -> windows_core::Result<()> -where - P0: windows_core::Param, -{ +pub unsafe fn HeapFree(hheap: super::super::Foundation::HANDLE, dwflags: HEAP_FLAGS, lpmem: Option<*const core::ffi::c_void>) -> windows_core::Result<()> { windows_targets::link!("kernel32.dll" "system" fn HeapFree(hheap : super::super::Foundation:: HANDLE, dwflags : HEAP_FLAGS, lpmem : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); - HeapFree(hheap.param().abi(), dwflags, core::mem::transmute(lpmem.unwrap_or(std::ptr::null()))).ok() + HeapFree(hheap, dwflags, core::mem::transmute(lpmem.unwrap_or(std::ptr::null()))).ok() } #[inline] pub unsafe fn HeapLock(hheap: P0) -> windows_core::Result<()> @@ -266,12 +263,9 @@ where HeapQueryInformation(heaphandle.param().abi(), heapinformationclass, core::mem::transmute(heapinformation.unwrap_or(std::ptr::null_mut())), heapinformationlength, core::mem::transmute(returnlength.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] -pub unsafe fn HeapReAlloc(hheap: P0, dwflags: HEAP_FLAGS, lpmem: Option<*const core::ffi::c_void>, dwbytes: usize) -> *mut core::ffi::c_void -where - P0: windows_core::Param, -{ +pub unsafe fn HeapReAlloc(hheap: super::super::Foundation::HANDLE, dwflags: HEAP_FLAGS, lpmem: Option<*const core::ffi::c_void>, dwbytes: usize) -> *mut core::ffi::c_void { windows_targets::link!("kernel32.dll" "system" fn HeapReAlloc(hheap : super::super::Foundation:: HANDLE, dwflags : HEAP_FLAGS, lpmem : *const core::ffi::c_void, dwbytes : usize) -> *mut core::ffi::c_void); - HeapReAlloc(hheap.param().abi(), dwflags, core::mem::transmute(lpmem.unwrap_or(std::ptr::null())), dwbytes) + HeapReAlloc(hheap, dwflags, core::mem::transmute(lpmem.unwrap_or(std::ptr::null())), dwbytes) } #[inline] pub unsafe fn HeapSetInformation(heaphandle: P0, heapinformationclass: HEAP_INFORMATION_CLASS, heapinformation: Option<*const core::ffi::c_void>, heapinformationlength: usize) -> windows_core::Result<()> diff --git a/crates/libs/windows/src/Windows/Win32/System/Power/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Power/mod.rs index 0daa620667..8e7c2934b2 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Power/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Power/mod.rs @@ -239,11 +239,11 @@ where } #[cfg(feature = "Win32_System_Registry")] #[inline] -pub unsafe fn PowerReadACValueIndex(rootpowerkey: P0, schemeguid: Option<*const windows_core::GUID>, subgroupofpowersettingsguid: Option<*const windows_core::GUID>, powersettingguid: Option<*const windows_core::GUID>, acvalueindex: *mut u32) -> u32 +pub unsafe fn PowerReadACValueIndex(rootpowerkey: P0, schemeguid: Option<*const windows_core::GUID>, subgroupofpowersettingsguid: Option<*const windows_core::GUID>, powersettingguid: Option<*const windows_core::GUID>, acvalueindex: *mut u32) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("powrprof.dll" "system" fn PowerReadACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_core::GUID, subgroupofpowersettingsguid : *const windows_core::GUID, powersettingguid : *const windows_core::GUID, acvalueindex : *mut u32) -> u32); + windows_targets::link!("powrprof.dll" "system" fn PowerReadACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_core::GUID, subgroupofpowersettingsguid : *const windows_core::GUID, powersettingguid : *const windows_core::GUID, acvalueindex : *mut u32) -> super::super::Foundation:: WIN32_ERROR); PowerReadACValueIndex(rootpowerkey.param().abi(), core::mem::transmute(schemeguid.unwrap_or(std::ptr::null())), core::mem::transmute(subgroupofpowersettingsguid.unwrap_or(std::ptr::null())), core::mem::transmute(powersettingguid.unwrap_or(std::ptr::null())), acvalueindex) } #[cfg(feature = "Win32_System_Registry")] @@ -476,11 +476,11 @@ where } #[cfg(feature = "Win32_System_Registry")] #[inline] -pub unsafe fn PowerWriteACValueIndex(rootpowerkey: P0, schemeguid: *const windows_core::GUID, subgroupofpowersettingsguid: Option<*const windows_core::GUID>, powersettingguid: Option<*const windows_core::GUID>, acvalueindex: u32) -> u32 +pub unsafe fn PowerWriteACValueIndex(rootpowerkey: P0, schemeguid: *const windows_core::GUID, subgroupofpowersettingsguid: Option<*const windows_core::GUID>, powersettingguid: Option<*const windows_core::GUID>, acvalueindex: u32) -> super::super::Foundation::WIN32_ERROR where P0: windows_core::Param, { - windows_targets::link!("powrprof.dll" "system" fn PowerWriteACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_core::GUID, subgroupofpowersettingsguid : *const windows_core::GUID, powersettingguid : *const windows_core::GUID, acvalueindex : u32) -> u32); + windows_targets::link!("powrprof.dll" "system" fn PowerWriteACValueIndex(rootpowerkey : super::Registry:: HKEY, schemeguid : *const windows_core::GUID, subgroupofpowersettingsguid : *const windows_core::GUID, powersettingguid : *const windows_core::GUID, acvalueindex : u32) -> super::super::Foundation:: WIN32_ERROR); PowerWriteACValueIndex(rootpowerkey.param().abi(), schemeguid, core::mem::transmute(subgroupofpowersettingsguid.unwrap_or(std::ptr::null())), core::mem::transmute(powersettingguid.unwrap_or(std::ptr::null())), acvalueindex) } #[cfg(feature = "Win32_System_Registry")] @@ -959,16 +959,25 @@ pub const MonitorRequestTypeToggleOn: POWER_MONITOR_REQUEST_TYPE = POWER_MONITOR pub const NotifyUserModeLegacyPowerEvent: POWER_INFORMATION_LEVEL = POWER_INFORMATION_LEVEL(47i32); pub const NotifyUserPowerSetting: POWER_INFORMATION_LEVEL = POWER_INFORMATION_LEVEL(26i32); pub const PASSIVE_COOLING: u32 = 1u32; -pub const PDCAP_S0_SUPPORTED: u32 = 65536u32; -pub const PDCAP_S1_SUPPORTED: u32 = 131072u32; -pub const PDCAP_S2_SUPPORTED: u32 = 262144u32; -pub const PDCAP_S3_SUPPORTED: u32 = 524288u32; -pub const PDCAP_S4_SUPPORTED: u32 = 16777216u32; -pub const PDCAP_S5_SUPPORTED: u32 = 33554432u32; -pub const PDCAP_WAKE_FROM_S0_SUPPORTED: u32 = 1048576u32; -pub const PDCAP_WAKE_FROM_S1_SUPPORTED: u32 = 2097152u32; -pub const PDCAP_WAKE_FROM_S2_SUPPORTED: u32 = 4194304u32; -pub const PDCAP_WAKE_FROM_S3_SUPPORTED: u32 = 8388608u32; +pub const PDCAP_D0_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(1u32); +pub const PDCAP_D1_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(2u32); +pub const PDCAP_D2_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(4u32); +pub const PDCAP_D3_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(8u32); +pub const PDCAP_S0_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(65536u32); +pub const PDCAP_S1_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(131072u32); +pub const PDCAP_S2_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(262144u32); +pub const PDCAP_S3_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(524288u32); +pub const PDCAP_S4_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(16777216u32); +pub const PDCAP_S5_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(33554432u32); +pub const PDCAP_WAKE_FROM_D0_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(16u32); +pub const PDCAP_WAKE_FROM_D1_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(32u32); +pub const PDCAP_WAKE_FROM_D2_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(64u32); +pub const PDCAP_WAKE_FROM_D3_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(128u32); +pub const PDCAP_WAKE_FROM_S0_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(1048576u32); +pub const PDCAP_WAKE_FROM_S1_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(2097152u32); +pub const PDCAP_WAKE_FROM_S2_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(4194304u32); +pub const PDCAP_WAKE_FROM_S3_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(8388608u32); +pub const PDCAP_WARM_EJECT_SUPPORTED: DEVICE_POWER_CAPABILITIES = DEVICE_POWER_CAPABILITIES(256u32); pub const POWER_ATTRIBUTE_HIDE: u32 = 1u32; pub const POWER_ATTRIBUTE_SHOW_AOAC: u32 = 2u32; pub const POWER_FORCE_TRIGGER_RESET: POWER_ACTION_POLICY_EVENT_CODE = POWER_ACTION_POLICY_EVENT_CODE(2147483648u32); @@ -1220,6 +1229,50 @@ impl core::fmt::Debug for BATTERY_SET_INFORMATION_LEVEL { } #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] +pub struct DEVICE_POWER_CAPABILITIES(pub u32); +impl windows_core::TypeKind for DEVICE_POWER_CAPABILITIES { + type TypeKind = windows_core::CopyType; +} +impl core::fmt::Debug for DEVICE_POWER_CAPABILITIES { + fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { + f.debug_tuple("DEVICE_POWER_CAPABILITIES").field(&self.0).finish() + } +} +impl DEVICE_POWER_CAPABILITIES { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for DEVICE_POWER_CAPABILITIES { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for DEVICE_POWER_CAPABILITIES { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for DEVICE_POWER_CAPABILITIES { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for DEVICE_POWER_CAPABILITIES { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for DEVICE_POWER_CAPABILITIES { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} +#[repr(transparent)] +#[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct DEVICE_POWER_STATE(pub i32); impl windows_core::TypeKind for DEVICE_POWER_STATE { type TypeKind = windows_core::CopyType; @@ -1952,6 +2005,7 @@ impl HPOWERNOTIFY { } } impl windows_core::Free for HPOWERNOTIFY { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = UnregisterPowerSettingNotification(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/Registry/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Registry/mod.rs index bfe962461f..ebc6a8eae7 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Registry/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Registry/mod.rs @@ -1975,13 +1975,14 @@ impl Default for DSKTLSYSTEMTIME { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HKEY(pub isize); +pub struct HKEY(pub *mut core::ffi::c_void); impl HKEY { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HKEY { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = RegCloseKey(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/RemoteDesktop/mod.rs b/crates/libs/windows/src/Windows/Win32/System/RemoteDesktop/mod.rs index d145d7328c..6fac9791cd 100644 --- a/crates/libs/windows/src/Windows/Win32/System/RemoteDesktop/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/RemoteDesktop/mod.rs @@ -80,6 +80,7 @@ where windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateListenersW(hserver : super::super::Foundation:: HANDLE, preserved : *const core::ffi::c_void, reserved : u32, plisteners : *mut *mut u16, pcount : *mut u32) -> super::super::Foundation:: BOOL); WTSEnumerateListenersW(hserver.param().abi(), preserved, reserved, core::mem::transmute(plisteners.unwrap_or(std::ptr::null_mut())), pcount).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn WTSEnumerateProcessesA(hserver: P0, reserved: u32, version: u32, ppprocessinfo: *mut *mut WTS_PROCESS_INFOA, pcount: *mut u32) -> windows_core::Result<()> where @@ -104,6 +105,7 @@ where windows_targets::link!("wtsapi32.dll" "system" fn WTSEnumerateProcessesExW(hserver : super::super::Foundation:: HANDLE, plevel : *mut u32, sessionid : u32, ppprocessinfo : *mut windows_core::PWSTR, pcount : *mut u32) -> super::super::Foundation:: BOOL); WTSEnumerateProcessesExW(hserver.param().abi(), plevel, sessionid, ppprocessinfo, pcount).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn WTSEnumerateProcessesW(hserver: P0, reserved: u32, version: u32, ppprocessinfo: *mut *mut WTS_PROCESS_INFOW, pcount: *mut u32) -> windows_core::Result<()> where @@ -7092,44 +7094,51 @@ impl Default for WTS_POLICY_DATA { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct WTS_PROCESS_INFOA { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_core::PSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for WTS_PROCESS_INFOA { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for WTS_PROCESS_INFOA { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct WTS_PROCESS_INFOW { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_core::PWSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for WTS_PROCESS_INFOW { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for WTS_PROCESS_INFOW { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct WTS_PROCESS_INFO_EXA { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_core::PSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, pub NumberOfThreads: u32, pub HandleCount: u32, pub PagefileUsage: u32, @@ -7139,21 +7148,24 @@ pub struct WTS_PROCESS_INFO_EXA { pub UserTime: i64, pub KernelTime: i64, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for WTS_PROCESS_INFO_EXA { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for WTS_PROCESS_INFO_EXA { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct WTS_PROCESS_INFO_EXW { pub SessionId: u32, pub ProcessId: u32, pub pProcessName: windows_core::PWSTR, - pub pUserSid: super::super::Foundation::PSID, + pub pUserSid: super::super::Security::PSID, pub NumberOfThreads: u32, pub HandleCount: u32, pub PagefileUsage: u32, @@ -7163,9 +7175,11 @@ pub struct WTS_PROCESS_INFO_EXW { pub UserTime: i64, pub KernelTime: i64, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for WTS_PROCESS_INFO_EXW { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for WTS_PROCESS_INFO_EXW { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/System/Rpc/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Rpc/mod.rs index ce4d3b2434..d04fd57b66 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Rpc/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Rpc/mod.rs @@ -3268,11 +3268,14 @@ pub const RPC_SYSTEM_HANDLE_FREE_ALL: u32 = 3u32; pub const RPC_SYSTEM_HANDLE_FREE_ERROR_ON_CLOSE: u32 = 4u32; pub const RPC_SYSTEM_HANDLE_FREE_RETRIEVED: u32 = 2u32; pub const RPC_SYSTEM_HANDLE_FREE_UNRETRIEVED: u32 = 1u32; +pub const RPC_S_ACCESS_DENIED: RPC_STATUS = RPC_STATUS(5i32); pub const RPC_S_ADDRESS_ERROR: RPC_STATUS = RPC_STATUS(1768i32); pub const RPC_S_ALREADY_LISTENING: RPC_STATUS = RPC_STATUS(1713i32); pub const RPC_S_ALREADY_REGISTERED: RPC_STATUS = RPC_STATUS(1711i32); +pub const RPC_S_ASYNC_CALL_PENDING: RPC_STATUS = RPC_STATUS(997i32); pub const RPC_S_BINDING_HAS_NO_AUTH: RPC_STATUS = RPC_STATUS(1746i32); pub const RPC_S_BINDING_INCOMPLETE: RPC_STATUS = RPC_STATUS(1819i32); +pub const RPC_S_BUFFER_TOO_SMALL: RPC_STATUS = RPC_STATUS(122i32); pub const RPC_S_CALL_CANCELLED: RPC_STATUS = RPC_STATUS(1818i32); pub const RPC_S_CALL_FAILED: RPC_STATUS = RPC_STATUS(1726i32); pub const RPC_S_CALL_FAILED_DNE: RPC_STATUS = RPC_STATUS(1727i32); @@ -3296,18 +3299,21 @@ pub const RPC_S_INCOMPLETE_NAME: RPC_STATUS = RPC_STATUS(1755i32); pub const RPC_S_INTERFACE_NOT_EXPORTED: RPC_STATUS = RPC_STATUS(1924i32); pub const RPC_S_INTERFACE_NOT_FOUND: RPC_STATUS = RPC_STATUS(1759i32); pub const RPC_S_INTERNAL_ERROR: RPC_STATUS = RPC_STATUS(1766i32); +pub const RPC_S_INVALID_ARG: RPC_STATUS = RPC_STATUS(87i32); pub const RPC_S_INVALID_ASYNC_CALL: RPC_STATUS = RPC_STATUS(1915i32); pub const RPC_S_INVALID_ASYNC_HANDLE: RPC_STATUS = RPC_STATUS(1914i32); pub const RPC_S_INVALID_AUTH_IDENTITY: RPC_STATUS = RPC_STATUS(1749i32); pub const RPC_S_INVALID_BINDING: RPC_STATUS = RPC_STATUS(1702i32); pub const RPC_S_INVALID_BOUND: RPC_STATUS = RPC_STATUS(1734i32); pub const RPC_S_INVALID_ENDPOINT_FORMAT: RPC_STATUS = RPC_STATUS(1706i32); +pub const RPC_S_INVALID_LEVEL: RPC_STATUS = RPC_STATUS(87i32); pub const RPC_S_INVALID_NAF_ID: RPC_STATUS = RPC_STATUS(1763i32); pub const RPC_S_INVALID_NAME_SYNTAX: RPC_STATUS = RPC_STATUS(1736i32); pub const RPC_S_INVALID_NETWORK_OPTIONS: RPC_STATUS = RPC_STATUS(1724i32); pub const RPC_S_INVALID_NET_ADDR: RPC_STATUS = RPC_STATUS(1707i32); pub const RPC_S_INVALID_OBJECT: RPC_STATUS = RPC_STATUS(1900i32); pub const RPC_S_INVALID_RPC_PROTSEQ: RPC_STATUS = RPC_STATUS(1704i32); +pub const RPC_S_INVALID_SECURITY_DESC: RPC_STATUS = RPC_STATUS(1338i32); pub const RPC_S_INVALID_STRING_BINDING: RPC_STATUS = RPC_STATUS(1700i32); pub const RPC_S_INVALID_STRING_UUID: RPC_STATUS = RPC_STATUS(1705i32); pub const RPC_S_INVALID_TAG: RPC_STATUS = RPC_STATUS(1733i32); @@ -3319,6 +3325,7 @@ pub const RPC_S_NOTHING_TO_EXPORT: RPC_STATUS = RPC_STATUS(1754i32); pub const RPC_S_NOT_ALL_OBJS_EXPORTED: RPC_STATUS = RPC_STATUS(1923i32); pub const RPC_S_NOT_ALL_OBJS_UNEXPORTED: RPC_STATUS = RPC_STATUS(1758i32); pub const RPC_S_NOT_CANCELLED: RPC_STATUS = RPC_STATUS(1826i32); +pub const RPC_S_NOT_ENOUGH_QUOTA: RPC_STATUS = RPC_STATUS(1816i32); pub const RPC_S_NOT_LISTENING: RPC_STATUS = RPC_STATUS(1715i32); pub const RPC_S_NOT_RPC_ERROR: RPC_STATUS = RPC_STATUS(1823i32); pub const RPC_S_NO_BINDINGS: RPC_STATUS = RPC_STATUS(1718i32); @@ -3334,7 +3341,9 @@ pub const RPC_S_NO_PROTSEQS: RPC_STATUS = RPC_STATUS(1719i32); pub const RPC_S_NO_PROTSEQS_REGISTERED: RPC_STATUS = RPC_STATUS(1714i32); pub const RPC_S_OBJECT_NOT_FOUND: RPC_STATUS = RPC_STATUS(1710i32); pub const RPC_S_OK: RPC_STATUS = RPC_STATUS(0i32); +pub const RPC_S_OUT_OF_MEMORY: RPC_STATUS = RPC_STATUS(14i32); pub const RPC_S_OUT_OF_RESOURCES: RPC_STATUS = RPC_STATUS(1721i32); +pub const RPC_S_OUT_OF_THREADS: RPC_STATUS = RPC_STATUS(164i32); pub const RPC_S_PRF_ELT_NOT_ADDED: RPC_STATUS = RPC_STATUS(1926i32); pub const RPC_S_PRF_ELT_NOT_REMOVED: RPC_STATUS = RPC_STATUS(1927i32); pub const RPC_S_PROCNUM_OUT_OF_RANGE: RPC_STATUS = RPC_STATUS(1745i32); @@ -3343,13 +3352,16 @@ pub const RPC_S_PROTOCOL_ERROR: RPC_STATUS = RPC_STATUS(1728i32); pub const RPC_S_PROTSEQ_NOT_FOUND: RPC_STATUS = RPC_STATUS(1744i32); pub const RPC_S_PROTSEQ_NOT_SUPPORTED: RPC_STATUS = RPC_STATUS(1703i32); pub const RPC_S_PROXY_ACCESS_DENIED: RPC_STATUS = RPC_STATUS(1729i32); +pub const RPC_S_RUNTIME_UNINITIALIZED: RPC_STATUS = RPC_STATUS(1i32); pub const RPC_S_SEC_PKG_ERROR: RPC_STATUS = RPC_STATUS(1825i32); pub const RPC_S_SEND_INCOMPLETE: RPC_STATUS = RPC_STATUS(1913i32); +pub const RPC_S_SERVER_OUT_OF_MEMORY: RPC_STATUS = RPC_STATUS(1130i32); pub const RPC_S_SERVER_TOO_BUSY: RPC_STATUS = RPC_STATUS(1723i32); pub const RPC_S_SERVER_UNAVAILABLE: RPC_STATUS = RPC_STATUS(1722i32); pub const RPC_S_STRING_TOO_LONG: RPC_STATUS = RPC_STATUS(1743i32); pub const RPC_S_SYSTEM_HANDLE_COUNT_EXCEEDED: RPC_STATUS = RPC_STATUS(1835i32); pub const RPC_S_SYSTEM_HANDLE_TYPE_MISMATCH: RPC_STATUS = RPC_STATUS(1836i32); +pub const RPC_S_TIMEOUT: RPC_STATUS = RPC_STATUS(1460i32); pub const RPC_S_TYPE_ALREADY_REGISTERED: RPC_STATUS = RPC_STATUS(1712i32); pub const RPC_S_UNKNOWN_AUTHN_LEVEL: RPC_STATUS = RPC_STATUS(1748i32); pub const RPC_S_UNKNOWN_AUTHN_SERVICE: RPC_STATUS = RPC_STATUS(1747i32); @@ -3357,6 +3369,7 @@ pub const RPC_S_UNKNOWN_AUTHN_TYPE: RPC_STATUS = RPC_STATUS(1741i32); pub const RPC_S_UNKNOWN_AUTHZ_SERVICE: RPC_STATUS = RPC_STATUS(1750i32); pub const RPC_S_UNKNOWN_IF: RPC_STATUS = RPC_STATUS(1717i32); pub const RPC_S_UNKNOWN_MGR_TYPE: RPC_STATUS = RPC_STATUS(1716i32); +pub const RPC_S_UNKNOWN_PRINCIPAL: RPC_STATUS = RPC_STATUS(1332i32); pub const RPC_S_UNSUPPORTED_AUTHN_LEVEL: RPC_STATUS = RPC_STATUS(1821i32); pub const RPC_S_UNSUPPORTED_NAME_SYNTAX: RPC_STATUS = RPC_STATUS(1737i32); pub const RPC_S_UNSUPPORTED_TRANS_SYN: RPC_STATUS = RPC_STATUS(1730i32); diff --git a/crates/libs/windows/src/Windows/Win32/System/Services/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Services/mod.rs index 9c13ad68ad..23df6d8914 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Services/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Services/mod.rs @@ -1,26 +1,23 @@ -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ChangeServiceConfig2A(hservice: P0, dwinfolevel: SERVICE_CONFIG, lpinfo: Option<*const core::ffi::c_void>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2A(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2A(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); ChangeServiceConfig2A(hservice.param().abi(), dwinfolevel, core::mem::transmute(lpinfo.unwrap_or(std::ptr::null()))).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ChangeServiceConfig2W(hservice: P0, dwinfolevel: SERVICE_CONFIG, lpinfo: Option<*const core::ffi::c_void>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2W(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfig2W(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpinfo : *const core::ffi::c_void) -> super::super::Foundation:: BOOL); ChangeServiceConfig2W(hservice.param().abi(), dwinfolevel, core::mem::transmute(lpinfo.unwrap_or(std::ptr::null()))).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ChangeServiceConfigA(hservice: P0, dwservicetype: ENUM_SERVICE_TYPE, dwstarttype: SERVICE_START_TYPE, dwerrorcontrol: SERVICE_ERROR, lpbinarypathname: P1, lploadordergroup: P2, lpdwtagid: Option<*mut u32>, lpdependencies: P3, lpservicestartname: P4, lppassword: P5, lpdisplayname: P6) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, @@ -28,14 +25,13 @@ where P5: windows_core::Param, P6: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigA(hservice : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCSTR, lploadordergroup : windows_core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCSTR, lpservicestartname : windows_core::PCSTR, lppassword : windows_core::PCSTR, lpdisplayname : windows_core::PCSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigA(hservice : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCSTR, lploadordergroup : windows_core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCSTR, lpservicestartname : windows_core::PCSTR, lppassword : windows_core::PCSTR, lpdisplayname : windows_core::PCSTR) -> super::super::Foundation:: BOOL); ChangeServiceConfigA(hservice.param().abi(), dwservicetype, dwstarttype, dwerrorcontrol, lpbinarypathname.param().abi(), lploadordergroup.param().abi(), core::mem::transmute(lpdwtagid.unwrap_or(std::ptr::null_mut())), lpdependencies.param().abi(), lpservicestartname.param().abi(), lppassword.param().abi(), lpdisplayname.param().abi()).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ChangeServiceConfigW(hservice: P0, dwservicetype: ENUM_SERVICE_TYPE, dwstarttype: SERVICE_START_TYPE, dwerrorcontrol: SERVICE_ERROR, lpbinarypathname: P1, lploadordergroup: P2, lpdwtagid: Option<*mut u32>, lpdependencies: P3, lpservicestartname: P4, lppassword: P5, lpdisplayname: P6) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, @@ -43,50 +39,45 @@ where P5: windows_core::Param, P6: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigW(hservice : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCWSTR, lploadordergroup : windows_core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCWSTR, lpservicestartname : windows_core::PCWSTR, lppassword : windows_core::PCWSTR, lpdisplayname : windows_core::PCWSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ChangeServiceConfigW(hservice : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCWSTR, lploadordergroup : windows_core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCWSTR, lpservicestartname : windows_core::PCWSTR, lppassword : windows_core::PCWSTR, lpdisplayname : windows_core::PCWSTR) -> super::super::Foundation:: BOOL); ChangeServiceConfigW(hservice.param().abi(), dwservicetype, dwstarttype, dwerrorcontrol, lpbinarypathname.param().abi(), lploadordergroup.param().abi(), core::mem::transmute(lpdwtagid.unwrap_or(std::ptr::null_mut())), lpdependencies.param().abi(), lpservicestartname.param().abi(), lppassword.param().abi(), lpdisplayname.param().abi()).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn CloseServiceHandle(hscobject: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn CloseServiceHandle(hscobject : super::super::Security:: SC_HANDLE) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn CloseServiceHandle(hscobject : SC_HANDLE) -> super::super::Foundation:: BOOL); CloseServiceHandle(hscobject.param().abi()).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ControlService(hservice: P0, dwcontrol: u32, lpservicestatus: *mut SERVICE_STATUS) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ControlService(hservice : super::super::Security:: SC_HANDLE, dwcontrol : u32, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ControlService(hservice : SC_HANDLE, dwcontrol : u32, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); ControlService(hservice.param().abi(), dwcontrol, lpservicestatus).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ControlServiceExA(hservice: P0, dwcontrol: u32, dwinfolevel: u32, pcontrolparams: *mut core::ffi::c_void) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ControlServiceExA(hservice : super::super::Security:: SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ControlServiceExA(hservice : SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); ControlServiceExA(hservice.param().abi(), dwcontrol, dwinfolevel, pcontrolparams).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn ControlServiceExW(hservice: P0, dwcontrol: u32, dwinfolevel: u32, pcontrolparams: *mut core::ffi::c_void) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn ControlServiceExW(hservice : super::super::Security:: SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn ControlServiceExW(hservice : SC_HANDLE, dwcontrol : u32, dwinfolevel : u32, pcontrolparams : *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); ControlServiceExW(hservice.param().abi(), dwcontrol, dwinfolevel, pcontrolparams).ok() } -#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn CreateServiceA(hscmanager: P0, lpservicename: P1, lpdisplayname: P2, dwdesiredaccess: u32, dwservicetype: ENUM_SERVICE_TYPE, dwstarttype: SERVICE_START_TYPE, dwerrorcontrol: SERVICE_ERROR, lpbinarypathname: P3, lploadordergroup: P4, lpdwtagid: Option<*mut u32>, lpdependencies: P5, lpservicestartname: P6, lppassword: P7) -> windows_core::Result +pub unsafe fn CreateServiceA(hscmanager: P0, lpservicename: P1, lpdisplayname: P2, dwdesiredaccess: u32, dwservicetype: ENUM_SERVICE_TYPE, dwstarttype: SERVICE_START_TYPE, dwerrorcontrol: SERVICE_ERROR, lpbinarypathname: P3, lploadordergroup: P4, lpdwtagid: Option<*mut u32>, lpdependencies: P5, lpservicestartname: P6, lppassword: P7) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, @@ -95,15 +86,14 @@ where P6: windows_core::Param, P7: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn CreateServiceA(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_core::PCSTR, lpdisplayname : windows_core::PCSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCSTR, lploadordergroup : windows_core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCSTR, lpservicestartname : windows_core::PCSTR, lppassword : windows_core::PCSTR) -> super::super::Security:: SC_HANDLE); + windows_targets::link!("advapi32.dll" "system" fn CreateServiceA(hscmanager : SC_HANDLE, lpservicename : windows_core::PCSTR, lpdisplayname : windows_core::PCSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCSTR, lploadordergroup : windows_core::PCSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCSTR, lpservicestartname : windows_core::PCSTR, lppassword : windows_core::PCSTR) -> SC_HANDLE); let result__ = CreateServiceA(hscmanager.param().abi(), lpservicename.param().abi(), lpdisplayname.param().abi(), dwdesiredaccess, dwservicetype, dwstarttype, dwerrorcontrol, lpbinarypathname.param().abi(), lploadordergroup.param().abi(), core::mem::transmute(lpdwtagid.unwrap_or(std::ptr::null_mut())), lpdependencies.param().abi(), lpservicestartname.param().abi(), lppassword.param().abi()); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } -#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn CreateServiceW(hscmanager: P0, lpservicename: P1, lpdisplayname: P2, dwdesiredaccess: u32, dwservicetype: ENUM_SERVICE_TYPE, dwstarttype: SERVICE_START_TYPE, dwerrorcontrol: SERVICE_ERROR, lpbinarypathname: P3, lploadordergroup: P4, lpdwtagid: Option<*mut u32>, lpdependencies: P5, lpservicestartname: P6, lppassword: P7) -> windows_core::Result +pub unsafe fn CreateServiceW(hscmanager: P0, lpservicename: P1, lpdisplayname: P2, dwdesiredaccess: u32, dwservicetype: ENUM_SERVICE_TYPE, dwstarttype: SERVICE_START_TYPE, dwerrorcontrol: SERVICE_ERROR, lpbinarypathname: P3, lploadordergroup: P4, lpdwtagid: Option<*mut u32>, lpdependencies: P5, lpservicestartname: P6, lppassword: P7) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, P3: windows_core::Param, @@ -112,73 +102,66 @@ where P6: windows_core::Param, P7: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn CreateServiceW(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_core::PCWSTR, lpdisplayname : windows_core::PCWSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCWSTR, lploadordergroup : windows_core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCWSTR, lpservicestartname : windows_core::PCWSTR, lppassword : windows_core::PCWSTR) -> super::super::Security:: SC_HANDLE); + windows_targets::link!("advapi32.dll" "system" fn CreateServiceW(hscmanager : SC_HANDLE, lpservicename : windows_core::PCWSTR, lpdisplayname : windows_core::PCWSTR, dwdesiredaccess : u32, dwservicetype : ENUM_SERVICE_TYPE, dwstarttype : SERVICE_START_TYPE, dwerrorcontrol : SERVICE_ERROR, lpbinarypathname : windows_core::PCWSTR, lploadordergroup : windows_core::PCWSTR, lpdwtagid : *mut u32, lpdependencies : windows_core::PCWSTR, lpservicestartname : windows_core::PCWSTR, lppassword : windows_core::PCWSTR) -> SC_HANDLE); let result__ = CreateServiceW(hscmanager.param().abi(), lpservicename.param().abi(), lpdisplayname.param().abi(), dwdesiredaccess, dwservicetype, dwstarttype, dwerrorcontrol, lpbinarypathname.param().abi(), lploadordergroup.param().abi(), core::mem::transmute(lpdwtagid.unwrap_or(std::ptr::null_mut())), lpdependencies.param().abi(), lpservicestartname.param().abi(), lppassword.param().abi()); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn DeleteService(hservice: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn DeleteService(hservice : super::super::Security:: SC_HANDLE) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn DeleteService(hservice : SC_HANDLE) -> super::super::Foundation:: BOOL); DeleteService(hservice.param().abi()).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EnumDependentServicesA(hservice: P0, dwservicestate: ENUM_SERVICE_STATE, lpservices: Option<*mut ENUM_SERVICE_STATUSA>, cbbufsize: u32, pcbbytesneeded: *mut u32, lpservicesreturned: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesA(hservice : super::super::Security:: SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesA(hservice : SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); EnumDependentServicesA(hservice.param().abi(), dwservicestate, core::mem::transmute(lpservices.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded, lpservicesreturned).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EnumDependentServicesW(hservice: P0, dwservicestate: ENUM_SERVICE_STATE, lpservices: Option<*mut ENUM_SERVICE_STATUSW>, cbbufsize: u32, pcbbytesneeded: *mut u32, lpservicesreturned: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesW(hservice : super::super::Security:: SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EnumDependentServicesW(hservice : SC_HANDLE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32) -> super::super::Foundation:: BOOL); EnumDependentServicesW(hservice.param().abi(), dwservicestate, core::mem::transmute(lpservices.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded, lpservicesreturned).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EnumServicesStatusA(hscmanager: P0, dwservicetype: ENUM_SERVICE_TYPE, dwservicestate: ENUM_SERVICE_STATE, lpservices: Option<*mut ENUM_SERVICE_STATUSA>, cbbufsize: u32, pcbbytesneeded: *mut u32, lpservicesreturned: *mut u32, lpresumehandle: Option<*mut u32>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusA(hscmanager : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusA(hscmanager : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); EnumServicesStatusA(hscmanager.param().abi(), dwservicetype, dwservicestate, core::mem::transmute(lpservices.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded, lpservicesreturned, core::mem::transmute(lpresumehandle.unwrap_or(std::ptr::null_mut()))).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EnumServicesStatusExA(hscmanager: P0, infolevel: SC_ENUM_TYPE, dwservicetype: ENUM_SERVICE_TYPE, dwservicestate: ENUM_SERVICE_STATE, lpservices: Option<&mut [u8]>, pcbbytesneeded: *mut u32, lpservicesreturned: *mut u32, lpresumehandle: Option<*mut u32>, pszgroupname: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExA(hscmanager : super::super::Security:: SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_core::PCSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExA(hscmanager : SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_core::PCSTR) -> super::super::Foundation:: BOOL); EnumServicesStatusExA(hscmanager.param().abi(), infolevel, dwservicetype, dwservicestate, core::mem::transmute(lpservices.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpservices.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbbytesneeded, lpservicesreturned, core::mem::transmute(lpresumehandle.unwrap_or(std::ptr::null_mut())), pszgroupname.param().abi()).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EnumServicesStatusExW(hscmanager: P0, infolevel: SC_ENUM_TYPE, dwservicetype: ENUM_SERVICE_TYPE, dwservicestate: ENUM_SERVICE_STATE, lpservices: Option<&mut [u8]>, pcbbytesneeded: *mut u32, lpservicesreturned: *mut u32, lpresumehandle: Option<*mut u32>, pszgroupname: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExW(hscmanager : super::super::Security:: SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_core::PCWSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusExW(hscmanager : SC_HANDLE, infolevel : SC_ENUM_TYPE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32, pszgroupname : windows_core::PCWSTR) -> super::super::Foundation:: BOOL); EnumServicesStatusExW(hscmanager.param().abi(), infolevel, dwservicetype, dwservicestate, core::mem::transmute(lpservices.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpservices.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbbytesneeded, lpservicesreturned, core::mem::transmute(lpresumehandle.unwrap_or(std::ptr::null_mut())), pszgroupname.param().abi()).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn EnumServicesStatusW(hscmanager: P0, dwservicetype: ENUM_SERVICE_TYPE, dwservicestate: ENUM_SERVICE_STATE, lpservices: Option<*mut ENUM_SERVICE_STATUSW>, cbbufsize: u32, pcbbytesneeded: *mut u32, lpservicesreturned: *mut u32, lpresumehandle: Option<*mut u32>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusW(hscmanager : super::super::Security:: SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn EnumServicesStatusW(hscmanager : SC_HANDLE, dwservicetype : ENUM_SERVICE_TYPE, dwservicestate : ENUM_SERVICE_STATE, lpservices : *mut ENUM_SERVICE_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32, lpservicesreturned : *mut u32, lpresumehandle : *mut u32) -> super::super::Foundation:: BOOL); EnumServicesStatusW(hscmanager.param().abi(), dwservicetype, dwservicestate, core::mem::transmute(lpservices.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded, lpservicesreturned, core::mem::transmute(lpresumehandle.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] @@ -189,44 +172,40 @@ where windows_targets::link!("api-ms-win-service-core-l1-1-4.dll" "system" fn GetServiceDirectory(hservicestatus : SERVICE_STATUS_HANDLE, edirectorytype : SERVICE_DIRECTORY_TYPE, lppathbuffer : windows_core::PWSTR, cchpathbufferlength : u32, lpcchrequiredbufferlength : *mut u32) -> u32); GetServiceDirectory(hservicestatus.param().abi(), edirectorytype, core::mem::transmute(lppathbuffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lppathbuffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), lpcchrequiredbufferlength) } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn GetServiceDisplayNameA(hscmanager: P0, lpservicename: P1, lpdisplayname: windows_core::PSTR, lpcchbuffer: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameA(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_core::PCSTR, lpdisplayname : windows_core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameA(hscmanager : SC_HANDLE, lpservicename : windows_core::PCSTR, lpdisplayname : windows_core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); GetServiceDisplayNameA(hscmanager.param().abi(), lpservicename.param().abi(), core::mem::transmute(lpdisplayname), lpcchbuffer).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn GetServiceDisplayNameW(hscmanager: P0, lpservicename: P1, lpdisplayname: windows_core::PWSTR, lpcchbuffer: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameW(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_core::PCWSTR, lpdisplayname : windows_core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn GetServiceDisplayNameW(hscmanager : SC_HANDLE, lpservicename : windows_core::PCWSTR, lpdisplayname : windows_core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); GetServiceDisplayNameW(hscmanager.param().abi(), lpservicename.param().abi(), core::mem::transmute(lpdisplayname), lpcchbuffer).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn GetServiceKeyNameA(hscmanager: P0, lpdisplayname: P1, lpservicename: windows_core::PSTR, lpcchbuffer: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameA(hscmanager : super::super::Security:: SC_HANDLE, lpdisplayname : windows_core::PCSTR, lpservicename : windows_core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameA(hscmanager : SC_HANDLE, lpdisplayname : windows_core::PCSTR, lpservicename : windows_core::PSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); GetServiceKeyNameA(hscmanager.param().abi(), lpdisplayname.param().abi(), core::mem::transmute(lpservicename), lpcchbuffer).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn GetServiceKeyNameW(hscmanager: P0, lpdisplayname: P1, lpservicename: windows_core::PWSTR, lpcchbuffer: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameW(hscmanager : super::super::Security:: SC_HANDLE, lpdisplayname : windows_core::PCWSTR, lpservicename : windows_core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn GetServiceKeyNameW(hscmanager : SC_HANDLE, lpdisplayname : windows_core::PCWSTR, lpservicename : windows_core::PWSTR, lpcchbuffer : *mut u32) -> super::super::Foundation:: BOOL); GetServiceKeyNameW(hscmanager.param().abi(), lpdisplayname.param().abi(), core::mem::transmute(lpservicename), lpcchbuffer).ok() } #[cfg(feature = "Win32_System_Registry")] @@ -238,31 +217,29 @@ where windows_targets::link!("api-ms-win-service-core-l1-1-3.dll" "system" fn GetServiceRegistryStateKey(servicestatushandle : SERVICE_STATUS_HANDLE, statetype : SERVICE_REGISTRY_STATE_TYPE, accessmask : u32, servicestatekey : *mut super::Registry:: HKEY) -> u32); GetServiceRegistryStateKey(servicestatushandle.param().abi(), statetype, accessmask, servicestatekey) } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn GetSharedServiceDirectory(servicehandle: P0, directorytype: SERVICE_SHARED_DIRECTORY_TYPE, pathbuffer: Option<&mut [u16]>, requiredbufferlength: *mut u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceDirectory(servicehandle : super::super::Security:: SC_HANDLE, directorytype : SERVICE_SHARED_DIRECTORY_TYPE, pathbuffer : windows_core::PWSTR, pathbufferlength : u32, requiredbufferlength : *mut u32) -> u32); + windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceDirectory(servicehandle : SC_HANDLE, directorytype : SERVICE_SHARED_DIRECTORY_TYPE, pathbuffer : windows_core::PWSTR, pathbufferlength : u32, requiredbufferlength : *mut u32) -> u32); GetSharedServiceDirectory(servicehandle.param().abi(), directorytype, core::mem::transmute(pathbuffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), pathbuffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), requiredbufferlength) } -#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Registry"))] +#[cfg(feature = "Win32_System_Registry")] #[inline] pub unsafe fn GetSharedServiceRegistryStateKey(servicehandle: P0, statetype: SERVICE_SHARED_REGISTRY_STATE_TYPE, accessmask: u32, servicestatekey: *mut super::Registry::HKEY) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceRegistryStateKey(servicehandle : super::super::Security:: SC_HANDLE, statetype : SERVICE_SHARED_REGISTRY_STATE_TYPE, accessmask : u32, servicestatekey : *mut super::Registry:: HKEY) -> u32); + windows_targets::link!("api-ms-win-service-core-l1-1-5.dll" "system" fn GetSharedServiceRegistryStateKey(servicehandle : SC_HANDLE, statetype : SERVICE_SHARED_REGISTRY_STATE_TYPE, accessmask : u32, servicestatekey : *mut super::Registry:: HKEY) -> u32); GetSharedServiceRegistryStateKey(servicehandle.param().abi(), statetype, accessmask, servicestatekey) } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn LockServiceDatabase(hscmanager: P0) -> *mut core::ffi::c_void where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn LockServiceDatabase(hscmanager : super::super::Security:: SC_HANDLE) -> *mut core::ffi::c_void); + windows_targets::link!("advapi32.dll" "system" fn LockServiceDatabase(hscmanager : SC_HANDLE) -> *mut core::ffi::c_void); LockServiceDatabase(hscmanager.param().abi()) } #[inline] @@ -273,102 +250,92 @@ where windows_targets::link!("advapi32.dll" "system" fn NotifyBootConfigStatus(bootacceptable : super::super::Foundation:: BOOL) -> super::super::Foundation:: BOOL); NotifyBootConfigStatus(bootacceptable.param().abi()).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn NotifyServiceStatusChangeA(hservice: P0, dwnotifymask: SERVICE_NOTIFY, pnotifybuffer: *const SERVICE_NOTIFY_2A) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeA(hservice : super::super::Security:: SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2A) -> u32); + windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeA(hservice : SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2A) -> u32); NotifyServiceStatusChangeA(hservice.param().abi(), dwnotifymask, pnotifybuffer) } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn NotifyServiceStatusChangeW(hservice: P0, dwnotifymask: SERVICE_NOTIFY, pnotifybuffer: *const SERVICE_NOTIFY_2W) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeW(hservice : super::super::Security:: SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2W) -> u32); + windows_targets::link!("advapi32.dll" "system" fn NotifyServiceStatusChangeW(hservice : SC_HANDLE, dwnotifymask : SERVICE_NOTIFY, pnotifybuffer : *const SERVICE_NOTIFY_2W) -> u32); NotifyServiceStatusChangeW(hservice.param().abi(), dwnotifymask, pnotifybuffer) } -#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn OpenSCManagerA(lpmachinename: P0, lpdatabasename: P1, dwdesiredaccess: u32) -> windows_core::Result +pub unsafe fn OpenSCManagerA(lpmachinename: P0, lpdatabasename: P1, dwdesiredaccess: u32) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerA(lpmachinename : windows_core::PCSTR, lpdatabasename : windows_core::PCSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); + windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerA(lpmachinename : windows_core::PCSTR, lpdatabasename : windows_core::PCSTR, dwdesiredaccess : u32) -> SC_HANDLE); let result__ = OpenSCManagerA(lpmachinename.param().abi(), lpdatabasename.param().abi(), dwdesiredaccess); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } -#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn OpenSCManagerW(lpmachinename: P0, lpdatabasename: P1, dwdesiredaccess: u32) -> windows_core::Result +pub unsafe fn OpenSCManagerW(lpmachinename: P0, lpdatabasename: P1, dwdesiredaccess: u32) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerW(lpmachinename : windows_core::PCWSTR, lpdatabasename : windows_core::PCWSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); + windows_targets::link!("advapi32.dll" "system" fn OpenSCManagerW(lpmachinename : windows_core::PCWSTR, lpdatabasename : windows_core::PCWSTR, dwdesiredaccess : u32) -> SC_HANDLE); let result__ = OpenSCManagerW(lpmachinename.param().abi(), lpdatabasename.param().abi(), dwdesiredaccess); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } -#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn OpenServiceA(hscmanager: P0, lpservicename: P1, dwdesiredaccess: u32) -> windows_core::Result +pub unsafe fn OpenServiceA(hscmanager: P0, lpservicename: P1, dwdesiredaccess: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn OpenServiceA(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_core::PCSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); + windows_targets::link!("advapi32.dll" "system" fn OpenServiceA(hscmanager : SC_HANDLE, lpservicename : windows_core::PCSTR, dwdesiredaccess : u32) -> SC_HANDLE); let result__ = OpenServiceA(hscmanager.param().abi(), lpservicename.param().abi(), dwdesiredaccess); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } -#[cfg(feature = "Win32_Security")] #[inline] -pub unsafe fn OpenServiceW(hscmanager: P0, lpservicename: P1, dwdesiredaccess: u32) -> windows_core::Result +pub unsafe fn OpenServiceW(hscmanager: P0, lpservicename: P1, dwdesiredaccess: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn OpenServiceW(hscmanager : super::super::Security:: SC_HANDLE, lpservicename : windows_core::PCWSTR, dwdesiredaccess : u32) -> super::super::Security:: SC_HANDLE); + windows_targets::link!("advapi32.dll" "system" fn OpenServiceW(hscmanager : SC_HANDLE, lpservicename : windows_core::PCWSTR, dwdesiredaccess : u32) -> SC_HANDLE); let result__ = OpenServiceW(hscmanager.param().abi(), lpservicename.param().abi(), dwdesiredaccess); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceConfig2A(hservice: P0, dwinfolevel: SERVICE_CONFIG, lpbuffer: Option<&mut [u8]>, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2A(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2A(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceConfig2A(hservice.param().abi(), dwinfolevel, core::mem::transmute(lpbuffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpbuffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbbytesneeded).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceConfig2W(hservice: P0, dwinfolevel: SERVICE_CONFIG, lpbuffer: Option<&mut [u8]>, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2W(hservice : super::super::Security:: SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfig2W(hservice : SC_HANDLE, dwinfolevel : SERVICE_CONFIG, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceConfig2W(hservice.param().abi(), dwinfolevel, core::mem::transmute(lpbuffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpbuffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbbytesneeded).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceConfigA(hservice: P0, lpserviceconfig: Option<*mut QUERY_SERVICE_CONFIGA>, cbbufsize: u32, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigA(hservice : super::super::Security:: SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigA(hservice : SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceConfigA(hservice.param().abi(), core::mem::transmute(lpserviceconfig.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceConfigW(hservice: P0, lpserviceconfig: Option<*mut QUERY_SERVICE_CONFIGW>, cbbufsize: u32, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigW(hservice : super::super::Security:: SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceConfigW(hservice : SC_HANDLE, lpserviceconfig : *mut QUERY_SERVICE_CONFIGW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceConfigW(hservice.param().abi(), core::mem::transmute(lpserviceconfig.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded).ok() } #[inline] @@ -379,49 +346,45 @@ where windows_targets::link!("advapi32.dll" "system" fn QueryServiceDynamicInformation(hservicestatus : SERVICE_STATUS_HANDLE, dwinfolevel : u32, ppdynamicinfo : *mut *mut core::ffi::c_void) -> super::super::Foundation:: BOOL); QueryServiceDynamicInformation(hservicestatus.param().abi(), dwinfolevel, ppdynamicinfo).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceLockStatusA(hscmanager: P0, lplockstatus: Option<*mut QUERY_SERVICE_LOCK_STATUSA>, cbbufsize: u32, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusA(hscmanager : super::super::Security:: SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusA(hscmanager : SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSA, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceLockStatusA(hscmanager.param().abi(), core::mem::transmute(lplockstatus.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceLockStatusW(hscmanager: P0, lplockstatus: Option<*mut QUERY_SERVICE_LOCK_STATUSW>, cbbufsize: u32, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusW(hscmanager : super::super::Security:: SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceLockStatusW(hscmanager : SC_HANDLE, lplockstatus : *mut QUERY_SERVICE_LOCK_STATUSW, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceLockStatusW(hscmanager.param().abi(), core::mem::transmute(lplockstatus.unwrap_or(std::ptr::null_mut())), cbbufsize, pcbbytesneeded).ok() } #[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceObjectSecurity(hservice: P0, dwsecurityinformation: u32, lpsecuritydescriptor: super::super::Security::PSECURITY_DESCRIPTOR, cbbufsize: u32, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceObjectSecurity(hservice : super::super::Security:: SC_HANDLE, dwsecurityinformation : u32, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceObjectSecurity(hservice : SC_HANDLE, dwsecurityinformation : u32, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceObjectSecurity(hservice.param().abi(), dwsecurityinformation, lpsecuritydescriptor, cbbufsize, pcbbytesneeded).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceStatus(hservice: P0, lpservicestatus: *mut SERVICE_STATUS) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatus(hservice : super::super::Security:: SC_HANDLE, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatus(hservice : SC_HANDLE, lpservicestatus : *mut SERVICE_STATUS) -> super::super::Foundation:: BOOL); QueryServiceStatus(hservice.param().abi(), lpservicestatus).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn QueryServiceStatusEx(hservice: P0, infolevel: SC_STATUS_TYPE, lpbuffer: Option<&mut [u8]>, pcbbytesneeded: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatusEx(hservice : super::super::Security:: SC_HANDLE, infolevel : SC_STATUS_TYPE, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn QueryServiceStatusEx(hservice : SC_HANDLE, infolevel : SC_STATUS_TYPE, lpbuffer : *mut u8, cbbufsize : u32, pcbbytesneeded : *mut u32) -> super::super::Foundation:: BOOL); QueryServiceStatusEx(hservice.param().abi(), infolevel, core::mem::transmute(lpbuffer.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpbuffer.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), pcbbytesneeded).ok() } #[inline] @@ -474,10 +437,10 @@ where #[inline] pub unsafe fn SetServiceObjectSecurity(hservice: P0, dwsecurityinformation: super::super::Security::OBJECT_SECURITY_INFORMATION, lpsecuritydescriptor: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn SetServiceObjectSecurity(hservice : super::super::Security:: SC_HANDLE, dwsecurityinformation : super::super::Security:: OBJECT_SECURITY_INFORMATION, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn SetServiceObjectSecurity(hservice : SC_HANDLE, dwsecurityinformation : super::super::Security:: OBJECT_SECURITY_INFORMATION, lpsecuritydescriptor : super::super::Security:: PSECURITY_DESCRIPTOR) -> super::super::Foundation:: BOOL); SetServiceObjectSecurity(hservice.param().abi(), dwsecurityinformation, lpsecuritydescriptor.param().abi()).ok() } #[inline] @@ -488,13 +451,12 @@ where windows_targets::link!("advapi32.dll" "system" fn SetServiceStatus(hservicestatus : SERVICE_STATUS_HANDLE, lpservicestatus : *const SERVICE_STATUS) -> super::super::Foundation:: BOOL); SetServiceStatus(hservicestatus.param().abi(), lpservicestatus).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn StartServiceA(hservice: P0, lpserviceargvectors: Option<&[windows_core::PCSTR]>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn StartServiceA(hservice : super::super::Security:: SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_core::PCSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn StartServiceA(hservice : SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_core::PCSTR) -> super::super::Foundation:: BOOL); StartServiceA(hservice.param().abi(), lpserviceargvectors.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(lpserviceargvectors.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))).ok() } #[inline] @@ -507,22 +469,20 @@ pub unsafe fn StartServiceCtrlDispatcherW(lpservicestarttable: *const SERVICE_TA windows_targets::link!("advapi32.dll" "system" fn StartServiceCtrlDispatcherW(lpservicestarttable : *const SERVICE_TABLE_ENTRYW) -> super::super::Foundation:: BOOL); StartServiceCtrlDispatcherW(lpservicestarttable).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn StartServiceW(hservice: P0, lpserviceargvectors: Option<&[windows_core::PCWSTR]>) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn StartServiceW(hservice : super::super::Security:: SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_core::PCWSTR) -> super::super::Foundation:: BOOL); + windows_targets::link!("advapi32.dll" "system" fn StartServiceW(hservice : SC_HANDLE, dwnumserviceargs : u32, lpserviceargvectors : *const windows_core::PCWSTR) -> super::super::Foundation:: BOOL); StartServiceW(hservice.param().abi(), lpserviceargvectors.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(lpserviceargvectors.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))).ok() } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn SubscribeServiceChangeNotifications(hservice: P0, eeventtype: SC_EVENT_TYPE, pcallback: PSC_NOTIFICATION_CALLBACK, pcallbackcontext: Option<*const core::ffi::c_void>, psubscription: *mut PSC_NOTIFICATION_REGISTRATION) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("sechost.dll" "system" fn SubscribeServiceChangeNotifications(hservice : super::super::Security:: SC_HANDLE, eeventtype : SC_EVENT_TYPE, pcallback : PSC_NOTIFICATION_CALLBACK, pcallbackcontext : *const core::ffi::c_void, psubscription : *mut PSC_NOTIFICATION_REGISTRATION) -> u32); + windows_targets::link!("sechost.dll" "system" fn SubscribeServiceChangeNotifications(hservice : SC_HANDLE, eeventtype : SC_EVENT_TYPE, pcallback : PSC_NOTIFICATION_CALLBACK, pcallbackcontext : *const core::ffi::c_void, psubscription : *mut PSC_NOTIFICATION_REGISTRATION) -> u32); SubscribeServiceChangeNotifications(hservice.param().abi(), eeventtype, pcallback, core::mem::transmute(pcallbackcontext.unwrap_or(std::ptr::null())), psubscription) } #[inline] @@ -538,14 +498,13 @@ where windows_targets::link!("sechost.dll" "system" fn UnsubscribeServiceChangeNotifications(psubscription : PSC_NOTIFICATION_REGISTRATION)); UnsubscribeServiceChangeNotifications(psubscription.param().abi()) } -#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn WaitServiceState(hservice: P0, dwnotify: u32, dwtimeout: u32, hcancelevent: P1) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("advapi32.dll" "system" fn WaitServiceState(hservice : super::super::Security:: SC_HANDLE, dwnotify : u32, dwtimeout : u32, hcancelevent : super::super::Foundation:: HANDLE) -> u32); + windows_targets::link!("advapi32.dll" "system" fn WaitServiceState(hservice : SC_HANDLE, dwnotify : u32, dwtimeout : u32, hcancelevent : super::super::Foundation:: HANDLE) -> u32); WaitServiceState(hservice.param().abi(), dwnotify, dwtimeout, hcancelevent.param().abi()) } pub const CUSTOM_SYSTEM_STATE_CHANGE_EVENT_GUID: windows_core::GUID = windows_core::GUID::from_u128(0x2d7a2816_0c5e_45fc_9ce7_570e5ecde9c9); @@ -1193,6 +1152,30 @@ impl Default for SC_ACTION { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct SC_HANDLE(pub *mut core::ffi::c_void); +impl SC_HANDLE { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for SC_HANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CloseServiceHandle(*self); + } + } +} +impl Default for SC_HANDLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for SC_HANDLE { + type TypeKind = windows_core::CopyType; +} #[repr(C)] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct SERVICE_CONTROL_STATUS_REASON_PARAMSA { @@ -1518,10 +1501,10 @@ impl Default for SERVICE_STATUS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct SERVICE_STATUS_HANDLE(pub isize); +pub struct SERVICE_STATUS_HANDLE(pub *mut core::ffi::c_void); impl SERVICE_STATUS_HANDLE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for SERVICE_STATUS_HANDLE { diff --git a/crates/libs/windows/src/Windows/Win32/System/StationsAndDesktops/mod.rs b/crates/libs/windows/src/Windows/Win32/System/StationsAndDesktops/mod.rs index 3a3e1e5eb6..0c4356909b 100644 --- a/crates/libs/windows/src/Windows/Win32/System/StationsAndDesktops/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/StationsAndDesktops/mod.rs @@ -449,13 +449,14 @@ impl Default for BSMINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDESK(pub isize); +pub struct HDESK(pub *mut core::ffi::c_void); impl HDESK { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HDESK { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = CloseDesktop(*self); @@ -472,13 +473,14 @@ impl windows_core::TypeKind for HDESK { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HWINSTA(pub isize); +pub struct HWINSTA(pub *mut core::ffi::c_void); impl HWINSTA { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HWINSTA { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = CloseWindowStation(*self); diff --git a/crates/libs/windows/src/Windows/Win32/System/SystemServices/mod.rs b/crates/libs/windows/src/Windows/Win32/System/SystemServices/mod.rs index 51e3745748..4d6e6b0e79 100644 --- a/crates/libs/windows/src/Windows/Win32/System/SystemServices/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/SystemServices/mod.rs @@ -1530,15 +1530,6 @@ pub const OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME: windows_core::PCST pub const PARKING_TOPOLOGY_POLICY_DISABLED: u32 = 0u32; pub const PARKING_TOPOLOGY_POLICY_ROUNDROBIN: u32 = 1u32; pub const PARKING_TOPOLOGY_POLICY_SEQUENTIAL: u32 = 2u32; -pub const PDCAP_D0_SUPPORTED: u32 = 1u32; -pub const PDCAP_D1_SUPPORTED: u32 = 2u32; -pub const PDCAP_D2_SUPPORTED: u32 = 4u32; -pub const PDCAP_D3_SUPPORTED: u32 = 8u32; -pub const PDCAP_WAKE_FROM_D0_SUPPORTED: u32 = 16u32; -pub const PDCAP_WAKE_FROM_D1_SUPPORTED: u32 = 32u32; -pub const PDCAP_WAKE_FROM_D2_SUPPORTED: u32 = 64u32; -pub const PDCAP_WAKE_FROM_D3_SUPPORTED: u32 = 128u32; -pub const PDCAP_WARM_EJECT_SUPPORTED: u32 = 256u32; pub const PERFORMANCE_DATA_VERSION: u32 = 1u32; pub const PERFSTATE_POLICY_CHANGE_DECREASE_MAX: u32 = 2u32; pub const PERFSTATE_POLICY_CHANGE_IDEAL: u32 = 0u32; @@ -6759,13 +6750,16 @@ impl Default for TOKEN_BNO_ISOLATION_INFORMATION { } } #[repr(C)] +#[cfg(feature = "Win32_Security")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct TOKEN_SID_INFORMATION { - pub Sid: super::super::Foundation::PSID, + pub Sid: super::super::Security::PSID, } +#[cfg(feature = "Win32_Security")] impl windows_core::TypeKind for TOKEN_SID_INFORMATION { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_Security")] impl Default for TOKEN_SID_INFORMATION { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/System/Threading/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Threading/mod.rs index c784cef137..efe38d49e5 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Threading/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Threading/mod.rs @@ -8,20 +8,22 @@ pub unsafe fn AcquireSRWLockShared(srwlock: *mut SRWLOCK) { windows_targets::link!("kernel32.dll" "system" fn AcquireSRWLockShared(srwlock : *mut SRWLOCK)); AcquireSRWLockShared(srwlock) } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn AddIntegrityLabelToBoundaryDescriptor(boundarydescriptor: *mut super::super::Foundation::HANDLE, integritylabel: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn AddIntegrityLabelToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, integritylabel : super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn AddIntegrityLabelToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, integritylabel : super::super::Security:: PSID) -> super::super::Foundation:: BOOL); AddIntegrityLabelToBoundaryDescriptor(boundarydescriptor, integritylabel.param().abi()).ok() } +#[cfg(feature = "Win32_Security")] #[inline] pub unsafe fn AddSIDToBoundaryDescriptor(boundarydescriptor: *mut super::super::Foundation::HANDLE, requiredsid: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("kernel32.dll" "system" fn AddSIDToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, requiredsid : super::super::Foundation:: PSID) -> super::super::Foundation:: BOOL); + windows_targets::link!("kernel32.dll" "system" fn AddSIDToBoundaryDescriptor(boundarydescriptor : *mut super::super::Foundation:: HANDLE, requiredsid : super::super::Security:: PSID) -> super::super::Foundation:: BOOL); AddSIDToBoundaryDescriptor(boundarydescriptor, requiredsid.param().abi()).ok() } #[inline] @@ -181,13 +183,12 @@ where CancelWaitableTimer(htimer.param().abi()).ok() } #[inline] -pub unsafe fn ChangeTimerQueueTimer(timerqueue: P0, timer: P1, duetime: u32, period: u32) -> windows_core::Result<()> +pub unsafe fn ChangeTimerQueueTimer(timerqueue: P0, timer: super::super::Foundation::HANDLE, duetime: u32, period: u32) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, { windows_targets::link!("kernel32.dll" "system" fn ChangeTimerQueueTimer(timerqueue : super::super::Foundation:: HANDLE, timer : super::super::Foundation:: HANDLE, duetime : u32, period : u32) -> super::super::Foundation:: BOOL); - ChangeTimerQueueTimer(timerqueue.param().abi(), timer.param().abi(), duetime, period).ok() + ChangeTimerQueueTimer(timerqueue.param().abi(), timer, duetime, period).ok() } #[inline] pub unsafe fn ClosePrivateNamespace(handle: P0, flags: u32) -> super::super::Foundation::BOOLEAN @@ -538,14 +539,16 @@ pub unsafe fn CreateThread(lpthreadattributes: Option<*const super::super::Secur (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateThreadpool(reserved: Option<*const core::ffi::c_void>) -> PTP_POOL { +pub unsafe fn CreateThreadpool(reserved: Option<*const core::ffi::c_void>) -> windows_core::Result { windows_targets::link!("kernel32.dll" "system" fn CreateThreadpool(reserved : *const core::ffi::c_void) -> PTP_POOL); - CreateThreadpool(core::mem::transmute(reserved.unwrap_or(std::ptr::null()))) + let result__ = CreateThreadpool(core::mem::transmute(reserved.unwrap_or(std::ptr::null()))); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateThreadpoolCleanupGroup() -> PTP_CLEANUP_GROUP { +pub unsafe fn CreateThreadpoolCleanupGroup() -> windows_core::Result { windows_targets::link!("kernel32.dll" "system" fn CreateThreadpoolCleanupGroup() -> PTP_CLEANUP_GROUP); - CreateThreadpoolCleanupGroup() + let result__ = CreateThreadpoolCleanupGroup(); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn CreateThreadpoolIo(fl: P0, pfnio: PTP_WIN32_IO_CALLBACK, pv: Option<*mut core::ffi::c_void>, pcbe: Option<*const TP_CALLBACK_ENVIRON_V3>) -> windows_core::Result @@ -1000,6 +1003,14 @@ where GetProcessHandleCount(hprocess.param().abi(), pdwhandlecount).ok() } #[inline] +pub unsafe fn GetProcessHandleFromHwnd(hwnd: P0) -> super::super::Foundation::HANDLE +where + P0: windows_core::Param, +{ + windows_targets::link!("oleacc.dll" "system" fn GetProcessHandleFromHwnd(hwnd : super::super::Foundation:: HWND) -> super::super::Foundation:: HANDLE); + GetProcessHandleFromHwnd(hwnd.param().abi()) +} +#[inline] pub unsafe fn GetProcessId(process: P0) -> u32 where P0: windows_core::Param, @@ -2577,6 +2588,7 @@ pub const EXTENDED_STARTUPINFO_PRESENT: PROCESS_CREATION_FLAGS = PROCESS_CREATIO pub const FLS_OUT_OF_INDEXES: u32 = 4294967295u32; pub const GR_GDIOBJECTS: GET_GUI_RESOURCES_FLAGS = GET_GUI_RESOURCES_FLAGS(0u32); pub const GR_GDIOBJECTS_PEAK: GET_GUI_RESOURCES_FLAGS = GET_GUI_RESOURCES_FLAGS(2u32); +pub const GR_GLOBAL: GET_GUI_RESOURCES_FLAGS = GET_GUI_RESOURCES_FLAGS(4294967294u32); pub const GR_USEROBJECTS: GET_GUI_RESOURCES_FLAGS = GET_GUI_RESOURCES_FLAGS(1u32); pub const GR_USEROBJECTS_PEAK: GET_GUI_RESOURCES_FLAGS = GET_GUI_RESOURCES_FLAGS(4u32); pub const HIGH_PRIORITY_CLASS: PROCESS_CREATION_FLAGS = PROCESS_CREATION_FLAGS(128u32); @@ -3645,6 +3657,14 @@ impl LPPROC_THREAD_ATTRIBUTE_LIST { self.0.is_null() } } +impl windows_core::Free for LPPROC_THREAD_ATTRIBUTE_LIST { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + DeleteProcThreadAttributeList(*self); + } + } +} impl Default for LPPROC_THREAD_ATTRIBUTE_LIST { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -3924,6 +3944,19 @@ impl windows_core::TypeKind for PTP_CALLBACK_INSTANCE { #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct PTP_CLEANUP_GROUP(pub isize); +impl PTP_CLEANUP_GROUP { + pub fn is_invalid(&self) -> bool { + self.0 == 0 + } +} +impl windows_core::Free for PTP_CLEANUP_GROUP { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + CloseThreadpoolCleanupGroup(*self); + } + } +} impl Default for PTP_CLEANUP_GROUP { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -3940,6 +3973,14 @@ impl PTP_IO { self.0 == 0 } } +impl windows_core::Free for PTP_IO { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + CloseThreadpoolIo(*self); + } + } +} impl Default for PTP_IO { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -3951,6 +3992,19 @@ impl windows_core::TypeKind for PTP_IO { #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct PTP_POOL(pub isize); +impl PTP_POOL { + pub fn is_invalid(&self) -> bool { + self.0 == 0 + } +} +impl windows_core::Free for PTP_POOL { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + CloseThreadpool(*self); + } + } +} impl Default for PTP_POOL { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -3967,6 +4021,14 @@ impl PTP_TIMER { self.0 == 0 } } +impl windows_core::Free for PTP_TIMER { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + CloseThreadpoolTimer(*self); + } + } +} impl Default for PTP_TIMER { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -3983,6 +4045,14 @@ impl PTP_WAIT { self.0 == 0 } } +impl windows_core::Free for PTP_WAIT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + CloseThreadpoolWait(*self); + } + } +} impl Default for PTP_WAIT { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -3999,6 +4069,14 @@ impl PTP_WORK { self.0 == 0 } } +impl windows_core::Free for PTP_WORK { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + CloseThreadpoolWork(*self); + } + } +} impl Default for PTP_WORK { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/System/Variant/mod.rs b/crates/libs/windows/src/Windows/Win32/System/Variant/mod.rs index 3c63856be5..1aecec1085 100644 --- a/crates/libs/windows/src/Windows/Win32/System/Variant/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/Variant/mod.rs @@ -641,6 +641,39 @@ impl core::fmt::Debug for VARENUM { f.debug_tuple("VARENUM").field(&self.0).finish() } } +impl VARENUM { + pub const fn contains(&self, other: Self) -> bool { + self.0 & other.0 == other.0 + } +} +impl core::ops::BitOr for VARENUM { + type Output = Self; + fn bitor(self, other: Self) -> Self { + Self(self.0 | other.0) + } +} +impl core::ops::BitAnd for VARENUM { + type Output = Self; + fn bitand(self, other: Self) -> Self { + Self(self.0 & other.0) + } +} +impl core::ops::BitOrAssign for VARENUM { + fn bitor_assign(&mut self, other: Self) { + self.0.bitor_assign(other.0) + } +} +impl core::ops::BitAndAssign for VARENUM { + fn bitand_assign(&mut self, other: Self) { + self.0.bitand_assign(other.0) + } +} +impl core::ops::Not for VARENUM { + type Output = Self; + fn not(self) -> Self { + Self(self.0.not()) + } +} #[repr(transparent)] #[derive(PartialEq, Eq, Copy, Clone, Default)] pub struct VAR_CHANGE_FLAGS(pub u16); diff --git a/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/impl.rs b/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/impl.rs index 1c99a2e703..2d82c06d2a 100644 --- a/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/impl.rs @@ -296,7 +296,7 @@ impl ICompositorInterop_Vtbl { #[cfg(feature = "UI_Composition")] pub trait ICompositorInterop2_Impl: Sized { fn CheckCompositionTextureSupport(&self, renderingdevice: Option<&windows_core::IUnknown>) -> windows_core::Result; - fn CreateCompositionTexture(&self, d3dtexture: Option<&windows_core::IUnknown>) -> windows_core::Result; + fn CreateCompositionTexture(&self, d3dtexture: Option<&windows_core::IUnknown>) -> windows_core::Result; } #[cfg(feature = "UI_Composition")] impl windows_core::RuntimeName for ICompositorInterop2 {} diff --git a/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/mod.rs b/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/mod.rs index 447eb2d07c..2437da9428 100644 --- a/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/WinRT/Composition/mod.rs @@ -229,7 +229,7 @@ impl ICompositorInterop2 { (windows_core::Interface::vtable(self).CheckCompositionTextureSupport)(windows_core::Interface::as_raw(self), renderingdevice.param().abi(), &mut result__).map(|| result__) } #[cfg(feature = "UI_Composition")] - pub unsafe fn CreateCompositionTexture(&self, d3dtexture: P0) -> windows_core::Result + pub unsafe fn CreateCompositionTexture(&self, d3dtexture: P0) -> windows_core::Result where P0: windows_core::Param, { diff --git a/crates/libs/windows/src/Windows/Win32/System/WinRT/Metadata/mod.rs b/crates/libs/windows/src/Windows/Win32/System/WinRT/Metadata/mod.rs index ea2a787943..6cf399ba1d 100644 --- a/crates/libs/windows/src/Windows/Win32/System/WinRT/Metadata/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/WinRT/Metadata/mod.rs @@ -20,9 +20,9 @@ pub unsafe fn RoCreatePropertySetSerializer() -> windows_core::Result(extra: P0) where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll" "system" fn RoFreeParameterizedTypeExtra(extra : super:: ROPARAMIIDHANDLE)); + windows_targets::link!("api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll" "system" fn RoFreeParameterizedTypeExtra(extra : ROPARAMIIDHANDLE)); RoFreeParameterizedTypeExtra(extra.param().abi()) } #[inline] @@ -34,11 +34,11 @@ where RoGetMetaDataFile(core::mem::transmute_copy(name), metadatadispenser.param().abi(), core::mem::transmute(metadatafilepath.unwrap_or(std::ptr::null_mut())), core::mem::transmute(metadataimport.unwrap_or(std::ptr::null_mut())), core::mem::transmute(typedeftoken.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] -pub unsafe fn RoGetParameterizedTypeInstanceIID(nameelements: &[windows_core::PCWSTR], metadatalocator: P0, iid: *mut windows_core::GUID, pextra: Option<*mut super::ROPARAMIIDHANDLE>) -> windows_core::Result<()> +pub unsafe fn RoGetParameterizedTypeInstanceIID(nameelements: &[windows_core::PCWSTR], metadatalocator: P0, iid: *mut windows_core::GUID, pextra: Option<*mut ROPARAMIIDHANDLE>) -> windows_core::Result<()> where P0: windows_core::Param, { - windows_targets::link!("api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll" "system" fn RoGetParameterizedTypeInstanceIID(nameelementcount : u32, nameelements : *const windows_core::PCWSTR, metadatalocator : * mut core::ffi::c_void, iid : *mut windows_core::GUID, pextra : *mut super:: ROPARAMIIDHANDLE) -> windows_core::HRESULT); + windows_targets::link!("api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll" "system" fn RoGetParameterizedTypeInstanceIID(nameelementcount : u32, nameelements : *const windows_core::PCWSTR, metadatalocator : * mut core::ffi::c_void, iid : *mut windows_core::GUID, pextra : *mut ROPARAMIIDHANDLE) -> windows_core::HRESULT); RoGetParameterizedTypeInstanceIID(nameelements.len().try_into().unwrap(), core::mem::transmute(nameelements.as_ptr()), metadatalocator.param().abi(), iid, core::mem::transmute(pextra.unwrap_or(std::ptr::null_mut()))).ok() } #[inline] @@ -62,9 +62,9 @@ where #[inline] pub unsafe fn RoParameterizedTypeExtraGetTypeSignature(extra: P0) -> windows_core::PCSTR where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll" "system" fn RoParameterizedTypeExtraGetTypeSignature(extra : super:: ROPARAMIIDHANDLE) -> windows_core::PCSTR); + windows_targets::link!("api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll" "system" fn RoParameterizedTypeExtraGetTypeSignature(extra : ROPARAMIIDHANDLE) -> windows_core::PCSTR); RoParameterizedTypeExtraGetTypeSignature(extra.param().abi()) } #[inline] @@ -3129,5 +3129,29 @@ impl Default for OSINFO { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct ROPARAMIIDHANDLE(pub *mut core::ffi::c_void); +impl ROPARAMIIDHANDLE { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for ROPARAMIIDHANDLE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + RoFreeParameterizedTypeExtra(*self); + } + } +} +impl Default for ROPARAMIIDHANDLE { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for ROPARAMIIDHANDLE { + type TypeKind = windows_core::CopyType; +} #[cfg(feature = "implement")] core::include!("impl.rs"); diff --git a/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/impl.rs b/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/impl.rs index 98b74296ff..d6bb476737 100644 --- a/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/impl.rs @@ -1,3 +1,46 @@ +#[cfg(feature = "Win32_Storage_Xps_Printing")] +pub trait IPrintDocumentPageSource_Impl: Sized { + fn GetPreviewPageCollection(&self, docpackagetarget: Option<&super::super::super::Storage::Xps::Printing::IPrintDocumentPackageTarget>) -> windows_core::Result; + fn MakeDocument(&self, printtaskoptions: Option<&windows_core::IInspectable>, docpackagetarget: Option<&super::super::super::Storage::Xps::Printing::IPrintDocumentPackageTarget>) -> windows_core::Result<()>; +} +#[cfg(feature = "Win32_Storage_Xps_Printing")] +impl windows_core::RuntimeName for IPrintDocumentPageSource {} +#[cfg(feature = "Win32_Storage_Xps_Printing")] +impl IPrintDocumentPageSource_Vtbl { + pub const fn new() -> IPrintDocumentPageSource_Vtbl + where + Identity: IPrintDocumentPageSource_Impl, + { + unsafe extern "system" fn GetPreviewPageCollection(this: *mut core::ffi::c_void, docpackagetarget: *mut core::ffi::c_void, docpagecollection: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + where + Identity: IPrintDocumentPageSource_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + match IPrintDocumentPageSource_Impl::GetPreviewPageCollection(this, windows_core::from_raw_borrowed(&docpackagetarget)) { + Ok(ok__) => { + docpagecollection.write(core::mem::transmute(ok__)); + windows_core::HRESULT(0) + } + Err(err) => err.into(), + } + } + unsafe extern "system" fn MakeDocument(this: *mut core::ffi::c_void, printtaskoptions: *mut core::ffi::c_void, docpackagetarget: *mut core::ffi::c_void) -> windows_core::HRESULT + where + Identity: IPrintDocumentPageSource_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + IPrintDocumentPageSource_Impl::MakeDocument(this, windows_core::from_raw_borrowed(&printtaskoptions), windows_core::from_raw_borrowed(&docpackagetarget)).into() + } + Self { + base__: windows_core::IUnknown_Vtbl::new::(), + GetPreviewPageCollection: GetPreviewPageCollection::, + MakeDocument: MakeDocument::, + } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID + } +} pub trait IPrintManagerInterop_Impl: Sized { fn GetForWindow(&self, appwindow: super::super::super::Foundation::HWND, riid: *const windows_core::GUID, printmanager: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; fn ShowPrintUIForWindowAsync(&self, appwindow: super::super::super::Foundation::HWND, riid: *const windows_core::GUID, asyncoperation: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; @@ -32,6 +75,36 @@ impl IPrintManagerInterop_Vtbl { iid == &::IID } } +pub trait IPrintPreviewPageCollection_Impl: Sized { + fn Paginate(&self, currentjobpage: u32, printtaskoptions: Option<&windows_core::IInspectable>) -> windows_core::Result<()>; + fn MakePage(&self, desiredjobpage: u32, width: f32, height: f32) -> windows_core::Result<()>; +} +impl windows_core::RuntimeName for IPrintPreviewPageCollection {} +impl IPrintPreviewPageCollection_Vtbl { + pub const fn new() -> IPrintPreviewPageCollection_Vtbl + where + Identity: IPrintPreviewPageCollection_Impl, + { + unsafe extern "system" fn Paginate(this: *mut core::ffi::c_void, currentjobpage: u32, printtaskoptions: *mut core::ffi::c_void) -> windows_core::HRESULT + where + Identity: IPrintPreviewPageCollection_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + IPrintPreviewPageCollection_Impl::Paginate(this, core::mem::transmute_copy(¤tjobpage), windows_core::from_raw_borrowed(&printtaskoptions)).into() + } + unsafe extern "system" fn MakePage(this: *mut core::ffi::c_void, desiredjobpage: u32, width: f32, height: f32) -> windows_core::HRESULT + where + Identity: IPrintPreviewPageCollection_Impl, + { + let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); + IPrintPreviewPageCollection_Impl::MakePage(this, core::mem::transmute_copy(&desiredjobpage), core::mem::transmute_copy(&width), core::mem::transmute_copy(&height)).into() + } + Self { base__: windows_core::IUnknown_Vtbl::new::(), Paginate: Paginate::, MakePage: MakePage:: } + } + pub fn matches(iid: &windows_core::GUID) -> bool { + iid == &::IID + } +} #[cfg(all(feature = "Win32_Graphics_Printing", feature = "Win32_System_Com"))] pub trait IPrintWorkflowConfigurationNative_Impl: Sized { fn PrinterQueue(&self) -> windows_core::Result; diff --git a/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/mod.rs b/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/mod.rs index b555e285c3..cd63c0cf33 100644 --- a/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/WinRT/Printing/mod.rs @@ -1,3 +1,41 @@ +windows_core::imp::define_interface!(IPrintDocumentPageSource, IPrintDocumentPageSource_Vtbl, 0xa96bb1db_172e_4667_82b5_ad97a252318f); +impl core::ops::Deref for IPrintDocumentPageSource { + type Target = windows_core::IUnknown; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(IPrintDocumentPageSource, windows_core::IUnknown); +impl IPrintDocumentPageSource { + #[cfg(feature = "Win32_Storage_Xps_Printing")] + pub unsafe fn GetPreviewPageCollection(&self, docpackagetarget: P0) -> windows_core::Result + where + P0: windows_core::Param, + { + let mut result__ = core::mem::zeroed(); + (windows_core::Interface::vtable(self).GetPreviewPageCollection)(windows_core::Interface::as_raw(self), docpackagetarget.param().abi(), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) + } + #[cfg(feature = "Win32_Storage_Xps_Printing")] + pub unsafe fn MakeDocument(&self, printtaskoptions: P0, docpackagetarget: P1) -> windows_core::Result<()> + where + P0: windows_core::Param, + P1: windows_core::Param, + { + (windows_core::Interface::vtable(self).MakeDocument)(windows_core::Interface::as_raw(self), printtaskoptions.param().abi(), docpackagetarget.param().abi()).ok() + } +} +#[repr(C)] +pub struct IPrintDocumentPageSource_Vtbl { + pub base__: windows_core::IUnknown_Vtbl, + #[cfg(feature = "Win32_Storage_Xps_Printing")] + pub GetPreviewPageCollection: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Storage_Xps_Printing"))] + GetPreviewPageCollection: usize, + #[cfg(feature = "Win32_Storage_Xps_Printing")] + pub MakeDocument: unsafe extern "system" fn(*mut core::ffi::c_void, *mut core::ffi::c_void, *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Storage_Xps_Printing"))] + MakeDocument: usize, +} windows_core::imp::define_interface!(IPrintManagerInterop, IPrintManagerInterop_Vtbl, 0xc5435a42_8d43_4e7b_a68a_ef311e392087); impl core::ops::Deref for IPrintManagerInterop { type Target = windows_core::IInspectable; @@ -30,6 +68,31 @@ pub struct IPrintManagerInterop_Vtbl { pub GetForWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, pub ShowPrintUIForWindowAsync: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *const windows_core::GUID, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, } +windows_core::imp::define_interface!(IPrintPreviewPageCollection, IPrintPreviewPageCollection_Vtbl, 0x0b31cc62_d7ec_4747_9d6e_f2537d870f2b); +impl core::ops::Deref for IPrintPreviewPageCollection { + type Target = windows_core::IUnknown; + fn deref(&self) -> &Self::Target { + unsafe { core::mem::transmute(self) } + } +} +windows_core::imp::interface_hierarchy!(IPrintPreviewPageCollection, windows_core::IUnknown); +impl IPrintPreviewPageCollection { + pub unsafe fn Paginate(&self, currentjobpage: u32, printtaskoptions: P0) -> windows_core::Result<()> + where + P0: windows_core::Param, + { + (windows_core::Interface::vtable(self).Paginate)(windows_core::Interface::as_raw(self), currentjobpage, printtaskoptions.param().abi()).ok() + } + pub unsafe fn MakePage(&self, desiredjobpage: u32, width: f32, height: f32) -> windows_core::Result<()> { + (windows_core::Interface::vtable(self).MakePage)(windows_core::Interface::as_raw(self), desiredjobpage, width, height).ok() + } +} +#[repr(C)] +pub struct IPrintPreviewPageCollection_Vtbl { + pub base__: windows_core::IUnknown_Vtbl, + pub Paginate: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut core::ffi::c_void) -> windows_core::HRESULT, + pub MakePage: unsafe extern "system" fn(*mut core::ffi::c_void, u32, f32, f32) -> windows_core::HRESULT, +} windows_core::imp::define_interface!(IPrintWorkflowConfigurationNative, IPrintWorkflowConfigurationNative_Vtbl, 0xc056be0a_9ee2_450a_9823_964f0006f2bb); impl core::ops::Deref for IPrintWorkflowConfigurationNative { type Target = windows_core::IUnknown; diff --git a/crates/libs/windows/src/Windows/Win32/System/WinRT/mod.rs b/crates/libs/windows/src/Windows/Win32/System/WinRT/mod.rs index edcd1e1617..9be45827cc 100644 --- a/crates/libs/windows/src/Windows/Win32/System/WinRT/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/WinRT/mod.rs @@ -1596,10 +1596,10 @@ impl core::fmt::Debug for TrustLevel { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct APARTMENT_SHUTDOWN_REGISTRATION_COOKIE(pub isize); +pub struct APARTMENT_SHUTDOWN_REGISTRATION_COOKIE(pub *mut core::ffi::c_void); impl APARTMENT_SHUTDOWN_REGISTRATION_COOKIE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for APARTMENT_SHUTDOWN_REGISTRATION_COOKIE { @@ -1640,10 +1640,18 @@ impl Default for EventRegistrationToken { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSTRING_BUFFER(pub isize); +pub struct HSTRING_BUFFER(pub *mut core::ffi::c_void); impl HSTRING_BUFFER { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HSTRING_BUFFER { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = WindowsDeleteStringBuffer(*self); + } } } impl Default for HSTRING_BUFFER { @@ -1673,22 +1681,6 @@ impl Default for HSTRING_HEADER { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct ROPARAMIIDHANDLE(pub isize); -impl ROPARAMIIDHANDLE { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for ROPARAMIIDHANDLE { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for ROPARAMIIDHANDLE { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] pub struct RO_REGISTRATION_COOKIE(pub isize); impl Default for RO_REGISTRATION_COOKIE { fn default() -> Self { diff --git a/crates/libs/windows/src/Windows/Win32/System/WindowsProgramming/mod.rs b/crates/libs/windows/src/Windows/Win32/System/WindowsProgramming/mod.rs index 5791f20885..1e71259ad9 100644 --- a/crates/libs/windows/src/Windows/Win32/System/WindowsProgramming/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/System/WindowsProgramming/mod.rs @@ -3288,34 +3288,26 @@ impl Default for FEATURE_ERROR { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct FEATURE_STATE_CHANGE_SUBSCRIPTION(pub isize); +pub struct FEATURE_STATE_CHANGE_SUBSCRIPTION(pub *mut core::ffi::c_void); impl FEATURE_STATE_CHANGE_SUBSCRIPTION { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } -impl Default for FEATURE_STATE_CHANGE_SUBSCRIPTION { - fn default() -> Self { - unsafe { core::mem::zeroed() } +impl windows_core::Free for FEATURE_STATE_CHANGE_SUBSCRIPTION { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + UnsubscribeFeatureStateChangeNotification(*self); + } } } -impl windows_core::TypeKind for FEATURE_STATE_CHANGE_SUBSCRIPTION { - type TypeKind = windows_core::CopyType; -} -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct FH_SERVICE_PIPE_HANDLE(pub isize); -impl FH_SERVICE_PIPE_HANDLE { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for FH_SERVICE_PIPE_HANDLE { +impl Default for FEATURE_STATE_CHANGE_SUBSCRIPTION { fn default() -> Self { unsafe { core::mem::zeroed() } } } -impl windows_core::TypeKind for FH_SERVICE_PIPE_HANDLE { +impl windows_core::TypeKind for FEATURE_STATE_CHANGE_SUBSCRIPTION { type TypeKind = windows_core::CopyType; } #[repr(C)] @@ -3333,10 +3325,10 @@ impl Default for FILE_CASE_SENSITIVE_INFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HWINWATCH(pub isize); +pub struct HWINWATCH(pub *mut core::ffi::c_void); impl HWINWATCH { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HWINWATCH { diff --git a/crates/libs/windows/src/Windows/Win32/UI/Accessibility/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Accessibility/mod.rs index 8c7eb93cd2..0a78513e96 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Accessibility/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Accessibility/mod.rs @@ -9579,10 +9579,18 @@ impl Default for HIGHCONTRASTW { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HUIAEVENT(pub isize); +pub struct HUIAEVENT(pub *mut core::ffi::c_void); impl HUIAEVENT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HUIAEVENT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = UiaRemoveEvent(*self); + } } } impl Default for HUIAEVENT { @@ -9595,10 +9603,18 @@ impl windows_core::TypeKind for HUIAEVENT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HUIANODE(pub isize); +pub struct HUIANODE(pub *mut core::ffi::c_void); impl HUIANODE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HUIANODE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = UiaNodeRelease(*self); + } } } impl Default for HUIANODE { @@ -9611,10 +9627,18 @@ impl windows_core::TypeKind for HUIANODE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HUIAPATTERNOBJECT(pub isize); +pub struct HUIAPATTERNOBJECT(pub *mut core::ffi::c_void); impl HUIAPATTERNOBJECT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HUIAPATTERNOBJECT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = UiaPatternRelease(*self); + } } } impl Default for HUIAPATTERNOBJECT { @@ -9627,10 +9651,18 @@ impl windows_core::TypeKind for HUIAPATTERNOBJECT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HUIATEXTRANGE(pub isize); +pub struct HUIATEXTRANGE(pub *mut core::ffi::c_void); impl HUIATEXTRANGE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HUIATEXTRANGE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = UiaTextRangeRelease(*self); + } } } impl Default for HUIATEXTRANGE { @@ -9643,13 +9675,14 @@ impl windows_core::TypeKind for HUIATEXTRANGE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HWINEVENTHOOK(pub isize); +pub struct HWINEVENTHOOK(pub *mut core::ffi::c_void); impl HWINEVENTHOOK { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HWINEVENTHOOK { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = UnhookWinEvent(*self); diff --git a/crates/libs/windows/src/Windows/Win32/UI/ColorSystem/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/ColorSystem/mod.rs index 07db747a61..1ed74baa1d 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/ColorSystem/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/ColorSystem/mod.rs @@ -1546,13 +1546,14 @@ impl Default for GamutShellTriangle { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCOLORSPACE(pub isize); +pub struct HCOLORSPACE(pub *mut core::ffi::c_void); impl HCOLORSPACE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HCOLORSPACE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DeleteColorSpace(*self); diff --git a/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/impl.rs b/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/impl.rs index 2972940552..11704581ca 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/impl.rs @@ -2683,7 +2683,7 @@ impl ITextFont2_Vtbl { iid == &::IID || iid == &::IID || iid == &::IID } } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_WindowsAndMessaging"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_Ime", feature = "Win32_UI_WindowsAndMessaging"))] pub trait ITextHost_Impl: Sized { fn TxGetDC(&self) -> super::super::super::Graphics::Gdi::HDC; fn TxReleaseDC(&self, hdc: super::super::super::Graphics::Gdi::HDC) -> i32; @@ -2721,13 +2721,13 @@ pub trait ITextHost_Impl: Sized { fn OnTxParaFormatChange(&self, ppf: *const PARAFORMAT) -> windows_core::Result<()>; fn TxGetPropertyBits(&self, dwmask: u32, pdwbits: *mut u32) -> windows_core::Result<()>; fn TxNotify(&self, inotify: u32, pv: *mut core::ffi::c_void) -> windows_core::Result<()>; - fn TxImmGetContext(&self) -> super::super::super::Globalization::HIMC; - fn TxImmReleaseContext(&self, himc: super::super::super::Globalization::HIMC); + fn TxImmGetContext(&self) -> super::super::Input::Ime::HIMC; + fn TxImmReleaseContext(&self, himc: super::super::Input::Ime::HIMC); fn TxGetSelectionBarWidth(&self, lselbarwidth: *mut i32) -> windows_core::Result<()>; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_WindowsAndMessaging"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_Ime", feature = "Win32_UI_WindowsAndMessaging"))] impl windows_core::RuntimeName for ITextHost {} -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_WindowsAndMessaging"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_Ime", feature = "Win32_UI_WindowsAndMessaging"))] impl ITextHost_Vtbl { pub const fn new() -> ITextHost_Vtbl where @@ -2991,14 +2991,14 @@ impl ITextHost_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ITextHost_Impl::TxNotify(this, core::mem::transmute_copy(&inotify), core::mem::transmute_copy(&pv)).into() } - unsafe extern "system" fn TxImmGetContext(this: *mut core::ffi::c_void) -> super::super::super::Globalization::HIMC + unsafe extern "system" fn TxImmGetContext(this: *mut core::ffi::c_void) -> super::super::Input::Ime::HIMC where Identity: ITextHost_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ITextHost_Impl::TxImmGetContext(this) } - unsafe extern "system" fn TxImmReleaseContext(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC) + unsafe extern "system" fn TxImmReleaseContext(this: *mut core::ffi::c_void, himc: super::super::Input::Ime::HIMC) where Identity: ITextHost_Impl, { @@ -3059,7 +3059,7 @@ impl ITextHost_Vtbl { iid == &::IID } } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_WindowsAndMessaging"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_Ime", feature = "Win32_UI_WindowsAndMessaging"))] pub trait ITextHost2_Impl: Sized + ITextHost_Impl { fn TxIsDoubleClickPending(&self) -> super::super::super::Foundation::BOOL; fn TxGetWindow(&self, phwnd: *mut super::super::super::Foundation::HWND) -> windows_core::Result<()>; @@ -3074,9 +3074,9 @@ pub trait ITextHost2_Impl: Sized + ITextHost_Impl { fn TxDestroyCaret(&self) -> windows_core::Result<()>; fn TxGetHorzExtent(&self, plhorzextent: *mut i32) -> windows_core::Result<()>; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_WindowsAndMessaging"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_Ime", feature = "Win32_UI_WindowsAndMessaging"))] impl windows_core::RuntimeName for ITextHost2 {} -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_WindowsAndMessaging"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_Ime", feature = "Win32_UI_WindowsAndMessaging"))] impl ITextHost2_Vtbl { pub const fn new() -> ITextHost2_Vtbl where diff --git a/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/mod.rs index b82ddd84fb..fb7c4d5e6b 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Controls/RichEdit/mod.rs @@ -1502,14 +1502,14 @@ impl ITextHost { pub unsafe fn TxNotify(&self, inotify: u32, pv: *mut core::ffi::c_void) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).TxNotify)(windows_core::Interface::as_raw(self), inotify, pv).ok() } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn TxImmGetContext(&self) -> super::super::super::Globalization::HIMC { + #[cfg(feature = "Win32_UI_Input_Ime")] + pub unsafe fn TxImmGetContext(&self) -> super::super::Input::Ime::HIMC { (windows_core::Interface::vtable(self).TxImmGetContext)(windows_core::Interface::as_raw(self)) } - #[cfg(feature = "Win32_Globalization")] + #[cfg(feature = "Win32_UI_Input_Ime")] pub unsafe fn TxImmReleaseContext(&self, himc: P0) where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).TxImmReleaseContext)(windows_core::Interface::as_raw(self), himc.param().abi()) } @@ -1583,13 +1583,13 @@ pub struct ITextHost_Vtbl { pub OnTxParaFormatChange: unsafe extern "system" fn(*mut core::ffi::c_void, *const PARAFORMAT) -> windows_core::HRESULT, pub TxGetPropertyBits: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut u32) -> windows_core::HRESULT, pub TxNotify: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub TxImmGetContext: unsafe extern "system" fn(*mut core::ffi::c_void) -> super::super::super::Globalization::HIMC, - #[cfg(not(feature = "Win32_Globalization"))] + #[cfg(feature = "Win32_UI_Input_Ime")] + pub TxImmGetContext: unsafe extern "system" fn(*mut core::ffi::c_void) -> super::super::Input::Ime::HIMC, + #[cfg(not(feature = "Win32_UI_Input_Ime"))] TxImmGetContext: usize, - #[cfg(feature = "Win32_Globalization")] - pub TxImmReleaseContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC), - #[cfg(not(feature = "Win32_Globalization"))] + #[cfg(feature = "Win32_UI_Input_Ime")] + pub TxImmReleaseContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::Input::Ime::HIMC), + #[cfg(not(feature = "Win32_UI_Input_Ime"))] TxImmReleaseContext: usize, pub TxGetSelectionBarWidth: unsafe extern "system" fn(*mut core::ffi::c_void, *mut i32) -> windows_core::HRESULT, } diff --git a/crates/libs/windows/src/Windows/Win32/UI/Controls/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Controls/mod.rs index d5ca6ae8cc..ddcff3a1e3 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Controls/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Controls/mod.rs @@ -114,22 +114,24 @@ pub unsafe fn CreatePropertySheetPageW(constpropsheetpagepointer: *mut PROPSHEET CreatePropertySheetPageW(constpropsheetpagepointer) } #[inline] -pub unsafe fn CreateStatusWindowA(style: i32, lpsztext: P0, hwndparent: P1, wid: u32) -> super::super::Foundation::HWND +pub unsafe fn CreateStatusWindowA(style: i32, lpsztext: P0, hwndparent: P1, wid: u32) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { windows_targets::link!("comctl32.dll" "system" fn CreateStatusWindowA(style : i32, lpsztext : windows_core::PCSTR, hwndparent : super::super::Foundation:: HWND, wid : u32) -> super::super::Foundation:: HWND); - CreateStatusWindowA(style, lpsztext.param().abi(), hwndparent.param().abi(), wid) + let result__ = CreateStatusWindowA(style, lpsztext.param().abi(), hwndparent.param().abi(), wid); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateStatusWindowW(style: i32, lpsztext: P0, hwndparent: P1, wid: u32) -> super::super::Foundation::HWND +pub unsafe fn CreateStatusWindowW(style: i32, lpsztext: P0, hwndparent: P1, wid: u32) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { windows_targets::link!("comctl32.dll" "system" fn CreateStatusWindowW(style : i32, lpsztext : windows_core::PCWSTR, hwndparent : super::super::Foundation:: HWND, wid : u32) -> super::super::Foundation:: HWND); - CreateStatusWindowW(style, lpsztext.param().abi(), hwndparent.param().abi(), wid) + let result__ = CreateStatusWindowW(style, lpsztext.param().abi(), hwndparent.param().abi(), wid); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[cfg(feature = "Win32_UI_WindowsAndMessaging")] #[inline] @@ -139,13 +141,14 @@ pub unsafe fn CreateSyntheticPointerDevice(pointertype: super::WindowsAndMessagi (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateToolbarEx(hwnd: P0, ws: u32, wid: u32, nbitmaps: i32, hbminst: P1, wbmid: usize, lpbuttons: *mut TBBUTTON, inumbuttons: i32, dxbutton: i32, dybutton: i32, dxbitmap: i32, dybitmap: i32, ustructsize: u32) -> super::super::Foundation::HWND +pub unsafe fn CreateToolbarEx(hwnd: P0, ws: u32, wid: u32, nbitmaps: i32, hbminst: P1, wbmid: usize, lpbuttons: *mut TBBUTTON, inumbuttons: i32, dxbutton: i32, dybutton: i32, dxbitmap: i32, dybitmap: i32, ustructsize: u32) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { windows_targets::link!("comctl32.dll" "system" fn CreateToolbarEx(hwnd : super::super::Foundation:: HWND, ws : u32, wid : u32, nbitmaps : i32, hbminst : super::super::Foundation:: HINSTANCE, wbmid : usize, lpbuttons : *mut TBBUTTON, inumbuttons : i32, dxbutton : i32, dybutton : i32, dxbitmap : i32, dybitmap : i32, ustructsize : u32) -> super::super::Foundation:: HWND); - CreateToolbarEx(hwnd.param().abi(), ws, wid, nbitmaps, hbminst.param().abi(), wbmid, lpbuttons, inumbuttons, dxbutton, dybutton, dxbitmap, dybitmap, ustructsize) + let result__ = CreateToolbarEx(hwnd.param().abi(), ws, wid, nbitmaps, hbminst.param().abi(), wbmid, lpbuttons, inumbuttons, dxbutton, dybutton, dxbitmap, dybitmap, ustructsize); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn CreateUpDownControl(dwstyle: u32, x: i32, y: i32, cx: i32, cy: i32, hparent: P0, nid: i32, hinst: P1, hbuddy: P2, nupper: i32, nlower: i32, npos: i32) -> super::super::Foundation::HWND @@ -11965,6 +11968,14 @@ impl HDPA { self.0 == -1 || self.0 == 0 } } +impl windows_core::Free for HDPA { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DPA_Destroy(*self); + } + } +} impl Default for HDPA { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -11981,6 +11992,14 @@ impl HDSA { self.0 == -1 || self.0 == 0 } } +impl windows_core::Free for HDSA { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DSA_Destroy(*self); + } + } +} impl Default for HDSA { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -12026,6 +12045,7 @@ impl HIMAGELIST { } } impl windows_core::Free for HIMAGELIST { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = ImageList_Destroy(*self); @@ -12042,13 +12062,14 @@ impl windows_core::TypeKind for HIMAGELIST { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPROPSHEETPAGE(pub isize); +pub struct HPROPSHEETPAGE(pub *mut core::ffi::c_void); impl HPROPSHEETPAGE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HPROPSHEETPAGE { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DestroyPropertySheetPage(*self); @@ -12065,10 +12086,18 @@ impl windows_core::TypeKind for HPROPSHEETPAGE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HSYNTHETICPOINTERDEVICE(pub isize); +pub struct HSYNTHETICPOINTERDEVICE(pub *mut core::ffi::c_void); impl HSYNTHETICPOINTERDEVICE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HSYNTHETICPOINTERDEVICE { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + DestroySyntheticPointerDevice(*self); + } } } impl Default for HSYNTHETICPOINTERDEVICE { @@ -12088,6 +12117,7 @@ impl HTHEME { } } impl windows_core::Free for HTHEME { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = CloseThemeData(*self); diff --git a/crates/libs/windows/src/Windows/Win32/UI/HiDpi/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/HiDpi/mod.rs index 423995fb46..42f2ddd2a0 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/HiDpi/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/HiDpi/mod.rs @@ -376,10 +376,10 @@ impl core::fmt::Debug for PROCESS_DPI_AWARENESS { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct DPI_AWARENESS_CONTEXT(pub isize); +pub struct DPI_AWARENESS_CONTEXT(pub *mut core::ffi::c_void); impl DPI_AWARENESS_CONTEXT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for DPI_AWARENESS_CONTEXT { diff --git a/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/impl.rs b/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/impl.rs index 533cd87076..7d6d3ba98d 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/impl.rs @@ -1,16 +1,16 @@ -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub trait IActiveIME_Impl: Sized { fn Inquire(&self, dwsysteminfoflags: u32, pimeinfo: *mut IMEINFO, szwndclass: windows_core::PWSTR, pdwprivate: *mut u32) -> windows_core::Result<()>; - fn ConversionList(&self, himc: super::super::super::Globalization::HIMC, szsource: &windows_core::PCWSTR, uflag: u32, ubuflen: u32, pdest: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn Configure(&self, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pregisterword: *const REGISTERWORDW) -> windows_core::Result<()>; + fn ConversionList(&self, himc: HIMC, szsource: &windows_core::PCWSTR, uflag: u32, ubuflen: u32, pdest: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn Configure(&self, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pregisterword: *const REGISTERWORDW) -> windows_core::Result<()>; fn Destroy(&self, ureserved: u32) -> windows_core::Result<()>; - fn Escape(&self, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; - fn SetActiveContext(&self, himc: super::super::super::Globalization::HIMC, fflag: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; - fn ProcessKey(&self, himc: super::super::super::Globalization::HIMC, uvirkey: u32, lparam: u32, pbkeystate: *const u8) -> windows_core::Result<()>; - fn Notify(&self, himc: super::super::super::Globalization::HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()>; - fn Select(&self, himc: super::super::super::Globalization::HIMC, fselect: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; - fn SetCompositionString(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; - fn ToAsciiEx(&self, uvirkey: u32, uscancode: u32, pbkeystate: *const u8, fustate: u32, himc: super::super::super::Globalization::HIMC, pdwtransbuf: *mut u32, pusize: *mut u32) -> windows_core::Result<()>; + fn Escape(&self, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; + fn SetActiveContext(&self, himc: HIMC, fflag: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; + fn ProcessKey(&self, himc: HIMC, uvirkey: u32, lparam: u32, pbkeystate: *const u8) -> windows_core::Result<()>; + fn Notify(&self, himc: HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()>; + fn Select(&self, himc: HIMC, fselect: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; + fn SetCompositionString(&self, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; + fn ToAsciiEx(&self, uvirkey: u32, uscancode: u32, pbkeystate: *const u8, fustate: u32, himc: HIMC, pdwtransbuf: *mut u32, pusize: *mut u32) -> windows_core::Result<()>; fn RegisterWord(&self, szreading: &windows_core::PCWSTR, dwstyle: u32, szstring: &windows_core::PCWSTR) -> windows_core::Result<()>; fn UnregisterWord(&self, szreading: &windows_core::PCWSTR, dwstyle: u32, szstring: &windows_core::PCWSTR) -> windows_core::Result<()>; fn GetRegisterWordStyle(&self, nitem: u32, pstylebuf: *mut STYLEBUFW, pubufsize: *mut u32) -> windows_core::Result<()>; @@ -18,9 +18,9 @@ pub trait IActiveIME_Impl: Sized { fn GetCodePageA(&self) -> windows_core::Result; fn GetLangId(&self) -> windows_core::Result; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl windows_core::RuntimeName for IActiveIME {} -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl IActiveIME_Vtbl { pub const fn new() -> IActiveIME_Vtbl where @@ -33,14 +33,14 @@ impl IActiveIME_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::Inquire(this, core::mem::transmute_copy(&dwsysteminfoflags), core::mem::transmute_copy(&pimeinfo), core::mem::transmute_copy(&szwndclass), core::mem::transmute_copy(&pdwprivate)).into() } - unsafe extern "system" fn ConversionList(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, szsource: windows_core::PCWSTR, uflag: u32, ubuflen: u32, pdest: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn ConversionList(this: *mut core::ffi::c_void, himc: HIMC, szsource: windows_core::PCWSTR, uflag: u32, ubuflen: u32, pdest: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::ConversionList(this, core::mem::transmute_copy(&himc), core::mem::transmute(&szsource), core::mem::transmute_copy(&uflag), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&pdest), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn Configure(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pregisterword: *const REGISTERWORDW) -> windows_core::HRESULT + unsafe extern "system" fn Configure(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pregisterword: *const REGISTERWORDW) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { @@ -54,49 +54,49 @@ impl IActiveIME_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::Destroy(this, core::mem::transmute_copy(&ureserved)).into() } - unsafe extern "system" fn Escape(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT + unsafe extern "system" fn Escape(this: *mut core::ffi::c_void, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::Escape(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&uescape), core::mem::transmute_copy(&pdata), core::mem::transmute_copy(&plresult)).into() } - unsafe extern "system" fn SetActiveContext(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, fflag: super::super::super::Foundation::BOOL) -> windows_core::HRESULT + unsafe extern "system" fn SetActiveContext(this: *mut core::ffi::c_void, himc: HIMC, fflag: super::super::super::Foundation::BOOL) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::SetActiveContext(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&fflag)).into() } - unsafe extern "system" fn ProcessKey(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, uvirkey: u32, lparam: u32, pbkeystate: *const u8) -> windows_core::HRESULT + unsafe extern "system" fn ProcessKey(this: *mut core::ffi::c_void, himc: HIMC, uvirkey: u32, lparam: u32, pbkeystate: *const u8) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::ProcessKey(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&uvirkey), core::mem::transmute_copy(&lparam), core::mem::transmute_copy(&pbkeystate)).into() } - unsafe extern "system" fn Notify(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::HRESULT + unsafe extern "system" fn Notify(this: *mut core::ffi::c_void, himc: HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::Notify(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwaction), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwvalue)).into() } - unsafe extern "system" fn Select(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, fselect: super::super::super::Foundation::BOOL) -> windows_core::HRESULT + unsafe extern "system" fn Select(this: *mut core::ffi::c_void, himc: HIMC, fselect: super::super::super::Foundation::BOOL) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::Select(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&fselect)).into() } - unsafe extern "system" fn SetCompositionString(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionString(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIME_Impl::SetCompositionString(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&pcomp), core::mem::transmute_copy(&dwcomplen), core::mem::transmute_copy(&pread), core::mem::transmute_copy(&dwreadlen)).into() } - unsafe extern "system" fn ToAsciiEx(this: *mut core::ffi::c_void, uvirkey: u32, uscancode: u32, pbkeystate: *const u8, fustate: u32, himc: super::super::super::Globalization::HIMC, pdwtransbuf: *mut u32, pusize: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn ToAsciiEx(this: *mut core::ffi::c_void, uvirkey: u32, uscancode: u32, pbkeystate: *const u8, fustate: u32, himc: HIMC, pdwtransbuf: *mut u32, pusize: *mut u32) -> windows_core::HRESULT where Identity: IActiveIME_Impl, { @@ -188,14 +188,14 @@ impl IActiveIME_Vtbl { iid == &::IID } } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub trait IActiveIME2_Impl: Sized + IActiveIME_Impl { fn Sleep(&self) -> windows_core::Result<()>; fn Unsleep(&self, fdead: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl windows_core::RuntimeName for IActiveIME2 {} -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl IActiveIME2_Vtbl { pub const fn new() -> IActiveIME2_Vtbl where @@ -221,86 +221,86 @@ impl IActiveIME2_Vtbl { iid == &::IID || iid == &::IID } } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_TextServices"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_KeyboardAndMouse"))] pub trait IActiveIMMApp_Impl: Sized { - fn AssociateContext(&self, hwnd: super::super::super::Foundation::HWND, hime: super::super::super::Globalization::HIMC) -> windows_core::Result; - fn ConfigureIMEA(&self, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::Result<()>; - fn ConfigureIMEW(&self, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::Result<()>; - fn CreateContext(&self) -> windows_core::Result; - fn DestroyContext(&self, hime: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn EnumRegisterWordA(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; - fn EnumRegisterWordW(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; - fn EscapeA(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; - fn EscapeW(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; - fn GetCandidateListA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetCandidateListW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetCandidateListCountA(&self, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; - fn GetCandidateListCountW(&self, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; - fn GetCandidateWindow(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::Result<()>; - fn GetCompositionFontA(&self, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; - fn GetCompositionFontW(&self, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; - fn GetCompositionStringA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; - fn GetCompositionStringW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; - fn GetCompositionWindow(&self, himc: super::super::super::Globalization::HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::Result<()>; - fn GetContext(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; - fn GetConversionListA(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: &windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetConversionListW(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: &windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetConversionStatus(&self, himc: super::super::super::Globalization::HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::Result<()>; + fn AssociateContext(&self, hwnd: super::super::super::Foundation::HWND, hime: HIMC) -> windows_core::Result; + fn ConfigureIMEA(&self, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::Result<()>; + fn ConfigureIMEW(&self, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::Result<()>; + fn CreateContext(&self) -> windows_core::Result; + fn DestroyContext(&self, hime: HIMC) -> windows_core::Result<()>; + fn EnumRegisterWordA(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; + fn EnumRegisterWordW(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; + fn EscapeA(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; + fn EscapeW(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; + fn GetCandidateListA(&self, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetCandidateListW(&self, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetCandidateListCountA(&self, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; + fn GetCandidateListCountW(&self, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; + fn GetCandidateWindow(&self, himc: HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::Result<()>; + fn GetCompositionFontA(&self, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; + fn GetCompositionFontW(&self, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; + fn GetCompositionStringA(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; + fn GetCompositionStringW(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; + fn GetCompositionWindow(&self, himc: HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::Result<()>; + fn GetContext(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; + fn GetConversionListA(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: &windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetConversionListW(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: &windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetConversionStatus(&self, himc: HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::Result<()>; fn GetDefaultIMEWnd(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; - fn GetDescriptionA(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetDescriptionW(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetGuideLineA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::Result<()>; - fn GetGuideLineW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::Result<()>; - fn GetIMEFileNameA(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetIMEFileNameW(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetOpenStatus(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn GetProperty(&self, hkl: super::super::TextServices::HKL, fdwindex: u32) -> windows_core::Result; - fn GetRegisterWordStyleA(&self, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetRegisterWordStyleW(&self, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetStatusWindowPos(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result; + fn GetDescriptionA(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetDescriptionW(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetGuideLineA(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetGuideLineW(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetIMEFileNameA(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetIMEFileNameW(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetOpenStatus(&self, himc: HIMC) -> windows_core::Result<()>; + fn GetProperty(&self, hkl: super::KeyboardAndMouse::HKL, fdwindex: u32) -> windows_core::Result; + fn GetRegisterWordStyleA(&self, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetRegisterWordStyleW(&self, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetStatusWindowPos(&self, himc: HIMC) -> windows_core::Result; fn GetVirtualKey(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; - fn InstallIMEA(&self, szimefilename: &windows_core::PCSTR, szlayouttext: &windows_core::PCSTR) -> windows_core::Result; - fn InstallIMEW(&self, szimefilename: &windows_core::PCWSTR, szlayouttext: &windows_core::PCWSTR) -> windows_core::Result; - fn IsIME(&self, hkl: super::super::TextServices::HKL) -> windows_core::Result<()>; + fn InstallIMEA(&self, szimefilename: &windows_core::PCSTR, szlayouttext: &windows_core::PCSTR) -> windows_core::Result; + fn InstallIMEW(&self, szimefilename: &windows_core::PCWSTR, szlayouttext: &windows_core::PCWSTR) -> windows_core::Result; + fn IsIME(&self, hkl: super::KeyboardAndMouse::HKL) -> windows_core::Result<()>; fn IsUIMessageA(&self, hwndime: super::super::super::Foundation::HWND, msg: u32, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result<()>; fn IsUIMessageW(&self, hwndime: super::super::super::Foundation::HWND, msg: u32, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result<()>; - fn NotifyIME(&self, himc: super::super::super::Globalization::HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()>; - fn RegisterWordA(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR) -> windows_core::Result<()>; - fn RegisterWordW(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR) -> windows_core::Result<()>; - fn ReleaseContext(&self, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn SetCandidateWindow(&self, himc: super::super::super::Globalization::HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::Result<()>; - fn SetCompositionFontA(&self, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; - fn SetCompositionFontW(&self, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; - fn SetCompositionStringA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; - fn SetCompositionStringW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; - fn SetCompositionWindow(&self, himc: super::super::super::Globalization::HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::Result<()>; - fn SetConversionStatus(&self, himc: super::super::super::Globalization::HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::Result<()>; - fn SetOpenStatus(&self, himc: super::super::super::Globalization::HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; - fn SetStatusWindowPos(&self, himc: super::super::super::Globalization::HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::Result<()>; + fn NotifyIME(&self, himc: HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()>; + fn RegisterWordA(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR) -> windows_core::Result<()>; + fn RegisterWordW(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR) -> windows_core::Result<()>; + fn ReleaseContext(&self, hwnd: super::super::super::Foundation::HWND, himc: HIMC) -> windows_core::Result<()>; + fn SetCandidateWindow(&self, himc: HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::Result<()>; + fn SetCompositionFontA(&self, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; + fn SetCompositionFontW(&self, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; + fn SetCompositionStringA(&self, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; + fn SetCompositionStringW(&self, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; + fn SetCompositionWindow(&self, himc: HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::Result<()>; + fn SetConversionStatus(&self, himc: HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::Result<()>; + fn SetOpenStatus(&self, himc: HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; + fn SetStatusWindowPos(&self, himc: HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::Result<()>; fn SimulateHotKey(&self, hwnd: super::super::super::Foundation::HWND, dwhotkeyid: u32) -> windows_core::Result<()>; - fn UnregisterWordA(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szunregister: &windows_core::PCSTR) -> windows_core::Result<()>; - fn UnregisterWordW(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szunregister: &windows_core::PCWSTR) -> windows_core::Result<()>; + fn UnregisterWordA(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szunregister: &windows_core::PCSTR) -> windows_core::Result<()>; + fn UnregisterWordW(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szunregister: &windows_core::PCWSTR) -> windows_core::Result<()>; fn Activate(&self, frestorelayout: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; fn Deactivate(&self) -> windows_core::Result<()>; fn OnDefWindowProc(&self, hwnd: super::super::super::Foundation::HWND, msg: u32, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result; fn FilterClientWindows(&self, aaclasslist: *const u16, usize: u32) -> windows_core::Result<()>; - fn GetCodePageA(&self, hkl: super::super::TextServices::HKL) -> windows_core::Result; - fn GetLangId(&self, hkl: super::super::TextServices::HKL) -> windows_core::Result; - fn AssociateContextEx(&self, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC, dwflags: u32) -> windows_core::Result<()>; + fn GetCodePageA(&self, hkl: super::KeyboardAndMouse::HKL) -> windows_core::Result; + fn GetLangId(&self, hkl: super::KeyboardAndMouse::HKL) -> windows_core::Result; + fn AssociateContextEx(&self, hwnd: super::super::super::Foundation::HWND, himc: HIMC, dwflags: u32) -> windows_core::Result<()>; fn DisableIME(&self, idthread: u32) -> windows_core::Result<()>; - fn GetImeMenuItemsA(&self, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; - fn GetImeMenuItemsW(&self, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetImeMenuItemsA(&self, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetImeMenuItemsW(&self, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; fn EnumInputContext(&self, idthread: u32) -> windows_core::Result; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_TextServices"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl windows_core::RuntimeName for IActiveIMMApp {} -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_TextServices"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl IActiveIMMApp_Vtbl { pub const fn new() -> IActiveIMMApp_Vtbl where Identity: IActiveIMMApp_Impl, { - unsafe extern "system" fn AssociateContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, hime: super::super::super::Globalization::HIMC, phprev: *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn AssociateContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, hime: HIMC, phprev: *mut HIMC) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -313,21 +313,21 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn ConfigureIMEA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::HRESULT + unsafe extern "system" fn ConfigureIMEA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::ConfigureIMEA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&dwmode), core::mem::transmute_copy(&pdata)).into() } - unsafe extern "system" fn ConfigureIMEW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::HRESULT + unsafe extern "system" fn ConfigureIMEW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::ConfigureIMEW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&dwmode), core::mem::transmute_copy(&pdata)).into() } - unsafe extern "system" fn CreateContext(this: *mut core::ffi::c_void, phimc: *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn CreateContext(this: *mut core::ffi::c_void, phimc: *mut HIMC) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -340,14 +340,14 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn DestroyContext(this: *mut core::ffi::c_void, hime: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn DestroyContext(this: *mut core::ffi::c_void, hime: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::DestroyContext(this, core::mem::transmute_copy(&hime)).into() } - unsafe extern "system" fn EnumRegisterWordA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn EnumRegisterWordA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -360,7 +360,7 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn EnumRegisterWordW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn EnumRegisterWordW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -373,91 +373,91 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn EscapeA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT + unsafe extern "system" fn EscapeA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::EscapeA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute_copy(&uescape), core::mem::transmute_copy(&pdata), core::mem::transmute_copy(&plresult)).into() } - unsafe extern "system" fn EscapeW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT + unsafe extern "system" fn EscapeW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::EscapeW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute_copy(&uescape), core::mem::transmute_copy(&pdata), core::mem::transmute_copy(&plresult)).into() } - unsafe extern "system" fn GetCandidateListA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCandidateListA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&pcandlist), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetCandidateListW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCandidateListW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&pcandlist), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetCandidateListCountA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListCountA(this: *mut core::ffi::c_void, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCandidateListCountA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pdwlistsize), core::mem::transmute_copy(&pdwbuflen)).into() } - unsafe extern "system" fn GetCandidateListCountW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListCountW(this: *mut core::ffi::c_void, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCandidateListCountW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pdwlistsize), core::mem::transmute_copy(&pdwbuflen)).into() } - unsafe extern "system" fn GetCandidateWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateWindow(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCandidateWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&pcandidate)).into() } - unsafe extern "system" fn GetCompositionFontA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionFontA(this: *mut core::ffi::c_void, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCompositionFontA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn GetCompositionFontW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionFontW(this: *mut core::ffi::c_void, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCompositionFontW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn GetCompositionStringA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionStringA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCompositionStringA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&plcopied), core::mem::transmute_copy(&pbuf)).into() } - unsafe extern "system" fn GetCompositionStringW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionStringW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCompositionStringW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&plcopied), core::mem::transmute_copy(&pbuf)).into() } - unsafe extern "system" fn GetCompositionWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionWindow(this: *mut core::ffi::c_void, himc: HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetCompositionWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pcompform)).into() } - unsafe extern "system" fn GetContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, phimc: *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn GetContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, phimc: *mut HIMC) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -470,21 +470,21 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetConversionListA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetConversionListA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetConversionListA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute(&psrc), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&uflag), core::mem::transmute_copy(&pdst), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetConversionListW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetConversionListW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetConversionListW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute(&psrc), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&uflag), core::mem::transmute_copy(&pdst), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetConversionStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetConversionStatus(this: *mut core::ffi::c_void, himc: HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -504,56 +504,56 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetDescriptionA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetDescriptionA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetDescriptionA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szdescription), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetDescriptionW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetDescriptionW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetDescriptionW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szdescription), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetGuideLineA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetGuideLineA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetGuideLineA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&pbuf), core::mem::transmute_copy(&pdwresult)).into() } - unsafe extern "system" fn GetGuideLineW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetGuideLineW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetGuideLineW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&pbuf), core::mem::transmute_copy(&pdwresult)).into() } - unsafe extern "system" fn GetIMEFileNameA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetIMEFileNameA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetIMEFileNameA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szfilename), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetIMEFileNameW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetIMEFileNameW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetIMEFileNameW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szfilename), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetOpenStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn GetOpenStatus(this: *mut core::ffi::c_void, himc: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetOpenStatus(this, core::mem::transmute_copy(&himc)).into() } - unsafe extern "system" fn GetProperty(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, fdwindex: u32, pdwproperty: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetProperty(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, fdwindex: u32, pdwproperty: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -566,21 +566,21 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetRegisterWordStyleA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetRegisterWordStyleA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetRegisterWordStyleA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&nitem), core::mem::transmute_copy(&pstylebuf), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetRegisterWordStyleW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetRegisterWordStyleW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetRegisterWordStyleW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&nitem), core::mem::transmute_copy(&pstylebuf), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetStatusWindowPos(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pptpos: *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT + unsafe extern "system" fn GetStatusWindowPos(this: *mut core::ffi::c_void, himc: HIMC, pptpos: *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -606,7 +606,7 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn InstallIMEA(this: *mut core::ffi::c_void, szimefilename: windows_core::PCSTR, szlayouttext: windows_core::PCSTR, phkl: *mut super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn InstallIMEA(this: *mut core::ffi::c_void, szimefilename: windows_core::PCSTR, szlayouttext: windows_core::PCSTR, phkl: *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -619,7 +619,7 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn InstallIMEW(this: *mut core::ffi::c_void, szimefilename: windows_core::PCWSTR, szlayouttext: windows_core::PCWSTR, phkl: *mut super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn InstallIMEW(this: *mut core::ffi::c_void, szimefilename: windows_core::PCWSTR, szlayouttext: windows_core::PCWSTR, phkl: *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -632,7 +632,7 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn IsIME(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn IsIME(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -653,91 +653,91 @@ impl IActiveIMMApp_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::IsUIMessageW(this, core::mem::transmute_copy(&hwndime), core::mem::transmute_copy(&msg), core::mem::transmute_copy(&wparam), core::mem::transmute_copy(&lparam)).into() } - unsafe extern "system" fn NotifyIME(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::HRESULT + unsafe extern "system" fn NotifyIME(this: *mut core::ffi::c_void, himc: HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::NotifyIME(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwaction), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwvalue)).into() } - unsafe extern "system" fn RegisterWordA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR) -> windows_core::HRESULT + unsafe extern "system" fn RegisterWordA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::RegisterWordA(this, core::mem::transmute_copy(&hkl), core::mem::transmute(&szreading), core::mem::transmute_copy(&dwstyle), core::mem::transmute(&szregister)).into() } - unsafe extern "system" fn RegisterWordW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR) -> windows_core::HRESULT + unsafe extern "system" fn RegisterWordW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::RegisterWordW(this, core::mem::transmute_copy(&hkl), core::mem::transmute(&szreading), core::mem::transmute_copy(&dwstyle), core::mem::transmute(&szregister)).into() } - unsafe extern "system" fn ReleaseContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn ReleaseContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::ReleaseContext(this, core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&himc)).into() } - unsafe extern "system" fn SetCandidateWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::HRESULT + unsafe extern "system" fn SetCandidateWindow(this: *mut core::ffi::c_void, himc: HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetCandidateWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pcandidate)).into() } - unsafe extern "system" fn SetCompositionFontA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionFontA(this: *mut core::ffi::c_void, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetCompositionFontA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn SetCompositionFontW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionFontW(this: *mut core::ffi::c_void, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetCompositionFontW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn SetCompositionStringA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionStringA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetCompositionStringA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&pcomp), core::mem::transmute_copy(&dwcomplen), core::mem::transmute_copy(&pread), core::mem::transmute_copy(&dwreadlen)).into() } - unsafe extern "system" fn SetCompositionStringW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionStringW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetCompositionStringW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&pcomp), core::mem::transmute_copy(&dwcomplen), core::mem::transmute_copy(&pread), core::mem::transmute_copy(&dwreadlen)).into() } - unsafe extern "system" fn SetCompositionWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionWindow(this: *mut core::ffi::c_void, himc: HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetCompositionWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pcompform)).into() } - unsafe extern "system" fn SetConversionStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetConversionStatus(this: *mut core::ffi::c_void, himc: HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetConversionStatus(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&fdwconversion), core::mem::transmute_copy(&fdwsentence)).into() } - unsafe extern "system" fn SetOpenStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::HRESULT + unsafe extern "system" fn SetOpenStatus(this: *mut core::ffi::c_void, himc: HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SetOpenStatus(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&fopen)).into() } - unsafe extern "system" fn SetStatusWindowPos(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::HRESULT + unsafe extern "system" fn SetStatusWindowPos(this: *mut core::ffi::c_void, himc: HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -751,14 +751,14 @@ impl IActiveIMMApp_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::SimulateHotKey(this, core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&dwhotkeyid)).into() } - unsafe extern "system" fn UnregisterWordA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szunregister: windows_core::PCSTR) -> windows_core::HRESULT + unsafe extern "system" fn UnregisterWordA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szunregister: windows_core::PCSTR) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::UnregisterWordA(this, core::mem::transmute_copy(&hkl), core::mem::transmute(&szreading), core::mem::transmute_copy(&dwstyle), core::mem::transmute(&szunregister)).into() } - unsafe extern "system" fn UnregisterWordW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szunregister: windows_core::PCWSTR) -> windows_core::HRESULT + unsafe extern "system" fn UnregisterWordW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szunregister: windows_core::PCWSTR) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -799,7 +799,7 @@ impl IActiveIMMApp_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::FilterClientWindows(this, core::mem::transmute_copy(&aaclasslist), core::mem::transmute_copy(&usize)).into() } - unsafe extern "system" fn GetCodePageA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ucodepage: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCodePageA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ucodepage: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -812,7 +812,7 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetLangId(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, plid: *mut u16) -> windows_core::HRESULT + unsafe extern "system" fn GetLangId(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, plid: *mut u16) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -825,7 +825,7 @@ impl IActiveIMMApp_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn AssociateContextEx(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC, dwflags: u32) -> windows_core::HRESULT + unsafe extern "system" fn AssociateContextEx(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: HIMC, dwflags: u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -839,14 +839,14 @@ impl IActiveIMMApp_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::DisableIME(this, core::mem::transmute_copy(&idthread)).into() } - unsafe extern "system" fn GetImeMenuItemsA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetImeMenuItemsA(this: *mut core::ffi::c_void, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMApp_Impl::GetImeMenuItemsA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwflags), core::mem::transmute_copy(&dwtype), core::mem::transmute_copy(&pimeparentmenu), core::mem::transmute_copy(&pimemenu), core::mem::transmute_copy(&dwsize), core::mem::transmute_copy(&pdwresult)).into() } - unsafe extern "system" fn GetImeMenuItemsW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetImeMenuItemsW(this: *mut core::ffi::c_void, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMApp_Impl, { @@ -942,106 +942,106 @@ impl IActiveIMMApp_Vtbl { iid == &::IID } } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_TextServices"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_KeyboardAndMouse"))] pub trait IActiveIMMIME_Impl: Sized { - fn AssociateContext(&self, hwnd: super::super::super::Foundation::HWND, hime: super::super::super::Globalization::HIMC) -> windows_core::Result; - fn ConfigureIMEA(&self, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::Result<()>; - fn ConfigureIMEW(&self, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::Result<()>; - fn CreateContext(&self) -> windows_core::Result; - fn DestroyContext(&self, hime: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn EnumRegisterWordA(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; - fn EnumRegisterWordW(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; - fn EscapeA(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; - fn EscapeW(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; - fn GetCandidateListA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetCandidateListW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetCandidateListCountA(&self, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; - fn GetCandidateListCountW(&self, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; - fn GetCandidateWindow(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::Result<()>; - fn GetCompositionFontA(&self, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; - fn GetCompositionFontW(&self, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; - fn GetCompositionStringA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; - fn GetCompositionStringW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; - fn GetCompositionWindow(&self, himc: super::super::super::Globalization::HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::Result<()>; - fn GetContext(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; - fn GetConversionListA(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: &windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetConversionListW(&self, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: &windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetConversionStatus(&self, himc: super::super::super::Globalization::HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::Result<()>; + fn AssociateContext(&self, hwnd: super::super::super::Foundation::HWND, hime: HIMC) -> windows_core::Result; + fn ConfigureIMEA(&self, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::Result<()>; + fn ConfigureIMEW(&self, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::Result<()>; + fn CreateContext(&self) -> windows_core::Result; + fn DestroyContext(&self, hime: HIMC) -> windows_core::Result<()>; + fn EnumRegisterWordA(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; + fn EnumRegisterWordW(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR, pdata: *const core::ffi::c_void) -> windows_core::Result; + fn EscapeA(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; + fn EscapeW(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()>; + fn GetCandidateListA(&self, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetCandidateListW(&self, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetCandidateListCountA(&self, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; + fn GetCandidateListCountW(&self, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()>; + fn GetCandidateWindow(&self, himc: HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::Result<()>; + fn GetCompositionFontA(&self, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; + fn GetCompositionFontW(&self, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; + fn GetCompositionStringA(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; + fn GetCompositionStringW(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()>; + fn GetCompositionWindow(&self, himc: HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::Result<()>; + fn GetContext(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; + fn GetConversionListA(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: &windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetConversionListW(&self, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: &windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetConversionStatus(&self, himc: HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::Result<()>; fn GetDefaultIMEWnd(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; - fn GetDescriptionA(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetDescriptionW(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetGuideLineA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::Result<()>; - fn GetGuideLineW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::Result<()>; - fn GetIMEFileNameA(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetIMEFileNameW(&self, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetOpenStatus(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn GetProperty(&self, hkl: super::super::TextServices::HKL, fdwindex: u32) -> windows_core::Result; - fn GetRegisterWordStyleA(&self, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetRegisterWordStyleW(&self, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::Result<()>; - fn GetStatusWindowPos(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result; + fn GetDescriptionA(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetDescriptionW(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetGuideLineA(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetGuideLineW(&self, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetIMEFileNameA(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetIMEFileNameW(&self, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetOpenStatus(&self, himc: HIMC) -> windows_core::Result<()>; + fn GetProperty(&self, hkl: super::KeyboardAndMouse::HKL, fdwindex: u32) -> windows_core::Result; + fn GetRegisterWordStyleA(&self, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetRegisterWordStyleW(&self, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::Result<()>; + fn GetStatusWindowPos(&self, himc: HIMC) -> windows_core::Result; fn GetVirtualKey(&self, hwnd: super::super::super::Foundation::HWND) -> windows_core::Result; - fn InstallIMEA(&self, szimefilename: &windows_core::PCSTR, szlayouttext: &windows_core::PCSTR) -> windows_core::Result; - fn InstallIMEW(&self, szimefilename: &windows_core::PCWSTR, szlayouttext: &windows_core::PCWSTR) -> windows_core::Result; - fn IsIME(&self, hkl: super::super::TextServices::HKL) -> windows_core::Result<()>; + fn InstallIMEA(&self, szimefilename: &windows_core::PCSTR, szlayouttext: &windows_core::PCSTR) -> windows_core::Result; + fn InstallIMEW(&self, szimefilename: &windows_core::PCWSTR, szlayouttext: &windows_core::PCWSTR) -> windows_core::Result; + fn IsIME(&self, hkl: super::KeyboardAndMouse::HKL) -> windows_core::Result<()>; fn IsUIMessageA(&self, hwndime: super::super::super::Foundation::HWND, msg: u32, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result<()>; fn IsUIMessageW(&self, hwndime: super::super::super::Foundation::HWND, msg: u32, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result<()>; - fn NotifyIME(&self, himc: super::super::super::Globalization::HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()>; - fn RegisterWordA(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR) -> windows_core::Result<()>; - fn RegisterWordW(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR) -> windows_core::Result<()>; - fn ReleaseContext(&self, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn SetCandidateWindow(&self, himc: super::super::super::Globalization::HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::Result<()>; - fn SetCompositionFontA(&self, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; - fn SetCompositionFontW(&self, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; - fn SetCompositionStringA(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; - fn SetCompositionStringW(&self, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; - fn SetCompositionWindow(&self, himc: super::super::super::Globalization::HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::Result<()>; - fn SetConversionStatus(&self, himc: super::super::super::Globalization::HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::Result<()>; - fn SetOpenStatus(&self, himc: super::super::super::Globalization::HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; - fn SetStatusWindowPos(&self, himc: super::super::super::Globalization::HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::Result<()>; + fn NotifyIME(&self, himc: HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()>; + fn RegisterWordA(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szregister: &windows_core::PCSTR) -> windows_core::Result<()>; + fn RegisterWordW(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szregister: &windows_core::PCWSTR) -> windows_core::Result<()>; + fn ReleaseContext(&self, hwnd: super::super::super::Foundation::HWND, himc: HIMC) -> windows_core::Result<()>; + fn SetCandidateWindow(&self, himc: HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::Result<()>; + fn SetCompositionFontA(&self, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()>; + fn SetCompositionFontW(&self, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()>; + fn SetCompositionStringA(&self, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; + fn SetCompositionStringW(&self, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()>; + fn SetCompositionWindow(&self, himc: HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::Result<()>; + fn SetConversionStatus(&self, himc: HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::Result<()>; + fn SetOpenStatus(&self, himc: HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::Result<()>; + fn SetStatusWindowPos(&self, himc: HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::Result<()>; fn SimulateHotKey(&self, hwnd: super::super::super::Foundation::HWND, dwhotkeyid: u32) -> windows_core::Result<()>; - fn UnregisterWordA(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szunregister: &windows_core::PCSTR) -> windows_core::Result<()>; - fn UnregisterWordW(&self, hkl: super::super::TextServices::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szunregister: &windows_core::PCWSTR) -> windows_core::Result<()>; - fn GenerateMessage(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn LockIMC(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result<*mut INPUTCONTEXT>; - fn UnlockIMC(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result<()>; - fn GetIMCLockCount(&self, himc: super::super::super::Globalization::HIMC) -> windows_core::Result; - fn CreateIMCC(&self, dwsize: u32) -> windows_core::Result; - fn DestroyIMCC(&self, himcc: super::super::super::Globalization::HIMCC) -> windows_core::Result<()>; - fn LockIMCC(&self, himcc: super::super::super::Globalization::HIMCC, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; - fn UnlockIMCC(&self, himcc: super::super::super::Globalization::HIMCC) -> windows_core::Result<()>; - fn ReSizeIMCC(&self, himcc: super::super::super::Globalization::HIMCC, dwsize: u32) -> windows_core::Result; - fn GetIMCCSize(&self, himcc: super::super::super::Globalization::HIMCC) -> windows_core::Result; - fn GetIMCCLockCount(&self, himcc: super::super::super::Globalization::HIMCC) -> windows_core::Result; - fn GetHotKey(&self, dwhotkeyid: u32, pumodifiers: *mut u32, puvkey: *mut u32, phkl: *mut super::super::TextServices::HKL) -> windows_core::Result<()>; - fn SetHotKey(&self, dwhotkeyid: u32, umodifiers: u32, uvkey: u32, hkl: super::super::TextServices::HKL) -> windows_core::Result<()>; + fn UnregisterWordA(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCSTR, dwstyle: u32, szunregister: &windows_core::PCSTR) -> windows_core::Result<()>; + fn UnregisterWordW(&self, hkl: super::KeyboardAndMouse::HKL, szreading: &windows_core::PCWSTR, dwstyle: u32, szunregister: &windows_core::PCWSTR) -> windows_core::Result<()>; + fn GenerateMessage(&self, himc: HIMC) -> windows_core::Result<()>; + fn LockIMC(&self, himc: HIMC) -> windows_core::Result<*mut INPUTCONTEXT>; + fn UnlockIMC(&self, himc: HIMC) -> windows_core::Result<()>; + fn GetIMCLockCount(&self, himc: HIMC) -> windows_core::Result; + fn CreateIMCC(&self, dwsize: u32) -> windows_core::Result; + fn DestroyIMCC(&self, himcc: HIMCC) -> windows_core::Result<()>; + fn LockIMCC(&self, himcc: HIMCC, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; + fn UnlockIMCC(&self, himcc: HIMCC) -> windows_core::Result<()>; + fn ReSizeIMCC(&self, himcc: HIMCC, dwsize: u32) -> windows_core::Result; + fn GetIMCCSize(&self, himcc: HIMCC) -> windows_core::Result; + fn GetIMCCLockCount(&self, himcc: HIMCC) -> windows_core::Result; + fn GetHotKey(&self, dwhotkeyid: u32, pumodifiers: *mut u32, puvkey: *mut u32, phkl: *mut super::KeyboardAndMouse::HKL) -> windows_core::Result<()>; + fn SetHotKey(&self, dwhotkeyid: u32, umodifiers: u32, uvkey: u32, hkl: super::KeyboardAndMouse::HKL) -> windows_core::Result<()>; fn CreateSoftKeyboard(&self, utype: u32, howner: super::super::super::Foundation::HWND, x: i32, y: i32) -> windows_core::Result; fn DestroySoftKeyboard(&self, hsoftkbdwnd: super::super::super::Foundation::HWND) -> windows_core::Result<()>; fn ShowSoftKeyboard(&self, hsoftkbdwnd: super::super::super::Foundation::HWND, ncmdshow: i32) -> windows_core::Result<()>; - fn GetCodePageA(&self, hkl: super::super::TextServices::HKL) -> windows_core::Result; - fn GetLangId(&self, hkl: super::super::TextServices::HKL) -> windows_core::Result; + fn GetCodePageA(&self, hkl: super::KeyboardAndMouse::HKL) -> windows_core::Result; + fn GetLangId(&self, hkl: super::KeyboardAndMouse::HKL) -> windows_core::Result; fn KeybdEvent(&self, lgidime: u16, bvk: u8, bscan: u8, dwflags: u32, dwextrainfo: u32) -> windows_core::Result<()>; fn LockModal(&self) -> windows_core::Result<()>; fn UnlockModal(&self) -> windows_core::Result<()>; - fn AssociateContextEx(&self, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC, dwflags: u32) -> windows_core::Result<()>; + fn AssociateContextEx(&self, hwnd: super::super::super::Foundation::HWND, himc: HIMC, dwflags: u32) -> windows_core::Result<()>; fn DisableIME(&self, idthread: u32) -> windows_core::Result<()>; - fn GetImeMenuItemsA(&self, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; - fn GetImeMenuItemsW(&self, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetImeMenuItemsA(&self, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; + fn GetImeMenuItemsW(&self, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()>; fn EnumInputContext(&self, idthread: u32) -> windows_core::Result; - fn RequestMessageA(&self, himc: super::super::super::Globalization::HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result; - fn RequestMessageW(&self, himc: super::super::super::Globalization::HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result; + fn RequestMessageA(&self, himc: HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result; + fn RequestMessageW(&self, himc: HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result; fn SendIMCA(&self, hwnd: super::super::super::Foundation::HWND, umsg: u32, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result; fn SendIMCW(&self, hwnd: super::super::super::Foundation::HWND, umsg: u32, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM) -> windows_core::Result; fn IsSleeping(&self) -> windows_core::Result<()>; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_TextServices"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl windows_core::RuntimeName for IActiveIMMIME {} -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi", feature = "Win32_UI_TextServices"))] +#[cfg(all(feature = "Win32_Graphics_Gdi", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl IActiveIMMIME_Vtbl { pub const fn new() -> IActiveIMMIME_Vtbl where Identity: IActiveIMMIME_Impl, { - unsafe extern "system" fn AssociateContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, hime: super::super::super::Globalization::HIMC, phprev: *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn AssociateContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, hime: HIMC, phprev: *mut HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1054,21 +1054,21 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn ConfigureIMEA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::HRESULT + unsafe extern "system" fn ConfigureIMEA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::ConfigureIMEA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&dwmode), core::mem::transmute_copy(&pdata)).into() } - unsafe extern "system" fn ConfigureIMEW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::HRESULT + unsafe extern "system" fn ConfigureIMEW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, hwnd: super::super::super::Foundation::HWND, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::ConfigureIMEW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&dwmode), core::mem::transmute_copy(&pdata)).into() } - unsafe extern "system" fn CreateContext(this: *mut core::ffi::c_void, phimc: *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn CreateContext(this: *mut core::ffi::c_void, phimc: *mut HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1081,14 +1081,14 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn DestroyContext(this: *mut core::ffi::c_void, hime: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn DestroyContext(this: *mut core::ffi::c_void, hime: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::DestroyContext(this, core::mem::transmute_copy(&hime)).into() } - unsafe extern "system" fn EnumRegisterWordA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn EnumRegisterWordA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1101,7 +1101,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn EnumRegisterWordW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn EnumRegisterWordW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR, pdata: *const core::ffi::c_void, penum: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1114,91 +1114,91 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn EscapeA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT + unsafe extern "system" fn EscapeA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::EscapeA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute_copy(&uescape), core::mem::transmute_copy(&pdata), core::mem::transmute_copy(&plresult)).into() } - unsafe extern "system" fn EscapeW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT + unsafe extern "system" fn EscapeW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::EscapeW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute_copy(&uescape), core::mem::transmute_copy(&pdata), core::mem::transmute_copy(&plresult)).into() } - unsafe extern "system" fn GetCandidateListA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCandidateListA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&pcandlist), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetCandidateListW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCandidateListW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&pcandlist), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetCandidateListCountA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListCountA(this: *mut core::ffi::c_void, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCandidateListCountA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pdwlistsize), core::mem::transmute_copy(&pdwbuflen)).into() } - unsafe extern "system" fn GetCandidateListCountW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateListCountW(this: *mut core::ffi::c_void, himc: HIMC, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCandidateListCountW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pdwlistsize), core::mem::transmute_copy(&pdwbuflen)).into() } - unsafe extern "system" fn GetCandidateWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::HRESULT + unsafe extern "system" fn GetCandidateWindow(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCandidateWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&pcandidate)).into() } - unsafe extern "system" fn GetCompositionFontA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionFontA(this: *mut core::ffi::c_void, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCompositionFontA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn GetCompositionFontW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionFontW(this: *mut core::ffi::c_void, himc: HIMC, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCompositionFontW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn GetCompositionStringA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionStringA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCompositionStringA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&plcopied), core::mem::transmute_copy(&pbuf)).into() } - unsafe extern "system" fn GetCompositionStringW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionStringW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCompositionStringW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&plcopied), core::mem::transmute_copy(&pbuf)).into() } - unsafe extern "system" fn GetCompositionWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::HRESULT + unsafe extern "system" fn GetCompositionWindow(this: *mut core::ffi::c_void, himc: HIMC, pcompform: *mut COMPOSITIONFORM) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetCompositionWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pcompform)).into() } - unsafe extern "system" fn GetContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, phimc: *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn GetContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, phimc: *mut HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1211,21 +1211,21 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetConversionListA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetConversionListA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: windows_core::PCSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetConversionListA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute(&psrc), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&uflag), core::mem::transmute_copy(&pdst), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetConversionListW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, himc: super::super::super::Globalization::HIMC, psrc: windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetConversionListW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, himc: HIMC, psrc: windows_core::PCWSTR, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetConversionListW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&himc), core::mem::transmute(&psrc), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&uflag), core::mem::transmute_copy(&pdst), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetConversionStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetConversionStatus(this: *mut core::ffi::c_void, himc: HIMC, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1245,56 +1245,56 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetDescriptionA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetDescriptionA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetDescriptionA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szdescription), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetDescriptionW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetDescriptionW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetDescriptionW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szdescription), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetGuideLineA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetGuideLineA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetGuideLineA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&pbuf), core::mem::transmute_copy(&pdwresult)).into() } - unsafe extern "system" fn GetGuideLineW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetGuideLineW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetGuideLineW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwbuflen), core::mem::transmute_copy(&pbuf), core::mem::transmute_copy(&pdwresult)).into() } - unsafe extern "system" fn GetIMEFileNameA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetIMEFileNameA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetIMEFileNameA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szfilename), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetIMEFileNameW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetIMEFileNameW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetIMEFileNameW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&ubuflen), core::mem::transmute_copy(&szfilename), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetOpenStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn GetOpenStatus(this: *mut core::ffi::c_void, himc: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetOpenStatus(this, core::mem::transmute_copy(&himc)).into() } - unsafe extern "system" fn GetProperty(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, fdwindex: u32, pdwproperty: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetProperty(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, fdwindex: u32, pdwproperty: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1307,21 +1307,21 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetRegisterWordStyleA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetRegisterWordStyleA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetRegisterWordStyleA(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&nitem), core::mem::transmute_copy(&pstylebuf), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetRegisterWordStyleW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetRegisterWordStyleW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetRegisterWordStyleW(this, core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&nitem), core::mem::transmute_copy(&pstylebuf), core::mem::transmute_copy(&pucopied)).into() } - unsafe extern "system" fn GetStatusWindowPos(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pptpos: *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT + unsafe extern "system" fn GetStatusWindowPos(this: *mut core::ffi::c_void, himc: HIMC, pptpos: *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1347,7 +1347,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn InstallIMEA(this: *mut core::ffi::c_void, szimefilename: windows_core::PCSTR, szlayouttext: windows_core::PCSTR, phkl: *mut super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn InstallIMEA(this: *mut core::ffi::c_void, szimefilename: windows_core::PCSTR, szlayouttext: windows_core::PCSTR, phkl: *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1360,7 +1360,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn InstallIMEW(this: *mut core::ffi::c_void, szimefilename: windows_core::PCWSTR, szlayouttext: windows_core::PCWSTR, phkl: *mut super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn InstallIMEW(this: *mut core::ffi::c_void, szimefilename: windows_core::PCWSTR, szlayouttext: windows_core::PCWSTR, phkl: *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1373,7 +1373,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn IsIME(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn IsIME(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1394,91 +1394,91 @@ impl IActiveIMMIME_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::IsUIMessageW(this, core::mem::transmute_copy(&hwndime), core::mem::transmute_copy(&msg), core::mem::transmute_copy(&wparam), core::mem::transmute_copy(&lparam)).into() } - unsafe extern "system" fn NotifyIME(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::HRESULT + unsafe extern "system" fn NotifyIME(this: *mut core::ffi::c_void, himc: HIMC, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::NotifyIME(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwaction), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&dwvalue)).into() } - unsafe extern "system" fn RegisterWordA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR) -> windows_core::HRESULT + unsafe extern "system" fn RegisterWordA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szregister: windows_core::PCSTR) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::RegisterWordA(this, core::mem::transmute_copy(&hkl), core::mem::transmute(&szreading), core::mem::transmute_copy(&dwstyle), core::mem::transmute(&szregister)).into() } - unsafe extern "system" fn RegisterWordW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR) -> windows_core::HRESULT + unsafe extern "system" fn RegisterWordW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szregister: windows_core::PCWSTR) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::RegisterWordW(this, core::mem::transmute_copy(&hkl), core::mem::transmute(&szreading), core::mem::transmute_copy(&dwstyle), core::mem::transmute(&szregister)).into() } - unsafe extern "system" fn ReleaseContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn ReleaseContext(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::ReleaseContext(this, core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&himc)).into() } - unsafe extern "system" fn SetCandidateWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::HRESULT + unsafe extern "system" fn SetCandidateWindow(this: *mut core::ffi::c_void, himc: HIMC, pcandidate: *const CANDIDATEFORM) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetCandidateWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pcandidate)).into() } - unsafe extern "system" fn SetCompositionFontA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionFontA(this: *mut core::ffi::c_void, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetCompositionFontA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn SetCompositionFontW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionFontW(this: *mut core::ffi::c_void, himc: HIMC, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetCompositionFontW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&plf)).into() } - unsafe extern "system" fn SetCompositionStringA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionStringA(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetCompositionStringA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&pcomp), core::mem::transmute_copy(&dwcomplen), core::mem::transmute_copy(&pread), core::mem::transmute_copy(&dwreadlen)).into() } - unsafe extern "system" fn SetCompositionStringW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionStringW(this: *mut core::ffi::c_void, himc: HIMC, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetCompositionStringW(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwindex), core::mem::transmute_copy(&pcomp), core::mem::transmute_copy(&dwcomplen), core::mem::transmute_copy(&pread), core::mem::transmute_copy(&dwreadlen)).into() } - unsafe extern "system" fn SetCompositionWindow(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::HRESULT + unsafe extern "system" fn SetCompositionWindow(this: *mut core::ffi::c_void, himc: HIMC, pcompform: *const COMPOSITIONFORM) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetCompositionWindow(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&pcompform)).into() } - unsafe extern "system" fn SetConversionStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::HRESULT + unsafe extern "system" fn SetConversionStatus(this: *mut core::ffi::c_void, himc: HIMC, fdwconversion: u32, fdwsentence: u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetConversionStatus(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&fdwconversion), core::mem::transmute_copy(&fdwsentence)).into() } - unsafe extern "system" fn SetOpenStatus(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::HRESULT + unsafe extern "system" fn SetOpenStatus(this: *mut core::ffi::c_void, himc: HIMC, fopen: super::super::super::Foundation::BOOL) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SetOpenStatus(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&fopen)).into() } - unsafe extern "system" fn SetStatusWindowPos(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::HRESULT + unsafe extern "system" fn SetStatusWindowPos(this: *mut core::ffi::c_void, himc: HIMC, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1492,28 +1492,28 @@ impl IActiveIMMIME_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::SimulateHotKey(this, core::mem::transmute_copy(&hwnd), core::mem::transmute_copy(&dwhotkeyid)).into() } - unsafe extern "system" fn UnregisterWordA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szunregister: windows_core::PCSTR) -> windows_core::HRESULT + unsafe extern "system" fn UnregisterWordA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCSTR, dwstyle: u32, szunregister: windows_core::PCSTR) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::UnregisterWordA(this, core::mem::transmute_copy(&hkl), core::mem::transmute(&szreading), core::mem::transmute_copy(&dwstyle), core::mem::transmute(&szunregister)).into() } - unsafe extern "system" fn UnregisterWordW(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szunregister: windows_core::PCWSTR) -> windows_core::HRESULT + unsafe extern "system" fn UnregisterWordW(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, szreading: windows_core::PCWSTR, dwstyle: u32, szunregister: windows_core::PCWSTR) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::UnregisterWordW(this, core::mem::transmute_copy(&hkl), core::mem::transmute(&szreading), core::mem::transmute_copy(&dwstyle), core::mem::transmute(&szunregister)).into() } - unsafe extern "system" fn GenerateMessage(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn GenerateMessage(this: *mut core::ffi::c_void, himc: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GenerateMessage(this, core::mem::transmute_copy(&himc)).into() } - unsafe extern "system" fn LockIMC(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, ppimc: *mut *mut INPUTCONTEXT) -> windows_core::HRESULT + unsafe extern "system" fn LockIMC(this: *mut core::ffi::c_void, himc: HIMC, ppimc: *mut *mut INPUTCONTEXT) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1526,14 +1526,14 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn UnlockIMC(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC) -> windows_core::HRESULT + unsafe extern "system" fn UnlockIMC(this: *mut core::ffi::c_void, himc: HIMC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::UnlockIMC(this, core::mem::transmute_copy(&himc)).into() } - unsafe extern "system" fn GetIMCLockCount(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, pdwlockcount: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetIMCLockCount(this: *mut core::ffi::c_void, himc: HIMC, pdwlockcount: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1546,7 +1546,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn CreateIMCC(this: *mut core::ffi::c_void, dwsize: u32, phimcc: *mut super::super::super::Globalization::HIMCC) -> windows_core::HRESULT + unsafe extern "system" fn CreateIMCC(this: *mut core::ffi::c_void, dwsize: u32, phimcc: *mut HIMCC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1559,28 +1559,28 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn DestroyIMCC(this: *mut core::ffi::c_void, himcc: super::super::super::Globalization::HIMCC) -> windows_core::HRESULT + unsafe extern "system" fn DestroyIMCC(this: *mut core::ffi::c_void, himcc: HIMCC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::DestroyIMCC(this, core::mem::transmute_copy(&himcc)).into() } - unsafe extern "system" fn LockIMCC(this: *mut core::ffi::c_void, himcc: super::super::super::Globalization::HIMCC, ppv: *mut *mut core::ffi::c_void) -> windows_core::HRESULT + unsafe extern "system" fn LockIMCC(this: *mut core::ffi::c_void, himcc: HIMCC, ppv: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::LockIMCC(this, core::mem::transmute_copy(&himcc), core::mem::transmute_copy(&ppv)).into() } - unsafe extern "system" fn UnlockIMCC(this: *mut core::ffi::c_void, himcc: super::super::super::Globalization::HIMCC) -> windows_core::HRESULT + unsafe extern "system" fn UnlockIMCC(this: *mut core::ffi::c_void, himcc: HIMCC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::UnlockIMCC(this, core::mem::transmute_copy(&himcc)).into() } - unsafe extern "system" fn ReSizeIMCC(this: *mut core::ffi::c_void, himcc: super::super::super::Globalization::HIMCC, dwsize: u32, phimcc: *mut super::super::super::Globalization::HIMCC) -> windows_core::HRESULT + unsafe extern "system" fn ReSizeIMCC(this: *mut core::ffi::c_void, himcc: HIMCC, dwsize: u32, phimcc: *mut HIMCC) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1593,7 +1593,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetIMCCSize(this: *mut core::ffi::c_void, himcc: super::super::super::Globalization::HIMCC, pdwsize: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetIMCCSize(this: *mut core::ffi::c_void, himcc: HIMCC, pdwsize: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1606,7 +1606,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetIMCCLockCount(this: *mut core::ffi::c_void, himcc: super::super::super::Globalization::HIMCC, pdwlockcount: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetIMCCLockCount(this: *mut core::ffi::c_void, himcc: HIMCC, pdwlockcount: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1619,14 +1619,14 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetHotKey(this: *mut core::ffi::c_void, dwhotkeyid: u32, pumodifiers: *mut u32, puvkey: *mut u32, phkl: *mut super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn GetHotKey(this: *mut core::ffi::c_void, dwhotkeyid: u32, pumodifiers: *mut u32, puvkey: *mut u32, phkl: *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetHotKey(this, core::mem::transmute_copy(&dwhotkeyid), core::mem::transmute_copy(&pumodifiers), core::mem::transmute_copy(&puvkey), core::mem::transmute_copy(&phkl)).into() } - unsafe extern "system" fn SetHotKey(this: *mut core::ffi::c_void, dwhotkeyid: u32, umodifiers: u32, uvkey: u32, hkl: super::super::TextServices::HKL) -> windows_core::HRESULT + unsafe extern "system" fn SetHotKey(this: *mut core::ffi::c_void, dwhotkeyid: u32, umodifiers: u32, uvkey: u32, hkl: super::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1660,7 +1660,7 @@ impl IActiveIMMIME_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::ShowSoftKeyboard(this, core::mem::transmute_copy(&hsoftkbdwnd), core::mem::transmute_copy(&ncmdshow)).into() } - unsafe extern "system" fn GetCodePageA(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, ucodepage: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetCodePageA(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, ucodepage: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1673,7 +1673,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn GetLangId(this: *mut core::ffi::c_void, hkl: super::super::TextServices::HKL, plid: *mut u16) -> windows_core::HRESULT + unsafe extern "system" fn GetLangId(this: *mut core::ffi::c_void, hkl: super::KeyboardAndMouse::HKL, plid: *mut u16) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1707,7 +1707,7 @@ impl IActiveIMMIME_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::UnlockModal(this).into() } - unsafe extern "system" fn AssociateContextEx(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: super::super::super::Globalization::HIMC, dwflags: u32) -> windows_core::HRESULT + unsafe extern "system" fn AssociateContextEx(this: *mut core::ffi::c_void, hwnd: super::super::super::Foundation::HWND, himc: HIMC, dwflags: u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1721,14 +1721,14 @@ impl IActiveIMMIME_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::DisableIME(this, core::mem::transmute_copy(&idthread)).into() } - unsafe extern "system" fn GetImeMenuItemsA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetImeMenuItemsA(this: *mut core::ffi::c_void, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IActiveIMMIME_Impl::GetImeMenuItemsA(this, core::mem::transmute_copy(&himc), core::mem::transmute_copy(&dwflags), core::mem::transmute_copy(&dwtype), core::mem::transmute_copy(&pimeparentmenu), core::mem::transmute_copy(&pimemenu), core::mem::transmute_copy(&dwsize), core::mem::transmute_copy(&pdwresult)).into() } - unsafe extern "system" fn GetImeMenuItemsW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetImeMenuItemsW(this: *mut core::ffi::c_void, himc: HIMC, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1748,7 +1748,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn RequestMessageA(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT + unsafe extern "system" fn RequestMessageA(this: *mut core::ffi::c_void, himc: HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -1761,7 +1761,7 @@ impl IActiveIMMIME_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn RequestMessageW(this: *mut core::ffi::c_void, himc: super::super::super::Globalization::HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT + unsafe extern "system" fn RequestMessageW(this: *mut core::ffi::c_void, himc: HIMC, wparam: super::super::super::Foundation::WPARAM, lparam: super::super::super::Foundation::LPARAM, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT where Identity: IActiveIMMIME_Impl, { @@ -2007,16 +2007,13 @@ impl IActiveIMMRegistrar_Vtbl { iid == &::IID } } -#[cfg(feature = "Win32_Globalization")] pub trait IEnumInputContext_Impl: Sized { fn Clone(&self) -> windows_core::Result; - fn Next(&self, ulcount: u32, rginputcontext: *mut super::super::super::Globalization::HIMC, pcfetched: *mut u32) -> windows_core::Result<()>; + fn Next(&self, ulcount: u32, rginputcontext: *mut HIMC, pcfetched: *mut u32) -> windows_core::Result<()>; fn Reset(&self) -> windows_core::Result<()>; fn Skip(&self, ulcount: u32) -> windows_core::Result<()>; } -#[cfg(feature = "Win32_Globalization")] impl windows_core::RuntimeName for IEnumInputContext {} -#[cfg(feature = "Win32_Globalization")] impl IEnumInputContext_Vtbl { pub const fn new() -> IEnumInputContext_Vtbl where @@ -2035,7 +2032,7 @@ impl IEnumInputContext_Vtbl { Err(err) => err.into(), } } - unsafe extern "system" fn Next(this: *mut core::ffi::c_void, ulcount: u32, rginputcontext: *mut super::super::super::Globalization::HIMC, pcfetched: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn Next(this: *mut core::ffi::c_void, ulcount: u32, rginputcontext: *mut HIMC, pcfetched: *mut u32) -> windows_core::HRESULT where Identity: IEnumInputContext_Impl, { diff --git a/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/mod.rs index 16ea1f55ae..c6fa59504d 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Input/Ime/mod.rs @@ -1,53 +1,49 @@ -#[cfg(feature = "Win32_Globalization")] #[inline] -pub unsafe fn ImmAssociateContext(param0: P0, param1: P1) -> super::super::super::Globalization::HIMC +pub unsafe fn ImmAssociateContext(param0: P0, param1: P1) -> HIMC where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmAssociateContext(param0 : super::super::super::Foundation:: HWND, param1 : super::super::super::Globalization:: HIMC) -> super::super::super::Globalization:: HIMC); + windows_targets::link!("imm32.dll" "system" fn ImmAssociateContext(param0 : super::super::super::Foundation:: HWND, param1 : HIMC) -> HIMC); ImmAssociateContext(param0.param().abi(), param1.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmAssociateContextEx(param0: P0, param1: P1, param2: u32) -> super::super::super::Foundation::BOOL where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmAssociateContextEx(param0 : super::super::super::Foundation:: HWND, param1 : super::super::super::Globalization:: HIMC, param2 : u32) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmAssociateContextEx(param0 : super::super::super::Foundation:: HWND, param1 : HIMC, param2 : u32) -> super::super::super::Foundation:: BOOL); ImmAssociateContextEx(param0.param().abi(), param1.param().abi(), param2) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmConfigureIMEA(param0: P0, param1: P1, param2: u32, param3: *mut core::ffi::c_void) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEA(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEA(param0 : super::KeyboardAndMouse:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); ImmConfigureIMEA(param0.param().abi(), param1.param().abi(), param2, param3) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmConfigureIMEW(param0: P0, param1: P1, param2: u32, param3: *mut core::ffi::c_void) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEW(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmConfigureIMEW(param0 : super::KeyboardAndMouse:: HKL, param1 : super::super::super::Foundation:: HWND, param2 : u32, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: BOOL); ImmConfigureIMEW(param0.param().abi(), param1.param().abi(), param2, param3) } -#[cfg(feature = "Win32_Globalization")] #[inline] -pub unsafe fn ImmCreateContext() -> super::super::super::Globalization::HIMC { - windows_targets::link!("imm32.dll" "system" fn ImmCreateContext() -> super::super::super::Globalization:: HIMC); +pub unsafe fn ImmCreateContext() -> HIMC { + windows_targets::link!("imm32.dll" "system" fn ImmCreateContext() -> HIMC); ImmCreateContext() } -#[cfg(feature = "Win32_Globalization")] #[inline] -pub unsafe fn ImmCreateIMCC(param0: u32) -> super::super::super::Globalization::HIMCC { - windows_targets::link!("imm32.dll" "system" fn ImmCreateIMCC(param0 : u32) -> super::super::super::Globalization:: HIMCC); +pub unsafe fn ImmCreateIMCC(param0: u32) -> HIMCC { + windows_targets::link!("imm32.dll" "system" fn ImmCreateIMCC(param0 : u32) -> HIMCC); ImmCreateIMCC(param0) } #[inline] @@ -58,22 +54,20 @@ where windows_targets::link!("imm32.dll" "system" fn ImmCreateSoftKeyboard(param0 : u32, param1 : super::super::super::Foundation:: HWND, param2 : i32, param3 : i32) -> super::super::super::Foundation:: HWND); ImmCreateSoftKeyboard(param0, param1.param().abi(), param2, param3) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmDestroyContext(param0: P0) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmDestroyContext(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmDestroyContext(param0 : HIMC) -> super::super::super::Foundation:: BOOL); ImmDestroyContext(param0.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] -pub unsafe fn ImmDestroyIMCC(param0: P0) -> super::super::super::Globalization::HIMCC +pub unsafe fn ImmDestroyIMCC(param0: P0) -> HIMCC where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmDestroyIMCC(param0 : super::super::super::Globalization:: HIMCC) -> super::super::super::Globalization:: HIMCC); + windows_targets::link!("imm32.dll" "system" fn ImmDestroyIMCC(param0 : HIMCC) -> HIMCC); ImmDestroyIMCC(param0.param().abi()) } #[inline] @@ -99,7 +93,6 @@ pub unsafe fn ImmDisableTextFrameService(idthread: u32) -> super::super::super:: windows_targets::link!("imm32.dll" "system" fn ImmDisableTextFrameService(idthread : u32) -> super::super::super::Foundation:: BOOL); ImmDisableTextFrameService(idthread) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmEnumInputContext(idthread: u32, lpfn: IMCENUMPROC, lparam: P0) -> super::super::super::Foundation::BOOL where @@ -108,185 +101,174 @@ where windows_targets::link!("imm32.dll" "system" fn ImmEnumInputContext(idthread : u32, lpfn : IMCENUMPROC, lparam : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: BOOL); ImmEnumInputContext(idthread, lpfn, lparam.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmEnumRegisterWordA(param0: P0, param1: REGISTERWORDENUMPROCA, lpszreading: P1, param3: u32, lpszregister: P2, param5: *mut core::ffi::c_void) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordA(param0 : super::super::TextServices:: HKL, param1 : REGISTERWORDENUMPROCA, lpszreading : windows_core::PCSTR, param3 : u32, lpszregister : windows_core::PCSTR, param5 : *mut core::ffi::c_void) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordA(param0 : super::KeyboardAndMouse:: HKL, param1 : REGISTERWORDENUMPROCA, lpszreading : windows_core::PCSTR, param3 : u32, lpszregister : windows_core::PCSTR, param5 : *mut core::ffi::c_void) -> u32); ImmEnumRegisterWordA(param0.param().abi(), param1, lpszreading.param().abi(), param3, lpszregister.param().abi(), param5) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmEnumRegisterWordW(param0: P0, param1: REGISTERWORDENUMPROCW, lpszreading: P1, param3: u32, lpszregister: P2, param5: *mut core::ffi::c_void) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordW(param0 : super::super::TextServices:: HKL, param1 : REGISTERWORDENUMPROCW, lpszreading : windows_core::PCWSTR, param3 : u32, lpszregister : windows_core::PCWSTR, param5 : *mut core::ffi::c_void) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmEnumRegisterWordW(param0 : super::KeyboardAndMouse:: HKL, param1 : REGISTERWORDENUMPROCW, lpszreading : windows_core::PCWSTR, param3 : u32, lpszregister : windows_core::PCWSTR, param5 : *mut core::ffi::c_void) -> u32); ImmEnumRegisterWordW(param0.param().abi(), param1, lpszreading.param().abi(), param3, lpszregister.param().abi(), param5) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmEscapeA(param0: P0, param1: P1, param2: IME_ESCAPE, param3: *mut core::ffi::c_void) -> super::super::super::Foundation::LRESULT where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmEscapeA(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); + windows_targets::link!("imm32.dll" "system" fn ImmEscapeA(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); ImmEscapeA(param0.param().abi(), param1.param().abi(), param2, param3) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmEscapeW(param0: P0, param1: P1, param2: IME_ESCAPE, param3: *mut core::ffi::c_void) -> super::super::super::Foundation::LRESULT where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmEscapeW(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); + windows_targets::link!("imm32.dll" "system" fn ImmEscapeW(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, param2 : IME_ESCAPE, param3 : *mut core::ffi::c_void) -> super::super::super::Foundation:: LRESULT); ImmEscapeW(param0.param().abi(), param1.param().abi(), param2, param3) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGenerateMessage(param0: P0) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGenerateMessage(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGenerateMessage(param0 : HIMC) -> super::super::super::Foundation:: BOOL); ImmGenerateMessage(param0.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCandidateListA(param0: P0, deindex: u32, lpcandlist: Option<*mut CANDIDATELIST>, dwbuflen: u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListA(param0 : super::super::super::Globalization:: HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListA(param0 : HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); ImmGetCandidateListA(param0.param().abi(), deindex, core::mem::transmute(lpcandlist.unwrap_or(std::ptr::null_mut())), dwbuflen) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCandidateListCountA(param0: P0, lpdwlistcount: *mut u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountA(param0 : super::super::super::Globalization:: HIMC, lpdwlistcount : *mut u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountA(param0 : HIMC, lpdwlistcount : *mut u32) -> u32); ImmGetCandidateListCountA(param0.param().abi(), lpdwlistcount) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCandidateListCountW(param0: P0, lpdwlistcount: *mut u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountW(param0 : super::super::super::Globalization:: HIMC, lpdwlistcount : *mut u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListCountW(param0 : HIMC, lpdwlistcount : *mut u32) -> u32); ImmGetCandidateListCountW(param0.param().abi(), lpdwlistcount) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCandidateListW(param0: P0, deindex: u32, lpcandlist: Option<*mut CANDIDATELIST>, dwbuflen: u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListW(param0 : super::super::super::Globalization:: HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateListW(param0 : HIMC, deindex : u32, lpcandlist : *mut CANDIDATELIST, dwbuflen : u32) -> u32); ImmGetCandidateListW(param0.param().abi(), deindex, core::mem::transmute(lpcandlist.unwrap_or(std::ptr::null_mut())), dwbuflen) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCandidateWindow(param0: P0, param1: u32, lpcandidate: *mut CANDIDATEFORM) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateWindow(param0 : super::super::super::Globalization:: HIMC, param1 : u32, lpcandidate : *mut CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGetCandidateWindow(param0 : HIMC, param1 : u32, lpcandidate : *mut CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); ImmGetCandidateWindow(param0.param().abi(), param1, lpcandidate) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[inline] pub unsafe fn ImmGetCompositionFontA(param0: P0, lplf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontA(param0 : super::super::super::Globalization:: HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontA(param0 : HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); ImmGetCompositionFontA(param0.param().abi(), lplf) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[inline] pub unsafe fn ImmGetCompositionFontW(param0: P0, lplf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontW(param0 : super::super::super::Globalization:: HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionFontW(param0 : HIMC, lplf : *mut super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); ImmGetCompositionFontW(param0.param().abi(), lplf) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCompositionStringA(param0: P0, param1: IME_COMPOSITION_STRING, lpbuf: Option<*mut core::ffi::c_void>, dwbuflen: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringA(param0 : super::super::super::Globalization:: HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); + windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringA(param0 : HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); ImmGetCompositionStringA(param0.param().abi(), param1, core::mem::transmute(lpbuf.unwrap_or(std::ptr::null_mut())), dwbuflen) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCompositionStringW(param0: P0, param1: IME_COMPOSITION_STRING, lpbuf: Option<*mut core::ffi::c_void>, dwbuflen: u32) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringW(param0 : super::super::super::Globalization:: HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); + windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionStringW(param0 : HIMC, param1 : IME_COMPOSITION_STRING, lpbuf : *mut core::ffi::c_void, dwbuflen : u32) -> i32); ImmGetCompositionStringW(param0.param().abi(), param1, core::mem::transmute(lpbuf.unwrap_or(std::ptr::null_mut())), dwbuflen) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetCompositionWindow(param0: P0, lpcompform: *mut COMPOSITIONFORM) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionWindow(param0 : super::super::super::Globalization:: HIMC, lpcompform : *mut COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGetCompositionWindow(param0 : HIMC, lpcompform : *mut COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); ImmGetCompositionWindow(param0.param().abi(), lpcompform) } -#[cfg(feature = "Win32_Globalization")] #[inline] -pub unsafe fn ImmGetContext(param0: P0) -> super::super::super::Globalization::HIMC +pub unsafe fn ImmGetContext(param0: P0) -> HIMC where P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetContext(param0 : super::super::super::Foundation:: HWND) -> super::super::super::Globalization:: HIMC); + windows_targets::link!("imm32.dll" "system" fn ImmGetContext(param0 : super::super::super::Foundation:: HWND) -> HIMC); ImmGetContext(param0.param().abi()) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetConversionListA(param0: P0, param1: P1, lpsrc: P2, lpdst: *mut CANDIDATELIST, dwbuflen: u32, uflag: GET_CONVERSION_LIST_FLAG) -> u32 where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListA(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, lpsrc : windows_core::PCSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListA(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, lpsrc : windows_core::PCSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); ImmGetConversionListA(param0.param().abi(), param1.param().abi(), lpsrc.param().abi(), lpdst, dwbuflen, uflag) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetConversionListW(param0: P0, param1: P1, lpsrc: P2, lpdst: *mut CANDIDATELIST, dwbuflen: u32, uflag: GET_CONVERSION_LIST_FLAG) -> u32 where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListW(param0 : super::super::TextServices:: HKL, param1 : super::super::super::Globalization:: HIMC, lpsrc : windows_core::PCWSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetConversionListW(param0 : super::KeyboardAndMouse:: HKL, param1 : HIMC, lpsrc : windows_core::PCWSTR, lpdst : *mut CANDIDATELIST, dwbuflen : u32, uflag : GET_CONVERSION_LIST_FLAG) -> u32); ImmGetConversionListW(param0.param().abi(), param1.param().abi(), lpsrc.param().abi(), lpdst, dwbuflen, uflag) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetConversionStatus(param0: P0, lpfdwconversion: Option<*mut IME_CONVERSION_MODE>, lpfdwsentence: Option<*mut IME_SENTENCE_MODE>) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetConversionStatus(param0 : super::super::super::Globalization:: HIMC, lpfdwconversion : *mut IME_CONVERSION_MODE, lpfdwsentence : *mut IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGetConversionStatus(param0 : HIMC, lpfdwconversion : *mut IME_CONVERSION_MODE, lpfdwsentence : *mut IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); ImmGetConversionStatus(param0.param().abi(), core::mem::transmute(lpfdwconversion.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpfdwsentence.unwrap_or(std::ptr::null_mut()))) } #[inline] @@ -297,154 +279,147 @@ where windows_targets::link!("imm32.dll" "system" fn ImmGetDefaultIMEWnd(param0 : super::super::super::Foundation:: HWND) -> super::super::super::Foundation:: HWND); ImmGetDefaultIMEWnd(param0.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetDescriptionA(param0: P0, lpszdescription: Option<&mut [u8]>) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionA(param0 : super::super::TextServices:: HKL, lpszdescription : windows_core::PSTR, ubuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionA(param0 : super::KeyboardAndMouse:: HKL, lpszdescription : windows_core::PSTR, ubuflen : u32) -> u32); ImmGetDescriptionA(param0.param().abi(), core::mem::transmute(lpszdescription.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpszdescription.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetDescriptionW(param0: P0, lpszdescription: Option<&mut [u16]>) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionW(param0 : super::super::TextServices:: HKL, lpszdescription : windows_core::PWSTR, ubuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetDescriptionW(param0 : super::KeyboardAndMouse:: HKL, lpszdescription : windows_core::PWSTR, ubuflen : u32) -> u32); ImmGetDescriptionW(param0.param().abi(), core::mem::transmute(lpszdescription.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpszdescription.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetGuideLineA(param0: P0, dwindex: GET_GUIDE_LINE_TYPE, lpbuf: Option<&mut [u8]>) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineA(param0 : super::super::super::Globalization:: HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_core::PSTR, dwbuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineA(param0 : HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_core::PSTR, dwbuflen : u32) -> u32); ImmGetGuideLineA(param0.param().abi(), dwindex, core::mem::transmute(lpbuf.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpbuf.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetGuideLineW(param0: P0, dwindex: GET_GUIDE_LINE_TYPE, lpbuf: windows_core::PWSTR, dwbuflen: u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineW(param0 : super::super::super::Globalization:: HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_core::PWSTR, dwbuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetGuideLineW(param0 : HIMC, dwindex : GET_GUIDE_LINE_TYPE, lpbuf : windows_core::PWSTR, dwbuflen : u32) -> u32); ImmGetGuideLineW(param0.param().abi(), dwindex, core::mem::transmute(lpbuf), dwbuflen) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] -pub unsafe fn ImmGetHotKey(param0: u32, lpumodifiers: *mut u32, lpuvkey: *mut u32, phkl: *mut super::super::TextServices::HKL) -> super::super::super::Foundation::BOOL { - windows_targets::link!("imm32.dll" "system" fn ImmGetHotKey(param0 : u32, lpumodifiers : *mut u32, lpuvkey : *mut u32, phkl : *mut super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); +pub unsafe fn ImmGetHotKey(param0: u32, lpumodifiers: *mut u32, lpuvkey: *mut u32, phkl: *mut super::KeyboardAndMouse::HKL) -> super::super::super::Foundation::BOOL { + windows_targets::link!("imm32.dll" "system" fn ImmGetHotKey(param0 : u32, lpumodifiers : *mut u32, lpuvkey : *mut u32, phkl : *mut super::KeyboardAndMouse:: HKL) -> super::super::super::Foundation:: BOOL); ImmGetHotKey(param0, lpumodifiers, lpuvkey, phkl) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetIMCCLockCount(param0: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCLockCount(param0 : super::super::super::Globalization:: HIMCC) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCLockCount(param0 : HIMCC) -> u32); ImmGetIMCCLockCount(param0.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetIMCCSize(param0: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCSize(param0 : super::super::super::Globalization:: HIMCC) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetIMCCSize(param0 : HIMCC) -> u32); ImmGetIMCCSize(param0.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetIMCLockCount(param0: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetIMCLockCount(param0 : super::super::super::Globalization:: HIMC) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetIMCLockCount(param0 : HIMC) -> u32); ImmGetIMCLockCount(param0.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetIMEFileNameA(param0: P0, lpszfilename: Option<&mut [u8]>) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameA(param0 : super::super::TextServices:: HKL, lpszfilename : windows_core::PSTR, ubuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameA(param0 : super::KeyboardAndMouse:: HKL, lpszfilename : windows_core::PSTR, ubuflen : u32) -> u32); ImmGetIMEFileNameA(param0.param().abi(), core::mem::transmute(lpszfilename.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpszfilename.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetIMEFileNameW(param0: P0, lpszfilename: Option<&mut [u16]>) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameW(param0 : super::super::TextServices:: HKL, lpszfilename : windows_core::PWSTR, ubuflen : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetIMEFileNameW(param0 : super::KeyboardAndMouse:: HKL, lpszfilename : windows_core::PWSTR, ubuflen : u32) -> u32); ImmGetIMEFileNameW(param0.param().abi(), core::mem::transmute(lpszfilename.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpszfilename.as_deref().map_or(0, |slice| slice.len().try_into().unwrap())) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[inline] pub unsafe fn ImmGetImeMenuItemsA(param0: P0, param1: u32, param2: u32, lpimeparentmenu: Option<*mut IMEMENUITEMINFOA>, lpimemenu: Option<*mut IMEMENUITEMINFOA>, dwsize: u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsA(param0 : super::super::super::Globalization:: HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOA, lpimemenu : *mut IMEMENUITEMINFOA, dwsize : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsA(param0 : HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOA, lpimemenu : *mut IMEMENUITEMINFOA, dwsize : u32) -> u32); ImmGetImeMenuItemsA(param0.param().abi(), param1, param2, core::mem::transmute(lpimeparentmenu.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpimemenu.unwrap_or(std::ptr::null_mut())), dwsize) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[inline] pub unsafe fn ImmGetImeMenuItemsW(param0: P0, param1: u32, param2: u32, lpimeparentmenu: Option<*mut IMEMENUITEMINFOW>, lpimemenu: Option<*mut IMEMENUITEMINFOW>, dwsize: u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsW(param0 : super::super::super::Globalization:: HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOW, lpimemenu : *mut IMEMENUITEMINFOW, dwsize : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetImeMenuItemsW(param0 : HIMC, param1 : u32, param2 : u32, lpimeparentmenu : *mut IMEMENUITEMINFOW, lpimemenu : *mut IMEMENUITEMINFOW, dwsize : u32) -> u32); ImmGetImeMenuItemsW(param0.param().abi(), param1, param2, core::mem::transmute(lpimeparentmenu.unwrap_or(std::ptr::null_mut())), core::mem::transmute(lpimemenu.unwrap_or(std::ptr::null_mut())), dwsize) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetOpenStatus(param0: P0) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetOpenStatus(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGetOpenStatus(param0 : HIMC) -> super::super::super::Foundation:: BOOL); ImmGetOpenStatus(param0.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetProperty(param0: P0, param1: u32) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetProperty(param0 : super::super::TextServices:: HKL, param1 : u32) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetProperty(param0 : super::KeyboardAndMouse:: HKL, param1 : u32) -> u32); ImmGetProperty(param0.param().abi(), param1) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetRegisterWordStyleA(param0: P0, lpstylebuf: &mut [STYLEBUFA]) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleA(param0 : super::super::TextServices:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFA) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleA(param0 : super::KeyboardAndMouse:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFA) -> u32); ImmGetRegisterWordStyleA(param0.param().abi(), lpstylebuf.len().try_into().unwrap(), core::mem::transmute(lpstylebuf.as_ptr())) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmGetRegisterWordStyleW(param0: P0, lpstylebuf: &mut [STYLEBUFW]) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleW(param0 : super::super::TextServices:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFW) -> u32); + windows_targets::link!("imm32.dll" "system" fn ImmGetRegisterWordStyleW(param0 : super::KeyboardAndMouse:: HKL, nitem : u32, lpstylebuf : *mut STYLEBUFW) -> u32); ImmGetRegisterWordStyleW(param0.param().abi(), lpstylebuf.len().try_into().unwrap(), core::mem::transmute(lpstylebuf.as_ptr())) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmGetStatusWindowPos(param0: P0, lpptpos: *mut super::super::super::Foundation::POINT) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmGetStatusWindowPos(param0 : super::super::super::Globalization:: HIMC, lpptpos : *mut super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmGetStatusWindowPos(param0 : HIMC, lpptpos : *mut super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); ImmGetStatusWindowPos(param0.param().abi(), lpptpos) } #[inline] @@ -455,33 +430,33 @@ where windows_targets::link!("imm32.dll" "system" fn ImmGetVirtualKey(param0 : super::super::super::Foundation:: HWND) -> u32); ImmGetVirtualKey(param0.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] -pub unsafe fn ImmInstallIMEA(lpszimefilename: P0, lpszlayouttext: P1) -> super::super::TextServices::HKL +pub unsafe fn ImmInstallIMEA(lpszimefilename: P0, lpszlayouttext: P1) -> super::KeyboardAndMouse::HKL where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEA(lpszimefilename : windows_core::PCSTR, lpszlayouttext : windows_core::PCSTR) -> super::super::TextServices:: HKL); + windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEA(lpszimefilename : windows_core::PCSTR, lpszlayouttext : windows_core::PCSTR) -> super::KeyboardAndMouse:: HKL); ImmInstallIMEA(lpszimefilename.param().abi(), lpszlayouttext.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] -pub unsafe fn ImmInstallIMEW(lpszimefilename: P0, lpszlayouttext: P1) -> super::super::TextServices::HKL +pub unsafe fn ImmInstallIMEW(lpszimefilename: P0, lpszlayouttext: P1) -> super::KeyboardAndMouse::HKL where P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEW(lpszimefilename : windows_core::PCWSTR, lpszlayouttext : windows_core::PCWSTR) -> super::super::TextServices:: HKL); + windows_targets::link!("imm32.dll" "system" fn ImmInstallIMEW(lpszimefilename : windows_core::PCWSTR, lpszlayouttext : windows_core::PCWSTR) -> super::KeyboardAndMouse:: HKL); ImmInstallIMEW(lpszimefilename.param().abi(), lpszlayouttext.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmIsIME(param0: P0) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmIsIME(param0 : super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmIsIME(param0 : super::KeyboardAndMouse:: HKL) -> super::super::super::Foundation:: BOOL); ImmIsIME(param0.param().abi()) } #[inline] @@ -504,185 +479,172 @@ where windows_targets::link!("imm32.dll" "system" fn ImmIsUIMessageW(param0 : super::super::super::Foundation:: HWND, param1 : u32, param2 : super::super::super::Foundation:: WPARAM, param3 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: BOOL); ImmIsUIMessageW(param0.param().abi(), param1, param2.param().abi(), param3.param().abi()) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[inline] pub unsafe fn ImmLockIMC(param0: P0) -> *mut INPUTCONTEXT where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmLockIMC(param0 : super::super::super::Globalization:: HIMC) -> *mut INPUTCONTEXT); + windows_targets::link!("imm32.dll" "system" fn ImmLockIMC(param0 : HIMC) -> *mut INPUTCONTEXT); ImmLockIMC(param0.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmLockIMCC(param0: P0) -> *mut core::ffi::c_void where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmLockIMCC(param0 : super::super::super::Globalization:: HIMCC) -> *mut core::ffi::c_void); + windows_targets::link!("imm32.dll" "system" fn ImmLockIMCC(param0 : HIMCC) -> *mut core::ffi::c_void); ImmLockIMCC(param0.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmNotifyIME(param0: P0, dwaction: NOTIFY_IME_ACTION, dwindex: NOTIFY_IME_INDEX, dwvalue: u32) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmNotifyIME(param0 : super::super::super::Globalization:: HIMC, dwaction : NOTIFY_IME_ACTION, dwindex : NOTIFY_IME_INDEX, dwvalue : u32) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmNotifyIME(param0 : HIMC, dwaction : NOTIFY_IME_ACTION, dwindex : NOTIFY_IME_INDEX, dwvalue : u32) -> super::super::super::Foundation:: BOOL); ImmNotifyIME(param0.param().abi(), dwaction, dwindex, dwvalue) } -#[cfg(feature = "Win32_Globalization")] #[inline] -pub unsafe fn ImmReSizeIMCC(param0: P0, param1: u32) -> super::super::super::Globalization::HIMCC +pub unsafe fn ImmReSizeIMCC(param0: P0, param1: u32) -> HIMCC where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmReSizeIMCC(param0 : super::super::super::Globalization:: HIMCC, param1 : u32) -> super::super::super::Globalization:: HIMCC); + windows_targets::link!("imm32.dll" "system" fn ImmReSizeIMCC(param0 : HIMCC, param1 : u32) -> HIMCC); ImmReSizeIMCC(param0.param().abi(), param1) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmRegisterWordA(param0: P0, lpszreading: P1, param2: u32, lpszregister: P2) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordA(param0 : super::super::TextServices:: HKL, lpszreading : windows_core::PCSTR, param2 : u32, lpszregister : windows_core::PCSTR) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordA(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_core::PCSTR, param2 : u32, lpszregister : windows_core::PCSTR) -> super::super::super::Foundation:: BOOL); ImmRegisterWordA(param0.param().abi(), lpszreading.param().abi(), param2, lpszregister.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmRegisterWordW(param0: P0, lpszreading: P1, param2: u32, lpszregister: P2) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordW(param0 : super::super::TextServices:: HKL, lpszreading : windows_core::PCWSTR, param2 : u32, lpszregister : windows_core::PCWSTR) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmRegisterWordW(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_core::PCWSTR, param2 : u32, lpszregister : windows_core::PCWSTR) -> super::super::super::Foundation:: BOOL); ImmRegisterWordW(param0.param().abi(), lpszreading.param().abi(), param2, lpszregister.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmReleaseContext(param0: P0, param1: P1) -> super::super::super::Foundation::BOOL where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmReleaseContext(param0 : super::super::super::Foundation:: HWND, param1 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmReleaseContext(param0 : super::super::super::Foundation:: HWND, param1 : HIMC) -> super::super::super::Foundation:: BOOL); ImmReleaseContext(param0.param().abi(), param1.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmRequestMessageA(param0: P0, param1: P1, param2: P2) -> super::super::super::Foundation::LRESULT where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageA(param0 : super::super::super::Globalization:: HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); + windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageA(param0 : HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); ImmRequestMessageA(param0.param().abi(), param1.param().abi(), param2.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmRequestMessageW(param0: P0, param1: P1, param2: P2) -> super::super::super::Foundation::LRESULT where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageW(param0 : super::super::super::Globalization:: HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); + windows_targets::link!("imm32.dll" "system" fn ImmRequestMessageW(param0 : HIMC, param1 : super::super::super::Foundation:: WPARAM, param2 : super::super::super::Foundation:: LPARAM) -> super::super::super::Foundation:: LRESULT); ImmRequestMessageW(param0.param().abi(), param1.param().abi(), param2.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmSetCandidateWindow(param0: P0, lpcandidate: *const CANDIDATEFORM) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetCandidateWindow(param0 : super::super::super::Globalization:: HIMC, lpcandidate : *const CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetCandidateWindow(param0 : HIMC, lpcandidate : *const CANDIDATEFORM) -> super::super::super::Foundation:: BOOL); ImmSetCandidateWindow(param0.param().abi(), lpcandidate) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[inline] pub unsafe fn ImmSetCompositionFontA(param0: P0, lplf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontA(param0 : super::super::super::Globalization:: HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontA(param0 : HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTA) -> super::super::super::Foundation:: BOOL); ImmSetCompositionFontA(param0.param().abi(), lplf) } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[inline] pub unsafe fn ImmSetCompositionFontW(param0: P0, lplf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontW(param0 : super::super::super::Globalization:: HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionFontW(param0 : HIMC, lplf : *const super::super::super::Graphics::Gdi:: LOGFONTW) -> super::super::super::Foundation:: BOOL); ImmSetCompositionFontW(param0.param().abi(), lplf) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmSetCompositionStringA(param0: P0, dwindex: SET_COMPOSITION_STRING_TYPE, lpcomp: Option<*const core::ffi::c_void>, dwcomplen: u32, lpread: Option<*const core::ffi::c_void>, dwreadlen: u32) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringA(param0 : super::super::super::Globalization:: HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringA(param0 : HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); ImmSetCompositionStringA(param0.param().abi(), dwindex, core::mem::transmute(lpcomp.unwrap_or(std::ptr::null())), dwcomplen, core::mem::transmute(lpread.unwrap_or(std::ptr::null())), dwreadlen) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmSetCompositionStringW(param0: P0, dwindex: SET_COMPOSITION_STRING_TYPE, lpcomp: Option<*const core::ffi::c_void>, dwcomplen: u32, lpread: Option<*const core::ffi::c_void>, dwreadlen: u32) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringW(param0 : super::super::super::Globalization:: HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionStringW(param0 : HIMC, dwindex : SET_COMPOSITION_STRING_TYPE, lpcomp : *const core::ffi::c_void, dwcomplen : u32, lpread : *const core::ffi::c_void, dwreadlen : u32) -> super::super::super::Foundation:: BOOL); ImmSetCompositionStringW(param0.param().abi(), dwindex, core::mem::transmute(lpcomp.unwrap_or(std::ptr::null())), dwcomplen, core::mem::transmute(lpread.unwrap_or(std::ptr::null())), dwreadlen) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmSetCompositionWindow(param0: P0, lpcompform: *const COMPOSITIONFORM) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionWindow(param0 : super::super::super::Globalization:: HIMC, lpcompform : *const COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetCompositionWindow(param0 : HIMC, lpcompform : *const COMPOSITIONFORM) -> super::super::super::Foundation:: BOOL); ImmSetCompositionWindow(param0.param().abi(), lpcompform) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmSetConversionStatus(param0: P0, param1: IME_CONVERSION_MODE, param2: IME_SENTENCE_MODE) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetConversionStatus(param0 : super::super::super::Globalization:: HIMC, param1 : IME_CONVERSION_MODE, param2 : IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetConversionStatus(param0 : HIMC, param1 : IME_CONVERSION_MODE, param2 : IME_SENTENCE_MODE) -> super::super::super::Foundation:: BOOL); ImmSetConversionStatus(param0.param().abi(), param1, param2) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmSetHotKey(param0: u32, param1: u32, param2: u32, param3: P0) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetHotKey(param0 : u32, param1 : u32, param2 : u32, param3 : super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetHotKey(param0 : u32, param1 : u32, param2 : u32, param3 : super::KeyboardAndMouse:: HKL) -> super::super::super::Foundation:: BOOL); ImmSetHotKey(param0, param1, param2, param3.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmSetOpenStatus(param0: P0, param1: P1) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetOpenStatus(param0 : super::super::super::Globalization:: HIMC, param1 : super::super::super::Foundation:: BOOL) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetOpenStatus(param0 : HIMC, param1 : super::super::super::Foundation:: BOOL) -> super::super::super::Foundation:: BOOL); ImmSetOpenStatus(param0.param().abi(), param1.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmSetStatusWindowPos(param0: P0, lpptpos: *const super::super::super::Foundation::POINT) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmSetStatusWindowPos(param0 : super::super::super::Globalization:: HIMC, lpptpos : *const super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmSetStatusWindowPos(param0 : HIMC, lpptpos : *const super::super::super::Foundation:: POINT) -> super::super::super::Foundation:: BOOL); ImmSetStatusWindowPos(param0.param().abi(), lpptpos) } #[inline] @@ -701,44 +663,42 @@ where windows_targets::link!("imm32.dll" "system" fn ImmSimulateHotKey(param0 : super::super::super::Foundation:: HWND, param1 : IME_HOTKEY_IDENTIFIER) -> super::super::super::Foundation:: BOOL); ImmSimulateHotKey(param0.param().abi(), param1) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmUnlockIMC(param0: P0) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMC(param0 : super::super::super::Globalization:: HIMC) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMC(param0 : HIMC) -> super::super::super::Foundation:: BOOL); ImmUnlockIMC(param0.param().abi()) } -#[cfg(feature = "Win32_Globalization")] #[inline] pub unsafe fn ImmUnlockIMCC(param0: P0) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMCC(param0 : super::super::super::Globalization:: HIMCC) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmUnlockIMCC(param0 : HIMCC) -> super::super::super::Foundation:: BOOL); ImmUnlockIMCC(param0.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmUnregisterWordA(param0: P0, lpszreading: P1, param2: u32, lpszunregister: P2) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordA(param0 : super::super::TextServices:: HKL, lpszreading : windows_core::PCSTR, param2 : u32, lpszunregister : windows_core::PCSTR) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordA(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_core::PCSTR, param2 : u32, lpszunregister : windows_core::PCSTR) -> super::super::super::Foundation:: BOOL); ImmUnregisterWordA(param0.param().abi(), lpszreading.param().abi(), param2, lpszunregister.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[inline] pub unsafe fn ImmUnregisterWordW(param0: P0, lpszreading: P1, param2: u32, lpszunregister: P2) -> super::super::super::Foundation::BOOL where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { - windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordW(param0 : super::super::TextServices:: HKL, lpszreading : windows_core::PCWSTR, param2 : u32, lpszunregister : windows_core::PCWSTR) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("imm32.dll" "system" fn ImmUnregisterWordW(param0 : super::KeyboardAndMouse:: HKL, lpszreading : windows_core::PCWSTR, param2 : u32, lpszunregister : windows_core::PCWSTR) -> super::super::super::Foundation:: BOOL); ImmUnregisterWordW(param0.param().abi(), lpszreading.param().abi(), param2, lpszunregister.param().abi()) } windows_core::imp::define_interface!(IActiveIME, IActiveIME_Vtbl, 0x6fe20962_d077_11d0_8fe7_00aa006bcc59); @@ -753,18 +713,17 @@ impl IActiveIME { pub unsafe fn Inquire(&self, dwsysteminfoflags: u32, pimeinfo: *mut IMEINFO, szwndclass: windows_core::PWSTR, pdwprivate: *mut u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).Inquire)(windows_core::Interface::as_raw(self), dwsysteminfoflags, pimeinfo, core::mem::transmute(szwndclass), pdwprivate).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn ConversionList(&self, himc: P0, szsource: P1, uflag: u32, ubuflen: u32, pdest: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).ConversionList)(windows_core::Interface::as_raw(self), himc.param().abi(), szsource.param().abi(), uflag, ubuflen, pdest, pucopied).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn Configure(&self, hkl: P0, hwnd: P1, dwmode: u32, pregisterword: *const REGISTERWORDW) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).Configure)(windows_core::Interface::as_raw(self), hkl.param().abi(), hwnd.param().abi(), dwmode, pregisterword).ok() @@ -772,54 +731,47 @@ impl IActiveIME { pub unsafe fn Destroy(&self, ureserved: u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).Destroy)(windows_core::Interface::as_raw(self), ureserved).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn Escape(&self, himc: P0, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).Escape)(windows_core::Interface::as_raw(self), himc.param().abi(), uescape, pdata, plresult).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetActiveContext(&self, himc: P0, fflag: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).SetActiveContext)(windows_core::Interface::as_raw(self), himc.param().abi(), fflag.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn ProcessKey(&self, himc: P0, uvirkey: u32, lparam: u32, pbkeystate: *const u8) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).ProcessKey)(windows_core::Interface::as_raw(self), himc.param().abi(), uvirkey, lparam, pbkeystate).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn Notify(&self, himc: P0, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).Notify)(windows_core::Interface::as_raw(self), himc.param().abi(), dwaction, dwindex, dwvalue).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn Select(&self, himc: P0, fselect: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).Select)(windows_core::Interface::as_raw(self), himc.param().abi(), fselect.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCompositionString(&self, himc: P0, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionString)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, pcomp, dwcomplen, pread, dwreadlen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn ToAsciiEx(&self, uvirkey: u32, uscancode: u32, pbkeystate: *const u8, fustate: u32, himc: P0, pdwtransbuf: *mut u32, pusize: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).ToAsciiEx)(windows_core::Interface::as_raw(self), uvirkey, uscancode, pbkeystate, fustate, himc.param().abi(), pdwtransbuf, pusize).ok() } @@ -861,43 +813,19 @@ impl IActiveIME { pub struct IActiveIME_Vtbl { pub base__: windows_core::IUnknown_Vtbl, pub Inquire: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut IMEINFO, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub ConversionList: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, windows_core::PCWSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - ConversionList: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub Configure: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDW) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub ConversionList: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, windows_core::PCWSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub Configure: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDW) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] Configure: usize, pub Destroy: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub Escape: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - Escape: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetActiveContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetActiveContext: usize, - #[cfg(feature = "Win32_Globalization")] - pub ProcessKey: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *const u8) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - ProcessKey: usize, - #[cfg(feature = "Win32_Globalization")] - pub Notify: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - Notify: usize, - #[cfg(feature = "Win32_Globalization")] - pub Select: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - Select: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCompositionString: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCompositionString: usize, - #[cfg(feature = "Win32_Globalization")] - pub ToAsciiEx: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32, *const u8, u32, super::super::super::Globalization::HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - ToAsciiEx: usize, + pub Escape: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, + pub SetActiveContext: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, + pub ProcessKey: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *const u8) -> windows_core::HRESULT, + pub Notify: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, u32) -> windows_core::HRESULT, + pub Select: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, + pub SetCompositionString: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, + pub ToAsciiEx: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32, *const u8, u32, HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, pub RegisterWord: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, pub UnregisterWord: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, pub GetRegisterWordStyle: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut STYLEBUFW, *mut u32) -> windows_core::HRESULT, @@ -939,179 +867,166 @@ impl core::ops::Deref for IActiveIMMApp { } windows_core::imp::interface_hierarchy!(IActiveIMMApp, windows_core::IUnknown); impl IActiveIMMApp { - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn AssociateContext(&self, hwnd: P0, hime: P1) -> windows_core::Result + pub unsafe fn AssociateContext(&self, hwnd: P0, hime: P1) -> windows_core::Result where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).AssociateContext)(windows_core::Interface::as_raw(self), hwnd.param().abi(), hime.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn ConfigureIMEA(&self, hkl: P0, hwnd: P1, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).ConfigureIMEA)(windows_core::Interface::as_raw(self), hkl.param().abi(), hwnd.param().abi(), dwmode, pdata).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn ConfigureIMEW(&self, hkl: P0, hwnd: P1, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).ConfigureIMEW)(windows_core::Interface::as_raw(self), hkl.param().abi(), hwnd.param().abi(), dwmode, pdata).ok() } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn CreateContext(&self) -> windows_core::Result { + pub unsafe fn CreateContext(&self) -> windows_core::Result { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).CreateContext)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn DestroyContext(&self, hime: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).DestroyContext)(windows_core::Interface::as_raw(self), hime.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EnumRegisterWordA(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2, pdata: *const core::ffi::c_void) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).EnumRegisterWordA)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi(), pdata, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EnumRegisterWordW(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2, pdata: *const core::ffi::c_void) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).EnumRegisterWordW)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi(), pdata, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EscapeA(&self, hkl: P0, himc: P1, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).EscapeA)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), uescape, pdata, plresult).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EscapeW(&self, hkl: P0, himc: P1, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).EscapeW)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), uescape, pdata, plresult).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListA(&self, himc: P0, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, ubuflen, pcandlist, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListW(&self, himc: P0, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, ubuflen, pcandlist, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListCountA(&self, himc: P0, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListCountA)(windows_core::Interface::as_raw(self), himc.param().abi(), pdwlistsize, pdwbuflen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListCountW(&self, himc: P0, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListCountW)(windows_core::Interface::as_raw(self), himc.param().abi(), pdwlistsize, pdwbuflen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateWindow(&self, himc: P0, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, pcandidate).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetCompositionFontA(&self, himc: P0, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionFontA)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetCompositionFontW(&self, himc: P0, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionFontW)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCompositionStringA(&self, himc: P0, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionStringA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, plcopied, pbuf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCompositionStringW(&self, himc: P0, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionStringW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, plcopied, pbuf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCompositionWindow(&self, himc: P0, pcompform: *mut COMPOSITIONFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), pcompform).ok() } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn GetContext(&self, hwnd: P0) -> windows_core::Result + pub unsafe fn GetContext(&self, hwnd: P0) -> windows_core::Result where P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetContext)(windows_core::Interface::as_raw(self), hwnd.param().abi(), &mut result__).map(|| result__) } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetConversionListA(&self, hkl: P0, himc: P1, psrc: P2, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).GetConversionListA)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), psrc.param().abi(), ubuflen, uflag, pdst, pucopied).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetConversionListW(&self, hkl: P0, himc: P1, psrc: P2, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).GetConversionListW)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), psrc.param().abi(), ubuflen, uflag, pdst, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetConversionStatus(&self, himc: P0, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetConversionStatus)(windows_core::Interface::as_raw(self), himc.param().abi(), pfdwconversion, pfdwsentence).ok() } @@ -1122,81 +1037,77 @@ impl IActiveIMMApp { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetDefaultIMEWnd)(windows_core::Interface::as_raw(self), hwnd.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetDescriptionA(&self, hkl: P0, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetDescriptionA)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szdescription), pucopied).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetDescriptionW(&self, hkl: P0, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetDescriptionW)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szdescription), pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetGuideLineA(&self, himc: P0, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetGuideLineA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, core::mem::transmute(pbuf), pdwresult).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetGuideLineW(&self, himc: P0, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetGuideLineW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, core::mem::transmute(pbuf), pdwresult).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetIMEFileNameA(&self, hkl: P0, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetIMEFileNameA)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szfilename), pucopied).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetIMEFileNameW(&self, hkl: P0, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetIMEFileNameW)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szfilename), pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetOpenStatus(&self, himc: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetOpenStatus)(windows_core::Interface::as_raw(self), himc.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetProperty(&self, hkl: P0, fdwindex: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetProperty)(windows_core::Interface::as_raw(self), hkl.param().abi(), fdwindex, &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetRegisterWordStyleA(&self, hkl: P0, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetRegisterWordStyleA)(windows_core::Interface::as_raw(self), hkl.param().abi(), nitem, pstylebuf, pucopied).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetRegisterWordStyleW(&self, hkl: P0, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetRegisterWordStyleW)(windows_core::Interface::as_raw(self), hkl.param().abi(), nitem, pstylebuf, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetStatusWindowPos(&self, himc: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetStatusWindowPos)(windows_core::Interface::as_raw(self), himc.param().abi(), &mut result__).map(|| result__) @@ -1208,8 +1119,8 @@ impl IActiveIMMApp { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetVirtualKey)(windows_core::Interface::as_raw(self), hwnd.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] - pub unsafe fn InstallIMEA(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub unsafe fn InstallIMEA(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -1217,8 +1128,8 @@ impl IActiveIMMApp { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).InstallIMEA)(windows_core::Interface::as_raw(self), szimefilename.param().abi(), szlayouttext.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] - pub unsafe fn InstallIMEW(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub unsafe fn InstallIMEW(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -1226,10 +1137,10 @@ impl IActiveIMMApp { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).InstallIMEW)(windows_core::Interface::as_raw(self), szimefilename.param().abi(), szlayouttext.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn IsIME(&self, hkl: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).IsIME)(windows_core::Interface::as_raw(self), hkl.param().abi()).ok() } @@ -1249,100 +1160,91 @@ impl IActiveIMMApp { { (windows_core::Interface::vtable(self).IsUIMessageW)(windows_core::Interface::as_raw(self), hwndime.param().abi(), msg, wparam.param().abi(), lparam.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn NotifyIME(&self, himc: P0, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).NotifyIME)(windows_core::Interface::as_raw(self), himc.param().abi(), dwaction, dwindex, dwvalue).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn RegisterWordA(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).RegisterWordA)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn RegisterWordW(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).RegisterWordW)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn ReleaseContext(&self, hwnd: P0, himc: P1) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).ReleaseContext)(windows_core::Interface::as_raw(self), hwnd.param().abi(), himc.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCandidateWindow(&self, himc: P0, pcandidate: *const CANDIDATEFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCandidateWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), pcandidate).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn SetCompositionFontA(&self, himc: P0, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionFontA)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn SetCompositionFontW(&self, himc: P0, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionFontW)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCompositionStringA(&self, himc: P0, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionStringA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, pcomp, dwcomplen, pread, dwreadlen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCompositionStringW(&self, himc: P0, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionStringW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, pcomp, dwcomplen, pread, dwreadlen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCompositionWindow(&self, himc: P0, pcompform: *const COMPOSITIONFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), pcompform).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetConversionStatus(&self, himc: P0, fdwconversion: u32, fdwsentence: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetConversionStatus)(windows_core::Interface::as_raw(self), himc.param().abi(), fdwconversion, fdwsentence).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetOpenStatus(&self, himc: P0, fopen: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).SetOpenStatus)(windows_core::Interface::as_raw(self), himc.param().abi(), fopen.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetStatusWindowPos(&self, himc: P0, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetStatusWindowPos)(windows_core::Interface::as_raw(self), himc.param().abi(), pptpos).ok() } @@ -1352,19 +1254,19 @@ impl IActiveIMMApp { { (windows_core::Interface::vtable(self).SimulateHotKey)(windows_core::Interface::as_raw(self), hwnd.param().abi(), dwhotkeyid).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn UnregisterWordA(&self, hkl: P0, szreading: P1, dwstyle: u32, szunregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).UnregisterWordA)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szunregister.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn UnregisterWordW(&self, hkl: P0, szreading: P1, dwstyle: u32, szunregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { @@ -1391,44 +1293,43 @@ impl IActiveIMMApp { pub unsafe fn FilterClientWindows(&self, aaclasslist: *const u16, usize: u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).FilterClientWindows)(windows_core::Interface::as_raw(self), aaclasslist, usize).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetCodePageA(&self, hkl: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetCodePageA)(windows_core::Interface::as_raw(self), hkl.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetLangId(&self, hkl: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetLangId)(windows_core::Interface::as_raw(self), hkl.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn AssociateContextEx(&self, hwnd: P0, himc: P1, dwflags: u32) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).AssociateContextEx)(windows_core::Interface::as_raw(self), hwnd.param().abi(), himc.param().abi(), dwflags).ok() } pub unsafe fn DisableIME(&self, idthread: u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).DisableIME)(windows_core::Interface::as_raw(self), idthread).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetImeMenuItemsA(&self, himc: P0, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetImeMenuItemsA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwflags, dwtype, pimeparentmenu, pimemenu, dwsize, pdwresult).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetImeMenuItemsW(&self, himc: P0, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetImeMenuItemsW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwflags, dwtype, pimeparentmenu, pimemenu, dwsize, pdwresult).ok() } @@ -1440,243 +1341,162 @@ impl IActiveIMMApp { #[repr(C)] pub struct IActiveIMMApp_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - #[cfg(feature = "Win32_Globalization")] - pub AssociateContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, super::super::super::Globalization::HIMC, *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - AssociateContext: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub ConfigureIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDA) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub AssociateContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, HIMC, *mut HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub ConfigureIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDA) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] ConfigureIMEA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub ConfigureIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDW) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub ConfigureIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDW) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] ConfigureIMEW: usize, - #[cfg(feature = "Win32_Globalization")] - pub CreateContext: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - CreateContext: usize, - #[cfg(feature = "Win32_Globalization")] - pub DestroyContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - DestroyContext: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub EnumRegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCSTR, u32, windows_core::PCSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub CreateContext: unsafe extern "system" fn(*mut core::ffi::c_void, *mut HIMC) -> windows_core::HRESULT, + pub DestroyContext: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EnumRegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCSTR, u32, windows_core::PCSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EnumRegisterWordA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub EnumRegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EnumRegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EnumRegisterWordW: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub EscapeA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EscapeA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EscapeA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub EscapeW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EscapeW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EscapeW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListCountA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListCountA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListCountW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListCountW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *mut CANDIDATEFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateWindow: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + pub GetCandidateListA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + pub GetCandidateListW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + pub GetCandidateListCountA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, + pub GetCandidateListCountW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, + pub GetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *mut CANDIDATEFORM) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetCompositionFontA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetCompositionFontW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCompositionStringA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCompositionStringW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut COMPOSITIONFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCompositionWindow: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetContext: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub GetConversionListA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, windows_core::PCSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + pub GetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, + pub GetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, + pub GetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut COMPOSITIONFORM) -> windows_core::HRESULT, + pub GetContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetConversionListA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, windows_core::PCSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetConversionListA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub GetConversionListW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, windows_core::PCWSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetConversionListW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, windows_core::PCWSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetConversionListW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetConversionStatus: usize, + pub GetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, pub GetDefaultIMEWnd: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut super::super::super::Foundation::HWND) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetDescriptionA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetDescriptionA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetDescriptionA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetDescriptionW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetDescriptionW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetDescriptionW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetGuideLineA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetGuideLineA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetGuideLineW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetGuideLineW: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetIMEFileNameA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub GetGuideLineA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, + pub GetGuideLineW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetIMEFileNameA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetIMEFileNameA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetIMEFileNameW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetIMEFileNameW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetIMEFileNameW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetOpenStatus: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetProperty: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub GetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetProperty: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetProperty: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetRegisterWordStyleA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, *mut STYLEBUFA, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetRegisterWordStyleA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, *mut STYLEBUFA, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetRegisterWordStyleA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetRegisterWordStyleW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, *mut STYLEBUFW, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetRegisterWordStyleW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, *mut STYLEBUFW, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetRegisterWordStyleW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetStatusWindowPos: usize, + pub GetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT, pub GetVirtualKey: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut u32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub InstallIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCSTR, windows_core::PCSTR, *mut super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub InstallIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCSTR, windows_core::PCSTR, *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] InstallIMEA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub InstallIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, windows_core::PCWSTR, *mut super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub InstallIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, windows_core::PCWSTR, *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] InstallIMEW: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub IsIME: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub IsIME: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] IsIME: usize, pub IsUIMessageA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM) -> windows_core::HRESULT, pub IsUIMessageW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub NotifyIME: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - NotifyIME: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub RegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub NotifyIME: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub RegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] RegisterWordA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub RegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub RegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] RegisterWordW: usize, - #[cfg(feature = "Win32_Globalization")] - pub ReleaseContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - ReleaseContext: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const CANDIDATEFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCandidateWindow: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub SetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + pub ReleaseContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, HIMC) -> windows_core::HRESULT, + pub SetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const CANDIDATEFORM) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Graphics_Gdi")] + pub SetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] SetCompositionFontA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub SetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub SetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] SetCompositionFontW: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCompositionStringA: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCompositionStringW: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const COMPOSITIONFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCompositionWindow: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetConversionStatus: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetOpenStatus: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const super::super::super::Foundation::POINT) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetStatusWindowPos: usize, + pub SetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, + pub SetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, + pub SetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const COMPOSITIONFORM) -> windows_core::HRESULT, + pub SetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32) -> windows_core::HRESULT, + pub SetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, + pub SetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const super::super::super::Foundation::POINT) -> windows_core::HRESULT, pub SimulateHotKey: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub UnregisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub UnregisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] UnregisterWordA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub UnregisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub UnregisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] UnregisterWordW: usize, pub Activate: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, pub Deactivate: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, pub OnDefWindowProc: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, pub FilterClientWindows: unsafe extern "system" fn(*mut core::ffi::c_void, *const u16, u32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetCodePageA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetCodePageA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetCodePageA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetLangId: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, *mut u16) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetLangId: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, *mut u16) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetLangId: usize, - #[cfg(feature = "Win32_Globalization")] - pub AssociateContextEx: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, super::super::super::Globalization::HIMC, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - AssociateContextEx: usize, + pub AssociateContextEx: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, HIMC, u32) -> windows_core::HRESULT, pub DisableIME: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetImeMenuItemsA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *const IMEMENUITEMINFOA, *mut IMEMENUITEMINFOA, u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetImeMenuItemsA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *const IMEMENUITEMINFOA, *mut IMEMENUITEMINFOA, u32, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetImeMenuItemsA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetImeMenuItemsW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *const IMEMENUITEMINFOW, *mut IMEMENUITEMINFOW, u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetImeMenuItemsW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *const IMEMENUITEMINFOW, *mut IMEMENUITEMINFOW, u32, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetImeMenuItemsW: usize, pub EnumInputContext: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, } @@ -1689,179 +1509,166 @@ impl core::ops::Deref for IActiveIMMIME { } windows_core::imp::interface_hierarchy!(IActiveIMMIME, windows_core::IUnknown); impl IActiveIMMIME { - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn AssociateContext(&self, hwnd: P0, hime: P1) -> windows_core::Result + pub unsafe fn AssociateContext(&self, hwnd: P0, hime: P1) -> windows_core::Result where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).AssociateContext)(windows_core::Interface::as_raw(self), hwnd.param().abi(), hime.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn ConfigureIMEA(&self, hkl: P0, hwnd: P1, dwmode: u32, pdata: *const REGISTERWORDA) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).ConfigureIMEA)(windows_core::Interface::as_raw(self), hkl.param().abi(), hwnd.param().abi(), dwmode, pdata).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn ConfigureIMEW(&self, hkl: P0, hwnd: P1, dwmode: u32, pdata: *const REGISTERWORDW) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).ConfigureIMEW)(windows_core::Interface::as_raw(self), hkl.param().abi(), hwnd.param().abi(), dwmode, pdata).ok() } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn CreateContext(&self) -> windows_core::Result { + pub unsafe fn CreateContext(&self) -> windows_core::Result { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).CreateContext)(windows_core::Interface::as_raw(self), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn DestroyContext(&self, hime: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).DestroyContext)(windows_core::Interface::as_raw(self), hime.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EnumRegisterWordA(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2, pdata: *const core::ffi::c_void) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).EnumRegisterWordA)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi(), pdata, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EnumRegisterWordW(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2, pdata: *const core::ffi::c_void) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).EnumRegisterWordW)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi(), pdata, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EscapeA(&self, hkl: P0, himc: P1, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).EscapeA)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), uescape, pdata, plresult).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn EscapeW(&self, hkl: P0, himc: P1, uescape: u32, pdata: *mut core::ffi::c_void, plresult: *mut super::super::super::Foundation::LRESULT) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).EscapeW)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), uescape, pdata, plresult).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListA(&self, himc: P0, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, ubuflen, pcandlist, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListW(&self, himc: P0, dwindex: u32, ubuflen: u32, pcandlist: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, ubuflen, pcandlist, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListCountA(&self, himc: P0, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListCountA)(windows_core::Interface::as_raw(self), himc.param().abi(), pdwlistsize, pdwbuflen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateListCountW(&self, himc: P0, pdwlistsize: *mut u32, pdwbuflen: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateListCountW)(windows_core::Interface::as_raw(self), himc.param().abi(), pdwlistsize, pdwbuflen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCandidateWindow(&self, himc: P0, dwindex: u32, pcandidate: *mut CANDIDATEFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCandidateWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, pcandidate).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetCompositionFontA(&self, himc: P0, plf: *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionFontA)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetCompositionFontW(&self, himc: P0, plf: *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionFontW)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCompositionStringA(&self, himc: P0, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionStringA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, plcopied, pbuf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCompositionStringW(&self, himc: P0, dwindex: u32, dwbuflen: u32, plcopied: *mut i32, pbuf: *mut core::ffi::c_void) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionStringW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, plcopied, pbuf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetCompositionWindow(&self, himc: P0, pcompform: *mut COMPOSITIONFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetCompositionWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), pcompform).ok() } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn GetContext(&self, hwnd: P0) -> windows_core::Result + pub unsafe fn GetContext(&self, hwnd: P0) -> windows_core::Result where P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetContext)(windows_core::Interface::as_raw(self), hwnd.param().abi(), &mut result__).map(|| result__) } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetConversionListA(&self, hkl: P0, himc: P1, psrc: P2, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).GetConversionListA)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), psrc.param().abi(), ubuflen, uflag, pdst, pucopied).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetConversionListW(&self, hkl: P0, himc: P1, psrc: P2, ubuflen: u32, uflag: u32, pdst: *mut CANDIDATELIST, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, - P1: windows_core::Param, + P0: windows_core::Param, + P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).GetConversionListW)(windows_core::Interface::as_raw(self), hkl.param().abi(), himc.param().abi(), psrc.param().abi(), ubuflen, uflag, pdst, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetConversionStatus(&self, himc: P0, pfdwconversion: *mut u32, pfdwsentence: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetConversionStatus)(windows_core::Interface::as_raw(self), himc.param().abi(), pfdwconversion, pfdwsentence).ok() } @@ -1872,81 +1679,77 @@ impl IActiveIMMIME { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetDefaultIMEWnd)(windows_core::Interface::as_raw(self), hwnd.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetDescriptionA(&self, hkl: P0, ubuflen: u32, szdescription: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetDescriptionA)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szdescription), pucopied).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetDescriptionW(&self, hkl: P0, ubuflen: u32, szdescription: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetDescriptionW)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szdescription), pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetGuideLineA(&self, himc: P0, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PSTR, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetGuideLineA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, core::mem::transmute(pbuf), pdwresult).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetGuideLineW(&self, himc: P0, dwindex: u32, dwbuflen: u32, pbuf: windows_core::PWSTR, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetGuideLineW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, dwbuflen, core::mem::transmute(pbuf), pdwresult).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetIMEFileNameA(&self, hkl: P0, ubuflen: u32, szfilename: windows_core::PSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetIMEFileNameA)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szfilename), pucopied).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetIMEFileNameW(&self, hkl: P0, ubuflen: u32, szfilename: windows_core::PWSTR, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetIMEFileNameW)(windows_core::Interface::as_raw(self), hkl.param().abi(), ubuflen, core::mem::transmute(szfilename), pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetOpenStatus(&self, himc: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetOpenStatus)(windows_core::Interface::as_raw(self), himc.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetProperty(&self, hkl: P0, fdwindex: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetProperty)(windows_core::Interface::as_raw(self), hkl.param().abi(), fdwindex, &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetRegisterWordStyleA(&self, hkl: P0, nitem: u32, pstylebuf: *mut STYLEBUFA, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetRegisterWordStyleA)(windows_core::Interface::as_raw(self), hkl.param().abi(), nitem, pstylebuf, pucopied).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetRegisterWordStyleW(&self, hkl: P0, nitem: u32, pstylebuf: *mut STYLEBUFW, pucopied: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetRegisterWordStyleW)(windows_core::Interface::as_raw(self), hkl.param().abi(), nitem, pstylebuf, pucopied).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetStatusWindowPos(&self, himc: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetStatusWindowPos)(windows_core::Interface::as_raw(self), himc.param().abi(), &mut result__).map(|| result__) @@ -1958,8 +1761,8 @@ impl IActiveIMMIME { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetVirtualKey)(windows_core::Interface::as_raw(self), hwnd.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] - pub unsafe fn InstallIMEA(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub unsafe fn InstallIMEA(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -1967,8 +1770,8 @@ impl IActiveIMMIME { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).InstallIMEA)(windows_core::Interface::as_raw(self), szimefilename.param().abi(), szlayouttext.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] - pub unsafe fn InstallIMEW(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub unsafe fn InstallIMEW(&self, szimefilename: P0, szlayouttext: P1) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -1976,10 +1779,10 @@ impl IActiveIMMIME { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).InstallIMEW)(windows_core::Interface::as_raw(self), szimefilename.param().abi(), szlayouttext.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn IsIME(&self, hkl: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).IsIME)(windows_core::Interface::as_raw(self), hkl.param().abi()).ok() } @@ -1999,100 +1802,91 @@ impl IActiveIMMIME { { (windows_core::Interface::vtable(self).IsUIMessageW)(windows_core::Interface::as_raw(self), hwndime.param().abi(), msg, wparam.param().abi(), lparam.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn NotifyIME(&self, himc: P0, dwaction: u32, dwindex: u32, dwvalue: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).NotifyIME)(windows_core::Interface::as_raw(self), himc.param().abi(), dwaction, dwindex, dwvalue).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn RegisterWordA(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).RegisterWordA)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn RegisterWordW(&self, hkl: P0, szreading: P1, dwstyle: u32, szregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).RegisterWordW)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szregister.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn ReleaseContext(&self, hwnd: P0, himc: P1) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).ReleaseContext)(windows_core::Interface::as_raw(self), hwnd.param().abi(), himc.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCandidateWindow(&self, himc: P0, pcandidate: *const CANDIDATEFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCandidateWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), pcandidate).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn SetCompositionFontA(&self, himc: P0, plf: *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionFontA)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn SetCompositionFontW(&self, himc: P0, plf: *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionFontW)(windows_core::Interface::as_raw(self), himc.param().abi(), plf).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCompositionStringA(&self, himc: P0, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionStringA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, pcomp, dwcomplen, pread, dwreadlen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCompositionStringW(&self, himc: P0, dwindex: u32, pcomp: *const core::ffi::c_void, dwcomplen: u32, pread: *const core::ffi::c_void, dwreadlen: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionStringW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwindex, pcomp, dwcomplen, pread, dwreadlen).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetCompositionWindow(&self, himc: P0, pcompform: *const COMPOSITIONFORM) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetCompositionWindow)(windows_core::Interface::as_raw(self), himc.param().abi(), pcompform).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetConversionStatus(&self, himc: P0, fdwconversion: u32, fdwsentence: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetConversionStatus)(windows_core::Interface::as_raw(self), himc.param().abi(), fdwconversion, fdwsentence).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetOpenStatus(&self, himc: P0, fopen: P1) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).SetOpenStatus)(windows_core::Interface::as_raw(self), himc.param().abi(), fopen.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn SetStatusWindowPos(&self, himc: P0, pptpos: *const super::super::super::Foundation::POINT) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetStatusWindowPos)(windows_core::Interface::as_raw(self), himc.param().abi(), pptpos).ok() } @@ -2102,112 +1896,102 @@ impl IActiveIMMIME { { (windows_core::Interface::vtable(self).SimulateHotKey)(windows_core::Interface::as_raw(self), hwnd.param().abi(), dwhotkeyid).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn UnregisterWordA(&self, hkl: P0, szreading: P1, dwstyle: u32, szunregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).UnregisterWordA)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szunregister.param().abi()).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn UnregisterWordW(&self, hkl: P0, szreading: P1, dwstyle: u32, szunregister: P2) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { (windows_core::Interface::vtable(self).UnregisterWordW)(windows_core::Interface::as_raw(self), hkl.param().abi(), szreading.param().abi(), dwstyle, szunregister.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GenerateMessage(&self, himc: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GenerateMessage)(windows_core::Interface::as_raw(self), himc.param().abi()).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn LockIMC(&self, himc: P0) -> windows_core::Result<*mut INPUTCONTEXT> where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).LockIMC)(windows_core::Interface::as_raw(self), himc.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn UnlockIMC(&self, himc: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).UnlockIMC)(windows_core::Interface::as_raw(self), himc.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetIMCLockCount(&self, himc: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetIMCLockCount)(windows_core::Interface::as_raw(self), himc.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn CreateIMCC(&self, dwsize: u32) -> windows_core::Result { + pub unsafe fn CreateIMCC(&self, dwsize: u32) -> windows_core::Result { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).CreateIMCC)(windows_core::Interface::as_raw(self), dwsize, &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn DestroyIMCC(&self, himcc: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).DestroyIMCC)(windows_core::Interface::as_raw(self), himcc.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn LockIMCC(&self, himcc: P0, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).LockIMCC)(windows_core::Interface::as_raw(self), himcc.param().abi(), ppv).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn UnlockIMCC(&self, himcc: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).UnlockIMCC)(windows_core::Interface::as_raw(self), himcc.param().abi()).ok() } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn ReSizeIMCC(&self, himcc: P0, dwsize: u32) -> windows_core::Result + pub unsafe fn ReSizeIMCC(&self, himcc: P0, dwsize: u32) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).ReSizeIMCC)(windows_core::Interface::as_raw(self), himcc.param().abi(), dwsize, &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetIMCCSize(&self, himcc: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetIMCCSize)(windows_core::Interface::as_raw(self), himcc.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn GetIMCCLockCount(&self, himcc: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetIMCCLockCount)(windows_core::Interface::as_raw(self), himcc.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] - pub unsafe fn GetHotKey(&self, dwhotkeyid: u32, pumodifiers: *mut u32, puvkey: *mut u32, phkl: *mut super::super::TextServices::HKL) -> windows_core::Result<()> { + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub unsafe fn GetHotKey(&self, dwhotkeyid: u32, pumodifiers: *mut u32, puvkey: *mut u32, phkl: *mut super::KeyboardAndMouse::HKL) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetHotKey)(windows_core::Interface::as_raw(self), dwhotkeyid, pumodifiers, puvkey, phkl).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn SetHotKey(&self, dwhotkeyid: u32, umodifiers: u32, uvkey: u32, hkl: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SetHotKey)(windows_core::Interface::as_raw(self), dwhotkeyid, umodifiers, uvkey, hkl.param().abi()).ok() } @@ -2230,18 +2014,18 @@ impl IActiveIMMIME { { (windows_core::Interface::vtable(self).ShowSoftKeyboard)(windows_core::Interface::as_raw(self), hsoftkbdwnd.param().abi(), ncmdshow).ok() } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetCodePageA(&self, hkl: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetCodePageA)(windows_core::Interface::as_raw(self), hkl.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_UI_TextServices")] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetLangId(&self, hkl: P0) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetLangId)(windows_core::Interface::as_raw(self), hkl.param().abi(), &mut result__).map(|| result__) @@ -2255,28 +2039,27 @@ impl IActiveIMMIME { pub unsafe fn UnlockModal(&self) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).UnlockModal)(windows_core::Interface::as_raw(self)).ok() } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn AssociateContextEx(&self, hwnd: P0, himc: P1, dwflags: u32) -> windows_core::Result<()> where P0: windows_core::Param, - P1: windows_core::Param, + P1: windows_core::Param, { (windows_core::Interface::vtable(self).AssociateContextEx)(windows_core::Interface::as_raw(self), hwnd.param().abi(), himc.param().abi(), dwflags).ok() } pub unsafe fn DisableIME(&self, idthread: u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).DisableIME)(windows_core::Interface::as_raw(self), idthread).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetImeMenuItemsA(&self, himc: P0, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOA, pimemenu: *mut IMEMENUITEMINFOA, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetImeMenuItemsA)(windows_core::Interface::as_raw(self), himc.param().abi(), dwflags, dwtype, pimeparentmenu, pimemenu, dwsize, pdwresult).ok() } - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] + #[cfg(feature = "Win32_Graphics_Gdi")] pub unsafe fn GetImeMenuItemsW(&self, himc: P0, dwflags: u32, dwtype: u32, pimeparentmenu: *const IMEMENUITEMINFOW, pimemenu: *mut IMEMENUITEMINFOW, dwsize: u32, pdwresult: *mut u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetImeMenuItemsW)(windows_core::Interface::as_raw(self), himc.param().abi(), dwflags, dwtype, pimeparentmenu, pimemenu, dwsize, pdwresult).ok() } @@ -2284,20 +2067,18 @@ impl IActiveIMMIME { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).EnumInputContext)(windows_core::Interface::as_raw(self), idthread, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn RequestMessageA(&self, himc: P0, wparam: P1, lparam: P2) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).RequestMessageA)(windows_core::Interface::as_raw(self), himc.param().abi(), wparam.param().abi(), lparam.param().abi(), &mut result__).map(|| result__) } - #[cfg(feature = "Win32_Globalization")] pub unsafe fn RequestMessageW(&self, himc: P0, wparam: P1, lparam: P2) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { @@ -2329,307 +2110,190 @@ impl IActiveIMMIME { #[repr(C)] pub struct IActiveIMMIME_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - #[cfg(feature = "Win32_Globalization")] - pub AssociateContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, super::super::super::Globalization::HIMC, *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - AssociateContext: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub ConfigureIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDA) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub AssociateContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, HIMC, *mut HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub ConfigureIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDA) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] ConfigureIMEA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub ConfigureIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDW) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub ConfigureIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, super::super::super::Foundation::HWND, u32, *const REGISTERWORDW) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] ConfigureIMEW: usize, - #[cfg(feature = "Win32_Globalization")] - pub CreateContext: unsafe extern "system" fn(*mut core::ffi::c_void, *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - CreateContext: usize, - #[cfg(feature = "Win32_Globalization")] - pub DestroyContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - DestroyContext: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub EnumRegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCSTR, u32, windows_core::PCSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub CreateContext: unsafe extern "system" fn(*mut core::ffi::c_void, *mut HIMC) -> windows_core::HRESULT, + pub DestroyContext: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EnumRegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCSTR, u32, windows_core::PCSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EnumRegisterWordA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub EnumRegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EnumRegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR, *const core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EnumRegisterWordW: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub EscapeA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EscapeA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EscapeA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub EscapeW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub EscapeW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, u32, *mut core::ffi::c_void, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] EscapeW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListCountA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListCountA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateListCountW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateListCountW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *mut CANDIDATEFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCandidateWindow: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + pub GetCandidateListA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + pub GetCandidateListW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + pub GetCandidateListCountA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, + pub GetCandidateListCountW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, + pub GetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *mut CANDIDATEFORM) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetCompositionFontA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetCompositionFontW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCompositionStringA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCompositionStringW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut COMPOSITIONFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetCompositionWindow: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetContext: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub GetConversionListA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, windows_core::PCSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + pub GetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, + pub GetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *mut i32, *mut core::ffi::c_void) -> windows_core::HRESULT, + pub GetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut COMPOSITIONFORM) -> windows_core::HRESULT, + pub GetContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetConversionListA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, windows_core::PCSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetConversionListA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices"))] - pub GetConversionListW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, super::super::super::Globalization::HIMC, windows_core::PCWSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_UI_TextServices")))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetConversionListW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, HIMC, windows_core::PCWSTR, u32, u32, *mut CANDIDATELIST, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetConversionListW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetConversionStatus: usize, + pub GetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut u32, *mut u32) -> windows_core::HRESULT, pub GetDefaultIMEWnd: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut super::super::super::Foundation::HWND) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetDescriptionA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetDescriptionA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetDescriptionA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetDescriptionW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetDescriptionW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetDescriptionW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetGuideLineA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetGuideLineA: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetGuideLineW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetGuideLineW: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetIMEFileNameA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub GetGuideLineA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, + pub GetGuideLineW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetIMEFileNameA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetIMEFileNameA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetIMEFileNameW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetIMEFileNameW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, windows_core::PWSTR, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetIMEFileNameW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetOpenStatus: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetProperty: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub GetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetProperty: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetProperty: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetRegisterWordStyleA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, *mut STYLEBUFA, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetRegisterWordStyleA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, *mut STYLEBUFA, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetRegisterWordStyleA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetRegisterWordStyleW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, u32, *mut STYLEBUFW, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetRegisterWordStyleW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, u32, *mut STYLEBUFW, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetRegisterWordStyleW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetStatusWindowPos: usize, + pub GetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut super::super::super::Foundation::POINT) -> windows_core::HRESULT, pub GetVirtualKey: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, *mut u32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub InstallIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCSTR, windows_core::PCSTR, *mut super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub InstallIMEA: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCSTR, windows_core::PCSTR, *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] InstallIMEA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub InstallIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, windows_core::PCWSTR, *mut super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub InstallIMEW: unsafe extern "system" fn(*mut core::ffi::c_void, windows_core::PCWSTR, windows_core::PCWSTR, *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] InstallIMEW: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub IsIME: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub IsIME: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] IsIME: usize, pub IsUIMessageA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM) -> windows_core::HRESULT, pub IsUIMessageW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub NotifyIME: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - NotifyIME: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub RegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub NotifyIME: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub RegisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] RegisterWordA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub RegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub RegisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] RegisterWordW: usize, - #[cfg(feature = "Win32_Globalization")] - pub ReleaseContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - ReleaseContext: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const CANDIDATEFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCandidateWindow: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub SetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + pub ReleaseContext: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, HIMC) -> windows_core::HRESULT, + pub SetCandidateWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const CANDIDATEFORM) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Graphics_Gdi")] + pub SetCompositionFontA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const super::super::super::Graphics::Gdi::LOGFONTA) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] SetCompositionFontA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub SetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub SetCompositionFontW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const super::super::super::Graphics::Gdi::LOGFONTW) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] SetCompositionFontW: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCompositionStringA: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCompositionStringW: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const COMPOSITIONFORM) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetCompositionWindow: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetConversionStatus: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetOpenStatus: usize, - #[cfg(feature = "Win32_Globalization")] - pub SetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *const super::super::super::Foundation::POINT) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - SetStatusWindowPos: usize, + pub SetCompositionStringA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, + pub SetCompositionStringW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, *const core::ffi::c_void, u32, *const core::ffi::c_void, u32) -> windows_core::HRESULT, + pub SetCompositionWindow: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const COMPOSITIONFORM) -> windows_core::HRESULT, + pub SetConversionStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32) -> windows_core::HRESULT, + pub SetOpenStatus: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, super::super::super::Foundation::BOOL) -> windows_core::HRESULT, + pub SetStatusWindowPos: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *const super::super::super::Foundation::POINT) -> windows_core::HRESULT, pub SimulateHotKey: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub UnregisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub UnregisterWordA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCSTR, u32, windows_core::PCSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] UnregisterWordA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub UnregisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub UnregisterWordW: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, windows_core::PCWSTR, u32, windows_core::PCWSTR) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] UnregisterWordW: usize, - #[cfg(feature = "Win32_Globalization")] - pub GenerateMessage: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GenerateMessage: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub LockIMC: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut *mut INPUTCONTEXT) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + pub GenerateMessage: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC) -> windows_core::HRESULT, + #[cfg(feature = "Win32_Graphics_Gdi")] + pub LockIMC: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut *mut INPUTCONTEXT) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] LockIMC: usize, - #[cfg(feature = "Win32_Globalization")] - pub UnlockIMC: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - UnlockIMC: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetIMCLockCount: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetIMCLockCount: usize, - #[cfg(feature = "Win32_Globalization")] - pub CreateIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut super::super::super::Globalization::HIMCC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - CreateIMCC: usize, - #[cfg(feature = "Win32_Globalization")] - pub DestroyIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMCC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - DestroyIMCC: usize, - #[cfg(feature = "Win32_Globalization")] - pub LockIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMCC, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - LockIMCC: usize, - #[cfg(feature = "Win32_Globalization")] - pub UnlockIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMCC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - UnlockIMCC: usize, - #[cfg(feature = "Win32_Globalization")] - pub ReSizeIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMCC, u32, *mut super::super::super::Globalization::HIMCC) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - ReSizeIMCC: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetIMCCSize: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMCC, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetIMCCSize: usize, - #[cfg(feature = "Win32_Globalization")] - pub GetIMCCLockCount: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMCC, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - GetIMCCLockCount: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetHotKey: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut u32, *mut u32, *mut super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + pub UnlockIMC: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC) -> windows_core::HRESULT, + pub GetIMCLockCount: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, *mut u32) -> windows_core::HRESULT, + pub CreateIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut HIMCC) -> windows_core::HRESULT, + pub DestroyIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, HIMCC) -> windows_core::HRESULT, + pub LockIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, HIMCC, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + pub UnlockIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, HIMCC) -> windows_core::HRESULT, + pub ReSizeIMCC: unsafe extern "system" fn(*mut core::ffi::c_void, HIMCC, u32, *mut HIMCC) -> windows_core::HRESULT, + pub GetIMCCSize: unsafe extern "system" fn(*mut core::ffi::c_void, HIMCC, *mut u32) -> windows_core::HRESULT, + pub GetIMCCLockCount: unsafe extern "system" fn(*mut core::ffi::c_void, HIMCC, *mut u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetHotKey: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut u32, *mut u32, *mut super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetHotKey: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub SetHotKey: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32, u32, super::super::TextServices::HKL) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub SetHotKey: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u32, u32, super::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] SetHotKey: usize, pub CreateSoftKeyboard: unsafe extern "system" fn(*mut core::ffi::c_void, u32, super::super::super::Foundation::HWND, i32, i32, *mut super::super::super::Foundation::HWND) -> windows_core::HRESULT, pub DestroySoftKeyboard: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND) -> windows_core::HRESULT, pub ShowSoftKeyboard: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, i32) -> windows_core::HRESULT, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetCodePageA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetCodePageA: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetCodePageA: usize, - #[cfg(feature = "Win32_UI_TextServices")] - pub GetLangId: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::TextServices::HKL, *mut u16) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_UI_TextServices"))] + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetLangId: unsafe extern "system" fn(*mut core::ffi::c_void, super::KeyboardAndMouse::HKL, *mut u16) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] GetLangId: usize, pub KeybdEvent: unsafe extern "system" fn(*mut core::ffi::c_void, u16, u8, u8, u32, u32) -> windows_core::HRESULT, pub LockModal: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, pub UnlockModal: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub AssociateContextEx: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, super::super::super::Globalization::HIMC, u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - AssociateContextEx: usize, + pub AssociateContextEx: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, HIMC, u32) -> windows_core::HRESULT, pub DisableIME: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> windows_core::HRESULT, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetImeMenuItemsA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *const IMEMENUITEMINFOA, *mut IMEMENUITEMINFOA, u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetImeMenuItemsA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *const IMEMENUITEMINFOA, *mut IMEMENUITEMINFOA, u32, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetImeMenuItemsA: usize, - #[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] - pub GetImeMenuItemsW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, u32, u32, *const IMEMENUITEMINFOW, *mut IMEMENUITEMINFOW, u32, *mut u32) -> windows_core::HRESULT, - #[cfg(not(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi")))] + #[cfg(feature = "Win32_Graphics_Gdi")] + pub GetImeMenuItemsW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, u32, u32, *const IMEMENUITEMINFOW, *mut IMEMENUITEMINFOW, u32, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_Graphics_Gdi"))] GetImeMenuItemsW: usize, pub EnumInputContext: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub RequestMessageA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - RequestMessageA: usize, - #[cfg(feature = "Win32_Globalization")] - pub RequestMessageW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Globalization::HIMC, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - RequestMessageW: usize, + pub RequestMessageA: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, + pub RequestMessageW: unsafe extern "system" fn(*mut core::ffi::c_void, HIMC, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, pub SendIMCA: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, pub SendIMCW: unsafe extern "system" fn(*mut core::ffi::c_void, super::super::super::Foundation::HWND, u32, super::super::super::Foundation::WPARAM, super::super::super::Foundation::LPARAM, *mut super::super::super::Foundation::LRESULT) -> windows_core::HRESULT, pub IsSleeping: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, @@ -2712,8 +2376,7 @@ impl IEnumInputContext { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).Clone)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } - #[cfg(feature = "Win32_Globalization")] - pub unsafe fn Next(&self, ulcount: u32, rginputcontext: *mut super::super::super::Globalization::HIMC, pcfetched: *mut u32) -> windows_core::Result<()> { + pub unsafe fn Next(&self, ulcount: u32, rginputcontext: *mut HIMC, pcfetched: *mut u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).Next)(windows_core::Interface::as_raw(self), ulcount, rginputcontext, pcfetched).ok() } pub unsafe fn Reset(&self) -> windows_core::Result<()> { @@ -2727,10 +2390,7 @@ impl IEnumInputContext { pub struct IEnumInputContext_Vtbl { pub base__: windows_core::IUnknown_Vtbl, pub Clone: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, - #[cfg(feature = "Win32_Globalization")] - pub Next: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut super::super::super::Globalization::HIMC, *mut u32) -> windows_core::HRESULT, - #[cfg(not(feature = "Win32_Globalization"))] - Next: usize, + pub Next: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut HIMC, *mut u32) -> windows_core::HRESULT, pub Reset: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, pub Skip: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> windows_core::HRESULT, } @@ -4299,6 +3959,46 @@ impl Default for GUIDELINE { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HIMC(pub *mut core::ffi::c_void); +impl HIMC { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HIMC { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = ImmDestroyContext(*self); + } + } +} +impl Default for HIMC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HIMC { + type TypeKind = windows_core::CopyType; +} +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HIMCC(pub *mut core::ffi::c_void); +impl HIMCC { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl Default for HIMCC { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HIMCC { + type TypeKind = windows_core::CopyType; +} #[repr(C)] #[cfg(feature = "Win32_UI_WindowsAndMessaging")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] @@ -4489,19 +4189,16 @@ impl Default for IMEITEMCANDIDATE { } } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMS { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub cKeyList: u32, pub pKeyList: *mut IMEKMSKEY, } -#[cfg(feature = "Win32_Globalization")] impl windows_core::TypeKind for IMEKMS { type TypeKind = windows_core::CopyType; } -#[cfg(feature = "Win32_Globalization")] impl Default for IMEKMS { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4538,18 +4235,15 @@ impl Default for IMEKMSINIT { } } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMSINVK { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub dwControl: u32, } -#[cfg(feature = "Win32_Globalization")] impl windows_core::TypeKind for IMEKMSINVK { type TypeKind = windows_core::CopyType; } -#[cfg(feature = "Win32_Globalization")] impl Default for IMEKMSINVK { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4601,40 +4295,34 @@ impl Default for IMEKMSKEY_1 { } } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMSKMP { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub idLang: u16, pub wVKStart: u16, pub wVKEnd: u16, pub cKeyList: i32, pub pKeyList: *mut IMEKMSKEY, } -#[cfg(feature = "Win32_Globalization")] impl windows_core::TypeKind for IMEKMSKMP { type TypeKind = windows_core::CopyType; } -#[cfg(feature = "Win32_Globalization")] impl Default for IMEKMSKMP { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C, packed(1))] -#[cfg(feature = "Win32_Globalization")] #[derive(Clone, Copy)] pub struct IMEKMSNTFY { pub cbSize: i32, - pub hIMC: super::super::super::Globalization::HIMC, + pub hIMC: HIMC, pub fSelect: super::super::super::Foundation::BOOL, } -#[cfg(feature = "Win32_Globalization")] impl windows_core::TypeKind for IMEKMSNTFY { type TypeKind = windows_core::CopyType; } -#[cfg(feature = "Win32_Globalization")] impl Default for IMEKMSNTFY { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -4799,7 +4487,7 @@ impl Default for IMEWRD_0_0 { } } #[repr(C)] -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[derive(Clone, Copy)] pub struct INPUTCONTEXT { pub hWnd: super::super::super::Foundation::HWND, @@ -4811,37 +4499,37 @@ pub struct INPUTCONTEXT { pub lfFont: INPUTCONTEXT_0, pub cfCompForm: COMPOSITIONFORM, pub cfCandForm: [CANDIDATEFORM; 4], - pub hCompStr: super::super::super::Globalization::HIMCC, - pub hCandInfo: super::super::super::Globalization::HIMCC, - pub hGuideLine: super::super::super::Globalization::HIMCC, - pub hPrivate: super::super::super::Globalization::HIMCC, + pub hCompStr: HIMCC, + pub hCandInfo: HIMCC, + pub hGuideLine: HIMCC, + pub hPrivate: HIMCC, pub dwNumMsgBuf: u32, - pub hMsgBuf: super::super::super::Globalization::HIMCC, + pub hMsgBuf: HIMCC, pub fdwInit: u32, pub dwReserve: [u32; 3], } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] impl windows_core::TypeKind for INPUTCONTEXT { type TypeKind = windows_core::CopyType; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] impl Default for INPUTCONTEXT { fn default() -> Self { unsafe { core::mem::zeroed() } } } #[repr(C)] -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] #[derive(Clone, Copy)] pub union INPUTCONTEXT_0 { pub A: super::super::super::Graphics::Gdi::LOGFONTA, pub W: super::super::super::Graphics::Gdi::LOGFONTW, } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] impl windows_core::TypeKind for INPUTCONTEXT_0 { type TypeKind = windows_core::CopyType; } -#[cfg(all(feature = "Win32_Globalization", feature = "Win32_Graphics_Gdi"))] +#[cfg(feature = "Win32_Graphics_Gdi")] impl Default for INPUTCONTEXT_0 { fn default() -> Self { unsafe { core::mem::zeroed() } @@ -5095,8 +4783,7 @@ impl Default for WDD_1 { unsafe { core::mem::zeroed() } } } -#[cfg(feature = "Win32_Globalization")] -pub type IMCENUMPROC = Option super::super::super::Foundation::BOOL>; +pub type IMCENUMPROC = Option super::super::super::Foundation::BOOL>; pub type PFNLOG = Option super::super::super::Foundation::BOOL>; pub type REGISTERWORDENUMPROCA = Option i32>; pub type REGISTERWORDENUMPROCW = Option i32>; diff --git a/crates/libs/windows/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs index f1ff9d21e9..a91f90ee29 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs @@ -1,10 +1,9 @@ -#[cfg(feature = "Win32_UI_TextServices")] #[inline] -pub unsafe fn ActivateKeyboardLayout(hkl: P0, flags: ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> windows_core::Result +pub unsafe fn ActivateKeyboardLayout(hkl: P0, flags: ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> windows_core::Result where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn ActivateKeyboardLayout(hkl : super::super::TextServices:: HKL, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> super::super::TextServices:: HKL); + windows_targets::link!("user32.dll" "system" fn ActivateKeyboardLayout(hkl : HKL, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> HKL); let result__ = ActivateKeyboardLayout(hkl.param().abi(), flags); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } @@ -78,16 +77,14 @@ pub unsafe fn GetKeyState(nvirtkey: i32) -> i16 { windows_targets::link!("user32.dll" "system" fn GetKeyState(nvirtkey : i32) -> i16); GetKeyState(nvirtkey) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] -pub unsafe fn GetKeyboardLayout(idthread: u32) -> super::super::TextServices::HKL { - windows_targets::link!("user32.dll" "system" fn GetKeyboardLayout(idthread : u32) -> super::super::TextServices:: HKL); +pub unsafe fn GetKeyboardLayout(idthread: u32) -> HKL { + windows_targets::link!("user32.dll" "system" fn GetKeyboardLayout(idthread : u32) -> HKL); GetKeyboardLayout(idthread) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] -pub unsafe fn GetKeyboardLayoutList(lplist: Option<&mut [super::super::TextServices::HKL]>) -> i32 { - windows_targets::link!("user32.dll" "system" fn GetKeyboardLayoutList(nbuff : i32, lplist : *mut super::super::TextServices:: HKL) -> i32); +pub unsafe fn GetKeyboardLayoutList(lplist: Option<&mut [HKL]>) -> i32 { + windows_targets::link!("user32.dll" "system" fn GetKeyboardLayoutList(nbuff : i32, lplist : *mut HKL) -> i32); GetKeyboardLayoutList(lplist.as_deref().map_or(0, |slice| slice.len().try_into().unwrap()), core::mem::transmute(lplist.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr()))) } #[inline] @@ -128,23 +125,21 @@ where windows_targets::link!("user32.dll" "system" fn IsWindowEnabled(hwnd : super::super::super::Foundation:: HWND) -> super::super::super::Foundation:: BOOL); IsWindowEnabled(hwnd.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] -pub unsafe fn LoadKeyboardLayoutA(pwszklid: P0, flags: ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> windows_core::Result +pub unsafe fn LoadKeyboardLayoutA(pwszklid: P0, flags: ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> windows_core::Result where P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutA(pwszklid : windows_core::PCSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> super::super::TextServices:: HKL); + windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutA(pwszklid : windows_core::PCSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> HKL); let result__ = LoadKeyboardLayoutA(pwszklid.param().abi(), flags); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] -pub unsafe fn LoadKeyboardLayoutW(pwszklid: P0, flags: ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> windows_core::Result +pub unsafe fn LoadKeyboardLayoutW(pwszklid: P0, flags: ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> windows_core::Result where P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutW(pwszklid : windows_core::PCWSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> super::super::TextServices:: HKL); + windows_targets::link!("user32.dll" "system" fn LoadKeyboardLayoutW(pwszklid : windows_core::PCWSTR, flags : ACTIVATE_KEYBOARD_LAYOUT_FLAGS) -> HKL); let result__ = LoadKeyboardLayoutW(pwszklid.param().abi(), flags); (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } @@ -153,22 +148,20 @@ pub unsafe fn MapVirtualKeyA(ucode: u32, umaptype: MAP_VIRTUAL_KEY_TYPE) -> u32 windows_targets::link!("user32.dll" "system" fn MapVirtualKeyA(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE) -> u32); MapVirtualKeyA(ucode, umaptype) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] pub unsafe fn MapVirtualKeyExA(ucode: u32, umaptype: MAP_VIRTUAL_KEY_TYPE, dwhkl: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExA(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : super::super::TextServices:: HKL) -> u32); + windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExA(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : HKL) -> u32); MapVirtualKeyExA(ucode, umaptype, dwhkl.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] pub unsafe fn MapVirtualKeyExW(ucode: u32, umaptype: MAP_VIRTUAL_KEY_TYPE, dwhkl: P0) -> u32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExW(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : super::super::TextServices:: HKL) -> u32); + windows_targets::link!("user32.dll" "system" fn MapVirtualKeyExW(ucode : u32, umaptype : MAP_VIRTUAL_KEY_TYPE, dwhkl : HKL) -> u32); MapVirtualKeyExW(ucode, umaptype, dwhkl.param().abi()) } #[inline] @@ -200,12 +193,13 @@ pub unsafe fn SendInput(pinputs: &[INPUT], cbsize: i32) -> u32 { SendInput(pinputs.len().try_into().unwrap(), core::mem::transmute(pinputs.as_ptr()), cbsize) } #[inline] -pub unsafe fn SetActiveWindow(hwnd: P0) -> super::super::super::Foundation::HWND +pub unsafe fn SetActiveWindow(hwnd: P0) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn SetActiveWindow(hwnd : super::super::super::Foundation:: HWND) -> super::super::super::Foundation:: HWND); - SetActiveWindow(hwnd.param().abi()) + let result__ = SetActiveWindow(hwnd.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn SetCapture(hwnd: P0) -> super::super::super::Foundation::HWND @@ -221,12 +215,13 @@ pub unsafe fn SetDoubleClickTime(param0: u32) -> windows_core::Result<()> { SetDoubleClickTime(param0).ok() } #[inline] -pub unsafe fn SetFocus(hwnd: P0) -> super::super::super::Foundation::HWND +pub unsafe fn SetFocus(hwnd: P0) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn SetFocus(hwnd : super::super::super::Foundation:: HWND) -> super::super::super::Foundation:: HWND); - SetFocus(hwnd.param().abi()) + let result__ = SetFocus(hwnd.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn SetKeyboardState(lpkeystate: &[u8; 256]) -> windows_core::Result<()> { @@ -246,13 +241,12 @@ pub unsafe fn ToAscii(uvirtkey: u32, uscancode: u32, lpkeystate: Option<&[u8; 25 windows_targets::link!("user32.dll" "system" fn ToAscii(uvirtkey : u32, uscancode : u32, lpkeystate : *const u8, lpchar : *mut u16, uflags : u32) -> i32); ToAscii(uvirtkey, uscancode, core::mem::transmute(lpkeystate.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpchar, uflags) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] pub unsafe fn ToAsciiEx(uvirtkey: u32, uscancode: u32, lpkeystate: Option<&[u8; 256]>, lpchar: *mut u16, uflags: u32, dwhkl: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn ToAsciiEx(uvirtkey : u32, uscancode : u32, lpkeystate : *const u8, lpchar : *mut u16, uflags : u32, dwhkl : super::super::TextServices:: HKL) -> i32); + windows_targets::link!("user32.dll" "system" fn ToAsciiEx(uvirtkey : u32, uscancode : u32, lpkeystate : *const u8, lpchar : *mut u16, uflags : u32, dwhkl : HKL) -> i32); ToAsciiEx(uvirtkey, uscancode, core::mem::transmute(lpkeystate.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), lpchar, uflags, dwhkl.param().abi()) } #[inline] @@ -260,13 +254,12 @@ pub unsafe fn ToUnicode(wvirtkey: u32, wscancode: u32, lpkeystate: Option<&[u8; windows_targets::link!("user32.dll" "system" fn ToUnicode(wvirtkey : u32, wscancode : u32, lpkeystate : *const u8, pwszbuff : windows_core::PWSTR, cchbuff : i32, wflags : u32) -> i32); ToUnicode(wvirtkey, wscancode, core::mem::transmute(lpkeystate.as_deref().map_or(core::ptr::null(), |slice| slice.as_ptr())), core::mem::transmute(pwszbuff.as_ptr()), pwszbuff.len().try_into().unwrap(), wflags) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] pub unsafe fn ToUnicodeEx(wvirtkey: u32, wscancode: u32, lpkeystate: &[u8; 256], pwszbuff: &mut [u16], wflags: u32, dwhkl: P0) -> i32 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn ToUnicodeEx(wvirtkey : u32, wscancode : u32, lpkeystate : *const u8, pwszbuff : windows_core::PWSTR, cchbuff : i32, wflags : u32, dwhkl : super::super::TextServices:: HKL) -> i32); + windows_targets::link!("user32.dll" "system" fn ToUnicodeEx(wvirtkey : u32, wscancode : u32, lpkeystate : *const u8, pwszbuff : windows_core::PWSTR, cchbuff : i32, wflags : u32, dwhkl : HKL) -> i32); ToUnicodeEx(wvirtkey, wscancode, core::mem::transmute(lpkeystate.as_ptr()), core::mem::transmute(pwszbuff.as_ptr()), pwszbuff.len().try_into().unwrap(), wflags, dwhkl.param().abi()) } #[inline] @@ -274,13 +267,12 @@ pub unsafe fn TrackMouseEvent(lpeventtrack: *mut TRACKMOUSEEVENT) -> windows_cor windows_targets::link!("user32.dll" "system" fn TrackMouseEvent(lpeventtrack : *mut TRACKMOUSEEVENT) -> super::super::super::Foundation:: BOOL); TrackMouseEvent(lpeventtrack).ok() } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] pub unsafe fn UnloadKeyboardLayout(hkl: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn UnloadKeyboardLayout(hkl : super::super::TextServices:: HKL) -> super::super::super::Foundation:: BOOL); + windows_targets::link!("user32.dll" "system" fn UnloadKeyboardLayout(hkl : HKL) -> super::super::super::Foundation:: BOOL); UnloadKeyboardLayout(hkl.param().abi()).ok() } #[inline] @@ -296,22 +288,20 @@ pub unsafe fn VkKeyScanA(ch: i8) -> i16 { windows_targets::link!("user32.dll" "system" fn VkKeyScanA(ch : i8) -> i16); VkKeyScanA(ch) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] pub unsafe fn VkKeyScanExA(ch: i8, dwhkl: P0) -> i16 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn VkKeyScanExA(ch : i8, dwhkl : super::super::TextServices:: HKL) -> i16); + windows_targets::link!("user32.dll" "system" fn VkKeyScanExA(ch : i8, dwhkl : HKL) -> i16); VkKeyScanExA(ch, dwhkl.param().abi()) } -#[cfg(feature = "Win32_UI_TextServices")] #[inline] pub unsafe fn VkKeyScanExW(ch: u16, dwhkl: P0) -> i16 where - P0: windows_core::Param, + P0: windows_core::Param, { - windows_targets::link!("user32.dll" "system" fn VkKeyScanExW(ch : u16, dwhkl : super::super::TextServices:: HKL) -> i16); + windows_targets::link!("user32.dll" "system" fn VkKeyScanExW(ch : u16, dwhkl : HKL) -> i16); VkKeyScanExW(ch, dwhkl.param().abi()) } #[inline] @@ -1021,6 +1011,30 @@ impl Default for HARDWAREINPUT { unsafe { core::mem::zeroed() } } } +#[repr(transparent)] +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub struct HKL(pub *mut core::ffi::c_void); +impl HKL { + pub fn is_invalid(&self) -> bool { + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HKL { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = UnloadKeyboardLayout(*self); + } + } +} +impl Default for HKL { + fn default() -> Self { + unsafe { core::mem::zeroed() } + } +} +impl windows_core::TypeKind for HKL { + type TypeKind = windows_core::CopyType; +} #[repr(C)] #[derive(Clone, Copy)] pub struct INPUT { diff --git a/crates/libs/windows/src/Windows/Win32/UI/Input/Touch/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Input/Touch/mod.rs index ad079f9df4..7a6d8e7ebd 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Input/Touch/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Input/Touch/mod.rs @@ -714,10 +714,18 @@ impl Default for GESTURENOTIFYSTRUCT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HGESTUREINFO(pub isize); +pub struct HGESTUREINFO(pub *mut core::ffi::c_void); impl HGESTUREINFO { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HGESTUREINFO { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CloseGestureInfoHandle(*self); + } } } impl Default for HGESTUREINFO { @@ -730,10 +738,18 @@ impl windows_core::TypeKind for HGESTUREINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HTOUCHINPUT(pub isize); +pub struct HTOUCHINPUT(pub *mut core::ffi::c_void); impl HTOUCHINPUT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HTOUCHINPUT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = CloseTouchInputHandle(*self); + } } } impl Default for HTOUCHINPUT { diff --git a/crates/libs/windows/src/Windows/Win32/UI/Input/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Input/mod.rs index 86b50dbe54..bc70bb545d 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Input/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Input/mod.rs @@ -216,10 +216,10 @@ impl core::fmt::Debug for RID_DEVICE_INFO_TYPE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRAWINPUT(pub isize); +pub struct HRAWINPUT(pub *mut core::ffi::c_void); impl HRAWINPUT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HRAWINPUT { diff --git a/crates/libs/windows/src/Windows/Win32/UI/InteractionContext/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/InteractionContext/mod.rs index 6331ad8635..0ad105eaeb 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/InteractionContext/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/InteractionContext/mod.rs @@ -597,10 +597,18 @@ impl Default for CROSS_SLIDE_PARAMETER { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HINTERACTIONCONTEXT(pub isize); +pub struct HINTERACTIONCONTEXT(pub *mut core::ffi::c_void); impl HINTERACTIONCONTEXT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HINTERACTIONCONTEXT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DestroyInteractionContext(*self); + } } } impl Default for HINTERACTIONCONTEXT { diff --git a/crates/libs/windows/src/Windows/Win32/UI/Shell/impl.rs b/crates/libs/windows/src/Windows/Win32/UI/Shell/impl.rs index d0d0716621..d3aab5115f 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Shell/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Shell/impl.rs @@ -17337,7 +17337,7 @@ pub trait IShellFolder_Impl: Sized { fn EnumObjects(&self, hwnd: super::super::Foundation::HWND, grfflags: u32, ppenumidlist: *mut Option) -> windows_core::HRESULT; fn BindToObject(&self, pidl: *const Common::ITEMIDLIST, pbc: Option<&super::super::System::Com::IBindCtx>, riid: *const windows_core::GUID, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; fn BindToStorage(&self, pidl: *const Common::ITEMIDLIST, pbc: Option<&super::super::System::Com::IBindCtx>, riid: *const windows_core::GUID, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; - fn CompareIDs(&self, lparam: super::super::Foundation::LPARAM, pidl1: *const Common::ITEMIDLIST, pidl2: *const Common::ITEMIDLIST) -> windows_core::Result<()>; + fn CompareIDs(&self, lparam: super::super::Foundation::LPARAM, pidl1: *const Common::ITEMIDLIST, pidl2: *const Common::ITEMIDLIST) -> windows_core::HRESULT; fn CreateViewObject(&self, hwndowner: super::super::Foundation::HWND, riid: *const windows_core::GUID, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; fn GetAttributesOf(&self, cidl: u32, apidl: *const *const Common::ITEMIDLIST, rgfinout: *mut u32) -> windows_core::Result<()>; fn GetUIObjectOf(&self, hwndowner: super::super::Foundation::HWND, cidl: u32, apidl: *const *const Common::ITEMIDLIST, riid: *const windows_core::GUID, rgfreserved: *const u32, ppv: *mut *mut core::ffi::c_void) -> windows_core::Result<()>; @@ -17385,7 +17385,7 @@ impl IShellFolder_Vtbl { Identity: IShellFolder_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); - IShellFolder_Impl::CompareIDs(this, core::mem::transmute_copy(&lparam), core::mem::transmute_copy(&pidl1), core::mem::transmute_copy(&pidl2)).into() + IShellFolder_Impl::CompareIDs(this, core::mem::transmute_copy(&lparam), core::mem::transmute_copy(&pidl1), core::mem::transmute_copy(&pidl2)) } unsafe extern "system" fn CreateViewObject(this: *mut core::ffi::c_void, hwndowner: super::super::Foundation::HWND, riid: *const windows_core::GUID, ppv: *mut *mut core::ffi::c_void) -> windows_core::HRESULT where @@ -17445,7 +17445,7 @@ pub trait IShellFolder2_Impl: Sized + IShellFolder_Impl { fn GetDefaultSearchGUID(&self) -> windows_core::Result; fn EnumSearches(&self) -> windows_core::Result; fn GetDefaultColumn(&self, dwres: u32, psort: *mut u32, pdisplay: *mut u32) -> windows_core::Result<()>; - fn GetDefaultColumnState(&self, icolumn: u32) -> windows_core::Result; + fn GetDefaultColumnState(&self, icolumn: u32) -> windows_core::Result; fn GetDetailsEx(&self, pidl: *const Common::ITEMIDLIST, pscid: *const PropertiesSystem::PROPERTYKEY) -> windows_core::Result; fn GetDetailsOf(&self, pidl: *const Common::ITEMIDLIST, icolumn: u32, psd: *mut Common::SHELLDETAILS) -> windows_core::Result<()>; fn MapColumnToSCID(&self, icolumn: u32, pscid: *mut PropertiesSystem::PROPERTYKEY) -> windows_core::Result<()>; @@ -17491,7 +17491,7 @@ impl IShellFolder2_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); IShellFolder2_Impl::GetDefaultColumn(this, core::mem::transmute_copy(&dwres), core::mem::transmute_copy(&psort), core::mem::transmute_copy(&pdisplay)).into() } - unsafe extern "system" fn GetDefaultColumnState(this: *mut core::ffi::c_void, icolumn: u32, pcsflags: *mut u32) -> windows_core::HRESULT + unsafe extern "system" fn GetDefaultColumnState(this: *mut core::ffi::c_void, icolumn: u32, pcsflags: *mut Common::SHCOLSTATE) -> windows_core::HRESULT where Identity: IShellFolder2_Impl, { diff --git a/crates/libs/windows/src/Windows/Win32/UI/Shell/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/Shell/mod.rs index 673124ca56..bfb850bbf3 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/Shell/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/Shell/mod.rs @@ -17611,11 +17611,11 @@ impl IShellFolder { (windows_core::Interface::vtable(self).BindToStorage)(windows_core::Interface::as_raw(self), pidl, pbc.param().abi(), &T::IID, &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } #[cfg(feature = "Win32_UI_Shell_Common")] - pub unsafe fn CompareIDs(&self, lparam: P0, pidl1: *const Common::ITEMIDLIST, pidl2: *const Common::ITEMIDLIST) -> windows_core::Result<()> + pub unsafe fn CompareIDs(&self, lparam: P0, pidl1: *const Common::ITEMIDLIST, pidl2: *const Common::ITEMIDLIST) -> windows_core::HRESULT where P0: windows_core::Param, { - (windows_core::Interface::vtable(self).CompareIDs)(windows_core::Interface::as_raw(self), lparam.param().abi(), pidl1, pidl2).ok() + (windows_core::Interface::vtable(self).CompareIDs)(windows_core::Interface::as_raw(self), lparam.param().abi(), pidl1, pidl2) } pub unsafe fn CreateViewObject(&self, hwndowner: P0) -> windows_core::Result where @@ -17709,7 +17709,8 @@ impl IShellFolder2 { pub unsafe fn GetDefaultColumn(&self, dwres: u32, psort: *mut u32, pdisplay: *mut u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetDefaultColumn)(windows_core::Interface::as_raw(self), dwres, psort, pdisplay).ok() } - pub unsafe fn GetDefaultColumnState(&self, icolumn: u32) -> windows_core::Result { + #[cfg(feature = "Win32_UI_Shell_Common")] + pub unsafe fn GetDefaultColumnState(&self, icolumn: u32) -> windows_core::Result { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetDefaultColumnState)(windows_core::Interface::as_raw(self), icolumn, &mut result__).map(|| result__) } @@ -17733,7 +17734,10 @@ pub struct IShellFolder2_Vtbl { pub GetDefaultSearchGUID: unsafe extern "system" fn(*mut core::ffi::c_void, *mut windows_core::GUID) -> windows_core::HRESULT, pub EnumSearches: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, pub GetDefaultColumn: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut u32, *mut u32) -> windows_core::HRESULT, - pub GetDefaultColumnState: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Shell_Common")] + pub GetDefaultColumnState: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut Common::SHCOLSTATE) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Shell_Common"))] + GetDefaultColumnState: usize, #[cfg(all(feature = "Win32_UI_Shell_Common", feature = "Win32_UI_Shell_PropertiesSystem"))] pub GetDetailsEx: unsafe extern "system" fn(*mut core::ffi::c_void, *const Common::ITEMIDLIST, *const PropertiesSystem::PROPERTYKEY, *mut core::mem::MaybeUninit) -> windows_core::HRESULT, #[cfg(not(all(feature = "Win32_UI_Shell_Common", feature = "Win32_UI_Shell_PropertiesSystem")))] @@ -34731,10 +34735,10 @@ pub const FreeSpaceCategorizer: windows_core::GUID = windows_core::GUID::from_u1 pub const GenericCredentialProvider: windows_core::GUID = windows_core::GUID::from_u128(0x25cbb996_92ed_457e_b28c_4774084bd562); #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDROP(pub isize); +pub struct HDROP(pub *mut core::ffi::c_void); impl HDROP { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HDROP { @@ -34848,10 +34852,18 @@ impl Default for HLTBINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HPSXA(pub isize); +pub struct HPSXA(pub *mut core::ffi::c_void); impl HPSXA { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HPSXA { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + SHDestroyPropSheetExtArray(*self); + } } } impl Default for HPSXA { diff --git a/crates/libs/windows/src/Windows/Win32/UI/TabletPC/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/TabletPC/mod.rs index c7fc979b32..218c6b87e0 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/TabletPC/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/TabletPC/mod.rs @@ -8483,10 +8483,10 @@ impl Default for GESTURE_DATA { pub const GestureRecognizer: windows_core::GUID = windows_core::GUID::from_u128(0xea30c654_c62c_441f_ac00_95f9a196782c); #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRECOALT(pub isize); +pub struct HRECOALT(pub *mut core::ffi::c_void); impl HRECOALT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HRECOALT { @@ -8499,10 +8499,18 @@ impl windows_core::TypeKind for HRECOALT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRECOCONTEXT(pub isize); +pub struct HRECOCONTEXT(pub *mut core::ffi::c_void); impl HRECOCONTEXT { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HRECOCONTEXT { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DestroyContext(*self); + } } } impl Default for HRECOCONTEXT { @@ -8515,10 +8523,18 @@ impl windows_core::TypeKind for HRECOCONTEXT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRECOGNIZER(pub isize); +pub struct HRECOGNIZER(pub *mut core::ffi::c_void); impl HRECOGNIZER { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HRECOGNIZER { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DestroyRecognizer(*self); + } } } impl Default for HRECOGNIZER { @@ -8531,10 +8547,10 @@ impl windows_core::TypeKind for HRECOGNIZER { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRECOLATTICE(pub isize); +pub struct HRECOLATTICE(pub *mut core::ffi::c_void); impl HRECOLATTICE { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl Default for HRECOLATTICE { @@ -8547,10 +8563,18 @@ impl windows_core::TypeKind for HRECOLATTICE { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HRECOWORDLIST(pub isize); +pub struct HRECOWORDLIST(pub *mut core::ffi::c_void); impl HRECOWORDLIST { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ + } +} +impl windows_core::Free for HRECOWORDLIST { + #[inline] + unsafe fn free(&mut self) { + if !self.is_invalid() { + _ = DestroyWordList(*self); + } } } impl Default for HRECOWORDLIST { diff --git a/crates/libs/windows/src/Windows/Win32/UI/TextServices/impl.rs b/crates/libs/windows/src/Windows/Win32/UI/TextServices/impl.rs index dcb27b82ec..3999d03289 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/TextServices/impl.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/TextServices/impl.rs @@ -1026,13 +1026,16 @@ impl IEnumTfFunctionProviders_Vtbl { iid == &::IID } } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub trait IEnumTfInputProcessorProfiles_Impl: Sized { fn Clone(&self) -> windows_core::Result; fn Next(&self, ulcount: u32, pprofile: *mut TF_INPUTPROCESSORPROFILE, pcfetch: *mut u32) -> windows_core::Result<()>; fn Reset(&self) -> windows_core::Result<()>; fn Skip(&self, ulcount: u32) -> windows_core::Result<()>; } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl windows_core::RuntimeName for IEnumTfInputProcessorProfiles {} +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl IEnumTfInputProcessorProfiles_Vtbl { pub const fn new() -> IEnumTfInputProcessorProfiles_Vtbl where @@ -5474,16 +5477,19 @@ impl ITfFunctionProvider_Vtbl { iid == &::IID } } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub trait ITfInputProcessorProfileActivationSink_Impl: Sized { - fn OnActivated(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, catid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, dwflags: u32) -> windows_core::Result<()>; + fn OnActivated(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, catid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, dwflags: u32) -> windows_core::Result<()>; } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl windows_core::RuntimeName for ITfInputProcessorProfileActivationSink {} +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl ITfInputProcessorProfileActivationSink_Vtbl { pub const fn new() -> ITfInputProcessorProfileActivationSink_Vtbl where Identity: ITfInputProcessorProfileActivationSink_Impl, { - unsafe extern "system" fn OnActivated(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, catid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, dwflags: u32) -> windows_core::HRESULT + unsafe extern "system" fn OnActivated(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, catid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, dwflags: u32) -> windows_core::HRESULT where Identity: ITfInputProcessorProfileActivationSink_Impl, { @@ -5496,37 +5502,40 @@ impl ITfInputProcessorProfileActivationSink_Vtbl { iid == &::IID } } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub trait ITfInputProcessorProfileMgr_Impl: Sized { - fn ActivateProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, dwflags: u32) -> windows_core::Result<()>; - fn DeactivateProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, dwflags: u32) -> windows_core::Result<()>; - fn GetProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, pprofile: *mut TF_INPUTPROCESSORPROFILE) -> windows_core::Result<()>; + fn ActivateProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, dwflags: u32) -> windows_core::Result<()>; + fn DeactivateProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, dwflags: u32) -> windows_core::Result<()>; + fn GetProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, pprofile: *mut TF_INPUTPROCESSORPROFILE) -> windows_core::Result<()>; fn EnumProfiles(&self, langid: u16) -> windows_core::Result; fn ReleaseInputProcessor(&self, rclsid: *const windows_core::GUID, dwflags: u32) -> windows_core::Result<()>; - fn RegisterProfile(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, pchdesc: &windows_core::PCWSTR, cchdesc: u32, pchiconfile: &windows_core::PCWSTR, cchfile: u32, uiconindex: u32, hklsubstitute: HKL, dwpreferredlayout: u32, benabledbydefault: super::super::Foundation::BOOL, dwflags: u32) -> windows_core::Result<()>; + fn RegisterProfile(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, pchdesc: &windows_core::PCWSTR, cchdesc: u32, pchiconfile: &windows_core::PCWSTR, cchfile: u32, uiconindex: u32, hklsubstitute: super::Input::KeyboardAndMouse::HKL, dwpreferredlayout: u32, benabledbydefault: super::super::Foundation::BOOL, dwflags: u32) -> windows_core::Result<()>; fn UnregisterProfile(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, dwflags: u32) -> windows_core::Result<()>; fn GetActiveProfile(&self, catid: *const windows_core::GUID, pprofile: *mut TF_INPUTPROCESSORPROFILE) -> windows_core::Result<()>; } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl windows_core::RuntimeName for ITfInputProcessorProfileMgr {} +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl ITfInputProcessorProfileMgr_Vtbl { pub const fn new() -> ITfInputProcessorProfileMgr_Vtbl where Identity: ITfInputProcessorProfileMgr_Impl, { - unsafe extern "system" fn ActivateProfile(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, dwflags: u32) -> windows_core::HRESULT + unsafe extern "system" fn ActivateProfile(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, dwflags: u32) -> windows_core::HRESULT where Identity: ITfInputProcessorProfileMgr_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ITfInputProcessorProfileMgr_Impl::ActivateProfile(this, core::mem::transmute_copy(&dwprofiletype), core::mem::transmute_copy(&langid), core::mem::transmute_copy(&clsid), core::mem::transmute_copy(&guidprofile), core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&dwflags)).into() } - unsafe extern "system" fn DeactivateProfile(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, dwflags: u32) -> windows_core::HRESULT + unsafe extern "system" fn DeactivateProfile(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, dwflags: u32) -> windows_core::HRESULT where Identity: ITfInputProcessorProfileMgr_Impl, { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ITfInputProcessorProfileMgr_Impl::DeactivateProfile(this, core::mem::transmute_copy(&dwprofiletype), core::mem::transmute_copy(&langid), core::mem::transmute_copy(&clsid), core::mem::transmute_copy(&guidprofile), core::mem::transmute_copy(&hkl), core::mem::transmute_copy(&dwflags)).into() } - unsafe extern "system" fn GetProfile(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: HKL, pprofile: *mut TF_INPUTPROCESSORPROFILE) -> windows_core::HRESULT + unsafe extern "system" fn GetProfile(this: *mut core::ffi::c_void, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL, pprofile: *mut TF_INPUTPROCESSORPROFILE) -> windows_core::HRESULT where Identity: ITfInputProcessorProfileMgr_Impl, { @@ -5553,7 +5562,7 @@ impl ITfInputProcessorProfileMgr_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ITfInputProcessorProfileMgr_Impl::ReleaseInputProcessor(this, core::mem::transmute_copy(&rclsid), core::mem::transmute_copy(&dwflags)).into() } - unsafe extern "system" fn RegisterProfile(this: *mut core::ffi::c_void, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, pchdesc: windows_core::PCWSTR, cchdesc: u32, pchiconfile: windows_core::PCWSTR, cchfile: u32, uiconindex: u32, hklsubstitute: HKL, dwpreferredlayout: u32, benabledbydefault: super::super::Foundation::BOOL, dwflags: u32) -> windows_core::HRESULT + unsafe extern "system" fn RegisterProfile(this: *mut core::ffi::c_void, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, pchdesc: windows_core::PCWSTR, cchdesc: u32, pchiconfile: windows_core::PCWSTR, cchfile: u32, uiconindex: u32, hklsubstitute: super::Input::KeyboardAndMouse::HKL, dwpreferredlayout: u32, benabledbydefault: super::super::Foundation::BOOL, dwflags: u32) -> windows_core::HRESULT where Identity: ITfInputProcessorProfileMgr_Impl, { @@ -5590,16 +5599,19 @@ impl ITfInputProcessorProfileMgr_Vtbl { iid == &::IID } } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub trait ITfInputProcessorProfileSubstituteLayout_Impl: Sized { - fn GetSubstituteKeyboardLayout(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID) -> windows_core::Result; + fn GetSubstituteKeyboardLayout(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID) -> windows_core::Result; } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl windows_core::RuntimeName for ITfInputProcessorProfileSubstituteLayout {} +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl ITfInputProcessorProfileSubstituteLayout_Vtbl { pub const fn new() -> ITfInputProcessorProfileSubstituteLayout_Vtbl where Identity: ITfInputProcessorProfileSubstituteLayout_Impl, { - unsafe extern "system" fn GetSubstituteKeyboardLayout(this: *mut core::ffi::c_void, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, phkl: *mut HKL) -> windows_core::HRESULT + unsafe extern "system" fn GetSubstituteKeyboardLayout(this: *mut core::ffi::c_void, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, phkl: *mut super::Input::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: ITfInputProcessorProfileSubstituteLayout_Impl, { @@ -5618,7 +5630,7 @@ impl ITfInputProcessorProfileSubstituteLayout_Vtbl { iid == &::IID } } -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_System_Com", feature = "Win32_UI_Input_KeyboardAndMouse"))] pub trait ITfInputProcessorProfiles_Impl: Sized { fn Register(&self, rclsid: *const windows_core::GUID) -> windows_core::Result<()>; fn Unregister(&self, rclsid: *const windows_core::GUID) -> windows_core::Result<()>; @@ -5637,11 +5649,11 @@ pub trait ITfInputProcessorProfiles_Impl: Sized { fn EnableLanguageProfile(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, fenable: super::super::Foundation::BOOL) -> windows_core::Result<()>; fn IsEnabledLanguageProfile(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID) -> windows_core::Result; fn EnableLanguageProfileByDefault(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, fenable: super::super::Foundation::BOOL) -> windows_core::Result<()>; - fn SubstituteKeyboardLayout(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, hkl: HKL) -> windows_core::Result<()>; + fn SubstituteKeyboardLayout(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL) -> windows_core::Result<()>; } -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_System_Com", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl windows_core::RuntimeName for ITfInputProcessorProfiles {} -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_System_Com", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl ITfInputProcessorProfiles_Vtbl { pub const fn new() -> ITfInputProcessorProfiles_Vtbl where @@ -5796,7 +5808,7 @@ impl ITfInputProcessorProfiles_Vtbl { let this: &Identity = &*((this as *const *const ()).offset(OFFSET) as *const Identity); ITfInputProcessorProfiles_Impl::EnableLanguageProfileByDefault(this, core::mem::transmute_copy(&rclsid), core::mem::transmute_copy(&langid), core::mem::transmute_copy(&guidprofile), core::mem::transmute_copy(&fenable)).into() } - unsafe extern "system" fn SubstituteKeyboardLayout(this: *mut core::ffi::c_void, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, hkl: HKL) -> windows_core::HRESULT + unsafe extern "system" fn SubstituteKeyboardLayout(this: *mut core::ffi::c_void, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, hkl: super::Input::KeyboardAndMouse::HKL) -> windows_core::HRESULT where Identity: ITfInputProcessorProfiles_Impl, { @@ -5829,13 +5841,13 @@ impl ITfInputProcessorProfiles_Vtbl { iid == &::IID } } -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_System_Com", feature = "Win32_UI_Input_KeyboardAndMouse"))] pub trait ITfInputProcessorProfilesEx_Impl: Sized + ITfInputProcessorProfiles_Impl { fn SetLanguageProfileDisplayName(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, pchfile: &windows_core::PCWSTR, cchfile: u32, uresid: u32) -> windows_core::Result<()>; } -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_System_Com", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl windows_core::RuntimeName for ITfInputProcessorProfilesEx {} -#[cfg(feature = "Win32_System_Com")] +#[cfg(all(feature = "Win32_System_Com", feature = "Win32_UI_Input_KeyboardAndMouse"))] impl ITfInputProcessorProfilesEx_Vtbl { pub const fn new() -> ITfInputProcessorProfilesEx_Vtbl where diff --git a/crates/libs/windows/src/Windows/Win32/UI/TextServices/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/TextServices/mod.rs index ac0ebb6943..c49f679b07 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/TextServices/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/TextServices/mod.rs @@ -627,6 +627,7 @@ impl IEnumTfInputProcessorProfiles { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).Clone)(windows_core::Interface::as_raw(self), &mut result__).and_then(|| windows_core::Type::from_abi(result__)) } + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn Next(&self, pprofile: &mut [TF_INPUTPROCESSORPROFILE], pcfetch: *mut u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).Next)(windows_core::Interface::as_raw(self), pprofile.len().try_into().unwrap(), core::mem::transmute(pprofile.as_ptr()), pcfetch).ok() } @@ -641,7 +642,10 @@ impl IEnumTfInputProcessorProfiles { pub struct IEnumTfInputProcessorProfiles_Vtbl { pub base__: windows_core::IUnknown_Vtbl, pub Clone: unsafe extern "system" fn(*mut core::ffi::c_void, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub Next: unsafe extern "system" fn(*mut core::ffi::c_void, u32, *mut TF_INPUTPROCESSORPROFILE, *mut u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + Next: usize, pub Reset: unsafe extern "system" fn(*mut core::ffi::c_void) -> windows_core::HRESULT, pub Skip: unsafe extern "system" fn(*mut core::ffi::c_void, u32) -> windows_core::HRESULT, } @@ -3266,9 +3270,10 @@ impl core::ops::Deref for ITfInputProcessorProfileActivationSink { } windows_core::imp::interface_hierarchy!(ITfInputProcessorProfileActivationSink, windows_core::IUnknown); impl ITfInputProcessorProfileActivationSink { + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn OnActivated(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, catid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: P0, dwflags: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).OnActivated)(windows_core::Interface::as_raw(self), dwprofiletype, langid, clsid, catid, guidprofile, hkl.param().abi(), dwflags).ok() } @@ -3276,7 +3281,10 @@ impl ITfInputProcessorProfileActivationSink { #[repr(C)] pub struct ITfInputProcessorProfileActivationSink_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - pub OnActivated: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, *const windows_core::GUID, HKL, u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub OnActivated: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, *const windows_core::GUID, super::Input::KeyboardAndMouse::HKL, u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + OnActivated: usize, } windows_core::imp::define_interface!(ITfInputProcessorProfileMgr, ITfInputProcessorProfileMgr_Vtbl, 0x71c6e74c_0f28_11d8_a82a_00065b84435c); impl core::ops::Deref for ITfInputProcessorProfileMgr { @@ -3287,21 +3295,24 @@ impl core::ops::Deref for ITfInputProcessorProfileMgr { } windows_core::imp::interface_hierarchy!(ITfInputProcessorProfileMgr, windows_core::IUnknown); impl ITfInputProcessorProfileMgr { + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn ActivateProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: P0, dwflags: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).ActivateProfile)(windows_core::Interface::as_raw(self), dwprofiletype, langid, clsid, guidprofile, hkl.param().abi(), dwflags).ok() } + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn DeactivateProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: P0, dwflags: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).DeactivateProfile)(windows_core::Interface::as_raw(self), dwprofiletype, langid, clsid, guidprofile, hkl.param().abi(), dwflags).ok() } + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetProfile(&self, dwprofiletype: u32, langid: u16, clsid: *const windows_core::GUID, guidprofile: *const windows_core::GUID, hkl: P0, pprofile: *mut TF_INPUTPROCESSORPROFILE) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).GetProfile)(windows_core::Interface::as_raw(self), dwprofiletype, langid, clsid, guidprofile, hkl.param().abi(), pprofile).ok() } @@ -3312,9 +3323,10 @@ impl ITfInputProcessorProfileMgr { pub unsafe fn ReleaseInputProcessor(&self, rclsid: *const windows_core::GUID, dwflags: u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).ReleaseInputProcessor)(windows_core::Interface::as_raw(self), rclsid, dwflags).ok() } + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn RegisterProfile(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, pchdesc: &[u16], pchiconfile: &[u16], uiconindex: u32, hklsubstitute: P0, dwpreferredlayout: u32, benabledbydefault: P1, dwflags: u32) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, P1: windows_core::Param, { (windows_core::Interface::vtable(self).RegisterProfile)(windows_core::Interface::as_raw(self), rclsid, langid, guidprofile, core::mem::transmute(pchdesc.as_ptr()), pchdesc.len().try_into().unwrap(), core::mem::transmute(pchiconfile.as_ptr()), pchiconfile.len().try_into().unwrap(), uiconindex, hklsubstitute.param().abi(), dwpreferredlayout, benabledbydefault.param().abi(), dwflags).ok() @@ -3322,6 +3334,7 @@ impl ITfInputProcessorProfileMgr { pub unsafe fn UnregisterProfile(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, dwflags: u32) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).UnregisterProfile)(windows_core::Interface::as_raw(self), rclsid, langid, guidprofile, dwflags).ok() } + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn GetActiveProfile(&self, catid: *const windows_core::GUID, pprofile: *mut TF_INPUTPROCESSORPROFILE) -> windows_core::Result<()> { (windows_core::Interface::vtable(self).GetActiveProfile)(windows_core::Interface::as_raw(self), catid, pprofile).ok() } @@ -3329,14 +3342,29 @@ impl ITfInputProcessorProfileMgr { #[repr(C)] pub struct ITfInputProcessorProfileMgr_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - pub ActivateProfile: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, HKL, u32) -> windows_core::HRESULT, - pub DeactivateProfile: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, HKL, u32) -> windows_core::HRESULT, - pub GetProfile: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, HKL, *mut TF_INPUTPROCESSORPROFILE) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub ActivateProfile: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, super::Input::KeyboardAndMouse::HKL, u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + ActivateProfile: usize, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub DeactivateProfile: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, super::Input::KeyboardAndMouse::HKL, u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + DeactivateProfile: usize, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetProfile: unsafe extern "system" fn(*mut core::ffi::c_void, u32, u16, *const windows_core::GUID, *const windows_core::GUID, super::Input::KeyboardAndMouse::HKL, *mut TF_INPUTPROCESSORPROFILE) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + GetProfile: usize, pub EnumProfiles: unsafe extern "system" fn(*mut core::ffi::c_void, u16, *mut *mut core::ffi::c_void) -> windows_core::HRESULT, pub ReleaseInputProcessor: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u32) -> windows_core::HRESULT, - pub RegisterProfile: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, windows_core::PCWSTR, u32, windows_core::PCWSTR, u32, u32, HKL, u32, super::super::Foundation::BOOL, u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub RegisterProfile: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, windows_core::PCWSTR, u32, windows_core::PCWSTR, u32, u32, super::Input::KeyboardAndMouse::HKL, u32, super::super::Foundation::BOOL, u32) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + RegisterProfile: usize, pub UnregisterProfile: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, u32) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub GetActiveProfile: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, *mut TF_INPUTPROCESSORPROFILE) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + GetActiveProfile: usize, } windows_core::imp::define_interface!(ITfInputProcessorProfileSubstituteLayout, ITfInputProcessorProfileSubstituteLayout_Vtbl, 0x4fd67194_1002_4513_bff2_c0ddf6258552); impl core::ops::Deref for ITfInputProcessorProfileSubstituteLayout { @@ -3347,7 +3375,8 @@ impl core::ops::Deref for ITfInputProcessorProfileSubstituteLayout { } windows_core::imp::interface_hierarchy!(ITfInputProcessorProfileSubstituteLayout, windows_core::IUnknown); impl ITfInputProcessorProfileSubstituteLayout { - pub unsafe fn GetSubstituteKeyboardLayout(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID) -> windows_core::Result { + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub unsafe fn GetSubstituteKeyboardLayout(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID) -> windows_core::Result { let mut result__ = core::mem::zeroed(); (windows_core::Interface::vtable(self).GetSubstituteKeyboardLayout)(windows_core::Interface::as_raw(self), rclsid, langid, guidprofile, &mut result__).map(|| result__) } @@ -3355,7 +3384,10 @@ impl ITfInputProcessorProfileSubstituteLayout { #[repr(C)] pub struct ITfInputProcessorProfileSubstituteLayout_Vtbl { pub base__: windows_core::IUnknown_Vtbl, - pub GetSubstituteKeyboardLayout: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, *mut HKL) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub GetSubstituteKeyboardLayout: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, *mut super::Input::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + GetSubstituteKeyboardLayout: usize, } windows_core::imp::define_interface!(ITfInputProcessorProfiles, ITfInputProcessorProfiles_Vtbl, 0x1f02b6c5_7842_4ee6_8a0b_9a24183a95ca); impl core::ops::Deref for ITfInputProcessorProfiles { @@ -3429,9 +3461,10 @@ impl ITfInputProcessorProfiles { { (windows_core::Interface::vtable(self).EnableLanguageProfileByDefault)(windows_core::Interface::as_raw(self), rclsid, langid, guidprofile, fenable.param().abi()).ok() } + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] pub unsafe fn SubstituteKeyboardLayout(&self, rclsid: *const windows_core::GUID, langid: u16, guidprofile: *const windows_core::GUID, hkl: P0) -> windows_core::Result<()> where - P0: windows_core::Param, + P0: windows_core::Param, { (windows_core::Interface::vtable(self).SubstituteKeyboardLayout)(windows_core::Interface::as_raw(self), rclsid, langid, guidprofile, hkl.param().abi()).ok() } @@ -3459,7 +3492,10 @@ pub struct ITfInputProcessorProfiles_Vtbl { pub EnableLanguageProfile: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, super::super::Foundation::BOOL) -> windows_core::HRESULT, pub IsEnabledLanguageProfile: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, *mut super::super::Foundation::BOOL) -> windows_core::HRESULT, pub EnableLanguageProfileByDefault: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, super::super::Foundation::BOOL) -> windows_core::HRESULT, - pub SubstituteKeyboardLayout: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, HKL) -> windows_core::HRESULT, + #[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] + pub SubstituteKeyboardLayout: unsafe extern "system" fn(*mut core::ffi::c_void, *const windows_core::GUID, u16, *const windows_core::GUID, super::Input::KeyboardAndMouse::HKL) -> windows_core::HRESULT, + #[cfg(not(feature = "Win32_UI_Input_KeyboardAndMouse"))] + SubstituteKeyboardLayout: usize, } windows_core::imp::define_interface!(ITfInputProcessorProfilesEx, ITfInputProcessorProfilesEx_Vtbl, 0x892f230f_fe00_4a41_a98e_fcd6de0d35ef); impl core::ops::Deref for ITfInputProcessorProfilesEx { @@ -6793,22 +6829,6 @@ pub const AccDictionary: windows_core::GUID = windows_core::GUID::from_u128(0x65 pub const AccServerDocMgr: windows_core::GUID = windows_core::GUID::from_u128(0x6089a37e_eb8a_482d_bd6f_f9f46904d16d); pub const AccStore: windows_core::GUID = windows_core::GUID::from_u128(0x5440837f_4bff_4ae5_a1b1_7722ecc6332a); pub const DocWrap: windows_core::GUID = windows_core::GUID::from_u128(0xbf426f7e_7a5e_44d6_830c_a390ea9462a3); -#[repr(transparent)] -#[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HKL(pub isize); -impl HKL { - pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 - } -} -impl Default for HKL { - fn default() -> Self { - unsafe { core::mem::zeroed() } - } -} -impl windows_core::TypeKind for HKL { - type TypeKind = windows_core::CopyType; -} pub const MSAAControl: windows_core::GUID = windows_core::GUID::from_u128(0x08cd963f_7a3e_4f5c_9bd8_d692bb043c5b); #[repr(C)] #[derive(Clone, Copy)] @@ -6877,6 +6897,7 @@ impl Default for TF_HALTCOND { } } #[repr(C)] +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub struct TF_INPUTPROCESSORPROFILE { pub dwProfileType: u32, @@ -6884,14 +6905,16 @@ pub struct TF_INPUTPROCESSORPROFILE { pub clsid: windows_core::GUID, pub guidProfile: windows_core::GUID, pub catid: windows_core::GUID, - pub hklSubstitute: HKL, + pub hklSubstitute: super::Input::KeyboardAndMouse::HKL, pub dwCaps: u32, - pub hkl: HKL, + pub hkl: super::Input::KeyboardAndMouse::HKL, pub dwFlags: u32, } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl windows_core::TypeKind for TF_INPUTPROCESSORPROFILE { type TypeKind = windows_core::CopyType; } +#[cfg(feature = "Win32_UI_Input_KeyboardAndMouse")] impl Default for TF_INPUTPROCESSORPROFILE { fn default() -> Self { unsafe { core::mem::zeroed() } diff --git a/crates/libs/windows/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs b/crates/libs/windows/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs index 53d1cb553d..24d0db5a32 100644 --- a/crates/libs/windows/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs +++ b/crates/libs/windows/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs @@ -395,27 +395,29 @@ where (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateDialogIndirectParamA(hinstance: P0, lptemplate: *const DLGTEMPLATE, hwndparent: P1, lpdialogfunc: DLGPROC, dwinitparam: P2) -> super::super::Foundation::HWND +pub unsafe fn CreateDialogIndirectParamA(hinstance: P0, lptemplate: *const DLGTEMPLATE, hwndparent: P1, lpdialogfunc: DLGPROC, dwinitparam: P2) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateDialogIndirectParamA(hinstance : super::super::Foundation:: HINSTANCE, lptemplate : *const DLGTEMPLATE, hwndparent : super::super::Foundation:: HWND, lpdialogfunc : DLGPROC, dwinitparam : super::super::Foundation:: LPARAM) -> super::super::Foundation:: HWND); - CreateDialogIndirectParamA(hinstance.param().abi(), lptemplate, hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()) + let result__ = CreateDialogIndirectParamA(hinstance.param().abi(), lptemplate, hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateDialogIndirectParamW(hinstance: P0, lptemplate: *const DLGTEMPLATE, hwndparent: P1, lpdialogfunc: DLGPROC, dwinitparam: P2) -> super::super::Foundation::HWND +pub unsafe fn CreateDialogIndirectParamW(hinstance: P0, lptemplate: *const DLGTEMPLATE, hwndparent: P1, lpdialogfunc: DLGPROC, dwinitparam: P2) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateDialogIndirectParamW(hinstance : super::super::Foundation:: HINSTANCE, lptemplate : *const DLGTEMPLATE, hwndparent : super::super::Foundation:: HWND, lpdialogfunc : DLGPROC, dwinitparam : super::super::Foundation:: LPARAM) -> super::super::Foundation:: HWND); - CreateDialogIndirectParamW(hinstance.param().abi(), lptemplate, hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()) + let result__ = CreateDialogIndirectParamW(hinstance.param().abi(), lptemplate, hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateDialogParamA(hinstance: P0, lptemplatename: P1, hwndparent: P2, lpdialogfunc: DLGPROC, dwinitparam: P3) -> super::super::Foundation::HWND +pub unsafe fn CreateDialogParamA(hinstance: P0, lptemplatename: P1, hwndparent: P2, lpdialogfunc: DLGPROC, dwinitparam: P3) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -423,10 +425,11 @@ where P3: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateDialogParamA(hinstance : super::super::Foundation:: HINSTANCE, lptemplatename : windows_core::PCSTR, hwndparent : super::super::Foundation:: HWND, lpdialogfunc : DLGPROC, dwinitparam : super::super::Foundation:: LPARAM) -> super::super::Foundation:: HWND); - CreateDialogParamA(hinstance.param().abi(), lptemplatename.param().abi(), hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()) + let result__ = CreateDialogParamA(hinstance.param().abi(), lptemplatename.param().abi(), hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateDialogParamW(hinstance: P0, lptemplatename: P1, hwndparent: P2, lpdialogfunc: DLGPROC, dwinitparam: P3) -> super::super::Foundation::HWND +pub unsafe fn CreateDialogParamW(hinstance: P0, lptemplatename: P1, hwndparent: P2, lpdialogfunc: DLGPROC, dwinitparam: P3) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -434,7 +437,8 @@ where P3: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateDialogParamW(hinstance : super::super::Foundation:: HINSTANCE, lptemplatename : windows_core::PCWSTR, hwndparent : super::super::Foundation:: HWND, lpdialogfunc : DLGPROC, dwinitparam : super::super::Foundation:: LPARAM) -> super::super::Foundation:: HWND); - CreateDialogParamW(hinstance.param().abi(), lptemplatename.param().abi(), hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()) + let result__ = CreateDialogParamW(hinstance.param().abi(), lptemplatename.param().abi(), hwndparent.param().abi(), lpdialogfunc, dwinitparam.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn CreateIcon(hinstance: P0, nwidth: i32, nheight: i32, cplanes: u8, cbitspixel: u8, lpbandbits: *const u8, lpbxorbits: *const u8) -> windows_core::Result @@ -471,7 +475,7 @@ pub unsafe fn CreateIconIndirect(piconinfo: *const ICONINFO) -> windows_core::Re (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateMDIWindowA(lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hinstance: P3, lparam: P4) -> super::super::Foundation::HWND +pub unsafe fn CreateMDIWindowA(lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hinstance: P3, lparam: P4) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -480,10 +484,11 @@ where P4: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateMDIWindowA(lpclassname : windows_core::PCSTR, lpwindowname : windows_core::PCSTR, dwstyle : WINDOW_STYLE, x : i32, y : i32, nwidth : i32, nheight : i32, hwndparent : super::super::Foundation:: HWND, hinstance : super::super::Foundation:: HINSTANCE, lparam : super::super::Foundation:: LPARAM) -> super::super::Foundation:: HWND); - CreateMDIWindowA(lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hinstance.param().abi(), lparam.param().abi()) + let result__ = CreateMDIWindowA(lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hinstance.param().abi(), lparam.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateMDIWindowW(lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hinstance: P3, lparam: P4) -> super::super::Foundation::HWND +pub unsafe fn CreateMDIWindowW(lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hinstance: P3, lparam: P4) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -492,7 +497,8 @@ where P4: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateMDIWindowW(lpclassname : windows_core::PCWSTR, lpwindowname : windows_core::PCWSTR, dwstyle : WINDOW_STYLE, x : i32, y : i32, nwidth : i32, nheight : i32, hwndparent : super::super::Foundation:: HWND, hinstance : super::super::Foundation:: HINSTANCE, lparam : super::super::Foundation:: LPARAM) -> super::super::Foundation:: HWND); - CreateMDIWindowW(lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hinstance.param().abi(), lparam.param().abi()) + let result__ = CreateMDIWindowW(lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hinstance.param().abi(), lparam.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn CreateMenu() -> windows_core::Result { @@ -516,7 +522,7 @@ where CreateResourceIndexer(projectroot.param().abi(), extensiondllpath.param().abi(), ppresourceindexer).ok() } #[inline] -pub unsafe fn CreateWindowExA(dwexstyle: WINDOW_EX_STYLE, lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hmenu: P3, hinstance: P4, lpparam: Option<*const core::ffi::c_void>) -> super::super::Foundation::HWND +pub unsafe fn CreateWindowExA(dwexstyle: WINDOW_EX_STYLE, lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hmenu: P3, hinstance: P4, lpparam: Option<*const core::ffi::c_void>) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -525,10 +531,11 @@ where P4: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateWindowExA(dwexstyle : WINDOW_EX_STYLE, lpclassname : windows_core::PCSTR, lpwindowname : windows_core::PCSTR, dwstyle : WINDOW_STYLE, x : i32, y : i32, nwidth : i32, nheight : i32, hwndparent : super::super::Foundation:: HWND, hmenu : HMENU, hinstance : super::super::Foundation:: HINSTANCE, lpparam : *const core::ffi::c_void) -> super::super::Foundation:: HWND); - CreateWindowExA(dwexstyle, lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hmenu.param().abi(), hinstance.param().abi(), core::mem::transmute(lpparam.unwrap_or(std::ptr::null()))) + let result__ = CreateWindowExA(dwexstyle, lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hmenu.param().abi(), hinstance.param().abi(), core::mem::transmute(lpparam.unwrap_or(std::ptr::null()))); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn CreateWindowExW(dwexstyle: WINDOW_EX_STYLE, lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hmenu: P3, hinstance: P4, lpparam: Option<*const core::ffi::c_void>) -> super::super::Foundation::HWND +pub unsafe fn CreateWindowExW(dwexstyle: WINDOW_EX_STYLE, lpclassname: P0, lpwindowname: P1, dwstyle: WINDOW_STYLE, x: i32, y: i32, nwidth: i32, nheight: i32, hwndparent: P2, hmenu: P3, hinstance: P4, lpparam: Option<*const core::ffi::c_void>) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -537,7 +544,8 @@ where P4: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn CreateWindowExW(dwexstyle : WINDOW_EX_STYLE, lpclassname : windows_core::PCWSTR, lpwindowname : windows_core::PCWSTR, dwstyle : WINDOW_STYLE, x : i32, y : i32, nwidth : i32, nheight : i32, hwndparent : super::super::Foundation:: HWND, hmenu : HMENU, hinstance : super::super::Foundation:: HINSTANCE, lpparam : *const core::ffi::c_void) -> super::super::Foundation:: HWND); - CreateWindowExW(dwexstyle, lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hmenu.param().abi(), hinstance.param().abi(), core::mem::transmute(lpparam.unwrap_or(std::ptr::null()))) + let result__ = CreateWindowExW(dwexstyle, lpclassname.param().abi(), lpwindowname.param().abi(), dwstyle, x, y, nwidth, nheight, hwndparent.param().abi(), hmenu.param().abi(), hinstance.param().abi(), core::mem::transmute(lpparam.unwrap_or(std::ptr::null()))); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn DefDlgProcA(hdlg: P0, msg: u32, wparam: P1, lparam: P2) -> super::super::Foundation::LRESULT @@ -891,16 +899,17 @@ where EnumWindows(lpenumfunc, lparam.param().abi()).ok() } #[inline] -pub unsafe fn FindWindowA(lpclassname: P0, lpwindowname: P1) -> super::super::Foundation::HWND +pub unsafe fn FindWindowA(lpclassname: P0, lpwindowname: P1) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn FindWindowA(lpclassname : windows_core::PCSTR, lpwindowname : windows_core::PCSTR) -> super::super::Foundation:: HWND); - FindWindowA(lpclassname.param().abi(), lpwindowname.param().abi()) + let result__ = FindWindowA(lpclassname.param().abi(), lpwindowname.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn FindWindowExA(hwndparent: P0, hwndchildafter: P1, lpszclass: P2, lpszwindow: P3) -> super::super::Foundation::HWND +pub unsafe fn FindWindowExA(hwndparent: P0, hwndchildafter: P1, lpszclass: P2, lpszwindow: P3) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -908,10 +917,11 @@ where P3: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn FindWindowExA(hwndparent : super::super::Foundation:: HWND, hwndchildafter : super::super::Foundation:: HWND, lpszclass : windows_core::PCSTR, lpszwindow : windows_core::PCSTR) -> super::super::Foundation:: HWND); - FindWindowExA(hwndparent.param().abi(), hwndchildafter.param().abi(), lpszclass.param().abi(), lpszwindow.param().abi()) + let result__ = FindWindowExA(hwndparent.param().abi(), hwndchildafter.param().abi(), lpszclass.param().abi(), lpszwindow.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn FindWindowExW(hwndparent: P0, hwndchildafter: P1, lpszclass: P2, lpszwindow: P3) -> super::super::Foundation::HWND +pub unsafe fn FindWindowExW(hwndparent: P0, hwndchildafter: P1, lpszclass: P2, lpszwindow: P3) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, @@ -919,16 +929,18 @@ where P3: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn FindWindowExW(hwndparent : super::super::Foundation:: HWND, hwndchildafter : super::super::Foundation:: HWND, lpszclass : windows_core::PCWSTR, lpszwindow : windows_core::PCWSTR) -> super::super::Foundation:: HWND); - FindWindowExW(hwndparent.param().abi(), hwndchildafter.param().abi(), lpszclass.param().abi(), lpszwindow.param().abi()) + let result__ = FindWindowExW(hwndparent.param().abi(), hwndchildafter.param().abi(), lpszclass.param().abi(), lpszwindow.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn FindWindowW(lpclassname: P0, lpwindowname: P1) -> super::super::Foundation::HWND +pub unsafe fn FindWindowW(lpclassname: P0, lpwindowname: P1) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn FindWindowW(lpclassname : windows_core::PCWSTR, lpwindowname : windows_core::PCWSTR) -> super::super::Foundation:: HWND); - FindWindowW(lpclassname.param().abi(), lpwindowname.param().abi()) + let result__ = FindWindowW(lpclassname.param().abi(), lpwindowname.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn FlashWindow(hwnd: P0, binvert: P1) -> super::super::Foundation::BOOL @@ -1123,12 +1135,13 @@ where GetDlgCtrlID(hwnd.param().abi()) } #[inline] -pub unsafe fn GetDlgItem(hdlg: P0, niddlgitem: i32) -> super::super::Foundation::HWND +pub unsafe fn GetDlgItem(hdlg: P0, niddlgitem: i32) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn GetDlgItem(hdlg : super::super::Foundation:: HWND, niddlgitem : i32) -> super::super::Foundation:: HWND); - GetDlgItem(hdlg.param().abi(), niddlgitem) + let result__ = GetDlgItem(hdlg.param().abi(), niddlgitem); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn GetDlgItemInt(hdlg: P0, niddlgitem: i32, lptranslated: Option<*mut super::super::Foundation::BOOL>, bsigned: P1) -> u32 @@ -1352,32 +1365,35 @@ where GetMessageW(lpmsg, hwnd.param().abi(), wmsgfiltermin, wmsgfiltermax) } #[inline] -pub unsafe fn GetNextDlgGroupItem(hdlg: P0, hctl: P1, bprevious: P2) -> super::super::Foundation::HWND +pub unsafe fn GetNextDlgGroupItem(hdlg: P0, hctl: P1, bprevious: P2) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn GetNextDlgGroupItem(hdlg : super::super::Foundation:: HWND, hctl : super::super::Foundation:: HWND, bprevious : super::super::Foundation:: BOOL) -> super::super::Foundation:: HWND); - GetNextDlgGroupItem(hdlg.param().abi(), hctl.param().abi(), bprevious.param().abi()) + let result__ = GetNextDlgGroupItem(hdlg.param().abi(), hctl.param().abi(), bprevious.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn GetNextDlgTabItem(hdlg: P0, hctl: P1, bprevious: P2) -> super::super::Foundation::HWND +pub unsafe fn GetNextDlgTabItem(hdlg: P0, hctl: P1, bprevious: P2) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, P2: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn GetNextDlgTabItem(hdlg : super::super::Foundation:: HWND, hctl : super::super::Foundation:: HWND, bprevious : super::super::Foundation:: BOOL) -> super::super::Foundation:: HWND); - GetNextDlgTabItem(hdlg.param().abi(), hctl.param().abi(), bprevious.param().abi()) + let result__ = GetNextDlgTabItem(hdlg.param().abi(), hctl.param().abi(), bprevious.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn GetParent(hwnd: P0) -> super::super::Foundation::HWND +pub unsafe fn GetParent(hwnd: P0) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn GetParent(hwnd : super::super::Foundation:: HWND) -> super::super::Foundation:: HWND); - GetParent(hwnd.param().abi()) + let result__ = GetParent(hwnd.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn GetPhysicalCursorPos(lppoint: *mut super::super::Foundation::POINT) -> windows_core::Result<()> { @@ -1480,20 +1496,22 @@ where GetTitleBarInfo(hwnd.param().abi(), pti).ok() } #[inline] -pub unsafe fn GetTopWindow(hwnd: P0) -> super::super::Foundation::HWND +pub unsafe fn GetTopWindow(hwnd: P0) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn GetTopWindow(hwnd : super::super::Foundation:: HWND) -> super::super::Foundation:: HWND); - GetTopWindow(hwnd.param().abi()) + let result__ = GetTopWindow(hwnd.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] -pub unsafe fn GetWindow(hwnd: P0, ucmd: GET_WINDOW_CMD) -> super::super::Foundation::HWND +pub unsafe fn GetWindow(hwnd: P0, ucmd: GET_WINDOW_CMD) -> windows_core::Result where P0: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn GetWindow(hwnd : super::super::Foundation:: HWND, ucmd : GET_WINDOW_CMD) -> super::super::Foundation:: HWND); - GetWindow(hwnd.param().abi(), ucmd) + let result__ = GetWindow(hwnd.param().abi(), ucmd); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn GetWindowDisplayAffinity(hwnd: P0, pdwaffinity: *mut u32) -> windows_core::Result<()> @@ -2918,13 +2936,14 @@ pub unsafe fn SetMessageQueue(cmessagesmax: i32) -> super::super::Foundation::BO SetMessageQueue(cmessagesmax) } #[inline] -pub unsafe fn SetParent(hwndchild: P0, hwndnewparent: P1) -> super::super::Foundation::HWND +pub unsafe fn SetParent(hwndchild: P0, hwndnewparent: P1) -> windows_core::Result where P0: windows_core::Param, P1: windows_core::Param, { windows_targets::link!("user32.dll" "system" fn SetParent(hwndchild : super::super::Foundation:: HWND, hwndnewparent : super::super::Foundation:: HWND) -> super::super::Foundation:: HWND); - SetParent(hwndchild.param().abi(), hwndnewparent.param().abi()) + let result__ = SetParent(hwndchild.param().abi(), hwndnewparent.param().abi()); + (!result__.is_invalid()).then(|| result__).ok_or_else(windows_core::Error::from_win32) } #[inline] pub unsafe fn SetPhysicalCursorPos(x: i32, y: i32) -> windows_core::Result<()> { @@ -3993,6 +4012,7 @@ pub const IDC_SIZENESW: windows_core::PCWSTR = windows_core::PCWSTR(32643u16 as pub const IDC_SIZENS: windows_core::PCWSTR = windows_core::PCWSTR(32645u16 as _); pub const IDC_SIZENWSE: windows_core::PCWSTR = windows_core::PCWSTR(32642u16 as _); pub const IDC_SIZEWE: windows_core::PCWSTR = windows_core::PCWSTR(32644u16 as _); +pub const IDC_STATIC: i32 = -1i32; pub const IDC_UPARROW: windows_core::PCWSTR = windows_core::PCWSTR(32516u16 as _); pub const IDC_WAIT: windows_core::PCWSTR = windows_core::PCWSTR(32514u16 as _); pub const IDHELP: MESSAGEBOX_RESULT = MESSAGEBOX_RESULT(9i32); @@ -4563,9 +4583,11 @@ pub const RT_DIALOG: windows_core::PCWSTR = windows_core::PCWSTR(5u16 as _); pub const RT_DLGINCLUDE: windows_core::PCWSTR = windows_core::PCWSTR(17u16 as _); pub const RT_FONT: windows_core::PCWSTR = windows_core::PCWSTR(8u16 as _); pub const RT_FONTDIR: windows_core::PCWSTR = windows_core::PCWSTR(7u16 as _); +pub const RT_GROUP_CURSOR: windows_core::PCWSTR = windows_core::PCWSTR(12u16 as _); +pub const RT_GROUP_ICON: windows_core::PCWSTR = windows_core::PCWSTR(14u16 as _); pub const RT_HTML: windows_core::PCWSTR = windows_core::PCWSTR(23u16 as _); pub const RT_ICON: windows_core::PCWSTR = windows_core::PCWSTR(3u16 as _); -pub const RT_MANIFEST: u32 = 24u32; +pub const RT_MANIFEST: windows_core::PCWSTR = windows_core::PCWSTR(24u16 as _); pub const RT_MENU: windows_core::PCWSTR = windows_core::PCWSTR(4u16 as _); pub const RT_MESSAGETABLE: windows_core::PCWSTR = windows_core::PCWSTR(11u16 as _); pub const RT_PLUGPLAY: windows_core::PCWSTR = windows_core::PCWSTR(19u16 as _); @@ -5200,6 +5222,7 @@ pub const WINEVENT_SKIPOWNPROCESS: u32 = 2u32; pub const WINEVENT_SKIPOWNTHREAD: u32 = 1u32; pub const WINSTA_ACCESSCLIPBOARD: i32 = 4i32; pub const WINSTA_ACCESSGLOBALATOMS: i32 = 32i32; +pub const WINSTA_ALL_ACCESS: i32 = 895i32; pub const WINSTA_CREATEDESKTOP: i32 = 8i32; pub const WINSTA_ENUMDESKTOPS: i32 = 1i32; pub const WINSTA_ENUMERATE: i32 = 256i32; @@ -5545,6 +5568,7 @@ pub const WVR_ALIGNLEFT: u32 = 32u32; pub const WVR_ALIGNRIGHT: u32 = 128u32; pub const WVR_ALIGNTOP: u32 = 16u32; pub const WVR_HREDRAW: u32 = 256u32; +pub const WVR_REDRAW: u32 = 768u32; pub const WVR_VALIDRECTS: u32 = 1024u32; pub const WVR_VREDRAW: u32 = 512u32; pub const XBUTTON1: u16 = 1u16; @@ -7596,7 +7620,7 @@ pub struct CREATESTRUCTA { pub style: i32, pub lpszName: windows_core::PCSTR, pub lpszClass: windows_core::PCSTR, - pub dwExStyle: u32, + pub dwExStyle: WINDOW_EX_STYLE, } impl windows_core::TypeKind for CREATESTRUCTA { type TypeKind = windows_core::CopyType; @@ -7620,7 +7644,7 @@ pub struct CREATESTRUCTW { pub style: i32, pub lpszName: windows_core::PCWSTR, pub lpszClass: windows_core::PCWSTR, - pub dwExStyle: u32, + pub dwExStyle: WINDOW_EX_STYLE, } impl windows_core::TypeKind for CREATESTRUCTW { type TypeKind = windows_core::CopyType; @@ -8156,13 +8180,14 @@ impl Default for GUITHREADINFO { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HACCEL(pub isize); +pub struct HACCEL(pub *mut core::ffi::c_void); impl HACCEL { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HACCEL { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DestroyAcceleratorTable(*self); @@ -8195,13 +8220,14 @@ impl Default for HARDWAREHOOKSTRUCT { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HCURSOR(pub isize); +pub struct HCURSOR(pub *mut core::ffi::c_void); impl HCURSOR { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HCURSOR { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DestroyCursor(*self); @@ -8231,6 +8257,7 @@ impl HDEVNOTIFY { } } impl windows_core::Free for HDEVNOTIFY { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = UnregisterDeviceNotification(*self); @@ -8247,10 +8274,10 @@ impl windows_core::TypeKind for HDEVNOTIFY { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HDWP(pub isize); +pub struct HDWP(pub *mut core::ffi::c_void); impl HDWP { pub fn is_invalid(&self) -> bool { - self.0 == 0 + self.0.is_null() } } impl Default for HDWP { @@ -8263,13 +8290,14 @@ impl windows_core::TypeKind for HDWP { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HHOOK(pub isize); +pub struct HHOOK(pub *mut core::ffi::c_void); impl HHOOK { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HHOOK { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = UnhookWindowsHookEx(*self); @@ -8286,13 +8314,14 @@ impl windows_core::TypeKind for HHOOK { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HICON(pub isize); +pub struct HICON(pub *mut core::ffi::c_void); impl HICON { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HICON { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DestroyIcon(*self); @@ -8309,13 +8338,14 @@ impl windows_core::TypeKind for HICON { } #[repr(transparent)] #[derive(Clone, Copy, Debug, PartialEq, Eq)] -pub struct HMENU(pub isize); +pub struct HMENU(pub *mut core::ffi::c_void); impl HMENU { pub fn is_invalid(&self) -> bool { - self.0 == -1 || self.0 == 0 + self.0 == -1 as _ || self.0 == 0 as _ } } impl windows_core::Free for HMENU { + #[inline] unsafe fn free(&mut self) { if !self.is_invalid() { _ = DestroyMenu(*self); diff --git a/crates/samples/windows-sys/create_window/src/main.rs b/crates/samples/windows-sys/create_window/src/main.rs index 085c1b8282..097db44294 100644 --- a/crates/samples/windows-sys/create_window/src/main.rs +++ b/crates/samples/windows-sys/create_window/src/main.rs @@ -6,20 +6,20 @@ use windows_sys::{ fn main() { unsafe { let instance = GetModuleHandleA(std::ptr::null()); - debug_assert!(instance != 0); + debug_assert!(!instance.is_null()); let window_class = s!("window"); let wc = WNDCLASSA { - hCursor: LoadCursorW(0, IDC_ARROW), + hCursor: LoadCursorW(core::ptr::null_mut(), IDC_ARROW), hInstance: instance, lpszClassName: window_class, style: CS_HREDRAW | CS_VREDRAW, lpfnWndProc: Some(wndproc), cbClsExtra: 0, cbWndExtra: 0, - hIcon: 0, - hbrBackground: 0, + hIcon: core::ptr::null_mut(), + hbrBackground: core::ptr::null_mut(), lpszMenuName: std::ptr::null(), }; @@ -35,15 +35,15 @@ fn main() { CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, - 0, - 0, + core::ptr::null_mut(), + core::ptr::null_mut(), instance, std::ptr::null(), ); let mut message = std::mem::zeroed(); - while GetMessageA(&mut message, 0, 0, 0) != 0 { + while GetMessageA(&mut message, core::ptr::null_mut(), 0, 0) != 0 { DispatchMessageA(&message); } } diff --git a/crates/samples/windows-sys/delay_load/src/main.rs b/crates/samples/windows-sys/delay_load/src/main.rs index a047d31754..6f6691e3fd 100644 --- a/crates/samples/windows-sys/delay_load/src/main.rs +++ b/crates/samples/windows-sys/delay_load/src/main.rs @@ -4,9 +4,13 @@ use windows_sys::{core::*, Win32::Foundation::*, Win32::System::LibraryLoader::* /// /// The `PCSTR` parameters need to be valid for reads up until and including the next `\0`. pub unsafe fn delay_load(library: PCSTR, function: PCSTR) -> Option { - let library = LoadLibraryExA(library, 0, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS); + let library = LoadLibraryExA( + library, + core::ptr::null_mut(), + LOAD_LIBRARY_SEARCH_DEFAULT_DIRS, + ); - if library == 0 { + if library.is_null() { return None; } diff --git a/crates/samples/windows-sys/message_box/src/main.rs b/crates/samples/windows-sys/message_box/src/main.rs index f397631ff0..f33cff6e99 100644 --- a/crates/samples/windows-sys/message_box/src/main.rs +++ b/crates/samples/windows-sys/message_box/src/main.rs @@ -2,7 +2,14 @@ use windows_sys::{core::*, Win32::UI::Shell::*, Win32::UI::WindowsAndMessaging:: fn main() { unsafe { - MessageBoxA(0, s!("Ansi"), s!("World"), MB_OK); - ShellMessageBoxW(0, 0, w!("Wide"), w!("World"), MB_ICONERROR); + MessageBoxA(core::ptr::null_mut(), s!("Ansi"), s!("World"), MB_OK); + + ShellMessageBoxW( + core::ptr::null_mut(), + core::ptr::null_mut(), + w!("Wide"), + w!("World"), + MB_ICONERROR, + ); } } diff --git a/crates/samples/windows-sys/privileges/src/main.rs b/crates/samples/windows-sys/privileges/src/main.rs index 5961d6543c..00810f708f 100644 --- a/crates/samples/windows-sys/privileges/src/main.rs +++ b/crates/samples/windows-sys/privileges/src/main.rs @@ -4,7 +4,7 @@ use windows_sys::{ fn main() { unsafe { - let mut token = 0; + let mut token = core::ptr::null_mut(); OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &mut token); let mut bytes_required = 0; diff --git a/crates/samples/windows/consent/src/main.rs b/crates/samples/windows/consent/src/main.rs index 21a03de64c..f70c5a684f 100644 --- a/crates/samples/windows/consent/src/main.rs +++ b/crates/samples/windows/consent/src/main.rs @@ -7,7 +7,7 @@ fn main() -> Result<()> { unsafe { let interop = factory::()?; - let window = HWND(0); // <== replace with your app's window handle + let window = HWND::default(); // <== replace with your app's window handle let operation: IAsyncOperation = interop.RequestVerificationForWindowAsync(window, h!("Hello from Rust"))?; diff --git a/crates/samples/windows/create_window/src/main.rs b/crates/samples/windows/create_window/src/main.rs index 73c097968b..35dc18b344 100644 --- a/crates/samples/windows/create_window/src/main.rs +++ b/crates/samples/windows/create_window/src/main.rs @@ -6,8 +6,6 @@ use windows::{ fn main() -> Result<()> { unsafe { let instance = GetModuleHandleA(None)?; - debug_assert!(instance.0 != 0); - let window_class = s!("window"); let wc = WNDCLASSA { @@ -36,7 +34,7 @@ fn main() -> Result<()> { None, instance, None, - ); + )?; let mut message = MSG::default(); diff --git a/crates/samples/windows/dcomp/src/main.rs b/crates/samples/windows/dcomp/src/main.rs index 4bc08aaf61..bf9c685e06 100644 --- a/crates/samples/windows/dcomp/src/main.rs +++ b/crates/samples/windows/dcomp/src/main.rs @@ -103,7 +103,7 @@ impl Window { CoCreateInstance(&UIAnimationTransitionLibrary2, None, CLSCTX_INPROC_SERVER)?; Ok(Window { - handle: HWND(0), + handle: Default::default(), dpi: (0.0, 0.0), format: create_text_format()?, image: create_image()?, @@ -446,13 +446,13 @@ impl Window { None, instance, Some(self as *mut _ as _), - ); + )?; - debug_assert!(handle.0 != 0); + debug_assert!(!handle.is_invalid()); debug_assert!(handle == self.handle); let mut message = MSG::default(); - while GetMessageA(&mut message, HWND(0), 0, 0).into() { + while GetMessageA(&mut message, HWND::default(), 0, 0).into() { DispatchMessageA(&message); } diff --git a/crates/samples/windows/direct2d/src/main.rs b/crates/samples/windows/direct2d/src/main.rs index b1ae0b0eeb..32757d457d 100644 --- a/crates/samples/windows/direct2d/src/main.rs +++ b/crates/samples/windows/direct2d/src/main.rs @@ -83,7 +83,7 @@ impl Window { }; Ok(Window { - handle: HWND(0), + handle: Default::default(), factory, dxfactory, style, @@ -125,7 +125,7 @@ impl Window { target.EndDraw(None, None)?; } - if let Err(error) = self.present(1, 0) { + if let Err(error) = self.present(1, DXGI_PRESENT(0)) { if error.code() == DXGI_STATUS_OCCLUDED { self.occlusion = unsafe { self.dxfactory @@ -152,7 +152,7 @@ impl Window { self.shadow = None; } - fn present(&self, sync: u32, flags: u32) -> Result<()> { + fn present(&self, sync: u32, flags: DXGI_PRESENT) -> Result<()> { unsafe { self.swapchain.as_ref().unwrap().Present(sync, flags).ok() } } @@ -320,7 +320,7 @@ impl Window { if unsafe { swapchain - .ResizeBuffers(0, 0, 0, DXGI_FORMAT_UNKNOWN, 0) + .ResizeBuffers(0, 0, 0, DXGI_FORMAT_UNKNOWN, DXGI_SWAP_CHAIN_FLAG(0)) .is_ok() } { create_swapchain_bitmap(swapchain, target)?; @@ -379,7 +379,6 @@ impl Window { fn run(&mut self) -> Result<()> { unsafe { let instance = GetModuleHandleA(None)?; - debug_assert!(instance.0 != 0); let window_class = s!("window"); let wc = WNDCLASSA { @@ -408,9 +407,9 @@ impl Window { None, instance, Some(self as *mut _ as _), - ); + )?; - debug_assert!(handle.0 != 0); + debug_assert!(!handle.is_invalid()); debug_assert!(handle == self.handle); let mut message = MSG::default(); diff --git a/crates/samples/windows/direct3d12/src/main.rs b/crates/samples/windows/direct3d12/src/main.rs index 3e0b2d323e..05edb03e9c 100644 --- a/crates/samples/windows/direct3d12/src/main.rs +++ b/crates/samples/windows/direct3d12/src/main.rs @@ -100,7 +100,7 @@ where instance, Some(&mut sample as *mut _ as _), ) - }; + }?; sample.bind_to_window(&hwnd)?; unsafe { _ = ShowWindow(hwnd, SW_SHOW) }; @@ -179,11 +179,9 @@ extern "system" fn wndproc( fn get_hardware_adapter(factory: &IDXGIFactory4) -> Result { for i in 0.. { let adapter = unsafe { factory.EnumAdapters1(i)? }; + let desc = unsafe { adapter.GetDesc1()? }; - let mut desc = Default::default(); - unsafe { adapter.GetDesc1(&mut desc)? }; - - if (DXGI_ADAPTER_FLAG(desc.Flags as i32) & DXGI_ADAPTER_FLAG_SOFTWARE) + if (DXGI_ADAPTER_FLAG(desc.Flags as _) & DXGI_ADAPTER_FLAG_SOFTWARE) != DXGI_ADAPTER_FLAG_NONE { // Don't select the Basic Render Driver adapter. If you want a @@ -415,7 +413,9 @@ mod d3d12_hello_triangle { unsafe { resources.command_queue.ExecuteCommandLists(&[command_list]) }; // Present the frame. - unsafe { resources.swap_chain.Present(1, 0) }.ok().unwrap(); + unsafe { resources.swap_chain.Present(1, DXGI_PRESENT(0)) } + .ok() + .unwrap(); wait_for_previous_frame(resources); } @@ -515,7 +515,7 @@ mod d3d12_hello_triangle { let dxgi_factory_flags = if cfg!(debug_assertions) { DXGI_CREATE_FACTORY_DEBUG } else { - 0 + DXGI_CREATE_FACTORY_FLAGS(0) }; let dxgi_factory: IDXGIFactory4 = unsafe { CreateDXGIFactory2(dxgi_factory_flags) }?; diff --git a/crates/samples/windows/uiautomation/src/main.rs b/crates/samples/windows/uiautomation/src/main.rs index ec78ab20d3..ba00d741d2 100644 --- a/crates/samples/windows/uiautomation/src/main.rs +++ b/crates/samples/windows/uiautomation/src/main.rs @@ -6,7 +6,7 @@ use windows::{ fn main() -> Result<()> { unsafe { CoInitializeEx(None, COINIT_MULTITHREADED).ok()?; - let window = FindWindowA(None, s!("Calculator")); + let window = FindWindowA(None, s!("Calculator"))?; // Start with COM API let automation: IUIAutomation = CoCreateInstance(&CUIAutomation, None, CLSCTX_ALL)?; diff --git a/crates/targets/aarch64_gnullvm/lib/libwindows.0.52.0.a b/crates/targets/aarch64_gnullvm/lib/libwindows.0.52.0.a index e03a9b1014..9fbed48529 100644 Binary files a/crates/targets/aarch64_gnullvm/lib/libwindows.0.52.0.a and b/crates/targets/aarch64_gnullvm/lib/libwindows.0.52.0.a differ diff --git a/crates/targets/aarch64_msvc/lib/windows.0.52.0.lib b/crates/targets/aarch64_msvc/lib/windows.0.52.0.lib index 23575c0e58..d007e4de70 100644 Binary files a/crates/targets/aarch64_msvc/lib/windows.0.52.0.lib and b/crates/targets/aarch64_msvc/lib/windows.0.52.0.lib differ diff --git a/crates/targets/baseline/ncrypt.dll.c b/crates/targets/baseline/ncrypt.dll.c index cc38ef46e5..6ce8f40e25 100644 --- a/crates/targets/baseline/ncrypt.dll.c +++ b/crates/targets/baseline/ncrypt.dll.c @@ -1,3 +1,5 @@ +void __stdcall GetKeyStorageInterface(int p0, int p1, int p2) {} +void __stdcall GetSChannelInterface(int p0, int p1, int p2) {} void __stdcall NCryptCloseProtectionDescriptor(int p0) {} void __stdcall NCryptCreateClaim(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} void __stdcall NCryptCreatePersistedKey(int p0, int p1, int p2, int p3, int p4, int p5) {} @@ -37,3 +39,48 @@ void __stdcall NCryptTranslateHandle(int p0, int p1, int p2, int p3, int p4, int void __stdcall NCryptUnprotectSecret(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} void __stdcall NCryptVerifyClaim(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} void __stdcall NCryptVerifySignature(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslChangeNotify(int p0, int p1) {} +void __stdcall SslComputeClientAuthHash(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} +void __stdcall SslComputeEapKeyBlock(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} +void __stdcall SslComputeFinishedHash(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslComputeSessionHash(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslCreateClientAuthHash(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslCreateEphemeralKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} +void __stdcall SslCreateHandshakeHash(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslDecrementProviderReferenceCount(int p0) {} +void __stdcall SslDecryptPacket(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall SslDuplicateTranscriptHash(int p0, int p1, int p2, int p3) {} +void __stdcall SslEncryptPacket(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10) {} +void __stdcall SslEnumCipherSuites(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslEnumCipherSuitesEx(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslEnumEccCurves(int p0, int p1, int p2, int p3) {} +void __stdcall SslEnumProtocolProviders(int p0, int p1, int p2) {} +void __stdcall SslExpandBinderKey(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslExpandExporterMasterKey(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslExpandPreSharedKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslExpandResumptionMasterKey(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslExpandTrafficKeys(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslExpandWriteKey(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslExportKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslExportKeyingMaterial(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall SslExtractEarlyKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslExtractHandshakeKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslExtractMasterKey(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslFreeBuffer(int p0) {} +void __stdcall SslFreeObject(int p0, int p1) {} +void __stdcall SslGenerateMasterKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10) {} +void __stdcall SslGeneratePreMasterKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall SslGenerateSessionKeys(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslGetCipherSuitePRFHashAlgorithm(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslGetKeyProperty(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslGetProviderProperty(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslHashHandshake(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall SslImportKey(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslImportMasterKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} +void __stdcall SslIncrementProviderReferenceCount(int p0) {} +void __stdcall SslLookupCipherLengths(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall SslLookupCipherSuiteInfo(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall SslOpenPrivateKey(int p0, int p1, int p2, int p3) {} +void __stdcall SslOpenProvider(int p0, int p1, int p2) {} +void __stdcall SslSignHash(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} +void __stdcall SslVerifySignature(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} diff --git a/crates/targets/baseline/ntdll.dll.c b/crates/targets/baseline/ntdll.dll.c index 8919c24c3d..7a9940a1c2 100644 --- a/crates/targets/baseline/ntdll.dll.c +++ b/crates/targets/baseline/ntdll.dll.c @@ -11,43 +11,76 @@ void __stdcall NtAccessCheckByTypeResultListAndAuditAlarm(int p0, int p1, int p2 void __stdcall NtAccessCheckByTypeResultListAndAuditAlarmByHandle(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11, int p12, int p13, int p14, int p15, int p16) {} void __stdcall NtAdjustGroupsToken(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtAdjustPrivilegesToken(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall NtAllocateLocallyUniqueId(int p0) {} void __stdcall NtAllocateVirtualMemory(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall NtAllocateVirtualMemoryEx(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} void __stdcall NtCancelIoFileEx(int p0, int p1, int p2) {} +void __stdcall NtCancelTimer(int p0, int p1) {} void __stdcall NtClose(int p0) {} void __stdcall NtCloseObjectAuditAlarm(int p0, int p1, int p2) {} void __stdcall NtCommitComplete(int p0, int p1) {} void __stdcall NtCommitEnlistment(int p0, int p1) {} +void __stdcall NtCommitRegistryTransaction(int p0, int p1) {} void __stdcall NtCommitTransaction(int p0, int p1) {} +void __stdcall NtCreateDirectoryObject(int p0, int p1, int p2) {} void __stdcall NtCreateEnlistment(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} +void __stdcall NtCreateEvent(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtCreateFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10) {} +void __stdcall NtCreateKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall NtCreateKeyTransacted(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7) {} +void __stdcall NtCreateRegistryTransaction(int p0, int p1, int p2, int p3) {} void __stdcall NtCreateResourceManager(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} void __stdcall NtCreateSection(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} void __stdcall NtCreateSectionEx(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} +void __stdcall NtCreateTimer(int p0, int p1, int p2, int p3) {} void __stdcall NtCreateTransaction(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall NtCreateTransactionManager(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall NtDeleteFile(int p0) {} +void __stdcall NtDeleteKey(int p0) {} void __stdcall NtDeleteObjectAuditAlarm(int p0, int p1, int p2) {} +void __stdcall NtDeleteValueKey(int p0, int p1) {} void __stdcall NtDeviceIoControlFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall NtDisplayString(int p0) {} +void __stdcall NtDuplicateObject(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} void __stdcall NtDuplicateToken(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall NtEnumerateKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtEnumerateTransactionObject(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtEnumerateValueKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtFilterToken(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall NtFlushBuffersFile(int p0, int p1) {} void __stdcall NtFlushBuffersFileEx(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtFlushKey(int p0) {} +void __stdcall NtFlushVirtualMemory(int p0, int p1, int p2, int p3) {} void __stdcall NtFreeVirtualMemory(int p0, int p1, int p2, int p3) {} void __stdcall NtFsControlFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall NtGetNotificationResourceManager(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} void __stdcall NtImpersonateAnonymousToken(int p0) {} +void __stdcall NtLoadDriver(int p0) {} void __stdcall NtLockFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall NtMakeTemporaryObject(int p0) {} void __stdcall NtManagePartition(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtMapViewOfSection(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall NtNotifyChangeKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall NtNotifyChangeMultipleKeys(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11) {} +void __stdcall NtOpenDirectoryObject(int p0, int p1, int p2) {} void __stdcall NtOpenEnlistment(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtOpenEvent(int p0, int p1, int p2) {} void __stdcall NtOpenFile(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall NtOpenKey(int p0, int p1, int p2) {} +void __stdcall NtOpenKeyEx(int p0, int p1, int p2, int p3) {} +void __stdcall NtOpenKeyTransacted(int p0, int p1, int p2, int p3) {} +void __stdcall NtOpenKeyTransactedEx(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtOpenObjectAuditAlarm(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11) {} void __stdcall NtOpenProcess(int p0, int p1, int p2, int p3) {} void __stdcall NtOpenProcessToken(int p0, int p1, int p2) {} void __stdcall NtOpenProcessTokenEx(int p0, int p1, int p2, int p3) {} void __stdcall NtOpenRegistryTransaction(int p0, int p1, int p2) {} void __stdcall NtOpenResourceManager(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtOpenSection(int p0, int p1, int p2) {} +void __stdcall NtOpenSymbolicLinkObject(int p0, int p1, int p2) {} void __stdcall NtOpenThreadToken(int p0, int p1, int p2, int p3) {} void __stdcall NtOpenThreadTokenEx(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtOpenTimer(int p0, int p1, int p2) {} void __stdcall NtOpenTransaction(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtOpenTransactionManager(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtPowerInformation(int p0, int p1, int p2, int p3, int p4) {} @@ -62,6 +95,9 @@ void __stdcall NtPropagationComplete(int p0, int p1, int p2, int p3) {} void __stdcall NtPropagationFailed(int p0, int p1, int p2) {} void __stdcall NtQueryDirectoryFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10) {} void __stdcall NtQueryDirectoryFileEx(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall NtQueryDirectoryObject(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall NtQueryEaFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} +void __stdcall NtQueryFullAttributesFile(int p0, int p1) {} void __stdcall NtQueryInformationByName(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtQueryInformationEnlistment(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtQueryInformationFile(int p0, int p1, int p2, int p3, int p4) {} @@ -71,13 +107,16 @@ void __stdcall NtQueryInformationThread(int p0, int p1, int p2, int p3, int p4) void __stdcall NtQueryInformationToken(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtQueryInformationTransaction(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtQueryInformationTransactionManager(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtQueryKey(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtQueryMultipleValueKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtQueryObject(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtQueryQuotaInformationFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} void __stdcall NtQuerySecurityObject(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtQuerySymbolicLinkObject(int p0, int p1, int p2) {} void __stdcall NtQuerySystemInformation(int p0, int p1, int p2, int p3) {} void __stdcall NtQuerySystemTime(int p0) {} void __stdcall NtQueryTimerResolution(int p0, int p1, int p2) {} +void __stdcall NtQueryValueKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtQueryVirtualMemory(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtQueryVolumeInformationFile(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtReadFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} @@ -88,11 +127,16 @@ void __stdcall NtRecoverTransactionManager(int p0) {} void __stdcall NtRegisterProtocolAddressInformation(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtRenameKey(int p0, int p1) {} void __stdcall NtRenameTransactionManager(int p0, int p1) {} +void __stdcall NtRestoreKey(int p0, int p1, int p2) {} void __stdcall NtRollbackComplete(int p0, int p1) {} void __stdcall NtRollbackEnlistment(int p0, int p1) {} void __stdcall NtRollbackRegistryTransaction(int p0, int p1) {} void __stdcall NtRollbackTransaction(int p0, int p1) {} void __stdcall NtRollforwardTransactionManager(int p0, int p1) {} +void __stdcall NtSaveKey(int p0, int p1) {} +void __stdcall NtSaveKeyEx(int p0, int p1, int p2) {} +void __stdcall NtSetEaFile(int p0, int p1, int p2, int p3) {} +void __stdcall NtSetEvent(int p0, int p1) {} void __stdcall NtSetInformationEnlistment(int p0, int p1, int p2, int p3) {} void __stdcall NtSetInformationFile(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtSetInformationKey(int p0, int p1, int p2, int p3) {} @@ -104,9 +148,15 @@ void __stdcall NtSetInformationTransactionManager(int p0, int p1, int p2, int p3 void __stdcall NtSetInformationVirtualMemory(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtSetQuotaInformationFile(int p0, int p1, int p2, int p3) {} void __stdcall NtSetSecurityObject(int p0, int p1, int p2) {} +void __stdcall NtSetTimer(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall NtSetTimerEx(int p0, int p1, int p2, int p3) {} +void __stdcall NtSetValueKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall NtSetVolumeInformationFile(int p0, int p1, int p2, int p3, int p4) {} void __stdcall NtSinglePhaseReject(int p0, int p1) {} +void __stdcall NtTerminateProcess(int p0, int p1) {} +void __stdcall NtUnloadDriver(int p0) {} void __stdcall NtUnlockFile(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall NtUnmapViewOfSection(int p0, int p1) {} void __stdcall NtWaitForSingleObject(int p0, int p1, int p2) {} void __stdcall NtWriteFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} void __stdcall PfxFindPrefix(int p0, int p1) {} @@ -423,11 +473,19 @@ void __stdcall RtlxAnsiStringToUnicodeSize(int p0) {} void __stdcall RtlxOemStringToUnicodeSize(int p0) {} void __stdcall RtlxUnicodeStringToAnsiSize(int p0) {} void __stdcall RtlxUnicodeStringToOemSize(int p0) {} +void __stdcall ZwAccessCheckAndAuditAlarm(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10) {} +void __stdcall ZwAccessCheckByTypeAndAuditAlarm(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11, int p12, int p13, int p14, int p15) {} +void __stdcall ZwAccessCheckByTypeResultListAndAuditAlarm(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11, int p12, int p13, int p14, int p15) {} +void __stdcall ZwAccessCheckByTypeResultListAndAuditAlarmByHandle(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11, int p12, int p13, int p14, int p15, int p16) {} +void __stdcall ZwAdjustGroupsToken(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall ZwAdjustPrivilegesToken(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwAllocateLocallyUniqueId(int p0) {} void __stdcall ZwAllocateVirtualMemory(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwAllocateVirtualMemoryEx(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall ZwCancelIoFileEx(int p0, int p1, int p2) {} void __stdcall ZwCancelTimer(int p0, int p1) {} void __stdcall ZwClose(int p0) {} +void __stdcall ZwCloseObjectAuditAlarm(int p0, int p1, int p2) {} void __stdcall ZwCommitComplete(int p0, int p1) {} void __stdcall ZwCommitEnlistment(int p0, int p1) {} void __stdcall ZwCommitRegistryTransaction(int p0, int p1) {} @@ -441,11 +499,13 @@ void __stdcall ZwCreateKeyTransacted(int p0, int p1, int p2, int p3, int p4, int void __stdcall ZwCreateRegistryTransaction(int p0, int p1, int p2, int p3) {} void __stdcall ZwCreateResourceManager(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} void __stdcall ZwCreateSection(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall ZwCreateSectionEx(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} void __stdcall ZwCreateTimer(int p0, int p1, int p2, int p3) {} void __stdcall ZwCreateTransaction(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall ZwCreateTransactionManager(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwDeleteFile(int p0) {} void __stdcall ZwDeleteKey(int p0) {} +void __stdcall ZwDeleteObjectAuditAlarm(int p0, int p1, int p2) {} void __stdcall ZwDeleteValueKey(int p0, int p1) {} void __stdcall ZwDeviceIoControlFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall ZwDisplayString(int p0) {} @@ -454,6 +514,7 @@ void __stdcall ZwDuplicateToken(int p0, int p1, int p2, int p3, int p4, int p5) void __stdcall ZwEnumerateKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwEnumerateTransactionObject(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwEnumerateValueKey(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall ZwFilterToken(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwFlushBuffersFile(int p0, int p1) {} void __stdcall ZwFlushBuffersFileEx(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwFlushKey(int p0) {} @@ -461,11 +522,14 @@ void __stdcall ZwFlushVirtualMemory(int p0, int p1, int p2, int p3) {} void __stdcall ZwFreeVirtualMemory(int p0, int p1, int p2, int p3) {} void __stdcall ZwFsControlFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall ZwGetNotificationResourceManager(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} +void __stdcall ZwImpersonateAnonymousToken(int p0) {} void __stdcall ZwLoadDriver(int p0) {} void __stdcall ZwLockFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall ZwMakeTemporaryObject(int p0) {} +void __stdcall ZwManagePartition(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwMapViewOfSection(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} void __stdcall ZwNotifyChangeKey(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall ZwNotifyChangeMultipleKeys(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11) {} void __stdcall ZwOpenDirectoryObject(int p0, int p1, int p2) {} void __stdcall ZwOpenEnlistment(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwOpenEvent(int p0, int p1, int p2) {} @@ -474,11 +538,15 @@ void __stdcall ZwOpenKey(int p0, int p1, int p2) {} void __stdcall ZwOpenKeyEx(int p0, int p1, int p2, int p3) {} void __stdcall ZwOpenKeyTransacted(int p0, int p1, int p2, int p3) {} void __stdcall ZwOpenKeyTransactedEx(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall ZwOpenObjectAuditAlarm(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10, int p11) {} void __stdcall ZwOpenProcess(int p0, int p1, int p2, int p3) {} +void __stdcall ZwOpenProcessToken(int p0, int p1, int p2) {} void __stdcall ZwOpenProcessTokenEx(int p0, int p1, int p2, int p3) {} +void __stdcall ZwOpenRegistryTransaction(int p0, int p1, int p2) {} void __stdcall ZwOpenResourceManager(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwOpenSection(int p0, int p1, int p2) {} void __stdcall ZwOpenSymbolicLinkObject(int p0, int p1, int p2) {} +void __stdcall ZwOpenThreadToken(int p0, int p1, int p2, int p3) {} void __stdcall ZwOpenThreadTokenEx(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwOpenTimer(int p0, int p1, int p2) {} void __stdcall ZwOpenTransaction(int p0, int p1, int p2, int p3, int p4) {} @@ -488,22 +556,34 @@ void __stdcall ZwPrePrepareComplete(int p0, int p1) {} void __stdcall ZwPrePrepareEnlistment(int p0, int p1) {} void __stdcall ZwPrepareComplete(int p0, int p1) {} void __stdcall ZwPrepareEnlistment(int p0, int p1) {} +void __stdcall ZwPrivilegeCheck(int p0, int p1, int p2) {} +void __stdcall ZwPrivilegeObjectAuditAlarm(int p0, int p1, int p2, int p3, int p4, int p5) {} +void __stdcall ZwPrivilegedServiceAuditAlarm(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall ZwPropagationComplete(int p0, int p1, int p2, int p3) {} +void __stdcall ZwPropagationFailed(int p0, int p1, int p2) {} void __stdcall ZwQueryDirectoryFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9, int p10) {} void __stdcall ZwQueryDirectoryFileEx(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8, int p9) {} +void __stdcall ZwQueryDirectoryObject(int p0, int p1, int p2, int p3, int p4, int p5, int p6) {} void __stdcall ZwQueryEaFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} void __stdcall ZwQueryFullAttributesFile(int p0, int p1) {} void __stdcall ZwQueryInformationByName(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryInformationEnlistment(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryInformationFile(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall ZwQueryInformationProcess(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryInformationResourceManager(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall ZwQueryInformationThread(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryInformationToken(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryInformationTransaction(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryInformationTransactionManager(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryKey(int p0, int p1, int p2, int p3, int p4) {} +void __stdcall ZwQueryMultipleValueKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwQueryObject(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQueryQuotaInformationFile(int p0, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) {} void __stdcall ZwQuerySecurityObject(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwQuerySymbolicLinkObject(int p0, int p1, int p2) {} +void __stdcall ZwQuerySystemInformation(int p0, int p1, int p2, int p3) {} +void __stdcall ZwQuerySystemTime(int p0) {} +void __stdcall ZwQueryTimerResolution(int p0, int p1, int p2) {} void __stdcall ZwQueryValueKey(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwQueryVirtualMemory(int p0, int p1, int p2, int p3, int p4, int p5) {} void __stdcall ZwQueryVolumeInformationFile(int p0, int p1, int p2, int p3, int p4) {} @@ -512,10 +592,13 @@ void __stdcall ZwReadOnlyEnlistment(int p0, int p1) {} void __stdcall ZwRecoverEnlistment(int p0, int p1) {} void __stdcall ZwRecoverResourceManager(int p0) {} void __stdcall ZwRecoverTransactionManager(int p0) {} +void __stdcall ZwRegisterProtocolAddressInformation(int p0, int p1, int p2, int p3, int p4) {} void __stdcall ZwRenameKey(int p0, int p1) {} +void __stdcall ZwRenameTransactionManager(int p0, int p1) {} void __stdcall ZwRestoreKey(int p0, int p1, int p2) {} void __stdcall ZwRollbackComplete(int p0, int p1) {} void __stdcall ZwRollbackEnlistment(int p0, int p1) {} +void __stdcall ZwRollbackRegistryTransaction(int p0, int p1) {} void __stdcall ZwRollbackTransaction(int p0, int p1) {} void __stdcall ZwRollforwardTransactionManager(int p0, int p1) {} void __stdcall ZwSaveKey(int p0, int p1) {} diff --git a/crates/targets/baseline/oleacc.dll.c b/crates/targets/baseline/oleacc.dll.c index 875b626eee..e76843d2fe 100644 --- a/crates/targets/baseline/oleacc.dll.c +++ b/crates/targets/baseline/oleacc.dll.c @@ -8,6 +8,7 @@ void __stdcall CreateStdAccessibleObject(int p0, int p1, int p2, int p3) {} void __stdcall CreateStdAccessibleProxyA(int p0, int p1, int p2, int p3, int p4) {} void __stdcall CreateStdAccessibleProxyW(int p0, int p1, int p2, int p3, int p4) {} void __stdcall GetOleaccVersionInfo(int p0, int p1) {} +void __stdcall GetProcessHandleFromHwnd(int p0) {} void __stdcall GetRoleTextA(int p0, int p1, int p2) {} void __stdcall GetRoleTextW(int p0, int p1, int p2) {} void __stdcall GetStateTextA(int p0, int p1, int p2) {} diff --git a/crates/targets/i686_gnu/lib/libwindows.0.52.0.a b/crates/targets/i686_gnu/lib/libwindows.0.52.0.a index b396a5019f..0360777a0d 100644 Binary files a/crates/targets/i686_gnu/lib/libwindows.0.52.0.a and b/crates/targets/i686_gnu/lib/libwindows.0.52.0.a differ diff --git a/crates/targets/i686_gnullvm/lib/libwindows.0.52.0.a b/crates/targets/i686_gnullvm/lib/libwindows.0.52.0.a index 7880896e8f..89bc17be34 100644 Binary files a/crates/targets/i686_gnullvm/lib/libwindows.0.52.0.a and b/crates/targets/i686_gnullvm/lib/libwindows.0.52.0.a differ diff --git a/crates/targets/i686_msvc/lib/windows.0.52.0.lib b/crates/targets/i686_msvc/lib/windows.0.52.0.lib index af7978977c..3745020dd5 100644 Binary files a/crates/targets/i686_msvc/lib/windows.0.52.0.lib and b/crates/targets/i686_msvc/lib/windows.0.52.0.lib differ diff --git a/crates/targets/x86_64_gnu/lib/libwindows.0.52.0.a b/crates/targets/x86_64_gnu/lib/libwindows.0.52.0.a index 68328835bf..4bb4591e51 100644 Binary files a/crates/targets/x86_64_gnu/lib/libwindows.0.52.0.a and b/crates/targets/x86_64_gnu/lib/libwindows.0.52.0.a differ diff --git a/crates/targets/x86_64_gnullvm/lib/libwindows.0.52.0.a b/crates/targets/x86_64_gnullvm/lib/libwindows.0.52.0.a index 9f6f95db39..cc7ded4a5d 100644 Binary files a/crates/targets/x86_64_gnullvm/lib/libwindows.0.52.0.a and b/crates/targets/x86_64_gnullvm/lib/libwindows.0.52.0.a differ diff --git a/crates/targets/x86_64_msvc/lib/windows.0.52.0.lib b/crates/targets/x86_64_msvc/lib/windows.0.52.0.lib index cb1eb734dc..c31ba37ade 100644 Binary files a/crates/targets/x86_64_msvc/lib/windows.0.52.0.lib and b/crates/targets/x86_64_msvc/lib/windows.0.52.0.lib differ diff --git a/crates/tests/handles/Cargo.toml b/crates/tests/handles/Cargo.toml index 45ec8c9aec..84c4e58d1c 100644 --- a/crates/tests/handles/Cargo.toml +++ b/crates/tests/handles/Cargo.toml @@ -16,6 +16,7 @@ features = [ "Win32_System_Registry", "Win32_Devices_Bluetooth", "Win32_System_ApplicationInstallationAndServicing", + "Win32_Security", ] [dependencies.windows-sys] diff --git a/crates/tests/handles/tests/legacy.rs b/crates/tests/handles/tests/legacy.rs index 4e2a49c349..88aa1b66f2 100644 --- a/crates/tests/handles/tests/legacy.rs +++ b/crates/tests/handles/tests/legacy.rs @@ -4,12 +4,12 @@ use windows::Win32::System::Registry::*; #[test] fn handle() { - let handle = HANDLE(0); + let handle = HANDLE(0 as _); let _clone = handle.clone(); let _copy: HANDLE = handle; - assert!(HANDLE::default() == HANDLE(0)); - assert!(HANDLE(0).is_invalid()); - assert!(HANDLE(-1).is_invalid()); + assert!(HANDLE::default() == HANDLE(0 as _)); + assert!(HANDLE(0 as _).is_invalid()); + assert!(HANDLE(-1 as _).is_invalid()); assert!(core::mem::size_of::() == core::mem::size_of::()); } diff --git a/crates/tests/handles/tests/sys.rs b/crates/tests/handles/tests/sys.rs index 026368d2a0..ec3ecff321 100644 --- a/crates/tests/handles/tests/sys.rs +++ b/crates/tests/handles/tests/sys.rs @@ -11,7 +11,7 @@ fn boolean() { fn hfont() { unsafe { let underlying: isize = 123; - let font: HFONT = underlying; + let font: HFONT = underlying as _; let object: HGDIOBJ = font; assert!(DeleteObject(font) == 0); diff --git a/crates/tests/handles/tests/win.rs b/crates/tests/handles/tests/win.rs index 07bf637247..abc1517c93 100644 --- a/crates/tests/handles/tests/win.rs +++ b/crates/tests/handles/tests/win.rs @@ -1,12 +1,13 @@ use windows::{ Win32::Devices::Bluetooth::*, Win32::Foundation::*, Win32::Graphics::Gdi::*, - Win32::System::ApplicationInstallationAndServicing::*, Win32::System::Registry::*, + Win32::Security::*, Win32::System::ApplicationInstallationAndServicing::*, + Win32::System::Registry::*, }; #[test] fn handle() { let underlying: isize = 123; - let handle: HANDLE = HANDLE(underlying); + let handle: HANDLE = HANDLE(underlying as _); assert!(!handle.is_invalid()); let copy = handle; @@ -18,7 +19,7 @@ fn handle() { let default = HANDLE::default(); assert!(default.is_invalid()); - assert_eq!(format!("{:?}", handle), "HANDLE(123)"); + assert_eq!(format!("{:?}", handle), "HANDLE(0x7b)"); } #[test] @@ -43,7 +44,7 @@ fn psid() { fn hfont() { unsafe { let underlying: isize = 123; - let font: HFONT = HFONT(underlying); + let font: HFONT = HFONT(underlying as _); let object: HGDIOBJ = HGDIOBJ(font.0); assert!(!DeleteObject(font).as_bool()); diff --git a/crates/tests/lib/tests/sys.rs b/crates/tests/lib/tests/sys.rs index 4a7c308b9e..9e79577ca1 100644 --- a/crates/tests/lib/tests/sys.rs +++ b/crates/tests/lib/tests/sys.rs @@ -6,7 +6,19 @@ use windows_sys::{ #[test] fn gdi() { unsafe { - AlphaBlend(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, std::mem::zeroed()); + AlphaBlend( + core::ptr::null_mut(), + 0, + 0, + 0, + 0, + core::ptr::null_mut(), + 0, + 0, + 0, + 0, + std::mem::zeroed(), + ); } } @@ -20,7 +32,15 @@ fn wait_on_address() { #[test] fn browser() { unsafe { - IECreateFile(std::ptr::null(), 0, 0, std::ptr::null(), 0, 0, 0); + IECreateFile( + std::ptr::null(), + 0, + 0, + std::ptr::null(), + 0, + 0, + core::ptr::null_mut(), + ); } } diff --git a/crates/tests/not_dll/tests/sys.rs b/crates/tests/not_dll/tests/sys.rs index 985a9ce8f2..41f2949400 100644 --- a/crates/tests/not_dll/tests/sys.rs +++ b/crates/tests/not_dll/tests/sys.rs @@ -5,6 +5,6 @@ use windows_sys::Win32::Graphics::Printing::*; #[test] fn test() { unsafe { - GetSpoolFileHandle(0); + GetSpoolFileHandle(core::ptr::null_mut()); } } diff --git a/crates/tests/reserved/tests/sys.rs b/crates/tests/reserved/tests/sys.rs index 0efc217d71..4fcd22c103 100644 --- a/crates/tests/reserved/tests/sys.rs +++ b/crates/tests/reserved/tests/sys.rs @@ -10,11 +10,19 @@ fn test() { assert_eq!(InSendMessageEx(std::ptr::null_mut()), ISMEX_NOSEND); assert!(CreateThreadpool(std::ptr::null_mut()) != 0); assert_eq!( - TrackPopupMenu(0, TPM_LEFTBUTTON, 1, 2, 0, 0, std::ptr::null()), + TrackPopupMenu( + core::ptr::null_mut(), + TPM_LEFTBUTTON, + 1, + 2, + 0, + core::ptr::null_mut(), + std::ptr::null() + ), 0 ); - let mut key = 0; + let mut key = core::ptr::null_mut(); RegOpenKeyExA(HKEY_CLASSES_ROOT, s!(r".txt"), 0, KEY_QUERY_VALUE, &mut key); let mut len = 0; RegQueryValueExA( diff --git a/crates/tests/reserved/tests/win.rs b/crates/tests/reserved/tests/win.rs index ed464ac27c..018bbaf894 100644 --- a/crates/tests/reserved/tests/win.rs +++ b/crates/tests/reserved/tests/win.rs @@ -8,18 +8,10 @@ use windows::{ fn test() -> Result<()> { unsafe { assert_eq!(InSendMessageEx(None), ISMEX_NOSEND); - assert!(CreateThreadpool(None).0 != 0); + assert!(CreateThreadpool(None).is_ok()); assert_eq!( - TrackPopupMenu( - HMENU(0), - TPM_LEFTBUTTON, - 1, - 2, - 0, - HWND(0), - Default::default(), - ), + TrackPopupMenu(None, TPM_LEFTBUTTON, 1, 2, 0, None, Default::default(),), FALSE ); diff --git a/crates/tests/resources/tests/sys.rs b/crates/tests/resources/tests/sys.rs index 2bcd36f135..17efe8f971 100644 --- a/crates/tests/resources/tests/sys.rs +++ b/crates/tests/resources/tests/sys.rs @@ -10,11 +10,17 @@ fn sys() { unsafe { SetLastError(0); assert_eq!(IDI_APPLICATION as u16, 32512); - assert_ne!(LoadIconW(0, IDI_APPLICATION), 0); + assert_ne!( + LoadIconW(core::ptr::null_mut(), IDI_APPLICATION), + core::ptr::null_mut() + ); assert_eq!(GetLastError(), 0); assert_eq!(TD_ERROR_ICON as i16, -2); - assert_eq!(LoadIconW(0, TD_ERROR_ICON), 0); + assert_eq!( + LoadIconW(core::ptr::null_mut(), TD_ERROR_ICON), + core::ptr::null_mut() + ); assert_eq!(GetLastError(), ERROR_RESOURCE_TYPE_NOT_FOUND); assert_eq!(COLE_DEFAULT_PRINCIPAL as usize, usize::MAX); diff --git a/crates/tests/standalone/src/b_arch.rs b/crates/tests/standalone/src/b_arch.rs index 19cd609d63..b14a467fbc 100644 --- a/crates/tests/standalone/src/b_arch.rs +++ b/crates/tests/standalone/src/b_arch.rs @@ -11,7 +11,7 @@ target_arch = "x86_64" ))] windows_targets::link!("user32.dll" "system" fn GetWindowLongPtrW(hwnd : HWND, nindex : WINDOW_LONG_PTR_INDEX) -> isize); -pub type HWND = isize; +pub type HWND = *mut core::ffi::c_void; pub type PSTR = *mut u8; pub type WINDOW_LONG_PTR_INDEX = i32; #[repr(C)] diff --git a/crates/tests/standalone/src/b_depends.rs b/crates/tests/standalone/src/b_depends.rs index 89e642ce2b..7cd58f6037 100644 --- a/crates/tests/standalone/src/b_depends.rs +++ b/crates/tests/standalone/src/b_depends.rs @@ -6,7 +6,7 @@ clippy::all )] pub type ADDRESS_FAMILY = u16; -pub type HANDLE = isize; +pub type HANDLE = *mut core::ffi::c_void; pub type LPWSAOVERLAPPED_COMPLETION_ROUTINE = Option< unsafe extern "system" fn( dwerror: u32, diff --git a/crates/tests/standalone/src/b_nested.rs b/crates/tests/standalone/src/b_nested.rs index 9817eb0236..6bc911ac0f 100644 --- a/crates/tests/standalone/src/b_nested.rs +++ b/crates/tests/standalone/src/b_nested.rs @@ -98,8 +98,8 @@ impl GUID { } } } -pub type HBITMAP = isize; -pub type HENHMETAFILE = isize; +pub type HBITMAP = *mut core::ffi::c_void; +pub type HENHMETAFILE = *mut core::ffi::c_void; pub type HGLOBAL = *mut core::ffi::c_void; pub type HRESULT = i32; pub type PCWSTR = *const u16; diff --git a/crates/tests/standalone/src/b_test.rs b/crates/tests/standalone/src/b_test.rs index e0bf0e658c..b53a81f635 100644 --- a/crates/tests/standalone/src/b_test.rs +++ b/crates/tests/standalone/src/b_test.rs @@ -32,7 +32,7 @@ impl GUID { } } } -pub type HANDLE = isize; +pub type HANDLE = *mut core::ffi::c_void; pub type HRESULT = i32; pub type PCSTR = *const u8; pub type PCWSTR = *const u16; diff --git a/crates/tests/sys/tests/simple.rs b/crates/tests/sys/tests/simple.rs index 8f6fee8323..f7fd38c8d7 100644 --- a/crates/tests/sys/tests/simple.rs +++ b/crates/tests/sys/tests/simple.rs @@ -26,20 +26,20 @@ fn types() { let _: i32 = DBG_APP_NOT_IDLE; // Handles - let _: HANDLE = 0; + let _: HANDLE = core::ptr::null_mut(); let _: PSTR = b"hello\0".as_ptr() as _; } #[test] fn callback() { unsafe { - extern "system" fn enum_window(_: isize, _: isize) -> i32 { + extern "system" fn enum_window(_: *mut core::ffi::c_void, _: isize) -> i32 { 0 } EnumWindows(Some(enum_window), 0); - extern "system" fn wndproc(_: isize, _: u32, _: usize, _: isize) -> isize { + extern "system" fn wndproc(_: *mut core::ffi::c_void, _: u32, _: usize, _: isize) -> isize { 0 } diff --git a/crates/tests/unions/tests/sys.rs b/crates/tests/unions/tests/sys.rs index a9b436d34d..9505618240 100644 --- a/crates/tests/unions/tests/sys.rs +++ b/crates/tests/unions/tests/sys.rs @@ -6,7 +6,7 @@ fn test() { Internal: 1, InternalHigh: 2, Anonymous: unsafe { std::mem::zeroed() }, - hEvent: Default::default(), + hEvent: core::ptr::null_mut(), }; assert_eq!(o.Internal, 1); @@ -17,9 +17,9 @@ fn test() { o.InternalHigh = 20; assert_eq!(o.InternalHigh, 20); - assert_eq!(o.hEvent, 0); - o.hEvent = 1; - assert_eq!(o.hEvent, 1); + assert_eq!(o.hEvent, core::ptr::null_mut()); + o.hEvent = 1 as _; + assert_eq!(o.hEvent, 1 as _); unsafe { assert_eq!(o.Anonymous.Pointer, core::ptr::null_mut()); diff --git a/crates/tests/unions/tests/win.rs b/crates/tests/unions/tests/win.rs index 7428c2c8b4..ef8f9bc8c1 100644 --- a/crates/tests/unions/tests/win.rs +++ b/crates/tests/unions/tests/win.rs @@ -21,9 +21,9 @@ fn test() { o.InternalHigh = 20; assert_eq!(o.InternalHigh, 20); - assert_eq!(o.hEvent, HANDLE(0)); - o.hEvent = HANDLE(1); - assert_eq!(o.hEvent, HANDLE(1)); + assert_eq!(o.hEvent, HANDLE(0 as _)); + o.hEvent = HANDLE(1 as _); + assert_eq!(o.hEvent, HANDLE(1 as _)); unsafe { assert_eq!(o.Anonymous.Pointer, core::ptr::null_mut()); @@ -80,7 +80,7 @@ fn d3d() { let mut desc = D3D12_INDIRECT_ARGUMENT_DESC { Type: D3D12_INDIRECT_ARGUMENT_TYPE_VERTEX_BUFFER_VIEW, Anonymous: D3D12_INDIRECT_ARGUMENT_DESC_0 { - VertexBuffer: D3D12_INDIRECT_ARGUMENT_DESC_0_4 { Slot: 123 }, + VertexBuffer: D3D12_INDIRECT_ARGUMENT_DESC_0_5 { Slot: 123 }, }, }; diff --git a/crates/tests/wdk/tests/sys.rs b/crates/tests/wdk/tests/sys.rs index ae0b83ee91..094406380d 100644 --- a/crates/tests/wdk/tests/sys.rs +++ b/crates/tests/wdk/tests/sys.rs @@ -3,7 +3,7 @@ use windows_sys::Wdk::System::OfflineRegistry::*; #[test] fn offline_registry() { unsafe { - let mut hive = 0; + let mut hive = core::ptr::null_mut(); ORCreateHive(&mut hive); ORCloseHive(hive); } diff --git a/crates/tests/win32/tests/win32.rs b/crates/tests/win32/tests/win32.rs index c471c1ab4b..7f3fde6de7 100644 --- a/crates/tests/win32/tests/win32.rs +++ b/crates/tests/win32/tests/win32.rs @@ -130,7 +130,7 @@ fn function() -> windows::core::Result<()> { fn bool_as_error() { unsafe { helpers::set_thread_ui_language(); - let error = SetEvent(HANDLE(0)).unwrap_err(); + let error = SetEvent(HANDLE(0 as _)).unwrap_err(); assert_eq!(error.code(), windows::core::HRESULT(-2147024890)); let message: String = error.message().try_into().unwrap(); @@ -176,7 +176,9 @@ fn com_inheritance() { let factory: IDXGIFactory7 = CreateDXGIFactory1().unwrap(); // IDXGIFactory - assert!(factory.MakeWindowAssociation(HWND(0), 0).is_ok()); + assert!(factory + .MakeWindowAssociation(None, DXGI_MWA_FLAGS::default()) + .is_ok()); // IDXGIFactory1 assert!(factory.IsCurrent().as_bool()); @@ -185,12 +187,12 @@ fn com_inheritance() { _ = factory.IsWindowedStereoEnabled(); // IDXGIFactory3 - assert!(factory.GetCreationFlags() == 0); + assert!(factory.GetCreationFlags() == DXGI_CREATE_FACTORY_FLAGS(0)); // IDXGIFactory7 (default) assert!( factory - .RegisterAdaptersChangedEvent(HANDLE(0)) + .RegisterAdaptersChangedEvent(None) .unwrap_err() .code() == DXGI_ERROR_INVALID_CALL @@ -232,16 +234,16 @@ fn interface() -> windows::core::Result<()> { fn callback() { unsafe { let a: PROPENUMPROCA = Some(callback_a); - assert!(BOOL(789) == a.unwrap()(HWND(123), s!("hello a"), HANDLE(456))); + assert!(BOOL(789) == a.unwrap()(HWND(123 as _), s!("hello a"), HANDLE(456 as _))); let a: PROPENUMPROCW = Some(callback_w); - assert!(BOOL(789) == a.unwrap()(HWND(123), w!("hello w").into(), HANDLE(456))); + assert!(BOOL(789) == a.unwrap()(HWND(123 as _), w!("hello w").into(), HANDLE(456 as _))); } } extern "system" fn callback_a(param0: HWND, param1: PCSTR, param2: HANDLE) -> BOOL { - assert!(param0.0 == 123); - assert!(param2.0 == 456); + assert!(param0.0 == 123 as _); + assert!(param2.0 == 456 as _); let s = unsafe { param1.to_string().unwrap() }; assert!(s == "hello a"); @@ -249,8 +251,8 @@ extern "system" fn callback_a(param0: HWND, param1: PCSTR, param2: HANDLE) -> BO } extern "system" fn callback_w(param0: HWND, param1: PCWSTR, param2: HANDLE) -> BOOL { - assert!(param0.0 == 123); - assert!(param2.0 == 456); + assert!(param0.0 == 123 as _); + assert!(param2.0 == 456 as _); let s = unsafe { param1.to_string().unwrap() }; assert!(s == "hello w"); BOOL(789) diff --git a/crates/tests/window_long/tests/sys.rs b/crates/tests/window_long/tests/sys.rs index 1245624bb7..c1a5e61d0b 100644 --- a/crates/tests/window_long/tests/sys.rs +++ b/crates/tests/window_long/tests/sys.rs @@ -4,9 +4,9 @@ use windows_sys::Win32::UI::WindowsAndMessaging::*; #[test] fn test() { unsafe { - SetWindowLongPtrA(0, GWLP_USERDATA, 0); - GetWindowLongPtrA(0, GWLP_USERDATA); - SetWindowLongPtrW(0, GWLP_USERDATA, 0); - GetWindowLongPtrW(0, GWLP_USERDATA); + SetWindowLongPtrA(core::ptr::null_mut(), GWLP_USERDATA, 0); + GetWindowLongPtrA(core::ptr::null_mut(), GWLP_USERDATA); + SetWindowLongPtrW(core::ptr::null_mut(), GWLP_USERDATA, 0); + GetWindowLongPtrW(core::ptr::null_mut(), GWLP_USERDATA); } }